
    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;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_0706cc1d6d4eee77f3a7852d.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.000000;font-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_c00000{transform:matrix(0.009118,0.364731,-0.249922,0.006248,0,0);-ms-transform:matrix(0.009118,0.364731,-0.249922,0.006248,0,0);-webkit-transform:matrix(0.009118,0.364731,-0.249922,0.006248,0,0);}
.m1_c00000{transform:matrix(0.013175,0.527015,-0.249922,0.006248,0,0);-ms-transform:matrix(0.013175,0.527015,-0.249922,0.006248,0,0);-webkit-transform:matrix(0.013175,0.527015,-0.249922,0.006248,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc0_c00000{color:transparent;}
.fs0_c00000{font-size:25.207874px;}
.y0_c00000{bottom:0.000000px;}
.y2_c00000{bottom:76.177500px;}
.y1_c00000{bottom:87.210000px;}
.h2_c00000{height:25.207874px;}
.h1_c00000{height:1164.000000px;}
.h0_c00000{height:1164.240000px;}
.w1_c00000{width:919.500000px;}
.w0_c00000{width:919.620000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:26.460000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs0_c00000{font-size:22.406999pt;}
.y0_c00000{bottom:0.000000pt;}
.y2_c00000{bottom:67.713333pt;}
.y1_c00000{bottom:77.520000pt;}
.h2_c00000{height:22.406999pt;}
.h1_c00000{height:1034.666667pt;}
.h0_c00000{height:1034.880000pt;}
.w1_c00000{width:817.333333pt;}
.w0_c00000{width:817.440000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:23.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_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;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h1_c00001{height:1071.750000px;}
.h0_c00001{height:1071.900000px;}
.w1_c00001{width:810.000000px;}
.w0_c00001{width:810.270000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h1_c00001{height:952.666667pt;}
.h0_c00001{height:952.800000pt;}
.w1_c00001{width:720.000000pt;}
.w0_c00001{width:720.240000pt;}
.x0_c00001{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_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:1092.750000px;}
.h0_c00002{height:1092.900000px;}
.w1_c00002{width:799.500000px;}
.w0_c00002{width:799.740000px;}
.x0_c00002{left:0.000000px;}
@media print{
.y0_c00002{bottom:0.000000pt;}
.h1_c00002{height:971.333333pt;}
.h0_c00002{height:971.466667pt;}
.w1_c00002{width:710.666667pt;}
.w0_c00002{width:710.880000pt;}
.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;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_0a07d3797cc10c86839ecc25.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.000000;font-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_c00003{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);}
.m2_c00003{transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{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);}
.m1_c00003{transform:matrix(0.431240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431240,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
.fc0_c00003{color:transparent;}
.fs2_c00003{font-size:23.100000px;}
.fs1_c00003{font-size:42.000000px;}
.fs0_c00003{font-size:66.150000px;}
.y0_c00003{bottom:0.000000px;}
.y3_c00003{bottom:607.633500px;}
.y2_c00003{bottom:615.333000px;}
.y1_c00003{bottom:619.110000px;}
.h4_c00003{height:23.100000px;}
.h3_c00003{height:42.000000px;}
.h2_c00003{height:66.150000px;}
.h0_c00003{height:1099.170000px;}
.h1_c00003{height:1099.500000px;}
.w0_c00003{width:786.750000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:130.410000px;}
.x2_c00003{left:133.380000px;}
.x3_c00003{left:173.070000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs2_c00003{font-size:20.533333pt;}
.fs1_c00003{font-size:37.333333pt;}
.fs0_c00003{font-size:58.800000pt;}
.y0_c00003{bottom:0.000000pt;}
.y3_c00003{bottom:540.118667pt;}
.y2_c00003{bottom:546.962667pt;}
.y1_c00003{bottom:550.320000pt;}
.h4_c00003{height:20.533333pt;}
.h3_c00003{height:37.333333pt;}
.h2_c00003{height:58.800000pt;}
.h0_c00003{height:977.040000pt;}
.h1_c00003{height:977.333333pt;}
.w0_c00003{width:699.333333pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:115.920000pt;}
.x2_c00003{left:118.560000pt;}
.x3_c00003{left:153.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_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;}
.sc__c00004{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
}
.y0_c00004{bottom:0.000000px;}
.h1_c00004{height:1092.750000px;}
.h0_c00004{height:1092.900000px;}
.w1_c00004{width:799.500000px;}
.w0_c00004{width:799.740000px;}
.x0_c00004{left:0.000000px;}
@media print{
.y0_c00004{bottom:0.000000pt;}
.h1_c00004{height:971.333333pt;}
.h0_c00004{height:971.466667pt;}
.w1_c00004{width:710.666667pt;}
.w0_c00004{width:710.880000pt;}
.x0_c00004{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_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;}
.sc__c00005{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
}
.y0_c00005{bottom:0.000000px;}
.h0_c00005{height:1099.170000px;}
.h1_c00005{height:1099.500000px;}
.w0_c00005{width:786.750000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h0_c00005{height:977.040000pt;}
.h1_c00005{height:977.333333pt;}
.w0_c00005{width:699.333333pt;}
.x0_c00005{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_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;}
.sc__c00006{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
}
.y0_c00006{bottom:0.000000px;}
.h1_c00006{height:1092.750000px;}
.h0_c00006{height:1092.900000px;}
.w1_c00006{width:799.500000px;}
.w0_c00006{width:799.740000px;}
.x0_c00006{left:0.000000px;}
@media print{
.y0_c00006{bottom:0.000000pt;}
.h1_c00006{height:971.333333pt;}
.h0_c00006{height:971.466667pt;}
.w1_c00006{width:710.666667pt;}
.w0_c00006{width:710.880000pt;}
.x0_c00006{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_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_b0849ebde05e2e0256e7b76c.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;}
.m3c_c00007{transform:matrix(0.000063,0.021080,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000063,0.021080,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000063,0.021080,-0.249999,0.000750,0,0);}
.m39_c00007{transform:matrix(0.000595,0.198489,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000595,0.198489,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000595,0.198489,-0.249999,0.000750,0,0);}
.m38_c00007{transform:matrix(0.000604,0.201379,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000604,0.201379,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000604,0.201379,-0.249999,0.000750,0,0);}
.m3a_c00007{transform:matrix(0.000716,0.238624,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000716,0.238624,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000716,0.238624,-0.249999,0.000750,0,0);}
.m1b_c00007{transform:matrix(0.001130,-0.112974,0.249988,0.002500,0,0);-ms-transform:matrix(0.001130,-0.112974,0.249988,0.002500,0,0);-webkit-transform:matrix(0.001130,-0.112974,0.249988,0.002500,0,0);}
.m3b_c00007{transform:matrix(0.001534,0.511248,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001534,0.511248,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001534,0.511248,-0.249999,0.000750,0,0);}
.m14_c00007{transform:matrix(0.001710,-0.171041,0.249988,0.002500,0,0);-ms-transform:matrix(0.001710,-0.171041,0.249988,0.002500,0,0);-webkit-transform:matrix(0.001710,-0.171041,0.249988,0.002500,0,0);}
.m37_c00007{transform:matrix(0.002025,0.675097,-0.249999,0.000750,0,0);-ms-transform:matrix(0.002025,0.675097,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.002025,0.675097,-0.249999,0.000750,0,0);}
.m1a_c00007{transform:matrix(0.002058,-0.205790,0.249988,0.002500,0,0);-ms-transform:matrix(0.002058,-0.205790,0.249988,0.002500,0,0);-webkit-transform:matrix(0.002058,-0.205790,0.249988,0.002500,0,0);}
.m16_c00007{transform:matrix(0.002377,-0.237718,0.249988,0.002500,0,0);-ms-transform:matrix(0.002377,-0.237718,0.249988,0.002500,0,0);-webkit-transform:matrix(0.002377,-0.237718,0.249988,0.002500,0,0);}
.m15_c00007{transform:matrix(0.002379,-0.237863,0.249988,0.002500,0,0);-ms-transform:matrix(0.002379,-0.237863,0.249988,0.002500,0,0);-webkit-transform:matrix(0.002379,-0.237863,0.249988,0.002500,0,0);}
.m17_c00007{transform:matrix(0.002392,-0.239248,0.249988,0.002500,0,0);-ms-transform:matrix(0.002392,-0.239248,0.249988,0.002500,0,0);-webkit-transform:matrix(0.002392,-0.239248,0.249988,0.002500,0,0);}
.m4_c00007{transform:matrix(0.003556,-0.237038,0.249972,0.003750,0,0);-ms-transform:matrix(0.003556,-0.237038,0.249972,0.003750,0,0);-webkit-transform:matrix(0.003556,-0.237038,0.249972,0.003750,0,0);}
.m19_c00007{transform:matrix(0.003566,-0.356577,0.249988,0.002500,0,0);-ms-transform:matrix(0.003566,-0.356577,0.249988,0.002500,0,0);-webkit-transform:matrix(0.003566,-0.356577,0.249988,0.002500,0,0);}
.m11_c00007{transform:matrix(0.003592,-0.156184,0.249934,0.005748,0,0);-ms-transform:matrix(0.003592,-0.156184,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003592,-0.156184,0.249934,0.005748,0,0);}
.m5_c00007{transform:matrix(0.003833,-0.255511,0.249972,0.003750,0,0);-ms-transform:matrix(0.003833,-0.255511,0.249972,0.003750,0,0);-webkit-transform:matrix(0.003833,-0.255511,0.249972,0.003750,0,0);}
.m2f_c00007{transform:matrix(0.004452,-0.193559,0.249934,0.005748,0,0);-ms-transform:matrix(0.004452,-0.193559,0.249934,0.005748,0,0);-webkit-transform:matrix(0.004452,-0.193559,0.249934,0.005748,0,0);}
.me_c00007{transform:matrix(0.004532,-0.266601,0.249964,0.004249,0,0);-ms-transform:matrix(0.004532,-0.266601,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004532,-0.266601,0.249964,0.004249,0,0);}
.m33_c00007{transform:matrix(0.004538,0.412550,-0.249985,0.002750,0,0);-ms-transform:matrix(0.004538,0.412550,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.004538,0.412550,-0.249985,0.002750,0,0);}
.m3_c00007{transform:matrix(0.004870,-0.324693,0.249972,0.003750,0,0);-ms-transform:matrix(0.004870,-0.324693,0.249972,0.003750,0,0);-webkit-transform:matrix(0.004870,-0.324693,0.249972,0.003750,0,0);}
.m18_c00007{transform:matrix(0.005344,-0.534363,0.249988,0.002500,0,0);-ms-transform:matrix(0.005344,-0.534363,0.249988,0.002500,0,0);-webkit-transform:matrix(0.005344,-0.534363,0.249988,0.002500,0,0);}
.m2c_c00007{transform:matrix(0.005710,-0.248239,0.249934,0.005748,0,0);-ms-transform:matrix(0.005710,-0.248239,0.249934,0.005748,0,0);-webkit-transform:matrix(0.005710,-0.248239,0.249934,0.005748,0,0);}
.mc_c00007{transform:matrix(0.005939,-0.160340,0.249829,0.009253,0,0);-ms-transform:matrix(0.005939,-0.160340,0.249829,0.009253,0,0);-webkit-transform:matrix(0.005939,-0.160340,0.249829,0.009253,0,0);}
.m2e_c00007{transform:matrix(0.006352,-0.276182,0.249934,0.005748,0,0);-ms-transform:matrix(0.006352,-0.276182,0.249934,0.005748,0,0);-webkit-transform:matrix(0.006352,-0.276182,0.249934,0.005748,0,0);}
.m2d_c00007{transform:matrix(0.006556,-0.285055,0.249934,0.005748,0,0);-ms-transform:matrix(0.006556,-0.285055,0.249934,0.005748,0,0);-webkit-transform:matrix(0.006556,-0.285055,0.249934,0.005748,0,0);}
.m12_c00007{transform:matrix(0.007241,-0.301718,0.249928,0.005998,0,0);-ms-transform:matrix(0.007241,-0.301718,0.249928,0.005998,0,0);-webkit-transform:matrix(0.007241,-0.301718,0.249928,0.005998,0,0);}
.md_c00007{transform:matrix(0.009276,-0.250443,0.249829,0.009253,0,0);-ms-transform:matrix(0.009276,-0.250443,0.249829,0.009253,0,0);-webkit-transform:matrix(0.009276,-0.250443,0.249829,0.009253,0,0);}
.m1_c00007{transform:matrix(0.010765,-0.717659,0.249972,0.003750,0,0);-ms-transform:matrix(0.010765,-0.717659,0.249972,0.003750,0,0);-webkit-transform:matrix(0.010765,-0.717659,0.249972,0.003750,0,0);}
.m6_c00007{transform:matrix(0.011745,-0.782967,0.249972,0.003750,0,0);-ms-transform:matrix(0.011745,-0.782967,0.249972,0.003750,0,0);-webkit-transform:matrix(0.011745,-0.782967,0.249972,0.003750,0,0);}
.mf_c00007{transform:matrix(0.011942,-0.796150,0.249972,0.003750,0,0);-ms-transform:matrix(0.011942,-0.796150,0.249972,0.003750,0,0);-webkit-transform:matrix(0.011942,-0.796150,0.249972,0.003750,0,0);}
.m2_c00007{transform:matrix(0.011979,-0.798590,0.249972,0.003750,0,0);-ms-transform:matrix(0.011979,-0.798590,0.249972,0.003750,0,0);-webkit-transform:matrix(0.011979,-0.798590,0.249972,0.003750,0,0);}
.m10_c00007{transform:matrix(0.014503,-0.659210,0.249940,0.005499,0,0);-ms-transform:matrix(0.014503,-0.659210,0.249940,0.005499,0,0);-webkit-transform:matrix(0.014503,-0.659210,0.249940,0.005499,0,0);}
.m1c_c00007{transform:matrix(0.016410,-0.965286,0.249964,0.004249,0,0);-ms-transform:matrix(0.016410,-0.965286,0.249964,0.004249,0,0);-webkit-transform:matrix(0.016410,-0.965286,0.249964,0.004249,0,0);}
.m1e_c00007{transform:matrix(0.055945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055945,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.119260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119260,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{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);}
.m27_c00007{transform:matrix(0.135285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135285,0.000000,0.000000,0.250000,0,0);}
.m32_c00007{transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{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);}
.m2a_c00007{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m23_c00007{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);}
.mb_c00007{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);}
.m31_c00007{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);}
.m20_c00007{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);}
.m2b_c00007{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);}
.m9_c00007{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.277540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277540,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);}
.m24_c00007{transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{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);}
.m25_c00007{transform:matrix(0.429545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(0.474975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474975,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.521530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521530,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{transform:matrix(0.618215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618215,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.690990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690990,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.722190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722190,0.000000,0.000000,0.250000,0,0);}
.m35_c00007{transform:matrix(0.865845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865845,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{transform:matrix(1.325225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.325225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.325225,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;}
._0_c00007{width:140.787394px;}
.fc0_c00007{color:transparent;}
.fs10_c00007{font-size:13.650000px;}
.fs1_c00007{font-size:17.852008px;}
.fs12_c00007{font-size:21.000000px;}
.fs4_c00007{font-size:22.050000px;}
.fs15_c00007{font-size:22.055831px;}
.fs6_c00007{font-size:23.100000px;}
.fs5_c00007{font-size:24.150000px;}
.fs17_c00007{font-size:24.150109px;}
.fs11_c00007{font-size:26.250000px;}
.fse_c00007{font-size:27.301365px;}
.fs16_c00007{font-size:30.451842px;}
.fs7_c00007{font-size:34.639084px;}
.fs14_c00007{font-size:34.650000px;}
.fs3_c00007{font-size:38.854370px;}
.fs0_c00007{font-size:39.900000px;}
.fsd_c00007{font-size:40.961792px;}
.fs13_c00007{font-size:44.100000px;}
.fsf_c00007{font-size:45.156524px;}
.fsa_c00007{font-size:63.007087px;}
.fsb_c00007{font-size:65.115752px;}
.fsc_c00007{font-size:66.167494px;}
.fs8_c00007{font-size:70.327836px;}
.fs2_c00007{font-size:92.410394px;}
.fs9_c00007{font-size:136.519723px;}
.y0_c00007{bottom:0.000000px;}
.y13_c00007{bottom:205.333500px;}
.y1e_c00007{bottom:211.551000px;}
.y1f_c00007{bottom:214.110000px;}
.y1d_c00007{bottom:216.540000px;}
.y2d_c00007{bottom:218.970000px;}
.y2c_c00007{bottom:223.830000px;}
.y2f_c00007{bottom:224.100000px;}
.y20_c00007{bottom:268.110000px;}
.y21_c00007{bottom:269.862000px;}
.y22_c00007{bottom:272.980500px;}
.y24_c00007{bottom:273.376500px;}
.y26_c00007{bottom:273.844500px;}
.y30_c00007{bottom:274.590000px;}
.y23_c00007{bottom:277.156500px;}
.y25_c00007{bottom:277.290000px;}
.y2b_c00007{bottom:278.640000px;}
.y2a_c00007{bottom:323.940000px;}
.y29_c00007{bottom:343.381500px;}
.y28_c00007{bottom:349.018500px;}
.y27_c00007{bottom:363.093000px;}
.y1b_c00007{bottom:409.315500px;}
.y1a_c00007{bottom:423.333000px;}
.y19_c00007{bottom:428.733000px;}
.y18_c00007{bottom:443.874000px;}
.y17_c00007{bottom:458.181000px;}
.y16_c00007{bottom:462.211500px;}
.y15_c00007{bottom:475.726500px;}
.y1c_c00007{bottom:481.644000px;}
.y14_c00007{bottom:484.113000px;}
.y36_c00007{bottom:544.858500px;}
.y35_c00007{bottom:569.430000px;}
.y34_c00007{bottom:579.150000px;}
.yd_c00007{bottom:595.350591px;}
.y33_c00007{bottom:599.130000px;}
.yc_c00007{bottom:599.659500px;}
.y32_c00007{bottom:605.880000px;}
.y2e_c00007{bottom:613.440000px;}
.y31_c00007{bottom:622.080000px;}
.y12_c00007{bottom:623.688000px;}
.ye_c00007{bottom:706.291500px;}
.yf_c00007{bottom:740.593500px;}
.y10_c00007{bottom:770.491500px;}
.y11_c00007{bottom:772.972500px;}
.y4_c00007{bottom:789.108000px;}
.y3_c00007{bottom:804.658500px;}
.y2_c00007{bottom:820.321500px;}
.y7_c00007{bottom:853.156665px;}
.y6_c00007{bottom:864.822765px;}
.y5_c00007{bottom:875.295300px;}
.y1_c00007{bottom:904.218000px;}
.y8_c00007{bottom:904.930500px;}
.yb_c00007{bottom:905.310000px;}
.ya_c00007{bottom:905.446500px;}
.y9_c00007{bottom:908.686500px;}
.h12_c00007{height:13.650000px;}
.h3_c00007{height:17.852008px;}
.h14_c00007{height:21.000000px;}
.h6_c00007{height:22.050000px;}
.h17_c00007{height:22.055831px;}
.h8_c00007{height:23.100000px;}
.h7_c00007{height:24.150000px;}
.h19_c00007{height:24.150109px;}
.h13_c00007{height:26.250000px;}
.h10_c00007{height:27.301365px;}
.h18_c00007{height:30.451842px;}
.h9_c00007{height:34.639084px;}
.h16_c00007{height:34.650000px;}
.h5_c00007{height:38.854370px;}
.h2_c00007{height:39.900000px;}
.hf_c00007{height:40.961792px;}
.h15_c00007{height:44.100000px;}
.h11_c00007{height:45.156524px;}
.hc_c00007{height:63.007087px;}
.hd_c00007{height:65.115752px;}
.he_c00007{height:66.167494px;}
.ha_c00007{height:70.327836px;}
.h4_c00007{height:92.410394px;}
.hb_c00007{height:136.519723px;}
.h0_c00007{height:1099.170000px;}
.h1_c00007{height:1099.500000px;}
.w0_c00007{width:786.750000px;}
.x0_c00007{left:0.000000px;}
.x23_c00007{left:175.770000px;}
.x24_c00007{left:181.440000px;}
.x22_c00007{left:187.380000px;}
.x21_c00007{left:204.930000px;}
.x20_c00007{left:207.630000px;}
.x1d_c00007{left:211.410000px;}
.x1f_c00007{left:213.840000px;}
.x1e_c00007{left:217.797981px;}
.x1c_c00007{left:219.240000px;}
.x1b_c00007{left:222.750000px;}
.xe_c00007{left:226.258500px;}
.xc_c00007{left:227.340000px;}
.xd_c00007{left:228.688500px;}
.xa_c00007{left:237.603873px;}
.xf_c00007{left:240.300000px;}
.xb_c00007{left:241.920000px;}
.x4_c00007{left:245.701830px;}
.x9_c00007{left:250.020000px;}
.x7_c00007{left:254.880000px;}
.x8_c00007{left:257.040000px;}
.x5_c00007{left:269.460000px;}
.x3_c00007{left:271.895775px;}
.x1a_c00007{left:291.600000px;}
.x2_c00007{left:296.997000px;}
.x6_c00007{left:314.820000px;}
.x1_c00007{left:402.300000px;}
.x17_c00007{left:549.720000px;}
.x18_c00007{left:558.630000px;}
.x19_c00007{left:564.840000px;}
.x16_c00007{left:584.010000px;}
.x15_c00007{left:611.550000px;}
.x13_c00007{left:615.330000px;}
.x12_c00007{left:617.490000px;}
.x11_c00007{left:628.290000px;}
.x10_c00007{left:635.040000px;}
.x14_c00007{left:643.140000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._0_c00007{width:125.144350pt;}
.fs10_c00007{font-size:12.133333pt;}
.fs1_c00007{font-size:15.868452pt;}
.fs12_c00007{font-size:18.666667pt;}
.fs4_c00007{font-size:19.600000pt;}
.fs15_c00007{font-size:19.605184pt;}
.fs6_c00007{font-size:20.533333pt;}
.fs5_c00007{font-size:21.466667pt;}
.fs17_c00007{font-size:21.466763pt;}
.fs11_c00007{font-size:23.333333pt;}
.fse_c00007{font-size:24.267880pt;}
.fs16_c00007{font-size:27.068304pt;}
.fs7_c00007{font-size:30.790296pt;}
.fs14_c00007{font-size:30.800000pt;}
.fs3_c00007{font-size:34.537218pt;}
.fs0_c00007{font-size:35.466667pt;}
.fsd_c00007{font-size:36.410482pt;}
.fs13_c00007{font-size:39.200000pt;}
.fsf_c00007{font-size:40.139132pt;}
.fsa_c00007{font-size:56.006300pt;}
.fsb_c00007{font-size:57.880669pt;}
.fsc_c00007{font-size:58.815551pt;}
.fs8_c00007{font-size:62.513632pt;}
.fs2_c00007{font-size:82.142573pt;}
.fs9_c00007{font-size:121.350865pt;}
.y0_c00007{bottom:0.000000pt;}
.y13_c00007{bottom:182.518667pt;}
.y1e_c00007{bottom:188.045333pt;}
.y1f_c00007{bottom:190.320000pt;}
.y1d_c00007{bottom:192.480000pt;}
.y2d_c00007{bottom:194.640000pt;}
.y2c_c00007{bottom:198.960000pt;}
.y2f_c00007{bottom:199.200000pt;}
.y20_c00007{bottom:238.320000pt;}
.y21_c00007{bottom:239.877333pt;}
.y22_c00007{bottom:242.649333pt;}
.y24_c00007{bottom:243.001333pt;}
.y26_c00007{bottom:243.417333pt;}
.y30_c00007{bottom:244.080000pt;}
.y23_c00007{bottom:246.361333pt;}
.y25_c00007{bottom:246.480000pt;}
.y2b_c00007{bottom:247.680000pt;}
.y2a_c00007{bottom:287.946667pt;}
.y29_c00007{bottom:305.228000pt;}
.y28_c00007{bottom:310.238667pt;}
.y27_c00007{bottom:322.749333pt;}
.y1b_c00007{bottom:363.836000pt;}
.y1a_c00007{bottom:376.296000pt;}
.y19_c00007{bottom:381.096000pt;}
.y18_c00007{bottom:394.554667pt;}
.y17_c00007{bottom:407.272000pt;}
.y16_c00007{bottom:410.854667pt;}
.y15_c00007{bottom:422.868000pt;}
.y1c_c00007{bottom:428.128000pt;}
.y14_c00007{bottom:430.322667pt;}
.y36_c00007{bottom:484.318667pt;}
.y35_c00007{bottom:506.160000pt;}
.y34_c00007{bottom:514.800000pt;}
.yd_c00007{bottom:529.200525pt;}
.y33_c00007{bottom:532.560000pt;}
.yc_c00007{bottom:533.030667pt;}
.y32_c00007{bottom:538.560000pt;}
.y2e_c00007{bottom:545.280000pt;}
.y31_c00007{bottom:552.960000pt;}
.y12_c00007{bottom:554.389333pt;}
.ye_c00007{bottom:627.814667pt;}
.yf_c00007{bottom:658.305333pt;}
.y10_c00007{bottom:684.881333pt;}
.y11_c00007{bottom:687.086667pt;}
.y4_c00007{bottom:701.429333pt;}
.y3_c00007{bottom:715.252000pt;}
.y2_c00007{bottom:729.174667pt;}
.y7_c00007{bottom:758.361480pt;}
.y6_c00007{bottom:768.731347pt;}
.y5_c00007{bottom:778.040267pt;}
.y1_c00007{bottom:803.749333pt;}
.y8_c00007{bottom:804.382667pt;}
.yb_c00007{bottom:804.720000pt;}
.ya_c00007{bottom:804.841333pt;}
.y9_c00007{bottom:807.721333pt;}
.h12_c00007{height:12.133333pt;}
.h3_c00007{height:15.868452pt;}
.h14_c00007{height:18.666667pt;}
.h6_c00007{height:19.600000pt;}
.h17_c00007{height:19.605184pt;}
.h8_c00007{height:20.533333pt;}
.h7_c00007{height:21.466667pt;}
.h19_c00007{height:21.466763pt;}
.h13_c00007{height:23.333333pt;}
.h10_c00007{height:24.267880pt;}
.h18_c00007{height:27.068304pt;}
.h9_c00007{height:30.790296pt;}
.h16_c00007{height:30.800000pt;}
.h5_c00007{height:34.537218pt;}
.h2_c00007{height:35.466667pt;}
.hf_c00007{height:36.410482pt;}
.h15_c00007{height:39.200000pt;}
.h11_c00007{height:40.139132pt;}
.hc_c00007{height:56.006300pt;}
.hd_c00007{height:57.880669pt;}
.he_c00007{height:58.815551pt;}
.ha_c00007{height:62.513632pt;}
.h4_c00007{height:82.142573pt;}
.hb_c00007{height:121.350865pt;}
.h0_c00007{height:977.040000pt;}
.h1_c00007{height:977.333333pt;}
.w0_c00007{width:699.333333pt;}
.x0_c00007{left:0.000000pt;}
.x23_c00007{left:156.240000pt;}
.x24_c00007{left:161.280000pt;}
.x22_c00007{left:166.560000pt;}
.x21_c00007{left:182.160000pt;}
.x20_c00007{left:184.560000pt;}
.x1d_c00007{left:187.920000pt;}
.x1f_c00007{left:190.080000pt;}
.x1e_c00007{left:193.598205pt;}
.x1c_c00007{left:194.880000pt;}
.x1b_c00007{left:198.000000pt;}
.xe_c00007{left:201.118667pt;}
.xc_c00007{left:202.080000pt;}
.xd_c00007{left:203.278667pt;}
.xa_c00007{left:211.203443pt;}
.xf_c00007{left:213.600000pt;}
.xb_c00007{left:215.040000pt;}
.x4_c00007{left:218.401627pt;}
.x9_c00007{left:222.240000pt;}
.x7_c00007{left:226.560000pt;}
.x8_c00007{left:228.480000pt;}
.x5_c00007{left:239.520000pt;}
.x3_c00007{left:241.685133pt;}
.x1a_c00007{left:259.200000pt;}
.x2_c00007{left:263.997333pt;}
.x6_c00007{left:279.840000pt;}
.x1_c00007{left:357.600000pt;}
.x17_c00007{left:488.640000pt;}
.x18_c00007{left:496.560000pt;}
.x19_c00007{left:502.080000pt;}
.x16_c00007{left:519.120000pt;}
.x15_c00007{left:543.600000pt;}
.x13_c00007{left:546.960000pt;}
.x12_c00007{left:548.880000pt;}
.x11_c00007{left:558.480000pt;}
.x10_c00007{left:564.480000pt;}
.x14_c00007{left:571.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m22_c00008{transform:matrix(0.008644,0.000121,-0.003500,0.249976,0,0);-ms-transform:matrix(0.008644,0.000121,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.008644,0.000121,-0.003500,0.249976,0,0);}
.m19_c00008{transform:matrix(0.023460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023460,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00008{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);}
.m29_c00008{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);}
.m20_c00008{transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);}
.m12_c00008{transform:matrix(0.176379,0.001411,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176379,0.001411,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176379,0.001411,-0.002000,0.249992,0,0);}
.m1a_c00008{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);}
.m11_c00008{transform:matrix(0.183069,0.001465,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183069,0.001465,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183069,0.001465,-0.002000,0.249992,0,0);}
.m10_c00008{transform:matrix(0.185299,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185299,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185299,0.001482,-0.002000,0.249992,0,0);}
.m13_c00008{transform:matrix(0.188984,0.001512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188984,0.001512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188984,0.001512,-0.002000,0.249992,0,0);}
.m1e_c00008{transform:matrix(0.202545,0.002836,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202545,0.002836,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202545,0.002836,-0.003500,0.249976,0,0);}
.mb_c00008{transform:matrix(0.215217,0.004304,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215217,0.004304,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215217,0.004304,-0.004999,0.249950,0,0);}
.m2_c00008{transform:matrix(0.216539,0.003032,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216539,0.003032,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216539,0.003032,-0.003500,0.249976,0,0);}
.m27_c00008{transform:matrix(0.224854,0.002698,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224854,0.002698,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224854,0.002698,-0.003000,0.249982,0,0);}
.m23_c00008{transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);}
.m15_c00008{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);}
.m25_c00008{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);}
.mc_c00008{transform:matrix(0.250355,0.005007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250355,0.005007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250355,0.005007,-0.004999,0.249950,0,0);}
.m5_c00008{transform:matrix(0.259630,0.003635,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259630,0.003635,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259630,0.003635,-0.003500,0.249976,0,0);}
.m3_c00008{transform:matrix(0.263304,0.003686,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263304,0.003686,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263304,0.003686,-0.003500,0.249976,0,0);}
.me_c00008{transform:matrix(0.268061,0.005361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268061,0.005361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268061,0.005361,-0.004999,0.249950,0,0);}
.md_c00008{transform:matrix(0.288877,0.005778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288877,0.005778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288877,0.005778,-0.004999,0.249950,0,0);}
.m1_c00008{transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);}
.m16_c00008{transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00008{transform:matrix(0.313084,0.004383,-0.003500,0.249976,0,0);-ms-transform:matrix(0.313084,0.004383,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.313084,0.004383,-0.003500,0.249976,0,0);}
.m8_c00008{transform:matrix(0.318799,0.004463,-0.003500,0.249976,0,0);-ms-transform:matrix(0.318799,0.004463,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.318799,0.004463,-0.003500,0.249976,0,0);}
.m24_c00008{transform:matrix(0.327333,0.004583,-0.003500,0.249976,0,0);-ms-transform:matrix(0.327333,0.004583,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.327333,0.004583,-0.003500,0.249976,0,0);}
.m21_c00008{transform:matrix(0.330323,0.004625,-0.003500,0.249976,0,0);-ms-transform:matrix(0.330323,0.004625,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.330323,0.004625,-0.003500,0.249976,0,0);}
.m18_c00008{transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366520,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{transform:matrix(0.396225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396225,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.397146,0.005560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.397146,0.005560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.397146,0.005560,-0.003500,0.249976,0,0);}
.m4_c00008{transform:matrix(0.416169,0.005826,-0.003500,0.249976,0,0);-ms-transform:matrix(0.416169,0.005826,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.416169,0.005826,-0.003500,0.249976,0,0);}
.m28_c00008{transform:matrix(0.420350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420350,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{transform:matrix(0.459727,0.005517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.459727,0.005517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.459727,0.005517,-0.003000,0.249982,0,0);}
.m1b_c00008{transform:matrix(0.462740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462740,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.481519,0.009630,-0.004999,0.249950,0,0);-ms-transform:matrix(0.481519,0.009630,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.481519,0.009630,-0.004999,0.249950,0,0);}
.mf_c00008{transform:matrix(0.499629,0.003997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.499629,0.003997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.499629,0.003997,-0.002000,0.249992,0,0);}
.m1f_c00008{transform:matrix(0.529813,0.007417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.529813,0.007417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.529813,0.007417,-0.003500,0.249976,0,0);}
.m1d_c00008{transform:matrix(0.614535,0.008603,-0.003500,0.249976,0,0);-ms-transform:matrix(0.614535,0.008603,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.614535,0.008603,-0.003500,0.249976,0,0);}
.m2b_c00008{transform:matrix(0.659165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659165,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.659550,0.009234,-0.003500,0.249976,0,0);-ms-transform:matrix(0.659550,0.009234,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.659550,0.009234,-0.003500,0.249976,0,0);}
.m6_c00008{transform:matrix(0.697892,0.009770,-0.003500,0.249976,0,0);-ms-transform:matrix(0.697892,0.009770,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.697892,0.009770,-0.003500,0.249976,0,0);}
.m2d_c00008{transform:matrix(0.774095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774095,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.904876,0.007239,-0.002000,0.249992,0,0);-ms-transform:matrix(0.904876,0.007239,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.904876,0.007239,-0.002000,0.249992,0,0);}
.m2e_c00008{transform:matrix(1.040170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040170,0.000000,0.000000,0.250000,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;}
.fs8_c00008{font-size:18.900000px;}
.fsf_c00008{font-size:21.000000px;}
.fs10_c00008{font-size:22.050000px;}
.fs11_c00008{font-size:25.200000px;}
.fs7_c00008{font-size:30.450000px;}
.fs9_c00008{font-size:32.550000px;}
.fsa_c00008{font-size:58.800000px;}
.fs6_c00008{font-size:81.900000px;}
.fs5_c00008{font-size:91.352923px;}
.fs4_c00008{font-size:97.669528px;}
.fs2_c00008{font-size:100.809878px;}
.fsc_c00008{font-size:139.663685px;}
.fs3_c00008{font-size:142.813994px;}
.fsb_c00008{font-size:147.014405px;}
.fsd_c00008{font-size:163.816052px;}
.fs0_c00008{font-size:197.406317px;}
.fse_c00008{font-size:220.515875px;}
.fs1_c00008{font-size:236.273151px;}
.y0_c00008{bottom:0.000000px;}
.y29_c00008{bottom:128.790000px;}
.y28_c00008{bottom:134.730000px;}
.y27_c00008{bottom:138.510000px;}
.y26_c00008{bottom:142.702500px;}
.y25_c00008{bottom:158.411868px;}
.y24_c00008{bottom:160.926000px;}
.y23_c00008{bottom:243.385806px;}
.y22_c00008{bottom:245.419638px;}
.y21_c00008{bottom:247.033059px;}
.y1d_c00008{bottom:296.373255px;}
.y1c_c00008{bottom:296.373711px;}
.y1e_c00008{bottom:296.373924px;}
.y1f_c00008{bottom:296.373945px;}
.y20_c00008{bottom:296.374395px;}
.y19_c00008{bottom:406.753500px;}
.y18_c00008{bottom:413.229000px;}
.y17_c00008{bottom:419.716500px;}
.y1b_c00008{bottom:421.458177px;}
.y1a_c00008{bottom:422.824500px;}
.y16_c00008{bottom:425.239500px;}
.y15_c00008{bottom:431.880000px;}
.y14_c00008{bottom:481.471884px;}
.y13_c00008{bottom:482.644572px;}
.y12_c00008{bottom:483.366300px;}
.y11_c00008{bottom:484.081164px;}
.y10_c00008{bottom:485.461500px;}
.yf_c00008{bottom:543.623850px;}
.ye_c00008{bottom:546.646800px;}
.yd_c00008{bottom:548.827740px;}
.yc_c00008{bottom:549.859140px;}
.yb_c00008{bottom:551.347500px;}
.ya_c00008{bottom:592.651701px;}
.y9_c00008{bottom:594.276891px;}
.y8_c00008{bottom:595.044000px;}
.y7_c00008{bottom:664.698291px;}
.y6_c00008{bottom:667.889409px;}
.y5_c00008{bottom:669.098946px;}
.y4_c00008{bottom:669.726531px;}
.y3_c00008{bottom:736.096011px;}
.y2_c00008{bottom:744.397500px;}
.y1_c00008{bottom:999.811500px;}
.h9_c00008{height:18.900000px;}
.h10_c00008{height:21.000000px;}
.h11_c00008{height:22.050000px;}
.h12_c00008{height:25.200000px;}
.h8_c00008{height:30.450000px;}
.ha_c00008{height:32.550000px;}
.hb_c00008{height:58.800000px;}
.h7_c00008{height:81.900000px;}
.h6_c00008{height:91.352923px;}
.h5_c00008{height:97.669528px;}
.h3_c00008{height:100.809878px;}
.hd_c00008{height:139.663685px;}
.h4_c00008{height:142.813994px;}
.hc_c00008{height:147.014405px;}
.he_c00008{height:163.816052px;}
.h1_c00008{height:197.406317px;}
.hf_c00008{height:220.515875px;}
.h2_c00008{height:236.273151px;}
.h0_c00008{height:1067.250000px;}
.w0_c00008{width:769.500000px;}
.x0_c00008{left:0.000000px;}
.x22_c00008{left:17.070000px;}
.x8_c00008{left:18.265500px;}
.x2_c00008{left:20.215500px;}
.x1_c00008{left:21.324000px;}
.xe_c00008{left:23.622000px;}
.x9_c00008{left:73.059000px;}
.xb_c00008{left:92.950500px;}
.x19_c00008{left:120.726000px;}
.x24_c00008{left:125.820000px;}
.x27_c00008{left:129.060000px;}
.x29_c00008{left:130.410000px;}
.x2a_c00008{left:138.780000px;}
.x25_c00008{left:140.940000px;}
.xc_c00008{left:144.520500px;}
.x1f_c00008{left:153.477945px;}
.x28_c00008{left:156.330000px;}
.x26_c00008{left:161.190000px;}
.x1a_c00008{left:176.055003px;}
.xa_c00008{left:189.144000px;}
.xf_c00008{left:196.164000px;}
.x23_c00008{left:226.581000px;}
.x1b_c00008{left:241.671855px;}
.x4_c00008{left:252.749379px;}
.x10_c00008{left:285.522000px;}
.x5_c00008{left:297.576879px;}
.x20_c00008{left:355.096371px;}
.x11_c00008{left:375.738000px;}
.x1c_c00008{left:379.115298px;}
.x6_c00008{left:383.972379px;}
.x1d_c00008{left:399.367767px;}
.xd_c00008{left:404.715000px;}
.x13_c00008{left:513.540000px;}
.x12_c00008{left:522.324000px;}
.x18_c00008{left:531.360000px;}
.x14_c00008{left:554.310000px;}
.x1e_c00008{left:559.224099px;}
.x17_c00008{left:564.300000px;}
.x15_c00008{left:570.240000px;}
.x16_c00008{left:608.040000px;}
.x21_c00008{left:609.355728px;}
.x7_c00008{left:611.909379px;}
.x3_c00008{left:613.179000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs8_c00008{font-size:16.800000pt;}
.fsf_c00008{font-size:18.666667pt;}
.fs10_c00008{font-size:19.600000pt;}
.fs11_c00008{font-size:22.400000pt;}
.fs7_c00008{font-size:27.066667pt;}
.fs9_c00008{font-size:28.933333pt;}
.fsa_c00008{font-size:52.266667pt;}
.fs6_c00008{font-size:72.800000pt;}
.fs5_c00008{font-size:81.202598pt;}
.fs4_c00008{font-size:86.817358pt;}
.fs2_c00008{font-size:89.608780pt;}
.fsc_c00008{font-size:124.145498pt;}
.fs3_c00008{font-size:126.945772pt;}
.fsb_c00008{font-size:130.679471pt;}
.fsd_c00008{font-size:145.614268pt;}
.fs0_c00008{font-size:175.472282pt;}
.fse_c00008{font-size:196.014111pt;}
.fs1_c00008{font-size:210.020579pt;}
.y0_c00008{bottom:0.000000pt;}
.y29_c00008{bottom:114.480000pt;}
.y28_c00008{bottom:119.760000pt;}
.y27_c00008{bottom:123.120000pt;}
.y26_c00008{bottom:126.846667pt;}
.y25_c00008{bottom:140.810549pt;}
.y24_c00008{bottom:143.045333pt;}
.y23_c00008{bottom:216.342939pt;}
.y22_c00008{bottom:218.150789pt;}
.y21_c00008{bottom:219.584941pt;}
.y1d_c00008{bottom:263.442893pt;}
.y1c_c00008{bottom:263.443299pt;}
.y1e_c00008{bottom:263.443488pt;}
.y1f_c00008{bottom:263.443507pt;}
.y20_c00008{bottom:263.443907pt;}
.y19_c00008{bottom:361.558667pt;}
.y18_c00008{bottom:367.314667pt;}
.y17_c00008{bottom:373.081333pt;}
.y1b_c00008{bottom:374.629491pt;}
.y1a_c00008{bottom:375.844000pt;}
.y16_c00008{bottom:377.990667pt;}
.y15_c00008{bottom:383.893333pt;}
.y14_c00008{bottom:427.975008pt;}
.y13_c00008{bottom:429.017397pt;}
.y12_c00008{bottom:429.658933pt;}
.y11_c00008{bottom:430.294368pt;}
.y10_c00008{bottom:431.521333pt;}
.yf_c00008{bottom:483.221200pt;}
.ye_c00008{bottom:485.908267pt;}
.yd_c00008{bottom:487.846880pt;}
.yc_c00008{bottom:488.763680pt;}
.yb_c00008{bottom:490.086667pt;}
.ya_c00008{bottom:526.801512pt;}
.y9_c00008{bottom:528.246125pt;}
.y8_c00008{bottom:528.928000pt;}
.y7_c00008{bottom:590.842925pt;}
.y6_c00008{bottom:593.679475pt;}
.y5_c00008{bottom:594.754619pt;}
.y4_c00008{bottom:595.312472pt;}
.y3_c00008{bottom:654.307565pt;}
.y2_c00008{bottom:661.686667pt;}
.y1_c00008{bottom:888.721333pt;}
.h9_c00008{height:16.800000pt;}
.h10_c00008{height:18.666667pt;}
.h11_c00008{height:19.600000pt;}
.h12_c00008{height:22.400000pt;}
.h8_c00008{height:27.066667pt;}
.ha_c00008{height:28.933333pt;}
.hb_c00008{height:52.266667pt;}
.h7_c00008{height:72.800000pt;}
.h6_c00008{height:81.202598pt;}
.h5_c00008{height:86.817358pt;}
.h3_c00008{height:89.608780pt;}
.hd_c00008{height:124.145498pt;}
.h4_c00008{height:126.945772pt;}
.hc_c00008{height:130.679471pt;}
.he_c00008{height:145.614268pt;}
.h1_c00008{height:175.472282pt;}
.hf_c00008{height:196.014111pt;}
.h2_c00008{height:210.020579pt;}
.h0_c00008{height:948.666667pt;}
.w0_c00008{width:684.000000pt;}
.x0_c00008{left:0.000000pt;}
.x22_c00008{left:15.173333pt;}
.x8_c00008{left:16.236000pt;}
.x2_c00008{left:17.969333pt;}
.x1_c00008{left:18.954667pt;}
.xe_c00008{left:20.997333pt;}
.x9_c00008{left:64.941333pt;}
.xb_c00008{left:82.622667pt;}
.x19_c00008{left:107.312000pt;}
.x24_c00008{left:111.840000pt;}
.x27_c00008{left:114.720000pt;}
.x29_c00008{left:115.920000pt;}
.x2a_c00008{left:123.360000pt;}
.x25_c00008{left:125.280000pt;}
.xc_c00008{left:128.462667pt;}
.x1f_c00008{left:136.424840pt;}
.x28_c00008{left:138.960000pt;}
.x26_c00008{left:143.280000pt;}
.x1a_c00008{left:156.493336pt;}
.xa_c00008{left:168.128000pt;}
.xf_c00008{left:174.368000pt;}
.x23_c00008{left:201.405333pt;}
.x1b_c00008{left:214.819427pt;}
.x4_c00008{left:224.666115pt;}
.x10_c00008{left:253.797333pt;}
.x5_c00008{left:264.512781pt;}
.x20_c00008{left:315.641219pt;}
.x11_c00008{left:333.989333pt;}
.x1c_c00008{left:336.991376pt;}
.x6_c00008{left:341.308781pt;}
.x1d_c00008{left:354.993571pt;}
.xd_c00008{left:359.746667pt;}
.x13_c00008{left:456.480000pt;}
.x12_c00008{left:464.288000pt;}
.x18_c00008{left:472.320000pt;}
.x14_c00008{left:492.720000pt;}
.x1e_c00008{left:497.088088pt;}
.x17_c00008{left:501.600000pt;}
.x15_c00008{left:506.880000pt;}
.x16_c00008{left:540.480000pt;}
.x21_c00008{left:541.649536pt;}
.x7_c00008{left:543.919448pt;}
.x3_c00008{left:545.048000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9193dcb338fcb58d4a1b78c2.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;}
.m0_c00009{transform:matrix(0.005748,0.319318,-0.249960,0.004499,0,0);-ms-transform:matrix(0.005748,0.319318,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.005748,0.319318,-0.249960,0.004499,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;}
.fs0_c00009{font-size:25.204082px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:177.954000px;}
.h2_c00009{height:25.204082px;}
.h0_c00009{height:1099.170000px;}
.h1_c00009{height:1099.500000px;}
.w1_c00009{width:771.000000px;}
.w0_c00009{width:771.120000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:398.520000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs0_c00009{font-size:22.403629pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:158.181333pt;}
.h2_c00009{height:22.403629pt;}
.h0_c00009{height:977.040000pt;}
.h1_c00009{height:977.333333pt;}
.w1_c00009{width:685.333333pt;}
.w0_c00009{width:685.440000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:354.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m25_c00010{transform:matrix(0.007059,-0.000085,0.003000,0.249982,0,0);-ms-transform:matrix(0.007059,-0.000085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.007059,-0.000085,0.003000,0.249982,0,0);}
.m21_c00010{transform:matrix(0.007259,-0.000087,0.003000,0.249982,0,0);-ms-transform:matrix(0.007259,-0.000087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.007259,-0.000087,0.003000,0.249982,0,0);}
.m73_c00010{transform:matrix(0.008050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.009344,-0.000112,0.003000,0.249982,0,0);-ms-transform:matrix(0.009344,-0.000112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.009344,-0.000112,0.003000,0.249982,0,0);}
.mf6_c00010{transform:matrix(0.009945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009945,0.000000,0.000000,0.250000,0,0);}
.m20_c00010{transform:matrix(0.010269,-0.000123,0.003000,0.249982,0,0);-ms-transform:matrix(0.010269,-0.000123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.010269,-0.000123,0.003000,0.249982,0,0);}
.m29_c00010{transform:matrix(0.035687,-0.000428,0.003000,0.249982,0,0);-ms-transform:matrix(0.035687,-0.000428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.035687,-0.000428,0.003000,0.249982,0,0);}
.m11_c00010{transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);-ms-transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);}
.m3f_c00010{transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);}
.m71_c00010{transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{transform:matrix(0.064250,-0.000771,0.003000,0.249982,0,0);-ms-transform:matrix(0.064250,-0.000771,0.003000,0.249982,0,0);-webkit-transform:matrix(0.064250,-0.000771,0.003000,0.249982,0,0);}
.m5a_c00010{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);}
.mea_c00010{transform:matrix(0.120905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120905,0.000000,0.000000,0.250000,0,0);}
.m4b_c00010{transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00010{transform:matrix(0.128496,-0.001542,0.003000,0.249982,0,0);-ms-transform:matrix(0.128496,-0.001542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.128496,-0.001542,0.003000,0.249982,0,0);}
.m1d_c00010{transform:matrix(0.136265,-0.001635,0.003000,0.249982,0,0);-ms-transform:matrix(0.136265,-0.001635,0.003000,0.249982,0,0);-webkit-transform:matrix(0.136265,-0.001635,0.003000,0.249982,0,0);}
.m6_c00010{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00010{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);}
.md9_c00010{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);}
.m10_c00010{transform:matrix(0.149489,-0.001794,0.003000,0.249982,0,0);-ms-transform:matrix(0.149489,-0.001794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149489,-0.001794,0.003000,0.249982,0,0);}
.m75_c00010{transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.152254,-0.001827,0.003000,0.249982,0,0);-ms-transform:matrix(0.152254,-0.001827,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152254,-0.001827,0.003000,0.249982,0,0);}
.mb4_c00010{transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);}
.m39_c00010{transform:matrix(0.155549,-0.001867,0.003000,0.249982,0,0);-ms-transform:matrix(0.155549,-0.001867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155549,-0.001867,0.003000,0.249982,0,0);}
.mba_c00010{transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);}
.mcc_c00010{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);}
.m77_c00010{transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{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);}
.mc5_c00010{transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00010{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);}
.m2f_c00010{transform:matrix(0.160548,-0.001927,0.003000,0.249982,0,0);-ms-transform:matrix(0.160548,-0.001927,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160548,-0.001927,0.003000,0.249982,0,0);}
.m49_c00010{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);}
.m78_c00010{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);}
.m33_c00010{transform:matrix(0.162413,-0.001949,0.003000,0.249982,0,0);-ms-transform:matrix(0.162413,-0.001949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162413,-0.001949,0.003000,0.249982,0,0);}
.mc8_c00010{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m81_c00010{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);}
.mbc_c00010{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);}
.m38_c00010{transform:matrix(0.164948,-0.001979,0.003000,0.249982,0,0);-ms-transform:matrix(0.164948,-0.001979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164948,-0.001979,0.003000,0.249982,0,0);}
.mc0_c00010{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);}
.m7e_c00010{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);}
.m35_c00010{transform:matrix(0.168503,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168503,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168503,-0.002022,0.003000,0.249982,0,0);}
.mc6_c00010{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);}
.md5_c00010{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);}
.m2b_c00010{transform:matrix(0.170753,-0.002049,0.003000,0.249982,0,0);-ms-transform:matrix(0.170753,-0.002049,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170753,-0.002049,0.003000,0.249982,0,0);}
.me6_c00010{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);}
.m4e_c00010{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);}
.m16_c00010{transform:matrix(0.171768,-0.002061,0.003000,0.249982,0,0);-ms-transform:matrix(0.171768,-0.002061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171768,-0.002061,0.003000,0.249982,0,0);}
.m85_c00010{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);}
.m4d_c00010{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);}
.me4_c00010{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);}
.ma8_c00010{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);}
.mbe_c00010{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);}
.md2_c00010{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.mb0_c00010{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);}
.mdc_c00010{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);}
.mcb_c00010{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);}
.me5_c00010{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00010{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);}
.mac_c00010{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);}
.me2_c00010{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);}
.m8b_c00010{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);}
.m4a_c00010{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);}
.m79_c00010{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);}
.m6c_c00010{transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);}
.mb5_c00010{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);}
.m76_c00010{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);}
.mdb_c00010{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);}
.m9d_c00010{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);}
.mf8_c00010{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);}
.mbf_c00010{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);}
.m4f_c00010{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);}
.mbb_c00010{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);}
.m82_c00010{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);}
.m7a_c00010{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);}
.m51_c00010{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);}
.m2d_c00010{transform:matrix(0.185022,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.185022,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185022,-0.002220,0.003000,0.249982,0,0);}
.m83_c00010{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);}
.mdd_c00010{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);}
.mf5_c00010{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);}
.m7b_c00010{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);}
.m3a_c00010{transform:matrix(0.187651,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187651,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187651,-0.002252,0.003000,0.249982,0,0);}
.mcd_c00010{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);}
.ma1_c00010{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_c00010{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);}
.m36_c00010{transform:matrix(0.190556,-0.002287,0.003000,0.249982,0,0);-ms-transform:matrix(0.190556,-0.002287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190556,-0.002287,0.003000,0.249982,0,0);}
.ma7_c00010{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);}
.ma0_c00010{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);}
.mc7_c00010{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m34_c00010{transform:matrix(0.191601,-0.002299,0.003000,0.249982,0,0);-ms-transform:matrix(0.191601,-0.002299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191601,-0.002299,0.003000,0.249982,0,0);}
.m6e_c00010{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);}
.m80_c00010{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);}
.m15_c00010{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);}
.m87_c00010{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);}
.mca_c00010{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);}
.md1_c00010{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);}
.m2e_c00010{transform:matrix(0.195066,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195066,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195066,-0.002341,0.003000,0.249982,0,0);}
.m52_c00010{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);}
.m58_c00010{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);}
.mb1_c00010{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);}
.me3_c00010{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.md4_c00010{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);}
.m92_c00010{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);}
.m6f_c00010{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);}
.mc1_c00010{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);}
.m8a_c00010{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);}
.m97_c00010{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);}
.md0_c00010{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);}
.m95_c00010{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);}
.mb_c00010{transform:matrix(0.202705,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202705,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202705,-0.002432,0.003000,0.249982,0,0);}
.m61_c00010{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);}
.ma5_c00010{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);}
.mb3_c00010{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);}
.m2c_c00010{transform:matrix(0.203745,-0.002445,0.003000,0.249982,0,0);-ms-transform:matrix(0.203745,-0.002445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203745,-0.002445,0.003000,0.249982,0,0);}
.m88_c00010{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);}
.m13_c00010{transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);-ms-transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);}
.m66_c00010{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);}
.mf3_c00010{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);}
.mb7_c00010{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);}
.ma6_c00010{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);}
.maa_c00010{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);}
.mcf_c00010{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.m68_c00010{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);}
.me1_c00010{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);}
.m7d_c00010{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);}
.m74_c00010{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);}
.m5b_c00010{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);}
.maf_c00010{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);}
.mab_c00010{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);}
.md3_c00010{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);}
.m37_c00010{transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);}
.m8f_c00010{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);}
.m47_c00010{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);}
.mb2_c00010{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);}
.m9e_c00010{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);}
.m7f_c00010{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);}
.m60_c00010{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);}
.ma9_c00010{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);}
.m94_c00010{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);}
.m67_c00010{transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);-ms-transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);}
.m62_c00010{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);}
.m6b_c00010{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);}
.m4c_c00010{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);}
.m5d_c00010{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);}
.m91_c00010{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);}
.m2a_c00010{transform:matrix(0.222574,-0.002671,0.003000,0.249982,0,0);-ms-transform:matrix(0.222574,-0.002671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222574,-0.002671,0.003000,0.249982,0,0);}
.m5e_c00010{transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);}
.m55_c00010{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);}
.m93_c00010{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);}
.m26_c00010{transform:matrix(0.225019,-0.002700,0.003000,0.249982,0,0);-ms-transform:matrix(0.225019,-0.002700,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225019,-0.002700,0.003000,0.249982,0,0);}
.mde_c00010{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);}
.m89_c00010{transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);}
.m9c_c00010{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m9f_c00010{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);}
.m42_c00010{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);}
.m63_c00010{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);}
.m56_c00010{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);}
.mf9_c00010{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);}
.m57_c00010{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);}
.m9b_c00010{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);}
.m50_c00010{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);}
.m5f_c00010{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);}
.m69_c00010{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.md_c00010{transform:matrix(0.232488,-0.002790,0.003000,0.249982,0,0);-ms-transform:matrix(0.232488,-0.002790,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232488,-0.002790,0.003000,0.249982,0,0);}
.m96_c00010{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{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);}
.mf7_c00010{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);}
.m90_c00010{transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);}
.md8_c00010{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);}
.m1b_c00010{transform:matrix(0.240038,-0.002880,0.003000,0.249982,0,0);-ms-transform:matrix(0.240038,-0.002880,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240038,-0.002880,0.003000,0.249982,0,0);}
.m8d_c00010{transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);}
.mda_c00010{transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);}
.ma4_c00010{transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{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);}
.mc4_c00010{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00010{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);}
.m32_c00010{transform:matrix(0.244122,-0.002929,0.003000,0.249982,0,0);-ms-transform:matrix(0.244122,-0.002929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244122,-0.002929,0.003000,0.249982,0,0);}
.m43_c00010{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);}
.m65_c00010{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00010{transform:matrix(0.247512,-0.002970,0.003000,0.249982,0,0);-ms-transform:matrix(0.247512,-0.002970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247512,-0.002970,0.003000,0.249982,0,0);}
.m64_c00010{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.m28_c00010{transform:matrix(0.248312,-0.002980,0.003000,0.249982,0,0);-ms-transform:matrix(0.248312,-0.002980,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248312,-0.002980,0.003000,0.249982,0,0);}
.m99_c00010{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m3d_c00010{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m48_c00010{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m84_c00010{transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{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);}
.mc2_c00010{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.mb6_c00010{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);}
.m1e_c00010{transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);-ms-transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);}
.m30_c00010{transform:matrix(0.256027,-0.003072,0.003000,0.249982,0,0);-ms-transform:matrix(0.256027,-0.003072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256027,-0.003072,0.003000,0.249982,0,0);}
.m59_c00010{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);}
.m98_c00010{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_c00010{transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);}
.mec_c00010{transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);}
.m22_c00010{transform:matrix(0.261401,-0.003137,0.003000,0.249982,0,0);-ms-transform:matrix(0.261401,-0.003137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261401,-0.003137,0.003000,0.249982,0,0);}
.m40_c00010{transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);}
.m54_c00010{transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);}
.m6a_c00010{transform:matrix(0.263925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263925,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);}
.me0_c00010{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.m18_c00010{transform:matrix(0.284270,-0.003411,0.003000,0.249982,0,0);-ms-transform:matrix(0.284270,-0.003411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284270,-0.003411,0.003000,0.249982,0,0);}
.md6_c00010{transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);}
.ma3_c00010{transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{transform:matrix(0.299813,-0.003598,0.003000,0.249982,0,0);-ms-transform:matrix(0.299813,-0.003598,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299813,-0.003598,0.003000,0.249982,0,0);}
.mee_c00010{transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301555,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{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);}
.me7_c00010{transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311645,0.000000,0.000000,0.250000,0,0);}
.m72_c00010{transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);}
.med_c00010{transform:matrix(0.317090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317090,0.000000,0.000000,0.250000,0,0);}
.mc3_c00010{transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319045,0.000000,0.000000,0.250000,0,0);}
.m31_c00010{transform:matrix(0.319212,-0.003831,0.003000,0.249982,0,0);-ms-transform:matrix(0.319212,-0.003831,0.003000,0.249982,0,0);-webkit-transform:matrix(0.319212,-0.003831,0.003000,0.249982,0,0);}
.md7_c00010{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);}
.mad_c00010{transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320585,0.000000,0.000000,0.250000,0,0);}
.m23_c00010{transform:matrix(0.320592,-0.003847,0.003000,0.249982,0,0);-ms-transform:matrix(0.320592,-0.003847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.320592,-0.003847,0.003000,0.249982,0,0);}
.mef_c00010{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.mae_c00010{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);}
.m24_c00010{transform:matrix(0.332156,-0.003986,0.003000,0.249982,0,0);-ms-transform:matrix(0.332156,-0.003986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.332156,-0.003986,0.003000,0.249982,0,0);}
.m86_c00010{transform:matrix(0.332230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332230,0.000000,0.000000,0.250000,0,0);}
.mf4_c00010{transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);}
.mfc_c00010{transform:matrix(0.344815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344815,0.000000,0.000000,0.250000,0,0);}
.mfb_c00010{transform:matrix(0.344865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344865,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.347310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347310,0.000000,0.000000,0.250000,0,0);}
.m6d_c00010{transform:matrix(0.352965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352965,0.000000,0.000000,0.250000,0,0);}
.m41_c00010{transform:matrix(0.355940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355940,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);}
.m44_c00010{transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);}
.m70_c00010{transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.362770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362770,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.370075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370075,0.000000,0.000000,0.250000,0,0);}
.me9_c00010{transform:matrix(0.376675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376675,0.000000,0.000000,0.250000,0,0);}
.m53_c00010{transform:matrix(0.377480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377480,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);}
.mb8_c00010{transform:matrix(0.382115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382115,0.000000,0.000000,0.250000,0,0);}
.mf0_c00010{transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);}
.me8_c00010{transform:matrix(0.400905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400905,0.000000,0.000000,0.250000,0,0);}
.m19_c00010{transform:matrix(0.425444,-0.005105,0.003000,0.249982,0,0);-ms-transform:matrix(0.425444,-0.005105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.425444,-0.005105,0.003000,0.249982,0,0);}
.mce_c00010{transform:matrix(0.435235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00010{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.m7c_c00010{transform:matrix(0.446350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446350,0.000000,0.000000,0.250000,0,0);}
.mf2_c00010{transform:matrix(0.448800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448800,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{transform:matrix(0.452392,-0.005429,0.003000,0.249982,0,0);-ms-transform:matrix(0.452392,-0.005429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.452392,-0.005429,0.003000,0.249982,0,0);}
.ma2_c00010{transform:matrix(0.486775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486775,0.000000,0.000000,0.250000,0,0);}
.meb_c00010{transform:matrix(0.515805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515805,0.000000,0.000000,0.250000,0,0);}
.m5c_c00010{transform:matrix(0.541060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00010{transform:matrix(0.569440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569440,0.000000,0.000000,0.250000,0,0);}
.mf_c00010{transform:matrix(0.571564,-0.006859,0.003000,0.249982,0,0);-ms-transform:matrix(0.571564,-0.006859,0.003000,0.249982,0,0);-webkit-transform:matrix(0.571564,-0.006859,0.003000,0.249982,0,0);}
.mf1_c00010{transform:matrix(0.590415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590415,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.653893,-0.007847,0.003000,0.249982,0,0);-ms-transform:matrix(0.653893,-0.007847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.653893,-0.007847,0.003000,0.249982,0,0);}
.m9a_c00010{transform:matrix(0.680405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680405,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(1.302101,-0.014323,0.002750,0.249985,0,0);-ms-transform:matrix(1.302101,-0.014323,0.002750,0.249985,0,0);-webkit-transform:matrix(1.302101,-0.014323,0.002750,0.249985,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;}
.fs1e_c00010{font-size:24.150000px;}
.fs6_c00010{font-size:29.402117px;}
.fs5_c00010{font-size:37.802722px;}
.fs20_c00010{font-size:47.250000px;}
.fsf_c00010{font-size:52.500000px;}
.fs1d_c00010{font-size:53.550000px;}
.fs11_c00010{font-size:59.850000px;}
.fs10_c00010{font-size:63.000000px;}
.fse_c00010{font-size:68.250000px;}
.fs4_c00010{font-size:74.555367px;}
.fs1f_c00010{font-size:81.900000px;}
.fs14_c00010{font-size:87.150000px;}
.fs1b_c00010{font-size:88.200000px;}
.fs16_c00010{font-size:89.250000px;}
.fs15_c00010{font-size:90.300000px;}
.fs8_c00010{font-size:91.356577px;}
.fs12_c00010{font-size:93.450000px;}
.fs17_c00010{font-size:98.700000px;}
.fs13_c00010{font-size:101.850000px;}
.fs19_c00010{font-size:102.900000px;}
.fsc_c00010{font-size:102.907409px;}
.fs7_c00010{font-size:103.957484px;}
.fs1a_c00010{font-size:105.000000px;}
.fs18_c00010{font-size:106.050000px;}
.fsd_c00010{font-size:106.057635px;}
.fsb_c00010{font-size:108.157787px;}
.fs1c_c00010{font-size:110.250000px;}
.fsa_c00010{font-size:117.608467px;}
.fs21_c00010{font-size:134.400000px;}
.fs3_c00010{font-size:155.400000px;}
.fs1_c00010{font-size:158.550000px;}
.fs0_c00010{font-size:224.713594px;}
.fs2_c00010{font-size:240.450000px;}
.fs9_c00010{font-size:341.274569px;}
.y0_c00010{bottom:0.000000px;}
.ya7_c00010{bottom:148.771500px;}
.ya8_c00010{bottom:149.389500px;}
.ya9_c00010{bottom:150.051000px;}
.yaa_c00010{bottom:150.580500px;}
.yab_c00010{bottom:151.276500px;}
.yac_c00010{bottom:151.971000px;}
.yad_c00010{bottom:152.896500px;}
.ya6_c00010{bottom:171.511500px;}
.ya5_c00010{bottom:182.214000px;}
.y9a_c00010{bottom:205.465500px;}
.y9b_c00010{bottom:205.665000px;}
.y9c_c00010{bottom:205.993500px;}
.y9d_c00010{bottom:206.751000px;}
.y9e_c00010{bottom:206.938500px;}
.y9f_c00010{bottom:207.631500px;}
.ya0_c00010{bottom:208.104000px;}
.ya1_c00010{bottom:208.386000px;}
.ya2_c00010{bottom:209.149500px;}
.y99_c00010{bottom:233.301000px;}
.y98_c00010{bottom:258.718500px;}
.y8e_c00010{bottom:283.233000px;}
.y8f_c00010{bottom:283.611000px;}
.y90_c00010{bottom:283.807500px;}
.y91_c00010{bottom:284.424000px;}
.y92_c00010{bottom:284.725500px;}
.y93_c00010{bottom:284.964000px;}
.y94_c00010{bottom:285.321000px;}
.y95_c00010{bottom:286.291500px;}
.y96_c00010{bottom:286.668000px;}
.y97_c00010{bottom:287.106000px;}
.y8d_c00010{bottom:310.570500px;}
.y82_c00010{bottom:335.071500px;}
.y83_c00010{bottom:335.397000px;}
.y84_c00010{bottom:336.036000px;}
.y85_c00010{bottom:336.522000px;}
.y86_c00010{bottom:336.832500px;}
.y87_c00010{bottom:337.168500px;}
.y88_c00010{bottom:337.387500px;}
.y89_c00010{bottom:337.654500px;}
.y8a_c00010{bottom:338.302500px;}
.y8b_c00010{bottom:338.490000px;}
.y8c_c00010{bottom:338.901000px;}
.y81_c00010{bottom:363.237000px;}
.y78_c00010{bottom:387.193500px;}
.y79_c00010{bottom:387.510000px;}
.y7a_c00010{bottom:387.960000px;}
.y7b_c00010{bottom:388.626000px;}
.y7c_c00010{bottom:388.951500px;}
.y7d_c00010{bottom:389.524500px;}
.y7e_c00010{bottom:389.734500px;}
.y7f_c00010{bottom:389.983500px;}
.y80_c00010{bottom:390.513000px;}
.y6d_c00010{bottom:413.911500px;}
.y6e_c00010{bottom:414.190500px;}
.y6f_c00010{bottom:414.507000px;}
.y70_c00010{bottom:414.706500px;}
.y71_c00010{bottom:414.997500px;}
.y72_c00010{bottom:415.303500px;}
.y73_c00010{bottom:415.684500px;}
.y74_c00010{bottom:416.047500px;}
.y75_c00010{bottom:416.329500px;}
.y76_c00010{bottom:416.469000px;}
.y77_c00010{bottom:416.926500px;}
.y64_c00010{bottom:439.291500px;}
.y65_c00010{bottom:439.567500px;}
.y66_c00010{bottom:439.755000px;}
.y67_c00010{bottom:440.454000px;}
.y68_c00010{bottom:440.782500px;}
.y69_c00010{bottom:441.397500px;}
.y6a_c00010{bottom:441.883500px;}
.y6b_c00010{bottom:441.990000px;}
.y6c_c00010{bottom:442.171500px;}
.y5b_c00010{bottom:465.483000px;}
.y5c_c00010{bottom:465.834000px;}
.y5d_c00010{bottom:466.036500px;}
.y5e_c00010{bottom:466.402500px;}
.y5f_c00010{bottom:466.747500px;}
.y60_c00010{bottom:467.170500px;}
.y61_c00010{bottom:467.457000px;}
.y62_c00010{bottom:467.884500px;}
.y63_c00010{bottom:468.492000px;}
.y51_c00010{bottom:491.671500px;}
.y52_c00010{bottom:491.776500px;}
.y53_c00010{bottom:492.141000px;}
.y54_c00010{bottom:492.274500px;}
.y55_c00010{bottom:492.753000px;}
.y56_c00010{bottom:493.120500px;}
.y57_c00010{bottom:493.453500px;}
.y58_c00010{bottom:493.708500px;}
.y59_c00010{bottom:494.131500px;}
.y5a_c00010{bottom:494.629500px;}
.ya4_c00010{bottom:506.250000px;}
.y50_c00010{bottom:518.917500px;}
.y47_c00010{bottom:543.513000px;}
.y48_c00010{bottom:544.033500px;}
.y49_c00010{bottom:544.245000px;}
.y4a_c00010{bottom:544.587000px;}
.y4b_c00010{bottom:544.990500px;}
.y4c_c00010{bottom:545.562000px;}
.y4d_c00010{bottom:545.772000px;}
.y4e_c00010{bottom:546.117000px;}
.y4f_c00010{bottom:546.517500px;}
.ya3_c00010{bottom:554.040000px;}
.y3f_c00010{bottom:569.701500px;}
.y40_c00010{bottom:570.013500px;}
.y41_c00010{bottom:570.757500px;}
.y42_c00010{bottom:571.054500px;}
.y43_c00010{bottom:571.401000px;}
.y44_c00010{bottom:571.737000px;}
.y45_c00010{bottom:572.202000px;}
.y46_c00010{bottom:572.707500px;}
.y3b_c00010{bottom:573.480000px;}
.y3a_c00010{bottom:586.980000px;}
.y3e_c00010{bottom:596.659500px;}
.y39_c00010{bottom:614.520000px;}
.y38_c00010{bottom:615.600000px;}
.y3d_c00010{bottom:623.134500px;}
.y3c_c00010{bottom:647.706000px;}
.y2e_c00010{bottom:671.750226px;}
.y2f_c00010{bottom:672.198318px;}
.y30_c00010{bottom:672.694482px;}
.y31_c00010{bottom:672.886878px;}
.y32_c00010{bottom:673.335798px;}
.y33_c00010{bottom:673.811706px;}
.y34_c00010{bottom:674.626146px;}
.y35_c00010{bottom:675.165000px;}
.y36_c00010{bottom:675.418116px;}
.y37_c00010{bottom:676.214622px;}
.y23_c00010{bottom:696.054306px;}
.y24_c00010{bottom:696.652230px;}
.y25_c00010{bottom:697.097370px;}
.y26_c00010{bottom:697.300302px;}
.y27_c00010{bottom:697.899774px;}
.y28_c00010{bottom:698.223792px;}
.y29_c00010{bottom:699.419352px;}
.y2a_c00010{bottom:700.423752px;}
.y2b_c00010{bottom:700.808304px;}
.y2c_c00010{bottom:701.159250px;}
.y2d_c00010{bottom:702.696720px;}
.y1f_c00010{bottom:719.003946px;}
.y20_c00010{bottom:719.602614px;}
.y21_c00010{bottom:722.141442px;}
.y22_c00010{bottom:724.544088px;}
.y1a_c00010{bottom:742.498794px;}
.y18_c00010{bottom:745.504566px;}
.y19_c00010{bottom:745.504578px;}
.y1b_c00010{bottom:745.716726px;}
.y1c_c00010{bottom:752.086908px;}
.y1d_c00010{bottom:753.953280px;}
.y1e_c00010{bottom:755.367330px;}
.y14_c00010{bottom:768.415992px;}
.y15_c00010{bottom:769.292574px;}
.y16_c00010{bottom:773.419230px;}
.y17_c00010{bottom:775.615458px;}
.ye_c00010{bottom:800.010090px;}
.yf_c00010{bottom:801.442458px;}
.y10_c00010{bottom:802.065174px;}
.y11_c00010{bottom:802.787448px;}
.y12_c00010{bottom:803.921592px;}
.y13_c00010{bottom:804.970086px;}
.yb_c00010{bottom:815.940660px;}
.yc_c00010{bottom:821.267508px;}
.yd_c00010{bottom:822.056610px;}
.y9_c00010{bottom:832.950024px;}
.y7_c00010{bottom:839.431500px;}
.ya_c00010{bottom:839.692050px;}
.y8_c00010{bottom:846.077784px;}
.y6_c00010{bottom:851.091000px;}
.y3_c00010{bottom:896.403000px;}
.y4_c00010{bottom:896.802000px;}
.y5_c00010{bottom:899.722500px;}
.y2_c00010{bottom:939.022500px;}
.y1_c00010{bottom:958.504500px;}
.h20_c00010{height:24.150000px;}
.h8_c00010{height:29.402117px;}
.h7_c00010{height:37.802722px;}
.h22_c00010{height:47.250000px;}
.h11_c00010{height:52.500000px;}
.h1f_c00010{height:53.550000px;}
.h13_c00010{height:59.850000px;}
.h12_c00010{height:63.000000px;}
.h10_c00010{height:68.250000px;}
.h6_c00010{height:74.555367px;}
.h21_c00010{height:81.900000px;}
.h16_c00010{height:87.150000px;}
.h1d_c00010{height:88.200000px;}
.h18_c00010{height:89.250000px;}
.h17_c00010{height:90.300000px;}
.ha_c00010{height:91.356577px;}
.h14_c00010{height:93.450000px;}
.h19_c00010{height:98.700000px;}
.h15_c00010{height:101.850000px;}
.h1b_c00010{height:102.900000px;}
.he_c00010{height:102.907409px;}
.h9_c00010{height:103.957484px;}
.h1c_c00010{height:105.000000px;}
.h1a_c00010{height:106.050000px;}
.hf_c00010{height:106.057635px;}
.hd_c00010{height:108.157787px;}
.h1e_c00010{height:110.250000px;}
.hc_c00010{height:117.608467px;}
.h23_c00010{height:134.400000px;}
.h5_c00010{height:155.400000px;}
.h3_c00010{height:158.550000px;}
.h2_c00010{height:224.713594px;}
.h4_c00010{height:240.450000px;}
.hb_c00010{height:341.274569px;}
.h1_c00010{height:1092.750000px;}
.h0_c00010{height:1092.900000px;}
.w1_c00010{width:799.500000px;}
.w0_c00010{width:799.740000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:71.401500px;}
.x5_c00010{left:72.912000px;}
.x2_c00010{left:74.250000px;}
.x2c_c00010{left:75.330000px;}
.x6a_c00010{left:76.816500px;}
.xd_c00010{left:77.999064px;}
.xb_c00010{left:79.742232px;}
.x5d_c00010{left:82.707000px;}
.x2d_c00010{left:84.780000px;}
.x2f_c00010{left:88.830000px;}
.x2e_c00010{left:91.260000px;}
.x8f_c00010{left:96.390000px;}
.x8b_c00010{left:101.911500px;}
.x88_c00010{left:108.810000px;}
.x62_c00010{left:123.783000px;}
.x8_c00010{left:125.281500px;}
.x25_c00010{left:127.327326px;}
.x3e_c00010{left:128.520000px;}
.x74_c00010{left:130.549500px;}
.x1a_c00010{left:134.367570px;}
.x52_c00010{left:136.678500px;}
.x6_c00010{left:139.501500px;}
.x15_c00010{left:141.227364px;}
.x6f_c00010{left:148.768500px;}
.x53_c00010{left:154.279500px;}
.x30_c00010{left:157.680000px;}
.x5e_c00010{left:159.949500px;}
.x1d_c00010{left:162.079584px;}
.x7b_c00010{left:165.508500px;}
.x63_c00010{left:176.418000px;}
.x8c_c00010{left:177.517500px;}
.x1e_c00010{left:178.990584px;}
.x45_c00010{left:181.014000px;}
.x84_c00010{left:184.948500px;}
.x58_c00010{left:186.951000px;}
.x26_c00010{left:189.427314px;}
.x9_c00010{left:199.531500px;}
.x3f_c00010{left:203.040000px;}
.x10_c00010{left:204.882786px;}
.x3_c00010{left:207.360000px;}
.x64_c00010{left:209.625000px;}
.x27_c00010{left:213.461466px;}
.x17_c00010{left:214.741818px;}
.x50_c00010{left:221.398500px;}
.x91_c00010{left:225.990000px;}
.x85_c00010{left:227.608500px;}
.x1f_c00010{left:228.946584px;}
.x40_c00010{left:237.870000px;}
.x80_c00010{left:247.446000px;}
.x38_c00010{left:250.830000px;}
.x20_c00010{left:255.948084px;}
.x65_c00010{left:258.228000px;}
.x11_c00010{left:261.526470px;}
.x70_c00010{left:262.978500px;}
.x31_c00010{left:265.680000px;}
.x28_c00010{left:269.624166px;}
.x32_c00010{left:274.050000px;}
.x5f_c00010{left:276.325500px;}
.x59_c00010{left:281.691000px;}
.x8d_c00010{left:285.786000px;}
.x39_c00010{left:287.010000px;}
.x75_c00010{left:291.139500px;}
.x46_c00010{left:304.900500px;}
.x7c_c00010{left:305.908500px;}
.x4b_c00010{left:307.342500px;}
.x66_c00010{left:309.258000px;}
.x33_c00010{left:311.850000px;}
.x41_c00010{left:313.470000px;}
.x6b_c00010{left:315.469500px;}
.x54_c00010{left:316.822500px;}
.x81_c00010{left:324.666000px;}
.x12_c00010{left:327.216762px;}
.x29_c00010{left:329.036010px;}
.x60_c00010{left:331.131000px;}
.x76_c00010{left:335.466000px;}
.x3a_c00010{left:337.230000px;}
.x5a_c00010{left:339.228000px;}
.x86_c00010{left:341.278500px;}
.x98_c00010{left:342.639000px;}
.x7d_c00010{left:345.058500px;}
.x42_c00010{left:348.840000px;}
.x47_c00010{left:354.312000px;}
.x21_c00010{left:355.578084px;}
.x90_c00010{left:359.370000px;}
.x92_c00010{left:363.150000px;}
.x6c_c00010{left:369.742500px;}
.x67_c00010{left:372.708000px;}
.x4c_c00010{left:374.596500px;}
.x82_c00010{left:375.691500px;}
.x34_c00010{left:377.190000px;}
.x71_c00010{left:379.618500px;}
.x3b_c00010{left:382.320000px;}
.x77_c00010{left:383.526000px;}
.x1b_c00010{left:388.317672px;}
.x43_c00010{left:390.150000px;}
.x99_c00010{left:395.602500px;}
.x5b_c00010{left:409.657500px;}
.x48_c00010{left:412.126500px;}
.x78_c00010{left:414.795000px;}
.x89_c00010{left:417.690000px;}
.x35_c00010{left:425.250000px;}
.x87_c00010{left:426.868500px;}
.x13_c00010{left:430.355004px;}
.x55_c00010{left:433.690500px;}
.x22_c00010{left:439.278084px;}
.x72_c00010{left:441.718500px;}
.x93_c00010{left:445.770000px;}
.x79_c00010{left:452.922000px;}
.x5c_c00010{left:457.450500px;}
.xe_c00010{left:458.518938px;}
.x6d_c00010{left:465.321000px;}
.x49_c00010{left:468.024000px;}
.x4d_c00010{left:469.909500px;}
.x23_c00010{left:471.324084px;}
.x56_c00010{left:476.118000px;}
.x51_c00010{left:479.788500px;}
.x18_c00010{left:491.678760px;}
.x2a_c00010{left:498.068610px;}
.x44_c00010{left:499.500000px;}
.x24_c00010{left:500.569584px;}
.x68_c00010{left:503.356500px;}
.x4e_c00010{left:505.012500px;}
.x7e_c00010{left:506.788500px;}
.x3c_c00010{left:510.300000px;}
.xf_c00010{left:514.901088px;}
.x94_c00010{left:517.860000px;}
.x8e_c00010{left:519.337500px;}
.x14_c00010{left:525.730656px;}
.x2b_c00010{left:529.663122px;}
.x61_c00010{left:532.540500px;}
.x9a_c00010{left:534.616500px;}
.x73_c00010{left:537.298500px;}
.x6e_c00010{left:542.005500px;}
.x4a_c00010{left:545.472000px;}
.x57_c00010{left:546.555000px;}
.x8a_c00010{left:554.580000px;}
.x36_c00010{left:559.980000px;}
.x4f_c00010{left:562.524000px;}
.x83_c00010{left:568.213500px;}
.x3d_c00010{left:571.860000px;}
.x4_c00010{left:573.480000px;}
.x37_c00010{left:574.560000px;}
.x69_c00010{left:579.535500px;}
.x95_c00010{left:581.040000px;}
.x7f_c00010{left:586.978500px;}
.x96_c00010{left:600.750000px;}
.x7_c00010{left:626.304000px;}
.x16_c00010{left:627.503514px;}
.x1c_c00010{left:628.543932px;}
.xa_c00010{left:629.641500px;}
.x7a_c00010{left:630.874500px;}
.x19_c00010{left:634.278432px;}
.xc_c00010{left:641.577732px;}
.x97_c00010{left:654.480000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs1e_c00010{font-size:21.466667pt;}
.fs6_c00010{font-size:26.135215pt;}
.fs5_c00010{font-size:33.602419pt;}
.fs20_c00010{font-size:42.000000pt;}
.fsf_c00010{font-size:46.666667pt;}
.fs1d_c00010{font-size:47.600000pt;}
.fs11_c00010{font-size:53.200000pt;}
.fs10_c00010{font-size:56.000000pt;}
.fse_c00010{font-size:60.666667pt;}
.fs4_c00010{font-size:66.271438pt;}
.fs1f_c00010{font-size:72.800000pt;}
.fs14_c00010{font-size:77.466667pt;}
.fs1b_c00010{font-size:78.400000pt;}
.fs16_c00010{font-size:79.333333pt;}
.fs15_c00010{font-size:80.266667pt;}
.fs8_c00010{font-size:81.205846pt;}
.fs12_c00010{font-size:83.066667pt;}
.fs17_c00010{font-size:87.733333pt;}
.fs13_c00010{font-size:90.533333pt;}
.fs19_c00010{font-size:91.466667pt;}
.fsc_c00010{font-size:91.473252pt;}
.fs7_c00010{font-size:92.406653pt;}
.fs1a_c00010{font-size:93.333333pt;}
.fs18_c00010{font-size:94.266667pt;}
.fsd_c00010{font-size:94.273454pt;}
.fsb_c00010{font-size:96.140255pt;}
.fs1c_c00010{font-size:98.000000pt;}
.fsa_c00010{font-size:104.540859pt;}
.fs21_c00010{font-size:119.466667pt;}
.fs3_c00010{font-size:138.133333pt;}
.fs1_c00010{font-size:140.933333pt;}
.fs0_c00010{font-size:199.745417pt;}
.fs2_c00010{font-size:213.733333pt;}
.fs9_c00010{font-size:303.355173pt;}
.y0_c00010{bottom:0.000000pt;}
.ya7_c00010{bottom:132.241333pt;}
.ya8_c00010{bottom:132.790667pt;}
.ya9_c00010{bottom:133.378667pt;}
.yaa_c00010{bottom:133.849333pt;}
.yab_c00010{bottom:134.468000pt;}
.yac_c00010{bottom:135.085333pt;}
.yad_c00010{bottom:135.908000pt;}
.ya6_c00010{bottom:152.454667pt;}
.ya5_c00010{bottom:161.968000pt;}
.y9a_c00010{bottom:182.636000pt;}
.y9b_c00010{bottom:182.813333pt;}
.y9c_c00010{bottom:183.105333pt;}
.y9d_c00010{bottom:183.778667pt;}
.y9e_c00010{bottom:183.945333pt;}
.y9f_c00010{bottom:184.561333pt;}
.ya0_c00010{bottom:184.981333pt;}
.ya1_c00010{bottom:185.232000pt;}
.ya2_c00010{bottom:185.910667pt;}
.y99_c00010{bottom:207.378667pt;}
.y98_c00010{bottom:229.972000pt;}
.y8e_c00010{bottom:251.762667pt;}
.y8f_c00010{bottom:252.098667pt;}
.y90_c00010{bottom:252.273333pt;}
.y91_c00010{bottom:252.821333pt;}
.y92_c00010{bottom:253.089333pt;}
.y93_c00010{bottom:253.301333pt;}
.y94_c00010{bottom:253.618667pt;}
.y95_c00010{bottom:254.481333pt;}
.y96_c00010{bottom:254.816000pt;}
.y97_c00010{bottom:255.205333pt;}
.y8d_c00010{bottom:276.062667pt;}
.y82_c00010{bottom:297.841333pt;}
.y83_c00010{bottom:298.130667pt;}
.y84_c00010{bottom:298.698667pt;}
.y85_c00010{bottom:299.130667pt;}
.y86_c00010{bottom:299.406667pt;}
.y87_c00010{bottom:299.705333pt;}
.y88_c00010{bottom:299.900000pt;}
.y89_c00010{bottom:300.137333pt;}
.y8a_c00010{bottom:300.713333pt;}
.y8b_c00010{bottom:300.880000pt;}
.y8c_c00010{bottom:301.245333pt;}
.y81_c00010{bottom:322.877333pt;}
.y78_c00010{bottom:344.172000pt;}
.y79_c00010{bottom:344.453333pt;}
.y7a_c00010{bottom:344.853333pt;}
.y7b_c00010{bottom:345.445333pt;}
.y7c_c00010{bottom:345.734667pt;}
.y7d_c00010{bottom:346.244000pt;}
.y7e_c00010{bottom:346.430667pt;}
.y7f_c00010{bottom:346.652000pt;}
.y80_c00010{bottom:347.122667pt;}
.y6d_c00010{bottom:367.921333pt;}
.y6e_c00010{bottom:368.169333pt;}
.y6f_c00010{bottom:368.450667pt;}
.y70_c00010{bottom:368.628000pt;}
.y71_c00010{bottom:368.886667pt;}
.y72_c00010{bottom:369.158667pt;}
.y73_c00010{bottom:369.497333pt;}
.y74_c00010{bottom:369.820000pt;}
.y75_c00010{bottom:370.070667pt;}
.y76_c00010{bottom:370.194667pt;}
.y77_c00010{bottom:370.601333pt;}
.y64_c00010{bottom:390.481333pt;}
.y65_c00010{bottom:390.726667pt;}
.y66_c00010{bottom:390.893333pt;}
.y67_c00010{bottom:391.514667pt;}
.y68_c00010{bottom:391.806667pt;}
.y69_c00010{bottom:392.353333pt;}
.y6a_c00010{bottom:392.785333pt;}
.y6b_c00010{bottom:392.880000pt;}
.y6c_c00010{bottom:393.041333pt;}
.y5b_c00010{bottom:413.762667pt;}
.y5c_c00010{bottom:414.074667pt;}
.y5d_c00010{bottom:414.254667pt;}
.y5e_c00010{bottom:414.580000pt;}
.y5f_c00010{bottom:414.886667pt;}
.y60_c00010{bottom:415.262667pt;}
.y61_c00010{bottom:415.517333pt;}
.y62_c00010{bottom:415.897333pt;}
.y63_c00010{bottom:416.437333pt;}
.y51_c00010{bottom:437.041333pt;}
.y52_c00010{bottom:437.134667pt;}
.y53_c00010{bottom:437.458667pt;}
.y54_c00010{bottom:437.577333pt;}
.y55_c00010{bottom:438.002667pt;}
.y56_c00010{bottom:438.329333pt;}
.y57_c00010{bottom:438.625333pt;}
.y58_c00010{bottom:438.852000pt;}
.y59_c00010{bottom:439.228000pt;}
.y5a_c00010{bottom:439.670667pt;}
.ya4_c00010{bottom:450.000000pt;}
.y50_c00010{bottom:461.260000pt;}
.y47_c00010{bottom:483.122667pt;}
.y48_c00010{bottom:483.585333pt;}
.y49_c00010{bottom:483.773333pt;}
.y4a_c00010{bottom:484.077333pt;}
.y4b_c00010{bottom:484.436000pt;}
.y4c_c00010{bottom:484.944000pt;}
.y4d_c00010{bottom:485.130667pt;}
.y4e_c00010{bottom:485.437333pt;}
.y4f_c00010{bottom:485.793333pt;}
.ya3_c00010{bottom:492.480000pt;}
.y3f_c00010{bottom:506.401333pt;}
.y40_c00010{bottom:506.678667pt;}
.y41_c00010{bottom:507.340000pt;}
.y42_c00010{bottom:507.604000pt;}
.y43_c00010{bottom:507.912000pt;}
.y44_c00010{bottom:508.210667pt;}
.y45_c00010{bottom:508.624000pt;}
.y46_c00010{bottom:509.073333pt;}
.y3b_c00010{bottom:509.760000pt;}
.y3a_c00010{bottom:521.760000pt;}
.y3e_c00010{bottom:530.364000pt;}
.y39_c00010{bottom:546.240000pt;}
.y38_c00010{bottom:547.200000pt;}
.y3d_c00010{bottom:553.897333pt;}
.y3c_c00010{bottom:575.738667pt;}
.y2e_c00010{bottom:597.111312pt;}
.y2f_c00010{bottom:597.509616pt;}
.y30_c00010{bottom:597.950651pt;}
.y31_c00010{bottom:598.121669pt;}
.y32_c00010{bottom:598.520709pt;}
.y33_c00010{bottom:598.943739pt;}
.y34_c00010{bottom:599.667685pt;}
.y35_c00010{bottom:600.146667pt;}
.y36_c00010{bottom:600.371659pt;}
.y37_c00010{bottom:601.079664pt;}
.y23_c00010{bottom:618.714939pt;}
.y24_c00010{bottom:619.246427pt;}
.y25_c00010{bottom:619.642107pt;}
.y26_c00010{bottom:619.822491pt;}
.y27_c00010{bottom:620.355355pt;}
.y28_c00010{bottom:620.643371pt;}
.y29_c00010{bottom:621.706091pt;}
.y2a_c00010{bottom:622.598891pt;}
.y2b_c00010{bottom:622.940715pt;}
.y2c_c00010{bottom:623.252667pt;}
.y2d_c00010{bottom:624.619307pt;}
.y1f_c00010{bottom:639.114619pt;}
.y20_c00010{bottom:639.646768pt;}
.y21_c00010{bottom:641.903504pt;}
.y22_c00010{bottom:644.039189pt;}
.y1a_c00010{bottom:659.998928pt;}
.y18_c00010{bottom:662.670725pt;}
.y19_c00010{bottom:662.670736pt;}
.y1b_c00010{bottom:662.859312pt;}
.y1c_c00010{bottom:668.521696pt;}
.y1d_c00010{bottom:670.180693pt;}
.y1e_c00010{bottom:671.437627pt;}
.y14_c00010{bottom:683.036437pt;}
.y15_c00010{bottom:683.815621pt;}
.y16_c00010{bottom:687.483760pt;}
.y17_c00010{bottom:689.435963pt;}
.ye_c00010{bottom:711.120080pt;}
.yf_c00010{bottom:712.393296pt;}
.y10_c00010{bottom:712.946821pt;}
.y11_c00010{bottom:713.588843pt;}
.y12_c00010{bottom:714.596971pt;}
.y13_c00010{bottom:715.528965pt;}
.yb_c00010{bottom:725.280587pt;}
.yc_c00010{bottom:730.015563pt;}
.yd_c00010{bottom:730.716987pt;}
.y9_c00010{bottom:740.400021pt;}
.y7_c00010{bottom:746.161333pt;}
.ya_c00010{bottom:746.392933pt;}
.y8_c00010{bottom:752.069141pt;}
.y6_c00010{bottom:756.525333pt;}
.y3_c00010{bottom:796.802667pt;}
.y4_c00010{bottom:797.157333pt;}
.y5_c00010{bottom:799.753333pt;}
.y2_c00010{bottom:834.686667pt;}
.y1_c00010{bottom:852.004000pt;}
.h20_c00010{height:21.466667pt;}
.h8_c00010{height:26.135215pt;}
.h7_c00010{height:33.602419pt;}
.h22_c00010{height:42.000000pt;}
.h11_c00010{height:46.666667pt;}
.h1f_c00010{height:47.600000pt;}
.h13_c00010{height:53.200000pt;}
.h12_c00010{height:56.000000pt;}
.h10_c00010{height:60.666667pt;}
.h6_c00010{height:66.271438pt;}
.h21_c00010{height:72.800000pt;}
.h16_c00010{height:77.466667pt;}
.h1d_c00010{height:78.400000pt;}
.h18_c00010{height:79.333333pt;}
.h17_c00010{height:80.266667pt;}
.ha_c00010{height:81.205846pt;}
.h14_c00010{height:83.066667pt;}
.h19_c00010{height:87.733333pt;}
.h15_c00010{height:90.533333pt;}
.h1b_c00010{height:91.466667pt;}
.he_c00010{height:91.473252pt;}
.h9_c00010{height:92.406653pt;}
.h1c_c00010{height:93.333333pt;}
.h1a_c00010{height:94.266667pt;}
.hf_c00010{height:94.273454pt;}
.hd_c00010{height:96.140255pt;}
.h1e_c00010{height:98.000000pt;}
.hc_c00010{height:104.540859pt;}
.h23_c00010{height:119.466667pt;}
.h5_c00010{height:138.133333pt;}
.h3_c00010{height:140.933333pt;}
.h2_c00010{height:199.745417pt;}
.h4_c00010{height:213.733333pt;}
.hb_c00010{height:303.355173pt;}
.h1_c00010{height:971.333333pt;}
.h0_c00010{height:971.466667pt;}
.w1_c00010{width:710.666667pt;}
.w0_c00010{width:710.880000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:63.468000pt;}
.x5_c00010{left:64.810667pt;}
.x2_c00010{left:66.000000pt;}
.x2c_c00010{left:66.960000pt;}
.x6a_c00010{left:68.281333pt;}
.xd_c00010{left:69.332501pt;}
.xb_c00010{left:70.881984pt;}
.x5d_c00010{left:73.517333pt;}
.x2d_c00010{left:75.360000pt;}
.x2f_c00010{left:78.960000pt;}
.x2e_c00010{left:81.120000pt;}
.x8f_c00010{left:85.680000pt;}
.x8b_c00010{left:90.588000pt;}
.x88_c00010{left:96.720000pt;}
.x62_c00010{left:110.029333pt;}
.x8_c00010{left:111.361333pt;}
.x25_c00010{left:113.179845pt;}
.x3e_c00010{left:114.240000pt;}
.x74_c00010{left:116.044000pt;}
.x1a_c00010{left:119.437840pt;}
.x52_c00010{left:121.492000pt;}
.x6_c00010{left:124.001333pt;}
.x15_c00010{left:125.535435pt;}
.x6f_c00010{left:132.238667pt;}
.x53_c00010{left:137.137333pt;}
.x30_c00010{left:140.160000pt;}
.x5e_c00010{left:142.177333pt;}
.x1d_c00010{left:144.070741pt;}
.x7b_c00010{left:147.118667pt;}
.x63_c00010{left:156.816000pt;}
.x8c_c00010{left:157.793333pt;}
.x1e_c00010{left:159.102741pt;}
.x45_c00010{left:160.901333pt;}
.x84_c00010{left:164.398667pt;}
.x58_c00010{left:166.178667pt;}
.x26_c00010{left:168.379835pt;}
.x9_c00010{left:177.361333pt;}
.x3f_c00010{left:180.480000pt;}
.x10_c00010{left:182.118032pt;}
.x3_c00010{left:184.320000pt;}
.x64_c00010{left:186.333333pt;}
.x27_c00010{left:189.743525pt;}
.x17_c00010{left:190.881616pt;}
.x50_c00010{left:196.798667pt;}
.x91_c00010{left:200.880000pt;}
.x85_c00010{left:202.318667pt;}
.x1f_c00010{left:203.508075pt;}
.x40_c00010{left:211.440000pt;}
.x80_c00010{left:219.952000pt;}
.x38_c00010{left:222.960000pt;}
.x20_c00010{left:227.509408pt;}
.x65_c00010{left:229.536000pt;}
.x11_c00010{left:232.467973pt;}
.x70_c00010{left:233.758667pt;}
.x31_c00010{left:236.160000pt;}
.x28_c00010{left:239.665925pt;}
.x32_c00010{left:243.600000pt;}
.x5f_c00010{left:245.622667pt;}
.x59_c00010{left:250.392000pt;}
.x8d_c00010{left:254.032000pt;}
.x39_c00010{left:255.120000pt;}
.x75_c00010{left:258.790667pt;}
.x46_c00010{left:271.022667pt;}
.x7c_c00010{left:271.918667pt;}
.x4b_c00010{left:273.193333pt;}
.x66_c00010{left:274.896000pt;}
.x33_c00010{left:277.200000pt;}
.x41_c00010{left:278.640000pt;}
.x6b_c00010{left:280.417333pt;}
.x54_c00010{left:281.620000pt;}
.x81_c00010{left:288.592000pt;}
.x12_c00010{left:290.859344pt;}
.x29_c00010{left:292.476453pt;}
.x60_c00010{left:294.338667pt;}
.x76_c00010{left:298.192000pt;}
.x3a_c00010{left:299.760000pt;}
.x5a_c00010{left:301.536000pt;}
.x86_c00010{left:303.358667pt;}
.x98_c00010{left:304.568000pt;}
.x7d_c00010{left:306.718667pt;}
.x42_c00010{left:310.080000pt;}
.x47_c00010{left:314.944000pt;}
.x21_c00010{left:316.069408pt;}
.x90_c00010{left:319.440000pt;}
.x92_c00010{left:322.800000pt;}
.x6c_c00010{left:328.660000pt;}
.x67_c00010{left:331.296000pt;}
.x4c_c00010{left:332.974667pt;}
.x82_c00010{left:333.948000pt;}
.x34_c00010{left:335.280000pt;}
.x71_c00010{left:337.438667pt;}
.x3b_c00010{left:339.840000pt;}
.x77_c00010{left:340.912000pt;}
.x1b_c00010{left:345.171264pt;}
.x43_c00010{left:346.800000pt;}
.x99_c00010{left:351.646667pt;}
.x5b_c00010{left:364.140000pt;}
.x48_c00010{left:366.334667pt;}
.x78_c00010{left:368.706667pt;}
.x89_c00010{left:371.280000pt;}
.x35_c00010{left:378.000000pt;}
.x87_c00010{left:379.438667pt;}
.x13_c00010{left:382.537781pt;}
.x55_c00010{left:385.502667pt;}
.x22_c00010{left:390.469408pt;}
.x72_c00010{left:392.638667pt;}
.x93_c00010{left:396.240000pt;}
.x79_c00010{left:402.597333pt;}
.x5c_c00010{left:406.622667pt;}
.xe_c00010{left:407.572389pt;}
.x6d_c00010{left:413.618667pt;}
.x49_c00010{left:416.021333pt;}
.x4d_c00010{left:417.697333pt;}
.x23_c00010{left:418.954741pt;}
.x56_c00010{left:423.216000pt;}
.x51_c00010{left:426.478667pt;}
.x18_c00010{left:437.047787pt;}
.x2a_c00010{left:442.727653pt;}
.x44_c00010{left:444.000000pt;}
.x24_c00010{left:444.950741pt;}
.x68_c00010{left:447.428000pt;}
.x4e_c00010{left:448.900000pt;}
.x7e_c00010{left:450.478667pt;}
.x3c_c00010{left:453.600000pt;}
.xf_c00010{left:457.689856pt;}
.x94_c00010{left:460.320000pt;}
.x8e_c00010{left:461.633333pt;}
.x14_c00010{left:467.316139pt;}
.x2b_c00010{left:470.811664pt;}
.x61_c00010{left:473.369333pt;}
.x9a_c00010{left:475.214667pt;}
.x73_c00010{left:477.598667pt;}
.x6e_c00010{left:481.782667pt;}
.x4a_c00010{left:484.864000pt;}
.x57_c00010{left:485.826667pt;}
.x8a_c00010{left:492.960000pt;}
.x36_c00010{left:497.760000pt;}
.x4f_c00010{left:500.021333pt;}
.x83_c00010{left:505.078667pt;}
.x3d_c00010{left:508.320000pt;}
.x4_c00010{left:509.760000pt;}
.x37_c00010{left:510.720000pt;}
.x69_c00010{left:515.142667pt;}
.x95_c00010{left:516.480000pt;}
.x7f_c00010{left:521.758667pt;}
.x96_c00010{left:534.000000pt;}
.x7_c00010{left:556.714667pt;}
.x16_c00010{left:557.780901pt;}
.x1c_c00010{left:558.705717pt;}
.xa_c00010{left:559.681333pt;}
.x7a_c00010{left:560.777333pt;}
.x19_c00010{left:563.803051pt;}
.xc_c00010{left:570.291317pt;}
.x97_c00010{left:581.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_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_31cbb8ad81f4c1d1a4b2c7cb.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.009695,0.000097,-0.002500,0.249988,0,0);-ms-transform:matrix(0.009695,0.000097,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.009695,0.000097,-0.002500,0.249988,0,0);}
.md5_c00011{transform:matrix(0.009970,0.000100,-0.002500,0.249988,0,0);-ms-transform:matrix(0.009970,0.000100,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.009970,0.000100,-0.002500,0.249988,0,0);}
.me4_c00011{transform:matrix(0.014544,0.000145,-0.002500,0.249988,0,0);-ms-transform:matrix(0.014544,0.000145,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.014544,0.000145,-0.002500,0.249988,0,0);}
.m96_c00011{transform:matrix(0.018730,0.000131,-0.001750,0.249994,0,0);-ms-transform:matrix(0.018730,0.000131,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.018730,0.000131,-0.001750,0.249994,0,0);}
.m4_c00011{transform:matrix(0.025459,0.000178,-0.001750,0.249994,0,0);-ms-transform:matrix(0.025459,0.000178,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.025459,0.000178,-0.001750,0.249994,0,0);}
.mda_c00011{transform:matrix(0.029089,0.000291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.029089,0.000291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.029089,0.000291,-0.002500,0.249988,0,0);}
.mde_c00011{transform:matrix(0.102850,0.001028,-0.002500,0.249988,0,0);-ms-transform:matrix(0.102850,0.001028,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.102850,0.001028,-0.002500,0.249988,0,0);}
.mc3_c00011{transform:matrix(0.107182,0.000750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.107182,0.000750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.107182,0.000750,-0.001750,0.249994,0,0);}
.m38_c00011{transform:matrix(0.124902,0.000874,-0.001750,0.249994,0,0);-ms-transform:matrix(0.124902,0.000874,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.124902,0.000874,-0.001750,0.249994,0,0);}
.me2_c00011{transform:matrix(0.125549,0.001255,-0.002500,0.249988,0,0);-ms-transform:matrix(0.125549,0.001255,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.125549,0.001255,-0.002500,0.249988,0,0);}
.mcb_c00011{transform:matrix(0.128289,0.001283,-0.002500,0.249988,0,0);-ms-transform:matrix(0.128289,0.001283,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.128289,0.001283,-0.002500,0.249988,0,0);}
.md8_c00011{transform:matrix(0.133408,0.001334,-0.002500,0.249988,0,0);-ms-transform:matrix(0.133408,0.001334,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.133408,0.001334,-0.002500,0.249988,0,0);}
.ma2_c00011{transform:matrix(0.139947,0.000980,-0.001750,0.249994,0,0);-ms-transform:matrix(0.139947,0.000980,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.139947,0.000980,-0.001750,0.249994,0,0);}
.m46_c00011{transform:matrix(0.143261,0.001003,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143261,0.001003,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143261,0.001003,-0.001750,0.249994,0,0);}
.ma4_c00011{transform:matrix(0.146476,0.001025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146476,0.001025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146476,0.001025,-0.001750,0.249994,0,0);}
.m8_c00011{transform:matrix(0.148286,0.001038,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148286,0.001038,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148286,0.001038,-0.001750,0.249994,0,0);}
.m88_c00011{transform:matrix(0.149081,0.001044,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149081,0.001044,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149081,0.001044,-0.001750,0.249994,0,0);}
.mbc_c00011{transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);}
.m3b_c00011{transform:matrix(0.149436,0.001046,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149436,0.001046,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149436,0.001046,-0.001750,0.249994,0,0);}
.m76_c00011{transform:matrix(0.151281,0.001059,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151281,0.001059,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151281,0.001059,-0.001750,0.249994,0,0);}
.mf_c00011{transform:matrix(0.152016,0.001064,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152016,0.001064,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152016,0.001064,-0.001750,0.249994,0,0);}
.m70_c00011{transform:matrix(0.153766,0.001076,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153766,0.001076,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153766,0.001076,-0.001750,0.249994,0,0);}
.m19_c00011{transform:matrix(0.154021,0.001078,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154021,0.001078,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154021,0.001078,-0.001750,0.249994,0,0);}
.m78_c00011{transform:matrix(0.154316,0.001080,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154316,0.001080,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154316,0.001080,-0.001750,0.249994,0,0);}
.m48_c00011{transform:matrix(0.155316,0.001087,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155316,0.001087,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155316,0.001087,-0.001750,0.249994,0,0);}
.m40_c00011{transform:matrix(0.155431,0.001088,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155431,0.001088,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155431,0.001088,-0.001750,0.249994,0,0);}
.m82_c00011{transform:matrix(0.156866,0.001098,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156866,0.001098,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156866,0.001098,-0.001750,0.249994,0,0);}
.m28_c00011{transform:matrix(0.157231,0.001101,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157231,0.001101,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157231,0.001101,-0.001750,0.249994,0,0);}
.m9f_c00011{transform:matrix(0.157346,0.001101,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157346,0.001101,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157346,0.001101,-0.001750,0.249994,0,0);}
.mab_c00011{transform:matrix(0.157911,0.001105,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157911,0.001105,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157911,0.001105,-0.001750,0.249994,0,0);}
.m1d_c00011{transform:matrix(0.158696,0.001111,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158696,0.001111,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158696,0.001111,-0.001750,0.249994,0,0);}
.m11_c00011{transform:matrix(0.158831,0.001112,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158831,0.001112,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158831,0.001112,-0.001750,0.249994,0,0);}
.m72_c00011{transform:matrix(0.159366,0.001116,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159366,0.001116,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159366,0.001116,-0.001750,0.249994,0,0);}
.m3d_c00011{transform:matrix(0.159386,0.001116,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159386,0.001116,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159386,0.001116,-0.001750,0.249994,0,0);}
.m16_c00011{transform:matrix(0.159661,0.001118,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159661,0.001118,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159661,0.001118,-0.001750,0.249994,0,0);}
.m92_c00011{transform:matrix(0.159791,0.001119,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159791,0.001119,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159791,0.001119,-0.001750,0.249994,0,0);}
.m2a_c00011{transform:matrix(0.160416,0.001123,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160416,0.001123,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160416,0.001123,-0.001750,0.249994,0,0);}
.m5_c00011{transform:matrix(0.160701,0.001125,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160701,0.001125,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160701,0.001125,-0.001750,0.249994,0,0);}
.m2b_c00011{transform:matrix(0.160786,0.001126,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160786,0.001126,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160786,0.001126,-0.001750,0.249994,0,0);}
.mb3_c00011{transform:matrix(0.161786,0.001133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161786,0.001133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161786,0.001133,-0.001750,0.249994,0,0);}
.m75_c00011{transform:matrix(0.162626,0.001138,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162626,0.001138,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162626,0.001138,-0.001750,0.249994,0,0);}
.m71_c00011{transform:matrix(0.162836,0.001140,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162836,0.001140,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162836,0.001140,-0.001750,0.249994,0,0);}
.m57_c00011{transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);}
.m79_c00011{transform:matrix(0.164066,0.001148,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164066,0.001148,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164066,0.001148,-0.001750,0.249994,0,0);}
.ma6_c00011{transform:matrix(0.164106,0.001149,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164106,0.001149,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164106,0.001149,-0.001750,0.249994,0,0);}
.m7c_c00011{transform:matrix(0.164831,0.001154,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164831,0.001154,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164831,0.001154,-0.001750,0.249994,0,0);}
.m35_c00011{transform:matrix(0.165241,0.001157,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165241,0.001157,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165241,0.001157,-0.001750,0.249994,0,0);}
.m10_c00011{transform:matrix(0.165781,0.001160,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165781,0.001160,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165781,0.001160,-0.001750,0.249994,0,0);}
.m3c_c00011{transform:matrix(0.166671,0.001167,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166671,0.001167,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166671,0.001167,-0.001750,0.249994,0,0);}
.m55_c00011{transform:matrix(0.166736,0.001167,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166736,0.001167,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166736,0.001167,-0.001750,0.249994,0,0);}
.ma5_c00011{transform:matrix(0.166841,0.001168,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166841,0.001168,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166841,0.001168,-0.001750,0.249994,0,0);}
.md1_c00011{transform:matrix(0.167037,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167037,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167037,0.001670,-0.002500,0.249988,0,0);}
.m66_c00011{transform:matrix(0.167101,0.001170,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167101,0.001170,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167101,0.001170,-0.001750,0.249994,0,0);}
.m67_c00011{transform:matrix(0.167261,0.001171,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167261,0.001171,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167261,0.001171,-0.001750,0.249994,0,0);}
.m90_c00011{transform:matrix(0.167271,0.001171,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167271,0.001171,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167271,0.001171,-0.001750,0.249994,0,0);}
.m3a_c00011{transform:matrix(0.167351,0.001171,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167351,0.001171,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167351,0.001171,-0.001750,0.249994,0,0);}
.m1c_c00011{transform:matrix(0.167566,0.001173,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167566,0.001173,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167566,0.001173,-0.001750,0.249994,0,0);}
.m5b_c00011{transform:matrix(0.167666,0.001174,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167666,0.001174,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167666,0.001174,-0.001750,0.249994,0,0);}
.m74_c00011{transform:matrix(0.168141,0.001177,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168141,0.001177,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168141,0.001177,-0.001750,0.249994,0,0);}
.m21_c00011{transform:matrix(0.168476,0.001179,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168476,0.001179,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168476,0.001179,-0.001750,0.249994,0,0);}
.m6d_c00011{transform:matrix(0.168661,0.001181,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168661,0.001181,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168661,0.001181,-0.001750,0.249994,0,0);}
.m65_c00011{transform:matrix(0.169116,0.001184,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169116,0.001184,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169116,0.001184,-0.001750,0.249994,0,0);}
.m26_c00011{transform:matrix(0.170746,0.001195,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170746,0.001195,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170746,0.001195,-0.001750,0.249994,0,0);}
.m7d_c00011{transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);}
.m59_c00011{transform:matrix(0.172091,0.001205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172091,0.001205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172091,0.001205,-0.001750,0.249994,0,0);}
.m2d_c00011{transform:matrix(0.172101,0.001205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172101,0.001205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172101,0.001205,-0.001750,0.249994,0,0);}
.ma7_c00011{transform:matrix(0.172291,0.001206,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172291,0.001206,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172291,0.001206,-0.001750,0.249994,0,0);}
.m80_c00011{transform:matrix(0.172491,0.001207,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172491,0.001207,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172491,0.001207,-0.001750,0.249994,0,0);}
.ma8_c00011{transform:matrix(0.172616,0.001208,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172616,0.001208,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172616,0.001208,-0.001750,0.249994,0,0);}
.m42_c00011{transform:matrix(0.172671,0.001209,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172671,0.001209,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172671,0.001209,-0.001750,0.249994,0,0);}
.m91_c00011{transform:matrix(0.173256,0.001213,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173256,0.001213,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173256,0.001213,-0.001750,0.249994,0,0);}
.m6f_c00011{transform:matrix(0.173726,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173726,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173726,0.001216,-0.001750,0.249994,0,0);}
.m39_c00011{transform:matrix(0.174021,0.001218,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174021,0.001218,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174021,0.001218,-0.001750,0.249994,0,0);}
.ma_c00011{transform:matrix(0.174046,0.001218,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174046,0.001218,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174046,0.001218,-0.001750,0.249994,0,0);}
.m85_c00011{transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);}
.m43_c00011{transform:matrix(0.174626,0.001222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174626,0.001222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174626,0.001222,-0.001750,0.249994,0,0);}
.m25_c00011{transform:matrix(0.175751,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175751,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175751,0.001230,-0.001750,0.249994,0,0);}
.m69_c00011{transform:matrix(0.176116,0.001233,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176116,0.001233,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176116,0.001233,-0.001750,0.249994,0,0);}
.m3f_c00011{transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);}
.m54_c00011{transform:matrix(0.176721,0.001237,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176721,0.001237,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176721,0.001237,-0.001750,0.249994,0,0);}
.m22_c00011{transform:matrix(0.176756,0.001237,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176756,0.001237,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176756,0.001237,-0.001750,0.249994,0,0);}
.m7e_c00011{transform:matrix(0.176791,0.001238,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176791,0.001238,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176791,0.001238,-0.001750,0.249994,0,0);}
.mbf_c00011{transform:matrix(0.177386,0.001242,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177386,0.001242,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177386,0.001242,-0.001750,0.249994,0,0);}
.m61_c00011{transform:matrix(0.178356,0.001248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178356,0.001248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178356,0.001248,-0.001750,0.249994,0,0);}
.m58_c00011{transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);}
.m4d_c00011{transform:matrix(0.178691,0.001251,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178691,0.001251,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178691,0.001251,-0.001750,0.249994,0,0);}
.mc9_c00011{transform:matrix(0.178826,0.001252,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178826,0.001252,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178826,0.001252,-0.001750,0.249994,0,0);}
.me_c00011{transform:matrix(0.179281,0.001255,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179281,0.001255,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179281,0.001255,-0.001750,0.249994,0,0);}
.m6_c00011{transform:matrix(0.180031,0.001260,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180031,0.001260,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180031,0.001260,-0.001750,0.249994,0,0);}
.m3e_c00011{transform:matrix(0.180191,0.001261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180191,0.001261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180191,0.001261,-0.001750,0.249994,0,0);}
.m97_c00011{transform:matrix(0.180476,0.001263,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180476,0.001263,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180476,0.001263,-0.001750,0.249994,0,0);}
.m51_c00011{transform:matrix(0.180696,0.001265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180696,0.001265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180696,0.001265,-0.001750,0.249994,0,0);}
.m5d_c00011{transform:matrix(0.180771,0.001265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180771,0.001265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180771,0.001265,-0.001750,0.249994,0,0);}
.m4a_c00011{transform:matrix(0.180806,0.001266,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180806,0.001266,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180806,0.001266,-0.001750,0.249994,0,0);}
.m8b_c00011{transform:matrix(0.180986,0.001267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180986,0.001267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180986,0.001267,-0.001750,0.249994,0,0);}
.m62_c00011{transform:matrix(0.181046,0.001267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181046,0.001267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181046,0.001267,-0.001750,0.249994,0,0);}
.m12_c00011{transform:matrix(0.181871,0.001273,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181871,0.001273,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181871,0.001273,-0.001750,0.249994,0,0);}
.m18_c00011{transform:matrix(0.182431,0.001277,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182431,0.001277,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182431,0.001277,-0.001750,0.249994,0,0);}
.m30_c00011{transform:matrix(0.182771,0.001279,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182771,0.001279,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182771,0.001279,-0.001750,0.249994,0,0);}
.mae_c00011{transform:matrix(0.183161,0.001282,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183161,0.001282,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183161,0.001282,-0.001750,0.249994,0,0);}
.mb0_c00011{transform:matrix(0.183446,0.001284,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183446,0.001284,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183446,0.001284,-0.001750,0.249994,0,0);}
.m31_c00011{transform:matrix(0.183626,0.001285,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183626,0.001285,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183626,0.001285,-0.001750,0.249994,0,0);}
.ma9_c00011{transform:matrix(0.185320,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185320,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185320,0.001297,-0.001750,0.249994,0,0);}
.ma3_c00011{transform:matrix(0.186245,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186245,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186245,0.001304,-0.001750,0.249994,0,0);}
.m1e_c00011{transform:matrix(0.186325,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186325,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186325,0.001304,-0.001750,0.249994,0,0);}
.mc_c00011{transform:matrix(0.186785,0.001307,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186785,0.001307,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186785,0.001307,-0.001750,0.249994,0,0);}
.mac_c00011{transform:matrix(0.186865,0.001308,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186865,0.001308,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186865,0.001308,-0.001750,0.249994,0,0);}
.m37_c00011{transform:matrix(0.186945,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186945,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186945,0.001309,-0.001750,0.249994,0,0);}
.mad_c00011{transform:matrix(0.187135,0.001310,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187135,0.001310,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187135,0.001310,-0.001750,0.249994,0,0);}
.m2c_c00011{transform:matrix(0.187745,0.001314,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187745,0.001314,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187745,0.001314,-0.001750,0.249994,0,0);}
.mcd_c00011{transform:matrix(0.187796,0.001878,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187796,0.001878,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187796,0.001878,-0.002500,0.249988,0,0);}
.m84_c00011{transform:matrix(0.187885,0.001315,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187885,0.001315,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187885,0.001315,-0.001750,0.249994,0,0);}
.m49_c00011{transform:matrix(0.188145,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188145,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188145,0.001317,-0.001750,0.249994,0,0);}
.m44_c00011{transform:matrix(0.188210,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188210,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188210,0.001317,-0.001750,0.249994,0,0);}
.m9d_c00011{transform:matrix(0.188305,0.001318,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188305,0.001318,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188305,0.001318,-0.001750,0.249994,0,0);}
.m8c_c00011{transform:matrix(0.188635,0.001320,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188635,0.001320,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188635,0.001320,-0.001750,0.249994,0,0);}
.m53_c00011{transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);}
.m6e_c00011{transform:matrix(0.189435,0.001326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189435,0.001326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189435,0.001326,-0.001750,0.249994,0,0);}
.m17_c00011{transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);}
.m0_c00011{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);}
.mc0_c00011{transform:matrix(0.190030,0.001330,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190030,0.001330,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190030,0.001330,-0.001750,0.249994,0,0);}
.m1a_c00011{transform:matrix(0.190305,0.001332,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190305,0.001332,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190305,0.001332,-0.001750,0.249994,0,0);}
.mc4_c00011{transform:matrix(0.190310,0.001332,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190310,0.001332,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190310,0.001332,-0.001750,0.249994,0,0);}
.mc1_c00011{transform:matrix(0.190705,0.001335,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190705,0.001335,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190705,0.001335,-0.001750,0.249994,0,0);}
.m6c_c00011{transform:matrix(0.190765,0.001335,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190765,0.001335,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190765,0.001335,-0.001750,0.249994,0,0);}
.m86_c00011{transform:matrix(0.191670,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191670,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191670,0.001342,-0.001750,0.249994,0,0);}
.mb9_c00011{transform:matrix(0.192070,0.001344,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192070,0.001344,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192070,0.001344,-0.001750,0.249994,0,0);}
.m56_c00011{transform:matrix(0.192390,0.001347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192390,0.001347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192390,0.001347,-0.001750,0.249994,0,0);}
.m36_c00011{transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);}
.m1f_c00011{transform:matrix(0.192890,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192890,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192890,0.001350,-0.001750,0.249994,0,0);}
.mba_c00011{transform:matrix(0.193110,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193110,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193110,0.001352,-0.001750,0.249994,0,0);}
.m52_c00011{transform:matrix(0.193380,0.001354,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193380,0.001354,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193380,0.001354,-0.001750,0.249994,0,0);}
.md2_c00011{transform:matrix(0.193460,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193460,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193460,0.001935,-0.002500,0.249988,0,0);}
.m9e_c00011{transform:matrix(0.193830,0.001357,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193830,0.001357,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193830,0.001357,-0.001750,0.249994,0,0);}
.m45_c00011{transform:matrix(0.194030,0.001358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194030,0.001358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194030,0.001358,-0.001750,0.249994,0,0);}
.m29_c00011{transform:matrix(0.194230,0.001360,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194230,0.001360,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194230,0.001360,-0.001750,0.249994,0,0);}
.m77_c00011{transform:matrix(0.194505,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194505,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194505,0.001362,-0.001750,0.249994,0,0);}
.mb8_c00011{transform:matrix(0.194560,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194560,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194560,0.001362,-0.001750,0.249994,0,0);}
.m34_c00011{transform:matrix(0.194940,0.001365,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194940,0.001365,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194940,0.001365,-0.001750,0.249994,0,0);}
.m9_c00011{transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);}
.m68_c00011{transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);}
.m60_c00011{transform:matrix(0.195295,0.001367,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195295,0.001367,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195295,0.001367,-0.001750,0.249994,0,0);}
.m99_c00011{transform:matrix(0.195395,0.001368,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195395,0.001368,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195395,0.001368,-0.001750,0.249994,0,0);}
.m7a_c00011{transform:matrix(0.195620,0.001369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195620,0.001369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195620,0.001369,-0.001750,0.249994,0,0);}
.m89_c00011{transform:matrix(0.196015,0.001372,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196015,0.001372,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196015,0.001372,-0.001750,0.249994,0,0);}
.m7f_c00011{transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);}
.m47_c00011{transform:matrix(0.196490,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196490,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196490,0.001375,-0.001750,0.249994,0,0);}
.m5e_c00011{transform:matrix(0.197060,0.001379,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197060,0.001379,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197060,0.001379,-0.001750,0.249994,0,0);}
.m14_c00011{transform:matrix(0.197075,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197075,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197075,0.001380,-0.001750,0.249994,0,0);}
.mcc_c00011{transform:matrix(0.197280,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197280,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197280,0.001973,-0.002500,0.249988,0,0);}
.m64_c00011{transform:matrix(0.197410,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197410,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197410,0.001382,-0.001750,0.249994,0,0);}
.m50_c00011{transform:matrix(0.198100,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198100,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198100,0.001387,-0.001750,0.249994,0,0);}
.m15_c00011{transform:matrix(0.198580,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198580,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198580,0.001390,-0.001750,0.249994,0,0);}
.m6a_c00011{transform:matrix(0.198605,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198605,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198605,0.001390,-0.001750,0.249994,0,0);}
.m5f_c00011{transform:matrix(0.199150,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199150,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199150,0.001394,-0.001750,0.249994,0,0);}
.m5a_c00011{transform:matrix(0.199235,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199235,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199235,0.001395,-0.001750,0.249994,0,0);}
.mb_c00011{transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);}
.m20_c00011{transform:matrix(0.199330,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199330,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199330,0.001395,-0.001750,0.249994,0,0);}
.mb5_c00011{transform:matrix(0.199365,0.001396,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199365,0.001396,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199365,0.001396,-0.001750,0.249994,0,0);}
.m23_c00011{transform:matrix(0.199860,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199860,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199860,0.001399,-0.001750,0.249994,0,0);}
.mc8_c00011{transform:matrix(0.200530,0.001404,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200530,0.001404,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200530,0.001404,-0.001750,0.249994,0,0);}
.m83_c00011{transform:matrix(0.200800,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200800,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200800,0.001406,-0.001750,0.249994,0,0);}
.m5c_c00011{transform:matrix(0.200900,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200900,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200900,0.001406,-0.001750,0.249994,0,0);}
.m63_c00011{transform:matrix(0.201120,0.001408,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201120,0.001408,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201120,0.001408,-0.001750,0.249994,0,0);}
.m7b_c00011{transform:matrix(0.201145,0.001408,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201145,0.001408,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201145,0.001408,-0.001750,0.249994,0,0);}
.mb1_c00011{transform:matrix(0.201280,0.001409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201280,0.001409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201280,0.001409,-0.001750,0.249994,0,0);}
.m95_c00011{transform:matrix(0.201295,0.001409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201295,0.001409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201295,0.001409,-0.001750,0.249994,0,0);}
.m24_c00011{transform:matrix(0.201550,0.001411,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201550,0.001411,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201550,0.001411,-0.001750,0.249994,0,0);}
.m87_c00011{transform:matrix(0.201630,0.001411,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201630,0.001411,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201630,0.001411,-0.001750,0.249994,0,0);}
.ma0_c00011{transform:matrix(0.202695,0.001419,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202695,0.001419,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202695,0.001419,-0.001750,0.249994,0,0);}
.m4b_c00011{transform:matrix(0.203255,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203255,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203255,0.001423,-0.001750,0.249994,0,0);}
.m1b_c00011{transform:matrix(0.203805,0.001427,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203805,0.001427,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203805,0.001427,-0.001750,0.249994,0,0);}
.m2e_c00011{transform:matrix(0.204310,0.001430,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204310,0.001430,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204310,0.001430,-0.001750,0.249994,0,0);}
.m9c_c00011{transform:matrix(0.204490,0.001431,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204490,0.001431,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204490,0.001431,-0.001750,0.249994,0,0);}
.m4e_c00011{transform:matrix(0.205460,0.001438,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205460,0.001438,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205460,0.001438,-0.001750,0.249994,0,0);}
.md3_c00011{transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);}
.m8a_c00011{transform:matrix(0.206415,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206415,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206415,0.001445,-0.001750,0.249994,0,0);}
.mce_c00011{transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);}
.mb2_c00011{transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);}
.m8d_c00011{transform:matrix(0.209195,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209195,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209195,0.001464,-0.001750,0.249994,0,0);}
.mbd_c00011{transform:matrix(0.209205,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209205,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209205,0.001464,-0.001750,0.249994,0,0);}
.m9b_c00011{transform:matrix(0.212090,0.001485,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212090,0.001485,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212090,0.001485,-0.001750,0.249994,0,0);}
.m4c_c00011{transform:matrix(0.213540,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213540,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213540,0.001495,-0.001750,0.249994,0,0);}
.m7_c00011{transform:matrix(0.215560,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215560,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215560,0.001509,-0.001750,0.249994,0,0);}
.mc5_c00011{transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);}
.m93_c00011{transform:matrix(0.219225,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219225,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219225,0.001535,-0.001750,0.249994,0,0);}
.maf_c00011{transform:matrix(0.222125,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222125,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222125,0.001555,-0.001750,0.249994,0,0);}
.m73_c00011{transform:matrix(0.222895,0.001560,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222895,0.001560,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222895,0.001560,-0.001750,0.249994,0,0);}
.mc7_c00011{transform:matrix(0.223630,0.001565,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223630,0.001565,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223630,0.001565,-0.001750,0.249994,0,0);}
.maa_c00011{transform:matrix(0.224005,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224005,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224005,0.001568,-0.001750,0.249994,0,0);}
.m9a_c00011{transform:matrix(0.227224,0.001591,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227224,0.001591,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227224,0.001591,-0.001750,0.249994,0,0);}
.m98_c00011{transform:matrix(0.227584,0.001593,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227584,0.001593,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227584,0.001593,-0.001750,0.249994,0,0);}
.mb4_c00011{transform:matrix(0.230414,0.001613,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230414,0.001613,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230414,0.001613,-0.001750,0.249994,0,0);}
.m81_c00011{transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);}
.md0_c00011{transform:matrix(0.232108,0.002321,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232108,0.002321,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232108,0.002321,-0.002500,0.249988,0,0);}
.mca_c00011{transform:matrix(0.232869,0.001630,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232869,0.001630,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232869,0.001630,-0.001750,0.249994,0,0);}
.md_c00011{transform:matrix(0.233579,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233579,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233579,0.001635,-0.001750,0.249994,0,0);}
.mc6_c00011{transform:matrix(0.235659,0.001650,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235659,0.001650,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235659,0.001650,-0.001750,0.249994,0,0);}
.m32_c00011{transform:matrix(0.235879,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235879,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235879,0.001651,-0.001750,0.249994,0,0);}
.mcf_c00011{transform:matrix(0.237408,0.002374,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237408,0.002374,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237408,0.002374,-0.002500,0.249988,0,0);}
.m33_c00011{transform:matrix(0.237739,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237739,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237739,0.001664,-0.001750,0.249994,0,0);}
.m4f_c00011{transform:matrix(0.239549,0.001677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239549,0.001677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239549,0.001677,-0.001750,0.249994,0,0);}
.m94_c00011{transform:matrix(0.243459,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243459,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243459,0.001704,-0.001750,0.249994,0,0);}
.md7_c00011{transform:matrix(0.243828,0.002438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243828,0.002438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243828,0.002438,-0.002500,0.249988,0,0);}
.mc2_c00011{transform:matrix(0.245109,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245109,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245109,0.001716,-0.001750,0.249994,0,0);}
.md4_c00011{transform:matrix(0.245453,0.002455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245453,0.002455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245453,0.002455,-0.002500,0.249988,0,0);}
.mb6_c00011{transform:matrix(0.250839,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250839,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250839,0.001756,-0.001750,0.249994,0,0);}
.ma1_c00011{transform:matrix(0.256419,0.001795,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256419,0.001795,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256419,0.001795,-0.001750,0.249994,0,0);}
.mdc_c00011{transform:matrix(0.257747,0.002577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257747,0.002577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257747,0.002577,-0.002500,0.249988,0,0);}
.m8e_c00011{transform:matrix(0.258054,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258054,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258054,0.001806,-0.001750,0.249994,0,0);}
.m8f_c00011{transform:matrix(0.259739,0.001818,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259739,0.001818,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259739,0.001818,-0.001750,0.249994,0,0);}
.mdb_c00011{transform:matrix(0.261097,0.002611,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261097,0.002611,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261097,0.002611,-0.002500,0.249988,0,0);}
.m27_c00011{transform:matrix(0.277108,0.001940,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277108,0.001940,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277108,0.001940,-0.001750,0.249994,0,0);}
.mbe_c00011{transform:matrix(0.288593,0.002020,-0.001750,0.249994,0,0);-ms-transform:matrix(0.288593,0.002020,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.288593,0.002020,-0.001750,0.249994,0,0);}
.mbb_c00011{transform:matrix(0.289218,0.002025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289218,0.002025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289218,0.002025,-0.001750,0.249994,0,0);}
.me6_c00011{transform:matrix(0.302275,0.003023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.302275,0.003023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.302275,0.003023,-0.002500,0.249988,0,0);}
.m2f_c00011{transform:matrix(0.305518,0.002139,-0.001750,0.249994,0,0);-ms-transform:matrix(0.305518,0.002139,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.305518,0.002139,-0.001750,0.249994,0,0);}
.m41_c00011{transform:matrix(0.309597,0.002167,-0.001750,0.249994,0,0);-ms-transform:matrix(0.309597,0.002167,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.309597,0.002167,-0.001750,0.249994,0,0);}
.m6b_c00011{transform:matrix(0.311827,0.002183,-0.001750,0.249994,0,0);-ms-transform:matrix(0.311827,0.002183,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.311827,0.002183,-0.001750,0.249994,0,0);}
.m13_c00011{transform:matrix(0.350661,0.002455,-0.001750,0.249994,0,0);-ms-transform:matrix(0.350661,0.002455,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.350661,0.002455,-0.001750,0.249994,0,0);}
.mdf_c00011{transform:matrix(0.351592,0.003516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.351592,0.003516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.351592,0.003516,-0.002500,0.249988,0,0);}
.m3_c00011{transform:matrix(0.367100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367100,0.000000,0.000000,0.250000,0,0);}
.me5_c00011{transform:matrix(0.370601,0.003706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.370601,0.003706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.370601,0.003706,-0.002500,0.249988,0,0);}
.me0_c00011{transform:matrix(0.395680,0.003957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.395680,0.003957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.395680,0.003957,-0.002500,0.249988,0,0);}
.m2_c00011{transform:matrix(0.408860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408860,0.000000,0.000000,0.250000,0,0);}
.me3_c00011{transform:matrix(0.442318,0.004423,-0.002500,0.249988,0,0);-ms-transform:matrix(0.442318,0.004423,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.442318,0.004423,-0.002500,0.249988,0,0);}
.md9_c00011{transform:matrix(0.515229,0.005152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.515229,0.005152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.515229,0.005152,-0.002500,0.249988,0,0);}
.m1_c00011{transform:matrix(0.543955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543955,0.000000,0.000000,0.250000,0,0);}
.md6_c00011{transform:matrix(0.565767,0.005658,-0.002500,0.249988,0,0);-ms-transform:matrix(0.565767,0.005658,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.565767,0.005658,-0.002500,0.249988,0,0);}
.me1_c00011{transform:matrix(0.653432,0.006534,-0.002500,0.249988,0,0);-ms-transform:matrix(0.653432,0.006534,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.653432,0.006534,-0.002500,0.249988,0,0);}
.mb7_c00011{transform:matrix(0.737452,0.005162,-0.001750,0.249994,0,0);-ms-transform:matrix(0.737452,0.005162,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.737452,0.005162,-0.001750,0.249994,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;}
.fs0_c00011{font-size:31.500000px;}
.fsf_c00011{font-size:52.502625px;}
.fsd_c00011{font-size:90.302212px;}
.fs8_c00011{font-size:91.352238px;}
.fsb_c00011{font-size:93.452289px;}
.fse_c00011{font-size:97.654882px;}
.fs9_c00011{font-size:100.802470px;}
.fsc_c00011{font-size:101.852495px;}
.fsa_c00011{font-size:102.902521px;}
.fs5_c00011{font-size:103.952547px;}
.fs7_c00011{font-size:105.002572px;}
.fs3_c00011{font-size:106.052598px;}
.fs4_c00011{font-size:107.102624px;}
.fs6_c00011{font-size:108.152650px;}
.fs2_c00011{font-size:128.100000px;}
.fs1_c00011{font-size:185.850000px;}
.fs10_c00011{font-size:232.061602px;}
.y0_c00011{bottom:0.000000px;}
.ye9_c00011{bottom:150.358950px;}
.ye8_c00011{bottom:152.008215px;}
.ye7_c00011{bottom:168.670260px;}
.ye6_c00011{bottom:169.308900px;}
.ye5_c00011{bottom:169.480545px;}
.ye4_c00011{bottom:169.946775px;}
.ye3_c00011{bottom:170.223420px;}
.ye2_c00011{bottom:170.684640px;}
.ye1_c00011{bottom:171.392865px;}
.ye0_c00011{bottom:171.473550px;}
.ydf_c00011{bottom:171.809550px;}
.yde_c00011{bottom:172.403790px;}
.ydd_c00011{bottom:172.687260px;}
.ydc_c00011{bottom:173.294715px;}
.ydb_c00011{bottom:173.677530px;}
.yda_c00011{bottom:174.354585px;}
.yd9_c00011{bottom:175.229715px;}
.yd8_c00011{bottom:209.627115px;}
.yd7_c00011{bottom:210.752280px;}
.yd6_c00011{bottom:211.054965px;}
.yd5_c00011{bottom:211.440270px;}
.yd4_c00011{bottom:211.964820px;}
.yd3_c00011{bottom:212.302275px;}
.yd2_c00011{bottom:213.520020px;}
.yd1_c00011{bottom:213.822480px;}
.yd0_c00011{bottom:214.289580px;}
.ycf_c00011{bottom:215.075295px;}
.yce_c00011{bottom:215.460000px;}
.ycd_c00011{bottom:237.024936px;}
.ycc_c00011{bottom:237.603808px;}
.ycb_c00011{bottom:237.726957px;}
.yca_c00011{bottom:238.473981px;}
.yc9_c00011{bottom:238.677615px;}
.yc8_c00011{bottom:239.347933px;}
.yc7_c00011{bottom:240.185973px;}
.yc6_c00011{bottom:240.335386px;}
.yc5_c00011{bottom:241.091953px;}
.yc4_c00011{bottom:263.487219px;}
.yc3_c00011{bottom:263.739442px;}
.yc2_c00011{bottom:264.613102px;}
.yc1_c00011{bottom:264.673728px;}
.yc0_c00011{bottom:265.383133px;}
.ybf_c00011{bottom:266.125665px;}
.ybe_c00011{bottom:266.295095px;}
.ybd_c00011{bottom:267.310348px;}
.ybc_c00011{bottom:267.601995px;}
.ybb_c00011{bottom:268.093794px;}
.yba_c00011{bottom:290.171794px;}
.yb9_c00011{bottom:290.410457px;}
.yb8_c00011{bottom:290.637877px;}
.yb7_c00011{bottom:290.908899px;}
.yb6_c00011{bottom:291.197838px;}
.yb5_c00011{bottom:291.869037px;}
.yb4_c00011{bottom:293.192007px;}
.yb3_c00011{bottom:294.017469px;}
.yb2_c00011{bottom:314.570655px;}
.yb1_c00011{bottom:315.654843px;}
.yb0_c00011{bottom:316.101642px;}
.yaf_c00011{bottom:316.619517px;}
.yae_c00011{bottom:317.288414px;}
.yad_c00011{bottom:317.757463px;}
.yac_c00011{bottom:318.790895px;}
.yab_c00011{bottom:319.128465px;}
.yaa_c00011{bottom:319.938538px;}
.ya9_c00011{bottom:341.389194px;}
.ya8_c00011{bottom:342.131369px;}
.ya7_c00011{bottom:342.383487px;}
.ya6_c00011{bottom:342.960105px;}
.ya5_c00011{bottom:343.108080px;}
.ya4_c00011{bottom:344.029089px;}
.ya3_c00011{bottom:344.754217px;}
.ya2_c00011{bottom:345.076713px;}
.ya1_c00011{bottom:345.448509px;}
.ya0_c00011{bottom:346.128850px;}
.y9f_c00011{bottom:367.924227px;}
.y9e_c00011{bottom:368.254027px;}
.y9d_c00011{bottom:368.630536px;}
.y9c_c00011{bottom:369.673468px;}
.y9b_c00011{bottom:371.384682px;}
.y9a_c00011{bottom:371.607379px;}
.y99_c00011{bottom:372.320553px;}
.y98_c00011{bottom:393.988351px;}
.y97_c00011{bottom:394.384603px;}
.y96_c00011{bottom:394.957548px;}
.y95_c00011{bottom:396.088971px;}
.y94_c00011{bottom:396.324592px;}
.y93_c00011{bottom:396.861180px;}
.y92_c00011{bottom:397.106304px;}
.y91_c00011{bottom:397.547794px;}
.y90_c00011{bottom:397.701537px;}
.y8f_c00011{bottom:420.207852px;}
.y8e_c00011{bottom:420.570064px;}
.y8d_c00011{bottom:421.218162px;}
.y8c_c00011{bottom:421.470259px;}
.y8b_c00011{bottom:422.254272px;}
.y8a_c00011{bottom:422.955343px;}
.y89_c00011{bottom:423.894604px;}
.y88_c00011{bottom:446.155503px;}
.y87_c00011{bottom:446.428903px;}
.y86_c00011{bottom:446.855023px;}
.y85_c00011{bottom:447.154824px;}
.y84_c00011{bottom:447.715902px;}
.y83_c00011{bottom:448.246791px;}
.y82_c00011{bottom:448.706605px;}
.y81_c00011{bottom:449.038096px;}
.y80_c00011{bottom:449.602606px;}
.y7f_c00011{bottom:449.896654px;}
.y7e_c00011{bottom:450.353058px;}
.y7d_c00011{bottom:471.720580px;}
.y7c_c00011{bottom:472.793454px;}
.y7b_c00011{bottom:473.451750px;}
.y7a_c00011{bottom:474.312927px;}
.y79_c00011{bottom:474.614655px;}
.y78_c00011{bottom:475.382232px;}
.y77_c00011{bottom:475.813623px;}
.y76_c00011{bottom:476.814675px;}
.y75_c00011{bottom:499.094716px;}
.y74_c00011{bottom:499.604926px;}
.y73_c00011{bottom:500.328936px;}
.y72_c00011{bottom:500.925126px;}
.y71_c00011{bottom:501.675577px;}
.y70_c00011{bottom:502.429429px;}
.y6f_c00011{bottom:502.734037px;}
.y6e_c00011{bottom:523.354447px;}
.y6d_c00011{bottom:523.548291px;}
.y6c_c00011{bottom:524.706523px;}
.y6b_c00011{bottom:525.326544px;}
.y6a_c00011{bottom:526.645704px;}
.y69_c00011{bottom:526.916809px;}
.y68_c00011{bottom:527.947576px;}
.y67_c00011{bottom:528.387796px;}
.y66_c00011{bottom:549.986872px;}
.y65_c00011{bottom:551.083314px;}
.y64_c00011{bottom:551.359594px;}
.y63_c00011{bottom:552.235102px;}
.y62_c00011{bottom:552.483852px;}
.y61_c00011{bottom:552.963570px;}
.y60_c00011{bottom:554.398996px;}
.y5f_c00011{bottom:554.847865px;}
.y5e_c00011{bottom:576.336636px;}
.y5d_c00011{bottom:577.896505px;}
.y5c_c00011{bottom:578.214288px;}
.y5b_c00011{bottom:579.354058px;}
.y5a_c00011{bottom:579.820267px;}
.y59_c00011{bottom:580.299922px;}
.y58_c00011{bottom:581.037730px;}
.y57_c00011{bottom:601.747050px;}
.y56_c00011{bottom:602.671263px;}
.y55_c00011{bottom:603.626271px;}
.y54_c00011{bottom:603.911080px;}
.y53_c00011{bottom:604.415416px;}
.y52_c00011{bottom:605.381266px;}
.y51_c00011{bottom:606.687331px;}
.y50_c00011{bottom:628.623903px;}
.y4f_c00011{bottom:630.753178px;}
.y4e_c00011{bottom:630.993420px;}
.y4d_c00011{bottom:631.259977px;}
.y4c_c00011{bottom:631.956129px;}
.y4b_c00011{bottom:632.509732px;}
.y4a_c00011{bottom:632.878213px;}
.y49_c00011{bottom:654.820102px;}
.y48_c00011{bottom:655.048720px;}
.y47_c00011{bottom:655.171680px;}
.y46_c00011{bottom:656.226381px;}
.y45_c00011{bottom:656.687555px;}
.y44_c00011{bottom:657.302235px;}
.y43_c00011{bottom:657.672004px;}
.y42_c00011{bottom:658.030584px;}
.y41_c00011{bottom:658.527858px;}
.y40_c00011{bottom:681.549870px;}
.y3f_c00011{bottom:682.211380px;}
.y3e_c00011{bottom:682.579678px;}
.y3d_c00011{bottom:682.785604px;}
.y3c_c00011{bottom:683.039232px;}
.y3b_c00011{bottom:683.568432px;}
.y3a_c00011{bottom:683.744233px;}
.y39_c00011{bottom:683.957457px;}
.y38_c00011{bottom:684.446999px;}
.y37_c00011{bottom:706.864603px;}
.y36_c00011{bottom:707.568693px;}
.y35_c00011{bottom:708.292371px;}
.y34_c00011{bottom:708.549721px;}
.y33_c00011{bottom:708.812268px;}
.y32_c00011{bottom:709.460625px;}
.y31_c00011{bottom:709.870107px;}
.y30_c00011{bottom:710.908158px;}
.y2f_c00011{bottom:733.186612px;}
.y2e_c00011{bottom:733.783653px;}
.y2d_c00011{bottom:734.288314px;}
.y2c_c00011{bottom:734.758851px;}
.y2b_c00011{bottom:734.976085px;}
.y2a_c00011{bottom:735.388263px;}
.y29_c00011{bottom:735.671773px;}
.y28_c00011{bottom:736.121667px;}
.y27_c00011{bottom:736.557942px;}
.y26_c00011{bottom:759.729347px;}
.y25_c00011{bottom:760.338768px;}
.y24_c00011{bottom:761.242396px;}
.y23_c00011{bottom:761.605437px;}
.y22_c00011{bottom:762.589908px;}
.y21_c00011{bottom:763.290270px;}
.y20_c00011{bottom:785.940296px;}
.y1f_c00011{bottom:786.180336px;}
.y1e_c00011{bottom:786.688704px;}
.y1d_c00011{bottom:786.947665px;}
.y1c_c00011{bottom:787.414243px;}
.y1b_c00011{bottom:788.306628px;}
.y1a_c00011{bottom:788.680848px;}
.y19_c00011{bottom:788.939788px;}
.y18_c00011{bottom:812.449658px;}
.y17_c00011{bottom:813.496800px;}
.y16_c00011{bottom:813.995271px;}
.y15_c00011{bottom:814.157859px;}
.y14_c00011{bottom:815.044209px;}
.y13_c00011{bottom:815.941192px;}
.yc_c00011{bottom:840.138264px;}
.yd_c00011{bottom:840.138575px;}
.ye_c00011{bottom:840.138635px;}
.y12_c00011{bottom:840.138766px;}
.yf_c00011{bottom:840.139095px;}
.y11_c00011{bottom:840.139176px;}
.y10_c00011{bottom:840.139525px;}
.yb_c00011{bottom:864.919071px;}
.ya_c00011{bottom:865.285699px;}
.y9_c00011{bottom:865.905619px;}
.y8_c00011{bottom:866.070070px;}
.y7_c00011{bottom:866.916770px;}
.y6_c00011{bottom:867.561312px;}
.y5_c00011{bottom:868.028173px;}
.y4_c00011{bottom:868.320000px;}
.y3_c00011{bottom:920.419500px;}
.y2_c00011{bottom:960.909000px;}
.y1_c00011{bottom:1018.170000px;}
.h2_c00011{height:31.500000px;}
.h11_c00011{height:52.502625px;}
.hf_c00011{height:90.302212px;}
.ha_c00011{height:91.352238px;}
.hd_c00011{height:93.452289px;}
.h10_c00011{height:97.654882px;}
.hb_c00011{height:100.802470px;}
.he_c00011{height:101.852495px;}
.hc_c00011{height:102.902521px;}
.h7_c00011{height:103.952547px;}
.h9_c00011{height:105.002572px;}
.h5_c00011{height:106.052598px;}
.h6_c00011{height:107.102624px;}
.h8_c00011{height:108.152650px;}
.h4_c00011{height:128.100000px;}
.h3_c00011{height:185.850000px;}
.h12_c00011{height:232.061602px;}
.h0_c00011{height:1086.450000px;}
.h1_c00011{height:1086.750000px;}
.w1_c00011{width:771.000000px;}
.w0_c00011{width:771.120000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:130.410000px;}
.x90_c00011{left:138.261975px;}
.x5_c00011{left:140.158500px;}
.x96_c00011{left:155.881545px;}
.x12_c00011{left:164.265548px;}
.x7a_c00011{left:179.316437px;}
.x2a_c00011{left:180.464646px;}
.x6_c00011{left:181.848000px;}
.x42_c00011{left:197.425467px;}
.x6a_c00011{left:205.576538px;}
.x56_c00011{left:210.682347px;}
.x3e_c00011{left:217.764211px;}
.x18_c00011{left:218.840908px;}
.x4b_c00011{left:221.465645px;}
.x6b_c00011{left:224.753901px;}
.x22_c00011{left:225.856356px;}
.x37_c00011{left:236.179251px;}
.x74_c00011{left:241.716555px;}
.x72_c00011{left:244.418291px;}
.x7b_c00011{left:246.824574px;}
.x4_c00011{left:247.860000px;}
.x2f_c00011{left:251.022457px;}
.x80_c00011{left:254.137386px;}
.x5f_c00011{left:255.503774px;}
.xc_c00011{left:257.313480px;}
.x1e_c00011{left:259.580277px;}
.x13_c00011{left:263.904651px;}
.x66_c00011{left:264.926714px;}
.x19_c00011{left:272.300908px;}
.x7c_c00011{left:274.905087px;}
.x38_c00011{left:276.047194px;}
.x6c_c00011{left:279.895013px;}
.x30_c00011{left:281.482957px;}
.xd_c00011{left:283.234751px;}
.x57_c00011{left:286.016762px;}
.x23_c00011{left:290.126856px;}
.x48_c00011{left:291.394011px;}
.x2b_c00011{left:295.756029px;}
.x5b_c00011{left:299.739890px;}
.x75_c00011{left:304.899291px;}
.x31_c00011{left:306.597458px;}
.x3_c00011{left:308.880000px;}
.x6d_c00011{left:310.626803px;}
.x60_c00011{left:311.932587px;}
.x51_c00011{left:313.518789px;}
.x39_c00011{left:317.085117px;}
.x67_c00011{left:328.649429px;}
.x24_c00011{left:330.628356px;}
.x49_c00011{left:333.779825px;}
.x8b_c00011{left:334.884000px;}
.xe_c00011{left:335.885834px;}
.x52_c00011{left:338.104596px;}
.x7_c00011{left:340.620000px;}
.x3f_c00011{left:342.726587px;}
.x61_c00011{left:345.144894px;}
.x4c_c00011{left:351.951491px;}
.x85_c00011{left:358.359038px;}
.x58_c00011{left:361.079687px;}
.x14_c00011{left:362.453276px;}
.x5c_c00011{left:363.748653px;}
.xf_c00011{left:368.825951px;}
.x76_c00011{left:370.772943px;}
.x81_c00011{left:374.344016px;}
.x6e_c00011{left:377.638830px;}
.x15_c00011{left:380.537024px;}
.x32_c00011{left:382.197457px;}
.x3a_c00011{left:385.395661px;}
.x43_c00011{left:386.763842px;}
.x25_c00011{left:389.510856px;}
.x62_c00011{left:391.117428px;}
.x40_c00011{left:393.482526px;}
.x4d_c00011{left:395.624273px;}
.x1a_c00011{left:399.784409px;}
.x6f_c00011{left:407.013120px;}
.x1f_c00011{left:409.222677px;}
.x2c_c00011{left:413.231380px;}
.x33_c00011{left:418.429958px;}
.x26_c00011{left:420.544356px;}
.x68_c00011{left:422.876793px;}
.x86_c00011{left:425.861648px;}
.x44_c00011{left:428.810371px;}
.x97_c00011{left:430.769040px;}
.x16_c00011{left:435.889247px;}
.x4a_c00011{left:437.458427px;}
.x10_c00011{left:442.808073px;}
.x63_c00011{left:444.243315px;}
.x34_c00011{left:447.847957px;}
.x91_c00011{left:449.225370px;}
.x45_c00011{left:452.568042px;}
.x77_c00011{left:454.557602px;}
.x7d_c00011{left:455.881256px;}
.x53_c00011{left:457.981236px;}
.x8_c00011{left:461.577000px;}
.x1b_c00011{left:466.438408px;}
.x78_c00011{left:467.982224px;}
.x2d_c00011{left:471.001572px;}
.x92_c00011{left:479.825070px;}
.x69_c00011{left:481.817645px;}
.x9_c00011{left:485.070000px;}
.x82_c00011{left:486.149376px;}
.x27_c00011{left:487.763856px;}
.x87_c00011{left:490.346341px;}
.x59_c00011{left:493.105415px;}
.x88_c00011{left:495.792684px;}
.x4e_c00011{left:497.943917px;}
.x7e_c00011{left:499.004744px;}
.x35_c00011{left:500.461957px;}
.x11_c00011{left:504.369587px;}
.x83_c00011{left:506.851799px;}
.x20_c00011{left:509.596770px;}
.x54_c00011{left:514.411161px;}
.x5d_c00011{left:515.486340px;}
.x79_c00011{left:520.354754px;}
.x4f_c00011{left:523.054713px;}
.x84_c00011{left:528.517190px;}
.x64_c00011{left:530.367009px;}
.x46_c00011{left:532.209260px;}
.x7f_c00011{left:536.260442px;}
.x8c_c00011{left:542.859000px;}
.x5a_c00011{left:544.134344px;}
.x70_c00011{left:548.501133px;}
.x17_c00011{left:552.265119px;}
.x3b_c00011{left:553.946809px;}
.x28_c00011{left:559.858356px;}
.x3c_c00011{left:567.655121px;}
.xa_c00011{left:573.630000px;}
.x1c_c00011{left:576.056908px;}
.x21_c00011{left:577.370325px;}
.x73_c00011{left:579.216414px;}
.x8d_c00011{left:581.389500px;}
.x3d_c00011{left:593.028763px;}
.x36_c00011{left:594.963458px;}
.x89_c00011{left:598.130318px;}
.x65_c00011{left:600.297039px;}
.x5e_c00011{left:604.893711px;}
.x41_c00011{left:606.374553px;}
.x47_c00011{left:609.165561px;}
.x1d_c00011{left:610.348409px;}
.x8e_c00011{left:611.658000px;}
.x1_c00011{left:619.380000px;}
.x50_c00011{left:622.686420px;}
.xb_c00011{left:626.005500px;}
.x2e_c00011{left:629.751856px;}
.x8a_c00011{left:631.915746px;}
.x55_c00011{left:637.275717px;}
.x29_c00011{left:645.149856px;}
.x93_c00011{left:660.973755px;}
.x71_c00011{left:669.599783px;}
.x94_c00011{left:676.638105px;}
.x8f_c00011{left:724.174500px;}
.x95_c00011{left:734.651520px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs0_c00011{font-size:28.000000pt;}
.fsf_c00011{font-size:46.669000pt;}
.fsd_c00011{font-size:80.268633pt;}
.fs8_c00011{font-size:81.201989pt;}
.fsb_c00011{font-size:83.068702pt;}
.fse_c00011{font-size:86.804340pt;}
.fs9_c00011{font-size:89.602195pt;}
.fsc_c00011{font-size:90.535551pt;}
.fsa_c00011{font-size:91.468908pt;}
.fs5_c00011{font-size:92.402264pt;}
.fs7_c00011{font-size:93.335620pt;}
.fs3_c00011{font-size:94.268976pt;}
.fs4_c00011{font-size:95.202332pt;}
.fs6_c00011{font-size:96.135689pt;}
.fs2_c00011{font-size:113.866667pt;}
.fs1_c00011{font-size:165.200000pt;}
.fs10_c00011{font-size:206.276980pt;}
.y0_c00011{bottom:0.000000pt;}
.ye9_c00011{bottom:133.652400pt;}
.ye8_c00011{bottom:135.118413pt;}
.ye7_c00011{bottom:149.929120pt;}
.ye6_c00011{bottom:150.496800pt;}
.ye5_c00011{bottom:150.649373pt;}
.ye4_c00011{bottom:151.063800pt;}
.ye3_c00011{bottom:151.309707pt;}
.ye2_c00011{bottom:151.719680pt;}
.ye1_c00011{bottom:152.349213pt;}
.ye0_c00011{bottom:152.420933pt;}
.ydf_c00011{bottom:152.719600pt;}
.yde_c00011{bottom:153.247813pt;}
.ydd_c00011{bottom:153.499787pt;}
.ydc_c00011{bottom:154.039747pt;}
.ydb_c00011{bottom:154.380027pt;}
.yda_c00011{bottom:154.981853pt;}
.yd9_c00011{bottom:155.759747pt;}
.yd8_c00011{bottom:186.335213pt;}
.yd7_c00011{bottom:187.335360pt;}
.yd6_c00011{bottom:187.604413pt;}
.yd5_c00011{bottom:187.946907pt;}
.yd4_c00011{bottom:188.413173pt;}
.yd3_c00011{bottom:188.713133pt;}
.yd2_c00011{bottom:189.795573pt;}
.yd1_c00011{bottom:190.064427pt;}
.yd0_c00011{bottom:190.479627pt;}
.ycf_c00011{bottom:191.178040pt;}
.yce_c00011{bottom:191.520000pt;}
.ycd_c00011{bottom:210.688832pt;}
.ycc_c00011{bottom:211.203385pt;}
.ycb_c00011{bottom:211.312851pt;}
.yca_c00011{bottom:211.976872pt;}
.yc9_c00011{bottom:212.157880pt;}
.yc8_c00011{bottom:212.753719pt;}
.yc7_c00011{bottom:213.498643pt;}
.yc6_c00011{bottom:213.631455pt;}
.yc5_c00011{bottom:214.303959pt;}
.yc4_c00011{bottom:234.210861pt;}
.yc3_c00011{bottom:234.435060pt;}
.yc2_c00011{bottom:235.211647pt;}
.yc1_c00011{bottom:235.265536pt;}
.yc0_c00011{bottom:235.896119pt;}
.ybf_c00011{bottom:236.556147pt;}
.ybe_c00011{bottom:236.706751pt;}
.ybd_c00011{bottom:237.609199pt;}
.ybc_c00011{bottom:237.868440pt;}
.ybb_c00011{bottom:238.305595pt;}
.yba_c00011{bottom:257.930484pt;}
.yb9_c00011{bottom:258.142628pt;}
.yb8_c00011{bottom:258.344780pt;}
.yb7_c00011{bottom:258.585688pt;}
.yb6_c00011{bottom:258.842523pt;}
.yb5_c00011{bottom:259.439144pt;}
.yb4_c00011{bottom:260.615117pt;}
.yb3_c00011{bottom:261.348861pt;}
.yb2_c00011{bottom:279.618360pt;}
.yb1_c00011{bottom:280.582083pt;}
.yb0_c00011{bottom:280.979237pt;}
.yaf_c00011{bottom:281.439571pt;}
.yae_c00011{bottom:282.034145pt;}
.yad_c00011{bottom:282.451079pt;}
.yac_c00011{bottom:283.369684pt;}
.yab_c00011{bottom:283.669747pt;}
.yaa_c00011{bottom:284.389812pt;}
.ya9_c00011{bottom:303.457061pt;}
.ya8_c00011{bottom:304.116772pt;}
.ya7_c00011{bottom:304.340877pt;}
.ya6_c00011{bottom:304.853427pt;}
.ya5_c00011{bottom:304.984960pt;}
.ya4_c00011{bottom:305.803635pt;}
.ya3_c00011{bottom:306.448193pt;}
.ya2_c00011{bottom:306.734856pt;}
.ya1_c00011{bottom:307.065341pt;}
.ya0_c00011{bottom:307.670089pt;}
.y9f_c00011{bottom:327.043757pt;}
.y9e_c00011{bottom:327.336913pt;}
.y9d_c00011{bottom:327.671588pt;}
.y9c_c00011{bottom:328.598639pt;}
.y9b_c00011{bottom:330.119717pt;}
.y9a_c00011{bottom:330.317671pt;}
.y99_c00011{bottom:330.951603pt;}
.y98_c00011{bottom:350.211868pt;}
.y97_c00011{bottom:350.564092pt;}
.y96_c00011{bottom:351.073376pt;}
.y95_c00011{bottom:352.079085pt;}
.y94_c00011{bottom:352.288527pt;}
.y93_c00011{bottom:352.765493pt;}
.y92_c00011{bottom:352.983381pt;}
.y91_c00011{bottom:353.375817pt;}
.y90_c00011{bottom:353.512477pt;}
.y8f_c00011{bottom:373.518091pt;}
.y8e_c00011{bottom:373.840057pt;}
.y8d_c00011{bottom:374.416144pt;}
.y8c_c00011{bottom:374.640231pt;}
.y8b_c00011{bottom:375.337131pt;}
.y8a_c00011{bottom:375.960305pt;}
.y89_c00011{bottom:376.795204pt;}
.y88_c00011{bottom:396.582669pt;}
.y87_c00011{bottom:396.825692pt;}
.y86_c00011{bottom:397.204465pt;}
.y85_c00011{bottom:397.470955pt;}
.y84_c00011{bottom:397.969691pt;}
.y83_c00011{bottom:398.441592pt;}
.y82_c00011{bottom:398.850316pt;}
.y81_c00011{bottom:399.144975pt;}
.y80_c00011{bottom:399.646761pt;}
.y7f_c00011{bottom:399.908137pt;}
.y7e_c00011{bottom:400.313829pt;}
.y7d_c00011{bottom:419.307183pt;}
.y7c_c00011{bottom:420.260848pt;}
.y7b_c00011{bottom:420.846000pt;}
.y7a_c00011{bottom:421.611491pt;}
.y79_c00011{bottom:421.879693pt;}
.y78_c00011{bottom:422.561984pt;}
.y77_c00011{bottom:422.945443pt;}
.y76_c00011{bottom:423.835267pt;}
.y75_c00011{bottom:443.639748pt;}
.y74_c00011{bottom:444.093268pt;}
.y73_c00011{bottom:444.736832pt;}
.y72_c00011{bottom:445.266779pt;}
.y71_c00011{bottom:445.933847pt;}
.y70_c00011{bottom:446.603937pt;}
.y6f_c00011{bottom:446.874700pt;}
.y6e_c00011{bottom:465.203953pt;}
.y6d_c00011{bottom:465.376259pt;}
.y6c_c00011{bottom:466.405799pt;}
.y6b_c00011{bottom:466.956928pt;}
.y6a_c00011{bottom:468.129515pt;}
.y69_c00011{bottom:468.370497pt;}
.y68_c00011{bottom:469.286735pt;}
.y67_c00011{bottom:469.678041pt;}
.y66_c00011{bottom:488.877220pt;}
.y65_c00011{bottom:489.851835pt;}
.y64_c00011{bottom:490.097417pt;}
.y63_c00011{bottom:490.875647pt;}
.y62_c00011{bottom:491.096757pt;}
.y61_c00011{bottom:491.523173pt;}
.y60_c00011{bottom:492.799108pt;}
.y5f_c00011{bottom:493.198103pt;}
.y5e_c00011{bottom:512.299232pt;}
.y5d_c00011{bottom:513.685783pt;}
.y5c_c00011{bottom:513.968256pt;}
.y5b_c00011{bottom:514.981385pt;}
.y5a_c00011{bottom:515.395793pt;}
.y59_c00011{bottom:515.822153pt;}
.y58_c00011{bottom:516.477983pt;}
.y57_c00011{bottom:534.886267pt;}
.y56_c00011{bottom:535.707789pt;}
.y55_c00011{bottom:536.556685pt;}
.y54_c00011{bottom:536.809849pt;}
.y53_c00011{bottom:537.258148pt;}
.y52_c00011{bottom:538.116681pt;}
.y51_c00011{bottom:539.277628pt;}
.y50_c00011{bottom:558.776803pt;}
.y4f_c00011{bottom:560.669492pt;}
.y4e_c00011{bottom:560.883040pt;}
.y4d_c00011{bottom:561.119980pt;}
.y4c_c00011{bottom:561.738781pt;}
.y4b_c00011{bottom:562.230873pt;}
.y4a_c00011{bottom:562.558412pt;}
.y49_c00011{bottom:582.062313pt;}
.y48_c00011{bottom:582.265529pt;}
.y47_c00011{bottom:582.374827pt;}
.y46_c00011{bottom:583.312339pt;}
.y45_c00011{bottom:583.722271pt;}
.y44_c00011{bottom:584.268653pt;}
.y43_c00011{bottom:584.597337pt;}
.y42_c00011{bottom:584.916075pt;}
.y41_c00011{bottom:585.358096pt;}
.y40_c00011{bottom:605.822107pt;}
.y3f_c00011{bottom:606.410116pt;}
.y3e_c00011{bottom:606.737492pt;}
.y3d_c00011{bottom:606.920537pt;}
.y3c_c00011{bottom:607.145984pt;}
.y3b_c00011{bottom:607.616384pt;}
.y3a_c00011{bottom:607.772652pt;}
.y39_c00011{bottom:607.962184pt;}
.y38_c00011{bottom:608.397332pt;}
.y37_c00011{bottom:628.324092pt;}
.y36_c00011{bottom:628.949949pt;}
.y35_c00011{bottom:629.593219pt;}
.y34_c00011{bottom:629.821975pt;}
.y33_c00011{bottom:630.055349pt;}
.y32_c00011{bottom:630.631667pt;}
.y31_c00011{bottom:630.995651pt;}
.y30_c00011{bottom:631.918363pt;}
.y2f_c00011{bottom:651.721433pt;}
.y2e_c00011{bottom:652.252136pt;}
.y2d_c00011{bottom:652.700724pt;}
.y2c_c00011{bottom:653.118979pt;}
.y2b_c00011{bottom:653.312076pt;}
.y2a_c00011{bottom:653.678456pt;}
.y29_c00011{bottom:653.930465pt;}
.y28_c00011{bottom:654.330371pt;}
.y27_c00011{bottom:654.718171pt;}
.y26_c00011{bottom:675.314975pt;}
.y25_c00011{bottom:675.856683pt;}
.y24_c00011{bottom:676.659908pt;}
.y23_c00011{bottom:676.982611pt;}
.y22_c00011{bottom:677.857696pt;}
.y21_c00011{bottom:678.480240pt;}
.y20_c00011{bottom:698.613596pt;}
.y1f_c00011{bottom:698.826965pt;}
.y1e_c00011{bottom:699.278848pt;}
.y1d_c00011{bottom:699.509036pt;}
.y1c_c00011{bottom:699.923772pt;}
.y1b_c00011{bottom:700.717003pt;}
.y1a_c00011{bottom:701.049643pt;}
.y19_c00011{bottom:701.279812pt;}
.y18_c00011{bottom:722.177473pt;}
.y17_c00011{bottom:723.108267pt;}
.y16_c00011{bottom:723.551352pt;}
.y15_c00011{bottom:723.695875pt;}
.y14_c00011{bottom:724.483741pt;}
.y13_c00011{bottom:725.281060pt;}
.yc_c00011{bottom:746.789568pt;}
.yd_c00011{bottom:746.789844pt;}
.ye_c00011{bottom:746.789897pt;}
.y12_c00011{bottom:746.790015pt;}
.yf_c00011{bottom:746.790307pt;}
.y11_c00011{bottom:746.790379pt;}
.y10_c00011{bottom:746.790689pt;}
.yb_c00011{bottom:768.816952pt;}
.ya_c00011{bottom:769.142844pt;}
.y9_c00011{bottom:769.693884pt;}
.y8_c00011{bottom:769.840063pt;}
.y7_c00011{bottom:770.592684pt;}
.y6_c00011{bottom:771.165611pt;}
.y5_c00011{bottom:771.580599pt;}
.y4_c00011{bottom:771.840000pt;}
.y3_c00011{bottom:818.150667pt;}
.y2_c00011{bottom:854.141333pt;}
.y1_c00011{bottom:905.040000pt;}
.h2_c00011{height:28.000000pt;}
.h11_c00011{height:46.669000pt;}
.hf_c00011{height:80.268633pt;}
.ha_c00011{height:81.201989pt;}
.hd_c00011{height:83.068702pt;}
.h10_c00011{height:86.804340pt;}
.hb_c00011{height:89.602195pt;}
.he_c00011{height:90.535551pt;}
.hc_c00011{height:91.468908pt;}
.h7_c00011{height:92.402264pt;}
.h9_c00011{height:93.335620pt;}
.h5_c00011{height:94.268976pt;}
.h6_c00011{height:95.202332pt;}
.h8_c00011{height:96.135689pt;}
.h4_c00011{height:113.866667pt;}
.h3_c00011{height:165.200000pt;}
.h12_c00011{height:206.276980pt;}
.h0_c00011{height:965.733333pt;}
.h1_c00011{height:966.000000pt;}
.w1_c00011{width:685.333333pt;}
.w0_c00011{width:685.440000pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:115.920000pt;}
.x90_c00011{left:122.899533pt;}
.x5_c00011{left:124.585333pt;}
.x96_c00011{left:138.561373pt;}
.x12_c00011{left:146.013820pt;}
.x7a_c00011{left:159.392388pt;}
.x2a_c00011{left:160.413019pt;}
.x6_c00011{left:161.642667pt;}
.x42_c00011{left:175.489304pt;}
.x6a_c00011{left:182.734700pt;}
.x56_c00011{left:187.273197pt;}
.x3e_c00011{left:193.568188pt;}
.x18_c00011{left:194.525252pt;}
.x4b_c00011{left:196.858351pt;}
.x6b_c00011{left:199.781245pt;}
.x22_c00011{left:200.761205pt;}
.x37_c00011{left:209.937112pt;}
.x74_c00011{left:214.859160pt;}
.x72_c00011{left:217.260703pt;}
.x7b_c00011{left:219.399621pt;}
.x4_c00011{left:220.320000pt;}
.x2f_c00011{left:223.131073pt;}
.x80_c00011{left:225.899899pt;}
.x5f_c00011{left:227.114465pt;}
.xc_c00011{left:228.723093pt;}
.x1e_c00011{left:230.738024pt;}
.x13_c00011{left:234.581912pt;}
.x66_c00011{left:235.490412pt;}
.x19_c00011{left:242.045252pt;}
.x7c_c00011{left:244.360077pt;}
.x38_c00011{left:245.375284pt;}
.x6c_c00011{left:248.795567pt;}
.x30_c00011{left:250.207073pt;}
.xd_c00011{left:251.764223pt;}
.x57_c00011{left:254.237121pt;}
.x23_c00011{left:257.890539pt;}
.x48_c00011{left:259.016899pt;}
.x2b_c00011{left:262.894248pt;}
.x5b_c00011{left:266.435457pt;}
.x75_c00011{left:271.021592pt;}
.x31_c00011{left:272.531073pt;}
.x3_c00011{left:274.560000pt;}
.x6d_c00011{left:276.112713pt;}
.x60_c00011{left:277.273411pt;}
.x51_c00011{left:278.683368pt;}
.x39_c00011{left:281.853437pt;}
.x67_c00011{left:292.132825pt;}
.x24_c00011{left:293.891872pt;}
.x49_c00011{left:296.693177pt;}
.x8b_c00011{left:297.674667pt;}
.xe_c00011{left:298.565185pt;}
.x52_c00011{left:300.537419pt;}
.x7_c00011{left:302.773333pt;}
.x3f_c00011{left:304.645855pt;}
.x61_c00011{left:306.795461pt;}
.x4c_c00011{left:312.845769pt;}
.x85_c00011{left:318.541367pt;}
.x58_c00011{left:320.959721pt;}
.x14_c00011{left:322.180689pt;}
.x5c_c00011{left:323.332136pt;}
.xf_c00011{left:327.845289pt;}
.x76_c00011{left:329.575949pt;}
.x81_c00011{left:332.750236pt;}
.x6e_c00011{left:335.678960pt;}
.x15_c00011{left:338.255132pt;}
.x32_c00011{left:339.731073pt;}
.x3a_c00011{left:342.573921pt;}
.x43_c00011{left:343.790081pt;}
.x25_c00011{left:346.231872pt;}
.x62_c00011{left:347.659936pt;}
.x40_c00011{left:349.762245pt;}
.x4d_c00011{left:351.666020pt;}
.x1a_c00011{left:355.363919pt;}
.x6f_c00011{left:361.789440pt;}
.x1f_c00011{left:363.753491pt;}
.x2c_c00011{left:367.316783pt;}
.x33_c00011{left:371.937740pt;}
.x26_c00011{left:373.817205pt;}
.x68_c00011{left:375.890483pt;}
.x86_c00011{left:378.543687pt;}
.x44_c00011{left:381.164775pt;}
.x97_c00011{left:382.905813pt;}
.x16_c00011{left:387.457108pt;}
.x4a_c00011{left:388.851935pt;}
.x10_c00011{left:393.607176pt;}
.x63_c00011{left:394.882947pt;}
.x34_c00011{left:398.087073pt;}
.x91_c00011{left:399.311440pt;}
.x45_c00011{left:402.282704pt;}
.x77_c00011{left:404.051201pt;}
.x7d_c00011{left:405.227783pt;}
.x53_c00011{left:407.094432pt;}
.x8_c00011{left:410.290667pt;}
.x1b_c00011{left:414.611919pt;}
.x78_c00011{left:415.984199pt;}
.x2d_c00011{left:418.668064pt;}
.x92_c00011{left:426.511173pt;}
.x69_c00011{left:428.282351pt;}
.x9_c00011{left:431.173333pt;}
.x82_c00011{left:432.132779pt;}
.x27_c00011{left:433.567872pt;}
.x87_c00011{left:435.863415pt;}
.x59_c00011{left:438.315924pt;}
.x88_c00011{left:440.704608pt;}
.x4e_c00011{left:442.616815pt;}
.x7e_c00011{left:443.559772pt;}
.x35_c00011{left:444.855073pt;}
.x11_c00011{left:448.328521pt;}
.x83_c00011{left:450.534932pt;}
.x20_c00011{left:452.974907pt;}
.x54_c00011{left:457.254365pt;}
.x5d_c00011{left:458.210080pt;}
.x79_c00011{left:462.537559pt;}
.x4f_c00011{left:464.937523pt;}
.x84_c00011{left:469.793057pt;}
.x64_c00011{left:471.437341pt;}
.x46_c00011{left:473.074897pt;}
.x7f_c00011{left:476.675948pt;}
.x8c_c00011{left:482.541333pt;}
.x5a_c00011{left:483.674972pt;}
.x70_c00011{left:487.556563pt;}
.x17_c00011{left:490.902328pt;}
.x3b_c00011{left:492.397164pt;}
.x28_c00011{left:497.651872pt;}
.x3c_c00011{left:504.582329pt;}
.xa_c00011{left:509.893333pt;}
.x1c_c00011{left:512.050585pt;}
.x21_c00011{left:513.218067pt;}
.x73_c00011{left:514.859035pt;}
.x8d_c00011{left:516.790667pt;}
.x3d_c00011{left:527.136679pt;}
.x36_c00011{left:528.856407pt;}
.x89_c00011{left:531.671393pt;}
.x65_c00011{left:533.597368pt;}
.x5e_c00011{left:537.683299pt;}
.x41_c00011{left:538.999603pt;}
.x47_c00011{left:541.480499pt;}
.x1d_c00011{left:542.531919pt;}
.x8e_c00011{left:543.696000pt;}
.x1_c00011{left:550.560000pt;}
.x50_c00011{left:553.499040pt;}
.xb_c00011{left:556.449333pt;}
.x2e_c00011{left:559.779428pt;}
.x8a_c00011{left:561.702885pt;}
.x55_c00011{left:566.467304pt;}
.x29_c00011{left:573.466539pt;}
.x93_c00011{left:587.532227pt;}
.x71_c00011{left:595.199807pt;}
.x94_c00011{left:601.456093pt;}
.x8f_c00011{left:643.710667pt;}
.x95_c00011{left:653.023573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m86_c00012{transform:matrix(0.007819,0.000141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.007819,0.000141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.007819,0.000141,-0.004499,0.249960,0,0);}
.m85_c00012{transform:matrix(0.008169,0.000131,-0.003999,0.249968,0,0);-ms-transform:matrix(0.008169,0.000131,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.008169,0.000131,-0.003999,0.249968,0,0);}
.m83_c00012{transform:matrix(0.009134,0.000146,-0.003999,0.249968,0,0);-ms-transform:matrix(0.009134,0.000146,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.009134,0.000146,-0.003999,0.249968,0,0);}
.m84_c00012{transform:matrix(0.012918,0.000207,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012918,0.000207,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012918,0.000207,-0.003999,0.249968,0,0);}
.m4b_c00012{transform:matrix(0.030472,0.000457,-0.003750,0.249972,0,0);-ms-transform:matrix(0.030472,0.000457,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.030472,0.000457,-0.003750,0.249972,0,0);}
.m7_c00012{transform:matrix(0.086210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086210,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.092090,0.001381,-0.003750,0.249972,0,0);-ms-transform:matrix(0.092090,0.001381,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.092090,0.001381,-0.003750,0.249972,0,0);}
.m33_c00012{transform:matrix(0.094739,0.001421,-0.003750,0.249972,0,0);-ms-transform:matrix(0.094739,0.001421,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.094739,0.001421,-0.003750,0.249972,0,0);}
.mb0_c00012{transform:matrix(0.094775,0.001706,-0.004499,0.249960,0,0);-ms-transform:matrix(0.094775,0.001706,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.094775,0.001706,-0.004499,0.249960,0,0);}
.m55_c00012{transform:matrix(0.103003,0.002369,-0.005748,0.249934,0,0);-ms-transform:matrix(0.103003,0.002369,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.103003,0.002369,-0.005748,0.249934,0,0);}
.mc0_c00012{transform:matrix(0.108428,0.001626,-0.003750,0.249972,0,0);-ms-transform:matrix(0.108428,0.001626,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.108428,0.001626,-0.003750,0.249972,0,0);}
.m5a_c00012{transform:matrix(0.114090,0.002624,-0.005748,0.249934,0,0);-ms-transform:matrix(0.114090,0.002624,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.114090,0.002624,-0.005748,0.249934,0,0);}
.m24_c00012{transform:matrix(0.116722,0.001751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.116722,0.001751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.116722,0.001751,-0.003750,0.249972,0,0);}
.m18_c00012{transform:matrix(0.116727,0.001751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.116727,0.001751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.116727,0.001751,-0.003750,0.249972,0,0);}
.m58_c00012{transform:matrix(0.128501,0.002956,-0.005748,0.249934,0,0);-ms-transform:matrix(0.128501,0.002956,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.128501,0.002956,-0.005748,0.249934,0,0);}
.m9b_c00012{transform:matrix(0.129219,0.002326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.129219,0.002326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.129219,0.002326,-0.004499,0.249960,0,0);}
.m54_c00012{transform:matrix(0.129606,0.002981,-0.005748,0.249934,0,0);-ms-transform:matrix(0.129606,0.002981,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.129606,0.002981,-0.005748,0.249934,0,0);}
.m59_c00012{transform:matrix(0.130720,0.003007,-0.005748,0.249934,0,0);-ms-transform:matrix(0.130720,0.003007,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.130720,0.003007,-0.005748,0.249934,0,0);}
.m4c_c00012{transform:matrix(0.135355,0.002030,-0.003750,0.249972,0,0);-ms-transform:matrix(0.135355,0.002030,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.135355,0.002030,-0.003750,0.249972,0,0);}
.m56_c00012{transform:matrix(0.135779,0.003123,-0.005748,0.249934,0,0);-ms-transform:matrix(0.135779,0.003123,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.135779,0.003123,-0.005748,0.249934,0,0);}
.m52_c00012{transform:matrix(0.139554,0.002093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.139554,0.002093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.139554,0.002093,-0.003750,0.249972,0,0);}
.m64_c00012{transform:matrix(0.139843,0.003216,-0.005748,0.249934,0,0);-ms-transform:matrix(0.139843,0.003216,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.139843,0.003216,-0.005748,0.249934,0,0);}
.m57_c00012{transform:matrix(0.142937,0.003288,-0.005748,0.249934,0,0);-ms-transform:matrix(0.142937,0.003288,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.142937,0.003288,-0.005748,0.249934,0,0);}
.m41_c00012{transform:matrix(0.143929,0.002159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.143929,0.002159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.143929,0.002159,-0.003750,0.249972,0,0);}
.m89_c00012{transform:matrix(0.144362,0.002599,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144362,0.002599,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144362,0.002599,-0.004499,0.249960,0,0);}
.m13_c00012{transform:matrix(0.145444,0.002182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145444,0.002182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145444,0.002182,-0.003750,0.249972,0,0);}
.md2_c00012{transform:matrix(0.147628,0.002214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147628,0.002214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147628,0.002214,-0.003750,0.249972,0,0);}
.m14_c00012{transform:matrix(0.147893,0.002218,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147893,0.002218,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147893,0.002218,-0.003750,0.249972,0,0);}
.mdf_c00012{transform:matrix(0.150185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150185,0.000000,0.000000,0.250000,0,0);}
.m7b_c00012{transform:matrix(0.152470,0.002440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152470,0.002440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152470,0.002440,-0.003999,0.249968,0,0);}
.m2e_c00012{transform:matrix(0.153308,0.002300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153308,0.002300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153308,0.002300,-0.003750,0.249972,0,0);}
.m53_c00012{transform:matrix(0.154839,0.003561,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154839,0.003561,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154839,0.003561,-0.005748,0.249934,0,0);}
.m3e_c00012{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);}
.m46_c00012{transform:matrix(0.155857,0.002338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155857,0.002338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155857,0.002338,-0.003750,0.249972,0,0);}
.m12_c00012{transform:matrix(0.156332,0.002345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156332,0.002345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156332,0.002345,-0.003750,0.249972,0,0);}
.mc9_c00012{transform:matrix(0.158207,0.002373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158207,0.002373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158207,0.002373,-0.003750,0.249972,0,0);}
.mcb_c00012{transform:matrix(0.159612,0.002394,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159612,0.002394,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159612,0.002394,-0.003750,0.249972,0,0);}
.m16_c00012{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);}
.m36_c00012{transform:matrix(0.160827,0.002412,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160827,0.002412,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160827,0.002412,-0.003750,0.249972,0,0);}
.m31_c00012{transform:matrix(0.161047,0.002416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161047,0.002416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161047,0.002416,-0.003750,0.249972,0,0);}
.m7f_c00012{transform:matrix(0.161414,0.002583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161414,0.002583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161414,0.002583,-0.003999,0.249968,0,0);}
.m49_c00012{transform:matrix(0.161647,0.002425,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161647,0.002425,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161647,0.002425,-0.003750,0.249972,0,0);}
.m38_c00012{transform:matrix(0.161727,0.002426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161727,0.002426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161727,0.002426,-0.003750,0.249972,0,0);}
.m3f_c00012{transform:matrix(0.161907,0.002429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161907,0.002429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161907,0.002429,-0.003750,0.249972,0,0);}
.m8d_c00012{transform:matrix(0.162759,0.002930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162759,0.002930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162759,0.002930,-0.004499,0.249960,0,0);}
.md9_c00012{transform:matrix(0.163114,0.002284,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163114,0.002284,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163114,0.002284,-0.003500,0.249976,0,0);}
.m2a_c00012{transform:matrix(0.163732,0.002456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163732,0.002456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163732,0.002456,-0.003750,0.249972,0,0);}
.m35_c00012{transform:matrix(0.163947,0.002459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163947,0.002459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163947,0.002459,-0.003750,0.249972,0,0);}
.mce_c00012{transform:matrix(0.164197,0.002463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164197,0.002463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164197,0.002463,-0.003750,0.249972,0,0);}
.mde_c00012{transform:matrix(0.164939,0.002309,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164939,0.002309,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164939,0.002309,-0.003500,0.249976,0,0);}
.m71_c00012{transform:matrix(0.165054,0.002641,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165054,0.002641,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165054,0.002641,-0.003999,0.249968,0,0);}
.m4f_c00012{transform:matrix(0.165966,0.002489,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165966,0.002489,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165966,0.002489,-0.003750,0.249972,0,0);}
.m6f_c00012{transform:matrix(0.166629,0.002666,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166629,0.002666,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166629,0.002666,-0.003999,0.249968,0,0);}
.m81_c00012{transform:matrix(0.166969,0.002671,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166969,0.002671,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166969,0.002671,-0.003999,0.249968,0,0);}
.m3c_c00012{transform:matrix(0.167511,0.002513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167511,0.002513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167511,0.002513,-0.003750,0.249972,0,0);}
.m2c_c00012{transform:matrix(0.168476,0.002527,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168476,0.002527,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168476,0.002527,-0.003750,0.249972,0,0);}
.m70_c00012{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);}
.md5_c00012{transform:matrix(0.168776,0.002532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168776,0.002532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168776,0.002532,-0.003750,0.249972,0,0);}
.mca_c00012{transform:matrix(0.169061,0.002536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169061,0.002536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169061,0.002536,-0.003750,0.249972,0,0);}
.mc3_c00012{transform:matrix(0.169421,0.002541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169421,0.002541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169421,0.002541,-0.003750,0.249972,0,0);}
.m28_c00012{transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);}
.maf_c00012{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);}
.m37_c00012{transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);}
.m6a_c00012{transform:matrix(0.171068,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171068,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171068,0.002737,-0.003999,0.249968,0,0);}
.mc6_c00012{transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);}
.m42_c00012{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);}
.m7e_c00012{transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);}
.m32_c00012{transform:matrix(0.171971,0.002580,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171971,0.002580,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171971,0.002580,-0.003750,0.249972,0,0);}
.ma5_c00012{transform:matrix(0.172547,0.003106,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172547,0.003106,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172547,0.003106,-0.004499,0.249960,0,0);}
.m8b_c00012{transform:matrix(0.173247,0.003118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173247,0.003118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173247,0.003118,-0.004499,0.249960,0,0);}
.ma6_c00012{transform:matrix(0.173412,0.003121,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173412,0.003121,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173412,0.003121,-0.004499,0.249960,0,0);}
.mcc_c00012{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);}
.mb6_c00012{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);}
.m3b_c00012{transform:matrix(0.175900,0.002639,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175900,0.002639,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175900,0.002639,-0.003750,0.249972,0,0);}
.md8_c00012{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);}
.m4d_c00012{transform:matrix(0.176880,0.002653,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176880,0.002653,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176880,0.002653,-0.003750,0.249972,0,0);}
.maa_c00012{transform:matrix(0.176901,0.003184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176901,0.003184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176901,0.003184,-0.004499,0.249960,0,0);}
.m94_c00012{transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);}
.ma9_c00012{transform:matrix(0.178326,0.003210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178326,0.003210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178326,0.003210,-0.004499,0.249960,0,0);}
.m80_c00012{transform:matrix(0.178412,0.002855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178412,0.002855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178412,0.002855,-0.003999,0.249968,0,0);}
.m17_c00012{transform:matrix(0.178670,0.002680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178670,0.002680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178670,0.002680,-0.003750,0.249972,0,0);}
.m8c_c00012{transform:matrix(0.179106,0.003224,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179106,0.003224,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179106,0.003224,-0.004499,0.249960,0,0);}
.m29_c00012{transform:matrix(0.179405,0.002691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179405,0.002691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179405,0.002691,-0.003750,0.249972,0,0);}
.m88_c00012{transform:matrix(0.179616,0.003233,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179616,0.003233,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179616,0.003233,-0.004499,0.249960,0,0);}
.m51_c00012{transform:matrix(0.179975,0.002700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179975,0.002700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179975,0.002700,-0.003750,0.249972,0,0);}
.m4e_c00012{transform:matrix(0.180010,0.002700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180010,0.002700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180010,0.002700,-0.003750,0.249972,0,0);}
.mc4_c00012{transform:matrix(0.180460,0.002707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180460,0.002707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180460,0.002707,-0.003750,0.249972,0,0);}
.mb7_c00012{transform:matrix(0.180735,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180735,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180735,0.002711,-0.003750,0.249972,0,0);}
.m69_c00012{transform:matrix(0.181092,0.002897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181092,0.002897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181092,0.002897,-0.003999,0.249968,0,0);}
.mbf_c00012{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);}
.mda_c00012{transform:matrix(0.181312,0.002538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181312,0.002538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181312,0.002538,-0.003500,0.249976,0,0);}
.mc1_c00012{transform:matrix(0.182534,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182534,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182534,0.002738,-0.003750,0.249972,0,0);}
.m7c_c00012{transform:matrix(0.182672,0.002923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182672,0.002923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182672,0.002923,-0.003999,0.249968,0,0);}
.m39_c00012{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);}
.m1a_c00012{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);}
.m1c_c00012{transform:matrix(0.183974,0.002760,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183974,0.002760,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183974,0.002760,-0.003750,0.249972,0,0);}
.m1f_c00012{transform:matrix(0.184109,0.002762,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184109,0.002762,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184109,0.002762,-0.003750,0.249972,0,0);}
.mad_c00012{transform:matrix(0.184700,0.003325,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184700,0.003325,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184700,0.003325,-0.004499,0.249960,0,0);}
.ma1_c00012{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);}
.m6b_c00012{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);}
.m1_c00012{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);}
.m1b_c00012{transform:matrix(0.186274,0.002794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186274,0.002794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186274,0.002794,-0.003750,0.249972,0,0);}
.ma8_c00012{transform:matrix(0.186380,0.003355,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186380,0.003355,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186380,0.003355,-0.004499,0.249960,0,0);}
.mbe_c00012{transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);}
.m48_c00012{transform:matrix(0.186824,0.002802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186824,0.002802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186824,0.002802,-0.003750,0.249972,0,0);}
.m91_c00012{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);}
.m43_c00012{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);}
.m34_c00012{transform:matrix(0.187269,0.002809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187269,0.002809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187269,0.002809,-0.003750,0.249972,0,0);}
.m96_c00012{transform:matrix(0.187640,0.003378,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187640,0.003378,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187640,0.003378,-0.004499,0.249960,0,0);}
.m8a_c00012{transform:matrix(0.187655,0.003378,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187655,0.003378,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187655,0.003378,-0.004499,0.249960,0,0);}
.md7_c00012{transform:matrix(0.188672,0.002641,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188672,0.002641,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188672,0.002641,-0.003500,0.249976,0,0);}
.m3a_c00012{transform:matrix(0.189039,0.002836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189039,0.002836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189039,0.002836,-0.003750,0.249972,0,0);}
.m9e_c00012{transform:matrix(0.189829,0.003417,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189829,0.003417,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189829,0.003417,-0.004499,0.249960,0,0);}
.mc2_c00012{transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);}
.m6c_c00012{transform:matrix(0.191106,0.003058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191106,0.003058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191106,0.003058,-0.003999,0.249968,0,0);}
.mac_c00012{transform:matrix(0.191659,0.003450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191659,0.003450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191659,0.003450,-0.004499,0.249960,0,0);}
.md3_c00012{transform:matrix(0.191988,0.002880,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191988,0.002880,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191988,0.002880,-0.003750,0.249972,0,0);}
.md_c00012{transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);}
.ma2_c00012{transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);}
.mdb_c00012{transform:matrix(0.193051,0.002703,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193051,0.002703,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193051,0.002703,-0.003500,0.249976,0,0);}
.m92_c00012{transform:matrix(0.193159,0.003477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193159,0.003477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193159,0.003477,-0.004499,0.249960,0,0);}
.m90_c00012{transform:matrix(0.193349,0.003480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193349,0.003480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193349,0.003480,-0.004499,0.249960,0,0);}
.ma0_c00012{transform:matrix(0.193629,0.003485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193629,0.003485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193629,0.003485,-0.004499,0.249960,0,0);}
.mb8_c00012{transform:matrix(0.194598,0.002919,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194598,0.002919,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194598,0.002919,-0.003750,0.249972,0,0);}
.m10_c00012{transform:matrix(0.195473,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195473,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195473,0.002932,-0.003750,0.249972,0,0);}
.m50_c00012{transform:matrix(0.196163,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196163,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196163,0.002942,-0.003750,0.249972,0,0);}
.m2f_c00012{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);}
.m9f_c00012{transform:matrix(0.196688,0.003540,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196688,0.003540,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196688,0.003540,-0.004499,0.249960,0,0);}
.md1_c00012{transform:matrix(0.196698,0.002950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196698,0.002950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196698,0.002950,-0.003750,0.249972,0,0);}
.m7a_c00012{transform:matrix(0.197305,0.003157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197305,0.003157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197305,0.003157,-0.003999,0.249968,0,0);}
.mb1_c00012{transform:matrix(0.197513,0.003555,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197513,0.003555,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197513,0.003555,-0.004499,0.249960,0,0);}
.m11_c00012{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);}
.m2b_c00012{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);}
.m23_c00012{transform:matrix(0.199728,0.002996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199728,0.002996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199728,0.002996,-0.003750,0.249972,0,0);}
.m7d_c00012{transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);}
.mb3_c00012{transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);}
.mb2_c00012{transform:matrix(0.200193,0.003603,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200193,0.003603,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200193,0.003603,-0.004499,0.249960,0,0);}
.me_c00012{transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);}
.m98_c00012{transform:matrix(0.200428,0.003608,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200428,0.003608,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200428,0.003608,-0.004499,0.249960,0,0);}
.m93_c00012{transform:matrix(0.200782,0.003614,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200782,0.003614,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200782,0.003614,-0.004499,0.249960,0,0);}
.m3d_c00012{transform:matrix(0.200907,0.003014,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200907,0.003014,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200907,0.003014,-0.003750,0.249972,0,0);}
.m40_c00012{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);}
.mab_c00012{transform:matrix(0.201387,0.003625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201387,0.003625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201387,0.003625,-0.004499,0.249960,0,0);}
.m45_c00012{transform:matrix(0.202682,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202682,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202682,0.003040,-0.003750,0.249972,0,0);}
.mb9_c00012{transform:matrix(0.203132,0.003047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203132,0.003047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203132,0.003047,-0.003750,0.249972,0,0);}
.m9c_c00012{transform:matrix(0.204172,0.003675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204172,0.003675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204172,0.003675,-0.004499,0.249960,0,0);}
.m8e_c00012{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);}
.m30_c00012{transform:matrix(0.204367,0.003066,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204367,0.003066,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204367,0.003066,-0.003750,0.249972,0,0);}
.mc_c00012{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);}
.m72_c00012{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);}
.mc7_c00012{transform:matrix(0.205717,0.003086,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205717,0.003086,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205717,0.003086,-0.003750,0.249972,0,0);}
.m63_c00012{transform:matrix(0.206405,0.004747,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206405,0.004747,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206405,0.004747,-0.005748,0.249934,0,0);}
.mc8_c00012{transform:matrix(0.206637,0.003100,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206637,0.003100,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206637,0.003100,-0.003750,0.249972,0,0);}
.m8f_c00012{transform:matrix(0.207356,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207356,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207356,0.003732,-0.004499,0.249960,0,0);}
.m75_c00012{transform:matrix(0.207673,0.003323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207673,0.003323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207673,0.003323,-0.003999,0.249968,0,0);}
.mc5_c00012{transform:matrix(0.208282,0.003124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208282,0.003124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208282,0.003124,-0.003750,0.249972,0,0);}
.mbc_c00012{transform:matrix(0.208467,0.003127,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208467,0.003127,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208467,0.003127,-0.003750,0.249972,0,0);}
.md4_c00012{transform:matrix(0.208911,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208911,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208911,0.003134,-0.003750,0.249972,0,0);}
.m20_c00012{transform:matrix(0.209296,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209296,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209296,0.003139,-0.003750,0.249972,0,0);}
.m9a_c00012{transform:matrix(0.209946,0.003779,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209946,0.003779,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209946,0.003779,-0.004499,0.249960,0,0);}
.m2_c00012{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_c00012{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);}
.m79_c00012{transform:matrix(0.211173,0.003379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211173,0.003379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211173,0.003379,-0.003999,0.249968,0,0);}
.mcd_c00012{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);}
.m61_c00012{transform:matrix(0.212869,0.004896,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212869,0.004896,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212869,0.004896,-0.005748,0.249934,0,0);}
.m5d_c00012{transform:matrix(0.213034,0.004900,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213034,0.004900,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213034,0.004900,-0.005748,0.249934,0,0);}
.m68_c00012{transform:matrix(0.213153,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213153,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213153,0.003410,-0.003999,0.249968,0,0);}
.m2d_c00012{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);}
.mbb_c00012{transform:matrix(0.213356,0.003200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213356,0.003200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213356,0.003200,-0.003750,0.249972,0,0);}
.m6e_c00012{transform:matrix(0.213993,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213993,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213993,0.003424,-0.003999,0.249968,0,0);}
.m21_c00012{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);}
.m95_c00012{transform:matrix(0.215550,0.003880,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215550,0.003880,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215550,0.003880,-0.004499,0.249960,0,0);}
.mb4_c00012{transform:matrix(0.215750,0.003884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215750,0.003884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215750,0.003884,-0.004499,0.249960,0,0);}
.mba_c00012{transform:matrix(0.216041,0.003241,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216041,0.003241,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216041,0.003241,-0.003750,0.249972,0,0);}
.m76_c00012{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);}
.mf_c00012{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);}
.mae_c00012{transform:matrix(0.217225,0.003910,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217225,0.003910,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217225,0.003910,-0.004499,0.249960,0,0);}
.m22_c00012{transform:matrix(0.217626,0.003264,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217626,0.003264,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217626,0.003264,-0.003750,0.249972,0,0);}
.m19_c00012{transform:matrix(0.218630,0.003279,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218630,0.003279,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218630,0.003279,-0.003750,0.249972,0,0);}
.m25_c00012{transform:matrix(0.219055,0.003286,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219055,0.003286,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219055,0.003286,-0.003750,0.249972,0,0);}
.ma3_c00012{transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);}
.ma7_c00012{transform:matrix(0.219519,0.003951,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219519,0.003951,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219519,0.003951,-0.004499,0.249960,0,0);}
.m5e_c00012{transform:matrix(0.219977,0.005059,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219977,0.005059,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219977,0.005059,-0.005748,0.249934,0,0);}
.m15_c00012{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);}
.m87_c00012{transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);}
.m4a_c00012{transform:matrix(0.220640,0.003310,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220640,0.003310,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220640,0.003310,-0.003750,0.249972,0,0);}
.m82_c00012{transform:matrix(0.220847,0.003534,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220847,0.003534,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220847,0.003534,-0.003999,0.249968,0,0);}
.mb5_c00012{transform:matrix(0.221570,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221570,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221570,0.003324,-0.003750,0.249972,0,0);}
.m65_c00012{transform:matrix(0.225540,0.005187,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225540,0.005187,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225540,0.005187,-0.005748,0.249934,0,0);}
.mbd_c00012{transform:matrix(0.227354,0.003410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227354,0.003410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227354,0.003410,-0.003750,0.249972,0,0);}
.m5b_c00012{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);}
.m77_c00012{transform:matrix(0.228476,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228476,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228476,0.003656,-0.003999,0.249968,0,0);}
.mcf_c00012{transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);}
.m97_c00012{transform:matrix(0.229493,0.004131,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229493,0.004131,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229493,0.004131,-0.004499,0.249960,0,0);}
.m26_c00012{transform:matrix(0.230334,0.003455,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230334,0.003455,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230334,0.003455,-0.003750,0.249972,0,0);}
.m74_c00012{transform:matrix(0.230870,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230870,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230870,0.003694,-0.003999,0.249968,0,0);}
.m62_c00012{transform:matrix(0.234313,0.005389,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234313,0.005389,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234313,0.005389,-0.005748,0.249934,0,0);}
.m1d_c00012{transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);}
.mdc_c00012{transform:matrix(0.236157,0.003306,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236157,0.003306,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236157,0.003306,-0.003500,0.249976,0,0);}
.m47_c00012{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);}
.m78_c00012{transform:matrix(0.239764,0.003836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239764,0.003836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239764,0.003836,-0.003999,0.249968,0,0);}
.m73_c00012{transform:matrix(0.244014,0.003904,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244014,0.003904,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244014,0.003904,-0.003999,0.249968,0,0);}
.m5c_c00012{transform:matrix(0.244130,0.005615,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244130,0.005615,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244130,0.005615,-0.005748,0.249934,0,0);}
.ma4_c00012{transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);}
.m44_c00012{transform:matrix(0.244912,0.003674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244912,0.003674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244912,0.003674,-0.003750,0.249972,0,0);}
.m99_c00012{transform:matrix(0.246440,0.004436,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246440,0.004436,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246440,0.004436,-0.004499,0.249960,0,0);}
.m66_c00012{transform:matrix(0.249494,0.005738,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249494,0.005738,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249494,0.005738,-0.005748,0.249934,0,0);}
.md6_c00012{transform:matrix(0.249646,0.003495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249646,0.003495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249646,0.003495,-0.003500,0.249976,0,0);}
.m5f_c00012{transform:matrix(0.251154,0.005777,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251154,0.005777,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251154,0.005777,-0.005748,0.249934,0,0);}
.md0_c00012{transform:matrix(0.252357,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252357,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252357,0.003785,-0.003750,0.249972,0,0);}
.m9d_c00012{transform:matrix(0.254209,0.004576,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254209,0.004576,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254209,0.004576,-0.004499,0.249960,0,0);}
.m60_c00012{transform:matrix(0.254223,0.005847,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254223,0.005847,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254223,0.005847,-0.005748,0.249934,0,0);}
.mdd_c00012{transform:matrix(0.259720,0.003636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259720,0.003636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259720,0.003636,-0.003500,0.249976,0,0);}
.ma_c00012{transform:matrix(0.260645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260645,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{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);}
.m67_c00012{transform:matrix(0.284640,0.006547,-0.005748,0.249934,0,0);-ms-transform:matrix(0.284640,0.006547,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.284640,0.006547,-0.005748,0.249934,0,0);}
.m6d_c00012{transform:matrix(0.290613,0.004650,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290613,0.004650,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290613,0.004650,-0.003999,0.249968,0,0);}
.m3_c00012{transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.344560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344560,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.365715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365715,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.453550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453550,0.000000,0.000000,0.250000,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;}
._0_c00012{width:9150.805534px;}
.fc0_c00012{color:transparent;}
.fs1_c00012{font-size:52.500000px;}
.fsa_c00012{font-size:85.072493px;}
.fsd_c00012{font-size:87.161154px;}
.fs5_c00012{font-size:89.260040px;}
.fsb_c00012{font-size:89.273604px;}
.fsf_c00012{font-size:93.461961px;}
.fs12_c00012{font-size:96.615648px;}
.fsc_c00012{font-size:97.662498px;}
.fs15_c00012{font-size:98.711103px;}
.fs11_c00012{font-size:98.715988px;}
.fs8_c00012{font-size:102.911576px;}
.fs14_c00012{font-size:102.916668px;}
.fs4_c00012{font-size:103.961694px;}
.fs3_c00012{font-size:105.011812px;}
.fs13_c00012{font-size:105.017009px;}
.fs7_c00012{font-size:106.061930px;}
.fs16_c00012{font-size:107.110495px;}
.fs6_c00012{font-size:108.162166px;}
.fse_c00012{font-size:108.163842px;}
.fs10_c00012{font-size:109.217689px;}
.fs2_c00012{font-size:131.250000px;}
.fs0_c00012{font-size:154.350000px;}
.fs9_c00012{font-size:162.793042px;}
.fs17_c00012{font-size:218.400000px;}
.y0_c00012{bottom:0.000000px;}
.yd7_c00012{bottom:216.036855px;}
.yd6_c00012{bottom:216.679455px;}
.yd5_c00012{bottom:216.866355px;}
.yd4_c00012{bottom:218.138346px;}
.yd3_c00012{bottom:219.200736px;}
.yd2_c00012{bottom:219.637893px;}
.yd1_c00012{bottom:220.493517px;}
.yd0_c00012{bottom:221.380662px;}
.ycf_c00012{bottom:221.953500px;}
.yc5_c00012{bottom:241.509315px;}
.yc4_c00012{bottom:242.048032px;}
.yc3_c00012{bottom:243.320992px;}
.yc2_c00012{bottom:243.827557px;}
.yc1_c00012{bottom:245.301420px;}
.yc0_c00012{bottom:245.818920px;}
.ybf_c00012{bottom:246.946080px;}
.ybe_c00012{bottom:248.129040px;}
.ybd_c00012{bottom:267.732008px;}
.ybc_c00012{bottom:269.114227px;}
.ybb_c00012{bottom:269.976967px;}
.yba_c00012{bottom:270.864052px;}
.yb9_c00012{bottom:271.083922px;}
.yb8_c00012{bottom:272.285805px;}
.yb7_c00012{bottom:272.921587px;}
.yb6_c00012{bottom:274.051537px;}
.yb5_c00012{bottom:292.756725px;}
.yb4_c00012{bottom:293.331892px;}
.yb3_c00012{bottom:294.579270px;}
.yb2_c00012{bottom:295.012935px;}
.yb1_c00012{bottom:296.438738px;}
.yb0_c00012{bottom:298.439640px;}
.yaf_c00012{bottom:298.860795px;}
.yae_c00012{bottom:299.164500px;}
.yce_c00012{bottom:319.322385px;}
.ycd_c00012{bottom:320.715855px;}
.ycc_c00012{bottom:321.273180px;}
.ycb_c00012{bottom:321.862297px;}
.yca_c00012{bottom:322.481632px;}
.yc9_c00012{bottom:323.782020px;}
.yc8_c00012{bottom:324.405585px;}
.yc7_c00012{bottom:325.114560px;}
.yc6_c00012{bottom:325.624500px;}
.yad_c00012{bottom:345.502539px;}
.yac_c00012{bottom:346.299177px;}
.yab_c00012{bottom:347.840367px;}
.yaa_c00012{bottom:348.286629px;}
.ya9_c00012{bottom:348.493449px;}
.ya8_c00012{bottom:348.720933px;}
.ya7_c00012{bottom:349.045476px;}
.ya6_c00012{bottom:349.606680px;}
.ya5_c00012{bottom:350.871660px;}
.ya4_c00012{bottom:351.520314px;}
.ya3_c00012{bottom:370.612770px;}
.ya2_c00012{bottom:371.754297px;}
.ya1_c00012{bottom:372.473436px;}
.ya0_c00012{bottom:373.461054px;}
.y9f_c00012{bottom:374.215455px;}
.y9e_c00012{bottom:374.646357px;}
.y9d_c00012{bottom:375.023226px;}
.y9c_c00012{bottom:376.094121px;}
.y9b_c00012{bottom:396.153846px;}
.y9a_c00012{bottom:397.252002px;}
.y99_c00012{bottom:398.010972px;}
.y98_c00012{bottom:400.272534px;}
.y97_c00012{bottom:401.366316px;}
.y96_c00012{bottom:401.953695px;}
.y95_c00012{bottom:403.371180px;}
.y94_c00012{bottom:422.835597px;}
.y93_c00012{bottom:423.094245px;}
.y92_c00012{bottom:424.391889px;}
.y91_c00012{bottom:425.765388px;}
.y90_c00012{bottom:426.646734px;}
.y8f_c00012{bottom:427.583001px;}
.y8e_c00012{bottom:428.980728px;}
.y8d_c00012{bottom:429.563406px;}
.y8c_c00012{bottom:448.697715px;}
.y8b_c00012{bottom:449.163060px;}
.y8a_c00012{bottom:451.004298px;}
.y89_c00012{bottom:451.761333px;}
.y88_c00012{bottom:452.971794px;}
.y87_c00012{bottom:454.915761px;}
.y86_c00012{bottom:455.760771px;}
.y85_c00012{bottom:474.207561px;}
.y84_c00012{bottom:475.306272px;}
.y83_c00012{bottom:475.896816px;}
.y82_c00012{bottom:478.207827px;}
.y81_c00012{bottom:478.956483px;}
.y80_c00012{bottom:480.394800px;}
.y7f_c00012{bottom:481.094532px;}
.y7e_c00012{bottom:481.410000px;}
.y7d_c00012{bottom:501.067752px;}
.y7c_c00012{bottom:503.479692px;}
.y7b_c00012{bottom:505.814940px;}
.y7a_c00012{bottom:507.598356px;}
.y79_c00012{bottom:526.319484px;}
.y78_c00012{bottom:527.604960px;}
.y77_c00012{bottom:528.455568px;}
.y76_c00012{bottom:529.659348px;}
.y75_c00012{bottom:530.197836px;}
.y74_c00012{bottom:531.623808px;}
.y73_c00012{bottom:532.490400px;}
.y72_c00012{bottom:532.981560px;}
.y71_c00012{bottom:552.068940px;}
.y70_c00012{bottom:553.738776px;}
.y6f_c00012{bottom:554.175132px;}
.y6e_c00012{bottom:554.874888px;}
.y6d_c00012{bottom:556.161144px;}
.y6c_c00012{bottom:558.208176px;}
.y6b_c00012{bottom:558.488220px;}
.y6a_c00012{bottom:559.442304px;}
.y69_c00012{bottom:578.186196px;}
.y68_c00012{bottom:578.858988px;}
.y67_c00012{bottom:579.793572px;}
.y66_c00012{bottom:580.389516px;}
.y65_c00012{bottom:580.795188px;}
.y64_c00012{bottom:582.368364px;}
.y63_c00012{bottom:582.800388px;}
.y62_c00012{bottom:583.529196px;}
.y61_c00012{bottom:584.437740px;}
.y60_c00012{bottom:585.094500px;}
.y5f_c00012{bottom:604.641054px;}
.y5e_c00012{bottom:606.784232px;}
.y5d_c00012{bottom:608.015996px;}
.y5c_c00012{bottom:608.367852px;}
.y5b_c00012{bottom:609.661833px;}
.y5a_c00012{bottom:610.223306px;}
.y59_c00012{bottom:611.273784px;}
.y58_c00012{bottom:630.524815px;}
.y57_c00012{bottom:632.117151px;}
.y56_c00012{bottom:632.682102px;}
.y55_c00012{bottom:634.027115px;}
.y54_c00012{bottom:635.969480px;}
.y53_c00012{bottom:637.199570px;}
.y52_c00012{bottom:647.029418px;}
.y51_c00012{bottom:647.991416px;}
.y50_c00012{bottom:649.224170px;}
.y4f_c00012{bottom:649.997728px;}
.y4e_c00012{bottom:651.633443px;}
.y4d_c00012{bottom:652.929366px;}
.y4c_c00012{bottom:655.686606px;}
.y4b_c00012{bottom:656.923500px;}
.y4a_c00012{bottom:682.211700px;}
.y49_c00012{bottom:683.065117px;}
.y48_c00012{bottom:684.566963px;}
.y47_c00012{bottom:685.078627px;}
.y46_c00012{bottom:686.480835px;}
.y45_c00012{bottom:688.073550px;}
.y44_c00012{bottom:689.069760px;}
.y43_c00012{bottom:689.557973px;}
.y42_c00012{bottom:708.945210px;}
.y41_c00012{bottom:709.485187px;}
.y40_c00012{bottom:711.214290px;}
.y3f_c00012{bottom:711.846135px;}
.y3e_c00012{bottom:713.215620px;}
.y3d_c00012{bottom:713.963317px;}
.y3c_c00012{bottom:714.406050px;}
.y3b_c00012{bottom:734.016143px;}
.y3a_c00012{bottom:734.510378px;}
.y39_c00012{bottom:735.253147px;}
.y38_c00012{bottom:735.936000px;}
.y37_c00012{bottom:736.472062px;}
.y36_c00012{bottom:736.816582px;}
.y35_c00012{bottom:738.513645px;}
.y34_c00012{bottom:738.961575px;}
.y33_c00012{bottom:739.396522px;}
.y32_c00012{bottom:740.599777px;}
.y31_c00012{bottom:759.279660px;}
.y30_c00012{bottom:759.773715px;}
.y2f_c00012{bottom:760.244047px;}
.y2e_c00012{bottom:761.799930px;}
.y2d_c00012{bottom:762.348855px;}
.y2c_c00012{bottom:762.850537px;}
.y2b_c00012{bottom:763.076977px;}
.y2a_c00012{bottom:764.686650px;}
.y29_c00012{bottom:765.204225px;}
.y28_c00012{bottom:765.684427px;}
.y27_c00012{bottom:766.795095px;}
.y26_c00012{bottom:787.002660px;}
.y25_c00012{bottom:787.346820px;}
.y24_c00012{bottom:787.723425px;}
.y23_c00012{bottom:788.776672px;}
.y22_c00012{bottom:789.252885px;}
.y21_c00012{bottom:791.089155px;}
.y20_c00012{bottom:791.486550px;}
.y1f_c00012{bottom:791.694023px;}
.y1e_c00012{bottom:793.256377px;}
.y1d_c00012{bottom:811.899997px;}
.y1c_c00012{bottom:812.110620px;}
.y1b_c00012{bottom:813.133980px;}
.y1a_c00012{bottom:813.784455px;}
.y19_c00012{bottom:815.250615px;}
.y18_c00012{bottom:815.758260px;}
.y17_c00012{bottom:817.012358px;}
.y16_c00012{bottom:817.498590px;}
.y15_c00012{bottom:818.909235px;}
.y14_c00012{bottom:838.494345px;}
.y13_c00012{bottom:839.763727px;}
.y12_c00012{bottom:840.280620px;}
.y11_c00012{bottom:841.375583px;}
.y10_c00012{bottom:841.616985px;}
.yf_c00012{bottom:843.262972px;}
.ye_c00012{bottom:843.818182px;}
.yd_c00012{bottom:844.377015px;}
.yc_c00012{bottom:845.102370px;}
.yb_c00012{bottom:863.788905px;}
.ya_c00012{bottom:864.271282px;}
.y9_c00012{bottom:865.883362px;}
.y8_c00012{bottom:866.255805px;}
.y7_c00012{bottom:867.304823px;}
.y6_c00012{bottom:868.941202px;}
.y5_c00012{bottom:870.047032px;}
.y4_c00012{bottom:870.484500px;}
.yd8_c00012{bottom:916.885500px;}
.y3_c00012{bottom:917.896500px;}
.y2_c00012{bottom:947.430000px;}
.y1_c00012{bottom:958.702500px;}
.h3_c00012{height:52.500000px;}
.hc_c00012{height:85.072493px;}
.hf_c00012{height:87.161154px;}
.h7_c00012{height:89.260040px;}
.hd_c00012{height:89.273604px;}
.h11_c00012{height:93.461961px;}
.h14_c00012{height:96.615648px;}
.he_c00012{height:97.662498px;}
.h17_c00012{height:98.711103px;}
.h13_c00012{height:98.715988px;}
.ha_c00012{height:102.911576px;}
.h16_c00012{height:102.916668px;}
.h6_c00012{height:103.961694px;}
.h5_c00012{height:105.011812px;}
.h15_c00012{height:105.017009px;}
.h9_c00012{height:106.061930px;}
.h18_c00012{height:107.110495px;}
.h8_c00012{height:108.162166px;}
.h10_c00012{height:108.163842px;}
.h12_c00012{height:109.217689px;}
.h4_c00012{height:131.250000px;}
.h2_c00012{height:154.350000px;}
.hb_c00012{height:162.793042px;}
.h19_c00012{height:218.400000px;}
.h1_c00012{height:1080.000000px;}
.h0_c00012{height:1080.270000px;}
.w1_c00012{width:768.000000px;}
.w0_c00012{width:768.150000px;}
.x0_c00012{left:0.000000px;}
.x47_c00012{left:55.821000px;}
.x1_c00012{left:58.590000px;}
.xa_c00012{left:59.940000px;}
.x91_c00012{left:65.296500px;}
.x7_c00012{left:80.190000px;}
.x41_c00012{left:81.655425px;}
.x23_c00012{left:99.087473px;}
.x7a_c00012{left:106.902000px;}
.x6e_c00012{left:108.288099px;}
.xd_c00012{left:109.606500px;}
.x13_c00012{left:112.568520px;}
.x67_c00012{left:117.441000px;}
.x7b_c00012{left:127.149000px;}
.x68_c00012{left:134.967000px;}
.xe_c00012{left:138.771000px;}
.x3b_c00012{left:141.311843px;}
.x62_c00012{left:142.367436px;}
.x6f_c00012{left:147.161205px;}
.x55_c00012{left:150.648000px;}
.x78_c00012{left:151.733178px;}
.xb_c00012{left:156.060000px;}
.x6b_c00012{left:158.463045px;}
.x14_c00012{left:160.925520px;}
.x2_c00012{left:162.000000px;}
.x5e_c00012{left:165.206640px;}
.x42_c00012{left:169.014315px;}
.x69_c00012{left:173.841000px;}
.x50_c00012{left:175.232099px;}
.x2b_c00012{left:177.621653px;}
.x4c_c00012{left:181.689362px;}
.x86_c00012{left:184.964460px;}
.x8d_c00012{left:188.470500px;}
.x3c_c00012{left:191.158343px;}
.x34_c00012{left:192.257715px;}
.x15_c00012{left:198.181020px;}
.x63_c00012{left:200.092848px;}
.x1c_c00012{left:201.526567px;}
.x24_c00012{left:203.244473px;}
.x2c_c00012{left:205.834298px;}
.x56_c00012{left:207.432000px;}
.x51_c00012{left:210.345257px;}
.x3_c00012{left:212.760000px;}
.x65_c00012{left:214.206624px;}
.x25_c00012{left:217.075973px;}
.x76_c00012{left:219.366390px;}
.x35_c00012{left:221.254215px;}
.x81_c00012{left:224.638395px;}
.xc_c00012{left:228.960000px;}
.x8e_c00012{left:230.041500px;}
.x1d_c00012{left:231.941618px;}
.x73_c00012{left:234.076458px;}
.x16_c00012{left:235.195020px;}
.x2d_c00012{left:236.238375px;}
.x70_c00012{left:240.317727px;}
.x8_c00012{left:241.650000px;}
.x26_c00012{left:243.568973px;}
.x36_c00012{left:251.116215px;}
.x57_c00012{left:252.982500px;}
.x87_c00012{left:260.108460px;}
.x43_c00012{left:262.692503px;}
.x4_c00012{left:266.760000px;}
.x6c_c00012{left:272.796597px;}
.x58_c00012{left:279.984000px;}
.x3d_c00012{left:282.457343px;}
.x48_c00012{left:285.823500px;}
.x7c_c00012{left:288.619500px;}
.x52_c00012{left:291.205263px;}
.x88_c00012{left:294.608460px;}
.x4d_c00012{left:295.960128px;}
.x5f_c00012{left:302.115456px;}
.x82_c00012{left:304.763895px;}
.x1e_c00012{left:310.346947px;}
.x53_c00012{left:313.224316px;}
.x8f_c00012{left:316.734000px;}
.x83_c00012{left:319.421895px;}
.xf_c00012{left:321.585000px;}
.x3e_c00012{left:324.580343px;}
.x2e_c00012{left:330.947040px;}
.x92_c00012{left:337.807500px;}
.x1f_c00012{left:342.089475px;}
.x17_c00012{left:344.927520px;}
.x66_c00012{left:351.532416px;}
.x79_c00012{left:353.732559px;}
.x49_c00012{left:356.941500px;}
.x90_c00012{left:358.023000px;}
.x18_c00012{left:361.021020px;}
.x37_c00012{left:364.253715px;}
.x27_c00012{left:365.986973px;}
.x2f_c00012{left:373.787258px;}
.x44_c00012{left:375.280628px;}
.x59_c00012{left:378.307500px;}
.x7d_c00012{left:383.673000px;}
.x38_c00012{left:387.221715px;}
.x6d_c00012{left:388.520676px;}
.x54_c00012{left:390.204702px;}
.x5_c00012{left:391.500000px;}
.x89_c00012{left:392.865960px;}
.x28_c00012{left:397.734473px;}
.x5a_c00012{left:403.662000px;}
.x30_c00012{left:406.081290px;}
.x4e_c00012{left:408.300119px;}
.x64_c00012{left:411.236208px;}
.x7e_c00012{left:412.584000px;}
.x10_c00012{left:416.349000px;}
.x60_c00012{left:419.020608px;}
.x39_c00012{left:422.959215px;}
.x8a_c00012{left:426.636960px;}
.x93_c00012{left:428.664000px;}
.x19_c00012{left:434.018520px;}
.x84_c00012{left:436.076895px;}
.x3f_c00012{left:439.853843px;}
.x5b_c00012{left:440.908500px;}
.x94_c00012{left:442.014000px;}
.x4a_c00012{left:444.172500px;}
.x71_c00012{left:453.113229px;}
.x6a_c00012{left:456.537000px;}
.x45_c00012{left:463.600973px;}
.x1a_c00012{left:468.478020px;}
.x20_c00012{left:474.396495px;}
.x40_c00012{left:475.852343px;}
.x4b_c00012{left:485.998500px;}
.x95_c00012{left:487.914000px;}
.x74_c00012{left:491.158692px;}
.x29_c00012{left:493.057973px;}
.x7f_c00012{left:495.742500px;}
.x31_c00012{left:497.604045px;}
.x5c_c00012{left:499.320000px;}
.x4f_c00012{left:502.001556px;}
.x6_c00012{left:509.760000px;}
.x8b_c00012{left:511.500960px;}
.x46_c00012{left:513.793965px;}
.x2a_c00012{left:516.001973px;}
.x3a_c00012{left:518.000715px;}
.x11_c00012{left:523.821000px;}
.x32_c00012{left:525.258713px;}
.x85_c00012{left:528.224895px;}
.x77_c00012{left:529.565781px;}
.x80_c00012{left:534.087000px;}
.x21_c00012{left:538.319528px;}
.x72_c00012{left:539.625900px;}
.x5d_c00012{left:541.369500px;}
.x61_c00012{left:542.968140px;}
.x8c_c00012{left:547.415460px;}
.x22_c00012{left:551.460825px;}
.x1b_c00012{left:553.103520px;}
.x33_c00012{left:554.294835px;}
.x12_c00012{left:555.979500px;}
.x75_c00012{left:559.753149px;}
.x96_c00012{left:614.790000px;}
.x9_c00012{left:621.540000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._0_c00012{width:8134.049363pt;}
.fs1_c00012{font-size:46.666667pt;}
.fsa_c00012{font-size:75.619994pt;}
.fsd_c00012{font-size:77.476582pt;}
.fs5_c00012{font-size:79.342258pt;}
.fsb_c00012{font-size:79.354314pt;}
.fsf_c00012{font-size:83.077299pt;}
.fs12_c00012{font-size:85.880576pt;}
.fsc_c00012{font-size:86.811110pt;}
.fs15_c00012{font-size:87.743203pt;}
.fs11_c00012{font-size:87.747545pt;}
.fs8_c00012{font-size:91.476956pt;}
.fs14_c00012{font-size:91.481483pt;}
.fs4_c00012{font-size:92.410394pt;}
.fs3_c00012{font-size:93.343833pt;}
.fs13_c00012{font-size:93.348452pt;}
.fs7_c00012{font-size:94.277271pt;}
.fs16_c00012{font-size:95.209329pt;}
.fs6_c00012{font-size:96.144148pt;}
.fse_c00012{font-size:96.145638pt;}
.fs10_c00012{font-size:97.082390pt;}
.fs2_c00012{font-size:116.666667pt;}
.fs0_c00012{font-size:137.200000pt;}
.fs9_c00012{font-size:144.704926pt;}
.fs17_c00012{font-size:194.133333pt;}
.y0_c00012{bottom:0.000000pt;}
.yd7_c00012{bottom:192.032760pt;}
.yd6_c00012{bottom:192.603960pt;}
.yd5_c00012{bottom:192.770093pt;}
.yd4_c00012{bottom:193.900752pt;}
.yd3_c00012{bottom:194.845099pt;}
.yd2_c00012{bottom:195.233683pt;}
.yd1_c00012{bottom:195.994237pt;}
.yd0_c00012{bottom:196.782811pt;}
.ycf_c00012{bottom:197.292000pt;}
.yc5_c00012{bottom:214.674947pt;}
.yc4_c00012{bottom:215.153807pt;}
.yc3_c00012{bottom:216.285327pt;}
.yc2_c00012{bottom:216.735607pt;}
.yc1_c00012{bottom:218.045707pt;}
.yc0_c00012{bottom:218.505707pt;}
.ybf_c00012{bottom:219.507627pt;}
.ybe_c00012{bottom:220.559147pt;}
.ybd_c00012{bottom:237.984007pt;}
.ybc_c00012{bottom:239.212647pt;}
.ybb_c00012{bottom:239.979527pt;}
.yba_c00012{bottom:240.768047pt;}
.yb9_c00012{bottom:240.963487pt;}
.yb8_c00012{bottom:242.031827pt;}
.yb7_c00012{bottom:242.596967pt;}
.yb6_c00012{bottom:243.601367pt;}
.yb5_c00012{bottom:260.228200pt;}
.yb4_c00012{bottom:260.739460pt;}
.yb3_c00012{bottom:261.848240pt;}
.yb2_c00012{bottom:262.233720pt;}
.yb1_c00012{bottom:263.501100pt;}
.yb0_c00012{bottom:265.279680pt;}
.yaf_c00012{bottom:265.654040pt;}
.yae_c00012{bottom:265.924000pt;}
.yce_c00012{bottom:283.842120pt;}
.ycd_c00012{bottom:285.080760pt;}
.ycc_c00012{bottom:285.576160pt;}
.ycb_c00012{bottom:286.099820pt;}
.yca_c00012{bottom:286.650340pt;}
.yc9_c00012{bottom:287.806240pt;}
.yc8_c00012{bottom:288.360520pt;}
.yc7_c00012{bottom:288.990720pt;}
.yc6_c00012{bottom:289.444000pt;}
.yad_c00012{bottom:307.113368pt;}
.yac_c00012{bottom:307.821491pt;}
.yab_c00012{bottom:309.191437pt;}
.yaa_c00012{bottom:309.588115pt;}
.ya9_c00012{bottom:309.771955pt;}
.ya8_c00012{bottom:309.974163pt;}
.ya7_c00012{bottom:310.262645pt;}
.ya6_c00012{bottom:310.761493pt;}
.ya5_c00012{bottom:311.885920pt;}
.ya4_c00012{bottom:312.462501pt;}
.ya3_c00012{bottom:329.433573pt;}
.ya2_c00012{bottom:330.448264pt;}
.ya1_c00012{bottom:331.087499pt;}
.ya0_c00012{bottom:331.965381pt;}
.y9f_c00012{bottom:332.635960pt;}
.y9e_c00012{bottom:333.018984pt;}
.y9d_c00012{bottom:333.353979pt;}
.y9c_c00012{bottom:334.305885pt;}
.y9b_c00012{bottom:352.136752pt;}
.y9a_c00012{bottom:353.112891pt;}
.y99_c00012{bottom:353.787531pt;}
.y98_c00012{bottom:355.797808pt;}
.y97_c00012{bottom:356.770059pt;}
.y96_c00012{bottom:357.292173pt;}
.y95_c00012{bottom:358.552160pt;}
.y94_c00012{bottom:375.853864pt;}
.y93_c00012{bottom:376.083773pt;}
.y92_c00012{bottom:377.237235pt;}
.y91_c00012{bottom:378.458123pt;}
.y90_c00012{bottom:379.241541pt;}
.y8f_c00012{bottom:380.073779pt;}
.y8e_c00012{bottom:381.316203pt;}
.y8d_c00012{bottom:381.834139pt;}
.y8c_c00012{bottom:398.842413pt;}
.y8b_c00012{bottom:399.256053pt;}
.y8a_c00012{bottom:400.892709pt;}
.y89_c00012{bottom:401.565629pt;}
.y88_c00012{bottom:402.641595pt;}
.y87_c00012{bottom:404.369565pt;}
.y86_c00012{bottom:405.120685pt;}
.y85_c00012{bottom:421.517832pt;}
.y84_c00012{bottom:422.494464pt;}
.y83_c00012{bottom:423.019392pt;}
.y82_c00012{bottom:425.073624pt;}
.y81_c00012{bottom:425.739096pt;}
.y80_c00012{bottom:427.017600pt;}
.y7f_c00012{bottom:427.639584pt;}
.y7e_c00012{bottom:427.920000pt;}
.y7d_c00012{bottom:445.393557pt;}
.y7c_c00012{bottom:447.537504pt;}
.y7b_c00012{bottom:449.613280pt;}
.y7a_c00012{bottom:451.198539pt;}
.y79_c00012{bottom:467.839541pt;}
.y78_c00012{bottom:468.982187pt;}
.y77_c00012{bottom:469.738283pt;}
.y76_c00012{bottom:470.808309pt;}
.y75_c00012{bottom:471.286965pt;}
.y74_c00012{bottom:472.554496pt;}
.y73_c00012{bottom:473.324800pt;}
.y72_c00012{bottom:473.761387pt;}
.y71_c00012{bottom:490.727947pt;}
.y70_c00012{bottom:492.212245pt;}
.y6f_c00012{bottom:492.600117pt;}
.y6e_c00012{bottom:493.222123pt;}
.y6d_c00012{bottom:494.365461pt;}
.y6c_c00012{bottom:496.185045pt;}
.y6b_c00012{bottom:496.433973pt;}
.y6a_c00012{bottom:497.282048pt;}
.y69_c00012{bottom:513.943285pt;}
.y68_c00012{bottom:514.541323pt;}
.y67_c00012{bottom:515.372064pt;}
.y66_c00012{bottom:515.901792pt;}
.y65_c00012{bottom:516.262389pt;}
.y64_c00012{bottom:517.660768pt;}
.y63_c00012{bottom:518.044789pt;}
.y62_c00012{bottom:518.692619pt;}
.y61_c00012{bottom:519.500213pt;}
.y60_c00012{bottom:520.084000pt;}
.y5f_c00012{bottom:537.458715pt;}
.y5e_c00012{bottom:539.363761pt;}
.y5d_c00012{bottom:540.458663pt;}
.y5c_c00012{bottom:540.771424pt;}
.y5b_c00012{bottom:541.921629pt;}
.y5a_c00012{bottom:542.420716pt;}
.y59_c00012{bottom:543.354475pt;}
.y58_c00012{bottom:560.466503pt;}
.y57_c00012{bottom:561.881912pt;}
.y56_c00012{bottom:562.384091pt;}
.y55_c00012{bottom:563.579657pt;}
.y54_c00012{bottom:565.306204pt;}
.y53_c00012{bottom:566.399617pt;}
.y52_c00012{bottom:575.137260pt;}
.y51_c00012{bottom:575.992369pt;}
.y50_c00012{bottom:577.088151pt;}
.y4f_c00012{bottom:577.775759pt;}
.y4e_c00012{bottom:579.229727pt;}
.y4d_c00012{bottom:580.381659pt;}
.y4c_c00012{bottom:582.832539pt;}
.y4b_c00012{bottom:583.932000pt;}
.y4a_c00012{bottom:606.410400pt;}
.y49_c00012{bottom:607.168993pt;}
.y48_c00012{bottom:608.503967pt;}
.y47_c00012{bottom:608.958780pt;}
.y46_c00012{bottom:610.205187pt;}
.y45_c00012{bottom:611.620933pt;}
.y44_c00012{bottom:612.506453pt;}
.y43_c00012{bottom:612.940420pt;}
.y42_c00012{bottom:630.173520pt;}
.y41_c00012{bottom:630.653500pt;}
.y40_c00012{bottom:632.190480pt;}
.y3f_c00012{bottom:632.752120pt;}
.y3e_c00012{bottom:633.969440pt;}
.y3d_c00012{bottom:634.634060pt;}
.y3c_c00012{bottom:635.027600pt;}
.y3b_c00012{bottom:652.458793pt;}
.y3a_c00012{bottom:652.898113pt;}
.y39_c00012{bottom:653.558353pt;}
.y38_c00012{bottom:654.165333pt;}
.y37_c00012{bottom:654.641833pt;}
.y36_c00012{bottom:654.948073pt;}
.y35_c00012{bottom:656.456573pt;}
.y34_c00012{bottom:656.854733pt;}
.y33_c00012{bottom:657.241353pt;}
.y32_c00012{bottom:658.310913pt;}
.y31_c00012{bottom:674.915253pt;}
.y30_c00012{bottom:675.354413pt;}
.y2f_c00012{bottom:675.772487pt;}
.y2e_c00012{bottom:677.155493pt;}
.y2d_c00012{bottom:677.643427pt;}
.y2c_c00012{bottom:678.089367pt;}
.y2b_c00012{bottom:678.290647pt;}
.y2a_c00012{bottom:679.721467pt;}
.y29_c00012{bottom:680.181533pt;}
.y28_c00012{bottom:680.608380pt;}
.y27_c00012{bottom:681.595640pt;}
.y26_c00012{bottom:699.557920pt;}
.y25_c00012{bottom:699.863840pt;}
.y24_c00012{bottom:700.198600pt;}
.y23_c00012{bottom:701.134820pt;}
.y22_c00012{bottom:701.558120pt;}
.y21_c00012{bottom:703.190360pt;}
.y20_c00012{bottom:703.543600pt;}
.y1f_c00012{bottom:703.728020pt;}
.y1e_c00012{bottom:705.116780pt;}
.y1d_c00012{bottom:721.688887pt;}
.y1c_c00012{bottom:721.876107pt;}
.y1b_c00012{bottom:722.785760pt;}
.y1a_c00012{bottom:723.363960pt;}
.y19_c00012{bottom:724.667213pt;}
.y18_c00012{bottom:725.118453pt;}
.y17_c00012{bottom:726.233207pt;}
.y16_c00012{bottom:726.665413pt;}
.y15_c00012{bottom:727.919320pt;}
.y14_c00012{bottom:745.328307pt;}
.y13_c00012{bottom:746.456647pt;}
.y12_c00012{bottom:746.916107pt;}
.y11_c00012{bottom:747.889407pt;}
.y10_c00012{bottom:748.103987pt;}
.yf_c00012{bottom:749.567087pt;}
.ye_c00012{bottom:750.060607pt;}
.yd_c00012{bottom:750.557347pt;}
.yc_c00012{bottom:751.202107pt;}
.yb_c00012{bottom:767.812360pt;}
.ya_c00012{bottom:768.241140pt;}
.y9_c00012{bottom:769.674100pt;}
.y8_c00012{bottom:770.005160pt;}
.y7_c00012{bottom:770.937620pt;}
.y6_c00012{bottom:772.392180pt;}
.y5_c00012{bottom:773.375140pt;}
.y4_c00012{bottom:773.764000pt;}
.yd8_c00012{bottom:815.009333pt;}
.y3_c00012{bottom:815.908000pt;}
.y2_c00012{bottom:842.160000pt;}
.y1_c00012{bottom:852.180000pt;}
.h3_c00012{height:46.666667pt;}
.hc_c00012{height:75.619994pt;}
.hf_c00012{height:77.476582pt;}
.h7_c00012{height:79.342258pt;}
.hd_c00012{height:79.354314pt;}
.h11_c00012{height:83.077299pt;}
.h14_c00012{height:85.880576pt;}
.he_c00012{height:86.811110pt;}
.h17_c00012{height:87.743203pt;}
.h13_c00012{height:87.747545pt;}
.ha_c00012{height:91.476956pt;}
.h16_c00012{height:91.481483pt;}
.h6_c00012{height:92.410394pt;}
.h5_c00012{height:93.343833pt;}
.h15_c00012{height:93.348452pt;}
.h9_c00012{height:94.277271pt;}
.h18_c00012{height:95.209329pt;}
.h8_c00012{height:96.144148pt;}
.h10_c00012{height:96.145638pt;}
.h12_c00012{height:97.082390pt;}
.h4_c00012{height:116.666667pt;}
.h2_c00012{height:137.200000pt;}
.hb_c00012{height:144.704926pt;}
.h19_c00012{height:194.133333pt;}
.h1_c00012{height:960.000000pt;}
.h0_c00012{height:960.240000pt;}
.w1_c00012{width:682.666667pt;}
.w0_c00012{width:682.800000pt;}
.x0_c00012{left:0.000000pt;}
.x47_c00012{left:49.618667pt;}
.x1_c00012{left:52.080000pt;}
.xa_c00012{left:53.280000pt;}
.x91_c00012{left:58.041333pt;}
.x7_c00012{left:71.280000pt;}
.x41_c00012{left:72.582600pt;}
.x23_c00012{left:88.077753pt;}
.x7a_c00012{left:95.024000pt;}
.x6e_c00012{left:96.256088pt;}
.xd_c00012{left:97.428000pt;}
.x13_c00012{left:100.060907pt;}
.x67_c00012{left:104.392000pt;}
.x7b_c00012{left:113.021333pt;}
.x68_c00012{left:119.970667pt;}
.xe_c00012{left:123.352000pt;}
.x3b_c00012{left:125.610527pt;}
.x62_c00012{left:126.548832pt;}
.x6f_c00012{left:130.809960pt;}
.x55_c00012{left:133.909333pt;}
.x78_c00012{left:134.873936pt;}
.xb_c00012{left:138.720000pt;}
.x6b_c00012{left:140.856040pt;}
.x14_c00012{left:143.044907pt;}
.x2_c00012{left:144.000000pt;}
.x5e_c00012{left:146.850347pt;}
.x42_c00012{left:150.234947pt;}
.x69_c00012{left:154.525333pt;}
.x50_c00012{left:155.761865pt;}
.x2b_c00012{left:157.885913pt;}
.x4c_c00012{left:161.501655pt;}
.x86_c00012{left:164.412853pt;}
.x8d_c00012{left:167.529333pt;}
.x3c_c00012{left:169.918527pt;}
.x34_c00012{left:170.895747pt;}
.x15_c00012{left:176.160907pt;}
.x63_c00012{left:177.860309pt;}
.x1c_c00012{left:179.134727pt;}
.x24_c00012{left:180.661753pt;}
.x2c_c00012{left:182.963820pt;}
.x56_c00012{left:184.384000pt;}
.x51_c00012{left:186.973561pt;}
.x3_c00012{left:189.120000pt;}
.x65_c00012{left:190.405888pt;}
.x25_c00012{left:192.956420pt;}
.x76_c00012{left:194.992347pt;}
.x35_c00012{left:196.670413pt;}
.x81_c00012{left:199.678573pt;}
.xc_c00012{left:203.520000pt;}
.x8e_c00012{left:204.481333pt;}
.x1d_c00012{left:206.170327pt;}
.x73_c00012{left:208.067963pt;}
.x16_c00012{left:209.062240pt;}
.x2d_c00012{left:209.989667pt;}
.x70_c00012{left:213.615757pt;}
.x8_c00012{left:214.800000pt;}
.x26_c00012{left:216.505753pt;}
.x36_c00012{left:223.214413pt;}
.x57_c00012{left:224.873333pt;}
.x87_c00012{left:231.207520pt;}
.x43_c00012{left:233.504447pt;}
.x4_c00012{left:237.120000pt;}
.x6c_c00012{left:242.485864pt;}
.x58_c00012{left:248.874667pt;}
.x3d_c00012{left:251.073193pt;}
.x48_c00012{left:254.065333pt;}
.x7c_c00012{left:256.550667pt;}
.x52_c00012{left:258.849123pt;}
.x88_c00012{left:261.874187pt;}
.x4d_c00012{left:263.075669pt;}
.x5f_c00012{left:268.547072pt;}
.x82_c00012{left:270.901240pt;}
.x1e_c00012{left:275.863953pt;}
.x53_c00012{left:278.421615pt;}
.x8f_c00012{left:281.541333pt;}
.x83_c00012{left:283.930573pt;}
.xf_c00012{left:285.853333pt;}
.x3e_c00012{left:288.515860pt;}
.x2e_c00012{left:294.175147pt;}
.x92_c00012{left:300.273333pt;}
.x1f_c00012{left:304.079533pt;}
.x17_c00012{left:306.602240pt;}
.x66_c00012{left:312.473259pt;}
.x79_c00012{left:314.428941pt;}
.x49_c00012{left:317.281333pt;}
.x90_c00012{left:318.242667pt;}
.x18_c00012{left:320.907573pt;}
.x37_c00012{left:323.781080pt;}
.x27_c00012{left:325.321753pt;}
.x2f_c00012{left:332.255340pt;}
.x44_c00012{left:333.582780pt;}
.x59_c00012{left:336.273333pt;}
.x7d_c00012{left:341.042667pt;}
.x38_c00012{left:344.197080pt;}
.x6d_c00012{left:345.351712pt;}
.x54_c00012{left:346.848624pt;}
.x5_c00012{left:348.000000pt;}
.x89_c00012{left:349.214187pt;}
.x28_c00012{left:353.541753pt;}
.x5a_c00012{left:358.810667pt;}
.x30_c00012{left:360.961147pt;}
.x4e_c00012{left:362.933439pt;}
.x64_c00012{left:365.543296pt;}
.x7e_c00012{left:366.741333pt;}
.x10_c00012{left:370.088000pt;}
.x60_c00012{left:372.462763pt;}
.x39_c00012{left:375.963747pt;}
.x8a_c00012{left:379.232853pt;}
.x93_c00012{left:381.034667pt;}
.x19_c00012{left:385.794240pt;}
.x84_c00012{left:387.623907pt;}
.x3f_c00012{left:390.981193pt;}
.x5b_c00012{left:391.918667pt;}
.x94_c00012{left:392.901333pt;}
.x4a_c00012{left:394.820000pt;}
.x71_c00012{left:402.767315pt;}
.x6a_c00012{left:405.810667pt;}
.x45_c00012{left:412.089753pt;}
.x1a_c00012{left:416.424907pt;}
.x20_c00012{left:421.685773pt;}
.x40_c00012{left:422.979860pt;}
.x4b_c00012{left:431.998667pt;}
.x95_c00012{left:433.701333pt;}
.x74_c00012{left:436.585504pt;}
.x29_c00012{left:438.273753pt;}
.x7f_c00012{left:440.660000pt;}
.x31_c00012{left:442.314707pt;}
.x5c_c00012{left:443.840000pt;}
.x4f_c00012{left:446.223605pt;}
.x6_c00012{left:453.120000pt;}
.x8b_c00012{left:454.667520pt;}
.x46_c00012{left:456.705747pt;}
.x2a_c00012{left:458.668420pt;}
.x3a_c00012{left:460.445080pt;}
.x11_c00012{left:465.618667pt;}
.x32_c00012{left:466.896633pt;}
.x85_c00012{left:469.533240pt;}
.x77_c00012{left:470.725139pt;}
.x80_c00012{left:474.744000pt;}
.x21_c00012{left:478.506247pt;}
.x72_c00012{left:479.667467pt;}
.x5d_c00012{left:481.217333pt;}
.x61_c00012{left:482.638347pt;}
.x8c_c00012{left:486.591520pt;}
.x22_c00012{left:490.187400pt;}
.x1b_c00012{left:491.647573pt;}
.x33_c00012{left:492.706520pt;}
.x12_c00012{left:494.204000pt;}
.x75_c00012{left:497.558355pt;}
.x96_c00012{left:546.480000pt;}
.x9_c00012{left:552.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mae_c00013{transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.074765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00013{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);}
.m64_c00013{transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.096285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096285,0.000000,0.000000,0.250000,0,0);}
.md5_c00013{transform:matrix(0.102365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102365,0.000000,0.000000,0.250000,0,0);}
.m8c_c00013{transform:matrix(0.112585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112585,0.000000,0.000000,0.250000,0,0);}
.m6a_c00013{transform:matrix(0.113555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113555,0.000000,0.000000,0.250000,0,0);}
.mad_c00013{transform:matrix(0.116680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{transform:matrix(0.119495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119495,0.000000,0.000000,0.250000,0,0);}
.mb_c00013{transform:matrix(0.121230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121230,0.000000,0.000000,0.250000,0,0);}
.m65_c00013{transform:matrix(0.132610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132610,0.000000,0.000000,0.250000,0,0);}
.m60_c00013{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00013{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);}
.mac_c00013{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);}
.m1d_c00013{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);}
.m3a_c00013{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);}
.mc9_c00013{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);}
.m24_c00013{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);}
.mbf_c00013{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);}
.mc7_c00013{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);}
.ma6_c00013{transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{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);}
.m97_c00013{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.mc1_c00013{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);}
.m39_c00013{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);}
.m8_c00013{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);}
.m40_c00013{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);}
.mbd_c00013{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);}
.m98_c00013{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);}
.m3c_c00013{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);}
.m5c_c00013{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);}
.m58_c00013{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);}
.m22_c00013{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);}
.m2f_c00013{transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{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);}
.mb2_c00013{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);}
.m27_c00013{transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{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);}
.m3b_c00013{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00013{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);}
.m31_c00013{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);}
.m2b_c00013{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);}
.md2_c00013{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);}
.mbe_c00013{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);}
.m37_c00013{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);}
.m73_c00013{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);}
.md9_c00013{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);}
.mcb_c00013{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);}
.mc4_c00013{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);}
.mc3_c00013{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);}
.m3f_c00013{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);}
.m34_c00013{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);}
.mc6_c00013{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);}
.m5_c00013{transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);}
.m95_c00013{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);}
.m42_c00013{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);}
.m54_c00013{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);}
.m4a_c00013{transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);}
.m61_c00013{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);}
.m5f_c00013{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);}
.m45_c00013{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);}
.m7d_c00013{transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);}
.ma1_c00013{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);}
.ma2_c00013{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);}
.mb3_c00013{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);}
.m6c_c00013{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);}
.m89_c00013{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);}
.m9d_c00013{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);}
.mb6_c00013{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);}
.m26_c00013{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);}
.m17_c00013{transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{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);}
.m52_c00013{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);}
.m1b_c00013{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);}
.mc_c00013{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);}
.mda_c00013{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);}
.mf_c00013{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);}
.m35_c00013{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);}
.m12_c00013{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);}
.m21_c00013{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);}
.ma5_c00013{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);}
.m8d_c00013{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);}
.m3e_c00013{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);}
.m7_c00013{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);}
.mc5_c00013{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);}
.mab_c00013{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);}
.m1f_c00013{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);}
.mb4_c00013{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);}
.ma7_c00013{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);}
.m4f_c00013{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);}
.m25_c00013{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);}
.m56_c00013{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);}
.m6f_c00013{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);}
.m57_c00013{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);}
.m84_c00013{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);}
.m63_c00013{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);}
.md4_c00013{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_c00013{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);}
.m19_c00013{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_c00013{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);}
.m32_c00013{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);}
.mcd_c00013{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);}
.m43_c00013{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);}
.m10_c00013{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);}
.m13_c00013{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);}
.m44_c00013{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);}
.m23_c00013{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);}
.m4b_c00013{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);}
.m2d_c00013{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);}
.mcf_c00013{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);}
.m4e_c00013{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);}
.md1_c00013{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);}
.m88_c00013{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);}
.m30_c00013{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);}
.m28_c00013{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);}
.mdb_c00013{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);}
.mde_c00013{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);}
.m59_c00013{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);}
.mbc_c00013{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);}
.mc8_c00013{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);}
.mbb_c00013{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);}
.m1c_c00013{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);}
.ma8_c00013{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);}
.m49_c00013{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);}
.mc2_c00013{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);}
.m1a_c00013{transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);}
.m76_c00013{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);}
.mb1_c00013{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);}
.m1_c00013{transform:matrix(0.201160,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201160,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201160,-0.001408,0.001750,0.249994,0,0);}
.m16_c00013{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);}
.m9b_c00013{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);}
.me_c00013{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);}
.m53_c00013{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);}
.m14_c00013{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);}
.m99_c00013{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);}
.m18_c00013{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);}
.m85_c00013{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);}
.m75_c00013{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);}
.m67_c00013{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);}
.md6_c00013{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);}
.m7a_c00013{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);}
.m9_c00013{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);}
.m51_c00013{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);}
.m7f_c00013{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);}
.m93_c00013{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);}
.m72_c00013{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);}
.mba_c00013{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);}
.m74_c00013{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);}
.m92_c00013{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);}
.md0_c00013{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);}
.ma9_c00013{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);}
.mce_c00013{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);}
.m94_c00013{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);}
.m77_c00013{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);}
.md8_c00013{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);}
.m38_c00013{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);}
.m9c_c00013{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);}
.m2a_c00013{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);}
.m7c_c00013{transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);}
.ma3_c00013{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);}
.m47_c00013{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);}
.m55_c00013{transform:matrix(0.216820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216820,0.000000,0.000000,0.250000,0,0);}
.m6e_c00013{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);}
.m7e_c00013{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);}
.m8a_c00013{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);}
.m6d_c00013{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);}
.md7_c00013{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);}
.m4_c00013{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);}
.m0_c00013{transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);-ms-transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);}
.m68_c00013{transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);}
.m79_c00013{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);}
.m5e_c00013{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);}
.m9f_c00013{transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);}
.mb5_c00013{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);}
.m62_c00013{transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);}
.m9e_c00013{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);}
.m8b_c00013{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m7b_c00013{transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);}
.m87_c00013{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);}
.m6b_c00013{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);}
.m8f_c00013{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);}
.m5b_c00013{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.236809,-0.001658,0.001750,0.249994,0,0);-ms-transform:matrix(0.236809,-0.001658,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236809,-0.001658,0.001750,0.249994,0,0);}
.m83_c00013{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);}
.m71_c00013{transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);}
.mb8_c00013{transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{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);}
.m82_c00013{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m81_c00013{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);}
.m4d_c00013{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);}
.ma4_c00013{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);}
.md3_c00013{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);-ms-transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);}
.m90_c00013{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);}
.m86_c00013{transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262680,0.000000,0.000000,0.250000,0,0);}
.mdf_c00013{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);}
.mca_c00013{transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);}
.mc0_c00013{transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294295,0.000000,0.000000,0.250000,0,0);}
.m91_c00013{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);}
.m8e_c00013{transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);}
.mdd_c00013{transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);}
.maf_c00013{transform:matrix(0.315990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315990,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);}
.m70_c00013{transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324700,0.000000,0.000000,0.250000,0,0);}
.maa_c00013{transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324900,0.000000,0.000000,0.250000,0,0);}
.m46_c00013{transform:matrix(0.325475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325475,0.000000,0.000000,0.250000,0,0);}
.m69_c00013{transform:matrix(0.326525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326525,0.000000,0.000000,0.250000,0,0);}
.ma0_c00013{transform:matrix(0.333985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333985,0.000000,0.000000,0.250000,0,0);}
.me1_c00013{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);}
.m96_c00013{transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.366950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366950,0.000000,0.000000,0.250000,0,0);}
.m5d_c00013{transform:matrix(0.399995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399995,0.000000,0.000000,0.250000,0,0);}
.m78_c00013{transform:matrix(0.450735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450735,0.000000,0.000000,0.250000,0,0);}
.m66_c00013{transform:matrix(0.464795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464795,0.000000,0.000000,0.250000,0,0);}
.m5a_c00013{transform:matrix(0.492200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492200,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.500680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500680,0.000000,0.000000,0.250000,0,0);}
.me0_c00013{transform:matrix(0.502815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502815,0.000000,0.000000,0.250000,0,0);}
.mcc_c00013{transform:matrix(0.513290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513290,0.000000,0.000000,0.250000,0,0);}
.mdc_c00013{transform:matrix(0.537565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537565,0.000000,0.000000,0.250000,0,0);}
.mb9_c00013{transform:matrix(0.596330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596330,0.000000,0.000000,0.250000,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:89.250000px;}
.fsf_c00013{font-size:91.350000px;}
.fs10_c00013{font-size:92.400000px;}
.fsa_c00013{font-size:95.550000px;}
.fsb_c00013{font-size:98.700000px;}
.fs4_c00013{font-size:99.750000px;}
.fs9_c00013{font-size:100.800000px;}
.fs8_c00013{font-size:101.850000px;}
.fs6_c00013{font-size:102.900000px;}
.fs3_c00013{font-size:103.950000px;}
.fse_c00013{font-size:105.000000px;}
.fs5_c00013{font-size:106.050000px;}
.fs7_c00013{font-size:107.100000px;}
.fs2_c00013{font-size:108.150000px;}
.fsc_c00013{font-size:115.500000px;}
.fs0_c00013{font-size:122.853010px;}
.fs1_c00013{font-size:226.850004px;}
.y0_c00013{bottom:0.000000px;}
.y6c_c00013{bottom:231.934500px;}
.y6b_c00013{bottom:255.787500px;}
.y6a_c00013{bottom:256.761000px;}
.y69_c00013{bottom:257.026500px;}
.y68_c00013{bottom:257.487000px;}
.y67_c00013{bottom:258.097500px;}
.y66_c00013{bottom:258.849000px;}
.y65_c00013{bottom:258.996000px;}
.y64_c00013{bottom:259.746000px;}
.y63_c00013{bottom:281.757000px;}
.y62_c00013{bottom:282.277500px;}
.y61_c00013{bottom:282.532500px;}
.y60_c00013{bottom:283.177500px;}
.y5f_c00013{bottom:283.477500px;}
.y5e_c00013{bottom:283.981500px;}
.y5d_c00013{bottom:284.344500px;}
.y5c_c00013{bottom:284.752500px;}
.y5b_c00013{bottom:285.394500px;}
.y5a_c00013{bottom:308.068500px;}
.y59_c00013{bottom:308.445000px;}
.y58_c00013{bottom:308.571000px;}
.y57_c00013{bottom:308.700000px;}
.y56_c00013{bottom:309.180000px;}
.y55_c00013{bottom:309.379500px;}
.y54_c00013{bottom:309.678000px;}
.y53_c00013{bottom:309.988500px;}
.y52_c00013{bottom:310.351500px;}
.y51_c00013{bottom:310.524000px;}
.y50_c00013{bottom:310.726500px;}
.y4f_c00013{bottom:311.044500px;}
.y4e_c00013{bottom:335.904000px;}
.y4d_c00013{bottom:360.408000px;}
.y4c_c00013{bottom:360.750000px;}
.y4b_c00013{bottom:361.384500px;}
.y4a_c00013{bottom:361.569000px;}
.y49_c00013{bottom:361.776000px;}
.y48_c00013{bottom:362.332500px;}
.y47_c00013{bottom:362.503500px;}
.y46_c00013{bottom:362.847000px;}
.y45_c00013{bottom:363.274500px;}
.y44_c00013{bottom:363.427500px;}
.y43_c00013{bottom:389.871000px;}
.y42_c00013{bottom:414.456000px;}
.y41_c00013{bottom:440.916000px;}
.y40_c00013{bottom:466.830000px;}
.y3f_c00013{bottom:492.744000px;}
.y3e_c00013{bottom:518.167500px;}
.y3d_c00013{bottom:545.115000px;}
.y3c_c00013{bottom:571.296000px;}
.y3b_c00013{bottom:596.916000px;}
.y3a_c00013{bottom:623.269500px;}
.y39_c00013{bottom:649.320000px;}
.y38_c00013{bottom:675.247500px;}
.y37_c00013{bottom:701.164500px;}
.y2d_c00013{bottom:726.571500px;}
.y2e_c00013{bottom:726.880500px;}
.y2f_c00013{bottom:727.311000px;}
.y30_c00013{bottom:727.648500px;}
.y31_c00013{bottom:727.878000px;}
.y32_c00013{bottom:728.416500px;}
.y33_c00013{bottom:728.638500px;}
.y34_c00013{bottom:728.835000px;}
.y35_c00013{bottom:729.285000px;}
.y36_c00013{bottom:729.597000px;}
.y23_c00013{bottom:752.221500px;}
.y24_c00013{bottom:752.536500px;}
.y25_c00013{bottom:753.063000px;}
.y26_c00013{bottom:753.241500px;}
.y27_c00013{bottom:753.882000px;}
.y28_c00013{bottom:753.997500px;}
.y29_c00013{bottom:754.155000px;}
.y2a_c00013{bottom:754.683000px;}
.y2b_c00013{bottom:755.008500px;}
.y2c_c00013{bottom:755.311500px;}
.y18_c00013{bottom:777.871500px;}
.y19_c00013{bottom:778.357500px;}
.y1a_c00013{bottom:778.555500px;}
.y1b_c00013{bottom:778.878000px;}
.y1c_c00013{bottom:779.074500px;}
.y1d_c00013{bottom:779.610000px;}
.y1e_c00013{bottom:780.046500px;}
.y1f_c00013{bottom:780.334500px;}
.y20_c00013{bottom:780.735000px;}
.y21_c00013{bottom:781.300500px;}
.y22_c00013{bottom:782.019000px;}
.yf_c00013{bottom:804.061500px;}
.y10_c00013{bottom:804.303000px;}
.y11_c00013{bottom:805.050000px;}
.y12_c00013{bottom:805.831500px;}
.y13_c00013{bottom:805.959000px;}
.y14_c00013{bottom:806.724000px;}
.y15_c00013{bottom:807.222000px;}
.y16_c00013{bottom:807.553500px;}
.y17_c00013{bottom:808.083000px;}
.y7_c00013{bottom:830.251500px;}
.y8_c00013{bottom:830.499000px;}
.y9_c00013{bottom:831.286500px;}
.ya_c00013{bottom:832.272000px;}
.yb_c00013{bottom:832.420500px;}
.yc_c00013{bottom:832.660500px;}
.yd_c00013{bottom:833.103000px;}
.ye_c00013{bottom:833.766000px;}
.y6_c00013{bottom:857.488500px;}
.y1_c00013{bottom:911.521500px;}
.y2_c00013{bottom:912.927587px;}
.y3_c00013{bottom:913.233830px;}
.y4_c00013{bottom:914.922020px;}
.y5_c00013{bottom:953.113500px;}
.hf_c00013{height:89.250000px;}
.h11_c00013{height:91.350000px;}
.h12_c00013{height:92.400000px;}
.hc_c00013{height:95.550000px;}
.hd_c00013{height:98.700000px;}
.h6_c00013{height:99.750000px;}
.hb_c00013{height:100.800000px;}
.ha_c00013{height:101.850000px;}
.h8_c00013{height:102.900000px;}
.h5_c00013{height:103.950000px;}
.h10_c00013{height:105.000000px;}
.h7_c00013{height:106.050000px;}
.h9_c00013{height:107.100000px;}
.h4_c00013{height:108.150000px;}
.he_c00013{height:115.500000px;}
.h2_c00013{height:122.853010px;}
.h3_c00013{height:226.850004px;}
.h0_c00013{height:1086.450000px;}
.h1_c00013{height:1086.750000px;}
.w1_c00013{width:771.000000px;}
.w0_c00013{width:771.120000px;}
.x0_c00013{left:0.000000px;}
.x5_c00013{left:134.847000px;}
.x27_c00013{left:177.768000px;}
.x6_c00013{left:189.540000px;}
.x1c_c00013{left:191.320500px;}
.x44_c00013{left:192.507000px;}
.x5e_c00013{left:193.857000px;}
.x87_c00013{left:195.064500px;}
.x1_c00013{left:205.071000px;}
.x70_c00013{left:214.917000px;}
.x4d_c00013{left:217.887000px;}
.x15_c00013{left:220.750500px;}
.x5a_c00013{left:222.747000px;}
.xe_c00013{left:225.588000px;}
.x28_c00013{left:230.155500px;}
.x2e_c00013{left:241.218000px;}
.x53_c00013{left:248.397000px;}
.x1d_c00013{left:252.046500px;}
.x7c_c00013{left:260.547000px;}
.x45_c00013{left:267.567000px;}
.x64_c00013{left:275.397000px;}
.x1e_c00013{left:276.867000px;}
.x54_c00013{left:278.637000px;}
.x35_c00013{left:281.607000px;}
.x73_c00013{left:285.387000px;}
.x3c_c00013{left:287.007000px;}
.x79_c00013{left:289.323000px;}
.x7_c00013{left:290.790000px;}
.x46_c00013{left:298.077000px;}
.x5b_c00013{left:299.427000px;}
.x5f_c00013{left:303.747000px;}
.x88_c00013{left:307.102500px;}
.x6b_c00013{left:310.767000px;}
.x2f_c00013{left:313.044000px;}
.x16_c00013{left:314.158500px;}
.x4b_c00013{left:315.627000px;}
.x1f_c00013{left:317.131500px;}
.x65_c00013{left:327.507000px;}
.x55_c00013{left:329.667000px;}
.x36_c00013{left:334.257000px;}
.x60_c00013{left:335.337000px;}
.xf_c00013{left:338.175000px;}
.x4c_c00013{left:340.197000px;}
.x20_c00013{left:341.704500px;}
.x84_c00013{left:344.431500px;}
.x7a_c00013{left:346.561500px;}
.x29_c00013{left:347.602500px;}
.x6c_c00013{left:356.667000px;}
.x3d_c00013{left:358.557000px;}
.x30_c00013{left:369.196500px;}
.x81_c00013{left:370.323000px;}
.x37_c00013{left:372.867000px;}
.x4e_c00013{left:375.027000px;}
.x47_c00013{left:378.807000px;}
.x66_c00013{left:383.667000px;}
.x3e_c00013{left:390.417000px;}
.x61_c00013{left:396.627000px;}
.x89_c00013{left:401.065500px;}
.x56_c00013{left:402.567000px;}
.x48_c00013{left:404.457000px;}
.x2_c00013{left:405.940500px;}
.x31_c00013{left:407.535000px;}
.x21_c00013{left:408.655500px;}
.x7d_c00013{left:410.127000px;}
.x17_c00013{left:411.879000px;}
.x8b_c00013{left:413.364000px;}
.x8_c00013{left:414.720000px;}
.x78_c00013{left:416.337000px;}
.x3f_c00013{left:420.117000px;}
.x82_c00013{left:422.166000px;}
.x38_c00013{left:425.247000px;}
.x18_c00013{left:427.827000px;}
.x4f_c00013{left:432.807000px;}
.x57_c00013{left:438.747000px;}
.x9_c00013{left:442.530000px;}
.x71_c00013{left:444.147000px;}
.x6d_c00013{left:445.767000px;}
.x3_c00013{left:449.689500px;}
.x2a_c00013{left:454.471500px;}
.x7e_c00013{left:461.427000px;}
.x22_c00013{left:463.131000px;}
.x74_c00013{left:464.397000px;}
.xa_c00013{left:466.290000px;}
.x5c_c00013{left:467.367000px;}
.x67_c00013{left:470.877000px;}
.x2b_c00013{left:473.686500px;}
.x39_c00013{left:476.547000px;}
.x10_c00013{left:478.861500px;}
.x49_c00013{left:482.487000px;}
.x75_c00013{left:490.587000px;}
.x32_c00013{left:497.175000px;}
.x23_c00013{left:499.050000px;}
.x11_c00013{left:500.122500px;}
.x40_c00013{left:503.547000px;}
.x83_c00013{left:505.080000px;}
.x7f_c00013{left:506.247000px;}
.x50_c00013{left:507.597000px;}
.x85_c00013{left:511.237500px;}
.x72_c00013{left:514.347000px;}
.x68_c00013{left:516.507000px;}
.x62_c00013{left:519.207000px;}
.x19_c00013{left:523.416000px;}
.xb_c00013{left:532.440000px;}
.x12_c00013{left:534.457500px;}
.x76_c00013{left:541.617000px;}
.x80_c00013{left:543.237000px;}
.x24_c00013{left:549.064500px;}
.x41_c00013{left:552.147000px;}
.xc_c00013{left:559.440000px;}
.x69_c00013{left:561.597000px;}
.x33_c00013{left:566.839500px;}
.x8a_c00013{left:568.177500px;}
.x58_c00013{left:570.777000px;}
.x3a_c00013{left:573.747000px;}
.x6e_c00013{left:576.447000px;}
.x1a_c00013{left:585.727500px;}
.x2c_c00013{left:587.905500px;}
.xd_c00013{left:591.570000px;}
.x51_c00013{left:595.887000px;}
.x13_c00013{left:597.648000px;}
.x86_c00013{left:603.325500px;}
.x63_c00013{left:607.497000px;}
.x6f_c00013{left:609.387000px;}
.x42_c00013{left:615.867000px;}
.x25_c00013{left:619.750500px;}
.x1b_c00013{left:627.091500px;}
.x4a_c00013{left:633.417000px;}
.x6a_c00013{left:635.577000px;}
.x7b_c00013{left:639.234000px;}
.x2d_c00013{left:642.133500px;}
.x3b_c00013{left:650.967000px;}
.x77_c00013{left:660.687000px;}
.x8c_c00013{left:675.534000px;}
.x52_c00013{left:689.307000px;}
.x4_c00013{left:690.859500px;}
.x14_c00013{left:692.385000px;}
.x34_c00013{left:694.017000px;}
.x59_c00013{left:695.247000px;}
.x5d_c00013{left:696.597000px;}
.x26_c00013{left:709.596000px;}
.x43_c00013{left:713.877000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fsd_c00013{font-size:79.333333pt;}
.fsf_c00013{font-size:81.200000pt;}
.fs10_c00013{font-size:82.133333pt;}
.fsa_c00013{font-size:84.933333pt;}
.fsb_c00013{font-size:87.733333pt;}
.fs4_c00013{font-size:88.666667pt;}
.fs9_c00013{font-size:89.600000pt;}
.fs8_c00013{font-size:90.533333pt;}
.fs6_c00013{font-size:91.466667pt;}
.fs3_c00013{font-size:92.400000pt;}
.fse_c00013{font-size:93.333333pt;}
.fs5_c00013{font-size:94.266667pt;}
.fs7_c00013{font-size:95.200000pt;}
.fs2_c00013{font-size:96.133333pt;}
.fsc_c00013{font-size:102.666667pt;}
.fs0_c00013{font-size:109.202675pt;}
.fs1_c00013{font-size:201.644448pt;}
.y0_c00013{bottom:0.000000pt;}
.y6c_c00013{bottom:206.164000pt;}
.y6b_c00013{bottom:227.366667pt;}
.y6a_c00013{bottom:228.232000pt;}
.y69_c00013{bottom:228.468000pt;}
.y68_c00013{bottom:228.877333pt;}
.y67_c00013{bottom:229.420000pt;}
.y66_c00013{bottom:230.088000pt;}
.y65_c00013{bottom:230.218667pt;}
.y64_c00013{bottom:230.885333pt;}
.y63_c00013{bottom:250.450667pt;}
.y62_c00013{bottom:250.913333pt;}
.y61_c00013{bottom:251.140000pt;}
.y60_c00013{bottom:251.713333pt;}
.y5f_c00013{bottom:251.980000pt;}
.y5e_c00013{bottom:252.428000pt;}
.y5d_c00013{bottom:252.750667pt;}
.y5c_c00013{bottom:253.113333pt;}
.y5b_c00013{bottom:253.684000pt;}
.y5a_c00013{bottom:273.838667pt;}
.y59_c00013{bottom:274.173333pt;}
.y58_c00013{bottom:274.285333pt;}
.y57_c00013{bottom:274.400000pt;}
.y56_c00013{bottom:274.826667pt;}
.y55_c00013{bottom:275.004000pt;}
.y54_c00013{bottom:275.269333pt;}
.y53_c00013{bottom:275.545333pt;}
.y52_c00013{bottom:275.868000pt;}
.y51_c00013{bottom:276.021333pt;}
.y50_c00013{bottom:276.201333pt;}
.y4f_c00013{bottom:276.484000pt;}
.y4e_c00013{bottom:298.581333pt;}
.y4d_c00013{bottom:320.362667pt;}
.y4c_c00013{bottom:320.666667pt;}
.y4b_c00013{bottom:321.230667pt;}
.y4a_c00013{bottom:321.394667pt;}
.y49_c00013{bottom:321.578667pt;}
.y48_c00013{bottom:322.073333pt;}
.y47_c00013{bottom:322.225333pt;}
.y46_c00013{bottom:322.530667pt;}
.y45_c00013{bottom:322.910667pt;}
.y44_c00013{bottom:323.046667pt;}
.y43_c00013{bottom:346.552000pt;}
.y42_c00013{bottom:368.405333pt;}
.y41_c00013{bottom:391.925333pt;}
.y40_c00013{bottom:414.960000pt;}
.y3f_c00013{bottom:437.994667pt;}
.y3e_c00013{bottom:460.593333pt;}
.y3d_c00013{bottom:484.546667pt;}
.y3c_c00013{bottom:507.818667pt;}
.y3b_c00013{bottom:530.592000pt;}
.y3a_c00013{bottom:554.017333pt;}
.y39_c00013{bottom:577.173333pt;}
.y38_c00013{bottom:600.220000pt;}
.y37_c00013{bottom:623.257333pt;}
.y2d_c00013{bottom:645.841333pt;}
.y2e_c00013{bottom:646.116000pt;}
.y2f_c00013{bottom:646.498667pt;}
.y30_c00013{bottom:646.798667pt;}
.y31_c00013{bottom:647.002667pt;}
.y32_c00013{bottom:647.481333pt;}
.y33_c00013{bottom:647.678667pt;}
.y34_c00013{bottom:647.853333pt;}
.y35_c00013{bottom:648.253333pt;}
.y36_c00013{bottom:648.530667pt;}
.y23_c00013{bottom:668.641333pt;}
.y24_c00013{bottom:668.921333pt;}
.y25_c00013{bottom:669.389333pt;}
.y26_c00013{bottom:669.548000pt;}
.y27_c00013{bottom:670.117333pt;}
.y28_c00013{bottom:670.220000pt;}
.y29_c00013{bottom:670.360000pt;}
.y2a_c00013{bottom:670.829333pt;}
.y2b_c00013{bottom:671.118667pt;}
.y2c_c00013{bottom:671.388000pt;}
.y18_c00013{bottom:691.441333pt;}
.y19_c00013{bottom:691.873333pt;}
.y1a_c00013{bottom:692.049333pt;}
.y1b_c00013{bottom:692.336000pt;}
.y1c_c00013{bottom:692.510667pt;}
.y1d_c00013{bottom:692.986667pt;}
.y1e_c00013{bottom:693.374667pt;}
.y1f_c00013{bottom:693.630667pt;}
.y20_c00013{bottom:693.986667pt;}
.y21_c00013{bottom:694.489333pt;}
.y22_c00013{bottom:695.128000pt;}
.yf_c00013{bottom:714.721333pt;}
.y10_c00013{bottom:714.936000pt;}
.y11_c00013{bottom:715.600000pt;}
.y12_c00013{bottom:716.294667pt;}
.y13_c00013{bottom:716.408000pt;}
.y14_c00013{bottom:717.088000pt;}
.y15_c00013{bottom:717.530667pt;}
.y16_c00013{bottom:717.825333pt;}
.y17_c00013{bottom:718.296000pt;}
.y7_c00013{bottom:738.001333pt;}
.y8_c00013{bottom:738.221333pt;}
.y9_c00013{bottom:738.921333pt;}
.ya_c00013{bottom:739.797333pt;}
.yb_c00013{bottom:739.929333pt;}
.yc_c00013{bottom:740.142667pt;}
.yd_c00013{bottom:740.536000pt;}
.ye_c00013{bottom:741.125333pt;}
.y6_c00013{bottom:762.212000pt;}
.y1_c00013{bottom:810.241333pt;}
.y2_c00013{bottom:811.491188pt;}
.y3_c00013{bottom:811.763404pt;}
.y4_c00013{bottom:813.264017pt;}
.y5_c00013{bottom:847.212000pt;}
.hf_c00013{height:79.333333pt;}
.h11_c00013{height:81.200000pt;}
.h12_c00013{height:82.133333pt;}
.hc_c00013{height:84.933333pt;}
.hd_c00013{height:87.733333pt;}
.h6_c00013{height:88.666667pt;}
.hb_c00013{height:89.600000pt;}
.ha_c00013{height:90.533333pt;}
.h8_c00013{height:91.466667pt;}
.h5_c00013{height:92.400000pt;}
.h10_c00013{height:93.333333pt;}
.h7_c00013{height:94.266667pt;}
.h9_c00013{height:95.200000pt;}
.h4_c00013{height:96.133333pt;}
.he_c00013{height:102.666667pt;}
.h2_c00013{height:109.202675pt;}
.h3_c00013{height:201.644448pt;}
.h0_c00013{height:965.733333pt;}
.h1_c00013{height:966.000000pt;}
.w1_c00013{width:685.333333pt;}
.w0_c00013{width:685.440000pt;}
.x0_c00013{left:0.000000pt;}
.x5_c00013{left:119.864000pt;}
.x27_c00013{left:158.016000pt;}
.x6_c00013{left:168.480000pt;}
.x1c_c00013{left:170.062667pt;}
.x44_c00013{left:171.117333pt;}
.x5e_c00013{left:172.317333pt;}
.x87_c00013{left:173.390667pt;}
.x1_c00013{left:182.285333pt;}
.x70_c00013{left:191.037333pt;}
.x4d_c00013{left:193.677333pt;}
.x15_c00013{left:196.222667pt;}
.x5a_c00013{left:197.997333pt;}
.xe_c00013{left:200.522667pt;}
.x28_c00013{left:204.582667pt;}
.x2e_c00013{left:214.416000pt;}
.x53_c00013{left:220.797333pt;}
.x1d_c00013{left:224.041333pt;}
.x7c_c00013{left:231.597333pt;}
.x45_c00013{left:237.837333pt;}
.x64_c00013{left:244.797333pt;}
.x1e_c00013{left:246.104000pt;}
.x54_c00013{left:247.677333pt;}
.x35_c00013{left:250.317333pt;}
.x73_c00013{left:253.677333pt;}
.x3c_c00013{left:255.117333pt;}
.x79_c00013{left:257.176000pt;}
.x7_c00013{left:258.480000pt;}
.x46_c00013{left:264.957333pt;}
.x5b_c00013{left:266.157333pt;}
.x5f_c00013{left:269.997333pt;}
.x88_c00013{left:272.980000pt;}
.x6b_c00013{left:276.237333pt;}
.x2f_c00013{left:278.261333pt;}
.x16_c00013{left:279.252000pt;}
.x4b_c00013{left:280.557333pt;}
.x1f_c00013{left:281.894667pt;}
.x65_c00013{left:291.117333pt;}
.x55_c00013{left:293.037333pt;}
.x36_c00013{left:297.117333pt;}
.x60_c00013{left:298.077333pt;}
.xf_c00013{left:300.600000pt;}
.x4c_c00013{left:302.397333pt;}
.x20_c00013{left:303.737333pt;}
.x84_c00013{left:306.161333pt;}
.x7a_c00013{left:308.054667pt;}
.x29_c00013{left:308.980000pt;}
.x6c_c00013{left:317.037333pt;}
.x3d_c00013{left:318.717333pt;}
.x30_c00013{left:328.174667pt;}
.x81_c00013{left:329.176000pt;}
.x37_c00013{left:331.437333pt;}
.x4e_c00013{left:333.357333pt;}
.x47_c00013{left:336.717333pt;}
.x66_c00013{left:341.037333pt;}
.x3e_c00013{left:347.037333pt;}
.x61_c00013{left:352.557333pt;}
.x89_c00013{left:356.502667pt;}
.x56_c00013{left:357.837333pt;}
.x48_c00013{left:359.517333pt;}
.x2_c00013{left:360.836000pt;}
.x31_c00013{left:362.253333pt;}
.x21_c00013{left:363.249333pt;}
.x7d_c00013{left:364.557333pt;}
.x17_c00013{left:366.114667pt;}
.x8b_c00013{left:367.434667pt;}
.x8_c00013{left:368.640000pt;}
.x78_c00013{left:370.077333pt;}
.x3f_c00013{left:373.437333pt;}
.x82_c00013{left:375.258667pt;}
.x38_c00013{left:377.997333pt;}
.x18_c00013{left:380.290667pt;}
.x4f_c00013{left:384.717333pt;}
.x57_c00013{left:389.997333pt;}
.x9_c00013{left:393.360000pt;}
.x71_c00013{left:394.797333pt;}
.x6d_c00013{left:396.237333pt;}
.x3_c00013{left:399.724000pt;}
.x2a_c00013{left:403.974667pt;}
.x7e_c00013{left:410.157333pt;}
.x22_c00013{left:411.672000pt;}
.x74_c00013{left:412.797333pt;}
.xa_c00013{left:414.480000pt;}
.x5c_c00013{left:415.437333pt;}
.x67_c00013{left:418.557333pt;}
.x2b_c00013{left:421.054667pt;}
.x39_c00013{left:423.597333pt;}
.x10_c00013{left:425.654667pt;}
.x49_c00013{left:428.877333pt;}
.x75_c00013{left:436.077333pt;}
.x32_c00013{left:441.933333pt;}
.x23_c00013{left:443.600000pt;}
.x11_c00013{left:444.553333pt;}
.x40_c00013{left:447.597333pt;}
.x83_c00013{left:448.960000pt;}
.x7f_c00013{left:449.997333pt;}
.x50_c00013{left:451.197333pt;}
.x85_c00013{left:454.433333pt;}
.x72_c00013{left:457.197333pt;}
.x68_c00013{left:459.117333pt;}
.x62_c00013{left:461.517333pt;}
.x19_c00013{left:465.258667pt;}
.xb_c00013{left:473.280000pt;}
.x12_c00013{left:475.073333pt;}
.x76_c00013{left:481.437333pt;}
.x80_c00013{left:482.877333pt;}
.x24_c00013{left:488.057333pt;}
.x41_c00013{left:490.797333pt;}
.xc_c00013{left:497.280000pt;}
.x69_c00013{left:499.197333pt;}
.x33_c00013{left:503.857333pt;}
.x8a_c00013{left:505.046667pt;}
.x58_c00013{left:507.357333pt;}
.x3a_c00013{left:509.997333pt;}
.x6e_c00013{left:512.397333pt;}
.x1a_c00013{left:520.646667pt;}
.x2c_c00013{left:522.582667pt;}
.xd_c00013{left:525.840000pt;}
.x51_c00013{left:529.677333pt;}
.x13_c00013{left:531.242667pt;}
.x86_c00013{left:536.289333pt;}
.x63_c00013{left:539.997333pt;}
.x6f_c00013{left:541.677333pt;}
.x42_c00013{left:547.437333pt;}
.x25_c00013{left:550.889333pt;}
.x1b_c00013{left:557.414667pt;}
.x4a_c00013{left:563.037333pt;}
.x6a_c00013{left:564.957333pt;}
.x7b_c00013{left:568.208000pt;}
.x2d_c00013{left:570.785333pt;}
.x3b_c00013{left:578.637333pt;}
.x77_c00013{left:587.277333pt;}
.x8c_c00013{left:600.474667pt;}
.x52_c00013{left:612.717333pt;}
.x4_c00013{left:614.097333pt;}
.x14_c00013{left:615.453333pt;}
.x34_c00013{left:616.904000pt;}
.x59_c00013{left:617.997333pt;}
.x5d_c00013{left:619.197333pt;}
.x26_c00013{left:630.752000pt;}
.x43_c00013{left:634.557333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mcc_c00014{transform:matrix(0.011730,0.000106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.011730,0.000106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.011730,0.000106,-0.002250,0.249990,0,0);}
.mb4_c00014{transform:matrix(0.011785,0.000106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.011785,0.000106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.011785,0.000106,-0.002250,0.249990,0,0);}
.m72_c00014{transform:matrix(0.030429,0.000243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.030429,0.000243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.030429,0.000243,-0.002000,0.249992,0,0);}
.mc2_c00014{transform:matrix(0.043603,0.000392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.043603,0.000392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.043603,0.000392,-0.002250,0.249990,0,0);}
.m30_c00014{transform:matrix(0.049158,0.000393,-0.002000,0.249992,0,0);-ms-transform:matrix(0.049158,0.000393,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.049158,0.000393,-0.002000,0.249992,0,0);}
.m35_c00014{transform:matrix(0.050428,0.000403,-0.002000,0.249992,0,0);-ms-transform:matrix(0.050428,0.000403,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.050428,0.000403,-0.002000,0.249992,0,0);}
.mf5_c00014{transform:matrix(0.054113,0.000487,-0.002250,0.249990,0,0);-ms-transform:matrix(0.054113,0.000487,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.054113,0.000487,-0.002250,0.249990,0,0);}
.mcd_c00014{transform:matrix(0.055643,0.000501,-0.002250,0.249990,0,0);-ms-transform:matrix(0.055643,0.000501,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.055643,0.000501,-0.002250,0.249990,0,0);}
.m17_c00014{transform:matrix(0.056818,0.000455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.056818,0.000455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.056818,0.000455,-0.002000,0.249992,0,0);}
.ma4_c00014{transform:matrix(0.061795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061795,0.000000,0.000000,0.250000,0,0);}
.m8d_c00014{transform:matrix(0.062703,0.000502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.062703,0.000502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.062703,0.000502,-0.002000,0.249992,0,0);}
.m2d_c00014{transform:matrix(0.064393,0.000515,-0.002000,0.249992,0,0);-ms-transform:matrix(0.064393,0.000515,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.064393,0.000515,-0.002000,0.249992,0,0);}
.m36_c00014{transform:matrix(0.066118,0.000529,-0.002000,0.249992,0,0);-ms-transform:matrix(0.066118,0.000529,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.066118,0.000529,-0.002000,0.249992,0,0);}
.m93_c00014{transform:matrix(0.067370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067370,0.000000,0.000000,0.250000,0,0);}
.mf7_c00014{transform:matrix(0.069987,0.000630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.069987,0.000630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.069987,0.000630,-0.002250,0.249990,0,0);}
.mf9_c00014{transform:matrix(0.071012,0.000639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.071012,0.000639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.071012,0.000639,-0.002250,0.249990,0,0);}
.mc4_c00014{transform:matrix(0.071082,0.000640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.071082,0.000640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.071082,0.000640,-0.002250,0.249990,0,0);}
.m73_c00014{transform:matrix(0.071628,0.000573,-0.002000,0.249992,0,0);-ms-transform:matrix(0.071628,0.000573,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.071628,0.000573,-0.002000,0.249992,0,0);}
.m62_c00014{transform:matrix(0.071838,0.000575,-0.002000,0.249992,0,0);-ms-transform:matrix(0.071838,0.000575,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.071838,0.000575,-0.002000,0.249992,0,0);}
.mcb_c00014{transform:matrix(0.073372,0.000660,-0.002250,0.249990,0,0);-ms-transform:matrix(0.073372,0.000660,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.073372,0.000660,-0.002250,0.249990,0,0);}
.mc8_c00014{transform:matrix(0.073862,0.000665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.073862,0.000665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.073862,0.000665,-0.002250,0.249990,0,0);}
.mb2_c00014{transform:matrix(0.074083,0.000519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.074083,0.000519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.074083,0.000519,-0.001750,0.249994,0,0);}
.m64_c00014{transform:matrix(0.074433,0.000595,-0.002000,0.249992,0,0);-ms-transform:matrix(0.074433,0.000595,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.074433,0.000595,-0.002000,0.249992,0,0);}
.mf8_c00014{transform:matrix(0.075577,0.000680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.075577,0.000680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.075577,0.000680,-0.002250,0.249990,0,0);}
.m94_c00014{transform:matrix(0.075580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075580,0.000000,0.000000,0.250000,0,0);}
.mc5_c00014{transform:matrix(0.076757,0.000691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.076757,0.000691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.076757,0.000691,-0.002250,0.249990,0,0);}
.mb1_c00014{transform:matrix(0.076758,0.000537,-0.001750,0.249994,0,0);-ms-transform:matrix(0.076758,0.000537,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.076758,0.000537,-0.001750,0.249994,0,0);}
.m81_c00014{transform:matrix(0.078322,0.000627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.078322,0.000627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.078322,0.000627,-0.002000,0.249992,0,0);}
.m63_c00014{transform:matrix(0.079937,0.000639,-0.002000,0.249992,0,0);-ms-transform:matrix(0.079937,0.000639,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.079937,0.000639,-0.002000,0.249992,0,0);}
.m2e_c00014{transform:matrix(0.080217,0.000642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.080217,0.000642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.080217,0.000642,-0.002000,0.249992,0,0);}
.mce_c00014{transform:matrix(0.082322,0.000741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.082322,0.000741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.082322,0.000741,-0.002250,0.249990,0,0);}
.ma5_c00014{transform:matrix(0.086855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086855,0.000000,0.000000,0.250000,0,0);}
.m85_c00014{transform:matrix(0.086917,0.000695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.086917,0.000695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.086917,0.000695,-0.002000,0.249992,0,0);}
.m6b_c00014{transform:matrix(0.087122,0.000697,-0.002000,0.249992,0,0);-ms-transform:matrix(0.087122,0.000697,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.087122,0.000697,-0.002000,0.249992,0,0);}
.me2_c00014{transform:matrix(0.087486,0.000787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.087486,0.000787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.087486,0.000787,-0.002250,0.249990,0,0);}
.m33_c00014{transform:matrix(0.089692,0.000718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.089692,0.000718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.089692,0.000718,-0.002000,0.249992,0,0);}
.m9e_c00014{transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);}
.m34_c00014{transform:matrix(0.091947,0.000736,-0.002000,0.249992,0,0);-ms-transform:matrix(0.091947,0.000736,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.091947,0.000736,-0.002000,0.249992,0,0);}
.ma6_c00014{transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);}
.meb_c00014{transform:matrix(0.096861,0.000872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.096861,0.000872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.096861,0.000872,-0.002250,0.249990,0,0);}
.m65_c00014{transform:matrix(0.097402,0.000779,-0.002000,0.249992,0,0);-ms-transform:matrix(0.097402,0.000779,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.097402,0.000779,-0.002000,0.249992,0,0);}
.mc7_c00014{transform:matrix(0.098086,0.000883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.098086,0.000883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.098086,0.000883,-0.002250,0.249990,0,0);}
.mc3_c00014{transform:matrix(0.101401,0.000913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.101401,0.000913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.101401,0.000913,-0.002250,0.249990,0,0);}
.mc6_c00014{transform:matrix(0.102666,0.000924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.102666,0.000924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.102666,0.000924,-0.002250,0.249990,0,0);}
.m37_c00014{transform:matrix(0.103737,0.000830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.103737,0.000830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.103737,0.000830,-0.002000,0.249992,0,0);}
.m76_c00014{transform:matrix(0.128156,0.001025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.128156,0.001025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.128156,0.001025,-0.002000,0.249992,0,0);}
.m5a_c00014{transform:matrix(0.142115,0.001137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.142115,0.001137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.142115,0.001137,-0.002000,0.249992,0,0);}
.m55_c00014{transform:matrix(0.144365,0.001155,-0.002000,0.249992,0,0);-ms-transform:matrix(0.144365,0.001155,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.144365,0.001155,-0.002000,0.249992,0,0);}
.me9_c00014{transform:matrix(0.155059,0.001396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155059,0.001396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155059,0.001396,-0.002250,0.249990,0,0);}
.med_c00014{transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);}
.m9_c00014{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);}
.me6_c00014{transform:matrix(0.159249,0.001433,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159249,0.001433,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159249,0.001433,-0.002250,0.249990,0,0);}
.m80_c00014{transform:matrix(0.160355,0.001283,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160355,0.001283,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160355,0.001283,-0.002000,0.249992,0,0);}
.m92_c00014{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);}
.m8e_c00014{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);}
.m42_c00014{transform:matrix(0.161680,0.001293,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161680,0.001293,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161680,0.001293,-0.002000,0.249992,0,0);}
.mba_c00014{transform:matrix(0.161768,0.001456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161768,0.001456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161768,0.001456,-0.002250,0.249990,0,0);}
.m97_c00014{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);}
.m98_c00014{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);}
.m7f_c00014{transform:matrix(0.162915,0.001303,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162915,0.001303,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162915,0.001303,-0.002000,0.249992,0,0);}
.mc1_c00014{transform:matrix(0.164853,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164853,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164853,0.001484,-0.002250,0.249990,0,0);}
.m74_c00014{transform:matrix(0.165110,0.001321,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165110,0.001321,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165110,0.001321,-0.002000,0.249992,0,0);}
.m60_c00014{transform:matrix(0.165190,0.001322,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165190,0.001322,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165190,0.001322,-0.002000,0.249992,0,0);}
.m44_c00014{transform:matrix(0.167180,0.001337,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167180,0.001337,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167180,0.001337,-0.002000,0.249992,0,0);}
.m29_c00014{transform:matrix(0.167560,0.001340,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167560,0.001340,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167560,0.001340,-0.002000,0.249992,0,0);}
.mb_c00014{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);}
.m70_c00014{transform:matrix(0.168085,0.001345,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168085,0.001345,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168085,0.001345,-0.002000,0.249992,0,0);}
.mbc_c00014{transform:matrix(0.168793,0.001519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168793,0.001519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168793,0.001519,-0.002250,0.249990,0,0);}
.m26_c00014{transform:matrix(0.169160,0.001353,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169160,0.001353,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169160,0.001353,-0.002000,0.249992,0,0);}
.m86_c00014{transform:matrix(0.171585,0.001373,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171585,0.001373,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171585,0.001373,-0.002000,0.249992,0,0);}
.ma_c00014{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);}
.m24_c00014{transform:matrix(0.172669,0.001381,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172669,0.001381,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172669,0.001381,-0.002000,0.249992,0,0);}
.m8c_c00014{transform:matrix(0.172859,0.001383,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172859,0.001383,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172859,0.001383,-0.002000,0.249992,0,0);}
.m4f_c00014{transform:matrix(0.173259,0.001386,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173259,0.001386,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173259,0.001386,-0.002000,0.249992,0,0);}
.m4d_c00014{transform:matrix(0.173994,0.001392,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173994,0.001392,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173994,0.001392,-0.002000,0.249992,0,0);}
.m87_c00014{transform:matrix(0.174579,0.001397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174579,0.001397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174579,0.001397,-0.002000,0.249992,0,0);}
.m23_c00014{transform:matrix(0.174949,0.001400,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174949,0.001400,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174949,0.001400,-0.002000,0.249992,0,0);}
.mbb_c00014{transform:matrix(0.175298,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175298,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175298,0.001578,-0.002250,0.249990,0,0);}
.m84_c00014{transform:matrix(0.176009,0.001408,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176009,0.001408,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176009,0.001408,-0.002000,0.249992,0,0);}
.mb6_c00014{transform:matrix(0.177508,0.001598,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177508,0.001598,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177508,0.001598,-0.002250,0.249990,0,0);}
.m25_c00014{transform:matrix(0.178399,0.001427,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178399,0.001427,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178399,0.001427,-0.002000,0.249992,0,0);}
.m96_c00014{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);}
.mb8_c00014{transform:matrix(0.179373,0.001614,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179373,0.001614,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179373,0.001614,-0.002250,0.249990,0,0);}
.m53_c00014{transform:matrix(0.180214,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180214,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180214,0.001442,-0.002000,0.249992,0,0);}
.m5e_c00014{transform:matrix(0.180244,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180244,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180244,0.001442,-0.002000,0.249992,0,0);}
.md1_c00014{transform:matrix(0.180258,0.001622,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180258,0.001622,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180258,0.001622,-0.002250,0.249990,0,0);}
.m43_c00014{transform:matrix(0.180259,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180259,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180259,0.001442,-0.002000,0.249992,0,0);}
.m4a_c00014{transform:matrix(0.180574,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180574,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180574,0.001445,-0.002000,0.249992,0,0);}
.m88_c00014{transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);}
.mb7_c00014{transform:matrix(0.181158,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181158,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181158,0.001630,-0.002250,0.249990,0,0);}
.me_c00014{transform:matrix(0.181439,0.001452,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181439,0.001452,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181439,0.001452,-0.002000,0.249992,0,0);}
.m57_c00014{transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);}
.m99_c00014{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);}
.m83_c00014{transform:matrix(0.182379,0.001459,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182379,0.001459,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182379,0.001459,-0.002000,0.249992,0,0);}
.m7d_c00014{transform:matrix(0.182754,0.001462,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182754,0.001462,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182754,0.001462,-0.002000,0.249992,0,0);}
.m7_c00014{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);}
.m0_c00014{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);}
.m91_c00014{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);}
.m8b_c00014{transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);}
.m54_c00014{transform:matrix(0.183684,0.001469,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183684,0.001469,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183684,0.001469,-0.002000,0.249992,0,0);}
.m32_c00014{transform:matrix(0.185294,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185294,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185294,0.001482,-0.002000,0.249992,0,0);}
.m6c_c00014{transform:matrix(0.185759,0.001486,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185759,0.001486,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185759,0.001486,-0.002000,0.249992,0,0);}
.mb5_c00014{transform:matrix(0.186217,0.001676,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186217,0.001676,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186217,0.001676,-0.002250,0.249990,0,0);}
.m41_c00014{transform:matrix(0.186544,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186544,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186544,0.001492,-0.002000,0.249992,0,0);}
.m6_c00014{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);}
.m68_c00014{transform:matrix(0.187744,0.001502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187744,0.001502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187744,0.001502,-0.002000,0.249992,0,0);}
.me4_c00014{transform:matrix(0.187792,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187792,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187792,0.001690,-0.002250,0.249990,0,0);}
.m77_c00014{transform:matrix(0.188194,0.001506,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188194,0.001506,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188194,0.001506,-0.002000,0.249992,0,0);}
.mef_c00014{transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);}
.m4e_c00014{transform:matrix(0.188574,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188574,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188574,0.001509,-0.002000,0.249992,0,0);}
.m7a_c00014{transform:matrix(0.188579,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188579,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188579,0.001509,-0.002000,0.249992,0,0);}
.m8f_c00014{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_c00014{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);}
.ma3_c00014{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_c00014{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.190534,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190534,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190534,0.001524,-0.002000,0.249992,0,0);}
.m1c_c00014{transform:matrix(0.191344,0.001531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191344,0.001531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191344,0.001531,-0.002000,0.249992,0,0);}
.m2a_c00014{transform:matrix(0.191409,0.001531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191409,0.001531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191409,0.001531,-0.002000,0.249992,0,0);}
.md_c00014{transform:matrix(0.191524,0.001532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191524,0.001532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191524,0.001532,-0.002000,0.249992,0,0);}
.m56_c00014{transform:matrix(0.191699,0.001534,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191699,0.001534,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191699,0.001534,-0.002000,0.249992,0,0);}
.m49_c00014{transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);}
.m52_c00014{transform:matrix(0.192579,0.001541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192579,0.001541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192579,0.001541,-0.002000,0.249992,0,0);}
.m2_c00014{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);}
.mf1_c00014{transform:matrix(0.193152,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193152,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193152,0.001738,-0.002250,0.249990,0,0);}
.m7b_c00014{transform:matrix(0.193174,0.001545,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193174,0.001545,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193174,0.001545,-0.002000,0.249992,0,0);}
.m9b_c00014{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);}
.mac_c00014{transform:matrix(0.193720,0.001356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193720,0.001356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193720,0.001356,-0.001750,0.249994,0,0);}
.m3_c00014{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);}
.mb9_c00014{transform:matrix(0.197982,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197982,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197982,0.001782,-0.002250,0.249990,0,0);}
.m4_c00014{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);}
.m1a_c00014{transform:matrix(0.198299,0.001586,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198299,0.001586,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198299,0.001586,-0.002000,0.249992,0,0);}
.mc0_c00014{transform:matrix(0.198462,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198462,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198462,0.001786,-0.002250,0.249990,0,0);}
.me5_c00014{transform:matrix(0.198597,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198597,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198597,0.001787,-0.002250,0.249990,0,0);}
.m4b_c00014{transform:matrix(0.198769,0.001590,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198769,0.001590,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198769,0.001590,-0.002000,0.249992,0,0);}
.mf2_c00014{transform:matrix(0.199012,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199012,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199012,0.001791,-0.002250,0.249990,0,0);}
.m50_c00014{transform:matrix(0.199139,0.001593,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199139,0.001593,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199139,0.001593,-0.002000,0.249992,0,0);}
.mdc_c00014{transform:matrix(0.199567,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199567,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199567,0.001796,-0.002250,0.249990,0,0);}
.mb3_c00014{transform:matrix(0.199825,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199825,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199825,0.001399,-0.001750,0.249994,0,0);}
.m67_c00014{transform:matrix(0.200199,0.001602,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200199,0.001602,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200199,0.001602,-0.002000,0.249992,0,0);}
.mdb_c00014{transform:matrix(0.200537,0.001805,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200537,0.001805,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200537,0.001805,-0.002250,0.249990,0,0);}
.mbf_c00014{transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);}
.mec_c00014{transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);}
.md0_c00014{transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);}
.me7_c00014{transform:matrix(0.202187,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202187,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202187,0.001820,-0.002250,0.249990,0,0);}
.m89_c00014{transform:matrix(0.203408,0.001627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203408,0.001627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203408,0.001627,-0.002000,0.249992,0,0);}
.me0_c00014{transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);}
.m1d_c00014{transform:matrix(0.203763,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203763,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203763,0.001630,-0.002000,0.249992,0,0);}
.m15_c00014{transform:matrix(0.203778,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203778,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203778,0.001630,-0.002000,0.249992,0,0);}
.m58_c00014{transform:matrix(0.203818,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203818,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203818,0.001631,-0.002000,0.249992,0,0);}
.m28_c00014{transform:matrix(0.203888,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203888,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203888,0.001631,-0.002000,0.249992,0,0);}
.maf_c00014{transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);}
.ma8_c00014{transform:matrix(0.204195,0.001429,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204195,0.001429,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204195,0.001429,-0.001750,0.249994,0,0);}
.m2b_c00014{transform:matrix(0.205203,0.001642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205203,0.001642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205203,0.001642,-0.002000,0.249992,0,0);}
.mc_c00014{transform:matrix(0.205548,0.001644,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205548,0.001644,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205548,0.001644,-0.002000,0.249992,0,0);}
.mda_c00014{transform:matrix(0.206602,0.001859,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206602,0.001859,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206602,0.001859,-0.002250,0.249990,0,0);}
.m27_c00014{transform:matrix(0.206873,0.001655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206873,0.001655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206873,0.001655,-0.002000,0.249992,0,0);}
.m1_c00014{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);}
.me8_c00014{transform:matrix(0.207227,0.001865,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207227,0.001865,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207227,0.001865,-0.002250,0.249990,0,0);}
.ma2_c00014{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);}
.m6d_c00014{transform:matrix(0.208848,0.001671,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208848,0.001671,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208848,0.001671,-0.002000,0.249992,0,0);}
.m16_c00014{transform:matrix(0.209533,0.001676,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209533,0.001676,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209533,0.001676,-0.002000,0.249992,0,0);}
.m75_c00014{transform:matrix(0.209958,0.001680,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209958,0.001680,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209958,0.001680,-0.002000,0.249992,0,0);}
.m2f_c00014{transform:matrix(0.210268,0.001682,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210268,0.001682,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210268,0.001682,-0.002000,0.249992,0,0);}
.ma9_c00014{transform:matrix(0.212145,0.001485,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212145,0.001485,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212145,0.001485,-0.001750,0.249994,0,0);}
.mad_c00014{transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);}
.m90_c00014{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);}
.m3c_c00014{transform:matrix(0.213543,0.001708,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213543,0.001708,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213543,0.001708,-0.002000,0.249992,0,0);}
.mcf_c00014{transform:matrix(0.214321,0.001929,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214321,0.001929,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214321,0.001929,-0.002250,0.249990,0,0);}
.m51_c00014{transform:matrix(0.215048,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215048,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215048,0.001720,-0.002000,0.249992,0,0);}
.ma0_c00014{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);}
.m5d_c00014{transform:matrix(0.217208,0.001738,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217208,0.001738,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217208,0.001738,-0.002000,0.249992,0,0);}
.mde_c00014{transform:matrix(0.217646,0.001959,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217646,0.001959,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217646,0.001959,-0.002250,0.249990,0,0);}
.mca_c00014{transform:matrix(0.217776,0.001960,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217776,0.001960,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217776,0.001960,-0.002250,0.249990,0,0);}
.mab_c00014{transform:matrix(0.218030,0.001526,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218030,0.001526,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218030,0.001526,-0.001750,0.249994,0,0);}
.ma7_c00014{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);}
.m79_c00014{transform:matrix(0.218518,0.001748,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218518,0.001748,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218518,0.001748,-0.002000,0.249992,0,0);}
.maa_c00014{transform:matrix(0.220045,0.001540,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220045,0.001540,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220045,0.001540,-0.001750,0.249994,0,0);}
.ma1_c00014{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);}
.mf_c00014{transform:matrix(0.220648,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220648,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220648,0.001765,-0.002000,0.249992,0,0);}
.m8_c00014{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.mae_c00014{transform:matrix(0.221015,0.001547,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221015,0.001547,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221015,0.001547,-0.001750,0.249994,0,0);}
.me3_c00014{transform:matrix(0.221211,0.001991,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221211,0.001991,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221211,0.001991,-0.002250,0.249990,0,0);}
.m95_c00014{transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.223408,0.001787,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223408,0.001787,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223408,0.001787,-0.002000,0.249992,0,0);}
.mdf_c00014{transform:matrix(0.223616,0.002013,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223616,0.002013,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223616,0.002013,-0.002250,0.249990,0,0);}
.m18_c00014{transform:matrix(0.223658,0.001789,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223658,0.001789,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223658,0.001789,-0.002000,0.249992,0,0);}
.m7c_c00014{transform:matrix(0.223823,0.001791,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223823,0.001791,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223823,0.001791,-0.002000,0.249992,0,0);}
.m14_c00014{transform:matrix(0.223843,0.001791,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223843,0.001791,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223843,0.001791,-0.002000,0.249992,0,0);}
.m5_c00014{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);}
.m78_c00014{transform:matrix(0.229003,0.001832,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229003,0.001832,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229003,0.001832,-0.002000,0.249992,0,0);}
.me1_c00014{transform:matrix(0.230826,0.002077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230826,0.002077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230826,0.002077,-0.002250,0.249990,0,0);}
.m1b_c00014{transform:matrix(0.231028,0.001848,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231028,0.001848,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231028,0.001848,-0.002000,0.249992,0,0);}
.m40_c00014{transform:matrix(0.231063,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231063,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231063,0.001849,-0.002000,0.249992,0,0);}
.m5f_c00014{transform:matrix(0.233018,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233018,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233018,0.001864,-0.002000,0.249992,0,0);}
.md5_c00014{transform:matrix(0.233376,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233376,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233376,0.002100,-0.002250,0.249990,0,0);}
.mbe_c00014{transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);}
.m4c_c00014{transform:matrix(0.233753,0.001870,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233753,0.001870,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233753,0.001870,-0.002000,0.249992,0,0);}
.m13_c00014{transform:matrix(0.235342,0.001883,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235342,0.001883,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235342,0.001883,-0.002000,0.249992,0,0);}
.mdd_c00014{transform:matrix(0.237995,0.002142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237995,0.002142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237995,0.002142,-0.002250,0.249990,0,0);}
.m8a_c00014{transform:matrix(0.240787,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240787,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240787,0.001926,-0.002000,0.249992,0,0);}
.mf3_c00014{transform:matrix(0.242185,0.002180,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242185,0.002180,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242185,0.002180,-0.002250,0.249990,0,0);}
.m61_c00014{transform:matrix(0.248882,0.001991,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248882,0.001991,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248882,0.001991,-0.002000,0.249992,0,0);}
.m20_c00014{transform:matrix(0.249007,0.001992,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249007,0.001992,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249007,0.001992,-0.002000,0.249992,0,0);}
.m39_c00014{transform:matrix(0.253927,0.002031,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253927,0.002031,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253927,0.002031,-0.002000,0.249992,0,0);}
.m3a_c00014{transform:matrix(0.265966,0.002128,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265966,0.002128,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265966,0.002128,-0.002000,0.249992,0,0);}
.m9c_c00014{transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);}
.m5c_c00014{transform:matrix(0.268646,0.002149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268646,0.002149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268646,0.002149,-0.002000,0.249992,0,0);}
.m10_c00014{transform:matrix(0.269226,0.002154,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269226,0.002154,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269226,0.002154,-0.002000,0.249992,0,0);}
.m71_c00014{transform:matrix(0.284381,0.002275,-0.002000,0.249992,0,0);-ms-transform:matrix(0.284381,0.002275,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.284381,0.002275,-0.002000,0.249992,0,0);}
.m2c_c00014{transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);}
.mf6_c00014{transform:matrix(0.293588,0.002642,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293588,0.002642,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293588,0.002642,-0.002250,0.249990,0,0);}
.mbd_c00014{transform:matrix(0.295798,0.002662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295798,0.002662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295798,0.002662,-0.002250,0.249990,0,0);}
.mf0_c00014{transform:matrix(0.298788,0.002689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298788,0.002689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298788,0.002689,-0.002250,0.249990,0,0);}
.mb0_c00014{transform:matrix(0.311802,0.002183,-0.001750,0.249994,0,0);-ms-transform:matrix(0.311802,0.002183,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.311802,0.002183,-0.001750,0.249994,0,0);}
.mc9_c00014{transform:matrix(0.315067,0.002836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.315067,0.002836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.315067,0.002836,-0.002250,0.249990,0,0);}
.mfa_c00014{transform:matrix(0.315082,0.002836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.315082,0.002836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.315082,0.002836,-0.002250,0.249990,0,0);}
.m22_c00014{transform:matrix(0.316430,0.002531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.316430,0.002531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.316430,0.002531,-0.002000,0.249992,0,0);}
.m6e_c00014{transform:matrix(0.327065,0.002617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.327065,0.002617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.327065,0.002617,-0.002000,0.249992,0,0);}
.m47_c00014{transform:matrix(0.328349,0.002627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.328349,0.002627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.328349,0.002627,-0.002000,0.249992,0,0);}
.md8_c00014{transform:matrix(0.330697,0.002976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330697,0.002976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330697,0.002976,-0.002250,0.249990,0,0);}
.md9_c00014{transform:matrix(0.337546,0.003038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.337546,0.003038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.337546,0.003038,-0.002250,0.249990,0,0);}
.m6f_c00014{transform:matrix(0.340929,0.002727,-0.002000,0.249992,0,0);-ms-transform:matrix(0.340929,0.002727,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.340929,0.002727,-0.002000,0.249992,0,0);}
.m12_c00014{transform:matrix(0.356654,0.002853,-0.002000,0.249992,0,0);-ms-transform:matrix(0.356654,0.002853,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.356654,0.002853,-0.002000,0.249992,0,0);}
.m66_c00014{transform:matrix(0.360508,0.002884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.360508,0.002884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.360508,0.002884,-0.002000,0.249992,0,0);}
.md3_c00014{transform:matrix(0.368050,0.003312,-0.002250,0.249990,0,0);-ms-transform:matrix(0.368050,0.003312,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.368050,0.003312,-0.002250,0.249990,0,0);}
.m38_c00014{transform:matrix(0.371773,0.002974,-0.002000,0.249992,0,0);-ms-transform:matrix(0.371773,0.002974,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.371773,0.002974,-0.002000,0.249992,0,0);}
.m19_c00014{transform:matrix(0.389658,0.003117,-0.002000,0.249992,0,0);-ms-transform:matrix(0.389658,0.003117,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.389658,0.003117,-0.002000,0.249992,0,0);}
.m6a_c00014{transform:matrix(0.396687,0.003173,-0.002000,0.249992,0,0);-ms-transform:matrix(0.396687,0.003173,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.396687,0.003173,-0.002000,0.249992,0,0);}
.md4_c00014{transform:matrix(0.400844,0.003608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.400844,0.003608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.400844,0.003608,-0.002250,0.249990,0,0);}
.m3b_c00014{transform:matrix(0.405762,0.003246,-0.002000,0.249992,0,0);-ms-transform:matrix(0.405762,0.003246,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.405762,0.003246,-0.002000,0.249992,0,0);}
.m1e_c00014{transform:matrix(0.407532,0.003260,-0.002000,0.249992,0,0);-ms-transform:matrix(0.407532,0.003260,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.407532,0.003260,-0.002000,0.249992,0,0);}
.m7e_c00014{transform:matrix(0.416727,0.003334,-0.002000,0.249992,0,0);-ms-transform:matrix(0.416727,0.003334,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.416727,0.003334,-0.002000,0.249992,0,0);}
.mf4_c00014{transform:matrix(0.432582,0.003893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.432582,0.003893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.432582,0.003893,-0.002250,0.249990,0,0);}
.md7_c00014{transform:matrix(0.435317,0.003918,-0.002250,0.249990,0,0);-ms-transform:matrix(0.435317,0.003918,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.435317,0.003918,-0.002250,0.249990,0,0);}
.mee_c00014{transform:matrix(0.436737,0.003931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.436737,0.003931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.436737,0.003931,-0.002250,0.249990,0,0);}
.m31_c00014{transform:matrix(0.445251,0.003562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.445251,0.003562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.445251,0.003562,-0.002000,0.249992,0,0);}
.m46_c00014{transform:matrix(0.445916,0.003567,-0.002000,0.249992,0,0);-ms-transform:matrix(0.445916,0.003567,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.445916,0.003567,-0.002000,0.249992,0,0);}
.m59_c00014{transform:matrix(0.446781,0.003574,-0.002000,0.249992,0,0);-ms-transform:matrix(0.446781,0.003574,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.446781,0.003574,-0.002000,0.249992,0,0);}
.m9f_c00014{transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00014{transform:matrix(0.464250,0.003714,-0.002000,0.249992,0,0);-ms-transform:matrix(0.464250,0.003714,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.464250,0.003714,-0.002000,0.249992,0,0);}
.m3d_c00014{transform:matrix(0.482760,0.003862,-0.002000,0.249992,0,0);-ms-transform:matrix(0.482760,0.003862,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.482760,0.003862,-0.002000,0.249992,0,0);}
.md2_c00014{transform:matrix(0.495925,0.004463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.495925,0.004463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.495925,0.004463,-0.002250,0.249990,0,0);}
.m5b_c00014{transform:matrix(0.499764,0.003998,-0.002000,0.249992,0,0);-ms-transform:matrix(0.499764,0.003998,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.499764,0.003998,-0.002000,0.249992,0,0);}
.m82_c00014{transform:matrix(0.508639,0.004069,-0.002000,0.249992,0,0);-ms-transform:matrix(0.508639,0.004069,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.508639,0.004069,-0.002000,0.249992,0,0);}
.m45_c00014{transform:matrix(0.520318,0.004163,-0.002000,0.249992,0,0);-ms-transform:matrix(0.520318,0.004163,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.520318,0.004163,-0.002000,0.249992,0,0);}
.m21_c00014{transform:matrix(0.555197,0.004442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.555197,0.004442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.555197,0.004442,-0.002000,0.249992,0,0);}
.m3e_c00014{transform:matrix(0.610720,0.004886,-0.002000,0.249992,0,0);-ms-transform:matrix(0.610720,0.004886,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.610720,0.004886,-0.002000,0.249992,0,0);}
.m48_c00014{transform:matrix(0.631955,0.005056,-0.002000,0.249992,0,0);-ms-transform:matrix(0.631955,0.005056,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.631955,0.005056,-0.002000,0.249992,0,0);}
.md6_c00014{transform:matrix(0.695812,0.006262,-0.002250,0.249990,0,0);-ms-transform:matrix(0.695812,0.006262,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.695812,0.006262,-0.002250,0.249990,0,0);}
.mea_c00014{transform:matrix(0.696897,0.006272,-0.002250,0.249990,0,0);-ms-transform:matrix(0.696897,0.006272,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.696897,0.006272,-0.002250,0.249990,0,0);}
.m69_c00014{transform:matrix(1.228401,0.009827,-0.002000,0.249992,0,0);-ms-transform:matrix(1.228401,0.009827,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.228401,0.009827,-0.002000,0.249992,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;}
._0_c00014{width:1539.318140px;}
.fc0_c00014{color:transparent;}
.fs3_c00014{font-size:61.951982px;}
.fsd_c00014{font-size:65.102636px;}
.fsa_c00014{font-size:67.201646px;}
.fs2_c00014{font-size:67.202150px;}
.fsc_c00014{font-size:67.202722px;}
.fs8_c00014{font-size:68.250000px;}
.fs7_c00014{font-size:68.252184px;}
.fs10_c00014{font-size:68.252764px;}
.fs1_c00014{font-size:69.300000px;}
.fs5_c00014{font-size:69.302218px;}
.fsf_c00014{font-size:70.352849px;}
.fs4_c00014{font-size:71.402285px;}
.fse_c00014{font-size:71.402892px;}
.fs6_c00014{font-size:72.452318px;}
.fsb_c00014{font-size:72.452934px;}
.fs9_c00014{font-size:74.550000px;}
.fs0_c00014{font-size:95.550000px;}
.y0_c00014{bottom:0.000000px;}
.yd9_c00014{bottom:209.247456px;}
.yd8_c00014{bottom:209.975930px;}
.yd7_c00014{bottom:210.340484px;}
.yd6_c00014{bottom:211.414584px;}
.yd5_c00014{bottom:212.010785px;}
.yd4_c00014{bottom:212.146055px;}
.yd3_c00014{bottom:212.545304px;}
.yd2_c00014{bottom:212.766528px;}
.yd1_c00014{bottom:233.740781px;}
.ycf_c00014{bottom:233.741397px;}
.yd0_c00014{bottom:233.741501px;}
.yce_c00014{bottom:233.741714px;}
.ycc_c00014{bottom:233.741760px;}
.ycd_c00014{bottom:233.742120px;}
.yc7_c00014{bottom:233.742383px;}
.ycb_c00014{bottom:233.742437px;}
.yc6_c00014{bottom:233.742489px;}
.yc9_c00014{bottom:233.742559px;}
.yca_c00014{bottom:233.743007px;}
.yc8_c00014{bottom:233.743010px;}
.yc5_c00014{bottom:233.743046px;}
.yc4_c00014{bottom:233.743512px;}
.yc3_c00014{bottom:233.744219px;}
.yc1_c00014{bottom:255.889886px;}
.yc0_c00014{bottom:255.889995px;}
.yc2_c00014{bottom:255.890226px;}
.ybb_c00014{bottom:255.890378px;}
.ybd_c00014{bottom:255.890538px;}
.ybf_c00014{bottom:255.890612px;}
.ybe_c00014{bottom:255.891018px;}
.ybc_c00014{bottom:255.891051px;}
.yba_c00014{bottom:255.891071px;}
.yb0_c00014{bottom:278.292554px;}
.yb2_c00014{bottom:278.292701px;}
.yaf_c00014{bottom:278.292753px;}
.yb5_c00014{bottom:278.293058px;}
.yb1_c00014{bottom:278.293167px;}
.yb9_c00014{bottom:278.293245px;}
.yb3_c00014{bottom:278.293374px;}
.yb7_c00014{bottom:278.293385px;}
.yb6_c00014{bottom:278.293461px;}
.yb8_c00014{bottom:278.293608px;}
.yb4_c00014{bottom:278.293628px;}
.yae_c00014{bottom:299.255691px;}
.yad_c00014{bottom:299.988099px;}
.yac_c00014{bottom:300.336381px;}
.yab_c00014{bottom:300.724179px;}
.yaa_c00014{bottom:301.680030px;}
.ya9_c00014{bottom:302.401992px;}
.ya8_c00014{bottom:321.750081px;}
.ya7_c00014{bottom:321.944281px;}
.ya6_c00014{bottom:322.276529px;}
.ya5_c00014{bottom:322.598126px;}
.ya4_c00014{bottom:322.917279px;}
.ya3_c00014{bottom:323.236406px;}
.ya2_c00014{bottom:323.558016px;}
.ya1_c00014{bottom:324.208460px;}
.ya0_c00014{bottom:324.839249px;}
.y9f_c00014{bottom:324.931671px;}
.y9e_c00014{bottom:325.350632px;}
.y9d_c00014{bottom:344.422910px;}
.y9c_c00014{bottom:344.962478px;}
.y9b_c00014{bottom:345.084018px;}
.y9a_c00014{bottom:345.941795px;}
.y99_c00014{bottom:346.085165px;}
.y98_c00014{bottom:346.335468px;}
.y97_c00014{bottom:346.950258px;}
.y96_c00014{bottom:347.655174px;}
.y95_c00014{bottom:347.839760px;}
.y94_c00014{bottom:348.461799px;}
.y93_c00014{bottom:348.571500px;}
.y92_c00014{bottom:367.294924px;}
.y91_c00014{bottom:367.457055px;}
.y90_c00014{bottom:367.742466px;}
.y8f_c00014{bottom:368.458020px;}
.y8e_c00014{bottom:368.919180px;}
.y8d_c00014{bottom:369.020642px;}
.y8c_c00014{bottom:369.115131px;}
.y8b_c00014{bottom:369.544203px;}
.y8a_c00014{bottom:369.733214px;}
.y89_c00014{bottom:369.922129px;}
.y88_c00014{bottom:370.101753px;}
.y87_c00014{bottom:370.440000px;}
.y86_c00014{bottom:391.525500px;}
.y85_c00014{bottom:413.550000px;}
.y84_c00014{bottom:435.802500px;}
.y7c_c00014{bottom:459.414600px;}
.y7b_c00014{bottom:459.415080px;}
.y7a_c00014{bottom:459.415296px;}
.y7d_c00014{bottom:459.415320px;}
.y7f_c00014{bottom:459.415344px;}
.y80_c00014{bottom:459.415596px;}
.y7e_c00014{bottom:459.415752px;}
.y82_c00014{bottom:459.415872px;}
.y79_c00014{bottom:459.415944px;}
.y83_c00014{bottom:459.415956px;}
.y81_c00014{bottom:459.416220px;}
.y78_c00014{bottom:480.035700px;}
.y77_c00014{bottom:480.316704px;}
.y76_c00014{bottom:480.672096px;}
.y75_c00014{bottom:480.757320px;}
.y74_c00014{bottom:480.884976px;}
.y73_c00014{bottom:481.036044px;}
.y72_c00014{bottom:481.285176px;}
.y71_c00014{bottom:481.683972px;}
.y70_c00014{bottom:481.856508px;}
.y6f_c00014{bottom:482.149344px;}
.y6e_c00014{bottom:482.340480px;}
.y6d_c00014{bottom:483.018456px;}
.y6c_c00014{bottom:501.563364px;}
.y6b_c00014{bottom:502.160940px;}
.y6a_c00014{bottom:502.381068px;}
.y69_c00014{bottom:502.741212px;}
.y68_c00014{bottom:503.404836px;}
.y67_c00014{bottom:503.979420px;}
.y66_c00014{bottom:505.114104px;}
.y65_c00014{bottom:505.746216px;}
.y64_c00014{bottom:506.240196px;}
.y62_c00014{bottom:527.487828px;}
.y61_c00014{bottom:527.488176px;}
.y5d_c00014{bottom:527.488320px;}
.y63_c00014{bottom:527.488440px;}
.y5e_c00014{bottom:527.488632px;}
.y60_c00014{bottom:527.488872px;}
.y5f_c00014{bottom:527.488956px;}
.y5c_c00014{bottom:548.602104px;}
.y5b_c00014{bottom:548.896704px;}
.y5a_c00014{bottom:549.178032px;}
.y59_c00014{bottom:549.461544px;}
.y58_c00014{bottom:549.745032px;}
.y57_c00014{bottom:550.289676px;}
.y56_c00014{bottom:550.441488px;}
.y55_c00014{bottom:550.667064px;}
.y54_c00014{bottom:551.137416px;}
.y53_c00014{bottom:551.602716px;}
.y52_c00014{bottom:572.305404px;}
.y51_c00014{bottom:572.306040px;}
.y50_c00014{bottom:572.306160px;}
.y4e_c00014{bottom:572.306232px;}
.y4c_c00014{bottom:572.306496px;}
.y4f_c00014{bottom:572.306508px;}
.y4b_c00014{bottom:572.306844px;}
.y4d_c00014{bottom:572.306868px;}
.y4a_c00014{bottom:572.307492px;}
.y48_c00014{bottom:595.264164px;}
.y44_c00014{bottom:595.264356px;}
.y45_c00014{bottom:595.264416px;}
.y49_c00014{bottom:595.264596px;}
.y46_c00014{bottom:595.264608px;}
.y47_c00014{bottom:595.264632px;}
.y43_c00014{bottom:595.264764px;}
.y42_c00014{bottom:595.265484px;}
.y41_c00014{bottom:595.265832px;}
.y40_c00014{bottom:615.923376px;}
.y3f_c00014{bottom:616.712232px;}
.y3e_c00014{bottom:617.655420px;}
.y3d_c00014{bottom:617.947452px;}
.y3c_c00014{bottom:618.384804px;}
.y3b_c00014{bottom:618.880860px;}
.y3a_c00014{bottom:619.136160px;}
.y39_c00014{bottom:619.854732px;}
.y38_c00014{bottom:620.460024px;}
.y37_c00014{bottom:638.302884px;}
.y36_c00014{bottom:638.528484px;}
.y35_c00014{bottom:639.196956px;}
.y34_c00014{bottom:640.430760px;}
.y33_c00014{bottom:640.548096px;}
.y32_c00014{bottom:640.871100px;}
.y31_c00014{bottom:641.073840px;}
.y30_c00014{bottom:641.520612px;}
.y2f_c00014{bottom:658.310592px;}
.y2e_c00014{bottom:659.125464px;}
.y2d_c00014{bottom:659.570892px;}
.y2c_c00014{bottom:660.016344px;}
.y2b_c00014{bottom:660.461892px;}
.y2a_c00014{bottom:660.936492px;}
.y29_c00014{bottom:662.086812px;}
.y28_c00014{bottom:663.390828px;}
.y27_c00014{bottom:679.514892px;}
.y26_c00014{bottom:679.971192px;}
.y25_c00014{bottom:680.497044px;}
.y24_c00014{bottom:681.008820px;}
.y23_c00014{bottom:681.567708px;}
.y22_c00014{bottom:681.942888px;}
.y21_c00014{bottom:682.275516px;}
.y20_c00014{bottom:682.567308px;}
.y1f_c00014{bottom:683.062284px;}
.y1e_c00014{bottom:683.276640px;}
.y1d_c00014{bottom:684.073020px;}
.y1c_c00014{bottom:684.368496px;}
.y1b_c00014{bottom:685.432500px;}
.y1a_c00014{bottom:686.071548px;}
.y19_c00014{bottom:704.393208px;}
.y18_c00014{bottom:704.934912px;}
.y17_c00014{bottom:705.289800px;}
.y16_c00014{bottom:705.847956px;}
.y15_c00014{bottom:706.039176px;}
.y14_c00014{bottom:706.525248px;}
.y13_c00014{bottom:706.681848px;}
.y12_c00014{bottom:706.928820px;}
.y11_c00014{bottom:707.314236px;}
.y10_c00014{bottom:707.537676px;}
.yf_c00014{bottom:707.940864px;}
.ye_c00014{bottom:726.464520px;}
.yd_c00014{bottom:727.858716px;}
.yc_c00014{bottom:728.374800px;}
.yb_c00014{bottom:728.482728px;}
.ya_c00014{bottom:728.686068px;}
.y9_c00014{bottom:728.731500px;}
.y8_c00014{bottom:729.000840px;}
.y7_c00014{bottom:729.260676px;}
.y6_c00014{bottom:729.381288px;}
.y5_c00014{bottom:729.901884px;}
.y4_c00014{bottom:730.072524px;}
.y3_c00014{bottom:730.632000px;}
.y2_c00014{bottom:752.001000px;}
.y1_c00014{bottom:795.564000px;}
.h5_c00014{height:61.951982px;}
.hf_c00014{height:65.102636px;}
.hc_c00014{height:67.201646px;}
.h4_c00014{height:67.202150px;}
.he_c00014{height:67.202722px;}
.ha_c00014{height:68.250000px;}
.h9_c00014{height:68.252184px;}
.h12_c00014{height:68.252764px;}
.h3_c00014{height:69.300000px;}
.h7_c00014{height:69.302218px;}
.h11_c00014{height:70.352849px;}
.h6_c00014{height:71.402285px;}
.h10_c00014{height:71.402892px;}
.h8_c00014{height:72.452318px;}
.hd_c00014{height:72.452934px;}
.hb_c00014{height:74.550000px;}
.h2_c00014{height:95.550000px;}
.h1_c00014{height:1080.000000px;}
.h0_c00014{height:1080.270000px;}
.w1_c00014{width:768.000000px;}
.w0_c00014{width:768.150000px;}
.x0_c00014{left:0.000000px;}
.x72_c00014{left:106.500000px;}
.x58_c00014{left:117.182400px;}
.x6_c00014{left:118.260000px;}
.x47_c00014{left:119.260980px;}
.x88_c00014{left:151.889531px;}
.x60_c00014{left:153.360000px;}
.x6c_c00014{left:163.080000px;}
.x20_c00014{left:167.236620px;}
.x4b_c00014{left:170.644368px;}
.x4e_c00014{left:172.147536px;}
.x18_c00014{left:176.454540px;}
.x37_c00014{left:178.621260px;}
.x32_c00014{left:182.152728px;}
.x64_c00014{left:183.870000px;}
.x3e_c00014{left:184.955964px;}
.xd_c00014{left:187.279500px;}
.x61_c00014{left:190.080000px;}
.x6e_c00014{left:192.699000px;}
.x1_c00014{left:194.670000px;}
.x80_c00014{left:196.024379px;}
.x3f_c00014{left:203.047116px;}
.x43_c00014{left:205.209600px;}
.xe_c00014{left:208.609500px;}
.x33_c00014{left:211.057956px;}
.x65_c00014{left:214.920000px;}
.x52_c00014{left:216.180120px;}
.x6f_c00014{left:219.687000px;}
.x7_c00014{left:221.670000px;}
.x2c_c00014{left:236.390292px;}
.x4f_c00014{left:242.348472px;}
.x53_c00014{left:243.447336px;}
.x8_c00014{left:247.050000px;}
.x21_c00014{left:249.046344px;}
.x38_c00014{left:250.441608px;}
.x48_c00014{left:252.906048px;}
.x59_c00014{left:256.236792px;}
.x34_c00014{left:257.246328px;}
.x81_c00014{left:258.936468px;}
.x77_c00014{left:260.797748px;}
.x19_c00014{left:263.437236px;}
.x40_c00014{left:267.039708px;}
.x5a_c00014{left:270.547704px;}
.x22_c00014{left:271.729932px;}
.xf_c00014{left:273.684000px;}
.x39_c00014{left:275.978700px;}
.x66_c00014{left:278.100000px;}
.x49_c00014{left:285.040800px;}
.x73_c00014{left:286.638000px;}
.x10_c00014{left:288.760500px;}
.x2_c00014{left:290.520000px;}
.x5b_c00014{left:292.959144px;}
.x1a_c00014{left:298.809024px;}
.x7c_c00014{left:302.138888px;}
.x4a_c00014{left:306.642468px;}
.x70_c00014{left:307.984500px;}
.x54_c00014{left:309.869364px;}
.x9_c00014{left:311.850000px;}
.x11_c00014{left:321.240000px;}
.x3a_c00014{left:325.609908px;}
.x7e_c00014{left:328.060385px;}
.x23_c00014{left:333.024984px;}
.x67_c00014{left:335.880000px;}
.x7d_c00014{left:339.400412px;}
.xa_c00014{left:341.550000px;}
.x62_c00014{left:343.980000px;}
.x3_c00014{left:345.060000px;}
.x24_c00014{left:349.506324px;}
.x41_c00014{left:351.013584px;}
.x7f_c00014{left:352.630869px;}
.x12_c00014{left:354.907500px;}
.x7a_c00014{left:358.458816px;}
.x13_c00014{left:360.586500px;}
.x44_c00014{left:365.863884px;}
.x3b_c00014{left:369.403212px;}
.x4_c00014{left:370.440000px;}
.x5c_c00014{left:373.961328px;}
.x68_c00014{left:375.300000px;}
.xb_c00014{left:379.890000px;}
.x74_c00014{left:382.759500px;}
.x2d_c00014{left:384.189252px;}
.x14_c00014{left:386.004000px;}
.x25_c00014{left:387.564300px;}
.x1b_c00014{left:390.581256px;}
.x4c_c00014{left:393.941160px;}
.x15_c00014{left:399.495000px;}
.x55_c00014{left:402.486108px;}
.x82_c00014{left:407.712524px;}
.x26_c00014{left:409.974900px;}
.x7b_c00014{left:413.881815px;}
.x1c_c00014{left:417.858972px;}
.x83_c00014{left:420.943590px;}
.x78_c00014{left:422.263706px;}
.x2e_c00014{left:424.694280px;}
.x50_c00014{left:432.192948px;}
.x27_c00014{left:435.614880px;}
.xc_c00014{left:439.020000px;}
.x56_c00014{left:442.201920px;}
.x69_c00014{left:445.230000px;}
.x5_c00014{left:450.090000px;}
.x42_c00014{left:452.267064px;}
.x57_c00014{left:454.355016px;}
.x84_c00014{left:456.854993px;}
.x79_c00014{left:462.225570px;}
.x16_c00014{left:464.005500px;}
.x2f_c00014{left:465.187308px;}
.x85_c00014{left:469.816046px;}
.x45_c00014{left:487.097136px;}
.x3c_c00014{left:492.866232px;}
.x75_c00014{left:493.998000px;}
.x1d_c00014{left:497.566608px;}
.x6a_c00014{left:501.660000px;}
.x6d_c00014{left:504.090000px;}
.x30_c00014{left:505.677336px;}
.x28_c00014{left:507.558012px;}
.x5d_c00014{left:509.235492px;}
.x86_c00014{left:530.567960px;}
.x5e_c00014{left:541.906080px;}
.x71_c00014{left:544.852500px;}
.x35_c00014{left:545.887644px;}
.x29_c00014{left:546.965940px;}
.x1e_c00014{left:548.303016px;}
.x6b_c00014{left:559.980000px;}
.x46_c00014{left:561.618900px;}
.x76_c00014{left:567.454500px;}
.x63_c00014{left:568.890000px;}
.x4d_c00014{left:570.256440px;}
.x3d_c00014{left:571.784472px;}
.x36_c00014{left:578.025396px;}
.x31_c00014{left:579.784560px;}
.x87_c00014{left:582.140631px;}
.x2a_c00014{left:587.383320px;}
.x5f_c00014{left:618.587988px;}
.x2b_c00014{left:622.481916px;}
.x1f_c00014{left:625.766640px;}
.x51_c00014{left:636.875316px;}
.x17_c00014{left:638.280000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._0_c00014{width:1368.282791pt;}
.fs3_c00014{font-size:55.068429pt;}
.fsd_c00014{font-size:57.869010pt;}
.fsa_c00014{font-size:59.734797pt;}
.fs2_c00014{font-size:59.735245pt;}
.fsc_c00014{font-size:59.735752pt;}
.fs8_c00014{font-size:60.666667pt;}
.fs7_c00014{font-size:60.668608pt;}
.fs10_c00014{font-size:60.669124pt;}
.fs1_c00014{font-size:61.600000pt;}
.fs5_c00014{font-size:61.601971pt;}
.fsf_c00014{font-size:62.535866pt;}
.fs4_c00014{font-size:63.468698pt;}
.fse_c00014{font-size:63.469237pt;}
.fs6_c00014{font-size:64.402061pt;}
.fsb_c00014{font-size:64.402608pt;}
.fs9_c00014{font-size:66.266667pt;}
.fs0_c00014{font-size:84.933333pt;}
.y0_c00014{bottom:0.000000pt;}
.yd9_c00014{bottom:185.997739pt;}
.yd8_c00014{bottom:186.645271pt;}
.yd7_c00014{bottom:186.969319pt;}
.yd6_c00014{bottom:187.924075pt;}
.yd5_c00014{bottom:188.454031pt;}
.yd4_c00014{bottom:188.574271pt;}
.yd3_c00014{bottom:188.929159pt;}
.yd2_c00014{bottom:189.125803pt;}
.yd1_c00014{bottom:207.769583pt;}
.ycf_c00014{bottom:207.770131pt;}
.yd0_c00014{bottom:207.770223pt;}
.yce_c00014{bottom:207.770412pt;}
.ycc_c00014{bottom:207.770453pt;}
.ycd_c00014{bottom:207.770773pt;}
.yc7_c00014{bottom:207.771007pt;}
.ycb_c00014{bottom:207.771055pt;}
.yc6_c00014{bottom:207.771101pt;}
.yc9_c00014{bottom:207.771164pt;}
.yca_c00014{bottom:207.771561pt;}
.yc8_c00014{bottom:207.771564pt;}
.yc5_c00014{bottom:207.771596pt;}
.yc4_c00014{bottom:207.772011pt;}
.yc3_c00014{bottom:207.772639pt;}
.yc1_c00014{bottom:227.457676pt;}
.yc0_c00014{bottom:227.457773pt;}
.yc2_c00014{bottom:227.457979pt;}
.ybb_c00014{bottom:227.458113pt;}
.ybd_c00014{bottom:227.458256pt;}
.ybf_c00014{bottom:227.458321pt;}
.ybe_c00014{bottom:227.458683pt;}
.ybc_c00014{bottom:227.458712pt;}
.yba_c00014{bottom:227.458729pt;}
.yb0_c00014{bottom:247.371159pt;}
.yb2_c00014{bottom:247.371289pt;}
.yaf_c00014{bottom:247.371336pt;}
.yb5_c00014{bottom:247.371607pt;}
.yb1_c00014{bottom:247.371704pt;}
.yb9_c00014{bottom:247.371773pt;}
.yb3_c00014{bottom:247.371888pt;}
.yb7_c00014{bottom:247.371897pt;}
.yb6_c00014{bottom:247.371965pt;}
.yb8_c00014{bottom:247.372096pt;}
.yb4_c00014{bottom:247.372113pt;}
.yae_c00014{bottom:266.005059pt;}
.yad_c00014{bottom:266.656088pt;}
.yac_c00014{bottom:266.965672pt;}
.yab_c00014{bottom:267.310381pt;}
.yaa_c00014{bottom:268.160027pt;}
.ya9_c00014{bottom:268.801771pt;}
.ya8_c00014{bottom:286.000072pt;}
.ya7_c00014{bottom:286.172695pt;}
.ya6_c00014{bottom:286.468025pt;}
.ya5_c00014{bottom:286.753889pt;}
.ya4_c00014{bottom:287.037581pt;}
.ya3_c00014{bottom:287.321249pt;}
.ya2_c00014{bottom:287.607125pt;}
.ya1_c00014{bottom:288.185297pt;}
.ya0_c00014{bottom:288.745999pt;}
.y9f_c00014{bottom:288.828152pt;}
.y9e_c00014{bottom:289.200561pt;}
.y9d_c00014{bottom:306.153697pt;}
.y9c_c00014{bottom:306.633313pt;}
.y9b_c00014{bottom:306.741349pt;}
.y9a_c00014{bottom:307.503817pt;}
.y99_c00014{bottom:307.631257pt;}
.y98_c00014{bottom:307.853749pt;}
.y97_c00014{bottom:308.400229pt;}
.y96_c00014{bottom:309.026821pt;}
.y95_c00014{bottom:309.190897pt;}
.y94_c00014{bottom:309.743821pt;}
.y93_c00014{bottom:309.841333pt;}
.y92_c00014{bottom:326.484377pt;}
.y91_c00014{bottom:326.628493pt;}
.y90_c00014{bottom:326.882192pt;}
.y8f_c00014{bottom:327.518240pt;}
.y8e_c00014{bottom:327.928160pt;}
.y8d_c00014{bottom:328.018348pt;}
.y8c_c00014{bottom:328.102339pt;}
.y8b_c00014{bottom:328.483736pt;}
.y8a_c00014{bottom:328.651745pt;}
.y89_c00014{bottom:328.819671pt;}
.y88_c00014{bottom:328.979336pt;}
.y87_c00014{bottom:329.280000pt;}
.y86_c00014{bottom:348.022667pt;}
.y85_c00014{bottom:367.600000pt;}
.y84_c00014{bottom:387.380000pt;}
.y7c_c00014{bottom:408.368533pt;}
.y7b_c00014{bottom:408.368960pt;}
.y7a_c00014{bottom:408.369152pt;}
.y7d_c00014{bottom:408.369173pt;}
.y7f_c00014{bottom:408.369195pt;}
.y80_c00014{bottom:408.369419pt;}
.y7e_c00014{bottom:408.369557pt;}
.y82_c00014{bottom:408.369664pt;}
.y79_c00014{bottom:408.369728pt;}
.y83_c00014{bottom:408.369739pt;}
.y81_c00014{bottom:408.369973pt;}
.y78_c00014{bottom:426.698400pt;}
.y77_c00014{bottom:426.948181pt;}
.y76_c00014{bottom:427.264085pt;}
.y75_c00014{bottom:427.339840pt;}
.y74_c00014{bottom:427.453312pt;}
.y73_c00014{bottom:427.587595pt;}
.y72_c00014{bottom:427.809045pt;}
.y71_c00014{bottom:428.163531pt;}
.y70_c00014{bottom:428.316896pt;}
.y6f_c00014{bottom:428.577195pt;}
.y6e_c00014{bottom:428.747093pt;}
.y6d_c00014{bottom:429.349739pt;}
.y6c_c00014{bottom:445.834101pt;}
.y6b_c00014{bottom:446.365280pt;}
.y6a_c00014{bottom:446.560949pt;}
.y69_c00014{bottom:446.881077pt;}
.y68_c00014{bottom:447.470965pt;}
.y67_c00014{bottom:447.981707pt;}
.y66_c00014{bottom:448.990315pt;}
.y65_c00014{bottom:449.552192pt;}
.y64_c00014{bottom:449.991285pt;}
.y62_c00014{bottom:468.878069pt;}
.y61_c00014{bottom:468.878379pt;}
.y5d_c00014{bottom:468.878507pt;}
.y63_c00014{bottom:468.878613pt;}
.y5e_c00014{bottom:468.878784pt;}
.y60_c00014{bottom:468.878997pt;}
.y5f_c00014{bottom:468.879072pt;}
.y5c_c00014{bottom:487.646315pt;}
.y5b_c00014{bottom:487.908181pt;}
.y5a_c00014{bottom:488.158251pt;}
.y59_c00014{bottom:488.410261pt;}
.y58_c00014{bottom:488.662251pt;}
.y57_c00014{bottom:489.146379pt;}
.y56_c00014{bottom:489.281323pt;}
.y55_c00014{bottom:489.481835pt;}
.y54_c00014{bottom:489.899925pt;}
.y53_c00014{bottom:490.313525pt;}
.y52_c00014{bottom:508.715915pt;}
.y51_c00014{bottom:508.716480pt;}
.y50_c00014{bottom:508.716587pt;}
.y4e_c00014{bottom:508.716651pt;}
.y4c_c00014{bottom:508.716885pt;}
.y4f_c00014{bottom:508.716896pt;}
.y4b_c00014{bottom:508.717195pt;}
.y4d_c00014{bottom:508.717216pt;}
.y4a_c00014{bottom:508.717771pt;}
.y48_c00014{bottom:529.123701pt;}
.y44_c00014{bottom:529.123872pt;}
.y45_c00014{bottom:529.123925pt;}
.y49_c00014{bottom:529.124085pt;}
.y46_c00014{bottom:529.124096pt;}
.y47_c00014{bottom:529.124117pt;}
.y43_c00014{bottom:529.124235pt;}
.y42_c00014{bottom:529.124875pt;}
.y41_c00014{bottom:529.125184pt;}
.y40_c00014{bottom:547.487445pt;}
.y3f_c00014{bottom:548.188651pt;}
.y3e_c00014{bottom:549.027040pt;}
.y3d_c00014{bottom:549.286624pt;}
.y3c_c00014{bottom:549.675381pt;}
.y3b_c00014{bottom:550.116320pt;}
.y3a_c00014{bottom:550.343253pt;}
.y39_c00014{bottom:550.981984pt;}
.y38_c00014{bottom:551.520021pt;}
.y37_c00014{bottom:567.380341pt;}
.y36_c00014{bottom:567.580875pt;}
.y35_c00014{bottom:568.175072pt;}
.y34_c00014{bottom:569.271787pt;}
.y33_c00014{bottom:569.376085pt;}
.y32_c00014{bottom:569.663200pt;}
.y31_c00014{bottom:569.843413pt;}
.y30_c00014{bottom:570.240544pt;}
.y2f_c00014{bottom:585.164971pt;}
.y2e_c00014{bottom:585.889301pt;}
.y2d_c00014{bottom:586.285237pt;}
.y2c_c00014{bottom:586.681195pt;}
.y2b_c00014{bottom:587.077237pt;}
.y2a_c00014{bottom:587.499104pt;}
.y29_c00014{bottom:588.521611pt;}
.y28_c00014{bottom:589.680736pt;}
.y27_c00014{bottom:604.013237pt;}
.y26_c00014{bottom:604.418837pt;}
.y25_c00014{bottom:604.886261pt;}
.y24_c00014{bottom:605.341173pt;}
.y23_c00014{bottom:605.837963pt;}
.y22_c00014{bottom:606.171456pt;}
.y21_c00014{bottom:606.467125pt;}
.y20_c00014{bottom:606.726496pt;}
.y1f_c00014{bottom:607.166475pt;}
.y1e_c00014{bottom:607.357013pt;}
.y1d_c00014{bottom:608.064907pt;}
.y1c_c00014{bottom:608.327552pt;}
.y1b_c00014{bottom:609.273333pt;}
.y1a_c00014{bottom:609.841376pt;}
.y19_c00014{bottom:626.127296pt;}
.y18_c00014{bottom:626.608811pt;}
.y17_c00014{bottom:626.924267pt;}
.y16_c00014{bottom:627.420405pt;}
.y15_c00014{bottom:627.590379pt;}
.y14_c00014{bottom:628.022443pt;}
.y13_c00014{bottom:628.161643pt;}
.y12_c00014{bottom:628.381173pt;}
.y11_c00014{bottom:628.723765pt;}
.y10_c00014{bottom:628.922379pt;}
.yf_c00014{bottom:629.280768pt;}
.ye_c00014{bottom:645.746240pt;}
.yd_c00014{bottom:646.985525pt;}
.yc_c00014{bottom:647.444267pt;}
.yb_c00014{bottom:647.540203pt;}
.ya_c00014{bottom:647.720949pt;}
.y9_c00014{bottom:647.761333pt;}
.y8_c00014{bottom:648.000747pt;}
.y7_c00014{bottom:648.231712pt;}
.y6_c00014{bottom:648.338923pt;}
.y5_c00014{bottom:648.801675pt;}
.y4_c00014{bottom:648.953355pt;}
.y3_c00014{bottom:649.450667pt;}
.y2_c00014{bottom:668.445333pt;}
.y1_c00014{bottom:707.168000pt;}
.h5_c00014{height:55.068429pt;}
.hf_c00014{height:57.869010pt;}
.hc_c00014{height:59.734797pt;}
.h4_c00014{height:59.735245pt;}
.he_c00014{height:59.735752pt;}
.ha_c00014{height:60.666667pt;}
.h9_c00014{height:60.668608pt;}
.h12_c00014{height:60.669124pt;}
.h3_c00014{height:61.600000pt;}
.h7_c00014{height:61.601971pt;}
.h11_c00014{height:62.535866pt;}
.h6_c00014{height:63.468698pt;}
.h10_c00014{height:63.469237pt;}
.h8_c00014{height:64.402061pt;}
.hd_c00014{height:64.402608pt;}
.hb_c00014{height:66.266667pt;}
.h2_c00014{height:84.933333pt;}
.h1_c00014{height:960.000000pt;}
.h0_c00014{height:960.240000pt;}
.w1_c00014{width:682.666667pt;}
.w0_c00014{width:682.800000pt;}
.x0_c00014{left:0.000000pt;}
.x72_c00014{left:94.666667pt;}
.x58_c00014{left:104.162133pt;}
.x6_c00014{left:105.120000pt;}
.x47_c00014{left:106.009760pt;}
.x88_c00014{left:135.012916pt;}
.x60_c00014{left:136.320000pt;}
.x6c_c00014{left:144.960000pt;}
.x20_c00014{left:148.654773pt;}
.x4b_c00014{left:151.683883pt;}
.x4e_c00014{left:153.020032pt;}
.x18_c00014{left:156.848480pt;}
.x37_c00014{left:158.774453pt;}
.x32_c00014{left:161.913536pt;}
.x64_c00014{left:163.440000pt;}
.x3e_c00014{left:164.405301pt;}
.xd_c00014{left:166.470667pt;}
.x61_c00014{left:168.960000pt;}
.x6e_c00014{left:171.288000pt;}
.x1_c00014{left:173.040000pt;}
.x80_c00014{left:174.243892pt;}
.x3f_c00014{left:180.486325pt;}
.x43_c00014{left:182.408533pt;}
.xe_c00014{left:185.430667pt;}
.x33_c00014{left:187.607072pt;}
.x65_c00014{left:191.040000pt;}
.x52_c00014{left:192.160107pt;}
.x6f_c00014{left:195.277333pt;}
.x7_c00014{left:197.040000pt;}
.x2c_c00014{left:210.124704pt;}
.x4f_c00014{left:215.420864pt;}
.x53_c00014{left:216.397632pt;}
.x8_c00014{left:219.600000pt;}
.x21_c00014{left:221.374528pt;}
.x38_c00014{left:222.614763pt;}
.x48_c00014{left:224.805376pt;}
.x59_c00014{left:227.766037pt;}
.x34_c00014{left:228.663403pt;}
.x81_c00014{left:230.165749pt;}
.x77_c00014{left:231.820220pt;}
.x19_c00014{left:234.166432pt;}
.x40_c00014{left:237.368629pt;}
.x5a_c00014{left:240.486848pt;}
.x22_c00014{left:241.537717pt;}
.xf_c00014{left:243.274667pt;}
.x39_c00014{left:245.314400pt;}
.x66_c00014{left:247.200000pt;}
.x49_c00014{left:253.369600pt;}
.x73_c00014{left:254.789333pt;}
.x10_c00014{left:256.676000pt;}
.x2_c00014{left:258.240000pt;}
.x5b_c00014{left:260.408128pt;}
.x1a_c00014{left:265.608021pt;}
.x7c_c00014{left:268.567900pt;}
.x4a_c00014{left:272.571083pt;}
.x70_c00014{left:273.764000pt;}
.x54_c00014{left:275.439435pt;}
.x9_c00014{left:277.200000pt;}
.x11_c00014{left:285.546667pt;}
.x3a_c00014{left:289.431029pt;}
.x7e_c00014{left:291.609231pt;}
.x23_c00014{left:296.022208pt;}
.x67_c00014{left:298.560000pt;}
.x7d_c00014{left:301.689255pt;}
.xa_c00014{left:303.600000pt;}
.x62_c00014{left:305.760000pt;}
.x3_c00014{left:306.720000pt;}
.x24_c00014{left:310.672288pt;}
.x41_c00014{left:312.012075pt;}
.x7f_c00014{left:313.449661pt;}
.x12_c00014{left:315.473333pt;}
.x7a_c00014{left:318.630059pt;}
.x13_c00014{left:320.521333pt;}
.x44_c00014{left:325.212341pt;}
.x3b_c00014{left:328.358411pt;}
.x4_c00014{left:329.280000pt;}
.x5c_c00014{left:332.410069pt;}
.x68_c00014{left:333.600000pt;}
.xb_c00014{left:337.680000pt;}
.x74_c00014{left:340.230667pt;}
.x2d_c00014{left:341.501557pt;}
.x14_c00014{left:343.114667pt;}
.x25_c00014{left:344.501600pt;}
.x1b_c00014{left:347.183339pt;}
.x4c_c00014{left:350.169920pt;}
.x15_c00014{left:355.106667pt;}
.x55_c00014{left:357.765429pt;}
.x82_c00014{left:362.411132pt;}
.x26_c00014{left:364.422133pt;}
.x7b_c00014{left:367.894947pt;}
.x1c_c00014{left:371.430197pt;}
.x83_c00014{left:374.172080pt;}
.x78_c00014{left:375.345516pt;}
.x2e_c00014{left:377.506027pt;}
.x50_c00014{left:384.171509pt;}
.x27_c00014{left:387.213227pt;}
.xc_c00014{left:390.240000pt;}
.x56_c00014{left:393.068373pt;}
.x69_c00014{left:395.760000pt;}
.x5_c00014{left:400.080000pt;}
.x42_c00014{left:402.015168pt;}
.x57_c00014{left:403.871125pt;}
.x84_c00014{left:406.093327pt;}
.x79_c00014{left:410.867173pt;}
.x16_c00014{left:412.449333pt;}
.x2f_c00014{left:413.499829pt;}
.x85_c00014{left:417.614263pt;}
.x45_c00014{left:432.975232pt;}
.x3c_c00014{left:438.103317pt;}
.x75_c00014{left:439.109333pt;}
.x1d_c00014{left:442.281429pt;}
.x6a_c00014{left:445.920000pt;}
.x6d_c00014{left:448.080000pt;}
.x30_c00014{left:449.490965pt;}
.x28_c00014{left:451.162677pt;}
.x5d_c00014{left:452.653771pt;}
.x86_c00014{left:471.615964pt;}
.x5e_c00014{left:481.694293pt;}
.x71_c00014{left:484.313333pt;}
.x35_c00014{left:485.233461pt;}
.x29_c00014{left:486.191947pt;}
.x1e_c00014{left:487.380459pt;}
.x6b_c00014{left:497.760000pt;}
.x46_c00014{left:499.216800pt;}
.x76_c00014{left:504.404000pt;}
.x63_c00014{left:505.680000pt;}
.x4d_c00014{left:506.894613pt;}
.x3d_c00014{left:508.252864pt;}
.x36_c00014{left:513.800352pt;}
.x31_c00014{left:515.364053pt;}
.x87_c00014{left:517.458339pt;}
.x2a_c00014{left:522.118507pt;}
.x5f_c00014{left:549.855989pt;}
.x2b_c00014{left:553.317259pt;}
.x1f_c00014{left:556.237013pt;}
.x51_c00014{left:566.111392pt;}
.x17_c00014{left:567.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m44_c00015{transform:matrix(0.055389,-0.000388,0.001750,0.249994,0,0);-ms-transform:matrix(0.055389,-0.000388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.055389,-0.000388,0.001750,0.249994,0,0);}
.m31_c00015{transform:matrix(0.060609,-0.000424,0.001750,0.249994,0,0);-ms-transform:matrix(0.060609,-0.000424,0.001750,0.249994,0,0);-webkit-transform:matrix(0.060609,-0.000424,0.001750,0.249994,0,0);}
.m32_c00015{transform:matrix(0.060789,-0.000426,0.001750,0.249994,0,0);-ms-transform:matrix(0.060789,-0.000426,0.001750,0.249994,0,0);-webkit-transform:matrix(0.060789,-0.000426,0.001750,0.249994,0,0);}
.m18_c00015{transform:matrix(0.063900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063900,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{transform:matrix(0.066118,-0.000463,0.001750,0.249994,0,0);-ms-transform:matrix(0.066118,-0.000463,0.001750,0.249994,0,0);-webkit-transform:matrix(0.066118,-0.000463,0.001750,0.249994,0,0);}
.m38_c00015{transform:matrix(0.068928,-0.000482,0.001750,0.249994,0,0);-ms-transform:matrix(0.068928,-0.000482,0.001750,0.249994,0,0);-webkit-transform:matrix(0.068928,-0.000482,0.001750,0.249994,0,0);}
.m27_c00015{transform:matrix(0.069763,-0.000488,0.001750,0.249994,0,0);-ms-transform:matrix(0.069763,-0.000488,0.001750,0.249994,0,0);-webkit-transform:matrix(0.069763,-0.000488,0.001750,0.249994,0,0);}
.m2a_c00015{transform:matrix(0.072728,-0.000509,0.001750,0.249994,0,0);-ms-transform:matrix(0.072728,-0.000509,0.001750,0.249994,0,0);-webkit-transform:matrix(0.072728,-0.000509,0.001750,0.249994,0,0);}
.m29_c00015{transform:matrix(0.072983,-0.000511,0.001750,0.249994,0,0);-ms-transform:matrix(0.072983,-0.000511,0.001750,0.249994,0,0);-webkit-transform:matrix(0.072983,-0.000511,0.001750,0.249994,0,0);}
.m26_c00015{transform:matrix(0.078788,-0.000552,0.001750,0.249994,0,0);-ms-transform:matrix(0.078788,-0.000552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.078788,-0.000552,0.001750,0.249994,0,0);}
.m12_c00015{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);}
.m1c_c00015{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);}
.m11_c00015{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);}
.m3f_c00015{transform:matrix(0.152656,-0.001069,0.001750,0.249994,0,0);-ms-transform:matrix(0.152656,-0.001069,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152656,-0.001069,0.001750,0.249994,0,0);}
.m3e_c00015{transform:matrix(0.154301,-0.001080,0.001750,0.249994,0,0);-ms-transform:matrix(0.154301,-0.001080,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154301,-0.001080,0.001750,0.249994,0,0);}
.m1e_c00015{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);}
.m2e_c00015{transform:matrix(0.159166,-0.001114,0.001750,0.249994,0,0);-ms-transform:matrix(0.159166,-0.001114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159166,-0.001114,0.001750,0.249994,0,0);}
.m2f_c00015{transform:matrix(0.160256,-0.001122,0.001750,0.249994,0,0);-ms-transform:matrix(0.160256,-0.001122,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160256,-0.001122,0.001750,0.249994,0,0);}
.m37_c00015{transform:matrix(0.160326,-0.001122,0.001750,0.249994,0,0);-ms-transform:matrix(0.160326,-0.001122,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160326,-0.001122,0.001750,0.249994,0,0);}
.m1f_c00015{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);}
.m36_c00015{transform:matrix(0.162691,-0.001139,0.001750,0.249994,0,0);-ms-transform:matrix(0.162691,-0.001139,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162691,-0.001139,0.001750,0.249994,0,0);}
.m30_c00015{transform:matrix(0.164481,-0.001151,0.001750,0.249994,0,0);-ms-transform:matrix(0.164481,-0.001151,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164481,-0.001151,0.001750,0.249994,0,0);}
.mc_c00015{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);}
.m1b_c00015{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);}
.m42_c00015{transform:matrix(0.168161,-0.001177,0.001750,0.249994,0,0);-ms-transform:matrix(0.168161,-0.001177,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168161,-0.001177,0.001750,0.249994,0,0);}
.m24_c00015{transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.172036,-0.001204,0.001750,0.249994,0,0);-ms-transform:matrix(0.172036,-0.001204,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172036,-0.001204,0.001750,0.249994,0,0);}
.m40_c00015{transform:matrix(0.172576,-0.001208,0.001750,0.249994,0,0);-ms-transform:matrix(0.172576,-0.001208,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172576,-0.001208,0.001750,0.249994,0,0);}
.m1a_c00015{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);}
.m3c_c00015{transform:matrix(0.173171,-0.001212,0.001750,0.249994,0,0);-ms-transform:matrix(0.173171,-0.001212,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173171,-0.001212,0.001750,0.249994,0,0);}
.m20_c00015{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);}
.md_c00015{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);}
.m43_c00015{transform:matrix(0.184405,-0.001291,0.001750,0.249994,0,0);-ms-transform:matrix(0.184405,-0.001291,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184405,-0.001291,0.001750,0.249994,0,0);}
.m33_c00015{transform:matrix(0.186045,-0.001302,0.001750,0.249994,0,0);-ms-transform:matrix(0.186045,-0.001302,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186045,-0.001302,0.001750,0.249994,0,0);}
.m23_c00015{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);}
.m0_c00015{transform:matrix(0.191065,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191065,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191065,-0.001911,0.002500,0.249988,0,0);}
.m45_c00015{transform:matrix(0.191390,-0.001340,0.001750,0.249994,0,0);-ms-transform:matrix(0.191390,-0.001340,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191390,-0.001340,0.001750,0.249994,0,0);}
.m1d_c00015{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);}
.m10_c00015{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);}
.m8_c00015{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);}
.m7_c00015{transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);}
.m3d_c00015{transform:matrix(0.195660,-0.001370,0.001750,0.249994,0,0);-ms-transform:matrix(0.195660,-0.001370,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195660,-0.001370,0.001750,0.249994,0,0);}
.m41_c00015{transform:matrix(0.196475,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196475,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196475,-0.001375,0.001750,0.249994,0,0);}
.m35_c00015{transform:matrix(0.203380,-0.001424,0.001750,0.249994,0,0);-ms-transform:matrix(0.203380,-0.001424,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203380,-0.001424,0.001750,0.249994,0,0);}
.m4_c00015{transform:matrix(0.207175,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207175,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207175,-0.002072,0.002500,0.249988,0,0);}
.mf_c00015{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);}
.m1_c00015{transform:matrix(0.209715,-0.002097,0.002500,0.249988,0,0);-ms-transform:matrix(0.209715,-0.002097,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209715,-0.002097,0.002500,0.249988,0,0);}
.m3_c00015{transform:matrix(0.211699,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211699,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211699,-0.002117,0.002500,0.249988,0,0);}
.m13_c00015{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);}
.m25_c00015{transform:matrix(0.212735,-0.001489,0.001750,0.249994,0,0);-ms-transform:matrix(0.212735,-0.001489,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212735,-0.001489,0.001750,0.249994,0,0);}
.m19_c00015{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);}
.m14_c00015{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);}
.me_c00015{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);}
.m5_c00015{transform:matrix(0.228709,-0.002287,0.002500,0.249988,0,0);-ms-transform:matrix(0.228709,-0.002287,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228709,-0.002287,0.002500,0.249988,0,0);}
.m2_c00015{transform:matrix(0.231033,-0.002310,0.002500,0.249988,0,0);-ms-transform:matrix(0.231033,-0.002310,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231033,-0.002310,0.002500,0.249988,0,0);}
.m6_c00015{transform:matrix(0.232098,-0.002321,0.002500,0.249988,0,0);-ms-transform:matrix(0.232098,-0.002321,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232098,-0.002321,0.002500,0.249988,0,0);}
.m17_c00015{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);}
.m15_c00015{transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{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);}
.m3b_c00015{transform:matrix(0.252529,-0.001768,0.001750,0.249994,0,0);-ms-transform:matrix(0.252529,-0.001768,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252529,-0.001768,0.001750,0.249994,0,0);}
.m2b_c00015{transform:matrix(0.259809,-0.001819,0.001750,0.249994,0,0);-ms-transform:matrix(0.259809,-0.001819,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259809,-0.001819,0.001750,0.249994,0,0);}
.m22_c00015{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);}
.m21_c00015{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);}
.ma_c00015{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.331810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331810,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.352486,-0.002467,0.001750,0.249994,0,0);-ms-transform:matrix(0.352486,-0.002467,0.001750,0.249994,0,0);-webkit-transform:matrix(0.352486,-0.002467,0.001750,0.249994,0,0);}
.m9_c00015{transform:matrix(0.355920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355920,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.356501,-0.002496,0.001750,0.249994,0,0);-ms-transform:matrix(0.356501,-0.002496,0.001750,0.249994,0,0);-webkit-transform:matrix(0.356501,-0.002496,0.001750,0.249994,0,0);}
.m28_c00015{transform:matrix(0.379811,-0.002659,0.001750,0.249994,0,0);-ms-transform:matrix(0.379811,-0.002659,0.001750,0.249994,0,0);-webkit-transform:matrix(0.379811,-0.002659,0.001750,0.249994,0,0);}
.m3a_c00015{transform:matrix(0.467384,-0.003272,0.001750,0.249994,0,0);-ms-transform:matrix(0.467384,-0.003272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.467384,-0.003272,0.001750,0.249994,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;}
.fs0_c00015{font-size:61.953097px;}
.fs5_c00015{font-size:63.001543px;}
.fs2_c00015{font-size:68.250000px;}
.fs3_c00015{font-size:69.300000px;}
.fs7_c00015{font-size:69.301698px;}
.fs1_c00015{font-size:74.550000px;}
.fs4_c00015{font-size:75.600000px;}
.fs8_c00015{font-size:78.751929px;}
.fs6_c00015{font-size:81.902007px;}
.y0_c00015{bottom:0.000000px;}
.y43_c00015{bottom:723.983036px;}
.y3e_c00015{bottom:723.983318px;}
.y42_c00015{bottom:723.983387px;}
.y44_c00015{bottom:723.983666px;}
.y3f_c00015{bottom:723.983667px;}
.y40_c00015{bottom:723.983817px;}
.y41_c00015{bottom:723.984047px;}
.y45_c00015{bottom:723.984326px;}
.y46_c00015{bottom:723.984515px;}
.y47_c00015{bottom:723.984725px;}
.y36_c00015{bottom:745.199877px;}
.y37_c00015{bottom:745.702670px;}
.y38_c00015{bottom:745.927664px;}
.y39_c00015{bottom:746.254518px;}
.y3a_c00015{bottom:747.327629px;}
.y3b_c00015{bottom:747.611150px;}
.y3c_c00015{bottom:747.897128px;}
.y3d_c00015{bottom:748.360356px;}
.y2e_c00015{bottom:767.609802px;}
.y2f_c00015{bottom:768.339563px;}
.y30_c00015{bottom:769.091615px;}
.y31_c00015{bottom:769.516885px;}
.y32_c00015{bottom:769.696499px;}
.y33_c00015{bottom:770.336662px;}
.y34_c00015{bottom:770.612571px;}
.y35_c00015{bottom:770.769872px;}
.y26_c00015{bottom:791.370000px;}
.y27_c00015{bottom:792.412734px;}
.y28_c00015{bottom:792.698134px;}
.y29_c00015{bottom:792.975996px;}
.y2a_c00015{bottom:793.543017px;}
.y2b_c00015{bottom:793.822727px;}
.y2c_c00015{bottom:794.106216px;}
.y2d_c00015{bottom:794.259632px;}
.y1b_c00015{bottom:813.241500px;}
.y1c_c00015{bottom:814.030500px;}
.y1d_c00015{bottom:814.213500px;}
.y1e_c00015{bottom:814.698000px;}
.y1f_c00015{bottom:814.944000px;}
.y20_c00015{bottom:815.107500px;}
.y21_c00015{bottom:815.575500px;}
.y22_c00015{bottom:815.758500px;}
.y23_c00015{bottom:816.318000px;}
.y24_c00015{bottom:816.780000px;}
.y25_c00015{bottom:816.931500px;}
.y15_c00015{bottom:836.461500px;}
.y16_c00015{bottom:837.013500px;}
.y17_c00015{bottom:837.319500px;}
.y18_c00015{bottom:837.808500px;}
.y19_c00015{bottom:839.581500px;}
.y1a_c00015{bottom:840.505500px;}
.ya_c00015{bottom:858.871500px;}
.yb_c00015{bottom:859.366500px;}
.yc_c00015{bottom:859.585500px;}
.yd_c00015{bottom:859.852500px;}
.ye_c00015{bottom:860.076000px;}
.yf_c00015{bottom:860.265000px;}
.y10_c00015{bottom:860.919000px;}
.y11_c00015{bottom:861.675000px;}
.y12_c00015{bottom:862.540500px;}
.y13_c00015{bottom:862.702500px;}
.y14_c00015{bottom:862.920000px;}
.y1_c00015{bottom:881.281500px;}
.y2_c00015{bottom:881.767665px;}
.y3_c00015{bottom:882.002475px;}
.y4_c00015{bottom:882.383370px;}
.y9_c00015{bottom:882.499500px;}
.y5_c00015{bottom:882.639885px;}
.y6_c00015{bottom:883.163625px;}
.y7_c00015{bottom:883.322865px;}
.y8_c00015{bottom:883.706415px;}
.h2_c00015{height:61.953097px;}
.h7_c00015{height:63.001543px;}
.h4_c00015{height:68.250000px;}
.h5_c00015{height:69.300000px;}
.h9_c00015{height:69.301698px;}
.h3_c00015{height:74.550000px;}
.h6_c00015{height:75.600000px;}
.ha_c00015{height:78.751929px;}
.h8_c00015{height:81.902007px;}
.h0_c00015{height:1086.450000px;}
.h1_c00015{height:1086.750000px;}
.w1_c00015{width:771.000000px;}
.w0_c00015{width:771.120000px;}
.x0_c00015{left:0.000000px;}
.x13_c00015{left:195.318000px;}
.x1_c00015{left:196.408500px;}
.x2f_c00015{left:197.726021px;}
.x22_c00015{left:231.493500px;}
.x2_c00015{left:245.025000px;}
.xa_c00015{left:250.945500px;}
.x14_c00015{left:256.635000px;}
.x36_c00015{left:257.847472px;}
.x3_c00015{left:268.506000px;}
.x30_c00015{left:269.553520px;}
.xb_c00015{left:275.244000px;}
.x37_c00015{left:280.798596px;}
.x15_c00015{left:290.635500px;}
.x18_c00015{left:294.411000px;}
.x28_c00015{left:300.095567px;}
.x31_c00015{left:301.695520px;}
.xc_c00015{left:304.908000px;}
.x4_c00015{left:306.595500px;}
.x19_c00015{left:317.365500px;}
.xd_c00015{left:329.790000px;}
.x5_c00015{left:332.247000px;}
.x38_c00015{left:339.119952px;}
.x16_c00015{left:344.886000px;}
.x32_c00015{left:348.389021px;}
.xe_c00015{left:350.860500px;}
.x39_c00015{left:367.741359px;}
.x1a_c00015{left:377.850000px;}
.x23_c00015{left:380.455500px;}
.x6_c00015{left:384.621000px;}
.x7_c00015{left:400.545000px;}
.x29_c00015{left:407.531567px;}
.x1b_c00015{left:408.621000px;}
.x24_c00015{left:421.227000px;}
.xf_c00015{left:423.487500px;}
.x1c_c00015{left:429.145500px;}
.x8_c00015{left:438.900000px;}
.x25_c00015{left:460.921500px;}
.x3a_c00015{left:463.053031px;}
.x2a_c00015{left:468.284567px;}
.x3b_c00015{left:481.143913px;}
.x1d_c00015{left:487.735500px;}
.x2b_c00015{left:493.943567px;}
.x33_c00015{left:501.690521px;}
.x10_c00015{left:507.456000px;}
.x1e_c00015{left:510.682500px;}
.x17_c00015{left:541.921500px;}
.x1f_c00015{left:580.623000px;}
.x26_c00015{left:581.883000px;}
.x34_c00015{left:583.047521px;}
.x2c_c00015{left:585.395567px;}
.x11_c00015{left:603.556500px;}
.x12_c00015{left:621.571500px;}
.x2d_c00015{left:624.811067px;}
.x20_c00015{left:638.362500px;}
.x27_c00015{left:644.298000px;}
.x9_c00015{left:645.300000px;}
.x2e_c00015{left:647.282567px;}
.x35_c00015{left:649.223020px;}
.x21_c00015{left:657.286500px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs0_c00015{font-size:55.069420pt;}
.fs5_c00015{font-size:56.001372pt;}
.fs2_c00015{font-size:60.666667pt;}
.fs3_c00015{font-size:61.600000pt;}
.fs7_c00015{font-size:61.601509pt;}
.fs1_c00015{font-size:66.266667pt;}
.fs4_c00015{font-size:67.200000pt;}
.fs8_c00015{font-size:70.001715pt;}
.fs6_c00015{font-size:72.801784pt;}
.y0_c00015{bottom:0.000000pt;}
.y43_c00015{bottom:643.540476pt;}
.y3e_c00015{bottom:643.540727pt;}
.y42_c00015{bottom:643.540788pt;}
.y44_c00015{bottom:643.541036pt;}
.y3f_c00015{bottom:643.541037pt;}
.y40_c00015{bottom:643.541171pt;}
.y41_c00015{bottom:643.541375pt;}
.y45_c00015{bottom:643.541623pt;}
.y46_c00015{bottom:643.541791pt;}
.y47_c00015{bottom:643.541977pt;}
.y36_c00015{bottom:662.399891pt;}
.y37_c00015{bottom:662.846817pt;}
.y38_c00015{bottom:663.046812pt;}
.y39_c00015{bottom:663.337349pt;}
.y3a_c00015{bottom:664.291225pt;}
.y3b_c00015{bottom:664.543244pt;}
.y3c_c00015{bottom:664.797447pt;}
.y3d_c00015{bottom:665.209205pt;}
.y2e_c00015{bottom:682.319824pt;}
.y2f_c00015{bottom:682.968500pt;}
.y30_c00015{bottom:683.636991pt;}
.y31_c00015{bottom:684.015009pt;}
.y32_c00015{bottom:684.174665pt;}
.y33_c00015{bottom:684.743700pt;}
.y34_c00015{bottom:684.988952pt;}
.y35_c00015{bottom:685.128775pt;}
.y26_c00015{bottom:703.440000pt;}
.y27_c00015{bottom:704.366875pt;}
.y28_c00015{bottom:704.620564pt;}
.y29_c00015{bottom:704.867552pt;}
.y2a_c00015{bottom:705.371571pt;}
.y2b_c00015{bottom:705.620201pt;}
.y2c_c00015{bottom:705.872192pt;}
.y2d_c00015{bottom:706.008561pt;}
.y1b_c00015{bottom:722.881333pt;}
.y1c_c00015{bottom:723.582667pt;}
.y1d_c00015{bottom:723.745333pt;}
.y1e_c00015{bottom:724.176000pt;}
.y1f_c00015{bottom:724.394667pt;}
.y20_c00015{bottom:724.540000pt;}
.y21_c00015{bottom:724.956000pt;}
.y22_c00015{bottom:725.118667pt;}
.y23_c00015{bottom:725.616000pt;}
.y24_c00015{bottom:726.026667pt;}
.y25_c00015{bottom:726.161333pt;}
.y15_c00015{bottom:743.521333pt;}
.y16_c00015{bottom:744.012000pt;}
.y17_c00015{bottom:744.284000pt;}
.y18_c00015{bottom:744.718667pt;}
.y19_c00015{bottom:746.294667pt;}
.y1a_c00015{bottom:747.116000pt;}
.ya_c00015{bottom:763.441333pt;}
.yb_c00015{bottom:763.881333pt;}
.yc_c00015{bottom:764.076000pt;}
.yd_c00015{bottom:764.313333pt;}
.ye_c00015{bottom:764.512000pt;}
.yf_c00015{bottom:764.680000pt;}
.y10_c00015{bottom:765.261333pt;}
.y11_c00015{bottom:765.933333pt;}
.y12_c00015{bottom:766.702667pt;}
.y13_c00015{bottom:766.846667pt;}
.y14_c00015{bottom:767.040000pt;}
.y1_c00015{bottom:783.361333pt;}
.y2_c00015{bottom:783.793480pt;}
.y3_c00015{bottom:784.002200pt;}
.y4_c00015{bottom:784.340773pt;}
.y9_c00015{bottom:784.444000pt;}
.y5_c00015{bottom:784.568787pt;}
.y6_c00015{bottom:785.034333pt;}
.y7_c00015{bottom:785.175880pt;}
.y8_c00015{bottom:785.516813pt;}
.h2_c00015{height:55.069420pt;}
.h7_c00015{height:56.001372pt;}
.h4_c00015{height:60.666667pt;}
.h5_c00015{height:61.600000pt;}
.h9_c00015{height:61.601509pt;}
.h3_c00015{height:66.266667pt;}
.h6_c00015{height:67.200000pt;}
.ha_c00015{height:70.001715pt;}
.h8_c00015{height:72.801784pt;}
.h0_c00015{height:965.733333pt;}
.h1_c00015{height:966.000000pt;}
.w1_c00015{width:685.333333pt;}
.w0_c00015{width:685.440000pt;}
.x0_c00015{left:0.000000pt;}
.x13_c00015{left:173.616000pt;}
.x1_c00015{left:174.585333pt;}
.x2f_c00015{left:175.756463pt;}
.x22_c00015{left:205.772000pt;}
.x2_c00015{left:217.800000pt;}
.xa_c00015{left:223.062667pt;}
.x14_c00015{left:228.120000pt;}
.x36_c00015{left:229.197753pt;}
.x3_c00015{left:238.672000pt;}
.x30_c00015{left:239.603129pt;}
.xb_c00015{left:244.661333pt;}
.x37_c00015{left:249.598752pt;}
.x15_c00015{left:258.342667pt;}
.x18_c00015{left:261.698667pt;}
.x28_c00015{left:266.751615pt;}
.x31_c00015{left:268.173796pt;}
.xc_c00015{left:271.029333pt;}
.x4_c00015{left:272.529333pt;}
.x19_c00015{left:282.102667pt;}
.xd_c00015{left:293.146667pt;}
.x5_c00015{left:295.330667pt;}
.x38_c00015{left:301.439957pt;}
.x16_c00015{left:306.565333pt;}
.x32_c00015{left:309.679129pt;}
.xe_c00015{left:311.876000pt;}
.x39_c00015{left:326.881208pt;}
.x1a_c00015{left:335.866667pt;}
.x23_c00015{left:338.182667pt;}
.x6_c00015{left:341.885333pt;}
.x7_c00015{left:356.040000pt;}
.x29_c00015{left:362.250281pt;}
.x1b_c00015{left:363.218667pt;}
.x24_c00015{left:374.424000pt;}
.xf_c00015{left:376.433333pt;}
.x1c_c00015{left:381.462667pt;}
.x8_c00015{left:390.133333pt;}
.x25_c00015{left:409.708000pt;}
.x3a_c00015{left:411.602695pt;}
.x2a_c00015{left:416.252948pt;}
.x3b_c00015{left:427.683479pt;}
.x1d_c00015{left:433.542667pt;}
.x2b_c00015{left:439.060948pt;}
.x33_c00015{left:445.947129pt;}
.x10_c00015{left:451.072000pt;}
.x1e_c00015{left:453.940000pt;}
.x17_c00015{left:481.708000pt;}
.x1f_c00015{left:516.109333pt;}
.x26_c00015{left:517.229333pt;}
.x34_c00015{left:518.264463pt;}
.x2c_c00015{left:520.351615pt;}
.x11_c00015{left:536.494667pt;}
.x12_c00015{left:552.508000pt;}
.x2d_c00015{left:555.387615pt;}
.x20_c00015{left:567.433333pt;}
.x27_c00015{left:572.709333pt;}
.x9_c00015{left:573.600000pt;}
.x2e_c00015{left:575.362281pt;}
.x35_c00015{left:577.087129pt;}
.x21_c00015{left:584.254667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ccaf2b60ec13e24d3cb93ea.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;}
.m12_c00016{transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{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);}
.m3_c00016{transform:matrix(0.194951,0.007220,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194951,0.007220,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194951,0.007220,-0.009253,0.249829,0,0);}
.mf_c00016{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);}
.m14_c00016{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);}
.m10_c00016{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);}
.m13_c00016{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);}
.md_c00016{transform:matrix(0.226646,-0.007941,0.008753,0.249847,0,0);-ms-transform:matrix(0.226646,-0.007941,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226646,-0.007941,0.008753,0.249847,0,0);}
.ma_c00016{transform:matrix(0.227756,-0.003644,0.003999,0.249968,0,0);-ms-transform:matrix(0.227756,-0.003644,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227756,-0.003644,0.003999,0.249968,0,0);}
.m17_c00016{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);}
.m11_c00016{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);}
.m0_c00016{transform:matrix(0.244367,0.009051,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244367,0.009051,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244367,0.009051,-0.009253,0.249829,0,0);}
.m8_c00016{transform:matrix(0.321220,-0.009637,0.007497,0.249888,0,0);-ms-transform:matrix(0.321220,-0.009637,0.007497,0.249888,0,0);-webkit-transform:matrix(0.321220,-0.009637,0.007497,0.249888,0,0);}
.m6_c00016{transform:matrix(0.344185,-0.010326,0.007497,0.249888,0,0);-ms-transform:matrix(0.344185,-0.010326,0.007497,0.249888,0,0);-webkit-transform:matrix(0.344185,-0.010326,0.007497,0.249888,0,0);}
.m7_c00016{transform:matrix(0.364946,-0.010948,0.007497,0.249888,0,0);-ms-transform:matrix(0.364946,-0.010948,0.007497,0.249888,0,0);-webkit-transform:matrix(0.364946,-0.010948,0.007497,0.249888,0,0);}
.m4_c00016{transform:matrix(0.368339,-0.011050,0.007497,0.249888,0,0);-ms-transform:matrix(0.368339,-0.011050,0.007497,0.249888,0,0);-webkit-transform:matrix(0.368339,-0.011050,0.007497,0.249888,0,0);}
.m5_c00016{transform:matrix(0.388725,-0.011662,0.007497,0.249888,0,0);-ms-transform:matrix(0.388725,-0.011662,0.007497,0.249888,0,0);-webkit-transform:matrix(0.388725,-0.011662,0.007497,0.249888,0,0);}
.m1_c00016{transform:matrix(0.428626,0.015875,-0.009253,0.249829,0,0);-ms-transform:matrix(0.428626,0.015875,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.428626,0.015875,-0.009253,0.249829,0,0);}
.m9_c00016{transform:matrix(0.491594,-0.014748,0.007497,0.249888,0,0);-ms-transform:matrix(0.491594,-0.014748,0.007497,0.249888,0,0);-webkit-transform:matrix(0.491594,-0.014748,0.007497,0.249888,0,0);}
.m2_c00016{transform:matrix(0.508536,0.018835,-0.009253,0.249829,0,0);-ms-transform:matrix(0.508536,0.018835,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.508536,0.018835,-0.009253,0.249829,0,0);}
.mc_c00016{transform:matrix(0.509787,-0.017860,0.008753,0.249847,0,0);-ms-transform:matrix(0.509787,-0.017860,0.008753,0.249847,0,0);-webkit-transform:matrix(0.509787,-0.017860,0.008753,0.249847,0,0);}
.m15_c00016{transform:matrix(0.516255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516255,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.571025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571025,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.578040,-0.020252,0.008753,0.249847,0,0);-ms-transform:matrix(0.578040,-0.020252,0.008753,0.249847,0,0);-webkit-transform:matrix(0.578040,-0.020252,0.008753,0.249847,0,0);}
.m16_c00016{transform:matrix(1.306395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.306395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.306395,0.000000,0.000000,0.250000,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;}
.fs6_c00016{font-size:29.400000px;}
.fs4_c00016{font-size:51.450000px;}
.fs5_c00016{font-size:72.450000px;}
.fs3_c00016{font-size:165.835784px;}
.fs0_c00016{font-size:223.579539px;}
.fs1_c00016{font-size:318.293135px;}
.fs2_c00016{font-size:352.845156px;}
.y0_c00016{bottom:0.000000px;}
.y17_c00016{bottom:174.462000px;}
.y18_c00016{bottom:176.674500px;}
.y19_c00016{bottom:177.772500px;}
.y10_c00016{bottom:204.930000px;}
.y11_c00016{bottom:205.588500px;}
.y12_c00016{bottom:205.986000px;}
.y13_c00016{bottom:206.448000px;}
.y14_c00016{bottom:206.842500px;}
.y15_c00016{bottom:207.379500px;}
.y16_c00016{bottom:208.729500px;}
.yf_c00016{bottom:237.736500px;}
.yc_c00016{bottom:517.329000px;}
.yd_c00016{bottom:522.830422px;}
.ye_c00016{bottom:528.110557px;}
.yb_c00016{bottom:603.349500px;}
.y5_c00016{bottom:661.482000px;}
.y6_c00016{bottom:662.551470px;}
.y7_c00016{bottom:666.261540px;}
.y8_c00016{bottom:671.608845px;}
.y9_c00016{bottom:673.987455px;}
.ya_c00016{bottom:676.315485px;}
.y4_c00016{bottom:965.586599px;}
.y3_c00016{bottom:972.081209px;}
.y2_c00016{bottom:980.704743px;}
.y1_c00016{bottom:983.389500px;}
.h8_c00016{height:29.400000px;}
.h6_c00016{height:51.450000px;}
.h7_c00016{height:72.450000px;}
.h5_c00016{height:165.835784px;}
.h2_c00016{height:223.579539px;}
.h3_c00016{height:318.293135px;}
.h4_c00016{height:352.845156px;}
.h1_c00016{height:1080.000000px;}
.h0_c00016{height:1080.270000px;}
.w1_c00016{width:768.000000px;}
.w0_c00016{width:768.150000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:28.083000px;}
.xf_c00016{left:54.810000px;}
.x10_c00016{left:58.150500px;}
.x5_c00016{left:72.927000px;}
.x17_c00016{left:83.422500px;}
.x2_c00016{left:100.571439px;}
.x6_c00016{left:108.576000px;}
.x11_c00016{left:113.037000px;}
.x18_c00016{left:137.400000px;}
.x12_c00016{left:146.121000px;}
.xb_c00016{left:164.083500px;}
.x13_c00016{left:184.573500px;}
.x14_c00016{left:217.486500px;}
.x7_c00016{left:232.245000px;}
.x15_c00016{left:262.290000px;}
.xc_c00016{left:293.214000px;}
.x3_c00016{left:333.406870px;}
.x16_c00016{left:374.824500px;}
.x8_c00016{left:410.488500px;}
.xd_c00016{left:450.240317px;}
.x9_c00016{left:489.775500px;}
.x4_c00016{left:508.761340px;}
.xa_c00016{left:567.376500px;}
.xe_c00016{left:600.950456px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.fs6_c00016{font-size:26.133333pt;}
.fs4_c00016{font-size:45.733333pt;}
.fs5_c00016{font-size:64.400000pt;}
.fs3_c00016{font-size:147.409586pt;}
.fs0_c00016{font-size:198.737368pt;}
.fs1_c00016{font-size:282.927231pt;}
.fs2_c00016{font-size:313.640138pt;}
.y0_c00016{bottom:0.000000pt;}
.y17_c00016{bottom:155.077333pt;}
.y18_c00016{bottom:157.044000pt;}
.y19_c00016{bottom:158.020000pt;}
.y10_c00016{bottom:182.160000pt;}
.y11_c00016{bottom:182.745333pt;}
.y12_c00016{bottom:183.098667pt;}
.y13_c00016{bottom:183.509333pt;}
.y14_c00016{bottom:183.860000pt;}
.y15_c00016{bottom:184.337333pt;}
.y16_c00016{bottom:185.537333pt;}
.yf_c00016{bottom:211.321333pt;}
.yc_c00016{bottom:459.848000pt;}
.yd_c00016{bottom:464.738153pt;}
.ye_c00016{bottom:469.431607pt;}
.yb_c00016{bottom:536.310667pt;}
.y5_c00016{bottom:587.984000pt;}
.y6_c00016{bottom:588.934640pt;}
.y7_c00016{bottom:592.232480pt;}
.y8_c00016{bottom:596.985640pt;}
.y9_c00016{bottom:599.099960pt;}
.ya_c00016{bottom:601.169320pt;}
.y4_c00016{bottom:858.299199pt;}
.y3_c00016{bottom:864.072185pt;}
.y2_c00016{bottom:871.737549pt;}
.y1_c00016{bottom:874.124000pt;}
.h8_c00016{height:26.133333pt;}
.h6_c00016{height:45.733333pt;}
.h7_c00016{height:64.400000pt;}
.h5_c00016{height:147.409586pt;}
.h2_c00016{height:198.737368pt;}
.h3_c00016{height:282.927231pt;}
.h4_c00016{height:313.640138pt;}
.h1_c00016{height:960.000000pt;}
.h0_c00016{height:960.240000pt;}
.w1_c00016{width:682.666667pt;}
.w0_c00016{width:682.800000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:24.962667pt;}
.xf_c00016{left:48.720000pt;}
.x10_c00016{left:51.689333pt;}
.x5_c00016{left:64.824000pt;}
.x17_c00016{left:74.153333pt;}
.x2_c00016{left:89.396835pt;}
.x6_c00016{left:96.512000pt;}
.x11_c00016{left:100.477333pt;}
.x18_c00016{left:122.133333pt;}
.x12_c00016{left:129.885333pt;}
.xb_c00016{left:145.852000pt;}
.x13_c00016{left:164.065333pt;}
.x14_c00016{left:193.321333pt;}
.x7_c00016{left:206.440000pt;}
.x15_c00016{left:233.146667pt;}
.xc_c00016{left:260.634667pt;}
.x3_c00016{left:296.361663pt;}
.x16_c00016{left:333.177333pt;}
.x8_c00016{left:364.878667pt;}
.xd_c00016{left:400.213615pt;}
.x9_c00016{left:435.356000pt;}
.x4_c00016{left:452.232303pt;}
.xa_c00016{left:504.334667pt;}
.xe_c00016{left:534.178183pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00017{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
}
.y0_c00017{bottom:0.000000px;}
.h0_c00017{height:1086.450000px;}
.h1_c00017{height:1086.750000px;}
.w1_c00017{width:771.000000px;}
.w0_c00017{width:771.120000px;}
.x0_c00017{left:0.000000px;}
@media print{
.y0_c00017{bottom:0.000000pt;}
.h0_c00017{height:965.733333pt;}
.h1_c00017{height:966.000000pt;}
.w1_c00017{width:685.333333pt;}
.w0_c00017{width:685.440000pt;}
.x0_c00017{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_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_4ab86c84425994a9e06b01c2.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;}
.m4d_c00018{transform:matrix(0.008355,-0.000058,0.001750,0.249994,0,0);-ms-transform:matrix(0.008355,-0.000058,0.001750,0.249994,0,0);-webkit-transform:matrix(0.008355,-0.000058,0.001750,0.249994,0,0);}
.m4c_c00018{transform:matrix(0.089068,-0.000623,0.001750,0.249994,0,0);-ms-transform:matrix(0.089068,-0.000623,0.001750,0.249994,0,0);-webkit-transform:matrix(0.089068,-0.000623,0.001750,0.249994,0,0);}
.m4b_c00018{transform:matrix(0.098968,-0.000693,0.001750,0.249994,0,0);-ms-transform:matrix(0.098968,-0.000693,0.001750,0.249994,0,0);-webkit-transform:matrix(0.098968,-0.000693,0.001750,0.249994,0,0);}
.m16_c00018{transform:matrix(0.101598,-0.000711,0.001750,0.249994,0,0);-ms-transform:matrix(0.101598,-0.000711,0.001750,0.249994,0,0);-webkit-transform:matrix(0.101598,-0.000711,0.001750,0.249994,0,0);}
.m94_c00018{transform:matrix(0.107527,-0.000753,0.001750,0.249994,0,0);-ms-transform:matrix(0.107527,-0.000753,0.001750,0.249994,0,0);-webkit-transform:matrix(0.107527,-0.000753,0.001750,0.249994,0,0);}
.m74_c00018{transform:matrix(0.120317,-0.000842,0.001750,0.249994,0,0);-ms-transform:matrix(0.120317,-0.000842,0.001750,0.249994,0,0);-webkit-transform:matrix(0.120317,-0.000842,0.001750,0.249994,0,0);}
.m44_c00018{transform:matrix(0.138377,-0.000969,0.001750,0.249994,0,0);-ms-transform:matrix(0.138377,-0.000969,0.001750,0.249994,0,0);-webkit-transform:matrix(0.138377,-0.000969,0.001750,0.249994,0,0);}
.m37_c00018{transform:matrix(0.142052,-0.000994,0.001750,0.249994,0,0);-ms-transform:matrix(0.142052,-0.000994,0.001750,0.249994,0,0);-webkit-transform:matrix(0.142052,-0.000994,0.001750,0.249994,0,0);}
.m98_c00018{transform:matrix(0.143416,-0.001004,0.001750,0.249994,0,0);-ms-transform:matrix(0.143416,-0.001004,0.001750,0.249994,0,0);-webkit-transform:matrix(0.143416,-0.001004,0.001750,0.249994,0,0);}
.m7a_c00018{transform:matrix(0.144716,-0.001013,0.001750,0.249994,0,0);-ms-transform:matrix(0.144716,-0.001013,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144716,-0.001013,0.001750,0.249994,0,0);}
.m2b_c00018{transform:matrix(0.145471,-0.001018,0.001750,0.249994,0,0);-ms-transform:matrix(0.145471,-0.001018,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145471,-0.001018,0.001750,0.249994,0,0);}
.m31_c00018{transform:matrix(0.145481,-0.001018,0.001750,0.249994,0,0);-ms-transform:matrix(0.145481,-0.001018,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145481,-0.001018,0.001750,0.249994,0,0);}
.m54_c00018{transform:matrix(0.147381,-0.001032,0.001750,0.249994,0,0);-ms-transform:matrix(0.147381,-0.001032,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147381,-0.001032,0.001750,0.249994,0,0);}
.m46_c00018{transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);-ms-transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);}
.m9b_c00018{transform:matrix(0.150616,-0.001054,0.001750,0.249994,0,0);-ms-transform:matrix(0.150616,-0.001054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150616,-0.001054,0.001750,0.249994,0,0);}
.m7d_c00018{transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);-ms-transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);}
.m14_c00018{transform:matrix(0.152801,-0.001070,0.001750,0.249994,0,0);-ms-transform:matrix(0.152801,-0.001070,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152801,-0.001070,0.001750,0.249994,0,0);}
.m39_c00018{transform:matrix(0.153196,-0.001072,0.001750,0.249994,0,0);-ms-transform:matrix(0.153196,-0.001072,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153196,-0.001072,0.001750,0.249994,0,0);}
.m8f_c00018{transform:matrix(0.153411,-0.001074,0.001750,0.249994,0,0);-ms-transform:matrix(0.153411,-0.001074,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153411,-0.001074,0.001750,0.249994,0,0);}
.m33_c00018{transform:matrix(0.153451,-0.001074,0.001750,0.249994,0,0);-ms-transform:matrix(0.153451,-0.001074,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153451,-0.001074,0.001750,0.249994,0,0);}
.maf_c00018{transform:matrix(0.153471,-0.001074,0.001750,0.249994,0,0);-ms-transform:matrix(0.153471,-0.001074,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153471,-0.001074,0.001750,0.249994,0,0);}
.mec_c00018{transform:matrix(0.153571,-0.001075,0.001750,0.249994,0,0);-ms-transform:matrix(0.153571,-0.001075,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153571,-0.001075,0.001750,0.249994,0,0);}
.m102_c00018{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);}
.m64_c00018{transform:matrix(0.155691,-0.001090,0.001750,0.249994,0,0);-ms-transform:matrix(0.155691,-0.001090,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155691,-0.001090,0.001750,0.249994,0,0);}
.m87_c00018{transform:matrix(0.156196,-0.001093,0.001750,0.249994,0,0);-ms-transform:matrix(0.156196,-0.001093,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156196,-0.001093,0.001750,0.249994,0,0);}
.m3d_c00018{transform:matrix(0.156456,-0.001095,0.001750,0.249994,0,0);-ms-transform:matrix(0.156456,-0.001095,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156456,-0.001095,0.001750,0.249994,0,0);}
.med_c00018{transform:matrix(0.157341,-0.001101,0.001750,0.249994,0,0);-ms-transform:matrix(0.157341,-0.001101,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157341,-0.001101,0.001750,0.249994,0,0);}
.mc_c00018{transform:matrix(0.157996,-0.001106,0.001750,0.249994,0,0);-ms-transform:matrix(0.157996,-0.001106,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157996,-0.001106,0.001750,0.249994,0,0);}
.m78_c00018{transform:matrix(0.158941,-0.001113,0.001750,0.249994,0,0);-ms-transform:matrix(0.158941,-0.001113,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158941,-0.001113,0.001750,0.249994,0,0);}
.ma2_c00018{transform:matrix(0.159281,-0.001115,0.001750,0.249994,0,0);-ms-transform:matrix(0.159281,-0.001115,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159281,-0.001115,0.001750,0.249994,0,0);}
.m99_c00018{transform:matrix(0.159796,-0.001119,0.001750,0.249994,0,0);-ms-transform:matrix(0.159796,-0.001119,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159796,-0.001119,0.001750,0.249994,0,0);}
.m8a_c00018{transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);-ms-transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);}
.mb8_c00018{transform:matrix(0.160276,-0.001122,0.001750,0.249994,0,0);-ms-transform:matrix(0.160276,-0.001122,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160276,-0.001122,0.001750,0.249994,0,0);}
.mb2_c00018{transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);-ms-transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);}
.mac_c00018{transform:matrix(0.160921,-0.001126,0.001750,0.249994,0,0);-ms-transform:matrix(0.160921,-0.001126,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160921,-0.001126,0.001750,0.249994,0,0);}
.m30_c00018{transform:matrix(0.162381,-0.001137,0.001750,0.249994,0,0);-ms-transform:matrix(0.162381,-0.001137,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162381,-0.001137,0.001750,0.249994,0,0);}
.m50_c00018{transform:matrix(0.162461,-0.001137,0.001750,0.249994,0,0);-ms-transform:matrix(0.162461,-0.001137,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162461,-0.001137,0.001750,0.249994,0,0);}
.md9_c00018{transform:matrix(0.162751,-0.001139,0.001750,0.249994,0,0);-ms-transform:matrix(0.162751,-0.001139,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162751,-0.001139,0.001750,0.249994,0,0);}
.maa_c00018{transform:matrix(0.163801,-0.001147,0.001750,0.249994,0,0);-ms-transform:matrix(0.163801,-0.001147,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163801,-0.001147,0.001750,0.249994,0,0);}
.mab_c00018{transform:matrix(0.164151,-0.001149,0.001750,0.249994,0,0);-ms-transform:matrix(0.164151,-0.001149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164151,-0.001149,0.001750,0.249994,0,0);}
.mb7_c00018{transform:matrix(0.164591,-0.001152,0.001750,0.249994,0,0);-ms-transform:matrix(0.164591,-0.001152,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164591,-0.001152,0.001750,0.249994,0,0);}
.md7_c00018{transform:matrix(0.164951,-0.001155,0.001750,0.249994,0,0);-ms-transform:matrix(0.164951,-0.001155,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164951,-0.001155,0.001750,0.249994,0,0);}
.m3b_c00018{transform:matrix(0.165361,-0.001158,0.001750,0.249994,0,0);-ms-transform:matrix(0.165361,-0.001158,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165361,-0.001158,0.001750,0.249994,0,0);}
.m1a_c00018{transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);-ms-transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);}
.m2c_c00018{transform:matrix(0.165691,-0.001160,0.001750,0.249994,0,0);-ms-transform:matrix(0.165691,-0.001160,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165691,-0.001160,0.001750,0.249994,0,0);}
.ma4_c00018{transform:matrix(0.166486,-0.001165,0.001750,0.249994,0,0);-ms-transform:matrix(0.166486,-0.001165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166486,-0.001165,0.001750,0.249994,0,0);}
.mbb_c00018{transform:matrix(0.167281,-0.001171,0.001750,0.249994,0,0);-ms-transform:matrix(0.167281,-0.001171,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167281,-0.001171,0.001750,0.249994,0,0);}
.m82_c00018{transform:matrix(0.167356,-0.001171,0.001750,0.249994,0,0);-ms-transform:matrix(0.167356,-0.001171,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167356,-0.001171,0.001750,0.249994,0,0);}
.m91_c00018{transform:matrix(0.168231,-0.001178,0.001750,0.249994,0,0);-ms-transform:matrix(0.168231,-0.001178,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168231,-0.001178,0.001750,0.249994,0,0);}
.me8_c00018{transform:matrix(0.168276,-0.001178,0.001750,0.249994,0,0);-ms-transform:matrix(0.168276,-0.001178,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168276,-0.001178,0.001750,0.249994,0,0);}
.mdc_c00018{transform:matrix(0.168856,-0.001182,0.001750,0.249994,0,0);-ms-transform:matrix(0.168856,-0.001182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168856,-0.001182,0.001750,0.249994,0,0);}
.mca_c00018{transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-ms-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);}
.m59_c00018{transform:matrix(0.169221,-0.001185,0.001750,0.249994,0,0);-ms-transform:matrix(0.169221,-0.001185,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169221,-0.001185,0.001750,0.249994,0,0);}
.m2a_c00018{transform:matrix(0.169756,-0.001188,0.001750,0.249994,0,0);-ms-transform:matrix(0.169756,-0.001188,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169756,-0.001188,0.001750,0.249994,0,0);}
.m79_c00018{transform:matrix(0.169936,-0.001190,0.001750,0.249994,0,0);-ms-transform:matrix(0.169936,-0.001190,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169936,-0.001190,0.001750,0.249994,0,0);}
.m5a_c00018{transform:matrix(0.170366,-0.001193,0.001750,0.249994,0,0);-ms-transform:matrix(0.170366,-0.001193,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170366,-0.001193,0.001750,0.249994,0,0);}
.mbc_c00018{transform:matrix(0.171441,-0.001200,0.001750,0.249994,0,0);-ms-transform:matrix(0.171441,-0.001200,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171441,-0.001200,0.001750,0.249994,0,0);}
.mfd_c00018{transform:matrix(0.171487,-0.003087,0.004499,0.249960,0,0);-ms-transform:matrix(0.171487,-0.003087,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171487,-0.003087,0.004499,0.249960,0,0);}
.m90_c00018{transform:matrix(0.171731,-0.001202,0.001750,0.249994,0,0);-ms-transform:matrix(0.171731,-0.001202,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171731,-0.001202,0.001750,0.249994,0,0);}
.m88_c00018{transform:matrix(0.173041,-0.001211,0.001750,0.249994,0,0);-ms-transform:matrix(0.173041,-0.001211,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173041,-0.001211,0.001750,0.249994,0,0);}
.m49_c00018{transform:matrix(0.174061,-0.001218,0.001750,0.249994,0,0);-ms-transform:matrix(0.174061,-0.001218,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174061,-0.001218,0.001750,0.249994,0,0);}
.m51_c00018{transform:matrix(0.174466,-0.001221,0.001750,0.249994,0,0);-ms-transform:matrix(0.174466,-0.001221,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174466,-0.001221,0.001750,0.249994,0,0);}
.m45_c00018{transform:matrix(0.174626,-0.001222,0.001750,0.249994,0,0);-ms-transform:matrix(0.174626,-0.001222,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174626,-0.001222,0.001750,0.249994,0,0);}
.md_c00018{transform:matrix(0.175166,-0.001226,0.001750,0.249994,0,0);-ms-transform:matrix(0.175166,-0.001226,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175166,-0.001226,0.001750,0.249994,0,0);}
.m89_c00018{transform:matrix(0.175201,-0.001226,0.001750,0.249994,0,0);-ms-transform:matrix(0.175201,-0.001226,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175201,-0.001226,0.001750,0.249994,0,0);}
.m106_c00018{transform:matrix(0.175705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175705,0.000000,0.000000,0.250000,0,0);}
.m6b_c00018{transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);}
.m47_c00018{transform:matrix(0.176211,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176211,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176211,-0.001233,0.001750,0.249994,0,0);}
.m84_c00018{transform:matrix(0.176416,-0.001235,0.001750,0.249994,0,0);-ms-transform:matrix(0.176416,-0.001235,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176416,-0.001235,0.001750,0.249994,0,0);}
.ma9_c00018{transform:matrix(0.177001,-0.001239,0.001750,0.249994,0,0);-ms-transform:matrix(0.177001,-0.001239,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177001,-0.001239,0.001750,0.249994,0,0);}
.mb0_c00018{transform:matrix(0.177411,-0.001242,0.001750,0.249994,0,0);-ms-transform:matrix(0.177411,-0.001242,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177411,-0.001242,0.001750,0.249994,0,0);}
.md1_c00018{transform:matrix(0.177796,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177796,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177796,-0.001245,0.001750,0.249994,0,0);}
.m7b_c00018{transform:matrix(0.177996,-0.001246,0.001750,0.249994,0,0);-ms-transform:matrix(0.177996,-0.001246,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177996,-0.001246,0.001750,0.249994,0,0);}
.m7e_c00018{transform:matrix(0.178666,-0.001251,0.001750,0.249994,0,0);-ms-transform:matrix(0.178666,-0.001251,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178666,-0.001251,0.001750,0.249994,0,0);}
.mb6_c00018{transform:matrix(0.178771,-0.001251,0.001750,0.249994,0,0);-ms-transform:matrix(0.178771,-0.001251,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178771,-0.001251,0.001750,0.249994,0,0);}
.m57_c00018{transform:matrix(0.178791,-0.001252,0.001750,0.249994,0,0);-ms-transform:matrix(0.178791,-0.001252,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178791,-0.001252,0.001750,0.249994,0,0);}
.me4_c00018{transform:matrix(0.178991,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.178991,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178991,-0.001253,0.001750,0.249994,0,0);}
.mb1_c00018{transform:matrix(0.179291,-0.001255,0.001750,0.249994,0,0);-ms-transform:matrix(0.179291,-0.001255,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179291,-0.001255,0.001750,0.249994,0,0);}
.mcb_c00018{transform:matrix(0.179336,-0.001255,0.001750,0.249994,0,0);-ms-transform:matrix(0.179336,-0.001255,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179336,-0.001255,0.001750,0.249994,0,0);}
.m4e_c00018{transform:matrix(0.179471,-0.001256,0.001750,0.249994,0,0);-ms-transform:matrix(0.179471,-0.001256,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179471,-0.001256,0.001750,0.249994,0,0);}
.mce_c00018{transform:matrix(0.179656,-0.001258,0.001750,0.249994,0,0);-ms-transform:matrix(0.179656,-0.001258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179656,-0.001258,0.001750,0.249994,0,0);}
.ma3_c00018{transform:matrix(0.179706,-0.001258,0.001750,0.249994,0,0);-ms-transform:matrix(0.179706,-0.001258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179706,-0.001258,0.001750,0.249994,0,0);}
.mb9_c00018{transform:matrix(0.180196,-0.001261,0.001750,0.249994,0,0);-ms-transform:matrix(0.180196,-0.001261,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180196,-0.001261,0.001750,0.249994,0,0);}
.m1c_c00018{transform:matrix(0.180481,-0.001263,0.001750,0.249994,0,0);-ms-transform:matrix(0.180481,-0.001263,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180481,-0.001263,0.001750,0.249994,0,0);}
.mc4_c00018{transform:matrix(0.180586,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180586,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180586,-0.001264,0.001750,0.249994,0,0);}
.m83_c00018{transform:matrix(0.180626,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180626,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180626,-0.001264,0.001750,0.249994,0,0);}
.ma6_c00018{transform:matrix(0.180791,-0.001266,0.001750,0.249994,0,0);-ms-transform:matrix(0.180791,-0.001266,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180791,-0.001266,0.001750,0.249994,0,0);}
.mf_c00018{transform:matrix(0.180901,-0.001266,0.001750,0.249994,0,0);-ms-transform:matrix(0.180901,-0.001266,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180901,-0.001266,0.001750,0.249994,0,0);}
.m2f_c00018{transform:matrix(0.181566,-0.001271,0.001750,0.249994,0,0);-ms-transform:matrix(0.181566,-0.001271,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181566,-0.001271,0.001750,0.249994,0,0);}
.m96_c00018{transform:matrix(0.181636,-0.001271,0.001750,0.249994,0,0);-ms-transform:matrix(0.181636,-0.001271,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181636,-0.001271,0.001750,0.249994,0,0);}
.m8e_c00018{transform:matrix(0.181746,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181746,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181746,-0.001272,0.001750,0.249994,0,0);}
.mb3_c00018{transform:matrix(0.181771,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181771,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181771,-0.001272,0.001750,0.249994,0,0);}
.mbd_c00018{transform:matrix(0.182811,-0.001280,0.001750,0.249994,0,0);-ms-transform:matrix(0.182811,-0.001280,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182811,-0.001280,0.001750,0.249994,0,0);}
.m85_c00018{transform:matrix(0.182911,-0.001280,0.001750,0.249994,0,0);-ms-transform:matrix(0.182911,-0.001280,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182911,-0.001280,0.001750,0.249994,0,0);}
.me7_c00018{transform:matrix(0.183241,-0.001283,0.001750,0.249994,0,0);-ms-transform:matrix(0.183241,-0.001283,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183241,-0.001283,0.001750,0.249994,0,0);}
.m103_c00018{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);}
.m108_c00018{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);}
.m9d_c00018{transform:matrix(0.185020,-0.001295,0.001750,0.249994,0,0);-ms-transform:matrix(0.185020,-0.001295,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185020,-0.001295,0.001750,0.249994,0,0);}
.mf0_c00018{transform:matrix(0.185415,-0.001298,0.001750,0.249994,0,0);-ms-transform:matrix(0.185415,-0.001298,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185415,-0.001298,0.001750,0.249994,0,0);}
.md6_c00018{transform:matrix(0.185425,-0.001298,0.001750,0.249994,0,0);-ms-transform:matrix(0.185425,-0.001298,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185425,-0.001298,0.001750,0.249994,0,0);}
.m97_c00018{transform:matrix(0.185555,-0.001299,0.001750,0.249994,0,0);-ms-transform:matrix(0.185555,-0.001299,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185555,-0.001299,0.001750,0.249994,0,0);}
.m17_c00018{transform:matrix(0.185850,-0.001301,0.001750,0.249994,0,0);-ms-transform:matrix(0.185850,-0.001301,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185850,-0.001301,0.001750,0.249994,0,0);}
.m3c_c00018{transform:matrix(0.185935,-0.001302,0.001750,0.249994,0,0);-ms-transform:matrix(0.185935,-0.001302,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185935,-0.001302,0.001750,0.249994,0,0);}
.m34_c00018{transform:matrix(0.186190,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186190,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186190,-0.001303,0.001750,0.249994,0,0);}
.m86_c00018{transform:matrix(0.186485,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186485,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186485,-0.001305,0.001750,0.249994,0,0);}
.m38_c00018{transform:matrix(0.186595,-0.001306,0.001750,0.249994,0,0);-ms-transform:matrix(0.186595,-0.001306,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186595,-0.001306,0.001750,0.249994,0,0);}
.me9_c00018{transform:matrix(0.186630,-0.001306,0.001750,0.249994,0,0);-ms-transform:matrix(0.186630,-0.001306,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186630,-0.001306,0.001750,0.249994,0,0);}
.meb_c00018{transform:matrix(0.186745,-0.001307,0.001750,0.249994,0,0);-ms-transform:matrix(0.186745,-0.001307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186745,-0.001307,0.001750,0.249994,0,0);}
.m92_c00018{transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);-ms-transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);}
.ma5_c00018{transform:matrix(0.187150,-0.001310,0.001750,0.249994,0,0);-ms-transform:matrix(0.187150,-0.001310,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187150,-0.001310,0.001750,0.249994,0,0);}
.m107_c00018{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);}
.m80_c00018{transform:matrix(0.187280,-0.001311,0.001750,0.249994,0,0);-ms-transform:matrix(0.187280,-0.001311,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187280,-0.001311,0.001750,0.249994,0,0);}
.m11_c00018{transform:matrix(0.187365,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187365,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187365,-0.001312,0.001750,0.249994,0,0);}
.m24_c00018{transform:matrix(0.187420,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187420,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187420,-0.001312,0.001750,0.249994,0,0);}
.mad_c00018{transform:matrix(0.187560,-0.001313,0.001750,0.249994,0,0);-ms-transform:matrix(0.187560,-0.001313,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187560,-0.001313,0.001750,0.249994,0,0);}
.mae_c00018{transform:matrix(0.187585,-0.001313,0.001750,0.249994,0,0);-ms-transform:matrix(0.187585,-0.001313,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187585,-0.001313,0.001750,0.249994,0,0);}
.m104_c00018{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_c00018{transform:matrix(0.187705,-0.001314,0.001750,0.249994,0,0);-ms-transform:matrix(0.187705,-0.001314,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187705,-0.001314,0.001750,0.249994,0,0);}
.m7_c00018{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);}
.me_c00018{transform:matrix(0.187940,-0.001316,0.001750,0.249994,0,0);-ms-transform:matrix(0.187940,-0.001316,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187940,-0.001316,0.001750,0.249994,0,0);}
.mba_c00018{transform:matrix(0.189190,-0.001324,0.001750,0.249994,0,0);-ms-transform:matrix(0.189190,-0.001324,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189190,-0.001324,0.001750,0.249994,0,0);}
.mda_c00018{transform:matrix(0.189235,-0.001325,0.001750,0.249994,0,0);-ms-transform:matrix(0.189235,-0.001325,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189235,-0.001325,0.001750,0.249994,0,0);}
.me1_c00018{transform:matrix(0.189420,-0.001326,0.001750,0.249994,0,0);-ms-transform:matrix(0.189420,-0.001326,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189420,-0.001326,0.001750,0.249994,0,0);}
.m19_c00018{transform:matrix(0.189805,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189805,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189805,-0.001329,0.001750,0.249994,0,0);}
.m2d_c00018{transform:matrix(0.189960,-0.001330,0.001750,0.249994,0,0);-ms-transform:matrix(0.189960,-0.001330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189960,-0.001330,0.001750,0.249994,0,0);}
.m77_c00018{transform:matrix(0.189995,-0.001330,0.001750,0.249994,0,0);-ms-transform:matrix(0.189995,-0.001330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189995,-0.001330,0.001750,0.249994,0,0);}
.mde_c00018{transform:matrix(0.190015,-0.001330,0.001750,0.249994,0,0);-ms-transform:matrix(0.190015,-0.001330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190015,-0.001330,0.001750,0.249994,0,0);}
.mea_c00018{transform:matrix(0.190090,-0.001331,0.001750,0.249994,0,0);-ms-transform:matrix(0.190090,-0.001331,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190090,-0.001331,0.001750,0.249994,0,0);}
.m105_c00018{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);}
.m20_c00018{transform:matrix(0.190665,-0.001335,0.001750,0.249994,0,0);-ms-transform:matrix(0.190665,-0.001335,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190665,-0.001335,0.001750,0.249994,0,0);}
.m52_c00018{transform:matrix(0.191145,-0.001338,0.001750,0.249994,0,0);-ms-transform:matrix(0.191145,-0.001338,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191145,-0.001338,0.001750,0.249994,0,0);}
.mf4_c00018{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);}
.ma0_c00018{transform:matrix(0.191640,-0.001341,0.001750,0.249994,0,0);-ms-transform:matrix(0.191640,-0.001341,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191640,-0.001341,0.001750,0.249994,0,0);}
.m4f_c00018{transform:matrix(0.191970,-0.001344,0.001750,0.249994,0,0);-ms-transform:matrix(0.191970,-0.001344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191970,-0.001344,0.001750,0.249994,0,0);}
.m73_c00018{transform:matrix(0.192225,-0.001346,0.001750,0.249994,0,0);-ms-transform:matrix(0.192225,-0.001346,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192225,-0.001346,0.001750,0.249994,0,0);}
.m36_c00018{transform:matrix(0.192525,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192525,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192525,-0.001348,0.001750,0.249994,0,0);}
.m2e_c00018{transform:matrix(0.192680,-0.001349,0.001750,0.249994,0,0);-ms-transform:matrix(0.192680,-0.001349,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192680,-0.001349,0.001750,0.249994,0,0);}
.md2_c00018{transform:matrix(0.192835,-0.001350,0.001750,0.249994,0,0);-ms-transform:matrix(0.192835,-0.001350,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192835,-0.001350,0.001750,0.249994,0,0);}
.ma1_c00018{transform:matrix(0.193155,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193155,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193155,-0.001352,0.001750,0.249994,0,0);}
.m18_c00018{transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);}
.m32_c00018{transform:matrix(0.193235,-0.001353,0.001750,0.249994,0,0);-ms-transform:matrix(0.193235,-0.001353,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193235,-0.001353,0.001750,0.249994,0,0);}
.m5b_c00018{transform:matrix(0.193935,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.193935,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193935,-0.001358,0.001750,0.249994,0,0);}
.m3a_c00018{transform:matrix(0.194005,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.194005,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194005,-0.001358,0.001750,0.249994,0,0);}
.m81_c00018{transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);}
.m63_c00018{transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);}
.m29_c00018{transform:matrix(0.195255,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195255,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195255,-0.001367,0.001750,0.249994,0,0);}
.m4a_c00018{transform:matrix(0.195450,-0.001368,0.001750,0.249994,0,0);-ms-transform:matrix(0.195450,-0.001368,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195450,-0.001368,0.001750,0.249994,0,0);}
.mff_c00018{transform:matrix(0.196138,-0.003530,0.004499,0.249960,0,0);-ms-transform:matrix(0.196138,-0.003530,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196138,-0.003530,0.004499,0.249960,0,0);}
.m6f_c00018{transform:matrix(0.196245,-0.001374,0.001750,0.249994,0,0);-ms-transform:matrix(0.196245,-0.001374,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196245,-0.001374,0.001750,0.249994,0,0);}
.m8b_c00018{transform:matrix(0.196425,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196425,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196425,-0.001375,0.001750,0.249994,0,0);}
.mc9_c00018{transform:matrix(0.196610,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196610,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196610,-0.001376,0.001750,0.249994,0,0);}
.md0_c00018{transform:matrix(0.196620,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196620,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196620,-0.001376,0.001750,0.249994,0,0);}
.md8_c00018{transform:matrix(0.197265,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197265,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197265,-0.001381,0.001750,0.249994,0,0);}
.m53_c00018{transform:matrix(0.197350,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197350,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197350,-0.001381,0.001750,0.249994,0,0);}
.m40_c00018{transform:matrix(0.197525,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197525,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197525,-0.001383,0.001750,0.249994,0,0);}
.m13_c00018{transform:matrix(0.197620,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197620,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197620,-0.001383,0.001750,0.249994,0,0);}
.m7c_c00018{transform:matrix(0.197655,-0.001384,0.001750,0.249994,0,0);-ms-transform:matrix(0.197655,-0.001384,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197655,-0.001384,0.001750,0.249994,0,0);}
.mcd_c00018{transform:matrix(0.197770,-0.001384,0.001750,0.249994,0,0);-ms-transform:matrix(0.197770,-0.001384,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197770,-0.001384,0.001750,0.249994,0,0);}
.m9e_c00018{transform:matrix(0.198515,-0.001390,0.001750,0.249994,0,0);-ms-transform:matrix(0.198515,-0.001390,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198515,-0.001390,0.001750,0.249994,0,0);}
.mf9_c00018{transform:matrix(0.198608,-0.003575,0.004499,0.249960,0,0);-ms-transform:matrix(0.198608,-0.003575,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198608,-0.003575,0.004499,0.249960,0,0);}
.mfc_c00018{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);}
.m10_c00018{transform:matrix(0.198745,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198745,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198745,-0.001391,0.001750,0.249994,0,0);}
.m72_c00018{transform:matrix(0.199065,-0.001393,0.001750,0.249994,0,0);-ms-transform:matrix(0.199065,-0.001393,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199065,-0.001393,0.001750,0.249994,0,0);}
.m1d_c00018{transform:matrix(0.199280,-0.001395,0.001750,0.249994,0,0);-ms-transform:matrix(0.199280,-0.001395,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199280,-0.001395,0.001750,0.249994,0,0);}
.me6_c00018{transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);}
.m23_c00018{transform:matrix(0.199645,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199645,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199645,-0.001398,0.001750,0.249994,0,0);}
.m1e_c00018{transform:matrix(0.199670,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199670,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199670,-0.001398,0.001750,0.249994,0,0);}
.me3_c00018{transform:matrix(0.200050,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200050,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200050,-0.001400,0.001750,0.249994,0,0);}
.m5e_c00018{transform:matrix(0.200065,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200065,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200065,-0.001400,0.001750,0.249994,0,0);}
.mdf_c00018{transform:matrix(0.200395,-0.001403,0.001750,0.249994,0,0);-ms-transform:matrix(0.200395,-0.001403,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200395,-0.001403,0.001750,0.249994,0,0);}
.mdd_c00018{transform:matrix(0.203170,-0.001422,0.001750,0.249994,0,0);-ms-transform:matrix(0.203170,-0.001422,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203170,-0.001422,0.001750,0.249994,0,0);}
.m61_c00018{transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);-ms-transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);}
.m5f_c00018{transform:matrix(0.203690,-0.001426,0.001750,0.249994,0,0);-ms-transform:matrix(0.203690,-0.001426,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203690,-0.001426,0.001750,0.249994,0,0);}
.m22_c00018{transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);}
.m6e_c00018{transform:matrix(0.204045,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.204045,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204045,-0.001428,0.001750,0.249994,0,0);}
.mfa_c00018{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);}
.m9c_c00018{transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);-ms-transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);}
.m3f_c00018{transform:matrix(0.205505,-0.001439,0.001750,0.249994,0,0);-ms-transform:matrix(0.205505,-0.001439,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205505,-0.001439,0.001750,0.249994,0,0);}
.m8d_c00018{transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);-ms-transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);}
.m9f_c00018{transform:matrix(0.206120,-0.001443,0.001750,0.249994,0,0);-ms-transform:matrix(0.206120,-0.001443,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206120,-0.001443,0.001750,0.249994,0,0);}
.mdb_c00018{transform:matrix(0.206340,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206340,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206340,-0.001444,0.001750,0.249994,0,0);}
.mee_c00018{transform:matrix(0.206585,-0.001446,0.001750,0.249994,0,0);-ms-transform:matrix(0.206585,-0.001446,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206585,-0.001446,0.001750,0.249994,0,0);}
.md5_c00018{transform:matrix(0.207710,-0.001454,0.001750,0.249994,0,0);-ms-transform:matrix(0.207710,-0.001454,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207710,-0.001454,0.001750,0.249994,0,0);}
.mc3_c00018{transform:matrix(0.208250,-0.001458,0.001750,0.249994,0,0);-ms-transform:matrix(0.208250,-0.001458,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208250,-0.001458,0.001750,0.249994,0,0);}
.md3_c00018{transform:matrix(0.208255,-0.001458,0.001750,0.249994,0,0);-ms-transform:matrix(0.208255,-0.001458,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208255,-0.001458,0.001750,0.249994,0,0);}
.m8c_c00018{transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);}
.m6d_c00018{transform:matrix(0.210260,-0.001472,0.001750,0.249994,0,0);-ms-transform:matrix(0.210260,-0.001472,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210260,-0.001472,0.001750,0.249994,0,0);}
.m12_c00018{transform:matrix(0.210530,-0.001474,0.001750,0.249994,0,0);-ms-transform:matrix(0.210530,-0.001474,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210530,-0.001474,0.001750,0.249994,0,0);}
.m1b_c00018{transform:matrix(0.210725,-0.001475,0.001750,0.249994,0,0);-ms-transform:matrix(0.210725,-0.001475,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210725,-0.001475,0.001750,0.249994,0,0);}
.m28_c00018{transform:matrix(0.210750,-0.001475,0.001750,0.249994,0,0);-ms-transform:matrix(0.210750,-0.001475,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210750,-0.001475,0.001750,0.249994,0,0);}
.m58_c00018{transform:matrix(0.210775,-0.001475,0.001750,0.249994,0,0);-ms-transform:matrix(0.210775,-0.001475,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210775,-0.001475,0.001750,0.249994,0,0);}
.m5d_c00018{transform:matrix(0.211100,-0.001478,0.001750,0.249994,0,0);-ms-transform:matrix(0.211100,-0.001478,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211100,-0.001478,0.001750,0.249994,0,0);}
.m21_c00018{transform:matrix(0.211140,-0.001478,0.001750,0.249994,0,0);-ms-transform:matrix(0.211140,-0.001478,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211140,-0.001478,0.001750,0.249994,0,0);}
.m7f_c00018{transform:matrix(0.211250,-0.001479,0.001750,0.249994,0,0);-ms-transform:matrix(0.211250,-0.001479,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211250,-0.001479,0.001750,0.249994,0,0);}
.mf7_c00018{transform:matrix(0.211941,-0.003815,0.004499,0.249960,0,0);-ms-transform:matrix(0.211941,-0.003815,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211941,-0.003815,0.004499,0.249960,0,0);}
.m26_c00018{transform:matrix(0.212900,-0.001490,0.001750,0.249994,0,0);-ms-transform:matrix(0.212900,-0.001490,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212900,-0.001490,0.001750,0.249994,0,0);}
.mc1_c00018{transform:matrix(0.212940,-0.001491,0.001750,0.249994,0,0);-ms-transform:matrix(0.212940,-0.001491,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212940,-0.001491,0.001750,0.249994,0,0);}
.mfe_c00018{transform:matrix(0.213205,-0.003838,0.004499,0.249960,0,0);-ms-transform:matrix(0.213205,-0.003838,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213205,-0.003838,0.004499,0.249960,0,0);}
.mf5_c00018{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);}
.mef_c00018{transform:matrix(0.214325,-0.001500,0.001750,0.249994,0,0);-ms-transform:matrix(0.214325,-0.001500,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214325,-0.001500,0.001750,0.249994,0,0);}
.m56_c00018{transform:matrix(0.214525,-0.001502,0.001750,0.249994,0,0);-ms-transform:matrix(0.214525,-0.001502,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214525,-0.001502,0.001750,0.249994,0,0);}
.m5c_c00018{transform:matrix(0.216845,-0.001518,0.001750,0.249994,0,0);-ms-transform:matrix(0.216845,-0.001518,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216845,-0.001518,0.001750,0.249994,0,0);}
.mf8_c00018{transform:matrix(0.217335,-0.003912,0.004499,0.249960,0,0);-ms-transform:matrix(0.217335,-0.003912,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217335,-0.003912,0.004499,0.249960,0,0);}
.m43_c00018{transform:matrix(0.217730,-0.001524,0.001750,0.249994,0,0);-ms-transform:matrix(0.217730,-0.001524,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217730,-0.001524,0.001750,0.249994,0,0);}
.mf6_c00018{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);}
.mcc_c00018{transform:matrix(0.219395,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219395,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219395,-0.001536,0.001750,0.249994,0,0);}
.m100_c00018{transform:matrix(0.219429,-0.003950,0.004499,0.249960,0,0);-ms-transform:matrix(0.219429,-0.003950,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219429,-0.003950,0.004499,0.249960,0,0);}
.m68_c00018{transform:matrix(0.220210,-0.001541,0.001750,0.249994,0,0);-ms-transform:matrix(0.220210,-0.001541,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220210,-0.001541,0.001750,0.249994,0,0);}
.md4_c00018{transform:matrix(0.220360,-0.001543,0.001750,0.249994,0,0);-ms-transform:matrix(0.220360,-0.001543,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220360,-0.001543,0.001750,0.249994,0,0);}
.m6a_c00018{transform:matrix(0.220610,-0.001544,0.001750,0.249994,0,0);-ms-transform:matrix(0.220610,-0.001544,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220610,-0.001544,0.001750,0.249994,0,0);}
.m93_c00018{transform:matrix(0.220710,-0.001545,0.001750,0.249994,0,0);-ms-transform:matrix(0.220710,-0.001545,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220710,-0.001545,0.001750,0.249994,0,0);}
.m75_c00018{transform:matrix(0.221130,-0.001548,0.001750,0.249994,0,0);-ms-transform:matrix(0.221130,-0.001548,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221130,-0.001548,0.001750,0.249994,0,0);}
.m1f_c00018{transform:matrix(0.221580,-0.001551,0.001750,0.249994,0,0);-ms-transform:matrix(0.221580,-0.001551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221580,-0.001551,0.001750,0.249994,0,0);}
.m67_c00018{transform:matrix(0.221675,-0.001552,0.001750,0.249994,0,0);-ms-transform:matrix(0.221675,-0.001552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221675,-0.001552,0.001750,0.249994,0,0);}
.mc2_c00018{transform:matrix(0.223005,-0.001561,0.001750,0.249994,0,0);-ms-transform:matrix(0.223005,-0.001561,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223005,-0.001561,0.001750,0.249994,0,0);}
.me2_c00018{transform:matrix(0.223205,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223205,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223205,-0.001562,0.001750,0.249994,0,0);}
.m69_c00018{transform:matrix(0.224150,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224150,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224150,-0.001569,0.001750,0.249994,0,0);}
.m15_c00018{transform:matrix(0.224255,-0.001570,0.001750,0.249994,0,0);-ms-transform:matrix(0.224255,-0.001570,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224255,-0.001570,0.001750,0.249994,0,0);}
.m6c_c00018{transform:matrix(0.224899,-0.001574,0.001750,0.249994,0,0);-ms-transform:matrix(0.224899,-0.001574,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224899,-0.001574,0.001750,0.249994,0,0);}
.m9a_c00018{transform:matrix(0.226724,-0.001587,0.001750,0.249994,0,0);-ms-transform:matrix(0.226724,-0.001587,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226724,-0.001587,0.001750,0.249994,0,0);}
.m62_c00018{transform:matrix(0.229044,-0.001603,0.001750,0.249994,0,0);-ms-transform:matrix(0.229044,-0.001603,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229044,-0.001603,0.001750,0.249994,0,0);}
.m27_c00018{transform:matrix(0.229989,-0.001610,0.001750,0.249994,0,0);-ms-transform:matrix(0.229989,-0.001610,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229989,-0.001610,0.001750,0.249994,0,0);}
.mf2_c00018{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);}
.m65_c00018{transform:matrix(0.230124,-0.001611,0.001750,0.249994,0,0);-ms-transform:matrix(0.230124,-0.001611,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230124,-0.001611,0.001750,0.249994,0,0);}
.m66_c00018{transform:matrix(0.234089,-0.001639,0.001750,0.249994,0,0);-ms-transform:matrix(0.234089,-0.001639,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234089,-0.001639,0.001750,0.249994,0,0);}
.m25_c00018{transform:matrix(0.238154,-0.001667,0.001750,0.249994,0,0);-ms-transform:matrix(0.238154,-0.001667,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238154,-0.001667,0.001750,0.249994,0,0);}
.mb_c00018{transform:matrix(0.239959,-0.001680,0.001750,0.249994,0,0);-ms-transform:matrix(0.239959,-0.001680,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239959,-0.001680,0.001750,0.249994,0,0);}
.mcf_c00018{transform:matrix(0.240249,-0.001682,0.001750,0.249994,0,0);-ms-transform:matrix(0.240249,-0.001682,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240249,-0.001682,0.001750,0.249994,0,0);}
.mc5_c00018{transform:matrix(0.241724,-0.001692,0.001750,0.249994,0,0);-ms-transform:matrix(0.241724,-0.001692,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241724,-0.001692,0.001750,0.249994,0,0);}
.m101_c00018{transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);}
.m109_c00018{transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);}
.mc6_c00018{transform:matrix(0.242659,-0.001699,0.001750,0.249994,0,0);-ms-transform:matrix(0.242659,-0.001699,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242659,-0.001699,0.001750,0.249994,0,0);}
.m95_c00018{transform:matrix(0.242854,-0.001700,0.001750,0.249994,0,0);-ms-transform:matrix(0.242854,-0.001700,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242854,-0.001700,0.001750,0.249994,0,0);}
.m41_c00018{transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);-ms-transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);}
.ma8_c00018{transform:matrix(0.246954,-0.001729,0.001750,0.249994,0,0);-ms-transform:matrix(0.246954,-0.001729,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246954,-0.001729,0.001750,0.249994,0,0);}
.mc8_c00018{transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);}
.mbe_c00018{transform:matrix(0.249369,-0.001746,0.001750,0.249994,0,0);-ms-transform:matrix(0.249369,-0.001746,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249369,-0.001746,0.001750,0.249994,0,0);}
.mf3_c00018{transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);}
.mc0_c00018{transform:matrix(0.252864,-0.001770,0.001750,0.249994,0,0);-ms-transform:matrix(0.252864,-0.001770,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252864,-0.001770,0.001750,0.249994,0,0);}
.mfb_c00018{transform:matrix(0.259778,-0.004676,0.004499,0.249960,0,0);-ms-transform:matrix(0.259778,-0.004676,0.004499,0.249960,0,0);-webkit-transform:matrix(0.259778,-0.004676,0.004499,0.249960,0,0);}
.m76_c00018{transform:matrix(0.263964,-0.001848,0.001750,0.249994,0,0);-ms-transform:matrix(0.263964,-0.001848,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263964,-0.001848,0.001750,0.249994,0,0);}
.mbf_c00018{transform:matrix(0.265753,-0.001860,0.001750,0.249994,0,0);-ms-transform:matrix(0.265753,-0.001860,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265753,-0.001860,0.001750,0.249994,0,0);}
.m3e_c00018{transform:matrix(0.275773,-0.001930,0.001750,0.249994,0,0);-ms-transform:matrix(0.275773,-0.001930,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275773,-0.001930,0.001750,0.249994,0,0);}
.me5_c00018{transform:matrix(0.276948,-0.001939,0.001750,0.249994,0,0);-ms-transform:matrix(0.276948,-0.001939,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276948,-0.001939,0.001750,0.249994,0,0);}
.mf1_c00018{transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);}
.m60_c00018{transform:matrix(0.286678,-0.002007,0.001750,0.249994,0,0);-ms-transform:matrix(0.286678,-0.002007,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286678,-0.002007,0.001750,0.249994,0,0);}
.m2_c00018{transform:matrix(0.287098,0.005742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287098,0.005742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287098,0.005742,-0.004999,0.249950,0,0);}
.mc7_c00018{transform:matrix(0.288803,-0.002022,0.001750,0.249994,0,0);-ms-transform:matrix(0.288803,-0.002022,0.001750,0.249994,0,0);-webkit-transform:matrix(0.288803,-0.002022,0.001750,0.249994,0,0);}
.m8_c00018{transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);}
.ma7_c00018{transform:matrix(0.312197,-0.002185,0.001750,0.249994,0,0);-ms-transform:matrix(0.312197,-0.002185,0.001750,0.249994,0,0);-webkit-transform:matrix(0.312197,-0.002185,0.001750,0.249994,0,0);}
.m71_c00018{transform:matrix(0.314017,-0.002198,0.001750,0.249994,0,0);-ms-transform:matrix(0.314017,-0.002198,0.001750,0.249994,0,0);-webkit-transform:matrix(0.314017,-0.002198,0.001750,0.249994,0,0);}
.m5_c00018{transform:matrix(0.315682,0.006314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.315682,0.006314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.315682,0.006314,-0.004999,0.249950,0,0);}
.me0_c00018{transform:matrix(0.341127,-0.002388,0.001750,0.249994,0,0);-ms-transform:matrix(0.341127,-0.002388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.341127,-0.002388,0.001750,0.249994,0,0);}
.m35_c00018{transform:matrix(0.353021,-0.002471,0.001750,0.249994,0,0);-ms-transform:matrix(0.353021,-0.002471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.353021,-0.002471,0.001750,0.249994,0,0);}
.m6_c00018{transform:matrix(0.353495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353495,0.000000,0.000000,0.250000,0,0);}
.m48_c00018{transform:matrix(0.385501,-0.002699,0.001750,0.249994,0,0);-ms-transform:matrix(0.385501,-0.002699,0.001750,0.249994,0,0);-webkit-transform:matrix(0.385501,-0.002699,0.001750,0.249994,0,0);}
.mb5_c00018{transform:matrix(0.423195,-0.002962,0.001750,0.249994,0,0);-ms-transform:matrix(0.423195,-0.002962,0.001750,0.249994,0,0);-webkit-transform:matrix(0.423195,-0.002962,0.001750,0.249994,0,0);}
.m70_c00018{transform:matrix(0.427090,-0.002990,0.001750,0.249994,0,0);-ms-transform:matrix(0.427090,-0.002990,0.001750,0.249994,0,0);-webkit-transform:matrix(0.427090,-0.002990,0.001750,0.249994,0,0);}
.m3_c00018{transform:matrix(0.452090,0.009042,-0.004999,0.249950,0,0);-ms-transform:matrix(0.452090,0.009042,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.452090,0.009042,-0.004999,0.249950,0,0);}
.m9_c00018{transform:matrix(0.478285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478285,0.000000,0.000000,0.250000,0,0);}
.mb4_c00018{transform:matrix(0.516902,-0.003618,0.001750,0.249994,0,0);-ms-transform:matrix(0.516902,-0.003618,0.001750,0.249994,0,0);-webkit-transform:matrix(0.516902,-0.003618,0.001750,0.249994,0,0);}
.ma_c00018{transform:matrix(0.528092,-0.003697,0.001750,0.249994,0,0);-ms-transform:matrix(0.528092,-0.003697,0.001750,0.249994,0,0);-webkit-transform:matrix(0.528092,-0.003697,0.001750,0.249994,0,0);}
.m0_c00018{transform:matrix(0.559168,0.011183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.559168,0.011183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.559168,0.011183,-0.004999,0.249950,0,0);}
.m42_c00018{transform:matrix(0.573836,-0.004017,0.001750,0.249994,0,0);-ms-transform:matrix(0.573836,-0.004017,0.001750,0.249994,0,0);-webkit-transform:matrix(0.573836,-0.004017,0.001750,0.249994,0,0);}
.m4_c00018{transform:matrix(0.703784,0.014076,-0.004999,0.249950,0,0);-ms-transform:matrix(0.703784,0.014076,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.703784,0.014076,-0.004999,0.249950,0,0);}
.m1_c00018{transform:matrix(0.808198,0.016164,-0.004999,0.249950,0,0);-ms-transform:matrix(0.808198,0.016164,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.808198,0.016164,-0.004999,0.249950,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:48.309659px;}
.fsc_c00018{font-size:57.751415px;}
.fsa_c00018{font-size:61.951518px;}
.fs4_c00018{font-size:63.001543px;}
.fs9_c00018{font-size:64.051569px;}
.fse_c00018{font-size:66.160715px;}
.fs2_c00018{font-size:68.251672px;}
.fs3_c00018{font-size:69.301698px;}
.fsd_c00018{font-size:70.350000px;}
.fs7_c00018{font-size:70.351724px;}
.fsf_c00018{font-size:71.400000px;}
.fs6_c00018{font-size:71.401749px;}
.fsb_c00018{font-size:72.451775px;}
.fs5_c00018{font-size:73.501801px;}
.fs8_c00018{font-size:77.701904px;}
.fs1_c00018{font-size:90.300000px;}
.y0_c00018{bottom:0.000000px;}
.y6_c00018{bottom:194.846880px;}
.y5_c00018{bottom:195.409020px;}
.y4_c00018{bottom:196.841790px;}
.y3_c00018{bottom:198.223380px;}
.y2_c00018{bottom:199.517280px;}
.y1_c00018{bottom:200.346000px;}
.yfc_c00018{bottom:219.214500px;}
.yf2_c00018{bottom:237.336000px;}
.yf3_c00018{bottom:238.502643px;}
.yf4_c00018{bottom:239.400987px;}
.yf5_c00018{bottom:239.935587px;}
.yf6_c00018{bottom:241.320471px;}
.yf7_c00018{bottom:241.709460px;}
.yf8_c00018{bottom:242.433573px;}
.yf9_c00018{bottom:242.832201px;}
.yfa_c00018{bottom:244.255344px;}
.yfb_c00018{bottom:245.139972px;}
.yf0_c00018{bottom:265.026000px;}
.yef_c00018{bottom:265.026041px;}
.yed_c00018{bottom:265.026242px;}
.yec_c00018{bottom:265.026512px;}
.yee_c00018{bottom:265.026711px;}
.yeb_c00018{bottom:265.026842px;}
.yea_c00018{bottom:265.027542px;}
.ye7_c00018{bottom:265.027604px;}
.ye9_c00018{bottom:265.028213px;}
.ye8_c00018{bottom:265.028283px;}
.ye6_c00018{bottom:287.195972px;}
.ye4_c00018{bottom:287.196413px;}
.ye5_c00018{bottom:287.196492px;}
.ye0_c00018{bottom:287.196635px;}
.ye1_c00018{bottom:287.196714px;}
.yde_c00018{bottom:287.197046px;}
.ye3_c00018{bottom:287.197053px;}
.ye2_c00018{bottom:287.197124px;}
.ydf_c00018{bottom:287.197335px;}
.ydd_c00018{bottom:287.197596px;}
.ydc_c00018{bottom:287.198147px;}
.yd2_c00018{bottom:310.601301px;}
.yd5_c00018{bottom:310.601490px;}
.yd4_c00018{bottom:310.601741px;}
.yd3_c00018{bottom:310.601921px;}
.yd9_c00018{bottom:310.602059px;}
.yd6_c00018{bottom:310.602210px;}
.yd7_c00018{bottom:310.602230px;}
.yd8_c00018{bottom:310.602519px;}
.yda_c00018{bottom:310.602798px;}
.ydb_c00018{bottom:310.602878px;}
.ycc_c00018{bottom:333.103163px;}
.yd1_c00018{bottom:333.103260px;}
.ycb_c00018{bottom:333.103323px;}
.yca_c00018{bottom:333.103503px;}
.ycf_c00018{bottom:333.103551px;}
.yc8_c00018{bottom:333.103634px;}
.yce_c00018{bottom:333.103712px;}
.ycd_c00018{bottom:333.103722px;}
.yc9_c00018{bottom:333.103814px;}
.yd0_c00018{bottom:333.103871px;}
.yc0_c00018{bottom:356.195138px;}
.yc1_c00018{bottom:356.195457px;}
.ybf_c00018{bottom:356.195718px;}
.yc2_c00018{bottom:356.195957px;}
.yc3_c00018{bottom:356.195976px;}
.ybe_c00018{bottom:356.196108px;}
.yc7_c00018{bottom:356.196384px;}
.yc4_c00018{bottom:356.196626px;}
.yc5_c00018{bottom:356.197035px;}
.yc6_c00018{bottom:356.197115px;}
.yb6_c00018{bottom:379.817672px;}
.yb5_c00018{bottom:379.817933px;}
.yb7_c00018{bottom:379.817942px;}
.yb8_c00018{bottom:379.818092px;}
.yba_c00018{bottom:379.818251px;}
.yb4_c00018{bottom:379.818363px;}
.ybb_c00018{bottom:379.818720px;}
.yb9_c00018{bottom:379.818831px;}
.ybd_c00018{bottom:379.818860px;}
.ybc_c00018{bottom:379.818920px;}
.yac_c00018{bottom:401.811944px;}
.yad_c00018{bottom:401.812083px;}
.yae_c00018{bottom:401.812102px;}
.yab_c00018{bottom:401.812573px;}
.yaf_c00018{bottom:401.812763px;}
.yaa_c00018{bottom:401.813244px;}
.yb0_c00018{bottom:401.813262px;}
.yb1_c00018{bottom:401.813702px;}
.yb3_c00018{bottom:401.814171px;}
.yb2_c00018{bottom:401.814351px;}
.y9e_c00018{bottom:423.350061px;}
.y9f_c00018{bottom:423.844602px;}
.ya0_c00018{bottom:424.086303px;}
.ya1_c00018{bottom:424.900822px;}
.ya2_c00018{bottom:425.131542px;}
.ya3_c00018{bottom:425.351070px;}
.ya4_c00018{bottom:425.583942px;}
.ya5_c00018{bottom:425.741486px;}
.ya6_c00018{bottom:426.196950px;}
.ya7_c00018{bottom:426.398440px;}
.ya8_c00018{bottom:426.607417px;}
.ya9_c00018{bottom:426.782913px;}
.y9b_c00018{bottom:447.728668px;}
.y9c_c00018{bottom:447.728718px;}
.y9d_c00018{bottom:447.728917px;}
.y9a_c00018{bottom:447.729079px;}
.y97_c00018{bottom:447.729430px;}
.y99_c00018{bottom:447.729810px;}
.y96_c00018{bottom:447.729880px;}
.y98_c00018{bottom:447.730050px;}
.y95_c00018{bottom:447.730191px;}
.y8b_c00018{bottom:470.713205px;}
.y8d_c00018{bottom:470.713303px;}
.y8e_c00018{bottom:470.713413px;}
.y8c_c00018{bottom:470.713464px;}
.y8f_c00018{bottom:470.713732px;}
.y90_c00018{bottom:470.713782px;}
.y93_c00018{bottom:470.714041px;}
.y91_c00018{bottom:470.714112px;}
.y92_c00018{bottom:470.714492px;}
.y94_c00018{bottom:470.714631px;}
.y88_c00018{bottom:493.455975px;}
.y89_c00018{bottom:493.456234px;}
.y87_c00018{bottom:493.456335px;}
.y86_c00018{bottom:493.456705px;}
.y8a_c00018{bottom:493.456794px;}
.y83_c00018{bottom:493.456996px;}
.y85_c00018{bottom:493.457376px;}
.y84_c00018{bottom:493.457386px;}
.y82_c00018{bottom:493.457607px;}
.y81_c00018{bottom:493.458327px;}
.y80_c00018{bottom:493.458817px;}
.y7d_c00018{bottom:516.906349px;}
.y7c_c00018{bottom:516.906690px;}
.y7e_c00018{bottom:516.906879px;}
.y7b_c00018{bottom:516.907180px;}
.y7f_c00018{bottom:516.907528px;}
.y75_c00018{bottom:516.907632px;}
.y7a_c00018{bottom:516.907641px;}
.y79_c00018{bottom:516.907791px;}
.y76_c00018{bottom:516.907812px;}
.y74_c00018{bottom:516.907882px;}
.y77_c00018{bottom:516.908082px;}
.y78_c00018{bottom:516.908101px;}
.y73_c00018{bottom:540.377244px;}
.y6b_c00018{bottom:540.377737px;}
.y6e_c00018{bottom:540.377875px;}
.y72_c00018{bottom:540.377904px;}
.y6f_c00018{bottom:540.378075px;}
.y6d_c00018{bottom:540.378156px;}
.y6c_c00018{bottom:540.378237px;}
.y71_c00018{bottom:540.378634px;}
.y70_c00018{bottom:540.378735px;}
.y69_c00018{bottom:564.119569px;}
.y65_c00018{bottom:564.119652px;}
.y6a_c00018{bottom:564.119709px;}
.y67_c00018{bottom:564.119831px;}
.y66_c00018{bottom:564.119851px;}
.y64_c00018{bottom:564.119922px;}
.y68_c00018{bottom:564.120000px;}
.y63_c00018{bottom:564.120413px;}
.y61_c00018{bottom:564.120523px;}
.y62_c00018{bottom:564.120663px;}
.y58_c00018{bottom:585.524023px;}
.y57_c00018{bottom:585.524364px;}
.y59_c00018{bottom:585.524384px;}
.y5b_c00018{bottom:585.524592px;}
.y5d_c00018{bottom:585.524751px;}
.y5a_c00018{bottom:585.524763px;}
.y5c_c00018{bottom:585.524942px;}
.y5e_c00018{bottom:585.525430px;}
.y5f_c00018{bottom:585.525750px;}
.y60_c00018{bottom:585.525770px;}
.y56_c00018{bottom:608.179754px;}
.y54_c00018{bottom:608.179835px;}
.y53_c00018{bottom:608.180145px;}
.y55_c00018{bottom:608.180394px;}
.y52_c00018{bottom:608.180516px;}
.y50_c00018{bottom:608.180766px;}
.y51_c00018{bottom:608.180965px;}
.y4e_c00018{bottom:608.181047px;}
.y4d_c00018{bottom:608.181417px;}
.y4f_c00018{bottom:608.181456px;}
.y4b_c00018{bottom:631.077658px;}
.y4a_c00018{bottom:631.077999px;}
.y4c_c00018{bottom:631.078338px;}
.y49_c00018{bottom:631.078350px;}
.y48_c00018{bottom:631.078391px;}
.y47_c00018{bottom:631.078611px;}
.yf1_c00018{bottom:631.933500px;}
.y3d_c00018{bottom:653.526543px;}
.y3e_c00018{bottom:653.526952px;}
.y3f_c00018{bottom:653.527662px;}
.y45_c00018{bottom:653.527890px;}
.y46_c00018{bottom:653.528070px;}
.y43_c00018{bottom:653.528170px;}
.y40_c00018{bottom:653.528282px;}
.y44_c00018{bottom:653.528560px;}
.y42_c00018{bottom:653.528811px;}
.y41_c00018{bottom:653.528882px;}
.y38_c00018{bottom:675.930734px;}
.y35_c00018{bottom:675.930885px;}
.y37_c00018{bottom:675.931194px;}
.y3c_c00018{bottom:675.931343px;}
.y39_c00018{bottom:675.931453px;}
.y34_c00018{bottom:675.931465px;}
.y36_c00018{bottom:675.931504px;}
.y3a_c00018{bottom:675.931833px;}
.y3b_c00018{bottom:675.931912px;}
.y33_c00018{bottom:699.646088px;}
.y31_c00018{bottom:699.646518px;}
.y32_c00018{bottom:699.646748px;}
.y30_c00018{bottom:699.647118px;}
.y2c_c00018{bottom:699.647220px;}
.y2b_c00018{bottom:699.647490px;}
.y2f_c00018{bottom:699.647548px;}
.y2a_c00018{bottom:699.647670px;}
.y29_c00018{bottom:699.647680px;}
.y2e_c00018{bottom:699.647739px;}
.y2d_c00018{bottom:699.647749px;}
.y1e_c00018{bottom:720.899871px;}
.y1f_c00018{bottom:721.111530px;}
.y20_c00018{bottom:721.546251px;}
.y21_c00018{bottom:721.784401px;}
.y22_c00018{bottom:721.997824px;}
.y23_c00018{bottom:722.360904px;}
.y24_c00018{bottom:722.797483px;}
.y25_c00018{bottom:723.090423px;}
.y26_c00018{bottom:723.613943px;}
.y27_c00018{bottom:723.738483px;}
.y28_c00018{bottom:723.988057px;}
.y12_c00018{bottom:745.279516px;}
.y1c_c00018{bottom:745.279524px;}
.y15_c00018{bottom:745.279746px;}
.y1d_c00018{bottom:745.279874px;}
.y13_c00018{bottom:745.279937px;}
.y1b_c00018{bottom:745.280184px;}
.y16_c00018{bottom:745.280406px;}
.y14_c00018{bottom:745.280466px;}
.y1a_c00018{bottom:745.280524px;}
.y18_c00018{bottom:745.280625px;}
.y17_c00018{bottom:745.281116px;}
.y19_c00018{bottom:745.281154px;}
.y8_c00018{bottom:765.991500px;}
.y9_c00018{bottom:766.517750px;}
.ya_c00018{bottom:767.205678px;}
.yb_c00018{bottom:767.364690px;}
.yc_c00018{bottom:767.753820px;}
.yd_c00018{bottom:767.961930px;}
.ye_c00018{bottom:768.124491px;}
.yf_c00018{bottom:768.566572px;}
.y10_c00018{bottom:768.882150px;}
.y11_c00018{bottom:769.105401px;}
.y7_c00018{bottom:815.022000px;}
.h2_c00018{height:48.309659px;}
.he_c00018{height:57.751415px;}
.hc_c00018{height:61.951518px;}
.h6_c00018{height:63.001543px;}
.hb_c00018{height:64.051569px;}
.h10_c00018{height:66.160715px;}
.h4_c00018{height:68.251672px;}
.h5_c00018{height:69.301698px;}
.hf_c00018{height:70.350000px;}
.h9_c00018{height:70.351724px;}
.h11_c00018{height:71.400000px;}
.h8_c00018{height:71.401749px;}
.hd_c00018{height:72.451775px;}
.h7_c00018{height:73.501801px;}
.ha_c00018{height:77.701904px;}
.h3_c00018{height:90.300000px;}
.h1_c00018{height:1080.000000px;}
.h0_c00018{height:1080.270000px;}
.w1_c00018{width:768.000000px;}
.w0_c00018{width:768.150000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:87.717000px;}
.x5c_c00018{left:119.875605px;}
.x7d_c00018{left:125.546963px;}
.x2f_c00018{left:126.631826px;}
.x9_c00018{left:127.935000px;}
.x2_c00018{left:129.153000px;}
.xa5_c00018{left:130.410000px;}
.x83_c00018{left:141.478094px;}
.x7b_c00018{left:146.877051px;}
.x13_c00018{left:148.500482px;}
.x5d_c00018{left:156.055880px;}
.x1d_c00018{left:158.040620px;}
.x62_c00018{left:160.105215px;}
.x30_c00018{left:163.622142px;}
.x68_c00018{left:166.855752px;}
.x27_c00018{left:168.211358px;}
.x4a_c00018{left:169.560750px;}
.x8e_c00018{left:172.256243px;}
.x96_c00018{left:174.412848px;}
.x4f_c00018{left:177.659463px;}
.x5e_c00018{left:186.297360px;}
.x44_c00018{left:188.192072px;}
.x4b_c00018{left:189.541727px;}
.x28_c00018{left:191.972523px;}
.x3_c00018{left:193.848000px;}
.x31_c00018{left:195.212186px;}
.x14_c00018{left:198.721439px;}
.x91_c00018{left:199.796418px;}
.x97_c00018{left:201.414171px;}
.xa_c00018{left:203.113500px;}
.x37_c00018{left:204.933486px;}
.x55_c00018{left:211.409306px;}
.x15_c00018{left:212.762132px;}
.x6e_c00018{left:215.728527px;}
.x1e_c00018{left:220.143620px;}
.x45_c00018{left:222.752262px;}
.x7_c00018{left:225.720000px;}
.x32_c00018{left:230.312408px;}
.x40_c00018{left:231.934442px;}
.x16_c00018{left:238.143371px;}
.x50_c00018{left:240.841061px;}
.xa6_c00018{left:242.730000px;}
.x38_c00018{left:244.893939px;}
.x87_c00018{left:248.399970px;}
.x1f_c00018{left:254.165120px;}
.x8f_c00018{left:259.199006px;}
.x6f_c00018{left:260.819232px;}
.x4_c00018{left:262.927500px;}
.x63_c00018{left:271.619186px;}
.x51_c00018{left:272.701125px;}
.xa2_c00018{left:274.338000px;}
.x17_c00018{left:278.103824px;}
.x98_c00018{left:281.336588px;}
.x70_c00018{left:283.500345px;}
.x20_c00018{left:284.654120px;}
.x5f_c00018{left:286.200753px;}
.x7e_c00018{left:287.280390px;}
.x7c_c00018{left:288.360992px;}
.x39_c00018{left:289.984644px;}
.xa7_c00018{left:292.950000px;}
.x92_c00018{left:294.028038px;}
.x29_c00018{left:298.086221px;}
.xb_c00018{left:301.389000px;}
.x88_c00018{left:303.211158px;}
.x8_c00018{left:304.830000px;}
.x46_c00018{left:308.614973px;}
.x33_c00018{left:309.964814px;}
.x3a_c00018{left:314.285831px;}
.x75_c00018{left:321.949524px;}
.xc_c00018{left:324.105000px;}
.x41_c00018{left:327.246114px;}
.x4c_c00018{left:328.864052px;}
.x5_c00018{left:334.566000px;}
.x21_c00018{left:336.522620px;}
.x64_c00018{left:339.120993px;}
.x56_c00018{left:347.221463px;}
.x18_c00018{left:350.465873px;}
.x71_c00018{left:351.542184px;}
.x52_c00018{left:352.623542px;}
.x93_c00018{left:356.399594px;}
.x7f_c00018{left:357.482324px;}
.x89_c00018{left:360.722472px;}
.x6_c00018{left:362.673000px;}
.xa3_c00018{left:372.886500px;}
.x57_c00018{left:374.222786px;}
.x84_c00018{left:376.383602px;}
.x76_c00018{left:378.341636px;}
.xd_c00018{left:379.695000px;}
.x3b_c00018{left:380.707586px;}
.x42_c00018{left:382.057302px;}
.x99_c00018{left:385.288691px;}
.x19_c00018{left:387.186168px;}
.x69_c00018{left:388.262099px;}
.x34_c00018{left:390.697262px;}
.x22_c00018{left:398.891120px;}
.x8a_c00018{left:401.222957px;}
.x9d_c00018{left:403.650000px;}
.x90_c00018{left:406.353209px;}
.x77_c00018{left:407.537436px;}
.xe_c00018{left:409.425000px;}
.x9a_c00018{left:413.100056px;}
.x65_c00018{left:415.261731px;}
.x2a_c00018{left:416.349017px;}
.x60_c00018{left:418.504242px;}
.x80_c00018{left:421.473963px;}
.x43_c00018{left:428.228060px;}
.x6a_c00018{left:429.842636px;}
.xf_c00018{left:432.648000px;}
.x66_c00018{left:435.782739px;}
.x35_c00018{left:439.568156px;}
.x23_c00018{left:440.739620px;}
.x9b_c00018{left:441.991473px;}
.x3c_c00018{left:443.619173px;}
.x72_c00018{left:445.773804px;}
.x53_c00018{left:447.125172px;}
.x58_c00018{left:450.635024px;}
.x6b_c00018{left:456.033917px;}
.x47_c00018{left:457.389270px;}
.x4d_c00018{left:459.275936px;}
.x36_c00018{left:463.059311px;}
.x1a_c00018{left:464.408459px;}
.xa8_c00018{left:469.260000px;}
.x3d_c00018{left:470.890506px;}
.x8b_c00018{left:472.774964px;}
.x9c_c00018{left:477.631716px;}
.x59_c00018{left:482.765099px;}
.x78_c00018{left:484.180901px;}
.x85_c00018{left:485.194425px;}
.x73_c00018{left:487.354341px;}
.x2b_c00018{left:489.791118px;}
.x54_c00018{left:490.865814px;}
.x9e_c00018{left:491.940000px;}
.x1b_c00018{left:493.029866px;}
.x10_c00018{left:495.802500px;}
.x67_c00018{left:501.394452px;}
.x2c_c00018{left:505.991916px;}
.x79_c00018{left:509.322222px;}
.xa9_c00018{left:510.840000px;}
.x8c_c00018{left:512.465406px;}
.xa4_c00018{left:514.324500px;}
.x24_c00018{left:515.528120px;}
.x81_c00018{left:521.645867px;}
.x5a_c00018{left:523.805615px;}
.x3e_c00018{left:526.511736px;}
.x48_c00018{left:528.401246px;}
.x25_c00018{left:533.319620px;}
.x7a_c00018{left:535.533044px;}
.x2d_c00018{left:537.311949px;}
.x5b_c00018{left:538.926360px;}
.x11_c00018{left:540.885000px;}
.x9f_c00018{left:543.510000px;}
.x82_c00018{left:547.567137px;}
.x6c_c00018{left:549.456995px;}
.x2e_c00018{left:552.432695px;}
.x1c_c00018{left:553.511326px;}
.x94_c00018{left:555.663359px;}
.x3f_c00018{left:556.753217px;}
.x49_c00018{left:564.311510px;}
.x86_c00018{left:566.736926px;}
.x26_c00018{left:568.973120px;}
.x12_c00018{left:572.778000px;}
.xa0_c00018{left:574.830000px;}
.x74_c00018{left:578.887325px;}
.x61_c00018{left:580.776191px;}
.x8d_c00018{left:582.667350px;}
.x4e_c00018{left:587.259204px;}
.x95_c00018{left:593.733728px;}
.x6d_c00018{left:600.758004px;}
.xa1_c00018{left:613.440000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.fs0_c00018{font-size:42.941919pt;}
.fsc_c00018{font-size:51.334591pt;}
.fsa_c00018{font-size:55.068016pt;}
.fs4_c00018{font-size:56.001372pt;}
.fs9_c00018{font-size:56.934728pt;}
.fse_c00018{font-size:58.809525pt;}
.fs2_c00018{font-size:60.668153pt;}
.fs3_c00018{font-size:61.601509pt;}
.fsd_c00018{font-size:62.533333pt;}
.fs7_c00018{font-size:62.534865pt;}
.fsf_c00018{font-size:63.466667pt;}
.fs6_c00018{font-size:63.468222pt;}
.fsb_c00018{font-size:64.401578pt;}
.fs5_c00018{font-size:65.334934pt;}
.fs8_c00018{font-size:69.068359pt;}
.fs1_c00018{font-size:80.266667pt;}
.y0_c00018{bottom:0.000000pt;}
.y6_c00018{bottom:173.197227pt;}
.y5_c00018{bottom:173.696907pt;}
.y4_c00018{bottom:174.970480pt;}
.y3_c00018{bottom:176.198560pt;}
.y2_c00018{bottom:177.348693pt;}
.y1_c00018{bottom:178.085333pt;}
.yfc_c00018{bottom:194.857333pt;}
.yf2_c00018{bottom:210.965333pt;}
.yf3_c00018{bottom:212.002349pt;}
.yf4_c00018{bottom:212.800877pt;}
.yf5_c00018{bottom:213.276077pt;}
.yf6_c00018{bottom:214.507085pt;}
.yf7_c00018{bottom:214.852853pt;}
.yf8_c00018{bottom:215.496509pt;}
.yf9_c00018{bottom:215.850845pt;}
.yfa_c00018{bottom:217.115861pt;}
.yfb_c00018{bottom:217.902197pt;}
.yf0_c00018{bottom:235.578667pt;}
.yef_c00018{bottom:235.578703pt;}
.yed_c00018{bottom:235.578881pt;}
.yec_c00018{bottom:235.579121pt;}
.yee_c00018{bottom:235.579299pt;}
.yeb_c00018{bottom:235.579415pt;}
.yea_c00018{bottom:235.580037pt;}
.ye7_c00018{bottom:235.580092pt;}
.ye9_c00018{bottom:235.580633pt;}
.ye8_c00018{bottom:235.580696pt;}
.ye6_c00018{bottom:255.285308pt;}
.ye4_c00018{bottom:255.285700pt;}
.ye5_c00018{bottom:255.285771pt;}
.ye0_c00018{bottom:255.285897pt;}
.ye1_c00018{bottom:255.285968pt;}
.yde_c00018{bottom:255.286263pt;}
.ye3_c00018{bottom:255.286269pt;}
.ye2_c00018{bottom:255.286332pt;}
.ydf_c00018{bottom:255.286520pt;}
.ydd_c00018{bottom:255.286752pt;}
.ydc_c00018{bottom:255.287241pt;}
.yd2_c00018{bottom:276.090045pt;}
.yd5_c00018{bottom:276.090213pt;}
.yd4_c00018{bottom:276.090436pt;}
.yd3_c00018{bottom:276.090596pt;}
.yd9_c00018{bottom:276.090719pt;}
.yd6_c00018{bottom:276.090853pt;}
.yd7_c00018{bottom:276.090871pt;}
.yd8_c00018{bottom:276.091128pt;}
.yda_c00018{bottom:276.091376pt;}
.ydb_c00018{bottom:276.091447pt;}
.ycc_c00018{bottom:296.091700pt;}
.yd1_c00018{bottom:296.091787pt;}
.ycb_c00018{bottom:296.091843pt;}
.yca_c00018{bottom:296.092003pt;}
.ycf_c00018{bottom:296.092045pt;}
.yc8_c00018{bottom:296.092119pt;}
.yce_c00018{bottom:296.092188pt;}
.ycd_c00018{bottom:296.092197pt;}
.yc9_c00018{bottom:296.092279pt;}
.yd0_c00018{bottom:296.092329pt;}
.yc0_c00018{bottom:316.617900pt;}
.yc1_c00018{bottom:316.618184pt;}
.ybf_c00018{bottom:316.618416pt;}
.yc2_c00018{bottom:316.618628pt;}
.yc3_c00018{bottom:316.618645pt;}
.ybe_c00018{bottom:316.618763pt;}
.yc7_c00018{bottom:316.619008pt;}
.yc4_c00018{bottom:316.619223pt;}
.yc5_c00018{bottom:316.619587pt;}
.yc6_c00018{bottom:316.619657pt;}
.yb6_c00018{bottom:337.615708pt;}
.yb5_c00018{bottom:337.615940pt;}
.yb7_c00018{bottom:337.615948pt;}
.yb8_c00018{bottom:337.616081pt;}
.yba_c00018{bottom:337.616223pt;}
.yb4_c00018{bottom:337.616323pt;}
.ybb_c00018{bottom:337.616640pt;}
.yb9_c00018{bottom:337.616739pt;}
.ybd_c00018{bottom:337.616764pt;}
.ybc_c00018{bottom:337.616817pt;}
.yac_c00018{bottom:357.166172pt;}
.yad_c00018{bottom:357.166296pt;}
.yae_c00018{bottom:357.166313pt;}
.yab_c00018{bottom:357.166732pt;}
.yaf_c00018{bottom:357.166900pt;}
.yaa_c00018{bottom:357.167328pt;}
.yb0_c00018{bottom:357.167344pt;}
.yb1_c00018{bottom:357.167735pt;}
.yb3_c00018{bottom:357.168152pt;}
.yb2_c00018{bottom:357.168312pt;}
.y9e_c00018{bottom:376.311165pt;}
.y9f_c00018{bottom:376.750757pt;}
.ya0_c00018{bottom:376.965603pt;}
.ya1_c00018{bottom:377.689620pt;}
.ya2_c00018{bottom:377.894704pt;}
.ya3_c00018{bottom:378.089840pt;}
.ya4_c00018{bottom:378.296837pt;}
.ya5_c00018{bottom:378.436876pt;}
.ya6_c00018{bottom:378.841733pt;}
.ya7_c00018{bottom:379.020836pt;}
.ya8_c00018{bottom:379.206593pt;}
.ya9_c00018{bottom:379.362589pt;}
.y9b_c00018{bottom:397.981039pt;}
.y9c_c00018{bottom:397.981083pt;}
.y9d_c00018{bottom:397.981260pt;}
.y9a_c00018{bottom:397.981404pt;}
.y97_c00018{bottom:397.981716pt;}
.y99_c00018{bottom:397.982053pt;}
.y96_c00018{bottom:397.982116pt;}
.y98_c00018{bottom:397.982267pt;}
.y95_c00018{bottom:397.982392pt;}
.y8b_c00018{bottom:418.411737pt;}
.y8d_c00018{bottom:418.411825pt;}
.y8e_c00018{bottom:418.411923pt;}
.y8c_c00018{bottom:418.411968pt;}
.y8f_c00018{bottom:418.412207pt;}
.y90_c00018{bottom:418.412251pt;}
.y93_c00018{bottom:418.412481pt;}
.y91_c00018{bottom:418.412544pt;}
.y92_c00018{bottom:418.412881pt;}
.y94_c00018{bottom:418.413005pt;}
.y88_c00018{bottom:438.627533pt;}
.y89_c00018{bottom:438.627764pt;}
.y87_c00018{bottom:438.627853pt;}
.y86_c00018{bottom:438.628183pt;}
.y8a_c00018{bottom:438.628261pt;}
.y83_c00018{bottom:438.628441pt;}
.y85_c00018{bottom:438.628779pt;}
.y84_c00018{bottom:438.628788pt;}
.y82_c00018{bottom:438.628984pt;}
.y81_c00018{bottom:438.629624pt;}
.y80_c00018{bottom:438.630060pt;}
.y7d_c00018{bottom:459.472311pt;}
.y7c_c00018{bottom:459.472613pt;}
.y7e_c00018{bottom:459.472781pt;}
.y7b_c00018{bottom:459.473049pt;}
.y7f_c00018{bottom:459.473359pt;}
.y75_c00018{bottom:459.473451pt;}
.y7a_c00018{bottom:459.473459pt;}
.y79_c00018{bottom:459.473592pt;}
.y76_c00018{bottom:459.473611pt;}
.y74_c00018{bottom:459.473673pt;}
.y77_c00018{bottom:459.473851pt;}
.y78_c00018{bottom:459.473868pt;}
.y73_c00018{bottom:480.335328pt;}
.y6b_c00018{bottom:480.335767pt;}
.y6e_c00018{bottom:480.335889pt;}
.y72_c00018{bottom:480.335915pt;}
.y6f_c00018{bottom:480.336067pt;}
.y6d_c00018{bottom:480.336139pt;}
.y6c_c00018{bottom:480.336211pt;}
.y71_c00018{bottom:480.336564pt;}
.y70_c00018{bottom:480.336653pt;}
.y69_c00018{bottom:501.439617pt;}
.y65_c00018{bottom:501.439691pt;}
.y6a_c00018{bottom:501.439741pt;}
.y67_c00018{bottom:501.439849pt;}
.y66_c00018{bottom:501.439868pt;}
.y64_c00018{bottom:501.439931pt;}
.y68_c00018{bottom:501.440000pt;}
.y63_c00018{bottom:501.440367pt;}
.y61_c00018{bottom:501.440465pt;}
.y62_c00018{bottom:501.440589pt;}
.y58_c00018{bottom:520.465799pt;}
.y57_c00018{bottom:520.466101pt;}
.y59_c00018{bottom:520.466119pt;}
.y5b_c00018{bottom:520.466304pt;}
.y5d_c00018{bottom:520.466445pt;}
.y5a_c00018{bottom:520.466456pt;}
.y5c_c00018{bottom:520.466615pt;}
.y5e_c00018{bottom:520.467049pt;}
.y5f_c00018{bottom:520.467333pt;}
.y60_c00018{bottom:520.467351pt;}
.y56_c00018{bottom:540.604225pt;}
.y54_c00018{bottom:540.604297pt;}
.y53_c00018{bottom:540.604573pt;}
.y55_c00018{bottom:540.604795pt;}
.y52_c00018{bottom:540.604903pt;}
.y50_c00018{bottom:540.605125pt;}
.y51_c00018{bottom:540.605303pt;}
.y4e_c00018{bottom:540.605375pt;}
.y4d_c00018{bottom:540.605704pt;}
.y4f_c00018{bottom:540.605739pt;}
.y4b_c00018{bottom:560.957919pt;}
.y4a_c00018{bottom:560.958221pt;}
.y4c_c00018{bottom:560.958523pt;}
.y49_c00018{bottom:560.958533pt;}
.y48_c00018{bottom:560.958569pt;}
.y47_c00018{bottom:560.958765pt;}
.yf1_c00018{bottom:561.718667pt;}
.y3d_c00018{bottom:580.912483pt;}
.y3e_c00018{bottom:580.912847pt;}
.y3f_c00018{bottom:580.913477pt;}
.y45_c00018{bottom:580.913680pt;}
.y46_c00018{bottom:580.913840pt;}
.y43_c00018{bottom:580.913929pt;}
.y40_c00018{bottom:580.914028pt;}
.y44_c00018{bottom:580.914276pt;}
.y42_c00018{bottom:580.914499pt;}
.y41_c00018{bottom:580.914561pt;}
.y38_c00018{bottom:600.827319pt;}
.y35_c00018{bottom:600.827453pt;}
.y37_c00018{bottom:600.827728pt;}
.y3c_c00018{bottom:600.827860pt;}
.y39_c00018{bottom:600.827959pt;}
.y34_c00018{bottom:600.827969pt;}
.y36_c00018{bottom:600.828004pt;}
.y3a_c00018{bottom:600.828296pt;}
.y3b_c00018{bottom:600.828367pt;}
.y33_c00018{bottom:621.907633pt;}
.y31_c00018{bottom:621.908016pt;}
.y32_c00018{bottom:621.908220pt;}
.y30_c00018{bottom:621.908549pt;}
.y2c_c00018{bottom:621.908640pt;}
.y2b_c00018{bottom:621.908880pt;}
.y2f_c00018{bottom:621.908932pt;}
.y2a_c00018{bottom:621.909040pt;}
.y29_c00018{bottom:621.909049pt;}
.y2e_c00018{bottom:621.909101pt;}
.y2d_c00018{bottom:621.909111pt;}
.y1e_c00018{bottom:640.799885pt;}
.y1f_c00018{bottom:640.988027pt;}
.y20_c00018{bottom:641.374445pt;}
.y21_c00018{bottom:641.586135pt;}
.y22_c00018{bottom:641.775844pt;}
.y23_c00018{bottom:642.098581pt;}
.y24_c00018{bottom:642.486652pt;}
.y25_c00018{bottom:642.747043pt;}
.y26_c00018{bottom:643.212393pt;}
.y27_c00018{bottom:643.323096pt;}
.y28_c00018{bottom:643.544940pt;}
.y12_c00018{bottom:662.470681pt;}
.y1c_c00018{bottom:662.470688pt;}
.y15_c00018{bottom:662.470885pt;}
.y1d_c00018{bottom:662.470999pt;}
.y13_c00018{bottom:662.471055pt;}
.y1b_c00018{bottom:662.471275pt;}
.y16_c00018{bottom:662.471472pt;}
.y14_c00018{bottom:662.471525pt;}
.y1a_c00018{bottom:662.471577pt;}
.y18_c00018{bottom:662.471667pt;}
.y17_c00018{bottom:662.472103pt;}
.y19_c00018{bottom:662.472137pt;}
.y8_c00018{bottom:680.881333pt;}
.y9_c00018{bottom:681.349111pt;}
.ya_c00018{bottom:681.960603pt;}
.yb_c00018{bottom:682.101947pt;}
.yc_c00018{bottom:682.447840pt;}
.yd_c00018{bottom:682.632827pt;}
.ye_c00018{bottom:682.777325pt;}
.yf_c00018{bottom:683.170287pt;}
.y10_c00018{bottom:683.450800pt;}
.y11_c00018{bottom:683.649245pt;}
.y7_c00018{bottom:724.464000pt;}
.h2_c00018{height:42.941919pt;}
.he_c00018{height:51.334591pt;}
.hc_c00018{height:55.068016pt;}
.h6_c00018{height:56.001372pt;}
.hb_c00018{height:56.934728pt;}
.h10_c00018{height:58.809525pt;}
.h4_c00018{height:60.668153pt;}
.h5_c00018{height:61.601509pt;}
.hf_c00018{height:62.533333pt;}
.h9_c00018{height:62.534865pt;}
.h11_c00018{height:63.466667pt;}
.h8_c00018{height:63.468222pt;}
.hd_c00018{height:64.401578pt;}
.h7_c00018{height:65.334934pt;}
.ha_c00018{height:69.068359pt;}
.h3_c00018{height:80.266667pt;}
.h1_c00018{height:960.000000pt;}
.h0_c00018{height:960.240000pt;}
.w1_c00018{width:682.666667pt;}
.w0_c00018{width:682.800000pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:77.970667pt;}
.x5c_c00018{left:106.556093pt;}
.x7d_c00018{left:111.597300pt;}
.x2f_c00018{left:112.561623pt;}
.x9_c00018{left:113.720000pt;}
.x2_c00018{left:114.802667pt;}
.xa5_c00018{left:115.920000pt;}
.x83_c00018{left:125.758305pt;}
.x7b_c00018{left:130.557379pt;}
.x13_c00018{left:132.000428pt;}
.x5d_c00018{left:138.716337pt;}
.x1d_c00018{left:140.480551pt;}
.x62_c00018{left:142.315747pt;}
.x30_c00018{left:145.441904pt;}
.x68_c00018{left:148.316224pt;}
.x27_c00018{left:149.521207pt;}
.x4a_c00018{left:150.720667pt;}
.x8e_c00018{left:153.116660pt;}
.x96_c00018{left:155.033643pt;}
.x4f_c00018{left:157.919523pt;}
.x5e_c00018{left:165.597653pt;}
.x44_c00018{left:167.281841pt;}
.x4b_c00018{left:168.481535pt;}
.x28_c00018{left:170.642243pt;}
.x3_c00018{left:172.309333pt;}
.x31_c00018{left:173.521943pt;}
.x14_c00018{left:176.641279pt;}
.x91_c00018{left:177.596816pt;}
.x97_c00018{left:179.034819pt;}
.xa_c00018{left:180.545333pt;}
.x37_c00018{left:182.163099pt;}
.x55_c00018{left:187.919383pt;}
.x15_c00018{left:189.121895pt;}
.x6e_c00018{left:191.758691pt;}
.x1e_c00018{left:195.683217pt;}
.x45_c00018{left:198.002011pt;}
.x7_c00018{left:200.640000pt;}
.x32_c00018{left:204.722140pt;}
.x40_c00018{left:206.163948pt;}
.x16_c00018{left:211.682996pt;}
.x50_c00018{left:214.080943pt;}
.xa6_c00018{left:215.760000pt;}
.x38_c00018{left:217.683501pt;}
.x87_c00018{left:220.799973pt;}
.x1f_c00018{left:225.924551pt;}
.x8f_c00018{left:230.399116pt;}
.x6f_c00018{left:231.839317pt;}
.x4_c00018{left:233.713333pt;}
.x63_c00018{left:241.439276pt;}
.x51_c00018{left:242.401000pt;}
.xa2_c00018{left:243.856000pt;}
.x17_c00018{left:247.203399pt;}
.x98_c00018{left:250.076967pt;}
.x70_c00018{left:252.000307pt;}
.x20_c00018{left:253.025884pt;}
.x5f_c00018{left:254.400669pt;}
.x7e_c00018{left:255.360347pt;}
.x7c_c00018{left:256.320881pt;}
.x39_c00018{left:257.764128pt;}
.xa7_c00018{left:260.400000pt;}
.x92_c00018{left:261.358256pt;}
.x29_c00018{left:264.965529pt;}
.xb_c00018{left:267.901333pt;}
.x88_c00018{left:269.521029pt;}
.x8_c00018{left:270.960000pt;}
.x46_c00018{left:274.324420pt;}
.x33_c00018{left:275.524279pt;}
.x3a_c00018{left:279.365183pt;}
.x75_c00018{left:286.177355pt;}
.xc_c00018{left:288.093333pt;}
.x41_c00018{left:290.885435pt;}
.x4c_c00018{left:292.323601pt;}
.x5_c00018{left:297.392000pt;}
.x21_c00018{left:299.131217pt;}
.x64_c00018{left:301.440883pt;}
.x56_c00018{left:308.641300pt;}
.x18_c00018{left:311.525220pt;}
.x71_c00018{left:312.481941pt;}
.x52_c00018{left:313.443148pt;}
.x93_c00018{left:316.799639pt;}
.x7f_c00018{left:317.762065pt;}
.x89_c00018{left:320.642197pt;}
.x6_c00018{left:322.376000pt;}
.xa3_c00018{left:331.454667pt;}
.x57_c00018{left:332.642476pt;}
.x84_c00018{left:334.563201pt;}
.x76_c00018{left:336.303676pt;}
.xd_c00018{left:337.506667pt;}
.x3b_c00018{left:338.406743pt;}
.x42_c00018{left:339.606491pt;}
.x99_c00018{left:342.478836pt;}
.x19_c00018{left:344.165483pt;}
.x69_c00018{left:345.121865pt;}
.x34_c00018{left:347.286455pt;}
.x22_c00018{left:354.569884pt;}
.x8a_c00018{left:356.642628pt;}
.x9d_c00018{left:358.800000pt;}
.x90_c00018{left:361.202852pt;}
.x77_c00018{left:362.255499pt;}
.xe_c00018{left:363.933333pt;}
.x9a_c00018{left:367.200049pt;}
.x65_c00018{left:369.121539pt;}
.x2a_c00018{left:370.088015pt;}
.x60_c00018{left:372.003771pt;}
.x80_c00018{left:374.643523pt;}
.x43_c00018{left:380.647164pt;}
.x6a_c00018{left:382.082343pt;}
.xf_c00018{left:384.576000pt;}
.x66_c00018{left:387.362435pt;}
.x35_c00018{left:390.727249pt;}
.x23_c00018{left:391.768551pt;}
.x9b_c00018{left:392.881309pt;}
.x3c_c00018{left:394.328153pt;}
.x72_c00018{left:396.243381pt;}
.x53_c00018{left:397.444597pt;}
.x58_c00018{left:400.564465pt;}
.x6b_c00018{left:405.363481pt;}
.x47_c00018{left:406.568240pt;}
.x4d_c00018{left:408.245276pt;}
.x36_c00018{left:411.608276pt;}
.x1a_c00018{left:412.807519pt;}
.xa8_c00018{left:417.120000pt;}
.x3d_c00018{left:418.569339pt;}
.x8b_c00018{left:420.244412pt;}
.x9c_c00018{left:424.561525pt;}
.x59_c00018{left:429.124532pt;}
.x78_c00018{left:430.383023pt;}
.x85_c00018{left:431.283933pt;}
.x73_c00018{left:433.203859pt;}
.x2b_c00018{left:435.369883pt;}
.x54_c00018{left:436.325168pt;}
.x9e_c00018{left:437.280000pt;}
.x1b_c00018{left:438.248769pt;}
.x10_c00018{left:440.713333pt;}
.x67_c00018{left:445.683957pt;}
.x2c_c00018{left:449.770592pt;}
.x79_c00018{left:452.730864pt;}
.xa9_c00018{left:454.080000pt;}
.x8c_c00018{left:455.524805pt;}
.xa4_c00018{left:457.177333pt;}
.x24_c00018{left:458.247217pt;}
.x81_c00018{left:463.685215pt;}
.x5a_c00018{left:465.604991pt;}
.x3e_c00018{left:468.010432pt;}
.x48_c00018{left:469.689996pt;}
.x25_c00018{left:474.061884pt;}
.x7a_c00018{left:476.029372pt;}
.x2d_c00018{left:477.610621pt;}
.x5b_c00018{left:479.045653pt;}
.x11_c00018{left:480.786667pt;}
.x9f_c00018{left:483.120000pt;}
.x82_c00018{left:486.726344pt;}
.x6c_c00018{left:488.406217pt;}
.x2e_c00018{left:491.051284pt;}
.x1c_c00018{left:492.010068pt;}
.x94_c00018{left:493.922985pt;}
.x3f_c00018{left:494.891748pt;}
.x49_c00018{left:501.610231pt;}
.x86_c00018{left:503.766156pt;}
.x26_c00018{left:505.753884pt;}
.x12_c00018{left:509.136000pt;}
.xa0_c00018{left:510.960000pt;}
.x74_c00018{left:514.566511pt;}
.x61_c00018{left:516.245503pt;}
.x8d_c00018{left:517.926533pt;}
.x4e_c00018{left:522.008181pt;}
.x95_c00018{left:527.763313pt;}
.x6d_c00018{left:534.007115pt;}
.xa1_c00018{left:545.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_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_4ab86c84425994a9e06b01c2.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;}
.m80_c00019{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);-ms-transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);}
.md3_c00019{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);}
.md2_c00019{transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);}
.m134_c00019{transform:matrix(0.023265,-0.000140,0.001500,0.249996,0,0);-ms-transform:matrix(0.023265,-0.000140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.023265,-0.000140,0.001500,0.249996,0,0);}
.med_c00019{transform:matrix(0.045604,0.000274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.045604,0.000274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.045604,0.000274,-0.001500,0.249996,0,0);}
.m77_c00019{transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.050687,-0.000558,0.002750,0.249985,0,0);-ms-transform:matrix(0.050687,-0.000558,0.002750,0.249985,0,0);-webkit-transform:matrix(0.050687,-0.000558,0.002750,0.249985,0,0);}
.m13c_c00019{transform:matrix(0.078929,-0.000474,0.001500,0.249996,0,0);-ms-transform:matrix(0.078929,-0.000474,0.001500,0.249996,0,0);-webkit-transform:matrix(0.078929,-0.000474,0.001500,0.249996,0,0);}
.m105_c00019{transform:matrix(0.090138,0.000541,-0.001500,0.249996,0,0);-ms-transform:matrix(0.090138,0.000541,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.090138,0.000541,-0.001500,0.249996,0,0);}
.m95_c00019{transform:matrix(0.118960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118960,0.000000,0.000000,0.250000,0,0);}
.m136_c00019{transform:matrix(0.129783,-0.000779,0.001500,0.249996,0,0);-ms-transform:matrix(0.129783,-0.000779,0.001500,0.249996,0,0);-webkit-transform:matrix(0.129783,-0.000779,0.001500,0.249996,0,0);}
.m56_c00019{transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);}
.mac_c00019{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00019{transform:matrix(0.141107,0.000847,-0.001500,0.249996,0,0);-ms-transform:matrix(0.141107,0.000847,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.141107,0.000847,-0.001500,0.249996,0,0);}
.me5_c00019{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{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);}
.md1_c00019{transform:matrix(0.146265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146265,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m12f_c00019{transform:matrix(0.147757,-0.000887,0.001500,0.249996,0,0);-ms-transform:matrix(0.147757,-0.000887,0.001500,0.249996,0,0);-webkit-transform:matrix(0.147757,-0.000887,0.001500,0.249996,0,0);}
.mbe_c00019{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);}
.m131_c00019{transform:matrix(0.148827,-0.000893,0.001500,0.249996,0,0);-ms-transform:matrix(0.148827,-0.000893,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148827,-0.000893,0.001500,0.249996,0,0);}
.m120_c00019{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);}
.m112_c00019{transform:matrix(0.151092,0.000907,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151092,0.000907,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151092,0.000907,-0.001500,0.249996,0,0);}
.mc8_c00019{transform:matrix(0.151180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151180,0.000000,0.000000,0.250000,0,0);}
.m7d_c00019{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);}
.m89_c00019{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m10e_c00019{transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);}
.m6c_c00019{transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);}
.m41_c00019{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);}
.m26_c00019{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);}
.mcf_c00019{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);}
.m8c_c00019{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);}
.m8d_c00019{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);}
.m46_c00019{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);}
.m82_c00019{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m58_c00019{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);}
.m130_c00019{transform:matrix(0.157302,-0.000944,0.001500,0.249996,0,0);-ms-transform:matrix(0.157302,-0.000944,0.001500,0.249996,0,0);-webkit-transform:matrix(0.157302,-0.000944,0.001500,0.249996,0,0);}
.ma0_c00019{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m83_c00019{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);}
.m8f_c00019{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{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);}
.m93_c00019{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);}
.m99_c00019{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);}
.ma7_c00019{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);}
.m2c_c00019{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);}
.m94_c00019{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m60_c00019{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);}
.me7_c00019{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);}
.m98_c00019{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);}
.mee_c00019{transform:matrix(0.163962,0.000984,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163962,0.000984,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163962,0.000984,-0.001500,0.249996,0,0);}
.ma4_c00019{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);}
.m109_c00019{transform:matrix(0.164842,0.000989,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164842,0.000989,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164842,0.000989,-0.001500,0.249996,0,0);}
.mf5_c00019{transform:matrix(0.165272,0.000992,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165272,0.000992,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165272,0.000992,-0.001500,0.249996,0,0);}
.me9_c00019{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);}
.m106_c00019{transform:matrix(0.165812,0.000995,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165812,0.000995,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165812,0.000995,-0.001500,0.249996,0,0);}
.m138_c00019{transform:matrix(0.165822,-0.000995,0.001500,0.249996,0,0);-ms-transform:matrix(0.165822,-0.000995,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165822,-0.000995,0.001500,0.249996,0,0);}
.m135_c00019{transform:matrix(0.165902,-0.000995,0.001500,0.249996,0,0);-ms-transform:matrix(0.165902,-0.000995,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165902,-0.000995,0.001500,0.249996,0,0);}
.me4_c00019{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);}
.m104_c00019{transform:matrix(0.166822,0.001001,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166822,0.001001,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166822,0.001001,-0.001500,0.249996,0,0);}
.m59_c00019{transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);}
.mc2_c00019{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);}
.m110_c00019{transform:matrix(0.167632,0.001006,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167632,0.001006,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167632,0.001006,-0.001500,0.249996,0,0);}
.m9f_c00019{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);}
.mb2_c00019{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);}
.m85_c00019{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);}
.me2_c00019{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);}
.m33_c00019{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);}
.m11b_c00019{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);}
.mbc_c00019{transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);}
.m3c_c00019{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);}
.m2f_c00019{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);}
.m1f_c00019{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);}
.ma3_c00019{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);}
.m84_c00019{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.ma6_c00019{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);}
.m32_c00019{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{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);}
.md9_c00019{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);}
.mb_c00019{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);}
.m16_c00019{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);}
.m14_c00019{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);}
.m10d_c00019{transform:matrix(0.173612,0.001042,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173612,0.001042,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173612,0.001042,-0.001500,0.249996,0,0);}
.m5b_c00019{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);}
.me1_c00019{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);}
.mbb_c00019{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);}
.m92_c00019{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);}
.m45_c00019{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);}
.m5e_c00019{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);}
.m87_c00019{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);}
.m73_c00019{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);}
.m122_c00019{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);}
.m21_c00019{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);}
.meb_c00019{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);}
.m10a_c00019{transform:matrix(0.176252,0.001058,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176252,0.001058,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176252,0.001058,-0.001500,0.249996,0,0);}
.mbf_c00019{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);}
.m97_c00019{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);}
.m117_c00019{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);}
.m7e_c00019{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);}
.m20_c00019{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);}
.m30_c00019{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);}
.m5f_c00019{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);}
.ma5_c00019{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);}
.m27_c00019{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);}
.m6e_c00019{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);}
.m38_c00019{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);}
.m133_c00019{transform:matrix(0.179417,-0.001077,0.001500,0.249996,0,0);-ms-transform:matrix(0.179417,-0.001077,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179417,-0.001077,0.001500,0.249996,0,0);}
.m118_c00019{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);}
.m11c_c00019{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);}
.m31_c00019{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);}
.m62_c00019{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);}
.m8b_c00019{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);}
.m88_c00019{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);}
.mb5_c00019{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);}
.m101_c00019{transform:matrix(0.182332,0.001094,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182332,0.001094,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182332,0.001094,-0.001500,0.249996,0,0);}
.m43_c00019{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);}
.ma2_c00019{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);}
.m9a_c00019{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);}
.mf_c00019{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);}
.ma1_c00019{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);}
.m11e_c00019{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);}
.m52_c00019{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);}
.maf_c00019{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);}
.m44_c00019{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);}
.mb0_c00019{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);}
.m79_c00019{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);}
.m9e_c00019{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);}
.mfb_c00019{transform:matrix(0.185522,0.001113,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185522,0.001113,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185522,0.001113,-0.001500,0.249996,0,0);}
.m57_c00019{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);}
.mce_c00019{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);}
.m63_c00019{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m137_c00019{transform:matrix(0.186397,-0.001118,0.001500,0.249996,0,0);-ms-transform:matrix(0.186397,-0.001118,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186397,-0.001118,0.001500,0.249996,0,0);}
.mc5_c00019{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);}
.mfe_c00019{transform:matrix(0.186777,0.001121,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186777,0.001121,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186777,0.001121,-0.001500,0.249996,0,0);}
.m4f_c00019{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);}
.mc3_c00019{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);}
.m113_c00019{transform:matrix(0.187052,0.001122,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187052,0.001122,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187052,0.001122,-0.001500,0.249996,0,0);}
.m64_c00019{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);}
.m15_c00019{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);}
.m42_c00019{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);}
.m132_c00019{transform:matrix(0.188372,-0.001130,0.001500,0.249996,0,0);-ms-transform:matrix(0.188372,-0.001130,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188372,-0.001130,0.001500,0.249996,0,0);}
.m10b_c00019{transform:matrix(0.188707,0.001132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188707,0.001132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188707,0.001132,-0.001500,0.249996,0,0);}
.m8a_c00019{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);}
.m18_c00019{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);}
.m90_c00019{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);}
.m11a_c00019{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);}
.mff_c00019{transform:matrix(0.191152,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191152,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191152,0.001147,-0.001500,0.249996,0,0);}
.m29_c00019{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);}
.m3d_c00019{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);}
.mf4_c00019{transform:matrix(0.191992,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191992,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191992,0.001152,-0.001500,0.249996,0,0);}
.m69_c00019{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);}
.m36_c00019{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);}
.mf8_c00019{transform:matrix(0.192172,0.001153,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192172,0.001153,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192172,0.001153,-0.001500,0.249996,0,0);}
.m3e_c00019{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);}
.m102_c00019{transform:matrix(0.192627,0.001156,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192627,0.001156,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192627,0.001156,-0.001500,0.249996,0,0);}
.m13_c00019{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);}
.m139_c00019{transform:matrix(0.193332,-0.001160,0.001500,0.249996,0,0);-ms-transform:matrix(0.193332,-0.001160,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193332,-0.001160,0.001500,0.249996,0,0);}
.m3a_c00019{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.m54_c00019{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);}
.m1c_c00019{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);}
.m126_c00019{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);}
.mc0_c00019{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);}
.m1d_c00019{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);}
.m39_c00019{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);}
.m1e_c00019{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);}
.m68_c00019{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);}
.m124_c00019{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);}
.m48_c00019{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);}
.m1a_c00019{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);}
.mdf_c00019{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);}
.mba_c00019{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);}
.m19_c00019{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);}
.m9c_c00019{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);}
.m65_c00019{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);}
.me_c00019{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);}
.m17_c00019{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);}
.mcc_c00019{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);}
.me3_c00019{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);}
.m2d_c00019{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);}
.mda_c00019{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);}
.m24_c00019{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);}
.m22_c00019{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);}
.m70_c00019{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);}
.m119_c00019{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);}
.m6a_c00019{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);}
.m8e_c00019{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);}
.m1b_c00019{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);}
.mdc_c00019{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);}
.m23_c00019{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);}
.m4d_c00019{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);}
.mae_c00019{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);}
.m67_c00019{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);}
.md_c00019{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);}
.ma_c00019{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);}
.mc1_c00019{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);}
.m11d_c00019{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);}
.m28_c00019{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);}
.mb4_c00019{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);}
.m72_c00019{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);}
.mfa_c00019{transform:matrix(0.205711,0.001234,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205711,0.001234,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205711,0.001234,-0.001500,0.249996,0,0);}
.mb9_c00019{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);}
.m127_c00019{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);}
.m100_c00019{transform:matrix(0.207681,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207681,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207681,0.001246,-0.001500,0.249996,0,0);}
.mdd_c00019{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);}
.mc_c00019{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);}
.mca_c00019{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);}
.m35_c00019{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);}
.mde_c00019{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);}
.m111_c00019{transform:matrix(0.211291,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211291,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211291,0.001268,-0.001500,0.249996,0,0);}
.mc9_c00019{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);}
.m125_c00019{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);}
.md7_c00019{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);}
.mea_c00019{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);}
.m12b_c00019{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);}
.mf1_c00019{transform:matrix(0.213291,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213291,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213291,0.001280,-0.001500,0.249996,0,0);}
.mf7_c00019{transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);}
.mad_c00019{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);}
.mdb_c00019{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);}
.mab_c00019{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);}
.m3f_c00019{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);}
.m25_c00019{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);}
.md8_c00019{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);}
.m12_c00019{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);}
.m4e_c00019{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);}
.md0_c00019{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);}
.m86_c00019{transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);}
.mb7_c00019{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);}
.mf0_c00019{transform:matrix(0.222351,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222351,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222351,0.001334,-0.001500,0.249996,0,0);}
.m96_c00019{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);}
.m53_c00019{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);}
.m108_c00019{transform:matrix(0.224171,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224171,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224171,0.001345,-0.001500,0.249996,0,0);}
.m91_c00019{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);}
.m129_c00019{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);}
.me8_c00019{transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);}
.me6_c00019{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);}
.md6_c00019{transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);}
.m123_c00019{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);}
.m51_c00019{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);}
.mb3_c00019{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);}
.m47_c00019{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);}
.m5d_c00019{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);}
.m11_c00019{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);}
.mfc_c00019{transform:matrix(0.232156,0.001393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232156,0.001393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232156,0.001393,-0.001500,0.249996,0,0);}
.m12a_c00019{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);}
.m2b_c00019{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);}
.mfd_c00019{transform:matrix(0.233721,0.001402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233721,0.001402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233721,0.001402,-0.001500,0.249996,0,0);}
.m128_c00019{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);}
.mc7_c00019{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);}
.m3b_c00019{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);}
.m11f_c00019{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{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);}
.mf6_c00019{transform:matrix(0.236321,0.001418,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236321,0.001418,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236321,0.001418,-0.001500,0.249996,0,0);}
.mf9_c00019{transform:matrix(0.238861,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238861,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238861,0.001433,-0.001500,0.249996,0,0);}
.m6d_c00019{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);}
.m5a_c00019{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);}
.m9b_c00019{transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);}
.mc6_c00019{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.m5c_c00019{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m50_c00019{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.md5_c00019{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{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);}
.mf3_c00019{transform:matrix(0.261730,0.001570,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261730,0.001570,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261730,0.001570,-0.001500,0.249996,0,0);}
.m4a_c00019{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00019{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.m13b_c00019{transform:matrix(0.270260,-0.001622,0.001500,0.249996,0,0);-ms-transform:matrix(0.270260,-0.001622,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270260,-0.001622,0.001500,0.249996,0,0);}
.mf2_c00019{transform:matrix(0.271520,0.001629,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271520,0.001629,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271520,0.001629,-0.001500,0.249996,0,0);}
.maa_c00019{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);}
.mef_c00019{transform:matrix(0.276540,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276540,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276540,0.001659,-0.001500,0.249996,0,0);}
.mb6_c00019{transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);}
.m66_c00019{transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);}
.m116_c00019{transform:matrix(0.287361,0.012081,-0.010501,0.249779,0,0);-ms-transform:matrix(0.287361,0.012081,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.287361,0.012081,-0.010501,0.249779,0,0);}
.m10_c00019{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);}
.ma8_c00019{transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);}
.m12d_c00019{transform:matrix(0.289720,-0.001738,0.001500,0.249996,0,0);-ms-transform:matrix(0.289720,-0.001738,0.001500,0.249996,0,0);-webkit-transform:matrix(0.289720,-0.001738,0.001500,0.249996,0,0);}
.mbd_c00019{transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292515,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);}
.m12c_c00019{transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303680,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303885,0.000000,0.000000,0.250000,0,0);}
.m81_c00019{transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304530,0.000000,0.000000,0.250000,0,0);}
.m114_c00019{transform:matrix(0.305195,0.012831,-0.010501,0.249779,0,0);-ms-transform:matrix(0.305195,0.012831,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.305195,0.012831,-0.010501,0.249779,0,0);}
.ma9_c00019{transform:matrix(0.307740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307740,0.000000,0.000000,0.250000,0,0);}
.mcb_c00019{transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);}
.mc4_c00019{transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);}
.m55_c00019{transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321780,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);}
.m76_c00019{transform:matrix(0.364430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364430,0.000000,0.000000,0.250000,0,0);}
.md4_c00019{transform:matrix(0.385260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385260,0.000000,0.000000,0.250000,0,0);}
.m7f_c00019{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);}
.m61_c00019{transform:matrix(0.438460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438460,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.448385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448385,0.000000,0.000000,0.250000,0,0);}
.m71_c00019{transform:matrix(0.456715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456715,0.000000,0.000000,0.250000,0,0);}
.m107_c00019{transform:matrix(0.461697,0.002770,-0.001500,0.249996,0,0);-ms-transform:matrix(0.461697,0.002770,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.461697,0.002770,-0.001500,0.249996,0,0);}
.m12e_c00019{transform:matrix(0.478996,-0.002874,0.001500,0.249996,0,0);-ms-transform:matrix(0.478996,-0.002874,0.001500,0.249996,0,0);-webkit-transform:matrix(0.478996,-0.002874,0.001500,0.249996,0,0);}
.m7c_c00019{transform:matrix(0.529030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00019{transform:matrix(0.537805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537805,0.000000,0.000000,0.250000,0,0);}
.m121_c00019{transform:matrix(0.558985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558985,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.564660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564660,0.000000,0.000000,0.250000,0,0);}
.m103_c00019{transform:matrix(0.625029,0.003750,-0.001500,0.249996,0,0);-ms-transform:matrix(0.625029,0.003750,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.625029,0.003750,-0.001500,0.249996,0,0);}
.mcd_c00019{transform:matrix(0.653455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653455,0.000000,0.000000,0.250000,0,0);}
.m6f_c00019{transform:matrix(0.665665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665665,0.000000,0.000000,0.250000,0,0);}
.m115_c00019{transform:matrix(0.675433,0.028397,-0.010501,0.249779,0,0);-ms-transform:matrix(0.675433,0.028397,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.675433,0.028397,-0.010501,0.249779,0,0);}
.m78_c00019{transform:matrix(0.713685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713685,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.726610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726610,0.000000,0.000000,0.250000,0,0);}
.mec_c00019{transform:matrix(0.737012,0.004422,-0.001500,0.249996,0,0);-ms-transform:matrix(0.737012,0.004422,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.737012,0.004422,-0.001500,0.249996,0,0);}
.m6_c00019{transform:matrix(0.746900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746900,0.000000,0.000000,0.250000,0,0);}
.m10f_c00019{transform:matrix(0.747472,0.004485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.747472,0.004485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.747472,0.004485,-0.001500,0.249996,0,0);}
.m4_c00019{transform:matrix(0.780625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780625,0.000000,0.000000,0.250000,0,0);}
.m7a_c00019{transform:matrix(0.784345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784345,0.000000,0.000000,0.250000,0,0);}
.me0_c00019{transform:matrix(0.786795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786795,0.000000,0.000000,0.250000,0,0);}
.m74_c00019{transform:matrix(0.803625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803625,0.000000,0.000000,0.250000,0,0);}
.m9d_c00019{transform:matrix(0.902545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00019{transform:matrix(0.918745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.918745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.918745,0.000000,0.000000,0.250000,0,0);}
.m75_c00019{transform:matrix(1.070400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070400,0.000000,0.000000,0.250000,0,0);}
.m6b_c00019{transform:matrix(1.121990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.121990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.121990,0.000000,0.000000,0.250000,0,0);}
.m13a_c00019{transform:matrix(1.133510,-0.006801,0.001500,0.249996,0,0);-ms-transform:matrix(1.133510,-0.006801,0.001500,0.249996,0,0);-webkit-transform:matrix(1.133510,-0.006801,0.001500,0.249996,0,0);}
.m9_c00019{transform:matrix(1.768033,-0.019448,0.002750,0.249985,0,0);-ms-transform:matrix(1.768033,-0.019448,0.002750,0.249985,0,0);-webkit-transform:matrix(1.768033,-0.019448,0.002750,0.249985,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;}
.fsc_c00019{font-size:30.450000px;}
.fs14_c00019{font-size:48.294324px;}
.fsd_c00019{font-size:56.700000px;}
.fsb_c00019{font-size:60.900000px;}
.fs8_c00019{font-size:63.000000px;}
.fse_c00019{font-size:65.100000px;}
.fs6_c00019{font-size:67.200000px;}
.fs3_c00019{font-size:69.300000px;}
.fs10_c00019{font-size:69.301247px;}
.fsf_c00019{font-size:70.350000px;}
.fs11_c00019{font-size:70.351266px;}
.fs5_c00019{font-size:71.400000px;}
.fs4_c00019{font-size:72.450000px;}
.fs2_c00019{font-size:72.454383px;}
.fs7_c00019{font-size:73.500000px;}
.fs13_c00019{font-size:73.501323px;}
.fsa_c00019{font-size:75.600000px;}
.fs12_c00019{font-size:75.601361px;}
.fs9_c00019{font-size:76.650000px;}
.fs15_c00019{font-size:81.901474px;}
.fs0_c00019{font-size:85.050000px;}
.fs1_c00019{font-size:116.550000px;}
.fs16_c00019{font-size:198.453572px;}
.y0_c00019{bottom:0.000000px;}
.y60_c00019{bottom:127.981500px;}
.y61_c00019{bottom:128.403051px;}
.y62_c00019{bottom:129.864300px;}
.y63_c00019{bottom:131.094969px;}
.y54_c00019{bottom:193.050000px;}
.y55_c00019{bottom:193.237911px;}
.y56_c00019{bottom:193.610304px;}
.y57_c00019{bottom:193.735188px;}
.y58_c00019{bottom:194.187132px;}
.y59_c00019{bottom:194.511249px;}
.y5a_c00019{bottom:194.775156px;}
.y5b_c00019{bottom:195.066369px;}
.y5c_c00019{bottom:195.131331px;}
.y5d_c00019{bottom:195.303204px;}
.y5e_c00019{bottom:195.505722px;}
.y5f_c00019{bottom:195.630516px;}
.y4b_c00019{bottom:217.172199px;}
.y4a_c00019{bottom:217.172490px;}
.y4c_c00019{bottom:217.172739px;}
.y4e_c00019{bottom:217.173348px;}
.y4d_c00019{bottom:217.173459px;}
.y49_c00019{bottom:237.090549px;}
.y48_c00019{bottom:237.287334px;}
.y47_c00019{bottom:237.574803px;}
.y46_c00019{bottom:238.203795px;}
.y45_c00019{bottom:238.685091px;}
.y44_c00019{bottom:239.064675px;}
.y43_c00019{bottom:239.225154px;}
.y42_c00019{bottom:239.572857px;}
.y41_c00019{bottom:239.915919px;}
.y40_c00019{bottom:240.028200px;}
.y3f_c00019{bottom:240.411453px;}
.y3e_c00019{bottom:240.837264px;}
.y3a_c00019{bottom:263.012502px;}
.y3d_c00019{bottom:263.012811px;}
.y3c_c00019{bottom:263.012931px;}
.y38_c00019{bottom:263.013033px;}
.y3b_c00019{bottom:263.013051px;}
.y39_c00019{bottom:263.013162px;}
.y37_c00019{bottom:263.013753px;}
.y36_c00019{bottom:263.014044px;}
.y35_c00019{bottom:263.014335px;}
.y34_c00019{bottom:263.014566px;}
.y33_c00019{bottom:263.015217px;}
.y32_c00019{bottom:263.015328px;}
.y31_c00019{bottom:284.667912px;}
.y30_c00019{bottom:284.808573px;}
.y2f_c00019{bottom:285.286635px;}
.y2e_c00019{bottom:285.456852px;}
.y2d_c00019{bottom:286.049664px;}
.y2c_c00019{bottom:286.576191px;}
.y2b_c00019{bottom:286.861293px;}
.y2a_c00019{bottom:287.083242px;}
.y29_c00019{bottom:287.233920px;}
.y28_c00019{bottom:287.309727px;}
.y27_c00019{bottom:287.550000px;}
.y53_c00019{bottom:308.934000px;}
.y52_c00019{bottom:331.966500px;}
.y26_c00019{bottom:354.817500px;}
.y25_c00019{bottom:378.291000px;}
.y24_c00019{bottom:400.711500px;}
.y23_c00019{bottom:422.499000px;}
.y22_c00019{bottom:422.916000px;}
.y21_c00019{bottom:423.276000px;}
.y20_c00019{bottom:423.658500px;}
.y1f_c00019{bottom:423.841500px;}
.y1e_c00019{bottom:423.958500px;}
.y1d_c00019{bottom:424.153500px;}
.y1c_c00019{bottom:424.629000px;}
.y1b_c00019{bottom:425.049000px;}
.y1a_c00019{bottom:425.197500px;}
.y19_c00019{bottom:425.520000px;}
.y18_c00019{bottom:446.872500px;}
.y17_c00019{bottom:470.098500px;}
.y16_c00019{bottom:484.380000px;}
.y15_c00019{bottom:491.130000px;}
.y12_c00019{bottom:492.864000px;}
.y14_c00019{bottom:497.610000px;}
.y13_c00019{bottom:516.532500px;}
.y11_c00019{bottom:539.460000px;}
.y10_c00019{bottom:561.870000px;}
.y51_c00019{bottom:629.883027px;}
.y50_c00019{bottom:632.405358px;}
.y4f_c00019{bottom:633.163500px;}
.yf_c00019{bottom:653.367000px;}
.ye_c00019{bottom:676.635000px;}
.yd_c00019{bottom:699.298500px;}
.yc_c00019{bottom:722.686500px;}
.yb_c00019{bottom:744.828000px;}
.ya_c00019{bottom:768.246000px;}
.y9_c00019{bottom:790.761000px;}
.y8_c00019{bottom:813.975000px;}
.y7_c00019{bottom:836.863500px;}
.y6_c00019{bottom:860.005500px;}
.y3_c00019{bottom:881.820000px;}
.y4_c00019{bottom:883.747018px;}
.y5_c00019{bottom:884.220139px;}
.y2_c00019{bottom:902.956500px;}
.y1_c00019{bottom:962.625000px;}
.he_c00019{height:30.450000px;}
.h16_c00019{height:48.294324px;}
.hf_c00019{height:56.700000px;}
.hd_c00019{height:60.900000px;}
.ha_c00019{height:63.000000px;}
.h10_c00019{height:65.100000px;}
.h8_c00019{height:67.200000px;}
.h5_c00019{height:69.300000px;}
.h12_c00019{height:69.301247px;}
.h11_c00019{height:70.350000px;}
.h13_c00019{height:70.351266px;}
.h7_c00019{height:71.400000px;}
.h6_c00019{height:72.450000px;}
.h4_c00019{height:72.454383px;}
.h9_c00019{height:73.500000px;}
.h15_c00019{height:73.501323px;}
.hc_c00019{height:75.600000px;}
.h14_c00019{height:75.601361px;}
.hb_c00019{height:76.650000px;}
.h17_c00019{height:81.901474px;}
.h2_c00019{height:85.050000px;}
.h3_c00019{height:116.550000px;}
.h18_c00019{height:198.453572px;}
.h0_c00019{height:1086.450000px;}
.h1_c00019{height:1086.750000px;}
.w1_c00019{width:771.000000px;}
.w0_c00019{width:771.120000px;}
.x0_c00019{left:0.000000px;}
.xa1_c00019{left:128.249733px;}
.x49_c00019{left:129.870000px;}
.xaa_c00019{left:130.947783px;}
.xb2_c00019{left:136.620000px;}
.x51_c00019{left:144.450000px;}
.xb7_c00019{left:168.843000px;}
.x9d_c00019{left:170.080500px;}
.x5d_c00019{left:181.440000px;}
.xa2_c00019{left:182.520186px;}
.x52_c00019{left:183.600000px;}
.x5_c00019{left:184.950000px;}
.xba_c00019{left:197.923500px;}
.x5e_c00019{left:200.340000px;}
.xb_c00019{left:202.770000px;}
.x40_c00019{left:207.360000px;}
.x6e_c00019{left:209.250000px;}
.x8e_c00019{left:211.141500px;}
.x36_c00019{left:212.220000px;}
.x67_c00019{left:222.210000px;}
.x4a_c00019{left:224.370000px;}
.x92_c00019{left:227.610000px;}
.xa7_c00019{left:230.553498px;}
.x26_c00019{left:231.930000px;}
.x6f_c00019{left:233.280000px;}
.xa3_c00019{left:234.630558px;}
.x5f_c00019{left:236.520000px;}
.x86_c00019{left:237.870000px;}
.xc_c00019{left:243.270000px;}
.x17_c00019{left:244.350000px;}
.x8_c00019{left:246.252000px;}
.x77_c00019{left:252.180000px;}
.x27_c00019{left:253.260000px;}
.x53_c00019{left:255.150000px;}
.xb3_c00019{left:258.390000px;}
.x8f_c00019{left:259.741500px;}
.x1f_c00019{left:263.520000px;}
.xd_c00019{left:266.760000px;}
.x41_c00019{left:269.190000px;}
.xad_c00019{left:271.350000px;}
.x7e_c00019{left:275.400000px;}
.x28_c00019{left:277.560000px;}
.x96_c00019{left:278.910000px;}
.x70_c00019{left:281.610000px;}
.x54_c00019{left:282.690000px;}
.x20_c00019{left:284.310000px;}
.x37_c00019{left:286.740000px;}
.xb4_c00019{left:289.980000px;}
.x60_c00019{left:291.330000px;}
.x9e_c00019{left:292.336500px;}
.x7f_c00019{left:293.490000px;}
.x2f_c00019{left:294.840000px;}
.x4b_c00019{left:298.080000px;}
.x42_c00019{left:299.430000px;}
.x5a_c00019{left:300.780000px;}
.x97_c00019{left:302.130000px;}
.x93_c00019{left:303.210000px;}
.x87_c00019{left:305.370000px;}
.x90_c00019{left:312.931500px;}
.xe_c00019{left:317.250000px;}
.x71_c00019{left:318.330000px;}
.xb5_c00019{left:321.840000px;}
.x1_c00019{left:322.920000px;}
.xb8_c00019{left:327.046500px;}
.x5b_c00019{left:331.560000px;}
.xa4_c00019{left:333.721122px;}
.xae_c00019{left:338.310000px;}
.x6_c00019{left:339.390000px;}
.x30_c00019{left:340.470000px;}
.x29_c00019{left:343.440000px;}
.x38_c00019{left:345.060000px;}
.x61_c00019{left:349.650000px;}
.x18_c00019{left:350.730000px;}
.x55_c00019{left:352.890000px;}
.x80_c00019{left:355.860000px;}
.x8a_c00019{left:356.860500px;}
.x98_c00019{left:358.020000px;}
.x68_c00019{left:360.450000px;}
.x2a_c00019{left:363.690000px;}
.xf_c00019{left:365.040000px;}
.x4c_c00019{left:366.660000px;}
.x78_c00019{left:369.090000px;}
.x81_c00019{left:374.490000px;}
.x43_c00019{left:380.700000px;}
.x19_c00019{left:382.590000px;}
.x39_c00019{left:384.750000px;}
.x8b_c00019{left:389.290500px;}
.x91_c00019{left:391.231500px;}
.x4d_c00019{left:394.740000px;}
.x79_c00019{left:399.060000px;}
.x31_c00019{left:404.460000px;}
.x62_c00019{left:405.540000px;}
.x69_c00019{left:407.970000px;}
.x21_c00019{left:411.210000px;}
.x7_c00019{left:412.560000px;}
.x99_c00019{left:414.990000px;}
.x3a_c00019{left:416.880000px;}
.x10_c00019{left:419.310000px;}
.x56_c00019{left:420.390000px;}
.x9_c00019{left:421.435500px;}
.x44_c00019{left:423.360000px;}
.xb9_c00019{left:425.050500px;}
.x72_c00019{left:429.030000px;}
.x2b_c00019{left:431.460000px;}
.x88_c00019{left:432.810000px;}
.x22_c00019{left:435.240000px;}
.x6a_c00019{left:438.750000px;}
.x57_c00019{left:440.910000px;}
.x11_c00019{left:442.530000px;}
.x45_c00019{left:444.960000px;}
.x73_c00019{left:448.200000px;}
.xaf_c00019{left:450.630000px;}
.x94_c00019{left:454.410000px;}
.x32_c00019{left:455.760000px;}
.x9a_c00019{left:457.380000px;}
.xa8_c00019{left:458.618262px;}
.xa_c00019{left:464.446500px;}
.x1a_c00019{left:465.480000px;}
.x63_c00019{left:466.830000px;}
.xb6_c00019{left:468.450000px;}
.x3b_c00019{left:470.340000px;}
.xa5_c00019{left:474.123171px;}
.x6b_c00019{left:476.550000px;}
.x12_c00019{left:477.900000px;}
.x1b_c00019{left:482.490000px;}
.x74_c00019{left:485.190000px;}
.x33_c00019{left:486.810000px;}
.x82_c00019{left:490.860000px;}
.x2_c00019{left:493.020000px;}
.x13_c00019{left:495.990000px;}
.x46_c00019{left:497.340000px;}
.xa6_c00019{left:499.234071px;}
.x23_c00019{left:500.310000px;}
.x3c_c00019{left:503.010000px;}
.x9f_c00019{left:507.262500px;}
.x34_c00019{left:508.950000px;}
.x9b_c00019{left:511.650000px;}
.x83_c00019{left:512.730000px;}
.xb0_c00019{left:519.210000px;}
.x75_c00019{left:521.640000px;}
.x24_c00019{left:525.150000px;}
.x4e_c00019{left:527.040000px;}
.x2c_c00019{left:528.120000px;}
.x58_c00019{left:529.740000px;}
.x7a_c00019{left:532.440000px;}
.x84_c00019{left:536.220000px;}
.x6c_c00019{left:537.840000px;}
.x3d_c00019{left:541.350000px;}
.x3_c00019{left:542.700000px;}
.x47_c00019{left:544.050000px;}
.x14_c00019{left:545.940000px;}
.x1c_c00019{left:548.640000px;}
.x4f_c00019{left:554.580000px;}
.x3e_c00019{left:557.010000px;}
.xab_c00019{left:558.031500px;}
.x8c_c00019{left:562.870500px;}
.x85_c00019{left:566.460000px;}
.x15_c00019{left:567.540000px;}
.x64_c00019{left:570.780000px;}
.x76_c00019{left:571.860000px;}
.xa9_c00019{left:573.110385px;}
.xac_c00019{left:576.064449px;}
.x95_c00019{left:579.150000px;}
.x59_c00019{left:583.200000px;}
.x35_c00019{left:586.980000px;}
.x9c_c00019{left:596.160000px;}
.x48_c00019{left:597.510000px;}
.x65_c00019{left:604.800000px;}
.x4_c00019{left:606.420000px;}
.x7b_c00019{left:609.120000px;}
.xa0_c00019{left:610.383000px;}
.x1d_c00019{left:611.550000px;}
.x2d_c00019{left:614.790000px;}
.x89_c00019{left:616.950000px;}
.x25_c00019{left:618.570000px;}
.x7c_c00019{left:626.670000px;}
.x2e_c00019{left:627.750000px;}
.x50_c00019{left:629.910000px;}
.x8d_c00019{left:632.260500px;}
.x6d_c00019{left:633.690000px;}
.x5c_c00019{left:636.390000px;}
.x16_c00019{left:639.630000px;}
.xb1_c00019{left:643.410000px;}
.x1e_c00019{left:645.300000px;}
.x7d_c00019{left:646.920000px;}
.x3f_c00019{left:649.890000px;}
.x66_c00019{left:669.060000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
.fsc_c00019{font-size:27.066667pt;}
.fs14_c00019{font-size:42.928288pt;}
.fsd_c00019{font-size:50.400000pt;}
.fsb_c00019{font-size:54.133333pt;}
.fs8_c00019{font-size:56.000000pt;}
.fse_c00019{font-size:57.866667pt;}
.fs6_c00019{font-size:59.733333pt;}
.fs3_c00019{font-size:61.600000pt;}
.fs10_c00019{font-size:61.601109pt;}
.fsf_c00019{font-size:62.533333pt;}
.fs11_c00019{font-size:62.534459pt;}
.fs5_c00019{font-size:63.466667pt;}
.fs4_c00019{font-size:64.400000pt;}
.fs2_c00019{font-size:64.403896pt;}
.fs7_c00019{font-size:65.333333pt;}
.fs13_c00019{font-size:65.334509pt;}
.fsa_c00019{font-size:67.200000pt;}
.fs12_c00019{font-size:67.201210pt;}
.fs9_c00019{font-size:68.133333pt;}
.fs15_c00019{font-size:72.801310pt;}
.fs0_c00019{font-size:75.600000pt;}
.fs1_c00019{font-size:103.600000pt;}
.fs16_c00019{font-size:176.403175pt;}
.y0_c00019{bottom:0.000000pt;}
.y60_c00019{bottom:113.761333pt;}
.y61_c00019{bottom:114.136045pt;}
.y62_c00019{bottom:115.434933pt;}
.y63_c00019{bottom:116.528861pt;}
.y54_c00019{bottom:171.600000pt;}
.y55_c00019{bottom:171.767032pt;}
.y56_c00019{bottom:172.098048pt;}
.y57_c00019{bottom:172.209056pt;}
.y58_c00019{bottom:172.610784pt;}
.y59_c00019{bottom:172.898888pt;}
.y5a_c00019{bottom:173.133472pt;}
.y5b_c00019{bottom:173.392328pt;}
.y5c_c00019{bottom:173.450072pt;}
.y5d_c00019{bottom:173.602848pt;}
.y5e_c00019{bottom:173.782864pt;}
.y5f_c00019{bottom:173.893792pt;}
.y4b_c00019{bottom:193.041955pt;}
.y4a_c00019{bottom:193.042213pt;}
.y4c_c00019{bottom:193.042435pt;}
.y4e_c00019{bottom:193.042976pt;}
.y4d_c00019{bottom:193.043075pt;}
.y49_c00019{bottom:210.747155pt;}
.y48_c00019{bottom:210.922075pt;}
.y47_c00019{bottom:211.177603pt;}
.y46_c00019{bottom:211.736707pt;}
.y45_c00019{bottom:212.164525pt;}
.y44_c00019{bottom:212.501933pt;}
.y43_c00019{bottom:212.644581pt;}
.y42_c00019{bottom:212.953651pt;}
.y41_c00019{bottom:213.258595pt;}
.y40_c00019{bottom:213.358400pt;}
.y3f_c00019{bottom:213.699069pt;}
.y3e_c00019{bottom:214.077568pt;}
.y3a_c00019{bottom:233.788891pt;}
.y3d_c00019{bottom:233.789165pt;}
.y3c_c00019{bottom:233.789272pt;}
.y38_c00019{bottom:233.789363pt;}
.y3b_c00019{bottom:233.789379pt;}
.y39_c00019{bottom:233.789477pt;}
.y37_c00019{bottom:233.790003pt;}
.y36_c00019{bottom:233.790261pt;}
.y35_c00019{bottom:233.790520pt;}
.y34_c00019{bottom:233.790725pt;}
.y33_c00019{bottom:233.791304pt;}
.y32_c00019{bottom:233.791403pt;}
.y31_c00019{bottom:253.038144pt;}
.y30_c00019{bottom:253.163176pt;}
.y2f_c00019{bottom:253.588120pt;}
.y2e_c00019{bottom:253.739424pt;}
.y2d_c00019{bottom:254.266368pt;}
.y2c_c00019{bottom:254.734392pt;}
.y2b_c00019{bottom:254.987816pt;}
.y2a_c00019{bottom:255.185104pt;}
.y29_c00019{bottom:255.319040pt;}
.y28_c00019{bottom:255.386424pt;}
.y27_c00019{bottom:255.600000pt;}
.y53_c00019{bottom:274.608000pt;}
.y52_c00019{bottom:295.081333pt;}
.y26_c00019{bottom:315.393333pt;}
.y25_c00019{bottom:336.258667pt;}
.y24_c00019{bottom:356.188000pt;}
.y23_c00019{bottom:375.554667pt;}
.y22_c00019{bottom:375.925333pt;}
.y21_c00019{bottom:376.245333pt;}
.y20_c00019{bottom:376.585333pt;}
.y1f_c00019{bottom:376.748000pt;}
.y1e_c00019{bottom:376.852000pt;}
.y1d_c00019{bottom:377.025333pt;}
.y1c_c00019{bottom:377.448000pt;}
.y1b_c00019{bottom:377.821333pt;}
.y1a_c00019{bottom:377.953333pt;}
.y19_c00019{bottom:378.240000pt;}
.y18_c00019{bottom:397.220000pt;}
.y17_c00019{bottom:417.865333pt;}
.y16_c00019{bottom:430.560000pt;}
.y15_c00019{bottom:436.560000pt;}
.y12_c00019{bottom:438.101333pt;}
.y14_c00019{bottom:442.320000pt;}
.y13_c00019{bottom:459.140000pt;}
.y11_c00019{bottom:479.520000pt;}
.y10_c00019{bottom:499.440000pt;}
.y51_c00019{bottom:559.896024pt;}
.y50_c00019{bottom:562.138096pt;}
.y4f_c00019{bottom:562.812000pt;}
.yf_c00019{bottom:580.770667pt;}
.ye_c00019{bottom:601.453333pt;}
.yd_c00019{bottom:621.598667pt;}
.yc_c00019{bottom:642.388000pt;}
.yb_c00019{bottom:662.069333pt;}
.ya_c00019{bottom:682.885333pt;}
.y9_c00019{bottom:702.898667pt;}
.y8_c00019{bottom:723.533333pt;}
.y7_c00019{bottom:743.878667pt;}
.y6_c00019{bottom:764.449333pt;}
.y3_c00019{bottom:783.840000pt;}
.y4_c00019{bottom:785.552905pt;}
.y5_c00019{bottom:785.973457pt;}
.y2_c00019{bottom:802.628000pt;}
.y1_c00019{bottom:855.666667pt;}
.he_c00019{height:27.066667pt;}
.h16_c00019{height:42.928288pt;}
.hf_c00019{height:50.400000pt;}
.hd_c00019{height:54.133333pt;}
.ha_c00019{height:56.000000pt;}
.h10_c00019{height:57.866667pt;}
.h8_c00019{height:59.733333pt;}
.h5_c00019{height:61.600000pt;}
.h12_c00019{height:61.601109pt;}
.h11_c00019{height:62.533333pt;}
.h13_c00019{height:62.534459pt;}
.h7_c00019{height:63.466667pt;}
.h6_c00019{height:64.400000pt;}
.h4_c00019{height:64.403896pt;}
.h9_c00019{height:65.333333pt;}
.h15_c00019{height:65.334509pt;}
.hc_c00019{height:67.200000pt;}
.h14_c00019{height:67.201210pt;}
.hb_c00019{height:68.133333pt;}
.h17_c00019{height:72.801310pt;}
.h2_c00019{height:75.600000pt;}
.h3_c00019{height:103.600000pt;}
.h18_c00019{height:176.403175pt;}
.h0_c00019{height:965.733333pt;}
.h1_c00019{height:966.000000pt;}
.w1_c00019{width:685.333333pt;}
.w0_c00019{width:685.440000pt;}
.x0_c00019{left:0.000000pt;}
.xa1_c00019{left:113.999763pt;}
.x49_c00019{left:115.440000pt;}
.xaa_c00019{left:116.398029pt;}
.xb2_c00019{left:121.440000pt;}
.x51_c00019{left:128.400000pt;}
.xb7_c00019{left:150.082667pt;}
.x9d_c00019{left:151.182667pt;}
.x5d_c00019{left:161.280000pt;}
.xa2_c00019{left:162.240165pt;}
.x52_c00019{left:163.200000pt;}
.x5_c00019{left:164.400000pt;}
.xba_c00019{left:175.932000pt;}
.x5e_c00019{left:178.080000pt;}
.xb_c00019{left:180.240000pt;}
.x40_c00019{left:184.320000pt;}
.x6e_c00019{left:186.000000pt;}
.x8e_c00019{left:187.681333pt;}
.x36_c00019{left:188.640000pt;}
.x67_c00019{left:197.520000pt;}
.x4a_c00019{left:199.440000pt;}
.x92_c00019{left:202.320000pt;}
.xa7_c00019{left:204.936443pt;}
.x26_c00019{left:206.160000pt;}
.x6f_c00019{left:207.360000pt;}
.xa3_c00019{left:208.560496pt;}
.x5f_c00019{left:210.240000pt;}
.x86_c00019{left:211.440000pt;}
.xc_c00019{left:216.240000pt;}
.x17_c00019{left:217.200000pt;}
.x8_c00019{left:218.890667pt;}
.x77_c00019{left:224.160000pt;}
.x27_c00019{left:225.120000pt;}
.x53_c00019{left:226.800000pt;}
.xb3_c00019{left:229.680000pt;}
.x8f_c00019{left:230.881333pt;}
.x1f_c00019{left:234.240000pt;}
.xd_c00019{left:237.120000pt;}
.x41_c00019{left:239.280000pt;}
.xad_c00019{left:241.200000pt;}
.x7e_c00019{left:244.800000pt;}
.x28_c00019{left:246.720000pt;}
.x96_c00019{left:247.920000pt;}
.x70_c00019{left:250.320000pt;}
.x54_c00019{left:251.280000pt;}
.x20_c00019{left:252.720000pt;}
.x37_c00019{left:254.880000pt;}
.xb4_c00019{left:257.760000pt;}
.x60_c00019{left:258.960000pt;}
.x9e_c00019{left:259.854667pt;}
.x7f_c00019{left:260.880000pt;}
.x2f_c00019{left:262.080000pt;}
.x4b_c00019{left:264.960000pt;}
.x42_c00019{left:266.160000pt;}
.x5a_c00019{left:267.360000pt;}
.x97_c00019{left:268.560000pt;}
.x93_c00019{left:269.520000pt;}
.x87_c00019{left:271.440000pt;}
.x90_c00019{left:278.161333pt;}
.xe_c00019{left:282.000000pt;}
.x71_c00019{left:282.960000pt;}
.xb5_c00019{left:286.080000pt;}
.x1_c00019{left:287.040000pt;}
.xb8_c00019{left:290.708000pt;}
.x5b_c00019{left:294.720000pt;}
.xa4_c00019{left:296.640997pt;}
.xae_c00019{left:300.720000pt;}
.x6_c00019{left:301.680000pt;}
.x30_c00019{left:302.640000pt;}
.x29_c00019{left:305.280000pt;}
.x38_c00019{left:306.720000pt;}
.x61_c00019{left:310.800000pt;}
.x18_c00019{left:311.760000pt;}
.x55_c00019{left:313.680000pt;}
.x80_c00019{left:316.320000pt;}
.x8a_c00019{left:317.209333pt;}
.x98_c00019{left:318.240000pt;}
.x68_c00019{left:320.400000pt;}
.x2a_c00019{left:323.280000pt;}
.xf_c00019{left:324.480000pt;}
.x4c_c00019{left:325.920000pt;}
.x78_c00019{left:328.080000pt;}
.x81_c00019{left:332.880000pt;}
.x43_c00019{left:338.400000pt;}
.x19_c00019{left:340.080000pt;}
.x39_c00019{left:342.000000pt;}
.x8b_c00019{left:346.036000pt;}
.x91_c00019{left:347.761333pt;}
.x4d_c00019{left:350.880000pt;}
.x79_c00019{left:354.720000pt;}
.x31_c00019{left:359.520000pt;}
.x62_c00019{left:360.480000pt;}
.x69_c00019{left:362.640000pt;}
.x21_c00019{left:365.520000pt;}
.x7_c00019{left:366.720000pt;}
.x99_c00019{left:368.880000pt;}
.x3a_c00019{left:370.560000pt;}
.x10_c00019{left:372.720000pt;}
.x56_c00019{left:373.680000pt;}
.x9_c00019{left:374.609333pt;}
.x44_c00019{left:376.320000pt;}
.xb9_c00019{left:377.822667pt;}
.x72_c00019{left:381.360000pt;}
.x2b_c00019{left:383.520000pt;}
.x88_c00019{left:384.720000pt;}
.x22_c00019{left:386.880000pt;}
.x6a_c00019{left:390.000000pt;}
.x57_c00019{left:391.920000pt;}
.x11_c00019{left:393.360000pt;}
.x45_c00019{left:395.520000pt;}
.x73_c00019{left:398.400000pt;}
.xaf_c00019{left:400.560000pt;}
.x94_c00019{left:403.920000pt;}
.x32_c00019{left:405.120000pt;}
.x9a_c00019{left:406.560000pt;}
.xa8_c00019{left:407.660677pt;}
.xa_c00019{left:412.841333pt;}
.x1a_c00019{left:413.760000pt;}
.x63_c00019{left:414.960000pt;}
.xb6_c00019{left:416.400000pt;}
.x3b_c00019{left:418.080000pt;}
.xa5_c00019{left:421.442819pt;}
.x6b_c00019{left:423.600000pt;}
.x12_c00019{left:424.800000pt;}
.x1b_c00019{left:428.880000pt;}
.x74_c00019{left:431.280000pt;}
.x33_c00019{left:432.720000pt;}
.x82_c00019{left:436.320000pt;}
.x2_c00019{left:438.240000pt;}
.x13_c00019{left:440.880000pt;}
.x46_c00019{left:442.080000pt;}
.xa6_c00019{left:443.763619pt;}
.x23_c00019{left:444.720000pt;}
.x3c_c00019{left:447.120000pt;}
.x9f_c00019{left:450.900000pt;}
.x34_c00019{left:452.400000pt;}
.x9b_c00019{left:454.800000pt;}
.x83_c00019{left:455.760000pt;}
.xb0_c00019{left:461.520000pt;}
.x75_c00019{left:463.680000pt;}
.x24_c00019{left:466.800000pt;}
.x4e_c00019{left:468.480000pt;}
.x2c_c00019{left:469.440000pt;}
.x58_c00019{left:470.880000pt;}
.x7a_c00019{left:473.280000pt;}
.x84_c00019{left:476.640000pt;}
.x6c_c00019{left:478.080000pt;}
.x3d_c00019{left:481.200000pt;}
.x3_c00019{left:482.400000pt;}
.x47_c00019{left:483.600000pt;}
.x14_c00019{left:485.280000pt;}
.x1c_c00019{left:487.680000pt;}
.x4f_c00019{left:492.960000pt;}
.x3e_c00019{left:495.120000pt;}
.xab_c00019{left:496.028000pt;}
.x8c_c00019{left:500.329333pt;}
.x85_c00019{left:503.520000pt;}
.x15_c00019{left:504.480000pt;}
.x64_c00019{left:507.360000pt;}
.x76_c00019{left:508.320000pt;}
.xa9_c00019{left:509.431453pt;}
.xac_c00019{left:512.057288pt;}
.x95_c00019{left:514.800000pt;}
.x59_c00019{left:518.400000pt;}
.x35_c00019{left:521.760000pt;}
.x9c_c00019{left:529.920000pt;}
.x48_c00019{left:531.120000pt;}
.x65_c00019{left:537.600000pt;}
.x4_c00019{left:539.040000pt;}
.x7b_c00019{left:541.440000pt;}
.xa0_c00019{left:542.562667pt;}
.x1d_c00019{left:543.600000pt;}
.x2d_c00019{left:546.480000pt;}
.x89_c00019{left:548.400000pt;}
.x25_c00019{left:549.840000pt;}
.x7c_c00019{left:557.040000pt;}
.x2e_c00019{left:558.000000pt;}
.x50_c00019{left:559.920000pt;}
.x8d_c00019{left:562.009333pt;}
.x6d_c00019{left:563.280000pt;}
.x5c_c00019{left:565.680000pt;}
.x16_c00019{left:568.560000pt;}
.xb1_c00019{left:571.920000pt;}
.x1e_c00019{left:573.600000pt;}
.x7d_c00019{left:575.040000pt;}
.x3f_c00019{left:577.680000pt;}
.x66_c00019{left:594.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3_c00020{transform:matrix(0.011574,0.000116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011574,0.000116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011574,0.000116,-0.002500,0.249988,0,0);}
.mdc_c00020{transform:matrix(0.013184,0.000119,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013184,0.000119,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013184,0.000119,-0.002250,0.249990,0,0);}
.m38_c00020{transform:matrix(0.028379,0.000284,-0.002500,0.249988,0,0);-ms-transform:matrix(0.028379,0.000284,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.028379,0.000284,-0.002500,0.249988,0,0);}
.m36_c00020{transform:matrix(0.048588,0.000486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.048588,0.000486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.048588,0.000486,-0.002500,0.249988,0,0);}
.m48_c00020{transform:matrix(0.052837,0.000528,-0.002500,0.249988,0,0);-ms-transform:matrix(0.052837,0.000528,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.052837,0.000528,-0.002500,0.249988,0,0);}
.m10_c00020{transform:matrix(0.103680,0.001037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.103680,0.001037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.103680,0.001037,-0.002500,0.249988,0,0);}
.me7_c00020{transform:matrix(0.124380,0.001119,-0.002250,0.249990,0,0);-ms-transform:matrix(0.124380,0.001119,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.124380,0.001119,-0.002250,0.249990,0,0);}
.m46_c00020{transform:matrix(0.141958,0.001420,-0.002500,0.249988,0,0);-ms-transform:matrix(0.141958,0.001420,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.141958,0.001420,-0.002500,0.249988,0,0);}
.ma3_c00020{transform:matrix(0.143318,0.001433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143318,0.001433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143318,0.001433,-0.002500,0.249988,0,0);}
.m78_c00020{transform:matrix(0.145288,0.001453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145288,0.001453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145288,0.001453,-0.002500,0.249988,0,0);}
.m13a_c00020{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);}
.m79_c00020{transform:matrix(0.146113,0.001461,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146113,0.001461,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146113,0.001461,-0.002500,0.249988,0,0);}
.m22_c00020{transform:matrix(0.146198,0.001462,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146198,0.001462,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146198,0.001462,-0.002500,0.249988,0,0);}
.m142_c00020{transform:matrix(0.146339,0.002195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146339,0.002195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146339,0.002195,-0.003750,0.249972,0,0);}
.m124_c00020{transform:matrix(0.147233,0.002209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147233,0.002209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147233,0.002209,-0.003750,0.249972,0,0);}
.ma9_c00020{transform:matrix(0.148548,0.001485,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148548,0.001485,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148548,0.001485,-0.002500,0.249988,0,0);}
.m134_c00020{transform:matrix(0.148958,0.002234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148958,0.002234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148958,0.002234,-0.003750,0.249972,0,0);}
.m34_c00020{transform:matrix(0.149443,0.001494,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149443,0.001494,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149443,0.001494,-0.002500,0.249988,0,0);}
.m41_c00020{transform:matrix(0.149773,0.001498,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149773,0.001498,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149773,0.001498,-0.002500,0.249988,0,0);}
.ma8_c00020{transform:matrix(0.149988,0.001500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149988,0.001500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149988,0.001500,-0.002500,0.249988,0,0);}
.m2d_c00020{transform:matrix(0.150182,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150182,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150182,0.001502,-0.002500,0.249988,0,0);}
.m17_c00020{transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);}
.m13_c00020{transform:matrix(0.151082,0.001511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151082,0.001511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151082,0.001511,-0.002500,0.249988,0,0);}
.ma1_c00020{transform:matrix(0.151327,0.001513,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151327,0.001513,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151327,0.001513,-0.002500,0.249988,0,0);}
.m2b_c00020{transform:matrix(0.151452,0.001515,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151452,0.001515,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151452,0.001515,-0.002500,0.249988,0,0);}
.mec_c00020{transform:matrix(0.151854,0.001367,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151854,0.001367,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151854,0.001367,-0.002250,0.249990,0,0);}
.mdb_c00020{transform:matrix(0.152514,0.001373,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152514,0.001373,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152514,0.001373,-0.002250,0.249990,0,0);}
.m8c_c00020{transform:matrix(0.153262,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153262,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153262,0.001533,-0.002500,0.249988,0,0);}
.m105_c00020{transform:matrix(0.153612,0.001997,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153612,0.001997,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153612,0.001997,-0.003250,0.249979,0,0);}
.m1b_c00020{transform:matrix(0.153922,0.001539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153922,0.001539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153922,0.001539,-0.002500,0.249988,0,0);}
.ma2_c00020{transform:matrix(0.154417,0.001544,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154417,0.001544,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154417,0.001544,-0.002500,0.249988,0,0);}
.m3f_c00020{transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);}
.m5c_c00020{transform:matrix(0.155127,0.001551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155127,0.001551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155127,0.001551,-0.002500,0.249988,0,0);}
.me9_c00020{transform:matrix(0.157309,0.001416,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157309,0.001416,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157309,0.001416,-0.002250,0.249990,0,0);}
.m28_c00020{transform:matrix(0.158972,0.001590,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158972,0.001590,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158972,0.001590,-0.002500,0.249988,0,0);}
.m109_c00020{transform:matrix(0.159422,0.002072,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159422,0.002072,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159422,0.002072,-0.003250,0.249979,0,0);}
.m45_c00020{transform:matrix(0.159627,0.001596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159627,0.001596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159627,0.001596,-0.002500,0.249988,0,0);}
.m57_c00020{transform:matrix(0.160052,0.001601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160052,0.001601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160052,0.001601,-0.002500,0.249988,0,0);}
.m42_c00020{transform:matrix(0.161847,0.001618,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161847,0.001618,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161847,0.001618,-0.002500,0.249988,0,0);}
.m103_c00020{transform:matrix(0.162296,0.002110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162296,0.002110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162296,0.002110,-0.003250,0.249979,0,0);}
.mc7_c00020{transform:matrix(0.162508,0.001463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162508,0.001463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162508,0.001463,-0.002250,0.249990,0,0);}
.m88_c00020{transform:matrix(0.162692,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162692,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162692,0.001627,-0.002500,0.249988,0,0);}
.m20_c00020{transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);}
.m24_c00020{transform:matrix(0.163712,0.001637,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163712,0.001637,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163712,0.001637,-0.002500,0.249988,0,0);}
.m14_c00020{transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);}
.m31_c00020{transform:matrix(0.164587,0.001646,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164587,0.001646,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164587,0.001646,-0.002500,0.249988,0,0);}
.m141_c00020{transform:matrix(0.164641,0.002470,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164641,0.002470,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164641,0.002470,-0.003750,0.249972,0,0);}
.m65_c00020{transform:matrix(0.165452,0.001655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165452,0.001655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165452,0.001655,-0.002500,0.249988,0,0);}
.m10c_c00020{transform:matrix(0.166226,0.002161,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166226,0.002161,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166226,0.002161,-0.003250,0.249979,0,0);}
.mda_c00020{transform:matrix(0.166233,0.001496,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166233,0.001496,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166233,0.001496,-0.002250,0.249990,0,0);}
.m3d_c00020{transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);}
.md0_c00020{transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);}
.m125_c00020{transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);}
.m13f_c00020{transform:matrix(0.168411,0.002526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168411,0.002526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168411,0.002526,-0.003750,0.249972,0,0);}
.ma4_c00020{transform:matrix(0.168727,0.001687,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168727,0.001687,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168727,0.001687,-0.002500,0.249988,0,0);}
.mbd_c00020{transform:matrix(0.168728,0.001519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168728,0.001519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168728,0.001519,-0.002250,0.249990,0,0);}
.m4_c00020{transform:matrix(0.168777,0.001688,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168777,0.001688,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168777,0.001688,-0.002500,0.249988,0,0);}
.mc9_c00020{transform:matrix(0.169008,0.001521,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169008,0.001521,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169008,0.001521,-0.002250,0.249990,0,0);}
.mfd_c00020{transform:matrix(0.169191,0.002199,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169191,0.002199,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169191,0.002199,-0.003250,0.249979,0,0);}
.mba_c00020{transform:matrix(0.170908,0.001538,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170908,0.001538,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170908,0.001538,-0.002250,0.249990,0,0);}
.m61_c00020{transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);}
.mfc_c00020{transform:matrix(0.171506,0.002230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171506,0.002230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171506,0.002230,-0.003250,0.249979,0,0);}
.m13e_c00020{transform:matrix(0.171541,0.002573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171541,0.002573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171541,0.002573,-0.003750,0.249972,0,0);}
.m8e_c00020{transform:matrix(0.171726,0.001717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171726,0.001717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171726,0.001717,-0.002500,0.249988,0,0);}
.m3a_c00020{transform:matrix(0.172026,0.001720,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172026,0.001720,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172026,0.001720,-0.002500,0.249988,0,0);}
.m23_c00020{transform:matrix(0.172131,0.001721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172131,0.001721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172131,0.001721,-0.002500,0.249988,0,0);}
.mc_c00020{transform:matrix(0.172751,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172751,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172751,0.001728,-0.002500,0.249988,0,0);}
.mf9_c00020{transform:matrix(0.173430,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173430,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173430,0.002255,-0.003250,0.249979,0,0);}
.mab_c00020{transform:matrix(0.173786,0.001738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173786,0.001738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173786,0.001738,-0.002500,0.249988,0,0);}
.m114_c00020{transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);}
.mb5_c00020{transform:matrix(0.174223,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174223,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174223,0.001568,-0.002250,0.249990,0,0);}
.mb7_c00020{transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);}
.mf1_c00020{transform:matrix(0.174740,0.002272,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174740,0.002272,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174740,0.002272,-0.003250,0.249979,0,0);}
.m5d_c00020{transform:matrix(0.174811,0.001748,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174811,0.001748,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174811,0.001748,-0.002500,0.249988,0,0);}
.mea_c00020{transform:matrix(0.175023,0.001575,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175023,0.001575,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175023,0.001575,-0.002250,0.249990,0,0);}
.m139_c00020{transform:matrix(0.175245,0.002629,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175245,0.002629,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175245,0.002629,-0.003750,0.249972,0,0);}
.m13d_c00020{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);}
.mf_c00020{transform:matrix(0.175591,0.001756,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175591,0.001756,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175591,0.001756,-0.002500,0.249988,0,0);}
.m128_c00020{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);}
.ma6_c00020{transform:matrix(0.176116,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176116,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176116,0.001761,-0.002500,0.249988,0,0);}
.m51_c00020{transform:matrix(0.176146,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176146,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176146,0.001761,-0.002500,0.249988,0,0);}
.m77_c00020{transform:matrix(0.176516,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176516,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176516,0.001765,-0.002500,0.249988,0,0);}
.m3c_c00020{transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);}
.m129_c00020{transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);}
.m59_c00020{transform:matrix(0.177011,0.001770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177011,0.001770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177011,0.001770,-0.002500,0.249988,0,0);}
.m112_c00020{transform:matrix(0.177395,0.002661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177395,0.002661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177395,0.002661,-0.003750,0.249972,0,0);}
.m8a_c00020{transform:matrix(0.177556,0.001776,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177556,0.001776,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177556,0.001776,-0.002500,0.249988,0,0);}
.m40_c00020{transform:matrix(0.177861,0.001779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177861,0.001779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177861,0.001779,-0.002500,0.249988,0,0);}
.mcf_c00020{transform:matrix(0.177873,0.001601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177873,0.001601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177873,0.001601,-0.002250,0.249990,0,0);}
.m7_c00020{transform:matrix(0.178176,0.001782,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178176,0.001782,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178176,0.001782,-0.002500,0.249988,0,0);}
.m11e_c00020{transform:matrix(0.178255,0.002674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178255,0.002674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178255,0.002674,-0.003750,0.249972,0,0);}
.m89_c00020{transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);}
.meb_c00020{transform:matrix(0.179453,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179453,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179453,0.001615,-0.002250,0.249990,0,0);}
.m93_c00020{transform:matrix(0.179626,0.001796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179626,0.001796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179626,0.001796,-0.002500,0.249988,0,0);}
.m4a_c00020{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);}
.m18_c00020{transform:matrix(0.180356,0.001804,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180356,0.001804,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180356,0.001804,-0.002500,0.249988,0,0);}
.m2f_c00020{transform:matrix(0.180386,0.001804,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180386,0.001804,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180386,0.001804,-0.002500,0.249988,0,0);}
.m7c_c00020{transform:matrix(0.180416,0.001804,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180416,0.001804,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180416,0.001804,-0.002500,0.249988,0,0);}
.mdf_c00020{transform:matrix(0.180453,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180453,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180453,0.001624,-0.002250,0.249990,0,0);}
.m12e_c00020{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);}
.mbe_c00020{transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);}
.m84_c00020{transform:matrix(0.180541,0.001805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180541,0.001805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180541,0.001805,-0.002500,0.249988,0,0);}
.m2e_c00020{transform:matrix(0.180636,0.001806,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180636,0.001806,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180636,0.001806,-0.002500,0.249988,0,0);}
.m29_c00020{transform:matrix(0.180666,0.001807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180666,0.001807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180666,0.001807,-0.002500,0.249988,0,0);}
.md2_c00020{transform:matrix(0.180968,0.001629,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180968,0.001629,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180968,0.001629,-0.002250,0.249990,0,0);}
.m15_c00020{transform:matrix(0.181021,0.001810,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181021,0.001810,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181021,0.001810,-0.002500,0.249988,0,0);}
.mff_c00020{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);}
.m86_c00020{transform:matrix(0.181301,0.001813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181301,0.001813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181301,0.001813,-0.002500,0.249988,0,0);}
.m12a_c00020{transform:matrix(0.181425,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181425,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181425,0.002721,-0.003750,0.249972,0,0);}
.m131_c00020{transform:matrix(0.182220,0.002733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182220,0.002733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182220,0.002733,-0.003750,0.249972,0,0);}
.maa_c00020{transform:matrix(0.182261,0.001823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182261,0.001823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182261,0.001823,-0.002500,0.249988,0,0);}
.m11d_c00020{transform:matrix(0.182514,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182514,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182514,0.002738,-0.003750,0.249972,0,0);}
.m25_c00020{transform:matrix(0.182541,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182541,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182541,0.001825,-0.002500,0.249988,0,0);}
.m1c_c00020{transform:matrix(0.182761,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182761,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182761,0.001828,-0.002500,0.249988,0,0);}
.m55_c00020{transform:matrix(0.182936,0.001829,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182936,0.001829,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182936,0.001829,-0.002500,0.249988,0,0);}
.m5a_c00020{transform:matrix(0.183021,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183021,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183021,0.001830,-0.002500,0.249988,0,0);}
.m136_c00020{transform:matrix(0.183084,0.002746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183084,0.002746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183084,0.002746,-0.003750,0.249972,0,0);}
.m1d_c00020{transform:matrix(0.183521,0.001835,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183521,0.001835,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183521,0.001835,-0.002500,0.249988,0,0);}
.m82_c00020{transform:matrix(0.183746,0.001837,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183746,0.001837,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183746,0.001837,-0.002500,0.249988,0,0);}
.m106_c00020{transform:matrix(0.184014,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184014,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184014,0.002392,-0.003250,0.249979,0,0);}
.m63_c00020{transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);}
.m66_c00020{transform:matrix(0.184856,0.001849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184856,0.001849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184856,0.001849,-0.002500,0.249988,0,0);}
.m100_c00020{transform:matrix(0.184889,0.002404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184889,0.002404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184889,0.002404,-0.003250,0.249979,0,0);}
.med_c00020{transform:matrix(0.184998,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184998,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184998,0.001665,-0.002250,0.249990,0,0);}
.mde_c00020{transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);}
.ma5_c00020{transform:matrix(0.185516,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185516,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185516,0.001855,-0.002500,0.249988,0,0);}
.m32_c00020{transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);}
.mf2_c00020{transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);}
.m87_c00020{transform:matrix(0.186901,0.001869,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186901,0.001869,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186901,0.001869,-0.002500,0.249988,0,0);}
.m126_c00020{transform:matrix(0.187524,0.002813,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187524,0.002813,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187524,0.002813,-0.003750,0.249972,0,0);}
.m137_c00020{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);}
.mf6_c00020{transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);}
.m140_c00020{transform:matrix(0.188619,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188619,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188619,0.002829,-0.003750,0.249972,0,0);}
.m95_c00020{transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);}
.mb8_c00020{transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);}
.m116_c00020{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);}
.m8_c00020{transform:matrix(0.190355,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190355,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190355,0.001904,-0.002500,0.249988,0,0);}
.m110_c00020{transform:matrix(0.190424,0.002856,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190424,0.002856,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190424,0.002856,-0.003750,0.249972,0,0);}
.m12d_c00020{transform:matrix(0.190509,0.002858,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190509,0.002858,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190509,0.002858,-0.003750,0.249972,0,0);}
.ma7_c00020{transform:matrix(0.190520,0.001905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190520,0.001905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190520,0.001905,-0.002500,0.249988,0,0);}
.m44_c00020{transform:matrix(0.190710,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190710,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190710,0.001907,-0.002500,0.249988,0,0);}
.mb0_c00020{transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);}
.m33_c00020{transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);}
.m53_c00020{transform:matrix(0.191050,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191050,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191050,0.001911,-0.002500,0.249988,0,0);}
.m4d_c00020{transform:matrix(0.191320,0.001913,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191320,0.001913,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191320,0.001913,-0.002500,0.249988,0,0);}
.mbb_c00020{transform:matrix(0.191587,0.001724,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191587,0.001724,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191587,0.001724,-0.002250,0.249990,0,0);}
.m39_c00020{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);}
.mbf_c00020{transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);}
.m115_c00020{transform:matrix(0.192023,0.002880,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192023,0.002880,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192023,0.002880,-0.003750,0.249972,0,0);}
.me_c00020{transform:matrix(0.192120,0.001921,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192120,0.001921,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192120,0.001921,-0.002500,0.249988,0,0);}
.mf5_c00020{transform:matrix(0.192234,0.002499,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192234,0.002499,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192234,0.002499,-0.003250,0.249979,0,0);}
.m1a_c00020{transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);}
.mad_c00020{transform:matrix(0.192515,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192515,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192515,0.001925,-0.002500,0.249988,0,0);}
.me2_c00020{transform:matrix(0.192517,0.001733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192517,0.001733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192517,0.001733,-0.002250,0.249990,0,0);}
.m12_c00020{transform:matrix(0.192520,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192520,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192520,0.001925,-0.002500,0.249988,0,0);}
.m67_c00020{transform:matrix(0.192930,0.001929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192930,0.001929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192930,0.001929,-0.002500,0.249988,0,0);}
.m26_c00020{transform:matrix(0.193055,0.001931,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193055,0.001931,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193055,0.001931,-0.002500,0.249988,0,0);}
.mb9_c00020{transform:matrix(0.193387,0.001740,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193387,0.001740,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193387,0.001740,-0.002250,0.249990,0,0);}
.m92_c00020{transform:matrix(0.193495,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193495,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193495,0.001935,-0.002500,0.249988,0,0);}
.mce_c00020{transform:matrix(0.193542,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193542,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193542,0.001742,-0.002250,0.249990,0,0);}
.m4e_c00020{transform:matrix(0.193965,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193965,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193965,0.001940,-0.002500,0.249988,0,0);}
.m64_c00020{transform:matrix(0.194075,0.001941,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194075,0.001941,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194075,0.001941,-0.002500,0.249988,0,0);}
.mc4_c00020{transform:matrix(0.194602,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194602,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194602,0.001751,-0.002250,0.249990,0,0);}
.m104_c00020{transform:matrix(0.194649,0.002530,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194649,0.002530,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194649,0.002530,-0.003250,0.249979,0,0);}
.m117_c00020{transform:matrix(0.194793,0.002922,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194793,0.002922,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194793,0.002922,-0.003750,0.249972,0,0);}
.mae_c00020{transform:matrix(0.194835,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194835,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194835,0.001948,-0.002500,0.249988,0,0);}
.m80_c00020{transform:matrix(0.195100,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195100,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195100,0.001951,-0.002500,0.249988,0,0);}
.m10d_c00020{transform:matrix(0.196043,0.002549,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196043,0.002549,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196043,0.002549,-0.003250,0.249979,0,0);}
.m4c_c00020{transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);}
.md9_c00020{transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);}
.me4_c00020{transform:matrix(0.196347,0.001767,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196347,0.001767,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196347,0.001767,-0.002250,0.249990,0,0);}
.md_c00020{transform:matrix(0.196350,0.001964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196350,0.001964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196350,0.001964,-0.002500,0.249988,0,0);}
.m7d_c00020{transform:matrix(0.196455,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196455,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196455,0.001965,-0.002500,0.249988,0,0);}
.m11c_c00020{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);}
.m56_c00020{transform:matrix(0.196515,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196515,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196515,0.001965,-0.002500,0.249988,0,0);}
.md6_c00020{transform:matrix(0.196517,0.001769,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196517,0.001769,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196517,0.001769,-0.002250,0.249990,0,0);}
.m9a_c00020{transform:matrix(0.196975,0.001970,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196975,0.001970,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196975,0.001970,-0.002500,0.249988,0,0);}
.mfe_c00020{transform:matrix(0.197283,0.002565,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197283,0.002565,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197283,0.002565,-0.003250,0.249979,0,0);}
.m30_c00020{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);}
.m120_c00020{transform:matrix(0.197788,0.002967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197788,0.002967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197788,0.002967,-0.003750,0.249972,0,0);}
.mc6_c00020{transform:matrix(0.197802,0.001780,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197802,0.001780,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197802,0.001780,-0.002250,0.249990,0,0);}
.m2c_c00020{transform:matrix(0.197825,0.001978,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197825,0.001978,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197825,0.001978,-0.002500,0.249988,0,0);}
.mdd_c00020{transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);}
.m85_c00020{transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);}
.mca_c00020{transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);}
.mc0_c00020{transform:matrix(0.198867,0.001790,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198867,0.001790,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198867,0.001790,-0.002250,0.249990,0,0);}
.md8_c00020{transform:matrix(0.199077,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199077,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199077,0.001792,-0.002250,0.249990,0,0);}
.m3e_c00020{transform:matrix(0.199090,0.001991,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199090,0.001991,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199090,0.001991,-0.002500,0.249988,0,0);}
.m4b_c00020{transform:matrix(0.199385,0.001994,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199385,0.001994,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199385,0.001994,-0.002500,0.249988,0,0);}
.m121_c00020{transform:matrix(0.199553,0.002993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199553,0.002993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199553,0.002993,-0.003750,0.249972,0,0);}
.m113_c00020{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);}
.mb2_c00020{transform:matrix(0.199780,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199780,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199780,0.001998,-0.002500,0.249988,0,0);}
.m62_c00020{transform:matrix(0.199890,0.001999,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199890,0.001999,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199890,0.001999,-0.002500,0.249988,0,0);}
.mf4_c00020{transform:matrix(0.200088,0.002601,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200088,0.002601,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200088,0.002601,-0.003250,0.249979,0,0);}
.m5e_c00020{transform:matrix(0.200170,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200170,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200170,0.002002,-0.002500,0.249988,0,0);}
.m91_c00020{transform:matrix(0.200500,0.002005,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200500,0.002005,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200500,0.002005,-0.002500,0.249988,0,0);}
.maf_c00020{transform:matrix(0.200830,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200830,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200830,0.002008,-0.002500,0.249988,0,0);}
.m9f_c00020{transform:matrix(0.201330,0.002013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201330,0.002013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201330,0.002013,-0.002500,0.249988,0,0);}
.mb1_c00020{transform:matrix(0.201370,0.002014,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201370,0.002014,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201370,0.002014,-0.002500,0.249988,0,0);}
.mb6_c00020{transform:matrix(0.201432,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201432,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201432,0.001813,-0.002250,0.249990,0,0);}
.m11f_c00020{transform:matrix(0.202002,0.003030,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202002,0.003030,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202002,0.003030,-0.003750,0.249972,0,0);}
.m83_c00020{transform:matrix(0.202415,0.002024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202415,0.002024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202415,0.002024,-0.002500,0.249988,0,0);}
.m1f_c00020{transform:matrix(0.202470,0.002025,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202470,0.002025,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202470,0.002025,-0.002500,0.249988,0,0);}
.m16_c00020{transform:matrix(0.202570,0.002026,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202570,0.002026,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202570,0.002026,-0.002500,0.249988,0,0);}
.m10f_c00020{transform:matrix(0.202592,0.003039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202592,0.003039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202592,0.003039,-0.003750,0.249972,0,0);}
.mb4_c00020{transform:matrix(0.202612,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202612,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202612,0.001824,-0.002250,0.249990,0,0);}
.m76_c00020{transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);}
.m7b_c00020{transform:matrix(0.203005,0.002030,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203005,0.002030,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203005,0.002030,-0.002500,0.249988,0,0);}
.m11b_c00020{transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);}
.m21_c00020{transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);}
.m5_c00020{transform:matrix(0.204035,0.002040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204035,0.002040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204035,0.002040,-0.002500,0.249988,0,0);}
.m90_c00020{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);}
.m12b_c00020{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);}
.mc8_c00020{transform:matrix(0.205247,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205247,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205247,0.001847,-0.002250,0.249990,0,0);}
.m69_c00020{transform:matrix(0.205750,0.002057,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205750,0.002057,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205750,0.002057,-0.002500,0.249988,0,0);}
.me0_c00020{transform:matrix(0.205867,0.001853,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205867,0.001853,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205867,0.001853,-0.002250,0.249990,0,0);}
.m19_c00020{transform:matrix(0.206315,0.002063,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206315,0.002063,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206315,0.002063,-0.002500,0.249988,0,0);}
.m9e_c00020{transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206525,0.002065,-0.002500,0.249988,0,0);}
.m4f_c00020{transform:matrix(0.207185,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207185,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207185,0.002072,-0.002500,0.249988,0,0);}
.m107_c00020{transform:matrix(0.207292,0.002695,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207292,0.002695,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207292,0.002695,-0.003250,0.249979,0,0);}
.m132_c00020{transform:matrix(0.207362,0.003110,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207362,0.003110,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207362,0.003110,-0.003750,0.249972,0,0);}
.md1_c00020{transform:matrix(0.207402,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207402,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207402,0.001867,-0.002250,0.249990,0,0);}
.mf0_c00020{transform:matrix(0.207712,0.002700,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207712,0.002700,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207712,0.002700,-0.003250,0.249979,0,0);}
.mbc_c00020{transform:matrix(0.207737,0.001870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207737,0.001870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207737,0.001870,-0.002250,0.249990,0,0);}
.m8b_c00020{transform:matrix(0.207910,0.002079,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207910,0.002079,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207910,0.002079,-0.002500,0.249988,0,0);}
.m13b_c00020{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);}
.m12c_c00020{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);}
.mf8_c00020{transform:matrix(0.208342,0.002708,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208342,0.002708,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208342,0.002708,-0.003250,0.249979,0,0);}
.m96_c00020{transform:matrix(0.208415,0.002084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208415,0.002084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208415,0.002084,-0.002500,0.249988,0,0);}
.mcd_c00020{transform:matrix(0.208967,0.001881,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208967,0.001881,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208967,0.001881,-0.002250,0.249990,0,0);}
.m118_c00020{transform:matrix(0.209011,0.003135,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209011,0.003135,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209011,0.003135,-0.003750,0.249972,0,0);}
.m145_c00020{transform:matrix(0.209056,0.003136,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209056,0.003136,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209056,0.003136,-0.003750,0.249972,0,0);}
.m75_c00020{transform:matrix(0.209350,0.002093,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209350,0.002093,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209350,0.002093,-0.002500,0.249988,0,0);}
.m102_c00020{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);}
.md7_c00020{transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);}
.m1e_c00020{transform:matrix(0.209900,0.002099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209900,0.002099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209900,0.002099,-0.002500,0.249988,0,0);}
.m9_c00020{transform:matrix(0.209915,0.002099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209915,0.002099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209915,0.002099,-0.002500,0.249988,0,0);}
.m133_c00020{transform:matrix(0.209926,0.003149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209926,0.003149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209926,0.003149,-0.003750,0.249972,0,0);}
.m10e_c00020{transform:matrix(0.210486,0.003157,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210486,0.003157,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210486,0.003157,-0.003750,0.249972,0,0);}
.m135_c00020{transform:matrix(0.211036,0.003166,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211036,0.003166,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211036,0.003166,-0.003750,0.249972,0,0);}
.md5_c00020{transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);}
.m119_c00020{transform:matrix(0.211181,0.003168,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211181,0.003168,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211181,0.003168,-0.003750,0.249972,0,0);}
.me3_c00020{transform:matrix(0.211291,0.001902,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211291,0.001902,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211291,0.001902,-0.002250,0.249990,0,0);}
.m50_c00020{transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);}
.mf7_c00020{transform:matrix(0.212052,0.002757,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212052,0.002757,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212052,0.002757,-0.003250,0.249979,0,0);}
.m108_c00020{transform:matrix(0.212192,0.002758,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212192,0.002758,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212192,0.002758,-0.003250,0.249979,0,0);}
.m9d_c00020{transform:matrix(0.213094,0.002131,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213094,0.002131,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213094,0.002131,-0.002500,0.249988,0,0);}
.mc3_c00020{transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);}
.m99_c00020{transform:matrix(0.214354,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214354,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214354,0.002144,-0.002500,0.249988,0,0);}
.m49_c00020{transform:matrix(0.214834,0.002148,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214834,0.002148,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214834,0.002148,-0.002500,0.249988,0,0);}
.m58_c00020{transform:matrix(0.215574,0.002156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215574,0.002156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215574,0.002156,-0.002500,0.249988,0,0);}
.m54_c00020{transform:matrix(0.216419,0.002164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216419,0.002164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216419,0.002164,-0.002500,0.249988,0,0);}
.mf3_c00020{transform:matrix(0.216517,0.002815,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216517,0.002815,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216517,0.002815,-0.003250,0.249979,0,0);}
.m101_c00020{transform:matrix(0.216692,0.002817,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216692,0.002817,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216692,0.002817,-0.003250,0.249979,0,0);}
.m27_c00020{transform:matrix(0.217284,0.002173,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217284,0.002173,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217284,0.002173,-0.002500,0.249988,0,0);}
.m9b_c00020{transform:matrix(0.217449,0.002174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217449,0.002174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217449,0.002174,-0.002500,0.249988,0,0);}
.m72_c00020{transform:matrix(0.218874,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218874,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218874,0.002189,-0.002500,0.249988,0,0);}
.mb_c00020{transform:matrix(0.218979,0.002190,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218979,0.002190,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218979,0.002190,-0.002500,0.249988,0,0);}
.m13c_c00020{transform:matrix(0.220290,0.003304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220290,0.003304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220290,0.003304,-0.003750,0.249972,0,0);}
.m127_c00020{transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);}
.m6_c00020{transform:matrix(0.222564,0.002226,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222564,0.002226,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222564,0.002226,-0.002500,0.249988,0,0);}
.mb3_c00020{transform:matrix(0.224086,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224086,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224086,0.002017,-0.002250,0.249990,0,0);}
.m97_c00020{transform:matrix(0.225459,0.002255,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225459,0.002255,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225459,0.002255,-0.002500,0.249988,0,0);}
.m73_c00020{transform:matrix(0.226124,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226124,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226124,0.002261,-0.002500,0.249988,0,0);}
.m143_c00020{transform:matrix(0.226625,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226625,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226625,0.003399,-0.003750,0.249972,0,0);}
.m111_c00020{transform:matrix(0.227139,0.003407,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227139,0.003407,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227139,0.003407,-0.003750,0.249972,0,0);}
.m130_c00020{transform:matrix(0.227184,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227184,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227184,0.003408,-0.003750,0.249972,0,0);}
.m6a_c00020{transform:matrix(0.227629,0.002276,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227629,0.002276,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227629,0.002276,-0.002500,0.249988,0,0);}
.mc2_c00020{transform:matrix(0.228736,0.002059,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228736,0.002059,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228736,0.002059,-0.002250,0.249990,0,0);}
.m8d_c00020{transform:matrix(0.229084,0.002291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229084,0.002291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229084,0.002291,-0.002500,0.249988,0,0);}
.m43_c00020{transform:matrix(0.229359,0.002294,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229359,0.002294,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229359,0.002294,-0.002500,0.249988,0,0);}
.mc5_c00020{transform:matrix(0.230541,0.002075,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230541,0.002075,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230541,0.002075,-0.002250,0.249990,0,0);}
.me6_c00020{transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);}
.mcc_c00020{transform:matrix(0.236540,0.002129,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236540,0.002129,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236540,0.002129,-0.002250,0.249990,0,0);}
.me8_c00020{transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);}
.m9c_c00020{transform:matrix(0.239903,0.002399,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239903,0.002399,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239903,0.002399,-0.002500,0.249988,0,0);}
.m10a_c00020{transform:matrix(0.240950,0.003132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240950,0.003132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240950,0.003132,-0.003250,0.249979,0,0);}
.m68_c00020{transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);}
.mc1_c00020{transform:matrix(0.242685,0.002184,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242685,0.002184,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242685,0.002184,-0.002250,0.249990,0,0);}
.m5b_c00020{transform:matrix(0.243758,0.002438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243758,0.002438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243758,0.002438,-0.002500,0.249988,0,0);}
.m123_c00020{transform:matrix(0.244413,0.003666,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244413,0.003666,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244413,0.003666,-0.003750,0.249972,0,0);}
.mef_c00020{transform:matrix(0.244769,0.003182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244769,0.003182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244769,0.003182,-0.003250,0.249979,0,0);}
.me5_c00020{transform:matrix(0.246195,0.002216,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246195,0.002216,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246195,0.002216,-0.002250,0.249990,0,0);}
.m7f_c00020{transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);}
.m94_c00020{transform:matrix(0.247173,0.002472,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247173,0.002472,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247173,0.002472,-0.002500,0.249988,0,0);}
.m81_c00020{transform:matrix(0.248253,0.002483,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248253,0.002483,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248253,0.002483,-0.002500,0.249988,0,0);}
.mfa_c00020{transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);}
.m138_c00020{transform:matrix(0.251832,0.003777,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251832,0.003777,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251832,0.003777,-0.003750,0.249972,0,0);}
.mac_c00020{transform:matrix(0.254927,0.002549,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254927,0.002549,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254927,0.002549,-0.002500,0.249988,0,0);}
.m11a_c00020{transform:matrix(0.257386,0.003861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257386,0.003861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257386,0.003861,-0.003750,0.249972,0,0);}
.me1_c00020{transform:matrix(0.257590,0.002318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257590,0.002318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257590,0.002318,-0.002250,0.249990,0,0);}
.m7a_c00020{transform:matrix(0.258327,0.002583,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258327,0.002583,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258327,0.002583,-0.002500,0.249988,0,0);}
.m60_c00020{transform:matrix(0.259547,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259547,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259547,0.002595,-0.002500,0.249988,0,0);}
.m7e_c00020{transform:matrix(0.259737,0.002597,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259737,0.002597,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259737,0.002597,-0.002500,0.249988,0,0);}
.m74_c00020{transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);}
.md4_c00020{transform:matrix(0.262999,0.002367,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262999,0.002367,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262999,0.002367,-0.002250,0.249990,0,0);}
.m6b_c00020{transform:matrix(0.263172,0.002632,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263172,0.002632,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263172,0.002632,-0.002500,0.249988,0,0);}
.m6c_c00020{transform:matrix(0.266942,0.002669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266942,0.002669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266942,0.002669,-0.002500,0.249988,0,0);}
.mfb_c00020{transform:matrix(0.268512,0.003491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268512,0.003491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268512,0.003491,-0.003250,0.249979,0,0);}
.m122_c00020{transform:matrix(0.271804,0.004077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271804,0.004077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271804,0.004077,-0.003750,0.249972,0,0);}
.ma_c00020{transform:matrix(0.272741,0.002727,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272741,0.002727,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272741,0.002727,-0.002500,0.249988,0,0);}
.m98_c00020{transform:matrix(0.274181,0.002742,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274181,0.002742,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274181,0.002742,-0.002500,0.249988,0,0);}
.m6e_c00020{transform:matrix(0.284286,0.002843,-0.002500,0.249988,0,0);-ms-transform:matrix(0.284286,0.002843,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.284286,0.002843,-0.002500,0.249988,0,0);}
.m1_c00020{transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284695,0.000000,0.000000,0.250000,0,0);}
.m70_c00020{transform:matrix(0.286746,0.002867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.286746,0.002867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.286746,0.002867,-0.002500,0.249988,0,0);}
.m71_c00020{transform:matrix(0.291160,0.002912,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291160,0.002912,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291160,0.002912,-0.002500,0.249988,0,0);}
.m37_c00020{transform:matrix(0.303865,0.003039,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303865,0.003039,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303865,0.003039,-0.002500,0.249988,0,0);}
.md3_c00020{transform:matrix(0.304913,0.002744,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304913,0.002744,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304913,0.002744,-0.002250,0.249990,0,0);}
.mcb_c00020{transform:matrix(0.311957,0.002808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311957,0.002808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311957,0.002808,-0.002250,0.249990,0,0);}
.m6f_c00020{transform:matrix(0.315674,0.003157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.315674,0.003157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.315674,0.003157,-0.002500,0.249988,0,0);}
.m0_c00020{transform:matrix(0.318300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00020{transform:matrix(0.328254,0.003283,-0.002500,0.249988,0,0);-ms-transform:matrix(0.328254,0.003283,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.328254,0.003283,-0.002500,0.249988,0,0);}
.m12f_c00020{transform:matrix(0.329303,0.004940,-0.003750,0.249972,0,0);-ms-transform:matrix(0.329303,0.004940,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.329303,0.004940,-0.003750,0.249972,0,0);}
.m10b_c00020{transform:matrix(0.332962,0.004329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.332962,0.004329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.332962,0.004329,-0.003250,0.249979,0,0);}
.m6d_c00020{transform:matrix(0.336908,0.003369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336908,0.003369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336908,0.003369,-0.002500,0.249988,0,0);}
.m35_c00020{transform:matrix(0.346388,0.003464,-0.002500,0.249988,0,0);-ms-transform:matrix(0.346388,0.003464,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.346388,0.003464,-0.002500,0.249988,0,0);}
.m47_c00020{transform:matrix(0.378056,0.003781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.378056,0.003781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.378056,0.003781,-0.002500,0.249988,0,0);}
.m144_c00020{transform:matrix(0.379827,0.005697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.379827,0.005697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.379827,0.005697,-0.003750,0.249972,0,0);}
.m2a_c00020{transform:matrix(0.487916,0.004879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.487916,0.004879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.487916,0.004879,-0.002500,0.249988,0,0);}
.mee_c00020{transform:matrix(0.539244,0.007010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.539244,0.007010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.539244,0.007010,-0.003250,0.249979,0,0);}
.ma0_c00020{transform:matrix(0.651112,0.006511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.651112,0.006511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.651112,0.006511,-0.002500,0.249988,0,0);}
.m8f_c00020{transform:matrix(0.750722,0.007507,-0.002500,0.249988,0,0);-ms-transform:matrix(0.750722,0.007507,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.750722,0.007507,-0.002500,0.249988,0,0);}
.m3b_c00020{transform:matrix(0.791995,0.007920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.791995,0.007920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.791995,0.007920,-0.002500,0.249988,0,0);}
.m52_c00020{transform:matrix(0.832823,0.008328,-0.002500,0.249988,0,0);-ms-transform:matrix(0.832823,0.008328,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.832823,0.008328,-0.002500,0.249988,0,0);}
.m11_c00020{transform:matrix(0.921794,0.009218,-0.002500,0.249988,0,0);-ms-transform:matrix(0.921794,0.009218,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.921794,0.009218,-0.002500,0.249988,0,0);}
.m2_c00020{transform:matrix(1.366005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.366005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.366005,0.000000,0.000000,0.250000,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;}
.fs9_c00020{font-size:63.003150px;}
.fs10_c00020{font-size:64.055412px;}
.fs2_c00020{font-size:65.103255px;}
.fsc_c00020{font-size:68.252764px;}
.fs8_c00020{font-size:68.253412px;}
.fs11_c00020{font-size:68.255767px;}
.fs13_c00020{font-size:68.257678px;}
.fsd_c00020{font-size:69.302807px;}
.fs4_c00020{font-size:69.303465px;}
.fs12_c00020{font-size:69.307796px;}
.fsb_c00020{font-size:70.352849px;}
.fsa_c00020{font-size:70.353517px;}
.fsf_c00020{font-size:70.355944px;}
.fs0_c00020{font-size:71.400000px;}
.fs3_c00020{font-size:71.403570px;}
.fs15_c00020{font-size:71.408032px;}
.fs6_c00020{font-size:72.453622px;}
.fs14_c00020{font-size:72.458150px;}
.fs5_c00020{font-size:73.503675px;}
.fse_c00020{font-size:75.603062px;}
.fs7_c00020{font-size:76.653832px;}
.fs16_c00020{font-size:79.808977px;}
.fs1_c00020{font-size:156.457822px;}
.y0_c00020{bottom:0.000000px;}
.y144_c00020{bottom:195.308175px;}
.y143_c00020{bottom:195.467498px;}
.y142_c00020{bottom:196.648680px;}
.y141_c00020{bottom:196.975965px;}
.y140_c00020{bottom:198.046312px;}
.y13f_c00020{bottom:198.455250px;}
.y13e_c00020{bottom:199.309575px;}
.y13d_c00020{bottom:199.893315px;}
.y13c_c00020{bottom:200.475728px;}
.y13b_c00020{bottom:200.788455px;}
.y13a_c00020{bottom:201.996683px;}
.y139_c00020{bottom:202.226902px;}
.y138_c00020{bottom:219.354315px;}
.y137_c00020{bottom:219.627360px;}
.y136_c00020{bottom:220.020015px;}
.y135_c00020{bottom:221.634045px;}
.y134_c00020{bottom:222.324817px;}
.y133_c00020{bottom:222.758955px;}
.y132_c00020{bottom:223.232303px;}
.y131_c00020{bottom:224.226728px;}
.y130_c00020{bottom:224.721278px;}
.y12f_c00020{bottom:225.671925px;}
.y12e_c00020{bottom:225.992797px;}
.y12d_c00020{bottom:226.256325px;}
.y12c_c00020{bottom:240.648533px;}
.y12b_c00020{bottom:241.573860px;}
.y12a_c00020{bottom:242.185192px;}
.y129_c00020{bottom:243.309255px;}
.y128_c00020{bottom:243.941115px;}
.y127_c00020{bottom:245.074418px;}
.y126_c00020{bottom:245.471730px;}
.y125_c00020{bottom:246.058110px;}
.y124_c00020{bottom:247.163490px;}
.y123_c00020{bottom:247.580723px;}
.y122_c00020{bottom:247.940873px;}
.y121_c00020{bottom:248.669490px;}
.y120_c00020{bottom:264.162397px;}
.y11f_c00020{bottom:264.733380px;}
.y11e_c00020{bottom:265.720110px;}
.y11d_c00020{bottom:266.287223px;}
.y11c_c00020{bottom:266.740110px;}
.y11b_c00020{bottom:267.045795px;}
.y11a_c00020{bottom:267.555645px;}
.y119_c00020{bottom:267.892973px;}
.y118_c00020{bottom:268.689983px;}
.y117_c00020{bottom:269.295315px;}
.y116_c00020{bottom:270.539468px;}
.y115_c00020{bottom:287.286600px;}
.y114_c00020{bottom:287.933430px;}
.y113_c00020{bottom:288.874200px;}
.y112_c00020{bottom:289.541528px;}
.y111_c00020{bottom:290.348535px;}
.y110_c00020{bottom:290.834783px;}
.y10f_c00020{bottom:291.628245px;}
.y10e_c00020{bottom:292.021230px;}
.y10d_c00020{bottom:292.953000px;}
.y10c_c00020{bottom:312.142450px;}
.y10b_c00020{bottom:312.461880px;}
.y10a_c00020{bottom:312.729069px;}
.y109_c00020{bottom:313.869546px;}
.y108_c00020{bottom:314.220507px;}
.y107_c00020{bottom:315.263854px;}
.y106_c00020{bottom:316.000292px;}
.y105_c00020{bottom:316.449766px;}
.y104_c00020{bottom:316.709487px;}
.y103_c00020{bottom:333.282951px;}
.y102_c00020{bottom:333.610722px;}
.y101_c00020{bottom:333.971131px;}
.y100_c00020{bottom:335.562217px;}
.yff_c00020{bottom:335.845398px;}
.yfe_c00020{bottom:336.193836px;}
.yfd_c00020{bottom:337.036903px;}
.yfc_c00020{bottom:337.286821px;}
.yfb_c00020{bottom:337.530714px;}
.yfa_c00020{bottom:337.834269px;}
.yf9_c00020{bottom:338.798707px;}
.yf8_c00020{bottom:339.066543px;}
.yf7_c00020{bottom:339.662169px;}
.yf6_c00020{bottom:357.024904px;}
.yf5_c00020{bottom:357.361708px;}
.yf4_c00020{bottom:357.831190px;}
.yf3_c00020{bottom:358.712317px;}
.yf2_c00020{bottom:359.025507px;}
.yf1_c00020{bottom:359.509945px;}
.yf0_c00020{bottom:359.923365px;}
.yef_c00020{bottom:361.258140px;}
.yee_c00020{bottom:361.454407px;}
.yed_c00020{bottom:362.164500px;}
.yec_c00020{bottom:382.017231px;}
.yeb_c00020{bottom:382.242370px;}
.yea_c00020{bottom:382.574652px;}
.ye9_c00020{bottom:383.578911px;}
.ye8_c00020{bottom:384.225691px;}
.ye7_c00020{bottom:384.817572px;}
.ye6_c00020{bottom:385.286958px;}
.ye5_c00020{bottom:402.213010px;}
.ye4_c00020{bottom:402.828913px;}
.ye3_c00020{bottom:403.376137px;}
.ye2_c00020{bottom:404.380113px;}
.ye1_c00020{bottom:404.680995px;}
.ye0_c00020{bottom:404.969251px;}
.ydf_c00020{bottom:405.882511px;}
.yde_c00020{bottom:406.410628px;}
.ydd_c00020{bottom:406.772383px;}
.ydc_c00020{bottom:407.334354px;}
.ydb_c00020{bottom:407.694516px;}
.yda_c00020{bottom:424.096200px;}
.yd9_c00020{bottom:424.365121px;}
.yd8_c00020{bottom:424.936254px;}
.yd7_c00020{bottom:425.403466px;}
.yd6_c00020{bottom:426.666735px;}
.yd5_c00020{bottom:427.297464px;}
.yd4_c00020{bottom:428.843941px;}
.yd3_c00020{bottom:429.345051px;}
.yd2_c00020{bottom:429.610204px;}
.yd1_c00020{bottom:430.378048px;}
.yd0_c00020{bottom:449.140441px;}
.ycf_c00020{bottom:449.422375px;}
.yce_c00020{bottom:450.243729px;}
.ycd_c00020{bottom:450.610321px;}
.ycc_c00020{bottom:451.266786px;}
.ycb_c00020{bottom:451.896237px;}
.yca_c00020{bottom:452.173621px;}
.yc9_c00020{bottom:453.057885px;}
.yc8_c00020{bottom:471.257341px;}
.yc7_c00020{bottom:471.735463px;}
.yc6_c00020{bottom:471.979764px;}
.yc5_c00020{bottom:472.442898px;}
.yc4_c00020{bottom:473.143864px;}
.yc3_c00020{bottom:473.381373px;}
.yc2_c00020{bottom:473.617315px;}
.yc1_c00020{bottom:474.615592px;}
.yc0_c00020{bottom:474.909933px;}
.ybf_c00020{bottom:475.794721px;}
.ybe_c00020{bottom:476.281687px;}
.ybd_c00020{bottom:494.557395px;}
.ybc_c00020{bottom:494.730208px;}
.ybb_c00020{bottom:494.856609px;}
.yba_c00020{bottom:495.366450px;}
.yb9_c00020{bottom:495.736255px;}
.yb8_c00020{bottom:495.976420px;}
.yb7_c00020{bottom:496.260744px;}
.yb6_c00020{bottom:496.700925px;}
.yb5_c00020{bottom:497.079708px;}
.yb4_c00020{bottom:497.305752px;}
.yb3_c00020{bottom:498.071634px;}
.yb2_c00020{bottom:498.421500px;}
.yb1_c00020{bottom:518.755380px;}
.yb0_c00020{bottom:519.269220px;}
.yaf_c00020{bottom:520.335840px;}
.yae_c00020{bottom:520.828530px;}
.yad_c00020{bottom:521.500695px;}
.yac_c00020{bottom:521.750070px;}
.yab_c00020{bottom:521.999325px;}
.yaa_c00020{bottom:522.171330px;}
.ya9_c00020{bottom:541.039395px;}
.ya8_c00020{bottom:541.372635px;}
.ya7_c00020{bottom:541.449915px;}
.ya6_c00020{bottom:542.132535px;}
.ya5_c00020{bottom:542.558040px;}
.ya4_c00020{bottom:542.878935px;}
.ya3_c00020{bottom:543.166515px;}
.ya2_c00020{bottom:543.314925px;}
.ya1_c00020{bottom:543.665790px;}
.ya0_c00020{bottom:543.753555px;}
.y9f_c00020{bottom:544.312515px;}
.y9e_c00020{bottom:563.630550px;}
.y9d_c00020{bottom:564.393435px;}
.y9c_c00020{bottom:564.746160px;}
.y9b_c00020{bottom:565.581465px;}
.y9a_c00020{bottom:566.630595px;}
.y99_c00020{bottom:567.153915px;}
.y98_c00020{bottom:567.777945px;}
.y97_c00020{bottom:568.123035px;}
.y96_c00020{bottom:586.939020px;}
.y95_c00020{bottom:587.431020px;}
.y94_c00020{bottom:587.661075px;}
.y93_c00020{bottom:587.833785px;}
.y92_c00020{bottom:588.174135px;}
.y91_c00020{bottom:588.802125px;}
.y90_c00020{bottom:589.155240px;}
.y8f_c00020{bottom:589.259040px;}
.y8e_c00020{bottom:589.821030px;}
.y8d_c00020{bottom:589.944795px;}
.y8c_c00020{bottom:608.840370px;}
.y8b_c00020{bottom:609.131490px;}
.y8a_c00020{bottom:609.610530px;}
.y89_c00020{bottom:609.816045px;}
.y88_c00020{bottom:610.346895px;}
.y87_c00020{bottom:610.519410px;}
.y86_c00020{bottom:610.877640px;}
.y85_c00020{bottom:611.271300px;}
.y84_c00020{bottom:611.669340px;}
.y83_c00020{bottom:611.997180px;}
.y82_c00020{bottom:612.355410px;}
.y81_c00020{bottom:630.944445px;}
.y80_c00020{bottom:631.213860px;}
.y7f_c00020{bottom:631.859940px;}
.y7e_c00020{bottom:632.149965px;}
.y7d_c00020{bottom:632.437125px;}
.y7c_c00020{bottom:632.801655px;}
.y7b_c00020{bottom:633.193155px;}
.y7a_c00020{bottom:633.444855px;}
.y79_c00020{bottom:633.922050px;}
.y78_c00020{bottom:634.091280px;}
.y77_c00020{bottom:634.331565px;}
.y76_c00020{bottom:635.036700px;}
.y75_c00020{bottom:653.557455px;}
.y74_c00020{bottom:654.240570px;}
.y73_c00020{bottom:654.443040px;}
.y72_c00020{bottom:654.888465px;}
.y71_c00020{bottom:655.109850px;}
.y70_c00020{bottom:655.377165px;}
.y6f_c00020{bottom:655.771455px;}
.y6e_c00020{bottom:655.908720px;}
.y6d_c00020{bottom:656.573370px;}
.y6c_c00020{bottom:656.908320px;}
.y6b_c00020{bottom:657.129660px;}
.y6a_c00020{bottom:657.675000px;}
.y69_c00020{bottom:657.918120px;}
.y68_c00020{bottom:658.072230px;}
.y67_c00020{bottom:658.257570px;}
.y66_c00020{bottom:675.674370px;}
.y65_c00020{bottom:676.683900px;}
.y64_c00020{bottom:676.885365px;}
.y63_c00020{bottom:677.753340px;}
.y62_c00020{bottom:678.222030px;}
.y61_c00020{bottom:678.542175px;}
.y60_c00020{bottom:678.993135px;}
.y5f_c00020{bottom:679.605180px;}
.y5e_c00020{bottom:680.397645px;}
.y5d_c00020{bottom:698.951175px;}
.y5c_c00020{bottom:699.289425px;}
.y5b_c00020{bottom:699.457695px;}
.y5a_c00020{bottom:699.620520px;}
.y59_c00020{bottom:700.029195px;}
.y58_c00020{bottom:700.235790px;}
.y57_c00020{bottom:701.054640px;}
.y56_c00020{bottom:701.211750px;}
.y55_c00020{bottom:701.573610px;}
.y54_c00020{bottom:702.188100px;}
.y53_c00020{bottom:702.484365px;}
.y52_c00020{bottom:702.807615px;}
.y51_c00020{bottom:720.920445px;}
.y50_c00020{bottom:721.395465px;}
.y4f_c00020{bottom:721.935030px;}
.y4e_c00020{bottom:722.405295px;}
.y4d_c00020{bottom:723.220785px;}
.y4c_c00020{bottom:723.461070px;}
.y4b_c00020{bottom:723.798120px;}
.y4a_c00020{bottom:724.708920px;}
.y49_c00020{bottom:725.040300px;}
.y48_c00020{bottom:726.028830px;}
.y47_c00020{bottom:743.305365px;}
.y46_c00020{bottom:743.545920px;}
.y45_c00020{bottom:743.939295px;}
.y44_c00020{bottom:744.312855px;}
.y43_c00020{bottom:744.568185px;}
.y42_c00020{bottom:744.793755px;}
.y41_c00020{bottom:745.267860px;}
.y40_c00020{bottom:745.454730px;}
.y3f_c00020{bottom:745.677675px;}
.y3e_c00020{bottom:746.122425px;}
.y3d_c00020{bottom:746.958135px;}
.y3c_c00020{bottom:747.589905px;}
.y3b_c00020{bottom:747.897975px;}
.y3a_c00020{bottom:767.254710px;}
.y39_c00020{bottom:771.489075px;}
.y38_c00020{bottom:771.773025px;}
.y37_c00020{bottom:771.884760px;}
.y36_c00020{bottom:772.087350px;}
.y35_c00020{bottom:772.199205px;}
.y34_c00020{bottom:790.271760px;}
.y33_c00020{bottom:790.676145px;}
.y32_c00020{bottom:790.872030px;}
.y31_c00020{bottom:791.313615px;}
.y30_c00020{bottom:791.490045px;}
.y2f_c00020{bottom:792.027345px;}
.y2e_c00020{bottom:793.027095px;}
.y2d_c00020{bottom:793.300590px;}
.y2c_c00020{bottom:793.635420px;}
.y2b_c00020{bottom:794.142360px;}
.y2a_c00020{bottom:794.289615px;}
.y29_c00020{bottom:813.783795px;}
.y28_c00020{bottom:814.191105px;}
.y27_c00020{bottom:814.461435px;}
.y26_c00020{bottom:814.893975px;}
.y25_c00020{bottom:815.053305px;}
.y24_c00020{bottom:815.291760px;}
.y23_c00020{bottom:815.419635px;}
.y22_c00020{bottom:815.774280px;}
.y21_c00020{bottom:815.987925px;}
.y20_c00020{bottom:816.538185px;}
.y1f_c00020{bottom:816.899235px;}
.y1e_c00020{bottom:817.288905px;}
.y1d_c00020{bottom:836.668920px;}
.y1c_c00020{bottom:837.023235px;}
.y1b_c00020{bottom:837.270135px;}
.y1a_c00020{bottom:837.358320px;}
.y19_c00020{bottom:837.661050px;}
.y18_c00020{bottom:837.775080px;}
.y17_c00020{bottom:838.087695px;}
.y16_c00020{bottom:838.248540px;}
.y15_c00020{bottom:838.867485px;}
.y14_c00020{bottom:839.168625px;}
.y13_c00020{bottom:839.293980px;}
.y12_c00020{bottom:839.521725px;}
.y11_c00020{bottom:839.700165px;}
.y10_c00020{bottom:859.374090px;}
.yf_c00020{bottom:859.553205px;}
.ye_c00020{bottom:859.792545px;}
.yd_c00020{bottom:860.001645px;}
.yc_c00020{bottom:860.320590px;}
.yb_c00020{bottom:860.449545px;}
.ya_c00020{bottom:860.624175px;}
.y9_c00020{bottom:860.782290px;}
.y8_c00020{bottom:861.472050px;}
.y7_c00020{bottom:861.763050px;}
.y6_c00020{bottom:861.888375px;}
.y5_c00020{bottom:861.990945px;}
.y4_c00020{bottom:862.379820px;}
.y3_c00020{bottom:877.007445px;}
.y2_c00020{bottom:881.010000px;}
.y1_c00020{bottom:904.308000px;}
.hb_c00020{height:63.003150px;}
.h12_c00020{height:64.055412px;}
.h4_c00020{height:65.103255px;}
.he_c00020{height:68.252764px;}
.ha_c00020{height:68.253412px;}
.h13_c00020{height:68.255767px;}
.h15_c00020{height:68.257678px;}
.hf_c00020{height:69.302807px;}
.h6_c00020{height:69.303465px;}
.h14_c00020{height:69.307796px;}
.hd_c00020{height:70.352849px;}
.hc_c00020{height:70.353517px;}
.h11_c00020{height:70.355944px;}
.h2_c00020{height:71.400000px;}
.h5_c00020{height:71.403570px;}
.h17_c00020{height:71.408032px;}
.h8_c00020{height:72.453622px;}
.h16_c00020{height:72.458150px;}
.h7_c00020{height:73.503675px;}
.h10_c00020{height:75.603062px;}
.h9_c00020{height:76.653832px;}
.h18_c00020{height:79.808977px;}
.h3_c00020{height:156.457822px;}
.h1_c00020{height:1080.000000px;}
.h0_c00020{height:1080.270000px;}
.w1_c00020{width:768.000000px;}
.w0_c00020{width:768.150000px;}
.x0_c00020{left:0.000000px;}
.xba_c00020{left:57.057278px;}
.x30_c00020{left:64.972215px;}
.x57_c00020{left:74.197335px;}
.xbb_c00020{left:75.926070px;}
.x31_c00020{left:77.357835px;}
.xc0_c00020{left:80.763750px;}
.x4f_c00020{left:84.912285px;}
.x58_c00020{left:92.731335px;}
.x84_c00020{left:94.312620px;}
.xc1_c00020{left:96.111750px;}
.xbc_c00020{left:98.817908px;}
.x32_c00020{left:99.867060px;}
.x3f_c00020{left:103.551915px;}
.x7d_c00020{left:104.766555px;}
.xa5_c00020{left:106.726109px;}
.x59_c00020{left:108.142335px;}
.x6f_c00020{left:110.095365px;}
.x64_c00020{left:111.105840px;}
.x33_c00020{left:112.240680px;}
.x6_c00020{left:113.817315px;}
.xa1_c00020{left:118.033500px;}
.xac_c00020{left:123.727500px;}
.xa9_c00020{left:125.920142px;}
.x70_c00020{left:127.872405px;}
.x28_c00020{left:131.382765px;}
.x5a_c00020{left:132.454335px;}
.xb4_c00020{left:140.964848px;}
.x13_c00020{left:143.551230px;}
.x76_c00020{left:144.806640px;}
.x46_c00020{left:147.317370px;}
.x69_c00020{left:148.931250px;}
.x8f_c00020{left:153.207972px;}
.x85_c00020{left:155.375520px;}
.x50_c00020{left:156.958065px;}
.x9e_c00020{left:161.054553px;}
.x95_c00020{left:162.906131px;}
.x34_c00020{left:164.816130px;}
.x88_c00020{left:166.197000px;}
.x1f_c00020{left:168.926565px;}
.xa2_c00020{left:172.656000px;}
.x7e_c00020{left:174.613950px;}
.x77_c00020{left:176.165325px;}
.x7_c00020{left:178.657410px;}
.x47_c00020{left:180.244200px;}
.x14_c00020{left:181.627260px;}
.x99_c00020{left:184.263081px;}
.x7f_c00020{left:185.640675px;}
.x5b_c00020{left:186.988335px;}
.x65_c00020{left:189.420120px;}
.x8_c00020{left:195.665085px;}
.xc2_c00020{left:197.508750px;}
.x15_c00020{left:202.413585px;}
.x94_c00020{left:206.399708px;}
.x71_c00020{left:208.073805px;}
.x5c_c00020{left:209.122335px;}
.x51_c00020{left:212.612010px;}
.x9_c00020{left:216.448410px;}
.x96_c00020{left:217.710674px;}
.x20_c00020{left:220.483110px;}
.x1_c00020{left:221.670000px;}
.x72_c00020{left:222.954255px;}
.x4_c00020{left:227.847000px;}
.x80_c00020{left:229.428045px;}
.x78_c00020{left:232.867755px;}
.x35_c00020{left:235.043835px;}
.x29_c00020{left:236.711880px;}
.xae_c00020{left:238.023848px;}
.x6a_c00020{left:239.671065px;}
.x5d_c00020{left:242.617335px;}
.xb5_c00020{left:245.577645px;}
.x48_c00020{left:248.593890px;}
.x2_c00020{left:250.560000px;}
.x16_c00020{left:252.629595px;}
.x52_c00020{left:253.657605px;}
.x86_c00020{left:261.209955px;}
.xa_c00020{left:265.050360px;}
.x2a_c00020{left:270.962070px;}
.x73_c00020{left:273.417270px;}
.xc3_c00020{left:275.252250px;}
.x89_c00020{left:276.411000px;}
.xb6_c00020{left:278.168183px;}
.x79_c00020{left:280.399275px;}
.xa6_c00020{left:281.665046px;}
.x53_c00020{left:282.821820px;}
.x81_c00020{left:283.978140px;}
.x3_c00020{left:285.930000px;}
.x49_c00020{left:288.830295px;}
.xa3_c00020{left:290.428500px;}
.xaf_c00020{left:294.958703px;}
.xaa_c00020{left:297.401642px;}
.x21_c00020{left:299.061465px;}
.xb7_c00020{left:300.254693px;}
.x9a_c00020{left:304.412841px;}
.x4a_c00020{left:306.341475px;}
.x5e_c00020{left:309.082335px;}
.x9f_c00020{left:311.167353px;}
.x66_c00020{left:316.012395px;}
.x8a_c00020{left:318.498000px;}
.x5f_c00020{left:322.808835px;}
.x82_c00020{left:324.168450px;}
.x54_c00020{left:325.490400px;}
.x40_c00020{left:326.622915px;}
.x36_c00020{left:327.915765px;}
.x22_c00020{left:329.576880px;}
.xc4_c00020{left:332.207250px;}
.x6b_c00020{left:333.611940px;}
.xa7_c00020{left:337.861083px;}
.xa0_c00020{left:341.420313px;}
.x90_c00020{left:351.138408px;}
.x9b_c00020{left:353.538018px;}
.x17_c00020{left:355.778220px;}
.x87_c00020{left:358.120980px;}
.x41_c00020{left:360.327915px;}
.x60_c00020{left:362.237835px;}
.x8b_c00020{left:367.407000px;}
.x91_c00020{left:372.520516px;}
.x7a_c00020{left:375.711315px;}
.x37_c00020{left:377.341260px;}
.xb_c00020{left:380.080965px;}
.x18_c00020{left:382.513785px;}
.x42_c00020{left:384.356415px;}
.xbd_c00020{left:387.314250px;}
.x61_c00020{left:388.969335px;}
.x92_c00020{left:394.076625px;}
.x2b_c00020{left:395.989575px;}
.x4b_c00020{left:397.377390px;}
.x23_c00020{left:398.680965px;}
.x67_c00020{left:400.016235px;}
.x38_c00020{left:402.186015px;}
.x55_c00020{left:404.337105px;}
.xc_c00020{left:406.543530px;}
.xb0_c00020{left:409.710435px;}
.x62_c00020{left:411.107835px;}
.xab_c00020{left:412.127642px;}
.x4c_c00020{left:420.287115px;}
.x6c_c00020{left:421.650210px;}
.x39_c00020{left:422.973225px;}
.x8c_c00020{left:425.683500px;}
.xc5_c00020{left:430.826250px;}
.x24_c00020{left:432.727485px;}
.x19_c00020{left:434.627370px;}
.xd_c00020{left:435.707700px;}
.x9c_c00020{left:437.255264px;}
.x6d_c00020{left:447.302220px;}
.xb1_c00020{left:450.218543px;}
.x7b_c00020{left:451.591050px;}
.x1a_c00020{left:453.531120px;}
.x25_c00020{left:455.411160px;}
.xe_c00020{left:457.304070px;}
.xad_c00020{left:458.365500px;}
.xb8_c00020{left:460.762470px;}
.x2c_c00020{left:463.220925px;}
.x43_c00020{left:465.905415px;}
.x74_c00020{left:469.183635px;}
.x83_c00020{left:472.411920px;}
.x3a_c00020{left:475.634250px;}
.x4d_c00020{left:483.737745px;}
.x2d_c00020{left:485.364375px;}
.xa4_c00020{left:487.479000px;}
.xb9_c00020{left:494.716440px;}
.x97_c00020{left:496.885619px;}
.x3b_c00020{left:500.741505px;}
.x4e_c00020{left:502.364925px;}
.x1b_c00020{left:504.056145px;}
.x6e_c00020{left:507.207420px;}
.xf_c00020{left:510.500700px;}
.x44_c00020{left:512.931915px;}
.x56_c00020{left:514.485510px;}
.x26_c00020{left:517.267020px;}
.x1c_c00020{left:518.875245px;}
.xb2_c00020{left:520.701600px;}
.x93_c00020{left:522.063317px;}
.x8d_c00020{left:523.422000px;}
.x3c_c00020{left:529.124790px;}
.xbe_c00020{left:530.695410px;}
.xa8_c00020{left:532.001052px;}
.x9d_c00020{left:534.155645px;}
.x68_c00020{left:535.844085px;}
.x8e_c00020{left:537.466500px;}
.x75_c00020{left:539.385735px;}
.x2e_c00020{left:540.473970px;}
.xc6_c00020{left:542.012250px;}
.x63_c00020{left:544.208835px;}
.x10_c00020{left:545.362095px;}
.xbf_c00020{left:550.198703px;}
.x7c_c00020{left:553.101045px;}
.x27_c00020{left:555.851175px;}
.x98_c00020{left:556.888919px;}
.x1d_c00020{left:559.916880px;}
.xb3_c00020{left:561.467708px;}
.x2f_c00020{left:565.012965px;}
.x45_c00020{left:566.888415px;}
.x3d_c00020{left:570.681210px;}
.x11_c00020{left:585.347700px;}
.x12_c00020{left:615.110385px;}
.x1e_c00020{left:619.050750px;}
.x5_c00020{left:628.102500px;}
.x3e_c00020{left:641.124915px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fs9_c00020{font-size:56.002800pt;}
.fs10_c00020{font-size:56.938144pt;}
.fs2_c00020{font-size:57.869560pt;}
.fsc_c00020{font-size:60.669124pt;}
.fs8_c00020{font-size:60.669700pt;}
.fs11_c00020{font-size:60.671793pt;}
.fs13_c00020{font-size:60.673491pt;}
.fsd_c00020{font-size:61.602495pt;}
.fs4_c00020{font-size:61.603080pt;}
.fs12_c00020{font-size:61.606930pt;}
.fsb_c00020{font-size:62.535866pt;}
.fsa_c00020{font-size:62.536460pt;}
.fsf_c00020{font-size:62.538617pt;}
.fs0_c00020{font-size:63.466667pt;}
.fs3_c00020{font-size:63.469840pt;}
.fs15_c00020{font-size:63.473806pt;}
.fs6_c00020{font-size:64.403220pt;}
.fs14_c00020{font-size:64.407245pt;}
.fs5_c00020{font-size:65.336600pt;}
.fse_c00020{font-size:67.202722pt;}
.fs7_c00020{font-size:68.136740pt;}
.fs16_c00020{font-size:70.941313pt;}
.fs1_c00020{font-size:139.073620pt;}
.y0_c00020{bottom:0.000000pt;}
.y144_c00020{bottom:173.607267pt;}
.y143_c00020{bottom:173.748887pt;}
.y142_c00020{bottom:174.798827pt;}
.y141_c00020{bottom:175.089747pt;}
.y140_c00020{bottom:176.041167pt;}
.y13f_c00020{bottom:176.404667pt;}
.y13e_c00020{bottom:177.164067pt;}
.y13d_c00020{bottom:177.682947pt;}
.y13c_c00020{bottom:178.200647pt;}
.y13b_c00020{bottom:178.478627pt;}
.y13a_c00020{bottom:179.552607pt;}
.y139_c00020{bottom:179.757247pt;}
.y138_c00020{bottom:194.981613pt;}
.y137_c00020{bottom:195.224320pt;}
.y136_c00020{bottom:195.573347pt;}
.y135_c00020{bottom:197.008040pt;}
.y134_c00020{bottom:197.622060pt;}
.y133_c00020{bottom:198.007960pt;}
.y132_c00020{bottom:198.428713pt;}
.y131_c00020{bottom:199.312647pt;}
.y130_c00020{bottom:199.752247pt;}
.y12f_c00020{bottom:200.597267pt;}
.y12e_c00020{bottom:200.882487pt;}
.y12d_c00020{bottom:201.116733pt;}
.y12c_c00020{bottom:213.909807pt;}
.y12b_c00020{bottom:214.732320pt;}
.y12a_c00020{bottom:215.275727pt;}
.y129_c00020{bottom:216.274893pt;}
.y128_c00020{bottom:216.836547pt;}
.y127_c00020{bottom:217.843927pt;}
.y126_c00020{bottom:218.197093pt;}
.y125_c00020{bottom:218.718320pt;}
.y124_c00020{bottom:219.700880pt;}
.y123_c00020{bottom:220.071753pt;}
.y122_c00020{bottom:220.391887pt;}
.y121_c00020{bottom:221.039547pt;}
.y120_c00020{bottom:234.811020pt;}
.y11f_c00020{bottom:235.318560pt;}
.y11e_c00020{bottom:236.195653pt;}
.y11d_c00020{bottom:236.699753pt;}
.y11c_c00020{bottom:237.102320pt;}
.y11b_c00020{bottom:237.374040pt;}
.y11a_c00020{bottom:237.827240pt;}
.y119_c00020{bottom:238.127087pt;}
.y118_c00020{bottom:238.835540pt;}
.y117_c00020{bottom:239.373613pt;}
.y116_c00020{bottom:240.479527pt;}
.y115_c00020{bottom:255.365867pt;}
.y114_c00020{bottom:255.940827pt;}
.y113_c00020{bottom:256.777067pt;}
.y112_c00020{bottom:257.370247pt;}
.y111_c00020{bottom:258.087587pt;}
.y110_c00020{bottom:258.519807pt;}
.y10f_c00020{bottom:259.225107pt;}
.y10e_c00020{bottom:259.574427pt;}
.y10d_c00020{bottom:260.402667pt;}
.y10c_c00020{bottom:277.459956pt;}
.y10b_c00020{bottom:277.743893pt;}
.y10a_c00020{bottom:277.981395pt;}
.y109_c00020{bottom:278.995152pt;}
.y108_c00020{bottom:279.307117pt;}
.y107_c00020{bottom:280.234537pt;}
.y106_c00020{bottom:280.889148pt;}
.y105_c00020{bottom:281.288681pt;}
.y104_c00020{bottom:281.519544pt;}
.y103_c00020{bottom:296.251512pt;}
.y102_c00020{bottom:296.542864pt;}
.y101_c00020{bottom:296.863228pt;}
.y100_c00020{bottom:298.277527pt;}
.yff_c00020{bottom:298.529243pt;}
.yfe_c00020{bottom:298.838965pt;}
.yfd_c00020{bottom:299.588359pt;}
.yfc_c00020{bottom:299.810508pt;}
.yfb_c00020{bottom:300.027301pt;}
.yfa_c00020{bottom:300.297128pt;}
.yf9_c00020{bottom:301.154407pt;}
.yf8_c00020{bottom:301.392483pt;}
.yf7_c00020{bottom:301.921928pt;}
.yf6_c00020{bottom:317.355471pt;}
.yf5_c00020{bottom:317.654852pt;}
.yf4_c00020{bottom:318.072169pt;}
.yf3_c00020{bottom:318.855393pt;}
.yf2_c00020{bottom:319.133784pt;}
.yf1_c00020{bottom:319.564396pt;}
.yf0_c00020{bottom:319.931880pt;}
.yef_c00020{bottom:321.118347pt;}
.yee_c00020{bottom:321.292807pt;}
.yed_c00020{bottom:321.924000pt;}
.yec_c00020{bottom:339.570872pt;}
.yeb_c00020{bottom:339.770996pt;}
.yea_c00020{bottom:340.066357pt;}
.ye9_c00020{bottom:340.959032pt;}
.ye8_c00020{bottom:341.533948pt;}
.ye7_c00020{bottom:342.060064pt;}
.ye6_c00020{bottom:342.477296pt;}
.ye5_c00020{bottom:357.522676pt;}
.ye4_c00020{bottom:358.070145pt;}
.ye3_c00020{bottom:358.556567pt;}
.ye2_c00020{bottom:359.448989pt;}
.ye1_c00020{bottom:359.716440pt;}
.ye0_c00020{bottom:359.972668pt;}
.ydf_c00020{bottom:360.784455pt;}
.yde_c00020{bottom:361.253892pt;}
.ydd_c00020{bottom:361.575452pt;}
.ydc_c00020{bottom:362.074981pt;}
.ydb_c00020{bottom:362.395125pt;}
.yda_c00020{bottom:376.974400pt;}
.yd9_c00020{bottom:377.213441pt;}
.yd8_c00020{bottom:377.721115pt;}
.yd7_c00020{bottom:378.136415pt;}
.yd6_c00020{bottom:379.259320pt;}
.yd5_c00020{bottom:379.819968pt;}
.yd4_c00020{bottom:381.194615pt;}
.yd3_c00020{bottom:381.640045pt;}
.yd2_c00020{bottom:381.875737pt;}
.yd1_c00020{bottom:382.558265pt;}
.yd0_c00020{bottom:399.235948pt;}
.ycf_c00020{bottom:399.486556pt;}
.yce_c00020{bottom:400.216648pt;}
.ycd_c00020{bottom:400.542508pt;}
.ycc_c00020{bottom:401.126032pt;}
.ycb_c00020{bottom:401.685544pt;}
.yca_c00020{bottom:401.932108pt;}
.yc9_c00020{bottom:402.718120pt;}
.yc8_c00020{bottom:418.895415pt;}
.yc7_c00020{bottom:419.320412pt;}
.yc6_c00020{bottom:419.537568pt;}
.yc5_c00020{bottom:419.949243pt;}
.yc4_c00020{bottom:420.572324pt;}
.yc3_c00020{bottom:420.783443pt;}
.yc2_c00020{bottom:420.993169pt;}
.yc1_c00020{bottom:421.880527pt;}
.yc0_c00020{bottom:422.142163pt;}
.ybf_c00020{bottom:422.928641pt;}
.ybe_c00020{bottom:423.361500pt;}
.ybd_c00020{bottom:439.606573pt;}
.ybc_c00020{bottom:439.760185pt;}
.ybb_c00020{bottom:439.872541pt;}
.yba_c00020{bottom:440.325733pt;}
.yb9_c00020{bottom:440.654449pt;}
.yb8_c00020{bottom:440.867929pt;}
.yb7_c00020{bottom:441.120661pt;}
.yb6_c00020{bottom:441.511933pt;}
.yb5_c00020{bottom:441.848629pt;}
.yb4_c00020{bottom:442.049557pt;}
.yb3_c00020{bottom:442.730341pt;}
.yb2_c00020{bottom:443.041333pt;}
.yb1_c00020{bottom:461.115893pt;}
.yb0_c00020{bottom:461.572640pt;}
.yaf_c00020{bottom:462.520747pt;}
.yae_c00020{bottom:462.958693pt;}
.yad_c00020{bottom:463.556173pt;}
.yac_c00020{bottom:463.777840pt;}
.yab_c00020{bottom:463.999400pt;}
.yaa_c00020{bottom:464.152293pt;}
.ya9_c00020{bottom:480.923907pt;}
.ya8_c00020{bottom:481.220120pt;}
.ya7_c00020{bottom:481.288813pt;}
.ya6_c00020{bottom:481.895587pt;}
.ya5_c00020{bottom:482.273813pt;}
.ya4_c00020{bottom:482.559053pt;}
.ya3_c00020{bottom:482.814680pt;}
.ya2_c00020{bottom:482.946600pt;}
.ya1_c00020{bottom:483.258480pt;}
.ya0_c00020{bottom:483.336493pt;}
.y9f_c00020{bottom:483.833347pt;}
.y9e_c00020{bottom:501.004933pt;}
.y9d_c00020{bottom:501.683053pt;}
.y9c_c00020{bottom:501.996587pt;}
.y9b_c00020{bottom:502.739080pt;}
.y9a_c00020{bottom:503.671640pt;}
.y99_c00020{bottom:504.136813pt;}
.y98_c00020{bottom:504.691507pt;}
.y97_c00020{bottom:504.998253pt;}
.y96_c00020{bottom:521.723573pt;}
.y95_c00020{bottom:522.160907pt;}
.y94_c00020{bottom:522.365400pt;}
.y93_c00020{bottom:522.518920pt;}
.y92_c00020{bottom:522.821453pt;}
.y91_c00020{bottom:523.379667pt;}
.y90_c00020{bottom:523.693547pt;}
.y8f_c00020{bottom:523.785813pt;}
.y8e_c00020{bottom:524.285360pt;}
.y8d_c00020{bottom:524.395373pt;}
.y8c_c00020{bottom:541.191440pt;}
.y8b_c00020{bottom:541.450213pt;}
.y8a_c00020{bottom:541.876027pt;}
.y89_c00020{bottom:542.058707pt;}
.y88_c00020{bottom:542.530573pt;}
.y87_c00020{bottom:542.683920pt;}
.y86_c00020{bottom:543.002347pt;}
.y85_c00020{bottom:543.352267pt;}
.y84_c00020{bottom:543.706080pt;}
.y83_c00020{bottom:543.997493pt;}
.y82_c00020{bottom:544.315920pt;}
.y81_c00020{bottom:560.839507pt;}
.y80_c00020{bottom:561.078987pt;}
.y7f_c00020{bottom:561.653280pt;}
.y7e_c00020{bottom:561.911080pt;}
.y7d_c00020{bottom:562.166333pt;}
.y7c_c00020{bottom:562.490360pt;}
.y7b_c00020{bottom:562.838360pt;}
.y7a_c00020{bottom:563.062093pt;}
.y79_c00020{bottom:563.486267pt;}
.y78_c00020{bottom:563.636693pt;}
.y77_c00020{bottom:563.850280pt;}
.y76_c00020{bottom:564.477067pt;}
.y75_c00020{bottom:580.939960pt;}
.y74_c00020{bottom:581.547173pt;}
.y73_c00020{bottom:581.727147pt;}
.y72_c00020{bottom:582.123080pt;}
.y71_c00020{bottom:582.319867pt;}
.y70_c00020{bottom:582.557480pt;}
.y6f_c00020{bottom:582.907960pt;}
.y6e_c00020{bottom:583.029973pt;}
.y6d_c00020{bottom:583.620773pt;}
.y6c_c00020{bottom:583.918507pt;}
.y6b_c00020{bottom:584.115253pt;}
.y6a_c00020{bottom:584.600000pt;}
.y69_c00020{bottom:584.816107pt;}
.y68_c00020{bottom:584.953093pt;}
.y67_c00020{bottom:585.117840pt;}
.y66_c00020{bottom:600.599440pt;}
.y65_c00020{bottom:601.496800pt;}
.y64_c00020{bottom:601.675880pt;}
.y63_c00020{bottom:602.447413pt;}
.y62_c00020{bottom:602.864027pt;}
.y61_c00020{bottom:603.148600pt;}
.y60_c00020{bottom:603.549453pt;}
.y5f_c00020{bottom:604.093493pt;}
.y5e_c00020{bottom:604.797907pt;}
.y5d_c00020{bottom:621.289933pt;}
.y5c_c00020{bottom:621.590600pt;}
.y5b_c00020{bottom:621.740173pt;}
.y5a_c00020{bottom:621.884907pt;}
.y59_c00020{bottom:622.248173pt;}
.y58_c00020{bottom:622.431813pt;}
.y57_c00020{bottom:623.159680pt;}
.y56_c00020{bottom:623.299333pt;}
.y55_c00020{bottom:623.620987pt;}
.y54_c00020{bottom:624.167200pt;}
.y53_c00020{bottom:624.430547pt;}
.y52_c00020{bottom:624.717880pt;}
.y51_c00020{bottom:640.818173pt;}
.y50_c00020{bottom:641.240413pt;}
.y4f_c00020{bottom:641.720027pt;}
.y4e_c00020{bottom:642.138040pt;}
.y4d_c00020{bottom:642.862920pt;}
.y4c_c00020{bottom:643.076507pt;}
.y4b_c00020{bottom:643.376107pt;}
.y4a_c00020{bottom:644.185707pt;}
.y49_c00020{bottom:644.480267pt;}
.y48_c00020{bottom:645.358960pt;}
.y47_c00020{bottom:660.715880pt;}
.y46_c00020{bottom:660.929707pt;}
.y45_c00020{bottom:661.279373pt;}
.y44_c00020{bottom:661.611427pt;}
.y43_c00020{bottom:661.838387pt;}
.y42_c00020{bottom:662.038893pt;}
.y41_c00020{bottom:662.460320pt;}
.y40_c00020{bottom:662.626427pt;}
.y3f_c00020{bottom:662.824600pt;}
.y3e_c00020{bottom:663.219933pt;}
.y3d_c00020{bottom:663.962787pt;}
.y3c_c00020{bottom:664.524360pt;}
.y3b_c00020{bottom:664.798200pt;}
.y3a_c00020{bottom:682.004187pt;}
.y39_c00020{bottom:685.768067pt;}
.y38_c00020{bottom:686.020467pt;}
.y37_c00020{bottom:686.119787pt;}
.y36_c00020{bottom:686.299867pt;}
.y35_c00020{bottom:686.399293pt;}
.y34_c00020{bottom:702.463787pt;}
.y33_c00020{bottom:702.823240pt;}
.y32_c00020{bottom:702.997360pt;}
.y31_c00020{bottom:703.389880pt;}
.y30_c00020{bottom:703.546707pt;}
.y2f_c00020{bottom:704.024307pt;}
.y2e_c00020{bottom:704.912973pt;}
.y2d_c00020{bottom:705.156080pt;}
.y2c_c00020{bottom:705.453707pt;}
.y2b_c00020{bottom:705.904320pt;}
.y2a_c00020{bottom:706.035213pt;}
.y29_c00020{bottom:723.363373pt;}
.y28_c00020{bottom:723.725427pt;}
.y27_c00020{bottom:723.965720pt;}
.y26_c00020{bottom:724.350200pt;}
.y25_c00020{bottom:724.491827pt;}
.y24_c00020{bottom:724.703787pt;}
.y23_c00020{bottom:724.817453pt;}
.y22_c00020{bottom:725.132693pt;}
.y21_c00020{bottom:725.322600pt;}
.y20_c00020{bottom:725.811720pt;}
.y1f_c00020{bottom:726.132653pt;}
.y1e_c00020{bottom:726.479027pt;}
.y1d_c00020{bottom:743.705707pt;}
.y1c_c00020{bottom:744.020653pt;}
.y1b_c00020{bottom:744.240120pt;}
.y1a_c00020{bottom:744.318507pt;}
.y19_c00020{bottom:744.587600pt;}
.y18_c00020{bottom:744.688960pt;}
.y17_c00020{bottom:744.966840pt;}
.y16_c00020{bottom:745.109813pt;}
.y15_c00020{bottom:745.659987pt;}
.y14_c00020{bottom:745.927667pt;}
.y13_c00020{bottom:746.039093pt;}
.y12_c00020{bottom:746.241533pt;}
.y11_c00020{bottom:746.400147pt;}
.y10_c00020{bottom:763.888080pt;}
.yf_c00020{bottom:764.047293pt;}
.ye_c00020{bottom:764.260040pt;}
.yd_c00020{bottom:764.445907pt;}
.yc_c00020{bottom:764.729413pt;}
.yb_c00020{bottom:764.844040pt;}
.ya_c00020{bottom:764.999267pt;}
.y9_c00020{bottom:765.139813pt;}
.y8_c00020{bottom:765.752933pt;}
.y7_c00020{bottom:766.011600pt;}
.y6_c00020{bottom:766.123000pt;}
.y5_c00020{bottom:766.214173pt;}
.y4_c00020{bottom:766.559840pt;}
.y3_c00020{bottom:779.562173pt;}
.y2_c00020{bottom:783.120000pt;}
.y1_c00020{bottom:803.829333pt;}
.hb_c00020{height:56.002800pt;}
.h12_c00020{height:56.938144pt;}
.h4_c00020{height:57.869560pt;}
.he_c00020{height:60.669124pt;}
.ha_c00020{height:60.669700pt;}
.h13_c00020{height:60.671793pt;}
.h15_c00020{height:60.673491pt;}
.hf_c00020{height:61.602495pt;}
.h6_c00020{height:61.603080pt;}
.h14_c00020{height:61.606930pt;}
.hd_c00020{height:62.535866pt;}
.hc_c00020{height:62.536460pt;}
.h11_c00020{height:62.538617pt;}
.h2_c00020{height:63.466667pt;}
.h5_c00020{height:63.469840pt;}
.h17_c00020{height:63.473806pt;}
.h8_c00020{height:64.403220pt;}
.h16_c00020{height:64.407245pt;}
.h7_c00020{height:65.336600pt;}
.h10_c00020{height:67.202722pt;}
.h9_c00020{height:68.136740pt;}
.h18_c00020{height:70.941313pt;}
.h3_c00020{height:139.073620pt;}
.h1_c00020{height:960.000000pt;}
.h0_c00020{height:960.240000pt;}
.w1_c00020{width:682.666667pt;}
.w0_c00020{width:682.800000pt;}
.x0_c00020{left:0.000000pt;}
.xba_c00020{left:50.717580pt;}
.x30_c00020{left:57.753080pt;}
.x57_c00020{left:65.953187pt;}
.xbb_c00020{left:67.489840pt;}
.x31_c00020{left:68.762520pt;}
.xc0_c00020{left:71.790000pt;}
.x4f_c00020{left:75.477587pt;}
.x58_c00020{left:82.427853pt;}
.x84_c00020{left:83.833440pt;}
.xc1_c00020{left:85.432667pt;}
.xbc_c00020{left:87.838140pt;}
.x32_c00020{left:88.770720pt;}
.x3f_c00020{left:92.046147pt;}
.x7d_c00020{left:93.125827pt;}
.xa5_c00020{left:94.867652pt;}
.x59_c00020{left:96.126520pt;}
.x6f_c00020{left:97.862547pt;}
.x64_c00020{left:98.760747pt;}
.x33_c00020{left:99.769493pt;}
.x6_c00020{left:101.170947pt;}
.xa1_c00020{left:104.918667pt;}
.xac_c00020{left:109.980000pt;}
.xa9_c00020{left:111.929015pt;}
.x70_c00020{left:113.664360pt;}
.x28_c00020{left:116.784680pt;}
.x5a_c00020{left:117.737187pt;}
.xb4_c00020{left:125.302087pt;}
.x13_c00020{left:127.601093pt;}
.x76_c00020{left:128.717013pt;}
.x46_c00020{left:130.948773pt;}
.x69_c00020{left:132.383333pt;}
.x8f_c00020{left:136.184864pt;}
.x85_c00020{left:138.111573pt;}
.x50_c00020{left:139.518280pt;}
.x9e_c00020{left:143.159603pt;}
.x95_c00020{left:144.805449pt;}
.x34_c00020{left:146.503227pt;}
.x88_c00020{left:147.730667pt;}
.x1f_c00020{left:150.156947pt;}
.xa2_c00020{left:153.472000pt;}
.x7e_c00020{left:155.212400pt;}
.x77_c00020{left:156.591400pt;}
.x7_c00020{left:158.806587pt;}
.x47_c00020{left:160.217067pt;}
.x14_c00020{left:161.446453pt;}
.x99_c00020{left:163.789405pt;}
.x7f_c00020{left:165.013933pt;}
.x5b_c00020{left:166.211853pt;}
.x65_c00020{left:168.373440pt;}
.x8_c00020{left:173.924520pt;}
.xc2_c00020{left:175.563333pt;}
.x15_c00020{left:179.923187pt;}
.x94_c00020{left:183.466407pt;}
.x71_c00020{left:184.954493pt;}
.x5c_c00020{left:185.886520pt;}
.x51_c00020{left:188.988453pt;}
.x9_c00020{left:192.398587pt;}
.x96_c00020{left:193.520599pt;}
.x20_c00020{left:195.984987pt;}
.x1_c00020{left:197.040000pt;}
.x72_c00020{left:198.181560pt;}
.x4_c00020{left:202.530667pt;}
.x80_c00020{left:203.936040pt;}
.x78_c00020{left:206.993560pt;}
.x35_c00020{left:208.927853pt;}
.x29_c00020{left:210.410560pt;}
.xae_c00020{left:211.576753pt;}
.x6a_c00020{left:213.040947pt;}
.x5d_c00020{left:215.659853pt;}
.xb5_c00020{left:218.291240pt;}
.x48_c00020{left:220.972347pt;}
.x2_c00020{left:222.720000pt;}
.x16_c00020{left:224.559640pt;}
.x52_c00020{left:225.473427pt;}
.x86_c00020{left:232.186627pt;}
.xa_c00020{left:235.600320pt;}
.x2a_c00020{left:240.855173pt;}
.x73_c00020{left:243.037573pt;}
.xc3_c00020{left:244.668667pt;}
.x89_c00020{left:245.698667pt;}
.xb6_c00020{left:247.260607pt;}
.x79_c00020{left:249.243800pt;}
.xa6_c00020{left:250.368929pt;}
.x53_c00020{left:251.397173pt;}
.x81_c00020{left:252.425013pt;}
.x3_c00020{left:254.160000pt;}
.x49_c00020{left:256.738040pt;}
.xa3_c00020{left:258.158667pt;}
.xaf_c00020{left:262.185513pt;}
.xaa_c00020{left:264.357015pt;}
.x21_c00020{left:265.832413pt;}
.xb7_c00020{left:266.893060pt;}
.x9a_c00020{left:270.589192pt;}
.x4a_c00020{left:272.303533pt;}
.x5e_c00020{left:274.739853pt;}
.x9f_c00020{left:276.593203pt;}
.x66_c00020{left:280.899907pt;}
.x8a_c00020{left:283.109333pt;}
.x5f_c00020{left:286.941187pt;}
.x82_c00020{left:288.149733pt;}
.x54_c00020{left:289.324800pt;}
.x40_c00020{left:290.331480pt;}
.x36_c00020{left:291.480680pt;}
.x22_c00020{left:292.957227pt;}
.xc4_c00020{left:295.295333pt;}
.x6b_c00020{left:296.543947pt;}
.xa7_c00020{left:300.320963pt;}
.xa0_c00020{left:303.484723pt;}
.x90_c00020{left:312.123029pt;}
.x9b_c00020{left:314.256016pt;}
.x17_c00020{left:316.247307pt;}
.x87_c00020{left:318.329760pt;}
.x41_c00020{left:320.291480pt;}
.x60_c00020{left:321.989187pt;}
.x8b_c00020{left:326.584000pt;}
.x91_c00020{left:331.129348pt;}
.x7a_c00020{left:333.965613pt;}
.x37_c00020{left:335.414453pt;}
.xb_c00020{left:337.849747pt;}
.x18_c00020{left:340.012253pt;}
.x42_c00020{left:341.650147pt;}
.xbd_c00020{left:344.279333pt;}
.x61_c00020{left:345.750520pt;}
.x92_c00020{left:350.290333pt;}
.x2b_c00020{left:351.990733pt;}
.x4b_c00020{left:353.224347pt;}
.x23_c00020{left:354.383080pt;}
.x67_c00020{left:355.569987pt;}
.x38_c00020{left:357.498680pt;}
.x55_c00020{left:359.410760pt;}
.xc_c00020{left:361.372027pt;}
.xb0_c00020{left:364.187053pt;}
.x62_c00020{left:365.429187pt;}
.xab_c00020{left:366.335681pt;}
.x4c_c00020{left:373.588547pt;}
.x6c_c00020{left:374.800187pt;}
.x39_c00020{left:375.976200pt;}
.x8c_c00020{left:378.385333pt;}
.xc5_c00020{left:382.956667pt;}
.x24_c00020{left:384.646653pt;}
.x19_c00020{left:386.335440pt;}
.xd_c00020{left:387.295733pt;}
.x9c_c00020{left:388.671345pt;}
.x6d_c00020{left:397.601973pt;}
.xb1_c00020{left:400.194260pt;}
.x7b_c00020{left:401.414267pt;}
.x1a_c00020{left:403.138773pt;}
.x25_c00020{left:404.809920pt;}
.xe_c00020{left:406.492507pt;}
.xad_c00020{left:407.436000pt;}
.xb8_c00020{left:409.566640pt;}
.x2c_c00020{left:411.751933pt;}
.x43_c00020{left:414.138147pt;}
.x74_c00020{left:417.052120pt;}
.x83_c00020{left:419.921707pt;}
.x3a_c00020{left:422.786000pt;}
.x4d_c00020{left:429.989107pt;}
.x2d_c00020{left:431.435000pt;}
.xa4_c00020{left:433.314667pt;}
.xb9_c00020{left:439.747947pt;}
.x97_c00020{left:441.676105pt;}
.x3b_c00020{left:445.103560pt;}
.x4e_c00020{left:446.546600pt;}
.x1b_c00020{left:448.049907pt;}
.x6e_c00020{left:450.851040pt;}
.xf_c00020{left:453.778400pt;}
.x44_c00020{left:455.939480pt;}
.x56_c00020{left:457.320453pt;}
.x26_c00020{left:459.792907pt;}
.x1c_c00020{left:461.222440pt;}
.xb2_c00020{left:462.845867pt;}
.x93_c00020{left:464.056281pt;}
.x8d_c00020{left:465.264000pt;}
.x3c_c00020{left:470.333147pt;}
.xbe_c00020{left:471.729253pt;}
.xa8_c00020{left:472.889824pt;}
.x9d_c00020{left:474.805017pt;}
.x68_c00020{left:476.305853pt;}
.x8e_c00020{left:477.748000pt;}
.x75_c00020{left:479.453987pt;}
.x2e_c00020{left:480.421307pt;}
.xc6_c00020{left:481.788667pt;}
.x63_c00020{left:483.741187pt;}
.x10_c00020{left:484.766307pt;}
.xbf_c00020{left:489.065513pt;}
.x7c_c00020{left:491.645373pt;}
.x27_c00020{left:494.089933pt;}
.x98_c00020{left:495.012372pt;}
.x1d_c00020{left:497.703893pt;}
.xb3_c00020{left:499.082407pt;}
.x2f_c00020{left:502.233747pt;}
.x45_c00020{left:503.900813pt;}
.x3d_c00020{left:507.272187pt;}
.x11_c00020{left:520.309067pt;}
.x12_c00020{left:546.764787pt;}
.x1e_c00020{left:550.267333pt;}
.x5_c00020{left:558.313333pt;}
.x3e_c00020{left:569.888813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m11c_c00021{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);}
.m10e_c00021{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m44_c00021{transform:matrix(0.027940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027940,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.074930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074930,0.000000,0.000000,0.250000,0,0);}
.m107_c00021{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);}
.m86_c00021{transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);}
.m13f_c00021{transform:matrix(0.137130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137130,0.000000,0.000000,0.250000,0,0);}
.m135_c00021{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);}
.m60_c00021{transform:matrix(0.140755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140755,0.000000,0.000000,0.250000,0,0);}
.mf9_c00021{transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);}
.mfa_c00021{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.md5_c00021{transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00021{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);}
.mc3_c00021{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.mf8_c00021{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{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);}
.md7_c00021{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);}
.m20_c00021{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);}
.me1_c00021{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);}
.mfc_c00021{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{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);}
.m32_c00021{transform:matrix(0.155030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155030,0.000000,0.000000,0.250000,0,0);}
.m83_c00021{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);}
.mf2_c00021{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);}
.m4e_c00021{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m90_c00021{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);}
.m72_c00021{transform:matrix(0.157800,-0.001262,0.002000,0.249992,0,0);-ms-transform:matrix(0.157800,-0.001262,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157800,-0.001262,0.002000,0.249992,0,0);}
.m1c_c00021{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);}
.m24_c00021{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);}
.mee_c00021{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);}
.m9d_c00021{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.m5d_c00021{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);}
.m129_c00021{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);}
.mbf_c00021{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);}
.mf7_c00021{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);}
.m13d_c00021{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.mcc_c00021{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);}
.m12a_c00021{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_c00021{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);}
.me5_c00021{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);}
.m1f_c00021{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);}
.m40_c00021{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);}
.m10a_c00021{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);}
.m17_c00021{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);}
.m85_c00021{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);}
.m41_c00021{transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);}
.m13b_c00021{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);}
.m8e_c00021{transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{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);}
.m58_c00021{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);}
.m10c_c00021{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);}
.mea_c00021{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);}
.m19_c00021{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);}
.m12e_c00021{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);}
.me0_c00021{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);}
.mbb_c00021{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);}
.m124_c00021{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);}
.m125_c00021{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);}
.ma7_c00021{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);}
.m22_c00021{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);}
.m82_c00021{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);}
.m9a_c00021{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);}
.m123_c00021{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);}
.mb2_c00021{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);}
.ma2_c00021{transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);}
.m114_c00021{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);}
.m84_c00021{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);}
.m89_c00021{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);}
.mec_c00021{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);}
.mcb_c00021{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);}
.m94_c00021{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);}
.mba_c00021{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);}
.md9_c00021{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);}
.m34_c00021{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);}
.mc6_c00021{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);}
.m5a_c00021{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);}
.m2a_c00021{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);}
.md8_c00021{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);}
.mfb_c00021{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);}
.ma0_c00021{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);}
.m75_c00021{transform:matrix(0.176619,-0.001413,0.002000,0.249992,0,0);-ms-transform:matrix(0.176619,-0.001413,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176619,-0.001413,0.002000,0.249992,0,0);}
.m47_c00021{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);}
.md0_c00021{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);}
.ma5_c00021{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);}
.mc0_c00021{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);}
.m12b_c00021{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);}
.m134_c00021{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);}
.m30_c00021{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);}
.mbe_c00021{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);}
.m88_c00021{transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);}
.m8f_c00021{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);}
.m3c_c00021{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);}
.m13c_c00021{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);}
.m6f_c00021{transform:matrix(0.179514,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179514,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179514,-0.001436,0.002000,0.249992,0,0);}
.mb7_c00021{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);}
.m31_c00021{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);}
.m64_c00021{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);}
.m110_c00021{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);}
.m16_c00021{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);}
.m73_c00021{transform:matrix(0.180434,-0.001443,0.002000,0.249992,0,0);-ms-transform:matrix(0.180434,-0.001443,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180434,-0.001443,0.002000,0.249992,0,0);}
.m42_c00021{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);}
.m12f_c00021{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);}
.m121_c00021{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);}
.m2c_c00021{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);}
.mf5_c00021{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);}
.m1e_c00021{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);}
.m100_c00021{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.mfd_c00021{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);}
.me6_c00021{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);}
.m35_c00021{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);}
.m54_c00021{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);}
.m51_c00021{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);}
.m118_c00021{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);}
.mc1_c00021{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);}
.m8c_c00021{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_c00021{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);}
.m43_c00021{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);}
.m8_c00021{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);}
.m5f_c00021{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);}
.m3e_c00021{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);}
.m96_c00021{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);}
.m1b_c00021{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);}
.me9_c00021{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);}
.mf0_c00021{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);}
.mb8_c00021{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);}
.m18_c00021{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);}
.mf3_c00021{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);}
.m4d_c00021{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);}
.m97_c00021{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);}
.m13e_c00021{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);}
.md6_c00021{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);}
.m7e_c00021{transform:matrix(0.187369,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187369,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187369,-0.001499,0.002000,0.249992,0,0);}
.m48_c00021{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);}
.mcd_c00021{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);}
.m23_c00021{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);}
.mda_c00021{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);}
.m92_c00021{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);}
.mce_c00021{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);}
.m9f_c00021{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);}
.m139_c00021{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);}
.ma8_c00021{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_c00021{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);}
.mbd_c00021{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);}
.m59_c00021{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);}
.m9e_c00021{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);}
.m7a_c00021{transform:matrix(0.190359,-0.001523,0.002000,0.249992,0,0);-ms-transform:matrix(0.190359,-0.001523,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190359,-0.001523,0.002000,0.249992,0,0);}
.m45_c00021{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);}
.mde_c00021{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);}
.mf6_c00021{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);}
.m36_c00021{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);}
.m4c_c00021{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);}
.mac_c00021{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_c00021{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);}
.m108_c00021{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);}
.mdf_c00021{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);}
.mbc_c00021{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);}
.m93_c00021{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);}
.m98_c00021{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);}
.m2b_c00021{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);}
.m1d_c00021{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);}
.me4_c00021{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);}
.m104_c00021{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);}
.maf_c00021{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);}
.m128_c00021{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);}
.m132_c00021{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);}
.m3a_c00021{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);}
.ma6_c00021{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);}
.m5e_c00021{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);}
.m9b_c00021{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);}
.m2f_c00021{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);}
.m5c_c00021{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);}
.m12d_c00021{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);}
.m76_c00021{transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);}
.m131_c00021{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);}
.mab_c00021{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);}
.m6d_c00021{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);}
.md3_c00021{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);}
.m102_c00021{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.md4_c00021{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);}
.mad_c00021{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);}
.mb6_c00021{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);}
.me8_c00021{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);}
.m91_c00021{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);}
.m122_c00021{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);}
.m39_c00021{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.mb4_c00021{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);}
.m11f_c00021{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);}
.m8d_c00021{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);}
.m9c_c00021{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);}
.mc5_c00021{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);}
.mc9_c00021{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);}
.m46_c00021{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);}
.m29_c00021{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);}
.m3d_c00021{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);}
.m74_c00021{transform:matrix(0.199569,-0.001597,0.002000,0.249992,0,0);-ms-transform:matrix(0.199569,-0.001597,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199569,-0.001597,0.002000,0.249992,0,0);}
.mb1_c00021{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);}
.med_c00021{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);}
.me2_c00021{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);}
.m57_c00021{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);}
.m103_c00021{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);}
.mdd_c00021{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);}
.mfe_c00021{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);}
.m7f_c00021{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);}
.m137_c00021{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);}
.m78_c00021{transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);}
.mdb_c00021{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);}
.m4a_c00021{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);}
.m81_c00021{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);}
.mff_c00021{transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{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);}
.mb0_c00021{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);}
.mcf_c00021{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);}
.ma9_c00021{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);}
.mb5_c00021{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);}
.m87_c00021{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);}
.m10b_c00021{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);}
.mb9_c00021{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);}
.m5b_c00021{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);}
.m55_c00021{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);}
.m11a_c00021{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);}
.m56_c00021{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);}
.me7_c00021{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);}
.mf1_c00021{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);}
.m3b_c00021{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);}
.m140_c00021{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);}
.mc4_c00021{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);}
.m119_c00021{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);}
.m6b_c00021{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);}
.m7b_c00021{transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);}
.m80_c00021{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);}
.m6c_c00021{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);}
.m2e_c00021{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);}
.m126_c00021{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);}
.maa_c00021{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);}
.m65_c00021{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);}
.m63_c00021{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);}
.mb3_c00021{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);}
.m77_c00021{transform:matrix(0.215643,-0.001725,0.002000,0.249992,0,0);-ms-transform:matrix(0.215643,-0.001725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215643,-0.001725,0.002000,0.249992,0,0);}
.m138_c00021{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);}
.mc7_c00021{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);}
.m8b_c00021{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);}
.m49_c00021{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);}
.m7d_c00021{transform:matrix(0.217388,-0.001739,0.002000,0.249992,0,0);-ms-transform:matrix(0.217388,-0.001739,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217388,-0.001739,0.002000,0.249992,0,0);}
.m95_c00021{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);}
.m4f_c00021{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);}
.m28_c00021{transform:matrix(0.219630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219630,0.000000,0.000000,0.250000,0,0);}
.m116_c00021{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);}
.m133_c00021{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);}
.me3_c00021{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);}
.m12c_c00021{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);}
.m7c_c00021{transform:matrix(0.220753,-0.001766,0.002000,0.249992,0,0);-ms-transform:matrix(0.220753,-0.001766,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220753,-0.001766,0.002000,0.249992,0,0);}
.m120_c00021{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);}
.m10d_c00021{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);}
.m4b_c00021{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);}
.m66_c00021{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);}
.m109_c00021{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);}
.m115_c00021{transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);}
.m11e_c00021{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);}
.m61_c00021{transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{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);}
.md1_c00021{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);}
.m8a_c00021{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);}
.ma4_c00021{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);}
.mdc_c00021{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);}
.m99_c00021{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m105_c00021{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m53_c00021{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);}
.mc2_c00021{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);}
.m52_c00021{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);}
.m70_c00021{transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);-ms-transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);}
.m2_c00021{transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{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);}
.m106_c00021{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);}
.m33_c00021{transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);}
.md2_c00021{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);}
.m4_c00021{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{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);}
.mae_c00021{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);}
.m130_c00021{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m13a_c00021{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);}
.m25_c00021{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);}
.m11b_c00021{transform:matrix(0.259555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259555,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{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);}
.m6a_c00021{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.m113_c00021{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);}
.m71_c00021{transform:matrix(0.282626,-0.002261,0.002000,0.249992,0,0);-ms-transform:matrix(0.282626,-0.002261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.282626,-0.002261,0.002000,0.249992,0,0);}
.m2d_c00021{transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);}
.m6e_c00021{transform:matrix(0.303195,-0.002426,0.002000,0.249992,0,0);-ms-transform:matrix(0.303195,-0.002426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.303195,-0.002426,0.002000,0.249992,0,0);}
.m69_c00021{transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);}
.mef_c00021{transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.327020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327020,0.000000,0.000000,0.250000,0,0);}
.m117_c00021{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.m127_c00021{transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);}
.m112_c00021{transform:matrix(0.334030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334030,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.340370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340370,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);}
.m111_c00021{transform:matrix(0.359080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359080,0.000000,0.000000,0.250000,0,0);}
.mf4_c00021{transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);}
.meb_c00021{transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.406665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406665,0.000000,0.000000,0.250000,0,0);}
.m68_c00021{transform:matrix(0.412140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412140,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.413355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413355,0.000000,0.000000,0.250000,0,0);}
.m10f_c00021{transform:matrix(0.421620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421620,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.428940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428940,0.000000,0.000000,0.250000,0,0);}
.m67_c00021{transform:matrix(0.484910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484910,0.000000,0.000000,0.250000,0,0);}
.m136_c00021{transform:matrix(0.493835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493835,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.502705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502705,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.544195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544195,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.584200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584200,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.594675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594675,0.000000,0.000000,0.250000,0,0);}
.m101_c00021{transform:matrix(0.694325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694325,0.000000,0.000000,0.250000,0,0);}
.m11d_c00021{transform:matrix(0.695465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695465,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.749895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749895,0.000000,0.000000,0.250000,0,0);}
.m79_c00021{transform:matrix(0.801424,-0.006411,0.002000,0.249992,0,0);-ms-transform:matrix(0.801424,-0.006411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.801424,-0.006411,0.002000,0.249992,0,0);}
.m62_c00021{transform:matrix(1.002400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002400,0.000000,0.000000,0.250000,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;}
._0_c00021{width:57.473733px;}
.fc0_c00021{color:transparent;}
.fsc_c00021{font-size:29.400000px;}
.fs0_c00021{font-size:45.150000px;}
.fs8_c00021{font-size:51.450000px;}
.fs1_c00021{font-size:59.850000px;}
.fs9_c00021{font-size:63.000000px;}
.fs5_c00021{font-size:65.100000px;}
.fs6_c00021{font-size:68.250000px;}
.fsa_c00021{font-size:68.252184px;}
.fs4_c00021{font-size:69.300000px;}
.fs7_c00021{font-size:70.350000px;}
.fsb_c00021{font-size:71.400000px;}
.fs3_c00021{font-size:72.450000px;}
.fs2_c00021{font-size:84.000000px;}
.y0_c00021{bottom:0.000000px;}
.y81_c00021{bottom:107.730000px;}
.y80_c00021{bottom:170.655000px;}
.y7f_c00021{bottom:188.349000px;}
.y7e_c00021{bottom:188.554500px;}
.y7d_c00021{bottom:188.971500px;}
.y7c_c00021{bottom:189.211500px;}
.y7b_c00021{bottom:189.502500px;}
.y7a_c00021{bottom:189.801000px;}
.y79_c00021{bottom:190.089000px;}
.y78_c00021{bottom:190.354500px;}
.y77_c00021{bottom:190.722000px;}
.y76_c00021{bottom:190.890000px;}
.y75_c00021{bottom:209.248500px;}
.y74_c00021{bottom:209.554500px;}
.y73_c00021{bottom:210.463500px;}
.y72_c00021{bottom:210.765000px;}
.y71_c00021{bottom:211.773000px;}
.y70_c00021{bottom:212.640000px;}
.y6f_c00021{bottom:213.355500px;}
.y6e_c00021{bottom:213.976500px;}
.y6d_c00021{bottom:214.549500px;}
.y6c_c00021{bottom:215.191500px;}
.y6b_c00021{bottom:231.652500px;}
.y6a_c00021{bottom:232.194000px;}
.y69_c00021{bottom:232.431000px;}
.y68_c00021{bottom:232.567500px;}
.y67_c00021{bottom:232.723500px;}
.y66_c00021{bottom:233.196000px;}
.y65_c00021{bottom:233.416500px;}
.y64_c00021{bottom:234.132000px;}
.y63_c00021{bottom:234.468000px;}
.y62_c00021{bottom:234.967500px;}
.y61_c00021{bottom:235.233000px;}
.y60_c00021{bottom:235.512000px;}
.y5f_c00021{bottom:236.280000px;}
.y5e_c00021{bottom:236.607000px;}
.y5d_c00021{bottom:237.226500px;}
.y5c_c00021{bottom:237.330000px;}
.y5b_c00021{bottom:254.275500px;}
.y5a_c00021{bottom:255.132000px;}
.y59_c00021{bottom:255.691500px;}
.y58_c00021{bottom:255.975000px;}
.y57_c00021{bottom:256.116000px;}
.y56_c00021{bottom:256.687500px;}
.y55_c00021{bottom:256.978500px;}
.y54_c00021{bottom:257.616000px;}
.y53_c00021{bottom:257.961000px;}
.y52_c00021{bottom:258.495000px;}
.y51_c00021{bottom:258.910500px;}
.y50_c00021{bottom:259.207500px;}
.y4f_c00021{bottom:259.743000px;}
.y4e_c00021{bottom:277.090500px;}
.y4d_c00021{bottom:278.715000px;}
.y4c_c00021{bottom:279.289500px;}
.y4b_c00021{bottom:280.879500px;}
.y4a_c00021{bottom:282.015000px;}
.y49_c00021{bottom:283.470000px;}
.y48_c00021{bottom:284.110500px;}
.y47_c00021{bottom:284.520000px;}
.y46_c00021{bottom:285.756000px;}
.y45_c00021{bottom:286.300500px;}
.y44_c00021{bottom:287.571000px;}
.y43_c00021{bottom:288.487500px;}
.y42_c00021{bottom:289.267500px;}
.y41_c00021{bottom:290.529000px;}
.y40_c00021{bottom:300.697500px;}
.y3f_c00021{bottom:301.240500px;}
.y3e_c00021{bottom:301.944000px;}
.y3d_c00021{bottom:302.241000px;}
.y3c_c00021{bottom:302.440500px;}
.y3b_c00021{bottom:303.027000px;}
.y3a_c00021{bottom:303.210000px;}
.y39_c00021{bottom:303.418500px;}
.y38_c00021{bottom:303.870000px;}
.y37_c00021{bottom:304.174500px;}
.y36_c00021{bottom:304.464000px;}
.y35_c00021{bottom:305.196000px;}
.y34_c00021{bottom:305.640000px;}
.y33_c00021{bottom:323.472000px;}
.y32_c00021{bottom:347.167500px;}
.y31_c00021{bottom:347.430000px;}
.y30_c00021{bottom:347.773500px;}
.y2f_c00021{bottom:348.154500px;}
.y2e_c00021{bottom:348.373500px;}
.y2d_c00021{bottom:348.784500px;}
.y2c_c00021{bottom:349.791000px;}
.y2b_c00021{bottom:349.987500px;}
.y2a_c00021{bottom:350.295000px;}
.y29_c00021{bottom:351.355500px;}
.y28_c00021{bottom:372.495000px;}
.y27_c00021{bottom:395.668500px;}
.y26_c00021{bottom:418.107000px;}
.y25_c00021{bottom:441.073500px;}
.y24_c00021{bottom:464.499000px;}
.y23_c00021{bottom:487.242000px;}
.y22_c00021{bottom:510.634500px;}
.y21_c00021{bottom:533.611500px;}
.y20_c00021{bottom:556.803000px;}
.y1f_c00021{bottom:579.462000px;}
.y1e_c00021{bottom:602.576880px;}
.y1d_c00021{bottom:602.577552px;}
.y1c_c00021{bottom:602.578164px;}
.y1a_c00021{bottom:602.578308px;}
.y19_c00021{bottom:602.578320px;}
.y1b_c00021{bottom:602.578476px;}
.ye_c00021{bottom:621.931500px;}
.yf_c00021{bottom:622.242336px;}
.y10_c00021{bottom:622.695816px;}
.y11_c00021{bottom:622.847064px;}
.y12_c00021{bottom:623.123532px;}
.y13_c00021{bottom:623.343840px;}
.y14_c00021{bottom:624.466920px;}
.y15_c00021{bottom:624.635568px;}
.y16_c00021{bottom:624.991920px;}
.y17_c00021{bottom:625.139052px;}
.y18_c00021{bottom:625.510476px;}
.yd_c00021{bottom:648.271500px;}
.yc_c00021{bottom:671.506500px;}
.yb_c00021{bottom:693.672000px;}
.ya_c00021{bottom:719.037000px;}
.y9_c00021{bottom:743.202000px;}
.y8_c00021{bottom:766.293000px;}
.y7_c00021{bottom:788.982000px;}
.y6_c00021{bottom:812.812500px;}
.y5_c00021{bottom:835.683000px;}
.y4_c00021{bottom:858.633000px;}
.y3_c00021{bottom:898.912500px;}
.y2_c00021{bottom:927.831000px;}
.y1_c00021{bottom:961.732500px;}
.he_c00021{height:29.400000px;}
.h2_c00021{height:45.150000px;}
.ha_c00021{height:51.450000px;}
.h3_c00021{height:59.850000px;}
.hb_c00021{height:63.000000px;}
.h7_c00021{height:65.100000px;}
.h8_c00021{height:68.250000px;}
.hc_c00021{height:68.252184px;}
.h6_c00021{height:69.300000px;}
.h9_c00021{height:70.350000px;}
.hd_c00021{height:71.400000px;}
.h5_c00021{height:72.450000px;}
.h4_c00021{height:84.000000px;}
.h0_c00021{height:1086.450000px;}
.h1_c00021{height:1086.750000px;}
.w1_c00021{width:771.000000px;}
.w0_c00021{width:771.120000px;}
.x0_c00021{left:0.000000px;}
.xb9_c00021{left:126.276000px;}
.xb2_c00021{left:131.056500px;}
.xaa_c00021{left:140.296500px;}
.x50_c00021{left:141.750000px;}
.x1_c00021{left:142.830000px;}
.xba_c00021{left:147.300000px;}
.xa5_c00021{left:148.720500px;}
.x59_c00021{left:156.489000px;}
.xf_c00021{left:160.380000px;}
.x49_c00021{left:162.810000px;}
.x97_c00021{left:176.310000px;}
.x3c_c00021{left:184.950000px;}
.x8f_c00021{left:186.840000px;}
.x61_c00021{left:189.809448px;}
.x71_c00021{left:191.430000px;}
.x6a_c00021{left:192.510000px;}
.x8b_c00021{left:194.130000px;}
.x5a_c00021{left:195.343500px;}
.x10_c00021{left:196.830000px;}
.x1f_c00021{left:197.910000px;}
.x2a_c00021{left:212.490000px;}
.x2_c00021{left:214.380000px;}
.x14_c00021{left:215.460000px;}
.xb3_c00021{left:218.550000px;}
.x20_c00021{left:220.050000px;}
.x4a_c00021{left:224.640000px;}
.x82_c00021{left:227.070000px;}
.x36_c00021{left:231.120000px;}
.x90_c00021{left:233.550000px;}
.x7b_c00021{left:235.710000px;}
.x51_c00021{left:238.410000px;}
.x2b_c00021{left:246.780000px;}
.x62_c00021{left:250.021800px;}
.x21_c00021{left:251.370000px;}
.x3d_c00021{left:253.260000px;}
.x91_c00021{left:254.340000px;}
.x15_c00021{left:255.420000px;}
.x8c_c00021{left:256.770000px;}
.x52_c00021{left:260.280000px;}
.x43_c00021{left:261.900000px;}
.x29_c00021{left:263.250000px;}
.x7c_c00021{left:264.870000px;}
.xa6_c00021{left:266.364000px;}
.x5b_c00021{left:270.934500px;}
.x83_c00021{left:274.320000px;}
.x3_c00021{left:280.260000px;}
.xb4_c00021{left:282.531000px;}
.x72_c00021{left:284.850000px;}
.x16_c00021{left:286.470000px;}
.x3e_c00021{left:288.900000px;}
.x37_c00021{left:291.870000px;}
.x8d_c00021{left:294.570000px;}
.x63_c00021{left:295.923240px;}
.x86_c00021{left:298.620000px;}
.xbb_c00021{left:299.640000px;}
.x84_c00021{left:303.210000px;}
.x5c_c00021{left:305.493000px;}
.x4_c00021{left:306.720000px;}
.x2c_c00021{left:308.880000px;}
.x3f_c00021{left:310.230000px;}
.x40_c00021{left:311.850000px;}
.xab_c00021{left:316.513500px;}
.x5_c00021{left:318.060000px;}
.x22_c00021{left:319.680000px;}
.x9f_c00021{left:322.522500px;}
.x92_c00021{left:323.730000px;}
.x7d_c00021{left:324.810000px;}
.x64_c00021{left:326.973732px;}
.xa4_c00021{left:328.051500px;}
.x5d_c00021{left:333.031500px;}
.x6_c00021{left:336.150000px;}
.x23_c00021{left:339.120000px;}
.xa0_c00021{left:342.222000px;}
.x44_c00021{left:344.520000px;}
.x17_c00021{left:345.870000px;}
.xbc_c00021{left:346.950000px;}
.x6b_c00021{left:351.810000px;}
.x4b_c00021{left:354.510000px;}
.x2d_c00021{left:356.130000px;}
.x53_c00021{left:358.290000px;}
.x66_c00021{left:360.990000px;}
.x45_c00021{left:365.850000px;}
.x87_c00021{left:367.470000px;}
.xb5_c00021{left:369.529500px;}
.x73_c00021{left:371.250000px;}
.x24_c00021{left:376.650000px;}
.x18_c00021{left:378.810000px;}
.x2e_c00021{left:384.750000px;}
.x65_c00021{left:387.456108px;}
.x11_c00021{left:389.610000px;}
.x93_c00021{left:390.690000px;}
.x6c_c00021{left:392.580000px;}
.x74_c00021{left:394.740000px;}
.x7_c00021{left:397.170000px;}
.xb6_c00021{left:405.940500px;}
.x19_c00021{left:407.160000px;}
.x2f_c00021{left:408.510000px;}
.xa7_c00021{left:410.004000px;}
.x4c_c00021{left:412.560000px;}
.x46_c00021{left:414.990000px;}
.x94_c00021{left:417.150000px;}
.x7e_c00021{left:421.740000px;}
.x54_c00021{left:423.090000px;}
.x25_c00021{left:424.170000px;}
.x12_c00021{left:425.250000px;}
.x41_c00021{left:430.650000px;}
.x67_c00021{left:432.000000px;}
.xac_c00021{left:434.449500px;}
.x6d_c00021{left:437.400000px;}
.x9a_c00021{left:438.480000px;}
.x30_c00021{left:441.180000px;}
.x8_c00021{left:442.530000px;}
.x4d_c00021{left:444.420000px;}
.xaf_c00021{left:446.739000px;}
.x75_c00021{left:450.360000px;}
.x98_c00021{left:451.710000px;}
.x9_c00021{left:453.600000px;}
.x47_c00021{left:455.760000px;}
.x42_c00021{left:457.380000px;}
.x55_c00021{left:460.890000px;}
.x68_c00021{left:464.400000px;}
.x9b_c00021{left:467.100000px;}
.x6e_c00021{left:469.260000px;}
.xa_c00021{left:471.150000px;}
.x5e_c00021{left:473.416500px;}
.x88_c00021{left:476.280000px;}
.x38_c00021{left:478.440000px;}
.x1a_c00021{left:481.950000px;}
.xa1_c00021{left:484.026000px;}
.x31_c00021{left:489.510000px;}
.x76_c00021{left:491.400000px;}
.x5f_c00021{left:494.497500px;}
.x13_c00021{left:497.070000px;}
.x7f_c00021{left:501.930000px;}
.xb_c00021{left:503.010000px;}
.x95_c00021{left:505.170000px;}
.x89_c00021{left:507.330000px;}
.x85_c00021{left:508.950000px;}
.x8e_c00021{left:512.190000px;}
.x32_c00021{left:513.540000px;}
.x26_c00021{left:515.160000px;}
.xa8_c00021{left:518.302500px;}
.x69_c00021{left:521.100000px;}
.x1b_c00021{left:528.120000px;}
.x9c_c00021{left:530.280000px;}
.x39_c00021{left:537.030000px;}
.x56_c00021{left:539.730000px;}
.x4e_c00021{left:541.620000px;}
.xa2_c00021{left:543.927000px;}
.x1c_c00021{left:546.480000px;}
.x80_c00021{left:549.720000px;}
.x27_c00021{left:556.200000px;}
.x60_c00021{left:557.433000px;}
.x77_c00021{left:558.630000px;}
.x3a_c00021{left:560.790000px;}
.xc_c00021{left:565.110000px;}
.x9d_c00021{left:575.100000px;}
.xb7_c00021{left:576.555000px;}
.xa3_c00021{left:578.214000px;}
.x4f_c00021{left:579.420000px;}
.x33_c00021{left:581.040000px;}
.x57_c00021{left:582.390000px;}
.x78_c00021{left:584.010000px;}
.x48_c00021{left:588.330000px;}
.x28_c00021{left:589.950000px;}
.xb8_c00021{left:600.051000px;}
.xb0_c00021{left:602.251500px;}
.x3b_c00021{left:603.450000px;}
.x96_c00021{left:605.070000px;}
.x9e_c00021{left:607.500000px;}
.xad_c00021{left:608.682000px;}
.x1d_c00021{left:609.930000px;}
.x6f_c00021{left:612.900000px;}
.x81_c00021{left:614.790000px;}
.x79_c00021{left:617.490000px;}
.x34_c00021{left:619.650000px;}
.x99_c00021{left:623.700000px;}
.xd_c00021{left:627.210000px;}
.x1e_c00021{left:632.070000px;}
.x35_c00021{left:639.360000px;}
.x8a_c00021{left:641.250000px;}
.xa9_c00021{left:643.057500px;}
.x58_c00021{left:650.160000px;}
.x7a_c00021{left:655.020000px;}
.x70_c00021{left:657.720000px;}
.xb1_c00021{left:687.859500px;}
.xe_c00021{left:697.410000px;}
.xae_c00021{left:700.285500px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._0_c00021{width:51.087763pt;}
.fsc_c00021{font-size:26.133333pt;}
.fs0_c00021{font-size:40.133333pt;}
.fs8_c00021{font-size:45.733333pt;}
.fs1_c00021{font-size:53.200000pt;}
.fs9_c00021{font-size:56.000000pt;}
.fs5_c00021{font-size:57.866667pt;}
.fs6_c00021{font-size:60.666667pt;}
.fsa_c00021{font-size:60.668608pt;}
.fs4_c00021{font-size:61.600000pt;}
.fs7_c00021{font-size:62.533333pt;}
.fsb_c00021{font-size:63.466667pt;}
.fs3_c00021{font-size:64.400000pt;}
.fs2_c00021{font-size:74.666667pt;}
.y0_c00021{bottom:0.000000pt;}
.y81_c00021{bottom:95.760000pt;}
.y80_c00021{bottom:151.693333pt;}
.y7f_c00021{bottom:167.421333pt;}
.y7e_c00021{bottom:167.604000pt;}
.y7d_c00021{bottom:167.974667pt;}
.y7c_c00021{bottom:168.188000pt;}
.y7b_c00021{bottom:168.446667pt;}
.y7a_c00021{bottom:168.712000pt;}
.y79_c00021{bottom:168.968000pt;}
.y78_c00021{bottom:169.204000pt;}
.y77_c00021{bottom:169.530667pt;}
.y76_c00021{bottom:169.680000pt;}
.y75_c00021{bottom:185.998667pt;}
.y74_c00021{bottom:186.270667pt;}
.y73_c00021{bottom:187.078667pt;}
.y72_c00021{bottom:187.346667pt;}
.y71_c00021{bottom:188.242667pt;}
.y70_c00021{bottom:189.013333pt;}
.y6f_c00021{bottom:189.649333pt;}
.y6e_c00021{bottom:190.201333pt;}
.y6d_c00021{bottom:190.710667pt;}
.y6c_c00021{bottom:191.281333pt;}
.y6b_c00021{bottom:205.913333pt;}
.y6a_c00021{bottom:206.394667pt;}
.y69_c00021{bottom:206.605333pt;}
.y68_c00021{bottom:206.726667pt;}
.y67_c00021{bottom:206.865333pt;}
.y66_c00021{bottom:207.285333pt;}
.y65_c00021{bottom:207.481333pt;}
.y64_c00021{bottom:208.117333pt;}
.y63_c00021{bottom:208.416000pt;}
.y62_c00021{bottom:208.860000pt;}
.y61_c00021{bottom:209.096000pt;}
.y60_c00021{bottom:209.344000pt;}
.y5f_c00021{bottom:210.026667pt;}
.y5e_c00021{bottom:210.317333pt;}
.y5d_c00021{bottom:210.868000pt;}
.y5c_c00021{bottom:210.960000pt;}
.y5b_c00021{bottom:226.022667pt;}
.y5a_c00021{bottom:226.784000pt;}
.y59_c00021{bottom:227.281333pt;}
.y58_c00021{bottom:227.533333pt;}
.y57_c00021{bottom:227.658667pt;}
.y56_c00021{bottom:228.166667pt;}
.y55_c00021{bottom:228.425333pt;}
.y54_c00021{bottom:228.992000pt;}
.y53_c00021{bottom:229.298667pt;}
.y52_c00021{bottom:229.773333pt;}
.y51_c00021{bottom:230.142667pt;}
.y50_c00021{bottom:230.406667pt;}
.y4f_c00021{bottom:230.882667pt;}
.y4e_c00021{bottom:246.302667pt;}
.y4d_c00021{bottom:247.746667pt;}
.y4c_c00021{bottom:248.257333pt;}
.y4b_c00021{bottom:249.670667pt;}
.y4a_c00021{bottom:250.680000pt;}
.y49_c00021{bottom:251.973333pt;}
.y48_c00021{bottom:252.542667pt;}
.y47_c00021{bottom:252.906667pt;}
.y46_c00021{bottom:254.005333pt;}
.y45_c00021{bottom:254.489333pt;}
.y44_c00021{bottom:255.618667pt;}
.y43_c00021{bottom:256.433333pt;}
.y42_c00021{bottom:257.126667pt;}
.y41_c00021{bottom:258.248000pt;}
.y40_c00021{bottom:267.286667pt;}
.y3f_c00021{bottom:267.769333pt;}
.y3e_c00021{bottom:268.394667pt;}
.y3d_c00021{bottom:268.658667pt;}
.y3c_c00021{bottom:268.836000pt;}
.y3b_c00021{bottom:269.357333pt;}
.y3a_c00021{bottom:269.520000pt;}
.y39_c00021{bottom:269.705333pt;}
.y38_c00021{bottom:270.106667pt;}
.y37_c00021{bottom:270.377333pt;}
.y36_c00021{bottom:270.634667pt;}
.y35_c00021{bottom:271.285333pt;}
.y34_c00021{bottom:271.680000pt;}
.y33_c00021{bottom:287.530667pt;}
.y32_c00021{bottom:308.593333pt;}
.y31_c00021{bottom:308.826667pt;}
.y30_c00021{bottom:309.132000pt;}
.y2f_c00021{bottom:309.470667pt;}
.y2e_c00021{bottom:309.665333pt;}
.y2d_c00021{bottom:310.030667pt;}
.y2c_c00021{bottom:310.925333pt;}
.y2b_c00021{bottom:311.100000pt;}
.y2a_c00021{bottom:311.373333pt;}
.y29_c00021{bottom:312.316000pt;}
.y28_c00021{bottom:331.106667pt;}
.y27_c00021{bottom:351.705333pt;}
.y26_c00021{bottom:371.650667pt;}
.y25_c00021{bottom:392.065333pt;}
.y24_c00021{bottom:412.888000pt;}
.y23_c00021{bottom:433.104000pt;}
.y22_c00021{bottom:453.897333pt;}
.y21_c00021{bottom:474.321333pt;}
.y20_c00021{bottom:494.936000pt;}
.y1f_c00021{bottom:515.077333pt;}
.y1e_c00021{bottom:535.623893pt;}
.y1d_c00021{bottom:535.624491pt;}
.y1c_c00021{bottom:535.625035pt;}
.y1a_c00021{bottom:535.625163pt;}
.y19_c00021{bottom:535.625173pt;}
.y1b_c00021{bottom:535.625312pt;}
.ye_c00021{bottom:552.828000pt;}
.yf_c00021{bottom:553.104299pt;}
.y10_c00021{bottom:553.507392pt;}
.y11_c00021{bottom:553.641835pt;}
.y12_c00021{bottom:553.887584pt;}
.y13_c00021{bottom:554.083413pt;}
.y14_c00021{bottom:555.081707pt;}
.y15_c00021{bottom:555.231616pt;}
.y16_c00021{bottom:555.548373pt;}
.y17_c00021{bottom:555.679157pt;}
.y18_c00021{bottom:556.009312pt;}
.yd_c00021{bottom:576.241333pt;}
.yc_c00021{bottom:596.894667pt;}
.yb_c00021{bottom:616.597333pt;}
.ya_c00021{bottom:639.144000pt;}
.y9_c00021{bottom:660.624000pt;}
.y8_c00021{bottom:681.149333pt;}
.y7_c00021{bottom:701.317333pt;}
.y6_c00021{bottom:722.500000pt;}
.y5_c00021{bottom:742.829333pt;}
.y4_c00021{bottom:763.229333pt;}
.y3_c00021{bottom:799.033333pt;}
.y2_c00021{bottom:824.738667pt;}
.y1_c00021{bottom:854.873333pt;}
.he_c00021{height:26.133333pt;}
.h2_c00021{height:40.133333pt;}
.ha_c00021{height:45.733333pt;}
.h3_c00021{height:53.200000pt;}
.hb_c00021{height:56.000000pt;}
.h7_c00021{height:57.866667pt;}
.h8_c00021{height:60.666667pt;}
.hc_c00021{height:60.668608pt;}
.h6_c00021{height:61.600000pt;}
.h9_c00021{height:62.533333pt;}
.hd_c00021{height:63.466667pt;}
.h5_c00021{height:64.400000pt;}
.h4_c00021{height:74.666667pt;}
.h0_c00021{height:965.733333pt;}
.h1_c00021{height:966.000000pt;}
.w1_c00021{width:685.333333pt;}
.w0_c00021{width:685.440000pt;}
.x0_c00021{left:0.000000pt;}
.xb9_c00021{left:112.245333pt;}
.xb2_c00021{left:116.494667pt;}
.xaa_c00021{left:124.708000pt;}
.x50_c00021{left:126.000000pt;}
.x1_c00021{left:126.960000pt;}
.xba_c00021{left:130.933333pt;}
.xa5_c00021{left:132.196000pt;}
.x59_c00021{left:139.101333pt;}
.xf_c00021{left:142.560000pt;}
.x49_c00021{left:144.720000pt;}
.x97_c00021{left:156.720000pt;}
.x3c_c00021{left:164.400000pt;}
.x8f_c00021{left:166.080000pt;}
.x61_c00021{left:168.719509pt;}
.x71_c00021{left:170.160000pt;}
.x6a_c00021{left:171.120000pt;}
.x8b_c00021{left:172.560000pt;}
.x5a_c00021{left:173.638667pt;}
.x10_c00021{left:174.960000pt;}
.x1f_c00021{left:175.920000pt;}
.x2a_c00021{left:188.880000pt;}
.x2_c00021{left:190.560000pt;}
.x14_c00021{left:191.520000pt;}
.xb3_c00021{left:194.266667pt;}
.x20_c00021{left:195.600000pt;}
.x4a_c00021{left:199.680000pt;}
.x82_c00021{left:201.840000pt;}
.x36_c00021{left:205.440000pt;}
.x90_c00021{left:207.600000pt;}
.x7b_c00021{left:209.520000pt;}
.x51_c00021{left:211.920000pt;}
.x2b_c00021{left:219.360000pt;}
.x62_c00021{left:222.241600pt;}
.x21_c00021{left:223.440000pt;}
.x3d_c00021{left:225.120000pt;}
.x91_c00021{left:226.080000pt;}
.x15_c00021{left:227.040000pt;}
.x8c_c00021{left:228.240000pt;}
.x52_c00021{left:231.360000pt;}
.x43_c00021{left:232.800000pt;}
.x29_c00021{left:234.000000pt;}
.x7c_c00021{left:235.440000pt;}
.xa6_c00021{left:236.768000pt;}
.x5b_c00021{left:240.830667pt;}
.x83_c00021{left:243.840000pt;}
.x3_c00021{left:249.120000pt;}
.xb4_c00021{left:251.138667pt;}
.x72_c00021{left:253.200000pt;}
.x16_c00021{left:254.640000pt;}
.x3e_c00021{left:256.800000pt;}
.x37_c00021{left:259.440000pt;}
.x8d_c00021{left:261.840000pt;}
.x63_c00021{left:263.042880pt;}
.x86_c00021{left:265.440000pt;}
.xbb_c00021{left:266.346667pt;}
.x84_c00021{left:269.520000pt;}
.x5c_c00021{left:271.549333pt;}
.x4_c00021{left:272.640000pt;}
.x2c_c00021{left:274.560000pt;}
.x3f_c00021{left:275.760000pt;}
.x40_c00021{left:277.200000pt;}
.xab_c00021{left:281.345333pt;}
.x5_c00021{left:282.720000pt;}
.x22_c00021{left:284.160000pt;}
.x9f_c00021{left:286.686667pt;}
.x92_c00021{left:287.760000pt;}
.x7d_c00021{left:288.720000pt;}
.x64_c00021{left:290.643317pt;}
.xa4_c00021{left:291.601333pt;}
.x5d_c00021{left:296.028000pt;}
.x6_c00021{left:298.800000pt;}
.x23_c00021{left:301.440000pt;}
.xa0_c00021{left:304.197333pt;}
.x44_c00021{left:306.240000pt;}
.x17_c00021{left:307.440000pt;}
.xbc_c00021{left:308.400000pt;}
.x6b_c00021{left:312.720000pt;}
.x4b_c00021{left:315.120000pt;}
.x2d_c00021{left:316.560000pt;}
.x53_c00021{left:318.480000pt;}
.x66_c00021{left:320.880000pt;}
.x45_c00021{left:325.200000pt;}
.x87_c00021{left:326.640000pt;}
.xb5_c00021{left:328.470667pt;}
.x73_c00021{left:330.000000pt;}
.x24_c00021{left:334.800000pt;}
.x18_c00021{left:336.720000pt;}
.x2e_c00021{left:342.000000pt;}
.x65_c00021{left:344.405429pt;}
.x11_c00021{left:346.320000pt;}
.x93_c00021{left:347.280000pt;}
.x6c_c00021{left:348.960000pt;}
.x74_c00021{left:350.880000pt;}
.x7_c00021{left:353.040000pt;}
.xb6_c00021{left:360.836000pt;}
.x19_c00021{left:361.920000pt;}
.x2f_c00021{left:363.120000pt;}
.xa7_c00021{left:364.448000pt;}
.x4c_c00021{left:366.720000pt;}
.x46_c00021{left:368.880000pt;}
.x94_c00021{left:370.800000pt;}
.x7e_c00021{left:374.880000pt;}
.x54_c00021{left:376.080000pt;}
.x25_c00021{left:377.040000pt;}
.x12_c00021{left:378.000000pt;}
.x41_c00021{left:382.800000pt;}
.x67_c00021{left:384.000000pt;}
.xac_c00021{left:386.177333pt;}
.x6d_c00021{left:388.800000pt;}
.x9a_c00021{left:389.760000pt;}
.x30_c00021{left:392.160000pt;}
.x8_c00021{left:393.360000pt;}
.x4d_c00021{left:395.040000pt;}
.xaf_c00021{left:397.101333pt;}
.x75_c00021{left:400.320000pt;}
.x98_c00021{left:401.520000pt;}
.x9_c00021{left:403.200000pt;}
.x47_c00021{left:405.120000pt;}
.x42_c00021{left:406.560000pt;}
.x55_c00021{left:409.680000pt;}
.x68_c00021{left:412.800000pt;}
.x9b_c00021{left:415.200000pt;}
.x6e_c00021{left:417.120000pt;}
.xa_c00021{left:418.800000pt;}
.x5e_c00021{left:420.814667pt;}
.x88_c00021{left:423.360000pt;}
.x38_c00021{left:425.280000pt;}
.x1a_c00021{left:428.400000pt;}
.xa1_c00021{left:430.245333pt;}
.x31_c00021{left:435.120000pt;}
.x76_c00021{left:436.800000pt;}
.x5f_c00021{left:439.553333pt;}
.x13_c00021{left:441.840000pt;}
.x7f_c00021{left:446.160000pt;}
.xb_c00021{left:447.120000pt;}
.x95_c00021{left:449.040000pt;}
.x89_c00021{left:450.960000pt;}
.x85_c00021{left:452.400000pt;}
.x8e_c00021{left:455.280000pt;}
.x32_c00021{left:456.480000pt;}
.x26_c00021{left:457.920000pt;}
.xa8_c00021{left:460.713333pt;}
.x69_c00021{left:463.200000pt;}
.x1b_c00021{left:469.440000pt;}
.x9c_c00021{left:471.360000pt;}
.x39_c00021{left:477.360000pt;}
.x56_c00021{left:479.760000pt;}
.x4e_c00021{left:481.440000pt;}
.xa2_c00021{left:483.490667pt;}
.x1c_c00021{left:485.760000pt;}
.x80_c00021{left:488.640000pt;}
.x27_c00021{left:494.400000pt;}
.x60_c00021{left:495.496000pt;}
.x77_c00021{left:496.560000pt;}
.x3a_c00021{left:498.480000pt;}
.xc_c00021{left:502.320000pt;}
.x9d_c00021{left:511.200000pt;}
.xb7_c00021{left:512.493333pt;}
.xa3_c00021{left:513.968000pt;}
.x4f_c00021{left:515.040000pt;}
.x33_c00021{left:516.480000pt;}
.x57_c00021{left:517.680000pt;}
.x78_c00021{left:519.120000pt;}
.x48_c00021{left:522.960000pt;}
.x28_c00021{left:524.400000pt;}
.xb8_c00021{left:533.378667pt;}
.xb0_c00021{left:535.334667pt;}
.x3b_c00021{left:536.400000pt;}
.x96_c00021{left:537.840000pt;}
.x9e_c00021{left:540.000000pt;}
.xad_c00021{left:541.050667pt;}
.x1d_c00021{left:542.160000pt;}
.x6f_c00021{left:544.800000pt;}
.x81_c00021{left:546.480000pt;}
.x79_c00021{left:548.880000pt;}
.x34_c00021{left:550.800000pt;}
.x99_c00021{left:554.400000pt;}
.xd_c00021{left:557.520000pt;}
.x1e_c00021{left:561.840000pt;}
.x35_c00021{left:568.320000pt;}
.x8a_c00021{left:570.000000pt;}
.xa9_c00021{left:571.606667pt;}
.x58_c00021{left:577.920000pt;}
.x7a_c00021{left:582.240000pt;}
.x70_c00021{left:584.640000pt;}
.xb1_c00021{left:611.430667pt;}
.xe_c00021{left:619.920000pt;}
.xae_c00021{left:622.476000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m141_c00022{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);}
.m8e_c00022{transform:matrix(0.098925,-0.000989,0.002500,0.249988,0,0);-ms-transform:matrix(0.098925,-0.000989,0.002500,0.249988,0,0);-webkit-transform:matrix(0.098925,-0.000989,0.002500,0.249988,0,0);}
.m8b_c00022{transform:matrix(0.105860,-0.001059,0.002500,0.249988,0,0);-ms-transform:matrix(0.105860,-0.001059,0.002500,0.249988,0,0);-webkit-transform:matrix(0.105860,-0.001059,0.002500,0.249988,0,0);}
.m28_c00022{transform:matrix(0.125034,-0.001250,0.002500,0.249988,0,0);-ms-transform:matrix(0.125034,-0.001250,0.002500,0.249988,0,0);-webkit-transform:matrix(0.125034,-0.001250,0.002500,0.249988,0,0);}
.m31_c00022{transform:matrix(0.141888,-0.001419,0.002500,0.249988,0,0);-ms-transform:matrix(0.141888,-0.001419,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141888,-0.001419,0.002500,0.249988,0,0);}
.m1a_c00022{transform:matrix(0.144313,-0.001443,0.002500,0.249988,0,0);-ms-transform:matrix(0.144313,-0.001443,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144313,-0.001443,0.002500,0.249988,0,0);}
.m2f_c00022{transform:matrix(0.144713,-0.001447,0.002500,0.249988,0,0);-ms-transform:matrix(0.144713,-0.001447,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144713,-0.001447,0.002500,0.249988,0,0);}
.m22_c00022{transform:matrix(0.144768,-0.001448,0.002500,0.249988,0,0);-ms-transform:matrix(0.144768,-0.001448,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144768,-0.001448,0.002500,0.249988,0,0);}
.mf3_c00022{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);}
.ma8_c00022{transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);-ms-transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);}
.m7_c00022{transform:matrix(0.148250,-0.001186,0.002000,0.249992,0,0);-ms-transform:matrix(0.148250,-0.001186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148250,-0.001186,0.002000,0.249992,0,0);}
.m16_c00022{transform:matrix(0.148283,-0.001483,0.002500,0.249988,0,0);-ms-transform:matrix(0.148283,-0.001483,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148283,-0.001483,0.002500,0.249988,0,0);}
.m50_c00022{transform:matrix(0.149673,-0.001497,0.002500,0.249988,0,0);-ms-transform:matrix(0.149673,-0.001497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149673,-0.001497,0.002500,0.249988,0,0);}
.mba_c00022{transform:matrix(0.149743,-0.001497,0.002500,0.249988,0,0);-ms-transform:matrix(0.149743,-0.001497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149743,-0.001497,0.002500,0.249988,0,0);}
.md4_c00022{transform:matrix(0.150137,-0.001501,0.002500,0.249988,0,0);-ms-transform:matrix(0.150137,-0.001501,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150137,-0.001501,0.002500,0.249988,0,0);}
.m23_c00022{transform:matrix(0.151782,-0.001518,0.002500,0.249988,0,0);-ms-transform:matrix(0.151782,-0.001518,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151782,-0.001518,0.002500,0.249988,0,0);}
.m5b_c00022{transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-ms-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);}
.mb2_c00022{transform:matrix(0.152297,-0.001523,0.002500,0.249988,0,0);-ms-transform:matrix(0.152297,-0.001523,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152297,-0.001523,0.002500,0.249988,0,0);}
.m43_c00022{transform:matrix(0.152367,-0.001524,0.002500,0.249988,0,0);-ms-transform:matrix(0.152367,-0.001524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152367,-0.001524,0.002500,0.249988,0,0);}
.mc8_c00022{transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);-ms-transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);}
.m103_c00022{transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);}
.m126_c00022{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);}
.mf2_c00022{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);}
.m4f_c00022{transform:matrix(0.154902,-0.001549,0.002500,0.249988,0,0);-ms-transform:matrix(0.154902,-0.001549,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154902,-0.001549,0.002500,0.249988,0,0);}
.ma1_c00022{transform:matrix(0.155042,-0.001550,0.002500,0.249988,0,0);-ms-transform:matrix(0.155042,-0.001550,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155042,-0.001550,0.002500,0.249988,0,0);}
.mcf_c00022{transform:matrix(0.155367,-0.001554,0.002500,0.249988,0,0);-ms-transform:matrix(0.155367,-0.001554,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155367,-0.001554,0.002500,0.249988,0,0);}
.m2a_c00022{transform:matrix(0.155767,-0.001558,0.002500,0.249988,0,0);-ms-transform:matrix(0.155767,-0.001558,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155767,-0.001558,0.002500,0.249988,0,0);}
.m11f_c00022{transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);}
.mcb_c00022{transform:matrix(0.156102,-0.001561,0.002500,0.249988,0,0);-ms-transform:matrix(0.156102,-0.001561,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156102,-0.001561,0.002500,0.249988,0,0);}
.maa_c00022{transform:matrix(0.156527,-0.001565,0.002500,0.249988,0,0);-ms-transform:matrix(0.156527,-0.001565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156527,-0.001565,0.002500,0.249988,0,0);}
.mab_c00022{transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);-ms-transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);}
.m76_c00022{transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);}
.m39_c00022{transform:matrix(0.158562,-0.001586,0.002500,0.249988,0,0);-ms-transform:matrix(0.158562,-0.001586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158562,-0.001586,0.002500,0.249988,0,0);}
.mbb_c00022{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);}
.m1b_c00022{transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);-ms-transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);}
.m55_c00022{transform:matrix(0.159167,-0.001592,0.002500,0.249988,0,0);-ms-transform:matrix(0.159167,-0.001592,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159167,-0.001592,0.002500,0.249988,0,0);}
.mac_c00022{transform:matrix(0.159717,-0.001597,0.002500,0.249988,0,0);-ms-transform:matrix(0.159717,-0.001597,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159717,-0.001597,0.002500,0.249988,0,0);}
.m40_c00022{transform:matrix(0.159862,-0.001599,0.002500,0.249988,0,0);-ms-transform:matrix(0.159862,-0.001599,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159862,-0.001599,0.002500,0.249988,0,0);}
.meb_c00022{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);}
.m71_c00022{transform:matrix(0.160792,-0.001608,0.002500,0.249988,0,0);-ms-transform:matrix(0.160792,-0.001608,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160792,-0.001608,0.002500,0.249988,0,0);}
.m34_c00022{transform:matrix(0.161002,-0.001610,0.002500,0.249988,0,0);-ms-transform:matrix(0.161002,-0.001610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161002,-0.001610,0.002500,0.249988,0,0);}
.m3c_c00022{transform:matrix(0.161267,-0.001613,0.002500,0.249988,0,0);-ms-transform:matrix(0.161267,-0.001613,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161267,-0.001613,0.002500,0.249988,0,0);}
.m108_c00022{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);}
.mb6_c00022{transform:matrix(0.162642,-0.001626,0.002500,0.249988,0,0);-ms-transform:matrix(0.162642,-0.001626,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162642,-0.001626,0.002500,0.249988,0,0);}
.m30_c00022{transform:matrix(0.162852,-0.001629,0.002500,0.249988,0,0);-ms-transform:matrix(0.162852,-0.001629,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162852,-0.001629,0.002500,0.249988,0,0);}
.mb_c00022{transform:matrix(0.164150,-0.001313,0.002000,0.249992,0,0);-ms-transform:matrix(0.164150,-0.001313,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164150,-0.001313,0.002000,0.249992,0,0);}
.mc_c00022{transform:matrix(0.164635,-0.001317,0.002000,0.249992,0,0);-ms-transform:matrix(0.164635,-0.001317,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164635,-0.001317,0.002000,0.249992,0,0);}
.mf5_c00022{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);}
.m9_c00022{transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);}
.me8_c00022{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);}
.m124_c00022{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);}
.m1e_c00022{transform:matrix(0.166187,-0.001662,0.002500,0.249988,0,0);-ms-transform:matrix(0.166187,-0.001662,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166187,-0.001662,0.002500,0.249988,0,0);}
.m14_c00022{transform:matrix(0.166422,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166422,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166422,-0.001664,0.002500,0.249988,0,0);}
.mcc_c00022{transform:matrix(0.166427,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166427,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166427,-0.001664,0.002500,0.249988,0,0);}
.m20_c00022{transform:matrix(0.166477,-0.001665,0.002500,0.249988,0,0);-ms-transform:matrix(0.166477,-0.001665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166477,-0.001665,0.002500,0.249988,0,0);}
.m106_c00022{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);}
.m96_c00022{transform:matrix(0.166522,-0.001665,0.002500,0.249988,0,0);-ms-transform:matrix(0.166522,-0.001665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166522,-0.001665,0.002500,0.249988,0,0);}
.m13_c00022{transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);-ms-transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);}
.m52_c00022{transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);-ms-transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);}
.md3_c00022{transform:matrix(0.166907,-0.001669,0.002500,0.249988,0,0);-ms-transform:matrix(0.166907,-0.001669,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166907,-0.001669,0.002500,0.249988,0,0);}
.m2c_c00022{transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);-ms-transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);}
.mc5_c00022{transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);-ms-transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);}
.mda_c00022{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);}
.m12_c00022{transform:matrix(0.168522,-0.001685,0.002500,0.249988,0,0);-ms-transform:matrix(0.168522,-0.001685,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168522,-0.001685,0.002500,0.249988,0,0);}
.m11_c00022{transform:matrix(0.168752,-0.001688,0.002500,0.249988,0,0);-ms-transform:matrix(0.168752,-0.001688,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168752,-0.001688,0.002500,0.249988,0,0);}
.m6b_c00022{transform:matrix(0.169007,-0.001690,0.002500,0.249988,0,0);-ms-transform:matrix(0.169007,-0.001690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169007,-0.001690,0.002500,0.249988,0,0);}
.m102_c00022{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);}
.m12d_c00022{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);}
.mbf_c00022{transform:matrix(0.169537,-0.001695,0.002500,0.249988,0,0);-ms-transform:matrix(0.169537,-0.001695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169537,-0.001695,0.002500,0.249988,0,0);}
.m18_c00022{transform:matrix(0.169802,-0.001698,0.002500,0.249988,0,0);-ms-transform:matrix(0.169802,-0.001698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169802,-0.001698,0.002500,0.249988,0,0);}
.mc9_c00022{transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);-ms-transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);}
.m10_c00022{transform:matrix(0.170325,-0.001363,0.002000,0.249992,0,0);-ms-transform:matrix(0.170325,-0.001363,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170325,-0.001363,0.002000,0.249992,0,0);}
.mcd_c00022{transform:matrix(0.170366,-0.001704,0.002500,0.249988,0,0);-ms-transform:matrix(0.170366,-0.001704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170366,-0.001704,0.002500,0.249988,0,0);}
.m8_c00022{transform:matrix(0.170390,-0.001363,0.002000,0.249992,0,0);-ms-transform:matrix(0.170390,-0.001363,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170390,-0.001363,0.002000,0.249992,0,0);}
.mad_c00022{transform:matrix(0.170861,-0.001709,0.002500,0.249988,0,0);-ms-transform:matrix(0.170861,-0.001709,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170861,-0.001709,0.002500,0.249988,0,0);}
.md_c00022{transform:matrix(0.170965,-0.001368,0.002000,0.249992,0,0);-ms-transform:matrix(0.170965,-0.001368,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170965,-0.001368,0.002000,0.249992,0,0);}
.m35_c00022{transform:matrix(0.171466,-0.001715,0.002500,0.249988,0,0);-ms-transform:matrix(0.171466,-0.001715,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171466,-0.001715,0.002500,0.249988,0,0);}
.m48_c00022{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);}
.m47_c00022{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);}
.me2_c00022{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);}
.m101_c00022{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);}
.m26_c00022{transform:matrix(0.173156,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173156,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173156,-0.001732,0.002500,0.249988,0,0);}
.m61_c00022{transform:matrix(0.173426,-0.001734,0.002500,0.249988,0,0);-ms-transform:matrix(0.173426,-0.001734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173426,-0.001734,0.002500,0.249988,0,0);}
.m127_c00022{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);}
.m122_c00022{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);}
.m9f_c00022{transform:matrix(0.173801,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173801,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173801,-0.001738,0.002500,0.249988,0,0);}
.m9b_c00022{transform:matrix(0.174061,-0.001741,0.002500,0.249988,0,0);-ms-transform:matrix(0.174061,-0.001741,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174061,-0.001741,0.002500,0.249988,0,0);}
.m120_c00022{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);}
.md1_c00022{transform:matrix(0.174421,-0.001744,0.002500,0.249988,0,0);-ms-transform:matrix(0.174421,-0.001744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174421,-0.001744,0.002500,0.249988,0,0);}
.me_c00022{transform:matrix(0.174479,-0.001396,0.002000,0.249992,0,0);-ms-transform:matrix(0.174479,-0.001396,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174479,-0.001396,0.002000,0.249992,0,0);}
.mde_c00022{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);}
.mbd_c00022{transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);-ms-transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);}
.m65_c00022{transform:matrix(0.175421,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175421,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175421,-0.001754,0.002500,0.249988,0,0);}
.m113_c00022{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);}
.m67_c00022{transform:matrix(0.175761,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175761,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175761,-0.001758,0.002500,0.249988,0,0);}
.m9e_c00022{transform:matrix(0.175911,-0.001759,0.002500,0.249988,0,0);-ms-transform:matrix(0.175911,-0.001759,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175911,-0.001759,0.002500,0.249988,0,0);}
.me6_c00022{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);}
.ma0_c00022{transform:matrix(0.176386,-0.001764,0.002500,0.249988,0,0);-ms-transform:matrix(0.176386,-0.001764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176386,-0.001764,0.002500,0.249988,0,0);}
.m10b_c00022{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);}
.m133_c00022{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);}
.mc0_c00022{transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);}
.mae_c00022{transform:matrix(0.177021,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.177021,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177021,-0.001770,0.002500,0.249988,0,0);}
.m100_c00022{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);}
.m77_c00022{transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);}
.m12b_c00022{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);}
.m5d_c00022{transform:matrix(0.178366,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178366,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178366,-0.001784,0.002500,0.249988,0,0);}
.m57_c00022{transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);}
.m90_c00022{transform:matrix(0.178806,-0.001788,0.002500,0.249988,0,0);-ms-transform:matrix(0.178806,-0.001788,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178806,-0.001788,0.002500,0.249988,0,0);}
.mf6_c00022{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);}
.m24_c00022{transform:matrix(0.179141,-0.001791,0.002500,0.249988,0,0);-ms-transform:matrix(0.179141,-0.001791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179141,-0.001791,0.002500,0.249988,0,0);}
.m33_c00022{transform:matrix(0.179176,-0.001792,0.002500,0.249988,0,0);-ms-transform:matrix(0.179176,-0.001792,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179176,-0.001792,0.002500,0.249988,0,0);}
.mb0_c00022{transform:matrix(0.179526,-0.001795,0.002500,0.249988,0,0);-ms-transform:matrix(0.179526,-0.001795,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179526,-0.001795,0.002500,0.249988,0,0);}
.m51_c00022{transform:matrix(0.179641,-0.001796,0.002500,0.249988,0,0);-ms-transform:matrix(0.179641,-0.001796,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179641,-0.001796,0.002500,0.249988,0,0);}
.m46_c00022{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);}
.m6_c00022{transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);-ms-transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);}
.md0_c00022{transform:matrix(0.179926,-0.001799,0.002500,0.249988,0,0);-ms-transform:matrix(0.179926,-0.001799,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179926,-0.001799,0.002500,0.249988,0,0);}
.m56_c00022{transform:matrix(0.180011,-0.001800,0.002500,0.249988,0,0);-ms-transform:matrix(0.180011,-0.001800,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180011,-0.001800,0.002500,0.249988,0,0);}
.m3_c00022{transform:matrix(0.180049,-0.001440,0.002000,0.249992,0,0);-ms-transform:matrix(0.180049,-0.001440,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180049,-0.001440,0.002000,0.249992,0,0);}
.m6f_c00022{transform:matrix(0.180061,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180061,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180061,-0.001801,0.002500,0.249988,0,0);}
.m93_c00022{transform:matrix(0.180096,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180096,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180096,-0.001801,0.002500,0.249988,0,0);}
.mb4_c00022{transform:matrix(0.180461,-0.001805,0.002500,0.249988,0,0);-ms-transform:matrix(0.180461,-0.001805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180461,-0.001805,0.002500,0.249988,0,0);}
.m4c_c00022{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);}
.me0_c00022{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);}
.m83_c00022{transform:matrix(0.181066,-0.001811,0.002500,0.249988,0,0);-ms-transform:matrix(0.181066,-0.001811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181066,-0.001811,0.002500,0.249988,0,0);}
.m32_c00022{transform:matrix(0.181106,-0.001811,0.002500,0.249988,0,0);-ms-transform:matrix(0.181106,-0.001811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181106,-0.001811,0.002500,0.249988,0,0);}
.m121_c00022{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_c00022{transform:matrix(0.181506,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181506,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181506,-0.001815,0.002500,0.249988,0,0);}
.m49_c00022{transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);-ms-transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);}
.m12a_c00022{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);}
.m2b_c00022{transform:matrix(0.181756,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181756,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181756,-0.001818,0.002500,0.249988,0,0);}
.m38_c00022{transform:matrix(0.182216,-0.001822,0.002500,0.249988,0,0);-ms-transform:matrix(0.182216,-0.001822,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182216,-0.001822,0.002500,0.249988,0,0);}
.m119_c00022{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);}
.m116_c00022{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);}
.m84_c00022{transform:matrix(0.182386,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182386,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182386,-0.001824,0.002500,0.249988,0,0);}
.m8f_c00022{transform:matrix(0.182706,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182706,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182706,-0.001827,0.002500,0.249988,0,0);}
.m117_c00022{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);}
.m4d_c00022{transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);}
.m64_c00022{transform:matrix(0.183171,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183171,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183171,-0.001832,0.002500,0.249988,0,0);}
.ma4_c00022{transform:matrix(0.183431,-0.001834,0.002500,0.249988,0,0);-ms-transform:matrix(0.183431,-0.001834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183431,-0.001834,0.002500,0.249988,0,0);}
.mc1_c00022{transform:matrix(0.183746,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183746,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183746,-0.001837,0.002500,0.249988,0,0);}
.m66_c00022{transform:matrix(0.183816,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183816,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183816,-0.001838,0.002500,0.249988,0,0);}
.mb5_c00022{transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);-ms-transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);}
.m2e_c00022{transform:matrix(0.184596,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184596,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184596,-0.001846,0.002500,0.249988,0,0);}
.mc7_c00022{transform:matrix(0.184601,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184601,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184601,-0.001846,0.002500,0.249988,0,0);}
.maf_c00022{transform:matrix(0.184791,-0.001848,0.002500,0.249988,0,0);-ms-transform:matrix(0.184791,-0.001848,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184791,-0.001848,0.002500,0.249988,0,0);}
.m125_c00022{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);}
.m134_c00022{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);}
.mb7_c00022{transform:matrix(0.185126,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185126,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185126,-0.001851,0.002500,0.249988,0,0);}
.mea_c00022{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);}
.m27_c00022{transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);-ms-transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);}
.m5a_c00022{transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);-ms-transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);}
.m21_c00022{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);}
.m3f_c00022{transform:matrix(0.186456,-0.001865,0.002500,0.249988,0,0);-ms-transform:matrix(0.186456,-0.001865,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186456,-0.001865,0.002500,0.249988,0,0);}
.md2_c00022{transform:matrix(0.186671,-0.001867,0.002500,0.249988,0,0);-ms-transform:matrix(0.186671,-0.001867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186671,-0.001867,0.002500,0.249988,0,0);}
.m60_c00022{transform:matrix(0.186786,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186786,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186786,-0.001868,0.002500,0.249988,0,0);}
.m91_c00022{transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);}
.m10c_c00022{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);}
.mff_c00022{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);}
.m2_c00022{transform:matrix(0.187439,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187439,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187439,-0.001500,0.002000,0.249992,0,0);}
.m19_c00022{transform:matrix(0.187521,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187521,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187521,-0.001875,0.002500,0.249988,0,0);}
.m5c_c00022{transform:matrix(0.187621,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187621,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187621,-0.001876,0.002500,0.249988,0,0);}
.m129_c00022{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);}
.m10e_c00022{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);}
.m63_c00022{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);}
.m97_c00022{transform:matrix(0.188611,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188611,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188611,-0.001886,0.002500,0.249988,0,0);}
.mb1_c00022{transform:matrix(0.188746,-0.001887,0.002500,0.249988,0,0);-ms-transform:matrix(0.188746,-0.001887,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188746,-0.001887,0.002500,0.249988,0,0);}
.mca_c00022{transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);}
.m59_c00022{transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);}
.m12f_c00022{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);}
.ma7_c00022{transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);}
.m94_c00022{transform:matrix(0.189111,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189111,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189111,-0.001891,0.002500,0.249988,0,0);}
.m10f_c00022{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);}
.m9a_c00022{transform:matrix(0.189231,-0.001892,0.002500,0.249988,0,0);-ms-transform:matrix(0.189231,-0.001892,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189231,-0.001892,0.002500,0.249988,0,0);}
.m1c_c00022{transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);}
.ma_c00022{transform:matrix(0.189254,-0.001514,0.002000,0.249992,0,0);-ms-transform:matrix(0.189254,-0.001514,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189254,-0.001514,0.002000,0.249992,0,0);}
.mbe_c00022{transform:matrix(0.189306,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189306,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189306,-0.001893,0.002500,0.249988,0,0);}
.m54_c00022{transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);}
.mc6_c00022{transform:matrix(0.189481,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189481,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189481,-0.001895,0.002500,0.249988,0,0);}
.m42_c00022{transform:matrix(0.189676,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189676,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189676,-0.001897,0.002500,0.249988,0,0);}
.m11a_c00022{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);}
.mc4_c00022{transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);}
.m53_c00022{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);}
.m123_c00022{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);}
.m6a_c00022{transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-ms-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);}
.m92_c00022{transform:matrix(0.191030,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.191030,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191030,-0.001910,0.002500,0.249988,0,0);}
.ma9_c00022{transform:matrix(0.191180,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191180,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191180,-0.001912,0.002500,0.249988,0,0);}
.m5_c00022{transform:matrix(0.191184,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191184,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191184,-0.001529,0.002000,0.249992,0,0);}
.m115_c00022{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);}
.m135_c00022{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);}
.mbc_c00022{transform:matrix(0.192295,-0.001923,0.002500,0.249988,0,0);-ms-transform:matrix(0.192295,-0.001923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192295,-0.001923,0.002500,0.249988,0,0);}
.m2d_c00022{transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);}
.m109_c00022{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);}
.m74_c00022{transform:matrix(0.192515,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192515,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192515,-0.001925,0.002500,0.249988,0,0);}
.me3_c00022{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);}
.m6e_c00022{transform:matrix(0.192660,-0.001927,0.002500,0.249988,0,0);-ms-transform:matrix(0.192660,-0.001927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192660,-0.001927,0.002500,0.249988,0,0);}
.me5_c00022{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_c00022{transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);}
.ma5_c00022{transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);}
.mfe_c00022{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);}
.m6d_c00022{transform:matrix(0.194580,-0.001946,0.002500,0.249988,0,0);-ms-transform:matrix(0.194580,-0.001946,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194580,-0.001946,0.002500,0.249988,0,0);}
.m4a_c00022{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);}
.m45_c00022{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);}
.m130_c00022{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);}
.mb3_c00022{transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);}
.m110_c00022{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);}
.m36_c00022{transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);}
.mf8_c00022{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);}
.m58_c00022{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);}
.m41_c00022{transform:matrix(0.195780,-0.001958,0.002500,0.249988,0,0);-ms-transform:matrix(0.195780,-0.001958,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195780,-0.001958,0.002500,0.249988,0,0);}
.me9_c00022{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);}
.m10a_c00022{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);}
.m111_c00022{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);}
.m3b_c00022{transform:matrix(0.197075,-0.001971,0.002500,0.249988,0,0);-ms-transform:matrix(0.197075,-0.001971,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197075,-0.001971,0.002500,0.249988,0,0);}
.mc3_c00022{transform:matrix(0.197470,-0.001975,0.002500,0.249988,0,0);-ms-transform:matrix(0.197470,-0.001975,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197470,-0.001975,0.002500,0.249988,0,0);}
.m44_c00022{transform:matrix(0.198215,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198215,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198215,-0.001982,0.002500,0.249988,0,0);}
.m86_c00022{transform:matrix(0.198240,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198240,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198240,-0.001982,0.002500,0.249988,0,0);}
.m29_c00022{transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);}
.m9c_c00022{transform:matrix(0.198760,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198760,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198760,-0.001988,0.002500,0.249988,0,0);}
.m1f_c00022{transform:matrix(0.199215,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199215,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199215,-0.001992,0.002500,0.249988,0,0);}
.md7_c00022{transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);}
.m3a_c00022{transform:matrix(0.200150,-0.002001,0.002500,0.249988,0,0);-ms-transform:matrix(0.200150,-0.002001,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200150,-0.002001,0.002500,0.249988,0,0);}
.m81_c00022{transform:matrix(0.200155,-0.002002,0.002500,0.249988,0,0);-ms-transform:matrix(0.200155,-0.002002,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200155,-0.002002,0.002500,0.249988,0,0);}
.m107_c00022{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_c00022{transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);}
.m3d_c00022{transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);}
.mc2_c00022{transform:matrix(0.201150,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201150,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201150,-0.002011,0.002500,0.249988,0,0);}
.mf1_c00022{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);}
.m128_c00022{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);}
.m9d_c00022{transform:matrix(0.201585,-0.002016,0.002500,0.249988,0,0);-ms-transform:matrix(0.201585,-0.002016,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201585,-0.002016,0.002500,0.249988,0,0);}
.mf0_c00022{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);}
.ma6_c00022{transform:matrix(0.201890,-0.002019,0.002500,0.249988,0,0);-ms-transform:matrix(0.201890,-0.002019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201890,-0.002019,0.002500,0.249988,0,0);}
.mf4_c00022{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);}
.med_c00022{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_c00022{transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);}
.m11c_c00022{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);}
.m5f_c00022{transform:matrix(0.204735,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204735,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204735,-0.002047,0.002500,0.249988,0,0);}
.mfa_c00022{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);}
.mfd_c00022{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);}
.m11b_c00022{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);}
.m8a_c00022{transform:matrix(0.206930,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206930,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206930,-0.002069,0.002500,0.249988,0,0);}
.mf_c00022{transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);-ms-transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);}
.m105_c00022{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);}
.m118_c00022{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);}
.m88_c00022{transform:matrix(0.208550,-0.002085,0.002500,0.249988,0,0);-ms-transform:matrix(0.208550,-0.002085,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208550,-0.002085,0.002500,0.249988,0,0);}
.m8d_c00022{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);}
.m68_c00022{transform:matrix(0.208765,-0.002088,0.002500,0.249988,0,0);-ms-transform:matrix(0.208765,-0.002088,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208765,-0.002088,0.002500,0.249988,0,0);}
.m112_c00022{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);}
.mdc_c00022{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);}
.m37_c00022{transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);}
.mb9_c00022{transform:matrix(0.210419,-0.002104,0.002500,0.249988,0,0);-ms-transform:matrix(0.210419,-0.002104,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210419,-0.002104,0.002500,0.249988,0,0);}
.m5e_c00022{transform:matrix(0.210454,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210454,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210454,-0.002105,0.002500,0.249988,0,0);}
.m75_c00022{transform:matrix(0.210684,-0.002107,0.002500,0.249988,0,0);-ms-transform:matrix(0.210684,-0.002107,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210684,-0.002107,0.002500,0.249988,0,0);}
.m4_c00022{transform:matrix(0.211003,-0.001688,0.002000,0.249992,0,0);-ms-transform:matrix(0.211003,-0.001688,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211003,-0.001688,0.002000,0.249992,0,0);}
.me7_c00022{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);}
.mf9_c00022{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);}
.mf7_c00022{transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);}
.m8c_c00022{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);}
.m70_c00022{transform:matrix(0.212479,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212479,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212479,-0.002125,0.002500,0.249988,0,0);}
.m12c_c00022{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);}
.m6c_c00022{transform:matrix(0.213864,-0.002139,0.002500,0.249988,0,0);-ms-transform:matrix(0.213864,-0.002139,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213864,-0.002139,0.002500,0.249988,0,0);}
.mec_c00022{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);}
.m4b_c00022{transform:matrix(0.214159,-0.002142,0.002500,0.249988,0,0);-ms-transform:matrix(0.214159,-0.002142,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214159,-0.002142,0.002500,0.249988,0,0);}
.ma3_c00022{transform:matrix(0.214259,-0.002143,0.002500,0.249988,0,0);-ms-transform:matrix(0.214259,-0.002143,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214259,-0.002143,0.002500,0.249988,0,0);}
.m89_c00022{transform:matrix(0.214734,-0.002147,0.002500,0.249988,0,0);-ms-transform:matrix(0.214734,-0.002147,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214734,-0.002147,0.002500,0.249988,0,0);}
.m13d_c00022{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);}
.m95_c00022{transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);}
.m4e_c00022{transform:matrix(0.216449,-0.002164,0.002500,0.249988,0,0);-ms-transform:matrix(0.216449,-0.002164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216449,-0.002164,0.002500,0.249988,0,0);}
.me4_c00022{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);}
.me1_c00022{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);}
.mdb_c00022{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);}
.m12e_c00022{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);}
.mef_c00022{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);}
.mce_c00022{transform:matrix(0.220619,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220619,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220619,-0.002206,0.002500,0.249988,0,0);}
.m15_c00022{transform:matrix(0.221439,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221439,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221439,-0.002214,0.002500,0.249988,0,0);}
.mdd_c00022{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);}
.m17_c00022{transform:matrix(0.223244,-0.002232,0.002500,0.249988,0,0);-ms-transform:matrix(0.223244,-0.002232,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223244,-0.002232,0.002500,0.249988,0,0);}
.m142_c00022{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.224799,-0.002248,0.002500,0.249988,0,0);-ms-transform:matrix(0.224799,-0.002248,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224799,-0.002248,0.002500,0.249988,0,0);}
.m136_c00022{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);}
.m1_c00022{transform:matrix(0.225893,-0.001807,0.002000,0.249992,0,0);-ms-transform:matrix(0.225893,-0.001807,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225893,-0.001807,0.002000,0.249992,0,0);}
.mfc_c00022{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);}
.m69_c00022{transform:matrix(0.227859,-0.002279,0.002500,0.249988,0,0);-ms-transform:matrix(0.227859,-0.002279,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227859,-0.002279,0.002500,0.249988,0,0);}
.m11d_c00022{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);}
.mee_c00022{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);}
.m7e_c00022{transform:matrix(0.234573,-0.002346,0.002500,0.249988,0,0);-ms-transform:matrix(0.234573,-0.002346,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234573,-0.002346,0.002500,0.249988,0,0);}
.mb8_c00022{transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);-ms-transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);}
.m78_c00022{transform:matrix(0.241498,-0.002415,0.002500,0.249988,0,0);-ms-transform:matrix(0.241498,-0.002415,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241498,-0.002415,0.002500,0.249988,0,0);}
.m80_c00022{transform:matrix(0.242298,-0.002423,0.002500,0.249988,0,0);-ms-transform:matrix(0.242298,-0.002423,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242298,-0.002423,0.002500,0.249988,0,0);}
.m11e_c00022{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);}
.m10d_c00022{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.m73_c00022{transform:matrix(0.245658,-0.002457,0.002500,0.249988,0,0);-ms-transform:matrix(0.245658,-0.002457,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245658,-0.002457,0.002500,0.249988,0,0);}
.md9_c00022{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);}
.m99_c00022{transform:matrix(0.247533,-0.002475,0.002500,0.249988,0,0);-ms-transform:matrix(0.247533,-0.002475,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247533,-0.002475,0.002500,0.249988,0,0);}
.m72_c00022{transform:matrix(0.248433,-0.002484,0.002500,0.249988,0,0);-ms-transform:matrix(0.248433,-0.002484,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248433,-0.002484,0.002500,0.249988,0,0);}
.mdf_c00022{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);}
.m62_c00022{transform:matrix(0.249483,-0.002495,0.002500,0.249988,0,0);-ms-transform:matrix(0.249483,-0.002495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249483,-0.002495,0.002500,0.249988,0,0);}
.m3e_c00022{transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);-ms-transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);}
.m114_c00022{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);}
.m0_c00022{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);}
.m1d_c00022{transform:matrix(0.252402,-0.002524,0.002500,0.249988,0,0);-ms-transform:matrix(0.252402,-0.002524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252402,-0.002524,0.002500,0.249988,0,0);}
.m104_c00022{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);}
.md6_c00022{transform:matrix(0.259482,-0.002595,0.002500,0.249988,0,0);-ms-transform:matrix(0.259482,-0.002595,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259482,-0.002595,0.002500,0.249988,0,0);}
.m85_c00022{transform:matrix(0.263932,-0.002639,0.002500,0.249988,0,0);-ms-transform:matrix(0.263932,-0.002639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263932,-0.002639,0.002500,0.249988,0,0);}
.md5_c00022{transform:matrix(0.267822,-0.002678,0.002500,0.249988,0,0);-ms-transform:matrix(0.267822,-0.002678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267822,-0.002678,0.002500,0.249988,0,0);}
.mfb_c00022{transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);}
.m139_c00022{transform:matrix(0.284645,-0.003416,0.003000,0.249982,0,0);-ms-transform:matrix(0.284645,-0.003416,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284645,-0.003416,0.003000,0.249982,0,0);}
.m132_c00022{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);}
.m138_c00022{transform:matrix(0.285639,-0.003428,0.003000,0.249982,0,0);-ms-transform:matrix(0.285639,-0.003428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285639,-0.003428,0.003000,0.249982,0,0);}
.m13f_c00022{transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);}
.m7c_c00022{transform:matrix(0.288561,-0.002886,0.002500,0.249988,0,0);-ms-transform:matrix(0.288561,-0.002886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.288561,-0.002886,0.002500,0.249988,0,0);}
.m7b_c00022{transform:matrix(0.291765,-0.002918,0.002500,0.249988,0,0);-ms-transform:matrix(0.291765,-0.002918,0.002500,0.249988,0,0);-webkit-transform:matrix(0.291765,-0.002918,0.002500,0.249988,0,0);}
.m7f_c00022{transform:matrix(0.294070,-0.002941,0.002500,0.249988,0,0);-ms-transform:matrix(0.294070,-0.002941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294070,-0.002941,0.002500,0.249988,0,0);}
.m7d_c00022{transform:matrix(0.295960,-0.002960,0.002500,0.249988,0,0);-ms-transform:matrix(0.295960,-0.002960,0.002500,0.249988,0,0);-webkit-transform:matrix(0.295960,-0.002960,0.002500,0.249988,0,0);}
.m131_c00022{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);}
.m79_c00022{transform:matrix(0.311034,-0.003110,0.002500,0.249988,0,0);-ms-transform:matrix(0.311034,-0.003110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.311034,-0.003110,0.002500,0.249988,0,0);}
.m7a_c00022{transform:matrix(0.311564,-0.003116,0.002500,0.249988,0,0);-ms-transform:matrix(0.311564,-0.003116,0.002500,0.249988,0,0);-webkit-transform:matrix(0.311564,-0.003116,0.002500,0.249988,0,0);}
.m82_c00022{transform:matrix(0.319234,-0.003192,0.002500,0.249988,0,0);-ms-transform:matrix(0.319234,-0.003192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319234,-0.003192,0.002500,0.249988,0,0);}
.m13e_c00022{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);}
.m13a_c00022{transform:matrix(0.389907,-0.004679,0.003000,0.249982,0,0);-ms-transform:matrix(0.389907,-0.004679,0.003000,0.249982,0,0);-webkit-transform:matrix(0.389907,-0.004679,0.003000,0.249982,0,0);}
.m13b_c00022{transform:matrix(0.406511,-0.004878,0.003000,0.249982,0,0);-ms-transform:matrix(0.406511,-0.004878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.406511,-0.004878,0.003000,0.249982,0,0);}
.m143_c00022{transform:matrix(0.478665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478665,0.000000,0.000000,0.250000,0,0);}
.m13c_c00022{transform:matrix(0.535291,-0.006423,0.003000,0.249982,0,0);-ms-transform:matrix(0.535291,-0.006423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.535291,-0.006423,0.003000,0.249982,0,0);}
.m140_c00022{transform:matrix(0.584900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584900,0.000000,0.000000,0.250000,0,0);}
.m137_c00022{transform:matrix(1.172451,-0.014069,0.003000,0.249982,0,0);-ms-transform:matrix(1.172451,-0.014069,0.003000,0.249982,0,0);-webkit-transform:matrix(1.172451,-0.014069,0.003000,0.249982,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;}
.fs14_c00022{font-size:22.050000px;}
.fs0_c00022{font-size:30.450000px;}
.fs17_c00022{font-size:39.900000px;}
.fs7_c00022{font-size:59.852992px;}
.fsf_c00022{font-size:61.950000px;}
.fs13_c00022{font-size:64.050000px;}
.fsd_c00022{font-size:65.100000px;}
.fs8_c00022{font-size:65.103255px;}
.fs11_c00022{font-size:66.150000px;}
.fs9_c00022{font-size:66.153307px;}
.fsc_c00022{font-size:68.250000px;}
.fs6_c00022{font-size:68.253412px;}
.fs10_c00022{font-size:69.300000px;}
.fs4_c00022{font-size:69.303465px;}
.fse_c00022{font-size:70.350000px;}
.fs5_c00022{font-size:70.353517px;}
.fsb_c00022{font-size:71.400000px;}
.fs1_c00022{font-size:71.402285px;}
.fs2_c00022{font-size:71.403570px;}
.fs3_c00022{font-size:72.453622px;}
.fs12_c00022{font-size:73.500000px;}
.fsa_c00022{font-size:75.603780px;}
.fs16_c00022{font-size:92.400000px;}
.fs15_c00022{font-size:133.359601px;}
.y0_c00022{bottom:0.000000px;}
.yed_c00022{bottom:171.990000px;}
.yee_c00022{bottom:175.485000px;}
.ye7_c00022{bottom:179.283000px;}
.ye8_c00022{bottom:180.890310px;}
.ye9_c00022{bottom:181.547976px;}
.yea_c00022{bottom:182.202402px;}
.yeb_c00022{bottom:183.019134px;}
.yec_c00022{bottom:184.262934px;}
.ye6_c00022{bottom:200.341500px;}
.ye5_c00022{bottom:237.394500px;}
.ye4_c00022{bottom:260.041500px;}
.ye3_c00022{bottom:282.453000px;}
.ye2_c00022{bottom:305.371500px;}
.ye1_c00022{bottom:328.321500px;}
.ye0_c00022{bottom:351.510000px;}
.ydf_c00022{bottom:372.997500px;}
.yde_c00022{bottom:396.834000px;}
.ydd_c00022{bottom:419.220000px;}
.ydc_c00022{bottom:441.711000px;}
.ydb_c00022{bottom:452.790000px;}
.yd8_c00022{bottom:465.663915px;}
.yda_c00022{bottom:465.664485px;}
.yd9_c00022{bottom:465.664500px;}
.yd7_c00022{bottom:465.664545px;}
.yd6_c00022{bottom:465.664860px;}
.yd5_c00022{bottom:465.664890px;}
.yd4_c00022{bottom:465.665505px;}
.yd3_c00022{bottom:465.665835px;}
.ycf_c00022{bottom:465.665925px;}
.yd2_c00022{bottom:465.666165px;}
.yd1_c00022{bottom:465.666180px;}
.yd0_c00022{bottom:465.666495px;}
.yce_c00022{bottom:488.515995px;}
.ycd_c00022{bottom:488.516010px;}
.ycb_c00022{bottom:488.516040px;}
.yca_c00022{bottom:488.516055px;}
.yc4_c00022{bottom:488.516205px;}
.yc9_c00022{bottom:488.516385px;}
.yc8_c00022{bottom:488.516400px;}
.yc6_c00022{bottom:488.516460px;}
.ycc_c00022{bottom:488.516625px;}
.yc7_c00022{bottom:488.516745px;}
.yc5_c00022{bottom:488.516775px;}
.yc3_c00022{bottom:511.168560px;}
.yc2_c00022{bottom:511.168575px;}
.yc1_c00022{bottom:511.168905px;}
.yc0_c00022{bottom:511.168920px;}
.ybf_c00022{bottom:511.169535px;}
.ybe_c00022{bottom:511.169865px;}
.ybd_c00022{bottom:511.170480px;}
.ybc_c00022{bottom:511.171095px;}
.ybb_c00022{bottom:511.171725px;}
.yba_c00022{bottom:511.172040px;}
.yb9_c00022{bottom:511.172670px;}
.yae_c00022{bottom:532.162035px;}
.yaf_c00022{bottom:532.482150px;}
.yb0_c00022{bottom:532.816635px;}
.yb1_c00022{bottom:533.282445px;}
.yb2_c00022{bottom:533.546175px;}
.yb3_c00022{bottom:534.031830px;}
.yb4_c00022{bottom:534.370605px;}
.yb5_c00022{bottom:534.698520px;}
.yb6_c00022{bottom:535.221525px;}
.yb7_c00022{bottom:535.596765px;}
.yb8_c00022{bottom:535.806225px;}
.ya5_c00022{bottom:554.842725px;}
.ya6_c00022{bottom:555.581535px;}
.ya7_c00022{bottom:555.938820px;}
.ya8_c00022{bottom:556.157850px;}
.ya9_c00022{bottom:556.715850px;}
.yaa_c00022{bottom:556.966920px;}
.yab_c00022{bottom:557.196390px;}
.yac_c00022{bottom:557.861295px;}
.yad_c00022{bottom:558.141210px;}
.y9c_c00022{bottom:577.524825px;}
.y9d_c00022{bottom:578.276895px;}
.y9e_c00022{bottom:578.455980px;}
.y9f_c00022{bottom:578.981490px;}
.ya0_c00022{bottom:579.272655px;}
.ya1_c00022{bottom:579.838950px;}
.ya2_c00022{bottom:580.041870px;}
.ya3_c00022{bottom:580.663515px;}
.ya4_c00022{bottom:581.099310px;}
.y91_c00022{bottom:599.938125px;}
.y92_c00022{bottom:600.300885px;}
.y93_c00022{bottom:600.502740px;}
.y94_c00022{bottom:600.857325px;}
.y95_c00022{bottom:601.332150px;}
.y96_c00022{bottom:601.530570px;}
.y97_c00022{bottom:601.825725px;}
.y98_c00022{bottom:602.184195px;}
.y99_c00022{bottom:602.444325px;}
.y9a_c00022{bottom:602.773305px;}
.y9b_c00022{bottom:603.131655px;}
.y8b_c00022{bottom:624.678090px;}
.y87_c00022{bottom:624.678180px;}
.y8c_c00022{bottom:624.678375px;}
.y8a_c00022{bottom:624.678435px;}
.y89_c00022{bottom:624.678450px;}
.y8e_c00022{bottom:624.678615px;}
.y88_c00022{bottom:624.678765px;}
.y8d_c00022{bottom:624.678930px;}
.y90_c00022{bottom:624.679140px;}
.y8f_c00022{bottom:624.679170px;}
.y79_c00022{bottom:645.297270px;}
.y7a_c00022{bottom:645.553980px;}
.y7b_c00022{bottom:645.712335px;}
.y7c_c00022{bottom:646.191480px;}
.y7d_c00022{bottom:646.383540px;}
.y7e_c00022{bottom:646.640205px;}
.y7f_c00022{bottom:647.113050px;}
.y80_c00022{bottom:647.341935px;}
.y81_c00022{bottom:647.787570px;}
.y82_c00022{bottom:648.343170px;}
.y83_c00022{bottom:648.448860px;}
.y84_c00022{bottom:648.708585px;}
.y85_c00022{bottom:648.964050px;}
.y86_c00022{bottom:649.093050px;}
.y6a_c00022{bottom:667.729500px;}
.y6b_c00022{bottom:667.874865px;}
.y6c_c00022{bottom:668.177715px;}
.y6d_c00022{bottom:668.409990px;}
.y6e_c00022{bottom:668.706510px;}
.y6f_c00022{bottom:669.219450px;}
.y70_c00022{bottom:669.602865px;}
.y71_c00022{bottom:669.944160px;}
.y72_c00022{bottom:670.542990px;}
.y73_c00022{bottom:670.708005px;}
.y74_c00022{bottom:671.091150px;}
.y75_c00022{bottom:671.252730px;}
.y76_c00022{bottom:671.574495px;}
.y77_c00022{bottom:671.812140px;}
.y78_c00022{bottom:672.182070px;}
.y5f_c00022{bottom:690.657555px;}
.y60_c00022{bottom:690.932685px;}
.y61_c00022{bottom:691.508100px;}
.y62_c00022{bottom:691.727145px;}
.y63_c00022{bottom:692.402250px;}
.y64_c00022{bottom:692.625525px;}
.y65_c00022{bottom:693.330225px;}
.y66_c00022{bottom:693.665865px;}
.y67_c00022{bottom:694.110345px;}
.y68_c00022{bottom:694.501185px;}
.y69_c00022{bottom:694.744605px;}
.y56_c00022{bottom:712.528455px;}
.y57_c00022{bottom:713.362230px;}
.y58_c00022{bottom:713.845305px;}
.y59_c00022{bottom:714.583830px;}
.y5a_c00022{bottom:714.960435px;}
.y5b_c00022{bottom:715.681785px;}
.y5c_c00022{bottom:716.413920px;}
.y5d_c00022{bottom:716.947920px;}
.y5e_c00022{bottom:717.259725px;}
.y48_c00022{bottom:735.749145px;}
.y49_c00022{bottom:736.461825px;}
.y4a_c00022{bottom:736.795365px;}
.y4b_c00022{bottom:737.057715px;}
.y4c_c00022{bottom:737.864355px;}
.y4d_c00022{bottom:738.230895px;}
.y4e_c00022{bottom:738.474045px;}
.y4f_c00022{bottom:739.024440px;}
.y50_c00022{bottom:739.360785px;}
.y51_c00022{bottom:739.571490px;}
.y52_c00022{bottom:740.290200px;}
.y53_c00022{bottom:740.439990px;}
.y54_c00022{bottom:740.761890px;}
.y55_c00022{bottom:741.192960px;}
.y3d_c00022{bottom:758.430075px;}
.y3e_c00022{bottom:758.671050px;}
.y3f_c00022{bottom:759.089670px;}
.y40_c00022{bottom:759.927555px;}
.y41_c00022{bottom:760.168770px;}
.y42_c00022{bottom:760.602000px;}
.y43_c00022{bottom:760.788300px;}
.y44_c00022{bottom:761.239560px;}
.y45_c00022{bottom:761.964315px;}
.y46_c00022{bottom:762.256020px;}
.y47_c00022{bottom:763.292280px;}
.y34_c00022{bottom:781.921815px;}
.y35_c00022{bottom:782.629260px;}
.y36_c00022{bottom:783.036540px;}
.y37_c00022{bottom:783.352530px;}
.y38_c00022{bottom:784.260090px;}
.y39_c00022{bottom:784.527435px;}
.y3a_c00022{bottom:785.197035px;}
.y3b_c00022{bottom:785.431980px;}
.y3c_c00022{bottom:786.347265px;}
.y29_c00022{bottom:804.602475px;}
.y2a_c00022{bottom:805.208685px;}
.y2b_c00022{bottom:805.508550px;}
.y2c_c00022{bottom:805.971690px;}
.y2d_c00022{bottom:806.503080px;}
.y2e_c00022{bottom:806.761965px;}
.y2f_c00022{bottom:807.537210px;}
.y30_c00022{bottom:808.339635px;}
.y31_c00022{bottom:808.591650px;}
.y32_c00022{bottom:809.064510px;}
.y33_c00022{bottom:809.426865px;}
.y1d_c00022{bottom:827.280720px;}
.y1e_c00022{bottom:827.587305px;}
.y1f_c00022{bottom:827.861370px;}
.y20_c00022{bottom:828.357300px;}
.y21_c00022{bottom:828.674775px;}
.y22_c00022{bottom:829.444530px;}
.y23_c00022{bottom:829.899600px;}
.y24_c00022{bottom:830.125845px;}
.y25_c00022{bottom:830.583180px;}
.y26_c00022{bottom:831.097380px;}
.y27_c00022{bottom:831.901965px;}
.y28_c00022{bottom:832.264935px;}
.y12_c00022{bottom:850.485000px;}
.y13_c00022{bottom:851.165415px;}
.y14_c00022{bottom:851.575470px;}
.y15_c00022{bottom:852.050625px;}
.y16_c00022{bottom:852.380490px;}
.y17_c00022{bottom:852.888090px;}
.y18_c00022{bottom:853.044840px;}
.y19_c00022{bottom:853.563180px;}
.y1a_c00022{bottom:853.768365px;}
.y1b_c00022{bottom:854.383935px;}
.y1c_c00022{bottom:854.761890px;}
.yc_c00022{bottom:873.452400px;}
.yd_c00022{bottom:873.804936px;}
.ye_c00022{bottom:874.931724px;}
.yf_c00022{bottom:875.905392px;}
.y10_c00022{bottom:876.352812px;}
.y11_c00022{bottom:877.067184px;}
.y2_c00022{bottom:896.941500px;}
.y3_c00022{bottom:897.327924px;}
.y4_c00022{bottom:897.738624px;}
.y5_c00022{bottom:898.045452px;}
.y6_c00022{bottom:898.654236px;}
.y7_c00022{bottom:898.952424px;}
.y8_c00022{bottom:899.395440px;}
.y9_c00022{bottom:899.608992px;}
.ya_c00022{bottom:900.034740px;}
.yb_c00022{bottom:900.468924px;}
.y1_c00022{bottom:917.730000px;}
.h16_c00022{height:22.050000px;}
.h2_c00022{height:30.450000px;}
.h19_c00022{height:39.900000px;}
.h9_c00022{height:59.852992px;}
.h11_c00022{height:61.950000px;}
.h15_c00022{height:64.050000px;}
.hf_c00022{height:65.100000px;}
.ha_c00022{height:65.103255px;}
.h13_c00022{height:66.150000px;}
.hb_c00022{height:66.153307px;}
.he_c00022{height:68.250000px;}
.h8_c00022{height:68.253412px;}
.h12_c00022{height:69.300000px;}
.h6_c00022{height:69.303465px;}
.h10_c00022{height:70.350000px;}
.h7_c00022{height:70.353517px;}
.hd_c00022{height:71.400000px;}
.h3_c00022{height:71.402285px;}
.h4_c00022{height:71.403570px;}
.h5_c00022{height:72.453622px;}
.h14_c00022{height:73.500000px;}
.hc_c00022{height:75.603780px;}
.h18_c00022{height:92.400000px;}
.h17_c00022{height:133.359601px;}
.h1_c00022{height:1080.000000px;}
.h0_c00022{height:1080.270000px;}
.w1_c00022{width:768.000000px;}
.w0_c00022{width:768.150000px;}
.x0_c00022{left:0.000000px;}
.x5c_c00022{left:88.964115px;}
.x9a_c00022{left:112.590000px;}
.x77_c00022{left:114.316605px;}
.xa4_c00022{left:118.260000px;}
.xc_c00022{left:120.330696px;}
.x20_c00022{left:121.387080px;}
.x2a_c00022{left:122.447970px;}
.x90_c00022{left:132.570000px;}
.x52_c00022{left:135.352500px;}
.x2_c00022{left:139.156500px;}
.x5d_c00022{left:140.821650px;}
.x32_c00022{left:142.405950px;}
.xd_c00022{left:145.458984px;}
.x18_c00022{left:148.642980px;}
.x49_c00022{left:151.047630px;}
.x7d_c00022{left:161.037360px;}
.x94_c00022{left:162.810000px;}
.x65_c00022{left:163.895775px;}
.x53_c00022{left:165.637500px;}
.x88_c00022{left:169.840830px;}
.x19_c00022{left:173.499225px;}
.x21_c00022{left:176.457525px;}
.x33_c00022{left:180.517575px;}
.xa6_c00022{left:183.600000px;}
.x89_c00022{left:184.960845px;}
.x95_c00022{left:186.030000px;}
.x3_c00022{left:187.459500px;}
.x54_c00022{left:188.865000px;}
.x44_c00022{left:190.281780px;}
.x2b_c00022{left:193.192470px;}
.xa1_c00022{left:195.210000px;}
.x5e_c00022{left:200.737350px;}
.x6b_c00022{left:202.070325px;}
.x22_c00022{left:203.743755px;}
.x12_c00022{left:206.424000px;}
.x3b_c00022{left:208.062750px;}
.x4a_c00022{left:215.039775px;}
.x1a_c00022{left:218.591775px;}
.x78_c00022{left:219.850770px;}
.xa2_c00022{left:221.670000px;}
.x5f_c00022{left:224.743830px;}
.xe_c00022{left:225.928620px;}
.xaa_c00022{left:227.610000px;}
.x3c_c00022{left:229.947315px;}
.x2c_c00022{left:233.920470px;}
.x91_c00022{left:236.520000px;}
.x71_c00022{left:237.718335px;}
.x4_c00022{left:238.797000px;}
.x23_c00022{left:245.857335px;}
.x13_c00022{left:247.429500px;}
.x6c_c00022{left:252.830355px;}
.xab_c00022{left:255.420000px;}
.x34_c00022{left:256.655310px;}
.x7e_c00022{left:261.168870px;}
.xb1_c00022{left:262.440000px;}
.xa5_c00022{left:263.520000px;}
.x2d_c00022{left:265.519470px;}
.x55_c00022{left:269.811000px;}
.x79_c00022{left:270.880800px;}
.xb0_c00022{left:272.724000px;}
.x9b_c00022{left:273.780000px;}
.x8a_c00022{left:275.685420px;}
.x5_c00022{left:277.150500px;}
.x35_c00022{left:278.526585px;}
.xa7_c00022{left:283.500000px;}
.x96_c00022{left:288.090000px;}
.x45_c00022{left:292.039740px;}
.x24_c00022{left:294.195855px;}
.xf_c00022{left:295.508784px;}
.x3d_c00022{left:297.109965px;}
.x66_c00022{left:301.602045px;}
.x72_c00022{left:303.320640px;}
.x97_c00022{left:305.370000px;}
.x56_c00022{left:308.152500px;}
.x4b_c00022{left:314.355765px;}
.x60_c00022{left:315.996660px;}
.x1b_c00022{left:317.413785px;}
.x6d_c00022{left:320.564880px;}
.x46_c00022{left:323.399610px;}
.x8b_c00022{left:325.907445px;}
.x10_c00022{left:327.434748px;}
.x9f_c00022{left:333.720000px;}
.x36_c00022{left:334.929030px;}
.x4c_c00022{left:339.233520px;}
.x57_c00022{left:342.282000px;}
.x61_c00022{left:344.585730px;}
.x3e_c00022{left:347.877945px;}
.x6e_c00022{left:348.957735px;}
.x6_c00022{left:353.248500px;}
.x7f_c00022{left:354.859245px;}
.x2e_c00022{left:356.275470px;}
.x1c_c00022{left:358.720365px;}
.x8c_c00022{left:361.549515px;}
.x85_c00022{left:365.870955px;}
.xac_c00022{left:372.060000px;}
.xb2_c00022{left:373.680000px;}
.x37_c00022{left:376.004625px;}
.x11_c00022{left:378.478800px;}
.x7a_c00022{left:381.887130px;}
.x2f_c00022{left:383.009970px;}
.x25_c00022{left:388.157910px;}
.x7_c00022{left:390.522000px;}
.x14_c00022{left:394.366500px;}
.x67_c00022{left:398.267205px;}
.x62_c00022{left:400.250340px;}
.x58_c00022{left:402.165000px;}
.x9c_c00022{left:405.000000px;}
.xa3_c00022{left:407.700000px;}
.x73_c00022{left:410.518785px;}
.x68_c00022{left:416.087490px;}
.x4d_c00022{left:417.504300px;}
.x59_c00022{left:418.666500px;}
.x1d_c00022{left:420.777735px;}
.x3f_c00022{left:421.850475px;}
.x83_c00022{left:425.003865px;}
.xb3_c00022{left:426.060000px;}
.x8d_c00022{left:430.403400px;}
.x98_c00022{left:433.620000px;}
.x74_c00022{left:435.911295px;}
.x80_c00022{left:438.329925px;}
.x40_c00022{left:439.470630px;}
.x38_c00022{left:441.879465px;}
.x1_c00022{left:444.690000px;}
.x8_c00022{left:445.899000px;}
.xa0_c00022{left:448.740000px;}
.x30_c00022{left:449.969970px;}
.x4e_c00022{left:454.818675px;}
.x5a_c00022{left:456.981000px;}
.x26_c00022{left:461.049675px;}
.x84_c00022{left:464.156280px;}
.x15_c00022{left:466.719000px;}
.x39_c00022{left:468.349695px;}
.x63_c00022{left:469.611720px;}
.x9_c00022{left:472.593000px;}
.xad_c00022{left:478.440000px;}
.x6f_c00022{left:479.637165px;}
.x92_c00022{left:481.680000px;}
.x64_c00022{left:482.880990px;}
.x27_c00022{left:484.000950px;}
.x47_c00022{left:489.144810px;}
.x86_c00022{left:492.507615px;}
.xb4_c00022{left:494.910000px;}
.x41_c00022{left:499.340430px;}
.x9e_c00022{left:500.580000px;}
.x4f_c00022{left:504.217170px;}
.x5b_c00022{left:505.315500px;}
.xae_c00022{left:506.790000px;}
.x42_c00022{left:511.769175px;}
.x75_c00022{left:513.677355px;}
.x48_c00022{left:515.074785px;}
.x8e_c00022{left:516.267495px;}
.x69_c00022{left:519.503325px;}
.xa8_c00022{left:521.100000px;}
.x93_c00022{left:522.720000px;}
.xa_c00022{left:525.811500px;}
.x28_c00022{left:526.936515px;}
.x16_c00022{left:528.276000px;}
.x87_c00022{left:534.900360px;}
.x43_c00022{left:538.558635px;}
.x1e_c00022{left:540.655035px;}
.xa9_c00022{left:542.700000px;}
.x7b_c00022{left:545.486535px;}
.x50_c00022{left:547.651605px;}
.x9d_c00022{left:549.180000px;}
.x81_c00022{left:550.656675px;}
.x99_c00022{left:553.230000px;}
.x29_c00022{left:559.871685px;}
.x3a_c00022{left:562.524750px;}
.x31_c00022{left:564.992970px;}
.x17_c00022{left:566.071500px;}
.x76_c00022{left:568.207950px;}
.x8f_c00022{left:569.729835px;}
.x1f_c00022{left:573.651705px;}
.x51_c00022{left:574.693875px;}
.x82_c00022{left:576.853200px;}
.x70_c00022{left:577.923120px;}
.xb_c00022{left:580.084500px;}
.x7c_c00022{left:585.479235px;}
.x6a_c00022{left:591.057480px;}
.xaf_c00022{left:612.090000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs14_c00022{font-size:19.600000pt;}
.fs0_c00022{font-size:27.066667pt;}
.fs17_c00022{font-size:35.466667pt;}
.fs7_c00022{font-size:53.202660pt;}
.fsf_c00022{font-size:55.066667pt;}
.fs13_c00022{font-size:56.933333pt;}
.fsd_c00022{font-size:57.866667pt;}
.fs8_c00022{font-size:57.869560pt;}
.fs11_c00022{font-size:58.800000pt;}
.fs9_c00022{font-size:58.802940pt;}
.fsc_c00022{font-size:60.666667pt;}
.fs6_c00022{font-size:60.669700pt;}
.fs10_c00022{font-size:61.600000pt;}
.fs4_c00022{font-size:61.603080pt;}
.fse_c00022{font-size:62.533333pt;}
.fs5_c00022{font-size:62.536460pt;}
.fsb_c00022{font-size:63.466667pt;}
.fs1_c00022{font-size:63.468698pt;}
.fs2_c00022{font-size:63.469840pt;}
.fs3_c00022{font-size:64.403220pt;}
.fs12_c00022{font-size:65.333333pt;}
.fsa_c00022{font-size:67.203360pt;}
.fs16_c00022{font-size:82.133333pt;}
.fs15_c00022{font-size:118.541867pt;}
.y0_c00022{bottom:0.000000pt;}
.yed_c00022{bottom:152.880000pt;}
.yee_c00022{bottom:155.986667pt;}
.ye7_c00022{bottom:159.362667pt;}
.ye8_c00022{bottom:160.791387pt;}
.ye9_c00022{bottom:161.375979pt;}
.yea_c00022{bottom:161.957691pt;}
.yeb_c00022{bottom:162.683675pt;}
.yec_c00022{bottom:163.789275pt;}
.ye6_c00022{bottom:178.081333pt;}
.ye5_c00022{bottom:211.017333pt;}
.ye4_c00022{bottom:231.148000pt;}
.ye3_c00022{bottom:251.069333pt;}
.ye2_c00022{bottom:271.441333pt;}
.ye1_c00022{bottom:291.841333pt;}
.ye0_c00022{bottom:312.453333pt;}
.ydf_c00022{bottom:331.553333pt;}
.yde_c00022{bottom:352.741333pt;}
.ydd_c00022{bottom:372.640000pt;}
.ydc_c00022{bottom:392.632000pt;}
.ydb_c00022{bottom:402.480000pt;}
.yd8_c00022{bottom:413.923480pt;}
.yda_c00022{bottom:413.923987pt;}
.yd9_c00022{bottom:413.924000pt;}
.yd7_c00022{bottom:413.924040pt;}
.yd6_c00022{bottom:413.924320pt;}
.yd5_c00022{bottom:413.924347pt;}
.yd4_c00022{bottom:413.924893pt;}
.yd3_c00022{bottom:413.925187pt;}
.ycf_c00022{bottom:413.925267pt;}
.yd2_c00022{bottom:413.925480pt;}
.yd1_c00022{bottom:413.925493pt;}
.yd0_c00022{bottom:413.925773pt;}
.yce_c00022{bottom:434.236440pt;}
.ycd_c00022{bottom:434.236453pt;}
.ycb_c00022{bottom:434.236480pt;}
.yca_c00022{bottom:434.236493pt;}
.yc4_c00022{bottom:434.236627pt;}
.yc9_c00022{bottom:434.236787pt;}
.yc8_c00022{bottom:434.236800pt;}
.yc6_c00022{bottom:434.236853pt;}
.ycc_c00022{bottom:434.237000pt;}
.yc7_c00022{bottom:434.237107pt;}
.yc5_c00022{bottom:434.237133pt;}
.yc3_c00022{bottom:454.372053pt;}
.yc2_c00022{bottom:454.372067pt;}
.yc1_c00022{bottom:454.372360pt;}
.yc0_c00022{bottom:454.372373pt;}
.ybf_c00022{bottom:454.372920pt;}
.ybe_c00022{bottom:454.373213pt;}
.ybd_c00022{bottom:454.373760pt;}
.ybc_c00022{bottom:454.374307pt;}
.ybb_c00022{bottom:454.374867pt;}
.yba_c00022{bottom:454.375147pt;}
.yb9_c00022{bottom:454.375707pt;}
.yae_c00022{bottom:473.032920pt;}
.yaf_c00022{bottom:473.317467pt;}
.yb0_c00022{bottom:473.614787pt;}
.yb1_c00022{bottom:474.028840pt;}
.yb2_c00022{bottom:474.263267pt;}
.yb3_c00022{bottom:474.694960pt;}
.yb4_c00022{bottom:474.996093pt;}
.yb5_c00022{bottom:475.287573pt;}
.yb6_c00022{bottom:475.752467pt;}
.yb7_c00022{bottom:476.086013pt;}
.yb8_c00022{bottom:476.272200pt;}
.ya5_c00022{bottom:493.193533pt;}
.ya6_c00022{bottom:493.850253pt;}
.ya7_c00022{bottom:494.167840pt;}
.ya8_c00022{bottom:494.362533pt;}
.ya9_c00022{bottom:494.858533pt;}
.yaa_c00022{bottom:495.081707pt;}
.yab_c00022{bottom:495.285680pt;}
.yac_c00022{bottom:495.876707pt;}
.yad_c00022{bottom:496.125520pt;}
.y9c_c00022{bottom:513.355400pt;}
.y9d_c00022{bottom:514.023907pt;}
.y9e_c00022{bottom:514.183093pt;}
.y9f_c00022{bottom:514.650213pt;}
.ya0_c00022{bottom:514.909027pt;}
.ya1_c00022{bottom:515.412400pt;}
.ya2_c00022{bottom:515.592773pt;}
.ya3_c00022{bottom:516.145347pt;}
.ya4_c00022{bottom:516.532720pt;}
.y91_c00022{bottom:533.278333pt;}
.y92_c00022{bottom:533.600787pt;}
.y93_c00022{bottom:533.780213pt;}
.y94_c00022{bottom:534.095400pt;}
.y95_c00022{bottom:534.517467pt;}
.y96_c00022{bottom:534.693840pt;}
.y97_c00022{bottom:534.956200pt;}
.y98_c00022{bottom:535.274840pt;}
.y99_c00022{bottom:535.506067pt;}
.y9a_c00022{bottom:535.798493pt;}
.y9b_c00022{bottom:536.117027pt;}
.y8b_c00022{bottom:555.269413pt;}
.y87_c00022{bottom:555.269493pt;}
.y8c_c00022{bottom:555.269667pt;}
.y8a_c00022{bottom:555.269720pt;}
.y89_c00022{bottom:555.269733pt;}
.y8e_c00022{bottom:555.269880pt;}
.y88_c00022{bottom:555.270013pt;}
.y8d_c00022{bottom:555.270160pt;}
.y90_c00022{bottom:555.270347pt;}
.y8f_c00022{bottom:555.270373pt;}
.y79_c00022{bottom:573.597573pt;}
.y7a_c00022{bottom:573.825760pt;}
.y7b_c00022{bottom:573.966520pt;}
.y7c_c00022{bottom:574.392427pt;}
.y7d_c00022{bottom:574.563147pt;}
.y7e_c00022{bottom:574.791293pt;}
.y7f_c00022{bottom:575.211600pt;}
.y80_c00022{bottom:575.415053pt;}
.y81_c00022{bottom:575.811173pt;}
.y82_c00022{bottom:576.305040pt;}
.y83_c00022{bottom:576.398987pt;}
.y84_c00022{bottom:576.629853pt;}
.y85_c00022{bottom:576.856933pt;}
.y86_c00022{bottom:576.971600pt;}
.y6a_c00022{bottom:593.537333pt;}
.y6b_c00022{bottom:593.666547pt;}
.y6c_c00022{bottom:593.935747pt;}
.y6d_c00022{bottom:594.142213pt;}
.y6e_c00022{bottom:594.405787pt;}
.y6f_c00022{bottom:594.861733pt;}
.y70_c00022{bottom:595.202547pt;}
.y71_c00022{bottom:595.505920pt;}
.y72_c00022{bottom:596.038213pt;}
.y73_c00022{bottom:596.184893pt;}
.y74_c00022{bottom:596.525467pt;}
.y75_c00022{bottom:596.669093pt;}
.y76_c00022{bottom:596.955107pt;}
.y77_c00022{bottom:597.166347pt;}
.y78_c00022{bottom:597.495173pt;}
.y5f_c00022{bottom:613.917827pt;}
.y60_c00022{bottom:614.162387pt;}
.y61_c00022{bottom:614.673867pt;}
.y62_c00022{bottom:614.868573pt;}
.y63_c00022{bottom:615.468667pt;}
.y64_c00022{bottom:615.667133pt;}
.y65_c00022{bottom:616.293533pt;}
.y66_c00022{bottom:616.591880pt;}
.y67_c00022{bottom:616.986973pt;}
.y68_c00022{bottom:617.334387pt;}
.y69_c00022{bottom:617.550760pt;}
.y56_c00022{bottom:633.358627pt;}
.y57_c00022{bottom:634.099760pt;}
.y58_c00022{bottom:634.529160pt;}
.y59_c00022{bottom:635.185627pt;}
.y5a_c00022{bottom:635.520387pt;}
.y5b_c00022{bottom:636.161587pt;}
.y5c_c00022{bottom:636.812373pt;}
.y5d_c00022{bottom:637.287040pt;}
.y5e_c00022{bottom:637.564200pt;}
.y48_c00022{bottom:653.999240pt;}
.y49_c00022{bottom:654.632733pt;}
.y4a_c00022{bottom:654.929213pt;}
.y4b_c00022{bottom:655.162413pt;}
.y4c_c00022{bottom:655.879427pt;}
.y4d_c00022{bottom:656.205240pt;}
.y4e_c00022{bottom:656.421373pt;}
.y4f_c00022{bottom:656.910613pt;}
.y50_c00022{bottom:657.209587pt;}
.y51_c00022{bottom:657.396880pt;}
.y52_c00022{bottom:658.035733pt;}
.y53_c00022{bottom:658.168880pt;}
.y54_c00022{bottom:658.455013pt;}
.y55_c00022{bottom:658.838187pt;}
.y3d_c00022{bottom:674.160067pt;}
.y3e_c00022{bottom:674.374267pt;}
.y3f_c00022{bottom:674.746373pt;}
.y40_c00022{bottom:675.491160pt;}
.y41_c00022{bottom:675.705573pt;}
.y42_c00022{bottom:676.090667pt;}
.y43_c00022{bottom:676.256267pt;}
.y44_c00022{bottom:676.657387pt;}
.y45_c00022{bottom:677.301613pt;}
.y46_c00022{bottom:677.560907pt;}
.y47_c00022{bottom:678.482027pt;}
.y34_c00022{bottom:695.041613pt;}
.y35_c00022{bottom:695.670453pt;}
.y36_c00022{bottom:696.032480pt;}
.y37_c00022{bottom:696.313360pt;}
.y38_c00022{bottom:697.120080pt;}
.y39_c00022{bottom:697.357720pt;}
.y3a_c00022{bottom:697.952920pt;}
.y3b_c00022{bottom:698.161760pt;}
.y3c_c00022{bottom:698.975347pt;}
.y29_c00022{bottom:715.202200pt;}
.y2a_c00022{bottom:715.741053pt;}
.y2b_c00022{bottom:716.007600pt;}
.y2c_c00022{bottom:716.419280pt;}
.y2d_c00022{bottom:716.891627pt;}
.y2e_c00022{bottom:717.121747pt;}
.y2f_c00022{bottom:717.810853pt;}
.y30_c00022{bottom:718.524120pt;}
.y31_c00022{bottom:718.748133pt;}
.y32_c00022{bottom:719.168453pt;}
.y33_c00022{bottom:719.490547pt;}
.y1d_c00022{bottom:735.360640pt;}
.y1e_c00022{bottom:735.633160pt;}
.y1f_c00022{bottom:735.876773pt;}
.y20_c00022{bottom:736.317600pt;}
.y21_c00022{bottom:736.599800pt;}
.y22_c00022{bottom:737.284027pt;}
.y23_c00022{bottom:737.688533pt;}
.y24_c00022{bottom:737.889640pt;}
.y25_c00022{bottom:738.296160pt;}
.y26_c00022{bottom:738.753227pt;}
.y27_c00022{bottom:739.468413pt;}
.y28_c00022{bottom:739.791053pt;}
.y12_c00022{bottom:755.986667pt;}
.y13_c00022{bottom:756.591480pt;}
.y14_c00022{bottom:756.955973pt;}
.y15_c00022{bottom:757.378333pt;}
.y16_c00022{bottom:757.671547pt;}
.y17_c00022{bottom:758.122747pt;}
.y18_c00022{bottom:758.262080pt;}
.y19_c00022{bottom:758.722827pt;}
.y1a_c00022{bottom:758.905213pt;}
.y1b_c00022{bottom:759.452387pt;}
.y1c_c00022{bottom:759.788347pt;}
.yc_c00022{bottom:776.402133pt;}
.yd_c00022{bottom:776.715499pt;}
.ye_c00022{bottom:777.717088pt;}
.yf_c00022{bottom:778.582571pt;}
.y10_c00022{bottom:778.980277pt;}
.y11_c00022{bottom:779.615275pt;}
.y2_c00022{bottom:797.281333pt;}
.y3_c00022{bottom:797.624821pt;}
.y4_c00022{bottom:797.989888pt;}
.y5_c00022{bottom:798.262624pt;}
.y6_c00022{bottom:798.803765pt;}
.y7_c00022{bottom:799.068821pt;}
.y8_c00022{bottom:799.462613pt;}
.y9_c00022{bottom:799.652437pt;}
.ya_c00022{bottom:800.030880pt;}
.yb_c00022{bottom:800.416821pt;}
.y1_c00022{bottom:815.760000pt;}
.h16_c00022{height:19.600000pt;}
.h2_c00022{height:27.066667pt;}
.h19_c00022{height:35.466667pt;}
.h9_c00022{height:53.202660pt;}
.h11_c00022{height:55.066667pt;}
.h15_c00022{height:56.933333pt;}
.hf_c00022{height:57.866667pt;}
.ha_c00022{height:57.869560pt;}
.h13_c00022{height:58.800000pt;}
.hb_c00022{height:58.802940pt;}
.he_c00022{height:60.666667pt;}
.h8_c00022{height:60.669700pt;}
.h12_c00022{height:61.600000pt;}
.h6_c00022{height:61.603080pt;}
.h10_c00022{height:62.533333pt;}
.h7_c00022{height:62.536460pt;}
.hd_c00022{height:63.466667pt;}
.h3_c00022{height:63.468698pt;}
.h4_c00022{height:63.469840pt;}
.h5_c00022{height:64.403220pt;}
.h14_c00022{height:65.333333pt;}
.hc_c00022{height:67.203360pt;}
.h18_c00022{height:82.133333pt;}
.h17_c00022{height:118.541867pt;}
.h1_c00022{height:960.000000pt;}
.h0_c00022{height:960.240000pt;}
.w1_c00022{width:682.666667pt;}
.w0_c00022{width:682.800000pt;}
.x0_c00022{left:0.000000pt;}
.x5c_c00022{left:79.079213pt;}
.x9a_c00022{left:100.080000pt;}
.x77_c00022{left:101.614760pt;}
.xa4_c00022{left:105.120000pt;}
.xc_c00022{left:106.960619pt;}
.x20_c00022{left:107.899627pt;}
.x2a_c00022{left:108.842640pt;}
.x90_c00022{left:117.840000pt;}
.x52_c00022{left:120.313333pt;}
.x2_c00022{left:123.694667pt;}
.x5d_c00022{left:125.174800pt;}
.x32_c00022{left:126.583067pt;}
.xd_c00022{left:129.296875pt;}
.x18_c00022{left:132.127093pt;}
.x49_c00022{left:134.264560pt;}
.x7d_c00022{left:143.144320pt;}
.x94_c00022{left:144.720000pt;}
.x65_c00022{left:145.685133pt;}
.x53_c00022{left:147.233333pt;}
.x88_c00022{left:150.969627pt;}
.x19_c00022{left:154.221533pt;}
.x21_c00022{left:156.851133pt;}
.x33_c00022{left:160.460067pt;}
.xa6_c00022{left:163.200000pt;}
.x89_c00022{left:164.409640pt;}
.x95_c00022{left:165.360000pt;}
.x3_c00022{left:166.630667pt;}
.x54_c00022{left:167.880000pt;}
.x44_c00022{left:169.139360pt;}
.x2b_c00022{left:171.726640pt;}
.xa1_c00022{left:173.520000pt;}
.x5e_c00022{left:178.433200pt;}
.x6b_c00022{left:179.618067pt;}
.x22_c00022{left:181.105560pt;}
.x12_c00022{left:183.488000pt;}
.x3b_c00022{left:184.944667pt;}
.x4a_c00022{left:191.146467pt;}
.x1a_c00022{left:194.303800pt;}
.x78_c00022{left:195.422907pt;}
.xa2_c00022{left:197.040000pt;}
.x5f_c00022{left:199.772293pt;}
.xe_c00022{left:200.825440pt;}
.xaa_c00022{left:202.320000pt;}
.x3c_c00022{left:204.397613pt;}
.x2c_c00022{left:207.929307pt;}
.x91_c00022{left:210.240000pt;}
.x71_c00022{left:211.305187pt;}
.x4_c00022{left:212.264000pt;}
.x23_c00022{left:218.539853pt;}
.x13_c00022{left:219.937333pt;}
.x6c_c00022{left:224.738093pt;}
.xab_c00022{left:227.040000pt;}
.x34_c00022{left:228.138053pt;}
.x7e_c00022{left:232.150107pt;}
.xb1_c00022{left:233.280000pt;}
.xa5_c00022{left:234.240000pt;}
.x2d_c00022{left:236.017307pt;}
.x55_c00022{left:239.832000pt;}
.x79_c00022{left:240.782933pt;}
.xb0_c00022{left:242.421333pt;}
.x9b_c00022{left:243.360000pt;}
.x8a_c00022{left:245.053707pt;}
.x5_c00022{left:246.356000pt;}
.x35_c00022{left:247.579187pt;}
.xa7_c00022{left:252.000000pt;}
.x96_c00022{left:256.080000pt;}
.x45_c00022{left:259.590880pt;}
.x24_c00022{left:261.507427pt;}
.xf_c00022{left:262.674475pt;}
.x3d_c00022{left:264.097747pt;}
.x66_c00022{left:268.090707pt;}
.x72_c00022{left:269.618347pt;}
.x97_c00022{left:271.440000pt;}
.x56_c00022{left:273.913333pt;}
.x4b_c00022{left:279.427347pt;}
.x60_c00022{left:280.885920pt;}
.x1b_c00022{left:282.145587pt;}
.x6d_c00022{left:284.946560pt;}
.x46_c00022{left:287.466320pt;}
.x8b_c00022{left:289.695507pt;}
.x10_c00022{left:291.053109pt;}
.x9f_c00022{left:296.640000pt;}
.x36_c00022{left:297.714693pt;}
.x4c_c00022{left:301.540907pt;}
.x57_c00022{left:304.250667pt;}
.x61_c00022{left:306.298427pt;}
.x3e_c00022{left:309.224840pt;}
.x6e_c00022{left:310.184653pt;}
.x6_c00022{left:313.998667pt;}
.x7f_c00022{left:315.430440pt;}
.x2e_c00022{left:316.689307pt;}
.x1c_c00022{left:318.862547pt;}
.x8c_c00022{left:321.377347pt;}
.x85_c00022{left:325.218627pt;}
.xac_c00022{left:330.720000pt;}
.xb2_c00022{left:332.160000pt;}
.x37_c00022{left:334.226333pt;}
.x11_c00022{left:336.425600pt;}
.x7a_c00022{left:339.455227pt;}
.x2f_c00022{left:340.453307pt;}
.x25_c00022{left:345.029253pt;}
.x7_c00022{left:347.130667pt;}
.x14_c00022{left:350.548000pt;}
.x67_c00022{left:354.015293pt;}
.x62_c00022{left:355.778080pt;}
.x58_c00022{left:357.480000pt;}
.x9c_c00022{left:360.000000pt;}
.xa3_c00022{left:362.400000pt;}
.x73_c00022{left:364.905587pt;}
.x68_c00022{left:369.855547pt;}
.x4d_c00022{left:371.114933pt;}
.x59_c00022{left:372.148000pt;}
.x1d_c00022{left:374.024653pt;}
.x3f_c00022{left:374.978200pt;}
.x83_c00022{left:377.781213pt;}
.xb3_c00022{left:378.720000pt;}
.x8d_c00022{left:382.580800pt;}
.x98_c00022{left:385.440000pt;}
.x74_c00022{left:387.476707pt;}
.x80_c00022{left:389.626600pt;}
.x40_c00022{left:390.640560pt;}
.x38_c00022{left:392.781747pt;}
.x1_c00022{left:395.280000pt;}
.x8_c00022{left:396.354667pt;}
.xa0_c00022{left:398.880000pt;}
.x30_c00022{left:399.973307pt;}
.x4e_c00022{left:404.283267pt;}
.x5a_c00022{left:406.205333pt;}
.x26_c00022{left:409.821933pt;}
.x84_c00022{left:412.583360pt;}
.x15_c00022{left:414.861333pt;}
.x39_c00022{left:416.310840pt;}
.x63_c00022{left:417.432640pt;}
.x9_c00022{left:420.082667pt;}
.xad_c00022{left:425.280000pt;}
.x6f_c00022{left:426.344147pt;}
.x92_c00022{left:428.160000pt;}
.x64_c00022{left:429.227547pt;}
.x27_c00022{left:430.223067pt;}
.x47_c00022{left:434.795387pt;}
.x86_c00022{left:437.784547pt;}
.xb4_c00022{left:439.920000pt;}
.x41_c00022{left:443.858160pt;}
.x9e_c00022{left:444.960000pt;}
.x4f_c00022{left:448.193040pt;}
.x5b_c00022{left:449.169333pt;}
.xae_c00022{left:450.480000pt;}
.x42_c00022{left:454.905933pt;}
.x75_c00022{left:456.602093pt;}
.x48_c00022{left:457.844253pt;}
.x8e_c00022{left:458.904440pt;}
.x69_c00022{left:461.780733pt;}
.xa8_c00022{left:463.200000pt;}
.x93_c00022{left:464.640000pt;}
.xa_c00022{left:467.388000pt;}
.x28_c00022{left:468.388013pt;}
.x16_c00022{left:469.578667pt;}
.x87_c00022{left:475.466987pt;}
.x43_c00022{left:478.718787pt;}
.x1e_c00022{left:480.582253pt;}
.xa9_c00022{left:482.400000pt;}
.x7b_c00022{left:484.876920pt;}
.x50_c00022{left:486.801427pt;}
.x9d_c00022{left:488.160000pt;}
.x81_c00022{left:489.472600pt;}
.x99_c00022{left:491.760000pt;}
.x29_c00022{left:497.663720pt;}
.x3a_c00022{left:500.022000pt;}
.x31_c00022{left:502.215973pt;}
.x17_c00022{left:503.174667pt;}
.x76_c00022{left:505.073733pt;}
.x8f_c00022{left:506.426520pt;}
.x1f_c00022{left:509.912627pt;}
.x51_c00022{left:510.839000pt;}
.x82_c00022{left:512.758400pt;}
.x70_c00022{left:513.709440pt;}
.xb_c00022{left:515.630667pt;}
.x7c_c00022{left:520.425987pt;}
.x6a_c00022{left:525.384427pt;}
.xaf_c00022{left:544.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8e_c00023{transform:matrix(0.012320,-0.000099,0.002000,0.249992,0,0);-ms-transform:matrix(0.012320,-0.000099,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012320,-0.000099,0.002000,0.249992,0,0);}
.m8d_c00023{transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);-ms-transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);-webkit-transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);}
.m55_c00023{transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{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);}
.m1c_c00023{transform:matrix(0.034862,-0.000418,0.003000,0.249982,0,0);-ms-transform:matrix(0.034862,-0.000418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.034862,-0.000418,0.003000,0.249982,0,0);}
.m66_c00023{transform:matrix(0.048485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048485,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081395,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.091197,-0.001186,0.003250,0.249979,0,0);-ms-transform:matrix(0.091197,-0.001186,0.003250,0.249979,0,0);-webkit-transform:matrix(0.091197,-0.001186,0.003250,0.249979,0,0);}
.m70_c00023{transform:matrix(0.097970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097970,0.000000,0.000000,0.250000,0,0);}
.m7e_c00023{transform:matrix(0.098677,-0.000789,0.002000,0.249992,0,0);-ms-transform:matrix(0.098677,-0.000789,0.002000,0.249992,0,0);-webkit-transform:matrix(0.098677,-0.000789,0.002000,0.249992,0,0);}
.m8_c00023{transform:matrix(0.100327,-0.001304,0.003250,0.249979,0,0);-ms-transform:matrix(0.100327,-0.001304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.100327,-0.001304,0.003250,0.249979,0,0);}
.m6f_c00023{transform:matrix(0.105405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105405,0.000000,0.000000,0.250000,0,0);}
.m63_c00023{transform:matrix(0.106975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106975,0.000000,0.000000,0.250000,0,0);}
.m67_c00023{transform:matrix(0.108910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108910,0.000000,0.000000,0.250000,0,0);}
.m90_c00023{transform:matrix(0.113451,-0.000908,0.002000,0.249992,0,0);-ms-transform:matrix(0.113451,-0.000908,0.002000,0.249992,0,0);-webkit-transform:matrix(0.113451,-0.000908,0.002000,0.249992,0,0);}
.m61_c00023{transform:matrix(0.121355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121355,0.000000,0.000000,0.250000,0,0);}
.m68_c00023{transform:matrix(0.129715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129715,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.132520,-0.001590,0.003000,0.249982,0,0);-ms-transform:matrix(0.132520,-0.001590,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132520,-0.001590,0.003000,0.249982,0,0);}
.m87_c00023{transform:matrix(0.141215,-0.001130,0.002000,0.249992,0,0);-ms-transform:matrix(0.141215,-0.001130,0.002000,0.249992,0,0);-webkit-transform:matrix(0.141215,-0.001130,0.002000,0.249992,0,0);}
.m80_c00023{transform:matrix(0.142365,-0.001139,0.002000,0.249992,0,0);-ms-transform:matrix(0.142365,-0.001139,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142365,-0.001139,0.002000,0.249992,0,0);}
.m1_c00023{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);}
.m86_c00023{transform:matrix(0.146810,-0.001174,0.002000,0.249992,0,0);-ms-transform:matrix(0.146810,-0.001174,0.002000,0.249992,0,0);-webkit-transform:matrix(0.146810,-0.001174,0.002000,0.249992,0,0);}
.m82_c00023{transform:matrix(0.150235,-0.001202,0.002000,0.249992,0,0);-ms-transform:matrix(0.150235,-0.001202,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150235,-0.001202,0.002000,0.249992,0,0);}
.m24_c00023{transform:matrix(0.151794,-0.001822,0.003000,0.249982,0,0);-ms-transform:matrix(0.151794,-0.001822,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151794,-0.001822,0.003000,0.249982,0,0);}
.m26_c00023{transform:matrix(0.152139,-0.001826,0.003000,0.249982,0,0);-ms-transform:matrix(0.152139,-0.001826,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152139,-0.001826,0.003000,0.249982,0,0);}
.m30_c00023{transform:matrix(0.155832,-0.002026,0.003250,0.249979,0,0);-ms-transform:matrix(0.155832,-0.002026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155832,-0.002026,0.003250,0.249979,0,0);}
.m3c_c00023{transform:matrix(0.156274,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156274,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156274,-0.001875,0.003000,0.249982,0,0);}
.m50_c00023{transform:matrix(0.156637,-0.001566,0.002500,0.249988,0,0);-ms-transform:matrix(0.156637,-0.001566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156637,-0.001566,0.002500,0.249988,0,0);}
.m6d_c00023{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);}
.m62_c00023{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);}
.m39_c00023{transform:matrix(0.160113,-0.001921,0.003000,0.249982,0,0);-ms-transform:matrix(0.160113,-0.001921,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160113,-0.001921,0.003000,0.249982,0,0);}
.m88_c00023{transform:matrix(0.160670,-0.001285,0.002000,0.249992,0,0);-ms-transform:matrix(0.160670,-0.001285,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160670,-0.001285,0.002000,0.249992,0,0);}
.m81_c00023{transform:matrix(0.162905,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162905,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162905,-0.001303,0.002000,0.249992,0,0);}
.m85_c00023{transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);-ms-transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);}
.m57_c00023{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);}
.m89_c00023{transform:matrix(0.165040,-0.001320,0.002000,0.249992,0,0);-ms-transform:matrix(0.165040,-0.001320,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165040,-0.001320,0.002000,0.249992,0,0);}
.m4c_c00023{transform:matrix(0.165107,-0.001651,0.002500,0.249988,0,0);-ms-transform:matrix(0.165107,-0.001651,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165107,-0.001651,0.002500,0.249988,0,0);}
.m3e_c00023{transform:matrix(0.165435,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165435,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165435,-0.001820,0.002750,0.249985,0,0);}
.m7d_c00023{transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);-ms-transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);}
.m2a_c00023{transform:matrix(0.166498,-0.001998,0.003000,0.249982,0,0);-ms-transform:matrix(0.166498,-0.001998,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166498,-0.001998,0.003000,0.249982,0,0);}
.m83_c00023{transform:matrix(0.166695,-0.001334,0.002000,0.249992,0,0);-ms-transform:matrix(0.166695,-0.001334,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166695,-0.001334,0.002000,0.249992,0,0);}
.m6b_c00023{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);}
.m17_c00023{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);}
.me_c00023{transform:matrix(0.170851,-0.002221,0.003250,0.249979,0,0);-ms-transform:matrix(0.170851,-0.002221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170851,-0.002221,0.003250,0.249979,0,0);}
.m22_c00023{transform:matrix(0.171133,-0.002054,0.003000,0.249982,0,0);-ms-transform:matrix(0.171133,-0.002054,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171133,-0.002054,0.003000,0.249982,0,0);}
.m20_c00023{transform:matrix(0.172173,-0.002066,0.003000,0.249982,0,0);-ms-transform:matrix(0.172173,-0.002066,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172173,-0.002066,0.003000,0.249982,0,0);}
.m1b_c00023{transform:matrix(0.173608,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173608,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173608,-0.002083,0.003000,0.249982,0,0);}
.m6e_c00023{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);}
.m42_c00023{transform:matrix(0.174584,-0.001920,0.002750,0.249985,0,0);-ms-transform:matrix(0.174584,-0.001920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174584,-0.001920,0.002750,0.249985,0,0);}
.m58_c00023{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);}
.m84_c00023{transform:matrix(0.177229,-0.001418,0.002000,0.249992,0,0);-ms-transform:matrix(0.177229,-0.001418,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177229,-0.001418,0.002000,0.249992,0,0);}
.m1e_c00023{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);}
.m31_c00023{transform:matrix(0.178905,-0.002326,0.003250,0.249979,0,0);-ms-transform:matrix(0.178905,-0.002326,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178905,-0.002326,0.003250,0.249979,0,0);}
.m43_c00023{transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);-ms-transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);}
.m7b_c00023{transform:matrix(0.180724,-0.001446,0.002000,0.249992,0,0);-ms-transform:matrix(0.180724,-0.001446,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180724,-0.001446,0.002000,0.249992,0,0);}
.m47_c00023{transform:matrix(0.181846,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181846,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181846,-0.001818,0.002500,0.249988,0,0);}
.m2d_c00023{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);}
.m4d_c00023{transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);-ms-transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);}
.m41_c00023{transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);}
.m72_c00023{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);}
.m1f_c00023{transform:matrix(0.185922,-0.002231,0.003000,0.249982,0,0);-ms-transform:matrix(0.185922,-0.002231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185922,-0.002231,0.003000,0.249982,0,0);}
.m48_c00023{transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);-ms-transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);}
.m18_c00023{transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);-ms-transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);}
.m21_c00023{transform:matrix(0.187202,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187202,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187202,-0.002246,0.003000,0.249982,0,0);}
.m3f_c00023{transform:matrix(0.187299,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187299,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187299,-0.002060,0.002750,0.249985,0,0);}
.m40_c00023{transform:matrix(0.187514,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187514,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187514,-0.002063,0.002750,0.249985,0,0);}
.m15_c00023{transform:matrix(0.188151,-0.002258,0.003000,0.249982,0,0);-ms-transform:matrix(0.188151,-0.002258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188151,-0.002258,0.003000,0.249982,0,0);}
.m44_c00023{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);}
.m37_c00023{transform:matrix(0.188516,-0.002262,0.003000,0.249982,0,0);-ms-transform:matrix(0.188516,-0.002262,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188516,-0.002262,0.003000,0.249982,0,0);}
.m13_c00023{transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);}
.m1d_c00023{transform:matrix(0.190611,-0.002287,0.003000,0.249982,0,0);-ms-transform:matrix(0.190611,-0.002287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190611,-0.002287,0.003000,0.249982,0,0);}
.m28_c00023{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);}
.m77_c00023{transform:matrix(0.192849,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192849,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192849,-0.001543,0.002000,0.249992,0,0);}
.m29_c00023{transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);}
.m74_c00023{transform:matrix(0.194859,-0.001559,0.002000,0.249992,0,0);-ms-transform:matrix(0.194859,-0.001559,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194859,-0.001559,0.002000,0.249992,0,0);}
.m38_c00023{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);}
.m16_c00023{transform:matrix(0.195631,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195631,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195631,-0.002348,0.003000,0.249982,0,0);}
.mb_c00023{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);}
.m25_c00023{transform:matrix(0.197521,-0.002370,0.003000,0.249982,0,0);-ms-transform:matrix(0.197521,-0.002370,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197521,-0.002370,0.003000,0.249982,0,0);}
.m49_c00023{transform:matrix(0.198360,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198360,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198360,-0.001984,0.002500,0.249988,0,0);}
.m76_c00023{transform:matrix(0.198574,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198574,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198574,-0.001589,0.002000,0.249992,0,0);}
.m11_c00023{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);}
.m36_c00023{transform:matrix(0.199521,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199521,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199521,-0.002394,0.003000,0.249982,0,0);}
.m27_c00023{transform:matrix(0.199876,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199876,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199876,-0.002399,0.003000,0.249982,0,0);}
.m34_c00023{transform:matrix(0.200123,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200123,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200123,-0.002602,0.003250,0.249979,0,0);}
.m7a_c00023{transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);-ms-transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);}
.m3a_c00023{transform:matrix(0.201970,-0.002424,0.003000,0.249982,0,0);-ms-transform:matrix(0.201970,-0.002424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201970,-0.002424,0.003000,0.249982,0,0);}
.m12_c00023{transform:matrix(0.202580,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202580,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202580,-0.002431,0.003000,0.249982,0,0);}
.m4b_c00023{transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);}
.m4f_c00023{transform:matrix(0.205710,-0.002057,0.002500,0.249988,0,0);-ms-transform:matrix(0.205710,-0.002057,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205710,-0.002057,0.002500,0.249988,0,0);}
.m78_c00023{transform:matrix(0.207008,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.207008,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207008,-0.001656,0.002000,0.249992,0,0);}
.m1a_c00023{transform:matrix(0.207395,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207395,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207395,-0.002489,0.003000,0.249982,0,0);}
.m9_c00023{transform:matrix(0.207887,-0.002703,0.003250,0.249979,0,0);-ms-transform:matrix(0.207887,-0.002703,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207887,-0.002703,0.003250,0.249979,0,0);}
.m14_c00023{transform:matrix(0.208235,-0.002499,0.003000,0.249982,0,0);-ms-transform:matrix(0.208235,-0.002499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208235,-0.002499,0.003000,0.249982,0,0);}
.m4e_c00023{transform:matrix(0.208540,-0.002085,0.002500,0.249988,0,0);-ms-transform:matrix(0.208540,-0.002085,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208540,-0.002085,0.002500,0.249988,0,0);}
.m45_c00023{transform:matrix(0.209172,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209172,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209172,-0.002301,0.002750,0.249985,0,0);}
.m3_c00023{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);}
.m5e_c00023{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);}
.m79_c00023{transform:matrix(0.210518,-0.001684,0.002000,0.249992,0,0);-ms-transform:matrix(0.210518,-0.001684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210518,-0.001684,0.002000,0.249992,0,0);}
.m8a_c00023{transform:matrix(0.211378,-0.001691,0.002000,0.249992,0,0);-ms-transform:matrix(0.211378,-0.001691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211378,-0.001691,0.002000,0.249992,0,0);}
.m32_c00023{transform:matrix(0.212582,-0.002764,0.003250,0.249979,0,0);-ms-transform:matrix(0.212582,-0.002764,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212582,-0.002764,0.003250,0.249979,0,0);}
.mf_c00023{transform:matrix(0.213052,-0.002770,0.003250,0.249979,0,0);-ms-transform:matrix(0.213052,-0.002770,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213052,-0.002770,0.003250,0.249979,0,0);}
.m2f_c00023{transform:matrix(0.215252,-0.002798,0.003250,0.249979,0,0);-ms-transform:matrix(0.215252,-0.002798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215252,-0.002798,0.003250,0.249979,0,0);}
.m19_c00023{transform:matrix(0.217069,-0.002605,0.003000,0.249982,0,0);-ms-transform:matrix(0.217069,-0.002605,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217069,-0.002605,0.003000,0.249982,0,0);}
.ma_c00023{transform:matrix(0.226396,-0.002943,0.003250,0.249979,0,0);-ms-transform:matrix(0.226396,-0.002943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226396,-0.002943,0.003250,0.249979,0,0);}
.m5b_c00023{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);}
.m4_c00023{transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.233240,-0.003032,0.003250,0.249979,0,0);-ms-transform:matrix(0.233240,-0.003032,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233240,-0.003032,0.003250,0.249979,0,0);}
.m6c_c00023{transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);}
.m91_c00023{transform:matrix(0.233793,-0.001870,0.002000,0.249992,0,0);-ms-transform:matrix(0.233793,-0.001870,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233793,-0.001870,0.002000,0.249992,0,0);}
.m2e_c00023{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);}
.m5_c00023{transform:matrix(0.237495,-0.003087,0.003250,0.249979,0,0);-ms-transform:matrix(0.237495,-0.003087,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237495,-0.003087,0.003250,0.249979,0,0);}
.m7c_c00023{transform:matrix(0.239422,-0.001915,0.002000,0.249992,0,0);-ms-transform:matrix(0.239422,-0.001915,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239422,-0.001915,0.002000,0.249992,0,0);}
.m73_c00023{transform:matrix(0.240057,-0.001920,0.002000,0.249992,0,0);-ms-transform:matrix(0.240057,-0.001920,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240057,-0.001920,0.002000,0.249992,0,0);}
.m2c_c00023{transform:matrix(0.240980,-0.003133,0.003250,0.249979,0,0);-ms-transform:matrix(0.240980,-0.003133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240980,-0.003133,0.003250,0.249979,0,0);}
.m4a_c00023{transform:matrix(0.242488,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242488,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242488,-0.002425,0.002500,0.249988,0,0);}
.m10_c00023{transform:matrix(0.244159,-0.003174,0.003250,0.249979,0,0);-ms-transform:matrix(0.244159,-0.003174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244159,-0.003174,0.003250,0.249979,0,0);}
.m8b_c00023{transform:matrix(0.245002,-0.001960,0.002000,0.249992,0,0);-ms-transform:matrix(0.245002,-0.001960,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245002,-0.001960,0.002000,0.249992,0,0);}
.m46_c00023{transform:matrix(0.268759,-0.002956,0.002750,0.249985,0,0);-ms-transform:matrix(0.268759,-0.002956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268759,-0.002956,0.002750,0.249985,0,0);}
.m7f_c00023{transform:matrix(0.269321,-0.002155,0.002000,0.249992,0,0);-ms-transform:matrix(0.269321,-0.002155,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269321,-0.002155,0.002000,0.249992,0,0);}
.m5f_c00023{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);}
.m75_c00023{transform:matrix(0.271256,-0.002170,0.002000,0.249992,0,0);-ms-transform:matrix(0.271256,-0.002170,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271256,-0.002170,0.002000,0.249992,0,0);}
.m51_c00023{transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);}
.m6a_c00023{transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.291959,-0.003504,0.003000,0.249982,0,0);-ms-transform:matrix(0.291959,-0.003504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291959,-0.003504,0.003000,0.249982,0,0);}
.m6_c00023{transform:matrix(0.299475,-0.003893,0.003250,0.249979,0,0);-ms-transform:matrix(0.299475,-0.003893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.299475,-0.003893,0.003250,0.249979,0,0);}
.m3d_c00023{transform:matrix(0.300042,-0.003300,0.002750,0.249985,0,0);-ms-transform:matrix(0.300042,-0.003300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300042,-0.003300,0.002750,0.249985,0,0);}
.m54_c00023{transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307040,0.000000,0.000000,0.250000,0,0);}
.m64_c00023{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);}
.mc_c00023{transform:matrix(0.325138,-0.004227,0.003250,0.249979,0,0);-ms-transform:matrix(0.325138,-0.004227,0.003250,0.249979,0,0);-webkit-transform:matrix(0.325138,-0.004227,0.003250,0.249979,0,0);}
.m33_c00023{transform:matrix(0.327427,-0.004257,0.003250,0.249979,0,0);-ms-transform:matrix(0.327427,-0.004257,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327427,-0.004257,0.003250,0.249979,0,0);}
.m65_c00023{transform:matrix(0.367345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367345,0.000000,0.000000,0.250000,0,0);}
.m69_c00023{transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.375788,-0.004885,0.003250,0.249979,0,0);-ms-transform:matrix(0.375788,-0.004885,0.003250,0.249979,0,0);-webkit-transform:matrix(0.375788,-0.004885,0.003250,0.249979,0,0);}
.m0_c00023{transform:matrix(0.375940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375940,0.000000,0.000000,0.250000,0,0);}
.m56_c00023{transform:matrix(0.407680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407680,0.000000,0.000000,0.250000,0,0);}
.m5c_c00023{transform:matrix(0.411845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411845,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.431679,-0.005180,0.003000,0.249982,0,0);-ms-transform:matrix(0.431679,-0.005180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.431679,-0.005180,0.003000,0.249982,0,0);}
.m92_c00023{transform:matrix(0.434835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434835,0.000000,0.000000,0.250000,0,0);}
.m8f_c00023{transform:matrix(0.513474,-0.004108,0.002000,0.249992,0,0);-ms-transform:matrix(0.513474,-0.004108,0.002000,0.249992,0,0);-webkit-transform:matrix(0.513474,-0.004108,0.002000,0.249992,0,0);}
.m8c_c00023{transform:matrix(0.576987,-0.004616,0.002000,0.249992,0,0);-ms-transform:matrix(0.576987,-0.004616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.576987,-0.004616,0.002000,0.249992,0,0);}
.m60_c00023{transform:matrix(0.599185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599185,0.000000,0.000000,0.250000,0,0);}
.m5a_c00023{transform:matrix(0.665710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665710,0.000000,0.000000,0.250000,0,0);}
.m5d_c00023{transform:matrix(0.730805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730805,0.000000,0.000000,0.250000,0,0);}
.m71_c00023{transform:matrix(0.835265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835265,0.000000,0.000000,0.250000,0,0);}
.m59_c00023{transform:matrix(0.894590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894590,0.000000,0.000000,0.250000,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;}
.fs8_c00023{font-size:22.050000px;}
.fs9_c00023{font-size:24.150000px;}
.fsa_c00023{font-size:31.500000px;}
.fsb_c00023{font-size:43.050000px;}
.fs1_c00023{font-size:61.955235px;}
.fsc_c00023{font-size:64.052050px;}
.fs5_c00023{font-size:67.204838px;}
.fse_c00023{font-size:69.302218px;}
.fs7_c00023{font-size:69.303465px;}
.fs2_c00023{font-size:69.304989px;}
.fs4_c00023{font-size:69.305856px;}
.fsf_c00023{font-size:70.350000px;}
.fs6_c00023{font-size:70.354256px;}
.fs3_c00023{font-size:71.405141px;}
.fsd_c00023{font-size:82.952654px;}
.fs0_c00023{font-size:136.500000px;}
.y0_c00023{bottom:0.000000px;}
.y72_c00023{bottom:201.829500px;}
.y70_c00023{bottom:661.591176px;}
.y6c_c00023{bottom:661.591344px;}
.y71_c00023{bottom:661.591380px;}
.y6f_c00023{bottom:661.591680px;}
.y6d_c00023{bottom:661.591788px;}
.y6e_c00023{bottom:661.591812px;}
.y60_c00023{bottom:683.371392px;}
.y61_c00023{bottom:683.859576px;}
.y62_c00023{bottom:684.059184px;}
.y63_c00023{bottom:684.526440px;}
.y64_c00023{bottom:684.895260px;}
.y65_c00023{bottom:685.480008px;}
.y66_c00023{bottom:685.830384px;}
.y67_c00023{bottom:686.062968px;}
.y68_c00023{bottom:686.378640px;}
.y69_c00023{bottom:686.909868px;}
.y6a_c00023{bottom:687.161028px;}
.y6b_c00023{bottom:688.588224px;}
.y53_c00023{bottom:706.861500px;}
.y54_c00023{bottom:707.247924px;}
.y55_c00023{bottom:707.891568px;}
.y56_c00023{bottom:708.087876px;}
.y57_c00023{bottom:708.323364px;}
.y58_c00023{bottom:708.809628px;}
.y59_c00023{bottom:709.148784px;}
.y5a_c00023{bottom:709.459836px;}
.y5b_c00023{bottom:709.678176px;}
.y5c_c00023{bottom:710.125380px;}
.y5d_c00023{bottom:710.583096px;}
.y5e_c00023{bottom:710.690724px;}
.y5f_c00023{bottom:711.498972px;}
.y44_c00023{bottom:729.811500px;}
.y45_c00023{bottom:730.621455px;}
.y46_c00023{bottom:730.883400px;}
.y47_c00023{bottom:731.593410px;}
.y48_c00023{bottom:731.793315px;}
.y49_c00023{bottom:732.521955px;}
.y4a_c00023{bottom:732.892380px;}
.y4b_c00023{bottom:733.251105px;}
.y4c_c00023{bottom:734.075025px;}
.y4d_c00023{bottom:734.447550px;}
.y51_c00023{bottom:743.310000px;}
.y4f_c00023{bottom:746.010000px;}
.y52_c00023{bottom:747.090000px;}
.y3a_c00023{bottom:752.419500px;}
.y3b_c00023{bottom:752.820549px;}
.y3c_c00023{bottom:753.019044px;}
.y3d_c00023{bottom:753.892719px;}
.y3e_c00023{bottom:754.748030px;}
.y3f_c00023{bottom:755.161124px;}
.y40_c00023{bottom:755.600651px;}
.y41_c00023{bottom:756.069812px;}
.y42_c00023{bottom:756.295548px;}
.y43_c00023{bottom:756.849370px;}
.y32_c00023{bottom:774.903000px;}
.y33_c00023{bottom:775.145748px;}
.y34_c00023{bottom:775.826094px;}
.y35_c00023{bottom:776.720262px;}
.y36_c00023{bottom:776.972334px;}
.y37_c00023{bottom:777.274680px;}
.y38_c00023{bottom:779.512548px;}
.y39_c00023{bottom:780.303252px;}
.y4e_c00023{bottom:787.050000px;}
.y28_c00023{bottom:797.686500px;}
.y29_c00023{bottom:797.851451px;}
.y2a_c00023{bottom:798.226436px;}
.y2b_c00023{bottom:798.827133px;}
.y2c_c00023{bottom:799.792676px;}
.y2d_c00023{bottom:800.364767px;}
.y2e_c00023{bottom:800.744042px;}
.y2f_c00023{bottom:801.398618px;}
.y30_c00023{bottom:802.294467px;}
.y31_c00023{bottom:803.038470px;}
.y25_c00023{bottom:821.997282px;}
.y27_c00023{bottom:821.997552px;}
.y26_c00023{bottom:821.997624px;}
.y24_c00023{bottom:821.997876px;}
.y22_c00023{bottom:821.998332px;}
.y23_c00023{bottom:821.998434px;}
.y19_c00023{bottom:842.941500px;}
.y1a_c00023{bottom:843.130842px;}
.y1b_c00023{bottom:843.988794px;}
.y1c_c00023{bottom:844.504854px;}
.y1d_c00023{bottom:845.751696px;}
.y1e_c00023{bottom:846.166614px;}
.y1f_c00023{bottom:847.446432px;}
.y20_c00023{bottom:847.951908px;}
.y21_c00023{bottom:848.726214px;}
.ye_c00023{bottom:866.701500px;}
.yf_c00023{bottom:867.249132px;}
.y10_c00023{bottom:867.965010px;}
.y11_c00023{bottom:868.347294px;}
.y12_c00023{bottom:868.920972px;}
.y13_c00023{bottom:869.856684px;}
.y14_c00023{bottom:870.343422px;}
.y15_c00023{bottom:870.920178px;}
.y16_c00023{bottom:871.555254px;}
.y17_c00023{bottom:872.096226px;}
.y18_c00023{bottom:872.274642px;}
.y2_c00023{bottom:888.573000px;}
.y3_c00023{bottom:889.131811px;}
.y4_c00023{bottom:889.413918px;}
.y5_c00023{bottom:890.164863px;}
.y6_c00023{bottom:890.341299px;}
.y7_c00023{bottom:890.654625px;}
.y8_c00023{bottom:891.956679px;}
.y9_c00023{bottom:892.240092px;}
.ya_c00023{bottom:892.677029px;}
.yb_c00023{bottom:892.890475px;}
.yc_c00023{bottom:893.206531px;}
.yd_c00023{bottom:894.210391px;}
.y50_c00023{bottom:912.870000px;}
.y1_c00023{bottom:933.397500px;}
.ha_c00023{height:22.050000px;}
.hb_c00023{height:24.150000px;}
.hc_c00023{height:31.500000px;}
.hd_c00023{height:43.050000px;}
.h3_c00023{height:61.955235px;}
.he_c00023{height:64.052050px;}
.h7_c00023{height:67.204838px;}
.h10_c00023{height:69.302218px;}
.h9_c00023{height:69.303465px;}
.h4_c00023{height:69.304989px;}
.h6_c00023{height:69.305856px;}
.h11_c00023{height:70.350000px;}
.h8_c00023{height:70.354256px;}
.h5_c00023{height:71.405141px;}
.hf_c00023{height:82.952654px;}
.h2_c00023{height:136.500000px;}
.h0_c00023{height:1086.450000px;}
.h1_c00023{height:1086.750000px;}
.w1_c00023{width:771.000000px;}
.w0_c00023{width:771.120000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:129.870000px;}
.x1a_c00023{left:166.674000px;}
.x2_c00023{left:183.060000px;}
.x26_c00023{left:189.166500px;}
.x37_c00023{left:195.084000px;}
.x27_c00023{left:201.855000px;}
.x30_c00023{left:203.214000px;}
.x22_c00023{left:213.301494px;}
.x6_c00023{left:225.421500px;}
.x11_c00023{left:227.787000px;}
.x28_c00023{left:230.700000px;}
.x4d_c00023{left:232.306500px;}
.x55_c00023{left:238.262976px;}
.x3_c00023{left:244.350000px;}
.x7_c00023{left:247.122000px;}
.x38_c00023{left:249.588000px;}
.x1b_c00023{left:253.948500px;}
.x31_c00023{left:259.909500px;}
.x3f_c00023{left:264.727500px;}
.x29_c00023{left:276.907500px;}
.x23_c00023{left:282.965538px;}
.x12_c00023{left:287.443500px;}
.x40_c00023{left:290.922000px;}
.x1c_c00023{left:296.953500px;}
.x8_c00023{left:304.887000px;}
.x24_c00023{left:306.997494px;}
.x4e_c00023{left:312.762000px;}
.x9_c00023{left:318.459000px;}
.x5d_c00023{left:326.160732px;}
.x39_c00023{left:329.013000px;}
.x32_c00023{left:334.423500px;}
.x4f_c00023{left:337.300500px;}
.xa_c00023{left:342.561000px;}
.x2a_c00023{left:351.180000px;}
.x56_c00023{left:353.285052px;}
.x33_c00023{left:355.429500px;}
.x41_c00023{left:361.923000px;}
.x13_c00023{left:367.107000px;}
.x34_c00023{left:380.625000px;}
.x42_c00023{left:381.913500px;}
.x25_c00023{left:388.003158px;}
.x2b_c00023{left:395.187000px;}
.x4_c00023{left:398.520000px;}
.x1d_c00023{left:400.857000px;}
.x3a_c00023{left:406.768500px;}
.x57_c00023{left:418.315536px;}
.x2c_c00023{left:424.362000px;}
.x50_c00023{left:427.519500px;}
.x1e_c00023{left:435.433500px;}
.xb_c00023{left:442.719000px;}
.x14_c00023{left:445.083000px;}
.x5_c00023{left:447.120000px;}
.x43_c00023{left:454.777500px;}
.x58_c00023{left:457.237224px;}
.xc_c00023{left:464.520000px;}
.x51_c00023{left:469.914000px;}
.x5e_c00023{left:472.235580px;}
.x2d_c00023{left:474.714000px;}
.x59_c00023{left:483.122520px;}
.x3b_c00023{left:484.279500px;}
.x15_c00023{left:485.644500px;}
.x44_c00023{left:491.820000px;}
.xd_c00023{left:498.130500px;}
.x52_c00023{left:508.795500px;}
.xe_c00023{left:514.549500px;}
.x5a_c00023{left:518.268744px;}
.x3c_c00023{left:526.930500px;}
.x16_c00023{left:533.707500px;}
.x46_c00023{left:536.220000px;}
.x5f_c00023{left:537.848280px;}
.xf_c00023{left:538.861500px;}
.x1f_c00023{left:542.085000px;}
.x2e_c00023{left:543.625500px;}
.x3d_c00023{left:547.452000px;}
.x35_c00023{left:567.114000px;}
.x61_c00023{left:574.020000px;}
.x5b_c00023{left:577.359276px;}
.x20_c00023{left:584.208000px;}
.x17_c00023{left:586.630500px;}
.x53_c00023{left:591.988500px;}
.x3e_c00023{left:597.799500px;}
.x2f_c00023{left:600.856500px;}
.x5c_c00023{left:605.191548px;}
.x45_c00023{left:610.084500px;}
.x10_c00023{left:616.081500px;}
.x60_c00023{left:618.040416px;}
.x18_c00023{left:631.711500px;}
.x36_c00023{left:633.006000px;}
.x19_c00023{left:646.579500px;}
.x21_c00023{left:648.733500px;}
.x54_c00023{left:662.656500px;}
.x48_c00023{left:751.140000px;}
.x47_c00023{left:753.030000px;}
.x4a_c00023{left:757.890000px;}
.x49_c00023{left:759.240000px;}
.x4c_c00023{left:761.940000px;}
.x4b_c00023{left:763.020000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs8_c00023{font-size:19.600000pt;}
.fs9_c00023{font-size:21.466667pt;}
.fsa_c00023{font-size:28.000000pt;}
.fsb_c00023{font-size:38.266667pt;}
.fs1_c00023{font-size:55.071320pt;}
.fsc_c00023{font-size:56.935155pt;}
.fs5_c00023{font-size:59.737634pt;}
.fse_c00023{font-size:61.601971pt;}
.fs7_c00023{font-size:61.603080pt;}
.fs2_c00023{font-size:61.604435pt;}
.fs4_c00023{font-size:61.605205pt;}
.fsf_c00023{font-size:62.533333pt;}
.fs6_c00023{font-size:62.537116pt;}
.fs3_c00023{font-size:63.471236pt;}
.fsd_c00023{font-size:73.735693pt;}
.fs0_c00023{font-size:121.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y72_c00023{bottom:179.404000pt;}
.y70_c00023{bottom:588.081045pt;}
.y6c_c00023{bottom:588.081195pt;}
.y71_c00023{bottom:588.081227pt;}
.y6f_c00023{bottom:588.081493pt;}
.y6d_c00023{bottom:588.081589pt;}
.y6e_c00023{bottom:588.081611pt;}
.y60_c00023{bottom:607.441237pt;}
.y61_c00023{bottom:607.875179pt;}
.y62_c00023{bottom:608.052608pt;}
.y63_c00023{bottom:608.467947pt;}
.y64_c00023{bottom:608.795787pt;}
.y65_c00023{bottom:609.315563pt;}
.y66_c00023{bottom:609.627008pt;}
.y67_c00023{bottom:609.833749pt;}
.y68_c00023{bottom:610.114347pt;}
.y69_c00023{bottom:610.586549pt;}
.y6a_c00023{bottom:610.809803pt;}
.y6b_c00023{bottom:612.078421pt;}
.y53_c00023{bottom:628.321333pt;}
.y54_c00023{bottom:628.664821pt;}
.y55_c00023{bottom:629.236949pt;}
.y56_c00023{bottom:629.411445pt;}
.y57_c00023{bottom:629.620768pt;}
.y58_c00023{bottom:630.053003pt;}
.y59_c00023{bottom:630.354475pt;}
.y5a_c00023{bottom:630.630965pt;}
.y5b_c00023{bottom:630.825045pt;}
.y5c_c00023{bottom:631.222560pt;}
.y5d_c00023{bottom:631.629419pt;}
.y5e_c00023{bottom:631.725088pt;}
.y5f_c00023{bottom:632.443531pt;}
.y44_c00023{bottom:648.721333pt;}
.y45_c00023{bottom:649.441293pt;}
.y46_c00023{bottom:649.674133pt;}
.y47_c00023{bottom:650.305253pt;}
.y48_c00023{bottom:650.482947pt;}
.y49_c00023{bottom:651.130627pt;}
.y4a_c00023{bottom:651.459893pt;}
.y4b_c00023{bottom:651.778760pt;}
.y4c_c00023{bottom:652.511133pt;}
.y4d_c00023{bottom:652.842267pt;}
.y51_c00023{bottom:660.720000pt;}
.y4f_c00023{bottom:663.120000pt;}
.y52_c00023{bottom:664.080000pt;}
.y3a_c00023{bottom:668.817333pt;}
.y3b_c00023{bottom:669.173821pt;}
.y3c_c00023{bottom:669.350261pt;}
.y3d_c00023{bottom:670.126861pt;}
.y3e_c00023{bottom:670.887137pt;}
.y3f_c00023{bottom:671.254332pt;}
.y40_c00023{bottom:671.645023pt;}
.y41_c00023{bottom:672.062055pt;}
.y42_c00023{bottom:672.262709pt;}
.y43_c00023{bottom:672.754996pt;}
.y32_c00023{bottom:688.802667pt;}
.y33_c00023{bottom:689.018443pt;}
.y34_c00023{bottom:689.623195pt;}
.y35_c00023{bottom:690.418011pt;}
.y36_c00023{bottom:690.642075pt;}
.y37_c00023{bottom:690.910827pt;}
.y38_c00023{bottom:692.900043pt;}
.y39_c00023{bottom:693.602891pt;}
.y4e_c00023{bottom:699.600000pt;}
.y28_c00023{bottom:709.054667pt;}
.y29_c00023{bottom:709.201289pt;}
.y2a_c00023{bottom:709.534609pt;}
.y2b_c00023{bottom:710.068563pt;}
.y2c_c00023{bottom:710.926823pt;}
.y2d_c00023{bottom:711.435348pt;}
.y2e_c00023{bottom:711.772481pt;}
.y2f_c00023{bottom:712.354327pt;}
.y30_c00023{bottom:713.150637pt;}
.y31_c00023{bottom:713.811973pt;}
.y25_c00023{bottom:730.664251pt;}
.y27_c00023{bottom:730.664491pt;}
.y26_c00023{bottom:730.664555pt;}
.y24_c00023{bottom:730.664779pt;}
.y22_c00023{bottom:730.665184pt;}
.y23_c00023{bottom:730.665275pt;}
.y19_c00023{bottom:749.281333pt;}
.y1a_c00023{bottom:749.449637pt;}
.y1b_c00023{bottom:750.212261pt;}
.y1c_c00023{bottom:750.670981pt;}
.y1d_c00023{bottom:751.779285pt;}
.y1e_c00023{bottom:752.148101pt;}
.y1f_c00023{bottom:753.285717pt;}
.y20_c00023{bottom:753.735029pt;}
.y21_c00023{bottom:754.423301pt;}
.ye_c00023{bottom:770.401333pt;}
.yf_c00023{bottom:770.888117pt;}
.y10_c00023{bottom:771.524453pt;}
.y11_c00023{bottom:771.864261pt;}
.y12_c00023{bottom:772.374197pt;}
.y13_c00023{bottom:773.205941pt;}
.y14_c00023{bottom:773.638597pt;}
.y15_c00023{bottom:774.151269pt;}
.y16_c00023{bottom:774.715781pt;}
.y17_c00023{bottom:775.196645pt;}
.y18_c00023{bottom:775.355237pt;}
.y2_c00023{bottom:789.842667pt;}
.y3_c00023{bottom:790.339388pt;}
.y4_c00023{bottom:790.590149pt;}
.y5_c00023{bottom:791.257656pt;}
.y6_c00023{bottom:791.414488pt;}
.y7_c00023{bottom:791.693000pt;}
.y8_c00023{bottom:792.850381pt;}
.y9_c00023{bottom:793.102304pt;}
.ya_c00023{bottom:793.490692pt;}
.yb_c00023{bottom:793.680423pt;}
.yc_c00023{bottom:793.961361pt;}
.yd_c00023{bottom:794.853681pt;}
.y50_c00023{bottom:811.440000pt;}
.y1_c00023{bottom:829.686667pt;}
.ha_c00023{height:19.600000pt;}
.hb_c00023{height:21.466667pt;}
.hc_c00023{height:28.000000pt;}
.hd_c00023{height:38.266667pt;}
.h3_c00023{height:55.071320pt;}
.he_c00023{height:56.935155pt;}
.h7_c00023{height:59.737634pt;}
.h10_c00023{height:61.601971pt;}
.h9_c00023{height:61.603080pt;}
.h4_c00023{height:61.604435pt;}
.h6_c00023{height:61.605205pt;}
.h11_c00023{height:62.533333pt;}
.h8_c00023{height:62.537116pt;}
.h5_c00023{height:63.471236pt;}
.hf_c00023{height:73.735693pt;}
.h2_c00023{height:121.333333pt;}
.h0_c00023{height:965.733333pt;}
.h1_c00023{height:966.000000pt;}
.w1_c00023{width:685.333333pt;}
.w0_c00023{width:685.440000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:115.440000pt;}
.x1a_c00023{left:148.154667pt;}
.x2_c00023{left:162.720000pt;}
.x26_c00023{left:168.148000pt;}
.x37_c00023{left:173.408000pt;}
.x27_c00023{left:179.426667pt;}
.x30_c00023{left:180.634667pt;}
.x22_c00023{left:189.601328pt;}
.x6_c00023{left:200.374667pt;}
.x11_c00023{left:202.477333pt;}
.x28_c00023{left:205.066667pt;}
.x4d_c00023{left:206.494667pt;}
.x55_c00023{left:211.789312pt;}
.x3_c00023{left:217.200000pt;}
.x7_c00023{left:219.664000pt;}
.x38_c00023{left:221.856000pt;}
.x1b_c00023{left:225.732000pt;}
.x31_c00023{left:231.030667pt;}
.x3f_c00023{left:235.313333pt;}
.x29_c00023{left:246.140000pt;}
.x23_c00023{left:251.524923pt;}
.x12_c00023{left:255.505333pt;}
.x40_c00023{left:258.597333pt;}
.x1c_c00023{left:263.958667pt;}
.x8_c00023{left:271.010667pt;}
.x24_c00023{left:272.886661pt;}
.x4e_c00023{left:278.010667pt;}
.x9_c00023{left:283.074667pt;}
.x5d_c00023{left:289.920651pt;}
.x39_c00023{left:292.456000pt;}
.x32_c00023{left:297.265333pt;}
.x4f_c00023{left:299.822667pt;}
.xa_c00023{left:304.498667pt;}
.x2a_c00023{left:312.160000pt;}
.x56_c00023{left:314.031157pt;}
.x33_c00023{left:315.937333pt;}
.x41_c00023{left:321.709333pt;}
.x13_c00023{left:326.317333pt;}
.x34_c00023{left:338.333333pt;}
.x42_c00023{left:339.478667pt;}
.x25_c00023{left:344.891696pt;}
.x2b_c00023{left:351.277333pt;}
.x4_c00023{left:354.240000pt;}
.x1d_c00023{left:356.317333pt;}
.x3a_c00023{left:361.572000pt;}
.x57_c00023{left:371.836032pt;}
.x2c_c00023{left:377.210667pt;}
.x50_c00023{left:380.017333pt;}
.x1e_c00023{left:387.052000pt;}
.xb_c00023{left:393.528000pt;}
.x14_c00023{left:395.629333pt;}
.x5_c00023{left:397.440000pt;}
.x43_c00023{left:404.246667pt;}
.x58_c00023{left:406.433088pt;}
.xc_c00023{left:412.906667pt;}
.x51_c00023{left:417.701333pt;}
.x5e_c00023{left:419.764960pt;}
.x2d_c00023{left:421.968000pt;}
.x59_c00023{left:429.442240pt;}
.x3b_c00023{left:430.470667pt;}
.x15_c00023{left:431.684000pt;}
.x44_c00023{left:437.173333pt;}
.xd_c00023{left:442.782667pt;}
.x52_c00023{left:452.262667pt;}
.xe_c00023{left:457.377333pt;}
.x5a_c00023{left:460.683328pt;}
.x3c_c00023{left:468.382667pt;}
.x16_c00023{left:474.406667pt;}
.x46_c00023{left:476.640000pt;}
.x5f_c00023{left:478.087360pt;}
.xf_c00023{left:478.988000pt;}
.x1f_c00023{left:481.853333pt;}
.x2e_c00023{left:483.222667pt;}
.x3d_c00023{left:486.624000pt;}
.x35_c00023{left:504.101333pt;}
.x61_c00023{left:510.240000pt;}
.x5b_c00023{left:513.208245pt;}
.x20_c00023{left:519.296000pt;}
.x17_c00023{left:521.449333pt;}
.x53_c00023{left:526.212000pt;}
.x3e_c00023{left:531.377333pt;}
.x2f_c00023{left:534.094667pt;}
.x5c_c00023{left:537.948043pt;}
.x45_c00023{left:542.297333pt;}
.x10_c00023{left:547.628000pt;}
.x60_c00023{left:549.369259pt;}
.x18_c00023{left:561.521333pt;}
.x36_c00023{left:562.672000pt;}
.x19_c00023{left:574.737333pt;}
.x21_c00023{left:576.652000pt;}
.x54_c00023{left:589.028000pt;}
.x48_c00023{left:667.680000pt;}
.x47_c00023{left:669.360000pt;}
.x4a_c00023{left:673.680000pt;}
.x49_c00023{left:674.880000pt;}
.x4c_c00023{left:677.280000pt;}
.x4b_c00023{left:678.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m81_c00024{transform:matrix(0.014839,0.000430,-0.007247,0.249895,0,0);-ms-transform:matrix(0.014839,0.000430,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.014839,0.000430,-0.007247,0.249895,0,0);}
.mb_c00024{transform:matrix(0.028210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028210,0.000000,0.000000,0.250000,0,0);}
.m7c_c00024{transform:matrix(0.029079,0.000785,-0.006748,0.249909,0,0);-ms-transform:matrix(0.029079,0.000785,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.029079,0.000785,-0.006748,0.249909,0,0);}
.m6a_c00024{transform:matrix(0.029899,0.000807,-0.006748,0.249909,0,0);-ms-transform:matrix(0.029899,0.000807,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.029899,0.000807,-0.006748,0.249909,0,0);}
.m74_c00024{transform:matrix(0.037071,0.001001,-0.006748,0.249909,0,0);-ms-transform:matrix(0.037071,0.001001,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.037071,0.001001,-0.006748,0.249909,0,0);}
.m5a_c00024{transform:matrix(0.055320,0.001494,-0.006748,0.249909,0,0);-ms-transform:matrix(0.055320,0.001494,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.055320,0.001494,-0.006748,0.249909,0,0);}
.m73_c00024{transform:matrix(0.058164,0.001570,-0.006748,0.249909,0,0);-ms-transform:matrix(0.058164,0.001570,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.058164,0.001570,-0.006748,0.249909,0,0);}
.m58_c00024{transform:matrix(0.059403,0.001604,-0.006748,0.249909,0,0);-ms-transform:matrix(0.059403,0.001604,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.059403,0.001604,-0.006748,0.249909,0,0);}
.m59_c00024{transform:matrix(0.080591,0.002176,-0.006748,0.249909,0,0);-ms-transform:matrix(0.080591,0.002176,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.080591,0.002176,-0.006748,0.249909,0,0);}
.ma1_c00024{transform:matrix(0.091292,0.002647,-0.007247,0.249895,0,0);-ms-transform:matrix(0.091292,0.002647,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.091292,0.002647,-0.007247,0.249895,0,0);}
.mc2_c00024{transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);}
.mc4_c00024{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);}
.m7b_c00024{transform:matrix(0.117232,0.003165,-0.006748,0.249909,0,0);-ms-transform:matrix(0.117232,0.003165,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.117232,0.003165,-0.006748,0.249909,0,0);}
.m45_c00024{transform:matrix(0.129338,0.003492,-0.006748,0.249909,0,0);-ms-transform:matrix(0.129338,0.003492,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.129338,0.003492,-0.006748,0.249909,0,0);}
.m0_c00024{transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136815,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.137022,0.003974,-0.007247,0.249895,0,0);-ms-transform:matrix(0.137022,0.003974,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.137022,0.003974,-0.007247,0.249895,0,0);}
.mc3_c00024{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);}
.m60_c00024{transform:matrix(0.143203,0.003866,-0.006748,0.249909,0,0);-ms-transform:matrix(0.143203,0.003866,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.143203,0.003866,-0.006748,0.249909,0,0);}
.m7e_c00024{transform:matrix(0.146132,0.003946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.146132,0.003946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.146132,0.003946,-0.006748,0.249909,0,0);}
.mb9_c00024{transform:matrix(0.146520,0.004693,-0.008004,0.249872,0,0);-ms-transform:matrix(0.146520,0.004693,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.146520,0.004693,-0.008004,0.249872,0,0);}
.m46_c00024{transform:matrix(0.148196,0.004001,-0.006748,0.249909,0,0);-ms-transform:matrix(0.148196,0.004001,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.148196,0.004001,-0.006748,0.249909,0,0);}
.m4f_c00024{transform:matrix(0.155148,0.004189,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155148,0.004189,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155148,0.004189,-0.006748,0.249909,0,0);}
.m65_c00024{transform:matrix(0.155768,0.004206,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155768,0.004206,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155768,0.004206,-0.006748,0.249909,0,0);}
.ma3_c00024{transform:matrix(0.157099,0.004556,-0.007247,0.249895,0,0);-ms-transform:matrix(0.157099,0.004556,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.157099,0.004556,-0.007247,0.249895,0,0);}
.mb7_c00024{transform:matrix(0.158469,0.005076,-0.008004,0.249872,0,0);-ms-transform:matrix(0.158469,0.005076,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.158469,0.005076,-0.008004,0.249872,0,0);}
.mac_c00024{transform:matrix(0.159543,0.004627,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159543,0.004627,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159543,0.004627,-0.007247,0.249895,0,0);}
.m78_c00024{transform:matrix(0.160611,0.004337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160611,0.004337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160611,0.004337,-0.006748,0.249909,0,0);}
.m47_c00024{transform:matrix(0.162716,0.004393,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162716,0.004393,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162716,0.004393,-0.006748,0.249909,0,0);}
.m61_c00024{transform:matrix(0.162781,0.004395,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162781,0.004395,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162781,0.004395,-0.006748,0.249909,0,0);}
.m95_c00024{transform:matrix(0.163571,0.004744,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163571,0.004744,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163571,0.004744,-0.007247,0.249895,0,0);}
.m3b_c00024{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);}
.m1c_c00024{transform:matrix(0.164506,0.004771,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164506,0.004771,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164506,0.004771,-0.007247,0.249895,0,0);}
.m1f_c00024{transform:matrix(0.164926,0.004783,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164926,0.004783,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164926,0.004783,-0.007247,0.249895,0,0);}
.ma5_c00024{transform:matrix(0.164946,0.004783,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164946,0.004783,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164946,0.004783,-0.007247,0.249895,0,0);}
.m88_c00024{transform:matrix(0.164956,0.004784,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164956,0.004784,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164956,0.004784,-0.007247,0.249895,0,0);}
.m9b_c00024{transform:matrix(0.166310,0.004823,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166310,0.004823,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166310,0.004823,-0.007247,0.249895,0,0);}
.m22_c00024{transform:matrix(0.167155,0.004847,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167155,0.004847,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167155,0.004847,-0.007247,0.249895,0,0);}
.m9c_c00024{transform:matrix(0.167680,0.004863,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167680,0.004863,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167680,0.004863,-0.007247,0.249895,0,0);}
.m6e_c00024{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);}
.m38_c00024{transform:matrix(0.168149,0.004540,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168149,0.004540,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168149,0.004540,-0.006748,0.249909,0,0);}
.m55_c00024{transform:matrix(0.168808,0.004558,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168808,0.004558,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168808,0.004558,-0.006748,0.249909,0,0);}
.m4c_c00024{transform:matrix(0.169548,0.004578,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169548,0.004578,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169548,0.004578,-0.006748,0.249909,0,0);}
.m52_c00024{transform:matrix(0.170203,0.004595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170203,0.004595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170203,0.004595,-0.006748,0.249909,0,0);}
.m8d_c00024{transform:matrix(0.170818,0.004954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170818,0.004954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170818,0.004954,-0.007247,0.249895,0,0);}
.m99_c00024{transform:matrix(0.171128,0.004963,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171128,0.004963,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171128,0.004963,-0.007247,0.249895,0,0);}
.m2e_c00024{transform:matrix(0.171723,0.004980,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171723,0.004980,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171723,0.004980,-0.007247,0.249895,0,0);}
.m64_c00024{transform:matrix(0.172017,0.004644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172017,0.004644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172017,0.004644,-0.006748,0.249909,0,0);}
.mb4_c00024{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);}
.ma4_c00024{transform:matrix(0.174722,0.005067,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174722,0.005067,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174722,0.005067,-0.007247,0.249895,0,0);}
.m7a_c00024{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);}
.m30_c00024{transform:matrix(0.175161,0.005080,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175161,0.005080,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175161,0.005080,-0.007247,0.249895,0,0);}
.m54_c00024{transform:matrix(0.175196,0.004730,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175196,0.004730,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175196,0.004730,-0.006748,0.249909,0,0);}
.m43_c00024{transform:matrix(0.175441,0.004737,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175441,0.004737,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175441,0.004737,-0.006748,0.249909,0,0);}
.m41_c00024{transform:matrix(0.175856,0.004748,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175856,0.004748,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175856,0.004748,-0.006748,0.249909,0,0);}
.m3f_c00024{transform:matrix(0.176026,0.004753,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176026,0.004753,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176026,0.004753,-0.006748,0.249909,0,0);}
.m68_c00024{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);}
.m21_c00024{transform:matrix(0.176531,0.005119,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176531,0.005119,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176531,0.005119,-0.007247,0.249895,0,0);}
.m3d_c00024{transform:matrix(0.176841,0.004775,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176841,0.004775,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176841,0.004775,-0.006748,0.249909,0,0);}
.m19_c00024{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);}
.m14_c00024{transform:matrix(0.177385,0.005144,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177385,0.005144,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177385,0.005144,-0.007247,0.249895,0,0);}
.m51_c00024{transform:matrix(0.177660,0.004797,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177660,0.004797,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177660,0.004797,-0.006748,0.249909,0,0);}
.m63_c00024{transform:matrix(0.177710,0.004798,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177710,0.004798,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177710,0.004798,-0.006748,0.249909,0,0);}
.m35_c00024{transform:matrix(0.177770,0.004800,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177770,0.004800,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177770,0.004800,-0.006748,0.249909,0,0);}
.m62_c00024{transform:matrix(0.179125,0.004836,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179125,0.004836,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179125,0.004836,-0.006748,0.249909,0,0);}
.m1b_c00024{transform:matrix(0.179135,0.005195,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179135,0.005195,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179135,0.005195,-0.007247,0.249895,0,0);}
.m5e_c00024{transform:matrix(0.179300,0.004841,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179300,0.004841,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179300,0.004841,-0.006748,0.249909,0,0);}
.m49_c00024{transform:matrix(0.179440,0.004845,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179440,0.004845,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179440,0.004845,-0.006748,0.249909,0,0);}
.m2f_c00024{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);}
.m2b_c00024{transform:matrix(0.180274,0.005228,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180274,0.005228,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180274,0.005228,-0.007247,0.249895,0,0);}
.mbe_c00024{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);}
.ma0_c00024{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);}
.m27_c00024{transform:matrix(0.180829,0.005244,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180829,0.005244,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180829,0.005244,-0.007247,0.249895,0,0);}
.m25_c00024{transform:matrix(0.181209,0.005255,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181209,0.005255,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181209,0.005255,-0.007247,0.249895,0,0);}
.m9d_c00024{transform:matrix(0.181329,0.005259,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181329,0.005259,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181329,0.005259,-0.007247,0.249895,0,0);}
.mae_c00024{transform:matrix(0.181814,0.005273,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181814,0.005273,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181814,0.005273,-0.007247,0.249895,0,0);}
.ma6_c00024{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);}
.m53_c00024{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);}
.m1a_c00024{transform:matrix(0.184038,0.005337,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184038,0.005337,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184038,0.005337,-0.007247,0.249895,0,0);}
.mba_c00024{transform:matrix(0.184350,0.005905,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184350,0.005905,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184350,0.005905,-0.008004,0.249872,0,0);}
.m5d_c00024{transform:matrix(0.184618,0.004985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184618,0.004985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184618,0.004985,-0.006748,0.249909,0,0);}
.m34_c00024{transform:matrix(0.184778,0.004989,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184778,0.004989,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184778,0.004989,-0.006748,0.249909,0,0);}
.ma8_c00024{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);}
.m48_c00024{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);}
.maa_c00024{transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);}
.m26_c00024{transform:matrix(0.185857,0.005390,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185857,0.005390,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185857,0.005390,-0.007247,0.249895,0,0);}
.m11_c00024{transform:matrix(0.186032,0.005395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186032,0.005395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186032,0.005395,-0.007247,0.249895,0,0);}
.mb2_c00024{transform:matrix(0.186070,0.005960,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186070,0.005960,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186070,0.005960,-0.008004,0.249872,0,0);}
.m96_c00024{transform:matrix(0.186597,0.005411,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186597,0.005411,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186597,0.005411,-0.007247,0.249895,0,0);}
.m16_c00024{transform:matrix(0.186746,0.005416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186746,0.005416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186746,0.005416,-0.007247,0.249895,0,0);}
.ma9_c00024{transform:matrix(0.186891,0.005420,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186891,0.005420,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186891,0.005420,-0.007247,0.249895,0,0);}
.m86_c00024{transform:matrix(0.187766,0.005445,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187766,0.005445,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187766,0.005445,-0.007247,0.249895,0,0);}
.m42_c00024{transform:matrix(0.187842,0.005072,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187842,0.005072,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187842,0.005072,-0.006748,0.249909,0,0);}
.m66_c00024{transform:matrix(0.189016,0.005103,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189016,0.005103,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189016,0.005103,-0.006748,0.249909,0,0);}
.m36_c00024{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);}
.m33_c00024{transform:matrix(0.190371,0.005140,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190371,0.005140,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190371,0.005140,-0.006748,0.249909,0,0);}
.m9a_c00024{transform:matrix(0.190980,0.005538,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190980,0.005538,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190980,0.005538,-0.007247,0.249895,0,0);}
.m4e_c00024{transform:matrix(0.191595,0.005173,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191595,0.005173,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191595,0.005173,-0.006748,0.249909,0,0);}
.m98_c00024{transform:matrix(0.192349,0.005578,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192349,0.005578,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192349,0.005578,-0.007247,0.249895,0,0);}
.m3e_c00024{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);}
.m3a_c00024{transform:matrix(0.192915,0.005209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192915,0.005209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192915,0.005209,-0.006748,0.249909,0,0);}
.m23_c00024{transform:matrix(0.193779,0.005620,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193779,0.005620,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193779,0.005620,-0.007247,0.249895,0,0);}
.mab_c00024{transform:matrix(0.195093,0.005658,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195093,0.005658,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195093,0.005658,-0.007247,0.249895,0,0);}
.m8a_c00024{transform:matrix(0.195853,0.005680,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195853,0.005680,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195853,0.005680,-0.007247,0.249895,0,0);}
.mb6_c00024{transform:matrix(0.197044,0.006312,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197044,0.006312,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197044,0.006312,-0.008004,0.249872,0,0);}
.mc0_c00024{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_c00024{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);}
.mb5_c00024{transform:matrix(0.198023,0.006343,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198023,0.006343,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198023,0.006343,-0.008004,0.249872,0,0);}
.m39_c00024{transform:matrix(0.198593,0.005362,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198593,0.005362,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198593,0.005362,-0.006748,0.249909,0,0);}
.m4d_c00024{transform:matrix(0.198793,0.005367,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198793,0.005367,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198793,0.005367,-0.006748,0.249909,0,0);}
.mc1_c00024{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);}
.mb3_c00024{transform:matrix(0.198838,0.006369,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198838,0.006369,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198838,0.006369,-0.008004,0.249872,0,0);}
.m94_c00024{transform:matrix(0.199586,0.005788,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199586,0.005788,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199586,0.005788,-0.007247,0.249895,0,0);}
.m1d_c00024{transform:matrix(0.199641,0.005790,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199641,0.005790,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199641,0.005790,-0.007247,0.249895,0,0);}
.m12_c00024{transform:matrix(0.199931,0.005798,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199931,0.005798,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199931,0.005798,-0.007247,0.249895,0,0);}
.m44_c00024{transform:matrix(0.200342,0.005409,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200342,0.005409,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200342,0.005409,-0.006748,0.249909,0,0);}
.m71_c00024{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);}
.m8b_c00024{transform:matrix(0.200786,0.005823,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200786,0.005823,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200786,0.005823,-0.007247,0.249895,0,0);}
.m2d_c00024{transform:matrix(0.201505,0.005844,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201505,0.005844,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201505,0.005844,-0.007247,0.249895,0,0);}
.m50_c00024{transform:matrix(0.202791,0.005475,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202791,0.005475,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202791,0.005475,-0.006748,0.249909,0,0);}
.m2a_c00024{transform:matrix(0.203844,0.005911,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203844,0.005911,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203844,0.005911,-0.007247,0.249895,0,0);}
.m56_c00024{transform:matrix(0.203871,0.005505,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203871,0.005505,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203871,0.005505,-0.006748,0.249909,0,0);}
.m6b_c00024{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);}
.m83_c00024{transform:matrix(0.204039,0.005917,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204039,0.005917,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204039,0.005917,-0.007247,0.249895,0,0);}
.m77_c00024{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);}
.m20_c00024{transform:matrix(0.204184,0.005921,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204184,0.005921,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204184,0.005921,-0.007247,0.249895,0,0);}
.m67_c00024{transform:matrix(0.204321,0.005517,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204321,0.005517,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204321,0.005517,-0.006748,0.249909,0,0);}
.m15_c00024{transform:matrix(0.204779,0.005939,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204779,0.005939,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204779,0.005939,-0.007247,0.249895,0,0);}
.m17_c00024{transform:matrix(0.204834,0.005940,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204834,0.005940,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204834,0.005940,-0.007247,0.249895,0,0);}
.m29_c00024{transform:matrix(0.207478,0.006017,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207478,0.006017,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207478,0.006017,-0.007247,0.249895,0,0);}
.m8f_c00024{transform:matrix(0.207608,0.006021,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207608,0.006021,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207608,0.006021,-0.007247,0.249895,0,0);}
.m6f_c00024{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);}
.maf_c00024{transform:matrix(0.208308,0.006673,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208308,0.006673,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208308,0.006673,-0.008004,0.249872,0,0);}
.m5c_c00024{transform:matrix(0.208619,0.005633,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208619,0.005633,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208619,0.005633,-0.006748,0.249909,0,0);}
.m84_c00024{transform:matrix(0.209502,0.006076,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209502,0.006076,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209502,0.006076,-0.007247,0.249895,0,0);}
.m8e_c00024{transform:matrix(0.211226,0.006126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211226,0.006126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211226,0.006126,-0.007247,0.249895,0,0);}
.m93_c00024{transform:matrix(0.211976,0.006147,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211976,0.006147,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211976,0.006147,-0.007247,0.249895,0,0);}
.m85_c00024{transform:matrix(0.215070,0.006237,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215070,0.006237,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215070,0.006237,-0.007247,0.249895,0,0);}
.m8c_c00024{transform:matrix(0.215459,0.006248,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215459,0.006248,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215459,0.006248,-0.007247,0.249895,0,0);}
.m4b_c00024{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);}
.m10_c00024{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);}
.m2c_c00024{transform:matrix(0.216234,0.006271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216234,0.006271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216234,0.006271,-0.007247,0.249895,0,0);}
.m1e_c00024{transform:matrix(0.216759,0.006286,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216759,0.006286,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216759,0.006286,-0.007247,0.249895,0,0);}
.mad_c00024{transform:matrix(0.216954,0.006292,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216954,0.006292,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216954,0.006292,-0.007247,0.249895,0,0);}
.m87_c00024{transform:matrix(0.217524,0.006308,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217524,0.006308,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217524,0.006308,-0.007247,0.249895,0,0);}
.m13_c00024{transform:matrix(0.218448,0.006335,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218448,0.006335,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218448,0.006335,-0.007247,0.249895,0,0);}
.m76_c00024{transform:matrix(0.220045,0.005941,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220045,0.005941,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220045,0.005941,-0.006748,0.249909,0,0);}
.m5f_c00024{transform:matrix(0.220675,0.005958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220675,0.005958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220675,0.005958,-0.006748,0.249909,0,0);}
.m28_c00024{transform:matrix(0.222646,0.006457,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222646,0.006457,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222646,0.006457,-0.007247,0.249895,0,0);}
.m1_c00024{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);}
.mb1_c00024{transform:matrix(0.223590,0.007162,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223590,0.007162,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223590,0.007162,-0.008004,0.249872,0,0);}
.mb0_c00024{transform:matrix(0.228898,0.007332,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228898,0.007332,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228898,0.007332,-0.008004,0.249872,0,0);}
.m82_c00024{transform:matrix(0.230303,0.006679,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230303,0.006679,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230303,0.006679,-0.007247,0.249895,0,0);}
.m32_c00024{transform:matrix(0.242612,0.006551,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242612,0.006551,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242612,0.006551,-0.006748,0.249909,0,0);}
.m9f_c00024{transform:matrix(0.245447,0.007118,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245447,0.007118,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245447,0.007118,-0.007247,0.249895,0,0);}
.ma2_c00024{transform:matrix(0.252004,0.007308,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252004,0.007308,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252004,0.007308,-0.007247,0.249895,0,0);}
.m2_c00024{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);}
.m3_c00024{transform:matrix(0.255600,0.006390,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255600,0.006390,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255600,0.006390,-0.006248,0.249922,0,0);}
.md_c00024{transform:matrix(0.258055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258055,0.000000,0.000000,0.250000,0,0);}
.m5b_c00024{transform:matrix(0.262399,0.007085,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262399,0.007085,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262399,0.007085,-0.006748,0.249909,0,0);}
.m9e_c00024{transform:matrix(0.263809,0.007650,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263809,0.007650,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263809,0.007650,-0.007247,0.249895,0,0);}
.m92_c00024{transform:matrix(0.278793,0.008085,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278793,0.008085,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278793,0.008085,-0.007247,0.249895,0,0);}
.m79_c00024{transform:matrix(0.279698,0.007552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279698,0.007552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279698,0.007552,-0.006748,0.249909,0,0);}
.m57_c00024{transform:matrix(0.284606,0.007684,-0.006748,0.249909,0,0);-ms-transform:matrix(0.284606,0.007684,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.284606,0.007684,-0.006748,0.249909,0,0);}
.m90_c00024{transform:matrix(0.288644,0.008371,-0.007247,0.249895,0,0);-ms-transform:matrix(0.288644,0.008371,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.288644,0.008371,-0.007247,0.249895,0,0);}
.m5_c00024{transform:matrix(0.292239,0.007306,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292239,0.007306,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292239,0.007306,-0.006248,0.249922,0,0);}
.m8_c00024{transform:matrix(0.292459,0.007311,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292459,0.007311,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292459,0.007311,-0.006248,0.249922,0,0);}
.m70_c00024{transform:matrix(0.296717,0.008011,-0.006748,0.249909,0,0);-ms-transform:matrix(0.296717,0.008011,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.296717,0.008011,-0.006748,0.249909,0,0);}
.m75_c00024{transform:matrix(0.298176,0.008051,-0.006748,0.249909,0,0);-ms-transform:matrix(0.298176,0.008051,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.298176,0.008051,-0.006748,0.249909,0,0);}
.m4_c00024{transform:matrix(0.298397,0.007460,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298397,0.007460,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298397,0.007460,-0.006248,0.249922,0,0);}
.m91_c00024{transform:matrix(0.298505,0.008657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.298505,0.008657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.298505,0.008657,-0.007247,0.249895,0,0);}
.m7_c00024{transform:matrix(0.302815,0.007570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.302815,0.007570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.302815,0.007570,-0.006248,0.249922,0,0);}
.m40_c00024{transform:matrix(0.307243,0.008296,-0.006748,0.249909,0,0);-ms-transform:matrix(0.307243,0.008296,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.307243,0.008296,-0.006748,0.249909,0,0);}
.m31_c00024{transform:matrix(0.307713,0.008308,-0.006748,0.249909,0,0);-ms-transform:matrix(0.307713,0.008308,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.307713,0.008308,-0.006748,0.249909,0,0);}
.m4a_c00024{transform:matrix(0.316235,0.008538,-0.006748,0.249909,0,0);-ms-transform:matrix(0.316235,0.008538,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.316235,0.008538,-0.006748,0.249909,0,0);}
.mbc_c00024{transform:matrix(0.336637,0.010783,-0.008004,0.249872,0,0);-ms-transform:matrix(0.336637,0.010783,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.336637,0.010783,-0.008004,0.249872,0,0);}
.m7d_c00024{transform:matrix(0.339151,0.009157,-0.006748,0.249909,0,0);-ms-transform:matrix(0.339151,0.009157,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.339151,0.009157,-0.006748,0.249909,0,0);}
.ma_c00024{transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);}
.mbb_c00024{transform:matrix(0.343484,0.011002,-0.008004,0.249872,0,0);-ms-transform:matrix(0.343484,0.011002,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.343484,0.011002,-0.008004,0.249872,0,0);}
.m89_c00024{transform:matrix(0.355001,0.010295,-0.007247,0.249895,0,0);-ms-transform:matrix(0.355001,0.010295,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.355001,0.010295,-0.007247,0.249895,0,0);}
.mf_c00024{transform:matrix(0.361908,0.007238,-0.004999,0.249950,0,0);-ms-transform:matrix(0.361908,0.007238,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.361908,0.007238,-0.004999,0.249950,0,0);}
.ma7_c00024{transform:matrix(0.366556,0.010630,-0.007247,0.249895,0,0);-ms-transform:matrix(0.366556,0.010630,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.366556,0.010630,-0.007247,0.249895,0,0);}
.m6_c00024{transform:matrix(0.368780,0.009219,-0.006248,0.249922,0,0);-ms-transform:matrix(0.368780,0.009219,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.368780,0.009219,-0.006248,0.249922,0,0);}
.m97_c00024{transform:matrix(0.372953,0.010816,-0.007247,0.249895,0,0);-ms-transform:matrix(0.372953,0.010816,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.372953,0.010816,-0.007247,0.249895,0,0);}
.m9_c00024{transform:matrix(0.384640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384640,0.000000,0.000000,0.250000,0,0);}
.mb8_c00024{transform:matrix(0.395687,0.012675,-0.008004,0.249872,0,0);-ms-transform:matrix(0.395687,0.012675,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.395687,0.012675,-0.008004,0.249872,0,0);}
.m18_c00024{transform:matrix(0.404835,0.011740,-0.007247,0.249895,0,0);-ms-transform:matrix(0.404835,0.011740,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.404835,0.011740,-0.007247,0.249895,0,0);}
.m3c_c00024{transform:matrix(0.436381,0.011782,-0.006748,0.249909,0,0);-ms-transform:matrix(0.436381,0.011782,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.436381,0.011782,-0.006748,0.249909,0,0);}
.mc_c00024{transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.528255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528255,0.000000,0.000000,0.250000,0,0);}
.m7f_c00024{transform:matrix(0.533576,0.014407,-0.006748,0.249909,0,0);-ms-transform:matrix(0.533576,0.014407,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.533576,0.014407,-0.006748,0.249909,0,0);}
.m69_c00024{transform:matrix(0.570637,0.015407,-0.006748,0.249909,0,0);-ms-transform:matrix(0.570637,0.015407,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.570637,0.015407,-0.006748,0.249909,0,0);}
.mbd_c00024{transform:matrix(0.642046,0.020566,-0.008004,0.249872,0,0);-ms-transform:matrix(0.642046,0.020566,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.642046,0.020566,-0.008004,0.249872,0,0);}
.m72_c00024{transform:matrix(0.736357,0.019882,-0.006748,0.249909,0,0);-ms-transform:matrix(0.736357,0.019882,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.736357,0.019882,-0.006748,0.249909,0,0);}
.m80_c00024{transform:matrix(0.742869,0.020057,-0.006748,0.249909,0,0);-ms-transform:matrix(0.742869,0.020057,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.742869,0.020057,-0.006748,0.249909,0,0);}
.mbf_c00024{transform:matrix(1.206785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.206785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.206785,0.000000,0.000000,0.250000,0,0);}
.m6d_c00024{transform:matrix(1.654667,0.044676,-0.006748,0.249909,0,0);-ms-transform:matrix(1.654667,0.044676,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.654667,0.044676,-0.006748,0.249909,0,0);}
.m6c_c00024{transform:matrix(2.567114,0.069312,-0.006748,0.249909,0,0);-ms-transform:matrix(2.567114,0.069312,-0.006748,0.249909,0,0);-webkit-transform:matrix(2.567114,0.069312,-0.006748,0.249909,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;}
.fs18_c00024{font-size:14.700000px;}
.fs17_c00024{font-size:16.800000px;}
.fs16_c00024{font-size:25.200000px;}
.fsf_c00024{font-size:26.259566px;}
.fse_c00024{font-size:32.561862px;}
.fs15_c00024{font-size:34.650000px;}
.fs0_c00024{font-size:38.850000px;}
.fsc_c00024{font-size:48.317602px;}
.fs10_c00024{font-size:51.471630px;}
.fs11_c00024{font-size:53.572513px;}
.fs13_c00024{font-size:54.573376px;}
.fs12_c00024{font-size:57.774279px;}
.fs9_c00024{font-size:65.123725px;}
.fs8_c00024{font-size:66.177810px;}
.fs6_c00024{font-size:67.228252px;}
.fsb_c00024{font-size:69.325255px;}
.fs7_c00024{font-size:69.329135px;}
.fsd_c00024{font-size:70.375638px;}
.fsa_c00024{font-size:74.577169px;}
.fs14_c00024{font-size:83.959040px;}
.fs4_c00024{font-size:90.300000px;}
.fs5_c00024{font-size:107.121418px;}
.fs3_c00024{font-size:142.844618px;}
.fs1_c00024{font-size:179.606101px;}
.fs2_c00024{font-size:188.008725px;}
.y0_c00024{bottom:0.000000px;}
.ybf_c00024{bottom:1.620000px;}
.ybe_c00024{bottom:1.890000px;}
.ybd_c00024{bottom:2.430000px;}
.ybb_c00024{bottom:2.700000px;}
.yba_c00024{bottom:5.130000px;}
.ybc_c00024{bottom:5.670000px;}
.yb9_c00024{bottom:184.079196px;}
.yb8_c00024{bottom:187.442844px;}
.yb7_c00024{bottom:189.917340px;}
.yb6_c00024{bottom:192.311628px;}
.yb5_c00024{bottom:193.019196px;}
.yb4_c00024{bottom:193.885500px;}
.yb3_c00024{bottom:203.957124px;}
.yb2_c00024{bottom:205.660836px;}
.yb1_c00024{bottom:206.478996px;}
.yb0_c00024{bottom:206.860884px;}
.yaf_c00024{bottom:208.673268px;}
.yae_c00024{bottom:209.308068px;}
.yad_c00024{bottom:211.070532px;}
.yac_c00024{bottom:212.863092px;}
.yab_c00024{bottom:214.390500px;}
.yaa_c00024{bottom:219.173250px;}
.ya9_c00024{bottom:219.726440px;}
.ya8_c00024{bottom:220.582519px;}
.ya7_c00024{bottom:221.835015px;}
.ya6_c00024{bottom:222.741990px;}
.ya5_c00024{bottom:223.848065px;}
.ya4_c00024{bottom:224.767176px;}
.ya3_c00024{bottom:225.205482px;}
.ya2_c00024{bottom:225.938457px;}
.ya1_c00024{bottom:226.716020px;}
.ya0_c00024{bottom:227.154978px;}
.y9f_c00024{bottom:228.055297px;}
.y9e_c00024{bottom:229.395272px;}
.y9d_c00024{bottom:229.740096px;}
.y9c_c00024{bottom:230.601048px;}
.y9b_c00024{bottom:231.980129px;}
.y9a_c00024{bottom:233.289000px;}
.y99_c00024{bottom:237.209938px;}
.y98_c00024{bottom:238.154644px;}
.y97_c00024{bottom:238.676697px;}
.y96_c00024{bottom:241.248528px;}
.y95_c00024{bottom:241.777345px;}
.y94_c00024{bottom:242.806486px;}
.y93_c00024{bottom:243.187836px;}
.y92_c00024{bottom:244.191051px;}
.y91_c00024{bottom:245.558650px;}
.y90_c00024{bottom:246.239524px;}
.y8f_c00024{bottom:246.618481px;}
.y8e_c00024{bottom:247.178184px;}
.y8d_c00024{bottom:248.970655px;}
.y8c_c00024{bottom:249.748993px;}
.y8b_c00024{bottom:254.595417px;}
.y8a_c00024{bottom:256.172422px;}
.y89_c00024{bottom:257.026197px;}
.y88_c00024{bottom:257.589957px;}
.y87_c00024{bottom:259.093839px;}
.y86_c00024{bottom:260.120265px;}
.y85_c00024{bottom:260.521944px;}
.y7c_c00024{bottom:261.048403px;}
.y84_c00024{bottom:261.065737px;}
.y83_c00024{bottom:261.757648px;}
.y82_c00024{bottom:262.569576px;}
.y7b_c00024{bottom:262.583409px;}
.y7a_c00024{bottom:263.596026px;}
.y81_c00024{bottom:264.412714px;}
.y80_c00024{bottom:265.021366px;}
.y79_c00024{bottom:265.660547px;}
.y7f_c00024{bottom:265.898631px;}
.y7e_c00024{bottom:266.504673px;}
.y7d_c00024{bottom:267.028500px;}
.y78_c00024{bottom:268.328417px;}
.y77_c00024{bottom:268.859229px;}
.y76_c00024{bottom:269.812714px;}
.y75_c00024{bottom:270.970854px;}
.y74_c00024{bottom:271.379757px;}
.y73_c00024{bottom:272.052931px;}
.y72_c00024{bottom:272.347013px;}
.y71_c00024{bottom:273.474735px;}
.y70_c00024{bottom:273.741436px;}
.y6f_c00024{bottom:274.254144px;}
.y6e_c00024{bottom:275.395272px;}
.y6d_c00024{bottom:278.773139px;}
.y6c_c00024{bottom:279.431613px;}
.y6b_c00024{bottom:279.939413px;}
.y6a_c00024{bottom:280.445227px;}
.y69_c00024{bottom:285.906227px;}
.y68_c00024{bottom:290.475406px;}
.y67_c00024{bottom:292.552170px;}
.y66_c00024{bottom:293.137130px;}
.y65_c00024{bottom:294.295869px;}
.y64_c00024{bottom:297.628080px;}
.y63_c00024{bottom:298.484857px;}
.y62_c00024{bottom:299.517081px;}
.y61_c00024{bottom:300.140457px;}
.y60_c00024{bottom:301.901033px;}
.y5f_c00024{bottom:302.940951px;}
.y5e_c00024{bottom:304.358613px;}
.y5d_c00024{bottom:305.664211px;}
.y5c_c00024{bottom:306.364578px;}
.y5b_c00024{bottom:307.065349px;}
.y5a_c00024{bottom:308.661657px;}
.y59_c00024{bottom:309.230641px;}
.y56_c00024{bottom:309.501750px;}
.y58_c00024{bottom:309.857176px;}
.y57_c00024{bottom:311.046581px;}
.y55_c00024{bottom:314.118791px;}
.y54_c00024{bottom:316.772958px;}
.y53_c00024{bottom:319.687500px;}
.y52_c00024{bottom:321.965872px;}
.y51_c00024{bottom:323.088935px;}
.y50_c00024{bottom:323.560539px;}
.y4f_c00024{bottom:324.135050px;}
.y4e_c00024{bottom:325.188050px;}
.y4d_c00024{bottom:326.923206px;}
.y4c_c00024{bottom:327.422268px;}
.y4b_c00024{bottom:328.363371px;}
.y4a_c00024{bottom:329.238664px;}
.y49_c00024{bottom:330.113675px;}
.y48_c00024{bottom:330.735407px;}
.y47_c00024{bottom:332.617613px;}
.y46_c00024{bottom:333.713784px;}
.y45_c00024{bottom:343.333483px;}
.y44_c00024{bottom:344.251894px;}
.y43_c00024{bottom:345.222552px;}
.y42_c00024{bottom:345.789005px;}
.y41_c00024{bottom:346.427914px;}
.y40_c00024{bottom:347.749881px;}
.y3f_c00024{bottom:349.782324px;}
.y3e_c00024{bottom:350.554645px;}
.y3d_c00024{bottom:351.568153px;}
.y3c_c00024{bottom:352.196493px;}
.y3b_c00024{bottom:354.048462px;}
.y3a_c00024{bottom:354.986273px;}
.y39_c00024{bottom:356.044778px;}
.y38_c00024{bottom:357.490760px;}
.y37_c00024{bottom:366.333511px;}
.y36_c00024{bottom:367.865829px;}
.y35_c00024{bottom:368.776148px;}
.y34_c00024{bottom:369.900549px;}
.y33_c00024{bottom:370.556001px;}
.y32_c00024{bottom:372.480845px;}
.y31_c00024{bottom:373.246983px;}
.y30_c00024{bottom:374.749533px;}
.y2f_c00024{bottom:375.519641px;}
.y2e_c00024{bottom:376.502252px;}
.y2d_c00024{bottom:378.549000px;}
.y2c_c00024{bottom:389.076151px;}
.y2b_c00024{bottom:390.766348px;}
.y2a_c00024{bottom:391.337267px;}
.y29_c00024{bottom:393.054458px;}
.y28_c00024{bottom:393.439920px;}
.y27_c00024{bottom:394.655234px;}
.y26_c00024{bottom:395.607264px;}
.y25_c00024{bottom:397.375354px;}
.y24_c00024{bottom:398.908656px;}
.y23_c00024{bottom:399.429849px;}
.y22_c00024{bottom:400.399781px;}
.y21_c00024{bottom:412.190564px;}
.y20_c00024{bottom:413.080536px;}
.y1f_c00024{bottom:414.056996px;}
.y1e_c00024{bottom:415.199185px;}
.y1d_c00024{bottom:415.717759px;}
.y1c_c00024{bottom:416.621827px;}
.y1b_c00024{bottom:417.239636px;}
.y1a_c00024{bottom:419.490473px;}
.y19_c00024{bottom:420.151437px;}
.y18_c00024{bottom:421.134444px;}
.y17_c00024{bottom:421.997574px;}
.y16_c00024{bottom:423.087602px;}
.y15_c00024{bottom:433.386132px;}
.y14_c00024{bottom:434.051856px;}
.y13_c00024{bottom:434.886273px;}
.y12_c00024{bottom:435.825264px;}
.y11_c00024{bottom:437.375865px;}
.y10_c00024{bottom:439.327231px;}
.yf_c00024{bottom:440.651067px;}
.ye_c00024{bottom:442.162083px;}
.yd_c00024{bottom:443.658570px;}
.yc_c00024{bottom:444.884400px;}
.yb_c00024{bottom:445.780500px;}
.ya_c00024{bottom:518.413500px;}
.y9_c00024{bottom:708.750000px;}
.y8_c00024{bottom:768.213563px;}
.y7_c00024{bottom:769.197713px;}
.y6_c00024{bottom:815.123325px;}
.y5_c00024{bottom:816.458588px;}
.y4_c00024{bottom:901.126163px;}
.y3_c00024{bottom:908.815050px;}
.y2_c00024{bottom:913.159500px;}
.y1_c00024{bottom:993.591000px;}
.h1a_c00024{height:14.700000px;}
.h19_c00024{height:16.800000px;}
.h18_c00024{height:25.200000px;}
.h11_c00024{height:26.259566px;}
.h10_c00024{height:32.561862px;}
.h17_c00024{height:34.650000px;}
.h2_c00024{height:38.850000px;}
.he_c00024{height:48.317602px;}
.h12_c00024{height:51.471630px;}
.h13_c00024{height:53.572513px;}
.h15_c00024{height:54.573376px;}
.h14_c00024{height:57.774279px;}
.hb_c00024{height:65.123725px;}
.ha_c00024{height:66.177810px;}
.h8_c00024{height:67.228252px;}
.hd_c00024{height:69.325255px;}
.h9_c00024{height:69.329135px;}
.hf_c00024{height:70.375638px;}
.hc_c00024{height:74.577169px;}
.h16_c00024{height:83.959040px;}
.h6_c00024{height:90.300000px;}
.h7_c00024{height:107.121418px;}
.h5_c00024{height:142.844618px;}
.h3_c00024{height:179.606101px;}
.h4_c00024{height:188.008725px;}
.h1_c00024{height:1080.000000px;}
.h0_c00024{height:1080.270000px;}
.w1_c00024{width:768.000000px;}
.w0_c00024{width:768.150000px;}
.x0_c00024{left:0.000000px;}
.x54_c00024{left:57.609416px;}
.x5a_c00024{left:59.011493px;}
.x33_c00024{left:60.581594px;}
.x3d_c00024{left:61.847505px;}
.x6_c00024{left:65.268300px;}
.x76_c00024{left:67.210500px;}
.x4b_c00024{left:70.396170px;}
.x49_c00024{left:76.155000px;}
.x55_c00024{left:96.244797px;}
.x5b_c00024{left:99.774399px;}
.x3e_c00024{left:104.003139px;}
.x34_c00024{left:112.246217px;}
.x1b_c00024{left:113.898924px;}
.x25_c00024{left:115.892205px;}
.xf_c00024{left:117.580500px;}
.x7_c00024{left:120.900188px;}
.x64_c00024{left:123.961500px;}
.x3_c00024{left:128.007000px;}
.x84_c00024{left:130.250928px;}
.x10_c00024{left:133.576500px;}
.x4c_c00024{left:137.653170px;}
.x65_c00024{left:142.024500px;}
.x35_c00024{left:150.060204px;}
.x85_c00024{left:152.340317px;}
.x26_c00024{left:154.670186px;}
.x1c_c00024{left:159.302993px;}
.x66_c00024{left:162.922500px;}
.x11_c00024{left:164.476500px;}
.x5c_c00024{left:167.907077px;}
.x27_c00024{left:175.489578px;}
.x5d_c00024{left:178.409793px;}
.x36_c00024{left:183.570813px;}
.x56_c00024{left:184.986629px;}
.x2d_c00024{left:188.892000px;}
.x67_c00024{left:193.173000px;}
.xa_c00024{left:196.020000px;}
.x3f_c00024{left:200.299731px;}
.x5e_c00024{left:202.452645px;}
.x71_c00024{left:205.258638px;}
.x12_c00024{left:206.746500px;}
.x68_c00024{left:214.161000px;}
.x7f_c00024{left:215.384751px;}
.x4d_c00024{left:217.849170px;}
.x2e_c00024{left:225.285000px;}
.x86_c00024{left:227.086995px;}
.x40_c00024{left:233.930622px;}
.x1d_c00024{left:236.267172px;}
.x8_c00024{left:237.370013px;}
.x72_c00024{left:238.765095px;}
.x4e_c00024{left:243.803670px;}
.x77_c00024{left:247.683000px;}
.x37_c00024{left:249.716031px;}
.x2f_c00024{left:253.807500px;}
.x13_c00024{left:258.349500px;}
.x1e_c00024{left:263.821674px;}
.x41_c00024{left:267.572013px;}
.x4f_c00024{left:269.743170px;}
.x38_c00024{left:272.153924px;}
.x69_c00024{left:277.717500px;}
.x78_c00024{left:278.728500px;}
.x9_c00024{left:282.079350px;}
.x87_c00024{left:289.170000px;}
.x80_c00024{left:290.224336px;}
.x5f_c00024{left:292.414175px;}
.x79_c00024{left:293.865000px;}
.x4_c00024{left:301.785000px;}
.x42_c00024{left:303.761985px;}
.x6a_c00024{left:305.715000px;}
.x28_c00024{left:307.552890px;}
.x14_c00024{left:310.453500px;}
.x73_c00024{left:311.938727px;}
.x50_c00024{left:318.098670px;}
.x7a_c00024{left:320.677500px;}
.x43_c00024{left:322.968512px;}
.x6b_c00024{left:329.574000px;}
.xb_c00024{left:335.340000px;}
.x30_c00024{left:337.833000px;}
.x29_c00024{left:345.661827px;}
.x81_c00024{left:346.804699px;}
.x6c_c00024{left:348.325500px;}
.x15_c00024{left:356.103000px;}
.x1f_c00024{left:357.588246px;}
.x82_c00024{left:358.726765px;}
.x7b_c00024{left:361.066500px;}
.x6d_c00024{left:362.176500px;}
.xc_c00024{left:365.580000px;}
.x51_c00024{left:370.604670px;}
.x20_c00024{left:383.343987px;}
.x44_c00024{left:389.679794px;}
.x7c_c00024{left:392.760000px;}
.x2a_c00024{left:394.298982px;}
.x6e_c00024{left:397.570500px;}
.x60_c00024{left:406.658597px;}
.x39_c00024{left:408.567779px;}
.x2b_c00024{left:409.713266px;}
.x74_c00024{left:417.028772px;}
.x21_c00024{left:421.041468px;}
.x16_c00024{left:423.391500px;}
.x45_c00024{left:430.180887px;}
.x31_c00024{left:433.399500px;}
.x83_c00024{left:437.456457px;}
.x88_c00024{left:439.830000px;}
.x22_c00024{left:442.650600px;}
.xd_c00024{left:446.310000px;}
.x6f_c00024{left:449.428500px;}
.x46_c00024{left:452.292995px;}
.x4a_c00024{left:453.405000px;}
.x3a_c00024{left:455.806023px;}
.x7d_c00024{left:462.175500px;}
.x89_c00024{left:465.210000px;}
.x70_c00024{left:468.868500px;}
.x47_c00024{left:470.426981px;}
.x1_c00024{left:474.120000px;}
.x17_c00024{left:476.860500px;}
.x2c_c00024{left:478.400226px;}
.x61_c00024{left:480.398112px;}
.xe_c00024{left:491.130000px;}
.x52_c00024{left:497.414670px;}
.x3b_c00024{left:498.892389px;}
.x2_c00024{left:501.660000px;}
.x7e_c00024{left:505.365000px;}
.x18_c00024{left:509.239500px;}
.x8a_c00024{left:510.840000px;}
.x48_c00024{left:513.634155px;}
.x8b_c00024{left:515.160000px;}
.x62_c00024{left:516.568140px;}
.x57_c00024{left:519.336575px;}
.x75_c00024{left:527.493447px;}
.x23_c00024{left:530.978933px;}
.x3c_c00024{left:533.563958px;}
.x53_c00024{left:535.645170px;}
.x19_c00024{left:538.012500px;}
.x58_c00024{left:553.097321px;}
.x1a_c00024{left:560.968500px;}
.x32_c00024{left:565.512000px;}
.x24_c00024{left:568.086827px;}
.x63_c00024{left:571.363142px;}
.x59_c00024{left:575.039039px;}
.x5_c00024{left:609.340500px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.fs18_c00024{font-size:13.066667pt;}
.fs17_c00024{font-size:14.933333pt;}
.fs16_c00024{font-size:22.400000pt;}
.fsf_c00024{font-size:23.341837pt;}
.fse_c00024{font-size:28.943878pt;}
.fs15_c00024{font-size:30.800000pt;}
.fs0_c00024{font-size:34.533333pt;}
.fsc_c00024{font-size:42.948980pt;}
.fs10_c00024{font-size:45.752560pt;}
.fs11_c00024{font-size:47.620012pt;}
.fs13_c00024{font-size:48.509668pt;}
.fs12_c00024{font-size:51.354914pt;}
.fs9_c00024{font-size:57.887755pt;}
.fs8_c00024{font-size:58.824720pt;}
.fs6_c00024{font-size:59.758446pt;}
.fsb_c00024{font-size:61.622449pt;}
.fs7_c00024{font-size:61.625897pt;}
.fsd_c00024{font-size:62.556123pt;}
.fsa_c00024{font-size:66.290816pt;}
.fs14_c00024{font-size:74.630258pt;}
.fs4_c00024{font-size:80.266667pt;}
.fs5_c00024{font-size:95.219038pt;}
.fs3_c00024{font-size:126.972994pt;}
.fs1_c00024{font-size:159.649867pt;}
.fs2_c00024{font-size:167.118867pt;}
.y0_c00024{bottom:0.000000pt;}
.ybf_c00024{bottom:1.440000pt;}
.ybe_c00024{bottom:1.680000pt;}
.ybd_c00024{bottom:2.160000pt;}
.ybb_c00024{bottom:2.400000pt;}
.yba_c00024{bottom:4.560000pt;}
.ybc_c00024{bottom:5.040000pt;}
.yb9_c00024{bottom:163.625952pt;}
.yb8_c00024{bottom:166.615861pt;}
.yb7_c00024{bottom:168.815413pt;}
.yb6_c00024{bottom:170.943669pt;}
.yb5_c00024{bottom:171.572619pt;}
.yb4_c00024{bottom:172.342667pt;}
.yb3_c00024{bottom:181.295221pt;}
.yb2_c00024{bottom:182.809632pt;}
.yb1_c00024{bottom:183.536885pt;}
.yb0_c00024{bottom:183.876341pt;}
.yaf_c00024{bottom:185.487349pt;}
.yae_c00024{bottom:186.051616pt;}
.yad_c00024{bottom:187.618251pt;}
.yac_c00024{bottom:189.211637pt;}
.yab_c00024{bottom:190.569333pt;}
.yaa_c00024{bottom:194.820667pt;}
.ya9_c00024{bottom:195.312391pt;}
.ya8_c00024{bottom:196.073351pt;}
.ya7_c00024{bottom:197.186680pt;}
.ya6_c00024{bottom:197.992880pt;}
.ya5_c00024{bottom:198.976057pt;}
.ya4_c00024{bottom:199.793045pt;}
.ya3_c00024{bottom:200.182651pt;}
.ya2_c00024{bottom:200.834184pt;}
.ya1_c00024{bottom:201.525351pt;}
.ya0_c00024{bottom:201.915536pt;}
.y9f_c00024{bottom:202.715820pt;}
.y9e_c00024{bottom:203.906908pt;}
.y9d_c00024{bottom:204.213419pt;}
.y9c_c00024{bottom:204.978709pt;}
.y9b_c00024{bottom:206.204559pt;}
.y9a_c00024{bottom:207.368000pt;}
.y99_c00024{bottom:210.853279pt;}
.y98_c00024{bottom:211.693017pt;}
.y97_c00024{bottom:212.157064pt;}
.y96_c00024{bottom:214.443136pt;}
.y95_c00024{bottom:214.913196pt;}
.y94_c00024{bottom:215.827988pt;}
.y93_c00024{bottom:216.166965pt;}
.y92_c00024{bottom:217.058712pt;}
.y91_c00024{bottom:218.274356pt;}
.y90_c00024{bottom:218.879577pt;}
.y8f_c00024{bottom:219.216428pt;}
.y8e_c00024{bottom:219.713941pt;}
.y8d_c00024{bottom:221.307249pt;}
.y8c_c00024{bottom:221.999105pt;}
.y8b_c00024{bottom:226.307037pt;}
.y8a_c00024{bottom:227.708820pt;}
.y89_c00024{bottom:228.467731pt;}
.y88_c00024{bottom:228.968851pt;}
.y87_c00024{bottom:230.305635pt;}
.y86_c00024{bottom:231.218013pt;}
.y85_c00024{bottom:231.575061pt;}
.y7c_c00024{bottom:232.043025pt;}
.y84_c00024{bottom:232.058433pt;}
.y83_c00024{bottom:232.673465pt;}
.y82_c00024{bottom:233.395179pt;}
.y7b_c00024{bottom:233.407475pt;}
.y7a_c00024{bottom:234.307579pt;}
.y81_c00024{bottom:235.033524pt;}
.y80_c00024{bottom:235.574548pt;}
.y79_c00024{bottom:236.142708pt;}
.y7f_c00024{bottom:236.354339pt;}
.y7e_c00024{bottom:236.893043pt;}
.y7d_c00024{bottom:237.358667pt;}
.y78_c00024{bottom:238.514148pt;}
.y77_c00024{bottom:238.985981pt;}
.y76_c00024{bottom:239.833524pt;}
.y75_c00024{bottom:240.862981pt;}
.y74_c00024{bottom:241.226451pt;}
.y73_c00024{bottom:241.824828pt;}
.y72_c00024{bottom:242.086233pt;}
.y71_c00024{bottom:243.088653pt;}
.y70_c00024{bottom:243.325721pt;}
.y6f_c00024{bottom:243.781461pt;}
.y6e_c00024{bottom:244.795797pt;}
.y6d_c00024{bottom:247.798345pt;}
.y6c_c00024{bottom:248.383656pt;}
.y6b_c00024{bottom:248.835033pt;}
.y6a_c00024{bottom:249.284647pt;}
.y69_c00024{bottom:254.138868pt;}
.y68_c00024{bottom:258.200361pt;}
.y67_c00024{bottom:260.046373pt;}
.y66_c00024{bottom:260.566337pt;}
.y65_c00024{bottom:261.596328pt;}
.y64_c00024{bottom:264.558293pt;}
.y63_c00024{bottom:265.319873pt;}
.y62_c00024{bottom:266.237405pt;}
.y61_c00024{bottom:266.791517pt;}
.y60_c00024{bottom:268.356473pt;}
.y5f_c00024{bottom:269.280845pt;}
.y5e_c00024{bottom:270.540989pt;}
.y5d_c00024{bottom:271.701521pt;}
.y5c_c00024{bottom:272.324069pt;}
.y5b_c00024{bottom:272.946977pt;}
.y5a_c00024{bottom:274.365917pt;}
.y59_c00024{bottom:274.871681pt;}
.y56_c00024{bottom:275.112667pt;}
.y58_c00024{bottom:275.428601pt;}
.y57_c00024{bottom:276.485849pt;}
.y55_c00024{bottom:279.216703pt;}
.y54_c00024{bottom:281.575963pt;}
.y53_c00024{bottom:284.166667pt;}
.y52_c00024{bottom:286.191887pt;}
.y51_c00024{bottom:287.190164pt;}
.y50_c00024{bottom:287.609368pt;}
.y4f_c00024{bottom:288.120044pt;}
.y4e_c00024{bottom:289.056044pt;}
.y4d_c00024{bottom:290.598405pt;}
.y4c_c00024{bottom:291.042016pt;}
.y4b_c00024{bottom:291.878552pt;}
.y4a_c00024{bottom:292.656591pt;}
.y49_c00024{bottom:293.434377pt;}
.y48_c00024{bottom:293.987028pt;}
.y47_c00024{bottom:295.660100pt;}
.y46_c00024{bottom:296.634475pt;}
.y45_c00024{bottom:305.185319pt;}
.y44_c00024{bottom:306.001684pt;}
.y43_c00024{bottom:306.864491pt;}
.y42_c00024{bottom:307.368004pt;}
.y41_c00024{bottom:307.935924pt;}
.y40_c00024{bottom:309.111005pt;}
.y3f_c00024{bottom:310.917621pt;}
.y3e_c00024{bottom:311.604129pt;}
.y3d_c00024{bottom:312.505025pt;}
.y3c_c00024{bottom:313.063549pt;}
.y3b_c00024{bottom:314.709744pt;}
.y3a_c00024{bottom:315.543353pt;}
.y39_c00024{bottom:316.484247pt;}
.y38_c00024{bottom:317.769564pt;}
.y37_c00024{bottom:325.629788pt;}
.y36_c00024{bottom:326.991848pt;}
.y35_c00024{bottom:327.801020pt;}
.y34_c00024{bottom:328.800488pt;}
.y33_c00024{bottom:329.383112pt;}
.y32_c00024{bottom:331.094084pt;}
.y31_c00024{bottom:331.775096pt;}
.y30_c00024{bottom:333.110696pt;}
.y2f_c00024{bottom:333.795236pt;}
.y2e_c00024{bottom:334.668668pt;}
.y2d_c00024{bottom:336.488000pt;}
.y2c_c00024{bottom:345.845468pt;}
.y2b_c00024{bottom:347.347865pt;}
.y2a_c00024{bottom:347.855348pt;}
.y29_c00024{bottom:349.381740pt;}
.y28_c00024{bottom:349.724373pt;}
.y27_c00024{bottom:350.804652pt;}
.y26_c00024{bottom:351.650901pt;}
.y25_c00024{bottom:353.222537pt;}
.y24_c00024{bottom:354.585472pt;}
.y23_c00024{bottom:355.048755pt;}
.y22_c00024{bottom:355.910916pt;}
.y21_c00024{bottom:366.391612pt;}
.y20_c00024{bottom:367.182699pt;}
.y1f_c00024{bottom:368.050663pt;}
.y1e_c00024{bottom:369.065943pt;}
.y1d_c00024{bottom:369.526897pt;}
.y1c_c00024{bottom:370.330513pt;}
.y1b_c00024{bottom:370.879676pt;}
.y1a_c00024{bottom:372.880420pt;}
.y19_c00024{bottom:373.467944pt;}
.y18_c00024{bottom:374.341728pt;}
.y17_c00024{bottom:375.108955pt;}
.y16_c00024{bottom:376.077868pt;}
.y15_c00024{bottom:385.232117pt;}
.y14_c00024{bottom:385.823872pt;}
.y13_c00024{bottom:386.565576pt;}
.y12_c00024{bottom:387.400235pt;}
.y11_c00024{bottom:388.778547pt;}
.y10_c00024{bottom:390.513095pt;}
.yf_c00024{bottom:391.689837pt;}
.ye_c00024{bottom:393.032963pt;}
.yd_c00024{bottom:394.363173pt;}
.yc_c00024{bottom:395.452800pt;}
.yb_c00024{bottom:396.249333pt;}
.ya_c00024{bottom:460.812000pt;}
.y9_c00024{bottom:630.000000pt;}
.y8_c00024{bottom:682.856500pt;}
.y7_c00024{bottom:683.731300pt;}
.y6_c00024{bottom:724.554067pt;}
.y5_c00024{bottom:725.740967pt;}
.y4_c00024{bottom:801.001033pt;}
.y3_c00024{bottom:807.835600pt;}
.y2_c00024{bottom:811.697333pt;}
.y1_c00024{bottom:883.192000pt;}
.h1a_c00024{height:13.066667pt;}
.h19_c00024{height:14.933333pt;}
.h18_c00024{height:22.400000pt;}
.h11_c00024{height:23.341837pt;}
.h10_c00024{height:28.943878pt;}
.h17_c00024{height:30.800000pt;}
.h2_c00024{height:34.533333pt;}
.he_c00024{height:42.948980pt;}
.h12_c00024{height:45.752560pt;}
.h13_c00024{height:47.620012pt;}
.h15_c00024{height:48.509668pt;}
.h14_c00024{height:51.354914pt;}
.hb_c00024{height:57.887755pt;}
.ha_c00024{height:58.824720pt;}
.h8_c00024{height:59.758446pt;}
.hd_c00024{height:61.622449pt;}
.h9_c00024{height:61.625897pt;}
.hf_c00024{height:62.556123pt;}
.hc_c00024{height:66.290816pt;}
.h16_c00024{height:74.630258pt;}
.h6_c00024{height:80.266667pt;}
.h7_c00024{height:95.219038pt;}
.h5_c00024{height:126.972994pt;}
.h3_c00024{height:159.649867pt;}
.h4_c00024{height:167.118867pt;}
.h1_c00024{height:960.000000pt;}
.h0_c00024{height:960.240000pt;}
.w1_c00024{width:682.666667pt;}
.w0_c00024{width:682.800000pt;}
.x0_c00024{left:0.000000pt;}
.x54_c00024{left:51.208369pt;}
.x5a_c00024{left:52.454660pt;}
.x33_c00024{left:53.850305pt;}
.x3d_c00024{left:54.975560pt;}
.x6_c00024{left:58.016267pt;}
.x76_c00024{left:59.742667pt;}
.x4b_c00024{left:62.574373pt;}
.x49_c00024{left:67.693333pt;}
.x55_c00024{left:85.550931pt;}
.x5b_c00024{left:88.688355pt;}
.x3e_c00024{left:92.447235pt;}
.x34_c00024{left:99.774415pt;}
.x1b_c00024{left:101.243488pt;}
.x25_c00024{left:103.015293pt;}
.xf_c00024{left:104.516000pt;}
.x7_c00024{left:107.466833pt;}
.x64_c00024{left:110.188000pt;}
.x3_c00024{left:113.784000pt;}
.x84_c00024{left:115.778603pt;}
.x10_c00024{left:118.734667pt;}
.x4c_c00024{left:122.358373pt;}
.x65_c00024{left:126.244000pt;}
.x35_c00024{left:133.386848pt;}
.x85_c00024{left:135.413615pt;}
.x26_c00024{left:137.484609pt;}
.x1c_c00024{left:141.602660pt;}
.x66_c00024{left:144.820000pt;}
.x11_c00024{left:146.201333pt;}
.x5c_c00024{left:149.250735pt;}
.x27_c00024{left:155.990736pt;}
.x5d_c00024{left:158.586483pt;}
.x36_c00024{left:163.174056pt;}
.x56_c00024{left:164.432559pt;}
.x2d_c00024{left:167.904000pt;}
.x67_c00024{left:171.709333pt;}
.xa_c00024{left:174.240000pt;}
.x3f_c00024{left:178.044205pt;}
.x5e_c00024{left:179.957907pt;}
.x71_c00024{left:182.452123pt;}
.x12_c00024{left:183.774667pt;}
.x68_c00024{left:190.365333pt;}
.x7f_c00024{left:191.453112pt;}
.x4d_c00024{left:193.643707pt;}
.x2e_c00024{left:200.253333pt;}
.x86_c00024{left:201.855107pt;}
.x40_c00024{left:207.938331pt;}
.x1d_c00024{left:210.015264pt;}
.x8_c00024{left:210.995567pt;}
.x72_c00024{left:212.235640pt;}
.x4e_c00024{left:216.714373pt;}
.x77_c00024{left:220.162667pt;}
.x37_c00024{left:221.969805pt;}
.x2f_c00024{left:225.606667pt;}
.x13_c00024{left:229.644000pt;}
.x1e_c00024{left:234.508155pt;}
.x41_c00024{left:237.841789pt;}
.x4f_c00024{left:239.771707pt;}
.x38_c00024{left:241.914599pt;}
.x69_c00024{left:246.860000pt;}
.x78_c00024{left:247.758667pt;}
.x9_c00024{left:250.737200pt;}
.x87_c00024{left:257.040000pt;}
.x80_c00024{left:257.977188pt;}
.x5f_c00024{left:259.923711pt;}
.x79_c00024{left:261.213333pt;}
.x4_c00024{left:268.253333pt;}
.x42_c00024{left:270.010653pt;}
.x6a_c00024{left:271.746667pt;}
.x28_c00024{left:273.380347pt;}
.x14_c00024{left:275.958667pt;}
.x73_c00024{left:277.278868pt;}
.x50_c00024{left:282.754373pt;}
.x7a_c00024{left:285.046667pt;}
.x43_c00024{left:287.083121pt;}
.x6b_c00024{left:292.954667pt;}
.xb_c00024{left:298.080000pt;}
.x30_c00024{left:300.296000pt;}
.x29_c00024{left:307.254957pt;}
.x81_c00024{left:308.270844pt;}
.x6c_c00024{left:309.622667pt;}
.x15_c00024{left:316.536000pt;}
.x1f_c00024{left:317.856219pt;}
.x82_c00024{left:318.868236pt;}
.x7b_c00024{left:320.948000pt;}
.x6d_c00024{left:321.934667pt;}
.xc_c00024{left:324.960000pt;}
.x51_c00024{left:329.426373pt;}
.x20_c00024{left:340.750211pt;}
.x44_c00024{left:346.382039pt;}
.x7c_c00024{left:349.120000pt;}
.x2a_c00024{left:350.487984pt;}
.x6e_c00024{left:353.396000pt;}
.x60_c00024{left:361.474308pt;}
.x39_c00024{left:363.171359pt;}
.x2b_c00024{left:364.189569pt;}
.x74_c00024{left:370.692241pt;}
.x21_c00024{left:374.259083pt;}
.x16_c00024{left:376.348000pt;}
.x45_c00024{left:382.383011pt;}
.x31_c00024{left:385.244000pt;}
.x83_c00024{left:388.850184pt;}
.x88_c00024{left:390.960000pt;}
.x22_c00024{left:393.467200pt;}
.xd_c00024{left:396.720000pt;}
.x6f_c00024{left:399.492000pt;}
.x46_c00024{left:402.038217pt;}
.x4a_c00024{left:403.026667pt;}
.x3a_c00024{left:405.160909pt;}
.x7d_c00024{left:410.822667pt;}
.x89_c00024{left:413.520000pt;}
.x70_c00024{left:416.772000pt;}
.x47_c00024{left:418.157316pt;}
.x1_c00024{left:421.440000pt;}
.x17_c00024{left:423.876000pt;}
.x2c_c00024{left:425.244645pt;}
.x61_c00024{left:427.020544pt;}
.xe_c00024{left:436.560000pt;}
.x52_c00024{left:442.146373pt;}
.x3b_c00024{left:443.459901pt;}
.x2_c00024{left:445.920000pt;}
.x7e_c00024{left:449.213333pt;}
.x18_c00024{left:452.657333pt;}
.x8a_c00024{left:454.080000pt;}
.x48_c00024{left:456.563693pt;}
.x8b_c00024{left:457.920000pt;}
.x62_c00024{left:459.171680pt;}
.x57_c00024{left:461.632511pt;}
.x75_c00024{left:468.883064pt;}
.x23_c00024{left:471.981273pt;}
.x3c_c00024{left:474.279073pt;}
.x53_c00024{left:476.129040pt;}
.x19_c00024{left:478.233333pt;}
.x58_c00024{left:491.642063pt;}
.x1a_c00024{left:498.638667pt;}
.x32_c00024{left:502.677333pt;}
.x24_c00024{left:504.966068pt;}
.x63_c00024{left:507.878348pt;}
.x59_c00024{left:511.145812pt;}
.x5_c00024{left:541.636000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m11d_c00025{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);}
.m179_c00025{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);}
.me7_c00025{transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);}
.m14f_c00025{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);}
.m17e_c00025{transform:matrix(0.039565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039565,0.000000,0.000000,0.250000,0,0);}
.m17c_c00025{transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);}
.m190_c00025{transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);}
.m13c_c00025{transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);}
.m12d_c00025{transform:matrix(0.107980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107980,0.000000,0.000000,0.250000,0,0);}
.m17d_c00025{transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);}
.m18e_c00025{transform:matrix(0.113410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113410,0.000000,0.000000,0.250000,0,0);}
.m68_c00025{transform:matrix(0.132385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132385,0.000000,0.000000,0.250000,0,0);}
.m126_c00025{transform:matrix(0.132440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00025{transform:matrix(0.134190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134190,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.ma8_c00025{transform:matrix(0.135370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135370,0.000000,0.000000,0.250000,0,0);}
.mb7_c00025{transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);}
.m7a_c00025{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);}
.m62_c00025{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.md7_c00025{transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);}
.m61_c00025{transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00025{transform:matrix(0.140955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140955,0.000000,0.000000,0.250000,0,0);}
.m71_c00025{transform:matrix(0.141705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141705,0.000000,0.000000,0.250000,0,0);}
.m81_c00025{transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);}
.m6a_c00025{transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.mbc_c00025{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m74_c00025{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);}
.m105_c00025{transform:matrix(0.143945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143945,0.000000,0.000000,0.250000,0,0);}
.m5a_c00025{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00025{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);}
.m129_c00025{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00025{transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);}
.m82_c00025{transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{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);}
.mcb_c00025{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);}
.m22_c00025{transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);}
.m13d_c00025{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);}
.m7c_c00025{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);}
.m92_c00025{transform:matrix(0.156320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156320,0.000000,0.000000,0.250000,0,0);}
.m9c_c00025{transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);}
.m14e_c00025{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);}
.me1_c00025{transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);}
.m66_c00025{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);}
.mc2_c00025{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);}
.m13_c00025{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);}
.m140_c00025{transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);}
.mbd_c00025{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);}
.mba_c00025{transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);}
.m87_c00025{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);}
.m11f_c00025{transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);}
.m121_c00025{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);}
.m16c_c00025{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);}
.ma3_c00025{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);}
.m124_c00025{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);}
.mf0_c00025{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);}
.m50_c00025{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);}
.m16a_c00025{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);}
.m57_c00025{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);}
.m2f_c00025{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);}
.m13e_c00025{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);}
.m141_c00025{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);}
.m169_c00025{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);}
.mc4_c00025{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);}
.mc0_c00025{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);}
.m7_c00025{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m11b_c00025{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);}
.m29_c00025{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);}
.m161_c00025{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);}
.m48_c00025{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);}
.m23_c00025{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);}
.m85_c00025{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);}
.maa_c00025{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);}
.m8f_c00025{transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{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);}
.m120_c00025{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);}
.mae_c00025{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);}
.m11e_c00025{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);}
.m2_c00025{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);}
.m0_c00025{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);}
.mcf_c00025{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.m75_c00025{transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);}
.m13f_c00025{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);}
.m128_c00025{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.mda_c00025{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);}
.m95_c00025{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);}
.m99_c00025{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);}
.m14c_c00025{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);}
.mb0_c00025{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);}
.mdd_c00025{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);}
.m32_c00025{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);}
.m143_c00025{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);}
.m96_c00025{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);}
.mc8_c00025{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);}
.me3_c00025{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);}
.m53_c00025{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);}
.mf1_c00025{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);}
.m5_c00025{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);}
.m12b_c00025{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);}
.mc7_c00025{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);}
.m90_c00025{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);}
.m16b_c00025{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);}
.m60_c00025{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);}
.m7b_c00025{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);}
.m9a_c00025{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);}
.m72_c00025{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);}
.m108_c00025{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);}
.m7d_c00025{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);}
.m6f_c00025{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);}
.m5d_c00025{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);}
.m136_c00025{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);}
.m35_c00025{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);}
.m88_c00025{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);}
.ma9_c00025{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);}
.m37_c00025{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);}
.m67_c00025{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);}
.m8b_c00025{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);}
.m2c_c00025{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);}
.m94_c00025{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);}
.mb2_c00025{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);}
.m55_c00025{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);}
.m18d_c00025{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);}
.m10c_c00025{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);}
.m123_c00025{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);}
.mc5_c00025{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);}
.m26_c00025{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);}
.m12_c00025{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);}
.md9_c00025{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00025{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);}
.m133_c00025{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);}
.m93_c00025{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);}
.m28_c00025{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);}
.ma2_c00025{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);}
.mc3_c00025{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);}
.m56_c00025{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);}
.m144_c00025{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);}
.md0_c00025{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);}
.m122_c00025{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);}
.md5_c00025{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);}
.m91_c00025{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);}
.mfd_c00025{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);}
.m1f_c00025{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);}
.maf_c00025{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);}
.ma0_c00025{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);}
.m149_c00025{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);}
.m9e_c00025{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);}
.m1_c00025{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);}
.m47_c00025{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);}
.m9_c00025{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);}
.mf2_c00025{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);}
.m8d_c00025{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);}
.m7e_c00025{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_c00025{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);}
.m9d_c00025{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);}
.m145_c00025{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);}
.mcd_c00025{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);}
.m18f_c00025{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);}
.mca_c00025{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);}
.m1a_c00025{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);}
.m27_c00025{transform:matrix(0.183920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183920,0.000000,0.000000,0.250000,0,0);}
.m167_c00025{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);}
.m8e_c00025{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);}
.m34_c00025{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);}
.m16f_c00025{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);}
.md2_c00025{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);}
.m8c_c00025{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);}
.m59_c00025{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);}
.m4b_c00025{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);}
.mac_c00025{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);}
.m8a_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);}
.m17_c00025{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);}
.mef_c00025{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);}
.m83_c00025{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);}
.m2a_c00025{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);}
.m97_c00025{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);}
.me0_c00025{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);}
.m116_c00025{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);}
.m168_c00025{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);}
.m24_c00025{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);}
.m18c_c00025{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);}
.m80_c00025{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);}
.mc9_c00025{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);}
.mc1_c00025{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);}
.m14d_c00025{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m86_c00025{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m104_c00025{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);}
.m44_c00025{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);}
.m153_c00025{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);}
.m173_c00025{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);}
.m4e_c00025{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);}
.mce_c00025{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);}
.m7f_c00025{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_c00025{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);}
.mb8_c00025{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);}
.m16d_c00025{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);}
.m25_c00025{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);}
.md3_c00025{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);}
.mf_c00025{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);}
.m1b_c00025{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);}
.m14a_c00025{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);}
.m30_c00025{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);}
.m52_c00025{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);}
.m3f_c00025{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);}
.m38_c00025{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);}
.m21_c00025{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);}
.m11c_c00025{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);}
.mfc_c00025{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);}
.m147_c00025{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);}
.mdc_c00025{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);}
.m4_c00025{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);}
.m3c_c00025{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.m89_c00025{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);}
.m36_c00025{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);}
.m115_c00025{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);}
.mb6_c00025{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);}
.m117_c00025{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);}
.ma4_c00025{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);}
.m138_c00025{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);}
.m3d_c00025{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);}
.m101_c00025{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);}
.mb9_c00025{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);}
.m42_c00025{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);}
.md8_c00025{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);}
.m79_c00025{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);}
.m112_c00025{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);}
.m189_c00025{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);}
.m137_c00025{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);}
.mc_c00025{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);}
.mfb_c00025{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_c00025{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);}
.m102_c00025{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);}
.mf9_c00025{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);}
.md6_c00025{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);}
.ma7_c00025{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);}
.m14_c00025{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);}
.m76_c00025{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);}
.m3a_c00025{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);}
.m10_c00025{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);}
.mb3_c00025{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);}
.m134_c00025{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);}
.m132_c00025{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);}
.m54_c00025{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);}
.m135_c00025{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);}
.m142_c00025{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);}
.mad_c00025{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);}
.m58_c00025{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);}
.mfa_c00025{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);}
.m148_c00025{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);}
.m4a_c00025{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);}
.mde_c00025{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);}
.mf8_c00025{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);}
.m5c_c00025{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);}
.m127_c00025{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);}
.m33_c00025{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);}
.m8_c00025{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);}
.mf5_c00025{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);}
.mb1_c00025{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);}
.ma6_c00025{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);}
.md1_c00025{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);}
.m19_c00025{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);}
.m163_c00025{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);}
.mab_c00025{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);}
.mdb_c00025{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);}
.m151_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);}
.m3_c00025{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);}
.m157_c00025{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);}
.m10f_c00025{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m84_c00025{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);}
.m159_c00025{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);}
.m2d_c00025{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);}
.mbe_c00025{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);}
.mf6_c00025{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);}
.mb4_c00025{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);}
.m10b_c00025{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);}
.md_c00025{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);}
.m110_c00025{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);}
.m131_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);}
.m139_c00025{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);}
.mf4_c00025{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);}
.m41_c00025{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);}
.me2_c00025{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{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);}
.m170_c00025{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);}
.mcc_c00025{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);}
.m12f_c00025{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);}
.m156_c00025{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);}
.me9_c00025{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);}
.ma_c00025{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);}
.m154_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);}
.m4c_c00025{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);}
.m146_c00025{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);}
.m12a_c00025{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);}
.m15b_c00025{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);}
.m49_c00025{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);}
.m106_c00025{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);}
.m150_c00025{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);}
.m164_c00025{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);}
.m15_c00025{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);}
.m3b_c00025{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.m15c_c00025{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);}
.m155_c00025{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);}
.m13a_c00025{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);}
.m107_c00025{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.me8_c00025{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);}
.m16_c00025{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);}
.m6_c00025{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);}
.m16e_c00025{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);}
.m11_c00025{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);}
.m15f_c00025{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);}
.m14b_c00025{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);}
.m10a_c00025{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);}
.m10e_c00025{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);}
.m64_c00025{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);}
.m15a_c00025{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);}
.med_c00025{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);}
.m1d_c00025{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);}
.m166_c00025{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);}
.mec_c00025{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);}
.m158_c00025{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);}
.mfe_c00025{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);}
.m15e_c00025{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);}
.m11a_c00025{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);}
.me_c00025{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);}
.m109_c00025{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);}
.m165_c00025{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);}
.m114_c00025{transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.m125_c00025{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);}
.m188_c00025{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);}
.m69_c00025{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);}
.m186_c00025{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);}
.me6_c00025{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);}
.me4_c00025{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);}
.m160_c00025{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.me5_c00025{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);}
.m6d_c00025{transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);}
.m113_c00025{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);}
.m40_c00025{transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);}
.m175_c00025{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);}
.m4d_c00025{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);}
.m51_c00025{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m171_c00025{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.ma5_c00025{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);}
.m78_c00025{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.mdf_c00025{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.mbb_c00025{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m152_c00025{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);}
.m31_c00025{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);}
.m5e_c00025{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m172_c00025{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);}
.m103_c00025{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);}
.m18_c00025{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);}
.mee_c00025{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);}
.mf7_c00025{transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);}
.m17f_c00025{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.m100_c00025{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.269570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269570,0.000000,0.000000,0.250000,0,0);}
.m18b_c00025{transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);}
.m77_c00025{transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271515,0.000000,0.000000,0.250000,0,0);}
.m111_c00025{transform:matrix(0.273020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273020,0.000000,0.000000,0.250000,0,0);}
.m18a_c00025{transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);}
.m191_c00025{transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);}
.m15d_c00025{transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);}
.meb_c00025{transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);}
.m17b_c00025{transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);}
.m118_c00025{transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292495,0.000000,0.000000,0.250000,0,0);}
.md4_c00025{transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299335,0.000000,0.000000,0.250000,0,0);}
.m130_c00025{transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303205,0.000000,0.000000,0.250000,0,0);}
.m162_c00025{transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);}
.m119_c00025{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.m13b_c00025{transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);}
.mff_c00025{transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346020,0.000000,0.000000,0.250000,0,0);}
.m17a_c00025{transform:matrix(0.353585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353585,0.000000,0.000000,0.250000,0,0);}
.m10d_c00025{transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);}
.m178_c00025{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);}
.m63_c00025{transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);}
.mf3_c00025{transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);}
.mc6_c00025{transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);}
.m6b_c00025{transform:matrix(0.385540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00025{transform:matrix(0.396320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396320,0.000000,0.000000,0.250000,0,0);}
.m5f_c00025{transform:matrix(0.403595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403595,0.000000,0.000000,0.250000,0,0);}
.m65_c00025{transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);}
.m185_c00025{transform:matrix(0.442895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442895,0.000000,0.000000,0.250000,0,0);}
.mea_c00025{transform:matrix(0.453780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453780,0.000000,0.000000,0.250000,0,0);}
.m12c_c00025{transform:matrix(0.468365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468365,0.000000,0.000000,0.250000,0,0);}
.m177_c00025{transform:matrix(0.489290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489290,0.000000,0.000000,0.250000,0,0);}
.m176_c00025{transform:matrix(0.501560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501560,0.000000,0.000000,0.250000,0,0);}
.m12e_c00025{transform:matrix(0.572780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572780,0.000000,0.000000,0.250000,0,0);}
.m6c_c00025{transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);}
.m187_c00025{transform:matrix(0.599945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599945,0.000000,0.000000,0.250000,0,0);}
.m73_c00025{transform:matrix(0.619700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619700,0.000000,0.000000,0.250000,0,0);}
.m180_c00025{transform:matrix(0.735465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735465,0.000000,0.000000,0.250000,0,0);}
.m70_c00025{transform:matrix(0.739840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739840,0.000000,0.000000,0.250000,0,0);}
.m182_c00025{transform:matrix(0.848440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00025{transform:matrix(0.937445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937445,0.000000,0.000000,0.250000,0,0);}
.m183_c00025{transform:matrix(0.988700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988700,0.000000,0.000000,0.250000,0,0);}
.m174_c00025{transform:matrix(1.090765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090765,0.000000,0.000000,0.250000,0,0);}
.m181_c00025{transform:matrix(1.483490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.483490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.483490,0.000000,0.000000,0.250000,0,0);}
.m184_c00025{transform:matrix(3.836395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.836395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.836395,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;}
.fs13_c00025{font-size:22.050000px;}
.fs12_c00025{font-size:36.750000px;}
.fs10_c00025{font-size:46.200000px;}
.fs8_c00025{font-size:47.250000px;}
.fsd_c00025{font-size:49.350000px;}
.fsa_c00025{font-size:50.400000px;}
.fs9_c00025{font-size:51.450000px;}
.fsb_c00025{font-size:52.500000px;}
.fse_c00025{font-size:55.650000px;}
.fsc_c00025{font-size:57.750000px;}
.fs11_c00025{font-size:58.800000px;}
.fsf_c00025{font-size:59.850000px;}
.fs4_c00025{font-size:64.050000px;}
.fs3_c00025{font-size:67.200000px;}
.fs5_c00025{font-size:68.250000px;}
.fs7_c00025{font-size:69.300000px;}
.fs1_c00025{font-size:70.350000px;}
.fs2_c00025{font-size:71.400000px;}
.fs0_c00025{font-size:72.450000px;}
.fs6_c00025{font-size:76.650000px;}
.y0_c00025{bottom:0.000000px;}
.y32_c00025{bottom:5.001000px;}
.y31_c00025{bottom:7.596000px;}
.y30_c00025{bottom:165.390000px;}
.y2f_c00025{bottom:195.123000px;}
.y2a_c00025{bottom:195.523500px;}
.y2e_c00025{bottom:212.716500px;}
.y29_c00025{bottom:213.615000px;}
.y2d_c00025{bottom:231.039000px;}
.y28_c00025{bottom:231.397500px;}
.y2c_c00025{bottom:248.400000px;}
.y27_c00025{bottom:249.751500px;}
.y2b_c00025{bottom:266.338500px;}
.y26_c00025{bottom:267.075000px;}
.y23_c00025{bottom:284.952000px;}
.y22_c00025{bottom:302.703000px;}
.y21_c00025{bottom:320.253000px;}
.y20_c00025{bottom:338.343000px;}
.y24_c00025{bottom:339.118500px;}
.y1f_c00025{bottom:356.517000px;}
.y1e_c00025{bottom:393.499500px;}
.y1d_c00025{bottom:416.730000px;}
.y1c_c00025{bottom:439.401000px;}
.y1b_c00025{bottom:461.871000px;}
.y1a_c00025{bottom:485.295000px;}
.y19_c00025{bottom:507.709500px;}
.ye_c00025{bottom:528.121500px;}
.yf_c00025{bottom:528.432000px;}
.y10_c00025{bottom:528.906000px;}
.y11_c00025{bottom:529.341000px;}
.y12_c00025{bottom:529.873500px;}
.y13_c00025{bottom:530.058000px;}
.y14_c00025{bottom:530.395500px;}
.y15_c00025{bottom:531.133500px;}
.y16_c00025{bottom:531.379500px;}
.y17_c00025{bottom:531.967500px;}
.y18_c00025{bottom:532.144500px;}
.yd_c00025{bottom:553.612500px;}
.yc_c00025{bottom:576.798000px;}
.yb_c00025{bottom:598.935000px;}
.ya_c00025{bottom:645.300000px;}
.y9_c00025{bottom:666.250500px;}
.y8_c00025{bottom:689.997000px;}
.y7_c00025{bottom:711.244500px;}
.y6_c00025{bottom:735.081000px;}
.y5_c00025{bottom:758.064000px;}
.y4_c00025{bottom:781.011000px;}
.y3_c00025{bottom:804.171000px;}
.y2_c00025{bottom:827.080500px;}
.y34_c00025{bottom:843.750000px;}
.y1_c00025{bottom:850.069500px;}
.y33_c00025{bottom:857.790000px;}
.y25_c00025{bottom:872.751000px;}
.h15_c00025{height:22.050000px;}
.h14_c00025{height:36.750000px;}
.h12_c00025{height:46.200000px;}
.ha_c00025{height:47.250000px;}
.hf_c00025{height:49.350000px;}
.hc_c00025{height:50.400000px;}
.hb_c00025{height:51.450000px;}
.hd_c00025{height:52.500000px;}
.h10_c00025{height:55.650000px;}
.he_c00025{height:57.750000px;}
.h13_c00025{height:58.800000px;}
.h11_c00025{height:59.850000px;}
.h6_c00025{height:64.050000px;}
.h5_c00025{height:67.200000px;}
.h7_c00025{height:68.250000px;}
.h9_c00025{height:69.300000px;}
.h3_c00025{height:70.350000px;}
.h4_c00025{height:71.400000px;}
.h2_c00025{height:72.450000px;}
.h8_c00025{height:76.650000px;}
.h0_c00025{height:1086.450000px;}
.h1_c00025{height:1086.750000px;}
.w1_c00025{width:771.000000px;}
.w0_c00025{width:771.120000px;}
.x0_c00025{left:0.000000px;}
.xc8_c00025{left:145.530000px;}
.x7a_c00025{left:181.710000px;}
.x14_c00025{left:189.810000px;}
.x4b_c00025{left:191.160000px;}
.x1_c00025{left:192.240000px;}
.x9e_c00025{left:193.320000px;}
.x97_c00025{left:205.740000px;}
.x81_c00025{left:207.360000px;}
.x2a_c00025{left:213.570000px;}
.x98_c00025{left:217.890000px;}
.x69_c00025{left:220.590000px;}
.x15_c00025{left:222.210000px;}
.x7b_c00025{left:224.640000px;}
.x6e_c00025{left:226.389000px;}
.x32_c00025{left:228.960000px;}
.x86_c00025{left:230.850000px;}
.x90_c00025{left:233.010000px;}
.x8b_c00025{left:235.710000px;}
.x7c_c00025{left:238.140000px;}
.x59_c00025{left:241.380000px;}
.x20_c00025{left:243.000000px;}
.xb2_c00025{left:246.510000px;}
.xb8_c00025{left:248.670000px;}
.x2_c00025{left:251.910000px;}
.x39_c00025{left:254.070000px;}
.x6a_c00025{left:255.960000px;}
.xa2_c00025{left:257.310000px;}
.x33_c00025{left:259.200000px;}
.x16_c00025{left:260.820000px;}
.x2b_c00025{left:262.980000px;}
.x21_c00025{left:264.060000px;}
.xa_c00025{left:265.950000px;}
.x4c_c00025{left:268.920000px;}
.x40_c00025{left:271.890000px;}
.xb9_c00025{left:272.970000px;}
.x91_c00025{left:275.130000px;}
.x82_c00025{left:277.290000px;}
.x6f_c00025{left:279.042000px;}
.x3_c00025{left:282.150000px;}
.x60_c00025{left:283.230000px;}
.x87_c00025{left:292.140000px;}
.x41_c00025{left:293.220000px;}
.x2c_c00025{left:295.110000px;}
.x7d_c00025{left:296.190000px;}
.x8c_c00025{left:297.270000px;}
.x61_c00025{left:300.780000px;}
.xa3_c00025{left:302.130000px;}
.xba_c00025{left:303.480000px;}
.x8d_c00025{left:306.180000px;}
.x22_c00025{left:308.340000px;}
.x42_c00025{left:309.960000px;}
.x99_c00025{left:316.170000px;}
.x9f_c00025{left:319.140000px;}
.xb_c00025{left:320.220000px;}
.x5a_c00025{left:323.190000px;}
.x3a_c00025{left:324.270000px;}
.x2d_c00025{left:326.430000px;}
.x62_c00025{left:328.860000px;}
.xa4_c00025{left:331.560000px;}
.x4d_c00025{left:333.990000px;}
.x75_c00025{left:335.070000px;}
.x9a_c00025{left:339.660000px;}
.x23_c00025{left:342.900000px;}
.x4_c00025{left:344.520000px;}
.x2e_c00025{left:345.600000px;}
.x43_c00025{left:348.840000px;}
.xc_c00025{left:350.460000px;}
.xbc_c00025{left:351.540000px;}
.x4e_c00025{left:355.590000px;}
.x17_c00025{left:356.670000px;}
.x92_c00025{left:361.800000px;}
.x63_c00025{left:363.960000px;}
.xb6_c00025{left:367.200000px;}
.x3b_c00025{left:368.820000px;}
.x76_c00025{left:369.900000px;}
.xa8_c00025{left:372.600000px;}
.x83_c00025{left:373.950000px;}
.x18_c00025{left:378.810000px;}
.xbb_c00025{left:380.430000px;}
.x44_c00025{left:381.510000px;}
.x64_c00025{left:383.940000px;}
.xd_c00025{left:385.020000px;}
.x34_c00025{left:386.910000px;}
.xb7_c00025{left:392.580000px;}
.x4f_c00025{left:399.870000px;}
.x7e_c00025{left:401.220000px;}
.x70_c00025{left:406.975500px;}
.x19_c00025{left:412.290000px;}
.xb3_c00025{left:413.640000px;}
.x65_c00025{left:414.720000px;}
.x3c_c00025{left:415.800000px;}
.x50_c00025{left:418.230000px;}
.x5_c00025{left:421.470000px;}
.xa0_c00025{left:426.060000px;}
.x24_c00025{left:427.140000px;}
.x77_c00025{left:428.490000px;}
.x5b_c00025{left:429.570000px;}
.x9b_c00025{left:430.650000px;}
.xae_c00025{left:432.000000px;}
.x1a_c00025{left:433.080000px;}
.xa9_c00025{left:434.160000px;}
.x93_c00025{left:435.510000px;}
.x51_c00025{left:437.940000px;}
.x45_c00025{left:439.290000px;}
.xc4_c00025{left:440.370000px;}
.x71_c00025{left:444.538500px;}
.xe_c00025{left:449.820000px;}
.x7f_c00025{left:451.710000px;}
.x66_c00025{left:454.680000px;}
.x6_c00025{left:456.300000px;}
.x25_c00025{left:458.460000px;}
.x46_c00025{left:460.350000px;}
.xbd_c00025{left:461.430000px;}
.xcb_c00025{left:466.560000px;}
.x5c_c00025{left:467.640000px;}
.x52_c00025{left:474.390000px;}
.x3d_c00025{left:478.170000px;}
.x9c_c00025{left:479.520000px;}
.xf_c00025{left:481.140000px;}
.x47_c00025{left:484.110000px;}
.x88_c00025{left:485.190000px;}
.xaa_c00025{left:487.890000px;}
.xbe_c00025{left:489.240000px;}
.xc5_c00025{left:490.860000px;}
.x94_c00025{left:491.940000px;}
.x35_c00025{left:495.180000px;}
.xc0_c00025{left:496.800000px;}
.x78_c00025{left:500.580000px;}
.x89_c00025{left:505.440000px;}
.x84_c00025{left:507.060000px;}
.xc1_c00025{left:510.030000px;}
.x53_c00025{left:511.650000px;}
.x6b_c00025{left:513.540000px;}
.xa5_c00025{left:515.970000px;}
.x1b_c00025{left:517.590000px;}
.x26_c00025{left:518.670000px;}
.x10_c00025{left:522.180000px;}
.xcc_c00025{left:524.880000px;}
.x2f_c00025{left:527.040000px;}
.xab_c00025{left:528.930000px;}
.xc3_c00025{left:530.550000px;}
.x48_c00025{left:534.060000px;}
.xc6_c00025{left:537.570000px;}
.x5d_c00025{left:539.460000px;}
.xaf_c00025{left:540.810000px;}
.x7_c00025{left:541.890000px;}
.x36_c00025{left:545.670000px;}
.xac_c00025{left:549.720000px;}
.x3e_c00025{left:550.800000px;}
.x1c_c00025{left:551.880000px;}
.x72_c00025{left:553.884000px;}
.x95_c00025{left:555.390000px;}
.x79_c00025{left:556.470000px;}
.x49_c00025{left:558.360000px;}
.x80_c00025{left:559.980000px;}
.x27_c00025{left:561.060000px;}
.x5e_c00025{left:565.650000px;}
.xb0_c00025{left:566.730000px;}
.xc9_c00025{left:568.620000px;}
.x1d_c00025{left:570.780000px;}
.xa6_c00025{left:573.750000px;}
.x67_c00025{left:578.340000px;}
.xc7_c00025{left:581.040000px;}
.xb4_c00025{left:582.930000px;}
.x28_c00025{left:584.010000px;}
.xc2_c00025{left:587.520000px;}
.x30_c00025{left:589.140000px;}
.x11_c00025{left:591.030000px;}
.x8e_c00025{left:592.110000px;}
.xb1_c00025{left:593.190000px;}
.xa7_c00025{left:594.810000px;}
.x37_c00025{left:595.890000px;}
.x56_c00025{left:599.130000px;}
.x8_c00025{left:600.480000px;}
.x54_c00025{left:602.370000px;}
.xad_c00025{left:604.800000px;}
.x6c_c00025{left:605.880000px;}
.x4a_c00025{left:608.040000px;}
.x12_c00025{left:609.390000px;}
.x85_c00025{left:611.280000px;}
.x3f_c00025{left:612.900000px;}
.x1e_c00025{left:615.060000px;}
.x9d_c00025{left:616.410000px;}
.x73_c00025{left:619.228500px;}
.x8f_c00025{left:621.000000px;}
.x38_c00025{left:622.080000px;}
.x55_c00025{left:624.510000px;}
.xbf_c00025{left:626.400000px;}
.xa1_c00025{left:627.750000px;}
.x57_c00025{left:629.100000px;}
.x68_c00025{left:632.070000px;}
.x5f_c00025{left:633.960000px;}
.x58_c00025{left:637.200000px;}
.x74_c00025{left:638.932500px;}
.x6d_c00025{left:641.250000px;}
.x9_c00025{left:643.950000px;}
.x31_c00025{left:645.300000px;}
.x29_c00025{left:647.460000px;}
.xb5_c00025{left:648.810000px;}
.x1f_c00025{left:650.700000px;}
.x13_c00025{left:652.050000px;}
.x96_c00025{left:653.400000px;}
.x8a_c00025{left:655.830000px;}
.xca_c00025{left:657.990000px;}
.xcd_c00025{left:765.180000px;}
.xce_c00025{left:768.690000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.fs13_c00025{font-size:19.600000pt;}
.fs12_c00025{font-size:32.666667pt;}
.fs10_c00025{font-size:41.066667pt;}
.fs8_c00025{font-size:42.000000pt;}
.fsd_c00025{font-size:43.866667pt;}
.fsa_c00025{font-size:44.800000pt;}
.fs9_c00025{font-size:45.733333pt;}
.fsb_c00025{font-size:46.666667pt;}
.fse_c00025{font-size:49.466667pt;}
.fsc_c00025{font-size:51.333333pt;}
.fs11_c00025{font-size:52.266667pt;}
.fsf_c00025{font-size:53.200000pt;}
.fs4_c00025{font-size:56.933333pt;}
.fs3_c00025{font-size:59.733333pt;}
.fs5_c00025{font-size:60.666667pt;}
.fs7_c00025{font-size:61.600000pt;}
.fs1_c00025{font-size:62.533333pt;}
.fs2_c00025{font-size:63.466667pt;}
.fs0_c00025{font-size:64.400000pt;}
.fs6_c00025{font-size:68.133333pt;}
.y0_c00025{bottom:0.000000pt;}
.y32_c00025{bottom:4.445333pt;}
.y31_c00025{bottom:6.752000pt;}
.y30_c00025{bottom:147.013333pt;}
.y2f_c00025{bottom:173.442667pt;}
.y2a_c00025{bottom:173.798667pt;}
.y2e_c00025{bottom:189.081333pt;}
.y29_c00025{bottom:189.880000pt;}
.y2d_c00025{bottom:205.368000pt;}
.y28_c00025{bottom:205.686667pt;}
.y2c_c00025{bottom:220.800000pt;}
.y27_c00025{bottom:222.001333pt;}
.y2b_c00025{bottom:236.745333pt;}
.y26_c00025{bottom:237.400000pt;}
.y23_c00025{bottom:253.290667pt;}
.y22_c00025{bottom:269.069333pt;}
.y21_c00025{bottom:284.669333pt;}
.y20_c00025{bottom:300.749333pt;}
.y24_c00025{bottom:301.438667pt;}
.y1f_c00025{bottom:316.904000pt;}
.y1e_c00025{bottom:349.777333pt;}
.y1d_c00025{bottom:370.426667pt;}
.y1c_c00025{bottom:390.578667pt;}
.y1b_c00025{bottom:410.552000pt;}
.y1a_c00025{bottom:431.373333pt;}
.y19_c00025{bottom:451.297333pt;}
.ye_c00025{bottom:469.441333pt;}
.yf_c00025{bottom:469.717333pt;}
.y10_c00025{bottom:470.138667pt;}
.y11_c00025{bottom:470.525333pt;}
.y12_c00025{bottom:470.998667pt;}
.y13_c00025{bottom:471.162667pt;}
.y14_c00025{bottom:471.462667pt;}
.y15_c00025{bottom:472.118667pt;}
.y16_c00025{bottom:472.337333pt;}
.y17_c00025{bottom:472.860000pt;}
.y18_c00025{bottom:473.017333pt;}
.yd_c00025{bottom:492.100000pt;}
.yc_c00025{bottom:512.709333pt;}
.yb_c00025{bottom:532.386667pt;}
.ya_c00025{bottom:573.600000pt;}
.y9_c00025{bottom:592.222667pt;}
.y8_c00025{bottom:613.330667pt;}
.y7_c00025{bottom:632.217333pt;}
.y6_c00025{bottom:653.405333pt;}
.y5_c00025{bottom:673.834667pt;}
.y4_c00025{bottom:694.232000pt;}
.y3_c00025{bottom:714.818667pt;}
.y2_c00025{bottom:735.182667pt;}
.y34_c00025{bottom:750.000000pt;}
.y1_c00025{bottom:755.617333pt;}
.y33_c00025{bottom:762.480000pt;}
.y25_c00025{bottom:775.778667pt;}
.h15_c00025{height:19.600000pt;}
.h14_c00025{height:32.666667pt;}
.h12_c00025{height:41.066667pt;}
.ha_c00025{height:42.000000pt;}
.hf_c00025{height:43.866667pt;}
.hc_c00025{height:44.800000pt;}
.hb_c00025{height:45.733333pt;}
.hd_c00025{height:46.666667pt;}
.h10_c00025{height:49.466667pt;}
.he_c00025{height:51.333333pt;}
.h13_c00025{height:52.266667pt;}
.h11_c00025{height:53.200000pt;}
.h6_c00025{height:56.933333pt;}
.h5_c00025{height:59.733333pt;}
.h7_c00025{height:60.666667pt;}
.h9_c00025{height:61.600000pt;}
.h3_c00025{height:62.533333pt;}
.h4_c00025{height:63.466667pt;}
.h2_c00025{height:64.400000pt;}
.h8_c00025{height:68.133333pt;}
.h0_c00025{height:965.733333pt;}
.h1_c00025{height:966.000000pt;}
.w1_c00025{width:685.333333pt;}
.w0_c00025{width:685.440000pt;}
.x0_c00025{left:0.000000pt;}
.xc8_c00025{left:129.360000pt;}
.x7a_c00025{left:161.520000pt;}
.x14_c00025{left:168.720000pt;}
.x4b_c00025{left:169.920000pt;}
.x1_c00025{left:170.880000pt;}
.x9e_c00025{left:171.840000pt;}
.x97_c00025{left:182.880000pt;}
.x81_c00025{left:184.320000pt;}
.x2a_c00025{left:189.840000pt;}
.x98_c00025{left:193.680000pt;}
.x69_c00025{left:196.080000pt;}
.x15_c00025{left:197.520000pt;}
.x7b_c00025{left:199.680000pt;}
.x6e_c00025{left:201.234667pt;}
.x32_c00025{left:203.520000pt;}
.x86_c00025{left:205.200000pt;}
.x90_c00025{left:207.120000pt;}
.x8b_c00025{left:209.520000pt;}
.x7c_c00025{left:211.680000pt;}
.x59_c00025{left:214.560000pt;}
.x20_c00025{left:216.000000pt;}
.xb2_c00025{left:219.120000pt;}
.xb8_c00025{left:221.040000pt;}
.x2_c00025{left:223.920000pt;}
.x39_c00025{left:225.840000pt;}
.x6a_c00025{left:227.520000pt;}
.xa2_c00025{left:228.720000pt;}
.x33_c00025{left:230.400000pt;}
.x16_c00025{left:231.840000pt;}
.x2b_c00025{left:233.760000pt;}
.x21_c00025{left:234.720000pt;}
.xa_c00025{left:236.400000pt;}
.x4c_c00025{left:239.040000pt;}
.x40_c00025{left:241.680000pt;}
.xb9_c00025{left:242.640000pt;}
.x91_c00025{left:244.560000pt;}
.x82_c00025{left:246.480000pt;}
.x6f_c00025{left:248.037333pt;}
.x3_c00025{left:250.800000pt;}
.x60_c00025{left:251.760000pt;}
.x87_c00025{left:259.680000pt;}
.x41_c00025{left:260.640000pt;}
.x2c_c00025{left:262.320000pt;}
.x7d_c00025{left:263.280000pt;}
.x8c_c00025{left:264.240000pt;}
.x61_c00025{left:267.360000pt;}
.xa3_c00025{left:268.560000pt;}
.xba_c00025{left:269.760000pt;}
.x8d_c00025{left:272.160000pt;}
.x22_c00025{left:274.080000pt;}
.x42_c00025{left:275.520000pt;}
.x99_c00025{left:281.040000pt;}
.x9f_c00025{left:283.680000pt;}
.xb_c00025{left:284.640000pt;}
.x5a_c00025{left:287.280000pt;}
.x3a_c00025{left:288.240000pt;}
.x2d_c00025{left:290.160000pt;}
.x62_c00025{left:292.320000pt;}
.xa4_c00025{left:294.720000pt;}
.x4d_c00025{left:296.880000pt;}
.x75_c00025{left:297.840000pt;}
.x9a_c00025{left:301.920000pt;}
.x23_c00025{left:304.800000pt;}
.x4_c00025{left:306.240000pt;}
.x2e_c00025{left:307.200000pt;}
.x43_c00025{left:310.080000pt;}
.xc_c00025{left:311.520000pt;}
.xbc_c00025{left:312.480000pt;}
.x4e_c00025{left:316.080000pt;}
.x17_c00025{left:317.040000pt;}
.x92_c00025{left:321.600000pt;}
.x63_c00025{left:323.520000pt;}
.xb6_c00025{left:326.400000pt;}
.x3b_c00025{left:327.840000pt;}
.x76_c00025{left:328.800000pt;}
.xa8_c00025{left:331.200000pt;}
.x83_c00025{left:332.400000pt;}
.x18_c00025{left:336.720000pt;}
.xbb_c00025{left:338.160000pt;}
.x44_c00025{left:339.120000pt;}
.x64_c00025{left:341.280000pt;}
.xd_c00025{left:342.240000pt;}
.x34_c00025{left:343.920000pt;}
.xb7_c00025{left:348.960000pt;}
.x4f_c00025{left:355.440000pt;}
.x7e_c00025{left:356.640000pt;}
.x70_c00025{left:361.756000pt;}
.x19_c00025{left:366.480000pt;}
.xb3_c00025{left:367.680000pt;}
.x65_c00025{left:368.640000pt;}
.x3c_c00025{left:369.600000pt;}
.x50_c00025{left:371.760000pt;}
.x5_c00025{left:374.640000pt;}
.xa0_c00025{left:378.720000pt;}
.x24_c00025{left:379.680000pt;}
.x77_c00025{left:380.880000pt;}
.x5b_c00025{left:381.840000pt;}
.x9b_c00025{left:382.800000pt;}
.xae_c00025{left:384.000000pt;}
.x1a_c00025{left:384.960000pt;}
.xa9_c00025{left:385.920000pt;}
.x93_c00025{left:387.120000pt;}
.x51_c00025{left:389.280000pt;}
.x45_c00025{left:390.480000pt;}
.xc4_c00025{left:391.440000pt;}
.x71_c00025{left:395.145333pt;}
.xe_c00025{left:399.840000pt;}
.x7f_c00025{left:401.520000pt;}
.x66_c00025{left:404.160000pt;}
.x6_c00025{left:405.600000pt;}
.x25_c00025{left:407.520000pt;}
.x46_c00025{left:409.200000pt;}
.xbd_c00025{left:410.160000pt;}
.xcb_c00025{left:414.720000pt;}
.x5c_c00025{left:415.680000pt;}
.x52_c00025{left:421.680000pt;}
.x3d_c00025{left:425.040000pt;}
.x9c_c00025{left:426.240000pt;}
.xf_c00025{left:427.680000pt;}
.x47_c00025{left:430.320000pt;}
.x88_c00025{left:431.280000pt;}
.xaa_c00025{left:433.680000pt;}
.xbe_c00025{left:434.880000pt;}
.xc5_c00025{left:436.320000pt;}
.x94_c00025{left:437.280000pt;}
.x35_c00025{left:440.160000pt;}
.xc0_c00025{left:441.600000pt;}
.x78_c00025{left:444.960000pt;}
.x89_c00025{left:449.280000pt;}
.x84_c00025{left:450.720000pt;}
.xc1_c00025{left:453.360000pt;}
.x53_c00025{left:454.800000pt;}
.x6b_c00025{left:456.480000pt;}
.xa5_c00025{left:458.640000pt;}
.x1b_c00025{left:460.080000pt;}
.x26_c00025{left:461.040000pt;}
.x10_c00025{left:464.160000pt;}
.xcc_c00025{left:466.560000pt;}
.x2f_c00025{left:468.480000pt;}
.xab_c00025{left:470.160000pt;}
.xc3_c00025{left:471.600000pt;}
.x48_c00025{left:474.720000pt;}
.xc6_c00025{left:477.840000pt;}
.x5d_c00025{left:479.520000pt;}
.xaf_c00025{left:480.720000pt;}
.x7_c00025{left:481.680000pt;}
.x36_c00025{left:485.040000pt;}
.xac_c00025{left:488.640000pt;}
.x3e_c00025{left:489.600000pt;}
.x1c_c00025{left:490.560000pt;}
.x72_c00025{left:492.341333pt;}
.x95_c00025{left:493.680000pt;}
.x79_c00025{left:494.640000pt;}
.x49_c00025{left:496.320000pt;}
.x80_c00025{left:497.760000pt;}
.x27_c00025{left:498.720000pt;}
.x5e_c00025{left:502.800000pt;}
.xb0_c00025{left:503.760000pt;}
.xc9_c00025{left:505.440000pt;}
.x1d_c00025{left:507.360000pt;}
.xa6_c00025{left:510.000000pt;}
.x67_c00025{left:514.080000pt;}
.xc7_c00025{left:516.480000pt;}
.xb4_c00025{left:518.160000pt;}
.x28_c00025{left:519.120000pt;}
.xc2_c00025{left:522.240000pt;}
.x30_c00025{left:523.680000pt;}
.x11_c00025{left:525.360000pt;}
.x8e_c00025{left:526.320000pt;}
.xb1_c00025{left:527.280000pt;}
.xa7_c00025{left:528.720000pt;}
.x37_c00025{left:529.680000pt;}
.x56_c00025{left:532.560000pt;}
.x8_c00025{left:533.760000pt;}
.x54_c00025{left:535.440000pt;}
.xad_c00025{left:537.600000pt;}
.x6c_c00025{left:538.560000pt;}
.x4a_c00025{left:540.480000pt;}
.x12_c00025{left:541.680000pt;}
.x85_c00025{left:543.360000pt;}
.x3f_c00025{left:544.800000pt;}
.x1e_c00025{left:546.720000pt;}
.x9d_c00025{left:547.920000pt;}
.x73_c00025{left:550.425333pt;}
.x8f_c00025{left:552.000000pt;}
.x38_c00025{left:552.960000pt;}
.x55_c00025{left:555.120000pt;}
.xbf_c00025{left:556.800000pt;}
.xa1_c00025{left:558.000000pt;}
.x57_c00025{left:559.200000pt;}
.x68_c00025{left:561.840000pt;}
.x5f_c00025{left:563.520000pt;}
.x58_c00025{left:566.400000pt;}
.x74_c00025{left:567.940000pt;}
.x6d_c00025{left:570.000000pt;}
.x9_c00025{left:572.400000pt;}
.x31_c00025{left:573.600000pt;}
.x29_c00025{left:575.520000pt;}
.xb5_c00025{left:576.720000pt;}
.x1f_c00025{left:578.400000pt;}
.x13_c00025{left:579.600000pt;}
.x96_c00025{left:580.800000pt;}
.x8a_c00025{left:582.960000pt;}
.xca_c00025{left:584.880000pt;}
.xcd_c00025{left:680.160000pt;}
.xce_c00025{left:683.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3_c00026{transform:matrix(0.014931,0.000328,-0.005499,0.249940,0,0);-ms-transform:matrix(0.014931,0.000328,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.014931,0.000328,-0.005499,0.249940,0,0);}
.m5f_c00026{transform:matrix(0.016429,0.000164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.016429,0.000164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.016429,0.000164,-0.002500,0.249988,0,0);}
.m71_c00026{transform:matrix(0.022603,0.000724,-0.008004,0.249872,0,0);-ms-transform:matrix(0.022603,0.000724,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.022603,0.000724,-0.008004,0.249872,0,0);}
.m6_c00026{transform:matrix(0.059386,0.001306,-0.005499,0.249940,0,0);-ms-transform:matrix(0.059386,0.001306,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.059386,0.001306,-0.005499,0.249940,0,0);}
.m9_c00026{transform:matrix(0.101450,0.002232,-0.005499,0.249940,0,0);-ms-transform:matrix(0.101450,0.002232,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.101450,0.002232,-0.005499,0.249940,0,0);}
.m76_c00026{transform:matrix(0.113007,0.003620,-0.008004,0.249872,0,0);-ms-transform:matrix(0.113007,0.003620,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.113007,0.003620,-0.008004,0.249872,0,0);}
.m51_c00026{transform:matrix(0.125930,0.002267,-0.004499,0.249960,0,0);-ms-transform:matrix(0.125930,0.002267,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.125930,0.002267,-0.004499,0.249960,0,0);}
.m57_c00026{transform:matrix(0.138858,0.002499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.138858,0.002499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.138858,0.002499,-0.004499,0.249960,0,0);}
.m75_c00026{transform:matrix(0.139184,0.004458,-0.008004,0.249872,0,0);-ms-transform:matrix(0.139184,0.004458,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.139184,0.004458,-0.008004,0.249872,0,0);}
.m48_c00026{transform:matrix(0.144392,0.002599,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144392,0.002599,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144392,0.002599,-0.004499,0.249960,0,0);}
.m77_c00026{transform:matrix(0.147944,0.004739,-0.008004,0.249872,0,0);-ms-transform:matrix(0.147944,0.004739,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.147944,0.004739,-0.008004,0.249872,0,0);}
.m74_c00026{transform:matrix(0.149528,0.004790,-0.008004,0.249872,0,0);-ms-transform:matrix(0.149528,0.004790,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.149528,0.004790,-0.008004,0.249872,0,0);}
.m53_c00026{transform:matrix(0.150456,0.002708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150456,0.002708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150456,0.002708,-0.004499,0.249960,0,0);}
.mc4_c00026{transform:matrix(0.153190,0.002757,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153190,0.002757,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153190,0.002757,-0.004499,0.249960,0,0);}
.m56_c00026{transform:matrix(0.153585,0.002765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153585,0.002765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153585,0.002765,-0.004499,0.249960,0,0);}
.mc1_c00026{transform:matrix(0.153635,0.002765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153635,0.002765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153635,0.002765,-0.004499,0.249960,0,0);}
.mb2_c00026{transform:matrix(0.154720,0.002785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154720,0.002785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154720,0.002785,-0.004499,0.249960,0,0);}
.ma0_c00026{transform:matrix(0.158404,0.002851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158404,0.002851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158404,0.002851,-0.004499,0.249960,0,0);}
.m6b_c00026{transform:matrix(0.159022,0.001590,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159022,0.001590,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159022,0.001590,-0.002500,0.249988,0,0);}
.m5d_c00026{transform:matrix(0.159532,0.001595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159532,0.001595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159532,0.001595,-0.002500,0.249988,0,0);}
.m9f_c00026{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);}
.m6d_c00026{transform:matrix(0.161912,0.001619,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161912,0.001619,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161912,0.001619,-0.002500,0.249988,0,0);}
.m32_c00026{transform:matrix(0.163289,0.002939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163289,0.002939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163289,0.002939,-0.004499,0.249960,0,0);}
.m8d_c00026{transform:matrix(0.163544,0.002944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163544,0.002944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163544,0.002944,-0.004499,0.249960,0,0);}
.m10_c00026{transform:matrix(0.164323,0.002958,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164323,0.002958,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164323,0.002958,-0.004499,0.249960,0,0);}
.m8_c00026{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);}
.m95_c00026{transform:matrix(0.165213,0.002974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165213,0.002974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165213,0.002974,-0.004499,0.249960,0,0);}
.m5c_c00026{transform:matrix(0.165552,0.001656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165552,0.001656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165552,0.001656,-0.002500,0.249988,0,0);}
.m89_c00026{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);}
.m98_c00026{transform:matrix(0.167183,0.003009,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167183,0.003009,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167183,0.003009,-0.004499,0.249960,0,0);}
.me_c00026{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);}
.m67_c00026{transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);}
.m66_c00026{transform:matrix(0.168772,0.001688,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168772,0.001688,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168772,0.001688,-0.002500,0.249988,0,0);}
.m31_c00026{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);}
.m54_c00026{transform:matrix(0.172947,0.003113,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172947,0.003113,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172947,0.003113,-0.004499,0.249960,0,0);}
.m1e_c00026{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);}
.m62_c00026{transform:matrix(0.174721,0.001747,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174721,0.001747,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174721,0.001747,-0.002500,0.249988,0,0);}
.m16_c00026{transform:matrix(0.174727,0.003145,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174727,0.003145,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174727,0.003145,-0.004499,0.249960,0,0);}
.m6a_c00026{transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);}
.m52_c00026{transform:matrix(0.175172,0.003153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175172,0.003153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175172,0.003153,-0.004499,0.249960,0,0);}
.m29_c00026{transform:matrix(0.175192,0.003153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175192,0.003153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175192,0.003153,-0.004499,0.249960,0,0);}
.m4c_c00026{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);}
.m69_c00026{transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);}
.m34_c00026{transform:matrix(0.175887,0.003166,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175887,0.003166,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175887,0.003166,-0.004499,0.249960,0,0);}
.mb8_c00026{transform:matrix(0.176991,0.003186,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176991,0.003186,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176991,0.003186,-0.004499,0.249960,0,0);}
.m60_c00026{transform:matrix(0.177111,0.001771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177111,0.001771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177111,0.001771,-0.002500,0.249988,0,0);}
.m36_c00026{transform:matrix(0.177141,0.003189,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177141,0.003189,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177141,0.003189,-0.004499,0.249960,0,0);}
.m27_c00026{transform:matrix(0.177861,0.003202,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177861,0.003202,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177861,0.003202,-0.004499,0.249960,0,0);}
.m8b_c00026{transform:matrix(0.178456,0.003212,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178456,0.003212,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178456,0.003212,-0.004499,0.249960,0,0);}
.m63_c00026{transform:matrix(0.179066,0.001791,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179066,0.001791,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179066,0.001791,-0.002500,0.249988,0,0);}
.m4_c00026{transform:matrix(0.179197,0.003942,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179197,0.003942,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179197,0.003942,-0.005499,0.249940,0,0);}
.m61_c00026{transform:matrix(0.179286,0.001793,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179286,0.001793,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179286,0.001793,-0.002500,0.249988,0,0);}
.m2b_c00026{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);}
.m2e_c00026{transform:matrix(0.180286,0.003245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180286,0.003245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180286,0.003245,-0.004499,0.249960,0,0);}
.mb9_c00026{transform:matrix(0.180476,0.003249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180476,0.003249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180476,0.003249,-0.004499,0.249960,0,0);}
.mc5_c00026{transform:matrix(0.182076,0.003277,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182076,0.003277,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182076,0.003277,-0.004499,0.249960,0,0);}
.m55_c00026{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);}
.m86_c00026{transform:matrix(0.182550,0.003286,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182550,0.003286,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182550,0.003286,-0.004499,0.249960,0,0);}
.m5a_c00026{transform:matrix(0.183691,0.001837,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183691,0.001837,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183691,0.001837,-0.002500,0.249988,0,0);}
.m44_c00026{transform:matrix(0.183910,0.003310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183910,0.003310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183910,0.003310,-0.004499,0.249960,0,0);}
.mbc_c00026{transform:matrix(0.183920,0.003311,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183920,0.003311,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183920,0.003311,-0.004499,0.249960,0,0);}
.m68_c00026{transform:matrix(0.183976,0.001840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183976,0.001840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183976,0.001840,-0.002500,0.249988,0,0);}
.m7e_c00026{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);}
.m5e_c00026{transform:matrix(0.184186,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184186,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184186,0.001842,-0.002500,0.249988,0,0);}
.maf_c00026{transform:matrix(0.184200,0.003316,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184200,0.003316,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184200,0.003316,-0.004499,0.249960,0,0);}
.mb0_c00026{transform:matrix(0.184515,0.003321,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184515,0.003321,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184515,0.003321,-0.004499,0.249960,0,0);}
.m5_c00026{transform:matrix(0.185620,0.004084,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185620,0.004084,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185620,0.004084,-0.005499,0.249940,0,0);}
.ma7_c00026{transform:matrix(0.185665,0.003342,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185665,0.003342,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185665,0.003342,-0.004499,0.249960,0,0);}
.m6c_c00026{transform:matrix(0.185851,0.001859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185851,0.001859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185851,0.001859,-0.002500,0.249988,0,0);}
.m85_c00026{transform:matrix(0.186135,0.003350,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186135,0.003350,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186135,0.003350,-0.004499,0.249960,0,0);}
.m43_c00026{transform:matrix(0.186825,0.003363,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186825,0.003363,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186825,0.003363,-0.004499,0.249960,0,0);}
.m1b_c00026{transform:matrix(0.186900,0.003364,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186900,0.003364,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186900,0.003364,-0.004499,0.249960,0,0);}
.m4b_c00026{transform:matrix(0.189684,0.003414,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189684,0.003414,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189684,0.003414,-0.004499,0.249960,0,0);}
.m2c_c00026{transform:matrix(0.190139,0.003423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190139,0.003423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190139,0.003423,-0.004499,0.249960,0,0);}
.m14_c00026{transform:matrix(0.191939,0.003455,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191939,0.003455,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191939,0.003455,-0.004499,0.249960,0,0);}
.mc3_c00026{transform:matrix(0.192044,0.003457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192044,0.003457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192044,0.003457,-0.004499,0.249960,0,0);}
.m30_c00026{transform:matrix(0.192419,0.003464,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192419,0.003464,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192419,0.003464,-0.004499,0.249960,0,0);}
.maa_c00026{transform:matrix(0.192454,0.003464,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192454,0.003464,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192454,0.003464,-0.004499,0.249960,0,0);}
.m64_c00026{transform:matrix(0.192475,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192475,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192475,0.001925,-0.002500,0.249988,0,0);}
.m17_c00026{transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);}
.m1c_c00026{transform:matrix(0.192584,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192584,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192584,0.003467,-0.004499,0.249960,0,0);}
.mb7_c00026{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);}
.m2f_c00026{transform:matrix(0.192959,0.003473,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192959,0.003473,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192959,0.003473,-0.004499,0.249960,0,0);}
.m97_c00026{transform:matrix(0.193944,0.003491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193944,0.003491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193944,0.003491,-0.004499,0.249960,0,0);}
.m9c_c00026{transform:matrix(0.194394,0.003499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194394,0.003499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194394,0.003499,-0.004499,0.249960,0,0);}
.ma3_c00026{transform:matrix(0.195958,0.003527,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195958,0.003527,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195958,0.003527,-0.004499,0.249960,0,0);}
.m8a_c00026{transform:matrix(0.196163,0.003531,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196163,0.003531,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196163,0.003531,-0.004499,0.249960,0,0);}
.m4a_c00026{transform:matrix(0.196288,0.003533,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196288,0.003533,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196288,0.003533,-0.004499,0.249960,0,0);}
.m4f_c00026{transform:matrix(0.196623,0.003539,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196623,0.003539,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196623,0.003539,-0.004499,0.249960,0,0);}
.ma1_c00026{transform:matrix(0.196628,0.003539,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196628,0.003539,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196628,0.003539,-0.004499,0.249960,0,0);}
.m80_c00026{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);}
.m8e_c00026{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);}
.m90_c00026{transform:matrix(0.197563,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197563,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197563,0.003556,-0.004499,0.249960,0,0);}
.m49_c00026{transform:matrix(0.197608,0.003557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197608,0.003557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197608,0.003557,-0.004499,0.249960,0,0);}
.m4e_c00026{transform:matrix(0.198433,0.003572,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198433,0.003572,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198433,0.003572,-0.004499,0.249960,0,0);}
.m7d_c00026{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);}
.m46_c00026{transform:matrix(0.199178,0.003585,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199178,0.003585,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199178,0.003585,-0.004499,0.249960,0,0);}
.m26_c00026{transform:matrix(0.199248,0.003586,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199248,0.003586,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199248,0.003586,-0.004499,0.249960,0,0);}
.mad_c00026{transform:matrix(0.199633,0.003593,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199633,0.003593,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199633,0.003593,-0.004499,0.249960,0,0);}
.mc_c00026{transform:matrix(0.200353,0.003606,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200353,0.003606,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200353,0.003606,-0.004499,0.249960,0,0);}
.m24_c00026{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);}
.m20_c00026{transform:matrix(0.200543,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200543,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200543,0.003610,-0.004499,0.249960,0,0);}
.m23_c00026{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);}
.m28_c00026{transform:matrix(0.201747,0.003631,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201747,0.003631,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201747,0.003631,-0.004499,0.249960,0,0);}
.ma6_c00026{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);}
.m1d_c00026{transform:matrix(0.203362,0.003661,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203362,0.003661,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203362,0.003661,-0.004499,0.249960,0,0);}
.m3e_c00026{transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);}
.m3f_c00026{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);}
.mf_c00026{transform:matrix(0.203852,0.003669,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203852,0.003669,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203852,0.003669,-0.004499,0.249960,0,0);}
.m2d_c00026{transform:matrix(0.204892,0.003688,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204892,0.003688,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204892,0.003688,-0.004499,0.249960,0,0);}
.ma4_c00026{transform:matrix(0.205037,0.003691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205037,0.003691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205037,0.003691,-0.004499,0.249960,0,0);}
.m42_c00026{transform:matrix(0.205852,0.003705,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205852,0.003705,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205852,0.003705,-0.004499,0.249960,0,0);}
.m3b_c00026{transform:matrix(0.205927,0.003707,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205927,0.003707,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205927,0.003707,-0.004499,0.249960,0,0);}
.ma2_c00026{transform:matrix(0.206517,0.003717,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206517,0.003717,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206517,0.003717,-0.004499,0.249960,0,0);}
.m39_c00026{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);}
.m96_c00026{transform:matrix(0.207081,0.003727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207081,0.003727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207081,0.003727,-0.004499,0.249960,0,0);}
.m11_c00026{transform:matrix(0.207326,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207326,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207326,0.003732,-0.004499,0.249960,0,0);}
.m99_c00026{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);}
.m15_c00026{transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);}
.m9e_c00026{transform:matrix(0.208521,0.003753,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208521,0.003753,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208521,0.003753,-0.004499,0.249960,0,0);}
.m8f_c00026{transform:matrix(0.208606,0.003755,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208606,0.003755,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208606,0.003755,-0.004499,0.249960,0,0);}
.ma8_c00026{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);}
.m3c_c00026{transform:matrix(0.210086,0.003782,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210086,0.003782,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210086,0.003782,-0.004499,0.249960,0,0);}
.m7_c00026{transform:matrix(0.210509,0.004631,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210509,0.004631,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210509,0.004631,-0.005499,0.249940,0,0);}
.mba_c00026{transform:matrix(0.210821,0.003795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210821,0.003795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210821,0.003795,-0.004499,0.249960,0,0);}
.m1f_c00026{transform:matrix(0.211286,0.003803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211286,0.003803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211286,0.003803,-0.004499,0.249960,0,0);}
.m3d_c00026{transform:matrix(0.211311,0.003804,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211311,0.003804,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211311,0.003804,-0.004499,0.249960,0,0);}
.m87_c00026{transform:matrix(0.212011,0.003816,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212011,0.003816,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212011,0.003816,-0.004499,0.249960,0,0);}
.m7f_c00026{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);}
.mbd_c00026{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);}
.mab_c00026{transform:matrix(0.212561,0.003826,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212561,0.003826,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212561,0.003826,-0.004499,0.249960,0,0);}
.m38_c00026{transform:matrix(0.212616,0.003827,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212616,0.003827,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212616,0.003827,-0.004499,0.249960,0,0);}
.mbb_c00026{transform:matrix(0.213175,0.003837,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213175,0.003837,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213175,0.003837,-0.004499,0.249960,0,0);}
.m88_c00026{transform:matrix(0.213190,0.003837,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213190,0.003837,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213190,0.003837,-0.004499,0.249960,0,0);}
.mc2_c00026{transform:matrix(0.213275,0.003839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213275,0.003839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213275,0.003839,-0.004499,0.249960,0,0);}
.mac_c00026{transform:matrix(0.213405,0.003841,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213405,0.003841,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213405,0.003841,-0.004499,0.249960,0,0);}
.m9b_c00026{transform:matrix(0.213700,0.003847,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213700,0.003847,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213700,0.003847,-0.004499,0.249960,0,0);}
.m94_c00026{transform:matrix(0.214310,0.003858,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214310,0.003858,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214310,0.003858,-0.004499,0.249960,0,0);}
.m19_c00026{transform:matrix(0.214405,0.003859,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214405,0.003859,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214405,0.003859,-0.004499,0.249960,0,0);}
.mb_c00026{transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);}
.m13_c00026{transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);}
.m5b_c00026{transform:matrix(0.215189,0.002152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215189,0.002152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215189,0.002152,-0.002500,0.249988,0,0);}
.m3a_c00026{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);}
.m2a_c00026{transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);}
.m22_c00026{transform:matrix(0.216915,0.003904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216915,0.003904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216915,0.003904,-0.004499,0.249960,0,0);}
.m84_c00026{transform:matrix(0.219005,0.003942,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219005,0.003942,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219005,0.003942,-0.004499,0.249960,0,0);}
.mae_c00026{transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);}
.m21_c00026{transform:matrix(0.220004,0.003960,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220004,0.003960,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220004,0.003960,-0.004499,0.249960,0,0);}
.m9a_c00026{transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);}
.m7a_c00026{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);}
.ma5_c00026{transform:matrix(0.222134,0.003998,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222134,0.003998,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222134,0.003998,-0.004499,0.249960,0,0);}
.m8c_c00026{transform:matrix(0.223619,0.004025,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223619,0.004025,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223619,0.004025,-0.004499,0.249960,0,0);}
.m33_c00026{transform:matrix(0.224194,0.004035,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224194,0.004035,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224194,0.004035,-0.004499,0.249960,0,0);}
.mb1_c00026{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);}
.mc0_c00026{transform:matrix(0.227853,0.004101,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227853,0.004101,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227853,0.004101,-0.004499,0.249960,0,0);}
.m40_c00026{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);}
.m41_c00026{transform:matrix(0.229853,0.004137,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229853,0.004137,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229853,0.004137,-0.004499,0.249960,0,0);}
.mb6_c00026{transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);}
.m45_c00026{transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);}
.m91_c00026{transform:matrix(0.232647,0.004188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232647,0.004188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232647,0.004188,-0.004499,0.249960,0,0);}
.mbf_c00026{transform:matrix(0.233202,0.004198,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233202,0.004198,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233202,0.004198,-0.004499,0.249960,0,0);}
.m59_c00026{transform:matrix(0.233363,0.002334,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233363,0.002334,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233363,0.002334,-0.002500,0.249988,0,0);}
.mb3_c00026{transform:matrix(0.233882,0.004210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233882,0.004210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233882,0.004210,-0.004499,0.249960,0,0);}
.m83_c00026{transform:matrix(0.234757,0.004226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234757,0.004226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234757,0.004226,-0.004499,0.249960,0,0);}
.m4d_c00026{transform:matrix(0.235707,0.004243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235707,0.004243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235707,0.004243,-0.004499,0.249960,0,0);}
.mb5_c00026{transform:matrix(0.237696,0.004279,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237696,0.004279,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237696,0.004279,-0.004499,0.249960,0,0);}
.ma9_c00026{transform:matrix(0.239476,0.004311,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239476,0.004311,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239476,0.004311,-0.004499,0.249960,0,0);}
.m7b_c00026{transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);}
.m65_c00026{transform:matrix(0.241708,0.002417,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241708,0.002417,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241708,0.002417,-0.002500,0.249988,0,0);}
.md_c00026{transform:matrix(0.242091,0.004358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242091,0.004358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242091,0.004358,-0.004499,0.249960,0,0);}
.m35_c00026{transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);}
.m37_c00026{transform:matrix(0.243930,0.004391,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243930,0.004391,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243930,0.004391,-0.004499,0.249960,0,0);}
.mb4_c00026{transform:matrix(0.245215,0.004414,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245215,0.004414,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245215,0.004414,-0.004499,0.249960,0,0);}
.m25_c00026{transform:matrix(0.250244,0.004504,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250244,0.004504,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250244,0.004504,-0.004499,0.249960,0,0);}
.m78_c00026{transform:matrix(0.252151,0.008077,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252151,0.008077,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252151,0.008077,-0.008004,0.249872,0,0);}
.m93_c00026{transform:matrix(0.255239,0.004594,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255239,0.004594,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255239,0.004594,-0.004499,0.249960,0,0);}
.m9d_c00026{transform:matrix(0.258178,0.004647,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258178,0.004647,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258178,0.004647,-0.004499,0.249960,0,0);}
.m18_c00026{transform:matrix(0.263432,0.004742,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263432,0.004742,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263432,0.004742,-0.004499,0.249960,0,0);}
.m1a_c00026{transform:matrix(0.267542,0.004816,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267542,0.004816,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267542,0.004816,-0.004499,0.249960,0,0);}
.m12_c00026{transform:matrix(0.284084,0.005114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284084,0.005114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284084,0.005114,-0.004499,0.249960,0,0);}
.m73_c00026{transform:matrix(0.289781,0.009282,-0.008004,0.249872,0,0);-ms-transform:matrix(0.289781,0.009282,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.289781,0.009282,-0.008004,0.249872,0,0);}
.m2_c00026{transform:matrix(0.293794,0.006463,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293794,0.006463,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293794,0.006463,-0.005499,0.249940,0,0);}
.ma_c00026{transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296440,0.000000,0.000000,0.250000,0,0);}
.mbe_c00026{transform:matrix(0.300206,0.005404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.300206,0.005404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.300206,0.005404,-0.004499,0.249960,0,0);}
.m82_c00026{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m92_c00026{transform:matrix(0.333471,0.006002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.333471,0.006002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.333471,0.006002,-0.004499,0.249960,0,0);}
.m81_c00026{transform:matrix(0.350325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350325,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);}
.m50_c00026{transform:matrix(0.362821,0.006531,-0.004499,0.249960,0,0);-ms-transform:matrix(0.362821,0.006531,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.362821,0.006531,-0.004499,0.249960,0,0);}
.m7c_c00026{transform:matrix(0.378790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378790,0.000000,0.000000,0.250000,0,0);}
.m58_c00026{transform:matrix(0.395511,0.005933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.395511,0.005933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.395511,0.005933,-0.003750,0.249972,0,0);}
.m72_c00026{transform:matrix(0.412438,0.013211,-0.008004,0.249872,0,0);-ms-transform:matrix(0.412438,0.013211,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.412438,0.013211,-0.008004,0.249872,0,0);}
.m70_c00026{transform:matrix(0.432713,0.013861,-0.008004,0.249872,0,0);-ms-transform:matrix(0.432713,0.013861,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.432713,0.013861,-0.008004,0.249872,0,0);}
.m6f_c00026{transform:matrix(0.436306,0.013976,-0.008004,0.249872,0,0);-ms-transform:matrix(0.436306,0.013976,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.436306,0.013976,-0.008004,0.249872,0,0);}
.m47_c00026{transform:matrix(0.480037,0.008641,-0.004499,0.249960,0,0);-ms-transform:matrix(0.480037,0.008641,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.480037,0.008641,-0.004499,0.249960,0,0);}
.m1_c00026{transform:matrix(0.585175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585175,0.000000,0.000000,0.250000,0,0);}
.m79_c00026{transform:matrix(0.628315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628315,0.000000,0.000000,0.250000,0,0);}
.m6e_c00026{transform:matrix(13.931885,0.195046,-0.003500,0.249976,0,0);-ms-transform:matrix(13.931885,0.195046,-0.003500,0.249976,0,0);-webkit-transform:matrix(13.931885,0.195046,-0.003500,0.249976,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;}
.fsc_c00026{font-size:22.052161px;}
.fsd_c00026{font-size:43.029008px;}
.fs13_c00026{font-size:45.157314px;}
.fs11_c00026{font-size:49.350000px;}
.fs7_c00026{font-size:49.357994px;}
.fs10_c00026{font-size:50.400000px;}
.fs5_c00026{font-size:50.408164px;}
.fsf_c00026{font-size:51.450000px;}
.fs4_c00026{font-size:51.458334px;}
.fs6_c00026{font-size:52.508504px;}
.fs12_c00026{font-size:54.608844px;}
.fs14_c00026{font-size:55.659015px;}
.fs8_c00026{font-size:60.909865px;}
.fsa_c00026{font-size:73.503675px;}
.fs2_c00026{font-size:74.568039px;}
.fsb_c00026{font-size:76.653832px;}
.fs1_c00026{font-size:89.250000px;}
.fse_c00026{font-size:90.300000px;}
.fs3_c00026{font-size:113.400000px;}
.fs9_c00026{font-size:138.615592px;}
.fs0_c00026{font-size:153.300000px;}
.y0_c00026{bottom:0.000000px;}
.y7a_c00026{bottom:170.546580px;}
.y79_c00026{bottom:171.052548px;}
.y78_c00026{bottom:172.328964px;}
.y77_c00026{bottom:173.213940px;}
.y76_c00026{bottom:174.768084px;}
.y75_c00026{bottom:176.738676px;}
.y74_c00026{bottom:177.386196px;}
.y73_c00026{bottom:178.491636px;}
.y72_c00026{bottom:180.495012px;}
.y71_c00026{bottom:182.561460px;}
.y70_c00026{bottom:184.156500px;}
.y58_c00026{bottom:225.899817px;}
.y57_c00026{bottom:226.308132px;}
.y56_c00026{bottom:227.416908px;}
.y55_c00026{bottom:228.249756px;}
.y54_c00026{bottom:228.592161px;}
.y53_c00026{bottom:229.342071px;}
.y52_c00026{bottom:229.913871px;}
.y51_c00026{bottom:231.905079px;}
.yc0_c00026{bottom:241.262877px;}
.yc1_c00026{bottom:241.263318px;}
.ybf_c00026{bottom:241.263402px;}
.yc2_c00026{bottom:241.263852px;}
.ybe_c00026{bottom:241.264041px;}
.y50_c00026{bottom:243.752109px;}
.y4f_c00026{bottom:244.219659px;}
.y4e_c00026{bottom:245.034351px;}
.y4d_c00026{bottom:245.437443px;}
.y4c_c00026{bottom:246.215712px;}
.y4b_c00026{bottom:247.628532px;}
.y4a_c00026{bottom:248.460024px;}
.y49_c00026{bottom:249.126960px;}
.y48_c00026{bottom:250.268766px;}
.ybd_c00026{bottom:256.791543px;}
.ybc_c00026{bottom:257.186202px;}
.ybb_c00026{bottom:257.477937px;}
.yba_c00026{bottom:258.206829px;}
.yb9_c00026{bottom:258.449100px;}
.yb8_c00026{bottom:259.174428px;}
.yb7_c00026{bottom:259.917792px;}
.yb6_c00026{bottom:260.228076px;}
.yb5_c00026{bottom:260.549997px;}
.y47_c00026{bottom:261.984309px;}
.y46_c00026{bottom:262.853841px;}
.y45_c00026{bottom:263.962437px;}
.y44_c00026{bottom:264.790971px;}
.y43_c00026{bottom:265.668498px;}
.y42_c00026{bottom:267.008799px;}
.yb4_c00026{bottom:274.798200px;}
.yb3_c00026{bottom:275.293407px;}
.yb2_c00026{bottom:275.852037px;}
.yb1_c00026{bottom:276.533544px;}
.yb0_c00026{bottom:277.884327px;}
.yaf_c00026{bottom:278.103000px;}
.y41_c00026{bottom:279.822276px;}
.y40_c00026{bottom:281.483529px;}
.y3f_c00026{bottom:282.177495px;}
.y3e_c00026{bottom:283.545468px;}
.y3d_c00026{bottom:284.560935px;}
.yae_c00026{bottom:293.245350px;}
.yad_c00026{bottom:293.767971px;}
.yac_c00026{bottom:294.338259px;}
.yab_c00026{bottom:295.155474px;}
.yaa_c00026{bottom:295.641648px;}
.ya9_c00026{bottom:296.173584px;}
.y3c_c00026{bottom:297.304749px;}
.y3b_c00026{bottom:297.922986px;}
.y3a_c00026{bottom:299.015442px;}
.y39_c00026{bottom:299.693103px;}
.y38_c00026{bottom:300.193491px;}
.y37_c00026{bottom:300.887112px;}
.y36_c00026{bottom:301.845084px;}
.ya8_c00026{bottom:310.418436px;}
.ya7_c00026{bottom:310.741251px;}
.ya6_c00026{bottom:311.398911px;}
.ya5_c00026{bottom:312.604443px;}
.ya4_c00026{bottom:312.912489px;}
.ya3_c00026{bottom:313.251195px;}
.ya2_c00026{bottom:313.898136px;}
.ya1_c00026{bottom:314.267664px;}
.y35_c00026{bottom:314.560791px;}
.y34_c00026{bottom:314.851269px;}
.y33_c00026{bottom:315.132120px;}
.y32_c00026{bottom:315.839730px;}
.y31_c00026{bottom:316.730541px;}
.y30_c00026{bottom:317.490675px;}
.y2f_c00026{bottom:318.464931px;}
.y2e_c00026{bottom:319.396614px;}
.ya0_c00026{bottom:328.375251px;}
.y9f_c00026{bottom:328.824720px;}
.y9e_c00026{bottom:329.877240px;}
.y9d_c00026{bottom:330.235428px;}
.y9c_c00026{bottom:330.487863px;}
.y9b_c00026{bottom:331.529664px;}
.y9a_c00026{bottom:331.819290px;}
.y2d_c00026{bottom:332.908650px;}
.y2c_c00026{bottom:333.228186px;}
.y2b_c00026{bottom:333.459828px;}
.y2a_c00026{bottom:334.766610px;}
.y29_c00026{bottom:335.376696px;}
.y28_c00026{bottom:335.776377px;}
.y27_c00026{bottom:336.550491px;}
.y26_c00026{bottom:336.950955px;}
.y99_c00026{bottom:346.685280px;}
.y98_c00026{bottom:347.710929px;}
.y97_c00026{bottom:348.521793px;}
.y96_c00026{bottom:349.076697px;}
.y95_c00026{bottom:349.377963px;}
.y94_c00026{bottom:349.911699px;}
.y25_c00026{bottom:350.932821px;}
.y24_c00026{bottom:351.789120px;}
.y23_c00026{bottom:352.578906px;}
.y22_c00026{bottom:352.983345px;}
.y21_c00026{bottom:354.355140px;}
.y20_c00026{bottom:355.045305px;}
.y93_c00026{bottom:364.292640px;}
.y92_c00026{bottom:364.819797px;}
.y91_c00026{bottom:365.526534px;}
.y90_c00026{bottom:365.884803px;}
.y8f_c00026{bottom:366.092475px;}
.y8e_c00026{bottom:366.895773px;}
.y8d_c00026{bottom:367.735761px;}
.y1f_c00026{bottom:368.751495px;}
.y1e_c00026{bottom:369.150690px;}
.y1d_c00026{bottom:369.809583px;}
.y1c_c00026{bottom:370.437504px;}
.y1b_c00026{bottom:370.832958px;}
.y1a_c00026{bottom:371.284551px;}
.y19_c00026{bottom:372.599232px;}
.y8c_c00026{bottom:382.330902px;}
.y8b_c00026{bottom:382.611240px;}
.y8a_c00026{bottom:383.120700px;}
.y89_c00026{bottom:383.437176px;}
.y88_c00026{bottom:384.333483px;}
.y87_c00026{bottom:384.847965px;}
.y86_c00026{bottom:385.559319px;}
.y18_c00026{bottom:386.781936px;}
.y17_c00026{bottom:387.292236px;}
.y16_c00026{bottom:387.723831px;}
.y15_c00026{bottom:388.434066px;}
.y14_c00026{bottom:388.935078px;}
.y13_c00026{bottom:389.226975px;}
.y12_c00026{bottom:390.150213px;}
.y85_c00026{bottom:399.562014px;}
.y84_c00026{bottom:400.412730px;}
.y83_c00026{bottom:401.059704px;}
.y82_c00026{bottom:402.100014px;}
.y81_c00026{bottom:402.581073px;}
.y80_c00026{bottom:402.809709px;}
.y7f_c00026{bottom:403.383000px;}
.y11_c00026{bottom:403.935879px;}
.y10_c00026{bottom:404.460840px;}
.yf_c00026{bottom:404.869188px;}
.ye_c00026{bottom:406.021008px;}
.yd_c00026{bottom:406.565409px;}
.yc_c00026{bottom:407.703000px;}
.y6f_c00026{bottom:426.061500px;}
.y7e_c00026{bottom:649.474500px;}
.y7d_c00026{bottom:666.187500px;}
.y7c_c00026{bottom:684.685500px;}
.yb_c00026{bottom:724.521000px;}
.ya_c00026{bottom:840.578493px;}
.y9_c00026{bottom:841.836354px;}
.y8_c00026{bottom:842.341254px;}
.y7_c00026{bottom:842.647329px;}
.y6_c00026{bottom:842.678184px;}
.y5_c00026{bottom:843.726495px;}
.y4_c00026{bottom:843.990594px;}
.y3_c00026{bottom:844.171500px;}
.y6e_c00026{bottom:862.435545px;}
.y6d_c00026{bottom:863.433450px;}
.y6c_c00026{bottom:863.922030px;}
.y6b_c00026{bottom:864.933660px;}
.y6a_c00026{bottom:865.318245px;}
.y69_c00026{bottom:865.960245px;}
.y68_c00026{bottom:866.698515px;}
.y67_c00026{bottom:867.420900px;}
.y66_c00026{bottom:867.651420px;}
.y65_c00026{bottom:868.059090px;}
.y64_c00026{bottom:886.814925px;}
.y63_c00026{bottom:887.255190px;}
.y62_c00026{bottom:887.565480px;}
.y60_c00026{bottom:887.925555px;}
.y61_c00026{bottom:887.964945px;}
.y5f_c00026{bottom:888.382155px;}
.y5e_c00026{bottom:888.988620px;}
.y5d_c00026{bottom:889.293870px;}
.y5c_c00026{bottom:889.985280px;}
.y5b_c00026{bottom:890.660895px;}
.y5a_c00026{bottom:891.054000px;}
.y7b_c00026{bottom:928.578000px;}
.y2_c00026{bottom:929.919000px;}
.y1_c00026{bottom:972.889500px;}
.y59_c00026{bottom:973.626000px;}
.he_c00026{height:22.052161px;}
.hf_c00026{height:43.029008px;}
.h15_c00026{height:45.157314px;}
.h13_c00026{height:49.350000px;}
.h9_c00026{height:49.357994px;}
.h12_c00026{height:50.400000px;}
.h7_c00026{height:50.408164px;}
.h11_c00026{height:51.450000px;}
.h6_c00026{height:51.458334px;}
.h8_c00026{height:52.508504px;}
.h14_c00026{height:54.608844px;}
.h16_c00026{height:55.659015px;}
.ha_c00026{height:60.909865px;}
.hc_c00026{height:73.503675px;}
.h4_c00026{height:74.568039px;}
.hd_c00026{height:76.653832px;}
.h3_c00026{height:89.250000px;}
.h10_c00026{height:90.300000px;}
.h5_c00026{height:113.400000px;}
.hb_c00026{height:138.615592px;}
.h2_c00026{height:153.300000px;}
.h1_c00026{height:1080.000000px;}
.h0_c00026{height:1080.270000px;}
.w1_c00026{width:768.000000px;}
.w0_c00026{width:768.150000px;}
.x0_c00026{left:0.000000px;}
.x40_c00026{left:61.001721px;}
.x3a_c00026{left:76.965831px;}
.x2d_c00026{left:97.799652px;}
.x12_c00026{left:100.549020px;}
.x35_c00026{left:101.606535px;}
.x31_c00026{left:102.720732px;}
.xc_c00026{left:104.044500px;}
.x44_c00026{left:106.825500px;}
.x4c_c00026{left:109.736865px;}
.x52_c00026{left:111.970500px;}
.x3b_c00026{left:117.725487px;}
.x22_c00026{left:124.021140px;}
.x1_c00026{left:130.950000px;}
.x1e_c00026{left:135.614775px;}
.x3_c00026{left:140.874000px;}
.x41_c00026{left:143.948757px;}
.x28_c00026{left:145.872783px;}
.x4_c00026{left:149.097000px;}
.x13_c00026{left:151.840020px;}
.x36_c00026{left:153.143610px;}
.x5_c00026{left:161.101500px;}
.x23_c00026{left:162.692736px;}
.xd_c00026{left:167.244000px;}
.x18_c00026{left:170.741283px;}
.x2e_c00026{left:172.882752px;}
.xb_c00026{left:174.150000px;}
.x24_c00026{left:182.646507px;}
.x37_c00026{left:186.890250px;}
.x29_c00026{left:190.161597px;}
.x19_c00026{left:193.328973px;}
.x14_c00026{left:195.890520px;}
.xe_c00026{left:197.488500px;}
.x42_c00026{left:199.037817px;}
.x32_c00026{left:202.040013px;}
.x6_c00026{left:208.752000px;}
.x7_c00026{left:210.154500px;}
.x1a_c00026{left:213.131271px;}
.x1f_c00026{left:216.371970px;}
.x38_c00026{left:218.748660px;}
.x3c_c00026{left:221.692776px;}
.x8_c00026{left:224.067000px;}
.x2f_c00026{left:226.409391px;}
.x33_c00026{left:230.923881px;}
.x15_c00026{left:235.348020px;}
.x2_c00026{left:242.730000px;}
.x1b_c00026{left:244.514637px;}
.x9_c00026{left:247.017000px;}
.x3d_c00026{left:249.508281px;}
.x20_c00026{left:252.246378px;}
.x16_c00026{left:259.325520px;}
.xf_c00026{left:261.478500px;}
.x3e_c00026{left:263.899689px;}
.x2a_c00026{left:265.208697px;}
.x30_c00026{left:276.097827px;}
.x1c_c00026{left:277.451949px;}
.x25_c00026{left:278.469051px;}
.x45_c00026{left:282.838500px;}
.x10_c00026{left:284.164500px;}
.x17_c00026{left:287.675520px;}
.x26_c00026{left:290.087646px;}
.x21_c00026{left:291.149070px;}
.x3f_c00026{left:292.988451px;}
.x39_c00026{left:294.883725px;}
.x1d_c00026{left:297.378720px;}
.x34_c00026{left:300.124902px;}
.xa_c00026{left:304.192500px;}
.x27_c00026{left:306.089079px;}
.x2b_c00026{left:310.119957px;}
.x43_c00026{left:311.183694px;}
.x11_c00026{left:313.329000px;}
.x53_c00026{left:321.821928px;}
.x2c_c00026{left:323.340012px;}
.x4d_c00026{left:338.216805px;}
.x54_c00026{left:342.036693px;}
.x7e_c00026{left:349.262526px;}
.x63_c00026{left:350.280000px;}
.x68_c00026{left:351.914307px;}
.x5a_c00026{left:354.780000px;}
.x83_c00026{left:363.790500px;}
.x76_c00026{left:367.844748px;}
.x4e_c00026{left:370.224660px;}
.x46_c00026{left:374.010000px;}
.x84_c00026{left:375.939000px;}
.x8c_c00026{left:377.192943px;}
.x72_c00026{left:380.264436px;}
.x64_c00026{left:382.129500px;}
.x88_c00026{left:385.676361px;}
.x69_c00026{left:393.768063px;}
.x65_c00026{left:394.831500px;}
.x73_c00026{left:397.001436px;}
.x6d_c00026{left:400.791303px;}
.x55_c00026{left:403.556112px;}
.x7f_c00026{left:409.158606px;}
.x48_c00026{left:415.731000px;}
.x47_c00026{left:419.670000px;}
.x5b_c00026{left:422.280000px;}
.x6a_c00026{left:424.017603px;}
.x74_c00026{left:427.829436px;}
.x77_c00026{left:429.140355px;}
.x5f_c00026{left:432.810000px;}
.x7b_c00026{left:437.761350px;}
.x78_c00026{left:443.998125px;}
.x8d_c00026{left:446.053245px;}
.x60_c00026{left:447.390000px;}
.x85_c00026{left:450.982500px;}
.x56_c00026{left:452.074545px;}
.x4f_c00026{left:454.585980px;}
.x49_c00026{left:455.677500px;}
.x80_c00026{left:457.226970px;}
.x6e_c00026{left:460.207356px;}
.x5c_c00026{left:461.430000px;}
.x79_c00026{left:465.064503px;}
.x89_c00026{left:467.270361px;}
.x75_c00026{left:472.877436px;}
.x6b_c00026{left:476.730048px;}
.x57_c00026{left:479.702390px;}
.x6f_c00026{left:481.278234px;}
.x4a_c00026{left:486.706500px;}
.x86_c00026{left:488.844000px;}
.x81_c00026{left:490.743564px;}
.x50_c00026{left:495.343170px;}
.x7c_c00026{left:501.234216px;}
.x61_c00026{left:504.630000px;}
.x66_c00026{left:515.295000px;}
.x58_c00026{left:519.550501px;}
.x82_c00026{left:521.528631px;}
.x70_c00026{left:522.875490px;}
.x62_c00026{left:524.610000px;}
.x7a_c00026{left:526.955610px;}
.x4b_c00026{left:530.733000px;}
.x59_c00026{left:535.346190px;}
.x8a_c00026{left:537.431361px;}
.x5d_c00026{left:538.650000px;}
.x6c_c00026{left:541.774209px;}
.x87_c00026{left:547.390500px;}
.x7d_c00026{left:552.870798px;}
.x71_c00026{left:553.912557px;}
.x5e_c00026{left:557.820000px;}
.x8b_c00026{left:559.356861px;}
.x67_c00026{left:562.557000px;}
.x51_c00026{left:578.482005px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.fsc_c00026{font-size:19.601921pt;}
.fsd_c00026{font-size:38.248007pt;}
.fs13_c00026{font-size:40.139834pt;}
.fs11_c00026{font-size:43.866667pt;}
.fs7_c00026{font-size:43.873772pt;}
.fs10_c00026{font-size:44.800000pt;}
.fs5_c00026{font-size:44.807257pt;}
.fsf_c00026{font-size:45.733333pt;}
.fs4_c00026{font-size:45.740742pt;}
.fs6_c00026{font-size:46.674226pt;}
.fs12_c00026{font-size:48.541195pt;}
.fs14_c00026{font-size:49.474680pt;}
.fs8_c00026{font-size:54.142102pt;}
.fsa_c00026{font-size:65.336600pt;}
.fs2_c00026{font-size:66.282701pt;}
.fsb_c00026{font-size:68.136740pt;}
.fs1_c00026{font-size:79.333333pt;}
.fse_c00026{font-size:80.266667pt;}
.fs3_c00026{font-size:100.800000pt;}
.fs9_c00026{font-size:123.213859pt;}
.fs0_c00026{font-size:136.266667pt;}
.y0_c00026{bottom:0.000000pt;}
.y7a_c00026{bottom:151.596960pt;}
.y79_c00026{bottom:152.046709pt;}
.y78_c00026{bottom:153.181301pt;}
.y77_c00026{bottom:153.967947pt;}
.y76_c00026{bottom:155.349408pt;}
.y75_c00026{bottom:157.101045pt;}
.y74_c00026{bottom:157.676619pt;}
.y73_c00026{bottom:158.659232pt;}
.y72_c00026{bottom:160.440011pt;}
.y71_c00026{bottom:162.276853pt;}
.y70_c00026{bottom:163.694667pt;}
.y58_c00026{bottom:200.799837pt;}
.y57_c00026{bottom:201.162784pt;}
.y56_c00026{bottom:202.148363pt;}
.y55_c00026{bottom:202.888672pt;}
.y54_c00026{bottom:203.193032pt;}
.y53_c00026{bottom:203.859619pt;}
.y52_c00026{bottom:204.367885pt;}
.y51_c00026{bottom:206.137848pt;}
.yc0_c00026{bottom:214.455891pt;}
.yc1_c00026{bottom:214.456283pt;}
.ybf_c00026{bottom:214.456357pt;}
.yc2_c00026{bottom:214.456757pt;}
.ybe_c00026{bottom:214.456925pt;}
.y50_c00026{bottom:216.668541pt;}
.y4f_c00026{bottom:217.084141pt;}
.y4e_c00026{bottom:217.808312pt;}
.y4d_c00026{bottom:218.166616pt;}
.y4c_c00026{bottom:218.858411pt;}
.y4b_c00026{bottom:220.114251pt;}
.y4a_c00026{bottom:220.853355pt;}
.y49_c00026{bottom:221.446187pt;}
.y48_c00026{bottom:222.461125pt;}
.ybd_c00026{bottom:228.259149pt;}
.ybc_c00026{bottom:228.609957pt;}
.ybb_c00026{bottom:228.869277pt;}
.yba_c00026{bottom:229.517181pt;}
.yb9_c00026{bottom:229.732533pt;}
.yb8_c00026{bottom:230.377269pt;}
.yb7_c00026{bottom:231.038037pt;}
.yb6_c00026{bottom:231.313845pt;}
.yb5_c00026{bottom:231.599997pt;}
.y47_c00026{bottom:232.874941pt;}
.y46_c00026{bottom:233.647859pt;}
.y45_c00026{bottom:234.633277pt;}
.y44_c00026{bottom:235.369752pt;}
.y43_c00026{bottom:236.149776pt;}
.y42_c00026{bottom:237.341155pt;}
.yb4_c00026{bottom:244.265067pt;}
.yb3_c00026{bottom:244.705251pt;}
.yb2_c00026{bottom:245.201811pt;}
.yb1_c00026{bottom:245.807595pt;}
.yb0_c00026{bottom:247.008291pt;}
.yaf_c00026{bottom:247.202667pt;}
.y41_c00026{bottom:248.730912pt;}
.y40_c00026{bottom:250.207581pt;}
.y3f_c00026{bottom:250.824440pt;}
.y3e_c00026{bottom:252.040416pt;}
.y3d_c00026{bottom:252.943053pt;}
.yae_c00026{bottom:260.662533pt;}
.yad_c00026{bottom:261.127085pt;}
.yac_c00026{bottom:261.634008pt;}
.yab_c00026{bottom:262.360421pt;}
.yaa_c00026{bottom:262.792576pt;}
.ya9_c00026{bottom:263.265408pt;}
.y3c_c00026{bottom:264.270888pt;}
.y3b_c00026{bottom:264.820432pt;}
.y3a_c00026{bottom:265.791504pt;}
.y39_c00026{bottom:266.393869pt;}
.y38_c00026{bottom:266.838659pt;}
.y37_c00026{bottom:267.455211pt;}
.y36_c00026{bottom:268.306741pt;}
.ya8_c00026{bottom:275.927499pt;}
.ya7_c00026{bottom:276.214445pt;}
.ya6_c00026{bottom:276.799032pt;}
.ya5_c00026{bottom:277.870616pt;}
.ya4_c00026{bottom:278.144435pt;}
.ya3_c00026{bottom:278.445507pt;}
.ya2_c00026{bottom:279.020565pt;}
.ya1_c00026{bottom:279.349035pt;}
.y35_c00026{bottom:279.609592pt;}
.y34_c00026{bottom:279.867795pt;}
.y33_c00026{bottom:280.117440pt;}
.y32_c00026{bottom:280.746427pt;}
.y31_c00026{bottom:281.538259pt;}
.y30_c00026{bottom:282.213933pt;}
.y2f_c00026{bottom:283.079939pt;}
.y2e_c00026{bottom:283.908101pt;}
.ya0_c00026{bottom:291.889112pt;}
.y9f_c00026{bottom:292.288640pt;}
.y9e_c00026{bottom:293.224213pt;}
.y9d_c00026{bottom:293.542603pt;}
.y9c_c00026{bottom:293.766989pt;}
.y9b_c00026{bottom:294.693035pt;}
.y9a_c00026{bottom:294.950480pt;}
.y2d_c00026{bottom:295.918800pt;}
.y2c_c00026{bottom:296.202832pt;}
.y2b_c00026{bottom:296.408736pt;}
.y2a_c00026{bottom:297.570320pt;}
.y29_c00026{bottom:298.112619pt;}
.y28_c00026{bottom:298.467891pt;}
.y27_c00026{bottom:299.155992pt;}
.y26_c00026{bottom:299.511960pt;}
.y99_c00026{bottom:308.164693pt;}
.y98_c00026{bottom:309.076381pt;}
.y97_c00026{bottom:309.797149pt;}
.y96_c00026{bottom:310.290397pt;}
.y95_c00026{bottom:310.558189pt;}
.y94_c00026{bottom:311.032621pt;}
.y25_c00026{bottom:311.940285pt;}
.y24_c00026{bottom:312.701440pt;}
.y23_c00026{bottom:313.403472pt;}
.y22_c00026{bottom:313.762973pt;}
.y21_c00026{bottom:314.982347pt;}
.y20_c00026{bottom:315.595827pt;}
.y93_c00026{bottom:323.815680pt;}
.y92_c00026{bottom:324.284264pt;}
.y91_c00026{bottom:324.912475pt;}
.y90_c00026{bottom:325.230936pt;}
.y8f_c00026{bottom:325.415533pt;}
.y8e_c00026{bottom:326.129576pt;}
.y8d_c00026{bottom:326.876232pt;}
.y1f_c00026{bottom:327.779107pt;}
.y1e_c00026{bottom:328.133947pt;}
.y1d_c00026{bottom:328.719629pt;}
.y1c_c00026{bottom:329.277781pt;}
.y1b_c00026{bottom:329.629296pt;}
.y1a_c00026{bottom:330.030712pt;}
.y19_c00026{bottom:331.199317pt;}
.y8c_c00026{bottom:339.849691pt;}
.y8b_c00026{bottom:340.098880pt;}
.y8a_c00026{bottom:340.551733pt;}
.y89_c00026{bottom:340.833045pt;}
.y88_c00026{bottom:341.629763pt;}
.y87_c00026{bottom:342.087080pt;}
.y86_c00026{bottom:342.719395pt;}
.y18_c00026{bottom:343.806165pt;}
.y17_c00026{bottom:344.259765pt;}
.y16_c00026{bottom:344.643405pt;}
.y15_c00026{bottom:345.274725pt;}
.y14_c00026{bottom:345.720069pt;}
.y13_c00026{bottom:345.979533pt;}
.y12_c00026{bottom:346.800189pt;}
.y85_c00026{bottom:355.166235pt;}
.y84_c00026{bottom:355.922427pt;}
.y83_c00026{bottom:356.497515pt;}
.y82_c00026{bottom:357.422235pt;}
.y81_c00026{bottom:357.849843pt;}
.y80_c00026{bottom:358.053075pt;}
.y7f_c00026{bottom:358.562667pt;}
.y11_c00026{bottom:359.054115pt;}
.y10_c00026{bottom:359.520747pt;}
.yf_c00026{bottom:359.883723pt;}
.ye_c00026{bottom:360.907563pt;}
.yd_c00026{bottom:361.391475pt;}
.yc_c00026{bottom:362.402667pt;}
.y6f_c00026{bottom:378.721333pt;}
.y7e_c00026{bottom:577.310667pt;}
.y7d_c00026{bottom:592.166667pt;}
.y7c_c00026{bottom:608.609333pt;}
.yb_c00026{bottom:644.018667pt;}
.ya_c00026{bottom:747.180883pt;}
.y9_c00026{bottom:748.298981pt;}
.y8_c00026{bottom:748.747781pt;}
.y7_c00026{bottom:749.019848pt;}
.y6_c00026{bottom:749.047275pt;}
.y5_c00026{bottom:749.979107pt;}
.y4_c00026{bottom:750.213861pt;}
.y3_c00026{bottom:750.374667pt;}
.y6e_c00026{bottom:766.609373pt;}
.y6d_c00026{bottom:767.496400pt;}
.y6c_c00026{bottom:767.930693pt;}
.y6b_c00026{bottom:768.829920pt;}
.y6a_c00026{bottom:769.171773pt;}
.y69_c00026{bottom:769.742440pt;}
.y68_c00026{bottom:770.398680pt;}
.y67_c00026{bottom:771.040800pt;}
.y66_c00026{bottom:771.245707pt;}
.y65_c00026{bottom:771.608080pt;}
.y64_c00026{bottom:788.279933pt;}
.y63_c00026{bottom:788.671280pt;}
.y62_c00026{bottom:788.947093pt;}
.y60_c00026{bottom:789.267160pt;}
.y61_c00026{bottom:789.302173pt;}
.y5f_c00026{bottom:789.673027pt;}
.y5e_c00026{bottom:790.212107pt;}
.y5d_c00026{bottom:790.483440pt;}
.y5c_c00026{bottom:791.098027pt;}
.y5b_c00026{bottom:791.698573pt;}
.y5a_c00026{bottom:792.048000pt;}
.y7b_c00026{bottom:825.402667pt;}
.y2_c00026{bottom:826.594667pt;}
.y1_c00026{bottom:864.790667pt;}
.y59_c00026{bottom:865.445333pt;}
.he_c00026{height:19.601921pt;}
.hf_c00026{height:38.248007pt;}
.h15_c00026{height:40.139834pt;}
.h13_c00026{height:43.866667pt;}
.h9_c00026{height:43.873772pt;}
.h12_c00026{height:44.800000pt;}
.h7_c00026{height:44.807257pt;}
.h11_c00026{height:45.733333pt;}
.h6_c00026{height:45.740742pt;}
.h8_c00026{height:46.674226pt;}
.h14_c00026{height:48.541195pt;}
.h16_c00026{height:49.474680pt;}
.ha_c00026{height:54.142102pt;}
.hc_c00026{height:65.336600pt;}
.h4_c00026{height:66.282701pt;}
.hd_c00026{height:68.136740pt;}
.h3_c00026{height:79.333333pt;}
.h10_c00026{height:80.266667pt;}
.h5_c00026{height:100.800000pt;}
.hb_c00026{height:123.213859pt;}
.h2_c00026{height:136.266667pt;}
.h1_c00026{height:960.000000pt;}
.h0_c00026{height:960.240000pt;}
.w1_c00026{width:682.666667pt;}
.w0_c00026{width:682.800000pt;}
.x0_c00026{left:0.000000pt;}
.x40_c00026{left:54.223752pt;}
.x3a_c00026{left:68.414072pt;}
.x2d_c00026{left:86.933024pt;}
.x12_c00026{left:89.376907pt;}
.x35_c00026{left:90.316920pt;}
.x31_c00026{left:91.307317pt;}
.xc_c00026{left:92.484000pt;}
.x44_c00026{left:94.956000pt;}
.x4c_c00026{left:97.543880pt;}
.x52_c00026{left:99.529333pt;}
.x3b_c00026{left:104.644877pt;}
.x22_c00026{left:110.241013pt;}
.x1_c00026{left:116.400000pt;}
.x1e_c00026{left:120.546467pt;}
.x3_c00026{left:125.221333pt;}
.x41_c00026{left:127.954451pt;}
.x28_c00026{left:129.664696pt;}
.x4_c00026{left:132.530667pt;}
.x13_c00026{left:134.968907pt;}
.x36_c00026{left:136.127653pt;}
.x5_c00026{left:143.201333pt;}
.x23_c00026{left:144.615765pt;}
.xd_c00026{left:148.661333pt;}
.x18_c00026{left:151.770029pt;}
.x2e_c00026{left:153.673557pt;}
.xb_c00026{left:154.800000pt;}
.x24_c00026{left:162.352451pt;}
.x37_c00026{left:166.124667pt;}
.x29_c00026{left:169.032531pt;}
.x19_c00026{left:171.847976pt;}
.x14_c00026{left:174.124907pt;}
.xe_c00026{left:175.545333pt;}
.x42_c00026{left:176.922504pt;}
.x32_c00026{left:179.591123pt;}
.x6_c00026{left:185.557333pt;}
.x7_c00026{left:186.804000pt;}
.x1a_c00026{left:189.450019pt;}
.x1f_c00026{left:192.330640pt;}
.x38_c00026{left:194.443253pt;}
.x3c_c00026{left:197.060245pt;}
.x8_c00026{left:199.170667pt;}
.x2f_c00026{left:201.252792pt;}
.x33_c00026{left:205.265672pt;}
.x15_c00026{left:209.198240pt;}
.x2_c00026{left:215.760000pt;}
.x1b_c00026{left:217.346344pt;}
.x9_c00026{left:219.570667pt;}
.x3d_c00026{left:221.785139pt;}
.x20_c00026{left:224.219003pt;}
.x16_c00026{left:230.511573pt;}
.xf_c00026{left:232.425333pt;}
.x3e_c00026{left:234.577501pt;}
.x2a_c00026{left:235.741064pt;}
.x30_c00026{left:245.420291pt;}
.x1c_c00026{left:246.623955pt;}
.x25_c00026{left:247.528045pt;}
.x45_c00026{left:251.412000pt;}
.x10_c00026{left:252.590667pt;}
.x17_c00026{left:255.711573pt;}
.x26_c00026{left:257.855685pt;}
.x21_c00026{left:258.799173pt;}
.x3f_c00026{left:260.434179pt;}
.x39_c00026{left:262.118867pt;}
.x1d_c00026{left:264.336640pt;}
.x34_c00026{left:266.777691pt;}
.xa_c00026{left:270.393333pt;}
.x27_c00026{left:272.079181pt;}
.x2b_c00026{left:275.662184pt;}
.x43_c00026{left:276.607728pt;}
.x11_c00026{left:278.514667pt;}
.x53_c00026{left:286.063936pt;}
.x2c_c00026{left:287.413344pt;}
.x4d_c00026{left:300.637160pt;}
.x54_c00026{left:304.032616pt;}
.x7e_c00026{left:310.455579pt;}
.x63_c00026{left:311.360000pt;}
.x68_c00026{left:312.812717pt;}
.x5a_c00026{left:315.360000pt;}
.x83_c00026{left:323.369333pt;}
.x76_c00026{left:326.973109pt;}
.x4e_c00026{left:329.088587pt;}
.x46_c00026{left:332.453333pt;}
.x84_c00026{left:334.168000pt;}
.x8c_c00026{left:335.282616pt;}
.x72_c00026{left:338.012832pt;}
.x64_c00026{left:339.670667pt;}
.x88_c00026{left:342.823432pt;}
.x69_c00026{left:350.016056pt;}
.x65_c00026{left:350.961333pt;}
.x73_c00026{left:352.890165pt;}
.x6d_c00026{left:356.258936pt;}
.x55_c00026{left:358.716544pt;}
.x7f_c00026{left:363.696539pt;}
.x48_c00026{left:369.538667pt;}
.x47_c00026{left:373.040000pt;}
.x5b_c00026{left:375.360000pt;}
.x6a_c00026{left:376.904536pt;}
.x74_c00026{left:380.292832pt;}
.x77_c00026{left:381.458093pt;}
.x5f_c00026{left:384.720000pt;}
.x7b_c00026{left:389.121200pt;}
.x78_c00026{left:394.665000pt;}
.x8d_c00026{left:396.491773pt;}
.x60_c00026{left:397.680000pt;}
.x85_c00026{left:400.873333pt;}
.x56_c00026{left:401.844040pt;}
.x4f_c00026{left:404.076427pt;}
.x49_c00026{left:405.046667pt;}
.x80_c00026{left:406.423973pt;}
.x6e_c00026{left:409.073205pt;}
.x5c_c00026{left:410.160000pt;}
.x79_c00026{left:413.390669pt;}
.x89_c00026{left:415.351432pt;}
.x75_c00026{left:420.335499pt;}
.x6b_c00026{left:423.760043pt;}
.x57_c00026{left:426.402124pt;}
.x6f_c00026{left:427.802875pt;}
.x4a_c00026{left:432.628000pt;}
.x86_c00026{left:434.528000pt;}
.x81_c00026{left:436.216501pt;}
.x50_c00026{left:440.305040pt;}
.x7c_c00026{left:445.541525pt;}
.x61_c00026{left:448.560000pt;}
.x66_c00026{left:458.040000pt;}
.x58_c00026{left:461.822668pt;}
.x82_c00026{left:463.581005pt;}
.x70_c00026{left:464.778213pt;}
.x62_c00026{left:466.320000pt;}
.x7a_c00026{left:468.404987pt;}
.x4b_c00026{left:471.762667pt;}
.x59_c00026{left:475.863280pt;}
.x8a_c00026{left:477.716765pt;}
.x5d_c00026{left:478.800000pt;}
.x6c_c00026{left:481.577075pt;}
.x87_c00026{left:486.569333pt;}
.x7d_c00026{left:491.440709pt;}
.x71_c00026{left:492.366717pt;}
.x5e_c00026{left:495.840000pt;}
.x8b_c00026{left:497.206099pt;}
.x67_c00026{left:500.050667pt;}
.x51_c00026{left:514.206227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31cbb8ad81f4c1d1a4b2c7cb.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;}
.m24_c00027{transform:matrix(0.008999,0.000144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.008999,0.000144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.008999,0.000144,-0.003999,0.249968,0,0);}
.m18_c00027{transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.121234,0.001940,-0.003999,0.249968,0,0);-ms-transform:matrix(0.121234,0.001940,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.121234,0.001940,-0.003999,0.249968,0,0);}
.mc_c00027{transform:matrix(0.128695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128695,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.131373,0.002102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.131373,0.002102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.131373,0.002102,-0.003999,0.249968,0,0);}
.m14_c00027{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);}
.mb_c00027{transform:matrix(0.138860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138860,0.000000,0.000000,0.250000,0,0);}
.md_c00027{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);}
.m34_c00027{transform:matrix(0.152141,0.001674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152141,0.001674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152141,0.001674,-0.002750,0.249985,0,0);}
.m31_c00027{transform:matrix(0.154986,0.001705,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154986,0.001705,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154986,0.001705,-0.002750,0.249985,0,0);}
.m26_c00027{transform:matrix(0.160105,0.002562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160105,0.002562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160105,0.002562,-0.003999,0.249968,0,0);}
.m1b_c00027{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);}
.m36_c00027{transform:matrix(0.161885,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161885,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161885,0.001781,-0.002750,0.249985,0,0);}
.m4_c00027{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);}
.m8_c00027{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);}
.m9_c00027{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);}
.m30_c00027{transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);}
.m33_c00027{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);}
.m35_c00027{transform:matrix(0.171210,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171210,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171210,0.001883,-0.002750,0.249985,0,0);}
.m16_c00027{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);}
.m3_c00027{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);}
.m15_c00027{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);}
.m11_c00027{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);}
.m5_c00027{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);}
.m1a_c00027{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);}
.m1f_c00027{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);}
.m21_c00027{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);}
.mf_c00027{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);}
.m2b_c00027{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);}
.m20_c00027{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);}
.m1e_c00027{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);}
.m7_c00027{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);}
.ma_c00027{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);}
.m32_c00027{transform:matrix(0.222102,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222102,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222102,0.002443,-0.002750,0.249985,0,0);}
.m1d_c00027{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);}
.m2f_c00027{transform:matrix(0.223861,0.002462,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223861,0.002462,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223861,0.002462,-0.002750,0.249985,0,0);}
.m19_c00027{transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{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);}
.m6_c00027{transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{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);}
.m13_c00027{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{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);}
.m23_c00027{transform:matrix(0.264811,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264811,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264811,0.004237,-0.003999,0.249968,0,0);}
.m22_c00027{transform:matrix(0.275775,0.004412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275775,0.004412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275775,0.004412,-0.003999,0.249968,0,0);}
.m12_c00027{transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290680,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315885,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337910,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.344530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344530,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.351825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00027{transform:matrix(0.396680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396680,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.408710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408710,0.000000,0.000000,0.250000,0,0);}
.m2d_c00027{transform:matrix(0.415340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00027{transform:matrix(0.705235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705235,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.720122,0.005761,-0.002000,0.249992,0,0);-ms-transform:matrix(0.720122,0.005761,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.720122,0.005761,-0.002000,0.249992,0,0);}
.m37_c00027{transform:matrix(0.994215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994215,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;}
.fs7_c00027{font-size:61.950000px;}
.fs8_c00027{font-size:69.300000px;}
.fs5_c00027{font-size:72.450000px;}
.fs4_c00027{font-size:73.500000px;}
.fs9_c00027{font-size:73.504447px;}
.fs2_c00027{font-size:79.800000px;}
.fs1_c00027{font-size:81.900000px;}
.fsa_c00027{font-size:100.800000px;}
.fs3_c00027{font-size:105.000000px;}
.fs6_c00027{font-size:108.163842px;}
.fs0_c00027{font-size:113.403629px;}
.y0_c00027{bottom:0.000000px;}
.y19_c00027{bottom:161.821500px;}
.y18_c00027{bottom:535.615686px;}
.y17_c00027{bottom:536.973091px;}
.y16_c00027{bottom:537.207210px;}
.y15_c00027{bottom:538.006651px;}
.y14_c00027{bottom:538.173021px;}
.y13_c00027{bottom:538.419514px;}
.y12_c00027{bottom:538.903658px;}
.y11_c00027{bottom:539.191500px;}
.y10_c00027{bottom:600.625500px;}
.yf_c00027{bottom:601.290000px;}
.ye_c00027{bottom:660.064188px;}
.yd_c00027{bottom:660.470148px;}
.yc_c00027{bottom:661.498452px;}
.yb_c00027{bottom:661.651476px;}
.ya_c00027{bottom:663.172092px;}
.y9_c00027{bottom:663.664500px;}
.y8_c00027{bottom:691.276500px;}
.y7_c00027{bottom:723.475500px;}
.y6_c00027{bottom:754.243500px;}
.y5_c00027{bottom:786.355500px;}
.y4_c00027{bottom:816.909000px;}
.y3_c00027{bottom:847.894500px;}
.y2_c00027{bottom:879.066000px;}
.y1_c00027{bottom:928.068000px;}
.h9_c00027{height:61.950000px;}
.ha_c00027{height:69.300000px;}
.h7_c00027{height:72.450000px;}
.h6_c00027{height:73.500000px;}
.hb_c00027{height:73.504447px;}
.h4_c00027{height:79.800000px;}
.h3_c00027{height:81.900000px;}
.hc_c00027{height:100.800000px;}
.h5_c00027{height:105.000000px;}
.h8_c00027{height:108.163842px;}
.h2_c00027{height:113.403629px;}
.h0_c00027{height:1086.450000px;}
.h1_c00027{height:1086.750000px;}
.w1_c00027{width:771.000000px;}
.w0_c00027{width:771.120000px;}
.x0_c00027{left:0.000000px;}
.x30_c00027{left:146.880000px;}
.x25_c00027{left:156.870000px;}
.x1f_c00027{left:164.676000px;}
.xe_c00027{left:193.590000px;}
.x20_c00027{left:195.451500px;}
.x7_c00027{left:197.910000px;}
.x2_c00027{left:200.070000px;}
.x1_c00027{left:214.335000px;}
.x2a_c00027{left:237.736500px;}
.x3_c00027{left:243.000000px;}
.x26_c00027{left:255.150000px;}
.x8_c00027{left:257.310000px;}
.x2b_c00027{left:263.904000px;}
.x1a_c00027{left:271.350000px;}
.x16_c00027{left:274.050000px;}
.x9_c00027{left:275.400000px;}
.x27_c00027{left:283.770000px;}
.x17_c00027{left:285.930000px;}
.x1b_c00027{left:287.010000px;}
.xb_c00027{left:288.090000px;}
.x21_c00027{left:290.490000px;}
.x4_c00027{left:293.490000px;}
.x13_c00027{left:296.460000px;}
.x22_c00027{left:300.054000px;}
.x1c_c00027{left:301.590000px;}
.xa_c00027{left:304.830000px;}
.xf_c00027{left:306.720000px;}
.x2c_c00027{left:307.917000px;}
.x5_c00027{left:324.540000px;}
.xc_c00027{left:327.510000px;}
.x14_c00027{left:331.020000px;}
.x28_c00027{left:336.420000px;}
.x18_c00027{left:343.170000px;}
.x6_c00027{left:344.790000px;}
.xd_c00027{left:349.920000px;}
.x15_c00027{left:355.860000px;}
.x23_c00027{left:364.323000px;}
.x19_c00027{left:366.390000px;}
.x29_c00027{left:368.010000px;}
.x24_c00027{left:389.695500px;}
.x1d_c00027{left:394.200000px;}
.x10_c00027{left:400.410000px;}
.x2d_c00027{left:418.126500px;}
.x1e_c00027{left:419.310000px;}
.x11_c00027{left:433.350000px;}
.x2e_c00027{left:439.410000px;}
.x12_c00027{left:454.950000px;}
.x2f_c00027{left:562.810500px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.fs7_c00027{font-size:55.066667pt;}
.fs8_c00027{font-size:61.600000pt;}
.fs5_c00027{font-size:64.400000pt;}
.fs4_c00027{font-size:65.333333pt;}
.fs9_c00027{font-size:65.337286pt;}
.fs2_c00027{font-size:70.933333pt;}
.fs1_c00027{font-size:72.800000pt;}
.fsa_c00027{font-size:89.600000pt;}
.fs3_c00027{font-size:93.333333pt;}
.fs6_c00027{font-size:96.145638pt;}
.fs0_c00027{font-size:100.803226pt;}
.y0_c00027{bottom:0.000000pt;}
.y19_c00027{bottom:143.841333pt;}
.y18_c00027{bottom:476.102832pt;}
.y17_c00027{bottom:477.309415pt;}
.y16_c00027{bottom:477.517520pt;}
.y15_c00027{bottom:478.228135pt;}
.y14_c00027{bottom:478.376019pt;}
.y13_c00027{bottom:478.595124pt;}
.y12_c00027{bottom:479.025473pt;}
.y11_c00027{bottom:479.281333pt;}
.y10_c00027{bottom:533.889333pt;}
.yf_c00027{bottom:534.480000pt;}
.ye_c00027{bottom:586.723723pt;}
.yd_c00027{bottom:587.084576pt;}
.yc_c00027{bottom:587.998624pt;}
.yb_c00027{bottom:588.134645pt;}
.ya_c00027{bottom:589.486304pt;}
.y9_c00027{bottom:589.924000pt;}
.y8_c00027{bottom:614.468000pt;}
.y7_c00027{bottom:643.089333pt;}
.y6_c00027{bottom:670.438667pt;}
.y5_c00027{bottom:698.982667pt;}
.y4_c00027{bottom:726.141333pt;}
.y3_c00027{bottom:753.684000pt;}
.y2_c00027{bottom:781.392000pt;}
.y1_c00027{bottom:824.949333pt;}
.h9_c00027{height:55.066667pt;}
.ha_c00027{height:61.600000pt;}
.h7_c00027{height:64.400000pt;}
.h6_c00027{height:65.333333pt;}
.hb_c00027{height:65.337286pt;}
.h4_c00027{height:70.933333pt;}
.h3_c00027{height:72.800000pt;}
.hc_c00027{height:89.600000pt;}
.h5_c00027{height:93.333333pt;}
.h8_c00027{height:96.145638pt;}
.h2_c00027{height:100.803226pt;}
.h0_c00027{height:965.733333pt;}
.h1_c00027{height:966.000000pt;}
.w1_c00027{width:685.333333pt;}
.w0_c00027{width:685.440000pt;}
.x0_c00027{left:0.000000pt;}
.x30_c00027{left:130.560000pt;}
.x25_c00027{left:139.440000pt;}
.x1f_c00027{left:146.378667pt;}
.xe_c00027{left:172.080000pt;}
.x20_c00027{left:173.734667pt;}
.x7_c00027{left:175.920000pt;}
.x2_c00027{left:177.840000pt;}
.x1_c00027{left:190.520000pt;}
.x2a_c00027{left:211.321333pt;}
.x3_c00027{left:216.000000pt;}
.x26_c00027{left:226.800000pt;}
.x8_c00027{left:228.720000pt;}
.x2b_c00027{left:234.581333pt;}
.x1a_c00027{left:241.200000pt;}
.x16_c00027{left:243.600000pt;}
.x9_c00027{left:244.800000pt;}
.x27_c00027{left:252.240000pt;}
.x17_c00027{left:254.160000pt;}
.x1b_c00027{left:255.120000pt;}
.xb_c00027{left:256.080000pt;}
.x21_c00027{left:258.213333pt;}
.x4_c00027{left:260.880000pt;}
.x13_c00027{left:263.520000pt;}
.x22_c00027{left:266.714667pt;}
.x1c_c00027{left:268.080000pt;}
.xa_c00027{left:270.960000pt;}
.xf_c00027{left:272.640000pt;}
.x2c_c00027{left:273.704000pt;}
.x5_c00027{left:288.480000pt;}
.xc_c00027{left:291.120000pt;}
.x14_c00027{left:294.240000pt;}
.x28_c00027{left:299.040000pt;}
.x18_c00027{left:305.040000pt;}
.x6_c00027{left:306.480000pt;}
.xd_c00027{left:311.040000pt;}
.x15_c00027{left:316.320000pt;}
.x23_c00027{left:323.842667pt;}
.x19_c00027{left:325.680000pt;}
.x29_c00027{left:327.120000pt;}
.x24_c00027{left:346.396000pt;}
.x1d_c00027{left:350.400000pt;}
.x10_c00027{left:355.920000pt;}
.x2d_c00027{left:371.668000pt;}
.x1e_c00027{left:372.720000pt;}
.x11_c00027{left:385.200000pt;}
.x2e_c00027{left:390.586667pt;}
.x12_c00027{left:404.400000pt;}
.x2f_c00027{left:500.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_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_7e82a00465be6f720353c393.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;}
.m1_c00028{transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{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);}
.m2_c00028{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);}
.m3_c00028{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,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;}
.fs0_c00028{font-size:25.200000px;}
.fs1_c00028{font-size:34.650000px;}
.y0_c00028{bottom:0.000000px;}
.y3_c00028{bottom:51.702000px;}
.y2_c00028{bottom:52.110000px;}
.y1_c00028{bottom:53.460000px;}
.h2_c00028{height:25.200000px;}
.h3_c00028{height:34.650000px;}
.h1_c00028{height:1080.000000px;}
.h0_c00028{height:1080.270000px;}
.w1_c00028{width:768.000000px;}
.w0_c00028{width:768.150000px;}
.x0_c00028{left:0.000000px;}
.x4_c00028{left:177.120000px;}
.x3_c00028{left:194.130000px;}
.x2_c00028{left:200.070000px;}
.x1_c00028{left:206.280000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
.fs0_c00028{font-size:22.400000pt;}
.fs1_c00028{font-size:30.800000pt;}
.y0_c00028{bottom:0.000000pt;}
.y3_c00028{bottom:45.957333pt;}
.y2_c00028{bottom:46.320000pt;}
.y1_c00028{bottom:47.520000pt;}
.h2_c00028{height:22.400000pt;}
.h3_c00028{height:30.800000pt;}
.h1_c00028{height:960.000000pt;}
.h0_c00028{height:960.240000pt;}
.w1_c00028{width:682.666667pt;}
.w0_c00028{width:682.800000pt;}
.x0_c00028{left:0.000000pt;}
.x4_c00028{left:157.440000pt;}
.x3_c00028{left:172.560000pt;}
.x2_c00028{left:177.840000pt;}
.x1_c00028{left:183.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_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_4ab86c84425994a9e06b01c2.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;}
.m20_c00029{transform:matrix(0.000390,0.097624,-0.249998,0.001000,0,0);-ms-transform:matrix(0.000390,0.097624,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.000390,0.097624,-0.249998,0.001000,0,0);}
.m1b_c00029{transform:matrix(0.000527,0.087878,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000527,0.087878,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000527,0.087878,-0.249996,0.001500,0,0);}
.m7_c00029{transform:matrix(0.000899,0.179898,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000899,0.179898,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000899,0.179898,-0.249997,0.001250,0,0);}
.m8_c00029{transform:matrix(0.001005,0.200912,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001005,0.200912,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001005,0.200912,-0.249997,0.001250,0,0);}
.ma_c00029{transform:matrix(0.001046,0.209252,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001046,0.209252,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001046,0.209252,-0.249997,0.001250,0,0);}
.m1c_c00029{transform:matrix(0.001095,0.182582,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001095,0.182582,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001095,0.182582,-0.249996,0.001500,0,0);}
.m1e_c00029{transform:matrix(0.001164,0.194067,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001164,0.194067,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001164,0.194067,-0.249996,0.001500,0,0);}
.md_c00029{transform:matrix(0.001296,0.259137,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001296,0.259137,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001296,0.259137,-0.249997,0.001250,0,0);}
.m25_c00029{transform:matrix(0.001452,0.363102,-0.249998,0.001000,0,0);-ms-transform:matrix(0.001452,0.363102,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.001452,0.363102,-0.249998,0.001000,0,0);}
.m9_c00029{transform:matrix(0.001599,0.319851,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001599,0.319851,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001599,0.319851,-0.249997,0.001250,0,0);}
.m1d_c00029{transform:matrix(0.001600,0.266720,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001600,0.266720,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001600,0.266720,-0.249996,0.001500,0,0);}
.m21_c00029{transform:matrix(0.001807,0.451731,-0.249998,0.001000,0,0);-ms-transform:matrix(0.001807,0.451731,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.001807,0.451731,-0.249998,0.001000,0,0);}
.mc_c00029{transform:matrix(0.001815,0.362930,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001815,0.362930,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001815,0.362930,-0.249997,0.001250,0,0);}
.m24_c00029{transform:matrix(0.001844,0.461106,-0.249998,0.001000,0,0);-ms-transform:matrix(0.001844,0.461106,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.001844,0.461106,-0.249998,0.001000,0,0);}
.m12_c00029{transform:matrix(0.001968,0.163973,-0.249982,0.003000,0,0);-ms-transform:matrix(0.001968,0.163973,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.001968,0.163973,-0.249982,0.003000,0,0);}
.m11_c00029{transform:matrix(0.002075,0.172898,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002075,0.172898,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002075,0.172898,-0.249982,0.003000,0,0);}
.mf_c00029{transform:matrix(0.002175,0.181262,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002175,0.181262,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002175,0.181262,-0.249982,0.003000,0,0);}
.m17_c00029{transform:matrix(0.002337,0.194791,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002337,0.194791,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002337,0.194791,-0.249982,0.003000,0,0);}
.m23_c00029{transform:matrix(0.002412,0.602895,-0.249998,0.001000,0,0);-ms-transform:matrix(0.002412,0.602895,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.002412,0.602895,-0.249998,0.001000,0,0);}
.m13_c00029{transform:matrix(0.002760,0.230028,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002760,0.230028,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002760,0.230028,-0.249982,0.003000,0,0);}
.m22_c00029{transform:matrix(0.002818,0.704404,-0.249998,0.001000,0,0);-ms-transform:matrix(0.002818,0.704404,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.002818,0.704404,-0.249998,0.001000,0,0);}
.me_c00029{transform:matrix(0.002932,0.244307,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002932,0.244307,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002932,0.244307,-0.249982,0.003000,0,0);}
.m18_c00029{transform:matrix(0.003090,0.257521,-0.249982,0.003000,0,0);-ms-transform:matrix(0.003090,0.257521,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.003090,0.257521,-0.249982,0.003000,0,0);}
.mb_c00029{transform:matrix(0.003452,0.690471,-0.249997,0.001250,0,0);-ms-transform:matrix(0.003452,0.690471,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.003452,0.690471,-0.249997,0.001250,0,0);}
.m10_c00029{transform:matrix(0.004185,0.348735,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004185,0.348735,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004185,0.348735,-0.249982,0.003000,0,0);}
.m15_c00029{transform:matrix(0.004310,0.359184,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004310,0.359184,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004310,0.359184,-0.249982,0.003000,0,0);}
.m14_c00029{transform:matrix(0.006088,0.507353,-0.249982,0.003000,0,0);-ms-transform:matrix(0.006088,0.507353,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.006088,0.507353,-0.249982,0.003000,0,0);}
.m1a_c00029{transform:matrix(0.008004,0.667037,-0.249982,0.003000,0,0);-ms-transform:matrix(0.008004,0.667037,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.008004,0.667037,-0.249982,0.003000,0,0);}
.m19_c00029{transform:matrix(0.008058,0.671532,-0.249982,0.003000,0,0);-ms-transform:matrix(0.008058,0.671532,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.008058,0.671532,-0.249982,0.003000,0,0);}
.m16_c00029{transform:matrix(0.008623,0.718608,-0.249982,0.003000,0,0);-ms-transform:matrix(0.008623,0.718608,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.008623,0.718608,-0.249982,0.003000,0,0);}
.m2_c00029{transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{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);}
.m3_c00029{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);}
.m1_c00029{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);}
.m27_c00029{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);}
.m0_c00029{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);}
.m4_c00029{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);}
.m1f_c00029{transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.298465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298465,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.630235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630235,0.000000,0.000000,0.250000,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;}
.fs7_c00029{font-size:16.800000px;}
.fs5_c00029{font-size:18.901361px;}
.fs9_c00029{font-size:22.050000px;}
.fs4_c00029{font-size:23.101663px;}
.fs0_c00029{font-size:25.200000px;}
.fs3_c00029{font-size:25.201814px;}
.fs6_c00029{font-size:26.250472px;}
.fs8_c00029{font-size:29.400235px;}
.fs1_c00029{font-size:31.500394px;}
.fs2_c00029{font-size:32.550407px;}
.y0_c00029{bottom:0.000000px;}
.y8_c00029{bottom:104.233305px;}
.y1a_c00029{bottom:143.370000px;}
.y1_c00029{bottom:271.080000px;}
.y7_c00029{bottom:382.065000px;}
.y12_c00029{bottom:384.501522px;}
.y15_c00029{bottom:392.273766px;}
.y6_c00029{bottom:411.751500px;}
.y14_c00029{bottom:413.042022px;}
.y5_c00029{bottom:419.038500px;}
.y11_c00029{bottom:424.182810px;}
.y13_c00029{bottom:429.310626px;}
.y4_c00029{bottom:441.987000px;}
.y3_c00029{bottom:457.663500px;}
.y2_c00029{bottom:473.827500px;}
.y20_c00029{bottom:516.247500px;}
.y1f_c00029{bottom:528.957000px;}
.y1e_c00029{bottom:554.619000px;}
.y1d_c00029{bottom:596.743500px;}
.y21_c00029{bottom:600.480000px;}
.y22_c00029{bottom:604.530000px;}
.y1c_c00029{bottom:619.665000px;}
.y10_c00029{bottom:621.010500px;}
.y1b_c00029{bottom:628.020000px;}
.ye_c00029{bottom:664.474500px;}
.yf_c00029{bottom:665.301000px;}
.yd_c00029{bottom:674.463000px;}
.yc_c00029{bottom:680.133000px;}
.yb_c00029{bottom:695.821500px;}
.ya_c00029{bottom:702.841500px;}
.y9_c00029{bottom:713.640000px;}
.y19_c00029{bottom:714.960000px;}
.y18_c00029{bottom:724.426500px;}
.y17_c00029{bottom:733.858500px;}
.y16_c00029{bottom:754.627500px;}
.h9_c00029{height:16.800000px;}
.h7_c00029{height:18.901361px;}
.hb_c00029{height:22.050000px;}
.h6_c00029{height:23.101663px;}
.h2_c00029{height:25.200000px;}
.h5_c00029{height:25.201814px;}
.h8_c00029{height:26.250472px;}
.ha_c00029{height:29.400235px;}
.h3_c00029{height:31.500394px;}
.h4_c00029{height:32.550407px;}
.h0_c00029{height:1086.450000px;}
.h1_c00029{height:1086.750000px;}
.w1_c00029{width:771.000000px;}
.w0_c00029{width:771.120000px;}
.x0_c00029{left:0.000000px;}
.xa_c00029{left:108.000000px;}
.x9_c00029{left:147.690000px;}
.x8_c00029{left:163.080000px;}
.x7_c00029{left:503.550000px;}
.x2_c00029{left:634.175670px;}
.x6_c00029{left:659.521632px;}
.x5_c00029{left:661.140390px;}
.x1_c00029{left:764.370000px;}
.x3_c00029{left:765.990000px;}
.x4_c00029{left:767.101554px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs7_c00029{font-size:14.933333pt;}
.fs5_c00029{font-size:16.801210pt;}
.fs9_c00029{font-size:19.600000pt;}
.fs4_c00029{font-size:20.534812pt;}
.fs0_c00029{font-size:22.400000pt;}
.fs3_c00029{font-size:22.401613pt;}
.fs6_c00029{font-size:23.333753pt;}
.fs8_c00029{font-size:26.133542pt;}
.fs1_c00029{font-size:28.000350pt;}
.fs2_c00029{font-size:28.933695pt;}
.y0_c00029{bottom:0.000000pt;}
.y8_c00029{bottom:92.651827pt;}
.y1a_c00029{bottom:127.440000pt;}
.y1_c00029{bottom:240.960000pt;}
.y7_c00029{bottom:339.613333pt;}
.y12_c00029{bottom:341.779131pt;}
.y15_c00029{bottom:348.687792pt;}
.y6_c00029{bottom:366.001333pt;}
.y14_c00029{bottom:367.148464pt;}
.y5_c00029{bottom:372.478667pt;}
.y11_c00029{bottom:377.051387pt;}
.y13_c00029{bottom:381.609445pt;}
.y4_c00029{bottom:392.877333pt;}
.y3_c00029{bottom:406.812000pt;}
.y2_c00029{bottom:421.180000pt;}
.y20_c00029{bottom:458.886667pt;}
.y1f_c00029{bottom:470.184000pt;}
.y1e_c00029{bottom:492.994667pt;}
.y1d_c00029{bottom:530.438667pt;}
.y21_c00029{bottom:533.760000pt;}
.y22_c00029{bottom:537.360000pt;}
.y1c_c00029{bottom:550.813333pt;}
.y10_c00029{bottom:552.009333pt;}
.y1b_c00029{bottom:558.240000pt;}
.ye_c00029{bottom:590.644000pt;}
.yf_c00029{bottom:591.378667pt;}
.yd_c00029{bottom:599.522667pt;}
.yc_c00029{bottom:604.562667pt;}
.yb_c00029{bottom:618.508000pt;}
.ya_c00029{bottom:624.748000pt;}
.y9_c00029{bottom:634.346667pt;}
.y19_c00029{bottom:635.520000pt;}
.y18_c00029{bottom:643.934667pt;}
.y17_c00029{bottom:652.318667pt;}
.y16_c00029{bottom:670.780000pt;}
.h9_c00029{height:14.933333pt;}
.h7_c00029{height:16.801210pt;}
.hb_c00029{height:19.600000pt;}
.h6_c00029{height:20.534812pt;}
.h2_c00029{height:22.400000pt;}
.h5_c00029{height:22.401613pt;}
.h8_c00029{height:23.333753pt;}
.ha_c00029{height:26.133542pt;}
.h3_c00029{height:28.000350pt;}
.h4_c00029{height:28.933695pt;}
.h0_c00029{height:965.733333pt;}
.h1_c00029{height:966.000000pt;}
.w1_c00029{width:685.333333pt;}
.w0_c00029{width:685.440000pt;}
.x0_c00029{left:0.000000pt;}
.xa_c00029{left:96.000000pt;}
.x9_c00029{left:131.280000pt;}
.x8_c00029{left:144.960000pt;}
.x7_c00029{left:447.600000pt;}
.x2_c00029{left:563.711707pt;}
.x6_c00029{left:586.241451pt;}
.x5_c00029{left:587.680347pt;}
.x1_c00029{left:679.440000pt;}
.x3_c00029{left:680.880000pt;}
.x4_c00029{left:681.868048pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m9_c00030{transform:matrix(0.008385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008385,0.000000,0.000000,0.250000,0,0);}
.md4_c00030{transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);}
.m39_c00030{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{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);}
.m64_c00030{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m76_c00030{transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);}
.m51_c00030{transform:matrix(0.031410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031410,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.038362,-0.000767,0.004999,0.249950,0,0);-ms-transform:matrix(0.038362,-0.000767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.038362,-0.000767,0.004999,0.249950,0,0);}
.m16_c00030{transform:matrix(0.040132,-0.000803,0.004999,0.249950,0,0);-ms-transform:matrix(0.040132,-0.000803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.040132,-0.000803,0.004999,0.249950,0,0);}
.mf_c00030{transform:matrix(0.062550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.076145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076145,0.000000,0.000000,0.250000,0,0);}
.m69_c00030{transform:matrix(0.103820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103820,0.000000,0.000000,0.250000,0,0);}
.m5c_c00030{transform:matrix(0.135090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135090,0.000000,0.000000,0.250000,0,0);}
.me4_c00030{transform:matrix(0.144254,-0.006498,0.011250,0.249747,0,0);-ms-transform:matrix(0.144254,-0.006498,0.011250,0.249747,0,0);-webkit-transform:matrix(0.144254,-0.006498,0.011250,0.249747,0,0);}
.md6_c00030{transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);}
.m25_c00030{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);}
.md7_c00030{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);}
.m4f_c00030{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);}
.m9b_c00030{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);}
.m2e_c00030{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);}
.m6e_c00030{transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00030{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);}
.md1_c00030{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);}
.m40_c00030{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);}
.m42_c00030{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);}
.m48_c00030{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);}
.m60_c00030{transform:matrix(0.166190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166190,0.000000,0.000000,0.250000,0,0);}
.m30_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);}
.m58_c00030{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);}
.ma6_c00030{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);}
.m2d_c00030{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);}
.m61_c00030{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);}
.m7a_c00030{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);}
.m2f_c00030{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);}
.m9c_c00030{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);}
.ma9_c00030{transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);}
.m88_c00030{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);}
.m3e_c00030{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);}
.m92_c00030{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);}
.mb9_c00030{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);}
.m3c_c00030{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);}
.m9e_c00030{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);}
.m63_c00030{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);}
.mb1_c00030{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);}
.m59_c00030{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);}
.m95_c00030{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);}
.m98_c00030{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);}
.m23_c00030{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);}
.m75_c00030{transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{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);}
.m6a_c00030{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);}
.m84_c00030{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);}
.m2b_c00030{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);}
.m86_c00030{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);}
.maf_c00030{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);}
.m3a_c00030{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);}
.m9f_c00030{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);}
.m79_c00030{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);}
.m5a_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);}
.m24_c00030{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);}
.m56_c00030{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);}
.ma2_c00030{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);}
.m46_c00030{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);}
.m37_c00030{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);}
.m1b_c00030{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);}
.ma0_c00030{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);}
.ma3_c00030{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);}
.mb3_c00030{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);}
.m35_c00030{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);}
.m3d_c00030{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);}
.m26_c00030{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);}
.m1e_c00030{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);}
.m8a_c00030{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);}
.mad_c00030{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);}
.m68_c00030{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);}
.mb6_c00030{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);}
.m2c_c00030{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);}
.m66_c00030{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);}
.m87_c00030{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);}
.m85_c00030{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);}
.m7f_c00030{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);}
.mc6_c00030{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);}
.m6b_c00030{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);}
.m96_c00030{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);}
.mba_c00030{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);}
.m50_c00030{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);}
.m8e_c00030{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);}
.mab_c00030{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);}
.maa_c00030{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);}
.m81_c00030{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);}
.m34_c00030{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);}
.m49_c00030{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);}
.m4b_c00030{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);}
.me2_c00030{transform:matrix(0.200761,-0.009043,0.011250,0.249747,0,0);-ms-transform:matrix(0.200761,-0.009043,0.011250,0.249747,0,0);-webkit-transform:matrix(0.200761,-0.009043,0.011250,0.249747,0,0);}
.ma7_c00030{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);}
.m22_c00030{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m99_c00030{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);}
.m73_c00030{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);}
.m32_c00030{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);}
.m2a_c00030{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);}
.m72_c00030{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);}
.m62_c00030{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);}
.m9a_c00030{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);}
.mc_c00030{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);}
.m5b_c00030{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);}
.mc7_c00030{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);}
.m7d_c00030{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);}
.m6c_c00030{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);}
.m3f_c00030{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);}
.m8d_c00030{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00030{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);}
.m83_c00030{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);}
.md5_c00030{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{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);}
.m41_c00030{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);}
.m4a_c00030{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);}
.mc3_c00030{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);}
.mbb_c00030{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_c00030{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);}
.m82_c00030{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);}
.mbf_c00030{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);}
.mc1_c00030{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);}
.md9_c00030{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);}
.m38_c00030{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);}
.mc5_c00030{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);}
.mbe_c00030{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);}
.mac_c00030{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);}
.m93_c00030{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);}
.m91_c00030{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);}
.mc0_c00030{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);}
.mb5_c00030{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);}
.m7e_c00030{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);}
.m1c_c00030{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);}
.m33_c00030{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);}
.mc4_c00030{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);}
.m1d_c00030{transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);}
.m7c_c00030{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);}
.me_c00030{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);}
.ma4_c00030{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);}
.m8b_c00030{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);}
.m78_c00030{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);}
.m57_c00030{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);}
.m14_c00030{transform:matrix(0.221376,-0.004428,0.004999,0.249950,0,0);-ms-transform:matrix(0.221376,-0.004428,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221376,-0.004428,0.004999,0.249950,0,0);}
.mc8_c00030{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);}
.mbd_c00030{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);}
.m77_c00030{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);}
.m67_c00030{transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);}
.mb8_c00030{transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);}
.m8c_c00030{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);}
.m80_c00030{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);}
.m36_c00030{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m5e_c00030{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);}
.mb4_c00030{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);}
.ma5_c00030{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);}
.m53_c00030{transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);}
.md2_c00030{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);}
.m6d_c00030{transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);}
.mc2_c00030{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);}
.md8_c00030{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);}
.m97_c00030{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);}
.m18_c00030{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{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);}
.m27_c00030{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);}
.m1a_c00030{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);}
.mb_c00030{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);}
.m4c_c00030{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);}
.mb7_c00030{transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);}
.m89_c00030{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);}
.mcc_c00030{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.m9d_c00030{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);}
.m7b_c00030{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);}
.m1f_c00030{transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);}
.ma8_c00030{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m74_c00030{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);}
.m94_c00030{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.mce_c00030{transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);}
.mb0_c00030{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);}
.m4e_c00030{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m5d_c00030{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m45_c00030{transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);}
.m90_c00030{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);}
.m12_c00030{transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);}
.m65_c00030{transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);}
.m47_c00030{transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);}
.m19_c00030{transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);}
.m71_c00030{transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);}
.mb2_c00030{transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);}
.m54_c00030{transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);}
.m52_c00030{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00030{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.mdf_c00030{transform:matrix(0.284492,-0.012815,0.011250,0.249747,0,0);-ms-transform:matrix(0.284492,-0.012815,0.011250,0.249747,0,0);-webkit-transform:matrix(0.284492,-0.012815,0.011250,0.249747,0,0);}
.m43_c00030{transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301045,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302385,0.000000,0.000000,0.250000,0,0);}
.md0_c00030{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307515,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);}
.mcd_c00030{transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315405,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317760,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.318346,-0.006367,0.004999,0.249950,0,0);-ms-transform:matrix(0.318346,-0.006367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.318346,-0.006367,0.004999,0.249950,0,0);}
.m1_c00030{transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);}
.mc9_c00030{transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327150,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328890,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337410,0.000000,0.000000,0.250000,0,0);}
.mdd_c00030{transform:matrix(0.346479,-0.015607,0.011250,0.249747,0,0);-ms-transform:matrix(0.346479,-0.015607,0.011250,0.249747,0,0);-webkit-transform:matrix(0.346479,-0.015607,0.011250,0.249747,0,0);}
.m13_c00030{transform:matrix(0.352460,-0.007049,0.004999,0.249950,0,0);-ms-transform:matrix(0.352460,-0.007049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.352460,-0.007049,0.004999,0.249950,0,0);}
.m6f_c00030{transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);}
.m70_c00030{transform:matrix(0.364345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364345,0.000000,0.000000,0.250000,0,0);}
.mca_c00030{transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);}
.mae_c00030{transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);}
.ma1_c00030{transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.378460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378460,0.000000,0.000000,0.250000,0,0);}
.mde_c00030{transform:matrix(0.391828,-0.017650,0.011250,0.249747,0,0);-ms-transform:matrix(0.391828,-0.017650,0.011250,0.249747,0,0);-webkit-transform:matrix(0.391828,-0.017650,0.011250,0.249747,0,0);}
.me3_c00030{transform:matrix(0.394370,-0.017764,0.011250,0.249747,0,0);-ms-transform:matrix(0.394370,-0.017764,0.011250,0.249747,0,0);-webkit-transform:matrix(0.394370,-0.017764,0.011250,0.249747,0,0);}
.m8f_c00030{transform:matrix(0.399690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399690,0.000000,0.000000,0.250000,0,0);}
.mdb_c00030{transform:matrix(0.400629,-0.018046,0.011250,0.249747,0,0);-ms-transform:matrix(0.400629,-0.018046,0.011250,0.249747,0,0);-webkit-transform:matrix(0.400629,-0.018046,0.011250,0.249747,0,0);}
.m29_c00030{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.414075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414075,0.000000,0.000000,0.250000,0,0);}
.md3_c00030{transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);}
.mda_c00030{transform:matrix(0.426642,-0.019218,0.011250,0.249747,0,0);-ms-transform:matrix(0.426642,-0.019218,0.011250,0.249747,0,0);-webkit-transform:matrix(0.426642,-0.019218,0.011250,0.249747,0,0);}
.mdc_c00030{transform:matrix(0.427666,-0.019264,0.011250,0.249747,0,0);-ms-transform:matrix(0.427666,-0.019264,0.011250,0.249747,0,0);-webkit-transform:matrix(0.427666,-0.019264,0.011250,0.249747,0,0);}
.m20_c00030{transform:matrix(0.427800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427800,0.000000,0.000000,0.250000,0,0);}
.me1_c00030{transform:matrix(0.689211,-0.031046,0.011250,0.249747,0,0);-ms-transform:matrix(0.689211,-0.031046,0.011250,0.249747,0,0);-webkit-transform:matrix(0.689211,-0.031046,0.011250,0.249747,0,0);}
.me0_c00030{transform:matrix(0.823325,-0.037087,0.011250,0.249747,0,0);-ms-transform:matrix(0.823325,-0.037087,0.011250,0.249747,0,0);-webkit-transform:matrix(0.823325,-0.037087,0.011250,0.249747,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;}
.fs5_c00030{font-size:13.650000px;}
.fs3_c00030{font-size:18.900000px;}
.fs4_c00030{font-size:22.050000px;}
.fs6_c00030{font-size:26.250000px;}
.fs17_c00030{font-size:34.650000px;}
.fs10_c00030{font-size:45.150000px;}
.fs14_c00030{font-size:48.300000px;}
.fs7_c00030{font-size:48.309659px;}
.fs12_c00030{font-size:49.350000px;}
.fs15_c00030{font-size:50.400000px;}
.fs11_c00030{font-size:51.450000px;}
.fs13_c00030{font-size:52.500000px;}
.fsf_c00030{font-size:53.550000px;}
.fs8_c00030{font-size:54.600000px;}
.fs18_c00030{font-size:66.150000px;}
.fsc_c00030{font-size:67.200000px;}
.fse_c00030{font-size:69.300000px;}
.fsa_c00030{font-size:72.450000px;}
.fs9_c00030{font-size:73.500000px;}
.fsb_c00030{font-size:74.550000px;}
.fs16_c00030{font-size:75.600000px;}
.fs19_c00030{font-size:85.051106px;}
.fs1a_c00030{font-size:88.201147px;}
.fsd_c00030{font-size:95.550000px;}
.fs1_c00030{font-size:101.850000px;}
.fs0_c00030{font-size:152.250000px;}
.fs2_c00030{font-size:159.600000px;}
.y0_c00030{bottom:0.000000px;}
.y33_c00030{bottom:157.413537px;}
.y34_c00030{bottom:158.150597px;}
.y35_c00030{bottom:159.536466px;}
.y36_c00030{bottom:160.854485px;}
.y37_c00030{bottom:161.564517px;}
.y38_c00030{bottom:162.163579px;}
.y2e_c00030{bottom:179.307000px;}
.y2f_c00030{bottom:182.587230px;}
.y30_c00030{bottom:183.989407px;}
.y31_c00030{bottom:186.526058px;}
.y2d_c00030{bottom:190.080000px;}
.y32_c00030{bottom:191.257605px;}
.y2c_c00030{bottom:197.370000px;}
.y27_c00030{bottom:199.804500px;}
.y28_c00030{bottom:202.857000px;}
.y29_c00030{bottom:204.099000px;}
.y2a_c00030{bottom:204.445500px;}
.y2b_c00030{bottom:205.896000px;}
.y26_c00030{bottom:226.558500px;}
.y25_c00030{bottom:244.684500px;}
.y24_c00030{bottom:262.260000px;}
.y23_c00030{bottom:279.847500px;}
.y22_c00030{bottom:297.672000px;}
.y21_c00030{bottom:315.493500px;}
.y20_c00030{bottom:333.019500px;}
.y1f_c00030{bottom:350.427000px;}
.y1e_c00030{bottom:391.879500px;}
.y1d_c00030{bottom:414.402000px;}
.y1c_c00030{bottom:460.764000px;}
.y1b_c00030{bottom:484.240500px;}
.y1a_c00030{bottom:506.691000px;}
.y19_c00030{bottom:529.377000px;}
.y18_c00030{bottom:551.773500px;}
.y17_c00030{bottom:575.653500px;}
.y16_c00030{bottom:597.420000px;}
.y15_c00030{bottom:621.270000px;}
.y10_c00030{bottom:641.256000px;}
.y11_c00030{bottom:641.582100px;}
.y12_c00030{bottom:642.169920px;}
.y13_c00030{bottom:644.436600px;}
.y14_c00030{bottom:646.360680px;}
.yf_c00030{bottom:671.224500px;}
.ye_c00030{bottom:675.678000px;}
.yb_c00030{bottom:676.620000px;}
.yd_c00030{bottom:684.720000px;}
.ya_c00030{bottom:689.874000px;}
.yc_c00030{bottom:694.980000px;}
.y2_c00030{bottom:738.993000px;}
.y3_c00030{bottom:739.165500px;}
.y4_c00030{bottom:739.425000px;}
.y5_c00030{bottom:740.533500px;}
.y6_c00030{bottom:740.919000px;}
.y7_c00030{bottom:741.127500px;}
.y8_c00030{bottom:741.486000px;}
.y9_c00030{bottom:742.360500px;}
.y1_c00030{bottom:785.095500px;}
.h7_c00030{height:13.650000px;}
.h5_c00030{height:18.900000px;}
.h6_c00030{height:22.050000px;}
.h8_c00030{height:26.250000px;}
.h19_c00030{height:34.650000px;}
.h12_c00030{height:45.150000px;}
.h16_c00030{height:48.300000px;}
.h9_c00030{height:48.309659px;}
.h14_c00030{height:49.350000px;}
.h17_c00030{height:50.400000px;}
.h13_c00030{height:51.450000px;}
.h15_c00030{height:52.500000px;}
.h11_c00030{height:53.550000px;}
.ha_c00030{height:54.600000px;}
.h1a_c00030{height:66.150000px;}
.he_c00030{height:67.200000px;}
.h10_c00030{height:69.300000px;}
.hc_c00030{height:72.450000px;}
.hb_c00030{height:73.500000px;}
.hd_c00030{height:74.550000px;}
.h18_c00030{height:75.600000px;}
.h1b_c00030{height:85.051106px;}
.h1c_c00030{height:88.201147px;}
.hf_c00030{height:95.550000px;}
.h3_c00030{height:101.850000px;}
.h2_c00030{height:152.250000px;}
.h4_c00030{height:159.600000px;}
.h1_c00030{height:1080.000000px;}
.h0_c00030{height:1080.270000px;}
.w1_c00030{width:768.000000px;}
.w0_c00030{width:768.150000px;}
.x0_c00030{left:0.000000px;}
.x89_c00030{left:57.024000px;}
.x86_c00030{left:60.334500px;}
.x78_c00030{left:112.320000px;}
.x4e_c00030{left:113.670000px;}
.x42_c00030{left:120.960000px;}
.x48_c00030{left:126.630000px;}
.x8a_c00030{left:129.845106px;}
.x4f_c00030{left:133.110000px;}
.x2f_c00030{left:142.020000px;}
.x38_c00030{left:147.420000px;}
.x5a_c00030{left:149.040000px;}
.x25_c00030{left:150.660000px;}
.x1d_c00030{left:152.010000px;}
.x62_c00030{left:153.630000px;}
.x17_c00030{left:155.250000px;}
.x3_c00030{left:156.550500px;}
.x69_c00030{left:161.460000px;}
.x50_c00030{left:163.890000px;}
.x79_c00030{left:171.990000px;}
.x1_c00030{left:176.040000px;}
.x43_c00030{left:177.930000px;}
.x72_c00030{left:180.090000px;}
.xd_c00030{left:182.250000px;}
.x51_c00030{left:183.870000px;}
.xe_c00030{left:188.460000px;}
.x5b_c00030{left:190.890000px;}
.x1e_c00030{left:192.240000px;}
.x26_c00030{left:194.670000px;}
.x12_c00030{left:199.027500px;}
.xa_c00030{left:200.340000px;}
.x39_c00030{left:203.040000px;}
.x4_c00030{left:204.648000px;}
.x52_c00030{left:211.410000px;}
.x13_c00030{left:215.332500px;}
.x8b_c00030{left:217.287076px;}
.x2a_c00030{left:220.860000px;}
.x27_c00030{left:224.100000px;}
.x30_c00030{left:225.990000px;}
.x53_c00030{left:229.500000px;}
.x36_c00030{left:236.250000px;}
.x14_c00030{left:244.723500px;}
.x18_c00030{left:247.590000px;}
.x6a_c00030{left:248.940000px;}
.x54_c00030{left:250.020000px;}
.x7a_c00030{left:255.150000px;}
.x44_c00030{left:257.310000px;}
.x2b_c00030{left:261.900000px;}
.x3a_c00030{left:265.410000px;}
.x31_c00030{left:269.190000px;}
.x80_c00030{left:271.890000px;}
.x7b_c00030{left:280.530000px;}
.x6b_c00030{left:281.880000px;}
.x32_c00030{left:283.500000px;}
.x63_c00030{left:285.660000px;}
.x1f_c00030{left:288.630000px;}
.x37_c00030{left:291.330000px;}
.x49_c00030{left:293.220000px;}
.x19_c00030{left:294.570000px;}
.x24_c00030{left:301.590000px;}
.x5c_c00030{left:307.800000px;}
.x6c_c00030{left:311.310000px;}
.x73_c00030{left:312.660000px;}
.x2c_c00030{left:315.360000px;}
.x7c_c00030{left:321.300000px;}
.x2_c00030{left:322.920000px;}
.x33_c00030{left:324.000000px;}
.x5_c00030{left:327.768000px;}
.x6d_c00030{left:329.400000px;}
.x28_c00030{left:332.100000px;}
.xf_c00030{left:333.180000px;}
.x3b_c00030{left:334.800000px;}
.x45_c00030{left:341.820000px;}
.x10_c00030{left:343.980000px;}
.x64_c00030{left:346.140000px;}
.x7d_c00030{left:347.760000px;}
.x4a_c00030{left:352.620000px;}
.x15_c00030{left:358.057500px;}
.x65_c00030{left:360.180000px;}
.x11_c00030{left:361.260000px;}
.x20_c00030{left:362.340000px;}
.x34_c00030{left:365.040000px;}
.x1a_c00030{left:366.660000px;}
.x6_c00030{left:370.677000px;}
.x3e_c00030{left:373.140000px;}
.xb_c00030{left:375.300000px;}
.x4b_c00030{left:377.460000px;}
.x7e_c00030{left:379.620000px;}
.x21_c00030{left:386.100000px;}
.x46_c00030{left:387.720000px;}
.x4c_c00030{left:390.150000px;}
.x7_c00030{left:393.781500px;}
.x3c_c00030{left:397.440000px;}
.x55_c00030{left:399.330000px;}
.x74_c00030{left:400.680000px;}
.x66_c00030{left:404.190000px;}
.x2d_c00030{left:408.510000px;}
.x1b_c00030{left:412.020000px;}
.x5d_c00030{left:414.990000px;}
.x35_c00030{left:418.770000px;}
.x8c_c00030{left:421.392766px;}
.x3d_c00030{left:428.490000px;}
.x29_c00030{left:430.380000px;}
.x8_c00030{left:433.585500px;}
.x5e_c00030{left:436.320000px;}
.x3f_c00030{left:438.480000px;}
.x6e_c00030{left:441.450000px;}
.x2e_c00030{left:443.880000px;}
.x81_c00030{left:445.230000px;}
.x87_c00030{left:447.007500px;}
.x56_c00030{left:451.710000px;}
.x16_c00030{left:454.261500px;}
.x22_c00030{left:464.130000px;}
.x82_c00030{left:470.070000px;}
.x1c_c00030{left:474.660000px;}
.x75_c00030{left:480.330000px;}
.x76_c00030{left:488.160000px;}
.xc_c00030{left:491.130000px;}
.x83_c00030{left:492.480000px;}
.x40_c00030{left:493.560000px;}
.x6f_c00030{left:496.530000px;}
.x57_c00030{left:499.230000px;}
.x5f_c00030{left:503.010000px;}
.x23_c00030{left:505.440000px;}
.x77_c00030{left:514.620000px;}
.x7f_c00030{left:516.510000px;}
.x58_c00030{left:521.370000px;}
.x70_c00030{left:525.690000px;}
.x84_c00030{left:526.770000px;}
.x41_c00030{left:527.850000px;}
.x9_c00030{left:530.775000px;}
.x47_c00030{left:533.790000px;}
.x60_c00030{left:535.950000px;}
.x59_c00030{left:544.320000px;}
.x85_c00030{left:547.020000px;}
.x67_c00030{left:548.370000px;}
.x61_c00030{left:552.690000px;}
.x71_c00030{left:554.310000px;}
.x4d_c00030{left:558.630000px;}
.x68_c00030{left:564.840000px;}
.x88_c00030{left:567.927000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
.fs5_c00030{font-size:12.133333pt;}
.fs3_c00030{font-size:16.800000pt;}
.fs4_c00030{font-size:19.600000pt;}
.fs6_c00030{font-size:23.333333pt;}
.fs17_c00030{font-size:30.800000pt;}
.fs10_c00030{font-size:40.133333pt;}
.fs14_c00030{font-size:42.933333pt;}
.fs7_c00030{font-size:42.941919pt;}
.fs12_c00030{font-size:43.866667pt;}
.fs15_c00030{font-size:44.800000pt;}
.fs11_c00030{font-size:45.733333pt;}
.fs13_c00030{font-size:46.666667pt;}
.fsf_c00030{font-size:47.600000pt;}
.fs8_c00030{font-size:48.533333pt;}
.fs18_c00030{font-size:58.800000pt;}
.fsc_c00030{font-size:59.733333pt;}
.fse_c00030{font-size:61.600000pt;}
.fsa_c00030{font-size:64.400000pt;}
.fs9_c00030{font-size:65.333333pt;}
.fsb_c00030{font-size:66.266667pt;}
.fs16_c00030{font-size:67.200000pt;}
.fs19_c00030{font-size:75.600983pt;}
.fs1a_c00030{font-size:78.401019pt;}
.fsd_c00030{font-size:84.933333pt;}
.fs1_c00030{font-size:90.533333pt;}
.fs0_c00030{font-size:135.333333pt;}
.fs2_c00030{font-size:141.866667pt;}
.y0_c00030{bottom:0.000000pt;}
.y33_c00030{bottom:139.923144pt;}
.y34_c00030{bottom:140.578308pt;}
.y35_c00030{bottom:141.810192pt;}
.y36_c00030{bottom:142.981764pt;}
.y37_c00030{bottom:143.612904pt;}
.y38_c00030{bottom:144.145404pt;}
.y2e_c00030{bottom:159.384000pt;}
.y2f_c00030{bottom:162.299760pt;}
.y30_c00030{bottom:163.546140pt;}
.y31_c00030{bottom:165.800940pt;}
.y2d_c00030{bottom:168.960000pt;}
.y32_c00030{bottom:170.006760pt;}
.y2c_c00030{bottom:175.440000pt;}
.y27_c00030{bottom:177.604000pt;}
.y28_c00030{bottom:180.317333pt;}
.y29_c00030{bottom:181.421333pt;}
.y2a_c00030{bottom:181.729333pt;}
.y2b_c00030{bottom:183.018667pt;}
.y26_c00030{bottom:201.385333pt;}
.y25_c00030{bottom:217.497333pt;}
.y24_c00030{bottom:233.120000pt;}
.y23_c00030{bottom:248.753333pt;}
.y22_c00030{bottom:264.597333pt;}
.y21_c00030{bottom:280.438667pt;}
.y20_c00030{bottom:296.017333pt;}
.y1f_c00030{bottom:311.490667pt;}
.y1e_c00030{bottom:348.337333pt;}
.y1d_c00030{bottom:368.357333pt;}
.y1c_c00030{bottom:409.568000pt;}
.y1b_c00030{bottom:430.436000pt;}
.y1a_c00030{bottom:450.392000pt;}
.y19_c00030{bottom:470.557333pt;}
.y18_c00030{bottom:490.465333pt;}
.y17_c00030{bottom:511.692000pt;}
.y16_c00030{bottom:531.040000pt;}
.y15_c00030{bottom:552.240000pt;}
.y10_c00030{bottom:570.005333pt;}
.y11_c00030{bottom:570.295200pt;}
.y12_c00030{bottom:570.817707pt;}
.y13_c00030{bottom:572.832533pt;}
.y14_c00030{bottom:574.542827pt;}
.yf_c00030{bottom:596.644000pt;}
.ye_c00030{bottom:600.602667pt;}
.yb_c00030{bottom:601.440000pt;}
.yd_c00030{bottom:608.640000pt;}
.ya_c00030{bottom:613.221333pt;}
.yc_c00030{bottom:617.760000pt;}
.y2_c00030{bottom:656.882667pt;}
.y3_c00030{bottom:657.036000pt;}
.y4_c00030{bottom:657.266667pt;}
.y5_c00030{bottom:658.252000pt;}
.y6_c00030{bottom:658.594667pt;}
.y7_c00030{bottom:658.780000pt;}
.y8_c00030{bottom:659.098667pt;}
.y9_c00030{bottom:659.876000pt;}
.y1_c00030{bottom:697.862667pt;}
.h7_c00030{height:12.133333pt;}
.h5_c00030{height:16.800000pt;}
.h6_c00030{height:19.600000pt;}
.h8_c00030{height:23.333333pt;}
.h19_c00030{height:30.800000pt;}
.h12_c00030{height:40.133333pt;}
.h16_c00030{height:42.933333pt;}
.h9_c00030{height:42.941919pt;}
.h14_c00030{height:43.866667pt;}
.h17_c00030{height:44.800000pt;}
.h13_c00030{height:45.733333pt;}
.h15_c00030{height:46.666667pt;}
.h11_c00030{height:47.600000pt;}
.ha_c00030{height:48.533333pt;}
.h1a_c00030{height:58.800000pt;}
.he_c00030{height:59.733333pt;}
.h10_c00030{height:61.600000pt;}
.hc_c00030{height:64.400000pt;}
.hb_c00030{height:65.333333pt;}
.hd_c00030{height:66.266667pt;}
.h18_c00030{height:67.200000pt;}
.h1b_c00030{height:75.600983pt;}
.h1c_c00030{height:78.401019pt;}
.hf_c00030{height:84.933333pt;}
.h3_c00030{height:90.533333pt;}
.h2_c00030{height:135.333333pt;}
.h4_c00030{height:141.866667pt;}
.h1_c00030{height:960.000000pt;}
.h0_c00030{height:960.240000pt;}
.w1_c00030{width:682.666667pt;}
.w0_c00030{width:682.800000pt;}
.x0_c00030{left:0.000000pt;}
.x89_c00030{left:50.688000pt;}
.x86_c00030{left:53.630667pt;}
.x78_c00030{left:99.840000pt;}
.x4e_c00030{left:101.040000pt;}
.x42_c00030{left:107.520000pt;}
.x48_c00030{left:112.560000pt;}
.x8a_c00030{left:115.417872pt;}
.x4f_c00030{left:118.320000pt;}
.x2f_c00030{left:126.240000pt;}
.x38_c00030{left:131.040000pt;}
.x5a_c00030{left:132.480000pt;}
.x25_c00030{left:133.920000pt;}
.x1d_c00030{left:135.120000pt;}
.x62_c00030{left:136.560000pt;}
.x17_c00030{left:138.000000pt;}
.x3_c00030{left:139.156000pt;}
.x69_c00030{left:143.520000pt;}
.x50_c00030{left:145.680000pt;}
.x79_c00030{left:152.880000pt;}
.x1_c00030{left:156.480000pt;}
.x43_c00030{left:158.160000pt;}
.x72_c00030{left:160.080000pt;}
.xd_c00030{left:162.000000pt;}
.x51_c00030{left:163.440000pt;}
.xe_c00030{left:167.520000pt;}
.x5b_c00030{left:169.680000pt;}
.x1e_c00030{left:170.880000pt;}
.x26_c00030{left:173.040000pt;}
.x12_c00030{left:176.913333pt;}
.xa_c00030{left:178.080000pt;}
.x39_c00030{left:180.480000pt;}
.x4_c00030{left:181.909333pt;}
.x52_c00030{left:187.920000pt;}
.x13_c00030{left:191.406667pt;}
.x8b_c00030{left:193.144068pt;}
.x2a_c00030{left:196.320000pt;}
.x27_c00030{left:199.200000pt;}
.x30_c00030{left:200.880000pt;}
.x53_c00030{left:204.000000pt;}
.x36_c00030{left:210.000000pt;}
.x14_c00030{left:217.532000pt;}
.x18_c00030{left:220.080000pt;}
.x6a_c00030{left:221.280000pt;}
.x54_c00030{left:222.240000pt;}
.x7a_c00030{left:226.800000pt;}
.x44_c00030{left:228.720000pt;}
.x2b_c00030{left:232.800000pt;}
.x3a_c00030{left:235.920000pt;}
.x31_c00030{left:239.280000pt;}
.x80_c00030{left:241.680000pt;}
.x7b_c00030{left:249.360000pt;}
.x6b_c00030{left:250.560000pt;}
.x32_c00030{left:252.000000pt;}
.x63_c00030{left:253.920000pt;}
.x1f_c00030{left:256.560000pt;}
.x37_c00030{left:258.960000pt;}
.x49_c00030{left:260.640000pt;}
.x19_c00030{left:261.840000pt;}
.x24_c00030{left:268.080000pt;}
.x5c_c00030{left:273.600000pt;}
.x6c_c00030{left:276.720000pt;}
.x73_c00030{left:277.920000pt;}
.x2c_c00030{left:280.320000pt;}
.x7c_c00030{left:285.600000pt;}
.x2_c00030{left:287.040000pt;}
.x33_c00030{left:288.000000pt;}
.x5_c00030{left:291.349333pt;}
.x6d_c00030{left:292.800000pt;}
.x28_c00030{left:295.200000pt;}
.xf_c00030{left:296.160000pt;}
.x3b_c00030{left:297.600000pt;}
.x45_c00030{left:303.840000pt;}
.x10_c00030{left:305.760000pt;}
.x64_c00030{left:307.680000pt;}
.x7d_c00030{left:309.120000pt;}
.x4a_c00030{left:313.440000pt;}
.x15_c00030{left:318.273333pt;}
.x65_c00030{left:320.160000pt;}
.x11_c00030{left:321.120000pt;}
.x20_c00030{left:322.080000pt;}
.x34_c00030{left:324.480000pt;}
.x1a_c00030{left:325.920000pt;}
.x6_c00030{left:329.490667pt;}
.x3e_c00030{left:331.680000pt;}
.xb_c00030{left:333.600000pt;}
.x4b_c00030{left:335.520000pt;}
.x7e_c00030{left:337.440000pt;}
.x21_c00030{left:343.200000pt;}
.x46_c00030{left:344.640000pt;}
.x4c_c00030{left:346.800000pt;}
.x7_c00030{left:350.028000pt;}
.x3c_c00030{left:353.280000pt;}
.x55_c00030{left:354.960000pt;}
.x74_c00030{left:356.160000pt;}
.x66_c00030{left:359.280000pt;}
.x2d_c00030{left:363.120000pt;}
.x1b_c00030{left:366.240000pt;}
.x5d_c00030{left:368.880000pt;}
.x35_c00030{left:372.240000pt;}
.x8c_c00030{left:374.571348pt;}
.x3d_c00030{left:380.880000pt;}
.x29_c00030{left:382.560000pt;}
.x8_c00030{left:385.409333pt;}
.x5e_c00030{left:387.840000pt;}
.x3f_c00030{left:389.760000pt;}
.x6e_c00030{left:392.400000pt;}
.x2e_c00030{left:394.560000pt;}
.x81_c00030{left:395.760000pt;}
.x87_c00030{left:397.340000pt;}
.x56_c00030{left:401.520000pt;}
.x16_c00030{left:403.788000pt;}
.x22_c00030{left:412.560000pt;}
.x82_c00030{left:417.840000pt;}
.x1c_c00030{left:421.920000pt;}
.x75_c00030{left:426.960000pt;}
.x76_c00030{left:433.920000pt;}
.xc_c00030{left:436.560000pt;}
.x83_c00030{left:437.760000pt;}
.x40_c00030{left:438.720000pt;}
.x6f_c00030{left:441.360000pt;}
.x57_c00030{left:443.760000pt;}
.x5f_c00030{left:447.120000pt;}
.x23_c00030{left:449.280000pt;}
.x77_c00030{left:457.440000pt;}
.x7f_c00030{left:459.120000pt;}
.x58_c00030{left:463.440000pt;}
.x70_c00030{left:467.280000pt;}
.x84_c00030{left:468.240000pt;}
.x41_c00030{left:469.200000pt;}
.x9_c00030{left:471.800000pt;}
.x47_c00030{left:474.480000pt;}
.x60_c00030{left:476.400000pt;}
.x59_c00030{left:483.840000pt;}
.x85_c00030{left:486.240000pt;}
.x67_c00030{left:487.440000pt;}
.x61_c00030{left:491.280000pt;}
.x71_c00030{left:492.720000pt;}
.x4d_c00030{left:496.560000pt;}
.x68_c00030{left:502.080000pt;}
.x88_c00030{left:504.824000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mb_c00031{transform:matrix(0.010298,-0.000185,0.004499,0.249960,0,0);-ms-transform:matrix(0.010298,-0.000185,0.004499,0.249960,0,0);-webkit-transform:matrix(0.010298,-0.000185,0.004499,0.249960,0,0);}
.m120_c00031{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.me7_c00031{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m128_c00031{transform:matrix(0.060601,0.001030,-0.004249,0.249964,0,0);-ms-transform:matrix(0.060601,0.001030,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.060601,0.001030,-0.004249,0.249964,0,0);}
.m12a_c00031{transform:matrix(0.073724,0.001253,-0.004249,0.249964,0,0);-ms-transform:matrix(0.073724,0.001253,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.073724,0.001253,-0.004249,0.249964,0,0);}
.m131_c00031{transform:matrix(0.079014,0.001343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.079014,0.001343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.079014,0.001343,-0.004249,0.249964,0,0);}
.m80_c00031{transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00031{transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);}
.m52_c00031{transform:matrix(0.100585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100585,0.000000,0.000000,0.250000,0,0);}
.m6a_c00031{transform:matrix(0.104045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104045,0.000000,0.000000,0.250000,0,0);}
.m66_c00031{transform:matrix(0.109765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109765,0.000000,0.000000,0.250000,0,0);}
.me3_c00031{transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);}
.m1e_c00031{transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);}
.m89_c00031{transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);}
.m44_c00031{transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);}
.md4_c00031{transform:matrix(0.120115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120115,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.120230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120230,0.000000,0.000000,0.250000,0,0);}
.m59_c00031{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);}
.m137_c00031{transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);}
.m15_c00031{transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);}
.m34_c00031{transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);}
.m16_c00031{transform:matrix(0.139185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139185,0.000000,0.000000,0.250000,0,0);}
.m97_c00031{transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);}
.m42_c00031{transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);}
.m10f_c00031{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m82_c00031{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);}
.m12d_c00031{transform:matrix(0.142834,0.002428,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142834,0.002428,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142834,0.002428,-0.004249,0.249964,0,0);}
.m10b_c00031{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m38_c00031{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);}
.m14_c00031{transform:matrix(0.147765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00031{transform:matrix(0.150705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00031{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);}
.m10a_c00031{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);}
.mb0_c00031{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);}
.m3b_c00031{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);}
.m99_c00031{transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);}
.m8d_c00031{transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);}
.mf7_c00031{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);}
.m40_c00031{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.m6c_c00031{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);}
.mdf_c00031{transform:matrix(0.159170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159170,0.000000,0.000000,0.250000,0,0);}
.m107_c00031{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);}
.m19_c00031{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m6e_c00031{transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);}
.m10d_c00031{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);}
.m36_c00031{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m10c_c00031{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);}
.mae_c00031{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);}
.med_c00031{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);}
.m17_c00031{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);}
.m45_c00031{transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00031{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);}
.m7c_c00031{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);}
.maf_c00031{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m101_c00031{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);}
.m46_c00031{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);}
.m1f_c00031{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);}
.m75_c00031{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.m47_c00031{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);}
.m81_c00031{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);}
.md2_c00031{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);}
.m26_c00031{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);}
.me1_c00031{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);}
.m7b_c00031{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);}
.m23_c00031{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);}
.mf2_c00031{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);}
.mb1_c00031{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);}
.mc3_c00031{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);}
.m3a_c00031{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);}
.m2f_c00031{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);}
.mbf_c00031{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);}
.m39_c00031{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);}
.m31_c00031{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);}
.m9e_c00031{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);}
.m3e_c00031{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);}
.mdb_c00031{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);}
.m91_c00031{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);}
.m28_c00031{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);}
.m71_c00031{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);}
.m20_c00031{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);}
.m43_c00031{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);}
.m18_c00031{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);}
.me5_c00031{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);}
.ma8_c00031{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);}
.mab_c00031{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);}
.mda_c00031{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);}
.m10_c00031{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.maa_c00031{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);}
.mcc_c00031{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);}
.mc7_c00031{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);}
.ma3_c00031{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);}
.ma6_c00031{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);}
.m105_c00031{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);}
.m25_c00031{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);}
.m9f_c00031{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);}
.m112_c00031{transform:matrix(0.181390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181390,0.000000,0.000000,0.250000,0,0);}
.m88_c00031{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);}
.mc2_c00031{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);}
.m77_c00031{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);}
.m2e_c00031{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);}
.m11_c00031{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);}
.m113_c00031{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);}
.mf3_c00031{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);}
.m136_c00031{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);}
.m41_c00031{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);}
.m11a_c00031{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);}
.m37_c00031{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);}
.m70_c00031{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);}
.m116_c00031{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);}
.m49_c00031{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);}
.mef_c00031{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);}
.mc4_c00031{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);}
.m2d_c00031{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);}
.m8b_c00031{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);}
.md8_c00031{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);}
.m11b_c00031{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);}
.mbd_c00031{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);}
.ma2_c00031{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);}
.me4_c00031{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);}
.m2a_c00031{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);}
.ma7_c00031{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);}
.m35_c00031{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);}
.mf_c00031{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);}
.mee_c00031{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);}
.m85_c00031{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);}
.m102_c00031{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);}
.m78_c00031{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);}
.m87_c00031{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);}
.m8e_c00031{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);}
.mf9_c00031{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);}
.me2_c00031{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);}
.mf0_c00031{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);}
.m21_c00031{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);}
.m98_c00031{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);}
.ma_c00031{transform:matrix(0.187715,-0.003379,0.004499,0.249960,0,0);-ms-transform:matrix(0.187715,-0.003379,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187715,-0.003379,0.004499,0.249960,0,0);}
.m7d_c00031{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);}
.m32_c00031{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);}
.md1_c00031{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);}
.ma9_c00031{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);}
.mc5_c00031{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);}
.m7e_c00031{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_c00031{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);}
.m2b_c00031{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);}
.mfd_c00031{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);}
.ma0_c00031{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);}
.md3_c00031{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);}
.mc0_c00031{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);}
.me9_c00031{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);}
.m4b_c00031{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);}
.mbb_c00031{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);}
.m63_c00031{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);}
.m84_c00031{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);}
.m62_c00031{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);}
.mb2_c00031{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);}
.md6_c00031{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);}
.m83_c00031{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);}
.m114_c00031{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);}
.mc9_c00031{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);}
.m11c_c00031{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);}
.m3f_c00031{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);}
.m90_c00031{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);}
.mce_c00031{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);}
.mad_c00031{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);}
.m33_c00031{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);}
.md5_c00031{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);}
.m95_c00031{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);}
.mcb_c00031{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);}
.mfa_c00031{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);}
.m86_c00031{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);}
.m6f_c00031{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);}
.mf1_c00031{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);}
.ma4_c00031{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);}
.mac_c00031{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);}
.m7a_c00031{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);}
.md0_c00031{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);}
.m6d_c00031{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);}
.m94_c00031{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);}
.m8f_c00031{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);}
.m118_c00031{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);}
.mfb_c00031{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);}
.m5e_c00031{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);}
.m22_c00031{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);}
.m100_c00031{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);}
.m1a_c00031{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);}
.m11d_c00031{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);}
.mca_c00031{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);}
.m6_c00031{transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);-ms-transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);}
.m13a_c00031{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);}
.m56_c00031{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);}
.mf5_c00031{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);}
.mfc_c00031{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);}
.mec_c00031{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);}
.m65_c00031{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);}
.mc1_c00031{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);}
.mea_c00031{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);}
.m11f_c00031{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);}
.meb_c00031{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);}
.mb3_c00031{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);}
.mfe_c00031{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);}
.mcd_c00031{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);}
.m111_c00031{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);}
.m24_c00031{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);}
.m29_c00031{transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);}
.m139_c00031{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);}
.me6_c00031{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);}
.m119_c00031{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);}
.m93_c00031{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);}
.m3c_c00031{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);}
.m8_c00031{transform:matrix(0.208851,-0.003759,0.004499,0.249960,0,0);-ms-transform:matrix(0.208851,-0.003759,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208851,-0.003759,0.004499,0.249960,0,0);}
.m9a_c00031{transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);}
.mb6_c00031{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);}
.mdc_c00031{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m138_c00031{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);}
.mdd_c00031{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_c00031{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);}
.m9b_c00031{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);}
.mcf_c00031{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);}
.me_c00031{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);}
.ma5_c00031{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);}
.mb8_c00031{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);}
.mba_c00031{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);}
.mf6_c00031{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);}
.m30_c00031{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);}
.m10e_c00031{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);}
.m55_c00031{transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);}
.m67_c00031{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);}
.m117_c00031{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);}
.m109_c00031{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);}
.m48_c00031{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);}
.m104_c00031{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);}
.m13_c00031{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);}
.m96_c00031{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);}
.m3d_c00031{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);}
.m106_c00031{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);}
.mc6_c00031{transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);}
.m1c_c00031{transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);}
.mff_c00031{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_c00031{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);}
.m4a_c00031{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);}
.m4_c00031{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);}
.m76_c00031{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);}
.m5b_c00031{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);}
.m9c_c00031{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);}
.m4e_c00031{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);}
.m127_c00031{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);}
.m74_c00031{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);}
.m72_c00031{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);}
.m8c_c00031{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);}
.m92_c00031{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);}
.ma1_c00031{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);}
.m6b_c00031{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);}
.mb5_c00031{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);}
.m7f_c00031{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);}
.m5_c00031{transform:matrix(0.233347,-0.004200,0.004499,0.249960,0,0);-ms-transform:matrix(0.233347,-0.004200,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233347,-0.004200,0.004499,0.249960,0,0);}
.m7_c00031{transform:matrix(0.234452,-0.004220,0.004499,0.249960,0,0);-ms-transform:matrix(0.234452,-0.004220,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234452,-0.004220,0.004499,0.249960,0,0);}
.md9_c00031{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);}
.m61_c00031{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);}
.m64_c00031{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);}
.m51_c00031{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m8a_c00031{transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);}
.m115_c00031{transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);}
.m54_c00031{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{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);}
.m79_c00031{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);}
.mde_c00031{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00031{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);}
.m108_c00031{transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);}
.m4f_c00031{transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);}
.m5a_c00031{transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);}
.m126_c00031{transform:matrix(0.269941,0.004589,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269941,0.004589,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269941,0.004589,-0.004249,0.249964,0,0);}
.m132_c00031{transform:matrix(0.273590,0.004651,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273590,0.004651,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273590,0.004651,-0.004249,0.249964,0,0);}
.m53_c00031{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.m129_c00031{transform:matrix(0.276615,0.004702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276615,0.004702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276615,0.004702,-0.004249,0.249964,0,0);}
.mb7_c00031{transform:matrix(0.280420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280420,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);}
.m50_c00031{transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);}
.m121_c00031{transform:matrix(0.289023,0.004913,-0.004249,0.249964,0,0);-ms-transform:matrix(0.289023,0.004913,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.289023,0.004913,-0.004249,0.249964,0,0);}
.m9_c00031{transform:matrix(0.290958,-0.005237,0.004499,0.249960,0,0);-ms-transform:matrix(0.290958,-0.005237,0.004499,0.249960,0,0);-webkit-transform:matrix(0.290958,-0.005237,0.004499,0.249960,0,0);}
.m12b_c00031{transform:matrix(0.291133,0.004949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291133,0.004949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291133,0.004949,-0.004249,0.249964,0,0);}
.mc_c00031{transform:matrix(0.291983,-0.005256,0.004499,0.249960,0,0);-ms-transform:matrix(0.291983,-0.005256,0.004499,0.249960,0,0);-webkit-transform:matrix(0.291983,-0.005256,0.004499,0.249960,0,0);}
.m57_c00031{transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);}
.mf8_c00031{transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296955,0.000000,0.000000,0.250000,0,0);}
.m5d_c00031{transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);}
.m4d_c00031{transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305035,0.000000,0.000000,0.250000,0,0);}
.m123_c00031{transform:matrix(0.309890,0.005268,-0.004249,0.249964,0,0);-ms-transform:matrix(0.309890,0.005268,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.309890,0.005268,-0.004249,0.249964,0,0);}
.me0_c00031{transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);}
.m122_c00031{transform:matrix(0.319754,0.005436,-0.004249,0.249964,0,0);-ms-transform:matrix(0.319754,0.005436,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.319754,0.005436,-0.004249,0.249964,0,0);}
.m4c_c00031{transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);}
.m11e_c00031{transform:matrix(0.336270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336270,0.000000,0.000000,0.250000,0,0);}
.m110_c00031{transform:matrix(0.337015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337015,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.339925,-0.006119,0.004499,0.249960,0,0);-ms-transform:matrix(0.339925,-0.006119,0.004499,0.249960,0,0);-webkit-transform:matrix(0.339925,-0.006119,0.004499,0.249960,0,0);}
.m124_c00031{transform:matrix(0.340356,0.005786,-0.004249,0.249964,0,0);-ms-transform:matrix(0.340356,0.005786,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.340356,0.005786,-0.004249,0.249964,0,0);}
.mc8_c00031{transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);}
.md7_c00031{transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);}
.m73_c00031{transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);}
.m103_c00031{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.mf4_c00031{transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);}
.m60_c00031{transform:matrix(0.382370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382370,0.000000,0.000000,0.250000,0,0);}
.m12f_c00031{transform:matrix(0.393568,0.006691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.393568,0.006691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.393568,0.006691,-0.004249,0.249964,0,0);}
.m68_c00031{transform:matrix(0.414315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414315,0.000000,0.000000,0.250000,0,0);}
.m130_c00031{transform:matrix(0.422679,0.007186,-0.004249,0.249964,0,0);-ms-transform:matrix(0.422679,0.007186,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.422679,0.007186,-0.004249,0.249964,0,0);}
.m125_c00031{transform:matrix(0.443601,0.007541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.443601,0.007541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.443601,0.007541,-0.004249,0.249964,0,0);}
.m3_c00031{transform:matrix(0.480802,-0.008654,0.004499,0.249960,0,0);-ms-transform:matrix(0.480802,-0.008654,0.004499,0.249960,0,0);-webkit-transform:matrix(0.480802,-0.008654,0.004499,0.249960,0,0);}
.m69_c00031{transform:matrix(0.500920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500920,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.500972,-0.043760,0.021755,0.249052,0,0);-ms-transform:matrix(0.500972,-0.043760,0.021755,0.249052,0,0);-webkit-transform:matrix(0.500972,-0.043760,0.021755,0.249052,0,0);}
.m12c_c00031{transform:matrix(0.509276,0.008658,-0.004249,0.249964,0,0);-ms-transform:matrix(0.509276,0.008658,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.509276,0.008658,-0.004249,0.249964,0,0);}
.m5c_c00031{transform:matrix(0.523505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523505,0.000000,0.000000,0.250000,0,0);}
.m5f_c00031{transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);}
.m58_c00031{transform:matrix(0.692050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692050,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.730962,-0.013157,0.004499,0.249960,0,0);-ms-transform:matrix(0.730962,-0.013157,0.004499,0.249960,0,0);-webkit-transform:matrix(0.730962,-0.013157,0.004499,0.249960,0,0);}
.m12e_c00031{transform:matrix(0.738453,0.012554,-0.004249,0.249964,0,0);-ms-transform:matrix(0.738453,0.012554,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.738453,0.012554,-0.004249,0.249964,0,0);}
.m134_c00031{transform:matrix(0.887192,0.015082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.887192,0.015082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.887192,0.015082,-0.004249,0.249964,0,0);}
.m133_c00031{transform:matrix(0.908449,0.015444,-0.004249,0.249964,0,0);-ms-transform:matrix(0.908449,0.015444,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.908449,0.015444,-0.004249,0.249964,0,0);}
.m135_c00031{transform:matrix(1.302277,0.022139,-0.004249,0.249964,0,0);-ms-transform:matrix(1.302277,0.022139,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.302277,0.022139,-0.004249,0.249964,0,0);}
.mb4_c00031{transform:matrix(3.739495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.739495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.739495,0.000000,0.000000,0.250000,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;}
.fsb_c00031{font-size:22.050000px;}
.fs17_c00031{font-size:31.504551px;}
.fs1b_c00031{font-size:35.700000px;}
.fs1a_c00031{font-size:40.950000px;}
.fs19_c00031{font-size:47.250000px;}
.fsa_c00031{font-size:49.350000px;}
.fs12_c00031{font-size:50.400000px;}
.fs14_c00031{font-size:51.450000px;}
.fs13_c00031{font-size:53.550000px;}
.fs15_c00031{font-size:55.650000px;}
.fsf_c00031{font-size:63.000000px;}
.fsd_c00031{font-size:67.200000px;}
.fs18_c00031{font-size:68.259861px;}
.fs10_c00031{font-size:69.300000px;}
.fs6_c00031{font-size:70.350000px;}
.fs7_c00031{font-size:71.400000px;}
.fs2_c00031{font-size:71.411566px;}
.fse_c00031{font-size:73.500000px;}
.fs11_c00031{font-size:74.550000px;}
.fs8_c00031{font-size:75.600000px;}
.fsc_c00031{font-size:76.650000px;}
.fs9_c00031{font-size:79.800000px;}
.fs5_c00031{font-size:86.100000px;}
.fs16_c00031{font-size:86.112441px;}
.fs3_c00031{font-size:94.515308px;}
.fs4_c00031{font-size:101.850000px;}
.fs0_c00031{font-size:103.928428px;}
.fs1_c00031{font-size:108.167519px;}
.y0_c00031{bottom:0.000000px;}
.y43_c00031{bottom:160.974400px;}
.y42_c00031{bottom:160.974540px;}
.y44_c00031{bottom:160.974838px;}
.y41_c00031{bottom:173.391930px;}
.y3d_c00031{bottom:173.392306px;}
.y40_c00031{bottom:173.392513px;}
.y3f_c00031{bottom:173.392797px;}
.y3e_c00031{bottom:173.392849px;}
.y3c_c00031{bottom:173.392890px;}
.y3a_c00031{bottom:173.393046px;}
.y3b_c00031{bottom:173.393083px;}
.y37_c00031{bottom:173.393266px;}
.y39_c00031{bottom:173.393539px;}
.y36_c00031{bottom:173.393605px;}
.y38_c00031{bottom:173.393733px;}
.y35_c00031{bottom:176.116584px;}
.y34_c00031{bottom:177.530814px;}
.y33_c00031{bottom:178.603624px;}
.y32_c00031{bottom:179.651088px;}
.y31_c00031{bottom:180.591910px;}
.y30_c00031{bottom:181.633687px;}
.y2f_c00031{bottom:182.523000px;}
.y2e_c00031{bottom:222.933000px;}
.y2d_c00031{bottom:241.855500px;}
.y2c_c00031{bottom:259.200000px;}
.y2b_c00031{bottom:277.020000px;}
.y2a_c00031{bottom:295.345500px;}
.y29_c00031{bottom:312.996000px;}
.y28_c00031{bottom:331.054500px;}
.y27_c00031{bottom:349.110000px;}
.y26_c00031{bottom:373.819500px;}
.y25_c00031{bottom:392.643000px;}
.y24_c00031{bottom:415.956000px;}
.y23_c00031{bottom:438.267000px;}
.y22_c00031{bottom:462.064500px;}
.y4a_c00031{bottom:477.090000px;}
.y49_c00031{bottom:484.110000px;}
.y21_c00031{bottom:484.800000px;}
.y48_c00031{bottom:493.560000px;}
.y47_c00031{bottom:500.850000px;}
.y20_c00031{bottom:508.042500px;}
.y46_c00031{bottom:511.110000px;}
.y45_c00031{bottom:517.050000px;}
.y1f_c00031{bottom:530.670000px;}
.y1e_c00031{bottom:552.930000px;}
.y1d_c00031{bottom:576.043500px;}
.y1c_c00031{bottom:598.959000px;}
.y1a_c00031{bottom:599.940000px;}
.y19_c00031{bottom:613.710000px;}
.y1b_c00031{bottom:618.030000px;}
.y18_c00031{bottom:621.958500px;}
.y17_c00031{bottom:638.013000px;}
.y16_c00031{bottom:643.765500px;}
.y15_c00031{bottom:665.551500px;}
.y14_c00031{bottom:687.874500px;}
.y13_c00031{bottom:710.286000px;}
.y12_c00031{bottom:733.795500px;}
.y11_c00031{bottom:756.490500px;}
.y10_c00031{bottom:779.820000px;}
.yf_c00031{bottom:801.904500px;}
.ye_c00031{bottom:820.410000px;}
.yc_c00031{bottom:845.639748px;}
.yd_c00031{bottom:846.756174px;}
.y5_c00031{bottom:871.926573px;}
.y6_c00031{bottom:872.659044px;}
.y7_c00031{bottom:872.955270px;}
.y8_c00031{bottom:873.287601px;}
.y9_c00031{bottom:873.773463px;}
.ya_c00031{bottom:874.716843px;}
.yb_c00031{bottom:876.333699px;}
.y2_c00031{bottom:895.596000px;}
.y3_c00031{bottom:897.040230px;}
.y4_c00031{bottom:898.104057px;}
.y1_c00031{bottom:936.529500px;}
.hd_c00031{height:22.050000px;}
.h19_c00031{height:31.504551px;}
.h1d_c00031{height:35.700000px;}
.h1c_c00031{height:40.950000px;}
.h1b_c00031{height:47.250000px;}
.hc_c00031{height:49.350000px;}
.h14_c00031{height:50.400000px;}
.h16_c00031{height:51.450000px;}
.h15_c00031{height:53.550000px;}
.h17_c00031{height:55.650000px;}
.h11_c00031{height:63.000000px;}
.hf_c00031{height:67.200000px;}
.h1a_c00031{height:68.259861px;}
.h12_c00031{height:69.300000px;}
.h8_c00031{height:70.350000px;}
.h9_c00031{height:71.400000px;}
.h4_c00031{height:71.411566px;}
.h10_c00031{height:73.500000px;}
.h13_c00031{height:74.550000px;}
.ha_c00031{height:75.600000px;}
.he_c00031{height:76.650000px;}
.hb_c00031{height:79.800000px;}
.h7_c00031{height:86.100000px;}
.h18_c00031{height:86.112441px;}
.h5_c00031{height:94.515308px;}
.h6_c00031{height:101.850000px;}
.h2_c00031{height:103.928428px;}
.h3_c00031{height:108.167519px;}
.h0_c00031{height:1086.450000px;}
.h1_c00031{height:1086.750000px;}
.w1_c00031{width:771.000000px;}
.w0_c00031{width:771.120000px;}
.x0_c00031{left:0.000000px;}
.x96_c00031{left:197.370000px;}
.x7a_c00031{left:198.720000px;}
.x2_c00031{left:217.444500px;}
.xa2_c00031{left:219.780000px;}
.x97_c00031{left:222.210000px;}
.x52_c00031{left:224.100000px;}
.x6b_c00031{left:225.990000px;}
.x14_c00031{left:227.880000px;}
.x39_c00031{left:229.770000px;}
.x5_c00031{left:231.073326px;}
.x71_c00031{left:233.010000px;}
.x9b_c00031{left:234.900000px;}
.x51_c00031{left:237.060000px;}
.x81_c00031{left:240.030000px;}
.x7b_c00031{left:250.020000px;}
.x5f_c00031{left:252.720000px;}
.x40_c00031{left:255.420000px;}
.x63_c00031{left:257.580000px;}
.x2c_c00031{left:258.930000px;}
.x88_c00031{left:262.980000px;}
.x27_c00031{left:266.220000px;}
.x1a_c00031{left:267.570000px;}
.x22_c00031{left:268.650000px;}
.x15_c00031{left:269.730000px;}
.x73_c00031{left:272.700000px;}
.xb4_c00031{left:274.319841px;}
.x41_c00031{left:276.480000px;}
.x5a_c00031{left:278.100000px;}
.x6_c00031{left:279.935472px;}
.x89_c00031{left:281.610000px;}
.x9c_c00031{left:283.230000px;}
.x32_c00031{left:285.120000px;}
.x53_c00031{left:286.740000px;}
.x4f_c00031{left:288.900000px;}
.x3a_c00031{left:292.410000px;}
.x82_c00031{left:295.920000px;}
.x3_c00031{left:297.679500px;}
.x7_c00031{left:299.643525px;}
.x28_c00031{left:301.320000px;}
.x1b_c00031{left:303.480000px;}
.x60_c00031{left:305.640000px;}
.x6c_c00031{left:308.070000px;}
.x64_c00031{left:310.770000px;}
.xa3_c00031{left:314.010000px;}
.x54_c00031{left:315.090000px;}
.x33_c00031{left:316.980000px;}
.x42_c00031{left:320.490000px;}
.x8_c00031{left:321.774213px;}
.x2d_c00031{left:323.190000px;}
.x6d_c00031{left:325.350000px;}
.x5b_c00031{left:327.510000px;}
.x16_c00031{left:328.860000px;}
.xc_c00031{left:330.616077px;}
.x8a_c00031{left:332.370000px;}
.x43_c00031{left:336.690000px;}
.x1c_c00031{left:340.200000px;}
.x1_c00031{left:345.387000px;}
.x74_c00031{left:347.220000px;}
.x8e_c00031{left:349.110000px;}
.x29_c00031{left:352.080000px;}
.x9_c00031{left:354.184968px;}
.x4_c00031{left:356.781000px;}
.x3b_c00031{left:359.370000px;}
.xae_c00031{left:360.732369px;}
.x83_c00031{left:362.610000px;}
.x7c_c00031{left:364.230000px;}
.x23_c00031{left:365.310000px;}
.x8b_c00031{left:369.090000px;}
.x1d_c00031{left:372.060000px;}
.x8f_c00031{left:373.950000px;}
.x5c_c00031{left:379.890000px;}
.x84_c00031{left:381.240000px;}
.x44_c00031{left:383.400000px;}
.x61_c00031{left:384.480000px;}
.xd_c00031{left:386.471079px;}
.x7d_c00031{left:387.990000px;}
.x1e_c00031{left:389.340000px;}
.x75_c00031{left:390.960000px;}
.x90_c00031{left:392.310000px;}
.xaa_c00031{left:394.470000px;}
.x2e_c00031{left:397.170000px;}
.x45_c00031{left:400.410000px;}
.xa4_c00031{left:402.030000px;}
.x17_c00031{left:404.460000px;}
.x6e_c00031{left:405.810000px;}
.x55_c00031{left:407.700000px;}
.x24_c00031{left:410.670000px;}
.x65_c00031{left:412.560000px;}
.x72_c00031{left:414.990000px;}
.xa_c00031{left:417.098370px;}
.x3c_c00031{left:420.120000px;}
.x34_c00031{left:422.280000px;}
.x1f_c00031{left:424.980000px;}
.x59_c00031{left:426.330000px;}
.x76_c00031{left:427.410000px;}
.x2f_c00031{left:429.570000px;}
.x98_c00031{left:430.920000px;}
.x2a_c00031{left:432.540000px;}
.x25_c00031{left:434.430000px;}
.x91_c00031{left:436.320000px;}
.xe_c00031{left:437.940000px;}
.x56_c00031{left:440.100000px;}
.x18_c00031{left:442.260000px;}
.x7e_c00031{left:444.690000px;}
.xa5_c00031{left:445.770000px;}
.xab_c00031{left:448.243500px;}
.x35_c00031{left:450.630000px;}
.x6f_c00031{left:451.710000px;}
.x66_c00031{left:454.950000px;}
.x50_c00031{left:458.190000px;}
.x9d_c00031{left:459.810000px;}
.xf_c00031{left:462.240000px;}
.x46_c00031{left:466.290000px;}
.x30_c00031{left:467.370000px;}
.x20_c00031{left:469.800000px;}
.x3d_c00031{left:472.770000px;}
.xaf_c00031{left:476.039172px;}
.x26_c00031{left:479.250000px;}
.x57_c00031{left:481.950000px;}
.x9e_c00031{left:483.030000px;}
.x4b_c00031{left:487.080000px;}
.x5d_c00031{left:488.430000px;}
.x10_c00031{left:490.050000px;}
.x67_c00031{left:492.480000px;}
.x62_c00031{left:493.560000px;}
.x68_c00031{left:494.640000px;}
.x70_c00031{left:498.690000px;}
.x36_c00031{left:500.850000px;}
.xa6_c00031{left:502.740000px;}
.x21_c00031{left:504.630000px;}
.x92_c00031{left:506.250000px;}
.x79_c00031{left:507.870000px;}
.x85_c00031{left:509.760000px;}
.x47_c00031{left:512.190000px;}
.x4c_c00031{left:514.620000px;}
.x19_c00031{left:517.860000px;}
.x11_c00031{left:522.450000px;}
.xa7_c00031{left:523.800000px;}
.xb_c00031{left:524.846175px;}
.x99_c00031{left:528.930000px;}
.x3e_c00031{left:533.520000px;}
.x69_c00031{left:535.140000px;}
.x37_c00031{left:541.620000px;}
.x7f_c00031{left:543.240000px;}
.x12_c00031{left:545.940000px;}
.x8c_c00031{left:549.720000px;}
.x5e_c00031{left:557.820000px;}
.x6a_c00031{left:559.710000px;}
.x9a_c00031{left:561.060000px;}
.x2b_c00031{left:562.140000px;}
.xb5_c00031{left:563.532905px;}
.x4d_c00031{left:567.000000px;}
.x9f_c00031{left:569.970000px;}
.xb0_c00031{left:571.363212px;}
.xac_c00031{left:572.965500px;}
.x31_c00031{left:578.880000px;}
.x77_c00031{left:579.960000px;}
.x80_c00031{left:581.310000px;}
.x4e_c00031{left:583.200000px;}
.x4a_c00031{left:584.280000px;}
.x86_c00031{left:585.360000px;}
.x38_c00031{left:593.460000px;}
.x93_c00031{left:596.970000px;}
.xa0_c00031{left:598.590000px;}
.x78_c00031{left:601.020000px;}
.x3f_c00031{left:607.230000px;}
.xa1_c00031{left:610.740000px;}
.x58_c00031{left:611.820000px;}
.x8d_c00031{left:613.170000px;}
.x94_c00031{left:616.410000px;}
.x13_c00031{left:619.920000px;}
.xb1_c00031{left:625.911471px;}
.xa8_c00031{left:626.940000px;}
.x48_c00031{left:637.200000px;}
.x95_c00031{left:641.790000px;}
.x87_c00031{left:646.920000px;}
.xa9_c00031{left:648.000000px;}
.xb2_c00031{left:653.995080px;}
.xad_c00031{left:656.155500px;}
.x49_c00031{left:686.340000px;}
.xb3_c00031{left:687.480245px;}
.xb6_c00031{left:768.150000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fsb_c00031{font-size:19.600000pt;}
.fs17_c00031{font-size:28.004046pt;}
.fs1b_c00031{font-size:31.733333pt;}
.fs1a_c00031{font-size:36.400000pt;}
.fs19_c00031{font-size:42.000000pt;}
.fsa_c00031{font-size:43.866667pt;}
.fs12_c00031{font-size:44.800000pt;}
.fs14_c00031{font-size:45.733333pt;}
.fs13_c00031{font-size:47.600000pt;}
.fs15_c00031{font-size:49.466667pt;}
.fsf_c00031{font-size:56.000000pt;}
.fsd_c00031{font-size:59.733333pt;}
.fs18_c00031{font-size:60.675432pt;}
.fs10_c00031{font-size:61.600000pt;}
.fs6_c00031{font-size:62.533333pt;}
.fs7_c00031{font-size:63.466667pt;}
.fs2_c00031{font-size:63.476947pt;}
.fse_c00031{font-size:65.333333pt;}
.fs11_c00031{font-size:66.266667pt;}
.fs8_c00031{font-size:67.200000pt;}
.fsc_c00031{font-size:68.133333pt;}
.fs9_c00031{font-size:70.933333pt;}
.fs5_c00031{font-size:76.533333pt;}
.fs16_c00031{font-size:76.544392pt;}
.fs3_c00031{font-size:84.013607pt;}
.fs4_c00031{font-size:90.533333pt;}
.fs0_c00031{font-size:92.380825pt;}
.fs1_c00031{font-size:96.148906pt;}
.y0_c00031{bottom:0.000000pt;}
.y43_c00031{bottom:143.088356pt;}
.y42_c00031{bottom:143.088480pt;}
.y44_c00031{bottom:143.088745pt;}
.y41_c00031{bottom:154.126160pt;}
.y3d_c00031{bottom:154.126495pt;}
.y40_c00031{bottom:154.126679pt;}
.y3f_c00031{bottom:154.126931pt;}
.y3e_c00031{bottom:154.126977pt;}
.y3c_c00031{bottom:154.127013pt;}
.y3a_c00031{bottom:154.127152pt;}
.y3b_c00031{bottom:154.127185pt;}
.y37_c00031{bottom:154.127348pt;}
.y39_c00031{bottom:154.127591pt;}
.y36_c00031{bottom:154.127649pt;}
.y38_c00031{bottom:154.127763pt;}
.y35_c00031{bottom:156.548075pt;}
.y34_c00031{bottom:157.805168pt;}
.y33_c00031{bottom:158.758777pt;}
.y32_c00031{bottom:159.689856pt;}
.y31_c00031{bottom:160.526143pt;}
.y30_c00031{bottom:161.452167pt;}
.y2f_c00031{bottom:162.242667pt;}
.y2e_c00031{bottom:198.162667pt;}
.y2d_c00031{bottom:214.982667pt;}
.y2c_c00031{bottom:230.400000pt;}
.y2b_c00031{bottom:246.240000pt;}
.y2a_c00031{bottom:262.529333pt;}
.y29_c00031{bottom:278.218667pt;}
.y28_c00031{bottom:294.270667pt;}
.y27_c00031{bottom:310.320000pt;}
.y26_c00031{bottom:332.284000pt;}
.y25_c00031{bottom:349.016000pt;}
.y24_c00031{bottom:369.738667pt;}
.y23_c00031{bottom:389.570667pt;}
.y22_c00031{bottom:410.724000pt;}
.y4a_c00031{bottom:424.080000pt;}
.y49_c00031{bottom:430.320000pt;}
.y21_c00031{bottom:430.933333pt;}
.y48_c00031{bottom:438.720000pt;}
.y47_c00031{bottom:445.200000pt;}
.y20_c00031{bottom:451.593333pt;}
.y46_c00031{bottom:454.320000pt;}
.y45_c00031{bottom:459.600000pt;}
.y1f_c00031{bottom:471.706667pt;}
.y1e_c00031{bottom:491.493333pt;}
.y1d_c00031{bottom:512.038667pt;}
.y1c_c00031{bottom:532.408000pt;}
.y1a_c00031{bottom:533.280000pt;}
.y19_c00031{bottom:545.520000pt;}
.y1b_c00031{bottom:549.360000pt;}
.y18_c00031{bottom:552.852000pt;}
.y17_c00031{bottom:567.122667pt;}
.y16_c00031{bottom:572.236000pt;}
.y15_c00031{bottom:591.601333pt;}
.y14_c00031{bottom:611.444000pt;}
.y13_c00031{bottom:631.365333pt;}
.y12_c00031{bottom:652.262667pt;}
.y11_c00031{bottom:672.436000pt;}
.y10_c00031{bottom:693.173333pt;}
.yf_c00031{bottom:712.804000pt;}
.ye_c00031{bottom:729.253333pt;}
.yc_c00031{bottom:751.679776pt;}
.yd_c00031{bottom:752.672155pt;}
.y5_c00031{bottom:775.045843pt;}
.y6_c00031{bottom:775.696928pt;}
.y7_c00031{bottom:775.960240pt;}
.y8_c00031{bottom:776.255645pt;}
.y9_c00031{bottom:776.687523pt;}
.ya_c00031{bottom:777.526083pt;}
.yb_c00031{bottom:778.963288pt;}
.y2_c00031{bottom:796.085333pt;}
.y3_c00031{bottom:797.369093pt;}
.y4_c00031{bottom:798.314717pt;}
.y1_c00031{bottom:832.470667pt;}
.hd_c00031{height:19.600000pt;}
.h19_c00031{height:28.004046pt;}
.h1d_c00031{height:31.733333pt;}
.h1c_c00031{height:36.400000pt;}
.h1b_c00031{height:42.000000pt;}
.hc_c00031{height:43.866667pt;}
.h14_c00031{height:44.800000pt;}
.h16_c00031{height:45.733333pt;}
.h15_c00031{height:47.600000pt;}
.h17_c00031{height:49.466667pt;}
.h11_c00031{height:56.000000pt;}
.hf_c00031{height:59.733333pt;}
.h1a_c00031{height:60.675432pt;}
.h12_c00031{height:61.600000pt;}
.h8_c00031{height:62.533333pt;}
.h9_c00031{height:63.466667pt;}
.h4_c00031{height:63.476947pt;}
.h10_c00031{height:65.333333pt;}
.h13_c00031{height:66.266667pt;}
.ha_c00031{height:67.200000pt;}
.he_c00031{height:68.133333pt;}
.hb_c00031{height:70.933333pt;}
.h7_c00031{height:76.533333pt;}
.h18_c00031{height:76.544392pt;}
.h5_c00031{height:84.013607pt;}
.h6_c00031{height:90.533333pt;}
.h2_c00031{height:92.380825pt;}
.h3_c00031{height:96.148906pt;}
.h0_c00031{height:965.733333pt;}
.h1_c00031{height:966.000000pt;}
.w1_c00031{width:685.333333pt;}
.w0_c00031{width:685.440000pt;}
.x0_c00031{left:0.000000pt;}
.x96_c00031{left:175.440000pt;}
.x7a_c00031{left:176.640000pt;}
.x2_c00031{left:193.284000pt;}
.xa2_c00031{left:195.360000pt;}
.x97_c00031{left:197.520000pt;}
.x52_c00031{left:199.200000pt;}
.x6b_c00031{left:200.880000pt;}
.x14_c00031{left:202.560000pt;}
.x39_c00031{left:204.240000pt;}
.x5_c00031{left:205.398512pt;}
.x71_c00031{left:207.120000pt;}
.x9b_c00031{left:208.800000pt;}
.x51_c00031{left:210.720000pt;}
.x81_c00031{left:213.360000pt;}
.x7b_c00031{left:222.240000pt;}
.x5f_c00031{left:224.640000pt;}
.x40_c00031{left:227.040000pt;}
.x63_c00031{left:228.960000pt;}
.x2c_c00031{left:230.160000pt;}
.x88_c00031{left:233.760000pt;}
.x27_c00031{left:236.640000pt;}
.x1a_c00031{left:237.840000pt;}
.x22_c00031{left:238.800000pt;}
.x15_c00031{left:239.760000pt;}
.x73_c00031{left:242.400000pt;}
.xb4_c00031{left:243.839859pt;}
.x41_c00031{left:245.760000pt;}
.x5a_c00031{left:247.200000pt;}
.x6_c00031{left:248.831531pt;}
.x89_c00031{left:250.320000pt;}
.x9c_c00031{left:251.760000pt;}
.x32_c00031{left:253.440000pt;}
.x53_c00031{left:254.880000pt;}
.x4f_c00031{left:256.800000pt;}
.x3a_c00031{left:259.920000pt;}
.x82_c00031{left:263.040000pt;}
.x3_c00031{left:264.604000pt;}
.x7_c00031{left:266.349800pt;}
.x28_c00031{left:267.840000pt;}
.x1b_c00031{left:269.760000pt;}
.x60_c00031{left:271.680000pt;}
.x6c_c00031{left:273.840000pt;}
.x64_c00031{left:276.240000pt;}
.xa3_c00031{left:279.120000pt;}
.x54_c00031{left:280.080000pt;}
.x33_c00031{left:281.760000pt;}
.x42_c00031{left:284.880000pt;}
.x8_c00031{left:286.021523pt;}
.x2d_c00031{left:287.280000pt;}
.x6d_c00031{left:289.200000pt;}
.x5b_c00031{left:291.120000pt;}
.x16_c00031{left:292.320000pt;}
.xc_c00031{left:293.880957pt;}
.x8a_c00031{left:295.440000pt;}
.x43_c00031{left:299.280000pt;}
.x1c_c00031{left:302.400000pt;}
.x1_c00031{left:307.010667pt;}
.x74_c00031{left:308.640000pt;}
.x8e_c00031{left:310.320000pt;}
.x29_c00031{left:312.960000pt;}
.x9_c00031{left:314.831083pt;}
.x4_c00031{left:317.138667pt;}
.x3b_c00031{left:319.440000pt;}
.xae_c00031{left:320.650995pt;}
.x83_c00031{left:322.320000pt;}
.x7c_c00031{left:323.760000pt;}
.x23_c00031{left:324.720000pt;}
.x8b_c00031{left:328.080000pt;}
.x1d_c00031{left:330.720000pt;}
.x8f_c00031{left:332.400000pt;}
.x5c_c00031{left:337.680000pt;}
.x84_c00031{left:338.880000pt;}
.x44_c00031{left:340.800000pt;}
.x61_c00031{left:341.760000pt;}
.xd_c00031{left:343.529848pt;}
.x7d_c00031{left:344.880000pt;}
.x1e_c00031{left:346.080000pt;}
.x75_c00031{left:347.520000pt;}
.x90_c00031{left:348.720000pt;}
.xaa_c00031{left:350.640000pt;}
.x2e_c00031{left:353.040000pt;}
.x45_c00031{left:355.920000pt;}
.xa4_c00031{left:357.360000pt;}
.x17_c00031{left:359.520000pt;}
.x6e_c00031{left:360.720000pt;}
.x55_c00031{left:362.400000pt;}
.x24_c00031{left:365.040000pt;}
.x65_c00031{left:366.720000pt;}
.x72_c00031{left:368.880000pt;}
.xa_c00031{left:370.754107pt;}
.x3c_c00031{left:373.440000pt;}
.x34_c00031{left:375.360000pt;}
.x1f_c00031{left:377.760000pt;}
.x59_c00031{left:378.960000pt;}
.x76_c00031{left:379.920000pt;}
.x2f_c00031{left:381.840000pt;}
.x98_c00031{left:383.040000pt;}
.x2a_c00031{left:384.480000pt;}
.x25_c00031{left:386.160000pt;}
.x91_c00031{left:387.840000pt;}
.xe_c00031{left:389.280000pt;}
.x56_c00031{left:391.200000pt;}
.x18_c00031{left:393.120000pt;}
.x7e_c00031{left:395.280000pt;}
.xa5_c00031{left:396.240000pt;}
.xab_c00031{left:398.438667pt;}
.x35_c00031{left:400.560000pt;}
.x6f_c00031{left:401.520000pt;}
.x66_c00031{left:404.400000pt;}
.x50_c00031{left:407.280000pt;}
.x9d_c00031{left:408.720000pt;}
.xf_c00031{left:410.880000pt;}
.x46_c00031{left:414.480000pt;}
.x30_c00031{left:415.440000pt;}
.x20_c00031{left:417.600000pt;}
.x3d_c00031{left:420.240000pt;}
.xaf_c00031{left:423.145931pt;}
.x26_c00031{left:426.000000pt;}
.x57_c00031{left:428.400000pt;}
.x9e_c00031{left:429.360000pt;}
.x4b_c00031{left:432.960000pt;}
.x5d_c00031{left:434.160000pt;}
.x10_c00031{left:435.600000pt;}
.x67_c00031{left:437.760000pt;}
.x62_c00031{left:438.720000pt;}
.x68_c00031{left:439.680000pt;}
.x70_c00031{left:443.280000pt;}
.x36_c00031{left:445.200000pt;}
.xa6_c00031{left:446.880000pt;}
.x21_c00031{left:448.560000pt;}
.x92_c00031{left:450.000000pt;}
.x79_c00031{left:451.440000pt;}
.x85_c00031{left:453.120000pt;}
.x47_c00031{left:455.280000pt;}
.x4c_c00031{left:457.440000pt;}
.x19_c00031{left:460.320000pt;}
.x11_c00031{left:464.400000pt;}
.xa7_c00031{left:465.600000pt;}
.xb_c00031{left:466.529933pt;}
.x99_c00031{left:470.160000pt;}
.x3e_c00031{left:474.240000pt;}
.x69_c00031{left:475.680000pt;}
.x37_c00031{left:481.440000pt;}
.x7f_c00031{left:482.880000pt;}
.x12_c00031{left:485.280000pt;}
.x8c_c00031{left:488.640000pt;}
.x5e_c00031{left:495.840000pt;}
.x6a_c00031{left:497.520000pt;}
.x9a_c00031{left:498.720000pt;}
.x2b_c00031{left:499.680000pt;}
.xb5_c00031{left:500.918137pt;}
.x4d_c00031{left:504.000000pt;}
.x9f_c00031{left:506.640000pt;}
.xb0_c00031{left:507.878411pt;}
.xac_c00031{left:509.302667pt;}
.x31_c00031{left:514.560000pt;}
.x77_c00031{left:515.520000pt;}
.x80_c00031{left:516.720000pt;}
.x4e_c00031{left:518.400000pt;}
.x4a_c00031{left:519.360000pt;}
.x86_c00031{left:520.320000pt;}
.x38_c00031{left:527.520000pt;}
.x93_c00031{left:530.640000pt;}
.xa0_c00031{left:532.080000pt;}
.x78_c00031{left:534.240000pt;}
.x3f_c00031{left:539.760000pt;}
.xa1_c00031{left:542.880000pt;}
.x58_c00031{left:543.840000pt;}
.x8d_c00031{left:545.040000pt;}
.x94_c00031{left:547.920000pt;}
.x13_c00031{left:551.040000pt;}
.xb1_c00031{left:556.365752pt;}
.xa8_c00031{left:557.280000pt;}
.x48_c00031{left:566.400000pt;}
.x95_c00031{left:570.480000pt;}
.x87_c00031{left:575.040000pt;}
.xa9_c00031{left:576.000000pt;}
.xb2_c00031{left:581.328960pt;}
.xad_c00031{left:583.249333pt;}
.x49_c00031{left:610.080000pt;}
.xb3_c00031{left:611.093551pt;}
.xb6_c00031{left:682.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_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_4ab86c84425994a9e06b01c2.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;}
.m92_c00032{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m49_c00032{transform:matrix(0.010695,0.000086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010695,0.000086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010695,0.000086,-0.002000,0.249992,0,0);}
.m9_c00032{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.ma6_c00032{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);}
.m32_c00032{transform:matrix(0.013435,0.000107,-0.002000,0.249992,0,0);-ms-transform:matrix(0.013435,0.000107,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.013435,0.000107,-0.002000,0.249992,0,0);}
.m105_c00032{transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);}
.m94_c00032{transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);}
.m86_c00032{transform:matrix(0.063795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063795,0.000000,0.000000,0.250000,0,0);}
.mb0_c00032{transform:matrix(0.108026,0.002701,-0.006248,0.249922,0,0);-ms-transform:matrix(0.108026,0.002701,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.108026,0.002701,-0.006248,0.249922,0,0);}
.mcc_c00032{transform:matrix(0.110276,0.002757,-0.006248,0.249922,0,0);-ms-transform:matrix(0.110276,0.002757,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.110276,0.002757,-0.006248,0.249922,0,0);}
.m15_c00032{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m46_c00032{transform:matrix(0.127706,0.001022,-0.002000,0.249992,0,0);-ms-transform:matrix(0.127706,0.001022,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.127706,0.001022,-0.002000,0.249992,0,0);}
.mf4_c00032{transform:matrix(0.130455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130455,0.000000,0.000000,0.250000,0,0);}
.m2f_c00032{transform:matrix(0.144963,0.001450,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144963,0.001450,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144963,0.001450,-0.002500,0.249988,0,0);}
.m2e_c00032{transform:matrix(0.145763,0.001458,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145763,0.001458,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145763,0.001458,-0.002500,0.249988,0,0);}
.m8b_c00032{transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);}
.m2d_c00032{transform:matrix(0.152407,0.001524,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152407,0.001524,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152407,0.001524,-0.002500,0.249988,0,0);}
.m90_c00032{transform:matrix(0.152495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152495,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{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);}
.m78_c00032{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);}
.m6c_c00032{transform:matrix(0.153526,0.001689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153526,0.001689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153526,0.001689,-0.002750,0.249985,0,0);}
.m14_c00032{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);}
.m72_c00032{transform:matrix(0.153921,0.001693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153921,0.001693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153921,0.001693,-0.002750,0.249985,0,0);}
.me1_c00032{transform:matrix(0.156751,0.003919,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156751,0.003919,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156751,0.003919,-0.006248,0.249922,0,0);}
.m19_c00032{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.m84_c00032{transform:matrix(0.159194,0.001910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159194,0.001910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159194,0.001910,-0.003000,0.249982,0,0);}
.m9b_c00032{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);}
.mb3_c00032{transform:matrix(0.160920,0.004023,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160920,0.004023,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160920,0.004023,-0.006248,0.249922,0,0);}
.m36_c00032{transform:matrix(0.161965,0.001296,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161965,0.001296,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161965,0.001296,-0.002000,0.249992,0,0);}
.m25_c00032{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);}
.m26_c00032{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m79_c00032{transform:matrix(0.162923,0.001955,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162923,0.001955,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162923,0.001955,-0.003000,0.249982,0,0);}
.m9d_c00032{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);}
.meb_c00032{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);}
.m83_c00032{transform:matrix(0.163813,0.001966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163813,0.001966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163813,0.001966,-0.003000,0.249982,0,0);}
.m47_c00032{transform:matrix(0.164000,0.001312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164000,0.001312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164000,0.001312,-0.002000,0.249992,0,0);}
.m99_c00032{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);}
.m7a_c00032{transform:matrix(0.164878,0.001979,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164878,0.001979,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164878,0.001979,-0.003000,0.249982,0,0);}
.m51_c00032{transform:matrix(0.164895,0.001319,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164895,0.001319,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164895,0.001319,-0.002000,0.249992,0,0);}
.mae_c00032{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);}
.m34_c00032{transform:matrix(0.165320,0.001323,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165320,0.001323,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165320,0.001323,-0.002000,0.249992,0,0);}
.me7_c00032{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);}
.mf9_c00032{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);}
.m7f_c00032{transform:matrix(0.167763,0.002013,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167763,0.002013,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167763,0.002013,-0.003000,0.249982,0,0);}
.mc7_c00032{transform:matrix(0.167913,0.004198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167913,0.004198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167913,0.004198,-0.006248,0.249922,0,0);}
.mba_c00032{transform:matrix(0.168252,0.004206,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168252,0.004206,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168252,0.004206,-0.006248,0.249922,0,0);}
.m6d_c00032{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);}
.mc1_c00032{transform:matrix(0.169062,0.004227,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169062,0.004227,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169062,0.004227,-0.006248,0.249922,0,0);}
.m62_c00032{transform:matrix(0.169375,0.001863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169375,0.001863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169375,0.001863,-0.002750,0.249985,0,0);}
.m77_c00032{transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);}
.m71_c00032{transform:matrix(0.170205,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170205,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170205,0.001872,-0.002750,0.249985,0,0);}
.md4_c00032{transform:matrix(0.170207,0.004255,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170207,0.004255,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170207,0.004255,-0.006248,0.249922,0,0);}
.m2a_c00032{transform:matrix(0.170366,0.001704,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170366,0.001704,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170366,0.001704,-0.002500,0.249988,0,0);}
.m1a_c00032{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);}
.m48_c00032{transform:matrix(0.171765,0.001374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171765,0.001374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171765,0.001374,-0.002000,0.249992,0,0);}
.m8_c00032{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);}
.m67_c00032{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);}
.m41_c00032{transform:matrix(0.172804,0.001382,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172804,0.001382,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172804,0.001382,-0.002000,0.249992,0,0);}
.mb4_c00032{transform:matrix(0.173356,0.004334,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173356,0.004334,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173356,0.004334,-0.006248,0.249922,0,0);}
.m97_c00032{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);}
.m39_c00032{transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);}
.m5f_c00032{transform:matrix(0.174194,0.001916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174194,0.001916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174194,0.001916,-0.002750,0.249985,0,0);}
.m81_c00032{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);}
.m96_c00032{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);}
.m3d_c00032{transform:matrix(0.174569,0.001397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174569,0.001397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174569,0.001397,-0.002000,0.249992,0,0);}
.m13_c00032{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);}
.m3_c00032{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);}
.m82_c00032{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);}
.md6_c00032{transform:matrix(0.175590,0.004390,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175590,0.004390,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175590,0.004390,-0.006248,0.249922,0,0);}
.ma3_c00032{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);}
.m44_c00032{transform:matrix(0.176114,0.001409,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176114,0.001409,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176114,0.001409,-0.002000,0.249992,0,0);}
.m20_c00032{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);}
.m6a_c00032{transform:matrix(0.177289,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177289,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177289,0.001950,-0.002750,0.249985,0,0);}
.m43_c00032{transform:matrix(0.177774,0.001422,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177774,0.001422,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177774,0.001422,-0.002000,0.249992,0,0);}
.m6e_c00032{transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);}
.m103_c00032{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);}
.m1_c00032{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);}
.mbe_c00032{transform:matrix(0.178389,0.004460,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178389,0.004460,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178389,0.004460,-0.006248,0.249922,0,0);}
.m1b_c00032{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);}
.m42_c00032{transform:matrix(0.178749,0.001430,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178749,0.001430,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178749,0.001430,-0.002000,0.249992,0,0);}
.m68_c00032{transform:matrix(0.179594,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179594,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179594,0.001976,-0.002750,0.249985,0,0);}
.m56_c00032{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);}
.m76_c00032{transform:matrix(0.180412,0.002165,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180412,0.002165,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180412,0.002165,-0.003000,0.249982,0,0);}
.m89_c00032{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);}
.m5c_c00032{transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);}
.m1d_c00032{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);}
.m102_c00032{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);}
.m5d_c00032{transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);}
.m10e_c00032{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);}
.m9c_c00032{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);}
.m45_c00032{transform:matrix(0.182984,0.001464,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182984,0.001464,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182984,0.001464,-0.002000,0.249992,0,0);}
.mf2_c00032{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);}
.m106_c00032{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);}
.m8a_c00032{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);}
.mef_c00032{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);}
.me8_c00032{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);}
.m5e_c00032{transform:matrix(0.184669,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184669,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184669,0.002031,-0.002750,0.249985,0,0);}
.m8d_c00032{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);}
.m4d_c00032{transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);}
.mb8_c00032{transform:matrix(0.185007,0.004625,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185007,0.004625,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185007,0.004625,-0.006248,0.249922,0,0);}
.m111_c00032{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);}
.m10c_c00032{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);}
.m11_c00032{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_c00032{transform:matrix(0.185637,0.004641,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185637,0.004641,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185637,0.004641,-0.006248,0.249922,0,0);}
.m74_c00032{transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);}
.m28_c00032{transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);}
.m8e_c00032{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);}
.m104_c00032{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);}
.m9e_c00032{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);}
.mf0_c00032{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);}
.md0_c00032{transform:matrix(0.188321,0.004708,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188321,0.004708,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188321,0.004708,-0.006248,0.249922,0,0);}
.m2_c00032{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);}
.m1c_c00032{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);}
.m3a_c00032{transform:matrix(0.189899,0.001519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189899,0.001519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189899,0.001519,-0.002000,0.249992,0,0);}
.mb9_c00032{transform:matrix(0.190001,0.004750,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190001,0.004750,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190001,0.004750,-0.006248,0.249922,0,0);}
.m57_c00032{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);}
.m109_c00032{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);}
.m6f_c00032{transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);}
.m59_c00032{transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);}
.mf6_c00032{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);}
.mf5_c00032{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);}
.mc0_c00032{transform:matrix(0.192145,0.004804,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192145,0.004804,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192145,0.004804,-0.006248,0.249922,0,0);}
.m18_c00032{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);}
.m75_c00032{transform:matrix(0.192511,0.002310,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192511,0.002310,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192511,0.002310,-0.003000,0.249982,0,0);}
.m23_c00032{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);}
.md1_c00032{transform:matrix(0.193804,0.004845,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193804,0.004845,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193804,0.004845,-0.006248,0.249922,0,0);}
.mb2_c00032{transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);}
.m73_c00032{transform:matrix(0.194996,0.002340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194996,0.002340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194996,0.002340,-0.003000,0.249982,0,0);}
.mfa_c00032{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);}
.mee_c00032{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);}
.me0_c00032{transform:matrix(0.195784,0.004895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195784,0.004895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195784,0.004895,-0.006248,0.249922,0,0);}
.mf3_c00032{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);}
.m108_c00032{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);}
.mf8_c00032{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);}
.mec_c00032{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);}
.m3e_c00032{transform:matrix(0.196749,0.001574,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196749,0.001574,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196749,0.001574,-0.002000,0.249992,0,0);}
.mce_c00032{transform:matrix(0.196983,0.004925,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196983,0.004925,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196983,0.004925,-0.006248,0.249922,0,0);}
.m8f_c00032{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);}
.me6_c00032{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);}
.m100_c00032{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);}
.m98_c00032{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);}
.md7_c00032{transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);}
.m2c_c00032{transform:matrix(0.197830,0.001978,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197830,0.001978,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197830,0.001978,-0.002500,0.249988,0,0);}
.m6b_c00032{transform:matrix(0.198108,0.002179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198108,0.002179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198108,0.002179,-0.002750,0.249985,0,0);}
.mfe_c00032{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.ma2_c00032{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);}
.m6_c00032{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);}
.md_c00032{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);}
.mcf_c00032{transform:matrix(0.198803,0.004970,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198803,0.004970,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198803,0.004970,-0.006248,0.249922,0,0);}
.me9_c00032{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);}
.m85_c00032{transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);}
.m4_c00032{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);}
.m8c_c00032{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);}
.m21_c00032{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);}
.mf7_c00032{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);}
.m3f_c00032{transform:matrix(0.201129,0.001609,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201129,0.001609,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201129,0.001609,-0.002000,0.249992,0,0);}
.m37_c00032{transform:matrix(0.201619,0.001613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201619,0.001613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201619,0.001613,-0.002000,0.249992,0,0);}
.m113_c00032{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);}
.mdc_c00032{transform:matrix(0.202007,0.005050,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202007,0.005050,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202007,0.005050,-0.006248,0.249922,0,0);}
.m66_c00032{transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);}
.m69_c00032{transform:matrix(0.202253,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202253,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202253,0.002225,-0.002750,0.249985,0,0);}
.md3_c00032{transform:matrix(0.202917,0.005073,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202917,0.005073,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202917,0.005073,-0.006248,0.249922,0,0);}
.m3c_c00032{transform:matrix(0.203303,0.001626,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203303,0.001626,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203303,0.001626,-0.002000,0.249992,0,0);}
.md2_c00032{transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);}
.m58_c00032{transform:matrix(0.203568,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203568,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203568,0.002239,-0.002750,0.249985,0,0);}
.mbd_c00032{transform:matrix(0.203681,0.005092,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203681,0.005092,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203681,0.005092,-0.006248,0.249922,0,0);}
.md5_c00032{transform:matrix(0.203926,0.005098,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203926,0.005098,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203926,0.005098,-0.006248,0.249922,0,0);}
.m24_c00032{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{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);}
.md8_c00032{transform:matrix(0.206001,0.005150,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206001,0.005150,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206001,0.005150,-0.006248,0.249922,0,0);}
.m65_c00032{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);}
.m22_c00032{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);}
.mde_c00032{transform:matrix(0.208400,0.005210,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208400,0.005210,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208400,0.005210,-0.006248,0.249922,0,0);}
.m61_c00032{transform:matrix(0.208437,0.002293,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208437,0.002293,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208437,0.002293,-0.002750,0.249985,0,0);}
.mc3_c00032{transform:matrix(0.209634,0.005241,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209634,0.005241,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209634,0.005241,-0.006248,0.249922,0,0);}
.mc4_c00032{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);}
.mff_c00032{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m29_c00032{transform:matrix(0.210304,0.002103,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210304,0.002103,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210304,0.002103,-0.002500,0.249988,0,0);}
.mca_c00032{transform:matrix(0.211264,0.005282,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211264,0.005282,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211264,0.005282,-0.006248,0.249922,0,0);}
.m7e_c00032{transform:matrix(0.211530,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211530,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211530,0.002538,-0.003000,0.249982,0,0);}
.m10f_c00032{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);}
.mab_c00032{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);}
.m54_c00032{transform:matrix(0.212387,0.002336,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212387,0.002336,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212387,0.002336,-0.002750,0.249985,0,0);}
.m107_c00032{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);}
.maa_c00032{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);}
.m88_c00032{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);}
.mbb_c00032{transform:matrix(0.213368,0.005334,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213368,0.005334,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213368,0.005334,-0.006248,0.249922,0,0);}
.mfb_c00032{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);}
.m7_c00032{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);}
.m35_c00032{transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);}
.m7d_c00032{transform:matrix(0.214430,0.002573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214430,0.002573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214430,0.002573,-0.003000,0.249982,0,0);}
.me4_c00032{transform:matrix(0.214453,0.005361,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214453,0.005361,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214453,0.005361,-0.006248,0.249922,0,0);}
.mfd_c00032{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);}
.m5b_c00032{transform:matrix(0.214732,0.002362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214732,0.002362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214732,0.002362,-0.002750,0.249985,0,0);}
.m55_c00032{transform:matrix(0.215607,0.002372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215607,0.002372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215607,0.002372,-0.002750,0.249985,0,0);}
.m1f_c00032{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);}
.m10_c00032{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);}
.m30_c00032{transform:matrix(0.216888,0.001735,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216888,0.001735,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216888,0.001735,-0.002000,0.249992,0,0);}
.m2b_c00032{transform:matrix(0.216984,0.002170,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216984,0.002170,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216984,0.002170,-0.002500,0.249988,0,0);}
.m80_c00032{transform:matrix(0.217549,0.002611,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217549,0.002611,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217549,0.002611,-0.003000,0.249982,0,0);}
.me3_c00032{transform:matrix(0.217877,0.005447,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217877,0.005447,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217877,0.005447,-0.006248,0.249922,0,0);}
.mdb_c00032{transform:matrix(0.217957,0.005449,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217957,0.005449,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217957,0.005449,-0.006248,0.249922,0,0);}
.mdf_c00032{transform:matrix(0.219067,0.005477,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219067,0.005477,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219067,0.005477,-0.006248,0.249922,0,0);}
.m33_c00032{transform:matrix(0.219248,0.001754,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219248,0.001754,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219248,0.001754,-0.002000,0.249992,0,0);}
.mcb_c00032{transform:matrix(0.219286,0.005482,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219286,0.005482,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219286,0.005482,-0.006248,0.249922,0,0);}
.mfc_c00032{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);}
.md9_c00032{transform:matrix(0.219721,0.005493,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219721,0.005493,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219721,0.005493,-0.006248,0.249922,0,0);}
.ma1_c00032{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);}
.m4f_c00032{transform:matrix(0.221113,0.001769,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221113,0.001769,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221113,0.001769,-0.002000,0.249992,0,0);}
.med_c00032{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00032{transform:matrix(0.222111,0.005553,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222111,0.005553,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222111,0.005553,-0.006248,0.249922,0,0);}
.m17_c00032{transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223365,0.000000,0.000000,0.250000,0,0);}
.m9a_c00032{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);}
.m10b_c00032{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);}
.mdd_c00032{transform:matrix(0.224425,0.005611,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224425,0.005611,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224425,0.005611,-0.006248,0.249922,0,0);}
.m27_c00032{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);}
.mf1_c00032{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);}
.m53_c00032{transform:matrix(0.229166,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229166,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229166,0.002521,-0.002750,0.249985,0,0);}
.mbc_c00032{transform:matrix(0.229343,0.005734,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229343,0.005734,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229343,0.005734,-0.006248,0.249922,0,0);}
.ma5_c00032{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);}
.m16_c00032{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{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);}
.m10d_c00032{transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);}
.mc9_c00032{transform:matrix(0.231703,0.005793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231703,0.005793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231703,0.005793,-0.006248,0.249922,0,0);}
.m40_c00032{transform:matrix(0.231778,0.001854,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231778,0.001854,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231778,0.001854,-0.002000,0.249992,0,0);}
.mcd_c00032{transform:matrix(0.231783,0.005795,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231783,0.005795,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231783,0.005795,-0.006248,0.249922,0,0);}
.m5a_c00032{transform:matrix(0.236256,0.002599,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236256,0.002599,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236256,0.002599,-0.002750,0.249985,0,0);}
.mad_c00032{transform:matrix(0.237531,0.005938,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237531,0.005938,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237531,0.005938,-0.006248,0.249922,0,0);}
.m95_c00032{transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);}
.mc5_c00032{transform:matrix(0.240795,0.006020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240795,0.006020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240795,0.006020,-0.006248,0.249922,0,0);}
.me5_c00032{transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);}
.m110_c00032{transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);}
.m31_c00032{transform:matrix(0.244342,0.001955,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244342,0.001955,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244342,0.001955,-0.002000,0.249992,0,0);}
.m4c_c00032{transform:matrix(0.244782,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244782,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244782,0.001958,-0.002000,0.249992,0,0);}
.mac_c00032{transform:matrix(0.245148,0.006129,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245148,0.006129,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245148,0.006129,-0.006248,0.249922,0,0);}
.m115_c00032{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);}
.me2_c00032{transform:matrix(0.247153,0.006179,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247153,0.006179,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247153,0.006179,-0.006248,0.249922,0,0);}
.m7b_c00032{transform:matrix(0.247167,0.002966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247167,0.002966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247167,0.002966,-0.003000,0.249982,0,0);}
.mb7_c00032{transform:matrix(0.248023,0.006201,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248023,0.006201,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248023,0.006201,-0.006248,0.249922,0,0);}
.m63_c00032{transform:matrix(0.249870,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249870,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249870,0.002749,-0.002750,0.249985,0,0);}
.ma4_c00032{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);}
.mb6_c00032{transform:matrix(0.253456,0.006336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253456,0.006336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253456,0.006336,-0.006248,0.249922,0,0);}
.mea_c00032{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);}
.mda_c00032{transform:matrix(0.259284,0.006482,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259284,0.006482,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259284,0.006482,-0.006248,0.249922,0,0);}
.m3b_c00032{transform:matrix(0.263397,0.002107,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263397,0.002107,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263397,0.002107,-0.002000,0.249992,0,0);}
.maf_c00032{transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);}
.m114_c00032{transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);}
.mb5_c00032{transform:matrix(0.269751,0.006744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269751,0.006744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269751,0.006744,-0.006248,0.249922,0,0);}
.m117_c00032{transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);}
.m91_c00032{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.m70_c00032{transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);}
.m87_c00032{transform:matrix(0.278690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278690,0.000000,0.000000,0.250000,0,0);}
.m119_c00032{transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283075,0.000000,0.000000,0.250000,0,0);}
.m52_c00032{transform:matrix(0.283706,0.002270,-0.002000,0.249992,0,0);-ms-transform:matrix(0.283706,0.002270,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.283706,0.002270,-0.002000,0.249992,0,0);}
.m101_c00032{transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291580,0.000000,0.000000,0.250000,0,0);}
.mc6_c00032{transform:matrix(0.294253,0.007356,-0.006248,0.249922,0,0);-ms-transform:matrix(0.294253,0.007356,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.294253,0.007356,-0.006248,0.249922,0,0);}
.mc2_c00032{transform:matrix(0.300121,0.007503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.300121,0.007503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.300121,0.007503,-0.006248,0.249922,0,0);}
.m64_c00032{transform:matrix(0.303862,0.003342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.303862,0.003342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.303862,0.003342,-0.002750,0.249985,0,0);}
.m60_c00032{transform:matrix(0.305597,0.003362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305597,0.003362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305597,0.003362,-0.002750,0.249985,0,0);}
.mb_c00032{transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);}
.m50_c00032{transform:matrix(0.315640,0.002525,-0.002000,0.249992,0,0);-ms-transform:matrix(0.315640,0.002525,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.315640,0.002525,-0.002000,0.249992,0,0);}
.m112_c00032{transform:matrix(0.319140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319140,0.000000,0.000000,0.250000,0,0);}
.m10a_c00032{transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);}
.mb1_c00032{transform:matrix(0.327203,0.008180,-0.006248,0.249922,0,0);-ms-transform:matrix(0.327203,0.008180,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.327203,0.008180,-0.006248,0.249922,0,0);}
.me_c00032{transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332080,0.000000,0.000000,0.250000,0,0);}
.m38_c00032{transform:matrix(0.338954,0.002712,-0.002000,0.249992,0,0);-ms-transform:matrix(0.338954,0.002712,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.338954,0.002712,-0.002000,0.249992,0,0);}
.m1e_c00032{transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);}
.m7c_c00032{transform:matrix(0.349230,0.004191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.349230,0.004191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.349230,0.004191,-0.003000,0.249982,0,0);}
.ma9_c00032{transform:matrix(0.351210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351210,0.000000,0.000000,0.250000,0,0);}
.m116_c00032{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);}
.m4a_c00032{transform:matrix(0.363798,0.002910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.363798,0.002910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.363798,0.002910,-0.002000,0.249992,0,0);}
.m4b_c00032{transform:matrix(0.365638,0.002925,-0.002000,0.249992,0,0);-ms-transform:matrix(0.365638,0.002925,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.365638,0.002925,-0.002000,0.249992,0,0);}
.m93_c00032{transform:matrix(0.372220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372220,0.000000,0.000000,0.250000,0,0);}
.m9f_c00032{transform:matrix(0.377885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377885,0.000000,0.000000,0.250000,0,0);}
.ma0_c00032{transform:matrix(0.404350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404350,0.000000,0.000000,0.250000,0,0);}
.m4e_c00032{transform:matrix(0.408057,0.003264,-0.002000,0.249992,0,0);-ms-transform:matrix(0.408057,0.003264,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.408057,0.003264,-0.002000,0.249992,0,0);}
.mc_c00032{transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.433035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433035,0.000000,0.000000,0.250000,0,0);}
.m118_c00032{transform:matrix(0.608900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00032{transform:matrix(4.293340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.293340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.293340,0.000000,0.000000,0.250000,0,0);}
.ma7_c00032{transform:matrix(9.597010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.597010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.597010,0.000000,0.000000,0.250000,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;}
.fs14_c00032{font-size:16.800000px;}
.fs0_c00032{font-size:22.050000px;}
.fs17_c00032{font-size:48.315091px;}
.fs1e_c00032{font-size:49.350000px;}
.fs19_c00032{font-size:49.365419px;}
.fs1d_c00032{font-size:50.400000px;}
.fs18_c00032{font-size:50.415748px;}
.fs16_c00032{font-size:51.466076px;}
.fs1f_c00032{font-size:52.500000px;}
.fs1a_c00032{font-size:52.516404px;}
.fs1c_c00032{font-size:53.550000px;}
.fs1b_c00032{font-size:53.566732px;}
.fs20_c00032{font-size:54.600000px;}
.fsa_c00032{font-size:63.003811px;}
.fs12_c00032{font-size:65.100000px;}
.fs13_c00032{font-size:66.150000px;}
.fsd_c00032{font-size:68.254129px;}
.fs11_c00032{font-size:70.350000px;}
.fse_c00032{font-size:70.355065px;}
.fs5_c00032{font-size:71.400000px;}
.fs8_c00032{font-size:71.402285px;}
.fsc_c00032{font-size:71.404320px;}
.fs3_c00032{font-size:72.450000px;}
.fs7_c00032{font-size:72.452318px;}
.fsb_c00032{font-size:72.454383px;}
.fsf_c00032{font-size:72.455216px;}
.fs2_c00032{font-size:73.500000px;}
.fs1_c00032{font-size:74.550000px;}
.fs6_c00032{font-size:74.553727px;}
.fs4_c00032{font-size:75.600000px;}
.fs9_c00032{font-size:80.852587px;}
.fs10_c00032{font-size:108.150000px;}
.fs15_c00032{font-size:126.000000px;}
.y0_c00032{bottom:0.000000px;}
.yc4_c00032{bottom:201.807000px;}
.ybc_c00032{bottom:202.578713px;}
.ybb_c00032{bottom:203.033063px;}
.yba_c00032{bottom:204.069450px;}
.yb9_c00032{bottom:204.408300px;}
.yb8_c00032{bottom:205.988550px;}
.yb7_c00032{bottom:206.787450px;}
.yc3_c00032{bottom:219.141000px;}
.yb6_c00032{bottom:220.219763px;}
.yb5_c00032{bottom:221.705100px;}
.yb4_c00032{bottom:222.300825px;}
.yb3_c00032{bottom:223.326563px;}
.yb2_c00032{bottom:223.618575px;}
.yb1_c00032{bottom:224.341650px;}
.yc2_c00032{bottom:237.066000px;}
.yb0_c00032{bottom:238.777612px;}
.yaf_c00032{bottom:239.186362px;}
.yae_c00032{bottom:239.730000px;}
.yad_c00032{bottom:240.537600px;}
.yac_c00032{bottom:241.002187px;}
.yab_c00032{bottom:241.373588px;}
.yaa_c00032{bottom:242.168212px;}
.yc1_c00032{bottom:255.058500px;}
.ya9_c00032{bottom:256.399725px;}
.ya8_c00032{bottom:256.835362px;}
.ya7_c00032{bottom:257.322187px;}
.ya6_c00032{bottom:258.103912px;}
.ya5_c00032{bottom:259.237012px;}
.ya4_c00032{bottom:259.377900px;}
.ya3_c00032{bottom:260.264288px;}
.yc0_c00032{bottom:272.530500px;}
.ya2_c00032{bottom:274.070325px;}
.ya1_c00032{bottom:275.448225px;}
.ya0_c00032{bottom:275.772263px;}
.y9f_c00032{bottom:276.160912px;}
.y9e_c00032{bottom:277.138163px;}
.y9d_c00032{bottom:277.462500px;}
.y9c_c00032{bottom:278.088263px;}
.ybf_c00032{bottom:290.127000px;}
.y9b_c00032{bottom:291.982912px;}
.y9a_c00032{bottom:292.481438px;}
.y99_c00032{bottom:293.059875px;}
.y98_c00032{bottom:293.803575px;}
.y97_c00032{bottom:294.763200px;}
.y96_c00032{bottom:295.373775px;}
.ybe_c00032{bottom:308.016000px;}
.y95_c00032{bottom:309.180525px;}
.y94_c00032{bottom:309.809025px;}
.y93_c00032{bottom:310.285200px;}
.y92_c00032{bottom:310.762425px;}
.y91_c00032{bottom:311.357287px;}
.y90_c00032{bottom:311.924287px;}
.y8f_c00032{bottom:312.389738px;}
.y8e_c00032{bottom:312.753075px;}
.y8d_c00032{bottom:312.969075px;}
.y8c_c00032{bottom:313.739438px;}
.ybd_c00032{bottom:326.035500px;}
.y8b_c00032{bottom:326.204887px;}
.y8a_c00032{bottom:327.303112px;}
.y89_c00032{bottom:327.811388px;}
.y88_c00032{bottom:328.151325px;}
.y87_c00032{bottom:329.147812px;}
.y86_c00032{bottom:330.113438px;}
.y85_c00032{bottom:330.802388px;}
.y84_c00032{bottom:331.296000px;}
.y82_c00032{bottom:344.856000px;}
.y81_c00032{bottom:347.235000px;}
.y80_c00032{bottom:363.966000px;}
.y7f_c00032{bottom:382.927500px;}
.y7e_c00032{bottom:383.475000px;}
.y7d_c00032{bottom:385.587000px;}
.y7c_c00032{bottom:405.994500px;}
.y7b_c00032{bottom:406.278000px;}
.y7a_c00032{bottom:406.599000px;}
.y79_c00032{bottom:407.071500px;}
.y78_c00032{bottom:407.658000px;}
.y77_c00032{bottom:408.220500px;}
.y76_c00032{bottom:408.820500px;}
.y75_c00032{bottom:409.350000px;}
.y74_c00032{bottom:409.974000px;}
.y73_c00032{bottom:410.401500px;}
.y72_c00032{bottom:427.128000px;}
.y71_c00032{bottom:431.149500px;}
.y70_c00032{bottom:432.003000px;}
.y6f_c00032{bottom:451.258500px;}
.y6e_c00032{bottom:451.962000px;}
.y6d_c00032{bottom:452.325000px;}
.y6c_c00032{bottom:453.001500px;}
.y6b_c00032{bottom:453.390000px;}
.y6a_c00032{bottom:453.715500px;}
.y69_c00032{bottom:454.339500px;}
.y68_c00032{bottom:454.956000px;}
.y67_c00032{bottom:455.731500px;}
.y66_c00032{bottom:456.301500px;}
.y65_c00032{bottom:476.434500px;}
.y64_c00032{bottom:497.122218px;}
.y63_c00032{bottom:497.648508px;}
.y62_c00032{bottom:498.110922px;}
.y61_c00032{bottom:498.516174px;}
.y60_c00032{bottom:499.055148px;}
.y5f_c00032{bottom:499.685706px;}
.y5e_c00032{bottom:500.533212px;}
.y5d_c00032{bottom:500.962062px;}
.y5c_c00032{bottom:501.391110px;}
.y5b_c00032{bottom:519.011268px;}
.y5a_c00032{bottom:519.408474px;}
.y59_c00032{bottom:519.681084px;}
.y58_c00032{bottom:520.316304px;}
.y57_c00032{bottom:520.666152px;}
.y56_c00032{bottom:521.005776px;}
.y55_c00032{bottom:521.904084px;}
.y54_c00032{bottom:522.578076px;}
.y53_c00032{bottom:522.944124px;}
.y52_c00032{bottom:523.261500px;}
.y51_c00032{bottom:544.706022px;}
.y4f_c00032{bottom:544.706269px;}
.y50_c00032{bottom:544.706572px;}
.y4d_c00032{bottom:544.706880px;}
.y4e_c00032{bottom:544.706973px;}
.y4a_c00032{bottom:544.707534px;}
.y4c_c00032{bottom:544.707554px;}
.y4b_c00032{bottom:544.707717px;}
.y49_c00032{bottom:566.069949px;}
.y48_c00032{bottom:566.415678px;}
.y47_c00032{bottom:567.350044px;}
.y46_c00032{bottom:567.761636px;}
.y45_c00032{bottom:568.360552px;}
.y44_c00032{bottom:569.429054px;}
.y43_c00032{bottom:588.245394px;}
.y42_c00032{bottom:588.701812px;}
.y41_c00032{bottom:589.259394px;}
.y40_c00032{bottom:589.863927px;}
.y3f_c00032{bottom:590.154958px;}
.y3e_c00032{bottom:590.800966px;}
.y3d_c00032{bottom:591.313657px;}
.y3c_c00032{bottom:591.849957px;}
.y3b_c00032{bottom:592.170404px;}
.y3a_c00032{bottom:592.650728px;}
.y39_c00032{bottom:611.052529px;}
.y38_c00032{bottom:611.477025px;}
.y37_c00032{bottom:612.258778px;}
.y36_c00032{bottom:612.736437px;}
.y35_c00032{bottom:612.971513px;}
.y34_c00032{bottom:613.351161px;}
.y33_c00032{bottom:613.951579px;}
.y32_c00032{bottom:614.251500px;}
.y31_c00032{bottom:676.931112px;}
.y30_c00032{bottom:677.382372px;}
.y2f_c00032{bottom:677.588460px;}
.y2e_c00032{bottom:678.045636px;}
.y2d_c00032{bottom:678.251628px;}
.y2c_c00032{bottom:678.372504px;}
.y2b_c00032{bottom:678.840780px;}
.y2a_c00032{bottom:679.651836px;}
.y29_c00032{bottom:679.979520px;}
.y28_c00032{bottom:680.129784px;}
.y21_c00032{bottom:701.123148px;}
.y20_c00032{bottom:701.123496px;}
.y22_c00032{bottom:701.123640px;}
.y23_c00032{bottom:701.124360px;}
.y27_c00032{bottom:701.124408px;}
.y26_c00032{bottom:701.124576px;}
.y24_c00032{bottom:701.124612px;}
.y25_c00032{bottom:701.125284px;}
.y1f_c00032{bottom:722.189604px;}
.y1e_c00032{bottom:722.848368px;}
.y1d_c00032{bottom:723.326028px;}
.y1c_c00032{bottom:723.619536px;}
.y1b_c00032{bottom:724.140168px;}
.y1a_c00032{bottom:724.440864px;}
.y19_c00032{bottom:724.818036px;}
.y18_c00032{bottom:725.490384px;}
.y17_c00032{bottom:745.266552px;}
.y16_c00032{bottom:745.560012px;}
.y15_c00032{bottom:745.737132px;}
.y14_c00032{bottom:746.061120px;}
.y13_c00032{bottom:746.659512px;}
.y12_c00032{bottom:747.160584px;}
.y11_c00032{bottom:747.233472px;}
.y10_c00032{bottom:747.787140px;}
.yf_c00032{bottom:748.171500px;}
.ye_c00032{bottom:769.082865px;}
.yd_c00032{bottom:769.376685px;}
.yc_c00032{bottom:769.701180px;}
.yb_c00032{bottom:769.997685px;}
.ya_c00032{bottom:770.214105px;}
.y9_c00032{bottom:770.711070px;}
.y8_c00032{bottom:771.329205px;}
.y7_c00032{bottom:771.661500px;}
.y6_c00032{bottom:792.660000px;}
.y5_c00032{bottom:815.326500px;}
.y4_c00032{bottom:838.072500px;}
.y3_c00032{bottom:861.730500px;}
.y2_c00032{bottom:883.513500px;}
.y83_c00032{bottom:916.587000px;}
.y1_c00032{bottom:952.830000px;}
.h16_c00032{height:16.800000px;}
.h2_c00032{height:22.050000px;}
.h19_c00032{height:48.315091px;}
.h20_c00032{height:49.350000px;}
.h1b_c00032{height:49.365419px;}
.h1f_c00032{height:50.400000px;}
.h1a_c00032{height:50.415748px;}
.h18_c00032{height:51.466076px;}
.h21_c00032{height:52.500000px;}
.h1c_c00032{height:52.516404px;}
.h1e_c00032{height:53.550000px;}
.h1d_c00032{height:53.566732px;}
.h22_c00032{height:54.600000px;}
.hc_c00032{height:63.003811px;}
.h14_c00032{height:65.100000px;}
.h15_c00032{height:66.150000px;}
.hf_c00032{height:68.254129px;}
.h13_c00032{height:70.350000px;}
.h10_c00032{height:70.355065px;}
.h7_c00032{height:71.400000px;}
.ha_c00032{height:71.402285px;}
.he_c00032{height:71.404320px;}
.h5_c00032{height:72.450000px;}
.h9_c00032{height:72.452318px;}
.hd_c00032{height:72.454383px;}
.h11_c00032{height:72.455216px;}
.h4_c00032{height:73.500000px;}
.h3_c00032{height:74.550000px;}
.h8_c00032{height:74.553727px;}
.h6_c00032{height:75.600000px;}
.hb_c00032{height:80.852587px;}
.h12_c00032{height:108.150000px;}
.h17_c00032{height:126.000000px;}
.h1_c00032{height:1080.000000px;}
.h0_c00032{height:1080.270000px;}
.w1_c00032{width:768.000000px;}
.w0_c00032{width:768.150000px;}
.x0_c00032{left:0.000000px;}
.x7d_c00032{left:101.564250px;}
.x82_c00032{left:104.873963px;}
.x74_c00032{left:107.415000px;}
.x41_c00032{left:117.081264px;}
.x77_c00032{left:118.551000px;}
.x16_c00032{left:131.490000px;}
.x42_c00032{left:133.801632px;}
.x84_c00032{left:135.636675px;}
.x83_c00032{left:136.981763px;}
.x78_c00032{left:138.295500px;}
.x89_c00032{left:140.171250px;}
.x70_c00032{left:141.480000px;}
.x5f_c00032{left:142.631970px;}
.x3b_c00032{left:143.911920px;}
.xc_c00032{left:144.990000px;}
.x2_c00032{left:146.340000px;}
.x7e_c00032{left:148.583475px;}
.x87_c00032{left:150.638213px;}
.x85_c00032{left:151.852200px;}
.x8a_c00032{left:154.793588px;}
.x88_c00032{left:158.074838px;}
.x2c_c00032{left:162.976500px;}
.x79_c00032{left:165.853500px;}
.x3c_c00032{left:169.832076px;}
.x1e_c00032{left:171.180000px;}
.x67_c00032{left:172.609500px;}
.x25_c00032{left:178.074000px;}
.x3_c00032{left:179.820000px;}
.x4b_c00032{left:182.356740px;}
.xd_c00032{left:183.870000px;}
.x75_c00032{left:187.110000px;}
.x71_c00032{left:189.270000px;}
.xa_c00032{left:194.670000px;}
.x55_c00032{left:199.808325px;}
.x7a_c00032{left:204.478500px;}
.x4c_c00032{left:206.987696px;}
.xe_c00032{left:209.790000px;}
.x2d_c00032{left:211.021500px;}
.x1f_c00032{left:212.760000px;}
.x7f_c00032{left:215.041612px;}
.x68_c00032{left:217.207500px;}
.x62_c00032{left:219.510000px;}
.x8d_c00032{left:223.194150px;}
.x49_c00032{left:226.162500px;}
.x34_c00032{left:229.164420px;}
.x72_c00032{left:230.310000px;}
.x53_c00032{left:232.041875px;}
.x8b_c00032{left:235.862212px;}
.xf_c00032{left:237.330000px;}
.x26_c00032{left:239.887500px;}
.x80_c00032{left:243.398962px;}
.x4_c00032{left:244.620000px;}
.x56_c00032{left:245.980902px;}
.x4d_c00032{left:248.241288px;}
.x3d_c00032{left:252.185856px;}
.x69_c00032{left:255.019500px;}
.x59_c00032{left:256.605000px;}
.x1_c00032{left:258.120000px;}
.x43_c00032{left:260.393124px;}
.x73_c00032{left:267.030000px;}
.x10_c00032{left:271.080000px;}
.x17_c00032{left:273.510000px;}
.x20_c00032{left:274.860000px;}
.x35_c00032{left:276.310920px;}
.x7b_c00032{left:278.266500px;}
.x2e_c00032{left:280.230000px;}
.x5_c00032{left:282.960000px;}
.x6d_c00032{left:283.984500px;}
.xb_c00032{left:285.390000px;}
.x4e_c00032{left:287.621414px;}
.x27_c00032{left:289.584000px;}
.x8e_c00032{left:291.952238px;}
.x65_c00032{left:295.966500px;}
.x60_c00032{left:298.414872px;}
.x11_c00032{left:302.670000px;}
.x86_c00032{left:305.304900px;}
.x57_c00032{left:307.543844px;}
.x8c_c00032{left:310.104975px;}
.x28_c00032{left:311.226000px;}
.x44_c00032{left:312.364704px;}
.x36_c00032{left:313.897920px;}
.x3e_c00032{left:315.908436px;}
.x81_c00032{left:318.742500px;}
.x7c_c00032{left:322.195500px;}
.x45_c00032{left:325.786596px;}
.x21_c00032{left:328.320000px;}
.x12_c00032{left:329.670000px;}
.x5a_c00032{left:331.464000px;}
.x18_c00032{left:333.180000px;}
.x6_c00032{left:334.260000px;}
.x4f_c00032{left:337.348324px;}
.x29_c00032{left:340.876500px;}
.xa6_c00032{left:348.300000px;}
.x3f_c00032{left:349.389084px;}
.x58_c00032{left:350.476041px;}
.x2f_c00032{left:351.975000px;}
.x7_c00032{left:354.240000px;}
.x19_c00032{left:356.940000px;}
.x13_c00032{left:360.180000px;}
.x61_c00032{left:361.348104px;}
.x22_c00032{left:362.880000px;}
.xa2_c00032{left:363.960000px;}
.x6e_c00032{left:365.241000px;}
.x91_c00032{left:369.360000px;}
.x2a_c00032{left:373.326000px;}
.x37_c00032{left:378.976920px;}
.x6a_c00032{left:379.980000px;}
.x8_c00032{left:385.020000px;}
.x6f_c00032{left:386.293500px;}
.x5b_c00032{left:388.920000px;}
.x23_c00032{left:392.040000px;}
.x54_c00032{left:394.119593px;}
.x1a_c00032{left:396.360000px;}
.x96_c00032{left:397.710000px;}
.x46_c00032{left:399.494508px;}
.x92_c00032{left:401.490000px;}
.x2b_c00032{left:402.708000px;}
.x50_c00032{left:406.216307px;}
.x76_c00032{left:409.320000px;}
.x14_c00032{left:413.100000px;}
.x38_c00032{left:415.665420px;}
.xa7_c00032{left:418.230000px;}
.x1b_c00032{left:419.850000px;}
.x40_c00032{left:420.940656px;}
.x47_c00032{left:422.442828px;}
.xa1_c00032{left:424.710000px;}
.x30_c00032{left:426.774000px;}
.x8f_c00032{left:429.300000px;}
.x24_c00032{left:432.810000px;}
.x4a_c00032{left:435.129000px;}
.x6b_c00032{left:436.689000px;}
.x93_c00032{left:439.560000px;}
.x5c_c00032{left:441.855000px;}
.x97_c00032{left:446.580000px;}
.x9b_c00032{left:447.660000px;}
.x51_c00032{left:449.131866px;}
.x63_c00032{left:453.420000px;}
.x1c_c00032{left:454.950000px;}
.x6c_c00032{left:456.927000px;}
.x9_c00032{left:459.540000px;}
.x5d_c00032{left:464.572500px;}
.x31_c00032{left:467.272500px;}
.xa8_c00032{left:468.990000px;}
.x9e_c00032{left:470.880000px;}
.x48_c00032{left:472.662432px;}
.x94_c00032{left:473.850000px;}
.x39_c00032{left:475.372920px;}
.x15_c00032{left:480.060000px;}
.xa3_c00032{left:481.680000px;}
.x52_c00032{left:484.214590px;}
.x32_c00032{left:489.412500px;}
.x5e_c00032{left:497.673000px;}
.x98_c00032{left:501.930000px;}
.x64_c00032{left:503.634000px;}
.x1d_c00032{left:505.980000px;}
.xa4_c00032{left:507.600000px;}
.xa9_c00032{left:513.540000px;}
.x9c_c00032{left:517.320000px;}
.x99_c00032{left:521.910000px;}
.x33_c00032{left:526.095000px;}
.xa5_c00032{left:527.580000px;}
.x66_c00032{left:532.497000px;}
.x95_c00032{left:538.380000px;}
.x9f_c00032{left:539.730000px;}
.x9d_c00032{left:554.040000px;}
.x3a_c00032{left:557.718420px;}
.x9a_c00032{left:562.680000px;}
.x90_c00032{left:568.890000px;}
.xa0_c00032{left:591.030000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs14_c00032{font-size:14.933333pt;}
.fs0_c00032{font-size:19.600000pt;}
.fs17_c00032{font-size:42.946748pt;}
.fs1e_c00032{font-size:43.866667pt;}
.fs19_c00032{font-size:43.880373pt;}
.fs1d_c00032{font-size:44.800000pt;}
.fs18_c00032{font-size:44.813998pt;}
.fs16_c00032{font-size:45.747623pt;}
.fs1f_c00032{font-size:46.666667pt;}
.fs1a_c00032{font-size:46.681248pt;}
.fs1c_c00032{font-size:47.600000pt;}
.fs1b_c00032{font-size:47.614873pt;}
.fs20_c00032{font-size:48.533333pt;}
.fsa_c00032{font-size:56.003388pt;}
.fs12_c00032{font-size:57.866667pt;}
.fs13_c00032{font-size:58.800000pt;}
.fsd_c00032{font-size:60.670337pt;}
.fs11_c00032{font-size:62.533333pt;}
.fse_c00032{font-size:62.537836pt;}
.fs5_c00032{font-size:63.466667pt;}
.fs8_c00032{font-size:63.468698pt;}
.fsc_c00032{font-size:63.470506pt;}
.fs3_c00032{font-size:64.400000pt;}
.fs7_c00032{font-size:64.402061pt;}
.fsb_c00032{font-size:64.403896pt;}
.fsf_c00032{font-size:64.404637pt;}
.fs2_c00032{font-size:65.333333pt;}
.fs1_c00032{font-size:66.266667pt;}
.fs6_c00032{font-size:66.269980pt;}
.fs4_c00032{font-size:67.200000pt;}
.fs9_c00032{font-size:71.868966pt;}
.fs10_c00032{font-size:96.133333pt;}
.fs15_c00032{font-size:112.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.yc4_c00032{bottom:179.384000pt;}
.ybc_c00032{bottom:180.069967pt;}
.ybb_c00032{bottom:180.473833pt;}
.yba_c00032{bottom:181.395067pt;}
.yb9_c00032{bottom:181.696267pt;}
.yb8_c00032{bottom:183.100933pt;}
.yb7_c00032{bottom:183.811067pt;}
.yc3_c00032{bottom:194.792000pt;}
.yb6_c00032{bottom:195.750900pt;}
.yb5_c00032{bottom:197.071200pt;}
.yb4_c00032{bottom:197.600733pt;}
.yb3_c00032{bottom:198.512500pt;}
.yb2_c00032{bottom:198.772067pt;}
.yb1_c00032{bottom:199.414800pt;}
.yc2_c00032{bottom:210.725333pt;}
.yb0_c00032{bottom:212.246767pt;}
.yaf_c00032{bottom:212.610100pt;}
.yae_c00032{bottom:213.093333pt;}
.yad_c00032{bottom:213.811200pt;}
.yac_c00032{bottom:214.224167pt;}
.yab_c00032{bottom:214.554300pt;}
.yaa_c00032{bottom:215.260633pt;}
.yc1_c00032{bottom:226.718667pt;}
.ya9_c00032{bottom:227.910867pt;}
.ya8_c00032{bottom:228.298100pt;}
.ya7_c00032{bottom:228.730833pt;}
.ya6_c00032{bottom:229.425700pt;}
.ya5_c00032{bottom:230.432900pt;}
.ya4_c00032{bottom:230.558133pt;}
.ya3_c00032{bottom:231.346033pt;}
.yc0_c00032{bottom:242.249333pt;}
.ya2_c00032{bottom:243.618067pt;}
.ya1_c00032{bottom:244.842867pt;}
.ya0_c00032{bottom:245.130900pt;}
.y9f_c00032{bottom:245.476367pt;}
.y9e_c00032{bottom:246.345033pt;}
.y9d_c00032{bottom:246.633333pt;}
.y9c_c00032{bottom:247.189567pt;}
.ybf_c00032{bottom:257.890667pt;}
.y9b_c00032{bottom:259.540367pt;}
.y9a_c00032{bottom:259.983500pt;}
.y99_c00032{bottom:260.497667pt;}
.y98_c00032{bottom:261.158733pt;}
.y97_c00032{bottom:262.011733pt;}
.y96_c00032{bottom:262.554467pt;}
.ybe_c00032{bottom:273.792000pt;}
.y95_c00032{bottom:274.827133pt;}
.y94_c00032{bottom:275.385800pt;}
.y93_c00032{bottom:275.809067pt;}
.y92_c00032{bottom:276.233267pt;}
.y91_c00032{bottom:276.762033pt;}
.y90_c00032{bottom:277.266033pt;}
.y8f_c00032{bottom:277.679767pt;}
.y8e_c00032{bottom:278.002733pt;}
.y8d_c00032{bottom:278.194733pt;}
.y8c_c00032{bottom:278.879500pt;}
.ybd_c00032{bottom:289.809333pt;}
.y8b_c00032{bottom:289.959900pt;}
.y8a_c00032{bottom:290.936100pt;}
.y89_c00032{bottom:291.387900pt;}
.y88_c00032{bottom:291.690067pt;}
.y87_c00032{bottom:292.575833pt;}
.y86_c00032{bottom:293.434167pt;}
.y85_c00032{bottom:294.046567pt;}
.y84_c00032{bottom:294.485333pt;}
.y82_c00032{bottom:306.538667pt;}
.y81_c00032{bottom:308.653333pt;}
.y80_c00032{bottom:323.525333pt;}
.y7f_c00032{bottom:340.380000pt;}
.y7e_c00032{bottom:340.866667pt;}
.y7d_c00032{bottom:342.744000pt;}
.y7c_c00032{bottom:360.884000pt;}
.y7b_c00032{bottom:361.136000pt;}
.y7a_c00032{bottom:361.421333pt;}
.y79_c00032{bottom:361.841333pt;}
.y78_c00032{bottom:362.362667pt;}
.y77_c00032{bottom:362.862667pt;}
.y76_c00032{bottom:363.396000pt;}
.y75_c00032{bottom:363.866667pt;}
.y74_c00032{bottom:364.421333pt;}
.y73_c00032{bottom:364.801333pt;}
.y72_c00032{bottom:379.669333pt;}
.y71_c00032{bottom:383.244000pt;}
.y70_c00032{bottom:384.002667pt;}
.y6f_c00032{bottom:401.118667pt;}
.y6e_c00032{bottom:401.744000pt;}
.y6d_c00032{bottom:402.066667pt;}
.y6c_c00032{bottom:402.668000pt;}
.y6b_c00032{bottom:403.013333pt;}
.y6a_c00032{bottom:403.302667pt;}
.y69_c00032{bottom:403.857333pt;}
.y68_c00032{bottom:404.405333pt;}
.y67_c00032{bottom:405.094667pt;}
.y66_c00032{bottom:405.601333pt;}
.y65_c00032{bottom:423.497333pt;}
.y64_c00032{bottom:441.886416pt;}
.y63_c00032{bottom:442.354229pt;}
.y62_c00032{bottom:442.765264pt;}
.y61_c00032{bottom:443.125488pt;}
.y60_c00032{bottom:443.604576pt;}
.y5f_c00032{bottom:444.165072pt;}
.y5e_c00032{bottom:444.918411pt;}
.y5d_c00032{bottom:445.299611pt;}
.y5c_c00032{bottom:445.680987pt;}
.y5b_c00032{bottom:461.343349pt;}
.y5a_c00032{bottom:461.696421pt;}
.y59_c00032{bottom:461.938741pt;}
.y58_c00032{bottom:462.503381pt;}
.y57_c00032{bottom:462.814357pt;}
.y56_c00032{bottom:463.116245pt;}
.y55_c00032{bottom:463.914741pt;}
.y54_c00032{bottom:464.513845pt;}
.y53_c00032{bottom:464.839221pt;}
.y52_c00032{bottom:465.121333pt;}
.y51_c00032{bottom:484.183131pt;}
.y4f_c00032{bottom:484.183351pt;}
.y50_c00032{bottom:484.183620pt;}
.y4d_c00032{bottom:484.183893pt;}
.y4e_c00032{bottom:484.183976pt;}
.y4a_c00032{bottom:484.184475pt;}
.y4c_c00032{bottom:484.184492pt;}
.y4b_c00032{bottom:484.184637pt;}
.y49_c00032{bottom:503.173288pt;}
.y48_c00032{bottom:503.480603pt;}
.y47_c00032{bottom:504.311151pt;}
.y46_c00032{bottom:504.677009pt;}
.y45_c00032{bottom:505.209380pt;}
.y44_c00032{bottom:506.159159pt;}
.y43_c00032{bottom:522.884795pt;}
.y42_c00032{bottom:523.290500pt;}
.y41_c00032{bottom:523.786128pt;}
.y40_c00032{bottom:524.323491pt;}
.y3f_c00032{bottom:524.582185pt;}
.y3e_c00032{bottom:525.156415pt;}
.y3d_c00032{bottom:525.612140pt;}
.y3c_c00032{bottom:526.088851pt;}
.y3b_c00032{bottom:526.373692pt;}
.y3a_c00032{bottom:526.800647pt;}
.y39_c00032{bottom:543.157804pt;}
.y38_c00032{bottom:543.535133pt;}
.y37_c00032{bottom:544.230025pt;}
.y36_c00032{bottom:544.654611pt;}
.y35_c00032{bottom:544.863567pt;}
.y34_c00032{bottom:545.201032pt;}
.y33_c00032{bottom:545.734737pt;}
.y32_c00032{bottom:546.001333pt;}
.y31_c00032{bottom:601.716544pt;}
.y30_c00032{bottom:602.117664pt;}
.y2f_c00032{bottom:602.300853pt;}
.y2e_c00032{bottom:602.707232pt;}
.y2d_c00032{bottom:602.890336pt;}
.y2c_c00032{bottom:602.997781pt;}
.y2b_c00032{bottom:603.414027pt;}
.y2a_c00032{bottom:604.134965pt;}
.y29_c00032{bottom:604.426240pt;}
.y28_c00032{bottom:604.559808pt;}
.y21_c00032{bottom:623.220576pt;}
.y20_c00032{bottom:623.220885pt;}
.y22_c00032{bottom:623.221013pt;}
.y23_c00032{bottom:623.221653pt;}
.y27_c00032{bottom:623.221696pt;}
.y26_c00032{bottom:623.221845pt;}
.y24_c00032{bottom:623.221877pt;}
.y25_c00032{bottom:623.222475pt;}
.y1f_c00032{bottom:641.946315pt;}
.y1e_c00032{bottom:642.531883pt;}
.y1d_c00032{bottom:642.956469pt;}
.y1c_c00032{bottom:643.217365pt;}
.y1b_c00032{bottom:643.680149pt;}
.y1a_c00032{bottom:643.947435pt;}
.y19_c00032{bottom:644.282699pt;}
.y18_c00032{bottom:644.880341pt;}
.y17_c00032{bottom:662.459157pt;}
.y16_c00032{bottom:662.720011pt;}
.y15_c00032{bottom:662.877451pt;}
.y14_c00032{bottom:663.165440pt;}
.y13_c00032{bottom:663.697344pt;}
.y12_c00032{bottom:664.142741pt;}
.y11_c00032{bottom:664.207531pt;}
.y10_c00032{bottom:664.699680pt;}
.yf_c00032{bottom:665.041333pt;}
.ye_c00032{bottom:683.629213pt;}
.yd_c00032{bottom:683.890387pt;}
.yc_c00032{bottom:684.178827pt;}
.yb_c00032{bottom:684.442387pt;}
.ya_c00032{bottom:684.634760pt;}
.y9_c00032{bottom:685.076507pt;}
.y8_c00032{bottom:685.625960pt;}
.y7_c00032{bottom:685.921333pt;}
.y6_c00032{bottom:704.586667pt;}
.y5_c00032{bottom:724.734667pt;}
.y4_c00032{bottom:744.953333pt;}
.y3_c00032{bottom:765.982667pt;}
.y2_c00032{bottom:785.345333pt;}
.y83_c00032{bottom:814.744000pt;}
.y1_c00032{bottom:846.960000pt;}
.h16_c00032{height:14.933333pt;}
.h2_c00032{height:19.600000pt;}
.h19_c00032{height:42.946748pt;}
.h20_c00032{height:43.866667pt;}
.h1b_c00032{height:43.880373pt;}
.h1f_c00032{height:44.800000pt;}
.h1a_c00032{height:44.813998pt;}
.h18_c00032{height:45.747623pt;}
.h21_c00032{height:46.666667pt;}
.h1c_c00032{height:46.681248pt;}
.h1e_c00032{height:47.600000pt;}
.h1d_c00032{height:47.614873pt;}
.h22_c00032{height:48.533333pt;}
.hc_c00032{height:56.003388pt;}
.h14_c00032{height:57.866667pt;}
.h15_c00032{height:58.800000pt;}
.hf_c00032{height:60.670337pt;}
.h13_c00032{height:62.533333pt;}
.h10_c00032{height:62.537836pt;}
.h7_c00032{height:63.466667pt;}
.ha_c00032{height:63.468698pt;}
.he_c00032{height:63.470506pt;}
.h5_c00032{height:64.400000pt;}
.h9_c00032{height:64.402061pt;}
.hd_c00032{height:64.403896pt;}
.h11_c00032{height:64.404637pt;}
.h4_c00032{height:65.333333pt;}
.h3_c00032{height:66.266667pt;}
.h8_c00032{height:66.269980pt;}
.h6_c00032{height:67.200000pt;}
.hb_c00032{height:71.868966pt;}
.h12_c00032{height:96.133333pt;}
.h17_c00032{height:112.000000pt;}
.h1_c00032{height:960.000000pt;}
.h0_c00032{height:960.240000pt;}
.w1_c00032{width:682.666667pt;}
.w0_c00032{width:682.800000pt;}
.x0_c00032{left:0.000000pt;}
.x7d_c00032{left:90.279333pt;}
.x82_c00032{left:93.221300pt;}
.x74_c00032{left:95.480000pt;}
.x41_c00032{left:104.072235pt;}
.x77_c00032{left:105.378667pt;}
.x16_c00032{left:116.880000pt;}
.x42_c00032{left:118.934784pt;}
.x84_c00032{left:120.565933pt;}
.x83_c00032{left:121.761567pt;}
.x78_c00032{left:122.929333pt;}
.x89_c00032{left:124.596667pt;}
.x70_c00032{left:125.760000pt;}
.x5f_c00032{left:126.783973pt;}
.x3b_c00032{left:127.921707pt;}
.xc_c00032{left:128.880000pt;}
.x2_c00032{left:130.080000pt;}
.x7e_c00032{left:132.074200pt;}
.x87_c00032{left:133.900633pt;}
.x85_c00032{left:134.979733pt;}
.x8a_c00032{left:137.594300pt;}
.x88_c00032{left:140.510967pt;}
.x2c_c00032{left:144.868000pt;}
.x79_c00032{left:147.425333pt;}
.x3c_c00032{left:150.961845pt;}
.x1e_c00032{left:152.160000pt;}
.x67_c00032{left:153.430667pt;}
.x25_c00032{left:158.288000pt;}
.x3_c00032{left:159.840000pt;}
.x4b_c00032{left:162.094880pt;}
.xd_c00032{left:163.440000pt;}
.x75_c00032{left:166.320000pt;}
.x71_c00032{left:168.240000pt;}
.xa_c00032{left:173.040000pt;}
.x55_c00032{left:177.607400pt;}
.x7a_c00032{left:181.758667pt;}
.x4c_c00032{left:183.989063pt;}
.xe_c00032{left:186.480000pt;}
.x2d_c00032{left:187.574667pt;}
.x1f_c00032{left:189.120000pt;}
.x7f_c00032{left:191.148100pt;}
.x68_c00032{left:193.073333pt;}
.x62_c00032{left:195.120000pt;}
.x8d_c00032{left:198.394800pt;}
.x49_c00032{left:201.033333pt;}
.x34_c00032{left:203.701707pt;}
.x72_c00032{left:204.720000pt;}
.x53_c00032{left:206.259444pt;}
.x8b_c00032{left:209.655300pt;}
.xf_c00032{left:210.960000pt;}
.x26_c00032{left:213.233333pt;}
.x80_c00032{left:216.354633pt;}
.x4_c00032{left:217.440000pt;}
.x56_c00032{left:218.649691pt;}
.x4d_c00032{left:220.658923pt;}
.x3d_c00032{left:224.165205pt;}
.x69_c00032{left:226.684000pt;}
.x59_c00032{left:228.093333pt;}
.x1_c00032{left:229.440000pt;}
.x43_c00032{left:231.460555pt;}
.x73_c00032{left:237.360000pt;}
.x10_c00032{left:240.960000pt;}
.x17_c00032{left:243.120000pt;}
.x20_c00032{left:244.320000pt;}
.x35_c00032{left:245.609707pt;}
.x7b_c00032{left:247.348000pt;}
.x2e_c00032{left:249.093333pt;}
.x5_c00032{left:251.520000pt;}
.x6d_c00032{left:252.430667pt;}
.xb_c00032{left:253.680000pt;}
.x4e_c00032{left:255.663479pt;}
.x27_c00032{left:257.408000pt;}
.x8e_c00032{left:259.513100pt;}
.x65_c00032{left:263.081333pt;}
.x60_c00032{left:265.257664pt;}
.x11_c00032{left:269.040000pt;}
.x86_c00032{left:271.382133pt;}
.x57_c00032{left:273.372305pt;}
.x8c_c00032{left:275.648867pt;}
.x28_c00032{left:276.645333pt;}
.x44_c00032{left:277.657515pt;}
.x36_c00032{left:279.020373pt;}
.x3e_c00032{left:280.807499pt;}
.x81_c00032{left:283.326667pt;}
.x7c_c00032{left:286.396000pt;}
.x45_c00032{left:289.588085pt;}
.x21_c00032{left:291.840000pt;}
.x12_c00032{left:293.040000pt;}
.x5a_c00032{left:294.634667pt;}
.x18_c00032{left:296.160000pt;}
.x6_c00032{left:297.120000pt;}
.x4f_c00032{left:299.865177pt;}
.x29_c00032{left:303.001333pt;}
.xa6_c00032{left:309.600000pt;}
.x3f_c00032{left:310.568075pt;}
.x58_c00032{left:311.534259pt;}
.x2f_c00032{left:312.866667pt;}
.x7_c00032{left:314.880000pt;}
.x19_c00032{left:317.280000pt;}
.x13_c00032{left:320.160000pt;}
.x61_c00032{left:321.198315pt;}
.x22_c00032{left:322.560000pt;}
.xa2_c00032{left:323.520000pt;}
.x6e_c00032{left:324.658667pt;}
.x91_c00032{left:328.320000pt;}
.x2a_c00032{left:331.845333pt;}
.x37_c00032{left:336.868373pt;}
.x6a_c00032{left:337.760000pt;}
.x8_c00032{left:342.240000pt;}
.x6f_c00032{left:343.372000pt;}
.x5b_c00032{left:345.706667pt;}
.x23_c00032{left:348.480000pt;}
.x54_c00032{left:350.328527pt;}
.x1a_c00032{left:352.320000pt;}
.x96_c00032{left:353.520000pt;}
.x46_c00032{left:355.106229pt;}
.x92_c00032{left:356.880000pt;}
.x2b_c00032{left:357.962667pt;}
.x50_c00032{left:361.081161pt;}
.x76_c00032{left:363.840000pt;}
.x14_c00032{left:367.200000pt;}
.x38_c00032{left:369.480373pt;}
.xa7_c00032{left:371.760000pt;}
.x1b_c00032{left:373.200000pt;}
.x40_c00032{left:374.169472pt;}
.x47_c00032{left:375.504736pt;}
.xa1_c00032{left:377.520000pt;}
.x30_c00032{left:379.354667pt;}
.x8f_c00032{left:381.600000pt;}
.x24_c00032{left:384.720000pt;}
.x4a_c00032{left:386.781333pt;}
.x6b_c00032{left:388.168000pt;}
.x93_c00032{left:390.720000pt;}
.x5c_c00032{left:392.760000pt;}
.x97_c00032{left:396.960000pt;}
.x9b_c00032{left:397.920000pt;}
.x51_c00032{left:399.228325pt;}
.x63_c00032{left:403.040000pt;}
.x1c_c00032{left:404.400000pt;}
.x6c_c00032{left:406.157333pt;}
.x9_c00032{left:408.480000pt;}
.x5d_c00032{left:412.953333pt;}
.x31_c00032{left:415.353333pt;}
.xa8_c00032{left:416.880000pt;}
.x9e_c00032{left:418.560000pt;}
.x48_c00032{left:420.144384pt;}
.x94_c00032{left:421.200000pt;}
.x39_c00032{left:422.553707pt;}
.x15_c00032{left:426.720000pt;}
.xa3_c00032{left:428.160000pt;}
.x52_c00032{left:430.412969pt;}
.x32_c00032{left:435.033333pt;}
.x5e_c00032{left:442.376000pt;}
.x98_c00032{left:446.160000pt;}
.x64_c00032{left:447.674667pt;}
.x1d_c00032{left:449.760000pt;}
.xa4_c00032{left:451.200000pt;}
.xa9_c00032{left:456.480000pt;}
.x9c_c00032{left:459.840000pt;}
.x99_c00032{left:463.920000pt;}
.x33_c00032{left:467.640000pt;}
.xa5_c00032{left:468.960000pt;}
.x66_c00032{left:473.330667pt;}
.x95_c00032{left:478.560000pt;}
.x9f_c00032{left:479.760000pt;}
.x9d_c00032{left:492.480000pt;}
.x3a_c00032{left:495.749707pt;}
.x9a_c00032{left:500.160000pt;}
.x90_c00032{left:505.680000pt;}
.xa0_c00032{left:525.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc_c00033{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);}
.m117_c00033{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);}
.m90_c00033{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.m7b_c00033{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);}
.m70_c00033{transform:matrix(0.137015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137015,0.000000,0.000000,0.250000,0,0);}
.m7e_c00033{transform:matrix(0.141095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141095,0.000000,0.000000,0.250000,0,0);}
.m3f_c00033{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.mcc_c00033{transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);}
.m7d_c00033{transform:matrix(0.143935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143935,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);}
.m61_c00033{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);}
.m10_c00033{transform:matrix(0.152585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152585,0.000000,0.000000,0.250000,0,0);}
.m7a_c00033{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);}
.mf_c00033{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);}
.m57_c00033{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);}
.m33_c00033{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);}
.mfe_c00033{transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);}
.m6d_c00033{transform:matrix(0.155830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155830,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{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);}
.m18_c00033{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);}
.m3a_c00033{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);}
.ma8_c00033{transform:matrix(0.159445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159445,0.000000,0.000000,0.250000,0,0);}
.me7_c00033{transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);}
.meb_c00033{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);}
.md8_c00033{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_c00033{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);}
.m62_c00033{transform:matrix(0.164290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164290,0.000000,0.000000,0.250000,0,0);}
.m69_c00033{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);}
.m7f_c00033{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);}
.m8d_c00033{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);}
.mc0_c00033{transform:matrix(0.167004,0.002672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167004,0.002672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167004,0.002672,-0.003999,0.249968,0,0);}
.me5_c00033{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{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);}
.m36_c00033{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);}
.m87_c00033{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);}
.m60_c00033{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);}
.m2d_c00033{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);}
.mfd_c00033{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);}
.m72_c00033{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);}
.m5d_c00033{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);}
.ma6_c00033{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);}
.mb6_c00033{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);}
.md5_c00033{transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{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);}
.m73_c00033{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);}
.mc2_c00033{transform:matrix(0.175588,0.002809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175588,0.002809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175588,0.002809,-0.003999,0.249968,0,0);}
.mfb_c00033{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);}
.m2b_c00033{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);}
.me4_c00033{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);}
.ma3_c00033{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);}
.m5b_c00033{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);}
.me3_c00033{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);}
.m6f_c00033{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);}
.m76_c00033{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);}
.me0_c00033{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);}
.mea_c00033{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);}
.mf8_c00033{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);}
.m59_c00033{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);}
.m1d_c00033{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);}
.m31_c00033{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);}
.mce_c00033{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);}
.mba_c00033{transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);}
.m84_c00033{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);}
.mf9_c00033{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);}
.mfc_c00033{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);}
.m16_c00033{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);}
.m58_c00033{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);}
.m6b_c00033{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);}
.m24_c00033{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);}
.m12_c00033{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);}
.m5a_c00033{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);}
.m28_c00033{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);}
.md_c00033{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);}
.m20_c00033{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);}
.ma9_c00033{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);}
.m11b_c00033{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);}
.me9_c00033{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);}
.mf5_c00033{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);}
.m52_c00033{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);}
.m3b_c00033{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);}
.m105_c00033{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);}
.mec_c00033{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);}
.m74_c00033{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);}
.m47_c00033{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);}
.m5e_c00033{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);}
.mc8_c00033{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);}
.m7c_c00033{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);}
.m8f_c00033{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);}
.m79_c00033{transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);}
.m109_c00033{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);}
.mc7_c00033{transform:matrix(0.186486,0.002984,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186486,0.002984,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186486,0.002984,-0.003999,0.249968,0,0);}
.m3e_c00033{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);}
.m93_c00033{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);}
.mbb_c00033{transform:matrix(0.187726,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187726,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187726,0.003004,-0.003999,0.249968,0,0);}
.m98_c00033{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);}
.mee_c00033{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);}
.mc1_c00033{transform:matrix(0.188106,0.003010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188106,0.003010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188106,0.003010,-0.003999,0.249968,0,0);}
.m1b_c00033{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);}
.mf7_c00033{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);}
.med_c00033{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);}
.md0_c00033{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);}
.m104_c00033{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);}
.m86_c00033{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);}
.m35_c00033{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);}
.mb3_c00033{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);}
.m32_c00033{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);}
.m2e_c00033{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);}
.m8_c00033{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);}
.m9a_c00033{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.mcd_c00033{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);}
.ma5_c00033{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);}
.m3c_c00033{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);}
.m34_c00033{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);}
.m1c_c00033{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);}
.mca_c00033{transform:matrix(0.192640,0.003082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192640,0.003082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192640,0.003082,-0.003999,0.249968,0,0);}
.m91_c00033{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);}
.m9c_c00033{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);}
.m66_c00033{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);}
.m89_c00033{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);}
.mb8_c00033{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);}
.mc9_c00033{transform:matrix(0.194440,0.003111,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194440,0.003111,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194440,0.003111,-0.003999,0.249968,0,0);}
.m68_c00033{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);}
.mc4_c00033{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);}
.m65_c00033{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);}
.m6a_c00033{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);}
.mbd_c00033{transform:matrix(0.195230,0.003124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195230,0.003124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195230,0.003124,-0.003999,0.249968,0,0);}
.m88_c00033{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);}
.ma4_c00033{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);}
.md3_c00033{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);}
.m38_c00033{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);}
.m108_c00033{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);}
.m83_c00033{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);}
.m19_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);}
.m17_c00033{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);}
.mdb_c00033{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);}
.mab_c00033{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);}
.mf4_c00033{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);}
.me8_c00033{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);}
.md4_c00033{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m97_c00033{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_c00033{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);}
.mff_c00033{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);}
.mf1_c00033{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);}
.md2_c00033{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);}
.m41_c00033{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);}
.m44_c00033{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);}
.m64_c00033{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);}
.mc6_c00033{transform:matrix(0.200614,0.003210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200614,0.003210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200614,0.003210,-0.003999,0.249968,0,0);}
.mb_c00033{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);}
.m43_c00033{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);}
.mdd_c00033{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);}
.m39_c00033{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);}
.m1a_c00033{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);}
.me2_c00033{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);}
.m99_c00033{transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{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);}
.mfa_c00033{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);}
.mb9_c00033{transform:matrix(0.202964,0.003247,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202964,0.003247,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202964,0.003247,-0.003999,0.249968,0,0);}
.m8b_c00033{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);}
.m13_c00033{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);}
.ma7_c00033{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);}
.m100_c00033{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);}
.m77_c00033{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);}
.m11_c00033{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);}
.m2a_c00033{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);}
.m8a_c00033{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);}
.m26_c00033{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);}
.md1_c00033{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);}
.m10b_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);}
.m67_c00033{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);}
.m11c_c00033{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);}
.m85_c00033{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);}
.m42_c00033{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);}
.m75_c00033{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);}
.md7_c00033{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);}
.m78_c00033{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);}
.m9d_c00033{transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);}
.m103_c00033{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);}
.m113_c00033{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);}
.mb5_c00033{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);}
.m6e_c00033{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);}
.m10d_c00033{transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);}
.m82_c00033{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);}
.mae_c00033{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);}
.m5f_c00033{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);}
.me6_c00033{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);}
.m56_c00033{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);}
.mf6_c00033{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);}
.m71_c00033{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);}
.me1_c00033{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);}
.m49_c00033{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);}
.mda_c00033{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);}
.mb1_c00033{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);}
.mf0_c00033{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00033{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);}
.m112_c00033{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);}
.m3_c00033{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);}
.mcb_c00033{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);}
.mb0_c00033{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);}
.m8e_c00033{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.mbe_c00033{transform:matrix(0.212688,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212688,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212688,0.003403,-0.003999,0.249968,0,0);}
.md9_c00033{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);}
.m10f_c00033{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);}
.m106_c00033{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);}
.m14_c00033{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);}
.m4f_c00033{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);}
.mb2_c00033{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);}
.m3d_c00033{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.mac_c00033{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);}
.ma2_c00033{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);}
.m5_c00033{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);}
.mcf_c00033{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);}
.mbc_c00033{transform:matrix(0.217767,0.003484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217767,0.003484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217767,0.003484,-0.003999,0.249968,0,0);}
.m40_c00033{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);}
.m107_c00033{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m8c_c00033{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);}
.mef_c00033{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);}
.m11d_c00033{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);}
.m81_c00033{transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);}
.m111_c00033{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);}
.m80_c00033{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);}
.m96_c00033{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);}
.m30_c00033{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);}
.m10a_c00033{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);}
.m1f_c00033{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);}
.m10e_c00033{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);}
.m118_c00033{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);}
.mc3_c00033{transform:matrix(0.224726,0.003596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224726,0.003596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224726,0.003596,-0.003999,0.249968,0,0);}
.mad_c00033{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);}
.m50_c00033{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);}
.m7_c00033{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);}
.m2_c00033{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);}
.ma0_c00033{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);}
.m92_c00033{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);}
.m94_c00033{transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);}
.m114_c00033{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);}
.mc5_c00033{transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);}
.mdc_c00033{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);}
.m22_c00033{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{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);}
.maf_c00033{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00033{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);}
.m23_c00033{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);}
.m48_c00033{transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{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);}
.m27_c00033{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);}
.m95_c00033{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00033{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);}
.mb4_c00033{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m110_c00033{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);}
.mb7_c00033{transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);}
.m11a_c00033{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);}
.m115_c00033{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);}
.m11f_c00033{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);}
.m51_c00033{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);}
.m2f_c00033{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);}
.mdf_c00033{transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);}
.m29_c00033{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);}
.md6_c00033{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.maa_c00033{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m53_c00033{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m10c_c00033{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);}
.mde_c00033{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m102_c00033{transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{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);}
.m4_c00033{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);}
.m5c_c00033{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.m63_c00033{transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);}
.m101_c00033{transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273465,0.000000,0.000000,0.250000,0,0);}
.m119_c00033{transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276385,0.000000,0.000000,0.250000,0,0);}
.mf3_c00033{transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.279075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279075,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.287995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287995,0.000000,0.000000,0.250000,0,0);}
.m9e_c00033{transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299190,0.000000,0.000000,0.250000,0,0);}
.m121_c00033{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);}
.mf2_c00033{transform:matrix(0.312795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312795,0.000000,0.000000,0.250000,0,0);}
.m116_c00033{transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);}
.mbf_c00033{transform:matrix(0.380341,0.006085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.380341,0.006085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.380341,0.006085,-0.003999,0.249968,0,0);}
.m4e_c00033{transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00033{transform:matrix(0.414100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414100,0.000000,0.000000,0.250000,0,0);}
.m11e_c00033{transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00033{transform:matrix(0.471420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471420,0.000000,0.000000,0.250000,0,0);}
.m123_c00033{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);}
.m122_c00033{transform:matrix(0.487495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487495,0.000000,0.000000,0.250000,0,0);}
.m54_c00033{transform:matrix(0.535290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{transform:matrix(0.621925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621925,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.773445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773445,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(1.088780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.088780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.088780,0.000000,0.000000,0.250000,0,0);}
.m120_c00033{transform:matrix(2.517675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.517675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.517675,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;}
.fs1c_c00033{font-size:22.050000px;}
.fs1b_c00033{font-size:45.150000px;}
.fs18_c00033{font-size:47.250000px;}
.fs1a_c00033{font-size:48.300000px;}
.fs13_c00033{font-size:49.350000px;}
.fs15_c00033{font-size:49.356316px;}
.fs11_c00033{font-size:50.400000px;}
.fs14_c00033{font-size:50.406451px;}
.fsa_c00033{font-size:51.450000px;}
.fs10_c00033{font-size:52.500000px;}
.fs12_c00033{font-size:53.550000px;}
.fs16_c00033{font-size:53.556854px;}
.fs19_c00033{font-size:55.650000px;}
.fs17_c00033{font-size:58.800000px;}
.fs9_c00033{font-size:61.950000px;}
.fs0_c00033{font-size:63.000000px;}
.fs5_c00033{font-size:66.150000px;}
.fs4_c00033{font-size:67.200000px;}
.fs8_c00033{font-size:68.250000px;}
.fsf_c00033{font-size:69.300000px;}
.fs7_c00033{font-size:70.350000px;}
.fs3_c00033{font-size:71.400000px;}
.fs1_c00033{font-size:72.450000px;}
.fsd_c00033{font-size:73.500000px;}
.fse_c00033{font-size:74.550000px;}
.fsb_c00033{font-size:75.600000px;}
.fs2_c00033{font-size:76.650000px;}
.fs6_c00033{font-size:92.400000px;}
.fsc_c00033{font-size:102.900000px;}
.y0_c00033{bottom:0.000000px;}
.y61_c00033{bottom:0.280500px;}
.y60_c00033{bottom:207.955500px;}
.y52_c00033{bottom:210.389412px;}
.y51_c00033{bottom:211.302084px;}
.y50_c00033{bottom:212.162448px;}
.y4f_c00033{bottom:212.950356px;}
.y4e_c00033{bottom:213.889896px;}
.y4d_c00033{bottom:214.380516px;}
.y5f_c00033{bottom:225.988500px;}
.y4c_c00033{bottom:228.504096px;}
.y4b_c00033{bottom:229.605684px;}
.y4a_c00033{bottom:230.279916px;}
.y49_c00033{bottom:231.054828px;}
.y48_c00033{bottom:231.329832px;}
.y47_c00033{bottom:231.661140px;}
.y5e_c00033{bottom:242.980500px;}
.y5c_c00033{bottom:245.017500px;}
.y46_c00033{bottom:246.793536px;}
.y45_c00033{bottom:247.047840px;}
.y44_c00033{bottom:247.903992px;}
.y43_c00033{bottom:248.691168px;}
.y42_c00033{bottom:249.165072px;}
.y41_c00033{bottom:249.753000px;}
.y5b_c00033{bottom:261.621000px;}
.y40_c00033{bottom:264.489000px;}
.y3f_c00033{bottom:264.852000px;}
.y3e_c00033{bottom:265.494000px;}
.y3d_c00033{bottom:265.945500px;}
.y3c_c00033{bottom:266.443500px;}
.y3b_c00033{bottom:267.334500px;}
.y3a_c00033{bottom:267.843000px;}
.y5a_c00033{bottom:279.172500px;}
.y39_c00033{bottom:282.109500px;}
.y38_c00033{bottom:282.604500px;}
.y37_c00033{bottom:282.873000px;}
.y36_c00033{bottom:283.737000px;}
.y35_c00033{bottom:284.874000px;}
.y34_c00033{bottom:285.663000px;}
.y59_c00033{bottom:297.597000px;}
.y33_c00033{bottom:300.321000px;}
.y32_c00033{bottom:300.777000px;}
.y31_c00033{bottom:301.353000px;}
.y30_c00033{bottom:301.716000px;}
.y2f_c00033{bottom:302.157000px;}
.y2e_c00033{bottom:302.659500px;}
.y2d_c00033{bottom:303.048000px;}
.y2c_c00033{bottom:303.753000px;}
.y58_c00033{bottom:315.459000px;}
.y2b_c00033{bottom:318.130500px;}
.y2a_c00033{bottom:318.384000px;}
.y29_c00033{bottom:318.994500px;}
.y28_c00033{bottom:319.617000px;}
.y27_c00033{bottom:319.851000px;}
.y26_c00033{bottom:320.097000px;}
.y25_c00033{bottom:320.572500px;}
.y24_c00033{bottom:320.722500px;}
.y23_c00033{bottom:321.301500px;}
.y57_c00033{bottom:333.127500px;}
.y22_c00033{bottom:335.935500px;}
.y21_c00033{bottom:336.541500px;}
.y20_c00033{bottom:337.261500px;}
.y1f_c00033{bottom:337.596000px;}
.y1e_c00033{bottom:338.754000px;}
.y1d_c00033{bottom:339.391500px;}
.y56_c00033{bottom:351.147000px;}
.y1c_c00033{bottom:355.203000px;}
.y55_c00033{bottom:369.462000px;}
.y1b_c00033{bottom:372.336000px;}
.y1a_c00033{bottom:372.684000px;}
.y19_c00033{bottom:373.489500px;}
.y18_c00033{bottom:374.491500px;}
.y54_c00033{bottom:387.976500px;}
.y17_c00033{bottom:390.844500px;}
.y53_c00033{bottom:405.952500px;}
.y5d_c00033{bottom:407.160000px;}
.y16_c00033{bottom:408.237000px;}
.y15_c00033{bottom:444.021000px;}
.y14_c00033{bottom:467.035500px;}
.y13_c00033{bottom:489.633000px;}
.y12_c00033{bottom:511.092000px;}
.y11_c00033{bottom:534.309000px;}
.y10_c00033{bottom:559.609500px;}
.yf_c00033{bottom:582.580500px;}
.yc_c00033{bottom:604.585500px;}
.yd_c00033{bottom:605.610000px;}
.yb_c00033{bottom:627.909000px;}
.ye_c00033{bottom:649.929000px;}
.ya_c00033{bottom:650.329500px;}
.y9_c00033{bottom:671.451000px;}
.y8_c00033{bottom:694.342500px;}
.y7_c00033{bottom:716.689500px;}
.y6_c00033{bottom:740.560500px;}
.y5_c00033{bottom:762.997500px;}
.y4_c00033{bottom:785.623500px;}
.y3_c00033{bottom:808.554000px;}
.y2_c00033{bottom:831.805500px;}
.y1_c00033{bottom:854.202000px;}
.h1e_c00033{height:22.050000px;}
.h1d_c00033{height:45.150000px;}
.h1a_c00033{height:47.250000px;}
.h1c_c00033{height:48.300000px;}
.h15_c00033{height:49.350000px;}
.h17_c00033{height:49.356316px;}
.h13_c00033{height:50.400000px;}
.h16_c00033{height:50.406451px;}
.hc_c00033{height:51.450000px;}
.h12_c00033{height:52.500000px;}
.h14_c00033{height:53.550000px;}
.h18_c00033{height:53.556854px;}
.h1b_c00033{height:55.650000px;}
.h19_c00033{height:58.800000px;}
.hb_c00033{height:61.950000px;}
.h2_c00033{height:63.000000px;}
.h7_c00033{height:66.150000px;}
.h6_c00033{height:67.200000px;}
.ha_c00033{height:68.250000px;}
.h11_c00033{height:69.300000px;}
.h9_c00033{height:70.350000px;}
.h5_c00033{height:71.400000px;}
.h3_c00033{height:72.450000px;}
.hf_c00033{height:73.500000px;}
.h10_c00033{height:74.550000px;}
.hd_c00033{height:75.600000px;}
.h4_c00033{height:76.650000px;}
.h8_c00033{height:92.400000px;}
.he_c00033{height:102.900000px;}
.h0_c00033{height:1086.450000px;}
.h1_c00033{height:1086.750000px;}
.w1_c00033{width:771.000000px;}
.w0_c00033{width:771.120000px;}
.x0_c00033{left:0.000000px;}
.x67_c00033{left:207.741000px;}
.x6d_c00033{left:212.019000px;}
.x58_c00033{left:214.380000px;}
.x75_c00033{left:230.742744px;}
.x59_c00033{left:233.280000px;}
.x78_c00033{left:236.336208px;}
.x71_c00033{left:240.669000px;}
.x68_c00033{left:243.924000px;}
.x3e_c00033{left:245.700000px;}
.x76_c00033{left:246.898980px;}
.x6_c00033{left:249.210000px;}
.x1d_c00033{left:250.560000px;}
.x64_c00033{left:252.013500px;}
.x69_c00033{left:253.341000px;}
.x5e_c00033{left:257.040000px;}
.x4f_c00033{left:267.840000px;}
.xe_c00033{left:269.190000px;}
.x61_c00033{left:272.970000px;}
.x42_c00033{left:274.590000px;}
.x54_c00033{left:277.830000px;}
.x23_c00033{left:279.990000px;}
.x27_c00033{left:281.340000px;}
.x5a_c00033{left:282.960000px;}
.x2d_c00033{left:285.660000px;}
.x7_c00033{left:288.360000px;}
.x34_c00033{left:290.790000px;}
.x77_c00033{left:292.517760px;}
.x15_c00033{left:294.030000px;}
.x6e_c00033{left:295.999500px;}
.x6a_c00033{left:298.458000px;}
.x28_c00033{left:301.590000px;}
.x43_c00033{left:307.530000px;}
.x48_c00033{left:309.150000px;}
.x4c_c00033{left:312.390000px;}
.x72_c00033{left:313.822500px;}
.x33_c00033{left:315.090000px;}
.xf_c00033{left:316.440000px;}
.x16_c00033{left:319.410000px;}
.x70_c00033{left:320.602500px;}
.x62_c00033{left:322.380000px;}
.x50_c00033{left:325.890000px;}
.x73_c00033{left:328.960500px;}
.x1e_c00033{left:332.100000px;}
.x2e_c00033{left:333.450000px;}
.x8_c00033{left:336.690000px;}
.x5b_c00033{left:338.310000px;}
.x65_c00033{left:339.775500px;}
.x10_c00033{left:343.170000px;}
.x24_c00033{left:344.520000px;}
.x35_c00033{left:349.110000px;}
.x44_c00033{left:351.810000px;}
.x17_c00033{left:353.430000px;}
.x26_c00033{left:357.480000px;}
.x55_c00033{left:358.560000px;}
.x39_c00033{left:362.610000px;}
.x79_c00033{left:365.722428px;}
.x60_c00033{left:367.878000px;}
.x1f_c00033{left:370.170000px;}
.x9_c00033{left:372.330000px;}
.x36_c00033{left:374.490000px;}
.x11_c00033{left:375.570000px;}
.x5c_c00033{left:382.860000px;}
.x29_c00033{left:386.100000px;}
.x63_c00033{left:387.720000px;}
.x6b_c00033{left:390.051000px;}
.x6f_c00033{left:392.671500px;}
.x25_c00033{left:396.360000px;}
.x74_c00033{left:398.364000px;}
.x51_c00033{left:400.140000px;}
.x49_c00033{left:403.650000px;}
.x18_c00033{left:404.730000px;}
.x6c_c00033{left:405.921000px;}
.x2a_c00033{left:411.750000px;}
.x2f_c00033{left:413.370000px;}
.x5d_c00033{left:415.530000px;}
.x66_c00033{left:417.787500px;}
.x20_c00033{left:419.580000px;}
.x5f_c00033{left:421.200000px;}
.x12_c00033{left:423.360000px;}
.x45_c00033{left:427.950000px;}
.x37_c00033{left:430.650000px;}
.x30_c00033{left:436.860000px;}
.xa_c00033{left:440.370000px;}
.x1_c00033{left:442.260000px;}
.x3a_c00033{left:446.310000px;}
.xa7_c00033{left:449.820000px;}
.x4d_c00033{left:455.490000px;}
.x38_c00033{left:457.920000px;}
.xb_c00033{left:459.810000px;}
.x31_c00033{left:463.050000px;}
.x2b_c00033{left:469.530000px;}
.x13_c00033{left:474.120000px;}
.x46_c00033{left:475.200000px;}
.x98_c00033{left:476.820000px;}
.x56_c00033{left:479.790000px;}
.xc_c00033{left:483.570000px;}
.x9d_c00033{left:489.240000px;}
.x2c_c00033{left:490.860000px;}
.x52_c00033{left:493.560000px;}
.x8c_c00033{left:495.990000px;}
.x21_c00033{left:497.070000px;}
.x3f_c00033{left:499.500000px;}
.x3b_c00033{left:500.850000px;}
.x19_c00033{left:502.470000px;}
.x83_c00033{left:504.360000px;}
.x57_c00033{left:505.980000px;}
.x92_c00033{left:507.600000px;}
.x7e_c00033{left:509.490000px;}
.x40_c00033{left:511.110000px;}
.x8d_c00033{left:512.730000px;}
.x2_c00033{left:514.620000px;}
.x32_c00033{left:516.780000px;}
.x3c_c00033{left:518.670000px;}
.x14_c00033{left:520.830000px;}
.x7a_c00033{left:522.450000px;}
.x4e_c00033{left:525.150000px;}
.x22_c00033{left:527.310000px;}
.x99_c00033{left:529.470000px;}
.x7f_c00033{left:531.090000px;}
.x3_c00033{left:532.440000px;}
.x7b_c00033{left:533.520000px;}
.x53_c00033{left:534.870000px;}
.x8e_c00033{left:536.220000px;}
.x41_c00033{left:537.300000px;}
.x8a_c00033{left:539.190000px;}
.x4a_c00033{left:540.540000px;}
.x93_c00033{left:542.700000px;}
.xa8_c00033{left:544.320000px;}
.x47_c00033{left:546.750000px;}
.x1a_c00033{left:548.100000px;}
.x84_c00033{left:555.660000px;}
.xa9_c00033{left:556.740000px;}
.x94_c00033{left:559.710000px;}
.x9a_c00033{left:561.600000px;}
.xa0_c00033{left:567.540000px;}
.x4_c00033{left:572.940000px;}
.x1b_c00033{left:574.290000px;}
.x80_c00033{left:576.180000px;}
.x9b_c00033{left:578.610000px;}
.xd_c00033{left:582.660000px;}
.x3d_c00033{left:585.900000px;}
.x8f_c00033{left:588.870000px;}
.x95_c00033{left:592.110000px;}
.x9e_c00033{left:593.730000px;}
.xa3_c00033{left:596.160000px;}
.x85_c00033{left:599.130000px;}
.xa1_c00033{left:600.750000px;}
.x4b_c00033{left:606.960000px;}
.x90_c00033{left:608.580000px;}
.x87_c00033{left:611.820000px;}
.x81_c00033{left:614.520000px;}
.x9c_c00033{left:617.490000px;}
.x96_c00033{left:618.570000px;}
.xa4_c00033{left:622.080000px;}
.x5_c00033{left:624.240000px;}
.x9f_c00033{left:626.130000px;}
.x7c_c00033{left:627.480000px;}
.x1c_c00033{left:630.180000px;}
.x8b_c00033{left:632.880000px;}
.xa5_c00033{left:636.930000px;}
.x7d_c00033{left:639.090000px;}
.x97_c00033{left:644.220000px;}
.x88_c00033{left:650.970000px;}
.x91_c00033{left:661.500000px;}
.x89_c00033{left:663.930000px;}
.xa2_c00033{left:667.170000px;}
.x82_c00033{left:670.680000px;}
.x86_c00033{left:675.000000px;}
.xa6_c00033{left:680.130000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs1c_c00033{font-size:19.600000pt;}
.fs1b_c00033{font-size:40.133333pt;}
.fs18_c00033{font-size:42.000000pt;}
.fs1a_c00033{font-size:42.933333pt;}
.fs13_c00033{font-size:43.866667pt;}
.fs15_c00033{font-size:43.872281pt;}
.fs11_c00033{font-size:44.800000pt;}
.fs14_c00033{font-size:44.805734pt;}
.fsa_c00033{font-size:45.733333pt;}
.fs10_c00033{font-size:46.666667pt;}
.fs12_c00033{font-size:47.600000pt;}
.fs16_c00033{font-size:47.606092pt;}
.fs19_c00033{font-size:49.466667pt;}
.fs17_c00033{font-size:52.266667pt;}
.fs9_c00033{font-size:55.066667pt;}
.fs0_c00033{font-size:56.000000pt;}
.fs5_c00033{font-size:58.800000pt;}
.fs4_c00033{font-size:59.733333pt;}
.fs8_c00033{font-size:60.666667pt;}
.fsf_c00033{font-size:61.600000pt;}
.fs7_c00033{font-size:62.533333pt;}
.fs3_c00033{font-size:63.466667pt;}
.fs1_c00033{font-size:64.400000pt;}
.fsd_c00033{font-size:65.333333pt;}
.fse_c00033{font-size:66.266667pt;}
.fsb_c00033{font-size:67.200000pt;}
.fs2_c00033{font-size:68.133333pt;}
.fs6_c00033{font-size:82.133333pt;}
.fsc_c00033{font-size:91.466667pt;}
.y0_c00033{bottom:0.000000pt;}
.y61_c00033{bottom:0.249333pt;}
.y60_c00033{bottom:184.849333pt;}
.y52_c00033{bottom:187.012811pt;}
.y51_c00033{bottom:187.824075pt;}
.y50_c00033{bottom:188.588843pt;}
.y4f_c00033{bottom:189.289205pt;}
.y4e_c00033{bottom:190.124352pt;}
.y4d_c00033{bottom:190.560459pt;}
.y5f_c00033{bottom:200.878667pt;}
.y4c_c00033{bottom:203.114752pt;}
.y4b_c00033{bottom:204.093941pt;}
.y4a_c00033{bottom:204.693259pt;}
.y49_c00033{bottom:205.382069pt;}
.y48_c00033{bottom:205.626517pt;}
.y47_c00033{bottom:205.921013pt;}
.y5e_c00033{bottom:215.982667pt;}
.y5c_c00033{bottom:217.793333pt;}
.y46_c00033{bottom:219.372032pt;}
.y45_c00033{bottom:219.598080pt;}
.y44_c00033{bottom:220.359104pt;}
.y43_c00033{bottom:221.058816pt;}
.y42_c00033{bottom:221.480064pt;}
.y41_c00033{bottom:222.002667pt;}
.y5b_c00033{bottom:232.552000pt;}
.y40_c00033{bottom:235.101333pt;}
.y3f_c00033{bottom:235.424000pt;}
.y3e_c00033{bottom:235.994667pt;}
.y3d_c00033{bottom:236.396000pt;}
.y3c_c00033{bottom:236.838667pt;}
.y3b_c00033{bottom:237.630667pt;}
.y3a_c00033{bottom:238.082667pt;}
.y5a_c00033{bottom:248.153333pt;}
.y39_c00033{bottom:250.764000pt;}
.y38_c00033{bottom:251.204000pt;}
.y37_c00033{bottom:251.442667pt;}
.y36_c00033{bottom:252.210667pt;}
.y35_c00033{bottom:253.221333pt;}
.y34_c00033{bottom:253.922667pt;}
.y59_c00033{bottom:264.530667pt;}
.y33_c00033{bottom:266.952000pt;}
.y32_c00033{bottom:267.357333pt;}
.y31_c00033{bottom:267.869333pt;}
.y30_c00033{bottom:268.192000pt;}
.y2f_c00033{bottom:268.584000pt;}
.y2e_c00033{bottom:269.030667pt;}
.y2d_c00033{bottom:269.376000pt;}
.y2c_c00033{bottom:270.002667pt;}
.y58_c00033{bottom:280.408000pt;}
.y2b_c00033{bottom:282.782667pt;}
.y2a_c00033{bottom:283.008000pt;}
.y29_c00033{bottom:283.550667pt;}
.y28_c00033{bottom:284.104000pt;}
.y27_c00033{bottom:284.312000pt;}
.y26_c00033{bottom:284.530667pt;}
.y25_c00033{bottom:284.953333pt;}
.y24_c00033{bottom:285.086667pt;}
.y23_c00033{bottom:285.601333pt;}
.y57_c00033{bottom:296.113333pt;}
.y22_c00033{bottom:298.609333pt;}
.y21_c00033{bottom:299.148000pt;}
.y20_c00033{bottom:299.788000pt;}
.y1f_c00033{bottom:300.085333pt;}
.y1e_c00033{bottom:301.114667pt;}
.y1d_c00033{bottom:301.681333pt;}
.y56_c00033{bottom:312.130667pt;}
.y1c_c00033{bottom:315.736000pt;}
.y55_c00033{bottom:328.410667pt;}
.y1b_c00033{bottom:330.965333pt;}
.y1a_c00033{bottom:331.274667pt;}
.y19_c00033{bottom:331.990667pt;}
.y18_c00033{bottom:332.881333pt;}
.y54_c00033{bottom:344.868000pt;}
.y17_c00033{bottom:347.417333pt;}
.y53_c00033{bottom:360.846667pt;}
.y5d_c00033{bottom:361.920000pt;}
.y16_c00033{bottom:362.877333pt;}
.y15_c00033{bottom:394.685333pt;}
.y14_c00033{bottom:415.142667pt;}
.y13_c00033{bottom:435.229333pt;}
.y12_c00033{bottom:454.304000pt;}
.y11_c00033{bottom:474.941333pt;}
.y10_c00033{bottom:497.430667pt;}
.yf_c00033{bottom:517.849333pt;}
.yc_c00033{bottom:537.409333pt;}
.yd_c00033{bottom:538.320000pt;}
.yb_c00033{bottom:558.141333pt;}
.ye_c00033{bottom:577.714667pt;}
.ya_c00033{bottom:578.070667pt;}
.y9_c00033{bottom:596.845333pt;}
.y8_c00033{bottom:617.193333pt;}
.y7_c00033{bottom:637.057333pt;}
.y6_c00033{bottom:658.276000pt;}
.y5_c00033{bottom:678.220000pt;}
.y4_c00033{bottom:698.332000pt;}
.y3_c00033{bottom:718.714667pt;}
.y2_c00033{bottom:739.382667pt;}
.y1_c00033{bottom:759.290667pt;}
.h1e_c00033{height:19.600000pt;}
.h1d_c00033{height:40.133333pt;}
.h1a_c00033{height:42.000000pt;}
.h1c_c00033{height:42.933333pt;}
.h15_c00033{height:43.866667pt;}
.h17_c00033{height:43.872281pt;}
.h13_c00033{height:44.800000pt;}
.h16_c00033{height:44.805734pt;}
.hc_c00033{height:45.733333pt;}
.h12_c00033{height:46.666667pt;}
.h14_c00033{height:47.600000pt;}
.h18_c00033{height:47.606092pt;}
.h1b_c00033{height:49.466667pt;}
.h19_c00033{height:52.266667pt;}
.hb_c00033{height:55.066667pt;}
.h2_c00033{height:56.000000pt;}
.h7_c00033{height:58.800000pt;}
.h6_c00033{height:59.733333pt;}
.ha_c00033{height:60.666667pt;}
.h11_c00033{height:61.600000pt;}
.h9_c00033{height:62.533333pt;}
.h5_c00033{height:63.466667pt;}
.h3_c00033{height:64.400000pt;}
.hf_c00033{height:65.333333pt;}
.h10_c00033{height:66.266667pt;}
.hd_c00033{height:67.200000pt;}
.h4_c00033{height:68.133333pt;}
.h8_c00033{height:82.133333pt;}
.he_c00033{height:91.466667pt;}
.h0_c00033{height:965.733333pt;}
.h1_c00033{height:966.000000pt;}
.w1_c00033{width:685.333333pt;}
.w0_c00033{width:685.440000pt;}
.x0_c00033{left:0.000000pt;}
.x67_c00033{left:184.658667pt;}
.x6d_c00033{left:188.461333pt;}
.x58_c00033{left:190.560000pt;}
.x75_c00033{left:205.104661pt;}
.x59_c00033{left:207.360000pt;}
.x78_c00033{left:210.076629pt;}
.x71_c00033{left:213.928000pt;}
.x68_c00033{left:216.821333pt;}
.x3e_c00033{left:218.400000pt;}
.x76_c00033{left:219.465760pt;}
.x6_c00033{left:221.520000pt;}
.x1d_c00033{left:222.720000pt;}
.x64_c00033{left:224.012000pt;}
.x69_c00033{left:225.192000pt;}
.x5e_c00033{left:228.480000pt;}
.x4f_c00033{left:238.080000pt;}
.xe_c00033{left:239.280000pt;}
.x61_c00033{left:242.640000pt;}
.x42_c00033{left:244.080000pt;}
.x54_c00033{left:246.960000pt;}
.x23_c00033{left:248.880000pt;}
.x27_c00033{left:250.080000pt;}
.x5a_c00033{left:251.520000pt;}
.x2d_c00033{left:253.920000pt;}
.x7_c00033{left:256.320000pt;}
.x34_c00033{left:258.480000pt;}
.x77_c00033{left:260.015787pt;}
.x15_c00033{left:261.360000pt;}
.x6e_c00033{left:263.110667pt;}
.x6a_c00033{left:265.296000pt;}
.x28_c00033{left:268.080000pt;}
.x43_c00033{left:273.360000pt;}
.x48_c00033{left:274.800000pt;}
.x4c_c00033{left:277.680000pt;}
.x72_c00033{left:278.953333pt;}
.x33_c00033{left:280.080000pt;}
.xf_c00033{left:281.280000pt;}
.x16_c00033{left:283.920000pt;}
.x70_c00033{left:284.980000pt;}
.x62_c00033{left:286.560000pt;}
.x50_c00033{left:289.680000pt;}
.x73_c00033{left:292.409333pt;}
.x1e_c00033{left:295.200000pt;}
.x2e_c00033{left:296.400000pt;}
.x8_c00033{left:299.280000pt;}
.x5b_c00033{left:300.720000pt;}
.x65_c00033{left:302.022667pt;}
.x10_c00033{left:305.040000pt;}
.x24_c00033{left:306.240000pt;}
.x35_c00033{left:310.320000pt;}
.x44_c00033{left:312.720000pt;}
.x17_c00033{left:314.160000pt;}
.x26_c00033{left:317.760000pt;}
.x55_c00033{left:318.720000pt;}
.x39_c00033{left:322.320000pt;}
.x79_c00033{left:325.086603pt;}
.x60_c00033{left:327.002667pt;}
.x1f_c00033{left:329.040000pt;}
.x9_c00033{left:330.960000pt;}
.x36_c00033{left:332.880000pt;}
.x11_c00033{left:333.840000pt;}
.x5c_c00033{left:340.320000pt;}
.x29_c00033{left:343.200000pt;}
.x63_c00033{left:344.640000pt;}
.x6b_c00033{left:346.712000pt;}
.x6f_c00033{left:349.041333pt;}
.x25_c00033{left:352.320000pt;}
.x74_c00033{left:354.101333pt;}
.x51_c00033{left:355.680000pt;}
.x49_c00033{left:358.800000pt;}
.x18_c00033{left:359.760000pt;}
.x6c_c00033{left:360.818667pt;}
.x2a_c00033{left:366.000000pt;}
.x2f_c00033{left:367.440000pt;}
.x5d_c00033{left:369.360000pt;}
.x66_c00033{left:371.366667pt;}
.x20_c00033{left:372.960000pt;}
.x5f_c00033{left:374.400000pt;}
.x12_c00033{left:376.320000pt;}
.x45_c00033{left:380.400000pt;}
.x37_c00033{left:382.800000pt;}
.x30_c00033{left:388.320000pt;}
.xa_c00033{left:391.440000pt;}
.x1_c00033{left:393.120000pt;}
.x3a_c00033{left:396.720000pt;}
.xa7_c00033{left:399.840000pt;}
.x4d_c00033{left:404.880000pt;}
.x38_c00033{left:407.040000pt;}
.xb_c00033{left:408.720000pt;}
.x31_c00033{left:411.600000pt;}
.x2b_c00033{left:417.360000pt;}
.x13_c00033{left:421.440000pt;}
.x46_c00033{left:422.400000pt;}
.x98_c00033{left:423.840000pt;}
.x56_c00033{left:426.480000pt;}
.xc_c00033{left:429.840000pt;}
.x9d_c00033{left:434.880000pt;}
.x2c_c00033{left:436.320000pt;}
.x52_c00033{left:438.720000pt;}
.x8c_c00033{left:440.880000pt;}
.x21_c00033{left:441.840000pt;}
.x3f_c00033{left:444.000000pt;}
.x3b_c00033{left:445.200000pt;}
.x19_c00033{left:446.640000pt;}
.x83_c00033{left:448.320000pt;}
.x57_c00033{left:449.760000pt;}
.x92_c00033{left:451.200000pt;}
.x7e_c00033{left:452.880000pt;}
.x40_c00033{left:454.320000pt;}
.x8d_c00033{left:455.760000pt;}
.x2_c00033{left:457.440000pt;}
.x32_c00033{left:459.360000pt;}
.x3c_c00033{left:461.040000pt;}
.x14_c00033{left:462.960000pt;}
.x7a_c00033{left:464.400000pt;}
.x4e_c00033{left:466.800000pt;}
.x22_c00033{left:468.720000pt;}
.x99_c00033{left:470.640000pt;}
.x7f_c00033{left:472.080000pt;}
.x3_c00033{left:473.280000pt;}
.x7b_c00033{left:474.240000pt;}
.x53_c00033{left:475.440000pt;}
.x8e_c00033{left:476.640000pt;}
.x41_c00033{left:477.600000pt;}
.x8a_c00033{left:479.280000pt;}
.x4a_c00033{left:480.480000pt;}
.x93_c00033{left:482.400000pt;}
.xa8_c00033{left:483.840000pt;}
.x47_c00033{left:486.000000pt;}
.x1a_c00033{left:487.200000pt;}
.x84_c00033{left:493.920000pt;}
.xa9_c00033{left:494.880000pt;}
.x94_c00033{left:497.520000pt;}
.x9a_c00033{left:499.200000pt;}
.xa0_c00033{left:504.480000pt;}
.x4_c00033{left:509.280000pt;}
.x1b_c00033{left:510.480000pt;}
.x80_c00033{left:512.160000pt;}
.x9b_c00033{left:514.320000pt;}
.xd_c00033{left:517.920000pt;}
.x3d_c00033{left:520.800000pt;}
.x8f_c00033{left:523.440000pt;}
.x95_c00033{left:526.320000pt;}
.x9e_c00033{left:527.760000pt;}
.xa3_c00033{left:529.920000pt;}
.x85_c00033{left:532.560000pt;}
.xa1_c00033{left:534.000000pt;}
.x4b_c00033{left:539.520000pt;}
.x90_c00033{left:540.960000pt;}
.x87_c00033{left:543.840000pt;}
.x81_c00033{left:546.240000pt;}
.x9c_c00033{left:548.880000pt;}
.x96_c00033{left:549.840000pt;}
.xa4_c00033{left:552.960000pt;}
.x5_c00033{left:554.880000pt;}
.x9f_c00033{left:556.560000pt;}
.x7c_c00033{left:557.760000pt;}
.x1c_c00033{left:560.160000pt;}
.x8b_c00033{left:562.560000pt;}
.xa5_c00033{left:566.160000pt;}
.x7d_c00033{left:568.080000pt;}
.x97_c00033{left:572.640000pt;}
.x88_c00033{left:578.640000pt;}
.x91_c00033{left:588.000000pt;}
.x89_c00033{left:590.160000pt;}
.xa2_c00033{left:593.040000pt;}
.x82_c00033{left:596.160000pt;}
.x86_c00033{left:600.000000pt;}
.xa6_c00033{left:604.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_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;}
.mf_c00034{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m61_c00034{transform:matrix(0.012120,0.000097,-0.002000,0.249992,0,0);-ms-transform:matrix(0.012120,0.000097,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.012120,0.000097,-0.002000,0.249992,0,0);}
.m11a_c00034{transform:matrix(0.012614,0.000189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.012614,0.000189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.012614,0.000189,-0.003750,0.249972,0,0);}
.md3_c00034{transform:matrix(0.016593,0.000249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.016593,0.000249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.016593,0.000249,-0.003750,0.249972,0,0);}
.mfe_c00034{transform:matrix(0.019313,0.000290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.019313,0.000290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.019313,0.000290,-0.003750,0.249972,0,0);}
.m101_c00034{transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);}
.mc8_c00034{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);}
.mb3_c00034{transform:matrix(0.112997,0.001695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.112997,0.001695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.112997,0.001695,-0.003750,0.249972,0,0);}
.m9a_c00034{transform:matrix(0.132832,0.001860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.132832,0.001860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.132832,0.001860,-0.003500,0.249976,0,0);}
.m26_c00034{transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00034{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m39_c00034{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m99_c00034{transform:matrix(0.149520,0.002093,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149520,0.002093,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149520,0.002093,-0.003500,0.249976,0,0);}
.m78_c00034{transform:matrix(0.150350,0.001203,-0.002000,0.249992,0,0);-ms-transform:matrix(0.150350,0.001203,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.150350,0.001203,-0.002000,0.249992,0,0);}
.m11e_c00034{transform:matrix(0.151578,0.002274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151578,0.002274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151578,0.002274,-0.003750,0.249972,0,0);}
.m75_c00034{transform:matrix(0.153675,0.001229,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153675,0.001229,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153675,0.001229,-0.002000,0.249992,0,0);}
.m64_c00034{transform:matrix(0.154495,0.001236,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154495,0.001236,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154495,0.001236,-0.002000,0.249992,0,0);}
.m12_c00034{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);}
.m111_c00034{transform:matrix(0.154883,0.002323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154883,0.002323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154883,0.002323,-0.003750,0.249972,0,0);}
.m22_c00034{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);}
.m51_c00034{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);}
.m5_c00034{transform:matrix(0.160846,-0.005635,0.008753,0.249847,0,0);-ms-transform:matrix(0.160846,-0.005635,0.008753,0.249847,0,0);-webkit-transform:matrix(0.160846,-0.005635,0.008753,0.249847,0,0);}
.m79_c00034{transform:matrix(0.160875,0.001287,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160875,0.001287,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160875,0.001287,-0.002000,0.249992,0,0);}
.mdd_c00034{transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);}
.m92_c00034{transform:matrix(0.162944,0.002281,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162944,0.002281,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162944,0.002281,-0.003500,0.249976,0,0);}
.m94_c00034{transform:matrix(0.163034,0.002282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163034,0.002282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163034,0.002282,-0.003500,0.249976,0,0);}
.m120_c00034{transform:matrix(0.163182,0.002448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163182,0.002448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163182,0.002448,-0.003750,0.249972,0,0);}
.m24_c00034{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);}
.m2f_c00034{transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{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);}
.m123_c00034{transform:matrix(0.166886,0.002503,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166886,0.002503,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166886,0.002503,-0.003750,0.249972,0,0);}
.m3c_c00034{transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);}
.m98_c00034{transform:matrix(0.168488,0.002359,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168488,0.002359,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168488,0.002359,-0.003500,0.249976,0,0);}
.m134_c00034{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);}
.m116_c00034{transform:matrix(0.169586,0.002544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169586,0.002544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169586,0.002544,-0.003750,0.249972,0,0);}
.m8d_c00034{transform:matrix(0.170813,0.002391,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170813,0.002391,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170813,0.002391,-0.003500,0.249976,0,0);}
.m27_c00034{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);}
.m3e_c00034{transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);}
.m96_c00034{transform:matrix(0.172673,0.002417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172673,0.002417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172673,0.002417,-0.003500,0.249976,0,0);}
.m7d_c00034{transform:matrix(0.173024,0.001384,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173024,0.001384,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173024,0.001384,-0.002000,0.249992,0,0);}
.me3_c00034{transform:matrix(0.173183,0.002771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173183,0.002771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173183,0.002771,-0.003999,0.249968,0,0);}
.m65_c00034{transform:matrix(0.173429,0.001387,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173429,0.001387,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173429,0.001387,-0.002000,0.249992,0,0);}
.mb8_c00034{transform:matrix(0.173820,0.002607,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173820,0.002607,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173820,0.002607,-0.003750,0.249972,0,0);}
.md6_c00034{transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);}
.m69_c00034{transform:matrix(0.174254,0.001394,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174254,0.001394,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174254,0.001394,-0.002000,0.249992,0,0);}
.m50_c00034{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);}
.m122_c00034{transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);}
.m113_c00034{transform:matrix(0.175335,0.002630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175335,0.002630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175335,0.002630,-0.003750,0.249972,0,0);}
.m108_c00034{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);}
.m8f_c00034{transform:matrix(0.177403,0.002484,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177403,0.002484,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177403,0.002484,-0.003500,0.249976,0,0);}
.m35_c00034{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);}
.mf6_c00034{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);}
.m23_c00034{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);}
.m4_c00034{transform:matrix(0.179015,-0.006272,0.008753,0.249847,0,0);-ms-transform:matrix(0.179015,-0.006272,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179015,-0.006272,0.008753,0.249847,0,0);}
.m32_c00034{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);}
.ma6_c00034{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);}
.m13_c00034{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);}
.m21_c00034{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);}
.m36_c00034{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);}
.ma3_c00034{transform:matrix(0.179838,0.003417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179838,0.003417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179838,0.003417,-0.004749,0.249955,0,0);}
.mfa_c00034{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);}
.me5_c00034{transform:matrix(0.180147,0.002882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180147,0.002882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180147,0.002882,-0.003999,0.249968,0,0);}
.mfc_c00034{transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);}
.m59_c00034{transform:matrix(0.180306,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180306,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180306,0.001803,-0.002500,0.249988,0,0);}
.m8e_c00034{transform:matrix(0.180532,0.002527,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180532,0.002527,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180532,0.002527,-0.003500,0.249976,0,0);}
.m107_c00034{transform:matrix(0.180770,0.002712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180770,0.002712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180770,0.002712,-0.003750,0.249972,0,0);}
.m3f_c00034{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);}
.m70_c00034{transform:matrix(0.181214,0.001450,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181214,0.001450,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181214,0.001450,-0.002000,0.249992,0,0);}
.m25_c00034{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);}
.m104_c00034{transform:matrix(0.181880,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181880,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181880,0.002728,-0.003750,0.249972,0,0);}
.mb1_c00034{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);}
.me4_c00034{transform:matrix(0.182937,0.002927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182937,0.002927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182937,0.002927,-0.003999,0.249968,0,0);}
.mc3_c00034{transform:matrix(0.183549,0.002753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183549,0.002753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183549,0.002753,-0.003750,0.249972,0,0);}
.m1b_c00034{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);}
.m66_c00034{transform:matrix(0.184244,0.001474,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184244,0.001474,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184244,0.001474,-0.002000,0.249992,0,0);}
.ma7_c00034{transform:matrix(0.184323,0.003133,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184323,0.003133,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184323,0.003133,-0.004249,0.249964,0,0);}
.m127_c00034{transform:matrix(0.184409,0.002766,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184409,0.002766,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184409,0.002766,-0.003750,0.249972,0,0);}
.m12f_c00034{transform:matrix(0.185164,0.002777,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185164,0.002777,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185164,0.002777,-0.003750,0.249972,0,0);}
.ma4_c00034{transform:matrix(0.185626,0.003527,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185626,0.003527,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185626,0.003527,-0.004749,0.249955,0,0);}
.m15_c00034{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);}
.m1d_c00034{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);}
.m128_c00034{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);}
.me2_c00034{transform:matrix(0.186916,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186916,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186916,0.002991,-0.003999,0.249968,0,0);}
.m105_c00034{transform:matrix(0.187404,0.002811,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187404,0.002811,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187404,0.002811,-0.003750,0.249972,0,0);}
.m11_c00034{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);}
.mcb_c00034{transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);}
.mba_c00034{transform:matrix(0.187729,0.002816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187729,0.002816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187729,0.002816,-0.003750,0.249972,0,0);}
.me7_c00034{transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);}
.m30_c00034{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);}
.m80_c00034{transform:matrix(0.188649,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188649,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188649,0.001509,-0.002000,0.249992,0,0);}
.m74_c00034{transform:matrix(0.188719,0.001510,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188719,0.001510,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188719,0.001510,-0.002000,0.249992,0,0);}
.mcd_c00034{transform:matrix(0.188789,0.002832,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188789,0.002832,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188789,0.002832,-0.003750,0.249972,0,0);}
.m125_c00034{transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);}
.mae_c00034{transform:matrix(0.189399,0.002841,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189399,0.002841,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189399,0.002841,-0.003750,0.249972,0,0);}
.m2b_c00034{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);}
.m52_c00034{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);}
.m3b_c00034{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);}
.m4d_c00034{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);}
.md7_c00034{transform:matrix(0.191001,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191001,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191001,0.002674,-0.003500,0.249976,0,0);}
.m63_c00034{transform:matrix(0.191744,0.001534,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191744,0.001534,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191744,0.001534,-0.002000,0.249992,0,0);}
.m6c_c00034{transform:matrix(0.191959,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191959,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191959,0.001536,-0.002000,0.249992,0,0);}
.m9d_c00034{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);}
.mde_c00034{transform:matrix(0.192270,0.003076,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192270,0.003076,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192270,0.003076,-0.003999,0.249968,0,0);}
.mc5_c00034{transform:matrix(0.192413,0.002886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192413,0.002886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192413,0.002886,-0.003750,0.249972,0,0);}
.m6e_c00034{transform:matrix(0.192569,0.001541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192569,0.001541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192569,0.001541,-0.002000,0.249992,0,0);}
.m20_c00034{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);}
.me9_c00034{transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);}
.m29_c00034{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m97_c00034{transform:matrix(0.194701,0.002726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194701,0.002726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194701,0.002726,-0.003500,0.249976,0,0);}
.m87_c00034{transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);}
.mbc_c00034{transform:matrix(0.194863,0.002923,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194863,0.002923,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194863,0.002923,-0.003750,0.249972,0,0);}
.m8b_c00034{transform:matrix(0.194944,0.001560,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194944,0.001560,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194944,0.001560,-0.002000,0.249992,0,0);}
.mc4_c00034{transform:matrix(0.195143,0.002927,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195143,0.002927,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195143,0.002927,-0.003750,0.249972,0,0);}
.ma1_c00034{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);}
.maa_c00034{transform:matrix(0.195552,0.003324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195552,0.003324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195552,0.003324,-0.004249,0.249964,0,0);}
.m77_c00034{transform:matrix(0.196114,0.001569,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196114,0.001569,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196114,0.001569,-0.002000,0.249992,0,0);}
.mc6_c00034{transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);}
.mee_c00034{transform:matrix(0.196958,0.002954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196958,0.002954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196958,0.002954,-0.003750,0.249972,0,0);}
.m4b_c00034{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);}
.m14_c00034{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);}
.m1e_c00034{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);}
.m9e_c00034{transform:matrix(0.197644,0.003755,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197644,0.003755,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197644,0.003755,-0.004749,0.249955,0,0);}
.m43_c00034{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);}
.m82_c00034{transform:matrix(0.198359,0.001587,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198359,0.001587,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198359,0.001587,-0.002000,0.249992,0,0);}
.mac_c00034{transform:matrix(0.198396,0.003373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198396,0.003373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198396,0.003373,-0.004249,0.249964,0,0);}
.m4c_c00034{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);}
.m11c_c00034{transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);}
.mc7_c00034{transform:matrix(0.199398,0.002991,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199398,0.002991,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199398,0.002991,-0.003750,0.249972,0,0);}
.m10f_c00034{transform:matrix(0.199428,0.002991,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199428,0.002991,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199428,0.002991,-0.003750,0.249972,0,0);}
.mf5_c00034{transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);}
.m2a_c00034{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);}
.m130_c00034{transform:matrix(0.200442,0.003007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200442,0.003007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200442,0.003007,-0.003750,0.249972,0,0);}
.ma9_c00034{transform:matrix(0.200546,0.003409,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200546,0.003409,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200546,0.003409,-0.004249,0.249964,0,0);}
.mc0_c00034{transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);}
.m12e_c00034{transform:matrix(0.201187,0.003018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201187,0.003018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201187,0.003018,-0.003750,0.249972,0,0);}
.mb2_c00034{transform:matrix(0.201527,0.003023,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201527,0.003023,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201527,0.003023,-0.003750,0.249972,0,0);}
.m7c_c00034{transform:matrix(0.201839,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201839,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201839,0.001615,-0.002000,0.249992,0,0);}
.m11d_c00034{transform:matrix(0.202197,0.003033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202197,0.003033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202197,0.003033,-0.003750,0.249972,0,0);}
.m33_c00034{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);}
.ma0_c00034{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);}
.m45_c00034{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);}
.m2c_c00034{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);}
.m11b_c00034{transform:matrix(0.203477,0.003052,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203477,0.003052,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203477,0.003052,-0.003750,0.249972,0,0);}
.m103_c00034{transform:matrix(0.203582,0.003054,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203582,0.003054,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203582,0.003054,-0.003750,0.249972,0,0);}
.mb6_c00034{transform:matrix(0.203617,0.003054,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203617,0.003054,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203617,0.003054,-0.003750,0.249972,0,0);}
.m9b_c00034{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);}
.mdc_c00034{transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);}
.mec_c00034{transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);}
.mfd_c00034{transform:matrix(0.204102,0.003062,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204102,0.003062,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204102,0.003062,-0.003750,0.249972,0,0);}
.m93_c00034{transform:matrix(0.204320,0.002860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204320,0.002860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204320,0.002860,-0.003500,0.249976,0,0);}
.m3a_c00034{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m10a_c00034{transform:matrix(0.204912,0.003074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204912,0.003074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204912,0.003074,-0.003750,0.249972,0,0);}
.mef_c00034{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);}
.m7a_c00034{transform:matrix(0.205238,0.001642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205238,0.001642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205238,0.001642,-0.002000,0.249992,0,0);}
.m90_c00034{transform:matrix(0.205580,0.002878,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205580,0.002878,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205580,0.002878,-0.003500,0.249976,0,0);}
.m106_c00034{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);}
.mf2_c00034{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);}
.m38_c00034{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);}
.mea_c00034{transform:matrix(0.206307,0.003095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206307,0.003095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206307,0.003095,-0.003750,0.249972,0,0);}
.m83_c00034{transform:matrix(0.206398,0.001651,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206398,0.001651,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206398,0.001651,-0.002000,0.249992,0,0);}
.ma5_c00034{transform:matrix(0.206545,0.003511,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206545,0.003511,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206545,0.003511,-0.004249,0.249964,0,0);}
.m12d_c00034{transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);}
.me0_c00034{transform:matrix(0.206764,0.003308,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206764,0.003308,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206764,0.003308,-0.003999,0.249968,0,0);}
.m100_c00034{transform:matrix(0.206952,0.003104,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206952,0.003104,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206952,0.003104,-0.003750,0.249972,0,0);}
.ma8_c00034{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);}
.mb9_c00034{transform:matrix(0.207097,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207097,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207097,0.003106,-0.003750,0.249972,0,0);}
.m118_c00034{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);}
.md4_c00034{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);}
.mf4_c00034{transform:matrix(0.207442,0.003112,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207442,0.003112,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207442,0.003112,-0.003750,0.249972,0,0);}
.m115_c00034{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);}
.m31_c00034{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_c00034{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);}
.m1a_c00034{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);}
.mf0_c00034{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);}
.m72_c00034{transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);}
.m18_c00034{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);}
.m16_c00034{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);}
.m7b_c00034{transform:matrix(0.209188,0.001674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209188,0.001674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209188,0.001674,-0.002000,0.249992,0,0);}
.m119_c00034{transform:matrix(0.209246,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209246,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209246,0.003139,-0.003750,0.249972,0,0);}
.m81_c00034{transform:matrix(0.209478,0.001676,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209478,0.001676,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209478,0.001676,-0.002000,0.249992,0,0);}
.md2_c00034{transform:matrix(0.210446,0.003157,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210446,0.003157,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210446,0.003157,-0.003750,0.249972,0,0);}
.m58_c00034{transform:matrix(0.210559,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210559,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210559,0.002106,-0.002500,0.249988,0,0);}
.m3d_c00034{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);}
.me8_c00034{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);}
.med_c00034{transform:matrix(0.211436,0.003172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211436,0.003172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211436,0.003172,-0.003750,0.249972,0,0);}
.m62_c00034{transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);}
.m112_c00034{transform:matrix(0.211591,0.003174,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211591,0.003174,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211591,0.003174,-0.003750,0.249972,0,0);}
.maf_c00034{transform:matrix(0.211696,0.003175,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211696,0.003175,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211696,0.003175,-0.003750,0.249972,0,0);}
.meb_c00034{transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);}
.m129_c00034{transform:matrix(0.212436,0.003187,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212436,0.003187,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212436,0.003187,-0.003750,0.249972,0,0);}
.mc_c00034{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);}
.m10e_c00034{transform:matrix(0.212786,0.003192,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212786,0.003192,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212786,0.003192,-0.003750,0.249972,0,0);}
.mdf_c00034{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);}
.m114_c00034{transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);}
.m10d_c00034{transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);}
.me_c00034{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);}
.m91_c00034{transform:matrix(0.214189,0.002999,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214189,0.002999,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214189,0.002999,-0.003500,0.249976,0,0);}
.mc1_c00034{transform:matrix(0.214751,0.003221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214751,0.003221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214751,0.003221,-0.003750,0.249972,0,0);}
.m44_c00034{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);}
.md0_c00034{transform:matrix(0.216351,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216351,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216351,0.003245,-0.003750,0.249972,0,0);}
.m4e_c00034{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);}
.m71_c00034{transform:matrix(0.216618,0.001733,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216618,0.001733,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216618,0.001733,-0.002000,0.249992,0,0);}
.m7e_c00034{transform:matrix(0.216863,0.001735,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216863,0.001735,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216863,0.001735,-0.002000,0.249992,0,0);}
.mf7_c00034{transform:matrix(0.216886,0.003253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216886,0.003253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216886,0.003253,-0.003750,0.249972,0,0);}
.m73_c00034{transform:matrix(0.218058,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218058,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218058,0.001744,-0.002000,0.249992,0,0);}
.md9_c00034{transform:matrix(0.218219,0.003055,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218219,0.003055,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218219,0.003055,-0.003500,0.249976,0,0);}
.m67_c00034{transform:matrix(0.218623,0.001749,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218623,0.001749,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218623,0.001749,-0.002000,0.249992,0,0);}
.mcf_c00034{transform:matrix(0.218635,0.003280,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218635,0.003280,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218635,0.003280,-0.003750,0.249972,0,0);}
.md8_c00034{transform:matrix(0.219234,0.003069,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219234,0.003069,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219234,0.003069,-0.003500,0.249976,0,0);}
.m76_c00034{transform:matrix(0.219633,0.001757,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219633,0.001757,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219633,0.001757,-0.002000,0.249992,0,0);}
.md1_c00034{transform:matrix(0.219725,0.003296,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219725,0.003296,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219725,0.003296,-0.003750,0.249972,0,0);}
.m9f_c00034{transform:matrix(0.220000,0.004180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220000,0.004180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220000,0.004180,-0.004749,0.249955,0,0);}
.m88_c00034{transform:matrix(0.220218,0.001762,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220218,0.001762,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220218,0.001762,-0.002000,0.249992,0,0);}
.mda_c00034{transform:matrix(0.220273,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220273,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220273,0.003084,-0.003500,0.249976,0,0);}
.ma2_c00034{transform:matrix(0.220795,0.004195,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220795,0.004195,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220795,0.004195,-0.004749,0.249955,0,0);}
.mfb_c00034{transform:matrix(0.221135,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221135,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221135,0.003317,-0.003750,0.249972,0,0);}
.mc2_c00034{transform:matrix(0.222685,0.003340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222685,0.003340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222685,0.003340,-0.003750,0.249972,0,0);}
.m1c_c00034{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);}
.mb7_c00034{transform:matrix(0.223045,0.003346,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223045,0.003346,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223045,0.003346,-0.003750,0.249972,0,0);}
.me6_c00034{transform:matrix(0.223256,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223256,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223256,0.003572,-0.003999,0.249968,0,0);}
.m2d_c00034{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);}
.m10_c00034{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);}
.m12c_c00034{transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);}
.mdb_c00034{transform:matrix(0.225556,0.003609,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225556,0.003609,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225556,0.003609,-0.003999,0.249968,0,0);}
.m46_c00034{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);}
.m8a_c00034{transform:matrix(0.227333,0.001819,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227333,0.001819,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227333,0.001819,-0.002000,0.249992,0,0);}
.m8c_c00034{transform:matrix(0.227868,0.003190,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227868,0.003190,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227868,0.003190,-0.003500,0.249976,0,0);}
.mb5_c00034{transform:matrix(0.228219,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228219,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228219,0.003423,-0.003750,0.249972,0,0);}
.m102_c00034{transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);}
.m68_c00034{transform:matrix(0.228803,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228803,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228803,0.001830,-0.002000,0.249992,0,0);}
.m85_c00034{transform:matrix(0.230138,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230138,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230138,0.001841,-0.002000,0.249992,0,0);}
.m86_c00034{transform:matrix(0.231488,0.001852,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231488,0.001852,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231488,0.001852,-0.002000,0.249992,0,0);}
.mf8_c00034{transform:matrix(0.232859,0.003493,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232859,0.003493,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232859,0.003493,-0.003750,0.249972,0,0);}
.m121_c00034{transform:matrix(0.234489,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234489,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234489,0.003517,-0.003750,0.249972,0,0);}
.m6b_c00034{transform:matrix(0.235152,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235152,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235152,0.001881,-0.002000,0.249992,0,0);}
.m10c_c00034{transform:matrix(0.236128,0.003542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236128,0.003542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236128,0.003542,-0.003750,0.249972,0,0);}
.m9c_c00034{transform:matrix(0.236207,0.004488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236207,0.004488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236207,0.004488,-0.004749,0.249955,0,0);}
.m41_c00034{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.mff_c00034{transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);}
.m117_c00034{transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);}
.m126_c00034{transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);}
.m6a_c00034{transform:matrix(0.239447,0.001916,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239447,0.001916,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239447,0.001916,-0.002000,0.249992,0,0);}
.m34_c00034{transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);}
.mbf_c00034{transform:matrix(0.240328,0.003605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240328,0.003605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240328,0.003605,-0.003750,0.249972,0,0);}
.m42_c00034{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m109_c00034{transform:matrix(0.243473,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243473,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243473,0.003652,-0.003750,0.249972,0,0);}
.m60_c00034{transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);}
.m37_c00034{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);}
.m56_c00034{transform:matrix(0.246663,0.002467,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246663,0.002467,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246663,0.002467,-0.002500,0.249988,0,0);}
.m84_c00034{transform:matrix(0.248992,0.001992,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248992,0.001992,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248992,0.001992,-0.002000,0.249992,0,0);}
.m4f_c00034{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);}
.mf3_c00034{transform:matrix(0.249767,0.003747,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249767,0.003747,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249767,0.003747,-0.003750,0.249972,0,0);}
.m55_c00034{transform:matrix(0.249993,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249993,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249993,0.002500,-0.002500,0.249988,0,0);}
.m54_c00034{transform:matrix(0.250827,0.002508,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250827,0.002508,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250827,0.002508,-0.002500,0.249988,0,0);}
.m95_c00034{transform:matrix(0.251975,0.003528,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251975,0.003528,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251975,0.003528,-0.003500,0.249976,0,0);}
.m12a_c00034{transform:matrix(0.253806,0.003807,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253806,0.003807,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253806,0.003807,-0.003750,0.249972,0,0);}
.m49_c00034{transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);}
.m6d_c00034{transform:matrix(0.257552,0.002060,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257552,0.002060,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257552,0.002060,-0.002000,0.249992,0,0);}
.md5_c00034{transform:matrix(0.257960,0.003611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257960,0.003611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257960,0.003611,-0.003500,0.249976,0,0);}
.m7f_c00034{transform:matrix(0.258337,0.002067,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258337,0.002067,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258337,0.002067,-0.002000,0.249992,0,0);}
.mce_c00034{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);}
.mf9_c00034{transform:matrix(0.263460,0.003952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263460,0.003952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263460,0.003952,-0.003750,0.249972,0,0);}
.mbd_c00034{transform:matrix(0.264360,0.003965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264360,0.003965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264360,0.003965,-0.003750,0.249972,0,0);}
.m2_c00034{transform:matrix(0.265297,-0.009295,0.008753,0.249847,0,0);-ms-transform:matrix(0.265297,-0.009295,0.008753,0.249847,0,0);-webkit-transform:matrix(0.265297,-0.009295,0.008753,0.249847,0,0);}
.mab_c00034{transform:matrix(0.267171,0.004542,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267171,0.004542,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267171,0.004542,-0.004249,0.249964,0,0);}
.m40_c00034{transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);}
.m28_c00034{transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);}
.m89_c00034{transform:matrix(0.271471,0.002172,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271471,0.002172,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271471,0.002172,-0.002000,0.249992,0,0);}
.m6f_c00034{transform:matrix(0.271526,0.002172,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271526,0.002172,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271526,0.002172,-0.002000,0.249992,0,0);}
.m5b_c00034{transform:matrix(0.277541,0.002775,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277541,0.002775,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277541,0.002775,-0.002500,0.249988,0,0);}
.m5e_c00034{transform:matrix(0.278806,0.002230,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278806,0.002230,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278806,0.002230,-0.002000,0.249992,0,0);}
.mf1_c00034{transform:matrix(0.283438,0.004252,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283438,0.004252,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283438,0.004252,-0.003750,0.249972,0,0);}
.m131_c00034{transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);}
.mbb_c00034{transform:matrix(0.286353,0.004295,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286353,0.004295,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286353,0.004295,-0.003750,0.249972,0,0);}
.m47_c00034{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00034{transform:matrix(0.293387,0.004401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293387,0.004401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293387,0.004401,-0.003750,0.249972,0,0);}
.ma_c00034{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);}
.m1f_c00034{transform:matrix(0.297070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297070,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{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);}
.m9_c00034{transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309305,0.000000,0.000000,0.250000,0,0);}
.m135_c00034{transform:matrix(0.309756,0.007434,-0.005998,0.249928,0,0);-ms-transform:matrix(0.309756,0.007434,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.309756,0.007434,-0.005998,0.249928,0,0);}
.m133_c00034{transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);}
.m5a_c00034{transform:matrix(0.314874,0.003149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.314874,0.003149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.314874,0.003149,-0.002500,0.249988,0,0);}
.m8_c00034{transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329105,0.000000,0.000000,0.250000,0,0);}
.m53_c00034{transform:matrix(0.332033,0.003320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332033,0.003320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332033,0.003320,-0.002500,0.249988,0,0);}
.mbe_c00034{transform:matrix(0.335492,0.005032,-0.003750,0.249972,0,0);-ms-transform:matrix(0.335492,0.005032,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.335492,0.005032,-0.003750,0.249972,0,0);}
.m5c_c00034{transform:matrix(0.341463,0.003415,-0.002500,0.249988,0,0);-ms-transform:matrix(0.341463,0.003415,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.341463,0.003415,-0.002500,0.249988,0,0);}
.m4a_c00034{transform:matrix(0.341595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341595,0.000000,0.000000,0.250000,0,0);}
.m5f_c00034{transform:matrix(0.342429,0.002739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.342429,0.002739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.342429,0.002739,-0.002000,0.249992,0,0);}
.m3_c00034{transform:matrix(0.344873,-0.012083,0.008753,0.249847,0,0);-ms-transform:matrix(0.344873,-0.012083,0.008753,0.249847,0,0);-webkit-transform:matrix(0.344873,-0.012083,0.008753,0.249847,0,0);}
.m110_c00034{transform:matrix(0.345201,0.005178,-0.003750,0.249972,0,0);-ms-transform:matrix(0.345201,0.005178,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.345201,0.005178,-0.003750,0.249972,0,0);}
.mb0_c00034{transform:matrix(0.349791,0.005247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349791,0.005247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349791,0.005247,-0.003750,0.249972,0,0);}
.mcc_c00034{transform:matrix(0.355110,0.005327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.355110,0.005327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.355110,0.005327,-0.003750,0.249972,0,0);}
.m0_c00034{transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);}
.me1_c00034{transform:matrix(0.369128,0.005906,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369128,0.005906,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369128,0.005906,-0.003999,0.249968,0,0);}
.m12b_c00034{transform:matrix(0.371368,0.005571,-0.003750,0.249972,0,0);-ms-transform:matrix(0.371368,0.005571,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.371368,0.005571,-0.003750,0.249972,0,0);}
.mb4_c00034{transform:matrix(0.374383,0.005616,-0.003750,0.249972,0,0);-ms-transform:matrix(0.374383,0.005616,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.374383,0.005616,-0.003750,0.249972,0,0);}
.m11f_c00034{transform:matrix(0.478631,0.007179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.478631,0.007179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.478631,0.007179,-0.003750,0.249972,0,0);}
.mc9_c00034{transform:matrix(0.632329,0.009485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.632329,0.009485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.632329,0.009485,-0.003750,0.249972,0,0);}
.md_c00034{transform:matrix(0.637775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637775,0.000000,0.000000,0.250000,0,0);}
.m57_c00034{transform:matrix(0.648563,0.006486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.648563,0.006486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.648563,0.006486,-0.002500,0.249988,0,0);}
.m124_c00034{transform:matrix(0.671584,0.010074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.671584,0.010074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.671584,0.010074,-0.003750,0.249972,0,0);}
.mca_c00034{transform:matrix(0.675144,0.010127,-0.003750,0.249972,0,0);-ms-transform:matrix(0.675144,0.010127,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.675144,0.010127,-0.003750,0.249972,0,0);}
.m5d_c00034{transform:matrix(0.741386,0.005931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.741386,0.005931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.741386,0.005931,-0.002000,0.249992,0,0);}
.m132_c00034{transform:matrix(0.767750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767750,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(1.031772,-0.036148,0.008753,0.249847,0,0);-ms-transform:matrix(1.031772,-0.036148,0.008753,0.249847,0,0);-webkit-transform:matrix(1.031772,-0.036148,0.008753,0.249847,0,0);}
.mad_c00034{transform:matrix(7.145021,0.107175,-0.003750,0.249972,0,0);-ms-transform:matrix(7.145021,0.107175,-0.003750,0.249972,0,0);-webkit-transform:matrix(7.145021,0.107175,-0.003750,0.249972,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;}
.fs18_c00034{font-size:48.304733px;}
.fs16_c00034{font-size:49.355552px;}
.fs15_c00034{font-size:50.405670px;}
.fs17_c00034{font-size:51.455788px;}
.fs0_c00034{font-size:52.500000px;}
.fs14_c00034{font-size:52.505906px;}
.fs19_c00034{font-size:52.506720px;}
.fs1a_c00034{font-size:58.800000px;}
.fsd_c00034{font-size:61.951982px;}
.fsa_c00034{font-size:61.953097px;}
.fs8_c00034{font-size:63.000000px;}
.fsb_c00034{font-size:63.002016px;}
.fs3_c00034{font-size:65.100000px;}
.fsf_c00034{font-size:65.102083px;}
.fs10_c00034{font-size:65.106379px;}
.fs12_c00034{font-size:66.161939px;}
.fs5_c00034{font-size:68.250000px;}
.fs13_c00034{font-size:68.259861px;}
.fs7_c00034{font-size:69.300000px;}
.fsc_c00034{font-size:69.302218px;}
.fs9_c00034{font-size:71.400000px;}
.fse_c00034{font-size:71.402285px;}
.fs6_c00034{font-size:72.450000px;}
.fs4_c00034{font-size:73.500000px;}
.fs11_c00034{font-size:73.507203px;}
.fs1_c00034{font-size:142.744726px;}
.fs2_c00034{font-size:145.893506px;}
.fs1b_c00034{font-size:148.092632px;}
.y0_c00034{bottom:0.000000px;}
.yf7_c00034{bottom:160.998000px;}
.yf6_c00034{bottom:198.364500px;}
.yf5_c00034{bottom:215.401995px;}
.yf4_c00034{bottom:215.729693px;}
.yf3_c00034{bottom:216.153923px;}
.yf2_c00034{bottom:216.679553px;}
.yf1_c00034{bottom:217.416735px;}
.yf0_c00034{bottom:217.616925px;}
.yef_c00034{bottom:218.225138px;}
.yee_c00034{bottom:218.621910px;}
.yed_c00034{bottom:219.204105px;}
.yec_c00034{bottom:219.650460px;}
.yeb_c00034{bottom:220.103123px;}
.yea_c00034{bottom:220.402388px;}
.ye9_c00034{bottom:220.844738px;}
.ye8_c00034{bottom:232.004783px;}
.ye7_c00034{bottom:232.612935px;}
.ye6_c00034{bottom:232.969178px;}
.ye5_c00034{bottom:233.227793px;}
.ye4_c00034{bottom:233.574923px;}
.ye3_c00034{bottom:233.657115px;}
.ye2_c00034{bottom:233.933213px;}
.ye1_c00034{bottom:234.593588px;}
.ye0_c00034{bottom:235.233533px;}
.ydf_c00034{bottom:237.991830px;}
.yde_c00034{bottom:238.433348px;}
.ydd_c00034{bottom:238.951500px;}
.ydc_c00034{bottom:250.003695px;}
.ydb_c00034{bottom:250.385205px;}
.yda_c00034{bottom:250.903538px;}
.yd9_c00034{bottom:251.486918px;}
.yd8_c00034{bottom:252.013125px;}
.yd7_c00034{bottom:252.762848px;}
.yd6_c00034{bottom:253.074653px;}
.yd5_c00034{bottom:253.273755px;}
.yd4_c00034{bottom:253.580115px;}
.yd3_c00034{bottom:253.921013px;}
.yd2_c00034{bottom:254.435678px;}
.yd1_c00034{bottom:255.557460px;}
.yd0_c00034{bottom:255.841118px;}
.ycf_c00034{bottom:256.335780px;}
.yce_c00034{bottom:256.773000px;}
.ycd_c00034{bottom:268.083540px;}
.ycc_c00034{bottom:268.621762px;}
.ycb_c00034{bottom:269.088008px;}
.yca_c00034{bottom:269.424292px;}
.yc9_c00034{bottom:269.728065px;}
.yc8_c00034{bottom:270.206032px;}
.yc7_c00034{bottom:270.866295px;}
.yc6_c00034{bottom:271.089562px;}
.yc5_c00034{bottom:273.284843px;}
.yc4_c00034{bottom:273.859402px;}
.yc3_c00034{bottom:273.955500px;}
.yc2_c00034{bottom:285.760830px;}
.yc1_c00034{bottom:286.170735px;}
.yc0_c00034{bottom:286.951867px;}
.ybf_c00034{bottom:287.255393px;}
.ybe_c00034{bottom:287.543572px;}
.ybd_c00034{bottom:288.280897px;}
.ybc_c00034{bottom:288.851767px;}
.ybb_c00034{bottom:289.645905px;}
.yba_c00034{bottom:290.179785px;}
.yb9_c00034{bottom:291.128295px;}
.yb8_c00034{bottom:291.517118px;}
.yb7_c00034{bottom:292.014615px;}
.yb6_c00034{bottom:292.413000px;}
.yb5_c00034{bottom:303.899595px;}
.yb4_c00034{bottom:304.495125px;}
.yb3_c00034{bottom:304.956600px;}
.yb2_c00034{bottom:305.495250px;}
.yb1_c00034{bottom:305.900633px;}
.yb0_c00034{bottom:306.767423px;}
.yaf_c00034{bottom:309.234143px;}
.yae_c00034{bottom:309.691500px;}
.yad_c00034{bottom:321.371184px;}
.yac_c00034{bottom:321.639048px;}
.yab_c00034{bottom:322.049592px;}
.yaa_c00034{bottom:322.805088px;}
.ya9_c00034{bottom:323.501208px;}
.ya8_c00034{bottom:324.162144px;}
.ya7_c00034{bottom:324.577224px;}
.ya6_c00034{bottom:324.815904px;}
.ya5_c00034{bottom:325.692120px;}
.ya4_c00034{bottom:326.244168px;}
.ya3_c00034{bottom:326.754408px;}
.ya2_c00034{bottom:327.325128px;}
.ya1_c00034{bottom:327.825360px;}
.ya0_c00034{bottom:328.323000px;}
.y9f_c00034{bottom:339.979686px;}
.y9e_c00034{bottom:340.675143px;}
.y9d_c00034{bottom:341.234478px;}
.y9c_c00034{bottom:341.589966px;}
.y9b_c00034{bottom:341.775333px;}
.y9a_c00034{bottom:342.901500px;}
.y99_c00034{bottom:345.741697px;}
.y98_c00034{bottom:357.467977px;}
.y97_c00034{bottom:357.849060px;}
.y96_c00034{bottom:358.918148px;}
.y95_c00034{bottom:359.700022px;}
.y94_c00034{bottom:360.238605px;}
.y93_c00034{bottom:360.465495px;}
.y92_c00034{bottom:360.988013px;}
.y91_c00034{bottom:361.210988px;}
.y90_c00034{bottom:361.582868px;}
.y8f_c00034{bottom:362.393678px;}
.y8e_c00034{bottom:363.582983px;}
.y8d_c00034{bottom:363.676110px;}
.y8c_c00034{bottom:364.501275px;}
.y8b_c00034{bottom:375.646365px;}
.y8a_c00034{bottom:376.087095px;}
.y89_c00034{bottom:376.448242px;}
.y88_c00034{bottom:376.934310px;}
.y87_c00034{bottom:377.124705px;}
.y86_c00034{bottom:378.185873px;}
.y85_c00034{bottom:378.635243px;}
.y84_c00034{bottom:380.713028px;}
.y83_c00034{bottom:381.390345px;}
.y82_c00034{bottom:381.653190px;}
.y81_c00034{bottom:382.086608px;}
.y80_c00034{bottom:382.333500px;}
.y7f_c00034{bottom:393.374760px;}
.y7e_c00034{bottom:393.693878px;}
.y7d_c00034{bottom:394.445325px;}
.y7c_c00034{bottom:394.712603px;}
.y7b_c00034{bottom:395.185808px;}
.y7a_c00034{bottom:395.497853px;}
.y79_c00034{bottom:395.843018px;}
.y78_c00034{bottom:396.012120px;}
.y77_c00034{bottom:396.168660px;}
.y76_c00034{bottom:396.851138px;}
.y75_c00034{bottom:397.152960px;}
.y74_c00034{bottom:398.107358px;}
.y73_c00034{bottom:398.830838px;}
.y72_c00034{bottom:399.059453px;}
.y71_c00034{bottom:417.960000px;}
.y70_c00034{bottom:429.591684px;}
.y6f_c00034{bottom:430.112929px;}
.y6e_c00034{bottom:430.863012px;}
.y6d_c00034{bottom:431.786877px;}
.y6c_c00034{bottom:432.066994px;}
.y6b_c00034{bottom:433.058842px;}
.y6a_c00034{bottom:434.229369px;}
.y69_c00034{bottom:434.973000px;}
.y68_c00034{bottom:451.748769px;}
.y67_c00034{bottom:452.581909px;}
.y66_c00034{bottom:453.074104px;}
.y65_c00034{bottom:454.192929px;}
.y64_c00034{bottom:454.945728px;}
.y63_c00034{bottom:456.224238px;}
.y62_c00034{bottom:456.963414px;}
.y61_c00034{bottom:457.642512px;}
.y60_c00034{bottom:458.194500px;}
.y5f_c00034{bottom:477.528051px;}
.y5e_c00034{bottom:478.106748px;}
.y5d_c00034{bottom:478.525551px;}
.y5c_c00034{bottom:479.089506px;}
.y5b_c00034{bottom:479.452344px;}
.y5a_c00034{bottom:480.053511px;}
.y59_c00034{bottom:480.333000px;}
.y58_c00034{bottom:498.987132px;}
.y57_c00034{bottom:499.897965px;}
.y56_c00034{bottom:500.329221px;}
.y55_c00034{bottom:500.717511px;}
.y54_c00034{bottom:501.301416px;}
.y53_c00034{bottom:501.735486px;}
.y52_c00034{bottom:502.067097px;}
.y51_c00034{bottom:502.638927px;}
.y50_c00034{bottom:503.013000px;}
.y4f_c00034{bottom:522.262104px;}
.y4e_c00034{bottom:522.484260px;}
.y4d_c00034{bottom:522.708576px;}
.y4c_c00034{bottom:523.224696px;}
.y4b_c00034{bottom:523.540356px;}
.y4a_c00034{bottom:524.195844px;}
.y49_c00034{bottom:524.412108px;}
.y48_c00034{bottom:525.146640px;}
.y47_c00034{bottom:544.268796px;}
.y46_c00034{bottom:544.732560px;}
.y45_c00034{bottom:545.438352px;}
.y44_c00034{bottom:545.855868px;}
.y43_c00034{bottom:546.129276px;}
.y42_c00034{bottom:546.812568px;}
.y41_c00034{bottom:547.315344px;}
.y40_c00034{bottom:547.596180px;}
.y3f_c00034{bottom:548.368392px;}
.y3e_c00034{bottom:568.137072px;}
.y3d_c00034{bottom:568.614192px;}
.y3c_c00034{bottom:568.838220px;}
.y3b_c00034{bottom:569.454084px;}
.y3a_c00034{bottom:569.936916px;}
.y39_c00034{bottom:570.158928px;}
.y38_c00034{bottom:570.681024px;}
.y37_c00034{bottom:571.319220px;}
.y36_c00034{bottom:588.807480px;}
.y35_c00034{bottom:589.340040px;}
.y34_c00034{bottom:589.630932px;}
.y33_c00034{bottom:590.848548px;}
.y32_c00034{bottom:591.317388px;}
.y31_c00034{bottom:591.762828px;}
.y30_c00034{bottom:591.965940px;}
.y2f_c00034{bottom:592.836672px;}
.y2e_c00034{bottom:593.460156px;}
.y2d_c00034{bottom:612.455100px;}
.y2c_c00034{bottom:612.711276px;}
.y2b_c00034{bottom:613.641876px;}
.y2a_c00034{bottom:613.911120px;}
.y29_c00034{bottom:614.578092px;}
.y28_c00034{bottom:615.032100px;}
.y27_c00034{bottom:615.348276px;}
.y26_c00034{bottom:615.870396px;}
.y25_c00034{bottom:634.916016px;}
.y24_c00034{bottom:635.426004px;}
.y23_c00034{bottom:636.054912px;}
.y22_c00034{bottom:637.457076px;}
.y21_c00034{bottom:638.011500px;}
.y20_c00034{bottom:678.750990px;}
.y1f_c00034{bottom:678.964305px;}
.y1e_c00034{bottom:679.142490px;}
.y1d_c00034{bottom:679.550280px;}
.y1c_c00034{bottom:679.758150px;}
.y1b_c00034{bottom:680.419590px;}
.y1a_c00034{bottom:680.738340px;}
.y19_c00034{bottom:681.110970px;}
.y18_c00034{bottom:681.380985px;}
.y17_c00034{bottom:681.637500px;}
.y16_c00034{bottom:699.988500px;}
.y15_c00034{bottom:700.513500px;}
.y14_c00034{bottom:701.011500px;}
.y13_c00034{bottom:701.616000px;}
.y12_c00034{bottom:702.478500px;}
.y11_c00034{bottom:702.790500px;}
.y10_c00034{bottom:703.426500px;}
.yf_c00034{bottom:703.893000px;}
.ye_c00034{bottom:724.782000px;}
.yd_c00034{bottom:747.651000px;}
.yc_c00034{bottom:771.096000px;}
.yb_c00034{bottom:793.563000px;}
.ya_c00034{bottom:815.775000px;}
.y9_c00034{bottom:838.857000px;}
.y8_c00034{bottom:861.646500px;}
.y7_c00034{bottom:884.731500px;}
.y4_c00034{bottom:925.453693px;}
.y5_c00034{bottom:925.461503px;}
.y6_c00034{bottom:925.463608px;}
.y2_c00034{bottom:967.446000px;}
.y3_c00034{bottom:978.577417px;}
.y1_c00034{bottom:1003.861500px;}
.h1a_c00034{height:48.304733px;}
.h18_c00034{height:49.355552px;}
.h17_c00034{height:50.405670px;}
.h19_c00034{height:51.455788px;}
.h2_c00034{height:52.500000px;}
.h16_c00034{height:52.505906px;}
.h1b_c00034{height:52.506720px;}
.h1c_c00034{height:58.800000px;}
.hf_c00034{height:61.951982px;}
.hc_c00034{height:61.953097px;}
.ha_c00034{height:63.000000px;}
.hd_c00034{height:63.002016px;}
.h5_c00034{height:65.100000px;}
.h11_c00034{height:65.102083px;}
.h12_c00034{height:65.106379px;}
.h14_c00034{height:66.161939px;}
.h7_c00034{height:68.250000px;}
.h15_c00034{height:68.259861px;}
.h9_c00034{height:69.300000px;}
.he_c00034{height:69.302218px;}
.hb_c00034{height:71.400000px;}
.h10_c00034{height:71.402285px;}
.h8_c00034{height:72.450000px;}
.h6_c00034{height:73.500000px;}
.h13_c00034{height:73.507203px;}
.h3_c00034{height:142.744726px;}
.h4_c00034{height:145.893506px;}
.h1d_c00034{height:148.092632px;}
.h1_c00034{height:1080.000000px;}
.h0_c00034{height:1080.270000px;}
.w1_c00034{width:768.000000px;}
.w0_c00034{width:768.150000px;}
.x0_c00034{left:0.000000px;}
.x6e_c00034{left:105.697680px;}
.x2_c00034{left:108.061500px;}
.xa5_c00034{left:113.130000px;}
.x91_c00034{left:115.374000px;}
.x7e_c00034{left:118.301288px;}
.x6f_c00034{left:123.239197px;}
.x1_c00034{left:132.840000px;}
.x18_c00034{left:135.810000px;}
.x10_c00034{left:137.970000px;}
.x9f_c00034{left:139.452000px;}
.x2e_c00034{left:141.210000px;}
.x4b_c00034{left:142.408752px;}
.x7_c00034{left:143.910000px;}
.x11_c00034{left:145.530000px;}
.x87_c00034{left:149.751000px;}
.x76_c00034{left:151.605000px;}
.x83_c00034{left:158.767560px;}
.xa2_c00034{left:160.796910px;}
.x62_c00034{left:162.619500px;}
.x8_c00034{left:167.400000px;}
.x77_c00034{left:169.128000px;}
.x25_c00034{left:170.910000px;}
.x35_c00034{left:172.800000px;}
.x92_c00034{left:175.099500px;}
.x1f_c00034{left:176.850000px;}
.x3d_c00034{left:179.103000px;}
.x19_c00034{left:180.630000px;}
.x4_c00034{left:181.952582px;}
.x12_c00034{left:184.680000px;}
.x2b_c00034{left:186.030000px;}
.x51_c00034{left:187.192860px;}
.x6a_c00034{left:189.052500px;}
.x96_c00034{left:190.449000px;}
.xa3_c00034{left:193.174905px;}
.x40_c00034{left:194.815500px;}
.x54_c00034{left:196.097196px;}
.x58_c00034{left:201.518376px;}
.x9_c00034{left:204.390000px;}
.x48_c00034{left:205.938000px;}
.x66_c00034{left:207.663000px;}
.x1a_c00034{left:208.980000px;}
.x4c_c00034{left:212.318520px;}
.x78_c00034{left:214.282500px;}
.x13_c00034{left:216.000000px;}
.x5b_c00034{left:218.030472px;}
.x2c_c00034{left:222.480000px;}
.xa4_c00034{left:225.032378px;}
.x36_c00034{left:228.960000px;}
.x41_c00034{left:232.078500px;}
.x55_c00034{left:239.607804px;}
.xa_c00034{left:240.840000px;}
.x67_c00034{left:246.567000px;}
.x88_c00034{left:248.575500px;}
.x4d_c00034{left:250.130808px;}
.x3e_c00034{left:252.060000px;}
.x37_c00034{left:254.340000px;}
.x2f_c00034{left:258.390000px;}
.x26_c00034{left:261.630000px;}
.x42_c00034{left:263.953500px;}
.x20_c00034{left:265.680000px;}
.x14_c00034{left:267.300000px;}
.xb_c00034{left:268.380000px;}
.x1b_c00034{left:269.730000px;}
.x63_c00034{left:271.759500px;}
.x70_c00034{left:275.523765px;}
.x38_c00034{left:282.960000px;}
.x30_c00034{left:290.250000px;}
.x2d_c00034{left:292.140000px;}
.x27_c00034{left:295.110000px;}
.xc_c00034{left:297.000000px;}
.x21_c00034{left:298.890000px;}
.x64_c00034{left:301.674000px;}
.x1c_c00034{left:305.370000px;}
.x7f_c00034{left:312.861788px;}
.x59_c00034{left:314.376864px;}
.x6b_c00034{left:316.251000px;}
.x39_c00034{left:318.600000px;}
.x15_c00034{left:323.190000px;}
.x22_c00034{left:326.970000px;}
.x4e_c00034{left:328.155312px;}
.x43_c00034{left:330.097500px;}
.xd_c00034{left:331.830000px;}
.x60_c00034{left:333.001500px;}
.x5a_c00034{left:335.427024px;}
.x5c_c00034{left:336.830076px;}
.x89_c00034{left:337.842000px;}
.x9a_c00034{left:338.961000px;}
.x71_c00034{left:340.060200px;}
.x65_c00034{left:343.009500px;}
.x31_c00034{left:344.250000px;}
.x56_c00034{left:349.755288px;}
.x44_c00034{left:350.884500px;}
.x9b_c00034{left:352.234500px;}
.x68_c00034{left:353.478000px;}
.x16_c00034{left:359.910000px;}
.x28_c00034{left:362.880000px;}
.x1d_c00034{left:365.580000px;}
.xe_c00034{left:368.550000px;}
.x32_c00034{left:371.250000px;}
.x3a_c00034{left:373.680000px;}
.x72_c00034{left:379.545870px;}
.x49_c00034{left:381.208500px;}
.x79_c00034{left:382.759500px;}
.x6c_c00034{left:387.073500px;}
.x5d_c00034{left:388.406748px;}
.x45_c00034{left:391.663500px;}
.x1e_c00034{left:393.390000px;}
.x97_c00034{left:395.703000px;}
.x3f_c00034{left:403.248000px;}
.x4f_c00034{left:405.665328px;}
.x57_c00034{left:408.146916px;}
.x46_c00034{left:409.482000px;}
.x5e_c00034{left:410.820888px;}
.x5_c00034{left:413.253623px;}
.x52_c00034{left:416.149368px;}
.x23_c00034{left:419.040000px;}
.x17_c00034{left:422.280000px;}
.x3_c00034{left:425.783960px;}
.x50_c00034{left:426.999144px;}
.x61_c00034{left:428.865000px;}
.x47_c00034{left:430.813500px;}
.x5f_c00034{left:432.965028px;}
.x33_c00034{left:436.590000px;}
.x29_c00034{left:438.480000px;}
.x73_c00034{left:439.997693px;}
.x24_c00034{left:442.800000px;}
.x84_c00034{left:446.742000px;}
.xf_c00034{left:447.930000px;}
.x7a_c00034{left:453.504000px;}
.x3b_c00034{left:456.840000px;}
.x9c_c00034{left:458.083500px;}
.x93_c00034{left:459.214500px;}
.x2a_c00034{left:460.620000px;}
.x6d_c00034{left:461.857500px;}
.x8a_c00034{left:463.518000px;}
.x7b_c00034{left:466.197000px;}
.x98_c00034{left:470.238000px;}
.x85_c00034{left:472.134000px;}
.x8e_c00034{left:473.488500px;}
.x53_c00034{left:475.015548px;}
.x6_c00034{left:479.648066px;}
.x69_c00034{left:482.118000px;}
.xa0_c00034{left:486.489000px;}
.x80_c00034{left:490.509788px;}
.x9d_c00034{left:496.975500px;}
.x7c_c00034{left:498.601500px;}
.x99_c00034{left:501.321000px;}
.x8f_c00034{left:504.253500px;}
.x8b_c00034{left:510.736500px;}
.x86_c00034{left:512.086500px;}
.x34_c00034{left:513.270000px;}
.x74_c00034{left:518.315033px;}
.x4a_c00034{left:523.570500px;}
.x3c_c00034{left:527.850000px;}
.x94_c00034{left:531.525000px;}
.x8c_c00034{left:536.395500px;}
.x75_c00034{left:542.890275px;}
.x90_c00034{left:543.955500px;}
.x7d_c00034{left:552.060000px;}
.x8d_c00034{left:553.137000px;}
.x9e_c00034{left:556.965000px;}
.x95_c00034{left:558.852000px;}
.x81_c00034{left:561.782288px;}
.xa1_c00034{left:568.023000px;}
.x82_c00034{left:587.187788px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs18_c00034{font-size:42.937541pt;}
.fs16_c00034{font-size:43.871601pt;}
.fs15_c00034{font-size:44.805040pt;}
.fs17_c00034{font-size:45.738478pt;}
.fs0_c00034{font-size:46.666667pt;}
.fs14_c00034{font-size:46.671916pt;}
.fs19_c00034{font-size:46.672640pt;}
.fs1a_c00034{font-size:52.266667pt;}
.fsd_c00034{font-size:55.068429pt;}
.fsa_c00034{font-size:55.069420pt;}
.fs8_c00034{font-size:56.000000pt;}
.fsb_c00034{font-size:56.001792pt;}
.fs3_c00034{font-size:57.866667pt;}
.fsf_c00034{font-size:57.868518pt;}
.fs10_c00034{font-size:57.872337pt;}
.fs12_c00034{font-size:58.810612pt;}
.fs5_c00034{font-size:60.666667pt;}
.fs13_c00034{font-size:60.675432pt;}
.fs7_c00034{font-size:61.600000pt;}
.fsc_c00034{font-size:61.601971pt;}
.fs9_c00034{font-size:63.466667pt;}
.fse_c00034{font-size:63.468698pt;}
.fs6_c00034{font-size:64.400000pt;}
.fs4_c00034{font-size:65.333333pt;}
.fs11_c00034{font-size:65.339736pt;}
.fs1_c00034{font-size:126.884201pt;}
.fs2_c00034{font-size:129.683117pt;}
.fs1b_c00034{font-size:131.637895pt;}
.y0_c00034{bottom:0.000000pt;}
.yf7_c00034{bottom:143.109333pt;}
.yf6_c00034{bottom:176.324000pt;}
.yf5_c00034{bottom:191.468440pt;}
.yf4_c00034{bottom:191.759727pt;}
.yf3_c00034{bottom:192.136820pt;}
.yf2_c00034{bottom:192.604047pt;}
.yf1_c00034{bottom:193.259320pt;}
.yf0_c00034{bottom:193.437267pt;}
.yef_c00034{bottom:193.977900pt;}
.yee_c00034{bottom:194.330587pt;}
.yed_c00034{bottom:194.848093pt;}
.yec_c00034{bottom:195.244853pt;}
.yeb_c00034{bottom:195.647220pt;}
.yea_c00034{bottom:195.913233pt;}
.ye9_c00034{bottom:196.306433pt;}
.ye8_c00034{bottom:206.226473pt;}
.ye7_c00034{bottom:206.767053pt;}
.ye6_c00034{bottom:207.083713pt;}
.ye5_c00034{bottom:207.313593pt;}
.ye4_c00034{bottom:207.622153pt;}
.ye3_c00034{bottom:207.695213pt;}
.ye2_c00034{bottom:207.940633pt;}
.ye1_c00034{bottom:208.527633pt;}
.ye0_c00034{bottom:209.096473pt;}
.ydf_c00034{bottom:211.548293pt;}
.yde_c00034{bottom:211.940753pt;}
.ydd_c00034{bottom:212.401333pt;}
.ydc_c00034{bottom:222.225507pt;}
.ydb_c00034{bottom:222.564627pt;}
.yda_c00034{bottom:223.025367pt;}
.yd9_c00034{bottom:223.543927pt;}
.yd8_c00034{bottom:224.011667pt;}
.yd7_c00034{bottom:224.678087pt;}
.yd6_c00034{bottom:224.955247pt;}
.yd5_c00034{bottom:225.132227pt;}
.yd4_c00034{bottom:225.404547pt;}
.yd3_c00034{bottom:225.707567pt;}
.yd2_c00034{bottom:226.165047pt;}
.yd1_c00034{bottom:227.162187pt;}
.yd0_c00034{bottom:227.414327pt;}
.ycf_c00034{bottom:227.854027pt;}
.yce_c00034{bottom:228.242667pt;}
.ycd_c00034{bottom:238.296480pt;}
.ycc_c00034{bottom:238.774900pt;}
.ycb_c00034{bottom:239.189340pt;}
.yca_c00034{bottom:239.488260pt;}
.yc9_c00034{bottom:239.758280pt;}
.yc8_c00034{bottom:240.183140pt;}
.yc7_c00034{bottom:240.770040pt;}
.yc6_c00034{bottom:240.968500pt;}
.yc5_c00034{bottom:242.919860pt;}
.yc4_c00034{bottom:243.430580pt;}
.yc3_c00034{bottom:243.516000pt;}
.yc2_c00034{bottom:254.009627pt;}
.yc1_c00034{bottom:254.373987pt;}
.yc0_c00034{bottom:255.068327pt;}
.ybf_c00034{bottom:255.338127pt;}
.ybe_c00034{bottom:255.594287pt;}
.ybd_c00034{bottom:256.249687pt;}
.ybc_c00034{bottom:256.757127pt;}
.ybb_c00034{bottom:257.463027pt;}
.yba_c00034{bottom:257.937587pt;}
.yb9_c00034{bottom:258.780707pt;}
.yb8_c00034{bottom:259.126327pt;}
.yb7_c00034{bottom:259.568547pt;}
.yb6_c00034{bottom:259.922667pt;}
.yb5_c00034{bottom:270.132973pt;}
.yb4_c00034{bottom:270.662333pt;}
.yb3_c00034{bottom:271.072533pt;}
.yb2_c00034{bottom:271.551333pt;}
.yb1_c00034{bottom:271.911673pt;}
.yb0_c00034{bottom:272.682153pt;}
.yaf_c00034{bottom:274.874793pt;}
.yae_c00034{bottom:275.281333pt;}
.yad_c00034{bottom:285.663275pt;}
.yac_c00034{bottom:285.901376pt;}
.yab_c00034{bottom:286.266304pt;}
.yaa_c00034{bottom:286.937856pt;}
.ya9_c00034{bottom:287.556629pt;}
.ya8_c00034{bottom:288.144128pt;}
.ya7_c00034{bottom:288.513088pt;}
.ya6_c00034{bottom:288.725248pt;}
.ya5_c00034{bottom:289.504107pt;}
.ya4_c00034{bottom:289.994816pt;}
.ya3_c00034{bottom:290.448363pt;}
.ya2_c00034{bottom:290.955669pt;}
.ya1_c00034{bottom:291.400320pt;}
.ya0_c00034{bottom:291.842667pt;}
.y9f_c00034{bottom:302.204165pt;}
.y9e_c00034{bottom:302.822349pt;}
.y9d_c00034{bottom:303.319536pt;}
.y9c_c00034{bottom:303.635525pt;}
.y9b_c00034{bottom:303.800296pt;}
.y9a_c00034{bottom:304.801333pt;}
.y99_c00034{bottom:307.325953pt;}
.y98_c00034{bottom:317.749313pt;}
.y97_c00034{bottom:318.088053pt;}
.y96_c00034{bottom:319.038353pt;}
.y95_c00034{bottom:319.733353pt;}
.y94_c00034{bottom:320.212093pt;}
.y93_c00034{bottom:320.413773pt;}
.y92_c00034{bottom:320.878233pt;}
.y91_c00034{bottom:321.076433pt;}
.y90_c00034{bottom:321.406993pt;}
.y8f_c00034{bottom:322.127713pt;}
.y8e_c00034{bottom:323.184873pt;}
.y8d_c00034{bottom:323.267653pt;}
.y8c_c00034{bottom:324.001133pt;}
.y8b_c00034{bottom:333.907880pt;}
.y8a_c00034{bottom:334.299640pt;}
.y89_c00034{bottom:334.620660pt;}
.y88_c00034{bottom:335.052720pt;}
.y87_c00034{bottom:335.221960pt;}
.y86_c00034{bottom:336.165220pt;}
.y85_c00034{bottom:336.564660pt;}
.y84_c00034{bottom:338.411580pt;}
.y83_c00034{bottom:339.013640pt;}
.y82_c00034{bottom:339.247280pt;}
.y81_c00034{bottom:339.632540pt;}
.y80_c00034{bottom:339.852000pt;}
.y7f_c00034{bottom:349.666453pt;}
.y7e_c00034{bottom:349.950113pt;}
.y7d_c00034{bottom:350.618067pt;}
.y7c_c00034{bottom:350.855647pt;}
.y7b_c00034{bottom:351.276273pt;}
.y7a_c00034{bottom:351.553647pt;}
.y79_c00034{bottom:351.860460pt;}
.y78_c00034{bottom:352.010773pt;}
.y77_c00034{bottom:352.149920pt;}
.y76_c00034{bottom:352.756567pt;}
.y75_c00034{bottom:353.024853pt;}
.y74_c00034{bottom:353.873207pt;}
.y73_c00034{bottom:354.516300pt;}
.y72_c00034{bottom:354.719513pt;}
.y71_c00034{bottom:371.520000pt;}
.y70_c00034{bottom:381.859275pt;}
.y6f_c00034{bottom:382.322604pt;}
.y6e_c00034{bottom:382.989344pt;}
.y6d_c00034{bottom:383.810557pt;}
.y6c_c00034{bottom:384.059551pt;}
.y6b_c00034{bottom:384.941193pt;}
.y6a_c00034{bottom:385.981661pt;}
.y69_c00034{bottom:386.642667pt;}
.y68_c00034{bottom:401.554461pt;}
.y67_c00034{bottom:402.295031pt;}
.y66_c00034{bottom:402.732537pt;}
.y65_c00034{bottom:403.727048pt;}
.y64_c00034{bottom:404.396203pt;}
.y63_c00034{bottom:405.532656pt;}
.y62_c00034{bottom:406.189701pt;}
.y61_c00034{bottom:406.793344pt;}
.y60_c00034{bottom:407.284000pt;}
.y5f_c00034{bottom:424.469379pt;}
.y5e_c00034{bottom:424.983776pt;}
.y5d_c00034{bottom:425.356045pt;}
.y5c_c00034{bottom:425.857339pt;}
.y5b_c00034{bottom:426.179861pt;}
.y5a_c00034{bottom:426.714232pt;}
.y59_c00034{bottom:426.962667pt;}
.y58_c00034{bottom:443.544117pt;}
.y57_c00034{bottom:444.353747pt;}
.y56_c00034{bottom:444.737085pt;}
.y55_c00034{bottom:445.082232pt;}
.y54_c00034{bottom:445.601259pt;}
.y53_c00034{bottom:445.987099pt;}
.y52_c00034{bottom:446.281864pt;}
.y51_c00034{bottom:446.790157pt;}
.y50_c00034{bottom:447.122667pt;}
.y4f_c00034{bottom:464.232981pt;}
.y4e_c00034{bottom:464.430453pt;}
.y4d_c00034{bottom:464.629845pt;}
.y4c_c00034{bottom:465.088619pt;}
.y4b_c00034{bottom:465.369205pt;}
.y4a_c00034{bottom:465.951861pt;}
.y49_c00034{bottom:466.144096pt;}
.y48_c00034{bottom:466.797013pt;}
.y47_c00034{bottom:483.794485pt;}
.y46_c00034{bottom:484.206720pt;}
.y45_c00034{bottom:484.834091pt;}
.y44_c00034{bottom:485.205216pt;}
.y43_c00034{bottom:485.448245pt;}
.y42_c00034{bottom:486.055616pt;}
.y41_c00034{bottom:486.502528pt;}
.y40_c00034{bottom:486.752160pt;}
.y3f_c00034{bottom:487.438571pt;}
.y3e_c00034{bottom:505.010731pt;}
.y3d_c00034{bottom:505.434837pt;}
.y3c_c00034{bottom:505.633973pt;}
.y3b_c00034{bottom:506.181408pt;}
.y3a_c00034{bottom:506.610592pt;}
.y39_c00034{bottom:506.807936pt;}
.y38_c00034{bottom:507.272021pt;}
.y37_c00034{bottom:507.839307pt;}
.y36_c00034{bottom:523.384427pt;}
.y35_c00034{bottom:523.857813pt;}
.y34_c00034{bottom:524.116384pt;}
.y33_c00034{bottom:525.198709pt;}
.y32_c00034{bottom:525.615456pt;}
.y31_c00034{bottom:526.011403pt;}
.y30_c00034{bottom:526.191947pt;}
.y2f_c00034{bottom:526.965931pt;}
.y2e_c00034{bottom:527.520139pt;}
.y2d_c00034{bottom:544.404533pt;}
.y2c_c00034{bottom:544.632245pt;}
.y2b_c00034{bottom:545.459445pt;}
.y2a_c00034{bottom:545.698773pt;}
.y29_c00034{bottom:546.291637pt;}
.y28_c00034{bottom:546.695200pt;}
.y27_c00034{bottom:546.976245pt;}
.y26_c00034{bottom:547.440352pt;}
.y25_c00034{bottom:564.369792pt;}
.y24_c00034{bottom:564.823115pt;}
.y23_c00034{bottom:565.382144pt;}
.y22_c00034{bottom:566.628512pt;}
.y21_c00034{bottom:567.121333pt;}
.y20_c00034{bottom:603.334213pt;}
.y1f_c00034{bottom:603.523827pt;}
.y1e_c00034{bottom:603.682213pt;}
.y1d_c00034{bottom:604.044693pt;}
.y1c_c00034{bottom:604.229467pt;}
.y1b_c00034{bottom:604.817413pt;}
.y1a_c00034{bottom:605.100747pt;}
.y19_c00034{bottom:605.431973pt;}
.y18_c00034{bottom:605.671987pt;}
.y17_c00034{bottom:605.900000pt;}
.y16_c00034{bottom:622.212000pt;}
.y15_c00034{bottom:622.678667pt;}
.y14_c00034{bottom:623.121333pt;}
.y13_c00034{bottom:623.658667pt;}
.y12_c00034{bottom:624.425333pt;}
.y11_c00034{bottom:624.702667pt;}
.y10_c00034{bottom:625.268000pt;}
.yf_c00034{bottom:625.682667pt;}
.ye_c00034{bottom:644.250667pt;}
.yd_c00034{bottom:664.578667pt;}
.yc_c00034{bottom:685.418667pt;}
.yb_c00034{bottom:705.389333pt;}
.ya_c00034{bottom:725.133333pt;}
.y9_c00034{bottom:745.650667pt;}
.y8_c00034{bottom:765.908000pt;}
.y7_c00034{bottom:786.428000pt;}
.y4_c00034{bottom:822.625505pt;}
.y5_c00034{bottom:822.632447pt;}
.y6_c00034{bottom:822.634319pt;}
.y2_c00034{bottom:859.952000pt;}
.y3_c00034{bottom:869.846593pt;}
.y1_c00034{bottom:892.321333pt;}
.h1a_c00034{height:42.937541pt;}
.h18_c00034{height:43.871601pt;}
.h17_c00034{height:44.805040pt;}
.h19_c00034{height:45.738478pt;}
.h2_c00034{height:46.666667pt;}
.h16_c00034{height:46.671916pt;}
.h1b_c00034{height:46.672640pt;}
.h1c_c00034{height:52.266667pt;}
.hf_c00034{height:55.068429pt;}
.hc_c00034{height:55.069420pt;}
.ha_c00034{height:56.000000pt;}
.hd_c00034{height:56.001792pt;}
.h5_c00034{height:57.866667pt;}
.h11_c00034{height:57.868518pt;}
.h12_c00034{height:57.872337pt;}
.h14_c00034{height:58.810612pt;}
.h7_c00034{height:60.666667pt;}
.h15_c00034{height:60.675432pt;}
.h9_c00034{height:61.600000pt;}
.he_c00034{height:61.601971pt;}
.hb_c00034{height:63.466667pt;}
.h10_c00034{height:63.468698pt;}
.h8_c00034{height:64.400000pt;}
.h6_c00034{height:65.333333pt;}
.h13_c00034{height:65.339736pt;}
.h3_c00034{height:126.884201pt;}
.h4_c00034{height:129.683117pt;}
.h1d_c00034{height:131.637895pt;}
.h1_c00034{height:960.000000pt;}
.h0_c00034{height:960.240000pt;}
.w1_c00034{width:682.666667pt;}
.w0_c00034{width:682.800000pt;}
.x0_c00034{left:0.000000pt;}
.x6e_c00034{left:93.953493pt;}
.x2_c00034{left:96.054667pt;}
.xa5_c00034{left:100.560000pt;}
.x91_c00034{left:102.554667pt;}
.x7e_c00034{left:105.156700pt;}
.x6f_c00034{left:109.545953pt;}
.x1_c00034{left:118.080000pt;}
.x18_c00034{left:120.720000pt;}
.x10_c00034{left:122.640000pt;}
.x9f_c00034{left:123.957333pt;}
.x2e_c00034{left:125.520000pt;}
.x4b_c00034{left:126.585557pt;}
.x7_c00034{left:127.920000pt;}
.x11_c00034{left:129.360000pt;}
.x87_c00034{left:133.112000pt;}
.x76_c00034{left:134.760000pt;}
.x83_c00034{left:141.126720pt;}
.xa2_c00034{left:142.930587pt;}
.x62_c00034{left:144.550667pt;}
.x8_c00034{left:148.800000pt;}
.x77_c00034{left:150.336000pt;}
.x25_c00034{left:151.920000pt;}
.x35_c00034{left:153.600000pt;}
.x92_c00034{left:155.644000pt;}
.x1f_c00034{left:157.200000pt;}
.x3d_c00034{left:159.202667pt;}
.x19_c00034{left:160.560000pt;}
.x4_c00034{left:161.735628pt;}
.x12_c00034{left:164.160000pt;}
.x2b_c00034{left:165.360000pt;}
.x51_c00034{left:166.393653pt;}
.x6a_c00034{left:168.046667pt;}
.x96_c00034{left:169.288000pt;}
.xa3_c00034{left:171.711027pt;}
.x40_c00034{left:173.169333pt;}
.x54_c00034{left:174.308619pt;}
.x58_c00034{left:179.127445pt;}
.x9_c00034{left:181.680000pt;}
.x48_c00034{left:183.056000pt;}
.x66_c00034{left:184.589333pt;}
.x1a_c00034{left:185.760000pt;}
.x4c_c00034{left:188.727573pt;}
.x78_c00034{left:190.473333pt;}
.x13_c00034{left:192.000000pt;}
.x5b_c00034{left:193.804864pt;}
.x2c_c00034{left:197.760000pt;}
.xa4_c00034{left:200.028780pt;}
.x36_c00034{left:203.520000pt;}
.x41_c00034{left:206.292000pt;}
.x55_c00034{left:212.984715pt;}
.xa_c00034{left:214.080000pt;}
.x67_c00034{left:219.170667pt;}
.x88_c00034{left:220.956000pt;}
.x4d_c00034{left:222.338496pt;}
.x3e_c00034{left:224.053333pt;}
.x37_c00034{left:226.080000pt;}
.x2f_c00034{left:229.680000pt;}
.x26_c00034{left:232.560000pt;}
.x42_c00034{left:234.625333pt;}
.x20_c00034{left:236.160000pt;}
.x14_c00034{left:237.600000pt;}
.xb_c00034{left:238.560000pt;}
.x1b_c00034{left:239.760000pt;}
.x63_c00034{left:241.564000pt;}
.x70_c00034{left:244.910013pt;}
.x38_c00034{left:251.520000pt;}
.x30_c00034{left:258.000000pt;}
.x2d_c00034{left:259.680000pt;}
.x27_c00034{left:262.320000pt;}
.xc_c00034{left:264.000000pt;}
.x21_c00034{left:265.680000pt;}
.x64_c00034{left:268.154667pt;}
.x1c_c00034{left:271.440000pt;}
.x7f_c00034{left:278.099367pt;}
.x59_c00034{left:279.446101pt;}
.x6b_c00034{left:281.112000pt;}
.x39_c00034{left:283.200000pt;}
.x15_c00034{left:287.280000pt;}
.x22_c00034{left:290.640000pt;}
.x4e_c00034{left:291.693611pt;}
.x43_c00034{left:293.420000pt;}
.xd_c00034{left:294.960000pt;}
.x60_c00034{left:296.001333pt;}
.x5a_c00034{left:298.157355pt;}
.x5c_c00034{left:299.404512pt;}
.x89_c00034{left:300.304000pt;}
.x9a_c00034{left:301.298667pt;}
.x71_c00034{left:302.275733pt;}
.x65_c00034{left:304.897333pt;}
.x31_c00034{left:306.000000pt;}
.x56_c00034{left:310.893589pt;}
.x44_c00034{left:311.897333pt;}
.x9b_c00034{left:313.097333pt;}
.x68_c00034{left:314.202667pt;}
.x16_c00034{left:319.920000pt;}
.x28_c00034{left:322.560000pt;}
.x1d_c00034{left:324.960000pt;}
.xe_c00034{left:327.600000pt;}
.x32_c00034{left:330.000000pt;}
.x3a_c00034{left:332.160000pt;}
.x72_c00034{left:337.374107pt;}
.x49_c00034{left:338.852000pt;}
.x79_c00034{left:340.230667pt;}
.x6c_c00034{left:344.065333pt;}
.x5d_c00034{left:345.250443pt;}
.x45_c00034{left:348.145333pt;}
.x1e_c00034{left:349.680000pt;}
.x97_c00034{left:351.736000pt;}
.x3f_c00034{left:358.442667pt;}
.x4f_c00034{left:360.591403pt;}
.x57_c00034{left:362.797259pt;}
.x46_c00034{left:363.984000pt;}
.x5e_c00034{left:365.174123pt;}
.x5_c00034{left:367.336553pt;}
.x52_c00034{left:369.910549pt;}
.x23_c00034{left:372.480000pt;}
.x17_c00034{left:375.360000pt;}
.x3_c00034{left:378.474631pt;}
.x50_c00034{left:379.554795pt;}
.x61_c00034{left:381.213333pt;}
.x47_c00034{left:382.945333pt;}
.x5f_c00034{left:384.857803pt;}
.x33_c00034{left:388.080000pt;}
.x29_c00034{left:389.760000pt;}
.x73_c00034{left:391.109060pt;}
.x24_c00034{left:393.600000pt;}
.x84_c00034{left:397.104000pt;}
.xf_c00034{left:398.160000pt;}
.x7a_c00034{left:403.114667pt;}
.x3b_c00034{left:406.080000pt;}
.x9c_c00034{left:407.185333pt;}
.x93_c00034{left:408.190667pt;}
.x2a_c00034{left:409.440000pt;}
.x6d_c00034{left:410.540000pt;}
.x8a_c00034{left:412.016000pt;}
.x7b_c00034{left:414.397333pt;}
.x98_c00034{left:417.989333pt;}
.x85_c00034{left:419.674667pt;}
.x8e_c00034{left:420.878667pt;}
.x53_c00034{left:422.236043pt;}
.x6_c00034{left:426.353836pt;}
.x69_c00034{left:428.549333pt;}
.xa0_c00034{left:432.434667pt;}
.x80_c00034{left:436.008700pt;}
.x9d_c00034{left:441.756000pt;}
.x7c_c00034{left:443.201333pt;}
.x99_c00034{left:445.618667pt;}
.x8f_c00034{left:448.225333pt;}
.x8b_c00034{left:453.988000pt;}
.x86_c00034{left:455.188000pt;}
.x34_c00034{left:456.240000pt;}
.x74_c00034{left:460.724473pt;}
.x4a_c00034{left:465.396000pt;}
.x3c_c00034{left:469.200000pt;}
.x94_c00034{left:472.466667pt;}
.x8c_c00034{left:476.796000pt;}
.x75_c00034{left:482.569133pt;}
.x90_c00034{left:483.516000pt;}
.x7d_c00034{left:490.720000pt;}
.x8d_c00034{left:491.677333pt;}
.x9e_c00034{left:495.080000pt;}
.x95_c00034{left:496.757333pt;}
.x81_c00034{left:499.362033pt;}
.xa1_c00034{left:504.909333pt;}
.x82_c00034{left:521.944700pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m2d_c00035{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m2e_c00035{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);}
.mea_c00035{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);}
.mc3_c00035{transform:matrix(0.094408,0.000661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.094408,0.000661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.094408,0.000661,-0.001750,0.249994,0,0);}
.m8_c00035{transform:matrix(0.104840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104840,0.000000,0.000000,0.250000,0,0);}
.me1_c00035{transform:matrix(0.113282,0.000793,-0.001750,0.249994,0,0);-ms-transform:matrix(0.113282,0.000793,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.113282,0.000793,-0.001750,0.249994,0,0);}
.m4_c00035{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);}
.me6_c00035{transform:matrix(0.130352,0.000912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.130352,0.000912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.130352,0.000912,-0.001750,0.249994,0,0);}
.m57_c00035{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);}
.m5_c00035{transform:matrix(0.136840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136840,0.000000,0.000000,0.250000,0,0);}
.mdb_c00035{transform:matrix(0.141027,0.000987,-0.001750,0.249994,0,0);-ms-transform:matrix(0.141027,0.000987,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.141027,0.000987,-0.001750,0.249994,0,0);}
.m79_c00035{transform:matrix(0.141070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141070,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.142010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142010,0.000000,0.000000,0.250000,0,0);}
.mb0_c00035{transform:matrix(0.144640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144640,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{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);}
.m8d_c00035{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);}
.m45_c00035{transform:matrix(0.147805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147805,0.000000,0.000000,0.250000,0,0);}
.m5f_c00035{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);}
.me2_c00035{transform:matrix(0.148631,0.001040,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148631,0.001040,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148631,0.001040,-0.001750,0.249994,0,0);}
.mc1_c00035{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);}
.m9c_c00035{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);}
.m42_c00035{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);}
.m5b_c00035{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);}
.m7a_c00035{transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{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);}
.m90_c00035{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);}
.md7_c00035{transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);}
.m6c_c00035{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);}
.m75_c00035{transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);}
.mcd_c00035{transform:matrix(0.159931,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159931,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159931,0.001120,-0.001750,0.249994,0,0);}
.m70_c00035{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);}
.m6a_c00035{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);}
.m19_c00035{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);}
.mb2_c00035{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);}
.m8c_c00035{transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);}
.md8_c00035{transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);}
.m81_c00035{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);}
.m47_c00035{transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{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);}
.m26_c00035{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.ma8_c00035{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);}
.m13_c00035{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);}
.m76_c00035{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);}
.md1_c00035{transform:matrix(0.167106,0.001170,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167106,0.001170,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167106,0.001170,-0.001750,0.249994,0,0);}
.m20_c00035{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);}
.ma4_c00035{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);}
.m40_c00035{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);}
.mab_c00035{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);}
.m78_c00035{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);}
.md4_c00035{transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);}
.m2b_c00035{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);}
.m85_c00035{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);}
.m32_c00035{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);}
.m25_c00035{transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);}
.m6b_c00035{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.m98_c00035{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);}
.m51_c00035{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);}
.mbe_c00035{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);}
.m23_c00035{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);}
.mb1_c00035{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);}
.mae_c00035{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);}
.m4b_c00035{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);}
.m9b_c00035{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_c00035{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);}
.m0_c00035{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);}
.m74_c00035{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);}
.m8f_c00035{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);}
.md5_c00035{transform:matrix(0.176396,0.001235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176396,0.001235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176396,0.001235,-0.001750,0.249994,0,0);}
.mb_c00035{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);}
.m2f_c00035{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);}
.mac_c00035{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);}
.m29_c00035{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);}
.m7d_c00035{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);}
.mc2_c00035{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);}
.m77_c00035{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);}
.m97_c00035{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);}
.m39_c00035{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);}
.mc0_c00035{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);}
.m8e_c00035{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);}
.m96_c00035{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);}
.mb8_c00035{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);}
.m6d_c00035{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);}
.mb4_c00035{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);}
.md0_c00035{transform:matrix(0.180201,0.001261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180201,0.001261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180201,0.001261,-0.001750,0.249994,0,0);}
.m4c_c00035{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);}
.mcf_c00035{transform:matrix(0.180996,0.001267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180996,0.001267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180996,0.001267,-0.001750,0.249994,0,0);}
.m44_c00035{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);}
.m1b_c00035{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m63_c00035{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);}
.mdf_c00035{transform:matrix(0.182176,0.001275,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182176,0.001275,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182176,0.001275,-0.001750,0.249994,0,0);}
.m50_c00035{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);}
.m89_c00035{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);}
.ma9_c00035{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);}
.m60_c00035{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);}
.m9f_c00035{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);}
.ma7_c00035{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);}
.m1c_c00035{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);}
.m7b_c00035{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);}
.m5c_c00035{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m94_c00035{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);}
.mc8_c00035{transform:matrix(0.186220,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186220,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186220,0.001304,-0.001750,0.249994,0,0);}
.m52_c00035{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);}
.m28_c00035{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);}
.maa_c00035{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);}
.m82_c00035{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);}
.m99_c00035{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);}
.mb9_c00035{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);}
.me3_c00035{transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);}
.maf_c00035{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);}
.m18_c00035{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);}
.m7c_c00035{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);}
.me4_c00035{transform:matrix(0.189790,0.001329,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189790,0.001329,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189790,0.001329,-0.001750,0.249994,0,0);}
.m3c_c00035{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);}
.m72_c00035{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);}
.m91_c00035{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);}
.mad_c00035{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);}
.m8a_c00035{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);}
.me5_c00035{transform:matrix(0.193130,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193130,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193130,0.001352,-0.001750,0.249994,0,0);}
.m1a_c00035{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);}
.m48_c00035{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);}
.me7_c00035{transform:matrix(0.193400,0.001354,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193400,0.001354,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193400,0.001354,-0.001750,0.249994,0,0);}
.m10_c00035{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);}
.m27_c00035{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);}
.m4a_c00035{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);}
.m93_c00035{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);}
.md2_c00035{transform:matrix(0.195585,0.001369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195585,0.001369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195585,0.001369,-0.001750,0.249994,0,0);}
.mdd_c00035{transform:matrix(0.195825,0.001371,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195825,0.001371,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195825,0.001371,-0.001750,0.249994,0,0);}
.m95_c00035{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);}
.mf_c00035{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);}
.m8b_c00035{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);}
.ma5_c00035{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);}
.m4e_c00035{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);}
.m84_c00035{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);}
.me0_c00035{transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);}
.m41_c00035{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);}
.mbf_c00035{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);}
.m92_c00035{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);}
.m88_c00035{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);}
.m1f_c00035{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);}
.m3a_c00035{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);}
.m30_c00035{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);}
.meb_c00035{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);}
.m59_c00035{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);}
.mb3_c00035{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);}
.m17_c00035{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);}
.m87_c00035{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);}
.mc7_c00035{transform:matrix(0.205710,0.001440,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205710,0.001440,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205710,0.001440,-0.001750,0.249994,0,0);}
.mde_c00035{transform:matrix(0.205950,0.001442,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205950,0.001442,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205950,0.001442,-0.001750,0.249994,0,0);}
.m73_c00035{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);}
.m7e_c00035{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);}
.mb6_c00035{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);}
.m43_c00035{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);}
.m71_c00035{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);}
.mc5_c00035{transform:matrix(0.207785,0.001454,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207785,0.001454,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207785,0.001454,-0.001750,0.249994,0,0);}
.ma3_c00035{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);}
.m3d_c00035{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);}
.mca_c00035{transform:matrix(0.209890,0.001469,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209890,0.001469,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209890,0.001469,-0.001750,0.249994,0,0);}
.m16_c00035{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);}
.mbd_c00035{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);}
.ma2_c00035{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);}
.mda_c00035{transform:matrix(0.213095,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213095,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213095,0.001492,-0.001750,0.249994,0,0);}
.m11_c00035{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);}
.m1e_c00035{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);}
.m34_c00035{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);}
.mbb_c00035{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);}
.me_c00035{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);}
.mb5_c00035{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);}
.ma1_c00035{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);}
.md6_c00035{transform:matrix(0.217870,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217870,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217870,0.001525,-0.001750,0.249994,0,0);}
.mb7_c00035{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);}
.m2a_c00035{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);}
.me9_c00035{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);}
.m2_c00035{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);}
.m3e_c00035{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);}
.me8_c00035{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);}
.m9a_c00035{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);}
.m49_c00035{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);}
.m35_c00035{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);}
.mdc_c00035{transform:matrix(0.225249,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225249,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225249,0.001577,-0.001750,0.249994,0,0);}
.mbc_c00035{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.m5e_c00035{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);}
.m38_c00035{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);}
.mba_c00035{transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);}
.m80_c00035{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);}
.m3f_c00035{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);}
.mc6_c00035{transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);}
.m46_c00035{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);}
.mcc_c00035{transform:matrix(0.232634,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232634,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232634,0.001628,-0.001750,0.249994,0,0);}
.m67_c00035{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);}
.md_c00035{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);}
.m33_c00035{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);}
.m22_c00035{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);}
.m21_c00035{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.mc9_c00035{transform:matrix(0.244869,0.001714,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244869,0.001714,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244869,0.001714,-0.001750,0.249994,0,0);}
.m3b_c00035{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m58_c00035{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);}
.m15_c00035{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);}
.m36_c00035{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.mc4_c00035{transform:matrix(0.257574,0.001803,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257574,0.001803,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257574,0.001803,-0.001750,0.249994,0,0);}
.m31_c00035{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);}
.m9e_c00035{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);}
.m86_c00035{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);}
.m7_c00035{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);}
.m12_c00035{transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{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);}
.m68_c00035{transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);}
.mce_c00035{transform:matrix(0.276753,0.001937,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276753,0.001937,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276753,0.001937,-0.001750,0.249994,0,0);}
.ma0_c00035{transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286150,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00035{transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);}
.m83_c00035{transform:matrix(0.307860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307860,0.000000,0.000000,0.250000,0,0);}
.m9d_c00035{transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);}
.m37_c00035{transform:matrix(0.311720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311720,0.000000,0.000000,0.250000,0,0);}
.ma6_c00035{transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);}
.md3_c00035{transform:matrix(0.331112,0.002318,-0.001750,0.249994,0,0);-ms-transform:matrix(0.331112,0.002318,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.331112,0.002318,-0.001750,0.249994,0,0);}
.m61_c00035{transform:matrix(0.334215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334215,0.000000,0.000000,0.250000,0,0);}
.m5d_c00035{transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);}
.m6f_c00035{transform:matrix(0.335695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335695,0.000000,0.000000,0.250000,0,0);}
.m2c_c00035{transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);}
.mcb_c00035{transform:matrix(0.358816,0.002512,-0.001750,0.249994,0,0);-ms-transform:matrix(0.358816,0.002512,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.358816,0.002512,-0.001750,0.249994,0,0);}
.m6_c00035{transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);}
.m6e_c00035{transform:matrix(0.379045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379045,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.418325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{transform:matrix(0.425200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425200,0.000000,0.000000,0.250000,0,0);}
.m64_c00035{transform:matrix(0.442075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442075,0.000000,0.000000,0.250000,0,0);}
.m66_c00035{transform:matrix(0.475890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475890,0.000000,0.000000,0.250000,0,0);}
.m56_c00035{transform:matrix(0.495235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495235,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.513995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513995,0.000000,0.000000,0.250000,0,0);}
.md9_c00035{transform:matrix(0.545332,0.003817,-0.001750,0.249994,0,0);-ms-transform:matrix(0.545332,0.003817,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.545332,0.003817,-0.001750,0.249994,0,0);}
.m55_c00035{transform:matrix(0.553055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553055,0.000000,0.000000,0.250000,0,0);}
.m62_c00035{transform:matrix(0.566575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566575,0.000000,0.000000,0.250000,0,0);}
.m69_c00035{transform:matrix(0.597965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597965,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.775475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775475,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);}
.m65_c00035{transform:matrix(0.974020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.974020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.974020,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;}
.fs9_c00035{font-size:21.000000px;}
.fs0_c00035{font-size:22.050000px;}
.fs12_c00035{font-size:48.300000px;}
.fs11_c00035{font-size:51.451261px;}
.fsf_c00035{font-size:52.501286px;}
.fs10_c00035{font-size:54.601338px;}
.fsa_c00035{font-size:64.050000px;}
.fsc_c00035{font-size:65.100000px;}
.fsb_c00035{font-size:66.150000px;}
.fs8_c00035{font-size:67.200000px;}
.fs5_c00035{font-size:68.250000px;}
.fs6_c00035{font-size:70.350000px;}
.fs3_c00035{font-size:71.400000px;}
.fs2_c00035{font-size:72.450000px;}
.fse_c00035{font-size:73.500000px;}
.fs1_c00035{font-size:74.550000px;}
.fsd_c00035{font-size:75.600000px;}
.fs4_c00035{font-size:76.650000px;}
.fs7_c00035{font-size:78.750000px;}
.y0_c00035{bottom:0.000000px;}
.y2_c00035{bottom:160.650000px;}
.y3_c00035{bottom:169.290000px;}
.y50_c00035{bottom:220.510500px;}
.y48_c00035{bottom:237.892650px;}
.y49_c00035{bottom:237.892990px;}
.y47_c00035{bottom:237.893090px;}
.y46_c00035{bottom:237.893239px;}
.y45_c00035{bottom:237.893329px;}
.y44_c00035{bottom:237.893439px;}
.y4e_c00035{bottom:237.893532px;}
.y4a_c00035{bottom:237.893561px;}
.y42_c00035{bottom:237.893819px;}
.y43_c00035{bottom:237.893979px;}
.y4f_c00035{bottom:237.894132px;}
.y4d_c00035{bottom:237.894152px;}
.y4c_c00035{bottom:237.894201px;}
.y4b_c00035{bottom:237.894261px;}
.y41_c00035{bottom:237.894378px;}
.y3e_c00035{bottom:256.297862px;}
.y3d_c00035{bottom:256.298462px;}
.y3f_c00035{bottom:256.298534px;}
.y3c_c00035{bottom:256.298601px;}
.y40_c00035{bottom:256.298844px;}
.y3b_c00035{bottom:256.299341px;}
.y1_c00035{bottom:261.900000px;}
.y3a_c00035{bottom:272.294912px;}
.y39_c00035{bottom:272.578443px;}
.y38_c00035{bottom:272.788212px;}
.y37_c00035{bottom:273.215426px;}
.y36_c00035{bottom:273.346056px;}
.y35_c00035{bottom:273.451549px;}
.y34_c00035{bottom:273.682287px;}
.y33_c00035{bottom:273.799572px;}
.y32_c00035{bottom:274.185069px;}
.y31_c00035{bottom:274.328667px;}
.y30_c00035{bottom:274.570619px;}
.y2f_c00035{bottom:274.706646px;}
.y2e_c00035{bottom:275.075364px;}
.y2d_c00035{bottom:275.203737px;}
.y2c_c00035{bottom:275.419208px;}
.y2b_c00035{bottom:275.670000px;}
.y2a_c00035{bottom:315.037500px;}
.y29_c00035{bottom:337.707000px;}
.y28_c00035{bottom:360.121500px;}
.y27_c00035{bottom:383.662500px;}
.y26_c00035{bottom:406.065000px;}
.y25_c00035{bottom:429.141000px;}
.y24_c00035{bottom:451.710000px;}
.y23_c00035{bottom:474.387000px;}
.y22_c00035{bottom:497.155500px;}
.y21_c00035{bottom:520.102500px;}
.y20_c00035{bottom:542.860500px;}
.y1f_c00035{bottom:566.190000px;}
.y1e_c00035{bottom:588.870000px;}
.y1d_c00035{bottom:621.414000px;}
.y16_c00035{bottom:632.880000px;}
.y17_c00035{bottom:633.196500px;}
.y18_c00035{bottom:633.483000px;}
.y19_c00035{bottom:633.741000px;}
.y1a_c00035{bottom:634.306500px;}
.y1b_c00035{bottom:635.533500px;}
.y1c_c00035{bottom:635.971500px;}
.y15_c00035{bottom:655.606500px;}
.y14_c00035{bottom:677.970000px;}
.y13_c00035{bottom:700.915500px;}
.y12_c00035{bottom:723.391500px;}
.y11_c00035{bottom:746.668500px;}
.y10_c00035{bottom:769.705500px;}
.yf_c00035{bottom:792.318000px;}
.y7_c00035{bottom:814.321500px;}
.y8_c00035{bottom:814.639500px;}
.y9_c00035{bottom:815.377500px;}
.ya_c00035{bottom:816.132000px;}
.yb_c00035{bottom:816.492000px;}
.yc_c00035{bottom:816.855000px;}
.yd_c00035{bottom:817.837500px;}
.ye_c00035{bottom:818.703000px;}
.y6_c00035{bottom:838.050000px;}
.y5_c00035{bottom:861.510000px;}
.y4_c00035{bottom:884.215500px;}
.hb_c00035{height:21.000000px;}
.h2_c00035{height:22.050000px;}
.h14_c00035{height:48.300000px;}
.h13_c00035{height:51.451261px;}
.h11_c00035{height:52.501286px;}
.h12_c00035{height:54.601338px;}
.hc_c00035{height:64.050000px;}
.he_c00035{height:65.100000px;}
.hd_c00035{height:66.150000px;}
.ha_c00035{height:67.200000px;}
.h7_c00035{height:68.250000px;}
.h8_c00035{height:70.350000px;}
.h5_c00035{height:71.400000px;}
.h4_c00035{height:72.450000px;}
.h10_c00035{height:73.500000px;}
.h3_c00035{height:74.550000px;}
.hf_c00035{height:75.600000px;}
.h6_c00035{height:76.650000px;}
.h9_c00035{height:78.750000px;}
.h0_c00035{height:1086.450000px;}
.h1_c00035{height:1086.750000px;}
.w1_c00035{width:771.000000px;}
.w0_c00035{width:771.120000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:3.510000px;}
.x7c_c00035{left:151.739892px;}
.x7a_c00035{left:161.731710px;}
.x6f_c00035{left:176.059500px;}
.x7b_c00035{left:208.982520px;}
.x70_c00035{left:211.887000px;}
.x7d_c00035{left:222.751868px;}
.x61_c00035{left:236.790000px;}
.x71_c00035{left:242.668500px;}
.x3a_c00035{left:243.808500px;}
.x2_c00035{left:245.430000px;}
.x19_c00035{left:246.666000px;}
.x7e_c00035{left:253.801890px;}
.x72_c00035{left:261.007500px;}
.x7f_c00035{left:263.522363px;}
.x3b_c00035{left:265.678500px;}
.x5a_c00035{left:270.270000px;}
.xb_c00035{left:271.620000px;}
.x1a_c00035{left:273.160500px;}
.x3e_c00035{left:279.565500px;}
.x14_c00035{left:282.150000px;}
.x2f_c00035{left:283.768500px;}
.x48_c00035{left:286.200000px;}
.x6c_c00035{left:290.790000px;}
.x3c_c00035{left:295.918500px;}
.x69_c00035{left:298.350000px;}
.x26_c00035{left:299.428500px;}
.x1f_c00035{left:306.718500px;}
.x62_c00035{left:308.340000px;}
.x3f_c00035{left:311.382000px;}
.x5b_c00035{left:312.390000px;}
.xc_c00035{left:313.740000px;}
.x3_c00035{left:318.870000px;}
.x42_c00035{left:320.490000px;}
.x49_c00035{left:324.000000px;}
.x32_c00035{left:325.078500px;}
.x4d_c00035{left:328.050000px;}
.x27_c00035{left:330.208500px;}
.x73_c00035{left:333.114000px;}
.xd_c00035{left:334.800000px;}
.x40_c00035{left:340.050000px;}
.x4_c00035{left:341.280000px;}
.x15_c00035{left:342.900000px;}
.x4e_c00035{left:347.490000px;}
.x43_c00035{left:348.570000px;}
.x80_c00035{left:351.005147px;}
.x6a_c00035{left:352.080000px;}
.x5c_c00035{left:354.510000px;}
.x5f_c00035{left:362.070000px;}
.x33_c00035{left:363.688500px;}
.x4a_c00035{left:365.310000px;}
.x52_c00035{left:367.200000px;}
.x38_c00035{left:371.248500px;}
.xe_c00035{left:374.220000px;}
.x3d_c00035{left:379.888500px;}
.x2b_c00035{left:381.778500px;}
.x16_c00035{left:384.480000px;}
.x57_c00035{left:386.370000px;}
.x74_c00035{left:388.192500px;}
.x5_c00035{left:390.690000px;}
.x60_c00035{left:393.120000px;}
.x46_c00035{left:395.550000px;}
.x1b_c00035{left:397.602000px;}
.x66_c00035{left:398.790000px;}
.x41_c00035{left:402.955500px;}
.x28_c00035{left:404.188500px;}
.x34_c00035{left:406.618500px;}
.x17_c00035{left:408.240000px;}
.x6d_c00035{left:411.480000px;}
.x4b_c00035{left:412.560000px;}
.x6b_c00035{left:413.910000px;}
.x4f_c00035{left:415.800000px;}
.x29_c00035{left:418.498500px;}
.x20_c00035{left:421.198500px;}
.x35_c00035{left:422.278500px;}
.x5d_c00035{left:423.630000px;}
.x44_c00035{left:426.060000px;}
.xf_c00035{left:427.140000px;}
.x85_c00035{left:429.300000px;}
.x67_c00035{left:433.890000px;}
.x2c_c00035{left:435.778500px;}
.x6_c00035{left:439.560000px;}
.x63_c00035{left:443.880000px;}
.x5e_c00035{left:447.660000px;}
.x45_c00035{left:449.010000px;}
.x18_c00035{left:450.630000px;}
.x2a_c00035{left:451.708500px;}
.x7_c00035{left:454.680000px;}
.x1c_c00035{left:457.851000px;}
.x75_c00035{left:460.018500px;}
.x21_c00035{left:466.018500px;}
.x6e_c00035{left:467.640000px;}
.x81_c00035{left:471.158037px;}
.x53_c00035{left:478.980000px;}
.x30_c00035{left:481.408500px;}
.x64_c00035{left:482.760000px;}
.x22_c00035{left:483.838500px;}
.x68_c00035{left:485.730000px;}
.x8_c00035{left:489.510000px;}
.x50_c00035{left:491.130000px;}
.x10_c00035{left:492.210000px;}
.x47_c00035{left:497.070000px;}
.x4c_c00035{left:504.630000px;}
.x54_c00035{left:505.980000px;}
.x76_c00035{left:508.051500px;}
.x11_c00035{left:510.840000px;}
.x31_c00035{left:517.588500px;}
.x23_c00035{left:519.208500px;}
.x2d_c00035{left:521.908500px;}
.x36_c00035{left:523.258500px;}
.x77_c00035{left:526.713000px;}
.x9_c00035{left:529.200000px;}
.x82_c00035{left:534.069624px;}
.x1d_c00035{left:539.734500px;}
.x65_c00035{left:543.780000px;}
.x58_c00035{left:546.750000px;}
.x51_c00035{left:551.610000px;}
.xa_c00035{left:554.040000px;}
.x12_c00035{left:555.390000px;}
.x55_c00035{left:559.710000px;}
.x59_c00035{left:567.540000px;}
.x2e_c00035{left:569.428500px;}
.x56_c00035{left:576.720000px;}
.x37_c00035{left:588.058500px;}
.x83_c00035{left:589.150823px;}
.x39_c00035{left:593.188500px;}
.x24_c00035{left:598.858500px;}
.x13_c00035{left:609.660000px;}
.x1e_c00035{left:611.830500px;}
.x78_c00035{left:617.710500px;}
.x84_c00035{left:620.740866px;}
.x25_c00035{left:636.118500px;}
.x79_c00035{left:658.215000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.fs9_c00035{font-size:18.666667pt;}
.fs0_c00035{font-size:19.600000pt;}
.fs12_c00035{font-size:42.933333pt;}
.fs11_c00035{font-size:45.734454pt;}
.fsf_c00035{font-size:46.667810pt;}
.fs10_c00035{font-size:48.534522pt;}
.fsa_c00035{font-size:56.933333pt;}
.fsc_c00035{font-size:57.866667pt;}
.fsb_c00035{font-size:58.800000pt;}
.fs8_c00035{font-size:59.733333pt;}
.fs5_c00035{font-size:60.666667pt;}
.fs6_c00035{font-size:62.533333pt;}
.fs3_c00035{font-size:63.466667pt;}
.fs2_c00035{font-size:64.400000pt;}
.fse_c00035{font-size:65.333333pt;}
.fs1_c00035{font-size:66.266667pt;}
.fsd_c00035{font-size:67.200000pt;}
.fs4_c00035{font-size:68.133333pt;}
.fs7_c00035{font-size:70.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y2_c00035{bottom:142.800000pt;}
.y3_c00035{bottom:150.480000pt;}
.y50_c00035{bottom:196.009333pt;}
.y48_c00035{bottom:211.460133pt;}
.y49_c00035{bottom:211.460436pt;}
.y47_c00035{bottom:211.460524pt;}
.y46_c00035{bottom:211.460657pt;}
.y45_c00035{bottom:211.460737pt;}
.y44_c00035{bottom:211.460835pt;}
.y4e_c00035{bottom:211.460917pt;}
.y4a_c00035{bottom:211.460943pt;}
.y42_c00035{bottom:211.461172pt;}
.y43_c00035{bottom:211.461315pt;}
.y4f_c00035{bottom:211.461451pt;}
.y4d_c00035{bottom:211.461468pt;}
.y4c_c00035{bottom:211.461512pt;}
.y4b_c00035{bottom:211.461565pt;}
.y41_c00035{bottom:211.461669pt;}
.y3e_c00035{bottom:227.820321pt;}
.y3d_c00035{bottom:227.820855pt;}
.y3f_c00035{bottom:227.820919pt;}
.y3c_c00035{bottom:227.820979pt;}
.y40_c00035{bottom:227.821195pt;}
.y3b_c00035{bottom:227.821636pt;}
.y1_c00035{bottom:232.800000pt;}
.y3a_c00035{bottom:242.039921pt;}
.y39_c00035{bottom:242.291949pt;}
.y38_c00035{bottom:242.478411pt;}
.y37_c00035{bottom:242.858156pt;}
.y36_c00035{bottom:242.974272pt;}
.y35_c00035{bottom:243.068044pt;}
.y34_c00035{bottom:243.273144pt;}
.y33_c00035{bottom:243.377397pt;}
.y32_c00035{bottom:243.720061pt;}
.y31_c00035{bottom:243.847704pt;}
.y30_c00035{bottom:244.062772pt;}
.y2f_c00035{bottom:244.183685pt;}
.y2e_c00035{bottom:244.511435pt;}
.y2d_c00035{bottom:244.625544pt;}
.y2c_c00035{bottom:244.817073pt;}
.y2b_c00035{bottom:245.040000pt;}
.y2a_c00035{bottom:280.033333pt;}
.y29_c00035{bottom:300.184000pt;}
.y28_c00035{bottom:320.108000pt;}
.y27_c00035{bottom:341.033333pt;}
.y26_c00035{bottom:360.946667pt;}
.y25_c00035{bottom:381.458667pt;}
.y24_c00035{bottom:401.520000pt;}
.y23_c00035{bottom:421.677333pt;}
.y22_c00035{bottom:441.916000pt;}
.y21_c00035{bottom:462.313333pt;}
.y20_c00035{bottom:482.542667pt;}
.y1f_c00035{bottom:503.280000pt;}
.y1e_c00035{bottom:523.440000pt;}
.y1d_c00035{bottom:552.368000pt;}
.y16_c00035{bottom:562.560000pt;}
.y17_c00035{bottom:562.841333pt;}
.y18_c00035{bottom:563.096000pt;}
.y19_c00035{bottom:563.325333pt;}
.y1a_c00035{bottom:563.828000pt;}
.y1b_c00035{bottom:564.918667pt;}
.y1c_c00035{bottom:565.308000pt;}
.y15_c00035{bottom:582.761333pt;}
.y14_c00035{bottom:602.640000pt;}
.y13_c00035{bottom:623.036000pt;}
.y12_c00035{bottom:643.014667pt;}
.y11_c00035{bottom:663.705333pt;}
.y10_c00035{bottom:684.182667pt;}
.yf_c00035{bottom:704.282667pt;}
.y7_c00035{bottom:723.841333pt;}
.y8_c00035{bottom:724.124000pt;}
.y9_c00035{bottom:724.780000pt;}
.ya_c00035{bottom:725.450667pt;}
.yb_c00035{bottom:725.770667pt;}
.yc_c00035{bottom:726.093333pt;}
.yd_c00035{bottom:726.966667pt;}
.ye_c00035{bottom:727.736000pt;}
.y6_c00035{bottom:744.933333pt;}
.y5_c00035{bottom:765.786667pt;}
.y4_c00035{bottom:785.969333pt;}
.hb_c00035{height:18.666667pt;}
.h2_c00035{height:19.600000pt;}
.h14_c00035{height:42.933333pt;}
.h13_c00035{height:45.734454pt;}
.h11_c00035{height:46.667810pt;}
.h12_c00035{height:48.534522pt;}
.hc_c00035{height:56.933333pt;}
.he_c00035{height:57.866667pt;}
.hd_c00035{height:58.800000pt;}
.ha_c00035{height:59.733333pt;}
.h7_c00035{height:60.666667pt;}
.h8_c00035{height:62.533333pt;}
.h5_c00035{height:63.466667pt;}
.h4_c00035{height:64.400000pt;}
.h10_c00035{height:65.333333pt;}
.h3_c00035{height:66.266667pt;}
.hf_c00035{height:67.200000pt;}
.h6_c00035{height:68.133333pt;}
.h9_c00035{height:70.000000pt;}
.h0_c00035{height:965.733333pt;}
.h1_c00035{height:966.000000pt;}
.w1_c00035{width:685.333333pt;}
.w0_c00035{width:685.440000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:3.120000pt;}
.x7c_c00035{left:134.879904pt;}
.x7a_c00035{left:143.761520pt;}
.x6f_c00035{left:156.497333pt;}
.x7b_c00035{left:185.762240pt;}
.x70_c00035{left:188.344000pt;}
.x7d_c00035{left:198.001660pt;}
.x61_c00035{left:210.480000pt;}
.x71_c00035{left:215.705333pt;}
.x3a_c00035{left:216.718667pt;}
.x2_c00035{left:218.160000pt;}
.x19_c00035{left:219.258667pt;}
.x7e_c00035{left:225.601680pt;}
.x72_c00035{left:232.006667pt;}
.x7f_c00035{left:234.242100pt;}
.x3b_c00035{left:236.158667pt;}
.x5a_c00035{left:240.240000pt;}
.xb_c00035{left:241.440000pt;}
.x1a_c00035{left:242.809333pt;}
.x3e_c00035{left:248.502667pt;}
.x14_c00035{left:250.800000pt;}
.x2f_c00035{left:252.238667pt;}
.x48_c00035{left:254.400000pt;}
.x6c_c00035{left:258.480000pt;}
.x3c_c00035{left:263.038667pt;}
.x69_c00035{left:265.200000pt;}
.x26_c00035{left:266.158667pt;}
.x1f_c00035{left:272.638667pt;}
.x62_c00035{left:274.080000pt;}
.x3f_c00035{left:276.784000pt;}
.x5b_c00035{left:277.680000pt;}
.xc_c00035{left:278.880000pt;}
.x3_c00035{left:283.440000pt;}
.x42_c00035{left:284.880000pt;}
.x49_c00035{left:288.000000pt;}
.x32_c00035{left:288.958667pt;}
.x4d_c00035{left:291.600000pt;}
.x27_c00035{left:293.518667pt;}
.x73_c00035{left:296.101333pt;}
.xd_c00035{left:297.600000pt;}
.x40_c00035{left:302.266667pt;}
.x4_c00035{left:303.360000pt;}
.x15_c00035{left:304.800000pt;}
.x4e_c00035{left:308.880000pt;}
.x43_c00035{left:309.840000pt;}
.x80_c00035{left:312.004575pt;}
.x6a_c00035{left:312.960000pt;}
.x5c_c00035{left:315.120000pt;}
.x5f_c00035{left:321.840000pt;}
.x33_c00035{left:323.278667pt;}
.x4a_c00035{left:324.720000pt;}
.x52_c00035{left:326.400000pt;}
.x38_c00035{left:329.998667pt;}
.xe_c00035{left:332.640000pt;}
.x3d_c00035{left:337.678667pt;}
.x2b_c00035{left:339.358667pt;}
.x16_c00035{left:341.760000pt;}
.x57_c00035{left:343.440000pt;}
.x74_c00035{left:345.060000pt;}
.x5_c00035{left:347.280000pt;}
.x60_c00035{left:349.440000pt;}
.x46_c00035{left:351.600000pt;}
.x1b_c00035{left:353.424000pt;}
.x66_c00035{left:354.480000pt;}
.x41_c00035{left:358.182667pt;}
.x28_c00035{left:359.278667pt;}
.x34_c00035{left:361.438667pt;}
.x17_c00035{left:362.880000pt;}
.x6d_c00035{left:365.760000pt;}
.x4b_c00035{left:366.720000pt;}
.x6b_c00035{left:367.920000pt;}
.x4f_c00035{left:369.600000pt;}
.x29_c00035{left:371.998667pt;}
.x20_c00035{left:374.398667pt;}
.x35_c00035{left:375.358667pt;}
.x5d_c00035{left:376.560000pt;}
.x44_c00035{left:378.720000pt;}
.xf_c00035{left:379.680000pt;}
.x85_c00035{left:381.600000pt;}
.x67_c00035{left:385.680000pt;}
.x2c_c00035{left:387.358667pt;}
.x6_c00035{left:390.720000pt;}
.x63_c00035{left:394.560000pt;}
.x5e_c00035{left:397.920000pt;}
.x45_c00035{left:399.120000pt;}
.x18_c00035{left:400.560000pt;}
.x2a_c00035{left:401.518667pt;}
.x7_c00035{left:404.160000pt;}
.x1c_c00035{left:406.978667pt;}
.x75_c00035{left:408.905333pt;}
.x21_c00035{left:414.238667pt;}
.x6e_c00035{left:415.680000pt;}
.x81_c00035{left:418.807144pt;}
.x53_c00035{left:425.760000pt;}
.x30_c00035{left:427.918667pt;}
.x64_c00035{left:429.120000pt;}
.x22_c00035{left:430.078667pt;}
.x68_c00035{left:431.760000pt;}
.x8_c00035{left:435.120000pt;}
.x50_c00035{left:436.560000pt;}
.x10_c00035{left:437.520000pt;}
.x47_c00035{left:441.840000pt;}
.x4c_c00035{left:448.560000pt;}
.x54_c00035{left:449.760000pt;}
.x76_c00035{left:451.601333pt;}
.x11_c00035{left:454.080000pt;}
.x31_c00035{left:460.078667pt;}
.x23_c00035{left:461.518667pt;}
.x2d_c00035{left:463.918667pt;}
.x36_c00035{left:465.118667pt;}
.x77_c00035{left:468.189333pt;}
.x9_c00035{left:470.400000pt;}
.x82_c00035{left:474.728555pt;}
.x1d_c00035{left:479.764000pt;}
.x65_c00035{left:483.360000pt;}
.x58_c00035{left:486.000000pt;}
.x51_c00035{left:490.320000pt;}
.xa_c00035{left:492.480000pt;}
.x12_c00035{left:493.680000pt;}
.x55_c00035{left:497.520000pt;}
.x59_c00035{left:504.480000pt;}
.x2e_c00035{left:506.158667pt;}
.x56_c00035{left:512.640000pt;}
.x37_c00035{left:522.718667pt;}
.x83_c00035{left:523.689620pt;}
.x39_c00035{left:527.278667pt;}
.x24_c00035{left:532.318667pt;}
.x13_c00035{left:541.920000pt;}
.x1e_c00035{left:543.849333pt;}
.x78_c00035{left:549.076000pt;}
.x84_c00035{left:551.769659pt;}
.x25_c00035{left:565.438667pt;}
.x79_c00035{left:585.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_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_4ab86c84425994a9e06b01c2.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;}
.m51_c00036{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.mca_c00036{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);}
.m25_c00036{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);}
.m6b_c00036{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);}
.ma4_c00036{transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);}
.mee_c00036{transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);}
.mc1_c00036{transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);}
.m6c_c00036{transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);}
.mff_c00036{transform:matrix(0.029798,0.000358,-0.003000,0.249982,0,0);-ms-transform:matrix(0.029798,0.000358,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.029798,0.000358,-0.003000,0.249982,0,0);}
.mf6_c00036{transform:matrix(0.047112,0.000565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.047112,0.000565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.047112,0.000565,-0.003000,0.249982,0,0);}
.m7b_c00036{transform:matrix(0.095820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095820,0.000000,0.000000,0.250000,0,0);}
.md3_c00036{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);}
.ma9_c00036{transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);}
.mde_c00036{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);}
.m3a_c00036{transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);}
.m50_c00036{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);}
.mbc_c00036{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.mb4_c00036{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);}
.maf_c00036{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.md0_c00036{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.149905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149905,0.000000,0.000000,0.250000,0,0);}
.md6_c00036{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);}
.ma_c00036{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);}
.m5e_c00036{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);}
.m33_c00036{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);}
.m2d_c00036{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);}
.m7c_c00036{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);}
.m83_c00036{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);}
.m4d_c00036{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);}
.m37_c00036{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);}
.m60_c00036{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);}
.m1a_c00036{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);}
.me2_c00036{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);}
.m7a_c00036{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);}
.m94_c00036{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);}
.m76_c00036{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.m65_c00036{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);}
.m3e_c00036{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);}
.m73_c00036{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);}
.mdd_c00036{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);}
.m1d_c00036{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);}
.m74_c00036{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);}
.mbe_c00036{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);}
.m8b_c00036{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);}
.m41_c00036{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.mbf_c00036{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);}
.mcc_c00036{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);}
.me6_c00036{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);}
.me4_c00036{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);}
.m9e_c00036{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);}
.m31_c00036{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);}
.m1e_c00036{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);}
.m14_c00036{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);}
.m59_c00036{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);}
.me1_c00036{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);}
.me5_c00036{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);}
.m82_c00036{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_c00036{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);}
.m9f_c00036{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);}
.m6e_c00036{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);}
.mf0_c00036{transform:matrix(0.182757,0.002193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182757,0.002193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182757,0.002193,-0.003000,0.249982,0,0);}
.m19_c00036{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);}
.m58_c00036{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);}
.mb8_c00036{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);}
.m3b_c00036{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);}
.m38_c00036{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);}
.m9_c00036{transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);}
.m8e_c00036{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);}
.m4e_c00036{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);}
.m93_c00036{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);}
.m9b_c00036{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);}
.mc6_c00036{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);}
.m39_c00036{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);}
.mcf_c00036{transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{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);}
.m8_c00036{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);}
.m4f_c00036{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);}
.md8_c00036{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);}
.mb6_c00036{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);}
.m44_c00036{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);}
.mac_c00036{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);}
.m7_c00036{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);}
.m9a_c00036{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);}
.md_c00036{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);}
.m3c_c00036{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);}
.m78_c00036{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);}
.mc_c00036{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);}
.m17_c00036{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_c00036{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);}
.ma8_c00036{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);}
.m40_c00036{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);}
.m63_c00036{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);}
.m4c_c00036{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);}
.m56_c00036{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);}
.m98_c00036{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);}
.mb7_c00036{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);}
.m55_c00036{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);}
.m2f_c00036{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);}
.mef_c00036{transform:matrix(0.196481,0.002358,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196481,0.002358,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196481,0.002358,-0.003000,0.249982,0,0);}
.md7_c00036{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);}
.m3d_c00036{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);}
.md2_c00036{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);}
.mad_c00036{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);}
.m43_c00036{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);}
.m49_c00036{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);}
.mcb_c00036{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);}
.m1c_c00036{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);}
.m35_c00036{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);}
.m79_c00036{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);}
.mab_c00036{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);}
.mc0_c00036{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);}
.m21_c00036{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);}
.m7d_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);}
.m80_c00036{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);}
.m8c_c00036{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);}
.m96_c00036{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);}
.m52_c00036{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);}
.m72_c00036{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);}
.mda_c00036{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);}
.m15_c00036{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);}
.m92_c00036{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);}
.mc3_c00036{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);}
.md5_c00036{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);}
.m46_c00036{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);}
.m66_c00036{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);}
.mcd_c00036{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);}
.m26_c00036{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);}
.mc4_c00036{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);}
.mec_c00036{transform:matrix(0.206045,0.002473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206045,0.002473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206045,0.002473,-0.003000,0.249982,0,0);}
.m34_c00036{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);}
.mc5_c00036{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);}
.m64_c00036{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_c00036{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);}
.m28_c00036{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);}
.m9d_c00036{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);}
.mdf_c00036{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);}
.meb_c00036{transform:matrix(0.208315,0.002500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208315,0.002500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208315,0.002500,-0.003000,0.249982,0,0);}
.mdc_c00036{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);}
.m97_c00036{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);}
.ma6_c00036{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);}
.ma5_c00036{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);}
.ma2_c00036{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);}
.m42_c00036{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);}
.m9c_c00036{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);}
.mb5_c00036{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);}
.m91_c00036{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);}
.m7e_c00036{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);}
.m77_c00036{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);}
.m32_c00036{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);}
.ma3_c00036{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);}
.m4a_c00036{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);}
.m4b_c00036{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);}
.m95_c00036{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);}
.mc2_c00036{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);}
.m23_c00036{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);}
.mf_c00036{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);}
.m57_c00036{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);}
.m24_c00036{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.mdb_c00036{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);}
.m2b_c00036{transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.med_c00036{transform:matrix(0.222579,0.002671,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222579,0.002671,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222579,0.002671,-0.003000,0.249982,0,0);}
.m81_c00036{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.maa_c00036{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);}
.mf1_c00036{transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);}
.m6f_c00036{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);}
.me0_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);}
.mc8_c00036{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);}
.m2e_c00036{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);}
.mf3_c00036{transform:matrix(0.226349,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226349,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226349,0.002716,-0.003000,0.249982,0,0);}
.m45_c00036{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);}
.m4_c00036{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);}
.mf7_c00036{transform:matrix(0.230288,0.002763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230288,0.002763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230288,0.002763,-0.003000,0.249982,0,0);}
.m90_c00036{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_c00036{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);}
.mc7_c00036{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);}
.m70_c00036{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);}
.m89_c00036{transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);}
.m27_c00036{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);}
.m1f_c00036{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);}
.m2a_c00036{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);}
.m20_c00036{transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234470,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{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);}
.m67_c00036{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);}
.mf8_c00036{transform:matrix(0.236833,0.002842,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236833,0.002842,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236833,0.002842,-0.003000,0.249982,0,0);}
.m6d_c00036{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);}
.md9_c00036{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);}
.m68_c00036{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);}
.m84_c00036{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);}
.m62_c00036{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);}
.m6_c00036{transform:matrix(0.239420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239420,0.000000,0.000000,0.250000,0,0);}
.md4_c00036{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);}
.m6a_c00036{transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00036{transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);}
.m87_c00036{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);}
.mf5_c00036{transform:matrix(0.244042,0.002929,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244042,0.002929,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244042,0.002929,-0.003000,0.249982,0,0);}
.ma7_c00036{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);}
.m12_c00036{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);}
.m22_c00036{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);}
.md1_c00036{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{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);}
.m2_c00036{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);}
.me3_c00036{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m2c_c00036{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m69_c00036{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{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);}
.m29_c00036{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);}
.m30_c00036{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m53_c00036{transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);}
.m61_c00036{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00036{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);}
.mb1_c00036{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);}
.ma0_c00036{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);}
.m1_c00036{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.mb0_c00036{transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261855,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);}
.mf4_c00036{transform:matrix(0.266076,0.003193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266076,0.003193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266076,0.003193,-0.003000,0.249982,0,0);}
.mbd_c00036{transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);}
.mb2_c00036{transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00036{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);}
.m5f_c00036{transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277595,0.000000,0.000000,0.250000,0,0);}
.me8_c00036{transform:matrix(0.279095,0.003349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279095,0.003349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279095,0.003349,-0.003000,0.249982,0,0);}
.m47_c00036{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);}
.mfc_c00036{transform:matrix(0.280890,0.003371,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280890,0.003371,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280890,0.003371,-0.003000,0.249982,0,0);}
.mb9_c00036{transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);}
.mce_c00036{transform:matrix(0.281990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281990,0.000000,0.000000,0.250000,0,0);}
.me9_c00036{transform:matrix(0.282025,0.003384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282025,0.003384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282025,0.003384,-0.003000,0.249982,0,0);}
.m48_c00036{transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);}
.me7_c00036{transform:matrix(0.289039,0.003468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289039,0.003468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289039,0.003468,-0.003000,0.249982,0,0);}
.m54_c00036{transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);}
.m8d_c00036{transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);}
.m3f_c00036{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.me_c00036{transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299395,0.000000,0.000000,0.250000,0,0);}
.m8a_c00036{transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);}
.m5c_c00036{transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);}
.m86_c00036{transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);}
.m99_c00036{transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);}
.mfe_c00036{transform:matrix(0.326701,0.003920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.326701,0.003920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.326701,0.003920,-0.003000,0.249982,0,0);}
.mf9_c00036{transform:matrix(0.328201,0.003938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328201,0.003938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328201,0.003938,-0.003000,0.249982,0,0);}
.m8f_c00036{transform:matrix(0.332445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332445,0.000000,0.000000,0.250000,0,0);}
.mc9_c00036{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.mba_c00036{transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);}
.mae_c00036{transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340845,0.000000,0.000000,0.250000,0,0);}
.m88_c00036{transform:matrix(0.347170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347170,0.000000,0.000000,0.250000,0,0);}
.ma1_c00036{transform:matrix(0.365625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365625,0.000000,0.000000,0.250000,0,0);}
.mfb_c00036{transform:matrix(0.365979,0.004392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.365979,0.004392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.365979,0.004392,-0.003000,0.249982,0,0);}
.m75_c00036{transform:matrix(0.406570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406570,0.000000,0.000000,0.250000,0,0);}
.m71_c00036{transform:matrix(0.406685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406685,0.000000,0.000000,0.250000,0,0);}
.mfd_c00036{transform:matrix(0.492160,0.005906,-0.003000,0.249982,0,0);-ms-transform:matrix(0.492160,0.005906,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.492160,0.005906,-0.003000,0.249982,0,0);}
.m0_c00036{transform:matrix(0.494800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494800,0.000000,0.000000,0.250000,0,0);}
.mf2_c00036{transform:matrix(0.500739,0.006009,-0.003000,0.249982,0,0);-ms-transform:matrix(0.500739,0.006009,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.500739,0.006009,-0.003000,0.249982,0,0);}
.mea_c00036{transform:matrix(0.554950,0.006659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.554950,0.006659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.554950,0.006659,-0.003000,0.249982,0,0);}
.mfa_c00036{transform:matrix(0.599177,0.007190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.599177,0.007190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.599177,0.007190,-0.003000,0.249982,0,0);}
.m5b_c00036{transform:matrix(0.962045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962045,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;}
.fse_c00036{font-size:46.203326px;}
.fsd_c00036{font-size:51.453704px;}
.fsb_c00036{font-size:65.100000px;}
.fsc_c00036{font-size:67.200000px;}
.fs5_c00036{font-size:68.250000px;}
.fs3_c00036{font-size:69.300000px;}
.fs4_c00036{font-size:70.350000px;}
.fs9_c00036{font-size:71.400000px;}
.fs2_c00036{font-size:72.450000px;}
.fs1_c00036{font-size:73.500000px;}
.fs8_c00036{font-size:74.550000px;}
.fs7_c00036{font-size:75.600000px;}
.fsa_c00036{font-size:76.650000px;}
.fs6_c00036{font-size:81.900000px;}
.fs0_c00036{font-size:88.200000px;}
.y0_c00036{bottom:0.000000px;}
.y6b_c00036{bottom:210.177606px;}
.y6a_c00036{bottom:212.083932px;}
.y69_c00036{bottom:212.175876px;}
.y68_c00036{bottom:212.640414px;}
.y67_c00036{bottom:212.768562px;}
.y66_c00036{bottom:212.996316px;}
.y65_c00036{bottom:213.640722px;}
.y64_c00036{bottom:213.852156px;}
.y63_c00036{bottom:214.079856px;}
.y62_c00036{bottom:214.125480px;}
.y61_c00036{bottom:214.379412px;}
.y60_c00036{bottom:227.545212px;}
.y5f_c00036{bottom:228.105894px;}
.y5e_c00036{bottom:228.383544px;}
.y5d_c00036{bottom:228.951282px;}
.y5c_c00036{bottom:229.226034px;}
.y5b_c00036{bottom:229.906740px;}
.y5a_c00036{bottom:230.027160px;}
.y59_c00036{bottom:230.425464px;}
.y58_c00036{bottom:230.606616px;}
.y57_c00036{bottom:230.865996px;}
.y56_c00036{bottom:231.618594px;}
.y55_c00036{bottom:231.899952px;}
.y54_c00036{bottom:232.748922px;}
.y53_c00036{bottom:233.008500px;}
.y52_c00036{bottom:255.166500px;}
.y51_c00036{bottom:255.691500px;}
.y50_c00036{bottom:256.135500px;}
.y4f_c00036{bottom:256.677000px;}
.y4e_c00036{bottom:257.043000px;}
.y4d_c00036{bottom:257.794500px;}
.y4c_c00036{bottom:258.504000px;}
.y4b_c00036{bottom:258.750000px;}
.y4a_c00036{bottom:258.934500px;}
.y49_c00036{bottom:278.338500px;}
.y48_c00036{bottom:300.880500px;}
.y47_c00036{bottom:301.378500px;}
.y46_c00036{bottom:301.857000px;}
.y45_c00036{bottom:302.460000px;}
.y44_c00036{bottom:302.680500px;}
.y43_c00036{bottom:303.268500px;}
.y42_c00036{bottom:303.681000px;}
.y41_c00036{bottom:304.026000px;}
.y40_c00036{bottom:323.164500px;}
.y3f_c00036{bottom:323.692500px;}
.y3e_c00036{bottom:324.223500px;}
.y3d_c00036{bottom:324.496500px;}
.y3c_c00036{bottom:324.880500px;}
.y3b_c00036{bottom:325.195500px;}
.y3a_c00036{bottom:325.483500px;}
.y39_c00036{bottom:326.346000px;}
.y38_c00036{bottom:326.704500px;}
.y37_c00036{bottom:346.225500px;}
.y36_c00036{bottom:347.046000px;}
.y35_c00036{bottom:347.500500px;}
.y34_c00036{bottom:347.764500px;}
.y33_c00036{bottom:348.612000px;}
.y32_c00036{bottom:348.903000px;}
.y31_c00036{bottom:349.152000px;}
.y30_c00036{bottom:349.252500px;}
.y2f_c00036{bottom:349.929000px;}
.y2e_c00036{bottom:370.533000px;}
.y2d_c00036{bottom:391.084500px;}
.y2c_c00036{bottom:391.441500px;}
.y2b_c00036{bottom:391.723500px;}
.y2a_c00036{bottom:392.181000px;}
.y29_c00036{bottom:392.353500px;}
.y28_c00036{bottom:392.491500px;}
.y27_c00036{bottom:393.132000px;}
.y26_c00036{bottom:393.349500px;}
.y25_c00036{bottom:393.958500px;}
.y24_c00036{bottom:394.212000px;}
.y23_c00036{bottom:394.470000px;}
.y22_c00036{bottom:415.149000px;}
.y21_c00036{bottom:415.539000px;}
.y20_c00036{bottom:415.756500px;}
.y1f_c00036{bottom:416.371500px;}
.y1e_c00036{bottom:416.611500px;}
.y1d_c00036{bottom:416.851500px;}
.y1c_c00036{bottom:417.694500px;}
.y1b_c00036{bottom:436.923000px;}
.y1a_c00036{bottom:437.268000px;}
.y19_c00036{bottom:437.520000px;}
.y18_c00036{bottom:437.737500px;}
.y17_c00036{bottom:438.343500px;}
.y16_c00036{bottom:438.630000px;}
.y15_c00036{bottom:439.572000px;}
.y14_c00036{bottom:439.833000px;}
.y13_c00036{bottom:460.945500px;}
.y12_c00036{bottom:484.012500px;}
.y11_c00036{bottom:506.862000px;}
.y10_c00036{bottom:529.599000px;}
.yf_c00036{bottom:552.754500px;}
.ye_c00036{bottom:575.611500px;}
.yd_c00036{bottom:597.616500px;}
.yc_c00036{bottom:620.653500px;}
.yb_c00036{bottom:663.318000px;}
.ya_c00036{bottom:686.214000px;}
.y9_c00036{bottom:709.222500px;}
.y8_c00036{bottom:731.901000px;}
.y7_c00036{bottom:754.849500px;}
.y6_c00036{bottom:777.198000px;}
.y5_c00036{bottom:800.608500px;}
.y4_c00036{bottom:823.501500px;}
.y3_c00036{bottom:846.360000px;}
.y2_c00036{bottom:869.101500px;}
.y1_c00036{bottom:909.603000px;}
.h10_c00036{height:46.203326px;}
.hf_c00036{height:51.453704px;}
.hd_c00036{height:65.100000px;}
.he_c00036{height:67.200000px;}
.h7_c00036{height:68.250000px;}
.h5_c00036{height:69.300000px;}
.h6_c00036{height:70.350000px;}
.hb_c00036{height:71.400000px;}
.h4_c00036{height:72.450000px;}
.h3_c00036{height:73.500000px;}
.ha_c00036{height:74.550000px;}
.h9_c00036{height:75.600000px;}
.hc_c00036{height:76.650000px;}
.h8_c00036{height:81.900000px;}
.h2_c00036{height:88.200000px;}
.h1_c00036{height:1080.000000px;}
.h0_c00036{height:1080.270000px;}
.w1_c00036{width:768.000000px;}
.w0_c00036{width:768.150000px;}
.x0_c00036{left:0.000000px;}
.x82_c00036{left:90.244500px;}
.x6e_c00036{left:99.355500px;}
.x87_c00036{left:103.321866px;}
.x67_c00036{left:109.917000px;}
.x83_c00036{left:111.876000px;}
.x77_c00036{left:124.735500px;}
.x51_c00036{left:128.790000px;}
.x88_c00036{left:131.483874px;}
.x2e_c00036{left:135.000000px;}
.x3a_c00036{left:136.620000px;}
.x5a_c00036{left:138.240000px;}
.x21_c00036{left:139.860000px;}
.x4_c00036{left:141.210000px;}
.x7e_c00036{left:143.484000px;}
.x4d_c00036{left:155.250000px;}
.x3b_c00036{left:157.140000px;}
.x57_c00036{left:158.760000px;}
.x5b_c00036{left:160.650000px;}
.x1b_c00036{left:162.810000px;}
.x78_c00036{left:164.155500px;}
.x2f_c00036{left:166.860000px;}
.x43_c00036{left:170.370000px;}
.x53_c00036{left:174.690000px;}
.x1_c00036{left:176.310000px;}
.x46_c00036{left:178.200000px;}
.xc_c00036{left:180.090000px;}
.x22_c00036{left:182.250000px;}
.x5_c00036{left:184.680000px;}
.x33_c00036{left:189.540000px;}
.x5f_c00036{left:194.940000px;}
.x1c_c00036{left:198.990000px;}
.x6f_c00036{left:200.965500px;}
.x4e_c00036{left:204.390000px;}
.x47_c00036{left:205.740000px;}
.x3c_c00036{left:207.090000px;}
.x76_c00036{left:208.275000px;}
.x64_c00036{left:209.365500px;}
.x23_c00036{left:212.220000px;}
.xd_c00036{left:216.810000px;}
.x14_c00036{left:221.130000px;}
.x7f_c00036{left:223.125000px;}
.x30_c00036{left:224.370000px;}
.x2b_c00036{left:227.610000px;}
.x65_c00036{left:229.329000px;}
.x1d_c00036{left:232.740000px;}
.x68_c00036{left:234.508500px;}
.x3f_c00036{left:237.060000px;}
.x34_c00036{left:241.920000px;}
.x24_c00036{left:244.620000px;}
.x6_c00036{left:246.780000px;}
.x66_c00036{left:249.306000px;}
.xe_c00036{left:253.800000px;}
.x54_c00036{left:256.770000px;}
.x69_c00036{left:258.730500px;}
.x40_c00036{left:260.280000px;}
.x72_c00036{left:262.344000px;}
.x3d_c00036{left:264.330000px;}
.x79_c00036{left:267.025500px;}
.x84_c00036{left:268.786500px;}
.x63_c00036{left:273.573000px;}
.x35_c00036{left:275.130000px;}
.xf_c00036{left:277.560000px;}
.x58_c00036{left:282.420000px;}
.x48_c00036{left:285.390000px;}
.x25_c00036{left:287.280000px;}
.x5c_c00036{left:289.710000px;}
.x73_c00036{left:291.190500px;}
.x1e_c00036{left:293.760000px;}
.x7_c00036{left:296.460000px;}
.x2c_c00036{left:300.510000px;}
.x85_c00036{left:305.497500px;}
.x44_c00036{left:308.070000px;}
.x7a_c00036{left:309.955500px;}
.x36_c00036{left:312.120000px;}
.x31_c00036{left:314.010000px;}
.x10_c00036{left:316.170000px;}
.x49_c00036{left:318.870000px;}
.x26_c00036{left:320.490000px;}
.x74_c00036{left:322.764000px;}
.x15_c00036{left:324.000000px;}
.x2d_c00036{left:328.320000px;}
.x6a_c00036{left:329.895000px;}
.x32_c00036{left:331.020000px;}
.x1f_c00036{left:332.100000px;}
.x11_c00036{left:334.530000px;}
.x70_c00036{left:336.319500px;}
.x37_c00036{left:338.310000px;}
.x4f_c00036{left:340.740000px;}
.x7b_c00036{left:342.355500px;}
.x6b_c00036{left:345.204000px;}
.x16_c00036{left:346.680000px;}
.x59_c00036{left:349.110000px;}
.x8_c00036{left:352.080000px;}
.x4a_c00036{left:359.100000px;}
.x5d_c00036{left:360.180000px;}
.x80_c00036{left:361.357500px;}
.x6c_c00036{left:364.369500px;}
.x60_c00036{left:366.390000px;}
.x17_c00036{left:369.090000px;}
.x55_c00036{left:371.790000px;}
.x12_c00036{left:373.680000px;}
.x9_c00036{left:376.920000px;}
.x41_c00036{left:379.350000px;}
.x5e_c00036{left:382.050000px;}
.x27_c00036{left:388.800000px;}
.x61_c00036{left:391.230000px;}
.x7c_c00036{left:397.165500px;}
.x81_c00036{left:398.361000px;}
.x4b_c00036{left:402.570000px;}
.x18_c00036{left:404.730000px;}
.x2_c00036{left:406.620000px;}
.x28_c00036{left:409.050000px;}
.xa_c00036{left:412.290000px;}
.x45_c00036{left:413.910000px;}
.x20_c00036{left:416.070000px;}
.x42_c00036{left:420.120000px;}
.x19_c00036{left:423.630000px;}
.x38_c00036{left:425.250000px;}
.x52_c00036{left:428.220000px;}
.x4c_c00036{left:431.730000px;}
.xb_c00036{left:438.480000px;}
.x13_c00036{left:440.910000px;}
.x39_c00036{left:443.070000px;}
.x6d_c00036{left:446.454000px;}
.x7d_c00036{left:449.545500px;}
.x1a_c00036{left:450.630000px;}
.x56_c00036{left:451.710000px;}
.x50_c00036{left:453.330000px;}
.x62_c00036{left:454.680000px;}
.x29_c00036{left:461.700000px;}
.x3_c00036{left:468.990000px;}
.x71_c00036{left:476.251500px;}
.x3e_c00036{left:487.080000px;}
.x75_c00036{left:494.391000px;}
.x2a_c00036{left:498.690000px;}
.x86_c00036{left:545.518500px;}
.x89_c00036{left:570.239178px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.fse_c00036{font-size:41.069623pt;}
.fsd_c00036{font-size:45.736626pt;}
.fsb_c00036{font-size:57.866667pt;}
.fsc_c00036{font-size:59.733333pt;}
.fs5_c00036{font-size:60.666667pt;}
.fs3_c00036{font-size:61.600000pt;}
.fs4_c00036{font-size:62.533333pt;}
.fs9_c00036{font-size:63.466667pt;}
.fs2_c00036{font-size:64.400000pt;}
.fs1_c00036{font-size:65.333333pt;}
.fs8_c00036{font-size:66.266667pt;}
.fs7_c00036{font-size:67.200000pt;}
.fsa_c00036{font-size:68.133333pt;}
.fs6_c00036{font-size:72.800000pt;}
.fs0_c00036{font-size:78.400000pt;}
.y0_c00036{bottom:0.000000pt;}
.y6b_c00036{bottom:186.824539pt;}
.y6a_c00036{bottom:188.519051pt;}
.y69_c00036{bottom:188.600779pt;}
.y68_c00036{bottom:189.013701pt;}
.y67_c00036{bottom:189.127611pt;}
.y66_c00036{bottom:189.330059pt;}
.y65_c00036{bottom:189.902864pt;}
.y64_c00036{bottom:190.090805pt;}
.y63_c00036{bottom:190.293205pt;}
.y62_c00036{bottom:190.333760pt;}
.y61_c00036{bottom:190.559477pt;}
.y60_c00036{bottom:202.262411pt;}
.y5f_c00036{bottom:202.760795pt;}
.y5e_c00036{bottom:203.007595pt;}
.y5d_c00036{bottom:203.512251pt;}
.y5c_c00036{bottom:203.756475pt;}
.y5b_c00036{bottom:204.361547pt;}
.y5a_c00036{bottom:204.468587pt;}
.y59_c00036{bottom:204.822635pt;}
.y58_c00036{bottom:204.983659pt;}
.y57_c00036{bottom:205.214219pt;}
.y56_c00036{bottom:205.883195pt;}
.y55_c00036{bottom:206.133291pt;}
.y54_c00036{bottom:206.887931pt;}
.y53_c00036{bottom:207.118667pt;}
.y52_c00036{bottom:226.814667pt;}
.y51_c00036{bottom:227.281333pt;}
.y50_c00036{bottom:227.676000pt;}
.y4f_c00036{bottom:228.157333pt;}
.y4e_c00036{bottom:228.482667pt;}
.y4d_c00036{bottom:229.150667pt;}
.y4c_c00036{bottom:229.781333pt;}
.y4b_c00036{bottom:230.000000pt;}
.y4a_c00036{bottom:230.164000pt;}
.y49_c00036{bottom:247.412000pt;}
.y48_c00036{bottom:267.449333pt;}
.y47_c00036{bottom:267.892000pt;}
.y46_c00036{bottom:268.317333pt;}
.y45_c00036{bottom:268.853333pt;}
.y44_c00036{bottom:269.049333pt;}
.y43_c00036{bottom:269.572000pt;}
.y42_c00036{bottom:269.938667pt;}
.y41_c00036{bottom:270.245333pt;}
.y40_c00036{bottom:287.257333pt;}
.y3f_c00036{bottom:287.726667pt;}
.y3e_c00036{bottom:288.198667pt;}
.y3d_c00036{bottom:288.441333pt;}
.y3c_c00036{bottom:288.782667pt;}
.y3b_c00036{bottom:289.062667pt;}
.y3a_c00036{bottom:289.318667pt;}
.y39_c00036{bottom:290.085333pt;}
.y38_c00036{bottom:290.404000pt;}
.y37_c00036{bottom:307.756000pt;}
.y36_c00036{bottom:308.485333pt;}
.y35_c00036{bottom:308.889333pt;}
.y34_c00036{bottom:309.124000pt;}
.y33_c00036{bottom:309.877333pt;}
.y32_c00036{bottom:310.136000pt;}
.y31_c00036{bottom:310.357333pt;}
.y30_c00036{bottom:310.446667pt;}
.y2f_c00036{bottom:311.048000pt;}
.y2e_c00036{bottom:329.362667pt;}
.y2d_c00036{bottom:347.630667pt;}
.y2c_c00036{bottom:347.948000pt;}
.y2b_c00036{bottom:348.198667pt;}
.y2a_c00036{bottom:348.605333pt;}
.y29_c00036{bottom:348.758667pt;}
.y28_c00036{bottom:348.881333pt;}
.y27_c00036{bottom:349.450667pt;}
.y26_c00036{bottom:349.644000pt;}
.y25_c00036{bottom:350.185333pt;}
.y24_c00036{bottom:350.410667pt;}
.y23_c00036{bottom:350.640000pt;}
.y22_c00036{bottom:369.021333pt;}
.y21_c00036{bottom:369.368000pt;}
.y20_c00036{bottom:369.561333pt;}
.y1f_c00036{bottom:370.108000pt;}
.y1e_c00036{bottom:370.321333pt;}
.y1d_c00036{bottom:370.534667pt;}
.y1c_c00036{bottom:371.284000pt;}
.y1b_c00036{bottom:388.376000pt;}
.y1a_c00036{bottom:388.682667pt;}
.y19_c00036{bottom:388.906667pt;}
.y18_c00036{bottom:389.100000pt;}
.y17_c00036{bottom:389.638667pt;}
.y16_c00036{bottom:389.893333pt;}
.y15_c00036{bottom:390.730667pt;}
.y14_c00036{bottom:390.962667pt;}
.y13_c00036{bottom:409.729333pt;}
.y12_c00036{bottom:430.233333pt;}
.y11_c00036{bottom:450.544000pt;}
.y10_c00036{bottom:470.754667pt;}
.yf_c00036{bottom:491.337333pt;}
.ye_c00036{bottom:511.654667pt;}
.yd_c00036{bottom:531.214667pt;}
.yc_c00036{bottom:551.692000pt;}
.yb_c00036{bottom:589.616000pt;}
.ya_c00036{bottom:609.968000pt;}
.y9_c00036{bottom:630.420000pt;}
.y8_c00036{bottom:650.578667pt;}
.y7_c00036{bottom:670.977333pt;}
.y6_c00036{bottom:690.842667pt;}
.y5_c00036{bottom:711.652000pt;}
.y4_c00036{bottom:732.001333pt;}
.y3_c00036{bottom:752.320000pt;}
.y2_c00036{bottom:772.534667pt;}
.y1_c00036{bottom:808.536000pt;}
.h10_c00036{height:41.069623pt;}
.hf_c00036{height:45.736626pt;}
.hd_c00036{height:57.866667pt;}
.he_c00036{height:59.733333pt;}
.h7_c00036{height:60.666667pt;}
.h5_c00036{height:61.600000pt;}
.h6_c00036{height:62.533333pt;}
.hb_c00036{height:63.466667pt;}
.h4_c00036{height:64.400000pt;}
.h3_c00036{height:65.333333pt;}
.ha_c00036{height:66.266667pt;}
.h9_c00036{height:67.200000pt;}
.hc_c00036{height:68.133333pt;}
.h8_c00036{height:72.800000pt;}
.h2_c00036{height:78.400000pt;}
.h1_c00036{height:960.000000pt;}
.h0_c00036{height:960.240000pt;}
.w1_c00036{width:682.666667pt;}
.w0_c00036{width:682.800000pt;}
.x0_c00036{left:0.000000pt;}
.x82_c00036{left:80.217333pt;}
.x6e_c00036{left:88.316000pt;}
.x87_c00036{left:91.841659pt;}
.x67_c00036{left:97.704000pt;}
.x83_c00036{left:99.445333pt;}
.x77_c00036{left:110.876000pt;}
.x51_c00036{left:114.480000pt;}
.x88_c00036{left:116.874555pt;}
.x2e_c00036{left:120.000000pt;}
.x3a_c00036{left:121.440000pt;}
.x5a_c00036{left:122.880000pt;}
.x21_c00036{left:124.320000pt;}
.x4_c00036{left:125.520000pt;}
.x7e_c00036{left:127.541333pt;}
.x4d_c00036{left:138.000000pt;}
.x3b_c00036{left:139.680000pt;}
.x57_c00036{left:141.120000pt;}
.x5b_c00036{left:142.800000pt;}
.x1b_c00036{left:144.720000pt;}
.x78_c00036{left:145.916000pt;}
.x2f_c00036{left:148.320000pt;}
.x43_c00036{left:151.440000pt;}
.x53_c00036{left:155.280000pt;}
.x1_c00036{left:156.720000pt;}
.x46_c00036{left:158.400000pt;}
.xc_c00036{left:160.080000pt;}
.x22_c00036{left:162.000000pt;}
.x5_c00036{left:164.160000pt;}
.x33_c00036{left:168.480000pt;}
.x5f_c00036{left:173.280000pt;}
.x1c_c00036{left:176.880000pt;}
.x6f_c00036{left:178.636000pt;}
.x4e_c00036{left:181.680000pt;}
.x47_c00036{left:182.880000pt;}
.x3c_c00036{left:184.080000pt;}
.x76_c00036{left:185.133333pt;}
.x64_c00036{left:186.102667pt;}
.x23_c00036{left:188.640000pt;}
.xd_c00036{left:192.720000pt;}
.x14_c00036{left:196.560000pt;}
.x7f_c00036{left:198.333333pt;}
.x30_c00036{left:199.440000pt;}
.x2b_c00036{left:202.320000pt;}
.x65_c00036{left:203.848000pt;}
.x1d_c00036{left:206.880000pt;}
.x68_c00036{left:208.452000pt;}
.x3f_c00036{left:210.720000pt;}
.x34_c00036{left:215.040000pt;}
.x24_c00036{left:217.440000pt;}
.x6_c00036{left:219.360000pt;}
.x66_c00036{left:221.605333pt;}
.xe_c00036{left:225.600000pt;}
.x54_c00036{left:228.240000pt;}
.x69_c00036{left:229.982667pt;}
.x40_c00036{left:231.360000pt;}
.x72_c00036{left:233.194667pt;}
.x3d_c00036{left:234.960000pt;}
.x79_c00036{left:237.356000pt;}
.x84_c00036{left:238.921333pt;}
.x63_c00036{left:243.176000pt;}
.x35_c00036{left:244.560000pt;}
.xf_c00036{left:246.720000pt;}
.x58_c00036{left:251.040000pt;}
.x48_c00036{left:253.680000pt;}
.x25_c00036{left:255.360000pt;}
.x5c_c00036{left:257.520000pt;}
.x73_c00036{left:258.836000pt;}
.x1e_c00036{left:261.120000pt;}
.x7_c00036{left:263.520000pt;}
.x2c_c00036{left:267.120000pt;}
.x85_c00036{left:271.553333pt;}
.x44_c00036{left:273.840000pt;}
.x7a_c00036{left:275.516000pt;}
.x36_c00036{left:277.440000pt;}
.x31_c00036{left:279.120000pt;}
.x10_c00036{left:281.040000pt;}
.x49_c00036{left:283.440000pt;}
.x26_c00036{left:284.880000pt;}
.x74_c00036{left:286.901333pt;}
.x15_c00036{left:288.000000pt;}
.x2d_c00036{left:291.840000pt;}
.x6a_c00036{left:293.240000pt;}
.x32_c00036{left:294.240000pt;}
.x1f_c00036{left:295.200000pt;}
.x11_c00036{left:297.360000pt;}
.x70_c00036{left:298.950667pt;}
.x37_c00036{left:300.720000pt;}
.x4f_c00036{left:302.880000pt;}
.x7b_c00036{left:304.316000pt;}
.x6b_c00036{left:306.848000pt;}
.x16_c00036{left:308.160000pt;}
.x59_c00036{left:310.320000pt;}
.x8_c00036{left:312.960000pt;}
.x4a_c00036{left:319.200000pt;}
.x5d_c00036{left:320.160000pt;}
.x80_c00036{left:321.206667pt;}
.x6c_c00036{left:323.884000pt;}
.x60_c00036{left:325.680000pt;}
.x17_c00036{left:328.080000pt;}
.x55_c00036{left:330.480000pt;}
.x12_c00036{left:332.160000pt;}
.x9_c00036{left:335.040000pt;}
.x41_c00036{left:337.200000pt;}
.x5e_c00036{left:339.600000pt;}
.x27_c00036{left:345.600000pt;}
.x61_c00036{left:347.760000pt;}
.x7c_c00036{left:353.036000pt;}
.x81_c00036{left:354.098667pt;}
.x4b_c00036{left:357.840000pt;}
.x18_c00036{left:359.760000pt;}
.x2_c00036{left:361.440000pt;}
.x28_c00036{left:363.600000pt;}
.xa_c00036{left:366.480000pt;}
.x45_c00036{left:367.920000pt;}
.x20_c00036{left:369.840000pt;}
.x42_c00036{left:373.440000pt;}
.x19_c00036{left:376.560000pt;}
.x38_c00036{left:378.000000pt;}
.x52_c00036{left:380.640000pt;}
.x4c_c00036{left:383.760000pt;}
.xb_c00036{left:389.760000pt;}
.x13_c00036{left:391.920000pt;}
.x39_c00036{left:393.840000pt;}
.x6d_c00036{left:396.848000pt;}
.x7d_c00036{left:399.596000pt;}
.x1a_c00036{left:400.560000pt;}
.x56_c00036{left:401.520000pt;}
.x50_c00036{left:402.960000pt;}
.x62_c00036{left:404.160000pt;}
.x29_c00036{left:410.400000pt;}
.x3_c00036{left:416.880000pt;}
.x71_c00036{left:423.334667pt;}
.x3e_c00036{left:432.960000pt;}
.x75_c00036{left:439.458667pt;}
.x2a_c00036{left:443.280000pt;}
.x86_c00036{left:484.905333pt;}
.x89_c00036{left:506.879269pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m99_c00037{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);}
.mb2_c00037{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);}
.ma3_c00037{transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);}
.mfb_c00037{transform:matrix(0.064071,0.000705,-0.002750,0.249985,0,0);-ms-transform:matrix(0.064071,0.000705,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.064071,0.000705,-0.002750,0.249985,0,0);}
.mf6_c00037{transform:matrix(0.081045,0.000891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.081045,0.000891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.081045,0.000891,-0.002750,0.249985,0,0);}
.m53_c00037{transform:matrix(0.089885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089885,0.000000,0.000000,0.250000,0,0);}
.maa_c00037{transform:matrix(0.109165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109165,0.000000,0.000000,0.250000,0,0);}
.m57_c00037{transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00037{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.m32_c00037{transform:matrix(0.143370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143370,0.000000,0.000000,0.250000,0,0);}
.m3d_c00037{transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147060,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{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);}
.mab_c00037{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);}
.m9_c00037{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);}
.m3a_c00037{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);}
.mf4_c00037{transform:matrix(0.158970,0.001749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158970,0.001749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158970,0.001749,-0.002750,0.249985,0,0);}
.mbc_c00037{transform:matrix(0.158996,0.001113,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158996,0.001113,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158996,0.001113,-0.001750,0.249994,0,0);}
.mb1_c00037{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);}
.me_c00037{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);}
.mf_c00037{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);}
.m30_c00037{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);}
.m60_c00037{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);}
.mcf_c00037{transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);}
.mde_c00037{transform:matrix(0.166376,0.001165,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166376,0.001165,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166376,0.001165,-0.001750,0.249994,0,0);}
.m2b_c00037{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);}
.m41_c00037{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);}
.m80_c00037{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);}
.m27_c00037{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);}
.mc0_c00037{transform:matrix(0.168836,0.001182,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168836,0.001182,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168836,0.001182,-0.001750,0.249994,0,0);}
.md4_c00037{transform:matrix(0.169776,0.001188,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169776,0.001188,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169776,0.001188,-0.001750,0.249994,0,0);}
.mf3_c00037{transform:matrix(0.171095,0.001882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171095,0.001882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171095,0.001882,-0.002750,0.249985,0,0);}
.m50_c00037{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m81_c00037{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);}
.m98_c00037{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);}
.mea_c00037{transform:matrix(0.175336,0.001227,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175336,0.001227,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175336,0.001227,-0.001750,0.249994,0,0);}
.mc7_c00037{transform:matrix(0.175656,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175656,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175656,0.001230,-0.001750,0.249994,0,0);}
.m78_c00037{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);}
.m33_c00037{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);}
.mc4_c00037{transform:matrix(0.176911,0.001238,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176911,0.001238,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176911,0.001238,-0.001750,0.249994,0,0);}
.m2_c00037{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);}
.m66_c00037{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);}
.m3f_c00037{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);}
.ma2_c00037{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);}
.m1_c00037{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);}
.me2_c00037{transform:matrix(0.180176,0.001261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180176,0.001261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180176,0.001261,-0.001750,0.249994,0,0);}
.m82_c00037{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);}
.m94_c00037{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);}
.m45_c00037{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);}
.m10_c00037{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);}
.m3b_c00037{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);}
.md5_c00037{transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);}
.mba_c00037{transform:matrix(0.184565,0.001292,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184565,0.001292,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184565,0.001292,-0.001750,0.249994,0,0);}
.m35_c00037{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);}
.m61_c00037{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);}
.m3_c00037{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);}
.mbd_c00037{transform:matrix(0.185905,0.001301,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185905,0.001301,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185905,0.001301,-0.001750,0.249994,0,0);}
.ma0_c00037{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);}
.mdc_c00037{transform:matrix(0.186340,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186340,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186340,0.001304,-0.001750,0.249994,0,0);}
.m47_c00037{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);}
.m31_c00037{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);}
.m1f_c00037{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);}
.m56_c00037{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);}
.md8_c00037{transform:matrix(0.187530,0.001313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187530,0.001313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187530,0.001313,-0.001750,0.249994,0,0);}
.m2d_c00037{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);}
.m86_c00037{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);}
.m2e_c00037{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);}
.md2_c00037{transform:matrix(0.189555,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189555,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189555,0.001327,-0.001750,0.249994,0,0);}
.mc_c00037{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);}
.m40_c00037{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);}
.m62_c00037{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);}
.me3_c00037{transform:matrix(0.190735,0.001335,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190735,0.001335,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190735,0.001335,-0.001750,0.249994,0,0);}
.m85_c00037{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);}
.m5_c00037{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);}
.m26_c00037{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);}
.md3_c00037{transform:matrix(0.191130,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191130,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191130,0.001338,-0.001750,0.249994,0,0);}
.m12_c00037{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);}
.m52_c00037{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);}
.m8a_c00037{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);}
.m7f_c00037{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);}
.mdf_c00037{transform:matrix(0.192185,0.001345,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192185,0.001345,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192185,0.001345,-0.001750,0.249994,0,0);}
.m63_c00037{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);}
.m79_c00037{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);}
.m7d_c00037{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);}
.m9b_c00037{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);}
.mdd_c00037{transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);}
.mb_c00037{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);}
.me6_c00037{transform:matrix(0.197080,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197080,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197080,0.001380,-0.001750,0.249994,0,0);}
.m6e_c00037{transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00037{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);}
.mc8_c00037{transform:matrix(0.198180,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198180,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198180,0.001387,-0.001750,0.249994,0,0);}
.mc9_c00037{transform:matrix(0.198395,0.001389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198395,0.001389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198395,0.001389,-0.001750,0.249994,0,0);}
.md1_c00037{transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);}
.ma4_c00037{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);}
.m7b_c00037{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);}
.m38_c00037{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);}
.m0_c00037{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);}
.me1_c00037{transform:matrix(0.200945,0.001407,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200945,0.001407,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200945,0.001407,-0.001750,0.249994,0,0);}
.m6d_c00037{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);}
.m7a_c00037{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);}
.m95_c00037{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);}
.mc5_c00037{transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);}
.m14_c00037{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);}
.mc2_c00037{transform:matrix(0.202565,0.001418,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202565,0.001418,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202565,0.001418,-0.001750,0.249994,0,0);}
.ma5_c00037{transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{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);}
.m2c_c00037{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);}
.mac_c00037{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);}
.m7c_c00037{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);}
.m3e_c00037{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);}
.m46_c00037{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);}
.m1b_c00037{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);}
.m7e_c00037{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);}
.m42_c00037{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);}
.m69_c00037{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);}
.m22_c00037{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);}
.mbf_c00037{transform:matrix(0.207850,0.001455,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207850,0.001455,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207850,0.001455,-0.001750,0.249994,0,0);}
.m16_c00037{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);}
.m13_c00037{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);}
.ma9_c00037{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);}
.mae_c00037{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);}
.md0_c00037{transform:matrix(0.210200,0.001471,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210200,0.001471,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210200,0.001471,-0.001750,0.249994,0,0);}
.mdb_c00037{transform:matrix(0.210375,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210375,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210375,0.001473,-0.001750,0.249994,0,0);}
.m75_c00037{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);}
.m1a_c00037{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);}
.me8_c00037{transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);}
.m70_c00037{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);}
.m71_c00037{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);}
.meb_c00037{transform:matrix(0.213020,0.001491,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213020,0.001491,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213020,0.001491,-0.001750,0.249994,0,0);}
.mcd_c00037{transform:matrix(0.213245,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213245,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213245,0.001493,-0.001750,0.249994,0,0);}
.m65_c00037{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);}
.m4a_c00037{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);}
.mb9_c00037{transform:matrix(0.214805,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214805,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214805,0.001504,-0.001750,0.249994,0,0);}
.m68_c00037{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);}
.m6f_c00037{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);}
.m5b_c00037{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);}
.ma8_c00037{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);}
.ma1_c00037{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);}
.med_c00037{transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);}
.m2a_c00037{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);}
.m6a_c00037{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);}
.m5a_c00037{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);}
.m25_c00037{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);}
.m5d_c00037{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);}
.m1d_c00037{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);}
.m39_c00037{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);}
.m4c_c00037{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);}
.m7_c00037{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);}
.md6_c00037{transform:matrix(0.220415,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220415,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220415,0.001543,-0.001750,0.249994,0,0);}
.m6b_c00037{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);}
.m6_c00037{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00037{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);}
.m90_c00037{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);}
.mb0_c00037{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);}
.mc6_c00037{transform:matrix(0.223710,0.001566,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223710,0.001566,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223710,0.001566,-0.001750,0.249994,0,0);}
.mda_c00037{transform:matrix(0.224420,0.001571,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224420,0.001571,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224420,0.001571,-0.001750,0.249994,0,0);}
.mcb_c00037{transform:matrix(0.224739,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224739,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224739,0.001573,-0.001750,0.249994,0,0);}
.m29_c00037{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);}
.m44_c00037{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);}
.m43_c00037{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.me0_c00037{transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);}
.maf_c00037{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);}
.mc1_c00037{transform:matrix(0.230194,0.001611,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230194,0.001611,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230194,0.001611,-0.001750,0.249994,0,0);}
.md7_c00037{transform:matrix(0.230264,0.001612,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230264,0.001612,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230264,0.001612,-0.001750,0.249994,0,0);}
.m48_c00037{transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{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);}
.md9_c00037{transform:matrix(0.232379,0.001627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232379,0.001627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232379,0.001627,-0.001750,0.249994,0,0);}
.m67_c00037{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);}
.m36_c00037{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);}
.m9f_c00037{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);}
.mee_c00037{transform:matrix(0.233569,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233569,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233569,0.001635,-0.001750,0.249994,0,0);}
.mca_c00037{transform:matrix(0.233654,0.001636,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233654,0.001636,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233654,0.001636,-0.001750,0.249994,0,0);}
.m11_c00037{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);}
.m3c_c00037{transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);}
.me4_c00037{transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);}
.me9_c00037{transform:matrix(0.236349,0.001654,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236349,0.001654,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236349,0.001654,-0.001750,0.249994,0,0);}
.me5_c00037{transform:matrix(0.237274,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237274,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237274,0.001661,-0.001750,0.249994,0,0);}
.m2f_c00037{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);}
.mc3_c00037{transform:matrix(0.237864,0.001665,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237864,0.001665,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237864,0.001665,-0.001750,0.249994,0,0);}
.m4e_c00037{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);}
.m9d_c00037{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.mce_c00037{transform:matrix(0.243009,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243009,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243009,0.001701,-0.001750,0.249994,0,0);}
.m8b_c00037{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.m21_c00037{transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);}
.m92_c00037{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);}
.mbb_c00037{transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);}
.m6c_c00037{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);}
.m64_c00037{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.mb8_c00037{transform:matrix(0.253534,0.001775,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253534,0.001775,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253534,0.001775,-0.001750,0.249994,0,0);}
.m76_c00037{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00037{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{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);}
.m9c_c00037{transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259665,0.000000,0.000000,0.250000,0,0);}
.m88_c00037{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m5c_c00037{transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);}
.m4f_c00037{transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);}
.m74_c00037{transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);}
.m54_c00037{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m89_c00037{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.mf5_c00037{transform:matrix(0.269604,0.002966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269604,0.002966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269604,0.002966,-0.002750,0.249985,0,0);}
.m20_c00037{transform:matrix(0.271655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271655,0.000000,0.000000,0.250000,0,0);}
.mf1_c00037{transform:matrix(0.278288,0.003061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278288,0.003061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278288,0.003061,-0.002750,0.249985,0,0);}
.m55_c00037{transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);}
.mf2_c00037{transform:matrix(0.281128,0.003092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281128,0.003092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281128,0.003092,-0.002750,0.249985,0,0);}
.m4d_c00037{transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283705,0.000000,0.000000,0.250000,0,0);}
.m37_c00037{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.m28_c00037{transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);}
.mb6_c00037{transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287905,0.000000,0.000000,0.250000,0,0);}
.m58_c00037{transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);}
.m97_c00037{transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298710,0.000000,0.000000,0.250000,0,0);}
.mad_c00037{transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);}
.m8f_c00037{transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);}
.mf0_c00037{transform:matrix(0.339639,0.003736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.339639,0.003736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.339639,0.003736,-0.002750,0.249985,0,0);}
.mbe_c00037{transform:matrix(0.345232,0.002417,-0.001750,0.249994,0,0);-ms-transform:matrix(0.345232,0.002417,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.345232,0.002417,-0.001750,0.249994,0,0);}
.m84_c00037{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.354345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354345,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.357320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357320,0.000000,0.000000,0.250000,0,0);}
.me7_c00037{transform:matrix(0.357476,0.002502,-0.001750,0.249994,0,0);-ms-transform:matrix(0.357476,0.002502,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.357476,0.002502,-0.001750,0.249994,0,0);}
.m8d_c00037{transform:matrix(0.359100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359100,0.000000,0.000000,0.250000,0,0);}
.mb4_c00037{transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359555,0.000000,0.000000,0.250000,0,0);}
.m77_c00037{transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);}
.mcc_c00037{transform:matrix(0.366776,0.002567,-0.001750,0.249994,0,0);-ms-transform:matrix(0.366776,0.002567,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.366776,0.002567,-0.001750,0.249994,0,0);}
.m83_c00037{transform:matrix(0.369470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369470,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{transform:matrix(0.383185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383185,0.000000,0.000000,0.250000,0,0);}
.m72_c00037{transform:matrix(0.386665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386665,0.000000,0.000000,0.250000,0,0);}
.m59_c00037{transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);}
.m8c_c00037{transform:matrix(0.404150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404150,0.000000,0.000000,0.250000,0,0);}
.m49_c00037{transform:matrix(0.406660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406660,0.000000,0.000000,0.250000,0,0);}
.m91_c00037{transform:matrix(0.415165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00037{transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);}
.m34_c00037{transform:matrix(0.425915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425915,0.000000,0.000000,0.250000,0,0);}
.m96_c00037{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00037{transform:matrix(0.433190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433190,0.000000,0.000000,0.250000,0,0);}
.m87_c00037{transform:matrix(0.452530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452530,0.000000,0.000000,0.250000,0,0);}
.mfc_c00037{transform:matrix(0.456217,0.005018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.456217,0.005018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.456217,0.005018,-0.002750,0.249985,0,0);}
.m73_c00037{transform:matrix(0.467905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467905,0.000000,0.000000,0.250000,0,0);}
.m9a_c00037{transform:matrix(0.470890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470890,0.000000,0.000000,0.250000,0,0);}
.m93_c00037{transform:matrix(0.477995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477995,0.000000,0.000000,0.250000,0,0);}
.mec_c00037{transform:matrix(0.478093,0.003347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.478093,0.003347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.478093,0.003347,-0.001750,0.249994,0,0);}
.mf8_c00037{transform:matrix(0.543612,0.005980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.543612,0.005980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.543612,0.005980,-0.002750,0.249985,0,0);}
.m5e_c00037{transform:matrix(0.586085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586085,0.000000,0.000000,0.250000,0,0);}
.mb7_c00037{transform:matrix(0.587470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587470,0.000000,0.000000,0.250000,0,0);}
.m51_c00037{transform:matrix(0.588785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588785,0.000000,0.000000,0.250000,0,0);}
.mfe_c00037{transform:matrix(0.590409,0.006495,-0.002750,0.249985,0,0);-ms-transform:matrix(0.590409,0.006495,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.590409,0.006495,-0.002750,0.249985,0,0);}
.mfa_c00037{transform:matrix(0.678769,0.007466,-0.002750,0.249985,0,0);-ms-transform:matrix(0.678769,0.007466,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.678769,0.007466,-0.002750,0.249985,0,0);}
.mf9_c00037{transform:matrix(0.768843,0.008457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.768843,0.008457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.768843,0.008457,-0.002750,0.249985,0,0);}
.mef_c00037{transform:matrix(0.962582,0.010588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.962582,0.010588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.962582,0.010588,-0.002750,0.249985,0,0);}
.mb3_c00037{transform:matrix(1.121230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.121230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.121230,0.000000,0.000000,0.250000,0,0);}
.mf7_c00037{transform:matrix(1.308721,0.014396,-0.002750,0.249985,0,0);-ms-transform:matrix(1.308721,0.014396,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.308721,0.014396,-0.002750,0.249985,0,0);}
.mfd_c00037{transform:matrix(1.697627,0.018674,-0.002750,0.249985,0,0);-ms-transform:matrix(1.697627,0.018674,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.697627,0.018674,-0.002750,0.249985,0,0);}
.mb5_c00037{transform:matrix(2.044485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.044485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.044485,0.000000,0.000000,0.250000,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;}
._0_c00037{margin-left:-7.529817px;}
.fc0_c00037{color:transparent;}
.fsd_c00037{font-size:22.050000px;}
.fs9_c00037{font-size:25.200000px;}
.fs12_c00037{font-size:38.852350px;}
.fs10_c00037{font-size:50.401235px;}
.fse_c00037{font-size:51.451261px;}
.fsf_c00037{font-size:53.551312px;}
.fs8_c00037{font-size:61.950000px;}
.fs3_c00037{font-size:63.000000px;}
.fs7_c00037{font-size:67.200000px;}
.fsb_c00037{font-size:68.250000px;}
.fs2_c00037{font-size:69.300000px;}
.fs11_c00037{font-size:69.304193px;}
.fs6_c00037{font-size:70.350000px;}
.fs5_c00037{font-size:71.400000px;}
.fs4_c00037{font-size:72.450000px;}
.fsa_c00037{font-size:73.500000px;}
.fs1_c00037{font-size:75.600000px;}
.fsc_c00037{font-size:77.700000px;}
.fs0_c00037{font-size:78.750000px;}
.y0_c00037{bottom:0.000000px;}
.y66_c00037{bottom:148.674258px;}
.y65_c00037{bottom:148.674555px;}
.y67_c00037{bottom:148.674801px;}
.y68_c00037{bottom:148.675057px;}
.y69_c00037{bottom:148.675164px;}
.y64_c00037{bottom:148.675272px;}
.y63_c00037{bottom:148.675282px;}
.y6a_c00037{bottom:148.675489px;}
.y62_c00037{bottom:148.675539px;}
.y61_c00037{bottom:155.012355px;}
.y60_c00037{bottom:155.259079px;}
.y5f_c00037{bottom:155.819882px;}
.y5e_c00037{bottom:156.271255px;}
.y5d_c00037{bottom:157.352929px;}
.y5c_c00037{bottom:158.077758px;}
.y5b_c00037{bottom:159.832500px;}
.y51_c00037{bottom:201.619970px;}
.y50_c00037{bottom:201.620409px;}
.y52_c00037{bottom:201.620460px;}
.y4e_c00037{bottom:201.620649px;}
.y55_c00037{bottom:201.620901px;}
.y4f_c00037{bottom:201.620919px;}
.y53_c00037{bottom:201.621041px;}
.y58_c00037{bottom:201.621062px;}
.y57_c00037{bottom:201.621111px;}
.y56_c00037{bottom:201.621171px;}
.y54_c00037{bottom:201.621621px;}
.y59_c00037{bottom:201.621672px;}
.y5a_c00037{bottom:201.621863px;}
.y4d_c00037{bottom:218.174492px;}
.y4c_c00037{bottom:218.357706px;}
.y4b_c00037{bottom:218.470980px;}
.y4a_c00037{bottom:218.633520px;}
.y49_c00037{bottom:218.905796px;}
.y48_c00037{bottom:219.064661px;}
.y47_c00037{bottom:219.225227px;}
.y46_c00037{bottom:219.400755px;}
.y45_c00037{bottom:219.933977px;}
.y44_c00037{bottom:220.117286px;}
.y43_c00037{bottom:220.661574px;}
.y42_c00037{bottom:220.880898px;}
.y41_c00037{bottom:221.128467px;}
.y38_c00037{bottom:237.232994px;}
.y39_c00037{bottom:237.233424px;}
.y37_c00037{bottom:237.233654px;}
.y36_c00037{bottom:237.233714px;}
.y3e_c00037{bottom:237.233745px;}
.y3a_c00037{bottom:237.233754px;}
.y40_c00037{bottom:237.233816px;}
.y33_c00037{bottom:237.233903px;}
.y3d_c00037{bottom:237.233975px;}
.y3b_c00037{bottom:237.234065px;}
.y35_c00037{bottom:237.234224px;}
.y3f_c00037{bottom:237.234315px;}
.y3c_c00037{bottom:237.234545px;}
.y34_c00037{bottom:237.234603px;}
.y32_c00037{bottom:253.094427px;}
.y31_c00037{bottom:253.345871px;}
.y30_c00037{bottom:253.742792px;}
.y2f_c00037{bottom:254.134263px;}
.y2e_c00037{bottom:254.355047px;}
.y2d_c00037{bottom:254.577920px;}
.y2c_c00037{bottom:254.676515px;}
.y2b_c00037{bottom:254.878619px;}
.y2a_c00037{bottom:255.207426px;}
.y29_c00037{bottom:255.651629px;}
.y28_c00037{bottom:255.933249px;}
.y27_c00037{bottom:256.073120px;}
.y26_c00037{bottom:256.230000px;}
.y24_c00037{bottom:275.671500px;}
.y25_c00037{bottom:275.805000px;}
.y23_c00037{bottom:290.641500px;}
.y22_c00037{bottom:313.498500px;}
.y21_c00037{bottom:335.931000px;}
.y20_c00037{bottom:358.707000px;}
.y1f_c00037{bottom:380.077500px;}
.y1e_c00037{bottom:380.491500px;}
.y1d_c00037{bottom:380.881500px;}
.y1c_c00037{bottom:381.262500px;}
.y1b_c00037{bottom:381.607500px;}
.y1a_c00037{bottom:382.192500px;}
.y19_c00037{bottom:382.653000px;}
.y18_c00037{bottom:382.857000px;}
.y17_c00037{bottom:382.993500px;}
.y16_c00037{bottom:383.410500px;}
.y15_c00037{bottom:404.620500px;}
.y14_c00037{bottom:427.600500px;}
.y13_c00037{bottom:450.090000px;}
.y12_c00037{bottom:472.660500px;}
.y11_c00037{bottom:496.176000px;}
.y10_c00037{bottom:518.866500px;}
.yf_c00037{bottom:541.318500px;}
.ye_c00037{bottom:564.748500px;}
.yd_c00037{bottom:587.592000px;}
.yc_c00037{bottom:615.600000px;}
.yb_c00037{bottom:632.070000px;}
.ya_c00037{bottom:654.424500px;}
.y9_c00037{bottom:676.113000px;}
.y8_c00037{bottom:698.704500px;}
.y7_c00037{bottom:721.291500px;}
.y6_c00037{bottom:745.135500px;}
.y5_c00037{bottom:767.022000px;}
.y4_c00037{bottom:790.480500px;}
.y3_c00037{bottom:813.871500px;}
.y2_c00037{bottom:836.272500px;}
.y1_c00037{bottom:858.753000px;}
.hf_c00037{height:22.050000px;}
.hb_c00037{height:25.200000px;}
.h14_c00037{height:38.852350px;}
.h12_c00037{height:50.401235px;}
.h10_c00037{height:51.451261px;}
.h11_c00037{height:53.551312px;}
.ha_c00037{height:61.950000px;}
.h5_c00037{height:63.000000px;}
.h9_c00037{height:67.200000px;}
.hd_c00037{height:68.250000px;}
.h4_c00037{height:69.300000px;}
.h13_c00037{height:69.304193px;}
.h8_c00037{height:70.350000px;}
.h7_c00037{height:71.400000px;}
.h6_c00037{height:72.450000px;}
.hc_c00037{height:73.500000px;}
.h3_c00037{height:75.600000px;}
.he_c00037{height:77.700000px;}
.h2_c00037{height:78.750000px;}
.h0_c00037{height:1086.450000px;}
.h1_c00037{height:1086.750000px;}
.w0_c00037{width:751.950000px;}
.w1_c00037{width:752.250000px;}
.x0_c00037{left:0.000000px;}
.x85_c00037{left:193.321535px;}
.x7b_c00037{left:195.210000px;}
.x42_c00037{left:203.040000px;}
.x4a_c00037{left:214.380000px;}
.x43_c00037{left:221.670000px;}
.x1_c00037{left:226.800000px;}
.x23_c00037{left:228.420000px;}
.x66_c00037{left:230.310000px;}
.x7c_c00037{left:236.790000px;}
.x7d_c00037{left:245.905500px;}
.x4b_c00037{left:249.480000px;}
.x94_c00037{left:251.645610px;}
.x9_c00037{left:254.610000px;}
.x44_c00037{left:255.690000px;}
.x16_c00037{left:257.310000px;}
.x32_c00037{left:259.200000px;}
.x3c_c00037{left:261.090000px;}
.x2_c00037{left:266.760000px;}
.x24_c00037{left:268.110000px;}
.x2e_c00037{left:269.190000px;}
.x40_c00037{left:271.620000px;}
.x53_c00037{left:273.780000px;}
.x77_c00037{left:279.721500px;}
.x37_c00037{left:281.340000px;}
.x86_c00037{left:282.422903px;}
.x4c_c00037{left:285.120000px;}
.x7e_c00037{left:286.137000px;}
.x67_c00037{left:288.360000px;}
.x6c_c00037{left:289.779000px;}
.x5e_c00037{left:293.220000px;}
.x11_c00037{left:295.110000px;}
.x2f_c00037{left:298.080000px;}
.x17_c00037{left:299.700000px;}
.x3d_c00037{left:301.050000px;}
.x41_c00037{left:305.100000px;}
.xa_c00037{left:306.720000px;}
.x25_c00037{left:309.960000px;}
.x45_c00037{left:312.660000px;}
.x3_c00037{left:314.280000px;}
.x5b_c00037{left:315.900000px;}
.x71_c00037{left:318.061500px;}
.x12_c00037{left:319.140000px;}
.x38_c00037{left:321.570000px;}
.x95_c00037{left:325.356222px;}
.x1d_c00037{left:326.700000px;}
.x78_c00037{left:329.401500px;}
.x5f_c00037{left:331.290000px;}
.x9e_c00037{left:333.183182px;}
.x3e_c00037{left:334.530000px;}
.x18_c00037{left:336.420000px;}
.x8f_c00037{left:337.439786px;}
.xb_c00037{left:340.200000px;}
.x1e_c00037{left:349.110000px;}
.x4d_c00037{left:351.270000px;}
.x87_c00037{left:352.356326px;}
.x4_c00037{left:353.430000px;}
.x26_c00037{left:355.320000px;}
.x13_c00037{left:356.670000px;}
.x79_c00037{left:359.101500px;}
.x30_c00037{left:360.990000px;}
.x19_c00037{left:362.340000px;}
.x6d_c00037{left:363.580500px;}
.x2d_c00037{left:366.390000px;}
.x65_c00037{left:368.550000px;}
.x3f_c00037{left:369.630000px;}
.x6a_c00037{left:370.980000px;}
.x72_c00037{left:372.601500px;}
.x54_c00037{left:374.220000px;}
.x5c_c00037{left:375.840000px;}
.x88_c00037{left:378.817617px;}
.x75_c00037{left:380.161500px;}
.x7a_c00037{left:381.511500px;}
.x68_c00037{left:382.860000px;}
.x60_c00037{left:383.940000px;}
.x1f_c00037{left:385.830000px;}
.x96_c00037{left:389.347862px;}
.x39_c00037{left:390.960000px;}
.x27_c00037{left:392.850000px;}
.x4e_c00037{left:394.200000px;}
.x7f_c00037{left:396.567000px;}
.x33_c00037{left:399.330000px;}
.x46_c00037{left:400.680000px;}
.x55_c00037{left:403.650000px;}
.x62_c00037{left:406.620000px;}
.xc_c00037{left:409.320000px;}
.x5_c00037{left:413.100000px;}
.x6b_c00037{left:414.990000px;}
.x20_c00037{left:416.070000px;}
.xd_c00037{left:423.360000px;}
.x80_c00037{left:425.439000px;}
.x4f_c00037{left:429.570000px;}
.x1a_c00037{left:432.540000px;}
.x34_c00037{left:433.620000px;}
.x14_c00037{left:440.100000px;}
.x56_c00037{left:441.720000px;}
.x47_c00037{left:443.880000px;}
.x9f_c00037{left:444.970695px;}
.x63_c00037{left:446.850000px;}
.x21_c00037{left:447.930000px;}
.x69_c00037{left:452.790000px;}
.xe_c00037{left:455.490000px;}
.x1b_c00037{left:460.350000px;}
.x50_c00037{left:463.590000px;}
.x57_c00037{left:464.670000px;}
.x6_c00037{left:466.290000px;}
.x48_c00037{left:467.370000px;}
.x28_c00037{left:468.720000px;}
.x31_c00037{left:471.420000px;}
.x73_c00037{left:472.501500px;}
.x3a_c00037{left:473.850000px;}
.x15_c00037{left:474.930000px;}
.x22_c00037{left:476.010000px;}
.x89_c00037{left:488.169983px;}
.x29_c00037{left:490.320000px;}
.x35_c00037{left:491.940000px;}
.x64_c00037{left:495.720000px;}
.x58_c00037{left:496.800000px;}
.xf_c00037{left:500.580000px;}
.x81_c00037{left:502.903500px;}
.x61_c00037{left:504.090000px;}
.x8a_c00037{left:506.530886px;}
.x6e_c00037{left:509.257500px;}
.x90_c00037{left:510.509786px;}
.x2a_c00037{left:512.730000px;}
.x3b_c00037{left:516.240000px;}
.x1c_c00037{left:518.400000px;}
.x7_c00037{left:520.020000px;}
.x8b_c00037{left:523.541715px;}
.x51_c00037{left:524.880000px;}
.x10_c00037{left:529.740000px;}
.x36_c00037{left:531.900000px;}
.xa0_c00037{left:533.535420px;}
.x8_c00037{left:538.650000px;}
.x5d_c00037{left:547.830000px;}
.x91_c00037{left:549.406286px;}
.x2b_c00037{left:550.800000px;}
.x6f_c00037{left:552.510000px;}
.x8c_c00037{left:554.861748px;}
.x82_c00037{left:558.828000px;}
.x59_c00037{left:561.600000px;}
.x97_c00037{left:564.853461px;}
.x52_c00037{left:569.160000px;}
.x49_c00037{left:570.510000px;}
.x92_c00037{left:572.626286px;}
.x8d_c00037{left:578.352903px;}
.x2c_c00037{left:584.820000px;}
.x5a_c00037{left:585.900000px;}
.x93_c00037{left:588.808286px;}
.x9a_c00037{left:595.800000px;}
.x70_c00037{left:598.431000px;}
.x76_c00037{left:610.741500px;}
.x83_c00037{left:615.531000px;}
.x98_c00037{left:621.554743px;}
.x74_c00037{left:626.131500px;}
.x8e_c00037{left:634.784164px;}
.x9b_c00037{left:636.834000px;}
.x84_c00037{left:651.451500px;}
.x99_c00037{left:658.815071px;}
.x9c_c00037{left:687.816000px;}
.xa1_c00037{left:697.434753px;}
.x9d_c00037{left:710.245500px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
._0_c00037{margin-left:-6.693171pt;}
.fsd_c00037{font-size:19.600000pt;}
.fs9_c00037{font-size:22.400000pt;}
.fs12_c00037{font-size:34.535423pt;}
.fs10_c00037{font-size:44.801098pt;}
.fse_c00037{font-size:45.734454pt;}
.fsf_c00037{font-size:47.601166pt;}
.fs8_c00037{font-size:55.066667pt;}
.fs3_c00037{font-size:56.000000pt;}
.fs7_c00037{font-size:59.733333pt;}
.fsb_c00037{font-size:60.666667pt;}
.fs2_c00037{font-size:61.600000pt;}
.fs11_c00037{font-size:61.603727pt;}
.fs6_c00037{font-size:62.533333pt;}
.fs5_c00037{font-size:63.466667pt;}
.fs4_c00037{font-size:64.400000pt;}
.fsa_c00037{font-size:65.333333pt;}
.fs1_c00037{font-size:67.200000pt;}
.fsc_c00037{font-size:69.066667pt;}
.fs0_c00037{font-size:70.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y66_c00037{bottom:132.154896pt;}
.y65_c00037{bottom:132.155160pt;}
.y67_c00037{bottom:132.155379pt;}
.y68_c00037{bottom:132.155607pt;}
.y69_c00037{bottom:132.155701pt;}
.y64_c00037{bottom:132.155797pt;}
.y63_c00037{bottom:132.155807pt;}
.y6a_c00037{bottom:132.155991pt;}
.y62_c00037{bottom:132.156035pt;}
.y61_c00037{bottom:137.788760pt;}
.y60_c00037{bottom:138.008071pt;}
.y5f_c00037{bottom:138.506561pt;}
.y5e_c00037{bottom:138.907783pt;}
.y5d_c00037{bottom:139.869271pt;}
.y5c_c00037{bottom:140.513563pt;}
.y5b_c00037{bottom:142.073333pt;}
.y51_c00037{bottom:179.217751pt;}
.y50_c00037{bottom:179.218141pt;}
.y52_c00037{bottom:179.218187pt;}
.y4e_c00037{bottom:179.218355pt;}
.y55_c00037{bottom:179.218579pt;}
.y4f_c00037{bottom:179.218595pt;}
.y53_c00037{bottom:179.218703pt;}
.y58_c00037{bottom:179.218721pt;}
.y57_c00037{bottom:179.218765pt;}
.y56_c00037{bottom:179.218819pt;}
.y54_c00037{bottom:179.219219pt;}
.y59_c00037{bottom:179.219264pt;}
.y5a_c00037{bottom:179.219433pt;}
.y4d_c00037{bottom:193.932881pt;}
.y4c_c00037{bottom:194.095739pt;}
.y4b_c00037{bottom:194.196427pt;}
.y4a_c00037{bottom:194.340907pt;}
.y49_c00037{bottom:194.582929pt;}
.y48_c00037{bottom:194.724143pt;}
.y47_c00037{bottom:194.866868pt;}
.y46_c00037{bottom:195.022893pt;}
.y45_c00037{bottom:195.496868pt;}
.y44_c00037{bottom:195.659809pt;}
.y43_c00037{bottom:196.143621pt;}
.y42_c00037{bottom:196.338576pt;}
.y41_c00037{bottom:196.558637pt;}
.y38_c00037{bottom:210.873772pt;}
.y39_c00037{bottom:210.874155pt;}
.y37_c00037{bottom:210.874359pt;}
.y36_c00037{bottom:210.874412pt;}
.y3e_c00037{bottom:210.874440pt;}
.y3a_c00037{bottom:210.874448pt;}
.y40_c00037{bottom:210.874503pt;}
.y33_c00037{bottom:210.874580pt;}
.y3d_c00037{bottom:210.874644pt;}
.y3b_c00037{bottom:210.874724pt;}
.y35_c00037{bottom:210.874865pt;}
.y3f_c00037{bottom:210.874947pt;}
.y3c_c00037{bottom:210.875151pt;}
.y34_c00037{bottom:210.875203pt;}
.y32_c00037{bottom:224.972824pt;}
.y31_c00037{bottom:225.196329pt;}
.y30_c00037{bottom:225.549148pt;}
.y2f_c00037{bottom:225.897123pt;}
.y2e_c00037{bottom:226.093375pt;}
.y2d_c00037{bottom:226.291484pt;}
.y2c_c00037{bottom:226.379124pt;}
.y2b_c00037{bottom:226.558772pt;}
.y2a_c00037{bottom:226.851045pt;}
.y29_c00037{bottom:227.245892pt;}
.y28_c00037{bottom:227.496221pt;}
.y27_c00037{bottom:227.620551pt;}
.y26_c00037{bottom:227.760000pt;}
.y24_c00037{bottom:245.041333pt;}
.y25_c00037{bottom:245.160000pt;}
.y23_c00037{bottom:258.348000pt;}
.y22_c00037{bottom:278.665333pt;}
.y21_c00037{bottom:298.605333pt;}
.y20_c00037{bottom:318.850667pt;}
.y1f_c00037{bottom:337.846667pt;}
.y1e_c00037{bottom:338.214667pt;}
.y1d_c00037{bottom:338.561333pt;}
.y1c_c00037{bottom:338.900000pt;}
.y1b_c00037{bottom:339.206667pt;}
.y1a_c00037{bottom:339.726667pt;}
.y19_c00037{bottom:340.136000pt;}
.y18_c00037{bottom:340.317333pt;}
.y17_c00037{bottom:340.438667pt;}
.y16_c00037{bottom:340.809333pt;}
.y15_c00037{bottom:359.662667pt;}
.y14_c00037{bottom:380.089333pt;}
.y13_c00037{bottom:400.080000pt;}
.y12_c00037{bottom:420.142667pt;}
.y11_c00037{bottom:441.045333pt;}
.y10_c00037{bottom:461.214667pt;}
.yf_c00037{bottom:481.172000pt;}
.ye_c00037{bottom:501.998667pt;}
.yd_c00037{bottom:522.304000pt;}
.yc_c00037{bottom:547.200000pt;}
.yb_c00037{bottom:561.840000pt;}
.ya_c00037{bottom:581.710667pt;}
.y9_c00037{bottom:600.989333pt;}
.y8_c00037{bottom:621.070667pt;}
.y7_c00037{bottom:641.148000pt;}
.y6_c00037{bottom:662.342667pt;}
.y5_c00037{bottom:681.797333pt;}
.y4_c00037{bottom:702.649333pt;}
.y3_c00037{bottom:723.441333pt;}
.y2_c00037{bottom:743.353333pt;}
.y1_c00037{bottom:763.336000pt;}
.hf_c00037{height:19.600000pt;}
.hb_c00037{height:22.400000pt;}
.h14_c00037{height:34.535423pt;}
.h12_c00037{height:44.801098pt;}
.h10_c00037{height:45.734454pt;}
.h11_c00037{height:47.601166pt;}
.ha_c00037{height:55.066667pt;}
.h5_c00037{height:56.000000pt;}
.h9_c00037{height:59.733333pt;}
.hd_c00037{height:60.666667pt;}
.h4_c00037{height:61.600000pt;}
.h13_c00037{height:61.603727pt;}
.h8_c00037{height:62.533333pt;}
.h7_c00037{height:63.466667pt;}
.h6_c00037{height:64.400000pt;}
.hc_c00037{height:65.333333pt;}
.h3_c00037{height:67.200000pt;}
.he_c00037{height:69.066667pt;}
.h2_c00037{height:70.000000pt;}
.h0_c00037{height:965.733333pt;}
.h1_c00037{height:966.000000pt;}
.w0_c00037{width:668.400000pt;}
.w1_c00037{width:668.666667pt;}
.x0_c00037{left:0.000000pt;}
.x85_c00037{left:171.841364pt;}
.x7b_c00037{left:173.520000pt;}
.x42_c00037{left:180.480000pt;}
.x4a_c00037{left:190.560000pt;}
.x43_c00037{left:197.040000pt;}
.x1_c00037{left:201.600000pt;}
.x23_c00037{left:203.040000pt;}
.x66_c00037{left:204.720000pt;}
.x7c_c00037{left:210.480000pt;}
.x7d_c00037{left:218.582667pt;}
.x4b_c00037{left:221.760000pt;}
.x94_c00037{left:223.684987pt;}
.x9_c00037{left:226.320000pt;}
.x44_c00037{left:227.280000pt;}
.x16_c00037{left:228.720000pt;}
.x32_c00037{left:230.400000pt;}
.x3c_c00037{left:232.080000pt;}
.x2_c00037{left:237.120000pt;}
.x24_c00037{left:238.320000pt;}
.x2e_c00037{left:239.280000pt;}
.x40_c00037{left:241.440000pt;}
.x53_c00037{left:243.360000pt;}
.x77_c00037{left:248.641333pt;}
.x37_c00037{left:250.080000pt;}
.x86_c00037{left:251.042580pt;}
.x4c_c00037{left:253.440000pt;}
.x7e_c00037{left:254.344000pt;}
.x67_c00037{left:256.320000pt;}
.x6c_c00037{left:257.581333pt;}
.x5e_c00037{left:260.640000pt;}
.x11_c00037{left:262.320000pt;}
.x2f_c00037{left:264.960000pt;}
.x17_c00037{left:266.400000pt;}
.x3d_c00037{left:267.600000pt;}
.x41_c00037{left:271.200000pt;}
.xa_c00037{left:272.640000pt;}
.x25_c00037{left:275.520000pt;}
.x45_c00037{left:277.920000pt;}
.x3_c00037{left:279.360000pt;}
.x5b_c00037{left:280.800000pt;}
.x71_c00037{left:282.721333pt;}
.x12_c00037{left:283.680000pt;}
.x38_c00037{left:285.840000pt;}
.x95_c00037{left:289.205531pt;}
.x1d_c00037{left:290.400000pt;}
.x78_c00037{left:292.801333pt;}
.x5f_c00037{left:294.480000pt;}
.x9e_c00037{left:296.162828pt;}
.x3e_c00037{left:297.360000pt;}
.x18_c00037{left:299.040000pt;}
.x8f_c00037{left:299.946476pt;}
.xb_c00037{left:302.400000pt;}
.x1e_c00037{left:310.320000pt;}
.x4d_c00037{left:312.240000pt;}
.x87_c00037{left:313.205623pt;}
.x4_c00037{left:314.160000pt;}
.x26_c00037{left:315.840000pt;}
.x13_c00037{left:317.040000pt;}
.x79_c00037{left:319.201333pt;}
.x30_c00037{left:320.880000pt;}
.x19_c00037{left:322.080000pt;}
.x6d_c00037{left:323.182667pt;}
.x2d_c00037{left:325.680000pt;}
.x65_c00037{left:327.600000pt;}
.x3f_c00037{left:328.560000pt;}
.x6a_c00037{left:329.760000pt;}
.x72_c00037{left:331.201333pt;}
.x54_c00037{left:332.640000pt;}
.x5c_c00037{left:334.080000pt;}
.x88_c00037{left:336.726771pt;}
.x75_c00037{left:337.921333pt;}
.x7a_c00037{left:339.121333pt;}
.x68_c00037{left:340.320000pt;}
.x60_c00037{left:341.280000pt;}
.x1f_c00037{left:342.960000pt;}
.x96_c00037{left:346.086988pt;}
.x39_c00037{left:347.520000pt;}
.x27_c00037{left:349.200000pt;}
.x4e_c00037{left:350.400000pt;}
.x7f_c00037{left:352.504000pt;}
.x33_c00037{left:354.960000pt;}
.x46_c00037{left:356.160000pt;}
.x55_c00037{left:358.800000pt;}
.x62_c00037{left:361.440000pt;}
.xc_c00037{left:363.840000pt;}
.x5_c00037{left:367.200000pt;}
.x6b_c00037{left:368.880000pt;}
.x20_c00037{left:369.840000pt;}
.xd_c00037{left:376.320000pt;}
.x80_c00037{left:378.168000pt;}
.x4f_c00037{left:381.840000pt;}
.x1a_c00037{left:384.480000pt;}
.x34_c00037{left:385.440000pt;}
.x14_c00037{left:391.200000pt;}
.x56_c00037{left:392.640000pt;}
.x47_c00037{left:394.560000pt;}
.x9f_c00037{left:395.529507pt;}
.x63_c00037{left:397.200000pt;}
.x21_c00037{left:398.160000pt;}
.x69_c00037{left:402.480000pt;}
.xe_c00037{left:404.880000pt;}
.x1b_c00037{left:409.200000pt;}
.x50_c00037{left:412.080000pt;}
.x57_c00037{left:413.040000pt;}
.x6_c00037{left:414.480000pt;}
.x48_c00037{left:415.440000pt;}
.x28_c00037{left:416.640000pt;}
.x31_c00037{left:419.040000pt;}
.x73_c00037{left:420.001333pt;}
.x3a_c00037{left:421.200000pt;}
.x15_c00037{left:422.160000pt;}
.x22_c00037{left:423.120000pt;}
.x89_c00037{left:433.928873pt;}
.x29_c00037{left:435.840000pt;}
.x35_c00037{left:437.280000pt;}
.x64_c00037{left:440.640000pt;}
.x58_c00037{left:441.600000pt;}
.xf_c00037{left:444.960000pt;}
.x81_c00037{left:447.025333pt;}
.x61_c00037{left:448.080000pt;}
.x8a_c00037{left:450.249676pt;}
.x6e_c00037{left:452.673333pt;}
.x90_c00037{left:453.786476pt;}
.x2a_c00037{left:455.760000pt;}
.x3b_c00037{left:458.880000pt;}
.x1c_c00037{left:460.800000pt;}
.x7_c00037{left:462.240000pt;}
.x8b_c00037{left:465.370413pt;}
.x51_c00037{left:466.560000pt;}
.x10_c00037{left:470.880000pt;}
.x36_c00037{left:472.800000pt;}
.xa0_c00037{left:474.253707pt;}
.x8_c00037{left:478.800000pt;}
.x5d_c00037{left:486.960000pt;}
.x91_c00037{left:488.361143pt;}
.x2b_c00037{left:489.600000pt;}
.x6f_c00037{left:491.120000pt;}
.x8c_c00037{left:493.210443pt;}
.x82_c00037{left:496.736000pt;}
.x59_c00037{left:499.200000pt;}
.x97_c00037{left:502.091965pt;}
.x52_c00037{left:505.920000pt;}
.x49_c00037{left:507.120000pt;}
.x92_c00037{left:509.001143pt;}
.x8d_c00037{left:514.091469pt;}
.x2c_c00037{left:519.840000pt;}
.x5a_c00037{left:520.800000pt;}
.x93_c00037{left:523.385143pt;}
.x9a_c00037{left:529.600000pt;}
.x70_c00037{left:531.938667pt;}
.x76_c00037{left:542.881333pt;}
.x83_c00037{left:547.138667pt;}
.x98_c00037{left:552.493105pt;}
.x74_c00037{left:556.561333pt;}
.x8e_c00037{left:564.252591pt;}
.x9b_c00037{left:566.074667pt;}
.x84_c00037{left:579.068000pt;}
.x99_c00037{left:585.613396pt;}
.x9c_c00037{left:611.392000pt;}
.xa1_c00037{left:619.942003pt;}
.x9d_c00037{left:631.329333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m1_c00038{transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);}
.m109_c00038{transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);}
.me7_c00038{transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);}
.me1_c00038{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.m99_c00038{transform:matrix(0.030305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030305,0.000000,0.000000,0.250000,0,0);}
.mc6_c00038{transform:matrix(0.045095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045095,0.000000,0.000000,0.250000,0,0);}
.mf1_c00038{transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);}
.m107_c00038{transform:matrix(0.082125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082125,0.000000,0.000000,0.250000,0,0);}
.m7c_c00038{transform:matrix(0.092315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092315,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);}
.m111_c00038{transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);}
.m97_c00038{transform:matrix(0.113895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113895,0.000000,0.000000,0.250000,0,0);}
.ma6_c00038{transform:matrix(0.115315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115315,0.000000,0.000000,0.250000,0,0);}
.m12_c00038{transform:matrix(0.135010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135010,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.135920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135920,0.000000,0.000000,0.250000,0,0);}
.m102_c00038{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);}
.md_c00038{transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);}
.m90_c00038{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);}
.m2f_c00038{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);}
.m68_c00038{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);}
.mc_c00038{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);}
.mac_c00038{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);}
.md4_c00038{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);}
.m62_c00038{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);}
.m5b_c00038{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);}
.m81_c00038{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);}
.m84_c00038{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);}
.m18_c00038{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);}
.m4c_c00038{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);}
.ma1_c00038{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);}
.m93_c00038{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);}
.m8c_c00038{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);}
.mfc_c00038{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);}
.m38_c00038{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);}
.m110_c00038{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);}
.m2e_c00038{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);}
.m6c_c00038{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);}
.m41_c00038{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m83_c00038{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);}
.m4d_c00038{transform:matrix(0.167095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167095,0.000000,0.000000,0.250000,0,0);}
.m73_c00038{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);}
.m43_c00038{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);}
.m3f_c00038{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);}
.ma3_c00038{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);}
.mf4_c00038{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_c00038{transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);}
.m88_c00038{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);}
.m69_c00038{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);}
.maf_c00038{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);}
.m6a_c00038{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);}
.m57_c00038{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);}
.m36_c00038{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);}
.m96_c00038{transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{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);}
.m1f_c00038{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);}
.m98_c00038{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);}
.m63_c00038{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);}
.md9_c00038{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);}
.m94_c00038{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);}
.mf8_c00038{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);}
.m8a_c00038{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);}
.mfe_c00038{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);}
.m67_c00038{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);}
.m9e_c00038{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);}
.m10e_c00038{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);}
.m53_c00038{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);}
.m37_c00038{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);}
.m3b_c00038{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);}
.mb3_c00038{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);}
.m47_c00038{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);}
.m91_c00038{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);}
.m35_c00038{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);}
.m1c_c00038{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);}
.mf7_c00038{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);}
.m52_c00038{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);}
.m26_c00038{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);}
.m45_c00038{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);}
.ma8_c00038{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);}
.m6f_c00038{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);}
.m95_c00038{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);}
.mc2_c00038{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);}
.m54_c00038{transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);}
.me_c00038{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);}
.ma9_c00038{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);}
.mc7_c00038{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);}
.m92_c00038{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);}
.m51_c00038{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);}
.m34_c00038{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);}
.m80_c00038{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);}
.m4a_c00038{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);}
.m5c_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);}
.mba_c00038{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);}
.m8f_c00038{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);}
.m6d_c00038{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);}
.m9_c00038{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);}
.md0_c00038{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);}
.m86_c00038{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);}
.m5f_c00038{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);}
.me8_c00038{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.mb2_c00038{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);}
.md6_c00038{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);}
.m75_c00038{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);}
.m71_c00038{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);}
.m8b_c00038{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);}
.m21_c00038{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);}
.m20_c00038{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);}
.m70_c00038{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);}
.m7e_c00038{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);}
.mea_c00038{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);}
.m5_c00038{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);}
.mc8_c00038{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);}
.m78_c00038{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);}
.m100_c00038{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);}
.mf9_c00038{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);}
.m4e_c00038{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);}
.md3_c00038{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);}
.m5e_c00038{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);}
.mc5_c00038{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);}
.m49_c00038{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);}
.m87_c00038{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);}
.mbe_c00038{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);}
.me5_c00038{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);}
.me6_c00038{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);}
.m103_c00038{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);}
.m3d_c00038{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);}
.mca_c00038{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);}
.m17_c00038{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);}
.m15_c00038{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);}
.m5d_c00038{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);}
.mb1_c00038{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);}
.mb5_c00038{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m61_c00038{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);}
.m14_c00038{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);}
.m56_c00038{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.mcd_c00038{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);}
.mb9_c00038{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);}
.mb6_c00038{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);}
.m40_c00038{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);}
.m4b_c00038{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);}
.m3e_c00038{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);}
.m2b_c00038{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);}
.mdd_c00038{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);}
.maa_c00038{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);}
.ma0_c00038{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);}
.mcb_c00038{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);}
.m64_c00038{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);}
.mc4_c00038{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);}
.m8d_c00038{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);}
.m65_c00038{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);}
.m1b_c00038{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);}
.mdb_c00038{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);}
.m3a_c00038{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);}
.mcc_c00038{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);}
.m9f_c00038{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);}
.mb4_c00038{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);}
.m6b_c00038{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);}
.m39_c00038{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);}
.ma2_c00038{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);}
.m42_c00038{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);}
.m7d_c00038{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);}
.mfa_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);}
.m6_c00038{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);}
.m5a_c00038{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);}
.m1a_c00038{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);}
.mb8_c00038{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);}
.m6e_c00038{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);}
.m7f_c00038{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);}
.mbd_c00038{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);}
.mbc_c00038{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);}
.md5_c00038{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);}
.m32_c00038{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);}
.m79_c00038{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);}
.m85_c00038{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);}
.md7_c00038{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);}
.mdc_c00038{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);}
.mb0_c00038{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);}
.ma4_c00038{transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);}
.m4f_c00038{transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);}
.m9d_c00038{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);}
.m113_c00038{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);}
.meb_c00038{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m2d_c00038{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);}
.m24_c00038{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);}
.me3_c00038{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);}
.mad_c00038{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);}
.m3_c00038{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);}
.md1_c00038{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);}
.mbb_c00038{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);}
.m19_c00038{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);}
.mde_c00038{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);}
.md2_c00038{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);}
.m23_c00038{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);}
.me2_c00038{transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);}
.m8e_c00038{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);}
.m55_c00038{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);}
.m7_c00038{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);}
.mc3_c00038{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);}
.ma7_c00038{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);}
.m74_c00038{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);}
.m82_c00038{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);}
.m66_c00038{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);}
.mda_c00038{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);}
.mc1_c00038{transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{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);}
.m0_c00038{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);}
.me9_c00038{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);}
.me4_c00038{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);}
.m3c_c00038{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);}
.mf2_c00038{transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);}
.m60_c00038{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);}
.m76_c00038{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);}
.m58_c00038{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);}
.m59_c00038{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);}
.m48_c00038{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.mf6_c00038{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);}
.mf3_c00038{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);}
.mb_c00038{transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);}
.m1e_c00038{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);}
.m16_c00038{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);}
.mab_c00038{transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);}
.mf5_c00038{transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258015,0.000000,0.000000,0.250000,0,0);}
.m89_c00038{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);}
.m72_c00038{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);}
.mce_c00038{transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);}
.mcf_c00038{transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);}
.m31_c00038{transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);}
.med_c00038{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.mdf_c00038{transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.mee_c00038{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.mef_c00038{transform:matrix(0.290550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290550,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);}
.m104_c00038{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);}
.mff_c00038{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);}
.m2_c00038{transform:matrix(0.303865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303865,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309405,0.000000,0.000000,0.250000,0,0);}
.m77_c00038{transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);}
.me0_c00038{transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);}
.m9a_c00038{transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323405,0.000000,0.000000,0.250000,0,0);}
.mc0_c00038{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);}
.m10a_c00038{transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);}
.mf0_c00038{transform:matrix(0.353575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353575,0.000000,0.000000,0.250000,0,0);}
.mec_c00038{transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357765,0.000000,0.000000,0.250000,0,0);}
.md8_c00038{transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);}
.m10d_c00038{transform:matrix(0.362330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362330,0.000000,0.000000,0.250000,0,0);}
.m108_c00038{transform:matrix(0.362960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362960,0.000000,0.000000,0.250000,0,0);}
.m112_c00038{transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365850,0.000000,0.000000,0.250000,0,0);}
.m9b_c00038{transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.372640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372640,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.372670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372670,0.000000,0.000000,0.250000,0,0);}
.mae_c00038{transform:matrix(0.372930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372930,0.000000,0.000000,0.250000,0,0);}
.m10c_c00038{transform:matrix(0.420080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420080,0.000000,0.000000,0.250000,0,0);}
.m101_c00038{transform:matrix(0.421025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00038{transform:matrix(0.446230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446230,0.000000,0.000000,0.250000,0,0);}
.mbf_c00038{transform:matrix(0.450170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450170,0.000000,0.000000,0.250000,0,0);}
.m7b_c00038{transform:matrix(0.450470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450470,0.000000,0.000000,0.250000,0,0);}
.m106_c00038{transform:matrix(0.471205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471205,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.482995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482995,0.000000,0.000000,0.250000,0,0);}
.m10b_c00038{transform:matrix(0.489215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489215,0.000000,0.000000,0.250000,0,0);}
.mfd_c00038{transform:matrix(0.499815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499815,0.000000,0.000000,0.250000,0,0);}
.m114_c00038{transform:matrix(0.518505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518505,0.000000,0.000000,0.250000,0,0);}
.m33_c00038{transform:matrix(0.526305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526305,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.533910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533910,0.000000,0.000000,0.250000,0,0);}
.ma5_c00038{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);}
.ma_c00038{transform:matrix(0.547865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547865,0.000000,0.000000,0.250000,0,0);}
.mfb_c00038{transform:matrix(0.553350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00038{transform:matrix(0.577765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.641295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00038{transform:matrix(0.788575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788575,0.000000,0.000000,0.250000,0,0);}
.m30_c00038{transform:matrix(0.816905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816905,0.000000,0.000000,0.250000,0,0);}
.m10f_c00038{transform:matrix(0.853955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853955,0.000000,0.000000,0.250000,0,0);}
.m105_c00038{transform:matrix(1.144150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.144150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.144150,0.000000,0.000000,0.250000,0,0);}
.m29_c00038{transform:matrix(1.732940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.732940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.732940,0.000000,0.000000,0.250000,0,0);}
.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;}
.fc0_c00038{color:transparent;}
.fs0_c00038{font-size:22.050000px;}
.fsc_c00038{font-size:25.200000px;}
.fs13_c00038{font-size:30.450000px;}
.fse_c00038{font-size:49.350000px;}
.fs10_c00038{font-size:51.450000px;}
.fsf_c00038{font-size:53.550000px;}
.fs14_c00038{font-size:54.600000px;}
.fs11_c00038{font-size:58.800000px;}
.fsb_c00038{font-size:63.000000px;}
.fsa_c00038{font-size:68.250000px;}
.fsd_c00038{font-size:69.300000px;}
.fs7_c00038{font-size:70.350000px;}
.fs5_c00038{font-size:71.400000px;}
.fs6_c00038{font-size:72.450000px;}
.fs9_c00038{font-size:73.500000px;}
.fs3_c00038{font-size:74.550000px;}
.fs8_c00038{font-size:75.600000px;}
.fs4_c00038{font-size:76.650000px;}
.fs2_c00038{font-size:77.700000px;}
.fs1_c00038{font-size:79.800000px;}
.fs12_c00038{font-size:82.950000px;}
.y0_c00038{bottom:0.000000px;}
.y3a_c00038{bottom:146.773500px;}
.y39_c00038{bottom:159.801000px;}
.y38_c00038{bottom:159.957000px;}
.y37_c00038{bottom:160.545000px;}
.y36_c00038{bottom:160.809000px;}
.y35_c00038{bottom:161.022000px;}
.y34_c00038{bottom:161.215500px;}
.y33_c00038{bottom:161.313000px;}
.y32_c00038{bottom:161.596500px;}
.y31_c00038{bottom:161.803500px;}
.y30_c00038{bottom:162.475500px;}
.y2f_c00038{bottom:162.853500px;}
.y2e_c00038{bottom:163.080000px;}
.y2d_c00038{bottom:173.314500px;}
.y2c_c00038{bottom:214.077000px;}
.y2b_c00038{bottom:231.636000px;}
.y2a_c00038{bottom:246.700500px;}
.y29_c00038{bottom:247.023000px;}
.y28_c00038{bottom:247.263000px;}
.y27_c00038{bottom:247.515000px;}
.y26_c00038{bottom:247.630500px;}
.y25_c00038{bottom:247.953000px;}
.y24_c00038{bottom:248.200500px;}
.y23_c00038{bottom:248.275500px;}
.y22_c00038{bottom:248.368500px;}
.y21_c00038{bottom:248.637000px;}
.y20_c00038{bottom:248.725500px;}
.y1f_c00038{bottom:248.988000px;}
.y1e_c00038{bottom:249.088500px;}
.y1d_c00038{bottom:249.298500px;}
.y1c_c00038{bottom:249.442500px;}
.y1b_c00038{bottom:249.583500px;}
.y1a_c00038{bottom:249.751500px;}
.y19_c00038{bottom:266.782500px;}
.y18_c00038{bottom:283.797000px;}
.y17_c00038{bottom:319.705500px;}
.y16_c00038{bottom:342.321000px;}
.y15_c00038{bottom:352.711500px;}
.y14_c00038{bottom:364.329000px;}
.y13_c00038{bottom:386.700000px;}
.y12_c00038{bottom:409.006500px;}
.y11_c00038{bottom:432.970500px;}
.y10_c00038{bottom:454.836000px;}
.yf_c00038{bottom:477.420000px;}
.ye_c00038{bottom:500.466000px;}
.yd_c00038{bottom:522.450000px;}
.yc_c00038{bottom:545.632500px;}
.yb_c00038{bottom:567.864000px;}
.ya_c00038{bottom:590.923500px;}
.y9_c00038{bottom:612.360000px;}
.y8_c00038{bottom:707.412000px;}
.y7_c00038{bottom:736.237500px;}
.y6_c00038{bottom:759.049500px;}
.y5_c00038{bottom:781.897500px;}
.y4_c00038{bottom:804.550500px;}
.y3_c00038{bottom:828.619500px;}
.y2_c00038{bottom:851.085000px;}
.y1_c00038{bottom:1046.790000px;}
.h2_c00038{height:22.050000px;}
.he_c00038{height:25.200000px;}
.h15_c00038{height:30.450000px;}
.h10_c00038{height:49.350000px;}
.h12_c00038{height:51.450000px;}
.h11_c00038{height:53.550000px;}
.h16_c00038{height:54.600000px;}
.h13_c00038{height:58.800000px;}
.hd_c00038{height:63.000000px;}
.hc_c00038{height:68.250000px;}
.hf_c00038{height:69.300000px;}
.h9_c00038{height:70.350000px;}
.h7_c00038{height:71.400000px;}
.h8_c00038{height:72.450000px;}
.hb_c00038{height:73.500000px;}
.h5_c00038{height:74.550000px;}
.ha_c00038{height:75.600000px;}
.h6_c00038{height:76.650000px;}
.h4_c00038{height:77.700000px;}
.h3_c00038{height:79.800000px;}
.h14_c00038{height:82.950000px;}
.h1_c00038{height:1080.000000px;}
.h0_c00038{height:1080.270000px;}
.w1_c00038{width:768.000000px;}
.w0_c00038{width:768.150000px;}
.x0_c00038{left:0.000000px;}
.x94_c00038{left:72.630000px;}
.x1_c00038{left:83.700000px;}
.x8c_c00038{left:85.320000px;}
.x95_c00038{left:103.680000px;}
.x73_c00038{left:108.540000px;}
.x7e_c00038{left:115.290000px;}
.x8d_c00038{left:132.300000px;}
.x2_c00038{left:134.190000px;}
.x86_c00038{left:137.358000px;}
.x1e_c00038{left:141.210000px;}
.xc_c00038{left:143.100000px;}
.x3_c00038{left:144.450000px;}
.x74_c00038{left:150.660000px;}
.x96_c00038{left:153.090000px;}
.x87_c00038{left:160.837500px;}
.x64_c00038{left:162.000000px;}
.x56_c00038{left:164.970000px;}
.x4_c00038{left:166.860000px;}
.x18_c00038{left:167.940000px;}
.x45_c00038{left:169.830000px;}
.x3d_c00038{left:171.720000px;}
.x6c_c00038{left:176.580000px;}
.x28_c00038{left:179.010000px;}
.xd_c00038{left:182.250000px;}
.x5d_c00038{left:183.600000px;}
.x35_c00038{left:185.760000px;}
.x19_c00038{left:187.110000px;}
.x2e_c00038{left:201.150000px;}
.x4d_c00038{left:203.850000px;}
.x65_c00038{left:206.010000px;}
.xe_c00038{left:207.900000px;}
.x5_c00038{left:210.600000px;}
.x6d_c00038{left:212.760000px;}
.x3e_c00038{left:214.650000px;}
.x46_c00038{left:219.510000px;}
.x75_c00038{left:224.100000px;}
.x2f_c00038{left:228.150000px;}
.x6_c00038{left:229.770000px;}
.x36_c00038{left:230.850000px;}
.x29_c00038{left:231.930000px;}
.x1a_c00038{left:234.360000px;}
.x7f_c00038{left:237.060000px;}
.x47_c00038{left:238.140000px;}
.x57_c00038{left:239.760000px;}
.x5e_c00038{left:247.320000px;}
.x41_c00038{left:250.560000px;}
.xf_c00038{left:253.530000px;}
.x4e_c00038{left:257.580000px;}
.x48_c00038{left:259.470000px;}
.x37_c00038{left:260.820000px;}
.x42_c00038{left:263.520000px;}
.x1f_c00038{left:265.680000px;}
.x11_c00038{left:274.590000px;}
.x97_c00038{left:275.940000px;}
.x6e_c00038{left:277.560000px;}
.x38_c00038{left:279.180000px;}
.x10_c00038{left:280.260000px;}
.x76_c00038{left:282.420000px;}
.x1b_c00038{left:284.850000px;}
.x58_c00038{left:286.470000px;}
.x52_c00038{left:288.900000px;}
.x30_c00038{left:290.250000px;}
.x3f_c00038{left:293.220000px;}
.x66_c00038{left:295.380000px;}
.x6f_c00038{left:300.780000px;}
.x5f_c00038{left:304.290000px;}
.x20_c00038{left:306.180000px;}
.x59_c00038{left:307.260000px;}
.x53_c00038{left:308.610000px;}
.x49_c00038{left:313.470000px;}
.x5b_c00038{left:314.820000px;}
.x80_c00038{left:316.710000px;}
.x7_c00038{left:321.300000px;}
.x31_c00038{left:325.620000px;}
.x13_c00038{left:329.940000px;}
.x1c_c00038{left:333.450000px;}
.x40_c00038{left:335.610000px;}
.x77_c00038{left:337.230000px;}
.x4f_c00038{left:338.850000px;}
.x88_c00038{left:340.128000px;}
.x39_c00038{left:343.440000px;}
.x21_c00038{left:345.600000px;}
.x32_c00038{left:347.760000px;}
.x43_c00038{left:349.650000px;}
.x2a_c00038{left:351.810000px;}
.x4a_c00038{left:353.160000px;}
.x8_c00038{left:354.780000px;}
.x78_c00038{left:356.130000px;}
.x70_c00038{left:360.180000px;}
.x5a_c00038{left:364.230000px;}
.x89_c00038{left:367.953000px;}
.x3a_c00038{left:370.170000px;}
.x14_c00038{left:371.790000px;}
.x8e_c00038{left:375.030000px;}
.x22_c00038{left:378.000000px;}
.x79_c00038{left:385.290000px;}
.x12_c00038{left:389.070000px;}
.x44_c00038{left:393.930000px;}
.x50_c00038{left:395.010000px;}
.x5c_c00038{left:396.360000px;}
.x67_c00038{left:400.950000px;}
.x4b_c00038{left:405.270000px;}
.x54_c00038{left:406.350000px;}
.x60_c00038{left:410.130000px;}
.x3b_c00038{left:411.750000px;}
.x23_c00038{left:413.100000px;}
.x9_c00038{left:414.990000px;}
.xa_c00038{left:419.580000px;}
.x81_c00038{left:420.930000px;}
.x33_c00038{left:425.790000px;}
.x4c_c00038{left:426.870000px;}
.x15_c00038{left:428.490000px;}
.x98_c00038{left:429.840000px;}
.x71_c00038{left:431.730000px;}
.xa1_c00038{left:435.240000px;}
.x2b_c00038{left:438.480000px;}
.x24_c00038{left:440.100000px;}
.x82_c00038{left:441.990000px;}
.x68_c00038{left:443.340000px;}
.xb_c00038{left:450.900000px;}
.x61_c00038{left:453.060000px;}
.x51_c00038{left:455.760000px;}
.xa2_c00038{left:457.650000px;}
.x34_c00038{left:463.050000px;}
.x2c_c00038{left:464.400000px;}
.x69_c00038{left:465.480000px;}
.x83_c00038{left:469.800000px;}
.x7a_c00038{left:473.040000px;}
.x9c_c00038{left:474.618000px;}
.x62_c00038{left:476.010000px;}
.x3c_c00038{left:482.490000px;}
.x99_c00038{left:489.780000px;}
.x9d_c00038{left:492.154500px;}
.x16_c00038{left:496.800000px;}
.x7b_c00038{left:499.230000px;}
.x1d_c00038{left:501.930000px;}
.x25_c00038{left:509.220000px;}
.x9e_c00038{left:511.569000px;}
.x8f_c00038{left:518.130000px;}
.x26_c00038{left:520.020000px;}
.x27_c00038{left:522.450000px;}
.x8a_c00038{left:524.025000px;}
.x2d_c00038{left:527.310000px;}
.x90_c00038{left:530.010000px;}
.x9f_c00038{left:535.614000px;}
.x17_c00038{left:538.110000px;}
.x91_c00038{left:542.700000px;}
.xa3_c00038{left:545.670000px;}
.x7c_c00038{left:562.140000px;}
.x84_c00038{left:564.300000px;}
.x92_c00038{left:566.190000px;}
.x55_c00038{left:569.430000px;}
.xa0_c00038{left:589.083000px;}
.xa4_c00038{left:598.320000px;}
.x7d_c00038{left:602.910000px;}
.x9b_c00038{left:606.960000px;}
.x72_c00038{left:609.390000px;}
.x9a_c00038{left:610.740000px;}
.x6a_c00038{left:612.360000px;}
.x8b_c00038{left:617.676000px;}
.x85_c00038{left:618.840000px;}
.x63_c00038{left:622.080000px;}
.x6b_c00038{left:630.450000px;}
.x93_c00038{left:635.040000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.fs0_c00038{font-size:19.600000pt;}
.fsc_c00038{font-size:22.400000pt;}
.fs13_c00038{font-size:27.066667pt;}
.fse_c00038{font-size:43.866667pt;}
.fs10_c00038{font-size:45.733333pt;}
.fsf_c00038{font-size:47.600000pt;}
.fs14_c00038{font-size:48.533333pt;}
.fs11_c00038{font-size:52.266667pt;}
.fsb_c00038{font-size:56.000000pt;}
.fsa_c00038{font-size:60.666667pt;}
.fsd_c00038{font-size:61.600000pt;}
.fs7_c00038{font-size:62.533333pt;}
.fs5_c00038{font-size:63.466667pt;}
.fs6_c00038{font-size:64.400000pt;}
.fs9_c00038{font-size:65.333333pt;}
.fs3_c00038{font-size:66.266667pt;}
.fs8_c00038{font-size:67.200000pt;}
.fs4_c00038{font-size:68.133333pt;}
.fs2_c00038{font-size:69.066667pt;}
.fs1_c00038{font-size:70.933333pt;}
.fs12_c00038{font-size:73.733333pt;}
.y0_c00038{bottom:0.000000pt;}
.y3a_c00038{bottom:130.465333pt;}
.y39_c00038{bottom:142.045333pt;}
.y38_c00038{bottom:142.184000pt;}
.y37_c00038{bottom:142.706667pt;}
.y36_c00038{bottom:142.941333pt;}
.y35_c00038{bottom:143.130667pt;}
.y34_c00038{bottom:143.302667pt;}
.y33_c00038{bottom:143.389333pt;}
.y32_c00038{bottom:143.641333pt;}
.y31_c00038{bottom:143.825333pt;}
.y30_c00038{bottom:144.422667pt;}
.y2f_c00038{bottom:144.758667pt;}
.y2e_c00038{bottom:144.960000pt;}
.y2d_c00038{bottom:154.057333pt;}
.y2c_c00038{bottom:190.290667pt;}
.y2b_c00038{bottom:205.898667pt;}
.y2a_c00038{bottom:219.289333pt;}
.y29_c00038{bottom:219.576000pt;}
.y28_c00038{bottom:219.789333pt;}
.y27_c00038{bottom:220.013333pt;}
.y26_c00038{bottom:220.116000pt;}
.y25_c00038{bottom:220.402667pt;}
.y24_c00038{bottom:220.622667pt;}
.y23_c00038{bottom:220.689333pt;}
.y22_c00038{bottom:220.772000pt;}
.y21_c00038{bottom:221.010667pt;}
.y20_c00038{bottom:221.089333pt;}
.y1f_c00038{bottom:221.322667pt;}
.y1e_c00038{bottom:221.412000pt;}
.y1d_c00038{bottom:221.598667pt;}
.y1c_c00038{bottom:221.726667pt;}
.y1b_c00038{bottom:221.852000pt;}
.y1a_c00038{bottom:222.001333pt;}
.y19_c00038{bottom:237.140000pt;}
.y18_c00038{bottom:252.264000pt;}
.y17_c00038{bottom:284.182667pt;}
.y16_c00038{bottom:304.285333pt;}
.y15_c00038{bottom:313.521333pt;}
.y14_c00038{bottom:323.848000pt;}
.y13_c00038{bottom:343.733333pt;}
.y12_c00038{bottom:363.561333pt;}
.y11_c00038{bottom:384.862667pt;}
.y10_c00038{bottom:404.298667pt;}
.yf_c00038{bottom:424.373333pt;}
.ye_c00038{bottom:444.858667pt;}
.yd_c00038{bottom:464.400000pt;}
.yc_c00038{bottom:485.006667pt;}
.yb_c00038{bottom:504.768000pt;}
.ya_c00038{bottom:525.265333pt;}
.y9_c00038{bottom:544.320000pt;}
.y8_c00038{bottom:628.810667pt;}
.y7_c00038{bottom:654.433333pt;}
.y6_c00038{bottom:674.710667pt;}
.y5_c00038{bottom:695.020000pt;}
.y4_c00038{bottom:715.156000pt;}
.y3_c00038{bottom:736.550667pt;}
.y2_c00038{bottom:756.520000pt;}
.y1_c00038{bottom:930.480000pt;}
.h2_c00038{height:19.600000pt;}
.he_c00038{height:22.400000pt;}
.h15_c00038{height:27.066667pt;}
.h10_c00038{height:43.866667pt;}
.h12_c00038{height:45.733333pt;}
.h11_c00038{height:47.600000pt;}
.h16_c00038{height:48.533333pt;}
.h13_c00038{height:52.266667pt;}
.hd_c00038{height:56.000000pt;}
.hc_c00038{height:60.666667pt;}
.hf_c00038{height:61.600000pt;}
.h9_c00038{height:62.533333pt;}
.h7_c00038{height:63.466667pt;}
.h8_c00038{height:64.400000pt;}
.hb_c00038{height:65.333333pt;}
.h5_c00038{height:66.266667pt;}
.ha_c00038{height:67.200000pt;}
.h6_c00038{height:68.133333pt;}
.h4_c00038{height:69.066667pt;}
.h3_c00038{height:70.933333pt;}
.h14_c00038{height:73.733333pt;}
.h1_c00038{height:960.000000pt;}
.h0_c00038{height:960.240000pt;}
.w1_c00038{width:682.666667pt;}
.w0_c00038{width:682.800000pt;}
.x0_c00038{left:0.000000pt;}
.x94_c00038{left:64.560000pt;}
.x1_c00038{left:74.400000pt;}
.x8c_c00038{left:75.840000pt;}
.x95_c00038{left:92.160000pt;}
.x73_c00038{left:96.480000pt;}
.x7e_c00038{left:102.480000pt;}
.x8d_c00038{left:117.600000pt;}
.x2_c00038{left:119.280000pt;}
.x86_c00038{left:122.096000pt;}
.x1e_c00038{left:125.520000pt;}
.xc_c00038{left:127.200000pt;}
.x3_c00038{left:128.400000pt;}
.x74_c00038{left:133.920000pt;}
.x96_c00038{left:136.080000pt;}
.x87_c00038{left:142.966667pt;}
.x64_c00038{left:144.000000pt;}
.x56_c00038{left:146.640000pt;}
.x4_c00038{left:148.320000pt;}
.x18_c00038{left:149.280000pt;}
.x45_c00038{left:150.960000pt;}
.x3d_c00038{left:152.640000pt;}
.x6c_c00038{left:156.960000pt;}
.x28_c00038{left:159.120000pt;}
.xd_c00038{left:162.000000pt;}
.x5d_c00038{left:163.200000pt;}
.x35_c00038{left:165.120000pt;}
.x19_c00038{left:166.320000pt;}
.x2e_c00038{left:178.800000pt;}
.x4d_c00038{left:181.200000pt;}
.x65_c00038{left:183.120000pt;}
.xe_c00038{left:184.800000pt;}
.x5_c00038{left:187.200000pt;}
.x6d_c00038{left:189.120000pt;}
.x3e_c00038{left:190.800000pt;}
.x46_c00038{left:195.120000pt;}
.x75_c00038{left:199.200000pt;}
.x2f_c00038{left:202.800000pt;}
.x6_c00038{left:204.240000pt;}
.x36_c00038{left:205.200000pt;}
.x29_c00038{left:206.160000pt;}
.x1a_c00038{left:208.320000pt;}
.x7f_c00038{left:210.720000pt;}
.x47_c00038{left:211.680000pt;}
.x57_c00038{left:213.120000pt;}
.x5e_c00038{left:219.840000pt;}
.x41_c00038{left:222.720000pt;}
.xf_c00038{left:225.360000pt;}
.x4e_c00038{left:228.960000pt;}
.x48_c00038{left:230.640000pt;}
.x37_c00038{left:231.840000pt;}
.x42_c00038{left:234.240000pt;}
.x1f_c00038{left:236.160000pt;}
.x11_c00038{left:244.080000pt;}
.x97_c00038{left:245.280000pt;}
.x6e_c00038{left:246.720000pt;}
.x38_c00038{left:248.160000pt;}
.x10_c00038{left:249.120000pt;}
.x76_c00038{left:251.040000pt;}
.x1b_c00038{left:253.200000pt;}
.x58_c00038{left:254.640000pt;}
.x52_c00038{left:256.800000pt;}
.x30_c00038{left:258.000000pt;}
.x3f_c00038{left:260.640000pt;}
.x66_c00038{left:262.560000pt;}
.x6f_c00038{left:267.360000pt;}
.x5f_c00038{left:270.480000pt;}
.x20_c00038{left:272.160000pt;}
.x59_c00038{left:273.120000pt;}
.x53_c00038{left:274.320000pt;}
.x49_c00038{left:278.640000pt;}
.x5b_c00038{left:279.840000pt;}
.x80_c00038{left:281.520000pt;}
.x7_c00038{left:285.600000pt;}
.x31_c00038{left:289.440000pt;}
.x13_c00038{left:293.280000pt;}
.x1c_c00038{left:296.400000pt;}
.x40_c00038{left:298.320000pt;}
.x77_c00038{left:299.760000pt;}
.x4f_c00038{left:301.200000pt;}
.x88_c00038{left:302.336000pt;}
.x39_c00038{left:305.280000pt;}
.x21_c00038{left:307.200000pt;}
.x32_c00038{left:309.120000pt;}
.x43_c00038{left:310.800000pt;}
.x2a_c00038{left:312.720000pt;}
.x4a_c00038{left:313.920000pt;}
.x8_c00038{left:315.360000pt;}
.x78_c00038{left:316.560000pt;}
.x70_c00038{left:320.160000pt;}
.x5a_c00038{left:323.760000pt;}
.x89_c00038{left:327.069333pt;}
.x3a_c00038{left:329.040000pt;}
.x14_c00038{left:330.480000pt;}
.x8e_c00038{left:333.360000pt;}
.x22_c00038{left:336.000000pt;}
.x79_c00038{left:342.480000pt;}
.x12_c00038{left:345.840000pt;}
.x44_c00038{left:350.160000pt;}
.x50_c00038{left:351.120000pt;}
.x5c_c00038{left:352.320000pt;}
.x67_c00038{left:356.400000pt;}
.x4b_c00038{left:360.240000pt;}
.x54_c00038{left:361.200000pt;}
.x60_c00038{left:364.560000pt;}
.x3b_c00038{left:366.000000pt;}
.x23_c00038{left:367.200000pt;}
.x9_c00038{left:368.880000pt;}
.xa_c00038{left:372.960000pt;}
.x81_c00038{left:374.160000pt;}
.x33_c00038{left:378.480000pt;}
.x4c_c00038{left:379.440000pt;}
.x15_c00038{left:380.880000pt;}
.x98_c00038{left:382.080000pt;}
.x71_c00038{left:383.760000pt;}
.xa1_c00038{left:386.880000pt;}
.x2b_c00038{left:389.760000pt;}
.x24_c00038{left:391.200000pt;}
.x82_c00038{left:392.880000pt;}
.x68_c00038{left:394.080000pt;}
.xb_c00038{left:400.800000pt;}
.x61_c00038{left:402.720000pt;}
.x51_c00038{left:405.120000pt;}
.xa2_c00038{left:406.800000pt;}
.x34_c00038{left:411.600000pt;}
.x2c_c00038{left:412.800000pt;}
.x69_c00038{left:413.760000pt;}
.x83_c00038{left:417.600000pt;}
.x7a_c00038{left:420.480000pt;}
.x9c_c00038{left:421.882667pt;}
.x62_c00038{left:423.120000pt;}
.x3c_c00038{left:428.880000pt;}
.x99_c00038{left:435.360000pt;}
.x9d_c00038{left:437.470667pt;}
.x16_c00038{left:441.600000pt;}
.x7b_c00038{left:443.760000pt;}
.x1d_c00038{left:446.160000pt;}
.x25_c00038{left:452.640000pt;}
.x9e_c00038{left:454.728000pt;}
.x8f_c00038{left:460.560000pt;}
.x26_c00038{left:462.240000pt;}
.x27_c00038{left:464.400000pt;}
.x8a_c00038{left:465.800000pt;}
.x2d_c00038{left:468.720000pt;}
.x90_c00038{left:471.120000pt;}
.x9f_c00038{left:476.101333pt;}
.x17_c00038{left:478.320000pt;}
.x91_c00038{left:482.400000pt;}
.xa3_c00038{left:485.040000pt;}
.x7c_c00038{left:499.680000pt;}
.x84_c00038{left:501.600000pt;}
.x92_c00038{left:503.280000pt;}
.x55_c00038{left:506.160000pt;}
.xa0_c00038{left:523.629333pt;}
.xa4_c00038{left:531.840000pt;}
.x7d_c00038{left:535.920000pt;}
.x9b_c00038{left:539.520000pt;}
.x72_c00038{left:541.680000pt;}
.x9a_c00038{left:542.880000pt;}
.x6a_c00038{left:544.320000pt;}
.x8b_c00038{left:549.045333pt;}
.x85_c00038{left:550.080000pt;}
.x63_c00038{left:552.960000pt;}
.x6b_c00038{left:560.400000pt;}
.x93_c00038{left:564.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m5_c00039{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);}
.m81_c00039{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);}
.mbb_c00039{transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);}
.m52_c00039{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);}
.maa_c00039{transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077660,0.000000,0.000000,0.250000,0,0);}
.m5f_c00039{transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.100890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100890,0.000000,0.000000,0.250000,0,0);}
.me0_c00039{transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00039{transform:matrix(0.144590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144590,0.000000,0.000000,0.250000,0,0);}
.m4b_c00039{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);}
.m76_c00039{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);}
.mbd_c00039{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);}
.m7e_c00039{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);}
.m84_c00039{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);}
.ma2_c00039{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{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);}
.mc2_c00039{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);}
.m3f_c00039{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m98_c00039{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);}
.m85_c00039{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);}
.mac_c00039{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);}
.m6c_c00039{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);}
.ma6_c00039{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);}
.m7c_c00039{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);}
.ma9_c00039{transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);}
.ma7_c00039{transform:matrix(0.160285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160285,0.000000,0.000000,0.250000,0,0);}
.ma0_c00039{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);}
.mbf_c00039{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);}
.meb_c00039{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);}
.mc6_c00039{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);}
.m23_c00039{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);}
.ma3_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);}
.m59_c00039{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);}
.m5e_c00039{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_c00039{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);}
.med_c00039{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);}
.m9a_c00039{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);}
.mee_c00039{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);}
.m1b_c00039{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);}
.m9f_c00039{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);}
.m8e_c00039{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);}
.me3_c00039{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);}
.m72_c00039{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);}
.m9c_c00039{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);}
.me4_c00039{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);}
.ma5_c00039{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);}
.m71_c00039{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);}
.m54_c00039{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);}
.mb0_c00039{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);}
.m4d_c00039{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);}
.mc3_c00039{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);}
.mdf_c00039{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);}
.m64_c00039{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);}
.m90_c00039{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);}
.m8a_c00039{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);}
.m7f_c00039{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);}
.mc8_c00039{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);}
.md9_c00039{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);}
.m7b_c00039{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);}
.mb2_c00039{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);}
.m89_c00039{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);}
.me7_c00039{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);}
.mbc_c00039{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);}
.m5b_c00039{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);}
.m70_c00039{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);}
.m95_c00039{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);}
.m1a_c00039{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);}
.m53_c00039{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);}
.md6_c00039{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);}
.m4c_c00039{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);}
.m94_c00039{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);}
.m4a_c00039{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);}
.mc9_c00039{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);}
.m61_c00039{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);}
.me1_c00039{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);}
.mce_c00039{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);}
.m87_c00039{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);}
.m49_c00039{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);}
.m5d_c00039{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);}
.mba_c00039{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);}
.m29_c00039{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);}
.m77_c00039{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);}
.m28_c00039{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.me2_c00039{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);}
.m92_c00039{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);}
.mcc_c00039{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);}
.mdd_c00039{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);}
.m24_c00039{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);}
.m73_c00039{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);}
.mb8_c00039{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);}
.md3_c00039{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);}
.me5_c00039{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);}
.m8f_c00039{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);}
.m99_c00039{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);}
.m4_c00039{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);}
.mb7_c00039{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);}
.m69_c00039{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);}
.me6_c00039{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);}
.md2_c00039{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);}
.md_c00039{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);}
.md1_c00039{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);}
.m88_c00039{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);}
.mda_c00039{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);}
.m7d_c00039{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);}
.m6f_c00039{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);}
.ma1_c00039{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);}
.m43_c00039{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);}
.m62_c00039{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);}
.m82_c00039{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);}
.m65_c00039{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);}
.m6d_c00039{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);}
.mc5_c00039{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);}
.m8_c00039{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);}
.mae_c00039{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);}
.mb4_c00039{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);}
.m78_c00039{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);}
.m6b_c00039{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);}
.m51_c00039{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);}
.m50_c00039{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);}
.m75_c00039{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);}
.ma_c00039{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);}
.m0_c00039{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);}
.mdb_c00039{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);}
.mc_c00039{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);}
.m66_c00039{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_c00039{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);}
.md8_c00039{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);}
.m6e_c00039{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);}
.mc0_c00039{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);}
.m3d_c00039{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);}
.mcf_c00039{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);}
.m32_c00039{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);}
.m2a_c00039{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);}
.m3e_c00039{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);}
.m6a_c00039{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);}
.me9_c00039{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);}
.mea_c00039{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);}
.m46_c00039{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);}
.mbe_c00039{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);}
.mad_c00039{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);}
.maf_c00039{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.mc7_c00039{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);}
.m48_c00039{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);}
.m9e_c00039{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);}
.mb6_c00039{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);}
.m74_c00039{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);}
.m2d_c00039{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);}
.m7_c00039{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);}
.mcb_c00039{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);}
.m9b_c00039{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);}
.m3a_c00039{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);}
.m58_c00039{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);}
.mb1_c00039{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);}
.m67_c00039{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);}
.m83_c00039{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);}
.m42_c00039{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);}
.mb_c00039{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);}
.mb9_c00039{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{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);}
.m33_c00039{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);}
.m47_c00039{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);}
.md7_c00039{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);}
.mec_c00039{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);}
.m5a_c00039{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);}
.m79_c00039{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);}
.m9_c00039{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);}
.mf2_c00039{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);}
.m56_c00039{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);}
.m25_c00039{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);}
.m34_c00039{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);}
.m1f_c00039{transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{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);}
.mb5_c00039{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);}
.m93_c00039{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);}
.m40_c00039{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);}
.m4e_c00039{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);}
.m19_c00039{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);}
.m27_c00039{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);}
.m91_c00039{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);}
.m68_c00039{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);}
.m80_c00039{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);}
.m4f_c00039{transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);}
.ma4_c00039{transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);}
.md4_c00039{transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mca_c00039{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);}
.mc1_c00039{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m63_c00039{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m60_c00039{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{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);}
.m57_c00039{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.m41_c00039{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.mde_c00039{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{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);}
.m3_c00039{transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);}
.md0_c00039{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.mab_c00039{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);}
.m3c_c00039{transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);}
.me8_c00039{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00039{transform:matrix(0.266680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{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);}
.m16_c00039{transform:matrix(0.269410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269410,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{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);}
.m36_c00039{transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275965,0.000000,0.000000,0.250000,0,0);}
.m96_c00039{transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);}
.mc4_c00039{transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.282255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282255,0.000000,0.000000,0.250000,0,0);}
.m35_c00039{transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283520,0.000000,0.000000,0.250000,0,0);}
.m37_c00039{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.291050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291050,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00039{transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);}
.md5_c00039{transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320215,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334885,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);}
.m7a_c00039{transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);}
.m97_c00039{transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);}
.m8b_c00039{transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);}
.mb3_c00039{transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);}
.mf0_c00039{transform:matrix(0.362495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362495,0.000000,0.000000,0.250000,0,0);}
.m8c_c00039{transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363695,0.000000,0.000000,0.250000,0,0);}
.mdc_c00039{transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368710,0.000000,0.000000,0.250000,0,0);}
.mcd_c00039{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);}
.m45_c00039{transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00039{transform:matrix(0.410125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410125,0.000000,0.000000,0.250000,0,0);}
.mef_c00039{transform:matrix(0.416260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416260,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.435565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435565,0.000000,0.000000,0.250000,0,0);}
.m86_c00039{transform:matrix(0.445160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445160,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.452470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452470,0.000000,0.000000,0.250000,0,0);}
.mf1_c00039{transform:matrix(0.473395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473395,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{transform:matrix(0.518340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518340,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.549810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549810,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.587135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587135,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.665650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665650,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.786320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786320,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;}
.fs4_c00039{font-size:23.100000px;}
.fse_c00039{font-size:49.350000px;}
.fs12_c00039{font-size:50.400000px;}
.fs10_c00039{font-size:51.450000px;}
.fs11_c00039{font-size:52.500000px;}
.fs14_c00039{font-size:53.550000px;}
.fsf_c00039{font-size:54.600000px;}
.fs13_c00039{font-size:55.650000px;}
.fs6_c00039{font-size:56.700000px;}
.fsd_c00039{font-size:58.800000px;}
.fs1_c00039{font-size:61.950000px;}
.fs5_c00039{font-size:64.050000px;}
.fs7_c00039{font-size:66.150000px;}
.fsb_c00039{font-size:67.200000px;}
.fsa_c00039{font-size:69.300000px;}
.fsc_c00039{font-size:70.350000px;}
.fs8_c00039{font-size:71.400000px;}
.fs9_c00039{font-size:72.450000px;}
.fs0_c00039{font-size:73.500000px;}
.fs3_c00039{font-size:99.750000px;}
.fs2_c00039{font-size:124.950000px;}
.y0_c00039{bottom:0.000000px;}
.y1f_c00039{bottom:77.058000px;}
.y1e_c00039{bottom:92.082000px;}
.y1d_c00039{bottom:133.783500px;}
.y1c_c00039{bottom:151.299000px;}
.y1b_c00039{bottom:168.900000px;}
.y1a_c00039{bottom:186.795000px;}
.y19_c00039{bottom:204.841500px;}
.y18_c00039{bottom:222.451500px;}
.y17_c00039{bottom:260.122500px;}
.y16_c00039{bottom:283.155000px;}
.y15_c00039{bottom:305.317500px;}
.y14_c00039{bottom:328.407000px;}
.y13_c00039{bottom:351.714000px;}
.y12_c00039{bottom:374.188500px;}
.y11_c00039{bottom:396.715500px;}
.y10_c00039{bottom:419.556000px;}
.yf_c00039{bottom:442.692000px;}
.ye_c00039{bottom:465.685500px;}
.yd_c00039{bottom:488.361000px;}
.yc_c00039{bottom:512.644500px;}
.yb_c00039{bottom:535.344000px;}
.ya_c00039{bottom:555.361500px;}
.y9_c00039{bottom:578.937000px;}
.y8_c00039{bottom:602.029500px;}
.y7_c00039{bottom:609.930000px;}
.y6_c00039{bottom:624.585000px;}
.y5_c00039{bottom:646.509000px;}
.y4_c00039{bottom:684.903000px;}
.y3_c00039{bottom:723.546000px;}
.y2_c00039{bottom:781.012500px;}
.y1_c00039{bottom:803.482500px;}
.h6_c00039{height:23.100000px;}
.h10_c00039{height:49.350000px;}
.h14_c00039{height:50.400000px;}
.h12_c00039{height:51.450000px;}
.h13_c00039{height:52.500000px;}
.h16_c00039{height:53.550000px;}
.h11_c00039{height:54.600000px;}
.h15_c00039{height:55.650000px;}
.h8_c00039{height:56.700000px;}
.hf_c00039{height:58.800000px;}
.h3_c00039{height:61.950000px;}
.h7_c00039{height:64.050000px;}
.h9_c00039{height:66.150000px;}
.hd_c00039{height:67.200000px;}
.hc_c00039{height:69.300000px;}
.he_c00039{height:70.350000px;}
.ha_c00039{height:71.400000px;}
.hb_c00039{height:72.450000px;}
.h2_c00039{height:73.500000px;}
.h5_c00039{height:99.750000px;}
.h4_c00039{height:124.950000px;}
.h0_c00039{height:1008.450000px;}
.h1_c00039{height:1008.750000px;}
.w0_c00039{width:699.000000px;}
.x0_c00039{left:0.000000px;}
.x83_c00039{left:135.000000px;}
.x73_c00039{left:138.510000px;}
.x6b_c00039{left:147.420000px;}
.x74_c00039{left:149.310000px;}
.x84_c00039{left:154.170000px;}
.x91_c00039{left:155.250000px;}
.x36_c00039{left:164.160000px;}
.x1_c00039{left:169.290000px;}
.x49_c00039{left:170.370000px;}
.x40_c00039{left:173.880000px;}
.x75_c00039{left:181.170000px;}
.x85_c00039{left:183.060000px;}
.x14_c00039{left:186.840000px;}
.x1e_c00039{left:188.190000px;}
.x2_c00039{left:192.510000px;}
.x92_c00039{left:193.590000px;}
.x28_c00039{left:194.670000px;}
.x67_c00039{left:196.290000px;}
.x41_c00039{left:200.610000px;}
.x18_c00039{left:208.440000px;}
.x4a_c00039{left:209.520000px;}
.x93_c00039{left:212.490000px;}
.x59_c00039{left:213.570000px;}
.x7e_c00039{left:216.000000px;}
.x52_c00039{left:219.780000px;}
.x6c_c00039{left:220.860000px;}
.x62_c00039{left:224.640000px;}
.x8d_c00039{left:226.260000px;}
.x29_c00039{left:227.340000px;}
.x7_c00039{left:231.660000px;}
.x39_c00039{left:233.550000px;}
.x68_c00039{left:234.900000px;}
.x76_c00039{left:236.790000px;}
.x3c_c00039{left:238.950000px;}
.x42_c00039{left:240.300000px;}
.x86_c00039{left:241.920000px;}
.x19_c00039{left:244.080000px;}
.x53_c00039{left:245.160000px;}
.x3_c00039{left:247.860000px;}
.xd_c00039{left:249.210000px;}
.x6d_c00039{left:252.180000px;}
.x69_c00039{left:254.340000px;}
.x2a_c00039{left:256.500000px;}
.x8_c00039{left:257.850000px;}
.x63_c00039{left:259.200000px;}
.x94_c00039{left:261.360000px;}
.xe_c00039{left:263.250000px;}
.x2e_c00039{left:268.110000px;}
.x5a_c00039{left:270.810000px;}
.x99_c00039{left:273.510000px;}
.x77_c00039{left:274.590000px;}
.x2f_c00039{left:280.260000px;}
.x3a_c00039{left:287.010000px;}
.xf_c00039{left:288.900000px;}
.x78_c00039{left:291.330000px;}
.x4e_c00039{left:292.410000px;}
.x1a_c00039{left:293.490000px;}
.x3d_c00039{left:295.110000px;}
.x9a_c00039{left:296.460000px;}
.x9_c00039{left:297.540000px;}
.x5b_c00039{left:298.890000px;}
.x1f_c00039{left:307.800000px;}
.x43_c00039{left:308.880000px;}
.x15_c00039{left:311.310000px;}
.x6a_c00039{left:312.930000px;}
.x10_c00039{left:314.010000px;}
.x37_c00039{left:317.790000px;}
.x25_c00039{left:318.870000px;}
.x64_c00039{left:320.220000px;}
.x4_c00039{left:327.780000px;}
.x17_c00039{left:329.400000px;}
.x4f_c00039{left:331.560000px;}
.x30_c00039{left:335.340000px;}
.x54_c00039{left:336.960000px;}
.x79_c00039{left:341.550000px;}
.x8e_c00039{left:342.630000px;}
.x11_c00039{left:344.520000px;}
.xa_c00039{left:346.410000px;}
.x60_c00039{left:349.110000px;}
.x5c_c00039{left:353.430000px;}
.x65_c00039{left:354.510000px;}
.x1b_c00039{left:357.480000px;}
.x44_c00039{left:360.990000px;}
.x5_c00039{left:362.610000px;}
.x5e_c00039{left:366.120000px;}
.x31_c00039{left:367.200000px;}
.x61_c00039{left:371.520000px;}
.x3e_c00039{left:373.410000px;}
.x5d_c00039{left:375.570000px;}
.x12_c00039{left:380.970000px;}
.xb_c00039{left:383.130000px;}
.x4b_c00039{left:384.480000px;}
.x20_c00039{left:388.800000px;}
.x13_c00039{left:392.040000px;}
.x6e_c00039{left:394.200000px;}
.x38_c00039{left:396.630000px;}
.x32_c00039{left:399.600000px;}
.x55_c00039{left:401.490000px;}
.x33_c00039{left:404.730000px;}
.xc_c00039{left:406.890000px;}
.x66_c00039{left:409.860000px;}
.x45_c00039{left:412.020000px;}
.x50_c00039{left:416.880000px;}
.x6f_c00039{left:418.770000px;}
.x87_c00039{left:421.200000px;}
.x34_c00039{left:422.820000px;}
.x95_c00039{left:425.250000px;}
.x16_c00039{left:426.600000px;}
.x1c_c00039{left:430.650000px;}
.x7f_c00039{left:432.270000px;}
.x3b_c00039{left:435.240000px;}
.x4c_c00039{left:438.480000px;}
.x21_c00039{left:439.560000px;}
.x56_c00039{left:441.990000px;}
.x8f_c00039{left:444.690000px;}
.x26_c00039{left:450.630000px;}
.x46_c00039{left:452.520000px;}
.x88_c00039{left:456.300000px;}
.x1d_c00039{left:459.000000px;}
.x22_c00039{left:465.210000px;}
.x96_c00039{left:467.640000px;}
.x4d_c00039{left:471.420000px;}
.x89_c00039{left:476.010000px;}
.x6_c00039{left:477.360000px;}
.x35_c00039{left:480.600000px;}
.x27_c00039{left:482.220000px;}
.x57_c00039{left:485.730000px;}
.x80_c00039{left:486.810000px;}
.x5f_c00039{left:491.130000px;}
.x2b_c00039{left:493.830000px;}
.x3f_c00039{left:495.990000px;}
.x81_c00039{left:500.040000px;}
.x97_c00039{left:502.740000px;}
.x47_c00039{left:506.520000px;}
.x23_c00039{left:508.140000px;}
.x58_c00039{left:509.490000px;}
.x51_c00039{left:511.380000px;}
.x7a_c00039{left:513.270000px;}
.x2c_c00039{left:518.130000px;}
.x8a_c00039{left:527.310000px;}
.x98_c00039{left:535.410000px;}
.x7b_c00039{left:536.490000px;}
.x90_c00039{left:544.590000px;}
.x70_c00039{left:546.480000px;}
.x48_c00039{left:548.370000px;}
.x2d_c00039{left:551.340000px;}
.x24_c00039{left:560.520000px;}
.x7c_c00039{left:565.920000px;}
.x71_c00039{left:568.350000px;}
.x8b_c00039{left:570.510000px;}
.x82_c00039{left:585.090000px;}
.x8c_c00039{left:587.250000px;}
.x7d_c00039{left:589.950000px;}
.x72_c00039{left:596.700000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:0.000000pt;}
.fs4_c00039{font-size:20.533333pt;}
.fse_c00039{font-size:43.866667pt;}
.fs12_c00039{font-size:44.800000pt;}
.fs10_c00039{font-size:45.733333pt;}
.fs11_c00039{font-size:46.666667pt;}
.fs14_c00039{font-size:47.600000pt;}
.fsf_c00039{font-size:48.533333pt;}
.fs13_c00039{font-size:49.466667pt;}
.fs6_c00039{font-size:50.400000pt;}
.fsd_c00039{font-size:52.266667pt;}
.fs1_c00039{font-size:55.066667pt;}
.fs5_c00039{font-size:56.933333pt;}
.fs7_c00039{font-size:58.800000pt;}
.fsb_c00039{font-size:59.733333pt;}
.fsa_c00039{font-size:61.600000pt;}
.fsc_c00039{font-size:62.533333pt;}
.fs8_c00039{font-size:63.466667pt;}
.fs9_c00039{font-size:64.400000pt;}
.fs0_c00039{font-size:65.333333pt;}
.fs3_c00039{font-size:88.666667pt;}
.fs2_c00039{font-size:111.066667pt;}
.y0_c00039{bottom:0.000000pt;}
.y1f_c00039{bottom:68.496000pt;}
.y1e_c00039{bottom:81.850667pt;}
.y1d_c00039{bottom:118.918667pt;}
.y1c_c00039{bottom:134.488000pt;}
.y1b_c00039{bottom:150.133333pt;}
.y1a_c00039{bottom:166.040000pt;}
.y19_c00039{bottom:182.081333pt;}
.y18_c00039{bottom:197.734667pt;}
.y17_c00039{bottom:231.220000pt;}
.y16_c00039{bottom:251.693333pt;}
.y15_c00039{bottom:271.393333pt;}
.y14_c00039{bottom:291.917333pt;}
.y13_c00039{bottom:312.634667pt;}
.y12_c00039{bottom:332.612000pt;}
.y11_c00039{bottom:352.636000pt;}
.y10_c00039{bottom:372.938667pt;}
.yf_c00039{bottom:393.504000pt;}
.ye_c00039{bottom:413.942667pt;}
.yd_c00039{bottom:434.098667pt;}
.yc_c00039{bottom:455.684000pt;}
.yb_c00039{bottom:475.861333pt;}
.ya_c00039{bottom:493.654667pt;}
.y9_c00039{bottom:514.610667pt;}
.y8_c00039{bottom:535.137333pt;}
.y7_c00039{bottom:542.160000pt;}
.y6_c00039{bottom:555.186667pt;}
.y5_c00039{bottom:574.674667pt;}
.y4_c00039{bottom:608.802667pt;}
.y3_c00039{bottom:643.152000pt;}
.y2_c00039{bottom:694.233333pt;}
.y1_c00039{bottom:714.206667pt;}
.h6_c00039{height:20.533333pt;}
.h10_c00039{height:43.866667pt;}
.h14_c00039{height:44.800000pt;}
.h12_c00039{height:45.733333pt;}
.h13_c00039{height:46.666667pt;}
.h16_c00039{height:47.600000pt;}
.h11_c00039{height:48.533333pt;}
.h15_c00039{height:49.466667pt;}
.h8_c00039{height:50.400000pt;}
.hf_c00039{height:52.266667pt;}
.h3_c00039{height:55.066667pt;}
.h7_c00039{height:56.933333pt;}
.h9_c00039{height:58.800000pt;}
.hd_c00039{height:59.733333pt;}
.hc_c00039{height:61.600000pt;}
.he_c00039{height:62.533333pt;}
.ha_c00039{height:63.466667pt;}
.hb_c00039{height:64.400000pt;}
.h2_c00039{height:65.333333pt;}
.h5_c00039{height:88.666667pt;}
.h4_c00039{height:111.066667pt;}
.h0_c00039{height:896.400000pt;}
.h1_c00039{height:896.666667pt;}
.w0_c00039{width:621.333333pt;}
.x0_c00039{left:0.000000pt;}
.x83_c00039{left:120.000000pt;}
.x73_c00039{left:123.120000pt;}
.x6b_c00039{left:131.040000pt;}
.x74_c00039{left:132.720000pt;}
.x84_c00039{left:137.040000pt;}
.x91_c00039{left:138.000000pt;}
.x36_c00039{left:145.920000pt;}
.x1_c00039{left:150.480000pt;}
.x49_c00039{left:151.440000pt;}
.x40_c00039{left:154.560000pt;}
.x75_c00039{left:161.040000pt;}
.x85_c00039{left:162.720000pt;}
.x14_c00039{left:166.080000pt;}
.x1e_c00039{left:167.280000pt;}
.x2_c00039{left:171.120000pt;}
.x92_c00039{left:172.080000pt;}
.x28_c00039{left:173.040000pt;}
.x67_c00039{left:174.480000pt;}
.x41_c00039{left:178.320000pt;}
.x18_c00039{left:185.280000pt;}
.x4a_c00039{left:186.240000pt;}
.x93_c00039{left:188.880000pt;}
.x59_c00039{left:189.840000pt;}
.x7e_c00039{left:192.000000pt;}
.x52_c00039{left:195.360000pt;}
.x6c_c00039{left:196.320000pt;}
.x62_c00039{left:199.680000pt;}
.x8d_c00039{left:201.120000pt;}
.x29_c00039{left:202.080000pt;}
.x7_c00039{left:205.920000pt;}
.x39_c00039{left:207.600000pt;}
.x68_c00039{left:208.800000pt;}
.x76_c00039{left:210.480000pt;}
.x3c_c00039{left:212.400000pt;}
.x42_c00039{left:213.600000pt;}
.x86_c00039{left:215.040000pt;}
.x19_c00039{left:216.960000pt;}
.x53_c00039{left:217.920000pt;}
.x3_c00039{left:220.320000pt;}
.xd_c00039{left:221.520000pt;}
.x6d_c00039{left:224.160000pt;}
.x69_c00039{left:226.080000pt;}
.x2a_c00039{left:228.000000pt;}
.x8_c00039{left:229.200000pt;}
.x63_c00039{left:230.400000pt;}
.x94_c00039{left:232.320000pt;}
.xe_c00039{left:234.000000pt;}
.x2e_c00039{left:238.320000pt;}
.x5a_c00039{left:240.720000pt;}
.x99_c00039{left:243.120000pt;}
.x77_c00039{left:244.080000pt;}
.x2f_c00039{left:249.120000pt;}
.x3a_c00039{left:255.120000pt;}
.xf_c00039{left:256.800000pt;}
.x78_c00039{left:258.960000pt;}
.x4e_c00039{left:259.920000pt;}
.x1a_c00039{left:260.880000pt;}
.x3d_c00039{left:262.320000pt;}
.x9a_c00039{left:263.520000pt;}
.x9_c00039{left:264.480000pt;}
.x5b_c00039{left:265.680000pt;}
.x1f_c00039{left:273.600000pt;}
.x43_c00039{left:274.560000pt;}
.x15_c00039{left:276.720000pt;}
.x6a_c00039{left:278.160000pt;}
.x10_c00039{left:279.120000pt;}
.x37_c00039{left:282.480000pt;}
.x25_c00039{left:283.440000pt;}
.x64_c00039{left:284.640000pt;}
.x4_c00039{left:291.360000pt;}
.x17_c00039{left:292.800000pt;}
.x4f_c00039{left:294.720000pt;}
.x30_c00039{left:298.080000pt;}
.x54_c00039{left:299.520000pt;}
.x79_c00039{left:303.600000pt;}
.x8e_c00039{left:304.560000pt;}
.x11_c00039{left:306.240000pt;}
.xa_c00039{left:307.920000pt;}
.x60_c00039{left:310.320000pt;}
.x5c_c00039{left:314.160000pt;}
.x65_c00039{left:315.120000pt;}
.x1b_c00039{left:317.760000pt;}
.x44_c00039{left:320.880000pt;}
.x5_c00039{left:322.320000pt;}
.x5e_c00039{left:325.440000pt;}
.x31_c00039{left:326.400000pt;}
.x61_c00039{left:330.240000pt;}
.x3e_c00039{left:331.920000pt;}
.x5d_c00039{left:333.840000pt;}
.x12_c00039{left:338.640000pt;}
.xb_c00039{left:340.560000pt;}
.x4b_c00039{left:341.760000pt;}
.x20_c00039{left:345.600000pt;}
.x13_c00039{left:348.480000pt;}
.x6e_c00039{left:350.400000pt;}
.x38_c00039{left:352.560000pt;}
.x32_c00039{left:355.200000pt;}
.x55_c00039{left:356.880000pt;}
.x33_c00039{left:359.760000pt;}
.xc_c00039{left:361.680000pt;}
.x66_c00039{left:364.320000pt;}
.x45_c00039{left:366.240000pt;}
.x50_c00039{left:370.560000pt;}
.x6f_c00039{left:372.240000pt;}
.x87_c00039{left:374.400000pt;}
.x34_c00039{left:375.840000pt;}
.x95_c00039{left:378.000000pt;}
.x16_c00039{left:379.200000pt;}
.x1c_c00039{left:382.800000pt;}
.x7f_c00039{left:384.240000pt;}
.x3b_c00039{left:386.880000pt;}
.x4c_c00039{left:389.760000pt;}
.x21_c00039{left:390.720000pt;}
.x56_c00039{left:392.880000pt;}
.x8f_c00039{left:395.280000pt;}
.x26_c00039{left:400.560000pt;}
.x46_c00039{left:402.240000pt;}
.x88_c00039{left:405.600000pt;}
.x1d_c00039{left:408.000000pt;}
.x22_c00039{left:413.520000pt;}
.x96_c00039{left:415.680000pt;}
.x4d_c00039{left:419.040000pt;}
.x89_c00039{left:423.120000pt;}
.x6_c00039{left:424.320000pt;}
.x35_c00039{left:427.200000pt;}
.x27_c00039{left:428.640000pt;}
.x57_c00039{left:431.760000pt;}
.x80_c00039{left:432.720000pt;}
.x5f_c00039{left:436.560000pt;}
.x2b_c00039{left:438.960000pt;}
.x3f_c00039{left:440.880000pt;}
.x81_c00039{left:444.480000pt;}
.x97_c00039{left:446.880000pt;}
.x47_c00039{left:450.240000pt;}
.x23_c00039{left:451.680000pt;}
.x58_c00039{left:452.880000pt;}
.x51_c00039{left:454.560000pt;}
.x7a_c00039{left:456.240000pt;}
.x2c_c00039{left:460.560000pt;}
.x8a_c00039{left:468.720000pt;}
.x98_c00039{left:475.920000pt;}
.x7b_c00039{left:476.880000pt;}
.x90_c00039{left:484.080000pt;}
.x70_c00039{left:485.760000pt;}
.x48_c00039{left:487.440000pt;}
.x2d_c00039{left:490.080000pt;}
.x24_c00039{left:498.240000pt;}
.x7c_c00039{left:503.040000pt;}
.x71_c00039{left:505.200000pt;}
.x8b_c00039{left:507.120000pt;}
.x82_c00039{left:520.080000pt;}
.x8c_c00039{left:522.000000pt;}
.x7d_c00039{left:524.400000pt;}
.x72_c00039{left:530.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_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_ef4e99a7aa2876b3106553d3.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;}
.m1f_c00040{transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);}
.m42_c00040{transform:matrix(0.008704,0.000113,-0.003250,0.249979,0,0);-ms-transform:matrix(0.008704,0.000113,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.008704,0.000113,-0.003250,0.249979,0,0);}
.m1e_c00040{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m72_c00040{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);}
.m50_c00040{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);}
.m7b_c00040{transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);}
.mdf_c00040{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{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);}
.m10b_c00040{transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);}
.m104_c00040{transform:matrix(0.113140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113140,0.000000,0.000000,0.250000,0,0);}
.m40_c00040{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.m8a_c00040{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);}
.m1b_c00040{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00040{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);}
.m38_c00040{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);}
.me0_c00040{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m92_c00040{transform:matrix(0.160513,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160513,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160513,0.001445,-0.002250,0.249990,0,0);}
.m26_c00040{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);}
.me6_c00040{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);}
.m3c_c00040{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);}
.m6d_c00040{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);}
.m9c_c00040{transform:matrix(0.163473,0.001471,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163473,0.001471,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163473,0.001471,-0.002250,0.249990,0,0);}
.m99_c00040{transform:matrix(0.163868,0.001475,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163868,0.001475,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163868,0.001475,-0.002250,0.249990,0,0);}
.m6c_c00040{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);}
.m10c_c00040{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.m25_c00040{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);}
.mb6_c00040{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);}
.m19_c00040{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);}
.m59_c00040{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);}
.m31_c00040{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);}
.m46_c00040{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);}
.m2e_c00040{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);}
.m65_c00040{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{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);}
.m8b_c00040{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);}
.m74_c00040{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);}
.md_c00040{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);}
.m2b_c00040{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);}
.ma5_c00040{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);}
.m34_c00040{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);}
.m29_c00040{transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);}
.m48_c00040{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);}
.mc_c00040{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);}
.me5_c00040{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);}
.m89_c00040{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);}
.m7d_c00040{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);}
.ma0_c00040{transform:matrix(0.176913,0.001592,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176913,0.001592,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176913,0.001592,-0.002250,0.249990,0,0);}
.m8c_c00040{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);}
.m15_c00040{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);}
.m87_c00040{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);}
.m102_c00040{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);}
.m75_c00040{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);}
.m28_c00040{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);}
.mec_c00040{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);}
.m95_c00040{transform:matrix(0.178528,0.001607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178528,0.001607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178528,0.001607,-0.002250,0.249990,0,0);}
.m39_c00040{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);}
.m64_c00040{transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{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);}
.m30_c00040{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);}
.m47_c00040{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);}
.m66_c00040{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);}
.mca_c00040{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);}
.md2_c00040{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);}
.m11_c00040{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);}
.m86_c00040{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);}
.m9d_c00040{transform:matrix(0.181868,0.001637,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181868,0.001637,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181868,0.001637,-0.002250,0.249990,0,0);}
.m4a_c00040{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);}
.m3f_c00040{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);}
.m56_c00040{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);}
.m17_c00040{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);}
.ma1_c00040{transform:matrix(0.183593,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183593,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183593,0.001652,-0.002250,0.249990,0,0);}
.ma7_c00040{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);}
.m67_c00040{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_c00040{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);}
.m10_c00040{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);}
.m88_c00040{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);}
.m9f_c00040{transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);}
.m49_c00040{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);}
.mb2_c00040{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);}
.mc4_c00040{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);}
.m33_c00040{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);}
.m7a_c00040{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_c00040{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);}
.m6b_c00040{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);}
.m36_c00040{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);}
.mc8_c00040{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);}
.m7f_c00040{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);}
.m3a_c00040{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);}
.ma6_c00040{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);}
.mb_c00040{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);}
.m35_c00040{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);}
.mee_c00040{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);}
.m1a_c00040{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);}
.mfc_c00040{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);}
.m82_c00040{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);}
.me_c00040{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);}
.m45_c00040{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);}
.md9_c00040{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);}
.m5f_c00040{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);}
.m98_c00040{transform:matrix(0.193082,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193082,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193082,0.001738,-0.002250,0.249990,0,0);}
.mf8_c00040{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);}
.mf1_c00040{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);}
.mb8_c00040{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);}
.m94_c00040{transform:matrix(0.194397,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194397,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194397,0.001750,-0.002250,0.249990,0,0);}
.mc3_c00040{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);}
.meb_c00040{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);}
.ma9_c00040{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);}
.mb4_c00040{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);}
.me9_c00040{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);}
.m6a_c00040{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_c00040{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);}
.m97_c00040{transform:matrix(0.197562,0.001778,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197562,0.001778,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197562,0.001778,-0.002250,0.249990,0,0);}
.m3d_c00040{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);}
.mc2_c00040{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);}
.mc6_c00040{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);}
.mbb_c00040{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);}
.m7e_c00040{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);}
.mad_c00040{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m8f_c00040{transform:matrix(0.200132,0.001801,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200132,0.001801,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200132,0.001801,-0.002250,0.249990,0,0);}
.mf5_c00040{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);}
.m2f_c00040{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);}
.mdc_c00040{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);}
.md8_c00040{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);}
.m51_c00040{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);}
.m58_c00040{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);}
.mcb_c00040{transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);}
.mb3_c00040{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);}
.m78_c00040{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);}
.ma4_c00040{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);}
.ma3_c00040{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);}
.m14_c00040{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);}
.md7_c00040{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);}
.m62_c00040{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);}
.m79_c00040{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);}
.mae_c00040{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);}
.mbd_c00040{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);}
.m18_c00040{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);}
.mbe_c00040{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);}
.m9e_c00040{transform:matrix(0.206137,0.001855,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206137,0.001855,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206137,0.001855,-0.002250,0.249990,0,0);}
.m68_c00040{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);}
.mb1_c00040{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);}
.m5e_c00040{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);}
.mea_c00040{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);}
.m90_c00040{transform:matrix(0.206627,0.001860,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206627,0.001860,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206627,0.001860,-0.002250,0.249990,0,0);}
.m77_c00040{transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);}
.m6f_c00040{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);}
.mce_c00040{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);}
.mcf_c00040{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);}
.m83_c00040{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);}
.m91_c00040{transform:matrix(0.210221,0.001892,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210221,0.001892,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210221,0.001892,-0.002250,0.249990,0,0);}
.m2a_c00040{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);}
.mc0_c00040{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);}
.m27_c00040{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_c00040{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);}
.m69_c00040{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);}
.mc9_c00040{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);}
.m57_c00040{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);}
.m76_c00040{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);}
.m103_c00040{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);}
.mdb_c00040{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);}
.ma2_c00040{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);}
.maa_c00040{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);}
.md0_c00040{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);}
.me7_c00040{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);}
.mba_c00040{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);}
.m55_c00040{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);}
.m85_c00040{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);}
.me4_c00040{transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{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);}
.m21_c00040{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);}
.m32_c00040{transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);}
.m44_c00040{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);}
.mf4_c00040{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);}
.mc1_c00040{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);}
.m4_c00040{transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);}
.maf_c00040{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);}
.me1_c00040{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);}
.m9b_c00040{transform:matrix(0.224281,0.002019,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224281,0.002019,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224281,0.002019,-0.002250,0.249990,0,0);}
.m71_c00040{transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225840,0.000000,0.000000,0.250000,0,0);}
.m4c_c00040{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);}
.mf9_c00040{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);}
.m84_c00040{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);}
.mf7_c00040{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);}
.m9a_c00040{transform:matrix(0.228181,0.002054,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228181,0.002054,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228181,0.002054,-0.002250,0.249990,0,0);}
.m61_c00040{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);}
.m96_c00040{transform:matrix(0.229786,0.002068,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229786,0.002068,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229786,0.002068,-0.002250,0.249990,0,0);}
.m73_c00040{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);}
.mc7_c00040{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);}
.mdd_c00040{transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);}
.m8d_c00040{transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);}
.m16_c00040{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);}
.med_c00040{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);}
.me3_c00040{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.mac_c00040{transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238860,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{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);}
.m100_c00040{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);}
.m7_c00040{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);}
.mfa_c00040{transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);}
.m41_c00040{transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);}
.m6e_c00040{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);}
.m7c_c00040{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.mb5_c00040{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.m53_c00040{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);}
.md5_c00040{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);}
.m63_c00040{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.m93_c00040{transform:matrix(0.251010,0.002259,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251010,0.002259,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251010,0.002259,-0.002250,0.249990,0,0);}
.mc5_c00040{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.mf6_c00040{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);}
.m8e_c00040{transform:matrix(0.254495,0.002290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254495,0.002290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254495,0.002290,-0.002250,0.249990,0,0);}
.mfb_c00040{transform:matrix(0.255015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255015,0.000000,0.000000,0.250000,0,0);}
.mcd_c00040{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.mef_c00040{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);}
.m37_c00040{transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);}
.mab_c00040{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);}
.m81_c00040{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);}
.m2_c00040{transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);}
.mda_c00040{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);}
.m70_c00040{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);}
.mfd_c00040{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.ma8_c00040{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m80_c00040{transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);}
.m3b_c00040{transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);}
.mb0_c00040{transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);}
.mde_c00040{transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);}
.mf3_c00040{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.md4_c00040{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.291920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291920,0.000000,0.000000,0.250000,0,0);}
.m2d_c00040{transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300825,0.000000,0.000000,0.250000,0,0);}
.m105_c00040{transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00040{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);}
.m10a_c00040{transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);}
.mb7_c00040{transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333335,0.000000,0.000000,0.250000,0,0);}
.md3_c00040{transform:matrix(0.336435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336435,0.000000,0.000000,0.250000,0,0);}
.mff_c00040{transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);}
.m54_c00040{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);}
.me8_c00040{transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365090,0.000000,0.000000,0.250000,0,0);}
.m5b_c00040{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);}
.m4b_c00040{transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);}
.mf2_c00040{transform:matrix(0.371825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371825,0.000000,0.000000,0.250000,0,0);}
.md6_c00040{transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);}
.m5a_c00040{transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383290,0.000000,0.000000,0.250000,0,0);}
.m2c_c00040{transform:matrix(0.386060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386060,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387045,0.000000,0.000000,0.250000,0,0);}
.m101_c00040{transform:matrix(0.393595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393595,0.000000,0.000000,0.250000,0,0);}
.m109_c00040{transform:matrix(0.397070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397070,0.000000,0.000000,0.250000,0,0);}
.m43_c00040{transform:matrix(0.407721,0.005300,-0.003250,0.249979,0,0);-ms-transform:matrix(0.407721,0.005300,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.407721,0.005300,-0.003250,0.249979,0,0);}
.mfe_c00040{transform:matrix(0.420705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00040{transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00040{transform:matrix(0.441720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441720,0.000000,0.000000,0.250000,0,0);}
.m4d_c00040{transform:matrix(0.442665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00040{transform:matrix(0.448565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448565,0.000000,0.000000,0.250000,0,0);}
.m107_c00040{transform:matrix(0.475420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475420,0.000000,0.000000,0.250000,0,0);}
.m60_c00040{transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);}
.m4f_c00040{transform:matrix(0.506165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506165,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.532580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532580,0.000000,0.000000,0.250000,0,0);}
.m52_c00040{transform:matrix(0.552075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552075,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.576010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576010,0.000000,0.000000,0.250000,0,0);}
.mf0_c00040{transform:matrix(0.610200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610200,0.000000,0.000000,0.250000,0,0);}
.mbf_c00040{transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.628945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628945,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.653325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653325,0.000000,0.000000,0.250000,0,0);}
.m108_c00040{transform:matrix(0.736935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736935,0.000000,0.000000,0.250000,0,0);}
.m106_c00040{transform:matrix(0.737365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737365,0.000000,0.000000,0.250000,0,0);}
.m5d_c00040{transform:matrix(0.754520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754520,0.000000,0.000000,0.250000,0,0);}
.m4e_c00040{transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771765,0.000000,0.000000,0.250000,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;}
.fs0_c00040{font-size:32.550000px;}
.fs13_c00040{font-size:45.150000px;}
.fs16_c00040{font-size:47.250000px;}
.fs11_c00040{font-size:48.300000px;}
.fs10_c00040{font-size:49.350000px;}
.fs12_c00040{font-size:51.450000px;}
.fs9_c00040{font-size:63.000000px;}
.fsc_c00040{font-size:67.200000px;}
.fsd_c00040{font-size:67.202722px;}
.fsb_c00040{font-size:68.250000px;}
.fsf_c00040{font-size:68.252764px;}
.fsa_c00040{font-size:69.300000px;}
.fs3_c00040{font-size:70.350000px;}
.fse_c00040{font-size:70.352849px;}
.fs4_c00040{font-size:71.400000px;}
.fs2_c00040{font-size:72.450000px;}
.fs6_c00040{font-size:73.500000px;}
.fs5_c00040{font-size:74.550000px;}
.fs8_c00040{font-size:74.556299px;}
.fs7_c00040{font-size:76.650000px;}
.fs14_c00040{font-size:79.800000px;}
.fs15_c00040{font-size:92.400000px;}
.fs1_c00040{font-size:99.750000px;}
.y0_c00040{bottom:0.000000px;}
.y32_c00040{bottom:89.238000px;}
.y33_c00040{bottom:93.420000px;}
.y31_c00040{bottom:109.057500px;}
.y30_c00040{bottom:145.533000px;}
.y2f_c00040{bottom:163.890000px;}
.y2e_c00040{bottom:180.922500px;}
.y2d_c00040{bottom:198.390000px;}
.y2c_c00040{bottom:217.087500px;}
.y2b_c00040{bottom:234.630000px;}
.y29_c00040{bottom:270.548031px;}
.y25_c00040{bottom:270.548054px;}
.y28_c00040{bottom:270.548227px;}
.y26_c00040{bottom:270.548397px;}
.y24_c00040{bottom:270.548430px;}
.y2a_c00040{bottom:270.548435px;}
.y27_c00040{bottom:270.548591px;}
.y22_c00040{bottom:293.737388px;}
.y23_c00040{bottom:293.737551px;}
.y21_c00040{bottom:293.737901px;}
.y1f_c00040{bottom:293.738233px;}
.y20_c00040{bottom:293.738307px;}
.y1e_c00040{bottom:293.738640px;}
.y1d_c00040{bottom:315.926030px;}
.y1c_c00040{bottom:316.608522px;}
.y1b_c00040{bottom:316.948817px;}
.y1a_c00040{bottom:317.468755px;}
.y19_c00040{bottom:317.600300px;}
.y18_c00040{bottom:318.120346px;}
.y17_c00040{bottom:318.377846px;}
.y16_c00040{bottom:318.601500px;}
.y15_c00040{bottom:339.157500px;}
.y14_c00040{bottom:361.758000px;}
.y13_c00040{bottom:384.283500px;}
.y12_c00040{bottom:406.822500px;}
.y11_c00040{bottom:429.922500px;}
.y10_c00040{bottom:452.359500px;}
.yf_c00040{bottom:489.058500px;}
.ye_c00040{bottom:545.352000px;}
.yd_c00040{bottom:611.827500px;}
.yc_c00040{bottom:634.438500px;}
.yb_c00040{bottom:657.058629px;}
.ya_c00040{bottom:658.801500px;}
.y9_c00040{bottom:680.427000px;}
.y8_c00040{bottom:702.909000px;}
.y7_c00040{bottom:726.030000px;}
.y6_c00040{bottom:748.329000px;}
.y5_c00040{bottom:771.349500px;}
.y4_c00040{bottom:794.610000px;}
.y3_c00040{bottom:816.837000px;}
.y2_c00040{bottom:856.944000px;}
.y1_c00040{bottom:973.215000px;}
.h2_c00040{height:32.550000px;}
.h15_c00040{height:45.150000px;}
.h18_c00040{height:47.250000px;}
.h13_c00040{height:48.300000px;}
.h12_c00040{height:49.350000px;}
.h14_c00040{height:51.450000px;}
.hb_c00040{height:63.000000px;}
.he_c00040{height:67.200000px;}
.hf_c00040{height:67.202722px;}
.hd_c00040{height:68.250000px;}
.h11_c00040{height:68.252764px;}
.hc_c00040{height:69.300000px;}
.h5_c00040{height:70.350000px;}
.h10_c00040{height:70.352849px;}
.h6_c00040{height:71.400000px;}
.h4_c00040{height:72.450000px;}
.h8_c00040{height:73.500000px;}
.h7_c00040{height:74.550000px;}
.ha_c00040{height:74.556299px;}
.h9_c00040{height:76.650000px;}
.h16_c00040{height:79.800000px;}
.h17_c00040{height:92.400000px;}
.h3_c00040{height:99.750000px;}
.h1_c00040{height:1005.000000px;}
.h0_c00040{height:1005.150000px;}
.w0_c00040{width:732.750000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:78.300000px;}
.x97_c00040{left:79.650000px;}
.x98_c00040{left:92.880000px;}
.x6c_c00040{left:104.490000px;}
.x4d_c00040{left:106.650000px;}
.x8f_c00040{left:113.670000px;}
.x9c_c00040{left:116.910000px;}
.x86_c00040{left:122.580000px;}
.x76_c00040{left:124.200000px;}
.x20_c00040{left:127.440000px;}
.x9e_c00040{left:128.790000px;}
.x6d_c00040{left:129.870000px;}
.x65_c00040{left:133.649171px;}
.x1b_c00040{left:137.970000px;}
.x21_c00040{left:139.860000px;}
.x32_c00040{left:140.940000px;}
.xb_c00040{left:142.560000px;}
.x12_c00040{left:146.610000px;}
.x6e_c00040{left:147.690000px;}
.x77_c00040{left:154.710000px;}
.x80_c00040{left:156.060000px;}
.x2c_c00040{left:162.540000px;}
.x62_c00040{left:165.684000px;}
.x87_c00040{left:168.750000px;}
.x90_c00040{left:171.180000px;}
.x3d_c00040{left:172.800000px;}
.x99_c00040{left:175.770000px;}
.x13_c00040{left:179.820000px;}
.x22_c00040{left:183.330000px;}
.x2_c00040{left:187.110000px;}
.x38_c00040{left:188.460000px;}
.x44_c00040{left:191.430000px;}
.x5e_c00040{left:194.670000px;}
.x5c_c00040{left:196.020000px;}
.x23_c00040{left:197.910000px;}
.xc_c00040{left:199.530000px;}
.x66_c00040{left:201.691678px;}
.x78_c00040{left:204.390000px;}
.x33_c00040{left:206.280000px;}
.x3e_c00040{left:215.460000px;}
.x24_c00040{left:218.700000px;}
.x2d_c00040{left:220.860000px;}
.x45_c00040{left:223.560000px;}
.x91_c00040{left:225.180000px;}
.x58_c00040{left:229.770000px;}
.xd_c00040{left:233.820000px;}
.x3_c00040{left:235.980000px;}
.x88_c00040{left:239.220000px;}
.x67_c00040{left:240.573324px;}
.x14_c00040{left:243.540000px;}
.x79_c00040{left:244.890000px;}
.x6f_c00040{left:247.590000px;}
.x4e_c00040{left:249.750000px;}
.x2e_c00040{left:251.640000px;}
.x3f_c00040{left:252.990000px;}
.x25_c00040{left:254.340000px;}
.xa2_c00040{left:255.690000px;}
.x15_c00040{left:257.040000px;}
.x4_c00040{left:260.280000px;}
.x4b_c00040{left:261.360000px;}
.x9f_c00040{left:264.870000px;}
.x63_c00040{left:266.694000px;}
.x39_c00040{left:273.780000px;}
.xe_c00040{left:276.480000px;}
.x9a_c00040{left:278.100000px;}
.x37_c00040{left:281.374500px;}
.x2a_c00040{left:285.390000px;}
.x7a_c00040{left:287.550000px;}
.x9b_c00040{left:288.900000px;}
.x5_c00040{left:290.790000px;}
.x2f_c00040{left:292.140000px;}
.x1c_c00040{left:293.490000px;}
.x52_c00040{left:294.570000px;}
.x81_c00040{left:296.190000px;}
.x9d_c00040{left:298.080000px;}
.x46_c00040{left:299.970000px;}
.x70_c00040{left:301.050000px;}
.x16_c00040{left:303.750000px;}
.x89_c00040{left:305.640000px;}
.x34_c00040{left:306.720000px;}
.x5f_c00040{left:308.070000px;}
.x6a_c00040{left:312.667473px;}
.x6_c00040{left:314.550000px;}
.x47_c00040{left:315.630000px;}
.x3a_c00040{left:321.300000px;}
.x53_c00040{left:323.730000px;}
.x17_c00040{left:327.780000px;}
.x68_c00040{left:329.137493px;}
.x26_c00040{left:330.480000px;}
.x48_c00040{left:332.370000px;}
.x4f_c00040{left:336.150000px;}
.x6b_c00040{left:338.858092px;}
.x59_c00040{left:340.740000px;}
.x60_c00040{left:345.600000px;}
.x82_c00040{left:348.300000px;}
.x92_c00040{left:349.380000px;}
.x18_c00040{left:350.460000px;}
.x5d_c00040{left:351.540000px;}
.x40_c00040{left:352.620000px;}
.xf_c00040{left:354.240000px;}
.x54_c00040{left:357.210000px;}
.x7_c00040{left:361.530000px;}
.x50_c00040{left:365.310000px;}
.x3b_c00040{left:368.550000px;}
.x1d_c00040{left:372.600000px;}
.x4c_c00040{left:375.840000px;}
.x69_c00040{left:381.790258px;}
.x8a_c00040{left:384.210000px;}
.x71_c00040{left:386.100000px;}
.x27_c00040{left:387.990000px;}
.x30_c00040{left:390.150000px;}
.x41_c00040{left:392.040000px;}
.x19_c00040{left:396.360000px;}
.x3c_c00040{left:398.250000px;}
.x8_c00040{left:402.300000px;}
.x49_c00040{left:403.650000px;}
.x55_c00040{left:407.970000px;}
.x83_c00040{left:409.320000px;}
.x9_c00040{left:416.340000px;}
.x61_c00040{left:419.040000px;}
.x42_c00040{left:420.660000px;}
.x4a_c00040{left:421.740000px;}
.x51_c00040{left:426.600000px;}
.x84_c00040{left:428.490000px;}
.x28_c00040{left:429.570000px;}
.x8b_c00040{left:433.080000px;}
.x1a_c00040{left:435.780000px;}
.x64_c00040{left:438.108000px;}
.x10_c00040{left:440.640000px;}
.xa0_c00040{left:442.260000px;}
.x43_c00040{left:443.610000px;}
.x56_c00040{left:445.500000px;}
.x29_c00040{left:448.740000px;}
.x31_c00040{left:453.600000px;}
.x93_c00040{left:455.490000px;}
.x8c_c00040{left:462.510000px;}
.x11_c00040{left:464.400000px;}
.x35_c00040{left:468.450000px;}
.x5a_c00040{left:470.610000px;}
.x7b_c00040{left:473.040000px;}
.x72_c00040{left:477.630000px;}
.x2b_c00040{left:479.790000px;}
.x85_c00040{left:490.320000px;}
.x73_c00040{left:497.070000px;}
.x7c_c00040{left:509.220000px;}
.x36_c00040{left:511.110000px;}
.xa1_c00040{left:514.080000px;}
.x1e_c00040{left:522.720000px;}
.x7d_c00040{left:526.770000px;}
.x74_c00040{left:527.850000px;}
.x94_c00040{left:531.360000px;}
.x5b_c00040{left:533.790000px;}
.x8d_c00040{left:538.110000px;}
.x57_c00040{left:542.430000px;}
.xa_c00040{left:547.020000px;}
.x95_c00040{left:552.690000px;}
.x1f_c00040{left:558.360000px;}
.x7e_c00040{left:563.220000px;}
.x96_c00040{left:598.860000px;}
.x7f_c00040{left:601.560000px;}
.x75_c00040{left:603.180000px;}
.x8e_c00040{left:613.710000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.fs0_c00040{font-size:28.933333pt;}
.fs13_c00040{font-size:40.133333pt;}
.fs16_c00040{font-size:42.000000pt;}
.fs11_c00040{font-size:42.933333pt;}
.fs10_c00040{font-size:43.866667pt;}
.fs12_c00040{font-size:45.733333pt;}
.fs9_c00040{font-size:56.000000pt;}
.fsc_c00040{font-size:59.733333pt;}
.fsd_c00040{font-size:59.735752pt;}
.fsb_c00040{font-size:60.666667pt;}
.fsf_c00040{font-size:60.669124pt;}
.fsa_c00040{font-size:61.600000pt;}
.fs3_c00040{font-size:62.533333pt;}
.fse_c00040{font-size:62.535866pt;}
.fs4_c00040{font-size:63.466667pt;}
.fs2_c00040{font-size:64.400000pt;}
.fs6_c00040{font-size:65.333333pt;}
.fs5_c00040{font-size:66.266667pt;}
.fs8_c00040{font-size:66.272266pt;}
.fs7_c00040{font-size:68.133333pt;}
.fs14_c00040{font-size:70.933333pt;}
.fs15_c00040{font-size:82.133333pt;}
.fs1_c00040{font-size:88.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y32_c00040{bottom:79.322667pt;}
.y33_c00040{bottom:83.040000pt;}
.y31_c00040{bottom:96.940000pt;}
.y30_c00040{bottom:129.362667pt;}
.y2f_c00040{bottom:145.680000pt;}
.y2e_c00040{bottom:160.820000pt;}
.y2d_c00040{bottom:176.346667pt;}
.y2c_c00040{bottom:192.966667pt;}
.y2b_c00040{bottom:208.560000pt;}
.y29_c00040{bottom:240.487139pt;}
.y25_c00040{bottom:240.487159pt;}
.y28_c00040{bottom:240.487313pt;}
.y26_c00040{bottom:240.487464pt;}
.y24_c00040{bottom:240.487493pt;}
.y2a_c00040{bottom:240.487497pt;}
.y27_c00040{bottom:240.487636pt;}
.y22_c00040{bottom:261.099900pt;}
.y23_c00040{bottom:261.100045pt;}
.y21_c00040{bottom:261.100356pt;}
.y1f_c00040{bottom:261.100652pt;}
.y20_c00040{bottom:261.100717pt;}
.y1e_c00040{bottom:261.101013pt;}
.y1d_c00040{bottom:280.823137pt;}
.y1c_c00040{bottom:281.429797pt;}
.y1b_c00040{bottom:281.732281pt;}
.y1a_c00040{bottom:282.194449pt;}
.y19_c00040{bottom:282.311377pt;}
.y18_c00040{bottom:282.773641pt;}
.y17_c00040{bottom:283.002529pt;}
.y16_c00040{bottom:283.201333pt;}
.y15_c00040{bottom:301.473333pt;}
.y14_c00040{bottom:321.562667pt;}
.y13_c00040{bottom:341.585333pt;}
.y12_c00040{bottom:361.620000pt;}
.y11_c00040{bottom:382.153333pt;}
.y10_c00040{bottom:402.097333pt;}
.yf_c00040{bottom:434.718667pt;}
.ye_c00040{bottom:484.757333pt;}
.yd_c00040{bottom:543.846667pt;}
.yc_c00040{bottom:563.945333pt;}
.yb_c00040{bottom:584.052115pt;}
.ya_c00040{bottom:585.601333pt;}
.y9_c00040{bottom:604.824000pt;}
.y8_c00040{bottom:624.808000pt;}
.y7_c00040{bottom:645.360000pt;}
.y6_c00040{bottom:665.181333pt;}
.y5_c00040{bottom:685.644000pt;}
.y4_c00040{bottom:706.320000pt;}
.y3_c00040{bottom:726.077333pt;}
.y2_c00040{bottom:761.728000pt;}
.y1_c00040{bottom:865.080000pt;}
.h2_c00040{height:28.933333pt;}
.h15_c00040{height:40.133333pt;}
.h18_c00040{height:42.000000pt;}
.h13_c00040{height:42.933333pt;}
.h12_c00040{height:43.866667pt;}
.h14_c00040{height:45.733333pt;}
.hb_c00040{height:56.000000pt;}
.he_c00040{height:59.733333pt;}
.hf_c00040{height:59.735752pt;}
.hd_c00040{height:60.666667pt;}
.h11_c00040{height:60.669124pt;}
.hc_c00040{height:61.600000pt;}
.h5_c00040{height:62.533333pt;}
.h10_c00040{height:62.535866pt;}
.h6_c00040{height:63.466667pt;}
.h4_c00040{height:64.400000pt;}
.h8_c00040{height:65.333333pt;}
.h7_c00040{height:66.266667pt;}
.ha_c00040{height:66.272266pt;}
.h9_c00040{height:68.133333pt;}
.h16_c00040{height:70.933333pt;}
.h17_c00040{height:82.133333pt;}
.h3_c00040{height:88.666667pt;}
.h1_c00040{height:893.333333pt;}
.h0_c00040{height:893.466667pt;}
.w0_c00040{width:651.333333pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:69.600000pt;}
.x97_c00040{left:70.800000pt;}
.x98_c00040{left:82.560000pt;}
.x6c_c00040{left:92.880000pt;}
.x4d_c00040{left:94.800000pt;}
.x8f_c00040{left:101.040000pt;}
.x9c_c00040{left:103.920000pt;}
.x86_c00040{left:108.960000pt;}
.x76_c00040{left:110.400000pt;}
.x20_c00040{left:113.280000pt;}
.x9e_c00040{left:114.480000pt;}
.x6d_c00040{left:115.440000pt;}
.x65_c00040{left:118.799263pt;}
.x1b_c00040{left:122.640000pt;}
.x21_c00040{left:124.320000pt;}
.x32_c00040{left:125.280000pt;}
.xb_c00040{left:126.720000pt;}
.x12_c00040{left:130.320000pt;}
.x6e_c00040{left:131.280000pt;}
.x77_c00040{left:137.520000pt;}
.x80_c00040{left:138.720000pt;}
.x2c_c00040{left:144.480000pt;}
.x62_c00040{left:147.274667pt;}
.x87_c00040{left:150.000000pt;}
.x90_c00040{left:152.160000pt;}
.x3d_c00040{left:153.600000pt;}
.x99_c00040{left:156.240000pt;}
.x13_c00040{left:159.840000pt;}
.x22_c00040{left:162.960000pt;}
.x2_c00040{left:166.320000pt;}
.x38_c00040{left:167.520000pt;}
.x44_c00040{left:170.160000pt;}
.x5e_c00040{left:173.040000pt;}
.x5c_c00040{left:174.240000pt;}
.x23_c00040{left:175.920000pt;}
.xc_c00040{left:177.360000pt;}
.x66_c00040{left:179.281492pt;}
.x78_c00040{left:181.680000pt;}
.x33_c00040{left:183.360000pt;}
.x3e_c00040{left:191.520000pt;}
.x24_c00040{left:194.400000pt;}
.x2d_c00040{left:196.320000pt;}
.x45_c00040{left:198.720000pt;}
.x91_c00040{left:200.160000pt;}
.x58_c00040{left:204.240000pt;}
.xd_c00040{left:207.840000pt;}
.x3_c00040{left:209.760000pt;}
.x88_c00040{left:212.640000pt;}
.x67_c00040{left:213.842955pt;}
.x14_c00040{left:216.480000pt;}
.x79_c00040{left:217.680000pt;}
.x6f_c00040{left:220.080000pt;}
.x4e_c00040{left:222.000000pt;}
.x2e_c00040{left:223.680000pt;}
.x3f_c00040{left:224.880000pt;}
.x25_c00040{left:226.080000pt;}
.xa2_c00040{left:227.280000pt;}
.x15_c00040{left:228.480000pt;}
.x4_c00040{left:231.360000pt;}
.x4b_c00040{left:232.320000pt;}
.x9f_c00040{left:235.440000pt;}
.x63_c00040{left:237.061333pt;}
.x39_c00040{left:243.360000pt;}
.xe_c00040{left:245.760000pt;}
.x9a_c00040{left:247.200000pt;}
.x37_c00040{left:250.110667pt;}
.x2a_c00040{left:253.680000pt;}
.x7a_c00040{left:255.600000pt;}
.x9b_c00040{left:256.800000pt;}
.x5_c00040{left:258.480000pt;}
.x2f_c00040{left:259.680000pt;}
.x1c_c00040{left:260.880000pt;}
.x52_c00040{left:261.840000pt;}
.x81_c00040{left:263.280000pt;}
.x9d_c00040{left:264.960000pt;}
.x46_c00040{left:266.640000pt;}
.x70_c00040{left:267.600000pt;}
.x16_c00040{left:270.000000pt;}
.x89_c00040{left:271.680000pt;}
.x34_c00040{left:272.640000pt;}
.x5f_c00040{left:273.840000pt;}
.x6a_c00040{left:277.926643pt;}
.x6_c00040{left:279.600000pt;}
.x47_c00040{left:280.560000pt;}
.x3a_c00040{left:285.600000pt;}
.x53_c00040{left:287.760000pt;}
.x17_c00040{left:291.360000pt;}
.x68_c00040{left:292.566660pt;}
.x26_c00040{left:293.760000pt;}
.x48_c00040{left:295.440000pt;}
.x4f_c00040{left:298.800000pt;}
.x6b_c00040{left:301.207193pt;}
.x59_c00040{left:302.880000pt;}
.x60_c00040{left:307.200000pt;}
.x82_c00040{left:309.600000pt;}
.x92_c00040{left:310.560000pt;}
.x18_c00040{left:311.520000pt;}
.x5d_c00040{left:312.480000pt;}
.x40_c00040{left:313.440000pt;}
.xf_c00040{left:314.880000pt;}
.x54_c00040{left:317.520000pt;}
.x7_c00040{left:321.360000pt;}
.x50_c00040{left:324.720000pt;}
.x3b_c00040{left:327.600000pt;}
.x1d_c00040{left:331.200000pt;}
.x4c_c00040{left:334.080000pt;}
.x69_c00040{left:339.369119pt;}
.x8a_c00040{left:341.520000pt;}
.x71_c00040{left:343.200000pt;}
.x27_c00040{left:344.880000pt;}
.x30_c00040{left:346.800000pt;}
.x41_c00040{left:348.480000pt;}
.x19_c00040{left:352.320000pt;}
.x3c_c00040{left:354.000000pt;}
.x8_c00040{left:357.600000pt;}
.x49_c00040{left:358.800000pt;}
.x55_c00040{left:362.640000pt;}
.x83_c00040{left:363.840000pt;}
.x9_c00040{left:370.080000pt;}
.x61_c00040{left:372.480000pt;}
.x42_c00040{left:373.920000pt;}
.x4a_c00040{left:374.880000pt;}
.x51_c00040{left:379.200000pt;}
.x84_c00040{left:380.880000pt;}
.x28_c00040{left:381.840000pt;}
.x8b_c00040{left:384.960000pt;}
.x1a_c00040{left:387.360000pt;}
.x64_c00040{left:389.429333pt;}
.x10_c00040{left:391.680000pt;}
.xa0_c00040{left:393.120000pt;}
.x43_c00040{left:394.320000pt;}
.x56_c00040{left:396.000000pt;}
.x29_c00040{left:398.880000pt;}
.x31_c00040{left:403.200000pt;}
.x93_c00040{left:404.880000pt;}
.x8c_c00040{left:411.120000pt;}
.x11_c00040{left:412.800000pt;}
.x35_c00040{left:416.400000pt;}
.x5a_c00040{left:418.320000pt;}
.x7b_c00040{left:420.480000pt;}
.x72_c00040{left:424.560000pt;}
.x2b_c00040{left:426.480000pt;}
.x85_c00040{left:435.840000pt;}
.x73_c00040{left:441.840000pt;}
.x7c_c00040{left:452.640000pt;}
.x36_c00040{left:454.320000pt;}
.xa1_c00040{left:456.960000pt;}
.x1e_c00040{left:464.640000pt;}
.x7d_c00040{left:468.240000pt;}
.x74_c00040{left:469.200000pt;}
.x94_c00040{left:472.320000pt;}
.x5b_c00040{left:474.480000pt;}
.x8d_c00040{left:478.320000pt;}
.x57_c00040{left:482.160000pt;}
.xa_c00040{left:486.240000pt;}
.x95_c00040{left:491.280000pt;}
.x1f_c00040{left:496.320000pt;}
.x7e_c00040{left:500.640000pt;}
.x96_c00040{left:532.320000pt;}
.x7f_c00040{left:534.720000pt;}
.x75_c00040{left:536.160000pt;}
.x8e_c00040{left:545.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m51_c00041{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);}
.m10_c00041{transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);}
.mc4_c00041{transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);}
.mac_c00041{transform:matrix(0.111162,0.002001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.111162,0.002001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.111162,0.002001,-0.004499,0.249960,0,0);}
.mee_c00041{transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);}
.md7_c00041{transform:matrix(0.127020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127020,0.000000,0.000000,0.250000,0,0);}
.ma4_c00041{transform:matrix(0.129887,0.002468,-0.004749,0.249955,0,0);-ms-transform:matrix(0.129887,0.002468,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.129887,0.002468,-0.004749,0.249955,0,0);}
.m5f_c00041{transform:matrix(0.134778,0.002156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134778,0.002156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134778,0.002156,-0.003999,0.249968,0,0);}
.m4d_c00041{transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);}
.m101_c00041{transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);}
.m34_c00041{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);}
.m12b_c00041{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);}
.ma5_c00041{transform:matrix(0.147331,0.002652,-0.004499,0.249960,0,0);-ms-transform:matrix(0.147331,0.002652,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.147331,0.002652,-0.004499,0.249960,0,0);}
.m35_c00041{transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{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);}
.m2d_c00041{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);}
.m13a_c00041{transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{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);}
.m93_c00041{transform:matrix(0.153313,0.002606,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153313,0.002606,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153313,0.002606,-0.004249,0.249964,0,0);}
.m83_c00041{transform:matrix(0.154039,0.003081,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154039,0.003081,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154039,0.003081,-0.004999,0.249950,0,0);}
.m2f_c00041{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{transform:matrix(0.155655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155655,0.000000,0.000000,0.250000,0,0);}
.md5_c00041{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);}
.m11d_c00041{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);}
.mf2_c00041{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);}
.m53_c00041{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);}
.m7c_c00041{transform:matrix(0.158213,0.003164,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158213,0.003164,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158213,0.003164,-0.004999,0.249950,0,0);}
.mdf_c00041{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);}
.m32_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);}
.mf3_c00041{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);}
.m85_c00041{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);}
.mca_c00041{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_c00041{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);}
.m4f_c00041{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m31_c00041{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);}
.mbb_c00041{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);}
.m58_c00041{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);}
.m23_c00041{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);}
.mb3_c00041{transform:matrix(0.166194,0.002327,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166194,0.002327,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166194,0.002327,-0.003500,0.249976,0,0);}
.mf4_c00041{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);}
.m4e_c00041{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);}
.m86_c00041{transform:matrix(0.166977,0.003340,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166977,0.003340,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166977,0.003340,-0.004999,0.249950,0,0);}
.m11f_c00041{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);}
.md3_c00041{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);}
.mf5_c00041{transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);}
.med_c00041{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);}
.m3c_c00041{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);}
.m43_c00041{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);}
.mfa_c00041{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);}
.m81_c00041{transform:matrix(0.169456,0.003389,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169456,0.003389,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169456,0.003389,-0.004999,0.249950,0,0);}
.m49_c00041{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);}
.ma1_c00041{transform:matrix(0.170839,0.003246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170839,0.003246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170839,0.003246,-0.004749,0.249955,0,0);}
.m30_c00041{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);}
.m6e_c00041{transform:matrix(0.171933,0.002751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171933,0.002751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171933,0.002751,-0.003999,0.249968,0,0);}
.m8c_c00041{transform:matrix(0.172026,0.003441,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172026,0.003441,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172026,0.003441,-0.004999,0.249950,0,0);}
.m55_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);}
.m8b_c00041{transform:matrix(0.172221,0.003444,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172221,0.003444,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172221,0.003444,-0.004999,0.249950,0,0);}
.m73_c00041{transform:matrix(0.172313,0.002757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172313,0.002757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172313,0.002757,-0.003999,0.249968,0,0);}
.me4_c00041{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m70_c00041{transform:matrix(0.173013,0.002768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173013,0.002768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173013,0.002768,-0.003999,0.249968,0,0);}
.m8_c00041{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);}
.me8_c00041{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);}
.m67_c00041{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);}
.m33_c00041{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);}
.m9_c00041{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);}
.mf9_c00041{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);}
.m13_c00041{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);}
.m50_c00041{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);}
.m125_c00041{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);}
.m48_c00041{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);}
.me_c00041{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);}
.m98_c00041{transform:matrix(0.178269,0.003031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178269,0.003031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178269,0.003031,-0.004249,0.249964,0,0);}
.m9e_c00041{transform:matrix(0.178698,0.003395,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178698,0.003395,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178698,0.003395,-0.004749,0.249955,0,0);}
.mfb_c00041{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);}
.maf_c00041{transform:matrix(0.179022,0.002506,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179022,0.002506,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179022,0.002506,-0.003500,0.249976,0,0);}
.meb_c00041{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);}
.m11b_c00041{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);}
.m9c_c00041{transform:matrix(0.181562,0.003450,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181562,0.003450,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181562,0.003450,-0.004749,0.249955,0,0);}
.mf1_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);}
.m45_c00041{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);}
.m8a_c00041{transform:matrix(0.182469,0.003649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182469,0.003649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182469,0.003649,-0.004999,0.249950,0,0);}
.m12_c00041{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);}
.m6f_c00041{transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);}
.m71_c00041{transform:matrix(0.182682,0.002923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182682,0.002923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182682,0.002923,-0.003999,0.249968,0,0);}
.m91_c00041{transform:matrix(0.182974,0.003111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182974,0.003111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182974,0.003111,-0.004249,0.249964,0,0);}
.mb2_c00041{transform:matrix(0.183062,0.002563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183062,0.002563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183062,0.002563,-0.003500,0.249976,0,0);}
.m8e_c00041{transform:matrix(0.183349,0.003117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183349,0.003117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183349,0.003117,-0.004249,0.249964,0,0);}
.m92_c00041{transform:matrix(0.183573,0.003121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183573,0.003121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183573,0.003121,-0.004249,0.249964,0,0);}
.m10d_c00041{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);}
.me5_c00041{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);}
.maa_c00041{transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);}
.m3d_c00041{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);}
.me6_c00041{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);}
.md6_c00041{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);}
.m10c_c00041{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_c00041{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);}
.m7d_c00041{transform:matrix(0.184523,0.003690,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184523,0.003690,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184523,0.003690,-0.004999,0.249950,0,0);}
.m84_c00041{transform:matrix(0.184618,0.003692,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184618,0.003692,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184618,0.003692,-0.004999,0.249950,0,0);}
.m76_c00041{transform:matrix(0.184664,0.002770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184664,0.002770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184664,0.002770,-0.003750,0.249972,0,0);}
.m42_c00041{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);}
.m2b_c00041{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);}
.m82_c00041{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);}
.m5_c00041{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);}
.m75_c00041{transform:matrix(0.186209,0.002793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186209,0.002793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186209,0.002793,-0.003750,0.249972,0,0);}
.m6d_c00041{transform:matrix(0.186406,0.002982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186406,0.002982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186406,0.002982,-0.003999,0.249968,0,0);}
.m90_c00041{transform:matrix(0.186893,0.003177,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186893,0.003177,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186893,0.003177,-0.004249,0.249964,0,0);}
.ma3_c00041{transform:matrix(0.186946,0.003552,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186946,0.003552,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186946,0.003552,-0.004749,0.249955,0,0);}
.m77_c00041{transform:matrix(0.187469,0.002812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187469,0.002812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187469,0.002812,-0.003750,0.249972,0,0);}
.mbd_c00041{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);}
.m20_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);}
.mea_c00041{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);}
.m89_c00041{transform:matrix(0.188757,0.003775,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188757,0.003775,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188757,0.003775,-0.004999,0.249950,0,0);}
.m2a_c00041{transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);}
.m9a_c00041{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);}
.m120_c00041{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);}
.m56_c00041{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);}
.mc1_c00041{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);}
.m5c_c00041{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);}
.mb7_c00041{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);}
.m87_c00041{transform:matrix(0.190022,0.003800,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190022,0.003800,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190022,0.003800,-0.004999,0.249950,0,0);}
.m7a_c00041{transform:matrix(0.190904,0.002864,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190904,0.002864,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190904,0.002864,-0.003750,0.249972,0,0);}
.me9_c00041{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);}
.m39_c00041{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);}
.ma0_c00041{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);}
.mb_c00041{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);}
.m2c_c00041{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);}
.m9d_c00041{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);}
.mf_c00041{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);}
.mde_c00041{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);}
.m79_c00041{transform:matrix(0.192703,0.002891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192703,0.002891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192703,0.002891,-0.003750,0.249972,0,0);}
.m74_c00041{transform:matrix(0.192815,0.003085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192815,0.003085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192815,0.003085,-0.003999,0.249968,0,0);}
.m26_c00041{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);}
.m37_c00041{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);}
.md_c00041{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);}
.m19_c00041{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);}
.m68_c00041{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);}
.me0_c00041{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);}
.mc_c00041{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);}
.m78_c00041{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);}
.m105_c00041{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);}
.mb0_c00041{transform:matrix(0.194291,0.002720,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194291,0.002720,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194291,0.002720,-0.003500,0.249976,0,0);}
.m54_c00041{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);}
.m61_c00041{transform:matrix(0.195420,0.003127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195420,0.003127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195420,0.003127,-0.003999,0.249968,0,0);}
.mb4_c00041{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);}
.m22_c00041{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);}
.mc8_c00041{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);}
.mcf_c00041{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);}
.m21_c00041{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);}
.mc3_c00041{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);}
.m36_c00041{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);}
.mcb_c00041{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);}
.me2_c00041{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);}
.m106_c00041{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);}
.m47_c00041{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);}
.m57_c00041{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);}
.m111_c00041{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);}
.m8d_c00041{transform:matrix(0.200521,0.003409,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200521,0.003409,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200521,0.003409,-0.004249,0.249964,0,0);}
.m6b_c00041{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);}
.m88_c00041{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);}
.m99_c00041{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);}
.m4_c00041{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);}
.mc0_c00041{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);}
.m3a_c00041{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);}
.m97_c00041{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);}
.m1f_c00041{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);}
.m7f_c00041{transform:matrix(0.201905,0.004038,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201905,0.004038,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201905,0.004038,-0.004999,0.249950,0,0);}
.m29_c00041{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);}
.m121_c00041{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);}
.ma9_c00041{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);}
.m1e_c00041{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);}
.md0_c00041{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);}
.m6c_c00041{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);}
.mb5_c00041{transform:matrix(0.202755,0.002839,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202755,0.002839,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202755,0.002839,-0.003500,0.249976,0,0);}
.m52_c00041{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);}
.m117_c00041{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{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);}
.m11e_c00041{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_c00041{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);}
.mdd_c00041{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);}
.m100_c00041{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);}
.m9f_c00041{transform:matrix(0.205363,0.003902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205363,0.003902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205363,0.003902,-0.004749,0.249955,0,0);}
.mef_c00041{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);}
.mc9_c00041{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);}
.m7_c00041{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);}
.m95_c00041{transform:matrix(0.207570,0.003529,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207570,0.003529,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207570,0.003529,-0.004249,0.249964,0,0);}
.m46_c00041{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);}
.m94_c00041{transform:matrix(0.208475,0.003544,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208475,0.003544,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208475,0.003544,-0.004249,0.249964,0,0);}
.m40_c00041{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);}
.m118_c00041{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);}
.m9b_c00041{transform:matrix(0.209660,0.003564,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209660,0.003564,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209660,0.003564,-0.004249,0.249964,0,0);}
.m7e_c00041{transform:matrix(0.209758,0.004195,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209758,0.004195,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209758,0.004195,-0.004999,0.249950,0,0);}
.m16_c00041{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m80_c00041{transform:matrix(0.211298,0.004226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211298,0.004226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211298,0.004226,-0.004999,0.249950,0,0);}
.m124_c00041{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);}
.m7b_c00041{transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);}
.mf8_c00041{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);}
.m6_c00041{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);}
.m112_c00041{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);}
.m14_c00041{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);}
.ma6_c00041{transform:matrix(0.213945,0.003851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213945,0.003851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213945,0.003851,-0.004499,0.249960,0,0);}
.mad_c00041{transform:matrix(0.213959,0.002995,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213959,0.002995,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213959,0.002995,-0.003500,0.249976,0,0);}
.m41_c00041{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);}
.m115_c00041{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);}
.mc6_c00041{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);}
.m17_c00041{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);}
.me3_c00041{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);}
.m107_c00041{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);}
.m8f_c00041{transform:matrix(0.216289,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216289,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216289,0.003677,-0.004249,0.249964,0,0);}
.mff_c00041{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);}
.mcd_c00041{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);}
.m116_c00041{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);}
.m110_c00041{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);}
.m128_c00041{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{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);}
.mfd_c00041{transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);}
.md1_c00041{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);}
.m4c_c00041{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);}
.m1b_c00041{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);}
.ma2_c00041{transform:matrix(0.218930,0.004160,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218930,0.004160,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218930,0.004160,-0.004749,0.249955,0,0);}
.m5a_c00041{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);}
.m0_c00041{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);}
.m6a_c00041{transform:matrix(0.219977,0.003520,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219977,0.003520,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219977,0.003520,-0.003999,0.249968,0,0);}
.m28_c00041{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);}
.mbf_c00041{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);}
.mce_c00041{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);}
.m96_c00041{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);}
.m1a_c00041{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);}
.m60_c00041{transform:matrix(0.221362,0.003542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221362,0.003542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221362,0.003542,-0.003999,0.249968,0,0);}
.mdc_c00041{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);}
.ma8_c00041{transform:matrix(0.223249,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223249,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223249,0.004018,-0.004499,0.249960,0,0);}
.mfc_c00041{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);}
.m5b_c00041{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);}
.m10a_c00041{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);}
.m25_c00041{transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);}
.m122_c00041{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);}
.m131_c00041{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);}
.m3_c00041{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);}
.m12c_c00041{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);}
.m104_c00041{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);}
.m69_c00041{transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);}
.m113_c00041{transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);}
.m10b_c00041{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);}
.m59_c00041{transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);}
.mba_c00041{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);}
.m10e_c00041{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);}
.ma_c00041{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);}
.m10f_c00041{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);}
.ma7_c00041{transform:matrix(0.232922,0.004193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232922,0.004193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232922,0.004193,-0.004499,0.249960,0,0);}
.me7_c00041{transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00041{transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);}
.m123_c00041{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);}
.m1_c00041{transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);}
.m72_c00041{transform:matrix(0.239034,0.003825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239034,0.003825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239034,0.003825,-0.003999,0.249968,0,0);}
.m64_c00041{transform:matrix(0.240479,0.003848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240479,0.003848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240479,0.003848,-0.003999,0.249968,0,0);}
.m119_c00041{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);}
.md8_c00041{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);}
.m24_c00041{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.mab_c00041{transform:matrix(0.245455,0.004418,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245455,0.004418,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245455,0.004418,-0.004499,0.249960,0,0);}
.mdb_c00041{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);}
.m133_c00041{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.mb9_c00041{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.mc2_c00041{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);}
.mf7_c00041{transform:matrix(0.262685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262685,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267020,0.000000,0.000000,0.250000,0,0);}
.m102_c00041{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);}
.m127_c00041{transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271460,0.000000,0.000000,0.250000,0,0);}
.m109_c00041{transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274015,0.000000,0.000000,0.250000,0,0);}
.mf0_c00041{transform:matrix(0.275615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275615,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{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);}
.m138_c00041{transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);}
.mae_c00041{transform:matrix(0.288407,0.004038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288407,0.004038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288407,0.004038,-0.003500,0.249976,0,0);}
.m139_c00041{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);}
.m12e_c00041{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);}
.m62_c00041{transform:matrix(0.291993,0.004672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291993,0.004672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291993,0.004672,-0.003999,0.249968,0,0);}
.m129_c00041{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);}
.m114_c00041{transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);}
.m103_c00041{transform:matrix(0.307605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307605,0.000000,0.000000,0.250000,0,0);}
.mc7_c00041{transform:matrix(0.321960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321960,0.000000,0.000000,0.250000,0,0);}
.mf6_c00041{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);}
.m2_c00041{transform:matrix(0.329910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329910,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338230,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.345796,0.005533,-0.003999,0.249968,0,0);-ms-transform:matrix(0.345796,0.005533,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.345796,0.005533,-0.003999,0.249968,0,0);}
.m11c_c00041{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.m137_c00041{transform:matrix(0.351940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351940,0.000000,0.000000,0.250000,0,0);}
.mb6_c00041{transform:matrix(0.368589,0.005160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.368589,0.005160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.368589,0.005160,-0.003500,0.249976,0,0);}
.mcc_c00041{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);}
.mfe_c00041{transform:matrix(0.378020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378020,0.000000,0.000000,0.250000,0,0);}
.m132_c00041{transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391270,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.392810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392810,0.000000,0.000000,0.250000,0,0);}
.m65_c00041{transform:matrix(0.401559,0.006425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401559,0.006425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401559,0.006425,-0.003999,0.249968,0,0);}
.md9_c00041{transform:matrix(0.401705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401705,0.000000,0.000000,0.250000,0,0);}
.m135_c00041{transform:matrix(0.411155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411155,0.000000,0.000000,0.250000,0,0);}
.m12d_c00041{transform:matrix(0.433430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433430,0.000000,0.000000,0.250000,0,0);}
.md4_c00041{transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);}
.mda_c00041{transform:matrix(0.494085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00041{transform:matrix(0.520260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520260,0.000000,0.000000,0.250000,0,0);}
.me1_c00041{transform:matrix(0.545585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545585,0.000000,0.000000,0.250000,0,0);}
.md2_c00041{transform:matrix(0.549995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549995,0.000000,0.000000,0.250000,0,0);}
.m126_c00041{transform:matrix(0.558790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558790,0.000000,0.000000,0.250000,0,0);}
.m12f_c00041{transform:matrix(0.578955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578955,0.000000,0.000000,0.250000,0,0);}
.m108_c00041{transform:matrix(0.643240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643240,0.000000,0.000000,0.250000,0,0);}
.m136_c00041{transform:matrix(0.661250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00041{transform:matrix(0.689300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689300,0.000000,0.000000,0.250000,0,0);}
.m11a_c00041{transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);}
.m134_c00041{transform:matrix(0.766815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766815,0.000000,0.000000,0.250000,0,0);}
.mec_c00041{transform:matrix(0.778295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778295,0.000000,0.000000,0.250000,0,0);}
.m66_c00041{transform:matrix(0.821405,0.013142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.821405,0.013142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.821405,0.013142,-0.003999,0.249968,0,0);}
.mb1_c00041{transform:matrix(0.833073,0.011663,-0.003500,0.249976,0,0);-ms-transform:matrix(0.833073,0.011663,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.833073,0.011663,-0.003500,0.249976,0,0);}
.mc5_c00041{transform:matrix(0.863865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.863865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.863865,0.000000,0.000000,0.250000,0,0);}
.m130_c00041{transform:matrix(0.981600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.981600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.981600,0.000000,0.000000,0.250000,0,0);}
.v1_c00041{vertical-align:-1.440000px;}
.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;}
._0_c00041{width:14.301648px;}
.fc0_c00041{color:transparent;}
.fs19_c00041{font-size:37.800000px;}
.fs18_c00041{font-size:45.150000px;}
.fs17_c00041{font-size:48.300000px;}
.fs1b_c00041{font-size:50.400000px;}
.fs14_c00041{font-size:51.450000px;}
.fs13_c00041{font-size:52.500000px;}
.fs15_c00041{font-size:53.550000px;}
.fs16_c00041{font-size:55.650000px;}
.fs0_c00041{font-size:64.050000px;}
.fsf_c00041{font-size:64.059255px;}
.fs2_c00041{font-size:65.100000px;}
.fs9_c00041{font-size:65.108332px;}
.fs7_c00041{font-size:67.200000px;}
.fs6_c00041{font-size:69.300000px;}
.fs8_c00041{font-size:69.308870px;}
.fs12_c00041{font-size:70.356894px;}
.fsb_c00041{font-size:70.357914px;}
.fsa_c00041{font-size:70.359004px;}
.fsc_c00041{font-size:70.364069px;}
.fs11_c00041{font-size:71.411566px;}
.fs1_c00041{font-size:72.450000px;}
.fse_c00041{font-size:72.460468px;}
.fsd_c00041{font-size:72.464489px;}
.fs4_c00041{font-size:73.500000px;}
.fs1a_c00041{font-size:74.550000px;}
.fs10_c00041{font-size:75.613645px;}
.fs5_c00041{font-size:78.750000px;}
.fs3_c00041{font-size:80.850000px;}
.fs1c_c00041{font-size:82.950000px;}
.y0_c00041{bottom:0.000000px;}
.yed_c00041{bottom:87.894000px;}
.yfc_c00041{bottom:95.530500px;}
.yfb_c00041{bottom:96.156000px;}
.yfa_c00041{bottom:97.612500px;}
.yf9_c00041{bottom:97.962000px;}
.yf8_c00041{bottom:98.911500px;}
.yf7_c00041{bottom:100.080000px;}
.yec_c00041{bottom:100.872000px;}
.yf6_c00041{bottom:101.265000px;}
.yf5_c00041{bottom:101.761500px;}
.yf4_c00041{bottom:102.603000px;}
.yeb_c00041{bottom:103.198500px;}
.yf3_c00041{bottom:111.463500px;}
.yea_c00041{bottom:111.952500px;}
.yf2_c00041{bottom:113.394000px;}
.yf1_c00041{bottom:116.119500px;}
.yf0_c00041{bottom:117.318000px;}
.yef_c00041{bottom:119.344500px;}
.ye9_c00041{bottom:121.501500px;}
.ye8_c00041{bottom:129.340500px;}
.ye7_c00041{bottom:132.579000px;}
.ye6_c00041{bottom:133.006500px;}
.ye5_c00041{bottom:133.452000px;}
.ye4_c00041{bottom:134.361000px;}
.ye3_c00041{bottom:135.009000px;}
.ye2_c00041{bottom:135.400500px;}
.ye1_c00041{bottom:135.930000px;}
.ye0_c00041{bottom:136.863000px;}
.ydf_c00041{bottom:137.086500px;}
.yde_c00041{bottom:137.397000px;}
.ydd_c00041{bottom:137.971500px;}
.ydc_c00041{bottom:138.946500px;}
.ydb_c00041{bottom:140.325000px;}
.yda_c00041{bottom:140.740500px;}
.yd9_c00041{bottom:142.167000px;}
.yd8_c00041{bottom:142.570500px;}
.yee_c00041{bottom:145.800000px;}
.yd7_c00041{bottom:151.231500px;}
.yd6_c00041{bottom:152.203500px;}
.yd5_c00041{bottom:152.548500px;}
.yd4_c00041{bottom:153.759000px;}
.yd3_c00041{bottom:154.488000px;}
.yd2_c00041{bottom:154.866000px;}
.yd1_c00041{bottom:155.287500px;}
.yd0_c00041{bottom:156.465000px;}
.ycf_c00041{bottom:156.927000px;}
.yce_c00041{bottom:157.311000px;}
.ycd_c00041{bottom:157.597500px;}
.ycc_c00041{bottom:158.418000px;}
.ycb_c00041{bottom:158.985000px;}
.yca_c00041{bottom:160.275000px;}
.yc9_c00041{bottom:161.199000px;}
.yc8_c00041{bottom:170.095500px;}
.yc7_c00041{bottom:170.572500px;}
.yc6_c00041{bottom:171.021000px;}
.yc5_c00041{bottom:171.412500px;}
.yc4_c00041{bottom:171.660000px;}
.yc3_c00041{bottom:172.128000px;}
.yc2_c00041{bottom:172.288500px;}
.yc1_c00041{bottom:173.079000px;}
.yc0_c00041{bottom:173.353500px;}
.ybf_c00041{bottom:173.620500px;}
.ybe_c00041{bottom:174.349500px;}
.ybd_c00041{bottom:175.038000px;}
.ybc_c00041{bottom:175.501500px;}
.ybb_c00041{bottom:175.717500px;}
.yba_c00041{bottom:176.497500px;}
.yb9_c00041{bottom:176.989500px;}
.yb8_c00041{bottom:177.573000px;}
.yb7_c00041{bottom:178.477500px;}
.yb6_c00041{bottom:186.685500px;}
.yb5_c00041{bottom:187.323000px;}
.yb4_c00041{bottom:188.143500px;}
.yb3_c00041{bottom:188.748000px;}
.yb2_c00041{bottom:189.703500px;}
.yb1_c00041{bottom:190.207500px;}
.yb0_c00041{bottom:190.557000px;}
.yaf_c00041{bottom:191.707500px;}
.yae_c00041{bottom:194.736000px;}
.yad_c00041{bottom:196.843500px;}
.yac_c00041{bottom:206.086500px;}
.yab_c00041{bottom:206.490000px;}
.yaa_c00041{bottom:207.244500px;}
.ya9_c00041{bottom:207.607500px;}
.ya8_c00041{bottom:208.158000px;}
.ya7_c00041{bottom:209.116500px;}
.ya6_c00041{bottom:210.019500px;}
.ya5_c00041{bottom:210.642000px;}
.ya4_c00041{bottom:212.251500px;}
.ya3_c00041{bottom:213.333000px;}
.ya2_c00041{bottom:214.656000px;}
.ya1_c00041{bottom:223.053000px;}
.ya0_c00041{bottom:223.329000px;}
.y9f_c00041{bottom:223.606500px;}
.y9e_c00041{bottom:224.364000px;}
.y9d_c00041{bottom:224.992500px;}
.y9c_c00041{bottom:225.565500px;}
.y9b_c00041{bottom:226.518000px;}
.y9a_c00041{bottom:226.761000px;}
.y99_c00041{bottom:226.948500px;}
.y98_c00041{bottom:227.982000px;}
.y97_c00041{bottom:228.663000px;}
.y96_c00041{bottom:229.750500px;}
.y95_c00041{bottom:230.080500px;}
.y94_c00041{bottom:230.737500px;}
.y93_c00041{bottom:230.974500px;}
.y92_c00041{bottom:231.936000px;}
.y91_c00041{bottom:241.149000px;}
.y90_c00041{bottom:242.392500px;}
.y8f_c00041{bottom:242.722500px;}
.y8e_c00041{bottom:244.095000px;}
.y8d_c00041{bottom:244.623000px;}
.y8c_c00041{bottom:244.887000px;}
.y8b_c00041{bottom:245.634000px;}
.y8a_c00041{bottom:246.586500px;}
.y89_c00041{bottom:247.096500px;}
.y88_c00041{bottom:248.281500px;}
.y87_c00041{bottom:248.472000px;}
.y86_c00041{bottom:249.084000px;}
.y85_c00041{bottom:250.027500px;}
.y84_c00041{bottom:258.153000px;}
.y83_c00041{bottom:259.587000px;}
.y82_c00041{bottom:260.275500px;}
.y81_c00041{bottom:261.193500px;}
.y80_c00041{bottom:262.399500px;}
.y7f_c00041{bottom:263.680500px;}
.y7e_c00041{bottom:264.250500px;}
.y7d_c00041{bottom:265.003500px;}
.y7c_c00041{bottom:265.251000px;}
.y7b_c00041{bottom:266.086500px;}
.y7a_c00041{bottom:266.451000px;}
.y79_c00041{bottom:266.851500px;}
.y78_c00041{bottom:268.114500px;}
.y77_c00041{bottom:295.642500px;}
.y76_c00041{bottom:319.369083px;}
.y75_c00041{bottom:320.234409px;}
.y74_c00041{bottom:320.592459px;}
.y73_c00041{bottom:321.094611px;}
.y72_c00041{bottom:321.722658px;}
.y71_c00041{bottom:322.554279px;}
.y70_c00041{bottom:322.982385px;}
.y6f_c00041{bottom:323.756676px;}
.y6e_c00041{bottom:324.183774px;}
.y6d_c00041{bottom:324.543000px;}
.y6c_c00041{bottom:341.999406px;}
.y6b_c00041{bottom:343.256850px;}
.y6a_c00041{bottom:343.674837px;}
.y69_c00041{bottom:345.288708px;}
.y68_c00041{bottom:346.591593px;}
.y67_c00041{bottom:347.728995px;}
.y66_c00041{bottom:348.096384px;}
.y65_c00041{bottom:348.574500px;}
.y64_c00041{bottom:365.300898px;}
.y63_c00041{bottom:366.131901px;}
.y62_c00041{bottom:366.604374px;}
.y61_c00041{bottom:367.681275px;}
.y60_c00041{bottom:368.281656px;}
.y5f_c00041{bottom:368.774136px;}
.y5e_c00041{bottom:370.077811px;}
.y5d_c00041{bottom:370.609678px;}
.y5c_c00041{bottom:371.524500px;}
.y5b_c00041{bottom:389.699916px;}
.y5a_c00041{bottom:390.793264px;}
.y59_c00041{bottom:391.335223px;}
.y58_c00041{bottom:392.189025px;}
.y57_c00041{bottom:392.743245px;}
.y56_c00041{bottom:393.014964px;}
.y55_c00041{bottom:394.200009px;}
.y54_c00041{bottom:412.446624px;}
.y53_c00041{bottom:412.749513px;}
.y52_c00041{bottom:413.428884px;}
.y51_c00041{bottom:414.406885px;}
.y50_c00041{bottom:415.724419px;}
.y4f_c00041{bottom:416.411874px;}
.y4e_c00041{bottom:416.962750px;}
.y4d_c00041{bottom:417.423000px;}
.y4c_c00041{bottom:434.899290px;}
.y4b_c00041{bottom:435.959400px;}
.y4a_c00041{bottom:436.528290px;}
.y49_c00041{bottom:437.264910px;}
.y48_c00041{bottom:437.883240px;}
.y47_c00041{bottom:438.199680px;}
.y46_c00041{bottom:439.078740px;}
.y45_c00041{bottom:439.571790px;}
.y44_c00041{bottom:440.368830px;}
.y43_c00041{bottom:455.628330px;}
.y42_c00041{bottom:457.092420px;}
.y41_c00041{bottom:457.576590px;}
.y40_c00041{bottom:458.552070px;}
.y3f_c00041{bottom:460.019280px;}
.y3e_c00041{bottom:461.137290px;}
.y3d_c00041{bottom:461.850060px;}
.y3c_c00041{bottom:462.423090px;}
.y3b_c00041{bottom:463.324500px;}
.y3a_c00041{bottom:481.660702px;}
.y39_c00041{bottom:482.600617px;}
.y38_c00041{bottom:482.969257px;}
.y37_c00041{bottom:484.010243px;}
.y36_c00041{bottom:484.326165px;}
.y35_c00041{bottom:485.193000px;}
.y34_c00041{bottom:505.550292px;}
.y33_c00041{bottom:505.887720px;}
.y32_c00041{bottom:506.074704px;}
.y31_c00041{bottom:506.433408px;}
.y30_c00041{bottom:506.800476px;}
.y2f_c00041{bottom:507.326544px;}
.y2e_c00041{bottom:507.695880px;}
.y2d_c00041{bottom:507.920016px;}
.y2c_c00041{bottom:508.406568px;}
.y2b_c00041{bottom:526.552644px;}
.y2a_c00041{bottom:527.472756px;}
.y29_c00041{bottom:527.749140px;}
.y28_c00041{bottom:528.391620px;}
.y27_c00041{bottom:528.725388px;}
.y26_c00041{bottom:530.029884px;}
.y25_c00041{bottom:530.568996px;}
.y24_c00041{bottom:531.362052px;}
.y23_c00041{bottom:551.883168px;}
.y22_c00041{bottom:552.250176px;}
.y21_c00041{bottom:553.313760px;}
.y20_c00041{bottom:553.793208px;}
.y1f_c00041{bottom:554.415000px;}
.y1e_c00041{bottom:574.669500px;}
.y1d_c00041{bottom:595.479000px;}
.y1c_c00041{bottom:595.831500px;}
.y1b_c00041{bottom:596.251500px;}
.y1a_c00041{bottom:596.562000px;}
.y19_c00041{bottom:597.025500px;}
.y18_c00041{bottom:597.276000px;}
.y17_c00041{bottom:597.636000px;}
.y16_c00041{bottom:597.820500px;}
.y15_c00041{bottom:598.048500px;}
.y14_c00041{bottom:616.318500px;}
.y13_c00041{bottom:617.059500px;}
.y12_c00041{bottom:617.452500px;}
.y11_c00041{bottom:617.769000px;}
.y10_c00041{bottom:618.274500px;}
.yf_c00041{bottom:618.537000px;}
.ye_c00041{bottom:619.155000px;}
.yd_c00041{bottom:619.563000px;}
.yc_c00041{bottom:619.833000px;}
.yb_c00041{bottom:620.380500px;}
.ya_c00041{bottom:620.731500px;}
.y9_c00041{bottom:641.194500px;}
.y8_c00041{bottom:665.073000px;}
.y7_c00041{bottom:687.048000px;}
.y6_c00041{bottom:711.127500px;}
.y5_c00041{bottom:733.144500px;}
.y4_c00041{bottom:756.087000px;}
.y3_c00041{bottom:779.146500px;}
.y2_c00041{bottom:802.281000px;}
.y1_c00041{bottom:825.187500px;}
.h1b_c00041{height:37.800000px;}
.h1a_c00041{height:45.150000px;}
.h19_c00041{height:48.300000px;}
.h1d_c00041{height:50.400000px;}
.h16_c00041{height:51.450000px;}
.h15_c00041{height:52.500000px;}
.h17_c00041{height:53.550000px;}
.h18_c00041{height:55.650000px;}
.h2_c00041{height:64.050000px;}
.h11_c00041{height:64.059255px;}
.h4_c00041{height:65.100000px;}
.hb_c00041{height:65.108332px;}
.h9_c00041{height:67.200000px;}
.h8_c00041{height:69.300000px;}
.ha_c00041{height:69.308870px;}
.h14_c00041{height:70.356894px;}
.hd_c00041{height:70.357914px;}
.hc_c00041{height:70.359004px;}
.he_c00041{height:70.364069px;}
.h13_c00041{height:71.411566px;}
.h3_c00041{height:72.450000px;}
.h10_c00041{height:72.460468px;}
.hf_c00041{height:72.464489px;}
.h6_c00041{height:73.500000px;}
.h1c_c00041{height:74.550000px;}
.h12_c00041{height:75.613645px;}
.h7_c00041{height:78.750000px;}
.h5_c00041{height:80.850000px;}
.h1e_c00041{height:82.950000px;}
.h0_c00041{height:1008.450000px;}
.h1_c00041{height:1008.750000px;}
.w0_c00041{width:699.000000px;}
.x0_c00041{left:0.000000px;}
.xad_c00041{left:83.733000px;}
.xae_c00041{left:85.930500px;}
.x93_c00041{left:87.816000px;}
.x74_c00041{left:88.839000px;}
.x8a_c00041{left:94.395000px;}
.xac_c00041{left:103.140000px;}
.xaf_c00041{left:130.204500px;}
.x9c_c00041{left:140.758500px;}
.x7d_c00041{left:141.850500px;}
.x75_c00041{left:155.332500px;}
.xb0_c00041{left:156.339000px;}
.xa2_c00041{left:158.814000px;}
.x94_c00041{left:175.335000px;}
.x49_c00041{left:176.560128px;}
.x6e_c00041{left:178.281000px;}
.x5e_c00041{left:179.604000px;}
.x4e_c00041{left:180.755508px;}
.x16_c00041{left:182.520000px;}
.x9_c00041{left:183.870000px;}
.x7e_c00041{left:186.411000px;}
.x84_c00041{left:191.310000px;}
.x8d_c00041{left:193.414500px;}
.x76_c00041{left:195.583500px;}
.x1_c00041{left:204.390000px;}
.x69_c00041{left:205.609500px;}
.x41_c00041{left:206.973000px;}
.x3c_c00041{left:209.130000px;}
.x22_c00041{left:210.330000px;}
.x17_c00041{left:216.270000px;}
.xb1_c00041{left:218.722500px;}
.xa3_c00041{left:223.624500px;}
.x2e_c00041{left:224.910000px;}
.x2_c00041{left:226.530000px;}
.x42_c00041{left:227.535000px;}
.x4f_c00041{left:229.357164px;}
.xa_c00041{left:232.740000px;}
.x6f_c00041{left:234.447000px;}
.xf_c00041{left:236.520000px;}
.x1d_c00041{left:237.600000px;}
.x54_c00041{left:239.562000px;}
.x62_c00041{left:241.415042px;}
.xa4_c00041{left:242.533500px;}
.x45_c00041{left:249.750000px;}
.x3d_c00041{left:251.208000px;}
.x77_c00041{left:252.610500px;}
.x57_c00041{left:254.379000px;}
.x63_c00041{left:255.721557px;}
.x18_c00041{left:257.580000px;}
.xb_c00041{left:259.740000px;}
.x95_c00041{left:262.822500px;}
.x29_c00041{left:267.030000px;}
.x3_c00041{left:268.650000px;}
.x85_c00041{left:270.096000px;}
.x2f_c00041{left:271.890000px;}
.x9d_c00041{left:274.672500px;}
.x4_c00041{left:277.560000px;}
.x5f_c00041{left:279.520500px;}
.x7f_c00041{left:280.639500px;}
.x10_c00041{left:282.420000px;}
.x64_c00041{left:284.880562px;}
.x50_c00041{left:288.767376px;}
.x1e_c00041{left:289.980000px;}
.x23_c00041{left:291.870000px;}
.x43_c00041{left:295.284000px;}
.x11_c00041{left:297.270000px;}
.x5a_c00041{left:300.868770px;}
.x46_c00041{left:302.058000px;}
.x19_c00041{left:304.290000px;}
.x30_c00041{left:307.530000px;}
.x37_c00041{left:309.690000px;}
.x12_c00041{left:312.660000px;}
.x5b_c00041{left:318.416460px;}
.x70_c00041{left:320.332500px;}
.x78_c00041{left:322.260000px;}
.x67_c00041{left:323.794500px;}
.x2a_c00041{left:329.670000px;}
.x9e_c00041{left:331.338000px;}
.x80_c00041{left:333.543000px;}
.x5_c00041{left:337.230000px;}
.xc_c00041{left:339.930000px;}
.x4a_c00041{left:341.351628px;}
.x8e_c00041{left:344.802000px;}
.x31_c00041{left:346.680000px;}
.x1f_c00041{left:348.840000px;}
.x38_c00041{left:350.730000px;}
.x5c_c00041{left:352.784340px;}
.x55_c00041{left:354.598500px;}
.x60_c00041{left:357.022500px;}
.x65_c00041{left:358.334564px;}
.x6a_c00041{left:361.591500px;}
.x13_c00041{left:362.610000px;}
.x1a_c00041{left:365.850000px;}
.x24_c00041{left:367.740000px;}
.x3e_c00041{left:371.103000px;}
.x96_c00041{left:373.440000px;}
.x81_c00041{left:375.070500px;}
.x51_c00041{left:378.159468px;}
.x32_c00041{left:380.160000px;}
.x68_c00041{left:381.313500px;}
.x39_c00041{left:382.320000px;}
.x20_c00041{left:386.910000px;}
.x79_c00041{left:389.704500px;}
.x1b_c00041{left:391.230000px;}
.xd_c00041{left:394.740000px;}
.x6_c00041{left:396.360000px;}
.xa5_c00041{left:399.909000px;}
.x4b_c00041{left:402.367128px;}
.x97_c00041{left:405.355500px;}
.x25_c00041{left:408.240000px;}
.x14_c00041{left:409.860000px;}
.x9f_c00041{left:411.285000px;}
.x21_c00041{left:413.640000px;}
.x8b_c00041{left:414.765000px;}
.x66_c00041{left:415.853100px;}
.x56_c00041{left:417.259500px;}
.x4c_c00041{left:419.641128px;}
.x7_c00041{left:421.740000px;}
.x2b_c00041{left:423.360000px;}
.x33_c00041{left:424.980000px;}
.x44_c00041{left:428.157000px;}
.xa0_c00041{left:430.204500px;}
.x8c_c00041{left:431.233500px;}
.x52_c00041{left:432.707700px;}
.x3a_c00041{left:434.160000px;}
.x47_c00041{left:437.359500px;}
.x1c_c00041{left:440.370000px;}
.x86_c00041{left:442.251000px;}
.x8f_c00041{left:445.071000px;}
.x26_c00041{left:449.550000px;}
.x6b_c00041{left:451.251000px;}
.x7a_c00041{left:453.157500px;}
.xe_c00041{left:455.220000px;}
.x3b_c00041{left:457.650000px;}
.x48_c00041{left:460.297500px;}
.x2c_c00041{left:463.050000px;}
.x3f_c00041{left:464.490000px;}
.x53_c00041{left:466.456440px;}
.x34_c00041{left:467.640000px;}
.x8_c00041{left:470.610000px;}
.x61_c00041{left:472.332000px;}
.x6c_c00041{left:474.472500px;}
.x4d_c00041{left:477.148128px;}
.xaa_c00041{left:479.631000px;}
.x5d_c00041{left:484.195590px;}
.x71_c00041{left:486.037500px;}
.x15_c00041{left:489.780000px;}
.x58_c00041{left:492.261000px;}
.x27_c00041{left:494.640000px;}
.x35_c00041{left:500.850000px;}
.x98_c00041{left:503.359500px;}
.x2d_c00041{left:506.790000px;}
.x87_c00041{left:509.050500px;}
.x82_c00041{left:513.643500px;}
.x28_c00041{left:519.480000px;}
.x40_c00041{left:521.443500px;}
.x90_c00041{left:523.090500px;}
.x99_c00041{left:526.408500px;}
.x7b_c00041{left:537.651000px;}
.x36_c00041{left:542.970000px;}
.x6d_c00041{left:544.330500px;}
.x72_c00041{left:547.846500px;}
.x88_c00041{left:551.166000px;}
.x9a_c00041{left:552.810000px;}
.xa6_c00041{left:554.890500px;}
.x91_c00041{left:564.108000px;}
.x59_c00041{left:565.465500px;}
.x89_c00041{left:566.610000px;}
.x73_c00041{left:574.560000px;}
.x9b_c00041{left:580.900500px;}
.x83_c00041{left:582.765000px;}
.xa1_c00041{left:592.996500px;}
.xa7_c00041{left:594.562500px;}
.x92_c00041{left:596.004000px;}
.xa9_c00041{left:604.380000px;}
.x7c_c00041{left:613.128000px;}
.xa8_c00041{left:642.060000px;}
.xab_c00041{left:661.819500px;}
@media print{
.v1_c00041{vertical-align:-1.280000pt;}
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._0_c00041{width:12.712576pt;}
.fs19_c00041{font-size:33.600000pt;}
.fs18_c00041{font-size:40.133333pt;}
.fs17_c00041{font-size:42.933333pt;}
.fs1b_c00041{font-size:44.800000pt;}
.fs14_c00041{font-size:45.733333pt;}
.fs13_c00041{font-size:46.666667pt;}
.fs15_c00041{font-size:47.600000pt;}
.fs16_c00041{font-size:49.466667pt;}
.fs0_c00041{font-size:56.933333pt;}
.fsf_c00041{font-size:56.941560pt;}
.fs2_c00041{font-size:57.866667pt;}
.fs9_c00041{font-size:57.874073pt;}
.fs7_c00041{font-size:59.733333pt;}
.fs6_c00041{font-size:61.600000pt;}
.fs8_c00041{font-size:61.607884pt;}
.fs12_c00041{font-size:62.539461pt;}
.fsb_c00041{font-size:62.540368pt;}
.fsa_c00041{font-size:62.541337pt;}
.fsc_c00041{font-size:62.545839pt;}
.fs11_c00041{font-size:63.476947pt;}
.fs1_c00041{font-size:64.400000pt;}
.fse_c00041{font-size:64.409305pt;}
.fsd_c00041{font-size:64.412879pt;}
.fs4_c00041{font-size:65.333333pt;}
.fs1a_c00041{font-size:66.266667pt;}
.fs10_c00041{font-size:67.212129pt;}
.fs5_c00041{font-size:70.000000pt;}
.fs3_c00041{font-size:71.866667pt;}
.fs1c_c00041{font-size:73.733333pt;}
.y0_c00041{bottom:0.000000pt;}
.yed_c00041{bottom:78.128000pt;}
.yfc_c00041{bottom:84.916000pt;}
.yfb_c00041{bottom:85.472000pt;}
.yfa_c00041{bottom:86.766667pt;}
.yf9_c00041{bottom:87.077333pt;}
.yf8_c00041{bottom:87.921333pt;}
.yf7_c00041{bottom:88.960000pt;}
.yec_c00041{bottom:89.664000pt;}
.yf6_c00041{bottom:90.013333pt;}
.yf5_c00041{bottom:90.454667pt;}
.yf4_c00041{bottom:91.202667pt;}
.yeb_c00041{bottom:91.732000pt;}
.yf3_c00041{bottom:99.078667pt;}
.yea_c00041{bottom:99.513333pt;}
.yf2_c00041{bottom:100.794667pt;}
.yf1_c00041{bottom:103.217333pt;}
.yf0_c00041{bottom:104.282667pt;}
.yef_c00041{bottom:106.084000pt;}
.ye9_c00041{bottom:108.001333pt;}
.ye8_c00041{bottom:114.969333pt;}
.ye7_c00041{bottom:117.848000pt;}
.ye6_c00041{bottom:118.228000pt;}
.ye5_c00041{bottom:118.624000pt;}
.ye4_c00041{bottom:119.432000pt;}
.ye3_c00041{bottom:120.008000pt;}
.ye2_c00041{bottom:120.356000pt;}
.ye1_c00041{bottom:120.826667pt;}
.ye0_c00041{bottom:121.656000pt;}
.ydf_c00041{bottom:121.854667pt;}
.yde_c00041{bottom:122.130667pt;}
.ydd_c00041{bottom:122.641333pt;}
.ydc_c00041{bottom:123.508000pt;}
.ydb_c00041{bottom:124.733333pt;}
.yda_c00041{bottom:125.102667pt;}
.yd9_c00041{bottom:126.370667pt;}
.yd8_c00041{bottom:126.729333pt;}
.yee_c00041{bottom:129.600000pt;}
.yd7_c00041{bottom:134.428000pt;}
.yd6_c00041{bottom:135.292000pt;}
.yd5_c00041{bottom:135.598667pt;}
.yd4_c00041{bottom:136.674667pt;}
.yd3_c00041{bottom:137.322667pt;}
.yd2_c00041{bottom:137.658667pt;}
.yd1_c00041{bottom:138.033333pt;}
.yd0_c00041{bottom:139.080000pt;}
.ycf_c00041{bottom:139.490667pt;}
.yce_c00041{bottom:139.832000pt;}
.ycd_c00041{bottom:140.086667pt;}
.ycc_c00041{bottom:140.816000pt;}
.ycb_c00041{bottom:141.320000pt;}
.yca_c00041{bottom:142.466667pt;}
.yc9_c00041{bottom:143.288000pt;}
.yc8_c00041{bottom:151.196000pt;}
.yc7_c00041{bottom:151.620000pt;}
.yc6_c00041{bottom:152.018667pt;}
.yc5_c00041{bottom:152.366667pt;}
.yc4_c00041{bottom:152.586667pt;}
.yc3_c00041{bottom:153.002667pt;}
.yc2_c00041{bottom:153.145333pt;}
.yc1_c00041{bottom:153.848000pt;}
.yc0_c00041{bottom:154.092000pt;}
.ybf_c00041{bottom:154.329333pt;}
.ybe_c00041{bottom:154.977333pt;}
.ybd_c00041{bottom:155.589333pt;}
.ybc_c00041{bottom:156.001333pt;}
.ybb_c00041{bottom:156.193333pt;}
.yba_c00041{bottom:156.886667pt;}
.yb9_c00041{bottom:157.324000pt;}
.yb8_c00041{bottom:157.842667pt;}
.yb7_c00041{bottom:158.646667pt;}
.yb6_c00041{bottom:165.942667pt;}
.yb5_c00041{bottom:166.509333pt;}
.yb4_c00041{bottom:167.238667pt;}
.yb3_c00041{bottom:167.776000pt;}
.yb2_c00041{bottom:168.625333pt;}
.yb1_c00041{bottom:169.073333pt;}
.yb0_c00041{bottom:169.384000pt;}
.yaf_c00041{bottom:170.406667pt;}
.yae_c00041{bottom:173.098667pt;}
.yad_c00041{bottom:174.972000pt;}
.yac_c00041{bottom:183.188000pt;}
.yab_c00041{bottom:183.546667pt;}
.yaa_c00041{bottom:184.217333pt;}
.ya9_c00041{bottom:184.540000pt;}
.ya8_c00041{bottom:185.029333pt;}
.ya7_c00041{bottom:185.881333pt;}
.ya6_c00041{bottom:186.684000pt;}
.ya5_c00041{bottom:187.237333pt;}
.ya4_c00041{bottom:188.668000pt;}
.ya3_c00041{bottom:189.629333pt;}
.ya2_c00041{bottom:190.805333pt;}
.ya1_c00041{bottom:198.269333pt;}
.ya0_c00041{bottom:198.514667pt;}
.y9f_c00041{bottom:198.761333pt;}
.y9e_c00041{bottom:199.434667pt;}
.y9d_c00041{bottom:199.993333pt;}
.y9c_c00041{bottom:200.502667pt;}
.y9b_c00041{bottom:201.349333pt;}
.y9a_c00041{bottom:201.565333pt;}
.y99_c00041{bottom:201.732000pt;}
.y98_c00041{bottom:202.650667pt;}
.y97_c00041{bottom:203.256000pt;}
.y96_c00041{bottom:204.222667pt;}
.y95_c00041{bottom:204.516000pt;}
.y94_c00041{bottom:205.100000pt;}
.y93_c00041{bottom:205.310667pt;}
.y92_c00041{bottom:206.165333pt;}
.y91_c00041{bottom:214.354667pt;}
.y90_c00041{bottom:215.460000pt;}
.y8f_c00041{bottom:215.753333pt;}
.y8e_c00041{bottom:216.973333pt;}
.y8d_c00041{bottom:217.442667pt;}
.y8c_c00041{bottom:217.677333pt;}
.y8b_c00041{bottom:218.341333pt;}
.y8a_c00041{bottom:219.188000pt;}
.y89_c00041{bottom:219.641333pt;}
.y88_c00041{bottom:220.694667pt;}
.y87_c00041{bottom:220.864000pt;}
.y86_c00041{bottom:221.408000pt;}
.y85_c00041{bottom:222.246667pt;}
.y84_c00041{bottom:229.469333pt;}
.y83_c00041{bottom:230.744000pt;}
.y82_c00041{bottom:231.356000pt;}
.y81_c00041{bottom:232.172000pt;}
.y80_c00041{bottom:233.244000pt;}
.y7f_c00041{bottom:234.382667pt;}
.y7e_c00041{bottom:234.889333pt;}
.y7d_c00041{bottom:235.558667pt;}
.y7c_c00041{bottom:235.778667pt;}
.y7b_c00041{bottom:236.521333pt;}
.y7a_c00041{bottom:236.845333pt;}
.y79_c00041{bottom:237.201333pt;}
.y78_c00041{bottom:238.324000pt;}
.y77_c00041{bottom:262.793333pt;}
.y76_c00041{bottom:283.883629pt;}
.y75_c00041{bottom:284.652808pt;}
.y74_c00041{bottom:284.971075pt;}
.y73_c00041{bottom:285.417432pt;}
.y72_c00041{bottom:285.975696pt;}
.y71_c00041{bottom:286.714915pt;}
.y70_c00041{bottom:287.095453pt;}
.y6f_c00041{bottom:287.783712pt;}
.y6e_c00041{bottom:288.163355pt;}
.y6d_c00041{bottom:288.482667pt;}
.y6c_c00041{bottom:303.999472pt;}
.y6b_c00041{bottom:305.117200pt;}
.y6a_c00041{bottom:305.488744pt;}
.y69_c00041{bottom:306.923296pt;}
.y68_c00041{bottom:308.081416pt;}
.y67_c00041{bottom:309.092440pt;}
.y66_c00041{bottom:309.419008pt;}
.y65_c00041{bottom:309.844000pt;}
.y64_c00041{bottom:324.711909pt;}
.y63_c00041{bottom:325.450579pt;}
.y62_c00041{bottom:325.870555pt;}
.y61_c00041{bottom:326.827800pt;}
.y60_c00041{bottom:327.361472pt;}
.y5f_c00041{bottom:327.799232pt;}
.y5e_c00041{bottom:328.958055pt;}
.y5d_c00041{bottom:329.430825pt;}
.y5c_c00041{bottom:330.244000pt;}
.y5b_c00041{bottom:346.399925pt;}
.y5a_c00041{bottom:347.371791pt;}
.y59_c00041{bottom:347.853532pt;}
.y58_c00041{bottom:348.612467pt;}
.y57_c00041{bottom:349.105107pt;}
.y56_c00041{bottom:349.346635pt;}
.y55_c00041{bottom:350.400008pt;}
.y54_c00041{bottom:366.619221pt;}
.y53_c00041{bottom:366.888456pt;}
.y52_c00041{bottom:367.492341pt;}
.y51_c00041{bottom:368.361676pt;}
.y50_c00041{bottom:369.532817pt;}
.y4f_c00041{bottom:370.143888pt;}
.y4e_c00041{bottom:370.633556pt;}
.y4d_c00041{bottom:371.042667pt;}
.y4c_c00041{bottom:386.577147pt;}
.y4b_c00041{bottom:387.519467pt;}
.y4a_c00041{bottom:388.025147pt;}
.y49_c00041{bottom:388.679920pt;}
.y48_c00041{bottom:389.229547pt;}
.y47_c00041{bottom:389.510827pt;}
.y46_c00041{bottom:390.292213pt;}
.y45_c00041{bottom:390.730480pt;}
.y44_c00041{bottom:391.438960pt;}
.y43_c00041{bottom:405.002960pt;}
.y42_c00041{bottom:406.304373pt;}
.y41_c00041{bottom:406.734747pt;}
.y40_c00041{bottom:407.601840pt;}
.y3f_c00041{bottom:408.906027pt;}
.y3e_c00041{bottom:409.899813pt;}
.y3d_c00041{bottom:410.533387pt;}
.y3c_c00041{bottom:411.042747pt;}
.y3b_c00041{bottom:411.844000pt;}
.y3a_c00041{bottom:428.142847pt;}
.y39_c00041{bottom:428.978327pt;}
.y38_c00041{bottom:429.306007pt;}
.y37_c00041{bottom:430.231327pt;}
.y36_c00041{bottom:430.512147pt;}
.y35_c00041{bottom:431.282667pt;}
.y34_c00041{bottom:449.378037pt;}
.y33_c00041{bottom:449.677973pt;}
.y32_c00041{bottom:449.844181pt;}
.y31_c00041{bottom:450.163029pt;}
.y30_c00041{bottom:450.489312pt;}
.y2f_c00041{bottom:450.956928pt;}
.y2e_c00041{bottom:451.285227pt;}
.y2d_c00041{bottom:451.484459pt;}
.y2c_c00041{bottom:451.916949pt;}
.y2b_c00041{bottom:468.046795pt;}
.y2a_c00041{bottom:468.864672pt;}
.y29_c00041{bottom:469.110347pt;}
.y28_c00041{bottom:469.681440pt;}
.y27_c00041{bottom:469.978123pt;}
.y26_c00041{bottom:471.137675pt;}
.y25_c00041{bottom:471.616885pt;}
.y24_c00041{bottom:472.321824pt;}
.y23_c00041{bottom:490.562816pt;}
.y22_c00041{bottom:490.889045pt;}
.y21_c00041{bottom:491.834453pt;}
.y20_c00041{bottom:492.260629pt;}
.y1f_c00041{bottom:492.813333pt;}
.y1e_c00041{bottom:510.817333pt;}
.y1d_c00041{bottom:529.314667pt;}
.y1c_c00041{bottom:529.628000pt;}
.y1b_c00041{bottom:530.001333pt;}
.y1a_c00041{bottom:530.277333pt;}
.y19_c00041{bottom:530.689333pt;}
.y18_c00041{bottom:530.912000pt;}
.y17_c00041{bottom:531.232000pt;}
.y16_c00041{bottom:531.396000pt;}
.y15_c00041{bottom:531.598667pt;}
.y14_c00041{bottom:547.838667pt;}
.y13_c00041{bottom:548.497333pt;}
.y12_c00041{bottom:548.846667pt;}
.y11_c00041{bottom:549.128000pt;}
.y10_c00041{bottom:549.577333pt;}
.yf_c00041{bottom:549.810667pt;}
.ye_c00041{bottom:550.360000pt;}
.yd_c00041{bottom:550.722667pt;}
.yc_c00041{bottom:550.962667pt;}
.yb_c00041{bottom:551.449333pt;}
.ya_c00041{bottom:551.761333pt;}
.y9_c00041{bottom:569.950667pt;}
.y8_c00041{bottom:591.176000pt;}
.y7_c00041{bottom:610.709333pt;}
.y6_c00041{bottom:632.113333pt;}
.y5_c00041{bottom:651.684000pt;}
.y4_c00041{bottom:672.077333pt;}
.y3_c00041{bottom:692.574667pt;}
.y2_c00041{bottom:713.138667pt;}
.y1_c00041{bottom:733.500000pt;}
.h1b_c00041{height:33.600000pt;}
.h1a_c00041{height:40.133333pt;}
.h19_c00041{height:42.933333pt;}
.h1d_c00041{height:44.800000pt;}
.h16_c00041{height:45.733333pt;}
.h15_c00041{height:46.666667pt;}
.h17_c00041{height:47.600000pt;}
.h18_c00041{height:49.466667pt;}
.h2_c00041{height:56.933333pt;}
.h11_c00041{height:56.941560pt;}
.h4_c00041{height:57.866667pt;}
.hb_c00041{height:57.874073pt;}
.h9_c00041{height:59.733333pt;}
.h8_c00041{height:61.600000pt;}
.ha_c00041{height:61.607884pt;}
.h14_c00041{height:62.539461pt;}
.hd_c00041{height:62.540368pt;}
.hc_c00041{height:62.541337pt;}
.he_c00041{height:62.545839pt;}
.h13_c00041{height:63.476947pt;}
.h3_c00041{height:64.400000pt;}
.h10_c00041{height:64.409305pt;}
.hf_c00041{height:64.412879pt;}
.h6_c00041{height:65.333333pt;}
.h1c_c00041{height:66.266667pt;}
.h12_c00041{height:67.212129pt;}
.h7_c00041{height:70.000000pt;}
.h5_c00041{height:71.866667pt;}
.h1e_c00041{height:73.733333pt;}
.h0_c00041{height:896.400000pt;}
.h1_c00041{height:896.666667pt;}
.w0_c00041{width:621.333333pt;}
.x0_c00041{left:0.000000pt;}
.xad_c00041{left:74.429333pt;}
.xae_c00041{left:76.382667pt;}
.x93_c00041{left:78.058667pt;}
.x74_c00041{left:78.968000pt;}
.x8a_c00041{left:83.906667pt;}
.xac_c00041{left:91.680000pt;}
.xaf_c00041{left:115.737333pt;}
.x9c_c00041{left:125.118667pt;}
.x7d_c00041{left:126.089333pt;}
.x75_c00041{left:138.073333pt;}
.xb0_c00041{left:138.968000pt;}
.xa2_c00041{left:141.168000pt;}
.x94_c00041{left:155.853333pt;}
.x49_c00041{left:156.942336pt;}
.x6e_c00041{left:158.472000pt;}
.x5e_c00041{left:159.648000pt;}
.x4e_c00041{left:160.671563pt;}
.x16_c00041{left:162.240000pt;}
.x9_c00041{left:163.440000pt;}
.x7e_c00041{left:165.698667pt;}
.x84_c00041{left:170.053333pt;}
.x8d_c00041{left:171.924000pt;}
.x76_c00041{left:173.852000pt;}
.x1_c00041{left:181.680000pt;}
.x69_c00041{left:182.764000pt;}
.x41_c00041{left:183.976000pt;}
.x3c_c00041{left:185.893333pt;}
.x22_c00041{left:186.960000pt;}
.x17_c00041{left:192.240000pt;}
.xb1_c00041{left:194.420000pt;}
.xa3_c00041{left:198.777333pt;}
.x2e_c00041{left:199.920000pt;}
.x2_c00041{left:201.360000pt;}
.x42_c00041{left:202.253333pt;}
.x4f_c00041{left:203.873035pt;}
.xa_c00041{left:206.880000pt;}
.x6f_c00041{left:208.397333pt;}
.xf_c00041{left:210.240000pt;}
.x1d_c00041{left:211.200000pt;}
.x54_c00041{left:212.944000pt;}
.x62_c00041{left:214.591148pt;}
.xa4_c00041{left:215.585333pt;}
.x45_c00041{left:222.000000pt;}
.x3d_c00041{left:223.296000pt;}
.x77_c00041{left:224.542667pt;}
.x57_c00041{left:226.114667pt;}
.x63_c00041{left:227.308051pt;}
.x18_c00041{left:228.960000pt;}
.xb_c00041{left:230.880000pt;}
.x95_c00041{left:233.620000pt;}
.x29_c00041{left:237.360000pt;}
.x3_c00041{left:238.800000pt;}
.x85_c00041{left:240.085333pt;}
.x2f_c00041{left:241.680000pt;}
.x9d_c00041{left:244.153333pt;}
.x4_c00041{left:246.720000pt;}
.x5f_c00041{left:248.462667pt;}
.x7f_c00041{left:249.457333pt;}
.x10_c00041{left:251.040000pt;}
.x64_c00041{left:253.227167pt;}
.x50_c00041{left:256.682112pt;}
.x1e_c00041{left:257.760000pt;}
.x23_c00041{left:259.440000pt;}
.x43_c00041{left:262.474667pt;}
.x11_c00041{left:264.240000pt;}
.x5a_c00041{left:267.438907pt;}
.x46_c00041{left:268.496000pt;}
.x19_c00041{left:270.480000pt;}
.x30_c00041{left:273.360000pt;}
.x37_c00041{left:275.280000pt;}
.x12_c00041{left:277.920000pt;}
.x5b_c00041{left:283.036853pt;}
.x70_c00041{left:284.740000pt;}
.x78_c00041{left:286.453333pt;}
.x67_c00041{left:287.817333pt;}
.x2a_c00041{left:293.040000pt;}
.x9e_c00041{left:294.522667pt;}
.x80_c00041{left:296.482667pt;}
.x5_c00041{left:299.760000pt;}
.xc_c00041{left:302.160000pt;}
.x4a_c00041{left:303.423669pt;}
.x8e_c00041{left:306.490667pt;}
.x31_c00041{left:308.160000pt;}
.x1f_c00041{left:310.080000pt;}
.x38_c00041{left:311.760000pt;}
.x5c_c00041{left:313.586080pt;}
.x55_c00041{left:315.198667pt;}
.x60_c00041{left:317.353333pt;}
.x65_c00041{left:318.519612pt;}
.x6a_c00041{left:321.414667pt;}
.x13_c00041{left:322.320000pt;}
.x1a_c00041{left:325.200000pt;}
.x24_c00041{left:326.880000pt;}
.x3e_c00041{left:329.869333pt;}
.x96_c00041{left:331.946667pt;}
.x81_c00041{left:333.396000pt;}
.x51_c00041{left:336.141749pt;}
.x32_c00041{left:337.920000pt;}
.x68_c00041{left:338.945333pt;}
.x39_c00041{left:339.840000pt;}
.x20_c00041{left:343.920000pt;}
.x79_c00041{left:346.404000pt;}
.x1b_c00041{left:347.760000pt;}
.xd_c00041{left:350.880000pt;}
.x6_c00041{left:352.320000pt;}
.xa5_c00041{left:355.474667pt;}
.x4b_c00041{left:357.659669pt;}
.x97_c00041{left:360.316000pt;}
.x25_c00041{left:362.880000pt;}
.x14_c00041{left:364.320000pt;}
.x9f_c00041{left:365.586667pt;}
.x21_c00041{left:367.680000pt;}
.x8b_c00041{left:368.680000pt;}
.x66_c00041{left:369.647200pt;}
.x56_c00041{left:370.897333pt;}
.x4c_c00041{left:373.014336pt;}
.x7_c00041{left:374.880000pt;}
.x2b_c00041{left:376.320000pt;}
.x33_c00041{left:377.760000pt;}
.x44_c00041{left:380.584000pt;}
.xa0_c00041{left:382.404000pt;}
.x8c_c00041{left:383.318667pt;}
.x52_c00041{left:384.629067pt;}
.x3a_c00041{left:385.920000pt;}
.x47_c00041{left:388.764000pt;}
.x1c_c00041{left:391.440000pt;}
.x86_c00041{left:393.112000pt;}
.x8f_c00041{left:395.618667pt;}
.x26_c00041{left:399.600000pt;}
.x6b_c00041{left:401.112000pt;}
.x7a_c00041{left:402.806667pt;}
.xe_c00041{left:404.640000pt;}
.x3b_c00041{left:406.800000pt;}
.x48_c00041{left:409.153333pt;}
.x2c_c00041{left:411.600000pt;}
.x3f_c00041{left:412.880000pt;}
.x53_c00041{left:414.627947pt;}
.x34_c00041{left:415.680000pt;}
.x8_c00041{left:418.320000pt;}
.x61_c00041{left:419.850667pt;}
.x6c_c00041{left:421.753333pt;}
.x4d_c00041{left:424.131669pt;}
.xaa_c00041{left:426.338667pt;}
.x5d_c00041{left:430.396080pt;}
.x71_c00041{left:432.033333pt;}
.x15_c00041{left:435.360000pt;}
.x58_c00041{left:437.565333pt;}
.x27_c00041{left:439.680000pt;}
.x35_c00041{left:445.200000pt;}
.x98_c00041{left:447.430667pt;}
.x2d_c00041{left:450.480000pt;}
.x87_c00041{left:452.489333pt;}
.x82_c00041{left:456.572000pt;}
.x28_c00041{left:461.760000pt;}
.x40_c00041{left:463.505333pt;}
.x90_c00041{left:464.969333pt;}
.x99_c00041{left:467.918667pt;}
.x7b_c00041{left:477.912000pt;}
.x36_c00041{left:482.640000pt;}
.x6d_c00041{left:483.849333pt;}
.x72_c00041{left:486.974667pt;}
.x88_c00041{left:489.925333pt;}
.x9a_c00041{left:491.386667pt;}
.xa6_c00041{left:493.236000pt;}
.x91_c00041{left:501.429333pt;}
.x59_c00041{left:502.636000pt;}
.x89_c00041{left:503.653333pt;}
.x73_c00041{left:510.720000pt;}
.x9b_c00041{left:516.356000pt;}
.x83_c00041{left:518.013333pt;}
.xa1_c00041{left:527.108000pt;}
.xa7_c00041{left:528.500000pt;}
.x92_c00041{left:529.781333pt;}
.xa9_c00041{left:537.226667pt;}
.x7c_c00041{left:545.002667pt;}
.xa8_c00041{left:570.720000pt;}
.xab_c00041{left:588.284000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m10a_c00042{transform:matrix(0.014253,0.000442,-0.007746,0.249880,0,0);-ms-transform:matrix(0.014253,0.000442,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.014253,0.000442,-0.007746,0.249880,0,0);}
.m121_c00042{transform:matrix(0.015938,0.000478,-0.007497,0.249888,0,0);-ms-transform:matrix(0.015938,0.000478,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.015938,0.000478,-0.007497,0.249888,0,0);}
.m93_c00042{transform:matrix(0.017968,0.000234,-0.003250,0.249979,0,0);-ms-transform:matrix(0.017968,0.000234,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.017968,0.000234,-0.003250,0.249979,0,0);}
.mdd_c00042{transform:matrix(0.018174,0.000454,-0.006248,0.249922,0,0);-ms-transform:matrix(0.018174,0.000454,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.018174,0.000454,-0.006248,0.249922,0,0);}
.mfd_c00042{transform:matrix(0.051600,0.001756,-0.008504,0.249855,0,0);-ms-transform:matrix(0.051600,0.001756,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.051600,0.001756,-0.008504,0.249855,0,0);}
.m69_c00042{transform:matrix(0.116245,0.001511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.116245,0.001511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.116245,0.001511,-0.003250,0.249979,0,0);}
.m34_c00042{transform:matrix(0.127054,0.001271,-0.002500,0.249988,0,0);-ms-transform:matrix(0.127054,0.001271,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.127054,0.001271,-0.002500,0.249988,0,0);}
.mb3_c00042{transform:matrix(0.132119,0.001718,-0.003250,0.249979,0,0);-ms-transform:matrix(0.132119,0.001718,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.132119,0.001718,-0.003250,0.249979,0,0);}
.m70_c00042{transform:matrix(0.132384,0.001721,-0.003250,0.249979,0,0);-ms-transform:matrix(0.132384,0.001721,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.132384,0.001721,-0.003250,0.249979,0,0);}
.m68_c00042{transform:matrix(0.137488,0.001787,-0.003250,0.249979,0,0);-ms-transform:matrix(0.137488,0.001787,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.137488,0.001787,-0.003250,0.249979,0,0);}
.m8a_c00042{transform:matrix(0.140463,0.001826,-0.003250,0.249979,0,0);-ms-transform:matrix(0.140463,0.001826,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.140463,0.001826,-0.003250,0.249979,0,0);}
.m18_c00042{transform:matrix(0.146168,0.001462,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146168,0.001462,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146168,0.001462,-0.002500,0.249988,0,0);}
.maf_c00042{transform:matrix(0.146698,0.001907,-0.003250,0.249979,0,0);-ms-transform:matrix(0.146698,0.001907,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.146698,0.001907,-0.003250,0.249979,0,0);}
.m78_c00042{transform:matrix(0.148857,0.001935,-0.003250,0.249979,0,0);-ms-transform:matrix(0.148857,0.001935,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.148857,0.001935,-0.003250,0.249979,0,0);}
.mf_c00042{transform:matrix(0.149168,0.001492,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149168,0.001492,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149168,0.001492,-0.002500,0.249988,0,0);}
.mb9_c00042{transform:matrix(0.150687,0.001959,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150687,0.001959,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150687,0.001959,-0.003250,0.249979,0,0);}
.mcd_c00042{transform:matrix(0.150757,0.003618,-0.005998,0.249928,0,0);-ms-transform:matrix(0.150757,0.003618,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.150757,0.003618,-0.005998,0.249928,0,0);}
.me7_c00042{transform:matrix(0.151553,0.003789,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151553,0.003789,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151553,0.003789,-0.006248,0.249922,0,0);}
.m12_c00042{transform:matrix(0.151797,0.001518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151797,0.001518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151797,0.001518,-0.002500,0.249988,0,0);}
.mbf_c00042{transform:matrix(0.152822,0.001987,-0.003250,0.249979,0,0);-ms-transform:matrix(0.152822,0.001987,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.152822,0.001987,-0.003250,0.249979,0,0);}
.m1e_c00042{transform:matrix(0.153132,0.001531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153132,0.001531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153132,0.001531,-0.002500,0.249988,0,0);}
.m54_c00042{transform:matrix(0.153672,0.001537,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153672,0.001537,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153672,0.001537,-0.002500,0.249988,0,0);}
.md7_c00042{transform:matrix(0.153771,0.003690,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153771,0.003690,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153771,0.003690,-0.005998,0.249928,0,0);}
.m20_c00042{transform:matrix(0.154517,0.001545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154517,0.001545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154517,0.001545,-0.002500,0.249988,0,0);}
.mc6_c00042{transform:matrix(0.156305,0.003751,-0.005998,0.249928,0,0);-ms-transform:matrix(0.156305,0.003751,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.156305,0.003751,-0.005998,0.249928,0,0);}
.m48_c00042{transform:matrix(0.156387,0.001564,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156387,0.001564,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156387,0.001564,-0.002500,0.249988,0,0);}
.m31_c00042{transform:matrix(0.156672,0.001567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156672,0.001567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156672,0.001567,-0.002500,0.249988,0,0);}
.m76_c00042{transform:matrix(0.157042,0.002042,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157042,0.002042,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157042,0.002042,-0.003250,0.249979,0,0);}
.mdc_c00042{transform:matrix(0.157555,0.003781,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157555,0.003781,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157555,0.003781,-0.005998,0.249928,0,0);}
.me3_c00042{transform:matrix(0.157981,0.003950,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157981,0.003950,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157981,0.003950,-0.006248,0.249922,0,0);}
.mf1_c00042{transform:matrix(0.158700,0.003968,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158700,0.003968,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158700,0.003968,-0.006248,0.249922,0,0);}
.md_c00042{transform:matrix(0.158717,0.001587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158717,0.001587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158717,0.001587,-0.002500,0.249988,0,0);}
.m5a_c00042{transform:matrix(0.158802,0.001588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158802,0.001588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158802,0.001588,-0.002500,0.249988,0,0);}
.m73_c00042{transform:matrix(0.158922,0.002066,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158922,0.002066,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158922,0.002066,-0.003250,0.249979,0,0);}
.m9e_c00042{transform:matrix(0.160671,0.002089,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160671,0.002089,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160671,0.002089,-0.003250,0.249979,0,0);}
.mbd_c00042{transform:matrix(0.161056,0.002094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161056,0.002094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161056,0.002094,-0.003250,0.249979,0,0);}
.m81_c00042{transform:matrix(0.161351,0.002098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161351,0.002098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161351,0.002098,-0.003250,0.249979,0,0);}
.mf4_c00042{transform:matrix(0.161560,0.004039,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161560,0.004039,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161560,0.004039,-0.006248,0.249922,0,0);}
.m29_c00042{transform:matrix(0.161572,0.001616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161572,0.001616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161572,0.001616,-0.002500,0.249988,0,0);}
.m47_c00042{transform:matrix(0.161962,0.001620,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161962,0.001620,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161962,0.001620,-0.002500,0.249988,0,0);}
.m77_c00042{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);}
.ma7_c00042{transform:matrix(0.163266,0.002122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163266,0.002122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163266,0.002122,-0.003250,0.249979,0,0);}
.m11a_c00042{transform:matrix(0.163406,0.004902,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163406,0.004902,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163406,0.004902,-0.007497,0.249888,0,0);}
.m79_c00042{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);}
.m7f_c00042{transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);}
.me8_c00042{transform:matrix(0.164539,0.004113,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164539,0.004113,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164539,0.004113,-0.006248,0.249922,0,0);}
.m2f_c00042{transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);}
.ma5_c00042{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);}
.mb_c00042{transform:matrix(0.166387,0.001664,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166387,0.001664,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166387,0.001664,-0.002500,0.249988,0,0);}
.mb4_c00042{transform:matrix(0.166476,0.002164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166476,0.002164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166476,0.002164,-0.003250,0.249979,0,0);}
.mab_c00042{transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);}
.m2d_c00042{transform:matrix(0.166942,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166942,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166942,0.001669,-0.002500,0.249988,0,0);}
.m4e_c00042{transform:matrix(0.166962,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166962,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166962,0.001670,-0.002500,0.249988,0,0);}
.mef_c00042{transform:matrix(0.167058,0.004176,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167058,0.004176,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167058,0.004176,-0.006248,0.249922,0,0);}
.m51_c00042{transform:matrix(0.167897,0.001679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167897,0.001679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167897,0.001679,-0.002500,0.249988,0,0);}
.md2_c00042{transform:matrix(0.168701,0.004049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168701,0.004049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168701,0.004049,-0.005998,0.249928,0,0);}
.mbc_c00042{transform:matrix(0.169836,0.002208,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169836,0.002208,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169836,0.002208,-0.003250,0.249979,0,0);}
.mbe_c00042{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);}
.m96_c00042{transform:matrix(0.170746,0.002220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170746,0.002220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170746,0.002220,-0.003250,0.249979,0,0);}
.m1_c00042{transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);}
.m41_c00042{transform:matrix(0.171716,0.001717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171716,0.001717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171716,0.001717,-0.002500,0.249988,0,0);}
.m9c_c00042{transform:matrix(0.171990,0.002236,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171990,0.002236,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171990,0.002236,-0.003250,0.249979,0,0);}
.m103_c00042{transform:matrix(0.172735,0.005879,-0.008504,0.249855,0,0);-ms-transform:matrix(0.172735,0.005879,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.172735,0.005879,-0.008504,0.249855,0,0);}
.m33_c00042{transform:matrix(0.172776,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172776,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172776,0.001728,-0.002500,0.249988,0,0);}
.mee_c00042{transform:matrix(0.172941,0.004324,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172941,0.004324,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172941,0.004324,-0.006248,0.249922,0,0);}
.m97_c00042{transform:matrix(0.173145,0.002251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173145,0.002251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173145,0.002251,-0.003250,0.249979,0,0);}
.m106_c00042{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);}
.mad_c00042{transform:matrix(0.173755,0.002259,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173755,0.002259,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173755,0.002259,-0.003250,0.249979,0,0);}
.mc_c00042{transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);}
.m36_c00042{transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);}
.mb5_c00042{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);}
.m4b_c00042{transform:matrix(0.174901,0.001749,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174901,0.001749,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174901,0.001749,-0.002500,0.249988,0,0);}
.m3a_c00042{transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175116,0.001751,-0.002500,0.249988,0,0);}
.m6a_c00042{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);}
.m3d_c00042{transform:matrix(0.175881,0.001759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175881,0.001759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175881,0.001759,-0.002500,0.249988,0,0);}
.m45_c00042{transform:matrix(0.175976,0.001760,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175976,0.001760,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175976,0.001760,-0.002500,0.249988,0,0);}
.m49_c00042{transform:matrix(0.176131,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176131,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176131,0.001761,-0.002500,0.249988,0,0);}
.mc4_c00042{transform:matrix(0.176470,0.002294,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176470,0.002294,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176470,0.002294,-0.003250,0.249979,0,0);}
.m101_c00042{transform:matrix(0.176903,0.006021,-0.008504,0.249855,0,0);-ms-transform:matrix(0.176903,0.006021,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.176903,0.006021,-0.008504,0.249855,0,0);}
.mb0_c00042{transform:matrix(0.177065,0.002302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177065,0.002302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177065,0.002302,-0.003250,0.249979,0,0);}
.m55_c00042{transform:matrix(0.178206,0.001782,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178206,0.001782,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178206,0.001782,-0.002500,0.249988,0,0);}
.m5b_c00042{transform:matrix(0.178411,0.001784,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178411,0.001784,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178411,0.001784,-0.002500,0.249988,0,0);}
.m46_c00042{transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);}
.m9f_c00042{transform:matrix(0.178895,0.002326,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178895,0.002326,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178895,0.002326,-0.003250,0.249979,0,0);}
.m9_c00042{transform:matrix(0.179751,0.001798,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179751,0.001798,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179751,0.001798,-0.002500,0.249988,0,0);}
.mce_c00042{transform:matrix(0.179848,0.004316,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179848,0.004316,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179848,0.004316,-0.005998,0.249928,0,0);}
.m88_c00042{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);}
.m83_c00042{transform:matrix(0.179995,0.002340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179995,0.002340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179995,0.002340,-0.003250,0.249979,0,0);}
.m100_c00042{transform:matrix(0.180610,0.006147,-0.008504,0.249855,0,0);-ms-transform:matrix(0.180610,0.006147,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.180610,0.006147,-0.008504,0.249855,0,0);}
.m6d_c00042{transform:matrix(0.180790,0.002350,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180790,0.002350,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180790,0.002350,-0.003250,0.249979,0,0);}
.m1b_c00042{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);}
.me_c00042{transform:matrix(0.181256,0.001813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181256,0.001813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181256,0.001813,-0.002500,0.249988,0,0);}
.m91_c00042{transform:matrix(0.181545,0.002360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181545,0.002360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181545,0.002360,-0.003250,0.249979,0,0);}
.ma9_c00042{transform:matrix(0.181565,0.002360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181565,0.002360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181565,0.002360,-0.003250,0.249979,0,0);}
.m7e_c00042{transform:matrix(0.181660,0.002362,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181660,0.002362,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181660,0.002362,-0.003250,0.249979,0,0);}
.m28_c00042{transform:matrix(0.181826,0.001818,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181826,0.001818,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181826,0.001818,-0.002500,0.249988,0,0);}
.m11f_c00042{transform:matrix(0.181833,0.005455,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181833,0.005455,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181833,0.005455,-0.007497,0.249888,0,0);}
.m123_c00042{transform:matrix(0.182113,0.005463,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182113,0.005463,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182113,0.005463,-0.007497,0.249888,0,0);}
.mb1_c00042{transform:matrix(0.182705,0.002375,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182705,0.002375,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182705,0.002375,-0.003250,0.249979,0,0);}
.m7a_c00042{transform:matrix(0.183145,0.002381,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183145,0.002381,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183145,0.002381,-0.003250,0.249979,0,0);}
.m15_c00042{transform:matrix(0.183221,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183221,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183221,0.001832,-0.002500,0.249988,0,0);}
.m10e_c00042{transform:matrix(0.183342,0.005684,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183342,0.005684,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183342,0.005684,-0.007746,0.249880,0,0);}
.mf9_c00042{transform:matrix(0.183512,0.005689,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183512,0.005689,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183512,0.005689,-0.007746,0.249880,0,0);}
.ma2_c00042{transform:matrix(0.183514,0.002386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183514,0.002386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183514,0.002386,-0.003250,0.249979,0,0);}
.m71_c00042{transform:matrix(0.184079,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184079,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184079,0.002393,-0.003250,0.249979,0,0);}
.mae_c00042{transform:matrix(0.184499,0.002398,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184499,0.002398,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184499,0.002398,-0.003250,0.249979,0,0);}
.ma3_c00042{transform:matrix(0.184619,0.002400,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184619,0.002400,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184619,0.002400,-0.003250,0.249979,0,0);}
.mb6_c00042{transform:matrix(0.184774,0.002402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184774,0.002402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184774,0.002402,-0.003250,0.249979,0,0);}
.me6_c00042{transform:matrix(0.184982,0.004625,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184982,0.004625,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184982,0.004625,-0.006248,0.249922,0,0);}
.me5_c00042{transform:matrix(0.185047,0.004626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185047,0.004626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185047,0.004626,-0.006248,0.249922,0,0);}
.m1d_c00042{transform:matrix(0.185306,0.001853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185306,0.001853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185306,0.001853,-0.002500,0.249988,0,0);}
.m1a_c00042{transform:matrix(0.185456,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185456,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185456,0.001855,-0.002500,0.249988,0,0);}
.mcf_c00042{transform:matrix(0.185602,0.004454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185602,0.004454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185602,0.004454,-0.005998,0.249928,0,0);}
.m22_c00042{transform:matrix(0.185691,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185691,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185691,0.001857,-0.002500,0.249988,0,0);}
.mff_c00042{transform:matrix(0.185712,0.006321,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185712,0.006321,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185712,0.006321,-0.008504,0.249855,0,0);}
.m3f_c00042{transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);}
.m7d_c00042{transform:matrix(0.185744,0.002415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185744,0.002415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185744,0.002415,-0.003250,0.249979,0,0);}
.m9b_c00042{transform:matrix(0.185894,0.002417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185894,0.002417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185894,0.002417,-0.003250,0.249979,0,0);}
.m43_c00042{transform:matrix(0.186211,0.001862,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186211,0.001862,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186211,0.001862,-0.002500,0.249988,0,0);}
.m39_c00042{transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);}
.m86_c00042{transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);}
.m63_c00042{transform:matrix(0.186441,0.001864,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186441,0.001864,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186441,0.001864,-0.002500,0.249988,0,0);}
.m4d_c00042{transform:matrix(0.186871,0.001869,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186871,0.001869,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186871,0.001869,-0.002500,0.249988,0,0);}
.md4_c00042{transform:matrix(0.186936,0.004486,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186936,0.004486,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186936,0.004486,-0.005998,0.249928,0,0);}
.mcc_c00042{transform:matrix(0.187111,0.004491,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187111,0.004491,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187111,0.004491,-0.005998,0.249928,0,0);}
.m11c_c00042{transform:matrix(0.187286,0.005619,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187286,0.005619,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187286,0.005619,-0.007497,0.249888,0,0);}
.m124_c00042{transform:matrix(0.187431,0.005623,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187431,0.005623,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187431,0.005623,-0.007497,0.249888,0,0);}
.m82_c00042{transform:matrix(0.187564,0.002438,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187564,0.002438,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187564,0.002438,-0.003250,0.249979,0,0);}
.m75_c00042{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);}
.md8_c00042{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);}
.mc0_c00042{transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);}
.mde_c00042{transform:matrix(0.188496,0.004712,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188496,0.004712,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188496,0.004712,-0.006248,0.249922,0,0);}
.mb2_c00042{transform:matrix(0.188969,0.002457,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188969,0.002457,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188969,0.002457,-0.003250,0.249979,0,0);}
.md0_c00042{transform:matrix(0.189076,0.004538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189076,0.004538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189076,0.004538,-0.005998,0.249928,0,0);}
.mf7_c00042{transform:matrix(0.189149,0.005864,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189149,0.005864,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189149,0.005864,-0.007746,0.249880,0,0);}
.m107_c00042{transform:matrix(0.189345,0.005680,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189345,0.005680,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189345,0.005680,-0.007497,0.249888,0,0);}
.mf5_c00042{transform:matrix(0.189446,0.004736,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189446,0.004736,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189446,0.004736,-0.006248,0.249922,0,0);}
.m2b_c00042{transform:matrix(0.189621,0.001896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189621,0.001896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189621,0.001896,-0.002500,0.249988,0,0);}
.mca_c00042{transform:matrix(0.189825,0.004556,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189825,0.004556,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189825,0.004556,-0.005998,0.249928,0,0);}
.mc7_c00042{transform:matrix(0.189845,0.004556,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189845,0.004556,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189845,0.004556,-0.005998,0.249928,0,0);}
.m16_c00042{transform:matrix(0.189861,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189861,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189861,0.001899,-0.002500,0.249988,0,0);}
.me0_c00042{transform:matrix(0.189951,0.004749,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189951,0.004749,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189951,0.004749,-0.006248,0.249922,0,0);}
.mc9_c00042{transform:matrix(0.190255,0.004566,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190255,0.004566,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190255,0.004566,-0.005998,0.249928,0,0);}
.m13_c00042{transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);}
.me4_c00042{transform:matrix(0.190386,0.004760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190386,0.004760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190386,0.004760,-0.006248,0.249922,0,0);}
.m109_c00042{transform:matrix(0.190479,0.005714,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190479,0.005714,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190479,0.005714,-0.007497,0.249888,0,0);}
.m10b_c00042{transform:matrix(0.190563,0.005907,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190563,0.005907,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190563,0.005907,-0.007746,0.249880,0,0);}
.m89_c00042{transform:matrix(0.190624,0.002478,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190624,0.002478,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190624,0.002478,-0.003250,0.249979,0,0);}
.m84_c00042{transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);}
.m21_c00042{transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);}
.m2e_c00042{transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);}
.m1c_c00042{transform:matrix(0.191180,0.001912,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191180,0.001912,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191180,0.001912,-0.002500,0.249988,0,0);}
.m108_c00042{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);}
.m42_c00042{transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);}
.m114_c00042{transform:matrix(0.191949,0.005758,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191949,0.005758,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191949,0.005758,-0.007497,0.249888,0,0);}
.m19_c00042{transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);}
.ma1_c00042{transform:matrix(0.192004,0.002496,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192004,0.002496,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192004,0.002496,-0.003250,0.249979,0,0);}
.m3c_c00042{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);}
.mf0_c00042{transform:matrix(0.193435,0.004836,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193435,0.004836,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193435,0.004836,-0.006248,0.249922,0,0);}
.mf2_c00042{transform:matrix(0.193535,0.004838,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193535,0.004838,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193535,0.004838,-0.006248,0.249922,0,0);}
.m104_c00042{transform:matrix(0.193918,0.005818,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193918,0.005818,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193918,0.005818,-0.007497,0.249888,0,0);}
.m74_c00042{transform:matrix(0.193939,0.002521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193939,0.002521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193939,0.002521,-0.003250,0.249979,0,0);}
.m57_c00042{transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);}
.m11_c00042{transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);}
.m5e_c00042{transform:matrix(0.194220,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194220,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194220,0.001942,-0.002500,0.249988,0,0);}
.m1f_c00042{transform:matrix(0.194225,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194225,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194225,0.001942,-0.002500,0.249988,0,0);}
.m85_c00042{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);}
.mac_c00042{transform:matrix(0.195239,0.002538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195239,0.002538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195239,0.002538,-0.003250,0.249979,0,0);}
.m11d_c00042{transform:matrix(0.195337,0.005860,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195337,0.005860,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195337,0.005860,-0.007497,0.249888,0,0);}
.m52_c00042{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);}
.mc3_c00042{transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);}
.m4c_c00042{transform:matrix(0.195675,0.001957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195675,0.001957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195675,0.001957,-0.002500,0.249988,0,0);}
.m8c_c00042{transform:matrix(0.196368,0.002553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196368,0.002553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196368,0.002553,-0.003250,0.249979,0,0);}
.mc5_c00042{transform:matrix(0.196488,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196488,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196488,0.002554,-0.003250,0.249979,0,0);}
.mfa_c00042{transform:matrix(0.196606,0.006095,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196606,0.006095,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196606,0.006095,-0.007746,0.249880,0,0);}
.m17_c00042{transform:matrix(0.196645,0.001966,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196645,0.001966,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196645,0.001966,-0.002500,0.249988,0,0);}
.m50_c00042{transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);}
.mbb_c00042{transform:matrix(0.196818,0.002559,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196818,0.002559,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196818,0.002559,-0.003250,0.249979,0,0);}
.m122_c00042{transform:matrix(0.196906,0.005907,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196906,0.005907,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196906,0.005907,-0.007497,0.249888,0,0);}
.md1_c00042{transform:matrix(0.196918,0.004726,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196918,0.004726,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196918,0.004726,-0.005998,0.249928,0,0);}
.m95_c00042{transform:matrix(0.197563,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197563,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197563,0.002568,-0.003250,0.249979,0,0);}
.m110_c00042{transform:matrix(0.197631,0.005929,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197631,0.005929,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197631,0.005929,-0.007497,0.249888,0,0);}
.m116_c00042{transform:matrix(0.197926,0.005938,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197926,0.005938,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197926,0.005938,-0.007497,0.249888,0,0);}
.m8f_c00042{transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);}
.m27_c00042{transform:matrix(0.198165,0.001982,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198165,0.001982,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198165,0.001982,-0.002500,0.249988,0,0);}
.m80_c00042{transform:matrix(0.198188,0.002576,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198188,0.002576,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198188,0.002576,-0.003250,0.249979,0,0);}
.me1_c00042{transform:matrix(0.198668,0.004967,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198668,0.004967,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198668,0.004967,-0.006248,0.249922,0,0);}
.m58_c00042{transform:matrix(0.198940,0.001989,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198940,0.001989,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198940,0.001989,-0.002500,0.249988,0,0);}
.m30_c00042{transform:matrix(0.198970,0.001990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198970,0.001990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198970,0.001990,-0.002500,0.249988,0,0);}
.ma4_c00042{transform:matrix(0.199018,0.002587,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199018,0.002587,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199018,0.002587,-0.003250,0.249979,0,0);}
.m53_c00042{transform:matrix(0.199550,0.001996,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199550,0.001996,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199550,0.001996,-0.002500,0.249988,0,0);}
.mf8_c00042{transform:matrix(0.200004,0.006200,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200004,0.006200,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200004,0.006200,-0.007746,0.249880,0,0);}
.m99_c00042{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);}
.m8b_c00042{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);}
.m118_c00042{transform:matrix(0.200390,0.006012,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200390,0.006012,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200390,0.006012,-0.007497,0.249888,0,0);}
.m4a_c00042{transform:matrix(0.201100,0.002011,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201100,0.002011,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201100,0.002011,-0.002500,0.249988,0,0);}
.m8d_c00042{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);}
.mba_c00042{transform:matrix(0.201703,0.002622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201703,0.002622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201703,0.002622,-0.003250,0.249979,0,0);}
.m3e_c00042{transform:matrix(0.202230,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202230,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202230,0.002022,-0.002500,0.249988,0,0);}
.m9d_c00042{transform:matrix(0.202708,0.002635,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202708,0.002635,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202708,0.002635,-0.003250,0.249979,0,0);}
.mf3_c00042{transform:matrix(0.203142,0.005079,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203142,0.005079,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203142,0.005079,-0.006248,0.249922,0,0);}
.m125_c00042{transform:matrix(0.203219,0.006097,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203219,0.006097,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203219,0.006097,-0.007497,0.249888,0,0);}
.mfc_c00042{transform:matrix(0.203377,0.006305,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203377,0.006305,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203377,0.006305,-0.007746,0.249880,0,0);}
.m102_c00042{transform:matrix(0.203727,0.006934,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203727,0.006934,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203727,0.006934,-0.008504,0.249855,0,0);}
.mc1_c00042{transform:matrix(0.203803,0.002649,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203803,0.002649,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203803,0.002649,-0.003250,0.249979,0,0);}
.mda_c00042{transform:matrix(0.204666,0.004912,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204666,0.004912,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204666,0.004912,-0.005998,0.249928,0,0);}
.m112_c00042{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);}
.mf6_c00042{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);}
.m8e_c00042{transform:matrix(0.205568,0.002672,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205568,0.002672,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205568,0.002672,-0.003250,0.249979,0,0);}
.m113_c00042{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);}
.m35_c00042{transform:matrix(0.205770,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205770,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205770,0.002058,-0.002500,0.249988,0,0);}
.m2a_c00042{transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205875,0.002059,-0.002500,0.249988,0,0);}
.md3_c00042{transform:matrix(0.206376,0.004953,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206376,0.004953,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206376,0.004953,-0.005998,0.249928,0,0);}
.m11e_c00042{transform:matrix(0.206597,0.006198,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206597,0.006198,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206597,0.006198,-0.007497,0.249888,0,0);}
.mb8_c00042{transform:matrix(0.207157,0.002693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207157,0.002693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207157,0.002693,-0.003250,0.249979,0,0);}
.mb7_c00042{transform:matrix(0.207767,0.002701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207767,0.002701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207767,0.002701,-0.003250,0.249979,0,0);}
.m10_c00042{transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);}
.md9_c00042{transform:matrix(0.209335,0.005024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209335,0.005024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209335,0.005024,-0.005998,0.249928,0,0);}
.m59_c00042{transform:matrix(0.209375,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209375,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209375,0.002094,-0.002500,0.249988,0,0);}
.m87_c00042{transform:matrix(0.209487,0.002723,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209487,0.002723,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209487,0.002723,-0.003250,0.249979,0,0);}
.mcb_c00042{transform:matrix(0.209580,0.005030,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209580,0.005030,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209580,0.005030,-0.005998,0.249928,0,0);}
.m10f_c00042{transform:matrix(0.209629,0.006499,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209629,0.006499,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209629,0.006499,-0.007746,0.249880,0,0);}
.maa_c00042{transform:matrix(0.210197,0.002733,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210197,0.002733,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210197,0.002733,-0.003250,0.249979,0,0);}
.m10d_c00042{transform:matrix(0.210974,0.006540,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210974,0.006540,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210974,0.006540,-0.007746,0.249880,0,0);}
.m37_c00042{transform:matrix(0.211094,0.002111,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211094,0.002111,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211094,0.002111,-0.002500,0.249988,0,0);}
.mdb_c00042{transform:matrix(0.211434,0.005074,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211434,0.005074,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211434,0.005074,-0.005998,0.249928,0,0);}
.md6_c00042{transform:matrix(0.212804,0.005107,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212804,0.005107,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212804,0.005107,-0.005998,0.249928,0,0);}
.m4f_c00042{transform:matrix(0.214779,0.002148,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214779,0.002148,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214779,0.002148,-0.002500,0.249988,0,0);}
.m4_c00042{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);}
.ma6_c00042{transform:matrix(0.214932,0.002794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214932,0.002794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214932,0.002794,-0.003250,0.249979,0,0);}
.m90_c00042{transform:matrix(0.215157,0.002797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215157,0.002797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215157,0.002797,-0.003250,0.249979,0,0);}
.m6b_c00042{transform:matrix(0.215542,0.002802,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215542,0.002802,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215542,0.002802,-0.003250,0.249979,0,0);}
.m11b_c00042{transform:matrix(0.215558,0.006467,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215558,0.006467,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215558,0.006467,-0.007497,0.249888,0,0);}
.ma8_c00042{transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);}
.m98_c00042{transform:matrix(0.215602,0.002803,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215602,0.002803,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215602,0.002803,-0.003250,0.249979,0,0);}
.m2c_c00042{transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);}
.m115_c00042{transform:matrix(0.217517,0.006526,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217517,0.006526,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217517,0.006526,-0.007497,0.249888,0,0);}
.mfe_c00042{transform:matrix(0.217964,0.007418,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217964,0.007418,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217964,0.007418,-0.008504,0.249855,0,0);}
.m14_c00042{transform:matrix(0.219604,0.002196,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219604,0.002196,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219604,0.002196,-0.002500,0.249988,0,0);}
.m119_c00042{transform:matrix(0.219616,0.006588,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219616,0.006588,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219616,0.006588,-0.007497,0.249888,0,0);}
.ma0_c00042{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);}
.med_c00042{transform:matrix(0.219931,0.005498,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219931,0.005498,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219931,0.005498,-0.006248,0.249922,0,0);}
.m7c_c00042{transform:matrix(0.221286,0.002877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221286,0.002877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221286,0.002877,-0.003250,0.249979,0,0);}
.mc8_c00042{transform:matrix(0.221566,0.005318,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221566,0.005318,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221566,0.005318,-0.005998,0.249928,0,0);}
.m111_c00042{transform:matrix(0.223664,0.006710,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223664,0.006710,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223664,0.006710,-0.007497,0.249888,0,0);}
.me9_c00042{transform:matrix(0.224835,0.005621,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224835,0.005621,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224835,0.005621,-0.006248,0.249922,0,0);}
.m72_c00042{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);}
.m38_c00042{transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);}
.mdf_c00042{transform:matrix(0.228444,0.005711,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228444,0.005711,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228444,0.005711,-0.006248,0.249922,0,0);}
.m23_c00042{transform:matrix(0.228809,0.002288,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228809,0.002288,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228809,0.002288,-0.002500,0.249988,0,0);}
.me2_c00042{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);}
.m94_c00042{transform:matrix(0.230151,0.002992,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230151,0.002992,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230151,0.002992,-0.003250,0.249979,0,0);}
.m7b_c00042{transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);}
.m40_c00042{transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);}
.m62_c00042{transform:matrix(0.231953,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231953,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231953,0.002320,-0.002500,0.249988,0,0);}
.m92_c00042{transform:matrix(0.232720,0.003025,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232720,0.003025,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232720,0.003025,-0.003250,0.249979,0,0);}
.meb_c00042{transform:matrix(0.232832,0.005821,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232832,0.005821,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232832,0.005821,-0.006248,0.249922,0,0);}
.m26_c00042{transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);}
.m9a_c00042{transform:matrix(0.234035,0.003042,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234035,0.003042,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234035,0.003042,-0.003250,0.249979,0,0);}
.m66_c00042{transform:matrix(0.234713,0.002347,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234713,0.002347,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234713,0.002347,-0.002500,0.249988,0,0);}
.m25_c00042{transform:matrix(0.235053,0.002351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235053,0.002351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235053,0.002351,-0.002500,0.249988,0,0);}
.m60_c00042{transform:matrix(0.235698,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235698,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235698,0.002357,-0.002500,0.249988,0,0);}
.mea_c00042{transform:matrix(0.236586,0.005915,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236586,0.005915,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236586,0.005915,-0.006248,0.249922,0,0);}
.m56_c00042{transform:matrix(0.237043,0.002370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237043,0.002370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237043,0.002370,-0.002500,0.249988,0,0);}
.mfb_c00042{transform:matrix(0.238051,0.007380,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238051,0.007380,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238051,0.007380,-0.007746,0.249880,0,0);}
.mc2_c00042{transform:matrix(0.238335,0.003098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238335,0.003098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238335,0.003098,-0.003250,0.249979,0,0);}
.m10c_c00042{transform:matrix(0.238520,0.007394,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238520,0.007394,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238520,0.007394,-0.007746,0.249880,0,0);}
.m32_c00042{transform:matrix(0.243313,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243313,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243313,0.002433,-0.002500,0.249988,0,0);}
.m120_c00042{transform:matrix(0.244170,0.007325,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244170,0.007325,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244170,0.007325,-0.007497,0.249888,0,0);}
.m117_c00042{transform:matrix(0.244215,0.007326,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244215,0.007326,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244215,0.007326,-0.007497,0.249888,0,0);}
.m105_c00042{transform:matrix(0.246169,0.007385,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246169,0.007385,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246169,0.007385,-0.007497,0.249888,0,0);}
.m44_c00042{transform:matrix(0.251422,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251422,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251422,0.002514,-0.002500,0.249988,0,0);}
.mec_c00042{transform:matrix(0.255440,0.006386,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255440,0.006386,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255440,0.006386,-0.006248,0.249922,0,0);}
.m65_c00042{transform:matrix(0.258817,0.002588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258817,0.002588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258817,0.002588,-0.002500,0.249988,0,0);}
.m67_c00042{transform:matrix(0.264823,0.003443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264823,0.003443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264823,0.003443,-0.003250,0.249979,0,0);}
.md5_c00042{transform:matrix(0.269028,0.006457,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269028,0.006457,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269028,0.006457,-0.005998,0.249928,0,0);}
.m61_c00042{transform:matrix(0.272601,0.002726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272601,0.002726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272601,0.002726,-0.002500,0.249988,0,0);}
.m6c_c00042{transform:matrix(0.272887,0.003548,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272887,0.003548,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272887,0.003548,-0.003250,0.249979,0,0);}
.m3b_c00042{transform:matrix(0.272926,0.002729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272926,0.002729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272926,0.002729,-0.002500,0.249988,0,0);}
.m8_c00042{transform:matrix(0.279184,0.004188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279184,0.004188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279184,0.004188,-0.003750,0.249972,0,0);}
.m6f_c00042{transform:matrix(0.281851,0.003664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281851,0.003664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281851,0.003664,-0.003250,0.249979,0,0);}
.m64_c00042{transform:matrix(0.307635,0.003076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.307635,0.003076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.307635,0.003076,-0.002500,0.249988,0,0);}
.m5d_c00042{transform:matrix(0.332293,0.003323,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332293,0.003323,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332293,0.003323,-0.002500,0.249988,0,0);}
.m24_c00042{transform:matrix(0.334813,0.003348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.334813,0.003348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.334813,0.003348,-0.002500,0.249988,0,0);}
.m6e_c00042{transform:matrix(0.372409,0.004841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.372409,0.004841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.372409,0.004841,-0.003250,0.249979,0,0);}
.m2_c00042{transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.434725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434725,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.507268,0.007609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.507268,0.007609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.507268,0.007609,-0.003750,0.249972,0,0);}
.m5c_c00042{transform:matrix(0.591490,0.005915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.591490,0.005915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.591490,0.005915,-0.002500,0.249988,0,0);}
.m0_c00042{transform:matrix(0.620065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620065,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.643215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643215,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.658670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658670,0.000000,0.000000,0.250000,0,0);}
.m5f_c00042{transform:matrix(1.145398,0.011454,-0.002500,0.249988,0,0);-ms-transform:matrix(1.145398,0.011454,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.145398,0.011454,-0.002500,0.249988,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;}
.fs0_c00042{font-size:42.000000px;}
.fs16_c00042{font-size:46.214435px;}
.fs1c_c00042{font-size:50.422675px;}
.fs13_c00042{font-size:51.464815px;}
.fs1b_c00042{font-size:51.473147px;}
.fs17_c00042{font-size:51.474716px;}
.fs12_c00042{font-size:52.515118px;}
.fs11_c00042{font-size:53.565420px;}
.fs14_c00042{font-size:53.566732px;}
.fs19_c00042{font-size:53.574092px;}
.fs1a_c00042{font-size:53.575725px;}
.fs18_c00042{font-size:54.576981px;}
.fs10_c00042{font-size:57.766630px;}
.fs15_c00042{font-size:58.818372px;}
.fs8_c00042{font-size:64.053202px;}
.fs4_c00042{font-size:67.203360px;}
.fsd_c00042{font-size:67.205678px;}
.fsc_c00042{font-size:68.255767px;}
.fs5_c00042{font-size:69.303465px;}
.fsa_c00042{font-size:69.305856px;}
.fs7_c00042{font-size:70.353517px;}
.fs3_c00042{font-size:71.403570px;}
.fsb_c00042{font-size:71.406033px;}
.fs6_c00042{font-size:72.453622px;}
.fse_c00042{font-size:73.506210px;}
.fs2_c00042{font-size:74.553727px;}
.fsf_c00042{font-size:74.556299px;}
.fs9_c00042{font-size:79.806743px;}
.fs1_c00042{font-size:85.059568px;}
.y0_c00042{bottom:0.000000px;}
.y121_c00042{bottom:162.881895px;}
.y120_c00042{bottom:164.146350px;}
.y11f_c00042{bottom:164.666400px;}
.y11e_c00042{bottom:166.301925px;}
.yf1_c00042{bottom:168.063450px;}
.yf0_c00042{bottom:168.697200px;}
.yef_c00042{bottom:169.300013px;}
.yee_c00042{bottom:170.527013px;}
.yed_c00042{bottom:171.145875px;}
.yec_c00042{bottom:172.760738px;}
.yeb_c00042{bottom:173.330512px;}
.y11d_c00042{bottom:177.089025px;}
.y11c_c00042{bottom:178.155915px;}
.y11b_c00042{bottom:179.217945px;}
.y11a_c00042{bottom:180.073440px;}
.y119_c00042{bottom:182.190750px;}
.y118_c00042{bottom:183.384270px;}
.y117_c00042{bottom:184.673385px;}
.yea_c00042{bottom:185.608275px;}
.ye9_c00042{bottom:187.138650px;}
.ye8_c00042{bottom:188.529225px;}
.ye7_c00042{bottom:189.187800px;}
.ye6_c00042{bottom:190.009125px;}
.ye5_c00042{bottom:191.158125px;}
.y116_c00042{bottom:195.892770px;}
.y115_c00042{bottom:197.977710px;}
.y114_c00042{bottom:198.679260px;}
.y113_c00042{bottom:200.068950px;}
.y112_c00042{bottom:200.674620px;}
.y111_c00042{bottom:201.730215px;}
.y110_c00042{bottom:202.501050px;}
.ye4_c00042{bottom:203.801887px;}
.ye3_c00042{bottom:204.328575px;}
.ye2_c00042{bottom:205.921762px;}
.ye1_c00042{bottom:206.515762px;}
.ye0_c00042{bottom:207.563362px;}
.ydf_c00042{bottom:208.055437px;}
.yde_c00042{bottom:208.440562px;}
.y10f_c00042{bottom:213.964965px;}
.y10e_c00042{bottom:216.582030px;}
.y10d_c00042{bottom:218.421585px;}
.y10c_c00042{bottom:220.059000px;}
.ydd_c00042{bottom:222.754500px;}
.ydc_c00042{bottom:223.719787px;}
.ydb_c00042{bottom:225.495487px;}
.yda_c00042{bottom:226.056225px;}
.yd9_c00042{bottom:226.258500px;}
.y10b_c00042{bottom:231.728170px;}
.y10a_c00042{bottom:232.855516px;}
.y109_c00042{bottom:234.138637px;}
.y108_c00042{bottom:236.180453px;}
.y107_c00042{bottom:238.134150px;}
.y106_c00042{bottom:238.408500px;}
.yd8_c00042{bottom:242.838048px;}
.yd7_c00042{bottom:242.838156px;}
.yd6_c00042{bottom:242.838600px;}
.y105_c00042{bottom:249.129900px;}
.y104_c00042{bottom:250.493715px;}
.y103_c00042{bottom:252.034200px;}
.y102_c00042{bottom:252.698355px;}
.y101_c00042{bottom:254.171385px;}
.y100_c00042{bottom:255.429000px;}
.yd5_c00042{bottom:256.802640px;}
.yd4_c00042{bottom:258.023508px;}
.yd3_c00042{bottom:258.482184px;}
.yd2_c00042{bottom:260.033796px;}
.yd1_c00042{bottom:260.541120px;}
.yd0_c00042{bottom:261.195972px;}
.ycf_c00042{bottom:262.168596px;}
.yff_c00042{bottom:267.347775px;}
.yfe_c00042{bottom:268.797399px;}
.yfd_c00042{bottom:269.731362px;}
.yfc_c00042{bottom:271.516260px;}
.yfb_c00042{bottom:272.830734px;}
.yfa_c00042{bottom:273.748836px;}
.yf9_c00042{bottom:274.053000px;}
.yce_c00042{bottom:274.817628px;}
.ycd_c00042{bottom:275.397432px;}
.ycc_c00042{bottom:276.238584px;}
.ycb_c00042{bottom:277.334724px;}
.yca_c00042{bottom:278.544348px;}
.yc9_c00042{bottom:279.088908px;}
.yc8_c00042{bottom:280.532664px;}
.yf8_c00042{bottom:285.075822px;}
.yf7_c00042{bottom:287.042586px;}
.yf6_c00042{bottom:287.604399px;}
.yf5_c00042{bottom:288.180115px;}
.yf4_c00042{bottom:289.187166px;}
.yf3_c00042{bottom:290.694324px;}
.yf2_c00042{bottom:291.339000px;}
.yc7_c00042{bottom:293.604180px;}
.yc6_c00042{bottom:294.330336px;}
.yc5_c00042{bottom:294.867564px;}
.yc4_c00042{bottom:295.778076px;}
.yc3_c00042{bottom:296.618532px;}
.yc2_c00042{bottom:297.546000px;}
.yc1_c00042{bottom:331.560768px;}
.yc0_c00042{bottom:332.954563px;}
.ybf_c00042{bottom:334.161795px;}
.ybe_c00042{bottom:334.681396px;}
.ybd_c00042{bottom:337.497151px;}
.ybc_c00042{bottom:338.135061px;}
.ybb_c00042{bottom:339.096963px;}
.yba_c00042{bottom:339.953908px;}
.yb9_c00042{bottom:340.460139px;}
.yb8_c00042{bottom:356.407620px;}
.yb7_c00042{bottom:356.922274px;}
.yb6_c00042{bottom:357.684159px;}
.yb5_c00042{bottom:358.143555px;}
.yb4_c00042{bottom:359.622981px;}
.yb3_c00042{bottom:361.441989px;}
.yb2_c00042{bottom:362.332128px;}
.yb1_c00042{bottom:363.177163px;}
.yb0_c00042{bottom:363.680473px;}
.yaf_c00042{bottom:380.143066px;}
.yae_c00042{bottom:381.102841px;}
.yad_c00042{bottom:381.820246px;}
.yac_c00042{bottom:382.916197px;}
.yab_c00042{bottom:383.766717px;}
.yaa_c00042{bottom:384.287637px;}
.ya9_c00042{bottom:385.330957px;}
.ya8_c00042{bottom:386.090973px;}
.ya7_c00042{bottom:401.797233px;}
.ya6_c00042{bottom:402.412477px;}
.ya5_c00042{bottom:403.468858px;}
.ya4_c00042{bottom:404.109969px;}
.ya3_c00042{bottom:404.842305px;}
.ya2_c00042{bottom:406.264951px;}
.ya1_c00042{bottom:406.666654px;}
.ya0_c00042{bottom:407.316673px;}
.y9f_c00042{bottom:408.231266px;}
.y9e_c00042{bottom:424.432806px;}
.y9d_c00042{bottom:424.884264px;}
.y9c_c00042{bottom:425.719555px;}
.y9b_c00042{bottom:426.355581px;}
.y9a_c00042{bottom:427.522794px;}
.y99_c00042{bottom:428.972629px;}
.y98_c00042{bottom:429.577290px;}
.y97_c00042{bottom:430.912872px;}
.y96_c00042{bottom:449.320839px;}
.y95_c00042{bottom:449.950020px;}
.y94_c00042{bottom:450.289669px;}
.y93_c00042{bottom:451.488851px;}
.y92_c00042{bottom:452.050527px;}
.y91_c00042{bottom:452.761540px;}
.y90_c00042{bottom:453.952105px;}
.y8f_c00042{bottom:454.131462px;}
.y8e_c00042{bottom:471.790615px;}
.y8d_c00042{bottom:472.352701px;}
.y8c_c00042{bottom:473.307061px;}
.y8b_c00042{bottom:473.854995px;}
.y8a_c00042{bottom:474.763974px;}
.y89_c00042{bottom:475.650846px;}
.y88_c00042{bottom:476.205211px;}
.y87_c00042{bottom:476.817649px;}
.y86_c00042{bottom:493.399328px;}
.y85_c00042{bottom:494.290077px;}
.y84_c00042{bottom:495.027468px;}
.y83_c00042{bottom:495.404878px;}
.y82_c00042{bottom:496.134100px;}
.y81_c00042{bottom:497.222679px;}
.y80_c00042{bottom:497.791699px;}
.y7f_c00042{bottom:498.687303px;}
.y7e_c00042{bottom:515.275536px;}
.y7d_c00042{bottom:515.937652px;}
.y7c_c00042{bottom:517.990660px;}
.y7b_c00042{bottom:518.563315px;}
.y7a_c00042{bottom:520.125744px;}
.y79_c00042{bottom:521.787828px;}
.y78_c00042{bottom:522.776101px;}
.y77_c00042{bottom:523.804057px;}
.y76_c00042{bottom:536.505714px;}
.y75_c00042{bottom:537.617164px;}
.y74_c00042{bottom:537.976597px;}
.y73_c00042{bottom:539.107460px;}
.y72_c00042{bottom:540.195912px;}
.y71_c00042{bottom:541.246281px;}
.y70_c00042{bottom:542.923873px;}
.y6f_c00042{bottom:544.064461px;}
.y6e_c00042{bottom:545.533629px;}
.y6d_c00042{bottom:547.026477px;}
.y6c_c00042{bottom:563.656777px;}
.y6b_c00042{bottom:563.804314px;}
.y6a_c00042{bottom:564.282591px;}
.y69_c00042{bottom:564.861195px;}
.y68_c00042{bottom:565.053504px;}
.y67_c00042{bottom:565.327674px;}
.y66_c00042{bottom:566.079243px;}
.y65_c00042{bottom:566.468541px;}
.y64_c00042{bottom:566.988118px;}
.y63_c00042{bottom:567.222996px;}
.y62_c00042{bottom:567.571500px;}
.y61_c00042{bottom:582.567225px;}
.y60_c00042{bottom:583.418250px;}
.y5f_c00042{bottom:584.059125px;}
.y5e_c00042{bottom:584.411970px;}
.y5d_c00042{bottom:585.302985px;}
.y5c_c00042{bottom:585.583635px;}
.y5b_c00042{bottom:586.088190px;}
.y5a_c00042{bottom:588.599520px;}
.y59_c00042{bottom:606.072735px;}
.y58_c00042{bottom:606.299115px;}
.y57_c00042{bottom:606.811860px;}
.y56_c00042{bottom:607.550430px;}
.y55_c00042{bottom:608.097600px;}
.y54_c00042{bottom:608.483415px;}
.y53_c00042{bottom:609.419850px;}
.y52_c00042{bottom:610.575780px;}
.y51_c00042{bottom:611.099670px;}
.y50_c00042{bottom:627.892170px;}
.y4f_c00042{bottom:628.250835px;}
.y4e_c00042{bottom:628.503750px;}
.y4d_c00042{bottom:629.358600px;}
.y4c_c00042{bottom:629.757105px;}
.y4b_c00042{bottom:630.932385px;}
.y4a_c00042{bottom:631.664925px;}
.y49_c00042{bottom:632.360235px;}
.y48_c00042{bottom:632.943525px;}
.y47_c00042{bottom:633.416295px;}
.y46_c00042{bottom:651.898365px;}
.y45_c00042{bottom:652.256880px;}
.y44_c00042{bottom:652.678755px;}
.y43_c00042{bottom:653.242200px;}
.y42_c00042{bottom:653.620320px;}
.y41_c00042{bottom:654.334110px;}
.y40_c00042{bottom:654.870390px;}
.y3f_c00042{bottom:655.283880px;}
.y3e_c00042{bottom:673.000635px;}
.y3d_c00042{bottom:674.000490px;}
.y3c_c00042{bottom:674.633430px;}
.y3b_c00042{bottom:675.230160px;}
.y3a_c00042{bottom:675.801090px;}
.y39_c00042{bottom:676.937430px;}
.y38_c00042{bottom:677.969640px;}
.y37_c00042{bottom:678.505515px;}
.y36_c00042{bottom:696.610830px;}
.y35_c00042{bottom:697.558395px;}
.y34_c00042{bottom:698.496390px;}
.y33_c00042{bottom:699.201315px;}
.y32_c00042{bottom:700.577805px;}
.y31_c00042{bottom:701.695335px;}
.y30_c00042{bottom:702.268920px;}
.y2f_c00042{bottom:719.524935px;}
.y2e_c00042{bottom:720.528990px;}
.y2d_c00042{bottom:721.725795px;}
.y2c_c00042{bottom:722.083065px;}
.y2b_c00042{bottom:722.630760px;}
.y2a_c00042{bottom:722.951355px;}
.y29_c00042{bottom:723.586785px;}
.y28_c00042{bottom:724.265790px;}
.y27_c00042{bottom:724.948830px;}
.y26_c00042{bottom:743.394885px;}
.y25_c00042{bottom:744.721290px;}
.y24_c00042{bottom:745.282455px;}
.y23_c00042{bottom:746.348190px;}
.y22_c00042{bottom:747.204555px;}
.y21_c00042{bottom:748.058010px;}
.y20_c00042{bottom:749.249925px;}
.y1f_c00042{bottom:764.300955px;}
.y1e_c00042{bottom:764.907600px;}
.y1d_c00042{bottom:765.227415px;}
.y1c_c00042{bottom:765.736470px;}
.y1b_c00042{bottom:766.005495px;}
.y1a_c00042{bottom:766.510905px;}
.y19_c00042{bottom:766.862085px;}
.y18_c00042{bottom:767.969145px;}
.y17_c00042{bottom:768.473955px;}
.y16_c00042{bottom:769.499655px;}
.y15_c00042{bottom:787.806780px;}
.y14_c00042{bottom:788.209695px;}
.y13_c00042{bottom:788.515140px;}
.y12_c00042{bottom:788.859810px;}
.y11_c00042{bottom:789.442695px;}
.y10_c00042{bottom:790.085775px;}
.yf_c00042{bottom:790.387065px;}
.ye_c00042{bottom:790.814940px;}
.yd_c00042{bottom:791.078985px;}
.yc_c00042{bottom:791.911320px;}
.yb_c00042{bottom:811.029840px;}
.ya_c00042{bottom:811.575435px;}
.y9_c00042{bottom:811.813020px;}
.y8_c00042{bottom:812.182635px;}
.y7_c00042{bottom:812.628435px;}
.y6_c00042{bottom:813.184665px;}
.y5_c00042{bottom:813.565515px;}
.y4_c00042{bottom:814.321500px;}
.y3_c00042{bottom:852.950340px;}
.y2_c00042{bottom:856.174500px;}
.y1_c00042{bottom:926.031000px;}
.h2_c00042{height:42.000000px;}
.h18_c00042{height:46.214435px;}
.h1e_c00042{height:50.422675px;}
.h15_c00042{height:51.464815px;}
.h1d_c00042{height:51.473147px;}
.h19_c00042{height:51.474716px;}
.h14_c00042{height:52.515118px;}
.h13_c00042{height:53.565420px;}
.h16_c00042{height:53.566732px;}
.h1b_c00042{height:53.574092px;}
.h1c_c00042{height:53.575725px;}
.h1a_c00042{height:54.576981px;}
.h12_c00042{height:57.766630px;}
.h17_c00042{height:58.818372px;}
.ha_c00042{height:64.053202px;}
.h6_c00042{height:67.203360px;}
.hf_c00042{height:67.205678px;}
.he_c00042{height:68.255767px;}
.h7_c00042{height:69.303465px;}
.hc_c00042{height:69.305856px;}
.h9_c00042{height:70.353517px;}
.h5_c00042{height:71.403570px;}
.hd_c00042{height:71.406033px;}
.h8_c00042{height:72.453622px;}
.h10_c00042{height:73.506210px;}
.h4_c00042{height:74.553727px;}
.h11_c00042{height:74.556299px;}
.hb_c00042{height:79.806743px;}
.h3_c00042{height:85.059568px;}
.h1_c00042{height:1005.000000px;}
.h0_c00042{height:1005.150000px;}
.w0_c00042{width:732.750000px;}
.x0_c00042{left:0.000000px;}
.x4f_c00042{left:62.914125px;}
.x90_c00042{left:97.758263px;}
.x86_c00042{left:100.467792px;}
.x84_c00042{left:101.550000px;}
.x8b_c00042{left:105.070500px;}
.x1_c00042{left:111.240000px;}
.x8c_c00042{left:113.161500px;}
.x95_c00042{left:120.193838px;}
.x6b_c00042{left:131.511846px;}
.x91_c00042{left:132.846263px;}
.x8d_c00042{left:135.591000px;}
.x65_c00042{left:137.477612px;}
.x6e_c00042{left:139.604011px;}
.x57_c00042{left:140.704500px;}
.x3c_c00042{left:142.902900px;}
.x31_c00042{left:144.218835px;}
.xa_c00042{left:146.731500px;}
.x28_c00042{left:147.754965px;}
.x87_c00042{left:152.056860px;}
.x81_c00042{left:156.794190px;}
.x7e_c00042{left:158.461323px;}
.x6c_c00042{left:163.735331px;}
.x8a_c00042{left:165.319104px;}
.x58_c00042{left:167.512500px;}
.x42_c00042{left:168.867615px;}
.x3d_c00042{left:172.400715px;}
.x7b_c00042{left:173.613834px;}
.x92_c00042{left:174.750263px;}
.x32_c00042{left:176.074785px;}
.x75_c00042{left:181.268893px;}
.x61_c00042{left:182.313789px;}
.x59_c00042{left:185.580000px;}
.x29_c00042{left:190.406400px;}
.x66_c00042{left:193.444928px;}
.x7f_c00042{left:195.190045px;}
.x5d_c00042{left:196.494483px;}
.x8_c00042{left:198.187500px;}
.x94_c00042{left:199.878075px;}
.x43_c00042{left:201.244020px;}
.x22_c00042{left:203.173575px;}
.x8e_c00042{left:206.619000px;}
.x73_c00042{left:209.092434px;}
.x12_c00042{left:211.007025px;}
.x76_c00042{left:212.228676px;}
.x1a_c00042{left:214.234320px;}
.x50_c00042{left:219.837705px;}
.xb_c00042{left:222.330000px;}
.x5a_c00042{left:225.547500px;}
.x67_c00042{left:229.022043px;}
.x13_c00042{left:231.260910px;}
.x2a_c00042{left:232.804350px;}
.x6f_c00042{left:234.639853px;}
.x33_c00042{left:238.172820px;}
.x44_c00042{left:239.871930px;}
.x38_c00042{left:241.424265px;}
.x23_c00042{left:243.814605px;}
.x8f_c00042{left:245.230500px;}
.x1b_c00042{left:247.913640px;}
.x51_c00042{left:251.391315px;}
.x88_c00042{left:253.873104px;}
.x5b_c00042{left:255.493500px;}
.x2_c00042{left:258.660000px;}
.xc_c00042{left:260.415000px;}
.x3e_c00042{left:261.704145px;}
.x70_c00042{left:262.727799px;}
.x14_c00042{left:264.147420px;}
.x85_c00042{left:265.792500px;}
.x52_c00042{left:268.955265px;}
.x2b_c00042{left:272.494965px;}
.x96_c00042{left:276.551475px;}
.x45_c00042{left:280.572675px;}
.x93_c00042{left:283.305263px;}
.x24_c00042{left:284.596620px;}
.x15_c00042{left:287.375730px;}
.x3f_c00042{left:288.715065px;}
.x2c_c00042{left:292.553265px;}
.x4a_c00042{left:296.246775px;}
.x77_c00042{left:299.131147px;}
.x3_c00042{left:301.320000px;}
.x89_c00042{left:304.637244px;}
.x39_c00042{left:312.454005px;}
.x34_c00042{left:314.615700px;}
.xd_c00042{left:316.038000px;}
.x74_c00042{left:317.276010px;}
.x4b_c00042{left:318.926685px;}
.x1c_c00042{left:321.715950px;}
.x53_c00042{left:324.603420px;}
.x2d_c00042{left:326.770710px;}
.x40_c00042{left:329.007960px;}
.x78_c00042{left:333.999520px;}
.x25_c00042{left:335.364540px;}
.x16_c00042{left:336.832245px;}
.x71_c00042{left:339.669298px;}
.x7c_c00042{left:340.843459px;}
.x68_c00042{left:342.656117px;}
.x1d_c00042{left:345.132780px;}
.x54_c00042{left:346.686600px;}
.x3a_c00042{left:348.094860px;}
.x2e_c00042{left:349.146375px;}
.x4c_c00042{left:351.141435px;}
.x35_c00042{left:353.755065px;}
.x4_c00042{left:355.050000px;}
.x41_c00042{left:359.194260px;}
.xe_c00042{left:360.618000px;}
.x26_c00042{left:362.078100px;}
.x79_c00042{left:364.504842px;}
.x69_c00042{left:366.263700px;}
.x46_c00042{left:368.044185px;}
.x72_c00042{left:371.103432px;}
.x9b_c00042{left:372.520551px;}
.x62_c00042{left:373.740935px;}
.x7d_c00042{left:375.024910px;}
.x80_c00042{left:377.287372px;}
.x1e_c00042{left:378.872100px;}
.x17_c00042{left:381.619395px;}
.x3b_c00042{left:385.415625px;}
.x55_c00042{left:386.771700px;}
.x82_c00042{left:388.497556px;}
.x4d_c00042{left:394.545390px;}
.x6d_c00042{left:396.109215px;}
.xf_c00042{left:397.579500px;}
.xa4_c00042{left:399.627000px;}
.xa6_c00042{left:404.464920px;}
.x36_c00042{left:405.850395px;}
.x18_c00042{left:408.135600px;}
.x9c_c00042{left:411.142890px;}
.x9_c00042{left:413.131500px;}
.x47_c00042{left:415.575390px;}
.x10_c00042{left:421.338000px;}
.xaa_c00042{left:422.595360px;}
.x2f_c00042{left:423.972390px;}
.x27_c00042{left:425.261655px;}
.x48_c00042{left:429.615765px;}
.x1f_c00042{left:430.727505px;}
.x5_c00042{left:432.270000px;}
.x5e_c00042{left:434.502674px;}
.x83_c00042{left:436.815529px;}
.x4e_c00042{left:438.004845px;}
.x56_c00042{left:439.921005px;}
.x5c_c00042{left:441.837000px;}
.x7a_c00042{left:444.160074px;}
.x6_c00042{left:445.770000px;}
.x97_c00042{left:448.033500px;}
.x49_c00042{left:449.580675px;}
.x20_c00042{left:452.057940px;}
.x63_c00042{left:455.844123px;}
.x37_c00042{left:458.452680px;}
.xa5_c00042{left:460.945500px;}
.x19_c00042{left:462.619965px;}
.x98_c00042{left:466.605000px;}
.x6a_c00042{left:468.078241px;}
.xa1_c00042{left:474.747000px;}
.x11_c00042{left:475.897500px;}
.x7_c00042{left:480.060000px;}
.x64_c00042{left:482.310489px;}
.x99_c00042{left:484.728000px;}
.x30_c00042{left:486.724125px;}
.x5f_c00042{left:489.707631px;}
.x9d_c00042{left:491.029424px;}
.x21_c00042{left:492.470415px;}
.x9f_c00042{left:510.088500px;}
.xa2_c00042{left:516.138000px;}
.x60_c00042{left:530.888643px;}
.x9e_c00042{left:533.622787px;}
.x9a_c00042{left:548.172000px;}
.xa8_c00042{left:549.193605px;}
.xa3_c00042{left:552.504000px;}
.xa0_c00042{left:555.549000px;}
.xa7_c00042{left:558.705285px;}
.xa9_c00042{left:582.554625px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs0_c00042{font-size:37.333333pt;}
.fs16_c00042{font-size:41.079498pt;}
.fs1c_c00042{font-size:44.820155pt;}
.fs13_c00042{font-size:45.746503pt;}
.fs1b_c00042{font-size:45.753909pt;}
.fs17_c00042{font-size:45.755303pt;}
.fs12_c00042{font-size:46.680105pt;}
.fs11_c00042{font-size:47.613707pt;}
.fs14_c00042{font-size:47.614873pt;}
.fs19_c00042{font-size:47.621415pt;}
.fs1a_c00042{font-size:47.622866pt;}
.fs18_c00042{font-size:48.512872pt;}
.fs10_c00042{font-size:51.348115pt;}
.fs15_c00042{font-size:52.282997pt;}
.fs8_c00042{font-size:56.936180pt;}
.fs4_c00042{font-size:59.736320pt;}
.fsd_c00042{font-size:59.738381pt;}
.fsc_c00042{font-size:60.671793pt;}
.fs5_c00042{font-size:61.603080pt;}
.fsa_c00042{font-size:61.605205pt;}
.fs7_c00042{font-size:62.536460pt;}
.fs3_c00042{font-size:63.469840pt;}
.fsb_c00042{font-size:63.472029pt;}
.fs6_c00042{font-size:64.403220pt;}
.fse_c00042{font-size:65.338854pt;}
.fs2_c00042{font-size:66.269980pt;}
.fsf_c00042{font-size:66.272266pt;}
.fs9_c00042{font-size:70.939327pt;}
.fs1_c00042{font-size:75.608505pt;}
.y0_c00042{bottom:0.000000pt;}
.y121_c00042{bottom:144.783907pt;}
.y120_c00042{bottom:145.907867pt;}
.y11f_c00042{bottom:146.370133pt;}
.y11e_c00042{bottom:147.823933pt;}
.yf1_c00042{bottom:149.389733pt;}
.yf0_c00042{bottom:149.953067pt;}
.yef_c00042{bottom:150.488900pt;}
.yee_c00042{bottom:151.579567pt;}
.yed_c00042{bottom:152.129667pt;}
.yec_c00042{bottom:153.565100pt;}
.yeb_c00042{bottom:154.071567pt;}
.y11d_c00042{bottom:157.412467pt;}
.y11c_c00042{bottom:158.360813pt;}
.y11b_c00042{bottom:159.304840pt;}
.y11a_c00042{bottom:160.065280pt;}
.y119_c00042{bottom:161.947333pt;}
.y118_c00042{bottom:163.008240pt;}
.y117_c00042{bottom:164.154120pt;}
.yea_c00042{bottom:164.985133pt;}
.ye9_c00042{bottom:166.345467pt;}
.ye8_c00042{bottom:167.581533pt;}
.ye7_c00042{bottom:168.166933pt;}
.ye6_c00042{bottom:168.897000pt;}
.ye5_c00042{bottom:169.918333pt;}
.y116_c00042{bottom:174.126907pt;}
.y115_c00042{bottom:175.980187pt;}
.y114_c00042{bottom:176.603787pt;}
.y113_c00042{bottom:177.839067pt;}
.y112_c00042{bottom:178.377440pt;}
.y111_c00042{bottom:179.315747pt;}
.y110_c00042{bottom:180.000933pt;}
.ye4_c00042{bottom:181.157233pt;}
.ye3_c00042{bottom:181.625400pt;}
.ye2_c00042{bottom:183.041567pt;}
.ye1_c00042{bottom:183.569567pt;}
.ye0_c00042{bottom:184.500767pt;}
.ydf_c00042{bottom:184.938167pt;}
.yde_c00042{bottom:185.280500pt;}
.y10f_c00042{bottom:190.191080pt;}
.y10e_c00042{bottom:192.517360pt;}
.y10d_c00042{bottom:194.152520pt;}
.y10c_c00042{bottom:195.608000pt;}
.ydd_c00042{bottom:198.004000pt;}
.ydc_c00042{bottom:198.862033pt;}
.ydb_c00042{bottom:200.440433pt;}
.yda_c00042{bottom:200.938867pt;}
.yd9_c00042{bottom:201.118667pt;}
.y10b_c00042{bottom:205.980596pt;}
.y10a_c00042{bottom:206.982681pt;}
.y109_c00042{bottom:208.123233pt;}
.y108_c00042{bottom:209.938180pt;}
.y107_c00042{bottom:211.674800pt;}
.y106_c00042{bottom:211.918667pt;}
.yd8_c00042{bottom:215.856043pt;}
.yd7_c00042{bottom:215.856139pt;}
.yd6_c00042{bottom:215.856533pt;}
.y105_c00042{bottom:221.448800pt;}
.y104_c00042{bottom:222.661080pt;}
.y103_c00042{bottom:224.030400pt;}
.y102_c00042{bottom:224.620760pt;}
.y101_c00042{bottom:225.930120pt;}
.y100_c00042{bottom:227.048000pt;}
.yd5_c00042{bottom:228.269013pt;}
.yd4_c00042{bottom:229.354229pt;}
.yd3_c00042{bottom:229.761941pt;}
.yd2_c00042{bottom:231.141152pt;}
.yd1_c00042{bottom:231.592107pt;}
.yd0_c00042{bottom:232.174197pt;}
.ycf_c00042{bottom:233.038752pt;}
.yff_c00042{bottom:237.642467pt;}
.yfe_c00042{bottom:238.931021pt;}
.yfd_c00042{bottom:239.761211pt;}
.yfc_c00042{bottom:241.347787pt;}
.yfb_c00042{bottom:242.516208pt;}
.yfa_c00042{bottom:243.332299pt;}
.yf9_c00042{bottom:243.602667pt;}
.yce_c00042{bottom:244.282336pt;}
.ycd_c00042{bottom:244.797717pt;}
.ycc_c00042{bottom:245.545408pt;}
.ycb_c00042{bottom:246.519755pt;}
.yca_c00042{bottom:247.594976pt;}
.yc9_c00042{bottom:248.079029pt;}
.yc8_c00042{bottom:249.362368pt;}
.yf8_c00042{bottom:253.400731pt;}
.yf7_c00042{bottom:255.148965pt;}
.yf6_c00042{bottom:255.648355pt;}
.yf5_c00042{bottom:256.160103pt;}
.yf4_c00042{bottom:257.055259pt;}
.yf3_c00042{bottom:258.394955pt;}
.yf2_c00042{bottom:258.968000pt;}
.yc7_c00042{bottom:260.981493pt;}
.yc6_c00042{bottom:261.626965pt;}
.yc5_c00042{bottom:262.104501pt;}
.yc4_c00042{bottom:262.913845pt;}
.yc3_c00042{bottom:263.660917pt;}
.yc2_c00042{bottom:264.485333pt;}
.yc1_c00042{bottom:294.720683pt;}
.yc0_c00042{bottom:295.959612pt;}
.ybf_c00042{bottom:297.032707pt;}
.ybe_c00042{bottom:297.494575pt;}
.ybd_c00042{bottom:299.997468pt;}
.ybc_c00042{bottom:300.564499pt;}
.ybb_c00042{bottom:301.419523pt;}
.yba_c00042{bottom:302.181252pt;}
.yb9_c00042{bottom:302.631235pt;}
.yb8_c00042{bottom:316.806773pt;}
.yb7_c00042{bottom:317.264244pt;}
.yb6_c00042{bottom:317.941475pt;}
.yb5_c00042{bottom:318.349827pt;}
.yb4_c00042{bottom:319.664872pt;}
.yb3_c00042{bottom:321.281768pt;}
.yb2_c00042{bottom:322.073003pt;}
.yb1_c00042{bottom:322.824145pt;}
.yb0_c00042{bottom:323.271532pt;}
.yaf_c00042{bottom:337.904948pt;}
.yae_c00042{bottom:338.758081pt;}
.yad_c00042{bottom:339.395775pt;}
.yac_c00042{bottom:340.369953pt;}
.yab_c00042{bottom:341.125971pt;}
.yaa_c00042{bottom:341.589011pt;}
.ya9_c00042{bottom:342.516407pt;}
.ya8_c00042{bottom:343.191976pt;}
.ya7_c00042{bottom:357.153096pt;}
.ya6_c00042{bottom:357.699980pt;}
.ya5_c00042{bottom:358.638985pt;}
.ya4_c00042{bottom:359.208861pt;}
.ya3_c00042{bottom:359.859827pt;}
.ya2_c00042{bottom:361.124401pt;}
.ya1_c00042{bottom:361.481471pt;}
.ya0_c00042{bottom:362.059265pt;}
.y9f_c00042{bottom:362.872236pt;}
.y9e_c00042{bottom:377.273605pt;}
.y9d_c00042{bottom:377.674901pt;}
.y9c_c00042{bottom:378.417383pt;}
.y9b_c00042{bottom:378.982739pt;}
.y9a_c00042{bottom:380.020261pt;}
.y99_c00042{bottom:381.309004pt;}
.y98_c00042{bottom:381.846480pt;}
.y97_c00042{bottom:383.033664pt;}
.y96_c00042{bottom:399.396301pt;}
.y95_c00042{bottom:399.955573pt;}
.y94_c00042{bottom:400.257484pt;}
.y93_c00042{bottom:401.323423pt;}
.y92_c00042{bottom:401.822691pt;}
.y91_c00042{bottom:402.454703pt;}
.y90_c00042{bottom:403.512983pt;}
.y8f_c00042{bottom:403.672411pt;}
.y8e_c00042{bottom:419.369436pt;}
.y8d_c00042{bottom:419.869068pt;}
.y8c_c00042{bottom:420.717388pt;}
.y8b_c00042{bottom:421.204440pt;}
.y8a_c00042{bottom:422.012421pt;}
.y89_c00042{bottom:422.800752pt;}
.y88_c00042{bottom:423.293521pt;}
.y87_c00042{bottom:423.837911pt;}
.y86_c00042{bottom:438.577180pt;}
.y85_c00042{bottom:439.368957pt;}
.y84_c00042{bottom:440.024416pt;}
.y83_c00042{bottom:440.359892pt;}
.y82_c00042{bottom:441.008089pt;}
.y81_c00042{bottom:441.975715pt;}
.y80_c00042{bottom:442.481511pt;}
.y7f_c00042{bottom:443.277603pt;}
.y7e_c00042{bottom:458.022699pt;}
.y7d_c00042{bottom:458.611247pt;}
.y7c_c00042{bottom:460.436143pt;}
.y7b_c00042{bottom:460.945169pt;}
.y7a_c00042{bottom:462.333995pt;}
.y79_c00042{bottom:463.811403pt;}
.y78_c00042{bottom:464.689868pt;}
.y77_c00042{bottom:465.603607pt;}
.y76_c00042{bottom:476.893968pt;}
.y75_c00042{bottom:477.881924pt;}
.y74_c00042{bottom:478.201420pt;}
.y73_c00042{bottom:479.206631pt;}
.y72_c00042{bottom:480.174144pt;}
.y71_c00042{bottom:481.107805pt;}
.y70_c00042{bottom:482.598999pt;}
.y6f_c00042{bottom:483.612855pt;}
.y6e_c00042{bottom:484.918781pt;}
.y6d_c00042{bottom:486.245757pt;}
.y6c_c00042{bottom:501.028247pt;}
.y6b_c00042{bottom:501.159391pt;}
.y6a_c00042{bottom:501.584525pt;}
.y69_c00042{bottom:502.098840pt;}
.y68_c00042{bottom:502.269781pt;}
.y67_c00042{bottom:502.513488pt;}
.y66_c00042{bottom:503.181549pt;}
.y65_c00042{bottom:503.527592pt;}
.y64_c00042{bottom:503.989439pt;}
.y63_c00042{bottom:504.198219pt;}
.y62_c00042{bottom:504.508000pt;}
.y61_c00042{bottom:517.837533pt;}
.y60_c00042{bottom:518.594000pt;}
.y5f_c00042{bottom:519.163667pt;}
.y5e_c00042{bottom:519.477307pt;}
.y5d_c00042{bottom:520.269320pt;}
.y5c_c00042{bottom:520.518787pt;}
.y5b_c00042{bottom:520.967280pt;}
.y5a_c00042{bottom:523.199573pt;}
.y59_c00042{bottom:538.731320pt;}
.y58_c00042{bottom:538.932547pt;}
.y57_c00042{bottom:539.388320pt;}
.y56_c00042{bottom:540.044827pt;}
.y55_c00042{bottom:540.531200pt;}
.y54_c00042{bottom:540.874147pt;}
.y53_c00042{bottom:541.706533pt;}
.y52_c00042{bottom:542.734027pt;}
.y51_c00042{bottom:543.199707pt;}
.y50_c00042{bottom:558.126373pt;}
.y4f_c00042{bottom:558.445187pt;}
.y4e_c00042{bottom:558.670000pt;}
.y4d_c00042{bottom:559.429867pt;}
.y4c_c00042{bottom:559.784093pt;}
.y4b_c00042{bottom:560.828787pt;}
.y4a_c00042{bottom:561.479933pt;}
.y49_c00042{bottom:562.097987pt;}
.y48_c00042{bottom:562.616467pt;}
.y47_c00042{bottom:563.036707pt;}
.y46_c00042{bottom:579.465213pt;}
.y45_c00042{bottom:579.783893pt;}
.y44_c00042{bottom:580.158893pt;}
.y43_c00042{bottom:580.659733pt;}
.y42_c00042{bottom:580.995840pt;}
.y41_c00042{bottom:581.630320pt;}
.y40_c00042{bottom:582.107013pt;}
.y3f_c00042{bottom:582.474560pt;}
.y3e_c00042{bottom:598.222787pt;}
.y3d_c00042{bottom:599.111547pt;}
.y3c_c00042{bottom:599.674160pt;}
.y3b_c00042{bottom:600.204587pt;}
.y3a_c00042{bottom:600.712080pt;}
.y39_c00042{bottom:601.722160pt;}
.y38_c00042{bottom:602.639680pt;}
.y37_c00042{bottom:603.116013pt;}
.y36_c00042{bottom:619.209627pt;}
.y35_c00042{bottom:620.051907pt;}
.y34_c00042{bottom:620.885680pt;}
.y33_c00042{bottom:621.512280pt;}
.y32_c00042{bottom:622.735827pt;}
.y31_c00042{bottom:623.729187pt;}
.y30_c00042{bottom:624.239040pt;}
.y2f_c00042{bottom:639.577720pt;}
.y2e_c00042{bottom:640.470213pt;}
.y2d_c00042{bottom:641.534040pt;}
.y2c_c00042{bottom:641.851613pt;}
.y2b_c00042{bottom:642.338453pt;}
.y2a_c00042{bottom:642.623427pt;}
.y29_c00042{bottom:643.188253pt;}
.y28_c00042{bottom:643.791813pt;}
.y27_c00042{bottom:644.398960pt;}
.y26_c00042{bottom:660.795453pt;}
.y25_c00042{bottom:661.974480pt;}
.y24_c00042{bottom:662.473293pt;}
.y23_c00042{bottom:663.420613pt;}
.y22_c00042{bottom:664.181827pt;}
.y21_c00042{bottom:664.940453pt;}
.y20_c00042{bottom:665.999933pt;}
.y1f_c00042{bottom:679.378627pt;}
.y1e_c00042{bottom:679.917867pt;}
.y1d_c00042{bottom:680.202147pt;}
.y1c_c00042{bottom:680.654640pt;}
.y1b_c00042{bottom:680.893773pt;}
.y1a_c00042{bottom:681.343027pt;}
.y19_c00042{bottom:681.655187pt;}
.y18_c00042{bottom:682.639240pt;}
.y17_c00042{bottom:683.087960pt;}
.y16_c00042{bottom:683.999693pt;}
.y15_c00042{bottom:700.272693pt;}
.y14_c00042{bottom:700.630840pt;}
.y13_c00042{bottom:700.902347pt;}
.y12_c00042{bottom:701.208720pt;}
.y11_c00042{bottom:701.726840pt;}
.y10_c00042{bottom:702.298467pt;}
.yf_c00042{bottom:702.566280pt;}
.ye_c00042{bottom:702.946613pt;}
.yd_c00042{bottom:703.181320pt;}
.yc_c00042{bottom:703.921173pt;}
.yb_c00042{bottom:720.915413pt;}
.ya_c00042{bottom:721.400387pt;}
.y9_c00042{bottom:721.611573pt;}
.y8_c00042{bottom:721.940120pt;}
.y7_c00042{bottom:722.336387pt;}
.y6_c00042{bottom:722.830813pt;}
.y5_c00042{bottom:723.169347pt;}
.y4_c00042{bottom:723.841333pt;}
.y3_c00042{bottom:758.178080pt;}
.y2_c00042{bottom:761.044000pt;}
.y1_c00042{bottom:823.138667pt;}
.h2_c00042{height:37.333333pt;}
.h18_c00042{height:41.079498pt;}
.h1e_c00042{height:44.820155pt;}
.h15_c00042{height:45.746503pt;}
.h1d_c00042{height:45.753909pt;}
.h19_c00042{height:45.755303pt;}
.h14_c00042{height:46.680105pt;}
.h13_c00042{height:47.613707pt;}
.h16_c00042{height:47.614873pt;}
.h1b_c00042{height:47.621415pt;}
.h1c_c00042{height:47.622866pt;}
.h1a_c00042{height:48.512872pt;}
.h12_c00042{height:51.348115pt;}
.h17_c00042{height:52.282997pt;}
.ha_c00042{height:56.936180pt;}
.h6_c00042{height:59.736320pt;}
.hf_c00042{height:59.738381pt;}
.he_c00042{height:60.671793pt;}
.h7_c00042{height:61.603080pt;}
.hc_c00042{height:61.605205pt;}
.h9_c00042{height:62.536460pt;}
.h5_c00042{height:63.469840pt;}
.hd_c00042{height:63.472029pt;}
.h8_c00042{height:64.403220pt;}
.h10_c00042{height:65.338854pt;}
.h4_c00042{height:66.269980pt;}
.h11_c00042{height:66.272266pt;}
.hb_c00042{height:70.939327pt;}
.h3_c00042{height:75.608505pt;}
.h1_c00042{height:893.333333pt;}
.h0_c00042{height:893.466667pt;}
.w0_c00042{width:651.333333pt;}
.x0_c00042{left:0.000000pt;}
.x4f_c00042{left:55.923667pt;}
.x90_c00042{left:86.896233pt;}
.x86_c00042{left:89.304704pt;}
.x84_c00042{left:90.266667pt;}
.x8b_c00042{left:93.396000pt;}
.x1_c00042{left:98.880000pt;}
.x8c_c00042{left:100.588000pt;}
.x95_c00042{left:106.838967pt;}
.x6b_c00042{left:116.899419pt;}
.x91_c00042{left:118.085567pt;}
.x8d_c00042{left:120.525333pt;}
.x65_c00042{left:122.202321pt;}
.x6e_c00042{left:124.092455pt;}
.x57_c00042{left:125.070667pt;}
.x3c_c00042{left:127.024800pt;}
.x31_c00042{left:128.194520pt;}
.xa_c00042{left:130.428000pt;}
.x28_c00042{left:131.337747pt;}
.x87_c00042{left:135.161653pt;}
.x81_c00042{left:139.372613pt;}
.x7e_c00042{left:140.854509pt;}
.x6c_c00042{left:145.542516pt;}
.x8a_c00042{left:146.950315pt;}
.x58_c00042{left:148.900000pt;}
.x42_c00042{left:150.104547pt;}
.x3d_c00042{left:153.245080pt;}
.x7b_c00042{left:154.323408pt;}
.x92_c00042{left:155.333567pt;}
.x32_c00042{left:156.510920pt;}
.x75_c00042{left:161.127905pt;}
.x61_c00042{left:162.056701pt;}
.x59_c00042{left:164.960000pt;}
.x29_c00042{left:169.250133pt;}
.x66_c00042{left:171.951047pt;}
.x7f_c00042{left:173.502263pt;}
.x5d_c00042{left:174.661763pt;}
.x8_c00042{left:176.166667pt;}
.x94_c00042{left:177.669400pt;}
.x43_c00042{left:178.883573pt;}
.x22_c00042{left:180.598733pt;}
.x8e_c00042{left:183.661333pt;}
.x73_c00042{left:185.859941pt;}
.x12_c00042{left:187.561800pt;}
.x76_c00042{left:188.647712pt;}
.x1a_c00042{left:190.430507pt;}
.x50_c00042{left:195.411293pt;}
.xb_c00042{left:197.626667pt;}
.x5a_c00042{left:200.486667pt;}
.x67_c00042{left:203.575149pt;}
.x13_c00042{left:205.565253pt;}
.x2a_c00042{left:206.937200pt;}
.x6f_c00042{left:208.568759pt;}
.x33_c00042{left:211.709173pt;}
.x44_c00042{left:213.219493pt;}
.x38_c00042{left:214.599347pt;}
.x23_c00042{left:216.724093pt;}
.x8f_c00042{left:217.982667pt;}
.x1b_c00042{left:220.367680pt;}
.x51_c00042{left:223.458947pt;}
.x88_c00042{left:225.664981pt;}
.x5b_c00042{left:227.105333pt;}
.x2_c00042{left:229.920000pt;}
.xc_c00042{left:231.480000pt;}
.x3e_c00042{left:232.625907pt;}
.x70_c00042{left:233.535821pt;}
.x14_c00042{left:234.797707pt;}
.x85_c00042{left:236.260000pt;}
.x52_c00042{left:239.071347pt;}
.x2b_c00042{left:242.217747pt;}
.x96_c00042{left:245.823533pt;}
.x45_c00042{left:249.397933pt;}
.x93_c00042{left:251.826900pt;}
.x24_c00042{left:252.974773pt;}
.x15_c00042{left:255.445093pt;}
.x3f_c00042{left:256.635613pt;}
.x2c_c00042{left:260.047347pt;}
.x4a_c00042{left:263.330467pt;}
.x77_c00042{left:265.894353pt;}
.x3_c00042{left:267.840000pt;}
.x89_c00042{left:270.788661pt;}
.x39_c00042{left:277.736893pt;}
.x34_c00042{left:279.658400pt;}
.xd_c00042{left:280.922667pt;}
.x74_c00042{left:282.023120pt;}
.x4b_c00042{left:283.490387pt;}
.x1c_c00042{left:285.969733pt;}
.x53_c00042{left:288.536373pt;}
.x2d_c00042{left:290.462853pt;}
.x40_c00042{left:292.451520pt;}
.x78_c00042{left:296.888463pt;}
.x25_c00042{left:298.101813pt;}
.x16_c00042{left:299.406440pt;}
.x71_c00042{left:301.928265pt;}
.x7c_c00042{left:302.971964pt;}
.x68_c00042{left:304.583215pt;}
.x1d_c00042{left:306.784693pt;}
.x54_c00042{left:308.165867pt;}
.x3a_c00042{left:309.417653pt;}
.x2e_c00042{left:310.352333pt;}
.x4c_c00042{left:312.125720pt;}
.x35_c00042{left:314.448947pt;}
.x4_c00042{left:315.600000pt;}
.x41_c00042{left:319.283787pt;}
.xe_c00042{left:320.549333pt;}
.x26_c00042{left:321.847200pt;}
.x79_c00042{left:324.004304pt;}
.x69_c00042{left:325.567733pt;}
.x46_c00042{left:327.150387pt;}
.x72_c00042{left:329.869717pt;}
.x9b_c00042{left:331.129379pt;}
.x62_c00042{left:332.214164pt;}
.x7d_c00042{left:333.355476pt;}
.x80_c00042{left:335.366553pt;}
.x1e_c00042{left:336.775200pt;}
.x17_c00042{left:339.217240pt;}
.x3b_c00042{left:342.591667pt;}
.x55_c00042{left:343.797067pt;}
.x82_c00042{left:345.331161pt;}
.x4d_c00042{left:350.707013pt;}
.x6d_c00042{left:352.097080pt;}
.xf_c00042{left:353.404000pt;}
.xa4_c00042{left:355.224000pt;}
.xa6_c00042{left:359.524373pt;}
.x36_c00042{left:360.755907pt;}
.x18_c00042{left:362.787200pt;}
.x9c_c00042{left:365.460347pt;}
.x9_c00042{left:367.228000pt;}
.x47_c00042{left:369.400347pt;}
.x10_c00042{left:374.522667pt;}
.xaa_c00042{left:375.640320pt;}
.x2f_c00042{left:376.864347pt;}
.x27_c00042{left:378.010360pt;}
.x48_c00042{left:381.880680pt;}
.x1f_c00042{left:382.868893pt;}
.x5_c00042{left:384.240000pt;}
.x5e_c00042{left:386.224599pt;}
.x83_c00042{left:388.280471pt;}
.x4e_c00042{left:389.337640pt;}
.x56_c00042{left:391.040893pt;}
.x5c_c00042{left:392.744000pt;}
.x7a_c00042{left:394.808955pt;}
.x6_c00042{left:396.240000pt;}
.x97_c00042{left:398.252000pt;}
.x49_c00042{left:399.627267pt;}
.x20_c00042{left:401.829280pt;}
.x63_c00042{left:405.194776pt;}
.x37_c00042{left:407.513493pt;}
.xa5_c00042{left:409.729333pt;}
.x19_c00042{left:411.217747pt;}
.x98_c00042{left:414.760000pt;}
.x6a_c00042{left:416.069548pt;}
.xa1_c00042{left:421.997333pt;}
.x11_c00042{left:423.020000pt;}
.x7_c00042{left:426.720000pt;}
.x64_c00042{left:428.720435pt;}
.x99_c00042{left:430.869333pt;}
.x30_c00042{left:432.643667pt;}
.x5f_c00042{left:435.295672pt;}
.x9d_c00042{left:436.470599pt;}
.x21_c00042{left:437.751480pt;}
.x9f_c00042{left:453.412000pt;}
.xa2_c00042{left:458.789333pt;}
.x60_c00042{left:471.901016pt;}
.x9e_c00042{left:474.331367pt;}
.x9a_c00042{left:487.264000pt;}
.xa8_c00042{left:488.172093pt;}
.xa3_c00042{left:491.114667pt;}
.xa0_c00042{left:493.821333pt;}
.xa7_c00042{left:496.626920pt;}
.xa9_c00042{left:517.826333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mee_c00043{transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);}
.m43_c00043{transform:matrix(0.049285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049285,0.000000,0.000000,0.250000,0,0);}
.mb1_c00043{transform:matrix(0.066585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066585,0.000000,0.000000,0.250000,0,0);}
.maa_c00043{transform:matrix(0.084475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00043{transform:matrix(0.128895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128895,0.000000,0.000000,0.250000,0,0);}
.m70_c00043{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);}
.m7f_c00043{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);}
.m41_c00043{transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{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);}
.m4d_c00043{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);}
.m2f_c00043{transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{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);}
.m4b_c00043{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);}
.m83_c00043{transform:matrix(0.150589,0.001355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150589,0.001355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150589,0.001355,-0.002250,0.249990,0,0);}
.m98_c00043{transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150897,0.001509,-0.002500,0.249988,0,0);}
.m56_c00043{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);}
.m95_c00043{transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);}
.mb4_c00043{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);}
.m77_c00043{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);}
.m58_c00043{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);}
.m84_c00043{transform:matrix(0.155339,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155339,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155339,0.001398,-0.002250,0.249990,0,0);}
.mbf_c00043{transform:matrix(0.156127,0.002030,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156127,0.002030,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156127,0.002030,-0.003250,0.249979,0,0);}
.m7b_c00043{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);}
.m48_c00043{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);}
.m5e_c00043{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.m8b_c00043{transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);}
.m3d_c00043{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);}
.m1d_c00043{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{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);}
.m36_c00043{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);}
.mcd_c00043{transform:matrix(0.163471,0.002125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163471,0.002125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163471,0.002125,-0.003250,0.249979,0,0);}
.m5a_c00043{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);}
.mf5_c00043{transform:matrix(0.163501,0.002126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163501,0.002126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163501,0.002126,-0.003250,0.249979,0,0);}
.m94_c00043{transform:matrix(0.165032,0.001650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165032,0.001650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165032,0.001650,-0.002500,0.249988,0,0);}
.mea_c00043{transform:matrix(0.165506,0.002152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165506,0.002152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165506,0.002152,-0.003250,0.249979,0,0);}
.m45_c00043{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);}
.m37_c00043{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);}
.m9e_c00043{transform:matrix(0.166347,0.001663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166347,0.001663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166347,0.001663,-0.002500,0.249988,0,0);}
.mec_c00043{transform:matrix(0.166871,0.002169,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166871,0.002169,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166871,0.002169,-0.003250,0.249979,0,0);}
.m23_c00043{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);}
.mc7_c00043{transform:matrix(0.169131,0.002199,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169131,0.002199,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169131,0.002199,-0.003250,0.249979,0,0);}
.m3c_c00043{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);}
.m92_c00043{transform:matrix(0.169797,0.001698,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169797,0.001698,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169797,0.001698,-0.002500,0.249988,0,0);}
.m93_c00043{transform:matrix(0.170821,0.001708,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170821,0.001708,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170821,0.001708,-0.002500,0.249988,0,0);}
.m82_c00043{transform:matrix(0.171423,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171423,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171423,0.001543,-0.002250,0.249990,0,0);}
.m9b_c00043{transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);}
.m6a_c00043{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_c00043{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);}
.mbe_c00043{transform:matrix(0.172375,0.002241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172375,0.002241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172375,0.002241,-0.003250,0.249979,0,0);}
.mf4_c00043{transform:matrix(0.172790,0.002246,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172790,0.002246,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172790,0.002246,-0.003250,0.249979,0,0);}
.m2c_c00043{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);}
.m91_c00043{transform:matrix(0.173316,0.001733,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173316,0.001733,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173316,0.001733,-0.002500,0.249988,0,0);}
.m8d_c00043{transform:matrix(0.173578,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173578,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173578,0.001562,-0.002250,0.249990,0,0);}
.m8a_c00043{transform:matrix(0.173588,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173588,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173588,0.001562,-0.002250,0.249990,0,0);}
.ma9_c00043{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);}
.m34_c00043{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);}
.m19_c00043{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);}
.m75_c00043{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);}
.mb2_c00043{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);}
.md3_c00043{transform:matrix(0.176760,0.002298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176760,0.002298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176760,0.002298,-0.003250,0.249979,0,0);}
.m1c_c00043{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);}
.m10_c00043{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);}
.m2d_c00043{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.m57_c00043{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);}
.m63_c00043{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);}
.m85_c00043{transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);}
.m5b_c00043{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);}
.m42_c00043{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);}
.ma2_c00043{transform:matrix(0.179156,0.001792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179156,0.001792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179156,0.001792,-0.002500,0.249988,0,0);}
.m6b_c00043{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);}
.m62_c00043{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);}
.m5f_c00043{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);}
.m1f_c00043{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);}
.m32_c00043{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);}
.m20_c00043{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);}
.m9_c00043{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);}
.m11_c00043{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);}
.m2e_c00043{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_c00043{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);}
.m8e_c00043{transform:matrix(0.182238,0.001640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182238,0.001640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182238,0.001640,-0.002250,0.249990,0,0);}
.maf_c00043{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);}
.m7e_c00043{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);}
.m1b_c00043{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);}
.mc0_c00043{transform:matrix(0.183410,0.002384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183410,0.002384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183410,0.002384,-0.003250,0.249979,0,0);}
.m2b_c00043{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);}
.m3a_c00043{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);}
.m18_c00043{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);}
.m47_c00043{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{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);}
.meb_c00043{transform:matrix(0.184789,0.002402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184789,0.002402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184789,0.002402,-0.003250,0.249979,0,0);}
.m66_c00043{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);}
.m97_c00043{transform:matrix(0.185521,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185521,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185521,0.001855,-0.002500,0.249988,0,0);}
.mb5_c00043{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);}
.mc2_c00043{transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);}
.me0_c00043{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);}
.m7c_c00043{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);}
.me5_c00043{transform:matrix(0.186774,0.002428,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186774,0.002428,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186774,0.002428,-0.003250,0.249979,0,0);}
.m78_c00043{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);}
.m46_c00043{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);}
.mb8_c00043{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);}
.m30_c00043{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);}
.m8f_c00043{transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);}
.mc_c00043{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);}
.m35_c00043{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);}
.m40_c00043{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);}
.m27_c00043{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);}
.mc8_c00043{transform:matrix(0.189229,0.002460,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189229,0.002460,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189229,0.002460,-0.003250,0.249979,0,0);}
.m12_c00043{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_c00043{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);}
.md7_c00043{transform:matrix(0.190829,0.002481,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190829,0.002481,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190829,0.002481,-0.003250,0.249979,0,0);}
.me7_c00043{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);}
.m26_c00043{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);}
.m3b_c00043{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);}
.m49_c00043{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);}
.mb6_c00043{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);}
.m88_c00043{transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);}
.m3f_c00043{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);}
.mab_c00043{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);}
.m31_c00043{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);}
.m8c_c00043{transform:matrix(0.192327,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192327,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192327,0.001731,-0.002250,0.249990,0,0);}
.m29_c00043{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);}
.md2_c00043{transform:matrix(0.192469,0.002502,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192469,0.002502,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192469,0.002502,-0.003250,0.249979,0,0);}
.m68_c00043{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00043{transform:matrix(0.193200,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193200,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193200,0.001932,-0.002500,0.249988,0,0);}
.mca_c00043{transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);}
.m14_c00043{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);}
.m54_c00043{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);}
.m55_c00043{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);}
.m5c_c00043{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);}
.me9_c00043{transform:matrix(0.194209,0.002525,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194209,0.002525,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194209,0.002525,-0.003250,0.249979,0,0);}
.mac_c00043{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);}
.m24_c00043{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);}
.m38_c00043{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);}
.mcb_c00043{transform:matrix(0.195893,0.002547,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195893,0.002547,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195893,0.002547,-0.003250,0.249979,0,0);}
.m89_c00043{transform:matrix(0.196457,0.001768,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196457,0.001768,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196457,0.001768,-0.002250,0.249990,0,0);}
.mf3_c00043{transform:matrix(0.197373,0.002566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197373,0.002566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197373,0.002566,-0.003250,0.249979,0,0);}
.m6c_c00043{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_c00043{transform:matrix(0.197878,0.002572,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197878,0.002572,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197878,0.002572,-0.003250,0.249979,0,0);}
.m96_c00043{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);}
.md0_c00043{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);}
.mb9_c00043{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);}
.md1_c00043{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);}
.me4_c00043{transform:matrix(0.200078,0.002601,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200078,0.002601,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200078,0.002601,-0.003250,0.249979,0,0);}
.m61_c00043{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);}
.mad_c00043{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);}
.m87_c00043{transform:matrix(0.200727,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200727,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200727,0.001807,-0.002250,0.249990,0,0);}
.ma0_c00043{transform:matrix(0.200885,0.002009,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200885,0.002009,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200885,0.002009,-0.002500,0.249988,0,0);}
.m76_c00043{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);}
.m59_c00043{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);}
.m39_c00043{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);}
.mbc_c00043{transform:matrix(0.203073,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203073,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203073,0.002640,-0.003250,0.249979,0,0);}
.m4c_c00043{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);}
.m64_c00043{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);}
.m81_c00043{transform:matrix(0.203747,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203747,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203747,0.001834,-0.002250,0.249990,0,0);}
.m17_c00043{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);}
.mc6_c00043{transform:matrix(0.204143,0.002654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204143,0.002654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204143,0.002654,-0.003250,0.249979,0,0);}
.med_c00043{transform:matrix(0.204543,0.002659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204543,0.002659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204543,0.002659,-0.003250,0.249979,0,0);}
.m90_c00043{transform:matrix(0.204747,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204747,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204747,0.001843,-0.002250,0.249990,0,0);}
.m50_c00043{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);}
.m6f_c00043{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);}
.m52_c00043{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);}
.mb3_c00043{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);}
.m69_c00043{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);}
.m53_c00043{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);}
.m65_c00043{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);}
.mdb_c00043{transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);}
.md8_c00043{transform:matrix(0.209207,0.002720,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209207,0.002720,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209207,0.002720,-0.003250,0.249979,0,0);}
.m2a_c00043{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);}
.mde_c00043{transform:matrix(0.210407,0.002735,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210407,0.002735,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210407,0.002735,-0.003250,0.249979,0,0);}
.me1_c00043{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);}
.mc4_c00043{transform:matrix(0.211772,0.002753,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211772,0.002753,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211772,0.002753,-0.003250,0.249979,0,0);}
.m80_c00043{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);}
.mae_c00043{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);}
.m21_c00043{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);}
.mdf_c00043{transform:matrix(0.212847,0.002767,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212847,0.002767,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212847,0.002767,-0.003250,0.249979,0,0);}
.m28_c00043{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);}
.m13_c00043{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);}
.mc9_c00043{transform:matrix(0.214147,0.002784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214147,0.002784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214147,0.002784,-0.003250,0.249979,0,0);}
.md9_c00043{transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215587,0.002803,-0.003250,0.249979,0,0);}
.m22_c00043{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);}
.mb0_c00043{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);}
.mcc_c00043{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);}
.m67_c00043{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00043{transform:matrix(0.216044,0.002160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216044,0.002160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216044,0.002160,-0.002500,0.249988,0,0);}
.mc5_c00043{transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);}
.ma1_c00043{transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);}
.m9c_c00043{transform:matrix(0.221034,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221034,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221034,0.002210,-0.002500,0.249988,0,0);}
.m60_c00043{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);}
.m9f_c00043{transform:matrix(0.222824,0.002228,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222824,0.002228,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222824,0.002228,-0.002500,0.249988,0,0);}
.m7a_c00043{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);}
.m5d_c00043{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);}
.m79_c00043{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);}
.md5_c00043{transform:matrix(0.224911,0.002924,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224911,0.002924,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224911,0.002924,-0.003250,0.249979,0,0);}
.mba_c00043{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_c00043{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);}
.m4f_c00043{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.mf6_c00043{transform:matrix(0.226361,0.002943,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226361,0.002943,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226361,0.002943,-0.003250,0.249979,0,0);}
.mdc_c00043{transform:matrix(0.227011,0.002951,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227011,0.002951,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227011,0.002951,-0.003250,0.249979,0,0);}
.m25_c00043{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);}
.m6d_c00043{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);}
.m99_c00043{transform:matrix(0.229634,0.002296,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229634,0.002296,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229634,0.002296,-0.002500,0.249988,0,0);}
.mc1_c00043{transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);}
.mf1_c00043{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);}
.mce_c00043{transform:matrix(0.233070,0.003030,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233070,0.003030,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233070,0.003030,-0.003250,0.249979,0,0);}
.mf0_c00043{transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);}
.m86_c00043{transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);}
.m72_c00043{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);}
.m6e_c00043{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);}
.mf8_c00043{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);}
.mb7_c00043{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.me6_c00043{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);}
.m44_c00043{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);}
.mef_c00043{transform:matrix(0.254823,0.003313,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254823,0.003313,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254823,0.003313,-0.003250,0.249979,0,0);}
.md6_c00043{transform:matrix(0.258528,0.003361,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258528,0.003361,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258528,0.003361,-0.003250,0.249979,0,0);}
.m16_c00043{transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);}
.mf2_c00043{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);}
.m4_c00043{transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);}
.m74_c00043{transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);}
.m71_c00043{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);}
.m73_c00043{transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275520,0.000000,0.000000,0.250000,0,0);}
.me2_c00043{transform:matrix(0.288771,0.003754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288771,0.003754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288771,0.003754,-0.003250,0.249979,0,0);}
.m15_c00043{transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);}
.mbb_c00043{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00043{transform:matrix(0.352720,0.004585,-0.003250,0.249979,0,0);-ms-transform:matrix(0.352720,0.004585,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.352720,0.004585,-0.003250,0.249979,0,0);}
.m8_c00043{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);}
.mcf_c00043{transform:matrix(0.367554,0.004778,-0.003250,0.249979,0,0);-ms-transform:matrix(0.367554,0.004778,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.367554,0.004778,-0.003250,0.249979,0,0);}
.m1_c00043{transform:matrix(0.372375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372375,0.000000,0.000000,0.250000,0,0);}
.me3_c00043{transform:matrix(0.383123,0.004981,-0.003250,0.249979,0,0);-ms-transform:matrix(0.383123,0.004981,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.383123,0.004981,-0.003250,0.249979,0,0);}
.mbd_c00043{transform:matrix(0.383383,0.004984,-0.003250,0.249979,0,0);-ms-transform:matrix(0.383383,0.004984,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.383383,0.004984,-0.003250,0.249979,0,0);}
.md4_c00043{transform:matrix(0.387182,0.005033,-0.003250,0.249979,0,0);-ms-transform:matrix(0.387182,0.005033,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.387182,0.005033,-0.003250,0.249979,0,0);}
.md_c00043{transform:matrix(0.394560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394560,0.000000,0.000000,0.250000,0,0);}
.mf7_c00043{transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.410580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410580,0.000000,0.000000,0.250000,0,0);}
.me8_c00043{transform:matrix(0.417970,0.005434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.417970,0.005434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.417970,0.005434,-0.003250,0.249979,0,0);}
.ma5_c00043{transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);}
.mda_c00043{transform:matrix(0.440378,0.005725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.440378,0.005725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.440378,0.005725,-0.003250,0.249979,0,0);}
.m1e_c00043{transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);}
.ma6_c00043{transform:matrix(0.475735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475735,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.502920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502920,0.000000,0.000000,0.250000,0,0);}
.ma7_c00043{transform:matrix(0.566475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566475,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.624370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624370,0.000000,0.000000,0.250000,0,0);}
.ma8_c00043{transform:matrix(0.636345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636345,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.662665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662665,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.703145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703145,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.805590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805590,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.936420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936420,0.000000,0.000000,0.250000,0,0);}
.ma3_c00043{transform:matrix(1.288260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.288260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.288260,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(1.554885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.554885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.554885,0.000000,0.000000,0.250000,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;}
.fs1_c00043{font-size:44.100000px;}
.fs14_c00043{font-size:48.304081px;}
.fs13_c00043{font-size:49.354170px;}
.fs0_c00043{font-size:51.450000px;}
.fs15_c00043{font-size:52.504436px;}
.fs16_c00043{font-size:53.550000px;}
.fsb_c00043{font-size:64.050000px;}
.fs3_c00043{font-size:65.100000px;}
.fsa_c00043{font-size:66.150000px;}
.fsd_c00043{font-size:67.202722px;}
.fsf_c00043{font-size:67.203360px;}
.fs9_c00043{font-size:68.250000px;}
.fs8_c00043{font-size:69.300000px;}
.fs2_c00043{font-size:70.350000px;}
.fs5_c00043{font-size:71.400000px;}
.fsc_c00043{font-size:71.402892px;}
.fse_c00043{font-size:71.403570px;}
.fs7_c00043{font-size:72.450000px;}
.fs6_c00043{font-size:73.500000px;}
.fs12_c00043{font-size:74.550000px;}
.fs4_c00043{font-size:75.600000px;}
.fs11_c00043{font-size:88.200000px;}
.fs10_c00043{font-size:100.800000px;}
.y0_c00043{bottom:0.000000px;}
.y8d_c00043{bottom:95.218500px;}
.y8_c00043{bottom:100.204500px;}
.y7_c00043{bottom:100.512000px;}
.y6_c00043{bottom:100.962000px;}
.y5_c00043{bottom:102.034500px;}
.y4_c00043{bottom:102.495000px;}
.y3_c00043{bottom:103.294500px;}
.y2_c00043{bottom:103.411500px;}
.y1_c00043{bottom:103.972500px;}
.y8c_c00043{bottom:153.117363px;}
.y8b_c00043{bottom:153.425255px;}
.y8a_c00043{bottom:153.554082px;}
.y89_c00043{bottom:154.085853px;}
.y88_c00043{bottom:154.252143px;}
.y87_c00043{bottom:154.533026px;}
.y86_c00043{bottom:154.821318px;}
.y85_c00043{bottom:155.090304px;}
.y84_c00043{bottom:155.305641px;}
.y83_c00043{bottom:156.007095px;}
.y82_c00043{bottom:156.256385px;}
.y81_c00043{bottom:156.528783px;}
.y80_c00043{bottom:157.005714px;}
.y7f_c00043{bottom:157.356313px;}
.y7e_c00043{bottom:157.735620px;}
.y7d_c00043{bottom:158.218110px;}
.y7c_c00043{bottom:172.767597px;}
.y7b_c00043{bottom:173.285610px;}
.y7a_c00043{bottom:173.712189px;}
.y79_c00043{bottom:173.974812px;}
.y78_c00043{bottom:174.263052px;}
.y77_c00043{bottom:175.135472px;}
.y76_c00043{bottom:175.447554px;}
.y75_c00043{bottom:176.045088px;}
.y74_c00043{bottom:176.663717px;}
.y73_c00043{bottom:177.035690px;}
.y72_c00043{bottom:177.494865px;}
.y71_c00043{bottom:177.930393px;}
.y70_c00043{bottom:189.723174px;}
.y6f_c00043{bottom:190.094213px;}
.y6e_c00043{bottom:190.581015px;}
.y6d_c00043{bottom:190.944236px;}
.y6c_c00043{bottom:191.341247px;}
.y6b_c00043{bottom:191.965436px;}
.y6a_c00043{bottom:192.181169px;}
.y69_c00043{bottom:192.680059px;}
.y68_c00043{bottom:192.947950px;}
.y67_c00043{bottom:193.481043px;}
.y66_c00043{bottom:194.002884px;}
.y65_c00043{bottom:194.166243px;}
.y64_c00043{bottom:194.588973px;}
.y63_c00043{bottom:194.815800px;}
.y62_c00043{bottom:194.989592px;}
.y61_c00043{bottom:195.480392px;}
.y60_c00043{bottom:207.257633px;}
.y5f_c00043{bottom:207.717091px;}
.y5e_c00043{bottom:208.001382px;}
.y5d_c00043{bottom:208.539056px;}
.y5c_c00043{bottom:208.791795px;}
.y5b_c00043{bottom:209.630743px;}
.y5a_c00043{bottom:209.978195px;}
.y59_c00043{bottom:210.164673px;}
.y58_c00043{bottom:210.416418px;}
.y57_c00043{bottom:210.904718px;}
.y56_c00043{bottom:211.480533px;}
.y55_c00043{bottom:211.820925px;}
.y54_c00043{bottom:212.115882px;}
.y53_c00043{bottom:212.692712px;}
.y52_c00043{bottom:213.046500px;}
.y51_c00043{bottom:236.205000px;}
.y50_c00043{bottom:236.983500px;}
.y4f_c00043{bottom:237.259500px;}
.y4e_c00043{bottom:238.008000px;}
.y4d_c00043{bottom:238.401000px;}
.y4c_c00043{bottom:239.365500px;}
.y4b_c00043{bottom:240.015000px;}
.y4a_c00043{bottom:240.736500px;}
.y49_c00043{bottom:241.114500px;}
.y47_c00043{bottom:258.870000px;}
.y48_c00043{bottom:258.873000px;}
.y46_c00043{bottom:259.476000px;}
.y45_c00043{bottom:260.277000px;}
.y44_c00043{bottom:260.434500px;}
.y43_c00043{bottom:261.006000px;}
.y42_c00043{bottom:261.135000px;}
.y41_c00043{bottom:261.727500px;}
.y40_c00043{bottom:261.862500px;}
.y3f_c00043{bottom:262.209000px;}
.y3e_c00043{bottom:262.989000px;}
.y3d_c00043{bottom:281.869500px;}
.y3c_c00043{bottom:320.580000px;}
.y3b_c00043{bottom:322.384500px;}
.y3a_c00043{bottom:357.324000px;}
.y39_c00043{bottom:413.096550px;}
.y38_c00043{bottom:413.394990px;}
.y37_c00043{bottom:413.913990px;}
.y36_c00043{bottom:414.455235px;}
.y35_c00043{bottom:414.746565px;}
.y34_c00043{bottom:415.220535px;}
.y33_c00043{bottom:416.287335px;}
.y32_c00043{bottom:416.818065px;}
.y31_c00043{bottom:417.151110px;}
.y30_c00043{bottom:436.734510px;}
.y2f_c00043{bottom:437.069235px;}
.y2e_c00043{bottom:437.285325px;}
.y2d_c00043{bottom:437.666310px;}
.y2c_c00043{bottom:438.241380px;}
.y2b_c00043{bottom:438.624195px;}
.y2a_c00043{bottom:439.102500px;}
.y29_c00043{bottom:439.477785px;}
.y28_c00043{bottom:439.831500px;}
.y27_c00043{bottom:459.915225px;}
.y26_c00043{bottom:460.200856px;}
.y25_c00043{bottom:460.756036px;}
.y24_c00043{bottom:461.276137px;}
.y23_c00043{bottom:461.904973px;}
.y22_c00043{bottom:462.324130px;}
.y21_c00043{bottom:462.780850px;}
.y20_c00043{bottom:482.309142px;}
.y1f_c00043{bottom:482.710186px;}
.y1e_c00043{bottom:483.135463px;}
.y1d_c00043{bottom:483.322411px;}
.y1c_c00043{bottom:483.859522px;}
.y1b_c00043{bottom:484.036899px;}
.y1a_c00043{bottom:484.258083px;}
.y19_c00043{bottom:484.473988px;}
.y18_c00043{bottom:484.921500px;}
.y17_c00043{bottom:506.619000px;}
.y16_c00043{bottom:528.891000px;}
.y15_c00043{bottom:552.148500px;}
.y14_c00043{bottom:574.824000px;}
.y13_c00043{bottom:596.385000px;}
.y12_c00043{bottom:618.874500px;}
.y11_c00043{bottom:641.799000px;}
.y10_c00043{bottom:664.413000px;}
.yf_c00043{bottom:687.402000px;}
.ye_c00043{bottom:710.158500px;}
.yd_c00043{bottom:732.693000px;}
.yc_c00043{bottom:757.059000px;}
.yb_c00043{bottom:778.312500px;}
.ya_c00043{bottom:802.467000px;}
.y9_c00043{bottom:824.427000px;}
.h3_c00043{height:44.100000px;}
.h16_c00043{height:48.304081px;}
.h15_c00043{height:49.354170px;}
.h2_c00043{height:51.450000px;}
.h17_c00043{height:52.504436px;}
.h18_c00043{height:53.550000px;}
.hd_c00043{height:64.050000px;}
.h5_c00043{height:65.100000px;}
.hc_c00043{height:66.150000px;}
.hf_c00043{height:67.202722px;}
.h11_c00043{height:67.203360px;}
.hb_c00043{height:68.250000px;}
.ha_c00043{height:69.300000px;}
.h4_c00043{height:70.350000px;}
.h7_c00043{height:71.400000px;}
.he_c00043{height:71.402892px;}
.h10_c00043{height:71.403570px;}
.h9_c00043{height:72.450000px;}
.h8_c00043{height:73.500000px;}
.h14_c00043{height:74.550000px;}
.h6_c00043{height:75.600000px;}
.h13_c00043{height:88.200000px;}
.h12_c00043{height:100.800000px;}
.h0_c00043{height:1008.450000px;}
.h1_c00043{height:1008.750000px;}
.w0_c00043{width:699.000000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:76.950000px;}
.x98_c00043{left:81.540000px;}
.x5_c00043{left:86.811000px;}
.x6_c00043{left:95.208000px;}
.x2_c00043{left:123.390000px;}
.x83_c00043{left:134.329581px;}
.x8c_c00043{left:136.986418px;}
.x6f_c00043{left:142.908000px;}
.x7b_c00043{left:149.706000px;}
.x7_c00043{left:152.269500px;}
.x8d_c00043{left:162.641092px;}
.x84_c00043{left:169.429133px;}
.xc_c00043{left:170.640000px;}
.x75_c00043{left:173.979000px;}
.x1a_c00043{left:175.770000px;}
.x4a_c00043{left:176.850000px;}
.x2a_c00043{left:178.470000px;}
.x23_c00043{left:180.090000px;}
.x85_c00043{left:181.874477px;}
.x8_c00043{left:185.142000px;}
.x3_c00043{left:187.110000px;}
.x8e_c00043{left:189.653188px;}
.x13_c00043{left:195.480000px;}
.x86_c00043{left:198.053262px;}
.x4b_c00043{left:199.800000px;}
.x76_c00043{left:200.977500px;}
.x56_c00043{left:204.390000px;}
.x90_c00043{left:208.852644px;}
.x24_c00043{left:210.330000px;}
.x8f_c00043{left:211.573057px;}
.x2b_c00043{left:216.000000px;}
.x5e_c00043{left:217.743984px;}
.x38_c00043{left:219.240000px;}
.x59_c00043{left:220.860000px;}
.x5c_c00043{left:226.182000px;}
.x87_c00043{left:228.262872px;}
.x1b_c00043{left:229.500000px;}
.x32_c00043{left:234.360000px;}
.x40_c00043{left:235.710000px;}
.x91_c00043{left:238.014514px;}
.x14_c00043{left:239.490000px;}
.x68_c00043{left:241.493220px;}
.xd_c00043{left:244.350000px;}
.x62_c00043{left:248.005500px;}
.x25_c00043{left:250.830000px;}
.x77_c00043{left:252.549000px;}
.x2c_c00043{left:254.610000px;}
.x5f_c00043{left:255.816295px;}
.x33_c00043{left:258.660000px;}
.x9_c00043{left:261.771000px;}
.xe_c00043{left:265.410000px;}
.x39_c00043{left:268.650000px;}
.x3d_c00043{left:270.000000px;}
.x41_c00043{left:272.430000px;}
.x1c_c00043{left:275.130000px;}
.x88_c00043{left:277.162229px;}
.x15_c00043{left:280.530000px;}
.x4c_c00043{left:282.690000px;}
.x47_c00043{left:284.850000px;}
.x34_c00043{left:286.470000px;}
.x26_c00043{left:288.090000px;}
.x2d_c00043{left:292.140000px;}
.xa_c00043{left:293.932500px;}
.x63_c00043{left:295.836000px;}
.x4_c00043{left:298.080000px;}
.x42_c00043{left:300.240000px;}
.xf_c00043{left:301.590000px;}
.x1d_c00043{left:302.670000px;}
.x6e_c00043{left:309.690000px;}
.x4d_c00043{left:312.390000px;}
.x7c_c00043{left:314.458500px;}
.xb_c00043{left:315.843000px;}
.x52_c00043{left:317.250000px;}
.x92_c00043{left:321.178587px;}
.x69_c00043{left:323.570760px;}
.x51_c00043{left:326.700000px;}
.x48_c00043{left:328.860000px;}
.x64_c00043{left:334.117500px;}
.x10_c00043{left:336.960000px;}
.x27_c00043{left:339.930000px;}
.x16_c00043{left:346.410000px;}
.x70_c00043{left:348.994500px;}
.x7d_c00043{left:352.020000px;}
.x5d_c00043{left:354.135000px;}
.x11_c00043{left:358.020000px;}
.x60_c00043{left:360.307419px;}
.x3a_c00043{left:362.340000px;}
.x35_c00043{left:363.690000px;}
.x43_c00043{left:366.390000px;}
.x78_c00043{left:367.842000px;}
.x89_c00043{left:369.997520px;}
.x57_c00043{left:372.330000px;}
.x2e_c00043{left:375.300000px;}
.x6d_c00043{left:379.219500px;}
.x44_c00043{left:380.430000px;}
.x1e_c00043{left:382.860000px;}
.x17_c00043{left:383.940000px;}
.x7e_c00043{left:385.729500px;}
.x53_c00043{left:392.040000px;}
.x79_c00043{left:395.913000px;}
.x93_c00043{left:397.586582px;}
.x12_c00043{left:399.330000px;}
.x54_c00043{left:400.410000px;}
.x18_c00043{left:407.970000px;}
.x61_c00043{left:410.826515px;}
.x1f_c00043{left:412.830000px;}
.x94_c00043{left:420.008874px;}
.x49_c00043{left:421.200000px;}
.x3b_c00043{left:422.820000px;}
.x4e_c00043{left:423.900000px;}
.x5a_c00043{left:424.980000px;}
.x71_c00043{left:426.760500px;}
.x65_c00043{left:429.723000px;}
.x2f_c00043{left:433.620000px;}
.x55_c00043{left:437.400000px;}
.x6c_c00043{left:440.910000px;}
.x19_c00043{left:442.800000px;}
.x72_c00043{left:444.313500px;}
.x28_c00043{left:445.770000px;}
.x36_c00043{left:447.120000px;}
.x5b_c00043{left:448.470000px;}
.x66_c00043{left:451.332000px;}
.x4f_c00043{left:456.300000px;}
.x58_c00043{left:457.380000px;}
.x29_c00043{left:459.810000px;}
.x6a_c00043{left:463.971045px;}
.x30_c00043{left:466.560000px;}
.x20_c00043{left:468.180000px;}
.x3e_c00043{left:470.070000px;}
.x7f_c00043{left:476.991000px;}
.x37_c00043{left:481.950000px;}
.x67_c00043{left:484.804500px;}
.x6b_c00043{left:486.914355px;}
.x31_c00043{left:488.160000px;}
.x45_c00043{left:490.050000px;}
.x50_c00043{left:494.370000px;}
.x80_c00043{left:496.432500px;}
.x21_c00043{left:509.220000px;}
.x8a_c00043{left:519.107589px;}
.x3f_c00043{left:522.450000px;}
.x7a_c00043{left:524.640000px;}
.x95_c00043{left:525.682258px;}
.x46_c00043{left:528.390000px;}
.x73_c00043{left:533.328000px;}
.x96_c00043{left:536.399895px;}
.x81_c00043{left:537.792000px;}
.x3c_c00043{left:541.890000px;}
.x8b_c00043{left:545.571738px;}
.x22_c00043{left:560.250000px;}
.x97_c00043{left:562.045727px;}
.x82_c00043{left:595.003500px;}
.x74_c00043{left:600.718500px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.fs1_c00043{font-size:39.200000pt;}
.fs14_c00043{font-size:42.936961pt;}
.fs13_c00043{font-size:43.870373pt;}
.fs0_c00043{font-size:45.733333pt;}
.fs15_c00043{font-size:46.670610pt;}
.fs16_c00043{font-size:47.600000pt;}
.fsb_c00043{font-size:56.933333pt;}
.fs3_c00043{font-size:57.866667pt;}
.fsa_c00043{font-size:58.800000pt;}
.fsd_c00043{font-size:59.735752pt;}
.fsf_c00043{font-size:59.736320pt;}
.fs9_c00043{font-size:60.666667pt;}
.fs8_c00043{font-size:61.600000pt;}
.fs2_c00043{font-size:62.533333pt;}
.fs5_c00043{font-size:63.466667pt;}
.fsc_c00043{font-size:63.469237pt;}
.fse_c00043{font-size:63.469840pt;}
.fs7_c00043{font-size:64.400000pt;}
.fs6_c00043{font-size:65.333333pt;}
.fs12_c00043{font-size:66.266667pt;}
.fs4_c00043{font-size:67.200000pt;}
.fs11_c00043{font-size:78.400000pt;}
.fs10_c00043{font-size:89.600000pt;}
.y0_c00043{bottom:0.000000pt;}
.y8d_c00043{bottom:84.638667pt;}
.y8_c00043{bottom:89.070667pt;}
.y7_c00043{bottom:89.344000pt;}
.y6_c00043{bottom:89.744000pt;}
.y5_c00043{bottom:90.697333pt;}
.y4_c00043{bottom:91.106667pt;}
.y3_c00043{bottom:91.817333pt;}
.y2_c00043{bottom:91.921333pt;}
.y1_c00043{bottom:92.420000pt;}
.y8c_c00043{bottom:136.104323pt;}
.y8b_c00043{bottom:136.378004pt;}
.y8a_c00043{bottom:136.492517pt;}
.y89_c00043{bottom:136.965203pt;}
.y88_c00043{bottom:137.113016pt;}
.y87_c00043{bottom:137.362689pt;}
.y86_c00043{bottom:137.618949pt;}
.y85_c00043{bottom:137.858048pt;}
.y84_c00043{bottom:138.049459pt;}
.y83_c00043{bottom:138.672973pt;}
.y82_c00043{bottom:138.894564pt;}
.y81_c00043{bottom:139.136696pt;}
.y80_c00043{bottom:139.560635pt;}
.y7f_c00043{bottom:139.872279pt;}
.y7e_c00043{bottom:140.209440pt;}
.y7d_c00043{bottom:140.638320pt;}
.y7c_c00043{bottom:153.571197pt;}
.y7b_c00043{bottom:154.031653pt;}
.y7a_c00043{bottom:154.410835pt;}
.y79_c00043{bottom:154.644277pt;}
.y78_c00043{bottom:154.900491pt;}
.y77_c00043{bottom:155.675975pt;}
.y76_c00043{bottom:155.953381pt;}
.y75_c00043{bottom:156.484523pt;}
.y74_c00043{bottom:157.034415pt;}
.y73_c00043{bottom:157.365057pt;}
.y72_c00043{bottom:157.773213pt;}
.y71_c00043{bottom:158.160349pt;}
.y70_c00043{bottom:168.642821pt;}
.y6f_c00043{bottom:168.972633pt;}
.y6e_c00043{bottom:169.405347pt;}
.y6d_c00043{bottom:169.728209pt;}
.y6c_c00043{bottom:170.081108pt;}
.y6b_c00043{bottom:170.635943pt;}
.y6a_c00043{bottom:170.827705pt;}
.y69_c00043{bottom:171.271164pt;}
.y68_c00043{bottom:171.509289pt;}
.y67_c00043{bottom:171.983149pt;}
.y66_c00043{bottom:172.447008pt;}
.y65_c00043{bottom:172.592216pt;}
.y64_c00043{bottom:172.967976pt;}
.y63_c00043{bottom:173.169600pt;}
.y62_c00043{bottom:173.324081pt;}
.y61_c00043{bottom:173.760348pt;}
.y60_c00043{bottom:184.229007pt;}
.y5f_c00043{bottom:184.637415pt;}
.y5e_c00043{bottom:184.890117pt;}
.y5d_c00043{bottom:185.368049pt;}
.y5c_c00043{bottom:185.592707pt;}
.y5b_c00043{bottom:186.338439pt;}
.y5a_c00043{bottom:186.647284pt;}
.y59_c00043{bottom:186.813043pt;}
.y58_c00043{bottom:187.036816pt;}
.y57_c00043{bottom:187.470860pt;}
.y56_c00043{bottom:187.982696pt;}
.y55_c00043{bottom:188.285267pt;}
.y54_c00043{bottom:188.547451pt;}
.y53_c00043{bottom:189.060188pt;}
.y52_c00043{bottom:189.374667pt;}
.y51_c00043{bottom:209.960000pt;}
.y50_c00043{bottom:210.652000pt;}
.y4f_c00043{bottom:210.897333pt;}
.y4e_c00043{bottom:211.562667pt;}
.y4d_c00043{bottom:211.912000pt;}
.y4c_c00043{bottom:212.769333pt;}
.y4b_c00043{bottom:213.346667pt;}
.y4a_c00043{bottom:213.988000pt;}
.y49_c00043{bottom:214.324000pt;}
.y47_c00043{bottom:230.106667pt;}
.y48_c00043{bottom:230.109333pt;}
.y46_c00043{bottom:230.645333pt;}
.y45_c00043{bottom:231.357333pt;}
.y44_c00043{bottom:231.497333pt;}
.y43_c00043{bottom:232.005333pt;}
.y42_c00043{bottom:232.120000pt;}
.y41_c00043{bottom:232.646667pt;}
.y40_c00043{bottom:232.766667pt;}
.y3f_c00043{bottom:233.074667pt;}
.y3e_c00043{bottom:233.768000pt;}
.y3d_c00043{bottom:250.550667pt;}
.y3c_c00043{bottom:284.960000pt;}
.y3b_c00043{bottom:286.564000pt;}
.y3a_c00043{bottom:317.621333pt;}
.y39_c00043{bottom:367.196933pt;}
.y38_c00043{bottom:367.462213pt;}
.y37_c00043{bottom:367.923547pt;}
.y36_c00043{bottom:368.404653pt;}
.y35_c00043{bottom:368.663613pt;}
.y34_c00043{bottom:369.084920pt;}
.y33_c00043{bottom:370.033187pt;}
.y32_c00043{bottom:370.504947pt;}
.y31_c00043{bottom:370.800987pt;}
.y30_c00043{bottom:388.208453pt;}
.y2f_c00043{bottom:388.505987pt;}
.y2e_c00043{bottom:388.698067pt;}
.y2d_c00043{bottom:389.036720pt;}
.y2c_c00043{bottom:389.547893pt;}
.y2b_c00043{bottom:389.888173pt;}
.y2a_c00043{bottom:390.313333pt;}
.y29_c00043{bottom:390.646920pt;}
.y28_c00043{bottom:390.961333pt;}
.y27_c00043{bottom:408.813533pt;}
.y26_c00043{bottom:409.067428pt;}
.y25_c00043{bottom:409.560921pt;}
.y24_c00043{bottom:410.023233pt;}
.y23_c00043{bottom:410.582199pt;}
.y22_c00043{bottom:410.954783pt;}
.y21_c00043{bottom:411.360756pt;}
.y20_c00043{bottom:428.719237pt;}
.y1f_c00043{bottom:429.075721pt;}
.y1e_c00043{bottom:429.453745pt;}
.y1d_c00043{bottom:429.619921pt;}
.y1c_c00043{bottom:430.097353pt;}
.y1b_c00043{bottom:430.255021pt;}
.y1a_c00043{bottom:430.451629pt;}
.y19_c00043{bottom:430.643545pt;}
.y18_c00043{bottom:431.041333pt;}
.y17_c00043{bottom:450.328000pt;}
.y16_c00043{bottom:470.125333pt;}
.y15_c00043{bottom:490.798667pt;}
.y14_c00043{bottom:510.954667pt;}
.y13_c00043{bottom:530.120000pt;}
.y12_c00043{bottom:550.110667pt;}
.y11_c00043{bottom:570.488000pt;}
.y10_c00043{bottom:590.589333pt;}
.yf_c00043{bottom:611.024000pt;}
.ye_c00043{bottom:631.252000pt;}
.yd_c00043{bottom:651.282667pt;}
.yc_c00043{bottom:672.941333pt;}
.yb_c00043{bottom:691.833333pt;}
.ya_c00043{bottom:713.304000pt;}
.y9_c00043{bottom:732.824000pt;}
.h3_c00043{height:39.200000pt;}
.h16_c00043{height:42.936961pt;}
.h15_c00043{height:43.870373pt;}
.h2_c00043{height:45.733333pt;}
.h17_c00043{height:46.670610pt;}
.h18_c00043{height:47.600000pt;}
.hd_c00043{height:56.933333pt;}
.h5_c00043{height:57.866667pt;}
.hc_c00043{height:58.800000pt;}
.hf_c00043{height:59.735752pt;}
.h11_c00043{height:59.736320pt;}
.hb_c00043{height:60.666667pt;}
.ha_c00043{height:61.600000pt;}
.h4_c00043{height:62.533333pt;}
.h7_c00043{height:63.466667pt;}
.he_c00043{height:63.469237pt;}
.h10_c00043{height:63.469840pt;}
.h9_c00043{height:64.400000pt;}
.h8_c00043{height:65.333333pt;}
.h14_c00043{height:66.266667pt;}
.h6_c00043{height:67.200000pt;}
.h13_c00043{height:78.400000pt;}
.h12_c00043{height:89.600000pt;}
.h0_c00043{height:896.400000pt;}
.h1_c00043{height:896.666667pt;}
.w0_c00043{width:621.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:68.400000pt;}
.x98_c00043{left:72.480000pt;}
.x5_c00043{left:77.165333pt;}
.x6_c00043{left:84.629333pt;}
.x2_c00043{left:109.680000pt;}
.x83_c00043{left:119.404072pt;}
.x8c_c00043{left:121.765705pt;}
.x6f_c00043{left:127.029333pt;}
.x7b_c00043{left:133.072000pt;}
.x7_c00043{left:135.350667pt;}
.x8d_c00043{left:144.569860pt;}
.x84_c00043{left:150.603673pt;}
.xc_c00043{left:151.680000pt;}
.x75_c00043{left:154.648000pt;}
.x1a_c00043{left:156.240000pt;}
.x4a_c00043{left:157.200000pt;}
.x2a_c00043{left:158.640000pt;}
.x23_c00043{left:160.080000pt;}
.x85_c00043{left:161.666201pt;}
.x8_c00043{left:164.570667pt;}
.x3_c00043{left:166.320000pt;}
.x8e_c00043{left:168.580612pt;}
.x13_c00043{left:173.760000pt;}
.x86_c00043{left:176.047344pt;}
.x4b_c00043{left:177.600000pt;}
.x76_c00043{left:178.646667pt;}
.x56_c00043{left:181.680000pt;}
.x90_c00043{left:185.646795pt;}
.x24_c00043{left:186.960000pt;}
.x8f_c00043{left:188.064940pt;}
.x2b_c00043{left:192.000000pt;}
.x5e_c00043{left:193.550208pt;}
.x38_c00043{left:194.880000pt;}
.x59_c00043{left:196.320000pt;}
.x5c_c00043{left:201.050667pt;}
.x87_c00043{left:202.900331pt;}
.x1b_c00043{left:204.000000pt;}
.x32_c00043{left:208.320000pt;}
.x40_c00043{left:209.520000pt;}
.x91_c00043{left:211.568457pt;}
.x14_c00043{left:212.880000pt;}
.x68_c00043{left:214.660640pt;}
.xd_c00043{left:217.200000pt;}
.x62_c00043{left:220.449333pt;}
.x25_c00043{left:222.960000pt;}
.x77_c00043{left:224.488000pt;}
.x2c_c00043{left:226.320000pt;}
.x5f_c00043{left:227.392263pt;}
.x33_c00043{left:229.920000pt;}
.x9_c00043{left:232.685333pt;}
.xe_c00043{left:235.920000pt;}
.x39_c00043{left:238.800000pt;}
.x3d_c00043{left:240.000000pt;}
.x41_c00043{left:242.160000pt;}
.x1c_c00043{left:244.560000pt;}
.x88_c00043{left:246.366425pt;}
.x15_c00043{left:249.360000pt;}
.x4c_c00043{left:251.280000pt;}
.x47_c00043{left:253.200000pt;}
.x34_c00043{left:254.640000pt;}
.x26_c00043{left:256.080000pt;}
.x2d_c00043{left:259.680000pt;}
.xa_c00043{left:261.273333pt;}
.x63_c00043{left:262.965333pt;}
.x4_c00043{left:264.960000pt;}
.x42_c00043{left:266.880000pt;}
.xf_c00043{left:268.080000pt;}
.x1d_c00043{left:269.040000pt;}
.x6e_c00043{left:275.280000pt;}
.x4d_c00043{left:277.680000pt;}
.x7c_c00043{left:279.518667pt;}
.xb_c00043{left:280.749333pt;}
.x52_c00043{left:282.000000pt;}
.x92_c00043{left:285.492077pt;}
.x69_c00043{left:287.618453pt;}
.x51_c00043{left:290.400000pt;}
.x48_c00043{left:292.320000pt;}
.x64_c00043{left:296.993333pt;}
.x10_c00043{left:299.520000pt;}
.x27_c00043{left:302.160000pt;}
.x16_c00043{left:307.920000pt;}
.x70_c00043{left:310.217333pt;}
.x7d_c00043{left:312.906667pt;}
.x5d_c00043{left:314.786667pt;}
.x11_c00043{left:318.240000pt;}
.x60_c00043{left:320.273261pt;}
.x3a_c00043{left:322.080000pt;}
.x35_c00043{left:323.280000pt;}
.x43_c00043{left:325.680000pt;}
.x78_c00043{left:326.970667pt;}
.x89_c00043{left:328.886684pt;}
.x57_c00043{left:330.960000pt;}
.x2e_c00043{left:333.600000pt;}
.x6d_c00043{left:337.084000pt;}
.x44_c00043{left:338.160000pt;}
.x1e_c00043{left:340.320000pt;}
.x17_c00043{left:341.280000pt;}
.x7e_c00043{left:342.870667pt;}
.x53_c00043{left:348.480000pt;}
.x79_c00043{left:351.922667pt;}
.x93_c00043{left:353.410295pt;}
.x12_c00043{left:354.960000pt;}
.x54_c00043{left:355.920000pt;}
.x18_c00043{left:362.640000pt;}
.x61_c00043{left:365.179124pt;}
.x1f_c00043{left:366.960000pt;}
.x94_c00043{left:373.341221pt;}
.x49_c00043{left:374.400000pt;}
.x3b_c00043{left:375.840000pt;}
.x4e_c00043{left:376.800000pt;}
.x5a_c00043{left:377.760000pt;}
.x71_c00043{left:379.342667pt;}
.x65_c00043{left:381.976000pt;}
.x2f_c00043{left:385.440000pt;}
.x55_c00043{left:388.800000pt;}
.x6c_c00043{left:391.920000pt;}
.x19_c00043{left:393.600000pt;}
.x72_c00043{left:394.945333pt;}
.x28_c00043{left:396.240000pt;}
.x36_c00043{left:397.440000pt;}
.x5b_c00043{left:398.640000pt;}
.x66_c00043{left:401.184000pt;}
.x4f_c00043{left:405.600000pt;}
.x58_c00043{left:406.560000pt;}
.x29_c00043{left:408.720000pt;}
.x6a_c00043{left:412.418707pt;}
.x30_c00043{left:414.720000pt;}
.x20_c00043{left:416.160000pt;}
.x3e_c00043{left:417.840000pt;}
.x7f_c00043{left:423.992000pt;}
.x37_c00043{left:428.400000pt;}
.x67_c00043{left:430.937333pt;}
.x6b_c00043{left:432.812760pt;}
.x31_c00043{left:433.920000pt;}
.x45_c00043{left:435.600000pt;}
.x50_c00043{left:439.440000pt;}
.x80_c00043{left:441.273333pt;}
.x21_c00043{left:452.640000pt;}
.x8a_c00043{left:461.428968pt;}
.x3f_c00043{left:464.400000pt;}
.x7a_c00043{left:466.346667pt;}
.x95_c00043{left:467.273119pt;}
.x46_c00043{left:469.680000pt;}
.x73_c00043{left:474.069333pt;}
.x96_c00043{left:476.799907pt;}
.x81_c00043{left:478.037333pt;}
.x3c_c00043{left:481.680000pt;}
.x8b_c00043{left:484.952656pt;}
.x22_c00043{left:498.000000pt;}
.x97_c00043{left:499.596201pt;}
.x82_c00043{left:528.892000pt;}
.x74_c00043{left:533.972000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m2_c00044{transform:matrix(0.009639,-0.000135,0.003500,0.249976,0,0);-ms-transform:matrix(0.009639,-0.000135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.009639,-0.000135,0.003500,0.249976,0,0);}
.m3b_c00044{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);}
.mff_c00044{transform:matrix(0.015030,0.000105,-0.001750,0.249994,0,0);-ms-transform:matrix(0.015030,0.000105,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.015030,0.000105,-0.001750,0.249994,0,0);}
.m11_c00044{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);}
.m7a_c00044{transform:matrix(0.026875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026875,0.000000,0.000000,0.250000,0,0);}
.m55_c00044{transform:matrix(0.121335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121335,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);}
.mbc_c00044{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);}
.mf4_c00044{transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{transform:matrix(0.140230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140230,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{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);}
.mc5_c00044{transform:matrix(0.141055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141055,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{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);}
.m68_c00044{transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);}
.mee_c00044{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);}
.m9a_c00044{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);}
.m49_c00044{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);}
.m24_c00044{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.mf1_c00044{transform:matrix(0.149295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149295,0.000000,0.000000,0.250000,0,0);}
.m65_c00044{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);}
.ma1_c00044{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);}
.ma9_c00044{transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);}
.mbd_c00044{transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);}
.mdf_c00044{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);}
.m2e_c00044{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);}
.m78_c00044{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);}
.md4_c00044{transform:matrix(0.158405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158405,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.mb8_c00044{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);}
.m88_c00044{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_c00044{transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);}
.mc9_c00044{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);}
.mb4_c00044{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);}
.m18_c00044{transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);}
.md5_c00044{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);}
.m2c_c00044{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);}
.m3f_c00044{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);}
.mfd_c00044{transform:matrix(0.162946,0.001141,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162946,0.001141,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162946,0.001141,-0.001750,0.249994,0,0);}
.mae_c00044{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);}
.m8_c00044{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);}
.mb0_c00044{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);}
.m48_c00044{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_c00044{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);}
.m42_c00044{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);}
.mfc_c00044{transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);}
.m102_c00044{transform:matrix(0.166866,0.001168,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166866,0.001168,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166866,0.001168,-0.001750,0.249994,0,0);}
.m3a_c00044{transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167070,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{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);}
.m63_c00044{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);}
.m74_c00044{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);}
.m2d_c00044{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);}
.mf0_c00044{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);}
.maa_c00044{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);}
.m6b_c00044{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);}
.m13_c00044{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);}
.ma8_c00044{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);}
.m51_c00044{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);}
.m8e_c00044{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);}
.m66_c00044{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);}
.mb9_c00044{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);}
.mfa_c00044{transform:matrix(0.172991,0.001211,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172991,0.001211,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172991,0.001211,-0.001750,0.249994,0,0);}
.m97_c00044{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);}
.mc6_c00044{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);}
.m93_c00044{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);}
.m2f_c00044{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);}
.m67_c00044{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);}
.m5_c00044{transform:matrix(0.174873,-0.002448,0.003500,0.249976,0,0);-ms-transform:matrix(0.174873,-0.002448,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174873,-0.002448,0.003500,0.249976,0,0);}
.mc2_c00044{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);}
.m40_c00044{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);}
.mf5_c00044{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);}
.m73_c00044{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);}
.mf2_c00044{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);}
.m46_c00044{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);}
.m8f_c00044{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);}
.m27_c00044{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);}
.mea_c00044{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);}
.m81_c00044{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.mf3_c00044{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);}
.mbf_c00044{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);}
.mdd_c00044{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);}
.mab_c00044{transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);}
.ma5_c00044{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);}
.m45_c00044{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);}
.mb7_c00044{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);}
.m79_c00044{transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);}
.m89_c00044{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);}
.m8a_c00044{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);}
.m36_c00044{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);}
.mbb_c00044{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);}
.m98_c00044{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);}
.mb5_c00044{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);}
.m20_c00044{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);}
.m86_c00044{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);}
.mc7_c00044{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);}
.m47_c00044{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);}
.me8_c00044{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_c00044{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);}
.ma_c00044{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);}
.m5c_c00044{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);}
.mec_c00044{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);}
.m19_c00044{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);}
.m37_c00044{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);}
.mf6_c00044{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);}
.mdc_c00044{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);}
.md7_c00044{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);}
.maf_c00044{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);}
.m92_c00044{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);}
.m25_c00044{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);}
.m8b_c00044{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);}
.m87_c00044{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);}
.me4_c00044{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);}
.m7f_c00044{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);}
.md0_c00044{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);}
.meb_c00044{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);}
.m77_c00044{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);}
.m7c_c00044{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);}
.m22_c00044{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);}
.mba_c00044{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);}
.m80_c00044{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);}
.md_c00044{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);}
.m2b_c00044{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);}
.m50_c00044{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);}
.m64_c00044{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);}
.m7e_c00044{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);}
.m91_c00044{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);}
.m69_c00044{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);}
.ma3_c00044{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);}
.me1_c00044{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);}
.m96_c00044{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);}
.m35_c00044{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);}
.mc8_c00044{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);}
.m56_c00044{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);}
.m12_c00044{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);}
.m60_c00044{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);}
.m75_c00044{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);}
.m9e_c00044{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);}
.ma7_c00044{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);}
.ma4_c00044{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);}
.mcc_c00044{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);}
.m6d_c00044{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);}
.md8_c00044{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);}
.m3d_c00044{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);}
.mca_c00044{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);}
.mfe_c00044{transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);}
.m31_c00044{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);}
.m5b_c00044{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);}
.m70_c00044{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);}
.m5a_c00044{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);}
.mb6_c00044{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);}
.m76_c00044{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);}
.m9d_c00044{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);}
.mdb_c00044{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);}
.m85_c00044{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);}
.mfb_c00044{transform:matrix(0.196810,0.001378,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196810,0.001378,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196810,0.001378,-0.001750,0.249994,0,0);}
.m38_c00044{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);}
.m8d_c00044{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_c00044{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);}
.m1e_c00044{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);}
.mb3_c00044{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);}
.mf9_c00044{transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);}
.m1f_c00044{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);}
.m7d_c00044{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);}
.m90_c00044{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);}
.mb1_c00044{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);}
.m100_c00044{transform:matrix(0.199670,0.001398,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199670,0.001398,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199670,0.001398,-0.001750,0.249994,0,0);}
.mb2_c00044{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);}
.m8c_c00044{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m99_c00044{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);}
.m1d_c00044{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);}
.md9_c00044{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);}
.m9f_c00044{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);}
.mef_c00044{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);}
.ma0_c00044{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);}
.m29_c00044{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);}
.m32_c00044{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);}
.m43_c00044{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);}
.mda_c00044{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);}
.mcd_c00044{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);}
.m82_c00044{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);}
.m71_c00044{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);}
.me6_c00044{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);}
.m52_c00044{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);}
.m16_c00044{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);}
.mc4_c00044{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);}
.m72_c00044{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);}
.me2_c00044{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);}
.mc1_c00044{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);}
.m84_c00044{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);}
.mc3_c00044{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);}
.m6f_c00044{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);}
.mc_c00044{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);}
.m6c_c00044{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);}
.mbe_c00044{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);}
.m83_c00044{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);}
.me_c00044{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);}
.mb_c00044{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);}
.m103_c00044{transform:matrix(0.211605,0.001481,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211605,0.001481,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211605,0.001481,-0.001750,0.249994,0,0);}
.m104_c00044{transform:matrix(0.212405,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212405,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212405,0.001487,-0.001750,0.249994,0,0);}
.me7_c00044{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);}
.ma6_c00044{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);}
.m5d_c00044{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);}
.mf_c00044{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);}
.m59_c00044{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);}
.m26_c00044{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);}
.m2a_c00044{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);}
.m7_c00044{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);}
.mcf_c00044{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);}
.mcb_c00044{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);}
.m6a_c00044{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);}
.m4d_c00044{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);}
.m61_c00044{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);}
.m21_c00044{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);}
.m28_c00044{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);}
.m1b_c00044{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);}
.mde_c00044{transform:matrix(0.226760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226760,0.000000,0.000000,0.250000,0,0);}
.md2_c00044{transform:matrix(0.227165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227165,0.000000,0.000000,0.250000,0,0);}
.m95_c00044{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);}
.m34_c00044{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);}
.m101_c00044{transform:matrix(0.232144,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232144,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232144,0.001625,-0.001750,0.249994,0,0);}
.m4e_c00044{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.mf7_c00044{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.mc0_c00044{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m9c_c00044{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);}
.me0_c00044{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);}
.m4c_c00044{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);}
.m10_c00044{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);}
.m7b_c00044{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);}
.m58_c00044{transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);}
.m6e_c00044{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);}
.ma2_c00044{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.md1_c00044{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);}
.m1c_c00044{transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{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);}
.mf8_c00044{transform:matrix(0.253354,0.001773,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253354,0.001773,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253354,0.001773,-0.001750,0.249994,0,0);}
.m4b_c00044{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);}
.mad_c00044{transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259160,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);}
.m57_c00044{transform:matrix(0.262230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262230,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);}
.md6_c00044{transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);}
.mce_c00044{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.278598,-0.003900,0.003500,0.249976,0,0);-ms-transform:matrix(0.278598,-0.003900,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278598,-0.003900,0.003500,0.249976,0,0);}
.m14_c00044{transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);}
.m4f_c00044{transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284070,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.284517,-0.003983,0.003500,0.249976,0,0);-ms-transform:matrix(0.284517,-0.003983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284517,-0.003983,0.003500,0.249976,0,0);}
.m4a_c00044{transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286560,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);}
.med_c00044{transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);}
.m62_c00044{transform:matrix(0.307665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307665,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332265,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.333977,-0.004676,0.003500,0.249976,0,0);-ms-transform:matrix(0.333977,-0.004676,0.003500,0.249976,0,0);-webkit-transform:matrix(0.333977,-0.004676,0.003500,0.249976,0,0);}
.me5_c00044{transform:matrix(0.344030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344030,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.345371,-0.004835,0.003500,0.249976,0,0);-ms-transform:matrix(0.345371,-0.004835,0.003500,0.249976,0,0);-webkit-transform:matrix(0.345371,-0.004835,0.003500,0.249976,0,0);}
.md3_c00044{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.me3_c00044{transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);}
.mac_c00044{transform:matrix(0.393650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393650,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{transform:matrix(0.405120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405120,0.000000,0.000000,0.250000,0,0);}
.m9b_c00044{transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438020,0.000000,0.000000,0.250000,0,0);}
.m5f_c00044{transform:matrix(0.450235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450235,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.570924,-0.007993,0.003500,0.249976,0,0);-ms-transform:matrix(0.570924,-0.007993,0.003500,0.249976,0,0);-webkit-transform:matrix(0.570924,-0.007993,0.003500,0.249976,0,0);}
.m5e_c00044{transform:matrix(0.858610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.858610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.858610,0.000000,0.000000,0.250000,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;}
.fsa_c00044{font-size:51.450000px;}
.fsd_c00044{font-size:53.551312px;}
.fsb_c00044{font-size:54.600000px;}
.fsc_c00044{font-size:59.850000px;}
.fs8_c00044{font-size:67.200000px;}
.fs9_c00044{font-size:69.300000px;}
.fs7_c00044{font-size:70.350000px;}
.fs2_c00044{font-size:71.400000px;}
.fs3_c00044{font-size:72.450000px;}
.fs5_c00044{font-size:73.500000px;}
.fs4_c00044{font-size:74.550000px;}
.fs6_c00044{font-size:78.750000px;}
.fs1_c00044{font-size:115.511318px;}
.fs0_c00044{font-size:222.621814px;}
.y0_c00044{bottom:0.000000px;}
.y47_c00044{bottom:140.476452px;}
.y46_c00044{bottom:141.013055px;}
.y45_c00044{bottom:141.338145px;}
.y44_c00044{bottom:141.451545px;}
.y43_c00044{bottom:141.678366px;}
.y42_c00044{bottom:141.751414px;}
.y41_c00044{bottom:142.094250px;}
.y40_c00044{bottom:142.239654px;}
.y3f_c00044{bottom:142.453245px;}
.y3e_c00044{bottom:142.742404px;}
.y3d_c00044{bottom:143.039155px;}
.y3c_c00044{bottom:143.154467px;}
.y3b_c00044{bottom:143.370000px;}
.y3a_c00044{bottom:159.184500px;}
.y39_c00044{bottom:174.928500px;}
.y38_c00044{bottom:193.107000px;}
.y37_c00044{bottom:229.993500px;}
.y36_c00044{bottom:230.418000px;}
.y35_c00044{bottom:230.923500px;}
.y34_c00044{bottom:231.499500px;}
.y33_c00044{bottom:231.745500px;}
.y32_c00044{bottom:232.153500px;}
.y31_c00044{bottom:232.456500px;}
.y30_c00044{bottom:232.741500px;}
.y2f_c00044{bottom:252.733500px;}
.y2e_c00044{bottom:253.098000px;}
.y2d_c00044{bottom:253.285500px;}
.y2c_c00044{bottom:253.639500px;}
.y2b_c00044{bottom:253.981500px;}
.y2a_c00044{bottom:254.407500px;}
.y29_c00044{bottom:254.698500px;}
.y28_c00044{bottom:254.970000px;}
.y27_c00044{bottom:255.420000px;}
.y26_c00044{bottom:276.904500px;}
.y25_c00044{bottom:298.869000px;}
.y24_c00044{bottom:299.454000px;}
.y23_c00044{bottom:299.635500px;}
.y22_c00044{bottom:299.832000px;}
.y21_c00044{bottom:300.415500px;}
.y20_c00044{bottom:300.636000px;}
.y1f_c00044{bottom:300.843000px;}
.y1e_c00044{bottom:301.231500px;}
.y1d_c00044{bottom:322.498500px;}
.y1c_c00044{bottom:344.809500px;}
.y1b_c00044{bottom:367.740000px;}
.y1a_c00044{bottom:390.492000px;}
.y19_c00044{bottom:413.704500px;}
.y18_c00044{bottom:435.336000px;}
.y17_c00044{bottom:460.101000px;}
.y16_c00044{bottom:481.579500px;}
.y15_c00044{bottom:504.999000px;}
.y14_c00044{bottom:527.850000px;}
.y13_c00044{bottom:550.447500px;}
.y12_c00044{bottom:572.281500px;}
.y11_c00044{bottom:593.538000px;}
.y10_c00044{bottom:616.761000px;}
.yf_c00044{bottom:639.115500px;}
.ye_c00044{bottom:661.902000px;}
.yd_c00044{bottom:685.198500px;}
.yc_c00044{bottom:708.276000px;}
.yb_c00044{bottom:730.938000px;}
.ya_c00044{bottom:753.879000px;}
.y9_c00044{bottom:777.189000px;}
.y8_c00044{bottom:799.743000px;}
.y3_c00044{bottom:836.731158px;}
.y4_c00044{bottom:838.575111px;}
.y5_c00044{bottom:841.375194px;}
.y6_c00044{bottom:842.262408px;}
.y7_c00044{bottom:843.116649px;}
.y1_c00044{bottom:876.357000px;}
.y2_c00044{bottom:883.106148px;}
.hc_c00044{height:51.450000px;}
.hf_c00044{height:53.551312px;}
.hd_c00044{height:54.600000px;}
.he_c00044{height:59.850000px;}
.ha_c00044{height:67.200000px;}
.hb_c00044{height:69.300000px;}
.h9_c00044{height:70.350000px;}
.h4_c00044{height:71.400000px;}
.h5_c00044{height:72.450000px;}
.h7_c00044{height:73.500000px;}
.h6_c00044{height:74.550000px;}
.h8_c00044{height:78.750000px;}
.h3_c00044{height:115.511318px;}
.h2_c00044{height:222.621814px;}
.h1_c00044{height:1005.000000px;}
.h0_c00044{height:1005.150000px;}
.w0_c00044{width:732.750000px;}
.x0_c00044{left:0.000000px;}
.x3_c00044{left:62.762232px;}
.x1_c00044{left:64.911000px;}
.x82_c00044{left:117.720000px;}
.x97_c00044{left:121.156500px;}
.x83_c00044{left:129.600000px;}
.x47_c00044{left:140.940000px;}
.x12_c00044{left:142.020000px;}
.x51_c00044{left:144.720000px;}
.x34_c00044{left:146.340000px;}
.x84_c00044{left:147.690000px;}
.x13_c00044{left:151.740000px;}
.x8_c00044{left:153.360000px;}
.x8c_c00044{left:158.760000px;}
.x98_c00044{left:168.420000px;}
.x95_c00044{left:171.990000px;}
.x29_c00044{left:176.040000px;}
.x3b_c00044{left:178.740000px;}
.x30_c00044{left:181.440000px;}
.x21_c00044{left:184.140000px;}
.x4c_c00044{left:188.460000px;}
.x8d_c00044{left:190.620000px;}
.x62_c00044{left:191.970000px;}
.x67_c00044{left:194.940000px;}
.x5c_c00044{left:197.910000px;}
.x9_c00044{left:199.800000px;}
.x70_c00044{left:201.690000px;}
.x7d_c00044{left:203.470500px;}
.x4_c00044{left:204.653727px;}
.x7b_c00044{left:207.628500px;}
.x99_c00044{left:210.813000px;}
.x18_c00044{left:213.570000px;}
.x22_c00044{left:215.730000px;}
.x78_c00044{left:220.050000px;}
.x36_c00044{left:221.400000px;}
.x4d_c00044{left:224.910000px;}
.x3c_c00044{left:225.990000px;}
.x79_c00044{left:228.051000px;}
.x2a_c00044{left:230.040000px;}
.x57_c00044{left:231.930000px;}
.x7e_c00044{left:233.698500px;}
.x85_c00044{left:237.060000px;}
.x48_c00044{left:240.840000px;}
.x68_c00044{left:241.920000px;}
.xa_c00044{left:244.080000px;}
.x49_c00044{left:245.430000px;}
.x37_c00044{left:246.780000px;}
.x2b_c00044{left:247.860000px;}
.x23_c00044{left:252.720000px;}
.x7c_c00044{left:254.068500px;}
.x74_c00044{left:255.960000px;}
.x19_c00044{left:260.280000px;}
.x63_c00044{left:264.600000px;}
.x7f_c00044{left:266.106000px;}
.x5d_c00044{left:268.380000px;}
.x24_c00044{left:272.160000px;}
.xb_c00044{left:275.400000px;}
.x75_c00044{left:278.100000px;}
.x58_c00044{left:279.990000px;}
.x41_c00044{left:282.150000px;}
.x1a_c00044{left:285.930000px;}
.x8e_c00044{left:287.820000px;}
.x3d_c00044{left:289.980000px;}
.x86_c00044{left:291.060000px;}
.x73_c00044{left:293.220000px;}
.x4a_c00044{left:294.570000px;}
.x35_c00044{left:296.460000px;}
.x52_c00044{left:298.080000px;}
.x5e_c00044{left:300.780000px;}
.x9a_c00044{left:303.406500px;}
.x71_c00044{left:307.260000px;}
.x2c_c00044{left:308.340000px;}
.x31_c00044{left:310.230000px;}
.x14_c00044{left:312.120000px;}
.x80_c00044{left:313.396500px;}
.xc_c00044{left:315.360000px;}
.x38_c00044{left:318.330000px;}
.x3e_c00044{left:321.300000px;}
.x2d_c00044{left:325.620000px;}
.x72_c00044{left:329.400000px;}
.x42_c00044{left:331.290000px;}
.xd_c00044{left:333.450000px;}
.x59_c00044{left:336.420000px;}
.x1b_c00044{left:338.310000px;}
.x39_c00044{left:342.900000px;}
.x76_c00044{left:346.410000px;}
.x25_c00044{left:349.110000px;}
.x64_c00044{left:350.460000px;}
.x4e_c00044{left:351.810000px;}
.x69_c00044{left:353.160000px;}
.x15_c00044{left:354.780000px;}
.x53_c00044{left:359.640000px;}
.x1c_c00044{left:360.990000px;}
.x2e_c00044{left:363.150000px;}
.x77_c00044{left:365.040000px;}
.x43_c00044{left:370.710000px;}
.x7a_c00044{left:375.735000px;}
.x16_c00044{left:378.000000px;}
.x6e_c00044{left:379.890000px;}
.x87_c00044{left:380.970000px;}
.x3a_c00044{left:383.670000px;}
.x5f_c00044{left:385.020000px;}
.x3f_c00044{left:389.070000px;}
.x81_c00044{left:390.849000px;}
.x26_c00044{left:392.580000px;}
.xe_c00044{left:394.740000px;}
.x6a_c00044{left:398.790000px;}
.x4f_c00044{left:403.110000px;}
.x32_c00044{left:407.700000px;}
.x8f_c00044{left:409.320000px;}
.x9b_c00044{left:411.421500px;}
.x5a_c00044{left:412.560000px;}
.x44_c00044{left:413.640000px;}
.x40_c00044{left:414.990000px;}
.x65_c00044{left:416.880000px;}
.x6f_c00044{left:417.960000px;}
.x54_c00044{left:419.040000px;}
.x5_c00044{left:420.091251px;}
.x2f_c00044{left:422.820000px;}
.x33_c00044{left:424.440000px;}
.x1d_c00044{left:426.870000px;}
.x17_c00044{left:436.050000px;}
.xf_c00044{left:438.480000px;}
.x1e_c00044{left:441.450000px;}
.x45_c00044{left:446.040000px;}
.x50_c00044{left:447.660000px;}
.x66_c00044{left:449.010000px;}
.x60_c00044{left:451.440000px;}
.x55_c00044{left:456.840000px;}
.x6b_c00044{left:458.730000px;}
.x10_c00044{left:460.890000px;}
.x5b_c00044{left:463.050000px;}
.x4b_c00044{left:465.210000px;}
.x1f_c00044{left:467.100000px;}
.x90_c00044{left:470.340000px;}
.x27_c00044{left:473.310000px;}
.x56_c00044{left:474.390000px;}
.x6c_c00044{left:476.820000px;}
.x88_c00044{left:478.710000px;}
.x6_c00044{left:488.393217px;}
.x6d_c00044{left:496.260000px;}
.x89_c00044{left:500.040000px;}
.x11_c00044{left:505.980000px;}
.x91_c00044{left:514.890000px;}
.x28_c00044{left:517.050000px;}
.x46_c00044{left:518.670000px;}
.x61_c00044{left:524.340000px;}
.x20_c00044{left:528.660000px;}
.x9c_c00044{left:534.520500px;}
.x8a_c00044{left:541.350000px;}
.x92_c00044{left:544.860000px;}
.x2_c00044{left:546.993000px;}
.x7_c00044{left:554.125641px;}
.x8b_c00044{left:558.900000px;}
.x93_c00044{left:562.950000px;}
.x96_c00044{left:565.650000px;}
.x94_c00044{left:601.020000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.fsa_c00044{font-size:45.733333pt;}
.fsd_c00044{font-size:47.601166pt;}
.fsb_c00044{font-size:48.533333pt;}
.fsc_c00044{font-size:53.200000pt;}
.fs8_c00044{font-size:59.733333pt;}
.fs9_c00044{font-size:61.600000pt;}
.fs7_c00044{font-size:62.533333pt;}
.fs2_c00044{font-size:63.466667pt;}
.fs3_c00044{font-size:64.400000pt;}
.fs5_c00044{font-size:65.333333pt;}
.fs4_c00044{font-size:66.266667pt;}
.fs6_c00044{font-size:70.000000pt;}
.fs1_c00044{font-size:102.676728pt;}
.fs0_c00044{font-size:197.886057pt;}
.y0_c00044{bottom:0.000000pt;}
.y47_c00044{bottom:124.867957pt;}
.y46_c00044{bottom:125.344937pt;}
.y45_c00044{bottom:125.633907pt;}
.y44_c00044{bottom:125.734707pt;}
.y43_c00044{bottom:125.936325pt;}
.y42_c00044{bottom:126.001257pt;}
.y41_c00044{bottom:126.306000pt;}
.y40_c00044{bottom:126.435248pt;}
.y3f_c00044{bottom:126.625107pt;}
.y3e_c00044{bottom:126.882137pt;}
.y3d_c00044{bottom:127.145916pt;}
.y3c_c00044{bottom:127.248415pt;}
.y3b_c00044{bottom:127.440000pt;}
.y3a_c00044{bottom:141.497333pt;}
.y39_c00044{bottom:155.492000pt;}
.y38_c00044{bottom:171.650667pt;}
.y37_c00044{bottom:204.438667pt;}
.y36_c00044{bottom:204.816000pt;}
.y35_c00044{bottom:205.265333pt;}
.y34_c00044{bottom:205.777333pt;}
.y33_c00044{bottom:205.996000pt;}
.y32_c00044{bottom:206.358667pt;}
.y31_c00044{bottom:206.628000pt;}
.y30_c00044{bottom:206.881333pt;}
.y2f_c00044{bottom:224.652000pt;}
.y2e_c00044{bottom:224.976000pt;}
.y2d_c00044{bottom:225.142667pt;}
.y2c_c00044{bottom:225.457333pt;}
.y2b_c00044{bottom:225.761333pt;}
.y2a_c00044{bottom:226.140000pt;}
.y29_c00044{bottom:226.398667pt;}
.y28_c00044{bottom:226.640000pt;}
.y27_c00044{bottom:227.040000pt;}
.y26_c00044{bottom:246.137333pt;}
.y25_c00044{bottom:265.661333pt;}
.y24_c00044{bottom:266.181333pt;}
.y23_c00044{bottom:266.342667pt;}
.y22_c00044{bottom:266.517333pt;}
.y21_c00044{bottom:267.036000pt;}
.y20_c00044{bottom:267.232000pt;}
.y1f_c00044{bottom:267.416000pt;}
.y1e_c00044{bottom:267.761333pt;}
.y1d_c00044{bottom:286.665333pt;}
.y1c_c00044{bottom:306.497333pt;}
.y1b_c00044{bottom:326.880000pt;}
.y1a_c00044{bottom:347.104000pt;}
.y19_c00044{bottom:367.737333pt;}
.y18_c00044{bottom:386.965333pt;}
.y17_c00044{bottom:408.978667pt;}
.y16_c00044{bottom:428.070667pt;}
.y15_c00044{bottom:448.888000pt;}
.y14_c00044{bottom:469.200000pt;}
.y13_c00044{bottom:489.286667pt;}
.y12_c00044{bottom:508.694667pt;}
.y11_c00044{bottom:527.589333pt;}
.y10_c00044{bottom:548.232000pt;}
.yf_c00044{bottom:568.102667pt;}
.ye_c00044{bottom:588.357333pt;}
.yd_c00044{bottom:609.065333pt;}
.yc_c00044{bottom:629.578667pt;}
.yb_c00044{bottom:649.722667pt;}
.ya_c00044{bottom:670.114667pt;}
.y9_c00044{bottom:690.834667pt;}
.y8_c00044{bottom:710.882667pt;}
.y3_c00044{bottom:743.761029pt;}
.y4_c00044{bottom:745.400099pt;}
.y5_c00044{bottom:747.889061pt;}
.y6_c00044{bottom:748.677696pt;}
.y7_c00044{bottom:749.437021pt;}
.y1_c00044{bottom:778.984000pt;}
.y2_c00044{bottom:784.983243pt;}
.hc_c00044{height:45.733333pt;}
.hf_c00044{height:47.601166pt;}
.hd_c00044{height:48.533333pt;}
.he_c00044{height:53.200000pt;}
.ha_c00044{height:59.733333pt;}
.hb_c00044{height:61.600000pt;}
.h9_c00044{height:62.533333pt;}
.h4_c00044{height:63.466667pt;}
.h5_c00044{height:64.400000pt;}
.h7_c00044{height:65.333333pt;}
.h6_c00044{height:66.266667pt;}
.h8_c00044{height:70.000000pt;}
.h3_c00044{height:102.676728pt;}
.h2_c00044{height:197.886057pt;}
.h1_c00044{height:893.333333pt;}
.h0_c00044{height:893.466667pt;}
.w0_c00044{width:651.333333pt;}
.x0_c00044{left:0.000000pt;}
.x3_c00044{left:55.788651pt;}
.x1_c00044{left:57.698667pt;}
.x82_c00044{left:104.640000pt;}
.x97_c00044{left:107.694667pt;}
.x83_c00044{left:115.200000pt;}
.x47_c00044{left:125.280000pt;}
.x12_c00044{left:126.240000pt;}
.x51_c00044{left:128.640000pt;}
.x34_c00044{left:130.080000pt;}
.x84_c00044{left:131.280000pt;}
.x13_c00044{left:134.880000pt;}
.x8_c00044{left:136.320000pt;}
.x8c_c00044{left:141.120000pt;}
.x98_c00044{left:149.706667pt;}
.x95_c00044{left:152.880000pt;}
.x29_c00044{left:156.480000pt;}
.x3b_c00044{left:158.880000pt;}
.x30_c00044{left:161.280000pt;}
.x21_c00044{left:163.680000pt;}
.x4c_c00044{left:167.520000pt;}
.x8d_c00044{left:169.440000pt;}
.x62_c00044{left:170.640000pt;}
.x67_c00044{left:173.280000pt;}
.x5c_c00044{left:175.920000pt;}
.x9_c00044{left:177.600000pt;}
.x70_c00044{left:179.280000pt;}
.x7d_c00044{left:180.862667pt;}
.x4_c00044{left:181.914424pt;}
.x7b_c00044{left:184.558667pt;}
.x99_c00044{left:187.389333pt;}
.x18_c00044{left:189.840000pt;}
.x22_c00044{left:191.760000pt;}
.x78_c00044{left:195.600000pt;}
.x36_c00044{left:196.800000pt;}
.x4d_c00044{left:199.920000pt;}
.x3c_c00044{left:200.880000pt;}
.x79_c00044{left:202.712000pt;}
.x2a_c00044{left:204.480000pt;}
.x57_c00044{left:206.160000pt;}
.x7e_c00044{left:207.732000pt;}
.x85_c00044{left:210.720000pt;}
.x48_c00044{left:214.080000pt;}
.x68_c00044{left:215.040000pt;}
.xa_c00044{left:216.960000pt;}
.x49_c00044{left:218.160000pt;}
.x37_c00044{left:219.360000pt;}
.x2b_c00044{left:220.320000pt;}
.x23_c00044{left:224.640000pt;}
.x7c_c00044{left:225.838667pt;}
.x74_c00044{left:227.520000pt;}
.x19_c00044{left:231.360000pt;}
.x63_c00044{left:235.200000pt;}
.x7f_c00044{left:236.538667pt;}
.x5d_c00044{left:238.560000pt;}
.x24_c00044{left:241.920000pt;}
.xb_c00044{left:244.800000pt;}
.x75_c00044{left:247.200000pt;}
.x58_c00044{left:248.880000pt;}
.x41_c00044{left:250.800000pt;}
.x1a_c00044{left:254.160000pt;}
.x8e_c00044{left:255.840000pt;}
.x3d_c00044{left:257.760000pt;}
.x86_c00044{left:258.720000pt;}
.x73_c00044{left:260.640000pt;}
.x4a_c00044{left:261.840000pt;}
.x35_c00044{left:263.520000pt;}
.x52_c00044{left:264.960000pt;}
.x5e_c00044{left:267.360000pt;}
.x9a_c00044{left:269.694667pt;}
.x71_c00044{left:273.120000pt;}
.x2c_c00044{left:274.080000pt;}
.x31_c00044{left:275.760000pt;}
.x14_c00044{left:277.440000pt;}
.x80_c00044{left:278.574667pt;}
.xc_c00044{left:280.320000pt;}
.x38_c00044{left:282.960000pt;}
.x3e_c00044{left:285.600000pt;}
.x2d_c00044{left:289.440000pt;}
.x72_c00044{left:292.800000pt;}
.x42_c00044{left:294.480000pt;}
.xd_c00044{left:296.400000pt;}
.x59_c00044{left:299.040000pt;}
.x1b_c00044{left:300.720000pt;}
.x39_c00044{left:304.800000pt;}
.x76_c00044{left:307.920000pt;}
.x25_c00044{left:310.320000pt;}
.x64_c00044{left:311.520000pt;}
.x4e_c00044{left:312.720000pt;}
.x69_c00044{left:313.920000pt;}
.x15_c00044{left:315.360000pt;}
.x53_c00044{left:319.680000pt;}
.x1c_c00044{left:320.880000pt;}
.x2e_c00044{left:322.800000pt;}
.x77_c00044{left:324.480000pt;}
.x43_c00044{left:329.520000pt;}
.x7a_c00044{left:333.986667pt;}
.x16_c00044{left:336.000000pt;}
.x6e_c00044{left:337.680000pt;}
.x87_c00044{left:338.640000pt;}
.x3a_c00044{left:341.040000pt;}
.x5f_c00044{left:342.240000pt;}
.x3f_c00044{left:345.840000pt;}
.x81_c00044{left:347.421333pt;}
.x26_c00044{left:348.960000pt;}
.xe_c00044{left:350.880000pt;}
.x6a_c00044{left:354.480000pt;}
.x4f_c00044{left:358.320000pt;}
.x32_c00044{left:362.400000pt;}
.x8f_c00044{left:363.840000pt;}
.x9b_c00044{left:365.708000pt;}
.x5a_c00044{left:366.720000pt;}
.x44_c00044{left:367.680000pt;}
.x40_c00044{left:368.880000pt;}
.x65_c00044{left:370.560000pt;}
.x6f_c00044{left:371.520000pt;}
.x54_c00044{left:372.480000pt;}
.x5_c00044{left:373.414445pt;}
.x2f_c00044{left:375.840000pt;}
.x33_c00044{left:377.280000pt;}
.x1d_c00044{left:379.440000pt;}
.x17_c00044{left:387.600000pt;}
.xf_c00044{left:389.760000pt;}
.x1e_c00044{left:392.400000pt;}
.x45_c00044{left:396.480000pt;}
.x50_c00044{left:397.920000pt;}
.x66_c00044{left:399.120000pt;}
.x60_c00044{left:401.280000pt;}
.x55_c00044{left:406.080000pt;}
.x6b_c00044{left:407.760000pt;}
.x10_c00044{left:409.680000pt;}
.x5b_c00044{left:411.600000pt;}
.x4b_c00044{left:413.520000pt;}
.x1f_c00044{left:415.200000pt;}
.x90_c00044{left:418.080000pt;}
.x27_c00044{left:420.720000pt;}
.x56_c00044{left:421.680000pt;}
.x6c_c00044{left:423.840000pt;}
.x88_c00044{left:425.520000pt;}
.x6_c00044{left:434.127304pt;}
.x6d_c00044{left:441.120000pt;}
.x89_c00044{left:444.480000pt;}
.x11_c00044{left:449.760000pt;}
.x91_c00044{left:457.680000pt;}
.x28_c00044{left:459.600000pt;}
.x46_c00044{left:461.040000pt;}
.x61_c00044{left:466.080000pt;}
.x20_c00044{left:469.920000pt;}
.x9c_c00044{left:475.129333pt;}
.x8a_c00044{left:481.200000pt;}
.x92_c00044{left:484.320000pt;}
.x2_c00044{left:486.216000pt;}
.x7_c00044{left:492.556125pt;}
.x8b_c00044{left:496.800000pt;}
.x93_c00044{left:500.400000pt;}
.x96_c00044{left:502.800000pt;}
.x94_c00044{left:534.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m125_c00045{transform:matrix(0.017298,0.000277,-0.003999,0.249968,0,0);-ms-transform:matrix(0.017298,0.000277,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.017298,0.000277,-0.003999,0.249968,0,0);}
.m65_c00045{transform:matrix(0.032128,0.000321,-0.002500,0.249988,0,0);-ms-transform:matrix(0.032128,0.000321,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.032128,0.000321,-0.002500,0.249988,0,0);}
.m11e_c00045{transform:matrix(0.036360,0.000582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.036360,0.000582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.036360,0.000582,-0.003999,0.249968,0,0);}
.m7f_c00045{transform:matrix(0.117784,0.001178,-0.002500,0.249988,0,0);-ms-transform:matrix(0.117784,0.001178,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.117784,0.001178,-0.002500,0.249988,0,0);}
.m25_c00045{transform:matrix(0.132270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132270,0.000000,0.000000,0.250000,0,0);}
.m8f_c00045{transform:matrix(0.133610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133610,0.000000,0.000000,0.250000,0,0);}
.m10b_c00045{transform:matrix(0.137125,0.002605,-0.004749,0.249955,0,0);-ms-transform:matrix(0.137125,0.002605,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.137125,0.002605,-0.004749,0.249955,0,0);}
.m5a_c00045{transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);}
.m3c_c00045{transform:matrix(0.143835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143835,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{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);}
.m5b_c00045{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);}
.m22_c00045{transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);}
.m99_c00045{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);}
.mb9_c00045{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);}
.m106_c00045{transform:matrix(0.153761,0.003229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153761,0.003229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153761,0.003229,-0.005249,0.249945,0,0);}
.mae_c00045{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);}
.m110_c00045{transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);}
.mba_c00045{transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);}
.mf4_c00045{transform:matrix(0.156287,0.002344,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156287,0.002344,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156287,0.002344,-0.003750,0.249972,0,0);}
.mda_c00045{transform:matrix(0.156532,0.002661,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156532,0.002661,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156532,0.002661,-0.004249,0.249964,0,0);}
.m62_c00045{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);}
.m17_c00045{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);}
.m105_c00045{transform:matrix(0.159195,0.003343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159195,0.003343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159195,0.003343,-0.005249,0.249945,0,0);}
.mb7_c00045{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m59_c00045{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);}
.m4c_c00045{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);}
.m50_c00045{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);}
.m86_c00045{transform:matrix(0.160642,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160642,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160642,0.001606,-0.002500,0.249988,0,0);}
.m42_c00045{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);}
.m11_c00045{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);}
.m33_c00045{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);}
.m2e_c00045{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);}
.mc_c00045{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);}
.m8c_c00045{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);}
.mca_c00045{transform:matrix(0.163416,0.002778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163416,0.002778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163416,0.002778,-0.004249,0.249964,0,0);}
.m118_c00045{transform:matrix(0.163485,0.003106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163485,0.003106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163485,0.003106,-0.004749,0.249955,0,0);}
.m83_c00045{transform:matrix(0.163487,0.001635,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163487,0.001635,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163487,0.001635,-0.002500,0.249988,0,0);}
.mad_c00045{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);}
.m130_c00045{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);}
.m31_c00045{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);}
.mb4_c00045{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);}
.m71_c00045{transform:matrix(0.165302,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165302,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165302,0.001653,-0.002500,0.249988,0,0);}
.m43_c00045{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);}
.m21_c00045{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);}
.m10c_c00045{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);}
.m90_c00045{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);}
.ma8_c00045{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{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);}
.m76_c00045{transform:matrix(0.167307,0.001673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167307,0.001673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167307,0.001673,-0.002500,0.249988,0,0);}
.mf0_c00045{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);}
.md8_c00045{transform:matrix(0.167986,0.002856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167986,0.002856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167986,0.002856,-0.004249,0.249964,0,0);}
.m41_c00045{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);}
.m81_c00045{transform:matrix(0.168522,0.001685,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168522,0.001685,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168522,0.001685,-0.002500,0.249988,0,0);}
.m20_c00045{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);}
.m91_c00045{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);}
.m133_c00045{transform:matrix(0.168761,0.002531,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168761,0.002531,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168761,0.002531,-0.003750,0.249972,0,0);}
.maa_c00045{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);}
.m2f_c00045{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);}
.m6c_c00045{transform:matrix(0.169322,0.001693,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169322,0.001693,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169322,0.001693,-0.002500,0.249988,0,0);}
.m13d_c00045{transform:matrix(0.169511,0.002543,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169511,0.002543,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169511,0.002543,-0.003750,0.249972,0,0);}
.mdc_c00045{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);}
.m10d_c00045{transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);}
.md6_c00045{transform:matrix(0.171400,0.002914,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171400,0.002914,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171400,0.002914,-0.004249,0.249964,0,0);}
.ma6_c00045{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);}
.m63_c00045{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);}
.m88_c00045{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);}
.m87_c00045{transform:matrix(0.172511,0.001725,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172511,0.001725,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172511,0.001725,-0.002500,0.249988,0,0);}
.m6f_c00045{transform:matrix(0.173266,0.001733,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173266,0.001733,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173266,0.001733,-0.002500,0.249988,0,0);}
.mbc_c00045{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);}
.m9c_c00045{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);}
.m73_c00045{transform:matrix(0.175241,0.001752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175241,0.001752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175241,0.001752,-0.002500,0.249988,0,0);}
.m74_c00045{transform:matrix(0.175886,0.001759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175886,0.001759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175886,0.001759,-0.002500,0.249988,0,0);}
.mb8_c00045{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_c00045{transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);}
.m47_c00045{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);}
.mbb_c00045{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);}
.m7c_c00045{transform:matrix(0.177211,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177211,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177211,0.001772,-0.002500,0.249988,0,0);}
.me_c00045{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);}
.mf8_c00045{transform:matrix(0.177340,0.002660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177340,0.002660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177340,0.002660,-0.003750,0.249972,0,0);}
.m114_c00045{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);}
.m9f_c00045{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);}
.mff_c00045{transform:matrix(0.178356,0.003210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178356,0.003210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178356,0.003210,-0.004499,0.249960,0,0);}
.ma3_c00045{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);}
.mb6_c00045{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m70_c00045{transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);}
.m8_c00045{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);}
.mb0_c00045{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);}
.m11f_c00045{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);}
.mbd_c00045{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);}
.ma4_c00045{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);}
.m122_c00045{transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);}
.m4d_c00045{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);}
.mea_c00045{transform:matrix(0.179495,0.002692,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179495,0.002692,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179495,0.002692,-0.003750,0.249972,0,0);}
.mb2_c00045{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);}
.mc0_c00045{transform:matrix(0.179825,0.002697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179825,0.002697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179825,0.002697,-0.003750,0.249972,0,0);}
.m135_c00045{transform:matrix(0.180520,0.002708,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180520,0.002708,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180520,0.002708,-0.003750,0.249972,0,0);}
.md3_c00045{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);}
.ma1_c00045{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);}
.m5f_c00045{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);}
.mab_c00045{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);}
.m121_c00045{transform:matrix(0.181142,0.002898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181142,0.002898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181142,0.002898,-0.003999,0.249968,0,0);}
.mf9_c00045{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);}
.m4a_c00045{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);}
.m64_c00045{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);}
.m5_c00045{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);}
.mb3_c00045{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);}
.m39_c00045{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);}
.m139_c00045{transform:matrix(0.182509,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182509,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182509,0.002738,-0.003750,0.249972,0,0);}
.m9_c00045{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);}
.m3e_c00045{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);}
.m16_c00045{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);}
.m23_c00045{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);}
.m34_c00045{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);}
.m132_c00045{transform:matrix(0.183304,0.002750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183304,0.002750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183304,0.002750,-0.003750,0.249972,0,0);}
.m6b_c00045{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);}
.mdf_c00045{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);}
.m78_c00045{transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);}
.m4b_c00045{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);}
.m75_c00045{transform:matrix(0.184016,0.001840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184016,0.001840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184016,0.001840,-0.002500,0.249988,0,0);}
.m6e_c00045{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);}
.m3d_c00045{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);}
.m7_c00045{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);}
.m2a_c00045{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);}
.m8b_c00045{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);}
.m111_c00045{transform:matrix(0.184882,0.003513,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184882,0.003513,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184882,0.003513,-0.004749,0.249955,0,0);}
.m12_c00045{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);}
.md2_c00045{transform:matrix(0.185513,0.003154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185513,0.003154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185513,0.003154,-0.004249,0.249964,0,0);}
.mef_c00045{transform:matrix(0.185639,0.002785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185639,0.002785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185639,0.002785,-0.003750,0.249972,0,0);}
.m107_c00045{transform:matrix(0.186464,0.003916,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186464,0.003916,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186464,0.003916,-0.005249,0.249945,0,0);}
.me8_c00045{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);}
.m32_c00045{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);}
.m124_c00045{transform:matrix(0.187181,0.002995,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187181,0.002995,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187181,0.002995,-0.003999,0.249968,0,0);}
.m72_c00045{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);}
.m82_c00045{transform:matrix(0.187396,0.001874,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187396,0.001874,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187396,0.001874,-0.002500,0.249988,0,0);}
.m28_c00045{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);}
.mc8_c00045{transform:matrix(0.188093,0.003198,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188093,0.003198,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188093,0.003198,-0.004249,0.249964,0,0);}
.mc1_c00045{transform:matrix(0.188274,0.002824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188274,0.002824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188274,0.002824,-0.003750,0.249972,0,0);}
.m46_c00045{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);}
.m7b_c00045{transform:matrix(0.188686,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188686,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188686,0.001887,-0.002500,0.249988,0,0);}
.m12c_c00045{transform:matrix(0.188819,0.002832,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188819,0.002832,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188819,0.002832,-0.003750,0.249972,0,0);}
.mf_c00045{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);}
.m84_c00045{transform:matrix(0.189051,0.001891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189051,0.001891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189051,0.001891,-0.002500,0.249988,0,0);}
.mde_c00045{transform:matrix(0.189058,0.003214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189058,0.003214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189058,0.003214,-0.004249,0.249964,0,0);}
.mf6_c00045{transform:matrix(0.189934,0.002849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189934,0.002849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189934,0.002849,-0.003750,0.249972,0,0);}
.m2c_c00045{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);}
.m10a_c00045{transform:matrix(0.190681,0.003623,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190681,0.003623,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190681,0.003623,-0.004749,0.249955,0,0);}
.m13c_c00045{transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);}
.mc9_c00045{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);}
.mbf_c00045{transform:matrix(0.191653,0.002875,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191653,0.002875,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191653,0.002875,-0.003750,0.249972,0,0);}
.m134_c00045{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);}
.m108_c00045{transform:matrix(0.191895,0.003646,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191895,0.003646,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191895,0.003646,-0.004749,0.249955,0,0);}
.m8a_c00045{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);}
.m52_c00045{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);}
.m18_c00045{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);}
.mc3_c00045{transform:matrix(0.192813,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192813,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192813,0.002892,-0.003750,0.249972,0,0);}
.me6_c00045{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);}
.m44_c00045{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);}
.med_c00045{transform:matrix(0.192968,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192968,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192968,0.002895,-0.003750,0.249972,0,0);}
.m51_c00045{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);}
.m12a_c00045{transform:matrix(0.193425,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193425,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193425,0.003095,-0.003999,0.249968,0,0);}
.m30_c00045{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);}
.mfa_c00045{transform:matrix(0.193678,0.002905,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193678,0.002905,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193678,0.002905,-0.003750,0.249972,0,0);}
.m136_c00045{transform:matrix(0.193708,0.002906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193708,0.002906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193708,0.002906,-0.003750,0.249972,0,0);}
.m113_c00045{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);}
.mdb_c00045{transform:matrix(0.194467,0.003306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194467,0.003306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194467,0.003306,-0.004249,0.249964,0,0);}
.md4_c00045{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);}
.m48_c00045{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);}
.m2d_c00045{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);}
.mbe_c00045{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);}
.mf1_c00045{transform:matrix(0.196248,0.002944,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196248,0.002944,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196248,0.002944,-0.003750,0.249972,0,0);}
.m49_c00045{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);}
.m112_c00045{transform:matrix(0.197269,0.003748,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197269,0.003748,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197269,0.003748,-0.004749,0.249955,0,0);}
.m120_c00045{transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);}
.m13_c00045{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);}
.m6_c00045{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);}
.m8e_c00045{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);}
.m5e_c00045{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);}
.m12f_c00045{transform:matrix(0.198873,0.002983,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198873,0.002983,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198873,0.002983,-0.003750,0.249972,0,0);}
.m102_c00045{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);}
.mc7_c00045{transform:matrix(0.199171,0.003386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199171,0.003386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199171,0.003386,-0.004249,0.249964,0,0);}
.m3_c00045{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);}
.m9e_c00045{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);}
.ma9_c00045{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);}
.m4_c00045{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);}
.m123_c00045{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);}
.mfc_c00045{transform:matrix(0.200553,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200553,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200553,0.003610,-0.004499,0.249960,0,0);}
.mcc_c00045{transform:matrix(0.200896,0.003415,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200896,0.003415,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200896,0.003415,-0.004249,0.249964,0,0);}
.m117_c00045{transform:matrix(0.201094,0.003821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201094,0.003821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201094,0.003821,-0.004749,0.249955,0,0);}
.mac_c00045{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m131_c00045{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);}
.m3b_c00045{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);}
.m11b_c00045{transform:matrix(0.202454,0.003239,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202454,0.003239,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202454,0.003239,-0.003999,0.249968,0,0);}
.mc2_c00045{transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);}
.m145_c00045{transform:matrix(0.203797,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203797,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203797,0.003057,-0.003750,0.249972,0,0);}
.meb_c00045{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);}
.m3a_c00045{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);}
.m85_c00045{transform:matrix(0.204430,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204430,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204430,0.002044,-0.002500,0.249988,0,0);}
.mfd_c00045{transform:matrix(0.204662,0.003684,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204662,0.003684,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204662,0.003684,-0.004499,0.249960,0,0);}
.m119_c00045{transform:matrix(0.204734,0.003276,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204734,0.003276,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204734,0.003276,-0.003999,0.249968,0,0);}
.m100_c00045{transform:matrix(0.204952,0.003689,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204952,0.003689,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204952,0.003689,-0.004499,0.249960,0,0);}
.m9a_c00045{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);}
.m142_c00045{transform:matrix(0.205677,0.003085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205677,0.003085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205677,0.003085,-0.003750,0.249972,0,0);}
.m7e_c00045{transform:matrix(0.205790,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205790,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205790,0.002058,-0.002500,0.249988,0,0);}
.m45_c00045{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);}
.m95_c00045{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);}
.mf2_c00045{transform:matrix(0.207152,0.003107,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207152,0.003107,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207152,0.003107,-0.003750,0.249972,0,0);}
.m9b_c00045{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);}
.m128_c00045{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);}
.ma7_c00045{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);}
.m116_c00045{transform:matrix(0.207563,0.003944,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207563,0.003944,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207563,0.003944,-0.004749,0.249955,0,0);}
.m12d_c00045{transform:matrix(0.207612,0.003114,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207612,0.003114,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207612,0.003114,-0.003750,0.249972,0,0);}
.mcb_c00045{transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);}
.mf5_c00045{transform:matrix(0.207932,0.003119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207932,0.003119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207932,0.003119,-0.003750,0.249972,0,0);}
.m67_c00045{transform:matrix(0.207950,0.002079,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207950,0.002079,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207950,0.002079,-0.002500,0.249988,0,0);}
.mb_c00045{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);}
.mfb_c00045{transform:matrix(0.208346,0.003750,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208346,0.003750,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208346,0.003750,-0.004499,0.249960,0,0);}
.md1_c00045{transform:matrix(0.208515,0.003545,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208515,0.003545,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208515,0.003545,-0.004249,0.249964,0,0);}
.m143_c00045{transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);}
.m5c_c00045{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);}
.m4e_c00045{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);}
.m79_c00045{transform:matrix(0.209305,0.002093,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209305,0.002093,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209305,0.002093,-0.002500,0.249988,0,0);}
.mb5_c00045{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);}
.ma5_c00045{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);}
.m89_c00045{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);}
.m101_c00045{transform:matrix(0.210811,0.003795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210811,0.003795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210811,0.003795,-0.004499,0.249960,0,0);}
.m7d_c00045{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);}
.mfe_c00045{transform:matrix(0.210891,0.003796,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210891,0.003796,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210891,0.003796,-0.004499,0.249960,0,0);}
.m1e_c00045{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);}
.m68_c00045{transform:matrix(0.211574,0.002116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211574,0.002116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211574,0.002116,-0.002500,0.249988,0,0);}
.md7_c00045{transform:matrix(0.211989,0.003604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211989,0.003604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211989,0.003604,-0.004249,0.249964,0,0);}
.ma2_c00045{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);}
.m1c_c00045{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);}
.m14_c00045{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);}
.m8d_c00045{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);}
.m97_c00045{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);}
.ma0_c00045{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);}
.mce_c00045{transform:matrix(0.213389,0.003628,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213389,0.003628,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213389,0.003628,-0.004249,0.249964,0,0);}
.m127_c00045{transform:matrix(0.213978,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213978,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213978,0.003424,-0.003999,0.249968,0,0);}
.mec_c00045{transform:matrix(0.214236,0.003214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214236,0.003214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214236,0.003214,-0.003750,0.249972,0,0);}
.m2b_c00045{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);}
.m54_c00045{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);}
.m6d_c00045{transform:matrix(0.215244,0.002152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215244,0.002152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215244,0.002152,-0.002500,0.249988,0,0);}
.mcd_c00045{transform:matrix(0.215424,0.003662,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215424,0.003662,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215424,0.003662,-0.004249,0.249964,0,0);}
.m11d_c00045{transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);}
.md_c00045{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.m9d_c00045{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);}
.m129_c00045{transform:matrix(0.217207,0.003475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217207,0.003475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217207,0.003475,-0.003999,0.249968,0,0);}
.m12e_c00045{transform:matrix(0.217531,0.003263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217531,0.003263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217531,0.003263,-0.003750,0.249972,0,0);}
.maf_c00045{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);}
.m138_c00045{transform:matrix(0.217771,0.003267,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217771,0.003267,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217771,0.003267,-0.003750,0.249972,0,0);}
.m56_c00045{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);}
.m15_c00045{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);}
.m40_c00045{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);}
.m140_c00045{transform:matrix(0.219130,0.003287,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219130,0.003287,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219130,0.003287,-0.003750,0.249972,0,0);}
.m11c_c00045{transform:matrix(0.220127,0.003522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220127,0.003522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220127,0.003522,-0.003999,0.249968,0,0);}
.mf7_c00045{transform:matrix(0.220300,0.003305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220300,0.003305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220300,0.003305,-0.003750,0.249972,0,0);}
.m103_c00045{transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);}
.m4f_c00045{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);}
.ma_c00045{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);}
.md9_c00045{transform:matrix(0.222158,0.003777,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222158,0.003777,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222158,0.003777,-0.004249,0.249964,0,0);}
.m115_c00045{transform:matrix(0.222395,0.004226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222395,0.004226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222395,0.004226,-0.004749,0.249955,0,0);}
.m96_c00045{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);}
.m5d_c00045{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);}
.mf3_c00045{transform:matrix(0.223470,0.003352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223470,0.003352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223470,0.003352,-0.003750,0.249972,0,0);}
.m26_c00045{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);}
.mb1_c00045{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);}
.m7a_c00045{transform:matrix(0.227169,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227169,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227169,0.002272,-0.002500,0.249988,0,0);}
.m12b_c00045{transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);}
.m94_c00045{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);}
.m126_c00045{transform:matrix(0.228656,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228656,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228656,0.003658,-0.003999,0.249968,0,0);}
.m13b_c00045{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);}
.m10e_c00045{transform:matrix(0.228884,0.004349,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228884,0.004349,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228884,0.004349,-0.004749,0.249955,0,0);}
.m11a_c00045{transform:matrix(0.229616,0.003674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229616,0.003674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229616,0.003674,-0.003999,0.249968,0,0);}
.m66_c00045{transform:matrix(0.230163,0.002302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230163,0.002302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230163,0.002302,-0.002500,0.249988,0,0);}
.mc5_c00045{transform:matrix(0.230604,0.003459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230604,0.003459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230604,0.003459,-0.003750,0.249972,0,0);}
.m146_c00045{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);}
.m38_c00045{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);}
.mcf_c00045{transform:matrix(0.238156,0.004049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238156,0.004049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238156,0.004049,-0.004249,0.249964,0,0);}
.m53_c00045{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);}
.m13a_c00045{transform:matrix(0.240208,0.003603,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240208,0.003603,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240208,0.003603,-0.003750,0.249972,0,0);}
.mee_c00045{transform:matrix(0.241223,0.003618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241223,0.003618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241223,0.003618,-0.003750,0.249972,0,0);}
.md5_c00045{transform:matrix(0.241930,0.004113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241930,0.004113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241930,0.004113,-0.004249,0.249964,0,0);}
.m109_c00045{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);}
.m1a_c00045{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);}
.m69_c00045{transform:matrix(0.245568,0.002456,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245568,0.002456,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245568,0.002456,-0.002500,0.249988,0,0);}
.me7_c00045{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);}
.m137_c00045{transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);}
.m10f_c00045{transform:matrix(0.252949,0.004806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252949,0.004806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252949,0.004806,-0.004749,0.249955,0,0);}
.mc4_c00045{transform:matrix(0.253152,0.003797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253152,0.003797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253152,0.003797,-0.003750,0.249972,0,0);}
.m1b_c00045{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);}
.m104_c00045{transform:matrix(0.255224,0.005360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255224,0.005360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255224,0.005360,-0.005249,0.249945,0,0);}
.m92_c00045{transform:matrix(0.255370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255370,0.000000,0.000000,0.250000,0,0);}
.m141_c00045{transform:matrix(0.255556,0.003833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255556,0.003833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255556,0.003833,-0.003750,0.249972,0,0);}
.m77_c00045{transform:matrix(0.255817,0.002558,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255817,0.002558,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255817,0.002558,-0.002500,0.249988,0,0);}
.m29_c00045{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);}
.mc6_c00045{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);}
.me5_c00045{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.m93_c00045{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.md0_c00045{transform:matrix(0.270871,0.004605,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270871,0.004605,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270871,0.004605,-0.004249,0.249964,0,0);}
.m144_c00045{transform:matrix(0.271085,0.004066,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271085,0.004066,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271085,0.004066,-0.003750,0.249972,0,0);}
.m58_c00045{transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);}
.m60_c00045{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.me9_c00045{transform:matrix(0.282038,0.004231,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282038,0.004231,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282038,0.004231,-0.003750,0.249972,0,0);}
.mdd_c00045{transform:matrix(0.283354,0.004817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283354,0.004817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283354,0.004817,-0.004249,0.249964,0,0);}
.m13f_c00045{transform:matrix(0.286683,0.004300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286683,0.004300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286683,0.004300,-0.003750,0.249972,0,0);}
.m2_c00045{transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303480,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.304960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304960,0.000000,0.000000,0.250000,0,0);}
.m98_c00045{transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311520,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{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);}
.m80_c00045{transform:matrix(0.314249,0.003142,-0.002500,0.249988,0,0);-ms-transform:matrix(0.314249,0.003142,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.314249,0.003142,-0.002500,0.249988,0,0);}
.m36_c00045{transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.318185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318185,0.000000,0.000000,0.250000,0,0);}
.m13e_c00045{transform:matrix(0.337122,0.005057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.337122,0.005057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.337122,0.005057,-0.003750,0.249972,0,0);}
.m1_c00045{transform:matrix(0.345225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345225,0.000000,0.000000,0.250000,0,0);}
.m57_c00045{transform:matrix(0.369310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369310,0.000000,0.000000,0.250000,0,0);}
.m55_c00045{transform:matrix(0.372705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372705,0.000000,0.000000,0.250000,0,0);}
.m37_c00045{transform:matrix(0.435895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435895,0.000000,0.000000,0.250000,0,0);}
.me1_c00045{transform:matrix(0.448259,0.008517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.448259,0.008517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.448259,0.008517,-0.004749,0.249955,0,0);}
.me4_c00045{transform:matrix(0.469445,0.008919,-0.004749,0.249955,0,0);-ms-transform:matrix(0.469445,0.008919,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.469445,0.008919,-0.004749,0.249955,0,0);}
.me3_c00045{transform:matrix(0.472740,0.008982,-0.004749,0.249955,0,0);-ms-transform:matrix(0.472740,0.008982,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.472740,0.008982,-0.004749,0.249955,0,0);}
.m19_c00045{transform:matrix(0.517365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517365,0.000000,0.000000,0.250000,0,0);}
.me2_c00045{transform:matrix(0.578241,0.010987,-0.004749,0.249955,0,0);-ms-transform:matrix(0.578241,0.010987,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.578241,0.010987,-0.004749,0.249955,0,0);}
.me0_c00045{transform:matrix(0.618663,0.011755,-0.004749,0.249955,0,0);-ms-transform:matrix(0.618663,0.011755,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.618663,0.011755,-0.004749,0.249955,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;}
._0_c00045{width:28.650567px;}
.fc0_c00045{color:transparent;}
.fs15_c00045{font-size:18.900000px;}
.fs13_c00045{font-size:45.150000px;}
.fs1d_c00045{font-size:46.205913px;}
.fse_c00045{font-size:49.350000px;}
.fs14_c00045{font-size:49.355552px;}
.fs1f_c00045{font-size:49.356316px;}
.fs11_c00045{font-size:50.400000px;}
.fs22_c00045{font-size:50.405670px;}
.fs19_c00045{font-size:50.408164px;}
.fsf_c00045{font-size:51.450000px;}
.fs20_c00045{font-size:51.455788px;}
.fs16_c00045{font-size:51.457434px;}
.fs1c_c00045{font-size:51.459286px;}
.fs1e_c00045{font-size:52.506720px;}
.fs10_c00045{font-size:53.550000px;}
.fs21_c00045{font-size:53.556024px;}
.fsd_c00045{font-size:54.600000px;}
.fs1a_c00045{font-size:54.612038px;}
.fs18_c00045{font-size:55.656260px;}
.fs12_c00045{font-size:59.850000px;}
.fs1b_c00045{font-size:59.860802px;}
.fs8_c00045{font-size:63.000000px;}
.fs9_c00045{font-size:65.100000px;}
.fs1_c00045{font-size:67.200000px;}
.fs3_c00045{font-size:69.300000px;}
.fsa_c00045{font-size:69.303465px;}
.fs2_c00045{font-size:70.350000px;}
.fs6_c00045{font-size:71.400000px;}
.fs5_c00045{font-size:72.450000px;}
.fsc_c00045{font-size:72.453622px;}
.fs7_c00045{font-size:73.500000px;}
.fsb_c00045{font-size:73.503675px;}
.fs17_c00045{font-size:75.613645px;}
.fs4_c00045{font-size:78.750000px;}
.fs0_c00045{font-size:107.100000px;}
.y0_c00045{bottom:0.000000px;}
.y73_c00045{bottom:75.730074px;}
.y72_c00045{bottom:76.879479px;}
.y70_c00045{bottom:78.534303px;}
.y71_c00045{bottom:78.604498px;}
.y6f_c00045{bottom:79.333500px;}
.yd1_c00045{bottom:132.965175px;}
.yd2_c00045{bottom:132.965197px;}
.ycc_c00045{bottom:132.965205px;}
.yd0_c00045{bottom:132.965452px;}
.yce_c00045{bottom:132.965490px;}
.ycf_c00045{bottom:132.965812px;}
.ycd_c00045{bottom:132.965872px;}
.y6e_c00045{bottom:135.249254px;}
.y6d_c00045{bottom:135.720303px;}
.y6c_c00045{bottom:136.140186px;}
.y6b_c00045{bottom:136.775023px;}
.y6a_c00045{bottom:137.302310px;}
.y69_c00045{bottom:137.530477px;}
.y68_c00045{bottom:138.101378px;}
.y67_c00045{bottom:138.342576px;}
.y66_c00045{bottom:138.775468px;}
.ycb_c00045{bottom:149.701807px;}
.yca_c00045{bottom:149.844502px;}
.yc9_c00045{bottom:150.267502px;}
.yc8_c00045{bottom:150.846382px;}
.yc7_c00045{bottom:151.204920px;}
.yc6_c00045{bottom:151.925527px;}
.yc5_c00045{bottom:152.167372px;}
.yc4_c00045{bottom:153.087877px;}
.y74_c00045{bottom:154.155000px;}
.y64_c00045{bottom:155.932461px;}
.y65_c00045{bottom:155.932833px;}
.y63_c00045{bottom:155.933160px;}
.yc3_c00045{bottom:167.672625px;}
.yc2_c00045{bottom:168.302857px;}
.yc1_c00045{bottom:169.240410px;}
.yc0_c00045{bottom:169.607047px;}
.ybf_c00045{bottom:170.276977px;}
.ybe_c00045{bottom:170.647800px;}
.ybd_c00045{bottom:171.179017px;}
.y5c_c00045{bottom:173.218223px;}
.y5d_c00045{bottom:173.218414px;}
.y61_c00045{bottom:173.218566px;}
.y5f_c00045{bottom:173.218589px;}
.y60_c00045{bottom:173.218845px;}
.y5e_c00045{bottom:173.218928px;}
.y62_c00045{bottom:173.219217px;}
.ybc_c00045{bottom:186.026415px;}
.ybb_c00045{bottom:186.338827px;}
.yba_c00045{bottom:187.351327px;}
.yb9_c00045{bottom:188.201985px;}
.yb8_c00045{bottom:188.639520px;}
.yb7_c00045{bottom:189.271500px;}
.y5b_c00045{bottom:189.785423px;}
.y5a_c00045{bottom:190.322452px;}
.y59_c00045{bottom:190.803561px;}
.y58_c00045{bottom:191.055909px;}
.y57_c00045{bottom:191.621652px;}
.y56_c00045{bottom:192.071319px;}
.y55_c00045{bottom:192.511500px;}
.y54_c00045{bottom:197.640000px;}
.yb6_c00045{bottom:203.971884px;}
.yb5_c00045{bottom:205.349352px;}
.yb4_c00045{bottom:206.192508px;}
.yb3_c00045{bottom:206.577432px;}
.y53_c00045{bottom:207.100725px;}
.yb2_c00045{bottom:207.220860px;}
.yb1_c00045{bottom:207.359052px;}
.y52_c00045{bottom:207.696255px;}
.y51_c00045{bottom:207.991815px;}
.y50_c00045{bottom:208.566600px;}
.y4f_c00045{bottom:208.785773px;}
.y4e_c00045{bottom:209.239440px;}
.y4d_c00045{bottom:210.061500px;}
.yb0_c00045{bottom:222.128208px;}
.yaf_c00045{bottom:222.867168px;}
.yae_c00045{bottom:223.074432px;}
.yad_c00045{bottom:223.804488px;}
.yac_c00045{bottom:224.648016px;}
.yab_c00045{bottom:225.325128px;}
.yaa_c00045{bottom:225.450600px;}
.y4b_c00045{bottom:226.255500px;}
.ya9_c00045{bottom:240.093348px;}
.ya8_c00045{bottom:240.875316px;}
.ya7_c00045{bottom:241.536468px;}
.ya6_c00045{bottom:242.296836px;}
.ya5_c00045{bottom:243.118500px;}
.y4a_c00045{bottom:243.964500px;}
.ya4_c00045{bottom:257.685293px;}
.ya3_c00045{bottom:257.935824px;}
.ya2_c00045{bottom:258.413351px;}
.ya1_c00045{bottom:259.182807px;}
.ya0_c00045{bottom:259.410515px;}
.y9f_c00045{bottom:259.762439px;}
.y9e_c00045{bottom:260.271321px;}
.y49_c00045{bottom:260.401500px;}
.y9d_c00045{bottom:260.819368px;}
.y48_c00045{bottom:261.033000px;}
.y47_c00045{bottom:261.603000px;}
.y46_c00045{bottom:262.225500px;}
.y45_c00045{bottom:262.743000px;}
.y44_c00045{bottom:263.251500px;}
.y43_c00045{bottom:263.793000px;}
.y9c_c00045{bottom:275.432315px;}
.y9b_c00045{bottom:275.772576px;}
.y9a_c00045{bottom:276.813596px;}
.y99_c00045{bottom:277.126554px;}
.y98_c00045{bottom:277.757715px;}
.y97_c00045{bottom:278.152754px;}
.y96_c00045{bottom:278.793975px;}
.y95_c00045{bottom:278.994387px;}
.y94_c00045{bottom:279.183000px;}
.y42_c00045{bottom:280.104000px;}
.y93_c00045{bottom:294.569532px;}
.y92_c00045{bottom:294.972133px;}
.y91_c00045{bottom:295.505365px;}
.y90_c00045{bottom:295.851173px;}
.y8f_c00045{bottom:297.274500px;}
.y41_c00045{bottom:297.582000px;}
.y40_c00045{bottom:297.805500px;}
.y3f_c00045{bottom:298.233000px;}
.y3e_c00045{bottom:299.080500px;}
.y3d_c00045{bottom:299.374500px;}
.y3c_c00045{bottom:299.539500px;}
.y3b_c00045{bottom:300.066000px;}
.y8e_c00045{bottom:311.766141px;}
.y8d_c00045{bottom:312.168657px;}
.y8c_c00045{bottom:312.824730px;}
.y8b_c00045{bottom:313.583916px;}
.y8a_c00045{bottom:313.869657px;}
.y89_c00045{bottom:314.176917px;}
.y88_c00045{bottom:314.720454px;}
.y87_c00045{bottom:315.363000px;}
.y3a_c00045{bottom:315.724500px;}
.y39_c00045{bottom:316.381500px;}
.y38_c00045{bottom:316.615500px;}
.y37_c00045{bottom:317.241000px;}
.y4c_c00045{bottom:317.250000px;}
.y36_c00045{bottom:317.793000px;}
.y86_c00045{bottom:329.976270px;}
.y85_c00045{bottom:330.244005px;}
.y84_c00045{bottom:330.626640px;}
.y83_c00045{bottom:330.907200px;}
.y82_c00045{bottom:331.152135px;}
.y81_c00045{bottom:331.586565px;}
.y80_c00045{bottom:332.059815px;}
.y7f_c00045{bottom:332.263672px;}
.y7e_c00045{bottom:332.909588px;}
.y35_c00045{bottom:333.871500px;}
.y7d_c00045{bottom:347.473433px;}
.y7c_c00045{bottom:347.947283px;}
.y7b_c00045{bottom:348.551093px;}
.y7a_c00045{bottom:349.114155px;}
.y79_c00045{bottom:349.405912px;}
.y78_c00045{bottom:349.831118px;}
.y77_c00045{bottom:350.511495px;}
.y76_c00045{bottom:350.661390px;}
.y75_c00045{bottom:351.001500px;}
.y34_c00045{bottom:351.838500px;}
.y33_c00045{bottom:406.631895px;}
.y32_c00045{bottom:406.632480px;}
.y2d_c00045{bottom:406.632975px;}
.y2e_c00045{bottom:406.632990px;}
.y2f_c00045{bottom:406.633005px;}
.y31_c00045{bottom:406.633050px;}
.y2c_c00045{bottom:406.633560px;}
.y30_c00045{bottom:406.633635px;}
.y2b_c00045{bottom:427.550745px;}
.y2a_c00045{bottom:428.254245px;}
.y29_c00045{bottom:428.855655px;}
.y28_c00045{bottom:429.155490px;}
.y27_c00045{bottom:429.590895px;}
.y26_c00045{bottom:429.762570px;}
.y25_c00045{bottom:430.445475px;}
.y24_c00045{bottom:431.396475px;}
.y23_c00045{bottom:431.731530px;}
.y1a_c00045{bottom:453.204810px;}
.y1b_c00045{bottom:453.204825px;}
.y1c_c00045{bottom:453.205155px;}
.y1d_c00045{bottom:453.205470px;}
.y1e_c00045{bottom:453.206085px;}
.y20_c00045{bottom:453.206115px;}
.y1f_c00045{bottom:453.206400px;}
.y21_c00045{bottom:453.206430px;}
.y22_c00045{bottom:453.206745px;}
.y19_c00045{bottom:473.728935px;}
.y18_c00045{bottom:473.937255px;}
.y17_c00045{bottom:474.550155px;}
.y16_c00045{bottom:474.925575px;}
.y15_c00045{bottom:475.136085px;}
.y14_c00045{bottom:476.051415px;}
.y13_c00045{bottom:476.696730px;}
.y12_c00045{bottom:476.956140px;}
.y11_c00045{bottom:477.090000px;}
.y10_c00045{bottom:498.837000px;}
.yf_c00045{bottom:499.500000px;}
.ye_c00045{bottom:521.262000px;}
.yd_c00045{bottom:545.125500px;}
.yc_c00045{bottom:567.004500px;}
.yb_c00045{bottom:589.510500px;}
.ya_c00045{bottom:612.028500px;}
.y9_c00045{bottom:633.810000px;}
.y8_c00045{bottom:657.055500px;}
.y7_c00045{bottom:680.419500px;}
.y6_c00045{bottom:703.525500px;}
.y5_c00045{bottom:725.887500px;}
.y4_c00045{bottom:749.032500px;}
.y3_c00045{bottom:771.912000px;}
.y2_c00045{bottom:794.317500px;}
.y1_c00045{bottom:845.208000px;}
.h17_c00045{height:18.900000px;}
.h15_c00045{height:45.150000px;}
.h1f_c00045{height:46.205913px;}
.h10_c00045{height:49.350000px;}
.h16_c00045{height:49.355552px;}
.h21_c00045{height:49.356316px;}
.h13_c00045{height:50.400000px;}
.h24_c00045{height:50.405670px;}
.h1b_c00045{height:50.408164px;}
.h11_c00045{height:51.450000px;}
.h22_c00045{height:51.455788px;}
.h18_c00045{height:51.457434px;}
.h1e_c00045{height:51.459286px;}
.h20_c00045{height:52.506720px;}
.h12_c00045{height:53.550000px;}
.h23_c00045{height:53.556024px;}
.hf_c00045{height:54.600000px;}
.h1c_c00045{height:54.612038px;}
.h1a_c00045{height:55.656260px;}
.h14_c00045{height:59.850000px;}
.h1d_c00045{height:59.860802px;}
.ha_c00045{height:63.000000px;}
.hb_c00045{height:65.100000px;}
.h3_c00045{height:67.200000px;}
.h5_c00045{height:69.300000px;}
.hc_c00045{height:69.303465px;}
.h4_c00045{height:70.350000px;}
.h8_c00045{height:71.400000px;}
.h7_c00045{height:72.450000px;}
.he_c00045{height:72.453622px;}
.h9_c00045{height:73.500000px;}
.hd_c00045{height:73.503675px;}
.h19_c00045{height:75.613645px;}
.h6_c00045{height:78.750000px;}
.h2_c00045{height:107.100000px;}
.h0_c00045{height:1008.450000px;}
.h1_c00045{height:1008.750000px;}
.w0_c00045{width:699.000000px;}
.x0_c00045{left:0.000000px;}
.x5a_c00045{left:115.830000px;}
.x5d_c00045{left:132.030000px;}
.x79_c00045{left:136.082303px;}
.x4b_c00045{left:138.469500px;}
.x78_c00045{left:141.324000px;}
.x5b_c00045{left:142.560000px;}
.x58_c00045{left:143.909550px;}
.x41_c00045{left:145.800000px;}
.x6b_c00045{left:149.742000px;}
.x13_c00045{left:151.740000px;}
.x37_c00045{left:154.440000px;}
.x4_c00045{left:155.520000px;}
.x7a_c00045{left:157.260881px;}
.x67_c00045{left:163.620000px;}
.x64_c00045{left:165.366000px;}
.x5e_c00045{left:168.750000px;}
.x76_c00045{left:169.953000px;}
.x6f_c00045{left:173.338500px;}
.x46_c00045{left:175.770000px;}
.x4c_c00045{left:177.796500px;}
.x6c_c00045{left:181.563000px;}
.xc_c00045{left:182.790000px;}
.x20_c00045{left:185.220000px;}
.x1b_c00045{left:187.110000px;}
.x72_c00045{left:193.588500px;}
.x5_c00045{left:196.290000px;}
.x68_c00045{left:197.640000px;}
.x3d_c00045{left:199.260000px;}
.x77_c00045{left:201.960000px;}
.x21_c00045{left:207.900000px;}
.x5c_c00045{left:213.840000px;}
.x73_c00045{left:215.998500px;}
.x5f_c00045{left:217.890000px;}
.x14_c00045{left:221.670000px;}
.xd_c00045{left:222.750000px;}
.x42_c00045{left:224.100000px;}
.x62_c00045{left:226.330500px;}
.x47_c00045{left:227.340000px;}
.x26_c00045{left:230.310000px;}
.x2e_c00045{left:231.930000px;}
.x70_c00045{left:234.628500px;}
.x60_c00045{left:237.870000px;}
.x1c_c00045{left:239.490000px;}
.x38_c00045{left:240.840000px;}
.x4d_c00045{left:242.328000px;}
.xe_c00045{left:245.160000px;}
.x48_c00045{left:246.780000px;}
.x22_c00045{left:248.670000px;}
.x69_c00045{left:252.990000px;}
.x71_c00045{left:254.878500px;}
.x6_c00045{left:257.310000px;}
.x34_c00045{left:261.090000px;}
.x1_c00045{left:264.600000px;}
.x27_c00045{left:267.840000px;}
.x4f_c00045{left:269.196750px;}
.x53_c00045{left:272.018955px;}
.xf_c00045{left:275.670000px;}
.x65_c00045{left:277.420500px;}
.x39_c00045{left:278.640000px;}
.x7b_c00045{left:279.862472px;}
.x63_c00045{left:282.001500px;}
.x1d_c00045{left:283.770000px;}
.x6a_c00045{left:287.010000px;}
.x6d_c00045{left:288.451500px;}
.x74_c00045{left:291.328500px;}
.x66_c00045{left:293.350500px;}
.x7_c00045{left:294.570000px;}
.x15_c00045{left:295.920000px;}
.x2d_c00045{left:297.540000px;}
.x28_c00045{left:299.970000px;}
.x61_c00045{left:302.670000px;}
.x2_c00045{left:306.180000px;}
.x23_c00045{left:307.530000px;}
.x3e_c00045{left:310.230000px;}
.x50_c00045{left:311.589495px;}
.x43_c00045{left:314.010000px;}
.x75_c00045{left:316.438500px;}
.x49_c00045{left:321.030000px;}
.x3a_c00045{left:323.460000px;}
.x6e_c00045{left:327.891000px;}
.x51_c00045{left:329.409780px;}
.x7e_c00045{left:331.422000px;}
.x1e_c00045{left:332.910000px;}
.x2f_c00045{left:334.260000px;}
.x7c_c00045{left:335.535915px;}
.x10_c00045{left:339.930000px;}
.x8_c00045{left:341.550000px;}
.x40_c00045{left:342.900000px;}
.x44_c00045{left:344.250000px;}
.x4a_c00045{left:346.680000px;}
.x30_c00045{left:347.760000px;}
.x54_c00045{left:349.826190px;}
.x7f_c00045{left:354.096000px;}
.x29_c00045{left:355.590000px;}
.x84_c00045{left:357.083955px;}
.x16_c00045{left:359.100000px;}
.x11_c00045{left:360.450000px;}
.x9b_c00045{left:361.665048px;}
.x3f_c00045{left:363.690000px;}
.x7d_c00045{left:371.277000px;}
.x45_c00045{left:375.840000px;}
.x9_c00045{left:377.730000px;}
.x3_c00045{left:379.080000px;}
.x24_c00045{left:380.430000px;}
.x92_c00045{left:385.909500px;}
.x17_c00045{left:388.530000px;}
.x3b_c00045{left:393.390000px;}
.x31_c00045{left:396.090000px;}
.x8a_c00045{left:399.222000px;}
.x2a_c00045{left:402.570000px;}
.x9c_c00045{left:403.984548px;}
.x9f_c00045{left:405.669924px;}
.x35_c00045{left:407.970000px;}
.x18_c00045{left:410.400000px;}
.x98_c00045{left:414.312000px;}
.x55_c00045{left:416.749530px;}
.x85_c00045{left:417.836378px;}
.xa7_c00045{left:419.485013px;}
.x8f_c00045{left:422.089500px;}
.x12_c00045{left:425.250000px;}
.x32_c00045{left:427.950000px;}
.x3c_c00045{left:429.030000px;}
.x59_c00045{left:431.204760px;}
.x2b_c00045{left:433.350000px;}
.x19_c00045{left:434.970000px;}
.x52_c00045{left:436.335975px;}
.x80_c00045{left:437.794500px;}
.xa_c00045{left:446.850000px;}
.x86_c00045{left:451.586872px;}
.x4e_c00045{left:453.744000px;}
.x25_c00045{left:454.950000px;}
.x81_c00045{left:457.245000px;}
.x1f_c00045{left:458.460000px;}
.xa5_c00045{left:460.210710px;}
.x8b_c00045{left:462.363000px;}
.x90_c00045{left:463.948500px;}
.x33_c00045{left:467.370000px;}
.x1a_c00045{left:469.530000px;}
.x56_c00045{left:471.489990px;}
.x36_c00045{left:473.850000px;}
.x2c_c00045{left:478.980000px;}
.xb_c00045{left:481.950000px;}
.x91_c00045{left:483.120000px;}
.x93_c00045{left:484.216500px;}
.xa0_c00045{left:487.488720px;}
.xa2_c00045{left:489.931500px;}
.x82_c00045{left:494.782500px;}
.x87_c00045{left:500.178615px;}
.xa8_c00045{left:502.049775px;}
.x99_c00045{left:503.157000px;}
.x8c_c00045{left:504.540000px;}
.xab_c00045{left:507.344812px;}
.x9d_c00045{left:515.287548px;}
.x88_c00045{left:520.182908px;}
.x96_c00045{left:523.701826px;}
.xac_c00045{left:525.167317px;}
.x57_c00045{left:535.389345px;}
.xa9_c00045{left:538.241235px;}
.x8d_c00045{left:540.988500px;}
.x89_c00045{left:547.492313px;}
.x9a_c00045{left:552.030000px;}
.x94_c00045{left:555.478500px;}
.xa3_c00045{left:557.431500px;}
.x9e_c00045{left:561.472548px;}
.x8e_c00045{left:563.350500px;}
.xaa_c00045{left:564.640830px;}
.x83_c00045{left:566.626500px;}
.x97_c00045{left:572.287532px;}
.x95_c00045{left:573.387000px;}
.xa4_c00045{left:578.259000px;}
.xa1_c00045{left:579.300684px;}
.xa6_c00045{left:581.170410px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:0.000000pt;}
._0_c00045{width:25.467171pt;}
.fs15_c00045{font-size:16.800000pt;}
.fs13_c00045{font-size:40.133333pt;}
.fs1d_c00045{font-size:41.071923pt;}
.fse_c00045{font-size:43.866667pt;}
.fs14_c00045{font-size:43.871601pt;}
.fs1f_c00045{font-size:43.872281pt;}
.fs11_c00045{font-size:44.800000pt;}
.fs22_c00045{font-size:44.805040pt;}
.fs19_c00045{font-size:44.807257pt;}
.fsf_c00045{font-size:45.733333pt;}
.fs20_c00045{font-size:45.738478pt;}
.fs16_c00045{font-size:45.739941pt;}
.fs1c_c00045{font-size:45.741587pt;}
.fs1e_c00045{font-size:46.672640pt;}
.fs10_c00045{font-size:47.600000pt;}
.fs21_c00045{font-size:47.605355pt;}
.fsd_c00045{font-size:48.533333pt;}
.fs1a_c00045{font-size:48.544034pt;}
.fs18_c00045{font-size:49.472231pt;}
.fs12_c00045{font-size:53.200000pt;}
.fs1b_c00045{font-size:53.209602pt;}
.fs8_c00045{font-size:56.000000pt;}
.fs9_c00045{font-size:57.866667pt;}
.fs1_c00045{font-size:59.733333pt;}
.fs3_c00045{font-size:61.600000pt;}
.fsa_c00045{font-size:61.603080pt;}
.fs2_c00045{font-size:62.533333pt;}
.fs6_c00045{font-size:63.466667pt;}
.fs5_c00045{font-size:64.400000pt;}
.fsc_c00045{font-size:64.403220pt;}
.fs7_c00045{font-size:65.333333pt;}
.fsb_c00045{font-size:65.336600pt;}
.fs17_c00045{font-size:67.212129pt;}
.fs4_c00045{font-size:70.000000pt;}
.fs0_c00045{font-size:95.200000pt;}
.y0_c00045{bottom:0.000000pt;}
.y73_c00045{bottom:67.315621pt;}
.y72_c00045{bottom:68.337315pt;}
.y70_c00045{bottom:69.808269pt;}
.y71_c00045{bottom:69.870665pt;}
.y6f_c00045{bottom:70.518667pt;}
.yd1_c00045{bottom:118.191267pt;}
.yd2_c00045{bottom:118.191287pt;}
.ycc_c00045{bottom:118.191293pt;}
.yd0_c00045{bottom:118.191513pt;}
.yce_c00045{bottom:118.191547pt;}
.ycf_c00045{bottom:118.191833pt;}
.ycd_c00045{bottom:118.191887pt;}
.y6e_c00045{bottom:120.221559pt;}
.y6d_c00045{bottom:120.640269pt;}
.y6c_c00045{bottom:121.013499pt;}
.y6b_c00045{bottom:121.577799pt;}
.y6a_c00045{bottom:122.046497pt;}
.y69_c00045{bottom:122.249313pt;}
.y68_c00045{bottom:122.756780pt;}
.y67_c00045{bottom:122.971179pt;}
.y66_c00045{bottom:123.355972pt;}
.ycb_c00045{bottom:133.068273pt;}
.yca_c00045{bottom:133.195113pt;}
.yc9_c00045{bottom:133.571113pt;}
.yc8_c00045{bottom:134.085673pt;}
.yc7_c00045{bottom:134.404373pt;}
.yc6_c00045{bottom:135.044913pt;}
.yc5_c00045{bottom:135.259887pt;}
.yc4_c00045{bottom:136.078113pt;}
.y74_c00045{bottom:137.026667pt;}
.y64_c00045{bottom:138.606632pt;}
.y65_c00045{bottom:138.606963pt;}
.y63_c00045{bottom:138.607253pt;}
.yc3_c00045{bottom:149.042333pt;}
.yc2_c00045{bottom:149.602540pt;}
.yc1_c00045{bottom:150.435920pt;}
.yc0_c00045{bottom:150.761820pt;}
.ybf_c00045{bottom:151.357313pt;}
.ybe_c00045{bottom:151.686933pt;}
.ybd_c00045{bottom:152.159127pt;}
.y5c_c00045{bottom:153.971753pt;}
.y5d_c00045{bottom:153.971924pt;}
.y61_c00045{bottom:153.972059pt;}
.y5f_c00045{bottom:153.972079pt;}
.y60_c00045{bottom:153.972307pt;}
.y5e_c00045{bottom:153.972380pt;}
.y62_c00045{bottom:153.972637pt;}
.ybc_c00045{bottom:165.356813pt;}
.ybb_c00045{bottom:165.634513pt;}
.yba_c00045{bottom:166.534513pt;}
.yb9_c00045{bottom:167.290653pt;}
.yb8_c00045{bottom:167.679573pt;}
.yb7_c00045{bottom:168.241333pt;}
.y5b_c00045{bottom:168.698153pt;}
.y5a_c00045{bottom:169.175513pt;}
.y59_c00045{bottom:169.603165pt;}
.y58_c00045{bottom:169.827475pt;}
.y57_c00045{bottom:170.330357pt;}
.y56_c00045{bottom:170.730061pt;}
.y55_c00045{bottom:171.121333pt;}
.y54_c00045{bottom:175.680000pt;}
.yb6_c00045{bottom:181.308341pt;}
.yb5_c00045{bottom:182.532757pt;}
.yb4_c00045{bottom:183.282229pt;}
.yb3_c00045{bottom:183.624384pt;}
.y53_c00045{bottom:184.089533pt;}
.yb2_c00045{bottom:184.196320pt;}
.yb1_c00045{bottom:184.319157pt;}
.y52_c00045{bottom:184.618893pt;}
.y51_c00045{bottom:184.881613pt;}
.y50_c00045{bottom:185.392533pt;}
.y4f_c00045{bottom:185.587353pt;}
.y4e_c00045{bottom:185.990613pt;}
.y4d_c00045{bottom:186.721333pt;}
.yb0_c00045{bottom:197.447296pt;}
.yaf_c00045{bottom:198.104149pt;}
.yae_c00045{bottom:198.288384pt;}
.yad_c00045{bottom:198.937323pt;}
.yac_c00045{bottom:199.687125pt;}
.yab_c00045{bottom:200.289003pt;}
.yaa_c00045{bottom:200.400533pt;}
.y4b_c00045{bottom:201.116000pt;}
.ya9_c00045{bottom:213.416309pt;}
.ya8_c00045{bottom:214.111392pt;}
.ya7_c00045{bottom:214.699083pt;}
.ya6_c00045{bottom:215.374965pt;}
.ya5_c00045{bottom:216.105333pt;}
.y4a_c00045{bottom:216.857333pt;}
.ya4_c00045{bottom:229.053593pt;}
.ya3_c00045{bottom:229.276288pt;}
.ya2_c00045{bottom:229.700756pt;}
.ya1_c00045{bottom:230.384717pt;}
.ya0_c00045{bottom:230.587124pt;}
.y9f_c00045{bottom:230.899945pt;}
.y9e_c00045{bottom:231.352285pt;}
.y49_c00045{bottom:231.468000pt;}
.y9d_c00045{bottom:231.839439pt;}
.y48_c00045{bottom:232.029333pt;}
.y47_c00045{bottom:232.536000pt;}
.y46_c00045{bottom:233.089333pt;}
.y45_c00045{bottom:233.549333pt;}
.y44_c00045{bottom:234.001333pt;}
.y43_c00045{bottom:234.482667pt;}
.y9c_c00045{bottom:244.828724pt;}
.y9b_c00045{bottom:245.131179pt;}
.y9a_c00045{bottom:246.056529pt;}
.y99_c00045{bottom:246.334715pt;}
.y98_c00045{bottom:246.895747pt;}
.y97_c00045{bottom:247.246892pt;}
.y96_c00045{bottom:247.816867pt;}
.y95_c00045{bottom:247.995011pt;}
.y94_c00045{bottom:248.162667pt;}
.y42_c00045{bottom:248.981333pt;}
.y93_c00045{bottom:261.839584pt;}
.y92_c00045{bottom:262.197452pt;}
.y91_c00045{bottom:262.671436pt;}
.y90_c00045{bottom:262.978820pt;}
.y8f_c00045{bottom:264.244000pt;}
.y41_c00045{bottom:264.517333pt;}
.y40_c00045{bottom:264.716000pt;}
.y3f_c00045{bottom:265.096000pt;}
.y3e_c00045{bottom:265.849333pt;}
.y3d_c00045{bottom:266.110667pt;}
.y3c_c00045{bottom:266.257333pt;}
.y3b_c00045{bottom:266.725333pt;}
.y8e_c00045{bottom:277.125459pt;}
.y8d_c00045{bottom:277.483251pt;}
.y8c_c00045{bottom:278.066427pt;}
.y8b_c00045{bottom:278.741259pt;}
.y8a_c00045{bottom:278.995251pt;}
.y89_c00045{bottom:279.268371pt;}
.y88_c00045{bottom:279.751515pt;}
.y87_c00045{bottom:280.322667pt;}
.y3a_c00045{bottom:280.644000pt;}
.y39_c00045{bottom:281.228000pt;}
.y38_c00045{bottom:281.436000pt;}
.y37_c00045{bottom:281.992000pt;}
.y4c_c00045{bottom:282.000000pt;}
.y36_c00045{bottom:282.482667pt;}
.y86_c00045{bottom:293.312240pt;}
.y85_c00045{bottom:293.550227pt;}
.y84_c00045{bottom:293.890347pt;}
.y83_c00045{bottom:294.139733pt;}
.y82_c00045{bottom:294.357453pt;}
.y81_c00045{bottom:294.743613pt;}
.y80_c00045{bottom:295.164280pt;}
.y7f_c00045{bottom:295.345487pt;}
.y7e_c00045{bottom:295.919633pt;}
.y35_c00045{bottom:296.774667pt;}
.y7d_c00045{bottom:308.865273pt;}
.y7c_c00045{bottom:309.286473pt;}
.y7b_c00045{bottom:309.823193pt;}
.y7a_c00045{bottom:310.323693pt;}
.y79_c00045{bottom:310.583033pt;}
.y78_c00045{bottom:310.960993pt;}
.y77_c00045{bottom:311.565773pt;}
.y76_c00045{bottom:311.699013pt;}
.y75_c00045{bottom:312.001333pt;}
.y34_c00045{bottom:312.745333pt;}
.y33_c00045{bottom:361.450573pt;}
.y32_c00045{bottom:361.451093pt;}
.y2d_c00045{bottom:361.451533pt;}
.y2e_c00045{bottom:361.451547pt;}
.y2f_c00045{bottom:361.451560pt;}
.y31_c00045{bottom:361.451600pt;}
.y2c_c00045{bottom:361.452053pt;}
.y30_c00045{bottom:361.452120pt;}
.y2b_c00045{bottom:380.045107pt;}
.y2a_c00045{bottom:380.670440pt;}
.y29_c00045{bottom:381.205027pt;}
.y28_c00045{bottom:381.471547pt;}
.y27_c00045{bottom:381.858573pt;}
.y26_c00045{bottom:382.011173pt;}
.y25_c00045{bottom:382.618200pt;}
.y24_c00045{bottom:383.463533pt;}
.y23_c00045{bottom:383.761360pt;}
.y1a_c00045{bottom:402.848720pt;}
.y1b_c00045{bottom:402.848733pt;}
.y1c_c00045{bottom:402.849027pt;}
.y1d_c00045{bottom:402.849307pt;}
.y1e_c00045{bottom:402.849853pt;}
.y20_c00045{bottom:402.849880pt;}
.y1f_c00045{bottom:402.850133pt;}
.y21_c00045{bottom:402.850160pt;}
.y22_c00045{bottom:402.850440pt;}
.y19_c00045{bottom:421.092387pt;}
.y18_c00045{bottom:421.277560pt;}
.y17_c00045{bottom:421.822360pt;}
.y16_c00045{bottom:422.156067pt;}
.y15_c00045{bottom:422.343187pt;}
.y14_c00045{bottom:423.156813pt;}
.y13_c00045{bottom:423.730427pt;}
.y12_c00045{bottom:423.961013pt;}
.y11_c00045{bottom:424.080000pt;}
.y10_c00045{bottom:443.410667pt;}
.yf_c00045{bottom:444.000000pt;}
.ye_c00045{bottom:463.344000pt;}
.yd_c00045{bottom:484.556000pt;}
.yc_c00045{bottom:504.004000pt;}
.yb_c00045{bottom:524.009333pt;}
.ya_c00045{bottom:544.025333pt;}
.y9_c00045{bottom:563.386667pt;}
.y8_c00045{bottom:584.049333pt;}
.y7_c00045{bottom:604.817333pt;}
.y6_c00045{bottom:625.356000pt;}
.y5_c00045{bottom:645.233333pt;}
.y4_c00045{bottom:665.806667pt;}
.y3_c00045{bottom:686.144000pt;}
.y2_c00045{bottom:706.060000pt;}
.y1_c00045{bottom:751.296000pt;}
.h17_c00045{height:16.800000pt;}
.h15_c00045{height:40.133333pt;}
.h1f_c00045{height:41.071923pt;}
.h10_c00045{height:43.866667pt;}
.h16_c00045{height:43.871601pt;}
.h21_c00045{height:43.872281pt;}
.h13_c00045{height:44.800000pt;}
.h24_c00045{height:44.805040pt;}
.h1b_c00045{height:44.807257pt;}
.h11_c00045{height:45.733333pt;}
.h22_c00045{height:45.738478pt;}
.h18_c00045{height:45.739941pt;}
.h1e_c00045{height:45.741587pt;}
.h20_c00045{height:46.672640pt;}
.h12_c00045{height:47.600000pt;}
.h23_c00045{height:47.605355pt;}
.hf_c00045{height:48.533333pt;}
.h1c_c00045{height:48.544034pt;}
.h1a_c00045{height:49.472231pt;}
.h14_c00045{height:53.200000pt;}
.h1d_c00045{height:53.209602pt;}
.ha_c00045{height:56.000000pt;}
.hb_c00045{height:57.866667pt;}
.h3_c00045{height:59.733333pt;}
.h5_c00045{height:61.600000pt;}
.hc_c00045{height:61.603080pt;}
.h4_c00045{height:62.533333pt;}
.h8_c00045{height:63.466667pt;}
.h7_c00045{height:64.400000pt;}
.he_c00045{height:64.403220pt;}
.h9_c00045{height:65.333333pt;}
.hd_c00045{height:65.336600pt;}
.h19_c00045{height:67.212129pt;}
.h6_c00045{height:70.000000pt;}
.h2_c00045{height:95.200000pt;}
.h0_c00045{height:896.400000pt;}
.h1_c00045{height:896.666667pt;}
.w0_c00045{width:621.333333pt;}
.x0_c00045{left:0.000000pt;}
.x5a_c00045{left:102.960000pt;}
.x5d_c00045{left:117.360000pt;}
.x79_c00045{left:120.962047pt;}
.x4b_c00045{left:123.084000pt;}
.x78_c00045{left:125.621333pt;}
.x5b_c00045{left:126.720000pt;}
.x58_c00045{left:127.919600pt;}
.x41_c00045{left:129.600000pt;}
.x6b_c00045{left:133.104000pt;}
.x13_c00045{left:134.880000pt;}
.x37_c00045{left:137.280000pt;}
.x4_c00045{left:138.240000pt;}
.x7a_c00045{left:139.787449pt;}
.x67_c00045{left:145.440000pt;}
.x64_c00045{left:146.992000pt;}
.x5e_c00045{left:150.000000pt;}
.x76_c00045{left:151.069333pt;}
.x6f_c00045{left:154.078667pt;}
.x46_c00045{left:156.240000pt;}
.x4c_c00045{left:158.041333pt;}
.x6c_c00045{left:161.389333pt;}
.xc_c00045{left:162.480000pt;}
.x20_c00045{left:164.640000pt;}
.x1b_c00045{left:166.320000pt;}
.x72_c00045{left:172.078667pt;}
.x5_c00045{left:174.480000pt;}
.x68_c00045{left:175.680000pt;}
.x3d_c00045{left:177.120000pt;}
.x77_c00045{left:179.520000pt;}
.x21_c00045{left:184.800000pt;}
.x5c_c00045{left:190.080000pt;}
.x73_c00045{left:191.998667pt;}
.x5f_c00045{left:193.680000pt;}
.x14_c00045{left:197.040000pt;}
.xd_c00045{left:198.000000pt;}
.x42_c00045{left:199.200000pt;}
.x62_c00045{left:201.182667pt;}
.x47_c00045{left:202.080000pt;}
.x26_c00045{left:204.720000pt;}
.x2e_c00045{left:206.160000pt;}
.x70_c00045{left:208.558667pt;}
.x60_c00045{left:211.440000pt;}
.x1c_c00045{left:212.880000pt;}
.x38_c00045{left:214.080000pt;}
.x4d_c00045{left:215.402667pt;}
.xe_c00045{left:217.920000pt;}
.x48_c00045{left:219.360000pt;}
.x22_c00045{left:221.040000pt;}
.x69_c00045{left:224.880000pt;}
.x71_c00045{left:226.558667pt;}
.x6_c00045{left:228.720000pt;}
.x34_c00045{left:232.080000pt;}
.x1_c00045{left:235.200000pt;}
.x27_c00045{left:238.080000pt;}
.x4f_c00045{left:239.286000pt;}
.x53_c00045{left:241.794627pt;}
.xf_c00045{left:245.040000pt;}
.x65_c00045{left:246.596000pt;}
.x39_c00045{left:247.680000pt;}
.x7b_c00045{left:248.766641pt;}
.x63_c00045{left:250.668000pt;}
.x1d_c00045{left:252.240000pt;}
.x6a_c00045{left:255.120000pt;}
.x6d_c00045{left:256.401333pt;}
.x74_c00045{left:258.958667pt;}
.x66_c00045{left:260.756000pt;}
.x7_c00045{left:261.840000pt;}
.x15_c00045{left:263.040000pt;}
.x2d_c00045{left:264.480000pt;}
.x28_c00045{left:266.640000pt;}
.x61_c00045{left:269.040000pt;}
.x2_c00045{left:272.160000pt;}
.x23_c00045{left:273.360000pt;}
.x3e_c00045{left:275.760000pt;}
.x50_c00045{left:276.968440pt;}
.x43_c00045{left:279.120000pt;}
.x75_c00045{left:281.278667pt;}
.x49_c00045{left:285.360000pt;}
.x3a_c00045{left:287.520000pt;}
.x6e_c00045{left:291.458667pt;}
.x51_c00045{left:292.808693pt;}
.x7e_c00045{left:294.597333pt;}
.x1e_c00045{left:295.920000pt;}
.x2f_c00045{left:297.120000pt;}
.x7c_c00045{left:298.254147pt;}
.x10_c00045{left:302.160000pt;}
.x8_c00045{left:303.600000pt;}
.x40_c00045{left:304.800000pt;}
.x44_c00045{left:306.000000pt;}
.x4a_c00045{left:308.160000pt;}
.x30_c00045{left:309.120000pt;}
.x54_c00045{left:310.956613pt;}
.x7f_c00045{left:314.752000pt;}
.x29_c00045{left:316.080000pt;}
.x84_c00045{left:317.407960pt;}
.x16_c00045{left:319.200000pt;}
.x11_c00045{left:320.400000pt;}
.x9b_c00045{left:321.480043pt;}
.x3f_c00045{left:323.280000pt;}
.x7d_c00045{left:330.024000pt;}
.x45_c00045{left:334.080000pt;}
.x9_c00045{left:335.760000pt;}
.x3_c00045{left:336.960000pt;}
.x24_c00045{left:338.160000pt;}
.x92_c00045{left:343.030667pt;}
.x17_c00045{left:345.360000pt;}
.x3b_c00045{left:349.680000pt;}
.x31_c00045{left:352.080000pt;}
.x8a_c00045{left:354.864000pt;}
.x2a_c00045{left:357.840000pt;}
.x9c_c00045{left:359.097376pt;}
.x9f_c00045{left:360.595488pt;}
.x35_c00045{left:362.640000pt;}
.x18_c00045{left:364.800000pt;}
.x98_c00045{left:368.277333pt;}
.x55_c00045{left:370.444027pt;}
.x85_c00045{left:371.410113pt;}
.xa7_c00045{left:372.875567pt;}
.x8f_c00045{left:375.190667pt;}
.x12_c00045{left:378.000000pt;}
.x32_c00045{left:380.400000pt;}
.x3c_c00045{left:381.360000pt;}
.x59_c00045{left:383.293120pt;}
.x2b_c00045{left:385.200000pt;}
.x19_c00045{left:386.640000pt;}
.x52_c00045{left:387.854200pt;}
.x80_c00045{left:389.150667pt;}
.xa_c00045{left:397.200000pt;}
.x86_c00045{left:401.410553pt;}
.x4e_c00045{left:403.328000pt;}
.x25_c00045{left:404.400000pt;}
.x81_c00045{left:406.440000pt;}
.x1f_c00045{left:407.520000pt;}
.xa5_c00045{left:409.076187pt;}
.x8b_c00045{left:410.989333pt;}
.x90_c00045{left:412.398667pt;}
.x33_c00045{left:415.440000pt;}
.x1a_c00045{left:417.360000pt;}
.x56_c00045{left:419.102213pt;}
.x36_c00045{left:421.200000pt;}
.x2c_c00045{left:425.760000pt;}
.xb_c00045{left:428.400000pt;}
.x91_c00045{left:429.440000pt;}
.x93_c00045{left:430.414667pt;}
.xa0_c00045{left:433.323307pt;}
.xa2_c00045{left:435.494667pt;}
.x82_c00045{left:439.806667pt;}
.x87_c00045{left:444.603213pt;}
.xa8_c00045{left:446.266467pt;}
.x99_c00045{left:447.250667pt;}
.x8c_c00045{left:448.480000pt;}
.xab_c00045{left:450.973167pt;}
.x9d_c00045{left:458.033376pt;}
.x88_c00045{left:462.384807pt;}
.x96_c00045{left:465.512735pt;}
.xac_c00045{left:466.815393pt;}
.x57_c00045{left:475.901640pt;}
.xa9_c00045{left:478.436653pt;}
.x8d_c00045{left:480.878667pt;}
.x89_c00045{left:486.659833pt;}
.x9a_c00045{left:490.693333pt;}
.x94_c00045{left:493.758667pt;}
.xa3_c00045{left:495.494667pt;}
.x9e_c00045{left:499.086709pt;}
.x8e_c00045{left:500.756000pt;}
.xaa_c00045{left:501.902960pt;}
.x83_c00045{left:503.668000pt;}
.x97_c00045{left:508.700028pt;}
.x95_c00045{left:509.677333pt;}
.xa4_c00045{left:514.008000pt;}
.xa1_c00045{left:514.933941pt;}
.xa6_c00045{left:516.595920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m6b_c00046{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);}
.md6_c00046{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);}
.m7f_c00046{transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);}
.m11e_c00046{transform:matrix(0.028520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028520,0.000000,0.000000,0.250000,0,0);}
.mb8_c00046{transform:matrix(0.053810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053810,0.000000,0.000000,0.250000,0,0);}
.m64_c00046{transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);}
.m6f_c00046{transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);}
.m119_c00046{transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);}
.mac_c00046{transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);}
.ma2_c00046{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);}
.m120_c00046{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m83_c00046{transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);}
.mb6_c00046{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);}
.m93_c00046{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);}
.m121_c00046{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);}
.m39_c00046{transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);}
.m102_c00046{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);}
.m8d_c00046{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00046{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);}
.m82_c00046{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);}
.m110_c00046{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);}
.mf4_c00046{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);}
.m27_c00046{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);}
.mc_c00046{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);}
.mb_c00046{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);}
.m40_c00046{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);}
.m16_c00046{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);}
.mad_c00046{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);}
.m46_c00046{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);}
.m5f_c00046{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);}
.m9_c00046{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.ma3_c00046{transform:matrix(0.166080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166080,0.000000,0.000000,0.250000,0,0);}
.md0_c00046{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);}
.m2a_c00046{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);}
.m94_c00046{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);}
.m2c_c00046{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);}
.ma4_c00046{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);}
.m112_c00046{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);}
.m29_c00046{transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);}
.m124_c00046{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);}
.m8_c00046{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);}
.m9f_c00046{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);}
.m4b_c00046{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);}
.m9a_c00046{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);}
.m89_c00046{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);}
.m2b_c00046{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);}
.mde_c00046{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);}
.m117_c00046{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);}
.m88_c00046{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);}
.m60_c00046{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);}
.m97_c00046{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);}
.m53_c00046{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);}
.m2e_c00046{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);}
.me_c00046{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);}
.m2f_c00046{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);}
.m114_c00046{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);}
.m17_c00046{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);}
.m28_c00046{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);}
.me1_c00046{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);}
.m56_c00046{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);}
.m18_c00046{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);}
.m45_c00046{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);}
.mf2_c00046{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);}
.m3c_c00046{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);}
.mb7_c00046{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);}
.m21_c00046{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);}
.mfd_c00046{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);}
.m10a_c00046{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);}
.m13_c00046{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);}
.m116_c00046{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);}
.mb9_c00046{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);}
.m59_c00046{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{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);}
.ma0_c00046{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);}
.m3d_c00046{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);}
.m105_c00046{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);}
.m132_c00046{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);}
.m109_c00046{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);}
.m3b_c00046{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);}
.m126_c00046{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);}
.mdb_c00046{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);}
.m58_c00046{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);}
.m55_c00046{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.md2_c00046{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);}
.m62_c00046{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);}
.m10f_c00046{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);}
.m1e_c00046{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);}
.m9e_c00046{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);}
.m12a_c00046{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);}
.m36_c00046{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);}
.m87_c00046{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);}
.m5d_c00046{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);}
.m42_c00046{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);}
.m19_c00046{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);}
.m33_c00046{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);}
.m2_c00046{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);}
.mf3_c00046{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);}
.m98_c00046{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);}
.m1d_c00046{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);}
.mdf_c00046{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);}
.mf6_c00046{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);}
.m91_c00046{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);}
.mb3_c00046{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);}
.meb_c00046{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);}
.m72_c00046{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);}
.m4_c00046{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);}
.m101_c00046{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);}
.m7c_c00046{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);}
.m127_c00046{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);}
.me7_c00046{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);}
.m123_c00046{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);}
.m129_c00046{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);}
.ma_c00046{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);}
.m9b_c00046{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);}
.mc9_c00046{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);}
.mc7_c00046{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);}
.m48_c00046{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);}
.mfc_c00046{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);}
.m23_c00046{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);}
.m20_c00046{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);}
.m3f_c00046{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);}
.m4e_c00046{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);}
.m35_c00046{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);}
.me0_c00046{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);}
.m106_c00046{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);}
.m85_c00046{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);}
.m5_c00046{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);}
.m54_c00046{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);}
.m8f_c00046{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);}
.mf_c00046{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);}
.m10c_c00046{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);}
.m4d_c00046{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);}
.mb1_c00046{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);}
.m11d_c00046{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);}
.m22_c00046{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);}
.m9c_c00046{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);}
.m41_c00046{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);}
.m133_c00046{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);}
.m11f_c00046{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);}
.mf5_c00046{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);}
.mea_c00046{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);}
.m8e_c00046{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);}
.md4_c00046{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);}
.m47_c00046{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);}
.m103_c00046{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);}
.m69_c00046{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);}
.m111_c00046{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);}
.mfe_c00046{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);}
.m84_c00046{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);}
.m57_c00046{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);}
.m86_c00046{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);}
.m6_c00046{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);}
.mf9_c00046{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);}
.m10d_c00046{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);}
.m3_c00046{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);}
.m15_c00046{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);}
.m113_c00046{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);}
.m74_c00046{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);}
.m131_c00046{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);}
.mf7_c00046{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);}
.mec_c00046{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);}
.m24_c00046{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);}
.mee_c00046{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);}
.m130_c00046{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m108_c00046{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);}
.m12b_c00046{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);}
.m7a_c00046{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);}
.m25_c00046{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);}
.m4c_c00046{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);}
.m11b_c00046{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);}
.ma7_c00046{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_c00046{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);}
.m90_c00046{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);}
.m68_c00046{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);}
.med_c00046{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);}
.m49_c00046{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);}
.mdc_c00046{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);}
.md_c00046{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);}
.m75_c00046{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);}
.ma9_c00046{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);}
.m9d_c00046{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);}
.mc6_c00046{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);}
.ma1_c00046{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);}
.m7_c00046{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);}
.mfa_c00046{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);}
.m1f_c00046{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);}
.md1_c00046{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);}
.m96_c00046{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);}
.m10b_c00046{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);}
.m99_c00046{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);}
.mef_c00046{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);}
.m44_c00046{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);}
.m51_c00046{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);}
.md3_c00046{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);}
.m38_c00046{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);}
.me8_c00046{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);}
.mf8_c00046{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);}
.md9_c00046{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);}
.me2_c00046{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);}
.mdd_c00046{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);}
.ma6_c00046{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);}
.m52_c00046{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);}
.m11c_c00046{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);}
.m115_c00046{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);}
.me9_c00046{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);}
.m5a_c00046{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);}
.mcb_c00046{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);}
.m12e_c00046{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);}
.m122_c00046{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);}
.mce_c00046{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);}
.m100_c00046{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);}
.m12f_c00046{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);}
.m10e_c00046{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);}
.me3_c00046{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);}
.m26_c00046{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);}
.m67_c00046{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);}
.mcf_c00046{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);}
.mbf_c00046{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);}
.m43_c00046{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);}
.m7e_c00046{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);}
.m1b_c00046{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);}
.md7_c00046{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);}
.m63_c00046{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);}
.m12_c00046{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);}
.mff_c00046{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);}
.mab_c00046{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);}
.m107_c00046{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);}
.m81_c00046{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);}
.mc0_c00046{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.m118_c00046{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);}
.m76_c00046{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.mda_c00046{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);}
.m3e_c00046{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);}
.md8_c00046{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);}
.m1c_c00046{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);}
.m8a_c00046{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.mf0_c00046{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);}
.m7b_c00046{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);}
.m66_c00046{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);}
.mfb_c00046{transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);}
.mbd_c00046{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m65_c00046{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);}
.md5_c00046{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);}
.mb4_c00046{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);}
.mf1_c00046{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);}
.m5b_c00046{transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);}
.m73_c00046{transform:matrix(0.242245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242245,0.000000,0.000000,0.250000,0,0);}
.maa_c00046{transform:matrix(0.242610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242610,0.000000,0.000000,0.250000,0,0);}
.m5e_c00046{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);}
.m71_c00046{transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);}
.mcd_c00046{transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);}
.mbe_c00046{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.me5_c00046{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);}
.me4_c00046{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);}
.me6_c00046{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);}
.mb5_c00046{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);}
.m104_c00046{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);}
.m61_c00046{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);}
.m11a_c00046{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m78_c00046{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);}
.m32_c00046{transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);}
.mc4_c00046{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);}
.mcc_c00046{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);}
.m79_c00046{transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);}
.m5c_c00046{transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);}
.m128_c00046{transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);}
.mb2_c00046{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);}
.m77_c00046{transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);}
.m12d_c00046{transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);}
.mca_c00046{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);}
.m92_c00046{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.ma5_c00046{transform:matrix(0.271140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271140,0.000000,0.000000,0.250000,0,0);}
.m7d_c00046{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);}
.m34_c00046{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);}
.m12c_c00046{transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279620,0.000000,0.000000,0.250000,0,0);}
.mc8_c00046{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);}
.mba_c00046{transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281130,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00046{transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);}
.mbb_c00046{transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);}
.m37_c00046{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);}
.m70_c00046{transform:matrix(0.289230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289230,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.290385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);}
.mc2_c00046{transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301210,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00046{transform:matrix(0.310850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310850,0.000000,0.000000,0.250000,0,0);}
.mc5_c00046{transform:matrix(0.312620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312620,0.000000,0.000000,0.250000,0,0);}
.m31_c00046{transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);}
.maf_c00046{transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00046{transform:matrix(0.333470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333470,0.000000,0.000000,0.250000,0,0);}
.m8b_c00046{transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);}
.m80_c00046{transform:matrix(0.343080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343080,0.000000,0.000000,0.250000,0,0);}
.mbc_c00046{transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);}
.m6d_c00046{transform:matrix(0.370610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370610,0.000000,0.000000,0.250000,0,0);}
.m95_c00046{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);}
.m125_c00046{transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);}
.mae_c00046{transform:matrix(0.414785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414785,0.000000,0.000000,0.250000,0,0);}
.mc3_c00046{transform:matrix(0.461310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461310,0.000000,0.000000,0.250000,0,0);}
.m8c_c00046{transform:matrix(0.461355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461355,0.000000,0.000000,0.250000,0,0);}
.m6e_c00046{transform:matrix(0.492835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492835,0.000000,0.000000,0.250000,0,0);}
.ma8_c00046{transform:matrix(0.605885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605885,0.000000,0.000000,0.250000,0,0);}
.mb0_c00046{transform:matrix(0.630700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630700,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(1.134195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.134195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.134195,0.000000,0.000000,0.250000,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;}
.fsa_c00046{font-size:47.250000px;}
.fs11_c00046{font-size:48.300000px;}
.fsd_c00046{font-size:49.350000px;}
.fs7_c00046{font-size:50.400000px;}
.fsb_c00046{font-size:51.450000px;}
.fs8_c00046{font-size:52.500000px;}
.fs1b_c00046{font-size:53.550000px;}
.fse_c00046{font-size:54.600000px;}
.fsc_c00046{font-size:55.650000px;}
.fs1c_c00046{font-size:57.750000px;}
.fs9_c00046{font-size:58.800000px;}
.fs1a_c00046{font-size:61.950000px;}
.fs15_c00046{font-size:63.000000px;}
.fs16_c00046{font-size:64.050000px;}
.fs18_c00046{font-size:66.150000px;}
.fs5_c00046{font-size:68.250000px;}
.fs14_c00046{font-size:69.300000px;}
.fs6_c00046{font-size:70.350000px;}
.fs4_c00046{font-size:71.400000px;}
.fs3_c00046{font-size:72.450000px;}
.fs13_c00046{font-size:73.500000px;}
.fs17_c00046{font-size:82.950000px;}
.fs19_c00046{font-size:84.000000px;}
.fs12_c00046{font-size:91.350000px;}
.fs0_c00046{font-size:92.400000px;}
.fs2_c00046{font-size:95.550000px;}
.fs1_c00046{font-size:106.050000px;}
.fs10_c00046{font-size:119.700000px;}
.fsf_c00046{font-size:120.750000px;}
.y0_c00046{bottom:0.000000px;}
.y3f_c00046{bottom:138.645000px;}
.y16_c00046{bottom:140.061000px;}
.y3e_c00046{bottom:157.008000px;}
.y12_c00046{bottom:158.241000px;}
.y3d_c00046{bottom:174.549000px;}
.y11_c00046{bottom:176.371500px;}
.y3c_c00046{bottom:192.615000px;}
.y10_c00046{bottom:194.086500px;}
.y3b_c00046{bottom:210.772500px;}
.yf_c00046{bottom:212.173500px;}
.y3a_c00046{bottom:228.238500px;}
.ye_c00046{bottom:230.059500px;}
.y39_c00046{bottom:246.735000px;}
.yd_c00046{bottom:247.834500px;}
.y38_c00046{bottom:265.566000px;}
.yc_c00046{bottom:266.377500px;}
.y37_c00046{bottom:283.386000px;}
.yb_c00046{bottom:283.992000px;}
.y36_c00046{bottom:301.006500px;}
.ya_c00046{bottom:302.020500px;}
.y35_c00046{bottom:319.296000px;}
.y15_c00046{bottom:319.410000px;}
.y34_c00046{bottom:336.663000px;}
.y9_c00046{bottom:337.143000px;}
.y8_c00046{bottom:354.421500px;}
.y33_c00046{bottom:354.760500px;}
.y7_c00046{bottom:406.087500px;}
.y32_c00046{bottom:406.498500px;}
.y6_c00046{bottom:429.046500px;}
.y31_c00046{bottom:429.592500px;}
.y30_c00046{bottom:451.626000px;}
.y2f_c00046{bottom:474.942000px;}
.y2e_c00046{bottom:497.832000px;}
.y2d_c00046{bottom:520.888500px;}
.y2c_c00046{bottom:544.143000px;}
.y2b_c00046{bottom:566.326500px;}
.y2a_c00046{bottom:587.814000px;}
.y29_c00046{bottom:610.747500px;}
.y28_c00046{bottom:633.228000px;}
.y5_c00046{bottom:655.581000px;}
.y27_c00046{bottom:656.637000px;}
.y4_c00046{bottom:678.652500px;}
.y26_c00046{bottom:679.063500px;}
.y25_c00046{bottom:701.845500px;}
.y24_c00046{bottom:723.903000px;}
.y3_c00046{bottom:748.039500px;}
.y23_c00046{bottom:748.156500px;}
.y18_c00046{bottom:767.610000px;}
.y19_c00046{bottom:767.919000px;}
.y1a_c00046{bottom:768.184500px;}
.y1b_c00046{bottom:768.349500px;}
.y1c_c00046{bottom:768.747000px;}
.y1d_c00046{bottom:769.248000px;}
.y1e_c00046{bottom:769.416000px;}
.y1f_c00046{bottom:769.707000px;}
.y20_c00046{bottom:769.884000px;}
.y21_c00046{bottom:770.164500px;}
.y22_c00046{bottom:770.629500px;}
.y17_c00046{bottom:793.237500px;}
.y2_c00046{bottom:838.620000px;}
.y14_c00046{bottom:845.740500px;}
.y1_c00046{bottom:885.870000px;}
.y13_c00046{bottom:886.140000px;}
.hc_c00046{height:47.250000px;}
.h13_c00046{height:48.300000px;}
.hf_c00046{height:49.350000px;}
.h9_c00046{height:50.400000px;}
.hd_c00046{height:51.450000px;}
.ha_c00046{height:52.500000px;}
.h1d_c00046{height:53.550000px;}
.h10_c00046{height:54.600000px;}
.he_c00046{height:55.650000px;}
.h1e_c00046{height:57.750000px;}
.hb_c00046{height:58.800000px;}
.h1c_c00046{height:61.950000px;}
.h17_c00046{height:63.000000px;}
.h18_c00046{height:64.050000px;}
.h1a_c00046{height:66.150000px;}
.h7_c00046{height:68.250000px;}
.h16_c00046{height:69.300000px;}
.h8_c00046{height:70.350000px;}
.h6_c00046{height:71.400000px;}
.h5_c00046{height:72.450000px;}
.h15_c00046{height:73.500000px;}
.h19_c00046{height:82.950000px;}
.h1b_c00046{height:84.000000px;}
.h14_c00046{height:91.350000px;}
.h2_c00046{height:92.400000px;}
.h4_c00046{height:95.550000px;}
.h3_c00046{height:106.050000px;}
.h12_c00046{height:119.700000px;}
.h11_c00046{height:120.750000px;}
.h1_c00046{height:1005.000000px;}
.h0_c00046{height:1005.150000px;}
.w0_c00046{width:732.750000px;}
.x0_c00046{left:0.000000px;}
.x46_c00046{left:58.320000px;}
.x40_c00046{left:68.850000px;}
.x4d_c00046{left:83.970000px;}
.x47_c00046{left:91.800000px;}
.x1_c00046{left:93.150000px;}
.x33_c00046{left:99.090000px;}
.x1a_c00046{left:100.170000px;}
.x28_c00046{left:112.320000px;}
.x2d_c00046{left:117.990000px;}
.x22_c00046{left:120.960000px;}
.x34_c00046{left:123.930000px;}
.x38_c00046{left:130.680000px;}
.x41_c00046{left:131.760000px;}
.x20_c00046{left:133.110000px;}
.xd_c00046{left:135.270000px;}
.x5_c00046{left:136.350000px;}
.x52_c00046{left:138.348000px;}
.x1b_c00046{left:142.290000px;}
.x2e_c00046{left:143.910000px;}
.x3a_c00046{left:154.440000px;}
.x1c_c00046{left:155.520000px;}
.x5a_c00046{left:157.140000px;}
.xe_c00046{left:158.220000px;}
.x15_c00046{left:159.300000px;}
.x4e_c00046{left:160.650000px;}
.x23_c00046{left:163.350000px;}
.x3b_c00046{left:167.670000px;}
.x3e_c00046{left:169.290000px;}
.x42_c00046{left:172.530000px;}
.x1d_c00046{left:173.610000px;}
.xf_c00046{left:177.120000px;}
.x16_c00046{left:179.820000px;}
.x8_c00046{left:181.440000px;}
.x63_c00046{left:184.950000px;}
.x3f_c00046{left:188.730000px;}
.x6_c00046{left:191.700000px;}
.x43_c00046{left:193.320000px;}
.x2_c00046{left:195.480000px;}
.x35_c00046{left:197.100000px;}
.x4f_c00046{left:203.310000px;}
.x6a_c00046{left:205.740000px;}
.x24_c00046{left:207.360000px;}
.x3c_c00046{left:210.330000px;}
.x29_c00046{left:211.680000px;}
.x2f_c00046{left:213.030000px;}
.x1e_c00046{left:214.110000px;}
.x9_c00046{left:216.270000px;}
.x6b_c00046{left:218.430000px;}
.x44_c00046{left:220.050000px;}
.x36_c00046{left:222.210000px;}
.x64_c00046{left:223.290000px;}
.x10_c00046{left:229.770000px;}
.x17_c00046{left:231.930000px;}
.x50_c00046{left:235.170000px;}
.x25_c00046{left:239.220000px;}
.xa_c00046{left:240.840000px;}
.x7b_c00046{left:242.460000px;}
.x30_c00046{left:244.350000px;}
.x37_c00046{left:246.240000px;}
.x11_c00046{left:249.750000px;}
.x2a_c00046{left:251.370000px;}
.x26_c00046{left:254.070000px;}
.x21_c00046{left:256.770000px;}
.x18_c00046{left:259.470000px;}
.x31_c00046{left:260.550000px;}
.x7c_c00046{left:262.980000px;}
.x65_c00046{left:265.410000px;}
.x2b_c00046{left:266.490000px;}
.x12_c00046{left:269.460000px;}
.x48_c00046{left:272.430000px;}
.x1f_c00046{left:274.590000px;}
.xb_c00046{left:277.290000px;}
.x5e_c00046{left:280.260000px;}
.x3d_c00046{left:281.340000px;}
.x6e_c00046{left:283.500000px;}
.x27_c00046{left:286.200000px;}
.x3_c00046{left:290.520000px;}
.x7_c00046{left:293.220000px;}
.x13_c00046{left:296.190000px;}
.x32_c00046{left:298.620000px;}
.x7d_c00046{left:299.700000px;}
.x39_c00046{left:301.590000px;}
.x74_c00046{left:302.940000px;}
.x19_c00046{left:306.180000px;}
.x45_c00046{left:307.530000px;}
.xc_c00046{left:309.690000px;}
.x14_c00046{left:314.280000px;}
.x4_c00046{left:315.360000px;}
.x5b_c00046{left:316.440000px;}
.x2c_c00046{left:318.870000px;}
.x75_c00046{left:322.650000px;}
.x72_c00046{left:323.730000px;}
.x6c_c00046{left:324.810000px;}
.x61_c00046{left:328.860000px;}
.x84_c00046{left:329.940000px;}
.x80_c00046{left:332.640000px;}
.x59_c00046{left:334.260000px;}
.x51_c00046{left:338.310000px;}
.x7e_c00046{left:341.280000px;}
.x53_c00046{left:343.020000px;}
.xac_c00046{left:346.140000px;}
.xa7_c00046{left:347.220000px;}
.x4a_c00046{left:348.300000px;}
.x86_c00046{left:349.650000px;}
.x66_c00046{left:351.000000px;}
.x6d_c00046{left:355.050000px;}
.x5c_c00046{left:358.830000px;}
.x76_c00046{left:362.610000px;}
.x54_c00046{left:364.098000px;}
.xb1_c00046{left:368.820000px;}
.x5f_c00046{left:375.570000px;}
.x4b_c00046{left:378.270000px;}
.x93_c00046{left:380.970000px;}
.xad_c00046{left:382.320000px;}
.xb2_c00046{left:384.210000px;}
.x99_c00046{left:387.180000px;}
.x81_c00046{left:392.040000px;}
.x5d_c00046{left:396.900000px;}
.x87_c00046{left:399.060000px;}
.x55_c00046{left:400.528500px;}
.x67_c00046{left:402.030000px;}
.x8e_c00046{left:405.000000px;}
.x60_c00046{left:407.430000px;}
.x82_c00046{left:409.320000px;}
.xa3_c00046{left:412.830000px;}
.x62_c00046{left:413.910000px;}
.x8f_c00046{left:417.690000px;}
.x77_c00046{left:419.040000px;}
.x88_c00046{left:421.200000px;}
.x56_c00046{left:422.671500px;}
.x68_c00046{left:424.980000px;}
.x85_c00046{left:427.680000px;}
.x49_c00046{left:430.920000px;}
.x83_c00046{left:432.540000px;}
.x90_c00046{left:433.890000px;}
.x8c_c00046{left:440.640000px;}
.x9f_c00046{left:441.990000px;}
.x6f_c00046{left:443.340000px;}
.x7f_c00046{left:452.250000px;}
.xaa_c00046{left:453.600000px;}
.x9b_c00046{left:456.030000px;}
.x57_c00046{left:457.765500px;}
.x69_c00046{left:459.000000px;}
.xa0_c00046{left:460.350000px;}
.x8d_c00046{left:462.780000px;}
.x9c_c00046{left:469.530000px;}
.x4c_c00046{left:471.150000px;}
.xa1_c00046{left:476.010000px;}
.x94_c00046{left:477.360000px;}
.x89_c00046{left:480.330000px;}
.x9d_c00046{left:486.540000px;}
.xae_c00046{left:490.860000px;}
.x8a_c00046{left:493.020000px;}
.x78_c00046{left:497.610000px;}
.x9a_c00046{left:499.230000px;}
.xa4_c00046{left:501.120000px;}
.x97_c00046{left:503.550000px;}
.x79_c00046{left:508.410000px;}
.xa8_c00046{left:513.810000px;}
.x58_c00046{left:515.838000px;}
.xa5_c00046{left:517.320000px;}
.x70_c00046{left:522.990000px;}
.x8b_c00046{left:524.340000px;}
.xa2_c00046{left:527.850000px;}
.x98_c00046{left:531.630000px;}
.x91_c00046{left:532.980000px;}
.x71_c00046{left:535.410000px;}
.x95_c00046{left:538.380000px;}
.x9e_c00046{left:540.000000px;}
.x92_c00046{left:546.480000px;}
.xaf_c00046{left:549.450000px;}
.x96_c00046{left:550.800000px;}
.x73_c00046{left:554.040000px;}
.xa6_c00046{left:563.760000px;}
.x7a_c00046{left:568.620000px;}
.xa9_c00046{left:581.310000px;}
.xb0_c00046{left:589.950000px;}
.xab_c00046{left:598.320000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fsa_c00046{font-size:42.000000pt;}
.fs11_c00046{font-size:42.933333pt;}
.fsd_c00046{font-size:43.866667pt;}
.fs7_c00046{font-size:44.800000pt;}
.fsb_c00046{font-size:45.733333pt;}
.fs8_c00046{font-size:46.666667pt;}
.fs1b_c00046{font-size:47.600000pt;}
.fse_c00046{font-size:48.533333pt;}
.fsc_c00046{font-size:49.466667pt;}
.fs1c_c00046{font-size:51.333333pt;}
.fs9_c00046{font-size:52.266667pt;}
.fs1a_c00046{font-size:55.066667pt;}
.fs15_c00046{font-size:56.000000pt;}
.fs16_c00046{font-size:56.933333pt;}
.fs18_c00046{font-size:58.800000pt;}
.fs5_c00046{font-size:60.666667pt;}
.fs14_c00046{font-size:61.600000pt;}
.fs6_c00046{font-size:62.533333pt;}
.fs4_c00046{font-size:63.466667pt;}
.fs3_c00046{font-size:64.400000pt;}
.fs13_c00046{font-size:65.333333pt;}
.fs17_c00046{font-size:73.733333pt;}
.fs19_c00046{font-size:74.666667pt;}
.fs12_c00046{font-size:81.200000pt;}
.fs0_c00046{font-size:82.133333pt;}
.fs2_c00046{font-size:84.933333pt;}
.fs1_c00046{font-size:94.266667pt;}
.fs10_c00046{font-size:106.400000pt;}
.fsf_c00046{font-size:107.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y3f_c00046{bottom:123.240000pt;}
.y16_c00046{bottom:124.498667pt;}
.y3e_c00046{bottom:139.562667pt;}
.y12_c00046{bottom:140.658667pt;}
.y3d_c00046{bottom:155.154667pt;}
.y11_c00046{bottom:156.774667pt;}
.y3c_c00046{bottom:171.213333pt;}
.y10_c00046{bottom:172.521333pt;}
.y3b_c00046{bottom:187.353333pt;}
.yf_c00046{bottom:188.598667pt;}
.y3a_c00046{bottom:202.878667pt;}
.ye_c00046{bottom:204.497333pt;}
.y39_c00046{bottom:219.320000pt;}
.yd_c00046{bottom:220.297333pt;}
.y38_c00046{bottom:236.058667pt;}
.yc_c00046{bottom:236.780000pt;}
.y37_c00046{bottom:251.898667pt;}
.yb_c00046{bottom:252.437333pt;}
.y36_c00046{bottom:267.561333pt;}
.ya_c00046{bottom:268.462667pt;}
.y35_c00046{bottom:283.818667pt;}
.y15_c00046{bottom:283.920000pt;}
.y34_c00046{bottom:299.256000pt;}
.y9_c00046{bottom:299.682667pt;}
.y8_c00046{bottom:315.041333pt;}
.y33_c00046{bottom:315.342667pt;}
.y7_c00046{bottom:360.966667pt;}
.y32_c00046{bottom:361.332000pt;}
.y6_c00046{bottom:381.374667pt;}
.y31_c00046{bottom:381.860000pt;}
.y30_c00046{bottom:401.445333pt;}
.y2f_c00046{bottom:422.170667pt;}
.y2e_c00046{bottom:442.517333pt;}
.y2d_c00046{bottom:463.012000pt;}
.y2c_c00046{bottom:483.682667pt;}
.y2b_c00046{bottom:503.401333pt;}
.y2a_c00046{bottom:522.501333pt;}
.y29_c00046{bottom:542.886667pt;}
.y28_c00046{bottom:562.869333pt;}
.y5_c00046{bottom:582.738667pt;}
.y27_c00046{bottom:583.677333pt;}
.y4_c00046{bottom:603.246667pt;}
.y26_c00046{bottom:603.612000pt;}
.y25_c00046{bottom:623.862667pt;}
.y24_c00046{bottom:643.469333pt;}
.y3_c00046{bottom:664.924000pt;}
.y23_c00046{bottom:665.028000pt;}
.y18_c00046{bottom:682.320000pt;}
.y19_c00046{bottom:682.594667pt;}
.y1a_c00046{bottom:682.830667pt;}
.y1b_c00046{bottom:682.977333pt;}
.y1c_c00046{bottom:683.330667pt;}
.y1d_c00046{bottom:683.776000pt;}
.y1e_c00046{bottom:683.925333pt;}
.y1f_c00046{bottom:684.184000pt;}
.y20_c00046{bottom:684.341333pt;}
.y21_c00046{bottom:684.590667pt;}
.y22_c00046{bottom:685.004000pt;}
.y17_c00046{bottom:705.100000pt;}
.y2_c00046{bottom:745.440000pt;}
.y14_c00046{bottom:751.769333pt;}
.y1_c00046{bottom:787.440000pt;}
.y13_c00046{bottom:787.680000pt;}
.hc_c00046{height:42.000000pt;}
.h13_c00046{height:42.933333pt;}
.hf_c00046{height:43.866667pt;}
.h9_c00046{height:44.800000pt;}
.hd_c00046{height:45.733333pt;}
.ha_c00046{height:46.666667pt;}
.h1d_c00046{height:47.600000pt;}
.h10_c00046{height:48.533333pt;}
.he_c00046{height:49.466667pt;}
.h1e_c00046{height:51.333333pt;}
.hb_c00046{height:52.266667pt;}
.h1c_c00046{height:55.066667pt;}
.h17_c00046{height:56.000000pt;}
.h18_c00046{height:56.933333pt;}
.h1a_c00046{height:58.800000pt;}
.h7_c00046{height:60.666667pt;}
.h16_c00046{height:61.600000pt;}
.h8_c00046{height:62.533333pt;}
.h6_c00046{height:63.466667pt;}
.h5_c00046{height:64.400000pt;}
.h15_c00046{height:65.333333pt;}
.h19_c00046{height:73.733333pt;}
.h1b_c00046{height:74.666667pt;}
.h14_c00046{height:81.200000pt;}
.h2_c00046{height:82.133333pt;}
.h4_c00046{height:84.933333pt;}
.h3_c00046{height:94.266667pt;}
.h12_c00046{height:106.400000pt;}
.h11_c00046{height:107.333333pt;}
.h1_c00046{height:893.333333pt;}
.h0_c00046{height:893.466667pt;}
.w0_c00046{width:651.333333pt;}
.x0_c00046{left:0.000000pt;}
.x46_c00046{left:51.840000pt;}
.x40_c00046{left:61.200000pt;}
.x4d_c00046{left:74.640000pt;}
.x47_c00046{left:81.600000pt;}
.x1_c00046{left:82.800000pt;}
.x33_c00046{left:88.080000pt;}
.x1a_c00046{left:89.040000pt;}
.x28_c00046{left:99.840000pt;}
.x2d_c00046{left:104.880000pt;}
.x22_c00046{left:107.520000pt;}
.x34_c00046{left:110.160000pt;}
.x38_c00046{left:116.160000pt;}
.x41_c00046{left:117.120000pt;}
.x20_c00046{left:118.320000pt;}
.xd_c00046{left:120.240000pt;}
.x5_c00046{left:121.200000pt;}
.x52_c00046{left:122.976000pt;}
.x1b_c00046{left:126.480000pt;}
.x2e_c00046{left:127.920000pt;}
.x3a_c00046{left:137.280000pt;}
.x1c_c00046{left:138.240000pt;}
.x5a_c00046{left:139.680000pt;}
.xe_c00046{left:140.640000pt;}
.x15_c00046{left:141.600000pt;}
.x4e_c00046{left:142.800000pt;}
.x23_c00046{left:145.200000pt;}
.x3b_c00046{left:149.040000pt;}
.x3e_c00046{left:150.480000pt;}
.x42_c00046{left:153.360000pt;}
.x1d_c00046{left:154.320000pt;}
.xf_c00046{left:157.440000pt;}
.x16_c00046{left:159.840000pt;}
.x8_c00046{left:161.280000pt;}
.x63_c00046{left:164.400000pt;}
.x3f_c00046{left:167.760000pt;}
.x6_c00046{left:170.400000pt;}
.x43_c00046{left:171.840000pt;}
.x2_c00046{left:173.760000pt;}
.x35_c00046{left:175.200000pt;}
.x4f_c00046{left:180.720000pt;}
.x6a_c00046{left:182.880000pt;}
.x24_c00046{left:184.320000pt;}
.x3c_c00046{left:186.960000pt;}
.x29_c00046{left:188.160000pt;}
.x2f_c00046{left:189.360000pt;}
.x1e_c00046{left:190.320000pt;}
.x9_c00046{left:192.240000pt;}
.x6b_c00046{left:194.160000pt;}
.x44_c00046{left:195.600000pt;}
.x36_c00046{left:197.520000pt;}
.x64_c00046{left:198.480000pt;}
.x10_c00046{left:204.240000pt;}
.x17_c00046{left:206.160000pt;}
.x50_c00046{left:209.040000pt;}
.x25_c00046{left:212.640000pt;}
.xa_c00046{left:214.080000pt;}
.x7b_c00046{left:215.520000pt;}
.x30_c00046{left:217.200000pt;}
.x37_c00046{left:218.880000pt;}
.x11_c00046{left:222.000000pt;}
.x2a_c00046{left:223.440000pt;}
.x26_c00046{left:225.840000pt;}
.x21_c00046{left:228.240000pt;}
.x18_c00046{left:230.640000pt;}
.x31_c00046{left:231.600000pt;}
.x7c_c00046{left:233.760000pt;}
.x65_c00046{left:235.920000pt;}
.x2b_c00046{left:236.880000pt;}
.x12_c00046{left:239.520000pt;}
.x48_c00046{left:242.160000pt;}
.x1f_c00046{left:244.080000pt;}
.xb_c00046{left:246.480000pt;}
.x5e_c00046{left:249.120000pt;}
.x3d_c00046{left:250.080000pt;}
.x6e_c00046{left:252.000000pt;}
.x27_c00046{left:254.400000pt;}
.x3_c00046{left:258.240000pt;}
.x7_c00046{left:260.640000pt;}
.x13_c00046{left:263.280000pt;}
.x32_c00046{left:265.440000pt;}
.x7d_c00046{left:266.400000pt;}
.x39_c00046{left:268.080000pt;}
.x74_c00046{left:269.280000pt;}
.x19_c00046{left:272.160000pt;}
.x45_c00046{left:273.360000pt;}
.xc_c00046{left:275.280000pt;}
.x14_c00046{left:279.360000pt;}
.x4_c00046{left:280.320000pt;}
.x5b_c00046{left:281.280000pt;}
.x2c_c00046{left:283.440000pt;}
.x75_c00046{left:286.800000pt;}
.x72_c00046{left:287.760000pt;}
.x6c_c00046{left:288.720000pt;}
.x61_c00046{left:292.320000pt;}
.x84_c00046{left:293.280000pt;}
.x80_c00046{left:295.680000pt;}
.x59_c00046{left:297.120000pt;}
.x51_c00046{left:300.720000pt;}
.x7e_c00046{left:303.360000pt;}
.x53_c00046{left:304.906667pt;}
.xac_c00046{left:307.680000pt;}
.xa7_c00046{left:308.640000pt;}
.x4a_c00046{left:309.600000pt;}
.x86_c00046{left:310.800000pt;}
.x66_c00046{left:312.000000pt;}
.x6d_c00046{left:315.600000pt;}
.x5c_c00046{left:318.960000pt;}
.x76_c00046{left:322.320000pt;}
.x54_c00046{left:323.642667pt;}
.xb1_c00046{left:327.840000pt;}
.x5f_c00046{left:333.840000pt;}
.x4b_c00046{left:336.240000pt;}
.x93_c00046{left:338.640000pt;}
.xad_c00046{left:339.840000pt;}
.xb2_c00046{left:341.520000pt;}
.x99_c00046{left:344.160000pt;}
.x81_c00046{left:348.480000pt;}
.x5d_c00046{left:352.800000pt;}
.x87_c00046{left:354.720000pt;}
.x55_c00046{left:356.025333pt;}
.x67_c00046{left:357.360000pt;}
.x8e_c00046{left:360.000000pt;}
.x60_c00046{left:362.160000pt;}
.x82_c00046{left:363.840000pt;}
.xa3_c00046{left:366.960000pt;}
.x62_c00046{left:367.920000pt;}
.x8f_c00046{left:371.280000pt;}
.x77_c00046{left:372.480000pt;}
.x88_c00046{left:374.400000pt;}
.x56_c00046{left:375.708000pt;}
.x68_c00046{left:377.760000pt;}
.x85_c00046{left:380.160000pt;}
.x49_c00046{left:383.040000pt;}
.x83_c00046{left:384.480000pt;}
.x90_c00046{left:385.680000pt;}
.x8c_c00046{left:391.680000pt;}
.x9f_c00046{left:392.880000pt;}
.x6f_c00046{left:394.080000pt;}
.x7f_c00046{left:402.000000pt;}
.xaa_c00046{left:403.200000pt;}
.x9b_c00046{left:405.360000pt;}
.x57_c00046{left:406.902667pt;}
.x69_c00046{left:408.000000pt;}
.xa0_c00046{left:409.200000pt;}
.x8d_c00046{left:411.360000pt;}
.x9c_c00046{left:417.360000pt;}
.x4c_c00046{left:418.800000pt;}
.xa1_c00046{left:423.120000pt;}
.x94_c00046{left:424.320000pt;}
.x89_c00046{left:426.960000pt;}
.x9d_c00046{left:432.480000pt;}
.xae_c00046{left:436.320000pt;}
.x8a_c00046{left:438.240000pt;}
.x78_c00046{left:442.320000pt;}
.x9a_c00046{left:443.760000pt;}
.xa4_c00046{left:445.440000pt;}
.x97_c00046{left:447.600000pt;}
.x79_c00046{left:451.920000pt;}
.xa8_c00046{left:456.720000pt;}
.x58_c00046{left:458.522667pt;}
.xa5_c00046{left:459.840000pt;}
.x70_c00046{left:464.880000pt;}
.x8b_c00046{left:466.080000pt;}
.xa2_c00046{left:469.200000pt;}
.x98_c00046{left:472.560000pt;}
.x91_c00046{left:473.760000pt;}
.x71_c00046{left:475.920000pt;}
.x95_c00046{left:478.560000pt;}
.x9e_c00046{left:480.000000pt;}
.x92_c00046{left:485.760000pt;}
.xaf_c00046{left:488.400000pt;}
.x96_c00046{left:489.600000pt;}
.x73_c00046{left:492.480000pt;}
.xa6_c00046{left:501.120000pt;}
.x7a_c00046{left:505.440000pt;}
.xa9_c00046{left:516.720000pt;}
.xb0_c00046{left:524.400000pt;}
.xab_c00046{left:531.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3e_c00047{transform:matrix(0.007540,-0.000083,0.002750,0.249985,0,0);-ms-transform:matrix(0.007540,-0.000083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.007540,-0.000083,0.002750,0.249985,0,0);}
.m95_c00047{transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);}
.m92_c00047{transform:matrix(0.010289,0.000165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.010289,0.000165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.010289,0.000165,-0.003999,0.249968,0,0);}
.m1d_c00047{transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);-ms-transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);}
.m14_c00047{transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);-ms-transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);}
.m3b_c00047{transform:matrix(0.014745,-0.000103,0.001750,0.249994,0,0);-ms-transform:matrix(0.014745,-0.000103,0.001750,0.249994,0,0);-webkit-transform:matrix(0.014745,-0.000103,0.001750,0.249994,0,0);}
.mc5_c00047{transform:matrix(0.015589,-0.000187,0.003000,0.249982,0,0);-ms-transform:matrix(0.015589,-0.000187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015589,-0.000187,0.003000,0.249982,0,0);}
.m3f_c00047{transform:matrix(0.016329,-0.000180,0.002750,0.249985,0,0);-ms-transform:matrix(0.016329,-0.000180,0.002750,0.249985,0,0);-webkit-transform:matrix(0.016329,-0.000180,0.002750,0.249985,0,0);}
.m3a_c00047{transform:matrix(0.018715,-0.000131,0.001750,0.249994,0,0);-ms-transform:matrix(0.018715,-0.000131,0.001750,0.249994,0,0);-webkit-transform:matrix(0.018715,-0.000131,0.001750,0.249994,0,0);}
.m99_c00047{transform:matrix(0.021595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021595,0.000000,0.000000,0.250000,0,0);}
.m79_c00047{transform:matrix(0.023451,-0.000657,0.006997,0.249902,0,0);-ms-transform:matrix(0.023451,-0.000657,0.006997,0.249902,0,0);-webkit-transform:matrix(0.023451,-0.000657,0.006997,0.249902,0,0);}
.m8f_c00047{transform:matrix(0.027666,0.000443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.027666,0.000443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.027666,0.000443,-0.003999,0.249968,0,0);}
.mf1_c00047{transform:matrix(0.042485,0.000637,-0.003750,0.249972,0,0);-ms-transform:matrix(0.042485,0.000637,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.042485,0.000637,-0.003750,0.249972,0,0);}
.m9e_c00047{transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);}
.mda_c00047{transform:matrix(0.081626,0.001224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.081626,0.001224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.081626,0.001224,-0.003750,0.249972,0,0);}
.mb6_c00047{transform:matrix(0.090905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090905,0.000000,0.000000,0.250000,0,0);}
.m9d_c00047{transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);}
.m7b_c00047{transform:matrix(0.114370,-0.003202,0.006997,0.249902,0,0);-ms-transform:matrix(0.114370,-0.003202,0.006997,0.249902,0,0);-webkit-transform:matrix(0.114370,-0.003202,0.006997,0.249902,0,0);}
.mc6_c00047{transform:matrix(0.122701,-0.001472,0.003000,0.249982,0,0);-ms-transform:matrix(0.122701,-0.001472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.122701,-0.001472,0.003000,0.249982,0,0);}
.m8_c00047{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.140647,-0.000985,0.001750,0.249994,0,0);-ms-transform:matrix(0.140647,-0.000985,0.001750,0.249994,0,0);-webkit-transform:matrix(0.140647,-0.000985,0.001750,0.249994,0,0);}
.m84_c00047{transform:matrix(0.141205,-0.003954,0.006997,0.249902,0,0);-ms-transform:matrix(0.141205,-0.003954,0.006997,0.249902,0,0);-webkit-transform:matrix(0.141205,-0.003954,0.006997,0.249902,0,0);}
.mbb_c00047{transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);}
.mbd_c00047{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);}
.me6_c00047{transform:matrix(0.151733,0.002276,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151733,0.002276,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151733,0.002276,-0.003750,0.249972,0,0);}
.m91_c00047{transform:matrix(0.152550,0.002441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152550,0.002441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152550,0.002441,-0.003999,0.249968,0,0);}
.m57_c00047{transform:matrix(0.152930,-0.001223,0.002000,0.249992,0,0);-ms-transform:matrix(0.152930,-0.001223,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152930,-0.001223,0.002000,0.249992,0,0);}
.m54_c00047{transform:matrix(0.155800,-0.001246,0.002000,0.249992,0,0);-ms-transform:matrix(0.155800,-0.001246,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155800,-0.001246,0.002000,0.249992,0,0);}
.m64_c00047{transform:matrix(0.156210,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156210,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156210,-0.001250,0.002000,0.249992,0,0);}
.ma1_c00047{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);}
.m38_c00047{transform:matrix(0.159231,-0.001115,0.001750,0.249994,0,0);-ms-transform:matrix(0.159231,-0.001115,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159231,-0.001115,0.001750,0.249994,0,0);}
.ma4_c00047{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);}
.mec_c00047{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);}
.m21_c00047{transform:matrix(0.160746,-0.001125,0.001750,0.249994,0,0);-ms-transform:matrix(0.160746,-0.001125,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160746,-0.001125,0.001750,0.249994,0,0);}
.m88_c00047{transform:matrix(0.160973,-0.001449,0.002250,0.249990,0,0);-ms-transform:matrix(0.160973,-0.001449,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160973,-0.001449,0.002250,0.249990,0,0);}
.m8c_c00047{transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{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);}
.ma5_c00047{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);}
.mee_c00047{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);}
.me7_c00047{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);}
.mcc_c00047{transform:matrix(0.164853,-0.001978,0.003000,0.249982,0,0);-ms-transform:matrix(0.164853,-0.001978,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164853,-0.001978,0.003000,0.249982,0,0);}
.ma2_c00047{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);}
.me9_c00047{transform:matrix(0.165391,0.002481,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165391,0.002481,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165391,0.002481,-0.003750,0.249972,0,0);}
.mb9_c00047{transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);}
.mc0_c00047{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);}
.m18_c00047{transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);-ms-transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167117,-0.001671,0.002500,0.249988,0,0);}
.m36_c00047{transform:matrix(0.167801,-0.001175,0.001750,0.249994,0,0);-ms-transform:matrix(0.167801,-0.001175,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167801,-0.001175,0.001750,0.249994,0,0);}
.mbf_c00047{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);}
.m52_c00047{transform:matrix(0.169930,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169930,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169930,-0.001359,0.002000,0.249992,0,0);}
.mba_c00047{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);}
.m41_c00047{transform:matrix(0.171510,-0.001887,0.002750,0.249985,0,0);-ms-transform:matrix(0.171510,-0.001887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171510,-0.001887,0.002750,0.249985,0,0);}
.m6b_c00047{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);}
.m46_c00047{transform:matrix(0.172300,-0.001895,0.002750,0.249985,0,0);-ms-transform:matrix(0.172300,-0.001895,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172300,-0.001895,0.002750,0.249985,0,0);}
.m33_c00047{transform:matrix(0.173556,-0.001215,0.001750,0.249994,0,0);-ms-transform:matrix(0.173556,-0.001215,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173556,-0.001215,0.001750,0.249994,0,0);}
.mf2_c00047{transform:matrix(0.174140,0.002612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174140,0.002612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174140,0.002612,-0.003750,0.249972,0,0);}
.m2a_c00047{transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);-ms-transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);}
.mce_c00047{transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);}
.m48_c00047{transform:matrix(0.176514,-0.001942,0.002750,0.249985,0,0);-ms-transform:matrix(0.176514,-0.001942,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176514,-0.001942,0.002750,0.249985,0,0);}
.meb_c00047{transform:matrix(0.176645,0.002650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176645,0.002650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176645,0.002650,-0.003750,0.249972,0,0);}
.m1c_c00047{transform:matrix(0.177211,-0.001772,0.002500,0.249988,0,0);-ms-transform:matrix(0.177211,-0.001772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177211,-0.001772,0.002500,0.249988,0,0);}
.m66_c00047{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);}
.m1a_c00047{transform:matrix(0.177486,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177486,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177486,-0.001775,0.002500,0.249988,0,0);}
.m4c_c00047{transform:matrix(0.177839,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177839,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177839,-0.001956,0.002750,0.249985,0,0);}
.ma3_c00047{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);}
.m10_c00047{transform:matrix(0.178246,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178246,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178246,-0.001782,0.002500,0.249988,0,0);}
.m28_c00047{transform:matrix(0.178286,-0.001248,0.001750,0.249994,0,0);-ms-transform:matrix(0.178286,-0.001248,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178286,-0.001248,0.001750,0.249994,0,0);}
.m82_c00047{transform:matrix(0.178715,-0.005004,0.006997,0.249902,0,0);-ms-transform:matrix(0.178715,-0.005004,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178715,-0.005004,0.006997,0.249902,0,0);}
.mae_c00047{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);}
.me1_c00047{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);}
.mc9_c00047{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);}
.m1b_c00047{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);}
.mbc_c00047{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);}
.m47_c00047{transform:matrix(0.180889,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180889,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180889,-0.001990,0.002750,0.249985,0,0);}
.m11_c00047{transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);-ms-transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);}
.m9f_c00047{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);}
.mf6_c00047{transform:matrix(0.182105,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182105,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182105,0.002732,-0.003750,0.249972,0,0);}
.m67_c00047{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);}
.m22_c00047{transform:matrix(0.182571,-0.001278,0.001750,0.249994,0,0);-ms-transform:matrix(0.182571,-0.001278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182571,-0.001278,0.001750,0.249994,0,0);}
.mc8_c00047{transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);}
.m19_c00047{transform:matrix(0.183006,-0.001830,0.002500,0.249988,0,0);-ms-transform:matrix(0.183006,-0.001830,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183006,-0.001830,0.002500,0.249988,0,0);}
.mf9_c00047{transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);}
.m62_c00047{transform:matrix(0.183579,-0.001469,0.002000,0.249992,0,0);-ms-transform:matrix(0.183579,-0.001469,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183579,-0.001469,0.002000,0.249992,0,0);}
.m87_c00047{transform:matrix(0.183683,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183683,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183683,-0.001653,0.002250,0.249990,0,0);}
.ma9_c00047{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);}
.m45_c00047{transform:matrix(0.184374,-0.002028,0.002750,0.249985,0,0);-ms-transform:matrix(0.184374,-0.002028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184374,-0.002028,0.002750,0.249985,0,0);}
.m68_c00047{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);}
.m13_c00047{transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);-ms-transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185021,-0.001850,0.002500,0.249988,0,0);}
.m12_c00047{transform:matrix(0.185096,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185096,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185096,-0.001851,0.002500,0.249988,0,0);}
.mf3_c00047{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);}
.ma7_c00047{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);}
.m86_c00047{transform:matrix(0.187347,-0.001686,0.002250,0.249990,0,0);-ms-transform:matrix(0.187347,-0.001686,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187347,-0.001686,0.002250,0.249990,0,0);}
.m55_c00047{transform:matrix(0.187989,-0.001504,0.002000,0.249992,0,0);-ms-transform:matrix(0.187989,-0.001504,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187989,-0.001504,0.002000,0.249992,0,0);}
.m8b_c00047{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);}
.mbe_c00047{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);}
.mef_c00047{transform:matrix(0.189034,0.002836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189034,0.002836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189034,0.002836,-0.003750,0.249972,0,0);}
.m37_c00047{transform:matrix(0.189690,-0.001328,0.001750,0.249994,0,0);-ms-transform:matrix(0.189690,-0.001328,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189690,-0.001328,0.001750,0.249994,0,0);}
.m6c_c00047{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);}
.me8_c00047{transform:matrix(0.191338,0.002870,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191338,0.002870,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191338,0.002870,-0.003750,0.249972,0,0);}
.med_c00047{transform:matrix(0.191698,0.002875,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191698,0.002875,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191698,0.002875,-0.003750,0.249972,0,0);}
.m81_c00047{transform:matrix(0.192659,-0.005394,0.006997,0.249902,0,0);-ms-transform:matrix(0.192659,-0.005394,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192659,-0.005394,0.006997,0.249902,0,0);}
.m76_c00047{transform:matrix(0.192704,-0.005396,0.006997,0.249902,0,0);-ms-transform:matrix(0.192704,-0.005396,0.006997,0.249902,0,0);-webkit-transform:matrix(0.192704,-0.005396,0.006997,0.249902,0,0);}
.mc7_c00047{transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);}
.me2_c00047{transform:matrix(0.195528,0.002933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195528,0.002933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195528,0.002933,-0.003750,0.249972,0,0);}
.m63_c00047{transform:matrix(0.195629,-0.001565,0.002000,0.249992,0,0);-ms-transform:matrix(0.195629,-0.001565,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195629,-0.001565,0.002000,0.249992,0,0);}
.m56_c00047{transform:matrix(0.195659,-0.001565,0.002000,0.249992,0,0);-ms-transform:matrix(0.195659,-0.001565,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195659,-0.001565,0.002000,0.249992,0,0);}
.mb_c00047{transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);}
.mf_c00047{transform:matrix(0.196280,-0.001963,0.002500,0.249988,0,0);-ms-transform:matrix(0.196280,-0.001963,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196280,-0.001963,0.002500,0.249988,0,0);}
.mcd_c00047{transform:matrix(0.196286,-0.002355,0.003000,0.249982,0,0);-ms-transform:matrix(0.196286,-0.002355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196286,-0.002355,0.003000,0.249982,0,0);}
.m65_c00047{transform:matrix(0.196399,-0.001571,0.002000,0.249992,0,0);-ms-transform:matrix(0.196399,-0.001571,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196399,-0.001571,0.002000,0.249992,0,0);}
.me0_c00047{transform:matrix(0.196818,0.002952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196818,0.002952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196818,0.002952,-0.003750,0.249972,0,0);}
.m77_c00047{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);}
.mb4_c00047{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);}
.m6f_c00047{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);}
.mdc_c00047{transform:matrix(0.201137,0.003017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201137,0.003017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201137,0.003017,-0.003750,0.249972,0,0);}
.m7e_c00047{transform:matrix(0.201536,-0.005643,0.006997,0.249902,0,0);-ms-transform:matrix(0.201536,-0.005643,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201536,-0.005643,0.006997,0.249902,0,0);}
.m7f_c00047{transform:matrix(0.201781,-0.005650,0.006997,0.249902,0,0);-ms-transform:matrix(0.201781,-0.005650,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201781,-0.005650,0.006997,0.249902,0,0);}
.ma0_c00047{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);}
.m6a_c00047{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);}
.m34_c00047{transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);}
.mdd_c00047{transform:matrix(0.203172,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203172,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203172,0.003048,-0.003750,0.249972,0,0);}
.m83_c00047{transform:matrix(0.203190,-0.005689,0.006997,0.249902,0,0);-ms-transform:matrix(0.203190,-0.005689,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203190,-0.005689,0.006997,0.249902,0,0);}
.m7_c00047{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);}
.m8d_c00047{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);}
.mf4_c00047{transform:matrix(0.203377,0.003051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203377,0.003051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203377,0.003051,-0.003750,0.249972,0,0);}
.mca_c00047{transform:matrix(0.203710,-0.002445,0.003000,0.249982,0,0);-ms-transform:matrix(0.203710,-0.002445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203710,-0.002445,0.003000,0.249982,0,0);}
.m51_c00047{transform:matrix(0.204443,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204443,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204443,-0.001636,0.002000,0.249992,0,0);}
.m39_c00047{transform:matrix(0.205340,-0.001437,0.001750,0.249994,0,0);-ms-transform:matrix(0.205340,-0.001437,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205340,-0.001437,0.001750,0.249994,0,0);}
.m70_c00047{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);}
.m7d_c00047{transform:matrix(0.205819,-0.005763,0.006997,0.249902,0,0);-ms-transform:matrix(0.205819,-0.005763,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205819,-0.005763,0.006997,0.249902,0,0);}
.m29_c00047{transform:matrix(0.205955,-0.001442,0.001750,0.249994,0,0);-ms-transform:matrix(0.205955,-0.001442,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205955,-0.001442,0.001750,0.249994,0,0);}
.m72_c00047{transform:matrix(0.206429,-0.005780,0.006997,0.249902,0,0);-ms-transform:matrix(0.206429,-0.005780,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206429,-0.005780,0.006997,0.249902,0,0);}
.m53_c00047{transform:matrix(0.206973,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.206973,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206973,-0.001656,0.002000,0.249992,0,0);}
.m3_c00047{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);}
.m8a_c00047{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);}
.m5b_c00047{transform:matrix(0.208698,-0.001670,0.002000,0.249992,0,0);-ms-transform:matrix(0.208698,-0.001670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208698,-0.001670,0.002000,0.249992,0,0);}
.m1_c00047{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);}
.m59_c00047{transform:matrix(0.210538,-0.001684,0.002000,0.249992,0,0);-ms-transform:matrix(0.210538,-0.001684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210538,-0.001684,0.002000,0.249992,0,0);}
.m85_c00047{transform:matrix(0.210981,-0.001899,0.002250,0.249990,0,0);-ms-transform:matrix(0.210981,-0.001899,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210981,-0.001899,0.002250,0.249990,0,0);}
.m4a_c00047{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);}
.m7c_c00047{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);}
.m27_c00047{transform:matrix(0.213580,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213580,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213580,-0.001495,0.001750,0.249994,0,0);}
.mc1_c00047{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);}
.m61_c00047{transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);}
.m74_c00047{transform:matrix(0.216985,-0.006076,0.006997,0.249902,0,0);-ms-transform:matrix(0.216985,-0.006076,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216985,-0.006076,0.006997,0.249902,0,0);}
.m3d_c00047{transform:matrix(0.217087,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217087,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217087,-0.002388,0.002750,0.249985,0,0);}
.ma6_c00047{transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00047{transform:matrix(0.218889,-0.002627,0.003000,0.249982,0,0);-ms-transform:matrix(0.218889,-0.002627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218889,-0.002627,0.003000,0.249982,0,0);}
.mf7_c00047{transform:matrix(0.219275,0.003289,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219275,0.003289,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219275,0.003289,-0.003750,0.249972,0,0);}
.m50_c00047{transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);-ms-transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);}
.md2_c00047{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);}
.m71_c00047{transform:matrix(0.221993,-0.006216,0.006997,0.249902,0,0);-ms-transform:matrix(0.221993,-0.006216,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221993,-0.006216,0.006997,0.249902,0,0);}
.m26_c00047{transform:matrix(0.223480,-0.001564,0.001750,0.249994,0,0);-ms-transform:matrix(0.223480,-0.001564,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223480,-0.001564,0.001750,0.249994,0,0);}
.mcb_c00047{transform:matrix(0.225374,-0.002704,0.003000,0.249982,0,0);-ms-transform:matrix(0.225374,-0.002704,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225374,-0.002704,0.003000,0.249982,0,0);}
.m32_c00047{transform:matrix(0.227919,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227919,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227919,-0.001595,0.001750,0.249994,0,0);}
.m20_c00047{transform:matrix(0.229264,-0.001605,0.001750,0.249994,0,0);-ms-transform:matrix(0.229264,-0.001605,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229264,-0.001605,0.001750,0.249994,0,0);}
.m78_c00047{transform:matrix(0.229285,-0.006420,0.006997,0.249902,0,0);-ms-transform:matrix(0.229285,-0.006420,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229285,-0.006420,0.006997,0.249902,0,0);}
.m75_c00047{transform:matrix(0.231164,-0.006473,0.006997,0.249902,0,0);-ms-transform:matrix(0.231164,-0.006473,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231164,-0.006473,0.006997,0.249902,0,0);}
.m2_c00047{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);}
.mf5_c00047{transform:matrix(0.232814,0.003492,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232814,0.003492,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232814,0.003492,-0.003750,0.249972,0,0);}
.mf8_c00047{transform:matrix(0.233274,0.003499,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233274,0.003499,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233274,0.003499,-0.003750,0.249972,0,0);}
.mea_c00047{transform:matrix(0.234874,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234874,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234874,0.003523,-0.003750,0.249972,0,0);}
.m69_c00047{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);}
.m49_c00047{transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);-ms-transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);}
.m44_c00047{transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);-ms-transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);}
.md6_c00047{transform:matrix(0.240358,0.003605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240358,0.003605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240358,0.003605,-0.003750,0.249972,0,0);}
.m73_c00047{transform:matrix(0.242375,-0.006787,0.006997,0.249902,0,0);-ms-transform:matrix(0.242375,-0.006787,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242375,-0.006787,0.006997,0.249902,0,0);}
.mb7_c00047{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);}
.m25_c00047{transform:matrix(0.249684,-0.001748,0.001750,0.249994,0,0);-ms-transform:matrix(0.249684,-0.001748,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249684,-0.001748,0.001750,0.249994,0,0);}
.mf0_c00047{transform:matrix(0.251102,0.003767,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251102,0.003767,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251102,0.003767,-0.003750,0.249972,0,0);}
.mb8_c00047{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{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);}
.md7_c00047{transform:matrix(0.255076,0.003826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255076,0.003826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255076,0.003826,-0.003750,0.249972,0,0);}
.m40_c00047{transform:matrix(0.256444,-0.002821,0.002750,0.249985,0,0);-ms-transform:matrix(0.256444,-0.002821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256444,-0.002821,0.002750,0.249985,0,0);}
.m80_c00047{transform:matrix(0.256569,-0.007184,0.006997,0.249902,0,0);-ms-transform:matrix(0.256569,-0.007184,0.006997,0.249902,0,0);-webkit-transform:matrix(0.256569,-0.007184,0.006997,0.249902,0,0);}
.me3_c00047{transform:matrix(0.257496,0.003862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257496,0.003862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257496,0.003862,-0.003750,0.249972,0,0);}
.m5e_c00047{transform:matrix(0.260857,-0.002087,0.002000,0.249992,0,0);-ms-transform:matrix(0.260857,-0.002087,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260857,-0.002087,0.002000,0.249992,0,0);}
.md3_c00047{transform:matrix(0.266735,0.004001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266735,0.004001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266735,0.004001,-0.003750,0.249972,0,0);}
.md1_c00047{transform:matrix(0.270570,0.004059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270570,0.004059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270570,0.004059,-0.003750,0.249972,0,0);}
.m24_c00047{transform:matrix(0.273458,-0.001914,0.001750,0.249994,0,0);-ms-transform:matrix(0.273458,-0.001914,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273458,-0.001914,0.001750,0.249994,0,0);}
.m94_c00047{transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.281938,-0.001974,0.001750,0.249994,0,0);-ms-transform:matrix(0.281938,-0.001974,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281938,-0.001974,0.001750,0.249994,0,0);}
.mdb_c00047{transform:matrix(0.283668,0.004255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283668,0.004255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283668,0.004255,-0.003750,0.249972,0,0);}
.m17_c00047{transform:matrix(0.286636,-0.002866,0.002500,0.249988,0,0);-ms-transform:matrix(0.286636,-0.002866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.286636,-0.002866,0.002500,0.249988,0,0);}
.m4e_c00047{transform:matrix(0.294111,-0.002353,0.002000,0.249992,0,0);-ms-transform:matrix(0.294111,-0.002353,0.002000,0.249992,0,0);-webkit-transform:matrix(0.294111,-0.002353,0.002000,0.249992,0,0);}
.md8_c00047{transform:matrix(0.294267,0.004414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294267,0.004414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294267,0.004414,-0.003750,0.249972,0,0);}
.mdf_c00047{transform:matrix(0.295342,0.004430,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295342,0.004430,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295342,0.004430,-0.003750,0.249972,0,0);}
.m5_c00047{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);}
.mc3_c00047{transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);}
.me4_c00047{transform:matrix(0.298621,0.004479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298621,0.004479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298621,0.004479,-0.003750,0.249972,0,0);}
.md0_c00047{transform:matrix(0.300536,0.004508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300536,0.004508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300536,0.004508,-0.003750,0.249972,0,0);}
.mad_c00047{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.303905,-0.002431,0.002000,0.249992,0,0);-ms-transform:matrix(0.303905,-0.002431,0.002000,0.249992,0,0);-webkit-transform:matrix(0.303905,-0.002431,0.002000,0.249992,0,0);}
.m97_c00047{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);}
.m9a_c00047{transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307205,0.000000,0.000000,0.250000,0,0);}
.mc2_c00047{transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307445,0.000000,0.000000,0.250000,0,0);}
.m8e_c00047{transform:matrix(0.308765,0.004940,-0.003999,0.249968,0,0);-ms-transform:matrix(0.308765,0.004940,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.308765,0.004940,-0.003999,0.249968,0,0);}
.m5f_c00047{transform:matrix(0.313825,-0.002511,0.002000,0.249992,0,0);-ms-transform:matrix(0.313825,-0.002511,0.002000,0.249992,0,0);-webkit-transform:matrix(0.313825,-0.002511,0.002000,0.249992,0,0);}
.mac_c00047{transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318135,0.000000,0.000000,0.250000,0,0);}
.m9c_c00047{transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{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);}
.m6d_c00047{transform:matrix(0.323580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323580,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.323970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323970,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.329022,-0.002961,0.002250,0.249990,0,0);-ms-transform:matrix(0.329022,-0.002961,0.002250,0.249990,0,0);-webkit-transform:matrix(0.329022,-0.002961,0.002250,0.249990,0,0);}
.m2d_c00047{transform:matrix(0.330307,-0.002312,0.001750,0.249994,0,0);-ms-transform:matrix(0.330307,-0.002312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.330307,-0.002312,0.001750,0.249994,0,0);}
.m5c_c00047{transform:matrix(0.331749,-0.002654,0.002000,0.249992,0,0);-ms-transform:matrix(0.331749,-0.002654,0.002000,0.249992,0,0);-webkit-transform:matrix(0.331749,-0.002654,0.002000,0.249992,0,0);}
.md5_c00047{transform:matrix(0.334262,0.005014,-0.003750,0.249972,0,0);-ms-transform:matrix(0.334262,0.005014,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.334262,0.005014,-0.003750,0.249972,0,0);}
.m2c_c00047{transform:matrix(0.334837,-0.002344,0.001750,0.249994,0,0);-ms-transform:matrix(0.334837,-0.002344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.334837,-0.002344,0.001750,0.249994,0,0);}
.mde_c00047{transform:matrix(0.336482,0.005047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.336482,0.005047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.336482,0.005047,-0.003750,0.249972,0,0);}
.m96_c00047{transform:matrix(0.336655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336655,0.000000,0.000000,0.250000,0,0);}
.me5_c00047{transform:matrix(0.337102,0.005057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.337102,0.005057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.337102,0.005057,-0.003750,0.249972,0,0);}
.mb1_c00047{transform:matrix(0.352425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352425,0.000000,0.000000,0.250000,0,0);}
.mb3_c00047{transform:matrix(0.353035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353035,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.358220,-0.003224,0.002250,0.249990,0,0);-ms-transform:matrix(0.358220,-0.003224,0.002250,0.249990,0,0);-webkit-transform:matrix(0.358220,-0.003224,0.002250,0.249990,0,0);}
.mfa_c00047{transform:matrix(0.359745,0.005396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.359745,0.005396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.359745,0.005396,-0.003750,0.249972,0,0);}
.md4_c00047{transform:matrix(0.370888,0.005563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.370888,0.005563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.370888,0.005563,-0.003750,0.249972,0,0);}
.m16_c00047{transform:matrix(0.377896,-0.003779,0.002500,0.249988,0,0);-ms-transform:matrix(0.377896,-0.003779,0.002500,0.249988,0,0);-webkit-transform:matrix(0.377896,-0.003779,0.002500,0.249988,0,0);}
.m93_c00047{transform:matrix(0.379701,0.006075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.379701,0.006075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.379701,0.006075,-0.003999,0.249968,0,0);}
.m30_c00047{transform:matrix(0.382546,-0.002678,0.001750,0.249994,0,0);-ms-transform:matrix(0.382546,-0.002678,0.001750,0.249994,0,0);-webkit-transform:matrix(0.382546,-0.002678,0.001750,0.249994,0,0);}
.mb2_c00047{transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.397295,-0.003973,0.002500,0.249988,0,0);-ms-transform:matrix(0.397295,-0.003973,0.002500,0.249988,0,0);-webkit-transform:matrix(0.397295,-0.003973,0.002500,0.249988,0,0);}
.m4f_c00047{transform:matrix(0.398312,-0.003186,0.002000,0.249992,0,0);-ms-transform:matrix(0.398312,-0.003186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.398312,-0.003186,0.002000,0.249992,0,0);}
.mcf_c00047{transform:matrix(0.401216,-0.004815,0.003000,0.249982,0,0);-ms-transform:matrix(0.401216,-0.004815,0.003000,0.249982,0,0);-webkit-transform:matrix(0.401216,-0.004815,0.003000,0.249982,0,0);}
.m4d_c00047{transform:matrix(0.403581,-0.004439,0.002750,0.249985,0,0);-ms-transform:matrix(0.403581,-0.004439,0.002750,0.249985,0,0);-webkit-transform:matrix(0.403581,-0.004439,0.002750,0.249985,0,0);}
.m60_c00047{transform:matrix(0.403757,-0.003230,0.002000,0.249992,0,0);-ms-transform:matrix(0.403757,-0.003230,0.002000,0.249992,0,0);-webkit-transform:matrix(0.403757,-0.003230,0.002000,0.249992,0,0);}
.m89_c00047{transform:matrix(0.404284,-0.003639,0.002250,0.249990,0,0);-ms-transform:matrix(0.404284,-0.003639,0.002250,0.249990,0,0);-webkit-transform:matrix(0.404284,-0.003639,0.002250,0.249990,0,0);}
.m43_c00047{transform:matrix(0.405090,-0.004456,0.002750,0.249985,0,0);-ms-transform:matrix(0.405090,-0.004456,0.002750,0.249985,0,0);-webkit-transform:matrix(0.405090,-0.004456,0.002750,0.249985,0,0);}
.m1e_c00047{transform:matrix(0.410929,-0.004109,0.002500,0.249988,0,0);-ms-transform:matrix(0.410929,-0.004109,0.002500,0.249988,0,0);-webkit-transform:matrix(0.410929,-0.004109,0.002500,0.249988,0,0);}
.m2f_c00047{transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);-ms-transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);-webkit-transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);}
.m15_c00047{transform:matrix(0.419624,-0.004196,0.002500,0.249988,0,0);-ms-transform:matrix(0.419624,-0.004196,0.002500,0.249988,0,0);-webkit-transform:matrix(0.419624,-0.004196,0.002500,0.249988,0,0);}
.m5d_c00047{transform:matrix(0.420952,-0.003368,0.002000,0.249992,0,0);-ms-transform:matrix(0.420952,-0.003368,0.002000,0.249992,0,0);-webkit-transform:matrix(0.420952,-0.003368,0.002000,0.249992,0,0);}
.m3c_c00047{transform:matrix(0.432344,-0.003026,0.001750,0.249994,0,0);-ms-transform:matrix(0.432344,-0.003026,0.001750,0.249994,0,0);-webkit-transform:matrix(0.432344,-0.003026,0.001750,0.249994,0,0);}
.m42_c00047{transform:matrix(0.446878,-0.004916,0.002750,0.249985,0,0);-ms-transform:matrix(0.446878,-0.004916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.446878,-0.004916,0.002750,0.249985,0,0);}
.m9b_c00047{transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);}
.m6e_c00047{transform:matrix(0.457690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457690,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.475976,-0.004284,0.002250,0.249990,0,0);-ms-transform:matrix(0.475976,-0.004284,0.002250,0.249990,0,0);-webkit-transform:matrix(0.475976,-0.004284,0.002250,0.249990,0,0);}
.m2b_c00047{transform:matrix(0.507838,-0.003555,0.001750,0.249994,0,0);-ms-transform:matrix(0.507838,-0.003555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.507838,-0.003555,0.001750,0.249994,0,0);}
.mab_c00047{transform:matrix(0.536050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536050,0.000000,0.000000,0.250000,0,0);}
.m90_c00047{transform:matrix(0.553774,0.008860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.553774,0.008860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.553774,0.008860,-0.003999,0.249968,0,0);}
.maf_c00047{transform:matrix(0.559420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559420,0.000000,0.000000,0.250000,0,0);}
.m7a_c00047{transform:matrix(0.567498,-0.015890,0.006997,0.249902,0,0);-ms-transform:matrix(0.567498,-0.015890,0.006997,0.249902,0,0);-webkit-transform:matrix(0.567498,-0.015890,0.006997,0.249902,0,0);}
.md9_c00047{transform:matrix(0.572621,0.008589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.572621,0.008589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.572621,0.008589,-0.003750,0.249972,0,0);}
.ma8_c00047{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m98_c00047{transform:matrix(0.605900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605900,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.646995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646995,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.706428,-0.004945,0.001750,0.249994,0,0);-ms-transform:matrix(0.706428,-0.004945,0.001750,0.249994,0,0);-webkit-transform:matrix(0.706428,-0.004945,0.001750,0.249994,0,0);}
.m31_c00047{transform:matrix(0.722872,-0.005060,0.001750,0.249994,0,0);-ms-transform:matrix(0.722872,-0.005060,0.001750,0.249994,0,0);-webkit-transform:matrix(0.722872,-0.005060,0.001750,0.249994,0,0);}
.mb5_c00047{transform:matrix(0.858950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.858950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.858950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.908238,-0.006358,0.001750,0.249994,0,0);-ms-transform:matrix(0.908238,-0.006358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.908238,-0.006358,0.001750,0.249994,0,0);}
.mb0_c00047{transform:matrix(0.913695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913695,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(1.000930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000930,0.000000,0.000000,0.250000,0,0);}
.m58_c00047{transform:matrix(1.028537,-0.008228,0.002000,0.249992,0,0);-ms-transform:matrix(1.028537,-0.008228,0.002000,0.249992,0,0);-webkit-transform:matrix(1.028537,-0.008228,0.002000,0.249992,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;}
.fs18_c00047{font-size:27.300000px;}
.fsf_c00047{font-size:35.700000px;}
.fs1f_c00047{font-size:51.455788px;}
.fs19_c00047{font-size:63.000000px;}
.fs10_c00047{font-size:65.125514px;}
.fs5_c00047{font-size:66.151621px;}
.fse_c00047{font-size:68.250000px;}
.fsa_c00047{font-size:68.252184px;}
.fs20_c00047{font-size:69.307796px;}
.fs22_c00047{font-size:70.357914px;}
.fs4_c00047{font-size:71.403570px;}
.fs1d_c00047{font-size:71.405141px;}
.fs9_c00047{font-size:72.454383px;}
.fs21_c00047{font-size:72.458150px;}
.fs11_c00047{font-size:73.502977px;}
.fs3_c00047{font-size:73.503675px;}
.fsd_c00047{font-size:74.552386px;}
.fs1e_c00047{font-size:74.555367px;}
.fs12_c00047{font-size:75.600000px;}
.fs1a_c00047{font-size:76.650000px;}
.fs7_c00047{font-size:77.701904px;}
.fs17_c00047{font-size:78.750000px;}
.fs1b_c00047{font-size:81.900000px;}
.fs1c_c00047{font-size:82.950000px;}
.fs0_c00047{font-size:86.100000px;}
.fs1_c00047{font-size:95.550000px;}
.fsb_c00047{font-size:96.603091px;}
.fs13_c00047{font-size:96.612364px;}
.fs16_c00047{font-size:97.650000px;}
.fs2_c00047{font-size:98.703997px;}
.fs6_c00047{font-size:105.002572px;}
.fs15_c00047{font-size:108.150000px;}
.fsc_c00047{font-size:109.203494px;}
.fs14_c00047{font-size:111.314245px;}
.fs8_c00047{font-size:129.157813px;}
.y0_c00047{bottom:0.000000px;}
.y92_c00047{bottom:74.917500px;}
.y91_c00047{bottom:88.630500px;}
.y90_c00047{bottom:141.672000px;}
.y8f_c00047{bottom:141.925500px;}
.y8e_c00047{bottom:143.004000px;}
.y8d_c00047{bottom:143.166000px;}
.y8c_c00047{bottom:143.365500px;}
.y8b_c00047{bottom:143.508000px;}
.y8a_c00047{bottom:143.838000px;}
.y89_c00047{bottom:143.967000px;}
.y88_c00047{bottom:144.190500px;}
.y87_c00047{bottom:144.720000px;}
.y86_c00047{bottom:155.994000px;}
.y81_c00047{bottom:156.145368px;}
.y80_c00047{bottom:158.714664px;}
.y85_c00047{bottom:161.460000px;}
.y7f_c00047{bottom:162.543084px;}
.y7e_c00047{bottom:189.263256px;}
.y7d_c00047{bottom:191.620752px;}
.y7c_c00047{bottom:194.406000px;}
.yc2_c00047{bottom:223.823153px;}
.yc3_c00047{bottom:224.327468px;}
.yc4_c00047{bottom:224.728718px;}
.yc5_c00047{bottom:225.666083px;}
.yc6_c00047{bottom:226.050367px;}
.yc7_c00047{bottom:226.650487px;}
.yc8_c00047{bottom:226.822853px;}
.yc9_c00047{bottom:227.173710px;}
.yca_c00047{bottom:228.948600px;}
.yb7_c00047{bottom:246.512220px;}
.yb8_c00047{bottom:247.331047px;}
.yb9_c00047{bottom:249.093382px;}
.yba_c00047{bottom:250.432680px;}
.ybb_c00047{bottom:250.885642px;}
.ybc_c00047{bottom:251.641343px;}
.ybd_c00047{bottom:252.087945px;}
.ybe_c00047{bottom:253.402650px;}
.ybf_c00047{bottom:253.926803px;}
.yc0_c00047{bottom:257.580195px;}
.yc1_c00047{bottom:258.552870px;}
.yab_c00047{bottom:264.868193px;}
.yac_c00047{bottom:265.167953px;}
.yad_c00047{bottom:265.781047px;}
.yae_c00047{bottom:266.032425px;}
.yaf_c00047{bottom:266.443740px;}
.yb0_c00047{bottom:266.702633px;}
.yb1_c00047{bottom:267.155542px;}
.yb2_c00047{bottom:267.421058px;}
.yb3_c00047{bottom:267.644700px;}
.yb4_c00047{bottom:268.108988px;}
.yb5_c00047{bottom:269.534033px;}
.yb6_c00047{bottom:270.082905px;}
.yaa_c00047{bottom:294.446528px;}
.ya9_c00047{bottom:295.292123px;}
.ya8_c00047{bottom:298.727175px;}
.ya7_c00047{bottom:299.018010px;}
.ya6_c00047{bottom:299.640855px;}
.ya5_c00047{bottom:299.933040px;}
.ya4_c00047{bottom:300.148275px;}
.ya3_c00047{bottom:301.010452px;}
.ya2_c00047{bottom:301.261350px;}
.ya1_c00047{bottom:301.917495px;}
.ya0_c00047{bottom:302.286000px;}
.y97_c00047{bottom:314.278944px;}
.y98_c00047{bottom:314.562066px;}
.y99_c00047{bottom:314.871696px;}
.y9a_c00047{bottom:315.029838px;}
.y9b_c00047{bottom:315.364692px;}
.y9c_c00047{bottom:315.555126px;}
.y9d_c00047{bottom:315.885450px;}
.y9e_c00047{bottom:316.017714px;}
.y9f_c00047{bottom:317.648820px;}
.y94_c00047{bottom:336.150000px;}
.y95_c00047{bottom:337.215690px;}
.y7b_c00047{bottom:337.500000px;}
.y96_c00047{bottom:341.858196px;}
.y84_c00047{bottom:349.056000px;}
.y83_c00047{bottom:370.263000px;}
.y76_c00047{bottom:397.981500px;}
.y77_c00047{bottom:398.442849px;}
.y78_c00047{bottom:398.972913px;}
.y79_c00047{bottom:399.162075px;}
.y7a_c00047{bottom:402.195660px;}
.y82_c00047{bottom:421.113000px;}
.y6d_c00047{bottom:439.017078px;}
.y6e_c00047{bottom:440.037210px;}
.y6f_c00047{bottom:440.990328px;}
.y70_c00047{bottom:441.415866px;}
.y71_c00047{bottom:442.328400px;}
.y72_c00047{bottom:443.513856px;}
.y73_c00047{bottom:444.665196px;}
.y74_c00047{bottom:445.011066px;}
.y75_c00047{bottom:449.108082px;}
.y61_c00047{bottom:466.840500px;}
.y62_c00047{bottom:467.301492px;}
.y63_c00047{bottom:468.669936px;}
.y64_c00047{bottom:469.938462px;}
.y65_c00047{bottom:470.695428px;}
.y66_c00047{bottom:472.545864px;}
.y67_c00047{bottom:472.982076px;}
.y68_c00047{bottom:473.846310px;}
.y69_c00047{bottom:475.007148px;}
.y6a_c00047{bottom:477.638196px;}
.y60_c00047{bottom:478.710000px;}
.y6b_c00047{bottom:479.945886px;}
.y6c_c00047{bottom:480.588234px;}
.y5f_c00047{bottom:490.546500px;}
.y93_c00047{bottom:513.898500px;}
.y59_c00047{bottom:534.330372px;}
.y5a_c00047{bottom:535.165464px;}
.y5b_c00047{bottom:536.812848px;}
.y5c_c00047{bottom:537.282756px;}
.y5d_c00047{bottom:537.572820px;}
.y5e_c00047{bottom:539.940804px;}
.y56_c00047{bottom:549.453072px;}
.y57_c00047{bottom:550.333080px;}
.y58_c00047{bottom:551.234520px;}
.y52_c00047{bottom:578.341428px;}
.y53_c00047{bottom:580.763676px;}
.y54_c00047{bottom:583.911372px;}
.y55_c00047{bottom:584.196408px;}
.y47_c00047{bottom:601.561500px;}
.y48_c00047{bottom:601.732260px;}
.y49_c00047{bottom:602.256852px;}
.y4a_c00047{bottom:602.747412px;}
.y4b_c00047{bottom:603.019320px;}
.y4c_c00047{bottom:603.211572px;}
.y4d_c00047{bottom:603.773100px;}
.y4e_c00047{bottom:603.919680px;}
.y4f_c00047{bottom:604.135764px;}
.y50_c00047{bottom:604.462272px;}
.y51_c00047{bottom:606.009660px;}
.y3c_c00047{bottom:624.070898px;}
.y3d_c00047{bottom:624.503294px;}
.y3e_c00047{bottom:624.814001px;}
.y3f_c00047{bottom:625.037861px;}
.y40_c00047{bottom:625.139487px;}
.y41_c00047{bottom:625.322097px;}
.y42_c00047{bottom:625.727031px;}
.y43_c00047{bottom:625.853807px;}
.y44_c00047{bottom:626.149833px;}
.y45_c00047{bottom:626.272083px;}
.y46_c00047{bottom:627.316976px;}
.y36_c00047{bottom:645.573000px;}
.y37_c00047{bottom:645.786889px;}
.y38_c00047{bottom:647.213216px;}
.y39_c00047{bottom:648.144014px;}
.y3a_c00047{bottom:650.612578px;}
.y3b_c00047{bottom:651.680277px;}
.y30_c00047{bottom:674.457942px;}
.y31_c00047{bottom:674.458292px;}
.y2f_c00047{bottom:674.458552px;}
.y32_c00047{bottom:674.458611px;}
.y2d_c00047{bottom:674.458863px;}
.y2c_c00047{bottom:674.458994px;}
.y2e_c00047{bottom:674.459043px;}
.y2b_c00047{bottom:674.459124px;}
.y33_c00047{bottom:674.459280px;}
.y35_c00047{bottom:674.459450px;}
.y2a_c00047{bottom:674.459495px;}
.y34_c00047{bottom:674.460020px;}
.y26_c00047{bottom:685.535928px;}
.y27_c00047{bottom:689.077064px;}
.y28_c00047{bottom:695.948093px;}
.y29_c00047{bottom:696.807972px;}
.y18_c00047{bottom:716.316000px;}
.y19_c00047{bottom:716.925315px;}
.y1a_c00047{bottom:717.225815px;}
.y1b_c00047{bottom:717.348696px;}
.y1c_c00047{bottom:717.586847px;}
.y1d_c00047{bottom:718.036709px;}
.y1e_c00047{bottom:718.193547px;}
.y1f_c00047{bottom:718.414751px;}
.y20_c00047{bottom:718.667927px;}
.y21_c00047{bottom:718.836000px;}
.y22_c00047{bottom:719.093219px;}
.y23_c00047{bottom:719.269010px;}
.y24_c00047{bottom:720.291783px;}
.y25_c00047{bottom:720.460581px;}
.yf_c00047{bottom:739.800450px;}
.y10_c00047{bottom:740.585055px;}
.y11_c00047{bottom:740.780880px;}
.y12_c00047{bottom:741.071130px;}
.y13_c00047{bottom:741.909660px;}
.y14_c00047{bottom:742.357080px;}
.y15_c00047{bottom:742.682985px;}
.y16_c00047{bottom:743.470245px;}
.y17_c00047{bottom:744.799440px;}
.y7_c00047{bottom:761.673000px;}
.y8_c00047{bottom:762.576705px;}
.y9_c00047{bottom:763.591830px;}
.ya_c00047{bottom:764.139930px;}
.yb_c00047{bottom:764.531010px;}
.yc_c00047{bottom:765.174195px;}
.yd_c00047{bottom:765.834450px;}
.ye_c00047{bottom:767.401290px;}
.y3_c00047{bottom:785.433000px;}
.y4_c00047{bottom:785.946985px;}
.y5_c00047{bottom:787.563313px;}
.y6_c00047{bottom:790.445874px;}
.y2_c00047{bottom:886.848000px;}
.y1_c00047{bottom:903.732000px;}
.h1a_c00047{height:27.300000px;}
.h11_c00047{height:35.700000px;}
.h21_c00047{height:51.455788px;}
.h1b_c00047{height:63.000000px;}
.h12_c00047{height:65.125514px;}
.h7_c00047{height:66.151621px;}
.h10_c00047{height:68.250000px;}
.hc_c00047{height:68.252184px;}
.h22_c00047{height:69.307796px;}
.h24_c00047{height:70.357914px;}
.h6_c00047{height:71.403570px;}
.h1f_c00047{height:71.405141px;}
.hb_c00047{height:72.454383px;}
.h23_c00047{height:72.458150px;}
.h13_c00047{height:73.502977px;}
.h5_c00047{height:73.503675px;}
.hf_c00047{height:74.552386px;}
.h20_c00047{height:74.555367px;}
.h14_c00047{height:75.600000px;}
.h1c_c00047{height:76.650000px;}
.h9_c00047{height:77.701904px;}
.h19_c00047{height:78.750000px;}
.h1d_c00047{height:81.900000px;}
.h1e_c00047{height:82.950000px;}
.h2_c00047{height:86.100000px;}
.h3_c00047{height:95.550000px;}
.hd_c00047{height:96.603091px;}
.h15_c00047{height:96.612364px;}
.h18_c00047{height:97.650000px;}
.h4_c00047{height:98.703997px;}
.h8_c00047{height:105.002572px;}
.h17_c00047{height:108.150000px;}
.he_c00047{height:109.203494px;}
.h16_c00047{height:111.314245px;}
.ha_c00047{height:129.157813px;}
.h0_c00047{height:1008.450000px;}
.h1_c00047{height:1008.750000px;}
.w0_c00047{width:699.000000px;}
.x0_c00047{left:0.000000px;}
.xb_c00047{left:78.582000px;}
.x16_c00047{left:80.359440px;}
.x26_c00047{left:88.102338px;}
.x33_c00047{left:94.907678px;}
.x30_c00047{left:100.441500px;}
.xc_c00047{left:135.691500px;}
.x73_c00047{left:146.340000px;}
.x43_c00047{left:162.710424px;}
.x1b_c00047{left:167.227500px;}
.xf_c00047{left:168.366000px;}
.x7c_c00047{left:176.352000px;}
.x4c_c00047{left:183.964500px;}
.x74_c00047{left:187.110000px;}
.x17_c00047{left:189.353535px;}
.x83_c00047{left:192.465000px;}
.x88_c00047{left:198.084645px;}
.x8f_c00047{left:204.145515px;}
.x29_c00047{left:206.552177px;}
.x7d_c00047{left:208.246110px;}
.x1c_c00047{left:210.156000px;}
.x75_c00047{left:211.680000px;}
.x95_c00047{left:213.174570px;}
.x55_c00047{left:216.671424px;}
.x34_c00047{left:218.787492px;}
.x18_c00047{left:221.528850px;}
.x1d_c00047{left:227.710500px;}
.x31_c00047{left:230.107500px;}
.x4d_c00047{left:232.837500px;}
.x47_c00047{left:237.060000px;}
.x2a_c00047{left:244.892556px;}
.x96_c00047{left:249.638790px;}
.x7e_c00047{left:252.551274px;}
.x35_c00047{left:256.049538px;}
.x42_c00047{left:257.782464px;}
.x89_c00047{left:259.334617px;}
.x1e_c00047{left:261.732000px;}
.x76_c00047{left:265.680000px;}
.x10_c00047{left:269.878500px;}
.x36_c00047{left:273.061979px;}
.x27_c00047{left:274.463183px;}
.x5a_c00047{left:276.871500px;}
.x4e_c00047{left:278.142000px;}
.x90_c00047{left:280.800187px;}
.x56_c00047{left:282.261234px;}
.x8a_c00047{left:284.485545px;}
.x3b_c00047{left:286.312500px;}
.x68_c00047{left:293.169000px;}
.x6e_c00047{left:295.380000px;}
.x5b_c00047{left:297.889500px;}
.x37_c00047{left:303.573661px;}
.x4f_c00047{left:305.176500px;}
.x48_c00047{left:307.530000px;}
.x62_c00047{left:310.770000px;}
.x5e_c00047{left:312.322500px;}
.xd_c00047{left:315.283500px;}
.x65_c00047{left:319.410000px;}
.x2b_c00047{left:320.494763px;}
.x40_c00047{left:321.507324px;}
.x7f_c00047{left:323.013504px;}
.x11_c00047{left:324.688500px;}
.x1f_c00047{left:325.998000px;}
.x44_c00047{left:327.380784px;}
.x66_c00047{left:331.830000px;}
.x97_c00047{left:334.881022px;}
.x77_c00047{left:336.420000px;}
.x67_c00047{left:338.850000px;}
.x1_c00047{left:342.090000px;}
.x84_c00047{left:344.241000px;}
.x8_c00047{left:346.140000px;}
.x20_c00047{left:348.403500px;}
.x80_c00047{left:350.259642px;}
.x8b_c00047{left:351.430155px;}
.x3c_c00047{left:356.503500px;}
.x49_c00047{left:359.370000px;}
.x12_c00047{left:363.796500px;}
.x69_c00047{left:369.847500px;}
.x38_c00047{left:371.071374px;}
.x3d_c00047{left:374.826000px;}
.x78_c00047{left:376.920000px;}
.x21_c00047{left:380.004000px;}
.x57_c00047{left:382.173306px;}
.x2_c00047{left:384.480000px;}
.x85_c00047{left:385.764000px;}
.x50_c00047{left:386.842500px;}
.x9_c00047{left:389.070000px;}
.x2c_c00047{left:390.696707px;}
.x39_c00047{left:392.143029px;}
.x6a_c00047{left:393.580500px;}
.x79_c00047{left:394.740000px;}
.x81_c00047{left:397.539486px;}
.x19_c00047{left:400.566135px;}
.x3e_c00047{left:401.836500px;}
.x45_c00047{left:403.251060px;}
.x86_c00047{left:405.153000px;}
.x91_c00047{left:411.036892px;}
.x22_c00047{left:416.172000px;}
.x51_c00047{left:417.708000px;}
.xa_c00047{left:418.770000px;}
.x3_c00047{left:421.740000px;}
.x2d_c00047{left:424.176845px;}
.x6b_c00047{left:426.790500px;}
.x13_c00047{left:428.115000px;}
.x58_c00047{left:436.964016px;}
.x98_c00047{left:439.903995px;}
.x4_c00047{left:440.910000px;}
.x3f_c00047{left:442.650000px;}
.x8c_c00047{left:445.660980px;}
.x59_c00047{left:453.444750px;}
.x52_c00047{left:459.166500px;}
.x3a_c00047{left:461.808357px;}
.x92_c00047{left:468.222472px;}
.x99_c00047{left:471.825937px;}
.x5c_c00047{left:473.580000px;}
.x23_c00047{left:476.928000px;}
.x5_c00047{left:483.840000px;}
.x5f_c00047{left:486.400500px;}
.x1a_c00047{left:487.993005px;}
.x93_c00047{left:490.991955px;}
.x8d_c00047{left:492.125895px;}
.x14_c00047{left:494.140500px;}
.x6f_c00047{left:498.420000px;}
.x6_c00047{left:502.740000px;}
.x63_c00047{left:513.270000px;}
.x7_c00047{left:537.570000px;}
.x32_c00047{left:539.140500px;}
.x7a_c00047{left:544.320000px;}
.x5d_c00047{left:549.450000px;}
.x53_c00047{left:553.132500px;}
.x70_c00047{left:556.740000px;}
.x6d_c00047{left:574.830000px;}
.x4a_c00047{left:576.450000px;}
.x2e_c00047{left:591.040514px;}
.x61_c00047{left:609.638580px;}
.x71_c00047{left:623.430000px;}
.x60_c00047{left:633.744000px;}
.xe_c00047{left:635.568000px;}
.x2f_c00047{left:638.291324px;}
.x46_c00047{left:639.995268px;}
.x64_c00047{left:646.110000px;}
.x24_c00047{left:648.151500px;}
.x82_c00047{left:649.502106px;}
.x15_c00047{left:650.824500px;}
.x4b_c00047{left:652.590000px;}
.x54_c00047{left:658.491000px;}
.x72_c00047{left:662.040000px;}
.x41_c00047{left:664.718328px;}
.x7b_c00047{left:668.250000px;}
.x25_c00047{left:672.265500px;}
.x6c_c00047{left:675.813000px;}
.x28_c00047{left:681.344505px;}
.x8e_c00047{left:689.505397px;}
.x87_c00047{left:690.529500px;}
.x94_c00047{left:692.102070px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
.fs18_c00047{font-size:24.266667pt;}
.fsf_c00047{font-size:31.733333pt;}
.fs1f_c00047{font-size:45.738478pt;}
.fs19_c00047{font-size:56.000000pt;}
.fs10_c00047{font-size:57.889346pt;}
.fs5_c00047{font-size:58.801441pt;}
.fse_c00047{font-size:60.666667pt;}
.fsa_c00047{font-size:60.668608pt;}
.fs20_c00047{font-size:61.606930pt;}
.fs22_c00047{font-size:62.540368pt;}
.fs4_c00047{font-size:63.469840pt;}
.fs1d_c00047{font-size:63.471236pt;}
.fs9_c00047{font-size:64.403896pt;}
.fs21_c00047{font-size:64.407245pt;}
.fs11_c00047{font-size:65.335979pt;}
.fs3_c00047{font-size:65.336600pt;}
.fsd_c00047{font-size:66.268787pt;}
.fs1e_c00047{font-size:66.271438pt;}
.fs12_c00047{font-size:67.200000pt;}
.fs1a_c00047{font-size:68.133333pt;}
.fs7_c00047{font-size:69.068359pt;}
.fs17_c00047{font-size:70.000000pt;}
.fs1b_c00047{font-size:72.800000pt;}
.fs1c_c00047{font-size:73.733333pt;}
.fs0_c00047{font-size:76.533333pt;}
.fs1_c00047{font-size:84.933333pt;}
.fsb_c00047{font-size:85.869414pt;}
.fs13_c00047{font-size:85.877657pt;}
.fs16_c00047{font-size:86.800000pt;}
.fs2_c00047{font-size:87.736886pt;}
.fs6_c00047{font-size:93.335620pt;}
.fs15_c00047{font-size:96.133333pt;}
.fsc_c00047{font-size:97.069773pt;}
.fs14_c00047{font-size:98.945996pt;}
.fs8_c00047{font-size:114.806945pt;}
.y0_c00047{bottom:0.000000pt;}
.y92_c00047{bottom:66.593333pt;}
.y91_c00047{bottom:78.782667pt;}
.y90_c00047{bottom:125.930667pt;}
.y8f_c00047{bottom:126.156000pt;}
.y8e_c00047{bottom:127.114667pt;}
.y8d_c00047{bottom:127.258667pt;}
.y8c_c00047{bottom:127.436000pt;}
.y8b_c00047{bottom:127.562667pt;}
.y8a_c00047{bottom:127.856000pt;}
.y89_c00047{bottom:127.970667pt;}
.y88_c00047{bottom:128.169333pt;}
.y87_c00047{bottom:128.640000pt;}
.y86_c00047{bottom:138.661333pt;}
.y81_c00047{bottom:138.795883pt;}
.y80_c00047{bottom:141.079701pt;}
.y85_c00047{bottom:143.520000pt;}
.y7f_c00047{bottom:144.482741pt;}
.y7e_c00047{bottom:168.234005pt;}
.y7d_c00047{bottom:170.329557pt;}
.y7c_c00047{bottom:172.805333pt;}
.yc2_c00047{bottom:198.953913pt;}
.yc3_c00047{bottom:199.402193pt;}
.yc4_c00047{bottom:199.758860pt;}
.yc5_c00047{bottom:200.592073pt;}
.yc6_c00047{bottom:200.933660pt;}
.yc7_c00047{bottom:201.467100pt;}
.yc8_c00047{bottom:201.620313pt;}
.yc9_c00047{bottom:201.932187pt;}
.yca_c00047{bottom:203.509867pt;}
.yb7_c00047{bottom:219.121973pt;}
.yb8_c00047{bottom:219.849820pt;}
.yb9_c00047{bottom:221.416340pt;}
.yba_c00047{bottom:222.606827pt;}
.ybb_c00047{bottom:223.009460pt;}
.ybc_c00047{bottom:223.681193pt;}
.ybd_c00047{bottom:224.078173pt;}
.ybe_c00047{bottom:225.246800pt;}
.ybf_c00047{bottom:225.712713pt;}
.yc0_c00047{bottom:228.960173pt;}
.yc1_c00047{bottom:229.824773pt;}
.yab_c00047{bottom:235.438393pt;}
.yac_c00047{bottom:235.704847pt;}
.yad_c00047{bottom:236.249820pt;}
.yae_c00047{bottom:236.473267pt;}
.yaf_c00047{bottom:236.838880pt;}
.yb0_c00047{bottom:237.069007pt;}
.yb1_c00047{bottom:237.471593pt;}
.yb2_c00047{bottom:237.707607pt;}
.yb3_c00047{bottom:237.906400pt;}
.yb4_c00047{bottom:238.319100pt;}
.yb5_c00047{bottom:239.585807pt;}
.yb6_c00047{bottom:240.073693pt;}
.yaa_c00047{bottom:261.730247pt;}
.ya9_c00047{bottom:262.481887pt;}
.ya8_c00047{bottom:265.535267pt;}
.ya7_c00047{bottom:265.793787pt;}
.ya6_c00047{bottom:266.347427pt;}
.ya5_c00047{bottom:266.607147pt;}
.ya4_c00047{bottom:266.798467pt;}
.ya3_c00047{bottom:267.564847pt;}
.ya2_c00047{bottom:267.787867pt;}
.ya1_c00047{bottom:268.371107pt;}
.ya0_c00047{bottom:268.698667pt;}
.y97_c00047{bottom:279.359061pt;}
.y98_c00047{bottom:279.610725pt;}
.y99_c00047{bottom:279.885952pt;}
.y9a_c00047{bottom:280.026523pt;}
.y9b_c00047{bottom:280.324171pt;}
.y9c_c00047{bottom:280.493445pt;}
.y9d_c00047{bottom:280.787067pt;}
.y9e_c00047{bottom:280.904635pt;}
.y9f_c00047{bottom:282.354507pt;}
.y94_c00047{bottom:298.800000pt;}
.y95_c00047{bottom:299.747280pt;}
.y7b_c00047{bottom:300.000000pt;}
.y96_c00047{bottom:303.873952pt;}
.y84_c00047{bottom:310.272000pt;}
.y83_c00047{bottom:329.122667pt;}
.y76_c00047{bottom:353.761333pt;}
.y77_c00047{bottom:354.171421pt;}
.y78_c00047{bottom:354.642589pt;}
.y79_c00047{bottom:354.810733pt;}
.y7a_c00047{bottom:357.507253pt;}
.y82_c00047{bottom:374.322667pt;}
.y6d_c00047{bottom:390.237403pt;}
.y6e_c00047{bottom:391.144187pt;}
.y6f_c00047{bottom:391.991403pt;}
.y70_c00047{bottom:392.369659pt;}
.y71_c00047{bottom:393.180800pt;}
.y72_c00047{bottom:394.234539pt;}
.y73_c00047{bottom:395.257952pt;}
.y74_c00047{bottom:395.565392pt;}
.y75_c00047{bottom:399.207184pt;}
.y61_c00047{bottom:414.969333pt;}
.y62_c00047{bottom:415.379104pt;}
.y63_c00047{bottom:416.595499pt;}
.y64_c00047{bottom:417.723077pt;}
.y65_c00047{bottom:418.395936pt;}
.y66_c00047{bottom:420.040768pt;}
.y67_c00047{bottom:420.428512pt;}
.y68_c00047{bottom:421.196720pt;}
.y69_c00047{bottom:422.228576pt;}
.y6a_c00047{bottom:424.567285pt;}
.y60_c00047{bottom:425.520000pt;}
.y6b_c00047{bottom:426.618565pt;}
.y6c_c00047{bottom:427.189541pt;}
.y5f_c00047{bottom:436.041333pt;}
.y93_c00047{bottom:456.798667pt;}
.y59_c00047{bottom:474.960331pt;}
.y5a_c00047{bottom:475.702635pt;}
.y5b_c00047{bottom:477.166976pt;}
.y5c_c00047{bottom:477.584672pt;}
.y5d_c00047{bottom:477.842507pt;}
.y5e_c00047{bottom:479.947381pt;}
.y56_c00047{bottom:488.402731pt;}
.y57_c00047{bottom:489.184960pt;}
.y58_c00047{bottom:489.986240pt;}
.y52_c00047{bottom:514.081269pt;}
.y53_c00047{bottom:516.234379pt;}
.y54_c00047{bottom:519.032331pt;}
.y55_c00047{bottom:519.285696pt;}
.y47_c00047{bottom:534.721333pt;}
.y48_c00047{bottom:534.873120pt;}
.y49_c00047{bottom:535.339424pt;}
.y4a_c00047{bottom:535.775477pt;}
.y4b_c00047{bottom:536.017173pt;}
.y4c_c00047{bottom:536.188064pt;}
.y4d_c00047{bottom:536.687200pt;}
.y4e_c00047{bottom:536.817493pt;}
.y4f_c00047{bottom:537.009568pt;}
.y50_c00047{bottom:537.299797pt;}
.y51_c00047{bottom:538.675253pt;}
.y3c_c00047{bottom:554.729687pt;}
.y3d_c00047{bottom:555.114039pt;}
.y3e_c00047{bottom:555.390223pt;}
.y3f_c00047{bottom:555.589209pt;}
.y40_c00047{bottom:555.679544pt;}
.y41_c00047{bottom:555.841864pt;}
.y42_c00047{bottom:556.201805pt;}
.y43_c00047{bottom:556.314495pt;}
.y44_c00047{bottom:556.577629pt;}
.y45_c00047{bottom:556.686296pt;}
.y46_c00047{bottom:557.615089pt;}
.y36_c00047{bottom:573.842667pt;}
.y37_c00047{bottom:574.032791pt;}
.y38_c00047{bottom:575.300636pt;}
.y39_c00047{bottom:576.128012pt;}
.y3a_c00047{bottom:578.322292pt;}
.y3b_c00047{bottom:579.271357pt;}
.y30_c00047{bottom:599.518171pt;}
.y31_c00047{bottom:599.518481pt;}
.y2f_c00047{bottom:599.518713pt;}
.y32_c00047{bottom:599.518765pt;}
.y2d_c00047{bottom:599.518989pt;}
.y2c_c00047{bottom:599.519105pt;}
.y2e_c00047{bottom:599.519149pt;}
.y2b_c00047{bottom:599.519221pt;}
.y33_c00047{bottom:599.519360pt;}
.y35_c00047{bottom:599.519511pt;}
.y2a_c00047{bottom:599.519551pt;}
.y34_c00047{bottom:599.520017pt;}
.y26_c00047{bottom:609.365269pt;}
.y27_c00047{bottom:612.512945pt;}
.y28_c00047{bottom:618.620527pt;}
.y29_c00047{bottom:619.384864pt;}
.y18_c00047{bottom:636.725333pt;}
.y19_c00047{bottom:637.266947pt;}
.y1a_c00047{bottom:637.534057pt;}
.y1b_c00047{bottom:637.643285pt;}
.y1c_c00047{bottom:637.854975pt;}
.y1d_c00047{bottom:638.254852pt;}
.y1e_c00047{bottom:638.394264pt;}
.y1f_c00047{bottom:638.590889pt;}
.y20_c00047{bottom:638.815935pt;}
.y21_c00047{bottom:638.965333pt;}
.y22_c00047{bottom:639.193972pt;}
.y23_c00047{bottom:639.350231pt;}
.y24_c00047{bottom:640.259363pt;}
.y25_c00047{bottom:640.409405pt;}
.yf_c00047{bottom:657.600400pt;}
.y10_c00047{bottom:658.297827pt;}
.y11_c00047{bottom:658.471893pt;}
.y12_c00047{bottom:658.729893pt;}
.y13_c00047{bottom:659.475253pt;}
.y14_c00047{bottom:659.872960pt;}
.y15_c00047{bottom:660.162653pt;}
.y16_c00047{bottom:660.862440pt;}
.y17_c00047{bottom:662.043947pt;}
.y7_c00047{bottom:677.042667pt;}
.y8_c00047{bottom:677.845960pt;}
.y9_c00047{bottom:678.748293pt;}
.ya_c00047{bottom:679.235493pt;}
.yb_c00047{bottom:679.583120pt;}
.yc_c00047{bottom:680.154840pt;}
.yd_c00047{bottom:680.741733pt;}
.ye_c00047{bottom:682.134480pt;}
.y3_c00047{bottom:698.162667pt;}
.y4_c00047{bottom:698.619543pt;}
.y5_c00047{bottom:700.056279pt;}
.y6_c00047{bottom:702.618555pt;}
.y2_c00047{bottom:788.309333pt;}
.y1_c00047{bottom:803.317333pt;}
.h1a_c00047{height:24.266667pt;}
.h11_c00047{height:31.733333pt;}
.h21_c00047{height:45.738478pt;}
.h1b_c00047{height:56.000000pt;}
.h12_c00047{height:57.889346pt;}
.h7_c00047{height:58.801441pt;}
.h10_c00047{height:60.666667pt;}
.hc_c00047{height:60.668608pt;}
.h22_c00047{height:61.606930pt;}
.h24_c00047{height:62.540368pt;}
.h6_c00047{height:63.469840pt;}
.h1f_c00047{height:63.471236pt;}
.hb_c00047{height:64.403896pt;}
.h23_c00047{height:64.407245pt;}
.h13_c00047{height:65.335979pt;}
.h5_c00047{height:65.336600pt;}
.hf_c00047{height:66.268787pt;}
.h20_c00047{height:66.271438pt;}
.h14_c00047{height:67.200000pt;}
.h1c_c00047{height:68.133333pt;}
.h9_c00047{height:69.068359pt;}
.h19_c00047{height:70.000000pt;}
.h1d_c00047{height:72.800000pt;}
.h1e_c00047{height:73.733333pt;}
.h2_c00047{height:76.533333pt;}
.h3_c00047{height:84.933333pt;}
.hd_c00047{height:85.869414pt;}
.h15_c00047{height:85.877657pt;}
.h18_c00047{height:86.800000pt;}
.h4_c00047{height:87.736886pt;}
.h8_c00047{height:93.335620pt;}
.h17_c00047{height:96.133333pt;}
.he_c00047{height:97.069773pt;}
.h16_c00047{height:98.945996pt;}
.ha_c00047{height:114.806945pt;}
.h0_c00047{height:896.400000pt;}
.h1_c00047{height:896.666667pt;}
.w0_c00047{width:621.333333pt;}
.x0_c00047{left:0.000000pt;}
.xb_c00047{left:69.850667pt;}
.x16_c00047{left:71.430613pt;}
.x26_c00047{left:78.313189pt;}
.x33_c00047{left:84.362380pt;}
.x30_c00047{left:89.281333pt;}
.xc_c00047{left:120.614667pt;}
.x73_c00047{left:130.080000pt;}
.x43_c00047{left:144.631488pt;}
.x1b_c00047{left:148.646667pt;}
.xf_c00047{left:149.658667pt;}
.x7c_c00047{left:156.757333pt;}
.x4c_c00047{left:163.524000pt;}
.x74_c00047{left:166.320000pt;}
.x17_c00047{left:168.314253pt;}
.x83_c00047{left:171.080000pt;}
.x88_c00047{left:176.075240pt;}
.x8f_c00047{left:181.462680pt;}
.x29_c00047{left:183.601935pt;}
.x7d_c00047{left:185.107653pt;}
.x1c_c00047{left:186.805333pt;}
.x75_c00047{left:188.160000pt;}
.x95_c00047{left:189.488507pt;}
.x55_c00047{left:192.596821pt;}
.x34_c00047{left:194.477771pt;}
.x18_c00047{left:196.914533pt;}
.x1d_c00047{left:202.409333pt;}
.x31_c00047{left:204.540000pt;}
.x4d_c00047{left:206.966667pt;}
.x47_c00047{left:210.720000pt;}
.x2a_c00047{left:217.682272pt;}
.x96_c00047{left:221.901147pt;}
.x7e_c00047{left:224.490021pt;}
.x35_c00047{left:227.599589pt;}
.x42_c00047{left:229.139968pt;}
.x89_c00047{left:230.519660pt;}
.x1e_c00047{left:232.650667pt;}
.x76_c00047{left:236.160000pt;}
.x10_c00047{left:239.892000pt;}
.x36_c00047{left:242.721759pt;}
.x27_c00047{left:243.967273pt;}
.x5a_c00047{left:246.108000pt;}
.x4e_c00047{left:247.237333pt;}
.x90_c00047{left:249.600167pt;}
.x56_c00047{left:250.898875pt;}
.x8a_c00047{left:252.876040pt;}
.x3b_c00047{left:254.500000pt;}
.x68_c00047{left:260.594667pt;}
.x6e_c00047{left:262.560000pt;}
.x5b_c00047{left:264.790667pt;}
.x37_c00047{left:269.843255pt;}
.x4f_c00047{left:271.268000pt;}
.x48_c00047{left:273.360000pt;}
.x62_c00047{left:276.240000pt;}
.x5e_c00047{left:277.620000pt;}
.xd_c00047{left:280.252000pt;}
.x65_c00047{left:283.920000pt;}
.x2b_c00047{left:284.884233pt;}
.x40_c00047{left:285.784288pt;}
.x7f_c00047{left:287.123115pt;}
.x11_c00047{left:288.612000pt;}
.x1f_c00047{left:289.776000pt;}
.x44_c00047{left:291.005141pt;}
.x66_c00047{left:294.960000pt;}
.x97_c00047{left:297.672020pt;}
.x77_c00047{left:299.040000pt;}
.x67_c00047{left:301.200000pt;}
.x1_c00047{left:304.080000pt;}
.x84_c00047{left:305.992000pt;}
.x8_c00047{left:307.680000pt;}
.x20_c00047{left:309.692000pt;}
.x80_c00047{left:311.341904pt;}
.x8b_c00047{left:312.382360pt;}
.x3c_c00047{left:316.892000pt;}
.x49_c00047{left:319.440000pt;}
.x12_c00047{left:323.374667pt;}
.x69_c00047{left:328.753333pt;}
.x38_c00047{left:329.841221pt;}
.x3d_c00047{left:333.178667pt;}
.x78_c00047{left:335.040000pt;}
.x21_c00047{left:337.781333pt;}
.x57_c00047{left:339.709605pt;}
.x2_c00047{left:341.760000pt;}
.x85_c00047{left:342.901333pt;}
.x50_c00047{left:343.860000pt;}
.x9_c00047{left:345.840000pt;}
.x2c_c00047{left:347.285961pt;}
.x39_c00047{left:348.571581pt;}
.x6a_c00047{left:349.849333pt;}
.x79_c00047{left:350.880000pt;}
.x81_c00047{left:353.368432pt;}
.x19_c00047{left:356.058787pt;}
.x3e_c00047{left:357.188000pt;}
.x45_c00047{left:358.445387pt;}
.x86_c00047{left:360.136000pt;}
.x91_c00047{left:365.366127pt;}
.x22_c00047{left:369.930667pt;}
.x51_c00047{left:371.296000pt;}
.xa_c00047{left:372.240000pt;}
.x3_c00047{left:374.880000pt;}
.x2d_c00047{left:377.046084pt;}
.x6b_c00047{left:379.369333pt;}
.x13_c00047{left:380.546667pt;}
.x58_c00047{left:388.412459pt;}
.x98_c00047{left:391.025773pt;}
.x4_c00047{left:391.920000pt;}
.x3f_c00047{left:393.466667pt;}
.x8c_c00047{left:396.143093pt;}
.x59_c00047{left:403.062000pt;}
.x52_c00047{left:408.148000pt;}
.x3a_c00047{left:410.496317pt;}
.x92_c00047{left:416.197753pt;}
.x99_c00047{left:419.400833pt;}
.x5c_c00047{left:420.960000pt;}
.x23_c00047{left:423.936000pt;}
.x5_c00047{left:430.080000pt;}
.x5f_c00047{left:432.356000pt;}
.x1a_c00047{left:433.771560pt;}
.x93_c00047{left:436.437293pt;}
.x8d_c00047{left:437.445240pt;}
.x14_c00047{left:439.236000pt;}
.x6f_c00047{left:443.040000pt;}
.x6_c00047{left:446.880000pt;}
.x63_c00047{left:456.240000pt;}
.x7_c00047{left:477.840000pt;}
.x32_c00047{left:479.236000pt;}
.x7a_c00047{left:483.840000pt;}
.x5d_c00047{left:488.400000pt;}
.x53_c00047{left:491.673333pt;}
.x70_c00047{left:494.880000pt;}
.x6d_c00047{left:510.960000pt;}
.x4a_c00047{left:512.400000pt;}
.x2e_c00047{left:525.369345pt;}
.x61_c00047{left:541.900960pt;}
.x71_c00047{left:554.160000pt;}
.x60_c00047{left:563.328000pt;}
.xe_c00047{left:564.949333pt;}
.x2f_c00047{left:567.370065pt;}
.x46_c00047{left:568.884683pt;}
.x64_c00047{left:574.320000pt;}
.x24_c00047{left:576.134667pt;}
.x82_c00047{left:577.335205pt;}
.x15_c00047{left:578.510667pt;}
.x4b_c00047{left:580.080000pt;}
.x54_c00047{left:585.325333pt;}
.x72_c00047{left:588.480000pt;}
.x41_c00047{left:590.860736pt;}
.x7b_c00047{left:594.000000pt;}
.x25_c00047{left:597.569333pt;}
.x6c_c00047{left:600.722667pt;}
.x28_c00047{left:605.639560pt;}
.x8e_c00047{left:612.893687pt;}
.x87_c00047{left:613.804000pt;}
.x94_c00047{left:615.201840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1b_c00048{transform:matrix(0.019940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019940,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.145371,-0.001018,0.001750,0.249994,0,0);-ms-transform:matrix(0.145371,-0.001018,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145371,-0.001018,0.001750,0.249994,0,0);}
.m2b_c00048{transform:matrix(0.152276,-0.001066,0.001750,0.249994,0,0);-ms-transform:matrix(0.152276,-0.001066,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152276,-0.001066,0.001750,0.249994,0,0);}
.mf_c00048{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);}
.m14_c00048{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);}
.m11_c00048{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);}
.m2c_c00048{transform:matrix(0.169621,-0.001187,0.001750,0.249994,0,0);-ms-transform:matrix(0.169621,-0.001187,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169621,-0.001187,0.001750,0.249994,0,0);}
.me_c00048{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);}
.m1a_c00048{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);}
.m32_c00048{transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);}
.m23_c00048{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);}
.m26_c00048{transform:matrix(0.175696,-0.001230,0.001750,0.249994,0,0);-ms-transform:matrix(0.175696,-0.001230,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175696,-0.001230,0.001750,0.249994,0,0);}
.m2a_c00048{transform:matrix(0.177811,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177811,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177811,-0.001245,0.001750,0.249994,0,0);}
.m27_c00048{transform:matrix(0.178456,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178456,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178456,-0.001249,0.001750,0.249994,0,0);}
.m22_c00048{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);}
.m2f_c00048{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);}
.m16_c00048{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);}
.m10_c00048{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);}
.m2d_c00048{transform:matrix(0.183845,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183845,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183845,-0.001287,0.001750,0.249994,0,0);}
.m28_c00048{transform:matrix(0.186355,-0.001304,0.001750,0.249994,0,0);-ms-transform:matrix(0.186355,-0.001304,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186355,-0.001304,0.001750,0.249994,0,0);}
.m17_c00048{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);}
.m12_c00048{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);}
.m19_c00048{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);}
.m24_c00048{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);}
.m31_c00048{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);}
.md_c00048{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);}
.m6_c00048{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);}
.m18_c00048{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);}
.m7_c00048{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);}
.m20_c00048{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);}
.m8_c00048{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);}
.m21_c00048{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);}
.m1e_c00048{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);}
.m5_c00048{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);}
.ma_c00048{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);}
.m30_c00048{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);}
.m13_c00048{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);}
.m1d_c00048{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);}
.m1f_c00048{transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{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);}
.m9_c00048{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.326085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326085,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{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);}
.m1_c00048{transform:matrix(0.348155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348155,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.385720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385720,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{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);}
.m4_c00048{transform:matrix(0.709570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709570,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.846489,-0.005925,0.001750,0.249994,0,0);-ms-transform:matrix(0.846489,-0.005925,0.001750,0.249994,0,0);-webkit-transform:matrix(0.846489,-0.005925,0.001750,0.249994,0,0);}
.mc_c00048{transform:matrix(1.013835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(1.283125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.283125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.283125,0.000000,0.000000,0.250000,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;}
.fs1_c00048{font-size:64.050000px;}
.fs3_c00048{font-size:65.100000px;}
.fs4_c00048{font-size:66.150000px;}
.fs2_c00048{font-size:74.550000px;}
.fs5_c00048{font-size:75.601852px;}
.fs0_c00048{font-size:123.900000px;}
.y0_c00048{bottom:0.000000px;}
.y2c_c00048{bottom:679.429500px;}
.y23_c00048{bottom:727.380000px;}
.y24_c00048{bottom:727.835542px;}
.y25_c00048{bottom:727.982962px;}
.y26_c00048{bottom:728.415961px;}
.y27_c00048{bottom:728.680414px;}
.y28_c00048{bottom:729.186924px;}
.y29_c00048{bottom:729.345642px;}
.y2a_c00048{bottom:730.406194px;}
.y2b_c00048{bottom:730.650550px;}
.y1a_c00048{bottom:750.063000px;}
.y1b_c00048{bottom:750.564000px;}
.y1c_c00048{bottom:750.918000px;}
.y1d_c00048{bottom:751.084500px;}
.y1e_c00048{bottom:751.362000px;}
.y1f_c00048{bottom:751.647000px;}
.y20_c00048{bottom:752.068500px;}
.y21_c00048{bottom:752.199000px;}
.y22_c00048{bottom:753.382500px;}
.y10_c00048{bottom:771.663000px;}
.y11_c00048{bottom:772.042500px;}
.y12_c00048{bottom:772.438500px;}
.y13_c00048{bottom:773.523000px;}
.y14_c00048{bottom:773.779500px;}
.y15_c00048{bottom:774.285000px;}
.y16_c00048{bottom:774.544500px;}
.y17_c00048{bottom:774.801000px;}
.y18_c00048{bottom:775.467000px;}
.y19_c00048{bottom:777.279000px;}
.ya_c00048{bottom:794.883000px;}
.yb_c00048{bottom:795.403500px;}
.yc_c00048{bottom:795.805500px;}
.yd_c00048{bottom:796.203000px;}
.ye_c00048{bottom:796.740000px;}
.yf_c00048{bottom:797.593500px;}
.y2_c00048{bottom:818.641500px;}
.y3_c00048{bottom:818.916000px;}
.y4_c00048{bottom:819.391500px;}
.y5_c00048{bottom:820.015500px;}
.y6_c00048{bottom:820.132500px;}
.y7_c00048{bottom:820.504500px;}
.y8_c00048{bottom:821.046000px;}
.y9_c00048{bottom:822.367500px;}
.y1_c00048{bottom:867.057000px;}
.h3_c00048{height:64.050000px;}
.h5_c00048{height:65.100000px;}
.h6_c00048{height:66.150000px;}
.h4_c00048{height:74.550000px;}
.h7_c00048{height:75.601852px;}
.h2_c00048{height:123.900000px;}
.h1_c00048{height:1005.000000px;}
.h0_c00048{height:1005.150000px;}
.w0_c00048{width:732.750000px;}
.x0_c00048{left:0.000000px;}
.x1d_c00048{left:124.833000px;}
.xe_c00048{left:129.732000px;}
.x14_c00048{left:131.115000px;}
.x6_c00048{left:132.403500px;}
.x24_c00048{left:133.474500px;}
.x15_c00048{left:162.717000px;}
.x7_c00048{left:166.737000px;}
.x1_c00048{left:180.360000px;}
.xf_c00048{left:181.818000px;}
.x16_c00048{left:195.664500px;}
.x25_c00048{left:198.552000px;}
.x26_c00048{left:219.612000px;}
.x10_c00048{left:222.093000px;}
.x8_c00048{left:226.146000px;}
.x1e_c00048{left:246.876000px;}
.x11_c00048{left:261.795000px;}
.x1f_c00048{left:270.603000px;}
.x27_c00048{left:281.469000px;}
.x17_c00048{left:286.098000px;}
.x2b_c00048{left:292.680000px;}
.x9_c00048{left:304.134000px;}
.x18_c00048{left:307.434000px;}
.x20_c00048{left:310.336500px;}
.x12_c00048{left:315.504000px;}
.xa_c00048{left:318.685500px;}
.x19_c00048{left:349.545000px;}
.x21_c00048{left:351.099000px;}
.xb_c00048{left:365.158500px;}
.x1a_c00048{left:371.151000px;}
.x2c_c00048{left:376.110000px;}
.x2_c00048{left:381.780000px;}
.x1b_c00048{left:392.472000px;}
.x13_c00048{left:400.818000px;}
.x22_c00048{left:411.303000px;}
.x28_c00048{left:414.280500px;}
.x23_c00048{left:429.916500px;}
.xc_c00048{left:432.933000px;}
.x1c_c00048{left:447.996000px;}
.x3_c00048{left:465.210000px;}
.x4_c00048{left:543.510000px;}
.x29_c00048{left:565.788000px;}
.x5_c00048{left:579.690000px;}
.xd_c00048{left:598.110000px;}
.x2a_c00048{left:600.696000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs1_c00048{font-size:56.933333pt;}
.fs3_c00048{font-size:57.866667pt;}
.fs4_c00048{font-size:58.800000pt;}
.fs2_c00048{font-size:66.266667pt;}
.fs5_c00048{font-size:67.201646pt;}
.fs0_c00048{font-size:110.133333pt;}
.y0_c00048{bottom:0.000000pt;}
.y2c_c00048{bottom:603.937333pt;}
.y23_c00048{bottom:646.560000pt;}
.y24_c00048{bottom:646.964927pt;}
.y25_c00048{bottom:647.095967pt;}
.y26_c00048{bottom:647.480855pt;}
.y27_c00048{bottom:647.715924pt;}
.y28_c00048{bottom:648.166155pt;}
.y29_c00048{bottom:648.307237pt;}
.y2a_c00048{bottom:649.249951pt;}
.y2b_c00048{bottom:649.467156pt;}
.y1a_c00048{bottom:666.722667pt;}
.y1b_c00048{bottom:667.168000pt;}
.y1c_c00048{bottom:667.482667pt;}
.y1d_c00048{bottom:667.630667pt;}
.y1e_c00048{bottom:667.877333pt;}
.y1f_c00048{bottom:668.130667pt;}
.y20_c00048{bottom:668.505333pt;}
.y21_c00048{bottom:668.621333pt;}
.y22_c00048{bottom:669.673333pt;}
.y10_c00048{bottom:685.922667pt;}
.y11_c00048{bottom:686.260000pt;}
.y12_c00048{bottom:686.612000pt;}
.y13_c00048{bottom:687.576000pt;}
.y14_c00048{bottom:687.804000pt;}
.y15_c00048{bottom:688.253333pt;}
.y16_c00048{bottom:688.484000pt;}
.y17_c00048{bottom:688.712000pt;}
.y18_c00048{bottom:689.304000pt;}
.y19_c00048{bottom:690.914667pt;}
.ya_c00048{bottom:706.562667pt;}
.yb_c00048{bottom:707.025333pt;}
.yc_c00048{bottom:707.382667pt;}
.yd_c00048{bottom:707.736000pt;}
.ye_c00048{bottom:708.213333pt;}
.yf_c00048{bottom:708.972000pt;}
.y2_c00048{bottom:727.681333pt;}
.y3_c00048{bottom:727.925333pt;}
.y4_c00048{bottom:728.348000pt;}
.y5_c00048{bottom:728.902667pt;}
.y6_c00048{bottom:729.006667pt;}
.y7_c00048{bottom:729.337333pt;}
.y8_c00048{bottom:729.818667pt;}
.y9_c00048{bottom:730.993333pt;}
.y1_c00048{bottom:770.717333pt;}
.h3_c00048{height:56.933333pt;}
.h5_c00048{height:57.866667pt;}
.h6_c00048{height:58.800000pt;}
.h4_c00048{height:66.266667pt;}
.h7_c00048{height:67.201646pt;}
.h2_c00048{height:110.133333pt;}
.h1_c00048{height:893.333333pt;}
.h0_c00048{height:893.466667pt;}
.w0_c00048{width:651.333333pt;}
.x0_c00048{left:0.000000pt;}
.x1d_c00048{left:110.962667pt;}
.xe_c00048{left:115.317333pt;}
.x14_c00048{left:116.546667pt;}
.x6_c00048{left:117.692000pt;}
.x24_c00048{left:118.644000pt;}
.x15_c00048{left:144.637333pt;}
.x7_c00048{left:148.210667pt;}
.x1_c00048{left:160.320000pt;}
.xf_c00048{left:161.616000pt;}
.x16_c00048{left:173.924000pt;}
.x25_c00048{left:176.490667pt;}
.x26_c00048{left:195.210667pt;}
.x10_c00048{left:197.416000pt;}
.x8_c00048{left:201.018667pt;}
.x1e_c00048{left:219.445333pt;}
.x11_c00048{left:232.706667pt;}
.x1f_c00048{left:240.536000pt;}
.x27_c00048{left:250.194667pt;}
.x17_c00048{left:254.309333pt;}
.x2b_c00048{left:260.160000pt;}
.x9_c00048{left:270.341333pt;}
.x18_c00048{left:273.274667pt;}
.x20_c00048{left:275.854667pt;}
.x12_c00048{left:280.448000pt;}
.xa_c00048{left:283.276000pt;}
.x19_c00048{left:310.706667pt;}
.x21_c00048{left:312.088000pt;}
.xb_c00048{left:324.585333pt;}
.x1a_c00048{left:329.912000pt;}
.x2c_c00048{left:334.320000pt;}
.x2_c00048{left:339.360000pt;}
.x1b_c00048{left:348.864000pt;}
.x13_c00048{left:356.282667pt;}
.x22_c00048{left:365.602667pt;}
.x28_c00048{left:368.249333pt;}
.x23_c00048{left:382.148000pt;}
.xc_c00048{left:384.829333pt;}
.x1c_c00048{left:398.218667pt;}
.x3_c00048{left:413.520000pt;}
.x4_c00048{left:483.120000pt;}
.x29_c00048{left:502.922667pt;}
.x5_c00048{left:515.280000pt;}
.xd_c00048{left:531.653333pt;}
.x2a_c00048{left:533.952000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9e_c00049{transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);}
.m94_c00049{transform:matrix(0.018364,0.000147,-0.002000,0.249992,0,0);-ms-transform:matrix(0.018364,0.000147,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.018364,0.000147,-0.002000,0.249992,0,0);}
.m96_c00049{transform:matrix(0.092712,0.000742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.092712,0.000742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.092712,0.000742,-0.002000,0.249992,0,0);}
.m21_c00049{transform:matrix(0.094786,0.000853,-0.002250,0.249990,0,0);-ms-transform:matrix(0.094786,0.000853,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.094786,0.000853,-0.002250,0.249990,0,0);}
.mb1_c00049{transform:matrix(0.124430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124430,0.000000,0.000000,0.250000,0,0);}
.m8d_c00049{transform:matrix(0.126396,0.001011,-0.002000,0.249992,0,0);-ms-transform:matrix(0.126396,0.001011,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.126396,0.001011,-0.002000,0.249992,0,0);}
.m7b_c00049{transform:matrix(0.137090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137090,0.000000,0.000000,0.250000,0,0);}
.ma7_c00049{transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);}
.mb3_c00049{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);}
.m97_c00049{transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);}
.m99_c00049{transform:matrix(0.146835,0.001175,-0.002000,0.249992,0,0);-ms-transform:matrix(0.146835,0.001175,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.146835,0.001175,-0.002000,0.249992,0,0);}
.m4b_c00049{transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);}
.m89_c00049{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);}
.m68_c00049{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);}
.mae_c00049{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);}
.mbc_c00049{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);}
.mb5_c00049{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);}
.m19_c00049{transform:matrix(0.156004,0.001404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156004,0.001404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156004,0.001404,-0.002250,0.249990,0,0);}
.m69_c00049{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);}
.m58_c00049{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);}
.m91_c00049{transform:matrix(0.159025,0.001272,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159025,0.001272,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159025,0.001272,-0.002000,0.249992,0,0);}
.mb0_c00049{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);}
.m7a_c00049{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);}
.mba_c00049{transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);}
.m4a_c00049{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);}
.mb2_c00049{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);}
.m85_c00049{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);}
.mb4_c00049{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);}
.m4d_c00049{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);}
.m49_c00049{transform:matrix(0.162855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162855,0.000000,0.000000,0.250000,0,0);}
.m47_c00049{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);}
.m6f_c00049{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);}
.m80_c00049{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);}
.m44_c00049{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);}
.ma9_c00049{transform:matrix(0.164898,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164898,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164898,0.001484,-0.002250,0.249990,0,0);}
.m79_c00049{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00049{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);}
.m98_c00049{transform:matrix(0.165985,0.001328,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165985,0.001328,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165985,0.001328,-0.002000,0.249992,0,0);}
.m8e_c00049{transform:matrix(0.166815,0.001335,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166815,0.001335,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166815,0.001335,-0.002000,0.249992,0,0);}
.m22_c00049{transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);}
.m1e_c00049{transform:matrix(0.169018,0.001521,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169018,0.001521,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169018,0.001521,-0.002250,0.249990,0,0);}
.mbb_c00049{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);}
.m75_c00049{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);}
.m35_c00049{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);}
.m45_c00049{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);}
.m3e_c00049{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);}
.mb9_c00049{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);}
.m1a_c00049{transform:matrix(0.170303,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170303,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170303,0.001533,-0.002250,0.249990,0,0);}
.mf_c00049{transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);}
.m10_c00049{transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);}
.mb7_c00049{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);}
.m15_c00049{transform:matrix(0.171688,0.001545,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171688,0.001545,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171688,0.001545,-0.002250,0.249990,0,0);}
.m61_c00049{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);}
.ma8_c00049{transform:matrix(0.173623,0.001563,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173623,0.001563,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173623,0.001563,-0.002250,0.249990,0,0);}
.m7c_c00049{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);}
.m11_c00049{transform:matrix(0.174143,0.001567,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174143,0.001567,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174143,0.001567,-0.002250,0.249990,0,0);}
.m62_c00049{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);}
.m70_c00049{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);}
.m88_c00049{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);}
.m53_c00049{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);}
.m41_c00049{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);}
.m7f_c00049{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);}
.m7e_c00049{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);}
.m9b_c00049{transform:matrix(0.175589,0.001405,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175589,0.001405,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175589,0.001405,-0.002000,0.249992,0,0);}
.m8b_c00049{transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);}
.m34_c00049{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);}
.m6e_c00049{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);}
.m76_c00049{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);}
.m50_c00049{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);}
.m43_c00049{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);}
.m5a_c00049{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);}
.m72_c00049{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_c00049{transform:matrix(0.178668,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178668,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178668,0.001608,-0.002250,0.249990,0,0);}
.mac_c00049{transform:matrix(0.179523,0.001616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179523,0.001616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179523,0.001616,-0.002250,0.249990,0,0);}
.m8a_c00049{transform:matrix(0.179639,0.001437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179639,0.001437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179639,0.001437,-0.002000,0.249992,0,0);}
.m13_c00049{transform:matrix(0.179648,0.001617,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179648,0.001617,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179648,0.001617,-0.002250,0.249990,0,0);}
.m18_c00049{transform:matrix(0.180033,0.001620,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180033,0.001620,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180033,0.001620,-0.002250,0.249990,0,0);}
.ma3_c00049{transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);}
.m54_c00049{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);}
.m2c_c00049{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);}
.m86_c00049{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);}
.m33_c00049{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);}
.m3f_c00049{transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{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);}
.m8f_c00049{transform:matrix(0.184439,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184439,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184439,0.001476,-0.002000,0.249992,0,0);}
.m12_c00049{transform:matrix(0.184548,0.001661,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184548,0.001661,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184548,0.001661,-0.002250,0.249990,0,0);}
.m82_c00049{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);}
.m87_c00049{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);}
.m14_c00049{transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);}
.m63_c00049{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);}
.m9c_c00049{transform:matrix(0.185979,0.001488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185979,0.001488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185979,0.001488,-0.002000,0.249992,0,0);}
.m55_c00049{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);}
.m39_c00049{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);}
.m95_c00049{transform:matrix(0.187054,0.001496,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187054,0.001496,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187054,0.001496,-0.002000,0.249992,0,0);}
.mad_c00049{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);}
.m1f_c00049{transform:matrix(0.187552,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187552,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187552,0.001688,-0.002250,0.249990,0,0);}
.m46_c00049{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);}
.m51_c00049{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);}
.m37_c00049{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);}
.m25_c00049{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);}
.m5d_c00049{transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);}
.m73_c00049{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);}
.m90_c00049{transform:matrix(0.191834,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191834,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191834,0.001535,-0.002000,0.249992,0,0);}
.m40_c00049{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);}
.m4f_c00049{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);}
.m5f_c00049{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);}
.m74_c00049{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);}
.m6a_c00049{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);}
.m92_c00049{transform:matrix(0.195194,0.001562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195194,0.001562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195194,0.001562,-0.002000,0.249992,0,0);}
.m2_c00049{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);}
.m57_c00049{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);}
.m66_c00049{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);}
.m52_c00049{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);}
.m64_c00049{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);}
.ma0_c00049{transform:matrix(0.196094,0.001569,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196094,0.001569,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196094,0.001569,-0.002000,0.249992,0,0);}
.mab_c00049{transform:matrix(0.196107,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196107,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196107,0.001765,-0.002250,0.249990,0,0);}
.m5c_c00049{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);}
.m23_c00049{transform:matrix(0.196922,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196922,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196922,0.001772,-0.002250,0.249990,0,0);}
.m17_c00049{transform:matrix(0.197007,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197007,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197007,0.001773,-0.002250,0.249990,0,0);}
.m7d_c00049{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);}
.m60_c00049{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);}
.m32_c00049{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);}
.m5e_c00049{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);}
.m3_c00049{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_c00049{transform:matrix(0.200594,0.001605,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200594,0.001605,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200594,0.001605,-0.002000,0.249992,0,0);}
.me_c00049{transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);}
.m83_c00049{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);}
.m20_c00049{transform:matrix(0.201522,0.001814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201522,0.001814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201522,0.001814,-0.002250,0.249990,0,0);}
.m2b_c00049{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);}
.m26_c00049{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);}
.m4e_c00049{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);}
.m2d_c00049{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);}
.m27_c00049{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);}
.m2a_c00049{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);}
.m3c_c00049{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_c00049{transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);}
.m9d_c00049{transform:matrix(0.205418,0.001643,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205418,0.001643,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205418,0.001643,-0.002000,0.249992,0,0);}
.m67_c00049{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);}
.maa_c00049{transform:matrix(0.205717,0.001851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205717,0.001851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205717,0.001851,-0.002250,0.249990,0,0);}
.mb8_c00049{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);}
.m3b_c00049{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);}
.m2f_c00049{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);}
.ma5_c00049{transform:matrix(0.209113,0.001673,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209113,0.001673,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209113,0.001673,-0.002000,0.249992,0,0);}
.m93_c00049{transform:matrix(0.209663,0.001677,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209663,0.001677,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209663,0.001677,-0.002000,0.249992,0,0);}
.m2e_c00049{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);}
.ma6_c00049{transform:matrix(0.210631,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210631,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210631,0.001896,-0.002250,0.249990,0,0);}
.mb6_c00049{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);}
.m9a_c00049{transform:matrix(0.211153,0.001689,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211153,0.001689,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211153,0.001689,-0.002000,0.249992,0,0);}
.m28_c00049{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);}
.m84_c00049{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);}
.m65_c00049{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);}
.maf_c00049{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);}
.ma1_c00049{transform:matrix(0.219798,0.001758,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219798,0.001758,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219798,0.001758,-0.002000,0.249992,0,0);}
.m29_c00049{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);}
.m1d_c00049{transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);}
.m1c_c00049{transform:matrix(0.222776,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222776,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222776,0.002005,-0.002250,0.249990,0,0);}
.ma4_c00049{transform:matrix(0.224288,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224288,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224288,0.001794,-0.002000,0.249992,0,0);}
.m1_c00049{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);}
.m81_c00049{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);}
.m71_c00049{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);}
.m38_c00049{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);}
.m48_c00049{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);}
.m3a_c00049{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);}
.m8c_c00049{transform:matrix(0.234003,0.001872,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234003,0.001872,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234003,0.001872,-0.002000,0.249992,0,0);}
.m42_c00049{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);}
.m5b_c00049{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);}
.m31_c00049{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);}
.m56_c00049{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);}
.m24_c00049{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{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);}
.ma2_c00049{transform:matrix(0.265432,0.002123,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265432,0.002123,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265432,0.002123,-0.002000,0.249992,0,0);}
.mb_c00049{transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284230,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297965,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.315435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315435,0.000000,0.000000,0.250000,0,0);}
.m77_c00049{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{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);}
.m6c_c00049{transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);}
.m78_c00049{transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.368890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368890,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.382770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{transform:matrix(0.389915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389915,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.392190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392190,0.000000,0.000000,0.250000,0,0);}
.m6b_c00049{transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.478196,0.004304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.478196,0.004304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.478196,0.004304,-0.002250,0.249990,0,0);}
.m30_c00049{transform:matrix(0.585590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585590,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;}
._0_c00049{margin-left:-43.132774px;}
._1_c00049{margin-left:-2.528225px;}
.fc0_c00049{color:transparent;}
.fs2_c00049{font-size:61.950000px;}
.fsb_c00049{font-size:63.000000px;}
.fs13_c00049{font-size:64.050000px;}
.fs17_c00049{font-size:64.052050px;}
.fs0_c00049{font-size:67.200000px;}
.fs12_c00049{font-size:68.250000px;}
.fse_c00049{font-size:69.300000px;}
.fs11_c00049{font-size:70.350000px;}
.fsa_c00049{font-size:70.352849px;}
.fs15_c00049{font-size:71.400000px;}
.fs8_c00049{font-size:71.402892px;}
.fs1a_c00049{font-size:72.450000px;}
.fsc_c00049{font-size:73.500000px;}
.fs16_c00049{font-size:73.502352px;}
.fs9_c00049{font-size:73.502977px;}
.fsf_c00049{font-size:74.550000px;}
.fs14_c00049{font-size:75.600000px;}
.fs19_c00049{font-size:77.700000px;}
.fs18_c00049{font-size:77.703147px;}
.fs10_c00049{font-size:79.800000px;}
.fsd_c00049{font-size:81.900000px;}
.fs5_c00049{font-size:89.250000px;}
.fs1_c00049{font-size:106.050000px;}
.fs7_c00049{font-size:109.200000px;}
.fs3_c00049{font-size:112.350000px;}
.fs6_c00049{font-size:118.650000px;}
.fs4_c00049{font-size:131.250000px;}
.y0_c00049{bottom:0.000000px;}
.y51_c00049{bottom:157.144500px;}
.y50_c00049{bottom:180.352500px;}
.y4f_c00049{bottom:201.744825px;}
.y4e_c00049{bottom:202.410996px;}
.y4d_c00049{bottom:202.767842px;}
.y4c_c00049{bottom:203.193118px;}
.y4b_c00049{bottom:203.801051px;}
.y4a_c00049{bottom:204.041526px;}
.y49_c00049{bottom:204.391500px;}
.y46_c00049{bottom:226.469340px;}
.y47_c00049{bottom:226.469412px;}
.y48_c00049{bottom:226.469472px;}
.y44_c00049{bottom:226.469676px;}
.y45_c00049{bottom:226.469700px;}
.y43_c00049{bottom:226.469904px;}
.y42_c00049{bottom:226.470312px;}
.y41_c00049{bottom:248.908608px;}
.y40_c00049{bottom:248.908872px;}
.y3f_c00049{bottom:248.909520px;}
.y3e_c00049{bottom:248.909820px;}
.y3a_c00049{bottom:248.909904px;}
.y3d_c00049{bottom:248.909988px;}
.y39_c00049{bottom:248.910132px;}
.y3b_c00049{bottom:248.910204px;}
.y3c_c00049{bottom:248.910576px;}
.y38_c00049{bottom:269.290356px;}
.y37_c00049{bottom:270.377304px;}
.y36_c00049{bottom:270.573564px;}
.y35_c00049{bottom:271.033956px;}
.y34_c00049{bottom:271.314456px;}
.y33_c00049{bottom:271.711992px;}
.y32_c00049{bottom:271.872072px;}
.y31_c00049{bottom:272.075076px;}
.y30_c00049{bottom:272.237040px;}
.y2f_c00049{bottom:272.617260px;}
.y2e_c00049{bottom:272.971500px;}
.y2d_c00049{bottom:295.567500px;}
.y2c_c00049{bottom:318.307500px;}
.y2b_c00049{bottom:340.957500px;}
.y2a_c00049{bottom:363.673500px;}
.y29_c00049{bottom:386.728500px;}
.y28_c00049{bottom:409.548000px;}
.y27_c00049{bottom:433.302000px;}
.y26_c00049{bottom:456.348000px;}
.y25_c00049{bottom:479.062500px;}
.y24_c00049{bottom:502.068000px;}
.y23_c00049{bottom:524.680500px;}
.y22_c00049{bottom:548.910000px;}
.y21_c00049{bottom:570.879000px;}
.y20_c00049{bottom:592.854000px;}
.y18_c00049{bottom:615.513829px;}
.y1f_c00049{bottom:615.513981px;}
.y1d_c00049{bottom:615.514387px;}
.y1e_c00049{bottom:615.514447px;}
.y1a_c00049{bottom:615.514470px;}
.y19_c00049{bottom:615.514517px;}
.y1c_c00049{bottom:615.514541px;}
.y1b_c00049{bottom:615.514917px;}
.y13_c00049{bottom:638.552356px;}
.y17_c00049{bottom:638.552561px;}
.y11_c00049{bottom:638.552779px;}
.y12_c00049{bottom:638.552853px;}
.y16_c00049{bottom:638.552907px;}
.y14_c00049{bottom:638.552910px;}
.y15_c00049{bottom:638.553343px;}
.y10_c00049{bottom:638.553459px;}
.yf_c00049{bottom:659.850235px;}
.ye_c00049{bottom:660.255856px;}
.yd_c00049{bottom:660.654646px;}
.yc_c00049{bottom:661.152756px;}
.yb_c00049{bottom:661.519753px;}
.ya_c00049{bottom:661.971693px;}
.y9_c00049{bottom:662.583000px;}
.y8_c00049{bottom:683.931000px;}
.y7_c00049{bottom:721.440000px;}
.y6_c00049{bottom:759.478500px;}
.y5_c00049{bottom:798.345000px;}
.y4_c00049{bottom:865.350000px;}
.y3_c00049{bottom:897.210000px;}
.y2_c00049{bottom:907.200000px;}
.y1_c00049{bottom:928.159500px;}
.h4_c00049{height:61.950000px;}
.hd_c00049{height:63.000000px;}
.h15_c00049{height:64.050000px;}
.h19_c00049{height:64.052050px;}
.h2_c00049{height:67.200000px;}
.h14_c00049{height:68.250000px;}
.h10_c00049{height:69.300000px;}
.h13_c00049{height:70.350000px;}
.hc_c00049{height:70.352849px;}
.h17_c00049{height:71.400000px;}
.ha_c00049{height:71.402892px;}
.h1c_c00049{height:72.450000px;}
.he_c00049{height:73.500000px;}
.h18_c00049{height:73.502352px;}
.hb_c00049{height:73.502977px;}
.h11_c00049{height:74.550000px;}
.h16_c00049{height:75.600000px;}
.h1b_c00049{height:77.700000px;}
.h1a_c00049{height:77.703147px;}
.h12_c00049{height:79.800000px;}
.hf_c00049{height:81.900000px;}
.h7_c00049{height:89.250000px;}
.h3_c00049{height:106.050000px;}
.h9_c00049{height:109.200000px;}
.h5_c00049{height:112.350000px;}
.h8_c00049{height:118.650000px;}
.h6_c00049{height:131.250000px;}
.h0_c00049{height:1008.450000px;}
.h1_c00049{height:1008.750000px;}
.w0_c00049{width:699.000000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:94.230000px;}
.x2_c00049{left:110.430000px;}
.x3_c00049{left:148.770000px;}
.x2e_c00049{left:172.260000px;}
.x7a_c00049{left:174.690000px;}
.x6f_c00049{left:175.772952px;}
.x28_c00049{left:176.850000px;}
.x4_c00049{left:177.930000px;}
.x1a_c00049{left:179.819302px;}
.xd_c00049{left:181.168500px;}
.x59_c00049{left:197.100000px;}
.x2f_c00049{left:200.880000px;}
.x29_c00049{left:203.310000px;}
.x21_c00049{left:204.390000px;}
.x3a_c00049{left:205.740000px;}
.x7b_c00049{left:207.900000px;}
.x5e_c00049{left:214.920000px;}
.xa_c00049{left:217.080000px;}
.x44_c00049{left:218.970000px;}
.x5a_c00049{left:220.590000px;}
.x69_c00049{left:221.943912px;}
.x32_c00049{left:223.020000px;}
.x76_c00049{left:224.100000px;}
.x3e_c00049{left:225.180000px;}
.x22_c00049{left:228.150000px;}
.x7_c00049{left:229.500000px;}
.x6a_c00049{left:234.094692px;}
.x4b_c00049{left:242.190000px;}
.x33_c00049{left:246.780000px;}
.xe_c00049{left:249.091500px;}
.x3b_c00049{left:251.370000px;}
.x2a_c00049{left:253.800000px;}
.x3f_c00049{left:255.690000px;}
.x1b_c00049{left:257.582607px;}
.x77_c00049{left:258.930000px;}
.x5_c00049{left:262.440000px;}
.x63_c00049{left:268.554000px;}
.x4c_c00049{left:274.590000px;}
.x14_c00049{left:276.484465px;}
.x5f_c00049{left:279.720000px;}
.x51_c00049{left:284.310000px;}
.x45_c00049{left:285.390000px;}
.x34_c00049{left:288.360000px;}
.x26_c00049{left:289.980000px;}
.x40_c00049{left:291.870000px;}
.x60_c00049{left:294.840000px;}
.x1c_c00049{left:295.924212px;}
.xf_c00049{left:299.307000px;}
.x15_c00049{left:305.645328px;}
.x72_c00049{left:309.616500px;}
.x46_c00049{left:312.120000px;}
.xc_c00049{left:313.470000px;}
.x5b_c00049{left:314.550000px;}
.x23_c00049{left:323.730000px;}
.x3c_c00049{left:328.590000px;}
.x30_c00049{left:331.020000px;}
.x6b_c00049{left:332.377980px;}
.x64_c00049{left:334.185000px;}
.x41_c00049{left:335.880000px;}
.x10_c00049{left:340.084500px;}
.x47_c00049{left:342.630000px;}
.x70_c00049{left:344.797764px;}
.x55_c00049{left:346.680000px;}
.x16_c00049{left:348.037257px;}
.x35_c00049{left:349.650000px;}
.x1d_c00049{left:351.545721px;}
.x8_c00049{left:353.160000px;}
.x4d_c00049{left:354.510000px;}
.x73_c00049{left:356.869500px;}
.x24_c00049{left:364.500000px;}
.x6c_c00049{left:365.588604px;}
.x17_c00049{left:367.477336px;}
.x27_c00049{left:368.820000px;}
.x2b_c00049{left:369.900000px;}
.x42_c00049{left:377.730000px;}
.x1e_c00049{left:384.756907px;}
.x6d_c00049{left:387.189984px;}
.xb_c00049{left:388.260000px;}
.x56_c00049{left:389.610000px;}
.x36_c00049{left:392.850000px;}
.x11_c00049{left:395.430000px;}
.x74_c00049{left:396.519000px;}
.x48_c00049{left:398.520000px;}
.x9_c00049{left:400.950000px;}
.x78_c00049{left:402.030000px;}
.x57_c00049{left:404.730000px;}
.x4e_c00049{left:407.430000px;}
.x18_c00049{left:409.599252px;}
.x61_c00049{left:412.020000px;}
.x5c_c00049{left:413.370000px;}
.x52_c00049{left:416.610000px;}
.x65_c00049{left:418.939500px;}
.x79_c00049{left:420.120000px;}
.x49_c00049{left:421.200000px;}
.x3d_c00049{left:424.710000px;}
.x4f_c00049{left:431.730000px;}
.x25_c00049{left:433.080000px;}
.x2c_c00049{left:435.240000px;}
.x71_c00049{left:436.332120px;}
.x12_c00049{left:439.740000px;}
.x37_c00049{left:441.990000px;}
.x1f_c00049{left:445.778848px;}
.x31_c00049{left:446.850000px;}
.x6_c00049{left:450.630000px;}
.x5d_c00049{left:451.980000px;}
.x2d_c00049{left:453.870000px;}
.x62_c00049{left:454.950000px;}
.x43_c00049{left:456.570000px;}
.x20_c00049{left:461.440118px;}
.x50_c00049{left:468.990000px;}
.x75_c00049{left:470.538000px;}
.x66_c00049{left:476.488500px;}
.x38_c00049{left:478.170000px;}
.x19_c00049{left:481.692084px;}
.x13_c00049{left:484.809000px;}
.x58_c00049{left:494.370000px;}
.x67_c00049{left:501.021000px;}
.x53_c00049{left:508.950000px;}
.x39_c00049{left:515.700000px;}
.x4a_c00049{left:518.130000px;}
.x54_c00049{left:531.090000px;}
.x6e_c00049{left:571.065744px;}
.x68_c00049{left:636.889500px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
._0_c00049{margin-left:-38.340243pt;}
._1_c00049{margin-left:-2.247311pt;}
.fs2_c00049{font-size:55.066667pt;}
.fsb_c00049{font-size:56.000000pt;}
.fs13_c00049{font-size:56.933333pt;}
.fs17_c00049{font-size:56.935155pt;}
.fs0_c00049{font-size:59.733333pt;}
.fs12_c00049{font-size:60.666667pt;}
.fse_c00049{font-size:61.600000pt;}
.fs11_c00049{font-size:62.533333pt;}
.fsa_c00049{font-size:62.535866pt;}
.fs15_c00049{font-size:63.466667pt;}
.fs8_c00049{font-size:63.469237pt;}
.fs1a_c00049{font-size:64.400000pt;}
.fsc_c00049{font-size:65.333333pt;}
.fs16_c00049{font-size:65.335424pt;}
.fs9_c00049{font-size:65.335979pt;}
.fsf_c00049{font-size:66.266667pt;}
.fs14_c00049{font-size:67.200000pt;}
.fs19_c00049{font-size:69.066667pt;}
.fs18_c00049{font-size:69.069464pt;}
.fs10_c00049{font-size:70.933333pt;}
.fsd_c00049{font-size:72.800000pt;}
.fs5_c00049{font-size:79.333333pt;}
.fs1_c00049{font-size:94.266667pt;}
.fs7_c00049{font-size:97.066667pt;}
.fs3_c00049{font-size:99.866667pt;}
.fs6_c00049{font-size:105.466667pt;}
.fs4_c00049{font-size:116.666667pt;}
.y0_c00049{bottom:0.000000pt;}
.y51_c00049{bottom:139.684000pt;}
.y50_c00049{bottom:160.313333pt;}
.y4f_c00049{bottom:179.328733pt;}
.y4e_c00049{bottom:179.920885pt;}
.y4d_c00049{bottom:180.238081pt;}
.y4c_c00049{bottom:180.616105pt;}
.y4b_c00049{bottom:181.156489pt;}
.y4a_c00049{bottom:181.370245pt;}
.y49_c00049{bottom:181.681333pt;}
.y46_c00049{bottom:201.306080pt;}
.y47_c00049{bottom:201.306144pt;}
.y48_c00049{bottom:201.306197pt;}
.y44_c00049{bottom:201.306379pt;}
.y45_c00049{bottom:201.306400pt;}
.y43_c00049{bottom:201.306581pt;}
.y42_c00049{bottom:201.306944pt;}
.y41_c00049{bottom:221.252096pt;}
.y40_c00049{bottom:221.252331pt;}
.y3f_c00049{bottom:221.252907pt;}
.y3e_c00049{bottom:221.253173pt;}
.y3a_c00049{bottom:221.253248pt;}
.y3d_c00049{bottom:221.253323pt;}
.y39_c00049{bottom:221.253451pt;}
.y3b_c00049{bottom:221.253515pt;}
.y3c_c00049{bottom:221.253845pt;}
.y38_c00049{bottom:239.369205pt;}
.y37_c00049{bottom:240.335381pt;}
.y36_c00049{bottom:240.509835pt;}
.y35_c00049{bottom:240.919072pt;}
.y34_c00049{bottom:241.168405pt;}
.y33_c00049{bottom:241.521771pt;}
.y32_c00049{bottom:241.664064pt;}
.y31_c00049{bottom:241.844512pt;}
.y30_c00049{bottom:241.988480pt;}
.y2f_c00049{bottom:242.326453pt;}
.y2e_c00049{bottom:242.641333pt;}
.y2d_c00049{bottom:262.726667pt;}
.y2c_c00049{bottom:282.940000pt;}
.y2b_c00049{bottom:303.073333pt;}
.y2a_c00049{bottom:323.265333pt;}
.y29_c00049{bottom:343.758667pt;}
.y28_c00049{bottom:364.042667pt;}
.y27_c00049{bottom:385.157333pt;}
.y26_c00049{bottom:405.642667pt;}
.y25_c00049{bottom:425.833333pt;}
.y24_c00049{bottom:446.282667pt;}
.y23_c00049{bottom:466.382667pt;}
.y22_c00049{bottom:487.920000pt;}
.y21_c00049{bottom:507.448000pt;}
.y20_c00049{bottom:526.981333pt;}
.y18_c00049{bottom:547.123404pt;}
.y1f_c00049{bottom:547.123539pt;}
.y1d_c00049{bottom:547.123900pt;}
.y1e_c00049{bottom:547.123953pt;}
.y1a_c00049{bottom:547.123973pt;}
.y19_c00049{bottom:547.124015pt;}
.y1c_c00049{bottom:547.124036pt;}
.y1b_c00049{bottom:547.124371pt;}
.y13_c00049{bottom:567.602095pt;}
.y17_c00049{bottom:567.602276pt;}
.y11_c00049{bottom:567.602471pt;}
.y12_c00049{bottom:567.602536pt;}
.y16_c00049{bottom:567.602584pt;}
.y14_c00049{bottom:567.602587pt;}
.y15_c00049{bottom:567.602972pt;}
.y10_c00049{bottom:567.603075pt;}
.yf_c00049{bottom:586.533543pt;}
.ye_c00049{bottom:586.894095pt;}
.yd_c00049{bottom:587.248575pt;}
.yc_c00049{bottom:587.691339pt;}
.yb_c00049{bottom:588.017559pt;}
.ya_c00049{bottom:588.419283pt;}
.y9_c00049{bottom:588.962667pt;}
.y8_c00049{bottom:607.938667pt;}
.y7_c00049{bottom:641.280000pt;}
.y6_c00049{bottom:675.092000pt;}
.y5_c00049{bottom:709.640000pt;}
.y4_c00049{bottom:769.200000pt;}
.y3_c00049{bottom:797.520000pt;}
.y2_c00049{bottom:806.400000pt;}
.y1_c00049{bottom:825.030667pt;}
.h4_c00049{height:55.066667pt;}
.hd_c00049{height:56.000000pt;}
.h15_c00049{height:56.933333pt;}
.h19_c00049{height:56.935155pt;}
.h2_c00049{height:59.733333pt;}
.h14_c00049{height:60.666667pt;}
.h10_c00049{height:61.600000pt;}
.h13_c00049{height:62.533333pt;}
.hc_c00049{height:62.535866pt;}
.h17_c00049{height:63.466667pt;}
.ha_c00049{height:63.469237pt;}
.h1c_c00049{height:64.400000pt;}
.he_c00049{height:65.333333pt;}
.h18_c00049{height:65.335424pt;}
.hb_c00049{height:65.335979pt;}
.h11_c00049{height:66.266667pt;}
.h16_c00049{height:67.200000pt;}
.h1b_c00049{height:69.066667pt;}
.h1a_c00049{height:69.069464pt;}
.h12_c00049{height:70.933333pt;}
.hf_c00049{height:72.800000pt;}
.h7_c00049{height:79.333333pt;}
.h3_c00049{height:94.266667pt;}
.h9_c00049{height:97.066667pt;}
.h5_c00049{height:99.866667pt;}
.h8_c00049{height:105.466667pt;}
.h6_c00049{height:116.666667pt;}
.h0_c00049{height:896.400000pt;}
.h1_c00049{height:896.666667pt;}
.w0_c00049{width:621.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:83.760000pt;}
.x2_c00049{left:98.160000pt;}
.x3_c00049{left:132.240000pt;}
.x2e_c00049{left:153.120000pt;}
.x7a_c00049{left:155.280000pt;}
.x6f_c00049{left:156.242624pt;}
.x28_c00049{left:157.200000pt;}
.x4_c00049{left:158.160000pt;}
.x1a_c00049{left:159.839380pt;}
.xd_c00049{left:161.038667pt;}
.x59_c00049{left:175.200000pt;}
.x2f_c00049{left:178.560000pt;}
.x29_c00049{left:180.720000pt;}
.x21_c00049{left:181.680000pt;}
.x3a_c00049{left:182.880000pt;}
.x7b_c00049{left:184.800000pt;}
.x5e_c00049{left:191.040000pt;}
.xa_c00049{left:192.960000pt;}
.x44_c00049{left:194.640000pt;}
.x5a_c00049{left:196.080000pt;}
.x69_c00049{left:197.283477pt;}
.x32_c00049{left:198.240000pt;}
.x76_c00049{left:199.200000pt;}
.x3e_c00049{left:200.160000pt;}
.x22_c00049{left:202.800000pt;}
.x7_c00049{left:204.000000pt;}
.x6a_c00049{left:208.084171pt;}
.x4b_c00049{left:215.280000pt;}
.x33_c00049{left:219.360000pt;}
.xe_c00049{left:221.414667pt;}
.x3b_c00049{left:223.440000pt;}
.x2a_c00049{left:225.600000pt;}
.x3f_c00049{left:227.280000pt;}
.x1b_c00049{left:228.962317pt;}
.x77_c00049{left:230.160000pt;}
.x5_c00049{left:233.280000pt;}
.x63_c00049{left:238.714667pt;}
.x4c_c00049{left:244.080000pt;}
.x14_c00049{left:245.763969pt;}
.x5f_c00049{left:248.640000pt;}
.x51_c00049{left:252.720000pt;}
.x45_c00049{left:253.680000pt;}
.x34_c00049{left:256.320000pt;}
.x26_c00049{left:257.760000pt;}
.x40_c00049{left:259.440000pt;}
.x60_c00049{left:262.080000pt;}
.x1c_c00049{left:263.043744pt;}
.xf_c00049{left:266.050667pt;}
.x15_c00049{left:271.684736pt;}
.x72_c00049{left:275.214667pt;}
.x46_c00049{left:277.440000pt;}
.xc_c00049{left:278.640000pt;}
.x5b_c00049{left:279.600000pt;}
.x23_c00049{left:287.760000pt;}
.x3c_c00049{left:292.080000pt;}
.x30_c00049{left:294.240000pt;}
.x6b_c00049{left:295.447093pt;}
.x64_c00049{left:297.053333pt;}
.x41_c00049{left:298.560000pt;}
.x10_c00049{left:302.297333pt;}
.x47_c00049{left:304.560000pt;}
.x70_c00049{left:306.486901pt;}
.x55_c00049{left:308.160000pt;}
.x16_c00049{left:309.366451pt;}
.x35_c00049{left:310.800000pt;}
.x1d_c00049{left:312.485085pt;}
.x8_c00049{left:313.920000pt;}
.x4d_c00049{left:315.120000pt;}
.x73_c00049{left:317.217333pt;}
.x24_c00049{left:324.000000pt;}
.x6c_c00049{left:324.967648pt;}
.x17_c00049{left:326.646521pt;}
.x27_c00049{left:327.840000pt;}
.x2b_c00049{left:328.800000pt;}
.x42_c00049{left:335.760000pt;}
.x1e_c00049{left:342.006140pt;}
.x6d_c00049{left:344.168875pt;}
.xb_c00049{left:345.120000pt;}
.x56_c00049{left:346.320000pt;}
.x36_c00049{left:349.200000pt;}
.x11_c00049{left:351.493333pt;}
.x74_c00049{left:352.461333pt;}
.x48_c00049{left:354.240000pt;}
.x9_c00049{left:356.400000pt;}
.x78_c00049{left:357.360000pt;}
.x57_c00049{left:359.760000pt;}
.x4e_c00049{left:362.160000pt;}
.x18_c00049{left:364.088224pt;}
.x61_c00049{left:366.240000pt;}
.x5c_c00049{left:367.440000pt;}
.x52_c00049{left:370.320000pt;}
.x65_c00049{left:372.390667pt;}
.x79_c00049{left:373.440000pt;}
.x49_c00049{left:374.400000pt;}
.x3d_c00049{left:377.520000pt;}
.x4f_c00049{left:383.760000pt;}
.x25_c00049{left:384.960000pt;}
.x2c_c00049{left:386.880000pt;}
.x71_c00049{left:387.850773pt;}
.x12_c00049{left:390.880000pt;}
.x37_c00049{left:392.880000pt;}
.x1f_c00049{left:396.247865pt;}
.x31_c00049{left:397.200000pt;}
.x6_c00049{left:400.560000pt;}
.x5d_c00049{left:401.760000pt;}
.x2d_c00049{left:403.440000pt;}
.x62_c00049{left:404.400000pt;}
.x43_c00049{left:405.840000pt;}
.x20_c00049{left:410.168993pt;}
.x50_c00049{left:416.880000pt;}
.x75_c00049{left:418.256000pt;}
.x66_c00049{left:423.545333pt;}
.x38_c00049{left:425.040000pt;}
.x19_c00049{left:428.170741pt;}
.x13_c00049{left:430.941333pt;}
.x58_c00049{left:439.440000pt;}
.x67_c00049{left:445.352000pt;}
.x53_c00049{left:452.400000pt;}
.x39_c00049{left:458.400000pt;}
.x4a_c00049{left:460.560000pt;}
.x54_c00049{left:472.080000pt;}
.x6e_c00049{left:507.613995pt;}
.x68_c00049{left:566.124000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m7a_c00050{transform:matrix(0.011955,0.000335,-0.006997,0.249902,0,0);-ms-transform:matrix(0.011955,0.000335,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.011955,0.000335,-0.006997,0.249902,0,0);}
.m6a_c00050{transform:matrix(0.013633,0.000218,-0.003999,0.249968,0,0);-ms-transform:matrix(0.013633,0.000218,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.013633,0.000218,-0.003999,0.249968,0,0);}
.m59_c00050{transform:matrix(0.013839,0.000194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.013839,0.000194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.013839,0.000194,-0.003500,0.249976,0,0);}
.m9f_c00050{transform:matrix(0.014260,0.000371,-0.006498,0.249916,0,0);-ms-transform:matrix(0.014260,0.000371,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.014260,0.000371,-0.006498,0.249916,0,0);}
.m84_c00050{transform:matrix(0.014484,0.000188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.014484,0.000188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.014484,0.000188,-0.003250,0.249979,0,0);}
.mb7_c00050{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);}
.m2d_c00050{transform:matrix(0.060511,0.001029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.060511,0.001029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.060511,0.001029,-0.004249,0.249964,0,0);}
.m53_c00050{transform:matrix(0.093686,0.001312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.093686,0.001312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.093686,0.001312,-0.003500,0.249976,0,0);}
.m9_c00050{transform:matrix(0.110246,0.003752,-0.008504,0.249855,0,0);-ms-transform:matrix(0.110246,0.003752,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.110246,0.003752,-0.008504,0.249855,0,0);}
.ma9_c00050{transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);}
.m86_c00050{transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);}
.m9c_c00050{transform:matrix(0.150405,0.003459,-0.005748,0.249934,0,0);-ms-transform:matrix(0.150405,0.003459,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.150405,0.003459,-0.005748,0.249934,0,0);}
.m37_c00050{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);}
.m1_c00050{transform:matrix(0.155265,0.005284,-0.008504,0.249855,0,0);-ms-transform:matrix(0.155265,0.005284,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.155265,0.005284,-0.008504,0.249855,0,0);}
.m1b_c00050{transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{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);}
.m3a_c00050{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);}
.m41_c00050{transform:matrix(0.158377,0.002059,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158377,0.002059,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158377,0.002059,-0.003250,0.249979,0,0);}
.m21_c00050{transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);}
.m4e_c00050{transform:matrix(0.160409,0.002246,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160409,0.002246,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160409,0.002246,-0.003500,0.249976,0,0);}
.m42_c00050{transform:matrix(0.160746,0.002090,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160746,0.002090,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160746,0.002090,-0.003250,0.249979,0,0);}
.m81_c00050{transform:matrix(0.163271,0.002123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163271,0.002123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163271,0.002123,-0.003250,0.249979,0,0);}
.m24_c00050{transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);}
.m77_c00050{transform:matrix(0.164603,0.001481,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164603,0.001481,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164603,0.001481,-0.002250,0.249990,0,0);}
.mb5_c00050{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);}
.m68_c00050{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);}
.m5e_c00050{transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);}
.mb6_c00050{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);}
.mb_c00050{transform:matrix(0.167263,0.005693,-0.008504,0.249855,0,0);-ms-transform:matrix(0.167263,0.005693,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.167263,0.005693,-0.008504,0.249855,0,0);}
.m9a_c00050{transform:matrix(0.168425,0.003874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168425,0.003874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168425,0.003874,-0.005748,0.249934,0,0);}
.ma5_c00050{transform:matrix(0.168453,-0.003032,0.004499,0.249960,0,0);-ms-transform:matrix(0.168453,-0.003032,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168453,-0.003032,0.004499,0.249960,0,0);}
.mb9_c00050{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);}
.m61_c00050{transform:matrix(0.171663,0.002403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171663,0.002403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171663,0.002403,-0.003500,0.249976,0,0);}
.m93_c00050{transform:matrix(0.172049,0.003957,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172049,0.003957,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172049,0.003957,-0.005748,0.249934,0,0);}
.m4a_c00050{transform:matrix(0.172783,0.002419,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172783,0.002419,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172783,0.002419,-0.003500,0.249976,0,0);}
.m8f_c00050{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);}
.m9b_c00050{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);}
.m8b_c00050{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);}
.m70_c00050{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);}
.m92_c00050{transform:matrix(0.175719,0.004042,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175719,0.004042,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175719,0.004042,-0.005748,0.249934,0,0);}
.m23_c00050{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);}
.m71_c00050{transform:matrix(0.176389,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176389,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176389,0.001940,-0.002750,0.249985,0,0);}
.m99_c00050{transform:matrix(0.178393,0.004103,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178393,0.004103,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178393,0.004103,-0.005748,0.249934,0,0);}
.m5d_c00050{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);}
.mb8_c00050{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);}
.m64_c00050{transform:matrix(0.179237,0.002868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179237,0.002868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179237,0.002868,-0.003999,0.249968,0,0);}
.ma0_c00050{transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);}
.m58_c00050{transform:matrix(0.182822,0.002560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182822,0.002560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182822,0.002560,-0.003500,0.249976,0,0);}
.m20_c00050{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);}
.m1c_c00050{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);}
.m4f_c00050{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);}
.m88_c00050{transform:matrix(0.185383,0.003708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185383,0.003708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185383,0.003708,-0.004999,0.249950,0,0);}
.m89_c00050{transform:matrix(0.185663,0.003713,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185663,0.003713,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185663,0.003713,-0.004999,0.249950,0,0);}
.m90_c00050{transform:matrix(0.185671,0.004270,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185671,0.004270,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185671,0.004270,-0.005748,0.249934,0,0);}
.m36_c00050{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);}
.m55_c00050{transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);}
.m18_c00050{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);}
.m87_c00050{transform:matrix(0.187148,0.003743,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187148,0.003743,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187148,0.003743,-0.004999,0.249950,0,0);}
.m32_c00050{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_c00050{transform:matrix(0.187601,0.006385,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187601,0.006385,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187601,0.006385,-0.008504,0.249855,0,0);}
.m11_c00050{transform:matrix(0.187836,0.006393,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187836,0.006393,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187836,0.006393,-0.008504,0.249855,0,0);}
.m31_c00050{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);}
.m75_c00050{transform:matrix(0.189987,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189987,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189987,0.001710,-0.002250,0.249990,0,0);}
.m4b_c00050{transform:matrix(0.190201,0.002663,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190201,0.002663,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190201,0.002663,-0.003500,0.249976,0,0);}
.m94_c00050{transform:matrix(0.191059,0.004394,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191059,0.004394,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191059,0.004394,-0.005748,0.249934,0,0);}
.m6c_c00050{transform:matrix(0.191088,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191088,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191088,0.002102,-0.002750,0.249985,0,0);}
.m5c_c00050{transform:matrix(0.191526,0.002681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191526,0.002681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191526,0.002681,-0.003500,0.249976,0,0);}
.m3_c00050{transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);}
.m33_c00050{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);}
.m9d_c00050{transform:matrix(0.192364,0.004424,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192364,0.004424,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192364,0.004424,-0.005748,0.249934,0,0);}
.m98_c00050{transform:matrix(0.192444,0.004426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192444,0.004426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192444,0.004426,-0.005748,0.249934,0,0);}
.m3b_c00050{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);}
.m56_c00050{transform:matrix(0.192611,0.002697,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192611,0.002697,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192611,0.002697,-0.003500,0.249976,0,0);}
.m6f_c00050{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);}
.m8a_c00050{transform:matrix(0.192886,0.003858,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192886,0.003858,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192886,0.003858,-0.004999,0.249950,0,0);}
.m44_c00050{transform:matrix(0.193094,0.002510,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193094,0.002510,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193094,0.002510,-0.003250,0.249979,0,0);}
.maa_c00050{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);}
.m48_c00050{transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);}
.m50_c00050{transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);}
.m9e_c00050{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);}
.m60_c00050{transform:matrix(0.194026,0.002716,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194026,0.002716,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194026,0.002716,-0.003500,0.249976,0,0);}
.m5b_c00050{transform:matrix(0.194166,0.002718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194166,0.002718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194166,0.002718,-0.003500,0.249976,0,0);}
.m51_c00050{transform:matrix(0.195136,0.002732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195136,0.002732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195136,0.002732,-0.003500,0.249976,0,0);}
.mac_c00050{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m30_c00050{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);}
.m95_c00050{transform:matrix(0.195518,0.004497,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195518,0.004497,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195518,0.004497,-0.005748,0.249934,0,0);}
.m6_c00050{transform:matrix(0.195932,0.006668,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195932,0.006668,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195932,0.006668,-0.008504,0.249855,0,0);}
.m39_c00050{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);}
.m4c_c00050{transform:matrix(0.196526,0.002751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196526,0.002751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196526,0.002751,-0.003500,0.249976,0,0);}
.m74_c00050{transform:matrix(0.196852,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196852,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196852,0.001772,-0.002250,0.249990,0,0);}
.m2e_c00050{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);}
.m6d_c00050{transform:matrix(0.196898,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196898,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196898,0.002166,-0.002750,0.249985,0,0);}
.mb0_c00050{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.197446,0.006720,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197446,0.006720,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197446,0.006720,-0.008504,0.249855,0,0);}
.m4d_c00050{transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);}
.m8_c00050{transform:matrix(0.197671,0.006728,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197671,0.006728,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197671,0.006728,-0.008504,0.249855,0,0);}
.m38_c00050{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);}
.m54_c00050{transform:matrix(0.198831,0.002784,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198831,0.002784,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198831,0.002784,-0.003500,0.249976,0,0);}
.m57_c00050{transform:matrix(0.199030,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199030,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199030,0.002786,-0.003500,0.249976,0,0);}
.ma8_c00050{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);}
.mad_c00050{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);}
.m5f_c00050{transform:matrix(0.200115,0.002802,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200115,0.002802,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200115,0.002802,-0.003500,0.249976,0,0);}
.m96_c00050{transform:matrix(0.200192,0.004604,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200192,0.004604,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200192,0.004604,-0.005748,0.249934,0,0);}
.m1e_c00050{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);}
.m22_c00050{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);}
.m67_c00050{transform:matrix(0.203849,0.003262,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203849,0.003262,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203849,0.003262,-0.003999,0.249968,0,0);}
.m62_c00050{transform:matrix(0.204809,0.003277,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204809,0.003277,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204809,0.003277,-0.003999,0.249968,0,0);}
.m8c_c00050{transform:matrix(0.206200,0.004743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206200,0.004743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206200,0.004743,-0.005748,0.249934,0,0);}
.md_c00050{transform:matrix(0.207025,0.007046,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207025,0.007046,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207025,0.007046,-0.008504,0.249855,0,0);}
.m52_c00050{transform:matrix(0.207720,0.002908,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207720,0.002908,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207720,0.002908,-0.003500,0.249976,0,0);}
.m17_c00050{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);}
.m6e_c00050{transform:matrix(0.209412,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209412,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209412,0.002304,-0.002750,0.249985,0,0);}
.m12_c00050{transform:matrix(0.210458,0.007163,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210458,0.007163,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210458,0.007163,-0.008504,0.249855,0,0);}
.m83_c00050{transform:matrix(0.211392,0.002748,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211392,0.002748,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211392,0.002748,-0.003250,0.249979,0,0);}
.m7_c00050{transform:matrix(0.212067,0.007218,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212067,0.007218,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212067,0.007218,-0.008504,0.249855,0,0);}
.m10_c00050{transform:matrix(0.212547,0.007234,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212547,0.007234,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212547,0.007234,-0.008504,0.249855,0,0);}
.m13_c00050{transform:matrix(0.214366,0.007296,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214366,0.007296,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214366,0.007296,-0.008504,0.249855,0,0);}
.me_c00050{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);}
.m8d_c00050{transform:matrix(0.215303,0.004952,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215303,0.004952,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215303,0.004952,-0.005748,0.249934,0,0);}
.m78_c00050{transform:matrix(0.216281,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216281,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216281,0.001947,-0.002250,0.249990,0,0);}
.m76_c00050{transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);}
.mb1_c00050{transform:matrix(0.218270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218270,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.220458,0.003086,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220458,0.003086,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220458,0.003086,-0.003500,0.249976,0,0);}
.m46_c00050{transform:matrix(0.221941,0.002885,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221941,0.002885,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221941,0.002885,-0.003250,0.249979,0,0);}
.m4_c00050{transform:matrix(0.222451,0.007571,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222451,0.007571,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222451,0.007571,-0.008504,0.249855,0,0);}
.m91_c00050{transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);}
.m7e_c00050{transform:matrix(0.223831,0.002910,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223831,0.002910,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223831,0.002910,-0.003250,0.249979,0,0);}
.m8e_c00050{transform:matrix(0.223951,0.005151,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223951,0.005151,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223951,0.005151,-0.005748,0.249934,0,0);}
.maf_c00050{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);}
.m1f_c00050{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);}
.m34_c00050{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m73_c00050{transform:matrix(0.225891,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225891,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225891,0.002033,-0.002250,0.249990,0,0);}
.ma4_c00050{transform:matrix(0.226788,-0.004082,0.004499,0.249960,0,0);-ms-transform:matrix(0.226788,-0.004082,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226788,-0.004082,0.004499,0.249960,0,0);}
.ma3_c00050{transform:matrix(0.227788,-0.004100,0.004499,0.249960,0,0);-ms-transform:matrix(0.227788,-0.004100,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227788,-0.004100,0.004499,0.249960,0,0);}
.m3c_c00050{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);}
.mb4_c00050{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);}
.mb2_c00050{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);}
.m72_c00050{transform:matrix(0.233361,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233361,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233361,0.002100,-0.002250,0.249990,0,0);}
.m66_c00050{transform:matrix(0.234765,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234765,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234765,0.003756,-0.003999,0.249968,0,0);}
.mbb_c00050{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);}
.m97_c00050{transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);}
.m6b_c00050{transform:matrix(0.236296,0.002599,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236296,0.002599,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236296,0.002599,-0.002750,0.249985,0,0);}
.m40_c00050{transform:matrix(0.236445,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236445,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236445,0.003074,-0.003250,0.249979,0,0);}
.m80_c00050{transform:matrix(0.240315,0.003124,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240315,0.003124,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240315,0.003124,-0.003250,0.249979,0,0);}
.m45_c00050{transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);}
.ma_c00050{transform:matrix(0.242295,0.008246,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242295,0.008246,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242295,0.008246,-0.008504,0.249855,0,0);}
.m7f_c00050{transform:matrix(0.243514,0.003166,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243514,0.003166,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243514,0.003166,-0.003250,0.249979,0,0);}
.m85_c00050{transform:matrix(0.249005,0.004980,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249005,0.004980,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249005,0.004980,-0.004999,0.249950,0,0);}
.m82_c00050{transform:matrix(0.249009,0.003237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249009,0.003237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249009,0.003237,-0.003250,0.249979,0,0);}
.m3f_c00050{transform:matrix(0.249939,0.003249,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249939,0.003249,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249939,0.003249,-0.003250,0.249979,0,0);}
.m29_c00050{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);}
.m63_c00050{transform:matrix(0.253663,0.004059,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253663,0.004059,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253663,0.004059,-0.003999,0.249968,0,0);}
.m16_c00050{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);}
.m3d_c00050{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{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);}
.m7d_c00050{transform:matrix(0.287786,0.003741,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287786,0.003741,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287786,0.003741,-0.003250,0.249979,0,0);}
.m2_c00050{transform:matrix(0.292711,0.009962,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292711,0.009962,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292711,0.009962,-0.008504,0.249855,0,0);}
.mae_c00050{transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293670,0.000000,0.000000,0.250000,0,0);}
.m5a_c00050{transform:matrix(0.296676,0.004153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296676,0.004153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296676,0.004153,-0.003500,0.249976,0,0);}
.mf_c00050{transform:matrix(0.308217,0.010490,-0.008504,0.249855,0,0);-ms-transform:matrix(0.308217,0.010490,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.308217,0.010490,-0.008504,0.249855,0,0);}
.m47_c00050{transform:matrix(0.312924,0.004068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.312924,0.004068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.312924,0.004068,-0.003250,0.249979,0,0);}
.m35_c00050{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);}
.m3e_c00050{transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);}
.m79_c00050{transform:matrix(0.324037,0.002916,-0.002250,0.249990,0,0);-ms-transform:matrix(0.324037,0.002916,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.324037,0.002916,-0.002250,0.249990,0,0);}
.m65_c00050{transform:matrix(0.340171,0.005443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.340171,0.005443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.340171,0.005443,-0.003999,0.249968,0,0);}
.mab_c00050{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);}
.ma7_c00050{transform:matrix(0.346070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346070,0.000000,0.000000,0.250000,0,0);}
.m28_c00050{transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350910,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.354635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354635,0.000000,0.000000,0.250000,0,0);}
.ma1_c00050{transform:matrix(0.359848,0.009356,-0.006498,0.249916,0,0);-ms-transform:matrix(0.359848,0.009356,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.359848,0.009356,-0.006498,0.249916,0,0);}
.m27_c00050{transform:matrix(0.362705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00050{transform:matrix(0.367935,-0.006623,0.004499,0.249960,0,0);-ms-transform:matrix(0.367935,-0.006623,0.004499,0.249960,0,0);-webkit-transform:matrix(0.367935,-0.006623,0.004499,0.249960,0,0);}
.m7c_c00050{transform:matrix(0.373913,0.004861,-0.003250,0.249979,0,0);-ms-transform:matrix(0.373913,0.004861,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.373913,0.004861,-0.003250,0.249979,0,0);}
.m2a_c00050{transform:matrix(0.386699,0.006574,-0.004249,0.249964,0,0);-ms-transform:matrix(0.386699,0.006574,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.386699,0.006574,-0.004249,0.249964,0,0);}
.m2b_c00050{transform:matrix(0.402257,0.006838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.402257,0.006838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.402257,0.006838,-0.004249,0.249964,0,0);}
.mbc_c00050{transform:matrix(0.405765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405765,0.000000,0.000000,0.250000,0,0);}
.m69_c00050{transform:matrix(0.408723,0.006540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.408723,0.006540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.408723,0.006540,-0.003999,0.249968,0,0);}
.m2c_c00050{transform:matrix(0.416655,0.007083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.416655,0.007083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.416655,0.007083,-0.004249,0.249964,0,0);}
.m7b_c00050{transform:matrix(0.418861,0.011728,-0.006997,0.249902,0,0);-ms-transform:matrix(0.418861,0.011728,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.418861,0.011728,-0.006997,0.249902,0,0);}
.m14_c00050{transform:matrix(0.435860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435860,0.000000,0.000000,0.250000,0,0);}
.ma2_c00050{transform:matrix(0.450118,0.011703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.450118,0.011703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.450118,0.011703,-0.006498,0.249916,0,0);}
.m1d_c00050{transform:matrix(0.484570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484570,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);}
.mba_c00050{transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.646750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00050{transform:matrix(0.832815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832815,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{transform:matrix(0.942140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942140,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(2.909600,0.099025,-0.008504,0.249855,0,0);-ms-transform:matrix(2.909600,0.099025,-0.008504,0.249855,0,0);-webkit-transform:matrix(2.909600,0.099025,-0.008504,0.249855,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;}
._0_c00050{width:26.731026px;}
.fc0_c00050{color:transparent;}
.fs16_c00050{font-size:22.050000px;}
.fs19_c00050{font-size:49.350000px;}
.fs1_c00050{font-size:50.378752px;}
.fs1c_c00050{font-size:50.400000px;}
.fs0_c00050{font-size:52.477867px;}
.fs1a_c00050{font-size:53.550000px;}
.fs17_c00050{font-size:59.870226px;}
.fs1b_c00050{font-size:65.100000px;}
.fs14_c00050{font-size:65.117217px;}
.fs11_c00050{font-size:67.205678px;}
.fs13_c00050{font-size:67.217772px;}
.fs9_c00050{font-size:68.250000px;}
.fs15_c00050{font-size:68.268050px;}
.fsc_c00050{font-size:69.308870px;}
.fs3_c00050{font-size:70.350000px;}
.fsf_c00050{font-size:70.352849px;}
.fse_c00050{font-size:70.354256px;}
.fsa_c00050{font-size:70.355944px;}
.fsb_c00050{font-size:70.356894px;}
.fs4_c00050{font-size:71.400000px;}
.fsd_c00050{font-size:71.409139px;}
.fs12_c00050{font-size:71.414279px;}
.fs10_c00050{font-size:71.427983px;}
.fs6_c00050{font-size:73.500000px;}
.fs5_c00050{font-size:75.600000px;}
.fs18_c00050{font-size:75.612246px;}
.fs8_c00050{font-size:81.911834px;}
.fs7_c00050{font-size:82.961985px;}
.fs2_c00050{font-size:88.200000px;}
.y0_c00050{bottom:0.000000px;}
.y93_c00050{bottom:126.764058px;}
.y92_c00050{bottom:127.749900px;}
.y91_c00050{bottom:129.565350px;}
.y90_c00050{bottom:129.949500px;}
.ya4_c00050{bottom:144.288000px;}
.ya3_c00050{bottom:145.041000px;}
.ya2_c00050{bottom:145.491000px;}
.ya1_c00050{bottom:149.547000px;}
.ya0_c00050{bottom:150.183000px;}
.y9f_c00050{bottom:150.613500px;}
.y9e_c00050{bottom:151.203000px;}
.ya6_c00050{bottom:160.237500px;}
.y9d_c00050{bottom:161.427000px;}
.y9c_c00050{bottom:161.883000px;}
.y9b_c00050{bottom:162.234000px;}
.y9a_c00050{bottom:162.867000px;}
.y99_c00050{bottom:166.861500px;}
.y14_c00050{bottom:169.165528px;}
.y13_c00050{bottom:170.096184px;}
.y12_c00050{bottom:171.533753px;}
.y11_c00050{bottom:171.818451px;}
.y10_c00050{bottom:171.835631px;}
.yf_c00050{bottom:172.962906px;}
.ye_c00050{bottom:173.363573px;}
.yd_c00050{bottom:174.165447px;}
.yc_c00050{bottom:174.441954px;}
.y98_c00050{bottom:183.829500px;}
.yb_c00050{bottom:186.906098px;}
.ya_c00050{bottom:187.078116px;}
.y9_c00050{bottom:187.990560px;}
.y8_c00050{bottom:188.346810px;}
.y7_c00050{bottom:189.083583px;}
.y6_c00050{bottom:189.458127px;}
.y5_c00050{bottom:190.100723px;}
.y4_c00050{bottom:190.749380px;}
.y2_c00050{bottom:191.169920px;}
.y3_c00050{bottom:191.179787px;}
.ya5_c00050{bottom:197.229000px;}
.y8f_c00050{bottom:203.176500px;}
.y1_c00050{bottom:208.171500px;}
.y8e_c00050{bottom:211.564758px;}
.y8d_c00050{bottom:212.133801px;}
.y8c_c00050{bottom:213.352927px;}
.y8b_c00050{bottom:214.912500px;}
.y8a_c00050{bottom:215.551682px;}
.y89_c00050{bottom:217.086000px;}
.y88_c00050{bottom:232.124418px;}
.y87_c00050{bottom:233.851039px;}
.y86_c00050{bottom:234.685249px;}
.y85_c00050{bottom:235.820092px;}
.y84_c00050{bottom:236.864097px;}
.y83_c00050{bottom:237.793768px;}
.y82_c00050{bottom:239.499000px;}
.y81_c00050{bottom:257.546499px;}
.y80_c00050{bottom:258.690415px;}
.y7f_c00050{bottom:259.194736px;}
.y7e_c00050{bottom:261.167861px;}
.y7d_c00050{bottom:262.447500px;}
.y7c_c00050{bottom:280.404990px;}
.y7b_c00050{bottom:281.219040px;}
.y7a_c00050{bottom:281.690250px;}
.y79_c00050{bottom:282.689820px;}
.y78_c00050{bottom:283.184580px;}
.y77_c00050{bottom:283.677930px;}
.y76_c00050{bottom:284.857500px;}
.y75_c00050{bottom:301.182284px;}
.y74_c00050{bottom:302.201685px;}
.y73_c00050{bottom:302.840408px;}
.y72_c00050{bottom:303.110756px;}
.y71_c00050{bottom:303.338925px;}
.y70_c00050{bottom:304.090085px;}
.y6f_c00050{bottom:305.253026px;}
.y6e_c00050{bottom:305.754449px;}
.y6d_c00050{bottom:306.183000px;}
.y6c_c00050{bottom:327.606702px;}
.y6b_c00050{bottom:329.130000px;}
.y6a_c00050{bottom:346.833442px;}
.y69_c00050{bottom:347.382245px;}
.y68_c00050{bottom:347.705137px;}
.y67_c00050{bottom:348.174438px;}
.y66_c00050{bottom:348.550791px;}
.y65_c00050{bottom:349.447934px;}
.y64_c00050{bottom:349.787742px;}
.y63_c00050{bottom:350.191500px;}
.y62_c00050{bottom:370.061169px;}
.y61_c00050{bottom:370.577685px;}
.y60_c00050{bottom:371.204388px;}
.y5f_c00050{bottom:371.652924px;}
.y5e_c00050{bottom:372.909680px;}
.y5d_c00050{bottom:373.369766px;}
.y5c_c00050{bottom:373.681500px;}
.y5b_c00050{bottom:393.797220px;}
.y5a_c00050{bottom:393.797700px;}
.y59_c00050{bottom:416.454072px;}
.y58_c00050{bottom:416.816976px;}
.y57_c00050{bottom:418.091424px;}
.y56_c00050{bottom:418.471680px;}
.y55_c00050{bottom:419.158824px;}
.y54_c00050{bottom:419.704104px;}
.y53_c00050{bottom:420.684000px;}
.y52_c00050{bottom:438.292683px;}
.y51_c00050{bottom:438.722763px;}
.y50_c00050{bottom:439.619589px;}
.y4f_c00050{bottom:440.020227px;}
.y4e_c00050{bottom:440.523030px;}
.y4d_c00050{bottom:441.067623px;}
.y4c_c00050{bottom:442.200657px;}
.y4b_c00050{bottom:442.803798px;}
.y4a_c00050{bottom:460.760076px;}
.y49_c00050{bottom:461.853351px;}
.y48_c00050{bottom:462.073134px;}
.y47_c00050{bottom:462.966414px;}
.y46_c00050{bottom:463.184043px;}
.y45_c00050{bottom:464.166723px;}
.y44_c00050{bottom:464.323677px;}
.y43_c00050{bottom:464.939544px;}
.y42_c00050{bottom:483.633363px;}
.y41_c00050{bottom:484.090806px;}
.y40_c00050{bottom:484.874190px;}
.y3f_c00050{bottom:485.244966px;}
.y3e_c00050{bottom:485.789328px;}
.y3d_c00050{bottom:486.211701px;}
.y3c_c00050{bottom:486.749511px;}
.y3b_c00050{bottom:487.069782px;}
.y3a_c00050{bottom:487.712382px;}
.y39_c00050{bottom:488.163000px;}
.y38_c00050{bottom:505.903845px;}
.y37_c00050{bottom:506.689832px;}
.y36_c00050{bottom:506.942435px;}
.y35_c00050{bottom:508.017821px;}
.y34_c00050{bottom:508.245502px;}
.y33_c00050{bottom:508.901444px;}
.y32_c00050{bottom:509.323073px;}
.y31_c00050{bottom:510.048901px;}
.y30_c00050{bottom:510.843000px;}
.y2f_c00050{bottom:528.603000px;}
.y2e_c00050{bottom:530.055000px;}
.y2d_c00050{bottom:530.566500px;}
.y2c_c00050{bottom:530.880000px;}
.y2b_c00050{bottom:531.262500px;}
.y2a_c00050{bottom:531.555000px;}
.y29_c00050{bottom:531.969000px;}
.y28_c00050{bottom:532.209000px;}
.y27_c00050{bottom:532.981500px;}
.y26_c00050{bottom:553.566000px;}
.y94_c00050{bottom:592.114500px;}
.y95_c00050{bottom:592.629390px;}
.y96_c00050{bottom:593.343783px;}
.y97_c00050{bottom:594.135828px;}
.y25_c00050{bottom:618.822000px;}
.y23_c00050{bottom:651.440541px;}
.y24_c00050{bottom:651.441017px;}
.y22_c00050{bottom:676.465708px;}
.y21_c00050{bottom:678.454351px;}
.y20_c00050{bottom:680.442000px;}
.y1f_c00050{bottom:711.471000px;}
.y1e_c00050{bottom:762.651000px;}
.y1d_c00050{bottom:762.972000px;}
.y1c_c00050{bottom:763.305000px;}
.y1b_c00050{bottom:763.696500px;}
.y1a_c00050{bottom:763.945500px;}
.y19_c00050{bottom:764.823000px;}
.y18_c00050{bottom:766.261500px;}
.y17_c00050{bottom:787.378500px;}
.y16_c00050{bottom:810.421500px;}
.y15_c00050{bottom:850.459500px;}
.h18_c00050{height:22.050000px;}
.h1b_c00050{height:49.350000px;}
.h3_c00050{height:50.378752px;}
.h1e_c00050{height:50.400000px;}
.h2_c00050{height:52.477867px;}
.h1c_c00050{height:53.550000px;}
.h19_c00050{height:59.870226px;}
.h1d_c00050{height:65.100000px;}
.h16_c00050{height:65.117217px;}
.h13_c00050{height:67.205678px;}
.h15_c00050{height:67.217772px;}
.hb_c00050{height:68.250000px;}
.h17_c00050{height:68.268050px;}
.he_c00050{height:69.308870px;}
.h5_c00050{height:70.350000px;}
.h11_c00050{height:70.352849px;}
.h10_c00050{height:70.354256px;}
.hc_c00050{height:70.355944px;}
.hd_c00050{height:70.356894px;}
.h6_c00050{height:71.400000px;}
.hf_c00050{height:71.409139px;}
.h14_c00050{height:71.414279px;}
.h12_c00050{height:71.427983px;}
.h8_c00050{height:73.500000px;}
.h7_c00050{height:75.600000px;}
.h1a_c00050{height:75.612246px;}
.ha_c00050{height:81.911834px;}
.h9_c00050{height:82.961985px;}
.h4_c00050{height:88.200000px;}
.h1_c00050{height:1005.000000px;}
.h0_c00050{height:1005.150000px;}
.w0_c00050{width:732.750000px;}
.x0_c00050{left:0.000000px;}
.x77_c00050{left:44.710500px;}
.x7c_c00050{left:53.526000px;}
.x7d_c00050{left:84.544500px;}
.xb_c00050{left:91.084944px;}
.x1_c00050{left:96.073500px;}
.xc_c00050{left:100.972589px;}
.x2_c00050{left:104.343258px;}
.x7e_c00050{left:107.170500px;}
.x6c_c00050{left:117.228000px;}
.x6a_c00050{left:118.515000px;}
.x3_c00050{left:123.399942px;}
.x5d_c00050{left:124.792500px;}
.x64_c00050{left:127.951500px;}
.xd_c00050{left:129.602801px;}
.x2d_c00050{left:131.598000px;}
.x1b_c00050{left:132.934500px;}
.x15_c00050{left:137.160000px;}
.x7f_c00050{left:140.649000px;}
.x47_c00050{left:142.026459px;}
.xe_c00050{left:143.887911px;}
.x4_c00050{left:152.861999px;}
.x26_c00050{left:155.185500px;}
.x51_c00050{left:157.530000px;}
.x3a_c00050{left:162.153000px;}
.x55_c00050{left:173.796000px;}
.x16_c00050{left:177.120000px;}
.x5_c00050{left:182.013712px;}
.xf_c00050{left:184.106871px;}
.x43_c00050{left:185.987793px;}
.x2e_c00050{left:190.981500px;}
.x10_c00050{left:194.916297px;}
.x5e_c00050{left:196.329000px;}
.x65_c00050{left:197.968500px;}
.x6_c00050{left:199.013639px;}
.x44_c00050{left:200.199381px;}
.x6d_c00050{left:201.828000px;}
.x63_c00050{left:206.938500px;}
.x3b_c00050{left:208.053000px;}
.x2f_c00050{left:209.398500px;}
.x56_c00050{left:211.552500px;}
.x29_c00050{left:213.840000px;}
.x5c_c00050{left:216.532500px;}
.x17_c00050{left:223.290000px;}
.x4d_c00050{left:224.442000px;}
.x3c_c00050{left:230.929500px;}
.x7_c00050{left:232.475325px;}
.x22_c00050{left:237.060000px;}
.x66_c00050{left:238.389000px;}
.x6e_c00050{left:239.745000px;}
.x30_c00050{left:241.194000px;}
.x11_c00050{left:246.191936px;}
.x8_c00050{left:248.673248px;}
.x1c_c00050{left:252.826500px;}
.x31_c00050{left:263.667000px;}
.x48_c00050{left:266.038959px;}
.x2a_c00050{left:267.300000px;}
.x3d_c00050{left:269.344500px;}
.x28_c00050{left:271.080000px;}
.x23_c00050{left:272.700000px;}
.x1a_c00050{left:275.130000px;}
.x12_c00050{left:279.399485px;}
.x50_c00050{left:281.089824px;}
.x67_c00050{left:283.780500px;}
.x27_c00050{left:286.757631px;}
.x9_c00050{left:290.117711px;}
.x4e_c00050{left:291.154500px;}
.x32_c00050{left:293.035500px;}
.xa_c00050{left:297.949088px;}
.x3e_c00050{left:299.514000px;}
.x49_c00050{left:304.938459px;}
.x45_c00050{left:309.297459px;}
.x57_c00050{left:311.235000px;}
.x52_c00050{left:313.606500px;}
.x33_c00050{left:317.124000px;}
.x2b_c00050{left:320.760000px;}
.x6f_c00050{left:321.867000px;}
.x1d_c00050{left:325.995000px;}
.x36_c00050{left:329.200500px;}
.x18_c00050{left:331.290000px;}
.x68_c00050{left:333.121500px;}
.x3f_c00050{left:338.397000px;}
.x4a_c00050{left:340.852959px;}
.x5f_c00050{left:343.567500px;}
.x1e_c00050{left:346.776000px;}
.x70_c00050{left:350.472000px;}
.x78_c00050{left:351.954000px;}
.x58_c00050{left:353.052000px;}
.x53_c00050{left:354.382500px;}
.x34_c00050{left:356.506500px;}
.x6b_c00050{left:358.569000px;}
.x60_c00050{left:361.119000px;}
.x24_c00050{left:363.150000px;}
.x40_c00050{left:364.881000px;}
.x71_c00050{left:367.200000px;}
.x4b_c00050{left:369.469959px;}
.x19_c00050{left:371.250000px;}
.x80_c00050{left:377.833500px;}
.x1f_c00050{left:379.447500px;}
.x61_c00050{left:381.915000px;}
.x13_c00050{left:389.610000px;}
.x4f_c00050{left:393.489000px;}
.x79_c00050{left:400.599000px;}
.x25_c00050{left:402.030000px;}
.x59_c00050{left:405.196500px;}
.x20_c00050{left:407.256000px;}
.x72_c00050{left:409.050000px;}
.x46_c00050{left:410.556222px;}
.x2c_c00050{left:413.370000px;}
.x81_c00050{left:417.483000px;}
.x73_c00050{left:418.770000px;}
.x41_c00050{left:420.837000px;}
.x7a_c00050{left:427.552500px;}
.x37_c00050{left:429.436500px;}
.x62_c00050{left:431.047500px;}
.x21_c00050{left:433.998000px;}
.x5a_c00050{left:441.073500px;}
.x69_c00050{left:444.462000px;}
.x38_c00050{left:448.867500px;}
.x42_c00050{left:453.511500px;}
.x54_c00050{left:458.311500px;}
.x7b_c00050{left:462.664500px;}
.x4c_c00050{left:464.248959px;}
.x14_c00050{left:465.750000px;}
.x35_c00050{left:468.211500px;}
.x74_c00050{left:473.580000px;}
.x75_c00050{left:487.890000px;}
.x5b_c00050{left:502.051500px;}
.x39_c00050{left:509.328000px;}
.x76_c00050{left:530.550000px;}
.x83_c00050{left:534.870000px;}
.x82_c00050{left:538.650000px;}
.x84_c00050{left:576.180000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._0_c00050{width:23.760912pt;}
.fs16_c00050{font-size:19.600000pt;}
.fs19_c00050{font-size:43.866667pt;}
.fs1_c00050{font-size:44.781113pt;}
.fs1c_c00050{font-size:44.800000pt;}
.fs0_c00050{font-size:46.646993pt;}
.fs1a_c00050{font-size:47.600000pt;}
.fs17_c00050{font-size:53.217979pt;}
.fs1b_c00050{font-size:57.866667pt;}
.fs14_c00050{font-size:57.881970pt;}
.fs11_c00050{font-size:59.738381pt;}
.fs13_c00050{font-size:59.749131pt;}
.fs9_c00050{font-size:60.666667pt;}
.fs15_c00050{font-size:60.682711pt;}
.fsc_c00050{font-size:61.607884pt;}
.fs3_c00050{font-size:62.533333pt;}
.fsf_c00050{font-size:62.535866pt;}
.fse_c00050{font-size:62.537116pt;}
.fsa_c00050{font-size:62.538617pt;}
.fsb_c00050{font-size:62.539461pt;}
.fs4_c00050{font-size:63.466667pt;}
.fsd_c00050{font-size:63.474790pt;}
.fs12_c00050{font-size:63.479359pt;}
.fs10_c00050{font-size:63.491541pt;}
.fs6_c00050{font-size:65.333333pt;}
.fs5_c00050{font-size:67.200000pt;}
.fs18_c00050{font-size:67.210886pt;}
.fs8_c00050{font-size:72.810519pt;}
.fs7_c00050{font-size:73.743987pt;}
.fs2_c00050{font-size:78.400000pt;}
.y0_c00050{bottom:0.000000pt;}
.y93_c00050{bottom:112.679163pt;}
.y92_c00050{bottom:113.555467pt;}
.y91_c00050{bottom:115.169200pt;}
.y90_c00050{bottom:115.510667pt;}
.ya4_c00050{bottom:128.256000pt;}
.ya3_c00050{bottom:128.925333pt;}
.ya2_c00050{bottom:129.325333pt;}
.ya1_c00050{bottom:132.930667pt;}
.ya0_c00050{bottom:133.496000pt;}
.y9f_c00050{bottom:133.878667pt;}
.y9e_c00050{bottom:134.402667pt;}
.ya6_c00050{bottom:142.433333pt;}
.y9d_c00050{bottom:143.490667pt;}
.y9c_c00050{bottom:143.896000pt;}
.y9b_c00050{bottom:144.208000pt;}
.y9a_c00050{bottom:144.770667pt;}
.y99_c00050{bottom:148.321333pt;}
.y14_c00050{bottom:150.369359pt;}
.y13_c00050{bottom:151.196608pt;}
.y12_c00050{bottom:152.474447pt;}
.y11_c00050{bottom:152.727512pt;}
.y10_c00050{bottom:152.742783pt;}
.yf_c00050{bottom:153.744805pt;}
.ye_c00050{bottom:154.100953pt;}
.yd_c00050{bottom:154.813731pt;}
.yc_c00050{bottom:155.059515pt;}
.y98_c00050{bottom:163.404000pt;}
.yb_c00050{bottom:166.138753pt;}
.ya_c00050{bottom:166.291659pt;}
.y9_c00050{bottom:167.102720pt;}
.y8_c00050{bottom:167.419387pt;}
.y7_c00050{bottom:168.074296pt;}
.y6_c00050{bottom:168.407224pt;}
.y5_c00050{bottom:168.978420pt;}
.y4_c00050{bottom:169.555004pt;}
.y2_c00050{bottom:169.928817pt;}
.y3_c00050{bottom:169.937588pt;}
.ya5_c00050{bottom:175.314667pt;}
.y8f_c00050{bottom:180.601333pt;}
.y1_c00050{bottom:185.041333pt;}
.y8e_c00050{bottom:188.057563pt;}
.y8d_c00050{bottom:188.563379pt;}
.y8c_c00050{bottom:189.647047pt;}
.y8b_c00050{bottom:191.033333pt;}
.y8a_c00050{bottom:191.601495pt;}
.y89_c00050{bottom:192.965333pt;}
.y88_c00050{bottom:206.332816pt;}
.y87_c00050{bottom:207.867591pt;}
.y86_c00050{bottom:208.609111pt;}
.y85_c00050{bottom:209.617860pt;}
.y84_c00050{bottom:210.545864pt;}
.y83_c00050{bottom:211.372239pt;}
.y82_c00050{bottom:212.888000pt;}
.y81_c00050{bottom:228.930221pt;}
.y80_c00050{bottom:229.947036pt;}
.y7f_c00050{bottom:230.395321pt;}
.y7e_c00050{bottom:232.149209pt;}
.y7d_c00050{bottom:233.286667pt;}
.y7c_c00050{bottom:249.248880pt;}
.y7b_c00050{bottom:249.972480pt;}
.y7a_c00050{bottom:250.391333pt;}
.y79_c00050{bottom:251.279840pt;}
.y78_c00050{bottom:251.719627pt;}
.y77_c00050{bottom:252.158160pt;}
.y76_c00050{bottom:253.206667pt;}
.y75_c00050{bottom:267.717585pt;}
.y74_c00050{bottom:268.623720pt;}
.y73_c00050{bottom:269.191473pt;}
.y72_c00050{bottom:269.431783pt;}
.y71_c00050{bottom:269.634600pt;}
.y70_c00050{bottom:270.302297pt;}
.y6f_c00050{bottom:271.336023pt;}
.y6e_c00050{bottom:271.781732pt;}
.y6d_c00050{bottom:272.162667pt;}
.y6c_c00050{bottom:291.205957pt;}
.y6b_c00050{bottom:292.560000pt;}
.y6a_c00050{bottom:308.296393pt;}
.y69_c00050{bottom:308.784217pt;}
.y68_c00050{bottom:309.071233pt;}
.y67_c00050{bottom:309.488389pt;}
.y66_c00050{bottom:309.822925pt;}
.y65_c00050{bottom:310.620385pt;}
.y64_c00050{bottom:310.922437pt;}
.y63_c00050{bottom:311.281333pt;}
.y62_c00050{bottom:328.943261pt;}
.y61_c00050{bottom:329.402387pt;}
.y60_c00050{bottom:329.959456pt;}
.y5f_c00050{bottom:330.358155pt;}
.y5e_c00050{bottom:331.475271pt;}
.y5d_c00050{bottom:331.884236pt;}
.y5c_c00050{bottom:332.161333pt;}
.y5b_c00050{bottom:350.041973pt;}
.y5a_c00050{bottom:350.042400pt;}
.y59_c00050{bottom:370.181397pt;}
.y58_c00050{bottom:370.503979pt;}
.y57_c00050{bottom:371.636821pt;}
.y56_c00050{bottom:371.974827pt;}
.y55_c00050{bottom:372.585621pt;}
.y54_c00050{bottom:373.070315pt;}
.y53_c00050{bottom:373.941333pt;}
.y52_c00050{bottom:389.593496pt;}
.y51_c00050{bottom:389.975789pt;}
.y50_c00050{bottom:390.772968pt;}
.y4f_c00050{bottom:391.129091pt;}
.y4e_c00050{bottom:391.576027pt;}
.y4d_c00050{bottom:392.060109pt;}
.y4c_c00050{bottom:393.067251pt;}
.y4b_c00050{bottom:393.603376pt;}
.y4a_c00050{bottom:409.564512pt;}
.y49_c00050{bottom:410.536312pt;}
.y48_c00050{bottom:410.731675pt;}
.y47_c00050{bottom:411.525701pt;}
.y46_c00050{bottom:411.719149pt;}
.y45_c00050{bottom:412.592643pt;}
.y44_c00050{bottom:412.732157pt;}
.y43_c00050{bottom:413.279595pt;}
.y42_c00050{bottom:429.896323pt;}
.y41_c00050{bottom:430.302939pt;}
.y40_c00050{bottom:430.999280pt;}
.y3f_c00050{bottom:431.328859pt;}
.y3e_c00050{bottom:431.812736pt;}
.y3d_c00050{bottom:432.188179pt;}
.y3c_c00050{bottom:432.666232pt;}
.y3b_c00050{bottom:432.950917pt;}
.y3a_c00050{bottom:433.522117pt;}
.y39_c00050{bottom:433.922667pt;}
.y38_c00050{bottom:449.692307pt;}
.y37_c00050{bottom:450.390961pt;}
.y36_c00050{bottom:450.615497pt;}
.y35_c00050{bottom:451.571396pt;}
.y34_c00050{bottom:451.773780pt;}
.y33_c00050{bottom:452.356839pt;}
.y32_c00050{bottom:452.731620pt;}
.y31_c00050{bottom:453.376801pt;}
.y30_c00050{bottom:454.082667pt;}
.y2f_c00050{bottom:469.869333pt;}
.y2e_c00050{bottom:471.160000pt;}
.y2d_c00050{bottom:471.614667pt;}
.y2c_c00050{bottom:471.893333pt;}
.y2b_c00050{bottom:472.233333pt;}
.y2a_c00050{bottom:472.493333pt;}
.y29_c00050{bottom:472.861333pt;}
.y28_c00050{bottom:473.074667pt;}
.y27_c00050{bottom:473.761333pt;}
.y26_c00050{bottom:492.058667pt;}
.y94_c00050{bottom:526.324000pt;}
.y95_c00050{bottom:526.781680pt;}
.y96_c00050{bottom:527.416696pt;}
.y97_c00050{bottom:528.120736pt;}
.y25_c00050{bottom:550.064000pt;}
.y23_c00050{bottom:579.058259pt;}
.y24_c00050{bottom:579.058681pt;}
.y22_c00050{bottom:601.302852pt;}
.y21_c00050{bottom:603.070535pt;}
.y20_c00050{bottom:604.837333pt;}
.y1f_c00050{bottom:632.418667pt;}
.y1e_c00050{bottom:677.912000pt;}
.y1d_c00050{bottom:678.197333pt;}
.y1c_c00050{bottom:678.493333pt;}
.y1b_c00050{bottom:678.841333pt;}
.y1a_c00050{bottom:679.062667pt;}
.y19_c00050{bottom:679.842667pt;}
.y18_c00050{bottom:681.121333pt;}
.y17_c00050{bottom:699.892000pt;}
.y16_c00050{bottom:720.374667pt;}
.y15_c00050{bottom:755.964000pt;}
.h18_c00050{height:19.600000pt;}
.h1b_c00050{height:43.866667pt;}
.h3_c00050{height:44.781113pt;}
.h1e_c00050{height:44.800000pt;}
.h2_c00050{height:46.646993pt;}
.h1c_c00050{height:47.600000pt;}
.h19_c00050{height:53.217979pt;}
.h1d_c00050{height:57.866667pt;}
.h16_c00050{height:57.881970pt;}
.h13_c00050{height:59.738381pt;}
.h15_c00050{height:59.749131pt;}
.hb_c00050{height:60.666667pt;}
.h17_c00050{height:60.682711pt;}
.he_c00050{height:61.607884pt;}
.h5_c00050{height:62.533333pt;}
.h11_c00050{height:62.535866pt;}
.h10_c00050{height:62.537116pt;}
.hc_c00050{height:62.538617pt;}
.hd_c00050{height:62.539461pt;}
.h6_c00050{height:63.466667pt;}
.hf_c00050{height:63.474790pt;}
.h14_c00050{height:63.479359pt;}
.h12_c00050{height:63.491541pt;}
.h8_c00050{height:65.333333pt;}
.h7_c00050{height:67.200000pt;}
.h1a_c00050{height:67.210886pt;}
.ha_c00050{height:72.810519pt;}
.h9_c00050{height:73.743987pt;}
.h4_c00050{height:78.400000pt;}
.h1_c00050{height:893.333333pt;}
.h0_c00050{height:893.466667pt;}
.w0_c00050{width:651.333333pt;}
.x0_c00050{left:0.000000pt;}
.x77_c00050{left:39.742667pt;}
.x7c_c00050{left:47.578667pt;}
.x7d_c00050{left:75.150667pt;}
.xb_c00050{left:80.964395pt;}
.x1_c00050{left:85.398667pt;}
.xc_c00050{left:89.753412pt;}
.x2_c00050{left:92.749563pt;}
.x7e_c00050{left:95.262667pt;}
.x6c_c00050{left:104.202667pt;}
.x6a_c00050{left:105.346667pt;}
.x3_c00050{left:109.688837pt;}
.x5d_c00050{left:110.926667pt;}
.x64_c00050{left:113.734667pt;}
.xd_c00050{left:115.202489pt;}
.x2d_c00050{left:116.976000pt;}
.x1b_c00050{left:118.164000pt;}
.x15_c00050{left:121.920000pt;}
.x7f_c00050{left:125.021333pt;}
.x47_c00050{left:126.245741pt;}
.xe_c00050{left:127.900365pt;}
.x4_c00050{left:135.877332pt;}
.x26_c00050{left:137.942667pt;}
.x51_c00050{left:140.026667pt;}
.x3a_c00050{left:144.136000pt;}
.x55_c00050{left:154.485333pt;}
.x16_c00050{left:157.440000pt;}
.x5_c00050{left:161.789967pt;}
.xf_c00050{left:163.650552pt;}
.x43_c00050{left:165.322483pt;}
.x2e_c00050{left:169.761333pt;}
.x10_c00050{left:173.258931pt;}
.x5e_c00050{left:174.514667pt;}
.x65_c00050{left:175.972000pt;}
.x6_c00050{left:176.901012pt;}
.x44_c00050{left:177.955005pt;}
.x6d_c00050{left:179.402667pt;}
.x63_c00050{left:183.945333pt;}
.x3b_c00050{left:184.936000pt;}
.x2f_c00050{left:186.132000pt;}
.x56_c00050{left:188.046667pt;}
.x29_c00050{left:190.080000pt;}
.x5c_c00050{left:192.473333pt;}
.x17_c00050{left:198.480000pt;}
.x4d_c00050{left:199.504000pt;}
.x3c_c00050{left:205.270667pt;}
.x7_c00050{left:206.644733pt;}
.x22_c00050{left:210.720000pt;}
.x66_c00050{left:211.901333pt;}
.x6e_c00050{left:213.106667pt;}
.x30_c00050{left:214.394667pt;}
.x11_c00050{left:218.837276pt;}
.x8_c00050{left:221.042887pt;}
.x1c_c00050{left:224.734667pt;}
.x31_c00050{left:234.370667pt;}
.x48_c00050{left:236.479075pt;}
.x2a_c00050{left:237.600000pt;}
.x3d_c00050{left:239.417333pt;}
.x28_c00050{left:240.960000pt;}
.x23_c00050{left:242.400000pt;}
.x1a_c00050{left:244.560000pt;}
.x12_c00050{left:248.355097pt;}
.x50_c00050{left:249.857621pt;}
.x67_c00050{left:252.249333pt;}
.x27_c00050{left:254.895672pt;}
.x9_c00050{left:257.882409pt;}
.x4e_c00050{left:258.804000pt;}
.x32_c00050{left:260.476000pt;}
.xa_c00050{left:264.843633pt;}
.x3e_c00050{left:266.234667pt;}
.x49_c00050{left:271.056408pt;}
.x45_c00050{left:274.931075pt;}
.x57_c00050{left:276.653333pt;}
.x52_c00050{left:278.761333pt;}
.x33_c00050{left:281.888000pt;}
.x2b_c00050{left:285.120000pt;}
.x6f_c00050{left:286.104000pt;}
.x1d_c00050{left:289.773333pt;}
.x36_c00050{left:292.622667pt;}
.x18_c00050{left:294.480000pt;}
.x68_c00050{left:296.108000pt;}
.x3f_c00050{left:300.797333pt;}
.x4a_c00050{left:302.980408pt;}
.x5f_c00050{left:305.393333pt;}
.x1e_c00050{left:308.245333pt;}
.x70_c00050{left:311.530667pt;}
.x78_c00050{left:312.848000pt;}
.x58_c00050{left:313.824000pt;}
.x53_c00050{left:315.006667pt;}
.x34_c00050{left:316.894667pt;}
.x6b_c00050{left:318.728000pt;}
.x60_c00050{left:320.994667pt;}
.x24_c00050{left:322.800000pt;}
.x40_c00050{left:324.338667pt;}
.x71_c00050{left:326.400000pt;}
.x4b_c00050{left:328.417741pt;}
.x19_c00050{left:330.000000pt;}
.x80_c00050{left:335.852000pt;}
.x1f_c00050{left:337.286667pt;}
.x61_c00050{left:339.480000pt;}
.x13_c00050{left:346.320000pt;}
.x4f_c00050{left:349.768000pt;}
.x79_c00050{left:356.088000pt;}
.x25_c00050{left:357.360000pt;}
.x59_c00050{left:360.174667pt;}
.x20_c00050{left:362.005333pt;}
.x72_c00050{left:363.600000pt;}
.x46_c00050{left:364.938864pt;}
.x2c_c00050{left:367.440000pt;}
.x81_c00050{left:371.096000pt;}
.x73_c00050{left:372.240000pt;}
.x41_c00050{left:374.077333pt;}
.x7a_c00050{left:380.046667pt;}
.x37_c00050{left:381.721333pt;}
.x62_c00050{left:383.153333pt;}
.x21_c00050{left:385.776000pt;}
.x5a_c00050{left:392.065333pt;}
.x69_c00050{left:395.077333pt;}
.x38_c00050{left:398.993333pt;}
.x42_c00050{left:403.121333pt;}
.x54_c00050{left:407.388000pt;}
.x7b_c00050{left:411.257333pt;}
.x4c_c00050{left:412.665741pt;}
.x14_c00050{left:414.000000pt;}
.x35_c00050{left:416.188000pt;}
.x74_c00050{left:420.960000pt;}
.x75_c00050{left:433.680000pt;}
.x5b_c00050{left:446.268000pt;}
.x39_c00050{left:452.736000pt;}
.x76_c00050{left:471.600000pt;}
.x83_c00050{left:475.440000pt;}
.x82_c00050{left:478.800000pt;}
.x84_c00050{left:512.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_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_4ab86c84425994a9e06b01c2.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;}
.m81_c00051{transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010100,0.000000,0.000000,0.250000,0,0);}
.mac_c00051{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);}
.ma2_c00051{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);}
.maa_c00051{transform:matrix(0.049785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049785,0.000000,0.000000,0.250000,0,0);}
.m13e_c00051{transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);}
.m64_c00051{transform:matrix(0.093365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093365,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{transform:matrix(0.094880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094880,0.000000,0.000000,0.250000,0,0);}
.mf9_c00051{transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);}
.m71_c00051{transform:matrix(0.122680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122680,0.000000,0.000000,0.250000,0,0);}
.m83_c00051{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);}
.m1b_c00051{transform:matrix(0.136140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136140,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.137265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137265,0.000000,0.000000,0.250000,0,0);}
.m7d_c00051{transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.141740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141740,0.000000,0.000000,0.250000,0,0);}
.m11f_c00051{transform:matrix(0.142752,0.003712,-0.006498,0.249916,0,0);-ms-transform:matrix(0.142752,0.003712,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.142752,0.003712,-0.006498,0.249916,0,0);}
.m88_c00051{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{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);}
.mee_c00051{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);}
.m80_c00051{transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);}
.m91_c00051{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);}
.mfa_c00051{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);}
.m1f_c00051{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);}
.m45_c00051{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);}
.m90_c00051{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);}
.m0_c00051{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);}
.mfd_c00051{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);}
.m5_c00051{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);}
.m7b_c00051{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);}
.m100_c00051{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);}
.m115_c00051{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);}
.m10b_c00051{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);}
.m89_c00051{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);}
.m99_c00051{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);}
.m7e_c00051{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);}
.ma4_c00051{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);}
.m12a_c00051{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);}
.m22_c00051{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);}
.m8c_c00051{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);}
.mf3_c00051{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);}
.m49_c00051{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);}
.m87_c00051{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);}
.m120_c00051{transform:matrix(0.169973,0.004419,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169973,0.004419,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169973,0.004419,-0.006498,0.249916,0,0);}
.m6d_c00051{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);}
.m75_c00051{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);}
.med_c00051{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);}
.m8f_c00051{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);}
.m137_c00051{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);}
.m14_c00051{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);}
.mcd_c00051{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);}
.m138_c00051{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);}
.m36_c00051{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);}
.m8a_c00051{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);}
.mcc_c00051{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);}
.m34_c00051{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);}
.mec_c00051{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);}
.m113_c00051{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);}
.m77_c00051{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);}
.m7f_c00051{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);}
.m130_c00051{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);}
.me9_c00051{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);}
.mb9_c00051{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);}
.mfc_c00051{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);}
.mdc_c00051{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);}
.m86_c00051{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{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);}
.mc5_c00051{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);}
.md5_c00051{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);}
.mb6_c00051{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);}
.m85_c00051{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);}
.m116_c00051{transform:matrix(0.181894,0.004729,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181894,0.004729,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181894,0.004729,-0.006498,0.249916,0,0);}
.m134_c00051{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);}
.mb8_c00051{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);}
.m111_c00051{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);}
.m2b_c00051{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);}
.m92_c00051{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);}
.m57_c00051{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);}
.m1e_c00051{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);}
.mce_c00051{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);}
.m114_c00051{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);}
.m10e_c00051{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);}
.m4c_c00051{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);}
.m10c_c00051{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);}
.m3d_c00051{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);}
.m3a_c00051{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);}
.m70_c00051{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_c00051{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);}
.m101_c00051{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);}
.md6_c00051{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);}
.mc6_c00051{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);}
.mea_c00051{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);}
.m117_c00051{transform:matrix(0.186487,0.004849,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186487,0.004849,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186487,0.004849,-0.006498,0.249916,0,0);}
.m97_c00051{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);}
.m16_c00051{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);}
.m2f_c00051{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);}
.m21_c00051{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);}
.m23_c00051{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);}
.md8_c00051{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);}
.m11b_c00051{transform:matrix(0.188811,0.004909,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188811,0.004909,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188811,0.004909,-0.006498,0.249916,0,0);}
.m42_c00051{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);}
.m15_c00051{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);}
.m13_c00051{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);}
.m10d_c00051{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);}
.m9b_c00051{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);}
.mbc_c00051{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);}
.m1c_c00051{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);}
.m65_c00051{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);}
.m39_c00051{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);}
.m28_c00051{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);}
.m52_c00051{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);}
.m37_c00051{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);}
.m24_c00051{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);}
.m8e_c00051{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);}
.mc1_c00051{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);}
.m10f_c00051{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);}
.ma3_c00051{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);}
.m3b_c00051{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);}
.me2_c00051{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);}
.m11e_c00051{transform:matrix(0.193065,0.005020,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193065,0.005020,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193065,0.005020,-0.006498,0.249916,0,0);}
.m4d_c00051{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);}
.m32_c00051{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);}
.m9f_c00051{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);}
.md0_c00051{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);}
.mdf_c00051{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);}
.me4_c00051{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);}
.m3f_c00051{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);}
.m19_c00051{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);}
.m108_c00051{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);}
.md9_c00051{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);}
.me8_c00051{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);}
.m11c_c00051{transform:matrix(0.195944,0.005095,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195944,0.005095,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195944,0.005095,-0.006498,0.249916,0,0);}
.m1_c00051{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);}
.me5_c00051{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);}
.mbb_c00051{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);}
.m105_c00051{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);}
.mc9_c00051{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);}
.m106_c00051{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);}
.mf2_c00051{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);}
.md3_c00051{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);}
.m2c_c00051{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);}
.m121_c00051{transform:matrix(0.198528,0.005162,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198528,0.005162,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198528,0.005162,-0.006498,0.249916,0,0);}
.m61_c00051{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);}
.m109_c00051{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);}
.mfb_c00051{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);}
.mfe_c00051{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);}
.mc0_c00051{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);}
.m7a_c00051{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);}
.m11a_c00051{transform:matrix(0.200462,0.005212,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200462,0.005212,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200462,0.005212,-0.006498,0.249916,0,0);}
.md1_c00051{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);}
.m103_c00051{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);}
.m66_c00051{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);}
.mb5_c00051{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);}
.m18_c00051{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m73_c00051{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);}
.mef_c00051{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);}
.m118_c00051{transform:matrix(0.202242,0.005258,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202242,0.005258,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202242,0.005258,-0.006498,0.249916,0,0);}
.mb7_c00051{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);}
.m11d_c00051{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);}
.m96_c00051{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);}
.mcf_c00051{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);}
.mde_c00051{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);}
.ma7_c00051{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_c00051{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);}
.m107_c00051{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);}
.m55_c00051{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);}
.m4e_c00051{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);}
.mc7_c00051{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);}
.m1a_c00051{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);}
.m12_c00051{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);}
.ma0_c00051{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);}
.mf4_c00051{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);}
.m40_c00051{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);}
.m5d_c00051{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);}
.m20_c00051{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);}
.mba_c00051{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);}
.mf7_c00051{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_c00051{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);}
.m2a_c00051{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);}
.mda_c00051{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);}
.mc3_c00051{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);}
.m8d_c00051{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{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);}
.mbe_c00051{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);}
.m104_c00051{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);}
.mae_c00051{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);}
.m5a_c00051{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);}
.m60_c00051{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);}
.m84_c00051{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);}
.m13c_c00051{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);}
.m10a_c00051{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);}
.ma5_c00051{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);}
.mf1_c00051{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);}
.meb_c00051{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);}
.m123_c00051{transform:matrix(0.214553,0.006437,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214553,0.006437,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214553,0.006437,-0.007497,0.249888,0,0);}
.ma1_c00051{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);}
.md4_c00051{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);}
.m6b_c00051{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);}
.m4b_c00051{transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);}
.m110_c00051{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);}
.m9a_c00051{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);}
.me3_c00051{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.m53_c00051{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);}
.m139_c00051{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);}
.mab_c00051{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);}
.m5f_c00051{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);}
.mbf_c00051{transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{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);}
.m2e_c00051{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);}
.m126_c00051{transform:matrix(0.219206,0.006576,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219206,0.006576,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219206,0.006576,-0.007497,0.249888,0,0);}
.m3_c00051{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);}
.m132_c00051{transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);}
.m102_c00051{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);}
.mca_c00051{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);}
.m9c_c00051{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);}
.md7_c00051{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);}
.m128_c00051{transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);}
.md2_c00051{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.me6_c00051{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);}
.m4f_c00051{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);}
.mcb_c00051{transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);}
.me0_c00051{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);}
.m6a_c00051{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);}
.m5e_c00051{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);}
.m62_c00051{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);}
.m5c_c00051{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);}
.m129_c00051{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);}
.m41_c00051{transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);}
.m59_c00051{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);}
.ma6_c00051{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);}
.m35_c00051{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);}
.m5b_c00051{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);}
.m98_c00051{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);}
.m48_c00051{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);}
.m124_c00051{transform:matrix(0.231026,0.006931,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231026,0.006931,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231026,0.006931,-0.007497,0.249888,0,0);}
.mf0_c00051{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);}
.m67_c00051{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);}
.m12f_c00051{transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);}
.m13a_c00051{transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);}
.mc2_c00051{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m12b_c00051{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);}
.m38_c00051{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m133_c00051{transform:matrix(0.235855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235855,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{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);}
.m127_c00051{transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);}
.m122_c00051{transform:matrix(0.237633,0.007129,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237633,0.007129,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237633,0.007129,-0.007497,0.249888,0,0);}
.mc4_c00051{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m69_c00051{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);}
.mdd_c00051{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);}
.mad_c00051{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);}
.ma9_c00051{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);}
.ma8_c00051{transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);}
.mb3_c00051{transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);}
.mf6_c00051{transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);}
.m131_c00051{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);}
.m33_c00051{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);}
.m112_c00051{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);}
.m12c_c00051{transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);}
.m43_c00051{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);}
.m12e_c00051{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m125_c00051{transform:matrix(0.252881,0.007586,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252881,0.007586,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252881,0.007586,-0.007497,0.249888,0,0);}
.md_c00051{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);}
.m135_c00051{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m6c_c00051{transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m29_c00051{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);}
.m93_c00051{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.me7_c00051{transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);}
.maf_c00051{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);}
.mbd_c00051{transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{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);}
.m13b_c00051{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);}
.m119_c00051{transform:matrix(0.262371,0.006822,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262371,0.006822,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262371,0.006822,-0.006498,0.249916,0,0);}
.m78_c00051{transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);}
.mb2_c00051{transform:matrix(0.263680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263680,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{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);}
.m72_c00051{transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);}
.mdb_c00051{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00051{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);}
.me1_c00051{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);}
.mc8_c00051{transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);}
.m136_c00051{transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00051{transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291420,0.000000,0.000000,0.250000,0,0);}
.m6f_c00051{transform:matrix(0.295265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295265,0.000000,0.000000,0.250000,0,0);}
.mf8_c00051{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);}
.m13f_c00051{transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);}
.mb1_c00051{transform:matrix(0.320475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320475,0.000000,0.000000,0.250000,0,0);}
.mff_c00051{transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);}
.m31_c00051{transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);}
.m6e_c00051{transform:matrix(0.331740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331740,0.000000,0.000000,0.250000,0,0);}
.m4a_c00051{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);}
.m63_c00051{transform:matrix(0.338220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338220,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{transform:matrix(0.341835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341835,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);}
.m12d_c00051{transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361835,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.364730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364730,0.000000,0.000000,0.250000,0,0);}
.m95_c00051{transform:matrix(0.377940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377940,0.000000,0.000000,0.250000,0,0);}
.m94_c00051{transform:matrix(0.384550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384550,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.396865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396865,0.000000,0.000000,0.250000,0,0);}
.m82_c00051{transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);}
.m74_c00051{transform:matrix(0.441450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441450,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.448830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448830,0.000000,0.000000,0.250000,0,0);}
.mb0_c00051{transform:matrix(0.452815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452815,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.457355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457355,0.000000,0.000000,0.250000,0,0);}
.m79_c00051{transform:matrix(0.473830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473830,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.524795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524795,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.527835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527835,0.000000,0.000000,0.250000,0,0);}
.m13d_c00051{transform:matrix(0.568170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568170,0.000000,0.000000,0.250000,0,0);}
.m76_c00051{transform:matrix(0.604840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604840,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.627310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627310,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.680035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680035,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.684900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684900,0.000000,0.000000,0.250000,0,0);}
.mf5_c00051{transform:matrix(0.790950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790950,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.809695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809695,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;}
.fs21_c00051{font-size:14.700000px;}
.fs8_c00051{font-size:19.950000px;}
.fsc_c00051{font-size:22.050000px;}
.fs4_c00051{font-size:23.100000px;}
.fs0_c00051{font-size:27.300000px;}
.fs20_c00051{font-size:28.350000px;}
.fs5_c00051{font-size:43.050000px;}
.fs18_c00051{font-size:46.200000px;}
.fs1f_c00051{font-size:46.220785px;}
.fs16_c00051{font-size:48.300000px;}
.fs17_c00051{font-size:49.350000px;}
.fs1b_c00051{font-size:50.400000px;}
.fs1e_c00051{font-size:50.422675px;}
.fs15_c00051{font-size:51.450000px;}
.fs19_c00051{font-size:52.500000px;}
.fs2_c00051{font-size:53.550000px;}
.fs1a_c00051{font-size:54.600000px;}
.fs1c_c00051{font-size:54.618452px;}
.fs6_c00051{font-size:55.650000px;}
.fs1d_c00051{font-size:58.819871px;}
.fsf_c00051{font-size:60.900000px;}
.fs7_c00051{font-size:63.000000px;}
.fs10_c00051{font-size:65.100000px;}
.fsd_c00051{font-size:68.250000px;}
.fs9_c00051{font-size:69.300000px;}
.fse_c00051{font-size:70.350000px;}
.fsb_c00051{font-size:71.400000px;}
.fs13_c00051{font-size:72.450000px;}
.fs12_c00051{font-size:73.500000px;}
.fsa_c00051{font-size:74.550000px;}
.fs11_c00051{font-size:75.600000px;}
.fs14_c00051{font-size:77.700000px;}
.fs1_c00051{font-size:81.900000px;}
.fs3_c00051{font-size:91.350000px;}
.y0_c00051{bottom:0.000000px;}
.y4d_c00051{bottom:64.800000px;}
.y4c_c00051{bottom:66.150000px;}
.y4b_c00051{bottom:74.115000px;}
.y2e_c00051{bottom:141.700500px;}
.y4a_c00051{bottom:146.754000px;}
.y8_c00051{bottom:152.010000px;}
.ya_c00051{bottom:152.550000px;}
.y2d_c00051{bottom:159.913500px;}
.y49_c00051{bottom:165.663000px;}
.y9_c00051{bottom:171.990000px;}
.y2c_c00051{bottom:177.679500px;}
.y48_c00051{bottom:188.440500px;}
.y2b_c00051{bottom:195.342000px;}
.y47_c00051{bottom:211.137000px;}
.y29_c00051{bottom:212.490000px;}
.y46_c00051{bottom:212.943600px;}
.y45_c00051{bottom:212.943675px;}
.y2a_c00051{bottom:213.307500px;}
.y7_c00051{bottom:213.570000px;}
.y6_c00051{bottom:215.190000px;}
.y44_c00051{bottom:225.854430px;}
.y43_c00051{bottom:228.421455px;}
.y42_c00051{bottom:229.629750px;}
.y41_c00051{bottom:230.415090px;}
.y4_c00051{bottom:230.850000px;}
.y28_c00051{bottom:230.877000px;}
.y40_c00051{bottom:231.670500px;}
.y5_c00051{bottom:241.380000px;}
.y3f_c00051{bottom:247.340583px;}
.y3e_c00051{bottom:248.142471px;}
.y3d_c00051{bottom:248.491257px;}
.y3c_c00051{bottom:248.805135px;}
.y27_c00051{bottom:248.848500px;}
.y3b_c00051{bottom:249.479520px;}
.y3_c00051{bottom:256.770000px;}
.y3a_c00051{bottom:262.206981px;}
.y39_c00051{bottom:263.385951px;}
.y38_c00051{bottom:263.820489px;}
.y37_c00051{bottom:264.227493px;}
.y36_c00051{bottom:265.687887px;}
.y35_c00051{bottom:266.130732px;}
.y26_c00051{bottom:266.595000px;}
.y34_c00051{bottom:267.036000px;}
.yb_c00051{bottom:267.840000px;}
.y1_c00051{bottom:280.260000px;}
.y2_c00051{bottom:280.530000px;}
.y33_c00051{bottom:283.554000px;}
.y25_c00051{bottom:285.007500px;}
.y32_c00051{bottom:301.602000px;}
.y24_c00051{bottom:302.833500px;}
.y31_c00051{bottom:319.126500px;}
.y23_c00051{bottom:320.490000px;}
.y30_c00051{bottom:337.782000px;}
.y22_c00051{bottom:337.887000px;}
.y2f_c00051{bottom:356.098500px;}
.y21_c00051{bottom:356.313000px;}
.y20_c00051{bottom:382.926000px;}
.y1f_c00051{bottom:406.195500px;}
.y1e_c00051{bottom:428.289000px;}
.y1d_c00051{bottom:451.491000px;}
.y1c_c00051{bottom:475.092000px;}
.y1b_c00051{bottom:497.454000px;}
.y1a_c00051{bottom:520.501500px;}
.y19_c00051{bottom:543.657000px;}
.y18_c00051{bottom:566.125500px;}
.y17_c00051{bottom:587.874000px;}
.y16_c00051{bottom:610.117500px;}
.y15_c00051{bottom:633.016500px;}
.y14_c00051{bottom:656.232000px;}
.y13_c00051{bottom:679.399500px;}
.y12_c00051{bottom:701.541000px;}
.y11_c00051{bottom:724.491000px;}
.yf_c00051{bottom:748.473000px;}
.y10_c00051{bottom:752.760000px;}
.ye_c00051{bottom:770.901000px;}
.yd_c00051{bottom:793.482000px;}
.yc_c00051{bottom:817.204500px;}
.h23_c00051{height:14.700000px;}
.ha_c00051{height:19.950000px;}
.he_c00051{height:22.050000px;}
.h6_c00051{height:23.100000px;}
.h2_c00051{height:27.300000px;}
.h22_c00051{height:28.350000px;}
.h7_c00051{height:43.050000px;}
.h1a_c00051{height:46.200000px;}
.h21_c00051{height:46.220785px;}
.h18_c00051{height:48.300000px;}
.h19_c00051{height:49.350000px;}
.h1d_c00051{height:50.400000px;}
.h20_c00051{height:50.422675px;}
.h17_c00051{height:51.450000px;}
.h1b_c00051{height:52.500000px;}
.h4_c00051{height:53.550000px;}
.h1c_c00051{height:54.600000px;}
.h1e_c00051{height:54.618452px;}
.h8_c00051{height:55.650000px;}
.h1f_c00051{height:58.819871px;}
.h11_c00051{height:60.900000px;}
.h9_c00051{height:63.000000px;}
.h12_c00051{height:65.100000px;}
.hf_c00051{height:68.250000px;}
.hb_c00051{height:69.300000px;}
.h10_c00051{height:70.350000px;}
.hd_c00051{height:71.400000px;}
.h15_c00051{height:72.450000px;}
.h14_c00051{height:73.500000px;}
.hc_c00051{height:74.550000px;}
.h13_c00051{height:75.600000px;}
.h16_c00051{height:77.700000px;}
.h3_c00051{height:81.900000px;}
.h5_c00051{height:91.350000px;}
.h0_c00051{height:1008.450000px;}
.h1_c00051{height:1008.750000px;}
.w0_c00051{width:699.000000px;}
.x0_c00051{left:0.000000px;}
.x9_c00051{left:84.780000px;}
.x1_c00051{left:90.450000px;}
.x3_c00051{left:91.530000px;}
.x5_c00051{left:93.150000px;}
.x2_c00051{left:96.930000px;}
.x7_c00051{left:98.550000px;}
.x6_c00051{left:103.140000px;}
.x4_c00051{left:105.300000px;}
.x8_c00051{left:106.650000px;}
.xa_c00051{left:109.620000px;}
.x7d_c00051{left:135.810000px;}
.x89_c00051{left:143.370000px;}
.x78_c00051{left:144.450000px;}
.x6a_c00051{left:145.530000px;}
.x71_c00051{left:158.490000px;}
.x4e_c00051{left:160.110000px;}
.x7e_c00051{left:170.370000px;}
.xb_c00051{left:174.150000px;}
.x3c_c00051{left:176.580000px;}
.x4f_c00051{left:179.010000px;}
.x5e_c00051{left:181.710000px;}
.x45_c00051{left:183.330000px;}
.x41_c00051{left:184.950000px;}
.xc_c00051{left:186.300000px;}
.x20_c00051{left:187.650000px;}
.x67_c00051{left:189.270000px;}
.x72_c00051{left:190.620000px;}
.x6b_c00051{left:192.510000px;}
.x83_c00051{left:201.150000px;}
.x74_c00051{left:202.500000px;}
.x6c_c00051{left:206.550000px;}
.x86_c00051{left:208.170000px;}
.x82_c00051{left:210.870000px;}
.x31_c00051{left:212.760000px;}
.xd_c00051{left:214.110000px;}
.x56_c00051{left:215.460000px;}
.x29_c00051{left:217.080000px;}
.x7a_c00051{left:223.290000px;}
.x87_c00051{left:225.990000px;}
.x21_c00051{left:227.070000px;}
.x46_c00051{left:228.690000px;}
.x5f_c00051{left:230.580000px;}
.x75_c00051{left:232.200000px;}
.xe_c00051{left:234.630000px;}
.x18_c00051{left:237.330000px;}
.x32_c00051{left:240.570000px;}
.x6d_c00051{left:242.190000px;}
.x7f_c00051{left:244.080000px;}
.x84_c00051{left:245.700000px;}
.x68_c00051{left:249.480000px;}
.x8a_c00051{left:251.640000px;}
.x79_c00051{left:253.260000px;}
.x19_c00051{left:255.420000px;}
.x50_c00051{left:256.770000px;}
.x6e_c00051{left:258.930000px;}
.x65_c00051{left:261.090000px;}
.x60_c00051{left:262.440000px;}
.x76_c00051{left:263.790000px;}
.x14_c00051{left:264.870000px;}
.x58_c00051{left:267.570000px;}
.xf_c00051{left:271.350000px;}
.x7b_c00051{left:272.700000px;}
.x4a_c00051{left:274.320000px;}
.x3d_c00051{left:275.400000px;}
.x42_c00051{left:276.750000px;}
.x33_c00051{left:280.530000px;}
.x88_c00051{left:283.770000px;}
.x22_c00051{left:285.930000px;}
.x8b_c00051{left:290.520000px;}
.x10_c00051{left:291.870000px;}
.x4b_c00051{left:295.380000px;}
.x3e_c00051{left:297.270000px;}
.x6f_c00051{left:304.020000px;}
.x80_c00051{left:305.370000px;}
.x51_c00051{left:309.960000px;}
.x47_c00051{left:311.850000px;}
.x2a_c00051{left:313.740000px;}
.x7c_c00051{left:314.820000px;}
.x4c_c00051{left:316.710000px;}
.x85_c00051{left:320.220000px;}
.x73_c00051{left:321.840000px;}
.x1a_c00051{left:323.460000px;}
.x11_c00051{left:327.510000px;}
.x34_c00051{left:331.560000px;}
.x3f_c00051{left:334.800000px;}
.x70_c00051{left:337.230000px;}
.x77_c00051{left:338.310000px;}
.x52_c00051{left:339.660000px;}
.x3a_c00051{left:342.090000px;}
.x1b_c00051{left:343.980000px;}
.x59_c00051{left:346.140000px;}
.x81_c00051{left:348.030000px;}
.x35_c00051{left:349.920000px;}
.x23_c00051{left:351.540000px;}
.x69_c00051{left:352.620000px;}
.x61_c00051{left:353.970000px;}
.x4d_c00051{left:356.670000px;}
.x15_c00051{left:357.750000px;}
.x2b_c00051{left:359.910000px;}
.x5a_c00051{left:363.150000px;}
.x8c_c00051{left:366.120000px;}
.x54_c00051{left:368.010000px;}
.x24_c00051{left:372.330000px;}
.x16_c00051{left:376.650000px;}
.x40_c00051{left:378.540000px;}
.x36_c00051{left:381.510000px;}
.x12_c00051{left:385.020000px;}
.x66_c00051{left:387.720000px;}
.x5b_c00051{left:389.070000px;}
.x1c_c00051{left:392.040000px;}
.x8d_c00051{left:393.390000px;}
.xb2_c00051{left:398.250000px;}
.x48_c00051{left:399.330000px;}
.x62_c00051{left:402.840000px;}
.x43_c00051{left:404.730000px;}
.x1d_c00051{left:410.400000px;}
.x9c_c00051{left:416.610000px;}
.x8e_c00051{left:419.580000px;}
.x37_c00051{left:421.200000px;}
.xa5_c00051{left:422.832000px;}
.x2c_c00051{left:423.900000px;}
.x5c_c00051{left:426.060000px;}
.xaa_c00051{left:429.165462px;}
.xac_c00051{left:430.569000px;}
.x53_c00051{left:432.540000px;}
.x55_c00051{left:436.050000px;}
.x49_c00051{left:438.210000px;}
.xa6_c00051{left:439.864500px;}
.x94_c00051{left:441.180000px;}
.x25_c00051{left:442.260000px;}
.x44_c00051{left:444.150000px;}
.x13_c00051{left:446.850000px;}
.x8f_c00051{left:449.010000px;}
.x63_c00051{left:450.630000px;}
.xad_c00051{left:456.747000px;}
.x17_c00051{left:458.460000px;}
.x26_c00051{left:460.350000px;}
.x90_c00051{left:461.970000px;}
.x1e_c00051{left:467.910000px;}
.x1f_c00051{left:470.610000px;}
.xab_c00051{left:477.116958px;}
.x38_c00051{left:478.170000px;}
.x5d_c00051{left:479.250000px;}
.x2d_c00051{left:480.330000px;}
.x95_c00051{left:487.080000px;}
.xaf_c00051{left:488.970000px;}
.x9d_c00051{left:492.750000px;}
.xa7_c00051{left:496.033500px;}
.xb5_c00051{left:497.070000px;}
.x2e_c00051{left:500.850000px;}
.x39_c00051{left:502.740000px;}
.x91_c00051{left:508.950000px;}
.x9e_c00051{left:510.030000px;}
.xb0_c00051{left:511.380000px;}
.x27_c00051{left:512.460000px;}
.xb6_c00051{left:516.240000px;}
.x92_c00051{left:518.400000px;}
.x9f_c00051{left:522.720000px;}
.xa2_c00051{left:523.800000px;}
.x96_c00051{left:526.770000px;}
.xa8_c00051{left:528.400500px;}
.x57_c00051{left:529.740000px;}
.x28_c00051{left:533.790000px;}
.x99_c00051{left:535.680000px;}
.xa0_c00051{left:541.080000px;}
.x64_c00051{left:543.780000px;}
.xa3_c00051{left:548.100000px;}
.x30_c00051{left:549.180000px;}
.x2f_c00051{left:550.260000px;}
.x9a_c00051{left:552.150000px;}
.xb1_c00051{left:553.500000px;}
.x3b_c00051{left:564.030000px;}
.xa9_c00051{left:573.745500px;}
.xa1_c00051{left:579.690000px;}
.xae_c00051{left:582.591000px;}
.xb3_c00051{left:583.740000px;}
.xa4_c00051{left:586.710000px;}
.x9b_c00051{left:596.700000px;}
.x97_c00051{left:603.720000px;}
.x93_c00051{left:605.340000px;}
.x98_c00051{left:612.900000px;}
.xb4_c00051{left:621.540000px;}
.xba_c00051{left:680.130000px;}
.xb8_c00051{left:687.150000px;}
.xb7_c00051{left:688.500000px;}
.xb9_c00051{left:697.410000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.fs21_c00051{font-size:13.066667pt;}
.fs8_c00051{font-size:17.733333pt;}
.fsc_c00051{font-size:19.600000pt;}
.fs4_c00051{font-size:20.533333pt;}
.fs0_c00051{font-size:24.266667pt;}
.fs20_c00051{font-size:25.200000pt;}
.fs5_c00051{font-size:38.266667pt;}
.fs18_c00051{font-size:41.066667pt;}
.fs1f_c00051{font-size:41.085143pt;}
.fs16_c00051{font-size:42.933333pt;}
.fs17_c00051{font-size:43.866667pt;}
.fs1b_c00051{font-size:44.800000pt;}
.fs1e_c00051{font-size:44.820155pt;}
.fs15_c00051{font-size:45.733333pt;}
.fs19_c00051{font-size:46.666667pt;}
.fs2_c00051{font-size:47.600000pt;}
.fs1a_c00051{font-size:48.533333pt;}
.fs1c_c00051{font-size:48.549735pt;}
.fs6_c00051{font-size:49.466667pt;}
.fs1d_c00051{font-size:52.284330pt;}
.fsf_c00051{font-size:54.133333pt;}
.fs7_c00051{font-size:56.000000pt;}
.fs10_c00051{font-size:57.866667pt;}
.fsd_c00051{font-size:60.666667pt;}
.fs9_c00051{font-size:61.600000pt;}
.fse_c00051{font-size:62.533333pt;}
.fsb_c00051{font-size:63.466667pt;}
.fs13_c00051{font-size:64.400000pt;}
.fs12_c00051{font-size:65.333333pt;}
.fsa_c00051{font-size:66.266667pt;}
.fs11_c00051{font-size:67.200000pt;}
.fs14_c00051{font-size:69.066667pt;}
.fs1_c00051{font-size:72.800000pt;}
.fs3_c00051{font-size:81.200000pt;}
.y0_c00051{bottom:0.000000pt;}
.y4d_c00051{bottom:57.600000pt;}
.y4c_c00051{bottom:58.800000pt;}
.y4b_c00051{bottom:65.880000pt;}
.y2e_c00051{bottom:125.956000pt;}
.y4a_c00051{bottom:130.448000pt;}
.y8_c00051{bottom:135.120000pt;}
.ya_c00051{bottom:135.600000pt;}
.y2d_c00051{bottom:142.145333pt;}
.y49_c00051{bottom:147.256000pt;}
.y9_c00051{bottom:152.880000pt;}
.y2c_c00051{bottom:157.937333pt;}
.y48_c00051{bottom:167.502667pt;}
.y2b_c00051{bottom:173.637333pt;}
.y47_c00051{bottom:187.677333pt;}
.y29_c00051{bottom:188.880000pt;}
.y46_c00051{bottom:189.283200pt;}
.y45_c00051{bottom:189.283267pt;}
.y2a_c00051{bottom:189.606667pt;}
.y7_c00051{bottom:189.840000pt;}
.y6_c00051{bottom:191.280000pt;}
.y44_c00051{bottom:200.759493pt;}
.y43_c00051{bottom:203.041293pt;}
.y42_c00051{bottom:204.115333pt;}
.y41_c00051{bottom:204.813413pt;}
.y4_c00051{bottom:205.200000pt;}
.y28_c00051{bottom:205.224000pt;}
.y40_c00051{bottom:205.929333pt;}
.y5_c00051{bottom:214.560000pt;}
.y3f_c00051{bottom:219.858296pt;}
.y3e_c00051{bottom:220.571085pt;}
.y3d_c00051{bottom:220.881117pt;}
.y3c_c00051{bottom:221.160120pt;}
.y27_c00051{bottom:221.198667pt;}
.y3b_c00051{bottom:221.759573pt;}
.y3_c00051{bottom:228.240000pt;}
.y3a_c00051{bottom:233.072872pt;}
.y39_c00051{bottom:234.120845pt;}
.y38_c00051{bottom:234.507101pt;}
.y37_c00051{bottom:234.868883pt;}
.y36_c00051{bottom:236.167011pt;}
.y35_c00051{bottom:236.560651pt;}
.y26_c00051{bottom:236.973333pt;}
.y34_c00051{bottom:237.365333pt;}
.yb_c00051{bottom:238.080000pt;}
.y1_c00051{bottom:249.120000pt;}
.y2_c00051{bottom:249.360000pt;}
.y33_c00051{bottom:252.048000pt;}
.y25_c00051{bottom:253.340000pt;}
.y32_c00051{bottom:268.090667pt;}
.y24_c00051{bottom:269.185333pt;}
.y31_c00051{bottom:283.668000pt;}
.y23_c00051{bottom:284.880000pt;}
.y30_c00051{bottom:300.250667pt;}
.y22_c00051{bottom:300.344000pt;}
.y2f_c00051{bottom:316.532000pt;}
.y21_c00051{bottom:316.722667pt;}
.y20_c00051{bottom:340.378667pt;}
.y1f_c00051{bottom:361.062667pt;}
.y1e_c00051{bottom:380.701333pt;}
.y1d_c00051{bottom:401.325333pt;}
.y1c_c00051{bottom:422.304000pt;}
.y1b_c00051{bottom:442.181333pt;}
.y1a_c00051{bottom:462.668000pt;}
.y19_c00051{bottom:483.250667pt;}
.y18_c00051{bottom:503.222667pt;}
.y17_c00051{bottom:522.554667pt;}
.y16_c00051{bottom:542.326667pt;}
.y15_c00051{bottom:562.681333pt;}
.y14_c00051{bottom:583.317333pt;}
.y13_c00051{bottom:603.910667pt;}
.y12_c00051{bottom:623.592000pt;}
.y11_c00051{bottom:643.992000pt;}
.yf_c00051{bottom:665.309333pt;}
.y10_c00051{bottom:669.120000pt;}
.ye_c00051{bottom:685.245333pt;}
.yd_c00051{bottom:705.317333pt;}
.yc_c00051{bottom:726.404000pt;}
.h23_c00051{height:13.066667pt;}
.ha_c00051{height:17.733333pt;}
.he_c00051{height:19.600000pt;}
.h6_c00051{height:20.533333pt;}
.h2_c00051{height:24.266667pt;}
.h22_c00051{height:25.200000pt;}
.h7_c00051{height:38.266667pt;}
.h1a_c00051{height:41.066667pt;}
.h21_c00051{height:41.085143pt;}
.h18_c00051{height:42.933333pt;}
.h19_c00051{height:43.866667pt;}
.h1d_c00051{height:44.800000pt;}
.h20_c00051{height:44.820155pt;}
.h17_c00051{height:45.733333pt;}
.h1b_c00051{height:46.666667pt;}
.h4_c00051{height:47.600000pt;}
.h1c_c00051{height:48.533333pt;}
.h1e_c00051{height:48.549735pt;}
.h8_c00051{height:49.466667pt;}
.h1f_c00051{height:52.284330pt;}
.h11_c00051{height:54.133333pt;}
.h9_c00051{height:56.000000pt;}
.h12_c00051{height:57.866667pt;}
.hf_c00051{height:60.666667pt;}
.hb_c00051{height:61.600000pt;}
.h10_c00051{height:62.533333pt;}
.hd_c00051{height:63.466667pt;}
.h15_c00051{height:64.400000pt;}
.h14_c00051{height:65.333333pt;}
.hc_c00051{height:66.266667pt;}
.h13_c00051{height:67.200000pt;}
.h16_c00051{height:69.066667pt;}
.h3_c00051{height:72.800000pt;}
.h5_c00051{height:81.200000pt;}
.h0_c00051{height:896.400000pt;}
.h1_c00051{height:896.666667pt;}
.w0_c00051{width:621.333333pt;}
.x0_c00051{left:0.000000pt;}
.x9_c00051{left:75.360000pt;}
.x1_c00051{left:80.400000pt;}
.x3_c00051{left:81.360000pt;}
.x5_c00051{left:82.800000pt;}
.x2_c00051{left:86.160000pt;}
.x7_c00051{left:87.600000pt;}
.x6_c00051{left:91.680000pt;}
.x4_c00051{left:93.600000pt;}
.x8_c00051{left:94.800000pt;}
.xa_c00051{left:97.440000pt;}
.x7d_c00051{left:120.720000pt;}
.x89_c00051{left:127.440000pt;}
.x78_c00051{left:128.400000pt;}
.x6a_c00051{left:129.360000pt;}
.x71_c00051{left:140.880000pt;}
.x4e_c00051{left:142.320000pt;}
.x7e_c00051{left:151.440000pt;}
.xb_c00051{left:154.800000pt;}
.x3c_c00051{left:156.960000pt;}
.x4f_c00051{left:159.120000pt;}
.x5e_c00051{left:161.520000pt;}
.x45_c00051{left:162.960000pt;}
.x41_c00051{left:164.400000pt;}
.xc_c00051{left:165.600000pt;}
.x20_c00051{left:166.800000pt;}
.x67_c00051{left:168.240000pt;}
.x72_c00051{left:169.440000pt;}
.x6b_c00051{left:171.120000pt;}
.x83_c00051{left:178.800000pt;}
.x74_c00051{left:180.000000pt;}
.x6c_c00051{left:183.600000pt;}
.x86_c00051{left:185.040000pt;}
.x82_c00051{left:187.440000pt;}
.x31_c00051{left:189.120000pt;}
.xd_c00051{left:190.320000pt;}
.x56_c00051{left:191.520000pt;}
.x29_c00051{left:192.960000pt;}
.x7a_c00051{left:198.480000pt;}
.x87_c00051{left:200.880000pt;}
.x21_c00051{left:201.840000pt;}
.x46_c00051{left:203.280000pt;}
.x5f_c00051{left:204.960000pt;}
.x75_c00051{left:206.400000pt;}
.xe_c00051{left:208.560000pt;}
.x18_c00051{left:210.960000pt;}
.x32_c00051{left:213.840000pt;}
.x6d_c00051{left:215.280000pt;}
.x7f_c00051{left:216.960000pt;}
.x84_c00051{left:218.400000pt;}
.x68_c00051{left:221.760000pt;}
.x8a_c00051{left:223.680000pt;}
.x79_c00051{left:225.120000pt;}
.x19_c00051{left:227.040000pt;}
.x50_c00051{left:228.240000pt;}
.x6e_c00051{left:230.160000pt;}
.x65_c00051{left:232.080000pt;}
.x60_c00051{left:233.280000pt;}
.x76_c00051{left:234.480000pt;}
.x14_c00051{left:235.440000pt;}
.x58_c00051{left:237.840000pt;}
.xf_c00051{left:241.200000pt;}
.x7b_c00051{left:242.400000pt;}
.x4a_c00051{left:243.840000pt;}
.x3d_c00051{left:244.800000pt;}
.x42_c00051{left:246.000000pt;}
.x33_c00051{left:249.360000pt;}
.x88_c00051{left:252.240000pt;}
.x22_c00051{left:254.160000pt;}
.x8b_c00051{left:258.240000pt;}
.x10_c00051{left:259.440000pt;}
.x4b_c00051{left:262.560000pt;}
.x3e_c00051{left:264.240000pt;}
.x6f_c00051{left:270.240000pt;}
.x80_c00051{left:271.440000pt;}
.x51_c00051{left:275.520000pt;}
.x47_c00051{left:277.200000pt;}
.x2a_c00051{left:278.880000pt;}
.x7c_c00051{left:279.840000pt;}
.x4c_c00051{left:281.520000pt;}
.x85_c00051{left:284.640000pt;}
.x73_c00051{left:286.080000pt;}
.x1a_c00051{left:287.520000pt;}
.x11_c00051{left:291.120000pt;}
.x34_c00051{left:294.720000pt;}
.x3f_c00051{left:297.600000pt;}
.x70_c00051{left:299.760000pt;}
.x77_c00051{left:300.720000pt;}
.x52_c00051{left:301.920000pt;}
.x3a_c00051{left:304.080000pt;}
.x1b_c00051{left:305.760000pt;}
.x59_c00051{left:307.680000pt;}
.x81_c00051{left:309.360000pt;}
.x35_c00051{left:311.040000pt;}
.x23_c00051{left:312.480000pt;}
.x69_c00051{left:313.440000pt;}
.x61_c00051{left:314.640000pt;}
.x4d_c00051{left:317.040000pt;}
.x15_c00051{left:318.000000pt;}
.x2b_c00051{left:319.920000pt;}
.x5a_c00051{left:322.800000pt;}
.x8c_c00051{left:325.440000pt;}
.x54_c00051{left:327.120000pt;}
.x24_c00051{left:330.960000pt;}
.x16_c00051{left:334.800000pt;}
.x40_c00051{left:336.480000pt;}
.x36_c00051{left:339.120000pt;}
.x12_c00051{left:342.240000pt;}
.x66_c00051{left:344.640000pt;}
.x5b_c00051{left:345.840000pt;}
.x1c_c00051{left:348.480000pt;}
.x8d_c00051{left:349.680000pt;}
.xb2_c00051{left:354.000000pt;}
.x48_c00051{left:354.960000pt;}
.x62_c00051{left:358.080000pt;}
.x43_c00051{left:359.760000pt;}
.x1d_c00051{left:364.800000pt;}
.x9c_c00051{left:370.320000pt;}
.x8e_c00051{left:372.960000pt;}
.x37_c00051{left:374.400000pt;}
.xa5_c00051{left:375.850667pt;}
.x2c_c00051{left:376.800000pt;}
.x5c_c00051{left:378.720000pt;}
.xaa_c00051{left:381.480411pt;}
.xac_c00051{left:382.728000pt;}
.x53_c00051{left:384.480000pt;}
.x55_c00051{left:387.600000pt;}
.x49_c00051{left:389.520000pt;}
.xa6_c00051{left:390.990667pt;}
.x94_c00051{left:392.160000pt;}
.x25_c00051{left:393.120000pt;}
.x44_c00051{left:394.800000pt;}
.x13_c00051{left:397.200000pt;}
.x8f_c00051{left:399.120000pt;}
.x63_c00051{left:400.560000pt;}
.xad_c00051{left:405.997333pt;}
.x17_c00051{left:407.520000pt;}
.x26_c00051{left:409.200000pt;}
.x90_c00051{left:410.640000pt;}
.x1e_c00051{left:415.920000pt;}
.x1f_c00051{left:418.320000pt;}
.xab_c00051{left:424.103963pt;}
.x38_c00051{left:425.040000pt;}
.x5d_c00051{left:426.000000pt;}
.x2d_c00051{left:426.960000pt;}
.x95_c00051{left:432.960000pt;}
.xaf_c00051{left:434.640000pt;}
.x9d_c00051{left:438.000000pt;}
.xa7_c00051{left:440.918667pt;}
.xb5_c00051{left:441.840000pt;}
.x2e_c00051{left:445.200000pt;}
.x39_c00051{left:446.880000pt;}
.x91_c00051{left:452.400000pt;}
.x9e_c00051{left:453.360000pt;}
.xb0_c00051{left:454.560000pt;}
.x27_c00051{left:455.520000pt;}
.xb6_c00051{left:458.880000pt;}
.x92_c00051{left:460.800000pt;}
.x9f_c00051{left:464.640000pt;}
.xa2_c00051{left:465.600000pt;}
.x96_c00051{left:468.240000pt;}
.xa8_c00051{left:469.689333pt;}
.x57_c00051{left:470.880000pt;}
.x28_c00051{left:474.480000pt;}
.x99_c00051{left:476.160000pt;}
.xa0_c00051{left:480.960000pt;}
.x64_c00051{left:483.360000pt;}
.xa3_c00051{left:487.200000pt;}
.x30_c00051{left:488.160000pt;}
.x2f_c00051{left:489.120000pt;}
.x9a_c00051{left:490.800000pt;}
.xb1_c00051{left:492.000000pt;}
.x3b_c00051{left:501.360000pt;}
.xa9_c00051{left:509.996000pt;}
.xa1_c00051{left:515.280000pt;}
.xae_c00051{left:517.858667pt;}
.xb3_c00051{left:518.880000pt;}
.xa4_c00051{left:521.520000pt;}
.x9b_c00051{left:530.400000pt;}
.x97_c00051{left:536.640000pt;}
.x93_c00051{left:538.080000pt;}
.x98_c00051{left:544.800000pt;}
.xb4_c00051{left:552.480000pt;}
.xba_c00051{left:604.560000pt;}
.xb8_c00051{left:610.800000pt;}
.xb7_c00051{left:612.000000pt;}
.xb9_c00051{left:619.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_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_4ab86c84425994a9e06b01c2.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;}
.mf9_c00052{transform:matrix(0.048380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048380,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{transform:matrix(0.132195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132195,0.000000,0.000000,0.250000,0,0);}
.m2f_c00052{transform:matrix(0.137045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137045,0.000000,0.000000,0.250000,0,0);}
.m89_c00052{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);}
.maa_c00052{transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{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);}
.ma7_c00052{transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);}
.m73_c00052{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);}
.m5e_c00052{transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{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);}
.m5d_c00052{transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);}
.m31_c00052{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{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);}
.m6d_c00052{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);}
.mab_c00052{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);}
.m26_c00052{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.m84_c00052{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.m60_c00052{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);}
.m112_c00052{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);}
.m44_c00052{transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);}
.m7c_c00052{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);}
.med_c00052{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{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);}
.m50_c00052{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);}
.m48_c00052{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);}
.m7a_c00052{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{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);}
.m8e_c00052{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);}
.m10f_c00052{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);}
.m1a_c00052{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);}
.m8d_c00052{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);}
.me_c00052{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);}
.m92_c00052{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);}
.m30_c00052{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);}
.m41_c00052{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);}
.m8c_c00052{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);}
.m85_c00052{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);}
.m47_c00052{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.md9_c00052{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);}
.m0_c00052{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);}
.m5c_c00052{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);}
.m7f_c00052{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);}
.m33_c00052{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);}
.m2b_c00052{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);}
.m7b_c00052{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);}
.m45_c00052{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);}
.m86_c00052{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);}
.m118_c00052{transform:matrix(0.170283,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170283,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170283,-0.001533,0.002250,0.249990,0,0);}
.mdf_c00052{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{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);}
.m10_c00052{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);}
.m77_c00052{transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);}
.m102_c00052{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);}
.m129_c00052{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);}
.mac_c00052{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);}
.m87_c00052{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);}
.ma4_c00052{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);}
.ma8_c00052{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);}
.m2d_c00052{transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00052{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);}
.ma0_c00052{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);}
.me1_c00052{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);}
.m80_c00052{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);}
.m115_c00052{transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);-ms-transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);}
.m1e_c00052{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);}
.m76_c00052{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);}
.m11d_c00052{transform:matrix(0.173813,-0.001564,0.002250,0.249990,0,0);-ms-transform:matrix(0.173813,-0.001564,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173813,-0.001564,0.002250,0.249990,0,0);}
.mbe_c00052{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);}
.mf5_c00052{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);}
.m6e_c00052{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);}
.m25_c00052{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);}
.m91_c00052{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);}
.m124_c00052{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);}
.m9c_c00052{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);}
.m2e_c00052{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);}
.mdc_c00052{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);}
.m3f_c00052{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);}
.m54_c00052{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);}
.m46_c00052{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m128_c00052{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);}
.m61_c00052{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);}
.md8_c00052{transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);}
.m79_c00052{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);}
.m43_c00052{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_c00052{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);}
.m121_c00052{transform:matrix(0.181213,-0.001631,0.002250,0.249990,0,0);-ms-transform:matrix(0.181213,-0.001631,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181213,-0.001631,0.002250,0.249990,0,0);}
.m72_c00052{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);}
.m75_c00052{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m10c_c00052{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);}
.mdd_c00052{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);}
.mf8_c00052{transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{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);}
.m64_c00052{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);}
.mca_c00052{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);}
.m19_c00052{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);}
.m9e_c00052{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{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);}
.m82_c00052{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);}
.m3c_c00052{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);}
.mad_c00052{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);}
.mae_c00052{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);}
.mf6_c00052{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);}
.m9f_c00052{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);}
.mb8_c00052{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);}
.mfd_c00052{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);}
.m7e_c00052{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);}
.mf1_c00052{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);}
.mbf_c00052{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);}
.ma6_c00052{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);}
.m12c_c00052{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);}
.m120_c00052{transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);}
.mf3_c00052{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);}
.m4f_c00052{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);}
.m2c_c00052{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);}
.m74_c00052{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);}
.m3d_c00052{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);}
.mbd_c00052{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);}
.m1b_c00052{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);}
.mc0_c00052{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);}
.m40_c00052{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);}
.m11e_c00052{transform:matrix(0.191577,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191577,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191577,-0.001724,0.002250,0.249990,0,0);}
.mc5_c00052{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);}
.m9a_c00052{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_c00052{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);}
.me6_c00052{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);}
.m71_c00052{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);}
.ma_c00052{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);}
.m93_c00052{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);}
.m113_c00052{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);}
.m106_c00052{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);}
.m12b_c00052{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);}
.m11a_c00052{transform:matrix(0.194032,-0.001746,0.002250,0.249990,0,0);-ms-transform:matrix(0.194032,-0.001746,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194032,-0.001746,0.002250,0.249990,0,0);}
.m109_c00052{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);}
.m65_c00052{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);}
.m7d_c00052{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);}
.m88_c00052{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);}
.m17_c00052{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);}
.m6f_c00052{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);}
.m10e_c00052{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);}
.m38_c00052{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);}
.m83_c00052{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);}
.m3e_c00052{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);}
.mf0_c00052{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.m70_c00052{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);}
.m62_c00052{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);}
.m11c_c00052{transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);}
.md_c00052{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);}
.m114_c00052{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.m10a_c00052{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);}
.md2_c00052{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);}
.m5a_c00052{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);}
.me0_c00052{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);}
.m67_c00052{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);}
.m29_c00052{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);}
.m94_c00052{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);}
.m107_c00052{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);}
.md7_c00052{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);}
.m119_c00052{transform:matrix(0.199577,-0.001796,0.002250,0.249990,0,0);-ms-transform:matrix(0.199577,-0.001796,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199577,-0.001796,0.002250,0.249990,0,0);}
.m9b_c00052{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);}
.m39_c00052{transform:matrix(0.200065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200065,0.000000,0.000000,0.250000,0,0);}
.m108_c00052{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);}
.mef_c00052{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);}
.mee_c00052{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);}
.me9_c00052{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);}
.m10b_c00052{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);}
.m66_c00052{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);}
.mf7_c00052{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);}
.m110_c00052{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);}
.m123_c00052{transform:matrix(0.202817,-0.001825,0.002250,0.249990,0,0);-ms-transform:matrix(0.202817,-0.001825,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202817,-0.001825,0.002250,0.249990,0,0);}
.mc3_c00052{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);}
.ma1_c00052{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);}
.mc_c00052{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);}
.m20_c00052{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);}
.m35_c00052{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);}
.m100_c00052{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);}
.m53_c00052{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);}
.mc2_c00052{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);}
.m63_c00052{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);}
.m103_c00052{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);}
.me5_c00052{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);}
.m57_c00052{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);}
.mc1_c00052{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);}
.ma2_c00052{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);}
.mbb_c00052{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);}
.m69_c00052{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);}
.me3_c00052{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);}
.mb9_c00052{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);}
.m95_c00052{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);}
.m10d_c00052{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);}
.m5f_c00052{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);}
.meb_c00052{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);}
.m8a_c00052{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);}
.m1d_c00052{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);}
.m105_c00052{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);}
.mce_c00052{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);}
.mb1_c00052{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);}
.m99_c00052{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);}
.m5b_c00052{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);}
.md0_c00052{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);}
.m37_c00052{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);}
.mb6_c00052{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);}
.m117_c00052{transform:matrix(0.213361,-0.001920,0.002250,0.249990,0,0);-ms-transform:matrix(0.213361,-0.001920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213361,-0.001920,0.002250,0.249990,0,0);}
.m125_c00052{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);}
.mfc_c00052{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);}
.m11f_c00052{transform:matrix(0.214546,-0.001931,0.002250,0.249990,0,0);-ms-transform:matrix(0.214546,-0.001931,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214546,-0.001931,0.002250,0.249990,0,0);}
.md1_c00052{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);}
.m4e_c00052{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);}
.m104_c00052{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.mea_c00052{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);}
.mcf_c00052{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);}
.m1c_c00052{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);}
.mc6_c00052{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);}
.m127_c00052{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.mb2_c00052{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);}
.m16_c00052{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);}
.me4_c00052{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);}
.md3_c00052{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);}
.m11_c00052{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);}
.mf4_c00052{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);}
.mde_c00052{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);}
.mcd_c00052{transform:matrix(0.222060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222060,0.000000,0.000000,0.250000,0,0);}
.mb0_c00052{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);}
.m42_c00052{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);}
.m24_c00052{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);}
.m6b_c00052{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);}
.ma5_c00052{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);}
.mda_c00052{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);}
.m21_c00052{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);}
.m90_c00052{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);}
.mfe_c00052{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);}
.mec_c00052{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);}
.m36_c00052{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);}
.m122_c00052{transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);}
.mb_c00052{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.mdb_c00052{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);}
.m78_c00052{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);}
.m59_c00052{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);}
.mcb_c00052{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);}
.m12e_c00052{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.md6_c00052{transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);}
.m81_c00052{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);}
.m111_c00052{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);}
.m6c_c00052{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);}
.mc7_c00052{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.m8b_c00052{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);}
.m3_c00052{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_c00052{transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);}
.m126_c00052{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);}
.md4_c00052{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);}
.m9_c00052{transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.m97_c00052{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);}
.m18_c00052{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);}
.mb3_c00052{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);}
.m6a_c00052{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.me8_c00052{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);}
.m116_c00052{transform:matrix(0.251790,-0.002266,0.002250,0.249990,0,0);-ms-transform:matrix(0.251790,-0.002266,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251790,-0.002266,0.002250,0.249990,0,0);}
.mfb_c00052{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);}
.m23_c00052{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);}
.m3b_c00052{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m8f_c00052{transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);}
.m22_c00052{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);}
.mc4_c00052{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);}
.maf_c00052{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);}
.m98_c00052{transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);}
.md5_c00052{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);}
.mff_c00052{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00052{transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.269050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269050,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);}
.mb4_c00052{transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);}
.m12a_c00052{transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);}
.mbc_c00052{transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290630,0.000000,0.000000,0.250000,0,0);}
.mfa_c00052{transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);}
.mb7_c00052{transform:matrix(0.313865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313865,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.314435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314435,0.000000,0.000000,0.250000,0,0);}
.mb5_c00052{transform:matrix(0.314735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314735,0.000000,0.000000,0.250000,0,0);}
.m1f_c00052{transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);}
.m4c_c00052{transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318780,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);}
.me2_c00052{transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);}
.m12d_c00052{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m9d_c00052{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.ma9_c00052{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.mba_c00052{transform:matrix(0.375825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375825,0.000000,0.000000,0.250000,0,0);}
.m11b_c00052{transform:matrix(0.376220,-0.003386,0.002250,0.249990,0,0);-ms-transform:matrix(0.376220,-0.003386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.376220,-0.003386,0.002250,0.249990,0,0);}
.mcc_c00052{transform:matrix(0.379795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379795,0.000000,0.000000,0.250000,0,0);}
.mc8_c00052{transform:matrix(0.383155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383155,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);}
.mf2_c00052{transform:matrix(0.392780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392780,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.401220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401220,0.000000,0.000000,0.250000,0,0);}
.m101_c00052{transform:matrix(0.404935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404935,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.421990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421990,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.647915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647915,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.660750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660750,0.000000,0.000000,0.250000,0,0);}
.m96_c00052{transform:matrix(0.745595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745595,0.000000,0.000000,0.250000,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;}
.fs13_c00052{font-size:22.050000px;}
.fs1_c00052{font-size:28.350000px;}
.fs0_c00052{font-size:35.700000px;}
.fs11_c00052{font-size:38.850000px;}
.fse_c00052{font-size:48.300000px;}
.fsf_c00052{font-size:50.400000px;}
.fsc_c00052{font-size:51.450000px;}
.fs12_c00052{font-size:51.452084px;}
.fs14_c00052{font-size:52.500000px;}
.fs10_c00052{font-size:54.600000px;}
.fsd_c00052{font-size:60.900000px;}
.fs7_c00052{font-size:67.200000px;}
.fsa_c00052{font-size:68.250000px;}
.fs4_c00052{font-size:69.300000px;}
.fs9_c00052{font-size:70.350000px;}
.fs5_c00052{font-size:71.400000px;}
.fs3_c00052{font-size:72.450000px;}
.fs8_c00052{font-size:73.500000px;}
.fsb_c00052{font-size:74.550000px;}
.fs6_c00052{font-size:77.700000px;}
.fs2_c00052{font-size:119.700000px;}
.y0_c00052{bottom:0.000000px;}
.y20_c00052{bottom:144.720000px;}
.y31_c00052{bottom:148.575000px;}
.y1f_c00052{bottom:153.090000px;}
.y30_c00052{bottom:156.330000px;}
.y21_c00052{bottom:162.001500px;}
.y22_c00052{bottom:162.288321px;}
.y23_c00052{bottom:162.608959px;}
.y24_c00052{bottom:163.138632px;}
.y25_c00052{bottom:163.359776px;}
.y26_c00052{bottom:163.629600px;}
.y27_c00052{bottom:164.088965px;}
.y28_c00052{bottom:164.219901px;}
.y29_c00052{bottom:164.584293px;}
.y2a_c00052{bottom:164.878350px;}
.y2b_c00052{bottom:165.364094px;}
.y2c_c00052{bottom:165.544251px;}
.y2d_c00052{bottom:165.801710px;}
.y2e_c00052{bottom:166.066377px;}
.y2f_c00052{bottom:166.419038px;}
.y1e_c00052{bottom:184.003500px;}
.y1d_c00052{bottom:202.342500px;}
.y1c_c00052{bottom:219.640500px;}
.y1b_c00052{bottom:237.696000px;}
.y1a_c00052{bottom:255.013500px;}
.y19_c00052{bottom:272.835000px;}
.y18_c00052{bottom:290.595000px;}
.y17_c00052{bottom:308.413500px;}
.y16_c00052{bottom:325.948500px;}
.y15_c00052{bottom:367.489500px;}
.y14_c00052{bottom:390.298500px;}
.y13_c00052{bottom:412.600500px;}
.y12_c00052{bottom:435.240000px;}
.y11_c00052{bottom:457.621500px;}
.y10_c00052{bottom:481.207500px;}
.yf_c00052{bottom:503.550000px;}
.ye_c00052{bottom:526.369500px;}
.yd_c00052{bottom:549.120000px;}
.yc_c00052{bottom:615.402000px;}
.yb_c00052{bottom:638.280000px;}
.ya_c00052{bottom:661.230000px;}
.y9_c00052{bottom:683.833500px;}
.y8_c00052{bottom:706.797000px;}
.y7_c00052{bottom:729.648000px;}
.y6_c00052{bottom:752.572500px;}
.y5_c00052{bottom:774.286500px;}
.y4_c00052{bottom:798.024000px;}
.y3_c00052{bottom:845.392500px;}
.y2_c00052{bottom:929.880000px;}
.y1_c00052{bottom:997.380000px;}
.h15_c00052{height:22.050000px;}
.h3_c00052{height:28.350000px;}
.h2_c00052{height:35.700000px;}
.h13_c00052{height:38.850000px;}
.h10_c00052{height:48.300000px;}
.h11_c00052{height:50.400000px;}
.he_c00052{height:51.450000px;}
.h14_c00052{height:51.452084px;}
.h16_c00052{height:52.500000px;}
.h12_c00052{height:54.600000px;}
.hf_c00052{height:60.900000px;}
.h9_c00052{height:67.200000px;}
.hc_c00052{height:68.250000px;}
.h6_c00052{height:69.300000px;}
.hb_c00052{height:70.350000px;}
.h7_c00052{height:71.400000px;}
.h5_c00052{height:72.450000px;}
.ha_c00052{height:73.500000px;}
.hd_c00052{height:74.550000px;}
.h8_c00052{height:77.700000px;}
.h4_c00052{height:119.700000px;}
.h1_c00052{height:1005.000000px;}
.h0_c00052{height:1005.150000px;}
.w0_c00052{width:732.750000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:21.870000px;}
.x6d_c00052{left:81.000000px;}
.x77_c00052{left:83.430000px;}
.x9e_c00052{left:94.230000px;}
.x94_c00052{left:101.250000px;}
.x80_c00052{left:103.680000px;}
.xa6_c00052{left:105.166500px;}
.x6e_c00052{left:119.340000px;}
.x8f_c00052{left:124.200000px;}
.x6b_c00052{left:127.170000px;}
.x3f_c00052{left:128.250000px;}
.x17_c00052{left:131.760000px;}
.x52_c00052{left:133.380000px;}
.x95_c00052{left:134.730000px;}
.xf_c00052{left:136.350000px;}
.x5_c00052{left:137.700000px;}
.x45_c00052{left:138.780000px;}
.x89_c00052{left:140.130000px;}
.x78_c00052{left:144.720000px;}
.x6f_c00052{left:149.310000px;}
.xa2_c00052{left:150.390000px;}
.x9c_c00052{left:154.440000px;}
.x2c_c00052{left:156.870000px;}
.x81_c00052{left:159.030000px;}
.x2_c00052{left:160.920000px;}
.x25_c00052{left:163.350000px;}
.x39_c00052{left:164.970000px;}
.x46_c00052{left:166.590000px;}
.x96_c00052{left:167.940000px;}
.x63_c00052{left:170.640000px;}
.x10_c00052{left:172.260000px;}
.x33_c00052{left:173.610000px;}
.x82_c00052{left:175.230000px;}
.x2d_c00052{left:177.660000px;}
.x70_c00052{left:183.870000px;}
.x4b_c00052{left:185.490000px;}
.x26_c00052{left:187.380000px;}
.x83_c00052{left:192.240000px;}
.x47_c00052{left:196.560000px;}
.x53_c00052{left:197.640000px;}
.x3a_c00052{left:201.960000px;}
.x20_c00052{left:204.120000px;}
.x40_c00052{left:206.280000px;}
.x4c_c00052{left:207.360000px;}
.x6_c00052{left:208.710000px;}
.x79_c00052{left:210.600000px;}
.x18_c00052{left:212.220000px;}
.x5e_c00052{left:214.650000px;}
.x4f_c00052{left:216.540000px;}
.x2e_c00052{left:218.700000px;}
.x54_c00052{left:219.780000px;}
.x8a_c00052{left:223.290000px;}
.x64_c00052{left:224.370000px;}
.x97_c00052{left:228.420000px;}
.x50_c00052{left:231.120000px;}
.x19_c00052{left:234.900000px;}
.x84_c00052{left:237.060000px;}
.x67_c00052{left:238.680000px;}
.x7_c00052{left:241.650000px;}
.x11_c00052{left:245.430000px;}
.x7a_c00052{left:249.210000px;}
.x98_c00052{left:253.800000px;}
.x21_c00052{left:255.150000px;}
.x3b_c00052{left:256.770000px;}
.x1a_c00052{left:258.390000px;}
.x68_c00052{left:260.820000px;}
.x55_c00052{left:262.980000px;}
.x5f_c00052{left:264.870000px;}
.x4d_c00052{left:267.840000px;}
.x2f_c00052{left:270.270000px;}
.x8_c00052{left:271.890000px;}
.x7b_c00052{left:276.210000px;}
.x27_c00052{left:279.450000px;}
.x34_c00052{left:280.800000px;}
.x65_c00052{left:284.040000px;}
.x85_c00052{left:286.740000px;}
.x71_c00052{left:288.360000px;}
.x51_c00052{left:292.140000px;}
.x5a_c00052{left:294.300000px;}
.x22_c00052{left:295.380000px;}
.xac_c00052{left:298.620000px;}
.x41_c00052{left:301.590000px;}
.x1b_c00052{left:302.940000px;}
.x56_c00052{left:308.880000px;}
.x35_c00052{left:310.770000px;}
.x4e_c00052{left:312.660000px;}
.x66_c00052{left:314.550000px;}
.x69_c00052{left:316.980000px;}
.x72_c00052{left:318.330000px;}
.x9_c00052{left:320.490000px;}
.x1c_c00052{left:323.190000px;}
.x28_c00052{left:326.430000px;}
.x23_c00052{left:333.450000px;}
.x48_c00052{left:335.070000px;}
.x30_c00052{left:336.420000px;}
.x57_c00052{left:338.040000px;}
.x12_c00052{left:339.120000px;}
.xa_c00052{left:340.200000px;}
.x86_c00052{left:347.490000px;}
.x6c_c00052{left:348.840000px;}
.x1d_c00052{left:349.920000px;}
.x99_c00052{left:351.000000px;}
.x42_c00052{left:352.350000px;}
.x29_c00052{left:353.970000px;}
.x60_c00052{left:360.180000px;}
.x58_c00052{left:363.960000px;}
.x5b_c00052{left:370.710000px;}
.x13_c00052{left:372.600000px;}
.x31_c00052{left:374.760000px;}
.x9a_c00052{left:378.270000px;}
.x61_c00052{left:381.780000px;}
.x3c_c00052{left:383.670000px;}
.x3_c00052{left:384.750000px;}
.xb_c00052{left:385.830000px;}
.x24_c00052{left:387.720000px;}
.x7c_c00052{left:388.800000px;}
.x6a_c00052{left:390.420000px;}
.xa7_c00052{left:392.143500px;}
.x14_c00052{left:395.280000px;}
.x90_c00052{left:396.360000px;}
.x43_c00052{left:398.520000px;}
.x36_c00052{left:400.410000px;}
.xc_c00052{left:402.030000px;}
.x8b_c00052{left:404.730000px;}
.x59_c00052{left:405.810000px;}
.x5c_c00052{left:406.890000px;}
.x44_c00052{left:408.780000px;}
.x1e_c00052{left:410.130000px;}
.x2a_c00052{left:411.480000px;}
.x3d_c00052{left:413.100000px;}
.x62_c00052{left:417.420000px;}
.x49_c00052{left:418.500000px;}
.xd_c00052{left:420.660000px;}
.xa8_c00052{left:424.816500px;}
.x37_c00052{left:426.330000px;}
.x73_c00052{left:428.490000px;}
.x2b_c00052{left:432.540000px;}
.x4a_c00052{left:439.290000px;}
.x8c_c00052{left:442.800000px;}
.x91_c00052{left:444.150000px;}
.x32_c00052{left:445.230000px;}
.x3e_c00052{left:448.740000px;}
.xa3_c00052{left:449.820000px;}
.x15_c00052{left:455.220000px;}
.xe_c00052{left:457.380000px;}
.x5d_c00052{left:458.460000px;}
.x74_c00052{left:460.620000px;}
.x4_c00052{left:463.860000px;}
.x38_c00052{left:465.210000px;}
.x1f_c00052{left:468.180000px;}
.xa4_c00052{left:469.260000px;}
.x7d_c00052{left:479.250000px;}
.x16_c00052{left:483.840000px;}
.x9f_c00052{left:487.890000px;}
.x75_c00052{left:493.560000px;}
.x8d_c00052{left:494.910000px;}
.xa9_c00052{left:498.805500px;}
.x92_c00052{left:503.010000px;}
.x87_c00052{left:505.710000px;}
.xa0_c00052{left:509.220000px;}
.x9b_c00052{left:514.620000px;}
.x76_c00052{left:524.610000px;}
.x93_c00052{left:527.850000px;}
.x9d_c00052{left:534.870000px;}
.x7e_c00052{left:539.460000px;}
.x88_c00052{left:545.670000px;}
.x8e_c00052{left:552.960000px;}
.xaa_c00052{left:556.819500px;}
.x7f_c00052{left:559.170000px;}
.xa5_c00052{left:563.760000px;}
.xa1_c00052{left:564.840000px;}
.xab_c00052{left:596.004000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
.fs13_c00052{font-size:19.600000pt;}
.fs1_c00052{font-size:25.200000pt;}
.fs0_c00052{font-size:31.733333pt;}
.fs11_c00052{font-size:34.533333pt;}
.fse_c00052{font-size:42.933333pt;}
.fsf_c00052{font-size:44.800000pt;}
.fsc_c00052{font-size:45.733333pt;}
.fs12_c00052{font-size:45.735185pt;}
.fs14_c00052{font-size:46.666667pt;}
.fs10_c00052{font-size:48.533333pt;}
.fsd_c00052{font-size:54.133333pt;}
.fs7_c00052{font-size:59.733333pt;}
.fsa_c00052{font-size:60.666667pt;}
.fs4_c00052{font-size:61.600000pt;}
.fs9_c00052{font-size:62.533333pt;}
.fs5_c00052{font-size:63.466667pt;}
.fs3_c00052{font-size:64.400000pt;}
.fs8_c00052{font-size:65.333333pt;}
.fsb_c00052{font-size:66.266667pt;}
.fs6_c00052{font-size:69.066667pt;}
.fs2_c00052{font-size:106.400000pt;}
.y0_c00052{bottom:0.000000pt;}
.y20_c00052{bottom:128.640000pt;}
.y31_c00052{bottom:132.066667pt;}
.y1f_c00052{bottom:136.080000pt;}
.y30_c00052{bottom:138.960000pt;}
.y21_c00052{bottom:144.001333pt;}
.y22_c00052{bottom:144.256285pt;}
.y23_c00052{bottom:144.541297pt;}
.y24_c00052{bottom:145.012117pt;}
.y25_c00052{bottom:145.208689pt;}
.y26_c00052{bottom:145.448533pt;}
.y27_c00052{bottom:145.856857pt;}
.y28_c00052{bottom:145.973245pt;}
.y29_c00052{bottom:146.297149pt;}
.y2a_c00052{bottom:146.558533pt;}
.y2b_c00052{bottom:146.990305pt;}
.y2c_c00052{bottom:147.150445pt;}
.y2d_c00052{bottom:147.379297pt;}
.y2e_c00052{bottom:147.614557pt;}
.y2f_c00052{bottom:147.928033pt;}
.y1e_c00052{bottom:163.558667pt;}
.y1d_c00052{bottom:179.860000pt;}
.y1c_c00052{bottom:195.236000pt;}
.y1b_c00052{bottom:211.285333pt;}
.y1a_c00052{bottom:226.678667pt;}
.y19_c00052{bottom:242.520000pt;}
.y18_c00052{bottom:258.306667pt;}
.y17_c00052{bottom:274.145333pt;}
.y16_c00052{bottom:289.732000pt;}
.y15_c00052{bottom:326.657333pt;}
.y14_c00052{bottom:346.932000pt;}
.y13_c00052{bottom:366.756000pt;}
.y12_c00052{bottom:386.880000pt;}
.y11_c00052{bottom:406.774667pt;}
.y10_c00052{bottom:427.740000pt;}
.yf_c00052{bottom:447.600000pt;}
.ye_c00052{bottom:467.884000pt;}
.yd_c00052{bottom:488.106667pt;}
.yc_c00052{bottom:547.024000pt;}
.yb_c00052{bottom:567.360000pt;}
.ya_c00052{bottom:587.760000pt;}
.y9_c00052{bottom:607.852000pt;}
.y8_c00052{bottom:628.264000pt;}
.y7_c00052{bottom:648.576000pt;}
.y6_c00052{bottom:668.953333pt;}
.y5_c00052{bottom:688.254667pt;}
.y4_c00052{bottom:709.354667pt;}
.y3_c00052{bottom:751.460000pt;}
.y2_c00052{bottom:826.560000pt;}
.y1_c00052{bottom:886.560000pt;}
.h15_c00052{height:19.600000pt;}
.h3_c00052{height:25.200000pt;}
.h2_c00052{height:31.733333pt;}
.h13_c00052{height:34.533333pt;}
.h10_c00052{height:42.933333pt;}
.h11_c00052{height:44.800000pt;}
.he_c00052{height:45.733333pt;}
.h14_c00052{height:45.735185pt;}
.h16_c00052{height:46.666667pt;}
.h12_c00052{height:48.533333pt;}
.hf_c00052{height:54.133333pt;}
.h9_c00052{height:59.733333pt;}
.hc_c00052{height:60.666667pt;}
.h6_c00052{height:61.600000pt;}
.hb_c00052{height:62.533333pt;}
.h7_c00052{height:63.466667pt;}
.h5_c00052{height:64.400000pt;}
.ha_c00052{height:65.333333pt;}
.hd_c00052{height:66.266667pt;}
.h8_c00052{height:69.066667pt;}
.h4_c00052{height:106.400000pt;}
.h1_c00052{height:893.333333pt;}
.h0_c00052{height:893.466667pt;}
.w0_c00052{width:651.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:19.440000pt;}
.x6d_c00052{left:72.000000pt;}
.x77_c00052{left:74.160000pt;}
.x9e_c00052{left:83.760000pt;}
.x94_c00052{left:90.000000pt;}
.x80_c00052{left:92.160000pt;}
.xa6_c00052{left:93.481333pt;}
.x6e_c00052{left:106.080000pt;}
.x8f_c00052{left:110.400000pt;}
.x6b_c00052{left:113.040000pt;}
.x3f_c00052{left:114.000000pt;}
.x17_c00052{left:117.120000pt;}
.x52_c00052{left:118.560000pt;}
.x95_c00052{left:119.760000pt;}
.xf_c00052{left:121.200000pt;}
.x5_c00052{left:122.400000pt;}
.x45_c00052{left:123.360000pt;}
.x89_c00052{left:124.560000pt;}
.x78_c00052{left:128.640000pt;}
.x6f_c00052{left:132.720000pt;}
.xa2_c00052{left:133.680000pt;}
.x9c_c00052{left:137.280000pt;}
.x2c_c00052{left:139.440000pt;}
.x81_c00052{left:141.360000pt;}
.x2_c00052{left:143.040000pt;}
.x25_c00052{left:145.200000pt;}
.x39_c00052{left:146.640000pt;}
.x46_c00052{left:148.080000pt;}
.x96_c00052{left:149.280000pt;}
.x63_c00052{left:151.680000pt;}
.x10_c00052{left:153.120000pt;}
.x33_c00052{left:154.320000pt;}
.x82_c00052{left:155.760000pt;}
.x2d_c00052{left:157.920000pt;}
.x70_c00052{left:163.440000pt;}
.x4b_c00052{left:164.880000pt;}
.x26_c00052{left:166.560000pt;}
.x83_c00052{left:170.880000pt;}
.x47_c00052{left:174.720000pt;}
.x53_c00052{left:175.680000pt;}
.x3a_c00052{left:179.520000pt;}
.x20_c00052{left:181.440000pt;}
.x40_c00052{left:183.360000pt;}
.x4c_c00052{left:184.320000pt;}
.x6_c00052{left:185.520000pt;}
.x79_c00052{left:187.200000pt;}
.x18_c00052{left:188.640000pt;}
.x5e_c00052{left:190.800000pt;}
.x4f_c00052{left:192.480000pt;}
.x2e_c00052{left:194.400000pt;}
.x54_c00052{left:195.360000pt;}
.x8a_c00052{left:198.480000pt;}
.x64_c00052{left:199.440000pt;}
.x97_c00052{left:203.040000pt;}
.x50_c00052{left:205.440000pt;}
.x19_c00052{left:208.800000pt;}
.x84_c00052{left:210.720000pt;}
.x67_c00052{left:212.160000pt;}
.x7_c00052{left:214.800000pt;}
.x11_c00052{left:218.160000pt;}
.x7a_c00052{left:221.520000pt;}
.x98_c00052{left:225.600000pt;}
.x21_c00052{left:226.800000pt;}
.x3b_c00052{left:228.240000pt;}
.x1a_c00052{left:229.680000pt;}
.x68_c00052{left:231.840000pt;}
.x55_c00052{left:233.760000pt;}
.x5f_c00052{left:235.440000pt;}
.x4d_c00052{left:238.080000pt;}
.x2f_c00052{left:240.240000pt;}
.x8_c00052{left:241.680000pt;}
.x7b_c00052{left:245.520000pt;}
.x27_c00052{left:248.400000pt;}
.x34_c00052{left:249.600000pt;}
.x65_c00052{left:252.480000pt;}
.x85_c00052{left:254.880000pt;}
.x71_c00052{left:256.320000pt;}
.x51_c00052{left:259.680000pt;}
.x5a_c00052{left:261.600000pt;}
.x22_c00052{left:262.560000pt;}
.xac_c00052{left:265.440000pt;}
.x41_c00052{left:268.080000pt;}
.x1b_c00052{left:269.280000pt;}
.x56_c00052{left:274.560000pt;}
.x35_c00052{left:276.240000pt;}
.x4e_c00052{left:277.920000pt;}
.x66_c00052{left:279.600000pt;}
.x69_c00052{left:281.760000pt;}
.x72_c00052{left:282.960000pt;}
.x9_c00052{left:284.880000pt;}
.x1c_c00052{left:287.280000pt;}
.x28_c00052{left:290.160000pt;}
.x23_c00052{left:296.400000pt;}
.x48_c00052{left:297.840000pt;}
.x30_c00052{left:299.040000pt;}
.x57_c00052{left:300.480000pt;}
.x12_c00052{left:301.440000pt;}
.xa_c00052{left:302.400000pt;}
.x86_c00052{left:308.880000pt;}
.x6c_c00052{left:310.080000pt;}
.x1d_c00052{left:311.040000pt;}
.x99_c00052{left:312.000000pt;}
.x42_c00052{left:313.200000pt;}
.x29_c00052{left:314.640000pt;}
.x60_c00052{left:320.160000pt;}
.x58_c00052{left:323.520000pt;}
.x5b_c00052{left:329.520000pt;}
.x13_c00052{left:331.200000pt;}
.x31_c00052{left:333.120000pt;}
.x9a_c00052{left:336.240000pt;}
.x61_c00052{left:339.360000pt;}
.x3c_c00052{left:341.040000pt;}
.x3_c00052{left:342.000000pt;}
.xb_c00052{left:342.960000pt;}
.x24_c00052{left:344.640000pt;}
.x7c_c00052{left:345.600000pt;}
.x6a_c00052{left:347.040000pt;}
.xa7_c00052{left:348.572000pt;}
.x14_c00052{left:351.360000pt;}
.x90_c00052{left:352.320000pt;}
.x43_c00052{left:354.240000pt;}
.x36_c00052{left:355.920000pt;}
.xc_c00052{left:357.360000pt;}
.x8b_c00052{left:359.760000pt;}
.x59_c00052{left:360.720000pt;}
.x5c_c00052{left:361.680000pt;}
.x44_c00052{left:363.360000pt;}
.x1e_c00052{left:364.560000pt;}
.x2a_c00052{left:365.760000pt;}
.x3d_c00052{left:367.200000pt;}
.x62_c00052{left:371.040000pt;}
.x49_c00052{left:372.000000pt;}
.xd_c00052{left:373.920000pt;}
.xa8_c00052{left:377.614667pt;}
.x37_c00052{left:378.960000pt;}
.x73_c00052{left:380.880000pt;}
.x2b_c00052{left:384.480000pt;}
.x4a_c00052{left:390.480000pt;}
.x8c_c00052{left:393.600000pt;}
.x91_c00052{left:394.800000pt;}
.x32_c00052{left:395.760000pt;}
.x3e_c00052{left:398.880000pt;}
.xa3_c00052{left:399.840000pt;}
.x15_c00052{left:404.640000pt;}
.xe_c00052{left:406.560000pt;}
.x5d_c00052{left:407.520000pt;}
.x74_c00052{left:409.440000pt;}
.x4_c00052{left:412.320000pt;}
.x38_c00052{left:413.520000pt;}
.x1f_c00052{left:416.160000pt;}
.xa4_c00052{left:417.120000pt;}
.x7d_c00052{left:426.000000pt;}
.x16_c00052{left:430.080000pt;}
.x9f_c00052{left:433.680000pt;}
.x75_c00052{left:438.720000pt;}
.x8d_c00052{left:439.920000pt;}
.xa9_c00052{left:443.382667pt;}
.x92_c00052{left:447.120000pt;}
.x87_c00052{left:449.520000pt;}
.xa0_c00052{left:452.640000pt;}
.x9b_c00052{left:457.440000pt;}
.x76_c00052{left:466.320000pt;}
.x93_c00052{left:469.200000pt;}
.x9d_c00052{left:475.440000pt;}
.x7e_c00052{left:479.520000pt;}
.x88_c00052{left:485.040000pt;}
.x8e_c00052{left:491.520000pt;}
.xaa_c00052{left:494.950667pt;}
.x7f_c00052{left:497.040000pt;}
.xa5_c00052{left:501.120000pt;}
.xa1_c00052{left:502.080000pt;}
.xab_c00052{left:529.781333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma_c00053{transform:matrix(0.008254,-0.000430,0.012995,0.249662,0,0);-ms-transform:matrix(0.008254,-0.000430,0.012995,0.249662,0,0);-webkit-transform:matrix(0.008254,-0.000430,0.012995,0.249662,0,0);}
.m4e_c00053{transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);}
.med_c00053{transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);}
.m88_c00053{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);}
.meb_c00053{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);}
.mee_c00053{transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{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);}
.m7_c00053{transform:matrix(0.023883,-0.001243,0.012995,0.249662,0,0);-ms-transform:matrix(0.023883,-0.001243,0.012995,0.249662,0,0);-webkit-transform:matrix(0.023883,-0.001243,0.012995,0.249662,0,0);}
.m5_c00053{transform:matrix(0.027233,-0.001418,0.012995,0.249662,0,0);-ms-transform:matrix(0.027233,-0.001418,0.012995,0.249662,0,0);-webkit-transform:matrix(0.027233,-0.001418,0.012995,0.249662,0,0);}
.m12_c00053{transform:matrix(0.033425,-0.001740,0.012995,0.249662,0,0);-ms-transform:matrix(0.033425,-0.001740,0.012995,0.249662,0,0);-webkit-transform:matrix(0.033425,-0.001740,0.012995,0.249662,0,0);}
.m76_c00053{transform:matrix(0.065440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065440,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.069636,-0.003625,0.012995,0.249662,0,0);-ms-transform:matrix(0.069636,-0.003625,0.012995,0.249662,0,0);-webkit-transform:matrix(0.069636,-0.003625,0.012995,0.249662,0,0);}
.me4_c00053{transform:matrix(0.075460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075460,0.000000,0.000000,0.250000,0,0);}
.mc0_c00053{transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);}
.mcf_c00053{transform:matrix(0.094285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094285,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.108928,-0.005670,0.012995,0.249662,0,0);-ms-transform:matrix(0.108928,-0.005670,0.012995,0.249662,0,0);-webkit-transform:matrix(0.108928,-0.005670,0.012995,0.249662,0,0);}
.m64_c00053{transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.131815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131815,0.000000,0.000000,0.250000,0,0);}
.me7_c00053{transform:matrix(0.132205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132205,0.000000,0.000000,0.250000,0,0);}
.m39_c00053{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);}
.m4a_c00053{transform:matrix(0.134985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134985,0.000000,0.000000,0.250000,0,0);}
.m2c_c00053{transform:matrix(0.135410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135410,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140885,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.142240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142240,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.143360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143360,0.000000,0.000000,0.250000,0,0);}
.m37_c00053{transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144380,0.000000,0.000000,0.250000,0,0);}
.m3d_c00053{transform:matrix(0.144985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144985,0.000000,0.000000,0.250000,0,0);}
.m4c_c00053{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);}
.m3c_c00053{transform:matrix(0.147680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147680,0.000000,0.000000,0.250000,0,0);}
.mb3_c00053{transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);}
.mc6_c00053{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);}
.m58_c00053{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);}
.m48_c00053{transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);}
.mb1_c00053{transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151265,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{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);}
.mdd_c00053{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);}
.mb7_c00053{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);}
.mb5_c00053{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);}
.m22_c00053{transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);}
.m96_c00053{transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00053{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);}
.m97_c00053{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);}
.m24_c00053{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);}
.m35_c00053{transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{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);}
.m2d_c00053{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_c00053{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);}
.md6_c00053{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);}
.m56_c00053{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);}
.mb4_c00053{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);}
.m9e_c00053{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);}
.m98_c00053{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.mf0_c00053{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);}
.m6a_c00053{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);}
.m1a_c00053{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);}
.m54_c00053{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);}
.m2f_c00053{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);}
.m51_c00053{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);}
.m65_c00053{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);}
.mb0_c00053{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);}
.m90_c00053{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);}
.m27_c00053{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);}
.mc8_c00053{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);}
.m94_c00053{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);}
.m53_c00053{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);}
.m3a_c00053{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);}
.m49_c00053{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m91_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);}
.mbd_c00053{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);}
.md2_c00053{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);}
.m99_c00053{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);}
.me8_c00053{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);}
.m19_c00053{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);}
.m38_c00053{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);}
.mdf_c00053{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);}
.m28_c00053{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);}
.m1e_c00053{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);}
.m55_c00053{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);}
.me2_c00053{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);}
.mc5_c00053{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);}
.m52_c00053{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);}
.m1_c00053{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);}
.m85_c00053{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);}
.m36_c00053{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);}
.me0_c00053{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);}
.m10_c00053{transform:matrix(0.182488,-0.009499,0.012995,0.249662,0,0);-ms-transform:matrix(0.182488,-0.009499,0.012995,0.249662,0,0);-webkit-transform:matrix(0.182488,-0.009499,0.012995,0.249662,0,0);}
.ma6_c00053{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);}
.mb2_c00053{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);}
.m57_c00053{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);}
.mea_c00053{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);}
.m15_c00053{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);}
.m8a_c00053{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);}
.m8c_c00053{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);}
.m9c_c00053{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);}
.mad_c00053{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);}
.mc4_c00053{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);}
.m9a_c00053{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);}
.mac_c00053{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);}
.m6b_c00053{transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);}
.mae_c00053{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);}
.md7_c00053{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);}
.ma7_c00053{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);}
.maf_c00053{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);}
.mde_c00053{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);}
.m8d_c00053{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);}
.m66_c00053{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);}
.m31_c00053{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);}
.mc2_c00053{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);}
.m30_c00053{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);}
.m80_c00053{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);}
.m71_c00053{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);}
.m9f_c00053{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);}
.ma9_c00053{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);}
.m5e_c00053{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);}
.md4_c00053{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);}
.m18_c00053{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);}
.m6e_c00053{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);}
.ma3_c00053{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);}
.m1f_c00053{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);}
.m6c_c00053{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);}
.mf2_c00053{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);}
.m1b_c00053{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);}
.m93_c00053{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);}
.mce_c00053{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);}
.m3f_c00053{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);}
.m7f_c00053{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);}
.ma4_c00053{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);}
.mef_c00053{transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);}
.ma8_c00053{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);}
.m2e_c00053{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);}
.m79_c00053{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);}
.mba_c00053{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);}
.m46_c00053{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);}
.mc3_c00053{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);}
.ma1_c00053{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);}
.mc9_c00053{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);}
.m7d_c00053{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);}
.m8b_c00053{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);}
.mf1_c00053{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);}
.mec_c00053{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);}
.mab_c00053{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);}
.m3e_c00053{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);}
.mdc_c00053{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);}
.m69_c00053{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);}
.m23_c00053{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);}
.m14_c00053{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);}
.ma0_c00053{transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);}
.m68_c00053{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);}
.m9_c00053{transform:matrix(0.209092,-0.010884,0.012995,0.249662,0,0);-ms-transform:matrix(0.209092,-0.010884,0.012995,0.249662,0,0);-webkit-transform:matrix(0.209092,-0.010884,0.012995,0.249662,0,0);}
.m81_c00053{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);}
.m47_c00053{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);}
.m1d_c00053{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);}
.m86_c00053{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);}
.m17_c00053{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);}
.mc7_c00053{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{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);}
.maa_c00053{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);}
.m2b_c00053{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);}
.m43_c00053{transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00053{transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{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);}
.m33_c00053{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);}
.ma5_c00053{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);}
.m8f_c00053{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);}
.m9b_c00053{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);}
.mda_c00053{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);}
.m84_c00053{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);}
.mc1_c00053{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);}
.md9_c00053{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);}
.m5c_c00053{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);}
.m82_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);}
.m75_c00053{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);}
.me9_c00053{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);}
.mcb_c00053{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);}
.m6d_c00053{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);}
.m29_c00053{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);}
.mdb_c00053{transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);}
.mbc_c00053{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);}
.m60_c00053{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);}
.m7b_c00053{transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);}
.m8e_c00053{transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.md3_c00053{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);}
.mb9_c00053{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);}
.mc_c00053{transform:matrix(0.237948,-0.012386,0.012995,0.249662,0,0);-ms-transform:matrix(0.237948,-0.012386,0.012995,0.249662,0,0);-webkit-transform:matrix(0.237948,-0.012386,0.012995,0.249662,0,0);}
.m83_c00053{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);}
.me5_c00053{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);}
.m32_c00053{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.mbe_c00053{transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);}
.md0_c00053{transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);}
.mb8_c00053{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00053{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.md8_c00053{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);}
.m40_c00053{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.mcd_c00053{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.me6_c00053{transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00053{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);}
.m89_c00053{transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{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);}
.me1_c00053{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);}
.m11_c00053{transform:matrix(0.257571,-0.013407,0.012995,0.249662,0,0);-ms-transform:matrix(0.257571,-0.013407,0.012995,0.249662,0,0);-webkit-transform:matrix(0.257571,-0.013407,0.012995,0.249662,0,0);}
.mf_c00053{transform:matrix(0.257576,-0.013407,0.012995,0.249662,0,0);-ms-transform:matrix(0.257576,-0.013407,0.012995,0.249662,0,0);-webkit-transform:matrix(0.257576,-0.013407,0.012995,0.249662,0,0);}
.md5_c00053{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);}
.m7a_c00053{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);}
.m78_c00053{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);}
.mbb_c00053{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);}
.m44_c00053{transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);}
.mbf_c00053{transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.271430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271430,0.000000,0.000000,0.250000,0,0);}
.md1_c00053{transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{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);}
.m72_c00053{transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);}
.m5d_c00053{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);}
.md_c00053{transform:matrix(0.284874,-0.014828,0.012995,0.249662,0,0);-ms-transform:matrix(0.284874,-0.014828,0.012995,0.249662,0,0);-webkit-transform:matrix(0.284874,-0.014828,0.012995,0.249662,0,0);}
.me_c00053{transform:matrix(0.291011,-0.015148,0.012995,0.249662,0,0);-ms-transform:matrix(0.291011,-0.015148,0.012995,0.249662,0,0);-webkit-transform:matrix(0.291011,-0.015148,0.012995,0.249662,0,0);}
.m70_c00053{transform:matrix(0.292970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292970,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297685,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{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);}
.mb_c00053{transform:matrix(0.300059,-0.015619,0.012995,0.249662,0,0);-ms-transform:matrix(0.300059,-0.015619,0.012995,0.249662,0,0);-webkit-transform:matrix(0.300059,-0.015619,0.012995,0.249662,0,0);}
.m7c_c00053{transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313780,0.000000,0.000000,0.250000,0,0);}
.mca_c00053{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.321595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321595,0.000000,0.000000,0.250000,0,0);}
.m61_c00053{transform:matrix(0.331350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331350,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340935,0.000000,0.000000,0.250000,0,0);}
.m92_c00053{transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);}
.me3_c00053{transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351110,0.000000,0.000000,0.250000,0,0);}
.m63_c00053{transform:matrix(0.354780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354780,0.000000,0.000000,0.250000,0,0);}
.mf3_c00053{transform:matrix(0.357370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357370,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362400,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);}
.m62_c00053{transform:matrix(0.401595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401595,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);}
.m87_c00053{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);}
.m73_c00053{transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.523756,-0.027263,0.012995,0.249662,0,0);-ms-transform:matrix(0.523756,-0.027263,0.012995,0.249662,0,0);-webkit-transform:matrix(0.523756,-0.027263,0.012995,0.249662,0,0);}
.m8_c00053{transform:matrix(0.529338,-0.027553,0.012995,0.249662,0,0);-ms-transform:matrix(0.529338,-0.027553,0.012995,0.249662,0,0);-webkit-transform:matrix(0.529338,-0.027553,0.012995,0.249662,0,0);}
.m7e_c00053{transform:matrix(0.557745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557745,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.837490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837490,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{transform:matrix(0.876175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876175,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.908225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.908225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.908225,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;}
.fs0_c00053{font-size:22.050000px;}
.fs1_c00053{font-size:35.712582px;}
.fs9_c00053{font-size:60.900000px;}
.fsc_c00053{font-size:61.950000px;}
.fs11_c00053{font-size:63.000000px;}
.fs3_c00053{font-size:63.022204px;}
.fse_c00053{font-size:64.050000px;}
.fs5_c00053{font-size:66.150000px;}
.fsf_c00053{font-size:67.200000px;}
.fs4_c00053{font-size:69.300000px;}
.fs7_c00053{font-size:70.350000px;}
.fsd_c00053{font-size:71.400000px;}
.fs10_c00053{font-size:74.550000px;}
.fsb_c00053{font-size:75.600000px;}
.fs6_c00053{font-size:77.700000px;}
.fs8_c00053{font-size:79.800000px;}
.fsa_c00053{font-size:89.250000px;}
.fs2_c00053{font-size:92.432565px;}
.fs12_c00053{font-size:112.350000px;}
.y0_c00053{bottom:0.000000px;}
.y2d_c00053{bottom:146.359500px;}
.y2c_c00053{bottom:202.854000px;}
.y2b_c00053{bottom:229.290000px;}
.y2a_c00053{bottom:257.782500px;}
.y29_c00053{bottom:280.698000px;}
.y28_c00053{bottom:303.309000px;}
.y27_c00053{bottom:325.890000px;}
.y26_c00053{bottom:348.840000px;}
.y25_c00053{bottom:371.694000px;}
.y24_c00053{bottom:394.404000px;}
.y23_c00053{bottom:416.983500px;}
.y22_c00053{bottom:440.305500px;}
.y21_c00053{bottom:462.663000px;}
.y20_c00053{bottom:485.131500px;}
.y1f_c00053{bottom:507.816000px;}
.y1e_c00053{bottom:530.373000px;}
.y1d_c00053{bottom:597.694500px;}
.y1c_c00053{bottom:620.794500px;}
.y1b_c00053{bottom:643.087500px;}
.y1a_c00053{bottom:666.426000px;}
.y19_c00053{bottom:688.908000px;}
.y18_c00053{bottom:711.643500px;}
.y17_c00053{bottom:734.646000px;}
.y16_c00053{bottom:757.365000px;}
.y15_c00053{bottom:780.226500px;}
.y14_c00053{bottom:802.836000px;}
.y9_c00053{bottom:837.100233px;}
.y11_c00053{bottom:837.820565px;}
.ya_c00053{bottom:839.788971px;}
.y12_c00053{bottom:841.852134px;}
.yb_c00053{bottom:843.624933px;}
.yc_c00053{bottom:847.536633px;}
.y13_c00053{bottom:847.948013px;}
.yd_c00053{bottom:849.716421px;}
.ye_c00053{bottom:851.449893px;}
.yf_c00053{bottom:853.434135px;}
.y10_c00053{bottom:854.802333px;}
.y4_c00053{bottom:873.454500px;}
.y5_c00053{bottom:873.822192px;}
.y6_c00053{bottom:881.314872px;}
.y7_c00053{bottom:886.494774px;}
.y8_c00053{bottom:891.138114px;}
.y3_c00053{bottom:940.273500px;}
.y2_c00053{bottom:949.590000px;}
.y1_c00053{bottom:955.129500px;}
.h2_c00053{height:22.050000px;}
.h3_c00053{height:35.712582px;}
.hb_c00053{height:60.900000px;}
.he_c00053{height:61.950000px;}
.h13_c00053{height:63.000000px;}
.h5_c00053{height:63.022204px;}
.h10_c00053{height:64.050000px;}
.h7_c00053{height:66.150000px;}
.h11_c00053{height:67.200000px;}
.h6_c00053{height:69.300000px;}
.h9_c00053{height:70.350000px;}
.hf_c00053{height:71.400000px;}
.h12_c00053{height:74.550000px;}
.hd_c00053{height:75.600000px;}
.h8_c00053{height:77.700000px;}
.ha_c00053{height:79.800000px;}
.hc_c00053{height:89.250000px;}
.h4_c00053{height:92.432565px;}
.h14_c00053{height:112.350000px;}
.h0_c00053{height:1008.450000px;}
.h1_c00053{height:1008.750000px;}
.w0_c00053{width:699.000000px;}
.x0_c00053{left:0.000000px;}
.x5c_c00053{left:81.270000px;}
.x26_c00053{left:85.860000px;}
.x4_c00053{left:91.357500px;}
.x11_c00053{left:93.075586px;}
.x9_c00053{left:94.795949px;}
.x61_c00053{left:96.660000px;}
.x5_c00053{left:98.421429px;}
.x14_c00053{left:105.570000px;}
.x42_c00053{left:117.990000px;}
.xa_c00053{left:146.450742px;}
.x62_c00053{left:158.220000px;}
.x12_c00053{left:172.058163px;}
.x50_c00053{left:175.770000px;}
.x15_c00053{left:179.010000px;}
.x1d_c00053{left:180.090000px;}
.x63_c00053{left:181.710000px;}
.x36_c00053{left:200.610000px;}
.x43_c00053{left:202.500000px;}
.x16_c00053{left:203.580000px;}
.x5d_c00053{left:206.010000px;}
.x21_c00053{left:211.950000px;}
.x2f_c00053{left:213.030000px;}
.x3d_c00053{left:214.650000px;}
.x49_c00053{left:217.080000px;}
.xb_c00053{left:220.145474px;}
.x71_c00053{left:221.940000px;}
.x54_c00053{left:223.020000px;}
.x64_c00053{left:224.100000px;}
.x5e_c00053{left:225.720000px;}
.x74_c00053{left:227.880000px;}
.x27_c00053{left:230.850000px;}
.x85_c00053{left:231.930000px;}
.x37_c00053{left:234.360000px;}
.x1e_c00053{left:236.790000px;}
.x30_c00053{left:238.950000px;}
.x6_c00053{left:242.367339px;}
.x55_c00053{left:245.160000px;}
.x7d_c00053{left:247.860000px;}
.x38_c00053{left:248.940000px;}
.x44_c00053{left:250.830000px;}
.x51_c00053{left:254.610000px;}
.x7a_c00053{left:256.500000px;}
.x17_c00053{left:258.660000px;}
.x22_c00053{left:262.710000px;}
.x5a_c00053{left:264.870000px;}
.x72_c00053{left:265.950000px;}
.x80_c00053{left:267.840000px;}
.x67_c00053{left:269.730000px;}
.x28_c00053{left:272.160000px;}
.x7e_c00053{left:274.590000px;}
.x31_c00053{left:278.370000px;}
.x3e_c00053{left:279.990000px;}
.x4a_c00053{left:283.230000px;}
.x39_c00053{left:285.930000px;}
.x6b_c00053{left:287.010000px;}
.x13_c00053{left:291.449820px;}
.x1f_c00053{left:294.030000px;}
.xc_c00053{left:295.295249px;}
.x86_c00053{left:297.810000px;}
.x45_c00053{left:299.430000px;}
.x32_c00053{left:304.020000px;}
.x65_c00053{left:305.370000px;}
.x3f_c00053{left:308.340000px;}
.x87_c00053{left:314.010000px;}
.x75_c00053{left:315.360000px;}
.x56_c00053{left:316.980000px;}
.x23_c00053{left:319.950000px;}
.x4b_c00053{left:327.780000px;}
.x6e_c00053{left:329.940000px;}
.x84_c00053{left:331.560000px;}
.x18_c00053{left:333.450000px;}
.x29_c00053{left:335.070000px;}
.xd_c00053{left:337.172329px;}
.x3a_c00053{left:339.660000px;}
.x7_c00053{left:341.881226px;}
.x5b_c00053{left:342.900000px;}
.x4c_c00053{left:345.600000px;}
.x66_c00053{left:346.680000px;}
.x6c_c00053{left:349.110000px;}
.x68_c00053{left:354.510000px;}
.x40_c00053{left:358.290000px;}
.x76_c00053{left:362.880000px;}
.x46_c00053{left:367.200000px;}
.xe_c00053{left:370.474993px;}
.x3_c00053{left:374.220000px;}
.x2a_c00053{left:376.110000px;}
.x3b_c00053{left:379.080000px;}
.x77_c00053{left:380.160000px;}
.x4d_c00053{left:383.400000px;}
.x7b_c00053{left:384.480000px;}
.x19_c00053{left:386.910000px;}
.x47_c00053{left:390.150000px;}
.x5f_c00053{left:394.200000px;}
.x2_c00053{left:400.680000px;}
.x24_c00053{left:403.380000px;}
.x33_c00053{left:404.730000px;}
.x2b_c00053{left:406.620000px;}
.xf_c00053{left:408.595335px;}
.x6d_c00053{left:411.210000px;}
.x4e_c00053{left:412.830000px;}
.x60_c00053{left:414.180000px;}
.x69_c00053{left:416.880000px;}
.x3c_c00053{left:418.230000px;}
.x1a_c00053{left:421.200000px;}
.x82_c00053{left:423.360000px;}
.x20_c00053{left:425.790000px;}
.x25_c00053{left:427.140000px;}
.x73_c00053{left:429.030000px;}
.x8_c00053{left:431.086931px;}
.x10_c00053{left:434.880523px;}
.x2c_c00053{left:438.210000px;}
.x7c_c00053{left:441.990000px;}
.x57_c00053{left:443.340000px;}
.x83_c00053{left:447.660000px;}
.x34_c00053{left:449.820000px;}
.x6a_c00053{left:453.600000px;}
.x52_c00053{left:456.840000px;}
.x8a_c00053{left:461.430000px;}
.x1b_c00053{left:464.130000px;}
.x2d_c00053{left:465.480000px;}
.x58_c00053{left:467.100000px;}
.x35_c00053{left:473.580000px;}
.x88_c00053{left:475.200000px;}
.x7f_c00053{left:477.090000px;}
.x81_c00053{left:485.730000px;}
.x59_c00053{left:487.890000px;}
.x8b_c00053{left:488.970000px;}
.x1_c00053{left:490.860000px;}
.x6f_c00053{left:493.560000px;}
.x4f_c00053{left:494.910000px;}
.x48_c00053{left:501.660000px;}
.x1c_c00053{left:504.360000px;}
.x78_c00053{left:507.600000px;}
.x53_c00053{left:511.380000px;}
.x41_c00053{left:516.240000px;}
.x79_c00053{left:526.500000px;}
.x70_c00053{left:534.870000px;}
.x2e_c00053{left:541.080000px;}
.x8c_c00053{left:572.400000px;}
.x89_c00053{left:606.150000px;}
.x8d_c00053{left:611.820000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs0_c00053{font-size:19.600000pt;}
.fs1_c00053{font-size:31.744517pt;}
.fs9_c00053{font-size:54.133333pt;}
.fsc_c00053{font-size:55.066667pt;}
.fs11_c00053{font-size:56.000000pt;}
.fs3_c00053{font-size:56.019737pt;}
.fse_c00053{font-size:56.933333pt;}
.fs5_c00053{font-size:58.800000pt;}
.fsf_c00053{font-size:59.733333pt;}
.fs4_c00053{font-size:61.600000pt;}
.fs7_c00053{font-size:62.533333pt;}
.fsd_c00053{font-size:63.466667pt;}
.fs10_c00053{font-size:66.266667pt;}
.fsb_c00053{font-size:67.200000pt;}
.fs6_c00053{font-size:69.066667pt;}
.fs8_c00053{font-size:70.933333pt;}
.fsa_c00053{font-size:79.333333pt;}
.fs2_c00053{font-size:82.162280pt;}
.fs12_c00053{font-size:99.866667pt;}
.y0_c00053{bottom:0.000000pt;}
.y2d_c00053{bottom:130.097333pt;}
.y2c_c00053{bottom:180.314667pt;}
.y2b_c00053{bottom:203.813333pt;}
.y2a_c00053{bottom:229.140000pt;}
.y29_c00053{bottom:249.509333pt;}
.y28_c00053{bottom:269.608000pt;}
.y27_c00053{bottom:289.680000pt;}
.y26_c00053{bottom:310.080000pt;}
.y25_c00053{bottom:330.394667pt;}
.y24_c00053{bottom:350.581333pt;}
.y23_c00053{bottom:370.652000pt;}
.y22_c00053{bottom:391.382667pt;}
.y21_c00053{bottom:411.256000pt;}
.y20_c00053{bottom:431.228000pt;}
.y1f_c00053{bottom:451.392000pt;}
.y1e_c00053{bottom:471.442667pt;}
.y1d_c00053{bottom:531.284000pt;}
.y1c_c00053{bottom:551.817333pt;}
.y1b_c00053{bottom:571.633333pt;}
.y1a_c00053{bottom:592.378667pt;}
.y19_c00053{bottom:612.362667pt;}
.y18_c00053{bottom:632.572000pt;}
.y17_c00053{bottom:653.018667pt;}
.y16_c00053{bottom:673.213333pt;}
.y15_c00053{bottom:693.534667pt;}
.y14_c00053{bottom:713.632000pt;}
.y9_c00053{bottom:744.089096pt;}
.y11_c00053{bottom:744.729391pt;}
.ya_c00053{bottom:746.479085pt;}
.y12_c00053{bottom:748.313008pt;}
.yb_c00053{bottom:749.888829pt;}
.yc_c00053{bottom:753.365896pt;}
.y13_c00053{bottom:753.731567pt;}
.yd_c00053{bottom:755.303485pt;}
.ye_c00053{bottom:756.844349pt;}
.yf_c00053{bottom:758.608120pt;}
.y10_c00053{bottom:759.824296pt;}
.y4_c00053{bottom:776.404000pt;}
.y5_c00053{bottom:776.730837pt;}
.y6_c00053{bottom:783.390997pt;}
.y7_c00053{bottom:787.995355pt;}
.y8_c00053{bottom:792.122768pt;}
.y3_c00053{bottom:835.798667pt;}
.y2_c00053{bottom:844.080000pt;}
.y1_c00053{bottom:849.004000pt;}
.h2_c00053{height:19.600000pt;}
.h3_c00053{height:31.744517pt;}
.hb_c00053{height:54.133333pt;}
.he_c00053{height:55.066667pt;}
.h13_c00053{height:56.000000pt;}
.h5_c00053{height:56.019737pt;}
.h10_c00053{height:56.933333pt;}
.h7_c00053{height:58.800000pt;}
.h11_c00053{height:59.733333pt;}
.h6_c00053{height:61.600000pt;}
.h9_c00053{height:62.533333pt;}
.hf_c00053{height:63.466667pt;}
.h12_c00053{height:66.266667pt;}
.hd_c00053{height:67.200000pt;}
.h8_c00053{height:69.066667pt;}
.ha_c00053{height:70.933333pt;}
.hc_c00053{height:79.333333pt;}
.h4_c00053{height:82.162280pt;}
.h14_c00053{height:99.866667pt;}
.h0_c00053{height:896.400000pt;}
.h1_c00053{height:896.666667pt;}
.w0_c00053{width:621.333333pt;}
.x0_c00053{left:0.000000pt;}
.x5c_c00053{left:72.240000pt;}
.x26_c00053{left:76.320000pt;}
.x4_c00053{left:81.206667pt;}
.x11_c00053{left:82.733855pt;}
.x9_c00053{left:84.263065pt;}
.x61_c00053{left:85.920000pt;}
.x5_c00053{left:87.485715pt;}
.x14_c00053{left:93.840000pt;}
.x42_c00053{left:104.880000pt;}
.xa_c00053{left:130.178437pt;}
.x62_c00053{left:140.640000pt;}
.x12_c00053{left:152.940589pt;}
.x50_c00053{left:156.240000pt;}
.x15_c00053{left:159.120000pt;}
.x1d_c00053{left:160.080000pt;}
.x63_c00053{left:161.520000pt;}
.x36_c00053{left:178.320000pt;}
.x43_c00053{left:180.000000pt;}
.x16_c00053{left:180.960000pt;}
.x5d_c00053{left:183.120000pt;}
.x21_c00053{left:188.400000pt;}
.x2f_c00053{left:189.360000pt;}
.x3d_c00053{left:190.800000pt;}
.x49_c00053{left:192.960000pt;}
.xb_c00053{left:195.684865pt;}
.x71_c00053{left:197.280000pt;}
.x54_c00053{left:198.240000pt;}
.x64_c00053{left:199.200000pt;}
.x5e_c00053{left:200.640000pt;}
.x74_c00053{left:202.560000pt;}
.x27_c00053{left:205.200000pt;}
.x85_c00053{left:206.160000pt;}
.x37_c00053{left:208.320000pt;}
.x1e_c00053{left:210.480000pt;}
.x30_c00053{left:212.400000pt;}
.x6_c00053{left:215.437635pt;}
.x55_c00053{left:217.920000pt;}
.x7d_c00053{left:220.320000pt;}
.x38_c00053{left:221.280000pt;}
.x44_c00053{left:222.960000pt;}
.x51_c00053{left:226.320000pt;}
.x7a_c00053{left:228.000000pt;}
.x17_c00053{left:229.920000pt;}
.x22_c00053{left:233.520000pt;}
.x5a_c00053{left:235.440000pt;}
.x72_c00053{left:236.400000pt;}
.x80_c00053{left:238.080000pt;}
.x67_c00053{left:239.760000pt;}
.x28_c00053{left:241.920000pt;}
.x7e_c00053{left:244.080000pt;}
.x31_c00053{left:247.440000pt;}
.x3e_c00053{left:248.880000pt;}
.x4a_c00053{left:251.760000pt;}
.x39_c00053{left:254.160000pt;}
.x6b_c00053{left:255.120000pt;}
.x13_c00053{left:259.066507pt;}
.x1f_c00053{left:261.360000pt;}
.xc_c00053{left:262.484665pt;}
.x86_c00053{left:264.720000pt;}
.x45_c00053{left:266.160000pt;}
.x32_c00053{left:270.240000pt;}
.x65_c00053{left:271.440000pt;}
.x3f_c00053{left:274.080000pt;}
.x87_c00053{left:279.120000pt;}
.x75_c00053{left:280.320000pt;}
.x56_c00053{left:281.760000pt;}
.x23_c00053{left:284.400000pt;}
.x4b_c00053{left:291.360000pt;}
.x6e_c00053{left:293.280000pt;}
.x84_c00053{left:294.720000pt;}
.x18_c00053{left:296.400000pt;}
.x29_c00053{left:297.840000pt;}
.xd_c00053{left:299.708737pt;}
.x3a_c00053{left:301.920000pt;}
.x7_c00053{left:303.894423pt;}
.x5b_c00053{left:304.800000pt;}
.x4c_c00053{left:307.200000pt;}
.x66_c00053{left:308.160000pt;}
.x6c_c00053{left:310.320000pt;}
.x68_c00053{left:315.120000pt;}
.x40_c00053{left:318.480000pt;}
.x76_c00053{left:322.560000pt;}
.x46_c00053{left:326.400000pt;}
.xe_c00053{left:329.311105pt;}
.x3_c00053{left:332.640000pt;}
.x2a_c00053{left:334.320000pt;}
.x3b_c00053{left:336.960000pt;}
.x77_c00053{left:337.920000pt;}
.x4d_c00053{left:340.800000pt;}
.x7b_c00053{left:341.760000pt;}
.x19_c00053{left:343.920000pt;}
.x47_c00053{left:346.800000pt;}
.x5f_c00053{left:350.400000pt;}
.x2_c00053{left:356.160000pt;}
.x24_c00053{left:358.560000pt;}
.x33_c00053{left:359.760000pt;}
.x2b_c00053{left:361.440000pt;}
.xf_c00053{left:363.195853pt;}
.x6d_c00053{left:365.520000pt;}
.x4e_c00053{left:366.960000pt;}
.x60_c00053{left:368.160000pt;}
.x69_c00053{left:370.560000pt;}
.x3c_c00053{left:371.760000pt;}
.x1a_c00053{left:374.400000pt;}
.x82_c00053{left:376.320000pt;}
.x20_c00053{left:378.480000pt;}
.x25_c00053{left:379.680000pt;}
.x73_c00053{left:381.360000pt;}
.x8_c00053{left:383.188383pt;}
.x10_c00053{left:386.560465pt;}
.x2c_c00053{left:389.520000pt;}
.x7c_c00053{left:392.880000pt;}
.x57_c00053{left:394.080000pt;}
.x83_c00053{left:397.920000pt;}
.x34_c00053{left:399.840000pt;}
.x6a_c00053{left:403.200000pt;}
.x52_c00053{left:406.080000pt;}
.x8a_c00053{left:410.160000pt;}
.x1b_c00053{left:412.560000pt;}
.x2d_c00053{left:413.760000pt;}
.x58_c00053{left:415.200000pt;}
.x35_c00053{left:420.960000pt;}
.x88_c00053{left:422.400000pt;}
.x7f_c00053{left:424.080000pt;}
.x81_c00053{left:431.760000pt;}
.x59_c00053{left:433.680000pt;}
.x8b_c00053{left:434.640000pt;}
.x1_c00053{left:436.320000pt;}
.x6f_c00053{left:438.720000pt;}
.x4f_c00053{left:439.920000pt;}
.x48_c00053{left:445.920000pt;}
.x1c_c00053{left:448.320000pt;}
.x78_c00053{left:451.200000pt;}
.x53_c00053{left:454.560000pt;}
.x41_c00053{left:458.880000pt;}
.x79_c00053{left:468.000000pt;}
.x70_c00053{left:475.440000pt;}
.x2e_c00053{left:480.960000pt;}
.x8c_c00053{left:508.800000pt;}
.x89_c00053{left:538.800000pt;}
.x8d_c00053{left:543.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_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_4ab86c84425994a9e06b01c2.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;}
.mb2_c00054{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);}
.m3f_c00054{transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);-ms-transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013244,-0.000132,0.002500,0.249988,0,0);}
.mec_c00054{transform:matrix(0.029908,-0.000359,0.003000,0.249982,0,0);-ms-transform:matrix(0.029908,-0.000359,0.003000,0.249982,0,0);-webkit-transform:matrix(0.029908,-0.000359,0.003000,0.249982,0,0);}
.mf8_c00054{transform:matrix(0.035657,-0.000428,0.003000,0.249982,0,0);-ms-transform:matrix(0.035657,-0.000428,0.003000,0.249982,0,0);-webkit-transform:matrix(0.035657,-0.000428,0.003000,0.249982,0,0);}
.med_c00054{transform:matrix(0.064780,-0.000777,0.003000,0.249982,0,0);-ms-transform:matrix(0.064780,-0.000777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.064780,-0.000777,0.003000,0.249982,0,0);}
.mea_c00054{transform:matrix(0.100223,-0.001203,0.003000,0.249982,0,0);-ms-transform:matrix(0.100223,-0.001203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.100223,-0.001203,0.003000,0.249982,0,0);}
.m67_c00054{transform:matrix(0.107480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107480,0.000000,0.000000,0.250000,0,0);}
.me9_c00054{transform:matrix(0.108147,-0.001298,0.003000,0.249982,0,0);-ms-transform:matrix(0.108147,-0.001298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.108147,-0.001298,0.003000,0.249982,0,0);}
.m3_c00054{transform:matrix(0.110939,-0.001109,0.002500,0.249988,0,0);-ms-transform:matrix(0.110939,-0.001109,0.002500,0.249988,0,0);-webkit-transform:matrix(0.110939,-0.001109,0.002500,0.249988,0,0);}
.m28_c00054{transform:matrix(0.139597,-0.001536,0.002750,0.249985,0,0);-ms-transform:matrix(0.139597,-0.001536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139597,-0.001536,0.002750,0.249985,0,0);}
.mf5_c00054{transform:matrix(0.142320,-0.001708,0.003000,0.249982,0,0);-ms-transform:matrix(0.142320,-0.001708,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142320,-0.001708,0.003000,0.249982,0,0);}
.m74_c00054{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);}
.m8_c00054{transform:matrix(0.146484,-0.002490,0.004249,0.249964,0,0);-ms-transform:matrix(0.146484,-0.002490,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146484,-0.002490,0.004249,0.249964,0,0);}
.m9a_c00054{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);}
.m23_c00054{transform:matrix(0.146751,-0.001614,0.002750,0.249985,0,0);-ms-transform:matrix(0.146751,-0.001614,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146751,-0.001614,0.002750,0.249985,0,0);}
.m38_c00054{transform:matrix(0.147063,-0.001471,0.002500,0.249988,0,0);-ms-transform:matrix(0.147063,-0.001471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147063,-0.001471,0.002500,0.249988,0,0);}
.m21_c00054{transform:matrix(0.147096,-0.001618,0.002750,0.249985,0,0);-ms-transform:matrix(0.147096,-0.001618,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147096,-0.001618,0.002750,0.249985,0,0);}
.m96_c00054{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);}
.m69_c00054{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);}
.mda_c00054{transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.150236,-0.001653,0.002750,0.249985,0,0);-ms-transform:matrix(0.150236,-0.001653,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150236,-0.001653,0.002750,0.249985,0,0);}
.m3c_c00054{transform:matrix(0.150372,-0.001504,0.002500,0.249988,0,0);-ms-transform:matrix(0.150372,-0.001504,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150372,-0.001504,0.002500,0.249988,0,0);}
.mac_c00054{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);}
.m6f_c00054{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);}
.mae_c00054{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{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);}
.m9_c00054{transform:matrix(0.153543,-0.002610,0.004249,0.249964,0,0);-ms-transform:matrix(0.153543,-0.002610,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153543,-0.002610,0.004249,0.249964,0,0);}
.m76_c00054{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);}
.m2a_c00054{transform:matrix(0.154671,-0.001701,0.002750,0.249985,0,0);-ms-transform:matrix(0.154671,-0.001701,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154671,-0.001701,0.002750,0.249985,0,0);}
.m12_c00054{transform:matrix(0.155982,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.155982,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155982,-0.002652,0.004249,0.249964,0,0);}
.mee_c00054{transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-ms-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);}
.mb1_c00054{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);}
.m1c_c00054{transform:matrix(0.156996,-0.001727,0.002750,0.249985,0,0);-ms-transform:matrix(0.156996,-0.001727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156996,-0.001727,0.002750,0.249985,0,0);}
.mcf_c00054{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);}
.md3_c00054{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);}
.md_c00054{transform:matrix(0.159022,-0.002703,0.004249,0.249964,0,0);-ms-transform:matrix(0.159022,-0.002703,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159022,-0.002703,0.004249,0.249964,0,0);}
.mb_c00054{transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);-ms-transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);}
.m29_c00054{transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);-ms-transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);}
.mb0_c00054{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);}
.m25_c00054{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);}
.m7b_c00054{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);}
.m63_c00054{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);}
.m43_c00054{transform:matrix(0.164260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164260,0.000000,0.000000,0.250000,0,0);}
.md2_c00054{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);}
.md6_c00054{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);}
.m39_c00054{transform:matrix(0.165822,-0.001658,0.002500,0.249988,0,0);-ms-transform:matrix(0.165822,-0.001658,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165822,-0.001658,0.002500,0.249988,0,0);}
.m78_c00054{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);}
.m18_c00054{transform:matrix(0.166525,-0.001832,0.002750,0.249985,0,0);-ms-transform:matrix(0.166525,-0.001832,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166525,-0.001832,0.002750,0.249985,0,0);}
.m90_c00054{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);}
.mdb_c00054{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);}
.m48_c00054{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);}
.mc0_c00054{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.167556,-0.002848,0.004249,0.249964,0,0);-ms-transform:matrix(0.167556,-0.002848,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167556,-0.002848,0.004249,0.249964,0,0);}
.m3e_c00054{transform:matrix(0.167677,-0.001677,0.002500,0.249988,0,0);-ms-transform:matrix(0.167677,-0.001677,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167677,-0.001677,0.002500,0.249988,0,0);}
.m3d_c00054{transform:matrix(0.167767,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167767,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167767,-0.001678,0.002500,0.249988,0,0);}
.m20_c00054{transform:matrix(0.168055,-0.001849,0.002750,0.249985,0,0);-ms-transform:matrix(0.168055,-0.001849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168055,-0.001849,0.002750,0.249985,0,0);}
.m1f_c00054{transform:matrix(0.168070,-0.001849,0.002750,0.249985,0,0);-ms-transform:matrix(0.168070,-0.001849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168070,-0.001849,0.002750,0.249985,0,0);}
.mcc_c00054{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);}
.m62_c00054{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);}
.mad_c00054{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);}
.m95_c00054{transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);}
.m6a_c00054{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);}
.ma4_c00054{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);}
.m83_c00054{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);}
.m2c_c00054{transform:matrix(0.171315,-0.001884,0.002750,0.249985,0,0);-ms-transform:matrix(0.171315,-0.001884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171315,-0.001884,0.002750,0.249985,0,0);}
.mb4_c00054{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);}
.mdc_c00054{transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{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);}
.m8a_c00054{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);}
.maa_c00054{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);}
.m7c_c00054{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);}
.m92_c00054{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);}
.mb5_c00054{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);}
.m1e_c00054{transform:matrix(0.177379,-0.001951,0.002750,0.249985,0,0);-ms-transform:matrix(0.177379,-0.001951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177379,-0.001951,0.002750,0.249985,0,0);}
.mcb_c00054{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);}
.m49_c00054{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);}
.m7_c00054{transform:matrix(0.179549,-0.003052,0.004249,0.249964,0,0);-ms-transform:matrix(0.179549,-0.003052,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179549,-0.003052,0.004249,0.249964,0,0);}
.m58_c00054{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);}
.maf_c00054{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);}
.md5_c00054{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);}
.md4_c00054{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);}
.ma2_c00054{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_c00054{transform:matrix(0.183668,-0.003122,0.004249,0.249964,0,0);-ms-transform:matrix(0.183668,-0.003122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183668,-0.003122,0.004249,0.249964,0,0);}
.m59_c00054{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);}
.m6d_c00054{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);}
.md0_c00054{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);}
.m84_c00054{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);}
.me_c00054{transform:matrix(0.184108,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184108,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184108,-0.003130,0.004249,0.249964,0,0);}
.ma8_c00054{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);}
.m44_c00054{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);}
.m8c_c00054{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);}
.me5_c00054{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);}
.me7_c00054{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);}
.m2b_c00054{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);}
.m11_c00054{transform:matrix(0.186678,-0.003174,0.004249,0.249964,0,0);-ms-transform:matrix(0.186678,-0.003174,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186678,-0.003174,0.004249,0.249964,0,0);}
.ma_c00054{transform:matrix(0.186743,-0.003175,0.004249,0.249964,0,0);-ms-transform:matrix(0.186743,-0.003175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186743,-0.003175,0.004249,0.249964,0,0);}
.m89_c00054{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);}
.m31_c00054{transform:matrix(0.187057,-0.001684,0.002250,0.249990,0,0);-ms-transform:matrix(0.187057,-0.001684,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187057,-0.001684,0.002250,0.249990,0,0);}
.m22_c00054{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);}
.m9c_c00054{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);}
.m19_c00054{transform:matrix(0.188204,-0.002070,0.002750,0.249985,0,0);-ms-transform:matrix(0.188204,-0.002070,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188204,-0.002070,0.002750,0.249985,0,0);}
.mde_c00054{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);}
.m8b_c00054{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);}
.m77_c00054{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);}
.m6b_c00054{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);}
.md9_c00054{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);}
.m14_c00054{transform:matrix(0.189538,-0.003222,0.004249,0.249964,0,0);-ms-transform:matrix(0.189538,-0.003222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189538,-0.003222,0.004249,0.249964,0,0);}
.m7d_c00054{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);}
.m24_c00054{transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);}
.m85_c00054{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);}
.ma0_c00054{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);}
.m64_c00054{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);}
.m81_c00054{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_c00054{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);}
.m91_c00054{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);}
.m60_c00054{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);}
.mce_c00054{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);}
.mdf_c00054{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);}
.m80_c00054{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);}
.m46_c00054{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);}
.mc4_c00054{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);}
.mba_c00054{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);}
.m61_c00054{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);}
.m70_c00054{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);}
.m98_c00054{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);}
.m16_c00054{transform:matrix(0.197268,-0.002170,0.002750,0.249985,0,0);-ms-transform:matrix(0.197268,-0.002170,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197268,-0.002170,0.002750,0.249985,0,0);}
.mb6_c00054{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);}
.mca_c00054{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);}
.mbb_c00054{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);}
.m27_c00054{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);}
.m37_c00054{transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198750,-0.001988,0.002500,0.249988,0,0);}
.m42_c00054{transform:matrix(0.198885,-0.001989,0.002500,0.249988,0,0);-ms-transform:matrix(0.198885,-0.001989,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198885,-0.001989,0.002500,0.249988,0,0);}
.me0_c00054{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);}
.m3a_c00054{transform:matrix(0.200265,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200265,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200265,-0.002003,0.002500,0.249988,0,0);}
.m7e_c00054{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);}
.m6_c00054{transform:matrix(0.200616,-0.003410,0.004249,0.249964,0,0);-ms-transform:matrix(0.200616,-0.003410,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200616,-0.003410,0.004249,0.249964,0,0);}
.m99_c00054{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);}
.m5f_c00054{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);}
.m45_c00054{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);}
.mbf_c00054{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);}
.m6c_c00054{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);}
.me6_c00054{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);}
.m9e_c00054{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);}
.ma3_c00054{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);}
.ma1_c00054{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);}
.mc7_c00054{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);}
.mfd_c00054{transform:matrix(0.203875,-0.002447,0.003000,0.249982,0,0);-ms-transform:matrix(0.203875,-0.002447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203875,-0.002447,0.003000,0.249982,0,0);}
.mf_c00054{transform:matrix(0.204106,-0.003470,0.004249,0.249964,0,0);-ms-transform:matrix(0.204106,-0.003470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204106,-0.003470,0.004249,0.249964,0,0);}
.m82_c00054{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);}
.m73_c00054{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);}
.mab_c00054{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.ma7_c00054{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);}
.m72_c00054{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);}
.m1b_c00054{transform:matrix(0.206273,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206273,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206273,-0.002269,0.002750,0.249985,0,0);}
.m68_c00054{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);}
.m4a_c00054{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);}
.m47_c00054{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);}
.me8_c00054{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);}
.mc2_c00054{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);}
.m79_c00054{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);}
.mb7_c00054{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);}
.ma5_c00054{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{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);}
.mbe_c00054{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);}
.m97_c00054{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);}
.mc_c00054{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);}
.m7f_c00054{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);}
.m33_c00054{transform:matrix(0.214296,-0.001929,0.002250,0.249990,0,0);-ms-transform:matrix(0.214296,-0.001929,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214296,-0.001929,0.002250,0.249990,0,0);}
.m2e_c00054{transform:matrix(0.214681,-0.001932,0.002250,0.249990,0,0);-ms-transform:matrix(0.214681,-0.001932,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214681,-0.001932,0.002250,0.249990,0,0);}
.mc3_c00054{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);}
.md1_c00054{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00054{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);}
.m8f_c00054{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.216459,-0.003680,0.004249,0.249964,0,0);-ms-transform:matrix(0.216459,-0.003680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216459,-0.003680,0.004249,0.249964,0,0);}
.me4_c00054{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);}
.mdd_c00054{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);}
.mb3_c00054{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);}
.m32_c00054{transform:matrix(0.217396,-0.001957,0.002250,0.249990,0,0);-ms-transform:matrix(0.217396,-0.001957,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217396,-0.001957,0.002250,0.249990,0,0);}
.mc5_c00054{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);}
.m66_c00054{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);}
.m8d_c00054{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);}
.ma9_c00054{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);}
.m9b_c00054{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);}
.mc1_c00054{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);}
.mff_c00054{transform:matrix(0.221944,-0.002663,0.003000,0.249982,0,0);-ms-transform:matrix(0.221944,-0.002663,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221944,-0.002663,0.003000,0.249982,0,0);}
.ma6_c00054{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);}
.md8_c00054{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);}
.m93_c00054{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);}
.m15_c00054{transform:matrix(0.223551,-0.002459,0.002750,0.249985,0,0);-ms-transform:matrix(0.223551,-0.002459,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223551,-0.002459,0.002750,0.249985,0,0);}
.m100_c00054{transform:matrix(0.223774,-0.002685,0.003000,0.249982,0,0);-ms-transform:matrix(0.223774,-0.002685,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223774,-0.002685,0.003000,0.249982,0,0);}
.m54_c00054{transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);-ms-transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);}
.m2f_c00054{transform:matrix(0.226071,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226071,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226071,-0.002035,0.002250,0.249990,0,0);}
.m94_c00054{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);}
.m8e_c00054{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_c00054{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);}
.m7a_c00054{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);}
.m35_c00054{transform:matrix(0.230341,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230341,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230341,-0.002073,0.002250,0.249990,0,0);}
.m3b_c00054{transform:matrix(0.230703,-0.002307,0.002500,0.249988,0,0);-ms-transform:matrix(0.230703,-0.002307,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230703,-0.002307,0.002500,0.249988,0,0);}
.m4e_c00054{transform:matrix(0.231491,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231491,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231491,-0.002083,0.002250,0.249990,0,0);}
.m36_c00054{transform:matrix(0.234043,-0.002340,0.002500,0.249988,0,0);-ms-transform:matrix(0.234043,-0.002340,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234043,-0.002340,0.002500,0.249988,0,0);}
.m34_c00054{transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);-ms-transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);}
.mb8_c00054{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);}
.m13_c00054{transform:matrix(0.239165,-0.004066,0.004249,0.249964,0,0);-ms-transform:matrix(0.239165,-0.004066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239165,-0.004066,0.004249,0.249964,0,0);}
.m56_c00054{transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.241450,-0.002173,0.002250,0.249990,0,0);-ms-transform:matrix(0.241450,-0.002173,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241450,-0.002173,0.002250,0.249990,0,0);}
.m75_c00054{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);}
.m30_c00054{transform:matrix(0.245840,-0.002213,0.002250,0.249990,0,0);-ms-transform:matrix(0.245840,-0.002213,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245840,-0.002213,0.002250,0.249990,0,0);}
.m2d_c00054{transform:matrix(0.249775,-0.002248,0.002250,0.249990,0,0);-ms-transform:matrix(0.249775,-0.002248,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249775,-0.002248,0.002250,0.249990,0,0);}
.m51_c00054{transform:matrix(0.250310,-0.002253,0.002250,0.249990,0,0);-ms-transform:matrix(0.250310,-0.002253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250310,-0.002253,0.002250,0.249990,0,0);}
.mc9_c00054{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.254025,-0.002794,0.002750,0.249985,0,0);-ms-transform:matrix(0.254025,-0.002794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254025,-0.002794,0.002750,0.249985,0,0);}
.m57_c00054{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.254597,-0.002546,0.002500,0.249988,0,0);-ms-transform:matrix(0.254597,-0.002546,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254597,-0.002546,0.002500,0.249988,0,0);}
.mc6_c00054{transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);}
.md7_c00054{transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(0.275023,-0.003025,0.002750,0.249985,0,0);-ms-transform:matrix(0.275023,-0.003025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275023,-0.003025,0.002750,0.249985,0,0);}
.mc8_c00054{transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);}
.mfb_c00054{transform:matrix(0.281650,-0.003380,0.003000,0.249982,0,0);-ms-transform:matrix(0.281650,-0.003380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281650,-0.003380,0.003000,0.249982,0,0);}
.mb9_c00054{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.287798,-0.002590,0.002250,0.249990,0,0);-ms-transform:matrix(0.287798,-0.002590,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287798,-0.002590,0.002250,0.249990,0,0);}
.m4b_c00054{transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00054{transform:matrix(0.316397,-0.002848,0.002250,0.249990,0,0);-ms-transform:matrix(0.316397,-0.002848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.316397,-0.002848,0.002250,0.249990,0,0);}
.mf9_c00054{transform:matrix(0.316617,-0.003799,0.003000,0.249982,0,0);-ms-transform:matrix(0.316617,-0.003799,0.003000,0.249982,0,0);-webkit-transform:matrix(0.316617,-0.003799,0.003000,0.249982,0,0);}
.m87_c00054{transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322565,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.330530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330530,0.000000,0.000000,0.250000,0,0);}
.mf2_c00054{transform:matrix(0.333381,-0.004001,0.003000,0.249982,0,0);-ms-transform:matrix(0.333381,-0.004001,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333381,-0.004001,0.003000,0.249982,0,0);}
.me3_c00054{transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.338700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338700,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.343191,-0.003089,0.002250,0.249990,0,0);-ms-transform:matrix(0.343191,-0.003089,0.002250,0.249990,0,0);-webkit-transform:matrix(0.343191,-0.003089,0.002250,0.249990,0,0);}
.m5d_c00054{transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.351091,-0.003160,0.002250,0.249990,0,0);-ms-transform:matrix(0.351091,-0.003160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.351091,-0.003160,0.002250,0.249990,0,0);}
.m40_c00054{transform:matrix(0.360142,-0.003601,0.002500,0.249988,0,0);-ms-transform:matrix(0.360142,-0.003601,0.002500,0.249988,0,0);-webkit-transform:matrix(0.360142,-0.003601,0.002500,0.249988,0,0);}
.m9d_c00054{transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);}
.mf4_c00054{transform:matrix(0.387837,-0.004654,0.003000,0.249982,0,0);-ms-transform:matrix(0.387837,-0.004654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.387837,-0.004654,0.003000,0.249982,0,0);}
.m5a_c00054{transform:matrix(0.392365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392365,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.397619,-0.003579,0.002250,0.249990,0,0);-ms-transform:matrix(0.397619,-0.003579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.397619,-0.003579,0.002250,0.249990,0,0);}
.me1_c00054{transform:matrix(0.400395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400395,0.000000,0.000000,0.250000,0,0);}
.mf0_c00054{transform:matrix(0.400461,-0.004806,0.003000,0.249982,0,0);-ms-transform:matrix(0.400461,-0.004806,0.003000,0.249982,0,0);-webkit-transform:matrix(0.400461,-0.004806,0.003000,0.249982,0,0);}
.m1_c00054{transform:matrix(0.407935,-0.004079,0.002500,0.249988,0,0);-ms-transform:matrix(0.407935,-0.004079,0.002500,0.249988,0,0);-webkit-transform:matrix(0.407935,-0.004079,0.002500,0.249988,0,0);}
.m0_c00054{transform:matrix(0.418844,-0.004188,0.002500,0.249988,0,0);-ms-transform:matrix(0.418844,-0.004188,0.002500,0.249988,0,0);-webkit-transform:matrix(0.418844,-0.004188,0.002500,0.249988,0,0);}
.mf3_c00054{transform:matrix(0.428139,-0.005138,0.003000,0.249982,0,0);-ms-transform:matrix(0.428139,-0.005138,0.003000,0.249982,0,0);-webkit-transform:matrix(0.428139,-0.005138,0.003000,0.249982,0,0);}
.mf1_c00054{transform:matrix(0.432934,-0.005195,0.003000,0.249982,0,0);-ms-transform:matrix(0.432934,-0.005195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.432934,-0.005195,0.003000,0.249982,0,0);}
.mfe_c00054{transform:matrix(0.442168,-0.005306,0.003000,0.249982,0,0);-ms-transform:matrix(0.442168,-0.005306,0.003000,0.249982,0,0);-webkit-transform:matrix(0.442168,-0.005306,0.003000,0.249982,0,0);}
.me2_c00054{transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.476965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476965,0.000000,0.000000,0.250000,0,0);}
.mef_c00054{transform:matrix(0.504119,-0.006049,0.003000,0.249982,0,0);-ms-transform:matrix(0.504119,-0.006049,0.003000,0.249982,0,0);-webkit-transform:matrix(0.504119,-0.006049,0.003000,0.249982,0,0);}
.meb_c00054{transform:matrix(0.522777,-0.006273,0.003000,0.249982,0,0);-ms-transform:matrix(0.522777,-0.006273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.522777,-0.006273,0.003000,0.249982,0,0);}
.mfc_c00054{transform:matrix(0.559890,-0.006719,0.003000,0.249982,0,0);-ms-transform:matrix(0.559890,-0.006719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.559890,-0.006719,0.003000,0.249982,0,0);}
.m4d_c00054{transform:matrix(0.580681,-0.005226,0.002250,0.249990,0,0);-ms-transform:matrix(0.580681,-0.005226,0.002250,0.249990,0,0);-webkit-transform:matrix(0.580681,-0.005226,0.002250,0.249990,0,0);}
.m2_c00054{transform:matrix(0.794735,-0.007947,0.002500,0.249988,0,0);-ms-transform:matrix(0.794735,-0.007947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.794735,-0.007947,0.002500,0.249988,0,0);}
.mfa_c00054{transform:matrix(0.952971,-0.011436,0.003000,0.249982,0,0);-ms-transform:matrix(0.952971,-0.011436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.952971,-0.011436,0.003000,0.249982,0,0);}
.m101_c00054{transform:matrix(1.186600,-0.014239,0.003000,0.249982,0,0);-ms-transform:matrix(1.186600,-0.014239,0.003000,0.249982,0,0);-webkit-transform:matrix(1.186600,-0.014239,0.003000,0.249982,0,0);}
.mf6_c00054{transform:matrix(1.484843,-0.017818,0.003000,0.249982,0,0);-ms-transform:matrix(1.484843,-0.017818,0.003000,0.249982,0,0);-webkit-transform:matrix(1.484843,-0.017818,0.003000,0.249982,0,0);}
.mf7_c00054{transform:matrix(3.367148,-0.040406,0.003000,0.249982,0,0);-ms-transform:matrix(3.367148,-0.040406,0.003000,0.249982,0,0);-webkit-transform:matrix(3.367148,-0.040406,0.003000,0.249982,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;}
.fs16_c00054{font-size:27.301966px;}
.fs15_c00054{font-size:32.552344px;}
.fs14_c00054{font-size:51.450000px;}
.fs6_c00054{font-size:61.952509px;}
.fs12_c00054{font-size:63.000000px;}
.fsb_c00054{font-size:64.050000px;}
.fse_c00054{font-size:66.150000px;}
.fs11_c00054{font-size:67.200000px;}
.fsd_c00054{font-size:68.250000px;}
.fsc_c00054{font-size:69.300000px;}
.fsf_c00054{font-size:70.350000px;}
.fs3_c00054{font-size:70.354256px;}
.fs13_c00054{font-size:71.400000px;}
.fs4_c00054{font-size:71.404320px;}
.fs9_c00054{font-size:72.450000px;}
.fs8_c00054{font-size:73.503675px;}
.fs2_c00054{font-size:73.510620px;}
.fsa_c00054{font-size:74.553019px;}
.fs7_c00054{font-size:74.553727px;}
.fs1_c00054{font-size:75.610923px;}
.fs5_c00054{font-size:76.654637px;}
.fs10_c00054{font-size:82.950000px;}
.fs0_c00054{font-size:134.406720px;}
.y0_c00054{bottom:0.000000px;}
.y6a_c00054{bottom:85.048914px;}
.y6b_c00054{bottom:85.391808px;}
.y6c_c00054{bottom:85.609890px;}
.y6d_c00054{bottom:85.671576px;}
.y6e_c00054{bottom:85.763586px;}
.y6f_c00054{bottom:86.539746px;}
.y70_c00054{bottom:87.711042px;}
.y71_c00054{bottom:87.870936px;}
.y72_c00054{bottom:87.968214px;}
.y73_c00054{bottom:88.294458px;}
.y74_c00054{bottom:88.371024px;}
.y75_c00054{bottom:88.610232px;}
.y76_c00054{bottom:88.661898px;}
.y77_c00054{bottom:88.817790px;}
.y78_c00054{bottom:89.023860px;}
.y79_c00054{bottom:89.234112px;}
.y61_c00054{bottom:92.611500px;}
.y62_c00054{bottom:92.843826px;}
.y63_c00054{bottom:93.359958px;}
.y64_c00054{bottom:94.127478px;}
.y65_c00054{bottom:95.812422px;}
.y66_c00054{bottom:96.861480px;}
.y67_c00054{bottom:97.367730px;}
.y68_c00054{bottom:98.242314px;}
.y69_c00054{bottom:99.269826px;}
.y60_c00054{bottom:154.843500px;}
.y5f_c00054{bottom:199.887000px;}
.y5e_c00054{bottom:222.114000px;}
.y5d_c00054{bottom:244.425000px;}
.y5c_c00054{bottom:267.036000px;}
.y5b_c00054{bottom:289.297500px;}
.y5a_c00054{bottom:311.778000px;}
.y59_c00054{bottom:333.916500px;}
.y58_c00054{bottom:356.874000px;}
.y57_c00054{bottom:379.333500px;}
.y56_c00054{bottom:402.028500px;}
.y55_c00054{bottom:424.500000px;}
.y54_c00054{bottom:446.824500px;}
.y53_c00054{bottom:469.462500px;}
.y52_c00054{bottom:491.947500px;}
.y51_c00054{bottom:515.338500px;}
.y50_c00054{bottom:537.352500px;}
.y4f_c00054{bottom:560.035500px;}
.y45_c00054{bottom:601.831500px;}
.y46_c00054{bottom:602.288259px;}
.y47_c00054{bottom:602.819187px;}
.y48_c00054{bottom:603.080493px;}
.y49_c00054{bottom:603.326179px;}
.y4a_c00054{bottom:603.539263px;}
.y4b_c00054{bottom:603.938053px;}
.y4c_c00054{bottom:604.453186px;}
.y4d_c00054{bottom:604.652568px;}
.y4e_c00054{bottom:605.190516px;}
.y44_c00054{bottom:626.214000px;}
.y43_c00054{bottom:648.515355px;}
.y42_c00054{bottom:648.515670px;}
.y41_c00054{bottom:648.516300px;}
.y40_c00054{bottom:648.516345px;}
.y37_c00054{bottom:669.871500px;}
.y38_c00054{bottom:670.163025px;}
.y39_c00054{bottom:670.584420px;}
.y3a_c00054{bottom:670.856700px;}
.y3b_c00054{bottom:671.321070px;}
.y3c_c00054{bottom:672.169260px;}
.y3d_c00054{bottom:672.390675px;}
.y3e_c00054{bottom:672.909180px;}
.y3f_c00054{bottom:673.206225px;}
.y2e_c00054{bottom:693.361500px;}
.y2f_c00054{bottom:693.769807px;}
.y30_c00054{bottom:694.255807px;}
.y31_c00054{bottom:694.664102px;}
.y32_c00054{bottom:695.376064px;}
.y33_c00054{bottom:695.570154px;}
.y34_c00054{bottom:695.866992px;}
.y35_c00054{bottom:696.112408px;}
.y36_c00054{bottom:696.464812px;}
.y28_c00054{bottom:715.771500px;}
.y29_c00054{bottom:716.285508px;}
.y2a_c00054{bottom:716.790540px;}
.y2b_c00054{bottom:717.627502px;}
.y2c_c00054{bottom:718.112239px;}
.y2d_c00054{bottom:718.539953px;}
.y1e_c00054{bottom:738.721500px;}
.y1f_c00054{bottom:738.950338px;}
.y20_c00054{bottom:739.342477px;}
.y21_c00054{bottom:739.939579px;}
.y22_c00054{bottom:740.551300px;}
.y23_c00054{bottom:740.815152px;}
.y24_c00054{bottom:741.317610px;}
.y25_c00054{bottom:741.573046px;}
.y26_c00054{bottom:741.962611px;}
.y27_c00054{bottom:742.431327px;}
.y16_c00054{bottom:761.671500px;}
.y17_c00054{bottom:762.081558px;}
.y18_c00054{bottom:762.330246px;}
.y19_c00054{bottom:762.645627px;}
.y1a_c00054{bottom:763.094229px;}
.y1b_c00054{bottom:763.616949px;}
.y1c_c00054{bottom:764.364828px;}
.y1d_c00054{bottom:764.677305px;}
.yd_c00054{bottom:783.003000px;}
.ye_c00054{bottom:783.416431px;}
.yf_c00054{bottom:783.884458px;}
.y10_c00054{bottom:784.692503px;}
.y11_c00054{bottom:784.941102px;}
.y12_c00054{bottom:785.722447px;}
.y13_c00054{bottom:786.363390px;}
.y14_c00054{bottom:786.712179px;}
.y15_c00054{bottom:787.497502px;}
.y5_c00054{bottom:805.953000px;}
.y6_c00054{bottom:806.610288px;}
.y7_c00054{bottom:807.403848px;}
.y8_c00054{bottom:807.995473px;}
.y9_c00054{bottom:808.969573px;}
.ya_c00054{bottom:809.635021px;}
.yb_c00054{bottom:810.295879px;}
.yc_c00054{bottom:811.025970px;}
.y1_c00054{bottom:852.330000px;}
.y2_c00054{bottom:853.908120px;}
.y3_c00054{bottom:854.716815px;}
.y4_c00054{bottom:855.552615px;}
.h18_c00054{height:27.301966px;}
.h17_c00054{height:32.552344px;}
.h16_c00054{height:51.450000px;}
.h8_c00054{height:61.952509px;}
.h14_c00054{height:63.000000px;}
.hd_c00054{height:64.050000px;}
.h10_c00054{height:66.150000px;}
.h13_c00054{height:67.200000px;}
.hf_c00054{height:68.250000px;}
.he_c00054{height:69.300000px;}
.h11_c00054{height:70.350000px;}
.h5_c00054{height:70.354256px;}
.h15_c00054{height:71.400000px;}
.h6_c00054{height:71.404320px;}
.hb_c00054{height:72.450000px;}
.ha_c00054{height:73.503675px;}
.h4_c00054{height:73.510620px;}
.hc_c00054{height:74.553019px;}
.h9_c00054{height:74.553727px;}
.h3_c00054{height:75.610923px;}
.h7_c00054{height:76.654637px;}
.h12_c00054{height:82.950000px;}
.h2_c00054{height:134.406720px;}
.h1_c00054{height:1005.000000px;}
.h0_c00054{height:1005.150000px;}
.w0_c00054{width:732.750000px;}
.x0_c00054{left:0.000000px;}
.x85_c00054{left:44.280000px;}
.x88_c00054{left:54.126000px;}
.x8e_c00054{left:62.127390px;}
.x89_c00054{left:73.486500px;}
.x86_c00054{left:89.910000px;}
.x80_c00054{left:99.900000px;}
.x8f_c00054{left:105.078960px;}
.x8a_c00054{left:116.497500px;}
.x3e_c00054{left:126.247500px;}
.xd_c00054{left:128.736000px;}
.x5_c00054{left:130.347000px;}
.x71_c00054{left:132.030000px;}
.x1_c00054{left:137.722500px;}
.x90_c00054{left:140.144652px;}
.x1a_c00054{left:151.341000px;}
.xe_c00054{left:153.055500px;}
.x63_c00054{left:155.250000px;}
.x2e_c00054{left:159.430500px;}
.x5f_c00054{left:161.460000px;}
.x15_c00054{left:167.836500px;}
.x6_c00054{left:169.011000px;}
.x81_c00054{left:171.990000px;}
.x37_c00054{left:173.880000px;}
.x23_c00054{left:176.467500px;}
.xf_c00054{left:180.586500px;}
.x44_c00054{left:183.600000px;}
.x1b_c00054{left:186.990000px;}
.x33_c00054{left:188.731875px;}
.x16_c00054{left:190.444500px;}
.x56_c00054{left:191.700000px;}
.x68_c00054{left:193.860000px;}
.x53_c00054{left:195.210000px;}
.x38_c00054{left:197.370000px;}
.x45_c00054{left:198.450000px;}
.x2f_c00054{left:201.570000px;}
.x5b_c00054{left:203.310000px;}
.x6b_c00054{left:205.470000px;}
.x64_c00054{left:208.440000px;}
.x72_c00054{left:209.790000px;}
.x82_c00054{left:213.030000px;}
.x7_c00054{left:215.691000px;}
.x17_c00054{left:219.115500px;}
.x75_c00054{left:220.590000px;}
.x24_c00054{left:222.379500px;}
.x57_c00054{left:224.100000px;}
.x46_c00054{left:225.450000px;}
.x10_c00054{left:228.118500px;}
.x28_c00054{left:229.891500px;}
.x7a_c00054{left:233.820000px;}
.x39_c00054{left:235.710000px;}
.x83_c00054{left:237.330000px;}
.x1c_c00054{left:241.272000px;}
.x11_c00054{left:242.742000px;}
.x76_c00054{left:245.430000px;}
.x91_c00054{left:248.622354px;}
.x8_c00054{left:250.492500px;}
.x60_c00054{left:252.990000px;}
.x50_c00054{left:255.150000px;}
.x18_c00054{left:259.897500px;}
.x6c_c00054{left:261.900000px;}
.x3f_c00054{left:265.024500px;}
.x5c_c00054{left:267.030000px;}
.x7b_c00054{left:268.380000px;}
.x29_c00054{left:275.257500px;}
.x54_c00054{left:277.830000px;}
.x34_c00054{left:280.536555px;}
.x67_c00054{left:281.880000px;}
.x3a_c00054{left:283.500000px;}
.x77_c00054{left:287.010000px;}
.x12_c00054{left:288.703500px;}
.x7c_c00054{left:290.790000px;}
.x40_c00054{left:292.323000px;}
.x2_c00054{left:295.534500px;}
.x1d_c00054{left:296.883000px;}
.x25_c00054{left:298.467000px;}
.x51_c00054{left:300.510000px;}
.x58_c00054{left:303.210000px;}
.x4d_c00054{left:304.830000px;}
.x61_c00054{left:306.450000px;}
.x9_c00054{left:307.792500px;}
.x65_c00054{left:309.690000px;}
.x73_c00054{left:314.010000px;}
.x3b_c00054{left:315.630000px;}
.x1e_c00054{left:320.869500px;}
.x87_c00054{left:322.650000px;}
.x5d_c00054{left:323.730000px;}
.x55_c00054{left:325.080000px;}
.x13_c00054{left:326.406000px;}
.x59_c00054{left:329.670000px;}
.x66_c00054{left:334.260000px;}
.x7d_c00054{left:335.610000px;}
.x74_c00054{left:339.390000px;}
.x35_c00054{left:340.479555px;}
.x26_c00054{left:342.534000px;}
.x4e_c00054{left:344.790000px;}
.xa_c00054{left:346.936500px;}
.x49_c00054{left:349.920000px;}
.x2a_c00054{left:354.364500px;}
.x7e_c00054{left:357.750000px;}
.x30_c00054{left:360.054000px;}
.x36_c00054{left:363.700380px;}
.x1f_c00054{left:366.547500px;}
.x3c_c00054{left:371.250000px;}
.x69_c00054{left:372.330000px;}
.x47_c00054{left:373.950000px;}
.x3_c00054{left:376.404000px;}
.x6d_c00054{left:380.160000px;}
.x27_c00054{left:381.417000px;}
.xb_c00054{left:385.810500px;}
.x20_c00054{left:389.769000px;}
.x14_c00054{left:393.118500px;}
.x78_c00054{left:395.010000px;}
.x48_c00054{left:396.900000px;}
.x62_c00054{left:399.600000px;}
.x52_c00054{left:400.680000px;}
.x4a_c00054{left:402.300000px;}
.x19_c00054{left:403.813500px;}
.x6a_c00054{left:406.350000px;}
.x2b_c00054{left:408.912000px;}
.x79_c00054{left:410.400000px;}
.x5e_c00054{left:414.180000px;}
.x5a_c00054{left:415.260000px;}
.x41_c00054{left:417.546000px;}
.x6e_c00054{left:420.120000px;}
.x3d_c00054{left:421.470000px;}
.x21_c00054{left:425.184000px;}
.x4b_c00054{left:427.410000px;}
.xc_c00054{left:428.757000px;}
.x31_c00054{left:434.046000px;}
.x2c_c00054{left:436.180500px;}
.x6f_c00054{left:437.400000px;}
.x4f_c00054{left:438.480000px;}
.x42_c00054{left:439.699500px;}
.x7f_c00054{left:449.010000px;}
.x8b_c00054{left:450.478500px;}
.x4_c00054{left:459.984000px;}
.x32_c00054{left:463.750500px;}
.x22_c00054{left:467.794500px;}
.x84_c00054{left:471.150000px;}
.x4c_c00054{left:472.230000px;}
.x2d_c00054{left:475.336500px;}
.x92_c00054{left:477.489834px;}
.x70_c00054{left:484.650000px;}
.x43_c00054{left:499.471500px;}
.x93_c00054{left:507.425274px;}
.x94_c00054{left:513.856080px;}
.x8c_c00054{left:523.360500px;}
.x95_c00054{left:533.348016px;}
.x96_c00054{left:559.021740px;}
.x97_c00054{left:585.294000px;}
.x8d_c00054{left:608.986500px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.fs16_c00054{font-size:24.268414pt;}
.fs15_c00054{font-size:28.935416pt;}
.fs14_c00054{font-size:45.733333pt;}
.fs6_c00054{font-size:55.068897pt;}
.fs12_c00054{font-size:56.000000pt;}
.fsb_c00054{font-size:56.933333pt;}
.fse_c00054{font-size:58.800000pt;}
.fs11_c00054{font-size:59.733333pt;}
.fsd_c00054{font-size:60.666667pt;}
.fsc_c00054{font-size:61.600000pt;}
.fsf_c00054{font-size:62.533333pt;}
.fs3_c00054{font-size:62.537116pt;}
.fs13_c00054{font-size:63.466667pt;}
.fs4_c00054{font-size:63.470506pt;}
.fs9_c00054{font-size:64.400000pt;}
.fs8_c00054{font-size:65.336600pt;}
.fs2_c00054{font-size:65.342773pt;}
.fsa_c00054{font-size:66.269350pt;}
.fs7_c00054{font-size:66.269980pt;}
.fs1_c00054{font-size:67.209710pt;}
.fs5_c00054{font-size:68.137455pt;}
.fs10_c00054{font-size:73.733333pt;}
.fs0_c00054{font-size:119.472640pt;}
.y0_c00054{bottom:0.000000pt;}
.y6a_c00054{bottom:75.599035pt;}
.y6b_c00054{bottom:75.903829pt;}
.y6c_c00054{bottom:76.097680pt;}
.y6d_c00054{bottom:76.152512pt;}
.y6e_c00054{bottom:76.234299pt;}
.y6f_c00054{bottom:76.924219pt;}
.y70_c00054{bottom:77.965371pt;}
.y71_c00054{bottom:78.107499pt;}
.y72_c00054{bottom:78.193968pt;}
.y73_c00054{bottom:78.483963pt;}
.y74_c00054{bottom:78.552021pt;}
.y75_c00054{bottom:78.764651pt;}
.y76_c00054{bottom:78.810576pt;}
.y77_c00054{bottom:78.949147pt;}
.y78_c00054{bottom:79.132320pt;}
.y79_c00054{bottom:79.319211pt;}
.y61_c00054{bottom:82.321333pt;}
.y62_c00054{bottom:82.527845pt;}
.y63_c00054{bottom:82.986629pt;}
.y64_c00054{bottom:83.668869pt;}
.y65_c00054{bottom:85.166597pt;}
.y66_c00054{bottom:86.099093pt;}
.y67_c00054{bottom:86.549093pt;}
.y68_c00054{bottom:87.326501pt;}
.y69_c00054{bottom:88.239845pt;}
.y60_c00054{bottom:137.638667pt;}
.y5f_c00054{bottom:177.677333pt;}
.y5e_c00054{bottom:197.434667pt;}
.y5d_c00054{bottom:217.266667pt;}
.y5c_c00054{bottom:237.365333pt;}
.y5b_c00054{bottom:257.153333pt;}
.y5a_c00054{bottom:277.136000pt;}
.y59_c00054{bottom:296.814667pt;}
.y58_c00054{bottom:317.221333pt;}
.y57_c00054{bottom:337.185333pt;}
.y56_c00054{bottom:357.358667pt;}
.y55_c00054{bottom:377.333333pt;}
.y54_c00054{bottom:397.177333pt;}
.y53_c00054{bottom:417.300000pt;}
.y52_c00054{bottom:437.286667pt;}
.y51_c00054{bottom:458.078667pt;}
.y50_c00054{bottom:477.646667pt;}
.y4f_c00054{bottom:497.809333pt;}
.y45_c00054{bottom:534.961333pt;}
.y46_c00054{bottom:535.367341pt;}
.y47_c00054{bottom:535.839277pt;}
.y48_c00054{bottom:536.071549pt;}
.y49_c00054{bottom:536.289937pt;}
.y4a_c00054{bottom:536.479345pt;}
.y4b_c00054{bottom:536.833825pt;}
.y4c_c00054{bottom:537.291721pt;}
.y4d_c00054{bottom:537.468949pt;}
.y4e_c00054{bottom:537.947125pt;}
.y44_c00054{bottom:556.634667pt;}
.y43_c00054{bottom:576.458093pt;}
.y42_c00054{bottom:576.458373pt;}
.y41_c00054{bottom:576.458933pt;}
.y40_c00054{bottom:576.458973pt;}
.y37_c00054{bottom:595.441333pt;}
.y38_c00054{bottom:595.700467pt;}
.y39_c00054{bottom:596.075040pt;}
.y3a_c00054{bottom:596.317067pt;}
.y3b_c00054{bottom:596.729840pt;}
.y3c_c00054{bottom:597.483787pt;}
.y3d_c00054{bottom:597.680600pt;}
.y3e_c00054{bottom:598.141493pt;}
.y3f_c00054{bottom:598.405533pt;}
.y2e_c00054{bottom:616.321333pt;}
.y2f_c00054{bottom:616.684273pt;}
.y30_c00054{bottom:617.116273pt;}
.y31_c00054{bottom:617.479201pt;}
.y32_c00054{bottom:618.112057pt;}
.y33_c00054{bottom:618.284581pt;}
.y34_c00054{bottom:618.548437pt;}
.y35_c00054{bottom:618.766585pt;}
.y36_c00054{bottom:619.079833pt;}
.y28_c00054{bottom:636.241333pt;}
.y29_c00054{bottom:636.698229pt;}
.y2a_c00054{bottom:637.147147pt;}
.y2b_c00054{bottom:637.891113pt;}
.y2c_c00054{bottom:638.321991pt;}
.y2d_c00054{bottom:638.702180pt;}
.y1e_c00054{bottom:656.641333pt;}
.y1f_c00054{bottom:656.844745pt;}
.y20_c00054{bottom:657.193313pt;}
.y21_c00054{bottom:657.724071pt;}
.y22_c00054{bottom:658.267823pt;}
.y23_c00054{bottom:658.502357pt;}
.y24_c00054{bottom:658.948987pt;}
.y25_c00054{bottom:659.176041pt;}
.y26_c00054{bottom:659.522321pt;}
.y27_c00054{bottom:659.938957pt;}
.y16_c00054{bottom:677.041333pt;}
.y17_c00054{bottom:677.405829pt;}
.y18_c00054{bottom:677.626885pt;}
.y19_c00054{bottom:677.907224pt;}
.y1a_c00054{bottom:678.305981pt;}
.y1b_c00054{bottom:678.770621pt;}
.y1c_c00054{bottom:679.435403pt;}
.y1d_c00054{bottom:679.713160pt;}
.yd_c00054{bottom:696.002667pt;}
.ye_c00054{bottom:696.370161pt;}
.yf_c00054{bottom:696.786185pt;}
.y10_c00054{bottom:697.504447pt;}
.y11_c00054{bottom:697.725424pt;}
.y12_c00054{bottom:698.419953pt;}
.y13_c00054{bottom:698.989680pt;}
.y14_c00054{bottom:699.299715pt;}
.y15_c00054{bottom:699.997780pt;}
.y5_c00054{bottom:716.402667pt;}
.y6_c00054{bottom:716.986923pt;}
.y7_c00054{bottom:717.692309pt;}
.y8_c00054{bottom:718.218199pt;}
.y9_c00054{bottom:719.084065pt;}
.ya_c00054{bottom:719.675575pt;}
.yb_c00054{bottom:720.263004pt;}
.yc_c00054{bottom:720.911973pt;}
.y1_c00054{bottom:757.626667pt;}
.y2_c00054{bottom:759.029440pt;}
.y3_c00054{bottom:759.748280pt;}
.y4_c00054{bottom:760.491213pt;}
.h18_c00054{height:24.268414pt;}
.h17_c00054{height:28.935416pt;}
.h16_c00054{height:45.733333pt;}
.h8_c00054{height:55.068897pt;}
.h14_c00054{height:56.000000pt;}
.hd_c00054{height:56.933333pt;}
.h10_c00054{height:58.800000pt;}
.h13_c00054{height:59.733333pt;}
.hf_c00054{height:60.666667pt;}
.he_c00054{height:61.600000pt;}
.h11_c00054{height:62.533333pt;}
.h5_c00054{height:62.537116pt;}
.h15_c00054{height:63.466667pt;}
.h6_c00054{height:63.470506pt;}
.hb_c00054{height:64.400000pt;}
.ha_c00054{height:65.336600pt;}
.h4_c00054{height:65.342773pt;}
.hc_c00054{height:66.269350pt;}
.h9_c00054{height:66.269980pt;}
.h3_c00054{height:67.209710pt;}
.h7_c00054{height:68.137455pt;}
.h12_c00054{height:73.733333pt;}
.h2_c00054{height:119.472640pt;}
.h1_c00054{height:893.333333pt;}
.h0_c00054{height:893.466667pt;}
.w0_c00054{width:651.333333pt;}
.x0_c00054{left:0.000000pt;}
.x85_c00054{left:39.360000pt;}
.x88_c00054{left:48.112000pt;}
.x8e_c00054{left:55.224347pt;}
.x89_c00054{left:65.321333pt;}
.x86_c00054{left:79.920000pt;}
.x80_c00054{left:88.800000pt;}
.x8f_c00054{left:93.403520pt;}
.x8a_c00054{left:103.553333pt;}
.x3e_c00054{left:112.220000pt;}
.xd_c00054{left:114.432000pt;}
.x5_c00054{left:115.864000pt;}
.x71_c00054{left:117.360000pt;}
.x1_c00054{left:122.420000pt;}
.x90_c00054{left:124.573024pt;}
.x1a_c00054{left:134.525333pt;}
.xe_c00054{left:136.049333pt;}
.x63_c00054{left:138.000000pt;}
.x2e_c00054{left:141.716000pt;}
.x5f_c00054{left:143.520000pt;}
.x15_c00054{left:149.188000pt;}
.x6_c00054{left:150.232000pt;}
.x81_c00054{left:152.880000pt;}
.x37_c00054{left:154.560000pt;}
.x23_c00054{left:156.860000pt;}
.xf_c00054{left:160.521333pt;}
.x44_c00054{left:163.200000pt;}
.x1b_c00054{left:166.213333pt;}
.x33_c00054{left:167.761667pt;}
.x16_c00054{left:169.284000pt;}
.x56_c00054{left:170.400000pt;}
.x68_c00054{left:172.320000pt;}
.x53_c00054{left:173.520000pt;}
.x38_c00054{left:175.440000pt;}
.x45_c00054{left:176.400000pt;}
.x2f_c00054{left:179.173333pt;}
.x5b_c00054{left:180.720000pt;}
.x6b_c00054{left:182.640000pt;}
.x64_c00054{left:185.280000pt;}
.x72_c00054{left:186.480000pt;}
.x82_c00054{left:189.360000pt;}
.x7_c00054{left:191.725333pt;}
.x17_c00054{left:194.769333pt;}
.x75_c00054{left:196.080000pt;}
.x24_c00054{left:197.670667pt;}
.x57_c00054{left:199.200000pt;}
.x46_c00054{left:200.400000pt;}
.x10_c00054{left:202.772000pt;}
.x28_c00054{left:204.348000pt;}
.x7a_c00054{left:207.840000pt;}
.x39_c00054{left:209.520000pt;}
.x83_c00054{left:210.960000pt;}
.x1c_c00054{left:214.464000pt;}
.x11_c00054{left:215.770667pt;}
.x76_c00054{left:218.160000pt;}
.x91_c00054{left:220.997648pt;}
.x8_c00054{left:222.660000pt;}
.x60_c00054{left:224.880000pt;}
.x50_c00054{left:226.800000pt;}
.x18_c00054{left:231.020000pt;}
.x6c_c00054{left:232.800000pt;}
.x3f_c00054{left:235.577333pt;}
.x5c_c00054{left:237.360000pt;}
.x7b_c00054{left:238.560000pt;}
.x29_c00054{left:244.673333pt;}
.x54_c00054{left:246.960000pt;}
.x34_c00054{left:249.365827pt;}
.x67_c00054{left:250.560000pt;}
.x3a_c00054{left:252.000000pt;}
.x77_c00054{left:255.120000pt;}
.x12_c00054{left:256.625333pt;}
.x7c_c00054{left:258.480000pt;}
.x40_c00054{left:259.842667pt;}
.x2_c00054{left:262.697333pt;}
.x1d_c00054{left:263.896000pt;}
.x25_c00054{left:265.304000pt;}
.x51_c00054{left:267.120000pt;}
.x58_c00054{left:269.520000pt;}
.x4d_c00054{left:270.960000pt;}
.x61_c00054{left:272.400000pt;}
.x9_c00054{left:273.593333pt;}
.x65_c00054{left:275.280000pt;}
.x73_c00054{left:279.120000pt;}
.x3b_c00054{left:280.560000pt;}
.x1e_c00054{left:285.217333pt;}
.x87_c00054{left:286.800000pt;}
.x5d_c00054{left:287.760000pt;}
.x55_c00054{left:288.960000pt;}
.x13_c00054{left:290.138667pt;}
.x59_c00054{left:293.040000pt;}
.x66_c00054{left:297.120000pt;}
.x7d_c00054{left:298.320000pt;}
.x74_c00054{left:301.680000pt;}
.x35_c00054{left:302.648493pt;}
.x26_c00054{left:304.474667pt;}
.x4e_c00054{left:306.480000pt;}
.xa_c00054{left:308.388000pt;}
.x49_c00054{left:311.040000pt;}
.x2a_c00054{left:314.990667pt;}
.x7e_c00054{left:318.000000pt;}
.x30_c00054{left:320.048000pt;}
.x36_c00054{left:323.289227pt;}
.x1f_c00054{left:325.820000pt;}
.x3c_c00054{left:330.000000pt;}
.x69_c00054{left:330.960000pt;}
.x47_c00054{left:332.400000pt;}
.x3_c00054{left:334.581333pt;}
.x6d_c00054{left:337.920000pt;}
.x27_c00054{left:339.037333pt;}
.xb_c00054{left:342.942667pt;}
.x20_c00054{left:346.461333pt;}
.x14_c00054{left:349.438667pt;}
.x78_c00054{left:351.120000pt;}
.x48_c00054{left:352.800000pt;}
.x62_c00054{left:355.200000pt;}
.x52_c00054{left:356.160000pt;}
.x4a_c00054{left:357.600000pt;}
.x19_c00054{left:358.945333pt;}
.x6a_c00054{left:361.200000pt;}
.x2b_c00054{left:363.477333pt;}
.x79_c00054{left:364.800000pt;}
.x5e_c00054{left:368.160000pt;}
.x5a_c00054{left:369.120000pt;}
.x41_c00054{left:371.152000pt;}
.x6e_c00054{left:373.440000pt;}
.x3d_c00054{left:374.640000pt;}
.x21_c00054{left:377.941333pt;}
.x4b_c00054{left:379.920000pt;}
.xc_c00054{left:381.117333pt;}
.x31_c00054{left:385.818667pt;}
.x2c_c00054{left:387.716000pt;}
.x6f_c00054{left:388.800000pt;}
.x4f_c00054{left:389.760000pt;}
.x42_c00054{left:390.844000pt;}
.x7f_c00054{left:399.120000pt;}
.x8b_c00054{left:400.425333pt;}
.x4_c00054{left:408.874667pt;}
.x32_c00054{left:412.222667pt;}
.x22_c00054{left:415.817333pt;}
.x84_c00054{left:418.800000pt;}
.x4c_c00054{left:419.760000pt;}
.x2d_c00054{left:422.521333pt;}
.x92_c00054{left:424.435408pt;}
.x70_c00054{left:430.800000pt;}
.x43_c00054{left:443.974667pt;}
.x93_c00054{left:451.044688pt;}
.x94_c00054{left:456.760960pt;}
.x8c_c00054{left:465.209333pt;}
.x95_c00054{left:474.087125pt;}
.x96_c00054{left:496.908213pt;}
.x97_c00054{left:520.261333pt;}
.x8d_c00054{left:541.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m71_c00055{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m95_c00055{transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018910,0.000000,0.000000,0.250000,0,0);}
.mf0_c00055{transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);}
.me2_c00055{transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);}
.mb7_c00055{transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);}
.m7a_c00055{transform:matrix(0.066265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066265,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);}
.m50_c00055{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);}
.m6d_c00055{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);}
.m56_c00055{transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{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);}
.m6e_c00055{transform:matrix(0.153355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153355,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{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);}
.mb_c00055{transform:matrix(0.158051,-0.003003,0.004749,0.249955,0,0);-ms-transform:matrix(0.158051,-0.003003,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158051,-0.003003,0.004749,0.249955,0,0);}
.m4a_c00055{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);}
.m9a_c00055{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);}
.m1d_c00055{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);}
.m3a_c00055{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);}
.mae_c00055{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);}
.me7_c00055{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);}
.m46_c00055{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);}
.m86_c00055{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);}
.m81_c00055{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);}
.m9d_c00055{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);}
.m10_c00055{transform:matrix(0.167798,-0.002014,0.003000,0.249982,0,0);-ms-transform:matrix(0.167798,-0.002014,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167798,-0.002014,0.003000,0.249982,0,0);}
.ma6_c00055{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);}
.me5_c00055{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);}
.m7e_c00055{transform:matrix(0.168805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168805,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{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);}
.m3b_c00055{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);}
.meb_c00055{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);}
.mdd_c00055{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);}
.m7f_c00055{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);}
.md2_c00055{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);}
.m8e_c00055{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);}
.mf_c00055{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);}
.m35_c00055{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);}
.mcc_c00055{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);}
.m12_c00055{transform:matrix(0.174102,-0.002089,0.003000,0.249982,0,0);-ms-transform:matrix(0.174102,-0.002089,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174102,-0.002089,0.003000,0.249982,0,0);}
.m6c_c00055{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);}
.m31_c00055{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);}
.m6f_c00055{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);}
.m9c_c00055{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);}
.m78_c00055{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);}
.m38_c00055{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);}
.m6a_c00055{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);}
.m3e_c00055{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);}
.ma0_c00055{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_c00055{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);}
.ma1_c00055{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);}
.m25_c00055{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00055{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);}
.m9e_c00055{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_c00055{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);}
.m106_c00055{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);}
.m47_c00055{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);}
.m39_c00055{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);}
.mbf_c00055{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);}
.m2d_c00055{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);}
.mea_c00055{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);}
.mcf_c00055{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);}
.mfe_c00055{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);}
.ma3_c00055{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);}
.md0_c00055{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);}
.m1e_c00055{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);}
.m64_c00055{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);}
.m3d_c00055{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);}
.mcd_c00055{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);}
.m11_c00055{transform:matrix(0.187172,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187172,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187172,-0.002246,0.003000,0.249982,0,0);}
.m79_c00055{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);}
.m82_c00055{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);}
.mca_c00055{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);}
.m98_c00055{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);}
.mdb_c00055{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);}
.mfb_c00055{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);}
.m84_c00055{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);}
.m108_c00055{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);}
.m15_c00055{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);}
.m41_c00055{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);}
.m7d_c00055{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);}
.ma8_c00055{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);}
.mf2_c00055{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);}
.m101_c00055{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);}
.m24_c00055{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);}
.m102_c00055{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);}
.m92_c00055{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);}
.m91_c00055{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);}
.m89_c00055{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);}
.mf9_c00055{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);}
.m6_c00055{transform:matrix(0.192138,0.012899,-0.016746,0.249439,0,0);-ms-transform:matrix(0.192138,0.012899,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.192138,0.012899,-0.016746,0.249439,0,0);}
.m99_c00055{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);}
.m54_c00055{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);}
.m74_c00055{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);}
.mc_c00055{transform:matrix(0.192955,-0.003666,0.004749,0.249955,0,0);-ms-transform:matrix(0.192955,-0.003666,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192955,-0.003666,0.004749,0.249955,0,0);}
.mef_c00055{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);}
.m96_c00055{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);}
.m73_c00055{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);}
.mc0_c00055{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{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);}
.mb6_c00055{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);}
.m28_c00055{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);}
.m1c_c00055{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);}
.mdc_c00055{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);}
.mf7_c00055{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);}
.m8d_c00055{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);}
.m9b_c00055{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);}
.m33_c00055{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);}
.m8a_c00055{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);}
.m19_c00055{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);}
.mab_c00055{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);}
.m4c_c00055{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);}
.m42_c00055{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);}
.me3_c00055{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);}
.m53_c00055{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);}
.m2f_c00055{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);}
.me0_c00055{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);}
.me_c00055{transform:matrix(0.198096,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198096,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198096,-0.002377,0.003000,0.249982,0,0);}
.m5c_c00055{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);}
.m93_c00055{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);}
.m52_c00055{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);}
.m26_c00055{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);}
.me9_c00055{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);}
.ma9_c00055{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);}
.m49_c00055{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);}
.m58_c00055{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);}
.ma7_c00055{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);}
.m2e_c00055{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);}
.m3c_c00055{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);}
.m1a_c00055{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);}
.m29_c00055{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);}
.me6_c00055{transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);}
.m83_c00055{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);}
.m2b_c00055{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_c00055{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);}
.mb2_c00055{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);}
.med_c00055{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);}
.m7b_c00055{transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);}
.maa_c00055{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);}
.m32_c00055{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);}
.m97_c00055{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);}
.m48_c00055{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);}
.m23_c00055{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);}
.m104_c00055{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);}
.m105_c00055{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);}
.m27_c00055{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);}
.m100_c00055{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);}
.mee_c00055{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);}
.mb8_c00055{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);}
.md9_c00055{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);}
.mfd_c00055{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);}
.m8c_c00055{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);}
.m44_c00055{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);}
.m37_c00055{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);}
.maf_c00055{transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);}
.mf8_c00055{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);}
.m2a_c00055{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);}
.mbe_c00055{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_c00055{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);}
.m16_c00055{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);}
.mb4_c00055{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);}
.m55_c00055{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_c00055{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);}
.m80_c00055{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);}
.mf1_c00055{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);}
.m4b_c00055{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);}
.m6b_c00055{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);}
.m75_c00055{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);}
.mf3_c00055{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m109_c00055{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);}
.m60_c00055{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);}
.m87_c00055{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);}
.me4_c00055{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);}
.m8f_c00055{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);}
.m17_c00055{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);}
.mba_c00055{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);}
.m8b_c00055{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);}
.m4e_c00055{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);}
.ma5_c00055{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);}
.mac_c00055{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);}
.md3_c00055{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);}
.mb5_c00055{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);}
.m43_c00055{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);}
.mbc_c00055{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);}
.mc1_c00055{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);}
.me8_c00055{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);}
.m36_c00055{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);}
.m5a_c00055{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);}
.md6_c00055{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{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);}
.m10a_c00055{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);}
.mc8_c00055{transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00055{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);}
.m4_c00055{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{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);}
.mb0_c00055{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);}
.mfc_c00055{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);}
.md1_c00055{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.mfa_c00055{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);}
.mcb_c00055{transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{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);}
.m85_c00055{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);}
.m45_c00055{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.mde_c00055{transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);}
.mbb_c00055{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);}
.m20_c00055{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);}
.mf5_c00055{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);}
.md7_c00055{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);}
.m40_c00055{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);}
.m107_c00055{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);}
.m77_c00055{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);}
.m9f_c00055{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);}
.m94_c00055{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.mce_c00055{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);}
.m9_c00055{transform:matrix(0.245401,-0.004663,0.004749,0.249955,0,0);-ms-transform:matrix(0.245401,-0.004663,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245401,-0.004663,0.004749,0.249955,0,0);}
.mbd_c00055{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);}
.mff_c00055{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);}
.m88_c00055{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m51_c00055{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);}
.m22_c00055{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);}
.mdf_c00055{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m10b_c00055{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);}
.m90_c00055{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);}
.m63_c00055{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);}
.m30_c00055{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);}
.mf6_c00055{transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);}
.md8_c00055{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);}
.mad_c00055{transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);}
.mc9_c00055{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);}
.mb1_c00055{transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264745,0.000000,0.000000,0.250000,0,0);}
.mec_c00055{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m62_c00055{transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);}
.mc7_c00055{transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);}
.md5_c00055{transform:matrix(0.281390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281390,0.000000,0.000000,0.250000,0,0);}
.mc6_c00055{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);}
.m34_c00055{transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);}
.mc3_c00055{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);}
.m70_c00055{transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291345,0.000000,0.000000,0.250000,0,0);}
.me1_c00055{transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298980,0.000000,0.000000,0.250000,0,0);}
.mc4_c00055{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);}
.m59_c00055{transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);}
.m72_c00055{transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);}
.m61_c00055{transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316140,0.000000,0.000000,0.250000,0,0);}
.m7c_c00055{transform:matrix(0.338910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338910,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{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);}
.m65_c00055{transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00055{transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);}
.mb3_c00055{transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.366995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366995,0.000000,0.000000,0.250000,0,0);}
.mc5_c00055{transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.383920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383920,0.000000,0.000000,0.250000,0,0);}
.md4_c00055{transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);}
.m76_c00055{transform:matrix(0.390695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390695,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.395684,-0.007518,0.004749,0.249955,0,0);-ms-transform:matrix(0.395684,-0.007518,0.004749,0.249955,0,0);-webkit-transform:matrix(0.395684,-0.007518,0.004749,0.249955,0,0);}
.m5_c00055{transform:matrix(0.404839,0.027179,-0.016746,0.249439,0,0);-ms-transform:matrix(0.404839,0.027179,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.404839,0.027179,-0.016746,0.249439,0,0);}
.m5e_c00055{transform:matrix(0.411055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411055,0.000000,0.000000,0.250000,0,0);}
.m103_c00055{transform:matrix(0.460620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460620,0.000000,0.000000,0.250000,0,0);}
.m66_c00055{transform:matrix(0.465510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465510,0.000000,0.000000,0.250000,0,0);}
.m68_c00055{transform:matrix(0.498795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498795,0.000000,0.000000,0.250000,0,0);}
.mf4_c00055{transform:matrix(0.533915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533915,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.550765,0.036975,-0.016746,0.249439,0,0);-ms-transform:matrix(0.550765,0.036975,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.550765,0.036975,-0.016746,0.249439,0,0);}
.m5f_c00055{transform:matrix(0.570185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570185,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.588755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588755,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.635589,0.042670,-0.016746,0.249439,0,0);-ms-transform:matrix(0.635589,0.042670,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.635589,0.042670,-0.016746,0.249439,0,0);}
.m67_c00055{transform:matrix(0.878000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878000,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.938856,-0.017838,0.004749,0.249955,0,0);-ms-transform:matrix(0.938856,-0.017838,0.004749,0.249955,0,0);-webkit-transform:matrix(0.938856,-0.017838,0.004749,0.249955,0,0);}
.m1_c00055{transform:matrix(1.091110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.091110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.091110,0.000000,0.000000,0.250000,0,0);}
.m10c_c00055{transform:matrix(1.103270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103270,0.000000,0.000000,0.250000,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;}
.fs16_c00055{font-size:24.150000px;}
.fs0_c00055{font-size:28.350000px;}
.fs1_c00055{font-size:47.250000px;}
.fs13_c00055{font-size:50.400000px;}
.fs15_c00055{font-size:51.450000px;}
.fs14_c00055{font-size:52.500000px;}
.fs12_c00055{font-size:53.550000px;}
.fsb_c00055{font-size:65.100000px;}
.fs8_c00055{font-size:66.150000px;}
.fs10_c00055{font-size:67.200000px;}
.fsc_c00055{font-size:68.250000px;}
.fs9_c00055{font-size:69.300000px;}
.fs7_c00055{font-size:70.350000px;}
.fs6_c00055{font-size:71.400000px;}
.fs5_c00055{font-size:71.405141px;}
.fsa_c00055{font-size:72.450000px;}
.fs3_c00055{font-size:72.467857px;}
.fs11_c00055{font-size:74.550000px;}
.fs2_c00055{font-size:74.568374px;}
.fse_c00055{font-size:75.600000px;}
.fsf_c00055{font-size:76.650000px;}
.fsd_c00055{font-size:95.550000px;}
.fs4_c00055{font-size:140.725394px;}
.y0_c00055{bottom:0.000000px;}
.y62_c00055{bottom:90.180000px;}
.y61_c00055{bottom:135.868500px;}
.y60_c00055{bottom:149.877000px;}
.y5f_c00055{bottom:150.342000px;}
.y5e_c00055{bottom:150.514500px;}
.y5d_c00055{bottom:150.711000px;}
.y5c_c00055{bottom:151.135500px;}
.y5b_c00055{bottom:151.384500px;}
.y5a_c00055{bottom:151.743000px;}
.y59_c00055{bottom:152.277000px;}
.y58_c00055{bottom:152.652000px;}
.y57_c00055{bottom:153.192000px;}
.y56_c00055{bottom:153.829500px;}
.y55_c00055{bottom:154.107000px;}
.y54_c00055{bottom:154.707000px;}
.y53_c00055{bottom:169.401000px;}
.y52_c00055{bottom:169.575000px;}
.y51_c00055{bottom:169.915500px;}
.y50_c00055{bottom:170.133000px;}
.y4f_c00055{bottom:170.353500px;}
.y4e_c00055{bottom:170.787000px;}
.y4d_c00055{bottom:170.854500px;}
.y4c_c00055{bottom:171.103500px;}
.y4b_c00055{bottom:171.418500px;}
.y4a_c00055{bottom:171.607500px;}
.y49_c00055{bottom:171.729000px;}
.y48_c00055{bottom:171.949500px;}
.y47_c00055{bottom:172.267500px;}
.y46_c00055{bottom:172.527000px;}
.y45_c00055{bottom:187.395000px;}
.y44_c00055{bottom:187.548000px;}
.y43_c00055{bottom:187.735500px;}
.y42_c00055{bottom:188.016000px;}
.y41_c00055{bottom:188.488500px;}
.y40_c00055{bottom:188.604000px;}
.y3f_c00055{bottom:188.665500px;}
.y3e_c00055{bottom:188.892000px;}
.y3d_c00055{bottom:189.217500px;}
.y3c_c00055{bottom:189.463500px;}
.y3b_c00055{bottom:189.865500px;}
.y3a_c00055{bottom:189.994500px;}
.y39_c00055{bottom:190.348500px;}
.y38_c00055{bottom:205.099500px;}
.y37_c00055{bottom:205.258500px;}
.y36_c00055{bottom:205.428000px;}
.y35_c00055{bottom:205.546500px;}
.y34_c00055{bottom:205.879500px;}
.y33_c00055{bottom:206.154000px;}
.y32_c00055{bottom:206.311500px;}
.y31_c00055{bottom:206.502000px;}
.y30_c00055{bottom:206.740500px;}
.y2f_c00055{bottom:206.862000px;}
.y2e_c00055{bottom:207.028500px;}
.y2d_c00055{bottom:207.372000px;}
.y2c_c00055{bottom:207.495000px;}
.y2b_c00055{bottom:207.886500px;}
.y2a_c00055{bottom:208.170000px;}
.y29_c00055{bottom:224.293500px;}
.y28_c00055{bottom:242.035500px;}
.y27_c00055{bottom:259.894500px;}
.y26_c00055{bottom:302.470500px;}
.y25_c00055{bottom:324.708000px;}
.y24_c00055{bottom:347.596500px;}
.y23_c00055{bottom:370.788000px;}
.y22_c00055{bottom:392.964000px;}
.y21_c00055{bottom:416.457000px;}
.y20_c00055{bottom:439.744500px;}
.y1f_c00055{bottom:463.168500px;}
.y1e_c00055{bottom:486.670500px;}
.y1d_c00055{bottom:508.527000px;}
.y1c_c00055{bottom:531.699000px;}
.y1b_c00055{bottom:577.081500px;}
.y1a_c00055{bottom:598.860000px;}
.y19_c00055{bottom:621.810000px;}
.y18_c00055{bottom:643.950000px;}
.y17_c00055{bottom:666.586500px;}
.y16_c00055{bottom:690.334500px;}
.y15_c00055{bottom:713.536500px;}
.y14_c00055{bottom:735.829500px;}
.y13_c00055{bottom:758.647500px;}
.y12_c00055{bottom:781.467000px;}
.yc_c00055{bottom:803.251500px;}
.yd_c00055{bottom:803.829030px;}
.ye_c00055{bottom:804.677226px;}
.yf_c00055{bottom:805.024032px;}
.y10_c00055{bottom:805.581312px;}
.y11_c00055{bottom:805.927974px;}
.y7_c00055{bottom:843.757500px;}
.y8_c00055{bottom:846.372860px;}
.y9_c00055{bottom:847.303270px;}
.ya_c00055{bottom:847.948767px;}
.yb_c00055{bottom:847.993854px;}
.y6_c00055{bottom:891.126546px;}
.y5_c00055{bottom:899.355552px;}
.y4_c00055{bottom:902.804684px;}
.y3_c00055{bottom:909.441000px;}
.y2_c00055{bottom:910.572000px;}
.y1_c00055{bottom:910.710000px;}
.h18_c00055{height:24.150000px;}
.h2_c00055{height:28.350000px;}
.h3_c00055{height:47.250000px;}
.h15_c00055{height:50.400000px;}
.h17_c00055{height:51.450000px;}
.h16_c00055{height:52.500000px;}
.h14_c00055{height:53.550000px;}
.hd_c00055{height:65.100000px;}
.ha_c00055{height:66.150000px;}
.h12_c00055{height:67.200000px;}
.he_c00055{height:68.250000px;}
.hb_c00055{height:69.300000px;}
.h9_c00055{height:70.350000px;}
.h8_c00055{height:71.400000px;}
.h7_c00055{height:71.405141px;}
.hc_c00055{height:72.450000px;}
.h5_c00055{height:72.467857px;}
.h13_c00055{height:74.550000px;}
.h4_c00055{height:74.568374px;}
.h10_c00055{height:75.600000px;}
.h11_c00055{height:76.650000px;}
.hf_c00055{height:95.550000px;}
.h6_c00055{height:140.725394px;}
.h0_c00055{height:1008.450000px;}
.h1_c00055{height:1008.750000px;}
.w0_c00055{width:699.000000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:89.370000px;}
.x3_c00055{left:120.150000px;}
.x77_c00055{left:121.230000px;}
.x9a_c00055{left:137.611500px;}
.x7e_c00055{left:139.050000px;}
.xa_c00055{left:145.950000px;}
.x70_c00055{left:152.010000px;}
.x4_c00055{left:155.250000px;}
.x6a_c00055{left:163.620000px;}
.x5_c00055{left:166.860000px;}
.x1_c00055{left:169.290000px;}
.x43_c00055{left:173.340000px;}
.x6b_c00055{left:174.690000px;}
.x25_c00055{left:176.310000px;}
.x49_c00055{left:177.390000px;}
.x2f_c00055{left:179.010000px;}
.xf_c00055{left:180.252000px;}
.x8d_c00055{left:188.667000px;}
.xa0_c00055{left:190.353000px;}
.x5d_c00055{left:193.050000px;}
.x51_c00055{left:194.940000px;}
.x4b_c00055{left:197.100000px;}
.x63_c00055{left:198.450000px;}
.x7f_c00055{left:199.530000px;}
.x35_c00055{left:201.960000px;}
.x4e_c00055{left:203.580000px;}
.x15_c00055{left:207.630000px;}
.x59_c00055{left:209.250000px;}
.x1b_c00055{left:213.570000px;}
.xa1_c00055{left:215.733000px;}
.x3b_c00055{left:218.700000px;}
.x78_c00055{left:220.320000px;}
.x9b_c00055{left:225.355500px;}
.x10_c00055{left:228.379500px;}
.x80_c00055{left:231.390000px;}
.x5e_c00055{left:233.550000px;}
.x2a_c00055{left:234.900000px;}
.x30_c00055{left:236.520000px;}
.x36_c00055{left:237.600000px;}
.x64_c00055{left:242.460000px;}
.x52_c00055{left:248.130000px;}
.x81_c00055{left:249.210000px;}
.x26_c00055{left:250.830000px;}
.x94_c00055{left:252.117000px;}
.x3c_c00055{left:253.260000px;}
.x20_c00055{left:255.420000px;}
.x4c_c00055{left:261.900000px;}
.x8e_c00055{left:264.535500px;}
.x37_c00055{left:266.220000px;}
.xa2_c00055{left:267.303000px;}
.x5a_c00055{left:268.650000px;}
.x6c_c00055{left:271.350000px;}
.x31_c00055{left:274.590000px;}
.x1c_c00055{left:276.480000px;}
.x5f_c00055{left:277.830000px;}
.x2b_c00055{left:279.180000px;}
.xb_c00055{left:283.600500px;}
.xa3_c00055{left:284.853000px;}
.x3d_c00055{left:287.010000px;}
.x71_c00055{left:289.980000px;}
.x44_c00055{left:292.410000px;}
.x6d_c00055{left:295.110000px;}
.x95_c00055{left:296.395500px;}
.x11_c00055{left:299.062500px;}
.x53_c00055{left:301.050000px;}
.x27_c00055{left:302.940000px;}
.x38_c00055{left:304.020000px;}
.x16_c00055{left:305.100000px;}
.x65_c00055{left:306.720000px;}
.x32_c00055{left:309.690000px;}
.x4f_c00055{left:313.200000px;}
.x82_c00055{left:314.550000px;}
.x79_c00055{left:315.900000px;}
.x72_c00055{left:318.060000px;}
.x3e_c00055{left:320.220000px;}
.x1d_c00055{left:322.110000px;}
.x4d_c00055{left:324.540000px;}
.x88_c00055{left:325.828500px;}
.x12_c00055{left:327.963000px;}
.xc_c00055{left:332.569500px;}
.x28_c00055{left:337.230000px;}
.x66_c00055{left:339.660000px;}
.x96_c00055{left:341.493000px;}
.x89_c00055{left:343.104000px;}
.x17_c00055{left:344.790000px;}
.x8f_c00055{left:346.048500px;}
.x45_c00055{left:347.490000px;}
.x5b_c00055{left:348.840000px;}
.x50_c00055{left:350.460000px;}
.x6e_c00055{left:355.050000px;}
.x39_c00055{left:356.130000px;}
.x60_c00055{left:362.610000px;}
.xd_c00055{left:366.543000px;}
.xe_c00055{left:368.916000px;}
.x3f_c00055{left:370.710000px;}
.x13_c00055{left:374.403000px;}
.x21_c00055{left:375.840000px;}
.x2c_c00055{left:378.000000px;}
.x29_c00055{left:380.970000px;}
.x61_c00055{left:382.590000px;}
.x83_c00055{left:386.370000px;}
.x73_c00055{left:387.450000px;}
.x54_c00055{left:391.230000px;}
.x67_c00055{left:393.930000px;}
.x2d_c00055{left:396.630000px;}
.x18_c00055{left:398.250000px;}
.x22_c00055{left:399.600000px;}
.x14_c00055{left:403.291500px;}
.x8a_c00055{left:404.397000px;}
.x1e_c00055{left:406.890000px;}
.x33_c00055{left:410.400000px;}
.x2e_c00055{left:413.370000px;}
.x5c_c00055{left:416.340000px;}
.x68_c00055{left:420.390000px;}
.x3a_c00055{left:421.470000px;}
.x8b_c00055{left:426.810000px;}
.x46_c00055{left:428.220000px;}
.x34_c00055{left:432.000000px;}
.x84_c00055{left:433.350000px;}
.x6f_c00055{left:434.430000px;}
.x19_c00055{left:437.940000px;}
.x40_c00055{left:440.100000px;}
.x7a_c00055{left:445.230000px;}
.x97_c00055{left:448.690500px;}
.x69_c00055{left:455.490000px;}
.x23_c00055{left:462.780000px;}
.x47_c00055{left:463.860000px;}
.x1f_c00055{left:466.020000px;}
.x9c_c00055{left:469.974000px;}
.x90_c00055{left:471.354000px;}
.x98_c00055{left:480.270000px;}
.x85_c00055{left:483.570000px;}
.x24_c00055{left:485.190000px;}
.x55_c00055{left:487.890000px;}
.x8_c00055{left:490.640476px;}
.x1a_c00055{left:491.670000px;}
.x4a_c00055{left:493.830000px;}
.x48_c00055{left:499.230000px;}
.x56_c00055{left:502.740000px;}
.x91_c00055{left:511.341000px;}
.x57_c00055{left:512.730000px;}
.x62_c00055{left:513.810000px;}
.x74_c00055{left:520.830000px;}
.x41_c00055{left:523.260000px;}
.x6_c00055{left:530.424000px;}
.x7b_c00055{left:531.630000px;}
.x92_c00055{left:538.047000px;}
.x75_c00055{left:544.050000px;}
.x7c_c00055{left:548.910000px;}
.x8c_c00055{left:554.784000px;}
.x9d_c00055{left:556.911000px;}
.x93_c00055{left:559.918500px;}
.xa4_c00055{left:561.603000px;}
.x86_c00055{left:562.680000px;}
.x58_c00055{left:572.130000px;}
.x9e_c00055{left:574.138500px;}
.x42_c00055{left:577.530000px;}
.x7d_c00055{left:579.690000px;}
.x99_c00055{left:584.755500px;}
.x87_c00055{left:589.140000px;}
.x76_c00055{left:598.860000px;}
.x9f_c00055{left:620.595000px;}
.x7_c00055{left:629.275401px;}
.x9_c00055{left:645.515318px;}
.xa5_c00055{left:687.690000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fs16_c00055{font-size:21.466667pt;}
.fs0_c00055{font-size:25.200000pt;}
.fs1_c00055{font-size:42.000000pt;}
.fs13_c00055{font-size:44.800000pt;}
.fs15_c00055{font-size:45.733333pt;}
.fs14_c00055{font-size:46.666667pt;}
.fs12_c00055{font-size:47.600000pt;}
.fsb_c00055{font-size:57.866667pt;}
.fs8_c00055{font-size:58.800000pt;}
.fs10_c00055{font-size:59.733333pt;}
.fsc_c00055{font-size:60.666667pt;}
.fs9_c00055{font-size:61.600000pt;}
.fs7_c00055{font-size:62.533333pt;}
.fs6_c00055{font-size:63.466667pt;}
.fs5_c00055{font-size:63.471236pt;}
.fsa_c00055{font-size:64.400000pt;}
.fs3_c00055{font-size:64.415873pt;}
.fs11_c00055{font-size:66.266667pt;}
.fs2_c00055{font-size:66.282999pt;}
.fse_c00055{font-size:67.200000pt;}
.fsf_c00055{font-size:68.133333pt;}
.fsd_c00055{font-size:84.933333pt;}
.fs4_c00055{font-size:125.089239pt;}
.y0_c00055{bottom:0.000000pt;}
.y62_c00055{bottom:80.160000pt;}
.y61_c00055{bottom:120.772000pt;}
.y60_c00055{bottom:133.224000pt;}
.y5f_c00055{bottom:133.637333pt;}
.y5e_c00055{bottom:133.790667pt;}
.y5d_c00055{bottom:133.965333pt;}
.y5c_c00055{bottom:134.342667pt;}
.y5b_c00055{bottom:134.564000pt;}
.y5a_c00055{bottom:134.882667pt;}
.y59_c00055{bottom:135.357333pt;}
.y58_c00055{bottom:135.690667pt;}
.y57_c00055{bottom:136.170667pt;}
.y56_c00055{bottom:136.737333pt;}
.y55_c00055{bottom:136.984000pt;}
.y54_c00055{bottom:137.517333pt;}
.y53_c00055{bottom:150.578667pt;}
.y52_c00055{bottom:150.733333pt;}
.y51_c00055{bottom:151.036000pt;}
.y50_c00055{bottom:151.229333pt;}
.y4f_c00055{bottom:151.425333pt;}
.y4e_c00055{bottom:151.810667pt;}
.y4d_c00055{bottom:151.870667pt;}
.y4c_c00055{bottom:152.092000pt;}
.y4b_c00055{bottom:152.372000pt;}
.y4a_c00055{bottom:152.540000pt;}
.y49_c00055{bottom:152.648000pt;}
.y48_c00055{bottom:152.844000pt;}
.y47_c00055{bottom:153.126667pt;}
.y46_c00055{bottom:153.357333pt;}
.y45_c00055{bottom:166.573333pt;}
.y44_c00055{bottom:166.709333pt;}
.y43_c00055{bottom:166.876000pt;}
.y42_c00055{bottom:167.125333pt;}
.y41_c00055{bottom:167.545333pt;}
.y40_c00055{bottom:167.648000pt;}
.y3f_c00055{bottom:167.702667pt;}
.y3e_c00055{bottom:167.904000pt;}
.y3d_c00055{bottom:168.193333pt;}
.y3c_c00055{bottom:168.412000pt;}
.y3b_c00055{bottom:168.769333pt;}
.y3a_c00055{bottom:168.884000pt;}
.y39_c00055{bottom:169.198667pt;}
.y38_c00055{bottom:182.310667pt;}
.y37_c00055{bottom:182.452000pt;}
.y36_c00055{bottom:182.602667pt;}
.y35_c00055{bottom:182.708000pt;}
.y34_c00055{bottom:183.004000pt;}
.y33_c00055{bottom:183.248000pt;}
.y32_c00055{bottom:183.388000pt;}
.y31_c00055{bottom:183.557333pt;}
.y30_c00055{bottom:183.769333pt;}
.y2f_c00055{bottom:183.877333pt;}
.y2e_c00055{bottom:184.025333pt;}
.y2d_c00055{bottom:184.330667pt;}
.y2c_c00055{bottom:184.440000pt;}
.y2b_c00055{bottom:184.788000pt;}
.y2a_c00055{bottom:185.040000pt;}
.y29_c00055{bottom:199.372000pt;}
.y28_c00055{bottom:215.142667pt;}
.y27_c00055{bottom:231.017333pt;}
.y26_c00055{bottom:268.862667pt;}
.y25_c00055{bottom:288.629333pt;}
.y24_c00055{bottom:308.974667pt;}
.y23_c00055{bottom:329.589333pt;}
.y22_c00055{bottom:349.301333pt;}
.y21_c00055{bottom:370.184000pt;}
.y20_c00055{bottom:390.884000pt;}
.y1f_c00055{bottom:411.705333pt;}
.y1e_c00055{bottom:432.596000pt;}
.y1d_c00055{bottom:452.024000pt;}
.y1c_c00055{bottom:472.621333pt;}
.y1b_c00055{bottom:512.961333pt;}
.y1a_c00055{bottom:532.320000pt;}
.y19_c00055{bottom:552.720000pt;}
.y18_c00055{bottom:572.400000pt;}
.y17_c00055{bottom:592.521333pt;}
.y16_c00055{bottom:613.630667pt;}
.y15_c00055{bottom:634.254667pt;}
.y14_c00055{bottom:654.070667pt;}
.y13_c00055{bottom:674.353333pt;}
.y12_c00055{bottom:694.637333pt;}
.yc_c00055{bottom:714.001333pt;}
.yd_c00055{bottom:714.514693pt;}
.ye_c00055{bottom:715.268645pt;}
.yf_c00055{bottom:715.576917pt;}
.y10_c00055{bottom:716.072277pt;}
.y11_c00055{bottom:716.380421pt;}
.y7_c00055{bottom:750.006667pt;}
.y8_c00055{bottom:752.331431pt;}
.y9_c00055{bottom:753.158463pt;}
.ya_c00055{bottom:753.732237pt;}
.yb_c00055{bottom:753.772315pt;}
.y6_c00055{bottom:792.112485pt;}
.y5_c00055{bottom:799.427157pt;}
.y4_c00055{bottom:802.493052pt;}
.y3_c00055{bottom:808.392000pt;}
.y2_c00055{bottom:809.397333pt;}
.y1_c00055{bottom:809.520000pt;}
.h18_c00055{height:21.466667pt;}
.h2_c00055{height:25.200000pt;}
.h3_c00055{height:42.000000pt;}
.h15_c00055{height:44.800000pt;}
.h17_c00055{height:45.733333pt;}
.h16_c00055{height:46.666667pt;}
.h14_c00055{height:47.600000pt;}
.hd_c00055{height:57.866667pt;}
.ha_c00055{height:58.800000pt;}
.h12_c00055{height:59.733333pt;}
.he_c00055{height:60.666667pt;}
.hb_c00055{height:61.600000pt;}
.h9_c00055{height:62.533333pt;}
.h8_c00055{height:63.466667pt;}
.h7_c00055{height:63.471236pt;}
.hc_c00055{height:64.400000pt;}
.h5_c00055{height:64.415873pt;}
.h13_c00055{height:66.266667pt;}
.h4_c00055{height:66.282999pt;}
.h10_c00055{height:67.200000pt;}
.h11_c00055{height:68.133333pt;}
.hf_c00055{height:84.933333pt;}
.h6_c00055{height:125.089239pt;}
.h0_c00055{height:896.400000pt;}
.h1_c00055{height:896.666667pt;}
.w0_c00055{width:621.333333pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:79.440000pt;}
.x3_c00055{left:106.800000pt;}
.x77_c00055{left:107.760000pt;}
.x9a_c00055{left:122.321333pt;}
.x7e_c00055{left:123.600000pt;}
.xa_c00055{left:129.733333pt;}
.x70_c00055{left:135.120000pt;}
.x4_c00055{left:138.000000pt;}
.x6a_c00055{left:145.440000pt;}
.x5_c00055{left:148.320000pt;}
.x1_c00055{left:150.480000pt;}
.x43_c00055{left:154.080000pt;}
.x6b_c00055{left:155.280000pt;}
.x25_c00055{left:156.720000pt;}
.x49_c00055{left:157.680000pt;}
.x2f_c00055{left:159.120000pt;}
.xf_c00055{left:160.224000pt;}
.x8d_c00055{left:167.704000pt;}
.xa0_c00055{left:169.202667pt;}
.x5d_c00055{left:171.600000pt;}
.x51_c00055{left:173.280000pt;}
.x4b_c00055{left:175.200000pt;}
.x63_c00055{left:176.400000pt;}
.x7f_c00055{left:177.360000pt;}
.x35_c00055{left:179.520000pt;}
.x4e_c00055{left:180.960000pt;}
.x15_c00055{left:184.560000pt;}
.x59_c00055{left:186.000000pt;}
.x1b_c00055{left:189.840000pt;}
.xa1_c00055{left:191.762667pt;}
.x3b_c00055{left:194.400000pt;}
.x78_c00055{left:195.840000pt;}
.x9b_c00055{left:200.316000pt;}
.x10_c00055{left:203.004000pt;}
.x80_c00055{left:205.680000pt;}
.x5e_c00055{left:207.600000pt;}
.x2a_c00055{left:208.800000pt;}
.x30_c00055{left:210.240000pt;}
.x36_c00055{left:211.200000pt;}
.x64_c00055{left:215.520000pt;}
.x52_c00055{left:220.560000pt;}
.x81_c00055{left:221.520000pt;}
.x26_c00055{left:222.960000pt;}
.x94_c00055{left:224.104000pt;}
.x3c_c00055{left:225.120000pt;}
.x20_c00055{left:227.040000pt;}
.x4c_c00055{left:232.800000pt;}
.x8e_c00055{left:235.142667pt;}
.x37_c00055{left:236.640000pt;}
.xa2_c00055{left:237.602667pt;}
.x5a_c00055{left:238.800000pt;}
.x6c_c00055{left:241.200000pt;}
.x31_c00055{left:244.080000pt;}
.x1c_c00055{left:245.760000pt;}
.x5f_c00055{left:246.960000pt;}
.x2b_c00055{left:248.160000pt;}
.xb_c00055{left:252.089333pt;}
.xa3_c00055{left:253.202667pt;}
.x3d_c00055{left:255.120000pt;}
.x71_c00055{left:257.760000pt;}
.x44_c00055{left:259.920000pt;}
.x6d_c00055{left:262.320000pt;}
.x95_c00055{left:263.462667pt;}
.x11_c00055{left:265.833333pt;}
.x53_c00055{left:267.600000pt;}
.x27_c00055{left:269.280000pt;}
.x38_c00055{left:270.240000pt;}
.x16_c00055{left:271.200000pt;}
.x65_c00055{left:272.640000pt;}
.x32_c00055{left:275.280000pt;}
.x4f_c00055{left:278.400000pt;}
.x82_c00055{left:279.600000pt;}
.x79_c00055{left:280.800000pt;}
.x72_c00055{left:282.720000pt;}
.x3e_c00055{left:284.640000pt;}
.x1d_c00055{left:286.320000pt;}
.x4d_c00055{left:288.480000pt;}
.x88_c00055{left:289.625333pt;}
.x12_c00055{left:291.522667pt;}
.xc_c00055{left:295.617333pt;}
.x28_c00055{left:299.760000pt;}
.x66_c00055{left:301.920000pt;}
.x96_c00055{left:303.549333pt;}
.x89_c00055{left:304.981333pt;}
.x17_c00055{left:306.480000pt;}
.x8f_c00055{left:307.598667pt;}
.x45_c00055{left:308.880000pt;}
.x5b_c00055{left:310.080000pt;}
.x50_c00055{left:311.520000pt;}
.x6e_c00055{left:315.600000pt;}
.x39_c00055{left:316.560000pt;}
.x60_c00055{left:322.320000pt;}
.xd_c00055{left:325.816000pt;}
.xe_c00055{left:327.925333pt;}
.x3f_c00055{left:329.520000pt;}
.x13_c00055{left:332.802667pt;}
.x21_c00055{left:334.080000pt;}
.x2c_c00055{left:336.000000pt;}
.x29_c00055{left:338.640000pt;}
.x61_c00055{left:340.080000pt;}
.x83_c00055{left:343.440000pt;}
.x73_c00055{left:344.400000pt;}
.x54_c00055{left:347.760000pt;}
.x67_c00055{left:350.160000pt;}
.x2d_c00055{left:352.560000pt;}
.x18_c00055{left:354.000000pt;}
.x22_c00055{left:355.200000pt;}
.x14_c00055{left:358.481333pt;}
.x8a_c00055{left:359.464000pt;}
.x1e_c00055{left:361.680000pt;}
.x33_c00055{left:364.800000pt;}
.x2e_c00055{left:367.440000pt;}
.x5c_c00055{left:370.080000pt;}
.x68_c00055{left:373.680000pt;}
.x3a_c00055{left:374.640000pt;}
.x8b_c00055{left:379.386667pt;}
.x46_c00055{left:380.640000pt;}
.x34_c00055{left:384.000000pt;}
.x84_c00055{left:385.200000pt;}
.x6f_c00055{left:386.160000pt;}
.x19_c00055{left:389.280000pt;}
.x40_c00055{left:391.200000pt;}
.x7a_c00055{left:395.760000pt;}
.x97_c00055{left:398.836000pt;}
.x69_c00055{left:404.880000pt;}
.x23_c00055{left:411.360000pt;}
.x47_c00055{left:412.320000pt;}
.x1f_c00055{left:414.240000pt;}
.x9c_c00055{left:417.754667pt;}
.x90_c00055{left:418.981333pt;}
.x98_c00055{left:426.906667pt;}
.x85_c00055{left:429.840000pt;}
.x24_c00055{left:431.280000pt;}
.x55_c00055{left:433.680000pt;}
.x8_c00055{left:436.124868pt;}
.x1a_c00055{left:437.040000pt;}
.x4a_c00055{left:438.960000pt;}
.x48_c00055{left:443.760000pt;}
.x56_c00055{left:446.880000pt;}
.x91_c00055{left:454.525333pt;}
.x57_c00055{left:455.760000pt;}
.x62_c00055{left:456.720000pt;}
.x74_c00055{left:462.960000pt;}
.x41_c00055{left:465.120000pt;}
.x6_c00055{left:471.488000pt;}
.x7b_c00055{left:472.560000pt;}
.x92_c00055{left:478.264000pt;}
.x75_c00055{left:483.600000pt;}
.x7c_c00055{left:487.920000pt;}
.x8c_c00055{left:493.141333pt;}
.x9d_c00055{left:495.032000pt;}
.x93_c00055{left:497.705333pt;}
.xa4_c00055{left:499.202667pt;}
.x86_c00055{left:500.160000pt;}
.x58_c00055{left:508.560000pt;}
.x9e_c00055{left:510.345333pt;}
.x42_c00055{left:513.360000pt;}
.x7d_c00055{left:515.280000pt;}
.x99_c00055{left:519.782667pt;}
.x87_c00055{left:523.680000pt;}
.x76_c00055{left:532.320000pt;}
.x9f_c00055{left:551.640000pt;}
.x7_c00055{left:559.355912pt;}
.x9_c00055{left:573.791393pt;}
.xa5_c00055{left:611.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9_c00056{transform:matrix(0.011033,-0.000210,0.004749,0.249955,0,0);-ms-transform:matrix(0.011033,-0.000210,0.004749,0.249955,0,0);-webkit-transform:matrix(0.011033,-0.000210,0.004749,0.249955,0,0);}
.m98_c00056{transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);}
.m50_c00056{transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088230,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.091818,-0.001745,0.004749,0.249955,0,0);-ms-transform:matrix(0.091818,-0.001745,0.004749,0.249955,0,0);-webkit-transform:matrix(0.091818,-0.001745,0.004749,0.249955,0,0);}
.m53_c00056{transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);}
.ma7_c00056{transform:matrix(0.142220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142220,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.142989,-0.002717,0.004749,0.249955,0,0);-ms-transform:matrix(0.142989,-0.002717,0.004749,0.249955,0,0);-webkit-transform:matrix(0.142989,-0.002717,0.004749,0.249955,0,0);}
.m18_c00056{transform:matrix(0.143299,-0.002723,0.004749,0.249955,0,0);-ms-transform:matrix(0.143299,-0.002723,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143299,-0.002723,0.004749,0.249955,0,0);}
.ma6_c00056{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);}
.m20_c00056{transform:matrix(0.151178,-0.002872,0.004749,0.249955,0,0);-ms-transform:matrix(0.151178,-0.002872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151178,-0.002872,0.004749,0.249955,0,0);}
.m4e_c00056{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{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);}
.ma5_c00056{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);}
.m3b_c00056{transform:matrix(0.156812,-0.002979,0.004749,0.249955,0,0);-ms-transform:matrix(0.156812,-0.002979,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156812,-0.002979,0.004749,0.249955,0,0);}
.m6a_c00056{transform:matrix(0.157164,-0.001886,0.003000,0.249982,0,0);-ms-transform:matrix(0.157164,-0.001886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157164,-0.001886,0.003000,0.249982,0,0);}
.mb4_c00056{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);}
.m4f_c00056{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);}
.mbb_c00056{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);}
.m6f_c00056{transform:matrix(0.159928,-0.001919,0.003000,0.249982,0,0);-ms-transform:matrix(0.159928,-0.001919,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159928,-0.001919,0.003000,0.249982,0,0);}
.m93_c00056{transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.161645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161645,0.000000,0.000000,0.250000,0,0);}
.maa_c00056{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);}
.m51_c00056{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);}
.m39_c00056{transform:matrix(0.163321,-0.003103,0.004749,0.249955,0,0);-ms-transform:matrix(0.163321,-0.003103,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163321,-0.003103,0.004749,0.249955,0,0);}
.m35_c00056{transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);-ms-transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);}
.m44_c00056{transform:matrix(0.163620,-0.003109,0.004749,0.249955,0,0);-ms-transform:matrix(0.163620,-0.003109,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163620,-0.003109,0.004749,0.249955,0,0);}
.m72_c00056{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);}
.ma4_c00056{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);}
.m26_c00056{transform:matrix(0.165095,-0.003137,0.004749,0.249955,0,0);-ms-transform:matrix(0.165095,-0.003137,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165095,-0.003137,0.004749,0.249955,0,0);}
.m84_c00056{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);}
.m2a_c00056{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);}
.mb0_c00056{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);}
.m80_c00056{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);}
.ma2_c00056{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);}
.m97_c00056{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);}
.m40_c00056{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);}
.m6c_c00056{transform:matrix(0.172013,-0.002064,0.003000,0.249982,0,0);-ms-transform:matrix(0.172013,-0.002064,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172013,-0.002064,0.003000,0.249982,0,0);}
.m9f_c00056{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);}
.m9d_c00056{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);}
.m38_c00056{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);}
.md8_c00056{transform:matrix(0.176499,-0.003000,0.004249,0.249964,0,0);-ms-transform:matrix(0.176499,-0.003000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176499,-0.003000,0.004249,0.249964,0,0);}
.m85_c00056{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);}
.m6b_c00056{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);}
.m12_c00056{transform:matrix(0.177558,-0.003374,0.004749,0.249955,0,0);-ms-transform:matrix(0.177558,-0.003374,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177558,-0.003374,0.004749,0.249955,0,0);}
.m3a_c00056{transform:matrix(0.177643,-0.003375,0.004749,0.249955,0,0);-ms-transform:matrix(0.177643,-0.003375,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177643,-0.003375,0.004749,0.249955,0,0);}
.m3c_c00056{transform:matrix(0.177918,-0.003380,0.004749,0.249955,0,0);-ms-transform:matrix(0.177918,-0.003380,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177918,-0.003380,0.004749,0.249955,0,0);}
.mbc_c00056{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);}
.m49_c00056{transform:matrix(0.178138,-0.003385,0.004749,0.249955,0,0);-ms-transform:matrix(0.178138,-0.003385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178138,-0.003385,0.004749,0.249955,0,0);}
.maf_c00056{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);}
.m5_c00056{transform:matrix(0.178488,-0.003391,0.004749,0.249955,0,0);-ms-transform:matrix(0.178488,-0.003391,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178488,-0.003391,0.004749,0.249955,0,0);}
.m2b_c00056{transform:matrix(0.179073,-0.003402,0.004749,0.249955,0,0);-ms-transform:matrix(0.179073,-0.003402,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179073,-0.003402,0.004749,0.249955,0,0);}
.mca_c00056{transform:matrix(0.179294,-0.003048,0.004249,0.249964,0,0);-ms-transform:matrix(0.179294,-0.003048,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179294,-0.003048,0.004249,0.249964,0,0);}
.m87_c00056{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);}
.m47_c00056{transform:matrix(0.181592,-0.003450,0.004749,0.249955,0,0);-ms-transform:matrix(0.181592,-0.003450,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181592,-0.003450,0.004749,0.249955,0,0);}
.m6_c00056{transform:matrix(0.182092,-0.003460,0.004749,0.249955,0,0);-ms-transform:matrix(0.182092,-0.003460,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182092,-0.003460,0.004749,0.249955,0,0);}
.mac_c00056{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);}
.m86_c00056{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);}
.m36_c00056{transform:matrix(0.183177,-0.003480,0.004749,0.249955,0,0);-ms-transform:matrix(0.183177,-0.003480,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183177,-0.003480,0.004749,0.249955,0,0);}
.md3_c00056{transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);-ms-transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);}
.m9a_c00056{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);}
.m4c_c00056{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);}
.m55_c00056{transform:matrix(0.184185,-0.003315,0.004499,0.249960,0,0);-ms-transform:matrix(0.184185,-0.003315,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184185,-0.003315,0.004499,0.249960,0,0);}
.m17_c00056{transform:matrix(0.185237,-0.003519,0.004749,0.249955,0,0);-ms-transform:matrix(0.185237,-0.003519,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185237,-0.003519,0.004749,0.249955,0,0);}
.m21_c00056{transform:matrix(0.185791,-0.003530,0.004749,0.249955,0,0);-ms-transform:matrix(0.185791,-0.003530,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185791,-0.003530,0.004749,0.249955,0,0);}
.mc0_c00056{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);}
.me_c00056{transform:matrix(0.187616,-0.003565,0.004749,0.249955,0,0);-ms-transform:matrix(0.187616,-0.003565,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187616,-0.003565,0.004749,0.249955,0,0);}
.m9e_c00056{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);}
.mae_c00056{transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{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);}
.mb2_c00056{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);}
.m15_c00056{transform:matrix(0.188856,-0.003588,0.004749,0.249955,0,0);-ms-transform:matrix(0.188856,-0.003588,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188856,-0.003588,0.004749,0.249955,0,0);}
.mb6_c00056{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);}
.m13_c00056{transform:matrix(0.189066,-0.003592,0.004749,0.249955,0,0);-ms-transform:matrix(0.189066,-0.003592,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189066,-0.003592,0.004749,0.249955,0,0);}
.m14_c00056{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);}
.mc5_c00056{transform:matrix(0.190762,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190762,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190762,-0.003243,0.004249,0.249964,0,0);}
.m57_c00056{transform:matrix(0.191194,-0.003441,0.004499,0.249960,0,0);-ms-transform:matrix(0.191194,-0.003441,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191194,-0.003441,0.004499,0.249960,0,0);}
.m69_c00056{transform:matrix(0.191761,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191761,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191761,-0.002301,0.003000,0.249982,0,0);}
.m96_c00056{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.192255,-0.003653,0.004749,0.249955,0,0);-ms-transform:matrix(0.192255,-0.003653,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192255,-0.003653,0.004749,0.249955,0,0);}
.ma3_c00056{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);}
.m74_c00056{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);}
.m83_c00056{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);}
.mb_c00056{transform:matrix(0.193025,-0.003667,0.004749,0.249955,0,0);-ms-transform:matrix(0.193025,-0.003667,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193025,-0.003667,0.004749,0.249955,0,0);}
.m2c_c00056{transform:matrix(0.193470,-0.003676,0.004749,0.249955,0,0);-ms-transform:matrix(0.193470,-0.003676,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193470,-0.003676,0.004749,0.249955,0,0);}
.md1_c00056{transform:matrix(0.193642,-0.003292,0.004249,0.249964,0,0);-ms-transform:matrix(0.193642,-0.003292,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193642,-0.003292,0.004249,0.249964,0,0);}
.mb1_c00056{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);}
.m3e_c00056{transform:matrix(0.195615,-0.003717,0.004749,0.249955,0,0);-ms-transform:matrix(0.195615,-0.003717,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195615,-0.003717,0.004749,0.249955,0,0);}
.m27_c00056{transform:matrix(0.195905,-0.003722,0.004749,0.249955,0,0);-ms-transform:matrix(0.195905,-0.003722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195905,-0.003722,0.004749,0.249955,0,0);}
.m70_c00056{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);}
.m56_c00056{transform:matrix(0.196903,-0.003544,0.004499,0.249960,0,0);-ms-transform:matrix(0.196903,-0.003544,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196903,-0.003544,0.004499,0.249960,0,0);}
.m7e_c00056{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);}
.m8c_c00056{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{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);}
.m1f_c00056{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);}
.m6d_c00056{transform:matrix(0.198041,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.198041,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198041,-0.002376,0.003000,0.249982,0,0);}
.mb5_c00056{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);}
.m19_c00056{transform:matrix(0.198749,-0.003776,0.004749,0.249955,0,0);-ms-transform:matrix(0.198749,-0.003776,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198749,-0.003776,0.004749,0.249955,0,0);}
.m7a_c00056{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);}
.mc6_c00056{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);}
.m8f_c00056{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);}
.md7_c00056{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);}
.mad_c00056{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);}
.m29_c00056{transform:matrix(0.200799,-0.003815,0.004749,0.249955,0,0);-ms-transform:matrix(0.200799,-0.003815,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200799,-0.003815,0.004749,0.249955,0,0);}
.m90_c00056{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);}
.mf_c00056{transform:matrix(0.200934,-0.003818,0.004749,0.249955,0,0);-ms-transform:matrix(0.200934,-0.003818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200934,-0.003818,0.004749,0.249955,0,0);}
.m22_c00056{transform:matrix(0.200939,-0.003818,0.004749,0.249955,0,0);-ms-transform:matrix(0.200939,-0.003818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200939,-0.003818,0.004749,0.249955,0,0);}
.m8_c00056{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);}
.m5b_c00056{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);}
.m77_c00056{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);}
.m23_c00056{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);}
.mb9_c00056{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);}
.m94_c00056{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);}
.m1c_c00056{transform:matrix(0.203168,-0.003860,0.004749,0.249955,0,0);-ms-transform:matrix(0.203168,-0.003860,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203168,-0.003860,0.004749,0.249955,0,0);}
.m31_c00056{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);}
.mc7_c00056{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);}
.m78_c00056{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);}
.m37_c00056{transform:matrix(0.203803,-0.003872,0.004749,0.249955,0,0);-ms-transform:matrix(0.203803,-0.003872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203803,-0.003872,0.004749,0.249955,0,0);}
.m43_c00056{transform:matrix(0.203818,-0.003873,0.004749,0.249955,0,0);-ms-transform:matrix(0.203818,-0.003873,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203818,-0.003873,0.004749,0.249955,0,0);}
.md6_c00056{transform:matrix(0.203891,-0.003466,0.004249,0.249964,0,0);-ms-transform:matrix(0.203891,-0.003466,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203891,-0.003466,0.004249,0.249964,0,0);}
.m82_c00056{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);}
.m60_c00056{transform:matrix(0.204135,-0.002450,0.003000,0.249982,0,0);-ms-transform:matrix(0.204135,-0.002450,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204135,-0.002450,0.003000,0.249982,0,0);}
.m66_c00056{transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);-ms-transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);}
.m8b_c00056{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m7f_c00056{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);}
.m16_c00056{transform:matrix(0.205808,-0.003910,0.004749,0.249955,0,0);-ms-transform:matrix(0.205808,-0.003910,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205808,-0.003910,0.004749,0.249955,0,0);}
.m9c_c00056{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);}
.m33_c00056{transform:matrix(0.206473,-0.003923,0.004749,0.249955,0,0);-ms-transform:matrix(0.206473,-0.003923,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206473,-0.003923,0.004749,0.249955,0,0);}
.m88_c00056{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);}
.m91_c00056{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);}
.m95_c00056{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);}
.m5d_c00056{transform:matrix(0.207845,-0.002494,0.003000,0.249982,0,0);-ms-transform:matrix(0.207845,-0.002494,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207845,-0.002494,0.003000,0.249982,0,0);}
.m32_c00056{transform:matrix(0.208102,-0.003954,0.004749,0.249955,0,0);-ms-transform:matrix(0.208102,-0.003954,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208102,-0.003954,0.004749,0.249955,0,0);}
.m24_c00056{transform:matrix(0.208332,-0.003958,0.004749,0.249955,0,0);-ms-transform:matrix(0.208332,-0.003958,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208332,-0.003958,0.004749,0.249955,0,0);}
.m5c_c00056{transform:matrix(0.208745,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208745,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208745,-0.002505,0.003000,0.249982,0,0);}
.m79_c00056{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);}
.mcd_c00056{transform:matrix(0.208915,-0.003552,0.004249,0.249964,0,0);-ms-transform:matrix(0.208915,-0.003552,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208915,-0.003552,0.004249,0.249964,0,0);}
.mab_c00056{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);}
.m7b_c00056{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);}
.m8e_c00056{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);}
.m63_c00056{transform:matrix(0.211445,-0.002537,0.003000,0.249982,0,0);-ms-transform:matrix(0.211445,-0.002537,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211445,-0.002537,0.003000,0.249982,0,0);}
.m67_c00056{transform:matrix(0.212760,-0.002553,0.003000,0.249982,0,0);-ms-transform:matrix(0.212760,-0.002553,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212760,-0.002553,0.003000,0.249982,0,0);}
.m6e_c00056{transform:matrix(0.213075,-0.002557,0.003000,0.249982,0,0);-ms-transform:matrix(0.213075,-0.002557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213075,-0.002557,0.003000,0.249982,0,0);}
.m7_c00056{transform:matrix(0.213726,-0.004061,0.004749,0.249955,0,0);-ms-transform:matrix(0.213726,-0.004061,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213726,-0.004061,0.004749,0.249955,0,0);}
.m8d_c00056{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);}
.m25_c00056{transform:matrix(0.215731,-0.004099,0.004749,0.249955,0,0);-ms-transform:matrix(0.215731,-0.004099,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215731,-0.004099,0.004749,0.249955,0,0);}
.m34_c00056{transform:matrix(0.216231,-0.004108,0.004749,0.249955,0,0);-ms-transform:matrix(0.216231,-0.004108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216231,-0.004108,0.004749,0.249955,0,0);}
.m9b_c00056{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);}
.ma9_c00056{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);}
.m28_c00056{transform:matrix(0.217956,-0.004141,0.004749,0.249955,0,0);-ms-transform:matrix(0.217956,-0.004141,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217956,-0.004141,0.004749,0.249955,0,0);}
.m1d_c00056{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);}
.mc_c00056{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);}
.m4b_c00056{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);}
.m99_c00056{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);}
.m2f_c00056{transform:matrix(0.220370,-0.004187,0.004749,0.249955,0,0);-ms-transform:matrix(0.220370,-0.004187,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220370,-0.004187,0.004749,0.249955,0,0);}
.mba_c00056{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);}
.mc3_c00056{transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);}
.mc8_c00056{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);}
.m54_c00056{transform:matrix(0.223754,-0.004028,0.004499,0.249960,0,0);-ms-transform:matrix(0.223754,-0.004028,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223754,-0.004028,0.004499,0.249960,0,0);}
.md4_c00056{transform:matrix(0.224053,-0.003809,0.004249,0.249964,0,0);-ms-transform:matrix(0.224053,-0.003809,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224053,-0.003809,0.004249,0.249964,0,0);}
.md5_c00056{transform:matrix(0.224843,-0.003822,0.004249,0.249964,0,0);-ms-transform:matrix(0.224843,-0.003822,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224843,-0.003822,0.004249,0.249964,0,0);}
.mbf_c00056{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);}
.mc9_c00056{transform:matrix(0.228787,-0.003889,0.004249,0.249964,0,0);-ms-transform:matrix(0.228787,-0.003889,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228787,-0.003889,0.004249,0.249964,0,0);}
.md_c00056{transform:matrix(0.229264,-0.004356,0.004749,0.249955,0,0);-ms-transform:matrix(0.229264,-0.004356,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229264,-0.004356,0.004749,0.249955,0,0);}
.m1a_c00056{transform:matrix(0.229509,-0.004361,0.004749,0.249955,0,0);-ms-transform:matrix(0.229509,-0.004361,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229509,-0.004361,0.004749,0.249955,0,0);}
.mb7_c00056{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);}
.mb3_c00056{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);}
.m75_c00056{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);}
.m5f_c00056{transform:matrix(0.231023,-0.002772,0.003000,0.249982,0,0);-ms-transform:matrix(0.231023,-0.002772,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231023,-0.002772,0.003000,0.249982,0,0);}
.m3d_c00056{transform:matrix(0.231723,-0.004403,0.004749,0.249955,0,0);-ms-transform:matrix(0.231723,-0.004403,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231723,-0.004403,0.004749,0.249955,0,0);}
.m81_c00056{transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.232808,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232808,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232808,-0.002794,0.003000,0.249982,0,0);}
.m2_c00056{transform:matrix(0.233488,-0.004436,0.004749,0.249955,0,0);-ms-transform:matrix(0.233488,-0.004436,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233488,-0.004436,0.004749,0.249955,0,0);}
.md0_c00056{transform:matrix(0.234651,-0.003989,0.004249,0.249964,0,0);-ms-transform:matrix(0.234651,-0.003989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234651,-0.003989,0.004249,0.249964,0,0);}
.m10_c00056{transform:matrix(0.234658,-0.004458,0.004749,0.249955,0,0);-ms-transform:matrix(0.234658,-0.004458,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234658,-0.004458,0.004749,0.249955,0,0);}
.mcb_c00056{transform:matrix(0.235591,-0.004005,0.004249,0.249964,0,0);-ms-transform:matrix(0.235591,-0.004005,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235591,-0.004005,0.004249,0.249964,0,0);}
.mc1_c00056{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);}
.m62_c00056{transform:matrix(0.236943,-0.002843,0.003000,0.249982,0,0);-ms-transform:matrix(0.236943,-0.002843,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236943,-0.002843,0.003000,0.249982,0,0);}
.md2_c00056{transform:matrix(0.236971,-0.004029,0.004249,0.249964,0,0);-ms-transform:matrix(0.236971,-0.004029,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236971,-0.004029,0.004249,0.249964,0,0);}
.m89_c00056{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.240167,-0.004563,0.004749,0.249955,0,0);-ms-transform:matrix(0.240167,-0.004563,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240167,-0.004563,0.004749,0.249955,0,0);}
.mb8_c00056{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);}
.mce_c00056{transform:matrix(0.240350,-0.004086,0.004249,0.249964,0,0);-ms-transform:matrix(0.240350,-0.004086,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240350,-0.004086,0.004249,0.249964,0,0);}
.m7c_c00056{transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.mbd_c00056{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);}
.m76_c00056{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);}
.mc2_c00056{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);}
.mc4_c00056{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.mbe_c00056{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.256829,-0.004880,0.004749,0.249955,0,0);-ms-transform:matrix(0.256829,-0.004880,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256829,-0.004880,0.004749,0.249955,0,0);}
.m1e_c00056{transform:matrix(0.258693,-0.004915,0.004749,0.249955,0,0);-ms-transform:matrix(0.258693,-0.004915,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258693,-0.004915,0.004749,0.249955,0,0);}
.m71_c00056{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.mcc_c00056{transform:matrix(0.268941,-0.004572,0.004249,0.249964,0,0);-ms-transform:matrix(0.268941,-0.004572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268941,-0.004572,0.004249,0.249964,0,0);}
.m8a_c00056{transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);}
.ma1_c00056{transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);}
.mcf_c00056{transform:matrix(0.274445,-0.004666,0.004249,0.249964,0,0);-ms-transform:matrix(0.274445,-0.004666,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274445,-0.004666,0.004249,0.249964,0,0);}
.m42_c00056{transform:matrix(0.274630,-0.005218,0.004749,0.249955,0,0);-ms-transform:matrix(0.274630,-0.005218,0.004749,0.249955,0,0);-webkit-transform:matrix(0.274630,-0.005218,0.004749,0.249955,0,0);}
.m65_c00056{transform:matrix(0.276745,-0.003321,0.003000,0.249982,0,0);-ms-transform:matrix(0.276745,-0.003321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276745,-0.003321,0.003000,0.249982,0,0);}
.ma8_c00056{transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.291057,-0.005530,0.004749,0.249955,0,0);-ms-transform:matrix(0.291057,-0.005530,0.004749,0.249955,0,0);-webkit-transform:matrix(0.291057,-0.005530,0.004749,0.249955,0,0);}
.m3_c00056{transform:matrix(0.300831,-0.005716,0.004749,0.249955,0,0);-ms-transform:matrix(0.300831,-0.005716,0.004749,0.249955,0,0);-webkit-transform:matrix(0.300831,-0.005716,0.004749,0.249955,0,0);}
.m4d_c00056{transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304190,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.317310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317310,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.318942,-0.006060,0.004749,0.249955,0,0);-ms-transform:matrix(0.318942,-0.006060,0.004749,0.249955,0,0);-webkit-transform:matrix(0.318942,-0.006060,0.004749,0.249955,0,0);}
.m1b_c00056{transform:matrix(0.342418,-0.006506,0.004749,0.249955,0,0);-ms-transform:matrix(0.342418,-0.006506,0.004749,0.249955,0,0);-webkit-transform:matrix(0.342418,-0.006506,0.004749,0.249955,0,0);}
.m68_c00056{transform:matrix(0.345470,-0.004146,0.003000,0.249982,0,0);-ms-transform:matrix(0.345470,-0.004146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.345470,-0.004146,0.003000,0.249982,0,0);}
.ma_c00056{transform:matrix(0.346562,-0.006585,0.004749,0.249955,0,0);-ms-transform:matrix(0.346562,-0.006585,0.004749,0.249955,0,0);-webkit-transform:matrix(0.346562,-0.006585,0.004749,0.249955,0,0);}
.ma0_c00056{transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.355729,-0.004269,0.003000,0.249982,0,0);-ms-transform:matrix(0.355729,-0.004269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.355729,-0.004269,0.003000,0.249982,0,0);}
.m1_c00056{transform:matrix(0.361935,-0.006877,0.004749,0.249955,0,0);-ms-transform:matrix(0.361935,-0.006877,0.004749,0.249955,0,0);-webkit-transform:matrix(0.361935,-0.006877,0.004749,0.249955,0,0);}
.m2d_c00056{transform:matrix(0.376567,-0.007155,0.004749,0.249955,0,0);-ms-transform:matrix(0.376567,-0.007155,0.004749,0.249955,0,0);-webkit-transform:matrix(0.376567,-0.007155,0.004749,0.249955,0,0);}
.m30_c00056{transform:matrix(0.403602,-0.007668,0.004749,0.249955,0,0);-ms-transform:matrix(0.403602,-0.007668,0.004749,0.249955,0,0);-webkit-transform:matrix(0.403602,-0.007668,0.004749,0.249955,0,0);}
.m46_c00056{transform:matrix(0.422774,-0.008033,0.004749,0.249955,0,0);-ms-transform:matrix(0.422774,-0.008033,0.004749,0.249955,0,0);-webkit-transform:matrix(0.422774,-0.008033,0.004749,0.249955,0,0);}
.m4_c00056{transform:matrix(0.478934,-0.009100,0.004749,0.249955,0,0);-ms-transform:matrix(0.478934,-0.009100,0.004749,0.249955,0,0);-webkit-transform:matrix(0.478934,-0.009100,0.004749,0.249955,0,0);}
.m58_c00056{transform:matrix(0.480595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480595,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.496417,-0.014892,0.007497,0.249888,0,0);-ms-transform:matrix(0.496417,-0.014892,0.007497,0.249888,0,0);-webkit-transform:matrix(0.496417,-0.014892,0.007497,0.249888,0,0);}
.m59_c00056{transform:matrix(0.547395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547395,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;}
.fs17_c00056{font-size:45.150000px;}
.fs13_c00056{font-size:47.250000px;}
.fs10_c00056{font-size:49.350000px;}
.fs18_c00056{font-size:50.407282px;}
.fs11_c00056{font-size:51.450000px;}
.fs19_c00056{font-size:51.457434px;}
.fsf_c00056{font-size:52.500000px;}
.fs12_c00056{font-size:53.550000px;}
.fs16_c00056{font-size:58.800000px;}
.fs14_c00056{font-size:63.000000px;}
.fsd_c00056{font-size:66.154763px;}
.fsc_c00056{font-size:67.204838px;}
.fs9_c00056{font-size:68.261056px;}
.fs6_c00056{font-size:69.300000px;}
.fs4_c00056{font-size:69.312508px;}
.fs1_c00056{font-size:70.362697px;}
.fs3_c00056{font-size:73.513266px;}
.fse_c00056{font-size:75.605443px;}
.fs5_c00056{font-size:76.663834px;}
.fs8_c00056{font-size:79.800000px;}
.fs15_c00056{font-size:85.050000px;}
.fs2_c00056{font-size:88.215919px;}
.fsa_c00056{font-size:94.500000px;}
.fsb_c00056{font-size:95.550000px;}
.fs7_c00056{font-size:97.650000px;}
.fs0_c00056{font-size:143.914718px;}
.y0_c00056{bottom:0.000000px;}
.y71_c00056{bottom:148.321500px;}
.y70_c00056{bottom:165.240000px;}
.y99_c00056{bottom:168.053703px;}
.y98_c00056{bottom:168.054050px;}
.y9b_c00056{bottom:168.054094px;}
.y96_c00056{bottom:168.054233px;}
.y9a_c00056{bottom:168.054347px;}
.y97_c00056{bottom:168.054601px;}
.y6f_c00056{bottom:183.354000px;}
.y8f_c00056{bottom:184.143000px;}
.y90_c00056{bottom:184.409424px;}
.y91_c00056{bottom:184.832979px;}
.y92_c00056{bottom:185.475401px;}
.y93_c00056{bottom:185.924608px;}
.y94_c00056{bottom:186.851890px;}
.y95_c00056{bottom:187.578029px;}
.y6e_c00056{bottom:200.866500px;}
.y88_c00056{bottom:202.233000px;}
.y89_c00056{bottom:203.150567px;}
.y8a_c00056{bottom:203.816576px;}
.y8b_c00056{bottom:204.083000px;}
.y8c_c00056{bottom:204.886224px;}
.y8d_c00056{bottom:205.166342px;}
.y8e_c00056{bottom:205.428023px;}
.y6d_c00056{bottom:218.527500px;}
.y80_c00056{bottom:220.318500px;}
.y81_c00056{bottom:221.035500px;}
.y82_c00056{bottom:221.362500px;}
.y83_c00056{bottom:221.643000px;}
.y84_c00056{bottom:221.919000px;}
.y85_c00056{bottom:222.409500px;}
.y86_c00056{bottom:223.101000px;}
.y87_c00056{bottom:223.401000px;}
.y6c_c00056{bottom:236.569500px;}
.y79_c00056{bottom:238.680000px;}
.y7a_c00056{bottom:238.953000px;}
.y7b_c00056{bottom:239.734500px;}
.y7c_c00056{bottom:240.274500px;}
.y7d_c00056{bottom:240.807000px;}
.y7e_c00056{bottom:241.441500px;}
.y7f_c00056{bottom:241.713000px;}
.y6b_c00056{bottom:254.503500px;}
.y74_c00056{bottom:256.501500px;}
.y75_c00056{bottom:257.796000px;}
.y76_c00056{bottom:258.697500px;}
.y77_c00056{bottom:258.873000px;}
.y78_c00056{bottom:259.111500px;}
.y6a_c00056{bottom:272.206500px;}
.y73_c00056{bottom:275.527500px;}
.y63_c00056{bottom:311.311254px;}
.y64_c00056{bottom:312.099984px;}
.y65_c00056{bottom:312.535050px;}
.y66_c00056{bottom:313.183860px;}
.y67_c00056{bottom:313.454484px;}
.y68_c00056{bottom:313.882692px;}
.y69_c00056{bottom:314.710386px;}
.y5c_c00056{bottom:333.721332px;}
.y5d_c00056{bottom:335.142582px;}
.y5e_c00056{bottom:336.031266px;}
.y5f_c00056{bottom:336.498312px;}
.y60_c00056{bottom:336.768594px;}
.y61_c00056{bottom:337.306476px;}
.y62_c00056{bottom:338.127744px;}
.y55_c00056{bottom:357.211500px;}
.y56_c00056{bottom:357.610146px;}
.y57_c00056{bottom:358.614672px;}
.y58_c00056{bottom:359.127132px;}
.y59_c00056{bottom:359.311650px;}
.y5a_c00056{bottom:359.830122px;}
.y5b_c00056{bottom:360.646512px;}
.y54_c00056{bottom:382.095000px;}
.y53_c00056{bottom:417.273000px;}
.y72_c00056{bottom:419.451000px;}
.y4f_c00056{bottom:475.744500px;}
.y50_c00056{bottom:476.132895px;}
.y51_c00056{bottom:477.703215px;}
.y52_c00056{bottom:479.273427px;}
.y4e_c00056{bottom:503.844000px;}
.y4d_c00056{bottom:525.205500px;}
.y4c_c00056{bottom:545.535000px;}
.y43_c00056{bottom:610.277508px;}
.y44_c00056{bottom:611.185722px;}
.y45_c00056{bottom:611.618880px;}
.y46_c00056{bottom:612.691561px;}
.y47_c00056{bottom:612.885804px;}
.y48_c00056{bottom:613.309489px;}
.y49_c00056{bottom:614.240610px;}
.y4a_c00056{bottom:614.607624px;}
.y4b_c00056{bottom:615.619804px;}
.y3b_c00056{bottom:632.852877px;}
.y3c_c00056{bottom:633.973795px;}
.y3d_c00056{bottom:634.533528px;}
.y3e_c00056{bottom:635.694984px;}
.y3f_c00056{bottom:636.021378px;}
.y40_c00056{bottom:636.925716px;}
.y41_c00056{bottom:637.208940px;}
.y42_c00056{bottom:637.558287px;}
.y31_c00056{bottom:655.270635px;}
.y32_c00056{bottom:656.070630px;}
.y33_c00056{bottom:656.472537px;}
.y34_c00056{bottom:657.791089px;}
.y35_c00056{bottom:658.644465px;}
.y36_c00056{bottom:659.232648px;}
.y37_c00056{bottom:659.629539px;}
.y38_c00056{bottom:660.110220px;}
.y39_c00056{bottom:660.655767px;}
.y3a_c00056{bottom:661.326514px;}
.y30_c00056{bottom:682.241838px;}
.y2e_c00056{bottom:682.242094px;}
.y2f_c00056{bottom:682.242405px;}
.y24_c00056{bottom:701.425932px;}
.y25_c00056{bottom:702.296836px;}
.y26_c00056{bottom:702.745281px;}
.y27_c00056{bottom:703.823263px;}
.y28_c00056{bottom:704.153823px;}
.y29_c00056{bottom:704.772862px;}
.y2a_c00056{bottom:705.379419px;}
.y2b_c00056{bottom:705.769083px;}
.y2c_c00056{bottom:706.365825px;}
.y2d_c00056{bottom:706.724250px;}
.y1c_c00056{bottom:725.141562px;}
.y1d_c00056{bottom:725.448165px;}
.y1e_c00056{bottom:725.737818px;}
.y1f_c00056{bottom:726.619281px;}
.y20_c00056{bottom:726.891499px;}
.y21_c00056{bottom:727.815262px;}
.y22_c00056{bottom:728.419120px;}
.y23_c00056{bottom:729.094512px;}
.y12_c00056{bottom:747.350017px;}
.y13_c00056{bottom:747.717544px;}
.y14_c00056{bottom:748.540042px;}
.y15_c00056{bottom:749.223555px;}
.y16_c00056{bottom:750.347521px;}
.y17_c00056{bottom:750.994323px;}
.y18_c00056{bottom:751.225105px;}
.y19_c00056{bottom:751.894660px;}
.y1a_c00056{bottom:752.280780px;}
.y1b_c00056{bottom:752.727742px;}
.yc_c00056{bottom:769.488573px;}
.yd_c00056{bottom:770.844223px;}
.ye_c00056{bottom:772.437361px;}
.yf_c00056{bottom:773.082181px;}
.y10_c00056{bottom:774.768345px;}
.y11_c00056{bottom:775.047012px;}
.ya_c00056{bottom:795.145491px;}
.yb_c00056{bottom:797.126533px;}
.y2_c00056{bottom:816.489000px;}
.y3_c00056{bottom:817.059000px;}
.y4_c00056{bottom:817.725985px;}
.y5_c00056{bottom:818.187885px;}
.y6_c00056{bottom:819.515586px;}
.y7_c00056{bottom:819.994357px;}
.y8_c00056{bottom:821.000037px;}
.y9_c00056{bottom:821.434206px;}
.y1_c00056{bottom:904.513500px;}
.h19_c00056{height:45.150000px;}
.h15_c00056{height:47.250000px;}
.h12_c00056{height:49.350000px;}
.h1a_c00056{height:50.407282px;}
.h13_c00056{height:51.450000px;}
.h1b_c00056{height:51.457434px;}
.h11_c00056{height:52.500000px;}
.h14_c00056{height:53.550000px;}
.h18_c00056{height:58.800000px;}
.h16_c00056{height:63.000000px;}
.hf_c00056{height:66.154763px;}
.he_c00056{height:67.204838px;}
.hb_c00056{height:68.261056px;}
.h8_c00056{height:69.300000px;}
.h6_c00056{height:69.312508px;}
.h3_c00056{height:70.362697px;}
.h5_c00056{height:73.513266px;}
.h10_c00056{height:75.605443px;}
.h7_c00056{height:76.663834px;}
.ha_c00056{height:79.800000px;}
.h17_c00056{height:85.050000px;}
.h4_c00056{height:88.215919px;}
.hc_c00056{height:94.500000px;}
.hd_c00056{height:95.550000px;}
.h9_c00056{height:97.650000px;}
.h2_c00056{height:143.914718px;}
.h1_c00056{height:1005.000000px;}
.h0_c00056{height:1005.150000px;}
.w0_c00056{width:732.750000px;}
.x0_c00056{left:0.000000px;}
.x6d_c00056{left:62.100000px;}
.x6e_c00056{left:87.480000px;}
.x66_c00056{left:92.070000px;}
.x53_c00056{left:97.470000px;}
.x56_c00056{left:100.710000px;}
.x63_c00056{left:101.790000px;}
.x67_c00056{left:103.950000px;}
.x1a_c00056{left:112.873484px;}
.x5b_c00056{left:118.800000px;}
.x29_c00056{left:121.970835px;}
.x2_c00056{left:132.247500px;}
.x6f_c00056{left:136.890000px;}
.x1_c00056{left:140.553000px;}
.x57_c00056{left:143.100000px;}
.x68_c00056{left:144.450000px;}
.x1b_c00056{left:150.099592px;}
.x11_c00056{left:153.326793px;}
.x60_c00056{left:155.520000px;}
.x54_c00056{left:160.920000px;}
.x3_c00056{left:162.247500px;}
.x2a_c00056{left:164.075835px;}
.x5e_c00056{left:166.590000px;}
.x69_c00056{left:169.830000px;}
.x70_c00056{left:171.720000px;}
.x37_c00056{left:176.200716px;}
.x46_c00056{left:179.445000px;}
.x1f_c00056{left:183.768461px;}
.x2b_c00056{left:185.228835px;}
.x3d_c00056{left:187.380000px;}
.x64_c00056{left:188.730000px;}
.x58_c00056{left:190.350000px;}
.xc_c00056{left:193.543058px;}
.xa_c00056{left:194.964513px;}
.x6a_c00056{left:196.020000px;}
.x4_c00056{left:197.352000px;}
.x12_c00056{left:201.670617px;}
.x5c_c00056{left:202.770000px;}
.x1c_c00056{left:205.179728px;}
.x20_c00056{left:210.134958px;}
.x47_c00056{left:212.665500px;}
.x59_c00056{left:213.840000px;}
.x5_c00056{left:221.662500px;}
.x33_c00056{left:225.449040px;}
.x51_c00056{left:226.450308px;}
.x45_c00056{left:229.770000px;}
.x5f_c00056{left:236.790000px;}
.x4d_c00056{left:240.767118px;}
.x13_c00056{left:241.909656px;}
.x5a_c00056{left:243.540000px;}
.x6b_c00056{left:245.700000px;}
.x71_c00056{left:250.020000px;}
.x55_c00056{left:251.640000px;}
.x2c_c00056{left:254.626335px;}
.x61_c00056{left:261.360000px;}
.x38_c00056{left:264.774579px;}
.xd_c00056{left:265.940925px;}
.x21_c00056{left:273.504852px;}
.x39_c00056{left:276.182507px;}
.x1d_c00056{left:279.972503px;}
.xb_c00056{left:281.065458px;}
.x62_c00056{left:282.150000px;}
.x28_c00056{left:284.067558px;}
.x3e_c00056{left:285.390000px;}
.x72_c00056{left:288.090000px;}
.x34_c00056{left:289.974266px;}
.x6_c00056{left:291.541500px;}
.x22_c00056{left:292.956093px;}
.xe_c00056{left:295.219244px;}
.x48_c00056{left:296.376000px;}
.x65_c00056{left:298.350000px;}
.x2d_c00056{left:299.540835px;}
.x3a_c00056{left:301.087947px;}
.x5d_c00056{left:302.670000px;}
.x14_c00056{left:308.015664px;}
.x4e_c00056{left:309.073290px;}
.x6c_c00056{left:313.200000px;}
.x7_c00056{left:316.740000px;}
.x1e_c00056{left:317.756669px;}
.x3f_c00056{left:327.510000px;}
.x23_c00056{left:329.327961px;}
.x2e_c00056{left:330.497835px;}
.x49_c00056{left:339.081000px;}
.x4f_c00056{left:344.993358px;}
.x15_c00056{left:346.085617px;}
.x73_c00056{left:348.570000px;}
.x7e_c00056{left:349.773000px;}
.x2f_c00056{left:351.386835px;}
.x40_c00056{left:352.890000px;}
.x4a_c00056{left:354.457500px;}
.x3b_c00056{left:355.859528px;}
.x35_c00056{left:358.303548px;}
.x16_c00056{left:359.653630px;}
.x24_c00056{left:365.042829px;}
.x8_c00056{left:369.670500px;}
.xf_c00056{left:371.881383px;}
.x36_c00056{left:373.999833px;}
.x30_c00056{left:376.685835px;}
.x10_c00056{left:384.573670px;}
.x25_c00056{left:387.999712px;}
.x8c_c00056{left:390.663000px;}
.x9_c00056{left:392.521500px;}
.x52_c00056{left:393.851310px;}
.x4b_c00056{left:397.663500px;}
.x17_c00056{left:399.000112px;}
.x87_c00056{left:403.254000px;}
.x31_c00056{left:405.398835px;}
.x41_c00056{left:407.700000px;}
.x74_c00056{left:410.400000px;}
.x90_c00056{left:412.841067px;}
.x82_c00056{left:418.590000px;}
.x42_c00056{left:420.390000px;}
.x18_c00056{left:421.691467px;}
.x26_c00056{left:423.119052px;}
.x75_c00056{left:424.440000px;}
.x8d_c00056{left:428.452500px;}
.x3c_c00056{left:436.978106px;}
.x91_c00056{left:439.034140px;}
.x32_c00056{left:440.701335px;}
.x88_c00056{left:442.431000px;}
.x27_c00056{left:444.194850px;}
.x76_c00056{left:446.310000px;}
.x19_c00056{left:447.979965px;}
.x83_c00056{left:455.676000px;}
.x89_c00056{left:458.103000px;}
.x7f_c00056{left:463.719000px;}
.x4c_c00056{left:465.696000px;}
.x92_c00056{left:468.198055px;}
.x50_c00056{left:470.277846px;}
.x77_c00056{left:475.740000px;}
.x84_c00056{left:488.338500px;}
.x78_c00056{left:502.200000px;}
.x43_c00056{left:505.980000px;}
.x8e_c00056{left:509.422500px;}
.x93_c00056{left:512.754933px;}
.x7b_c00056{left:517.716000px;}
.x8a_c00056{left:521.829000px;}
.x79_c00056{left:523.260000px;}
.x7c_c00056{left:531.213000px;}
.x85_c00056{left:534.462000px;}
.x8b_c00056{left:537.222000px;}
.x44_c00056{left:543.780000px;}
.x80_c00056{left:547.155000px;}
.x7d_c00056{left:549.604500px;}
.x8f_c00056{left:552.136500px;}
.x86_c00056{left:554.497500px;}
.x7a_c00056{left:562.410000px;}
.x81_c00056{left:566.595000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fs17_c00056{font-size:40.133333pt;}
.fs13_c00056{font-size:42.000000pt;}
.fs10_c00056{font-size:43.866667pt;}
.fs18_c00056{font-size:44.806473pt;}
.fs11_c00056{font-size:45.733333pt;}
.fs19_c00056{font-size:45.739941pt;}
.fsf_c00056{font-size:46.666667pt;}
.fs12_c00056{font-size:47.600000pt;}
.fs16_c00056{font-size:52.266667pt;}
.fs14_c00056{font-size:56.000000pt;}
.fsd_c00056{font-size:58.804233pt;}
.fsc_c00056{font-size:59.737634pt;}
.fs9_c00056{font-size:60.676494pt;}
.fs6_c00056{font-size:61.600000pt;}
.fs4_c00056{font-size:61.611118pt;}
.fs1_c00056{font-size:62.544620pt;}
.fs3_c00056{font-size:65.345125pt;}
.fse_c00056{font-size:67.204838pt;}
.fs5_c00056{font-size:68.145630pt;}
.fs8_c00056{font-size:70.933333pt;}
.fs15_c00056{font-size:75.600000pt;}
.fs2_c00056{font-size:78.414150pt;}
.fsa_c00056{font-size:84.000000pt;}
.fsb_c00056{font-size:84.933333pt;}
.fs7_c00056{font-size:86.800000pt;}
.fs0_c00056{font-size:127.924194pt;}
.y0_c00056{bottom:0.000000pt;}
.y71_c00056{bottom:131.841333pt;}
.y70_c00056{bottom:146.880000pt;}
.y99_c00056{bottom:149.381069pt;}
.y98_c00056{bottom:149.381377pt;}
.y9b_c00056{bottom:149.381417pt;}
.y96_c00056{bottom:149.381540pt;}
.y9a_c00056{bottom:149.381641pt;}
.y97_c00056{bottom:149.381868pt;}
.y6f_c00056{bottom:162.981333pt;}
.y8f_c00056{bottom:163.682667pt;}
.y90_c00056{bottom:163.919488pt;}
.y91_c00056{bottom:164.295981pt;}
.y92_c00056{bottom:164.867023pt;}
.y93_c00056{bottom:165.266319pt;}
.y94_c00056{bottom:166.090569pt;}
.y95_c00056{bottom:166.736025pt;}
.y6e_c00056{bottom:178.548000pt;}
.y88_c00056{bottom:179.762667pt;}
.y89_c00056{bottom:180.578281pt;}
.y8a_c00056{bottom:181.170289pt;}
.y8b_c00056{bottom:181.407111pt;}
.y8c_c00056{bottom:182.121088pt;}
.y8d_c00056{bottom:182.370081pt;}
.y8e_c00056{bottom:182.602687pt;}
.y6d_c00056{bottom:194.246667pt;}
.y80_c00056{bottom:195.838667pt;}
.y81_c00056{bottom:196.476000pt;}
.y82_c00056{bottom:196.766667pt;}
.y83_c00056{bottom:197.016000pt;}
.y84_c00056{bottom:197.261333pt;}
.y85_c00056{bottom:197.697333pt;}
.y86_c00056{bottom:198.312000pt;}
.y87_c00056{bottom:198.578667pt;}
.y6c_c00056{bottom:210.284000pt;}
.y79_c00056{bottom:212.160000pt;}
.y7a_c00056{bottom:212.402667pt;}
.y7b_c00056{bottom:213.097333pt;}
.y7c_c00056{bottom:213.577333pt;}
.y7d_c00056{bottom:214.050667pt;}
.y7e_c00056{bottom:214.614667pt;}
.y7f_c00056{bottom:214.856000pt;}
.y6b_c00056{bottom:226.225333pt;}
.y74_c00056{bottom:228.001333pt;}
.y75_c00056{bottom:229.152000pt;}
.y76_c00056{bottom:229.953333pt;}
.y77_c00056{bottom:230.109333pt;}
.y78_c00056{bottom:230.321333pt;}
.y6a_c00056{bottom:241.961333pt;}
.y73_c00056{bottom:244.913333pt;}
.y63_c00056{bottom:276.721115pt;}
.y64_c00056{bottom:277.422208pt;}
.y65_c00056{bottom:277.808933pt;}
.y66_c00056{bottom:278.385653pt;}
.y67_c00056{bottom:278.626208pt;}
.y68_c00056{bottom:279.006837pt;}
.y69_c00056{bottom:279.742565pt;}
.y5c_c00056{bottom:296.641184pt;}
.y5d_c00056{bottom:297.904517pt;}
.y5e_c00056{bottom:298.694459pt;}
.y5f_c00056{bottom:299.109611pt;}
.y60_c00056{bottom:299.349861pt;}
.y61_c00056{bottom:299.827979pt;}
.y62_c00056{bottom:300.557995pt;}
.y55_c00056{bottom:317.521333pt;}
.y56_c00056{bottom:317.875685pt;}
.y57_c00056{bottom:318.768597pt;}
.y58_c00056{bottom:319.224117pt;}
.y59_c00056{bottom:319.388133pt;}
.y5a_c00056{bottom:319.848997pt;}
.y5b_c00056{bottom:320.574677pt;}
.y54_c00056{bottom:339.640000pt;}
.y53_c00056{bottom:370.909333pt;}
.y72_c00056{bottom:372.845333pt;}
.y4f_c00056{bottom:422.884000pt;}
.y50_c00056{bottom:423.229240pt;}
.y51_c00056{bottom:424.625080pt;}
.y52_c00056{bottom:426.020824pt;}
.y4e_c00056{bottom:447.861333pt;}
.y4d_c00056{bottom:466.849333pt;}
.y4c_c00056{bottom:484.920000pt;}
.y43_c00056{bottom:542.468896pt;}
.y44_c00056{bottom:543.276197pt;}
.y45_c00056{bottom:543.661227pt;}
.y46_c00056{bottom:544.614721pt;}
.y47_c00056{bottom:544.787381pt;}
.y48_c00056{bottom:545.163991pt;}
.y49_c00056{bottom:545.991653pt;}
.y4a_c00056{bottom:546.317888pt;}
.y4b_c00056{bottom:547.217604pt;}
.y3b_c00056{bottom:562.535891pt;}
.y3c_c00056{bottom:563.532263pt;}
.y3d_c00056{bottom:564.029803pt;}
.y3e_c00056{bottom:565.062208pt;}
.y3f_c00056{bottom:565.352336pt;}
.y40_c00056{bottom:566.156192pt;}
.y41_c00056{bottom:566.407947pt;}
.y42_c00056{bottom:566.718477pt;}
.y31_c00056{bottom:582.462787pt;}
.y32_c00056{bottom:583.173893pt;}
.y33_c00056{bottom:583.531144pt;}
.y34_c00056{bottom:584.703191pt;}
.y35_c00056{bottom:585.461747pt;}
.y36_c00056{bottom:585.984576pt;}
.y37_c00056{bottom:586.337368pt;}
.y38_c00056{bottom:586.764640pt;}
.y39_c00056{bottom:587.249571pt;}
.y3a_c00056{bottom:587.845791pt;}
.y30_c00056{bottom:606.437189pt;}
.y2e_c00056{bottom:606.437417pt;}
.y2f_c00056{bottom:606.437693pt;}
.y24_c00056{bottom:623.489717pt;}
.y25_c00056{bottom:624.263855pt;}
.y26_c00056{bottom:624.662472pt;}
.y27_c00056{bottom:625.620679pt;}
.y28_c00056{bottom:625.914509pt;}
.y29_c00056{bottom:626.464767pt;}
.y2a_c00056{bottom:627.003928pt;}
.y2b_c00056{bottom:627.350296pt;}
.y2c_c00056{bottom:627.880733pt;}
.y2d_c00056{bottom:628.199333pt;}
.y1c_c00056{bottom:644.570277pt;}
.y1d_c00056{bottom:644.842813pt;}
.y1e_c00056{bottom:645.100283pt;}
.y1f_c00056{bottom:645.883805pt;}
.y20_c00056{bottom:646.125777pt;}
.y21_c00056{bottom:646.946900pt;}
.y22_c00056{bottom:647.483663pt;}
.y23_c00056{bottom:648.084011pt;}
.y12_c00056{bottom:664.311127pt;}
.y13_c00056{bottom:664.637817pt;}
.y14_c00056{bottom:665.368927pt;}
.y15_c00056{bottom:665.976493pt;}
.y16_c00056{bottom:666.975575pt;}
.y17_c00056{bottom:667.550509pt;}
.y18_c00056{bottom:667.755649pt;}
.y19_c00056{bottom:668.350809pt;}
.y1a_c00056{bottom:668.694027pt;}
.y1b_c00056{bottom:669.091327pt;}
.yc_c00056{bottom:683.989843pt;}
.yd_c00056{bottom:685.194865pt;}
.ye_c00056{bottom:686.610988pt;}
.yf_c00056{bottom:687.184161pt;}
.y10_c00056{bottom:688.682973pt;}
.y11_c00056{bottom:688.930677pt;}
.ya_c00056{bottom:706.795992pt;}
.yb_c00056{bottom:708.556919pt;}
.y2_c00056{bottom:725.768000pt;}
.y3_c00056{bottom:726.274667pt;}
.y4_c00056{bottom:726.867543pt;}
.y5_c00056{bottom:727.278120pt;}
.y6_c00056{bottom:728.458299pt;}
.y7_c00056{bottom:728.883873pt;}
.y8_c00056{bottom:729.777811pt;}
.y9_c00056{bottom:730.163739pt;}
.y1_c00056{bottom:804.012000pt;}
.h19_c00056{height:40.133333pt;}
.h15_c00056{height:42.000000pt;}
.h12_c00056{height:43.866667pt;}
.h1a_c00056{height:44.806473pt;}
.h13_c00056{height:45.733333pt;}
.h1b_c00056{height:45.739941pt;}
.h11_c00056{height:46.666667pt;}
.h14_c00056{height:47.600000pt;}
.h18_c00056{height:52.266667pt;}
.h16_c00056{height:56.000000pt;}
.hf_c00056{height:58.804233pt;}
.he_c00056{height:59.737634pt;}
.hb_c00056{height:60.676494pt;}
.h8_c00056{height:61.600000pt;}
.h6_c00056{height:61.611118pt;}
.h3_c00056{height:62.544620pt;}
.h5_c00056{height:65.345125pt;}
.h10_c00056{height:67.204838pt;}
.h7_c00056{height:68.145630pt;}
.ha_c00056{height:70.933333pt;}
.h17_c00056{height:75.600000pt;}
.h4_c00056{height:78.414150pt;}
.hc_c00056{height:84.000000pt;}
.hd_c00056{height:84.933333pt;}
.h9_c00056{height:86.800000pt;}
.h2_c00056{height:127.924194pt;}
.h1_c00056{height:893.333333pt;}
.h0_c00056{height:893.466667pt;}
.w0_c00056{width:651.333333pt;}
.x0_c00056{left:0.000000pt;}
.x6d_c00056{left:55.200000pt;}
.x6e_c00056{left:77.760000pt;}
.x66_c00056{left:81.840000pt;}
.x53_c00056{left:86.640000pt;}
.x56_c00056{left:89.520000pt;}
.x63_c00056{left:90.480000pt;}
.x67_c00056{left:92.400000pt;}
.x1a_c00056{left:100.331985pt;}
.x5b_c00056{left:105.600000pt;}
.x29_c00056{left:108.418520pt;}
.x2_c00056{left:117.553333pt;}
.x6f_c00056{left:121.680000pt;}
.x1_c00056{left:124.936000pt;}
.x57_c00056{left:127.200000pt;}
.x68_c00056{left:128.400000pt;}
.x1b_c00056{left:133.421860pt;}
.x11_c00056{left:136.290483pt;}
.x60_c00056{left:138.240000pt;}
.x54_c00056{left:143.040000pt;}
.x3_c00056{left:144.220000pt;}
.x2a_c00056{left:145.845187pt;}
.x5e_c00056{left:148.080000pt;}
.x69_c00056{left:150.960000pt;}
.x70_c00056{left:152.640000pt;}
.x37_c00056{left:156.622859pt;}
.x46_c00056{left:159.506667pt;}
.x1f_c00056{left:163.349743pt;}
.x2b_c00056{left:164.647853pt;}
.x3d_c00056{left:166.560000pt;}
.x64_c00056{left:167.760000pt;}
.x58_c00056{left:169.200000pt;}
.xc_c00056{left:172.038273pt;}
.xa_c00056{left:173.301789pt;}
.x6a_c00056{left:174.240000pt;}
.x4_c00056{left:175.424000pt;}
.x12_c00056{left:179.262771pt;}
.x5c_c00056{left:180.240000pt;}
.x1c_c00056{left:182.381980pt;}
.x20_c00056{left:186.786629pt;}
.x47_c00056{left:189.036000pt;}
.x59_c00056{left:190.080000pt;}
.x5_c00056{left:197.033333pt;}
.x33_c00056{left:200.399147pt;}
.x51_c00056{left:201.289163pt;}
.x45_c00056{left:204.240000pt;}
.x5f_c00056{left:210.480000pt;}
.x4d_c00056{left:214.015216pt;}
.x13_c00056{left:215.030805pt;}
.x5a_c00056{left:216.480000pt;}
.x6b_c00056{left:218.400000pt;}
.x71_c00056{left:222.240000pt;}
.x55_c00056{left:223.680000pt;}
.x2c_c00056{left:226.334520pt;}
.x61_c00056{left:232.320000pt;}
.x38_c00056{left:235.355181pt;}
.xd_c00056{left:236.391933pt;}
.x21_c00056{left:243.115424pt;}
.x39_c00056{left:245.495561pt;}
.x1d_c00056{left:248.864447pt;}
.xb_c00056{left:249.835963pt;}
.x62_c00056{left:250.800000pt;}
.x28_c00056{left:252.504496pt;}
.x3e_c00056{left:253.680000pt;}
.x72_c00056{left:256.080000pt;}
.x34_c00056{left:257.754903pt;}
.x6_c00056{left:259.148000pt;}
.x22_c00056{left:260.405416pt;}
.xe_c00056{left:262.417105pt;}
.x48_c00056{left:263.445333pt;}
.x65_c00056{left:265.200000pt;}
.x2d_c00056{left:266.258520pt;}
.x3a_c00056{left:267.633731pt;}
.x5d_c00056{left:269.040000pt;}
.x14_c00056{left:273.791701pt;}
.x4e_c00056{left:274.731813pt;}
.x6c_c00056{left:278.400000pt;}
.x7_c00056{left:281.546667pt;}
.x1e_c00056{left:282.450372pt;}
.x3f_c00056{left:291.120000pt;}
.x23_c00056{left:292.735965pt;}
.x2e_c00056{left:293.775853pt;}
.x49_c00056{left:301.405333pt;}
.x4f_c00056{left:306.660763pt;}
.x15_c00056{left:307.631660pt;}
.x73_c00056{left:309.840000pt;}
.x7e_c00056{left:310.909333pt;}
.x2f_c00056{left:312.343853pt;}
.x40_c00056{left:313.680000pt;}
.x4a_c00056{left:315.073333pt;}
.x3b_c00056{left:316.319580pt;}
.x35_c00056{left:318.492043pt;}
.x16_c00056{left:319.692116pt;}
.x24_c00056{left:324.482515pt;}
.x8_c00056{left:328.596000pt;}
.xf_c00056{left:330.561229pt;}
.x36_c00056{left:332.444296pt;}
.x30_c00056{left:334.831853pt;}
.x10_c00056{left:341.843263pt;}
.x25_c00056{left:344.888633pt;}
.x8c_c00056{left:347.256000pt;}
.x9_c00056{left:348.908000pt;}
.x52_c00056{left:350.090053pt;}
.x4b_c00056{left:353.478667pt;}
.x17_c00056{left:354.666767pt;}
.x87_c00056{left:358.448000pt;}
.x31_c00056{left:360.354520pt;}
.x41_c00056{left:362.400000pt;}
.x74_c00056{left:364.800000pt;}
.x90_c00056{left:366.969837pt;}
.x82_c00056{left:372.080000pt;}
.x42_c00056{left:373.680000pt;}
.x18_c00056{left:374.836860pt;}
.x26_c00056{left:376.105824pt;}
.x75_c00056{left:377.280000pt;}
.x8d_c00056{left:380.846667pt;}
.x3c_c00056{left:388.424983pt;}
.x91_c00056{left:390.252569pt;}
.x32_c00056{left:391.734520pt;}
.x88_c00056{left:393.272000pt;}
.x27_c00056{left:394.839867pt;}
.x76_c00056{left:396.720000pt;}
.x19_c00056{left:398.204413pt;}
.x83_c00056{left:405.045333pt;}
.x89_c00056{left:407.202667pt;}
.x7f_c00056{left:412.194667pt;}
.x4c_c00056{left:413.952000pt;}
.x92_c00056{left:416.176049pt;}
.x50_c00056{left:418.024752pt;}
.x77_c00056{left:422.880000pt;}
.x84_c00056{left:434.078667pt;}
.x78_c00056{left:446.400000pt;}
.x43_c00056{left:449.760000pt;}
.x8e_c00056{left:452.820000pt;}
.x93_c00056{left:455.782163pt;}
.x7b_c00056{left:460.192000pt;}
.x8a_c00056{left:463.848000pt;}
.x79_c00056{left:465.120000pt;}
.x7c_c00056{left:472.189333pt;}
.x85_c00056{left:475.077333pt;}
.x8b_c00056{left:477.530667pt;}
.x44_c00056{left:483.360000pt;}
.x80_c00056{left:486.360000pt;}
.x7d_c00056{left:488.537333pt;}
.x8f_c00056{left:490.788000pt;}
.x86_c00056{left:492.886667pt;}
.x7a_c00056{left:499.920000pt;}
.x81_c00056{left:503.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m2a_c00057{transform:matrix(0.007341,0.000228,-0.007746,0.249880,0,0);-ms-transform:matrix(0.007341,0.000228,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.007341,0.000228,-0.007746,0.249880,0,0);}
.mc6_c00057{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);}
.ma1_c00057{transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.148054,0.004590,-0.007746,0.249880,0,0);-ms-transform:matrix(0.148054,0.004590,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.148054,0.004590,-0.007746,0.249880,0,0);}
.m39_c00057{transform:matrix(0.149858,0.004646,-0.007746,0.249880,0,0);-ms-transform:matrix(0.149858,0.004646,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.149858,0.004646,-0.007746,0.249880,0,0);}
.mc0_c00057{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);}
.m43_c00057{transform:matrix(0.152672,0.004733,-0.007746,0.249880,0,0);-ms-transform:matrix(0.152672,0.004733,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.152672,0.004733,-0.007746,0.249880,0,0);}
.ma_c00057{transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);}
.m5_c00057{transform:matrix(0.156434,0.001877,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156434,0.001877,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156434,0.001877,-0.003000,0.249982,0,0);}
.m0_c00057{transform:matrix(0.156734,0.001881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156734,0.001881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156734,0.001881,-0.003000,0.249982,0,0);}
.m7f_c00057{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);}
.mb2_c00057{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);}
.m8b_c00057{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);}
.m26_c00057{transform:matrix(0.158044,0.004899,-0.007746,0.249880,0,0);-ms-transform:matrix(0.158044,0.004899,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.158044,0.004899,-0.007746,0.249880,0,0);}
.mac_c00057{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);}
.m50_c00057{transform:matrix(0.159493,0.004944,-0.007746,0.249880,0,0);-ms-transform:matrix(0.159493,0.004944,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.159493,0.004944,-0.007746,0.249880,0,0);}
.mca_c00057{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);}
.m40_c00057{transform:matrix(0.159633,0.004949,-0.007746,0.249880,0,0);-ms-transform:matrix(0.159633,0.004949,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.159633,0.004949,-0.007746,0.249880,0,0);}
.m67_c00057{transform:matrix(0.161967,0.005021,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161967,0.005021,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161967,0.005021,-0.007746,0.249880,0,0);}
.m6d_c00057{transform:matrix(0.163322,0.005063,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163322,0.005063,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163322,0.005063,-0.007746,0.249880,0,0);}
.mcc_c00057{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);}
.m2c_c00057{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);}
.m3f_c00057{transform:matrix(0.166740,0.005169,-0.007746,0.249880,0,0);-ms-transform:matrix(0.166740,0.005169,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.166740,0.005169,-0.007746,0.249880,0,0);}
.m7e_c00057{transform:matrix(0.168089,0.005211,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168089,0.005211,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168089,0.005211,-0.007746,0.249880,0,0);}
.m70_c00057{transform:matrix(0.168364,0.005219,-0.007746,0.249880,0,0);-ms-transform:matrix(0.168364,0.005219,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.168364,0.005219,-0.007746,0.249880,0,0);}
.mc8_c00057{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);}
.m5d_c00057{transform:matrix(0.170233,0.005277,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170233,0.005277,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170233,0.005277,-0.007746,0.249880,0,0);}
.m61_c00057{transform:matrix(0.170573,0.005288,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170573,0.005288,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170573,0.005288,-0.007746,0.249880,0,0);}
.mb_c00057{transform:matrix(0.170908,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170908,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170908,0.002051,-0.003000,0.249982,0,0);}
.mc1_c00057{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);}
.mb1_c00057{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);}
.mb7_c00057{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);}
.m76_c00057{transform:matrix(0.174861,0.005421,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174861,0.005421,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174861,0.005421,-0.007746,0.249880,0,0);}
.m84_c00057{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.175646,0.005445,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175646,0.005445,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175646,0.005445,-0.007746,0.249880,0,0);}
.m49_c00057{transform:matrix(0.176615,0.005475,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176615,0.005475,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176615,0.005475,-0.007746,0.249880,0,0);}
.m74_c00057{transform:matrix(0.177635,0.005507,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177635,0.005507,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177635,0.005507,-0.007746,0.249880,0,0);}
.m48_c00057{transform:matrix(0.177650,0.005507,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177650,0.005507,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177650,0.005507,-0.007746,0.249880,0,0);}
.mc4_c00057{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);}
.mcb_c00057{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);}
.m80_c00057{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);}
.m42_c00057{transform:matrix(0.179559,0.005566,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179559,0.005566,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179559,0.005566,-0.007746,0.249880,0,0);}
.md_c00057{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);}
.m5b_c00057{transform:matrix(0.180518,0.005596,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180518,0.005596,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180518,0.005596,-0.007746,0.249880,0,0);}
.m83_c00057{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);}
.m4d_c00057{transform:matrix(0.181188,0.005617,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181188,0.005617,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181188,0.005617,-0.007746,0.249880,0,0);}
.mbd_c00057{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.mba_c00057{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);}
.mf_c00057{transform:matrix(0.181697,0.002180,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181697,0.002180,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181697,0.002180,-0.003000,0.249982,0,0);}
.m3_c00057{transform:matrix(0.183022,0.002196,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183022,0.002196,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183022,0.002196,-0.003000,0.249982,0,0);}
.m4c_c00057{transform:matrix(0.183802,0.005698,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183802,0.005698,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183802,0.005698,-0.007746,0.249880,0,0);}
.maf_c00057{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);}
.m6c_c00057{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);}
.m90_c00057{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);}
.m31_c00057{transform:matrix(0.185416,0.005748,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185416,0.005748,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185416,0.005748,-0.007746,0.249880,0,0);}
.m44_c00057{transform:matrix(0.185451,0.005749,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185451,0.005749,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185451,0.005749,-0.007746,0.249880,0,0);}
.m8e_c00057{transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185915,0.000000,0.000000,0.250000,0,0);}
.m72_c00057{transform:matrix(0.187965,0.005827,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187965,0.005827,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187965,0.005827,-0.007746,0.249880,0,0);}
.m88_c00057{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);}
.m9f_c00057{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);}
.m20_c00057{transform:matrix(0.190119,0.005894,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190119,0.005894,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190119,0.005894,-0.007746,0.249880,0,0);}
.m4b_c00057{transform:matrix(0.190608,0.005909,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190608,0.005909,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190608,0.005909,-0.007746,0.249880,0,0);}
.mab_c00057{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);}
.m3d_c00057{transform:matrix(0.190828,0.005916,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190828,0.005916,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190828,0.005916,-0.007746,0.249880,0,0);}
.ma5_c00057{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);}
.ma0_c00057{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);}
.m7c_c00057{transform:matrix(0.191263,0.005929,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191263,0.005929,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191263,0.005929,-0.007746,0.249880,0,0);}
.m56_c00057{transform:matrix(0.191368,0.005932,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191368,0.005932,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191368,0.005932,-0.007746,0.249880,0,0);}
.m12_c00057{transform:matrix(0.191751,0.002301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191751,0.002301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191751,0.002301,-0.003000,0.249982,0,0);}
.m63_c00057{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);}
.m41_c00057{transform:matrix(0.191858,0.005948,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191858,0.005948,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191858,0.005948,-0.007746,0.249880,0,0);}
.m3e_c00057{transform:matrix(0.191928,0.005950,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191928,0.005950,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191928,0.005950,-0.007746,0.249880,0,0);}
.m9e_c00057{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);}
.m9a_c00057{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.194177,0.006019,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194177,0.006019,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194177,0.006019,-0.007746,0.249880,0,0);}
.m5c_c00057{transform:matrix(0.194412,0.006027,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194412,0.006027,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194412,0.006027,-0.007746,0.249880,0,0);}
.mb0_c00057{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);}
.m62_c00057{transform:matrix(0.194846,0.006040,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194846,0.006040,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194846,0.006040,-0.007746,0.249880,0,0);}
.m85_c00057{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);}
.m8a_c00057{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);}
.mc_c00057{transform:matrix(0.195236,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195236,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195236,0.002343,-0.003000,0.249982,0,0);}
.m58_c00057{transform:matrix(0.195321,0.006055,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195321,0.006055,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195321,0.006055,-0.007746,0.249880,0,0);}
.m8f_c00057{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);}
.m9_c00057{transform:matrix(0.195671,0.002348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195671,0.002348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195671,0.002348,-0.003000,0.249982,0,0);}
.m33_c00057{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);}
.m21_c00057{transform:matrix(0.195891,0.006073,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195891,0.006073,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195891,0.006073,-0.007746,0.249880,0,0);}
.m29_c00057{transform:matrix(0.196381,0.006088,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196381,0.006088,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196381,0.006088,-0.007746,0.249880,0,0);}
.m4_c00057{transform:matrix(0.196656,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196656,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196656,0.002360,-0.003000,0.249982,0,0);}
.m78_c00057{transform:matrix(0.196980,0.006106,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196980,0.006106,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196980,0.006106,-0.007746,0.249880,0,0);}
.m6b_c00057{transform:matrix(0.197010,0.006107,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197010,0.006107,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197010,0.006107,-0.007746,0.249880,0,0);}
.m6e_c00057{transform:matrix(0.197070,0.006109,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197070,0.006109,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197070,0.006109,-0.007746,0.249880,0,0);}
.m7d_c00057{transform:matrix(0.197290,0.006116,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197290,0.006116,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197290,0.006116,-0.007746,0.249880,0,0);}
.m68_c00057{transform:matrix(0.197385,0.006119,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197385,0.006119,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197385,0.006119,-0.007746,0.249880,0,0);}
.ma9_c00057{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);}
.m5a_c00057{transform:matrix(0.197525,0.006123,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197525,0.006123,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197525,0.006123,-0.007746,0.249880,0,0);}
.m79_c00057{transform:matrix(0.197545,0.006124,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197545,0.006124,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197545,0.006124,-0.007746,0.249880,0,0);}
.m3c_c00057{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);}
.mb6_c00057{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);}
.m1_c00057{transform:matrix(0.200511,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200511,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200511,0.002406,-0.003000,0.249982,0,0);}
.mae_c00057{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);}
.m7b_c00057{transform:matrix(0.200724,0.006222,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200724,0.006222,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200724,0.006222,-0.007746,0.249880,0,0);}
.m97_c00057{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);}
.mc5_c00057{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);}
.m6f_c00057{transform:matrix(0.201583,0.006249,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201583,0.006249,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201583,0.006249,-0.007746,0.249880,0,0);}
.m17_c00057{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);}
.m6_c00057{transform:matrix(0.202015,0.002424,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202015,0.002424,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202015,0.002424,-0.003000,0.249982,0,0);}
.m37_c00057{transform:matrix(0.202098,0.006265,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202098,0.006265,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202098,0.006265,-0.007746,0.249880,0,0);}
.m30_c00057{transform:matrix(0.202483,0.006277,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202483,0.006277,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202483,0.006277,-0.007746,0.249880,0,0);}
.mb8_c00057{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);}
.mc9_c00057{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);}
.m53_c00057{transform:matrix(0.203317,0.006303,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203317,0.006303,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203317,0.006303,-0.007746,0.249880,0,0);}
.m45_c00057{transform:matrix(0.204137,0.006328,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204137,0.006328,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204137,0.006328,-0.007746,0.249880,0,0);}
.m86_c00057{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);}
.m64_c00057{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);}
.m54_c00057{transform:matrix(0.206231,0.006393,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206231,0.006393,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206231,0.006393,-0.007746,0.249880,0,0);}
.m87_c00057{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);}
.m3a_c00057{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);}
.m5f_c00057{transform:matrix(0.207450,0.006431,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207450,0.006431,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207450,0.006431,-0.007746,0.249880,0,0);}
.m75_c00057{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);}
.mbc_c00057{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);}
.mb3_c00057{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);}
.ma6_c00057{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);}
.ma3_c00057{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);}
.m4e_c00057{transform:matrix(0.211009,0.006541,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211009,0.006541,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211009,0.006541,-0.007746,0.249880,0,0);}
.mb5_c00057{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);}
.m4a_c00057{transform:matrix(0.212143,0.006576,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212143,0.006576,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212143,0.006576,-0.007746,0.249880,0,0);}
.m71_c00057{transform:matrix(0.212638,0.006592,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212638,0.006592,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212638,0.006592,-0.007746,0.249880,0,0);}
.maa_c00057{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);}
.m6a_c00057{transform:matrix(0.213887,0.006631,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213887,0.006631,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213887,0.006631,-0.007746,0.249880,0,0);}
.mbf_c00057{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);}
.m57_c00057{transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);}
.m14_c00057{transform:matrix(0.215275,0.002583,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215275,0.002583,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215275,0.002583,-0.003000,0.249982,0,0);}
.mc2_c00057{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);}
.m13_c00057{transform:matrix(0.215534,0.002586,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215534,0.002586,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215534,0.002586,-0.003000,0.249982,0,0);}
.m65_c00057{transform:matrix(0.216761,0.006720,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216761,0.006720,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216761,0.006720,-0.007746,0.249880,0,0);}
.m7_c00057{transform:matrix(0.216864,0.002602,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216864,0.002602,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216864,0.002602,-0.003000,0.249982,0,0);}
.mc3_c00057{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);}
.m2e_c00057{transform:matrix(0.218630,0.006778,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218630,0.006778,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218630,0.006778,-0.007746,0.249880,0,0);}
.m66_c00057{transform:matrix(0.219035,0.006790,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219035,0.006790,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219035,0.006790,-0.007746,0.249880,0,0);}
.mb9_c00057{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);}
.m52_c00057{transform:matrix(0.219420,0.006802,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219420,0.006802,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219420,0.006802,-0.007746,0.249880,0,0);}
.m15_c00057{transform:matrix(0.219889,0.002639,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219889,0.002639,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219889,0.002639,-0.003000,0.249982,0,0);}
.m60_c00057{transform:matrix(0.220279,0.006829,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220279,0.006829,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220279,0.006829,-0.007746,0.249880,0,0);}
.m73_c00057{transform:matrix(0.220709,0.006842,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220709,0.006842,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220709,0.006842,-0.007746,0.249880,0,0);}
.m2f_c00057{transform:matrix(0.222303,0.006891,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222303,0.006891,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222303,0.006891,-0.007746,0.249880,0,0);}
.m46_c00057{transform:matrix(0.223153,0.006918,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223153,0.006918,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223153,0.006918,-0.007746,0.249880,0,0);}
.me_c00057{transform:matrix(0.224239,0.002691,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224239,0.002691,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224239,0.002691,-0.003000,0.249982,0,0);}
.m4f_c00057{transform:matrix(0.228110,0.007071,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228110,0.007071,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228110,0.007071,-0.007746,0.249880,0,0);}
.m23_c00057{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);}
.m34_c00057{transform:matrix(0.229705,0.007121,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229705,0.007121,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229705,0.007121,-0.007746,0.249880,0,0);}
.mbe_c00057{transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);}
.m69_c00057{transform:matrix(0.230859,0.007157,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230859,0.007157,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230859,0.007157,-0.007746,0.249880,0,0);}
.m10_c00057{transform:matrix(0.234328,0.002812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234328,0.002812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234328,0.002812,-0.003000,0.249982,0,0);}
.m2_c00057{transform:matrix(0.234748,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234748,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234748,0.002817,-0.003000,0.249982,0,0);}
.m3b_c00057{transform:matrix(0.236351,0.007327,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236351,0.007327,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236351,0.007327,-0.007746,0.249880,0,0);}
.m38_c00057{transform:matrix(0.239140,0.007413,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239140,0.007413,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239140,0.007413,-0.007746,0.249880,0,0);}
.m28_c00057{transform:matrix(0.240135,0.007444,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240135,0.007444,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240135,0.007444,-0.007746,0.249880,0,0);}
.m1a_c00057{transform:matrix(0.241820,0.004111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241820,0.004111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241820,0.004111,-0.004249,0.249964,0,0);}
.m11_c00057{transform:matrix(0.243167,0.002918,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243167,0.002918,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243167,0.002918,-0.003000,0.249982,0,0);}
.m25_c00057{transform:matrix(0.244438,0.007578,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244438,0.007578,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244438,0.007578,-0.007746,0.249880,0,0);}
.m7a_c00057{transform:matrix(0.245097,0.007598,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245097,0.007598,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245097,0.007598,-0.007746,0.249880,0,0);}
.m9d_c00057{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);}
.m1e_c00057{transform:matrix(0.249160,0.007724,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249160,0.007724,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249160,0.007724,-0.007746,0.249880,0,0);}
.ma4_c00057{transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);}
.m77_c00057{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);}
.ma7_c00057{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.m89_c00057{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);}
.m96_c00057{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m1b_c00057{transform:matrix(0.258606,0.008017,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258606,0.008017,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258606,0.008017,-0.007746,0.249880,0,0);}
.m22_c00057{transform:matrix(0.259086,0.008032,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259086,0.008032,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259086,0.008032,-0.007746,0.249880,0,0);}
.m81_c00057{transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);}
.m51_c00057{transform:matrix(0.262689,0.008143,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262689,0.008143,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262689,0.008143,-0.007746,0.249880,0,0);}
.m27_c00057{transform:matrix(0.269605,0.008358,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269605,0.008358,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269605,0.008358,-0.007746,0.249880,0,0);}
.m99_c00057{transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);}
.m93_c00057{transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);}
.m2d_c00057{transform:matrix(0.286962,0.008896,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286962,0.008896,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286962,0.008896,-0.007746,0.249880,0,0);}
.m91_c00057{transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291215,0.000000,0.000000,0.250000,0,0);}
.m59_c00057{transform:matrix(0.291430,0.009034,-0.007746,0.249880,0,0);-ms-transform:matrix(0.291430,0.009034,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.291430,0.009034,-0.007746,0.249880,0,0);}
.m8d_c00057{transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);}
.m95_c00057{transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293335,0.000000,0.000000,0.250000,0,0);}
.ma2_c00057{transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.309450,0.005261,-0.004249,0.249964,0,0);-ms-transform:matrix(0.309450,0.005261,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.309450,0.005261,-0.004249,0.249964,0,0);}
.m94_c00057{transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);}
.m35_c00057{transform:matrix(0.317612,0.009846,-0.007746,0.249880,0,0);-ms-transform:matrix(0.317612,0.009846,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.317612,0.009846,-0.007746,0.249880,0,0);}
.m2b_c00057{transform:matrix(0.325254,0.010083,-0.007746,0.249880,0,0);-ms-transform:matrix(0.325254,0.010083,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.325254,0.010083,-0.007746,0.249880,0,0);}
.m8_c00057{transform:matrix(0.339411,0.004073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.339411,0.004073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.339411,0.004073,-0.003000,0.249982,0,0);}
.m24_c00057{transform:matrix(0.339572,0.010527,-0.007746,0.249880,0,0);-ms-transform:matrix(0.339572,0.010527,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.339572,0.010527,-0.007746,0.249880,0,0);}
.m55_c00057{transform:matrix(0.360287,0.011169,-0.007746,0.249880,0,0);-ms-transform:matrix(0.360287,0.011169,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.360287,0.011169,-0.007746,0.249880,0,0);}
.ma8_c00057{transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);}
.m8c_c00057{transform:matrix(0.372190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372190,0.000000,0.000000,0.250000,0,0);}
.m82_c00057{transform:matrix(0.373055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373055,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.391722,0.012143,-0.007746,0.249880,0,0);-ms-transform:matrix(0.391722,0.012143,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.391722,0.012143,-0.007746,0.249880,0,0);}
.mad_c00057{transform:matrix(0.400230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400230,0.000000,0.000000,0.250000,0,0);}
.m5e_c00057{transform:matrix(0.411547,0.012758,-0.007746,0.249880,0,0);-ms-transform:matrix(0.411547,0.012758,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.411547,0.012758,-0.007746,0.249880,0,0);}
.mbb_c00057{transform:matrix(0.421055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421055,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.462523,0.014338,-0.007746,0.249880,0,0);-ms-transform:matrix(0.462523,0.014338,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.462523,0.014338,-0.007746,0.249880,0,0);}
.m9b_c00057{transform:matrix(0.504880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504880,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.518380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518380,0.000000,0.000000,0.250000,0,0);}
.mc7_c00057{transform:matrix(0.596780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596780,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(0.657829,0.020393,-0.007746,0.249880,0,0);-ms-transform:matrix(0.657829,0.020393,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.657829,0.020393,-0.007746,0.249880,0,0);}
.m9c_c00057{transform:matrix(0.681115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681115,0.000000,0.000000,0.250000,0,0);}
.m98_c00057{transform:matrix(0.749985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749985,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{transform:matrix(0.812138,0.013806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.812138,0.013806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.812138,0.013806,-0.004249,0.249964,0,0);}
.m92_c00057{transform:matrix(0.833685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.833685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.833685,0.000000,0.000000,0.250000,0,0);}
.mb4_c00057{transform:matrix(1.028000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.028000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.028000,0.000000,0.000000,0.250000,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:33.600000px;}
.fs10_c00057{font-size:50.400000px;}
.fs11_c00057{font-size:53.550000px;}
.fs12_c00057{font-size:54.600000px;}
.fs13_c00057{font-size:56.700000px;}
.fs15_c00057{font-size:60.900000px;}
.fsd_c00057{font-size:63.000000px;}
.fs2_c00057{font-size:64.054611px;}
.fs7_c00057{font-size:66.181777px;}
.fse_c00057{font-size:68.250000px;}
.fs9_c00057{font-size:68.282786px;}
.fs8_c00057{font-size:69.333291px;}
.fsf_c00057{font-size:70.350000px;}
.fsa_c00057{font-size:70.383795px;}
.fs1_c00057{font-size:71.405141px;}
.fsc_c00057{font-size:71.434299px;}
.fs0_c00057{font-size:72.455216px;}
.fs6_c00057{font-size:72.484804px;}
.fsb_c00057{font-size:73.535308px;}
.fs3_c00057{font-size:95.550000px;}
.fs4_c00057{font-size:121.817599px;}
.fs5_c00057{font-size:152.271999px;}
.y0_c00057{bottom:0.000000px;}
.ybc_c00057{bottom:132.843000px;}
.ybb_c00057{bottom:157.390500px;}
.ybd_c00057{bottom:162.208500px;}
.yba_c00057{bottom:174.141000px;}
.yb9_c00057{bottom:174.384000px;}
.yb8_c00057{bottom:174.856500px;}
.yb7_c00057{bottom:175.549500px;}
.yb6_c00057{bottom:175.957500px;}
.yb5_c00057{bottom:176.595000px;}
.yb4_c00057{bottom:177.160500px;}
.yb3_c00057{bottom:177.348000px;}
.yb2_c00057{bottom:177.936000px;}
.yb1_c00057{bottom:178.474500px;}
.yb0_c00057{bottom:178.996500px;}
.yaf_c00057{bottom:180.043500px;}
.yae_c00057{bottom:180.520500px;}
.yad_c00057{bottom:181.347000px;}
.yac_c00057{bottom:182.263500px;}
.yab_c00057{bottom:191.649000px;}
.yaa_c00057{bottom:191.788500px;}
.ya9_c00057{bottom:192.072000px;}
.ya8_c00057{bottom:192.538500px;}
.ya7_c00057{bottom:193.018500px;}
.ya6_c00057{bottom:194.047500px;}
.ya5_c00057{bottom:194.236500px;}
.ya4_c00057{bottom:194.484000px;}
.ya3_c00057{bottom:194.760000px;}
.ya2_c00057{bottom:195.622500px;}
.ya1_c00057{bottom:195.825000px;}
.ya0_c00057{bottom:195.988500px;}
.y9f_c00057{bottom:196.347000px;}
.y9e_c00057{bottom:196.876500px;}
.y9d_c00057{bottom:197.496000px;}
.y9c_c00057{bottom:198.183000px;}
.y9b_c00057{bottom:208.330500px;}
.y9a_c00057{bottom:208.435500px;}
.y99_c00057{bottom:208.500000px;}
.y98_c00057{bottom:208.776000px;}
.y97_c00057{bottom:208.917000px;}
.y96_c00057{bottom:209.143500px;}
.y95_c00057{bottom:209.410500px;}
.y94_c00057{bottom:209.535000px;}
.y93_c00057{bottom:209.671500px;}
.y92_c00057{bottom:209.884500px;}
.y91_c00057{bottom:210.021000px;}
.y90_c00057{bottom:210.336000px;}
.y8f_c00057{bottom:210.448500px;}
.y8e_c00057{bottom:210.643500px;}
.y8d_c00057{bottom:210.792000px;}
.y8c_c00057{bottom:210.885000px;}
.y8b_c00057{bottom:211.012500px;}
.y8a_c00057{bottom:211.411500px;}
.y89_c00057{bottom:251.352000px;}
.y88_c00057{bottom:275.422500px;}
.y87_c00057{bottom:275.683500px;}
.y86_c00057{bottom:275.908500px;}
.y85_c00057{bottom:276.358500px;}
.y84_c00057{bottom:276.900000px;}
.y83_c00057{bottom:277.386000px;}
.y82_c00057{bottom:278.101500px;}
.y81_c00057{bottom:294.570000px;}
.y80_c00057{bottom:296.560288px;}
.y7f_c00057{bottom:297.550245px;}
.y7e_c00057{bottom:297.940690px;}
.y7d_c00057{bottom:299.180161px;}
.y7c_c00057{bottom:300.356949px;}
.y7b_c00057{bottom:300.942501px;}
.y7a_c00057{bottom:301.722415px;}
.y79_c00057{bottom:320.937286px;}
.y78_c00057{bottom:321.395224px;}
.y77_c00057{bottom:321.711805px;}
.y76_c00057{bottom:322.628971px;}
.y75_c00057{bottom:322.940566px;}
.y74_c00057{bottom:323.498452px;}
.y73_c00057{bottom:324.143724px;}
.y72_c00057{bottom:341.379274px;}
.y71_c00057{bottom:341.732764px;}
.y70_c00057{bottom:342.269101px;}
.y6f_c00057{bottom:342.578391px;}
.y6e_c00057{bottom:343.332861px;}
.y6d_c00057{bottom:343.633863px;}
.y6c_c00057{bottom:344.754015px;}
.y6b_c00057{bottom:345.520456px;}
.y6a_c00057{bottom:346.060663px;}
.y69_c00057{bottom:347.105664px;}
.y68_c00057{bottom:364.088302px;}
.y67_c00057{bottom:364.538500px;}
.y66_c00057{bottom:365.272110px;}
.y65_c00057{bottom:365.580474px;}
.y64_c00057{bottom:366.102321px;}
.y63_c00057{bottom:367.258456px;}
.y62_c00057{bottom:367.880611px;}
.y61_c00057{bottom:368.509414px;}
.y60_c00057{bottom:368.893251px;}
.y5f_c00057{bottom:369.254634px;}
.y5e_c00057{bottom:389.227846px;}
.y5d_c00057{bottom:411.700548px;}
.y5c_c00057{bottom:412.709178px;}
.y5b_c00057{bottom:413.222389px;}
.y5a_c00057{bottom:414.216318px;}
.y59_c00057{bottom:414.508179px;}
.y58_c00057{bottom:415.322514px;}
.y57_c00057{bottom:415.723458px;}
.y56_c00057{bottom:434.038867px;}
.y55_c00057{bottom:434.246248px;}
.y54_c00057{bottom:434.913834px;}
.y53_c00057{bottom:435.545461px;}
.y52_c00057{bottom:436.417104px;}
.y51_c00057{bottom:436.947295px;}
.y50_c00057{bottom:437.410626px;}
.y4f_c00057{bottom:438.135752px;}
.y4e_c00057{bottom:455.841486px;}
.y4d_c00057{bottom:456.806577px;}
.y4c_c00057{bottom:457.649448px;}
.y4b_c00057{bottom:458.112282px;}
.y4a_c00057{bottom:458.869729px;}
.y49_c00057{bottom:459.538743px;}
.y48_c00057{bottom:460.009608px;}
.y47_c00057{bottom:460.547267px;}
.y46_c00057{bottom:461.100987px;}
.y45_c00057{bottom:480.043617px;}
.y44_c00057{bottom:481.061403px;}
.y43_c00057{bottom:481.399995px;}
.y42_c00057{bottom:482.246876px;}
.y41_c00057{bottom:482.915040px;}
.y40_c00057{bottom:483.299493px;}
.y3f_c00057{bottom:483.602392px;}
.y3e_c00057{bottom:484.059869px;}
.y3d_c00057{bottom:502.712443px;}
.y3c_c00057{bottom:503.435652px;}
.y3b_c00057{bottom:503.671360px;}
.y3a_c00057{bottom:504.137885px;}
.y39_c00057{bottom:504.889657px;}
.y38_c00057{bottom:505.245213px;}
.y37_c00057{bottom:505.940136px;}
.y36_c00057{bottom:523.811928px;}
.y35_c00057{bottom:523.935952px;}
.y34_c00057{bottom:524.373780px;}
.y33_c00057{bottom:524.689210px;}
.y32_c00057{bottom:524.987394px;}
.y31_c00057{bottom:525.857762px;}
.y30_c00057{bottom:526.344724px;}
.y2f_c00057{bottom:527.468869px;}
.y2e_c00057{bottom:528.281559px;}
.y2d_c00057{bottom:528.900414px;}
.y2c_c00057{bottom:547.469899px;}
.y2b_c00057{bottom:547.882881px;}
.y2a_c00057{bottom:548.015499px;}
.y29_c00057{bottom:548.774415px;}
.y28_c00057{bottom:549.316809px;}
.y27_c00057{bottom:549.661698px;}
.y26_c00057{bottom:549.967818px;}
.y25_c00057{bottom:550.237737px;}
.y24_c00057{bottom:568.985999px;}
.y23_c00057{bottom:569.933970px;}
.y22_c00057{bottom:572.220409px;}
.y21_c00057{bottom:573.119869px;}
.y20_c00057{bottom:573.655808px;}
.y1f_c00057{bottom:574.402713px;}
.y1e_c00057{bottom:574.770337px;}
.y1d_c00057{bottom:575.367013px;}
.y1c_c00057{bottom:595.090624px;}
.y1b_c00057{bottom:599.401500px;}
.y1a_c00057{bottom:632.115937px;}
.y19_c00057{bottom:666.419289px;}
.y18_c00057{bottom:669.105000px;}
.y17_c00057{bottom:710.233500px;}
.y16_c00057{bottom:777.672024px;}
.y15_c00057{bottom:778.615908px;}
.y14_c00057{bottom:779.544030px;}
.y13_c00057{bottom:780.135426px;}
.y12_c00057{bottom:780.569160px;}
.y11_c00057{bottom:800.100246px;}
.y10_c00057{bottom:800.945868px;}
.yf_c00057{bottom:801.301728px;}
.ye_c00057{bottom:801.558408px;}
.yd_c00057{bottom:802.209648px;}
.yc_c00057{bottom:802.715160px;}
.yb_c00057{bottom:802.935354px;}
.ya_c00057{bottom:803.249688px;}
.y9_c00057{bottom:821.636664px;}
.y8_c00057{bottom:822.170688px;}
.y7_c00057{bottom:822.909516px;}
.y6_c00057{bottom:823.162254px;}
.y5_c00057{bottom:823.334046px;}
.y4_c00057{bottom:824.231580px;}
.y3_c00057{bottom:824.522892px;}
.y2_c00057{bottom:825.262530px;}
.y1_c00057{bottom:825.391500px;}
.h16_c00057{height:33.600000px;}
.h12_c00057{height:50.400000px;}
.h13_c00057{height:53.550000px;}
.h14_c00057{height:54.600000px;}
.h15_c00057{height:56.700000px;}
.h17_c00057{height:60.900000px;}
.hf_c00057{height:63.000000px;}
.h4_c00057{height:64.054611px;}
.h9_c00057{height:66.181777px;}
.h10_c00057{height:68.250000px;}
.hb_c00057{height:68.282786px;}
.ha_c00057{height:69.333291px;}
.h11_c00057{height:70.350000px;}
.hc_c00057{height:70.383795px;}
.h3_c00057{height:71.405141px;}
.he_c00057{height:71.434299px;}
.h2_c00057{height:72.455216px;}
.h8_c00057{height:72.484804px;}
.hd_c00057{height:73.535308px;}
.h5_c00057{height:95.550000px;}
.h6_c00057{height:121.817599px;}
.h7_c00057{height:152.271999px;}
.h0_c00057{height:1008.450000px;}
.h1_c00057{height:1008.750000px;}
.w0_c00057{width:699.000000px;}
.x0_c00057{left:0.000000px;}
.x84_c00057{left:69.120000px;}
.x85_c00057{left:87.750000px;}
.x64_c00057{left:89.262000px;}
.x5b_c00057{left:90.990000px;}
.x70_c00057{left:94.681500px;}
.x5f_c00057{left:96.660000px;}
.x83_c00057{left:115.563000px;}
.x71_c00057{left:143.733000px;}
.x65_c00057{left:155.694000px;}
.x1_c00057{left:170.208000px;}
.x31_c00057{left:177.144611px;}
.x86_c00057{left:178.470000px;}
.x44_c00057{left:179.891216px;}
.x2_c00057{left:180.955500px;}
.x3c_c00057{left:182.039631px;}
.xa_c00057{left:183.720282px;}
.x72_c00057{left:187.986000px;}
.x1a_c00057{left:189.507000px;}
.x66_c00057{left:192.421500px;}
.x87_c00057{left:199.800000px;}
.x60_c00057{left:202.770000px;}
.x4a_c00057{left:204.261270px;}
.x45_c00057{left:206.628468px;}
.xb_c00057{left:209.914782px;}
.x22_c00057{left:211.018680px;}
.x12_c00057{left:213.385722px;}
.x3d_c00057{left:216.611173px;}
.x1c_c00057{left:218.809800px;}
.x7c_c00057{left:220.413000px;}
.x56_c00057{left:222.866745px;}
.x29_c00057{left:224.949426px;}
.xc_c00057{left:228.264282px;}
.x32_c00057{left:230.607417px;}
.x5c_c00057{left:240.997500px;}
.x3_c00057{left:242.592000px;}
.x23_c00057{left:245.061884px;}
.x58_c00057{left:248.723372px;}
.x3e_c00057{left:250.180251px;}
.x73_c00057{left:251.431500px;}
.x13_c00057{left:252.792300px;}
.x61_c00057{left:256.230000px;}
.x33_c00057{left:257.963169px;}
.x46_c00057{left:260.940392px;}
.x74_c00057{left:263.110500px;}
.x4_c00057{left:266.868000px;}
.x67_c00057{left:268.495500px;}
.xd_c00057{left:270.390282px;}
.x4b_c00057{left:271.799250px;}
.x50_c00057{left:273.613493px;}
.x75_c00057{left:277.620000px;}
.x3f_c00057{left:279.608922px;}
.x15_c00057{left:280.800000px;}
.x7d_c00057{left:282.001500px;}
.x24_c00057{left:283.407016px;}
.x41_c00057{left:284.966984px;}
.x1d_c00057{left:288.472164px;}
.x17_c00057{left:291.544500px;}
.x38_c00057{left:294.418917px;}
.x19_c00057{left:303.481816px;}
.x5d_c00057{left:308.776500px;}
.x59_c00057{left:310.658889px;}
.x4c_c00057{left:313.324850px;}
.x14_c00057{left:314.633568px;}
.x34_c00057{left:315.778393px;}
.x51_c00057{left:318.679523px;}
.x49_c00057{left:320.822445px;}
.x1e_c00057{left:321.985741px;}
.xe_c00057{left:324.660282px;}
.x1b_c00057{left:328.567500px;}
.x62_c00057{left:338.850000px;}
.x5_c00057{left:341.662500px;}
.x25_c00057{left:343.622029px;}
.xf_c00057{left:346.050282px;}
.x39_c00057{left:347.359016px;}
.x35_c00057{left:351.702435px;}
.x6_c00057{left:355.978500px;}
.x76_c00057{left:359.007000px;}
.x2a_c00057{left:363.371838px;}
.x5e_c00057{left:364.969500px;}
.x3a_c00057{left:368.500827px;}
.x36_c00057{left:369.816026px;}
.x10_c00057{left:375.705282px;}
.x7_c00057{left:377.040000px;}
.x1f_c00057{left:378.171828px;}
.x68_c00057{left:379.206000px;}
.x47_c00057{left:380.870819px;}
.x42_c00057{left:385.186646px;}
.x81_c00057{left:388.263000px;}
.x4d_c00057{left:390.383526px;}
.x57_c00057{left:393.537282px;}
.x5a_c00057{left:396.462288px;}
.x2b_c00057{left:398.163159px;}
.x52_c00057{left:402.349839px;}
.x63_c00057{left:409.590000px;}
.x82_c00057{left:411.483000px;}
.x69_c00057{left:422.722500px;}
.x37_c00057{left:425.450541px;}
.x26_c00057{left:428.015550px;}
.x43_c00057{left:429.679187px;}
.x3b_c00057{left:432.136401px;}
.x8_c00057{left:438.609000px;}
.x27_c00057{left:442.803640px;}
.x16_c00057{left:443.880000px;}
.x11_c00057{left:446.173782px;}
.x48_c00057{left:448.134159px;}
.x18_c00057{left:449.527500px;}
.x2c_c00057{left:460.288348px;}
.x77_c00057{left:463.735500px;}
.x53_c00057{left:464.901449px;}
.x6a_c00057{left:467.326500px;}
.x2d_c00057{left:481.628101px;}
.x9_c00057{left:483.111000px;}
.x7e_c00057{left:484.773000px;}
.x28_c00057{left:488.721435px;}
.x4e_c00057{left:494.590641px;}
.x54_c00057{left:496.442120px;}
.x78_c00057{left:497.992500px;}
.x2e_c00057{left:504.105413px;}
.x6b_c00057{left:505.128000px;}
.x40_c00057{left:510.563151px;}
.x55_c00057{left:517.241141px;}
.x20_c00057{left:521.042683px;}
.x4f_c00057{left:524.563475px;}
.x6c_c00057{left:528.601500px;}
.x79_c00057{left:531.279000px;}
.x2f_c00057{left:535.374374px;}
.x30_c00057{left:544.218524px;}
.x7a_c00057{left:551.529000px;}
.x7f_c00057{left:553.347000px;}
.x7b_c00057{left:561.471000px;}
.x80_c00057{left:567.652500px;}
.x6d_c00057{left:574.543500px;}
.x21_c00057{left:580.246665px;}
.x6e_c00057{left:585.258000px;}
.x6f_c00057{left:602.871000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.fs14_c00057{font-size:29.866667pt;}
.fs10_c00057{font-size:44.800000pt;}
.fs11_c00057{font-size:47.600000pt;}
.fs12_c00057{font-size:48.533333pt;}
.fs13_c00057{font-size:50.400000pt;}
.fs15_c00057{font-size:54.133333pt;}
.fsd_c00057{font-size:56.000000pt;}
.fs2_c00057{font-size:56.937432pt;}
.fs7_c00057{font-size:58.828247pt;}
.fse_c00057{font-size:60.666667pt;}
.fs9_c00057{font-size:60.695810pt;}
.fs8_c00057{font-size:61.629592pt;}
.fsf_c00057{font-size:62.533333pt;}
.fsa_c00057{font-size:62.563373pt;}
.fs1_c00057{font-size:63.471236pt;}
.fsc_c00057{font-size:63.497155pt;}
.fs0_c00057{font-size:64.404637pt;}
.fs6_c00057{font-size:64.430937pt;}
.fsb_c00057{font-size:65.364718pt;}
.fs3_c00057{font-size:84.933333pt;}
.fs4_c00057{font-size:108.282310pt;}
.fs5_c00057{font-size:135.352888pt;}
.y0_c00057{bottom:0.000000pt;}
.ybc_c00057{bottom:118.082667pt;}
.ybb_c00057{bottom:139.902667pt;}
.ybd_c00057{bottom:144.185333pt;}
.yba_c00057{bottom:154.792000pt;}
.yb9_c00057{bottom:155.008000pt;}
.yb8_c00057{bottom:155.428000pt;}
.yb7_c00057{bottom:156.044000pt;}
.yb6_c00057{bottom:156.406667pt;}
.yb5_c00057{bottom:156.973333pt;}
.yb4_c00057{bottom:157.476000pt;}
.yb3_c00057{bottom:157.642667pt;}
.yb2_c00057{bottom:158.165333pt;}
.yb1_c00057{bottom:158.644000pt;}
.yb0_c00057{bottom:159.108000pt;}
.yaf_c00057{bottom:160.038667pt;}
.yae_c00057{bottom:160.462667pt;}
.yad_c00057{bottom:161.197333pt;}
.yac_c00057{bottom:162.012000pt;}
.yab_c00057{bottom:170.354667pt;}
.yaa_c00057{bottom:170.478667pt;}
.ya9_c00057{bottom:170.730667pt;}
.ya8_c00057{bottom:171.145333pt;}
.ya7_c00057{bottom:171.572000pt;}
.ya6_c00057{bottom:172.486667pt;}
.ya5_c00057{bottom:172.654667pt;}
.ya4_c00057{bottom:172.874667pt;}
.ya3_c00057{bottom:173.120000pt;}
.ya2_c00057{bottom:173.886667pt;}
.ya1_c00057{bottom:174.066667pt;}
.ya0_c00057{bottom:174.212000pt;}
.y9f_c00057{bottom:174.530667pt;}
.y9e_c00057{bottom:175.001333pt;}
.y9d_c00057{bottom:175.552000pt;}
.y9c_c00057{bottom:176.162667pt;}
.y9b_c00057{bottom:185.182667pt;}
.y9a_c00057{bottom:185.276000pt;}
.y99_c00057{bottom:185.333333pt;}
.y98_c00057{bottom:185.578667pt;}
.y97_c00057{bottom:185.704000pt;}
.y96_c00057{bottom:185.905333pt;}
.y95_c00057{bottom:186.142667pt;}
.y94_c00057{bottom:186.253333pt;}
.y93_c00057{bottom:186.374667pt;}
.y92_c00057{bottom:186.564000pt;}
.y91_c00057{bottom:186.685333pt;}
.y90_c00057{bottom:186.965333pt;}
.y8f_c00057{bottom:187.065333pt;}
.y8e_c00057{bottom:187.238667pt;}
.y8d_c00057{bottom:187.370667pt;}
.y8c_c00057{bottom:187.453333pt;}
.y8b_c00057{bottom:187.566667pt;}
.y8a_c00057{bottom:187.921333pt;}
.y89_c00057{bottom:223.424000pt;}
.y88_c00057{bottom:244.820000pt;}
.y87_c00057{bottom:245.052000pt;}
.y86_c00057{bottom:245.252000pt;}
.y85_c00057{bottom:245.652000pt;}
.y84_c00057{bottom:246.133333pt;}
.y83_c00057{bottom:246.565333pt;}
.y82_c00057{bottom:247.201333pt;}
.y81_c00057{bottom:261.840000pt;}
.y80_c00057{bottom:263.609145pt;}
.y7f_c00057{bottom:264.489107pt;}
.y7e_c00057{bottom:264.836169pt;}
.y7d_c00057{bottom:265.937921pt;}
.y7c_c00057{bottom:266.983955pt;}
.y7b_c00057{bottom:267.504445pt;}
.y7a_c00057{bottom:268.197703pt;}
.y79_c00057{bottom:285.277588pt;}
.y78_c00057{bottom:285.684644pt;}
.y77_c00057{bottom:285.966049pt;}
.y76_c00057{bottom:286.781308pt;}
.y75_c00057{bottom:287.058281pt;}
.y74_c00057{bottom:287.554180pt;}
.y73_c00057{bottom:288.127755pt;}
.y72_c00057{bottom:303.448244pt;}
.y71_c00057{bottom:303.762457pt;}
.y70_c00057{bottom:304.239201pt;}
.y6f_c00057{bottom:304.514125pt;}
.y6e_c00057{bottom:305.184765pt;}
.y6d_c00057{bottom:305.452323pt;}
.y6c_c00057{bottom:306.448013pt;}
.y6b_c00057{bottom:307.129295pt;}
.y6a_c00057{bottom:307.609479pt;}
.y69_c00057{bottom:308.538368pt;}
.y68_c00057{bottom:323.634047pt;}
.y67_c00057{bottom:324.034223pt;}
.y66_c00057{bottom:324.686320pt;}
.y65_c00057{bottom:324.960421pt;}
.y64_c00057{bottom:325.424285pt;}
.y63_c00057{bottom:326.451961pt;}
.y62_c00057{bottom:327.004988pt;}
.y61_c00057{bottom:327.563924pt;}
.y60_c00057{bottom:327.905112pt;}
.y5f_c00057{bottom:328.226341pt;}
.y5e_c00057{bottom:345.980308pt;}
.y5d_c00057{bottom:365.956043pt;}
.y5c_c00057{bottom:366.852603pt;}
.y5b_c00057{bottom:367.308791pt;}
.y5a_c00057{bottom:368.192283pt;}
.y59_c00057{bottom:368.451715pt;}
.y58_c00057{bottom:369.175568pt;}
.y57_c00057{bottom:369.531963pt;}
.y56_c00057{bottom:385.812327pt;}
.y55_c00057{bottom:385.996665pt;}
.y54_c00057{bottom:386.590075pt;}
.y53_c00057{bottom:387.151521pt;}
.y52_c00057{bottom:387.926315pt;}
.y51_c00057{bottom:388.397596pt;}
.y50_c00057{bottom:388.809445pt;}
.y4f_c00057{bottom:389.454001pt;}
.y4e_c00057{bottom:405.192432pt;}
.y4d_c00057{bottom:406.050291pt;}
.y4c_c00057{bottom:406.799509pt;}
.y4b_c00057{bottom:407.210917pt;}
.y4a_c00057{bottom:407.884204pt;}
.y49_c00057{bottom:408.478883pt;}
.y48_c00057{bottom:408.897429pt;}
.y47_c00057{bottom:409.375348pt;}
.y46_c00057{bottom:409.867544pt;}
.y45_c00057{bottom:426.705437pt;}
.y44_c00057{bottom:427.610136pt;}
.y43_c00057{bottom:427.911107pt;}
.y42_c00057{bottom:428.663889pt;}
.y41_c00057{bottom:429.257813pt;}
.y40_c00057{bottom:429.599549pt;}
.y3f_c00057{bottom:429.868793pt;}
.y3e_c00057{bottom:430.275439pt;}
.y3d_c00057{bottom:446.855505pt;}
.y3c_c00057{bottom:447.498357pt;}
.y3b_c00057{bottom:447.707876pt;}
.y3a_c00057{bottom:448.122564pt;}
.y39_c00057{bottom:448.790807pt;}
.y38_c00057{bottom:449.106856pt;}
.y37_c00057{bottom:449.724565pt;}
.y36_c00057{bottom:465.610603pt;}
.y35_c00057{bottom:465.720847pt;}
.y34_c00057{bottom:466.110027pt;}
.y33_c00057{bottom:466.390409pt;}
.y32_c00057{bottom:466.655461pt;}
.y31_c00057{bottom:467.429121pt;}
.y30_c00057{bottom:467.861977pt;}
.y2f_c00057{bottom:468.861217pt;}
.y2e_c00057{bottom:469.583608pt;}
.y2d_c00057{bottom:470.133701pt;}
.y2c_c00057{bottom:486.639911pt;}
.y2b_c00057{bottom:487.007005pt;}
.y2a_c00057{bottom:487.124888pt;}
.y29_c00057{bottom:487.799480pt;}
.y28_c00057{bottom:488.281608pt;}
.y27_c00057{bottom:488.588176pt;}
.y26_c00057{bottom:488.860283pt;}
.y25_c00057{bottom:489.100211pt;}
.y24_c00057{bottom:505.765332pt;}
.y23_c00057{bottom:506.607973pt;}
.y22_c00057{bottom:508.640364pt;}
.y21_c00057{bottom:509.439884pt;}
.y20_c00057{bottom:509.916273pt;}
.y1f_c00057{bottom:510.580189pt;}
.y1e_c00057{bottom:510.906967pt;}
.y1d_c00057{bottom:511.437345pt;}
.y1c_c00057{bottom:528.969444pt;}
.y1b_c00057{bottom:532.801333pt;}
.y1a_c00057{bottom:561.880833pt;}
.y19_c00057{bottom:592.372701pt;}
.y18_c00057{bottom:594.760000pt;}
.y17_c00057{bottom:631.318667pt;}
.y16_c00057{bottom:691.264021pt;}
.y15_c00057{bottom:692.103029pt;}
.y14_c00057{bottom:692.928027pt;}
.y13_c00057{bottom:693.453712pt;}
.y12_c00057{bottom:693.839253pt;}
.y11_c00057{bottom:711.200219pt;}
.y10_c00057{bottom:711.951883pt;}
.yf_c00057{bottom:712.268203pt;}
.ye_c00057{bottom:712.496363pt;}
.yd_c00057{bottom:713.075243pt;}
.yc_c00057{bottom:713.524587pt;}
.yb_c00057{bottom:713.720315pt;}
.ya_c00057{bottom:713.999723pt;}
.y9_c00057{bottom:730.343701pt;}
.y8_c00057{bottom:730.818389pt;}
.y7_c00057{bottom:731.475125pt;}
.y6_c00057{bottom:731.699781pt;}
.y5_c00057{bottom:731.852485pt;}
.y4_c00057{bottom:732.650293pt;}
.y3_c00057{bottom:732.909237pt;}
.y2_c00057{bottom:733.566693pt;}
.y1_c00057{bottom:733.681333pt;}
.h16_c00057{height:29.866667pt;}
.h12_c00057{height:44.800000pt;}
.h13_c00057{height:47.600000pt;}
.h14_c00057{height:48.533333pt;}
.h15_c00057{height:50.400000pt;}
.h17_c00057{height:54.133333pt;}
.hf_c00057{height:56.000000pt;}
.h4_c00057{height:56.937432pt;}
.h9_c00057{height:58.828247pt;}
.h10_c00057{height:60.666667pt;}
.hb_c00057{height:60.695810pt;}
.ha_c00057{height:61.629592pt;}
.h11_c00057{height:62.533333pt;}
.hc_c00057{height:62.563373pt;}
.h3_c00057{height:63.471236pt;}
.he_c00057{height:63.497155pt;}
.h2_c00057{height:64.404637pt;}
.h8_c00057{height:64.430937pt;}
.hd_c00057{height:65.364718pt;}
.h5_c00057{height:84.933333pt;}
.h6_c00057{height:108.282310pt;}
.h7_c00057{height:135.352888pt;}
.h0_c00057{height:896.400000pt;}
.h1_c00057{height:896.666667pt;}
.w0_c00057{width:621.333333pt;}
.x0_c00057{left:0.000000pt;}
.x84_c00057{left:61.440000pt;}
.x85_c00057{left:78.000000pt;}
.x64_c00057{left:79.344000pt;}
.x5b_c00057{left:80.880000pt;}
.x70_c00057{left:84.161333pt;}
.x5f_c00057{left:85.920000pt;}
.x83_c00057{left:102.722667pt;}
.x71_c00057{left:127.762667pt;}
.x65_c00057{left:138.394667pt;}
.x1_c00057{left:151.296000pt;}
.x31_c00057{left:157.461876pt;}
.x86_c00057{left:158.640000pt;}
.x44_c00057{left:159.903303pt;}
.x2_c00057{left:160.849333pt;}
.x3c_c00057{left:161.813005pt;}
.xa_c00057{left:163.306917pt;}
.x72_c00057{left:167.098667pt;}
.x1a_c00057{left:168.450667pt;}
.x66_c00057{left:171.041333pt;}
.x87_c00057{left:177.600000pt;}
.x60_c00057{left:180.240000pt;}
.x4a_c00057{left:181.565573pt;}
.x45_c00057{left:183.669749pt;}
.xb_c00057{left:186.590917pt;}
.x22_c00057{left:187.572160pt;}
.x12_c00057{left:189.676197pt;}
.x3d_c00057{left:192.543265pt;}
.x1c_c00057{left:194.497600pt;}
.x7c_c00057{left:195.922667pt;}
.x56_c00057{left:198.103773pt;}
.x29_c00057{left:199.955045pt;}
.xc_c00057{left:202.901584pt;}
.x32_c00057{left:204.984371pt;}
.x5c_c00057{left:214.220000pt;}
.x3_c00057{left:215.637333pt;}
.x23_c00057{left:217.832785pt;}
.x58_c00057{left:221.087441pt;}
.x3e_c00057{left:222.382445pt;}
.x73_c00057{left:223.494667pt;}
.x13_c00057{left:224.704267pt;}
.x61_c00057{left:227.760000pt;}
.x33_c00057{left:229.300595pt;}
.x46_c00057{left:231.947015pt;}
.x74_c00057{left:233.876000pt;}
.x4_c00057{left:237.216000pt;}
.x67_c00057{left:238.662667pt;}
.xd_c00057{left:240.346917pt;}
.x4b_c00057{left:241.599333pt;}
.x50_c00057{left:243.211993pt;}
.x75_c00057{left:246.773333pt;}
.x3f_c00057{left:248.541264pt;}
.x15_c00057{left:249.600000pt;}
.x7d_c00057{left:250.668000pt;}
.x24_c00057{left:251.917348pt;}
.x41_c00057{left:253.303985pt;}
.x1d_c00057{left:256.419701pt;}
.x17_c00057{left:259.150667pt;}
.x38_c00057{left:261.705704pt;}
.x19_c00057{left:269.761615pt;}
.x5d_c00057{left:274.468000pt;}
.x59_c00057{left:276.141235pt;}
.x4c_c00057{left:278.510977pt;}
.x14_c00057{left:279.674283pt;}
.x34_c00057{left:280.691905pt;}
.x51_c00057{left:283.270687pt;}
.x49_c00057{left:285.175507pt;}
.x1e_c00057{left:286.209548pt;}
.xe_c00057{left:288.586917pt;}
.x1b_c00057{left:292.060000pt;}
.x62_c00057{left:301.200000pt;}
.x5_c00057{left:303.700000pt;}
.x25_c00057{left:305.441804pt;}
.xf_c00057{left:307.600251pt;}
.x39_c00057{left:308.763569pt;}
.x35_c00057{left:312.624387pt;}
.x6_c00057{left:316.425333pt;}
.x76_c00057{left:319.117333pt;}
.x2a_c00057{left:322.997189pt;}
.x5e_c00057{left:324.417333pt;}
.x3a_c00057{left:327.556291pt;}
.x36_c00057{left:328.725356pt;}
.x10_c00057{left:333.960251pt;}
.x7_c00057{left:335.146667pt;}
.x1f_c00057{left:336.152736pt;}
.x68_c00057{left:337.072000pt;}
.x47_c00057{left:338.551839pt;}
.x42_c00057{left:342.388129pt;}
.x81_c00057{left:345.122667pt;}
.x4d_c00057{left:347.007579pt;}
.x57_c00057{left:349.810917pt;}
.x5a_c00057{left:352.410923pt;}
.x2b_c00057{left:353.922808pt;}
.x52_c00057{left:357.644301pt;}
.x63_c00057{left:364.080000pt;}
.x82_c00057{left:365.762667pt;}
.x69_c00057{left:375.753333pt;}
.x37_c00057{left:378.178259pt;}
.x26_c00057{left:380.458267pt;}
.x43_c00057{left:381.937055pt;}
.x3b_c00057{left:384.121245pt;}
.x8_c00057{left:389.874667pt;}
.x27_c00057{left:393.603236pt;}
.x16_c00057{left:394.560000pt;}
.x11_c00057{left:396.598917pt;}
.x48_c00057{left:398.341475pt;}
.x18_c00057{left:399.580000pt;}
.x2c_c00057{left:409.145199pt;}
.x77_c00057{left:412.209333pt;}
.x53_c00057{left:413.245732pt;}
.x6a_c00057{left:415.401333pt;}
.x2d_c00057{left:428.113868pt;}
.x9_c00057{left:429.432000pt;}
.x7e_c00057{left:430.909333pt;}
.x28_c00057{left:434.419053pt;}
.x4e_c00057{left:439.636125pt;}
.x54_c00057{left:441.281884pt;}
.x78_c00057{left:442.660000pt;}
.x2e_c00057{left:448.093700pt;}
.x6b_c00057{left:449.002667pt;}
.x40_c00057{left:453.833912pt;}
.x55_c00057{left:459.769903pt;}
.x20_c00057{left:463.149052pt;}
.x4f_c00057{left:466.278644pt;}
.x6c_c00057{left:469.868000pt;}
.x79_c00057{left:472.248000pt;}
.x2f_c00057{left:475.888332pt;}
.x30_c00057{left:483.749799pt;}
.x7a_c00057{left:490.248000pt;}
.x7f_c00057{left:491.864000pt;}
.x7b_c00057{left:499.085333pt;}
.x80_c00057{left:504.580000pt;}
.x6d_c00057{left:510.705333pt;}
.x21_c00057{left:515.774813pt;}
.x6e_c00057{left:520.229333pt;}
.x6f_c00057{left:535.885333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mbe_c00058{transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00058{transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);}
.mff_c00058{transform:matrix(0.011609,0.000360,-0.007746,0.249880,0,0);-ms-transform:matrix(0.011609,0.000360,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.011609,0.000360,-0.007746,0.249880,0,0);}
.m1b_c00058{transform:matrix(0.012529,0.000138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.012529,0.000138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.012529,0.000138,-0.002750,0.249985,0,0);}
.m101_c00058{transform:matrix(0.013239,0.000410,-0.007746,0.249880,0,0);-ms-transform:matrix(0.013239,0.000410,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.013239,0.000410,-0.007746,0.249880,0,0);}
.m27_c00058{transform:matrix(0.016194,0.000178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016194,0.000178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016194,0.000178,-0.002750,0.249985,0,0);}
.mf6_c00058{transform:matrix(0.018171,0.000563,-0.007746,0.249880,0,0);-ms-transform:matrix(0.018171,0.000563,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.018171,0.000563,-0.007746,0.249880,0,0);}
.m4d_c00058{transform:matrix(0.035383,0.000389,-0.002750,0.249985,0,0);-ms-transform:matrix(0.035383,0.000389,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.035383,0.000389,-0.002750,0.249985,0,0);}
.m5e_c00058{transform:matrix(0.037198,0.000409,-0.002750,0.249985,0,0);-ms-transform:matrix(0.037198,0.000409,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.037198,0.000409,-0.002750,0.249985,0,0);}
.mc9_c00058{transform:matrix(0.049882,0.001147,-0.005748,0.249934,0,0);-ms-transform:matrix(0.049882,0.001147,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.049882,0.001147,-0.005748,0.249934,0,0);}
.mc_c00058{transform:matrix(0.064438,0.001675,-0.006498,0.249916,0,0);-ms-transform:matrix(0.064438,0.001675,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.064438,0.001675,-0.006498,0.249916,0,0);}
.m100_c00058{transform:matrix(0.081276,0.002520,-0.007746,0.249880,0,0);-ms-transform:matrix(0.081276,0.002520,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.081276,0.002520,-0.007746,0.249880,0,0);}
.mdf_c00058{transform:matrix(0.120068,0.003362,-0.006997,0.249902,0,0);-ms-transform:matrix(0.120068,0.003362,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.120068,0.003362,-0.006997,0.249902,0,0);}
.m33_c00058{transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);}
.m16_c00058{transform:matrix(0.139852,0.001538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139852,0.001538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139852,0.001538,-0.002750,0.249985,0,0);}
.mcd_c00058{transform:matrix(0.146501,0.003370,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146501,0.003370,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146501,0.003370,-0.005748,0.249934,0,0);}
.m63_c00058{transform:matrix(0.148616,0.001635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148616,0.001635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148616,0.001635,-0.002750,0.249985,0,0);}
.mb0_c00058{transform:matrix(0.149316,0.001642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149316,0.001642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149316,0.001642,-0.002750,0.249985,0,0);}
.m1a_c00058{transform:matrix(0.149396,0.001643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149396,0.001643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149396,0.001643,-0.002750,0.249985,0,0);}
.mad_c00058{transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);}
.m2c_c00058{transform:matrix(0.155166,0.001707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155166,0.001707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155166,0.001707,-0.002750,0.249985,0,0);}
.m8d_c00058{transform:matrix(0.156766,0.001724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156766,0.001724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156766,0.001724,-0.002750,0.249985,0,0);}
.mc7_c00058{transform:matrix(0.158893,0.003655,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158893,0.003655,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158893,0.003655,-0.005748,0.249934,0,0);}
.m1e_c00058{transform:matrix(0.159125,0.001750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159125,0.001750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159125,0.001750,-0.002750,0.249985,0,0);}
.m20_c00058{transform:matrix(0.159510,0.001755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159510,0.001755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159510,0.001755,-0.002750,0.249985,0,0);}
.m4b_c00058{transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);}
.mce_c00058{transform:matrix(0.160752,0.003697,-0.005748,0.249934,0,0);-ms-transform:matrix(0.160752,0.003697,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.160752,0.003697,-0.005748,0.249934,0,0);}
.m21_c00058{transform:matrix(0.161325,0.001775,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161325,0.001775,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161325,0.001775,-0.002750,0.249985,0,0);}
.m2a_c00058{transform:matrix(0.161950,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161950,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161950,0.001781,-0.002750,0.249985,0,0);}
.mcf_c00058{transform:matrix(0.163262,0.003755,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163262,0.003755,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163262,0.003755,-0.005748,0.249934,0,0);}
.m57_c00058{transform:matrix(0.164460,0.001809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164460,0.001809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164460,0.001809,-0.002750,0.249985,0,0);}
.med_c00058{transform:matrix(0.164686,0.005105,-0.007746,0.249880,0,0);-ms-transform:matrix(0.164686,0.005105,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.164686,0.005105,-0.007746,0.249880,0,0);}
.m87_c00058{transform:matrix(0.164785,0.001813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164785,0.001813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164785,0.001813,-0.002750,0.249985,0,0);}
.ma8_c00058{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);}
.ma6_c00058{transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);}
.m8c_c00058{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);}
.m2e_c00058{transform:matrix(0.166790,0.001835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166790,0.001835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166790,0.001835,-0.002750,0.249985,0,0);}
.m65_c00058{transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);}
.mf_c00058{transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);}
.m42_c00058{transform:matrix(0.168215,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168215,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168215,0.001850,-0.002750,0.249985,0,0);}
.m7b_c00058{transform:matrix(0.168670,0.001855,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168670,0.001855,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168670,0.001855,-0.002750,0.249985,0,0);}
.m34_c00058{transform:matrix(0.168810,0.001857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168810,0.001857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168810,0.001857,-0.002750,0.249985,0,0);}
.m7a_c00058{transform:matrix(0.169100,0.001860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169100,0.001860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169100,0.001860,-0.002750,0.249985,0,0);}
.m38_c00058{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);}
.mf2_c00058{transform:matrix(0.170023,0.005271,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170023,0.005271,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170023,0.005271,-0.007746,0.249880,0,0);}
.m2f_c00058{transform:matrix(0.170440,0.001875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170440,0.001875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170440,0.001875,-0.002750,0.249985,0,0);}
.m30_c00058{transform:matrix(0.170555,0.001876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170555,0.001876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170555,0.001876,-0.002750,0.249985,0,0);}
.me9_c00058{transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);}
.mc4_c00058{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);}
.m76_c00058{transform:matrix(0.171520,0.001887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171520,0.001887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171520,0.001887,-0.002750,0.249985,0,0);}
.m13_c00058{transform:matrix(0.171910,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171910,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171910,0.001891,-0.002750,0.249985,0,0);}
.m24_c00058{transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);}
.me6_c00058{transform:matrix(0.172847,0.005358,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172847,0.005358,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172847,0.005358,-0.007746,0.249880,0,0);}
.m48_c00058{transform:matrix(0.173889,0.001913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173889,0.001913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173889,0.001913,-0.002750,0.249985,0,0);}
.m92_c00058{transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);}
.mac_c00058{transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);}
.m36_c00058{transform:matrix(0.175384,0.001929,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175384,0.001929,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175384,0.001929,-0.002750,0.249985,0,0);}
.mda_c00058{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);}
.m11_c00058{transform:matrix(0.176129,0.001937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176129,0.001937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176129,0.001937,-0.002750,0.249985,0,0);}
.m9_c00058{transform:matrix(0.176145,0.004580,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176145,0.004580,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176145,0.004580,-0.006498,0.249916,0,0);}
.m49_c00058{transform:matrix(0.176259,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176259,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176259,0.001939,-0.002750,0.249985,0,0);}
.m25_c00058{transform:matrix(0.176399,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176399,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176399,0.001940,-0.002750,0.249985,0,0);}
.m2d_c00058{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);}
.mf3_c00058{transform:matrix(0.177550,0.005504,-0.007746,0.249880,0,0);-ms-transform:matrix(0.177550,0.005504,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.177550,0.005504,-0.007746,0.249880,0,0);}
.m64_c00058{transform:matrix(0.178454,0.001963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178454,0.001963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178454,0.001963,-0.002750,0.249985,0,0);}
.m4a_c00058{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);}
.m22_c00058{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);}
.m17_c00058{transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);}
.m2b_c00058{transform:matrix(0.178864,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178864,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178864,0.001968,-0.002750,0.249985,0,0);}
.mea_c00058{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);}
.m51_c00058{transform:matrix(0.181094,0.001992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181094,0.001992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181094,0.001992,-0.002750,0.249985,0,0);}
.m19_c00058{transform:matrix(0.181234,0.001994,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181234,0.001994,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181234,0.001994,-0.002750,0.249985,0,0);}
.m46_c00058{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);}
.mae_c00058{transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182244,0.002005,-0.002750,0.249985,0,0);}
.m5_c00058{transform:matrix(0.182893,0.004572,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182893,0.004572,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182893,0.004572,-0.006248,0.249922,0,0);}
.m52_c00058{transform:matrix(0.182914,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182914,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182914,0.002012,-0.002750,0.249985,0,0);}
.m6c_c00058{transform:matrix(0.183109,0.002014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183109,0.002014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183109,0.002014,-0.002750,0.249985,0,0);}
.m40_c00058{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);}
.m26_c00058{transform:matrix(0.184109,0.002025,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184109,0.002025,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184109,0.002025,-0.002750,0.249985,0,0);}
.m6d_c00058{transform:matrix(0.185194,0.002037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185194,0.002037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185194,0.002037,-0.002750,0.249985,0,0);}
.m67_c00058{transform:matrix(0.187039,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187039,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187039,0.002057,-0.002750,0.249985,0,0);}
.m90_c00058{transform:matrix(0.187164,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187164,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187164,0.002059,-0.002750,0.249985,0,0);}
.ma5_c00058{transform:matrix(0.187284,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187284,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187284,0.002060,-0.002750,0.249985,0,0);}
.m94_c00058{transform:matrix(0.188174,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188174,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188174,0.002070,-0.002750,0.249985,0,0);}
.m15_c00058{transform:matrix(0.188204,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188204,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188204,0.002070,-0.002750,0.249985,0,0);}
.me1_c00058{transform:matrix(0.188361,0.005274,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188361,0.005274,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188361,0.005274,-0.006997,0.249902,0,0);}
.m71_c00058{transform:matrix(0.188504,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188504,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188504,0.002074,-0.002750,0.249985,0,0);}
.maa_c00058{transform:matrix(0.188704,0.002076,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188704,0.002076,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188704,0.002076,-0.002750,0.249985,0,0);}
.m18_c00058{transform:matrix(0.189584,0.002085,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189584,0.002085,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189584,0.002085,-0.002750,0.249985,0,0);}
.m93_c00058{transform:matrix(0.189754,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189754,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189754,0.002087,-0.002750,0.249985,0,0);}
.m8_c00058{transform:matrix(0.189821,0.004935,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189821,0.004935,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189821,0.004935,-0.006498,0.249916,0,0);}
.m81_c00058{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);}
.mc5_c00058{transform:matrix(0.189980,0.004370,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189980,0.004370,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189980,0.004370,-0.005748,0.249934,0,0);}
.maf_c00058{transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190838,0.002099,-0.002750,0.249985,0,0);}
.mfe_c00058{transform:matrix(0.191508,0.005937,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191508,0.005937,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191508,0.005937,-0.007746,0.249880,0,0);}
.m78_c00058{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);}
.mc3_c00058{transform:matrix(0.193159,0.004443,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193159,0.004443,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193159,0.004443,-0.005748,0.249934,0,0);}
.mc8_c00058{transform:matrix(0.193924,0.004460,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193924,0.004460,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193924,0.004460,-0.005748,0.249934,0,0);}
.m53_c00058{transform:matrix(0.194228,0.002137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194228,0.002137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194228,0.002137,-0.002750,0.249985,0,0);}
.m102_c00058{transform:matrix(0.194651,0.006034,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194651,0.006034,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194651,0.006034,-0.007746,0.249880,0,0);}
.m6e_c00058{transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);}
.md1_c00058{transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);}
.m3f_c00058{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);}
.m37_c00058{transform:matrix(0.195428,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195428,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195428,0.002150,-0.002750,0.249985,0,0);}
.m23_c00058{transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);}
.m8b_c00058{transform:matrix(0.195683,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195683,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195683,0.002153,-0.002750,0.249985,0,0);}
.m91_c00058{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);}
.m84_c00058{transform:matrix(0.195883,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195883,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195883,0.002155,-0.002750,0.249985,0,0);}
.m41_c00058{transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);}
.mc6_c00058{transform:matrix(0.196213,0.004513,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196213,0.004513,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196213,0.004513,-0.005748,0.249934,0,0);}
.m70_c00058{transform:matrix(0.196848,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196848,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196848,0.002165,-0.002750,0.249985,0,0);}
.m4c_c00058{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);}
.mdb_c00058{transform:matrix(0.197323,0.005525,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197323,0.005525,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197323,0.005525,-0.006997,0.249902,0,0);}
.mcc_c00058{transform:matrix(0.197493,0.004542,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197493,0.004542,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197493,0.004542,-0.005748,0.249934,0,0);}
.m96_c00058{transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);}
.m6a_c00058{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);}
.m9c_c00058{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);}
.m89_c00058{transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);}
.mc2_c00058{transform:matrix(0.199962,0.004599,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199962,0.004599,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199962,0.004599,-0.005748,0.249934,0,0);}
.m47_c00058{transform:matrix(0.200183,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200183,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200183,0.002202,-0.002750,0.249985,0,0);}
.m95_c00058{transform:matrix(0.200258,0.002203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200258,0.002203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200258,0.002203,-0.002750,0.249985,0,0);}
.mdd_c00058{transform:matrix(0.201201,0.005634,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201201,0.005634,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201201,0.005634,-0.006997,0.249902,0,0);}
.m83_c00058{transform:matrix(0.201548,0.002217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201548,0.002217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201548,0.002217,-0.002750,0.249985,0,0);}
.m6f_c00058{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);}
.ma7_c00058{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);}
.mb7_c00058{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.md0_c00058{transform:matrix(0.203901,0.004690,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203901,0.004690,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203901,0.004690,-0.005748,0.249934,0,0);}
.m79_c00058{transform:matrix(0.204513,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204513,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204513,0.002250,-0.002750,0.249985,0,0);}
.m7e_c00058{transform:matrix(0.206303,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206303,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206303,0.002269,-0.002750,0.249985,0,0);}
.md7_c00058{transform:matrix(0.206819,0.005791,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206819,0.005791,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206819,0.005791,-0.006997,0.249902,0,0);}
.mf0_c00058{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);}
.m88_c00058{transform:matrix(0.207787,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207787,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207787,0.002286,-0.002750,0.249985,0,0);}
.mbc_c00058{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);}
.m29_c00058{transform:matrix(0.209657,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209657,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209657,0.002306,-0.002750,0.249985,0,0);}
.m9f_c00058{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);}
.m99_c00058{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);}
.m80_c00058{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);}
.mec_c00058{transform:matrix(0.212718,0.006594,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212718,0.006594,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212718,0.006594,-0.007746,0.249880,0,0);}
.mdc_c00058{transform:matrix(0.212797,0.005958,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212797,0.005958,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212797,0.005958,-0.006997,0.249902,0,0);}
.m3d_c00058{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);}
.m55_c00058{transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);}
.mc1_c00058{transform:matrix(0.217642,0.005006,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217642,0.005006,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217642,0.005006,-0.005748,0.249934,0,0);}
.md9_c00058{transform:matrix(0.217730,0.006096,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217730,0.006096,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217730,0.006096,-0.006997,0.249902,0,0);}
.m66_c00058{transform:matrix(0.217802,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217802,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217802,0.002396,-0.002750,0.249985,0,0);}
.mf4_c00058{transform:matrix(0.218165,0.006763,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218165,0.006763,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218165,0.006763,-0.007746,0.249880,0,0);}
.me0_c00058{transform:matrix(0.218494,0.006118,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218494,0.006118,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218494,0.006118,-0.006997,0.249902,0,0);}
.m7f_c00058{transform:matrix(0.219212,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219212,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219212,0.002411,-0.002750,0.249985,0,0);}
.m6b_c00058{transform:matrix(0.219837,0.002418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219837,0.002418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219837,0.002418,-0.002750,0.249985,0,0);}
.me_c00058{transform:matrix(0.220347,0.002424,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220347,0.002424,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220347,0.002424,-0.002750,0.249985,0,0);}
.mb8_c00058{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);}
.md_c00058{transform:matrix(0.220475,0.005732,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220475,0.005732,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220475,0.005732,-0.006498,0.249916,0,0);}
.mbf_c00058{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);}
.m9e_c00058{transform:matrix(0.221242,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221242,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221242,0.002434,-0.002750,0.249985,0,0);}
.m62_c00058{transform:matrix(0.223511,0.002459,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223511,0.002459,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223511,0.002459,-0.002750,0.249985,0,0);}
.m82_c00058{transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);}
.mcb_c00058{transform:matrix(0.223931,0.005150,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223931,0.005150,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223931,0.005150,-0.005748,0.249934,0,0);}
.me5_c00058{transform:matrix(0.223967,0.006943,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223967,0.006943,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223967,0.006943,-0.007746,0.249880,0,0);}
.m4f_c00058{transform:matrix(0.224841,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224841,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224841,0.002473,-0.002750,0.249985,0,0);}
.m86_c00058{transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);}
.ma0_c00058{transform:matrix(0.226281,0.002489,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226281,0.002489,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226281,0.002489,-0.002750,0.249985,0,0);}
.mba_c00058{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);}
.me4_c00058{transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);}
.m35_c00058{transform:matrix(0.228446,0.002513,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228446,0.002513,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228446,0.002513,-0.002750,0.249985,0,0);}
.mf1_c00058{transform:matrix(0.228610,0.007087,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228610,0.007087,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228610,0.007087,-0.007746,0.249880,0,0);}
.m77_c00058{transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);}
.m69_c00058{transform:matrix(0.229156,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229156,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229156,0.002521,-0.002750,0.249985,0,0);}
.ma1_c00058{transform:matrix(0.229541,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229541,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229541,0.002525,-0.002750,0.249985,0,0);}
.m10_c00058{transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);}
.m39_c00058{transform:matrix(0.230166,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230166,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230166,0.002532,-0.002750,0.249985,0,0);}
.me8_c00058{transform:matrix(0.231409,0.007174,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231409,0.007174,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231409,0.007174,-0.007746,0.249880,0,0);}
.me7_c00058{transform:matrix(0.231444,0.007175,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231444,0.007175,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231444,0.007175,-0.007746,0.249880,0,0);}
.mb9_c00058{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);}
.m60_c00058{transform:matrix(0.233956,0.002574,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233956,0.002574,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233956,0.002574,-0.002750,0.249985,0,0);}
.m3e_c00058{transform:matrix(0.235011,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235011,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235011,0.002585,-0.002750,0.249985,0,0);}
.m7d_c00058{transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);}
.mfb_c00058{transform:matrix(0.237271,0.007355,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237271,0.007355,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237271,0.007355,-0.007746,0.249880,0,0);}
.m8a_c00058{transform:matrix(0.237951,0.002617,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237951,0.002617,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237951,0.002617,-0.002750,0.249985,0,0);}
.md8_c00058{transform:matrix(0.238057,0.006666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238057,0.006666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238057,0.006666,-0.006997,0.249902,0,0);}
.m56_c00058{transform:matrix(0.238496,0.002623,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238496,0.002623,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238496,0.002623,-0.002750,0.249985,0,0);}
.mde_c00058{transform:matrix(0.239161,0.006697,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239161,0.006697,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239161,0.006697,-0.006997,0.249902,0,0);}
.m5f_c00058{transform:matrix(0.241070,0.002652,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241070,0.002652,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241070,0.002652,-0.002750,0.249985,0,0);}
.ma2_c00058{transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);}
.m75_c00058{transform:matrix(0.245305,0.002698,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245305,0.002698,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245305,0.002698,-0.002750,0.249985,0,0);}
.m43_c00058{transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);}
.md3_c00058{transform:matrix(0.246635,0.005673,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246635,0.005673,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246635,0.005673,-0.005748,0.249934,0,0);}
.m3c_c00058{transform:matrix(0.246720,0.002714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246720,0.002714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246720,0.002714,-0.002750,0.249985,0,0);}
.me2_c00058{transform:matrix(0.249497,0.006986,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249497,0.006986,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249497,0.006986,-0.006997,0.249902,0,0);}
.m54_c00058{transform:matrix(0.252445,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252445,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252445,0.002777,-0.002750,0.249985,0,0);}
.mf5_c00058{transform:matrix(0.253273,0.007851,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253273,0.007851,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253273,0.007851,-0.007746,0.249880,0,0);}
.m12_c00058{transform:matrix(0.253680,0.002790,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253680,0.002790,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253680,0.002790,-0.002750,0.249985,0,0);}
.m98_c00058{transform:matrix(0.263539,0.002899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263539,0.002899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263539,0.002899,-0.002750,0.249985,0,0);}
.m9b_c00058{transform:matrix(0.263634,0.002900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263634,0.002900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263634,0.002900,-0.002750,0.249985,0,0);}
.mfc_c00058{transform:matrix(0.266422,0.008259,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266422,0.008259,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266422,0.008259,-0.007746,0.249880,0,0);}
.md6_c00058{transform:matrix(0.266945,0.007474,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266945,0.007474,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266945,0.007474,-0.006997,0.249902,0,0);}
.m74_c00058{transform:matrix(0.269179,0.002961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269179,0.002961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269179,0.002961,-0.002750,0.249985,0,0);}
.mbd_c00058{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);}
.m9d_c00058{transform:matrix(0.269924,0.002969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269924,0.002969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269924,0.002969,-0.002750,0.249985,0,0);}
.mab_c00058{transform:matrix(0.273948,0.003013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273948,0.003013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273948,0.003013,-0.002750,0.249985,0,0);}
.m8f_c00058{transform:matrix(0.276528,0.003042,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276528,0.003042,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276528,0.003042,-0.002750,0.249985,0,0);}
.ma4_c00058{transform:matrix(0.277373,0.003051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277373,0.003051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277373,0.003051,-0.002750,0.249985,0,0);}
.m6_c00058{transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);}
.m32_c00058{transform:matrix(0.278493,0.003063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278493,0.003063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278493,0.003063,-0.002750,0.249985,0,0);}
.ma_c00058{transform:matrix(0.285189,0.007415,-0.006498,0.249916,0,0);-ms-transform:matrix(0.285189,0.007415,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.285189,0.007415,-0.006498,0.249916,0,0);}
.m106_c00058{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m103_c00058{transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293505,0.000000,0.000000,0.250000,0,0);}
.md2_c00058{transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);}
.m7_c00058{transform:matrix(0.303058,0.007879,-0.006498,0.249916,0,0);-ms-transform:matrix(0.303058,0.007879,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.303058,0.007879,-0.006498,0.249916,0,0);}
.m9a_c00058{transform:matrix(0.307176,0.003379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307176,0.003379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307176,0.003379,-0.002750,0.249985,0,0);}
.m72_c00058{transform:matrix(0.314931,0.003464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.314931,0.003464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.314931,0.003464,-0.002750,0.249985,0,0);}
.m3a_c00058{transform:matrix(0.316771,0.003484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316771,0.003484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316771,0.003484,-0.002750,0.249985,0,0);}
.m5d_c00058{transform:matrix(0.318056,0.003499,-0.002750,0.249985,0,0);-ms-transform:matrix(0.318056,0.003499,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.318056,0.003499,-0.002750,0.249985,0,0);}
.m85_c00058{transform:matrix(0.319231,0.003512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319231,0.003512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319231,0.003512,-0.002750,0.249985,0,0);}
.m44_c00058{transform:matrix(0.325255,0.003578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.325255,0.003578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.325255,0.003578,-0.002750,0.249985,0,0);}
.md5_c00058{transform:matrix(0.328646,0.009202,-0.006997,0.249902,0,0);-ms-transform:matrix(0.328646,0.009202,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.328646,0.009202,-0.006997,0.249902,0,0);}
.mb4_c00058{transform:matrix(0.331280,0.003644,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331280,0.003644,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331280,0.003644,-0.002750,0.249985,0,0);}
.m31_c00058{transform:matrix(0.332430,0.003657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332430,0.003657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332430,0.003657,-0.002750,0.249985,0,0);}
.mb3_c00058{transform:matrix(0.332805,0.003661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332805,0.003661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332805,0.003661,-0.002750,0.249985,0,0);}
.m58_c00058{transform:matrix(0.332905,0.003662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332905,0.003662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332905,0.003662,-0.002750,0.249985,0,0);}
.mbb_c00058{transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);}
.mb6_c00058{transform:matrix(0.340189,0.003742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.340189,0.003742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.340189,0.003742,-0.002750,0.249985,0,0);}
.mf7_c00058{transform:matrix(0.340686,0.010561,-0.007746,0.249880,0,0);-ms-transform:matrix(0.340686,0.010561,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.340686,0.010561,-0.007746,0.249880,0,0);}
.meb_c00058{transform:matrix(0.358498,0.011113,-0.007746,0.249880,0,0);-ms-transform:matrix(0.358498,0.011113,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.358498,0.011113,-0.007746,0.249880,0,0);}
.m8e_c00058{transform:matrix(0.359258,0.003952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.359258,0.003952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.359258,0.003952,-0.002750,0.249985,0,0);}
.mef_c00058{transform:matrix(0.385725,0.011957,-0.007746,0.249880,0,0);-ms-transform:matrix(0.385725,0.011957,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.385725,0.011957,-0.007746,0.249880,0,0);}
.m50_c00058{transform:matrix(0.397436,0.004372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.397436,0.004372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.397436,0.004372,-0.002750,0.249985,0,0);}
.m105_c00058{transform:matrix(0.398195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398195,0.000000,0.000000,0.250000,0,0);}
.m5a_c00058{transform:matrix(0.402871,0.004432,-0.002750,0.249985,0,0);-ms-transform:matrix(0.402871,0.004432,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.402871,0.004432,-0.002750,0.249985,0,0);}
.m68_c00058{transform:matrix(0.403826,0.004442,-0.002750,0.249985,0,0);-ms-transform:matrix(0.403826,0.004442,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.403826,0.004442,-0.002750,0.249985,0,0);}
.mfa_c00058{transform:matrix(0.407969,0.012647,-0.007746,0.249880,0,0);-ms-transform:matrix(0.407969,0.012647,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.407969,0.012647,-0.007746,0.249880,0,0);}
.mb_c00058{transform:matrix(0.409172,0.010638,-0.006498,0.249916,0,0);-ms-transform:matrix(0.409172,0.010638,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.409172,0.010638,-0.006498,0.249916,0,0);}
.m14_c00058{transform:matrix(0.409435,0.004504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.409435,0.004504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.409435,0.004504,-0.002750,0.249985,0,0);}
.m1d_c00058{transform:matrix(0.409705,0.004507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.409705,0.004507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.409705,0.004507,-0.002750,0.249985,0,0);}
.m73_c00058{transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);}
.mb2_c00058{transform:matrix(0.411355,0.004525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.411355,0.004525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.411355,0.004525,-0.002750,0.249985,0,0);}
.ma9_c00058{transform:matrix(0.421819,0.004640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.421819,0.004640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.421819,0.004640,-0.002750,0.249985,0,0);}
.m59_c00058{transform:matrix(0.422539,0.004648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422539,0.004648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422539,0.004648,-0.002750,0.249985,0,0);}
.m1c_c00058{transform:matrix(0.428799,0.004717,-0.002750,0.249985,0,0);-ms-transform:matrix(0.428799,0.004717,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.428799,0.004717,-0.002750,0.249985,0,0);}
.md4_c00058{transform:matrix(0.437824,0.010070,-0.005748,0.249934,0,0);-ms-transform:matrix(0.437824,0.010070,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.437824,0.010070,-0.005748,0.249934,0,0);}
.mb5_c00058{transform:matrix(0.447723,0.004925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.447723,0.004925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.447723,0.004925,-0.002750,0.249985,0,0);}
.mca_c00058{transform:matrix(0.461958,0.010625,-0.005748,0.249934,0,0);-ms-transform:matrix(0.461958,0.010625,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.461958,0.010625,-0.005748,0.249934,0,0);}
.m1_c00058{transform:matrix(0.488792,0.012220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.488792,0.012220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.488792,0.012220,-0.006248,0.249922,0,0);}
.m97_c00058{transform:matrix(0.490585,0.005396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.490585,0.005396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.490585,0.005396,-0.002750,0.249985,0,0);}
.mf9_c00058{transform:matrix(0.522634,0.016202,-0.007746,0.249880,0,0);-ms-transform:matrix(0.522634,0.016202,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.522634,0.016202,-0.007746,0.249880,0,0);}
.m28_c00058{transform:matrix(0.527923,0.005807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.527923,0.005807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.527923,0.005807,-0.002750,0.249985,0,0);}
.m2_c00058{transform:matrix(0.528160,0.013204,-0.006248,0.249922,0,0);-ms-transform:matrix(0.528160,0.013204,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.528160,0.013204,-0.006248,0.249922,0,0);}
.m3_c00058{transform:matrix(0.537702,0.013443,-0.006248,0.249922,0,0);-ms-transform:matrix(0.537702,0.013443,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.537702,0.013443,-0.006248,0.249922,0,0);}
.m45_c00058{transform:matrix(0.539052,0.005930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.539052,0.005930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.539052,0.005930,-0.002750,0.249985,0,0);}
.m7c_c00058{transform:matrix(0.544057,0.005985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.544057,0.005985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.544057,0.005985,-0.002750,0.249985,0,0);}
.mee_c00058{transform:matrix(0.553449,0.017157,-0.007746,0.249880,0,0);-ms-transform:matrix(0.553449,0.017157,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.553449,0.017157,-0.007746,0.249880,0,0);}
.m107_c00058{transform:matrix(0.578770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578770,0.000000,0.000000,0.250000,0,0);}
.mfd_c00058{transform:matrix(0.602541,0.018679,-0.007746,0.249880,0,0);-ms-transform:matrix(0.602541,0.018679,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.602541,0.018679,-0.007746,0.249880,0,0);}
.m104_c00058{transform:matrix(0.658505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658505,0.000000,0.000000,0.250000,0,0);}
.m5c_c00058{transform:matrix(0.669969,0.007370,-0.002750,0.249985,0,0);-ms-transform:matrix(0.669969,0.007370,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.669969,0.007370,-0.002750,0.249985,0,0);}
.me3_c00058{transform:matrix(0.701890,0.019653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.701890,0.019653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.701890,0.019653,-0.006997,0.249902,0,0);}
.mc0_c00058{transform:matrix(0.722199,0.016611,-0.005748,0.249934,0,0);-ms-transform:matrix(0.722199,0.016611,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.722199,0.016611,-0.005748,0.249934,0,0);}
.m4_c00058{transform:matrix(0.731791,0.018295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.731791,0.018295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.731791,0.018295,-0.006248,0.249922,0,0);}
.m0_c00058{transform:matrix(0.762907,0.019073,-0.006248,0.249922,0,0);-ms-transform:matrix(0.762907,0.019073,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.762907,0.019073,-0.006248,0.249922,0,0);}
.m61_c00058{transform:matrix(0.783408,0.008617,-0.002750,0.249985,0,0);-ms-transform:matrix(0.783408,0.008617,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.783408,0.008617,-0.002750,0.249985,0,0);}
.m5b_c00058{transform:matrix(0.789227,0.008681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.789227,0.008681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.789227,0.008681,-0.002750,0.249985,0,0);}
.m4e_c00058{transform:matrix(0.796622,0.008763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.796622,0.008763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.796622,0.008763,-0.002750,0.249985,0,0);}
.ma3_c00058{transform:matrix(0.853728,0.009391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.853728,0.009391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.853728,0.009391,-0.002750,0.249985,0,0);}
.m1f_c00058{transform:matrix(0.862433,0.009487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.862433,0.009487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.862433,0.009487,-0.002750,0.249985,0,0);}
.m3b_c00058{transform:matrix(0.900241,0.009903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.900241,0.009903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.900241,0.009903,-0.002750,0.249985,0,0);}
.mf8_c00058{transform:matrix(1.773838,0.054989,-0.007746,0.249880,0,0);-ms-transform:matrix(1.773838,0.054989,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.773838,0.054989,-0.007746,0.249880,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;}
.fs1c_c00058{font-size:32.550000px;}
.fs13_c00058{font-size:36.750000px;}
.fs11_c00058{font-size:37.800000px;}
.fs17_c00058{font-size:49.369341px;}
.fs19_c00058{font-size:53.575725px;}
.fs18_c00058{font-size:55.676733px;}
.fsa_c00058{font-size:58.803557px;}
.fs1_c00058{font-size:59.850000px;}
.fsc_c00058{font-size:59.853621px;}
.fsf_c00058{font-size:60.903684px;}
.fs9_c00058{font-size:64.053875px;}
.fsd_c00058{font-size:66.154002px;}
.fse_c00058{font-size:67.204065px;}
.fs4_c00058{font-size:69.304193px;}
.fs15_c00058{font-size:69.318327px;}
.fsb_c00058{font-size:70.354256px;}
.fs8_c00058{font-size:71.404320px;}
.fs1a_c00058{font-size:73.535308px;}
.fs6_c00058{font-size:74.554510px;}
.fs7_c00058{font-size:75.604574px;}
.fs16_c00058{font-size:76.670271px;}
.fs5_c00058{font-size:77.704701px;}
.fs10_c00058{font-size:91.355527px;}
.fs0_c00058{font-size:92.428870px;}
.fs14_c00058{font-size:105.000000px;}
.fs1b_c00058{font-size:111.353467px;}
.fs3_c00058{font-size:113.438323px;}
.fs2_c00058{font-size:128.143290px;}
.fs12_c00058{font-size:136.500000px;}
.y0_c00058{bottom:0.000000px;}
.y108_c00058{bottom:66.414000px;}
.y107_c00058{bottom:87.977778px;}
.y106_c00058{bottom:105.636383px;}
.y105_c00058{bottom:106.322118px;}
.y104_c00058{bottom:107.697576px;}
.y103_c00058{bottom:109.749795px;}
.y102_c00058{bottom:112.646498px;}
.y101_c00058{bottom:114.897443px;}
.y100_c00058{bottom:116.325038px;}
.yff_c00058{bottom:118.854873px;}
.yfe_c00058{bottom:119.606265px;}
.yfd_c00058{bottom:129.488019px;}
.yfc_c00058{bottom:130.182080px;}
.yfb_c00058{bottom:134.070851px;}
.yfa_c00058{bottom:136.364376px;}
.yf9_c00058{bottom:137.122976px;}
.yf8_c00058{bottom:138.092919px;}
.yf7_c00058{bottom:138.872733px;}
.yf6_c00058{bottom:139.663137px;}
.yf5_c00058{bottom:140.937513px;}
.yf4_c00058{bottom:141.719094px;}
.yf3_c00058{bottom:143.792541px;}
.yf2_c00058{bottom:150.093152px;}
.yf1_c00058{bottom:151.572131px;}
.yf0_c00058{bottom:152.064380px;}
.yef_c00058{bottom:153.860209px;}
.yee_c00058{bottom:154.536320px;}
.yed_c00058{bottom:156.154334px;}
.yec_c00058{bottom:156.884012px;}
.yeb_c00058{bottom:157.865952px;}
.yea_c00058{bottom:159.497823px;}
.ye9_c00058{bottom:159.673500px;}
.ye8_c00058{bottom:162.087480px;}
.ye7_c00058{bottom:163.206990px;}
.ye6_c00058{bottom:163.721700px;}
.ye5_c00058{bottom:164.286138px;}
.ye4_c00058{bottom:165.594564px;}
.ye3_c00058{bottom:165.916998px;}
.ye2_c00058{bottom:167.382966px;}
.ye1_c00058{bottom:168.417384px;}
.ye0_c00058{bottom:169.104210px;}
.ydf_c00058{bottom:170.155260px;}
.yde_c00058{bottom:171.042804px;}
.ydd_c00058{bottom:172.041396px;}
.ydc_c00058{bottom:173.616438px;}
.ydb_c00058{bottom:174.483150px;}
.yda_c00058{bottom:175.133982px;}
.yd9_c00058{bottom:175.782000px;}
.yd8_c00058{bottom:198.396915px;}
.yd7_c00058{bottom:198.717908px;}
.yd6_c00058{bottom:201.737037px;}
.yd5_c00058{bottom:203.436870px;}
.yd4_c00058{bottom:204.406660px;}
.yd3_c00058{bottom:205.656735px;}
.yd2_c00058{bottom:207.415095px;}
.yd1_c00058{bottom:208.583011px;}
.yd0_c00058{bottom:209.491085px;}
.ycf_c00058{bottom:210.331316px;}
.yce_c00058{bottom:221.456398px;}
.ycd_c00058{bottom:222.945902px;}
.ycc_c00058{bottom:225.149934px;}
.ycb_c00058{bottom:226.042208px;}
.yca_c00058{bottom:226.960908px;}
.yc9_c00058{bottom:227.944986px;}
.yc8_c00058{bottom:229.150416px;}
.yc7_c00058{bottom:230.123558px;}
.yc6_c00058{bottom:230.744696px;}
.yc5_c00058{bottom:231.380220px;}
.yc4_c00058{bottom:232.216500px;}
.yc3_c00058{bottom:243.507000px;}
.yc2_c00058{bottom:246.438000px;}
.yc1_c00058{bottom:250.837500px;}
.yc0_c00058{bottom:264.193500px;}
.ybf_c00058{bottom:276.594000px;}
.ybe_c00058{bottom:281.512500px;}
.ybd_c00058{bottom:285.036000px;}
.ybc_c00058{bottom:287.863500px;}
.ybb_c00058{bottom:296.190000px;}
.yba_c00058{bottom:308.910441px;}
.yb9_c00058{bottom:309.234226px;}
.yb8_c00058{bottom:315.562855px;}
.yb7_c00058{bottom:317.584462px;}
.yb6_c00058{bottom:357.331677px;}
.yb5_c00058{bottom:357.774486px;}
.yb4_c00058{bottom:362.860962px;}
.yb3_c00058{bottom:364.080967px;}
.yb2_c00058{bottom:365.091369px;}
.yb1_c00058{bottom:365.488890px;}
.yb0_c00058{bottom:366.001726px;}
.yaf_c00058{bottom:366.505855px;}
.yae_c00058{bottom:366.915844px;}
.yad_c00058{bottom:380.145190px;}
.yac_c00058{bottom:386.553853px;}
.yab_c00058{bottom:387.349663px;}
.yaa_c00058{bottom:388.768317px;}
.ya9_c00058{bottom:389.845393px;}
.ya8_c00058{bottom:390.409593px;}
.ya7_c00058{bottom:403.407390px;}
.ya6_c00058{bottom:405.874896px;}
.ya5_c00058{bottom:406.283868px;}
.ya4_c00058{bottom:407.002018px;}
.ya3_c00058{bottom:408.110505px;}
.ya2_c00058{bottom:408.810564px;}
.ya1_c00058{bottom:409.979032px;}
.ya0_c00058{bottom:410.461345px;}
.y9f_c00058{bottom:410.956159px;}
.y9e_c00058{bottom:411.229681px;}
.y9d_c00058{bottom:411.859516px;}
.y9c_c00058{bottom:413.088957px;}
.y9b_c00058{bottom:425.974335px;}
.y9a_c00058{bottom:429.093924px;}
.y99_c00058{bottom:429.521796px;}
.y98_c00058{bottom:429.867784px;}
.y97_c00058{bottom:431.243823px;}
.y96_c00058{bottom:431.732205px;}
.y95_c00058{bottom:432.936049px;}
.y94_c00058{bottom:434.347497px;}
.y93_c00058{bottom:435.081397px;}
.y92_c00058{bottom:435.805452px;}
.y91_c00058{bottom:448.588180px;}
.y90_c00058{bottom:451.334953px;}
.y8f_c00058{bottom:451.971649px;}
.y8e_c00058{bottom:453.381666px;}
.y8d_c00058{bottom:454.551781px;}
.y8c_c00058{bottom:455.888059px;}
.y8b_c00058{bottom:456.407229px;}
.y8a_c00058{bottom:457.394904px;}
.y89_c00058{bottom:457.912392px;}
.y88_c00058{bottom:472.499781px;}
.y87_c00058{bottom:475.959645px;}
.y86_c00058{bottom:476.508600px;}
.y85_c00058{bottom:477.694252px;}
.y84_c00058{bottom:478.104303px;}
.y83_c00058{bottom:479.366550px;}
.y82_c00058{bottom:480.196530px;}
.y81_c00058{bottom:480.587596px;}
.y80_c00058{bottom:481.403392px;}
.y7f_c00058{bottom:494.406669px;}
.y7e_c00058{bottom:497.086498px;}
.y7d_c00058{bottom:497.543442px;}
.y7c_c00058{bottom:498.500688px;}
.y7b_c00058{bottom:499.613722px;}
.y7a_c00058{bottom:501.237318px;}
.y79_c00058{bottom:502.561722px;}
.y78_c00058{bottom:503.204454px;}
.y77_c00058{bottom:503.814778px;}
.y76_c00058{bottom:517.521993px;}
.y75_c00058{bottom:520.158100px;}
.y74_c00058{bottom:521.237424px;}
.y73_c00058{bottom:521.658199px;}
.y72_c00058{bottom:522.271740px;}
.y71_c00058{bottom:522.768595px;}
.y70_c00058{bottom:523.638447px;}
.y6f_c00058{bottom:524.329305px;}
.y6e_c00058{bottom:525.122664px;}
.y6d_c00058{bottom:526.506490px;}
.y6c_c00058{bottom:527.036215px;}
.y6b_c00058{bottom:538.801224px;}
.y6a_c00058{bottom:544.871241px;}
.y69_c00058{bottom:545.319118px;}
.y68_c00058{bottom:545.754676px;}
.y67_c00058{bottom:547.081404px;}
.y66_c00058{bottom:548.077167px;}
.y65_c00058{bottom:548.458597px;}
.y64_c00058{bottom:548.906227px;}
.y63_c00058{bottom:562.236735px;}
.y62_c00058{bottom:566.133948px;}
.y61_c00058{bottom:567.187378px;}
.y60_c00058{bottom:567.411282px;}
.y5f_c00058{bottom:567.814707px;}
.y5e_c00058{bottom:568.507956px;}
.y5d_c00058{bottom:570.804415px;}
.y5c_c00058{bottom:571.591870px;}
.y5b_c00058{bottom:605.590332px;}
.y5a_c00058{bottom:607.519884px;}
.y59_c00058{bottom:609.217858px;}
.y58_c00058{bottom:609.656638px;}
.y57_c00058{bottom:610.101124px;}
.y56_c00058{bottom:611.397244px;}
.y55_c00058{bottom:611.859508px;}
.y54_c00058{bottom:612.916069px;}
.y53_c00058{bottom:613.771381px;}
.y52_c00058{bottom:614.288019px;}
.y51_c00058{bottom:615.278398px;}
.y50_c00058{bottom:615.867187px;}
.y4f_c00058{bottom:628.250854px;}
.y4e_c00058{bottom:632.540976px;}
.y4d_c00058{bottom:634.177582px;}
.y4c_c00058{bottom:634.678393px;}
.y4b_c00058{bottom:635.831307px;}
.y4a_c00058{bottom:637.709215px;}
.y47_c00058{bottom:638.270974px;}
.y49_c00058{bottom:638.482876px;}
.y48_c00058{bottom:639.087171px;}
.y46_c00058{bottom:650.891160px;}
.y45_c00058{bottom:652.841125px;}
.y44_c00058{bottom:653.678382px;}
.y43_c00058{bottom:654.195708px;}
.y42_c00058{bottom:655.408870px;}
.y41_c00058{bottom:655.928472px;}
.y40_c00058{bottom:657.626190px;}
.y3f_c00058{bottom:658.271247px;}
.y3e_c00058{bottom:659.760669px;}
.y3d_c00058{bottom:660.689935px;}
.y3c_c00058{bottom:674.291391px;}
.y3b_c00058{bottom:677.024356px;}
.y3a_c00058{bottom:678.099456px;}
.y39_c00058{bottom:679.107198px;}
.y38_c00058{bottom:679.613205px;}
.y37_c00058{bottom:680.532957px;}
.y36_c00058{bottom:680.831233px;}
.y35_c00058{bottom:682.134729px;}
.y34_c00058{bottom:682.687972px;}
.y33_c00058{bottom:683.371131px;}
.y32_c00058{bottom:696.991213px;}
.y31_c00058{bottom:700.948740px;}
.y30_c00058{bottom:701.451384px;}
.y2f_c00058{bottom:702.244099px;}
.y2e_c00058{bottom:703.070526px;}
.y2d_c00058{bottom:703.957728px;}
.y2c_c00058{bottom:704.584347px;}
.y2b_c00058{bottom:705.145210px;}
.y2a_c00058{bottom:706.592269px;}
.y29_c00058{bottom:722.352898px;}
.y28_c00058{bottom:723.998091px;}
.y27_c00058{bottom:725.424891px;}
.y26_c00058{bottom:725.807170px;}
.y25_c00058{bottom:726.196147px;}
.y24_c00058{bottom:727.203813px;}
.y23_c00058{bottom:727.747618px;}
.y22_c00058{bottom:728.187078px;}
.y21_c00058{bottom:728.460754px;}
.y20_c00058{bottom:742.803202px;}
.y1f_c00058{bottom:747.024093px;}
.y1e_c00058{bottom:748.443333px;}
.y1d_c00058{bottom:767.325556px;}
.y1c_c00058{bottom:768.575641px;}
.y1b_c00058{bottom:770.486809px;}
.y1a_c00058{bottom:770.859826px;}
.y19_c00058{bottom:771.002424px;}
.y18_c00058{bottom:771.420054px;}
.y17_c00058{bottom:771.876472px;}
.y16_c00058{bottom:773.010687px;}
.y15_c00058{bottom:791.096238px;}
.y14_c00058{bottom:794.057443px;}
.y13_c00058{bottom:794.271168px;}
.y12_c00058{bottom:794.951479px;}
.y11_c00058{bottom:795.320089px;}
.y10_c00058{bottom:795.732573px;}
.yf_c00058{bottom:796.231500px;}
.ye_c00058{bottom:809.880204px;}
.yd_c00058{bottom:818.631549px;}
.yc_c00058{bottom:833.901780px;}
.yb_c00058{bottom:835.106880px;}
.ya_c00058{bottom:837.516378px;}
.y9_c00058{bottom:839.196420px;}
.y8_c00058{bottom:844.840500px;}
.y7_c00058{bottom:862.513500px;}
.y6_c00058{bottom:874.636950px;}
.y5_c00058{bottom:878.577563px;}
.y4_c00058{bottom:881.533125px;}
.y3_c00058{bottom:885.478950px;}
.y2_c00058{bottom:887.332275px;}
.y1_c00058{bottom:889.164000px;}
.h1e_c00058{height:32.550000px;}
.h15_c00058{height:36.750000px;}
.h13_c00058{height:37.800000px;}
.h19_c00058{height:49.369341px;}
.h1b_c00058{height:53.575725px;}
.h1a_c00058{height:55.676733px;}
.hc_c00058{height:58.803557px;}
.h3_c00058{height:59.850000px;}
.he_c00058{height:59.853621px;}
.h11_c00058{height:60.903684px;}
.hb_c00058{height:64.053875px;}
.hf_c00058{height:66.154002px;}
.h10_c00058{height:67.204065px;}
.h6_c00058{height:69.304193px;}
.h17_c00058{height:69.318327px;}
.hd_c00058{height:70.354256px;}
.ha_c00058{height:71.404320px;}
.h1c_c00058{height:73.535308px;}
.h8_c00058{height:74.554510px;}
.h9_c00058{height:75.604574px;}
.h18_c00058{height:76.670271px;}
.h7_c00058{height:77.704701px;}
.h12_c00058{height:91.355527px;}
.h2_c00058{height:92.428870px;}
.h16_c00058{height:105.000000px;}
.h1d_c00058{height:111.353467px;}
.h5_c00058{height:113.438323px;}
.h4_c00058{height:128.143290px;}
.h14_c00058{height:136.500000px;}
.h1_c00058{height:1005.000000px;}
.h0_c00058{height:1005.150000px;}
.w0_c00058{width:732.750000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:51.598500px;}
.x96_c00058{left:71.505000px;}
.x9b_c00058{left:75.578859px;}
.x97_c00058{left:77.172000px;}
.xa1_c00058{left:92.469236px;}
.x8d_c00058{left:95.127000px;}
.x9c_c00058{left:105.634509px;}
.x8e_c00058{left:118.270500px;}
.x86_c00058{left:120.214500px;}
.x8b_c00058{left:122.263991px;}
.x2_c00058{left:124.867500px;}
.x2d_c00058{left:127.179473px;}
.x5c_c00058{left:128.782286px;}
.x62_c00058{left:130.161957px;}
.x56_c00058{left:131.771052px;}
.x4a_c00058{left:133.656333px;}
.x1c_c00058{left:136.438019px;}
.x34_c00058{left:138.221846px;}
.x25_c00058{left:139.332845px;}
.xf_c00058{left:141.343500px;}
.x7c_c00058{left:149.267549px;}
.x79_c00058{left:154.066833px;}
.x52_c00058{left:155.247510px;}
.x1d_c00058{left:157.499057px;}
.x5d_c00058{left:159.308766px;}
.x98_c00058{left:161.488500px;}
.x2e_c00058{left:163.099805px;}
.x4b_c00058{left:173.057439px;}
.x7d_c00058{left:174.504057px;}
.x35_c00058{left:182.468478px;}
.x87_c00058{left:184.206000px;}
.x8_c00058{left:186.682500px;}
.x70_c00058{left:188.120079px;}
.x1e_c00058{left:191.312814px;}
.x63_c00058{left:193.643864px;}
.x3d_c00058{left:195.996078px;}
.x6d_c00058{left:197.643069px;}
.x3_c00058{left:199.000500px;}
.x7e_c00058{left:200.123016px;}
.x7a_c00058{left:203.022410px;}
.x68_c00058{left:206.274741px;}
.x41_c00058{left:207.621383px;}
.x26_c00058{left:211.694684px;}
.x9d_c00058{left:215.025435px;}
.x71_c00058{left:218.101779px;}
.x53_c00058{left:220.848800px;}
.x10_c00058{left:224.199000px;}
.x57_c00058{left:227.448081px;}
.x8f_c00058{left:228.720000px;}
.x42_c00058{left:231.131045px;}
.x1f_c00058{left:233.112390px;}
.x13_c00058{left:236.089590px;}
.x64_c00058{left:237.320019px;}
.x27_c00058{left:239.770412px;}
.x81_c00058{left:243.003819px;}
.x82_c00058{left:251.760000px;}
.x36_c00058{left:253.362674px;}
.x72_c00058{left:254.673753px;}
.xd_c00058{left:258.663654px;}
.x2f_c00058{left:260.840208px;}
.x6e_c00058{left:264.858177px;}
.x58_c00058{left:267.113154px;}
.x43_c00058{left:270.018342px;}
.x28_c00058{left:271.096310px;}
.x14_c00058{left:274.172678px;}
.x30_c00058{left:276.500322px;}
.x3e_c00058{left:277.658804px;}
.x9e_c00058{left:281.488712px;}
.x37_c00058{left:284.046291px;}
.x85_c00058{left:285.606000px;}
.x4c_c00058{left:287.860571px;}
.x1a_c00058{left:293.533307px;}
.x90_c00058{left:296.082000px;}
.x69_c00058{left:298.988051px;}
.x59_c00058{left:301.687739px;}
.x65_c00058{left:303.791178px;}
.x54_c00058{left:304.820076px;}
.x88_c00058{left:305.932500px;}
.x15_c00058{left:309.002298px;}
.x20_c00058{left:310.671191px;}
.x29_c00058{left:315.473921px;}
.x99_c00058{left:316.960500px;}
.x44_c00058{left:318.063534px;}
.x11_c00058{left:319.555500px;}
.x16_c00058{left:320.874666px;}
.x4d_c00058{left:322.516139px;}
.x31_c00058{left:324.928065px;}
.x55_c00058{left:326.170233px;}
.x3f_c00058{left:327.780687px;}
.x7f_c00058{left:331.558014px;}
.x73_c00058{left:333.281607px;}
.x12_c00058{left:338.985000px;}
.x21_c00058{left:340.577531px;}
.x4e_c00058{left:342.689142px;}
.x5a_c00058{left:345.169932px;}
.x40_c00058{left:349.578816px;}
.x17_c00058{left:351.921320px;}
.x4f_c00058{left:353.906537px;}
.x4_c00058{left:356.833500px;}
.x91_c00058{left:358.149000px;}
.x8c_c00058{left:359.238089px;}
.x38_c00058{left:364.875398px;}
.x74_c00058{left:366.646944px;}
.x22_c00058{left:370.011387px;}
.x1b_c00058{left:372.367235px;}
.x9a_c00058{left:380.548500px;}
.x66_c00058{left:387.756786px;}
.x39_c00058{left:389.609175px;}
.x83_c00058{left:392.692500px;}
.x5e_c00058{left:394.491485px;}
.x2a_c00058{left:396.387902px;}
.x45_c00058{left:397.997865px;}
.x5b_c00058{left:400.700438px;}
.x9_c00058{left:403.762500px;}
.x50_c00058{left:406.576823px;}
.x6f_c00058{left:410.957106px;}
.x67_c00058{left:416.659245px;}
.x46_c00058{left:418.221423px;}
.x75_c00058{left:419.412636px;}
.x2b_c00058{left:421.489410px;}
.x6a_c00058{left:427.987280px;}
.xa2_c00058{left:432.360300px;}
.x47_c00058{left:438.199014px;}
.x5f_c00058{left:442.372749px;}
.x3a_c00058{left:447.390323px;}
.x76_c00058{left:453.604374px;}
.x6b_c00058{left:459.820128px;}
.x32_c00058{left:461.129570px;}
.x60_c00058{left:465.228989px;}
.xa_c00058{left:468.379500px;}
.x3b_c00058{left:472.053617px;}
.x77_c00058{left:473.054229px;}
.x5_c00058{left:475.056000px;}
.x23_c00058{left:479.808978px;}
.xa3_c00058{left:503.113671px;}
.x92_c00058{left:505.693500px;}
.xa7_c00058{left:508.140000px;}
.x18_c00058{left:511.207571px;}
.x48_c00058{left:515.369175px;}
.xa8_c00058{left:517.050000px;}
.x9f_c00058{left:519.277040px;}
.x89_c00058{left:523.284000px;}
.x93_c00058{left:525.852000px;}
.x94_c00058{left:544.234500px;}
.xa0_c00058{left:545.976678px;}
.xa4_c00058{left:550.534601px;}
.xb_c00058{left:561.052500px;}
.xa9_c00058{left:569.970000px;}
.xa5_c00058{left:574.156542px;}
.xa6_c00058{left:582.637293px;}
.x95_c00058{left:584.217000px;}
.x80_c00058{left:585.848835px;}
.x8a_c00058{left:588.045000px;}
.x84_c00058{left:589.413000px;}
.x78_c00058{left:590.587310px;}
.xaa_c00058{left:591.840000px;}
.x7b_c00058{left:594.986489px;}
.x6c_c00058{left:597.149532px;}
.x61_c00058{left:599.200223px;}
.x51_c00058{left:601.440534px;}
.x49_c00058{left:603.090566px;}
.x33_c00058{left:604.977414px;}
.x24_c00058{left:606.323690px;}
.xc_c00058{left:607.402500px;}
.xe_c00058{left:608.705241px;}
.x19_c00058{left:615.441432px;}
.x2c_c00058{left:619.381325px;}
.x3c_c00058{left:620.484614px;}
.x7_c00058{left:624.780000px;}
.x6_c00058{left:632.680500px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.fs1c_c00058{font-size:28.933333pt;}
.fs13_c00058{font-size:32.666667pt;}
.fs11_c00058{font-size:33.600000pt;}
.fs17_c00058{font-size:43.883859pt;}
.fs19_c00058{font-size:47.622866pt;}
.fs18_c00058{font-size:49.490430pt;}
.fsa_c00058{font-size:52.269829pt;}
.fs1_c00058{font-size:53.200000pt;}
.fsc_c00058{font-size:53.203219pt;}
.fsf_c00058{font-size:54.136608pt;}
.fs9_c00058{font-size:56.936778pt;}
.fsd_c00058{font-size:58.803557pt;}
.fse_c00058{font-size:59.736947pt;}
.fs4_c00058{font-size:61.603727pt;}
.fs15_c00058{font-size:61.616291pt;}
.fsb_c00058{font-size:62.537116pt;}
.fs8_c00058{font-size:63.470506pt;}
.fs1a_c00058{font-size:65.364718pt;}
.fs6_c00058{font-size:66.270676pt;}
.fs7_c00058{font-size:67.204065pt;}
.fs16_c00058{font-size:68.151352pt;}
.fs5_c00058{font-size:69.070845pt;}
.fs10_c00058{font-size:81.204912pt;}
.fs0_c00058{font-size:82.158996pt;}
.fs14_c00058{font-size:93.333333pt;}
.fs1b_c00058{font-size:98.980859pt;}
.fs3_c00058{font-size:100.834065pt;}
.fs2_c00058{font-size:113.905147pt;}
.fs12_c00058{font-size:121.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y108_c00058{bottom:59.034667pt;}
.y107_c00058{bottom:78.202469pt;}
.y106_c00058{bottom:93.899007pt;}
.y105_c00058{bottom:94.508549pt;}
.y104_c00058{bottom:95.731179pt;}
.y103_c00058{bottom:97.555373pt;}
.y102_c00058{bottom:100.130220pt;}
.y101_c00058{bottom:102.131060pt;}
.y100_c00058{bottom:103.400033pt;}
.yff_c00058{bottom:105.648776pt;}
.yfe_c00058{bottom:106.316680pt;}
.yfd_c00058{bottom:115.100461pt;}
.yfc_c00058{bottom:115.717404pt;}
.yfb_c00058{bottom:119.174089pt;}
.yfa_c00058{bottom:121.212779pt;}
.yf9_c00058{bottom:121.887089pt;}
.yf8_c00058{bottom:122.749261pt;}
.yf7_c00058{bottom:123.442429pt;}
.yf6_c00058{bottom:124.145011pt;}
.yf5_c00058{bottom:125.277789pt;}
.yf4_c00058{bottom:125.972528pt;}
.yf3_c00058{bottom:127.815592pt;}
.yf2_c00058{bottom:133.416135pt;}
.yf1_c00058{bottom:134.730783pt;}
.yf0_c00058{bottom:135.168337pt;}
.yef_c00058{bottom:136.764631pt;}
.yee_c00058{bottom:137.365617pt;}
.yed_c00058{bottom:138.803852pt;}
.yec_c00058{bottom:139.452455pt;}
.yeb_c00058{bottom:140.325291pt;}
.yea_c00058{bottom:141.775843pt;}
.ye9_c00058{bottom:141.932000pt;}
.ye8_c00058{bottom:144.077760pt;}
.ye7_c00058{bottom:145.072880pt;}
.ye6_c00058{bottom:145.530400pt;}
.ye5_c00058{bottom:146.032123pt;}
.ye4_c00058{bottom:147.195168pt;}
.ye3_c00058{bottom:147.481776pt;}
.ye2_c00058{bottom:148.784859pt;}
.ye1_c00058{bottom:149.704341pt;}
.ye0_c00058{bottom:150.314853pt;}
.ydf_c00058{bottom:151.249120pt;}
.yde_c00058{bottom:152.038048pt;}
.ydd_c00058{bottom:152.925685pt;}
.ydc_c00058{bottom:154.325723pt;}
.ydb_c00058{bottom:155.096133pt;}
.yda_c00058{bottom:155.674651pt;}
.yd9_c00058{bottom:156.250667pt;}
.yd8_c00058{bottom:176.352813pt;}
.yd7_c00058{bottom:176.638140pt;}
.yd6_c00058{bottom:179.321811pt;}
.yd5_c00058{bottom:180.832773pt;}
.yd4_c00058{bottom:181.694809pt;}
.yd3_c00058{bottom:182.805987pt;}
.yd2_c00058{bottom:184.368973pt;}
.yd1_c00058{bottom:185.407121pt;}
.yd0_c00058{bottom:186.214297pt;}
.ycf_c00058{bottom:186.961169pt;}
.yce_c00058{bottom:196.850132pt;}
.ycd_c00058{bottom:198.174135pt;}
.ycc_c00058{bottom:200.133275pt;}
.ycb_c00058{bottom:200.926407pt;}
.yca_c00058{bottom:201.743029pt;}
.yc9_c00058{bottom:202.617765pt;}
.yc8_c00058{bottom:203.689259pt;}
.yc7_c00058{bottom:204.554273pt;}
.yc6_c00058{bottom:205.106396pt;}
.yc5_c00058{bottom:205.671307pt;}
.yc4_c00058{bottom:206.414667pt;}
.yc3_c00058{bottom:216.450667pt;}
.yc2_c00058{bottom:219.056000pt;}
.yc1_c00058{bottom:222.966667pt;}
.yc0_c00058{bottom:234.838667pt;}
.ybf_c00058{bottom:245.861333pt;}
.ybe_c00058{bottom:250.233333pt;}
.ybd_c00058{bottom:253.365333pt;}
.ybc_c00058{bottom:255.878667pt;}
.ybb_c00058{bottom:263.280000pt;}
.yba_c00058{bottom:274.587059pt;}
.yb9_c00058{bottom:274.874868pt;}
.yb8_c00058{bottom:280.500316pt;}
.yb7_c00058{bottom:282.297300pt;}
.yb6_c00058{bottom:317.628157pt;}
.yb5_c00058{bottom:318.021765pt;}
.yb4_c00058{bottom:322.543077pt;}
.yb3_c00058{bottom:323.627527pt;}
.yb2_c00058{bottom:324.525661pt;}
.yb1_c00058{bottom:324.879013pt;}
.yb0_c00058{bottom:325.334868pt;}
.yaf_c00058{bottom:325.782983pt;}
.yae_c00058{bottom:326.147417pt;}
.yad_c00058{bottom:337.906836pt;}
.yac_c00058{bottom:343.603425pt;}
.yab_c00058{bottom:344.310812pt;}
.yaa_c00058{bottom:345.571837pt;}
.ya9_c00058{bottom:346.529239pt;}
.ya8_c00058{bottom:347.030749pt;}
.ya7_c00058{bottom:358.584347pt;}
.ya6_c00058{bottom:360.777685pt;}
.ya5_c00058{bottom:361.141216pt;}
.ya4_c00058{bottom:361.779572pt;}
.ya3_c00058{bottom:362.764893pt;}
.ya2_c00058{bottom:363.387168pt;}
.ya1_c00058{bottom:364.425807pt;}
.ya0_c00058{bottom:364.854529pt;}
.y9f_c00058{bottom:365.294364pt;}
.y9e_c00058{bottom:365.537495pt;}
.y9d_c00058{bottom:366.097348pt;}
.y9c_c00058{bottom:367.190184pt;}
.y9b_c00058{bottom:378.643853pt;}
.y9a_c00058{bottom:381.416821pt;}
.y99_c00058{bottom:381.797152pt;}
.y98_c00058{bottom:382.104697pt;}
.y97_c00058{bottom:383.327843pt;}
.y96_c00058{bottom:383.761960pt;}
.y95_c00058{bottom:384.832044pt;}
.y94_c00058{bottom:386.086664pt;}
.y93_c00058{bottom:386.739020pt;}
.y92_c00058{bottom:387.382624pt;}
.y91_c00058{bottom:398.745049pt;}
.y90_c00058{bottom:401.186625pt;}
.y8f_c00058{bottom:401.752577pt;}
.y8e_c00058{bottom:403.005925pt;}
.y8d_c00058{bottom:404.046028pt;}
.y8c_c00058{bottom:405.233831pt;}
.y8b_c00058{bottom:405.695315pt;}
.y8a_c00058{bottom:406.573248pt;}
.y89_c00058{bottom:407.033237pt;}
.y88_c00058{bottom:419.999805pt;}
.y87_c00058{bottom:423.075240pt;}
.y86_c00058{bottom:423.563200pt;}
.y85_c00058{bottom:424.617113pt;}
.y84_c00058{bottom:424.981603pt;}
.y83_c00058{bottom:426.103600pt;}
.y82_c00058{bottom:426.841360pt;}
.y81_c00058{bottom:427.188975pt;}
.y80_c00058{bottom:427.914127pt;}
.y7f_c00058{bottom:439.472595pt;}
.y7e_c00058{bottom:441.854665pt;}
.y7d_c00058{bottom:442.260837pt;}
.y7c_c00058{bottom:443.111723pt;}
.y7b_c00058{bottom:444.101087pt;}
.y7a_c00058{bottom:445.544283pt;}
.y79_c00058{bottom:446.721531pt;}
.y78_c00058{bottom:447.292848pt;}
.y77_c00058{bottom:447.835359pt;}
.y76_c00058{bottom:460.019549pt;}
.y75_c00058{bottom:462.362756pt;}
.y74_c00058{bottom:463.322155pt;}
.y73_c00058{bottom:463.696177pt;}
.y72_c00058{bottom:464.241547pt;}
.y71_c00058{bottom:464.683196pt;}
.y70_c00058{bottom:465.456397pt;}
.y6f_c00058{bottom:466.070493pt;}
.y6e_c00058{bottom:466.775701pt;}
.y6d_c00058{bottom:468.005769pt;}
.y6c_c00058{bottom:468.476636pt;}
.y6b_c00058{bottom:478.934421pt;}
.y6a_c00058{bottom:484.329992pt;}
.y69_c00058{bottom:484.728105pt;}
.y68_c00058{bottom:485.115268pt;}
.y67_c00058{bottom:486.294581pt;}
.y66_c00058{bottom:487.179704pt;}
.y65_c00058{bottom:487.518753pt;}
.y64_c00058{bottom:487.916647pt;}
.y63_c00058{bottom:499.765987pt;}
.y62_c00058{bottom:503.230176pt;}
.y61_c00058{bottom:504.166559pt;}
.y60_c00058{bottom:504.365584pt;}
.y5f_c00058{bottom:504.724184pt;}
.y5e_c00058{bottom:505.340405pt;}
.y5d_c00058{bottom:507.381703pt;}
.y5c_c00058{bottom:508.081663pt;}
.y5b_c00058{bottom:538.302517pt;}
.y5a_c00058{bottom:540.017675pt;}
.y59_c00058{bottom:541.526985pt;}
.y58_c00058{bottom:541.917012pt;}
.y57_c00058{bottom:542.312111pt;}
.y56_c00058{bottom:543.464217pt;}
.y55_c00058{bottom:543.875119pt;}
.y54_c00058{bottom:544.814284pt;}
.y53_c00058{bottom:545.574561pt;}
.y52_c00058{bottom:546.033795pt;}
.y51_c00058{bottom:546.914132pt;}
.y50_c00058{bottom:547.437500pt;}
.y4f_c00058{bottom:558.445204pt;}
.y4e_c00058{bottom:562.258645pt;}
.y4d_c00058{bottom:563.713407pt;}
.y4c_c00058{bottom:564.158572pt;}
.y4b_c00058{bottom:565.183384pt;}
.y4a_c00058{bottom:566.852636pt;}
.y47_c00058{bottom:567.351977pt;}
.y49_c00058{bottom:567.540335pt;}
.y48_c00058{bottom:568.077485pt;}
.y46_c00058{bottom:578.569920pt;}
.y45_c00058{bottom:580.303223pt;}
.y44_c00058{bottom:581.047451pt;}
.y43_c00058{bottom:581.507296pt;}
.y42_c00058{bottom:582.585663pt;}
.y41_c00058{bottom:583.047531pt;}
.y40_c00058{bottom:584.556613pt;}
.y3f_c00058{bottom:585.129997pt;}
.y3e_c00058{bottom:586.453928pt;}
.y3d_c00058{bottom:587.279943pt;}
.y3c_c00058{bottom:599.370125pt;}
.y3b_c00058{bottom:601.799428pt;}
.y3a_c00058{bottom:602.755072pt;}
.y39_c00058{bottom:603.650843pt;}
.y38_c00058{bottom:604.100627pt;}
.y37_c00058{bottom:604.918184pt;}
.y36_c00058{bottom:605.183319pt;}
.y35_c00058{bottom:606.341981pt;}
.y34_c00058{bottom:606.833753pt;}
.y33_c00058{bottom:607.441005pt;}
.y32_c00058{bottom:619.547745pt;}
.y31_c00058{bottom:623.065547pt;}
.y30_c00058{bottom:623.512341pt;}
.y2f_c00058{bottom:624.216977pt;}
.y2e_c00058{bottom:624.951579pt;}
.y2d_c00058{bottom:625.740203pt;}
.y2c_c00058{bottom:626.297197pt;}
.y2b_c00058{bottom:626.795743pt;}
.y2a_c00058{bottom:628.082017pt;}
.y29_c00058{bottom:642.091465pt;}
.y28_c00058{bottom:643.553859pt;}
.y27_c00058{bottom:644.822125pt;}
.y26_c00058{bottom:645.161929pt;}
.y25_c00058{bottom:645.507687pt;}
.y24_c00058{bottom:646.403389pt;}
.y23_c00058{bottom:646.886772pt;}
.y22_c00058{bottom:647.277403pt;}
.y21_c00058{bottom:647.520671pt;}
.y20_c00058{bottom:660.269513pt;}
.y1f_c00058{bottom:664.021416pt;}
.y1e_c00058{bottom:665.282963pt;}
.y1d_c00058{bottom:682.067161pt;}
.y1c_c00058{bottom:683.178348pt;}
.y1b_c00058{bottom:684.877164pt;}
.y1a_c00058{bottom:685.208735pt;}
.y19_c00058{bottom:685.335488pt;}
.y18_c00058{bottom:685.706715pt;}
.y17_c00058{bottom:686.112420pt;}
.y16_c00058{bottom:687.120611pt;}
.y15_c00058{bottom:703.196656pt;}
.y14_c00058{bottom:705.828839pt;}
.y13_c00058{bottom:706.018816pt;}
.y12_c00058{bottom:706.623537pt;}
.y11_c00058{bottom:706.951191pt;}
.y10_c00058{bottom:707.317843pt;}
.yf_c00058{bottom:707.761333pt;}
.ye_c00058{bottom:719.893515pt;}
.yd_c00058{bottom:727.672488pt;}
.yc_c00058{bottom:741.246027pt;}
.yb_c00058{bottom:742.317227pt;}
.ya_c00058{bottom:744.459003pt;}
.y9_c00058{bottom:745.952373pt;}
.y8_c00058{bottom:750.969333pt;}
.y7_c00058{bottom:766.678667pt;}
.y6_c00058{bottom:777.455067pt;}
.y5_c00058{bottom:780.957833pt;}
.y4_c00058{bottom:783.585000pt;}
.y3_c00058{bottom:787.092400pt;}
.y2_c00058{bottom:788.739800pt;}
.y1_c00058{bottom:790.368000pt;}
.h1e_c00058{height:28.933333pt;}
.h15_c00058{height:32.666667pt;}
.h13_c00058{height:33.600000pt;}
.h19_c00058{height:43.883859pt;}
.h1b_c00058{height:47.622866pt;}
.h1a_c00058{height:49.490430pt;}
.hc_c00058{height:52.269829pt;}
.h3_c00058{height:53.200000pt;}
.he_c00058{height:53.203219pt;}
.h11_c00058{height:54.136608pt;}
.hb_c00058{height:56.936778pt;}
.hf_c00058{height:58.803557pt;}
.h10_c00058{height:59.736947pt;}
.h6_c00058{height:61.603727pt;}
.h17_c00058{height:61.616291pt;}
.hd_c00058{height:62.537116pt;}
.ha_c00058{height:63.470506pt;}
.h1c_c00058{height:65.364718pt;}
.h8_c00058{height:66.270676pt;}
.h9_c00058{height:67.204065pt;}
.h18_c00058{height:68.151352pt;}
.h7_c00058{height:69.070845pt;}
.h12_c00058{height:81.204912pt;}
.h2_c00058{height:82.158996pt;}
.h16_c00058{height:93.333333pt;}
.h1d_c00058{height:98.980859pt;}
.h5_c00058{height:100.834065pt;}
.h4_c00058{height:113.905147pt;}
.h14_c00058{height:121.333333pt;}
.h1_c00058{height:893.333333pt;}
.h0_c00058{height:893.466667pt;}
.w0_c00058{width:651.333333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:45.865333pt;}
.x96_c00058{left:63.560000pt;}
.x9b_c00058{left:67.181208pt;}
.x97_c00058{left:68.597333pt;}
.xa1_c00058{left:82.194876pt;}
.x8d_c00058{left:84.557333pt;}
.x9c_c00058{left:93.897341pt;}
.x8e_c00058{left:105.129333pt;}
.x86_c00058{left:106.857333pt;}
.x8b_c00058{left:108.679103pt;}
.x2_c00058{left:110.993333pt;}
.x2d_c00058{left:113.048420pt;}
.x5c_c00058{left:114.473143pt;}
.x62_c00058{left:115.699517pt;}
.x56_c00058{left:117.129824pt;}
.x4a_c00058{left:118.805629pt;}
.x1c_c00058{left:121.278239pt;}
.x34_c00058{left:122.863863pt;}
.x25_c00058{left:123.851417pt;}
.xf_c00058{left:125.638667pt;}
.x7c_c00058{left:132.682265pt;}
.x79_c00058{left:136.948296pt;}
.x52_c00058{left:137.997787pt;}
.x1d_c00058{left:139.999161pt;}
.x5d_c00058{left:141.607792pt;}
.x98_c00058{left:143.545333pt;}
.x2e_c00058{left:144.977604pt;}
.x4b_c00058{left:153.828835pt;}
.x7d_c00058{left:155.114717pt;}
.x35_c00058{left:162.194203pt;}
.x87_c00058{left:163.738667pt;}
.x8_c00058{left:165.940000pt;}
.x70_c00058{left:167.217848pt;}
.x1e_c00058{left:170.055835pt;}
.x63_c00058{left:172.127879pt;}
.x3d_c00058{left:174.218736pt;}
.x6d_c00058{left:175.682728pt;}
.x3_c00058{left:176.889333pt;}
.x7e_c00058{left:177.887125pt;}
.x7a_c00058{left:180.464364pt;}
.x68_c00058{left:183.355325pt;}
.x41_c00058{left:184.552340pt;}
.x26_c00058{left:188.173052pt;}
.x9d_c00058{left:191.133720pt;}
.x71_c00058{left:193.868248pt;}
.x53_c00058{left:196.310044pt;}
.x10_c00058{left:199.288000pt;}
.x57_c00058{left:202.176072pt;}
.x8f_c00058{left:203.306667pt;}
.x42_c00058{left:205.449817pt;}
.x1f_c00058{left:207.211013pt;}
.x13_c00058{left:209.857413pt;}
.x64_c00058{left:210.951128pt;}
.x27_c00058{left:213.129255pt;}
.x81_c00058{left:216.003395pt;}
.x82_c00058{left:223.786667pt;}
.x36_c00058{left:225.211265pt;}
.x72_c00058{left:226.376669pt;}
.xd_c00058{left:229.923248pt;}
.x2f_c00058{left:231.857963pt;}
.x6e_c00058{left:235.429491pt;}
.x58_c00058{left:237.433915pt;}
.x43_c00058{left:240.016304pt;}
.x28_c00058{left:240.974497pt;}
.x14_c00058{left:243.709047pt;}
.x30_c00058{left:245.778064pt;}
.x3e_c00058{left:246.807825pt;}
.x9e_c00058{left:250.212188pt;}
.x37_c00058{left:252.485592pt;}
.x85_c00058{left:253.872000pt;}
.x4c_c00058{left:255.876063pt;}
.x1a_c00058{left:260.918495pt;}
.x90_c00058{left:263.184000pt;}
.x69_c00058{left:265.767156pt;}
.x59_c00058{left:268.166879pt;}
.x65_c00058{left:270.036603pt;}
.x54_c00058{left:270.951179pt;}
.x88_c00058{left:271.940000pt;}
.x15_c00058{left:274.668709pt;}
.x20_c00058{left:276.152169pt;}
.x29_c00058{left:280.421263pt;}
.x99_c00058{left:281.742667pt;}
.x44_c00058{left:282.723141pt;}
.x11_c00058{left:284.049333pt;}
.x16_c00058{left:285.221925pt;}
.x4d_c00058{left:286.681012pt;}
.x31_c00058{left:288.824947pt;}
.x55_c00058{left:289.929096pt;}
.x3f_c00058{left:291.360611pt;}
.x7f_c00058{left:294.718235pt;}
.x73_c00058{left:296.250317pt;}
.x12_c00058{left:301.320000pt;}
.x21_c00058{left:302.735583pt;}
.x4e_c00058{left:304.612571pt;}
.x5a_c00058{left:306.817717pt;}
.x40_c00058{left:310.736725pt;}
.x17_c00058{left:312.818951pt;}
.x4f_c00058{left:314.583588pt;}
.x4_c00058{left:317.185333pt;}
.x91_c00058{left:318.354667pt;}
.x8c_c00058{left:319.322745pt;}
.x38_c00058{left:324.333687pt;}
.x74_c00058{left:325.908395pt;}
.x22_c00058{left:328.899011pt;}
.x1b_c00058{left:330.993097pt;}
.x9a_c00058{left:338.265333pt;}
.x66_c00058{left:344.672699pt;}
.x39_c00058{left:346.319267pt;}
.x83_c00058{left:349.060000pt;}
.x5e_c00058{left:350.659097pt;}
.x2a_c00058{left:352.344801pt;}
.x45_c00058{left:353.775880pt;}
.x5b_c00058{left:356.178167pt;}
.x9_c00058{left:358.900000pt;}
.x50_c00058{left:361.401620pt;}
.x6f_c00058{left:365.295205pt;}
.x67_c00058{left:370.363773pt;}
.x46_c00058{left:371.752376pt;}
.x75_c00058{left:372.811232pt;}
.x2b_c00058{left:374.657253pt;}
.x6a_c00058{left:380.433137pt;}
.xa2_c00058{left:384.320267pt;}
.x47_c00058{left:389.510235pt;}
.x5f_c00058{left:393.220221pt;}
.x3a_c00058{left:397.680287pt;}
.x76_c00058{left:403.203888pt;}
.x6b_c00058{left:408.729003pt;}
.x32_c00058{left:409.892951pt;}
.x60_c00058{left:413.536879pt;}
.xa_c00058{left:416.337333pt;}
.x3b_c00058{left:419.603215pt;}
.x77_c00058{left:420.492648pt;}
.x5_c00058{left:422.272000pt;}
.x23_c00058{left:426.496869pt;}
.xa3_c00058{left:447.212152pt;}
.x92_c00058{left:449.505333pt;}
.xa7_c00058{left:451.680000pt;}
.x18_c00058{left:454.406729pt;}
.x48_c00058{left:458.105933pt;}
.xa8_c00058{left:459.600000pt;}
.x9f_c00058{left:461.579591pt;}
.x89_c00058{left:465.141333pt;}
.x93_c00058{left:467.424000pt;}
.x94_c00058{left:483.764000pt;}
.xa0_c00058{left:485.312603pt;}
.xa4_c00058{left:489.364089pt;}
.xb_c00058{left:498.713333pt;}
.xa9_c00058{left:506.640000pt;}
.xa5_c00058{left:510.361371pt;}
.xa6_c00058{left:517.899816pt;}
.x95_c00058{left:519.304000pt;}
.x80_c00058{left:520.754520pt;}
.x8a_c00058{left:522.706667pt;}
.x84_c00058{left:523.922667pt;}
.x78_c00058{left:524.966497pt;}
.xaa_c00058{left:526.080000pt;}
.x7b_c00058{left:528.876879pt;}
.x6c_c00058{left:530.799584pt;}
.x61_c00058{left:532.622420pt;}
.x51_c00058{left:534.613808pt;}
.x49_c00058{left:536.080503pt;}
.x33_c00058{left:537.757701pt;}
.x24_c00058{left:538.954391pt;}
.xc_c00058{left:539.913333pt;}
.xe_c00058{left:541.071325pt;}
.x19_c00058{left:547.059051pt;}
.x2c_c00058{left:550.561177pt;}
.x3c_c00058{left:551.541879pt;}
.x7_c00058{left:555.360000pt;}
.x6_c00058{left:562.382667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma1_c00059{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);}
.mf7_c00059{transform:matrix(0.010839,0.000152,-0.003500,0.249976,0,0);-ms-transform:matrix(0.010839,0.000152,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.010839,0.000152,-0.003500,0.249976,0,0);}
.m102_c00059{transform:matrix(0.024723,0.000346,-0.003500,0.249976,0,0);-ms-transform:matrix(0.024723,0.000346,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.024723,0.000346,-0.003500,0.249976,0,0);}
.m10d_c00059{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m10e_c00059{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);}
.m61_c00059{transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);}
.m10f_c00059{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);}
.m10c_c00059{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);}
.mf1_c00059{transform:matrix(0.112899,0.001581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.112899,0.001581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.112899,0.001581,-0.003500,0.249976,0,0);}
.mc0_c00059{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);}
.mdb_c00059{transform:matrix(0.140635,0.001688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.140635,0.001688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.140635,0.001688,-0.003000,0.249982,0,0);}
.me1_c00059{transform:matrix(0.142035,0.001704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142035,0.001704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142035,0.001704,-0.003000,0.249982,0,0);}
.m8b_c00059{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{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);}
.mdd_c00059{transform:matrix(0.144520,0.001734,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144520,0.001734,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144520,0.001734,-0.003000,0.249982,0,0);}
.m54_c00059{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);}
.ma7_c00059{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);}
.m2c_c00059{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);}
.m8f_c00059{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);}
.m90_c00059{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m111_c00059{transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);}
.mc9_c00059{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);}
.mb1_c00059{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);}
.mc3_c00059{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);}
.m4f_c00059{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_c00059{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);}
.ma5_c00059{transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{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);}
.maa_c00059{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);}
.m9c_c00059{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);}
.m95_c00059{transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156060,0.000000,0.000000,0.250000,0,0);}
.md6_c00059{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m78_c00059{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);}
.m15_c00059{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);}
.m56_c00059{transform:matrix(0.158695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158695,0.000000,0.000000,0.250000,0,0);}
.m67_c00059{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);}
.m104_c00059{transform:matrix(0.159499,0.002233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159499,0.002233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159499,0.002233,-0.003500,0.249976,0,0);}
.mc4_c00059{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);}
.m2b_c00059{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);}
.m27_c00059{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);}
.mfb_c00059{transform:matrix(0.161834,0.002266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161834,0.002266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161834,0.002266,-0.003500,0.249976,0,0);}
.m1b_c00059{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);}
.mbb_c00059{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);}
.m98_c00059{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);}
.m9f_c00059{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{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);}
.md1_c00059{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);}
.m65_c00059{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.me3_c00059{transform:matrix(0.167278,0.002007,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167278,0.002007,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167278,0.002007,-0.003000,0.249982,0,0);}
.me_c00059{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);}
.mde_c00059{transform:matrix(0.168023,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168023,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168023,0.002016,-0.003000,0.249982,0,0);}
.m39_c00059{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);}
.m38_c00059{transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{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);}
.ma9_c00059{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);}
.m93_c00059{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);}
.m3f_c00059{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);}
.md7_c00059{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);}
.mcd_c00059{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);}
.m6e_c00059{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{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);}
.m14_c00059{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);}
.m46_c00059{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);}
.m4e_c00059{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_c00059{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);}
.m69_c00059{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);}
.me0_c00059{transform:matrix(0.174917,0.002099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174917,0.002099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174917,0.002099,-0.003000,0.249982,0,0);}
.md2_c00059{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);}
.mc1_c00059{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);}
.m55_c00059{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);}
.mbf_c00059{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);}
.m6c_c00059{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);}
.m9b_c00059{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);}
.m99_c00059{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);}
.mc6_c00059{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);}
.mdc_c00059{transform:matrix(0.176137,0.002114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176137,0.002114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176137,0.002114,-0.003000,0.249982,0,0);}
.mab_c00059{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m8a_c00059{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);}
.m59_c00059{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_c00059{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);}
.md0_c00059{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);}
.m50_c00059{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);}
.m74_c00059{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);}
.m2d_c00059{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);}
.m9a_c00059{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);}
.mef_c00059{transform:matrix(0.179342,0.002511,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179342,0.002511,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179342,0.002511,-0.003500,0.249976,0,0);}
.m40_c00059{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);}
.m72_c00059{transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);}
.m100_c00059{transform:matrix(0.179857,0.002518,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179857,0.002518,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179857,0.002518,-0.003500,0.249976,0,0);}
.mb8_c00059{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);}
.m71_c00059{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);}
.m45_c00059{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);}
.m2f_c00059{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);}
.m4_c00059{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);}
.m17_c00059{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);}
.m51_c00059{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);}
.ma8_c00059{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);}
.m105_c00059{transform:matrix(0.182767,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182767,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182767,0.002559,-0.003500,0.249976,0,0);}
.m3c_c00059{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);}
.m3d_c00059{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);}
.m84_c00059{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);}
.mfd_c00059{transform:matrix(0.183297,0.002566,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183297,0.002566,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183297,0.002566,-0.003500,0.249976,0,0);}
.md4_c00059{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);}
.m41_c00059{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);}
.m101_c00059{transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);}
.ma2_c00059{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);}
.mb3_c00059{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);}
.mce_c00059{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);}
.m12_c00059{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);}
.maf_c00059{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);}
.md3_c00059{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);}
.m30_c00059{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);}
.m19_c00059{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);}
.m3e_c00059{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);}
.m57_c00059{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);}
.mdf_c00059{transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);}
.m96_c00059{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);}
.m68_c00059{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);}
.m1f_c00059{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);}
.m53_c00059{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);}
.mc2_c00059{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);}
.mfa_c00059{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);}
.m25_c00059{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);}
.m7a_c00059{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);}
.m49_c00059{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);}
.m63_c00059{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);}
.m42_c00059{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);}
.m34_c00059{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);}
.m1d_c00059{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);}
.m70_c00059{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);}
.m5c_c00059{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);}
.mb4_c00059{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);}
.mbc_c00059{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);}
.me9_c00059{transform:matrix(0.192256,0.002692,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192256,0.002692,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192256,0.002692,-0.003500,0.249976,0,0);}
.ma6_c00059{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);}
.m26_c00059{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);}
.m20_c00059{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);}
.m8c_c00059{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);}
.mc7_c00059{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);}
.m23_c00059{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);}
.m10_c00059{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);}
.mba_c00059{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);}
.m62_c00059{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);}
.me8_c00059{transform:matrix(0.195571,0.002738,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195571,0.002738,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195571,0.002738,-0.003500,0.249976,0,0);}
.mcf_c00059{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);}
.m48_c00059{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);}
.m7f_c00059{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);}
.m2a_c00059{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);}
.mca_c00059{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);}
.m6a_c00059{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);}
.m11_c00059{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);}
.m37_c00059{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);}
.m5f_c00059{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);}
.md_c00059{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);}
.m92_c00059{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);}
.m94_c00059{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);}
.m5_c00059{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);}
.mc_c00059{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);}
.m91_c00059{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);}
.m7e_c00059{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);}
.m33_c00059{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);}
.m4d_c00059{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);}
.m97_c00059{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);}
.m2e_c00059{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);}
.m1c_c00059{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);}
.m60_c00059{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);}
.mf_c00059{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);}
.m4a_c00059{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);}
.mbe_c00059{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);}
.m7c_c00059{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);}
.m83_c00059{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);}
.m16_c00059{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);}
.ma0_c00059{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);}
.mfe_c00059{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);}
.m8e_c00059{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);}
.mcc_c00059{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);}
.m9d_c00059{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);}
.md5_c00059{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);}
.mac_c00059{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);}
.me2_c00059{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);}
.m36_c00059{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);}
.m103_c00059{transform:matrix(0.204760,0.002867,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204760,0.002867,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204760,0.002867,-0.003500,0.249976,0,0);}
.m8_c00059{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);}
.mcb_c00059{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);}
.m89_c00059{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);}
.m82_c00059{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);}
.m6b_c00059{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);}
.m28_c00059{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);}
.mf0_c00059{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);}
.ma_c00059{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);}
.m24_c00059{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);}
.m75_c00059{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);}
.m66_c00059{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);}
.mb9_c00059{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);}
.mc5_c00059{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);}
.m6d_c00059{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);}
.m107_c00059{transform:matrix(0.209769,0.002937,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209769,0.002937,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209769,0.002937,-0.003500,0.249976,0,0);}
.mb2_c00059{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);}
.mb5_c00059{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);}
.m86_c00059{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);}
.m1a_c00059{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);}
.m18_c00059{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);}
.m31_c00059{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);}
.mfc_c00059{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);}
.med_c00059{transform:matrix(0.212494,0.002975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212494,0.002975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212494,0.002975,-0.003500,0.249976,0,0);}
.m106_c00059{transform:matrix(0.212744,0.002978,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212744,0.002978,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212744,0.002978,-0.003500,0.249976,0,0);}
.md9_c00059{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);}
.mae_c00059{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);}
.me7_c00059{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);}
.m5d_c00059{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.m73_c00059{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);}
.mb0_c00059{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);}
.m85_c00059{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);}
.m6_c00059{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);}
.m5b_c00059{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);}
.m5e_c00059{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);}
.m7_c00059{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);}
.m2_c00059{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);}
.m76_c00059{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);}
.mda_c00059{transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);}
.mf4_c00059{transform:matrix(0.227678,0.003187,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227678,0.003187,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227678,0.003187,-0.003500,0.249976,0,0);}
.mbd_c00059{transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);}
.mf5_c00059{transform:matrix(0.228693,0.003202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228693,0.003202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228693,0.003202,-0.003500,0.249976,0,0);}
.m87_c00059{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);}
.m9e_c00059{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);}
.m64_c00059{transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.me4_c00059{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);}
.mea_c00059{transform:matrix(0.234287,0.003280,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234287,0.003280,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234287,0.003280,-0.003500,0.249976,0,0);}
.m9_c00059{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);}
.m3a_c00059{transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);}
.mff_c00059{transform:matrix(0.241271,0.003378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241271,0.003378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241271,0.003378,-0.003500,0.249976,0,0);}
.mc8_c00059{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);}
.m6f_c00059{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);}
.m13_c00059{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);}
.mb6_c00059{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);}
.m108_c00059{transform:matrix(0.248461,0.003478,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248461,0.003478,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248461,0.003478,-0.003500,0.249976,0,0);}
.m77_c00059{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m110_c00059{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m80_c00059{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);}
.mf2_c00059{transform:matrix(0.251555,0.003522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251555,0.003522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251555,0.003522,-0.003500,0.249976,0,0);}
.mf3_c00059{transform:matrix(0.253270,0.003546,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253270,0.003546,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253270,0.003546,-0.003500,0.249976,0,0);}
.m10b_c00059{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m7b_c00059{transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);}
.me6_c00059{transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);}
.mb7_c00059{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);}
.ma4_c00059{transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);}
.m7d_c00059{transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271065,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.m4c_c00059{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.me5_c00059{transform:matrix(0.278308,0.003896,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278308,0.003896,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278308,0.003896,-0.003500,0.249976,0,0);}
.mf8_c00059{transform:matrix(0.279773,0.003917,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279773,0.003917,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279773,0.003917,-0.003500,0.249976,0,0);}
.m29_c00059{transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);}
.mad_c00059{transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295355,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);}
.m88_c00059{transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);}
.m10a_c00059{transform:matrix(0.314284,0.004400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.314284,0.004400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.314284,0.004400,-0.003500,0.249976,0,0);}
.m81_c00059{transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.329375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329375,0.000000,0.000000,0.250000,0,0);}
.meb_c00059{transform:matrix(0.348856,0.004884,-0.003500,0.249976,0,0);-ms-transform:matrix(0.348856,0.004884,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.348856,0.004884,-0.003500,0.249976,0,0);}
.mee_c00059{transform:matrix(0.352880,0.004940,-0.003500,0.249976,0,0);-ms-transform:matrix(0.352880,0.004940,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.352880,0.004940,-0.003500,0.249976,0,0);}
.mec_c00059{transform:matrix(0.363944,0.005095,-0.003500,0.249976,0,0);-ms-transform:matrix(0.363944,0.005095,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.363944,0.005095,-0.003500,0.249976,0,0);}
.md8_c00059{transform:matrix(0.391915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391915,0.000000,0.000000,0.250000,0,0);}
.mf6_c00059{transform:matrix(0.420824,0.005892,-0.003500,0.249976,0,0);-ms-transform:matrix(0.420824,0.005892,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.420824,0.005892,-0.003500,0.249976,0,0);}
.m58_c00059{transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.520750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00059{transform:matrix(0.661125,0.009256,-0.003500,0.249976,0,0);-ms-transform:matrix(0.661125,0.009256,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.661125,0.009256,-0.003500,0.249976,0,0);}
.m109_c00059{transform:matrix(0.677459,0.009484,-0.003500,0.249976,0,0);-ms-transform:matrix(0.677459,0.009484,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.677459,0.009484,-0.003500,0.249976,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;}
.fs0_c00059{font-size:22.050000px;}
.fs12_c00059{font-size:25.200000px;}
.fs11_c00059{font-size:46.200000px;}
.fsf_c00059{font-size:52.505145px;}
.fs10_c00059{font-size:54.605351px;}
.fsb_c00059{font-size:61.950000px;}
.fs2_c00059{font-size:64.050000px;}
.fs5_c00059{font-size:68.250000px;}
.fs3_c00059{font-size:69.300000px;}
.fs4_c00059{font-size:70.350000px;}
.fs9_c00059{font-size:71.400000px;}
.fs8_c00059{font-size:72.450000px;}
.fs7_c00059{font-size:73.500000px;}
.fsd_c00059{font-size:74.550000px;}
.fse_c00059{font-size:74.555367px;}
.fsc_c00059{font-size:76.650000px;}
.fsa_c00059{font-size:86.100000px;}
.fs1_c00059{font-size:96.600000px;}
.fs6_c00059{font-size:102.900000px;}
.y0_c00059{bottom:0.000000px;}
.y5a_c00059{bottom:95.712000px;}
.y59_c00059{bottom:101.239500px;}
.y58_c00059{bottom:112.459500px;}
.y57_c00059{bottom:126.742365px;}
.y56_c00059{bottom:127.494375px;}
.y55_c00059{bottom:128.505084px;}
.y54_c00059{bottom:129.162543px;}
.y53_c00059{bottom:129.835488px;}
.y52_c00059{bottom:130.310637px;}
.y51_c00059{bottom:130.842249px;}
.y50_c00059{bottom:131.499477px;}
.y4f_c00059{bottom:131.651130px;}
.y4e_c00059{bottom:132.515340px;}
.y4d_c00059{bottom:132.775161px;}
.y4c_c00059{bottom:133.003917px;}
.y4b_c00059{bottom:133.807833px;}
.y4a_c00059{bottom:134.115066px;}
.y49_c00059{bottom:134.632557px;}
.y48_c00059{bottom:134.970195px;}
.y47_c00059{bottom:135.479172px;}
.y46_c00059{bottom:136.369587px;}
.y45_c00059{bottom:145.774458px;}
.y44_c00059{bottom:145.973874px;}
.y43_c00059{bottom:146.267118px;}
.y42_c00059{bottom:146.890818px;}
.y41_c00059{bottom:147.647112px;}
.y40_c00059{bottom:148.020723px;}
.y3f_c00059{bottom:148.205544px;}
.y3e_c00059{bottom:148.385535px;}
.y3d_c00059{bottom:149.381061px;}
.y3c_c00059{bottom:149.936931px;}
.y3b_c00059{bottom:150.126918px;}
.y3a_c00059{bottom:150.670335px;}
.y39_c00059{bottom:150.886614px;}
.y38_c00059{bottom:151.256172px;}
.y37_c00059{bottom:151.880082px;}
.y36_c00059{bottom:152.152263px;}
.y35_c00059{bottom:152.594586px;}
.y34_c00059{bottom:152.897007px;}
.y33_c00059{bottom:153.263793px;}
.y32_c00059{bottom:153.901500px;}
.y30_c00059{bottom:176.360946px;}
.y2f_c00059{bottom:176.788590px;}
.y2e_c00059{bottom:176.976582px;}
.y2d_c00059{bottom:177.293418px;}
.y2c_c00059{bottom:177.789174px;}
.y2b_c00059{bottom:178.285632px;}
.y2a_c00059{bottom:178.609524px;}
.y29_c00059{bottom:179.056644px;}
.y28_c00059{bottom:179.334762px;}
.y27_c00059{bottom:179.821500px;}
.y26_c00059{bottom:200.196000px;}
.y25_c00059{bottom:223.803000px;}
.y24_c00059{bottom:247.122000px;}
.y23_c00059{bottom:269.715000px;}
.y22_c00059{bottom:292.527000px;}
.y21_c00059{bottom:315.714000px;}
.y20_c00059{bottom:338.223000px;}
.y1f_c00059{bottom:362.505000px;}
.y1e_c00059{bottom:384.603000px;}
.y1d_c00059{bottom:406.053000px;}
.y1c_c00059{bottom:406.411500px;}
.y1b_c00059{bottom:406.606500px;}
.y1a_c00059{bottom:407.106000px;}
.y19_c00059{bottom:407.578500px;}
.y18_c00059{bottom:408.072000px;}
.y17_c00059{bottom:408.285000px;}
.y16_c00059{bottom:408.697500px;}
.y15_c00059{bottom:409.051500px;}
.y14_c00059{bottom:430.678500px;}
.y13_c00059{bottom:452.928000px;}
.y12_c00059{bottom:475.971000px;}
.y11_c00059{bottom:498.933000px;}
.y10_c00059{bottom:521.584500px;}
.yf_c00059{bottom:544.975500px;}
.ye_c00059{bottom:563.016000px;}
.y31_c00059{bottom:576.180000px;}
.yd_c00059{bottom:589.752000px;}
.yc_c00059{bottom:611.872500px;}
.yb_c00059{bottom:634.524000px;}
.ya_c00059{bottom:658.156500px;}
.y9_c00059{bottom:680.263500px;}
.y8_c00059{bottom:704.044500px;}
.y7_c00059{bottom:726.810000px;}
.y6_c00059{bottom:749.181000px;}
.y5_c00059{bottom:772.647000px;}
.y4_c00059{bottom:795.690000px;}
.y3_c00059{bottom:818.910000px;}
.y2_c00059{bottom:850.791000px;}
.y1_c00059{bottom:918.406500px;}
.h2_c00059{height:22.050000px;}
.h14_c00059{height:25.200000px;}
.h13_c00059{height:46.200000px;}
.h11_c00059{height:52.505145px;}
.h12_c00059{height:54.605351px;}
.hd_c00059{height:61.950000px;}
.h4_c00059{height:64.050000px;}
.h7_c00059{height:68.250000px;}
.h5_c00059{height:69.300000px;}
.h6_c00059{height:70.350000px;}
.hb_c00059{height:71.400000px;}
.ha_c00059{height:72.450000px;}
.h9_c00059{height:73.500000px;}
.hf_c00059{height:74.550000px;}
.h10_c00059{height:74.555367px;}
.he_c00059{height:76.650000px;}
.hc_c00059{height:86.100000px;}
.h3_c00059{height:96.600000px;}
.h8_c00059{height:102.900000px;}
.h0_c00059{height:1008.450000px;}
.h1_c00059{height:1008.750000px;}
.w0_c00059{width:699.000000px;}
.x0_c00059{left:0.000000px;}
.x91_c00059{left:84.309894px;}
.x85_c00059{left:105.780000px;}
.x92_c00059{left:139.980840px;}
.x86_c00059{left:151.330500px;}
.xc_c00059{left:172.260000px;}
.x6e_c00059{left:173.340000px;}
.x3e_c00059{left:175.230000px;}
.x13_c00059{left:176.310000px;}
.x5_c00059{left:177.390000px;}
.x37_c00059{left:178.740000px;}
.x64_c00059{left:193.590000px;}
.x14_c00059{left:198.180000px;}
.x2d_c00059{left:199.530000px;}
.x51_c00059{left:203.310000px;}
.xd_c00059{left:204.660000px;}
.x60_c00059{left:211.822500px;}
.x38_c00059{left:215.190000px;}
.x7c_c00059{left:216.270000px;}
.x73_c00059{left:217.350000px;}
.x6_c00059{left:218.970000px;}
.x26_c00059{left:220.320000px;}
.x66_c00059{left:221.400000px;}
.x93_c00059{left:225.307467px;}
.x87_c00059{left:230.725500px;}
.x79_c00059{left:234.900000px;}
.x3f_c00059{left:236.790000px;}
.x81_c00059{left:239.883000px;}
.x21_c00059{left:241.110000px;}
.x1a_c00059{left:242.190000px;}
.x33_c00059{left:243.810000px;}
.x43_c00059{left:245.160000px;}
.x67_c00059{left:246.510000px;}
.x15_c00059{left:247.590000px;}
.x88_c00059{left:250.167000px;}
.x52_c00059{left:252.720000px;}
.x7_c00059{left:256.230000px;}
.x4e_c00059{left:258.120000px;}
.x58_c00059{left:259.200000px;}
.x2e_c00059{left:262.980000px;}
.x1b_c00059{left:264.330000px;}
.x39_c00059{left:267.570000px;}
.x6f_c00059{left:269.460000px;}
.x69_c00059{left:270.540000px;}
.xe_c00059{left:272.160000px;}
.x16_c00059{left:274.860000px;}
.x2f_c00059{left:277.020000px;}
.x65_c00059{left:280.800000px;}
.x8_c00059{left:284.850000px;}
.x27_c00059{left:288.090000px;}
.x4f_c00059{left:289.440000px;}
.x1c_c00059{left:292.950000px;}
.x53_c00059{left:294.300000px;}
.x34_c00059{left:295.650000px;}
.x2_c00059{left:296.730000px;}
.x40_c00059{left:298.890000px;}
.xf_c00059{left:301.320000px;}
.x76_c00059{left:303.210000px;}
.x59_c00059{left:307.260000px;}
.x94_c00059{left:309.012615px;}
.x28_c00059{left:311.850000px;}
.x84_c00059{left:314.010000px;}
.x4a_c00059{left:318.060000px;}
.x74_c00059{left:319.950000px;}
.x25_c00059{left:321.570000px;}
.x61_c00059{left:323.857500px;}
.x95_c00059{left:325.213653px;}
.x22_c00059{left:326.700000px;}
.x10_c00059{left:329.130000px;}
.x30_c00059{left:336.690000px;}
.x3_c00059{left:338.850000px;}
.x1d_c00059{left:344.790000px;}
.x3a_c00059{left:350.460000px;}
.x17_c00059{left:352.890000px;}
.x41_c00059{left:353.970000px;}
.x77_c00059{left:355.320000px;}
.x4b_c00059{left:356.670000px;}
.x50_c00059{left:359.100000px;}
.x46_c00059{left:360.720000px;}
.x5d_c00059{left:363.960000px;}
.x9_c00059{left:365.580000px;}
.x23_c00059{left:368.010000px;}
.x11_c00059{left:369.900000px;}
.x4_c00059{left:372.060000px;}
.x54_c00059{left:375.300000px;}
.x35_c00059{left:377.730000px;}
.x29_c00059{left:379.080000px;}
.x68_c00059{left:382.590000px;}
.x6a_c00059{left:385.020000px;}
.x7d_c00059{left:387.720000px;}
.x89_c00059{left:388.963500px;}
.x70_c00059{left:390.150000px;}
.x4c_c00059{left:391.500000px;}
.x31_c00059{left:392.850000px;}
.xa_c00059{left:394.740000px;}
.x55_c00059{left:396.900000px;}
.x7a_c00059{left:398.250000px;}
.x24_c00059{left:399.600000px;}
.x44_c00059{left:402.300000px;}
.x7e_c00059{left:403.920000px;}
.x6b_c00059{left:406.620000px;}
.x2a_c00059{left:407.970000px;}
.x47_c00059{left:412.020000px;}
.x82_c00059{left:413.221500px;}
.x18_c00059{left:415.260000px;}
.x99_c00059{left:416.340000px;}
.x5e_c00059{left:417.420000px;}
.x62_c00059{left:421.063500px;}
.x56_c00059{left:423.630000px;}
.x5a_c00059{left:426.600000px;}
.x83_c00059{left:428.887500px;}
.x71_c00059{left:431.460000px;}
.x36_c00059{left:433.350000px;}
.x48_c00059{left:435.240000px;}
.x1e_c00059{left:437.130000px;}
.x32_c00059{left:439.020000px;}
.x63_c00059{left:440.493000px;}
.x19_c00059{left:442.800000px;}
.xb_c00059{left:444.960000px;}
.x7f_c00059{left:446.040000px;}
.x4d_c00059{left:447.120000px;}
.x45_c00059{left:449.550000px;}
.x12_c00059{left:450.630000px;}
.x3b_c00059{left:454.680000px;}
.x42_c00059{left:455.760000px;}
.x7b_c00059{left:457.110000px;}
.x5b_c00059{left:460.350000px;}
.x96_c00059{left:462.974289px;}
.x80_c00059{left:464.400000px;}
.x57_c00059{left:466.290000px;}
.x6c_c00059{left:470.610000px;}
.x2b_c00059{left:473.310000px;}
.x9a_c00059{left:475.200000px;}
.x1f_c00059{left:476.550000px;}
.x75_c00059{left:477.630000px;}
.x5f_c00059{left:481.140000px;}
.x3c_c00059{left:493.290000px;}
.x8a_c00059{left:499.777500px;}
.x78_c00059{left:501.390000px;}
.x20_c00059{left:508.140000px;}
.x8b_c00059{left:512.634000px;}
.x72_c00059{left:517.590000px;}
.x8c_c00059{left:525.835500px;}
.x5c_c00059{left:532.710000px;}
.x6d_c00059{left:533.790000px;}
.x3d_c00059{left:541.080000px;}
.x2c_c00059{left:547.020000px;}
.x49_c00059{left:552.420000px;}
.x1_c00059{left:557.280000px;}
.x97_c00059{left:575.760618px;}
.x8d_c00059{left:606.543000px;}
.x98_c00059{left:638.952354px;}
.x8e_c00059{left:651.093000px;}
.x8f_c00059{left:672.039000px;}
.x90_c00059{left:686.283000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
.fs0_c00059{font-size:19.600000pt;}
.fs12_c00059{font-size:22.400000pt;}
.fs11_c00059{font-size:41.066667pt;}
.fsf_c00059{font-size:46.671240pt;}
.fs10_c00059{font-size:48.538089pt;}
.fsb_c00059{font-size:55.066667pt;}
.fs2_c00059{font-size:56.933333pt;}
.fs5_c00059{font-size:60.666667pt;}
.fs3_c00059{font-size:61.600000pt;}
.fs4_c00059{font-size:62.533333pt;}
.fs9_c00059{font-size:63.466667pt;}
.fs8_c00059{font-size:64.400000pt;}
.fs7_c00059{font-size:65.333333pt;}
.fsd_c00059{font-size:66.266667pt;}
.fse_c00059{font-size:66.271438pt;}
.fsc_c00059{font-size:68.133333pt;}
.fsa_c00059{font-size:76.533333pt;}
.fs1_c00059{font-size:85.866667pt;}
.fs6_c00059{font-size:91.466667pt;}
.y0_c00059{bottom:0.000000pt;}
.y5a_c00059{bottom:85.077333pt;}
.y59_c00059{bottom:89.990667pt;}
.y58_c00059{bottom:99.964000pt;}
.y57_c00059{bottom:112.659880pt;}
.y56_c00059{bottom:113.328333pt;}
.y55_c00059{bottom:114.226741pt;}
.y54_c00059{bottom:114.811149pt;}
.y53_c00059{bottom:115.409323pt;}
.y52_c00059{bottom:115.831677pt;}
.y51_c00059{bottom:116.304221pt;}
.y50_c00059{bottom:116.888424pt;}
.y4f_c00059{bottom:117.023227pt;}
.y4e_c00059{bottom:117.791413pt;}
.y4d_c00059{bottom:118.022365pt;}
.y4c_c00059{bottom:118.225704pt;}
.y4b_c00059{bottom:118.940296pt;}
.y4a_c00059{bottom:119.213392pt;}
.y49_c00059{bottom:119.673384pt;}
.y48_c00059{bottom:119.973507pt;}
.y47_c00059{bottom:120.425931pt;}
.y46_c00059{bottom:121.217411pt;}
.y45_c00059{bottom:129.577296pt;}
.y44_c00059{bottom:129.754555pt;}
.y43_c00059{bottom:130.015216pt;}
.y42_c00059{bottom:130.569616pt;}
.y41_c00059{bottom:131.241877pt;}
.y40_c00059{bottom:131.573976pt;}
.y3f_c00059{bottom:131.738261pt;}
.y3e_c00059{bottom:131.898253pt;}
.y3d_c00059{bottom:132.783165pt;}
.y3c_c00059{bottom:133.277272pt;}
.y3b_c00059{bottom:133.446149pt;}
.y3a_c00059{bottom:133.929187pt;}
.y39_c00059{bottom:134.121435pt;}
.y38_c00059{bottom:134.449931pt;}
.y37_c00059{bottom:135.004517pt;}
.y36_c00059{bottom:135.246456pt;}
.y35_c00059{bottom:135.639632pt;}
.y34_c00059{bottom:135.908451pt;}
.y33_c00059{bottom:136.234483pt;}
.y32_c00059{bottom:136.801333pt;}
.y30_c00059{bottom:156.765285pt;}
.y2f_c00059{bottom:157.145413pt;}
.y2e_c00059{bottom:157.312517pt;}
.y2d_c00059{bottom:157.594149pt;}
.y2c_c00059{bottom:158.034821pt;}
.y2b_c00059{bottom:158.476117pt;}
.y2a_c00059{bottom:158.764021pt;}
.y29_c00059{bottom:159.161461pt;}
.y28_c00059{bottom:159.408677pt;}
.y27_c00059{bottom:159.841333pt;}
.y26_c00059{bottom:177.952000pt;}
.y25_c00059{bottom:198.936000pt;}
.y24_c00059{bottom:219.664000pt;}
.y23_c00059{bottom:239.746667pt;}
.y22_c00059{bottom:260.024000pt;}
.y21_c00059{bottom:280.634667pt;}
.y20_c00059{bottom:300.642667pt;}
.y1f_c00059{bottom:322.226667pt;}
.y1e_c00059{bottom:341.869333pt;}
.y1d_c00059{bottom:360.936000pt;}
.y1c_c00059{bottom:361.254667pt;}
.y1b_c00059{bottom:361.428000pt;}
.y1a_c00059{bottom:361.872000pt;}
.y19_c00059{bottom:362.292000pt;}
.y18_c00059{bottom:362.730667pt;}
.y17_c00059{bottom:362.920000pt;}
.y16_c00059{bottom:363.286667pt;}
.y15_c00059{bottom:363.601333pt;}
.y14_c00059{bottom:382.825333pt;}
.y13_c00059{bottom:402.602667pt;}
.y12_c00059{bottom:423.085333pt;}
.y11_c00059{bottom:443.496000pt;}
.y10_c00059{bottom:463.630667pt;}
.yf_c00059{bottom:484.422667pt;}
.ye_c00059{bottom:500.458667pt;}
.y31_c00059{bottom:512.160000pt;}
.yd_c00059{bottom:524.224000pt;}
.yc_c00059{bottom:543.886667pt;}
.yb_c00059{bottom:564.021333pt;}
.ya_c00059{bottom:585.028000pt;}
.y9_c00059{bottom:604.678667pt;}
.y8_c00059{bottom:625.817333pt;}
.y7_c00059{bottom:646.053333pt;}
.y6_c00059{bottom:665.938667pt;}
.y5_c00059{bottom:686.797333pt;}
.y4_c00059{bottom:707.280000pt;}
.y3_c00059{bottom:727.920000pt;}
.y2_c00059{bottom:756.258667pt;}
.y1_c00059{bottom:816.361333pt;}
.h2_c00059{height:19.600000pt;}
.h14_c00059{height:22.400000pt;}
.h13_c00059{height:41.066667pt;}
.h11_c00059{height:46.671240pt;}
.h12_c00059{height:48.538089pt;}
.hd_c00059{height:55.066667pt;}
.h4_c00059{height:56.933333pt;}
.h7_c00059{height:60.666667pt;}
.h5_c00059{height:61.600000pt;}
.h6_c00059{height:62.533333pt;}
.hb_c00059{height:63.466667pt;}
.ha_c00059{height:64.400000pt;}
.h9_c00059{height:65.333333pt;}
.hf_c00059{height:66.266667pt;}
.h10_c00059{height:66.271438pt;}
.he_c00059{height:68.133333pt;}
.hc_c00059{height:76.533333pt;}
.h3_c00059{height:85.866667pt;}
.h8_c00059{height:91.466667pt;}
.h0_c00059{height:896.400000pt;}
.h1_c00059{height:896.666667pt;}
.w0_c00059{width:621.333333pt;}
.x0_c00059{left:0.000000pt;}
.x91_c00059{left:74.942128pt;}
.x85_c00059{left:94.026667pt;}
.x92_c00059{left:124.427413pt;}
.x86_c00059{left:134.516000pt;}
.xc_c00059{left:153.120000pt;}
.x6e_c00059{left:154.080000pt;}
.x3e_c00059{left:155.760000pt;}
.x13_c00059{left:156.720000pt;}
.x5_c00059{left:157.680000pt;}
.x37_c00059{left:158.880000pt;}
.x64_c00059{left:172.080000pt;}
.x14_c00059{left:176.160000pt;}
.x2d_c00059{left:177.360000pt;}
.x51_c00059{left:180.720000pt;}
.xd_c00059{left:181.920000pt;}
.x60_c00059{left:188.286667pt;}
.x38_c00059{left:191.280000pt;}
.x7c_c00059{left:192.240000pt;}
.x73_c00059{left:193.200000pt;}
.x6_c00059{left:194.640000pt;}
.x26_c00059{left:195.840000pt;}
.x66_c00059{left:196.800000pt;}
.x93_c00059{left:200.273304pt;}
.x87_c00059{left:205.089333pt;}
.x79_c00059{left:208.800000pt;}
.x3f_c00059{left:210.480000pt;}
.x81_c00059{left:213.229333pt;}
.x21_c00059{left:214.320000pt;}
.x1a_c00059{left:215.280000pt;}
.x33_c00059{left:216.720000pt;}
.x43_c00059{left:217.920000pt;}
.x67_c00059{left:219.120000pt;}
.x15_c00059{left:220.080000pt;}
.x88_c00059{left:222.370667pt;}
.x52_c00059{left:224.640000pt;}
.x7_c00059{left:227.760000pt;}
.x4e_c00059{left:229.440000pt;}
.x58_c00059{left:230.400000pt;}
.x2e_c00059{left:233.760000pt;}
.x1b_c00059{left:234.960000pt;}
.x39_c00059{left:237.840000pt;}
.x6f_c00059{left:239.520000pt;}
.x69_c00059{left:240.480000pt;}
.xe_c00059{left:241.920000pt;}
.x16_c00059{left:244.320000pt;}
.x2f_c00059{left:246.240000pt;}
.x65_c00059{left:249.600000pt;}
.x8_c00059{left:253.200000pt;}
.x27_c00059{left:256.080000pt;}
.x4f_c00059{left:257.280000pt;}
.x1c_c00059{left:260.400000pt;}
.x53_c00059{left:261.600000pt;}
.x34_c00059{left:262.800000pt;}
.x2_c00059{left:263.760000pt;}
.x40_c00059{left:265.680000pt;}
.xf_c00059{left:267.840000pt;}
.x76_c00059{left:269.520000pt;}
.x59_c00059{left:273.120000pt;}
.x94_c00059{left:274.677880pt;}
.x28_c00059{left:277.200000pt;}
.x84_c00059{left:279.120000pt;}
.x4a_c00059{left:282.720000pt;}
.x74_c00059{left:284.400000pt;}
.x25_c00059{left:285.840000pt;}
.x61_c00059{left:287.873333pt;}
.x95_c00059{left:289.078803pt;}
.x22_c00059{left:290.400000pt;}
.x10_c00059{left:292.560000pt;}
.x30_c00059{left:299.280000pt;}
.x3_c00059{left:301.200000pt;}
.x1d_c00059{left:306.480000pt;}
.x3a_c00059{left:311.520000pt;}
.x17_c00059{left:313.680000pt;}
.x41_c00059{left:314.640000pt;}
.x77_c00059{left:315.840000pt;}
.x4b_c00059{left:317.040000pt;}
.x50_c00059{left:319.200000pt;}
.x46_c00059{left:320.640000pt;}
.x5d_c00059{left:323.520000pt;}
.x9_c00059{left:324.960000pt;}
.x23_c00059{left:327.120000pt;}
.x11_c00059{left:328.800000pt;}
.x4_c00059{left:330.720000pt;}
.x54_c00059{left:333.600000pt;}
.x35_c00059{left:335.760000pt;}
.x29_c00059{left:336.960000pt;}
.x68_c00059{left:340.080000pt;}
.x6a_c00059{left:342.240000pt;}
.x7d_c00059{left:344.640000pt;}
.x89_c00059{left:345.745333pt;}
.x70_c00059{left:346.800000pt;}
.x4c_c00059{left:348.000000pt;}
.x31_c00059{left:349.200000pt;}
.xa_c00059{left:350.880000pt;}
.x55_c00059{left:352.800000pt;}
.x7a_c00059{left:354.000000pt;}
.x24_c00059{left:355.200000pt;}
.x44_c00059{left:357.600000pt;}
.x7e_c00059{left:359.040000pt;}
.x6b_c00059{left:361.440000pt;}
.x2a_c00059{left:362.640000pt;}
.x47_c00059{left:366.240000pt;}
.x82_c00059{left:367.308000pt;}
.x18_c00059{left:369.120000pt;}
.x99_c00059{left:370.080000pt;}
.x5e_c00059{left:371.040000pt;}
.x62_c00059{left:374.278667pt;}
.x56_c00059{left:376.560000pt;}
.x5a_c00059{left:379.200000pt;}
.x83_c00059{left:381.233333pt;}
.x71_c00059{left:383.520000pt;}
.x36_c00059{left:385.200000pt;}
.x48_c00059{left:386.880000pt;}
.x1e_c00059{left:388.560000pt;}
.x32_c00059{left:390.240000pt;}
.x63_c00059{left:391.549333pt;}
.x19_c00059{left:393.600000pt;}
.xb_c00059{left:395.520000pt;}
.x7f_c00059{left:396.480000pt;}
.x4d_c00059{left:397.440000pt;}
.x45_c00059{left:399.600000pt;}
.x12_c00059{left:400.560000pt;}
.x3b_c00059{left:404.160000pt;}
.x42_c00059{left:405.120000pt;}
.x7b_c00059{left:406.320000pt;}
.x5b_c00059{left:409.200000pt;}
.x96_c00059{left:411.532701pt;}
.x80_c00059{left:412.800000pt;}
.x57_c00059{left:414.480000pt;}
.x6c_c00059{left:418.320000pt;}
.x2b_c00059{left:420.720000pt;}
.x9a_c00059{left:422.400000pt;}
.x1f_c00059{left:423.600000pt;}
.x75_c00059{left:424.560000pt;}
.x5f_c00059{left:427.680000pt;}
.x3c_c00059{left:438.480000pt;}
.x8a_c00059{left:444.246667pt;}
.x78_c00059{left:445.680000pt;}
.x20_c00059{left:451.680000pt;}
.x8b_c00059{left:455.674667pt;}
.x72_c00059{left:460.080000pt;}
.x8c_c00059{left:467.409333pt;}
.x5c_c00059{left:473.520000pt;}
.x6d_c00059{left:474.480000pt;}
.x3d_c00059{left:480.960000pt;}
.x2c_c00059{left:486.240000pt;}
.x49_c00059{left:491.040000pt;}
.x1_c00059{left:495.360000pt;}
.x97_c00059{left:511.787216pt;}
.x8d_c00059{left:539.149333pt;}
.x98_c00059{left:567.957648pt;}
.x8e_c00059{left:578.749333pt;}
.x8f_c00059{left:597.368000pt;}
.x90_c00059{left:610.029333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.mc2_c00060{transform:matrix(0.010389,0.000104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.010389,0.000104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.010389,0.000104,-0.002500,0.249988,0,0);}
.m13_c00060{transform:matrix(0.010535,0.000084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010535,0.000084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010535,0.000084,-0.002000,0.249992,0,0);}
.maa_c00060{transform:matrix(0.010854,0.000109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.010854,0.000109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.010854,0.000109,-0.002500,0.249988,0,0);}
.m11_c00060{transform:matrix(0.011305,0.000090,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011305,0.000090,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011305,0.000090,-0.002000,0.249992,0,0);}
.m91_c00060{transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);}
.m10b_c00060{transform:matrix(0.012319,0.000123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.012319,0.000123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.012319,0.000123,-0.002500,0.249988,0,0);}
.m12_c00060{transform:matrix(0.031359,0.000251,-0.002000,0.249992,0,0);-ms-transform:matrix(0.031359,0.000251,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.031359,0.000251,-0.002000,0.249992,0,0);}
.m5d_c00060{transform:matrix(0.031428,0.000346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.031428,0.000346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.031428,0.000346,-0.002750,0.249985,0,0);}
.m3_c00060{transform:matrix(0.034849,0.000279,-0.002000,0.249992,0,0);-ms-transform:matrix(0.034849,0.000279,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.034849,0.000279,-0.002000,0.249992,0,0);}
.m6c_c00060{transform:matrix(0.036440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036440,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.038959,0.000312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.038959,0.000312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.038959,0.000312,-0.002000,0.249992,0,0);}
.m90_c00060{transform:matrix(0.055397,0.000554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.055397,0.000554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.055397,0.000554,-0.002500,0.249988,0,0);}
.m67_c00060{transform:matrix(0.062390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062390,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.093827,0.000751,-0.002000,0.249992,0,0);-ms-transform:matrix(0.093827,0.000751,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.093827,0.000751,-0.002000,0.249992,0,0);}
.me4_c00060{transform:matrix(0.095660,0.000957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.095660,0.000957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.095660,0.000957,-0.002500,0.249988,0,0);}
.m5e_c00060{transform:matrix(0.120830,0.001571,-0.003250,0.249979,0,0);-ms-transform:matrix(0.120830,0.001571,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.120830,0.001571,-0.003250,0.249979,0,0);}
.m56_c00060{transform:matrix(0.139462,0.001534,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139462,0.001534,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139462,0.001534,-0.002750,0.249985,0,0);}
.m40_c00060{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.mc9_c00060{transform:matrix(0.141633,0.001416,-0.002500,0.249988,0,0);-ms-transform:matrix(0.141633,0.001416,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.141633,0.001416,-0.002500,0.249988,0,0);}
.m3b_c00060{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);}
.m1e_c00060{transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);}
.m81_c00060{transform:matrix(0.144791,0.001593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144791,0.001593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144791,0.001593,-0.002750,0.249985,0,0);}
.mb7_c00060{transform:matrix(0.144943,0.001449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144943,0.001449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144943,0.001449,-0.002500,0.249988,0,0);}
.m42_c00060{transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);}
.m43_c00060{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);}
.med_c00060{transform:matrix(0.147723,0.001477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147723,0.001477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147723,0.001477,-0.002500,0.249988,0,0);}
.me2_c00060{transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);}
.mcb_c00060{transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);}
.m8b_c00060{transform:matrix(0.151167,0.001512,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151167,0.001512,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151167,0.001512,-0.002500,0.249988,0,0);}
.m7c_c00060{transform:matrix(0.151796,0.001670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151796,0.001670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151796,0.001670,-0.002750,0.249985,0,0);}
.m2b_c00060{transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);}
.mec_c00060{transform:matrix(0.153272,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153272,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153272,0.001533,-0.002500,0.249988,0,0);}
.m23_c00060{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);}
.mf6_c00060{transform:matrix(0.155467,0.001555,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155467,0.001555,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155467,0.001555,-0.002500,0.249988,0,0);}
.m46_c00060{transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);}
.m54_c00060{transform:matrix(0.156171,0.001718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156171,0.001718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156171,0.001718,-0.002750,0.249985,0,0);}
.m8a_c00060{transform:matrix(0.156747,0.001567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156747,0.001567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156747,0.001567,-0.002500,0.249988,0,0);}
.m4c_c00060{transform:matrix(0.157315,0.001730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157315,0.001730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157315,0.001730,-0.002750,0.249985,0,0);}
.m19_c00060{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);}
.m51_c00060{transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);}
.m39_c00060{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);}
.m93_c00060{transform:matrix(0.158817,0.001588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158817,0.001588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158817,0.001588,-0.002500,0.249988,0,0);}
.m7d_c00060{transform:matrix(0.159680,0.001756,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159680,0.001756,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159680,0.001756,-0.002750,0.249985,0,0);}
.m30_c00060{transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);}
.mbb_c00060{transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);}
.me7_c00060{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);}
.mb0_c00060{transform:matrix(0.160477,0.001605,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160477,0.001605,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160477,0.001605,-0.002500,0.249988,0,0);}
.mf3_c00060{transform:matrix(0.160622,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160622,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160622,0.001606,-0.002500,0.249988,0,0);}
.mf4_c00060{transform:matrix(0.161017,0.001610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161017,0.001610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161017,0.001610,-0.002500,0.249988,0,0);}
.m10_c00060{transform:matrix(0.161390,0.001291,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161390,0.001291,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161390,0.001291,-0.002000,0.249992,0,0);}
.m2d_c00060{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);}
.m109_c00060{transform:matrix(0.161992,0.001620,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161992,0.001620,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161992,0.001620,-0.002500,0.249988,0,0);}
.m3c_c00060{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);}
.meb_c00060{transform:matrix(0.163007,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163007,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163007,0.001630,-0.002500,0.249988,0,0);}
.m41_c00060{transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{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);}
.me5_c00060{transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);}
.m79_c00060{transform:matrix(0.164380,0.001808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164380,0.001808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164380,0.001808,-0.002750,0.249985,0,0);}
.m21_c00060{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m3a_c00060{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);}
.mdf_c00060{transform:matrix(0.164952,0.001650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164952,0.001650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164952,0.001650,-0.002500,0.249988,0,0);}
.m27_c00060{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);}
.mb1_c00060{transform:matrix(0.165697,0.001657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165697,0.001657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165697,0.001657,-0.002500,0.249988,0,0);}
.m1b_c00060{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);}
.md3_c00060{transform:matrix(0.168582,0.001686,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168582,0.001686,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168582,0.001686,-0.002500,0.249988,0,0);}
.me9_c00060{transform:matrix(0.169167,0.001692,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169167,0.001692,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169167,0.001692,-0.002500,0.249988,0,0);}
.m99_c00060{transform:matrix(0.169317,0.001693,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169317,0.001693,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169317,0.001693,-0.002500,0.249988,0,0);}
.mda_c00060{transform:matrix(0.169332,0.001693,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169332,0.001693,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169332,0.001693,-0.002500,0.249988,0,0);}
.m3e_c00060{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);}
.m1c_c00060{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.mcc_c00060{transform:matrix(0.169957,0.001700,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169957,0.001700,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169957,0.001700,-0.002500,0.249988,0,0);}
.mbf_c00060{transform:matrix(0.170056,0.001701,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170056,0.001701,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170056,0.001701,-0.002500,0.249988,0,0);}
.m20_c00060{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);}
.mdb_c00060{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);}
.m4d_c00060{transform:matrix(0.170690,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170690,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170690,0.001878,-0.002750,0.249985,0,0);}
.mbd_c00060{transform:matrix(0.171441,0.001714,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171441,0.001714,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171441,0.001714,-0.002500,0.249988,0,0);}
.maf_c00060{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);}
.m24_c00060{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);}
.m78_c00060{transform:matrix(0.172350,0.001896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172350,0.001896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172350,0.001896,-0.002750,0.249985,0,0);}
.m111_c00060{transform:matrix(0.172786,0.002592,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172786,0.002592,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172786,0.002592,-0.003750,0.249972,0,0);}
.m80_c00060{transform:matrix(0.173105,0.001904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173105,0.001904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173105,0.001904,-0.002750,0.249985,0,0);}
.m5a_c00060{transform:matrix(0.173415,0.001908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173415,0.001908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173415,0.001908,-0.002750,0.249985,0,0);}
.m48_c00060{transform:matrix(0.173849,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173849,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173849,0.001912,-0.002750,0.249985,0,0);}
.m66_c00060{transform:matrix(0.175050,0.002276,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175050,0.002276,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175050,0.002276,-0.003250,0.249979,0,0);}
.m101_c00060{transform:matrix(0.176106,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176106,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176106,0.001761,-0.002500,0.249988,0,0);}
.m102_c00060{transform:matrix(0.176366,0.001764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176366,0.001764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176366,0.001764,-0.002500,0.249988,0,0);}
.mb8_c00060{transform:matrix(0.176396,0.001764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176396,0.001764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176396,0.001764,-0.002500,0.249988,0,0);}
.mc8_c00060{transform:matrix(0.176476,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176476,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176476,0.001765,-0.002500,0.249988,0,0);}
.m96_c00060{transform:matrix(0.176951,0.001770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176951,0.001770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176951,0.001770,-0.002500,0.249988,0,0);}
.ma0_c00060{transform:matrix(0.177246,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177246,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177246,0.001772,-0.002500,0.249988,0,0);}
.m85_c00060{transform:matrix(0.177404,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177404,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177404,0.001951,-0.002750,0.249985,0,0);}
.m6e_c00060{transform:matrix(0.177534,0.001953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177534,0.001953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177534,0.001953,-0.002750,0.249985,0,0);}
.mff_c00060{transform:matrix(0.178126,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178126,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178126,0.001781,-0.002500,0.249988,0,0);}
.m60_c00060{transform:matrix(0.178300,0.002318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178300,0.002318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178300,0.002318,-0.003250,0.249979,0,0);}
.md0_c00060{transform:matrix(0.178736,0.001787,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178736,0.001787,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178736,0.001787,-0.002500,0.249988,0,0);}
.mf5_c00060{transform:matrix(0.178766,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178766,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178766,0.001788,-0.002500,0.249988,0,0);}
.m70_c00060{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);}
.m8d_c00060{transform:matrix(0.179126,0.001791,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179126,0.001791,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179126,0.001791,-0.002500,0.249988,0,0);}
.m71_c00060{transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);}
.m9c_c00060{transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);}
.me8_c00060{transform:matrix(0.179641,0.001796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179641,0.001796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179641,0.001796,-0.002500,0.249988,0,0);}
.m2c_c00060{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);}
.m32_c00060{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.m95_c00060{transform:matrix(0.180421,0.001804,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180421,0.001804,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180421,0.001804,-0.002500,0.249988,0,0);}
.md4_c00060{transform:matrix(0.180486,0.001805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180486,0.001805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180486,0.001805,-0.002500,0.249988,0,0);}
.mb6_c00060{transform:matrix(0.180561,0.001806,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180561,0.001806,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180561,0.001806,-0.002500,0.249988,0,0);}
.m8e_c00060{transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);}
.m98_c00060{transform:matrix(0.181356,0.001814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181356,0.001814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181356,0.001814,-0.002500,0.249988,0,0);}
.m50_c00060{transform:matrix(0.181634,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181634,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181634,0.001998,-0.002750,0.249985,0,0);}
.mca_c00060{transform:matrix(0.181861,0.001819,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181861,0.001819,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181861,0.001819,-0.002500,0.249988,0,0);}
.mea_c00060{transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);}
.mba_c00060{transform:matrix(0.182666,0.001827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182666,0.001827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182666,0.001827,-0.002500,0.249988,0,0);}
.md5_c00060{transform:matrix(0.182981,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182981,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182981,0.001830,-0.002500,0.249988,0,0);}
.m63_c00060{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);}
.md8_c00060{transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);}
.m94_c00060{transform:matrix(0.183386,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183386,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183386,0.001834,-0.002500,0.249988,0,0);}
.m114_c00060{transform:matrix(0.183609,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183609,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183609,0.002754,-0.003750,0.249972,0,0);}
.m100_c00060{transform:matrix(0.184136,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184136,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184136,0.001841,-0.002500,0.249988,0,0);}
.me0_c00060{transform:matrix(0.184181,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184181,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184181,0.001842,-0.002500,0.249988,0,0);}
.m108_c00060{transform:matrix(0.184761,0.001848,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184761,0.001848,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184761,0.001848,-0.002500,0.249988,0,0);}
.m36_c00060{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);}
.mf7_c00060{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);}
.m97_c00060{transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);}
.ma1_c00060{transform:matrix(0.185991,0.001860,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185991,0.001860,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185991,0.001860,-0.002500,0.249988,0,0);}
.m82_c00060{transform:matrix(0.186549,0.002052,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186549,0.002052,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186549,0.002052,-0.002750,0.249985,0,0);}
.mbc_c00060{transform:matrix(0.186971,0.001870,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186971,0.001870,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186971,0.001870,-0.002500,0.249988,0,0);}
.mc6_c00060{transform:matrix(0.187301,0.001873,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187301,0.001873,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187301,0.001873,-0.002500,0.249988,0,0);}
.m4a_c00060{transform:matrix(0.188334,0.002072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188334,0.002072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188334,0.002072,-0.002750,0.249985,0,0);}
.m2f_c00060{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);}
.m88_c00060{transform:matrix(0.188716,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188716,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188716,0.001887,-0.002500,0.249988,0,0);}
.m107_c00060{transform:matrix(0.189206,0.001892,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189206,0.001892,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189206,0.001892,-0.002500,0.249988,0,0);}
.mde_c00060{transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);}
.m9f_c00060{transform:matrix(0.189536,0.001895,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189536,0.001895,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189536,0.001895,-0.002500,0.249988,0,0);}
.m35_c00060{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);}
.me1_c00060{transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);}
.m53_c00060{transform:matrix(0.190178,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190178,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190178,0.002092,-0.002750,0.249985,0,0);}
.m34_c00060{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);}
.m7e_c00060{transform:matrix(0.190453,0.002095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190453,0.002095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190453,0.002095,-0.002750,0.249985,0,0);}
.m10a_c00060{transform:matrix(0.190610,0.001906,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190610,0.001906,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190610,0.001906,-0.002500,0.249988,0,0);}
.mc5_c00060{transform:matrix(0.191010,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191010,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191010,0.001910,-0.002500,0.249988,0,0);}
.m62_c00060{transform:matrix(0.191364,0.002488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191364,0.002488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191364,0.002488,-0.003250,0.249979,0,0);}
.m7a_c00060{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);}
.m65_c00060{transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);}
.m87_c00060{transform:matrix(0.192010,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192010,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192010,0.001920,-0.002500,0.249988,0,0);}
.m38_c00060{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);}
.mee_c00060{transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);}
.m49_c00060{transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);}
.m58_c00060{transform:matrix(0.193583,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193583,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193583,0.002129,-0.002750,0.249985,0,0);}
.m4_c00060{transform:matrix(0.194714,0.001558,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194714,0.001558,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194714,0.001558,-0.002000,0.249992,0,0);}
.m7b_c00060{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);}
.mae_c00060{transform:matrix(0.195465,0.001955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195465,0.001955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195465,0.001955,-0.002500,0.249988,0,0);}
.m10f_c00060{transform:matrix(0.195718,0.002936,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195718,0.002936,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195718,0.002936,-0.003750,0.249972,0,0);}
.m112_c00060{transform:matrix(0.195858,0.002938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195858,0.002938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195858,0.002938,-0.003750,0.249972,0,0);}
.md7_c00060{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);}
.mfb_c00060{transform:matrix(0.196465,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196465,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196465,0.001965,-0.002500,0.249988,0,0);}
.m4b_c00060{transform:matrix(0.196883,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196883,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196883,0.002166,-0.002750,0.249985,0,0);}
.me6_c00060{transform:matrix(0.197270,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197270,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197270,0.001973,-0.002500,0.249988,0,0);}
.m86_c00060{transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);}
.md1_c00060{transform:matrix(0.197665,0.001977,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197665,0.001977,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197665,0.001977,-0.002500,0.249988,0,0);}
.m4f_c00060{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);}
.m33_c00060{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);}
.m59_c00060{transform:matrix(0.198033,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198033,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198033,0.002178,-0.002750,0.249985,0,0);}
.mfc_c00060{transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198620,0.001986,-0.002500,0.249988,0,0);}
.m17_c00060{transform:matrix(0.198849,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198849,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198849,0.001591,-0.002000,0.249992,0,0);}
.ma6_c00060{transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);}
.mfa_c00060{transform:matrix(0.199215,0.001992,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199215,0.001992,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199215,0.001992,-0.002500,0.249988,0,0);}
.m10e_c00060{transform:matrix(0.199603,0.002994,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199603,0.002994,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199603,0.002994,-0.003750,0.249972,0,0);}
.m8c_c00060{transform:matrix(0.199850,0.001999,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199850,0.001999,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199850,0.001999,-0.002500,0.249988,0,0);}
.ma4_c00060{transform:matrix(0.199950,0.002000,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199950,0.002000,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199950,0.002000,-0.002500,0.249988,0,0);}
.m22_c00060{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);}
.mfd_c00060{transform:matrix(0.200310,0.002003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200310,0.002003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200310,0.002003,-0.002500,0.249988,0,0);}
.m110_c00060{transform:matrix(0.201052,0.003016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201052,0.003016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201052,0.003016,-0.003750,0.249972,0,0);}
.m29_c00060{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);}
.mb5_c00060{transform:matrix(0.202445,0.002024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202445,0.002024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202445,0.002024,-0.002500,0.249988,0,0);}
.mb2_c00060{transform:matrix(0.202640,0.002026,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202640,0.002026,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202640,0.002026,-0.002500,0.249988,0,0);}
.ma8_c00060{transform:matrix(0.202935,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202935,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202935,0.002029,-0.002500,0.249988,0,0);}
.m2a_c00060{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);}
.m3f_c00060{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);}
.m76_c00060{transform:matrix(0.204673,0.002251,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204673,0.002251,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204673,0.002251,-0.002750,0.249985,0,0);}
.m72_c00060{transform:matrix(0.204933,0.002254,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204933,0.002254,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204933,0.002254,-0.002750,0.249985,0,0);}
.mf8_c00060{transform:matrix(0.204980,0.002050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204980,0.002050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204980,0.002050,-0.002500,0.249988,0,0);}
.m52_c00060{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);}
.m6f_c00060{transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);}
.mdd_c00060{transform:matrix(0.207770,0.002078,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207770,0.002078,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207770,0.002078,-0.002500,0.249988,0,0);}
.m1d_c00060{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);}
.ma7_c00060{transform:matrix(0.208085,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208085,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208085,0.002081,-0.002500,0.249988,0,0);}
.m26_c00060{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);}
.mfe_c00060{transform:matrix(0.208430,0.002084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208430,0.002084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208430,0.002084,-0.002500,0.249988,0,0);}
.m6a_c00060{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);}
.m9b_c00060{transform:matrix(0.210399,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210399,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210399,0.002104,-0.002500,0.249988,0,0);}
.m74_c00060{transform:matrix(0.210657,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210657,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210657,0.002317,-0.002750,0.249985,0,0);}
.m6d_c00060{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);}
.m77_c00060{transform:matrix(0.211847,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211847,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211847,0.002330,-0.002750,0.249985,0,0);}
.mcf_c00060{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);}
.ma3_c00060{transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);}
.m89_c00060{transform:matrix(0.214149,0.002141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214149,0.002141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214149,0.002141,-0.002500,0.249988,0,0);}
.m57_c00060{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);}
.md9_c00060{transform:matrix(0.215714,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215714,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215714,0.002157,-0.002500,0.249988,0,0);}
.m73_c00060{transform:matrix(0.215797,0.002374,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215797,0.002374,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215797,0.002374,-0.002750,0.249985,0,0);}
.m2e_c00060{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);}
.m92_c00060{transform:matrix(0.216319,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216319,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216319,0.002163,-0.002500,0.249988,0,0);}
.m106_c00060{transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216499,0.002165,-0.002500,0.249988,0,0);}
.mb3_c00060{transform:matrix(0.216689,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216689,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216689,0.002167,-0.002500,0.249988,0,0);}
.mc7_c00060{transform:matrix(0.216934,0.002169,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216934,0.002169,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216934,0.002169,-0.002500,0.249988,0,0);}
.mce_c00060{transform:matrix(0.217569,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217569,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217569,0.002176,-0.002500,0.249988,0,0);}
.m18_c00060{transform:matrix(0.217913,0.001743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217913,0.001743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217913,0.001743,-0.002000,0.249992,0,0);}
.m3d_c00060{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);}
.m1a_c00060{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);}
.m7f_c00060{transform:matrix(0.219172,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219172,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219172,0.002411,-0.002750,0.249985,0,0);}
.m25_c00060{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);}
.m113_c00060{transform:matrix(0.220755,0.003311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220755,0.003311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220755,0.003311,-0.003750,0.249972,0,0);}
.m4e_c00060{transform:matrix(0.221217,0.002433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221217,0.002433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221217,0.002433,-0.002750,0.249985,0,0);}
.m64_c00060{transform:matrix(0.221311,0.002877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221311,0.002877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221311,0.002877,-0.003250,0.249979,0,0);}
.m10d_c00060{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);}
.m45_c00060{transform:matrix(0.221487,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221487,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221487,0.002436,-0.002750,0.249985,0,0);}
.mab_c00060{transform:matrix(0.222209,0.002222,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222209,0.002222,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222209,0.002222,-0.002500,0.249988,0,0);}
.m5f_c00060{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);}
.m55_c00060{transform:matrix(0.224881,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224881,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224881,0.002474,-0.002750,0.249985,0,0);}
.mb9_c00060{transform:matrix(0.227329,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227329,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227329,0.002273,-0.002500,0.249988,0,0);}
.m9d_c00060{transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);}
.m5c_c00060{transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);}
.m10c_c00060{transform:matrix(0.228204,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228204,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228204,0.002282,-0.002500,0.249988,0,0);}
.md2_c00060{transform:matrix(0.231298,0.002313,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231298,0.002313,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231298,0.002313,-0.002500,0.249988,0,0);}
.mf1_c00060{transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);}
.m28_c00060{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);}
.m84_c00060{transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);}
.mac_c00060{transform:matrix(0.234928,0.002349,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234928,0.002349,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234928,0.002349,-0.002500,0.249988,0,0);}
.m5b_c00060{transform:matrix(0.235001,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235001,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235001,0.002585,-0.002750,0.249985,0,0);}
.m61_c00060{transform:matrix(0.235100,0.003056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235100,0.003056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235100,0.003056,-0.003250,0.249979,0,0);}
.ma5_c00060{transform:matrix(0.240798,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240798,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240798,0.002408,-0.002500,0.249988,0,0);}
.m31_c00060{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);}
.m16_c00060{transform:matrix(0.251782,0.002014,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251782,0.002014,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251782,0.002014,-0.002000,0.249992,0,0);}
.m9e_c00060{transform:matrix(0.251812,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251812,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251812,0.002518,-0.002500,0.249988,0,0);}
.m1f_c00060{transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);}
.m105_c00060{transform:matrix(0.262637,0.002626,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262637,0.002626,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262637,0.002626,-0.002500,0.249988,0,0);}
.m103_c00060{transform:matrix(0.262682,0.002627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262682,0.002627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262682,0.002627,-0.002500,0.249988,0,0);}
.mf0_c00060{transform:matrix(0.266387,0.002664,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266387,0.002664,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266387,0.002664,-0.002500,0.249988,0,0);}
.m2_c00060{transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);}
.m75_c00060{transform:matrix(0.277273,0.003050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277273,0.003050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277273,0.003050,-0.002750,0.249985,0,0);}
.mc1_c00060{transform:matrix(0.286336,0.002863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.286336,0.002863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.286336,0.002863,-0.002500,0.249988,0,0);}
.m104_c00060{transform:matrix(0.290105,0.002901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290105,0.002901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290105,0.002901,-0.002500,0.249988,0,0);}
.mad_c00060{transform:matrix(0.290480,0.002905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290480,0.002905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290480,0.002905,-0.002500,0.249988,0,0);}
.mc4_c00060{transform:matrix(0.299530,0.002995,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299530,0.002995,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299530,0.002995,-0.002500,0.249988,0,0);}
.m7_c00060{transform:matrix(0.308740,0.002470,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308740,0.002470,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308740,0.002470,-0.002000,0.249992,0,0);}
.m69_c00060{transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309440,0.000000,0.000000,0.250000,0,0);}
.mbe_c00060{transform:matrix(0.318319,0.003183,-0.002500,0.249988,0,0);-ms-transform:matrix(0.318319,0.003183,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.318319,0.003183,-0.002500,0.249988,0,0);}
.mf2_c00060{transform:matrix(0.322519,0.003225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.322519,0.003225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.322519,0.003225,-0.002500,0.249988,0,0);}
.ma2_c00060{transform:matrix(0.324339,0.003243,-0.002500,0.249988,0,0);-ms-transform:matrix(0.324339,0.003243,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.324339,0.003243,-0.002500,0.249988,0,0);}
.m83_c00060{transform:matrix(0.325955,0.003586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.325955,0.003586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.325955,0.003586,-0.002750,0.249985,0,0);}
.mb_c00060{transform:matrix(0.328949,0.002632,-0.002000,0.249992,0,0);-ms-transform:matrix(0.328949,0.002632,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.328949,0.002632,-0.002000,0.249992,0,0);}
.m8f_c00060{transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);-ms-transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);}
.mc0_c00060{transform:matrix(0.331903,0.003319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.331903,0.003319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.331903,0.003319,-0.002500,0.249988,0,0);}
.ma_c00060{transform:matrix(0.352914,0.002823,-0.002000,0.249992,0,0);-ms-transform:matrix(0.352914,0.002823,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.352914,0.002823,-0.002000,0.249992,0,0);}
.mcd_c00060{transform:matrix(0.357757,0.003578,-0.002500,0.249988,0,0);-ms-transform:matrix(0.357757,0.003578,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.357757,0.003578,-0.002500,0.249988,0,0);}
.m8_c00060{transform:matrix(0.367213,0.002938,-0.002000,0.249992,0,0);-ms-transform:matrix(0.367213,0.002938,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.367213,0.002938,-0.002000,0.249992,0,0);}
.mf_c00060{transform:matrix(0.373693,0.002990,-0.002000,0.249992,0,0);-ms-transform:matrix(0.373693,0.002990,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.373693,0.002990,-0.002000,0.249992,0,0);}
.m68_c00060{transform:matrix(0.381985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381985,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.383313,0.003067,-0.002000,0.249992,0,0);-ms-transform:matrix(0.383313,0.003067,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.383313,0.003067,-0.002000,0.249992,0,0);}
.m6b_c00060{transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);}
.mef_c00060{transform:matrix(0.396070,0.003961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.396070,0.003961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.396070,0.003961,-0.002500,0.249988,0,0);}
.mdc_c00060{transform:matrix(0.396565,0.003966,-0.002500,0.249988,0,0);-ms-transform:matrix(0.396565,0.003966,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.396565,0.003966,-0.002500,0.249988,0,0);}
.m9a_c00060{transform:matrix(0.403585,0.004036,-0.002500,0.249988,0,0);-ms-transform:matrix(0.403585,0.004036,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.403585,0.004036,-0.002500,0.249988,0,0);}
.me3_c00060{transform:matrix(0.407575,0.004076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.407575,0.004076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.407575,0.004076,-0.002500,0.249988,0,0);}
.md_c00060{transform:matrix(0.422721,0.003382,-0.002000,0.249992,0,0);-ms-transform:matrix(0.422721,0.003382,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.422721,0.003382,-0.002000,0.249992,0,0);}
.mc3_c00060{transform:matrix(0.427934,0.004279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.427934,0.004279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.427934,0.004279,-0.002500,0.249988,0,0);}
.mf9_c00060{transform:matrix(0.443543,0.004435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.443543,0.004435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.443543,0.004435,-0.002500,0.249988,0,0);}
.me_c00060{transform:matrix(0.447731,0.003582,-0.002000,0.249992,0,0);-ms-transform:matrix(0.447731,0.003582,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.447731,0.003582,-0.002000,0.249992,0,0);}
.m44_c00060{transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472660,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.475085,0.003801,-0.002000,0.249992,0,0);-ms-transform:matrix(0.475085,0.003801,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.475085,0.003801,-0.002000,0.249992,0,0);}
.mb4_c00060{transform:matrix(0.477196,0.004772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.477196,0.004772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.477196,0.004772,-0.002500,0.249988,0,0);}
.m1_c00060{transform:matrix(0.499719,0.003998,-0.002000,0.249992,0,0);-ms-transform:matrix(0.499719,0.003998,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.499719,0.003998,-0.002000,0.249992,0,0);}
.m6_c00060{transform:matrix(0.514454,0.004116,-0.002000,0.249992,0,0);-ms-transform:matrix(0.514454,0.004116,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.514454,0.004116,-0.002000,0.249992,0,0);}
.ma9_c00060{transform:matrix(0.682766,0.006828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.682766,0.006828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.682766,0.006828,-0.002500,0.249988,0,0);}
.m14_c00060{transform:matrix(0.768930,0.006151,-0.002000,0.249992,0,0);-ms-transform:matrix(0.768930,0.006151,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.768930,0.006151,-0.002000,0.249992,0,0);}
.md6_c00060{transform:matrix(0.772351,0.007724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.772351,0.007724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.772351,0.007724,-0.002500,0.249988,0,0);}
.mc_c00060{transform:matrix(2.473156,0.019785,-0.002000,0.249992,0,0);-ms-transform:matrix(2.473156,0.019785,-0.002000,0.249992,0,0);-webkit-transform:matrix(2.473156,0.019785,-0.002000,0.249992,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:34.651109px;}
.fsd_c00060{font-size:39.900000px;}
.fsb_c00060{font-size:61.953748px;}
.fse_c00060{font-size:66.154002px;}
.fs14_c00060{font-size:67.203360px;}
.fs13_c00060{font-size:68.253412px;}
.fs6_c00060{font-size:69.300000px;}
.fs18_c00060{font-size:69.303465px;}
.fs10_c00060{font-size:69.304193px;}
.fsc_c00060{font-size:69.305856px;}
.fs19_c00060{font-size:69.307796px;}
.fs15_c00060{font-size:70.353517px;}
.fsf_c00060{font-size:70.354256px;}
.fs4_c00060{font-size:71.400000px;}
.fs17_c00060{font-size:71.403570px;}
.fs9_c00060{font-size:71.404320px;}
.fs5_c00060{font-size:72.450000px;}
.fs12_c00060{font-size:72.453622px;}
.fsa_c00060{font-size:72.454383px;}
.fs7_c00060{font-size:73.500000px;}
.fs11_c00060{font-size:73.503675px;}
.fs16_c00060{font-size:75.603780px;}
.fs2_c00060{font-size:86.102755px;}
.fs3_c00060{font-size:92.402957px;}
.fs8_c00060{font-size:94.500000px;}
.fs1_c00060{font-size:110.253528px;}
.y0_c00060{bottom:0.000000px;}
.y106_c00060{bottom:144.819907px;}
.y105_c00060{bottom:145.101517px;}
.y104_c00060{bottom:146.675887px;}
.y103_c00060{bottom:147.384930px;}
.y102_c00060{bottom:147.809100px;}
.y101_c00060{bottom:148.494990px;}
.y100_c00060{bottom:148.952348px;}
.yff_c00060{bottom:149.313000px;}
.yfe_c00060{bottom:165.767070px;}
.yfd_c00060{bottom:166.154250px;}
.yfc_c00060{bottom:168.177945px;}
.yfb_c00060{bottom:168.437460px;}
.yfa_c00060{bottom:169.376460px;}
.yf9_c00060{bottom:170.305935px;}
.yf8_c00060{bottom:171.090240px;}
.yf7_c00060{bottom:171.507735px;}
.yf6_c00060{bottom:171.712005px;}
.yf5_c00060{bottom:188.369685px;}
.yf4_c00060{bottom:190.493685px;}
.yf3_c00060{bottom:191.065470px;}
.yf2_c00060{bottom:191.551035px;}
.yf1_c00060{bottom:191.873820px;}
.yf0_c00060{bottom:192.506010px;}
.yef_c00060{bottom:193.337925px;}
.yee_c00060{bottom:193.670370px;}
.yed_c00060{bottom:193.912815px;}
.yec_c00060{bottom:194.256885px;}
.yeb_c00060{bottom:211.206015px;}
.yea_c00060{bottom:211.394670px;}
.ye9_c00060{bottom:213.696465px;}
.ye8_c00060{bottom:214.022820px;}
.ye7_c00060{bottom:214.323930px;}
.ye6_c00060{bottom:215.194575px;}
.ye5_c00060{bottom:215.935365px;}
.ye4_c00060{bottom:216.106860px;}
.ye3_c00060{bottom:216.646950px;}
.ye2_c00060{bottom:217.882305px;}
.ye1_c00060{bottom:235.133355px;}
.ye0_c00060{bottom:235.433550px;}
.ydf_c00060{bottom:237.353865px;}
.yde_c00060{bottom:237.620940px;}
.ydd_c00060{bottom:238.013400px;}
.ydc_c00060{bottom:238.381125px;}
.ydb_c00060{bottom:238.730760px;}
.yda_c00060{bottom:239.189220px;}
.yd9_c00060{bottom:239.616495px;}
.yd8_c00060{bottom:240.092535px;}
.yd7_c00060{bottom:240.561105px;}
.yd6_c00060{bottom:257.890515px;}
.yd5_c00060{bottom:258.360825px;}
.yd4_c00060{bottom:259.470585px;}
.yd3_c00060{bottom:260.480175px;}
.yd2_c00060{bottom:261.070965px;}
.yd1_c00060{bottom:261.352350px;}
.yd0_c00060{bottom:262.073325px;}
.ycf_c00060{bottom:262.423815px;}
.yce_c00060{bottom:262.702335px;}
.ycd_c00060{bottom:280.799850px;}
.ycc_c00060{bottom:283.991820px;}
.ycb_c00060{bottom:284.424495px;}
.yca_c00060{bottom:284.989080px;}
.yc9_c00060{bottom:285.243765px;}
.yc8_c00060{bottom:285.920910px;}
.yc7_c00060{bottom:303.591705px;}
.yc6_c00060{bottom:305.477130px;}
.yc5_c00060{bottom:305.820120px;}
.yc4_c00060{bottom:306.154410px;}
.yc3_c00060{bottom:306.360030px;}
.yc2_c00060{bottom:307.027110px;}
.yc1_c00060{bottom:307.694295px;}
.yc0_c00060{bottom:307.996680px;}
.ybf_c00060{bottom:308.331225px;}
.ybe_c00060{bottom:325.386285px;}
.ybd_c00060{bottom:326.912790px;}
.ybc_c00060{bottom:327.220395px;}
.ybb_c00060{bottom:327.708510px;}
.yba_c00060{bottom:328.056540px;}
.yb9_c00060{bottom:328.701870px;}
.yb8_c00060{bottom:329.058690px;}
.yb7_c00060{bottom:329.723340px;}
.yb6_c00060{bottom:330.387930px;}
.yb5_c00060{bottom:331.281090px;}
.yb4_c00060{bottom:349.721730px;}
.yb3_c00060{bottom:350.333985px;}
.yb2_c00060{bottom:352.243650px;}
.yb1_c00060{bottom:352.802550px;}
.yb0_c00060{bottom:354.505350px;}
.yaf_c00060{bottom:371.633535px;}
.yae_c00060{bottom:373.064775px;}
.yad_c00060{bottom:373.213020px;}
.yac_c00060{bottom:373.648395px;}
.yab_c00060{bottom:374.045055px;}
.yaa_c00060{bottom:374.251995px;}
.ya9_c00060{bottom:374.643330px;}
.ya8_c00060{bottom:375.002100px;}
.ya7_c00060{bottom:375.286410px;}
.ya6_c00060{bottom:375.838155px;}
.ya5_c00060{bottom:394.299285px;}
.ya4_c00060{bottom:396.084810px;}
.ya3_c00060{bottom:396.316620px;}
.ya2_c00060{bottom:396.862095px;}
.ya1_c00060{bottom:397.105275px;}
.ya0_c00060{bottom:397.466625px;}
.y9f_c00060{bottom:398.201745px;}
.y9e_c00060{bottom:398.342055px;}
.y9d_c00060{bottom:398.647485px;}
.y9c_c00060{bottom:398.979465px;}
.y9b_c00060{bottom:399.058710px;}
.y9a_c00060{bottom:416.947425px;}
.y99_c00060{bottom:419.275590px;}
.y98_c00060{bottom:420.358005px;}
.y97_c00060{bottom:420.811080px;}
.y96_c00060{bottom:421.306125px;}
.y95_c00060{bottom:421.614120px;}
.y94_c00060{bottom:422.550420px;}
.y93_c00060{bottom:439.348530px;}
.y92_c00060{bottom:441.680490px;}
.y91_c00060{bottom:441.869940px;}
.y90_c00060{bottom:442.464015px;}
.y8f_c00060{bottom:442.639455px;}
.y8e_c00060{bottom:443.171490px;}
.y8d_c00060{bottom:443.711460px;}
.y8c_c00060{bottom:444.151455px;}
.y8b_c00060{bottom:462.478155px;}
.y8a_c00060{bottom:464.238885px;}
.y89_c00060{bottom:464.483310px;}
.y88_c00060{bottom:464.853255px;}
.y87_c00060{bottom:465.569130px;}
.y86_c00060{bottom:466.085490px;}
.y85_c00060{bottom:466.833405px;}
.y84_c00060{bottom:467.177580px;}
.y83_c00060{bottom:467.674080px;}
.y82_c00060{bottom:467.738520px;}
.y81_c00060{bottom:467.910885px;}
.y80_c00060{bottom:484.956885px;}
.y7f_c00060{bottom:486.581940px;}
.y7e_c00060{bottom:486.897420px;}
.y7d_c00060{bottom:487.170585px;}
.y7c_c00060{bottom:487.507980px;}
.y7b_c00060{bottom:487.742565px;}
.y7a_c00060{bottom:488.609655px;}
.y79_c00060{bottom:489.500850px;}
.y78_c00060{bottom:489.781500px;}
.y77_c00060{bottom:512.259357px;}
.y73_c00060{bottom:512.259588px;}
.y74_c00060{bottom:512.260041px;}
.y76_c00060{bottom:512.260074px;}
.y72_c00060{bottom:512.260141px;}
.y71_c00060{bottom:512.260485px;}
.y70_c00060{bottom:512.260559px;}
.y75_c00060{bottom:512.260687px;}
.y6f_c00060{bottom:512.260752px;}
.y6e_c00060{bottom:532.858240px;}
.y6d_c00060{bottom:533.141574px;}
.y6c_c00060{bottom:533.490303px;}
.y6b_c00060{bottom:533.706920px;}
.y6a_c00060{bottom:534.029857px;}
.y69_c00060{bottom:534.702564px;}
.y68_c00060{bottom:535.050781px;}
.y67_c00060{bottom:535.515369px;}
.y66_c00060{bottom:535.950022px;}
.y65_c00060{bottom:555.703091px;}
.y64_c00060{bottom:555.961464px;}
.y63_c00060{bottom:556.196144px;}
.y62_c00060{bottom:556.487385px;}
.y61_c00060{bottom:556.665156px;}
.y60_c00060{bottom:556.931911px;}
.y5f_c00060{bottom:557.906566px;}
.y5e_c00060{bottom:558.307500px;}
.y5d_c00060{bottom:558.901500px;}
.y5c_c00060{bottom:581.455500px;}
.y5b_c00060{bottom:599.426133px;}
.y5a_c00060{bottom:600.050991px;}
.y59_c00060{bottom:600.423149px;}
.y58_c00060{bottom:600.802287px;}
.y57_c00060{bottom:601.265529px;}
.y56_c00060{bottom:601.567447px;}
.y55_c00060{bottom:602.301564px;}
.y54_c00060{bottom:602.908150px;}
.y53_c00060{bottom:603.180000px;}
.y4e_c00060{bottom:623.079858px;}
.y4f_c00060{bottom:623.079951px;}
.y4c_c00060{bottom:623.079988px;}
.y4d_c00060{bottom:623.080605px;}
.y50_c00060{bottom:623.080657px;}
.y51_c00060{bottom:623.080783px;}
.y52_c00060{bottom:623.080803px;}
.y4b_c00060{bottom:644.403385px;}
.y4a_c00060{bottom:644.663501px;}
.y49_c00060{bottom:645.206091px;}
.y48_c00060{bottom:645.519061px;}
.y47_c00060{bottom:645.865200px;}
.y46_c00060{bottom:646.075431px;}
.y45_c00060{bottom:646.458154px;}
.y44_c00060{bottom:646.892956px;}
.y43_c00060{bottom:647.189524px;}
.y42_c00060{bottom:666.814187px;}
.y41_c00060{bottom:667.256782px;}
.y40_c00060{bottom:667.874542px;}
.y3f_c00060{bottom:668.539905px;}
.y3e_c00060{bottom:668.982468px;}
.y3d_c00060{bottom:669.243283px;}
.y3c_c00060{bottom:669.582425px;}
.y3b_c00060{bottom:669.757028px;}
.y3a_c00060{bottom:670.411500px;}
.y39_c00060{bottom:691.579500px;}
.y38_c00060{bottom:712.738500px;}
.y37_c00060{bottom:712.947000px;}
.y36_c00060{bottom:713.166000px;}
.y35_c00060{bottom:713.458500px;}
.y34_c00060{bottom:713.920500px;}
.y33_c00060{bottom:714.217500px;}
.y32_c00060{bottom:714.387000px;}
.y31_c00060{bottom:714.846000px;}
.y30_c00060{bottom:715.045500px;}
.y2f_c00060{bottom:715.386000px;}
.y2e_c00060{bottom:715.770000px;}
.y2d_c00060{bottom:736.522500px;}
.y2c_c00060{bottom:736.719000px;}
.y2b_c00060{bottom:737.224500px;}
.y2a_c00060{bottom:737.605500px;}
.y29_c00060{bottom:737.937000px;}
.y28_c00060{bottom:738.331500px;}
.y27_c00060{bottom:738.925500px;}
.y26_c00060{bottom:739.260000px;}
.y25_c00060{bottom:758.998500px;}
.y24_c00060{bottom:759.414000px;}
.y23_c00060{bottom:759.663000px;}
.y22_c00060{bottom:760.006500px;}
.y21_c00060{bottom:760.792500px;}
.y20_c00060{bottom:761.130000px;}
.y1f_c00060{bottom:761.551500px;}
.y1e_c00060{bottom:761.818500px;}
.y1d_c00060{bottom:762.210000px;}
.y1c_c00060{bottom:782.928000px;}
.y1b_c00060{bottom:806.623500px;}
.y18_c00060{bottom:853.191000px;}
.y17_c00060{bottom:853.191060px;}
.y16_c00060{bottom:853.191444px;}
.y19_c00060{bottom:853.191732px;}
.y15_c00060{bottom:853.191864px;}
.y1a_c00060{bottom:853.192296px;}
.y14_c00060{bottom:880.633800px;}
.y13_c00060{bottom:881.024196px;}
.y12_c00060{bottom:883.708284px;}
.y11_c00060{bottom:893.156268px;}
.ye_c00060{bottom:893.156448px;}
.yd_c00060{bottom:893.156820px;}
.yf_c00060{bottom:893.156832px;}
.y10_c00060{bottom:893.156976px;}
.yc_c00060{bottom:919.440216px;}
.yb_c00060{bottom:919.840524px;}
.ya_c00060{bottom:920.176536px;}
.y9_c00060{bottom:920.287476px;}
.y8_c00060{bottom:920.878836px;}
.y7_c00060{bottom:921.376344px;}
.y6_c00060{bottom:921.954996px;}
.y5_c00060{bottom:922.160412px;}
.y4_c00060{bottom:922.389192px;}
.y3_c00060{bottom:923.110872px;}
.y2_c00060{bottom:923.264820px;}
.y1_c00060{bottom:923.670000px;}
.h2_c00060{height:34.651109px;}
.hf_c00060{height:39.900000px;}
.hd_c00060{height:61.953748px;}
.h10_c00060{height:66.154002px;}
.h16_c00060{height:67.203360px;}
.h15_c00060{height:68.253412px;}
.h8_c00060{height:69.300000px;}
.h1a_c00060{height:69.303465px;}
.h12_c00060{height:69.304193px;}
.he_c00060{height:69.305856px;}
.h1b_c00060{height:69.307796px;}
.h17_c00060{height:70.353517px;}
.h11_c00060{height:70.354256px;}
.h6_c00060{height:71.400000px;}
.h19_c00060{height:71.403570px;}
.hb_c00060{height:71.404320px;}
.h7_c00060{height:72.450000px;}
.h14_c00060{height:72.453622px;}
.hc_c00060{height:72.454383px;}
.h9_c00060{height:73.500000px;}
.h13_c00060{height:73.503675px;}
.h18_c00060{height:75.603780px;}
.h4_c00060{height:86.102755px;}
.h5_c00060{height:92.402957px;}
.ha_c00060{height:94.500000px;}
.h3_c00060{height:110.253528px;}
.h1_c00060{height:1005.000000px;}
.h0_c00060{height:1005.150000px;}
.w0_c00060{width:732.750000px;}
.x0_c00060{left:0.000000px;}
.x13_c00060{left:38.878380px;}
.xd_c00060{left:55.079616px;}
.x1_c00060{left:67.489500px;}
.x96_c00060{left:105.678105px;}
.x82_c00060{left:111.134025px;}
.x6d_c00060{left:115.421115px;}
.x2_c00060{left:118.137000px;}
.x9f_c00060{left:122.948175px;}
.x7f_c00060{left:125.791710px;}
.x6e_c00060{left:131.157465px;}
.x78_c00060{left:133.101930px;}
.x3_c00060{left:137.380500px;}
.x4b_c00060{left:139.438500px;}
.x92_c00060{left:140.528355px;}
.x2e_c00060{left:141.561000px;}
.x18_c00060{left:143.910000px;}
.x25_c00060{left:145.141500px;}
.x19_c00060{left:164.430000px;}
.x64_c00060{left:167.132936px;}
.x8e_c00060{left:168.928800px;}
.x68_c00060{left:170.496000px;}
.x41_c00060{left:173.195861px;}
.x46_c00060{left:174.420605px;}
.x1d_c00060{left:175.770000px;}
.x1a_c00060{left:182.790000px;}
.x26_c00060{left:184.327500px;}
.x34_c00060{left:186.202500px;}
.x14_c00060{left:193.863792px;}
.x57_c00060{left:196.966500px;}
.x97_c00060{left:200.710755px;}
.x3d_c00060{left:203.490000px;}
.x79_c00060{left:204.767430px;}
.x27_c00060{left:211.009500px;}
.x6f_c00060{left:213.418140px;}
.x1b_c00060{left:216.000000px;}
.x65_c00060{left:217.085975px;}
.x7a_c00060{left:218.798430px;}
.xe_c00060{left:220.324188px;}
.x47_c00060{left:221.403281px;}
.x35_c00060{left:224.016000px;}
.x8c_c00060{left:226.383675px;}
.x4_c00060{left:227.590500px;}
.x1e_c00060{left:230.850000px;}
.x5f_c00060{left:232.098458px;}
.x58_c00060{left:233.415000px;}
.x2f_c00060{left:234.498000px;}
.x73_c00060{left:240.425745px;}
.x4c_c00060{left:242.569500px;}
.x36_c00060{left:246.115500px;}
.x1f_c00060{left:250.020000px;}
.x28_c00060{left:253.134000px;}
.x42_c00060{left:255.017268px;}
.x5_c00060{left:256.188000px;}
.x69_c00060{left:259.615500px;}
.x48_c00060{left:262.445247px;}
.x88_c00060{left:263.654760px;}
.x4d_c00060{left:265.794000px;}
.x60_c00060{left:266.891337px;}
.xa2_c00060{left:268.470000px;}
.x30_c00060{left:273.912000px;}
.x43_c00060{left:276.038499px;}
.x8d_c00060{left:277.741665px;}
.x6_c00060{left:281.865000px;}
.x1c_c00060{left:283.500000px;}
.x29_c00060{left:286.872000px;}
.x7b_c00060{left:292.310430px;}
.x74_c00060{left:293.629245px;}
.x49_c00060{left:295.657773px;}
.x37_c00060{left:297.156000px;}
.x4e_c00060{left:301.428000px;}
.x8f_c00060{left:304.213800px;}
.x20_c00060{left:305.370000px;}
.x31_c00060{left:307.126500px;}
.x44_c00060{left:310.642379px;}
.x98_c00060{left:312.494910px;}
.x3e_c00060{left:314.137500px;}
.x38_c00060{left:316.042500px;}
.x7d_c00060{left:317.943870px;}
.x59_c00060{left:322.020000px;}
.x9b_c00060{left:323.088285px;}
.x76_c00060{left:324.654555px;}
.x83_c00060{left:326.001720px;}
.x70_c00060{left:328.444500px;}
.x4f_c00060{left:330.592500px;}
.x61_c00060{left:334.183580px;}
.xf_c00060{left:336.158604px;}
.x66_c00060{left:337.243011px;}
.x93_c00060{left:338.724375px;}
.x7e_c00060{left:340.888095px;}
.x21_c00060{left:342.900000px;}
.x32_c00060{left:345.184500px;}
.x5a_c00060{left:346.270500px;}
.x9c_c00060{left:347.866035px;}
.x39_c00060{left:348.984000px;}
.x89_c00060{left:350.924760px;}
.x7c_c00060{left:352.763430px;}
.x7_c00060{left:354.196500px;}
.x50_c00060{left:359.220000px;}
.x5b_c00060{left:362.431500px;}
.x2a_c00060{left:365.442000px;}
.x62_c00060{left:366.541943px;}
.x6a_c00060{left:369.783000px;}
.x94_c00060{left:372.196545px;}
.x22_c00060{left:373.950000px;}
.x84_c00060{left:379.733640px;}
.x67_c00060{left:384.495720px;}
.x5c_c00060{left:388.908000px;}
.x4a_c00060{left:390.703274px;}
.x71_c00060{left:393.581355px;}
.x33_c00060{left:395.685000px;}
.x2b_c00060{left:399.739500px;}
.x99_c00060{left:402.667710px;}
.x52_c00060{left:404.460000px;}
.x51_c00060{left:407.286000px;}
.x85_c00060{left:408.686055px;}
.x5d_c00060{left:410.242500px;}
.x15_c00060{left:411.760236px;}
.x77_c00060{left:414.894255px;}
.x8_c00060{left:416.385000px;}
.xa0_c00060{left:417.548295px;}
.x8a_c00060{left:418.652760px;}
.xa3_c00060{left:420.697500px;}
.x45_c00060{left:422.159600px;}
.x2c_c00060{left:424.620000px;}
.x23_c00060{left:427.140000px;}
.x9d_c00060{left:429.148590px;}
.x3f_c00060{left:430.785000px;}
.x3a_c00060{left:432.723000px;}
.x5e_c00060{left:433.731000px;}
.xa4_c00060{left:439.471500px;}
.x24_c00060{left:442.530000px;}
.x53_c00060{left:444.690000px;}
.x10_c00060{left:449.022828px;}
.x63_c00060{left:451.331867px;}
.x3b_c00060{left:456.984000px;}
.x6b_c00060{left:462.387000px;}
.x90_c00060{left:464.251800px;}
.x2d_c00060{left:466.155000px;}
.x40_c00060{left:471.021000px;}
.x86_c00060{left:475.056735px;}
.x54_c00060{left:478.170000px;}
.x3c_c00060{left:480.207000px;}
.x16_c00060{left:481.423200px;}
.x55_c00060{left:486.000000px;}
.x9_c00060{left:490.305000px;}
.xa_c00060{left:504.172500px;}
.x11_c00060{left:514.365504px;}
.x56_c00060{left:517.860000px;}
.x80_c00060{left:542.928210px;}
.xb_c00060{left:546.174000px;}
.x17_c00060{left:564.045492px;}
.x91_c00060{left:575.227800px;}
.x12_c00060{left:579.202980px;}
.xa1_c00060{left:586.164420px;}
.x9e_c00060{left:592.493685px;}
.xc_c00060{left:596.212500px;}
.x87_c00060{left:602.204685px;}
.x81_c00060{left:604.153710px;}
.x8b_c00060{left:607.195260px;}
.x72_c00060{left:609.489195px;}
.x9a_c00060{left:619.391715px;}
.x75_c00060{left:622.721745px;}
.x6c_c00060{left:624.892500px;}
.x95_c00060{left:634.098435px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs0_c00060{font-size:30.800986pt;}
.fsd_c00060{font-size:35.466667pt;}
.fsb_c00060{font-size:55.069998pt;}
.fse_c00060{font-size:58.803557pt;}
.fs14_c00060{font-size:59.736320pt;}
.fs13_c00060{font-size:60.669700pt;}
.fs6_c00060{font-size:61.600000pt;}
.fs18_c00060{font-size:61.603080pt;}
.fs10_c00060{font-size:61.603727pt;}
.fsc_c00060{font-size:61.605205pt;}
.fs19_c00060{font-size:61.606930pt;}
.fs15_c00060{font-size:62.536460pt;}
.fsf_c00060{font-size:62.537116pt;}
.fs4_c00060{font-size:63.466667pt;}
.fs17_c00060{font-size:63.469840pt;}
.fs9_c00060{font-size:63.470506pt;}
.fs5_c00060{font-size:64.400000pt;}
.fs12_c00060{font-size:64.403220pt;}
.fsa_c00060{font-size:64.403896pt;}
.fs7_c00060{font-size:65.333333pt;}
.fs11_c00060{font-size:65.336600pt;}
.fs16_c00060{font-size:67.203360pt;}
.fs2_c00060{font-size:76.535782pt;}
.fs3_c00060{font-size:82.135962pt;}
.fs8_c00060{font-size:84.000000pt;}
.fs1_c00060{font-size:98.003136pt;}
.y0_c00060{bottom:0.000000pt;}
.y106_c00060{bottom:128.728807pt;}
.y105_c00060{bottom:128.979127pt;}
.y104_c00060{bottom:130.378567pt;}
.y103_c00060{bottom:131.008827pt;}
.y102_c00060{bottom:131.385867pt;}
.y101_c00060{bottom:131.995547pt;}
.y100_c00060{bottom:132.402087pt;}
.yff_c00060{bottom:132.722667pt;}
.yfe_c00060{bottom:147.348507pt;}
.yfd_c00060{bottom:147.692667pt;}
.yfc_c00060{bottom:149.491507pt;}
.yfb_c00060{bottom:149.722187pt;}
.yfa_c00060{bottom:150.556853pt;}
.yf9_c00060{bottom:151.383053pt;}
.yf8_c00060{bottom:152.080213pt;}
.yf7_c00060{bottom:152.451320pt;}
.yf6_c00060{bottom:152.632893pt;}
.yf5_c00060{bottom:167.439720pt;}
.yf4_c00060{bottom:169.327720pt;}
.yf3_c00060{bottom:169.835973pt;}
.yf2_c00060{bottom:170.267587pt;}
.yf1_c00060{bottom:170.554507pt;}
.yf0_c00060{bottom:171.116453pt;}
.yef_c00060{bottom:171.855933pt;}
.yee_c00060{bottom:172.151440pt;}
.yed_c00060{bottom:172.366947pt;}
.yec_c00060{bottom:172.672787pt;}
.yeb_c00060{bottom:187.738680pt;}
.yea_c00060{bottom:187.906373pt;}
.ye9_c00060{bottom:189.952413pt;}
.ye8_c00060{bottom:190.242507pt;}
.ye7_c00060{bottom:190.510160pt;}
.ye6_c00060{bottom:191.284067pt;}
.ye5_c00060{bottom:191.942547pt;}
.ye4_c00060{bottom:192.094987pt;}
.ye3_c00060{bottom:192.575067pt;}
.ye2_c00060{bottom:193.673160pt;}
.ye1_c00060{bottom:209.007427pt;}
.ye0_c00060{bottom:209.274267pt;}
.ydf_c00060{bottom:210.981213pt;}
.yde_c00060{bottom:211.218613pt;}
.ydd_c00060{bottom:211.567467pt;}
.ydc_c00060{bottom:211.894333pt;}
.ydb_c00060{bottom:212.205120pt;}
.yda_c00060{bottom:212.612640pt;}
.yd9_c00060{bottom:212.992440pt;}
.yd8_c00060{bottom:213.415587pt;}
.yd7_c00060{bottom:213.832093pt;}
.yd6_c00060{bottom:229.236013pt;}
.yd5_c00060{bottom:229.654067pt;}
.yd4_c00060{bottom:230.640520pt;}
.yd3_c00060{bottom:231.537933pt;}
.yd2_c00060{bottom:232.063080pt;}
.yd1_c00060{bottom:232.313200pt;}
.yd0_c00060{bottom:232.954067pt;}
.ycf_c00060{bottom:233.265613pt;}
.yce_c00060{bottom:233.513187pt;}
.ycd_c00060{bottom:249.599867pt;}
.ycc_c00060{bottom:252.437173pt;}
.ycb_c00060{bottom:252.821773pt;}
.yca_c00060{bottom:253.323627pt;}
.yc9_c00060{bottom:253.550013pt;}
.yc8_c00060{bottom:254.151920pt;}
.yc7_c00060{bottom:269.859293pt;}
.yc6_c00060{bottom:271.535227pt;}
.yc5_c00060{bottom:271.840107pt;}
.yc4_c00060{bottom:272.137253pt;}
.yc3_c00060{bottom:272.320027pt;}
.yc2_c00060{bottom:272.912987pt;}
.yc1_c00060{bottom:273.506040pt;}
.yc0_c00060{bottom:273.774827pt;}
.ybf_c00060{bottom:274.072200pt;}
.ybe_c00060{bottom:289.232253pt;}
.ybd_c00060{bottom:290.589147pt;}
.ybc_c00060{bottom:290.862573pt;}
.ybb_c00060{bottom:291.296453pt;}
.yba_c00060{bottom:291.605813pt;}
.yb9_c00060{bottom:292.179440pt;}
.yb8_c00060{bottom:292.496613pt;}
.yb7_c00060{bottom:293.087413pt;}
.yb6_c00060{bottom:293.678160pt;}
.yb5_c00060{bottom:294.472080pt;}
.yb4_c00060{bottom:310.863760pt;}
.yb3_c00060{bottom:311.407987pt;}
.yb2_c00060{bottom:313.105467pt;}
.yb1_c00060{bottom:313.602267pt;}
.yb0_c00060{bottom:315.115867pt;}
.yaf_c00060{bottom:330.340920pt;}
.yae_c00060{bottom:331.613133pt;}
.yad_c00060{bottom:331.744907pt;}
.yac_c00060{bottom:332.131907pt;}
.yab_c00060{bottom:332.484493pt;}
.yaa_c00060{bottom:332.668440pt;}
.ya9_c00060{bottom:333.016293pt;}
.ya8_c00060{bottom:333.335200pt;}
.ya7_c00060{bottom:333.587920pt;}
.ya6_c00060{bottom:334.078360pt;}
.ya5_c00060{bottom:350.488253pt;}
.ya4_c00060{bottom:352.075387pt;}
.ya3_c00060{bottom:352.281440pt;}
.ya2_c00060{bottom:352.766307pt;}
.ya1_c00060{bottom:352.982467pt;}
.ya0_c00060{bottom:353.303667pt;}
.y9f_c00060{bottom:353.957107pt;}
.y9e_c00060{bottom:354.081827pt;}
.y9d_c00060{bottom:354.353320pt;}
.y9c_c00060{bottom:354.648413pt;}
.y9b_c00060{bottom:354.718853pt;}
.y9a_c00060{bottom:370.619933pt;}
.y99_c00060{bottom:372.689413pt;}
.y98_c00060{bottom:373.651560pt;}
.y97_c00060{bottom:374.054293pt;}
.y96_c00060{bottom:374.494333pt;}
.y95_c00060{bottom:374.768107pt;}
.y94_c00060{bottom:375.600373pt;}
.y93_c00060{bottom:390.532027pt;}
.y92_c00060{bottom:392.604880pt;}
.y91_c00060{bottom:392.773280pt;}
.y90_c00060{bottom:393.301347pt;}
.y8f_c00060{bottom:393.457293pt;}
.y8e_c00060{bottom:393.930213pt;}
.y8d_c00060{bottom:394.410187pt;}
.y8c_c00060{bottom:394.801293pt;}
.y8b_c00060{bottom:411.091693pt;}
.y8a_c00060{bottom:412.656787pt;}
.y89_c00060{bottom:412.874053pt;}
.y88_c00060{bottom:413.202893pt;}
.y87_c00060{bottom:413.839227pt;}
.y86_c00060{bottom:414.298213pt;}
.y85_c00060{bottom:414.963027pt;}
.y84_c00060{bottom:415.268960pt;}
.y83_c00060{bottom:415.710293pt;}
.y82_c00060{bottom:415.767573pt;}
.y81_c00060{bottom:415.920787pt;}
.y80_c00060{bottom:431.072787pt;}
.y7f_c00060{bottom:432.517280pt;}
.y7e_c00060{bottom:432.797707pt;}
.y7d_c00060{bottom:433.040520pt;}
.y7c_c00060{bottom:433.340427pt;}
.y7b_c00060{bottom:433.548947pt;}
.y7a_c00060{bottom:434.319693pt;}
.y79_c00060{bottom:435.111867pt;}
.y78_c00060{bottom:435.361333pt;}
.y77_c00060{bottom:455.341651pt;}
.y73_c00060{bottom:455.341856pt;}
.y74_c00060{bottom:455.342259pt;}
.y76_c00060{bottom:455.342288pt;}
.y72_c00060{bottom:455.342348pt;}
.y71_c00060{bottom:455.342653pt;}
.y70_c00060{bottom:455.342719pt;}
.y75_c00060{bottom:455.342833pt;}
.y6f_c00060{bottom:455.342891pt;}
.y6e_c00060{bottom:473.651769pt;}
.y6d_c00060{bottom:473.903621pt;}
.y6c_c00060{bottom:474.213603pt;}
.y6b_c00060{bottom:474.406151pt;}
.y6a_c00060{bottom:474.693207pt;}
.y69_c00060{bottom:475.291168pt;}
.y68_c00060{bottom:475.600695pt;}
.y67_c00060{bottom:476.013661pt;}
.y66_c00060{bottom:476.400020pt;}
.y65_c00060{bottom:493.958303pt;}
.y64_c00060{bottom:494.187968pt;}
.y63_c00060{bottom:494.396572pt;}
.y62_c00060{bottom:494.655453pt;}
.y61_c00060{bottom:494.813472pt;}
.y60_c00060{bottom:495.050588pt;}
.y5f_c00060{bottom:495.916948pt;}
.y5e_c00060{bottom:496.273333pt;}
.y5d_c00060{bottom:496.801333pt;}
.y5c_c00060{bottom:516.849333pt;}
.y5b_c00060{bottom:532.823229pt;}
.y5a_c00060{bottom:533.378659pt;}
.y59_c00060{bottom:533.709465pt;}
.y58_c00060{bottom:534.046477pt;}
.y57_c00060{bottom:534.458248pt;}
.y56_c00060{bottom:534.726620pt;}
.y55_c00060{bottom:535.379168pt;}
.y54_c00060{bottom:535.918356pt;}
.y53_c00060{bottom:536.160000pt;}
.y4e_c00060{bottom:553.848763pt;}
.y4f_c00060{bottom:553.848845pt;}
.y4c_c00060{bottom:553.848879pt;}
.y4d_c00060{bottom:553.849427pt;}
.y50_c00060{bottom:553.849473pt;}
.y51_c00060{bottom:553.849585pt;}
.y52_c00060{bottom:553.849603pt;}
.y4b_c00060{bottom:572.803009pt;}
.y4a_c00060{bottom:573.034223pt;}
.y49_c00060{bottom:573.516525pt;}
.y48_c00060{bottom:573.794721pt;}
.y47_c00060{bottom:574.102400pt;}
.y46_c00060{bottom:574.289272pt;}
.y45_c00060{bottom:574.629471pt;}
.y44_c00060{bottom:575.015961pt;}
.y43_c00060{bottom:575.279577pt;}
.y42_c00060{bottom:592.723721pt;}
.y41_c00060{bottom:593.117140pt;}
.y40_c00060{bottom:593.666260pt;}
.y3f_c00060{bottom:594.257693pt;}
.y3e_c00060{bottom:594.651083pt;}
.y3d_c00060{bottom:594.882919pt;}
.y3c_c00060{bottom:595.184377pt;}
.y3b_c00060{bottom:595.339580pt;}
.y3a_c00060{bottom:595.921333pt;}
.y39_c00060{bottom:614.737333pt;}
.y38_c00060{bottom:633.545333pt;}
.y37_c00060{bottom:633.730667pt;}
.y36_c00060{bottom:633.925333pt;}
.y35_c00060{bottom:634.185333pt;}
.y34_c00060{bottom:634.596000pt;}
.y33_c00060{bottom:634.860000pt;}
.y32_c00060{bottom:635.010667pt;}
.y31_c00060{bottom:635.418667pt;}
.y30_c00060{bottom:635.596000pt;}
.y2f_c00060{bottom:635.898667pt;}
.y2e_c00060{bottom:636.240000pt;}
.y2d_c00060{bottom:654.686667pt;}
.y2c_c00060{bottom:654.861333pt;}
.y2b_c00060{bottom:655.310667pt;}
.y2a_c00060{bottom:655.649333pt;}
.y29_c00060{bottom:655.944000pt;}
.y28_c00060{bottom:656.294667pt;}
.y27_c00060{bottom:656.822667pt;}
.y26_c00060{bottom:657.120000pt;}
.y25_c00060{bottom:674.665333pt;}
.y24_c00060{bottom:675.034667pt;}
.y23_c00060{bottom:675.256000pt;}
.y22_c00060{bottom:675.561333pt;}
.y21_c00060{bottom:676.260000pt;}
.y20_c00060{bottom:676.560000pt;}
.y1f_c00060{bottom:676.934667pt;}
.y1e_c00060{bottom:677.172000pt;}
.y1d_c00060{bottom:677.520000pt;}
.y1c_c00060{bottom:695.936000pt;}
.y1b_c00060{bottom:716.998667pt;}
.y18_c00060{bottom:758.392000pt;}
.y17_c00060{bottom:758.392053pt;}
.y16_c00060{bottom:758.392395pt;}
.y19_c00060{bottom:758.392651pt;}
.y15_c00060{bottom:758.392768pt;}
.y1a_c00060{bottom:758.393152pt;}
.y14_c00060{bottom:782.785600pt;}
.y13_c00060{bottom:783.132619pt;}
.y12_c00060{bottom:785.518475pt;}
.y11_c00060{bottom:793.916683pt;}
.ye_c00060{bottom:793.916843pt;}
.yd_c00060{bottom:793.917173pt;}
.yf_c00060{bottom:793.917184pt;}
.y10_c00060{bottom:793.917312pt;}
.yc_c00060{bottom:817.280192pt;}
.yb_c00060{bottom:817.636021pt;}
.ya_c00060{bottom:817.934699pt;}
.y9_c00060{bottom:818.033312pt;}
.y8_c00060{bottom:818.558965pt;}
.y7_c00060{bottom:819.001195pt;}
.y6_c00060{bottom:819.515552pt;}
.y5_c00060{bottom:819.698144pt;}
.y4_c00060{bottom:819.901504pt;}
.y3_c00060{bottom:820.542997pt;}
.y2_c00060{bottom:820.679840pt;}
.y1_c00060{bottom:821.040000pt;}
.h2_c00060{height:30.800986pt;}
.hf_c00060{height:35.466667pt;}
.hd_c00060{height:55.069998pt;}
.h10_c00060{height:58.803557pt;}
.h16_c00060{height:59.736320pt;}
.h15_c00060{height:60.669700pt;}
.h8_c00060{height:61.600000pt;}
.h1a_c00060{height:61.603080pt;}
.h12_c00060{height:61.603727pt;}
.he_c00060{height:61.605205pt;}
.h1b_c00060{height:61.606930pt;}
.h17_c00060{height:62.536460pt;}
.h11_c00060{height:62.537116pt;}
.h6_c00060{height:63.466667pt;}
.h19_c00060{height:63.469840pt;}
.hb_c00060{height:63.470506pt;}
.h7_c00060{height:64.400000pt;}
.h14_c00060{height:64.403220pt;}
.hc_c00060{height:64.403896pt;}
.h9_c00060{height:65.333333pt;}
.h13_c00060{height:65.336600pt;}
.h18_c00060{height:67.203360pt;}
.h4_c00060{height:76.535782pt;}
.h5_c00060{height:82.135962pt;}
.ha_c00060{height:84.000000pt;}
.h3_c00060{height:98.003136pt;}
.h1_c00060{height:893.333333pt;}
.h0_c00060{height:893.466667pt;}
.w0_c00060{width:651.333333pt;}
.x0_c00060{left:0.000000pt;}
.x13_c00060{left:34.558560pt;}
.xd_c00060{left:48.959659pt;}
.x1_c00060{left:59.990667pt;}
.x96_c00060{left:93.936093pt;}
.x82_c00060{left:98.785800pt;}
.x6d_c00060{left:102.596547pt;}
.x2_c00060{left:105.010667pt;}
.x9f_c00060{left:109.287267pt;}
.x7f_c00060{left:111.814853pt;}
.x6e_c00060{left:116.584413pt;}
.x78_c00060{left:118.312827pt;}
.x3_c00060{left:122.116000pt;}
.x4b_c00060{left:123.945333pt;}
.x92_c00060{left:124.914093pt;}
.x2e_c00060{left:125.832000pt;}
.x18_c00060{left:127.920000pt;}
.x25_c00060{left:129.014667pt;}
.x19_c00060{left:146.160000pt;}
.x64_c00060{left:148.562609pt;}
.x8e_c00060{left:150.158933pt;}
.x68_c00060{left:151.552000pt;}
.x41_c00060{left:153.951876pt;}
.x46_c00060{left:155.040537pt;}
.x1d_c00060{left:156.240000pt;}
.x1a_c00060{left:162.480000pt;}
.x26_c00060{left:163.846667pt;}
.x34_c00060{left:165.513333pt;}
.x14_c00060{left:172.323371pt;}
.x57_c00060{left:175.081333pt;}
.x97_c00060{left:178.409560pt;}
.x3d_c00060{left:180.880000pt;}
.x79_c00060{left:182.015493pt;}
.x27_c00060{left:187.564000pt;}
.x6f_c00060{left:189.705013pt;}
.x1b_c00060{left:192.000000pt;}
.x65_c00060{left:192.965311pt;}
.x7a_c00060{left:194.487493pt;}
.xe_c00060{left:195.843723pt;}
.x47_c00060{left:196.802916pt;}
.x35_c00060{left:199.125333pt;}
.x8c_c00060{left:201.229933pt;}
.x4_c00060{left:202.302667pt;}
.x1e_c00060{left:205.200000pt;}
.x5f_c00060{left:206.309740pt;}
.x58_c00060{left:207.480000pt;}
.x2f_c00060{left:208.442667pt;}
.x73_c00060{left:213.711773pt;}
.x4c_c00060{left:215.617333pt;}
.x36_c00060{left:218.769333pt;}
.x1f_c00060{left:222.240000pt;}
.x28_c00060{left:225.008000pt;}
.x42_c00060{left:226.682016pt;}
.x5_c00060{left:227.722667pt;}
.x69_c00060{left:230.769333pt;}
.x48_c00060{left:233.284664pt;}
.x88_c00060{left:234.359787pt;}
.x4d_c00060{left:236.261333pt;}
.x60_c00060{left:237.236744pt;}
.xa2_c00060{left:238.640000pt;}
.x30_c00060{left:243.477333pt;}
.x43_c00060{left:245.367555pt;}
.x8d_c00060{left:246.881480pt;}
.x6_c00060{left:250.546667pt;}
.x1c_c00060{left:252.000000pt;}
.x29_c00060{left:254.997333pt;}
.x7b_c00060{left:259.831493pt;}
.x74_c00060{left:261.003773pt;}
.x49_c00060{left:262.806909pt;}
.x37_c00060{left:264.138667pt;}
.x4e_c00060{left:267.936000pt;}
.x8f_c00060{left:270.412267pt;}
.x20_c00060{left:271.440000pt;}
.x31_c00060{left:273.001333pt;}
.x44_c00060{left:276.126559pt;}
.x98_c00060{left:277.773253pt;}
.x3e_c00060{left:279.233333pt;}
.x38_c00060{left:280.926667pt;}
.x7d_c00060{left:282.616773pt;}
.x59_c00060{left:286.240000pt;}
.x9b_c00060{left:287.189587pt;}
.x76_c00060{left:288.581827pt;}
.x83_c00060{left:289.779307pt;}
.x70_c00060{left:291.950667pt;}
.x4f_c00060{left:293.860000pt;}
.x61_c00060{left:297.052071pt;}
.xf_c00060{left:298.807648pt;}
.x66_c00060{left:299.771565pt;}
.x93_c00060{left:301.088333pt;}
.x7e_c00060{left:303.011640pt;}
.x21_c00060{left:304.800000pt;}
.x32_c00060{left:306.830667pt;}
.x5a_c00060{left:307.796000pt;}
.x9c_c00060{left:309.214253pt;}
.x39_c00060{left:310.208000pt;}
.x89_c00060{left:311.933120pt;}
.x7c_c00060{left:313.567493pt;}
.x7_c00060{left:314.841333pt;}
.x50_c00060{left:319.306667pt;}
.x5b_c00060{left:322.161333pt;}
.x2a_c00060{left:324.837333pt;}
.x62_c00060{left:325.815060pt;}
.x6a_c00060{left:328.696000pt;}
.x94_c00060{left:330.841373pt;}
.x22_c00060{left:332.400000pt;}
.x84_c00060{left:337.541013pt;}
.x67_c00060{left:341.773973pt;}
.x5c_c00060{left:345.696000pt;}
.x4a_c00060{left:347.291799pt;}
.x71_c00060{left:349.850093pt;}
.x33_c00060{left:351.720000pt;}
.x2b_c00060{left:355.324000pt;}
.x99_c00060{left:357.926853pt;}
.x52_c00060{left:359.520000pt;}
.x51_c00060{left:362.032000pt;}
.x85_c00060{left:363.276493pt;}
.x5d_c00060{left:364.660000pt;}
.x15_c00060{left:366.009099pt;}
.x77_c00060{left:368.794893pt;}
.x8_c00060{left:370.120000pt;}
.xa0_c00060{left:371.154040pt;}
.x8a_c00060{left:372.135787pt;}
.xa3_c00060{left:373.953333pt;}
.x45_c00060{left:375.252977pt;}
.x2c_c00060{left:377.440000pt;}
.x23_c00060{left:379.680000pt;}
.x9d_c00060{left:381.465413pt;}
.x3f_c00060{left:382.920000pt;}
.x3a_c00060{left:384.642667pt;}
.x5e_c00060{left:385.538667pt;}
.xa4_c00060{left:390.641333pt;}
.x24_c00060{left:393.360000pt;}
.x53_c00060{left:395.280000pt;}
.x10_c00060{left:399.131403pt;}
.x63_c00060{left:401.183881pt;}
.x3b_c00060{left:406.208000pt;}
.x6b_c00060{left:411.010667pt;}
.x90_c00060{left:412.668267pt;}
.x2d_c00060{left:414.360000pt;}
.x40_c00060{left:418.685333pt;}
.x86_c00060{left:422.272653pt;}
.x54_c00060{left:425.040000pt;}
.x3c_c00060{left:426.850667pt;}
.x16_c00060{left:427.931733pt;}
.x55_c00060{left:432.000000pt;}
.x9_c00060{left:435.826667pt;}
.xa_c00060{left:448.153333pt;}
.x11_c00060{left:457.213781pt;}
.x56_c00060{left:460.320000pt;}
.x80_c00060{left:482.602853pt;}
.xb_c00060{left:485.488000pt;}
.x17_c00060{left:501.373771pt;}
.x91_c00060{left:511.313600pt;}
.x12_c00060{left:514.847093pt;}
.xa1_c00060{left:521.035040pt;}
.x9e_c00060{left:526.661053pt;}
.xc_c00060{left:529.966667pt;}
.x87_c00060{left:535.293053pt;}
.x81_c00060{left:537.025520pt;}
.x8b_c00060{left:539.729120pt;}
.x72_c00060{left:541.768173pt;}
.x9a_c00060{left:550.570413pt;}
.x75_c00060{left:553.530440pt;}
.x6c_c00060{left:555.460000pt;}
.x95_c00060{left:563.643053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m59_c00061{transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.031600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031600,0.000000,0.000000,0.250000,0,0);}
.m7d_c00061{transform:matrix(0.127017,0.001397,-0.002750,0.249985,0,0);-ms-transform:matrix(0.127017,0.001397,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.127017,0.001397,-0.002750,0.249985,0,0);}
.m20_c00061{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m7e_c00061{transform:matrix(0.146096,0.001607,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146096,0.001607,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146096,0.001607,-0.002750,0.249985,0,0);}
.m1f_c00061{transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{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);}
.m48_c00061{transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);}
.mb7_c00061{transform:matrix(0.150766,0.002714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150766,0.002714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150766,0.002714,-0.004499,0.249960,0,0);}
.m2e_c00061{transform:matrix(0.153040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153040,0.000000,0.000000,0.250000,0,0);}
.mb4_c00061{transform:matrix(0.153150,0.002757,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153150,0.002757,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153150,0.002757,-0.004499,0.249960,0,0);}
.m33_c00061{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{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);}
.m6b_c00061{transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);}
.m71_c00061{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{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);}
.ma1_c00061{transform:matrix(0.159430,0.002551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159430,0.002551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159430,0.002551,-0.003999,0.249968,0,0);}
.m46_c00061{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);}
.m57_c00061{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);}
.mac_c00061{transform:matrix(0.162389,0.002598,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162389,0.002598,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162389,0.002598,-0.003999,0.249968,0,0);}
.m93_c00061{transform:matrix(0.162592,0.001626,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162592,0.001626,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162592,0.001626,-0.002500,0.249988,0,0);}
.m7f_c00061{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);}
.m1d_c00061{transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);}
.m79_c00061{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);}
.m26_c00061{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);}
.m1e_c00061{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);}
.m7c_c00061{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);}
.m1b_c00061{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);}
.m8f_c00061{transform:matrix(0.166987,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166987,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166987,0.001670,-0.002500,0.249988,0,0);}
.m38_c00061{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);}
.m23_c00061{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);}
.m7a_c00061{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);}
.m11_c00061{transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00061{transform:matrix(0.167438,0.003014,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167438,0.003014,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167438,0.003014,-0.004499,0.249960,0,0);}
.m17_c00061{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);}
.m6a_c00061{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);}
.m60_c00061{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);}
.m58_c00061{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);}
.m56_c00061{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);}
.m5f_c00061{transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{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);}
.m40_c00061{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);}
.mb6_c00061{transform:matrix(0.170777,0.003074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170777,0.003074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170777,0.003074,-0.004499,0.249960,0,0);}
.m98_c00061{transform:matrix(0.171218,0.002739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171218,0.002739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171218,0.002739,-0.003999,0.249968,0,0);}
.m49_c00061{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);}
.m27_c00061{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);}
.m89_c00061{transform:matrix(0.173028,0.001557,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173028,0.001557,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173028,0.001557,-0.002250,0.249990,0,0);}
.ma5_c00061{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);}
.m72_c00061{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);}
.m37_c00061{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);}
.m78_c00061{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);}
.m91_c00061{transform:matrix(0.174346,0.001743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174346,0.001743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174346,0.001743,-0.002500,0.249988,0,0);}
.mbb_c00061{transform:matrix(0.174826,0.005420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174826,0.005420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174826,0.005420,-0.007746,0.249880,0,0);}
.m6f_c00061{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);}
.m4b_c00061{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);}
.m35_c00061{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);}
.m29_c00061{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);}
.m77_c00061{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);}
.m2c_c00061{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);}
.m21_c00061{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);}
.ma8_c00061{transform:matrix(0.176972,0.002832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176972,0.002832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176972,0.002832,-0.003999,0.249968,0,0);}
.m73_c00061{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);}
.mad_c00061{transform:matrix(0.178297,0.002853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178297,0.002853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178297,0.002853,-0.003999,0.249968,0,0);}
.m12_c00061{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);}
.m31_c00061{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);}
.m9b_c00061{transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);}
.m10_c00061{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);}
.ma0_c00061{transform:matrix(0.179642,0.002874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179642,0.002874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179642,0.002874,-0.003999,0.249968,0,0);}
.m2f_c00061{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);}
.m4d_c00061{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);}
.m81_c00061{transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);}
.m6c_c00061{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);}
.m51_c00061{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);}
.m5e_c00061{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);}
.m28_c00061{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);}
.m2a_c00061{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{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);}
.m92_c00061{transform:matrix(0.181816,0.001818,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181816,0.001818,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181816,0.001818,-0.002500,0.249988,0,0);}
.m32_c00061{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);}
.m13_c00061{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);}
.m34_c00061{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);}
.m8a_c00061{transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);}
.mbc_c00061{transform:matrix(0.183297,0.005682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183297,0.005682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183297,0.005682,-0.007746,0.249880,0,0);}
.m82_c00061{transform:matrix(0.184999,0.002035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184999,0.002035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184999,0.002035,-0.002750,0.249985,0,0);}
.m90_c00061{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);}
.m70_c00061{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);}
.m9d_c00061{transform:matrix(0.186561,0.002985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186561,0.002985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186561,0.002985,-0.003999,0.249968,0,0);}
.m80_c00061{transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);}
.m30_c00061{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);}
.m83_c00061{transform:matrix(0.187094,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187094,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187094,0.002058,-0.002750,0.249985,0,0);}
.ma4_c00061{transform:matrix(0.187266,0.002996,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187266,0.002996,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187266,0.002996,-0.003999,0.249968,0,0);}
.m7b_c00061{transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);}
.m88_c00061{transform:matrix(0.188467,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188467,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188467,0.001696,-0.002250,0.249990,0,0);}
.m3f_c00061{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);}
.m6d_c00061{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_c00061{transform:matrix(0.189232,0.001703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189232,0.001703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189232,0.001703,-0.002250,0.249990,0,0);}
.m41_c00061{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);}
.m85_c00061{transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);}
.m4e_c00061{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);}
.m14_c00061{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);}
.m8e_c00061{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);}
.m3e_c00061{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);}
.m18_c00061{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);}
.m8c_c00061{transform:matrix(0.192167,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192167,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192167,0.001730,-0.002250,0.249990,0,0);}
.ma2_c00061{transform:matrix(0.192300,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192300,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192300,0.003077,-0.003999,0.249968,0,0);}
.mb8_c00061{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);}
.me_c00061{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);}
.maa_c00061{transform:matrix(0.192740,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192740,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192740,0.003084,-0.003999,0.249968,0,0);}
.mb5_c00061{transform:matrix(0.193009,0.003474,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193009,0.003474,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193009,0.003474,-0.004499,0.249960,0,0);}
.mb0_c00061{transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);}
.ma7_c00061{transform:matrix(0.194060,0.003105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194060,0.003105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194060,0.003105,-0.003999,0.249968,0,0);}
.m3b_c00061{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);}
.m22_c00061{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);}
.m2b_c00061{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);}
.m99_c00061{transform:matrix(0.195970,0.003136,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195970,0.003136,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195970,0.003136,-0.003999,0.249968,0,0);}
.m5d_c00061{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);}
.m9f_c00061{transform:matrix(0.196365,0.003142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196365,0.003142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196365,0.003142,-0.003999,0.249968,0,0);}
.m8d_c00061{transform:matrix(0.196905,0.001969,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196905,0.001969,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196905,0.001969,-0.002500,0.249988,0,0);}
.m39_c00061{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);}
.mb2_c00061{transform:matrix(0.198078,0.003565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198078,0.003565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198078,0.003565,-0.004499,0.249960,0,0);}
.maf_c00061{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);}
.mb1_c00061{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);}
.m25_c00061{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);}
.mf_c00061{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);}
.m15_c00061{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);}
.m76_c00061{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);}
.m53_c00061{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);}
.m2d_c00061{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);}
.m97_c00061{transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);}
.m19_c00061{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);}
.m4f_c00061{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);}
.m47_c00061{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);}
.m5c_c00061{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_c00061{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);}
.m69_c00061{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);}
.m86_c00061{transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);}
.mab_c00061{transform:matrix(0.208603,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208603,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208603,0.003338,-0.003999,0.249968,0,0);}
.mae_c00061{transform:matrix(0.209123,0.003346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209123,0.003346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209123,0.003346,-0.003999,0.249968,0,0);}
.m75_c00061{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);}
.m4c_c00061{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);}
.m54_c00061{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);}
.m3c_c00061{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);}
.m1c_c00061{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);}
.ma3_c00061{transform:matrix(0.214018,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214018,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214018,0.003424,-0.003999,0.249968,0,0);}
.m44_c00061{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_c00061{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);}
.ma9_c00061{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);}
.m42_c00061{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);}
.mba_c00061{transform:matrix(0.219370,0.006800,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219370,0.006800,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219370,0.006800,-0.007746,0.249880,0,0);}
.m55_c00061{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);}
.mbd_c00061{transform:matrix(0.223902,0.006941,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223902,0.006941,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223902,0.006941,-0.007746,0.249880,0,0);}
.m6e_c00061{transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{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);}
.m9e_c00061{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);}
.m74_c00061{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);}
.m87_c00061{transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);}
.m1_c00061{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);}
.m94_c00061{transform:matrix(0.235548,0.002355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235548,0.002355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235548,0.002355,-0.002500,0.249988,0,0);}
.m5b_c00061{transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);}
.m9c_c00061{transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);}
.m95_c00061{transform:matrix(0.249783,0.003997,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249783,0.003997,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249783,0.003997,-0.003999,0.249968,0,0);}
.mb9_c00061{transform:matrix(0.253734,0.004567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253734,0.004567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253734,0.004567,-0.004499,0.249960,0,0);}
.ma6_c00061{transform:matrix(0.255767,0.004092,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255767,0.004092,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255767,0.004092,-0.003999,0.249968,0,0);}
.m0_c00061{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);}
.m4_c00061{transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00061{transform:matrix(0.270384,0.002433,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270384,0.002433,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270384,0.002433,-0.002250,0.249990,0,0);}
.m7_c00061{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);}
.mb_c00061{transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275815,0.000000,0.000000,0.250000,0,0);}
.m67_c00061{transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283840,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294485,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{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);}
.m66_c00061{transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308780,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);}
.m9a_c00061{transform:matrix(0.327973,0.005248,-0.003999,0.249968,0,0);-ms-transform:matrix(0.327973,0.005248,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.327973,0.005248,-0.003999,0.249968,0,0);}
.m61_c00061{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);}
.m8_c00061{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);}
.md_c00061{transform:matrix(0.361590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361590,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.378430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378430,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.384815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384815,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.434040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434040,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.435070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435070,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.435195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435195,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.463020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463020,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.488455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488455,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{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);}
.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;}
.fs4_c00061{font-size:22.050000px;}
.fs13_c00061{font-size:50.424211px;}
.fs11_c00061{font-size:52.506720px;}
.fs12_c00061{font-size:59.859695px;}
.fs0_c00061{font-size:63.000000px;}
.fs3_c00061{font-size:67.200000px;}
.fsb_c00061{font-size:69.300000px;}
.fs6_c00061{font-size:70.350000px;}
.fsf_c00061{font-size:70.352849px;}
.fsc_c00061{font-size:71.400000px;}
.fs10_c00061{font-size:71.403570px;}
.fs5_c00061{font-size:72.450000px;}
.fse_c00061{font-size:72.454383px;}
.fs7_c00061{font-size:73.500000px;}
.fs9_c00061{font-size:74.550000px;}
.fs8_c00061{font-size:75.600000px;}
.fsa_c00061{font-size:77.700000px;}
.fsd_c00061{font-size:85.050000px;}
.fs1_c00061{font-size:101.850000px;}
.fs2_c00061{font-size:128.100000px;}
.y0_c00061{bottom:0.000000px;}
.y63_c00061{bottom:145.211766px;}
.y62_c00061{bottom:146.543758px;}
.y61_c00061{bottom:153.918844px;}
.y60_c00061{bottom:155.529000px;}
.y5f_c00061{bottom:160.296627px;}
.y5e_c00061{bottom:160.849344px;}
.y5d_c00061{bottom:161.234364px;}
.y5c_c00061{bottom:161.953185px;}
.y5b_c00061{bottom:162.551316px;}
.y5a_c00061{bottom:162.843132px;}
.y59_c00061{bottom:163.274565px;}
.y58_c00061{bottom:163.893000px;}
.y57_c00061{bottom:169.491528px;}
.y56_c00061{bottom:170.321796px;}
.y55_c00061{bottom:171.123444px;}
.y54_c00061{bottom:171.653292px;}
.y53_c00061{bottom:172.146756px;}
.y52_c00061{bottom:172.527288px;}
.y51_c00061{bottom:185.979168px;}
.y50_c00061{bottom:187.231860px;}
.y4f_c00061{bottom:187.905300px;}
.y4e_c00061{bottom:188.205084px;}
.y4d_c00061{bottom:188.847360px;}
.y4c_c00061{bottom:189.108648px;}
.y4b_c00061{bottom:189.883704px;}
.y4a_c00061{bottom:190.439568px;}
.y49_c00061{bottom:190.888992px;}
.y48_c00061{bottom:201.540768px;}
.y47_c00061{bottom:201.882072px;}
.y46_c00061{bottom:202.197528px;}
.y45_c00061{bottom:203.035704px;}
.y44_c00061{bottom:203.722368px;}
.y43_c00061{bottom:204.141552px;}
.y42_c00061{bottom:204.462024px;}
.y41_c00061{bottom:204.716256px;}
.y40_c00061{bottom:205.498152px;}
.y3f_c00061{bottom:206.392008px;}
.y3e_c00061{bottom:206.849736px;}
.y3d_c00061{bottom:207.805440px;}
.y3c_c00061{bottom:208.323840px;}
.y3b_c00061{bottom:208.713000px;}
.y3a_c00061{bottom:244.944870px;}
.y39_c00061{bottom:245.185155px;}
.y38_c00061{bottom:245.576640px;}
.y37_c00061{bottom:246.014175px;}
.y36_c00061{bottom:246.614085px;}
.y35_c00061{bottom:246.832260px;}
.y34_c00061{bottom:247.372695px;}
.y33_c00061{bottom:247.861500px;}
.y32_c00061{bottom:266.824802px;}
.y31_c00061{bottom:267.116280px;}
.y30_c00061{bottom:267.291605px;}
.y2f_c00061{bottom:267.760581px;}
.y2e_c00061{bottom:267.957452px;}
.y2d_c00061{bottom:268.572323px;}
.y2c_c00061{bottom:269.170143px;}
.y2b_c00061{bottom:269.432246px;}
.y2a_c00061{bottom:269.731500px;}
.y29_c00061{bottom:289.865268px;}
.y28_c00061{bottom:290.364228px;}
.y27_c00061{bottom:290.809085px;}
.y26_c00061{bottom:291.168504px;}
.y25_c00061{bottom:291.549258px;}
.y24_c00061{bottom:291.843338px;}
.y23_c00061{bottom:292.140387px;}
.y22_c00061{bottom:292.672083px;}
.y21_c00061{bottom:293.221500px;}
.y20_c00061{bottom:313.591500px;}
.y1f_c00061{bottom:336.756000px;}
.y1e_c00061{bottom:358.437000px;}
.y1d_c00061{bottom:402.613500px;}
.y1c_c00061{bottom:404.236500px;}
.y1b_c00061{bottom:405.543000px;}
.y1a_c00061{bottom:440.910000px;}
.y19_c00061{bottom:498.625500px;}
.y18_c00061{bottom:522.487500px;}
.y17_c00061{bottom:543.708000px;}
.y16_c00061{bottom:589.057500px;}
.y15_c00061{bottom:610.866000px;}
.y14_c00061{bottom:634.600500px;}
.y13_c00061{bottom:634.900500px;}
.y12_c00061{bottom:635.091000px;}
.y11_c00061{bottom:635.581500px;}
.y10_c00061{bottom:636.378000px;}
.yf_c00061{bottom:637.198500px;}
.ye_c00061{bottom:657.325500px;}
.yd_c00061{bottom:681.238500px;}
.yc_c00061{bottom:704.514000px;}
.yb_c00061{bottom:727.177500px;}
.ya_c00061{bottom:749.604000px;}
.y9_c00061{bottom:772.587000px;}
.y8_c00061{bottom:795.597000px;}
.y7_c00061{bottom:818.305500px;}
.y6_c00061{bottom:844.420500px;}
.y5_c00061{bottom:863.997000px;}
.y3_c00061{bottom:892.747500px;}
.y2_c00061{bottom:904.635000px;}
.y4_c00061{bottom:905.476500px;}
.y1_c00061{bottom:926.767500px;}
.h6_c00061{height:22.050000px;}
.h15_c00061{height:50.424211px;}
.h13_c00061{height:52.506720px;}
.h14_c00061{height:59.859695px;}
.h2_c00061{height:63.000000px;}
.h5_c00061{height:67.200000px;}
.hd_c00061{height:69.300000px;}
.h8_c00061{height:70.350000px;}
.h11_c00061{height:70.352849px;}
.he_c00061{height:71.400000px;}
.h12_c00061{height:71.403570px;}
.h7_c00061{height:72.450000px;}
.h10_c00061{height:72.454383px;}
.h9_c00061{height:73.500000px;}
.hb_c00061{height:74.550000px;}
.ha_c00061{height:75.600000px;}
.hc_c00061{height:77.700000px;}
.hf_c00061{height:85.050000px;}
.h3_c00061{height:101.850000px;}
.h4_c00061{height:128.100000px;}
.h0_c00061{height:1008.450000px;}
.h1_c00061{height:1008.750000px;}
.w0_c00061{width:699.000000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:82.080000px;}
.x2_c00061{left:85.590000px;}
.x3_c00061{left:114.210000px;}
.x76_c00061{left:135.983520px;}
.x7_c00061{left:137.160000px;}
.x6d_c00061{left:149.146500px;}
.x7b_c00061{left:161.361216px;}
.x77_c00061{left:162.384588px;}
.xc_c00061{left:164.700000px;}
.x40_c00061{left:169.830000px;}
.x3a_c00061{left:171.450000px;}
.xd_c00061{left:173.070000px;}
.x47_c00061{left:182.250000px;}
.x81_c00061{left:186.925500px;}
.x4e_c00061{left:189.063000px;}
.x1f_c00061{left:190.350000px;}
.x7c_c00061{left:194.265744px;}
.x51_c00061{left:195.750000px;}
.x14_c00061{left:197.910000px;}
.x19_c00061{left:202.230000px;}
.x49_c00061{left:203.310000px;}
.x6e_c00061{left:205.869000px;}
.x8_c00061{left:212.490000px;}
.x30_c00061{left:214.110000px;}
.x15_c00061{left:217.620000px;}
.x67_c00061{left:220.473000px;}
.x5e_c00061{left:221.797500px;}
.x52_c00061{left:225.720000px;}
.x27_c00061{left:228.960000px;}
.x20_c00061{left:233.820000px;}
.xe_c00061{left:236.250000px;}
.x78_c00061{left:240.690840px;}
.x4_c00061{left:246.780000px;}
.x5a_c00061{left:249.480000px;}
.x2d_c00061{left:250.560000px;}
.xf_c00061{left:251.910000px;}
.x53_c00061{left:254.880000px;}
.x79_c00061{left:256.083600px;}
.x1a_c00061{left:258.120000px;}
.x4a_c00061{left:263.520000px;}
.x3b_c00061{left:266.220000px;}
.x21_c00061{left:267.570000px;}
.x31_c00061{left:270.000000px;}
.x5_c00061{left:271.350000px;}
.x68_c00061{left:274.516500px;}
.x16_c00061{left:276.210000px;}
.x4b_c00061{left:283.500000px;}
.x9_c00061{left:288.090000px;}
.x2e_c00061{left:290.250000px;}
.x28_c00061{left:291.870000px;}
.x6f_c00061{left:294.208500px;}
.x69_c00061{left:296.334000px;}
.x4f_c00061{left:297.877500px;}
.x63_c00061{left:299.856000px;}
.x22_c00061{left:302.670000px;}
.x41_c00061{left:305.370000px;}
.x1b_c00061{left:308.340000px;}
.x29_c00061{left:310.230000px;}
.x3c_c00061{left:312.390000px;}
.x48_c00061{left:314.280000px;}
.x10_c00061{left:316.440000px;}
.x36_c00061{left:319.009500px;}
.x39_c00061{left:321.030000px;}
.x5f_c00061{left:323.872500px;}
.xa_c00061{left:325.890000px;}
.x23_c00061{left:327.780000px;}
.x54_c00061{left:331.020000px;}
.x50_c00061{left:333.721500px;}
.x7d_c00061{left:338.472072px;}
.x42_c00061{left:339.660000px;}
.x5b_c00061{left:341.280000px;}
.x3d_c00061{left:345.330000px;}
.x2a_c00061{left:349.650000px;}
.x17_c00061{left:351.540000px;}
.x11_c00061{left:353.970000px;}
.x2f_c00061{left:355.320000px;}
.x6a_c00061{left:356.325000px;}
.x60_c00061{left:358.486500px;}
.x32_c00061{left:361.800000px;}
.x37_c00061{left:363.556500px;}
.x4c_c00061{left:367.740000px;}
.x43_c00061{left:375.840000px;}
.x1c_c00061{left:376.920000px;}
.x33_c00061{left:380.160000px;}
.x2b_c00061{left:383.940000px;}
.x64_c00061{left:390.049500px;}
.x61_c00061{left:391.161000px;}
.x6_c00061{left:393.390000px;}
.x44_c00061{left:398.520000px;}
.x6b_c00061{left:400.078500px;}
.x24_c00061{left:402.840000px;}
.x38_c00061{left:408.093000px;}
.x1d_c00061{left:409.860000px;}
.x5c_c00061{left:415.800000px;}
.x45_c00061{left:418.500000px;}
.x12_c00061{left:419.580000px;}
.x34_c00061{left:423.090000px;}
.x7a_c00061{left:424.842912px;}
.x18_c00061{left:427.410000px;}
.x55_c00061{left:429.300000px;}
.x4d_c00061{left:430.650000px;}
.xb_c00061{left:432.810000px;}
.x70_c00061{left:434.862000px;}
.x2c_c00061{left:439.290000px;}
.x65_c00061{left:442.158000px;}
.x3e_c00061{left:445.230000px;}
.x13_c00061{left:446.310000px;}
.x25_c00061{left:448.470000px;}
.x46_c00061{left:457.380000px;}
.x5d_c00061{left:458.460000px;}
.x71_c00061{left:461.061000px;}
.x56_c00061{left:462.240000px;}
.x6c_c00061{left:463.255500px;}
.x82_c00061{left:467.799000px;}
.x3f_c00061{left:471.420000px;}
.x1e_c00061{left:473.580000px;}
.x62_c00061{left:476.962500px;}
.x57_c00061{left:483.840000px;}
.x66_c00061{left:494.025000px;}
.x35_c00061{left:499.230000px;}
.x26_c00061{left:502.470000px;}
.x72_c00061{left:503.977500px;}
.x7e_c00061{left:505.842000px;}
.x58_c00061{left:510.570000px;}
.x7f_c00061{left:545.776500px;}
.x59_c00061{left:548.370000px;}
.x73_c00061{left:556.363500px;}
.x80_c00061{left:567.166500px;}
.x74_c00061{left:576.079500px;}
.x75_c00061{left:597.411000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
.fs4_c00061{font-size:19.600000pt;}
.fs13_c00061{font-size:44.821521pt;}
.fs11_c00061{font-size:46.672640pt;}
.fs12_c00061{font-size:53.208618pt;}
.fs0_c00061{font-size:56.000000pt;}
.fs3_c00061{font-size:59.733333pt;}
.fsb_c00061{font-size:61.600000pt;}
.fs6_c00061{font-size:62.533333pt;}
.fsf_c00061{font-size:62.535866pt;}
.fsc_c00061{font-size:63.466667pt;}
.fs10_c00061{font-size:63.469840pt;}
.fs5_c00061{font-size:64.400000pt;}
.fse_c00061{font-size:64.403896pt;}
.fs7_c00061{font-size:65.333333pt;}
.fs9_c00061{font-size:66.266667pt;}
.fs8_c00061{font-size:67.200000pt;}
.fsa_c00061{font-size:69.066667pt;}
.fsd_c00061{font-size:75.600000pt;}
.fs1_c00061{font-size:90.533333pt;}
.fs2_c00061{font-size:113.866667pt;}
.y0_c00061{bottom:0.000000pt;}
.y63_c00061{bottom:129.077125pt;}
.y62_c00061{bottom:130.261119pt;}
.y61_c00061{bottom:136.816751pt;}
.y60_c00061{bottom:138.248000pt;}
.y5f_c00061{bottom:142.485891pt;}
.y5e_c00061{bottom:142.977195pt;}
.y5d_c00061{bottom:143.319435pt;}
.y5c_c00061{bottom:143.958387pt;}
.y5b_c00061{bottom:144.490059pt;}
.y5a_c00061{bottom:144.749451pt;}
.y59_c00061{bottom:145.132947pt;}
.y58_c00061{bottom:145.682667pt;}
.y57_c00061{bottom:150.659136pt;}
.y56_c00061{bottom:151.397152pt;}
.y55_c00061{bottom:152.109728pt;}
.y54_c00061{bottom:152.580704pt;}
.y53_c00061{bottom:153.019339pt;}
.y52_c00061{bottom:153.357589pt;}
.y51_c00061{bottom:165.314816pt;}
.y50_c00061{bottom:166.428320pt;}
.y4f_c00061{bottom:167.026933pt;}
.y4e_c00061{bottom:167.293408pt;}
.y4d_c00061{bottom:167.864320pt;}
.y4c_c00061{bottom:168.096576pt;}
.y4b_c00061{bottom:168.785515pt;}
.y4a_c00061{bottom:169.279616pt;}
.y49_c00061{bottom:169.679104pt;}
.y48_c00061{bottom:179.147349pt;}
.y47_c00061{bottom:179.450731pt;}
.y46_c00061{bottom:179.731136pt;}
.y45_c00061{bottom:180.476181pt;}
.y44_c00061{bottom:181.086549pt;}
.y43_c00061{bottom:181.459157pt;}
.y42_c00061{bottom:181.744021pt;}
.y41_c00061{bottom:181.970005pt;}
.y40_c00061{bottom:182.665024pt;}
.y3f_c00061{bottom:183.459563pt;}
.y3e_c00061{bottom:183.866432pt;}
.y3d_c00061{bottom:184.715947pt;}
.y3c_c00061{bottom:185.176747pt;}
.y3b_c00061{bottom:185.522667pt;}
.y3a_c00061{bottom:217.728773pt;}
.y39_c00061{bottom:217.942360pt;}
.y38_c00061{bottom:218.290347pt;}
.y37_c00061{bottom:218.679267pt;}
.y36_c00061{bottom:219.212520pt;}
.y35_c00061{bottom:219.406453pt;}
.y34_c00061{bottom:219.886840pt;}
.y33_c00061{bottom:220.321333pt;}
.y32_c00061{bottom:237.177601pt;}
.y31_c00061{bottom:237.436693pt;}
.y30_c00061{bottom:237.592537pt;}
.y2f_c00061{bottom:238.009405pt;}
.y2e_c00061{bottom:238.184401pt;}
.y2d_c00061{bottom:238.730953pt;}
.y2c_c00061{bottom:239.262349pt;}
.y2b_c00061{bottom:239.495329pt;}
.y2a_c00061{bottom:239.761333pt;}
.y29_c00061{bottom:257.658016pt;}
.y28_c00061{bottom:258.101536pt;}
.y27_c00061{bottom:258.496964pt;}
.y26_c00061{bottom:258.816448pt;}
.y25_c00061{bottom:259.154896pt;}
.y24_c00061{bottom:259.416300pt;}
.y23_c00061{bottom:259.680344pt;}
.y22_c00061{bottom:260.152963pt;}
.y21_c00061{bottom:260.641333pt;}
.y20_c00061{bottom:278.748000pt;}
.y1f_c00061{bottom:299.338667pt;}
.y1e_c00061{bottom:318.610667pt;}
.y1d_c00061{bottom:357.878667pt;}
.y1c_c00061{bottom:359.321333pt;}
.y1b_c00061{bottom:360.482667pt;}
.y1a_c00061{bottom:391.920000pt;}
.y19_c00061{bottom:443.222667pt;}
.y18_c00061{bottom:464.433333pt;}
.y17_c00061{bottom:483.296000pt;}
.y16_c00061{bottom:523.606667pt;}
.y15_c00061{bottom:542.992000pt;}
.y14_c00061{bottom:564.089333pt;}
.y13_c00061{bottom:564.356000pt;}
.y12_c00061{bottom:564.525333pt;}
.y11_c00061{bottom:564.961333pt;}
.y10_c00061{bottom:565.669333pt;}
.yf_c00061{bottom:566.398667pt;}
.ye_c00061{bottom:584.289333pt;}
.yd_c00061{bottom:605.545333pt;}
.yc_c00061{bottom:626.234667pt;}
.yb_c00061{bottom:646.380000pt;}
.ya_c00061{bottom:666.314667pt;}
.y9_c00061{bottom:686.744000pt;}
.y8_c00061{bottom:707.197333pt;}
.y7_c00061{bottom:727.382667pt;}
.y6_c00061{bottom:750.596000pt;}
.y5_c00061{bottom:767.997333pt;}
.y3_c00061{bottom:793.553333pt;}
.y2_c00061{bottom:804.120000pt;}
.y4_c00061{bottom:804.868000pt;}
.y1_c00061{bottom:823.793333pt;}
.h6_c00061{height:19.600000pt;}
.h15_c00061{height:44.821521pt;}
.h13_c00061{height:46.672640pt;}
.h14_c00061{height:53.208618pt;}
.h2_c00061{height:56.000000pt;}
.h5_c00061{height:59.733333pt;}
.hd_c00061{height:61.600000pt;}
.h8_c00061{height:62.533333pt;}
.h11_c00061{height:62.535866pt;}
.he_c00061{height:63.466667pt;}
.h12_c00061{height:63.469840pt;}
.h7_c00061{height:64.400000pt;}
.h10_c00061{height:64.403896pt;}
.h9_c00061{height:65.333333pt;}
.hb_c00061{height:66.266667pt;}
.ha_c00061{height:67.200000pt;}
.hc_c00061{height:69.066667pt;}
.hf_c00061{height:75.600000pt;}
.h3_c00061{height:90.533333pt;}
.h4_c00061{height:113.866667pt;}
.h0_c00061{height:896.400000pt;}
.h1_c00061{height:896.666667pt;}
.w0_c00061{width:621.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:72.960000pt;}
.x2_c00061{left:76.080000pt;}
.x3_c00061{left:101.520000pt;}
.x76_c00061{left:120.874240pt;}
.x7_c00061{left:121.920000pt;}
.x6d_c00061{left:132.574667pt;}
.x7b_c00061{left:143.432192pt;}
.x77_c00061{left:144.341856pt;}
.xc_c00061{left:146.400000pt;}
.x40_c00061{left:150.960000pt;}
.x3a_c00061{left:152.400000pt;}
.xd_c00061{left:153.840000pt;}
.x47_c00061{left:162.000000pt;}
.x81_c00061{left:166.156000pt;}
.x4e_c00061{left:168.056000pt;}
.x1f_c00061{left:169.200000pt;}
.x7c_c00061{left:172.680661pt;}
.x51_c00061{left:174.000000pt;}
.x14_c00061{left:175.920000pt;}
.x19_c00061{left:179.760000pt;}
.x49_c00061{left:180.720000pt;}
.x6e_c00061{left:182.994667pt;}
.x8_c00061{left:188.880000pt;}
.x30_c00061{left:190.320000pt;}
.x15_c00061{left:193.440000pt;}
.x67_c00061{left:195.976000pt;}
.x5e_c00061{left:197.153333pt;}
.x52_c00061{left:200.640000pt;}
.x27_c00061{left:203.520000pt;}
.x20_c00061{left:207.840000pt;}
.xe_c00061{left:210.000000pt;}
.x78_c00061{left:213.947413pt;}
.x4_c00061{left:219.360000pt;}
.x5a_c00061{left:221.760000pt;}
.x2d_c00061{left:222.720000pt;}
.xf_c00061{left:223.920000pt;}
.x53_c00061{left:226.560000pt;}
.x79_c00061{left:227.629867pt;}
.x1a_c00061{left:229.440000pt;}
.x4a_c00061{left:234.240000pt;}
.x3b_c00061{left:236.640000pt;}
.x21_c00061{left:237.840000pt;}
.x31_c00061{left:240.000000pt;}
.x5_c00061{left:241.200000pt;}
.x68_c00061{left:244.014667pt;}
.x16_c00061{left:245.520000pt;}
.x4b_c00061{left:252.000000pt;}
.x9_c00061{left:256.080000pt;}
.x2e_c00061{left:258.000000pt;}
.x28_c00061{left:259.440000pt;}
.x6f_c00061{left:261.518667pt;}
.x69_c00061{left:263.408000pt;}
.x4f_c00061{left:264.780000pt;}
.x63_c00061{left:266.538667pt;}
.x22_c00061{left:269.040000pt;}
.x41_c00061{left:271.440000pt;}
.x1b_c00061{left:274.080000pt;}
.x29_c00061{left:275.760000pt;}
.x3c_c00061{left:277.680000pt;}
.x48_c00061{left:279.360000pt;}
.x10_c00061{left:281.280000pt;}
.x36_c00061{left:283.564000pt;}
.x39_c00061{left:285.360000pt;}
.x5f_c00061{left:287.886667pt;}
.xa_c00061{left:289.680000pt;}
.x23_c00061{left:291.360000pt;}
.x54_c00061{left:294.240000pt;}
.x50_c00061{left:296.641333pt;}
.x7d_c00061{left:300.864064pt;}
.x42_c00061{left:301.920000pt;}
.x5b_c00061{left:303.360000pt;}
.x3d_c00061{left:306.960000pt;}
.x2a_c00061{left:310.800000pt;}
.x17_c00061{left:312.480000pt;}
.x11_c00061{left:314.640000pt;}
.x2f_c00061{left:315.840000pt;}
.x6a_c00061{left:316.733333pt;}
.x60_c00061{left:318.654667pt;}
.x32_c00061{left:321.600000pt;}
.x37_c00061{left:323.161333pt;}
.x4c_c00061{left:326.880000pt;}
.x43_c00061{left:334.080000pt;}
.x1c_c00061{left:335.040000pt;}
.x33_c00061{left:337.920000pt;}
.x2b_c00061{left:341.280000pt;}
.x64_c00061{left:346.710667pt;}
.x61_c00061{left:347.698667pt;}
.x6_c00061{left:349.680000pt;}
.x44_c00061{left:354.240000pt;}
.x6b_c00061{left:355.625333pt;}
.x24_c00061{left:358.080000pt;}
.x38_c00061{left:362.749333pt;}
.x1d_c00061{left:364.320000pt;}
.x5c_c00061{left:369.600000pt;}
.x45_c00061{left:372.000000pt;}
.x12_c00061{left:372.960000pt;}
.x34_c00061{left:376.080000pt;}
.x7a_c00061{left:377.638144pt;}
.x18_c00061{left:379.920000pt;}
.x55_c00061{left:381.600000pt;}
.x4d_c00061{left:382.800000pt;}
.xb_c00061{left:384.720000pt;}
.x70_c00061{left:386.544000pt;}
.x2c_c00061{left:390.480000pt;}
.x65_c00061{left:393.029333pt;}
.x3e_c00061{left:395.760000pt;}
.x13_c00061{left:396.720000pt;}
.x25_c00061{left:398.640000pt;}
.x46_c00061{left:406.560000pt;}
.x5d_c00061{left:407.520000pt;}
.x71_c00061{left:409.832000pt;}
.x56_c00061{left:410.880000pt;}
.x6c_c00061{left:411.782667pt;}
.x82_c00061{left:415.821333pt;}
.x3f_c00061{left:419.040000pt;}
.x1e_c00061{left:420.960000pt;}
.x62_c00061{left:423.966667pt;}
.x57_c00061{left:430.080000pt;}
.x66_c00061{left:439.133333pt;}
.x35_c00061{left:443.760000pt;}
.x26_c00061{left:446.640000pt;}
.x72_c00061{left:447.980000pt;}
.x7e_c00061{left:449.637333pt;}
.x58_c00061{left:453.840000pt;}
.x7f_c00061{left:485.134667pt;}
.x59_c00061{left:487.440000pt;}
.x73_c00061{left:494.545333pt;}
.x80_c00061{left:504.148000pt;}
.x74_c00061{left:512.070667pt;}
.x75_c00061{left:531.032000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mc7_c00062{transform:matrix(0.012508,0.000200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012508,0.000200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012508,0.000200,-0.003999,0.249968,0,0);}
.mbe_c00062{transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);}
.m73_c00062{transform:matrix(0.017098,0.000274,-0.003999,0.249968,0,0);-ms-transform:matrix(0.017098,0.000274,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.017098,0.000274,-0.003999,0.249968,0,0);}
.m4d_c00062{transform:matrix(0.017689,0.000230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.017689,0.000230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.017689,0.000230,-0.003250,0.249979,0,0);}
.m119_c00062{transform:matrix(0.018540,0.000445,-0.005998,0.249928,0,0);-ms-transform:matrix(0.018540,0.000445,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.018540,0.000445,-0.005998,0.249928,0,0);}
.m3c_c00062{transform:matrix(0.019142,0.000325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.019142,0.000325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.019142,0.000325,-0.004249,0.249964,0,0);}
.m124_c00062{transform:matrix(0.033280,0.000799,-0.005998,0.249928,0,0);-ms-transform:matrix(0.033280,0.000799,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.033280,0.000799,-0.005998,0.249928,0,0);}
.m55_c00062{transform:matrix(0.094230,0.001696,-0.004499,0.249960,0,0);-ms-transform:matrix(0.094230,0.001696,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.094230,0.001696,-0.004499,0.249960,0,0);}
.m123_c00062{transform:matrix(0.127168,0.003052,-0.005998,0.249928,0,0);-ms-transform:matrix(0.127168,0.003052,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.127168,0.003052,-0.005998,0.249928,0,0);}
.md0_c00062{transform:matrix(0.130353,0.002086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.130353,0.002086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.130353,0.002086,-0.003999,0.249968,0,0);}
.m90_c00062{transform:matrix(0.131743,0.002108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.131743,0.002108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.131743,0.002108,-0.003999,0.249968,0,0);}
.m64_c00062{transform:matrix(0.138868,0.002500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.138868,0.002500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.138868,0.002500,-0.004499,0.249960,0,0);}
.mce_c00062{transform:matrix(0.147126,0.002354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147126,0.002354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147126,0.002354,-0.003999,0.249968,0,0);}
.m6f_c00062{transform:matrix(0.147653,0.002215,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147653,0.002215,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147653,0.002215,-0.003750,0.249972,0,0);}
.m81_c00062{transform:matrix(0.149021,0.002384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149021,0.002384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149021,0.002384,-0.003999,0.249968,0,0);}
.mb2_c00062{transform:matrix(0.150446,0.002407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150446,0.002407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150446,0.002407,-0.003999,0.249968,0,0);}
.m84_c00062{transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);}
.m66_c00062{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);}
.m33_c00062{transform:matrix(0.156782,0.001568,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156782,0.001568,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156782,0.001568,-0.002500,0.249988,0,0);}
.mcd_c00062{transform:matrix(0.157935,0.002527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157935,0.002527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157935,0.002527,-0.003999,0.249968,0,0);}
.m28_c00062{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);}
.m9e_c00062{transform:matrix(0.158595,0.002538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158595,0.002538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158595,0.002538,-0.003999,0.249968,0,0);}
.mc3_c00062{transform:matrix(0.161054,0.002577,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161054,0.002577,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161054,0.002577,-0.003999,0.249968,0,0);}
.md_c00062{transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);}
.m6c_c00062{transform:matrix(0.162207,0.002433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162207,0.002433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162207,0.002433,-0.003750,0.249972,0,0);}
.mf_c00062{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m65_c00062{transform:matrix(0.162574,0.002926,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162574,0.002926,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162574,0.002926,-0.004499,0.249960,0,0);}
.m48_c00062{transform:matrix(0.162756,0.002116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162756,0.002116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162756,0.002116,-0.003250,0.249979,0,0);}
.m29_c00062{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);}
.mf7_c00062{transform:matrix(0.164338,0.003944,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164338,0.003944,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164338,0.003944,-0.005998,0.249928,0,0);}
.m6a_c00062{transform:matrix(0.164831,0.002472,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164831,0.002472,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164831,0.002472,-0.003750,0.249972,0,0);}
.m11f_c00062{transform:matrix(0.165047,0.003961,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165047,0.003961,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165047,0.003961,-0.005998,0.249928,0,0);}
.m5_c00062{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_c00062{transform:matrix(0.165352,0.001654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165352,0.001654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165352,0.001654,-0.002500,0.249988,0,0);}
.m2e_c00062{transform:matrix(0.166012,0.001660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166012,0.001660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166012,0.001660,-0.002500,0.249988,0,0);}
.ma1_c00062{transform:matrix(0.166019,0.002656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166019,0.002656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166019,0.002656,-0.003999,0.249968,0,0);}
.m4b_c00062{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);}
.m109_c00062{transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);}
.m3_c00062{transform:matrix(0.167649,0.002347,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167649,0.002347,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167649,0.002347,-0.003500,0.249976,0,0);}
.m63_c00062{transform:matrix(0.169183,0.003045,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169183,0.003045,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169183,0.003045,-0.004499,0.249960,0,0);}
.mb1_c00062{transform:matrix(0.169203,0.002707,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169203,0.002707,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169203,0.002707,-0.003999,0.249968,0,0);}
.m8a_c00062{transform:matrix(0.169373,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169373,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169373,0.002710,-0.003999,0.249968,0,0);}
.m82_c00062{transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);}
.m89_c00062{transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);}
.m1c_c00062{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);}
.m13_c00062{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);}
.m1e_c00062{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);}
.m2c_c00062{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);}
.m1d_c00062{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);}
.mde_c00062{transform:matrix(0.172133,0.002754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172133,0.002754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172133,0.002754,-0.003999,0.249968,0,0);}
.m60_c00062{transform:matrix(0.172157,0.003099,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172157,0.003099,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172157,0.003099,-0.004499,0.249960,0,0);}
.me1_c00062{transform:matrix(0.172898,0.002766,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172898,0.002766,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172898,0.002766,-0.003999,0.249968,0,0);}
.m7e_c00062{transform:matrix(0.173218,0.002771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173218,0.002771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173218,0.002771,-0.003999,0.249968,0,0);}
.md3_c00062{transform:matrix(0.173598,0.002778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173598,0.002778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173598,0.002778,-0.003999,0.249968,0,0);}
.md8_c00062{transform:matrix(0.173813,0.002781,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173813,0.002781,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173813,0.002781,-0.003999,0.249968,0,0);}
.m8b_c00062{transform:matrix(0.174898,0.002798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174898,0.002798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174898,0.002798,-0.003999,0.249968,0,0);}
.mb3_c00062{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);}
.m47_c00062{transform:matrix(0.175980,0.002288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175980,0.002288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175980,0.002288,-0.003250,0.249979,0,0);}
.me3_c00062{transform:matrix(0.176049,0.004225,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176049,0.004225,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176049,0.004225,-0.005998,0.249928,0,0);}
.mb5_c00062{transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);}
.m17_c00062{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);}
.mb0_c00062{transform:matrix(0.176902,0.002830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176902,0.002830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176902,0.002830,-0.003999,0.249968,0,0);}
.m32_c00062{transform:matrix(0.177406,0.001774,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177406,0.001774,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177406,0.001774,-0.002500,0.249988,0,0);}
.m88_c00062{transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);}
.m80_c00062{transform:matrix(0.178497,0.002856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178497,0.002856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178497,0.002856,-0.003999,0.249968,0,0);}
.m7_c00062{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);}
.m27_c00062{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);}
.mcf_c00062{transform:matrix(0.179807,0.002877,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179807,0.002877,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179807,0.002877,-0.003999,0.249968,0,0);}
.m41_c00062{transform:matrix(0.181092,0.002173,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181092,0.002173,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181092,0.002173,-0.003000,0.249982,0,0);}
.mef_c00062{transform:matrix(0.181223,0.004349,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181223,0.004349,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181223,0.004349,-0.005998,0.249928,0,0);}
.m6b_c00062{transform:matrix(0.181975,0.002730,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181975,0.002730,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181975,0.002730,-0.003750,0.249972,0,0);}
.mab_c00062{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);}
.m18_c00062{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);}
.md7_c00062{transform:matrix(0.182297,0.002917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182297,0.002917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182297,0.002917,-0.003999,0.249968,0,0);}
.m22_c00062{transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182565,0.000000,0.000000,0.250000,0,0);}
.mc2_c00062{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);}
.mb_c00062{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);}
.m36_c00062{transform:matrix(0.184191,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184191,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184191,0.001842,-0.002500,0.249988,0,0);}
.m10d_c00062{transform:matrix(0.184387,0.004425,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184387,0.004425,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184387,0.004425,-0.005998,0.249928,0,0);}
.m7f_c00062{transform:matrix(0.184686,0.002955,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184686,0.002955,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184686,0.002955,-0.003999,0.249968,0,0);}
.m59_c00062{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);}
.mb4_c00062{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);}
.m2a_c00062{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);}
.m92_c00062{transform:matrix(0.185161,0.002963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185161,0.002963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185161,0.002963,-0.003999,0.249968,0,0);}
.m12_c00062{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);}
.mfc_c00062{transform:matrix(0.186191,0.004469,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186191,0.004469,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186191,0.004469,-0.005998,0.249928,0,0);}
.m94_c00062{transform:matrix(0.186221,0.002980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186221,0.002980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186221,0.002980,-0.003999,0.249968,0,0);}
.mc9_c00062{transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);}
.mea_c00062{transform:matrix(0.186891,0.004485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186891,0.004485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186891,0.004485,-0.005998,0.249928,0,0);}
.me_c00062{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);}
.m2f_c00062{transform:matrix(0.187306,0.001873,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187306,0.001873,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187306,0.001873,-0.002500,0.249988,0,0);}
.m30_c00062{transform:matrix(0.187521,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187521,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187521,0.001875,-0.002500,0.249988,0,0);}
.m61_c00062{transform:matrix(0.187715,0.003379,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187715,0.003379,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187715,0.003379,-0.004499,0.249960,0,0);}
.md4_c00062{transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);}
.m9c_c00062{transform:matrix(0.188126,0.003010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188126,0.003010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188126,0.003010,-0.003999,0.249968,0,0);}
.m1f_c00062{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);}
.m104_c00062{transform:matrix(0.188586,0.004526,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188586,0.004526,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188586,0.004526,-0.005998,0.249928,0,0);}
.mbc_c00062{transform:matrix(0.188801,0.003021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188801,0.003021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188801,0.003021,-0.003999,0.249968,0,0);}
.mbd_c00062{transform:matrix(0.189081,0.003025,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189081,0.003025,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189081,0.003025,-0.003999,0.249968,0,0);}
.mbb_c00062{transform:matrix(0.189116,0.003026,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189116,0.003026,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189116,0.003026,-0.003999,0.249968,0,0);}
.m98_c00062{transform:matrix(0.189401,0.003030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189401,0.003030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189401,0.003030,-0.003999,0.249968,0,0);}
.m10_c00062{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);}
.m70_c00062{transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);}
.m62_c00062{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);}
.m71_c00062{transform:matrix(0.189784,0.002847,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189784,0.002847,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189784,0.002847,-0.003750,0.249972,0,0);}
.me0_c00062{transform:matrix(0.190036,0.003041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190036,0.003041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190036,0.003041,-0.003999,0.249968,0,0);}
.m11_c00062{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);}
.m19_c00062{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);}
.mca_c00062{transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);}
.m23_c00062{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);}
.mdf_c00062{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);}
.m91_c00062{transform:matrix(0.191720,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191720,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191720,0.003068,-0.003999,0.249968,0,0);}
.m5a_c00062{transform:matrix(0.192339,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192339,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192339,0.003462,-0.004499,0.249960,0,0);}
.m4_c00062{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);}
.m8e_c00062{transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);}
.ma2_c00062{transform:matrix(0.192885,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192885,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192885,0.003086,-0.003999,0.249968,0,0);}
.mdb_c00062{transform:matrix(0.193475,0.003096,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193475,0.003096,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193475,0.003096,-0.003999,0.249968,0,0);}
.me4_c00062{transform:matrix(0.193529,0.004645,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193529,0.004645,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193529,0.004645,-0.005998,0.249928,0,0);}
.m6_c00062{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);}
.mf6_c00062{transform:matrix(0.193914,0.004654,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193914,0.004654,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193914,0.004654,-0.005998,0.249928,0,0);}
.m110_c00062{transform:matrix(0.193969,0.004655,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193969,0.004655,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193969,0.004655,-0.005998,0.249928,0,0);}
.maf_c00062{transform:matrix(0.194185,0.003107,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194185,0.003107,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194185,0.003107,-0.003999,0.249968,0,0);}
.ma_c00062{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);}
.m40_c00062{transform:matrix(0.194716,0.002337,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194716,0.002337,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194716,0.002337,-0.003000,0.249982,0,0);}
.m3d_c00062{transform:matrix(0.194746,0.002337,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194746,0.002337,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194746,0.002337,-0.003000,0.249982,0,0);}
.maa_c00062{transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);}
.m43_c00062{transform:matrix(0.195266,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195266,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195266,0.002343,-0.003000,0.249982,0,0);}
.md9_c00062{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);}
.m95_c00062{transform:matrix(0.195405,0.003126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195405,0.003126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195405,0.003126,-0.003999,0.249968,0,0);}
.ma7_c00062{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);}
.m42_c00062{transform:matrix(0.197171,0.002366,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197171,0.002366,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197171,0.002366,-0.003000,0.249982,0,0);}
.mdc_c00062{transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);}
.m8_c00062{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);}
.mda_c00062{transform:matrix(0.198155,0.003170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198155,0.003170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198155,0.003170,-0.003999,0.249968,0,0);}
.mf3_c00062{transform:matrix(0.198473,0.004763,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198473,0.004763,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198473,0.004763,-0.005998,0.249928,0,0);}
.mc0_c00062{transform:matrix(0.198635,0.003178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198635,0.003178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198635,0.003178,-0.003999,0.249968,0,0);}
.m9a_c00062{transform:matrix(0.198835,0.003181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198835,0.003181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198835,0.003181,-0.003999,0.249968,0,0);}
.m7d_c00062{transform:matrix(0.199165,0.003187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199165,0.003187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199165,0.003187,-0.003999,0.249968,0,0);}
.me8_c00062{transform:matrix(0.199178,0.004780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199178,0.004780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199178,0.004780,-0.005998,0.249928,0,0);}
.ma6_c00062{transform:matrix(0.199584,0.003193,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199584,0.003193,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199584,0.003193,-0.003999,0.249968,0,0);}
.m111_c00062{transform:matrix(0.199797,0.004795,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199797,0.004795,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199797,0.004795,-0.005998,0.249928,0,0);}
.m8d_c00062{transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);}
.m3a_c00062{transform:matrix(0.200370,0.002004,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200370,0.002004,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200370,0.002004,-0.002500,0.249988,0,0);}
.m44_c00062{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);}
.mc5_c00062{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_c00062{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);}
.mfd_c00062{transform:matrix(0.201017,0.004824,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201017,0.004824,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201017,0.004824,-0.005998,0.249928,0,0);}
.m67_c00062{transform:matrix(0.201847,0.003633,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201847,0.003633,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201847,0.003633,-0.004499,0.249960,0,0);}
.mae_c00062{transform:matrix(0.202169,0.003235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202169,0.003235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202169,0.003235,-0.003999,0.249968,0,0);}
.m83_c00062{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);}
.m85_c00062{transform:matrix(0.202524,0.003240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202524,0.003240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202524,0.003240,-0.003999,0.249968,0,0);}
.m26_c00062{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);}
.m58_c00062{transform:matrix(0.202562,0.003646,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202562,0.003646,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202562,0.003646,-0.004499,0.249960,0,0);}
.mfb_c00062{transform:matrix(0.202922,0.004870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202922,0.004870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202922,0.004870,-0.005998,0.249928,0,0);}
.ma3_c00062{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);}
.mc6_c00062{transform:matrix(0.204164,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204164,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204164,0.003267,-0.003999,0.249968,0,0);}
.m8c_c00062{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);}
.m10c_c00062{transform:matrix(0.204446,0.004907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204446,0.004907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204446,0.004907,-0.005998,0.249928,0,0);}
.m76_c00062{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);}
.m9_c00062{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);}
.ma8_c00062{transform:matrix(0.205009,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205009,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205009,0.003280,-0.003999,0.249968,0,0);}
.mb7_c00062{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);}
.m87_c00062{transform:matrix(0.205154,0.003282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205154,0.003282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205154,0.003282,-0.003999,0.249968,0,0);}
.mc4_c00062{transform:matrix(0.205384,0.003286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205384,0.003286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205384,0.003286,-0.003999,0.249968,0,0);}
.m24_c00062{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);}
.m99_c00062{transform:matrix(0.205539,0.003289,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205539,0.003289,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205539,0.003289,-0.003999,0.249968,0,0);}
.m52_c00062{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);}
.m1b_c00062{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);}
.mb6_c00062{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);}
.m21_c00062{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);}
.m39_c00062{transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);}
.m9f_c00062{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);}
.mfe_c00062{transform:matrix(0.207380,0.004977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207380,0.004977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207380,0.004977,-0.005998,0.249928,0,0);}
.m25_c00062{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);}
.m97_c00062{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);}
.m14_c00062{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);}
.md1_c00062{transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);}
.mb9_c00062{transform:matrix(0.208948,0.003343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208948,0.003343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208948,0.003343,-0.003999,0.249968,0,0);}
.m3e_c00062{transform:matrix(0.209260,0.002511,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209260,0.002511,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209260,0.002511,-0.003000,0.249982,0,0);}
.m49_c00062{transform:matrix(0.209617,0.002725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209617,0.002725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209617,0.002725,-0.003250,0.249979,0,0);}
.mc8_c00062{transform:matrix(0.209858,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209858,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209858,0.003358,-0.003999,0.249968,0,0);}
.m2d_c00062{transform:matrix(0.210054,0.002101,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210054,0.002101,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210054,0.002101,-0.002500,0.249988,0,0);}
.mf9_c00062{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);}
.m78_c00062{transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);}
.m11d_c00062{transform:matrix(0.210864,0.005061,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210864,0.005061,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210864,0.005061,-0.005998,0.249928,0,0);}
.mc1_c00062{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);}
.m69_c00062{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);}
.mb8_c00062{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);}
.m4c_c00062{transform:matrix(0.212987,0.002769,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212987,0.002769,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212987,0.002769,-0.003250,0.249979,0,0);}
.mee_c00062{transform:matrix(0.213169,0.005116,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213169,0.005116,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213169,0.005116,-0.005998,0.249928,0,0);}
.m10a_c00062{transform:matrix(0.213289,0.005119,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213289,0.005119,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213289,0.005119,-0.005998,0.249928,0,0);}
.m15_c00062{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);}
.mbf_c00062{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);}
.mcc_c00062{transform:matrix(0.214398,0.003430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214398,0.003430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214398,0.003430,-0.003999,0.249968,0,0);}
.m86_c00062{transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);}
.m74_c00062{transform:matrix(0.215007,0.003440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215007,0.003440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215007,0.003440,-0.003999,0.249968,0,0);}
.m16_c00062{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);}
.m7a_c00062{transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);}
.m10f_c00062{transform:matrix(0.216033,0.005185,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216033,0.005185,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216033,0.005185,-0.005998,0.249928,0,0);}
.m38_c00062{transform:matrix(0.216169,0.002162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216169,0.002162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216169,0.002162,-0.002500,0.249988,0,0);}
.mf4_c00062{transform:matrix(0.216338,0.005192,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216338,0.005192,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216338,0.005192,-0.005998,0.249928,0,0);}
.m34_c00062{transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);}
.m108_c00062{transform:matrix(0.217112,0.005211,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217112,0.005211,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217112,0.005211,-0.005998,0.249928,0,0);}
.m31_c00062{transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);}
.mff_c00062{transform:matrix(0.217862,0.005229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217862,0.005229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217862,0.005229,-0.005998,0.249928,0,0);}
.m105_c00062{transform:matrix(0.218407,0.005242,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218407,0.005242,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218407,0.005242,-0.005998,0.249928,0,0);}
.ma5_c00062{transform:matrix(0.218487,0.003496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218487,0.003496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218487,0.003496,-0.003999,0.249968,0,0);}
.m5e_c00062{transform:matrix(0.218495,0.003933,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218495,0.003933,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218495,0.003933,-0.004499,0.249960,0,0);}
.m9d_c00062{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);}
.meb_c00062{transform:matrix(0.219697,0.005273,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219697,0.005273,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219697,0.005273,-0.005998,0.249928,0,0);}
.mcb_c00062{transform:matrix(0.220107,0.003522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220107,0.003522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220107,0.003522,-0.003999,0.249968,0,0);}
.m2b_c00062{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);}
.m77_c00062{transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);}
.mf8_c00062{transform:matrix(0.220991,0.005304,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220991,0.005304,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220991,0.005304,-0.005998,0.249928,0,0);}
.m9b_c00062{transform:matrix(0.221007,0.003536,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221007,0.003536,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221007,0.003536,-0.003999,0.249968,0,0);}
.m11a_c00062{transform:matrix(0.221631,0.005319,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221631,0.005319,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221631,0.005319,-0.005998,0.249928,0,0);}
.m46_c00062{transform:matrix(0.221976,0.002886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221976,0.002886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221976,0.002886,-0.003250,0.249979,0,0);}
.mc_c00062{transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);}
.m57_c00062{transform:matrix(0.222889,0.004012,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222889,0.004012,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222889,0.004012,-0.004499,0.249960,0,0);}
.mac_c00062{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);}
.m11b_c00062{transform:matrix(0.223901,0.005374,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223901,0.005374,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223901,0.005374,-0.005998,0.249928,0,0);}
.m3f_c00062{transform:matrix(0.223979,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223979,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223979,0.002688,-0.003000,0.249982,0,0);}
.m120_c00062{transform:matrix(0.225055,0.005401,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225055,0.005401,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225055,0.005401,-0.005998,0.249928,0,0);}
.m107_c00062{transform:matrix(0.226100,0.005426,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226100,0.005426,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226100,0.005426,-0.005998,0.249928,0,0);}
.md5_c00062{transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);}
.me7_c00062{transform:matrix(0.227849,0.005468,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227849,0.005468,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227849,0.005468,-0.005998,0.249928,0,0);}
.m103_c00062{transform:matrix(0.227909,0.005470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227909,0.005470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227909,0.005470,-0.005998,0.249928,0,0);}
.mec_c00062{transform:matrix(0.228074,0.005474,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228074,0.005474,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228074,0.005474,-0.005998,0.249928,0,0);}
.m53_c00062{transform:matrix(0.228373,0.004111,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228373,0.004111,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228373,0.004111,-0.004499,0.249960,0,0);}
.ma0_c00062{transform:matrix(0.228821,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228821,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228821,0.003661,-0.003999,0.249968,0,0);}
.m114_c00062{transform:matrix(0.230739,0.005538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230739,0.005538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230739,0.005538,-0.005998,0.249928,0,0);}
.m96_c00062{transform:matrix(0.231995,0.003712,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231995,0.003712,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231995,0.003712,-0.003999,0.249968,0,0);}
.m6e_c00062{transform:matrix(0.236018,0.003540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236018,0.003540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236018,0.003540,-0.003750,0.249972,0,0);}
.mf5_c00062{transform:matrix(0.236422,0.005674,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236422,0.005674,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236422,0.005674,-0.005998,0.249928,0,0);}
.m5f_c00062{transform:matrix(0.237327,0.004272,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237327,0.004272,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237327,0.004272,-0.004499,0.249960,0,0);}
.m106_c00062{transform:matrix(0.237941,0.005711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237941,0.005711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237941,0.005711,-0.005998,0.249928,0,0);}
.m10e_c00062{transform:matrix(0.238001,0.005712,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238001,0.005712,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238001,0.005712,-0.005998,0.249928,0,0);}
.m45_c00062{transform:matrix(0.238268,0.002859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238268,0.002859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238268,0.002859,-0.003000,0.249982,0,0);}
.m4a_c00062{transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);}
.m100_c00062{transform:matrix(0.239151,0.005740,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239151,0.005740,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239151,0.005740,-0.005998,0.249928,0,0);}
.mdd_c00062{transform:matrix(0.240134,0.003842,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240134,0.003842,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240134,0.003842,-0.003999,0.249968,0,0);}
.ma9_c00062{transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);}
.m118_c00062{transform:matrix(0.241700,0.005801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241700,0.005801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241700,0.005801,-0.005998,0.249928,0,0);}
.m7b_c00062{transform:matrix(0.242604,0.003882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242604,0.003882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242604,0.003882,-0.003999,0.249968,0,0);}
.m35_c00062{transform:matrix(0.244333,0.002443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244333,0.002443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244333,0.002443,-0.002500,0.249988,0,0);}
.mf2_c00062{transform:matrix(0.245464,0.005891,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245464,0.005891,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245464,0.005891,-0.005998,0.249928,0,0);}
.ma4_c00062{transform:matrix(0.246024,0.003936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246024,0.003936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246024,0.003936,-0.003999,0.249968,0,0);}
.m75_c00062{transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);}
.m11e_c00062{transform:matrix(0.246894,0.005925,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246894,0.005925,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246894,0.005925,-0.005998,0.249928,0,0);}
.m54_c00062{transform:matrix(0.247385,0.004453,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247385,0.004453,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247385,0.004453,-0.004499,0.249960,0,0);}
.mba_c00062{transform:matrix(0.252288,0.004037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252288,0.004037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252288,0.004037,-0.003999,0.249968,0,0);}
.mf0_c00062{transform:matrix(0.252692,0.006065,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252692,0.006065,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252692,0.006065,-0.005998,0.249928,0,0);}
.md2_c00062{transform:matrix(0.252878,0.004046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252878,0.004046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252878,0.004046,-0.003999,0.249968,0,0);}
.m51_c00062{transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);}
.m125_c00062{transform:matrix(0.257336,0.006176,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257336,0.006176,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257336,0.006176,-0.005998,0.249928,0,0);}
.m8f_c00062{transform:matrix(0.260302,0.004165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260302,0.004165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260302,0.004165,-0.003999,0.249968,0,0);}
.m79_c00062{transform:matrix(0.261127,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261127,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261127,0.004178,-0.003999,0.249968,0,0);}
.m50_c00062{transform:matrix(0.264573,0.003439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264573,0.003439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264573,0.003439,-0.003250,0.249979,0,0);}
.m11c_c00062{transform:matrix(0.265419,0.006370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265419,0.006370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265419,0.006370,-0.005998,0.249928,0,0);}
.m5d_c00062{transform:matrix(0.266017,0.004788,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266017,0.004788,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266017,0.004788,-0.004499,0.249960,0,0);}
.m6d_c00062{transform:matrix(0.269300,0.004039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269300,0.004039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269300,0.004039,-0.003750,0.249972,0,0);}
.m10b_c00062{transform:matrix(0.273871,0.006573,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273871,0.006573,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273871,0.006573,-0.005998,0.249928,0,0);}
.m93_c00062{transform:matrix(0.277160,0.004435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277160,0.004435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277160,0.004435,-0.003999,0.249968,0,0);}
.med_c00062{transform:matrix(0.280234,0.006726,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280234,0.006726,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280234,0.006726,-0.005998,0.249928,0,0);}
.md6_c00062{transform:matrix(0.283269,0.004532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283269,0.004532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283269,0.004532,-0.003999,0.249968,0,0);}
.m4f_c00062{transform:matrix(0.289761,0.003767,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289761,0.003767,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289761,0.003767,-0.003250,0.249979,0,0);}
.m116_c00062{transform:matrix(0.310840,0.007460,-0.005998,0.249928,0,0);-ms-transform:matrix(0.310840,0.007460,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.310840,0.007460,-0.005998,0.249928,0,0);}
.m4e_c00062{transform:matrix(0.316743,0.004118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316743,0.004118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316743,0.004118,-0.003250,0.249979,0,0);}
.m68_c00062{transform:matrix(0.319233,0.005746,-0.004499,0.249960,0,0);-ms-transform:matrix(0.319233,0.005746,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.319233,0.005746,-0.004499,0.249960,0,0);}
.m72_c00062{transform:matrix(0.321744,0.004826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.321744,0.004826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.321744,0.004826,-0.003750,0.249972,0,0);}
.m1a_c00062{transform:matrix(0.327620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327620,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.330338,0.004625,-0.003500,0.249976,0,0);-ms-transform:matrix(0.330338,0.004625,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.330338,0.004625,-0.003500,0.249976,0,0);}
.me6_c00062{transform:matrix(0.330525,0.007933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.330525,0.007933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.330525,0.007933,-0.005998,0.249928,0,0);}
.me9_c00062{transform:matrix(0.331335,0.007952,-0.005998,0.249928,0,0);-ms-transform:matrix(0.331335,0.007952,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.331335,0.007952,-0.005998,0.249928,0,0);}
.mad_c00062{transform:matrix(0.332512,0.005320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.332512,0.005320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.332512,0.005320,-0.003999,0.249968,0,0);}
.m56_c00062{transform:matrix(0.340815,0.006135,-0.004499,0.249960,0,0);-ms-transform:matrix(0.340815,0.006135,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.340815,0.006135,-0.004499,0.249960,0,0);}
.m3b_c00062{transform:matrix(0.342990,0.005831,-0.004249,0.249964,0,0);-ms-transform:matrix(0.342990,0.005831,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.342990,0.005831,-0.004249,0.249964,0,0);}
.m7c_c00062{transform:matrix(0.359329,0.005749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.359329,0.005749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.359329,0.005749,-0.003999,0.249968,0,0);}
.m102_c00062{transform:matrix(0.359566,0.008630,-0.005998,0.249928,0,0);-ms-transform:matrix(0.359566,0.008630,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.359566,0.008630,-0.005998,0.249928,0,0);}
.m113_c00062{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);}
.m5c_c00062{transform:matrix(0.366776,0.006602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.366776,0.006602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.366776,0.006602,-0.004499,0.249960,0,0);}
.mfa_c00062{transform:matrix(0.378316,0.009080,-0.005998,0.249928,0,0);-ms-transform:matrix(0.378316,0.009080,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.378316,0.009080,-0.005998,0.249928,0,0);}
.m1_c00062{transform:matrix(0.388082,0.005433,-0.003500,0.249976,0,0);-ms-transform:matrix(0.388082,0.005433,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.388082,0.005433,-0.003500,0.249976,0,0);}
.m126_c00062{transform:matrix(0.390243,0.009366,-0.005998,0.249928,0,0);-ms-transform:matrix(0.390243,0.009366,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.390243,0.009366,-0.005998,0.249928,0,0);}
.m115_c00062{transform:matrix(0.409662,0.009832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.409662,0.009832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.409662,0.009832,-0.005998,0.249928,0,0);}
.m122_c00062{transform:matrix(0.419679,0.010072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.419679,0.010072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.419679,0.010072,-0.005998,0.249928,0,0);}
.m0_c00062{transform:matrix(0.449065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449065,0.000000,0.000000,0.250000,0,0);}
.m101_c00062{transform:matrix(0.457013,0.010968,-0.005998,0.249928,0,0);-ms-transform:matrix(0.457013,0.010968,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.457013,0.010968,-0.005998,0.249928,0,0);}
.m112_c00062{transform:matrix(0.489834,0.011756,-0.005998,0.249928,0,0);-ms-transform:matrix(0.489834,0.011756,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.489834,0.011756,-0.005998,0.249928,0,0);}
.m117_c00062{transform:matrix(0.535231,0.012846,-0.005998,0.249928,0,0);-ms-transform:matrix(0.535231,0.012846,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.535231,0.012846,-0.005998,0.249928,0,0);}
.me2_c00062{transform:matrix(0.565262,0.013566,-0.005998,0.249928,0,0);-ms-transform:matrix(0.565262,0.013566,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.565262,0.013566,-0.005998,0.249928,0,0);}
.mf1_c00062{transform:matrix(0.592664,0.014224,-0.005998,0.249928,0,0);-ms-transform:matrix(0.592664,0.014224,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.592664,0.014224,-0.005998,0.249928,0,0);}
.m121_c00062{transform:matrix(0.638396,0.015322,-0.005998,0.249928,0,0);-ms-transform:matrix(0.638396,0.015322,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.638396,0.015322,-0.005998,0.249928,0,0);}
.me5_c00062{transform:matrix(0.844302,0.020263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.844302,0.020263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.844302,0.020263,-0.005998,0.249928,0,0);}
.m5b_c00062{transform:matrix(1.010761,0.018194,-0.004499,0.249960,0,0);-ms-transform:matrix(1.010761,0.018194,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.010761,0.018194,-0.004499,0.249960,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;}
.fs0_c00062{font-size:45.150000px;}
.fs17_c00062{font-size:47.263606px;}
.fs15_c00062{font-size:50.414513px;}
.fs16_c00062{font-size:51.464815px;}
.fs18_c00062{font-size:52.515118px;}
.fs9_c00062{font-size:64.054611px;}
.fsf_c00062{font-size:65.108332px;}
.fs4_c00062{font-size:67.200000px;}
.fs6_c00062{font-size:68.253412px;}
.fsa_c00062{font-size:68.255767px;}
.fs13_c00062{font-size:68.258735px;}
.fs5_c00062{font-size:69.300000px;}
.fsc_c00062{font-size:69.311226px;}
.fs19_c00062{font-size:69.319956px;}
.fs10_c00062{font-size:70.359004px;}
.fs3_c00062{font-size:71.400000px;}
.fs12_c00062{font-size:71.409139px;}
.fsd_c00062{font-size:71.411566px;}
.fs2_c00062{font-size:72.450000px;}
.fs7_c00062{font-size:72.453622px;}
.fs11_c00062{font-size:72.459273px;}
.fsb_c00062{font-size:72.461736px;}
.fse_c00062{font-size:73.508268px;}
.fs14_c00062{font-size:73.509407px;}
.fs8_c00062{font-size:90.313047px;}
.fs1_c00062{font-size:114.461216px;}
.y0_c00062{bottom:0.000000px;}
.y10a_c00062{bottom:121.120584px;}
.y109_c00062{bottom:123.512760px;}
.y108_c00062{bottom:125.120928px;}
.y107_c00062{bottom:127.594956px;}
.y106_c00062{bottom:128.780076px;}
.y105_c00062{bottom:139.911240px;}
.y104_c00062{bottom:140.784384px;}
.y103_c00062{bottom:141.238308px;}
.y102_c00062{bottom:141.554172px;}
.y101_c00062{bottom:142.133376px;}
.y100_c00062{bottom:142.534092px;}
.yff_c00062{bottom:144.005556px;}
.yfe_c00062{bottom:144.420456px;}
.yfd_c00062{bottom:144.691104px;}
.yfc_c00062{bottom:145.101468px;}
.yfb_c00062{bottom:146.851032px;}
.yfa_c00062{bottom:147.558252px;}
.yf9_c00062{bottom:148.232928px;}
.yf8_c00062{bottom:149.509416px;}
.yf7_c00062{bottom:150.392316px;}
.yf6_c00062{bottom:151.186476px;}
.yf5_c00062{bottom:156.759876px;}
.yf4_c00062{bottom:157.090788px;}
.yf3_c00062{bottom:157.772232px;}
.yf2_c00062{bottom:159.076452px;}
.yf1_c00062{bottom:159.352380px;}
.yf0_c00062{bottom:160.000104px;}
.yef_c00062{bottom:160.891212px;}
.yee_c00062{bottom:161.768508px;}
.yed_c00062{bottom:162.018516px;}
.yec_c00062{bottom:162.612900px;}
.yeb_c00062{bottom:163.360488px;}
.yea_c00062{bottom:165.158868px;}
.ye9_c00062{bottom:166.417848px;}
.ye8_c00062{bottom:166.834704px;}
.ye7_c00062{bottom:168.013728px;}
.ye6_c00062{bottom:168.699708px;}
.ye5_c00062{bottom:169.284876px;}
.ye4_c00062{bottom:176.192112px;}
.ye3_c00062{bottom:176.489952px;}
.ye2_c00062{bottom:177.130224px;}
.ye1_c00062{bottom:178.143408px;}
.ye0_c00062{bottom:178.695468px;}
.ydf_c00062{bottom:180.209112px;}
.yde_c00062{bottom:180.562884px;}
.ydd_c00062{bottom:181.381008px;}
.ydc_c00062{bottom:182.275356px;}
.ydb_c00062{bottom:182.861172px;}
.yda_c00062{bottom:183.321468px;}
.yd9_c00062{bottom:184.374672px;}
.yd8_c00062{bottom:184.814376px;}
.yd7_c00062{bottom:185.603316px;}
.yd6_c00062{bottom:186.389988px;}
.yd5_c00062{bottom:187.657860px;}
.yd4_c00062{bottom:194.127228px;}
.yd3_c00062{bottom:194.568840px;}
.yd2_c00062{bottom:195.169752px;}
.yd1_c00062{bottom:195.573420px;}
.yd0_c00062{bottom:197.032104px;}
.ycf_c00062{bottom:197.947548px;}
.yce_c00062{bottom:198.373248px;}
.ycd_c00062{bottom:199.231632px;}
.ycc_c00062{bottom:200.305152px;}
.ycb_c00062{bottom:200.596680px;}
.yca_c00062{bottom:202.028724px;}
.yc9_c00062{bottom:203.078952px;}
.yc8_c00062{bottom:203.531436px;}
.yc7_c00062{bottom:204.291864px;}
.yc6_c00062{bottom:205.204500px;}
.yc5_c00062{bottom:234.084528px;}
.yc4_c00062{bottom:235.301268px;}
.yc3_c00062{bottom:236.187096px;}
.yc2_c00062{bottom:237.281700px;}
.yc1_c00062{bottom:237.770016px;}
.yc0_c00062{bottom:239.195700px;}
.ybf_c00062{bottom:240.066252px;}
.ybe_c00062{bottom:241.352124px;}
.ybd_c00062{bottom:257.959896px;}
.ybc_c00062{bottom:258.376416px;}
.ybb_c00062{bottom:259.778556px;}
.yba_c00062{bottom:260.229516px;}
.yb9_c00062{bottom:261.447048px;}
.yb8_c00062{bottom:262.160880px;}
.yb7_c00062{bottom:263.443356px;}
.yb6_c00062{bottom:264.845688px;}
.yb5_c00062{bottom:280.231704px;}
.yb4_c00062{bottom:281.065812px;}
.yb3_c00062{bottom:281.749872px;}
.yb2_c00062{bottom:282.399648px;}
.yb1_c00062{bottom:282.952224px;}
.yb0_c00062{bottom:284.091132px;}
.yaf_c00062{bottom:285.363780px;}
.yae_c00062{bottom:285.855252px;}
.yad_c00062{bottom:287.165916px;}
.yac_c00062{bottom:287.800224px;}
.yab_c00062{bottom:303.868464px;}
.yaa_c00062{bottom:304.894908px;}
.ya9_c00062{bottom:305.518776px;}
.ya8_c00062{bottom:307.055856px;}
.ya7_c00062{bottom:307.395816px;}
.ya6_c00062{bottom:307.923384px;}
.ya5_c00062{bottom:308.916840px;}
.ya4_c00062{bottom:309.760008px;}
.ya3_c00062{bottom:310.756008px;}
.ya2_c00062{bottom:324.961092px;}
.ya1_c00062{bottom:325.926552px;}
.ya0_c00062{bottom:326.567880px;}
.y9f_c00062{bottom:327.965352px;}
.y9e_c00062{bottom:328.350444px;}
.y9d_c00062{bottom:330.045960px;}
.y9c_c00062{bottom:331.591452px;}
.y9b_c00062{bottom:332.897304px;}
.y9a_c00062{bottom:350.550156px;}
.y99_c00062{bottom:351.098328px;}
.y98_c00062{bottom:351.474312px;}
.y97_c00062{bottom:352.329252px;}
.y96_c00062{bottom:352.757436px;}
.y95_c00062{bottom:353.622660px;}
.y94_c00062{bottom:354.288768px;}
.y93_c00062{bottom:355.377564px;}
.y92_c00062{bottom:355.849032px;}
.y91_c00062{bottom:370.628148px;}
.y90_c00062{bottom:371.643528px;}
.y8f_c00062{bottom:372.386472px;}
.y8e_c00062{bottom:373.124616px;}
.y8d_c00062{bottom:373.458684px;}
.y8c_c00062{bottom:374.878032px;}
.y8b_c00062{bottom:375.638592px;}
.y8a_c00062{bottom:377.101872px;}
.y89_c00062{bottom:377.993592px;}
.y88_c00062{bottom:378.533508px;}
.y87_c00062{bottom:396.211092px;}
.y86_c00062{bottom:396.801516px;}
.y85_c00062{bottom:397.133160px;}
.y84_c00062{bottom:397.879548px;}
.y83_c00062{bottom:398.475708px;}
.y82_c00062{bottom:398.965692px;}
.y81_c00062{bottom:399.362844px;}
.y80_c00062{bottom:399.686556px;}
.y7f_c00062{bottom:400.674900px;}
.y7e_c00062{bottom:417.110400px;}
.y7d_c00062{bottom:417.635388px;}
.y7c_c00062{bottom:418.247352px;}
.y7b_c00062{bottom:419.177316px;}
.y7a_c00062{bottom:419.910852px;}
.y79_c00062{bottom:421.058016px;}
.y78_c00062{bottom:421.761072px;}
.y77_c00062{bottom:422.414256px;}
.y76_c00062{bottom:423.175368px;}
.y75_c00062{bottom:423.626940px;}
.y74_c00062{bottom:440.268624px;}
.y73_c00062{bottom:440.553084px;}
.y72_c00062{bottom:441.645816px;}
.y71_c00062{bottom:441.962136px;}
.y70_c00062{bottom:442.571592px;}
.y6f_c00062{bottom:443.227536px;}
.y6e_c00062{bottom:443.843424px;}
.y6d_c00062{bottom:444.348984px;}
.y6c_c00062{bottom:444.927876px;}
.y6b_c00062{bottom:445.623672px;}
.y6a_c00062{bottom:446.579004px;}
.y69_c00062{bottom:464.821284px;}
.y68_c00062{bottom:465.316560px;}
.y67_c00062{bottom:466.152252px;}
.y66_c00062{bottom:466.545264px;}
.y65_c00062{bottom:466.858368px;}
.y64_c00062{bottom:467.593116px;}
.y63_c00062{bottom:468.121632px;}
.y62_c00062{bottom:468.840456px;}
.y61_c00062{bottom:469.801608px;}
.y60_c00062{bottom:486.224712px;}
.y5f_c00062{bottom:487.062408px;}
.y5e_c00062{bottom:487.559424px;}
.y5d_c00062{bottom:487.856352px;}
.y5c_c00062{bottom:488.867592px;}
.y5b_c00062{bottom:490.159392px;}
.y5a_c00062{bottom:490.767408px;}
.y59_c00062{bottom:491.071152px;}
.y58_c00062{bottom:491.744928px;}
.y57_c00062{bottom:491.943000px;}
.y56_c00062{bottom:510.260587px;}
.y55_c00062{bottom:511.272120px;}
.y54_c00062{bottom:511.579763px;}
.y53_c00062{bottom:512.037727px;}
.y52_c00062{bottom:512.333962px;}
.y51_c00062{bottom:512.823585px;}
.y50_c00062{bottom:513.215288px;}
.y4f_c00062{bottom:513.757988px;}
.y4e_c00062{bottom:514.414313px;}
.y4d_c00062{bottom:514.893000px;}
.y4c_c00062{bottom:533.123058px;}
.y4b_c00062{bottom:534.052959px;}
.y4a_c00062{bottom:534.582252px;}
.y49_c00062{bottom:534.872781px;}
.y48_c00062{bottom:535.372089px;}
.y47_c00062{bottom:535.658502px;}
.y46_c00062{bottom:535.930194px;}
.y45_c00062{bottom:536.347089px;}
.y44_c00062{bottom:536.761704px;}
.y43_c00062{bottom:537.295788px;}
.y42_c00062{bottom:555.726621px;}
.y41_c00062{bottom:556.642779px;}
.y40_c00062{bottom:556.971180px;}
.y3f_c00062{bottom:557.940717px;}
.y3e_c00062{bottom:558.504720px;}
.y3d_c00062{bottom:559.351347px;}
.y3c_c00062{bottom:559.979661px;}
.y3b_c00062{bottom:576.750678px;}
.y3a_c00062{bottom:577.236597px;}
.y39_c00062{bottom:578.098923px;}
.y38_c00062{bottom:580.716411px;}
.y37_c00062{bottom:581.012817px;}
.y36_c00062{bottom:582.214101px;}
.y35_c00062{bottom:582.666000px;}
.y34_c00062{bottom:599.520008px;}
.y33_c00062{bottom:599.835927px;}
.y32_c00062{bottom:600.106996px;}
.y31_c00062{bottom:600.249795px;}
.y30_c00062{bottom:600.797764px;}
.y2f_c00062{bottom:601.149018px;}
.y2e_c00062{bottom:601.780720px;}
.y2d_c00062{bottom:602.602119px;}
.y2c_c00062{bottom:602.798699px;}
.y2b_c00062{bottom:603.092875px;}
.y2a_c00062{bottom:603.451500px;}
.y29_c00062{bottom:621.573090px;}
.y28_c00062{bottom:622.133772px;}
.y27_c00062{bottom:622.470948px;}
.y26_c00062{bottom:623.067180px;}
.y25_c00062{bottom:623.287482px;}
.y24_c00062{bottom:623.754042px;}
.y23_c00062{bottom:624.360030px;}
.y22_c00062{bottom:624.962706px;}
.y21_c00062{bottom:625.591500px;}
.y20_c00062{bottom:644.024958px;}
.y1f_c00062{bottom:647.464500px;}
.y1e_c00062{bottom:669.104730px;}
.y1d_c00062{bottom:669.536625px;}
.y1c_c00062{bottom:669.666225px;}
.y1b_c00062{bottom:670.225230px;}
.y1a_c00062{bottom:670.619430px;}
.y19_c00062{bottom:671.221500px;}
.y18_c00062{bottom:692.127480px;}
.y17_c00062{bottom:692.600010px;}
.y16_c00062{bottom:692.923620px;}
.y15_c00062{bottom:693.094200px;}
.y14_c00062{bottom:693.658530px;}
.y13_c00062{bottom:694.055460px;}
.y12_c00062{bottom:694.433415px;}
.y11_c00062{bottom:694.711500px;}
.y10_c00062{bottom:715.530000px;}
.yf_c00062{bottom:737.916000px;}
.ye_c00062{bottom:760.684500px;}
.yd_c00062{bottom:782.437500px;}
.yc_c00062{bottom:782.659500px;}
.yb_c00062{bottom:783.423000px;}
.ya_c00062{bottom:783.696000px;}
.y9_c00062{bottom:784.314000px;}
.y8_c00062{bottom:784.573500px;}
.y7_c00062{bottom:785.167500px;}
.y6_c00062{bottom:785.701500px;}
.y5_c00062{bottom:806.670000px;}
.y4_c00062{bottom:849.767859px;}
.y3_c00062{bottom:851.087268px;}
.y2_c00062{bottom:854.014500px;}
.y1_c00062{bottom:915.832500px;}
.h2_c00062{height:45.150000px;}
.h19_c00062{height:47.263606px;}
.h17_c00062{height:50.414513px;}
.h18_c00062{height:51.464815px;}
.h1a_c00062{height:52.515118px;}
.hb_c00062{height:64.054611px;}
.h11_c00062{height:65.108332px;}
.h6_c00062{height:67.200000px;}
.h8_c00062{height:68.253412px;}
.hc_c00062{height:68.255767px;}
.h15_c00062{height:68.258735px;}
.h7_c00062{height:69.300000px;}
.he_c00062{height:69.311226px;}
.h1b_c00062{height:69.319956px;}
.h12_c00062{height:70.359004px;}
.h5_c00062{height:71.400000px;}
.h14_c00062{height:71.409139px;}
.hf_c00062{height:71.411566px;}
.h4_c00062{height:72.450000px;}
.h9_c00062{height:72.453622px;}
.h13_c00062{height:72.459273px;}
.hd_c00062{height:72.461736px;}
.h10_c00062{height:73.508268px;}
.h16_c00062{height:73.509407px;}
.ha_c00062{height:90.313047px;}
.h3_c00062{height:114.461216px;}
.h1_c00062{height:1005.000000px;}
.h0_c00062{height:1005.150000px;}
.w0_c00062{width:732.750000px;}
.x0_c00062{left:0.000000px;}
.x9c_c00062{left:26.209908px;}
.x94_c00062{left:29.173812px;}
.xa8_c00062{left:34.505628px;}
.x8a_c00062{left:42.742500px;}
.xa4_c00062{left:44.949084px;}
.x9d_c00062{left:49.591332px;}
.x9e_c00062{left:77.048184px;}
.x8b_c00062{left:80.769000px;}
.xa9_c00062{left:88.388220px;}
.x40_c00062{left:97.974000px;}
.x54_c00062{left:108.102000px;}
.x95_c00062{left:111.340332px;}
.x8c_c00062{left:112.453500px;}
.x7d_c00062{left:114.142296px;}
.x72_c00062{left:117.487956px;}
.x63_c00062{left:119.109540px;}
.x4f_c00062{left:121.039500px;}
.x39_c00062{left:122.685000px;}
.x28_c00062{left:123.802500px;}
.x5_c00062{left:126.360000px;}
.x8d_c00062{left:131.307000px;}
.x9f_c00062{left:140.916672px;}
.x96_c00062{left:142.899576px;}
.x64_c00062{left:144.238248px;}
.x1b_c00062{left:145.530000px;}
.x6d_c00062{left:147.189780px;}
.x3a_c00062{left:150.271500px;}
.x6_c00062{left:152.010000px;}
.x2_c00062{left:160.599000px;}
.x48_c00062{left:163.241130px;}
.x45_c00062{left:168.585843px;}
.x23_c00062{left:171.720000px;}
.x1c_c00062{left:173.340000px;}
.x1_c00062{left:174.690000px;}
.x36_c00062{left:176.418000px;}
.xd_c00062{left:179.674500px;}
.x55_c00062{left:181.576500px;}
.x69_c00062{left:184.767396px;}
.x2f_c00062{left:186.972000px;}
.x3b_c00062{left:188.022000px;}
.x29_c00062{left:189.406500px;}
.x7_c00062{left:190.620000px;}
.x6e_c00062{left:194.107524px;}
.x49_c00062{left:195.111492px;}
.x50_c00062{left:196.707000px;}
.x7e_c00062{left:201.708288px;}
.x73_c00062{left:204.126672px;}
.x41_c00062{left:206.284500px;}
.x24_c00062{left:208.710000px;}
.x14_c00062{left:209.793000px;}
.x86_c00062{left:212.760864px;}
.x1d_c00062{left:214.110000px;}
.x5c_c00062{left:217.666992px;}
.x56_c00062{left:219.577500px;}
.x97_c00062{left:221.031204px;}
.x15_c00062{left:223.023000px;}
.x30_c00062{left:226.392000px;}
.x2a_c00062{left:229.099500px;}
.x25_c00062{left:231.390000px;}
.x51_c00062{left:232.887000px;}
.x8e_c00062{left:234.735000px;}
.xe_c00062{left:239.128500px;}
.x74_c00062{left:241.163496px;}
.x98_c00062{left:244.439628px;}
.x8f_c00062{left:246.882000px;}
.x4a_c00062{left:248.037744px;}
.x59_c00062{left:250.085340px;}
.x3c_c00062{left:251.206500px;}
.x78_c00062{left:253.802100px;}
.x26_c00062{left:257.310000px;}
.x8_c00062{left:258.660000px;}
.x65_c00062{left:261.944004px;}
.x85_c00062{left:263.264220px;}
.xf_c00062{left:265.011000px;}
.x34_c00062{left:268.365000px;}
.x46_c00062{left:269.378106px;}
.x6f_c00062{left:271.121328px;}
.x7f_c00062{left:274.078980px;}
.x1e_c00062{left:277.560000px;}
.x82_c00062{left:278.906436px;}
.x99_c00062{left:280.203264px;}
.x31_c00062{left:282.292500px;}
.x16_c00062{left:283.773000px;}
.x2b_c00062{left:285.532500px;}
.x75_c00062{left:289.238460px;}
.x80_c00062{left:290.262684px;}
.x52_c00062{left:291.642000px;}
.x5a_c00062{left:293.287644px;}
.x32_c00062{left:295.252500px;}
.x9_c00062{left:297.000000px;}
.xa5_c00062{left:298.491084px;}
.x3d_c00062{left:299.799000px;}
.x2c_c00062{left:302.590500px;}
.x6a_c00062{left:305.207316px;}
.x4b_c00062{left:308.527698px;}
.x1f_c00062{left:311.310000px;}
.x76_c00062{left:312.999192px;}
.x17_c00062{left:314.283000px;}
.x27_c00062{left:315.900000px;}
.x5d_c00062{left:317.655384px;}
.x66_c00062{left:325.670964px;}
.x10_c00062{left:326.878500px;}
.x83_c00062{left:328.426392px;}
.x4c_c00062{left:330.920223px;}
.x2d_c00062{left:334.951500px;}
.x33_c00062{left:338.442000px;}
.x53_c00062{left:341.922000px;}
.x90_c00062{left:345.115500px;}
.x87_c00062{left:349.504236px;}
.x42_c00062{left:351.700500px;}
.x79_c00062{left:352.894680px;}
.x11_c00062{left:354.108000px;}
.x5e_c00062{left:356.213760px;}
.x77_c00062{left:360.525180px;}
.x47_c00062{left:362.075775px;}
.x57_c00062{left:363.517500px;}
.xa_c00062{left:366.390000px;}
.x3_c00062{left:369.687000px;}
.x4d_c00062{left:371.662395px;}
.x18_c00062{left:373.413000px;}
.x6b_c00062{left:377.085468px;}
.x20_c00062{left:380.700000px;}
.x2e_c00062{left:382.204500px;}
.xb_c00062{left:383.670000px;}
.x70_c00062{left:385.891332px;}
.x9a_c00062{left:387.660708px;}
.x88_c00062{left:389.770872px;}
.x5f_c00062{left:392.054184px;}
.x19_c00062{left:393.933000px;}
.xa0_c00062{left:397.566480px;}
.x43_c00062{left:399.607500px;}
.x3e_c00062{left:400.806000px;}
.x21_c00062{left:403.380000px;}
.xa6_c00062{left:405.465084px;}
.x60_c00062{left:410.698896px;}
.x37_c00062{left:412.162500px;}
.x5b_c00062{left:413.197248px;}
.x6c_c00062{left:416.425092px;}
.x67_c00062{left:418.105512px;}
.x7a_c00062{left:419.418852px;}
.x22_c00062{left:422.010000px;}
.x1a_c00062{left:423.633000px;}
.x3f_c00062{left:425.107500px;}
.x44_c00062{left:426.603000px;}
.x12_c00062{left:430.516500px;}
.xa1_c00062{left:434.551116px;}
.xc_c00062{left:436.590000px;}
.x81_c00062{left:442.025040px;}
.x4e_c00062{left:443.163321px;}
.x89_c00062{left:445.093068px;}
.x84_c00062{left:446.695644px;}
.x7b_c00062{left:449.936904px;}
.x13_c00062{left:452.655000px;}
.x38_c00062{left:458.886000px;}
.x91_c00062{left:460.857000px;}
.x4_c00062{left:463.930500px;}
.x58_c00062{left:465.495000px;}
.x35_c00062{left:470.691000px;}
.x61_c00062{left:474.962364px;}
.xa7_c00062{left:478.369584px;}
.x68_c00062{left:481.287996px;}
.x92_c00062{left:485.895000px;}
.x9b_c00062{left:487.777296px;}
.x62_c00062{left:491.709600px;}
.x7c_c00062{left:495.930732px;}
.x93_c00062{left:504.295500px;}
.xa2_c00062{left:513.972708px;}
.xa3_c00062{left:527.197884px;}
.x71_c00062{left:534.855180px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
.fs0_c00062{font-size:40.133333pt;}
.fs17_c00062{font-size:42.012094pt;}
.fs15_c00062{font-size:44.812901pt;}
.fs16_c00062{font-size:45.746503pt;}
.fs18_c00062{font-size:46.680105pt;}
.fs9_c00062{font-size:56.937432pt;}
.fsf_c00062{font-size:57.874073pt;}
.fs4_c00062{font-size:59.733333pt;}
.fs6_c00062{font-size:60.669700pt;}
.fsa_c00062{font-size:60.671793pt;}
.fs13_c00062{font-size:60.674432pt;}
.fs5_c00062{font-size:61.600000pt;}
.fsc_c00062{font-size:61.609978pt;}
.fs19_c00062{font-size:61.617738pt;}
.fs10_c00062{font-size:62.541337pt;}
.fs3_c00062{font-size:63.466667pt;}
.fs12_c00062{font-size:63.474790pt;}
.fsd_c00062{font-size:63.476947pt;}
.fs2_c00062{font-size:64.400000pt;}
.fs7_c00062{font-size:64.403220pt;}
.fs11_c00062{font-size:64.408243pt;}
.fsb_c00062{font-size:64.410432pt;}
.fse_c00062{font-size:65.340683pt;}
.fs14_c00062{font-size:65.341695pt;}
.fs8_c00062{font-size:80.278264pt;}
.fs1_c00062{font-size:101.743303pt;}
.y0_c00062{bottom:0.000000pt;}
.y10a_c00062{bottom:107.662741pt;}
.y109_c00062{bottom:109.789120pt;}
.y108_c00062{bottom:111.218603pt;}
.y107_c00062{bottom:113.417739pt;}
.y106_c00062{bottom:114.471179pt;}
.y105_c00062{bottom:124.365547pt;}
.y104_c00062{bottom:125.141675pt;}
.y103_c00062{bottom:125.545163pt;}
.y102_c00062{bottom:125.825931pt;}
.y101_c00062{bottom:126.340779pt;}
.y100_c00062{bottom:126.696971pt;}
.yff_c00062{bottom:128.004939pt;}
.yfe_c00062{bottom:128.373739pt;}
.yfd_c00062{bottom:128.614315pt;}
.yfc_c00062{bottom:128.979083pt;}
.yfb_c00062{bottom:130.534251pt;}
.yfa_c00062{bottom:131.162891pt;}
.yf9_c00062{bottom:131.762603pt;}
.yf8_c00062{bottom:132.897259pt;}
.yf7_c00062{bottom:133.682059pt;}
.yf6_c00062{bottom:134.387979pt;}
.yf5_c00062{bottom:139.342112pt;}
.yf4_c00062{bottom:139.636256pt;}
.yf3_c00062{bottom:140.241984pt;}
.yf2_c00062{bottom:141.401291pt;}
.yf1_c00062{bottom:141.646560pt;}
.yf0_c00062{bottom:142.222315pt;}
.yef_c00062{bottom:143.014411pt;}
.yee_c00062{bottom:143.794229pt;}
.yed_c00062{bottom:144.016459pt;}
.yec_c00062{bottom:144.544800pt;}
.yeb_c00062{bottom:145.209323pt;}
.yea_c00062{bottom:146.807883pt;}
.ye9_c00062{bottom:147.926976pt;}
.ye8_c00062{bottom:148.297515pt;}
.ye7_c00062{bottom:149.345536pt;}
.ye6_c00062{bottom:149.955296pt;}
.ye5_c00062{bottom:150.475445pt;}
.ye4_c00062{bottom:156.615211pt;}
.ye3_c00062{bottom:156.879957pt;}
.ye2_c00062{bottom:157.449088pt;}
.ye1_c00062{bottom:158.349696pt;}
.ye0_c00062{bottom:158.840416pt;}
.ydf_c00062{bottom:160.185877pt;}
.yde_c00062{bottom:160.500341pt;}
.ydd_c00062{bottom:161.227563pt;}
.ydc_c00062{bottom:162.022539pt;}
.ydb_c00062{bottom:162.543264pt;}
.yda_c00062{bottom:162.952416pt;}
.yd9_c00062{bottom:163.888597pt;}
.yd8_c00062{bottom:164.279445pt;}
.yd7_c00062{bottom:164.980725pt;}
.yd6_c00062{bottom:165.679989pt;}
.yd5_c00062{bottom:166.806987pt;}
.yd4_c00062{bottom:172.557536pt;}
.yd3_c00062{bottom:172.950080pt;}
.yd2_c00062{bottom:173.484224pt;}
.yd1_c00062{bottom:173.843040pt;}
.yd0_c00062{bottom:175.139648pt;}
.ycf_c00062{bottom:175.953376pt;}
.yce_c00062{bottom:176.331776pt;}
.ycd_c00062{bottom:177.094784pt;}
.ycc_c00062{bottom:178.049024pt;}
.ycb_c00062{bottom:178.308160pt;}
.yca_c00062{bottom:179.581088pt;}
.yc9_c00062{bottom:180.514624pt;}
.yc8_c00062{bottom:180.916832pt;}
.yc7_c00062{bottom:181.592768pt;}
.yc6_c00062{bottom:182.404000pt;}
.yc5_c00062{bottom:208.075136pt;}
.yc4_c00062{bottom:209.156683pt;}
.yc3_c00062{bottom:209.944085pt;}
.yc2_c00062{bottom:210.917067pt;}
.yc1_c00062{bottom:211.351125pt;}
.yc0_c00062{bottom:212.618400pt;}
.ybf_c00062{bottom:213.392224pt;}
.ybe_c00062{bottom:214.535221pt;}
.ybd_c00062{bottom:229.297685pt;}
.ybc_c00062{bottom:229.667925pt;}
.ybb_c00062{bottom:230.914272pt;}
.yba_c00062{bottom:231.315125pt;}
.yb9_c00062{bottom:232.397376pt;}
.yb8_c00062{bottom:233.031893pt;}
.yb7_c00062{bottom:234.171872pt;}
.yb6_c00062{bottom:235.418389pt;}
.yb5_c00062{bottom:249.094848pt;}
.yb4_c00062{bottom:249.836277pt;}
.yb3_c00062{bottom:250.444331pt;}
.yb2_c00062{bottom:251.021909pt;}
.yb1_c00062{bottom:251.513088pt;}
.yb0_c00062{bottom:252.525451pt;}
.yaf_c00062{bottom:253.656693pt;}
.yae_c00062{bottom:254.093557pt;}
.yad_c00062{bottom:255.258592pt;}
.yac_c00062{bottom:255.822421pt;}
.yab_c00062{bottom:270.105301pt;}
.yaa_c00062{bottom:271.017696pt;}
.ya9_c00062{bottom:271.572245pt;}
.ya8_c00062{bottom:272.938539pt;}
.ya7_c00062{bottom:273.240725pt;}
.ya6_c00062{bottom:273.709675pt;}
.ya5_c00062{bottom:274.592747pt;}
.ya4_c00062{bottom:275.342229pt;}
.ya3_c00062{bottom:276.227563pt;}
.ya2_c00062{bottom:288.854304pt;}
.ya1_c00062{bottom:289.712491pt;}
.ya0_c00062{bottom:290.282560pt;}
.y9f_c00062{bottom:291.524757pt;}
.y9e_c00062{bottom:291.867061pt;}
.y9d_c00062{bottom:293.374187pt;}
.y9c_c00062{bottom:294.747957pt;}
.y9b_c00062{bottom:295.908715pt;}
.y9a_c00062{bottom:311.600139pt;}
.y99_c00062{bottom:312.087403pt;}
.y98_c00062{bottom:312.421611pt;}
.y97_c00062{bottom:313.181557pt;}
.y96_c00062{bottom:313.562165pt;}
.y95_c00062{bottom:314.331253pt;}
.y94_c00062{bottom:314.923349pt;}
.y93_c00062{bottom:315.891168pt;}
.y92_c00062{bottom:316.310251pt;}
.y91_c00062{bottom:329.447243pt;}
.y90_c00062{bottom:330.349803pt;}
.y8f_c00062{bottom:331.010197pt;}
.y8e_c00062{bottom:331.666325pt;}
.y8d_c00062{bottom:331.963275pt;}
.y8c_c00062{bottom:333.224917pt;}
.y8b_c00062{bottom:333.900971pt;}
.y8a_c00062{bottom:335.201664pt;}
.y89_c00062{bottom:335.994304pt;}
.y88_c00062{bottom:336.474229pt;}
.y87_c00062{bottom:352.187637pt;}
.y86_c00062{bottom:352.712459pt;}
.y85_c00062{bottom:353.007253pt;}
.y84_c00062{bottom:353.670709pt;}
.y83_c00062{bottom:354.200629pt;}
.y82_c00062{bottom:354.636171pt;}
.y81_c00062{bottom:354.989195pt;}
.y80_c00062{bottom:355.276939pt;}
.y7f_c00062{bottom:356.155467pt;}
.y7e_c00062{bottom:370.764800pt;}
.y7d_c00062{bottom:371.231456pt;}
.y7c_c00062{bottom:371.775424pt;}
.y7b_c00062{bottom:372.602059pt;}
.y7a_c00062{bottom:373.254091pt;}
.y79_c00062{bottom:374.273792pt;}
.y78_c00062{bottom:374.898731pt;}
.y77_c00062{bottom:375.479339pt;}
.y76_c00062{bottom:376.155883pt;}
.y75_c00062{bottom:376.557280pt;}
.y74_c00062{bottom:391.349888pt;}
.y73_c00062{bottom:391.602741pt;}
.y72_c00062{bottom:392.574059pt;}
.y71_c00062{bottom:392.855232pt;}
.y70_c00062{bottom:393.396971pt;}
.y6f_c00062{bottom:393.980032pt;}
.y6e_c00062{bottom:394.527488pt;}
.y6d_c00062{bottom:394.976875pt;}
.y6c_c00062{bottom:395.491445pt;}
.y6b_c00062{bottom:396.109931pt;}
.y6a_c00062{bottom:396.959115pt;}
.y69_c00062{bottom:413.174475pt;}
.y68_c00062{bottom:413.614720pt;}
.y67_c00062{bottom:414.357557pt;}
.y66_c00062{bottom:414.706901pt;}
.y65_c00062{bottom:414.985216pt;}
.y64_c00062{bottom:415.638325pt;}
.y63_c00062{bottom:416.108117pt;}
.y62_c00062{bottom:416.747072pt;}
.y61_c00062{bottom:417.601429pt;}
.y60_c00062{bottom:432.199744pt;}
.y5f_c00062{bottom:432.944363pt;}
.y5e_c00062{bottom:433.386155pt;}
.y5d_c00062{bottom:433.650091pt;}
.y5c_c00062{bottom:434.548971pt;}
.y5b_c00062{bottom:435.697237pt;}
.y5a_c00062{bottom:436.237696pt;}
.y59_c00062{bottom:436.507691pt;}
.y58_c00062{bottom:437.106603pt;}
.y57_c00062{bottom:437.282667pt;}
.y56_c00062{bottom:453.564967pt;}
.y55_c00062{bottom:454.464107pt;}
.y54_c00062{bottom:454.737567pt;}
.y53_c00062{bottom:455.144647pt;}
.y52_c00062{bottom:455.407967pt;}
.y51_c00062{bottom:455.843187pt;}
.y50_c00062{bottom:456.191367pt;}
.y4f_c00062{bottom:456.673767pt;}
.y4e_c00062{bottom:457.257167pt;}
.y4d_c00062{bottom:457.682667pt;}
.y4c_c00062{bottom:473.887163pt;}
.y4b_c00062{bottom:474.713741pt;}
.y4a_c00062{bottom:475.184224pt;}
.y49_c00062{bottom:475.442472pt;}
.y48_c00062{bottom:475.886301pt;}
.y47_c00062{bottom:476.140891pt;}
.y46_c00062{bottom:476.382395pt;}
.y45_c00062{bottom:476.752968pt;}
.y44_c00062{bottom:477.121515pt;}
.y43_c00062{bottom:477.596256pt;}
.y42_c00062{bottom:493.979219pt;}
.y41_c00062{bottom:494.793581pt;}
.y40_c00062{bottom:495.085493pt;}
.y3f_c00062{bottom:495.947304pt;}
.y3e_c00062{bottom:496.448640pt;}
.y3d_c00062{bottom:497.201197pt;}
.y3c_c00062{bottom:497.759699pt;}
.y3b_c00062{bottom:512.667269pt;}
.y3a_c00062{bottom:513.099197pt;}
.y39_c00062{bottom:513.865709pt;}
.y38_c00062{bottom:516.192365pt;}
.y37_c00062{bottom:516.455837pt;}
.y36_c00062{bottom:517.523645pt;}
.y35_c00062{bottom:517.925333pt;}
.y34_c00062{bottom:532.906673pt;}
.y33_c00062{bottom:533.187491pt;}
.y32_c00062{bottom:533.428441pt;}
.y31_c00062{bottom:533.555373pt;}
.y30_c00062{bottom:534.042457pt;}
.y2f_c00062{bottom:534.354683pt;}
.y2e_c00062{bottom:534.916196pt;}
.y2d_c00062{bottom:535.646328pt;}
.y2c_c00062{bottom:535.821065pt;}
.y2b_c00062{bottom:536.082556pt;}
.y2a_c00062{bottom:536.401333pt;}
.y29_c00062{bottom:552.509413pt;}
.y28_c00062{bottom:553.007797pt;}
.y27_c00062{bottom:553.307509pt;}
.y26_c00062{bottom:553.837493pt;}
.y25_c00062{bottom:554.033317pt;}
.y24_c00062{bottom:554.448037pt;}
.y23_c00062{bottom:554.986693pt;}
.y22_c00062{bottom:555.522405pt;}
.y21_c00062{bottom:556.081333pt;}
.y20_c00062{bottom:572.466629pt;}
.y1f_c00062{bottom:575.524000pt;}
.y1e_c00062{bottom:594.759760pt;}
.y1d_c00062{bottom:595.143667pt;}
.y1c_c00062{bottom:595.258867pt;}
.y1b_c00062{bottom:595.755760pt;}
.y1a_c00062{bottom:596.106160pt;}
.y19_c00062{bottom:596.641333pt;}
.y18_c00062{bottom:615.224427pt;}
.y17_c00062{bottom:615.644453pt;}
.y16_c00062{bottom:615.932107pt;}
.y15_c00062{bottom:616.083733pt;}
.y14_c00062{bottom:616.585360pt;}
.y13_c00062{bottom:616.938187pt;}
.y12_c00062{bottom:617.274147pt;}
.y11_c00062{bottom:617.521333pt;}
.y10_c00062{bottom:636.026667pt;}
.yf_c00062{bottom:655.925333pt;}
.ye_c00062{bottom:676.164000pt;}
.yd_c00062{bottom:695.500000pt;}
.yc_c00062{bottom:695.697333pt;}
.yb_c00062{bottom:696.376000pt;}
.ya_c00062{bottom:696.618667pt;}
.y9_c00062{bottom:697.168000pt;}
.y8_c00062{bottom:697.398667pt;}
.y7_c00062{bottom:697.926667pt;}
.y6_c00062{bottom:698.401333pt;}
.y5_c00062{bottom:717.040000pt;}
.y4_c00062{bottom:755.349208pt;}
.y3_c00062{bottom:756.522016pt;}
.y2_c00062{bottom:759.124000pt;}
.y1_c00062{bottom:814.073333pt;}
.h2_c00062{height:40.133333pt;}
.h19_c00062{height:42.012094pt;}
.h17_c00062{height:44.812901pt;}
.h18_c00062{height:45.746503pt;}
.h1a_c00062{height:46.680105pt;}
.hb_c00062{height:56.937432pt;}
.h11_c00062{height:57.874073pt;}
.h6_c00062{height:59.733333pt;}
.h8_c00062{height:60.669700pt;}
.hc_c00062{height:60.671793pt;}
.h15_c00062{height:60.674432pt;}
.h7_c00062{height:61.600000pt;}
.he_c00062{height:61.609978pt;}
.h1b_c00062{height:61.617738pt;}
.h12_c00062{height:62.541337pt;}
.h5_c00062{height:63.466667pt;}
.h14_c00062{height:63.474790pt;}
.hf_c00062{height:63.476947pt;}
.h4_c00062{height:64.400000pt;}
.h9_c00062{height:64.403220pt;}
.h13_c00062{height:64.408243pt;}
.hd_c00062{height:64.410432pt;}
.h10_c00062{height:65.340683pt;}
.h16_c00062{height:65.341695pt;}
.ha_c00062{height:80.278264pt;}
.h3_c00062{height:101.743303pt;}
.h1_c00062{height:893.333333pt;}
.h0_c00062{height:893.466667pt;}
.w0_c00062{width:651.333333pt;}
.x0_c00062{left:0.000000pt;}
.x9c_c00062{left:23.297696pt;}
.x94_c00062{left:25.932277pt;}
.xa8_c00062{left:30.671669pt;}
.x8a_c00062{left:37.993333pt;}
.xa4_c00062{left:39.954741pt;}
.x9d_c00062{left:44.081184pt;}
.x9e_c00062{left:68.487275pt;}
.x8b_c00062{left:71.794667pt;}
.xa9_c00062{left:78.567307pt;}
.x40_c00062{left:87.088000pt;}
.x54_c00062{left:96.090667pt;}
.x95_c00062{left:98.969184pt;}
.x8c_c00062{left:99.958667pt;}
.x7d_c00062{left:101.459819pt;}
.x72_c00062{left:104.433739pt;}
.x63_c00062{left:105.875147pt;}
.x4f_c00062{left:107.590667pt;}
.x39_c00062{left:109.053333pt;}
.x28_c00062{left:110.046667pt;}
.x5_c00062{left:112.320000pt;}
.x8d_c00062{left:116.717333pt;}
.x9f_c00062{left:125.259264pt;}
.x96_c00062{left:127.021845pt;}
.x64_c00062{left:128.211776pt;}
.x1b_c00062{left:129.360000pt;}
.x6d_c00062{left:130.835360pt;}
.x3a_c00062{left:133.574667pt;}
.x6_c00062{left:135.120000pt;}
.x2_c00062{left:142.754667pt;}
.x48_c00062{left:145.103227pt;}
.x45_c00062{left:149.854083pt;}
.x23_c00062{left:152.640000pt;}
.x1c_c00062{left:154.080000pt;}
.x1_c00062{left:155.280000pt;}
.x36_c00062{left:156.816000pt;}
.xd_c00062{left:159.710667pt;}
.x55_c00062{left:161.401333pt;}
.x69_c00062{left:164.237685pt;}
.x2f_c00062{left:166.197333pt;}
.x3b_c00062{left:167.130667pt;}
.x29_c00062{left:168.361333pt;}
.x7_c00062{left:169.440000pt;}
.x6e_c00062{left:172.540021pt;}
.x49_c00062{left:173.432437pt;}
.x50_c00062{left:174.850667pt;}
.x7e_c00062{left:179.296256pt;}
.x73_c00062{left:181.445931pt;}
.x41_c00062{left:183.364000pt;}
.x24_c00062{left:185.520000pt;}
.x14_c00062{left:186.482667pt;}
.x86_c00062{left:189.120768pt;}
.x1d_c00062{left:190.320000pt;}
.x5c_c00062{left:193.481771pt;}
.x56_c00062{left:195.180000pt;}
.x97_c00062{left:196.472181pt;}
.x15_c00062{left:198.242667pt;}
.x30_c00062{left:201.237333pt;}
.x2a_c00062{left:203.644000pt;}
.x25_c00062{left:205.680000pt;}
.x51_c00062{left:207.010667pt;}
.x8e_c00062{left:208.653333pt;}
.xe_c00062{left:212.558667pt;}
.x74_c00062{left:214.367552pt;}
.x98_c00062{left:217.279669pt;}
.x8f_c00062{left:219.450667pt;}
.x4a_c00062{left:220.477995pt;}
.x59_c00062{left:222.298080pt;}
.x3c_c00062{left:223.294667pt;}
.x78_c00062{left:225.601867pt;}
.x26_c00062{left:228.720000pt;}
.x8_c00062{left:229.920000pt;}
.x65_c00062{left:232.839115pt;}
.x85_c00062{left:234.012640pt;}
.xf_c00062{left:235.565333pt;}
.x34_c00062{left:238.546667pt;}
.x46_c00062{left:239.447205pt;}
.x6f_c00062{left:240.996736pt;}
.x7f_c00062{left:243.625760pt;}
.x1e_c00062{left:246.720000pt;}
.x82_c00062{left:247.916832pt;}
.x99_c00062{left:249.069568pt;}
.x31_c00062{left:250.926667pt;}
.x16_c00062{left:252.242667pt;}
.x2b_c00062{left:253.806667pt;}
.x75_c00062{left:257.100853pt;}
.x80_c00062{left:258.011275pt;}
.x52_c00062{left:259.237333pt;}
.x5a_c00062{left:260.700128pt;}
.x32_c00062{left:262.446667pt;}
.x9_c00062{left:264.000000pt;}
.xa5_c00062{left:265.325408pt;}
.x3d_c00062{left:266.488000pt;}
.x2c_c00062{left:268.969333pt;}
.x6a_c00062{left:271.295392pt;}
.x4b_c00062{left:274.246843pt;}
.x1f_c00062{left:276.720000pt;}
.x76_c00062{left:278.221504pt;}
.x17_c00062{left:279.362667pt;}
.x27_c00062{left:280.800000pt;}
.x5d_c00062{left:282.360341pt;}
.x66_c00062{left:289.485301pt;}
.x10_c00062{left:290.558667pt;}
.x83_c00062{left:291.934571pt;}
.x4c_c00062{left:294.151309pt;}
.x2d_c00062{left:297.734667pt;}
.x33_c00062{left:300.837333pt;}
.x53_c00062{left:303.930667pt;}
.x90_c00062{left:306.769333pt;}
.x87_c00062{left:310.670432pt;}
.x42_c00062{left:312.622667pt;}
.x79_c00062{left:313.684160pt;}
.x11_c00062{left:314.762667pt;}
.x5e_c00062{left:316.634453pt;}
.x77_c00062{left:320.466827pt;}
.x47_c00062{left:321.845133pt;}
.x57_c00062{left:323.126667pt;}
.xa_c00062{left:325.680000pt;}
.x3_c00062{left:328.610667pt;}
.x4d_c00062{left:330.366573pt;}
.x18_c00062{left:331.922667pt;}
.x6b_c00062{left:335.187083pt;}
.x20_c00062{left:338.400000pt;}
.x2e_c00062{left:339.737333pt;}
.xb_c00062{left:341.040000pt;}
.x70_c00062{left:343.014517pt;}
.x9a_c00062{left:344.587296pt;}
.x88_c00062{left:346.462997pt;}
.x5f_c00062{left:348.492608pt;}
.x19_c00062{left:350.162667pt;}
.xa0_c00062{left:353.392427pt;}
.x43_c00062{left:355.206667pt;}
.x3e_c00062{left:356.272000pt;}
.x21_c00062{left:358.560000pt;}
.xa6_c00062{left:360.413408pt;}
.x60_c00062{left:365.065685pt;}
.x37_c00062{left:366.366667pt;}
.x5b_c00062{left:367.286443pt;}
.x6c_c00062{left:370.155637pt;}
.x67_c00062{left:371.649344pt;}
.x7a_c00062{left:372.816757pt;}
.x22_c00062{left:375.120000pt;}
.x1a_c00062{left:376.562667pt;}
.x3f_c00062{left:377.873333pt;}
.x44_c00062{left:379.202667pt;}
.x12_c00062{left:382.681333pt;}
.xa1_c00062{left:386.267659pt;}
.xc_c00062{left:388.080000pt;}
.x81_c00062{left:392.911147pt;}
.x4e_c00062{left:393.922952pt;}
.x89_c00062{left:395.638283pt;}
.x84_c00062{left:397.062795pt;}
.x7b_c00062{left:399.943915pt;}
.x13_c00062{left:402.360000pt;}
.x38_c00062{left:407.898667pt;}
.x91_c00062{left:409.650667pt;}
.x4_c00062{left:412.382667pt;}
.x58_c00062{left:413.773333pt;}
.x35_c00062{left:418.392000pt;}
.x61_c00062{left:422.188768pt;}
.xa7_c00062{left:425.217408pt;}
.x68_c00062{left:427.811552pt;}
.x92_c00062{left:431.906667pt;}
.x9b_c00062{left:433.579819pt;}
.x62_c00062{left:437.075200pt;}
.x7c_c00062{left:440.827317pt;}
.x93_c00062{left:448.262667pt;}
.xa2_c00062{left:456.864629pt;}
.xa3_c00062{left:468.620341pt;}
.x71_c00062{left:475.426827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m28_c00063{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);}
.me6_c00063{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.m72_c00063{transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);}
.m5e_c00063{transform:matrix(0.042153,0.000422,-0.002500,0.249988,0,0);-ms-transform:matrix(0.042153,0.000422,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.042153,0.000422,-0.002500,0.249988,0,0);}
.m61_c00063{transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.136888,0.001369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.136888,0.001369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.136888,0.001369,-0.002500,0.249988,0,0);}
.m2d_c00063{transform:matrix(0.144818,0.001448,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144818,0.001448,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144818,0.001448,-0.002500,0.249988,0,0);}
.ma1_c00063{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);}
.mfa_c00063{transform:matrix(0.154328,0.002315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154328,0.002315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154328,0.002315,-0.003750,0.249972,0,0);}
.me4_c00063{transform:matrix(0.155516,0.001711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155516,0.001711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155516,0.001711,-0.002750,0.249985,0,0);}
.m1f_c00063{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);}
.m104_c00063{transform:matrix(0.157867,0.002368,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157867,0.002368,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157867,0.002368,-0.003750,0.249972,0,0);}
.m94_c00063{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);}
.m80_c00063{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);}
.mf1_c00063{transform:matrix(0.159522,0.002393,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159522,0.002393,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159522,0.002393,-0.003750,0.249972,0,0);}
.m78_c00063{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);}
.m90_c00063{transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159720,0.000000,0.000000,0.250000,0,0);}
.m9b_c00063{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.m67_c00063{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);}
.ma9_c00063{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);}
.m85_c00063{transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.165495,0.003144,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165495,0.003144,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165495,0.003144,-0.004749,0.249955,0,0);}
.m70_c00063{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);}
.m6b_c00063{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);}
.mb_c00063{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);}
.mdd_c00063{transform:matrix(0.168035,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168035,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168035,0.001848,-0.002750,0.249985,0,0);}
.ma3_c00063{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);}
.md6_c00063{transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);}
.m3f_c00063{transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);}
.mb7_c00063{transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{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);}
.m30_c00063{transform:matrix(0.170636,0.001706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170636,0.001706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170636,0.001706,-0.002500,0.249988,0,0);}
.mc9_c00063{transform:matrix(0.170770,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170770,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170770,0.001878,-0.002750,0.249985,0,0);}
.m105_c00063{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);}
.m1c_c00063{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);}
.m7b_c00063{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);}
.md8_c00063{transform:matrix(0.171950,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171950,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171950,0.001891,-0.002750,0.249985,0,0);}
.md9_c00063{transform:matrix(0.172035,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172035,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172035,0.001892,-0.002750,0.249985,0,0);}
.m4_c00063{transform:matrix(0.172194,0.003272,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172194,0.003272,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172194,0.003272,-0.004749,0.249955,0,0);}
.me_c00063{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);}
.mc5_c00063{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);}
.m1e_c00063{transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);}
.m83_c00063{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);}
.m3e_c00063{transform:matrix(0.174696,0.001747,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174696,0.001747,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174696,0.001747,-0.002500,0.249988,0,0);}
.m8e_c00063{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);}
.m98_c00063{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);}
.ma_c00063{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);}
.mb8_c00063{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);}
.m48_c00063{transform:matrix(0.178066,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178066,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178066,0.001781,-0.002500,0.249988,0,0);}
.me0_c00063{transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);}
.m6d_c00063{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);}
.mee_c00063{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);}
.m106_c00063{transform:matrix(0.180740,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180740,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180740,0.002711,-0.003750,0.249972,0,0);}
.m23_c00063{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);}
.m71_c00063{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);}
.me2_c00063{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);}
.m9_c00063{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);}
.mef_c00063{transform:matrix(0.182110,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182110,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182110,0.002732,-0.003750,0.249972,0,0);}
.m7f_c00063{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);}
.md3_c00063{transform:matrix(0.183224,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183224,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183224,0.002015,-0.002750,0.249985,0,0);}
.m2c_c00063{transform:matrix(0.183556,0.001836,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183556,0.001836,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183556,0.001836,-0.002500,0.249988,0,0);}
.ma2_c00063{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);}
.md_c00063{transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{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);}
.m10_c00063{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);}
.m4d_c00063{transform:matrix(0.184116,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184116,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184116,0.001841,-0.002500,0.249988,0,0);}
.mcf_c00063{transform:matrix(0.184224,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184224,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184224,0.002026,-0.002750,0.249985,0,0);}
.m88_c00063{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.me3_c00063{transform:matrix(0.184539,0.002030,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184539,0.002030,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184539,0.002030,-0.002750,0.249985,0,0);}
.m91_c00063{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);}
.m9e_c00063{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);}
.m7d_c00063{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);}
.m66_c00063{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);}
.ma5_c00063{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);}
.m12_c00063{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);}
.m51_c00063{transform:matrix(0.186636,0.001866,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186636,0.001866,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186636,0.001866,-0.002500,0.249988,0,0);}
.m65_c00063{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);}
.m54_c00063{transform:matrix(0.187416,0.001874,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187416,0.001874,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187416,0.001874,-0.002500,0.249988,0,0);}
.m31_c00063{transform:matrix(0.187536,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187536,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187536,0.001875,-0.002500,0.249988,0,0);}
.m18_c00063{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);}
.mf7_c00063{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);}
.m7_c00063{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);}
.m42_c00063{transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);}
.m7a_c00063{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);}
.m92_c00063{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);}
.m32_c00063{transform:matrix(0.188781,0.001888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188781,0.001888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188781,0.001888,-0.002500,0.249988,0,0);}
.mf4_c00063{transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189194,0.002838,-0.003750,0.249972,0,0);}
.m37_c00063{transform:matrix(0.189406,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189406,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189406,0.001894,-0.002500,0.249988,0,0);}
.m89_c00063{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);}
.m64_c00063{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);}
.mf2_c00063{transform:matrix(0.190104,0.002852,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190104,0.002852,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190104,0.002852,-0.003750,0.249972,0,0);}
.m76_c00063{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);}
.m108_c00063{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);}
.m3a_c00063{transform:matrix(0.190375,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190375,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190375,0.001904,-0.002500,0.249988,0,0);}
.m4e_c00063{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);}
.m50_c00063{transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190735,0.001907,-0.002500,0.249988,0,0);}
.mb9_c00063{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);}
.md1_c00063{transform:matrix(0.191443,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191443,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191443,0.002106,-0.002750,0.249985,0,0);}
.m4b_c00063{transform:matrix(0.192080,0.001921,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192080,0.001921,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192080,0.001921,-0.002500,0.249988,0,0);}
.m20_c00063{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);}
.md7_c00063{transform:matrix(0.192198,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192198,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192198,0.002114,-0.002750,0.249985,0,0);}
.mde_c00063{transform:matrix(0.192288,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192288,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192288,0.002115,-0.002750,0.249985,0,0);}
.mc3_c00063{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);}
.m1a_c00063{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);}
.mcc_c00063{transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);}
.m99_c00063{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);}
.m11_c00063{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);}
.mce_c00063{transform:matrix(0.193643,0.002130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193643,0.002130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193643,0.002130,-0.002750,0.249985,0,0);}
.m86_c00063{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);}
.ma0_c00063{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);}
.m6c_c00063{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);}
.mdc_c00063{transform:matrix(0.194563,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194563,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194563,0.002140,-0.002750,0.249985,0,0);}
.m101_c00063{transform:matrix(0.194783,0.002922,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194783,0.002922,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194783,0.002922,-0.003750,0.249972,0,0);}
.m43_c00063{transform:matrix(0.194920,0.001949,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194920,0.001949,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194920,0.001949,-0.002500,0.249988,0,0);}
.mb4_c00063{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);}
.mb3_c00063{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);}
.mbf_c00063{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);}
.m102_c00063{transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);}
.me1_c00063{transform:matrix(0.197008,0.002167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197008,0.002167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197008,0.002167,-0.002750,0.249985,0,0);}
.m34_c00063{transform:matrix(0.197240,0.001972,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197240,0.001972,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197240,0.001972,-0.002500,0.249988,0,0);}
.m1d_c00063{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);}
.m81_c00063{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);}
.m82_c00063{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);}
.m3b_c00063{transform:matrix(0.198180,0.001982,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198180,0.001982,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198180,0.001982,-0.002500,0.249988,0,0);}
.mcb_c00063{transform:matrix(0.199088,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199088,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199088,0.002190,-0.002750,0.249985,0,0);}
.mca_c00063{transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);}
.m6f_c00063{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);}
.mc1_c00063{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);}
.m52_c00063{transform:matrix(0.200590,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200590,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200590,0.002006,-0.002500,0.249988,0,0);}
.m58_c00063{transform:matrix(0.200945,0.002009,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200945,0.002009,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200945,0.002009,-0.002500,0.249988,0,0);}
.m3_c00063{transform:matrix(0.201204,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201204,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201204,0.003823,-0.004749,0.249955,0,0);}
.mba_c00063{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);}
.m13_c00063{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);}
.m40_c00063{transform:matrix(0.202120,0.002021,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202120,0.002021,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202120,0.002021,-0.002500,0.249988,0,0);}
.m8f_c00063{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);}
.m93_c00063{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);}
.mad_c00063{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);}
.m95_c00063{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);}
.mdb_c00063{transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);}
.mac_c00063{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);}
.med_c00063{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);}
.m84_c00063{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);}
.mb2_c00063{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);}
.m8a_c00063{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);}
.m15_c00063{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);}
.m63_c00063{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);}
.mc6_c00063{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);}
.m69_c00063{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);}
.m16_c00063{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);}
.m6_c00063{transform:matrix(0.207163,0.003936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207163,0.003936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207163,0.003936,-0.004749,0.249955,0,0);}
.mb1_c00063{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);}
.m9c_c00063{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);}
.md5_c00063{transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);}
.m10c_c00063{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);}
.m79_c00063{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);}
.m2e_c00063{transform:matrix(0.208260,0.002083,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208260,0.002083,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208260,0.002083,-0.002500,0.249988,0,0);}
.m97_c00063{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);}
.m68_c00063{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);}
.m2f_c00063{transform:matrix(0.209475,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209475,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209475,0.002095,-0.002500,0.249988,0,0);}
.md4_c00063{transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);}
.m14_c00063{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);}
.m4a_c00063{transform:matrix(0.211234,0.002112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211234,0.002112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211234,0.002112,-0.002500,0.249988,0,0);}
.mfe_c00063{transform:matrix(0.211276,0.003169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211276,0.003169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211276,0.003169,-0.003750,0.249972,0,0);}
.mb6_c00063{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m87_c00063{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);}
.m5_c00063{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);}
.m2_c00063{transform:matrix(0.211867,0.004025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211867,0.004025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211867,0.004025,-0.004749,0.249955,0,0);}
.m53_c00063{transform:matrix(0.211889,0.002119,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211889,0.002119,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211889,0.002119,-0.002500,0.249988,0,0);}
.m19_c00063{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);}
.m6e_c00063{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);}
.me9_c00063{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);}
.m47_c00063{transform:matrix(0.213274,0.002133,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213274,0.002133,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213274,0.002133,-0.002500,0.249988,0,0);}
.mdf_c00063{transform:matrix(0.213912,0.002353,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213912,0.002353,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213912,0.002353,-0.002750,0.249985,0,0);}
.m17_c00063{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);}
.ma7_c00063{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);}
.mc2_c00063{transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{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);}
.m55_c00063{transform:matrix(0.216684,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216684,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216684,0.002167,-0.002500,0.249988,0,0);}
.m62_c00063{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);}
.mbc_c00063{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);}
.m59_c00063{transform:matrix(0.217564,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217564,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217564,0.002176,-0.002500,0.249988,0,0);}
.m9d_c00063{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);}
.m21_c00063{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);}
.mbb_c00063{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);}
.m36_c00063{transform:matrix(0.219324,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219324,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219324,0.002193,-0.002500,0.249988,0,0);}
.mab_c00063{transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);}
.me8_c00063{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);}
.m8b_c00063{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);}
.mea_c00063{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);}
.mf_c00063{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);}
.m5a_c00063{transform:matrix(0.224169,0.002242,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224169,0.002242,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224169,0.002242,-0.002500,0.249988,0,0);}
.md0_c00063{transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);}
.mc_c00063{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);}
.m41_c00063{transform:matrix(0.225679,0.002257,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225679,0.002257,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225679,0.002257,-0.002500,0.249988,0,0);}
.mc4_c00063{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);}
.m75_c00063{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);}
.mbd_c00063{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.m10b_c00063{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);}
.mb5_c00063{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);}
.m9f_c00063{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);}
.mfd_c00063{transform:matrix(0.231114,0.003467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231114,0.003467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231114,0.003467,-0.003750,0.249972,0,0);}
.m4c_c00063{transform:matrix(0.231933,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231933,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231933,0.002319,-0.002500,0.249988,0,0);}
.m49_c00063{transform:matrix(0.233823,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233823,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233823,0.002338,-0.002500,0.249988,0,0);}
.mf8_c00063{transform:matrix(0.234269,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234269,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234269,0.003514,-0.003750,0.249972,0,0);}
.m6a_c00063{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);}
.maf_c00063{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.ma4_c00063{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);}
.me7_c00063{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);}
.mda_c00063{transform:matrix(0.237241,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237241,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237241,0.002610,-0.002750,0.249985,0,0);}
.mbe_c00063{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);}
.m100_c00063{transform:matrix(0.240453,0.003607,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240453,0.003607,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240453,0.003607,-0.003750,0.249972,0,0);}
.m39_c00063{transform:matrix(0.240643,0.002406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240643,0.002406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240643,0.002406,-0.002500,0.249988,0,0);}
.m35_c00063{transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);}
.m7c_c00063{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);}
.mff_c00063{transform:matrix(0.243218,0.003648,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243218,0.003648,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243218,0.003648,-0.003750,0.249972,0,0);}
.mec_c00063{transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);}
.mfc_c00063{transform:matrix(0.244497,0.003667,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244497,0.003667,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244497,0.003667,-0.003750,0.249972,0,0);}
.meb_c00063{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);}
.m9a_c00063{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{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);}
.mae_c00063{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);}
.m10d_c00063{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);}
.mf0_c00063{transform:matrix(0.248377,0.003726,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248377,0.003726,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248377,0.003726,-0.003750,0.249972,0,0);}
.mc0_c00063{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);}
.m77_c00063{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);}
.mcd_c00063{transform:matrix(0.249915,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249915,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249915,0.002749,-0.002750,0.249985,0,0);}
.mfb_c00063{transform:matrix(0.250137,0.003752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250137,0.003752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250137,0.003752,-0.003750,0.249972,0,0);}
.mf9_c00063{transform:matrix(0.250607,0.003759,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250607,0.003759,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250607,0.003759,-0.003750,0.249972,0,0);}
.m5b_c00063{transform:matrix(0.252607,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252607,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252607,0.002526,-0.002500,0.249988,0,0);}
.m3c_c00063{transform:matrix(0.253227,0.002532,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253227,0.002532,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253227,0.002532,-0.002500,0.249988,0,0);}
.m7e_c00063{transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);}
.m8d_c00063{transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.258852,0.002589,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258852,0.002589,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258852,0.002589,-0.002500,0.249988,0,0);}
.mf3_c00063{transform:matrix(0.259196,0.003888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259196,0.003888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259196,0.003888,-0.003750,0.249972,0,0);}
.m74_c00063{transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);}
.m109_c00063{transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);}
.mf6_c00063{transform:matrix(0.263870,0.003958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263870,0.003958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263870,0.003958,-0.003750,0.249972,0,0);}
.mc8_c00063{transform:matrix(0.263909,0.002903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263909,0.002903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263909,0.002903,-0.002750,0.249985,0,0);}
.m46_c00063{transform:matrix(0.264482,0.002645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264482,0.002645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264482,0.002645,-0.002500,0.249988,0,0);}
.m57_c00063{transform:matrix(0.264647,0.002646,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264647,0.002646,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264647,0.002646,-0.002500,0.249988,0,0);}
.m10a_c00063{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.md2_c00063{transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);}
.ma6_c00063{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.m38_c00063{transform:matrix(0.279801,0.002798,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279801,0.002798,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279801,0.002798,-0.002500,0.249988,0,0);}
.m25_c00063{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);}
.m3d_c00063{transform:matrix(0.295540,0.002955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.295540,0.002955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.295540,0.002955,-0.002500,0.249988,0,0);}
.m56_c00063{transform:matrix(0.295820,0.002958,-0.002500,0.249988,0,0);-ms-transform:matrix(0.295820,0.002958,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.295820,0.002958,-0.002500,0.249988,0,0);}
.m107_c00063{transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302595,0.000000,0.000000,0.250000,0,0);}
.m73_c00063{transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305245,0.000000,0.000000,0.250000,0,0);}
.maa_c00063{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.mc7_c00063{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.ma8_c00063{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);}
.m44_c00063{transform:matrix(0.335003,0.003350,-0.002500,0.249988,0,0);-ms-transform:matrix(0.335003,0.003350,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.335003,0.003350,-0.002500,0.249988,0,0);}
.m5f_c00063{transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341170,0.000000,0.000000,0.250000,0,0);}
.m2a_c00063{transform:matrix(0.346265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346265,0.000000,0.000000,0.250000,0,0);}
.m96_c00063{transform:matrix(0.352780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352780,0.000000,0.000000,0.250000,0,0);}
.m8c_c00063{transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.368702,0.003687,-0.002500,0.249988,0,0);-ms-transform:matrix(0.368702,0.003687,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.368702,0.003687,-0.002500,0.249988,0,0);}
.mb0_c00063{transform:matrix(0.394345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394345,0.000000,0.000000,0.250000,0,0);}
.m60_c00063{transform:matrix(0.445785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445785,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{transform:matrix(0.468205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468205,0.000000,0.000000,0.250000,0,0);}
.m5c_c00063{transform:matrix(0.500785,0.005008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.500785,0.005008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.500785,0.005008,-0.002500,0.249988,0,0);}
.m2b_c00063{transform:matrix(0.557190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557190,0.000000,0.000000,0.250000,0,0);}
.m103_c00063{transform:matrix(0.561732,0.008426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.561732,0.008426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.561732,0.008426,-0.003750,0.249972,0,0);}
.m5d_c00063{transform:matrix(0.717384,0.007174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.717384,0.007174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.717384,0.007174,-0.002500,0.249988,0,0);}
.m10e_c00063{transform:matrix(0.722720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722720,0.000000,0.000000,0.250000,0,0);}
.mf5_c00063{transform:matrix(0.736127,0.011042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.736127,0.011042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.736127,0.011042,-0.003750,0.249972,0,0);}
.m27_c00063{transform:matrix(0.780860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780860,0.000000,0.000000,0.250000,0,0);}
.me5_c00063{transform:matrix(5.968075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.968075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.968075,0.000000,0.000000,0.250000,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;}
.fs12_c00063{font-size:27.300000px;}
.fs16_c00063{font-size:34.650000px;}
.fs13_c00063{font-size:48.300000px;}
.fs17_c00063{font-size:51.450000px;}
.fs14_c00063{font-size:51.455788px;}
.fs15_c00063{font-size:52.505906px;}
.fs0_c00063{font-size:54.609854px;}
.fs9_c00063{font-size:63.003150px;}
.fsa_c00063{font-size:64.053202px;}
.fs8_c00063{font-size:65.103255px;}
.fse_c00063{font-size:66.150000px;}
.fs3_c00063{font-size:68.250000px;}
.fsc_c00063{font-size:69.300000px;}
.fs2_c00063{font-size:70.350000px;}
.fs10_c00063{font-size:70.354256px;}
.fs4_c00063{font-size:71.400000px;}
.fs7_c00063{font-size:71.403570px;}
.fsf_c00063{font-size:71.404320px;}
.fs5_c00063{font-size:72.450000px;}
.fs1_c00063{font-size:73.500000px;}
.fsd_c00063{font-size:74.550000px;}
.fs11_c00063{font-size:74.554510px;}
.fs6_c00063{font-size:77.703885px;}
.fsb_c00063{font-size:86.100000px;}
.fs18_c00063{font-size:233.100000px;}
.y0_c00063{bottom:0.000000px;}
.ybe_c00063{bottom:79.489500px;}
.ybc_c00063{bottom:88.830000px;}
.ybd_c00063{bottom:136.590000px;}
.ybb_c00063{bottom:138.750660px;}
.yba_c00063{bottom:139.196933px;}
.yb9_c00063{bottom:139.587180px;}
.yb8_c00063{bottom:140.505517px;}
.yb7_c00063{bottom:140.866733px;}
.yb6_c00063{bottom:141.617475px;}
.yb5_c00063{bottom:142.291860px;}
.yb4_c00063{bottom:153.647610px;}
.yb3_c00063{bottom:154.040415px;}
.yb2_c00063{bottom:154.422645px;}
.yb1_c00063{bottom:154.732942px;}
.yb0_c00063{bottom:155.025240px;}
.yaf_c00063{bottom:155.211585px;}
.yae_c00063{bottom:155.231160px;}
.yad_c00063{bottom:155.945513px;}
.yac_c00063{bottom:156.317280px;}
.yab_c00063{bottom:156.881265px;}
.yaa_c00063{bottom:157.094092px;}
.ya9_c00063{bottom:157.925557px;}
.ya8_c00063{bottom:158.123693px;}
.ya7_c00063{bottom:158.617928px;}
.ya6_c00063{bottom:158.885250px;}
.ya5_c00063{bottom:159.533363px;}
.ya4_c00063{bottom:159.958860px;}
.ya3_c00063{bottom:160.197900px;}
.ya2_c00063{bottom:160.651500px;}
.ya1_c00063{bottom:172.945500px;}
.y7_c00063{bottom:174.640899px;}
.y6_c00063{bottom:175.877286px;}
.y5_c00063{bottom:176.252773px;}
.y4_c00063{bottom:177.243177px;}
.y3_c00063{bottom:177.526353px;}
.y2_c00063{bottom:177.833412px;}
.y1_c00063{bottom:178.203000px;}
.ya0_c00063{bottom:196.689000px;}
.y9f_c00063{bottom:216.673638px;}
.y9e_c00063{bottom:216.922022px;}
.y9d_c00063{bottom:217.235091px;}
.y9c_c00063{bottom:217.629661px;}
.y9b_c00063{bottom:217.994678px;}
.y9a_c00063{bottom:218.218886px;}
.y99_c00063{bottom:218.554001px;}
.y98_c00063{bottom:219.061740px;}
.y97_c00063{bottom:219.393638px;}
.y96_c00063{bottom:219.661162px;}
.y95_c00063{bottom:220.589579px;}
.y94_c00063{bottom:239.760614px;}
.y93_c00063{bottom:240.007239px;}
.y92_c00063{bottom:240.791534px;}
.y91_c00063{bottom:241.084953px;}
.y90_c00063{bottom:241.881127px;}
.y8f_c00063{bottom:242.207547px;}
.y8e_c00063{bottom:242.912114px;}
.y8d_c00063{bottom:243.271500px;}
.y8c_c00063{bottom:262.570673px;}
.y8b_c00063{bottom:262.887852px;}
.y8a_c00063{bottom:263.458224px;}
.y89_c00063{bottom:264.127250px;}
.y88_c00063{bottom:264.607515px;}
.y87_c00063{bottom:265.276376px;}
.y86_c00063{bottom:265.748507px;}
.y85_c00063{bottom:266.208527px;}
.y84_c00063{bottom:266.484654px;}
.y83_c00063{bottom:266.770500px;}
.y82_c00063{bottom:286.030500px;}
.y81_c00063{bottom:286.834500px;}
.y80_c00063{bottom:287.323500px;}
.y7f_c00063{bottom:287.592000px;}
.y7e_c00063{bottom:288.538500px;}
.y7d_c00063{bottom:289.002000px;}
.y7c_c00063{bottom:289.312500px;}
.y7b_c00063{bottom:289.711500px;}
.y7a_c00063{bottom:310.687500px;}
.y79_c00063{bottom:333.910500px;}
.y78_c00063{bottom:356.548500px;}
.y77_c00063{bottom:379.828500px;}
.y76_c00063{bottom:400.341000px;}
.y75_c00063{bottom:401.149500px;}
.y74_c00063{bottom:401.749500px;}
.y73_c00063{bottom:402.222000px;}
.y72_c00063{bottom:402.705000px;}
.y71_c00063{bottom:403.147500px;}
.y70_c00063{bottom:403.834500px;}
.y6f_c00063{bottom:404.460000px;}
.y6e_c00063{bottom:424.263000px;}
.y6d_c00063{bottom:424.719000px;}
.y6c_c00063{bottom:425.118000px;}
.y6b_c00063{bottom:425.329500px;}
.y6a_c00063{bottom:425.842500px;}
.y69_c00063{bottom:426.066000px;}
.y68_c00063{bottom:426.481500px;}
.y67_c00063{bottom:426.805500px;}
.y66_c00063{bottom:427.267500px;}
.y65_c00063{bottom:427.488000px;}
.y64_c00063{bottom:446.776500px;}
.y63_c00063{bottom:447.313500px;}
.y62_c00063{bottom:447.565500px;}
.y61_c00063{bottom:447.762000px;}
.y60_c00063{bottom:448.173000px;}
.y5f_c00063{bottom:448.498500px;}
.y5e_c00063{bottom:448.978500px;}
.y5d_c00063{bottom:449.259000px;}
.y5c_c00063{bottom:449.638500px;}
.y5b_c00063{bottom:449.818500px;}
.y5a_c00063{bottom:470.407500px;}
.y59_c00063{bottom:470.910000px;}
.y58_c00063{bottom:471.085500px;}
.y57_c00063{bottom:471.477000px;}
.y56_c00063{bottom:472.117500px;}
.y55_c00063{bottom:472.974000px;}
.y54_c00063{bottom:473.311500px;}
.y53_c00063{bottom:494.434500px;}
.y52_c00063{bottom:515.755500px;}
.y51_c00063{bottom:516.433500px;}
.y50_c00063{bottom:516.724500px;}
.y4f_c00063{bottom:517.537500px;}
.y4e_c00063{bottom:518.002500px;}
.y4d_c00063{bottom:518.428500px;}
.y4c_c00063{bottom:518.691000px;}
.y4b_c00063{bottom:518.950500px;}
.y4a_c00063{bottom:539.517000px;}
.y49_c00063{bottom:562.638000px;}
.y48_c00063{bottom:583.200585px;}
.y47_c00063{bottom:584.281875px;}
.y46_c00063{bottom:584.932170px;}
.y45_c00063{bottom:585.288585px;}
.y44_c00063{bottom:585.683190px;}
.y43_c00063{bottom:585.872700px;}
.y42_c00063{bottom:586.455270px;}
.y41_c00063{bottom:586.727685px;}
.y40_c00063{bottom:587.257455px;}
.y3b_c00063{bottom:608.242620px;}
.y3d_c00063{bottom:608.242665px;}
.y3a_c00063{bottom:608.242875px;}
.y3e_c00063{bottom:608.242980px;}
.y3c_c00063{bottom:608.243235px;}
.y3f_c00063{bottom:608.243295px;}
.y39_c00063{bottom:629.628015px;}
.y38_c00063{bottom:629.951430px;}
.y37_c00063{bottom:630.156405px;}
.y36_c00063{bottom:630.294120px;}
.y35_c00063{bottom:630.718050px;}
.y34_c00063{bottom:631.125270px;}
.y33_c00063{bottom:631.425420px;}
.y32_c00063{bottom:631.957515px;}
.y31_c00063{bottom:632.467710px;}
.y30_c00063{bottom:632.867850px;}
.y2f_c00063{bottom:633.148290px;}
.y2e_c00063{bottom:652.988280px;}
.y2d_c00063{bottom:653.657250px;}
.y2c_c00063{bottom:654.116220px;}
.y2b_c00063{bottom:654.543795px;}
.y2a_c00063{bottom:654.917265px;}
.y29_c00063{bottom:655.169655px;}
.y28_c00063{bottom:655.487760px;}
.y27_c00063{bottom:655.769010px;}
.y26_c00063{bottom:656.097915px;}
.y24_c00063{bottom:677.170755px;}
.y23_c00063{bottom:677.171040px;}
.y25_c00063{bottom:677.171070px;}
.y21_c00063{bottom:677.171580px;}
.y22_c00063{bottom:677.171610px;}
.y1f_c00063{bottom:677.171835px;}
.y20_c00063{bottom:677.171850px;}
.y1e_c00063{bottom:677.172120px;}
.y1d_c00063{bottom:698.050665px;}
.y1c_c00063{bottom:698.810400px;}
.y1b_c00063{bottom:699.306750px;}
.y1a_c00063{bottom:699.547140px;}
.y19_c00063{bottom:699.998100px;}
.y18_c00063{bottom:700.932525px;}
.y17_c00063{bottom:701.161530px;}
.y16_c00063{bottom:701.731500px;}
.y15_c00063{bottom:723.081000px;}
.y14_c00063{bottom:746.464500px;}
.y13_c00063{bottom:769.258500px;}
.y12_c00063{bottom:790.666500px;}
.y11_c00063{bottom:790.785000px;}
.y10_c00063{bottom:791.191500px;}
.yf_c00063{bottom:791.413500px;}
.ye_c00063{bottom:791.602500px;}
.yd_c00063{bottom:792.225000px;}
.yc_c00063{bottom:792.564000px;}
.yb_c00063{bottom:792.825000px;}
.ya_c00063{bottom:793.147500px;}
.y9_c00063{bottom:793.531500px;}
.y8_c00063{bottom:815.385000px;}
.h14_c00063{height:27.300000px;}
.h18_c00063{height:34.650000px;}
.h15_c00063{height:48.300000px;}
.h19_c00063{height:51.450000px;}
.h16_c00063{height:51.455788px;}
.h17_c00063{height:52.505906px;}
.h2_c00063{height:54.609854px;}
.hb_c00063{height:63.003150px;}
.hc_c00063{height:64.053202px;}
.ha_c00063{height:65.103255px;}
.h10_c00063{height:66.150000px;}
.h5_c00063{height:68.250000px;}
.he_c00063{height:69.300000px;}
.h4_c00063{height:70.350000px;}
.h12_c00063{height:70.354256px;}
.h6_c00063{height:71.400000px;}
.h9_c00063{height:71.403570px;}
.h11_c00063{height:71.404320px;}
.h7_c00063{height:72.450000px;}
.h3_c00063{height:73.500000px;}
.hf_c00063{height:74.550000px;}
.h13_c00063{height:74.554510px;}
.h8_c00063{height:77.703885px;}
.hd_c00063{height:86.100000px;}
.h1a_c00063{height:233.100000px;}
.h0_c00063{height:1008.450000px;}
.h1_c00063{height:1008.750000px;}
.w0_c00063{width:699.000000px;}
.x0_c00063{left:0.000000px;}
.x90_c00063{left:146.199000px;}
.x1_c00063{left:160.461000px;}
.x91_c00063{left:176.439000px;}
.x85_c00063{left:178.594500px;}
.x2_c00063{left:179.913000px;}
.x38_c00063{left:182.382480px;}
.x66_c00063{left:184.254000px;}
.x4b_c00063{left:185.490000px;}
.x3f_c00063{left:187.925505px;}
.x26_c00063{left:189.948000px;}
.x8_c00063{left:191.430000px;}
.x53_c00063{left:194.128500px;}
.x3_c00063{left:196.074000px;}
.x54_c00063{left:206.278500px;}
.x67_c00063{left:208.836000px;}
.x4_c00063{left:210.978000px;}
.x2c_c00063{left:212.221155px;}
.x1f_c00063{left:215.460000px;}
.x9_c00063{left:217.620000px;}
.x5a_c00063{left:218.787000px;}
.x92_c00063{left:220.741500px;}
.x70_c00063{left:224.097000px;}
.x32_c00063{left:226.191045px;}
.x82_c00063{left:233.991000px;}
.x6d_c00063{left:236.632500px;}
.x50_c00063{left:238.050000px;}
.x10_c00063{left:240.193500px;}
.x2d_c00063{left:241.922625px;}
.x27_c00063{left:246.945000px;}
.x39_c00063{left:250.440480px;}
.xa_c00063{left:252.180000px;}
.x75_c00063{left:253.257000px;}
.x5e_c00063{left:254.770500px;}
.x33_c00063{left:257.466360px;}
.x19_c00063{left:258.660000px;}
.x68_c00063{left:260.146500px;}
.x5_c00063{left:263.104500px;}
.x40_c00063{left:264.608670px;}
.x23_c00063{left:267.840000px;}
.x28_c00063{left:269.845500px;}
.x55_c00063{left:273.778500px;}
.x7d_c00063{left:275.397000px;}
.x87_c00063{left:279.331563px;}
.x11_c00063{left:280.462500px;}
.x93_c00063{left:281.770500px;}
.x6_c00063{left:282.867000px;}
.x71_c00063{left:284.037000px;}
.x5f_c00063{left:289.866000px;}
.x34_c00063{left:292.877220px;}
.x6e_c00063{left:293.929500px;}
.x1a_c00063{left:297.000000px;}
.x9d_c00063{left:300.416445px;}
.x3a_c00063{left:301.459980px;}
.x5b_c00063{left:304.425000px;}
.x41_c00063{left:308.351550px;}
.x76_c00063{left:310.497000px;}
.x12_c00063{left:313.128000px;}
.x94_c00063{left:314.719500px;}
.x2e_c00063{left:315.907020px;}
.x72_c00063{left:316.977000px;}
.x83_c00063{left:318.732000px;}
.x35_c00063{left:320.966505px;}
.xb_c00063{left:323.460000px;}
.x45_c00063{left:326.533185px;}
.x95_c00063{left:327.928500px;}
.x49_c00063{left:331.560000px;}
.x56_c00063{left:334.798500px;}
.x1b_c00063{left:335.880000px;}
.x4c_c00063{left:341.010000px;}
.x69_c00063{left:342.237000px;}
.x24_c00063{left:345.600000px;}
.x7_c00063{left:347.940000px;}
.x60_c00063{left:349.828500px;}
.x13_c00063{left:355.480500px;}
.x7a_c00063{left:356.937000px;}
.x80_c00063{left:360.016500px;}
.x20_c00063{left:362.610000px;}
.x7e_c00063{left:365.847000px;}
.x42_c00063{left:367.214430px;}
.x5c_c00063{left:368.412000px;}
.xc_c00063{left:370.440000px;}
.x25_c00063{left:376.110000px;}
.x86_c00063{left:377.371500px;}
.x84_c00063{left:379.537500px;}
.x1c_c00063{left:382.320000px;}
.x77_c00063{left:383.397000px;}
.x3b_c00063{left:384.684480px;}
.x7b_c00063{left:386.097000px;}
.x43_c00063{left:389.085120px;}
.x61_c00063{left:390.574500px;}
.x73_c00063{left:391.767000px;}
.x57_c00063{left:395.278500px;}
.x88_c00063{left:396.764850px;}
.x4d_c00063{left:403.650000px;}
.xd_c00063{left:405.540000px;}
.x7f_c00063{left:406.887000px;}
.x29_c00063{left:408.384000px;}
.x36_c00063{left:410.071905px;}
.x58_c00063{left:412.018500px;}
.x44_c00063{left:419.056620px;}
.x46_c00063{left:420.586185px;}
.x4e_c00063{left:422.820000px;}
.x1d_c00063{left:424.170000px;}
.x3c_c00063{left:425.406480px;}
.x78_c00063{left:427.407000px;}
.x21_c00063{left:432.000000px;}
.x14_c00063{left:433.237500px;}
.x2f_c00063{left:435.522975px;}
.x51_c00063{left:437.530500px;}
.x7c_c00063{left:440.097000px;}
.x62_c00063{left:441.918000px;}
.x9e_c00063{left:446.310000px;}
.x6a_c00063{left:447.538500px;}
.x8d_c00063{left:454.140000px;}
.x89_c00063{left:455.649494px;}
.x15_c00063{left:456.769500px;}
.xe_c00063{left:459.000000px;}
.x37_c00063{left:461.069415px;}
.x1e_c00063{left:464.400000px;}
.x63_c00063{left:466.488000px;}
.x3d_c00063{left:467.799480px;}
.x30_c00063{left:469.004820px;}
.x4f_c00063{left:470.610000px;}
.x5d_c00063{left:475.302000px;}
.x59_c00063{left:478.978500px;}
.xf_c00063{left:480.600000px;}
.x2a_c00063{left:482.058000px;}
.x16_c00063{left:484.540500px;}
.x47_c00063{left:485.615685px;}
.x81_c00063{left:490.105500px;}
.x6b_c00063{left:491.821500px;}
.x8a_c00063{left:495.065423px;}
.x64_c00063{left:498.045000px;}
.x3e_c00063{left:502.068480px;}
.x52_c00063{left:505.309500px;}
.x96_c00063{left:507.555000px;}
.x97_c00063{left:508.860000px;}
.x31_c00063{left:512.477670px;}
.x8e_c00063{left:514.080000px;}
.x98_c00063{left:521.283000px;}
.x22_c00063{left:523.260000px;}
.x9f_c00063{left:525.150000px;}
.x8b_c00063{left:526.390269px;}
.x6f_c00063{left:527.896500px;}
.x74_c00063{left:529.197000px;}
.x17_c00063{left:535.297500px;}
.x79_c00063{left:536.757000px;}
.x99_c00063{left:540.769500px;}
.x6c_c00063{left:542.514000px;}
.x18_c00063{left:550.149000px;}
.x8c_c00063{left:551.289050px;}
.x2b_c00063{left:558.031500px;}
.x9a_c00063{left:561.456000px;}
.x65_c00063{left:565.236000px;}
.xa0_c00063{left:572.400000px;}
.x4a_c00063{left:579.960000px;}
.x8f_c00063{left:582.120000px;}
.x9b_c00063{left:586.938000px;}
.x48_c00063{left:593.744685px;}
.xa1_c00063{left:605.340000px;}
.x9c_c00063{left:613.125000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
.fs12_c00063{font-size:24.266667pt;}
.fs16_c00063{font-size:30.800000pt;}
.fs13_c00063{font-size:42.933333pt;}
.fs17_c00063{font-size:45.733333pt;}
.fs14_c00063{font-size:45.738478pt;}
.fs15_c00063{font-size:46.671916pt;}
.fs0_c00063{font-size:48.542093pt;}
.fs9_c00063{font-size:56.002800pt;}
.fsa_c00063{font-size:56.936180pt;}
.fs8_c00063{font-size:57.869560pt;}
.fse_c00063{font-size:58.800000pt;}
.fs3_c00063{font-size:60.666667pt;}
.fsc_c00063{font-size:61.600000pt;}
.fs2_c00063{font-size:62.533333pt;}
.fs10_c00063{font-size:62.537116pt;}
.fs4_c00063{font-size:63.466667pt;}
.fs7_c00063{font-size:63.469840pt;}
.fsf_c00063{font-size:63.470506pt;}
.fs5_c00063{font-size:64.400000pt;}
.fs1_c00063{font-size:65.333333pt;}
.fsd_c00063{font-size:66.266667pt;}
.fs11_c00063{font-size:66.270676pt;}
.fs6_c00063{font-size:69.070120pt;}
.fsb_c00063{font-size:76.533333pt;}
.fs18_c00063{font-size:207.200000pt;}
.y0_c00063{bottom:0.000000pt;}
.ybe_c00063{bottom:70.657333pt;}
.ybc_c00063{bottom:78.960000pt;}
.ybd_c00063{bottom:121.413333pt;}
.ybb_c00063{bottom:123.333920pt;}
.yba_c00063{bottom:123.730607pt;}
.yb9_c00063{bottom:124.077493pt;}
.yb8_c00063{bottom:124.893793pt;}
.yb7_c00063{bottom:125.214873pt;}
.yb6_c00063{bottom:125.882200pt;}
.yb5_c00063{bottom:126.481653pt;}
.yb4_c00063{bottom:136.575653pt;}
.yb3_c00063{bottom:136.924813pt;}
.yb2_c00063{bottom:137.264573pt;}
.yb1_c00063{bottom:137.540393pt;}
.yb0_c00063{bottom:137.800213pt;}
.yaf_c00063{bottom:137.965853pt;}
.yae_c00063{bottom:137.983253pt;}
.yad_c00063{bottom:138.618233pt;}
.yac_c00063{bottom:138.948693pt;}
.yab_c00063{bottom:139.450013pt;}
.yaa_c00063{bottom:139.639193pt;}
.ya9_c00063{bottom:140.378273pt;}
.ya8_c00063{bottom:140.554393pt;}
.ya7_c00063{bottom:140.993713pt;}
.ya6_c00063{bottom:141.231333pt;}
.ya5_c00063{bottom:141.807433pt;}
.ya4_c00063{bottom:142.185653pt;}
.ya3_c00063{bottom:142.398133pt;}
.ya2_c00063{bottom:142.801333pt;}
.ya1_c00063{bottom:153.729333pt;}
.y7_c00063{bottom:155.236355pt;}
.y6_c00063{bottom:156.335365pt;}
.y5_c00063{bottom:156.669132pt;}
.y4_c00063{bottom:157.549491pt;}
.y3_c00063{bottom:157.801203pt;}
.y2_c00063{bottom:158.074144pt;}
.y1_c00063{bottom:158.402667pt;}
.ya0_c00063{bottom:174.834667pt;}
.y9f_c00063{bottom:192.598789pt;}
.y9e_c00063{bottom:192.819575pt;}
.y9d_c00063{bottom:193.097859pt;}
.y9c_c00063{bottom:193.448588pt;}
.y9b_c00063{bottom:193.773047pt;}
.y9a_c00063{bottom:193.972343pt;}
.y99_c00063{bottom:194.270223pt;}
.y98_c00063{bottom:194.721547pt;}
.y97_c00063{bottom:195.016567pt;}
.y96_c00063{bottom:195.254367pt;}
.y95_c00063{bottom:196.079625pt;}
.y94_c00063{bottom:213.120545pt;}
.y93_c00063{bottom:213.339768pt;}
.y92_c00063{bottom:214.036919pt;}
.y91_c00063{bottom:214.297736pt;}
.y90_c00063{bottom:215.005447pt;}
.y8f_c00063{bottom:215.295597pt;}
.y8e_c00063{bottom:215.921879pt;}
.y8d_c00063{bottom:216.241333pt;}
.y8c_c00063{bottom:233.396153pt;}
.y8b_c00063{bottom:233.678091pt;}
.y8a_c00063{bottom:234.185088pt;}
.y89_c00063{bottom:234.779777pt;}
.y88_c00063{bottom:235.206680pt;}
.y87_c00063{bottom:235.801223pt;}
.y86_c00063{bottom:236.220895pt;}
.y85_c00063{bottom:236.629801pt;}
.y84_c00063{bottom:236.875248pt;}
.y83_c00063{bottom:237.129333pt;}
.y82_c00063{bottom:254.249333pt;}
.y81_c00063{bottom:254.964000pt;}
.y80_c00063{bottom:255.398667pt;}
.y7f_c00063{bottom:255.637333pt;}
.y7e_c00063{bottom:256.478667pt;}
.y7d_c00063{bottom:256.890667pt;}
.y7c_c00063{bottom:257.166667pt;}
.y7b_c00063{bottom:257.521333pt;}
.y7a_c00063{bottom:276.166667pt;}
.y79_c00063{bottom:296.809333pt;}
.y78_c00063{bottom:316.932000pt;}
.y77_c00063{bottom:337.625333pt;}
.y76_c00063{bottom:355.858667pt;}
.y75_c00063{bottom:356.577333pt;}
.y74_c00063{bottom:357.110667pt;}
.y73_c00063{bottom:357.530667pt;}
.y72_c00063{bottom:357.960000pt;}
.y71_c00063{bottom:358.353333pt;}
.y70_c00063{bottom:358.964000pt;}
.y6f_c00063{bottom:359.520000pt;}
.y6e_c00063{bottom:377.122667pt;}
.y6d_c00063{bottom:377.528000pt;}
.y6c_c00063{bottom:377.882667pt;}
.y6b_c00063{bottom:378.070667pt;}
.y6a_c00063{bottom:378.526667pt;}
.y69_c00063{bottom:378.725333pt;}
.y68_c00063{bottom:379.094667pt;}
.y67_c00063{bottom:379.382667pt;}
.y66_c00063{bottom:379.793333pt;}
.y65_c00063{bottom:379.989333pt;}
.y64_c00063{bottom:397.134667pt;}
.y63_c00063{bottom:397.612000pt;}
.y62_c00063{bottom:397.836000pt;}
.y61_c00063{bottom:398.010667pt;}
.y60_c00063{bottom:398.376000pt;}
.y5f_c00063{bottom:398.665333pt;}
.y5e_c00063{bottom:399.092000pt;}
.y5d_c00063{bottom:399.341333pt;}
.y5c_c00063{bottom:399.678667pt;}
.y5b_c00063{bottom:399.838667pt;}
.y5a_c00063{bottom:418.140000pt;}
.y59_c00063{bottom:418.586667pt;}
.y58_c00063{bottom:418.742667pt;}
.y57_c00063{bottom:419.090667pt;}
.y56_c00063{bottom:419.660000pt;}
.y55_c00063{bottom:420.421333pt;}
.y54_c00063{bottom:420.721333pt;}
.y53_c00063{bottom:439.497333pt;}
.y52_c00063{bottom:458.449333pt;}
.y51_c00063{bottom:459.052000pt;}
.y50_c00063{bottom:459.310667pt;}
.y4f_c00063{bottom:460.033333pt;}
.y4e_c00063{bottom:460.446667pt;}
.y4d_c00063{bottom:460.825333pt;}
.y4c_c00063{bottom:461.058667pt;}
.y4b_c00063{bottom:461.289333pt;}
.y4a_c00063{bottom:479.570667pt;}
.y49_c00063{bottom:500.122667pt;}
.y48_c00063{bottom:518.400520pt;}
.y47_c00063{bottom:519.361667pt;}
.y46_c00063{bottom:519.939707pt;}
.y45_c00063{bottom:520.256520pt;}
.y44_c00063{bottom:520.607280pt;}
.y43_c00063{bottom:520.775733pt;}
.y42_c00063{bottom:521.293573pt;}
.y41_c00063{bottom:521.535720pt;}
.y40_c00063{bottom:522.006627pt;}
.y3b_c00063{bottom:540.660107pt;}
.y3d_c00063{bottom:540.660147pt;}
.y3a_c00063{bottom:540.660333pt;}
.y3e_c00063{bottom:540.660427pt;}
.y3c_c00063{bottom:540.660653pt;}
.y3f_c00063{bottom:540.660707pt;}
.y39_c00063{bottom:559.669347pt;}
.y38_c00063{bottom:559.956827pt;}
.y37_c00063{bottom:560.139027pt;}
.y36_c00063{bottom:560.261440pt;}
.y35_c00063{bottom:560.638267pt;}
.y34_c00063{bottom:561.000240pt;}
.y33_c00063{bottom:561.267040pt;}
.y32_c00063{bottom:561.740013pt;}
.y31_c00063{bottom:562.193520pt;}
.y30_c00063{bottom:562.549200pt;}
.y2f_c00063{bottom:562.798480pt;}
.y2e_c00063{bottom:580.434027pt;}
.y2d_c00063{bottom:581.028667pt;}
.y2c_c00063{bottom:581.436640pt;}
.y2b_c00063{bottom:581.816707pt;}
.y2a_c00063{bottom:582.148680pt;}
.y29_c00063{bottom:582.373027pt;}
.y28_c00063{bottom:582.655787pt;}
.y27_c00063{bottom:582.905787pt;}
.y26_c00063{bottom:583.198147pt;}
.y24_c00063{bottom:601.929560pt;}
.y23_c00063{bottom:601.929813pt;}
.y25_c00063{bottom:601.929840pt;}
.y21_c00063{bottom:601.930293pt;}
.y22_c00063{bottom:601.930320pt;}
.y1f_c00063{bottom:601.930520pt;}
.y20_c00063{bottom:601.930533pt;}
.y1e_c00063{bottom:601.930773pt;}
.y1d_c00063{bottom:620.489480pt;}
.y1c_c00063{bottom:621.164800pt;}
.y1b_c00063{bottom:621.606000pt;}
.y1a_c00063{bottom:621.819680pt;}
.y19_c00063{bottom:622.220533pt;}
.y18_c00063{bottom:623.051133pt;}
.y17_c00063{bottom:623.254693pt;}
.y16_c00063{bottom:623.761333pt;}
.y15_c00063{bottom:642.738667pt;}
.y14_c00063{bottom:663.524000pt;}
.y13_c00063{bottom:683.785333pt;}
.y12_c00063{bottom:702.814667pt;}
.y11_c00063{bottom:702.920000pt;}
.y10_c00063{bottom:703.281333pt;}
.yf_c00063{bottom:703.478667pt;}
.ye_c00063{bottom:703.646667pt;}
.yd_c00063{bottom:704.200000pt;}
.yc_c00063{bottom:704.501333pt;}
.yb_c00063{bottom:704.733333pt;}
.ya_c00063{bottom:705.020000pt;}
.y9_c00063{bottom:705.361333pt;}
.y8_c00063{bottom:724.786667pt;}
.h14_c00063{height:24.266667pt;}
.h18_c00063{height:30.800000pt;}
.h15_c00063{height:42.933333pt;}
.h19_c00063{height:45.733333pt;}
.h16_c00063{height:45.738478pt;}
.h17_c00063{height:46.671916pt;}
.h2_c00063{height:48.542093pt;}
.hb_c00063{height:56.002800pt;}
.hc_c00063{height:56.936180pt;}
.ha_c00063{height:57.869560pt;}
.h10_c00063{height:58.800000pt;}
.h5_c00063{height:60.666667pt;}
.he_c00063{height:61.600000pt;}
.h4_c00063{height:62.533333pt;}
.h12_c00063{height:62.537116pt;}
.h6_c00063{height:63.466667pt;}
.h9_c00063{height:63.469840pt;}
.h11_c00063{height:63.470506pt;}
.h7_c00063{height:64.400000pt;}
.h3_c00063{height:65.333333pt;}
.hf_c00063{height:66.266667pt;}
.h13_c00063{height:66.270676pt;}
.h8_c00063{height:69.070120pt;}
.hd_c00063{height:76.533333pt;}
.h1a_c00063{height:207.200000pt;}
.h0_c00063{height:896.400000pt;}
.h1_c00063{height:896.666667pt;}
.w0_c00063{width:621.333333pt;}
.x0_c00063{left:0.000000pt;}
.x90_c00063{left:129.954667pt;}
.x1_c00063{left:142.632000pt;}
.x91_c00063{left:156.834667pt;}
.x85_c00063{left:158.750667pt;}
.x2_c00063{left:159.922667pt;}
.x38_c00063{left:162.117760pt;}
.x66_c00063{left:163.781333pt;}
.x4b_c00063{left:164.880000pt;}
.x3f_c00063{left:167.044893pt;}
.x26_c00063{left:168.842667pt;}
.x8_c00063{left:170.160000pt;}
.x53_c00063{left:172.558667pt;}
.x3_c00063{left:174.288000pt;}
.x54_c00063{left:183.358667pt;}
.x67_c00063{left:185.632000pt;}
.x4_c00063{left:187.536000pt;}
.x2c_c00063{left:188.641027pt;}
.x1f_c00063{left:191.520000pt;}
.x9_c00063{left:193.440000pt;}
.x5a_c00063{left:194.477333pt;}
.x92_c00063{left:196.214667pt;}
.x70_c00063{left:199.197333pt;}
.x32_c00063{left:201.058707pt;}
.x82_c00063{left:207.992000pt;}
.x6d_c00063{left:210.340000pt;}
.x50_c00063{left:211.600000pt;}
.x10_c00063{left:213.505333pt;}
.x2d_c00063{left:215.042333pt;}
.x27_c00063{left:219.506667pt;}
.x39_c00063{left:222.613760pt;}
.xa_c00063{left:224.160000pt;}
.x75_c00063{left:225.117333pt;}
.x5e_c00063{left:226.462667pt;}
.x33_c00063{left:228.858987pt;}
.x19_c00063{left:229.920000pt;}
.x68_c00063{left:231.241333pt;}
.x5_c00063{left:233.870667pt;}
.x40_c00063{left:235.207707pt;}
.x23_c00063{left:238.080000pt;}
.x28_c00063{left:239.862667pt;}
.x55_c00063{left:243.358667pt;}
.x7d_c00063{left:244.797333pt;}
.x87_c00063{left:248.294723pt;}
.x11_c00063{left:249.300000pt;}
.x93_c00063{left:250.462667pt;}
.x6_c00063{left:251.437333pt;}
.x71_c00063{left:252.477333pt;}
.x5f_c00063{left:257.658667pt;}
.x34_c00063{left:260.335307pt;}
.x6e_c00063{left:261.270667pt;}
.x1a_c00063{left:264.000000pt;}
.x9d_c00063{left:267.036840pt;}
.x3a_c00063{left:267.964427pt;}
.x5b_c00063{left:270.600000pt;}
.x41_c00063{left:274.090267pt;}
.x76_c00063{left:275.997333pt;}
.x12_c00063{left:278.336000pt;}
.x94_c00063{left:279.750667pt;}
.x2e_c00063{left:280.806240pt;}
.x72_c00063{left:281.757333pt;}
.x83_c00063{left:283.317333pt;}
.x35_c00063{left:285.303560pt;}
.xb_c00063{left:287.520000pt;}
.x45_c00063{left:290.251720pt;}
.x95_c00063{left:291.492000pt;}
.x49_c00063{left:294.720000pt;}
.x56_c00063{left:297.598667pt;}
.x1b_c00063{left:298.560000pt;}
.x4c_c00063{left:303.120000pt;}
.x69_c00063{left:304.210667pt;}
.x24_c00063{left:307.200000pt;}
.x7_c00063{left:309.280000pt;}
.x60_c00063{left:310.958667pt;}
.x13_c00063{left:315.982667pt;}
.x7a_c00063{left:317.277333pt;}
.x80_c00063{left:320.014667pt;}
.x20_c00063{left:322.320000pt;}
.x7e_c00063{left:325.197333pt;}
.x42_c00063{left:326.412827pt;}
.x5c_c00063{left:327.477333pt;}
.xc_c00063{left:329.280000pt;}
.x25_c00063{left:334.320000pt;}
.x86_c00063{left:335.441333pt;}
.x84_c00063{left:337.366667pt;}
.x1c_c00063{left:339.840000pt;}
.x77_c00063{left:340.797333pt;}
.x3b_c00063{left:341.941760pt;}
.x7b_c00063{left:343.197333pt;}
.x43_c00063{left:345.853440pt;}
.x61_c00063{left:347.177333pt;}
.x73_c00063{left:348.237333pt;}
.x57_c00063{left:351.358667pt;}
.x88_c00063{left:352.679867pt;}
.x4d_c00063{left:358.800000pt;}
.xd_c00063{left:360.480000pt;}
.x7f_c00063{left:361.677333pt;}
.x29_c00063{left:363.008000pt;}
.x36_c00063{left:364.508360pt;}
.x58_c00063{left:366.238667pt;}
.x44_c00063{left:372.494773pt;}
.x46_c00063{left:373.854387pt;}
.x4e_c00063{left:375.840000pt;}
.x1d_c00063{left:377.040000pt;}
.x3c_c00063{left:378.139093pt;}
.x78_c00063{left:379.917333pt;}
.x21_c00063{left:384.000000pt;}
.x14_c00063{left:385.100000pt;}
.x2f_c00063{left:387.131533pt;}
.x51_c00063{left:388.916000pt;}
.x7c_c00063{left:391.197333pt;}
.x62_c00063{left:392.816000pt;}
.x9e_c00063{left:396.720000pt;}
.x6a_c00063{left:397.812000pt;}
.x8d_c00063{left:403.680000pt;}
.x89_c00063{left:405.021772pt;}
.x15_c00063{left:406.017333pt;}
.xe_c00063{left:408.000000pt;}
.x37_c00063{left:409.839480pt;}
.x1e_c00063{left:412.800000pt;}
.x63_c00063{left:414.656000pt;}
.x3d_c00063{left:415.821760pt;}
.x30_c00063{left:416.893173pt;}
.x4f_c00063{left:418.320000pt;}
.x5d_c00063{left:422.490667pt;}
.x59_c00063{left:425.758667pt;}
.xf_c00063{left:427.200000pt;}
.x2a_c00063{left:428.496000pt;}
.x16_c00063{left:430.702667pt;}
.x47_c00063{left:431.658387pt;}
.x81_c00063{left:435.649333pt;}
.x6b_c00063{left:437.174667pt;}
.x8a_c00063{left:440.058153pt;}
.x64_c00063{left:442.706667pt;}
.x3e_c00063{left:446.283093pt;}
.x52_c00063{left:449.164000pt;}
.x96_c00063{left:451.160000pt;}
.x97_c00063{left:452.320000pt;}
.x31_c00063{left:455.535707pt;}
.x8e_c00063{left:456.960000pt;}
.x98_c00063{left:463.362667pt;}
.x22_c00063{left:465.120000pt;}
.x9f_c00063{left:466.800000pt;}
.x8b_c00063{left:467.902461pt;}
.x6f_c00063{left:469.241333pt;}
.x74_c00063{left:470.397333pt;}
.x17_c00063{left:475.820000pt;}
.x79_c00063{left:477.117333pt;}
.x99_c00063{left:480.684000pt;}
.x6c_c00063{left:482.234667pt;}
.x18_c00063{left:489.021333pt;}
.x8c_c00063{left:490.034711pt;}
.x2b_c00063{left:496.028000pt;}
.x9a_c00063{left:499.072000pt;}
.x65_c00063{left:502.432000pt;}
.xa0_c00063{left:508.800000pt;}
.x4a_c00063{left:515.520000pt;}
.x8f_c00063{left:517.440000pt;}
.x9b_c00063{left:521.722667pt;}
.x48_c00063{left:527.773053pt;}
.xa1_c00063{left:538.080000pt;}
.x9c_c00063{left:545.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_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_4ab86c84425994a9e06b01c2.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;}
.m62_c00064{transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.124805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124805,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{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);}
.m4d_c00064{transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);}
.m42_c00064{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.ma5_c00064{transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.149362,0.001942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149362,0.001942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149362,0.001942,-0.003250,0.249979,0,0);}
.m1f_c00064{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);}
.m92_c00064{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);}
.mc_c00064{transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);}
.ma3_c00064{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);}
.m3b_c00064{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);}
.m7_c00064{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);}
.mc1_c00064{transform:matrix(0.160157,0.002723,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160157,0.002723,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160157,0.002723,-0.004249,0.249964,0,0);}
.m5f_c00064{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.m71_c00064{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);}
.m88_c00064{transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{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);}
.m28_c00064{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{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);}
.mb3_c00064{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);}
.m20_c00064{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);}
.m48_c00064{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);}
.m45_c00064{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);}
.m61_c00064{transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);}
.m89_c00064{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);}
.m75_c00064{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);}
.mf_c00064{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);}
.m91_c00064{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);}
.ma1_c00064{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);}
.m9d_c00064{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);}
.m73_c00064{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);}
.m52_c00064{transform:matrix(0.170531,0.002217,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170531,0.002217,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170531,0.002217,-0.003250,0.249979,0,0);}
.m4e_c00064{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);}
.m30_c00064{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);}
.m65_c00064{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);}
.m82_c00064{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);}
.m31_c00064{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);}
.m35_c00064{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);}
.m8f_c00064{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);}
.ma4_c00064{transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{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);}
.m9f_c00064{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);}
.m94_c00064{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);}
.mc5_c00064{transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);}
.mc9_c00064{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);}
.mb0_c00064{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);}
.m1c_c00064{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);}
.m8c_c00064{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);}
.m41_c00064{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_c00064{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);}
.m32_c00064{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);}
.mc0_c00064{transform:matrix(0.177924,0.003025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177924,0.003025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177924,0.003025,-0.004249,0.249964,0,0);}
.m7d_c00064{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);}
.m9b_c00064{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);}
.mc2_c00064{transform:matrix(0.179269,0.003048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179269,0.003048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179269,0.003048,-0.004249,0.249964,0,0);}
.ma8_c00064{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);}
.m29_c00064{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);}
.m2a_c00064{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);}
.m39_c00064{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);}
.m93_c00064{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);}
.m68_c00064{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);}
.m9e_c00064{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);}
.m84_c00064{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);}
.m10_c00064{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{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);}
.m46_c00064{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);}
.mbe_c00064{transform:matrix(0.182084,0.003095,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182084,0.003095,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182084,0.003095,-0.004249,0.249964,0,0);}
.m23_c00064{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);}
.m6_c00064{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);}
.m22_c00064{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);}
.mb5_c00064{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);}
.m66_c00064{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);}
.mc3_c00064{transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);}
.mad_c00064{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);}
.m2f_c00064{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);}
.mc4_c00064{transform:matrix(0.184583,0.003138,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184583,0.003138,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184583,0.003138,-0.004249,0.249964,0,0);}
.mcb_c00064{transform:matrix(0.185003,0.003700,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185003,0.003700,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185003,0.003700,-0.004999,0.249950,0,0);}
.mce_c00064{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);}
.mb9_c00064{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);}
.m26_c00064{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);}
.m3a_c00064{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);}
.m50_c00064{transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186654,0.002427,-0.003250,0.249979,0,0);}
.mcd_c00064{transform:matrix(0.186668,0.003733,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186668,0.003733,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186668,0.003733,-0.004999,0.249950,0,0);}
.m4f_c00064{transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);}
.maf_c00064{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);}
.ma_c00064{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);}
.mcc_c00064{transform:matrix(0.187842,0.003757,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187842,0.003757,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187842,0.003757,-0.004999,0.249950,0,0);}
.m53_c00064{transform:matrix(0.189234,0.002460,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189234,0.002460,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189234,0.002460,-0.003250,0.249979,0,0);}
.mbd_c00064{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);}
.m86_c00064{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);}
.mba_c00064{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);}
.m17_c00064{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);}
.mb1_c00064{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);}
.m64_c00064{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);}
.m4_c00064{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);}
.mb4_c00064{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);}
.m34_c00064{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);}
.m43_c00064{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);}
.md_c00064{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);}
.m44_c00064{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);}
.mae_c00064{transform:matrix(0.192515,0.004620,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192515,0.004620,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192515,0.004620,-0.005998,0.249928,0,0);}
.m33_c00064{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);}
.m5_c00064{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);}
.m96_c00064{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);}
.m9a_c00064{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);}
.m69_c00064{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);}
.m83_c00064{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);}
.m6a_c00064{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);}
.m8d_c00064{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);}
.m54_c00064{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);}
.m2b_c00064{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);}
.m7f_c00064{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);}
.ma6_c00064{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);}
.mb_c00064{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);}
.m6e_c00064{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);}
.mc6_c00064{transform:matrix(0.197281,0.003946,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197281,0.003946,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197281,0.003946,-0.004999,0.249950,0,0);}
.ma7_c00064{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);}
.m8_c00064{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);}
.mbf_c00064{transform:matrix(0.198071,0.003367,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198071,0.003367,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198071,0.003367,-0.004249,0.249964,0,0);}
.m85_c00064{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);}
.m81_c00064{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);}
.m4b_c00064{transform:matrix(0.198738,0.002584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198738,0.002584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198738,0.002584,-0.003250,0.249979,0,0);}
.m3_c00064{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);}
.m21_c00064{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_c00064{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);}
.m2_c00064{transform:matrix(0.199745,0.001997,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199745,0.001997,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199745,0.001997,-0.002500,0.249988,0,0);}
.ma2_c00064{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);}
.m74_c00064{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);}
.m1a_c00064{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);}
.mac_c00064{transform:matrix(0.204066,0.004898,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204066,0.004898,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204066,0.004898,-0.005998,0.249928,0,0);}
.m56_c00064{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);}
.mbc_c00064{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);}
.m7a_c00064{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);}
.mc8_c00064{transform:matrix(0.206504,0.004130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206504,0.004130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206504,0.004130,-0.004999,0.249950,0,0);}
.m76_c00064{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);}
.m8b_c00064{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);}
.m6f_c00064{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);}
.m90_c00064{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);}
.m9c_c00064{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);}
.m18_c00064{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);}
.m79_c00064{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);}
.m7e_c00064{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);}
.me_c00064{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_c00064{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);}
.m13_c00064{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);}
.m7c_c00064{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.218722,0.005249,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218722,0.005249,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218722,0.005249,-0.005998,0.249928,0,0);}
.mcf_c00064{transform:matrix(0.219516,0.004390,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219516,0.004390,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219516,0.004390,-0.004999,0.249950,0,0);}
.m6c_c00064{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);}
.m8a_c00064{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);}
.m27_c00064{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);}
.m3f_c00064{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);}
.m99_c00064{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);}
.mbb_c00064{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.223421,0.002904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223421,0.002904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223421,0.002904,-0.003250,0.249979,0,0);}
.m24_c00064{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{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);}
.m3d_c00064{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);}
.m80_c00064{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);}
.m3c_c00064{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);}
.m77_c00064{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);}
.m1b_c00064{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);}
.m16_c00064{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);}
.m19_c00064{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);}
.m1_c00064{transform:matrix(0.231273,0.002313,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231273,0.002313,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231273,0.002313,-0.002500,0.249988,0,0);}
.mb6_c00064{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);}
.m6b_c00064{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);}
.m25_c00064{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);}
.maa_c00064{transform:matrix(0.236722,0.005681,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236722,0.005681,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236722,0.005681,-0.005998,0.249928,0,0);}
.m11_c00064{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);}
.mb2_c00064{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);}
.m67_c00064{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);}
.m55_c00064{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);}
.m5b_c00064{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);}
.m7b_c00064{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{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);}
.m49_c00064{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);}
.m2d_c00064{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{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);}
.m72_c00064{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00064{transform:matrix(0.275045,0.005501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275045,0.005501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275045,0.005501,-0.004999,0.249950,0,0);}
.m57_c00064{transform:matrix(0.281300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281300,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284370,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.307610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307610,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317255,0.000000,0.000000,0.250000,0,0);}
.m5d_c00064{transform:matrix(0.330405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330405,0.000000,0.000000,0.250000,0,0);}
.m97_c00064{transform:matrix(0.332925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332925,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.334585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334585,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.342017,0.008208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.342017,0.008208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.342017,0.008208,-0.005998,0.249928,0,0);}
.md0_c00064{transform:matrix(0.350300,0.007006,-0.004999,0.249950,0,0);-ms-transform:matrix(0.350300,0.007006,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.350300,0.007006,-0.004999,0.249950,0,0);}
.mb7_c00064{transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.435935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435935,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.446000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.448698,0.004487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.448698,0.004487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.448698,0.004487,-0.002500,0.249988,0,0);}
.mb8_c00064{transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.653135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653135,0.000000,0.000000,0.250000,0,0);}
.mca_c00064{transform:matrix(0.798405,0.015968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.798405,0.015968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.798405,0.015968,-0.004999,0.249950,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;}
._0_c00064{width:28.010169px;}
.fc0_c00064{color:transparent;}
.fsf_c00064{font-size:51.464815px;}
.fs10_c00064{font-size:52.500000px;}
.fs12_c00064{font-size:53.560709px;}
.fs11_c00064{font-size:55.658041px;}
.fs3_c00064{font-size:61.950000px;}
.fsc_c00064{font-size:63.000000px;}
.fs8_c00064{font-size:64.050000px;}
.fsd_c00064{font-size:66.150000px;}
.fsa_c00064{font-size:67.200000px;}
.fs9_c00064{font-size:69.300000px;}
.fs4_c00064{font-size:70.350000px;}
.fs1_c00064{font-size:71.400000px;}
.fs6_c00064{font-size:72.450000px;}
.fs7_c00064{font-size:72.456122px;}
.fs2_c00064{font-size:73.500000px;}
.fse_c00064{font-size:74.550000px;}
.fs5_c00064{font-size:76.650000px;}
.fsb_c00064{font-size:95.550000px;}
.fs0_c00064{font-size:96.604830px;}
.y0_c00064{bottom:0.000000px;}
.y93_c00064{bottom:118.583586px;}
.y92_c00064{bottom:118.890147px;}
.y91_c00064{bottom:119.560593px;}
.y90_c00064{bottom:119.914049px;}
.y8f_c00064{bottom:120.326154px;}
.y8e_c00064{bottom:121.189890px;}
.y8d_c00064{bottom:121.501500px;}
.y8c_c00064{bottom:123.166500px;}
.y8b_c00064{bottom:123.754500px;}
.y8a_c00064{bottom:124.429500px;}
.y89_c00064{bottom:125.191500px;}
.y88_c00064{bottom:126.624000px;}
.y87_c00064{bottom:127.594500px;}
.y86_c00064{bottom:128.028000px;}
.y85_c00064{bottom:138.114000px;}
.y84_c00064{bottom:141.271788px;}
.y83_c00064{bottom:141.893832px;}
.y82_c00064{bottom:143.254848px;}
.y81_c00064{bottom:144.849720px;}
.y80_c00064{bottom:145.679700px;}
.y7f_c00064{bottom:146.073000px;}
.y9f_c00064{bottom:154.260660px;}
.y9e_c00064{bottom:155.225460px;}
.y9d_c00064{bottom:156.072540px;}
.y9c_c00064{bottom:156.699900px;}
.y9b_c00064{bottom:157.455870px;}
.y9a_c00064{bottom:158.940900px;}
.y99_c00064{bottom:159.317190px;}
.y98_c00064{bottom:161.166420px;}
.y97_c00064{bottom:162.068040px;}
.y96_c00064{bottom:162.451800px;}
.y95_c00064{bottom:163.440450px;}
.y94_c00064{bottom:163.893000px;}
.y7e_c00064{bottom:208.659000px;}
.y7d_c00064{bottom:209.137500px;}
.y7c_c00064{bottom:210.373500px;}
.y7b_c00064{bottom:211.071000px;}
.y7a_c00064{bottom:211.764000px;}
.y79_c00064{bottom:212.133000px;}
.y78_c00064{bottom:212.389500px;}
.y77_c00064{bottom:213.682500px;}
.y76_c00064{bottom:214.651500px;}
.y75_c00064{bottom:232.002000px;}
.y74_c00064{bottom:233.050500px;}
.y73_c00064{bottom:233.409000px;}
.y72_c00064{bottom:233.674500px;}
.y71_c00064{bottom:234.390000px;}
.y70_c00064{bottom:235.414500px;}
.y6f_c00064{bottom:236.301000px;}
.y6e_c00064{bottom:237.063000px;}
.y6d_c00064{bottom:254.575500px;}
.y6c_c00064{bottom:255.724500px;}
.y6b_c00064{bottom:256.366500px;}
.y6a_c00064{bottom:257.178000px;}
.y69_c00064{bottom:257.784000px;}
.y68_c00064{bottom:258.412500px;}
.y67_c00064{bottom:259.452000px;}
.y66_c00064{bottom:260.283000px;}
.y65_c00064{bottom:277.326000px;}
.y64_c00064{bottom:277.923000px;}
.y63_c00064{bottom:278.301000px;}
.y62_c00064{bottom:279.159000px;}
.y61_c00064{bottom:279.609000px;}
.y60_c00064{bottom:280.435500px;}
.y5f_c00064{bottom:280.807500px;}
.y5e_c00064{bottom:281.781000px;}
.y5d_c00064{bottom:282.423000px;}
.y5c_c00064{bottom:301.498500px;}
.y5b_c00064{bottom:302.007000px;}
.y5a_c00064{bottom:302.611500px;}
.y59_c00064{bottom:303.001500px;}
.y58_c00064{bottom:303.658500px;}
.y57_c00064{bottom:304.833000px;}
.y56_c00064{bottom:323.227500px;}
.y55_c00064{bottom:323.896500px;}
.y54_c00064{bottom:324.300000px;}
.y53_c00064{bottom:324.870000px;}
.y52_c00064{bottom:325.855500px;}
.y51_c00064{bottom:326.442000px;}
.y50_c00064{bottom:326.853000px;}
.y4f_c00064{bottom:327.514500px;}
.y4e_c00064{bottom:346.381500px;}
.y4d_c00064{bottom:347.308500px;}
.y4c_c00064{bottom:347.676000px;}
.y4b_c00064{bottom:348.333000px;}
.y4a_c00064{bottom:349.365000px;}
.y49_c00064{bottom:349.927500px;}
.y48_c00064{bottom:350.370000px;}
.y47_c00064{bottom:368.913000px;}
.y46_c00064{bottom:369.406500px;}
.y45_c00064{bottom:370.287000px;}
.y44_c00064{bottom:370.756500px;}
.y43_c00064{bottom:371.590500px;}
.y42_c00064{bottom:372.567000px;}
.y41_c00064{bottom:372.874500px;}
.y40_c00064{bottom:391.950000px;}
.y3f_c00064{bottom:392.455500px;}
.y3e_c00064{bottom:393.249000px;}
.y3d_c00064{bottom:393.529500px;}
.y3c_c00064{bottom:394.290000px;}
.y3b_c00064{bottom:394.791000px;}
.y3a_c00064{bottom:395.553000px;}
.y39_c00064{bottom:414.579000px;}
.y38_c00064{bottom:470.484000px;}
.y37_c00064{bottom:510.820500px;}
.y36_c00064{bottom:567.978000px;}
.y35_c00064{bottom:589.230000px;}
.y34_c00064{bottom:610.553994px;}
.y33_c00064{bottom:610.944384px;}
.y32_c00064{bottom:611.604244px;}
.y31_c00064{bottom:612.049059px;}
.y30_c00064{bottom:612.495745px;}
.y2f_c00064{bottom:613.190803px;}
.y2e_c00064{bottom:613.558632px;}
.y2d_c00064{bottom:614.281770px;}
.y2c_c00064{bottom:614.791500px;}
.y2b_c00064{bottom:632.884500px;}
.y2a_c00064{bottom:633.354000px;}
.y29_c00064{bottom:633.849000px;}
.y28_c00064{bottom:634.276500px;}
.y27_c00064{bottom:634.822500px;}
.y26_c00064{bottom:635.116500px;}
.y25_c00064{bottom:635.845500px;}
.y24_c00064{bottom:636.186000px;}
.y23_c00064{bottom:636.432000px;}
.y22_c00064{bottom:636.931500px;}
.y21_c00064{bottom:656.662500px;}
.y20_c00064{bottom:657.187500px;}
.y1f_c00064{bottom:657.438000px;}
.y1e_c00064{bottom:657.928500px;}
.y1d_c00064{bottom:658.423500px;}
.y1c_c00064{bottom:659.133000px;}
.y1b_c00064{bottom:659.466000px;}
.y1a_c00064{bottom:659.940000px;}
.y19_c00064{bottom:660.210000px;}
.y18_c00064{bottom:660.691500px;}
.y17_c00064{bottom:680.241000px;}
.y16_c00064{bottom:680.724000px;}
.y15_c00064{bottom:681.006000px;}
.y14_c00064{bottom:681.205500px;}
.y13_c00064{bottom:681.561000px;}
.y12_c00064{bottom:682.608000px;}
.y11_c00064{bottom:683.079000px;}
.y10_c00064{bottom:683.370000px;}
.yf_c00064{bottom:702.718500px;}
.ye_c00064{bottom:703.362000px;}
.yd_c00064{bottom:703.602000px;}
.yc_c00064{bottom:704.584500px;}
.yb_c00064{bottom:704.953500px;}
.ya_c00064{bottom:705.612000px;}
.y9_c00064{bottom:705.952500px;}
.y8_c00064{bottom:706.321500px;}
.y7_c00064{bottom:727.444500px;}
.y6_c00064{bottom:751.140000px;}
.y5_c00064{bottom:772.960500px;}
.y4_c00064{bottom:797.143500px;}
.y3_c00064{bottom:842.009400px;}
.y2_c00064{bottom:842.755110px;}
.y1_c00064{bottom:844.831500px;}
.h11_c00064{height:51.464815px;}
.h12_c00064{height:52.500000px;}
.h14_c00064{height:53.560709px;}
.h13_c00064{height:55.658041px;}
.h5_c00064{height:61.950000px;}
.he_c00064{height:63.000000px;}
.ha_c00064{height:64.050000px;}
.hf_c00064{height:66.150000px;}
.hc_c00064{height:67.200000px;}
.hb_c00064{height:69.300000px;}
.h6_c00064{height:70.350000px;}
.h3_c00064{height:71.400000px;}
.h8_c00064{height:72.450000px;}
.h9_c00064{height:72.456122px;}
.h4_c00064{height:73.500000px;}
.h10_c00064{height:74.550000px;}
.h7_c00064{height:76.650000px;}
.hd_c00064{height:95.550000px;}
.h2_c00064{height:96.604830px;}
.h1_c00064{height:1005.000000px;}
.h0_c00064{height:1005.150000px;}
.w0_c00064{width:732.750000px;}
.x0_c00064{left:0.000000px;}
.x73_c00064{left:71.124000px;}
.x7d_c00064{left:85.834500px;}
.x74_c00064{left:87.511500px;}
.x87_c00064{left:88.701000px;}
.x7e_c00064{left:103.171500px;}
.x71_c00064{left:110.196000px;}
.x88_c00064{left:111.328500px;}
.x13_c00064{left:120.150000px;}
.x75_c00064{left:122.094000px;}
.x4b_c00064{left:123.723000px;}
.x50_c00064{left:126.168000px;}
.x3d_c00064{left:128.895000px;}
.x26_c00064{left:130.269000px;}
.x4_c00064{left:131.490000px;}
.x7f_c00064{left:142.014000px;}
.x34_c00064{left:147.546000px;}
.x54_c00064{left:152.674500px;}
.x27_c00064{left:156.781500px;}
.x5_c00064{left:158.760000px;}
.x19_c00064{left:160.380000px;}
.x62_c00064{left:163.939500px;}
.x56_c00064{left:165.841500px;}
.x2d_c00064{left:168.318000px;}
.x68_c00064{left:171.493500px;}
.x4c_c00064{left:174.552000px;}
.x1_c00064{left:177.447000px;}
.x89_c00064{left:179.949000px;}
.x76_c00064{left:188.547000px;}
.x20_c00064{left:189.646500px;}
.x57_c00064{left:191.562000px;}
.xa_c00064{left:193.860000px;}
.x5d_c00064{left:197.167500px;}
.x6_c00064{left:199.530000px;}
.xb_c00064{left:206.820000px;}
.x4d_c00064{left:208.000500px;}
.x51_c00064{left:211.747500px;}
.x1a_c00064{left:212.760000px;}
.x35_c00064{left:215.319000px;}
.x63_c00064{left:221.181000px;}
.x3e_c00064{left:223.731000px;}
.x2e_c00064{left:225.559500px;}
.x58_c00064{left:228.208500px;}
.x69_c00064{left:229.260000px;}
.x1b_c00064{left:232.470000px;}
.xc_c00064{left:234.090000px;}
.x5e_c00064{left:238.201500px;}
.x45_c00064{left:240.300000px;}
.x64_c00064{left:243.049500px;}
.x21_c00064{left:244.491000px;}
.x36_c00064{left:246.324000px;}
.x14_c00064{left:247.860000px;}
.x7_c00064{left:249.480000px;}
.x2f_c00064{left:251.208000px;}
.x80_c00064{left:256.725000px;}
.x42_c00064{left:258.120000px;}
.x5f_c00064{left:262.555500px;}
.x6a_c00064{left:264.186000px;}
.x52_c00064{left:267.367500px;}
.x77_c00064{left:271.174500px;}
.x22_c00064{left:275.214000px;}
.x4e_c00064{left:277.399500px;}
.x43_c00064{left:279.180000px;}
.x6d_c00064{left:280.912500px;}
.x59_c00064{left:289.761000px;}
.xd_c00064{left:291.870000px;}
.x28_c00064{left:294.753000px;}
.x53_c00064{left:298.677000px;}
.x60_c00064{left:300.363000px;}
.x55_c00064{left:302.800500px;}
.x30_c00064{left:305.794500px;}
.x1c_c00064{left:308.340000px;}
.x8_c00064{left:309.420000px;}
.x37_c00064{left:312.579000px;}
.x65_c00064{left:318.093000px;}
.x44_c00064{left:321.840000px;}
.x6e_c00064{left:322.960500px;}
.x5a_c00064{left:325.405500px;}
.x29_c00064{left:327.111000px;}
.x4f_c00064{left:330.331500px;}
.x61_c00064{left:332.158500px;}
.x72_c00064{left:335.361000px;}
.xe_c00064{left:337.230000px;}
.x38_c00064{left:339.258000px;}
.x46_c00064{left:341.550000px;}
.x31_c00064{left:343.840500px;}
.x2a_c00064{left:345.249000px;}
.x5b_c00064{left:350.578500px;}
.x81_c00064{left:354.360000px;}
.x23_c00064{left:357.061500px;}
.x6f_c00064{left:359.692500px;}
.x78_c00064{left:362.070000px;}
.x15_c00064{left:363.960000px;}
.x1d_c00064{left:366.390000px;}
.x66_c00064{left:368.596500px;}
.x2b_c00064{left:370.890000px;}
.x3f_c00064{left:374.068500px;}
.xf_c00064{left:375.300000px;}
.x24_c00064{left:377.013000px;}
.x6b_c00064{left:378.585000px;}
.x32_c00064{left:381.588000px;}
.x16_c00064{left:382.860000px;}
.x2_c00064{left:385.086000px;}
.x39_c00064{left:388.932000px;}
.x47_c00064{left:390.960000px;}
.x5c_c00064{left:392.349000px;}
.x10_c00064{left:397.170000px;}
.x33_c00064{left:400.846500px;}
.x9_c00064{left:403.650000px;}
.x82_c00064{left:405.168000px;}
.x8a_c00064{left:410.557500px;}
.x2c_c00064{left:414.841500px;}
.x70_c00064{left:421.326000px;}
.x40_c00064{left:424.827000px;}
.x67_c00064{left:425.907000px;}
.x3a_c00064{left:427.843500px;}
.x83_c00064{left:429.409500px;}
.x25_c00064{left:430.699500px;}
.x11_c00064{left:432.810000px;}
.x1e_c00064{left:436.320000px;}
.x17_c00064{left:441.180000px;}
.x6c_c00064{left:442.423500px;}
.x79_c00064{left:449.010000px;}
.x84_c00064{left:450.201000px;}
.x48_c00064{left:452.790000px;}
.x41_c00064{left:454.857000px;}
.x3_c00064{left:459.657000px;}
.x18_c00064{left:461.430000px;}
.x7a_c00064{left:462.780000px;}
.x12_c00064{left:464.400000px;}
.x3b_c00064{left:472.887000px;}
.x1f_c00064{left:479.520000px;}
.x49_c00064{left:487.890000px;}
.x85_c00064{left:489.639000px;}
.x7b_c00064{left:492.750000px;}
.x4a_c00064{left:501.120000px;}
.x86_c00064{left:507.672000px;}
.x3c_c00064{left:515.530500px;}
.x8b_c00064{left:522.078000px;}
.x7c_c00064{left:532.710000px;}
.x8c_c00064{left:570.318000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._0_c00064{width:24.897928pt;}
.fsf_c00064{font-size:45.746503pt;}
.fs10_c00064{font-size:46.666667pt;}
.fs12_c00064{font-size:47.609519pt;}
.fs11_c00064{font-size:49.473814pt;}
.fs3_c00064{font-size:55.066667pt;}
.fsc_c00064{font-size:56.000000pt;}
.fs8_c00064{font-size:56.933333pt;}
.fsd_c00064{font-size:58.800000pt;}
.fsa_c00064{font-size:59.733333pt;}
.fs9_c00064{font-size:61.600000pt;}
.fs4_c00064{font-size:62.533333pt;}
.fs1_c00064{font-size:63.466667pt;}
.fs6_c00064{font-size:64.400000pt;}
.fs7_c00064{font-size:64.405442pt;}
.fs2_c00064{font-size:65.333333pt;}
.fse_c00064{font-size:66.266667pt;}
.fs5_c00064{font-size:68.133333pt;}
.fsb_c00064{font-size:84.933333pt;}
.fs0_c00064{font-size:85.870960pt;}
.y0_c00064{bottom:0.000000pt;}
.y93_c00064{bottom:105.407632pt;}
.y92_c00064{bottom:105.680131pt;}
.y91_c00064{bottom:106.276083pt;}
.y90_c00064{bottom:106.590265pt;}
.y8f_c00064{bottom:106.956581pt;}
.y8e_c00064{bottom:107.724347pt;}
.y8d_c00064{bottom:108.001333pt;}
.y8c_c00064{bottom:109.481333pt;}
.y8b_c00064{bottom:110.004000pt;}
.y8a_c00064{bottom:110.604000pt;}
.y89_c00064{bottom:111.281333pt;}
.y88_c00064{bottom:112.554667pt;}
.y87_c00064{bottom:113.417333pt;}
.y86_c00064{bottom:113.802667pt;}
.y85_c00064{bottom:122.768000pt;}
.y84_c00064{bottom:125.574923pt;}
.y83_c00064{bottom:126.127851pt;}
.y82_c00064{bottom:127.337643pt;}
.y81_c00064{bottom:128.755307pt;}
.y80_c00064{bottom:129.493067pt;}
.y7f_c00064{bottom:129.842667pt;}
.y9f_c00064{bottom:137.120587pt;}
.y9e_c00064{bottom:137.978187pt;}
.y9d_c00064{bottom:138.731147pt;}
.y9c_c00064{bottom:139.288800pt;}
.y9b_c00064{bottom:139.960773pt;}
.y9a_c00064{bottom:141.280800pt;}
.y99_c00064{bottom:141.615280pt;}
.y98_c00064{bottom:143.259040pt;}
.y97_c00064{bottom:144.060480pt;}
.y96_c00064{bottom:144.401600pt;}
.y95_c00064{bottom:145.280400pt;}
.y94_c00064{bottom:145.682667pt;}
.y7e_c00064{bottom:185.474667pt;}
.y7d_c00064{bottom:185.900000pt;}
.y7c_c00064{bottom:186.998667pt;}
.y7b_c00064{bottom:187.618667pt;}
.y7a_c00064{bottom:188.234667pt;}
.y79_c00064{bottom:188.562667pt;}
.y78_c00064{bottom:188.790667pt;}
.y77_c00064{bottom:189.940000pt;}
.y76_c00064{bottom:190.801333pt;}
.y75_c00064{bottom:206.224000pt;}
.y74_c00064{bottom:207.156000pt;}
.y73_c00064{bottom:207.474667pt;}
.y72_c00064{bottom:207.710667pt;}
.y71_c00064{bottom:208.346667pt;}
.y70_c00064{bottom:209.257333pt;}
.y6f_c00064{bottom:210.045333pt;}
.y6e_c00064{bottom:210.722667pt;}
.y6d_c00064{bottom:226.289333pt;}
.y6c_c00064{bottom:227.310667pt;}
.y6b_c00064{bottom:227.881333pt;}
.y6a_c00064{bottom:228.602667pt;}
.y69_c00064{bottom:229.141333pt;}
.y68_c00064{bottom:229.700000pt;}
.y67_c00064{bottom:230.624000pt;}
.y66_c00064{bottom:231.362667pt;}
.y65_c00064{bottom:246.512000pt;}
.y64_c00064{bottom:247.042667pt;}
.y63_c00064{bottom:247.378667pt;}
.y62_c00064{bottom:248.141333pt;}
.y61_c00064{bottom:248.541333pt;}
.y60_c00064{bottom:249.276000pt;}
.y5f_c00064{bottom:249.606667pt;}
.y5e_c00064{bottom:250.472000pt;}
.y5d_c00064{bottom:251.042667pt;}
.y5c_c00064{bottom:267.998667pt;}
.y5b_c00064{bottom:268.450667pt;}
.y5a_c00064{bottom:268.988000pt;}
.y59_c00064{bottom:269.334667pt;}
.y58_c00064{bottom:269.918667pt;}
.y57_c00064{bottom:270.962667pt;}
.y56_c00064{bottom:287.313333pt;}
.y55_c00064{bottom:287.908000pt;}
.y54_c00064{bottom:288.266667pt;}
.y53_c00064{bottom:288.773333pt;}
.y52_c00064{bottom:289.649333pt;}
.y51_c00064{bottom:290.170667pt;}
.y50_c00064{bottom:290.536000pt;}
.y4f_c00064{bottom:291.124000pt;}
.y4e_c00064{bottom:307.894667pt;}
.y4d_c00064{bottom:308.718667pt;}
.y4c_c00064{bottom:309.045333pt;}
.y4b_c00064{bottom:309.629333pt;}
.y4a_c00064{bottom:310.546667pt;}
.y49_c00064{bottom:311.046667pt;}
.y48_c00064{bottom:311.440000pt;}
.y47_c00064{bottom:327.922667pt;}
.y46_c00064{bottom:328.361333pt;}
.y45_c00064{bottom:329.144000pt;}
.y44_c00064{bottom:329.561333pt;}
.y43_c00064{bottom:330.302667pt;}
.y42_c00064{bottom:331.170667pt;}
.y41_c00064{bottom:331.444000pt;}
.y40_c00064{bottom:348.400000pt;}
.y3f_c00064{bottom:348.849333pt;}
.y3e_c00064{bottom:349.554667pt;}
.y3d_c00064{bottom:349.804000pt;}
.y3c_c00064{bottom:350.480000pt;}
.y3b_c00064{bottom:350.925333pt;}
.y3a_c00064{bottom:351.602667pt;}
.y39_c00064{bottom:368.514667pt;}
.y38_c00064{bottom:418.208000pt;}
.y37_c00064{bottom:454.062667pt;}
.y36_c00064{bottom:504.869333pt;}
.y35_c00064{bottom:523.760000pt;}
.y34_c00064{bottom:542.714661pt;}
.y33_c00064{bottom:543.061675pt;}
.y32_c00064{bottom:543.648217pt;}
.y31_c00064{bottom:544.043608pt;}
.y30_c00064{bottom:544.440663pt;}
.y2f_c00064{bottom:545.058492pt;}
.y2e_c00064{bottom:545.385451pt;}
.y2d_c00064{bottom:546.028240pt;}
.y2c_c00064{bottom:546.481333pt;}
.y2b_c00064{bottom:562.564000pt;}
.y2a_c00064{bottom:562.981333pt;}
.y29_c00064{bottom:563.421333pt;}
.y28_c00064{bottom:563.801333pt;}
.y27_c00064{bottom:564.286667pt;}
.y26_c00064{bottom:564.548000pt;}
.y25_c00064{bottom:565.196000pt;}
.y24_c00064{bottom:565.498667pt;}
.y23_c00064{bottom:565.717333pt;}
.y22_c00064{bottom:566.161333pt;}
.y21_c00064{bottom:583.700000pt;}
.y20_c00064{bottom:584.166667pt;}
.y1f_c00064{bottom:584.389333pt;}
.y1e_c00064{bottom:584.825333pt;}
.y1d_c00064{bottom:585.265333pt;}
.y1c_c00064{bottom:585.896000pt;}
.y1b_c00064{bottom:586.192000pt;}
.y1a_c00064{bottom:586.613333pt;}
.y19_c00064{bottom:586.853333pt;}
.y18_c00064{bottom:587.281333pt;}
.y17_c00064{bottom:604.658667pt;}
.y16_c00064{bottom:605.088000pt;}
.y15_c00064{bottom:605.338667pt;}
.y14_c00064{bottom:605.516000pt;}
.y13_c00064{bottom:605.832000pt;}
.y12_c00064{bottom:606.762667pt;}
.y11_c00064{bottom:607.181333pt;}
.y10_c00064{bottom:607.440000pt;}
.yf_c00064{bottom:624.638667pt;}
.ye_c00064{bottom:625.210667pt;}
.yd_c00064{bottom:625.424000pt;}
.yc_c00064{bottom:626.297333pt;}
.yb_c00064{bottom:626.625333pt;}
.ya_c00064{bottom:627.210667pt;}
.y9_c00064{bottom:627.513333pt;}
.y8_c00064{bottom:627.841333pt;}
.y7_c00064{bottom:646.617333pt;}
.y6_c00064{bottom:667.680000pt;}
.y5_c00064{bottom:687.076000pt;}
.y4_c00064{bottom:708.572000pt;}
.y3_c00064{bottom:748.452800pt;}
.y2_c00064{bottom:749.115653pt;}
.y1_c00064{bottom:750.961333pt;}
.h11_c00064{height:45.746503pt;}
.h12_c00064{height:46.666667pt;}
.h14_c00064{height:47.609519pt;}
.h13_c00064{height:49.473814pt;}
.h5_c00064{height:55.066667pt;}
.he_c00064{height:56.000000pt;}
.ha_c00064{height:56.933333pt;}
.hf_c00064{height:58.800000pt;}
.hc_c00064{height:59.733333pt;}
.hb_c00064{height:61.600000pt;}
.h6_c00064{height:62.533333pt;}
.h3_c00064{height:63.466667pt;}
.h8_c00064{height:64.400000pt;}
.h9_c00064{height:64.405442pt;}
.h4_c00064{height:65.333333pt;}
.h10_c00064{height:66.266667pt;}
.h7_c00064{height:68.133333pt;}
.hd_c00064{height:84.933333pt;}
.h2_c00064{height:85.870960pt;}
.h1_c00064{height:893.333333pt;}
.h0_c00064{height:893.466667pt;}
.w0_c00064{width:651.333333pt;}
.x0_c00064{left:0.000000pt;}
.x73_c00064{left:63.221333pt;}
.x7d_c00064{left:76.297333pt;}
.x74_c00064{left:77.788000pt;}
.x87_c00064{left:78.845333pt;}
.x7e_c00064{left:91.708000pt;}
.x71_c00064{left:97.952000pt;}
.x88_c00064{left:98.958667pt;}
.x13_c00064{left:106.800000pt;}
.x75_c00064{left:108.528000pt;}
.x4b_c00064{left:109.976000pt;}
.x50_c00064{left:112.149333pt;}
.x3d_c00064{left:114.573333pt;}
.x26_c00064{left:115.794667pt;}
.x4_c00064{left:116.880000pt;}
.x7f_c00064{left:126.234667pt;}
.x34_c00064{left:131.152000pt;}
.x54_c00064{left:135.710667pt;}
.x27_c00064{left:139.361333pt;}
.x5_c00064{left:141.120000pt;}
.x19_c00064{left:142.560000pt;}
.x62_c00064{left:145.724000pt;}
.x56_c00064{left:147.414667pt;}
.x2d_c00064{left:149.616000pt;}
.x68_c00064{left:152.438667pt;}
.x4c_c00064{left:155.157333pt;}
.x1_c00064{left:157.730667pt;}
.x89_c00064{left:159.954667pt;}
.x76_c00064{left:167.597333pt;}
.x20_c00064{left:168.574667pt;}
.x57_c00064{left:170.277333pt;}
.xa_c00064{left:172.320000pt;}
.x5d_c00064{left:175.260000pt;}
.x6_c00064{left:177.360000pt;}
.xb_c00064{left:183.840000pt;}
.x4d_c00064{left:184.889333pt;}
.x51_c00064{left:188.220000pt;}
.x1a_c00064{left:189.120000pt;}
.x35_c00064{left:191.394667pt;}
.x63_c00064{left:196.605333pt;}
.x3e_c00064{left:198.872000pt;}
.x2e_c00064{left:200.497333pt;}
.x58_c00064{left:202.852000pt;}
.x69_c00064{left:203.786667pt;}
.x1b_c00064{left:206.640000pt;}
.xc_c00064{left:208.080000pt;}
.x5e_c00064{left:211.734667pt;}
.x45_c00064{left:213.600000pt;}
.x64_c00064{left:216.044000pt;}
.x21_c00064{left:217.325333pt;}
.x36_c00064{left:218.954667pt;}
.x14_c00064{left:220.320000pt;}
.x7_c00064{left:221.760000pt;}
.x2f_c00064{left:223.296000pt;}
.x80_c00064{left:228.200000pt;}
.x42_c00064{left:229.440000pt;}
.x5f_c00064{left:233.382667pt;}
.x6a_c00064{left:234.832000pt;}
.x52_c00064{left:237.660000pt;}
.x77_c00064{left:241.044000pt;}
.x22_c00064{left:244.634667pt;}
.x4e_c00064{left:246.577333pt;}
.x43_c00064{left:248.160000pt;}
.x6d_c00064{left:249.700000pt;}
.x59_c00064{left:257.565333pt;}
.xd_c00064{left:259.440000pt;}
.x28_c00064{left:262.002667pt;}
.x53_c00064{left:265.490667pt;}
.x60_c00064{left:266.989333pt;}
.x55_c00064{left:269.156000pt;}
.x30_c00064{left:271.817333pt;}
.x1c_c00064{left:274.080000pt;}
.x8_c00064{left:275.040000pt;}
.x37_c00064{left:277.848000pt;}
.x65_c00064{left:282.749333pt;}
.x44_c00064{left:286.080000pt;}
.x6e_c00064{left:287.076000pt;}
.x5a_c00064{left:289.249333pt;}
.x29_c00064{left:290.765333pt;}
.x4f_c00064{left:293.628000pt;}
.x61_c00064{left:295.252000pt;}
.x72_c00064{left:298.098667pt;}
.xe_c00064{left:299.760000pt;}
.x38_c00064{left:301.562667pt;}
.x46_c00064{left:303.600000pt;}
.x31_c00064{left:305.636000pt;}
.x2a_c00064{left:306.888000pt;}
.x5b_c00064{left:311.625333pt;}
.x81_c00064{left:314.986667pt;}
.x23_c00064{left:317.388000pt;}
.x6f_c00064{left:319.726667pt;}
.x78_c00064{left:321.840000pt;}
.x15_c00064{left:323.520000pt;}
.x1d_c00064{left:325.680000pt;}
.x66_c00064{left:327.641333pt;}
.x2b_c00064{left:329.680000pt;}
.x3f_c00064{left:332.505333pt;}
.xf_c00064{left:333.600000pt;}
.x24_c00064{left:335.122667pt;}
.x6b_c00064{left:336.520000pt;}
.x32_c00064{left:339.189333pt;}
.x16_c00064{left:340.320000pt;}
.x2_c00064{left:342.298667pt;}
.x39_c00064{left:345.717333pt;}
.x47_c00064{left:347.520000pt;}
.x5c_c00064{left:348.754667pt;}
.x10_c00064{left:353.040000pt;}
.x33_c00064{left:356.308000pt;}
.x9_c00064{left:358.800000pt;}
.x82_c00064{left:360.149333pt;}
.x8a_c00064{left:364.940000pt;}
.x2c_c00064{left:368.748000pt;}
.x70_c00064{left:374.512000pt;}
.x40_c00064{left:377.624000pt;}
.x67_c00064{left:378.584000pt;}
.x3a_c00064{left:380.305333pt;}
.x83_c00064{left:381.697333pt;}
.x25_c00064{left:382.844000pt;}
.x11_c00064{left:384.720000pt;}
.x1e_c00064{left:387.840000pt;}
.x17_c00064{left:392.160000pt;}
.x6c_c00064{left:393.265333pt;}
.x79_c00064{left:399.120000pt;}
.x84_c00064{left:400.178667pt;}
.x48_c00064{left:402.480000pt;}
.x41_c00064{left:404.317333pt;}
.x3_c00064{left:408.584000pt;}
.x18_c00064{left:410.160000pt;}
.x7a_c00064{left:411.360000pt;}
.x12_c00064{left:412.800000pt;}
.x3b_c00064{left:420.344000pt;}
.x1f_c00064{left:426.240000pt;}
.x49_c00064{left:433.680000pt;}
.x85_c00064{left:435.234667pt;}
.x7b_c00064{left:438.000000pt;}
.x4a_c00064{left:445.440000pt;}
.x86_c00064{left:451.264000pt;}
.x3c_c00064{left:458.249333pt;}
.x8b_c00064{left:464.069333pt;}
.x7c_c00064{left:473.520000pt;}
.x8c_c00064{left:506.949333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.md_c00065{transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{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);}
.m1c_c00065{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);}
.m18_c00065{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);}
.m23_c00065{transform:matrix(0.158970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158970,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{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);}
.m29_c00065{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);}
.m27_c00065{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);}
.m7_c00065{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);}
.ma_c00065{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);}
.m24_c00065{transform:matrix(0.166620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166620,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{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);}
.m1a_c00065{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);}
.m19_c00065{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);}
.m36_c00065{transform:matrix(0.173922,0.004870,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173922,0.004870,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173922,0.004870,-0.006997,0.249902,0,0);}
.m35_c00065{transform:matrix(0.177116,0.004959,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177116,0.004959,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177116,0.004959,-0.006997,0.249902,0,0);}
.m11_c00065{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);}
.m5_c00065{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);}
.m17_c00065{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);}
.m33_c00065{transform:matrix(0.181264,0.005075,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181264,0.005075,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181264,0.005075,-0.006997,0.249902,0,0);}
.m1b_c00065{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);}
.me_c00065{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);}
.m26_c00065{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);}
.m25_c00065{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);}
.m12_c00065{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);}
.m2f_c00065{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);}
.m3_c00065{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);}
.m2c_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);}
.m30_c00065{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);}
.m1f_c00065{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);}
.mf_c00065{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);}
.m14_c00065{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);}
.m28_c00065{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);}
.m22_c00065{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);}
.m4_c00065{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);}
.m31_c00065{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);}
.m8_c00065{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);}
.m34_c00065{transform:matrix(0.206154,0.005772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206154,0.005772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206154,0.005772,-0.006997,0.249902,0,0);}
.m3a_c00065{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);}
.m2_c00065{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);}
.m9_c00065{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);}
.m2d_c00065{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{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);}
.m10_c00065{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);}
.mc_c00065{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);}
.m1_c00065{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);}
.m2e_c00065{transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{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);}
.m2b_c00065{transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{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);}
.mb_c00065{transform:matrix(0.312740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312740,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320145,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.454670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454670,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.489100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489100,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.534060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534060,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.613090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613090,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{transform:matrix(0.613705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613705,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.761377,0.021319,-0.006997,0.249902,0,0);-ms-transform:matrix(0.761377,0.021319,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.761377,0.021319,-0.006997,0.249902,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;}
.fs4_c00065{font-size:65.100000px;}
.fs0_c00065{font-size:66.150000px;}
.fs3_c00065{font-size:71.400000px;}
.fs2_c00065{font-size:74.550000px;}
.fs1_c00065{font-size:77.700000px;}
.fs5_c00065{font-size:80.881687px;}
.fs6_c00065{font-size:111.300000px;}
.y0_c00065{bottom:0.000000px;}
.y1c_c00065{bottom:113.400000px;}
.y1b_c00065{bottom:668.454726px;}
.y1a_c00065{bottom:669.883440px;}
.y19_c00065{bottom:670.517598px;}
.y18_c00065{bottom:671.415810px;}
.y17_c00065{bottom:677.724000px;}
.yf_c00065{bottom:704.178000px;}
.y10_c00065{bottom:706.629000px;}
.y11_c00065{bottom:707.388000px;}
.y12_c00065{bottom:708.826500px;}
.y13_c00065{bottom:710.496000px;}
.y14_c00065{bottom:711.034500px;}
.y15_c00065{bottom:712.200000px;}
.y16_c00065{bottom:713.707500px;}
.ye_c00065{bottom:737.698500px;}
.yd_c00065{bottom:760.084500px;}
.yc_c00065{bottom:761.004000px;}
.yb_c00065{bottom:762.148500px;}
.ya_c00065{bottom:763.452000px;}
.y9_c00065{bottom:764.086500px;}
.y8_c00065{bottom:765.318000px;}
.y7_c00065{bottom:766.987500px;}
.y6_c00065{bottom:767.710500px;}
.y5_c00065{bottom:768.657000px;}
.y4_c00065{bottom:769.570500px;}
.y3_c00065{bottom:772.203000px;}
.y2_c00065{bottom:783.460500px;}
.y1_c00065{bottom:806.635500px;}
.h6_c00065{height:65.100000px;}
.h2_c00065{height:66.150000px;}
.h5_c00065{height:71.400000px;}
.h4_c00065{height:74.550000px;}
.h3_c00065{height:77.700000px;}
.h7_c00065{height:80.881687px;}
.h8_c00065{height:111.300000px;}
.h0_c00065{height:1008.450000px;}
.h1_c00065{height:1008.750000px;}
.w0_c00065{width:699.000000px;}
.x0_c00065{left:0.000000px;}
.x16_c00065{left:93.546000px;}
.x2c_c00065{left:94.981500px;}
.xc_c00065{left:96.660000px;}
.x1_c00065{left:102.060000px;}
.x2_c00065{left:176.040000px;}
.xd_c00065{left:181.170000px;}
.x17_c00065{left:187.545000px;}
.xe_c00065{left:210.870000px;}
.x21_c00065{left:213.298500px;}
.x27_c00065{left:216.291000px;}
.x18_c00065{left:220.174500px;}
.x3_c00065{left:234.360000px;}
.x22_c00065{left:247.318500px;}
.x19_c00065{left:253.959000px;}
.x4_c00065{left:265.680000px;}
.xf_c00065{left:271.620000px;}
.x1a_c00065{left:279.768000px;}
.x23_c00065{left:292.138500px;}
.x10_c00065{left:299.160000px;}
.x5_c00065{left:302.130000px;}
.x2d_c00065{left:320.274000px;}
.x6_c00065{left:326.970000px;}
.x28_c00065{left:335.791500px;}
.x1b_c00065{left:339.376500px;}
.x2e_c00065{left:352.353000px;}
.x29_c00065{left:356.518500px;}
.x11_c00065{left:372.870000px;}
.x2f_c00065{left:375.001500px;}
.x7_c00065{left:378.540000px;}
.x1c_c00065{left:383.382000px;}
.x8_c00065{left:392.580000px;}
.x2a_c00065{left:401.371500px;}
.x1d_c00065{left:406.029000px;}
.x24_c00065{left:420.658500px;}
.x12_c00065{left:426.870000px;}
.x9_c00065{left:433.620000px;}
.x25_c00065{left:443.068500px;}
.x1e_c00065{left:452.583000px;}
.xa_c00065{left:457.920000px;}
.x2b_c00065{left:459.375000px;}
.x13_c00065{left:462.240000px;}
.x14_c00065{left:479.520000px;}
.x26_c00065{left:482.758500px;}
.x1f_c00065{left:493.477500px;}
.xb_c00065{left:500.850000px;}
.x20_c00065{left:526.308000px;}
.x15_c00065{left:534.600000px;}
.x30_c00065{left:541.620000px;}
.x31_c00065{left:591.570000px;}
.x32_c00065{left:646.380000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
.fs4_c00065{font-size:57.866667pt;}
.fs0_c00065{font-size:58.800000pt;}
.fs3_c00065{font-size:63.466667pt;}
.fs2_c00065{font-size:66.266667pt;}
.fs1_c00065{font-size:69.066667pt;}
.fs5_c00065{font-size:71.894833pt;}
.fs6_c00065{font-size:98.933333pt;}
.y0_c00065{bottom:0.000000pt;}
.y1c_c00065{bottom:100.800000pt;}
.y1b_c00065{bottom:594.181979pt;}
.y1a_c00065{bottom:595.451947pt;}
.y19_c00065{bottom:596.015643pt;}
.y18_c00065{bottom:596.814053pt;}
.y17_c00065{bottom:602.421333pt;}
.yf_c00065{bottom:625.936000pt;}
.y10_c00065{bottom:628.114667pt;}
.y11_c00065{bottom:628.789333pt;}
.y12_c00065{bottom:630.068000pt;}
.y13_c00065{bottom:631.552000pt;}
.y14_c00065{bottom:632.030667pt;}
.y15_c00065{bottom:633.066667pt;}
.y16_c00065{bottom:634.406667pt;}
.ye_c00065{bottom:655.732000pt;}
.yd_c00065{bottom:675.630667pt;}
.yc_c00065{bottom:676.448000pt;}
.yb_c00065{bottom:677.465333pt;}
.ya_c00065{bottom:678.624000pt;}
.y9_c00065{bottom:679.188000pt;}
.y8_c00065{bottom:680.282667pt;}
.y7_c00065{bottom:681.766667pt;}
.y6_c00065{bottom:682.409333pt;}
.y5_c00065{bottom:683.250667pt;}
.y4_c00065{bottom:684.062667pt;}
.y3_c00065{bottom:686.402667pt;}
.y2_c00065{bottom:696.409333pt;}
.y1_c00065{bottom:717.009333pt;}
.h6_c00065{height:57.866667pt;}
.h2_c00065{height:58.800000pt;}
.h5_c00065{height:63.466667pt;}
.h4_c00065{height:66.266667pt;}
.h3_c00065{height:69.066667pt;}
.h7_c00065{height:71.894833pt;}
.h8_c00065{height:98.933333pt;}
.h0_c00065{height:896.400000pt;}
.h1_c00065{height:896.666667pt;}
.w0_c00065{width:621.333333pt;}
.x0_c00065{left:0.000000pt;}
.x16_c00065{left:83.152000pt;}
.x2c_c00065{left:84.428000pt;}
.xc_c00065{left:85.920000pt;}
.x1_c00065{left:90.720000pt;}
.x2_c00065{left:156.480000pt;}
.xd_c00065{left:161.040000pt;}
.x17_c00065{left:166.706667pt;}
.xe_c00065{left:187.440000pt;}
.x21_c00065{left:189.598667pt;}
.x27_c00065{left:192.258667pt;}
.x18_c00065{left:195.710667pt;}
.x3_c00065{left:208.320000pt;}
.x22_c00065{left:219.838667pt;}
.x19_c00065{left:225.741333pt;}
.x4_c00065{left:236.160000pt;}
.xf_c00065{left:241.440000pt;}
.x1a_c00065{left:248.682667pt;}
.x23_c00065{left:259.678667pt;}
.x10_c00065{left:265.920000pt;}
.x5_c00065{left:268.560000pt;}
.x2d_c00065{left:284.688000pt;}
.x6_c00065{left:290.640000pt;}
.x28_c00065{left:298.481333pt;}
.x1b_c00065{left:301.668000pt;}
.x2e_c00065{left:313.202667pt;}
.x29_c00065{left:316.905333pt;}
.x11_c00065{left:331.440000pt;}
.x2f_c00065{left:333.334667pt;}
.x7_c00065{left:336.480000pt;}
.x1c_c00065{left:340.784000pt;}
.x8_c00065{left:348.960000pt;}
.x2a_c00065{left:356.774667pt;}
.x1d_c00065{left:360.914667pt;}
.x24_c00065{left:373.918667pt;}
.x12_c00065{left:379.440000pt;}
.x9_c00065{left:385.440000pt;}
.x25_c00065{left:393.838667pt;}
.x1e_c00065{left:402.296000pt;}
.xa_c00065{left:407.040000pt;}
.x2b_c00065{left:408.333333pt;}
.x13_c00065{left:410.880000pt;}
.x14_c00065{left:426.240000pt;}
.x26_c00065{left:429.118667pt;}
.x1f_c00065{left:438.646667pt;}
.xb_c00065{left:445.200000pt;}
.x20_c00065{left:467.829333pt;}
.x15_c00065{left:475.200000pt;}
.x30_c00065{left:481.440000pt;}
.x31_c00065{left:525.840000pt;}
.x32_c00065{left:574.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_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_ef4e99a7aa2876b3106553d3.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;}
.me_c00066{transform:matrix(0.024940,0.000524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.024940,0.000524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.024940,0.000524,-0.005249,0.249945,0,0);}
.mce_c00066{transform:matrix(0.063799,0.002299,-0.009003,0.249838,0,0);-ms-transform:matrix(0.063799,0.002299,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.063799,0.002299,-0.009003,0.249838,0,0);}
.md7_c00066{transform:matrix(0.093380,0.003739,-0.010002,0.249800,0,0);-ms-transform:matrix(0.093380,0.003739,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.093380,0.003739,-0.010002,0.249800,0,0);}
.m28_c00066{transform:matrix(0.126855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126855,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.134440,0.002823,-0.005249,0.249945,0,0);-ms-transform:matrix(0.134440,0.002823,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.134440,0.002823,-0.005249,0.249945,0,0);}
.m44_c00066{transform:matrix(0.135322,0.001489,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135322,0.001489,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135322,0.001489,-0.002750,0.249985,0,0);}
.mdb_c00066{transform:matrix(0.137562,0.003989,-0.007247,0.249895,0,0);-ms-transform:matrix(0.137562,0.003989,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.137562,0.003989,-0.007247,0.249895,0,0);}
.mad_c00066{transform:matrix(0.139092,0.001530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139092,0.001530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139092,0.001530,-0.002750,0.249985,0,0);}
.m8e_c00066{transform:matrix(0.141151,0.001553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141151,0.001553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141151,0.001553,-0.002750,0.249985,0,0);}
.m3c_c00066{transform:matrix(0.143411,0.001578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143411,0.001578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143411,0.001578,-0.002750,0.249985,0,0);}
.mab_c00066{transform:matrix(0.144836,0.001593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144836,0.001593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144836,0.001593,-0.002750,0.249985,0,0);}
.maf_c00066{transform:matrix(0.146811,0.001615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146811,0.001615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146811,0.001615,-0.002750,0.249985,0,0);}
.mac_c00066{transform:matrix(0.147346,0.001621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147346,0.001621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147346,0.001621,-0.002750,0.249985,0,0);}
.m30_c00066{transform:matrix(0.148271,0.001631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148271,0.001631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148271,0.001631,-0.002750,0.249985,0,0);}
.mb2_c00066{transform:matrix(0.151256,0.001664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151256,0.001664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151256,0.001664,-0.002750,0.249985,0,0);}
.m1a_c00066{transform:matrix(0.151822,0.003188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.151822,0.003188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.151822,0.003188,-0.005249,0.249945,0,0);}
.m25_c00066{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);}
.m55_c00066{transform:matrix(0.152711,0.001680,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152711,0.001680,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152711,0.001680,-0.002750,0.249985,0,0);}
.ma9_c00066{transform:matrix(0.153071,0.001684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153071,0.001684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153071,0.001684,-0.002750,0.249985,0,0);}
.m8c_c00066{transform:matrix(0.153171,0.001685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153171,0.001685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153171,0.001685,-0.002750,0.249985,0,0);}
.m84_c00066{transform:matrix(0.155856,0.001714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155856,0.001714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155856,0.001714,-0.002750,0.249985,0,0);}
.m57_c00066{transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);}
.m79_c00066{transform:matrix(0.159455,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159455,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159455,0.001754,-0.002750,0.249985,0,0);}
.mb4_c00066{transform:matrix(0.160145,0.001762,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160145,0.001762,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160145,0.001762,-0.002750,0.249985,0,0);}
.m18_c00066{transform:matrix(0.160520,0.003371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160520,0.003371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160520,0.003371,-0.005249,0.249945,0,0);}
.m73_c00066{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);}
.mb6_c00066{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);}
.m13_c00066{transform:matrix(0.166213,0.003490,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166213,0.003490,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166213,0.003490,-0.005249,0.249945,0,0);}
.m83_c00066{transform:matrix(0.166270,0.001829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166270,0.001829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166270,0.001829,-0.002750,0.249985,0,0);}
.m2a_c00066{transform:matrix(0.166405,0.001830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166405,0.001830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166405,0.001830,-0.002750,0.249985,0,0);}
.mc_c00066{transform:matrix(0.167088,0.003509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167088,0.003509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167088,0.003509,-0.005249,0.249945,0,0);}
.m11_c00066{transform:matrix(0.167488,0.003517,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167488,0.003517,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167488,0.003517,-0.005249,0.249945,0,0);}
.mb3_c00066{transform:matrix(0.168370,0.001852,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168370,0.001852,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168370,0.001852,-0.002750,0.249985,0,0);}
.m90_c00066{transform:matrix(0.168835,0.001857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168835,0.001857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168835,0.001857,-0.002750,0.249985,0,0);}
.m19_c00066{transform:matrix(0.168848,0.003546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168848,0.003546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168848,0.003546,-0.005249,0.249945,0,0);}
.ma1_c00066{transform:matrix(0.169255,0.001862,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169255,0.001862,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169255,0.001862,-0.002750,0.249985,0,0);}
.m60_c00066{transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);}
.m8b_c00066{transform:matrix(0.171160,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171160,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171160,0.001883,-0.002750,0.249985,0,0);}
.m4b_c00066{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);}
.mae_c00066{transform:matrix(0.171725,0.001889,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171725,0.001889,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171725,0.001889,-0.002750,0.249985,0,0);}
.mc1_c00066{transform:matrix(0.171803,0.006191,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171803,0.006191,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171803,0.006191,-0.009003,0.249838,0,0);}
.m77_c00066{transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172050,0.001893,-0.002750,0.249985,0,0);}
.mb1_c00066{transform:matrix(0.172240,0.001895,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172240,0.001895,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172240,0.001895,-0.002750,0.249985,0,0);}
.ma3_c00066{transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);}
.m42_c00066{transform:matrix(0.172625,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172625,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172625,0.001899,-0.002750,0.249985,0,0);}
.mba_c00066{transform:matrix(0.172958,0.006233,-0.009003,0.249838,0,0);-ms-transform:matrix(0.172958,0.006233,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.172958,0.006233,-0.009003,0.249838,0,0);}
.m3d_c00066{transform:matrix(0.174454,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174454,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174454,0.001919,-0.002750,0.249985,0,0);}
.m7a_c00066{transform:matrix(0.174514,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174514,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174514,0.001920,-0.002750,0.249985,0,0);}
.m45_c00066{transform:matrix(0.174544,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174544,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174544,0.001920,-0.002750,0.249985,0,0);}
.m5d_c00066{transform:matrix(0.174664,0.001921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174664,0.001921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174664,0.001921,-0.002750,0.249985,0,0);}
.m15_c00066{transform:matrix(0.174691,0.003669,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174691,0.003669,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174691,0.003669,-0.005249,0.249945,0,0);}
.ma6_c00066{transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);}
.m63_c00066{transform:matrix(0.175289,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175289,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175289,0.001928,-0.002750,0.249985,0,0);}
.m40_c00066{transform:matrix(0.175544,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175544,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175544,0.001931,-0.002750,0.249985,0,0);}
.m85_c00066{transform:matrix(0.175734,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175734,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175734,0.001933,-0.002750,0.249985,0,0);}
.m9c_c00066{transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);}
.mc0_c00066{transform:matrix(0.177435,0.006394,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177435,0.006394,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177435,0.006394,-0.009003,0.249838,0,0);}
.m31_c00066{transform:matrix(0.177624,0.001954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177624,0.001954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177624,0.001954,-0.002750,0.249985,0,0);}
.m54_c00066{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);}
.m68_c00066{transform:matrix(0.178189,0.001960,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178189,0.001960,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178189,0.001960,-0.002750,0.249985,0,0);}
.m3b_c00066{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);}
.m8d_c00066{transform:matrix(0.179079,0.001970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179079,0.001970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179079,0.001970,-0.002750,0.249985,0,0);}
.mb5_c00066{transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);}
.m9d_c00066{transform:matrix(0.179694,0.001977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179694,0.001977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179694,0.001977,-0.002750,0.249985,0,0);}
.m7e_c00066{transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);}
.m7f_c00066{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);}
.mea_c00066{transform:matrix(0.180504,0.005235,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180504,0.005235,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180504,0.005235,-0.007247,0.249895,0,0);}
.me5_c00066{transform:matrix(0.180564,0.005236,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180564,0.005236,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180564,0.005236,-0.007247,0.249895,0,0);}
.ma5_c00066{transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);}
.mbf_c00066{transform:matrix(0.181662,0.006546,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181662,0.006546,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181662,0.006546,-0.009003,0.249838,0,0);}
.mb7_c00066{transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);}
.m6c_c00066{transform:matrix(0.183424,0.002018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183424,0.002018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183424,0.002018,-0.002750,0.249985,0,0);}
.ma0_c00066{transform:matrix(0.184229,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184229,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184229,0.002027,-0.002750,0.249985,0,0);}
.m52_c00066{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);}
.m64_c00066{transform:matrix(0.184809,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184809,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184809,0.002033,-0.002750,0.249985,0,0);}
.m58_c00066{transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);}
.mda_c00066{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);}
.mb_c00066{transform:matrix(0.186134,0.003909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186134,0.003909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186134,0.003909,-0.005249,0.249945,0,0);}
.me4_c00066{transform:matrix(0.186287,0.005402,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186287,0.005402,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186287,0.005402,-0.007247,0.249895,0,0);}
.m1d_c00066{transform:matrix(0.187199,0.003931,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187199,0.003931,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187199,0.003931,-0.005249,0.249945,0,0);}
.m87_c00066{transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);}
.m46_c00066{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);}
.m12_c00066{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);}
.m1b_c00066{transform:matrix(0.188029,0.003949,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188029,0.003949,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188029,0.003949,-0.005249,0.249945,0,0);}
.m7b_c00066{transform:matrix(0.188194,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188194,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188194,0.002070,-0.002750,0.249985,0,0);}
.m14_c00066{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);}
.m38_c00066{transform:matrix(0.188319,0.002072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188319,0.002072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188319,0.002072,-0.002750,0.249985,0,0);}
.m49_c00066{transform:matrix(0.189484,0.002084,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189484,0.002084,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189484,0.002084,-0.002750,0.249985,0,0);}
.mcf_c00066{transform:matrix(0.190032,0.006848,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190032,0.006848,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190032,0.006848,-0.009003,0.249838,0,0);}
.mc5_c00066{transform:matrix(0.190286,0.006857,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190286,0.006857,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190286,0.006857,-0.009003,0.249838,0,0);}
.m37_c00066{transform:matrix(0.190343,0.002094,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190343,0.002094,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190343,0.002094,-0.002750,0.249985,0,0);}
.m10_c00066{transform:matrix(0.191028,0.004012,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191028,0.004012,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191028,0.004012,-0.005249,0.249945,0,0);}
.m33_c00066{transform:matrix(0.191083,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191083,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191083,0.002102,-0.002750,0.249985,0,0);}
.m43_c00066{transform:matrix(0.191128,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191128,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191128,0.002102,-0.002750,0.249985,0,0);}
.mbd_c00066{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);}
.mb9_c00066{transform:matrix(0.192080,0.006922,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192080,0.006922,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192080,0.006922,-0.009003,0.249838,0,0);}
.m7d_c00066{transform:matrix(0.192108,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192108,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192108,0.002113,-0.002750,0.249985,0,0);}
.m72_c00066{transform:matrix(0.192343,0.002116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192343,0.002116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192343,0.002116,-0.002750,0.249985,0,0);}
.m51_c00066{transform:matrix(0.192833,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192833,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192833,0.002121,-0.002750,0.249985,0,0);}
.me6_c00066{transform:matrix(0.193144,0.005601,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193144,0.005601,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193144,0.005601,-0.007247,0.249895,0,0);}
.m2b_c00066{transform:matrix(0.193343,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193343,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193343,0.002127,-0.002750,0.249985,0,0);}
.m1c_c00066{transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);}
.m7_c00066{transform:matrix(0.193587,0.004065,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193587,0.004065,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193587,0.004065,-0.005249,0.249945,0,0);}
.m5a_c00066{transform:matrix(0.193878,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193878,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193878,0.002133,-0.002750,0.249985,0,0);}
.m50_c00066{transform:matrix(0.193893,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193893,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193893,0.002133,-0.002750,0.249985,0,0);}
.ma_c00066{transform:matrix(0.193977,0.004074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193977,0.004074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193977,0.004074,-0.005249,0.249945,0,0);}
.m5e_c00066{transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);}
.m20_c00066{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);}
.m9a_c00066{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);}
.m4e_c00066{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);}
.m1f_c00066{transform:matrix(0.194872,0.004092,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194872,0.004092,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194872,0.004092,-0.005249,0.249945,0,0);}
.m8_c00066{transform:matrix(0.195252,0.004100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195252,0.004100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195252,0.004100,-0.005249,0.249945,0,0);}
.m5f_c00066{transform:matrix(0.195493,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195493,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195493,0.002150,-0.002750,0.249985,0,0);}
.m4d_c00066{transform:matrix(0.196048,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196048,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196048,0.002157,-0.002750,0.249985,0,0);}
.mc9_c00066{transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);}
.m59_c00066{transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);}
.m39_c00066{transform:matrix(0.196593,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196593,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196593,0.002163,-0.002750,0.249985,0,0);}
.m5_c00066{transform:matrix(0.197177,0.004141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197177,0.004141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197177,0.004141,-0.005249,0.249945,0,0);}
.m17_c00066{transform:matrix(0.197222,0.004142,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197222,0.004142,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197222,0.004142,-0.005249,0.249945,0,0);}
.m6d_c00066{transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);}
.m82_c00066{transform:matrix(0.197543,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197543,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197543,0.002173,-0.002750,0.249985,0,0);}
.m76_c00066{transform:matrix(0.197668,0.002174,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197668,0.002174,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197668,0.002174,-0.002750,0.249985,0,0);}
.m34_c00066{transform:matrix(0.197693,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197693,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197693,0.002175,-0.002750,0.249985,0,0);}
.m35_c00066{transform:matrix(0.197798,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197798,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197798,0.002176,-0.002750,0.249985,0,0);}
.m48_c00066{transform:matrix(0.197858,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197858,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197858,0.002176,-0.002750,0.249985,0,0);}
.ma2_c00066{transform:matrix(0.198223,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198223,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198223,0.002180,-0.002750,0.249985,0,0);}
.m29_c00066{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);}
.md4_c00066{transform:matrix(0.198796,0.007164,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198796,0.007164,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198796,0.007164,-0.009003,0.249838,0,0);}
.m80_c00066{transform:matrix(0.199308,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199308,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199308,0.002192,-0.002750,0.249985,0,0);}
.m53_c00066{transform:matrix(0.199508,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199508,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199508,0.002195,-0.002750,0.249985,0,0);}
.m61_c00066{transform:matrix(0.199678,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199678,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199678,0.002196,-0.002750,0.249985,0,0);}
.m3f_c00066{transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);}
.m69_c00066{transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);}
.m89_c00066{transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);}
.m3a_c00066{transform:matrix(0.200983,0.002211,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200983,0.002211,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200983,0.002211,-0.002750,0.249985,0,0);}
.m56_c00066{transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);}
.m5b_c00066{transform:matrix(0.201308,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201308,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201308,0.002214,-0.002750,0.249985,0,0);}
.m6e_c00066{transform:matrix(0.201463,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201463,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201463,0.002216,-0.002750,0.249985,0,0);}
.m3e_c00066{transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);}
.mcb_c00066{transform:matrix(0.202738,0.007306,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202738,0.007306,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202738,0.007306,-0.009003,0.249838,0,0);}
.m9_c00066{transform:matrix(0.202795,0.004259,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202795,0.004259,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202795,0.004259,-0.005249,0.249945,0,0);}
.m99_c00066{transform:matrix(0.203098,0.002234,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203098,0.002234,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203098,0.002234,-0.002750,0.249985,0,0);}
.md1_c00066{transform:matrix(0.203263,0.007325,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203263,0.007325,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203263,0.007325,-0.009003,0.249838,0,0);}
.m97_c00066{transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);}
.m88_c00066{transform:matrix(0.203373,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203373,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203373,0.002237,-0.002750,0.249985,0,0);}
.m5c_c00066{transform:matrix(0.203503,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203503,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203503,0.002239,-0.002750,0.249985,0,0);}
.m78_c00066{transform:matrix(0.205033,0.002255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205033,0.002255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205033,0.002255,-0.002750,0.249985,0,0);}
.mbb_c00066{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);}
.m91_c00066{transform:matrix(0.205978,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205978,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205978,0.002266,-0.002750,0.249985,0,0);}
.m74_c00066{transform:matrix(0.205998,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205998,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205998,0.002266,-0.002750,0.249985,0,0);}
.m36_c00066{transform:matrix(0.206263,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206263,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206263,0.002269,-0.002750,0.249985,0,0);}
.md9_c00066{transform:matrix(0.206874,0.008283,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206874,0.008283,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206874,0.008283,-0.010002,0.249800,0,0);}
.m67_c00066{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);}
.m47_c00066{transform:matrix(0.207122,0.002278,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207122,0.002278,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207122,0.002278,-0.002750,0.249985,0,0);}
.m9f_c00066{transform:matrix(0.209082,0.002300,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209082,0.002300,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209082,0.002300,-0.002750,0.249985,0,0);}
.mc6_c00066{transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);}
.me0_c00066{transform:matrix(0.210002,0.006090,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210002,0.006090,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210002,0.006090,-0.007247,0.249895,0,0);}
.mc3_c00066{transform:matrix(0.210578,0.007588,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210578,0.007588,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210578,0.007588,-0.009003,0.249838,0,0);}
.m94_c00066{transform:matrix(0.210907,0.002320,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210907,0.002320,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210907,0.002320,-0.002750,0.249985,0,0);}
.m66_c00066{transform:matrix(0.212177,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212177,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212177,0.002334,-0.002750,0.249985,0,0);}
.mbc_c00066{transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);}
.m16_c00066{transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);}
.m9b_c00066{transform:matrix(0.213967,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213967,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213967,0.002354,-0.002750,0.249985,0,0);}
.me9_c00066{transform:matrix(0.217209,0.006299,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217209,0.006299,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217209,0.006299,-0.007247,0.249895,0,0);}
.mc8_c00066{transform:matrix(0.217509,0.007838,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217509,0.007838,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217509,0.007838,-0.009003,0.249838,0,0);}
.m21_c00066{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);}
.m24_c00066{transform:matrix(0.218547,0.004589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218547,0.004589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218547,0.004589,-0.005249,0.249945,0,0);}
.m7c_c00066{transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);}
.md0_c00066{transform:matrix(0.218713,0.007882,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218713,0.007882,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218713,0.007882,-0.009003,0.249838,0,0);}
.mca_c00066{transform:matrix(0.219043,0.007893,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219043,0.007893,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219043,0.007893,-0.009003,0.249838,0,0);}
.me8_c00066{transform:matrix(0.220147,0.006384,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220147,0.006384,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220147,0.006384,-0.007247,0.249895,0,0);}
.me2_c00066{transform:matrix(0.220392,0.006391,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220392,0.006391,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220392,0.006391,-0.007247,0.249895,0,0);}
.md3_c00066{transform:matrix(0.220407,0.007943,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220407,0.007943,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220407,0.007943,-0.009003,0.249838,0,0);}
.m86_c00066{transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);}
.mde_c00066{transform:matrix(0.223081,0.006469,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223081,0.006469,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223081,0.006469,-0.007247,0.249895,0,0);}
.md5_c00066{transform:matrix(0.223605,0.008058,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223605,0.008058,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223605,0.008058,-0.009003,0.249838,0,0);}
.m93_c00066{transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);}
.m22_c00066{transform:matrix(0.226185,0.004750,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226185,0.004750,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226185,0.004750,-0.005249,0.249945,0,0);}
.m2d_c00066{transform:matrix(0.227176,0.002499,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227176,0.002499,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227176,0.002499,-0.002750,0.249985,0,0);}
.m4f_c00066{transform:matrix(0.228366,0.002512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228366,0.002512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228366,0.002512,-0.002750,0.249985,0,0);}
.m4a_c00066{transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);}
.me1_c00066{transform:matrix(0.229524,0.006656,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229524,0.006656,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229524,0.006656,-0.007247,0.249895,0,0);}
.m96_c00066{transform:matrix(0.229966,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229966,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229966,0.002530,-0.002750,0.249985,0,0);}
.mcd_c00066{transform:matrix(0.230116,0.008292,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230116,0.008292,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230116,0.008292,-0.009003,0.249838,0,0);}
.m62_c00066{transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);}
.ma7_c00066{transform:matrix(0.232256,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232256,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232256,0.002555,-0.002750,0.249985,0,0);}
.m71_c00066{transform:matrix(0.233001,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233001,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233001,0.002563,-0.002750,0.249985,0,0);}
.m2c_c00066{transform:matrix(0.233181,0.002565,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233181,0.002565,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233181,0.002565,-0.002750,0.249985,0,0);}
.m32_c00066{transform:matrix(0.233746,0.002571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233746,0.002571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233746,0.002571,-0.002750,0.249985,0,0);}
.md2_c00066{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);}
.m6f_c00066{transform:matrix(0.235281,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235281,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235281,0.002588,-0.002750,0.249985,0,0);}
.m23_c00066{transform:matrix(0.235533,0.004946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235533,0.004946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235533,0.004946,-0.005249,0.249945,0,0);}
.mc7_c00066{transform:matrix(0.235662,0.008492,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235662,0.008492,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235662,0.008492,-0.009003,0.249838,0,0);}
.mf_c00066{transform:matrix(0.236123,0.004959,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236123,0.004959,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236123,0.004959,-0.005249,0.249945,0,0);}
.mdd_c00066{transform:matrix(0.238190,0.006908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238190,0.006908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238190,0.006908,-0.007247,0.249895,0,0);}
.m1e_c00066{transform:matrix(0.238477,0.005008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238477,0.005008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238477,0.005008,-0.005249,0.249945,0,0);}
.mdf_c00066{transform:matrix(0.238625,0.006920,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238625,0.006920,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238625,0.006920,-0.007247,0.249895,0,0);}
.md_c00066{transform:matrix(0.242382,0.005090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242382,0.005090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242382,0.005090,-0.005249,0.249945,0,0);}
.m6b_c00066{transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);}
.ma8_c00066{transform:matrix(0.245565,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245565,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245565,0.002701,-0.002750,0.249985,0,0);}
.m27_c00066{transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);}
.mcc_c00066{transform:matrix(0.247274,0.008911,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247274,0.008911,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247274,0.008911,-0.009003,0.249838,0,0);}
.m41_c00066{transform:matrix(0.252310,0.002775,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252310,0.002775,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252310,0.002775,-0.002750,0.249985,0,0);}
.ma4_c00066{transform:matrix(0.252805,0.002781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252805,0.002781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252805,0.002781,-0.002750,0.249985,0,0);}
.m6_c00066{transform:matrix(0.253469,0.005323,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253469,0.005323,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253469,0.005323,-0.005249,0.249945,0,0);}
.m75_c00066{transform:matrix(0.255165,0.002807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255165,0.002807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255165,0.002807,-0.002750,0.249985,0,0);}
.m6a_c00066{transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);}
.m95_c00066{transform:matrix(0.261119,0.002872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261119,0.002872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261119,0.002872,-0.002750,0.249985,0,0);}
.m8f_c00066{transform:matrix(0.261994,0.002882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261994,0.002882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261994,0.002882,-0.002750,0.249985,0,0);}
.m26_c00066{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.275403,0.003029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275403,0.003029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275403,0.003029,-0.002750,0.249985,0,0);}
.m4c_c00066{transform:matrix(0.283383,0.003117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283383,0.003117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283383,0.003117,-0.002750,0.249985,0,0);}
.mc4_c00066{transform:matrix(0.285770,0.010298,-0.009003,0.249838,0,0);-ms-transform:matrix(0.285770,0.010298,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.285770,0.010298,-0.009003,0.249838,0,0);}
.maa_c00066{transform:matrix(0.288463,0.003173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288463,0.003173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288463,0.003173,-0.002750,0.249985,0,0);}
.m98_c00066{transform:matrix(0.297357,0.003271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297357,0.003271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297357,0.003271,-0.002750,0.249985,0,0);}
.m2e_c00066{transform:matrix(0.301642,0.003318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301642,0.003318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301642,0.003318,-0.002750,0.249985,0,0);}
.mdc_c00066{transform:matrix(0.308035,0.008933,-0.007247,0.249895,0,0);-ms-transform:matrix(0.308035,0.008933,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.308035,0.008933,-0.007247,0.249895,0,0);}
.m9e_c00066{transform:matrix(0.308261,0.003391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308261,0.003391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308261,0.003391,-0.002750,0.249985,0,0);}
.m70_c00066{transform:matrix(0.312551,0.003438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312551,0.003438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312551,0.003438,-0.002750,0.249985,0,0);}
.m81_c00066{transform:matrix(0.312751,0.003440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312751,0.003440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312751,0.003440,-0.002750,0.249985,0,0);}
.m65_c00066{transform:matrix(0.337465,0.003712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337465,0.003712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337465,0.003712,-0.002750,0.249985,0,0);}
.me7_c00066{transform:matrix(0.347394,0.010074,-0.007247,0.249895,0,0);-ms-transform:matrix(0.347394,0.010074,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.347394,0.010074,-0.007247,0.249895,0,0);}
.mbe_c00066{transform:matrix(0.358797,0.012930,-0.009003,0.249838,0,0);-ms-transform:matrix(0.358797,0.012930,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.358797,0.012930,-0.009003,0.249838,0,0);}
.m1_c00066{transform:matrix(0.360635,0.007573,-0.005249,0.249945,0,0);-ms-transform:matrix(0.360635,0.007573,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.360635,0.007573,-0.005249,0.249945,0,0);}
.m2_c00066{transform:matrix(0.367089,0.007709,-0.005249,0.249945,0,0);-ms-transform:matrix(0.367089,0.007709,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.367089,0.007709,-0.005249,0.249945,0,0);}
.m2f_c00066{transform:matrix(0.367783,0.004046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.367783,0.004046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.367783,0.004046,-0.002750,0.249985,0,0);}
.m4_c00066{transform:matrix(0.379196,0.007963,-0.005249,0.249945,0,0);-ms-transform:matrix(0.379196,0.007963,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.379196,0.007963,-0.005249,0.249945,0,0);}
.m8a_c00066{transform:matrix(0.394311,0.004337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.394311,0.004337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.394311,0.004337,-0.002750,0.249985,0,0);}
.md6_c00066{transform:matrix(0.426863,0.015382,-0.009003,0.249838,0,0);-ms-transform:matrix(0.426863,0.015382,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.426863,0.015382,-0.009003,0.249838,0,0);}
.m0_c00066{transform:matrix(0.435409,0.009144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.435409,0.009144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.435409,0.009144,-0.005249,0.249945,0,0);}
.mc2_c00066{transform:matrix(0.486884,0.017545,-0.009003,0.249838,0,0);-ms-transform:matrix(0.486884,0.017545,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.486884,0.017545,-0.009003,0.249838,0,0);}
.mb8_c00066{transform:matrix(0.496738,0.017900,-0.009003,0.249838,0,0);-ms-transform:matrix(0.496738,0.017900,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.496738,0.017900,-0.009003,0.249838,0,0);}
.md8_c00066{transform:matrix(0.517705,0.020729,-0.010002,0.249800,0,0);-ms-transform:matrix(0.517705,0.020729,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.517705,0.020729,-0.010002,0.249800,0,0);}
.mb0_c00066{transform:matrix(0.614658,0.006761,-0.002750,0.249985,0,0);-ms-transform:matrix(0.614658,0.006761,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.614658,0.006761,-0.002750,0.249985,0,0);}
.me3_c00066{transform:matrix(0.773475,0.022431,-0.007247,0.249895,0,0);-ms-transform:matrix(0.773475,0.022431,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.773475,0.022431,-0.007247,0.249895,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;}
.fs7_c00066{font-size:45.150000px;}
.fs15_c00066{font-size:51.431912px;}
.fs17_c00066{font-size:53.572513px;}
.fs14_c00066{font-size:55.630436px;}
.fs6_c00066{font-size:55.650000px;}
.fsd_c00066{font-size:63.003811px;}
.fse_c00066{font-size:64.053875px;}
.fs5_c00066{font-size:64.064121px;}
.fs11_c00066{font-size:65.103938px;}
.fs9_c00066{font-size:66.154002px;}
.fs8_c00066{font-size:68.254129px;}
.fs4_c00066{font-size:68.265047px;}
.fsf_c00066{font-size:69.304193px;}
.fs3_c00066{font-size:69.315279px;}
.fs12_c00066{font-size:70.354256px;}
.fs1_c00066{font-size:70.365510px;}
.fsb_c00066{font-size:71.404320px;}
.fs2_c00066{font-size:71.415742px;}
.fsc_c00066{font-size:72.454383px;}
.fsa_c00066{font-size:76.654637px;}
.fs10_c00066{font-size:78.754764px;}
.fs13_c00066{font-size:88.205336px;}
.fs0_c00066{font-size:89.269677px;}
.fs16_c00066{font-size:96.580726px;}
.y0_c00066{bottom:0.000000px;}
.ydb_c00066{bottom:117.626580px;}
.yda_c00066{bottom:120.564000px;}
.yd9_c00066{bottom:126.585180px;}
.yd8_c00066{bottom:130.161000px;}
.yd7_c00066{bottom:138.052756px;}
.yd6_c00066{bottom:139.210435px;}
.yd5_c00066{bottom:140.214916px;}
.yd4_c00066{bottom:140.920184px;}
.yd3_c00066{bottom:142.201360px;}
.yd2_c00066{bottom:142.903388px;}
.yd1_c00066{bottom:143.723661px;}
.yd0_c00066{bottom:144.523711px;}
.ycf_c00066{bottom:145.051588px;}
.yce_c00066{bottom:146.634207px;}
.ycd_c00066{bottom:147.152296px;}
.ycc_c00066{bottom:148.182900px;}
.ycb_c00066{bottom:149.219997px;}
.yca_c00066{bottom:150.289885px;}
.yc9_c00066{bottom:151.359774px;}
.yc8_c00066{bottom:152.024257px;}
.yc7_c00066{bottom:156.652152px;}
.yc6_c00066{bottom:157.502760px;}
.yc5_c00066{bottom:158.154378px;}
.yc4_c00066{bottom:159.174330px;}
.yc3_c00066{bottom:160.522062px;}
.yc2_c00066{bottom:160.964700px;}
.yc1_c00066{bottom:162.209778px;}
.yc0_c00066{bottom:163.407714px;}
.ybf_c00066{bottom:164.040864px;}
.ybe_c00066{bottom:165.982218px;}
.ybd_c00066{bottom:167.119404px;}
.ybc_c00066{bottom:169.930158px;}
.ybb_c00066{bottom:170.912310px;}
.yba_c00066{bottom:172.469670px;}
.yb9_c00066{bottom:173.355000px;}
.yeb_c00066{bottom:174.394297px;}
.yea_c00066{bottom:175.391448px;}
.ye9_c00066{bottom:176.260230px;}
.ye8_c00066{bottom:176.888848px;}
.ye7_c00066{bottom:178.654296px;}
.ye6_c00066{bottom:179.046101px;}
.ye5_c00066{bottom:179.570275px;}
.ye4_c00066{bottom:180.060390px;}
.ye3_c00066{bottom:180.670999px;}
.ye2_c00066{bottom:182.173490px;}
.ye1_c00066{bottom:183.393534px;}
.ye0_c00066{bottom:184.168399px;}
.ydf_c00066{bottom:184.838647px;}
.yde_c00066{bottom:185.754844px;}
.ydd_c00066{bottom:186.608184px;}
.ydc_c00066{bottom:186.849000px;}
.yb8_c00066{bottom:223.396673px;}
.yb7_c00066{bottom:224.353995px;}
.yb6_c00066{bottom:224.897852px;}
.yb5_c00066{bottom:226.871004px;}
.yb4_c00066{bottom:227.516128px;}
.yb3_c00066{bottom:228.449770px;}
.yb2_c00066{bottom:229.559712px;}
.yb1_c00066{bottom:244.826490px;}
.yb0_c00066{bottom:247.492256px;}
.yaf_c00066{bottom:248.220884px;}
.yae_c00066{bottom:249.081356px;}
.yad_c00066{bottom:250.070373px;}
.yac_c00066{bottom:251.324117px;}
.yab_c00066{bottom:252.698572px;}
.yaa_c00066{bottom:268.820375px;}
.ya9_c00066{bottom:270.272412px;}
.ya8_c00066{bottom:271.352263px;}
.ya7_c00066{bottom:272.581807px;}
.ya6_c00066{bottom:274.344063px;}
.ya5_c00066{bottom:275.923795px;}
.ya4_c00066{bottom:289.381264px;}
.ya3_c00066{bottom:291.203829px;}
.ya2_c00066{bottom:292.878975px;}
.ya1_c00066{bottom:293.640472px;}
.ya0_c00066{bottom:295.322692px;}
.y9f_c00066{bottom:295.619986px;}
.y9e_c00066{bottom:296.816368px;}
.y9d_c00066{bottom:297.693492px;}
.y9c_c00066{bottom:298.334136px;}
.y9b_c00066{bottom:311.158926px;}
.y9a_c00066{bottom:311.962141px;}
.y99_c00066{bottom:312.508464px;}
.y98_c00066{bottom:314.284057px;}
.y97_c00066{bottom:315.751983px;}
.y96_c00066{bottom:316.678665px;}
.y95_c00066{bottom:317.447827px;}
.y94_c00066{bottom:318.490077px;}
.y93_c00066{bottom:319.663791px;}
.y92_c00066{bottom:337.548774px;}
.y91_c00066{bottom:338.157558px;}
.y90_c00066{bottom:338.611887px;}
.y8f_c00066{bottom:339.661131px;}
.y8e_c00066{bottom:340.672561px;}
.y8d_c00066{bottom:341.786352px;}
.y8c_c00066{bottom:342.614583px;}
.y8b_c00066{bottom:358.375044px;}
.y8a_c00066{bottom:359.711704px;}
.y89_c00066{bottom:360.382063px;}
.y88_c00066{bottom:361.158528px;}
.y87_c00066{bottom:361.779363px;}
.y86_c00066{bottom:362.699451px;}
.y85_c00066{bottom:363.516468px;}
.y84_c00066{bottom:364.467559px;}
.y83_c00066{bottom:365.025909px;}
.y82_c00066{bottom:380.407165px;}
.y81_c00066{bottom:381.624570px;}
.y80_c00066{bottom:382.200577px;}
.y7f_c00066{bottom:382.681263px;}
.y7e_c00066{bottom:383.542281px;}
.y7d_c00066{bottom:383.920717px;}
.y7c_c00066{bottom:385.193535px;}
.y7b_c00066{bottom:386.291160px;}
.y7a_c00066{bottom:386.768168px;}
.y79_c00066{bottom:387.706911px;}
.y78_c00066{bottom:402.043281px;}
.y77_c00066{bottom:403.021753px;}
.y76_c00066{bottom:403.531381px;}
.y75_c00066{bottom:404.553771px;}
.y74_c00066{bottom:404.886541px;}
.y73_c00066{bottom:405.867009px;}
.y72_c00066{bottom:406.695159px;}
.y71_c00066{bottom:406.848664px;}
.y70_c00066{bottom:407.805648px;}
.y6f_c00066{bottom:408.292056px;}
.y6e_c00066{bottom:409.198740px;}
.y6d_c00066{bottom:410.119574px;}
.y6c_c00066{bottom:425.379795px;}
.y6b_c00066{bottom:425.940990px;}
.y6a_c00066{bottom:426.977983px;}
.y69_c00066{bottom:427.437619px;}
.y68_c00066{bottom:428.266004px;}
.y67_c00066{bottom:429.724404px;}
.y66_c00066{bottom:430.143502px;}
.y65_c00066{bottom:430.943289px;}
.y64_c00066{bottom:431.894358px;}
.y63_c00066{bottom:432.530658px;}
.y62_c00066{bottom:447.753450px;}
.y61_c00066{bottom:448.165885px;}
.y60_c00066{bottom:448.821316px;}
.y5f_c00066{bottom:450.711547px;}
.y5e_c00066{bottom:451.458477px;}
.y5d_c00066{bottom:452.507410px;}
.y5c_c00066{bottom:453.398200px;}
.y5b_c00066{bottom:454.265176px;}
.y5a_c00066{bottom:454.942014px;}
.y59_c00066{bottom:470.499448px;}
.y58_c00066{bottom:470.891771px;}
.y57_c00066{bottom:472.514361px;}
.y56_c00066{bottom:473.222863px;}
.y55_c00066{bottom:474.260739px;}
.y54_c00066{bottom:474.951067px;}
.y53_c00066{bottom:475.793796px;}
.y52_c00066{bottom:476.381611px;}
.y51_c00066{bottom:477.218040px;}
.y50_c00066{bottom:477.896494px;}
.y4f_c00066{bottom:494.827771px;}
.y4e_c00066{bottom:495.443944px;}
.y4d_c00066{bottom:495.944773px;}
.y4c_c00066{bottom:496.468101px;}
.y4b_c00066{bottom:497.225266px;}
.y4a_c00066{bottom:497.532026px;}
.y49_c00066{bottom:497.756577px;}
.y48_c00066{bottom:499.083880px;}
.y47_c00066{bottom:499.495723px;}
.y46_c00066{bottom:517.402504px;}
.y45_c00066{bottom:517.791976px;}
.y44_c00066{bottom:518.248211px;}
.y43_c00066{bottom:519.058458px;}
.y42_c00066{bottom:519.642114px;}
.y41_c00066{bottom:520.431366px;}
.y40_c00066{bottom:520.857583px;}
.y3f_c00066{bottom:521.304615px;}
.y3e_c00066{bottom:522.087715px;}
.y3d_c00066{bottom:522.477121px;}
.y3c_c00066{bottom:522.990206px;}
.y3b_c00066{bottom:538.594850px;}
.y3a_c00066{bottom:539.384938px;}
.y39_c00066{bottom:539.992261px;}
.y38_c00066{bottom:541.233890px;}
.y37_c00066{bottom:541.586112px;}
.y36_c00066{bottom:543.275502px;}
.y35_c00066{bottom:543.757386px;}
.y34_c00066{bottom:544.931692px;}
.y33_c00066{bottom:545.674713px;}
.y32_c00066{bottom:563.867127px;}
.y31_c00066{bottom:564.084085px;}
.y30_c00066{bottom:564.281343px;}
.y2f_c00066{bottom:564.596014px;}
.y2e_c00066{bottom:564.982230px;}
.y2d_c00066{bottom:565.659638px;}
.y2c_c00066{bottom:566.018826px;}
.y2b_c00066{bottom:566.520294px;}
.y2a_c00066{bottom:567.001500px;}
.y29_c00066{bottom:575.697000px;}
.y28_c00066{bottom:579.694500px;}
.y27_c00066{bottom:586.168500px;}
.y26_c00066{bottom:591.979500px;}
.y25_c00066{bottom:604.848807px;}
.y24_c00066{bottom:606.253765px;}
.y23_c00066{bottom:607.094460px;}
.y22_c00066{bottom:608.377921px;}
.y21_c00066{bottom:610.254811px;}
.y20_c00066{bottom:611.406456px;}
.y1f_c00066{bottom:612.070569px;}
.y1e_c00066{bottom:627.684127px;}
.y1d_c00066{bottom:628.396012px;}
.y1c_c00066{bottom:629.503708px;}
.y1b_c00066{bottom:630.284412px;}
.y1a_c00066{bottom:631.969273px;}
.y19_c00066{bottom:632.409956px;}
.y18_c00066{bottom:633.249662px;}
.y17_c00066{bottom:634.483729px;}
.y16_c00066{bottom:651.436770px;}
.y15_c00066{bottom:653.348802px;}
.y14_c00066{bottom:654.242293px;}
.y13_c00066{bottom:654.755133px;}
.y12_c00066{bottom:655.701768px;}
.y11_c00066{bottom:656.349327px;}
.y10_c00066{bottom:657.236487px;}
.yf_c00066{bottom:657.430618px;}
.ye_c00066{bottom:671.260680px;}
.yd_c00066{bottom:672.366330px;}
.yc_c00066{bottom:673.169391px;}
.yb_c00066{bottom:673.738281px;}
.ya_c00066{bottom:675.042570px;}
.y9_c00066{bottom:675.530316px;}
.y8_c00066{bottom:677.226339px;}
.y7_c00066{bottom:679.233802px;}
.y6_c00066{bottom:679.845973px;}
.y5_c00066{bottom:698.329200px;}
.y4_c00066{bottom:698.329554px;}
.y3_c00066{bottom:732.935614px;}
.y2_c00066{bottom:734.504913px;}
.y1_c00066{bottom:737.374500px;}
.h9_c00066{height:45.150000px;}
.h17_c00066{height:51.431912px;}
.h19_c00066{height:53.572513px;}
.h16_c00066{height:55.630436px;}
.h8_c00066{height:55.650000px;}
.hf_c00066{height:63.003811px;}
.h10_c00066{height:64.053875px;}
.h7_c00066{height:64.064121px;}
.h13_c00066{height:65.103938px;}
.hb_c00066{height:66.154002px;}
.ha_c00066{height:68.254129px;}
.h6_c00066{height:68.265047px;}
.h11_c00066{height:69.304193px;}
.h5_c00066{height:69.315279px;}
.h14_c00066{height:70.354256px;}
.h3_c00066{height:70.365510px;}
.hd_c00066{height:71.404320px;}
.h4_c00066{height:71.415742px;}
.he_c00066{height:72.454383px;}
.hc_c00066{height:76.654637px;}
.h12_c00066{height:78.754764px;}
.h15_c00066{height:88.205336px;}
.h2_c00066{height:89.269677px;}
.h18_c00066{height:96.580726px;}
.h1_c00066{height:1005.000000px;}
.h0_c00066{height:1005.150000px;}
.w0_c00066{width:754.920000px;}
.w1_c00066{width:755.250000px;}
.x0_c00066{left:0.000000px;}
.x79_c00066{left:58.608000px;}
.x7a_c00066{left:83.175908px;}
.x7f_c00066{left:84.226167px;}
.x8a_c00066{left:92.517000px;}
.x72_c00066{left:98.779570px;}
.x88_c00066{left:103.443000px;}
.x80_c00066{left:106.371311px;}
.x6f_c00066{left:115.744069px;}
.xe_c00066{left:122.313106px;}
.x76_c00066{left:123.333544px;}
.x4a_c00066{left:124.480093px;}
.x34_c00066{left:126.652791px;}
.x25_c00066{left:127.837500px;}
.x15_c00066{left:129.043401px;}
.xf_c00066{left:130.414102px;}
.x66_c00066{left:140.637663px;}
.x6_c00066{left:142.037316px;}
.x69_c00066{left:144.605499px;}
.x5c_c00066{left:148.197859px;}
.x35_c00066{left:152.294250px;}
.x73_c00066{left:153.767106px;}
.x1b_c00066{left:154.773834px;}
.x42_c00066{left:157.213555px;}
.x2c_c00066{left:163.081525px;}
.x4e_c00066{left:165.766468px;}
.x10_c00066{left:167.371771px;}
.x70_c00066{left:168.390564px;}
.x1_c00066{left:170.661000px;}
.x36_c00066{left:171.738320px;}
.x6a_c00066{left:174.838009px;}
.x8b_c00066{left:176.647500px;}
.x81_c00066{left:177.658412px;}
.x16_c00066{left:180.448157px;}
.x67_c00066{left:187.604436px;}
.x56_c00066{left:188.797302px;}
.x21_c00066{left:192.240000px;}
.x11_c00066{left:194.349070px;}
.x22_c00066{left:197.640000px;}
.x47_c00066{left:199.351167px;}
.x1c_c00066{left:200.824460px;}
.x23_c00066{left:202.608000px;}
.x61_c00066{left:203.760868px;}
.x4f_c00066{left:207.005485px;}
.x37_c00066{left:210.879942px;}
.x82_c00066{left:212.183811px;}
.x17_c00066{left:215.431952px;}
.x26_c00066{left:217.171500px;}
.x2d_c00066{left:218.966871px;}
.x43_c00066{left:221.909718px;}
.x5d_c00066{left:225.061212px;}
.x6b_c00066{left:226.343812px;}
.x3c_c00066{left:230.081268px;}
.x7b_c00066{left:231.645789px;}
.x4_c00066{left:233.295027px;}
.x4b_c00066{left:238.118086px;}
.x2e_c00066{left:241.908346px;}
.x3d_c00066{left:243.266893px;}
.x62_c00066{left:245.930346px;}
.x27_c00066{left:249.825000px;}
.x12_c00066{left:255.129727px;}
.x5_c00066{left:258.680209px;}
.x44_c00066{left:260.198581px;}
.x3e_c00066{left:261.334705px;}
.x7c_c00066{left:263.202700px;}
.x5e_c00066{left:265.063932px;}
.x7_c00066{left:266.781816px;}
.x71_c00066{left:268.124224px;}
.x50_c00066{left:272.624049px;}
.x1d_c00066{left:275.908160px;}
.x74_c00066{left:277.950999px;}
.x51_c00066{left:279.623707px;}
.x6c_c00066{left:284.352328px;}
.x63_c00066{left:289.628092px;}
.x13_c00066{left:292.388896px;}
.x38_c00066{left:293.962709px;}
.x57_c00066{left:296.551767px;}
.x77_c00066{left:302.609460px;}
.x18_c00066{left:303.999876px;}
.x3f_c00066{left:305.892268px;}
.x2_c00066{left:307.308000px;}
.x64_c00066{left:308.564386px;}
.x28_c00066{left:311.407500px;}
.x58_c00066{left:313.771188px;}
.x52_c00066{left:317.269153px;}
.x8c_c00066{left:318.303000px;}
.x2f_c00066{left:322.389502px;}
.x78_c00066{left:323.547511px;}
.x5f_c00066{left:325.810413px;}
.x1e_c00066{left:327.235344px;}
.x65_c00066{left:333.904756px;}
.x8d_c00066{left:335.203500px;}
.x19_c00066{left:336.531329px;}
.x30_c00066{left:339.135154px;}
.x89_c00066{left:343.128075px;}
.x29_c00066{left:346.518000px;}
.x8_c00066{left:347.544816px;}
.x59_c00066{left:352.904452px;}
.x60_c00066{left:354.975568px;}
.x1f_c00066{left:360.837009px;}
.x39_c00066{left:363.674311px;}
.x40_c00066{left:366.129792px;}
.x6d_c00066{left:368.394196px;}
.x9_c00066{left:370.770816px;}
.x14_c00066{left:372.075888px;}
.x2a_c00066{left:375.124500px;}
.x24_c00066{left:376.393500px;}
.x3_c00066{left:382.036500px;}
.x3a_c00066{left:386.466051px;}
.x4c_c00066{left:388.830504px;}
.x2b_c00066{left:393.057000px;}
.x31_c00066{left:398.276653px;}
.x5a_c00066{left:400.961644px;}
.x41_c00066{left:402.370399px;}
.x3b_c00066{left:405.916120px;}
.x83_c00066{left:411.356520px;}
.x1a_c00066{left:412.387572px;}
.x75_c00066{left:413.738593px;}
.x20_c00066{left:417.020784px;}
.x53_c00066{left:423.358800px;}
.x32_c00066{left:427.166469px;}
.x6e_c00066{left:431.251255px;}
.xa_c00066{left:432.879816px;}
.x4d_c00066{left:438.233575px;}
.x45_c00066{left:444.703257px;}
.x54_c00066{left:446.503995px;}
.x48_c00066{left:448.488760px;}
.x7d_c00066{left:452.121593px;}
.x84_c00066{left:453.987536px;}
.x5b_c00066{left:456.264445px;}
.xb_c00066{left:459.969816px;}
.x46_c00066{left:462.503095px;}
.x33_c00066{left:464.761327px;}
.x49_c00066{left:468.117099px;}
.x85_c00066{left:477.472608px;}
.x8e_c00066{left:479.301000px;}
.x68_c00066{left:480.800275px;}
.x55_c00066{left:490.996116px;}
.xc_c00066{left:498.210816px;}
.x86_c00066{left:510.926364px;}
.x8f_c00066{left:513.685500px;}
.x7e_c00066{left:522.112032px;}
.x87_c00066{left:549.464112px;}
.xd_c00066{left:550.860816px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fs7_c00066{font-size:40.133333pt;}
.fs15_c00066{font-size:45.717255pt;}
.fs17_c00066{font-size:47.620012pt;}
.fs14_c00066{font-size:49.449276pt;}
.fs6_c00066{font-size:49.466667pt;}
.fsd_c00066{font-size:56.003388pt;}
.fse_c00066{font-size:56.936778pt;}
.fs5_c00066{font-size:56.945886pt;}
.fs11_c00066{font-size:57.870167pt;}
.fs9_c00066{font-size:58.803557pt;}
.fs8_c00066{font-size:60.670337pt;}
.fs4_c00066{font-size:60.680042pt;}
.fsf_c00066{font-size:61.603727pt;}
.fs3_c00066{font-size:61.613581pt;}
.fs12_c00066{font-size:62.537116pt;}
.fs1_c00066{font-size:62.547120pt;}
.fsb_c00066{font-size:63.470506pt;}
.fs2_c00066{font-size:63.480660pt;}
.fsc_c00066{font-size:64.403896pt;}
.fsa_c00066{font-size:68.137455pt;}
.fs10_c00066{font-size:70.004235pt;}
.fs13_c00066{font-size:78.404743pt;}
.fs0_c00066{font-size:79.350824pt;}
.fs16_c00066{font-size:85.849535pt;}
.y0_c00066{bottom:0.000000pt;}
.ydb_c00066{bottom:104.556960pt;}
.yda_c00066{bottom:107.168000pt;}
.yd9_c00066{bottom:112.520160pt;}
.yd8_c00066{bottom:115.698667pt;}
.yd7_c00066{bottom:122.713561pt;}
.yd6_c00066{bottom:123.742609pt;}
.yd5_c00066{bottom:124.635481pt;}
.yd4_c00066{bottom:125.262385pt;}
.yd3_c00066{bottom:126.401209pt;}
.yd2_c00066{bottom:127.025233pt;}
.yd1_c00066{bottom:127.754365pt;}
.yd0_c00066{bottom:128.465521pt;}
.ycf_c00066{bottom:128.934745pt;}
.yce_c00066{bottom:130.341517pt;}
.ycd_c00066{bottom:130.802041pt;}
.ycc_c00066{bottom:131.718133pt;}
.ycb_c00066{bottom:132.639997pt;}
.yca_c00066{bottom:133.591009pt;}
.yc9_c00066{bottom:134.542021pt;}
.yc8_c00066{bottom:135.132673pt;}
.yc7_c00066{bottom:139.246357pt;}
.yc6_c00066{bottom:140.002453pt;}
.yc5_c00066{bottom:140.581669pt;}
.yc4_c00066{bottom:141.488293pt;}
.yc3_c00066{bottom:142.686277pt;}
.yc2_c00066{bottom:143.079733pt;}
.yc1_c00066{bottom:144.186469pt;}
.yc0_c00066{bottom:145.251301pt;}
.ybf_c00066{bottom:145.814101pt;}
.ybe_c00066{bottom:147.539749pt;}
.ybd_c00066{bottom:148.550581pt;}
.ybc_c00066{bottom:151.049029pt;}
.ybb_c00066{bottom:151.922053pt;}
.yba_c00066{bottom:153.306373pt;}
.yb9_c00066{bottom:154.093333pt;}
.yeb_c00066{bottom:155.017153pt;}
.yea_c00066{bottom:155.903509pt;}
.ye9_c00066{bottom:156.675760pt;}
.ye8_c00066{bottom:157.234532pt;}
.ye7_c00066{bottom:158.803819pt;}
.ye6_c00066{bottom:159.152089pt;}
.ye5_c00066{bottom:159.618023pt;}
.ye4_c00066{bottom:160.053680pt;}
.ye3_c00066{bottom:160.596444pt;}
.ye2_c00066{bottom:161.931991pt;}
.ye1_c00066{bottom:163.016475pt;}
.ye0_c00066{bottom:163.705244pt;}
.ydf_c00066{bottom:164.301020pt;}
.yde_c00066{bottom:165.115417pt;}
.ydd_c00066{bottom:165.873941pt;}
.ydc_c00066{bottom:166.088000pt;}
.yb8_c00066{bottom:198.574820pt;}
.yb7_c00066{bottom:199.425773pt;}
.yb6_c00066{bottom:199.909201pt;}
.yb5_c00066{bottom:201.663115pt;}
.yb4_c00066{bottom:202.236559pt;}
.yb3_c00066{bottom:203.066463pt;}
.yb2_c00066{bottom:204.053077pt;}
.yb1_c00066{bottom:217.623547pt;}
.yb0_c00066{bottom:219.993116pt;}
.yaf_c00066{bottom:220.640785pt;}
.yae_c00066{bottom:221.405649pt;}
.yad_c00066{bottom:222.284776pt;}
.yac_c00066{bottom:223.399215pt;}
.yab_c00066{bottom:224.620953pt;}
.yaa_c00066{bottom:238.951444pt;}
.ya9_c00066{bottom:240.242144pt;}
.ya8_c00066{bottom:241.202012pt;}
.ya7_c00066{bottom:242.294940pt;}
.ya6_c00066{bottom:243.861389pt;}
.ya5_c00066{bottom:245.265596pt;}
.ya4_c00066{bottom:257.227791pt;}
.ya3_c00066{bottom:258.847848pt;}
.ya2_c00066{bottom:260.336867pt;}
.ya1_c00066{bottom:261.013753pt;}
.ya0_c00066{bottom:262.509060pt;}
.y9f_c00066{bottom:262.773321pt;}
.y9e_c00066{bottom:263.836772pt;}
.y9d_c00066{bottom:264.616437pt;}
.y9c_c00066{bottom:265.185899pt;}
.y9b_c00066{bottom:276.585712pt;}
.y9a_c00066{bottom:277.299681pt;}
.y99_c00066{bottom:277.785301pt;}
.y98_c00066{bottom:279.363607pt;}
.y97_c00066{bottom:280.668429pt;}
.y96_c00066{bottom:281.492147pt;}
.y95_c00066{bottom:282.175847pt;}
.y94_c00066{bottom:283.102291pt;}
.y93_c00066{bottom:284.145592pt;}
.y92_c00066{bottom:300.043355pt;}
.y91_c00066{bottom:300.584496pt;}
.y90_c00066{bottom:300.988344pt;}
.y8f_c00066{bottom:301.921005pt;}
.y8e_c00066{bottom:302.820055pt;}
.y8d_c00066{bottom:303.810091pt;}
.y8c_c00066{bottom:304.546296pt;}
.y8b_c00066{bottom:318.555595pt;}
.y8a_c00066{bottom:319.743737pt;}
.y89_c00066{bottom:320.339612pt;}
.y88_c00066{bottom:321.029803pt;}
.y87_c00066{bottom:321.581656pt;}
.y86_c00066{bottom:322.399512pt;}
.y85_c00066{bottom:323.125749pt;}
.y84_c00066{bottom:323.971164pt;}
.y83_c00066{bottom:324.467475pt;}
.y82_c00066{bottom:338.139703pt;}
.y81_c00066{bottom:339.221840pt;}
.y80_c00066{bottom:339.733847pt;}
.y7f_c00066{bottom:340.161123pt;}
.y7e_c00066{bottom:340.926472pt;}
.y7d_c00066{bottom:341.262860pt;}
.y7c_c00066{bottom:342.394253pt;}
.y7b_c00066{bottom:343.369920pt;}
.y7a_c00066{bottom:343.793927pt;}
.y79_c00066{bottom:344.628365pt;}
.y78_c00066{bottom:357.371805pt;}
.y77_c00066{bottom:358.241559pt;}
.y76_c00066{bottom:358.694561pt;}
.y75_c00066{bottom:359.603352pt;}
.y74_c00066{bottom:359.899148pt;}
.y73_c00066{bottom:360.770675pt;}
.y72_c00066{bottom:361.506808pt;}
.y71_c00066{bottom:361.643257pt;}
.y70_c00066{bottom:362.493909pt;}
.y6f_c00066{bottom:362.926272pt;}
.y6e_c00066{bottom:363.732213pt;}
.y6d_c00066{bottom:364.550732pt;}
.y6c_c00066{bottom:378.115373pt;}
.y6b_c00066{bottom:378.614213pt;}
.y6a_c00066{bottom:379.535985pt;}
.y69_c00066{bottom:379.944551pt;}
.y68_c00066{bottom:380.680892pt;}
.y67_c00066{bottom:381.977248pt;}
.y66_c00066{bottom:382.349780pt;}
.y65_c00066{bottom:383.060701pt;}
.y64_c00066{bottom:383.906096pt;}
.y63_c00066{bottom:384.471696pt;}
.y62_c00066{bottom:398.003067pt;}
.y61_c00066{bottom:398.369676pt;}
.y60_c00066{bottom:398.952281pt;}
.y5f_c00066{bottom:400.632487pt;}
.y5e_c00066{bottom:401.296424pt;}
.y5d_c00066{bottom:402.228809pt;}
.y5c_c00066{bottom:403.020623pt;}
.y5b_c00066{bottom:403.791268pt;}
.y5a_c00066{bottom:404.392901pt;}
.y59_c00066{bottom:418.221732pt;}
.y58_c00066{bottom:418.570463pt;}
.y57_c00066{bottom:420.012765pt;}
.y56_c00066{bottom:420.642545pt;}
.y55_c00066{bottom:421.565101pt;}
.y54_c00066{bottom:422.178727pt;}
.y53_c00066{bottom:422.927819pt;}
.y52_c00066{bottom:423.450321pt;}
.y51_c00066{bottom:424.193813pt;}
.y50_c00066{bottom:424.796884pt;}
.y4f_c00066{bottom:439.846908pt;}
.y4e_c00066{bottom:440.394617pt;}
.y4d_c00066{bottom:440.839799pt;}
.y4c_c00066{bottom:441.304979pt;}
.y4b_c00066{bottom:441.978015pt;}
.y4a_c00066{bottom:442.250689pt;}
.y49_c00066{bottom:442.450291pt;}
.y48_c00066{bottom:443.630116pt;}
.y47_c00066{bottom:443.996199pt;}
.y46_c00066{bottom:459.913337pt;}
.y45_c00066{bottom:460.259535pt;}
.y44_c00066{bottom:460.665076pt;}
.y43_c00066{bottom:461.385296pt;}
.y42_c00066{bottom:461.904101pt;}
.y41_c00066{bottom:462.605659pt;}
.y40_c00066{bottom:462.984519pt;}
.y3f_c00066{bottom:463.381880pt;}
.y3e_c00066{bottom:464.077969pt;}
.y3d_c00066{bottom:464.424108pt;}
.y3c_c00066{bottom:464.880183pt;}
.y3b_c00066{bottom:478.750977pt;}
.y3a_c00066{bottom:479.453279pt;}
.y39_c00066{bottom:479.993121pt;}
.y38_c00066{bottom:481.096791pt;}
.y37_c00066{bottom:481.409877pt;}
.y36_c00066{bottom:482.911557pt;}
.y35_c00066{bottom:483.339899pt;}
.y34_c00066{bottom:484.383727pt;}
.y33_c00066{bottom:485.044189pt;}
.y32_c00066{bottom:501.215224pt;}
.y31_c00066{bottom:501.408076pt;}
.y30_c00066{bottom:501.583416pt;}
.y2f_c00066{bottom:501.863124pt;}
.y2e_c00066{bottom:502.206427pt;}
.y2d_c00066{bottom:502.808567pt;}
.y2c_c00066{bottom:503.127845pt;}
.y2b_c00066{bottom:503.573595pt;}
.y2a_c00066{bottom:504.001333pt;}
.y29_c00066{bottom:511.730667pt;}
.y28_c00066{bottom:515.284000pt;}
.y27_c00066{bottom:521.038667pt;}
.y26_c00066{bottom:526.204000pt;}
.y25_c00066{bottom:537.643384pt;}
.y24_c00066{bottom:538.892236pt;}
.y23_c00066{bottom:539.639520pt;}
.y22_c00066{bottom:540.780375pt;}
.y21_c00066{bottom:542.448721pt;}
.y20_c00066{bottom:543.472405pt;}
.y1f_c00066{bottom:544.062728pt;}
.y1e_c00066{bottom:557.941447pt;}
.y1d_c00066{bottom:558.574233pt;}
.y1c_c00066{bottom:559.558852pt;}
.y1b_c00066{bottom:560.252811pt;}
.y1a_c00066{bottom:561.750465pt;}
.y19_c00066{bottom:562.142183pt;}
.y18_c00066{bottom:562.888588pt;}
.y17_c00066{bottom:563.985537pt;}
.y16_c00066{bottom:579.054907pt;}
.y15_c00066{bottom:580.754491pt;}
.y14_c00066{bottom:581.548705pt;}
.y13_c00066{bottom:582.004563pt;}
.y12_c00066{bottom:582.846016pt;}
.y11_c00066{bottom:583.421624pt;}
.y10_c00066{bottom:584.210211pt;}
.yf_c00066{bottom:584.382772pt;}
.ye_c00066{bottom:596.676160pt;}
.yd_c00066{bottom:597.658960pt;}
.yc_c00066{bottom:598.372792pt;}
.yb_c00066{bottom:598.878472pt;}
.ya_c00066{bottom:600.037840pt;}
.y9_c00066{bottom:600.471392pt;}
.y8_c00066{bottom:601.978968pt;}
.y7_c00066{bottom:603.763380pt;}
.y6_c00066{bottom:604.307532pt;}
.y5_c00066{bottom:620.737067pt;}
.y4_c00066{bottom:620.737381pt;}
.y3_c00066{bottom:651.498324pt;}
.y2_c00066{bottom:652.893256pt;}
.y1_c00066{bottom:655.444000pt;}
.h9_c00066{height:40.133333pt;}
.h17_c00066{height:45.717255pt;}
.h19_c00066{height:47.620012pt;}
.h16_c00066{height:49.449276pt;}
.h8_c00066{height:49.466667pt;}
.hf_c00066{height:56.003388pt;}
.h10_c00066{height:56.936778pt;}
.h7_c00066{height:56.945886pt;}
.h13_c00066{height:57.870167pt;}
.hb_c00066{height:58.803557pt;}
.ha_c00066{height:60.670337pt;}
.h6_c00066{height:60.680042pt;}
.h11_c00066{height:61.603727pt;}
.h5_c00066{height:61.613581pt;}
.h14_c00066{height:62.537116pt;}
.h3_c00066{height:62.547120pt;}
.hd_c00066{height:63.470506pt;}
.h4_c00066{height:63.480660pt;}
.he_c00066{height:64.403896pt;}
.hc_c00066{height:68.137455pt;}
.h12_c00066{height:70.004235pt;}
.h15_c00066{height:78.404743pt;}
.h2_c00066{height:79.350824pt;}
.h18_c00066{height:85.849535pt;}
.h1_c00066{height:893.333333pt;}
.h0_c00066{height:893.466667pt;}
.w0_c00066{width:671.040000pt;}
.w1_c00066{width:671.333333pt;}
.x0_c00066{left:0.000000pt;}
.x79_c00066{left:52.096000pt;}
.x7a_c00066{left:73.934140pt;}
.x7f_c00066{left:74.867704pt;}
.x8a_c00066{left:82.237333pt;}
.x72_c00066{left:87.804063pt;}
.x88_c00066{left:91.949333pt;}
.x80_c00066{left:94.552276pt;}
.x6f_c00066{left:102.883617pt;}
.xe_c00066{left:108.722761pt;}
.x76_c00066{left:109.629817pt;}
.x4a_c00066{left:110.648972pt;}
.x34_c00066{left:112.580259pt;}
.x25_c00066{left:113.633333pt;}
.x15_c00066{left:114.705245pt;}
.xf_c00066{left:115.923647pt;}
.x66_c00066{left:125.011256pt;}
.x6_c00066{left:126.255392pt;}
.x69_c00066{left:128.538221pt;}
.x5c_c00066{left:131.731431pt;}
.x35_c00066{left:135.372667pt;}
.x73_c00066{left:136.681872pt;}
.x1b_c00066{left:137.576741pt;}
.x42_c00066{left:139.745383pt;}
.x2c_c00066{left:144.961356pt;}
.x4e_c00066{left:147.347972pt;}
.x10_c00066{left:148.774908pt;}
.x70_c00066{left:149.680501pt;}
.x1_c00066{left:151.698667pt;}
.x36_c00066{left:152.656284pt;}
.x6a_c00066{left:155.411564pt;}
.x8b_c00066{left:157.020000pt;}
.x81_c00066{left:157.918588pt;}
.x16_c00066{left:160.398361pt;}
.x67_c00066{left:166.759499pt;}
.x56_c00066{left:167.819824pt;}
.x21_c00066{left:170.880000pt;}
.x11_c00066{left:172.754729pt;}
.x22_c00066{left:175.680000pt;}
.x47_c00066{left:177.201037pt;}
.x1c_c00066{left:178.510631pt;}
.x23_c00066{left:180.096000pt;}
.x61_c00066{left:181.120772pt;}
.x4f_c00066{left:184.004876pt;}
.x37_c00066{left:187.448837pt;}
.x82_c00066{left:188.607832pt;}
.x17_c00066{left:191.495068pt;}
.x26_c00066{left:193.041333pt;}
.x2d_c00066{left:194.637219pt;}
.x43_c00066{left:197.253083pt;}
.x5d_c00066{left:200.054411pt;}
.x6b_c00066{left:201.194500pt;}
.x3c_c00066{left:204.516683pt;}
.x7b_c00066{left:205.907368pt;}
.x4_c00066{left:207.373357pt;}
.x4b_c00066{left:211.660521pt;}
.x2e_c00066{left:215.029641pt;}
.x3d_c00066{left:216.237239pt;}
.x62_c00066{left:218.604752pt;}
.x27_c00066{left:222.066667pt;}
.x12_c00066{left:226.781980pt;}
.x5_c00066{left:229.937964pt;}
.x44_c00066{left:231.287628pt;}
.x3e_c00066{left:232.297516pt;}
.x7c_c00066{left:233.957956pt;}
.x5e_c00066{left:235.612384pt;}
.x7_c00066{left:237.139392pt;}
.x71_c00066{left:238.332644pt;}
.x50_c00066{left:242.332488pt;}
.x1d_c00066{left:245.251697pt;}
.x74_c00066{left:247.067555pt;}
.x51_c00066{left:248.554407pt;}
.x6c_c00066{left:252.757625pt;}
.x63_c00066{left:257.447193pt;}
.x13_c00066{left:259.901241pt;}
.x38_c00066{left:261.300185pt;}
.x57_c00066{left:263.601571pt;}
.x77_c00066{left:268.986187pt;}
.x18_c00066{left:270.222112pt;}
.x3f_c00066{left:271.904239pt;}
.x2_c00066{left:273.162667pt;}
.x64_c00066{left:274.279455pt;}
.x28_c00066{left:276.806667pt;}
.x58_c00066{left:278.907723pt;}
.x52_c00066{left:282.017025pt;}
.x8c_c00066{left:282.936000pt;}
.x2f_c00066{left:286.568447pt;}
.x78_c00066{left:287.597788pt;}
.x5f_c00066{left:289.609256pt;}
.x1e_c00066{left:290.875861pt;}
.x65_c00066{left:296.804228pt;}
.x8d_c00066{left:297.958667pt;}
.x19_c00066{left:299.138959pt;}
.x30_c00066{left:301.453471pt;}
.x89_c00066{left:305.002733pt;}
.x29_c00066{left:308.016000pt;}
.x8_c00066{left:308.928725pt;}
.x59_c00066{left:313.692847pt;}
.x60_c00066{left:315.533839pt;}
.x1f_c00066{left:320.744008pt;}
.x39_c00066{left:323.266055pt;}
.x40_c00066{left:325.448704pt;}
.x6d_c00066{left:327.461508pt;}
.x9_c00066{left:329.574059pt;}
.x14_c00066{left:330.734123pt;}
.x2a_c00066{left:333.444000pt;}
.x24_c00066{left:334.572000pt;}
.x3_c00066{left:339.588000pt;}
.x3a_c00066{left:343.525379pt;}
.x4c_c00066{left:345.627115pt;}
.x2b_c00066{left:349.384000pt;}
.x31_c00066{left:354.023692pt;}
.x5a_c00066{left:356.410351pt;}
.x41_c00066{left:357.662577pt;}
.x3b_c00066{left:360.814329pt;}
.x83_c00066{left:365.650240pt;}
.x1a_c00066{left:366.566731pt;}
.x75_c00066{left:367.767639pt;}
.x20_c00066{left:370.685141pt;}
.x53_c00066{left:376.318933pt;}
.x32_c00066{left:379.703528pt;}
.x6e_c00066{left:383.334449pt;}
.xa_c00066{left:384.782059pt;}
.x4d_c00066{left:389.540956pt;}
.x45_c00066{left:395.291784pt;}
.x54_c00066{left:396.892440pt;}
.x48_c00066{left:398.656676pt;}
.x7d_c00066{left:401.885860pt;}
.x84_c00066{left:403.544476pt;}
.x5b_c00066{left:405.568396pt;}
.xb_c00066{left:408.862059pt;}
.x46_c00066{left:411.113863pt;}
.x33_c00066{left:413.121180pt;}
.x49_c00066{left:416.104088pt;}
.x85_c00066{left:424.420096pt;}
.x8e_c00066{left:426.045333pt;}
.x68_c00066{left:427.378023pt;}
.x55_c00066{left:436.440992pt;}
.xc_c00066{left:442.854059pt;}
.x86_c00066{left:454.156768pt;}
.x8f_c00066{left:456.609333pt;}
.x7e_c00066{left:464.099584pt;}
.x87_c00066{left:488.412544pt;}
.xd_c00066{left:489.654059pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m25_c00067{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);}
.m48_c00067{transform:matrix(0.069420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069420,0.000000,0.000000,0.250000,0,0);}
.maa_c00067{transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);}
.m8c_c00067{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{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);}
.m9a_c00067{transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.ma0_c00067{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);}
.m29_c00067{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00067{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);}
.m18_c00067{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);}
.m90_c00067{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);}
.mc1_c00067{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{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);}
.m77_c00067{transform:matrix(0.157130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157130,0.000000,0.000000,0.250000,0,0);}
.mdc_c00067{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);}
.m93_c00067{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);}
.mf_c00067{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);}
.m98_c00067{transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00067{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);}
.m32_c00067{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);}
.m9_c00067{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);}
.m3b_c00067{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);}
.m27_c00067{transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);}
.m45_c00067{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);}
.mc2_c00067{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);}
.m21_c00067{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);}
.mb3_c00067{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);}
.m99_c00067{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{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);}
.m1c_c00067{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);}
.ma5_c00067{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);}
.me_c00067{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);}
.m80_c00067{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);}
.m96_c00067{transform:matrix(0.172385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172385,0.000000,0.000000,0.250000,0,0);}
.m91_c00067{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00067{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);}
.mde_c00067{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);}
.m7_c00067{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);}
.m31_c00067{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);}
.m5d_c00067{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);}
.m36_c00067{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);}
.me4_c00067{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);}
.m8b_c00067{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);}
.mb_c00067{transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);}
.m95_c00067{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);}
.mbd_c00067{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);}
.m3_c00067{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);}
.mdf_c00067{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);}
.m19_c00067{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);}
.ma9_c00067{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);}
.m8f_c00067{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m9f_c00067{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);}
.m4c_c00067{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);}
.m0_c00067{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);}
.me2_c00067{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);}
.m7c_c00067{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);}
.mc4_c00067{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);}
.m86_c00067{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);}
.m9e_c00067{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);}
.m1f_c00067{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);}
.m28_c00067{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_c00067{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);}
.m14_c00067{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);}
.m67_c00067{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);}
.m35_c00067{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);}
.m38_c00067{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);}
.me3_c00067{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);}
.mae_c00067{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);}
.m8_c00067{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);}
.m62_c00067{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);}
.m16_c00067{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);}
.m3a_c00067{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);}
.m59_c00067{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);}
.m33_c00067{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);}
.m12_c00067{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);}
.m51_c00067{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);}
.mc8_c00067{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);}
.m4e_c00067{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);}
.m89_c00067{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);}
.m9b_c00067{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);}
.m2a_c00067{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);}
.mc7_c00067{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);}
.m6a_c00067{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);}
.m9c_c00067{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);}
.mb0_c00067{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);}
.ma_c00067{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);}
.m5a_c00067{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);}
.ma4_c00067{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);}
.ma7_c00067{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);}
.md2_c00067{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);}
.ma2_c00067{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);}
.mb4_c00067{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);}
.m52_c00067{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);}
.m56_c00067{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{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);}
.mba_c00067{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);}
.m83_c00067{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);}
.m39_c00067{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);}
.m92_c00067{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);}
.m66_c00067{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);}
.m85_c00067{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);}
.md0_c00067{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);}
.mbb_c00067{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);}
.ma1_c00067{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);}
.m5b_c00067{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);}
.mb5_c00067{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);}
.m44_c00067{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);}
.m7e_c00067{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);}
.mb1_c00067{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);}
.mca_c00067{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);}
.m68_c00067{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);}
.m7f_c00067{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);}
.m2d_c00067{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);}
.m2f_c00067{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);}
.m5c_c00067{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);}
.m6b_c00067{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);}
.ma6_c00067{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);}
.m84_c00067{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);}
.me0_c00067{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);}
.md8_c00067{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);}
.m43_c00067{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);}
.m34_c00067{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);}
.m47_c00067{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);}
.m9d_c00067{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);}
.m2b_c00067{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);}
.m64_c00067{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);}
.m26_c00067{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);}
.m6e_c00067{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);}
.m22_c00067{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);}
.m82_c00067{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);}
.mbc_c00067{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);}
.mdd_c00067{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);}
.m41_c00067{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);}
.m2e_c00067{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);}
.m10_c00067{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.mad_c00067{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);}
.m63_c00067{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);}
.m8e_c00067{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);}
.mab_c00067{transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{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);}
.m4a_c00067{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);}
.m20_c00067{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);}
.m74_c00067{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);}
.mcb_c00067{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);}
.mc5_c00067{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);}
.m3c_c00067{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);}
.mb2_c00067{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);}
.m13_c00067{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);}
.me7_c00067{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);}
.m73_c00067{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);}
.m6c_c00067{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);}
.m58_c00067{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);}
.m6d_c00067{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);}
.mc0_c00067{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);}
.mc6_c00067{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);}
.m88_c00067{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);}
.m5e_c00067{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);}
.m17_c00067{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);}
.m49_c00067{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);}
.mb9_c00067{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);}
.m4b_c00067{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);}
.m4f_c00067{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);}
.m97_c00067{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);}
.m37_c00067{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);}
.m8d_c00067{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{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);}
.m72_c00067{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);}
.m7d_c00067{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);}
.m15_c00067{transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);}
.m65_c00067{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);}
.mb6_c00067{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);}
.m61_c00067{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);}
.m53_c00067{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);}
.md1_c00067{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);}
.md7_c00067{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);}
.maf_c00067{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);}
.m24_c00067{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);}
.md6_c00067{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);}
.m1e_c00067{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.mce_c00067{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);}
.m5_c00067{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);}
.mcd_c00067{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);}
.m71_c00067{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);}
.m5f_c00067{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);}
.mc_c00067{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{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);}
.m1a_c00067{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);}
.m94_c00067{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);}
.m40_c00067{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);}
.mac_c00067{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);}
.m23_c00067{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);}
.mbf_c00067{transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);}
.m42_c00067{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);}
.m75_c00067{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);}
.m87_c00067{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.mb7_c00067{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);}
.md5_c00067{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);}
.md3_c00067{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);}
.mc9_c00067{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);}
.m7b_c00067{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);}
.me8_c00067{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);}
.mc3_c00067{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);}
.me5_c00067{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);}
.m81_c00067{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m69_c00067{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);}
.m76_c00067{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{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);}
.m7a_c00067{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);}
.m3d_c00067{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280905,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00067{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);}
.mdb_c00067{transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);}
.ma8_c00067{transform:matrix(0.299855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299855,0.000000,0.000000,0.250000,0,0);}
.me1_c00067{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);}
.mda_c00067{transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);}
.md9_c00067{transform:matrix(0.327950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327950,0.000000,0.000000,0.250000,0,0);}
.m79_c00067{transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368870,0.000000,0.000000,0.250000,0,0);}
.m54_c00067{transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);}
.mb8_c00067{transform:matrix(0.373110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373110,0.000000,0.000000,0.250000,0,0);}
.mcf_c00067{transform:matrix(0.374360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374360,0.000000,0.000000,0.250000,0,0);}
.md4_c00067{transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);}
.m3e_c00067{transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397005,0.000000,0.000000,0.250000,0,0);}
.m78_c00067{transform:matrix(0.431105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431105,0.000000,0.000000,0.250000,0,0);}
.m70_c00067{transform:matrix(0.444255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444255,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.457560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457560,0.000000,0.000000,0.250000,0,0);}
.m57_c00067{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);}
.m3f_c00067{transform:matrix(0.647635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647635,0.000000,0.000000,0.250000,0,0);}
.me6_c00067{transform:matrix(0.731990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731990,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;}
.fs0_c00067{font-size:30.450000px;}
.fsc_c00067{font-size:49.350000px;}
.fsa_c00067{font-size:50.400000px;}
.fsb_c00067{font-size:53.550000px;}
.fs9_c00067{font-size:57.750000px;}
.fsd_c00067{font-size:58.800000px;}
.fs8_c00067{font-size:66.150000px;}
.fs5_c00067{font-size:70.350000px;}
.fs3_c00067{font-size:71.400000px;}
.fs4_c00067{font-size:72.450000px;}
.fs6_c00067{font-size:73.500000px;}
.fs2_c00067{font-size:75.600000px;}
.fs7_c00067{font-size:97.650000px;}
.fs1_c00067{font-size:129.150000px;}
.y0_c00067{bottom:0.000000px;}
.y1c_c00067{bottom:135.495000px;}
.y1b_c00067{bottom:153.330000px;}
.y1a_c00067{bottom:172.231500px;}
.y19_c00067{bottom:189.780000px;}
.y18_c00067{bottom:206.647500px;}
.y17_c00067{bottom:225.691500px;}
.y16_c00067{bottom:264.025500px;}
.y15_c00067{bottom:287.091000px;}
.y14_c00067{bottom:310.668000px;}
.y13_c00067{bottom:332.077500px;}
.y12_c00067{bottom:355.812000px;}
.y11_c00067{bottom:378.567000px;}
.y10_c00067{bottom:401.406000px;}
.yf_c00067{bottom:424.816500px;}
.ye_c00067{bottom:447.097500px;}
.yd_c00067{bottom:470.229000px;}
.yc_c00067{bottom:492.933000px;}
.yb_c00067{bottom:516.576000px;}
.ya_c00067{bottom:608.947500px;}
.y9_c00067{bottom:666.900000px;}
.y8_c00067{bottom:689.677500px;}
.y7_c00067{bottom:712.899000px;}
.y6_c00067{bottom:735.963000px;}
.y5_c00067{bottom:758.604000px;}
.y4_c00067{bottom:781.170000px;}
.y3_c00067{bottom:803.589000px;}
.y2_c00067{bottom:853.099500px;}
.y1_c00067{bottom:948.240000px;}
.h2_c00067{height:30.450000px;}
.he_c00067{height:49.350000px;}
.hc_c00067{height:50.400000px;}
.hd_c00067{height:53.550000px;}
.hb_c00067{height:57.750000px;}
.hf_c00067{height:58.800000px;}
.ha_c00067{height:66.150000px;}
.h7_c00067{height:70.350000px;}
.h5_c00067{height:71.400000px;}
.h6_c00067{height:72.450000px;}
.h8_c00067{height:73.500000px;}
.h4_c00067{height:75.600000px;}
.h9_c00067{height:97.650000px;}
.h3_c00067{height:129.150000px;}
.h0_c00067{height:1008.450000px;}
.h1_c00067{height:1008.750000px;}
.w0_c00067{width:740.850000px;}
.w1_c00067{width:741.000000px;}
.x0_c00067{left:0.000000px;}
.x66_c00067{left:179.280000px;}
.x73_c00067{left:180.630000px;}
.x7b_c00067{left:183.870000px;}
.x7f_c00067{left:184.950000px;}
.x80_c00067{left:199.260000px;}
.x87_c00067{left:211.680000px;}
.x4e_c00067{left:212.760000px;}
.x37_c00067{left:216.270000px;}
.x1d_c00067{left:220.590000px;}
.x6_c00067{left:221.670000px;}
.x25_c00067{left:222.750000px;}
.x67_c00067{left:224.100000px;}
.x8e_c00067{left:233.550000px;}
.x7_c00067{left:241.650000px;}
.x49_c00067{left:244.890000px;}
.x74_c00067{left:247.320000px;}
.x2e_c00067{left:248.400000px;}
.xd_c00067{left:249.480000px;}
.x26_c00067{left:251.100000px;}
.x57_c00067{left:257.310000px;}
.x52_c00067{left:261.360000px;}
.x14_c00067{left:265.140000px;}
.x3f_c00067{left:268.380000px;}
.x75_c00067{left:273.510000px;}
.x5a_c00067{left:275.400000px;}
.x2f_c00067{left:277.560000px;}
.x8_c00067{left:279.720000px;}
.x68_c00067{left:282.420000px;}
.x32_c00067{left:285.660000px;}
.x88_c00067{left:287.010000px;}
.xe_c00067{left:288.900000px;}
.x53_c00067{left:293.220000px;}
.x5e_c00067{left:297.810000px;}
.x40_c00067{left:300.240000px;}
.x9_c00067{left:304.830000px;}
.x27_c00067{left:307.260000px;}
.x69_c00067{left:311.310000px;}
.x38_c00067{left:313.470000px;}
.x89_c00067{left:314.550000px;}
.x2_c00067{left:316.440000px;}
.x5f_c00067{left:320.490000px;}
.x81_c00067{left:321.570000px;}
.x33_c00067{left:325.080000px;}
.x4a_c00067{left:326.160000px;}
.x44_c00067{left:329.130000px;}
.x28_c00067{left:332.100000px;}
.x36_c00067{left:333.720000px;}
.x5b_c00067{left:335.340000px;}
.x30_c00067{left:338.850000px;}
.x4b_c00067{left:342.900000px;}
.x15_c00067{left:344.790000px;}
.xf_c00067{left:346.950000px;}
.x29_c00067{left:352.620000px;}
.x54_c00067{left:355.860000px;}
.x1e_c00067{left:357.210000px;}
.xa_c00067{left:358.560000px;}
.x4f_c00067{left:360.450000px;}
.x48_c00067{left:366.390000px;}
.x45_c00067{left:369.630000px;}
.x8f_c00067{left:372.330000px;}
.x5c_c00067{left:374.490000px;}
.x7c_c00067{left:376.920000px;}
.x3_c00067{left:378.270000px;}
.x10_c00067{left:379.890000px;}
.x16_c00067{left:382.590000px;}
.x34_c00067{left:388.800000px;}
.x6a_c00067{left:391.230000px;}
.x8a_c00067{left:392.580000px;}
.x2a_c00067{left:398.250000px;}
.x31_c00067{left:402.570000px;}
.x41_c00067{left:404.190000px;}
.x63_c00067{left:406.620000px;}
.x46_c00067{left:407.700000px;}
.x11_c00067{left:408.780000px;}
.x60_c00067{left:413.640000px;}
.x4_c00067{left:415.260000px;}
.x39_c00067{left:419.580000px;}
.x17_c00067{left:420.930000px;}
.x55_c00067{left:422.550000px;}
.x50_c00067{left:424.710000px;}
.x1f_c00067{left:426.870000px;}
.x58_c00067{left:430.380000px;}
.xb_c00067{left:432.000000px;}
.x82_c00067{left:434.160000px;}
.x6b_c00067{left:435.240000px;}
.x5d_c00067{left:437.400000px;}
.x20_c00067{left:441.450000px;}
.x4c_c00067{left:443.610000px;}
.x2b_c00067{left:447.930000px;}
.x59_c00067{left:449.550000px;}
.x5_c00067{left:453.060000px;}
.x64_c00067{left:456.840000px;}
.x3a_c00067{left:459.000000px;}
.xc_c00067{left:460.890000px;}
.x18_c00067{left:462.510000px;}
.x83_c00067{left:464.130000px;}
.x47_c00067{left:466.830000px;}
.x51_c00067{left:468.450000px;}
.x12_c00067{left:474.930000px;}
.x90_c00067{left:476.010000px;}
.x35_c00067{left:479.790000px;}
.x1_c00067{left:481.950000px;}
.x84_c00067{left:483.300000px;}
.x21_c00067{left:484.650000px;}
.x2c_c00067{left:486.270000px;}
.x6c_c00067{left:487.890000px;}
.x19_c00067{left:488.970000px;}
.x3b_c00067{left:494.640000px;}
.x13_c00067{left:498.690000px;}
.x6d_c00067{left:500.580000px;}
.x85_c00067{left:503.280000px;}
.x22_c00067{left:507.060000px;}
.x2d_c00067{left:510.030000px;}
.x91_c00067{left:511.650000px;}
.x61_c00067{left:515.430000px;}
.x4d_c00067{left:517.590000px;}
.x56_c00067{left:524.610000px;}
.x3c_c00067{left:525.960000px;}
.x6e_c00067{left:530.550000px;}
.x8b_c00067{left:534.600000px;}
.x42_c00067{left:536.490000px;}
.x76_c00067{left:537.840000px;}
.x92_c00067{left:541.350000px;}
.x23_c00067{left:542.970000px;}
.x65_c00067{left:550.260000px;}
.x86_c00067{left:552.150000px;}
.x93_c00067{left:557.280000px;}
.x77_c00067{left:559.440000px;}
.x6f_c00067{left:560.520000px;}
.x1a_c00067{left:561.870000px;}
.x78_c00067{left:568.620000px;}
.x43_c00067{left:571.050000px;}
.x3d_c00067{left:574.830000px;}
.x62_c00067{left:579.960000px;}
.x1b_c00067{left:583.200000px;}
.x7d_c00067{left:584.820000px;}
.x24_c00067{left:588.600000px;}
.x1c_c00067{left:590.490000px;}
.x70_c00067{left:593.190000px;}
.x8c_c00067{left:606.150000px;}
.x94_c00067{left:613.710000px;}
.x79_c00067{left:618.840000px;}
.x71_c00067{left:620.730000px;}
.x3e_c00067{left:622.350000px;}
.x95_c00067{left:624.240000px;}
.x72_c00067{left:638.010000px;}
.x8d_c00067{left:639.630000px;}
.x7a_c00067{left:640.710000px;}
.x7e_c00067{left:642.870000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
.fs0_c00067{font-size:27.066667pt;}
.fsc_c00067{font-size:43.866667pt;}
.fsa_c00067{font-size:44.800000pt;}
.fsb_c00067{font-size:47.600000pt;}
.fs9_c00067{font-size:51.333333pt;}
.fsd_c00067{font-size:52.266667pt;}
.fs8_c00067{font-size:58.800000pt;}
.fs5_c00067{font-size:62.533333pt;}
.fs3_c00067{font-size:63.466667pt;}
.fs4_c00067{font-size:64.400000pt;}
.fs6_c00067{font-size:65.333333pt;}
.fs2_c00067{font-size:67.200000pt;}
.fs7_c00067{font-size:86.800000pt;}
.fs1_c00067{font-size:114.800000pt;}
.y0_c00067{bottom:0.000000pt;}
.y1c_c00067{bottom:120.440000pt;}
.y1b_c00067{bottom:136.293333pt;}
.y1a_c00067{bottom:153.094667pt;}
.y19_c00067{bottom:168.693333pt;}
.y18_c00067{bottom:183.686667pt;}
.y17_c00067{bottom:200.614667pt;}
.y16_c00067{bottom:234.689333pt;}
.y15_c00067{bottom:255.192000pt;}
.y14_c00067{bottom:276.149333pt;}
.y13_c00067{bottom:295.180000pt;}
.y12_c00067{bottom:316.277333pt;}
.y11_c00067{bottom:336.504000pt;}
.y10_c00067{bottom:356.805333pt;}
.yf_c00067{bottom:377.614667pt;}
.ye_c00067{bottom:397.420000pt;}
.yd_c00067{bottom:417.981333pt;}
.yc_c00067{bottom:438.162667pt;}
.yb_c00067{bottom:459.178667pt;}
.ya_c00067{bottom:541.286667pt;}
.y9_c00067{bottom:592.800000pt;}
.y8_c00067{bottom:613.046667pt;}
.y7_c00067{bottom:633.688000pt;}
.y6_c00067{bottom:654.189333pt;}
.y5_c00067{bottom:674.314667pt;}
.y4_c00067{bottom:694.373333pt;}
.y3_c00067{bottom:714.301333pt;}
.y2_c00067{bottom:758.310667pt;}
.y1_c00067{bottom:842.880000pt;}
.h2_c00067{height:27.066667pt;}
.he_c00067{height:43.866667pt;}
.hc_c00067{height:44.800000pt;}
.hd_c00067{height:47.600000pt;}
.hb_c00067{height:51.333333pt;}
.hf_c00067{height:52.266667pt;}
.ha_c00067{height:58.800000pt;}
.h7_c00067{height:62.533333pt;}
.h5_c00067{height:63.466667pt;}
.h6_c00067{height:64.400000pt;}
.h8_c00067{height:65.333333pt;}
.h4_c00067{height:67.200000pt;}
.h9_c00067{height:86.800000pt;}
.h3_c00067{height:114.800000pt;}
.h0_c00067{height:896.400000pt;}
.h1_c00067{height:896.666667pt;}
.w0_c00067{width:658.533333pt;}
.w1_c00067{width:658.666667pt;}
.x0_c00067{left:0.000000pt;}
.x66_c00067{left:159.360000pt;}
.x73_c00067{left:160.560000pt;}
.x7b_c00067{left:163.440000pt;}
.x7f_c00067{left:164.400000pt;}
.x80_c00067{left:177.120000pt;}
.x87_c00067{left:188.160000pt;}
.x4e_c00067{left:189.120000pt;}
.x37_c00067{left:192.240000pt;}
.x1d_c00067{left:196.080000pt;}
.x6_c00067{left:197.040000pt;}
.x25_c00067{left:198.000000pt;}
.x67_c00067{left:199.200000pt;}
.x8e_c00067{left:207.600000pt;}
.x7_c00067{left:214.800000pt;}
.x49_c00067{left:217.680000pt;}
.x74_c00067{left:219.840000pt;}
.x2e_c00067{left:220.800000pt;}
.xd_c00067{left:221.760000pt;}
.x26_c00067{left:223.200000pt;}
.x57_c00067{left:228.720000pt;}
.x52_c00067{left:232.320000pt;}
.x14_c00067{left:235.680000pt;}
.x3f_c00067{left:238.560000pt;}
.x75_c00067{left:243.120000pt;}
.x5a_c00067{left:244.800000pt;}
.x2f_c00067{left:246.720000pt;}
.x8_c00067{left:248.640000pt;}
.x68_c00067{left:251.040000pt;}
.x32_c00067{left:253.920000pt;}
.x88_c00067{left:255.120000pt;}
.xe_c00067{left:256.800000pt;}
.x53_c00067{left:260.640000pt;}
.x5e_c00067{left:264.720000pt;}
.x40_c00067{left:266.880000pt;}
.x9_c00067{left:270.960000pt;}
.x27_c00067{left:273.120000pt;}
.x69_c00067{left:276.720000pt;}
.x38_c00067{left:278.640000pt;}
.x89_c00067{left:279.600000pt;}
.x2_c00067{left:281.280000pt;}
.x5f_c00067{left:284.880000pt;}
.x81_c00067{left:285.840000pt;}
.x33_c00067{left:288.960000pt;}
.x4a_c00067{left:289.920000pt;}
.x44_c00067{left:292.560000pt;}
.x28_c00067{left:295.200000pt;}
.x36_c00067{left:296.640000pt;}
.x5b_c00067{left:298.080000pt;}
.x30_c00067{left:301.200000pt;}
.x4b_c00067{left:304.800000pt;}
.x15_c00067{left:306.480000pt;}
.xf_c00067{left:308.400000pt;}
.x29_c00067{left:313.440000pt;}
.x54_c00067{left:316.320000pt;}
.x1e_c00067{left:317.520000pt;}
.xa_c00067{left:318.720000pt;}
.x4f_c00067{left:320.400000pt;}
.x48_c00067{left:325.680000pt;}
.x45_c00067{left:328.560000pt;}
.x8f_c00067{left:330.960000pt;}
.x5c_c00067{left:332.880000pt;}
.x7c_c00067{left:335.040000pt;}
.x3_c00067{left:336.240000pt;}
.x10_c00067{left:337.680000pt;}
.x16_c00067{left:340.080000pt;}
.x34_c00067{left:345.600000pt;}
.x6a_c00067{left:347.760000pt;}
.x8a_c00067{left:348.960000pt;}
.x2a_c00067{left:354.000000pt;}
.x31_c00067{left:357.840000pt;}
.x41_c00067{left:359.280000pt;}
.x63_c00067{left:361.440000pt;}
.x46_c00067{left:362.400000pt;}
.x11_c00067{left:363.360000pt;}
.x60_c00067{left:367.680000pt;}
.x4_c00067{left:369.120000pt;}
.x39_c00067{left:372.960000pt;}
.x17_c00067{left:374.160000pt;}
.x55_c00067{left:375.600000pt;}
.x50_c00067{left:377.520000pt;}
.x1f_c00067{left:379.440000pt;}
.x58_c00067{left:382.560000pt;}
.xb_c00067{left:384.000000pt;}
.x82_c00067{left:385.920000pt;}
.x6b_c00067{left:386.880000pt;}
.x5d_c00067{left:388.800000pt;}
.x20_c00067{left:392.400000pt;}
.x4c_c00067{left:394.320000pt;}
.x2b_c00067{left:398.160000pt;}
.x59_c00067{left:399.600000pt;}
.x5_c00067{left:402.720000pt;}
.x64_c00067{left:406.080000pt;}
.x3a_c00067{left:408.000000pt;}
.xc_c00067{left:409.680000pt;}
.x18_c00067{left:411.120000pt;}
.x83_c00067{left:412.560000pt;}
.x47_c00067{left:414.960000pt;}
.x51_c00067{left:416.400000pt;}
.x12_c00067{left:422.160000pt;}
.x90_c00067{left:423.120000pt;}
.x35_c00067{left:426.480000pt;}
.x1_c00067{left:428.400000pt;}
.x84_c00067{left:429.600000pt;}
.x21_c00067{left:430.800000pt;}
.x2c_c00067{left:432.240000pt;}
.x6c_c00067{left:433.680000pt;}
.x19_c00067{left:434.640000pt;}
.x3b_c00067{left:439.680000pt;}
.x13_c00067{left:443.280000pt;}
.x6d_c00067{left:444.960000pt;}
.x85_c00067{left:447.360000pt;}
.x22_c00067{left:450.720000pt;}
.x2d_c00067{left:453.360000pt;}
.x91_c00067{left:454.800000pt;}
.x61_c00067{left:458.160000pt;}
.x4d_c00067{left:460.080000pt;}
.x56_c00067{left:466.320000pt;}
.x3c_c00067{left:467.520000pt;}
.x6e_c00067{left:471.600000pt;}
.x8b_c00067{left:475.200000pt;}
.x42_c00067{left:476.880000pt;}
.x76_c00067{left:478.080000pt;}
.x92_c00067{left:481.200000pt;}
.x23_c00067{left:482.640000pt;}
.x65_c00067{left:489.120000pt;}
.x86_c00067{left:490.800000pt;}
.x93_c00067{left:495.360000pt;}
.x77_c00067{left:497.280000pt;}
.x6f_c00067{left:498.240000pt;}
.x1a_c00067{left:499.440000pt;}
.x78_c00067{left:505.440000pt;}
.x43_c00067{left:507.600000pt;}
.x3d_c00067{left:510.960000pt;}
.x62_c00067{left:515.520000pt;}
.x1b_c00067{left:518.400000pt;}
.x7d_c00067{left:519.840000pt;}
.x24_c00067{left:523.200000pt;}
.x1c_c00067{left:524.880000pt;}
.x70_c00067{left:527.280000pt;}
.x8c_c00067{left:538.800000pt;}
.x94_c00067{left:545.520000pt;}
.x79_c00067{left:550.080000pt;}
.x71_c00067{left:551.760000pt;}
.x3e_c00067{left:553.200000pt;}
.x95_c00067{left:554.880000pt;}
.x72_c00067{left:567.120000pt;}
.x8d_c00067{left:568.560000pt;}
.x7a_c00067{left:569.520000pt;}
.x7e_c00067{left:571.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m98_c00068{transform:matrix(0.011454,0.000172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.011454,0.000172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.011454,0.000172,-0.003750,0.249972,0,0);}
.m9c_c00068{transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);}
.m57_c00068{transform:matrix(0.015488,0.000217,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015488,0.000217,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015488,0.000217,-0.003500,0.249976,0,0);}
.mee_c00068{transform:matrix(0.016174,0.000210,-0.003250,0.249979,0,0);-ms-transform:matrix(0.016174,0.000210,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.016174,0.000210,-0.003250,0.249979,0,0);}
.m77_c00068{transform:matrix(0.033656,0.000505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.033656,0.000505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.033656,0.000505,-0.003750,0.249972,0,0);}
.mab_c00068{transform:matrix(0.084499,0.001352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.084499,0.001352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.084499,0.001352,-0.003999,0.249968,0,0);}
.m97_c00068{transform:matrix(0.132973,0.002128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.132973,0.002128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.132973,0.002128,-0.003999,0.249968,0,0);}
.m5e_c00068{transform:matrix(0.135102,0.001891,-0.003500,0.249976,0,0);-ms-transform:matrix(0.135102,0.001891,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.135102,0.001891,-0.003500,0.249976,0,0);}
.m90_c00068{transform:matrix(0.135675,0.002035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.135675,0.002035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.135675,0.002035,-0.003750,0.249972,0,0);}
.m6e_c00068{transform:matrix(0.139605,0.001675,-0.003000,0.249982,0,0);-ms-transform:matrix(0.139605,0.001675,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.139605,0.001675,-0.003000,0.249982,0,0);}
.ma8_c00068{transform:matrix(0.143157,0.002291,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143157,0.002291,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143157,0.002291,-0.003999,0.249968,0,0);}
.m34_c00068{transform:matrix(0.145991,0.002044,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145991,0.002044,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145991,0.002044,-0.003500,0.249976,0,0);}
.m4e_c00068{transform:matrix(0.147481,0.002360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147481,0.002360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147481,0.002360,-0.003999,0.249968,0,0);}
.m4d_c00068{transform:matrix(0.147531,0.002360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147531,0.002360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147531,0.002360,-0.003999,0.249968,0,0);}
.m2a_c00068{transform:matrix(0.147681,0.001624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147681,0.001624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147681,0.001624,-0.002750,0.249985,0,0);}
.m5b_c00068{transform:matrix(0.149020,0.002086,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149020,0.002086,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149020,0.002086,-0.003500,0.249976,0,0);}
.m5a_c00068{transform:matrix(0.150175,0.002102,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150175,0.002102,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150175,0.002102,-0.003500,0.249976,0,0);}
.m23_c00068{transform:matrix(0.151021,0.001661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151021,0.001661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151021,0.001661,-0.002750,0.249985,0,0);}
.m2e_c00068{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);}
.m59_c00068{transform:matrix(0.154600,0.002164,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154600,0.002164,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154600,0.002164,-0.003500,0.249976,0,0);}
.m96_c00068{transform:matrix(0.154640,0.002474,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154640,0.002474,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154640,0.002474,-0.003999,0.249968,0,0);}
.m64_c00068{transform:matrix(0.155224,0.001863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155224,0.001863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155224,0.001863,-0.003000,0.249982,0,0);}
.m2f_c00068{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);}
.m60_c00068{transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);}
.m93_c00068{transform:matrix(0.155910,0.002495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155910,0.002495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155910,0.002495,-0.003999,0.249968,0,0);}
.m4a_c00068{transform:matrix(0.157210,0.002515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157210,0.002515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157210,0.002515,-0.003999,0.249968,0,0);}
.m47_c00068{transform:matrix(0.158050,0.002529,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158050,0.002529,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158050,0.002529,-0.003999,0.249968,0,0);}
.meb_c00068{transform:matrix(0.158787,0.002064,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158787,0.002064,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158787,0.002064,-0.003250,0.249979,0,0);}
.m95_c00068{transform:matrix(0.158895,0.002542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158895,0.002542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158895,0.002542,-0.003999,0.249968,0,0);}
.m76_c00068{transform:matrix(0.159913,0.001919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159913,0.001919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159913,0.001919,-0.003000,0.249982,0,0);}
.m41_c00068{transform:matrix(0.161204,0.002579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161204,0.002579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161204,0.002579,-0.003999,0.249968,0,0);}
.m7f_c00068{transform:matrix(0.161467,0.002422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161467,0.002422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161467,0.002422,-0.003750,0.249972,0,0);}
.m1d_c00068{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);}
.m33_c00068{transform:matrix(0.161594,0.002262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161594,0.002262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161594,0.002262,-0.003500,0.249976,0,0);}
.m3c_c00068{transform:matrix(0.162579,0.002601,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162579,0.002601,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162579,0.002601,-0.003999,0.249968,0,0);}
.m53_c00068{transform:matrix(0.162799,0.002279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162799,0.002279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162799,0.002279,-0.003500,0.249976,0,0);}
.m61_c00068{transform:matrix(0.163353,0.001960,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163353,0.001960,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163353,0.001960,-0.003000,0.249982,0,0);}
.m48_c00068{transform:matrix(0.163814,0.002621,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163814,0.002621,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163814,0.002621,-0.003999,0.249968,0,0);}
.mdb_c00068{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);}
.mf6_c00068{transform:matrix(0.164496,0.002138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164496,0.002138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164496,0.002138,-0.003250,0.249979,0,0);}
.m62_c00068{transform:matrix(0.164563,0.001975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164563,0.001975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164563,0.001975,-0.003000,0.249982,0,0);}
.m38_c00068{transform:matrix(0.164984,0.002640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164984,0.002640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164984,0.002640,-0.003999,0.249968,0,0);}
.mdc_c00068{transform:matrix(0.165321,0.002149,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165321,0.002149,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165321,0.002149,-0.003250,0.249979,0,0);}
.m37_c00068{transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);}
.m44_c00068{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);}
.m2_c00068{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);}
.m10_c00068{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);}
.m2c_c00068{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);}
.mbe_c00068{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);}
.m30_c00068{transform:matrix(0.168783,0.002363,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168783,0.002363,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168783,0.002363,-0.003500,0.249976,0,0);}
.m3b_c00068{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);}
.m6b_c00068{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);}
.m6d_c00068{transform:matrix(0.169488,0.002034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169488,0.002034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169488,0.002034,-0.003000,0.249982,0,0);}
.m9_c00068{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);}
.m73_c00068{transform:matrix(0.169688,0.002036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169688,0.002036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169688,0.002036,-0.003000,0.249982,0,0);}
.m3a_c00068{transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);}
.m13_c00068{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);}
.m75_c00068{transform:matrix(0.170208,0.002042,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170208,0.002042,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170208,0.002042,-0.003000,0.249982,0,0);}
.mb9_c00068{transform:matrix(0.170371,0.002215,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170371,0.002215,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170371,0.002215,-0.003250,0.249979,0,0);}
.m11_c00068{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);}
.m8e_c00068{transform:matrix(0.171261,0.002569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171261,0.002569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171261,0.002569,-0.003750,0.249972,0,0);}
.m94_c00068{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);}
.m92_c00068{transform:matrix(0.172078,0.002753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172078,0.002753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172078,0.002753,-0.003999,0.249968,0,0);}
.mf1_c00068{transform:matrix(0.172275,0.002240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172275,0.002240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172275,0.002240,-0.003250,0.249979,0,0);}
.m1c_c00068{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);}
.m67_c00068{transform:matrix(0.172713,0.002073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172713,0.002073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172713,0.002073,-0.003000,0.249982,0,0);}
.m31_c00068{transform:matrix(0.173393,0.002428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173393,0.002428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173393,0.002428,-0.003500,0.249976,0,0);}
.m4c_c00068{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);}
.m12_c00068{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);}
.ma2_c00068{transform:matrix(0.174078,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174078,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174078,0.002785,-0.003999,0.249968,0,0);}
.m68_c00068{transform:matrix(0.174367,0.002092,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174367,0.002092,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174367,0.002092,-0.003000,0.249982,0,0);}
.m5c_c00068{transform:matrix(0.174508,0.002443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174508,0.002443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174508,0.002443,-0.003500,0.249976,0,0);}
.m54_c00068{transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);}
.mec_c00068{transform:matrix(0.175665,0.002284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175665,0.002284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175665,0.002284,-0.003250,0.249979,0,0);}
.md9_c00068{transform:matrix(0.175790,0.002285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175790,0.002285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175790,0.002285,-0.003250,0.249979,0,0);}
.m5d_c00068{transform:matrix(0.176143,0.002466,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176143,0.002466,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176143,0.002466,-0.003500,0.249976,0,0);}
.m1a_c00068{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{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);}
.mb1_c00068{transform:matrix(0.178240,0.002317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178240,0.002317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178240,0.002317,-0.003250,0.249979,0,0);}
.m5f_c00068{transform:matrix(0.178737,0.002502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178737,0.002502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178737,0.002502,-0.003500,0.249976,0,0);}
.md8_c00068{transform:matrix(0.179320,0.002331,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179320,0.002331,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179320,0.002331,-0.003250,0.249979,0,0);}
.m26_c00068{transform:matrix(0.179539,0.001975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179539,0.001975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179539,0.001975,-0.002750,0.249985,0,0);}
.m74_c00068{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);}
.mc7_c00068{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);}
.m56_c00068{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);}
.m39_c00068{transform:matrix(0.180372,0.002886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180372,0.002886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180372,0.002886,-0.003999,0.249968,0,0);}
.ma_c00068{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);}
.m1e_c00068{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);}
.m2d_c00068{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);}
.m14_c00068{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);}
.m3_c00068{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);}
.m18_c00068{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);}
.m49_c00068{transform:matrix(0.183866,0.002942,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183866,0.002942,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183866,0.002942,-0.003999,0.249968,0,0);}
.m79_c00068{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);}
.m50_c00068{transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);}
.me2_c00068{transform:matrix(0.184849,0.002403,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184849,0.002403,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184849,0.002403,-0.003250,0.249979,0,0);}
.m1f_c00068{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);}
.m7a_c00068{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);}
.ma3_c00068{transform:matrix(0.185326,0.002965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185326,0.002965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185326,0.002965,-0.003999,0.249968,0,0);}
.mde_c00068{transform:matrix(0.185684,0.002414,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185684,0.002414,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185684,0.002414,-0.003250,0.249979,0,0);}
.m27_c00068{transform:matrix(0.185794,0.002044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185794,0.002044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185794,0.002044,-0.002750,0.249985,0,0);}
.mf_c00068{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);}
.m4b_c00068{transform:matrix(0.185871,0.002974,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185871,0.002974,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185871,0.002974,-0.003999,0.249968,0,0);}
.m63_c00068{transform:matrix(0.186017,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186017,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186017,0.002232,-0.003000,0.249982,0,0);}
.ma5_c00068{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);}
.m46_c00068{transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);}
.ma4_c00068{transform:matrix(0.188656,0.003018,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188656,0.003018,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188656,0.003018,-0.003999,0.249968,0,0);}
.mda_c00068{transform:matrix(0.188849,0.002455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188849,0.002455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188849,0.002455,-0.003250,0.249979,0,0);}
.mbf_c00068{transform:matrix(0.190374,0.002475,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190374,0.002475,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190374,0.002475,-0.003250,0.249979,0,0);}
.m88_c00068{transform:matrix(0.190444,0.002857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190444,0.002857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190444,0.002857,-0.003750,0.249972,0,0);}
.m7c_c00068{transform:matrix(0.190634,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190634,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190634,0.002860,-0.003750,0.249972,0,0);}
.m52_c00068{transform:matrix(0.191076,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191076,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191076,0.002675,-0.003500,0.249976,0,0);}
.m5_c00068{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);}
.m89_c00068{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);}
.mc5_c00068{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);}
.m4_c00068{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);}
.m43_c00068{transform:matrix(0.192795,0.003085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192795,0.003085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192795,0.003085,-0.003999,0.249968,0,0);}
.m24_c00068{transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193043,0.002123,-0.002750,0.249985,0,0);}
.m8_c00068{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);}
.m22_c00068{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);}
.md2_c00068{transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);}
.m3d_c00068{transform:matrix(0.194030,0.003104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194030,0.003104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194030,0.003104,-0.003999,0.249968,0,0);}
.mba_c00068{transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);}
.ma1_c00068{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);}
.m4f_c00068{transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);}
.me1_c00068{transform:matrix(0.194769,0.002532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194769,0.002532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194769,0.002532,-0.003250,0.249979,0,0);}
.ma6_c00068{transform:matrix(0.195305,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195305,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195305,0.003125,-0.003999,0.249968,0,0);}
.mac_c00068{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);}
.m7b_c00068{transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196723,0.002951,-0.003750,0.249972,0,0);}
.me9_c00068{transform:matrix(0.197433,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197433,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197433,0.002567,-0.003250,0.249979,0,0);}
.med_c00068{transform:matrix(0.197473,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197473,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197473,0.002567,-0.003250,0.249979,0,0);}
.m9b_c00068{transform:matrix(0.197983,0.002970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197983,0.002970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197983,0.002970,-0.003750,0.249972,0,0);}
.mae_c00068{transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);}
.m71_c00068{transform:matrix(0.198786,0.002385,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198786,0.002385,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198786,0.002385,-0.003000,0.249982,0,0);}
.m15_c00068{transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.199145,0.003186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199145,0.003186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199145,0.003186,-0.003999,0.249968,0,0);}
.me_c00068{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);}
.m6f_c00068{transform:matrix(0.199516,0.002394,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199516,0.002394,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199516,0.002394,-0.003000,0.249982,0,0);}
.mc3_c00068{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);}
.m29_c00068{transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);}
.m1b_c00068{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);}
.m84_c00068{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);}
.m6_c00068{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);}
.md7_c00068{transform:matrix(0.202963,0.002639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202963,0.002639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202963,0.002639,-0.003250,0.249979,0,0);}
.m35_c00068{transform:matrix(0.203045,0.002843,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203045,0.002843,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203045,0.002843,-0.003500,0.249976,0,0);}
.ma9_c00068{transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);}
.mc0_c00068{transform:matrix(0.203533,0.002646,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203533,0.002646,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203533,0.002646,-0.003250,0.249979,0,0);}
.me6_c00068{transform:matrix(0.204423,0.002657,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204423,0.002657,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204423,0.002657,-0.003250,0.249979,0,0);}
.mc_c00068{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);}
.mb_c00068{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);}
.m8a_c00068{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);}
.m69_c00068{transform:matrix(0.204975,0.002460,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204975,0.002460,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204975,0.002460,-0.003000,0.249982,0,0);}
.m3e_c00068{transform:matrix(0.205424,0.003287,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205424,0.003287,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205424,0.003287,-0.003999,0.249968,0,0);}
.mb3_c00068{transform:matrix(0.205913,0.002677,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205913,0.002677,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205913,0.002677,-0.003250,0.249979,0,0);}
.mb0_c00068{transform:matrix(0.205988,0.002678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205988,0.002678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205988,0.002678,-0.003250,0.249979,0,0);}
.mcf_c00068{transform:matrix(0.206043,0.002679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206043,0.002679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206043,0.002679,-0.003250,0.249979,0,0);}
.m87_c00068{transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);}
.m6a_c00068{transform:matrix(0.206270,0.002475,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206270,0.002475,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206270,0.002475,-0.003000,0.249982,0,0);}
.m25_c00068{transform:matrix(0.206727,0.002274,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206727,0.002274,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206727,0.002274,-0.002750,0.249985,0,0);}
.mdf_c00068{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);}
.mcc_c00068{transform:matrix(0.207552,0.002698,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207552,0.002698,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207552,0.002698,-0.003250,0.249979,0,0);}
.mf2_c00068{transform:matrix(0.208037,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208037,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208037,0.002704,-0.003250,0.249979,0,0);}
.mea_c00068{transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);}
.m8f_c00068{transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208722,0.003131,-0.003750,0.249972,0,0);}
.m86_c00068{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);}
.ma0_c00068{transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);}
.mce_c00068{transform:matrix(0.210867,0.002741,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210867,0.002741,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210867,0.002741,-0.003250,0.249979,0,0);}
.md6_c00068{transform:matrix(0.211102,0.002744,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211102,0.002744,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211102,0.002744,-0.003250,0.249979,0,0);}
.m78_c00068{transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);}
.m40_c00068{transform:matrix(0.214153,0.003426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214153,0.003426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214153,0.003426,-0.003999,0.249968,0,0);}
.m21_c00068{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);}
.ma7_c00068{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);}
.m65_c00068{transform:matrix(0.214665,0.002576,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214665,0.002576,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214665,0.002576,-0.003000,0.249982,0,0);}
.mcb_c00068{transform:matrix(0.215442,0.002801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215442,0.002801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215442,0.002801,-0.003250,0.249979,0,0);}
.m80_c00068{transform:matrix(0.216241,0.003244,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216241,0.003244,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216241,0.003244,-0.003750,0.249972,0,0);}
.m32_c00068{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);}
.m19_c00068{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);}
.mb5_c00068{transform:matrix(0.217407,0.002826,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217407,0.002826,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217407,0.002826,-0.003250,0.249979,0,0);}
.md5_c00068{transform:matrix(0.218057,0.002835,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218057,0.002835,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218057,0.002835,-0.003250,0.249979,0,0);}
.md1_c00068{transform:matrix(0.218067,0.002835,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218067,0.002835,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218067,0.002835,-0.003250,0.249979,0,0);}
.mb7_c00068{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);}
.mb2_c00068{transform:matrix(0.219401,0.002852,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219401,0.002852,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219401,0.002852,-0.003250,0.249979,0,0);}
.mc4_c00068{transform:matrix(0.219411,0.002852,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219411,0.002852,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219411,0.002852,-0.003250,0.249979,0,0);}
.maf_c00068{transform:matrix(0.220597,0.003530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220597,0.003530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220597,0.003530,-0.003999,0.249968,0,0);}
.m45_c00068{transform:matrix(0.220832,0.003533,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220832,0.003533,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220832,0.003533,-0.003999,0.249968,0,0);}
.me0_c00068{transform:matrix(0.220856,0.002871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220856,0.002871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220856,0.002871,-0.003250,0.249979,0,0);}
.m66_c00068{transform:matrix(0.224209,0.002691,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224209,0.002691,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224209,0.002691,-0.003000,0.249982,0,0);}
.maa_c00068{transform:matrix(0.224616,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224616,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224616,0.003594,-0.003999,0.249968,0,0);}
.m20_c00068{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);}
.mbd_c00068{transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);}
.m6c_c00068{transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);}
.m8d_c00068{transform:matrix(0.226545,0.003398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226545,0.003398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226545,0.003398,-0.003750,0.249972,0,0);}
.m2b_c00068{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);}
.m55_c00068{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);}
.m42_c00068{transform:matrix(0.228636,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228636,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228636,0.003658,-0.003999,0.249968,0,0);}
.m9e_c00068{transform:matrix(0.228766,0.003660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228766,0.003660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228766,0.003660,-0.003999,0.249968,0,0);}
.m81_c00068{transform:matrix(0.229059,0.003436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229059,0.003436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229059,0.003436,-0.003750,0.249972,0,0);}
.mbc_c00068{transform:matrix(0.230166,0.002992,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230166,0.002992,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230166,0.002992,-0.003250,0.249979,0,0);}
.m72_c00068{transform:matrix(0.230658,0.002768,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230658,0.002768,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230658,0.002768,-0.003000,0.249982,0,0);}
.m28_c00068{transform:matrix(0.230736,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230736,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230736,0.002538,-0.002750,0.249985,0,0);}
.mdd_c00068{transform:matrix(0.232885,0.003028,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232885,0.003028,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232885,0.003028,-0.003250,0.249979,0,0);}
.m83_c00068{transform:matrix(0.234209,0.003513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234209,0.003513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234209,0.003513,-0.003750,0.249972,0,0);}
.mbb_c00068{transform:matrix(0.235010,0.003055,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235010,0.003055,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235010,0.003055,-0.003250,0.249979,0,0);}
.mb8_c00068{transform:matrix(0.235205,0.003058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235205,0.003058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235205,0.003058,-0.003250,0.249979,0,0);}
.m91_c00068{transform:matrix(0.238364,0.003814,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238364,0.003814,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238364,0.003814,-0.003999,0.249968,0,0);}
.md0_c00068{transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);}
.m70_c00068{transform:matrix(0.240303,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240303,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240303,0.002884,-0.003000,0.249982,0,0);}
.md_c00068{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);}
.mad_c00068{transform:matrix(0.242494,0.003880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242494,0.003880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242494,0.003880,-0.003999,0.249968,0,0);}
.m7e_c00068{transform:matrix(0.244158,0.003662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244158,0.003662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244158,0.003662,-0.003750,0.249972,0,0);}
.m9a_c00068{transform:matrix(0.245822,0.003687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245822,0.003687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245822,0.003687,-0.003750,0.249972,0,0);}
.mcd_c00068{transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);}
.mca_c00068{transform:matrix(0.250794,0.003260,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250794,0.003260,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250794,0.003260,-0.003250,0.249979,0,0);}
.mc2_c00068{transform:matrix(0.252224,0.003279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252224,0.003279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252224,0.003279,-0.003250,0.249979,0,0);}
.m8b_c00068{transform:matrix(0.252427,0.003786,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252427,0.003786,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252427,0.003786,-0.003750,0.249972,0,0);}
.mf4_c00068{transform:matrix(0.253039,0.003290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253039,0.003290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253039,0.003290,-0.003250,0.249979,0,0);}
.mc9_c00068{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);}
.m82_c00068{transform:matrix(0.253426,0.003801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253426,0.003801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253426,0.003801,-0.003750,0.249972,0,0);}
.mf5_c00068{transform:matrix(0.259298,0.003371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259298,0.003371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259298,0.003371,-0.003250,0.249979,0,0);}
.m17_c00068{transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);}
.me8_c00068{transform:matrix(0.265323,0.003449,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265323,0.003449,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265323,0.003449,-0.003250,0.249979,0,0);}
.mb6_c00068{transform:matrix(0.266927,0.003470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266927,0.003470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266927,0.003470,-0.003250,0.249979,0,0);}
.mb4_c00068{transform:matrix(0.267167,0.003473,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267167,0.003473,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267167,0.003473,-0.003250,0.249979,0,0);}
.m7d_c00068{transform:matrix(0.268310,0.004025,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268310,0.004025,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268310,0.004025,-0.003750,0.249972,0,0);}
.m8c_c00068{transform:matrix(0.269970,0.004050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269970,0.004050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269970,0.004050,-0.003750,0.249972,0,0);}
.mef_c00068{transform:matrix(0.271812,0.003534,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271812,0.003534,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271812,0.003534,-0.003250,0.249979,0,0);}
.m85_c00068{transform:matrix(0.291752,0.004376,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291752,0.004376,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291752,0.004376,-0.003750,0.249972,0,0);}
.me4_c00068{transform:matrix(0.293050,0.003810,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293050,0.003810,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293050,0.003810,-0.003250,0.249979,0,0);}
.me7_c00068{transform:matrix(0.302849,0.003937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302849,0.003937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302849,0.003937,-0.003250,0.249979,0,0);}
.mc6_c00068{transform:matrix(0.311724,0.004052,-0.003250,0.249979,0,0);-ms-transform:matrix(0.311724,0.004052,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.311724,0.004052,-0.003250,0.249979,0,0);}
.me3_c00068{transform:matrix(0.327232,0.004254,-0.003250,0.249979,0,0);-ms-transform:matrix(0.327232,0.004254,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.327232,0.004254,-0.003250,0.249979,0,0);}
.m9f_c00068{transform:matrix(0.328798,0.005261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.328798,0.005261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.328798,0.005261,-0.003999,0.249968,0,0);}
.m3f_c00068{transform:matrix(0.337637,0.005402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337637,0.005402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337637,0.005402,-0.003999,0.249968,0,0);}
.m9d_c00068{transform:matrix(0.342506,0.005480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.342506,0.005480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.342506,0.005480,-0.003999,0.249968,0,0);}
.m51_c00068{transform:matrix(0.350680,0.005611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.350680,0.005611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.350680,0.005611,-0.003999,0.249968,0,0);}
.mc8_c00068{transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);}
.m99_c00068{transform:matrix(0.368809,0.005532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.368809,0.005532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.368809,0.005532,-0.003750,0.249972,0,0);}
.m16_c00068{transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);}
.mc1_c00068{transform:matrix(0.376203,0.004891,-0.003250,0.249979,0,0);-ms-transform:matrix(0.376203,0.004891,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.376203,0.004891,-0.003250,0.249979,0,0);}
.mf3_c00068{transform:matrix(0.390177,0.005072,-0.003250,0.249979,0,0);-ms-transform:matrix(0.390177,0.005072,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.390177,0.005072,-0.003250,0.249979,0,0);}
.m58_c00068{transform:matrix(0.407935,0.005711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.407935,0.005711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.407935,0.005711,-0.003500,0.249976,0,0);}
.md4_c00068{transform:matrix(0.411020,0.005343,-0.003250,0.249979,0,0);-ms-transform:matrix(0.411020,0.005343,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.411020,0.005343,-0.003250,0.249979,0,0);}
.me5_c00068{transform:matrix(0.444042,0.005773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.444042,0.005773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.444042,0.005773,-0.003250,0.249979,0,0);}
.md3_c00068{transform:matrix(0.539964,0.007020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.539964,0.007020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.539964,0.007020,-0.003250,0.249979,0,0);}
.mf8_c00068{transform:matrix(0.594220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594220,0.000000,0.000000,0.250000,0,0);}
.mf0_c00068{transform:matrix(0.616248,0.008011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.616248,0.008011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.616248,0.008011,-0.003250,0.249979,0,0);}
.m0_c00068{transform:matrix(0.654385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654385,0.000000,0.000000,0.250000,0,0);}
.mf7_c00068{transform:matrix(0.692471,0.009002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.692471,0.009002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.692471,0.009002,-0.003250,0.249979,0,0);}
.m1_c00068{transform:matrix(0.871350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.871350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.871350,0.000000,0.000000,0.250000,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;}
.fs15_c00068{font-size:50.404259px;}
.fs16_c00068{font-size:51.454347px;}
.fs18_c00068{font-size:52.504436px;}
.fs17_c00068{font-size:55.654702px;}
.fs19_c00068{font-size:57.750000px;}
.fs10_c00068{font-size:66.157441px;}
.fs2_c00068{font-size:70.350000px;}
.fsf_c00068{font-size:70.355065px;}
.fs11_c00068{font-size:70.357914px;}
.fs4_c00068{font-size:71.404320px;}
.fs12_c00068{font-size:71.408032px;}
.fs8_c00068{font-size:71.409139px;}
.fsd_c00068{font-size:72.455216px;}
.fs6_c00068{font-size:72.457100px;}
.fs9_c00068{font-size:72.459273px;}
.fs3_c00068{font-size:73.500000px;}
.fse_c00068{font-size:73.505292px;}
.fsa_c00068{font-size:73.507203px;}
.fs7_c00068{font-size:73.509407px;}
.fs5_c00068{font-size:74.550000px;}
.fs14_c00068{font-size:74.558386px;}
.fs1_c00068{font-size:75.600000px;}
.fs13_c00068{font-size:75.609676px;}
.fsc_c00068{font-size:82.958129px;}
.fsb_c00068{font-size:87.158540px;}
.fs0_c00068{font-size:145.950000px;}
.y0_c00068{bottom:0.000000px;}
.ye2_c00068{bottom:84.240000px;}
.ye1_c00068{bottom:155.093526px;}
.ye0_c00068{bottom:155.406761px;}
.ydf_c00068{bottom:156.078193px;}
.yde_c00068{bottom:157.387380px;}
.ydd_c00068{bottom:158.684327px;}
.ydc_c00068{bottom:159.150797px;}
.ydb_c00068{bottom:160.648224px;}
.yda_c00068{bottom:169.931676px;}
.yd9_c00068{bottom:173.440526px;}
.yd8_c00068{bottom:174.039438px;}
.yd7_c00068{bottom:174.151239px;}
.yd6_c00068{bottom:174.913809px;}
.yd5_c00068{bottom:175.730067px;}
.yd4_c00068{bottom:176.049798px;}
.yd3_c00068{bottom:176.940018px;}
.yd2_c00068{bottom:177.333516px;}
.yd1_c00068{bottom:177.674243px;}
.yd0_c00068{bottom:177.932877px;}
.ycf_c00068{bottom:178.466580px;}
.yce_c00068{bottom:187.993471px;}
.ycd_c00068{bottom:188.372364px;}
.ycc_c00068{bottom:188.687055px;}
.ycb_c00068{bottom:189.127302px;}
.yca_c00068{bottom:189.828624px;}
.yc9_c00068{bottom:190.220988px;}
.yc8_c00068{bottom:191.012130px;}
.yc7_c00068{bottom:191.399308px;}
.yc6_c00068{bottom:191.722578px;}
.yc5_c00068{bottom:192.331430px;}
.yc4_c00068{bottom:192.634832px;}
.yc3_c00068{bottom:193.447731px;}
.yc2_c00068{bottom:193.767549px;}
.yc1_c00068{bottom:194.039640px;}
.yc0_c00068{bottom:194.466084px;}
.ybf_c00068{bottom:194.977044px;}
.ybe_c00068{bottom:195.399978px;}
.ybd_c00068{bottom:195.746311px;}
.ybc_c00068{bottom:206.502239px;}
.ybb_c00068{bottom:206.966676px;}
.yba_c00068{bottom:208.123334px;}
.yb9_c00068{bottom:209.091108px;}
.yb8_c00068{bottom:209.397294px;}
.yb7_c00068{bottom:209.851455px;}
.yb6_c00068{bottom:210.649689px;}
.yb5_c00068{bottom:211.008112px;}
.yb4_c00068{bottom:211.860454px;}
.yb3_c00068{bottom:212.487373px;}
.yb2_c00068{bottom:212.881323px;}
.yb1_c00068{bottom:213.560908px;}
.yb0_c00068{bottom:224.070466px;}
.yaf_c00068{bottom:224.418748px;}
.yae_c00068{bottom:225.038473px;}
.yad_c00068{bottom:225.881599px;}
.yac_c00068{bottom:226.435501px;}
.yab_c00068{bottom:227.072266px;}
.yaa_c00068{bottom:227.279095px;}
.ya9_c00068{bottom:227.605404px;}
.ya8_c00068{bottom:228.006952px;}
.ya7_c00068{bottom:228.501855px;}
.ya6_c00068{bottom:229.246090px;}
.ya5_c00068{bottom:230.267754px;}
.ya4_c00068{bottom:230.580199px;}
.ya3_c00068{bottom:242.339958px;}
.ya2_c00068{bottom:242.606367px;}
.ya1_c00068{bottom:243.119295px;}
.ya0_c00068{bottom:243.892899px;}
.y9f_c00068{bottom:244.651351px;}
.y9e_c00068{bottom:245.208077px;}
.y9d_c00068{bottom:245.604667px;}
.y9c_c00068{bottom:246.381313px;}
.y9b_c00068{bottom:246.876184px;}
.y9a_c00068{bottom:247.317762px;}
.y99_c00068{bottom:247.861500px;}
.y98_c00068{bottom:284.937204px;}
.y97_c00068{bottom:285.524808px;}
.y96_c00068{bottom:286.447152px;}
.y95_c00068{bottom:286.909152px;}
.y94_c00068{bottom:287.128740px;}
.y93_c00068{bottom:288.027336px;}
.y92_c00068{bottom:288.931332px;}
.y91_c00068{bottom:289.251048px;}
.y90_c00068{bottom:289.710936px;}
.y8f_c00068{bottom:306.431448px;}
.y8e_c00068{bottom:307.380816px;}
.y8d_c00068{bottom:307.853088px;}
.y8c_c00068{bottom:308.462136px;}
.y8b_c00068{bottom:308.859528px;}
.y8a_c00068{bottom:309.456024px;}
.y89_c00068{bottom:310.506408px;}
.y88_c00068{bottom:310.620504px;}
.y87_c00068{bottom:311.212536px;}
.y86_c00068{bottom:311.662872px;}
.y85_c00068{bottom:311.850000px;}
.y84_c00068{bottom:330.716835px;}
.y83_c00068{bottom:331.053008px;}
.y82_c00068{bottom:331.976475px;}
.y81_c00068{bottom:333.495000px;}
.y80_c00068{bottom:353.215524px;}
.y7f_c00068{bottom:353.690172px;}
.y7e_c00068{bottom:354.870420px;}
.y7d_c00068{bottom:355.813092px;}
.y7c_c00068{bottom:356.248524px;}
.y7b_c00068{bottom:357.008052px;}
.y7a_c00068{bottom:357.484500px;}
.y79_c00068{bottom:375.944205px;}
.y78_c00068{bottom:376.444695px;}
.y77_c00068{bottom:376.735035px;}
.y76_c00068{bottom:377.065387px;}
.y75_c00068{bottom:377.283307px;}
.y74_c00068{bottom:378.010590px;}
.y73_c00068{bottom:378.536775px;}
.y72_c00068{bottom:378.824055px;}
.y71_c00068{bottom:379.617945px;}
.y70_c00068{bottom:398.177137px;}
.y6f_c00068{bottom:398.487960px;}
.y6e_c00068{bottom:398.714482px;}
.y6d_c00068{bottom:399.389355px;}
.y6c_c00068{bottom:399.632790px;}
.y6b_c00068{bottom:400.247925px;}
.y6a_c00068{bottom:400.967002px;}
.y69_c00068{bottom:401.417610px;}
.y68_c00068{bottom:401.786265px;}
.y67_c00068{bottom:420.262620px;}
.y66_c00068{bottom:420.619110px;}
.y65_c00068{bottom:421.169910px;}
.y64_c00068{bottom:422.315992px;}
.y63_c00068{bottom:423.348990px;}
.y62_c00068{bottom:424.443705px;}
.y61_c00068{bottom:425.041890px;}
.y60_c00068{bottom:425.251500px;}
.y5f_c00068{bottom:445.684368px;}
.y5a_c00068{bottom:445.684548px;}
.y5d_c00068{bottom:445.684596px;}
.y5c_c00068{bottom:445.684962px;}
.y5e_c00068{bottom:445.685070px;}
.y5b_c00068{bottom:445.685226px;}
.y59_c00068{bottom:445.685232px;}
.y58_c00068{bottom:466.975050px;}
.y57_c00068{bottom:467.311938px;}
.y56_c00068{bottom:467.648322px;}
.y55_c00068{bottom:467.911320px;}
.y54_c00068{bottom:468.634326px;}
.y53_c00068{bottom:469.077522px;}
.y52_c00068{bottom:469.291074px;}
.y51_c00068{bottom:469.790970px;}
.y50_c00068{bottom:470.341500px;}
.y4f_c00068{bottom:489.700338px;}
.y4e_c00068{bottom:491.142534px;}
.y4d_c00068{bottom:491.343090px;}
.y4c_c00068{bottom:492.033246px;}
.y4b_c00068{bottom:492.340488px;}
.y4a_c00068{bottom:492.765594px;}
.y49_c00068{bottom:493.021500px;}
.y48_c00068{bottom:513.114288px;}
.y47_c00068{bottom:513.445698px;}
.y46_c00068{bottom:513.673428px;}
.y45_c00068{bottom:514.686453px;}
.y44_c00068{bottom:514.929501px;}
.y43_c00068{bottom:515.509083px;}
.y42_c00068{bottom:516.508638px;}
.y41_c00068{bottom:534.567339px;}
.y40_c00068{bottom:537.066813px;}
.y3f_c00068{bottom:538.917063px;}
.y3e_c00068{bottom:557.976858px;}
.y3d_c00068{bottom:558.237489px;}
.y3c_c00068{bottom:559.016400px;}
.y3b_c00068{bottom:559.300089px;}
.y3a_c00068{bottom:560.793000px;}
.y39_c00068{bottom:600.326256px;}
.y38_c00068{bottom:601.017540px;}
.y37_c00068{bottom:602.350416px;}
.y36_c00068{bottom:603.011124px;}
.y35_c00068{bottom:603.654624px;}
.y34_c00068{bottom:604.558848px;}
.y33_c00068{bottom:605.076396px;}
.y32_c00068{bottom:605.340564px;}
.y31_c00068{bottom:623.127924px;}
.y30_c00068{bottom:623.896272px;}
.y2f_c00068{bottom:624.251304px;}
.y2e_c00068{bottom:624.718404px;}
.y2d_c00068{bottom:625.388124px;}
.y2c_c00068{bottom:625.771236px;}
.y2b_c00068{bottom:626.005332px;}
.y2a_c00068{bottom:626.776296px;}
.y29_c00068{bottom:627.390336px;}
.y28_c00068{bottom:627.749640px;}
.y27_c00068{bottom:645.064296px;}
.y26_c00068{bottom:645.762384px;}
.y25_c00068{bottom:646.669872px;}
.y24_c00068{bottom:647.124312px;}
.y23_c00068{bottom:647.762136px;}
.y22_c00068{bottom:648.549600px;}
.y21_c00068{bottom:648.946776px;}
.y20_c00068{bottom:649.521600px;}
.y1f_c00068{bottom:650.018064px;}
.y1e_c00068{bottom:650.973000px;}
.y1d_c00068{bottom:669.501123px;}
.y1c_c00068{bottom:669.902076px;}
.y1b_c00068{bottom:670.714797px;}
.y1a_c00068{bottom:671.437344px;}
.y19_c00068{bottom:672.533166px;}
.y18_c00068{bottom:672.843000px;}
.y17_c00068{bottom:694.900500px;}
.y16_c00068{bottom:715.578351px;}
.y15_c00068{bottom:716.154432px;}
.y14_c00068{bottom:716.659926px;}
.y13_c00068{bottom:717.024856px;}
.y12_c00068{bottom:717.505964px;}
.y11_c00068{bottom:717.820866px;}
.y10_c00068{bottom:718.269336px;}
.yf_c00068{bottom:718.441613px;}
.ye_c00068{bottom:718.741500px;}
.yd_c00068{bottom:739.308000px;}
.yc_c00068{bottom:760.705500px;}
.yb_c00068{bottom:760.936500px;}
.ya_c00068{bottom:761.349000px;}
.y9_c00068{bottom:761.812500px;}
.y8_c00068{bottom:762.315000px;}
.y7_c00068{bottom:762.601500px;}
.y6_c00068{bottom:762.829500px;}
.y5_c00068{bottom:763.288500px;}
.y4_c00068{bottom:763.560000px;}
.y3_c00068{bottom:784.843500px;}
.y2_c00068{bottom:808.077000px;}
.y1_c00068{bottom:899.077500px;}
.h17_c00068{height:50.404259px;}
.h18_c00068{height:51.454347px;}
.h1a_c00068{height:52.504436px;}
.h19_c00068{height:55.654702px;}
.h1b_c00068{height:57.750000px;}
.h12_c00068{height:66.157441px;}
.h4_c00068{height:70.350000px;}
.h11_c00068{height:70.355065px;}
.h13_c00068{height:70.357914px;}
.h6_c00068{height:71.404320px;}
.h14_c00068{height:71.408032px;}
.ha_c00068{height:71.409139px;}
.hf_c00068{height:72.455216px;}
.h8_c00068{height:72.457100px;}
.hb_c00068{height:72.459273px;}
.h5_c00068{height:73.500000px;}
.h10_c00068{height:73.505292px;}
.hc_c00068{height:73.507203px;}
.h9_c00068{height:73.509407px;}
.h7_c00068{height:74.550000px;}
.h16_c00068{height:74.558386px;}
.h3_c00068{height:75.600000px;}
.h15_c00068{height:75.609676px;}
.he_c00068{height:82.958129px;}
.hd_c00068{height:87.158540px;}
.h2_c00068{height:145.950000px;}
.h1_c00068{height:1005.000000px;}
.h0_c00068{height:1005.150000px;}
.w0_c00068{width:705.450000px;}
.w1_c00068{width:705.750000px;}
.x0_c00068{left:0.000000px;}
.x81_c00068{left:85.476974px;}
.x86_c00068{left:99.716829px;}
.x73_c00068{left:104.380500px;}
.x7b_c00068{left:117.296564px;}
.x87_c00068{left:121.395491px;}
.x3e_c00068{left:123.651624px;}
.x5b_c00068{left:126.508500px;}
.x82_c00068{left:134.059850px;}
.x45_c00068{left:135.636000px;}
.x5f_c00068{left:137.808142px;}
.x49_c00068{left:139.399878px;}
.x2f_c00068{left:141.015000px;}
.x18_c00068{left:142.020000px;}
.x2_c00068{left:143.100000px;}
.x9_c00068{left:144.180000px;}
.x74_c00068{left:146.206500px;}
.x88_c00068{left:147.812457px;}
.x47_c00068{left:155.579205px;}
.x1_c00068{left:160.110000px;}
.x50_c00068{left:162.106500px;}
.x2a_c00068{left:164.502000px;}
.x6b_c00068{left:166.492500px;}
.x36_c00068{left:168.561324px;}
.x1f_c00068{left:169.953000px;}
.x27_c00068{left:171.720000px;}
.x11_c00068{left:173.221500px;}
.x19_c00068{left:174.690000px;}
.x3f_c00068{left:175.790964px;}
.x5c_c00068{left:180.361500px;}
.x56_c00068{left:184.142862px;}
.x20_c00068{left:185.614500px;}
.x53_c00068{left:186.939000px;}
.x8e_c00068{left:189.086990px;}
.x51_c00068{left:197.532000px;}
.xa_c00068{left:199.260000px;}
.x30_c00068{left:200.698500px;}
.x63_c00068{left:201.792180px;}
.x6c_c00068{left:203.494500px;}
.x4a_c00068{left:206.081454px;}
.x57_c00068{left:208.714908px;}
.x6d_c00068{left:210.625500px;}
.x37_c00068{left:212.377716px;}
.x67_c00068{left:217.407000px;}
.xb_c00068{left:223.830000px;}
.x21_c00068{left:226.384500px;}
.x54_c00068{left:228.597000px;}
.x1a_c00068{left:230.040000px;}
.x3_c00068{left:231.390000px;}
.x40_c00068{left:236.055924px;}
.x8f_c00068{left:238.523772px;}
.x58_c00068{left:241.116570px;}
.x2b_c00068{left:242.775000px;}
.x4b_c00068{left:244.693908px;}
.x1b_c00068{left:246.510000px;}
.x12_c00068{left:249.654000px;}
.xc_c00068{left:252.450000px;}
.x22_c00068{left:255.012000px;}
.x90_c00068{left:256.309622px;}
.x4c_c00068{left:260.875677px;}
.x46_c00068{left:262.536000px;}
.x64_c00068{left:264.425070px;}
.x60_c00068{left:266.069925px;}
.x31_c00068{left:267.654000px;}
.x6e_c00068{left:276.274500px;}
.x75_c00068{left:277.983000px;}
.x41_c00068{left:278.994120px;}
.x13_c00068{left:281.482500px;}
.x38_c00068{left:284.102496px;}
.x28_c00068{left:286.470000px;}
.x7c_c00068{left:288.811098px;}
.x32_c00068{left:292.477500px;}
.x2c_c00068{left:294.385500px;}
.x4_c00068{left:296.190000px;}
.x52_c00068{left:297.361500px;}
.x23_c00068{left:298.749000px;}
.x91_c00068{left:301.672677px;}
.x59_c00068{left:304.031124px;}
.x29_c00068{left:305.640000px;}
.x76_c00068{left:308.490000px;}
.x39_c00068{left:311.422860px;}
.x1c_c00068{left:313.470000px;}
.x7d_c00068{left:315.544896px;}
.x5_c00068{left:317.250000px;}
.x65_c00068{left:320.312235px;}
.x42_c00068{left:323.007816px;}
.xd_c00068{left:325.080000px;}
.x93_c00068{left:327.210372px;}
.x4d_c00068{left:328.412232px;}
.x24_c00068{left:331.924500px;}
.x72_c00068{left:333.788172px;}
.x14_c00068{left:337.371000px;}
.x6f_c00068{left:338.392500px;}
.x33_c00068{left:341.694000px;}
.x4e_c00068{left:343.607022px;}
.x69_c00068{left:347.580000px;}
.x1d_c00068{left:350.190000px;}
.x77_c00068{left:351.315000px;}
.x2d_c00068{left:352.437000px;}
.x3a_c00068{left:359.281896px;}
.x6_c00068{left:361.800000px;}
.x4f_c00068{left:365.671707px;}
.x6a_c00068{left:369.991500px;}
.x7_c00068{left:371.790000px;}
.xe_c00068{left:374.490000px;}
.x70_c00068{left:376.458000px;}
.x25_c00068{left:377.878500px;}
.x2e_c00068{left:381.076500px;}
.x5a_c00068{left:383.686590px;}
.x66_c00068{left:384.821670px;}
.x15_c00068{left:388.921500px;}
.x3b_c00068{left:392.695476px;}
.x61_c00068{left:393.805162px;}
.x89_c00068{left:395.680805px;}
.x5d_c00068{left:398.614500px;}
.x1e_c00068{left:402.840000px;}
.x83_c00068{left:404.611301px;}
.x68_c00068{left:406.969500px;}
.x8_c00068{left:410.400000px;}
.x43_c00068{left:411.845232px;}
.x3c_c00068{left:418.073292px;}
.x55_c00068{left:421.599000px;}
.xf_c00068{left:422.820000px;}
.x26_c00068{left:430.249500px;}
.x16_c00068{left:434.808000px;}
.x62_c00068{left:438.630187px;}
.x48_c00068{left:445.591152px;}
.x44_c00068{left:457.957476px;}
.x5e_c00068{left:459.100500px;}
.x17_c00068{left:460.497000px;}
.x71_c00068{left:465.310500px;}
.x34_c00068{left:466.678500px;}
.x78_c00068{left:469.165500px;}
.x3d_c00068{left:472.940544px;}
.x10_c00068{left:482.760000px;}
.x7e_c00068{left:486.688950px;}
.x79_c00068{left:508.621500px;}
.x35_c00068{left:510.309000px;}
.x8a_c00068{left:513.432203px;}
.x7f_c00068{left:528.012878px;}
.x7a_c00068{left:529.114500px;}
.x8b_c00068{left:540.950130px;}
.x80_c00068{left:551.226273px;}
.x84_c00068{left:556.373331px;}
.x8c_c00068{left:560.656370px;}
.x92_c00068{left:578.395679px;}
.x8d_c00068{left:584.377953px;}
.x85_c00068{left:589.560402px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.fs15_c00068{font-size:44.803785pt;}
.fs16_c00068{font-size:45.737198pt;}
.fs18_c00068{font-size:46.670610pt;}
.fs17_c00068{font-size:49.470846pt;}
.fs19_c00068{font-size:51.333333pt;}
.fs10_c00068{font-size:58.806615pt;}
.fs2_c00068{font-size:62.533333pt;}
.fsf_c00068{font-size:62.537836pt;}
.fs11_c00068{font-size:62.540368pt;}
.fs4_c00068{font-size:63.470506pt;}
.fs12_c00068{font-size:63.473806pt;}
.fs8_c00068{font-size:63.474790pt;}
.fsd_c00068{font-size:64.404637pt;}
.fs6_c00068{font-size:64.406311pt;}
.fs9_c00068{font-size:64.408243pt;}
.fs3_c00068{font-size:65.333333pt;}
.fse_c00068{font-size:65.338037pt;}
.fsa_c00068{font-size:65.339736pt;}
.fs7_c00068{font-size:65.341695pt;}
.fs5_c00068{font-size:66.266667pt;}
.fs14_c00068{font-size:66.274121pt;}
.fs1_c00068{font-size:67.200000pt;}
.fs13_c00068{font-size:67.208601pt;}
.fsc_c00068{font-size:73.740559pt;}
.fsb_c00068{font-size:77.474258pt;}
.fs0_c00068{font-size:129.733333pt;}
.y0_c00068{bottom:0.000000pt;}
.ye2_c00068{bottom:74.880000pt;}
.ye1_c00068{bottom:137.860912pt;}
.ye0_c00068{bottom:138.139343pt;}
.ydf_c00068{bottom:138.736172pt;}
.yde_c00068{bottom:139.899893pt;}
.ydd_c00068{bottom:141.052735pt;}
.ydc_c00068{bottom:141.467375pt;}
.ydb_c00068{bottom:142.798421pt;}
.yda_c00068{bottom:151.050379pt;}
.yd9_c00068{bottom:154.169356pt;}
.yd8_c00068{bottom:154.701723pt;}
.yd7_c00068{bottom:154.801101pt;}
.yd6_c00068{bottom:155.478941pt;}
.yd5_c00068{bottom:156.204504pt;}
.yd4_c00068{bottom:156.488709pt;}
.yd3_c00068{bottom:157.280016pt;}
.yd2_c00068{bottom:157.629792pt;}
.yd1_c00068{bottom:157.932660pt;}
.yd0_c00068{bottom:158.162557pt;}
.ycf_c00068{bottom:158.636960pt;}
.yce_c00068{bottom:167.105308pt;}
.ycd_c00068{bottom:167.442101pt;}
.ycc_c00068{bottom:167.721827pt;}
.ycb_c00068{bottom:168.113157pt;}
.yca_c00068{bottom:168.736555pt;}
.yc9_c00068{bottom:169.085323pt;}
.yc8_c00068{bottom:169.788560pt;}
.yc7_c00068{bottom:170.132719pt;}
.yc6_c00068{bottom:170.420069pt;}
.yc5_c00068{bottom:170.961271pt;}
.yc4_c00068{bottom:171.230961pt;}
.yc3_c00068{bottom:171.953539pt;}
.yc2_c00068{bottom:172.237821pt;}
.yc1_c00068{bottom:172.479680pt;}
.yc0_c00068{bottom:172.858741pt;}
.ybf_c00068{bottom:173.312928pt;}
.ybe_c00068{bottom:173.688869pt;}
.ybd_c00068{bottom:173.996721pt;}
.ybc_c00068{bottom:183.557545pt;}
.ybb_c00068{bottom:183.970379pt;}
.yba_c00068{bottom:184.998519pt;}
.yb9_c00068{bottom:185.858763pt;}
.yb8_c00068{bottom:186.130928pt;}
.yb7_c00068{bottom:186.534627pt;}
.yb6_c00068{bottom:187.244168pt;}
.yb5_c00068{bottom:187.562767pt;}
.yb4_c00068{bottom:188.320404pt;}
.yb3_c00068{bottom:188.877665pt;}
.yb2_c00068{bottom:189.227843pt;}
.yb1_c00068{bottom:189.831919pt;}
.yb0_c00068{bottom:199.173748pt;}
.yaf_c00068{bottom:199.483332pt;}
.yae_c00068{bottom:200.034199pt;}
.yad_c00068{bottom:200.783644pt;}
.yac_c00068{bottom:201.276001pt;}
.yab_c00068{bottom:201.842015pt;}
.yaa_c00068{bottom:202.025863pt;}
.ya9_c00068{bottom:202.315915pt;}
.ya8_c00068{bottom:202.672847pt;}
.ya7_c00068{bottom:203.112760pt;}
.ya6_c00068{bottom:203.774303pt;}
.ya5_c00068{bottom:204.682448pt;}
.ya4_c00068{bottom:204.960177pt;}
.ya3_c00068{bottom:215.413296pt;}
.ya2_c00068{bottom:215.650104pt;}
.ya1_c00068{bottom:216.106040pt;}
.ya0_c00068{bottom:216.793688pt;}
.y9f_c00068{bottom:217.467868pt;}
.y9e_c00068{bottom:217.962735pt;}
.y9d_c00068{bottom:218.315260pt;}
.y9c_c00068{bottom:219.005612pt;}
.y9b_c00068{bottom:219.445497pt;}
.y9a_c00068{bottom:219.838011pt;}
.y99_c00068{bottom:220.321333pt;}
.y98_c00068{bottom:253.277515pt;}
.y97_c00068{bottom:253.799829pt;}
.y96_c00068{bottom:254.619691pt;}
.y95_c00068{bottom:255.030357pt;}
.y94_c00068{bottom:255.225547pt;}
.y93_c00068{bottom:256.024299pt;}
.y92_c00068{bottom:256.827851pt;}
.y91_c00068{bottom:257.112043pt;}
.y90_c00068{bottom:257.520832pt;}
.y8f_c00068{bottom:272.383509pt;}
.y8e_c00068{bottom:273.227392pt;}
.y8d_c00068{bottom:273.647189pt;}
.y8c_c00068{bottom:274.188565pt;}
.y8b_c00068{bottom:274.541803pt;}
.y8a_c00068{bottom:275.072021pt;}
.y89_c00068{bottom:276.005696pt;}
.y88_c00068{bottom:276.107115pt;}
.y87_c00068{bottom:276.633365pt;}
.y86_c00068{bottom:277.033664pt;}
.y85_c00068{bottom:277.200000pt;}
.y84_c00068{bottom:293.970520pt;}
.y83_c00068{bottom:294.269340pt;}
.y82_c00068{bottom:295.090200pt;}
.y81_c00068{bottom:296.440000pt;}
.y80_c00068{bottom:313.969355pt;}
.y7f_c00068{bottom:314.391264pt;}
.y7e_c00068{bottom:315.440373pt;}
.y7d_c00068{bottom:316.278304pt;}
.y7c_c00068{bottom:316.665355pt;}
.y7b_c00068{bottom:317.340491pt;}
.y7a_c00068{bottom:317.764000pt;}
.y79_c00068{bottom:334.172627pt;}
.y78_c00068{bottom:334.617507pt;}
.y77_c00068{bottom:334.875587pt;}
.y76_c00068{bottom:335.169233pt;}
.y75_c00068{bottom:335.362940pt;}
.y74_c00068{bottom:336.009413pt;}
.y73_c00068{bottom:336.477133pt;}
.y72_c00068{bottom:336.732493pt;}
.y71_c00068{bottom:337.438173pt;}
.y70_c00068{bottom:353.935233pt;}
.y6f_c00068{bottom:354.211520pt;}
.y6e_c00068{bottom:354.412873pt;}
.y6d_c00068{bottom:355.012760pt;}
.y6c_c00068{bottom:355.229147pt;}
.y6b_c00068{bottom:355.775933pt;}
.y6a_c00068{bottom:356.415113pt;}
.y69_c00068{bottom:356.815653pt;}
.y68_c00068{bottom:357.143347pt;}
.y67_c00068{bottom:373.566773pt;}
.y66_c00068{bottom:373.883653pt;}
.y65_c00068{bottom:374.373253pt;}
.y64_c00068{bottom:375.391993pt;}
.y63_c00068{bottom:376.310213pt;}
.y62_c00068{bottom:377.283293pt;}
.y61_c00068{bottom:377.815013pt;}
.y60_c00068{bottom:378.001333pt;}
.y5f_c00068{bottom:396.163883pt;}
.y5a_c00068{bottom:396.164043pt;}
.y5d_c00068{bottom:396.164085pt;}
.y5c_c00068{bottom:396.164411pt;}
.y5e_c00068{bottom:396.164507pt;}
.y5b_c00068{bottom:396.164645pt;}
.y59_c00068{bottom:396.164651pt;}
.y58_c00068{bottom:415.088933pt;}
.y57_c00068{bottom:415.388389pt;}
.y56_c00068{bottom:415.687397pt;}
.y55_c00068{bottom:415.921173pt;}
.y54_c00068{bottom:416.563845pt;}
.y53_c00068{bottom:416.957797pt;}
.y52_c00068{bottom:417.147621pt;}
.y51_c00068{bottom:417.591973pt;}
.y50_c00068{bottom:418.081333pt;}
.y4f_c00068{bottom:435.289189pt;}
.y4e_c00068{bottom:436.571141pt;}
.y4d_c00068{bottom:436.749413pt;}
.y4c_c00068{bottom:437.362885pt;}
.y4b_c00068{bottom:437.635989pt;}
.y4a_c00068{bottom:438.013861pt;}
.y49_c00068{bottom:438.241333pt;}
.y48_c00068{bottom:456.101589pt;}
.y47_c00068{bottom:456.396176pt;}
.y46_c00068{bottom:456.598603pt;}
.y45_c00068{bottom:457.499069pt;}
.y44_c00068{bottom:457.715112pt;}
.y43_c00068{bottom:458.230296pt;}
.y42_c00068{bottom:459.118789pt;}
.y41_c00068{bottom:475.170968pt;}
.y40_c00068{bottom:477.392723pt;}
.y3f_c00068{bottom:479.037389pt;}
.y3e_c00068{bottom:495.979429pt;}
.y3d_c00068{bottom:496.211101pt;}
.y3c_c00068{bottom:496.903467pt;}
.y3b_c00068{bottom:497.155635pt;}
.y3a_c00068{bottom:498.482667pt;}
.y39_c00068{bottom:533.623339pt;}
.y38_c00068{bottom:534.237813pt;}
.y37_c00068{bottom:535.422592pt;}
.y36_c00068{bottom:536.009888pt;}
.y35_c00068{bottom:536.581888pt;}
.y34_c00068{bottom:537.385643pt;}
.y33_c00068{bottom:537.845685pt;}
.y32_c00068{bottom:538.080501pt;}
.y31_c00068{bottom:553.891488pt;}
.y30_c00068{bottom:554.574464pt;}
.y2f_c00068{bottom:554.890048pt;}
.y2e_c00068{bottom:555.305248pt;}
.y2d_c00068{bottom:555.900555pt;}
.y2c_c00068{bottom:556.241099pt;}
.y2b_c00068{bottom:556.449184pt;}
.y2a_c00068{bottom:557.134485pt;}
.y29_c00068{bottom:557.680299pt;}
.y28_c00068{bottom:557.999680pt;}
.y27_c00068{bottom:573.390485pt;}
.y26_c00068{bottom:574.011008pt;}
.y25_c00068{bottom:574.817664pt;}
.y24_c00068{bottom:575.221611pt;}
.y23_c00068{bottom:575.788565pt;}
.y22_c00068{bottom:576.488533pt;}
.y21_c00068{bottom:576.841579pt;}
.y20_c00068{bottom:577.352533pt;}
.y1f_c00068{bottom:577.793835pt;}
.y1e_c00068{bottom:578.642667pt;}
.y1d_c00068{bottom:595.112109pt;}
.y1c_c00068{bottom:595.468512pt;}
.y1b_c00068{bottom:596.190931pt;}
.y1a_c00068{bottom:596.833195pt;}
.y19_c00068{bottom:597.807259pt;}
.y18_c00068{bottom:598.082667pt;}
.y17_c00068{bottom:617.689333pt;}
.y16_c00068{bottom:636.069645pt;}
.y15_c00068{bottom:636.581717pt;}
.y14_c00068{bottom:637.031045pt;}
.y13_c00068{bottom:637.355428pt;}
.y12_c00068{bottom:637.783079pt;}
.y11_c00068{bottom:638.062992pt;}
.y10_c00068{bottom:638.461632pt;}
.yf_c00068{bottom:638.614767pt;}
.ye_c00068{bottom:638.881333pt;}
.yd_c00068{bottom:657.162667pt;}
.yc_c00068{bottom:676.182667pt;}
.yb_c00068{bottom:676.388000pt;}
.ya_c00068{bottom:676.754667pt;}
.y9_c00068{bottom:677.166667pt;}
.y8_c00068{bottom:677.613333pt;}
.y7_c00068{bottom:677.868000pt;}
.y6_c00068{bottom:678.070667pt;}
.y5_c00068{bottom:678.478667pt;}
.y4_c00068{bottom:678.720000pt;}
.y3_c00068{bottom:697.638667pt;}
.y2_c00068{bottom:718.290667pt;}
.y1_c00068{bottom:799.180000pt;}
.h17_c00068{height:44.803785pt;}
.h18_c00068{height:45.737198pt;}
.h1a_c00068{height:46.670610pt;}
.h19_c00068{height:49.470846pt;}
.h1b_c00068{height:51.333333pt;}
.h12_c00068{height:58.806615pt;}
.h4_c00068{height:62.533333pt;}
.h11_c00068{height:62.537836pt;}
.h13_c00068{height:62.540368pt;}
.h6_c00068{height:63.470506pt;}
.h14_c00068{height:63.473806pt;}
.ha_c00068{height:63.474790pt;}
.hf_c00068{height:64.404637pt;}
.h8_c00068{height:64.406311pt;}
.hb_c00068{height:64.408243pt;}
.h5_c00068{height:65.333333pt;}
.h10_c00068{height:65.338037pt;}
.hc_c00068{height:65.339736pt;}
.h9_c00068{height:65.341695pt;}
.h7_c00068{height:66.266667pt;}
.h16_c00068{height:66.274121pt;}
.h3_c00068{height:67.200000pt;}
.h15_c00068{height:67.208601pt;}
.he_c00068{height:73.740559pt;}
.hd_c00068{height:77.474258pt;}
.h2_c00068{height:129.733333pt;}
.h1_c00068{height:893.333333pt;}
.h0_c00068{height:893.466667pt;}
.w0_c00068{width:627.066667pt;}
.w1_c00068{width:627.333333pt;}
.x0_c00068{left:0.000000pt;}
.x81_c00068{left:75.979532pt;}
.x86_c00068{left:88.637181pt;}
.x73_c00068{left:92.782667pt;}
.x7b_c00068{left:104.263612pt;}
.x87_c00068{left:107.907103pt;}
.x3e_c00068{left:109.912555pt;}
.x5b_c00068{left:112.452000pt;}
.x82_c00068{left:119.164311pt;}
.x45_c00068{left:120.565333pt;}
.x5f_c00068{left:122.496127pt;}
.x49_c00068{left:123.911003pt;}
.x2f_c00068{left:125.346667pt;}
.x18_c00068{left:126.240000pt;}
.x2_c00068{left:127.200000pt;}
.x9_c00068{left:128.160000pt;}
.x74_c00068{left:129.961333pt;}
.x88_c00068{left:131.388851pt;}
.x47_c00068{left:138.292627pt;}
.x1_c00068{left:142.320000pt;}
.x50_c00068{left:144.094667pt;}
.x2a_c00068{left:146.224000pt;}
.x6b_c00068{left:147.993333pt;}
.x36_c00068{left:149.832288pt;}
.x1f_c00068{left:151.069333pt;}
.x27_c00068{left:152.640000pt;}
.x11_c00068{left:153.974667pt;}
.x19_c00068{left:155.280000pt;}
.x3f_c00068{left:156.258635pt;}
.x5c_c00068{left:160.321333pt;}
.x56_c00068{left:163.682544pt;}
.x20_c00068{left:164.990667pt;}
.x53_c00068{left:166.168000pt;}
.x8e_c00068{left:168.077324pt;}
.x51_c00068{left:175.584000pt;}
.xa_c00068{left:177.120000pt;}
.x30_c00068{left:178.398667pt;}
.x63_c00068{left:179.370827pt;}
.x6c_c00068{left:180.884000pt;}
.x4a_c00068{left:183.183515pt;}
.x57_c00068{left:185.524363pt;}
.x6d_c00068{left:187.222667pt;}
.x37_c00068{left:188.780192pt;}
.x67_c00068{left:193.250667pt;}
.xb_c00068{left:198.960000pt;}
.x21_c00068{left:201.230667pt;}
.x54_c00068{left:203.197333pt;}
.x1a_c00068{left:204.480000pt;}
.x3_c00068{left:205.680000pt;}
.x40_c00068{left:209.827488pt;}
.x8f_c00068{left:212.021131pt;}
.x58_c00068{left:214.325840pt;}
.x2b_c00068{left:215.800000pt;}
.x4b_c00068{left:217.505696pt;}
.x1b_c00068{left:219.120000pt;}
.x12_c00068{left:221.914667pt;}
.xc_c00068{left:224.400000pt;}
.x22_c00068{left:226.677333pt;}
.x90_c00068{left:227.830775pt;}
.x4c_c00068{left:231.889491pt;}
.x46_c00068{left:233.365333pt;}
.x64_c00068{left:235.044507pt;}
.x60_c00068{left:236.506600pt;}
.x31_c00068{left:237.914667pt;}
.x6e_c00068{left:245.577333pt;}
.x75_c00068{left:247.096000pt;}
.x41_c00068{left:247.994773pt;}
.x13_c00068{left:250.206667pt;}
.x38_c00068{left:252.535552pt;}
.x28_c00068{left:254.640000pt;}
.x7c_c00068{left:256.720976pt;}
.x32_c00068{left:259.980000pt;}
.x2c_c00068{left:261.676000pt;}
.x4_c00068{left:263.280000pt;}
.x52_c00068{left:264.321333pt;}
.x23_c00068{left:265.554667pt;}
.x91_c00068{left:268.153491pt;}
.x59_c00068{left:270.249888pt;}
.x29_c00068{left:271.680000pt;}
.x76_c00068{left:274.213333pt;}
.x39_c00068{left:276.820320pt;}
.x1c_c00068{left:278.640000pt;}
.x7d_c00068{left:280.484352pt;}
.x5_c00068{left:282.000000pt;}
.x65_c00068{left:284.721987pt;}
.x42_c00068{left:287.118059pt;}
.xd_c00068{left:288.960000pt;}
.x93_c00068{left:290.853664pt;}
.x4d_c00068{left:291.921984pt;}
.x24_c00068{left:295.044000pt;}
.x72_c00068{left:296.700597pt;}
.x14_c00068{left:299.885333pt;}
.x6f_c00068{left:300.793333pt;}
.x33_c00068{left:303.728000pt;}
.x4e_c00068{left:305.428464pt;}
.x69_c00068{left:308.960000pt;}
.x1d_c00068{left:311.280000pt;}
.x77_c00068{left:312.280000pt;}
.x2d_c00068{left:313.277333pt;}
.x3a_c00068{left:319.361685pt;}
.x6_c00068{left:321.600000pt;}
.x4f_c00068{left:325.041517pt;}
.x6a_c00068{left:328.881333pt;}
.x7_c00068{left:330.480000pt;}
.xe_c00068{left:332.880000pt;}
.x70_c00068{left:334.629333pt;}
.x25_c00068{left:335.892000pt;}
.x2e_c00068{left:338.734667pt;}
.x5a_c00068{left:341.054747pt;}
.x66_c00068{left:342.063707pt;}
.x15_c00068{left:345.708000pt;}
.x3b_c00068{left:349.062645pt;}
.x61_c00068{left:350.049033pt;}
.x89_c00068{left:351.716271pt;}
.x5d_c00068{left:354.324000pt;}
.x1e_c00068{left:358.080000pt;}
.x83_c00068{left:359.654489pt;}
.x68_c00068{left:361.750667pt;}
.x8_c00068{left:364.800000pt;}
.x43_c00068{left:366.084651pt;}
.x3c_c00068{left:371.620704pt;}
.x55_c00068{left:374.754667pt;}
.xf_c00068{left:375.840000pt;}
.x26_c00068{left:382.444000pt;}
.x16_c00068{left:386.496000pt;}
.x62_c00068{left:389.893500pt;}
.x48_c00068{left:396.081024pt;}
.x44_c00068{left:407.073312pt;}
.x5e_c00068{left:408.089333pt;}
.x17_c00068{left:409.330667pt;}
.x71_c00068{left:413.609333pt;}
.x34_c00068{left:414.825333pt;}
.x78_c00068{left:417.036000pt;}
.x3d_c00068{left:420.391595pt;}
.x10_c00068{left:429.120000pt;}
.x7e_c00068{left:432.612400pt;}
.x79_c00068{left:452.108000pt;}
.x35_c00068{left:453.608000pt;}
.x8a_c00068{left:456.384180pt;}
.x7f_c00068{left:469.344780pt;}
.x7a_c00068{left:470.324000pt;}
.x8b_c00068{left:480.844560pt;}
.x80_c00068{left:489.978909pt;}
.x84_c00068{left:494.554072pt;}
.x8c_c00068{left:498.361217pt;}
.x92_c00068{left:514.129492pt;}
.x8d_c00068{left:519.447069pt;}
.x85_c00068{left:524.053691pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m6_c00069{transform:matrix(0.013329,0.000133,-0.002500,0.249988,0,0);-ms-transform:matrix(0.013329,0.000133,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.013329,0.000133,-0.002500,0.249988,0,0);}
.m25_c00069{transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);-ms-transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);}
.md2_c00069{transform:matrix(0.015474,0.000186,-0.003000,0.249982,0,0);-ms-transform:matrix(0.015474,0.000186,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.015474,0.000186,-0.003000,0.249982,0,0);}
.me6_c00069{transform:matrix(0.018479,0.000222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.018479,0.000222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.018479,0.000222,-0.003000,0.249982,0,0);}
.ma5_c00069{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);}
.ma1_c00069{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);}
.me9_c00069{transform:matrix(0.092398,0.001109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.092398,0.001109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.092398,0.001109,-0.003000,0.249982,0,0);}
.mc4_c00069{transform:matrix(0.105905,0.001483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.105905,0.001483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.105905,0.001483,-0.003500,0.249976,0,0);}
.mdb_c00069{transform:matrix(0.115257,0.001383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.115257,0.001383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.115257,0.001383,-0.003000,0.249982,0,0);}
.mde_c00069{transform:matrix(0.126421,0.001517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.126421,0.001517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.126421,0.001517,-0.003000,0.249982,0,0);}
.m4a_c00069{transform:matrix(0.129159,0.001292,-0.002500,0.249988,0,0);-ms-transform:matrix(0.129159,0.001292,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.129159,0.001292,-0.002500,0.249988,0,0);}
.m6e_c00069{transform:matrix(0.135033,0.001350,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135033,0.001350,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135033,0.001350,-0.002500,0.249988,0,0);}
.m67_c00069{transform:matrix(0.135528,0.001355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135528,0.001355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135528,0.001355,-0.002500,0.249988,0,0);}
.mc5_c00069{transform:matrix(0.136202,0.001907,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136202,0.001907,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136202,0.001907,-0.003500,0.249976,0,0);}
.ma2_c00069{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);}
.m9e_c00069{transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);}
.m6d_c00069{transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);}
.mc3_c00069{transform:matrix(0.144461,0.002022,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144461,0.002022,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144461,0.002022,-0.003500,0.249976,0,0);}
.m76_c00069{transform:matrix(0.148338,0.001483,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148338,0.001483,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148338,0.001483,-0.002500,0.249988,0,0);}
.m4f_c00069{transform:matrix(0.148838,0.001488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148838,0.001488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148838,0.001488,-0.002500,0.249988,0,0);}
.m1_c00069{transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149470,0.000000,0.000000,0.250000,0,0);}
.ma4_c00069{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);}
.m14_c00069{transform:matrix(0.152137,0.001521,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152137,0.001521,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152137,0.001521,-0.002500,0.249988,0,0);}
.m3b_c00069{transform:matrix(0.153107,0.001531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153107,0.001531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153107,0.001531,-0.002500,0.249988,0,0);}
.me_c00069{transform:matrix(0.154047,0.001540,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154047,0.001540,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154047,0.001540,-0.002500,0.249988,0,0);}
.m9d_c00069{transform:matrix(0.156977,0.001570,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156977,0.001570,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156977,0.001570,-0.002500,0.249988,0,0);}
.mbd_c00069{transform:matrix(0.157585,0.002206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157585,0.002206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157585,0.002206,-0.003500,0.249976,0,0);}
.m9_c00069{transform:matrix(0.157597,0.001576,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157597,0.001576,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157597,0.001576,-0.002500,0.249988,0,0);}
.mb9_c00069{transform:matrix(0.162114,0.002270,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162114,0.002270,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162114,0.002270,-0.003500,0.249976,0,0);}
.m58_c00069{transform:matrix(0.162642,0.001626,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162642,0.001626,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162642,0.001626,-0.002500,0.249988,0,0);}
.mc6_c00069{transform:matrix(0.163714,0.002292,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163714,0.002292,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163714,0.002292,-0.003500,0.249976,0,0);}
.m1e_c00069{transform:matrix(0.164132,0.001641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164132,0.001641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164132,0.001641,-0.002500,0.249988,0,0);}
.m27_c00069{transform:matrix(0.164207,0.001642,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164207,0.001642,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164207,0.001642,-0.002500,0.249988,0,0);}
.m8b_c00069{transform:matrix(0.166062,0.001661,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166062,0.001661,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166062,0.001661,-0.002500,0.249988,0,0);}
.ma0_c00069{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);}
.m28_c00069{transform:matrix(0.166192,0.001662,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166192,0.001662,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166192,0.001662,-0.002500,0.249988,0,0);}
.mbe_c00069{transform:matrix(0.166889,0.002336,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166889,0.002336,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166889,0.002336,-0.003500,0.249976,0,0);}
.m2d_c00069{transform:matrix(0.167177,0.001672,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167177,0.001672,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167177,0.001672,-0.002500,0.249988,0,0);}
.m48_c00069{transform:matrix(0.168442,0.001684,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168442,0.001684,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168442,0.001684,-0.002500,0.249988,0,0);}
.mce_c00069{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);}
.m2e_c00069{transform:matrix(0.168572,0.001686,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168572,0.001686,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168572,0.001686,-0.002500,0.249988,0,0);}
.m23_c00069{transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);}
.m3a_c00069{transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);}
.m1c_c00069{transform:matrix(0.169682,0.001697,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169682,0.001697,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169682,0.001697,-0.002500,0.249988,0,0);}
.m46_c00069{transform:matrix(0.169982,0.001700,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169982,0.001700,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169982,0.001700,-0.002500,0.249988,0,0);}
.m3c_c00069{transform:matrix(0.170061,0.001701,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170061,0.001701,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170061,0.001701,-0.002500,0.249988,0,0);}
.m4e_c00069{transform:matrix(0.170596,0.001706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170596,0.001706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170596,0.001706,-0.002500,0.249988,0,0);}
.m7f_c00069{transform:matrix(0.171116,0.001711,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171116,0.001711,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171116,0.001711,-0.002500,0.249988,0,0);}
.m98_c00069{transform:matrix(0.171596,0.001716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171596,0.001716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171596,0.001716,-0.002500,0.249988,0,0);}
.mb6_c00069{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);}
.m8d_c00069{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);}
.m0_c00069{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);}
.m61_c00069{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);}
.m85_c00069{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);}
.m1d_c00069{transform:matrix(0.174616,0.001746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174616,0.001746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174616,0.001746,-0.002500,0.249988,0,0);}
.m1a_c00069{transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176321,0.001763,-0.002500,0.249988,0,0);}
.m35_c00069{transform:matrix(0.176546,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176546,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176546,0.001765,-0.002500,0.249988,0,0);}
.m38_c00069{transform:matrix(0.176686,0.001767,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176686,0.001767,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176686,0.001767,-0.002500,0.249988,0,0);}
.m34_c00069{transform:matrix(0.176741,0.001767,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176741,0.001767,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176741,0.001767,-0.002500,0.249988,0,0);}
.m15_c00069{transform:matrix(0.176811,0.001768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176811,0.001768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176811,0.001768,-0.002500,0.249988,0,0);}
.m3d_c00069{transform:matrix(0.177101,0.001771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177101,0.001771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177101,0.001771,-0.002500,0.249988,0,0);}
.mb3_c00069{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);}
.m6a_c00069{transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);}
.m47_c00069{transform:matrix(0.178521,0.001785,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178521,0.001785,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178521,0.001785,-0.002500,0.249988,0,0);}
.m2b_c00069{transform:matrix(0.178601,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178601,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178601,0.001786,-0.002500,0.249988,0,0);}
.m87_c00069{transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);}
.m4b_c00069{transform:matrix(0.179491,0.001795,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179491,0.001795,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179491,0.001795,-0.002500,0.249988,0,0);}
.m82_c00069{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);}
.m7b_c00069{transform:matrix(0.180451,0.001805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180451,0.001805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180451,0.001805,-0.002500,0.249988,0,0);}
.m17_c00069{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);}
.m88_c00069{transform:matrix(0.181551,0.001816,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181551,0.001816,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181551,0.001816,-0.002500,0.249988,0,0);}
.m74_c00069{transform:matrix(0.182131,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182131,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182131,0.001821,-0.002500,0.249988,0,0);}
.mc9_c00069{transform:matrix(0.182537,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182537,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182537,0.002556,-0.003500,0.249976,0,0);}
.m60_c00069{transform:matrix(0.182786,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182786,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182786,0.001828,-0.002500,0.249988,0,0);}
.m20_c00069{transform:matrix(0.182836,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182836,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182836,0.001828,-0.002500,0.249988,0,0);}
.mec_c00069{transform:matrix(0.184907,0.002219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184907,0.002219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184907,0.002219,-0.003000,0.249982,0,0);}
.mc0_c00069{transform:matrix(0.184967,0.002590,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184967,0.002590,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184967,0.002590,-0.003500,0.249976,0,0);}
.m30_c00069{transform:matrix(0.186451,0.001865,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186451,0.001865,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186451,0.001865,-0.002500,0.249988,0,0);}
.m5c_c00069{transform:matrix(0.187666,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187666,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187666,0.001877,-0.002500,0.249988,0,0);}
.m53_c00069{transform:matrix(0.188071,0.001881,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188071,0.001881,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188071,0.001881,-0.002500,0.249988,0,0);}
.med_c00069{transform:matrix(0.188921,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188921,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188921,0.002267,-0.003000,0.249982,0,0);}
.m99_c00069{transform:matrix(0.189221,0.001892,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189221,0.001892,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189221,0.001892,-0.002500,0.249988,0,0);}
.mb7_c00069{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);}
.m5f_c00069{transform:matrix(0.189891,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189891,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189891,0.001899,-0.002500,0.249988,0,0);}
.mbf_c00069{transform:matrix(0.190106,0.002661,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190106,0.002661,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190106,0.002661,-0.003500,0.249976,0,0);}
.mb5_c00069{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_c00069{transform:matrix(0.190580,0.001906,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190580,0.001906,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190580,0.001906,-0.002500,0.249988,0,0);}
.mb2_c00069{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);}
.m18_c00069{transform:matrix(0.191115,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191115,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191115,0.001911,-0.002500,0.249988,0,0);}
.md6_c00069{transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);}
.m51_c00069{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);}
.m2c_c00069{transform:matrix(0.191880,0.001919,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191880,0.001919,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191880,0.001919,-0.002500,0.249988,0,0);}
.m97_c00069{transform:matrix(0.192105,0.001921,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192105,0.001921,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192105,0.001921,-0.002500,0.249988,0,0);}
.m71_c00069{transform:matrix(0.192735,0.001927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192735,0.001927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192735,0.001927,-0.002500,0.249988,0,0);}
.ma7_c00069{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);}
.m55_c00069{transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);}
.m16_c00069{transform:matrix(0.193525,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193525,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193525,0.001935,-0.002500,0.249988,0,0);}
.mc8_c00069{transform:matrix(0.194271,0.002720,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194271,0.002720,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194271,0.002720,-0.003500,0.249976,0,0);}
.m54_c00069{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);}
.m37_c00069{transform:matrix(0.195095,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195095,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195095,0.001951,-0.002500,0.249988,0,0);}
.m5b_c00069{transform:matrix(0.195260,0.001953,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195260,0.001953,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195260,0.001953,-0.002500,0.249988,0,0);}
.m7c_c00069{transform:matrix(0.195315,0.001953,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195315,0.001953,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195315,0.001953,-0.002500,0.249988,0,0);}
.m32_c00069{transform:matrix(0.195365,0.001954,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195365,0.001954,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195365,0.001954,-0.002500,0.249988,0,0);}
.md4_c00069{transform:matrix(0.195381,0.002345,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195381,0.002345,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195381,0.002345,-0.003000,0.249982,0,0);}
.md5_c00069{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);}
.m90_c00069{transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);}
.m84_c00069{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);}
.m2f_c00069{transform:matrix(0.196970,0.001970,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196970,0.001970,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196970,0.001970,-0.002500,0.249988,0,0);}
.mb1_c00069{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);}
.m64_c00069{transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);}
.mc1_c00069{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);}
.m12_c00069{transform:matrix(0.197880,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197880,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197880,0.001979,-0.002500,0.249988,0,0);}
.m77_c00069{transform:matrix(0.198140,0.001981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198140,0.001981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198140,0.001981,-0.002500,0.249988,0,0);}
.m6b_c00069{transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);}
.mb_c00069{transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);}
.m8_c00069{transform:matrix(0.199065,0.001991,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199065,0.001991,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199065,0.001991,-0.002500,0.249988,0,0);}
.me4_c00069{transform:matrix(0.199841,0.002398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199841,0.002398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199841,0.002398,-0.003000,0.249982,0,0);}
.m31_c00069{transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);}
.mee_c00069{transform:matrix(0.200466,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200466,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200466,0.002406,-0.003000,0.249982,0,0);}
.m19_c00069{transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);}
.m52_c00069{transform:matrix(0.201035,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201035,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201035,0.002010,-0.002500,0.249988,0,0);}
.md7_c00069{transform:matrix(0.201156,0.002414,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201156,0.002414,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201156,0.002414,-0.003000,0.249982,0,0);}
.m62_c00069{transform:matrix(0.201260,0.002013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201260,0.002013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201260,0.002013,-0.002500,0.249988,0,0);}
.mad_c00069{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);}
.m75_c00069{transform:matrix(0.201780,0.002018,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201780,0.002018,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201780,0.002018,-0.002500,0.249988,0,0);}
.m5e_c00069{transform:matrix(0.201845,0.002018,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201845,0.002018,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201845,0.002018,-0.002500,0.249988,0,0);}
.m43_c00069{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);}
.m22_c00069{transform:matrix(0.202085,0.002021,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202085,0.002021,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202085,0.002021,-0.002500,0.249988,0,0);}
.m21_c00069{transform:matrix(0.202550,0.002025,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202550,0.002025,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202550,0.002025,-0.002500,0.249988,0,0);}
.m39_c00069{transform:matrix(0.203260,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203260,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203260,0.002033,-0.002500,0.249988,0,0);}
.m66_c00069{transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);}
.mb8_c00069{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);}
.m8e_c00069{transform:matrix(0.203755,0.002038,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203755,0.002038,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203755,0.002038,-0.002500,0.249988,0,0);}
.mc_c00069{transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);}
.md8_c00069{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);}
.m59_c00069{transform:matrix(0.205635,0.002056,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205635,0.002056,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205635,0.002056,-0.002500,0.249988,0,0);}
.m3_c00069{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);}
.mbc_c00069{transform:matrix(0.206205,0.002887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206205,0.002887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206205,0.002887,-0.003500,0.249976,0,0);}
.mc2_c00069{transform:matrix(0.206260,0.002888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206260,0.002888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206260,0.002888,-0.003500,0.249976,0,0);}
.m83_c00069{transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);}
.m4c_c00069{transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);}
.m4d_c00069{transform:matrix(0.207080,0.002071,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207080,0.002071,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207080,0.002071,-0.002500,0.249988,0,0);}
.m5d_c00069{transform:matrix(0.207295,0.002073,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207295,0.002073,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207295,0.002073,-0.002500,0.249988,0,0);}
.md_c00069{transform:matrix(0.207610,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207610,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207610,0.002076,-0.002500,0.249988,0,0);}
.mc7_c00069{transform:matrix(0.207815,0.002909,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207815,0.002909,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207815,0.002909,-0.003500,0.249976,0,0);}
.m3e_c00069{transform:matrix(0.208215,0.002082,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208215,0.002082,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208215,0.002082,-0.002500,0.249988,0,0);}
.mab_c00069{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);}
.m6f_c00069{transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208985,0.002090,-0.002500,0.249988,0,0);}
.m26_c00069{transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);}
.mbb_c00069{transform:matrix(0.209489,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209489,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209489,0.002933,-0.003500,0.249976,0,0);}
.m8f_c00069{transform:matrix(0.210005,0.002100,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210005,0.002100,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210005,0.002100,-0.002500,0.249988,0,0);}
.m81_c00069{transform:matrix(0.210294,0.002103,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210294,0.002103,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210294,0.002103,-0.002500,0.249988,0,0);}
.m24_c00069{transform:matrix(0.210554,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210554,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210554,0.002106,-0.002500,0.249988,0,0);}
.m78_c00069{transform:matrix(0.210914,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210914,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210914,0.002109,-0.002500,0.249988,0,0);}
.m92_c00069{transform:matrix(0.211149,0.002111,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211149,0.002111,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211149,0.002111,-0.002500,0.249988,0,0);}
.m6c_c00069{transform:matrix(0.212279,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212279,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212279,0.002123,-0.002500,0.249988,0,0);}
.m93_c00069{transform:matrix(0.213644,0.002136,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213644,0.002136,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213644,0.002136,-0.002500,0.249988,0,0);}
.m45_c00069{transform:matrix(0.214184,0.002142,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214184,0.002142,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214184,0.002142,-0.002500,0.249988,0,0);}
.ma6_c00069{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);}
.m8a_c00069{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);}
.m63_c00069{transform:matrix(0.215169,0.002152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215169,0.002152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215169,0.002152,-0.002500,0.249988,0,0);}
.m89_c00069{transform:matrix(0.215304,0.002153,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215304,0.002153,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215304,0.002153,-0.002500,0.249988,0,0);}
.mea_c00069{transform:matrix(0.215629,0.002588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215629,0.002588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215629,0.002588,-0.003000,0.249982,0,0);}
.m5a_c00069{transform:matrix(0.215804,0.002158,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215804,0.002158,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215804,0.002158,-0.002500,0.249988,0,0);}
.m7a_c00069{transform:matrix(0.215879,0.002159,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215879,0.002159,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215879,0.002159,-0.002500,0.249988,0,0);}
.md3_c00069{transform:matrix(0.216044,0.002593,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216044,0.002593,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216044,0.002593,-0.003000,0.249982,0,0);}
.mcf_c00069{transform:matrix(0.216154,0.002594,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216154,0.002594,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216154,0.002594,-0.003000,0.249982,0,0);}
.m1b_c00069{transform:matrix(0.216244,0.002162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216244,0.002162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216244,0.002162,-0.002500,0.249988,0,0);}
.ma3_c00069{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);}
.m1f_c00069{transform:matrix(0.216709,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216709,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216709,0.002167,-0.002500,0.249988,0,0);}
.m73_c00069{transform:matrix(0.217109,0.002171,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217109,0.002171,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217109,0.002171,-0.002500,0.249988,0,0);}
.m72_c00069{transform:matrix(0.217304,0.002173,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217304,0.002173,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217304,0.002173,-0.002500,0.249988,0,0);}
.mb4_c00069{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);}
.m70_c00069{transform:matrix(0.218869,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218869,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218869,0.002189,-0.002500,0.249988,0,0);}
.m3f_c00069{transform:matrix(0.219144,0.002191,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219144,0.002191,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219144,0.002191,-0.002500,0.249988,0,0);}
.m57_c00069{transform:matrix(0.219714,0.002197,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219714,0.002197,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219714,0.002197,-0.002500,0.249988,0,0);}
.m8c_c00069{transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220514,0.002205,-0.002500,0.249988,0,0);}
.m44_c00069{transform:matrix(0.220834,0.002208,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220834,0.002208,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220834,0.002208,-0.002500,0.249988,0,0);}
.me5_c00069{transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);}
.m36_c00069{transform:matrix(0.222249,0.002222,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222249,0.002222,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222249,0.002222,-0.002500,0.249988,0,0);}
.m29_c00069{transform:matrix(0.224784,0.002248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224784,0.002248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224784,0.002248,-0.002500,0.249988,0,0);}
.m9c_c00069{transform:matrix(0.225479,0.002255,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225479,0.002255,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225479,0.002255,-0.002500,0.249988,0,0);}
.m65_c00069{transform:matrix(0.226369,0.002264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226369,0.002264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226369,0.002264,-0.002500,0.249988,0,0);}
.m91_c00069{transform:matrix(0.227284,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227284,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227284,0.002273,-0.002500,0.249988,0,0);}
.m50_c00069{transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);}
.m86_c00069{transform:matrix(0.229079,0.002291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229079,0.002291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229079,0.002291,-0.002500,0.249988,0,0);}
.meb_c00069{transform:matrix(0.230008,0.002760,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230008,0.002760,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230008,0.002760,-0.003000,0.249982,0,0);}
.me0_c00069{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);}
.ma_c00069{transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);}
.m42_c00069{transform:matrix(0.231433,0.002314,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231433,0.002314,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231433,0.002314,-0.002500,0.249988,0,0);}
.mcd_c00069{transform:matrix(0.231818,0.002782,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231818,0.002782,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231818,0.002782,-0.003000,0.249982,0,0);}
.mca_c00069{transform:matrix(0.232618,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232618,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232618,0.002791,-0.003000,0.249982,0,0);}
.m40_c00069{transform:matrix(0.233583,0.002336,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233583,0.002336,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233583,0.002336,-0.002500,0.249988,0,0);}
.m7e_c00069{transform:matrix(0.233868,0.002339,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233868,0.002339,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233868,0.002339,-0.002500,0.249988,0,0);}
.me7_c00069{transform:matrix(0.233948,0.002807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233948,0.002807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233948,0.002807,-0.003000,0.249982,0,0);}
.m49_c00069{transform:matrix(0.235853,0.002359,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235853,0.002359,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235853,0.002359,-0.002500,0.249988,0,0);}
.m94_c00069{transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);}
.m69_c00069{transform:matrix(0.236863,0.002369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236863,0.002369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236863,0.002369,-0.002500,0.249988,0,0);}
.m13_c00069{transform:matrix(0.237993,0.002380,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237993,0.002380,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237993,0.002380,-0.002500,0.249988,0,0);}
.m2a_c00069{transform:matrix(0.238173,0.002382,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238173,0.002382,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238173,0.002382,-0.002500,0.249988,0,0);}
.mcc_c00069{transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);}
.m68_c00069{transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);}
.m95_c00069{transform:matrix(0.240838,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240838,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240838,0.002408,-0.002500,0.249988,0,0);}
.mdd_c00069{transform:matrix(0.243082,0.002917,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243082,0.002917,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243082,0.002917,-0.003000,0.249982,0,0);}
.mdc_c00069{transform:matrix(0.243937,0.002927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243937,0.002927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243937,0.002927,-0.003000,0.249982,0,0);}
.mba_c00069{transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);}
.mdf_c00069{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);}
.mae_c00069{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);}
.mda_c00069{transform:matrix(0.247432,0.002969,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247432,0.002969,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247432,0.002969,-0.003000,0.249982,0,0);}
.m33_c00069{transform:matrix(0.249263,0.002493,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249263,0.002493,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249263,0.002493,-0.002500,0.249988,0,0);}
.md1_c00069{transform:matrix(0.249992,0.003000,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249992,0.003000,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249992,0.003000,-0.003000,0.249982,0,0);}
.m96_c00069{transform:matrix(0.253592,0.002536,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253592,0.002536,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253592,0.002536,-0.002500,0.249988,0,0);}
.md9_c00069{transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);}
.m9b_c00069{transform:matrix(0.259377,0.002594,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259377,0.002594,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259377,0.002594,-0.002500,0.249988,0,0);}
.me3_c00069{transform:matrix(0.260436,0.003125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260436,0.003125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260436,0.003125,-0.003000,0.249982,0,0);}
.mf_c00069{transform:matrix(0.262742,0.002627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262742,0.002627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262742,0.002627,-0.002500,0.249988,0,0);}
.m80_c00069{transform:matrix(0.267512,0.002675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267512,0.002675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267512,0.002675,-0.002500,0.249988,0,0);}
.m7_c00069{transform:matrix(0.268442,0.002684,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268442,0.002684,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268442,0.002684,-0.002500,0.249988,0,0);}
.m7d_c00069{transform:matrix(0.294330,0.002943,-0.002500,0.249988,0,0);-ms-transform:matrix(0.294330,0.002943,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.294330,0.002943,-0.002500,0.249988,0,0);}
.md0_c00069{transform:matrix(0.300753,0.003609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300753,0.003609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300753,0.003609,-0.003000,0.249982,0,0);}
.m2_c00069{transform:matrix(0.301410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00069{transform:matrix(0.303480,0.003035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303480,0.003035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303480,0.003035,-0.002500,0.249988,0,0);}
.maa_c00069{transform:matrix(0.309670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309670,0.000000,0.000000,0.250000,0,0);}
.me1_c00069{transform:matrix(0.315657,0.003788,-0.003000,0.249982,0,0);-ms-transform:matrix(0.315657,0.003788,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.315657,0.003788,-0.003000,0.249982,0,0);}
.mcb_c00069{transform:matrix(0.317217,0.003807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.317217,0.003807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.317217,0.003807,-0.003000,0.249982,0,0);}
.m4_c00069{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);}
.ma8_c00069{transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.333893,0.003339,-0.002500,0.249988,0,0);-ms-transform:matrix(0.333893,0.003339,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.333893,0.003339,-0.002500,0.249988,0,0);}
.ma9_c00069{transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341935,0.000000,0.000000,0.250000,0,0);}
.mac_c00069{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);}
.m79_c00069{transform:matrix(0.358727,0.003587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.358727,0.003587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.358727,0.003587,-0.002500,0.249988,0,0);}
.m10_c00069{transform:matrix(0.360077,0.003601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.360077,0.003601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.360077,0.003601,-0.002500,0.249988,0,0);}
.maf_c00069{transform:matrix(0.368770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368770,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.405650,0.004056,-0.002500,0.249988,0,0);-ms-transform:matrix(0.405650,0.004056,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.405650,0.004056,-0.002500,0.249988,0,0);}
.me2_c00069{transform:matrix(0.416915,0.005003,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416915,0.005003,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416915,0.005003,-0.003000,0.249982,0,0);}
.me8_c00069{transform:matrix(0.418350,0.005020,-0.003000,0.249982,0,0);-ms-transform:matrix(0.418350,0.005020,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.418350,0.005020,-0.003000,0.249982,0,0);}
.m5_c00069{transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);}
.mb0_c00069{transform:matrix(0.531945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531945,0.000000,0.000000,0.250000,0,0);}
.m9f_c00069{transform:matrix(0.640960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640960,0.000000,0.000000,0.250000,0,0);}
.mef_c00069{transform:matrix(0.651038,0.007812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.651038,0.007812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.651038,0.007812,-0.003000,0.249982,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;}
.fs0_c00069{font-size:22.050000px;}
.fsd_c00069{font-size:26.250000px;}
.fs1_c00069{font-size:35.700000px;}
.fs2_c00069{font-size:44.100000px;}
.fsf_c00069{font-size:45.150000px;}
.fs18_c00069{font-size:46.203326px;}
.fs17_c00069{font-size:49.353553px;}
.fsb_c00069{font-size:58.802940px;}
.fs19_c00069{font-size:58.804233px;}
.fse_c00069{font-size:60.900000px;}
.fs3_c00069{font-size:64.053202px;}
.fs7_c00069{font-size:66.153307px;}
.fs4_c00069{font-size:67.203360px;}
.fs14_c00069{font-size:68.250000px;}
.fs6_c00069{font-size:68.253412px;}
.fs8_c00069{font-size:69.303465px;}
.fsa_c00069{font-size:70.353517px;}
.fsc_c00069{font-size:71.403570px;}
.fs9_c00069{font-size:72.453622px;}
.fs5_c00069{font-size:73.503675px;}
.fs15_c00069{font-size:75.607408px;}
.fs16_c00069{font-size:77.707614px;}
.fs13_c00069{font-size:100.800000px;}
.fs11_c00069{font-size:106.050000px;}
.fs10_c00069{font-size:119.700000px;}
.fs12_c00069{font-size:143.850000px;}
.y0_c00069{bottom:0.000000px;}
.ye3_c00069{bottom:148.568856px;}
.ye4_c00069{bottom:148.568994px;}
.ye5_c00069{bottom:148.569090px;}
.ye6_c00069{bottom:148.569828px;}
.ye7_c00069{bottom:148.569960px;}
.ye2_c00069{bottom:161.882520px;}
.ye1_c00069{bottom:161.975088px;}
.ye0_c00069{bottom:162.195024px;}
.ydf_c00069{bottom:162.798804px;}
.yde_c00069{bottom:162.839244px;}
.ydd_c00069{bottom:163.566972px;}
.ydc_c00069{bottom:163.896042px;}
.ydb_c00069{bottom:164.176764px;}
.yda_c00069{bottom:164.367210px;}
.yd9_c00069{bottom:164.774190px;}
.yd8_c00069{bottom:165.062856px;}
.yd7_c00069{bottom:165.375270px;}
.yd6_c00069{bottom:165.507288px;}
.yd5_c00069{bottom:166.106226px;}
.yd4_c00069{bottom:166.643442px;}
.yd3_c00069{bottom:166.768020px;}
.yd2_c00069{bottom:167.400390px;}
.yd1_c00069{bottom:184.553952px;}
.yd0_c00069{bottom:184.787016px;}
.ycf_c00069{bottom:185.126496px;}
.yce_c00069{bottom:185.652150px;}
.ycd_c00069{bottom:185.999082px;}
.ycc_c00069{bottom:186.442494px;}
.ycb_c00069{bottom:186.944928px;}
.yca_c00069{bottom:187.194354px;}
.yc9_c00069{bottom:187.875168px;}
.yc8_c00069{bottom:188.088882px;}
.yc7_c00069{bottom:188.494080px;}
.yc6_c00069{bottom:188.739870px;}
.yc5_c00069{bottom:189.168108px;}
.yc4_c00069{bottom:189.611916px;}
.yc3_c00069{bottom:189.877776px;}
.yc2_c00069{bottom:190.081500px;}
.yc1_c00069{bottom:230.696721px;}
.yc0_c00069{bottom:230.965440px;}
.ybf_c00069{bottom:231.384396px;}
.ybe_c00069{bottom:231.960963px;}
.ybd_c00069{bottom:232.476756px;}
.ybc_c00069{bottom:232.678695px;}
.ybb_c00069{bottom:233.059698px;}
.yba_c00069{bottom:233.251029px;}
.yb9_c00069{bottom:234.359373px;}
.yb8_c00069{bottom:253.588467px;}
.yb7_c00069{bottom:254.080035px;}
.yb6_c00069{bottom:254.997693px;}
.yb5_c00069{bottom:255.852834px;}
.yb4_c00069{bottom:256.427541px;}
.yb3_c00069{bottom:256.941579px;}
.yb2_c00069{bottom:257.293623px;}
.yb1_c00069{bottom:257.853000px;}
.yb0_c00069{bottom:277.402500px;}
.yaf_c00069{bottom:278.074500px;}
.yae_c00069{bottom:278.391000px;}
.yad_c00069{bottom:278.664000px;}
.yac_c00069{bottom:279.292500px;}
.yab_c00069{bottom:279.465000px;}
.yaa_c00069{bottom:279.723000px;}
.ya9_c00069{bottom:280.228500px;}
.ya8_c00069{bottom:280.803000px;}
.ya7_c00069{bottom:300.370500px;}
.ya6_c00069{bottom:341.757000px;}
.ya5_c00069{bottom:387.288000px;}
.y9d_c00069{bottom:432.202755px;}
.y9c_c00069{bottom:432.796905px;}
.y9b_c00069{bottom:433.245165px;}
.y9a_c00069{bottom:433.482240px;}
.y99_c00069{bottom:434.251965px;}
.y98_c00069{bottom:434.521710px;}
.y97_c00069{bottom:435.374175px;}
.y96_c00069{bottom:435.757215px;}
.y95_c00069{bottom:455.193360px;}
.y94_c00069{bottom:455.604525px;}
.y93_c00069{bottom:455.830110px;}
.y92_c00069{bottom:456.146250px;}
.y91_c00069{bottom:456.701205px;}
.y90_c00069{bottom:457.121730px;}
.y8f_c00069{bottom:457.435245px;}
.y8e_c00069{bottom:457.853130px;}
.y8d_c00069{bottom:458.048100px;}
.y8c_c00069{bottom:458.439285px;}
.y8b_c00069{bottom:477.997125px;}
.y8a_c00069{bottom:478.550685px;}
.y89_c00069{bottom:478.907280px;}
.y88_c00069{bottom:479.466450px;}
.y87_c00069{bottom:479.803125px;}
.y86_c00069{bottom:480.373500px;}
.y85_c00069{bottom:480.594210px;}
.y84_c00069{bottom:480.843000px;}
.y83_c00069{bottom:481.121085px;}
.y82_c00069{bottom:500.637915px;}
.y81_c00069{bottom:501.421830px;}
.y80_c00069{bottom:501.671265px;}
.y7f_c00069{bottom:501.947340px;}
.y7e_c00069{bottom:502.826220px;}
.y7d_c00069{bottom:503.193255px;}
.y7c_c00069{bottom:503.407380px;}
.y7b_c00069{bottom:503.743170px;}
.y7a_c00069{bottom:504.615960px;}
.y79_c00069{bottom:523.486425px;}
.y78_c00069{bottom:523.847340px;}
.y77_c00069{bottom:524.155200px;}
.y76_c00069{bottom:524.527920px;}
.y75_c00069{bottom:524.973750px;}
.y74_c00069{bottom:525.254235px;}
.y73_c00069{bottom:526.032285px;}
.y72_c00069{bottom:526.361670px;}
.y71_c00069{bottom:526.755600px;}
.y6f_c00069{bottom:548.374365px;}
.y6a_c00069{bottom:548.374575px;}
.y6e_c00069{bottom:548.374650px;}
.y70_c00069{bottom:548.374680px;}
.y69_c00069{bottom:548.375145px;}
.y6b_c00069{bottom:548.375190px;}
.y6d_c00069{bottom:548.375235px;}
.y6c_c00069{bottom:548.375520px;}
.y62_c00069{bottom:571.108125px;}
.y64_c00069{bottom:571.108155px;}
.y66_c00069{bottom:571.108185px;}
.y67_c00069{bottom:571.108215px;}
.y68_c00069{bottom:571.108260px;}
.y63_c00069{bottom:571.108440px;}
.y65_c00069{bottom:571.108770px;}
.y5b_c00069{bottom:593.247945px;}
.y5c_c00069{bottom:593.247960px;}
.y5d_c00069{bottom:593.248590px;}
.y60_c00069{bottom:593.248650px;}
.y61_c00069{bottom:593.248680px;}
.y5f_c00069{bottom:593.248935px;}
.y5e_c00069{bottom:593.249205px;}
.ya4_c00069{bottom:611.820000px;}
.y5a_c00069{bottom:615.773430px;}
.y57_c00069{bottom:615.773955px;}
.y58_c00069{bottom:615.773970px;}
.y59_c00069{bottom:615.774000px;}
.y55_c00069{bottom:615.774510px;}
.y56_c00069{bottom:615.774540px;}
.y54_c00069{bottom:615.774795px;}
.ya3_c00069{bottom:628.290000px;}
.y4b_c00069{bottom:638.409960px;}
.y4c_c00069{bottom:638.410575px;}
.y4d_c00069{bottom:638.411190px;}
.y50_c00069{bottom:638.411550px;}
.y4e_c00069{bottom:638.411805px;}
.y4f_c00069{bottom:638.411835px;}
.y51_c00069{bottom:638.412165px;}
.y52_c00069{bottom:638.412180px;}
.y53_c00069{bottom:638.412495px;}
.ya0_c00069{bottom:638.550000px;}
.ya1_c00069{bottom:647.190000px;}
.y4a_c00069{bottom:659.190210px;}
.y49_c00069{bottom:660.215310px;}
.y48_c00069{bottom:660.589995px;}
.y47_c00069{bottom:661.101075px;}
.y46_c00069{bottom:661.528320px;}
.y45_c00069{bottom:661.795875px;}
.y44_c00069{bottom:662.092830px;}
.y43_c00069{bottom:662.742690px;}
.y42_c00069{bottom:663.378840px;}
.y9f_c00069{bottom:670.680000px;}
.y9e_c00069{bottom:678.780000px;}
.ya2_c00069{bottom:680.400000px;}
.y41_c00069{bottom:684.304245px;}
.y3a_c00069{bottom:684.304395px;}
.y3d_c00069{bottom:684.304440px;}
.y3e_c00069{bottom:684.304455px;}
.y3c_c00069{bottom:684.304725px;}
.y3f_c00069{bottom:684.304770px;}
.y40_c00069{bottom:684.304800px;}
.y3b_c00069{bottom:684.305010px;}
.y39_c00069{bottom:704.596260px;}
.y38_c00069{bottom:704.999085px;}
.y37_c00069{bottom:705.275670px;}
.y36_c00069{bottom:705.997785px;}
.y35_c00069{bottom:706.306650px;}
.y34_c00069{bottom:706.704540px;}
.y33_c00069{bottom:706.957365px;}
.y32_c00069{bottom:707.452845px;}
.y31_c00069{bottom:708.185730px;}
.y30_c00069{bottom:708.741630px;}
.y2f_c00069{bottom:729.342945px;}
.y26_c00069{bottom:729.343095px;}
.y2e_c00069{bottom:729.343230px;}
.y27_c00069{bottom:729.343710px;}
.y2d_c00069{bottom:729.343815px;}
.y28_c00069{bottom:729.344325px;}
.y2b_c00069{bottom:729.344385px;}
.y2c_c00069{bottom:729.344400px;}
.y2a_c00069{bottom:729.344670px;}
.y29_c00069{bottom:729.344940px;}
.y24_c00069{bottom:752.470455px;}
.y23_c00069{bottom:752.470740px;}
.y25_c00069{bottom:752.470785px;}
.y21_c00069{bottom:752.470950px;}
.y22_c00069{bottom:752.471295px;}
.y20_c00069{bottom:752.471535px;}
.y1f_c00069{bottom:752.472105px;}
.y1a_c00069{bottom:775.195815px;}
.y1b_c00069{bottom:775.196145px;}
.y19_c00069{bottom:775.196385px;}
.y1c_c00069{bottom:775.196475px;}
.y1e_c00069{bottom:775.196520px;}
.y1d_c00069{bottom:775.196790px;}
.y18_c00069{bottom:798.096600px;}
.y17_c00069{bottom:798.096870px;}
.y14_c00069{bottom:798.097425px;}
.y16_c00069{bottom:798.097455px;}
.y15_c00069{bottom:798.097740px;}
.y13_c00069{bottom:798.098010px;}
.y12_c00069{bottom:798.098295px;}
.y11_c00069{bottom:798.098865px;}
.y10_c00069{bottom:819.705525px;}
.yf_c00069{bottom:820.345065px;}
.ye_c00069{bottom:820.566150px;}
.yd_c00069{bottom:821.165955px;}
.yc_c00069{bottom:821.357730px;}
.yb_c00069{bottom:821.846400px;}
.ya_c00069{bottom:822.389370px;}
.y9_c00069{bottom:822.561945px;}
.y8_c00069{bottom:822.813000px;}
.y7_c00069{bottom:823.134255px;}
.y6_c00069{bottom:823.231500px;}
.y5_c00069{bottom:882.360000px;}
.y3_c00069{bottom:912.870000px;}
.y4_c00069{bottom:917.190000px;}
.y1_c00069{bottom:920.160000px;}
.y2_c00069{bottom:921.780000px;}
.h2_c00069{height:22.050000px;}
.hf_c00069{height:26.250000px;}
.h3_c00069{height:35.700000px;}
.h4_c00069{height:44.100000px;}
.h11_c00069{height:45.150000px;}
.h1a_c00069{height:46.203326px;}
.h19_c00069{height:49.353553px;}
.hd_c00069{height:58.802940px;}
.h1b_c00069{height:58.804233px;}
.h10_c00069{height:60.900000px;}
.h5_c00069{height:64.053202px;}
.h9_c00069{height:66.153307px;}
.h6_c00069{height:67.203360px;}
.h16_c00069{height:68.250000px;}
.h8_c00069{height:68.253412px;}
.ha_c00069{height:69.303465px;}
.hc_c00069{height:70.353517px;}
.he_c00069{height:71.403570px;}
.hb_c00069{height:72.453622px;}
.h7_c00069{height:73.503675px;}
.h17_c00069{height:75.607408px;}
.h18_c00069{height:77.707614px;}
.h15_c00069{height:100.800000px;}
.h13_c00069{height:106.050000px;}
.h12_c00069{height:119.700000px;}
.h14_c00069{height:143.850000px;}
.h0_c00069{height:1008.450000px;}
.h1_c00069{height:1008.750000px;}
.w0_c00069{width:711.720000px;}
.w1_c00069{width:711.750000px;}
.x0_c00069{left:0.000000px;}
.x3_c00069{left:112.320000px;}
.x1_c00069{left:113.940000px;}
.x2_c00069{left:119.880000px;}
.x7f_c00069{left:150.796500px;}
.x80_c00069{left:167.773500px;}
.x88_c00069{left:170.244666px;}
.x4_c00069{left:185.635500px;}
.x81_c00069{left:189.928500px;}
.x4a_c00069{left:193.052760px;}
.x7a_c00069{left:194.240556px;}
.x5_c00069{left:195.360000px;}
.x52_c00069{left:196.412115px;}
.x3d_c00069{left:198.992805px;}
.x1b_c00069{left:200.068920px;}
.x16_c00069{left:218.970030px;}
.x8f_c00069{left:221.945664px;}
.x44_c00069{left:223.563930px;}
.x3e_c00069{left:225.183930px;}
.x6_c00069{left:227.485500px;}
.x89_c00069{left:228.572982px;}
.x63_c00069{left:230.744325px;}
.x22_c00069{left:231.930345px;}
.x74_c00069{left:234.694500px;}
.x31_c00069{left:236.250435px;}
.xf_c00069{left:239.760105px;}
.x1c_c00069{left:249.480855px;}
.x2a_c00069{left:250.968690px;}
.x7_c00069{left:252.591000px;}
.x10_c00069{left:257.040330px;}
.x37_c00069{left:258.519060px;}
.x75_c00069{left:259.840500px;}
.x5e_c00069{left:260.976615px;}
.x82_c00069{left:262.599000px;}
.x3f_c00069{left:264.876405px;}
.x32_c00069{left:267.032010px;}
.x53_c00069{left:268.743615px;}
.x8_c00069{left:269.848500px;}
.x23_c00069{left:271.622820px;}
.x45_c00069{left:281.616735px;}
.x83_c00069{left:283.081500px;}
.x7b_c00069{left:286.589139px;}
.x1d_c00069{left:288.093210px;}
.x4e_c00069{left:293.228970px;}
.x11_c00069{left:294.302550px;}
.x76_c00069{left:296.557500px;}
.x57_c00069{left:297.660780px;}
.x71_c00069{left:302.286000px;}
.x6d_c00069{left:304.830000px;}
.x33_c00069{left:305.914395px;}
.x48_c00069{left:307.539090px;}
.x40_c00069{left:308.619285px;}
.x6e_c00069{left:311.040000px;}
.x58_c00069{left:315.472920px;}
.x2b_c00069{left:317.656530px;}
.x17_c00069{left:321.304260px;}
.x9_c00069{left:324.145500px;}
.x4b_c00069{left:325.359990px;}
.x12_c00069{left:326.974320px;}
.x5b_c00069{left:328.503345px;}
.x64_c00069{left:332.764305px;}
.x7c_c00069{left:334.221462px;}
.x34_c00069{left:335.615865px;}
.x77_c00069{left:337.608000px;}
.x6f_c00069{left:340.470000px;}
.x5f_c00069{left:342.217425px;}
.x38_c00069{left:344.649705px;}
.x54_c00069{left:346.548615px;}
.x24_c00069{left:350.196180px;}
.x46_c00069{left:358.031370px;}
.x41_c00069{left:361.271550px;}
.x13_c00069{left:363.156435px;}
.x39_c00069{left:369.004965px;}
.xa_c00069{left:373.012500px;}
.x25_c00069{left:375.577215px;}
.x4c_c00069{left:380.712525px;}
.x18_c00069{left:383.677500px;}
.x2c_c00069{left:385.736355px;}
.x1e_c00069{left:389.618865px;}
.xb_c00069{left:392.190000px;}
.x7d_c00069{left:394.061142px;}
.x42_c00069{left:398.803800px;}
.x4f_c00069{left:399.885135px;}
.x65_c00069{left:402.686100px;}
.x14_c00069{left:405.819195px;}
.x3a_c00069{left:407.829075px;}
.x26_c00069{left:409.329090px;}
.x84_c00069{left:412.177500px;}
.x47_c00069{left:416.084175px;}
.x5c_c00069{left:418.087845px;}
.x50_c00069{left:419.595600px;}
.x2d_c00069{left:421.924995px;}
.x66_c00069{left:424.293390px;}
.x19_c00069{left:428.500485px;}
.x43_c00069{left:435.796005px;}
.x8a_c00069{left:439.770426px;}
.x35_c00069{left:441.191925px;}
.x27_c00069{left:449.291580px;}
.x60_c00069{left:450.566505px;}
.xc_c00069{left:452.170500px;}
.x3b_c00069{left:454.286610px;}
.x55_c00069{left:456.452115px;}
.x51_c00069{left:458.746515px;}
.x15_c00069{left:460.901700px;}
.x59_c00069{left:462.912450px;}
.x78_c00069{left:464.236500px;}
.x4d_c00069{left:465.766530px;}
.x72_c00069{left:466.975500px;}
.xd_c00069{left:474.279000px;}
.x7e_c00069{left:476.957952px;}
.x1a_c00069{left:479.532585px;}
.x49_c00069{left:483.047640px;}
.x61_c00069{left:485.630850px;}
.x1f_c00069{left:487.634160px;}
.x85_c00069{left:490.998000px;}
.x28_c00069{left:493.304475px;}
.x79_c00069{left:499.348500px;}
.x90_c00069{left:504.655380px;}
.x5d_c00069{left:509.103345px;}
.x20_c00069{left:511.665060px;}
.x2e_c00069{left:515.572050px;}
.x67_c00069{left:519.083445px;}
.x8b_c00069{left:521.085954px;}
.x56_c00069{left:523.329615px;}
.x29_c00069{left:526.786320px;}
.x5a_c00069{left:528.252645px;}
.x36_c00069{left:529.756275px;}
.x73_c00069{left:534.210000px;}
.xe_c00069{left:538.233000px;}
.x2f_c00069{left:540.680295px;}
.x70_c00069{left:547.020000px;}
.x62_c00069{left:556.356555px;}
.x21_c00069{left:563.237220px;}
.x8c_c00069{left:570.645360px;}
.x30_c00069{left:577.362435px;}
.x3c_c00069{left:581.513835px;}
.x8d_c00069{left:587.598162px;}
.x86_c00069{left:592.003500px;}
.x8e_c00069{left:594.687072px;}
.x87_c00069{left:611.425500px;}
.x6a_c00069{left:674.460000px;}
.x6b_c00069{left:681.210000px;}
.x69_c00069{left:683.100000px;}
.x6c_c00069{left:686.340000px;}
.x68_c00069{left:688.230000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fs0_c00069{font-size:19.600000pt;}
.fsd_c00069{font-size:23.333333pt;}
.fs1_c00069{font-size:31.733333pt;}
.fs2_c00069{font-size:39.200000pt;}
.fsf_c00069{font-size:40.133333pt;}
.fs18_c00069{font-size:41.069623pt;}
.fs17_c00069{font-size:43.869825pt;}
.fsb_c00069{font-size:52.269280pt;}
.fs19_c00069{font-size:52.270430pt;}
.fse_c00069{font-size:54.133333pt;}
.fs3_c00069{font-size:56.936180pt;}
.fs7_c00069{font-size:58.802940pt;}
.fs4_c00069{font-size:59.736320pt;}
.fs14_c00069{font-size:60.666667pt;}
.fs6_c00069{font-size:60.669700pt;}
.fs8_c00069{font-size:61.603080pt;}
.fsa_c00069{font-size:62.536460pt;}
.fsc_c00069{font-size:63.469840pt;}
.fs9_c00069{font-size:64.403220pt;}
.fs5_c00069{font-size:65.336600pt;}
.fs15_c00069{font-size:67.206585pt;}
.fs16_c00069{font-size:69.073435pt;}
.fs13_c00069{font-size:89.600000pt;}
.fs11_c00069{font-size:94.266667pt;}
.fs10_c00069{font-size:106.400000pt;}
.fs12_c00069{font-size:127.866667pt;}
.y0_c00069{bottom:0.000000pt;}
.ye3_c00069{bottom:132.061205pt;}
.ye4_c00069{bottom:132.061328pt;}
.ye5_c00069{bottom:132.061413pt;}
.ye6_c00069{bottom:132.062069pt;}
.ye7_c00069{bottom:132.062187pt;}
.ye2_c00069{bottom:143.895573pt;}
.ye1_c00069{bottom:143.977856pt;}
.ye0_c00069{bottom:144.173355pt;}
.ydf_c00069{bottom:144.710048pt;}
.yde_c00069{bottom:144.745995pt;}
.ydd_c00069{bottom:145.392864pt;}
.ydc_c00069{bottom:145.685371pt;}
.ydb_c00069{bottom:145.934901pt;}
.yda_c00069{bottom:146.104187pt;}
.yd9_c00069{bottom:146.465947pt;}
.yd8_c00069{bottom:146.722539pt;}
.yd7_c00069{bottom:147.000240pt;}
.yd6_c00069{bottom:147.117589pt;}
.yd5_c00069{bottom:147.649979pt;}
.yd4_c00069{bottom:148.127504pt;}
.yd3_c00069{bottom:148.238240pt;}
.yd2_c00069{bottom:148.800347pt;}
.yd1_c00069{bottom:164.047957pt;}
.yd0_c00069{bottom:164.255125pt;}
.ycf_c00069{bottom:164.556885pt;}
.yce_c00069{bottom:165.024133pt;}
.ycd_c00069{bottom:165.332517pt;}
.ycc_c00069{bottom:165.726661pt;}
.ycb_c00069{bottom:166.173269pt;}
.yca_c00069{bottom:166.394981pt;}
.yc9_c00069{bottom:167.000149pt;}
.yc8_c00069{bottom:167.190117pt;}
.yc7_c00069{bottom:167.550293pt;}
.yc6_c00069{bottom:167.768773pt;}
.yc5_c00069{bottom:168.149429pt;}
.yc4_c00069{bottom:168.543925pt;}
.yc3_c00069{bottom:168.780245pt;}
.yc2_c00069{bottom:168.961333pt;}
.yc1_c00069{bottom:205.063752pt;}
.yc0_c00069{bottom:205.302613pt;}
.ybf_c00069{bottom:205.675019pt;}
.ybe_c00069{bottom:206.187523pt;}
.ybd_c00069{bottom:206.646005pt;}
.ybc_c00069{bottom:206.825507pt;}
.ybb_c00069{bottom:207.164176pt;}
.yba_c00069{bottom:207.334248pt;}
.yb9_c00069{bottom:208.319443pt;}
.yb8_c00069{bottom:225.411971pt;}
.yb7_c00069{bottom:225.848920pt;}
.yb6_c00069{bottom:226.664616pt;}
.yb5_c00069{bottom:227.424741pt;}
.yb4_c00069{bottom:227.935592pt;}
.yb3_c00069{bottom:228.392515pt;}
.yb2_c00069{bottom:228.705443pt;}
.yb1_c00069{bottom:229.202667pt;}
.yb0_c00069{bottom:246.580000pt;}
.yaf_c00069{bottom:247.177333pt;}
.yae_c00069{bottom:247.458667pt;}
.yad_c00069{bottom:247.701333pt;}
.yac_c00069{bottom:248.260000pt;}
.yab_c00069{bottom:248.413333pt;}
.yaa_c00069{bottom:248.642667pt;}
.ya9_c00069{bottom:249.092000pt;}
.ya8_c00069{bottom:249.602667pt;}
.ya7_c00069{bottom:266.996000pt;}
.ya6_c00069{bottom:303.784000pt;}
.ya5_c00069{bottom:344.256000pt;}
.y9d_c00069{bottom:384.180227pt;}
.y9c_c00069{bottom:384.708360pt;}
.y9b_c00069{bottom:385.106813pt;}
.y9a_c00069{bottom:385.317547pt;}
.y99_c00069{bottom:386.001747pt;}
.y98_c00069{bottom:386.241520pt;}
.y97_c00069{bottom:386.999267pt;}
.y96_c00069{bottom:387.339747pt;}
.y95_c00069{bottom:404.616320pt;}
.y94_c00069{bottom:404.981800pt;}
.y93_c00069{bottom:405.182320pt;}
.y92_c00069{bottom:405.463333pt;}
.y91_c00069{bottom:405.956627pt;}
.y90_c00069{bottom:406.330427pt;}
.y8f_c00069{bottom:406.609107pt;}
.y8e_c00069{bottom:406.980560pt;}
.y8d_c00069{bottom:407.153867pt;}
.y8c_c00069{bottom:407.501587pt;}
.y8b_c00069{bottom:424.886333pt;}
.y8a_c00069{bottom:425.378387pt;}
.y89_c00069{bottom:425.695360pt;}
.y88_c00069{bottom:426.192400pt;}
.y87_c00069{bottom:426.491667pt;}
.y86_c00069{bottom:426.998667pt;}
.y85_c00069{bottom:427.194853pt;}
.y84_c00069{bottom:427.416000pt;}
.y83_c00069{bottom:427.663187pt;}
.y82_c00069{bottom:445.011480pt;}
.y81_c00069{bottom:445.708293pt;}
.y80_c00069{bottom:445.930013pt;}
.y7f_c00069{bottom:446.175413pt;}
.y7e_c00069{bottom:446.956640pt;}
.y7d_c00069{bottom:447.282893pt;}
.y7c_c00069{bottom:447.473227pt;}
.y7b_c00069{bottom:447.771707pt;}
.y7a_c00069{bottom:448.547520pt;}
.y79_c00069{bottom:465.321267pt;}
.y78_c00069{bottom:465.642080pt;}
.y77_c00069{bottom:465.915733pt;}
.y76_c00069{bottom:466.247040pt;}
.y75_c00069{bottom:466.643333pt;}
.y74_c00069{bottom:466.892653pt;}
.y73_c00069{bottom:467.584253pt;}
.y72_c00069{bottom:467.877040pt;}
.y71_c00069{bottom:468.227200pt;}
.y6f_c00069{bottom:487.443880pt;}
.y6a_c00069{bottom:487.444067pt;}
.y6e_c00069{bottom:487.444133pt;}
.y70_c00069{bottom:487.444160pt;}
.y69_c00069{bottom:487.444573pt;}
.y6b_c00069{bottom:487.444613pt;}
.y6d_c00069{bottom:487.444653pt;}
.y6c_c00069{bottom:487.444907pt;}
.y62_c00069{bottom:507.651667pt;}
.y64_c00069{bottom:507.651693pt;}
.y66_c00069{bottom:507.651720pt;}
.y67_c00069{bottom:507.651747pt;}
.y68_c00069{bottom:507.651787pt;}
.y63_c00069{bottom:507.651947pt;}
.y65_c00069{bottom:507.652240pt;}
.y5b_c00069{bottom:527.331507pt;}
.y5c_c00069{bottom:527.331520pt;}
.y5d_c00069{bottom:527.332080pt;}
.y60_c00069{bottom:527.332133pt;}
.y61_c00069{bottom:527.332160pt;}
.y5f_c00069{bottom:527.332387pt;}
.y5e_c00069{bottom:527.332627pt;}
.ya4_c00069{bottom:543.840000pt;}
.y5a_c00069{bottom:547.354160pt;}
.y57_c00069{bottom:547.354627pt;}
.y58_c00069{bottom:547.354640pt;}
.y59_c00069{bottom:547.354667pt;}
.y55_c00069{bottom:547.355120pt;}
.y56_c00069{bottom:547.355147pt;}
.y54_c00069{bottom:547.355373pt;}
.ya3_c00069{bottom:558.480000pt;}
.y4b_c00069{bottom:567.475520pt;}
.y4c_c00069{bottom:567.476067pt;}
.y4d_c00069{bottom:567.476613pt;}
.y50_c00069{bottom:567.476933pt;}
.y4e_c00069{bottom:567.477160pt;}
.y4f_c00069{bottom:567.477187pt;}
.y51_c00069{bottom:567.477480pt;}
.y52_c00069{bottom:567.477493pt;}
.y53_c00069{bottom:567.477773pt;}
.ya0_c00069{bottom:567.600000pt;}
.ya1_c00069{bottom:575.280000pt;}
.y4a_c00069{bottom:585.946853pt;}
.y49_c00069{bottom:586.858053pt;}
.y48_c00069{bottom:587.191107pt;}
.y47_c00069{bottom:587.645400pt;}
.y46_c00069{bottom:588.025173pt;}
.y45_c00069{bottom:588.263000pt;}
.y44_c00069{bottom:588.526960pt;}
.y43_c00069{bottom:589.104613pt;}
.y42_c00069{bottom:589.670080pt;}
.y9f_c00069{bottom:596.160000pt;}
.y9e_c00069{bottom:603.360000pt;}
.ya2_c00069{bottom:604.800000pt;}
.y41_c00069{bottom:608.270440pt;}
.y3a_c00069{bottom:608.270573pt;}
.y3d_c00069{bottom:608.270613pt;}
.y3e_c00069{bottom:608.270627pt;}
.y3c_c00069{bottom:608.270867pt;}
.y3f_c00069{bottom:608.270907pt;}
.y40_c00069{bottom:608.270933pt;}
.y3b_c00069{bottom:608.271120pt;}
.y39_c00069{bottom:626.307787pt;}
.y38_c00069{bottom:626.665853pt;}
.y37_c00069{bottom:626.911707pt;}
.y36_c00069{bottom:627.553587pt;}
.y35_c00069{bottom:627.828133pt;}
.y34_c00069{bottom:628.181813pt;}
.y33_c00069{bottom:628.406547pt;}
.y32_c00069{bottom:628.846973pt;}
.y31_c00069{bottom:629.498427pt;}
.y30_c00069{bottom:629.992560pt;}
.y2f_c00069{bottom:648.304840pt;}
.y26_c00069{bottom:648.304973pt;}
.y2e_c00069{bottom:648.305093pt;}
.y27_c00069{bottom:648.305520pt;}
.y2d_c00069{bottom:648.305613pt;}
.y28_c00069{bottom:648.306067pt;}
.y2b_c00069{bottom:648.306120pt;}
.y2c_c00069{bottom:648.306133pt;}
.y2a_c00069{bottom:648.306373pt;}
.y29_c00069{bottom:648.306613pt;}
.y24_c00069{bottom:668.862627pt;}
.y23_c00069{bottom:668.862880pt;}
.y25_c00069{bottom:668.862920pt;}
.y21_c00069{bottom:668.863067pt;}
.y22_c00069{bottom:668.863373pt;}
.y20_c00069{bottom:668.863587pt;}
.y1f_c00069{bottom:668.864093pt;}
.y1a_c00069{bottom:689.062947pt;}
.y1b_c00069{bottom:689.063240pt;}
.y19_c00069{bottom:689.063453pt;}
.y1c_c00069{bottom:689.063533pt;}
.y1e_c00069{bottom:689.063573pt;}
.y1d_c00069{bottom:689.063813pt;}
.y18_c00069{bottom:709.419200pt;}
.y17_c00069{bottom:709.419440pt;}
.y14_c00069{bottom:709.419933pt;}
.y16_c00069{bottom:709.419960pt;}
.y15_c00069{bottom:709.420213pt;}
.y13_c00069{bottom:709.420453pt;}
.y12_c00069{bottom:709.420707pt;}
.y11_c00069{bottom:709.421213pt;}
.y10_c00069{bottom:728.627133pt;}
.yf_c00069{bottom:729.195613pt;}
.ye_c00069{bottom:729.392133pt;}
.yd_c00069{bottom:729.925293pt;}
.yc_c00069{bottom:730.095760pt;}
.yb_c00069{bottom:730.530133pt;}
.ya_c00069{bottom:731.012773pt;}
.y9_c00069{bottom:731.166173pt;}
.y8_c00069{bottom:731.389333pt;}
.y7_c00069{bottom:731.674893pt;}
.y6_c00069{bottom:731.761333pt;}
.y5_c00069{bottom:784.320000pt;}
.y3_c00069{bottom:811.440000pt;}
.y4_c00069{bottom:815.280000pt;}
.y1_c00069{bottom:817.920000pt;}
.y2_c00069{bottom:819.360000pt;}
.h2_c00069{height:19.600000pt;}
.hf_c00069{height:23.333333pt;}
.h3_c00069{height:31.733333pt;}
.h4_c00069{height:39.200000pt;}
.h11_c00069{height:40.133333pt;}
.h1a_c00069{height:41.069623pt;}
.h19_c00069{height:43.869825pt;}
.hd_c00069{height:52.269280pt;}
.h1b_c00069{height:52.270430pt;}
.h10_c00069{height:54.133333pt;}
.h5_c00069{height:56.936180pt;}
.h9_c00069{height:58.802940pt;}
.h6_c00069{height:59.736320pt;}
.h16_c00069{height:60.666667pt;}
.h8_c00069{height:60.669700pt;}
.ha_c00069{height:61.603080pt;}
.hc_c00069{height:62.536460pt;}
.he_c00069{height:63.469840pt;}
.hb_c00069{height:64.403220pt;}
.h7_c00069{height:65.336600pt;}
.h17_c00069{height:67.206585pt;}
.h18_c00069{height:69.073435pt;}
.h15_c00069{height:89.600000pt;}
.h13_c00069{height:94.266667pt;}
.h12_c00069{height:106.400000pt;}
.h14_c00069{height:127.866667pt;}
.h0_c00069{height:896.400000pt;}
.h1_c00069{height:896.666667pt;}
.w0_c00069{width:632.640000pt;}
.w1_c00069{width:632.666667pt;}
.x0_c00069{left:0.000000pt;}
.x3_c00069{left:99.840000pt;}
.x1_c00069{left:101.280000pt;}
.x2_c00069{left:106.560000pt;}
.x7f_c00069{left:134.041333pt;}
.x80_c00069{left:149.132000pt;}
.x88_c00069{left:151.328592pt;}
.x4_c00069{left:165.009333pt;}
.x81_c00069{left:168.825333pt;}
.x4a_c00069{left:171.602453pt;}
.x7a_c00069{left:172.658272pt;}
.x5_c00069{left:173.653333pt;}
.x52_c00069{left:174.588547pt;}
.x3d_c00069{left:176.882493pt;}
.x1b_c00069{left:177.839040pt;}
.x16_c00069{left:194.640027pt;}
.x8f_c00069{left:197.285035pt;}
.x44_c00069{left:198.723493pt;}
.x3e_c00069{left:200.163493pt;}
.x6_c00069{left:202.209333pt;}
.x89_c00069{left:203.175984pt;}
.x63_c00069{left:205.106067pt;}
.x22_c00069{left:206.160307pt;}
.x74_c00069{left:208.617333pt;}
.x31_c00069{left:210.000387pt;}
.xf_c00069{left:213.120093pt;}
.x1c_c00069{left:221.760760pt;}
.x2a_c00069{left:223.083280pt;}
.x7_c00069{left:224.525333pt;}
.x10_c00069{left:228.480293pt;}
.x37_c00069{left:229.794720pt;}
.x75_c00069{left:230.969333pt;}
.x5e_c00069{left:231.979213pt;}
.x82_c00069{left:233.421333pt;}
.x3f_c00069{left:235.445693pt;}
.x32_c00069{left:237.361787pt;}
.x53_c00069{left:238.883213pt;}
.x8_c00069{left:239.865333pt;}
.x23_c00069{left:241.442507pt;}
.x45_c00069{left:250.325987pt;}
.x83_c00069{left:251.628000pt;}
.x7b_c00069{left:254.745901pt;}
.x1d_c00069{left:256.082853pt;}
.x4e_c00069{left:260.647973pt;}
.x11_c00069{left:261.602267pt;}
.x76_c00069{left:263.606667pt;}
.x57_c00069{left:264.587360pt;}
.x71_c00069{left:268.698667pt;}
.x6d_c00069{left:270.960000pt;}
.x33_c00069{left:271.923907pt;}
.x48_c00069{left:273.368080pt;}
.x40_c00069{left:274.328253pt;}
.x6e_c00069{left:276.480000pt;}
.x58_c00069{left:280.420373pt;}
.x2b_c00069{left:282.361360pt;}
.x17_c00069{left:285.603787pt;}
.x9_c00069{left:288.129333pt;}
.x4b_c00069{left:289.208880pt;}
.x12_c00069{left:290.643840pt;}
.x5b_c00069{left:292.002973pt;}
.x64_c00069{left:295.790493pt;}
.x7c_c00069{left:297.085744pt;}
.x34_c00069{left:298.325213pt;}
.x77_c00069{left:300.096000pt;}
.x6f_c00069{left:302.640000pt;}
.x5f_c00069{left:304.193267pt;}
.x38_c00069{left:306.355293pt;}
.x54_c00069{left:308.043213pt;}
.x24_c00069{left:311.285493pt;}
.x46_c00069{left:318.250107pt;}
.x41_c00069{left:321.130267pt;}
.x13_c00069{left:322.805720pt;}
.x39_c00069{left:328.004413pt;}
.xa_c00069{left:331.566667pt;}
.x25_c00069{left:333.846413pt;}
.x4c_c00069{left:338.411133pt;}
.x18_c00069{left:341.046667pt;}
.x2c_c00069{left:342.876760pt;}
.x1e_c00069{left:346.327880pt;}
.xb_c00069{left:348.613333pt;}
.x7d_c00069{left:350.276571pt;}
.x42_c00069{left:354.492267pt;}
.x4f_c00069{left:355.453453pt;}
.x65_c00069{left:357.943200pt;}
.x14_c00069{left:360.728173pt;}
.x3a_c00069{left:362.514733pt;}
.x26_c00069{left:363.848080pt;}
.x84_c00069{left:366.380000pt;}
.x47_c00069{left:369.852600pt;}
.x5c_c00069{left:371.633640pt;}
.x50_c00069{left:372.973867pt;}
.x2d_c00069{left:375.044440pt;}
.x66_c00069{left:377.149680pt;}
.x19_c00069{left:380.889320pt;}
.x43_c00069{left:387.374227pt;}
.x8a_c00069{left:390.907045pt;}
.x35_c00069{left:392.170600pt;}
.x27_c00069{left:399.370293pt;}
.x60_c00069{left:400.503560pt;}
.xc_c00069{left:401.929333pt;}
.x3b_c00069{left:403.810320pt;}
.x55_c00069{left:405.735213pt;}
.x51_c00069{left:407.774680pt;}
.x15_c00069{left:409.690400pt;}
.x59_c00069{left:411.477733pt;}
.x78_c00069{left:412.654667pt;}
.x4d_c00069{left:414.014693pt;}
.x72_c00069{left:415.089333pt;}
.xd_c00069{left:421.581333pt;}
.x7e_c00069{left:423.962624pt;}
.x1a_c00069{left:426.251187pt;}
.x49_c00069{left:429.375680pt;}
.x61_c00069{left:431.671867pt;}
.x1f_c00069{left:433.452587pt;}
.x85_c00069{left:436.442667pt;}
.x28_c00069{left:438.492867pt;}
.x79_c00069{left:443.865333pt;}
.x90_c00069{left:448.582560pt;}
.x5d_c00069{left:452.536307pt;}
.x20_c00069{left:454.813387pt;}
.x2e_c00069{left:458.286267pt;}
.x67_c00069{left:461.407507pt;}
.x8b_c00069{left:463.187515pt;}
.x56_c00069{left:465.181880pt;}
.x29_c00069{left:468.254507pt;}
.x5a_c00069{left:469.557907pt;}
.x36_c00069{left:470.894467pt;}
.x73_c00069{left:474.853333pt;}
.xe_c00069{left:478.429333pt;}
.x2f_c00069{left:480.604707pt;}
.x70_c00069{left:486.240000pt;}
.x62_c00069{left:494.539160pt;}
.x21_c00069{left:500.655307pt;}
.x8c_c00069{left:507.240320pt;}
.x30_c00069{left:513.211053pt;}
.x3c_c00069{left:516.901187pt;}
.x8d_c00069{left:522.309477pt;}
.x86_c00069{left:526.225333pt;}
.x8e_c00069{left:528.610731pt;}
.x87_c00069{left:543.489333pt;}
.x6a_c00069{left:599.520000pt;}
.x6b_c00069{left:605.520000pt;}
.x69_c00069{left:607.200000pt;}
.x6c_c00069{left:610.080000pt;}
.x68_c00069{left:611.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m0_c00070{transform:matrix(0.030091,0.000903,-0.007497,0.249888,0,0);-ms-transform:matrix(0.030091,0.000903,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.030091,0.000903,-0.007497,0.249888,0,0);}
.m7_c00070{transform:matrix(0.055625,0.001669,-0.007497,0.249888,0,0);-ms-transform:matrix(0.055625,0.001669,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.055625,0.001669,-0.007497,0.249888,0,0);}
.m8f_c00070{transform:matrix(0.098066,0.002157,-0.005499,0.249940,0,0);-ms-transform:matrix(0.098066,0.002157,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.098066,0.002157,-0.005499,0.249940,0,0);}
.m48_c00070{transform:matrix(0.100944,0.001817,-0.004499,0.249960,0,0);-ms-transform:matrix(0.100944,0.001817,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.100944,0.001817,-0.004499,0.249960,0,0);}
.m75_c00070{transform:matrix(0.132060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132060,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.135829,0.004075,-0.007497,0.249888,0,0);-ms-transform:matrix(0.135829,0.004075,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.135829,0.004075,-0.007497,0.249888,0,0);}
.me5_c00070{transform:matrix(0.140642,0.004219,-0.007497,0.249888,0,0);-ms-transform:matrix(0.140642,0.004219,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.140642,0.004219,-0.007497,0.249888,0,0);}
.m6c_c00070{transform:matrix(0.143464,0.003443,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143464,0.003443,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143464,0.003443,-0.005998,0.249928,0,0);}
.m6a_c00070{transform:matrix(0.144009,0.003456,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144009,0.003456,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144009,0.003456,-0.005998,0.249928,0,0);}
.med_c00070{transform:matrix(0.144090,0.004323,-0.007497,0.249888,0,0);-ms-transform:matrix(0.144090,0.004323,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.144090,0.004323,-0.007497,0.249888,0,0);}
.mec_c00070{transform:matrix(0.145729,0.004372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.145729,0.004372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.145729,0.004372,-0.007497,0.249888,0,0);}
.m2b_c00070{transform:matrix(0.146639,0.002493,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146639,0.002493,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146639,0.002493,-0.004249,0.249964,0,0);}
.mbf_c00070{transform:matrix(0.150308,0.003758,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150308,0.003758,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150308,0.003758,-0.006248,0.249922,0,0);}
.md9_c00070{transform:matrix(0.150543,0.003764,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150543,0.003764,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150543,0.003764,-0.006248,0.249922,0,0);}
.m86_c00070{transform:matrix(0.152283,0.003350,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152283,0.003350,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152283,0.003350,-0.005499,0.249940,0,0);}
.m82_c00070{transform:matrix(0.152883,0.003363,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152883,0.003363,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152883,0.003363,-0.005499,0.249940,0,0);}
.m9d_c00070{transform:matrix(0.154022,0.003851,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154022,0.003851,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154022,0.003851,-0.006248,0.249922,0,0);}
.mdc_c00070{transform:matrix(0.154157,0.003854,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154157,0.003854,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154157,0.003854,-0.006248,0.249922,0,0);}
.m95_c00070{transform:matrix(0.154312,0.003858,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154312,0.003858,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154312,0.003858,-0.006248,0.249922,0,0);}
.m25_c00070{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);}
.m68_c00070{transform:matrix(0.154695,0.002785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154695,0.002785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154695,0.002785,-0.004499,0.249960,0,0);}
.m38_c00070{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);}
.m4a_c00070{transform:matrix(0.155705,0.002803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155705,0.002803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155705,0.002803,-0.004499,0.249960,0,0);}
.m4d_c00070{transform:matrix(0.155890,0.002806,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155890,0.002806,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155890,0.002806,-0.004499,0.249960,0,0);}
.mf3_c00070{transform:matrix(0.156494,0.004382,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156494,0.004382,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156494,0.004382,-0.006997,0.249902,0,0);}
.md0_c00070{transform:matrix(0.156631,0.003916,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156631,0.003916,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156631,0.003916,-0.006248,0.249922,0,0);}
.md5_c00070{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);}
.m54_c00070{transform:matrix(0.158764,0.002858,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158764,0.002858,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158764,0.002858,-0.004499,0.249960,0,0);}
.meb_c00070{transform:matrix(0.159063,0.004772,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159063,0.004772,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159063,0.004772,-0.007497,0.249888,0,0);}
.mdd_c00070{transform:matrix(0.159110,0.003978,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159110,0.003978,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159110,0.003978,-0.006248,0.249922,0,0);}
.m5f_c00070{transform:matrix(0.159924,0.002879,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159924,0.002879,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159924,0.002879,-0.004499,0.249960,0,0);}
.mf0_c00070{transform:matrix(0.160453,0.004814,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160453,0.004814,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160453,0.004814,-0.007497,0.249888,0,0);}
.mf_c00070{transform:matrix(0.161607,0.004848,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161607,0.004848,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161607,0.004848,-0.007497,0.249888,0,0);}
.m59_c00070{transform:matrix(0.163349,0.002940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163349,0.002940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163349,0.002940,-0.004499,0.249960,0,0);}
.m7a_c00070{transform:matrix(0.164010,0.003608,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164010,0.003608,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164010,0.003608,-0.005499,0.249940,0,0);}
.m27_c00070{transform:matrix(0.164786,0.002801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164786,0.002801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164786,0.002801,-0.004249,0.249964,0,0);}
.mc6_c00070{transform:matrix(0.164789,0.004120,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164789,0.004120,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164789,0.004120,-0.006248,0.249922,0,0);}
.mbb_c00070{transform:matrix(0.165178,0.004129,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165178,0.004129,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165178,0.004129,-0.006248,0.249922,0,0);}
.m78_c00070{transform:matrix(0.165236,0.004792,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165236,0.004792,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165236,0.004792,-0.007247,0.249895,0,0);}
.m60_c00070{transform:matrix(0.166563,0.002998,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166563,0.002998,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166563,0.002998,-0.004499,0.249960,0,0);}
.m3c_c00070{transform:matrix(0.166738,0.003001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166738,0.003001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166738,0.003001,-0.004499,0.249960,0,0);}
.me4_c00070{transform:matrix(0.167620,0.005029,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167620,0.005029,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167620,0.005029,-0.007497,0.249888,0,0);}
.m23_c00070{transform:matrix(0.168166,0.002859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168166,0.002859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168166,0.002859,-0.004249,0.249964,0,0);}
.m67_c00070{transform:matrix(0.168708,0.003037,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168708,0.003037,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168708,0.003037,-0.004499,0.249960,0,0);}
.m49_c00070{transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);}
.m61_c00070{transform:matrix(0.170032,0.003061,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170032,0.003061,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170032,0.003061,-0.004499,0.249960,0,0);}
.m30_c00070{transform:matrix(0.171137,0.003080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171137,0.003080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171137,0.003080,-0.004499,0.249960,0,0);}
.m9f_c00070{transform:matrix(0.171656,0.004291,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171656,0.004291,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171656,0.004291,-0.006248,0.249922,0,0);}
.ma4_c00070{transform:matrix(0.171756,0.004294,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171756,0.004294,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171756,0.004294,-0.006248,0.249922,0,0);}
.mde_c00070{transform:matrix(0.172461,0.004312,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172461,0.004312,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172461,0.004312,-0.006248,0.249922,0,0);}
.mdb_c00070{transform:matrix(0.173121,0.004328,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173121,0.004328,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173121,0.004328,-0.006248,0.249922,0,0);}
.mea_c00070{transform:matrix(0.173232,0.005197,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173232,0.005197,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173232,0.005197,-0.007497,0.249888,0,0);}
.m52_c00070{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);}
.m37_c00070{transform:matrix(0.173882,0.003130,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173882,0.003130,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173882,0.003130,-0.004499,0.249960,0,0);}
.mb2_c00070{transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);}
.mc0_c00070{transform:matrix(0.174046,0.004351,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174046,0.004351,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174046,0.004351,-0.006248,0.249922,0,0);}
.m66_c00070{transform:matrix(0.174192,0.003135,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174192,0.003135,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174192,0.003135,-0.004499,0.249960,0,0);}
.ma6_c00070{transform:matrix(0.174341,0.004359,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174341,0.004359,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174341,0.004359,-0.006248,0.249922,0,0);}
.md8_c00070{transform:matrix(0.174391,0.004360,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174391,0.004360,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174391,0.004360,-0.006248,0.249922,0,0);}
.m80_c00070{transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);}
.m26_c00070{transform:matrix(0.175445,0.002983,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175445,0.002983,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175445,0.002983,-0.004249,0.249964,0,0);}
.mf1_c00070{transform:matrix(0.175731,0.004920,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175731,0.004920,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175731,0.004920,-0.006997,0.249902,0,0);}
.m106_c00070{transform:matrix(0.176416,0.004763,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176416,0.004763,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176416,0.004763,-0.006748,0.249909,0,0);}
.mda_c00070{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);}
.mdf_c00070{transform:matrix(0.177629,0.004441,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177629,0.004441,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177629,0.004441,-0.006248,0.249922,0,0);}
.ma5_c00070{transform:matrix(0.177989,0.004450,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177989,0.004450,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177989,0.004450,-0.006248,0.249922,0,0);}
.m20_c00070{transform:matrix(0.178062,0.002849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178062,0.002849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178062,0.002849,-0.003999,0.249968,0,0);}
.m56_c00070{transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);}
.m47_c00070{transform:matrix(0.178561,0.003214,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178561,0.003214,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178561,0.003214,-0.004499,0.249960,0,0);}
.md_c00070{transform:matrix(0.178685,0.005361,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178685,0.005361,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178685,0.005361,-0.007497,0.249888,0,0);}
.mcc_c00070{transform:matrix(0.178804,0.004470,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178804,0.004470,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178804,0.004470,-0.006248,0.249922,0,0);}
.mc7_c00070{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);}
.m29_c00070{transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);}
.m8e_c00070{transform:matrix(0.178952,0.003937,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178952,0.003937,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178952,0.003937,-0.005499,0.249940,0,0);}
.me_c00070{transform:matrix(0.179009,0.005370,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179009,0.005370,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179009,0.005370,-0.007497,0.249888,0,0);}
.m28_c00070{transform:matrix(0.179464,0.003051,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179464,0.003051,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179464,0.003051,-0.004249,0.249964,0,0);}
.mee_c00070{transform:matrix(0.179664,0.005390,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179664,0.005390,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179664,0.005390,-0.007497,0.249888,0,0);}
.m53_c00070{transform:matrix(0.180221,0.003244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180221,0.003244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180221,0.003244,-0.004499,0.249960,0,0);}
.m3f_c00070{transform:matrix(0.180511,0.003249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180511,0.003249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180511,0.003249,-0.004499,0.249960,0,0);}
.mc3_c00070{transform:matrix(0.180624,0.004516,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180624,0.004516,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180624,0.004516,-0.006248,0.249922,0,0);}
.m88_c00070{transform:matrix(0.180871,0.003979,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180871,0.003979,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180871,0.003979,-0.005499,0.249940,0,0);}
.m45_c00070{transform:matrix(0.181221,0.003262,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181221,0.003262,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181221,0.003262,-0.004499,0.249960,0,0);}
.m77_c00070{transform:matrix(0.181234,0.005256,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181234,0.005256,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181234,0.005256,-0.007247,0.249895,0,0);}
.m1f_c00070{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);}
.md6_c00070{transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);}
.m8b_c00070{transform:matrix(0.183296,0.004033,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183296,0.004033,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183296,0.004033,-0.005499,0.249940,0,0);}
.m50_c00070{transform:matrix(0.183375,0.003301,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183375,0.003301,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183375,0.003301,-0.004499,0.249960,0,0);}
.m7d_c00070{transform:matrix(0.183471,0.004036,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183471,0.004036,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183471,0.004036,-0.005499,0.249940,0,0);}
.m6b_c00070{transform:matrix(0.184197,0.004421,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184197,0.004421,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184197,0.004421,-0.005998,0.249928,0,0);}
.m105_c00070{transform:matrix(0.184343,0.004977,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184343,0.004977,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184343,0.004977,-0.006748,0.249909,0,0);}
.mbc_c00070{transform:matrix(0.184377,0.004609,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184377,0.004609,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184377,0.004609,-0.006248,0.249922,0,0);}
.m40_c00070{transform:matrix(0.184655,0.003324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184655,0.003324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184655,0.003324,-0.004499,0.249960,0,0);}
.m8a_c00070{transform:matrix(0.184860,0.004067,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184860,0.004067,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184860,0.004067,-0.005499,0.249940,0,0);}
.ma2_c00070{transform:matrix(0.184927,0.004623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184927,0.004623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184927,0.004623,-0.006248,0.249922,0,0);}
.m2a_c00070{transform:matrix(0.184998,0.003145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184998,0.003145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184998,0.003145,-0.004249,0.249964,0,0);}
.mb_c00070{transform:matrix(0.185162,0.005555,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185162,0.005555,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185162,0.005555,-0.007497,0.249888,0,0);}
.m5b_c00070{transform:matrix(0.185355,0.003336,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185355,0.003336,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185355,0.003336,-0.004499,0.249960,0,0);}
.mbd_c00070{transform:matrix(0.185447,0.004636,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185447,0.004636,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185447,0.004636,-0.006248,0.249922,0,0);}
.ma3_c00070{transform:matrix(0.185547,0.004639,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185547,0.004639,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185547,0.004639,-0.006248,0.249922,0,0);}
.m15_c00070{transform:matrix(0.185710,0.004086,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185710,0.004086,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185710,0.004086,-0.005499,0.249940,0,0);}
.m70_c00070{transform:matrix(0.186221,0.004469,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186221,0.004469,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186221,0.004469,-0.005998,0.249928,0,0);}
.m7f_c00070{transform:matrix(0.187025,0.004115,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187025,0.004115,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187025,0.004115,-0.005499,0.249940,0,0);}
.m33_c00070{transform:matrix(0.188140,0.003387,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188140,0.003387,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188140,0.003387,-0.004499,0.249960,0,0);}
.mf8_c00070{transform:matrix(0.188616,0.005281,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188616,0.005281,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188616,0.005281,-0.006997,0.249902,0,0);}
.mb6_c00070{transform:matrix(0.189361,0.004734,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189361,0.004734,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189361,0.004734,-0.006248,0.249922,0,0);}
.me3_c00070{transform:matrix(0.189630,0.005689,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189630,0.005689,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189630,0.005689,-0.007497,0.249888,0,0);}
.m51_c00070{transform:matrix(0.189899,0.003418,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189899,0.003418,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189899,0.003418,-0.004499,0.249960,0,0);}
.m22_c00070{transform:matrix(0.190148,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190148,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190148,0.003233,-0.004249,0.249964,0,0);}
.m43_c00070{transform:matrix(0.190249,0.003424,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190249,0.003424,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190249,0.003424,-0.004499,0.249960,0,0);}
.m6d_c00070{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);}
.m103_c00070{transform:matrix(0.190441,0.005142,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190441,0.005142,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190441,0.005142,-0.006748,0.249909,0,0);}
.m104_c00070{transform:matrix(0.190895,0.005154,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190895,0.005154,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190895,0.005154,-0.006748,0.249909,0,0);}
.m5a_c00070{transform:matrix(0.192374,0.003463,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192374,0.003463,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192374,0.003463,-0.004499,0.249960,0,0);}
.m4b_c00070{transform:matrix(0.192569,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192569,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192569,0.003466,-0.004499,0.249960,0,0);}
.m4e_c00070{transform:matrix(0.192849,0.003471,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192849,0.003471,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192849,0.003471,-0.004499,0.249960,0,0);}
.m42_c00070{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);}
.m7c_c00070{transform:matrix(0.194223,0.004273,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194223,0.004273,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194223,0.004273,-0.005499,0.249940,0,0);}
.me1_c00070{transform:matrix(0.194264,0.004857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194264,0.004857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194264,0.004857,-0.006248,0.249922,0,0);}
.m62_c00070{transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);}
.m8d_c00070{transform:matrix(0.194643,0.004282,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194643,0.004282,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194643,0.004282,-0.005499,0.249940,0,0);}
.m93_c00070{transform:matrix(0.194779,0.004869,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194779,0.004869,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194779,0.004869,-0.006248,0.249922,0,0);}
.md7_c00070{transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194859,0.004871,-0.006248,0.249922,0,0);}
.m9a_c00070{transform:matrix(0.194924,0.004873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194924,0.004873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194924,0.004873,-0.006248,0.249922,0,0);}
.md4_c00070{transform:matrix(0.195214,0.004880,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195214,0.004880,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195214,0.004880,-0.006248,0.249922,0,0);}
.m69_c00070{transform:matrix(0.195239,0.004686,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195239,0.004686,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195239,0.004686,-0.005998,0.249928,0,0);}
.ma8_c00070{transform:matrix(0.195334,0.004883,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195334,0.004883,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195334,0.004883,-0.006248,0.249922,0,0);}
.m3b_c00070{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_c00070{transform:matrix(0.195594,0.004890,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195594,0.004890,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195594,0.004890,-0.006248,0.249922,0,0);}
.m96_c00070{transform:matrix(0.195669,0.004892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195669,0.004892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195669,0.004892,-0.006248,0.249922,0,0);}
.m101_c00070{transform:matrix(0.195769,0.005286,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195769,0.005286,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195769,0.005286,-0.006748,0.249909,0,0);}
.m89_c00070{transform:matrix(0.196407,0.004321,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196407,0.004321,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196407,0.004321,-0.005499,0.249940,0,0);}
.m74_c00070{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);}
.mb1_c00070{transform:matrix(0.197403,0.004935,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197403,0.004935,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197403,0.004935,-0.006248,0.249922,0,0);}
.m11_c00070{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);}
.m3e_c00070{transform:matrix(0.198173,0.003567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198173,0.003567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198173,0.003567,-0.004499,0.249960,0,0);}
.m39_c00070{transform:matrix(0.198723,0.003577,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198723,0.003577,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198723,0.003577,-0.004499,0.249960,0,0);}
.m87_c00070{transform:matrix(0.198772,0.004373,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198772,0.004373,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198772,0.004373,-0.005499,0.249940,0,0);}
.mb7_c00070{transform:matrix(0.198948,0.004974,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198948,0.004974,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198948,0.004974,-0.006248,0.249922,0,0);}
.m9c_c00070{transform:matrix(0.199368,0.004984,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199368,0.004984,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199368,0.004984,-0.006248,0.249922,0,0);}
.m17_c00070{transform:matrix(0.200009,0.003200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200009,0.003200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200009,0.003200,-0.003999,0.249968,0,0);}
.me7_c00070{transform:matrix(0.200100,0.006003,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200100,0.006003,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200100,0.006003,-0.007497,0.249888,0,0);}
.m4c_c00070{transform:matrix(0.200148,0.003603,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200148,0.003603,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200148,0.003603,-0.004499,0.249960,0,0);}
.m92_c00070{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);}
.m4f_c00070{transform:matrix(0.201012,0.003618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201012,0.003618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201012,0.003618,-0.004499,0.249960,0,0);}
.mfe_c00070{transform:matrix(0.201032,0.005428,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201032,0.005428,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201032,0.005428,-0.006748,0.249909,0,0);}
.mcf_c00070{transform:matrix(0.201217,0.005030,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201217,0.005030,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201217,0.005030,-0.006248,0.249922,0,0);}
.m99_c00070{transform:matrix(0.201422,0.005036,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201422,0.005036,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201422,0.005036,-0.006248,0.249922,0,0);}
.m44_c00070{transform:matrix(0.201452,0.003626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201452,0.003626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201452,0.003626,-0.004499,0.249960,0,0);}
.m24_c00070{transform:matrix(0.201871,0.003432,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201871,0.003432,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201871,0.003432,-0.004249,0.249964,0,0);}
.m7e_c00070{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);}
.me6_c00070{transform:matrix(0.203783,0.006113,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203783,0.006113,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203783,0.006113,-0.007497,0.249888,0,0);}
.m1e_c00070{transform:matrix(0.204004,0.003264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204004,0.003264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204004,0.003264,-0.003999,0.249968,0,0);}
.mcd_c00070{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);}
.me0_c00070{transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);}
.mba_c00070{transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);}
.m55_c00070{transform:matrix(0.204652,0.003684,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204652,0.003684,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204652,0.003684,-0.004499,0.249960,0,0);}
.m84_c00070{transform:matrix(0.205495,0.004521,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205495,0.004521,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205495,0.004521,-0.005499,0.249940,0,0);}
.m9b_c00070{transform:matrix(0.205681,0.005142,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205681,0.005142,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205681,0.005142,-0.006248,0.249922,0,0);}
.m100_c00070{transform:matrix(0.205820,0.005557,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205820,0.005557,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205820,0.005557,-0.006748,0.249909,0,0);}
.m85_c00070{transform:matrix(0.205945,0.004531,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205945,0.004531,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205945,0.004531,-0.005499,0.249940,0,0);}
.m4_c00070{transform:matrix(0.207097,0.006213,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207097,0.006213,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207097,0.006213,-0.007497,0.249888,0,0);}
.m3a_c00070{transform:matrix(0.207261,0.003731,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207261,0.003731,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207261,0.003731,-0.004499,0.249960,0,0);}
.m1a_c00070{transform:matrix(0.207348,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207348,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207348,0.003318,-0.003999,0.249968,0,0);}
.m81_c00070{transform:matrix(0.207625,0.004568,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207625,0.004568,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207625,0.004568,-0.005499,0.249940,0,0);}
.m65_c00070{transform:matrix(0.207736,0.003739,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207736,0.003739,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207736,0.003739,-0.004499,0.249960,0,0);}
.mce_c00070{transform:matrix(0.207895,0.005197,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207895,0.005197,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207895,0.005197,-0.006248,0.249922,0,0);}
.mfd_c00070{transform:matrix(0.208269,0.005623,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208269,0.005623,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208269,0.005623,-0.006748,0.249909,0,0);}
.m91_c00070{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);}
.mbe_c00070{transform:matrix(0.208440,0.005211,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208440,0.005211,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208440,0.005211,-0.006248,0.249922,0,0);}
.mb3_c00070{transform:matrix(0.208815,0.005220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208815,0.005220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208815,0.005220,-0.006248,0.249922,0,0);}
.m63_c00070{transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);}
.m5d_c00070{transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);}
.mc4_c00070{transform:matrix(0.210244,0.005256,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210244,0.005256,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210244,0.005256,-0.006248,0.249922,0,0);}
.maa_c00070{transform:matrix(0.210404,0.005260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210404,0.005260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210404,0.005260,-0.006248,0.249922,0,0);}
.m7b_c00070{transform:matrix(0.210539,0.004632,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210539,0.004632,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210539,0.004632,-0.005499,0.249940,0,0);}
.me8_c00070{transform:matrix(0.211360,0.006341,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211360,0.006341,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211360,0.006341,-0.007497,0.249888,0,0);}
.mff_c00070{transform:matrix(0.212757,0.005744,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212757,0.005744,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212757,0.005744,-0.006748,0.249909,0,0);}
.md1_c00070{transform:matrix(0.212923,0.005323,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212923,0.005323,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212923,0.005323,-0.006248,0.249922,0,0);}
.m5_c00070{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);}
.m10_c00070{transform:matrix(0.213249,0.006397,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213249,0.006397,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213249,0.006397,-0.007497,0.249888,0,0);}
.m97_c00070{transform:matrix(0.213763,0.005344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213763,0.005344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213763,0.005344,-0.006248,0.249922,0,0);}
.m5c_c00070{transform:matrix(0.214070,0.003853,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214070,0.003853,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214070,0.003853,-0.004499,0.249960,0,0);}
.md3_c00070{transform:matrix(0.214428,0.005361,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214428,0.005361,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214428,0.005361,-0.006248,0.249922,0,0);}
.m57_c00070{transform:matrix(0.215175,0.003873,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215175,0.003873,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215175,0.003873,-0.004499,0.249960,0,0);}
.m64_c00070{transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);}
.m41_c00070{transform:matrix(0.217430,0.003914,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217430,0.003914,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217430,0.003914,-0.004499,0.249960,0,0);}
.m73_c00070{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);}
.m94_c00070{transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);}
.m72_c00070{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);}
.m90_c00070{transform:matrix(0.219836,0.005496,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219836,0.005496,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219836,0.005496,-0.006248,0.249922,0,0);}
.mb4_c00070{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);}
.mf9_c00070{transform:matrix(0.220209,0.006166,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220209,0.006166,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220209,0.006166,-0.006997,0.249902,0,0);}
.mcb_c00070{transform:matrix(0.221821,0.005546,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221821,0.005546,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221821,0.005546,-0.006248,0.249922,0,0);}
.mb8_c00070{transform:matrix(0.222191,0.005555,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222191,0.005555,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222191,0.005555,-0.006248,0.249922,0,0);}
.m18_c00070{transform:matrix(0.222287,0.003557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222287,0.003557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222287,0.003557,-0.003999,0.249968,0,0);}
.m76_c00070{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);}
.mb9_c00070{transform:matrix(0.222735,0.005568,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222735,0.005568,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222735,0.005568,-0.006248,0.249922,0,0);}
.m5e_c00070{transform:matrix(0.223149,0.004017,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223149,0.004017,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223149,0.004017,-0.004499,0.249960,0,0);}
.m1d_c00070{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);}
.mad_c00070{transform:matrix(0.225080,0.005627,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225080,0.005627,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225080,0.005627,-0.006248,0.249922,0,0);}
.mf2_c00070{transform:matrix(0.225627,0.006318,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225627,0.006318,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225627,0.006318,-0.006997,0.249902,0,0);}
.m2e_c00070{transform:matrix(0.225743,0.004063,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225743,0.004063,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225743,0.004063,-0.004499,0.249960,0,0);}
.m2f_c00070{transform:matrix(0.226248,0.004072,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226248,0.004072,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226248,0.004072,-0.004499,0.249960,0,0);}
.m32_c00070{transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);}
.m1c_c00070{transform:matrix(0.227071,0.003633,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227071,0.003633,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227071,0.003633,-0.003999,0.249968,0,0);}
.mfb_c00070{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);}
.m9e_c00070{transform:matrix(0.227764,0.005694,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227764,0.005694,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227764,0.005694,-0.006248,0.249922,0,0);}
.m21_c00070{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);}
.ma7_c00070{transform:matrix(0.230858,0.005771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230858,0.005771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230858,0.005771,-0.006248,0.249922,0,0);}
.m107_c00070{transform:matrix(0.233850,0.006314,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233850,0.006314,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233850,0.006314,-0.006748,0.249909,0,0);}
.m1b_c00070{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);}
.md2_c00070{transform:matrix(0.234817,0.005870,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234817,0.005870,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234817,0.005870,-0.006248,0.249922,0,0);}
.m71_c00070{transform:matrix(0.235482,0.005652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235482,0.005652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235482,0.005652,-0.005998,0.249928,0,0);}
.m2d_c00070{transform:matrix(0.236432,0.004256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236432,0.004256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236432,0.004256,-0.004499,0.249960,0,0);}
.mae_c00070{transform:matrix(0.236921,0.005923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236921,0.005923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236921,0.005923,-0.006248,0.249922,0,0);}
.m19_c00070{transform:matrix(0.237080,0.003793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237080,0.003793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237080,0.003793,-0.003999,0.249968,0,0);}
.m34_c00070{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);}
.mfc_c00070{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);}
.m3_c00070{transform:matrix(0.237808,0.007134,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237808,0.007134,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237808,0.007134,-0.007497,0.249888,0,0);}
.mc5_c00070{transform:matrix(0.237966,0.005949,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237966,0.005949,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237966,0.005949,-0.006248,0.249922,0,0);}
.mf4_c00070{transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);}
.mfa_c00070{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.243786,0.004388,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243786,0.004388,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243786,0.004388,-0.004499,0.249960,0,0);}
.m102_c00070{transform:matrix(0.244366,0.006598,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244366,0.006598,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244366,0.006598,-0.006748,0.249909,0,0);}
.m6f_c00070{transform:matrix(0.244725,0.005873,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244725,0.005873,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244725,0.005873,-0.005998,0.249928,0,0);}
.m8c_c00070{transform:matrix(0.245156,0.005393,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245156,0.005393,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245156,0.005393,-0.005499,0.249940,0,0);}
.m58_c00070{transform:matrix(0.245265,0.004415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245265,0.004415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245265,0.004415,-0.004499,0.249960,0,0);}
.m6e_c00070{transform:matrix(0.246164,0.005908,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246164,0.005908,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246164,0.005908,-0.005998,0.249928,0,0);}
.mc_c00070{transform:matrix(0.246899,0.007407,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246899,0.007407,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246899,0.007407,-0.007497,0.249888,0,0);}
.m35_c00070{transform:matrix(0.247270,0.004451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247270,0.004451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247270,0.004451,-0.004499,0.249960,0,0);}
.mab_c00070{transform:matrix(0.248247,0.006206,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248247,0.006206,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248247,0.006206,-0.006248,0.249922,0,0);}
.mca_c00070{transform:matrix(0.248417,0.006210,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248417,0.006210,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248417,0.006210,-0.006248,0.249922,0,0);}
.m83_c00070{transform:matrix(0.248585,0.005469,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248585,0.005469,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248585,0.005469,-0.005499,0.249940,0,0);}
.ma0_c00070{transform:matrix(0.251291,0.006282,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251291,0.006282,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251291,0.006282,-0.006248,0.249922,0,0);}
.ma1_c00070{transform:matrix(0.251866,0.006297,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251866,0.006297,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251866,0.006297,-0.006248,0.249922,0,0);}
.m1_c00070{transform:matrix(0.253041,0.007591,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253041,0.007591,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253041,0.007591,-0.007497,0.249888,0,0);}
.mc2_c00070{transform:matrix(0.254695,0.006367,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254695,0.006367,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254695,0.006367,-0.006248,0.249922,0,0);}
.mef_c00070{transform:matrix(0.256495,0.007695,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256495,0.007695,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256495,0.007695,-0.007497,0.249888,0,0);}
.mac_c00070{transform:matrix(0.256670,0.006417,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256670,0.006417,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256670,0.006417,-0.006248,0.249922,0,0);}
.mc8_c00070{transform:matrix(0.256745,0.006419,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256745,0.006419,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256745,0.006419,-0.006248,0.249922,0,0);}
.m79_c00070{transform:matrix(0.258727,0.005692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258727,0.005692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258727,0.005692,-0.005499,0.249940,0,0);}
.m2_c00070{transform:matrix(0.258844,0.007765,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258844,0.007765,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258844,0.007765,-0.007497,0.249888,0,0);}
.mf5_c00070{transform:matrix(0.259663,0.007271,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259663,0.007271,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259663,0.007271,-0.006997,0.249902,0,0);}
.m36_c00070{transform:matrix(0.261388,0.004705,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261388,0.004705,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261388,0.004705,-0.004499,0.249960,0,0);}
.m31_c00070{transform:matrix(0.262907,0.004732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262907,0.004732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262907,0.004732,-0.004499,0.249960,0,0);}
.m2c_c00070{transform:matrix(0.269996,0.004860,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269996,0.004860,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269996,0.004860,-0.004499,0.249960,0,0);}
.m3d_c00070{transform:matrix(0.277195,0.004990,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277195,0.004990,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277195,0.004990,-0.004499,0.249960,0,0);}
.mf6_c00070{transform:matrix(0.281525,0.007883,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281525,0.007883,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281525,0.007883,-0.006997,0.249902,0,0);}
.mc1_c00070{transform:matrix(0.282497,0.007062,-0.006248,0.249922,0,0);-ms-transform:matrix(0.282497,0.007062,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.282497,0.007062,-0.006248,0.249922,0,0);}
.me9_c00070{transform:matrix(0.283467,0.008504,-0.007497,0.249888,0,0);-ms-transform:matrix(0.283467,0.008504,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.283467,0.008504,-0.007497,0.249888,0,0);}
.mf7_c00070{transform:matrix(0.287107,0.008039,-0.006997,0.249902,0,0);-ms-transform:matrix(0.287107,0.008039,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.287107,0.008039,-0.006997,0.249902,0,0);}
.ma_c00070{transform:matrix(0.287741,0.008632,-0.007497,0.249888,0,0);-ms-transform:matrix(0.287741,0.008632,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.287741,0.008632,-0.007497,0.249888,0,0);}
.mb0_c00070{transform:matrix(0.291179,0.007279,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291179,0.007279,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291179,0.007279,-0.006248,0.249922,0,0);}
.ma9_c00070{transform:matrix(0.295208,0.007380,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295208,0.007380,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295208,0.007380,-0.006248,0.249922,0,0);}
.mc9_c00070{transform:matrix(0.322479,0.008062,-0.006248,0.249922,0,0);-ms-transform:matrix(0.322479,0.008062,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.322479,0.008062,-0.006248,0.249922,0,0);}
.me2_c00070{transform:matrix(0.327113,0.008178,-0.006248,0.249922,0,0);-ms-transform:matrix(0.327113,0.008178,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.327113,0.008178,-0.006248,0.249922,0,0);}
.m13_c00070{transform:matrix(0.333124,0.007329,-0.005499,0.249940,0,0);-ms-transform:matrix(0.333124,0.007329,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.333124,0.007329,-0.005499,0.249940,0,0);}
.m12_c00070{transform:matrix(0.343322,0.007553,-0.005499,0.249940,0,0);-ms-transform:matrix(0.343322,0.007553,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.343322,0.007553,-0.005499,0.249940,0,0);}
.m98_c00070{transform:matrix(0.353140,0.008828,-0.006248,0.249922,0,0);-ms-transform:matrix(0.353140,0.008828,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.353140,0.008828,-0.006248,0.249922,0,0);}
.m14_c00070{transform:matrix(0.356779,0.007849,-0.005499,0.249940,0,0);-ms-transform:matrix(0.356779,0.007849,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.356779,0.007849,-0.005499,0.249940,0,0);}
.mb5_c00070{transform:matrix(0.363421,0.009086,-0.006248,0.249922,0,0);-ms-transform:matrix(0.363421,0.009086,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.363421,0.009086,-0.006248,0.249922,0,0);}
.m8_c00070{transform:matrix(0.449148,0.013474,-0.007497,0.249888,0,0);-ms-transform:matrix(0.449148,0.013474,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.449148,0.013474,-0.007497,0.249888,0,0);}
.m6_c00070{transform:matrix(0.778295,0.023349,-0.007497,0.249888,0,0);-ms-transform:matrix(0.778295,0.023349,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.778295,0.023349,-0.007497,0.249888,0,0);}
.m16_c00070{transform:matrix(0.957330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957330,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;}
.fs4_c00070{font-size:22.050000px;}
.fs2_c00070{font-size:26.250000px;}
.fs1e_c00070{font-size:48.300000px;}
.fs0_c00070{font-size:48.321730px;}
.fs20_c00070{font-size:51.468750px;}
.fs1d_c00070{font-size:51.470164px;}
.fs21_c00070{font-size:55.670281px;}
.fs1_c00070{font-size:55.675037px;}
.fsd_c00070{font-size:58.800000px;}
.fs1f_c00070{font-size:63.000000px;}
.fs7_c00070{font-size:63.010205px;}
.fsf_c00070{font-size:63.015244px;}
.fs5_c00070{font-size:65.108332px;}
.fs15_c00070{font-size:65.120341px;}
.fs11_c00070{font-size:67.216260px;}
.fs12_c00070{font-size:67.220997px;}
.fs8_c00070{font-size:68.261056px;}
.fs10_c00070{font-size:68.266515px;}
.fs17_c00070{font-size:68.271325px;}
.fs18_c00070{font-size:69.321653px;}
.fs9_c00070{font-size:70.361396px;}
.fs13_c00070{font-size:70.371981px;}
.fsa_c00070{font-size:71.411566px;}
.fsc_c00070{font-size:71.420560px;}
.fs16_c00070{font-size:71.422309px;}
.fs1c_c00070{font-size:72.482595px;}
.fs1b_c00070{font-size:73.533068px;}
.fsb_c00070{font-size:74.562076px;}
.fs19_c00070{font-size:74.573293px;}
.fse_c00070{font-size:74.581342px;}
.fs14_c00070{font-size:75.623621px;}
.fs6_c00070{font-size:76.661075px;}
.fs1a_c00070{font-size:76.673949px;}
.fs3_c00070{font-size:110.276677px;}
.y0_c00070{bottom:0.000000px;}
.yf9_c00070{bottom:145.251000px;}
.y11_c00070{bottom:147.017940px;}
.y10_c00070{bottom:147.667110px;}
.yf_c00070{bottom:148.511580px;}
.ye_c00070{bottom:149.334900px;}
.yd_c00070{bottom:149.775810px;}
.yc_c00070{bottom:150.862200px;}
.yb_c00070{bottom:151.661085px;}
.ya_c00070{bottom:151.929015px;}
.y9_c00070{bottom:153.220200px;}
.y8_c00070{bottom:153.891780px;}
.y105_c00070{bottom:158.616957px;}
.y104_c00070{bottom:159.838561px;}
.y103_c00070{bottom:161.427729px;}
.y102_c00070{bottom:162.161802px;}
.y7_c00070{bottom:163.938420px;}
.y101_c00070{bottom:164.161992px;}
.y6_c00070{bottom:165.888495px;}
.y5_c00070{bottom:166.796505px;}
.y4_c00070{bottom:169.105185px;}
.y3_c00070{bottom:169.941555px;}
.y2_c00070{bottom:171.155520px;}
.y1_c00070{bottom:171.999000px;}
.y100_c00070{bottom:176.554950px;}
.yff_c00070{bottom:177.409945px;}
.yfe_c00070{bottom:178.318117px;}
.yfd_c00070{bottom:179.421459px;}
.yfc_c00070{bottom:180.901167px;}
.yfb_c00070{bottom:181.986000px;}
.yf8_c00070{bottom:183.407592px;}
.yf7_c00070{bottom:184.141458px;}
.yf6_c00070{bottom:184.689810px;}
.yf5_c00070{bottom:185.918436px;}
.yf4_c00070{bottom:186.478506px;}
.yf3_c00070{bottom:187.408218px;}
.yf2_c00070{bottom:187.579494px;}
.yf1_c00070{bottom:187.965768px;}
.yf0_c00070{bottom:188.467500px;}
.yef_c00070{bottom:222.787170px;}
.yee_c00070{bottom:223.936725px;}
.yed_c00070{bottom:224.502825px;}
.yec_c00070{bottom:225.842010px;}
.yeb_c00070{bottom:226.613070px;}
.yea_c00070{bottom:228.420780px;}
.ye9_c00070{bottom:242.172570px;}
.ye8_c00070{bottom:242.933610px;}
.ye7_c00070{bottom:245.274195px;}
.ye6_c00070{bottom:246.787005px;}
.ye5_c00070{bottom:248.905020px;}
.ye4_c00070{bottom:249.602835px;}
.ye3_c00070{bottom:250.623705px;}
.ye2_c00070{bottom:251.382000px;}
.ye1_c00070{bottom:264.588975px;}
.ye0_c00070{bottom:266.350013px;}
.ydf_c00070{bottom:267.043125px;}
.yde_c00070{bottom:267.670462px;}
.ydd_c00070{bottom:268.599150px;}
.ydc_c00070{bottom:269.798625px;}
.ydb_c00070{bottom:271.192013px;}
.yda_c00070{bottom:272.217900px;}
.yd9_c00070{bottom:273.722175px;}
.yd8_c00070{bottom:287.823825px;}
.yd7_c00070{bottom:288.392512px;}
.yd6_c00070{bottom:289.074713px;}
.yd5_c00070{bottom:290.407238px;}
.yd4_c00070{bottom:291.252562px;}
.yd3_c00070{bottom:292.835625px;}
.yd2_c00070{bottom:293.796675px;}
.yd1_c00070{bottom:294.782025px;}
.yd0_c00070{bottom:295.868925px;}
.ycf_c00070{bottom:311.116087px;}
.yce_c00070{bottom:311.860200px;}
.ycd_c00070{bottom:312.703800px;}
.ycc_c00070{bottom:314.410012px;}
.ycb_c00070{bottom:315.684188px;}
.yca_c00070{bottom:317.261363px;}
.yc9_c00070{bottom:317.747062px;}
.yc8_c00070{bottom:318.285900px;}
.yc7_c00070{bottom:331.739287px;}
.yc6_c00070{bottom:333.463725px;}
.yc5_c00070{bottom:334.272300px;}
.yc4_c00070{bottom:335.348775px;}
.yc3_c00070{bottom:336.385238px;}
.yc2_c00070{bottom:337.809038px;}
.yc1_c00070{bottom:338.755763px;}
.yc0_c00070{bottom:339.361050px;}
.ybf_c00070{bottom:340.973138px;}
.ybe_c00070{bottom:355.465725px;}
.ybd_c00070{bottom:356.052412px;}
.ybc_c00070{bottom:357.116362px;}
.ybb_c00070{bottom:358.743938px;}
.yba_c00070{bottom:360.113662px;}
.yb9_c00070{bottom:360.799125px;}
.yb8_c00070{bottom:361.919212px;}
.yb7_c00070{bottom:362.983275px;}
.yb6_c00070{bottom:364.200975px;}
.yb5_c00070{bottom:379.268888px;}
.yb4_c00070{bottom:381.182212px;}
.yb3_c00070{bottom:381.709125px;}
.yb2_c00070{bottom:383.472825px;}
.yb1_c00070{bottom:384.315488px;}
.yb0_c00070{bottom:385.773413px;}
.yaf_c00070{bottom:386.890688px;}
.yae_c00070{bottom:400.373062px;}
.yad_c00070{bottom:401.554462px;}
.yac_c00070{bottom:402.564450px;}
.yab_c00070{bottom:403.904737px;}
.yaa_c00070{bottom:405.512438px;}
.ya9_c00070{bottom:406.101188px;}
.ya8_c00070{bottom:407.444363px;}
.ya7_c00070{bottom:409.035863px;}
.ya6_c00070{bottom:423.971250px;}
.ya5_c00070{bottom:424.998450px;}
.ya4_c00070{bottom:425.638500px;}
.ya3_c00070{bottom:426.328125px;}
.ya2_c00070{bottom:427.117125px;}
.ya1_c00070{bottom:428.481225px;}
.ya0_c00070{bottom:430.116413px;}
.y9f_c00070{bottom:430.745475px;}
.y9e_c00070{bottom:431.993175px;}
.y9d_c00070{bottom:447.164738px;}
.y9c_c00070{bottom:447.799800px;}
.y9b_c00070{bottom:448.280362px;}
.y9a_c00070{bottom:449.840100px;}
.y99_c00070{bottom:452.089200px;}
.y98_c00070{bottom:452.990325px;}
.y97_c00070{bottom:453.599775px;}
.y96_c00070{bottom:468.087412px;}
.y95_c00070{bottom:469.083075px;}
.y94_c00070{bottom:470.947837px;}
.y93_c00070{bottom:471.574200px;}
.y92_c00070{bottom:472.789313px;}
.y91_c00070{bottom:474.160313px;}
.y90_c00070{bottom:474.983888px;}
.y8f_c00070{bottom:476.388450px;}
.y8e_c00070{bottom:477.097500px;}
.y8d_c00070{bottom:491.834862px;}
.y8c_c00070{bottom:493.615659px;}
.y8b_c00070{bottom:495.370620px;}
.y8a_c00070{bottom:496.025955px;}
.y89_c00070{bottom:496.801527px;}
.y88_c00070{bottom:498.155157px;}
.y87_c00070{bottom:500.042547px;}
.y86_c00070{bottom:514.658844px;}
.y85_c00070{bottom:515.752992px;}
.y84_c00070{bottom:516.333792px;}
.y83_c00070{bottom:517.243041px;}
.y82_c00070{bottom:518.710914px;}
.y81_c00070{bottom:519.952341px;}
.y80_c00070{bottom:520.520601px;}
.y7f_c00070{bottom:521.646000px;}
.y7e_c00070{bottom:536.724324px;}
.y7d_c00070{bottom:537.591993px;}
.y7c_c00070{bottom:538.174245px;}
.y7b_c00070{bottom:539.736861px;}
.y7a_c00070{bottom:541.050063px;}
.y79_c00070{bottom:542.586840px;}
.y78_c00070{bottom:543.257895px;}
.y77_c00070{bottom:544.056000px;}
.y74_c00070{bottom:562.768500px;}
.y76_c00070{bottom:564.683289px;}
.y75_c00070{bottom:567.280500px;}
.yfa_c00070{bottom:602.089500px;}
.y73_c00070{bottom:603.059268px;}
.y72_c00070{bottom:604.382052px;}
.y71_c00070{bottom:605.357760px;}
.y70_c00070{bottom:606.612396px;}
.y6f_c00070{bottom:607.490328px;}
.y6e_c00070{bottom:608.264652px;}
.y6d_c00070{bottom:609.528216px;}
.y6c_c00070{bottom:610.070664px;}
.y6b_c00070{bottom:610.747500px;}
.y6a_c00070{bottom:625.188279px;}
.y69_c00070{bottom:626.498706px;}
.y68_c00070{bottom:627.590406px;}
.y67_c00070{bottom:628.244127px;}
.y66_c00070{bottom:629.074461px;}
.y65_c00070{bottom:629.988888px;}
.y64_c00070{bottom:630.431688px;}
.y63_c00070{bottom:631.602081px;}
.y62_c00070{bottom:632.594133px;}
.y61_c00070{bottom:648.481818px;}
.y60_c00070{bottom:649.609242px;}
.y5f_c00070{bottom:650.451897px;}
.y5e_c00070{bottom:651.373080px;}
.y5d_c00070{bottom:652.688370px;}
.y5c_c00070{bottom:653.261730px;}
.y5b_c00070{bottom:654.266382px;}
.y5a_c00070{bottom:655.084491px;}
.y59_c00070{bottom:655.548309px;}
.y58_c00070{bottom:670.715112px;}
.y57_c00070{bottom:671.556210px;}
.y56_c00070{bottom:673.254069px;}
.y55_c00070{bottom:673.922748px;}
.y54_c00070{bottom:676.005738px;}
.y53_c00070{bottom:677.416092px;}
.y52_c00070{bottom:678.501849px;}
.y51_c00070{bottom:693.884490px;}
.y50_c00070{bottom:694.769487px;}
.y4f_c00070{bottom:696.127281px;}
.y4e_c00070{bottom:696.599997px;}
.y4d_c00070{bottom:697.184577px;}
.y4c_c00070{bottom:698.915052px;}
.y4b_c00070{bottom:699.462744px;}
.y4a_c00070{bottom:700.643541px;}
.y49_c00070{bottom:714.682146px;}
.y48_c00070{bottom:715.823913px;}
.y47_c00070{bottom:716.716128px;}
.y46_c00070{bottom:717.315408px;}
.y45_c00070{bottom:718.477956px;}
.y44_c00070{bottom:719.193978px;}
.y43_c00070{bottom:720.043296px;}
.y42_c00070{bottom:720.926046px;}
.y41_c00070{bottom:721.493595px;}
.y40_c00070{bottom:722.788737px;}
.y3f_c00070{bottom:738.914052px;}
.y3e_c00070{bottom:739.787127px;}
.y3d_c00070{bottom:740.704974px;}
.y3c_c00070{bottom:741.385944px;}
.y3b_c00070{bottom:741.981933px;}
.y3a_c00070{bottom:743.269815px;}
.y39_c00070{bottom:743.723034px;}
.y38_c00070{bottom:744.404220px;}
.y37_c00070{bottom:744.965373px;}
.y36_c00070{bottom:745.741626px;}
.y35_c00070{bottom:761.385681px;}
.y34_c00070{bottom:762.537852px;}
.y33_c00070{bottom:763.095186px;}
.y32_c00070{bottom:764.006382px;}
.y31_c00070{bottom:764.326575px;}
.y30_c00070{bottom:765.292257px;}
.y2f_c00070{bottom:766.701954px;}
.y2e_c00070{bottom:767.285235px;}
.y2d_c00070{bottom:767.884500px;}
.y2c_c00070{bottom:783.456127px;}
.y2b_c00070{bottom:783.936752px;}
.y2a_c00070{bottom:784.479774px;}
.y29_c00070{bottom:785.208462px;}
.y28_c00070{bottom:785.843361px;}
.y27_c00070{bottom:786.518550px;}
.y26_c00070{bottom:787.032707px;}
.y25_c00070{bottom:787.579070px;}
.y24_c00070{bottom:788.288709px;}
.y23_c00070{bottom:789.006840px;}
.y22_c00070{bottom:789.754500px;}
.y21_c00070{bottom:806.816544px;}
.y20_c00070{bottom:807.179520px;}
.y1f_c00070{bottom:807.744120px;}
.y1e_c00070{bottom:808.863264px;}
.y1d_c00070{bottom:809.300976px;}
.y1c_c00070{bottom:809.909952px;}
.y1b_c00070{bottom:810.591384px;}
.y1a_c00070{bottom:811.072008px;}
.y19_c00070{bottom:812.031696px;}
.y18_c00070{bottom:812.433000px;}
.y17_c00070{bottom:835.779000px;}
.y16_c00070{bottom:846.213279px;}
.y15_c00070{bottom:847.704780px;}
.y14_c00070{bottom:850.165689px;}
.y13_c00070{bottom:852.402000px;}
.y12_c00070{bottom:940.140000px;}
.h6_c00070{height:22.050000px;}
.h4_c00070{height:26.250000px;}
.h20_c00070{height:48.300000px;}
.h2_c00070{height:48.321730px;}
.h22_c00070{height:51.468750px;}
.h1f_c00070{height:51.470164px;}
.h23_c00070{height:55.670281px;}
.h3_c00070{height:55.675037px;}
.hf_c00070{height:58.800000px;}
.h21_c00070{height:63.000000px;}
.h9_c00070{height:63.010205px;}
.h11_c00070{height:63.015244px;}
.h7_c00070{height:65.108332px;}
.h17_c00070{height:65.120341px;}
.h13_c00070{height:67.216260px;}
.h14_c00070{height:67.220997px;}
.ha_c00070{height:68.261056px;}
.h12_c00070{height:68.266515px;}
.h19_c00070{height:68.271325px;}
.h1a_c00070{height:69.321653px;}
.hb_c00070{height:70.361396px;}
.h15_c00070{height:70.371981px;}
.hc_c00070{height:71.411566px;}
.he_c00070{height:71.420560px;}
.h18_c00070{height:71.422309px;}
.h1e_c00070{height:72.482595px;}
.h1d_c00070{height:73.533068px;}
.hd_c00070{height:74.562076px;}
.h1b_c00070{height:74.573293px;}
.h10_c00070{height:74.581342px;}
.h16_c00070{height:75.623621px;}
.h8_c00070{height:76.661075px;}
.h1c_c00070{height:76.673949px;}
.h5_c00070{height:110.276677px;}
.h1_c00070{height:1005.000000px;}
.h0_c00070{height:1005.150000px;}
.w0_c00070{width:705.450000px;}
.w1_c00070{width:705.750000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:49.389000px;}
.x8_c00070{left:51.572235px;}
.x9_c00070{left:73.958235px;}
.x2_c00070{left:77.505000px;}
.x93_c00070{left:97.468500px;}
.x7f_c00070{left:111.994575px;}
.x75_c00070{left:113.627100px;}
.x94_c00070{left:115.387500px;}
.x3_c00070{left:117.970500px;}
.x90_c00070{left:119.523105px;}
.x8b_c00070{left:121.389000px;}
.x7a_c00070{left:123.068325px;}
.x6d_c00070{left:124.690912px;}
.xa_c00070{left:125.928735px;}
.x5c_c00070{left:127.707000px;}
.x48_c00070{left:128.783187px;}
.x4e_c00070{left:129.852492px;}
.x31_c00070{left:131.500521px;}
.x21_c00070{left:133.425000px;}
.x17_c00070{left:134.802000px;}
.x82_c00070{left:143.236800px;}
.x4_c00070{left:145.849500px;}
.x49_c00070{left:150.882999px;}
.xb_c00070{left:152.558235px;}
.x68_c00070{left:153.871500px;}
.x54_c00070{left:156.411000px;}
.x18_c00070{left:159.883500px;}
.x83_c00070{left:161.944350px;}
.x5d_c00070{left:163.984500px;}
.x85_c00070{left:165.958725px;}
.x12_c00070{left:167.154000px;}
.x16_c00070{left:168.750000px;}
.x7b_c00070{left:169.915162px;}
.x4f_c00070{left:174.963252px;}
.x22_c00070{left:177.405000px;}
.x55_c00070{left:179.013000px;}
.x8c_c00070{left:180.694500px;}
.x91_c00070{left:184.083975px;}
.x40_c00070{left:187.484904px;}
.xc_c00070{left:188.771235px;}
.x4a_c00070{left:189.831393px;}
.x39_c00070{left:190.862925px;}
.x32_c00070{left:195.214092px;}
.x2b_c00070{left:198.853500px;}
.x63_c00070{left:200.959053px;}
.xd_c00070{left:203.468235px;}
.x86_c00070{left:205.372725px;}
.x69_c00070{left:210.054000px;}
.x92_c00070{left:211.637640px;}
.x41_c00070{left:213.577500px;}
.x3a_c00070{left:216.641562px;}
.x5b_c00070{left:217.704000px;}
.x19_c00070{left:219.864000px;}
.x5_c00070{left:222.805500px;}
.x33_c00070{left:227.639337px;}
.xe_c00070{left:230.912235px;}
.x95_c00070{left:232.386000px;}
.x4b_c00070{left:237.642801px;}
.x45_c00070{left:239.246580px;}
.x6a_c00070{left:242.997000px;}
.x78_c00070{left:245.912550px;}
.x50_c00070{left:248.246460px;}
.x1a_c00070{left:249.903000px;}
.x96_c00070{left:251.970000px;}
.x6_c00070{left:253.072500px;}
.x64_c00070{left:255.120489px;}
.x3b_c00070{left:256.763673px;}
.xf_c00070{left:259.061235px;}
.x23_c00070{left:261.391500px;}
.x4c_c00070{left:264.911316px;}
.x13_c00070{left:268.804500px;}
.x11_c00070{left:272.160000px;}
.x8d_c00070{left:274.555500px;}
.x2c_c00070{left:277.170000px;}
.x97_c00070{left:278.179500px;}
.x10_c00070{left:280.700235px;}
.x65_c00070{left:286.144443px;}
.x6e_c00070{left:288.106050px;}
.x51_c00070{left:289.794963px;}
.x1b_c00070{left:292.492500px;}
.x24_c00070{left:293.530500px;}
.x3c_c00070{left:295.361892px;}
.x6b_c00070{left:297.837000px;}
.x56_c00070{left:300.505500px;}
.x87_c00070{left:307.137225px;}
.x79_c00070{left:308.895825px;}
.x34_c00070{left:310.529355px;}
.x66_c00070{left:312.385227px;}
.x7_c00070{left:318.075000px;}
.x72_c00070{left:319.997250px;}
.x25_c00070{left:323.775000px;}
.x8e_c00070{left:324.982500px;}
.x61_c00070{left:326.467500px;}
.x3d_c00070{left:327.888543px;}
.x1c_c00070{left:330.553500px;}
.x7c_c00070{left:332.944575px;}
.x80_c00070{left:336.969075px;}
.x35_c00070{left:338.888316px;}
.x88_c00070{left:340.950225px;}
.x42_c00070{left:346.279818px;}
.x89_c00070{left:347.457225px;}
.x2d_c00070{left:348.607500px;}
.x73_c00070{left:351.557250px;}
.x57_c00070{left:352.782000px;}
.x6f_c00070{left:355.898925px;}
.x1d_c00070{left:357.910500px;}
.x26_c00070{left:363.492000px;}
.x62_c00070{left:367.797000px;}
.x84_c00070{left:369.645638px;}
.x36_c00070{left:371.301561px;}
.x76_c00070{left:372.483600px;}
.x70_c00070{left:376.802475px;}
.x74_c00070{left:379.142250px;}
.x14_c00070{left:380.664000px;}
.x67_c00070{left:382.606107px;}
.x58_c00070{left:393.436500px;}
.x5e_c00070{left:395.059500px;}
.x8a_c00070{left:396.372788px;}
.x2e_c00070{left:399.229500px;}
.x27_c00070{left:400.839000px;}
.x8f_c00070{left:403.002000px;}
.x71_c00070{left:404.426362px;}
.x59_c00070{left:405.540000px;}
.x52_c00070{left:406.884039px;}
.x3e_c00070{left:407.928765px;}
.x43_c00070{left:410.959335px;}
.x77_c00070{left:412.883100px;}
.x37_c00070{left:415.040712px;}
.x9b_c00070{left:420.425924px;}
.x5f_c00070{left:421.525500px;}
.x1e_c00070{left:427.857000px;}
.x2f_c00070{left:430.192500px;}
.x46_c00070{left:432.675165px;}
.x7d_c00070{left:436.462987px;}
.x5a_c00070{left:439.560000px;}
.x28_c00070{left:443.703000px;}
.x6c_c00070{left:446.086500px;}
.x15_c00070{left:448.459500px;}
.x44_c00070{left:453.123567px;}
.x38_c00070{left:456.625971px;}
.x7e_c00070{left:459.029925px;}
.x60_c00070{left:460.965000px;}
.x1f_c00070{left:463.144500px;}
.x4d_c00070{left:465.264516px;}
.x53_c00070{left:466.431246px;}
.x98_c00070{left:468.180000px;}
.x47_c00070{left:469.232871px;}
.x29_c00070{left:475.645500px;}
.x81_c00070{left:481.348575px;}
.x20_c00070{left:485.830500px;}
.x30_c00070{left:494.202000px;}
.x3f_c00070{left:500.421123px;}
.x99_c00070{left:501.927000px;}
.x2a_c00070{left:503.917500px;}
.x9c_c00070{left:517.356699px;}
.x9a_c00070{left:533.593500px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.fs4_c00070{font-size:19.600000pt;}
.fs2_c00070{font-size:23.333333pt;}
.fs1e_c00070{font-size:42.933333pt;}
.fs0_c00070{font-size:42.952649pt;}
.fs20_c00070{font-size:45.750000pt;}
.fs1d_c00070{font-size:45.751257pt;}
.fs21_c00070{font-size:49.484694pt;}
.fs1_c00070{font-size:49.488922pt;}
.fsd_c00070{font-size:52.266667pt;}
.fs1f_c00070{font-size:56.000000pt;}
.fs7_c00070{font-size:56.009071pt;}
.fsf_c00070{font-size:56.013550pt;}
.fs5_c00070{font-size:57.874073pt;}
.fs15_c00070{font-size:57.884747pt;}
.fs11_c00070{font-size:59.747787pt;}
.fs12_c00070{font-size:59.751997pt;}
.fs8_c00070{font-size:60.676494pt;}
.fs10_c00070{font-size:60.681346pt;}
.fs17_c00070{font-size:60.685622pt;}
.fs18_c00070{font-size:61.619247pt;}
.fs9_c00070{font-size:62.543463pt;}
.fs13_c00070{font-size:62.552872pt;}
.fsa_c00070{font-size:63.476947pt;}
.fsc_c00070{font-size:63.484942pt;}
.fs16_c00070{font-size:63.486497pt;}
.fs1c_c00070{font-size:64.428973pt;}
.fs1b_c00070{font-size:65.362727pt;}
.fsb_c00070{font-size:66.277401pt;}
.fs19_c00070{font-size:66.287372pt;}
.fse_c00070{font-size:66.294526pt;}
.fs14_c00070{font-size:67.220997pt;}
.fs6_c00070{font-size:68.143178pt;}
.fs1a_c00070{font-size:68.154622pt;}
.fs3_c00070{font-size:98.023713pt;}
.y0_c00070{bottom:0.000000pt;}
.yf9_c00070{bottom:129.112000pt;}
.y11_c00070{bottom:130.682613pt;}
.y10_c00070{bottom:131.259653pt;}
.yf_c00070{bottom:132.010293pt;}
.ye_c00070{bottom:132.742133pt;}
.yd_c00070{bottom:133.134053pt;}
.yc_c00070{bottom:134.099733pt;}
.yb_c00070{bottom:134.809853pt;}
.ya_c00070{bottom:135.048013pt;}
.y9_c00070{bottom:136.195733pt;}
.y8_c00070{bottom:136.792693pt;}
.y105_c00070{bottom:140.992851pt;}
.y104_c00070{bottom:142.078721pt;}
.y103_c00070{bottom:143.491315pt;}
.y102_c00070{bottom:144.143824pt;}
.y7_c00070{bottom:145.723040pt;}
.y101_c00070{bottom:145.921771pt;}
.y6_c00070{bottom:147.456440pt;}
.y5_c00070{bottom:148.263560pt;}
.y4_c00070{bottom:150.315720pt;}
.y3_c00070{bottom:151.059160pt;}
.y2_c00070{bottom:152.138240pt;}
.y1_c00070{bottom:152.888000pt;}
.y100_c00070{bottom:156.937733pt;}
.yff_c00070{bottom:157.697729pt;}
.yfe_c00070{bottom:158.504993pt;}
.yfd_c00070{bottom:159.485741pt;}
.yfc_c00070{bottom:160.801037pt;}
.yfb_c00070{bottom:161.765333pt;}
.yf8_c00070{bottom:163.028971pt;}
.yf7_c00070{bottom:163.681296pt;}
.yf6_c00070{bottom:164.168720pt;}
.yf5_c00070{bottom:165.260832pt;}
.yf4_c00070{bottom:165.758672pt;}
.yf3_c00070{bottom:166.585083pt;}
.yf2_c00070{bottom:166.737328pt;}
.yf1_c00070{bottom:167.080683pt;}
.yf0_c00070{bottom:167.526667pt;}
.yef_c00070{bottom:198.033040pt;}
.yee_c00070{bottom:199.054867pt;}
.yed_c00070{bottom:199.558067pt;}
.yec_c00070{bottom:200.748453pt;}
.yeb_c00070{bottom:201.433840pt;}
.yea_c00070{bottom:203.040693pt;}
.ye9_c00070{bottom:215.264507pt;}
.ye8_c00070{bottom:215.940987pt;}
.ye7_c00070{bottom:218.021507pt;}
.ye6_c00070{bottom:219.366227pt;}
.ye5_c00070{bottom:221.248907pt;}
.ye4_c00070{bottom:221.869187pt;}
.ye3_c00070{bottom:222.776627pt;}
.ye2_c00070{bottom:223.450667pt;}
.ye1_c00070{bottom:235.190200pt;}
.ye0_c00070{bottom:236.755567pt;}
.ydf_c00070{bottom:237.371667pt;}
.yde_c00070{bottom:237.929300pt;}
.ydd_c00070{bottom:238.754800pt;}
.ydc_c00070{bottom:239.821000pt;}
.ydb_c00070{bottom:241.059567pt;}
.yda_c00070{bottom:241.971467pt;}
.yd9_c00070{bottom:243.308600pt;}
.yd8_c00070{bottom:255.843400pt;}
.yd7_c00070{bottom:256.348900pt;}
.yd6_c00070{bottom:256.955300pt;}
.yd5_c00070{bottom:258.139767pt;}
.yd4_c00070{bottom:258.891167pt;}
.yd3_c00070{bottom:260.298333pt;}
.yd2_c00070{bottom:261.152600pt;}
.yd1_c00070{bottom:262.028467pt;}
.yd0_c00070{bottom:262.994600pt;}
.ycf_c00070{bottom:276.547633pt;}
.yce_c00070{bottom:277.209067pt;}
.ycd_c00070{bottom:277.958933pt;}
.ycc_c00070{bottom:279.475567pt;}
.ycb_c00070{bottom:280.608167pt;}
.yca_c00070{bottom:282.010100pt;}
.yc9_c00070{bottom:282.441833pt;}
.yc8_c00070{bottom:282.920800pt;}
.yc7_c00070{bottom:294.879367pt;}
.yc6_c00070{bottom:296.412200pt;}
.yc5_c00070{bottom:297.130933pt;}
.yc4_c00070{bottom:298.087800pt;}
.yc3_c00070{bottom:299.009100pt;}
.yc2_c00070{bottom:300.274700pt;}
.yc1_c00070{bottom:301.116233pt;}
.yc0_c00070{bottom:301.654267pt;}
.ybf_c00070{bottom:303.087233pt;}
.ybe_c00070{bottom:315.969533pt;}
.ybd_c00070{bottom:316.491033pt;}
.ybc_c00070{bottom:317.436767pt;}
.ybb_c00070{bottom:318.883500pt;}
.yba_c00070{bottom:320.101033pt;}
.yb9_c00070{bottom:320.710333pt;}
.yb8_c00070{bottom:321.705967pt;}
.yb7_c00070{bottom:322.651800pt;}
.yb6_c00070{bottom:323.734200pt;}
.yb5_c00070{bottom:337.127900pt;}
.yb4_c00070{bottom:338.828633pt;}
.yb3_c00070{bottom:339.297000pt;}
.yb2_c00070{bottom:340.864733pt;}
.yb1_c00070{bottom:341.613767pt;}
.yb0_c00070{bottom:342.909700pt;}
.yaf_c00070{bottom:343.902833pt;}
.yae_c00070{bottom:355.887167pt;}
.yad_c00070{bottom:356.937300pt;}
.yac_c00070{bottom:357.835067pt;}
.yab_c00070{bottom:359.026433pt;}
.yaa_c00070{bottom:360.455500pt;}
.ya9_c00070{bottom:360.978833pt;}
.ya8_c00070{bottom:362.172767pt;}
.ya7_c00070{bottom:363.587433pt;}
.ya6_c00070{bottom:376.863333pt;}
.ya5_c00070{bottom:377.776400pt;}
.ya4_c00070{bottom:378.345333pt;}
.ya3_c00070{bottom:378.958333pt;}
.ya2_c00070{bottom:379.659667pt;}
.ya1_c00070{bottom:380.872200pt;}
.ya0_c00070{bottom:382.325700pt;}
.y9f_c00070{bottom:382.884867pt;}
.y9e_c00070{bottom:383.993933pt;}
.y9d_c00070{bottom:397.479767pt;}
.y9c_c00070{bottom:398.044267pt;}
.y9b_c00070{bottom:398.471433pt;}
.y9a_c00070{bottom:399.857867pt;}
.y99_c00070{bottom:401.857067pt;}
.y98_c00070{bottom:402.658067pt;}
.y97_c00070{bottom:403.199800pt;}
.y96_c00070{bottom:416.077700pt;}
.y95_c00070{bottom:416.962733pt;}
.y94_c00070{bottom:418.620300pt;}
.y93_c00070{bottom:419.177067pt;}
.y92_c00070{bottom:420.257167pt;}
.y91_c00070{bottom:421.475833pt;}
.y90_c00070{bottom:422.207900pt;}
.y8f_c00070{bottom:423.456400pt;}
.y8e_c00070{bottom:424.086667pt;}
.y8d_c00070{bottom:437.186544pt;}
.y8c_c00070{bottom:438.769475pt;}
.y8b_c00070{bottom:440.329440pt;}
.y8a_c00070{bottom:440.911960pt;}
.y89_c00070{bottom:441.601357pt;}
.y88_c00070{bottom:442.804584pt;}
.y87_c00070{bottom:444.482264pt;}
.y86_c00070{bottom:457.474528pt;}
.y85_c00070{bottom:458.447104pt;}
.y84_c00070{bottom:458.963371pt;}
.y83_c00070{bottom:459.771592pt;}
.y82_c00070{bottom:461.076368pt;}
.y81_c00070{bottom:462.179859pt;}
.y80_c00070{bottom:462.684979pt;}
.y7f_c00070{bottom:463.685333pt;}
.y7e_c00070{bottom:477.088288pt;}
.y7d_c00070{bottom:477.859549pt;}
.y7c_c00070{bottom:478.377107pt;}
.y7b_c00070{bottom:479.766099pt;}
.y7a_c00070{bottom:480.933389pt;}
.y79_c00070{bottom:482.299413pt;}
.y78_c00070{bottom:482.895907pt;}
.y77_c00070{bottom:483.605333pt;}
.y74_c00070{bottom:500.238667pt;}
.y76_c00070{bottom:501.940701pt;}
.y75_c00070{bottom:504.249333pt;}
.yfa_c00070{bottom:535.190667pt;}
.y73_c00070{bottom:536.052683pt;}
.y72_c00070{bottom:537.228491pt;}
.y71_c00070{bottom:538.095787pt;}
.y70_c00070{bottom:539.211019pt;}
.y6f_c00070{bottom:539.991403pt;}
.y6e_c00070{bottom:540.679691pt;}
.y6d_c00070{bottom:541.802859pt;}
.y6c_c00070{bottom:542.285035pt;}
.y6b_c00070{bottom:542.886667pt;}
.y6a_c00070{bottom:555.722915pt;}
.y69_c00070{bottom:556.887739pt;}
.y68_c00070{bottom:557.858139pt;}
.y67_c00070{bottom:558.439224pt;}
.y66_c00070{bottom:559.177299pt;}
.y65_c00070{bottom:559.990123pt;}
.y64_c00070{bottom:560.383723pt;}
.y63_c00070{bottom:561.424072pt;}
.y62_c00070{bottom:562.305896pt;}
.y61_c00070{bottom:576.428283pt;}
.y60_c00070{bottom:577.430437pt;}
.y5f_c00070{bottom:578.179464pt;}
.y5e_c00070{bottom:578.998293pt;}
.y5d_c00070{bottom:580.167440pt;}
.y5c_c00070{bottom:580.677093pt;}
.y5b_c00070{bottom:581.570117pt;}
.y5a_c00070{bottom:582.297325pt;}
.y59_c00070{bottom:582.709608pt;}
.y58_c00070{bottom:596.191211pt;}
.y57_c00070{bottom:596.938853pt;}
.y56_c00070{bottom:598.448061pt;}
.y55_c00070{bottom:599.042443pt;}
.y54_c00070{bottom:600.893989pt;}
.y53_c00070{bottom:602.147637pt;}
.y52_c00070{bottom:603.112755pt;}
.y51_c00070{bottom:616.786213pt;}
.y50_c00070{bottom:617.572877pt;}
.y4f_c00070{bottom:618.779805pt;}
.y4e_c00070{bottom:619.199997pt;}
.y4d_c00070{bottom:619.719624pt;}
.y4c_c00070{bottom:621.257824pt;}
.y4b_c00070{bottom:621.744661pt;}
.y4a_c00070{bottom:622.794259pt;}
.y49_c00070{bottom:635.273019pt;}
.y48_c00070{bottom:636.287923pt;}
.y47_c00070{bottom:637.081003pt;}
.y46_c00070{bottom:637.613696pt;}
.y45_c00070{bottom:638.647072pt;}
.y44_c00070{bottom:639.283536pt;}
.y43_c00070{bottom:640.038485pt;}
.y42_c00070{bottom:640.823152pt;}
.y41_c00070{bottom:641.327640pt;}
.y40_c00070{bottom:642.478877pt;}
.y3f_c00070{bottom:656.812491pt;}
.y3e_c00070{bottom:657.588557pt;}
.y3d_c00070{bottom:658.404421pt;}
.y3c_c00070{bottom:659.009728pt;}
.y3b_c00070{bottom:659.539496pt;}
.y3a_c00070{bottom:660.684280pt;}
.y39_c00070{bottom:661.087141pt;}
.y38_c00070{bottom:661.692640pt;}
.y37_c00070{bottom:662.191443pt;}
.y36_c00070{bottom:662.881445pt;}
.y35_c00070{bottom:676.787272pt;}
.y34_c00070{bottom:677.811424pt;}
.y33_c00070{bottom:678.306832pt;}
.y32_c00070{bottom:679.116784pt;}
.y31_c00070{bottom:679.401400pt;}
.y30_c00070{bottom:680.259784pt;}
.y2f_c00070{bottom:681.512848pt;}
.y2e_c00070{bottom:682.031320pt;}
.y2d_c00070{bottom:682.564000pt;}
.y2c_c00070{bottom:696.405447pt;}
.y2b_c00070{bottom:696.832668pt;}
.y2a_c00070{bottom:697.315355pt;}
.y29_c00070{bottom:697.963077pt;}
.y28_c00070{bottom:698.527432pt;}
.y27_c00070{bottom:699.127600pt;}
.y26_c00070{bottom:699.584628pt;}
.y25_c00070{bottom:700.070284pt;}
.y24_c00070{bottom:700.701075pt;}
.y23_c00070{bottom:701.339413pt;}
.y22_c00070{bottom:702.004000pt;}
.y21_c00070{bottom:717.170261pt;}
.y20_c00070{bottom:717.492907pt;}
.y1f_c00070{bottom:717.994773pt;}
.y1e_c00070{bottom:718.989568pt;}
.y1d_c00070{bottom:719.378645pt;}
.y1c_c00070{bottom:719.919957pt;}
.y1b_c00070{bottom:720.525675pt;}
.y1a_c00070{bottom:720.952896pt;}
.y19_c00070{bottom:721.805952pt;}
.y18_c00070{bottom:722.162667pt;}
.y17_c00070{bottom:742.914667pt;}
.y16_c00070{bottom:752.189581pt;}
.y15_c00070{bottom:753.515360pt;}
.y14_c00070{bottom:755.702835pt;}
.y13_c00070{bottom:757.690667pt;}
.y12_c00070{bottom:835.680000pt;}
.h6_c00070{height:19.600000pt;}
.h4_c00070{height:23.333333pt;}
.h20_c00070{height:42.933333pt;}
.h2_c00070{height:42.952649pt;}
.h22_c00070{height:45.750000pt;}
.h1f_c00070{height:45.751257pt;}
.h23_c00070{height:49.484694pt;}
.h3_c00070{height:49.488922pt;}
.hf_c00070{height:52.266667pt;}
.h21_c00070{height:56.000000pt;}
.h9_c00070{height:56.009071pt;}
.h11_c00070{height:56.013550pt;}
.h7_c00070{height:57.874073pt;}
.h17_c00070{height:57.884747pt;}
.h13_c00070{height:59.747787pt;}
.h14_c00070{height:59.751997pt;}
.ha_c00070{height:60.676494pt;}
.h12_c00070{height:60.681346pt;}
.h19_c00070{height:60.685622pt;}
.h1a_c00070{height:61.619247pt;}
.hb_c00070{height:62.543463pt;}
.h15_c00070{height:62.552872pt;}
.hc_c00070{height:63.476947pt;}
.he_c00070{height:63.484942pt;}
.h18_c00070{height:63.486497pt;}
.h1e_c00070{height:64.428973pt;}
.h1d_c00070{height:65.362727pt;}
.hd_c00070{height:66.277401pt;}
.h1b_c00070{height:66.287372pt;}
.h10_c00070{height:66.294526pt;}
.h16_c00070{height:67.220997pt;}
.h8_c00070{height:68.143178pt;}
.h1c_c00070{height:68.154622pt;}
.h5_c00070{height:98.023713pt;}
.h1_c00070{height:893.333333pt;}
.h0_c00070{height:893.466667pt;}
.w0_c00070{width:627.066667pt;}
.w1_c00070{width:627.333333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:43.901333pt;}
.x8_c00070{left:45.841987pt;}
.x9_c00070{left:65.740653pt;}
.x2_c00070{left:68.893333pt;}
.x93_c00070{left:86.638667pt;}
.x7f_c00070{left:99.550733pt;}
.x75_c00070{left:101.001867pt;}
.x94_c00070{left:102.566667pt;}
.x3_c00070{left:104.862667pt;}
.x90_c00070{left:106.242760pt;}
.x8b_c00070{left:107.901333pt;}
.x7a_c00070{left:109.394067pt;}
.x6d_c00070{left:110.836367pt;}
.xa_c00070{left:111.936653pt;}
.x5c_c00070{left:113.517333pt;}
.x48_c00070{left:114.473944pt;}
.x4e_c00070{left:115.424437pt;}
.x31_c00070{left:116.889352pt;}
.x21_c00070{left:118.600000pt;}
.x17_c00070{left:119.824000pt;}
.x82_c00070{left:127.321600pt;}
.x4_c00070{left:129.644000pt;}
.x49_c00070{left:134.118221pt;}
.xb_c00070{left:135.607320pt;}
.x68_c00070{left:136.774667pt;}
.x54_c00070{left:139.032000pt;}
.x18_c00070{left:142.118667pt;}
.x83_c00070{left:143.950533pt;}
.x5d_c00070{left:145.764000pt;}
.x85_c00070{left:147.518867pt;}
.x12_c00070{left:148.581333pt;}
.x16_c00070{left:150.000000pt;}
.x7b_c00070{left:151.035700pt;}
.x4f_c00070{left:155.522891pt;}
.x22_c00070{left:157.693333pt;}
.x55_c00070{left:159.122667pt;}
.x8c_c00070{left:160.617333pt;}
.x91_c00070{left:163.630200pt;}
.x40_c00070{left:166.653248pt;}
.xc_c00070{left:167.796653pt;}
.x4a_c00070{left:168.739016pt;}
.x39_c00070{left:169.655933pt;}
.x32_c00070{left:173.523637pt;}
.x2b_c00070{left:176.758667pt;}
.x63_c00070{left:178.630269pt;}
.xd_c00070{left:180.860653pt;}
.x86_c00070{left:182.553533pt;}
.x69_c00070{left:186.714667pt;}
.x92_c00070{left:188.122347pt;}
.x41_c00070{left:189.846667pt;}
.x3a_c00070{left:192.570277pt;}
.x5b_c00070{left:193.514667pt;}
.x19_c00070{left:195.434667pt;}
.x5_c00070{left:198.049333pt;}
.x33_c00070{left:202.346077pt;}
.xe_c00070{left:205.255320pt;}
.x95_c00070{left:206.565333pt;}
.x4b_c00070{left:211.238045pt;}
.x45_c00070{left:212.663627pt;}
.x6a_c00070{left:215.997333pt;}
.x78_c00070{left:218.588933pt;}
.x50_c00070{left:220.663520pt;}
.x1a_c00070{left:222.136000pt;}
.x96_c00070{left:223.973333pt;}
.x6_c00070{left:224.953333pt;}
.x64_c00070{left:226.773768pt;}
.x3b_c00070{left:228.234376pt;}
.xf_c00070{left:230.276653pt;}
.x23_c00070{left:232.348000pt;}
.x4c_c00070{left:235.476725pt;}
.x13_c00070{left:238.937333pt;}
.x11_c00070{left:241.920000pt;}
.x8d_c00070{left:244.049333pt;}
.x2c_c00070{left:246.373333pt;}
.x97_c00070{left:247.270667pt;}
.x10_c00070{left:249.511320pt;}
.x65_c00070{left:254.350616pt;}
.x6e_c00070{left:256.094267pt;}
.x51_c00070{left:257.595523pt;}
.x1b_c00070{left:259.993333pt;}
.x24_c00070{left:260.916000pt;}
.x3c_c00070{left:262.543904pt;}
.x6b_c00070{left:264.744000pt;}
.x56_c00070{left:267.116000pt;}
.x87_c00070{left:273.010867pt;}
.x79_c00070{left:274.574067pt;}
.x34_c00070{left:276.026093pt;}
.x66_c00070{left:277.675757pt;}
.x7_c00070{left:282.733333pt;}
.x72_c00070{left:284.442000pt;}
.x25_c00070{left:287.800000pt;}
.x8e_c00070{left:288.873333pt;}
.x61_c00070{left:290.193333pt;}
.x3d_c00070{left:291.456483pt;}
.x1c_c00070{left:293.825333pt;}
.x7c_c00070{left:295.950733pt;}
.x80_c00070{left:299.528067pt;}
.x35_c00070{left:301.234059pt;}
.x88_c00070{left:303.066867pt;}
.x42_c00070{left:307.804283pt;}
.x89_c00070{left:308.850867pt;}
.x2d_c00070{left:309.873333pt;}
.x73_c00070{left:312.495333pt;}
.x57_c00070{left:313.584000pt;}
.x6f_c00070{left:316.354600pt;}
.x1d_c00070{left:318.142667pt;}
.x26_c00070{left:323.104000pt;}
.x62_c00070{left:326.930667pt;}
.x84_c00070{left:328.573900pt;}
.x36_c00070{left:330.045832pt;}
.x76_c00070{left:331.096533pt;}
.x70_c00070{left:334.935533pt;}
.x74_c00070{left:337.015333pt;}
.x14_c00070{left:338.368000pt;}
.x67_c00070{left:340.094317pt;}
.x58_c00070{left:349.721333pt;}
.x5e_c00070{left:351.164000pt;}
.x8a_c00070{left:352.331367pt;}
.x2e_c00070{left:354.870667pt;}
.x27_c00070{left:356.301333pt;}
.x8f_c00070{left:358.224000pt;}
.x71_c00070{left:359.490100pt;}
.x59_c00070{left:360.480000pt;}
.x52_c00070{left:361.674701pt;}
.x3e_c00070{left:362.603347pt;}
.x43_c00070{left:365.297187pt;}
.x77_c00070{left:367.007200pt;}
.x37_c00070{left:368.925077pt;}
.x9b_c00070{left:373.711932pt;}
.x5f_c00070{left:374.689333pt;}
.x1e_c00070{left:380.317333pt;}
.x2f_c00070{left:382.393333pt;}
.x46_c00070{left:384.600147pt;}
.x7d_c00070{left:387.967100pt;}
.x5a_c00070{left:390.720000pt;}
.x28_c00070{left:394.402667pt;}
.x6c_c00070{left:396.521333pt;}
.x15_c00070{left:398.630667pt;}
.x44_c00070{left:402.776504pt;}
.x38_c00070{left:405.889752pt;}
.x7e_c00070{left:408.026600pt;}
.x60_c00070{left:409.746667pt;}
.x1f_c00070{left:411.684000pt;}
.x4d_c00070{left:413.568459pt;}
.x53_c00070{left:414.605552pt;}
.x98_c00070{left:416.160000pt;}
.x47_c00070{left:417.095885pt;}
.x29_c00070{left:422.796000pt;}
.x81_c00070{left:427.865400pt;}
.x20_c00070{left:431.849333pt;}
.x30_c00070{left:439.290667pt;}
.x3f_c00070{left:444.818776pt;}
.x99_c00070{left:446.157333pt;}
.x2a_c00070{left:447.926667pt;}
.x9c_c00070{left:459.872621pt;}
.x9a_c00070{left:474.305333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m5b_c00071{transform:matrix(0.003495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003495,0.000000,0.000000,0.250000,0,0);}
.m5e_c00071{transform:matrix(0.006255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00071{transform:matrix(0.007655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007655,0.000000,0.000000,0.250000,0,0);}
.m60_c00071{transform:matrix(0.007685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007685,0.000000,0.000000,0.250000,0,0);}
.m5f_c00071{transform:matrix(0.010195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010195,0.000000,0.000000,0.250000,0,0);}
.md2_c00071{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);}
.mbb_c00071{transform:matrix(0.021120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021120,0.000000,0.000000,0.250000,0,0);}
.m74_c00071{transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);}
.me5_c00071{transform:matrix(0.044175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044175,0.000000,0.000000,0.250000,0,0);}
.m5c_c00071{transform:matrix(0.045875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045875,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.049619,-0.001042,0.005249,0.249945,0,0);-ms-transform:matrix(0.049619,-0.001042,0.005249,0.249945,0,0);-webkit-transform:matrix(0.049619,-0.001042,0.005249,0.249945,0,0);}
.m5d_c00071{transform:matrix(0.064370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064370,0.000000,0.000000,0.250000,0,0);}
.m9a_c00071{transform:matrix(0.080140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080140,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);}
.mf2_c00071{transform:matrix(0.139755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139755,0.000000,0.000000,0.250000,0,0);}
.ma3_c00071{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);}
.m58_c00071{transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.md4_c00071{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);}
.mb4_c00071{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);}
.m52_c00071{transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);}
.m28_c00071{transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);}
.mdd_c00071{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);}
.m14_c00071{transform:matrix(0.153180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153180,0.000000,0.000000,0.250000,0,0);}
.m6c_c00071{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);}
.m16_c00071{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);}
.m33_c00071{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);}
.mf3_c00071{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);}
.mec_c00071{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);}
.m69_c00071{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);}
.m6a_c00071{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);}
.m9c_c00071{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m8c_c00071{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);}
.me_c00071{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);}
.m37_c00071{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);}
.m56_c00071{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);}
.m3e_c00071{transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);}
.m4a_c00071{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);}
.md5_c00071{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);}
.m38_c00071{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);}
.m4e_c00071{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);}
.m35_c00071{transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);}
.m3c_c00071{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.mc5_c00071{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);}
.mb3_c00071{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);}
.m1c_c00071{transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{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);}
.m80_c00071{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);}
.m21_c00071{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);}
.me4_c00071{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);}
.m1d_c00071{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);}
.me1_c00071{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);}
.mae_c00071{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);}
.m6b_c00071{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);}
.me8_c00071{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);}
.ma1_c00071{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);}
.m15_c00071{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);}
.m4d_c00071{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m96_c00071{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);}
.m34_c00071{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);}
.m71_c00071{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);}
.mf0_c00071{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);}
.mb6_c00071{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);}
.mc9_c00071{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);}
.m11_c00071{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);}
.m87_c00071{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);}
.mda_c00071{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);}
.m57_c00071{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);}
.m25_c00071{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);}
.mf1_c00071{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);}
.m6d_c00071{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);}
.mc8_c00071{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);}
.mdf_c00071{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);}
.mc_c00071{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);}
.ma_c00071{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);}
.m30_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);}
.m2b_c00071{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);}
.m51_c00071{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);}
.m13_c00071{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);}
.ma0_c00071{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);}
.m18_c00071{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);}
.m9e_c00071{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);}
.m36_c00071{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);}
.m7c_c00071{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);}
.mca_c00071{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);}
.m81_c00071{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);}
.m2e_c00071{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);}
.m29_c00071{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);}
.mc7_c00071{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);}
.md7_c00071{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);}
.mb9_c00071{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);}
.m2c_c00071{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);}
.me6_c00071{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);}
.m83_c00071{transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{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);}
.m8_c00071{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);}
.m7e_c00071{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);}
.m39_c00071{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);}
.mee_c00071{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);}
.m9_c00071{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);}
.m7d_c00071{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);}
.m97_c00071{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);}
.mc1_c00071{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);}
.m8d_c00071{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);}
.m9f_c00071{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);}
.mc2_c00071{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);}
.m43_c00071{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);}
.m40_c00071{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);}
.mb2_c00071{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);}
.me0_c00071{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);}
.mea_c00071{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);}
.m70_c00071{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);}
.mf_c00071{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);}
.m23_c00071{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);}
.m92_c00071{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);}
.m55_c00071{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);}
.m17_c00071{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);}
.mc3_c00071{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);}
.m24_c00071{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);}
.m47_c00071{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);}
.m7f_c00071{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);}
.m1e_c00071{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);}
.me2_c00071{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);}
.mbc_c00071{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m63_c00071{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);}
.m1_c00071{transform:matrix(0.190883,-0.004009,0.005249,0.249945,0,0);-ms-transform:matrix(0.190883,-0.004009,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190883,-0.004009,0.005249,0.249945,0,0);}
.m72_c00071{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);}
.m3a_c00071{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);}
.mbe_c00071{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);}
.mb7_c00071{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);}
.m20_c00071{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);}
.m98_c00071{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);}
.mf4_c00071{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);}
.m78_c00071{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);}
.m86_c00071{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);}
.me3_c00071{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);}
.md6_c00071{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);}
.mb8_c00071{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);}
.m91_c00071{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);}
.m84_c00071{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);}
.m4f_c00071{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);}
.m90_c00071{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);}
.m8e_c00071{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);}
.m85_c00071{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);}
.m66_c00071{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);}
.m88_c00071{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);}
.mba_c00071{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);}
.m94_c00071{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);}
.m2d_c00071{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);}
.mb_c00071{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);}
.mef_c00071{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);}
.m68_c00071{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);}
.m46_c00071{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);}
.me9_c00071{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);}
.m8f_c00071{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);}
.m6_c00071{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);}
.m67_c00071{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);}
.m3b_c00071{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);}
.m5_c00071{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);}
.m27_c00071{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);}
.m8a_c00071{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);}
.m9d_c00071{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);}
.m79_c00071{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);}
.me7_c00071{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);}
.mbd_c00071{transform:matrix(0.205685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205685,0.000000,0.000000,0.250000,0,0);}
.mcd_c00071{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);}
.m93_c00071{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);}
.m53_c00071{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);}
.mab_c00071{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);}
.m76_c00071{transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);}
.mb5_c00071{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);}
.m7a_c00071{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);}
.md8_c00071{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);}
.mbf_c00071{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);}
.m1a_c00071{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);}
.m8b_c00071{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);}
.mc6_c00071{transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);}
.m31_c00071{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);}
.m2f_c00071{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);}
.m7_c00071{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);}
.mcf_c00071{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);}
.mac_c00071{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);}
.m4c_c00071{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);}
.m99_c00071{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);}
.m19_c00071{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);}
.m64_c00071{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);}
.m6f_c00071{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);}
.maa_c00071{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);}
.md0_c00071{transform:matrix(0.216055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216055,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{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);}
.m5a_c00071{transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);}
.m7b_c00071{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);}
.m73_c00071{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);}
.maf_c00071{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);}
.m95_c00071{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);}
.m54_c00071{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.m42_c00071{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.mcb_c00071{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.mdc_c00071{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m45_c00071{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);}
.m65_c00071{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);}
.md3_c00071{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);}
.m9b_c00071{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);}
.ma2_c00071{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);}
.m82_c00071{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.m59_c00071{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);}
.meb_c00071{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);}
.m2a_c00071{transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);}
.m41_c00071{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);}
.m44_c00071{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);}
.m77_c00071{transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);}
.mb1_c00071{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);}
.m3f_c00071{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);}
.ma7_c00071{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);}
.m49_c00071{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);}
.mc0_c00071{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.mcc_c00071{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);}
.m89_c00071{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);}
.mde_c00071{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m4b_c00071{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);}
.mce_c00071{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);}
.m3d_c00071{transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00071{transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);}
.m62_c00071{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);}
.md_c00071{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m75_c00071{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.ma9_c00071{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);}
.mb0_c00071{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);}
.m61_c00071{transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.md9_c00071{transform:matrix(0.272070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272070,0.000000,0.000000,0.250000,0,0);}
.med_c00071{transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);}
.m48_c00071{transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288420,0.000000,0.000000,0.250000,0,0);}
.ma8_c00071{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);}
.mdb_c00071{transform:matrix(0.292595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292595,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.309512,-0.006500,0.005249,0.249945,0,0);-ms-transform:matrix(0.309512,-0.006500,0.005249,0.249945,0,0);-webkit-transform:matrix(0.309512,-0.006500,0.005249,0.249945,0,0);}
.m50_c00071{transform:matrix(0.313165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313165,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.313356,-0.006580,0.005249,0.249945,0,0);-ms-transform:matrix(0.313356,-0.006580,0.005249,0.249945,0,0);-webkit-transform:matrix(0.313356,-0.006580,0.005249,0.249945,0,0);}
.md1_c00071{transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);}
.mad_c00071{transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344060,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.360410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360410,0.000000,0.000000,0.250000,0,0);}
.m6e_c00071{transform:matrix(0.395305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395305,0.000000,0.000000,0.250000,0,0);}
.ma4_c00071{transform:matrix(0.537550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537550,0.000000,0.000000,0.250000,0,0);}
.ma5_c00071{transform:matrix(0.580555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580555,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;}
.fs0_c00071{font-size:21.000000px;}
.fsb_c00071{font-size:65.100000px;}
.fs8_c00071{font-size:67.200000px;}
.fsd_c00071{font-size:69.300000px;}
.fs6_c00071{font-size:70.350000px;}
.fsf_c00071{font-size:71.400000px;}
.fsc_c00071{font-size:72.450000px;}
.fs5_c00071{font-size:73.500000px;}
.fs3_c00071{font-size:74.550000px;}
.fs2_c00071{font-size:75.600000px;}
.fs4_c00071{font-size:76.650000px;}
.fs10_c00071{font-size:77.700000px;}
.fs7_c00071{font-size:78.750000px;}
.fsa_c00071{font-size:81.900000px;}
.fse_c00071{font-size:99.750000px;}
.fs1_c00071{font-size:107.123613px;}
.fs9_c00071{font-size:109.200000px;}
.y0_c00071{bottom:0.000000px;}
.y24_c00071{bottom:146.992500px;}
.y23_c00071{bottom:170.347500px;}
.y22_c00071{bottom:193.240500px;}
.y21_c00071{bottom:216.340500px;}
.y20_c00071{bottom:239.289000px;}
.y1f_c00071{bottom:262.513500px;}
.y1e_c00071{bottom:285.583500px;}
.y1d_c00071{bottom:308.806500px;}
.y1c_c00071{bottom:331.873500px;}
.y1b_c00071{bottom:354.102000px;}
.y1a_c00071{bottom:377.458500px;}
.y19_c00071{bottom:400.138500px;}
.y18_c00071{bottom:423.483000px;}
.y17_c00071{bottom:446.104500px;}
.y16_c00071{bottom:469.296000px;}
.y15_c00071{bottom:492.049500px;}
.y14_c00071{bottom:515.214000px;}
.y13_c00071{bottom:537.042000px;}
.y11_c00071{bottom:554.929500px;}
.y12_c00071{bottom:560.938500px;}
.y10_c00071{bottom:582.420000px;}
.yf_c00071{bottom:605.263500px;}
.ye_c00071{bottom:627.768000px;}
.yd_c00071{bottom:650.347500px;}
.yc_c00071{bottom:673.921500px;}
.yb_c00071{bottom:695.976000px;}
.ya_c00071{bottom:719.355000px;}
.y9_c00071{bottom:741.736500px;}
.y8_c00071{bottom:764.437500px;}
.y7_c00071{bottom:788.062500px;}
.y6_c00071{bottom:810.556500px;}
.y2_c00071{bottom:917.196000px;}
.y3_c00071{bottom:919.297113px;}
.y4_c00071{bottom:920.540544px;}
.y5_c00071{bottom:922.073082px;}
.y1_c00071{bottom:928.800000px;}
.h2_c00071{height:21.000000px;}
.hd_c00071{height:65.100000px;}
.ha_c00071{height:67.200000px;}
.hf_c00071{height:69.300000px;}
.h8_c00071{height:70.350000px;}
.h11_c00071{height:71.400000px;}
.he_c00071{height:72.450000px;}
.h7_c00071{height:73.500000px;}
.h5_c00071{height:74.550000px;}
.h4_c00071{height:75.600000px;}
.h6_c00071{height:76.650000px;}
.h12_c00071{height:77.700000px;}
.h9_c00071{height:78.750000px;}
.hc_c00071{height:81.900000px;}
.h10_c00071{height:99.750000px;}
.h3_c00071{height:107.123613px;}
.hb_c00071{height:109.200000px;}
.h0_c00071{height:1008.450000px;}
.h1_c00071{height:1008.750000px;}
.w0_c00071{width:711.720000px;}
.w1_c00071{width:711.750000px;}
.x0_c00071{left:0.000000px;}
.x56_c00071{left:194.130000px;}
.x65_c00071{left:196.020000px;}
.x6_c00071{left:197.100000px;}
.x62_c00071{left:203.580000px;}
.x50_c00071{left:204.660000px;}
.x36_c00071{left:206.010000px;}
.x21_c00071{left:207.900000px;}
.xe_c00071{left:209.250000px;}
.x66_c00071{left:228.960000px;}
.x81_c00071{left:230.310000px;}
.x69_c00071{left:231.930000px;}
.x51_c00071{left:233.820000px;}
.x57_c00071{left:234.900000px;}
.x1a_c00071{left:236.520000px;}
.x28_c00071{left:240.030000px;}
.x14_c00071{left:244.620000px;}
.x6e_c00071{left:246.240000px;}
.x4a_c00071{left:247.320000px;}
.x5b_c00071{left:250.290000px;}
.x3d_c00071{left:252.450000px;}
.x22_c00071{left:254.880000px;}
.xf_c00071{left:257.310000px;}
.x37_c00071{left:260.010000px;}
.x2e_c00071{left:262.170000px;}
.x82_c00071{left:263.250000px;}
.x1b_c00071{left:265.410000px;}
.x6f_c00071{left:267.840000px;}
.x76_c00071{left:272.970000px;}
.x40_c00071{left:276.480000px;}
.x7_c00071{left:279.450000px;}
.x73_c00071{left:285.120000px;}
.x2f_c00071{left:287.550000px;}
.x5e_c00071{left:289.980000px;}
.x15_c00071{left:293.220000px;}
.x29_c00071{left:294.570000px;}
.x67_c00071{left:298.890000px;}
.x4b_c00071{left:300.240000px;}
.x1c_c00071{left:301.320000px;}
.x77_c00071{left:303.210000px;}
.x38_c00071{left:305.370000px;}
.x83_c00071{left:306.990000px;}
.x8_c00071{left:308.070000px;}
.x45_c00071{left:310.230000px;}
.x10_c00071{left:313.200000px;}
.x23_c00071{left:315.630000px;}
.x52_c00071{left:318.330000px;}
.x92_c00071{left:319.680000px;}
.x5f_c00071{left:322.380000px;}
.x8e_c00071{left:324.270000px;}
.x30_c00071{left:326.700000px;}
.x41_c00071{left:327.780000px;}
.x4e_c00071{left:329.130000px;}
.x70_c00071{left:334.530000px;}
.x39_c00071{left:335.880000px;}
.x7e_c00071{left:337.770000px;}
.x46_c00071{left:339.930000px;}
.x1d_c00071{left:341.550000px;}
.x2a_c00071{left:342.900000px;}
.x68_c00071{left:347.490000px;}
.x53_c00071{left:349.920000px;}
.x9_c00071{left:352.350000px;}
.x11_c00071{left:356.130000px;}
.x24_c00071{left:359.100000px;}
.x16_c00071{left:360.180000px;}
.x58_c00071{left:362.880000px;}
.x4c_c00071{left:365.580000px;}
.x31_c00071{left:366.660000px;}
.x60_c00071{left:368.820000px;}
.x84_c00071{left:370.980000px;}
.x8f_c00071{left:373.140000px;}
.x7b_c00071{left:376.920000px;}
.x5c_c00071{left:378.000000px;}
.x63_c00071{left:382.050000px;}
.x89_c00071{left:383.940000px;}
.x59_c00071{left:387.990000px;}
.x6a_c00071{left:389.610000px;}
.x7f_c00071{left:390.690000px;}
.x12_c00071{left:393.120000px;}
.x42_c00071{left:396.090000px;}
.x25_c00071{left:397.440000px;}
.x3a_c00071{left:399.060000px;}
.x32_c00071{left:400.680000px;}
.xa_c00071{left:403.110000px;}
.x4d_c00071{left:407.430000px;}
.x2b_c00071{left:414.450000px;}
.x64_c00071{left:416.070000px;}
.x43_c00071{left:419.040000px;}
.x47_c00071{left:420.390000px;}
.x7c_c00071{left:421.740000px;}
.x74_c00071{left:422.820000px;}
.x33_c00071{left:424.440000px;}
.x78_c00071{left:425.520000px;}
.x2_c00071{left:427.716000px;}
.x8a_c00071{left:429.840000px;}
.x17_c00071{left:434.160000px;}
.x93_c00071{left:436.590000px;}
.x4f_c00071{left:443.340000px;}
.x1e_c00071{left:448.470000px;}
.x18_c00071{left:450.630000px;}
.xb_c00071{left:453.870000px;}
.x5d_c00071{left:455.490000px;}
.x6b_c00071{left:457.110000px;}
.x26_c00071{left:458.460000px;}
.x54_c00071{left:459.540000px;}
.x13_c00071{left:460.620000px;}
.x2c_c00071{left:462.510000px;}
.x8b_c00071{left:465.750000px;}
.x61_c00071{left:471.150000px;}
.x3e_c00071{left:473.310000px;}
.x94_c00071{left:474.660000px;}
.x34_c00071{left:477.360000px;}
.x7d_c00071{left:478.710000px;}
.xc_c00071{left:480.870000px;}
.x19_c00071{left:482.760000px;}
.x80_c00071{left:486.000000px;}
.x1_c00071{left:493.830000px;}
.x55_c00071{left:495.180000px;}
.x90_c00071{left:496.800000px;}
.x27_c00071{left:497.880000px;}
.x88_c00071{left:498.960000px;}
.x3b_c00071{left:501.390000px;}
.x8c_c00071{left:502.470000px;}
.x35_c00071{left:505.710000px;}
.x44_c00071{left:509.220000px;}
.xd_c00071{left:510.840000px;}
.x48_c00071{left:515.970000px;}
.x2d_c00071{left:521.910000px;}
.x1f_c00071{left:523.530000px;}
.x79_c00071{left:525.420000px;}
.x3_c00071{left:527.769000px;}
.x3c_c00071{left:534.060000px;}
.x6c_c00071{left:535.410000px;}
.x85_c00071{left:540.000000px;}
.x49_c00071{left:544.050000px;}
.x71_c00071{left:547.290000px;}
.x20_c00071{left:552.150000px;}
.x3f_c00071{left:560.520000px;}
.x75_c00071{left:562.140000px;}
.x91_c00071{left:569.160000px;}
.x5a_c00071{left:571.320000px;}
.x4_c00071{left:586.980000px;}
.x8d_c00071{left:589.410000px;}
.x86_c00071{left:594.270000px;}
.x7a_c00071{left:602.370000px;}
.x87_c00071{left:607.230000px;}
.x6d_c00071{left:610.200000px;}
.x72_c00071{left:619.920000px;}
.x5_c00071{left:659.958000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs0_c00071{font-size:18.666667pt;}
.fsb_c00071{font-size:57.866667pt;}
.fs8_c00071{font-size:59.733333pt;}
.fsd_c00071{font-size:61.600000pt;}
.fs6_c00071{font-size:62.533333pt;}
.fsf_c00071{font-size:63.466667pt;}
.fsc_c00071{font-size:64.400000pt;}
.fs5_c00071{font-size:65.333333pt;}
.fs3_c00071{font-size:66.266667pt;}
.fs2_c00071{font-size:67.200000pt;}
.fs4_c00071{font-size:68.133333pt;}
.fs10_c00071{font-size:69.066667pt;}
.fs7_c00071{font-size:70.000000pt;}
.fsa_c00071{font-size:72.800000pt;}
.fse_c00071{font-size:88.666667pt;}
.fs1_c00071{font-size:95.220989pt;}
.fs9_c00071{font-size:97.066667pt;}
.y0_c00071{bottom:0.000000pt;}
.y24_c00071{bottom:130.660000pt;}
.y23_c00071{bottom:151.420000pt;}
.y22_c00071{bottom:171.769333pt;}
.y21_c00071{bottom:192.302667pt;}
.y20_c00071{bottom:212.701333pt;}
.y1f_c00071{bottom:233.345333pt;}
.y1e_c00071{bottom:253.852000pt;}
.y1d_c00071{bottom:274.494667pt;}
.y1c_c00071{bottom:294.998667pt;}
.y1b_c00071{bottom:314.757333pt;}
.y1a_c00071{bottom:335.518667pt;}
.y19_c00071{bottom:355.678667pt;}
.y18_c00071{bottom:376.429333pt;}
.y17_c00071{bottom:396.537333pt;}
.y16_c00071{bottom:417.152000pt;}
.y15_c00071{bottom:437.377333pt;}
.y14_c00071{bottom:457.968000pt;}
.y13_c00071{bottom:477.370667pt;}
.y11_c00071{bottom:493.270667pt;}
.y12_c00071{bottom:498.612000pt;}
.y10_c00071{bottom:517.706667pt;}
.yf_c00071{bottom:538.012000pt;}
.ye_c00071{bottom:558.016000pt;}
.yd_c00071{bottom:578.086667pt;}
.yc_c00071{bottom:599.041333pt;}
.yb_c00071{bottom:618.645333pt;}
.ya_c00071{bottom:639.426667pt;}
.y9_c00071{bottom:659.321333pt;}
.y8_c00071{bottom:679.500000pt;}
.y7_c00071{bottom:700.500000pt;}
.y6_c00071{bottom:720.494667pt;}
.y2_c00071{bottom:815.285333pt;}
.y3_c00071{bottom:817.152989pt;}
.y4_c00071{bottom:818.258261pt;}
.y5_c00071{bottom:819.620517pt;}
.y1_c00071{bottom:825.600000pt;}
.h2_c00071{height:18.666667pt;}
.hd_c00071{height:57.866667pt;}
.ha_c00071{height:59.733333pt;}
.hf_c00071{height:61.600000pt;}
.h8_c00071{height:62.533333pt;}
.h11_c00071{height:63.466667pt;}
.he_c00071{height:64.400000pt;}
.h7_c00071{height:65.333333pt;}
.h5_c00071{height:66.266667pt;}
.h4_c00071{height:67.200000pt;}
.h6_c00071{height:68.133333pt;}
.h12_c00071{height:69.066667pt;}
.h9_c00071{height:70.000000pt;}
.hc_c00071{height:72.800000pt;}
.h10_c00071{height:88.666667pt;}
.h3_c00071{height:95.220989pt;}
.hb_c00071{height:97.066667pt;}
.h0_c00071{height:896.400000pt;}
.h1_c00071{height:896.666667pt;}
.w0_c00071{width:632.640000pt;}
.w1_c00071{width:632.666667pt;}
.x0_c00071{left:0.000000pt;}
.x56_c00071{left:172.560000pt;}
.x65_c00071{left:174.240000pt;}
.x6_c00071{left:175.200000pt;}
.x62_c00071{left:180.960000pt;}
.x50_c00071{left:181.920000pt;}
.x36_c00071{left:183.120000pt;}
.x21_c00071{left:184.800000pt;}
.xe_c00071{left:186.000000pt;}
.x66_c00071{left:203.520000pt;}
.x81_c00071{left:204.720000pt;}
.x69_c00071{left:206.160000pt;}
.x51_c00071{left:207.840000pt;}
.x57_c00071{left:208.800000pt;}
.x1a_c00071{left:210.240000pt;}
.x28_c00071{left:213.360000pt;}
.x14_c00071{left:217.440000pt;}
.x6e_c00071{left:218.880000pt;}
.x4a_c00071{left:219.840000pt;}
.x5b_c00071{left:222.480000pt;}
.x3d_c00071{left:224.400000pt;}
.x22_c00071{left:226.560000pt;}
.xf_c00071{left:228.720000pt;}
.x37_c00071{left:231.120000pt;}
.x2e_c00071{left:233.040000pt;}
.x82_c00071{left:234.000000pt;}
.x1b_c00071{left:235.920000pt;}
.x6f_c00071{left:238.080000pt;}
.x76_c00071{left:242.640000pt;}
.x40_c00071{left:245.760000pt;}
.x7_c00071{left:248.400000pt;}
.x73_c00071{left:253.440000pt;}
.x2f_c00071{left:255.600000pt;}
.x5e_c00071{left:257.760000pt;}
.x15_c00071{left:260.640000pt;}
.x29_c00071{left:261.840000pt;}
.x67_c00071{left:265.680000pt;}
.x4b_c00071{left:266.880000pt;}
.x1c_c00071{left:267.840000pt;}
.x77_c00071{left:269.520000pt;}
.x38_c00071{left:271.440000pt;}
.x83_c00071{left:272.880000pt;}
.x8_c00071{left:273.840000pt;}
.x45_c00071{left:275.760000pt;}
.x10_c00071{left:278.400000pt;}
.x23_c00071{left:280.560000pt;}
.x52_c00071{left:282.960000pt;}
.x92_c00071{left:284.160000pt;}
.x5f_c00071{left:286.560000pt;}
.x8e_c00071{left:288.240000pt;}
.x30_c00071{left:290.400000pt;}
.x41_c00071{left:291.360000pt;}
.x4e_c00071{left:292.560000pt;}
.x70_c00071{left:297.360000pt;}
.x39_c00071{left:298.560000pt;}
.x7e_c00071{left:300.240000pt;}
.x46_c00071{left:302.160000pt;}
.x1d_c00071{left:303.600000pt;}
.x2a_c00071{left:304.800000pt;}
.x68_c00071{left:308.880000pt;}
.x53_c00071{left:311.040000pt;}
.x9_c00071{left:313.200000pt;}
.x11_c00071{left:316.560000pt;}
.x24_c00071{left:319.200000pt;}
.x16_c00071{left:320.160000pt;}
.x58_c00071{left:322.560000pt;}
.x4c_c00071{left:324.960000pt;}
.x31_c00071{left:325.920000pt;}
.x60_c00071{left:327.840000pt;}
.x84_c00071{left:329.760000pt;}
.x8f_c00071{left:331.680000pt;}
.x7b_c00071{left:335.040000pt;}
.x5c_c00071{left:336.000000pt;}
.x63_c00071{left:339.600000pt;}
.x89_c00071{left:341.280000pt;}
.x59_c00071{left:344.880000pt;}
.x6a_c00071{left:346.320000pt;}
.x7f_c00071{left:347.280000pt;}
.x12_c00071{left:349.440000pt;}
.x42_c00071{left:352.080000pt;}
.x25_c00071{left:353.280000pt;}
.x3a_c00071{left:354.720000pt;}
.x32_c00071{left:356.160000pt;}
.xa_c00071{left:358.320000pt;}
.x4d_c00071{left:362.160000pt;}
.x2b_c00071{left:368.400000pt;}
.x64_c00071{left:369.840000pt;}
.x43_c00071{left:372.480000pt;}
.x47_c00071{left:373.680000pt;}
.x7c_c00071{left:374.880000pt;}
.x74_c00071{left:375.840000pt;}
.x33_c00071{left:377.280000pt;}
.x78_c00071{left:378.240000pt;}
.x2_c00071{left:380.192000pt;}
.x8a_c00071{left:382.080000pt;}
.x17_c00071{left:385.920000pt;}
.x93_c00071{left:388.080000pt;}
.x4f_c00071{left:394.080000pt;}
.x1e_c00071{left:398.640000pt;}
.x18_c00071{left:400.560000pt;}
.xb_c00071{left:403.440000pt;}
.x5d_c00071{left:404.880000pt;}
.x6b_c00071{left:406.320000pt;}
.x26_c00071{left:407.520000pt;}
.x54_c00071{left:408.480000pt;}
.x13_c00071{left:409.440000pt;}
.x2c_c00071{left:411.120000pt;}
.x8b_c00071{left:414.000000pt;}
.x61_c00071{left:418.800000pt;}
.x3e_c00071{left:420.720000pt;}
.x94_c00071{left:421.920000pt;}
.x34_c00071{left:424.320000pt;}
.x7d_c00071{left:425.520000pt;}
.xc_c00071{left:427.440000pt;}
.x19_c00071{left:429.120000pt;}
.x80_c00071{left:432.000000pt;}
.x1_c00071{left:438.960000pt;}
.x55_c00071{left:440.160000pt;}
.x90_c00071{left:441.600000pt;}
.x27_c00071{left:442.560000pt;}
.x88_c00071{left:443.520000pt;}
.x3b_c00071{left:445.680000pt;}
.x8c_c00071{left:446.640000pt;}
.x35_c00071{left:449.520000pt;}
.x44_c00071{left:452.640000pt;}
.xd_c00071{left:454.080000pt;}
.x48_c00071{left:458.640000pt;}
.x2d_c00071{left:463.920000pt;}
.x1f_c00071{left:465.360000pt;}
.x79_c00071{left:467.040000pt;}
.x3_c00071{left:469.128000pt;}
.x3c_c00071{left:474.720000pt;}
.x6c_c00071{left:475.920000pt;}
.x85_c00071{left:480.000000pt;}
.x49_c00071{left:483.600000pt;}
.x71_c00071{left:486.480000pt;}
.x20_c00071{left:490.800000pt;}
.x3f_c00071{left:498.240000pt;}
.x75_c00071{left:499.680000pt;}
.x91_c00071{left:505.920000pt;}
.x5a_c00071{left:507.840000pt;}
.x4_c00071{left:521.760000pt;}
.x8d_c00071{left:523.920000pt;}
.x86_c00071{left:528.240000pt;}
.x7a_c00071{left:535.440000pt;}
.x87_c00071{left:539.760000pt;}
.x6d_c00071{left:542.400000pt;}
.x72_c00071{left:551.040000pt;}
.x5_c00071{left:586.629333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m61_c00072{transform:matrix(0.008100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008100,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{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);}
.md3_c00072{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);}
.m57_c00072{transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);}
.mb7_c00072{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);}
.mbb_c00072{transform:matrix(0.043155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043155,0.000000,0.000000,0.250000,0,0);}
.m90_c00072{transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);}
.m4e_c00072{transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);}
.mad_c00072{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);}
.md0_c00072{transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131895,0.000000,0.000000,0.250000,0,0);}
.m6c_c00072{transform:matrix(0.135810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135810,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{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);}
.m54_c00072{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00072{transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);}
.mc0_c00072{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);}
.ma_c00072{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);}
.m4a_c00072{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);}
.m50_c00072{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);}
.m69_c00072{transform:matrix(0.151770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151770,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);}
.m96_c00072{transform:matrix(0.156120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156120,0.000000,0.000000,0.250000,0,0);}
.m6b_c00072{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);}
.m6f_c00072{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);}
.m81_c00072{transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{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);}
.m95_c00072{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);}
.m59_c00072{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);}
.m74_c00072{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{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);}
.m7a_c00072{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);}
.m8d_c00072{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);}
.m38_c00072{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);}
.m94_c00072{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);}
.m6_c00072{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);}
.m9_c00072{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);}
.m1a_c00072{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);}
.m70_c00072{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);}
.mc6_c00072{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);}
.mb3_c00072{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);}
.m8e_c00072{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);}
.ma6_c00072{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);}
.m6a_c00072{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);}
.mc1_c00072{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);}
.m52_c00072{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);}
.m34_c00072{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);}
.m5d_c00072{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);}
.m86_c00072{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);}
.m30_c00072{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);}
.m97_c00072{transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{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);}
.m73_c00072{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);}
.m72_c00072{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);}
.m8b_c00072{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);}
.m8c_c00072{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);}
.m85_c00072{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);}
.m8_c00072{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);}
.m7c_c00072{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);}
.md_c00072{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);}
.m63_c00072{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);}
.mcf_c00072{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);}
.m5a_c00072{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);}
.m6e_c00072{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);}
.mcb_c00072{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);}
.m31_c00072{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);}
.m67_c00072{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);}
.m83_c00072{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);}
.m36_c00072{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m55_c00072{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);}
.m75_c00072{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);}
.m40_c00072{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);}
.m1b_c00072{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);}
.m44_c00072{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);}
.m32_c00072{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);}
.m37_c00072{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);}
.mb_c00072{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);}
.me_c00072{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);}
.m91_c00072{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);}
.m7f_c00072{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.m53_c00072{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);}
.m3f_c00072{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);}
.m15_c00072{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);}
.mc_c00072{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);}
.m28_c00072{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);}
.m5f_c00072{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);}
.md1_c00072{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);}
.m2d_c00072{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);}
.m2a_c00072{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);}
.m68_c00072{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.m51_c00072{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);}
.mcd_c00072{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);}
.m87_c00072{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);}
.m79_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);}
.ma7_c00072{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{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);}
.mbf_c00072{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);}
.m2b_c00072{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);}
.ma2_c00072{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);}
.m2f_c00072{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);}
.ma4_c00072{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);}
.m27_c00072{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);}
.m13_c00072{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);}
.m1f_c00072{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);}
.m71_c00072{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);}
.ma0_c00072{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);}
.m9f_c00072{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);}
.m80_c00072{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);}
.m6d_c00072{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);}
.m5e_c00072{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);}
.m3e_c00072{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);}
.m93_c00072{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);}
.m25_c00072{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);}
.m9c_c00072{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);}
.m3c_c00072{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);}
.maa_c00072{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);}
.m4f_c00072{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);}
.m39_c00072{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.mc2_c00072{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);}
.m5_c00072{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);}
.m24_c00072{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);}
.m41_c00072{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);}
.m66_c00072{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);}
.m14_c00072{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);}
.m9a_c00072{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);}
.m84_c00072{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);}
.mc4_c00072{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);}
.mb1_c00072{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);}
.m7d_c00072{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);}
.m1d_c00072{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);}
.ma5_c00072{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);}
.m49_c00072{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);}
.mc8_c00072{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);}
.m18_c00072{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);}
.m11_c00072{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);}
.mbe_c00072{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);}
.m60_c00072{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);}
.m8a_c00072{transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);}
.m92_c00072{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);}
.m64_c00072{transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);}
.m62_c00072{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);}
.m23_c00072{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);}
.mca_c00072{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);}
.m45_c00072{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);}
.ma9_c00072{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);}
.mc3_c00072{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);}
.m5c_c00072{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);}
.mbd_c00072{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{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);}
.m89_c00072{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);}
.m9e_c00072{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);}
.m5b_c00072{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);}
.m3d_c00072{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);}
.m3a_c00072{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);}
.m3_c00072{transform:matrix(0.232468,0.002790,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232468,0.002790,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232468,0.002790,-0.003000,0.249982,0,0);}
.mba_c00072{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.md2_c00072{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{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);}
.m42_c00072{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);}
.m33_c00072{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);}
.mac_c00072{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);}
.m9d_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);}
.mc9_c00072{transform:matrix(0.244510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244510,0.000000,0.000000,0.250000,0,0);}
.mc7_c00072{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);}
.mb6_c00072{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00072{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{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);}
.m9b_c00072{transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.mc5_c00072{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);}
.m17_c00072{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);}
.mae_c00072{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);}
.mcc_c00072{transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);}
.m7b_c00072{transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);}
.mb4_c00072{transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);}
.m88_c00072{transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);}
.m58_c00072{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);}
.m65_c00072{transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);}
.m8f_c00072{transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);}
.m48_c00072{transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290055,0.000000,0.000000,0.250000,0,0);}
.maf_c00072{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.292114,0.003505,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292114,0.003505,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292114,0.003505,-0.003000,0.249982,0,0);}
.m29_c00072{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);}
.m7e_c00072{transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);}
.m82_c00072{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);}
.mbc_c00072{transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);}
.m78_c00072{transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);}
.m77_c00072{transform:matrix(0.306815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306815,0.000000,0.000000,0.250000,0,0);}
.m43_c00072{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);}
.m26_c00072{transform:matrix(0.333455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00072{transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335755,0.000000,0.000000,0.250000,0,0);}
.m76_c00072{transform:matrix(0.338800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338800,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{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);}
.m4b_c00072{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);}
.m3b_c00072{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);}
.ma8_c00072{transform:matrix(0.371880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371880,0.000000,0.000000,0.250000,0,0);}
.m56_c00072{transform:matrix(0.373440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373440,0.000000,0.000000,0.250000,0,0);}
.m99_c00072{transform:matrix(0.378140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378140,0.000000,0.000000,0.250000,0,0);}
.mb9_c00072{transform:matrix(0.390475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390475,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.404665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404665,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);}
.mb0_c00072{transform:matrix(0.427620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427620,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.438393,0.005261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.438393,0.005261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.438393,0.005261,-0.003000,0.249982,0,0);}
.m4c_c00072{transform:matrix(0.443005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443005,0.000000,0.000000,0.250000,0,0);}
.m98_c00072{transform:matrix(0.451105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451105,0.000000,0.000000,0.250000,0,0);}
.mb2_c00072{transform:matrix(0.454110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454110,0.000000,0.000000,0.250000,0,0);}
.mab_c00072{transform:matrix(0.476455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476455,0.000000,0.000000,0.250000,0,0);}
.m46_c00072{transform:matrix(0.486790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486790,0.000000,0.000000,0.250000,0,0);}
.m4d_c00072{transform:matrix(0.509350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509350,0.000000,0.000000,0.250000,0,0);}
.m47_c00072{transform:matrix(0.516005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516005,0.000000,0.000000,0.250000,0,0);}
.mce_c00072{transform:matrix(0.525560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525560,0.000000,0.000000,0.250000,0,0);}
.mb5_c00072{transform:matrix(0.535960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535960,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:56.700000px;}
.fs6_c00072{font-size:63.000000px;}
.fs5_c00072{font-size:64.050000px;}
.fs3_c00072{font-size:67.200000px;}
.fs2_c00072{font-size:68.250000px;}
.fs1_c00072{font-size:69.300000px;}
.fs4_c00072{font-size:70.350000px;}
.fsa_c00072{font-size:71.400000px;}
.fs9_c00072{font-size:72.450000px;}
.fs7_c00072{font-size:73.500000px;}
.fs8_c00072{font-size:74.550000px;}
.fsb_c00072{font-size:75.600000px;}
.fsc_c00072{font-size:76.650000px;}
.fs0_c00072{font-size:96.606955px;}
.y0_c00072{bottom:0.000000px;}
.yc3_c00072{bottom:141.772500px;}
.yc2_c00072{bottom:142.704000px;}
.yc1_c00072{bottom:143.160000px;}
.yc0_c00072{bottom:143.832000px;}
.ybf_c00072{bottom:144.396000px;}
.ybe_c00072{bottom:145.383000px;}
.ybd_c00072{bottom:146.209500px;}
.ybc_c00072{bottom:147.334500px;}
.ybb_c00072{bottom:148.225500px;}
.yba_c00072{bottom:149.286000px;}
.yb9_c00072{bottom:150.292500px;}
.yb8_c00072{bottom:150.675000px;}
.yb7_c00072{bottom:165.250500px;}
.yb6_c00072{bottom:166.053000px;}
.yb5_c00072{bottom:167.032500px;}
.yb4_c00072{bottom:168.735000px;}
.yb3_c00072{bottom:170.067000px;}
.yb2_c00072{bottom:170.860500px;}
.yb1_c00072{bottom:171.805500px;}
.yb0_c00072{bottom:173.029500px;}
.yaf_c00072{bottom:173.769000px;}
.yae_c00072{bottom:175.507500px;}
.yad_c00072{bottom:188.638500px;}
.yac_c00072{bottom:193.173000px;}
.yab_c00072{bottom:196.573500px;}
.yaa_c00072{bottom:209.842500px;}
.ya8_c00072{bottom:210.286500px;}
.ya9_c00072{bottom:210.297000px;}
.ya7_c00072{bottom:211.069500px;}
.ya6_c00072{bottom:211.711500px;}
.ya5_c00072{bottom:213.388500px;}
.ya4_c00072{bottom:214.789500px;}
.ya3_c00072{bottom:215.686500px;}
.ya2_c00072{bottom:216.750000px;}
.ya1_c00072{bottom:218.460000px;}
.ya0_c00072{bottom:218.977500px;}
.y9f_c00072{bottom:237.180000px;}
.y9e_c00072{bottom:255.568500px;}
.y9d_c00072{bottom:257.620500px;}
.y9c_c00072{bottom:258.393000px;}
.y9b_c00072{bottom:259.126500px;}
.y9a_c00072{bottom:259.623000px;}
.y99_c00072{bottom:260.371500px;}
.y98_c00072{bottom:261.640500px;}
.y97_c00072{bottom:262.330500px;}
.y96_c00072{bottom:263.554500px;}
.y95_c00072{bottom:264.355500px;}
.y94_c00072{bottom:281.958000px;}
.y93_c00072{bottom:283.267500px;}
.y92_c00072{bottom:283.968000px;}
.y91_c00072{bottom:285.282000px;}
.y90_c00072{bottom:286.252500px;}
.y8f_c00072{bottom:287.862000px;}
.y8e_c00072{bottom:304.495500px;}
.y8d_c00072{bottom:305.871000px;}
.y8c_c00072{bottom:306.546000px;}
.y8b_c00072{bottom:308.095500px;}
.y8a_c00072{bottom:325.905000px;}
.y89_c00072{bottom:326.469000px;}
.y88_c00072{bottom:327.858000px;}
.y87_c00072{bottom:328.701000px;}
.y86_c00072{bottom:330.367500px;}
.y85_c00072{bottom:330.414000px;}
.y84_c00072{bottom:331.213500px;}
.y83_c00072{bottom:331.480500px;}
.y82_c00072{bottom:332.380500px;}
.y81_c00072{bottom:350.302500px;}
.y80_c00072{bottom:351.096000px;}
.y7f_c00072{bottom:351.960000px;}
.y7e_c00072{bottom:353.187000px;}
.y7d_c00072{bottom:354.267000px;}
.y7c_c00072{bottom:355.060500px;}
.y7b_c00072{bottom:371.065500px;}
.y7a_c00072{bottom:371.574000px;}
.y79_c00072{bottom:372.526500px;}
.y78_c00072{bottom:373.405500px;}
.y77_c00072{bottom:374.524500px;}
.y76_c00072{bottom:375.228000px;}
.y75_c00072{bottom:375.670500px;}
.y74_c00072{bottom:376.408500px;}
.y73_c00072{bottom:376.929000px;}
.y72_c00072{bottom:393.961500px;}
.y71_c00072{bottom:394.470000px;}
.y70_c00072{bottom:395.358000px;}
.y6f_c00072{bottom:395.895000px;}
.y6e_c00072{bottom:396.438000px;}
.y6d_c00072{bottom:398.059500px;}
.y6c_c00072{bottom:399.205500px;}
.y6b_c00072{bottom:399.607500px;}
.y6a_c00072{bottom:418.380000px;}
.y69_c00072{bottom:440.160000px;}
.y68_c00072{bottom:440.844000px;}
.y67_c00072{bottom:441.177000px;}
.y66_c00072{bottom:441.900000px;}
.y65_c00072{bottom:442.374000px;}
.y64_c00072{bottom:442.699500px;}
.y63_c00072{bottom:443.173500px;}
.y62_c00072{bottom:443.611500px;}
.y61_c00072{bottom:463.143000px;}
.y60_c00072{bottom:463.624500px;}
.y5f_c00072{bottom:464.133000px;}
.y5e_c00072{bottom:464.824500px;}
.y5d_c00072{bottom:465.327000px;}
.y5c_c00072{bottom:466.563000px;}
.y5b_c00072{bottom:485.784000px;}
.y5a_c00072{bottom:486.702000px;}
.y59_c00072{bottom:486.966000px;}
.y58_c00072{bottom:487.632000px;}
.y57_c00072{bottom:488.833500px;}
.y56_c00072{bottom:489.241500px;}
.y55_c00072{bottom:505.951500px;}
.y54_c00072{bottom:507.034500px;}
.y53_c00072{bottom:507.682500px;}
.y52_c00072{bottom:508.101000px;}
.y51_c00072{bottom:508.732500px;}
.y50_c00072{bottom:509.212500px;}
.y4f_c00072{bottom:509.986500px;}
.y4e_c00072{bottom:510.652500px;}
.y4d_c00072{bottom:511.654500px;}
.y4c_c00072{bottom:512.206500px;}
.y4b_c00072{bottom:532.057500px;}
.yc4_c00072{bottom:553.485000px;}
.y4a_c00072{bottom:556.144500px;}
.y49_c00072{bottom:597.231000px;}
.y48_c00072{bottom:601.479000px;}
.y47_c00072{bottom:601.669500px;}
.y46_c00072{bottom:602.100000px;}
.y45_c00072{bottom:619.341000px;}
.y44_c00072{bottom:620.157000px;}
.y43_c00072{bottom:621.189000px;}
.y42_c00072{bottom:621.522000px;}
.y41_c00072{bottom:622.003500px;}
.y40_c00072{bottom:622.593000px;}
.y3f_c00072{bottom:623.161500px;}
.y3e_c00072{bottom:642.111000px;}
.y3d_c00072{bottom:643.251000px;}
.y3c_c00072{bottom:643.629000px;}
.y3b_c00072{bottom:644.121000px;}
.y3a_c00072{bottom:644.763000px;}
.y39_c00072{bottom:645.279000px;}
.y38_c00072{bottom:645.772500px;}
.y37_c00072{bottom:646.110000px;}
.y36_c00072{bottom:664.776000px;}
.y35_c00072{bottom:665.697000px;}
.y34_c00072{bottom:666.226500px;}
.y33_c00072{bottom:666.682500px;}
.y32_c00072{bottom:667.029000px;}
.y31_c00072{bottom:667.633500px;}
.y30_c00072{bottom:668.080500px;}
.y2f_c00072{bottom:668.725500px;}
.y2e_c00072{bottom:669.058500px;}
.y2d_c00072{bottom:688.020000px;}
.y2c_c00072{bottom:688.408500px;}
.y2b_c00072{bottom:688.753500px;}
.y2a_c00072{bottom:689.137500px;}
.y29_c00072{bottom:689.430000px;}
.y28_c00072{bottom:690.121500px;}
.y27_c00072{bottom:690.486000px;}
.y26_c00072{bottom:690.970500px;}
.y25_c00072{bottom:691.470000px;}
.y24_c00072{bottom:710.280000px;}
.y23_c00072{bottom:710.419500px;}
.y22_c00072{bottom:711.112500px;}
.y21_c00072{bottom:711.547500px;}
.y20_c00072{bottom:711.793500px;}
.y1f_c00072{bottom:712.413000px;}
.y1e_c00072{bottom:712.723500px;}
.y1d_c00072{bottom:713.071500px;}
.y1c_c00072{bottom:713.307000px;}
.y1b_c00072{bottom:713.611500px;}
.y1a_c00072{bottom:732.987000px;}
.y19_c00072{bottom:736.297500px;}
.y18_c00072{bottom:755.691000px;}
.y17_c00072{bottom:755.893500px;}
.y16_c00072{bottom:756.699000px;}
.y15_c00072{bottom:756.931500px;}
.y14_c00072{bottom:757.344000px;}
.y13_c00072{bottom:757.567500px;}
.y12_c00072{bottom:758.007000px;}
.y11_c00072{bottom:758.428500px;}
.y10_c00072{bottom:758.701500px;}
.yf_c00072{bottom:777.844500px;}
.ye_c00072{bottom:778.360500px;}
.yd_c00072{bottom:778.870500px;}
.yc_c00072{bottom:779.446500px;}
.yb_c00072{bottom:779.721000px;}
.ya_c00072{bottom:779.872500px;}
.y9_c00072{bottom:780.456000px;}
.y8_c00072{bottom:780.679500px;}
.y7_c00072{bottom:781.219500px;}
.y6_c00072{bottom:781.651500px;}
.y5_c00072{bottom:803.583000px;}
.y4_c00072{bottom:851.954304px;}
.y3_c00072{bottom:853.004226px;}
.y2_c00072{bottom:854.224122px;}
.y1_c00072{bottom:854.553000px;}
.hf_c00072{height:56.700000px;}
.h8_c00072{height:63.000000px;}
.h7_c00072{height:64.050000px;}
.h5_c00072{height:67.200000px;}
.h4_c00072{height:68.250000px;}
.h3_c00072{height:69.300000px;}
.h6_c00072{height:70.350000px;}
.hc_c00072{height:71.400000px;}
.hb_c00072{height:72.450000px;}
.h9_c00072{height:73.500000px;}
.ha_c00072{height:74.550000px;}
.hd_c00072{height:75.600000px;}
.he_c00072{height:76.650000px;}
.h2_c00072{height:96.606955px;}
.h1_c00072{height:1005.000000px;}
.h0_c00072{height:1005.150000px;}
.w0_c00072{width:705.450000px;}
.w1_c00072{width:705.750000px;}
.x0_c00072{left:0.000000px;}
.x82_c00072{left:34.894500px;}
.x7d_c00072{left:44.407500px;}
.x83_c00072{left:55.039500px;}
.x75_c00072{left:89.830500px;}
.x43_c00072{left:96.898500px;}
.x7b_c00072{left:106.164000px;}
.x84_c00072{left:107.986500px;}
.x67_c00072{left:111.796500px;}
.x76_c00072{left:113.383500px;}
.x7e_c00072{left:116.823000px;}
.x6e_c00072{left:118.629000px;}
.x62_c00072{left:121.263000px;}
.x4d_c00072{left:122.958000px;}
.x53_c00072{left:124.563000px;}
.x44_c00072{left:125.640000px;}
.x38_c00072{left:127.005000px;}
.x17_c00072{left:128.659500px;}
.x5_c00072{left:130.140000px;}
.x45_c00072{left:138.334500px;}
.x3e_c00072{left:144.003000px;}
.x7f_c00072{left:147.657000px;}
.x47_c00072{left:149.310000px;}
.x6_c00072{left:151.740000px;}
.x30_c00072{left:153.459000px;}
.x68_c00072{left:154.666500px;}
.x18_c00072{left:155.929500px;}
.x4e_c00072{left:157.459500px;}
.x63_c00072{left:160.915500px;}
.x21_c00072{left:161.917500px;}
.x85_c00072{left:163.825500px;}
.x69_c00072{left:167.370000px;}
.xe_c00072{left:173.473500px;}
.x1_c00072{left:177.192000px;}
.x7_c00072{left:184.140000px;}
.x22_c00072{left:188.055000px;}
.x39_c00072{left:190.989000px;}
.x5f_c00072{left:192.004500px;}
.x59_c00072{left:193.738500px;}
.x19_c00072{left:198.031500px;}
.x31_c00072{left:203.088000px;}
.x2_c00072{left:204.598500px;}
.x6a_c00072{left:207.718500px;}
.x86_c00072{left:210.688500px;}
.x48_c00072{left:214.650000px;}
.x60_c00072{left:216.591000px;}
.x29_c00072{left:218.053500px;}
.x4f_c00072{left:220.096500px;}
.xf_c00072{left:227.473500px;}
.x8_c00072{left:228.690000px;}
.x3a_c00072{left:230.728500px;}
.x3f_c00072{left:233.094000px;}
.x6c_c00072{left:234.691500px;}
.x32_c00072{left:237.429000px;}
.x54_c00072{left:239.560500px;}
.x1a_c00072{left:242.047500px;}
.x10_c00072{left:249.876000px;}
.x2a_c00072{left:251.212500px;}
.x5a_c00072{left:255.246000px;}
.x57_c00072{left:257.142000px;}
.x23_c00072{left:261.226500px;}
.x1b_c00072{left:264.450000px;}
.x7c_c00072{left:268.120500px;}
.x40_c00072{left:270.091500px;}
.x6d_c00072{left:272.193000px;}
.x73_c00072{left:273.243000px;}
.x4b_c00072{left:274.320000px;}
.x64_c00072{left:276.241500px;}
.x1f_c00072{left:281.011500px;}
.x9_c00072{left:282.690000px;}
.x33_c00072{left:283.921500px;}
.x55_c00072{left:287.089500px;}
.x5d_c00072{left:289.191000px;}
.x6f_c00072{left:292.755000px;}
.x49_c00072{left:294.570000px;}
.x41_c00072{left:295.747500px;}
.x3_c00072{left:306.256500px;}
.x11_c00072{left:308.187000px;}
.x34_c00072{left:310.591500px;}
.xa_c00072{left:312.660000px;}
.x2b_c00072{left:314.058000px;}
.x4a_c00072{left:315.900000px;}
.x3b_c00072{left:317.937000px;}
.x65_c00072{left:319.419000px;}
.x12_c00072{left:323.343000px;}
.x70_c00072{left:325.327500px;}
.x6b_c00072{left:327.229500px;}
.x1c_c00072{left:328.984500px;}
.x24_c00072{left:330.063000px;}
.x5b_c00072{left:336.511500px;}
.xb_c00072{left:338.040000px;}
.x2c_c00072{left:340.636500px;}
.x77_c00072{left:343.932000px;}
.x35_c00072{left:345.699000px;}
.x3c_c00072{left:347.008500px;}
.x58_c00072{left:349.477500px;}
.x13_c00072{left:350.856000px;}
.x25_c00072{left:357.355500px;}
.x66_c00072{left:359.115000px;}
.x87_c00072{left:365.343000px;}
.xc_c00072{left:366.390000px;}
.x56_c00072{left:371.610000px;}
.x2d_c00072{left:375.480000px;}
.x50_c00072{left:379.468500px;}
.x36_c00072{left:386.469000px;}
.x5c_c00072{left:389.173500px;}
.x4_c00072{left:393.750000px;}
.x88_c00072{left:395.011500px;}
.x80_c00072{left:397.509000px;}
.x4c_c00072{left:399.060000px;}
.xd_c00072{left:400.950000px;}
.x26_c00072{left:405.684000px;}
.x2e_c00072{left:406.795500px;}
.x14_c00072{left:408.420000px;}
.x1d_c00072{left:409.485000px;}
.x71_c00072{left:412.362000px;}
.x5e_c00072{left:419.589000px;}
.x46_c00072{left:421.549500px;}
.x1e_c00072{left:429.747000px;}
.x3d_c00072{left:434.730000px;}
.x42_c00072{left:437.895000px;}
.x2f_c00072{left:442.119000px;}
.x51_c00072{left:446.089500px;}
.x61_c00072{left:447.856500px;}
.x78_c00072{left:449.359500px;}
.x20_c00072{left:455.214000px;}
.x37_c00072{left:457.372500px;}
.x15_c00072{left:459.388500px;}
.x81_c00072{left:471.801000px;}
.x27_c00072{left:482.601000px;}
.x79_c00072{left:484.983000px;}
.x28_c00072{left:498.115500px;}
.x72_c00072{left:501.579000px;}
.x89_c00072{left:503.457000px;}
.x7a_c00072{left:505.188000px;}
.x16_c00072{left:510.942000px;}
.x74_c00072{left:512.733000px;}
.x52_c00072{left:513.765000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fsd_c00072{font-size:50.400000pt;}
.fs6_c00072{font-size:56.000000pt;}
.fs5_c00072{font-size:56.933333pt;}
.fs3_c00072{font-size:59.733333pt;}
.fs2_c00072{font-size:60.666667pt;}
.fs1_c00072{font-size:61.600000pt;}
.fs4_c00072{font-size:62.533333pt;}
.fsa_c00072{font-size:63.466667pt;}
.fs9_c00072{font-size:64.400000pt;}
.fs7_c00072{font-size:65.333333pt;}
.fs8_c00072{font-size:66.266667pt;}
.fsb_c00072{font-size:67.200000pt;}
.fsc_c00072{font-size:68.133333pt;}
.fs0_c00072{font-size:85.872849pt;}
.y0_c00072{bottom:0.000000pt;}
.yc3_c00072{bottom:126.020000pt;}
.yc2_c00072{bottom:126.848000pt;}
.yc1_c00072{bottom:127.253333pt;}
.yc0_c00072{bottom:127.850667pt;}
.ybf_c00072{bottom:128.352000pt;}
.ybe_c00072{bottom:129.229333pt;}
.ybd_c00072{bottom:129.964000pt;}
.ybc_c00072{bottom:130.964000pt;}
.ybb_c00072{bottom:131.756000pt;}
.yba_c00072{bottom:132.698667pt;}
.yb9_c00072{bottom:133.593333pt;}
.yb8_c00072{bottom:133.933333pt;}
.yb7_c00072{bottom:146.889333pt;}
.yb6_c00072{bottom:147.602667pt;}
.yb5_c00072{bottom:148.473333pt;}
.yb4_c00072{bottom:149.986667pt;}
.yb3_c00072{bottom:151.170667pt;}
.yb2_c00072{bottom:151.876000pt;}
.yb1_c00072{bottom:152.716000pt;}
.yb0_c00072{bottom:153.804000pt;}
.yaf_c00072{bottom:154.461333pt;}
.yae_c00072{bottom:156.006667pt;}
.yad_c00072{bottom:167.678667pt;}
.yac_c00072{bottom:171.709333pt;}
.yab_c00072{bottom:174.732000pt;}
.yaa_c00072{bottom:186.526667pt;}
.ya8_c00072{bottom:186.921333pt;}
.ya9_c00072{bottom:186.930667pt;}
.ya7_c00072{bottom:187.617333pt;}
.ya6_c00072{bottom:188.188000pt;}
.ya5_c00072{bottom:189.678667pt;}
.ya4_c00072{bottom:190.924000pt;}
.ya3_c00072{bottom:191.721333pt;}
.ya2_c00072{bottom:192.666667pt;}
.ya1_c00072{bottom:194.186667pt;}
.ya0_c00072{bottom:194.646667pt;}
.y9f_c00072{bottom:210.826667pt;}
.y9e_c00072{bottom:227.172000pt;}
.y9d_c00072{bottom:228.996000pt;}
.y9c_c00072{bottom:229.682667pt;}
.y9b_c00072{bottom:230.334667pt;}
.y9a_c00072{bottom:230.776000pt;}
.y99_c00072{bottom:231.441333pt;}
.y98_c00072{bottom:232.569333pt;}
.y97_c00072{bottom:233.182667pt;}
.y96_c00072{bottom:234.270667pt;}
.y95_c00072{bottom:234.982667pt;}
.y94_c00072{bottom:250.629333pt;}
.y93_c00072{bottom:251.793333pt;}
.y92_c00072{bottom:252.416000pt;}
.y91_c00072{bottom:253.584000pt;}
.y90_c00072{bottom:254.446667pt;}
.y8f_c00072{bottom:255.877333pt;}
.y8e_c00072{bottom:270.662667pt;}
.y8d_c00072{bottom:271.885333pt;}
.y8c_c00072{bottom:272.485333pt;}
.y8b_c00072{bottom:273.862667pt;}
.y8a_c00072{bottom:289.693333pt;}
.y89_c00072{bottom:290.194667pt;}
.y88_c00072{bottom:291.429333pt;}
.y87_c00072{bottom:292.178667pt;}
.y86_c00072{bottom:293.660000pt;}
.y85_c00072{bottom:293.701333pt;}
.y84_c00072{bottom:294.412000pt;}
.y83_c00072{bottom:294.649333pt;}
.y82_c00072{bottom:295.449333pt;}
.y81_c00072{bottom:311.380000pt;}
.y80_c00072{bottom:312.085333pt;}
.y7f_c00072{bottom:312.853333pt;}
.y7e_c00072{bottom:313.944000pt;}
.y7d_c00072{bottom:314.904000pt;}
.y7c_c00072{bottom:315.609333pt;}
.y7b_c00072{bottom:329.836000pt;}
.y7a_c00072{bottom:330.288000pt;}
.y79_c00072{bottom:331.134667pt;}
.y78_c00072{bottom:331.916000pt;}
.y77_c00072{bottom:332.910667pt;}
.y76_c00072{bottom:333.536000pt;}
.y75_c00072{bottom:333.929333pt;}
.y74_c00072{bottom:334.585333pt;}
.y73_c00072{bottom:335.048000pt;}
.y72_c00072{bottom:350.188000pt;}
.y71_c00072{bottom:350.640000pt;}
.y70_c00072{bottom:351.429333pt;}
.y6f_c00072{bottom:351.906667pt;}
.y6e_c00072{bottom:352.389333pt;}
.y6d_c00072{bottom:353.830667pt;}
.y6c_c00072{bottom:354.849333pt;}
.y6b_c00072{bottom:355.206667pt;}
.y6a_c00072{bottom:371.893333pt;}
.y69_c00072{bottom:391.253333pt;}
.y68_c00072{bottom:391.861333pt;}
.y67_c00072{bottom:392.157333pt;}
.y66_c00072{bottom:392.800000pt;}
.y65_c00072{bottom:393.221333pt;}
.y64_c00072{bottom:393.510667pt;}
.y63_c00072{bottom:393.932000pt;}
.y62_c00072{bottom:394.321333pt;}
.y61_c00072{bottom:411.682667pt;}
.y60_c00072{bottom:412.110667pt;}
.y5f_c00072{bottom:412.562667pt;}
.y5e_c00072{bottom:413.177333pt;}
.y5d_c00072{bottom:413.624000pt;}
.y5c_c00072{bottom:414.722667pt;}
.y5b_c00072{bottom:431.808000pt;}
.y5a_c00072{bottom:432.624000pt;}
.y59_c00072{bottom:432.858667pt;}
.y58_c00072{bottom:433.450667pt;}
.y57_c00072{bottom:434.518667pt;}
.y56_c00072{bottom:434.881333pt;}
.y55_c00072{bottom:449.734667pt;}
.y54_c00072{bottom:450.697333pt;}
.y53_c00072{bottom:451.273333pt;}
.y52_c00072{bottom:451.645333pt;}
.y51_c00072{bottom:452.206667pt;}
.y50_c00072{bottom:452.633333pt;}
.y4f_c00072{bottom:453.321333pt;}
.y4e_c00072{bottom:453.913333pt;}
.y4d_c00072{bottom:454.804000pt;}
.y4c_c00072{bottom:455.294667pt;}
.y4b_c00072{bottom:472.940000pt;}
.yc4_c00072{bottom:491.986667pt;}
.y4a_c00072{bottom:494.350667pt;}
.y49_c00072{bottom:530.872000pt;}
.y48_c00072{bottom:534.648000pt;}
.y47_c00072{bottom:534.817333pt;}
.y46_c00072{bottom:535.200000pt;}
.y45_c00072{bottom:550.525333pt;}
.y44_c00072{bottom:551.250667pt;}
.y43_c00072{bottom:552.168000pt;}
.y42_c00072{bottom:552.464000pt;}
.y41_c00072{bottom:552.892000pt;}
.y40_c00072{bottom:553.416000pt;}
.y3f_c00072{bottom:553.921333pt;}
.y3e_c00072{bottom:570.765333pt;}
.y3d_c00072{bottom:571.778667pt;}
.y3c_c00072{bottom:572.114667pt;}
.y3b_c00072{bottom:572.552000pt;}
.y3a_c00072{bottom:573.122667pt;}
.y39_c00072{bottom:573.581333pt;}
.y38_c00072{bottom:574.020000pt;}
.y37_c00072{bottom:574.320000pt;}
.y36_c00072{bottom:590.912000pt;}
.y35_c00072{bottom:591.730667pt;}
.y34_c00072{bottom:592.201333pt;}
.y33_c00072{bottom:592.606667pt;}
.y32_c00072{bottom:592.914667pt;}
.y31_c00072{bottom:593.452000pt;}
.y30_c00072{bottom:593.849333pt;}
.y2f_c00072{bottom:594.422667pt;}
.y2e_c00072{bottom:594.718667pt;}
.y2d_c00072{bottom:611.573333pt;}
.y2c_c00072{bottom:611.918667pt;}
.y2b_c00072{bottom:612.225333pt;}
.y2a_c00072{bottom:612.566667pt;}
.y29_c00072{bottom:612.826667pt;}
.y28_c00072{bottom:613.441333pt;}
.y27_c00072{bottom:613.765333pt;}
.y26_c00072{bottom:614.196000pt;}
.y25_c00072{bottom:614.640000pt;}
.y24_c00072{bottom:631.360000pt;}
.y23_c00072{bottom:631.484000pt;}
.y22_c00072{bottom:632.100000pt;}
.y21_c00072{bottom:632.486667pt;}
.y20_c00072{bottom:632.705333pt;}
.y1f_c00072{bottom:633.256000pt;}
.y1e_c00072{bottom:633.532000pt;}
.y1d_c00072{bottom:633.841333pt;}
.y1c_c00072{bottom:634.050667pt;}
.y1b_c00072{bottom:634.321333pt;}
.y1a_c00072{bottom:651.544000pt;}
.y19_c00072{bottom:654.486667pt;}
.y18_c00072{bottom:671.725333pt;}
.y17_c00072{bottom:671.905333pt;}
.y16_c00072{bottom:672.621333pt;}
.y15_c00072{bottom:672.828000pt;}
.y14_c00072{bottom:673.194667pt;}
.y13_c00072{bottom:673.393333pt;}
.y12_c00072{bottom:673.784000pt;}
.y11_c00072{bottom:674.158667pt;}
.y10_c00072{bottom:674.401333pt;}
.yf_c00072{bottom:691.417333pt;}
.ye_c00072{bottom:691.876000pt;}
.yd_c00072{bottom:692.329333pt;}
.yc_c00072{bottom:692.841333pt;}
.yb_c00072{bottom:693.085333pt;}
.ya_c00072{bottom:693.220000pt;}
.y9_c00072{bottom:693.738667pt;}
.y8_c00072{bottom:693.937333pt;}
.y7_c00072{bottom:694.417333pt;}
.y6_c00072{bottom:694.801333pt;}
.y5_c00072{bottom:714.296000pt;}
.y4_c00072{bottom:757.292715pt;}
.y3_c00072{bottom:758.225979pt;}
.y2_c00072{bottom:759.310331pt;}
.y1_c00072{bottom:759.602667pt;}
.hf_c00072{height:50.400000pt;}
.h8_c00072{height:56.000000pt;}
.h7_c00072{height:56.933333pt;}
.h5_c00072{height:59.733333pt;}
.h4_c00072{height:60.666667pt;}
.h3_c00072{height:61.600000pt;}
.h6_c00072{height:62.533333pt;}
.hc_c00072{height:63.466667pt;}
.hb_c00072{height:64.400000pt;}
.h9_c00072{height:65.333333pt;}
.ha_c00072{height:66.266667pt;}
.hd_c00072{height:67.200000pt;}
.he_c00072{height:68.133333pt;}
.h2_c00072{height:85.872849pt;}
.h1_c00072{height:893.333333pt;}
.h0_c00072{height:893.466667pt;}
.w0_c00072{width:627.066667pt;}
.w1_c00072{width:627.333333pt;}
.x0_c00072{left:0.000000pt;}
.x82_c00072{left:31.017333pt;}
.x7d_c00072{left:39.473333pt;}
.x83_c00072{left:48.924000pt;}
.x75_c00072{left:79.849333pt;}
.x43_c00072{left:86.132000pt;}
.x7b_c00072{left:94.368000pt;}
.x84_c00072{left:95.988000pt;}
.x67_c00072{left:99.374667pt;}
.x76_c00072{left:100.785333pt;}
.x7e_c00072{left:103.842667pt;}
.x6e_c00072{left:105.448000pt;}
.x62_c00072{left:107.789333pt;}
.x4d_c00072{left:109.296000pt;}
.x53_c00072{left:110.722667pt;}
.x44_c00072{left:111.680000pt;}
.x38_c00072{left:112.893333pt;}
.x17_c00072{left:114.364000pt;}
.x5_c00072{left:115.680000pt;}
.x45_c00072{left:122.964000pt;}
.x3e_c00072{left:128.002667pt;}
.x7f_c00072{left:131.250667pt;}
.x47_c00072{left:132.720000pt;}
.x6_c00072{left:134.880000pt;}
.x30_c00072{left:136.408000pt;}
.x68_c00072{left:137.481333pt;}
.x18_c00072{left:138.604000pt;}
.x4e_c00072{left:139.964000pt;}
.x63_c00072{left:143.036000pt;}
.x21_c00072{left:143.926667pt;}
.x85_c00072{left:145.622667pt;}
.x69_c00072{left:148.773333pt;}
.xe_c00072{left:154.198667pt;}
.x1_c00072{left:157.504000pt;}
.x7_c00072{left:163.680000pt;}
.x22_c00072{left:167.160000pt;}
.x39_c00072{left:169.768000pt;}
.x5f_c00072{left:170.670667pt;}
.x59_c00072{left:172.212000pt;}
.x19_c00072{left:176.028000pt;}
.x31_c00072{left:180.522667pt;}
.x2_c00072{left:181.865333pt;}
.x6a_c00072{left:184.638667pt;}
.x86_c00072{left:187.278667pt;}
.x48_c00072{left:190.800000pt;}
.x60_c00072{left:192.525333pt;}
.x29_c00072{left:193.825333pt;}
.x4f_c00072{left:195.641333pt;}
.xf_c00072{left:202.198667pt;}
.x8_c00072{left:203.280000pt;}
.x3a_c00072{left:205.092000pt;}
.x3f_c00072{left:207.194667pt;}
.x6c_c00072{left:208.614667pt;}
.x32_c00072{left:211.048000pt;}
.x54_c00072{left:212.942667pt;}
.x1a_c00072{left:215.153333pt;}
.x10_c00072{left:222.112000pt;}
.x2a_c00072{left:223.300000pt;}
.x5a_c00072{left:226.885333pt;}
.x57_c00072{left:228.570667pt;}
.x23_c00072{left:232.201333pt;}
.x1b_c00072{left:235.066667pt;}
.x7c_c00072{left:238.329333pt;}
.x40_c00072{left:240.081333pt;}
.x6d_c00072{left:241.949333pt;}
.x73_c00072{left:242.882667pt;}
.x4b_c00072{left:243.840000pt;}
.x64_c00072{left:245.548000pt;}
.x1f_c00072{left:249.788000pt;}
.x9_c00072{left:251.280000pt;}
.x33_c00072{left:252.374667pt;}
.x55_c00072{left:255.190667pt;}
.x5d_c00072{left:257.058667pt;}
.x6f_c00072{left:260.226667pt;}
.x49_c00072{left:261.840000pt;}
.x41_c00072{left:262.886667pt;}
.x3_c00072{left:272.228000pt;}
.x11_c00072{left:273.944000pt;}
.x34_c00072{left:276.081333pt;}
.xa_c00072{left:277.920000pt;}
.x2b_c00072{left:279.162667pt;}
.x4a_c00072{left:280.800000pt;}
.x3b_c00072{left:282.610667pt;}
.x65_c00072{left:283.928000pt;}
.x12_c00072{left:287.416000pt;}
.x70_c00072{left:289.180000pt;}
.x6b_c00072{left:290.870667pt;}
.x1c_c00072{left:292.430667pt;}
.x24_c00072{left:293.389333pt;}
.x5b_c00072{left:299.121333pt;}
.xb_c00072{left:300.480000pt;}
.x2c_c00072{left:302.788000pt;}
.x77_c00072{left:305.717333pt;}
.x35_c00072{left:307.288000pt;}
.x3c_c00072{left:308.452000pt;}
.x58_c00072{left:310.646667pt;}
.x13_c00072{left:311.872000pt;}
.x25_c00072{left:317.649333pt;}
.x66_c00072{left:319.213333pt;}
.x87_c00072{left:324.749333pt;}
.xc_c00072{left:325.680000pt;}
.x56_c00072{left:330.320000pt;}
.x2d_c00072{left:333.760000pt;}
.x50_c00072{left:337.305333pt;}
.x36_c00072{left:343.528000pt;}
.x5c_c00072{left:345.932000pt;}
.x4_c00072{left:350.000000pt;}
.x88_c00072{left:351.121333pt;}
.x80_c00072{left:353.341333pt;}
.x4c_c00072{left:354.720000pt;}
.xd_c00072{left:356.400000pt;}
.x26_c00072{left:360.608000pt;}
.x2e_c00072{left:361.596000pt;}
.x14_c00072{left:363.040000pt;}
.x1d_c00072{left:363.986667pt;}
.x71_c00072{left:366.544000pt;}
.x5e_c00072{left:372.968000pt;}
.x46_c00072{left:374.710667pt;}
.x1e_c00072{left:381.997333pt;}
.x3d_c00072{left:386.426667pt;}
.x42_c00072{left:389.240000pt;}
.x2f_c00072{left:392.994667pt;}
.x51_c00072{left:396.524000pt;}
.x61_c00072{left:398.094667pt;}
.x78_c00072{left:399.430667pt;}
.x20_c00072{left:404.634667pt;}
.x37_c00072{left:406.553333pt;}
.x15_c00072{left:408.345333pt;}
.x81_c00072{left:419.378667pt;}
.x27_c00072{left:428.978667pt;}
.x79_c00072{left:431.096000pt;}
.x28_c00072{left:442.769333pt;}
.x72_c00072{left:445.848000pt;}
.x89_c00072{left:447.517333pt;}
.x7a_c00072{left:449.056000pt;}
.x16_c00072{left:454.170667pt;}
.x74_c00072{left:455.762667pt;}
.x52_c00072{left:456.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_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;}
.mbc_c00073{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);}
.me_c00073{transform:matrix(0.011605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011605,0.000000,0.000000,0.250000,0,0);}
.mb0_c00073{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);}
.mee_c00073{transform:matrix(0.015638,0.000266,-0.004249,0.249964,0,0);-ms-transform:matrix(0.015638,0.000266,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.015638,0.000266,-0.004249,0.249964,0,0);}
.m89_c00073{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);}
.mcc_c00073{transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);}
.mc0_c00073{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);}
.mb_c00073{transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);}
.m43_c00073{transform:matrix(0.079935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079935,0.000000,0.000000,0.250000,0,0);}
.m7c_c00073{transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);}
.mc3_c00073{transform:matrix(0.110885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110885,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.129835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129835,0.000000,0.000000,0.250000,0,0);}
.m99_c00073{transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);}
.m86_c00073{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m22_c00073{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);}
.me5_c00073{transform:matrix(0.146784,0.002495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146784,0.002495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146784,0.002495,-0.004249,0.249964,0,0);}
.m28_c00073{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);}
.me9_c00073{transform:matrix(0.149003,0.002533,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149003,0.002533,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149003,0.002533,-0.004249,0.249964,0,0);}
.m1d_c00073{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);}
.m13_c00073{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);}
.mcb_c00073{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);}
.m51_c00073{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);}
.m80_c00073{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);}
.m3d_c00073{transform:matrix(0.157610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157610,0.000000,0.000000,0.250000,0,0);}
.mb3_c00073{transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);}
.mcf_c00073{transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);}
.m63_c00073{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);}
.mc8_c00073{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);}
.ma4_c00073{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);}
.m81_c00073{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.m25_c00073{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);}
.m87_c00073{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);}
.mba_c00073{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);}
.m79_c00073{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);}
.mb2_c00073{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);}
.m2c_c00073{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);}
.m84_c00073{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);}
.mbd_c00073{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);}
.m3a_c00073{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);}
.md0_c00073{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);}
.md4_c00073{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);}
.mae_c00073{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);}
.m76_c00073{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);}
.mac_c00073{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);}
.m55_c00073{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);}
.ma1_c00073{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m60_c00073{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);}
.m65_c00073{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);}
.m9a_c00073{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);}
.m20_c00073{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);}
.mad_c00073{transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);}
.m54_c00073{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);}
.m62_c00073{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);}
.m16_c00073{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);}
.m1c_c00073{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);}
.m3c_c00073{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);}
.m6b_c00073{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);}
.mc7_c00073{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);}
.m3b_c00073{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);}
.ma0_c00073{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);}
.m21_c00073{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);}
.ma7_c00073{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);}
.m61_c00073{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);}
.m57_c00073{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);}
.m74_c00073{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{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);}
.mcd_c00073{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);}
.m6c_c00073{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);}
.m85_c00073{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);}
.m2f_c00073{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);}
.m31_c00073{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);}
.ma9_c00073{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);}
.m30_c00073{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);}
.m4e_c00073{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);}
.m4f_c00073{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);}
.mb7_c00073{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);}
.md9_c00073{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);}
.m73_c00073{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);}
.m7_c00073{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);}
.m1b_c00073{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);}
.m7e_c00073{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);}
.m3_c00073{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);}
.m29_c00073{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);}
.m27_c00073{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);}
.mc9_c00073{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);}
.m58_c00073{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);}
.m68_c00073{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);}
.m4a_c00073{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);}
.m5e_c00073{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);}
.m9f_c00073{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);}
.mb1_c00073{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);}
.mb6_c00073{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);}
.m7f_c00073{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);}
.m42_c00073{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);}
.m2d_c00073{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);}
.m94_c00073{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);}
.maa_c00073{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);}
.m14_c00073{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);}
.md3_c00073{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);}
.mb8_c00073{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);}
.m64_c00073{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);}
.mbf_c00073{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);}
.m75_c00073{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);}
.mce_c00073{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);}
.m6a_c00073{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);}
.m7d_c00073{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);}
.m98_c00073{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);}
.m2a_c00073{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);}
.m97_c00073{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);}
.mc6_c00073{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);}
.m3e_c00073{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_c00073{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);}
.m71_c00073{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);}
.md1_c00073{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);}
.m95_c00073{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);}
.m72_c00073{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);}
.md7_c00073{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);}
.md8_c00073{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);}
.m91_c00073{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);}
.ma5_c00073{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);}
.m35_c00073{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.me1_c00073{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);}
.m7b_c00073{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);}
.m6d_c00073{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);}
.ma3_c00073{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);}
.m33_c00073{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);}
.m67_c00073{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);}
.m8a_c00073{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);}
.ma_c00073{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);}
.mca_c00073{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);}
.m78_c00073{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);}
.m8c_c00073{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);}
.md2_c00073{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);}
.m1a_c00073{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);}
.meb_c00073{transform:matrix(0.208970,0.003552,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208970,0.003552,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208970,0.003552,-0.004249,0.249964,0,0);}
.ma2_c00073{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);}
.mc_c00073{transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);}
.m9e_c00073{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);}
.mab_c00073{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);}
.ma8_c00073{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);}
.mb9_c00073{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);}
.mbb_c00073{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);}
.mde_c00073{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);}
.m8f_c00073{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);}
.mb5_c00073{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);}
.m59_c00073{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);}
.m1_c00073{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);}
.me8_c00073{transform:matrix(0.217409,0.003696,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217409,0.003696,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217409,0.003696,-0.004249,0.249964,0,0);}
.m53_c00073{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);}
.m10_c00073{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);}
.me4_c00073{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);}
.m1f_c00073{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.m56_c00073{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);}
.m9_c00073{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);}
.m5a_c00073{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);}
.m4d_c00073{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);}
.m90_c00073{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);}
.m4b_c00073{transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);}
.m8e_c00073{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);}
.m5b_c00073{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);}
.m40_c00073{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);}
.m49_c00073{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);}
.m5d_c00073{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.m39_c00073{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);}
.m5_c00073{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);}
.m15_c00073{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);}
.m26_c00073{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);}
.m96_c00073{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);}
.m17_c00073{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);}
.m2e_c00073{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);}
.m44_c00073{transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);}
.m92_c00073{transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);}
.m66_c00073{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);}
.m38_c00073{transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);}
.m82_c00073{transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);}
.mdd_c00073{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);}
.m52_c00073{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);}
.maf_c00073{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);}
.m32_c00073{transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);}
.m83_c00073{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);}
.m4c_c00073{transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);}
.m48_c00073{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);}
.m70_c00073{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);}
.m50_c00073{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.m41_c00073{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.me7_c00073{transform:matrix(0.248954,0.004232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248954,0.004232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248954,0.004232,-0.004249,0.249964,0,0);}
.m46_c00073{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);}
.m8b_c00073{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m5f_c00073{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m2b_c00073{transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{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);}
.mdc_c00073{transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);}
.med_c00073{transform:matrix(0.256018,0.004352,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256018,0.004352,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256018,0.004352,-0.004249,0.249964,0,0);}
.m12_c00073{transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);}
.m9b_c00073{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);}
.m2_c00073{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);}
.me6_c00073{transform:matrix(0.273036,0.004642,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273036,0.004642,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273036,0.004642,-0.004249,0.249964,0,0);}
.m93_c00073{transform:matrix(0.275955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275955,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);}
.me0_c00073{transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);}
.m34_c00073{transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281435,0.000000,0.000000,0.250000,0,0);}
.m6f_c00073{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.mea_c00073{transform:matrix(0.290208,0.004934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.290208,0.004934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.290208,0.004934,-0.004249,0.249964,0,0);}
.mf_c00073{transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00073{transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);}
.m8d_c00073{transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);}
.m3f_c00073{transform:matrix(0.320620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00073{transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);}
.m77_c00073{transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326030,0.000000,0.000000,0.250000,0,0);}
.m36_c00073{transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342610,0.000000,0.000000,0.250000,0,0);}
.m47_c00073{transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);}
.m9c_c00073{transform:matrix(0.347855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347855,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.347925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00073{transform:matrix(0.351865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351865,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);}
.me3_c00073{transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353445,0.000000,0.000000,0.250000,0,0);}
.m24_c00073{transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);}
.m37_c00073{transform:matrix(0.382495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382495,0.000000,0.000000,0.250000,0,0);}
.m9d_c00073{transform:matrix(0.396775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396775,0.000000,0.000000,0.250000,0,0);}
.m45_c00073{transform:matrix(0.408180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408180,0.000000,0.000000,0.250000,0,0);}
.mdf_c00073{transform:matrix(0.409680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409680,0.000000,0.000000,0.250000,0,0);}
.m88_c00073{transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416195,0.000000,0.000000,0.250000,0,0);}
.m6e_c00073{transform:matrix(0.417190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417190,0.000000,0.000000,0.250000,0,0);}
.md6_c00073{transform:matrix(0.427505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427505,0.000000,0.000000,0.250000,0,0);}
.mc5_c00073{transform:matrix(0.444185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444185,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.462025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00073{transform:matrix(0.493560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493560,0.000000,0.000000,0.250000,0,0);}
.md5_c00073{transform:matrix(0.505770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505770,0.000000,0.000000,0.250000,0,0);}
.mda_c00073{transform:matrix(0.533115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533115,0.000000,0.000000,0.250000,0,0);}
.mdb_c00073{transform:matrix(0.538025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538025,0.000000,0.000000,0.250000,0,0);}
.mef_c00073{transform:matrix(0.550295,0.009355,-0.004249,0.249964,0,0);-ms-transform:matrix(0.550295,0.009355,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.550295,0.009355,-0.004249,0.249964,0,0);}
.mb4_c00073{transform:matrix(0.580700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580700,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.673015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673015,0.000000,0.000000,0.250000,0,0);}
.m69_c00073{transform:matrix(0.734545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734545,0.000000,0.000000,0.250000,0,0);}
.mc4_c00073{transform:matrix(0.861350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.861350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.861350,0.000000,0.000000,0.250000,0,0);}
.mec_c00073{transform:matrix(0.880593,0.014970,-0.004249,0.249964,0,0);-ms-transform:matrix(0.880593,0.014970,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.880593,0.014970,-0.004249,0.249964,0,0);}
.m1e_c00073{transform:matrix(1.051190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.051190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.051190,0.000000,0.000000,0.250000,0,0);}
.mbe_c00073{transform:matrix(1.078875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.078875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.078875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00073{transform:matrix(6.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.234025,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;}
.fse_c00073{font-size:23.100000px;}
.fs10_c00073{font-size:47.250000px;}
.fs11_c00073{font-size:49.357131px;}
.fsf_c00073{font-size:54.600000px;}
.fs12_c00073{font-size:54.607889px;}
.fsb_c00073{font-size:63.000000px;}
.fs9_c00073{font-size:64.050000px;}
.fsa_c00073{font-size:68.250000px;}
.fs8_c00073{font-size:69.300000px;}
.fs1_c00073{font-size:70.350000px;}
.fs3_c00073{font-size:71.400000px;}
.fs7_c00073{font-size:72.450000px;}
.fsc_c00073{font-size:73.500000px;}
.fsd_c00073{font-size:74.550000px;}
.fs6_c00073{font-size:75.600000px;}
.fs4_c00073{font-size:79.800000px;}
.fs5_c00073{font-size:93.450000px;}
.fs0_c00073{font-size:97.650000px;}
.fs2_c00073{font-size:98.700000px;}
.y0_c00073{bottom:0.000000px;}
.y3c_c00073{bottom:127.493714px;}
.y3b_c00073{bottom:127.494462px;}
.y3a_c00073{bottom:127.495115px;}
.y39_c00073{bottom:127.495146px;}
.y38_c00073{bottom:145.571141px;}
.y37_c00073{bottom:146.232636px;}
.y36_c00073{bottom:146.602182px;}
.y35_c00073{bottom:147.313836px;}
.y34_c00073{bottom:147.699192px;}
.y33_c00073{bottom:148.227680px;}
.y32_c00073{bottom:152.096948px;}
.y31_c00073{bottom:152.896500px;}
.y30_c00073{bottom:169.177500px;}
.y2f_c00073{bottom:185.082000px;}
.y2e_c00073{bottom:185.235000px;}
.y2d_c00073{bottom:185.320500px;}
.y2c_c00073{bottom:185.596500px;}
.y2b_c00073{bottom:185.704500px;}
.y2a_c00073{bottom:185.875500px;}
.y29_c00073{bottom:186.195000px;}
.y28_c00073{bottom:186.301500px;}
.y27_c00073{bottom:186.421500px;}
.y26_c00073{bottom:186.630000px;}
.y25_c00073{bottom:186.763500px;}
.y24_c00073{bottom:187.099500px;}
.y23_c00073{bottom:187.213500px;}
.y22_c00073{bottom:187.551000px;}
.y21_c00073{bottom:187.671000px;}
.y20_c00073{bottom:187.917000px;}
.y1f_c00073{bottom:188.190000px;}
.y1e_c00073{bottom:202.242000px;}
.y1d_c00073{bottom:212.671500px;}
.y1b_c00073{bottom:236.128500px;}
.y1a_c00073{bottom:259.234500px;}
.y19_c00073{bottom:281.490000px;}
.y18_c00073{bottom:304.690500px;}
.y17_c00073{bottom:327.285000px;}
.y16_c00073{bottom:350.460000px;}
.y15_c00073{bottom:373.140000px;}
.y14_c00073{bottom:396.193500px;}
.y13_c00073{bottom:419.230500px;}
.y12_c00073{bottom:441.784500px;}
.y11_c00073{bottom:465.028500px;}
.y10_c00073{bottom:487.687500px;}
.yf_c00073{bottom:510.493500px;}
.ye_c00073{bottom:533.439000px;}
.yd_c00073{bottom:556.200000px;}
.yc_c00073{bottom:578.421000px;}
.yb_c00073{bottom:599.647500px;}
.ya_c00073{bottom:623.518500px;}
.y9_c00073{bottom:646.380000px;}
.y8_c00073{bottom:669.600000px;}
.y7_c00073{bottom:692.161500px;}
.y6_c00073{bottom:715.342500px;}
.y1c_c00073{bottom:733.699500px;}
.y5_c00073{bottom:751.563000px;}
.y4_c00073{bottom:774.238500px;}
.y3_c00073{bottom:796.879500px;}
.y2_c00073{bottom:820.065000px;}
.y1_c00073{bottom:860.599500px;}
.h10_c00073{height:23.100000px;}
.h12_c00073{height:47.250000px;}
.h13_c00073{height:49.357131px;}
.h11_c00073{height:54.600000px;}
.h14_c00073{height:54.607889px;}
.hd_c00073{height:63.000000px;}
.hb_c00073{height:64.050000px;}
.hc_c00073{height:68.250000px;}
.ha_c00073{height:69.300000px;}
.h3_c00073{height:70.350000px;}
.h5_c00073{height:71.400000px;}
.h9_c00073{height:72.450000px;}
.he_c00073{height:73.500000px;}
.hf_c00073{height:74.550000px;}
.h8_c00073{height:75.600000px;}
.h6_c00073{height:79.800000px;}
.h7_c00073{height:93.450000px;}
.h2_c00073{height:97.650000px;}
.h4_c00073{height:98.700000px;}
.h0_c00073{height:1008.450000px;}
.h1_c00073{height:1008.750000px;}
.w0_c00073{width:711.720000px;}
.w1_c00073{width:711.750000px;}
.x0_c00073{left:0.000000px;}
.x81_c00073{left:115.963500px;}
.x7d_c00073{left:127.440000px;}
.x87_c00073{left:130.140000px;}
.x7e_c00073{left:133.920000px;}
.x82_c00073{left:161.395500px;}
.x90_c00073{left:163.191000px;}
.x88_c00073{left:167.400000px;}
.x7f_c00073{left:170.910000px;}
.x7b_c00073{left:182.520000px;}
.xf_c00073{left:197.100000px;}
.x6_c00073{left:200.610000px;}
.x11_c00073{left:202.500000px;}
.x72_c00073{left:203.580000px;}
.x91_c00073{left:210.223500px;}
.x22_c00073{left:222.480000px;}
.x18_c00073{left:228.150000px;}
.x6d_c00073{left:229.230000px;}
.x39_c00073{left:231.120000px;}
.x31_c00073{left:233.820000px;}
.x54_c00073{left:234.900000px;}
.x40_c00073{left:237.330000px;}
.x2a_c00073{left:239.220000px;}
.x89_c00073{left:244.080000px;}
.x7_c00073{left:248.400000px;}
.x19_c00073{left:254.340000px;}
.x73_c00073{left:257.310000px;}
.x8_c00073{left:259.740000px;}
.x2b_c00073{left:262.710000px;}
.x64_c00073{left:265.140000px;}
.x75_c00073{left:269.190000px;}
.x4e_c00073{left:270.540000px;}
.x6e_c00073{left:271.620000px;}
.x12_c00073{left:274.050000px;}
.x43_c00073{left:277.020000px;}
.x83_c00073{left:278.586000px;}
.x48_c00073{left:280.260000px;}
.x8a_c00073{left:281.880000px;}
.x9_c00073{left:283.500000px;}
.x55_c00073{left:287.010000px;}
.x65_c00073{left:288.090000px;}
.x23_c00073{left:289.170000px;}
.x2c_c00073{left:291.870000px;}
.x41_c00073{left:293.760000px;}
.x44_c00073{left:297.540000px;}
.x13_c00073{left:298.620000px;}
.x8b_c00073{left:300.510000px;}
.x95_c00073{left:301.880871px;}
.x32_c00073{left:308.880000px;}
.x56_c00073{left:311.310000px;}
.x1_c00073{left:313.470000px;}
.x5b_c00073{left:315.360000px;}
.x74_c00073{left:320.220000px;}
.x14_c00073{left:328.320000px;}
.x1a_c00073{left:331.830000px;}
.x24_c00073{left:336.960000px;}
.x33_c00073{left:338.040000px;}
.x50_c00073{left:342.090000px;}
.x17_c00073{left:344.250000px;}
.x30_c00073{left:347.220000px;}
.x10_c00073{left:351.000000px;}
.x1b_c00073{left:352.620000px;}
.x21_c00073{left:353.970000px;}
.x2_c00073{left:357.210000px;}
.x25_c00073{left:360.720000px;}
.xa_c00073{left:362.070000px;}
.x8c_c00073{left:370.440000px;}
.x51_c00073{left:371.520000px;}
.x5c_c00073{left:375.570000px;}
.x61_c00073{left:379.890000px;}
.x34_c00073{left:381.240000px;}
.x57_c00073{left:383.130000px;}
.x76_c00073{left:385.020000px;}
.x3_c00073{left:389.070000px;}
.xb_c00073{left:395.550000px;}
.x66_c00073{left:397.440000px;}
.x62_c00073{left:400.140000px;}
.x8d_c00073{left:402.030000px;}
.x3a_c00073{left:403.380000px;}
.x35_c00073{left:404.460000px;}
.x26_c00073{left:406.080000px;}
.x15_c00073{left:407.430000px;}
.x52_c00073{left:410.940000px;}
.x6c_c00073{left:413.640000px;}
.x49_c00073{left:416.340000px;}
.x2d_c00073{left:417.420000px;}
.x4_c00073{left:420.120000px;}
.x27_c00073{left:422.280000px;}
.x3b_c00073{left:424.170000px;}
.x77_c00073{left:425.250000px;}
.x1c_c00073{left:427.140000px;}
.x16_c00073{left:429.300000px;}
.x84_c00073{left:430.308000px;}
.x53_c00073{left:434.430000px;}
.x6f_c00073{left:438.480000px;}
.x36_c00073{left:443.340000px;}
.x63_c00073{left:447.390000px;}
.x4a_c00073{left:449.280000px;}
.xc_c00073{left:451.980000px;}
.x3c_c00073{left:455.490000px;}
.x5d_c00073{left:456.570000px;}
.x2e_c00073{left:457.650000px;}
.xd_c00073{left:459.810000px;}
.x5_c00073{left:462.510000px;}
.x28_c00073{left:464.670000px;}
.x58_c00073{left:467.910000px;}
.x92_c00073{left:468.915000px;}
.x4f_c00073{left:471.150000px;}
.x67_c00073{left:474.930000px;}
.x70_c00073{left:478.170000px;}
.x8e_c00073{left:479.790000px;}
.x5e_c00073{left:481.680000px;}
.x4b_c00073{left:483.300000px;}
.x3d_c00073{left:484.380000px;}
.x42_c00073{left:487.620000px;}
.x1d_c00073{left:488.700000px;}
.x93_c00073{left:491.583000px;}
.x68_c00073{left:494.370000px;}
.x45_c00073{left:496.260000px;}
.x37_c00073{left:498.150000px;}
.x60_c00073{left:501.120000px;}
.x29_c00073{left:502.470000px;}
.x5f_c00073{left:503.550000px;}
.x59_c00073{left:505.170000px;}
.x38_c00073{left:510.300000px;}
.x46_c00073{left:519.750000px;}
.x4c_c00073{left:521.370000px;}
.xe_c00073{left:523.260000px;}
.x78_c00073{left:524.340000px;}
.x2f_c00073{left:527.850000px;}
.x1e_c00073{left:529.740000px;}
.x3e_c00073{left:533.790000px;}
.x4d_c00073{left:542.430000px;}
.x69_c00073{left:545.670000px;}
.x5a_c00073{left:547.290000px;}
.x71_c00073{left:551.070000px;}
.x6a_c00073{left:553.770000px;}
.x94_c00073{left:555.183000px;}
.x1f_c00073{left:562.140000px;}
.x6b_c00073{left:572.940000px;}
.x8f_c00073{left:577.260000px;}
.x47_c00073{left:578.880000px;}
.x79_c00073{left:582.660000px;}
.x20_c00073{left:591.570000px;}
.x7c_c00073{left:594.270000px;}
.x3f_c00073{left:598.320000px;}
.x85_c00073{left:608.256000px;}
.x86_c00073{left:633.631500px;}
.x7a_c00073{left:635.310000px;}
.x80_c00073{left:653.940000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fse_c00073{font-size:20.533333pt;}
.fs10_c00073{font-size:42.000000pt;}
.fs11_c00073{font-size:43.873005pt;}
.fsf_c00073{font-size:48.533333pt;}
.fs12_c00073{font-size:48.540346pt;}
.fsb_c00073{font-size:56.000000pt;}
.fs9_c00073{font-size:56.933333pt;}
.fsa_c00073{font-size:60.666667pt;}
.fs8_c00073{font-size:61.600000pt;}
.fs1_c00073{font-size:62.533333pt;}
.fs3_c00073{font-size:63.466667pt;}
.fs7_c00073{font-size:64.400000pt;}
.fsc_c00073{font-size:65.333333pt;}
.fsd_c00073{font-size:66.266667pt;}
.fs6_c00073{font-size:67.200000pt;}
.fs4_c00073{font-size:70.933333pt;}
.fs5_c00073{font-size:83.066667pt;}
.fs0_c00073{font-size:86.800000pt;}
.fs2_c00073{font-size:87.733333pt;}
.y0_c00073{bottom:0.000000pt;}
.y3c_c00073{bottom:113.327745pt;}
.y3b_c00073{bottom:113.328411pt;}
.y3a_c00073{bottom:113.328991pt;}
.y39_c00073{bottom:113.329019pt;}
.y38_c00073{bottom:129.396569pt;}
.y37_c00073{bottom:129.984565pt;}
.y36_c00073{bottom:130.313051pt;}
.y35_c00073{bottom:130.945632pt;}
.y34_c00073{bottom:131.288171pt;}
.y33_c00073{bottom:131.757937pt;}
.y32_c00073{bottom:135.197287pt;}
.y31_c00073{bottom:135.908000pt;}
.y30_c00073{bottom:150.380000pt;}
.y2f_c00073{bottom:164.517333pt;}
.y2e_c00073{bottom:164.653333pt;}
.y2d_c00073{bottom:164.729333pt;}
.y2c_c00073{bottom:164.974667pt;}
.y2b_c00073{bottom:165.070667pt;}
.y2a_c00073{bottom:165.222667pt;}
.y29_c00073{bottom:165.506667pt;}
.y28_c00073{bottom:165.601333pt;}
.y27_c00073{bottom:165.708000pt;}
.y26_c00073{bottom:165.893333pt;}
.y25_c00073{bottom:166.012000pt;}
.y24_c00073{bottom:166.310667pt;}
.y23_c00073{bottom:166.412000pt;}
.y22_c00073{bottom:166.712000pt;}
.y21_c00073{bottom:166.818667pt;}
.y20_c00073{bottom:167.037333pt;}
.y1f_c00073{bottom:167.280000pt;}
.y1e_c00073{bottom:179.770667pt;}
.y1d_c00073{bottom:189.041333pt;}
.y1b_c00073{bottom:209.892000pt;}
.y1a_c00073{bottom:230.430667pt;}
.y19_c00073{bottom:250.213333pt;}
.y18_c00073{bottom:270.836000pt;}
.y17_c00073{bottom:290.920000pt;}
.y16_c00073{bottom:311.520000pt;}
.y15_c00073{bottom:331.680000pt;}
.y14_c00073{bottom:352.172000pt;}
.y13_c00073{bottom:372.649333pt;}
.y12_c00073{bottom:392.697333pt;}
.y11_c00073{bottom:413.358667pt;}
.y10_c00073{bottom:433.500000pt;}
.yf_c00073{bottom:453.772000pt;}
.ye_c00073{bottom:474.168000pt;}
.yd_c00073{bottom:494.400000pt;}
.yc_c00073{bottom:514.152000pt;}
.yb_c00073{bottom:533.020000pt;}
.ya_c00073{bottom:554.238667pt;}
.y9_c00073{bottom:574.560000pt;}
.y8_c00073{bottom:595.200000pt;}
.y7_c00073{bottom:615.254667pt;}
.y6_c00073{bottom:635.860000pt;}
.y1c_c00073{bottom:652.177333pt;}
.y5_c00073{bottom:668.056000pt;}
.y4_c00073{bottom:688.212000pt;}
.y3_c00073{bottom:708.337333pt;}
.y2_c00073{bottom:728.946667pt;}
.y1_c00073{bottom:764.977333pt;}
.h10_c00073{height:20.533333pt;}
.h12_c00073{height:42.000000pt;}
.h13_c00073{height:43.873005pt;}
.h11_c00073{height:48.533333pt;}
.h14_c00073{height:48.540346pt;}
.hd_c00073{height:56.000000pt;}
.hb_c00073{height:56.933333pt;}
.hc_c00073{height:60.666667pt;}
.ha_c00073{height:61.600000pt;}
.h3_c00073{height:62.533333pt;}
.h5_c00073{height:63.466667pt;}
.h9_c00073{height:64.400000pt;}
.he_c00073{height:65.333333pt;}
.hf_c00073{height:66.266667pt;}
.h8_c00073{height:67.200000pt;}
.h6_c00073{height:70.933333pt;}
.h7_c00073{height:83.066667pt;}
.h2_c00073{height:86.800000pt;}
.h4_c00073{height:87.733333pt;}
.h0_c00073{height:896.400000pt;}
.h1_c00073{height:896.666667pt;}
.w0_c00073{width:632.640000pt;}
.w1_c00073{width:632.666667pt;}
.x0_c00073{left:0.000000pt;}
.x81_c00073{left:103.078667pt;}
.x7d_c00073{left:113.280000pt;}
.x87_c00073{left:115.680000pt;}
.x7e_c00073{left:119.040000pt;}
.x82_c00073{left:143.462667pt;}
.x90_c00073{left:145.058667pt;}
.x88_c00073{left:148.800000pt;}
.x7f_c00073{left:151.920000pt;}
.x7b_c00073{left:162.240000pt;}
.xf_c00073{left:175.200000pt;}
.x6_c00073{left:178.320000pt;}
.x11_c00073{left:180.000000pt;}
.x72_c00073{left:180.960000pt;}
.x91_c00073{left:186.865333pt;}
.x22_c00073{left:197.760000pt;}
.x18_c00073{left:202.800000pt;}
.x6d_c00073{left:203.760000pt;}
.x39_c00073{left:205.440000pt;}
.x31_c00073{left:207.840000pt;}
.x54_c00073{left:208.800000pt;}
.x40_c00073{left:210.960000pt;}
.x2a_c00073{left:212.640000pt;}
.x89_c00073{left:216.960000pt;}
.x7_c00073{left:220.800000pt;}
.x19_c00073{left:226.080000pt;}
.x73_c00073{left:228.720000pt;}
.x8_c00073{left:230.880000pt;}
.x2b_c00073{left:233.520000pt;}
.x64_c00073{left:235.680000pt;}
.x75_c00073{left:239.280000pt;}
.x4e_c00073{left:240.480000pt;}
.x6e_c00073{left:241.440000pt;}
.x12_c00073{left:243.600000pt;}
.x43_c00073{left:246.240000pt;}
.x83_c00073{left:247.632000pt;}
.x48_c00073{left:249.120000pt;}
.x8a_c00073{left:250.560000pt;}
.x9_c00073{left:252.000000pt;}
.x55_c00073{left:255.120000pt;}
.x65_c00073{left:256.080000pt;}
.x23_c00073{left:257.040000pt;}
.x2c_c00073{left:259.440000pt;}
.x41_c00073{left:261.120000pt;}
.x44_c00073{left:264.480000pt;}
.x13_c00073{left:265.440000pt;}
.x8b_c00073{left:267.120000pt;}
.x95_c00073{left:268.338552pt;}
.x32_c00073{left:274.560000pt;}
.x56_c00073{left:276.720000pt;}
.x1_c00073{left:278.640000pt;}
.x5b_c00073{left:280.320000pt;}
.x74_c00073{left:284.640000pt;}
.x14_c00073{left:291.840000pt;}
.x1a_c00073{left:294.960000pt;}
.x24_c00073{left:299.520000pt;}
.x33_c00073{left:300.480000pt;}
.x50_c00073{left:304.080000pt;}
.x17_c00073{left:306.000000pt;}
.x30_c00073{left:308.640000pt;}
.x10_c00073{left:312.000000pt;}
.x1b_c00073{left:313.440000pt;}
.x21_c00073{left:314.640000pt;}
.x2_c00073{left:317.520000pt;}
.x25_c00073{left:320.640000pt;}
.xa_c00073{left:321.840000pt;}
.x8c_c00073{left:329.280000pt;}
.x51_c00073{left:330.240000pt;}
.x5c_c00073{left:333.840000pt;}
.x61_c00073{left:337.680000pt;}
.x34_c00073{left:338.880000pt;}
.x57_c00073{left:340.560000pt;}
.x76_c00073{left:342.240000pt;}
.x3_c00073{left:345.840000pt;}
.xb_c00073{left:351.600000pt;}
.x66_c00073{left:353.280000pt;}
.x62_c00073{left:355.680000pt;}
.x8d_c00073{left:357.360000pt;}
.x3a_c00073{left:358.560000pt;}
.x35_c00073{left:359.520000pt;}
.x26_c00073{left:360.960000pt;}
.x15_c00073{left:362.160000pt;}
.x52_c00073{left:365.280000pt;}
.x6c_c00073{left:367.680000pt;}
.x49_c00073{left:370.080000pt;}
.x2d_c00073{left:371.040000pt;}
.x4_c00073{left:373.440000pt;}
.x27_c00073{left:375.360000pt;}
.x3b_c00073{left:377.040000pt;}
.x77_c00073{left:378.000000pt;}
.x1c_c00073{left:379.680000pt;}
.x16_c00073{left:381.600000pt;}
.x84_c00073{left:382.496000pt;}
.x53_c00073{left:386.160000pt;}
.x6f_c00073{left:389.760000pt;}
.x36_c00073{left:394.080000pt;}
.x63_c00073{left:397.680000pt;}
.x4a_c00073{left:399.360000pt;}
.xc_c00073{left:401.760000pt;}
.x3c_c00073{left:404.880000pt;}
.x5d_c00073{left:405.840000pt;}
.x2e_c00073{left:406.800000pt;}
.xd_c00073{left:408.720000pt;}
.x5_c00073{left:411.120000pt;}
.x28_c00073{left:413.040000pt;}
.x58_c00073{left:415.920000pt;}
.x92_c00073{left:416.813333pt;}
.x4f_c00073{left:418.800000pt;}
.x67_c00073{left:422.160000pt;}
.x70_c00073{left:425.040000pt;}
.x8e_c00073{left:426.480000pt;}
.x5e_c00073{left:428.160000pt;}
.x4b_c00073{left:429.600000pt;}
.x3d_c00073{left:430.560000pt;}
.x42_c00073{left:433.440000pt;}
.x1d_c00073{left:434.400000pt;}
.x93_c00073{left:436.962667pt;}
.x68_c00073{left:439.440000pt;}
.x45_c00073{left:441.120000pt;}
.x37_c00073{left:442.800000pt;}
.x60_c00073{left:445.440000pt;}
.x29_c00073{left:446.640000pt;}
.x5f_c00073{left:447.600000pt;}
.x59_c00073{left:449.040000pt;}
.x38_c00073{left:453.600000pt;}
.x46_c00073{left:462.000000pt;}
.x4c_c00073{left:463.440000pt;}
.xe_c00073{left:465.120000pt;}
.x78_c00073{left:466.080000pt;}
.x2f_c00073{left:469.200000pt;}
.x1e_c00073{left:470.880000pt;}
.x3e_c00073{left:474.480000pt;}
.x4d_c00073{left:482.160000pt;}
.x69_c00073{left:485.040000pt;}
.x5a_c00073{left:486.480000pt;}
.x71_c00073{left:489.840000pt;}
.x6a_c00073{left:492.240000pt;}
.x94_c00073{left:493.496000pt;}
.x1f_c00073{left:499.680000pt;}
.x6b_c00073{left:509.280000pt;}
.x8f_c00073{left:513.120000pt;}
.x47_c00073{left:514.560000pt;}
.x79_c00073{left:517.920000pt;}
.x20_c00073{left:525.840000pt;}
.x7c_c00073{left:528.240000pt;}
.x3f_c00073{left:531.840000pt;}
.x85_c00073{left:540.672000pt;}
.x86_c00073{left:563.228000pt;}
.x7a_c00073{left:564.720000pt;}
.x80_c00073{left:581.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_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_ef4e99a7aa2876b3106553d3.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;}
.me3_c00074{transform:matrix(0.010691,0.000310,-0.007247,0.249895,0,0);-ms-transform:matrix(0.010691,0.000310,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.010691,0.000310,-0.007247,0.249895,0,0);}
.m99_c00074{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.015582,0.000296,-0.004749,0.249955,0,0);-ms-transform:matrix(0.015582,0.000296,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.015582,0.000296,-0.004749,0.249955,0,0);}
.m74_c00074{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);}
.m90_c00074{transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);}
.md7_c00074{transform:matrix(0.085679,0.002485,-0.007247,0.249895,0,0);-ms-transform:matrix(0.085679,0.002485,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.085679,0.002485,-0.007247,0.249895,0,0);}
.mc7_c00074{transform:matrix(0.132923,0.003323,-0.006248,0.249922,0,0);-ms-transform:matrix(0.132923,0.003323,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.132923,0.003323,-0.006248,0.249922,0,0);}
.me0_c00074{transform:matrix(0.133939,0.003884,-0.007247,0.249895,0,0);-ms-transform:matrix(0.133939,0.003884,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.133939,0.003884,-0.007247,0.249895,0,0);}
.m7b_c00074{transform:matrix(0.137915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137915,0.000000,0.000000,0.250000,0,0);}
.m76_c00074{transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);}
.mac_c00074{transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.149249,0.003283,-0.005499,0.249940,0,0);-ms-transform:matrix(0.149249,0.003283,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.149249,0.003283,-0.005499,0.249940,0,0);}
.m9c_c00074{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.m7c_c00074{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);}
.md2_c00074{transform:matrix(0.150327,0.004359,-0.007247,0.249895,0,0);-ms-transform:matrix(0.150327,0.004359,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.150327,0.004359,-0.007247,0.249895,0,0);}
.m51_c00074{transform:matrix(0.150868,0.003319,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150868,0.003319,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150868,0.003319,-0.005499,0.249940,0,0);}
.m44_c00074{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);}
.m79_c00074{transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);}
.ma8_c00074{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m78_c00074{transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);}
.m83_c00074{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m8d_c00074{transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);}
.m72_c00074{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);}
.mc4_c00074{transform:matrix(0.155771,0.003894,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155771,0.003894,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155771,0.003894,-0.006248,0.249922,0,0);}
.m87_c00074{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);}
.m42_c00074{transform:matrix(0.158047,0.003477,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158047,0.003477,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158047,0.003477,-0.005499,0.249940,0,0);}
.mce_c00074{transform:matrix(0.158440,0.003961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158440,0.003961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158440,0.003961,-0.006248,0.249922,0,0);}
.m48_c00074{transform:matrix(0.160301,0.003527,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160301,0.003527,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160301,0.003527,-0.005499,0.249940,0,0);}
.m7d_c00074{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);}
.ma9_c00074{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);}
.md3_c00074{transform:matrix(0.165600,0.004802,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165600,0.004802,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165600,0.004802,-0.007247,0.249895,0,0);}
.m1b_c00074{transform:matrix(0.165675,0.003148,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165675,0.003148,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165675,0.003148,-0.004749,0.249955,0,0);}
.m38_c00074{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);}
.m5c_c00074{transform:matrix(0.166664,0.004500,-0.006748,0.249909,0,0);-ms-transform:matrix(0.166664,0.004500,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.166664,0.004500,-0.006748,0.249909,0,0);}
.m6f_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);}
.m6d_c00074{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);}
.ma3_c00074{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);}
.m4a_c00074{transform:matrix(0.170504,0.003751,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170504,0.003751,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170504,0.003751,-0.005499,0.249940,0,0);}
.m8f_c00074{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);}
.m33_c00074{transform:matrix(0.172018,0.003784,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172018,0.003784,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172018,0.003784,-0.005499,0.249940,0,0);}
.m97_c00074{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);}
.m52_c00074{transform:matrix(0.172173,0.003788,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172173,0.003788,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172173,0.003788,-0.005499,0.249940,0,0);}
.maf_c00074{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);}
.ma7_c00074{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);}
.mc6_c00074{transform:matrix(0.172791,0.004320,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172791,0.004320,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172791,0.004320,-0.006248,0.249922,0,0);}
.md5_c00074{transform:matrix(0.172902,0.005014,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172902,0.005014,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172902,0.005014,-0.007247,0.249895,0,0);}
.md_c00074{transform:matrix(0.173077,0.003635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173077,0.003635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173077,0.003635,-0.005249,0.249945,0,0);}
.m2f_c00074{transform:matrix(0.173483,0.003817,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173483,0.003817,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173483,0.003817,-0.005499,0.249940,0,0);}
.mbb_c00074{transform:matrix(0.174061,0.004352,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174061,0.004352,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174061,0.004352,-0.006248,0.249922,0,0);}
.mc5_c00074{transform:matrix(0.174570,0.004364,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174570,0.004364,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174570,0.004364,-0.006248,0.249922,0,0);}
.m2d_c00074{transform:matrix(0.174833,0.003846,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174833,0.003846,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174833,0.003846,-0.005499,0.249940,0,0);}
.m1a_c00074{transform:matrix(0.175618,0.003337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175618,0.003337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175618,0.003337,-0.004749,0.249955,0,0);}
.ma4_c00074{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);}
.mad_c00074{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);}
.m3a_c00074{transform:matrix(0.178657,0.003930,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178657,0.003930,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178657,0.003930,-0.005499,0.249940,0,0);}
.mba_c00074{transform:matrix(0.178979,0.004474,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178979,0.004474,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178979,0.004474,-0.006248,0.249922,0,0);}
.m49_c00074{transform:matrix(0.179647,0.003952,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179647,0.003952,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179647,0.003952,-0.005499,0.249940,0,0);}
.m4b_c00074{transform:matrix(0.179677,0.003953,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179677,0.003953,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179677,0.003953,-0.005499,0.249940,0,0);}
.m1d_c00074{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);}
.m70_c00074{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{transform:matrix(0.181581,0.003995,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181581,0.003995,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181581,0.003995,-0.005499,0.249940,0,0);}
.m2b_c00074{transform:matrix(0.182016,0.004004,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182016,0.004004,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182016,0.004004,-0.005499,0.249940,0,0);}
.m27_c00074{transform:matrix(0.182421,0.004013,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182421,0.004013,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182421,0.004013,-0.005499,0.249940,0,0);}
.m69_c00074{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);}
.m89_c00074{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);}
.m9f_c00074{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);}
.m1c_c00074{transform:matrix(0.183712,0.003491,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183712,0.003491,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183712,0.003491,-0.004749,0.249955,0,0);}
.m47_c00074{transform:matrix(0.183766,0.004043,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183766,0.004043,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183766,0.004043,-0.005499,0.249940,0,0);}
.ma_c00074{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);}
.md4_c00074{transform:matrix(0.184832,0.005360,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184832,0.005360,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184832,0.005360,-0.007247,0.249895,0,0);}
.m80_c00074{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);}
.m61_c00074{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);}
.mb9_c00074{transform:matrix(0.185902,0.004648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185902,0.004648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185902,0.004648,-0.006248,0.249922,0,0);}
.ma2_c00074{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_c00074{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);}
.mda_c00074{transform:matrix(0.186991,0.005423,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186991,0.005423,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186991,0.005423,-0.007247,0.249895,0,0);}
.m82_c00074{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);}
.m63_c00074{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);}
.mb6_c00074{transform:matrix(0.187686,0.004692,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187686,0.004692,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187686,0.004692,-0.006248,0.249922,0,0);}
.mab_c00074{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);}
.ma0_c00074{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);}
.m6e_c00074{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);}
.m7a_c00074{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);}
.m3d_c00074{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);}
.m85_c00074{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);}
.m9d_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);}
.mbe_c00074{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);}
.m18_c00074{transform:matrix(0.191066,0.003630,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191066,0.003630,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191066,0.003630,-0.004749,0.249955,0,0);}
.m2a_c00074{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);}
.m2c_c00074{transform:matrix(0.192798,0.004242,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192798,0.004242,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192798,0.004242,-0.005499,0.249940,0,0);}
.me2_c00074{transform:matrix(0.192869,0.005593,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192869,0.005593,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192869,0.005593,-0.007247,0.249895,0,0);}
.m19_c00074{transform:matrix(0.193025,0.003667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193025,0.003667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193025,0.003667,-0.004749,0.249955,0,0);}
.mb_c00074{transform:matrix(0.193232,0.004058,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193232,0.004058,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193232,0.004058,-0.005249,0.249945,0,0);}
.m1e_c00074{transform:matrix(0.193590,0.003678,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193590,0.003678,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193590,0.003678,-0.004749,0.249955,0,0);}
.m8c_c00074{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);}
.m71_c00074{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);}
.mb7_c00074{transform:matrix(0.195119,0.004878,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195119,0.004878,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195119,0.004878,-0.006248,0.249922,0,0);}
.m6a_c00074{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_c00074{transform:matrix(0.195803,0.004308,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195803,0.004308,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195803,0.004308,-0.005499,0.249940,0,0);}
.m2_c00074{transform:matrix(0.196488,0.004519,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196488,0.004519,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196488,0.004519,-0.005748,0.249934,0,0);}
.m7f_c00074{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);}
.m45_c00074{transform:matrix(0.196772,0.004329,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196772,0.004329,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196772,0.004329,-0.005499,0.249940,0,0);}
.m4c_c00074{transform:matrix(0.196867,0.004331,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196867,0.004331,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196867,0.004331,-0.005499,0.249940,0,0);}
.m9e_c00074{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);}
.m37_c00074{transform:matrix(0.197407,0.004343,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197407,0.004343,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197407,0.004343,-0.005499,0.249940,0,0);}
.md1_c00074{transform:matrix(0.198058,0.004951,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198058,0.004951,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198058,0.004951,-0.006248,0.249922,0,0);}
.mb8_c00074{transform:matrix(0.198713,0.004968,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198713,0.004968,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198713,0.004968,-0.006248,0.249922,0,0);}
.m20_c00074{transform:matrix(0.198807,0.004374,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198807,0.004374,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198807,0.004374,-0.005499,0.249940,0,0);}
.mbc_c00074{transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);}
.mca_c00074{transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);}
.m75_c00074{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);}
.m26_c00074{transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);}
.m46_c00074{transform:matrix(0.201756,0.004439,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201756,0.004439,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201756,0.004439,-0.005499,0.249940,0,0);}
.m77_c00074{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);}
.m95_c00074{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);}
.m3c_c00074{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);}
.m29_c00074{transform:matrix(0.203901,0.004486,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203901,0.004486,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203901,0.004486,-0.005499,0.249940,0,0);}
.m39_c00074{transform:matrix(0.204041,0.004489,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204041,0.004489,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204041,0.004489,-0.005499,0.249940,0,0);}
.m2e_c00074{transform:matrix(0.204261,0.004494,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204261,0.004494,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204261,0.004494,-0.005499,0.249940,0,0);}
.m3b_c00074{transform:matrix(0.204266,0.004494,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204266,0.004494,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204266,0.004494,-0.005499,0.249940,0,0);}
.m6c_c00074{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);}
.m23_c00074{transform:matrix(0.204790,0.004505,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204790,0.004505,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204790,0.004505,-0.005499,0.249940,0,0);}
.mc_c00074{transform:matrix(0.204960,0.004304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204960,0.004304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204960,0.004304,-0.005249,0.249945,0,0);}
.m3_c00074{transform:matrix(0.205891,0.004735,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205891,0.004735,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205891,0.004735,-0.005748,0.249934,0,0);}
.mae_c00074{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);}
.m10_c00074{transform:matrix(0.206345,0.004333,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206345,0.004333,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206345,0.004333,-0.005249,0.249945,0,0);}
.m59_c00074{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);}
.m24_c00074{transform:matrix(0.207065,0.004555,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207065,0.004555,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207065,0.004555,-0.005499,0.249940,0,0);}
.m55_c00074{transform:matrix(0.207219,0.005595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207219,0.005595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207219,0.005595,-0.006748,0.249909,0,0);}
.m30_c00074{transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);}
.mc3_c00074{transform:matrix(0.207625,0.005191,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207625,0.005191,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207625,0.005191,-0.006248,0.249922,0,0);}
.m41_c00074{transform:matrix(0.207750,0.004570,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207750,0.004570,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207750,0.004570,-0.005499,0.249940,0,0);}
.m5b_c00074{transform:matrix(0.207839,0.005612,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207839,0.005612,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207839,0.005612,-0.006748,0.249909,0,0);}
.m40_c00074{transform:matrix(0.208465,0.004586,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208465,0.004586,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208465,0.004586,-0.005499,0.249940,0,0);}
.m64_c00074{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);}
.mcc_c00074{transform:matrix(0.210394,0.005260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210394,0.005260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210394,0.005260,-0.006248,0.249922,0,0);}
.m81_c00074{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);}
.m62_c00074{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);}
.mc1_c00074{transform:matrix(0.211064,0.005277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211064,0.005277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211064,0.005277,-0.006248,0.249922,0,0);}
.md9_c00074{transform:matrix(0.211536,0.006135,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211536,0.006135,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211536,0.006135,-0.007247,0.249895,0,0);}
.m58_c00074{transform:matrix(0.211993,0.005724,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211993,0.005724,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211993,0.005724,-0.006748,0.249909,0,0);}
.m25_c00074{transform:matrix(0.212254,0.004670,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212254,0.004670,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212254,0.004670,-0.005499,0.249940,0,0);}
.m84_c00074{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);}
.m28_c00074{transform:matrix(0.214048,0.004709,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214048,0.004709,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214048,0.004709,-0.005499,0.249940,0,0);}
.m34_c00074{transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);}
.md6_c00074{transform:matrix(0.214595,0.006223,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214595,0.006223,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214595,0.006223,-0.007247,0.249895,0,0);}
.m22_c00074{transform:matrix(0.214698,0.004723,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214698,0.004723,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214698,0.004723,-0.005499,0.249940,0,0);}
.mcf_c00074{transform:matrix(0.216072,0.005402,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216072,0.005402,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216072,0.005402,-0.006248,0.249922,0,0);}
.m66_c00074{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);}
.m35_c00074{transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);}
.m9_c00074{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);}
.m3e_c00074{transform:matrix(0.218072,0.004798,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218072,0.004798,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218072,0.004798,-0.005499,0.249940,0,0);}
.mbf_c00074{transform:matrix(0.219291,0.005482,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219291,0.005482,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219291,0.005482,-0.006248,0.249922,0,0);}
.mc2_c00074{transform:matrix(0.220171,0.005504,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220171,0.005504,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220171,0.005504,-0.006248,0.249922,0,0);}
.m8e_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);}
.m96_c00074{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00074{transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);}
.m65_c00074{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);}
.me_c00074{transform:matrix(0.223881,0.004701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223881,0.004701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223881,0.004701,-0.005249,0.249945,0,0);}
.m68_c00074{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);}
.m67_c00074{transform:matrix(0.226855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226855,0.000000,0.000000,0.250000,0,0);}
.m57_c00074{transform:matrix(0.228412,0.006167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228412,0.006167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228412,0.006167,-0.006748,0.249909,0,0);}
.m9b_c00074{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);}
.m8b_c00074{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);}
.m31_c00074{transform:matrix(0.229554,0.005050,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229554,0.005050,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229554,0.005050,-0.005499,0.249940,0,0);}
.me1_c00074{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);}
.m5_c00074{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);}
.mb5_c00074{transform:matrix(0.231073,0.005777,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231073,0.005777,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231073,0.005777,-0.006248,0.249922,0,0);}
.mcb_c00074{transform:matrix(0.232977,0.005824,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232977,0.005824,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232977,0.005824,-0.006248,0.249922,0,0);}
.m73_c00074{transform:matrix(0.234070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234070,0.000000,0.000000,0.250000,0,0);}
.m94_c00074{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.mdb_c00074{transform:matrix(0.234576,0.006803,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234576,0.006803,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234576,0.006803,-0.007247,0.249895,0,0);}
.mc0_c00074{transform:matrix(0.235666,0.005892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235666,0.005892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235666,0.005892,-0.006248,0.249922,0,0);}
.ma6_c00074{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);}
.m17_c00074{transform:matrix(0.239447,0.004549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239447,0.004549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239447,0.004549,-0.004749,0.249955,0,0);}
.m5a_c00074{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);}
.mdf_c00074{transform:matrix(0.246611,0.007152,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246611,0.007152,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246611,0.007152,-0.007247,0.249895,0,0);}
.m32_c00074{transform:matrix(0.246840,0.005430,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246840,0.005430,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246840,0.005430,-0.005499,0.249940,0,0);}
.m7e_c00074{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);}
.m8a_c00074{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);}
.mb2_c00074{transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);}
.m9a_c00074{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);}
.m0_c00074{transform:matrix(0.258892,0.005955,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258892,0.005955,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258892,0.005955,-0.005748,0.249934,0,0);}
.m36_c00074{transform:matrix(0.262716,0.005780,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262716,0.005780,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262716,0.005780,-0.005499,0.249940,0,0);}
.mbd_c00074{transform:matrix(0.263608,0.006590,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263608,0.006590,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263608,0.006590,-0.006248,0.249922,0,0);}
.mb0_c00074{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00074{transform:matrix(0.267830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267830,0.000000,0.000000,0.250000,0,0);}
.mdd_c00074{transform:matrix(0.271436,0.007872,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271436,0.007872,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271436,0.007872,-0.007247,0.249895,0,0);}
.m93_c00074{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);}
.m8_c00074{transform:matrix(0.273360,0.005741,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273360,0.005741,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273360,0.005741,-0.005249,0.249945,0,0);}
.mc8_c00074{transform:matrix(0.275934,0.006898,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275934,0.006898,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275934,0.006898,-0.006248,0.249922,0,0);}
.me5_c00074{transform:matrix(0.279757,0.008113,-0.007247,0.249895,0,0);-ms-transform:matrix(0.279757,0.008113,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.279757,0.008113,-0.007247,0.249895,0,0);}
.m1_c00074{transform:matrix(0.300456,0.006910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.300456,0.006910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.300456,0.006910,-0.005748,0.249934,0,0);}
.m88_c00074{transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00074{transform:matrix(0.304562,0.008832,-0.007247,0.249895,0,0);-ms-transform:matrix(0.304562,0.008832,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.304562,0.008832,-0.007247,0.249895,0,0);}
.m13_c00074{transform:matrix(0.323494,0.006793,-0.005249,0.249945,0,0);-ms-transform:matrix(0.323494,0.006793,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.323494,0.006793,-0.005249,0.249945,0,0);}
.m14_c00074{transform:matrix(0.324014,0.006804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.324014,0.006804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.324014,0.006804,-0.005249,0.249945,0,0);}
.md0_c00074{transform:matrix(0.333466,0.008337,-0.006248,0.249922,0,0);-ms-transform:matrix(0.333466,0.008337,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.333466,0.008337,-0.006248,0.249922,0,0);}
.m15_c00074{transform:matrix(0.353241,0.006712,-0.004749,0.249955,0,0);-ms-transform:matrix(0.353241,0.006712,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.353241,0.006712,-0.004749,0.249955,0,0);}
.me6_c00074{transform:matrix(0.354631,0.010284,-0.007247,0.249895,0,0);-ms-transform:matrix(0.354631,0.010284,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.354631,0.010284,-0.007247,0.249895,0,0);}
.maa_c00074{transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360530,0.000000,0.000000,0.250000,0,0);}
.ma1_c00074{transform:matrix(0.362175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362175,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.365524,0.006945,-0.004749,0.249955,0,0);-ms-transform:matrix(0.365524,0.006945,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.365524,0.006945,-0.004749,0.249955,0,0);}
.mf_c00074{transform:matrix(0.373173,0.007837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.373173,0.007837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.373173,0.007837,-0.005249,0.249945,0,0);}
.m60_c00074{transform:matrix(0.389090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389090,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.396133,0.008319,-0.005249,0.249945,0,0);-ms-transform:matrix(0.396133,0.008319,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.396133,0.008319,-0.005249,0.249945,0,0);}
.mb3_c00074{transform:matrix(0.396490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396490,0.000000,0.000000,0.250000,0,0);}
.m43_c00074{transform:matrix(0.409471,0.009008,-0.005499,0.249940,0,0);-ms-transform:matrix(0.409471,0.009008,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.409471,0.009008,-0.005499,0.249940,0,0);}
.me4_c00074{transform:matrix(0.412861,0.011973,-0.007247,0.249895,0,0);-ms-transform:matrix(0.412861,0.011973,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.412861,0.011973,-0.007247,0.249895,0,0);}
.m4d_c00074{transform:matrix(0.418844,0.009215,-0.005499,0.249940,0,0);-ms-transform:matrix(0.418844,0.009215,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.418844,0.009215,-0.005499,0.249940,0,0);}
.m5e_c00074{transform:matrix(0.426150,0.011506,-0.006748,0.249909,0,0);-ms-transform:matrix(0.426150,0.011506,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.426150,0.011506,-0.006748,0.249909,0,0);}
.m92_c00074{transform:matrix(0.427040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427040,0.000000,0.000000,0.250000,0,0);}
.m6b_c00074{transform:matrix(0.431470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00074{transform:matrix(0.442682,0.011067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.442682,0.011067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.442682,0.011067,-0.006248,0.249922,0,0);}
.m7_c00074{transform:matrix(0.458319,0.009625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.458319,0.009625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.458319,0.009625,-0.005249,0.249945,0,0);}
.m4e_c00074{transform:matrix(0.464538,0.010220,-0.005499,0.249940,0,0);-ms-transform:matrix(0.464538,0.010220,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.464538,0.010220,-0.005499,0.249940,0,0);}
.m5d_c00074{transform:matrix(0.469229,0.012669,-0.006748,0.249909,0,0);-ms-transform:matrix(0.469229,0.012669,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.469229,0.012669,-0.006748,0.249909,0,0);}
.m91_c00074{transform:matrix(0.477590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477590,0.000000,0.000000,0.250000,0,0);}
.m4f_c00074{transform:matrix(0.479539,0.010550,-0.005499,0.249940,0,0);-ms-transform:matrix(0.479539,0.010550,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.479539,0.010550,-0.005499,0.249940,0,0);}
.ma5_c00074{transform:matrix(0.502465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502465,0.000000,0.000000,0.250000,0,0);}
.md8_c00074{transform:matrix(0.507402,0.014715,-0.007247,0.249895,0,0);-ms-transform:matrix(0.507402,0.014715,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.507402,0.014715,-0.007247,0.249895,0,0);}
.m5f_c00074{transform:matrix(0.515387,0.013915,-0.006748,0.249909,0,0);-ms-transform:matrix(0.515387,0.013915,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.515387,0.013915,-0.006748,0.249909,0,0);}
.m11_c00074{transform:matrix(0.569959,0.011969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.569959,0.011969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.569959,0.011969,-0.005249,0.249945,0,0);}
.m53_c00074{transform:matrix(0.578549,0.015621,-0.006748,0.249909,0,0);-ms-transform:matrix(0.578549,0.015621,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.578549,0.015621,-0.006748,0.249909,0,0);}
.m4_c00074{transform:matrix(0.611973,0.014075,-0.005748,0.249934,0,0);-ms-transform:matrix(0.611973,0.014075,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.611973,0.014075,-0.005748,0.249934,0,0);}
.m56_c00074{transform:matrix(0.624547,0.016863,-0.006748,0.249909,0,0);-ms-transform:matrix(0.624547,0.016863,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.624547,0.016863,-0.006748,0.249909,0,0);}
.mde_c00074{transform:matrix(0.675666,0.019594,-0.007247,0.249895,0,0);-ms-transform:matrix(0.675666,0.019594,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.675666,0.019594,-0.007247,0.249895,0,0);}
.m98_c00074{transform:matrix(0.829015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829015,0.000000,0.000000,0.250000,0,0);}
.m54_c00074{transform:matrix(0.916556,0.024747,-0.006748,0.249909,0,0);-ms-transform:matrix(0.916556,0.024747,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.916556,0.024747,-0.006748,0.249909,0,0);}
.mb1_c00074{transform:matrix(0.941990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941990,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(1.161230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.161230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.161230,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;}
.fs13_c00074{font-size:63.019684px;}
.fs1_c00074{font-size:64.050000px;}
.fsa_c00074{font-size:64.073342px;}
.fs7_c00074{font-size:66.166006px;}
.fsb_c00074{font-size:67.224490px;}
.fs5_c00074{font-size:68.266515px;}
.fs2_c00074{font-size:69.315279px;}
.fse_c00074{font-size:70.350000px;}
.fs6_c00074{font-size:70.367023px;}
.fs11_c00074{font-size:71.400000px;}
.fs9_c00074{font-size:71.417277px;}
.fs12_c00074{font-size:71.422309px;}
.fs15_c00074{font-size:71.430017px;}
.fsc_c00074{font-size:72.450000px;}
.fs8_c00074{font-size:72.467531px;}
.fs4_c00074{font-size:73.513266px;}
.fs10_c00074{font-size:74.550000px;}
.fsd_c00074{font-size:75.600000px;}
.fs14_c00074{font-size:78.783107px;}
.fs3_c00074{font-size:92.420372px;}
.fsf_c00074{font-size:103.950000px;}
.fs0_c00074{font-size:127.083600px;}
.y0_c00074{bottom:0.000000px;}
.ye7_c00074{bottom:110.625201px;}
.ye6_c00074{bottom:112.595490px;}
.ye5_c00074{bottom:115.358088px;}
.ye4_c00074{bottom:117.250555px;}
.ye3_c00074{bottom:120.367983px;}
.ye2_c00074{bottom:121.581807px;}
.ye1_c00074{bottom:123.175299px;}
.ye0_c00074{bottom:123.957951px;}
.ydf_c00074{bottom:124.811856px;}
.yde_c00074{bottom:133.493067px;}
.ydd_c00074{bottom:136.068267px;}
.ydc_c00074{bottom:137.424554px;}
.ydb_c00074{bottom:137.618651px;}
.yda_c00074{bottom:139.279481px;}
.yd9_c00074{bottom:140.252837px;}
.yd8_c00074{bottom:140.539937px;}
.yd7_c00074{bottom:141.957384px;}
.yd6_c00074{bottom:142.988247px;}
.yd5_c00074{bottom:144.793845px;}
.yd4_c00074{bottom:146.896852px;}
.yd3_c00074{bottom:148.236000px;}
.yd1_c00074{bottom:183.628388px;}
.yd2_c00074{bottom:183.647437px;}
.yd0_c00074{bottom:185.241825px;}
.ycf_c00074{bottom:185.764125px;}
.yce_c00074{bottom:187.057350px;}
.ycd_c00074{bottom:187.651012px;}
.ycc_c00074{bottom:188.954212px;}
.ycb_c00074{bottom:190.338525px;}
.yca_c00074{bottom:191.013300px;}
.yc9_c00074{bottom:191.967787px;}
.yc8_c00074{bottom:206.854012px;}
.yc7_c00074{bottom:207.870937px;}
.yc6_c00074{bottom:208.785525px;}
.yc5_c00074{bottom:210.089513px;}
.yc4_c00074{bottom:212.568675px;}
.yc3_c00074{bottom:213.651000px;}
.yc2_c00074{bottom:214.597200px;}
.yc1_c00074{bottom:215.442188px;}
.yc0_c00074{bottom:216.007387px;}
.ybf_c00074{bottom:227.268300px;}
.ybe_c00074{bottom:228.243375px;}
.ybd_c00074{bottom:229.323863px;}
.ybc_c00074{bottom:230.161275px;}
.ybb_c00074{bottom:231.477787px;}
.yba_c00074{bottom:232.298513px;}
.yb9_c00074{bottom:234.049575px;}
.yb8_c00074{bottom:234.644062px;}
.yb7_c00074{bottom:235.451625px;}
.yb6_c00074{bottom:237.339000px;}
.yb5_c00074{bottom:248.077500px;}
.yb4_c00074{bottom:255.973500px;}
.yb3_c00074{bottom:259.609500px;}
.yb2_c00074{bottom:271.876500px;}
.yb1_c00074{bottom:273.081000px;}
.yb0_c00074{bottom:274.095000px;}
.yaf_c00074{bottom:275.745000px;}
.yae_c00074{bottom:276.582000px;}
.yad_c00074{bottom:277.303500px;}
.yac_c00074{bottom:278.061000px;}
.yab_c00074{bottom:278.890500px;}
.yaa_c00074{bottom:280.134000px;}
.ya9_c00074{bottom:280.834500px;}
.ya8_c00074{bottom:282.208500px;}
.ya7_c00074{bottom:282.973500px;}
.ya6_c00074{bottom:294.715500px;}
.ya5_c00074{bottom:297.046500px;}
.ya4_c00074{bottom:298.203000px;}
.ya3_c00074{bottom:298.804500px;}
.ya2_c00074{bottom:299.004000px;}
.ya1_c00074{bottom:299.790000px;}
.ya0_c00074{bottom:300.723000px;}
.y9f_c00074{bottom:301.702500px;}
.y9e_c00074{bottom:302.869500px;}
.y9d_c00074{bottom:303.540000px;}
.y9c_c00074{bottom:305.082000px;}
.y9b_c00074{bottom:305.883000px;}
.y9a_c00074{bottom:306.468000px;}
.y99_c00074{bottom:317.482500px;}
.y98_c00074{bottom:319.000500px;}
.y97_c00074{bottom:319.584000px;}
.y96_c00074{bottom:320.896500px;}
.y95_c00074{bottom:321.759000px;}
.y94_c00074{bottom:322.662000px;}
.y93_c00074{bottom:340.057500px;}
.y92_c00074{bottom:347.505000px;}
.y91_c00074{bottom:363.261000px;}
.y90_c00074{bottom:368.652000px;}
.y8f_c00074{bottom:369.985500px;}
.y8e_c00074{bottom:371.139000px;}
.y8d_c00074{bottom:371.748000px;}
.y8c_c00074{bottom:372.595500px;}
.y8b_c00074{bottom:373.650000px;}
.y8a_c00074{bottom:374.503500px;}
.y89_c00074{bottom:390.573000px;}
.y88_c00074{bottom:392.691000px;}
.y87_c00074{bottom:408.655500px;}
.y86_c00074{bottom:412.849500px;}
.y85_c00074{bottom:413.536500px;}
.y84_c00074{bottom:415.162500px;}
.y83_c00074{bottom:415.612500px;}
.y82_c00074{bottom:417.099000px;}
.y81_c00074{bottom:417.828000px;}
.y80_c00074{bottom:419.502000px;}
.y7f_c00074{bottom:420.130500px;}
.y7e_c00074{bottom:431.278500px;}
.y7d_c00074{bottom:435.255000px;}
.y7c_c00074{bottom:435.844500px;}
.y7b_c00074{bottom:436.434000px;}
.y7a_c00074{bottom:437.137500px;}
.y79_c00074{bottom:438.493500px;}
.y78_c00074{bottom:440.010000px;}
.y77_c00074{bottom:441.333000px;}
.y76_c00074{bottom:442.206000px;}
.y75_c00074{bottom:442.809000px;}
.y74_c00074{bottom:456.717000px;}
.y73_c00074{bottom:458.812500px;}
.y72_c00074{bottom:459.282000px;}
.y71_c00074{bottom:460.159500px;}
.y70_c00074{bottom:461.014500px;}
.y6f_c00074{bottom:461.785500px;}
.y6e_c00074{bottom:463.707000px;}
.y6d_c00074{bottom:464.773500px;}
.y6c_c00074{bottom:465.489000px;}
.y6b_c00074{bottom:485.476500px;}
.y6a_c00074{bottom:504.048000px;}
.y69_c00074{bottom:504.547500px;}
.y68_c00074{bottom:504.955500px;}
.y67_c00074{bottom:506.095500px;}
.y66_c00074{bottom:506.515500px;}
.y65_c00074{bottom:507.373500px;}
.y64_c00074{bottom:507.919500px;}
.y63_c00074{bottom:508.723500px;}
.y62_c00074{bottom:509.257500px;}
.y61_c00074{bottom:510.306000px;}
.y60_c00074{bottom:528.381000px;}
.y5f_c00074{bottom:548.241855px;}
.y5e_c00074{bottom:549.415707px;}
.y5d_c00074{bottom:549.633718px;}
.y5c_c00074{bottom:550.481424px;}
.y5b_c00074{bottom:551.297985px;}
.y5a_c00074{bottom:551.884101px;}
.y59_c00074{bottom:553.788249px;}
.y58_c00074{bottom:555.976424px;}
.y57_c00074{bottom:557.010834px;}
.y56_c00074{bottom:572.183638px;}
.y55_c00074{bottom:573.766378px;}
.y54_c00074{bottom:578.734554px;}
.y53_c00074{bottom:579.436500px;}
.y52_c00074{bottom:615.661713px;}
.y51_c00074{bottom:616.438638px;}
.y50_c00074{bottom:618.963693px;}
.y4f_c00074{bottom:620.389122px;}
.y4e_c00074{bottom:621.144336px;}
.y4d_c00074{bottom:621.724011px;}
.y4c_c00074{bottom:623.162952px;}
.y4b_c00074{bottom:638.144016px;}
.y4a_c00074{bottom:638.886582px;}
.y49_c00074{bottom:640.264992px;}
.y48_c00074{bottom:640.722273px;}
.y47_c00074{bottom:642.493911px;}
.y46_c00074{bottom:644.106522px;}
.y45_c00074{bottom:645.036000px;}
.y43_c00074{bottom:658.171866px;}
.y44_c00074{bottom:658.172475px;}
.y42_c00074{bottom:680.476509px;}
.y41_c00074{bottom:681.060072px;}
.y40_c00074{bottom:682.051398px;}
.y3f_c00074{bottom:682.983492px;}
.y3e_c00074{bottom:684.427608px;}
.y3d_c00074{bottom:684.949332px;}
.y3c_c00074{bottom:686.338176px;}
.y3b_c00074{bottom:687.141180px;}
.y3a_c00074{bottom:702.135123px;}
.y39_c00074{bottom:703.191885px;}
.y38_c00074{bottom:703.830057px;}
.y37_c00074{bottom:705.324942px;}
.y36_c00074{bottom:705.861192px;}
.y35_c00074{bottom:707.449518px;}
.y34_c00074{bottom:709.008198px;}
.y33_c00074{bottom:709.840314px;}
.y32_c00074{bottom:710.636910px;}
.y31_c00074{bottom:724.301745px;}
.y30_c00074{bottom:725.369250px;}
.y2f_c00074{bottom:726.132069px;}
.y2e_c00074{bottom:727.434852px;}
.y2d_c00074{bottom:728.609973px;}
.y2c_c00074{bottom:730.000476px;}
.y2b_c00074{bottom:731.323947px;}
.y2a_c00074{bottom:732.225267px;}
.y29_c00074{bottom:733.321923px;}
.y28_c00074{bottom:746.301423px;}
.y27_c00074{bottom:747.449922px;}
.y26_c00074{bottom:748.219449px;}
.y25_c00074{bottom:748.613865px;}
.y24_c00074{bottom:749.938683px;}
.y23_c00074{bottom:750.851793px;}
.y22_c00074{bottom:752.802654px;}
.y21_c00074{bottom:753.281583px;}
.y20_c00074{bottom:754.656000px;}
.y1f_c00074{bottom:768.366187px;}
.y1e_c00074{bottom:771.894687px;}
.y1d_c00074{bottom:772.592424px;}
.y1c_c00074{bottom:773.916106px;}
.y1b_c00074{bottom:774.727273px;}
.y1a_c00074{bottom:775.383600px;}
.y19_c00074{bottom:775.763248px;}
.y18_c00074{bottom:776.454202px;}
.y17_c00074{bottom:777.230343px;}
.y16_c00074{bottom:777.892768px;}
.y15_c00074{bottom:778.957500px;}
.y14_c00074{bottom:791.815311px;}
.y13_c00074{bottom:798.772515px;}
.y12_c00074{bottom:803.797114px;}
.y11_c00074{bottom:812.961966px;}
.y10_c00074{bottom:816.670713px;}
.yf_c00074{bottom:817.084654px;}
.ye_c00074{bottom:818.258218px;}
.yd_c00074{bottom:818.825880px;}
.yc_c00074{bottom:820.398612px;}
.yb_c00074{bottom:820.988292px;}
.ya_c00074{bottom:821.806504px;}
.y9_c00074{bottom:822.978273px;}
.y8_c00074{bottom:823.408752px;}
.y7_c00074{bottom:824.857500px;}
.y6_c00074{bottom:840.636000px;}
.y5_c00074{bottom:845.421444px;}
.y4_c00074{bottom:847.543919px;}
.y3_c00074{bottom:849.295691px;}
.y2_c00074{bottom:854.165607px;}
.y1_c00074{bottom:857.263500px;}
.h15_c00074{height:63.019684px;}
.h3_c00074{height:64.050000px;}
.hc_c00074{height:64.073342px;}
.h9_c00074{height:66.166006px;}
.hd_c00074{height:67.224490px;}
.h7_c00074{height:68.266515px;}
.h4_c00074{height:69.315279px;}
.h10_c00074{height:70.350000px;}
.h8_c00074{height:70.367023px;}
.h13_c00074{height:71.400000px;}
.hb_c00074{height:71.417277px;}
.h14_c00074{height:71.422309px;}
.h17_c00074{height:71.430017px;}
.he_c00074{height:72.450000px;}
.ha_c00074{height:72.467531px;}
.h6_c00074{height:73.513266px;}
.h12_c00074{height:74.550000px;}
.hf_c00074{height:75.600000px;}
.h16_c00074{height:78.783107px;}
.h5_c00074{height:92.420372px;}
.h11_c00074{height:103.950000px;}
.h2_c00074{height:127.083600px;}
.h1_c00074{height:1005.000000px;}
.h0_c00074{height:1005.150000px;}
.w0_c00074{width:705.450000px;}
.w1_c00074{width:705.750000px;}
.x0_c00074{left:0.000000px;}
.x15_c00074{left:43.329000px;}
.x1_c00074{left:46.660500px;}
.x6_c00074{left:47.790000px;}
.x12_c00074{left:55.066146px;}
.x93_c00074{left:70.251000px;}
.x97_c00074{left:88.523625px;}
.x76_c00074{left:96.268500px;}
.x16_c00074{left:99.367500px;}
.x8_c00074{left:115.617000px;}
.x89_c00074{left:116.855738px;}
.x6d_c00074{left:118.504500px;}
.x77_c00074{left:120.619500px;}
.x4c_c00074{left:125.230500px;}
.x55_c00074{left:127.426500px;}
.x4f_c00074{left:128.485819px;}
.x40_c00074{left:130.395000px;}
.x2f_c00074{left:132.531384px;}
.x17_c00074{left:134.232000px;}
.x9_c00074{left:136.116000px;}
.x98_c00074{left:144.956625px;}
.x8a_c00074{left:148.133663px;}
.x4d_c00074{left:151.228500px;}
.x7d_c00074{left:153.040500px;}
.x6e_c00074{left:154.053000px;}
.x5a_c00074{left:155.868000px;}
.x30_c00074{left:163.146678px;}
.x38_c00074{left:166.660581px;}
.x41_c00074{left:172.644000px;}
.x18_c00074{left:175.081500px;}
.x27_c00074{left:178.284732px;}
.x2_c00074{left:181.351500px;}
.x8b_c00074{left:183.159900px;}
.x60_c00074{left:187.041000px;}
.x47_c00074{left:188.159829px;}
.xa_c00074{left:191.914500px;}
.x31_c00074{left:195.171873px;}
.x1f_c00074{left:196.378500px;}
.x6f_c00074{left:197.968500px;}
.x5b_c00074{left:200.308500px;}
.x56_c00074{left:202.836000px;}
.x7e_c00074{left:210.300000px;}
.x19_c00074{left:211.447500px;}
.x28_c00074{left:214.342356px;}
.x20_c00074{left:218.148000px;}
.x66_c00074{left:220.939500px;}
.x8c_c00074{left:223.270913px;}
.x39_c00074{left:227.061261px;}
.x85_c00074{left:228.150000px;}
.xb_c00074{left:230.877000px;}
.x70_c00074{left:233.253000px;}
.x90_c00074{left:238.408875px;}
.x7f_c00074{left:239.463000px;}
.x48_c00074{left:241.605831px;}
.x42_c00074{left:245.944500px;}
.x50_c00074{left:247.840820px;}
.x3a_c00074{left:249.752766px;}
.x67_c00074{left:251.335500px;}
.x59_c00074{left:253.045500px;}
.x32_c00074{left:255.106593px;}
.xc_c00074{left:258.957000px;}
.x1a_c00074{left:265.972500px;}
.x29_c00074{left:267.269358px;}
.x72_c00074{left:268.788000px;}
.x6b_c00074{left:270.774000px;}
.x5c_c00074{left:280.344000px;}
.x3e_c00074{left:282.452238px;}
.x13_c00074{left:283.470858px;}
.x7_c00074{left:285.930000px;}
.x54_c00074{left:287.280000px;}
.x80_c00074{left:291.292500px;}
.x78_c00074{left:294.753000px;}
.x49_c00074{left:298.621569px;}
.x61_c00074{left:305.368500px;}
.x21_c00074{left:306.823500px;}
.x1b_c00074{left:308.665500px;}
.x3b_c00074{left:312.529380px;}
.x8d_c00074{left:315.112838px;}
.x33_c00074{left:316.184214px;}
.x51_c00074{left:318.364819px;}
.x2a_c00074{left:322.902195px;}
.x43_c00074{left:326.473500px;}
.x57_c00074{left:328.038000px;}
.x68_c00074{left:332.077500px;}
.xd_c00074{left:333.849000px;}
.x4e_c00074{left:335.235000px;}
.x34_c00074{left:336.807399px;}
.x52_c00074{left:340.072820px;}
.x94_c00074{left:345.532500px;}
.x44_c00074{left:347.259000px;}
.x22_c00074{left:348.328500px;}
.x3c_c00074{left:353.055489px;}
.x86_c00074{left:354.801000px;}
.x81_c00074{left:357.444000px;}
.x6c_c00074{left:359.032500px;}
.xe_c00074{left:360.880500px;}
.x62_c00074{left:361.882500px;}
.x3f_c00074{left:364.282338px;}
.x91_c00074{left:366.012375px;}
.x2b_c00074{left:369.904593px;}
.x79_c00074{left:374.467500px;}
.x1c_c00074{left:378.333000px;}
.x58_c00074{left:382.312500px;}
.x5d_c00074{left:384.690000px;}
.x82_c00074{left:387.501000px;}
.x63_c00074{left:391.179000px;}
.x3_c00074{left:393.087000px;}
.x35_c00074{left:394.319850px;}
.x3d_c00074{left:396.137532px;}
.x8e_c00074{left:397.311750px;}
.x4a_c00074{left:399.617403px;}
.x53_c00074{left:401.712320px;}
.x5e_c00074{left:404.274000px;}
.x7a_c00074{left:407.200500px;}
.x23_c00074{left:408.547500px;}
.x45_c00074{left:409.914000px;}
.x1d_c00074{left:415.056000px;}
.xf_c00074{left:416.764500px;}
.x36_c00074{left:418.893705px;}
.x2c_c00074{left:422.027661px;}
.x74_c00074{left:424.296000px;}
.x24_c00074{left:426.475500px;}
.x69_c00074{left:428.464500px;}
.x4b_c00074{left:430.702857px;}
.x8f_c00074{left:434.986875px;}
.x10_c00074{left:436.476000px;}
.x64_c00074{left:440.343000px;}
.x46_c00074{left:443.667000px;}
.x92_c00074{left:451.441875px;}
.x2d_c00074{left:452.540148px;}
.x37_c00074{left:459.561141px;}
.x25_c00074{left:461.454000px;}
.x4_c00074{left:469.251000px;}
.x87_c00074{left:484.177500px;}
.x75_c00074{left:486.808500px;}
.x7b_c00074{left:488.773500px;}
.x95_c00074{left:489.828000px;}
.x5f_c00074{left:491.577000px;}
.x2e_c00074{left:495.264843px;}
.x99_c00074{left:509.777625px;}
.x26_c00074{left:513.658500px;}
.x88_c00074{left:523.180500px;}
.x83_c00074{left:533.334000px;}
.x5_c00074{left:561.532500px;}
.x96_c00074{left:578.628000px;}
.x84_c00074{left:583.522500px;}
.x7c_c00074{left:585.870000px;}
.x71_c00074{left:586.896000px;}
.x73_c00074{left:592.620000px;}
.x14_c00074{left:599.688211px;}
.x1e_c00074{left:600.766500px;}
.x6a_c00074{left:603.192000px;}
.x65_c00074{left:606.046500px;}
.x11_c00074{left:613.083000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
.fs13_c00074{font-size:56.017497pt;}
.fs1_c00074{font-size:56.933333pt;}
.fsa_c00074{font-size:56.954082pt;}
.fs7_c00074{font-size:58.814228pt;}
.fsb_c00074{font-size:59.755102pt;}
.fs5_c00074{font-size:60.681346pt;}
.fs2_c00074{font-size:61.613581pt;}
.fse_c00074{font-size:62.533333pt;}
.fs6_c00074{font-size:62.548465pt;}
.fs11_c00074{font-size:63.466667pt;}
.fs9_c00074{font-size:63.482024pt;}
.fs12_c00074{font-size:63.486497pt;}
.fs15_c00074{font-size:63.493349pt;}
.fsc_c00074{font-size:64.400000pt;}
.fs8_c00074{font-size:64.415583pt;}
.fs4_c00074{font-size:65.345125pt;}
.fs10_c00074{font-size:66.266667pt;}
.fsd_c00074{font-size:67.200000pt;}
.fs14_c00074{font-size:70.029429pt;}
.fs3_c00074{font-size:82.151442pt;}
.fsf_c00074{font-size:92.400000pt;}
.fs0_c00074{font-size:112.963200pt;}
.y0_c00074{bottom:0.000000pt;}
.ye7_c00074{bottom:98.333512pt;}
.ye6_c00074{bottom:100.084880pt;}
.ye5_c00074{bottom:102.540523pt;}
.ye4_c00074{bottom:104.222716pt;}
.ye3_c00074{bottom:106.993763pt;}
.ye2_c00074{bottom:108.072717pt;}
.ye1_c00074{bottom:109.489155pt;}
.ye0_c00074{bottom:110.184845pt;}
.ydf_c00074{bottom:110.943872pt;}
.yde_c00074{bottom:118.660504pt;}
.ydd_c00074{bottom:120.949571pt;}
.ydc_c00074{bottom:122.155159pt;}
.ydb_c00074{bottom:122.327689pt;}
.yda_c00074{bottom:123.803983pt;}
.yd9_c00074{bottom:124.669188pt;}
.yd8_c00074{bottom:124.924388pt;}
.yd7_c00074{bottom:126.184341pt;}
.yd6_c00074{bottom:127.100664pt;}
.yd5_c00074{bottom:128.705640pt;}
.yd4_c00074{bottom:130.574980pt;}
.yd3_c00074{bottom:131.765333pt;}
.yd1_c00074{bottom:163.225233pt;}
.yd2_c00074{bottom:163.242167pt;}
.yd0_c00074{bottom:164.659400pt;}
.ycf_c00074{bottom:165.123667pt;}
.yce_c00074{bottom:166.273200pt;}
.ycd_c00074{bottom:166.800900pt;}
.ycc_c00074{bottom:167.959300pt;}
.ycb_c00074{bottom:169.189800pt;}
.yca_c00074{bottom:169.789600pt;}
.yc9_c00074{bottom:170.638033pt;}
.yc8_c00074{bottom:183.870233pt;}
.yc7_c00074{bottom:184.774167pt;}
.yc6_c00074{bottom:185.587133pt;}
.yc5_c00074{bottom:186.746233pt;}
.yc4_c00074{bottom:188.949933pt;}
.yc3_c00074{bottom:189.912000pt;}
.yc2_c00074{bottom:190.753067pt;}
.yc1_c00074{bottom:191.504167pt;}
.yc0_c00074{bottom:192.006567pt;}
.ybf_c00074{bottom:202.016267pt;}
.ybe_c00074{bottom:202.883000pt;}
.ybd_c00074{bottom:203.843433pt;}
.ybc_c00074{bottom:204.587800pt;}
.ybb_c00074{bottom:205.758033pt;}
.yba_c00074{bottom:206.487567pt;}
.yb9_c00074{bottom:208.044067pt;}
.yb8_c00074{bottom:208.572500pt;}
.yb7_c00074{bottom:209.290333pt;}
.yb6_c00074{bottom:210.968000pt;}
.yb5_c00074{bottom:220.513333pt;}
.yb4_c00074{bottom:227.532000pt;}
.yb3_c00074{bottom:230.764000pt;}
.yb2_c00074{bottom:241.668000pt;}
.yb1_c00074{bottom:242.738667pt;}
.yb0_c00074{bottom:243.640000pt;}
.yaf_c00074{bottom:245.106667pt;}
.yae_c00074{bottom:245.850667pt;}
.yad_c00074{bottom:246.492000pt;}
.yac_c00074{bottom:247.165333pt;}
.yab_c00074{bottom:247.902667pt;}
.yaa_c00074{bottom:249.008000pt;}
.ya9_c00074{bottom:249.630667pt;}
.ya8_c00074{bottom:250.852000pt;}
.ya7_c00074{bottom:251.532000pt;}
.ya6_c00074{bottom:261.969333pt;}
.ya5_c00074{bottom:264.041333pt;}
.ya4_c00074{bottom:265.069333pt;}
.ya3_c00074{bottom:265.604000pt;}
.ya2_c00074{bottom:265.781333pt;}
.ya1_c00074{bottom:266.480000pt;}
.ya0_c00074{bottom:267.309333pt;}
.y9f_c00074{bottom:268.180000pt;}
.y9e_c00074{bottom:269.217333pt;}
.y9d_c00074{bottom:269.813333pt;}
.y9c_c00074{bottom:271.184000pt;}
.y9b_c00074{bottom:271.896000pt;}
.y9a_c00074{bottom:272.416000pt;}
.y99_c00074{bottom:282.206667pt;}
.y98_c00074{bottom:283.556000pt;}
.y97_c00074{bottom:284.074667pt;}
.y96_c00074{bottom:285.241333pt;}
.y95_c00074{bottom:286.008000pt;}
.y94_c00074{bottom:286.810667pt;}
.y93_c00074{bottom:302.273333pt;}
.y92_c00074{bottom:308.893333pt;}
.y91_c00074{bottom:322.898667pt;}
.y90_c00074{bottom:327.690667pt;}
.y8f_c00074{bottom:328.876000pt;}
.y8e_c00074{bottom:329.901333pt;}
.y8d_c00074{bottom:330.442667pt;}
.y8c_c00074{bottom:331.196000pt;}
.y8b_c00074{bottom:332.133333pt;}
.y8a_c00074{bottom:332.892000pt;}
.y89_c00074{bottom:347.176000pt;}
.y88_c00074{bottom:349.058667pt;}
.y87_c00074{bottom:363.249333pt;}
.y86_c00074{bottom:366.977333pt;}
.y85_c00074{bottom:367.588000pt;}
.y84_c00074{bottom:369.033333pt;}
.y83_c00074{bottom:369.433333pt;}
.y82_c00074{bottom:370.754667pt;}
.y81_c00074{bottom:371.402667pt;}
.y80_c00074{bottom:372.890667pt;}
.y7f_c00074{bottom:373.449333pt;}
.y7e_c00074{bottom:383.358667pt;}
.y7d_c00074{bottom:386.893333pt;}
.y7c_c00074{bottom:387.417333pt;}
.y7b_c00074{bottom:387.941333pt;}
.y7a_c00074{bottom:388.566667pt;}
.y79_c00074{bottom:389.772000pt;}
.y78_c00074{bottom:391.120000pt;}
.y77_c00074{bottom:392.296000pt;}
.y76_c00074{bottom:393.072000pt;}
.y75_c00074{bottom:393.608000pt;}
.y74_c00074{bottom:405.970667pt;}
.y73_c00074{bottom:407.833333pt;}
.y72_c00074{bottom:408.250667pt;}
.y71_c00074{bottom:409.030667pt;}
.y70_c00074{bottom:409.790667pt;}
.y6f_c00074{bottom:410.476000pt;}
.y6e_c00074{bottom:412.184000pt;}
.y6d_c00074{bottom:413.132000pt;}
.y6c_c00074{bottom:413.768000pt;}
.y6b_c00074{bottom:431.534667pt;}
.y6a_c00074{bottom:448.042667pt;}
.y69_c00074{bottom:448.486667pt;}
.y68_c00074{bottom:448.849333pt;}
.y67_c00074{bottom:449.862667pt;}
.y66_c00074{bottom:450.236000pt;}
.y65_c00074{bottom:450.998667pt;}
.y64_c00074{bottom:451.484000pt;}
.y63_c00074{bottom:452.198667pt;}
.y62_c00074{bottom:452.673333pt;}
.y61_c00074{bottom:453.605333pt;}
.y60_c00074{bottom:469.672000pt;}
.y5f_c00074{bottom:487.326093pt;}
.y5e_c00074{bottom:488.369517pt;}
.y5d_c00074{bottom:488.563305pt;}
.y5c_c00074{bottom:489.316821pt;}
.y5b_c00074{bottom:490.042653pt;}
.y5a_c00074{bottom:490.563645pt;}
.y59_c00074{bottom:492.256221pt;}
.y58_c00074{bottom:494.201265pt;}
.y57_c00074{bottom:495.120741pt;}
.y56_c00074{bottom:508.607679pt;}
.y55_c00074{bottom:510.014559pt;}
.y54_c00074{bottom:514.430715pt;}
.y53_c00074{bottom:515.054667pt;}
.y52_c00074{bottom:547.254856pt;}
.y51_c00074{bottom:547.945456pt;}
.y50_c00074{bottom:550.189949pt;}
.y4f_c00074{bottom:551.456997pt;}
.y4e_c00074{bottom:552.128299pt;}
.y4d_c00074{bottom:552.643565pt;}
.y4c_c00074{bottom:553.922624pt;}
.y4b_c00074{bottom:567.239125pt;}
.y4a_c00074{bottom:567.899184pt;}
.y49_c00074{bottom:569.124437pt;}
.y48_c00074{bottom:569.530909pt;}
.y47_c00074{bottom:571.105699pt;}
.y46_c00074{bottom:572.539131pt;}
.y45_c00074{bottom:573.365333pt;}
.y43_c00074{bottom:585.041659pt;}
.y44_c00074{bottom:585.042200pt;}
.y42_c00074{bottom:604.868008pt;}
.y41_c00074{bottom:605.386731pt;}
.y40_c00074{bottom:606.267909pt;}
.y3f_c00074{bottom:607.096437pt;}
.y3e_c00074{bottom:608.380096pt;}
.y3d_c00074{bottom:608.843851pt;}
.y3c_c00074{bottom:610.078379pt;}
.y3b_c00074{bottom:610.792160pt;}
.y3a_c00074{bottom:624.120109pt;}
.y39_c00074{bottom:625.059453pt;}
.y38_c00074{bottom:625.626717pt;}
.y37_c00074{bottom:626.955504pt;}
.y36_c00074{bottom:627.432171pt;}
.y35_c00074{bottom:628.844016pt;}
.y34_c00074{bottom:630.229509pt;}
.y33_c00074{bottom:630.969168pt;}
.y32_c00074{bottom:631.677253pt;}
.y31_c00074{bottom:643.823773pt;}
.y30_c00074{bottom:644.772667pt;}
.y2f_c00074{bottom:645.450728pt;}
.y2e_c00074{bottom:646.608757pt;}
.y2d_c00074{bottom:647.653309pt;}
.y2c_c00074{bottom:648.889312pt;}
.y2b_c00074{bottom:650.065731pt;}
.y2a_c00074{bottom:650.866904pt;}
.y29_c00074{bottom:651.841709pt;}
.y28_c00074{bottom:663.379043pt;}
.y27_c00074{bottom:664.399931pt;}
.y26_c00074{bottom:665.083955pt;}
.y25_c00074{bottom:665.434547pt;}
.y24_c00074{bottom:666.612163pt;}
.y23_c00074{bottom:667.423816pt;}
.y22_c00074{bottom:669.157915pt;}
.y21_c00074{bottom:669.583629pt;}
.y20_c00074{bottom:670.805333pt;}
.y1f_c00074{bottom:682.992167pt;}
.y1e_c00074{bottom:686.128611pt;}
.y1d_c00074{bottom:686.748821pt;}
.y1c_c00074{bottom:687.925428pt;}
.y1b_c00074{bottom:688.646465pt;}
.y1a_c00074{bottom:689.229867pt;}
.y19_c00074{bottom:689.567332pt;}
.y18_c00074{bottom:690.181513pt;}
.y17_c00074{bottom:690.871416pt;}
.y16_c00074{bottom:691.460239pt;}
.y15_c00074{bottom:692.406667pt;}
.y14_c00074{bottom:703.835832pt;}
.y13_c00074{bottom:710.020013pt;}
.y12_c00074{bottom:714.486324pt;}
.y11_c00074{bottom:722.632859pt;}
.y10_c00074{bottom:725.929523pt;}
.yf_c00074{bottom:726.297471pt;}
.ye_c00074{bottom:727.340639pt;}
.yd_c00074{bottom:727.845227pt;}
.yc_c00074{bottom:729.243211pt;}
.yb_c00074{bottom:729.767371pt;}
.ya_c00074{bottom:730.494671pt;}
.y9_c00074{bottom:731.536243pt;}
.y8_c00074{bottom:731.918891pt;}
.y7_c00074{bottom:733.206667pt;}
.y6_c00074{bottom:747.232000pt;}
.y5_c00074{bottom:751.485728pt;}
.y4_c00074{bottom:753.372372pt;}
.y3_c00074{bottom:754.929503pt;}
.y2_c00074{bottom:759.258317pt;}
.y1_c00074{bottom:762.012000pt;}
.h15_c00074{height:56.017497pt;}
.h3_c00074{height:56.933333pt;}
.hc_c00074{height:56.954082pt;}
.h9_c00074{height:58.814228pt;}
.hd_c00074{height:59.755102pt;}
.h7_c00074{height:60.681346pt;}
.h4_c00074{height:61.613581pt;}
.h10_c00074{height:62.533333pt;}
.h8_c00074{height:62.548465pt;}
.h13_c00074{height:63.466667pt;}
.hb_c00074{height:63.482024pt;}
.h14_c00074{height:63.486497pt;}
.h17_c00074{height:63.493349pt;}
.he_c00074{height:64.400000pt;}
.ha_c00074{height:64.415583pt;}
.h6_c00074{height:65.345125pt;}
.h12_c00074{height:66.266667pt;}
.hf_c00074{height:67.200000pt;}
.h16_c00074{height:70.029429pt;}
.h5_c00074{height:82.151442pt;}
.h11_c00074{height:92.400000pt;}
.h2_c00074{height:112.963200pt;}
.h1_c00074{height:893.333333pt;}
.h0_c00074{height:893.466667pt;}
.w0_c00074{width:627.066667pt;}
.w1_c00074{width:627.333333pt;}
.x0_c00074{left:0.000000pt;}
.x15_c00074{left:38.514667pt;}
.x1_c00074{left:41.476000pt;}
.x6_c00074{left:42.480000pt;}
.x12_c00074{left:48.947685pt;}
.x93_c00074{left:62.445333pt;}
.x97_c00074{left:78.687667pt;}
.x76_c00074{left:85.572000pt;}
.x16_c00074{left:88.326667pt;}
.x8_c00074{left:102.770667pt;}
.x89_c00074{left:103.871767pt;}
.x6d_c00074{left:105.337333pt;}
.x77_c00074{left:107.217333pt;}
.x4c_c00074{left:111.316000pt;}
.x55_c00074{left:113.268000pt;}
.x4f_c00074{left:114.209617pt;}
.x40_c00074{left:115.906667pt;}
.x2f_c00074{left:117.805675pt;}
.x17_c00074{left:119.317333pt;}
.x9_c00074{left:120.992000pt;}
.x98_c00074{left:128.850333pt;}
.x8a_c00074{left:131.674367pt;}
.x4d_c00074{left:134.425333pt;}
.x7d_c00074{left:136.036000pt;}
.x6e_c00074{left:136.936000pt;}
.x5a_c00074{left:138.549333pt;}
.x30_c00074{left:145.019269pt;}
.x38_c00074{left:148.142739pt;}
.x41_c00074{left:153.461333pt;}
.x18_c00074{left:155.628000pt;}
.x27_c00074{left:158.475317pt;}
.x2_c00074{left:161.201333pt;}
.x8b_c00074{left:162.808800pt;}
.x60_c00074{left:166.258667pt;}
.x47_c00074{left:167.253181pt;}
.xa_c00074{left:170.590667pt;}
.x31_c00074{left:173.486109pt;}
.x1f_c00074{left:174.558667pt;}
.x6f_c00074{left:175.972000pt;}
.x5b_c00074{left:178.052000pt;}
.x56_c00074{left:180.298667pt;}
.x7e_c00074{left:186.933333pt;}
.x19_c00074{left:187.953333pt;}
.x28_c00074{left:190.526539pt;}
.x20_c00074{left:193.909333pt;}
.x66_c00074{left:196.390667pt;}
.x8c_c00074{left:198.463033pt;}
.x39_c00074{left:201.832232pt;}
.x85_c00074{left:202.800000pt;}
.xb_c00074{left:205.224000pt;}
.x70_c00074{left:207.336000pt;}
.x90_c00074{left:211.919000pt;}
.x7f_c00074{left:212.856000pt;}
.x48_c00074{left:214.760739pt;}
.x42_c00074{left:218.617333pt;}
.x50_c00074{left:220.302951pt;}
.x3a_c00074{left:222.002459pt;}
.x67_c00074{left:223.409333pt;}
.x59_c00074{left:224.929333pt;}
.x32_c00074{left:226.761416pt;}
.xc_c00074{left:230.184000pt;}
.x1a_c00074{left:236.420000pt;}
.x29_c00074{left:237.572763pt;}
.x72_c00074{left:238.922667pt;}
.x6b_c00074{left:240.688000pt;}
.x5c_c00074{left:249.194667pt;}
.x3e_c00074{left:251.068656pt;}
.x13_c00074{left:251.974096pt;}
.x7_c00074{left:254.160000pt;}
.x54_c00074{left:255.360000pt;}
.x80_c00074{left:258.926667pt;}
.x78_c00074{left:262.002667pt;}
.x49_c00074{left:265.441395pt;}
.x61_c00074{left:271.438667pt;}
.x21_c00074{left:272.732000pt;}
.x1b_c00074{left:274.369333pt;}
.x3b_c00074{left:277.803893pt;}
.x8d_c00074{left:280.100300pt;}
.x33_c00074{left:281.052635pt;}
.x51_c00074{left:282.990951pt;}
.x2a_c00074{left:287.024173pt;}
.x43_c00074{left:290.198667pt;}
.x57_c00074{left:291.589333pt;}
.x68_c00074{left:295.180000pt;}
.xd_c00074{left:296.754667pt;}
.x4e_c00074{left:297.986667pt;}
.x34_c00074{left:299.384355pt;}
.x52_c00074{left:302.286951pt;}
.x94_c00074{left:307.140000pt;}
.x44_c00074{left:308.674667pt;}
.x22_c00074{left:309.625333pt;}
.x3c_c00074{left:313.827101pt;}
.x86_c00074{left:315.378667pt;}
.x81_c00074{left:317.728000pt;}
.x6c_c00074{left:319.140000pt;}
.xe_c00074{left:320.782667pt;}
.x62_c00074{left:321.673333pt;}
.x3f_c00074{left:323.806523pt;}
.x91_c00074{left:325.344333pt;}
.x2b_c00074{left:328.804083pt;}
.x79_c00074{left:332.860000pt;}
.x1c_c00074{left:336.296000pt;}
.x58_c00074{left:339.833333pt;}
.x5d_c00074{left:341.946667pt;}
.x82_c00074{left:344.445333pt;}
.x63_c00074{left:347.714667pt;}
.x3_c00074{left:349.410667pt;}
.x35_c00074{left:350.506533pt;}
.x3d_c00074{left:352.122251pt;}
.x8e_c00074{left:353.166000pt;}
.x4a_c00074{left:355.215469pt;}
.x53_c00074{left:357.077617pt;}
.x5e_c00074{left:359.354667pt;}
.x7a_c00074{left:361.956000pt;}
.x23_c00074{left:363.153333pt;}
.x45_c00074{left:364.368000pt;}
.x1d_c00074{left:368.938667pt;}
.xf_c00074{left:370.457333pt;}
.x36_c00074{left:372.349960pt;}
.x2c_c00074{left:375.135699pt;}
.x74_c00074{left:377.152000pt;}
.x24_c00074{left:379.089333pt;}
.x69_c00074{left:380.857333pt;}
.x4b_c00074{left:382.846984pt;}
.x8f_c00074{left:386.655000pt;}
.x10_c00074{left:387.978667pt;}
.x64_c00074{left:391.416000pt;}
.x46_c00074{left:394.370667pt;}
.x92_c00074{left:401.281667pt;}
.x2d_c00074{left:402.257909pt;}
.x37_c00074{left:408.498792pt;}
.x25_c00074{left:410.181333pt;}
.x4_c00074{left:417.112000pt;}
.x87_c00074{left:430.380000pt;}
.x75_c00074{left:432.718667pt;}
.x7b_c00074{left:434.465333pt;}
.x95_c00074{left:435.402667pt;}
.x5f_c00074{left:436.957333pt;}
.x2e_c00074{left:440.235416pt;}
.x99_c00074{left:453.135667pt;}
.x26_c00074{left:456.585333pt;}
.x88_c00074{left:465.049333pt;}
.x83_c00074{left:474.074667pt;}
.x5_c00074{left:499.140000pt;}
.x96_c00074{left:514.336000pt;}
.x84_c00074{left:518.686667pt;}
.x7c_c00074{left:520.773333pt;}
.x71_c00074{left:521.685333pt;}
.x73_c00074{left:526.773333pt;}
.x14_c00074{left:533.056188pt;}
.x1e_c00074{left:534.014667pt;}
.x6a_c00074{left:536.170667pt;}
.x65_c00074{left:538.708000pt;}
.x11_c00074{left:544.962667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mb0_c00075{transform:matrix(0.011019,0.000110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011019,0.000110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011019,0.000110,-0.002500,0.249988,0,0);}
.m123_c00075{transform:matrix(0.077989,0.001326,-0.004249,0.249964,0,0);-ms-transform:matrix(0.077989,0.001326,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.077989,0.001326,-0.004249,0.249964,0,0);}
.m153_c00075{transform:matrix(0.111705,0.002346,-0.005249,0.249945,0,0);-ms-transform:matrix(0.111705,0.002346,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.111705,0.002346,-0.005249,0.249945,0,0);}
.m67_c00075{transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);}
.mc4_c00075{transform:matrix(0.141846,0.001560,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141846,0.001560,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141846,0.001560,-0.002750,0.249985,0,0);}
.m5e_c00075{transform:matrix(0.144228,0.001442,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144228,0.001442,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144228,0.001442,-0.002500,0.249988,0,0);}
.ma2_c00075{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);}
.m130_c00075{transform:matrix(0.145499,0.002473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145499,0.002473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145499,0.002473,-0.004249,0.249964,0,0);}
.m50_c00075{transform:matrix(0.147988,0.001480,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147988,0.001480,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147988,0.001480,-0.002500,0.249988,0,0);}
.m5f_c00075{transform:matrix(0.148753,0.001488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148753,0.001488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148753,0.001488,-0.002500,0.249988,0,0);}
.m63_c00075{transform:matrix(0.150952,0.001510,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150952,0.001510,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150952,0.001510,-0.002500,0.249988,0,0);}
.m13e_c00075{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);}
.md_c00075{transform:matrix(0.152003,0.002584,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152003,0.002584,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152003,0.002584,-0.004249,0.249964,0,0);}
.m19_c00075{transform:matrix(0.152638,0.002595,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152638,0.002595,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152638,0.002595,-0.004249,0.249964,0,0);}
.mf3_c00075{transform:matrix(0.152688,0.002596,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152688,0.002596,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152688,0.002596,-0.004249,0.249964,0,0);}
.m51_c00075{transform:matrix(0.154087,0.001541,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154087,0.001541,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154087,0.001541,-0.002500,0.249988,0,0);}
.m108_c00075{transform:matrix(0.154245,0.002159,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154245,0.002159,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154245,0.002159,-0.003500,0.249976,0,0);}
.m10e_c00075{transform:matrix(0.154775,0.002167,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154775,0.002167,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154775,0.002167,-0.003500,0.249976,0,0);}
.m8d_c00075{transform:matrix(0.155601,0.001712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155601,0.001712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155601,0.001712,-0.002750,0.249985,0,0);}
.mb4_c00075{transform:matrix(0.155832,0.002026,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155832,0.002026,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155832,0.002026,-0.003250,0.249979,0,0);}
.mc3_c00075{transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);}
.me1_c00075{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);}
.me6_c00075{transform:matrix(0.156295,0.002501,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156295,0.002501,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156295,0.002501,-0.003999,0.249968,0,0);}
.m52_c00075{transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);}
.m6f_c00075{transform:matrix(0.157789,0.001893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157789,0.001893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157789,0.001893,-0.003000,0.249982,0,0);}
.m91_c00075{transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);}
.m6e_c00075{transform:matrix(0.158429,0.001901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158429,0.001901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158429,0.001901,-0.003000,0.249982,0,0);}
.m5b_c00075{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);}
.mf2_c00075{transform:matrix(0.158822,0.002700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158822,0.002700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158822,0.002700,-0.004249,0.249964,0,0);}
.m66_c00075{transform:matrix(0.159140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159140,0.000000,0.000000,0.250000,0,0);}
.mc9_c00075{transform:matrix(0.159187,0.002069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159187,0.002069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159187,0.002069,-0.003250,0.249979,0,0);}
.m4f_c00075{transform:matrix(0.159547,0.001595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159547,0.001595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159547,0.001595,-0.002500,0.249988,0,0);}
.m80_c00075{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);}
.mfd_c00075{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);}
.m13b_c00075{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);}
.mdf_c00075{transform:matrix(0.160944,0.002575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160944,0.002575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160944,0.002575,-0.003999,0.249968,0,0);}
.mf9_c00075{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);}
.m35_c00075{transform:matrix(0.162309,0.002922,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162309,0.002922,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162309,0.002922,-0.004499,0.249960,0,0);}
.m88_c00075{transform:matrix(0.162360,0.001786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162360,0.001786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162360,0.001786,-0.002750,0.249985,0,0);}
.m14b_c00075{transform:matrix(0.162712,0.002441,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162712,0.002441,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162712,0.002441,-0.003750,0.249972,0,0);}
.mbd_c00075{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);}
.m149_c00075{transform:matrix(0.164217,0.002463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164217,0.002463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164217,0.002463,-0.003750,0.249972,0,0);}
.mac_c00075{transform:matrix(0.164232,0.001642,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164232,0.001642,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164232,0.001642,-0.002500,0.249988,0,0);}
.ma7_c00075{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);}
.mde_c00075{transform:matrix(0.164769,0.002636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164769,0.002636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164769,0.002636,-0.003999,0.249968,0,0);}
.m7d_c00075{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.mbf_c00075{transform:matrix(0.166165,0.001828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166165,0.001828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166165,0.001828,-0.002750,0.249985,0,0);}
.m10f_c00075{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);}
.m65_c00075{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);}
.m4c_c00075{transform:matrix(0.166502,0.001665,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166502,0.001665,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166502,0.001665,-0.002500,0.249988,0,0);}
.ma6_c00075{transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);}
.m125_c00075{transform:matrix(0.166586,0.002832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166586,0.002832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166586,0.002832,-0.004249,0.249964,0,0);}
.m13d_c00075{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);}
.m1c_c00075{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);}
.m36_c00075{transform:matrix(0.167748,0.003019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167748,0.003019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167748,0.003019,-0.004499,0.249960,0,0);}
.m71_c00075{transform:matrix(0.169588,0.002035,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169588,0.002035,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169588,0.002035,-0.003000,0.249982,0,0);}
.m8c_c00075{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);}
.mfb_c00075{transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);}
.m4e_c00075{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);}
.mbe_c00075{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);}
.mc7_c00075{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);}
.m61_c00075{transform:matrix(0.170051,0.001701,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170051,0.001701,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170051,0.001701,-0.002500,0.249988,0,0);}
.m1_c00075{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);}
.m17_c00075{transform:matrix(0.171355,0.002913,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171355,0.002913,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171355,0.002913,-0.004249,0.249964,0,0);}
.m2_c00075{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);}
.m5a_c00075{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);}
.m92_c00075{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);}
.m7f_c00075{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);}
.m13c_c00075{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);}
.m10b_c00075{transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);}
.m10a_c00075{transform:matrix(0.173508,0.002429,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173508,0.002429,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173508,0.002429,-0.003500,0.249976,0,0);}
.mb8_c00075{transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);}
.m14e_c00075{transform:matrix(0.174325,0.002615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174325,0.002615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174325,0.002615,-0.003750,0.249972,0,0);}
.mce_c00075{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);}
.mc_c00075{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);}
.m16_c00075{transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);}
.m101_c00075{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{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);}
.meb_c00075{transform:matrix(0.175755,0.002636,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175755,0.002636,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175755,0.002636,-0.003750,0.249972,0,0);}
.m78_c00075{transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);}
.m12b_c00075{transform:matrix(0.175860,0.002990,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175860,0.002990,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175860,0.002990,-0.004249,0.249964,0,0);}
.mcd_c00075{transform:matrix(0.176115,0.002289,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176115,0.002289,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176115,0.002289,-0.003250,0.249979,0,0);}
.m13f_c00075{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);}
.m33_c00075{transform:matrix(0.176216,0.003172,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176216,0.003172,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176216,0.003172,-0.004499,0.249960,0,0);}
.m117_c00075{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);}
.m14d_c00075{transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176675,0.002650,-0.003750,0.249972,0,0);}
.m60_c00075{transform:matrix(0.176906,0.001769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176906,0.001769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176906,0.001769,-0.002500,0.249988,0,0);}
.md3_c00075{transform:matrix(0.177395,0.002306,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177395,0.002306,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177395,0.002306,-0.003250,0.249979,0,0);}
.m7e_c00075{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);}
.m84_c00075{transform:matrix(0.177684,0.001955,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177684,0.001955,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177684,0.001955,-0.002750,0.249985,0,0);}
.mad_c00075{transform:matrix(0.177786,0.001778,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177786,0.001778,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177786,0.001778,-0.002500,0.249988,0,0);}
.m86_c00075{transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);}
.m11f_c00075{transform:matrix(0.178989,0.003043,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178989,0.003043,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178989,0.003043,-0.004249,0.249964,0,0);}
.m5c_c00075{transform:matrix(0.179196,0.001792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179196,0.001792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179196,0.001792,-0.002500,0.249988,0,0);}
.m11d_c00075{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);}
.m103_c00075{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);}
.mb6_c00075{transform:matrix(0.179480,0.002333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179480,0.002333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179480,0.002333,-0.003250,0.249979,0,0);}
.mdb_c00075{transform:matrix(0.179675,0.002336,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179675,0.002336,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179675,0.002336,-0.003250,0.249979,0,0);}
.m37_c00075{transform:matrix(0.180176,0.003243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180176,0.003243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180176,0.003243,-0.004499,0.249960,0,0);}
.md2_c00075{transform:matrix(0.180570,0.002347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180570,0.002347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180570,0.002347,-0.003250,0.249979,0,0);}
.m12f_c00075{transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);}
.m53_c00075{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);}
.me8_c00075{transform:matrix(0.181137,0.002898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181137,0.002898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181137,0.002898,-0.003999,0.249968,0,0);}
.mf8_c00075{transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);}
.mee_c00075{transform:matrix(0.182185,0.002733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182185,0.002733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182185,0.002733,-0.003750,0.249972,0,0);}
.m12d_c00075{transform:matrix(0.182249,0.003098,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182249,0.003098,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182249,0.003098,-0.004249,0.249964,0,0);}
.m140_c00075{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);}
.ma5_c00075{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);}
.mca_c00075{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);}
.ma1_c00075{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);}
.mc8_c00075{transform:matrix(0.183739,0.002389,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183739,0.002389,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183739,0.002389,-0.003250,0.249979,0,0);}
.m81_c00075{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);}
.m75_c00075{transform:matrix(0.184562,0.002215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184562,0.002215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184562,0.002215,-0.003000,0.249982,0,0);}
.m43_c00075{transform:matrix(0.184622,0.002585,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184622,0.002585,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184622,0.002585,-0.003500,0.249976,0,0);}
.me2_c00075{transform:matrix(0.184876,0.002958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184876,0.002958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184876,0.002958,-0.003999,0.249968,0,0);}
.m4b_c00075{transform:matrix(0.185241,0.001852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185241,0.001852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185241,0.001852,-0.002500,0.249988,0,0);}
.mec_c00075{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);}
.m8a_c00075{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);}
.m3e_c00075{transform:matrix(0.185845,0.003345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185845,0.003345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185845,0.003345,-0.004499,0.249960,0,0);}
.m77_c00075{transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);}
.m9d_c00075{transform:matrix(0.186712,0.002241,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186712,0.002241,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186712,0.002241,-0.003000,0.249982,0,0);}
.mf0_c00075{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);}
.m12e_c00075{transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);}
.mb9_c00075{transform:matrix(0.188034,0.002444,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188034,0.002444,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188034,0.002444,-0.003250,0.249979,0,0);}
.m4a_c00075{transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188291,0.001883,-0.002500,0.249988,0,0);}
.m76_c00075{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);}
.m118_c00075{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);}
.m14c_c00075{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);}
.m11a_c00075{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);}
.m145_c00075{transform:matrix(0.189199,0.002838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189199,0.002838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189199,0.002838,-0.003750,0.249972,0,0);}
.m127_c00075{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);}
.mc0_c00075{transform:matrix(0.189644,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189644,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189644,0.002086,-0.002750,0.249985,0,0);}
.mb7_c00075{transform:matrix(0.189744,0.002467,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189744,0.002467,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189744,0.002467,-0.003250,0.249979,0,0);}
.mf4_c00075{transform:matrix(0.189863,0.003228,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189863,0.003228,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189863,0.003228,-0.004249,0.249964,0,0);}
.mcc_c00075{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);}
.m11_c00075{transform:matrix(0.190377,0.003236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190377,0.003236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190377,0.003236,-0.004249,0.249964,0,0);}
.m3f_c00075{transform:matrix(0.190499,0.003429,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190499,0.003429,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190499,0.003429,-0.004499,0.249960,0,0);}
.mcf_c00075{transform:matrix(0.190544,0.002477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190544,0.002477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190544,0.002477,-0.003250,0.249979,0,0);}
.m82_c00075{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);}
.m90_c00075{transform:matrix(0.190798,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190798,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190798,0.002099,-0.002750,0.249985,0,0);}
.mcb_c00075{transform:matrix(0.190924,0.002482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190924,0.002482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190924,0.002482,-0.003250,0.249979,0,0);}
.md7_c00075{transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190954,0.002482,-0.003250,0.249979,0,0);}
.m5d_c00075{transform:matrix(0.190995,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190995,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190995,0.001910,-0.002500,0.249988,0,0);}
.m102_c00075{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);}
.m1e_c00075{transform:matrix(0.191021,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191021,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191021,0.002674,-0.003500,0.249976,0,0);}
.m4_c00075{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);}
.mfc_c00075{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);}
.m62_c00075{transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);}
.m11b_c00075{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);}
.m18_c00075{transform:matrix(0.192062,0.003265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192062,0.003265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192062,0.003265,-0.004249,0.249964,0,0);}
.m70_c00075{transform:matrix(0.192336,0.002308,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192336,0.002308,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192336,0.002308,-0.003000,0.249982,0,0);}
.md9_c00075{transform:matrix(0.193039,0.002510,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193039,0.002510,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193039,0.002510,-0.003250,0.249979,0,0);}
.m4d_c00075{transform:matrix(0.193165,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193165,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193165,0.001932,-0.002500,0.249988,0,0);}
.m54_c00075{transform:matrix(0.193170,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193170,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193170,0.001932,-0.002500,0.249988,0,0);}
.mdc_c00075{transform:matrix(0.193599,0.002517,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193599,0.002517,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193599,0.002517,-0.003250,0.249979,0,0);}
.mb2_c00075{transform:matrix(0.194244,0.002525,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194244,0.002525,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194244,0.002525,-0.003250,0.249979,0,0);}
.m40_c00075{transform:matrix(0.194463,0.003500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194463,0.003500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194463,0.003500,-0.004499,0.249960,0,0);}
.m139_c00075{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);}
.mf5_c00075{transform:matrix(0.194712,0.003310,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194712,0.003310,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194712,0.003310,-0.004249,0.249964,0,0);}
.m15_c00075{transform:matrix(0.195187,0.003318,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195187,0.003318,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195187,0.003318,-0.004249,0.249964,0,0);}
.m96_c00075{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);}
.m72_c00075{transform:matrix(0.195591,0.002347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195591,0.002347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195591,0.002347,-0.003000,0.249982,0,0);}
.ma4_c00075{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);}
.mef_c00075{transform:matrix(0.195603,0.002934,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195603,0.002934,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195603,0.002934,-0.003750,0.249972,0,0);}
.m21_c00075{transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);}
.m83_c00075{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);}
.m41_c00075{transform:matrix(0.197078,0.003547,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197078,0.003547,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197078,0.003547,-0.004499,0.249960,0,0);}
.md1_c00075{transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);}
.m8_c00075{transform:matrix(0.197641,0.003360,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197641,0.003360,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197641,0.003360,-0.004249,0.249964,0,0);}
.md4_c00075{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);}
.ma3_c00075{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);}
.m12c_c00075{transform:matrix(0.198491,0.003374,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198491,0.003374,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198491,0.003374,-0.004249,0.249964,0,0);}
.me9_c00075{transform:matrix(0.198533,0.002978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198533,0.002978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198533,0.002978,-0.003750,0.249972,0,0);}
.m89_c00075{transform:matrix(0.199038,0.002189,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199038,0.002189,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199038,0.002189,-0.002750,0.249985,0,0);}
.m104_c00075{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);}
.m8b_c00075{transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);}
.m87_c00075{transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199943,0.002199,-0.002750,0.249985,0,0);}
.m32_c00075{transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200128,0.003602,-0.004499,0.249960,0,0);}
.m59_c00075{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);}
.m12a_c00075{transform:matrix(0.200721,0.003412,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200721,0.003412,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200721,0.003412,-0.004249,0.249964,0,0);}
.med_c00075{transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);}
.mfe_c00075{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);}
.m1a_c00075{transform:matrix(0.201491,0.003425,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201491,0.003425,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201491,0.003425,-0.004249,0.249964,0,0);}
.maa_c00075{transform:matrix(0.201505,0.002015,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201505,0.002015,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201505,0.002015,-0.002500,0.249988,0,0);}
.m105_c00075{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);}
.mea_c00075{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);}
.mb1_c00075{transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);}
.mb5_c00075{transform:matrix(0.202263,0.002629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202263,0.002629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202263,0.002629,-0.003250,0.249979,0,0);}
.m14a_c00075{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);}
.mdd_c00075{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);}
.m57_c00075{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);}
.me5_c00075{transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);}
.m119_c00075{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);}
.m3a_c00075{transform:matrix(0.203962,0.003671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203962,0.003671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203962,0.003671,-0.004499,0.249960,0,0);}
.m129_c00075{transform:matrix(0.204081,0.003469,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204081,0.003469,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204081,0.003469,-0.004249,0.249964,0,0);}
.md6_c00075{transform:matrix(0.204383,0.002657,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204383,0.002657,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204383,0.002657,-0.003250,0.249979,0,0);}
.m69_c00075{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);}
.m22_c00075{transform:matrix(0.204740,0.002866,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204740,0.002866,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204740,0.002866,-0.003500,0.249976,0,0);}
.mfa_c00075{transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);}
.m134_c00075{transform:matrix(0.205130,0.003487,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205130,0.003487,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205130,0.003487,-0.004249,0.249964,0,0);}
.m8e_c00075{transform:matrix(0.205333,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205333,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205333,0.002259,-0.002750,0.249985,0,0);}
.me3_c00075{transform:matrix(0.206044,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206044,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206044,0.003297,-0.003999,0.249968,0,0);}
.md5_c00075{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);}
.m121_c00075{transform:matrix(0.206730,0.003514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206730,0.003514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206730,0.003514,-0.004249,0.249964,0,0);}
.m131_c00075{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);}
.m85_c00075{transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);}
.m28_c00075{transform:matrix(0.206873,0.003931,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206873,0.003931,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206873,0.003931,-0.004749,0.249955,0,0);}
.m135_c00075{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);}
.m3c_c00075{transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);}
.m148_c00075{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);}
.m124_c00075{transform:matrix(0.207885,0.003534,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207885,0.003534,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207885,0.003534,-0.004249,0.249964,0,0);}
.mff_c00075{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);}
.m3d_c00075{transform:matrix(0.208516,0.003753,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208516,0.003753,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208516,0.003753,-0.004499,0.249960,0,0);}
.m109_c00075{transform:matrix(0.209060,0.002927,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209060,0.002927,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209060,0.002927,-0.003500,0.249976,0,0);}
.m8f_c00075{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);}
.m7b_c00075{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);}
.m3_c00075{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);}
.m133_c00075{transform:matrix(0.210275,0.003575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210275,0.003575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210275,0.003575,-0.004249,0.249964,0,0);}
.m1d_c00075{transform:matrix(0.210364,0.002945,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210364,0.002945,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210364,0.002945,-0.003500,0.249976,0,0);}
.m11c_c00075{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);}
.mab_c00075{transform:matrix(0.210884,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210884,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210884,0.002109,-0.002500,0.249988,0,0);}
.m26_c00075{transform:matrix(0.211447,0.004017,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211447,0.004017,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211447,0.004017,-0.004749,0.249955,0,0);}
.m30_c00075{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);}
.m6d_c00075{transform:matrix(0.212695,0.002552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212695,0.002552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212695,0.002552,-0.003000,0.249982,0,0);}
.mc1_c00075{transform:matrix(0.212707,0.002340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212707,0.002340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212707,0.002340,-0.002750,0.249985,0,0);}
.mb3_c00075{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);}
.m100_c00075{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);}
.m138_c00075{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.m112_c00075{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);}
.m6a_c00075{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);}
.m58_c00075{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);}
.m2d_c00075{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);}
.m64_c00075{transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);}
.mf6_c00075{transform:matrix(0.215769,0.003668,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215769,0.003668,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215769,0.003668,-0.004249,0.249964,0,0);}
.m68_c00075{transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);}
.md0_c00075{transform:matrix(0.216132,0.002810,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216132,0.002810,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216132,0.002810,-0.003250,0.249979,0,0);}
.m128_c00075{transform:matrix(0.216414,0.003679,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216414,0.003679,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216414,0.003679,-0.004249,0.249964,0,0);}
.m146_c00075{transform:matrix(0.216516,0.003248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216516,0.003248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216516,0.003248,-0.003750,0.249972,0,0);}
.m6c_c00075{transform:matrix(0.216664,0.002600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216664,0.002600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216664,0.002600,-0.003000,0.249982,0,0);}
.m45_c00075{transform:matrix(0.216819,0.003035,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216819,0.003035,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216819,0.003035,-0.003500,0.249976,0,0);}
.m144_c00075{transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);}
.m106_c00075{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);}
.m116_c00075{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);}
.m39_c00075{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);}
.m46_c00075{transform:matrix(0.218014,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218014,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218014,0.003052,-0.003500,0.249976,0,0);}
.ma8_c00075{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);}
.mb_c00075{transform:matrix(0.218308,0.003711,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218308,0.003711,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218308,0.003711,-0.004249,0.249964,0,0);}
.m7a_c00075{transform:matrix(0.218529,0.002622,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218529,0.002622,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218529,0.002622,-0.003000,0.249982,0,0);}
.me4_c00075{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);}
.m3b_c00075{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);}
.m122_c00075{transform:matrix(0.219558,0.003732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219558,0.003732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219558,0.003732,-0.004249,0.249964,0,0);}
.m42_c00075{transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);}
.m7_c00075{transform:matrix(0.219853,0.003738,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219853,0.003738,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219853,0.003738,-0.004249,0.249964,0,0);}
.m9_c00075{transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);}
.m9e_c00075{transform:matrix(0.220839,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220839,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220839,0.002650,-0.003000,0.249982,0,0);}
.m10c_c00075{transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);}
.m10_c00075{transform:matrix(0.221468,0.003765,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221468,0.003765,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221468,0.003765,-0.004249,0.249964,0,0);}
.m27_c00075{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);}
.m79_c00075{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);}
.m115_c00075{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);}
.m7c_c00075{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);}
.ma9_c00075{transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);}
.m13_c00075{transform:matrix(0.223788,0.003804,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223788,0.003804,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223788,0.003804,-0.004249,0.249964,0,0);}
.m47_c00075{transform:matrix(0.224818,0.003147,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224818,0.003147,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224818,0.003147,-0.003500,0.249976,0,0);}
.m12_c00075{transform:matrix(0.225102,0.003827,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225102,0.003827,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225102,0.003827,-0.004249,0.249964,0,0);}
.m38_c00075{transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);}
.m136_c00075{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);}
.m11e_c00075{transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);}
.mc2_c00075{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);}
.m10d_c00075{transform:matrix(0.228828,0.003204,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228828,0.003204,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228828,0.003204,-0.003500,0.249976,0,0);}
.m110_c00075{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);}
.m99_c00075{transform:matrix(0.233083,0.002797,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233083,0.002797,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233083,0.002797,-0.003000,0.249982,0,0);}
.m1f_c00075{transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);}
.m9f_c00075{transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);}
.mda_c00075{transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);}
.m6_c00075{transform:matrix(0.237366,0.004035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237366,0.004035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237366,0.004035,-0.004249,0.249964,0,0);}
.m120_c00075{transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);}
.m126_c00075{transform:matrix(0.239215,0.004067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239215,0.004067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239215,0.004067,-0.004249,0.249964,0,0);}
.mbc_c00075{transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);}
.m73_c00075{transform:matrix(0.240058,0.002881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240058,0.002881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240058,0.002881,-0.003000,0.249982,0,0);}
.m147_c00075{transform:matrix(0.240723,0.003611,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240723,0.003611,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240723,0.003611,-0.003750,0.249972,0,0);}
.mba_c00075{transform:matrix(0.241700,0.003142,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241700,0.003142,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241700,0.003142,-0.003250,0.249979,0,0);}
.m9b_c00075{transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);}
.ma0_c00075{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);}
.m93_c00075{transform:matrix(0.242670,0.002669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242670,0.002669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242670,0.002669,-0.002750,0.249985,0,0);}
.m34_c00075{transform:matrix(0.246730,0.004441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246730,0.004441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246730,0.004441,-0.004499,0.249960,0,0);}
.m107_c00075{transform:matrix(0.246801,0.003455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246801,0.003455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246801,0.003455,-0.003500,0.249976,0,0);}
.m23_c00075{transform:matrix(0.247160,0.004696,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247160,0.004696,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247160,0.004696,-0.004749,0.249955,0,0);}
.md8_c00075{transform:matrix(0.247669,0.003220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247669,0.003220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247669,0.003220,-0.003250,0.249979,0,0);}
.me0_c00075{transform:matrix(0.249073,0.003985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249073,0.003985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249073,0.003985,-0.003999,0.249968,0,0);}
.m137_c00075{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);}
.m29_c00075{transform:matrix(0.250290,0.004756,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250290,0.004756,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250290,0.004756,-0.004749,0.249955,0,0);}
.m25_c00075{transform:matrix(0.250750,0.004764,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250750,0.004764,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250750,0.004764,-0.004749,0.249955,0,0);}
.mc6_c00075{transform:matrix(0.250880,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250880,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250880,0.002760,-0.002750,0.249985,0,0);}
.m94_c00075{transform:matrix(0.250900,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250900,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250900,0.002760,-0.002750,0.249985,0,0);}
.m2a_c00075{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);}
.mf7_c00075{transform:matrix(0.253118,0.004303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253118,0.004303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253118,0.004303,-0.004249,0.249964,0,0);}
.me7_c00075{transform:matrix(0.253198,0.004051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253198,0.004051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253198,0.004051,-0.003999,0.249968,0,0);}
.m111_c00075{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);}
.mae_c00075{transform:matrix(0.254627,0.002546,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254627,0.002546,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254627,0.002546,-0.002500,0.249988,0,0);}
.m44_c00075{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);}
.m132_c00075{transform:matrix(0.260727,0.004432,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260727,0.004432,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260727,0.004432,-0.004249,0.249964,0,0);}
.mf1_c00075{transform:matrix(0.260991,0.003915,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260991,0.003915,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260991,0.003915,-0.003750,0.249972,0,0);}
.m14_c00075{transform:matrix(0.261897,0.004452,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261897,0.004452,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261897,0.004452,-0.004249,0.249964,0,0);}
.m143_c00075{transform:matrix(0.262610,0.003939,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262610,0.003939,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262610,0.003939,-0.003750,0.249972,0,0);}
.m20_c00075{transform:matrix(0.266939,0.003737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266939,0.003737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266939,0.003737,-0.003500,0.249976,0,0);}
.m114_c00075{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);}
.m141_c00075{transform:matrix(0.269000,0.004035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269000,0.004035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269000,0.004035,-0.003750,0.249972,0,0);}
.m2f_c00075{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);}
.me_c00075{transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);}
.m1b_c00075{transform:matrix(0.284160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284160,0.000000,0.000000,0.250000,0,0);}
.m98_c00075{transform:matrix(0.285694,0.003428,-0.003000,0.249982,0,0);-ms-transform:matrix(0.285694,0.003428,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.285694,0.003428,-0.003000,0.249982,0,0);}
.m5_c00075{transform:matrix(0.285774,0.004858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285774,0.004858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285774,0.004858,-0.004249,0.249964,0,0);}
.m48_c00075{transform:matrix(0.286462,0.004010,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286462,0.004010,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286462,0.004010,-0.003500,0.249976,0,0);}
.m56_c00075{transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300745,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{transform:matrix(0.302100,0.005740,-0.004749,0.249955,0,0);-ms-transform:matrix(0.302100,0.005740,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.302100,0.005740,-0.004749,0.249955,0,0);}
.m150_c00075{transform:matrix(0.313431,0.006582,-0.005249,0.249945,0,0);-ms-transform:matrix(0.313431,0.006582,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.313431,0.006582,-0.005249,0.249945,0,0);}
.maf_c00075{transform:matrix(0.317679,0.003177,-0.002500,0.249988,0,0);-ms-transform:matrix(0.317679,0.003177,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.317679,0.003177,-0.002500,0.249988,0,0);}
.m74_c00075{transform:matrix(0.327356,0.003928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.327356,0.003928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.327356,0.003928,-0.003000,0.249982,0,0);}
.mf_c00075{transform:matrix(0.333932,0.005677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.333932,0.005677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.333932,0.005677,-0.004249,0.249964,0,0);}
.m95_c00075{transform:matrix(0.335070,0.003686,-0.002750,0.249985,0,0);-ms-transform:matrix(0.335070,0.003686,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.335070,0.003686,-0.002750,0.249985,0,0);}
.ma_c00075{transform:matrix(0.339521,0.005772,-0.004249,0.249964,0,0);-ms-transform:matrix(0.339521,0.005772,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.339521,0.005772,-0.004249,0.249964,0,0);}
.m113_c00075{transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);}
.m9a_c00075{transform:matrix(0.343720,0.004125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.343720,0.004125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.343720,0.004125,-0.003000,0.249982,0,0);}
.m55_c00075{transform:matrix(0.344365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344365,0.000000,0.000000,0.250000,0,0);}
.m13a_c00075{transform:matrix(0.344505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344505,0.000000,0.000000,0.250000,0,0);}
.mbb_c00075{transform:matrix(0.351160,0.004565,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351160,0.004565,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351160,0.004565,-0.003250,0.249979,0,0);}
.m142_c00075{transform:matrix(0.352920,0.005294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.352920,0.005294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.352920,0.005294,-0.003750,0.249972,0,0);}
.m2c_c00075{transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);}
.m6b_c00075{transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);}
.m151_c00075{transform:matrix(0.372693,0.007827,-0.005249,0.249945,0,0);-ms-transform:matrix(0.372693,0.007827,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.372693,0.007827,-0.005249,0.249945,0,0);}
.m31_c00075{transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373185,0.000000,0.000000,0.250000,0,0);}
.mc5_c00075{transform:matrix(0.383982,0.004224,-0.002750,0.249985,0,0);-ms-transform:matrix(0.383982,0.004224,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.383982,0.004224,-0.002750,0.249985,0,0);}
.m9c_c00075{transform:matrix(0.390467,0.004686,-0.003000,0.249982,0,0);-ms-transform:matrix(0.390467,0.004686,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.390467,0.004686,-0.003000,0.249982,0,0);}
.m2b_c00075{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m14f_c00075{transform:matrix(0.467085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467085,0.000000,0.000000,0.250000,0,0);}
.m152_c00075{transform:matrix(0.676786,0.014213,-0.005249,0.249945,0,0);-ms-transform:matrix(0.676786,0.014213,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.676786,0.014213,-0.005249,0.249945,0,0);}
.m97_c00075{transform:matrix(0.776494,0.009318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.776494,0.009318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.776494,0.009318,-0.003000,0.249982,0,0);}
.m49_c00075{transform:matrix(1.774859,0.030173,-0.004249,0.249964,0,0);-ms-transform:matrix(1.774859,0.030173,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.774859,0.030173,-0.004249,0.249964,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;}
.fs7_c00075{font-size:33.600000px;}
.fs24_c00075{font-size:48.300000px;}
.fs1_c00075{font-size:48.306979px;}
.fs27_c00075{font-size:49.350000px;}
.fs5_c00075{font-size:49.354836px;}
.fs28_c00075{font-size:49.355552px;}
.fs6_c00075{font-size:49.358907px;}
.fs4_c00075{font-size:50.400000px;}
.fs26_c00075{font-size:50.407282px;}
.fsa_c00075{font-size:50.408164px;}
.fs2_c00075{font-size:51.457434px;}
.fs22_c00075{font-size:52.500000px;}
.fsc_c00075{font-size:52.505145px;}
.fs3_c00075{font-size:52.507586px;}
.fsb_c00075{font-size:52.508504px;}
.fs23_c00075{font-size:53.555248px;}
.fs20_c00075{font-size:53.557737px;}
.fs21_c00075{font-size:54.600000px;}
.fs29_c00075{font-size:55.656260px;}
.fs2a_c00075{font-size:57.750000px;}
.fs25_c00075{font-size:58.800000px;}
.fs8_c00075{font-size:59.850000px;}
.fs0_c00075{font-size:63.000000px;}
.fs17_c00075{font-size:66.154763px;}
.fs18_c00075{font-size:68.250000px;}
.fs1b_c00075{font-size:68.254129px;}
.fs1f_c00075{font-size:68.257678px;}
.fs1e_c00075{font-size:68.258735px;}
.fs19_c00075{font-size:69.303465px;}
.fs16_c00075{font-size:69.304193px;}
.fs1a_c00075{font-size:69.305856px;}
.fs15_c00075{font-size:70.354256px;}
.fs1d_c00075{font-size:70.355944px;}
.fs10_c00075{font-size:71.400000px;}
.fs2b_c00075{font-size:71.415742px;}
.fsf_c00075{font-size:72.450000px;}
.fs12_c00075{font-size:72.455216px;}
.fs1c_c00075{font-size:72.456122px;}
.fs14_c00075{font-size:73.500000px;}
.fse_c00075{font-size:74.553727px;}
.fs13_c00075{font-size:75.605443px;}
.fs11_c00075{font-size:77.703885px;}
.fsd_c00075{font-size:102.914868px;}
.fs9_c00075{font-size:136.500000px;}
.y0_c00075{bottom:0.000000px;}
.y111_c00075{bottom:75.590004px;}
.y110_c00075{bottom:76.577120px;}
.y10f_c00075{bottom:77.773710px;}
.y10e_c00075{bottom:79.117500px;}
.y10d_c00075{bottom:80.455500px;}
.y27_c00075{bottom:81.259500px;}
.y26_c00075{bottom:89.893500px;}
.y40_c00075{bottom:99.366000px;}
.y10c_c00075{bottom:139.445310px;}
.y10b_c00075{bottom:140.053905px;}
.y10a_c00075{bottom:140.348138px;}
.y109_c00075{bottom:140.826225px;}
.y108_c00075{bottom:141.088823px;}
.y107_c00075{bottom:141.513413px;}
.y106_c00075{bottom:141.937373px;}
.y105_c00075{bottom:142.288823px;}
.y25_c00075{bottom:143.245374px;}
.y24_c00075{bottom:143.599087px;}
.y23_c00075{bottom:144.235492px;}
.y22_c00075{bottom:144.594621px;}
.y21_c00075{bottom:145.523578px;}
.y20_c00075{bottom:145.908072px;}
.y1f_c00075{bottom:146.883000px;}
.y104_c00075{bottom:157.106258px;}
.y103_c00075{bottom:157.596982px;}
.y102_c00075{bottom:158.034405px;}
.y101_c00075{bottom:158.378745px;}
.y100_c00075{bottom:158.533050px;}
.yff_c00075{bottom:158.961990px;}
.yfe_c00075{bottom:159.739320px;}
.yfd_c00075{bottom:160.266000px;}
.yfb_c00075{bottom:162.041868px;}
.yfa_c00075{bottom:163.079274px;}
.yf9_c00075{bottom:163.796112px;}
.yf8_c00075{bottom:164.392236px;}
.yf7_c00075{bottom:165.239554px;}
.yfc_c00075{bottom:176.361000px;}
.yf6_c00075{bottom:178.824410px;}
.yf5_c00075{bottom:179.478892px;}
.yf4_c00075{bottom:180.304888px;}
.yf3_c00075{bottom:180.860585px;}
.yf2_c00075{bottom:182.058549px;}
.yf1_c00075{bottom:182.352513px;}
.yf0_c00075{bottom:182.793000px;}
.yef_c00075{bottom:194.099340px;}
.yee_c00075{bottom:194.383869px;}
.yed_c00075{bottom:195.049470px;}
.yec_c00075{bottom:195.507628px;}
.yeb_c00075{bottom:195.866388px;}
.yea_c00075{bottom:196.692945px;}
.ye9_c00075{bottom:196.829217px;}
.y1e_c00075{bottom:197.724141px;}
.y1d_c00075{bottom:198.068184px;}
.y1c_c00075{bottom:198.306303px;}
.y1b_c00075{bottom:199.187274px;}
.y1a_c00075{bottom:199.565190px;}
.y19_c00075{bottom:200.071500px;}
.ye8_c00075{bottom:212.180921px;}
.ye7_c00075{bottom:213.305241px;}
.ye6_c00075{bottom:213.667953px;}
.ye5_c00075{bottom:214.609082px;}
.y3f_c00075{bottom:215.019225px;}
.ye4_c00075{bottom:215.463000px;}
.y3e_c00075{bottom:215.725497px;}
.y3d_c00075{bottom:216.349764px;}
.y3c_c00075{bottom:216.580701px;}
.y3b_c00075{bottom:216.825477px;}
.y3a_c00075{bottom:217.596786px;}
.y39_c00075{bottom:217.891500px;}
.ye3_c00075{bottom:231.252000px;}
.y18_c00075{bottom:235.170000px;}
.ye2_c00075{bottom:248.803500px;}
.y38_c00075{bottom:251.764470px;}
.y37_c00075{bottom:251.959587px;}
.y36_c00075{bottom:252.307845px;}
.y35_c00075{bottom:252.697377px;}
.y34_c00075{bottom:252.952449px;}
.y33_c00075{bottom:253.770912px;}
.y32_c00075{bottom:254.609040px;}
.ye1_c00075{bottom:265.791240px;}
.ye0_c00075{bottom:266.040699px;}
.ydf_c00075{bottom:266.736471px;}
.yde_c00075{bottom:267.008547px;}
.ydd_c00075{bottom:267.409353px;}
.ydc_c00075{bottom:267.662634px;}
.ydb_c00075{bottom:267.949830px;}
.yda_c00075{bottom:268.520757px;}
.yd9_c00075{bottom:268.921500px;}
.y31_c00075{bottom:268.941804px;}
.y30_c00075{bottom:269.652471px;}
.y2f_c00075{bottom:269.803293px;}
.y2e_c00075{bottom:270.240801px;}
.y2d_c00075{bottom:270.634569px;}
.y2c_c00075{bottom:270.824082px;}
.y2b_c00075{bottom:271.543254px;}
.y2a_c00075{bottom:272.457123px;}
.y29_c00075{bottom:272.971500px;}
.yd8_c00075{bottom:285.097500px;}
.y17_c00075{bottom:287.818853px;}
.y16_c00075{bottom:288.264185px;}
.y15_c00075{bottom:289.048871px;}
.y14_c00075{bottom:289.438893px;}
.y13_c00075{bottom:289.805660px;}
.y12_c00075{bottom:290.490641px;}
.y11_c00075{bottom:290.788787px;}
.yd7_c00075{bottom:303.187500px;}
.ya_c00075{bottom:306.866301px;}
.yb_c00075{bottom:306.866999px;}
.yf_c00075{bottom:306.867494px;}
.y10_c00075{bottom:306.867575px;}
.yc_c00075{bottom:306.867654px;}
.yd_c00075{bottom:306.867791px;}
.ye_c00075{bottom:306.867807px;}
.yd6_c00075{bottom:319.699526px;}
.yd5_c00075{bottom:319.974798px;}
.yd4_c00075{bottom:321.081217px;}
.yd3_c00075{bottom:321.659864px;}
.yd2_c00075{bottom:322.164534px;}
.yd1_c00075{bottom:322.848725px;}
.yd0_c00075{bottom:323.193000px;}
.y9_c00075{bottom:323.442270px;}
.y8_c00075{bottom:324.126537px;}
.y7_c00075{bottom:324.357185px;}
.y6_c00075{bottom:324.866904px;}
.y5_c00075{bottom:325.603982px;}
.y4_c00075{bottom:326.256603px;}
.y3_c00075{bottom:326.578082px;}
.y2_c00075{bottom:326.973000px;}
.ycf_c00075{bottom:357.736868px;}
.yce_c00075{bottom:358.360073px;}
.ycd_c00075{bottom:359.425537px;}
.ycc_c00075{bottom:359.951858px;}
.ycb_c00075{bottom:360.863242px;}
.yca_c00075{bottom:361.470742px;}
.yc9_c00075{bottom:361.870792px;}
.yc8_c00075{bottom:362.240445px;}
.yc7_c00075{bottom:362.613000px;}
.yc6_c00075{bottom:379.268952px;}
.yc5_c00075{bottom:380.176320px;}
.yc4_c00075{bottom:380.592432px;}
.yc3_c00075{bottom:380.912136px;}
.yc2_c00075{bottom:381.737208px;}
.yc1_c00075{bottom:382.972848px;}
.yc0_c00075{bottom:383.659704px;}
.ybf_c00075{bottom:384.087528px;}
.ybe_c00075{bottom:384.432936px;}
.ybd_c00075{bottom:385.076112px;}
.ybc_c00075{bottom:385.409616px;}
.ybb_c00075{bottom:385.833000px;}
.yba_c00075{bottom:403.761781px;}
.yb9_c00075{bottom:404.242846px;}
.yb8_c00075{bottom:405.310666px;}
.yb7_c00075{bottom:405.623115px;}
.yb6_c00075{bottom:405.900327px;}
.yb5_c00075{bottom:406.834182px;}
.yb4_c00075{bottom:407.613558px;}
.yb3_c00075{bottom:407.971500px;}
.yb2_c00075{bottom:428.661366px;}
.yb1_c00075{bottom:428.999109px;}
.yb0_c00075{bottom:429.631507px;}
.yaf_c00075{bottom:430.047489px;}
.yae_c00075{bottom:430.325039px;}
.yad_c00075{bottom:431.188914px;}
.yac_c00075{bottom:450.580689px;}
.yab_c00075{bottom:451.076477px;}
.yaa_c00075{bottom:452.270286px;}
.ya9_c00075{bottom:453.108825px;}
.ya8_c00075{bottom:453.725902px;}
.ya7_c00075{bottom:454.267223px;}
.ya6_c00075{bottom:454.681500px;}
.ya5_c00075{bottom:473.189002px;}
.ya4_c00075{bottom:473.447673px;}
.ya3_c00075{bottom:473.696575px;}
.ya2_c00075{bottom:474.056094px;}
.ya1_c00075{bottom:474.399970px;}
.ya0_c00075{bottom:475.015272px;}
.y9f_c00075{bottom:475.448892px;}
.y9e_c00075{bottom:475.781614px;}
.y9d_c00075{bottom:476.033685px;}
.y9c_c00075{bottom:476.547990px;}
.y9b_c00075{bottom:476.758810px;}
.y9a_c00075{bottom:477.091500px;}
.y99_c00075{bottom:494.710203px;}
.y98_c00075{bottom:495.232277px;}
.y97_c00075{bottom:495.989735px;}
.y96_c00075{bottom:496.467914px;}
.y95_c00075{bottom:497.141911px;}
.y94_c00075{bottom:497.791339px;}
.y93_c00075{bottom:498.148599px;}
.y92_c00075{bottom:498.363430px;}
.y91_c00075{bottom:498.998740px;}
.y90_c00075{bottom:499.566717px;}
.y8f_c00075{bottom:500.311500px;}
.y8e_c00075{bottom:517.964970px;}
.y8d_c00075{bottom:518.971485px;}
.y8c_c00075{bottom:519.573255px;}
.y8b_c00075{bottom:519.886440px;}
.y8a_c00075{bottom:520.326570px;}
.y89_c00075{bottom:520.499415px;}
.y88_c00075{bottom:521.158185px;}
.y87_c00075{bottom:521.557380px;}
.y86_c00075{bottom:522.451500px;}
.y85_c00075{bottom:543.688500px;}
.y84_c00075{bottom:564.220878px;}
.y83_c00075{bottom:564.482904px;}
.y82_c00075{bottom:564.758394px;}
.y81_c00075{bottom:565.270386px;}
.y80_c00075{bottom:565.879344px;}
.y7f_c00075{bottom:566.436894px;}
.y7e_c00075{bottom:566.731860px;}
.y7d_c00075{bottom:567.457404px;}
.y7c_c00075{bottom:568.351500px;}
.y7b_c00075{bottom:587.251053px;}
.y7a_c00075{bottom:587.606974px;}
.y79_c00075{bottom:587.853468px;}
.y78_c00075{bottom:588.088081px;}
.y77_c00075{bottom:588.545527px;}
.y76_c00075{bottom:588.771231px;}
.y75_c00075{bottom:589.142002px;}
.y74_c00075{bottom:589.795914px;}
.y73_c00075{bottom:590.083987px;}
.y72_c00075{bottom:590.443473px;}
.y71_c00075{bottom:590.760652px;}
.y70_c00075{bottom:591.031500px;}
.y6f_c00075{bottom:610.120671px;}
.y6e_c00075{bottom:610.670022px;}
.y6d_c00075{bottom:611.183865px;}
.y6c_c00075{bottom:611.679327px;}
.y6b_c00075{bottom:612.047789px;}
.y6a_c00075{bottom:612.460982px;}
.y69_c00075{bottom:613.036733px;}
.y68_c00075{bottom:613.711500px;}
.y67_c00075{bottom:634.627500px;}
.y66_c00075{bottom:655.505232px;}
.y65_c00075{bottom:656.006766px;}
.y64_c00075{bottom:656.212038px;}
.y63_c00075{bottom:657.151134px;}
.y62_c00075{bottom:657.805614px;}
.y61_c00075{bottom:658.456890px;}
.y60_c00075{bottom:659.341500px;}
.y5f_c00075{bottom:678.828390px;}
.y5e_c00075{bottom:679.320366px;}
.y5d_c00075{bottom:679.831620px;}
.y5c_c00075{bottom:680.139546px;}
.y5b_c00075{bottom:680.360352px;}
.y5a_c00075{bottom:680.580816px;}
.y59_c00075{bottom:681.465390px;}
.y58_c00075{bottom:681.853506px;}
.y57_c00075{bottom:682.291500px;}
.y56_c00075{bottom:726.735000px;}
.y55_c00075{bottom:747.563970px;}
.y54_c00075{bottom:747.855150px;}
.y53_c00075{bottom:748.484415px;}
.y52_c00075{bottom:748.760265px;}
.y51_c00075{bottom:749.254260px;}
.y50_c00075{bottom:749.607885px;}
.y4f_c00075{bottom:750.058875px;}
.y4e_c00075{bottom:750.601500px;}
.y4d_c00075{bottom:771.759000px;}
.y1_c00075{bottom:773.275500px;}
.y4c_c00075{bottom:795.426000px;}
.y4b_c00075{bottom:816.184755px;}
.y4a_c00075{bottom:816.567810px;}
.y49_c00075{bottom:816.934965px;}
.y48_c00075{bottom:817.202040px;}
.y47_c00075{bottom:817.404915px;}
.y46_c00075{bottom:817.801845px;}
.y45_c00075{bottom:818.025585px;}
.y44_c00075{bottom:818.552415px;}
.y43_c00075{bottom:818.794950px;}
.y42_c00075{bottom:819.246285px;}
.y41_c00075{bottom:819.451500px;}
.y28_c00075{bottom:861.855000px;}
.h9_c00075{height:33.600000px;}
.h26_c00075{height:48.300000px;}
.h3_c00075{height:48.306979px;}
.h29_c00075{height:49.350000px;}
.h7_c00075{height:49.354836px;}
.h2a_c00075{height:49.355552px;}
.h8_c00075{height:49.358907px;}
.h6_c00075{height:50.400000px;}
.h28_c00075{height:50.407282px;}
.hc_c00075{height:50.408164px;}
.h4_c00075{height:51.457434px;}
.h24_c00075{height:52.500000px;}
.he_c00075{height:52.505145px;}
.h5_c00075{height:52.507586px;}
.hd_c00075{height:52.508504px;}
.h25_c00075{height:53.555248px;}
.h22_c00075{height:53.557737px;}
.h23_c00075{height:54.600000px;}
.h2b_c00075{height:55.656260px;}
.h2c_c00075{height:57.750000px;}
.h27_c00075{height:58.800000px;}
.ha_c00075{height:59.850000px;}
.h2_c00075{height:63.000000px;}
.h19_c00075{height:66.154763px;}
.h1a_c00075{height:68.250000px;}
.h1d_c00075{height:68.254129px;}
.h21_c00075{height:68.257678px;}
.h20_c00075{height:68.258735px;}
.h1b_c00075{height:69.303465px;}
.h18_c00075{height:69.304193px;}
.h1c_c00075{height:69.305856px;}
.h17_c00075{height:70.354256px;}
.h1f_c00075{height:70.355944px;}
.h12_c00075{height:71.400000px;}
.h2d_c00075{height:71.415742px;}
.h11_c00075{height:72.450000px;}
.h14_c00075{height:72.455216px;}
.h1e_c00075{height:72.456122px;}
.h16_c00075{height:73.500000px;}
.h10_c00075{height:74.553727px;}
.h15_c00075{height:75.605443px;}
.h13_c00075{height:77.703885px;}
.hf_c00075{height:102.914868px;}
.hb_c00075{height:136.500000px;}
.h0_c00075{height:1008.450000px;}
.h1_c00075{height:1008.750000px;}
.w0_c00075{width:711.720000px;}
.w1_c00075{width:711.750000px;}
.x0_c00075{left:0.000000px;}
.x1c_c00075{left:157.566000px;}
.xd_c00075{left:159.567367px;}
.x6_c00075{left:169.665000px;}
.x30_c00075{left:171.036597px;}
.x14_c00075{left:176.950584px;}
.x35_c00075{left:178.864500px;}
.xb3_c00075{left:183.705000px;}
.x2c_c00075{left:187.219500px;}
.x7_c00075{left:192.895500px;}
.x8d_c00075{left:194.737500px;}
.x88_c00075{left:196.387500px;}
.x6b_c00075{left:197.484000px;}
.x61_c00075{left:198.580500px;}
.x53_c00075{left:199.917000px;}
.x1_c00075{left:201.420000px;}
.x1a_c00075{left:204.390000px;}
.xe_c00075{left:207.363688px;}
.x20_c00075{left:208.807500px;}
.xb4_c00075{left:210.188415px;}
.x8_c00075{left:211.806000px;}
.x85_c00075{left:214.251575px;}
.x15_c00075{left:217.243584px;}
.xf_c00075{left:218.975554px;}
.x95_c00075{left:220.126500px;}
.x2_c00075{left:221.400000px;}
.x62_c00075{left:223.203000px;}
.x31_c00075{left:226.935621px;}
.x21_c00075{left:229.044000px;}
.x3b_c00075{left:230.506500px;}
.x36_c00075{left:233.958000px;}
.x54_c00075{left:236.416500px;}
.x16_c00075{left:238.818084px;}
.x1b_c00075{left:241.920000px;}
.x96_c00075{left:244.770000px;}
.x7c_c00075{left:246.364500px;}
.xb5_c00075{left:247.461053px;}
.x3_c00075{left:249.210000px;}
.x10_c00075{left:250.300107px;}
.x37_c00075{left:251.442000px;}
.x28_c00075{left:252.720000px;}
.x49_c00075{left:255.823500px;}
.x26_c00075{left:257.040000px;}
.x5d_c00075{left:260.457000px;}
.x17_c00075{left:261.760584px;}
.x3c_c00075{left:266.670000px;}
.x38_c00075{left:267.937500px;}
.x82_c00075{left:270.439500px;}
.x6c_c00075{left:271.992000px;}
.x56_c00075{left:273.088500px;}
.x4e_c00075{left:275.940000px;}
.x22_c00075{left:277.936500px;}
.x4_c00075{left:282.420000px;}
.x1d_c00075{left:283.651500px;}
.x63_c00075{left:284.718000px;}
.x11_c00075{left:286.486062px;}
.x29_c00075{left:288.900000px;}
.x3d_c00075{left:290.923500px;}
.xb6_c00075{left:292.275818px;}
.x9_c00075{left:293.553000px;}
.x23_c00075{left:296.838000px;}
.x32_c00075{left:298.496982px;}
.x1e_c00075{left:300.660000px;}
.x8e_c00075{left:303.829500px;}
.x5_c00075{left:305.910000px;}
.x18_c00075{left:307.918584px;}
.x2d_c00075{left:310.348500px;}
.x39_c00075{left:312.528000px;}
.x7d_c00075{left:316.035000px;}
.x83_c00075{left:317.907000px;}
.x12_c00075{left:319.160997px;}
.xa_c00075{left:323.536500px;}
.x1f_c00075{left:325.234500px;}
.x2b_c00075{left:326.970000px;}
.x86_c00075{left:328.481040px;}
.x24_c00075{left:330.333000px;}
.x27_c00075{left:332.370000px;}
.x19_c00075{left:334.114584px;}
.xb_c00075{left:337.104000px;}
.x13_c00075{left:341.574474px;}
.x2e_c00075{left:343.033500px;}
.x7e_c00075{left:346.282500px;}
.x33_c00075{left:347.654628px;}
.x25_c00075{left:348.949500px;}
.x2a_c00075{left:351.270000px;}
.x45_c00075{left:352.620000px;}
.x89_c00075{left:355.708500px;}
.x6d_c00075{left:357.034500px;}
.x34_c00075{left:360.661830px;}
.x3a_c00075{left:362.976000px;}
.x3e_c00075{left:365.980500px;}
.x64_c00075{left:370.353000px;}
.x8f_c00075{left:373.497000px;}
.xc_c00075{left:377.355000px;}
.x4f_c00075{left:379.890000px;}
.x2f_c00075{left:382.515000px;}
.x5e_c00075{left:383.857500px;}
.x4a_c00075{left:385.684500px;}
.x73_c00075{left:392.179500px;}
.x46_c00075{left:393.390000px;}
.x5a_c00075{left:395.280000px;}
.xb1_c00075{left:397.540500px;}
.x8a_c00075{left:401.067000px;}
.x70_c00075{left:402.300000px;}
.x65_c00075{left:404.059500px;}
.x3f_c00075{left:405.673500px;}
.x97_c00075{left:407.787000px;}
.x99_c00075{left:408.880500px;}
.x44_c00075{left:410.130000px;}
.x4b_c00075{left:413.269500px;}
.x47_c00075{left:417.150000px;}
.x5b_c00075{left:419.850000px;}
.x66_c00075{left:424.578000px;}
.x40_c00075{left:425.961000px;}
.x5f_c00075{left:428.899500px;}
.xa4_c00075{left:431.595000px;}
.x87_c00075{left:433.245115px;}
.x71_c00075{left:434.970000px;}
.xb7_c00075{left:439.560000px;}
.x7f_c00075{left:441.639000px;}
.x77_c00075{left:443.722500px;}
.x55_c00075{left:447.511500px;}
.x90_c00075{left:450.724500px;}
.x41_c00075{left:452.668500px;}
.x6e_c00075{left:454.243500px;}
.x50_c00075{left:455.490000px;}
.x48_c00075{left:457.650000px;}
.x57_c00075{left:460.159500px;}
.xb0_c00075{left:461.970000px;}
.x67_c00075{left:466.164000px;}
.x9a_c00075{left:469.378500px;}
.x5c_c00075{left:470.880000px;}
.x80_c00075{left:472.900500px;}
.x51_c00075{left:474.120000px;}
.x4c_c00075{left:476.196000px;}
.x58_c00075{left:477.265500px;}
.x98_c00075{left:478.818000px;}
.xb8_c00075{left:480.600000px;}
.x8b_c00075{left:483.207000px;}
.x74_c00075{left:484.795500px;}
.x68_c00075{left:487.492500px;}
.x42_c00075{left:489.384000px;}
.xa5_c00075{left:492.889500px;}
.x78_c00075{left:495.568500px;}
.x6f_c00075{left:496.909500px;}
.x9b_c00075{left:499.065000px;}
.xab_c00075{left:501.120000px;}
.x91_c00075{left:502.291500px;}
.xa1_c00075{left:504.090000px;}
.x4d_c00075{left:505.314000px;}
.x69_c00075{left:509.901000px;}
.xa6_c00075{left:510.981000px;}
.x84_c00075{left:512.379000px;}
.x72_c00075{left:515.970000px;}
.x52_c00075{left:517.860000px;}
.x59_c00075{left:519.060000px;}
.x8c_c00075{left:520.212000px;}
.x92_c00075{left:522.273000px;}
.xb2_c00075{left:524.467500px;}
.x60_c00075{left:525.553500px;}
.x43_c00075{left:527.689500px;}
.xbb_c00075{left:530.955000px;}
.x79_c00075{left:532.351500px;}
.x9e_c00075{left:533.790000px;}
.xa7_c00075{left:539.610000px;}
.x6a_c00075{left:542.257500px;}
.x75_c00075{left:544.972500px;}
.xac_c00075{left:547.020000px;}
.x93_c00075{left:548.280000px;}
.x81_c00075{left:551.727000px;}
.xbc_c00075{left:553.911000px;}
.xa2_c00075{left:557.550000px;}
.xa8_c00075{left:559.044000px;}
.xad_c00075{left:562.140000px;}
.x9f_c00075{left:567.270000px;}
.xbe_c00075{left:569.844938px;}
.xb9_c00075{left:571.050000px;}
.xa3_c00075{left:580.770000px;}
.xae_c00075{left:583.200000px;}
.xbf_c00075{left:587.748000px;}
.x7a_c00075{left:590.617500px;}
.x9c_c00075{left:598.186500px;}
.x94_c00075{left:604.990500px;}
.xa9_c00075{left:608.742000px;}
.xaf_c00075{left:611.010000px;}
.x9d_c00075{left:614.379000px;}
.xbd_c00075{left:615.787500px;}
.xba_c00075{left:621.000000px;}
.xa0_c00075{left:622.620000px;}
.xaa_c00075{left:626.560500px;}
.x7b_c00075{left:630.777000px;}
.xc0_c00075{left:634.753500px;}
.x76_c00075{left:645.624000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
.fs7_c00075{font-size:29.866667pt;}
.fs24_c00075{font-size:42.933333pt;}
.fs1_c00075{font-size:42.939537pt;}
.fs27_c00075{font-size:43.866667pt;}
.fs5_c00075{font-size:43.870965pt;}
.fs28_c00075{font-size:43.871601pt;}
.fs6_c00075{font-size:43.874584pt;}
.fs4_c00075{font-size:44.800000pt;}
.fs26_c00075{font-size:44.806473pt;}
.fsa_c00075{font-size:44.807257pt;}
.fs2_c00075{font-size:45.739941pt;}
.fs22_c00075{font-size:46.666667pt;}
.fsc_c00075{font-size:46.671240pt;}
.fs3_c00075{font-size:46.673410pt;}
.fsb_c00075{font-size:46.674226pt;}
.fs23_c00075{font-size:47.604665pt;}
.fs20_c00075{font-size:47.606878pt;}
.fs21_c00075{font-size:48.533333pt;}
.fs29_c00075{font-size:49.472231pt;}
.fs2a_c00075{font-size:51.333333pt;}
.fs25_c00075{font-size:52.266667pt;}
.fs8_c00075{font-size:53.200000pt;}
.fs0_c00075{font-size:56.000000pt;}
.fs17_c00075{font-size:58.804233pt;}
.fs18_c00075{font-size:60.666667pt;}
.fs1b_c00075{font-size:60.670337pt;}
.fs1f_c00075{font-size:60.673491pt;}
.fs1e_c00075{font-size:60.674432pt;}
.fs19_c00075{font-size:61.603080pt;}
.fs16_c00075{font-size:61.603727pt;}
.fs1a_c00075{font-size:61.605205pt;}
.fs15_c00075{font-size:62.537116pt;}
.fs1d_c00075{font-size:62.538617pt;}
.fs10_c00075{font-size:63.466667pt;}
.fs2b_c00075{font-size:63.480660pt;}
.fsf_c00075{font-size:64.400000pt;}
.fs12_c00075{font-size:64.404637pt;}
.fs1c_c00075{font-size:64.405442pt;}
.fs14_c00075{font-size:65.333333pt;}
.fse_c00075{font-size:66.269980pt;}
.fs13_c00075{font-size:67.204838pt;}
.fs11_c00075{font-size:69.070120pt;}
.fsd_c00075{font-size:91.479883pt;}
.fs9_c00075{font-size:121.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y111_c00075{bottom:67.191115pt;}
.y110_c00075{bottom:68.068551pt;}
.y10f_c00075{bottom:69.132187pt;}
.y10e_c00075{bottom:70.326667pt;}
.y10d_c00075{bottom:71.516000pt;}
.y27_c00075{bottom:72.230667pt;}
.y26_c00075{bottom:79.905333pt;}
.y40_c00075{bottom:88.325333pt;}
.y10c_c00075{bottom:123.951387pt;}
.y10b_c00075{bottom:124.492360pt;}
.y10a_c00075{bottom:124.753900pt;}
.y109_c00075{bottom:125.178867pt;}
.y108_c00075{bottom:125.412287pt;}
.y107_c00075{bottom:125.789700pt;}
.y106_c00075{bottom:126.166553pt;}
.y105_c00075{bottom:126.478953pt;}
.y25_c00075{bottom:127.329221pt;}
.y24_c00075{bottom:127.643633pt;}
.y23_c00075{bottom:128.209327pt;}
.y22_c00075{bottom:128.528552pt;}
.y21_c00075{bottom:129.354292pt;}
.y20_c00075{bottom:129.696064pt;}
.y1f_c00075{bottom:130.562667pt;}
.y104_c00075{bottom:139.650007pt;}
.y103_c00075{bottom:140.086207pt;}
.y102_c00075{bottom:140.475027pt;}
.y101_c00075{bottom:140.781107pt;}
.y100_c00075{bottom:140.918267pt;}
.yff_c00075{bottom:141.299547pt;}
.yfe_c00075{bottom:141.990507pt;}
.yfd_c00075{bottom:142.458667pt;}
.yfb_c00075{bottom:144.037216pt;}
.yfa_c00075{bottom:144.959355pt;}
.yf9_c00075{bottom:145.596544pt;}
.yf8_c00075{bottom:146.126432pt;}
.yf7_c00075{bottom:146.879604pt;}
.yfc_c00075{bottom:156.765333pt;}
.yf6_c00075{bottom:158.955031pt;}
.yf5_c00075{bottom:159.536793pt;}
.yf4_c00075{bottom:160.271012pt;}
.yf3_c00075{bottom:160.764964pt;}
.yf2_c00075{bottom:161.829821pt;}
.yf1_c00075{bottom:162.091123pt;}
.yf0_c00075{bottom:162.482667pt;}
.yef_c00075{bottom:172.532747pt;}
.yee_c00075{bottom:172.785661pt;}
.yed_c00075{bottom:173.377307pt;}
.yec_c00075{bottom:173.784559pt;}
.yeb_c00075{bottom:174.103456pt;}
.yea_c00075{bottom:174.838173pt;}
.ye9_c00075{bottom:174.959304pt;}
.y1e_c00075{bottom:175.754792pt;}
.y1d_c00075{bottom:176.060608pt;}
.y1c_c00075{bottom:176.272269pt;}
.y1b_c00075{bottom:177.055355pt;}
.y1a_c00075{bottom:177.391280pt;}
.y19_c00075{bottom:177.841333pt;}
.ye8_c00075{bottom:188.605263pt;}
.ye7_c00075{bottom:189.604659pt;}
.ye6_c00075{bottom:189.927069pt;}
.ye5_c00075{bottom:190.763628pt;}
.y3f_c00075{bottom:191.128200pt;}
.ye4_c00075{bottom:191.522667pt;}
.y3e_c00075{bottom:191.755997pt;}
.y3d_c00075{bottom:192.310901pt;}
.y3c_c00075{bottom:192.516179pt;}
.y3b_c00075{bottom:192.733757pt;}
.y3a_c00075{bottom:193.419365pt;}
.y39_c00075{bottom:193.681333pt;}
.ye3_c00075{bottom:205.557333pt;}
.y18_c00075{bottom:209.040000pt;}
.ye2_c00075{bottom:221.158667pt;}
.y38_c00075{bottom:223.790640pt;}
.y37_c00075{bottom:223.964077pt;}
.y36_c00075{bottom:224.273640pt;}
.y35_c00075{bottom:224.619891pt;}
.y34_c00075{bottom:224.846621pt;}
.y33_c00075{bottom:225.574144pt;}
.y32_c00075{bottom:226.319147pt;}
.ye1_c00075{bottom:236.258880pt;}
.ye0_c00075{bottom:236.480621pt;}
.ydf_c00075{bottom:237.099085pt;}
.yde_c00075{bottom:237.340931pt;}
.ydd_c00075{bottom:237.697203pt;}
.ydc_c00075{bottom:237.922341pt;}
.ydb_c00075{bottom:238.177627pt;}
.yda_c00075{bottom:238.685117pt;}
.yd9_c00075{bottom:239.041333pt;}
.y31_c00075{bottom:239.059381pt;}
.y30_c00075{bottom:239.691085pt;}
.y2f_c00075{bottom:239.825149pt;}
.y2e_c00075{bottom:240.214045pt;}
.y2d_c00075{bottom:240.564061pt;}
.y2c_c00075{bottom:240.732517pt;}
.y2b_c00075{bottom:241.371781pt;}
.y2a_c00075{bottom:242.184109pt;}
.y29_c00075{bottom:242.641333pt;}
.yd8_c00075{bottom:253.420000pt;}
.y17_c00075{bottom:255.838980pt;}
.y16_c00075{bottom:256.234831pt;}
.y15_c00075{bottom:256.932329pt;}
.y14_c00075{bottom:257.279016pt;}
.y13_c00075{bottom:257.605031pt;}
.y12_c00075{bottom:258.213903pt;}
.y11_c00075{bottom:258.478921pt;}
.yd7_c00075{bottom:269.500000pt;}
.ya_c00075{bottom:272.770045pt;}
.yb_c00075{bottom:272.770665pt;}
.yf_c00075{bottom:272.771105pt;}
.y10_c00075{bottom:272.771177pt;}
.yc_c00075{bottom:272.771248pt;}
.yd_c00075{bottom:272.771369pt;}
.ye_c00075{bottom:272.771384pt;}
.yd6_c00075{bottom:284.177356pt;}
.yd5_c00075{bottom:284.422043pt;}
.yd4_c00075{bottom:285.405527pt;}
.yd3_c00075{bottom:285.919879pt;}
.yd2_c00075{bottom:286.368475pt;}
.yd1_c00075{bottom:286.976644pt;}
.yd0_c00075{bottom:287.282667pt;}
.y9_c00075{bottom:287.504240pt;}
.y8_c00075{bottom:288.112477pt;}
.y7_c00075{bottom:288.317497pt;}
.y6_c00075{bottom:288.770581pt;}
.y5_c00075{bottom:289.425761pt;}
.y4_c00075{bottom:290.005869pt;}
.y3_c00075{bottom:290.291628pt;}
.y2_c00075{bottom:290.642667pt;}
.ycf_c00075{bottom:317.988327pt;}
.yce_c00075{bottom:318.542287pt;}
.ycd_c00075{bottom:319.489367pt;}
.ycc_c00075{bottom:319.957207pt;}
.ycb_c00075{bottom:320.767327pt;}
.yca_c00075{bottom:321.307327pt;}
.yc9_c00075{bottom:321.662927pt;}
.yc8_c00075{bottom:321.991507pt;}
.yc7_c00075{bottom:322.322667pt;}
.yc6_c00075{bottom:337.127957pt;}
.yc5_c00075{bottom:337.934507pt;}
.yc4_c00075{bottom:338.304384pt;}
.yc3_c00075{bottom:338.588565pt;}
.yc2_c00075{bottom:339.321963pt;}
.yc1_c00075{bottom:340.420309pt;}
.yc0_c00075{bottom:341.030848pt;}
.ybf_c00075{bottom:341.411136pt;}
.ybe_c00075{bottom:341.718165pt;}
.ybd_c00075{bottom:342.289877pt;}
.ybc_c00075{bottom:342.586325pt;}
.ybb_c00075{bottom:342.962667pt;}
.yba_c00075{bottom:358.899361pt;}
.yb9_c00075{bottom:359.326975pt;}
.yb8_c00075{bottom:360.276148pt;}
.yb7_c00075{bottom:360.553880pt;}
.yb6_c00075{bottom:360.800291pt;}
.yb5_c00075{bottom:361.630384pt;}
.yb4_c00075{bottom:362.323163pt;}
.yb3_c00075{bottom:362.641333pt;}
.yb2_c00075{bottom:381.032325pt;}
.yb1_c00075{bottom:381.332541pt;}
.yb0_c00075{bottom:381.894673pt;}
.yaf_c00075{bottom:382.264435pt;}
.yae_c00075{bottom:382.511145pt;}
.yad_c00075{bottom:383.279035pt;}
.yac_c00075{bottom:400.516168pt;}
.yab_c00075{bottom:400.956868pt;}
.yaa_c00075{bottom:402.018032pt;}
.ya9_c00075{bottom:402.763400pt;}
.ya8_c00075{bottom:403.311913pt;}
.ya7_c00075{bottom:403.793087pt;}
.ya6_c00075{bottom:404.161333pt;}
.ya5_c00075{bottom:420.612447pt;}
.ya4_c00075{bottom:420.842376pt;}
.ya3_c00075{bottom:421.063623pt;}
.ya2_c00075{bottom:421.383195pt;}
.ya1_c00075{bottom:421.688863pt;}
.ya0_c00075{bottom:422.235797pt;}
.y9f_c00075{bottom:422.621237pt;}
.y9e_c00075{bottom:422.916991pt;}
.y9d_c00075{bottom:423.141053pt;}
.y9c_c00075{bottom:423.598213pt;}
.y9b_c00075{bottom:423.785609pt;}
.y9a_c00075{bottom:424.081333pt;}
.y99_c00075{bottom:439.742403pt;}
.y98_c00075{bottom:440.206468pt;}
.y97_c00075{bottom:440.879764pt;}
.y96_c00075{bottom:441.304812pt;}
.y95_c00075{bottom:441.903921pt;}
.y94_c00075{bottom:442.481191pt;}
.y93_c00075{bottom:442.798755pt;}
.y92_c00075{bottom:442.989716pt;}
.y91_c00075{bottom:443.554436pt;}
.y90_c00075{bottom:444.059304pt;}
.y8f_c00075{bottom:444.721333pt;}
.y8e_c00075{bottom:460.413307pt;}
.y8d_c00075{bottom:461.307987pt;}
.y8c_c00075{bottom:461.842893pt;}
.y8b_c00075{bottom:462.121280pt;}
.y8a_c00075{bottom:462.512507pt;}
.y89_c00075{bottom:462.666147pt;}
.y88_c00075{bottom:463.251720pt;}
.y87_c00075{bottom:463.606560pt;}
.y86_c00075{bottom:464.401333pt;}
.y85_c00075{bottom:483.278667pt;}
.y84_c00075{bottom:501.529669pt;}
.y83_c00075{bottom:501.762581pt;}
.y82_c00075{bottom:502.007461pt;}
.y81_c00075{bottom:502.462565pt;}
.y80_c00075{bottom:503.003861pt;}
.y7f_c00075{bottom:503.499461pt;}
.y7e_c00075{bottom:503.761653pt;}
.y7d_c00075{bottom:504.406581pt;}
.y7c_c00075{bottom:505.201333pt;}
.y7b_c00075{bottom:522.000936pt;}
.y7a_c00075{bottom:522.317311pt;}
.y79_c00075{bottom:522.536416pt;}
.y78_c00075{bottom:522.744961pt;}
.y77_c00075{bottom:523.151580pt;}
.y76_c00075{bottom:523.352205pt;}
.y75_c00075{bottom:523.681780pt;}
.y74_c00075{bottom:524.263035pt;}
.y73_c00075{bottom:524.519100pt;}
.y72_c00075{bottom:524.838643pt;}
.y71_c00075{bottom:525.120580pt;}
.y70_c00075{bottom:525.361333pt;}
.y6f_c00075{bottom:542.329485pt;}
.y6e_c00075{bottom:542.817797pt;}
.y6d_c00075{bottom:543.274547pt;}
.y6c_c00075{bottom:543.714957pt;}
.y6b_c00075{bottom:544.042479pt;}
.y6a_c00075{bottom:544.409761pt;}
.y69_c00075{bottom:544.921540pt;}
.y68_c00075{bottom:545.521333pt;}
.y67_c00075{bottom:564.113333pt;}
.y66_c00075{bottom:582.671317pt;}
.y65_c00075{bottom:583.117125pt;}
.y64_c00075{bottom:583.299589pt;}
.y63_c00075{bottom:584.134341pt;}
.y62_c00075{bottom:584.716101pt;}
.y61_c00075{bottom:585.295013pt;}
.y60_c00075{bottom:586.081333pt;}
.y5f_c00075{bottom:603.403013pt;}
.y5e_c00075{bottom:603.840325pt;}
.y5d_c00075{bottom:604.294773pt;}
.y5c_c00075{bottom:604.568485pt;}
.y5b_c00075{bottom:604.764757pt;}
.y5a_c00075{bottom:604.960725pt;}
.y59_c00075{bottom:605.747013pt;}
.y58_c00075{bottom:606.092005pt;}
.y57_c00075{bottom:606.481333pt;}
.y56_c00075{bottom:645.986667pt;}
.y55_c00075{bottom:664.501307pt;}
.y54_c00075{bottom:664.760133pt;}
.y53_c00075{bottom:665.319480pt;}
.y52_c00075{bottom:665.564680pt;}
.y51_c00075{bottom:666.003787pt;}
.y50_c00075{bottom:666.318120pt;}
.y4f_c00075{bottom:666.719000pt;}
.y4e_c00075{bottom:667.201333pt;}
.y4d_c00075{bottom:686.008000pt;}
.y1_c00075{bottom:687.356000pt;}
.y4c_c00075{bottom:707.045333pt;}
.y4b_c00075{bottom:725.497560pt;}
.y4a_c00075{bottom:725.838053pt;}
.y49_c00075{bottom:726.164413pt;}
.y48_c00075{bottom:726.401813pt;}
.y47_c00075{bottom:726.582147pt;}
.y46_c00075{bottom:726.934973pt;}
.y45_c00075{bottom:727.133853pt;}
.y44_c00075{bottom:727.602147pt;}
.y43_c00075{bottom:727.817733pt;}
.y42_c00075{bottom:728.218920pt;}
.y41_c00075{bottom:728.401333pt;}
.y28_c00075{bottom:766.093333pt;}
.h9_c00075{height:29.866667pt;}
.h26_c00075{height:42.933333pt;}
.h3_c00075{height:42.939537pt;}
.h29_c00075{height:43.866667pt;}
.h7_c00075{height:43.870965pt;}
.h2a_c00075{height:43.871601pt;}
.h8_c00075{height:43.874584pt;}
.h6_c00075{height:44.800000pt;}
.h28_c00075{height:44.806473pt;}
.hc_c00075{height:44.807257pt;}
.h4_c00075{height:45.739941pt;}
.h24_c00075{height:46.666667pt;}
.he_c00075{height:46.671240pt;}
.h5_c00075{height:46.673410pt;}
.hd_c00075{height:46.674226pt;}
.h25_c00075{height:47.604665pt;}
.h22_c00075{height:47.606878pt;}
.h23_c00075{height:48.533333pt;}
.h2b_c00075{height:49.472231pt;}
.h2c_c00075{height:51.333333pt;}
.h27_c00075{height:52.266667pt;}
.ha_c00075{height:53.200000pt;}
.h2_c00075{height:56.000000pt;}
.h19_c00075{height:58.804233pt;}
.h1a_c00075{height:60.666667pt;}
.h1d_c00075{height:60.670337pt;}
.h21_c00075{height:60.673491pt;}
.h20_c00075{height:60.674432pt;}
.h1b_c00075{height:61.603080pt;}
.h18_c00075{height:61.603727pt;}
.h1c_c00075{height:61.605205pt;}
.h17_c00075{height:62.537116pt;}
.h1f_c00075{height:62.538617pt;}
.h12_c00075{height:63.466667pt;}
.h2d_c00075{height:63.480660pt;}
.h11_c00075{height:64.400000pt;}
.h14_c00075{height:64.404637pt;}
.h1e_c00075{height:64.405442pt;}
.h16_c00075{height:65.333333pt;}
.h10_c00075{height:66.269980pt;}
.h15_c00075{height:67.204838pt;}
.h13_c00075{height:69.070120pt;}
.hf_c00075{height:91.479883pt;}
.hb_c00075{height:121.333333pt;}
.h0_c00075{height:896.400000pt;}
.h1_c00075{height:896.666667pt;}
.w0_c00075{width:632.640000pt;}
.w1_c00075{width:632.666667pt;}
.x0_c00075{left:0.000000pt;}
.x1c_c00075{left:140.058667pt;}
.xd_c00075{left:141.837660pt;}
.x6_c00075{left:150.813333pt;}
.x30_c00075{left:152.032531pt;}
.x14_c00075{left:157.289408pt;}
.x35_c00075{left:158.990667pt;}
.xb3_c00075{left:163.293333pt;}
.x2c_c00075{left:166.417333pt;}
.x7_c00075{left:171.462667pt;}
.x8d_c00075{left:173.100000pt;}
.x88_c00075{left:174.566667pt;}
.x6b_c00075{left:175.541333pt;}
.x61_c00075{left:176.516000pt;}
.x53_c00075{left:177.704000pt;}
.x1_c00075{left:179.040000pt;}
.x1a_c00075{left:181.680000pt;}
.xe_c00075{left:184.323279pt;}
.x20_c00075{left:185.606667pt;}
.xb4_c00075{left:186.834147pt;}
.x8_c00075{left:188.272000pt;}
.x85_c00075{left:190.445844pt;}
.x15_c00075{left:193.105408pt;}
.xf_c00075{left:194.644937pt;}
.x95_c00075{left:195.668000pt;}
.x2_c00075{left:196.800000pt;}
.x62_c00075{left:198.402667pt;}
.x31_c00075{left:201.720552pt;}
.x21_c00075{left:203.594667pt;}
.x3b_c00075{left:204.894667pt;}
.x36_c00075{left:207.962667pt;}
.x54_c00075{left:210.148000pt;}
.x16_c00075{left:212.282741pt;}
.x1b_c00075{left:215.040000pt;}
.x96_c00075{left:217.573333pt;}
.x7c_c00075{left:218.990667pt;}
.xb5_c00075{left:219.965380pt;}
.x3_c00075{left:221.520000pt;}
.x10_c00075{left:222.488984pt;}
.x37_c00075{left:223.504000pt;}
.x28_c00075{left:224.640000pt;}
.x49_c00075{left:227.398667pt;}
.x26_c00075{left:228.480000pt;}
.x5d_c00075{left:231.517333pt;}
.x17_c00075{left:232.676075pt;}
.x3c_c00075{left:237.040000pt;}
.x38_c00075{left:238.166667pt;}
.x82_c00075{left:240.390667pt;}
.x6c_c00075{left:241.770667pt;}
.x56_c00075{left:242.745333pt;}
.x4e_c00075{left:245.280000pt;}
.x22_c00075{left:247.054667pt;}
.x4_c00075{left:251.040000pt;}
.x1d_c00075{left:252.134667pt;}
.x63_c00075{left:253.082667pt;}
.x11_c00075{left:254.654277pt;}
.x29_c00075{left:256.800000pt;}
.x3d_c00075{left:258.598667pt;}
.xb6_c00075{left:259.800727pt;}
.x9_c00075{left:260.936000pt;}
.x23_c00075{left:263.856000pt;}
.x32_c00075{left:265.330651pt;}
.x1e_c00075{left:267.253333pt;}
.x8e_c00075{left:270.070667pt;}
.x5_c00075{left:271.920000pt;}
.x18_c00075{left:273.705408pt;}
.x2d_c00075{left:275.865333pt;}
.x39_c00075{left:277.802667pt;}
.x7d_c00075{left:280.920000pt;}
.x83_c00075{left:282.584000pt;}
.x12_c00075{left:283.698664pt;}
.xa_c00075{left:287.588000pt;}
.x1f_c00075{left:289.097333pt;}
.x2b_c00075{left:290.640000pt;}
.x86_c00075{left:291.983147pt;}
.x24_c00075{left:293.629333pt;}
.x27_c00075{left:295.440000pt;}
.x19_c00075{left:296.990741pt;}
.xb_c00075{left:299.648000pt;}
.x13_c00075{left:303.621755pt;}
.x2e_c00075{left:304.918667pt;}
.x7e_c00075{left:307.806667pt;}
.x33_c00075{left:309.026336pt;}
.x25_c00075{left:310.177333pt;}
.x2a_c00075{left:312.240000pt;}
.x45_c00075{left:313.440000pt;}
.x89_c00075{left:316.185333pt;}
.x6d_c00075{left:317.364000pt;}
.x34_c00075{left:320.588293pt;}
.x3a_c00075{left:322.645333pt;}
.x3e_c00075{left:325.316000pt;}
.x64_c00075{left:329.202667pt;}
.x8f_c00075{left:331.997333pt;}
.xc_c00075{left:335.426667pt;}
.x4f_c00075{left:337.680000pt;}
.x2f_c00075{left:340.013333pt;}
.x5e_c00075{left:341.206667pt;}
.x4a_c00075{left:342.830667pt;}
.x73_c00075{left:348.604000pt;}
.x46_c00075{left:349.680000pt;}
.x5a_c00075{left:351.360000pt;}
.xb1_c00075{left:353.369333pt;}
.x8a_c00075{left:356.504000pt;}
.x70_c00075{left:357.600000pt;}
.x65_c00075{left:359.164000pt;}
.x3f_c00075{left:360.598667pt;}
.x97_c00075{left:362.477333pt;}
.x99_c00075{left:363.449333pt;}
.x44_c00075{left:364.560000pt;}
.x4b_c00075{left:367.350667pt;}
.x47_c00075{left:370.800000pt;}
.x5b_c00075{left:373.200000pt;}
.x66_c00075{left:377.402667pt;}
.x40_c00075{left:378.632000pt;}
.x5f_c00075{left:381.244000pt;}
.xa4_c00075{left:383.640000pt;}
.x87_c00075{left:385.106769pt;}
.x71_c00075{left:386.640000pt;}
.xb7_c00075{left:390.720000pt;}
.x7f_c00075{left:392.568000pt;}
.x77_c00075{left:394.420000pt;}
.x55_c00075{left:397.788000pt;}
.x90_c00075{left:400.644000pt;}
.x41_c00075{left:402.372000pt;}
.x6e_c00075{left:403.772000pt;}
.x50_c00075{left:404.880000pt;}
.x48_c00075{left:406.800000pt;}
.x57_c00075{left:409.030667pt;}
.xb0_c00075{left:410.640000pt;}
.x67_c00075{left:414.368000pt;}
.x9a_c00075{left:417.225333pt;}
.x5c_c00075{left:418.560000pt;}
.x80_c00075{left:420.356000pt;}
.x51_c00075{left:421.440000pt;}
.x4c_c00075{left:423.285333pt;}
.x58_c00075{left:424.236000pt;}
.x98_c00075{left:425.616000pt;}
.xb8_c00075{left:427.200000pt;}
.x8b_c00075{left:429.517333pt;}
.x74_c00075{left:430.929333pt;}
.x68_c00075{left:433.326667pt;}
.x42_c00075{left:435.008000pt;}
.xa5_c00075{left:438.124000pt;}
.x78_c00075{left:440.505333pt;}
.x6f_c00075{left:441.697333pt;}
.x9b_c00075{left:443.613333pt;}
.xab_c00075{left:445.440000pt;}
.x91_c00075{left:446.481333pt;}
.xa1_c00075{left:448.080000pt;}
.x4d_c00075{left:449.168000pt;}
.x69_c00075{left:453.245333pt;}
.xa6_c00075{left:454.205333pt;}
.x84_c00075{left:455.448000pt;}
.x72_c00075{left:458.640000pt;}
.x52_c00075{left:460.320000pt;}
.x59_c00075{left:461.386667pt;}
.x8c_c00075{left:462.410667pt;}
.x92_c00075{left:464.242667pt;}
.xb2_c00075{left:466.193333pt;}
.x60_c00075{left:467.158667pt;}
.x43_c00075{left:469.057333pt;}
.xbb_c00075{left:471.960000pt;}
.x79_c00075{left:473.201333pt;}
.x9e_c00075{left:474.480000pt;}
.xa7_c00075{left:479.653333pt;}
.x6a_c00075{left:482.006667pt;}
.x75_c00075{left:484.420000pt;}
.xac_c00075{left:486.240000pt;}
.x93_c00075{left:487.360000pt;}
.x81_c00075{left:490.424000pt;}
.xbc_c00075{left:492.365333pt;}
.xa2_c00075{left:495.600000pt;}
.xa8_c00075{left:496.928000pt;}
.xad_c00075{left:499.680000pt;}
.x9f_c00075{left:504.240000pt;}
.xbe_c00075{left:506.528833pt;}
.xb9_c00075{left:507.600000pt;}
.xa3_c00075{left:516.240000pt;}
.xae_c00075{left:518.400000pt;}
.xbf_c00075{left:522.442667pt;}
.x7a_c00075{left:524.993333pt;}
.x9c_c00075{left:531.721333pt;}
.x94_c00075{left:537.769333pt;}
.xa9_c00075{left:541.104000pt;}
.xaf_c00075{left:543.120000pt;}
.x9d_c00075{left:546.114667pt;}
.xbd_c00075{left:547.366667pt;}
.xba_c00075{left:552.000000pt;}
.xa0_c00075{left:553.440000pt;}
.xaa_c00075{left:556.942667pt;}
.x7b_c00075{left:560.690667pt;}
.xc0_c00075{left:564.225333pt;}
.x76_c00075{left:573.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m43_c00076{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m129_c00076{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.m119_c00076{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);}
.m8b_c00076{transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{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);}
.m95_c00076{transform:matrix(0.128405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128405,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{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);}
.maf_c00076{transform:matrix(0.142919,0.001286,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142919,0.001286,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142919,0.001286,-0.002250,0.249990,0,0);}
.m5c_c00076{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);}
.m61_c00076{transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{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);}
.mde_c00076{transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);}
.mad_c00076{transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);}
.mb0_c00076{transform:matrix(0.150774,0.001357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150774,0.001357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150774,0.001357,-0.002250,0.249990,0,0);}
.m111_c00076{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);}
.m7a_c00076{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);}
.m126_c00076{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);}
.mc7_c00076{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);}
.m4e_c00076{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);}
.m83_c00076{transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);}
.m97_c00076{transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);}
.m112_c00076{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);}
.m2_c00076{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);}
.m34_c00076{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);}
.m7c_c00076{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{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);}
.m29_c00076{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);}
.m7f_c00076{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);}
.md4_c00076{transform:matrix(0.163185,0.001305,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163185,0.001305,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163185,0.001305,-0.002000,0.249992,0,0);}
.m9_c00076{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);}
.m80_c00076{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);}
.m45_c00076{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);}
.m9c_c00076{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);}
.m78_c00076{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);}
.m58_c00076{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);}
.m35_c00076{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);}
.m127_c00076{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);}
.mb7_c00076{transform:matrix(0.166912,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166912,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166912,0.001669,-0.002500,0.249988,0,0);}
.m79_c00076{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{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);}
.m4_c00076{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);}
.m10b_c00076{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);}
.m3_c00076{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);}
.m100_c00076{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);}
.mcd_c00076{transform:matrix(0.169855,0.001359,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169855,0.001359,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169855,0.001359,-0.002000,0.249992,0,0);}
.md6_c00076{transform:matrix(0.170285,0.001362,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170285,0.001362,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170285,0.001362,-0.002000,0.249992,0,0);}
.m37_c00076{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);}
.mfd_c00076{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_c00076{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);}
.m7b_c00076{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);}
.m102_c00076{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);}
.m22_c00076{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);}
.m72_c00076{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);}
.m93_c00076{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);}
.m4d_c00076{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);}
.mb9_c00076{transform:matrix(0.172441,0.001724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172441,0.001724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172441,0.001724,-0.002500,0.249988,0,0);}
.m117_c00076{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);}
.m63_c00076{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);}
.m90_c00076{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);}
.m113_c00076{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);}
.m50_c00076{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);}
.m5d_c00076{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);}
.mb3_c00076{transform:matrix(0.174438,0.001570,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174438,0.001570,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174438,0.001570,-0.002250,0.249990,0,0);}
.m32_c00076{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);}
.m8a_c00076{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);}
.m4f_c00076{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);}
.m65_c00076{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);}
.mc5_c00076{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);}
.m121_c00076{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);}
.m114_c00076{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);}
.mfe_c00076{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);}
.m84_c00076{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);}
.m31_c00076{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);}
.m2c_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);}
.m71_c00076{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);}
.m5f_c00076{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);}
.mae_c00076{transform:matrix(0.179738,0.001618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179738,0.001618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179738,0.001618,-0.002250,0.249990,0,0);}
.mcc_c00076{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);}
.m25_c00076{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);}
.m106_c00076{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);}
.m104_c00076{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);}
.mb2_c00076{transform:matrix(0.181153,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181153,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181153,0.001630,-0.002250,0.249990,0,0);}
.m12a_c00076{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);}
.m68_c00076{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);}
.m33_c00076{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);}
.mac_c00076{transform:matrix(0.182378,0.001641,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182378,0.001641,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182378,0.001641,-0.002250,0.249990,0,0);}
.m123_c00076{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);}
.mcf_c00076{transform:matrix(0.183294,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183294,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183294,0.001466,-0.002000,0.249992,0,0);}
.me2_c00076{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);}
.m99_c00076{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);}
.mca_c00076{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);}
.m81_c00076{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);}
.m16_c00076{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);}
.m49_c00076{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);}
.me8_c00076{transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);}
.m12d_c00076{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);}
.m122_c00076{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);}
.m131_c00076{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);}
.m6c_c00076{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);}
.md_c00076{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m12c_c00076{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);}
.m103_c00076{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);}
.m11_c00076{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{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);}
.m8f_c00076{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);}
.m115_c00076{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);}
.m10a_c00076{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);}
.mf4_c00076{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);}
.m5b_c00076{transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{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);}
.m30_c00076{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);}
.m2a_c00076{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);}
.m59_c00076{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);}
.mf9_c00076{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);}
.me9_c00076{transform:matrix(0.190482,0.001714,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190482,0.001714,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190482,0.001714,-0.002250,0.249990,0,0);}
.m128_c00076{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);}
.md0_c00076{transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);}
.m85_c00076{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);}
.m3e_c00076{transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{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);}
.m10c_c00076{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);}
.mda_c00076{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);}
.md8_c00076{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);}
.m2f_c00076{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);}
.m40_c00076{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);}
.mce_c00076{transform:matrix(0.192439,0.001540,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192439,0.001540,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192439,0.001540,-0.002000,0.249992,0,0);}
.md1_c00076{transform:matrix(0.193049,0.001544,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193049,0.001544,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193049,0.001544,-0.002000,0.249992,0,0);}
.m3a_c00076{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);}
.m77_c00076{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);}
.mbe_c00076{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);}
.m92_c00076{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);}
.m36_c00076{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);}
.m62_c00076{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);}
.m116_c00076{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);}
.mbf_c00076{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);}
.m9d_c00076{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);}
.m110_c00076{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);}
.m8d_c00076{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);}
.m86_c00076{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);}
.mdc_c00076{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);}
.m82_c00076{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);}
.m4b_c00076{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);}
.m107_c00076{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);}
.m75_c00076{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);}
.me5_c00076{transform:matrix(0.196177,0.001766,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196177,0.001766,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196177,0.001766,-0.002250,0.249990,0,0);}
.m1_c00076{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);}
.m108_c00076{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);}
.m6b_c00076{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);}
.mb1_c00076{transform:matrix(0.196817,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196817,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196817,0.001771,-0.002250,0.249990,0,0);}
.m4a_c00076{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);}
.m13_c00076{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);}
.mf8_c00076{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);}
.m11f_c00076{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);}
.m12e_c00076{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);}
.mec_c00076{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);}
.m39_c00076{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);}
.mbd_c00076{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);}
.m38_c00076{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);}
.m130_c00076{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);}
.mff_c00076{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);}
.mc_c00076{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);}
.mdd_c00076{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);}
.mf1_c00076{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);}
.m47_c00076{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{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);}
.m105_c00076{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);}
.mee_c00076{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);}
.maa_c00076{transform:matrix(0.201670,0.002017,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201670,0.002017,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201670,0.002017,-0.002500,0.249988,0,0);}
.m3b_c00076{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);}
.m125_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);}
.m2d_c00076{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);}
.mc1_c00076{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);}
.m6e_c00076{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);}
.m73_c00076{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);}
.m2e_c00076{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);}
.me_c00076{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);}
.m18_c00076{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);}
.m23_c00076{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.mdf_c00076{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);}
.me6_c00076{transform:matrix(0.204557,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204557,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204557,0.001841,-0.002250,0.249990,0,0);}
.m44_c00076{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);}
.m1c_c00076{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);}
.m118_c00076{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);}
.md7_c00076{transform:matrix(0.205348,0.001643,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205348,0.001643,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205348,0.001643,-0.002000,0.249992,0,0);}
.m10_c00076{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);}
.m11e_c00076{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);}
.md2_c00076{transform:matrix(0.206633,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206633,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206633,0.001653,-0.002000,0.249992,0,0);}
.m48_c00076{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);}
.m2b_c00076{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.mf6_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);}
.mb8_c00076{transform:matrix(0.207190,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207190,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207190,0.002072,-0.002500,0.249988,0,0);}
.ma2_c00076{transform:matrix(0.207220,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207220,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207220,0.002072,-0.002500,0.249988,0,0);}
.m70_c00076{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);}
.mef_c00076{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_c00076{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);}
.md5_c00076{transform:matrix(0.208538,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208538,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208538,0.001668,-0.002000,0.249992,0,0);}
.m5a_c00076{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);}
.m28_c00076{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);}
.mc8_c00076{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);}
.m17_c00076{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);}
.m11d_c00076{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);}
.med_c00076{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);}
.m26_c00076{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);}
.m9a_c00076{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);}
.mb6_c00076{transform:matrix(0.210639,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210639,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210639,0.002106,-0.002500,0.249988,0,0);}
.m89_c00076{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);}
.m94_c00076{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);}
.m7d_c00076{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);}
.m101_c00076{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);}
.m60_c00076{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);}
.m5e_c00076{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);}
.m20_c00076{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);}
.mb4_c00076{transform:matrix(0.212954,0.002130,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212954,0.002130,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212954,0.002130,-0.002500,0.249988,0,0);}
.mbc_c00076{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);}
.m21_c00076{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);}
.m10f_c00076{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);}
.m27_c00076{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);}
.mfb_c00076{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);}
.m12f_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);}
.m46_c00076{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);}
.m41_c00076{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);}
.mf2_c00076{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);}
.m12b_c00076{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);}
.mc3_c00076{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);}
.m98_c00076{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);}
.m88_c00076{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);}
.mf_c00076{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);}
.mb5_c00076{transform:matrix(0.219784,0.002198,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219784,0.002198,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219784,0.002198,-0.002500,0.249988,0,0);}
.md9_c00076{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);}
.mfc_c00076{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);}
.m6f_c00076{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);}
.m74_c00076{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);}
.m1e_c00076{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);}
.m6a_c00076{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);}
.m10e_c00076{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.mc2_c00076{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);}
.me4_c00076{transform:matrix(0.222991,0.002007,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222991,0.002007,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222991,0.002007,-0.002250,0.249990,0,0);}
.m64_c00076{transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{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);}
.m10d_c00076{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{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);}
.ma3_c00076{transform:matrix(0.224534,0.002245,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224534,0.002245,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224534,0.002245,-0.002500,0.249988,0,0);}
.m15_c00076{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);}
.m11a_c00076{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);}
.mea_c00076{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);}
.mc0_c00076{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);}
.ma6_c00076{transform:matrix(0.228544,0.002285,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228544,0.002285,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228544,0.002285,-0.002500,0.249988,0,0);}
.m11b_c00076{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);}
.mdb_c00076{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_c00076{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);}
.mf5_c00076{transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);}
.m9f_c00076{transform:matrix(0.232393,0.002324,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232393,0.002324,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232393,0.002324,-0.002500,0.249988,0,0);}
.m24_c00076{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.md3_c00076{transform:matrix(0.233953,0.001872,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233953,0.001872,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233953,0.001872,-0.002000,0.249992,0,0);}
.m6d_c00076{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);}
.ma0_c00076{transform:matrix(0.234263,0.002343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234263,0.002343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234263,0.002343,-0.002500,0.249988,0,0);}
.m1a_c00076{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);}
.m109_c00076{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);}
.m66_c00076{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);}
.mf0_c00076{transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);}
.mcb_c00076{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.236810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236810,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.m11c_c00076{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);}
.ma4_c00076{transform:matrix(0.238703,0.002387,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238703,0.002387,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238703,0.002387,-0.002500,0.249988,0,0);}
.m3c_c00076{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);}
.mf3_c00076{transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{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);}
.m7_c00076{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.me7_c00076{transform:matrix(0.243165,0.002188,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243165,0.002188,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243165,0.002188,-0.002250,0.249990,0,0);}
.me3_c00076{transform:matrix(0.245130,0.002206,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245130,0.002206,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245130,0.002206,-0.002250,0.249990,0,0);}
.mc4_c00076{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);}
.mfa_c00076{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);}
.ma5_c00076{transform:matrix(0.246908,0.002469,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246908,0.002469,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246908,0.002469,-0.002500,0.249988,0,0);}
.m67_c00076{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{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);}
.m124_c00076{transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);}
.mab_c00076{transform:matrix(0.265089,0.002386,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265089,0.002386,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265089,0.002386,-0.002250,0.249990,0,0);}
.ma8_c00076{transform:matrix(0.265432,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265432,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265432,0.002654,-0.002500,0.249988,0,0);}
.ma7_c00076{transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);}
.mba_c00076{transform:matrix(0.274841,0.002748,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274841,0.002748,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274841,0.002748,-0.002500,0.249988,0,0);}
.m8c_c00076{transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285445,0.000000,0.000000,0.250000,0,0);}
.mf7_c00076{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.m120_c00076{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);}
.mbb_c00076{transform:matrix(0.299065,0.002991,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299065,0.002991,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299065,0.002991,-0.002500,0.249988,0,0);}
.m3f_c00076{transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00076{transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);}
.me1_c00076{transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326395,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326645,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326940,0.000000,0.000000,0.250000,0,0);}
.ma1_c00076{transform:matrix(0.327869,0.003279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.327869,0.003279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.327869,0.003279,-0.002500,0.249988,0,0);}
.meb_c00076{transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.345185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345185,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.395915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395915,0.000000,0.000000,0.250000,0,0);}
.ma9_c00076{transform:matrix(0.415284,0.004153,-0.002500,0.249988,0,0);-ms-transform:matrix(0.415284,0.004153,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.415284,0.004153,-0.002500,0.249988,0,0);}
.me0_c00076{transform:matrix(0.422455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422455,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{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);}
.m52_c00076{transform:matrix(0.452640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452640,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.614995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614995,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.709420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709420,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;}
.fs0_c00076{font-size:16.800000px;}
.fs18_c00076{font-size:46.200000px;}
.fs5_c00076{font-size:49.350000px;}
.fs4_c00076{font-size:50.400000px;}
.fs3_c00076{font-size:51.450000px;}
.fs2_c00076{font-size:52.500000px;}
.fs16_c00076{font-size:53.550000px;}
.fs17_c00076{font-size:54.600000px;}
.fs6_c00076{font-size:61.950000px;}
.fs15_c00076{font-size:63.000000px;}
.fs11_c00076{font-size:64.050000px;}
.fsa_c00076{font-size:65.100000px;}
.fse_c00076{font-size:65.103255px;}
.fs14_c00076{font-size:67.202722px;}
.fsd_c00076{font-size:68.250000px;}
.fsc_c00076{font-size:70.350000px;}
.fs12_c00076{font-size:70.352251px;}
.fs9_c00076{font-size:71.400000px;}
.fsf_c00076{font-size:71.403570px;}
.fsb_c00076{font-size:72.450000px;}
.fs10_c00076{font-size:72.452934px;}
.fs13_c00076{font-size:73.500000px;}
.fs8_c00076{font-size:75.600000px;}
.fs1_c00076{font-size:76.650000px;}
.fs7_c00076{font-size:87.150000px;}
.y0_c00076{bottom:0.000000px;}
.y12_c00076{bottom:128.712000px;}
.y5b_c00076{bottom:128.787000px;}
.y11_c00076{bottom:129.225000px;}
.y10_c00076{bottom:130.084500px;}
.yf_c00076{bottom:130.347000px;}
.ye_c00076{bottom:131.418000px;}
.yd_c00076{bottom:132.033000px;}
.y5a_c00076{bottom:145.924500px;}
.yc_c00076{bottom:148.005000px;}
.y59_c00076{bottom:163.705500px;}
.yb_c00076{bottom:166.192500px;}
.y58_c00076{bottom:182.002500px;}
.ya_c00076{bottom:184.291500px;}
.y57_c00076{bottom:199.506000px;}
.y9_c00076{bottom:201.859500px;}
.y56_c00076{bottom:217.522500px;}
.y8_c00076{bottom:219.954000px;}
.y55_c00076{bottom:235.384500px;}
.y7_c00076{bottom:237.586500px;}
.y54_c00076{bottom:253.129500px;}
.y6_c00076{bottom:255.438000px;}
.y53_c00076{bottom:270.792000px;}
.y5_c00076{bottom:273.415500px;}
.y52_c00076{bottom:288.613500px;}
.y4_c00076{bottom:290.895000px;}
.y51_c00076{bottom:306.733500px;}
.y3_c00076{bottom:308.619000px;}
.y4f_c00076{bottom:342.741754px;}
.y4e_c00076{bottom:343.288585px;}
.y4d_c00076{bottom:343.516668px;}
.y4c_c00076{bottom:343.820728px;}
.y4b_c00076{bottom:344.413729px;}
.y4a_c00076{bottom:344.918778px;}
.y49_c00076{bottom:345.223500px;}
.y48_c00076{bottom:365.875500px;}
.y47_c00076{bottom:389.394000px;}
.y46_c00076{bottom:410.813700px;}
.y45_c00076{bottom:411.099072px;}
.y44_c00076{bottom:411.639024px;}
.y43_c00076{bottom:411.807564px;}
.y42_c00076{bottom:411.997620px;}
.y41_c00076{bottom:412.539864px;}
.y40_c00076{bottom:412.691064px;}
.y3f_c00076{bottom:412.943484px;}
.y3e_c00076{bottom:413.228616px;}
.y3d_c00076{bottom:413.563440px;}
.y3c_c00076{bottom:413.911500px;}
.y3b_c00076{bottom:435.663000px;}
.y3a_c00076{bottom:458.265000px;}
.y39_c00076{bottom:479.669985px;}
.y38_c00076{bottom:480.039300px;}
.y37_c00076{bottom:480.271980px;}
.y36_c00076{bottom:481.117305px;}
.y35_c00076{bottom:481.527960px;}
.y34_c00076{bottom:482.156700px;}
.y33_c00076{bottom:482.523885px;}
.y32_c00076{bottom:483.301500px;}
.y31_c00076{bottom:502.339470px;}
.y30_c00076{bottom:502.570374px;}
.y2f_c00076{bottom:503.036934px;}
.y2e_c00076{bottom:503.196909px;}
.y2d_c00076{bottom:503.508367px;}
.y2c_c00076{bottom:504.072168px;}
.y2b_c00076{bottom:504.288195px;}
.y2a_c00076{bottom:504.788667px;}
.y29_c00076{bottom:505.171500px;}
.y27_c00076{bottom:526.363800px;}
.y28_c00076{bottom:526.364145px;}
.y26_c00076{bottom:547.324440px;}
.y25_c00076{bottom:547.734765px;}
.y24_c00076{bottom:548.115480px;}
.y23_c00076{bottom:548.496405px;}
.y22_c00076{bottom:548.906055px;}
.y21_c00076{bottom:549.340335px;}
.y20_c00076{bottom:549.702165px;}
.y1f_c00076{bottom:549.867525px;}
.y1e_c00076{bottom:550.518090px;}
.y1d_c00076{bottom:550.801500px;}
.y1c_c00076{bottom:592.471500px;}
.y1b_c00076{bottom:615.243000px;}
.y1a_c00076{bottom:638.017500px;}
.y19_c00076{bottom:660.898500px;}
.y18_c00076{bottom:683.388000px;}
.y17_c00076{bottom:705.537000px;}
.y16_c00076{bottom:728.632500px;}
.y15_c00076{bottom:751.437000px;}
.y2_c00076{bottom:774.531000px;}
.y50_c00076{bottom:774.900000px;}
.y14_c00076{bottom:797.112000px;}
.y13_c00076{bottom:842.644500px;}
.y1_c00076{bottom:981.720000px;}
.h2_c00076{height:16.800000px;}
.h1a_c00076{height:46.200000px;}
.h7_c00076{height:49.350000px;}
.h6_c00076{height:50.400000px;}
.h5_c00076{height:51.450000px;}
.h4_c00076{height:52.500000px;}
.h18_c00076{height:53.550000px;}
.h19_c00076{height:54.600000px;}
.h8_c00076{height:61.950000px;}
.h17_c00076{height:63.000000px;}
.h13_c00076{height:64.050000px;}
.hc_c00076{height:65.100000px;}
.h10_c00076{height:65.103255px;}
.h16_c00076{height:67.202722px;}
.hf_c00076{height:68.250000px;}
.he_c00076{height:70.350000px;}
.h14_c00076{height:70.352251px;}
.hb_c00076{height:71.400000px;}
.h11_c00076{height:71.403570px;}
.hd_c00076{height:72.450000px;}
.h12_c00076{height:72.452934px;}
.h15_c00076{height:73.500000px;}
.ha_c00076{height:75.600000px;}
.h3_c00076{height:76.650000px;}
.h9_c00076{height:87.150000px;}
.h1_c00076{height:1005.000000px;}
.h0_c00076{height:1005.150000px;}
.w0_c00076{width:705.450000px;}
.w1_c00076{width:705.750000px;}
.x0_c00076{left:0.000000px;}
.x39_c00076{left:78.138000px;}
.x33_c00076{left:89.370000px;}
.x1d_c00076{left:92.340000px;}
.x7_c00076{left:99.360000px;}
.x23_c00076{left:101.250000px;}
.xd_c00076{left:102.330000px;}
.x13_c00076{left:118.800000px;}
.x3a_c00076{left:125.428500px;}
.x34_c00076{left:127.710000px;}
.x2a_c00076{left:129.870000px;}
.xe_c00076{left:131.220000px;}
.x2f_c00076{left:132.840000px;}
.x82_c00076{left:138.132000px;}
.x58_c00076{left:139.320000px;}
.x40_c00076{left:140.400000px;}
.x46_c00076{left:141.750000px;}
.x1_c00076{left:143.100000px;}
.x19_c00076{left:148.770000px;}
.x41_c00076{left:154.170000px;}
.x30_c00076{left:157.680000px;}
.x24_c00076{left:163.620000px;}
.x2_c00076{left:166.320000px;}
.x59_c00076{left:167.400000px;}
.x1a_c00076{left:169.560000px;}
.x42_c00076{left:172.260000px;}
.x26_c00076{left:175.230000px;}
.x62_c00076{left:179.820000px;}
.x3d_c00076{left:180.900000px;}
.x7e_c00076{left:182.250000px;}
.x14_c00076{left:183.870000px;}
.x86_c00076{left:185.760000px;}
.x2b_c00076{left:188.730000px;}
.x1e_c00076{left:189.810000px;}
.x3_c00076{left:191.970000px;}
.x50_c00076{left:193.050000px;}
.xf_c00076{left:198.720000px;}
.x1f_c00076{left:200.070000px;}
.x15_c00076{left:203.040000px;}
.x10_c00076{left:205.200000px;}
.x27_c00076{left:206.550000px;}
.x8_c00076{left:208.710000px;}
.x25_c00076{left:213.030000px;}
.x20_c00076{left:214.380000px;}
.x35_c00076{left:216.540000px;}
.x7b_c00076{left:221.400000px;}
.x9_c00076{left:224.100000px;}
.x31_c00076{left:228.150000px;}
.x47_c00076{left:230.040000px;}
.x5d_c00076{left:231.120000px;}
.x6c_c00076{left:234.216000px;}
.x16_c00076{left:237.060000px;}
.x1b_c00076{left:238.140000px;}
.xa_c00076{left:239.490000px;}
.x36_c00076{left:240.840000px;}
.x21_c00076{left:242.460000px;}
.x56_c00076{left:243.810000px;}
.x32_c00076{left:244.890000px;}
.x11_c00076{left:249.480000px;}
.x6d_c00076{left:250.752000px;}
.xb_c00076{left:252.450000px;}
.x2c_c00076{left:253.800000px;}
.x87_c00076{left:255.960000px;}
.x48_c00076{left:259.200000px;}
.x37_c00076{left:260.550000px;}
.x72_c00076{left:262.591500px;}
.x4_c00076{left:264.060000px;}
.x5e_c00076{left:265.410000px;}
.x1c_c00076{left:269.460000px;}
.xc_c00076{left:280.530000px;}
.x28_c00076{left:281.610000px;}
.x51_c00076{left:283.230000px;}
.x2d_c00076{left:285.660000px;}
.x22_c00076{left:287.820000px;}
.x12_c00076{left:289.710000px;}
.x3b_c00076{left:294.178500px;}
.x17_c00076{left:296.460000px;}
.x7c_c00076{left:299.160000px;}
.x5_c00076{left:301.860000px;}
.x38_c00076{left:305.100000px;}
.x2e_c00076{left:307.260000px;}
.x18_c00076{left:308.610000px;}
.x66_c00076{left:311.310000px;}
.x63_c00076{left:312.660000px;}
.x76_c00076{left:317.092500px;}
.x5f_c00076{left:318.870000px;}
.x29_c00076{left:320.220000px;}
.x73_c00076{left:325.236000px;}
.x6_c00076{left:328.320000px;}
.x6e_c00076{left:330.363000px;}
.x49_c00076{left:331.830000px;}
.x3c_c00076{left:333.634500px;}
.x52_c00076{left:334.800000px;}
.xa6_c00076{left:339.120000px;}
.x4c_c00076{left:340.470000px;}
.x5a_c00076{left:342.630000px;}
.xb0_c00076{left:346.410000px;}
.xa7_c00076{left:347.760000px;}
.x8d_c00076{left:349.110000px;}
.x8b_c00076{left:350.190000px;}
.x53_c00076{left:351.270000px;}
.x7f_c00076{left:353.700000px;}
.x89_c00076{left:356.400000px;}
.x77_c00076{left:358.158000px;}
.x74_c00076{left:359.842500px;}
.x5b_c00076{left:362.610000px;}
.x57_c00076{left:367.200000px;}
.x43_c00076{left:369.630000px;}
.x4d_c00076{left:371.790000px;}
.xa1_c00076{left:373.680000px;}
.x67_c00076{left:375.030000px;}
.xab_c00076{left:376.110000px;}
.x71_c00076{left:378.283395px;}
.x9a_c00076{left:380.970000px;}
.x93_c00076{left:383.130000px;}
.x3e_c00076{left:385.560000px;}
.x54_c00076{left:392.040000px;}
.x9e_c00076{left:393.660000px;}
.x64_c00076{left:396.360000px;}
.x68_c00076{left:399.330000px;}
.x83_c00076{left:401.124000px;}
.x4a_c00076{left:403.110000px;}
.x8c_c00076{left:406.350000px;}
.x6f_c00076{left:409.420500px;}
.x80_c00076{left:410.940000px;}
.x9b_c00076{left:412.830000px;}
.x8a_c00076{left:414.069000px;}
.x7d_c00076{left:421.200000px;}
.x4e_c00076{left:423.630000px;}
.xb1_c00076{left:424.980000px;}
.x69_c00076{left:427.140000px;}
.x44_c00076{left:428.760000px;}
.x60_c00076{left:429.840000px;}
.x9c_c00076{left:431.460000px;}
.x88_c00076{left:432.540000px;}
.x4b_c00076{left:436.050000px;}
.x5c_c00076{left:440.910000px;}
.x78_c00076{left:442.690500px;}
.xb2_c00076{left:444.150000px;}
.x4f_c00076{left:446.850000px;}
.x81_c00076{left:449.010000px;}
.xa2_c00076{left:450.090000px;}
.x45_c00076{left:453.600000px;}
.x75_c00076{left:455.113500px;}
.xac_c00076{left:457.110000px;}
.x61_c00076{left:459.540000px;}
.x3f_c00076{left:462.240000px;}
.x79_c00076{left:465.958500px;}
.x65_c00076{left:467.100000px;}
.xa3_c00076{left:472.230000px;}
.xad_c00076{left:474.390000px;}
.x96_c00076{left:477.360000px;}
.x8e_c00076{left:479.250000px;}
.xb3_c00076{left:480.600000px;}
.x94_c00076{left:482.220000px;}
.x6a_c00076{left:483.840000px;}
.x55_c00076{left:487.350000px;}
.x70_c00076{left:488.524500px;}
.x84_c00076{left:489.685500px;}
.xa8_c00076{left:497.880000px;}
.x91_c00076{left:499.230000px;}
.xae_c00076{left:500.580000px;}
.x7a_c00076{left:502.890000px;}
.x9f_c00076{left:505.170000px;}
.xa9_c00076{left:516.240000px;}
.x8f_c00076{left:517.590000px;}
.xa4_c00076{left:522.180000px;}
.x85_c00076{left:525.357000px;}
.x97_c00076{left:529.470000px;}
.x95_c00076{left:532.170000px;}
.x90_c00076{left:534.060000px;}
.xa0_c00076{left:539.190000px;}
.x98_c00076{left:542.160000px;}
.x6b_c00076{left:544.590000px;}
.xaa_c00076{left:550.530000px;}
.xb4_c00076{left:552.420000px;}
.xa5_c00076{left:553.770000px;}
.x99_c00076{left:559.170000px;}
.x9d_c00076{left:562.680000px;}
.x92_c00076{left:566.460000px;}
.xaf_c00076{left:588.330000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.fs0_c00076{font-size:14.933333pt;}
.fs18_c00076{font-size:41.066667pt;}
.fs5_c00076{font-size:43.866667pt;}
.fs4_c00076{font-size:44.800000pt;}
.fs3_c00076{font-size:45.733333pt;}
.fs2_c00076{font-size:46.666667pt;}
.fs16_c00076{font-size:47.600000pt;}
.fs17_c00076{font-size:48.533333pt;}
.fs6_c00076{font-size:55.066667pt;}
.fs15_c00076{font-size:56.000000pt;}
.fs11_c00076{font-size:56.933333pt;}
.fsa_c00076{font-size:57.866667pt;}
.fse_c00076{font-size:57.869560pt;}
.fs14_c00076{font-size:59.735752pt;}
.fsd_c00076{font-size:60.666667pt;}
.fsc_c00076{font-size:62.533333pt;}
.fs12_c00076{font-size:62.535334pt;}
.fs9_c00076{font-size:63.466667pt;}
.fsf_c00076{font-size:63.469840pt;}
.fsb_c00076{font-size:64.400000pt;}
.fs10_c00076{font-size:64.402608pt;}
.fs13_c00076{font-size:65.333333pt;}
.fs8_c00076{font-size:67.200000pt;}
.fs1_c00076{font-size:68.133333pt;}
.fs7_c00076{font-size:77.466667pt;}
.y0_c00076{bottom:0.000000pt;}
.y12_c00076{bottom:114.410667pt;}
.y5b_c00076{bottom:114.477333pt;}
.y11_c00076{bottom:114.866667pt;}
.y10_c00076{bottom:115.630667pt;}
.yf_c00076{bottom:115.864000pt;}
.ye_c00076{bottom:116.816000pt;}
.yd_c00076{bottom:117.362667pt;}
.y5a_c00076{bottom:129.710667pt;}
.yc_c00076{bottom:131.560000pt;}
.y59_c00076{bottom:145.516000pt;}
.yb_c00076{bottom:147.726667pt;}
.y58_c00076{bottom:161.780000pt;}
.ya_c00076{bottom:163.814667pt;}
.y57_c00076{bottom:177.338667pt;}
.y9_c00076{bottom:179.430667pt;}
.y56_c00076{bottom:193.353333pt;}
.y8_c00076{bottom:195.514667pt;}
.y55_c00076{bottom:209.230667pt;}
.y7_c00076{bottom:211.188000pt;}
.y54_c00076{bottom:225.004000pt;}
.y6_c00076{bottom:227.056000pt;}
.y53_c00076{bottom:240.704000pt;}
.y5_c00076{bottom:243.036000pt;}
.y52_c00076{bottom:256.545333pt;}
.y4_c00076{bottom:258.573333pt;}
.y51_c00076{bottom:272.652000pt;}
.y3_c00076{bottom:274.328000pt;}
.y4f_c00076{bottom:304.659337pt;}
.y4e_c00076{bottom:305.145409pt;}
.y4d_c00076{bottom:305.348149pt;}
.y4c_c00076{bottom:305.618425pt;}
.y4b_c00076{bottom:306.145537pt;}
.y4a_c00076{bottom:306.594469pt;}
.y49_c00076{bottom:306.865333pt;}
.y48_c00076{bottom:325.222667pt;}
.y47_c00076{bottom:346.128000pt;}
.y46_c00076{bottom:365.167733pt;}
.y45_c00076{bottom:365.421397pt;}
.y44_c00076{bottom:365.901355pt;}
.y43_c00076{bottom:366.051168pt;}
.y42_c00076{bottom:366.220107pt;}
.y41_c00076{bottom:366.702101pt;}
.y40_c00076{bottom:366.836501pt;}
.y3f_c00076{bottom:367.060875pt;}
.y3e_c00076{bottom:367.314325pt;}
.y3d_c00076{bottom:367.611947pt;}
.y3c_c00076{bottom:367.921333pt;}
.y3b_c00076{bottom:387.256000pt;}
.y3a_c00076{bottom:407.346667pt;}
.y39_c00076{bottom:426.373320pt;}
.y38_c00076{bottom:426.701600pt;}
.y37_c00076{bottom:426.908427pt;}
.y36_c00076{bottom:427.659827pt;}
.y35_c00076{bottom:428.024853pt;}
.y34_c00076{bottom:428.583733pt;}
.y33_c00076{bottom:428.910120pt;}
.y32_c00076{bottom:429.601333pt;}
.y31_c00076{bottom:446.523973pt;}
.y30_c00076{bottom:446.729221pt;}
.y2f_c00076{bottom:447.143941pt;}
.y2e_c00076{bottom:447.286141pt;}
.y2d_c00076{bottom:447.562993pt;}
.y2c_c00076{bottom:448.064149pt;}
.y2b_c00076{bottom:448.256173pt;}
.y2a_c00076{bottom:448.701037pt;}
.y29_c00076{bottom:449.041333pt;}
.y27_c00076{bottom:467.878933pt;}
.y28_c00076{bottom:467.879240pt;}
.y26_c00076{bottom:486.510613pt;}
.y25_c00076{bottom:486.875347pt;}
.y24_c00076{bottom:487.213760pt;}
.y23_c00076{bottom:487.552360pt;}
.y22_c00076{bottom:487.916493pt;}
.y21_c00076{bottom:488.302520pt;}
.y20_c00076{bottom:488.624147pt;}
.y1f_c00076{bottom:488.771133pt;}
.y1e_c00076{bottom:489.349413pt;}
.y1d_c00076{bottom:489.601333pt;}
.y1c_c00076{bottom:526.641333pt;}
.y1b_c00076{bottom:546.882667pt;}
.y1a_c00076{bottom:567.126667pt;}
.y19_c00076{bottom:587.465333pt;}
.y18_c00076{bottom:607.456000pt;}
.y17_c00076{bottom:627.144000pt;}
.y16_c00076{bottom:647.673333pt;}
.y15_c00076{bottom:667.944000pt;}
.y2_c00076{bottom:688.472000pt;}
.y50_c00076{bottom:688.800000pt;}
.y14_c00076{bottom:708.544000pt;}
.y13_c00076{bottom:749.017333pt;}
.y1_c00076{bottom:872.640000pt;}
.h2_c00076{height:14.933333pt;}
.h1a_c00076{height:41.066667pt;}
.h7_c00076{height:43.866667pt;}
.h6_c00076{height:44.800000pt;}
.h5_c00076{height:45.733333pt;}
.h4_c00076{height:46.666667pt;}
.h18_c00076{height:47.600000pt;}
.h19_c00076{height:48.533333pt;}
.h8_c00076{height:55.066667pt;}
.h17_c00076{height:56.000000pt;}
.h13_c00076{height:56.933333pt;}
.hc_c00076{height:57.866667pt;}
.h10_c00076{height:57.869560pt;}
.h16_c00076{height:59.735752pt;}
.hf_c00076{height:60.666667pt;}
.he_c00076{height:62.533333pt;}
.h14_c00076{height:62.535334pt;}
.hb_c00076{height:63.466667pt;}
.h11_c00076{height:63.469840pt;}
.hd_c00076{height:64.400000pt;}
.h12_c00076{height:64.402608pt;}
.h15_c00076{height:65.333333pt;}
.ha_c00076{height:67.200000pt;}
.h3_c00076{height:68.133333pt;}
.h9_c00076{height:77.466667pt;}
.h1_c00076{height:893.333333pt;}
.h0_c00076{height:893.466667pt;}
.w0_c00076{width:627.066667pt;}
.w1_c00076{width:627.333333pt;}
.x0_c00076{left:0.000000pt;}
.x39_c00076{left:69.456000pt;}
.x33_c00076{left:79.440000pt;}
.x1d_c00076{left:82.080000pt;}
.x7_c00076{left:88.320000pt;}
.x23_c00076{left:90.000000pt;}
.xd_c00076{left:90.960000pt;}
.x13_c00076{left:105.600000pt;}
.x3a_c00076{left:111.492000pt;}
.x34_c00076{left:113.520000pt;}
.x2a_c00076{left:115.440000pt;}
.xe_c00076{left:116.640000pt;}
.x2f_c00076{left:118.080000pt;}
.x82_c00076{left:122.784000pt;}
.x58_c00076{left:123.840000pt;}
.x40_c00076{left:124.800000pt;}
.x46_c00076{left:126.000000pt;}
.x1_c00076{left:127.200000pt;}
.x19_c00076{left:132.240000pt;}
.x41_c00076{left:137.040000pt;}
.x30_c00076{left:140.160000pt;}
.x24_c00076{left:145.440000pt;}
.x2_c00076{left:147.840000pt;}
.x59_c00076{left:148.800000pt;}
.x1a_c00076{left:150.720000pt;}
.x42_c00076{left:153.120000pt;}
.x26_c00076{left:155.760000pt;}
.x62_c00076{left:159.840000pt;}
.x3d_c00076{left:160.800000pt;}
.x7e_c00076{left:162.000000pt;}
.x14_c00076{left:163.440000pt;}
.x86_c00076{left:165.120000pt;}
.x2b_c00076{left:167.760000pt;}
.x1e_c00076{left:168.720000pt;}
.x3_c00076{left:170.640000pt;}
.x50_c00076{left:171.600000pt;}
.xf_c00076{left:176.640000pt;}
.x1f_c00076{left:177.840000pt;}
.x15_c00076{left:180.480000pt;}
.x10_c00076{left:182.400000pt;}
.x27_c00076{left:183.600000pt;}
.x8_c00076{left:185.520000pt;}
.x25_c00076{left:189.360000pt;}
.x20_c00076{left:190.560000pt;}
.x35_c00076{left:192.480000pt;}
.x7b_c00076{left:196.800000pt;}
.x9_c00076{left:199.200000pt;}
.x31_c00076{left:202.800000pt;}
.x47_c00076{left:204.480000pt;}
.x5d_c00076{left:205.440000pt;}
.x6c_c00076{left:208.192000pt;}
.x16_c00076{left:210.720000pt;}
.x1b_c00076{left:211.680000pt;}
.xa_c00076{left:212.880000pt;}
.x36_c00076{left:214.080000pt;}
.x21_c00076{left:215.520000pt;}
.x56_c00076{left:216.720000pt;}
.x32_c00076{left:217.680000pt;}
.x11_c00076{left:221.760000pt;}
.x6d_c00076{left:222.890667pt;}
.xb_c00076{left:224.400000pt;}
.x2c_c00076{left:225.600000pt;}
.x87_c00076{left:227.520000pt;}
.x48_c00076{left:230.400000pt;}
.x37_c00076{left:231.600000pt;}
.x72_c00076{left:233.414667pt;}
.x4_c00076{left:234.720000pt;}
.x5e_c00076{left:235.920000pt;}
.x1c_c00076{left:239.520000pt;}
.xc_c00076{left:249.360000pt;}
.x28_c00076{left:250.320000pt;}
.x51_c00076{left:251.760000pt;}
.x2d_c00076{left:253.920000pt;}
.x22_c00076{left:255.840000pt;}
.x12_c00076{left:257.520000pt;}
.x3b_c00076{left:261.492000pt;}
.x17_c00076{left:263.520000pt;}
.x7c_c00076{left:265.920000pt;}
.x5_c00076{left:268.320000pt;}
.x38_c00076{left:271.200000pt;}
.x2e_c00076{left:273.120000pt;}
.x18_c00076{left:274.320000pt;}
.x66_c00076{left:276.720000pt;}
.x63_c00076{left:277.920000pt;}
.x76_c00076{left:281.860000pt;}
.x5f_c00076{left:283.440000pt;}
.x29_c00076{left:284.640000pt;}
.x73_c00076{left:289.098667pt;}
.x6_c00076{left:291.840000pt;}
.x6e_c00076{left:293.656000pt;}
.x49_c00076{left:294.960000pt;}
.x3c_c00076{left:296.564000pt;}
.x52_c00076{left:297.600000pt;}
.xa6_c00076{left:301.440000pt;}
.x4c_c00076{left:302.640000pt;}
.x5a_c00076{left:304.560000pt;}
.xb0_c00076{left:307.920000pt;}
.xa7_c00076{left:309.120000pt;}
.x8d_c00076{left:310.320000pt;}
.x8b_c00076{left:311.280000pt;}
.x53_c00076{left:312.240000pt;}
.x7f_c00076{left:314.400000pt;}
.x89_c00076{left:316.800000pt;}
.x77_c00076{left:318.362667pt;}
.x74_c00076{left:319.860000pt;}
.x5b_c00076{left:322.320000pt;}
.x57_c00076{left:326.400000pt;}
.x43_c00076{left:328.560000pt;}
.x4d_c00076{left:330.480000pt;}
.xa1_c00076{left:332.160000pt;}
.x67_c00076{left:333.360000pt;}
.xab_c00076{left:334.320000pt;}
.x71_c00076{left:336.251907pt;}
.x9a_c00076{left:338.640000pt;}
.x93_c00076{left:340.560000pt;}
.x3e_c00076{left:342.720000pt;}
.x54_c00076{left:348.480000pt;}
.x9e_c00076{left:349.920000pt;}
.x64_c00076{left:352.320000pt;}
.x68_c00076{left:354.960000pt;}
.x83_c00076{left:356.554667pt;}
.x4a_c00076{left:358.320000pt;}
.x8c_c00076{left:361.200000pt;}
.x6f_c00076{left:363.929333pt;}
.x80_c00076{left:365.280000pt;}
.x9b_c00076{left:366.960000pt;}
.x8a_c00076{left:368.061333pt;}
.x7d_c00076{left:374.400000pt;}
.x4e_c00076{left:376.560000pt;}
.xb1_c00076{left:377.760000pt;}
.x69_c00076{left:379.680000pt;}
.x44_c00076{left:381.120000pt;}
.x60_c00076{left:382.080000pt;}
.x9c_c00076{left:383.520000pt;}
.x88_c00076{left:384.480000pt;}
.x4b_c00076{left:387.600000pt;}
.x5c_c00076{left:391.920000pt;}
.x78_c00076{left:393.502667pt;}
.xb2_c00076{left:394.800000pt;}
.x4f_c00076{left:397.200000pt;}
.x81_c00076{left:399.120000pt;}
.xa2_c00076{left:400.080000pt;}
.x45_c00076{left:403.200000pt;}
.x75_c00076{left:404.545333pt;}
.xac_c00076{left:406.320000pt;}
.x61_c00076{left:408.480000pt;}
.x3f_c00076{left:410.880000pt;}
.x79_c00076{left:414.185333pt;}
.x65_c00076{left:415.200000pt;}
.xa3_c00076{left:419.760000pt;}
.xad_c00076{left:421.680000pt;}
.x96_c00076{left:424.320000pt;}
.x8e_c00076{left:426.000000pt;}
.xb3_c00076{left:427.200000pt;}
.x94_c00076{left:428.640000pt;}
.x6a_c00076{left:430.080000pt;}
.x55_c00076{left:433.200000pt;}
.x70_c00076{left:434.244000pt;}
.x84_c00076{left:435.276000pt;}
.xa8_c00076{left:442.560000pt;}
.x91_c00076{left:443.760000pt;}
.xae_c00076{left:444.960000pt;}
.x7a_c00076{left:447.013333pt;}
.x9f_c00076{left:449.040000pt;}
.xa9_c00076{left:458.880000pt;}
.x8f_c00076{left:460.080000pt;}
.xa4_c00076{left:464.160000pt;}
.x85_c00076{left:466.984000pt;}
.x97_c00076{left:470.640000pt;}
.x95_c00076{left:473.040000pt;}
.x90_c00076{left:474.720000pt;}
.xa0_c00076{left:479.280000pt;}
.x98_c00076{left:481.920000pt;}
.x6b_c00076{left:484.080000pt;}
.xaa_c00076{left:489.360000pt;}
.xb4_c00076{left:491.040000pt;}
.xa5_c00076{left:492.240000pt;}
.x99_c00076{left:497.040000pt;}
.x9d_c00076{left:500.160000pt;}
.x92_c00076{left:503.520000pt;}
.xaf_c00076{left:522.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1e_c00077{transform:matrix(0.051965,-0.000728,0.003500,0.249976,0,0);-ms-transform:matrix(0.051965,-0.000728,0.003500,0.249976,0,0);-webkit-transform:matrix(0.051965,-0.000728,0.003500,0.249976,0,0);}
.m22_c00077{transform:matrix(0.139856,-0.001958,0.003500,0.249976,0,0);-ms-transform:matrix(0.139856,-0.001958,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139856,-0.001958,0.003500,0.249976,0,0);}
.m6b_c00077{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.143444,-0.002439,0.004249,0.249964,0,0);-ms-transform:matrix(0.143444,-0.002439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143444,-0.002439,0.004249,0.249964,0,0);}
.m42_c00077{transform:matrix(0.145831,-0.002042,0.003500,0.249976,0,0);-ms-transform:matrix(0.145831,-0.002042,0.003500,0.249976,0,0);-webkit-transform:matrix(0.145831,-0.002042,0.003500,0.249976,0,0);}
.m7_c00077{transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);-ms-transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);}
.m6e_c00077{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);}
.m44_c00077{transform:matrix(0.146926,-0.002057,0.003500,0.249976,0,0);-ms-transform:matrix(0.146926,-0.002057,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146926,-0.002057,0.003500,0.249976,0,0);}
.m30_c00077{transform:matrix(0.146931,-0.002057,0.003500,0.249976,0,0);-ms-transform:matrix(0.146931,-0.002057,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146931,-0.002057,0.003500,0.249976,0,0);}
.m89_c00077{transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);}
.m3a_c00077{transform:matrix(0.148808,-0.002530,0.004249,0.249964,0,0);-ms-transform:matrix(0.148808,-0.002530,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148808,-0.002530,0.004249,0.249964,0,0);}
.m33_c00077{transform:matrix(0.149655,-0.002095,0.003500,0.249976,0,0);-ms-transform:matrix(0.149655,-0.002095,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149655,-0.002095,0.003500,0.249976,0,0);}
.m3_c00077{transform:matrix(0.150593,-0.002560,0.004249,0.249964,0,0);-ms-transform:matrix(0.150593,-0.002560,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150593,-0.002560,0.004249,0.249964,0,0);}
.m98_c00077{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);}
.m88_c00077{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);}
.m97_c00077{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);}
.m93_c00077{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);}
.m43_c00077{transform:matrix(0.154000,-0.002156,0.003500,0.249976,0,0);-ms-transform:matrix(0.154000,-0.002156,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154000,-0.002156,0.003500,0.249976,0,0);}
.ma0_c00077{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);}
.m87_c00077{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);}
.m92_c00077{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);}
.m18_c00077{transform:matrix(0.156885,-0.002196,0.003500,0.249976,0,0);-ms-transform:matrix(0.156885,-0.002196,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156885,-0.002196,0.003500,0.249976,0,0);}
.m3c_c00077{transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);-ms-transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);}
.m38_c00077{transform:matrix(0.158042,-0.002687,0.004249,0.249964,0,0);-ms-transform:matrix(0.158042,-0.002687,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158042,-0.002687,0.004249,0.249964,0,0);}
.m4c_c00077{transform:matrix(0.158319,-0.002216,0.003500,0.249976,0,0);-ms-transform:matrix(0.158319,-0.002216,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158319,-0.002216,0.003500,0.249976,0,0);}
.m6f_c00077{transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);}
.m8e_c00077{transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159315,0.000000,0.000000,0.250000,0,0);}
.m6c_c00077{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);}
.mc7_c00077{transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);}
.m9d_c00077{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);}
.m39_c00077{transform:matrix(0.161342,-0.002743,0.004249,0.249964,0,0);-ms-transform:matrix(0.161342,-0.002743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161342,-0.002743,0.004249,0.249964,0,0);}
.m28_c00077{transform:matrix(0.161361,-0.002098,0.003250,0.249979,0,0);-ms-transform:matrix(0.161361,-0.002098,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161361,-0.002098,0.003250,0.249979,0,0);}
.m8c_c00077{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);}
.m5_c00077{transform:matrix(0.162312,-0.002759,0.004249,0.249964,0,0);-ms-transform:matrix(0.162312,-0.002759,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162312,-0.002759,0.004249,0.249964,0,0);}
.m8a_c00077{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);}
.m82_c00077{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);}
.m14_c00077{transform:matrix(0.164559,-0.002304,0.003500,0.249976,0,0);-ms-transform:matrix(0.164559,-0.002304,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164559,-0.002304,0.003500,0.249976,0,0);}
.m8_c00077{transform:matrix(0.166051,-0.002823,0.004249,0.249964,0,0);-ms-transform:matrix(0.166051,-0.002823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166051,-0.002823,0.004249,0.249964,0,0);}
.mc6_c00077{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);}
.m9f_c00077{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);}
.m6d_c00077{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);}
.m52_c00077{transform:matrix(0.168106,-0.002185,0.003250,0.249979,0,0);-ms-transform:matrix(0.168106,-0.002185,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168106,-0.002185,0.003250,0.249979,0,0);}
.mb_c00077{transform:matrix(0.169605,-0.002883,0.004249,0.249964,0,0);-ms-transform:matrix(0.169605,-0.002883,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169605,-0.002883,0.004249,0.249964,0,0);}
.m58_c00077{transform:matrix(0.170080,-0.002891,0.004249,0.249964,0,0);-ms-transform:matrix(0.170080,-0.002891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170080,-0.002891,0.004249,0.249964,0,0);}
.mce_c00077{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);}
.mca_c00077{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);}
.m36_c00077{transform:matrix(0.170898,-0.002393,0.003500,0.249976,0,0);-ms-transform:matrix(0.170898,-0.002393,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170898,-0.002393,0.003500,0.249976,0,0);}
.m9a_c00077{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);}
.m81_c00077{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);}
.mc_c00077{transform:matrix(0.172480,-0.002932,0.004249,0.249964,0,0);-ms-transform:matrix(0.172480,-0.002932,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172480,-0.002932,0.004249,0.249964,0,0);}
.m40_c00077{transform:matrix(0.172838,-0.002420,0.003500,0.249976,0,0);-ms-transform:matrix(0.172838,-0.002420,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172838,-0.002420,0.003500,0.249976,0,0);}
.m90_c00077{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);}
.m32_c00077{transform:matrix(0.174523,-0.002443,0.003500,0.249976,0,0);-ms-transform:matrix(0.174523,-0.002443,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174523,-0.002443,0.003500,0.249976,0,0);}
.m24_c00077{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);}
.m2_c00077{transform:matrix(0.176340,-0.002998,0.004249,0.249964,0,0);-ms-transform:matrix(0.176340,-0.002998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176340,-0.002998,0.004249,0.249964,0,0);}
.m41_c00077{transform:matrix(0.177408,-0.002484,0.003500,0.249976,0,0);-ms-transform:matrix(0.177408,-0.002484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177408,-0.002484,0.003500,0.249976,0,0);}
.m3e_c00077{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);}
.m16_c00077{transform:matrix(0.178223,-0.002495,0.003500,0.249976,0,0);-ms-transform:matrix(0.178223,-0.002495,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178223,-0.002495,0.003500,0.249976,0,0);}
.m3b_c00077{transform:matrix(0.178639,-0.003037,0.004249,0.249964,0,0);-ms-transform:matrix(0.178639,-0.003037,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178639,-0.003037,0.004249,0.249964,0,0);}
.mc5_c00077{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);}
.m26_c00077{transform:matrix(0.178892,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178892,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178892,-0.002504,0.003500,0.249976,0,0);}
.m51_c00077{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);}
.mab_c00077{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);}
.m1b_c00077{transform:matrix(0.179372,-0.002511,0.003500,0.249976,0,0);-ms-transform:matrix(0.179372,-0.002511,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179372,-0.002511,0.003500,0.249976,0,0);}
.m2a_c00077{transform:matrix(0.179960,-0.002339,0.003250,0.249979,0,0);-ms-transform:matrix(0.179960,-0.002339,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179960,-0.002339,0.003250,0.249979,0,0);}
.mb5_c00077{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);}
.ma_c00077{transform:matrix(0.181049,-0.003078,0.004249,0.249964,0,0);-ms-transform:matrix(0.181049,-0.003078,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181049,-0.003078,0.004249,0.249964,0,0);}
.m9b_c00077{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);}
.m46_c00077{transform:matrix(0.182137,-0.002550,0.003500,0.249976,0,0);-ms-transform:matrix(0.182137,-0.002550,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182137,-0.002550,0.003500,0.249976,0,0);}
.mc4_c00077{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);}
.m95_c00077{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);}
.m49_c00077{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);}
.m3f_c00077{transform:matrix(0.182527,-0.002555,0.003500,0.249976,0,0);-ms-transform:matrix(0.182527,-0.002555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182527,-0.002555,0.003500,0.249976,0,0);}
.m6a_c00077{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);}
.mbd_c00077{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);}
.m4_c00077{transform:matrix(0.184088,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184088,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184088,-0.003130,0.004249,0.249964,0,0);}
.m34_c00077{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);}
.mc0_c00077{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);}
.m83_c00077{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);}
.m68_c00077{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);}
.m2f_c00077{transform:matrix(0.185452,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185452,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185452,-0.002596,0.003500,0.249976,0,0);}
.mf_c00077{transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);-ms-transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);}
.mb3_c00077{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);}
.m17_c00077{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);}
.m54_c00077{transform:matrix(0.186954,-0.002430,0.003250,0.249979,0,0);-ms-transform:matrix(0.186954,-0.002430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186954,-0.002430,0.003250,0.249979,0,0);}
.m96_c00077{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);}
.maf_c00077{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);}
.m84_c00077{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);}
.mc9_c00077{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);}
.m86_c00077{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);}
.m4d_c00077{transform:matrix(0.188786,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188786,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188786,-0.002643,0.003500,0.249976,0,0);}
.m48_c00077{transform:matrix(0.188791,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188791,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188791,-0.002643,0.003500,0.249976,0,0);}
.md6_c00077{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);}
.m15_c00077{transform:matrix(0.189181,-0.002649,0.003500,0.249976,0,0);-ms-transform:matrix(0.189181,-0.002649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189181,-0.002649,0.003500,0.249976,0,0);}
.m7e_c00077{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);}
.m99_c00077{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);}
.m4e_c00077{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);}
.m45_c00077{transform:matrix(0.190261,-0.002664,0.003500,0.249976,0,0);-ms-transform:matrix(0.190261,-0.002664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190261,-0.002664,0.003500,0.249976,0,0);}
.m21_c00077{transform:matrix(0.190556,-0.002668,0.003500,0.249976,0,0);-ms-transform:matrix(0.190556,-0.002668,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190556,-0.002668,0.003500,0.249976,0,0);}
.m85_c00077{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);}
.mb1_c00077{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);}
.ma1_c00077{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);}
.m8f_c00077{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);}
.mbc_c00077{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);}
.m25_c00077{transform:matrix(0.192741,-0.002698,0.003500,0.249976,0,0);-ms-transform:matrix(0.192741,-0.002698,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192741,-0.002698,0.003500,0.249976,0,0);}
.m8d_c00077{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);}
.m7a_c00077{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_c00077{transform:matrix(0.193032,-0.003282,0.004249,0.249964,0,0);-ms-transform:matrix(0.193032,-0.003282,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193032,-0.003282,0.004249,0.249964,0,0);}
.m4b_c00077{transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);-ms-transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);}
.m37_c00077{transform:matrix(0.194062,-0.003299,0.004249,0.249964,0,0);-ms-transform:matrix(0.194062,-0.003299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194062,-0.003299,0.004249,0.249964,0,0);}
.mc1_c00077{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);}
.mb2_c00077{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);}
.md0_c00077{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);}
.md_c00077{transform:matrix(0.195862,-0.003330,0.004249,0.249964,0,0);-ms-transform:matrix(0.195862,-0.003330,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195862,-0.003330,0.004249,0.249964,0,0);}
.maa_c00077{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);}
.m35_c00077{transform:matrix(0.195996,-0.002744,0.003500,0.249976,0,0);-ms-transform:matrix(0.195996,-0.002744,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195996,-0.002744,0.003500,0.249976,0,0);}
.m79_c00077{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);}
.m6_c00077{transform:matrix(0.196167,-0.003335,0.004249,0.249964,0,0);-ms-transform:matrix(0.196167,-0.003335,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196167,-0.003335,0.004249,0.249964,0,0);}
.m23_c00077{transform:matrix(0.196466,-0.002751,0.003500,0.249976,0,0);-ms-transform:matrix(0.196466,-0.002751,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196466,-0.002751,0.003500,0.249976,0,0);}
.ma4_c00077{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);}
.m19_c00077{transform:matrix(0.198166,-0.002774,0.003500,0.249976,0,0);-ms-transform:matrix(0.198166,-0.002774,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198166,-0.002774,0.003500,0.249976,0,0);}
.mb8_c00077{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);}
.mb0_c00077{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);}
.mda_c00077{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);}
.m9e_c00077{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);}
.m2b_c00077{transform:matrix(0.201518,-0.002620,0.003250,0.249979,0,0);-ms-transform:matrix(0.201518,-0.002620,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201518,-0.002620,0.003250,0.249979,0,0);}
.mbe_c00077{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);}
.ma9_c00077{transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00077{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);}
.mb6_c00077{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);}
.m2c_c00077{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);}
.m4a_c00077{transform:matrix(0.202730,-0.002838,0.003500,0.249976,0,0);-ms-transform:matrix(0.202730,-0.002838,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202730,-0.002838,0.003500,0.249976,0,0);}
.m20_c00077{transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);}
.mcf_c00077{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);}
.mc3_c00077{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);}
.m8b_c00077{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);}
.md3_c00077{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);}
.m69_c00077{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);}
.m94_c00077{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);}
.md4_c00077{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);}
.ma6_c00077{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);}
.md5_c00077{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);}
.mc2_c00077{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);}
.m7b_c00077{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);}
.m53_c00077{transform:matrix(0.207262,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207262,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207262,-0.002694,0.003250,0.249979,0,0);}
.md1_c00077{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);}
.m12_c00077{transform:matrix(0.208175,-0.003539,0.004249,0.249964,0,0);-ms-transform:matrix(0.208175,-0.003539,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208175,-0.003539,0.004249,0.249964,0,0);}
.m91_c00077{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);}
.m7f_c00077{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);}
.ma8_c00077{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);}
.mb4_c00077{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);}
.m29_c00077{transform:matrix(0.209957,-0.002729,0.003250,0.249979,0,0);-ms-transform:matrix(0.209957,-0.002729,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209957,-0.002729,0.003250,0.249979,0,0);}
.md9_c00077{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.mb9_c00077{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);}
.mbf_c00077{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);}
.mac_c00077{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);}
.md7_c00077{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);}
.mbb_c00077{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);}
.m13_c00077{transform:matrix(0.213429,-0.002988,0.003500,0.249976,0,0);-ms-transform:matrix(0.213429,-0.002988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213429,-0.002988,0.003500,0.249976,0,0);}
.m11_c00077{transform:matrix(0.213464,-0.003629,0.004249,0.249964,0,0);-ms-transform:matrix(0.213464,-0.003629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213464,-0.003629,0.004249,0.249964,0,0);}
.mcb_c00077{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);}
.md2_c00077{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);}
.m4f_c00077{transform:matrix(0.215584,-0.003018,0.003500,0.249976,0,0);-ms-transform:matrix(0.215584,-0.003018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215584,-0.003018,0.003500,0.249976,0,0);}
.m10_c00077{transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);-ms-transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);}
.m27_c00077{transform:matrix(0.217012,-0.002821,0.003250,0.249979,0,0);-ms-transform:matrix(0.217012,-0.002821,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217012,-0.002821,0.003250,0.249979,0,0);}
.m1f_c00077{transform:matrix(0.218734,-0.003062,0.003500,0.249976,0,0);-ms-transform:matrix(0.218734,-0.003062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218734,-0.003062,0.003500,0.249976,0,0);}
.m9c_c00077{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);}
.m70_c00077{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);}
.m57_c00077{transform:matrix(0.219966,-0.002860,0.003250,0.249979,0,0);-ms-transform:matrix(0.219966,-0.002860,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219966,-0.002860,0.003250,0.249979,0,0);}
.m5d_c00077{transform:matrix(0.220238,-0.003744,0.004249,0.249964,0,0);-ms-transform:matrix(0.220238,-0.003744,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220238,-0.003744,0.004249,0.249964,0,0);}
.mae_c00077{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);}
.mad_c00077{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);}
.m2d_c00077{transform:matrix(0.223511,-0.002906,0.003250,0.249979,0,0);-ms-transform:matrix(0.223511,-0.002906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223511,-0.002906,0.003250,0.249979,0,0);}
.m31_c00077{transform:matrix(0.223948,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223948,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223948,-0.003135,0.003500,0.249976,0,0);}
.m60_c00077{transform:matrix(0.226037,-0.003843,0.004249,0.249964,0,0);-ms-transform:matrix(0.226037,-0.003843,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226037,-0.003843,0.004249,0.249964,0,0);}
.mc8_c00077{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);}
.m75_c00077{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);}
.m9_c00077{transform:matrix(0.228387,-0.003883,0.004249,0.249964,0,0);-ms-transform:matrix(0.228387,-0.003883,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228387,-0.003883,0.004249,0.249964,0,0);}
.m80_c00077{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);}
.m5e_c00077{transform:matrix(0.229242,-0.003897,0.004249,0.249964,0,0);-ms-transform:matrix(0.229242,-0.003897,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229242,-0.003897,0.004249,0.249964,0,0);}
.mb7_c00077{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);}
.m74_c00077{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);}
.mcd_c00077{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);}
.m0_c00077{transform:matrix(0.234376,-0.003984,0.004249,0.249964,0,0);-ms-transform:matrix(0.234376,-0.003984,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234376,-0.003984,0.004249,0.249964,0,0);}
.m2e_c00077{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);}
.m7c_c00077{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);}
.m78_c00077{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);}
.m73_c00077{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00077{transform:matrix(0.242100,-0.004116,0.004249,0.249964,0,0);-ms-transform:matrix(0.242100,-0.004116,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242100,-0.004116,0.004249,0.249964,0,0);}
.m47_c00077{transform:matrix(0.242591,-0.003396,0.003500,0.249976,0,0);-ms-transform:matrix(0.242591,-0.003396,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242591,-0.003396,0.003500,0.249976,0,0);}
.m72_c00077{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m56_c00077{transform:matrix(0.247499,-0.003217,0.003250,0.249979,0,0);-ms-transform:matrix(0.247499,-0.003217,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247499,-0.003217,0.003250,0.249979,0,0);}
.m67_c00077{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);}
.m5f_c00077{transform:matrix(0.253668,-0.004312,0.004249,0.249964,0,0);-ms-transform:matrix(0.253668,-0.004312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253668,-0.004312,0.004249,0.249964,0,0);}
.me_c00077{transform:matrix(0.255908,-0.004350,0.004249,0.249964,0,0);-ms-transform:matrix(0.255908,-0.004350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255908,-0.004350,0.004249,0.249964,0,0);}
.ma3_c00077{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);}
.m59_c00077{transform:matrix(0.257548,-0.004378,0.004249,0.249964,0,0);-ms-transform:matrix(0.257548,-0.004378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257548,-0.004378,0.004249,0.249964,0,0);}
.m76_c00077{transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);}
.m71_c00077{transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);}
.ma5_c00077{transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);}
.m5c_c00077{transform:matrix(0.270941,-0.004606,0.004249,0.249964,0,0);-ms-transform:matrix(0.270941,-0.004606,0.004249,0.249964,0,0);-webkit-transform:matrix(0.270941,-0.004606,0.004249,0.249964,0,0);}
.ma2_c00077{transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);}
.mba_c00077{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m55_c00077{transform:matrix(0.277037,-0.003601,0.003250,0.249979,0,0);-ms-transform:matrix(0.277037,-0.003601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277037,-0.003601,0.003250,0.249979,0,0);}
.m62_c00077{transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);}
.ma7_c00077{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);}
.m5b_c00077{transform:matrix(0.299642,-0.005094,0.004249,0.249964,0,0);-ms-transform:matrix(0.299642,-0.005094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.299642,-0.005094,0.004249,0.249964,0,0);}
.m1d_c00077{transform:matrix(0.306485,-0.004291,0.003500,0.249976,0,0);-ms-transform:matrix(0.306485,-0.004291,0.003500,0.249976,0,0);-webkit-transform:matrix(0.306485,-0.004291,0.003500,0.249976,0,0);}
.md8_c00077{transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329040,0.000000,0.000000,0.250000,0,0);}
.m65_c00077{transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);}
.mcc_c00077{transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342050,0.000000,0.000000,0.250000,0,0);}
.m50_c00077{transform:matrix(0.362130,-0.005070,0.003500,0.249976,0,0);-ms-transform:matrix(0.362130,-0.005070,0.003500,0.249976,0,0);-webkit-transform:matrix(0.362130,-0.005070,0.003500,0.249976,0,0);}
.m77_c00077{transform:matrix(0.392660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392660,0.000000,0.000000,0.250000,0,0);}
.m63_c00077{transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.400941,-0.005613,0.003500,0.249976,0,0);-ms-transform:matrix(0.400941,-0.005613,0.003500,0.249976,0,0);-webkit-transform:matrix(0.400941,-0.005613,0.003500,0.249976,0,0);}
.m1a_c00077{transform:matrix(0.409930,-0.005739,0.003500,0.249976,0,0);-ms-transform:matrix(0.409930,-0.005739,0.003500,0.249976,0,0);-webkit-transform:matrix(0.409930,-0.005739,0.003500,0.249976,0,0);}
.m61_c00077{transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);}
.m64_c00077{transform:matrix(0.428060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428060,0.000000,0.000000,0.250000,0,0);}
.m66_c00077{transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472015,0.000000,0.000000,0.250000,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;}
.fs19_c00077{font-size:45.150000px;}
.fs15_c00077{font-size:48.300000px;}
.fs16_c00077{font-size:49.350000px;}
.fs17_c00077{font-size:52.500000px;}
.fs18_c00077{font-size:53.550000px;}
.fsf_c00077{font-size:60.900000px;}
.fs10_c00077{font-size:61.950000px;}
.fs5_c00077{font-size:67.205678px;}
.fs8_c00077{font-size:67.206585px;}
.fs1_c00077{font-size:67.209710px;}
.fs13_c00077{font-size:69.300000px;}
.fs9_c00077{font-size:69.305856px;}
.fs12_c00077{font-size:70.350000px;}
.fs3_c00077{font-size:71.406997px;}
.fs7_c00077{font-size:71.410317px;}
.fse_c00077{font-size:72.450000px;}
.fs2_c00077{font-size:72.457100px;}
.fs4_c00077{font-size:73.507203px;}
.fs0_c00077{font-size:73.510620px;}
.fs11_c00077{font-size:74.550000px;}
.fs6_c00077{font-size:75.607408px;}
.fs14_c00077{font-size:76.650000px;}
.fsc_c00077{font-size:89.250000px;}
.fsd_c00077{font-size:91.350000px;}
.fsb_c00077{font-size:95.550000px;}
.fsa_c00077{font-size:102.900000px;}
.y0_c00077{bottom:0.000000px;}
.y72_c00077{bottom:126.900000px;}
.y76_c00077{bottom:143.889000px;}
.y71_c00077{bottom:144.834000px;}
.y75_c00077{bottom:161.718000px;}
.y70_c00077{bottom:162.810000px;}
.y74_c00077{bottom:179.875500px;}
.y6f_c00077{bottom:180.540000px;}
.y73_c00077{bottom:197.353500px;}
.y6e_c00077{bottom:198.556500px;}
.y6d_c00077{bottom:242.668500px;}
.y6c_c00077{bottom:265.264500px;}
.y6b_c00077{bottom:289.327500px;}
.y6a_c00077{bottom:311.812500px;}
.y69_c00077{bottom:334.647000px;}
.y68_c00077{bottom:357.300000px;}
.y67_c00077{bottom:381.447000px;}
.y66_c00077{bottom:404.337000px;}
.y64_c00077{bottom:445.500000px;}
.y65_c00077{bottom:446.712000px;}
.y63_c00077{bottom:490.137000px;}
.y5a_c00077{bottom:543.514500px;}
.y5b_c00077{bottom:543.877059px;}
.y5c_c00077{bottom:544.284345px;}
.y5d_c00077{bottom:544.560102px;}
.y5e_c00077{bottom:545.382910px;}
.y5f_c00077{bottom:545.741033px;}
.y60_c00077{bottom:546.361677px;}
.y61_c00077{bottom:547.128488px;}
.y62_c00077{bottom:547.705884px;}
.y53_c00077{bottom:567.001500px;}
.y54_c00077{bottom:567.675674px;}
.y55_c00077{bottom:568.651590px;}
.y56_c00077{bottom:569.602995px;}
.y57_c00077{bottom:570.055648px;}
.y58_c00077{bottom:570.405888px;}
.y59_c00077{bottom:570.810318px;}
.y49_c00077{bottom:589.413000px;}
.y4a_c00077{bottom:589.927185px;}
.y4b_c00077{bottom:590.736336px;}
.y4c_c00077{bottom:591.133299px;}
.y4d_c00077{bottom:591.870483px;}
.y4e_c00077{bottom:592.513083px;}
.y4f_c00077{bottom:592.887324px;}
.y50_c00077{bottom:593.450334px;}
.y51_c00077{bottom:594.108411px;}
.y52_c00077{bottom:594.804078px;}
.y40_c00077{bottom:612.363000px;}
.y41_c00077{bottom:613.305186px;}
.y42_c00077{bottom:613.998900px;}
.y43_c00077{bottom:614.570793px;}
.y44_c00077{bottom:615.103563px;}
.y45_c00077{bottom:615.482382px;}
.y46_c00077{bottom:616.150686px;}
.y47_c00077{bottom:616.555167px;}
.y48_c00077{bottom:617.114817px;}
.y38_c00077{bottom:634.233000px;}
.y39_c00077{bottom:634.963397px;}
.y3a_c00077{bottom:635.673419px;}
.y3b_c00077{bottom:636.096107px;}
.y3c_c00077{bottom:636.574640px;}
.y3d_c00077{bottom:637.382429px;}
.y3e_c00077{bottom:637.772680px;}
.y3f_c00077{bottom:638.878947px;}
.y30_c00077{bottom:658.263000px;}
.y31_c00077{bottom:658.637283px;}
.y32_c00077{bottom:658.902870px;}
.y33_c00077{bottom:659.506179px;}
.y34_c00077{bottom:660.289521px;}
.y35_c00077{bottom:660.675102px;}
.y36_c00077{bottom:661.158900px;}
.y37_c00077{bottom:662.123031px;}
.y28_c00077{bottom:680.941500px;}
.y29_c00077{bottom:681.334854px;}
.y2a_c00077{bottom:681.930813px;}
.y2b_c00077{bottom:682.303848px;}
.y2c_c00077{bottom:682.935550px;}
.y2d_c00077{bottom:683.542858px;}
.y2e_c00077{bottom:684.199365px;}
.y2f_c00077{bottom:684.511735px;}
.y20_c00077{bottom:703.623000px;}
.y21_c00077{bottom:704.204595px;}
.y22_c00077{bottom:704.976114px;}
.y23_c00077{bottom:705.993690px;}
.y24_c00077{bottom:706.491642px;}
.y25_c00077{bottom:706.896900px;}
.y26_c00077{bottom:707.407515px;}
.y27_c00077{bottom:708.220026px;}
.y1e_c00077{bottom:730.106145px;}
.y1d_c00077{bottom:730.106190px;}
.y1f_c00077{bottom:730.106460px;}
.y14_c00077{bottom:749.253000px;}
.y15_c00077{bottom:749.645385px;}
.y16_c00077{bottom:750.000936px;}
.y17_c00077{bottom:750.640638px;}
.y18_c00077{bottom:751.204110px;}
.y19_c00077{bottom:751.567053px;}
.y1a_c00077{bottom:752.001606px;}
.y1b_c00077{bottom:752.723733px;}
.y1c_c00077{bottom:753.343758px;}
.ya_c00077{bottom:772.473000px;}
.yb_c00077{bottom:772.875925px;}
.yc_c00077{bottom:773.349945px;}
.yd_c00077{bottom:773.942514px;}
.ye_c00077{bottom:774.713608px;}
.yf_c00077{bottom:775.599581px;}
.y10_c00077{bottom:775.966653px;}
.y11_c00077{bottom:776.705847px;}
.y12_c00077{bottom:776.998307px;}
.y13_c00077{bottom:777.541405px;}
.y1_c00077{bottom:794.884500px;}
.y2_c00077{bottom:795.445016px;}
.y3_c00077{bottom:796.009892px;}
.y4_c00077{bottom:797.033461px;}
.y5_c00077{bottom:797.665454px;}
.y6_c00077{bottom:798.234843px;}
.y7_c00077{bottom:798.670663px;}
.y8_c00077{bottom:799.213686px;}
.y9_c00077{bottom:799.668351px;}
.h1b_c00077{height:45.150000px;}
.h17_c00077{height:48.300000px;}
.h18_c00077{height:49.350000px;}
.h19_c00077{height:52.500000px;}
.h1a_c00077{height:53.550000px;}
.h11_c00077{height:60.900000px;}
.h12_c00077{height:61.950000px;}
.h7_c00077{height:67.205678px;}
.ha_c00077{height:67.206585px;}
.h3_c00077{height:67.209710px;}
.h15_c00077{height:69.300000px;}
.hb_c00077{height:69.305856px;}
.h14_c00077{height:70.350000px;}
.h5_c00077{height:71.406997px;}
.h9_c00077{height:71.410317px;}
.h10_c00077{height:72.450000px;}
.h4_c00077{height:72.457100px;}
.h6_c00077{height:73.507203px;}
.h2_c00077{height:73.510620px;}
.h13_c00077{height:74.550000px;}
.h8_c00077{height:75.607408px;}
.h16_c00077{height:76.650000px;}
.he_c00077{height:89.250000px;}
.hf_c00077{height:91.350000px;}
.hd_c00077{height:95.550000px;}
.hc_c00077{height:102.900000px;}
.h0_c00077{height:1008.450000px;}
.h1_c00077{height:1008.750000px;}
.w0_c00077{width:711.720000px;}
.w1_c00077{width:711.750000px;}
.x0_c00077{left:0.000000px;}
.x69_c00077{left:156.870000px;}
.x67_c00077{left:169.020000px;}
.x6a_c00077{left:173.070000px;}
.x6e_c00077{left:183.330000px;}
.x1_c00077{left:190.309500px;}
.x1c_c00077{left:191.611500px;}
.x6b_c00077{left:198.720000px;}
.x6f_c00077{left:200.610000px;}
.x72_c00077{left:201.960000px;}
.x34_c00077{left:209.181000px;}
.x45_c00077{left:212.991000px;}
.xa_c00077{left:214.267500px;}
.x13_c00077{left:218.829000px;}
.x22_c00077{left:222.123000px;}
.x2_c00077{left:223.281000px;}
.x5f_c00077{left:226.530000px;}
.x3c_c00077{left:228.597000px;}
.x70_c00077{left:230.850000px;}
.x1d_c00077{left:233.154000px;}
.x2f_c00077{left:234.345000px;}
.x46_c00077{left:236.949000px;}
.x29_c00077{left:238.122000px;}
.xb_c00077{left:242.151000px;}
.x14_c00077{left:244.225500px;}
.x73_c00077{left:245.970000px;}
.x77_c00077{left:250.830000px;}
.x47_c00077{left:253.170000px;}
.x3_c00077{left:256.509000px;}
.x64_c00077{left:257.580000px;}
.x57_c00077{left:258.660000px;}
.x68_c00077{left:260.010000px;}
.x52_c00077{left:263.520000px;}
.x23_c00077{left:267.966000px;}
.x60_c00077{left:271.080000px;}
.x5d_c00077{left:273.510000px;}
.xc_c00077{left:277.008000px;}
.x74_c00077{left:279.990000px;}
.x2a_c00077{left:281.215500px;}
.x3d_c00077{left:286.393500px;}
.x1e_c00077{left:288.262500px;}
.x15_c00077{left:289.918500px;}
.x24_c00077{left:296.661000px;}
.x71_c00077{left:297.810000px;}
.x4a_c00077{left:299.970000px;}
.x30_c00077{left:300.975000px;}
.x4e_c00077{left:308.610000px;}
.x75_c00077{left:310.230000px;}
.x6c_c00077{left:312.390000px;}
.x3e_c00077{left:314.748000px;}
.x4_c00077{left:316.719000px;}
.x41_c00077{left:317.982000px;}
.xd_c00077{left:322.366500px;}
.x35_c00077{left:326.031000px;}
.x31_c00077{left:329.124000px;}
.x16_c00077{left:330.166500px;}
.x76_c00077{left:334.800000px;}
.x2b_c00077{left:337.168500px;}
.x58_c00077{left:339.930000px;}
.x4d_c00077{left:341.280000px;}
.x19_c00077{left:343.184364px;}
.x25_c00077{left:345.253500px;}
.x4f_c00077{left:347.220000px;}
.x5_c00077{left:353.895000px;}
.x17_c00077{left:356.091000px;}
.x6d_c00077{left:358.020000px;}
.x48_c00077{left:359.145000px;}
.x1f_c00077{left:360.946500px;}
.x2c_c00077{left:364.710000px;}
.x36_c00077{left:366.880500px;}
.x53_c00077{left:369.360000px;}
.x56_c00077{left:370.440000px;}
.xe_c00077{left:374.482500px;}
.x32_c00077{left:376.641000px;}
.x59_c00077{left:377.730000px;}
.x65_c00077{left:383.130000px;}
.x6_c00077{left:387.388500px;}
.x61_c00077{left:388.800000px;}
.x5e_c00077{left:389.880000px;}
.x26_c00077{left:391.969500px;}
.xf_c00077{left:396.075000px;}
.x4c_c00077{left:397.170000px;}
.x2d_c00077{left:399.267000px;}
.x37_c00077{left:404.935500px;}
.x50_c00077{left:407.160000px;}
.x7_c00077{left:413.025000px;}
.x62_c00077{left:419.040000px;}
.x1a_c00077{left:424.732845px;}
.x42_c00077{left:425.986500px;}
.x66_c00077{left:430.110000px;}
.x38_c00077{left:431.994000px;}
.x78_c00077{left:433.350000px;}
.x49_c00077{left:438.216000px;}
.x10_c00077{left:439.557000px;}
.x27_c00077{left:442.470000px;}
.x8_c00077{left:444.967500px;}
.x7c_c00077{left:446.040000px;}
.x5a_c00077{left:450.360000px;}
.x43_c00077{left:452.928000px;}
.x4b_c00077{left:455.220000px;}
.x11_c00077{left:456.760500px;}
.x81_c00077{left:458.190000px;}
.x20_c00077{left:461.934000px;}
.x33_c00077{left:464.671500px;}
.x28_c00077{left:466.498500px;}
.x2e_c00077{left:468.133500px;}
.x9_c00077{left:471.712500px;}
.x82_c00077{left:473.580000px;}
.x63_c00077{left:475.470000px;}
.x39_c00077{left:479.730000px;}
.x54_c00077{left:481.950000px;}
.x18_c00077{left:482.998500px;}
.x44_c00077{left:484.038000px;}
.x12_c00077{left:488.707500px;}
.x5b_c00077{left:493.560000px;}
.x1b_c00077{left:496.019310px;}
.x51_c00077{left:503.550000px;}
.x7d_c00077{left:504.900000px;}
.x3a_c00077{left:508.621500px;}
.x83_c00077{left:509.760000px;}
.x79_c00077{left:513.000000px;}
.x55_c00077{left:517.050000px;}
.x21_c00077{left:519.970500px;}
.x3f_c00077{left:527.256000px;}
.x84_c00077{left:530.550000px;}
.x7a_c00077{left:537.570000px;}
.x7e_c00077{left:539.730000px;}
.x3b_c00077{left:548.596500px;}
.x7f_c00077{left:556.470000px;}
.x5c_c00077{left:559.440000px;}
.x40_c00077{left:576.946500px;}
.x85_c00077{left:578.880000px;}
.x80_c00077{left:608.040000px;}
.x7b_c00077{left:617.220000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.fs19_c00077{font-size:40.133333pt;}
.fs15_c00077{font-size:42.933333pt;}
.fs16_c00077{font-size:43.866667pt;}
.fs17_c00077{font-size:46.666667pt;}
.fs18_c00077{font-size:47.600000pt;}
.fsf_c00077{font-size:54.133333pt;}
.fs10_c00077{font-size:55.066667pt;}
.fs5_c00077{font-size:59.738381pt;}
.fs8_c00077{font-size:59.739187pt;}
.fs1_c00077{font-size:59.741964pt;}
.fs13_c00077{font-size:61.600000pt;}
.fs9_c00077{font-size:61.605205pt;}
.fs12_c00077{font-size:62.533333pt;}
.fs3_c00077{font-size:63.472886pt;}
.fs7_c00077{font-size:63.475837pt;}
.fse_c00077{font-size:64.400000pt;}
.fs2_c00077{font-size:64.406311pt;}
.fs4_c00077{font-size:65.339736pt;}
.fs0_c00077{font-size:65.342773pt;}
.fs11_c00077{font-size:66.266667pt;}
.fs6_c00077{font-size:67.206585pt;}
.fs14_c00077{font-size:68.133333pt;}
.fsc_c00077{font-size:79.333333pt;}
.fsd_c00077{font-size:81.200000pt;}
.fsb_c00077{font-size:84.933333pt;}
.fsa_c00077{font-size:91.466667pt;}
.y0_c00077{bottom:0.000000pt;}
.y72_c00077{bottom:112.800000pt;}
.y76_c00077{bottom:127.901333pt;}
.y71_c00077{bottom:128.741333pt;}
.y75_c00077{bottom:143.749333pt;}
.y70_c00077{bottom:144.720000pt;}
.y74_c00077{bottom:159.889333pt;}
.y6f_c00077{bottom:160.480000pt;}
.y73_c00077{bottom:175.425333pt;}
.y6e_c00077{bottom:176.494667pt;}
.y6d_c00077{bottom:215.705333pt;}
.y6c_c00077{bottom:235.790667pt;}
.y6b_c00077{bottom:257.180000pt;}
.y6a_c00077{bottom:277.166667pt;}
.y69_c00077{bottom:297.464000pt;}
.y68_c00077{bottom:317.600000pt;}
.y67_c00077{bottom:339.064000pt;}
.y66_c00077{bottom:359.410667pt;}
.y64_c00077{bottom:396.000000pt;}
.y65_c00077{bottom:397.077333pt;}
.y63_c00077{bottom:435.677333pt;}
.y5a_c00077{bottom:483.124000pt;}
.y5b_c00077{bottom:483.446275pt;}
.y5c_c00077{bottom:483.808307pt;}
.y5d_c00077{bottom:484.053424pt;}
.y5e_c00077{bottom:484.784809pt;}
.y5f_c00077{bottom:485.103140pt;}
.y60_c00077{bottom:485.654824pt;}
.y61_c00077{bottom:486.336433pt;}
.y62_c00077{bottom:486.849675pt;}
.y53_c00077{bottom:504.001333pt;}
.y54_c00077{bottom:504.600599pt;}
.y55_c00077{bottom:505.468080pt;}
.y56_c00077{bottom:506.313773pt;}
.y57_c00077{bottom:506.716132pt;}
.y58_c00077{bottom:507.027456pt;}
.y59_c00077{bottom:507.386949pt;}
.y49_c00077{bottom:523.922667pt;}
.y4a_c00077{bottom:524.379720pt;}
.y4b_c00077{bottom:525.098965pt;}
.y4c_c00077{bottom:525.451821pt;}
.y4d_c00077{bottom:526.107096pt;}
.y4e_c00077{bottom:526.678296pt;}
.y4f_c00077{bottom:527.010955pt;}
.y50_c00077{bottom:527.511408pt;}
.y51_c00077{bottom:528.096365pt;}
.y52_c00077{bottom:528.714736pt;}
.y40_c00077{bottom:544.322667pt;}
.y41_c00077{bottom:545.160165pt;}
.y42_c00077{bottom:545.776800pt;}
.y43_c00077{bottom:546.285149pt;}
.y44_c00077{bottom:546.758723pt;}
.y45_c00077{bottom:547.095451pt;}
.y46_c00077{bottom:547.689499pt;}
.y47_c00077{bottom:548.049037pt;}
.y48_c00077{bottom:548.546504pt;}
.y38_c00077{bottom:563.762667pt;}
.y39_c00077{bottom:564.411908pt;}
.y3a_c00077{bottom:565.043039pt;}
.y3b_c00077{bottom:565.418761pt;}
.y3c_c00077{bottom:565.844124pt;}
.y3d_c00077{bottom:566.562159pt;}
.y3e_c00077{bottom:566.909049pt;}
.y3f_c00077{bottom:567.892397pt;}
.y30_c00077{bottom:585.122667pt;}
.y31_c00077{bottom:585.455363pt;}
.y32_c00077{bottom:585.691440pt;}
.y33_c00077{bottom:586.227715pt;}
.y34_c00077{bottom:586.924019pt;}
.y35_c00077{bottom:587.266757pt;}
.y36_c00077{bottom:587.696800pt;}
.y37_c00077{bottom:588.553805pt;}
.y28_c00077{bottom:605.281333pt;}
.y29_c00077{bottom:605.630981pt;}
.y2a_c00077{bottom:606.160723pt;}
.y2b_c00077{bottom:606.492309pt;}
.y2c_c00077{bottom:607.053823pt;}
.y2d_c00077{bottom:607.593652pt;}
.y2e_c00077{bottom:608.177213pt;}
.y2f_c00077{bottom:608.454876pt;}
.y20_c00077{bottom:625.442667pt;}
.y21_c00077{bottom:625.959640pt;}
.y22_c00077{bottom:626.645435pt;}
.y23_c00077{bottom:627.549947pt;}
.y24_c00077{bottom:627.992571pt;}
.y25_c00077{bottom:628.352800pt;}
.y26_c00077{bottom:628.806680pt;}
.y27_c00077{bottom:629.528912pt;}
.y1e_c00077{bottom:648.983240pt;}
.y1d_c00077{bottom:648.983280pt;}
.y1f_c00077{bottom:648.983520pt;}
.y14_c00077{bottom:666.002667pt;}
.y15_c00077{bottom:666.351453pt;}
.y16_c00077{bottom:666.667499pt;}
.y17_c00077{bottom:667.236123pt;}
.y18_c00077{bottom:667.736987pt;}
.y19_c00077{bottom:668.059603pt;}
.y1a_c00077{bottom:668.445872pt;}
.y1b_c00077{bottom:669.087763pt;}
.y1c_c00077{bottom:669.638896pt;}
.ya_c00077{bottom:686.642667pt;}
.yb_c00077{bottom:687.000823pt;}
.yc_c00077{bottom:687.422173pt;}
.yd_c00077{bottom:687.948901pt;}
.ye_c00077{bottom:688.634319pt;}
.yf_c00077{bottom:689.421849pt;}
.y10_c00077{bottom:689.748136pt;}
.y11_c00077{bottom:690.405197pt;}
.y12_c00077{bottom:690.665161pt;}
.y13_c00077{bottom:691.147916pt;}
.y1_c00077{bottom:706.564000pt;}
.y2_c00077{bottom:707.062236pt;}
.y3_c00077{bottom:707.564348pt;}
.y4_c00077{bottom:708.474188pt;}
.y5_c00077{bottom:709.035959pt;}
.y6_c00077{bottom:709.542083pt;}
.y7_c00077{bottom:709.929479pt;}
.y8_c00077{bottom:710.412165pt;}
.y9_c00077{bottom:710.816312pt;}
.h1b_c00077{height:40.133333pt;}
.h17_c00077{height:42.933333pt;}
.h18_c00077{height:43.866667pt;}
.h19_c00077{height:46.666667pt;}
.h1a_c00077{height:47.600000pt;}
.h11_c00077{height:54.133333pt;}
.h12_c00077{height:55.066667pt;}
.h7_c00077{height:59.738381pt;}
.ha_c00077{height:59.739187pt;}
.h3_c00077{height:59.741964pt;}
.h15_c00077{height:61.600000pt;}
.hb_c00077{height:61.605205pt;}
.h14_c00077{height:62.533333pt;}
.h5_c00077{height:63.472886pt;}
.h9_c00077{height:63.475837pt;}
.h10_c00077{height:64.400000pt;}
.h4_c00077{height:64.406311pt;}
.h6_c00077{height:65.339736pt;}
.h2_c00077{height:65.342773pt;}
.h13_c00077{height:66.266667pt;}
.h8_c00077{height:67.206585pt;}
.h16_c00077{height:68.133333pt;}
.he_c00077{height:79.333333pt;}
.hf_c00077{height:81.200000pt;}
.hd_c00077{height:84.933333pt;}
.hc_c00077{height:91.466667pt;}
.h0_c00077{height:896.400000pt;}
.h1_c00077{height:896.666667pt;}
.w0_c00077{width:632.640000pt;}
.w1_c00077{width:632.666667pt;}
.x0_c00077{left:0.000000pt;}
.x69_c00077{left:139.440000pt;}
.x67_c00077{left:150.240000pt;}
.x6a_c00077{left:153.840000pt;}
.x6e_c00077{left:162.960000pt;}
.x1_c00077{left:169.164000pt;}
.x1c_c00077{left:170.321333pt;}
.x6b_c00077{left:176.640000pt;}
.x6f_c00077{left:178.320000pt;}
.x72_c00077{left:179.520000pt;}
.x34_c00077{left:185.938667pt;}
.x45_c00077{left:189.325333pt;}
.xa_c00077{left:190.460000pt;}
.x13_c00077{left:194.514667pt;}
.x22_c00077{left:197.442667pt;}
.x2_c00077{left:198.472000pt;}
.x5f_c00077{left:201.360000pt;}
.x3c_c00077{left:203.197333pt;}
.x70_c00077{left:205.200000pt;}
.x1d_c00077{left:207.248000pt;}
.x2f_c00077{left:208.306667pt;}
.x46_c00077{left:210.621333pt;}
.x29_c00077{left:211.664000pt;}
.xb_c00077{left:215.245333pt;}
.x14_c00077{left:217.089333pt;}
.x73_c00077{left:218.640000pt;}
.x77_c00077{left:222.960000pt;}
.x47_c00077{left:225.040000pt;}
.x3_c00077{left:228.008000pt;}
.x64_c00077{left:228.960000pt;}
.x57_c00077{left:229.920000pt;}
.x68_c00077{left:231.120000pt;}
.x52_c00077{left:234.240000pt;}
.x23_c00077{left:238.192000pt;}
.x60_c00077{left:240.960000pt;}
.x5d_c00077{left:243.120000pt;}
.xc_c00077{left:246.229333pt;}
.x74_c00077{left:248.880000pt;}
.x2a_c00077{left:249.969333pt;}
.x3d_c00077{left:254.572000pt;}
.x1e_c00077{left:256.233333pt;}
.x15_c00077{left:257.705333pt;}
.x24_c00077{left:263.698667pt;}
.x71_c00077{left:264.720000pt;}
.x4a_c00077{left:266.640000pt;}
.x30_c00077{left:267.533333pt;}
.x4e_c00077{left:274.320000pt;}
.x75_c00077{left:275.760000pt;}
.x6c_c00077{left:277.680000pt;}
.x3e_c00077{left:279.776000pt;}
.x4_c00077{left:281.528000pt;}
.x41_c00077{left:282.650667pt;}
.xd_c00077{left:286.548000pt;}
.x35_c00077{left:289.805333pt;}
.x31_c00077{left:292.554667pt;}
.x16_c00077{left:293.481333pt;}
.x76_c00077{left:297.600000pt;}
.x2b_c00077{left:299.705333pt;}
.x58_c00077{left:302.160000pt;}
.x4d_c00077{left:303.360000pt;}
.x19_c00077{left:305.052768pt;}
.x25_c00077{left:306.892000pt;}
.x4f_c00077{left:308.640000pt;}
.x5_c00077{left:314.573333pt;}
.x17_c00077{left:316.525333pt;}
.x6d_c00077{left:318.240000pt;}
.x48_c00077{left:319.240000pt;}
.x1f_c00077{left:320.841333pt;}
.x2c_c00077{left:324.186667pt;}
.x36_c00077{left:326.116000pt;}
.x53_c00077{left:328.320000pt;}
.x56_c00077{left:329.280000pt;}
.xe_c00077{left:332.873333pt;}
.x32_c00077{left:334.792000pt;}
.x59_c00077{left:335.760000pt;}
.x65_c00077{left:340.560000pt;}
.x6_c00077{left:344.345333pt;}
.x61_c00077{left:345.600000pt;}
.x5e_c00077{left:346.560000pt;}
.x26_c00077{left:348.417333pt;}
.xf_c00077{left:352.066667pt;}
.x4c_c00077{left:353.040000pt;}
.x2d_c00077{left:354.904000pt;}
.x37_c00077{left:359.942667pt;}
.x50_c00077{left:361.920000pt;}
.x7_c00077{left:367.133333pt;}
.x62_c00077{left:372.480000pt;}
.x1a_c00077{left:377.540307pt;}
.x42_c00077{left:378.654667pt;}
.x66_c00077{left:382.320000pt;}
.x38_c00077{left:383.994667pt;}
.x78_c00077{left:385.200000pt;}
.x49_c00077{left:389.525333pt;}
.x10_c00077{left:390.717333pt;}
.x27_c00077{left:393.306667pt;}
.x8_c00077{left:395.526667pt;}
.x7c_c00077{left:396.480000pt;}
.x5a_c00077{left:400.320000pt;}
.x43_c00077{left:402.602667pt;}
.x4b_c00077{left:404.640000pt;}
.x11_c00077{left:406.009333pt;}
.x81_c00077{left:407.280000pt;}
.x20_c00077{left:410.608000pt;}
.x33_c00077{left:413.041333pt;}
.x28_c00077{left:414.665333pt;}
.x2e_c00077{left:416.118667pt;}
.x9_c00077{left:419.300000pt;}
.x82_c00077{left:420.960000pt;}
.x63_c00077{left:422.640000pt;}
.x39_c00077{left:426.426667pt;}
.x54_c00077{left:428.400000pt;}
.x18_c00077{left:429.332000pt;}
.x44_c00077{left:430.256000pt;}
.x12_c00077{left:434.406667pt;}
.x5b_c00077{left:438.720000pt;}
.x1b_c00077{left:440.906053pt;}
.x51_c00077{left:447.600000pt;}
.x7d_c00077{left:448.800000pt;}
.x3a_c00077{left:452.108000pt;}
.x83_c00077{left:453.120000pt;}
.x79_c00077{left:456.000000pt;}
.x55_c00077{left:459.600000pt;}
.x21_c00077{left:462.196000pt;}
.x3f_c00077{left:468.672000pt;}
.x84_c00077{left:471.600000pt;}
.x7a_c00077{left:477.840000pt;}
.x7e_c00077{left:479.760000pt;}
.x3b_c00077{left:487.641333pt;}
.x7f_c00077{left:494.640000pt;}
.x5c_c00077{left:497.280000pt;}
.x40_c00077{left:512.841333pt;}
.x85_c00077{left:514.560000pt;}
.x80_c00077{left:540.480000pt;}
.x7b_c00077{left:548.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m66_c00078{transform:matrix(0.008744,0.000096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.008744,0.000096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.008744,0.000096,-0.002750,0.249985,0,0);}
.m37_c00078{transform:matrix(0.013434,0.000175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.013434,0.000175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.013434,0.000175,-0.003250,0.249979,0,0);}
.m4b_c00078{transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);}
.m18_c00078{transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);}
.m57_c00078{transform:matrix(0.066956,0.000737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.066956,0.000737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.066956,0.000737,-0.002750,0.249985,0,0);}
.m59_c00078{transform:matrix(0.072071,0.000793,-0.002750,0.249985,0,0);-ms-transform:matrix(0.072071,0.000793,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.072071,0.000793,-0.002750,0.249985,0,0);}
.m3a_c00078{transform:matrix(0.089212,0.001160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.089212,0.001160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.089212,0.001160,-0.003250,0.249979,0,0);}
.m69_c00078{transform:matrix(0.106389,0.001170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.106389,0.001170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.106389,0.001170,-0.002750,0.249985,0,0);}
.m88_c00078{transform:matrix(0.140202,0.002524,-0.004499,0.249960,0,0);-ms-transform:matrix(0.140202,0.002524,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.140202,0.002524,-0.004499,0.249960,0,0);}
.m47_c00078{transform:matrix(0.145128,0.001887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145128,0.001887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145128,0.001887,-0.003250,0.249979,0,0);}
.m87_c00078{transform:matrix(0.152775,0.002750,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152775,0.002750,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152775,0.002750,-0.004499,0.249960,0,0);}
.m7d_c00078{transform:matrix(0.153385,0.002761,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153385,0.002761,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153385,0.002761,-0.004499,0.249960,0,0);}
.m54_c00078{transform:matrix(0.154706,0.001702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154706,0.001702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154706,0.001702,-0.002750,0.249985,0,0);}
.m53_c00078{transform:matrix(0.157040,0.001727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157040,0.001727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157040,0.001727,-0.002750,0.249985,0,0);}
.m56_c00078{transform:matrix(0.158980,0.001749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158980,0.001749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158980,0.001749,-0.002750,0.249985,0,0);}
.m31_c00078{transform:matrix(0.159012,0.002067,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159012,0.002067,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159012,0.002067,-0.003250,0.249979,0,0);}
.m32_c00078{transform:matrix(0.159856,0.002078,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159856,0.002078,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159856,0.002078,-0.003250,0.249979,0,0);}
.m34_c00078{transform:matrix(0.160096,0.002081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160096,0.002081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160096,0.002081,-0.003250,0.249979,0,0);}
.m7b_c00078{transform:matrix(0.161527,0.002423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161527,0.002423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161527,0.002423,-0.003750,0.249972,0,0);}
.m75_c00078{transform:matrix(0.162567,0.002439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162567,0.002439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162567,0.002439,-0.003750,0.249972,0,0);}
.m23_c00078{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);}
.m4f_c00078{transform:matrix(0.162800,0.001791,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162800,0.001791,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162800,0.001791,-0.002750,0.249985,0,0);}
.m49_c00078{transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163561,0.002126,-0.003250,0.249979,0,0);}
.m2f_c00078{transform:matrix(0.163601,0.002127,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163601,0.002127,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163601,0.002127,-0.003250,0.249979,0,0);}
.m7a_c00078{transform:matrix(0.165796,0.002487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165796,0.002487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165796,0.002487,-0.003750,0.249972,0,0);}
.m6a_c00078{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);}
.m86_c00078{transform:matrix(0.168938,0.003041,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168938,0.003041,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168938,0.003041,-0.004499,0.249960,0,0);}
.m4e_c00078{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);}
.m35_c00078{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);}
.m7f_c00078{transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);}
.m12_c00078{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);}
.m83_c00078{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);}
.m79_c00078{transform:matrix(0.173995,0.002610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173995,0.002610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173995,0.002610,-0.003750,0.249972,0,0);}
.m2d_c00078{transform:matrix(0.177040,0.002302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177040,0.002302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177040,0.002302,-0.003250,0.249979,0,0);}
.m7e_c00078{transform:matrix(0.177206,0.003190,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177206,0.003190,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177206,0.003190,-0.004499,0.249960,0,0);}
.m36_c00078{transform:matrix(0.177455,0.002307,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177455,0.002307,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177455,0.002307,-0.003250,0.249979,0,0);}
.m80_c00078{transform:matrix(0.177891,0.003202,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177891,0.003202,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177891,0.003202,-0.004499,0.249960,0,0);}
.m77_c00078{transform:matrix(0.178005,0.002670,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178005,0.002670,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178005,0.002670,-0.003750,0.249972,0,0);}
.m42_c00078{transform:matrix(0.178520,0.002321,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178520,0.002321,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178520,0.002321,-0.003250,0.249979,0,0);}
.m84_c00078{transform:matrix(0.178891,0.003220,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178891,0.003220,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178891,0.003220,-0.004499,0.249960,0,0);}
.m25_c00078{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);}
.m1d_c00078{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);}
.m24_c00078{transform:matrix(0.181194,-0.003080,0.004249,0.249964,0,0);-ms-transform:matrix(0.181194,-0.003080,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181194,-0.003080,0.004249,0.249964,0,0);}
.m14_c00078{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);}
.m76_c00078{transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);}
.m1e_c00078{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);}
.m5d_c00078{transform:matrix(0.184204,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184204,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184204,0.002026,-0.002750,0.249985,0,0);}
.m89_c00078{transform:matrix(0.184960,0.003329,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184960,0.003329,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184960,0.003329,-0.004499,0.249960,0,0);}
.m30_c00078{transform:matrix(0.185204,0.002408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185204,0.002408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185204,0.002408,-0.003250,0.249979,0,0);}
.m52_c00078{transform:matrix(0.185804,0.002044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185804,0.002044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185804,0.002044,-0.002750,0.249985,0,0);}
.m55_c00078{transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);}
.m6b_c00078{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);}
.m28_c00078{transform:matrix(0.187424,0.002437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187424,0.002437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187424,0.002437,-0.003250,0.249979,0,0);}
.m41_c00078{transform:matrix(0.188499,0.002450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188499,0.002450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188499,0.002450,-0.003250,0.249979,0,0);}
.m1c_c00078{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);}
.m33_c00078{transform:matrix(0.189719,0.002466,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189719,0.002466,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189719,0.002466,-0.003250,0.249979,0,0);}
.m21_c00078{transform:matrix(0.189993,-0.003230,0.004249,0.249964,0,0);-ms-transform:matrix(0.189993,-0.003230,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189993,-0.003230,0.004249,0.249964,0,0);}
.m50_c00078{transform:matrix(0.191433,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191433,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191433,0.002106,-0.002750,0.249985,0,0);}
.m20_c00078{transform:matrix(0.192777,-0.003277,0.004249,0.249964,0,0);-ms-transform:matrix(0.192777,-0.003277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192777,-0.003277,0.004249,0.249964,0,0);}
.m5b_c00078{transform:matrix(0.193138,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193138,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193138,0.002125,-0.002750,0.249985,0,0);}
.ma_c00078{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);}
.m74_c00078{transform:matrix(0.194113,0.002912,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194113,0.002912,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194113,0.002912,-0.003750,0.249972,0,0);}
.m78_c00078{transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);}
.m13_c00078{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_c00078{transform:matrix(0.197228,0.002958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197228,0.002958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197228,0.002958,-0.003750,0.249972,0,0);}
.m1b_c00078{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);}
.m2c_c00078{transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);}
.m62_c00078{transform:matrix(0.198188,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198188,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198188,0.002180,-0.002750,0.249985,0,0);}
.mf_c00078{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);}
.m51_c00078{transform:matrix(0.200168,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200168,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200168,0.002202,-0.002750,0.249985,0,0);}
.m22_c00078{transform:matrix(0.200776,-0.003413,0.004249,0.249964,0,0);-ms-transform:matrix(0.200776,-0.003413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200776,-0.003413,0.004249,0.249964,0,0);}
.m5f_c00078{transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);}
.me_c00078{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);}
.m15_c00078{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);}
.m27_c00078{transform:matrix(0.208447,0.002710,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208447,0.002710,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208447,0.002710,-0.003250,0.249979,0,0);}
.m3d_c00078{transform:matrix(0.208892,0.002716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208892,0.002716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208892,0.002716,-0.003250,0.249979,0,0);}
.m2a_c00078{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);}
.m4c_c00078{transform:matrix(0.210172,0.002732,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210172,0.002732,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210172,0.002732,-0.003250,0.249979,0,0);}
.m6d_c00078{transform:matrix(0.210192,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210192,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210192,0.002312,-0.002750,0.249985,0,0);}
.m3c_c00078{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);}
.m8b_c00078{transform:matrix(0.212110,0.016169,-0.019002,0.249277,0,0);-ms-transform:matrix(0.212110,0.016169,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.212110,0.016169,-0.019002,0.249277,0,0);}
.m85_c00078{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);}
.m29_c00078{transform:matrix(0.213262,0.002772,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213262,0.002772,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213262,0.002772,-0.003250,0.249979,0,0);}
.m6c_c00078{transform:matrix(0.213642,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213642,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213642,0.002350,-0.002750,0.249985,0,0);}
.m9_c00078{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);}
.m60_c00078{transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);}
.m71_c00078{transform:matrix(0.216162,0.002378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216162,0.002378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216162,0.002378,-0.002750,0.249985,0,0);}
.m2b_c00078{transform:matrix(0.216922,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216922,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216922,0.002820,-0.003250,0.249979,0,0);}
.m48_c00078{transform:matrix(0.218727,0.002843,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218727,0.002843,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218727,0.002843,-0.003250,0.249979,0,0);}
.m40_c00078{transform:matrix(0.219461,0.002853,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219461,0.002853,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219461,0.002853,-0.003250,0.249979,0,0);}
.m11_c00078{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);}
.m10_c00078{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);}
.m8e_c00078{transform:matrix(0.224215,0.017092,-0.019002,0.249277,0,0);-ms-transform:matrix(0.224215,0.017092,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.224215,0.017092,-0.019002,0.249277,0,0);}
.m6e_c00078{transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);}
.m5c_c00078{transform:matrix(0.227716,0.002505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227716,0.002505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227716,0.002505,-0.002750,0.249985,0,0);}
.m8f_c00078{transform:matrix(0.230053,0.017537,-0.019002,0.249277,0,0);-ms-transform:matrix(0.230053,0.017537,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.230053,0.017537,-0.019002,0.249277,0,0);}
.m1a_c00078{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);}
.m70_c00078{transform:matrix(0.232781,0.002561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232781,0.002561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232781,0.002561,-0.002750,0.249985,0,0);}
.m64_c00078{transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);}
.m3f_c00078{transform:matrix(0.238480,0.003100,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238480,0.003100,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238480,0.003100,-0.003250,0.249979,0,0);}
.m5_c00078{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);}
.m39_c00078{transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);}
.m8c_c00078{transform:matrix(0.245702,0.018730,-0.019002,0.249277,0,0);-ms-transform:matrix(0.245702,0.018730,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.245702,0.018730,-0.019002,0.249277,0,0);}
.m5e_c00078{transform:matrix(0.247725,0.002725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247725,0.002725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247725,0.002725,-0.002750,0.249985,0,0);}
.m7c_c00078{transform:matrix(0.249860,0.004497,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249860,0.004497,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249860,0.004497,-0.004499,0.249960,0,0);}
.m5a_c00078{transform:matrix(0.251065,0.002762,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251065,0.002762,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251065,0.002762,-0.002750,0.249985,0,0);}
.m6f_c00078{transform:matrix(0.252600,0.002779,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252600,0.002779,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252600,0.002779,-0.002750,0.249985,0,0);}
.m61_c00078{transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);}
.m8a_c00078{transform:matrix(0.255449,0.019473,-0.019002,0.249277,0,0);-ms-transform:matrix(0.255449,0.019473,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.255449,0.019473,-0.019002,0.249277,0,0);}
.m46_c00078{transform:matrix(0.258843,0.003365,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258843,0.003365,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258843,0.003365,-0.003250,0.249979,0,0);}
.m68_c00078{transform:matrix(0.262889,0.002892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262889,0.002892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262889,0.002892,-0.002750,0.249985,0,0);}
.m3_c00078{transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);}
.m8d_c00078{transform:matrix(0.272205,0.020750,-0.019002,0.249277,0,0);-ms-transform:matrix(0.272205,0.020750,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.272205,0.020750,-0.019002,0.249277,0,0);}
.m43_c00078{transform:matrix(0.276087,0.003589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276087,0.003589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276087,0.003589,-0.003250,0.249979,0,0);}
.m3b_c00078{transform:matrix(0.290255,0.003773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290255,0.003773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290255,0.003773,-0.003250,0.249979,0,0);}
.m26_c00078{transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);}
.md_c00078{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);}
.m4d_c00078{transform:matrix(0.303014,0.003939,-0.003250,0.249979,0,0);-ms-transform:matrix(0.303014,0.003939,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.303014,0.003939,-0.003250,0.249979,0,0);}
.m2_c00078{transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303875,0.000000,0.000000,0.250000,0,0);}
.m81_c00078{transform:matrix(0.322158,0.004188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.322158,0.004188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.322158,0.004188,-0.003250,0.249979,0,0);}
.m58_c00078{transform:matrix(0.331410,0.003646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331410,0.003646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331410,0.003646,-0.002750,0.249985,0,0);}
.m7_c00078{transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333120,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345765,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{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);}
.m45_c00078{transform:matrix(0.354365,0.004607,-0.003250,0.249979,0,0);-ms-transform:matrix(0.354365,0.004607,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.354365,0.004607,-0.003250,0.249979,0,0);}
.m65_c00078{transform:matrix(0.370663,0.004077,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370663,0.004077,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370663,0.004077,-0.002750,0.249985,0,0);}
.m4a_c00078{transform:matrix(0.384163,0.004994,-0.003250,0.249979,0,0);-ms-transform:matrix(0.384163,0.004994,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.384163,0.004994,-0.003250,0.249979,0,0);}
.m2e_c00078{transform:matrix(0.390867,0.005081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.390867,0.005081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.390867,0.005081,-0.003250,0.249979,0,0);}
.m3e_c00078{transform:matrix(0.394847,0.005133,-0.003250,0.249979,0,0);-ms-transform:matrix(0.394847,0.005133,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.394847,0.005133,-0.003250,0.249979,0,0);}
.m44_c00078{transform:matrix(0.403206,0.005242,-0.003250,0.249979,0,0);-ms-transform:matrix(0.403206,0.005242,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.403206,0.005242,-0.003250,0.249979,0,0);}
.m82_c00078{transform:matrix(0.407136,0.005293,-0.003250,0.249979,0,0);-ms-transform:matrix(0.407136,0.005293,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.407136,0.005293,-0.003250,0.249979,0,0);}
.m19_c00078{transform:matrix(0.414635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414635,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);}
.m38_c00078{transform:matrix(0.487129,0.006333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.487129,0.006333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.487129,0.006333,-0.003250,0.249979,0,0);}
.m16_c00078{transform:matrix(0.494955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494955,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.495155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495155,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.519885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519885,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.556540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556540,0.000000,0.000000,0.250000,0,0);}
.m67_c00078{transform:matrix(0.576150,0.006338,-0.002750,0.249985,0,0);-ms-transform:matrix(0.576150,0.006338,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.576150,0.006338,-0.002750,0.249985,0,0);}
.m1f_c00078{transform:matrix(0.589920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589920,0.000000,0.000000,0.250000,0,0);}
.m72_c00078{transform:matrix(0.720751,0.007928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.720751,0.007928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.720751,0.007928,-0.002750,0.249985,0,0);}
.m63_c00078{transform:matrix(0.788572,0.008674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.788572,0.008674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.788572,0.008674,-0.002750,0.249985,0,0);}
.m90_c00078{transform:matrix(4.262004,0.093764,-0.005499,0.249940,0,0);-ms-transform:matrix(4.262004,0.093764,-0.005499,0.249940,0,0);-webkit-transform:matrix(4.262004,0.093764,-0.005499,0.249940,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;}
.fs15_c00078{font-size:30.457368px;}
.fs6_c00078{font-size:31.500000px;}
.fs14_c00078{font-size:53.544243px;}
.fs0_c00078{font-size:57.750000px;}
.fs9_c00078{font-size:60.905146px;}
.fsd_c00078{font-size:63.003811px;}
.fs2_c00078{font-size:64.050000px;}
.fsf_c00078{font-size:64.053875px;}
.fs7_c00078{font-size:66.155589px;}
.fs3_c00078{font-size:67.200000px;}
.fsb_c00078{font-size:70.354256px;}
.fs10_c00078{font-size:71.408032px;}
.fs8_c00078{font-size:72.456122px;}
.fs4_c00078{font-size:73.500000px;}
.fs5_c00078{font-size:73.510620px;}
.fs11_c00078{font-size:75.612246px;}
.fs13_c00078{font-size:81.913267px;}
.fs1_c00078{font-size:90.300000px;}
.fsa_c00078{font-size:90.307630px;}
.fs12_c00078{font-size:95.558074px;}
.fse_c00078{font-size:97.655908px;}
.fsc_c00078{font-size:99.756035px;}
.y0_c00078{bottom:0.000000px;}
.y76_c00078{bottom:257.046000px;}
.y75_c00078{bottom:308.427540px;}
.y74_c00078{bottom:313.305030px;}
.y73_c00078{bottom:315.288174px;}
.y72_c00078{bottom:317.598726px;}
.y71_c00078{bottom:318.599988px;}
.y70_c00078{bottom:324.289500px;}
.y6f_c00078{bottom:359.970903px;}
.y6e_c00078{bottom:360.976572px;}
.y6d_c00078{bottom:361.636020px;}
.y6c_c00078{bottom:362.822103px;}
.y6b_c00078{bottom:363.275406px;}
.y6a_c00078{bottom:364.252806px;}
.y69_c00078{bottom:365.584500px;}
.y68_c00078{bottom:386.157114px;}
.y67_c00078{bottom:387.993000px;}
.y66_c00078{bottom:408.408282px;}
.y65_c00078{bottom:409.497084px;}
.y64_c00078{bottom:410.430582px;}
.y63_c00078{bottom:411.431850px;}
.y62_c00078{bottom:412.024500px;}
.y61_c00078{bottom:429.258450px;}
.y60_c00078{bottom:429.724987px;}
.y5f_c00078{bottom:430.420912px;}
.y5e_c00078{bottom:431.491215px;}
.y5d_c00078{bottom:431.989253px;}
.y5c_c00078{bottom:432.321487px;}
.y5b_c00078{bottom:433.066778px;}
.y5a_c00078{bottom:433.451482px;}
.y59_c00078{bottom:433.893000px;}
.y58_c00078{bottom:448.082872px;}
.y57_c00078{bottom:449.741962px;}
.y56_c00078{bottom:450.579227px;}
.y55_c00078{bottom:451.077729px;}
.y54_c00078{bottom:452.517355px;}
.y53_c00078{bottom:453.116469px;}
.y52_c00078{bottom:454.130164px;}
.y51_c00078{bottom:454.762034px;}
.y50_c00078{bottom:455.140710px;}
.y4f_c00078{bottom:455.419122px;}
.y4e_c00078{bottom:456.568890px;}
.y4d_c00078{bottom:473.182459px;}
.y4c_c00078{bottom:474.261981px;}
.y4b_c00078{bottom:477.198539px;}
.y4a_c00078{bottom:478.428660px;}
.y49_c00078{bottom:493.969156px;}
.y48_c00078{bottom:496.600464px;}
.y47_c00078{bottom:497.096514px;}
.y46_c00078{bottom:497.817669px;}
.y45_c00078{bottom:498.408811px;}
.y44_c00078{bottom:499.090956px;}
.y43_c00078{bottom:499.795648px;}
.y42_c00078{bottom:500.243220px;}
.y41_c00078{bottom:500.688778px;}
.y40_c00078{bottom:501.389710px;}
.y3f_c00078{bottom:518.273242px;}
.y3e_c00078{bottom:522.347512px;}
.y3d_c00078{bottom:523.529985px;}
.y3c_c00078{bottom:544.282979px;}
.y3b_c00078{bottom:544.710147px;}
.y3a_c00078{bottom:545.156274px;}
.y39_c00078{bottom:545.485928px;}
.y38_c00078{bottom:545.972463px;}
.y37_c00078{bottom:546.181006px;}
.y36_c00078{bottom:546.545772px;}
.y35_c00078{bottom:546.771508px;}
.y34_c00078{bottom:547.021500px;}
.y33_c00078{bottom:605.669614px;}
.y32_c00078{bottom:607.196002px;}
.y31_c00078{bottom:608.895573px;}
.y30_c00078{bottom:610.187976px;}
.y2f_c00078{bottom:612.333994px;}
.y2e_c00078{bottom:613.051270px;}
.y2d_c00078{bottom:613.939683px;}
.y2c_c00078{bottom:614.785657px;}
.y2b_c00078{bottom:630.613719px;}
.y2a_c00078{bottom:635.440495px;}
.y29_c00078{bottom:652.859338px;}
.y28_c00078{bottom:655.417317px;}
.y27_c00078{bottom:655.740586px;}
.y26_c00078{bottom:656.413230px;}
.y25_c00078{bottom:657.205152px;}
.y24_c00078{bottom:657.550296px;}
.y23_c00078{bottom:658.414374px;}
.y22_c00078{bottom:658.888974px;}
.y21_c00078{bottom:659.683177px;}
.y20_c00078{bottom:659.867067px;}
.y1f_c00078{bottom:660.418131px;}
.y1e_c00078{bottom:678.278493px;}
.y1d_c00078{bottom:679.251273px;}
.y1c_c00078{bottom:679.963350px;}
.y1b_c00078{bottom:680.320480px;}
.y1a_c00078{bottom:680.503369px;}
.y19_c00078{bottom:680.919760px;}
.y18_c00078{bottom:681.188032px;}
.y17_c00078{bottom:681.402100px;}
.y16_c00078{bottom:681.832656px;}
.y15_c00078{bottom:682.018899px;}
.y14_c00078{bottom:699.484735px;}
.y13_c00078{bottom:701.783766px;}
.y12_c00078{bottom:702.330507px;}
.y11_c00078{bottom:703.278909px;}
.y10_c00078{bottom:704.177703px;}
.yf_c00078{bottom:704.711125px;}
.ye_c00078{bottom:705.054306px;}
.yd_c00078{bottom:705.781500px;}
.y6_c00078{bottom:721.176000px;}
.y7_c00078{bottom:722.511894px;}
.y8_c00078{bottom:723.328098px;}
.y9_c00078{bottom:724.299801px;}
.yc_c00078{bottom:724.680000px;}
.ya_c00078{bottom:724.897674px;}
.yb_c00078{bottom:725.976477px;}
.y5_c00078{bottom:749.542500px;}
.y4_c00078{bottom:773.361000px;}
.y3_c00078{bottom:795.945000px;}
.y2_c00078{bottom:841.791000px;}
.y1_c00078{bottom:902.070000px;}
.h17_c00078{height:30.457368px;}
.h8_c00078{height:31.500000px;}
.h16_c00078{height:53.544243px;}
.h2_c00078{height:57.750000px;}
.hb_c00078{height:60.905146px;}
.hf_c00078{height:63.003811px;}
.h4_c00078{height:64.050000px;}
.h11_c00078{height:64.053875px;}
.h9_c00078{height:66.155589px;}
.h5_c00078{height:67.200000px;}
.hd_c00078{height:70.354256px;}
.h12_c00078{height:71.408032px;}
.ha_c00078{height:72.456122px;}
.h6_c00078{height:73.500000px;}
.h7_c00078{height:73.510620px;}
.h13_c00078{height:75.612246px;}
.h15_c00078{height:81.913267px;}
.h3_c00078{height:90.300000px;}
.hc_c00078{height:90.307630px;}
.h14_c00078{height:95.558074px;}
.h10_c00078{height:97.655908px;}
.he_c00078{height:99.756035px;}
.h1_c00078{height:1005.000000px;}
.h0_c00078{height:1005.150000px;}
.w0_c00078{width:705.450000px;}
.w1_c00078{width:705.750000px;}
.x0_c00078{left:0.000000px;}
.xd_c00078{left:109.350000px;}
.x1_c00078{left:113.130000px;}
.x38_c00078{left:119.913005px;}
.x5b_c00078{left:125.866500px;}
.x33_c00078{left:128.048001px;}
.x4f_c00078{left:129.089401px;}
.x2_c00078{left:130.410000px;}
.x1a_c00078{left:132.030000px;}
.xe_c00078{left:133.380000px;}
.x3d_c00078{left:153.801000px;}
.x2b_c00078{left:155.405966px;}
.x54_c00078{left:158.296500px;}
.x4c_c00078{left:160.263601px;}
.xf_c00078{left:163.350000px;}
.x39_c00078{left:164.446034px;}
.x43_c00078{left:166.685433px;}
.x7_c00078{left:169.560000px;}
.x34_c00078{left:173.965707px;}
.x55_c00078{left:183.943500px;}
.x25_c00078{left:189.163500px;}
.x50_c00078{left:192.972484px;}
.x46_c00078{left:201.548528px;}
.x3e_c00078{left:207.483000px;}
.x2c_c00078{left:209.182956px;}
.x1f_c00078{left:211.212000px;}
.x1b_c00078{left:214.920000px;}
.x10_c00078{left:223.560000px;}
.x3_c00078{left:227.340000px;}
.x47_c00078{left:229.553493px;}
.x56_c00078{left:233.629500px;}
.x2d_c00078{left:235.920692px;}
.x5f_c00078{left:240.961914px;}
.x3a_c00078{left:248.953943px;}
.x11_c00078{left:254.070000px;}
.x26_c00078{left:256.594500px;}
.x20_c00078{left:259.224000px;}
.x4d_c00078{left:262.818979px;}
.x44_c00078{left:265.181844px;}
.x5c_c00078{left:266.278500px;}
.x2e_c00078{left:269.366856px;}
.x3f_c00078{left:270.672000px;}
.x48_c00078{left:273.568568px;}
.x17_c00078{left:278.100000px;}
.x4_c00078{left:279.720000px;}
.x8_c00078{left:281.340000px;}
.x60_c00078{left:284.407684px;}
.x57_c00078{left:288.981000px;}
.x40_c00078{left:300.640500px;}
.x35_c00078{left:307.336020px;}
.x61_c00078{left:310.423403px;}
.x21_c00078{left:316.383000px;}
.x12_c00078{left:321.840000px;}
.x27_c00078{left:325.732500px;}
.x5d_c00078{left:326.767500px;}
.x1c_c00078{left:328.590000px;}
.x5_c00078{left:329.940000px;}
.x13_c00078{left:338.580000px;}
.x41_c00078{left:341.197500px;}
.x2f_c00078{left:344.431751px;}
.x5e_c00078{left:347.632500px;}
.x22_c00078{left:351.552000px;}
.x49_c00078{left:353.181195px;}
.x51_c00078{left:354.211576px;}
.x58_c00078{left:360.334500px;}
.x3b_c00078{left:361.869629px;}
.x14_c00078{left:369.360000px;}
.x62_c00078{left:374.408370px;}
.x36_c00078{left:378.415251px;}
.x42_c00078{left:380.031000px;}
.x9_c00078{left:384.210000px;}
.x30_c00078{left:388.983137px;}
.x28_c00078{left:398.686500px;}
.x1d_c00078{left:400.410000px;}
.x6_c00078{left:402.030000px;}
.x59_c00078{left:406.729500px;}
.x23_c00078{left:415.011000px;}
.x37_c00078{left:420.463113px;}
.x15_c00078{left:425.250000px;}
.x4a_c00078{left:429.332021px;}
.x1e_c00078{left:430.380000px;}
.x52_c00078{left:434.216922px;}
.x5a_c00078{left:437.832000px;}
.x29_c00078{left:440.743500px;}
.x16_c00078{left:447.660000px;}
.x18_c00078{left:459.000000px;}
.xa_c00078{left:460.620000px;}
.x53_c00078{left:461.942293px;}
.x31_c00078{left:477.917909px;}
.x4e_c00078{left:507.548790px;}
.x3c_c00078{left:519.316844px;}
.xb_c00078{left:551.340000px;}
.x4b_c00078{left:593.805478px;}
.x19_c00078{left:597.240000px;}
.x32_c00078{left:599.485806px;}
.xc_c00078{left:600.750000px;}
.x45_c00078{left:604.748115px;}
.x24_c00078{left:613.980000px;}
.x2a_c00078{left:617.592000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
.fs15_c00078{font-size:27.073216pt;}
.fs6_c00078{font-size:28.000000pt;}
.fs14_c00078{font-size:47.594883pt;}
.fs0_c00078{font-size:51.333333pt;}
.fs9_c00078{font-size:54.137907pt;}
.fsd_c00078{font-size:56.003388pt;}
.fs2_c00078{font-size:56.933333pt;}
.fsf_c00078{font-size:56.936778pt;}
.fs7_c00078{font-size:58.804968pt;}
.fs3_c00078{font-size:59.733333pt;}
.fsb_c00078{font-size:62.537116pt;}
.fs10_c00078{font-size:63.473806pt;}
.fs8_c00078{font-size:64.405442pt;}
.fs4_c00078{font-size:65.333333pt;}
.fs5_c00078{font-size:65.342773pt;}
.fs11_c00078{font-size:67.210886pt;}
.fs13_c00078{font-size:72.811793pt;}
.fs1_c00078{font-size:80.266667pt;}
.fsa_c00078{font-size:80.273449pt;}
.fs12_c00078{font-size:84.940510pt;}
.fse_c00078{font-size:86.805251pt;}
.fsc_c00078{font-size:88.672031pt;}
.y0_c00078{bottom:0.000000pt;}
.y76_c00078{bottom:228.485333pt;}
.y75_c00078{bottom:274.157813pt;}
.y74_c00078{bottom:278.493360pt;}
.y73_c00078{bottom:280.256155pt;}
.y72_c00078{bottom:282.309979pt;}
.y71_c00078{bottom:283.199989pt;}
.y70_c00078{bottom:288.257333pt;}
.y6f_c00078{bottom:319.974136pt;}
.y6e_c00078{bottom:320.868064pt;}
.y6d_c00078{bottom:321.454240pt;}
.y6c_c00078{bottom:322.508536pt;}
.y6b_c00078{bottom:322.911472pt;}
.y6a_c00078{bottom:323.780272pt;}
.y69_c00078{bottom:324.964000pt;}
.y68_c00078{bottom:343.250768pt;}
.y67_c00078{bottom:344.882667pt;}
.y66_c00078{bottom:363.029584pt;}
.y65_c00078{bottom:363.997408pt;}
.y64_c00078{bottom:364.827184pt;}
.y63_c00078{bottom:365.717200pt;}
.y62_c00078{bottom:366.244000pt;}
.y61_c00078{bottom:381.563067pt;}
.y60_c00078{bottom:381.977767pt;}
.y5f_c00078{bottom:382.596367pt;}
.y5e_c00078{bottom:383.547747pt;}
.y5d_c00078{bottom:383.990447pt;}
.y5c_c00078{bottom:384.285767pt;}
.y5b_c00078{bottom:384.948247pt;}
.y5a_c00078{bottom:385.290207pt;}
.y59_c00078{bottom:385.682667pt;}
.y58_c00078{bottom:398.295887pt;}
.y57_c00078{bottom:399.770633pt;}
.y56_c00078{bottom:400.514868pt;}
.y55_c00078{bottom:400.957981pt;}
.y54_c00078{bottom:402.237649pt;}
.y53_c00078{bottom:402.770195pt;}
.y52_c00078{bottom:403.671257pt;}
.y51_c00078{bottom:404.232919pt;}
.y50_c00078{bottom:404.569520pt;}
.y4f_c00078{bottom:404.816997pt;}
.y4e_c00078{bottom:405.839013pt;}
.y4d_c00078{bottom:420.606631pt;}
.y4c_c00078{bottom:421.566205pt;}
.y4b_c00078{bottom:424.176479pt;}
.y4a_c00078{bottom:425.269920pt;}
.y49_c00078{bottom:439.083695pt;}
.y48_c00078{bottom:441.422635pt;}
.y47_c00078{bottom:441.863568pt;}
.y46_c00078{bottom:442.504595pt;}
.y45_c00078{bottom:443.030055pt;}
.y44_c00078{bottom:443.636405pt;}
.y43_c00078{bottom:444.262799pt;}
.y42_c00078{bottom:444.660640pt;}
.y41_c00078{bottom:445.056692pt;}
.y40_c00078{bottom:445.679743pt;}
.y3f_c00078{bottom:460.687327pt;}
.y3e_c00078{bottom:464.308900pt;}
.y3d_c00078{bottom:465.359987pt;}
.y3c_c00078{bottom:483.807092pt;}
.y3b_c00078{bottom:484.186797pt;}
.y3a_c00078{bottom:484.583355pt;}
.y39_c00078{bottom:484.876380pt;}
.y38_c00078{bottom:485.308856pt;}
.y37_c00078{bottom:485.494228pt;}
.y36_c00078{bottom:485.818464pt;}
.y35_c00078{bottom:486.019119pt;}
.y34_c00078{bottom:486.241333pt;}
.y33_c00078{bottom:538.372991pt;}
.y32_c00078{bottom:539.729780pt;}
.y31_c00078{bottom:541.240509pt;}
.y30_c00078{bottom:542.389312pt;}
.y2f_c00078{bottom:544.296884pt;}
.y2e_c00078{bottom:544.934463pt;}
.y2d_c00078{bottom:545.724163pt;}
.y2c_c00078{bottom:546.476140pt;}
.y2b_c00078{bottom:560.545528pt;}
.y2a_c00078{bottom:564.835996pt;}
.y29_c00078{bottom:580.319412pt;}
.y28_c00078{bottom:582.593171pt;}
.y27_c00078{bottom:582.880521pt;}
.y26_c00078{bottom:583.478427pt;}
.y25_c00078{bottom:584.182357pt;}
.y24_c00078{bottom:584.489152pt;}
.y23_c00078{bottom:585.257221pt;}
.y22_c00078{bottom:585.679088pt;}
.y21_c00078{bottom:586.385047pt;}
.y20_c00078{bottom:586.548504pt;}
.y1f_c00078{bottom:587.038339pt;}
.y1e_c00078{bottom:602.914216pt;}
.y1d_c00078{bottom:603.778909pt;}
.y1c_c00078{bottom:604.411867pt;}
.y1b_c00078{bottom:604.729316pt;}
.y1a_c00078{bottom:604.891884pt;}
.y19_c00078{bottom:605.262009pt;}
.y18_c00078{bottom:605.500473pt;}
.y17_c00078{bottom:605.690756pt;}
.y16_c00078{bottom:606.073472pt;}
.y15_c00078{bottom:606.239021pt;}
.y14_c00078{bottom:621.764209pt;}
.y13_c00078{bottom:623.807792pt;}
.y12_c00078{bottom:624.293784pt;}
.y11_c00078{bottom:625.136808pt;}
.y10_c00078{bottom:625.935736pt;}
.yf_c00078{bottom:626.409889pt;}
.ye_c00078{bottom:626.714939pt;}
.yd_c00078{bottom:627.361333pt;}
.y6_c00078{bottom:641.045333pt;}
.y7_c00078{bottom:642.232795pt;}
.y8_c00078{bottom:642.958309pt;}
.y9_c00078{bottom:643.822045pt;}
.yc_c00078{bottom:644.160000pt;}
.ya_c00078{bottom:644.353488pt;}
.yb_c00078{bottom:645.312424pt;}
.y5_c00078{bottom:666.260000pt;}
.y4_c00078{bottom:687.432000pt;}
.y3_c00078{bottom:707.506667pt;}
.y2_c00078{bottom:748.258667pt;}
.y1_c00078{bottom:801.840000pt;}
.h17_c00078{height:27.073216pt;}
.h8_c00078{height:28.000000pt;}
.h16_c00078{height:47.594883pt;}
.h2_c00078{height:51.333333pt;}
.hb_c00078{height:54.137907pt;}
.hf_c00078{height:56.003388pt;}
.h4_c00078{height:56.933333pt;}
.h11_c00078{height:56.936778pt;}
.h9_c00078{height:58.804968pt;}
.h5_c00078{height:59.733333pt;}
.hd_c00078{height:62.537116pt;}
.h12_c00078{height:63.473806pt;}
.ha_c00078{height:64.405442pt;}
.h6_c00078{height:65.333333pt;}
.h7_c00078{height:65.342773pt;}
.h13_c00078{height:67.210886pt;}
.h15_c00078{height:72.811793pt;}
.h3_c00078{height:80.266667pt;}
.hc_c00078{height:80.273449pt;}
.h14_c00078{height:84.940510pt;}
.h10_c00078{height:86.805251pt;}
.he_c00078{height:88.672031pt;}
.h1_c00078{height:893.333333pt;}
.h0_c00078{height:893.466667pt;}
.w0_c00078{width:627.066667pt;}
.w1_c00078{width:627.333333pt;}
.x0_c00078{left:0.000000pt;}
.xd_c00078{left:97.200000pt;}
.x1_c00078{left:100.560000pt;}
.x38_c00078{left:106.589337pt;}
.x5b_c00078{left:111.881333pt;}
.x33_c00078{left:113.820445pt;}
.x4f_c00078{left:114.746135pt;}
.x2_c00078{left:115.920000pt;}
.x1a_c00078{left:117.360000pt;}
.xe_c00078{left:118.560000pt;}
.x3d_c00078{left:136.712000pt;}
.x2b_c00078{left:138.138636pt;}
.x54_c00078{left:140.708000pt;}
.x4c_c00078{left:142.456535pt;}
.xf_c00078{left:145.200000pt;}
.x39_c00078{left:146.174252pt;}
.x43_c00078{left:148.164829pt;}
.x7_c00078{left:150.720000pt;}
.x34_c00078{left:154.636184pt;}
.x55_c00078{left:163.505333pt;}
.x25_c00078{left:168.145333pt;}
.x50_c00078{left:171.531097pt;}
.x46_c00078{left:179.154247pt;}
.x3e_c00078{left:184.429333pt;}
.x2c_c00078{left:185.940405pt;}
.x1f_c00078{left:187.744000pt;}
.x1b_c00078{left:191.040000pt;}
.x10_c00078{left:198.720000pt;}
.x3_c00078{left:202.080000pt;}
.x47_c00078{left:204.047549pt;}
.x56_c00078{left:207.670667pt;}
.x2d_c00078{left:209.707281pt;}
.x5f_c00078{left:214.188368pt;}
.x3a_c00078{left:221.292393pt;}
.x11_c00078{left:225.840000pt;}
.x26_c00078{left:228.084000pt;}
.x20_c00078{left:230.421333pt;}
.x4d_c00078{left:233.616871pt;}
.x44_c00078{left:235.717195pt;}
.x5c_c00078{left:236.692000pt;}
.x2e_c00078{left:239.437205pt;}
.x3f_c00078{left:240.597333pt;}
.x48_c00078{left:243.172060pt;}
.x17_c00078{left:247.200000pt;}
.x4_c00078{left:248.640000pt;}
.x8_c00078{left:250.080000pt;}
.x60_c00078{left:252.806831pt;}
.x57_c00078{left:256.872000pt;}
.x40_c00078{left:267.236000pt;}
.x35_c00078{left:273.187573pt;}
.x61_c00078{left:275.931913pt;}
.x21_c00078{left:281.229333pt;}
.x12_c00078{left:286.080000pt;}
.x27_c00078{left:289.540000pt;}
.x5d_c00078{left:290.460000pt;}
.x1c_c00078{left:292.080000pt;}
.x5_c00078{left:293.280000pt;}
.x13_c00078{left:300.960000pt;}
.x41_c00078{left:303.286667pt;}
.x2f_c00078{left:306.161556pt;}
.x5e_c00078{left:309.006667pt;}
.x22_c00078{left:312.490667pt;}
.x49_c00078{left:313.938840pt;}
.x51_c00078{left:314.854735pt;}
.x58_c00078{left:320.297333pt;}
.x3b_c00078{left:321.661892pt;}
.x14_c00078{left:328.320000pt;}
.x62_c00078{left:332.807440pt;}
.x36_c00078{left:336.369112pt;}
.x42_c00078{left:337.805333pt;}
.x9_c00078{left:341.520000pt;}
.x30_c00078{left:345.762788pt;}
.x28_c00078{left:354.388000pt;}
.x1d_c00078{left:355.920000pt;}
.x6_c00078{left:357.360000pt;}
.x59_c00078{left:361.537333pt;}
.x23_c00078{left:368.898667pt;}
.x37_c00078{left:373.744989pt;}
.x15_c00078{left:378.000000pt;}
.x4a_c00078{left:381.628463pt;}
.x1e_c00078{left:382.560000pt;}
.x52_c00078{left:385.970597pt;}
.x5a_c00078{left:389.184000pt;}
.x29_c00078{left:391.772000pt;}
.x16_c00078{left:397.920000pt;}
.x18_c00078{left:408.000000pt;}
.xa_c00078{left:409.440000pt;}
.x53_c00078{left:410.615372pt;}
.x31_c00078{left:424.815919pt;}
.x4e_c00078{left:451.154480pt;}
.x3c_c00078{left:461.614972pt;}
.xb_c00078{left:490.080000pt;}
.x4b_c00078{left:527.827092pt;}
.x19_c00078{left:530.880000pt;}
.x32_c00078{left:532.876272pt;}
.xc_c00078{left:534.000000pt;}
.x45_c00078{left:537.553880pt;}
.x24_c00078{left:545.760000pt;}
.x2a_c00078{left:548.970667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m65_c00079{transform:matrix(0.010855,-0.000098,0.002250,0.249990,0,0);-ms-transform:matrix(0.010855,-0.000098,0.002250,0.249990,0,0);-webkit-transform:matrix(0.010855,-0.000098,0.002250,0.249990,0,0);}
.m3_c00079{transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);}
.m95_c00079{transform:matrix(0.016940,-0.000102,0.001500,0.249996,0,0);-ms-transform:matrix(0.016940,-0.000102,0.001500,0.249996,0,0);-webkit-transform:matrix(0.016940,-0.000102,0.001500,0.249996,0,0);}
.m6_c00079{transform:matrix(0.030200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030200,0.000000,0.000000,0.250000,0,0);}
.mb4_c00079{transform:matrix(0.033599,-0.000202,0.001500,0.249996,0,0);-ms-transform:matrix(0.033599,-0.000202,0.001500,0.249996,0,0);-webkit-transform:matrix(0.033599,-0.000202,0.001500,0.249996,0,0);}
.me1_c00079{transform:matrix(0.036365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036365,0.000000,0.000000,0.250000,0,0);}
.m11a_c00079{transform:matrix(0.039829,-0.000279,0.001750,0.249994,0,0);-ms-transform:matrix(0.039829,-0.000279,0.001750,0.249994,0,0);-webkit-transform:matrix(0.039829,-0.000279,0.001750,0.249994,0,0);}
.m8d_c00079{transform:matrix(0.058639,-0.000352,0.001500,0.249996,0,0);-ms-transform:matrix(0.058639,-0.000352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.058639,-0.000352,0.001500,0.249996,0,0);}
.ma1_c00079{transform:matrix(0.064729,-0.000388,0.001500,0.249996,0,0);-ms-transform:matrix(0.064729,-0.000388,0.001500,0.249996,0,0);-webkit-transform:matrix(0.064729,-0.000388,0.001500,0.249996,0,0);}
.m8f_c00079{transform:matrix(0.115893,-0.000695,0.001500,0.249996,0,0);-ms-transform:matrix(0.115893,-0.000695,0.001500,0.249996,0,0);-webkit-transform:matrix(0.115893,-0.000695,0.001500,0.249996,0,0);}
.m114_c00079{transform:matrix(0.118357,-0.000828,0.001750,0.249994,0,0);-ms-transform:matrix(0.118357,-0.000828,0.001750,0.249994,0,0);-webkit-transform:matrix(0.118357,-0.000828,0.001750,0.249994,0,0);}
.me6_c00079{transform:matrix(0.135901,-0.001087,0.002000,0.249992,0,0);-ms-transform:matrix(0.135901,-0.001087,0.002000,0.249992,0,0);-webkit-transform:matrix(0.135901,-0.001087,0.002000,0.249992,0,0);}
.m41_c00079{transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);-ms-transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);}
.m3d_c00079{transform:matrix(0.144781,-0.001593,0.002750,0.249985,0,0);-ms-transform:matrix(0.144781,-0.001593,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144781,-0.001593,0.002750,0.249985,0,0);}
.m14d_c00079{transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);}
.me8_c00079{transform:matrix(0.148070,-0.001185,0.002000,0.249992,0,0);-ms-transform:matrix(0.148070,-0.001185,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148070,-0.001185,0.002000,0.249992,0,0);}
.m121_c00079{transform:matrix(0.148855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148855,0.000000,0.000000,0.250000,0,0);}
.m50_c00079{transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);-ms-transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);}
.me7_c00079{transform:matrix(0.151245,-0.001210,0.002000,0.249992,0,0);-ms-transform:matrix(0.151245,-0.001210,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151245,-0.001210,0.002000,0.249992,0,0);}
.m21_c00079{transform:matrix(0.154580,-0.002164,0.003500,0.249976,0,0);-ms-transform:matrix(0.154580,-0.002164,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154580,-0.002164,0.003500,0.249976,0,0);}
.m126_c00079{transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);}
.m8b_c00079{transform:matrix(0.156412,-0.000938,0.001500,0.249996,0,0);-ms-transform:matrix(0.156412,-0.000938,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156412,-0.000938,0.001500,0.249996,0,0);}
.me5_c00079{transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);-ms-transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);}
.mc2_c00079{transform:matrix(0.157151,-0.001100,0.001750,0.249994,0,0);-ms-transform:matrix(0.157151,-0.001100,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157151,-0.001100,0.001750,0.249994,0,0);}
.me2_c00079{transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);}
.m147_c00079{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);}
.m61_c00079{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);}
.mb0_c00079{transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);-ms-transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);-webkit-transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);}
.m5b_c00079{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);}
.med_c00079{transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);-ms-transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);}
.m12c_c00079{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.163914,-0.002295,0.003500,0.249976,0,0);-ms-transform:matrix(0.163914,-0.002295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163914,-0.002295,0.003500,0.249976,0,0);}
.m75_c00079{transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);-ms-transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);}
.md4_c00079{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);}
.m6c_c00079{transform:matrix(0.165523,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165523,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165523,-0.001490,0.002250,0.249990,0,0);}
.mcf_c00079{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.166124,-0.002326,0.003500,0.249976,0,0);-ms-transform:matrix(0.166124,-0.002326,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166124,-0.002326,0.003500,0.249976,0,0);}
.m1c_c00079{transform:matrix(0.166794,-0.002335,0.003500,0.249976,0,0);-ms-transform:matrix(0.166794,-0.002335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166794,-0.002335,0.003500,0.249976,0,0);}
.m38_c00079{transform:matrix(0.167505,-0.001843,0.002750,0.249985,0,0);-ms-transform:matrix(0.167505,-0.001843,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167505,-0.001843,0.002750,0.249985,0,0);}
.m129_c00079{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);}
.mdd_c00079{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);}
.m39_c00079{transform:matrix(0.168990,-0.001859,0.002750,0.249985,0,0);-ms-transform:matrix(0.168990,-0.001859,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168990,-0.001859,0.002750,0.249985,0,0);}
.m76_c00079{transform:matrix(0.169095,-0.001860,0.002750,0.249985,0,0);-ms-transform:matrix(0.169095,-0.001860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169095,-0.001860,0.002750,0.249985,0,0);}
.m10_c00079{transform:matrix(0.169455,-0.001864,0.002750,0.249985,0,0);-ms-transform:matrix(0.169455,-0.001864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169455,-0.001864,0.002750,0.249985,0,0);}
.mdb_c00079{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);}
.me3_c00079{transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);}
.m112_c00079{transform:matrix(0.171706,-0.001202,0.001750,0.249994,0,0);-ms-transform:matrix(0.171706,-0.001202,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171706,-0.001202,0.001750,0.249994,0,0);}
.mee_c00079{transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);-ms-transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);}
.mea_c00079{transform:matrix(0.171954,-0.001376,0.002000,0.249992,0,0);-ms-transform:matrix(0.171954,-0.001376,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171954,-0.001376,0.002000,0.249992,0,0);}
.me9_c00079{transform:matrix(0.172314,-0.001379,0.002000,0.249992,0,0);-ms-transform:matrix(0.172314,-0.001379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172314,-0.001379,0.002000,0.249992,0,0);}
.m52_c00079{transform:matrix(0.172408,-0.001552,0.002250,0.249990,0,0);-ms-transform:matrix(0.172408,-0.001552,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172408,-0.001552,0.002250,0.249990,0,0);}
.mbb_c00079{transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);-ms-transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);}
.mb2_c00079{transform:matrix(0.172812,-0.001037,0.001500,0.249996,0,0);-ms-transform:matrix(0.172812,-0.001037,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172812,-0.001037,0.001500,0.249996,0,0);}
.m12f_c00079{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);}
.mda_c00079{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);}
.m3b_c00079{transform:matrix(0.173390,-0.001907,0.002750,0.249985,0,0);-ms-transform:matrix(0.173390,-0.001907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173390,-0.001907,0.002750,0.249985,0,0);}
.m7c_c00079{transform:matrix(0.173574,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173574,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173574,-0.001909,0.002750,0.249985,0,0);}
.m51_c00079{transform:matrix(0.175478,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175478,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175478,-0.001579,0.002250,0.249990,0,0);}
.mab_c00079{transform:matrix(0.175657,-0.001054,0.001500,0.249996,0,0);-ms-transform:matrix(0.175657,-0.001054,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175657,-0.001054,0.001500,0.249996,0,0);}
.mf4_c00079{transform:matrix(0.175866,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175866,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175866,-0.001231,0.001750,0.249994,0,0);}
.mf3_c00079{transform:matrix(0.176101,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176101,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176101,-0.001233,0.001750,0.249994,0,0);}
.m120_c00079{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);}
.mb8_c00079{transform:matrix(0.176916,-0.001238,0.001750,0.249994,0,0);-ms-transform:matrix(0.176916,-0.001238,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176916,-0.001238,0.001750,0.249994,0,0);}
.m3f_c00079{transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);}
.m70_c00079{transform:matrix(0.178498,-0.001606,0.002250,0.249990,0,0);-ms-transform:matrix(0.178498,-0.001606,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178498,-0.001606,0.002250,0.249990,0,0);}
.mbf_c00079{transform:matrix(0.178601,-0.001250,0.001750,0.249994,0,0);-ms-transform:matrix(0.178601,-0.001250,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178601,-0.001250,0.001750,0.249994,0,0);}
.m19_c00079{transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);-ms-transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);}
.m123_c00079{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);}
.m9f_c00079{transform:matrix(0.179397,-0.001076,0.001500,0.249996,0,0);-ms-transform:matrix(0.179397,-0.001076,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179397,-0.001076,0.001500,0.249996,0,0);}
.md7_c00079{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);}
.m136_c00079{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);}
.m15_c00079{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);}
.m81_c00079{transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);}
.m10d_c00079{transform:matrix(0.180606,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180606,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180606,-0.001264,0.001750,0.249994,0,0);}
.m45_c00079{transform:matrix(0.180813,-0.001627,0.002250,0.249990,0,0);-ms-transform:matrix(0.180813,-0.001627,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180813,-0.001627,0.002250,0.249990,0,0);}
.m88_c00079{transform:matrix(0.180989,-0.001448,0.002000,0.249992,0,0);-ms-transform:matrix(0.180989,-0.001448,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180989,-0.001448,0.002000,0.249992,0,0);}
.m7e_c00079{transform:matrix(0.181469,-0.001452,0.002000,0.249992,0,0);-ms-transform:matrix(0.181469,-0.001452,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181469,-0.001452,0.002000,0.249992,0,0);}
.m5d_c00079{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m101_c00079{transform:matrix(0.181821,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181821,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181821,-0.001273,0.001750,0.249994,0,0);}
.m108_c00079{transform:matrix(0.181901,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181901,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181901,-0.001273,0.001750,0.249994,0,0);}
.md6_c00079{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);}
.m4c_c00079{transform:matrix(0.182988,-0.001647,0.002250,0.249990,0,0);-ms-transform:matrix(0.182988,-0.001647,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182988,-0.001647,0.002250,0.249990,0,0);}
.m124_c00079{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);}
.m24_c00079{transform:matrix(0.183357,-0.002567,0.003500,0.249976,0,0);-ms-transform:matrix(0.183357,-0.002567,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183357,-0.002567,0.003500,0.249976,0,0);}
.m12b_c00079{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);}
.m1f_c00079{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);}
.m3a_c00079{transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);-ms-transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);}
.m2f_c00079{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);}
.mec_c00079{transform:matrix(0.185339,-0.001483,0.002000,0.249992,0,0);-ms-transform:matrix(0.185339,-0.001483,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185339,-0.001483,0.002000,0.249992,0,0);}
.mb7_c00079{transform:matrix(0.185815,-0.001301,0.001750,0.249994,0,0);-ms-transform:matrix(0.185815,-0.001301,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185815,-0.001301,0.001750,0.249994,0,0);}
.m5f_c00079{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);}
.m48_c00079{transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);}
.m59_c00079{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);}
.m109_c00079{transform:matrix(0.186875,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186875,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186875,-0.001308,0.001750,0.249994,0,0);}
.m106_c00079{transform:matrix(0.186975,-0.001309,0.001750,0.249994,0,0);-ms-transform:matrix(0.186975,-0.001309,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186975,-0.001309,0.001750,0.249994,0,0);}
.md1_c00079{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);}
.m72_c00079{transform:matrix(0.187422,-0.001687,0.002250,0.249990,0,0);-ms-transform:matrix(0.187422,-0.001687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187422,-0.001687,0.002250,0.249990,0,0);}
.m14f_c00079{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);}
.md0_c00079{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);}
.m13d_c00079{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);}
.m11d_c00079{transform:matrix(0.188430,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188430,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188430,-0.001319,0.001750,0.249994,0,0);}
.mfd_c00079{transform:matrix(0.188615,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188615,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188615,-0.001320,0.001750,0.249994,0,0);}
.ma2_c00079{transform:matrix(0.188662,-0.001132,0.001500,0.249996,0,0);-ms-transform:matrix(0.188662,-0.001132,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188662,-0.001132,0.001500,0.249996,0,0);}
.m13_c00079{transform:matrix(0.188672,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188672,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188672,-0.002641,0.003500,0.249976,0,0);}
.m7b_c00079{transform:matrix(0.189179,-0.002081,0.002750,0.249985,0,0);-ms-transform:matrix(0.189179,-0.002081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189179,-0.002081,0.002750,0.249985,0,0);}
.m10f_c00079{transform:matrix(0.189240,-0.001325,0.001750,0.249994,0,0);-ms-transform:matrix(0.189240,-0.001325,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189240,-0.001325,0.001750,0.249994,0,0);}
.md8_c00079{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);}
.m119_c00079{transform:matrix(0.190230,-0.001332,0.001750,0.249994,0,0);-ms-transform:matrix(0.190230,-0.001332,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190230,-0.001332,0.001750,0.249994,0,0);}
.m71_c00079{transform:matrix(0.191087,-0.001720,0.002250,0.249990,0,0);-ms-transform:matrix(0.191087,-0.001720,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191087,-0.001720,0.002250,0.249990,0,0);}
.mac_c00079{transform:matrix(0.191197,-0.001147,0.001500,0.249996,0,0);-ms-transform:matrix(0.191197,-0.001147,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191197,-0.001147,0.001500,0.249996,0,0);}
.m30_c00079{transform:matrix(0.191533,-0.002107,0.002750,0.249985,0,0);-ms-transform:matrix(0.191533,-0.002107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191533,-0.002107,0.002750,0.249985,0,0);}
.m139_c00079{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);}
.m60_c00079{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);}
.maf_c00079{transform:matrix(0.191797,-0.001151,0.001500,0.249996,0,0);-ms-transform:matrix(0.191797,-0.001151,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191797,-0.001151,0.001500,0.249996,0,0);}
.m40_c00079{transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);}
.mb3_c00079{transform:matrix(0.192207,-0.001153,0.001500,0.249996,0,0);-ms-transform:matrix(0.192207,-0.001153,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192207,-0.001153,0.001500,0.249996,0,0);}
.mc1_c00079{transform:matrix(0.192425,-0.001347,0.001750,0.249994,0,0);-ms-transform:matrix(0.192425,-0.001347,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192425,-0.001347,0.001750,0.249994,0,0);}
.mef_c00079{transform:matrix(0.192484,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192484,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192484,-0.001540,0.002000,0.249992,0,0);}
.m28_c00079{transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);}
.m97_c00079{transform:matrix(0.192772,-0.001157,0.001500,0.249996,0,0);-ms-transform:matrix(0.192772,-0.001157,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192772,-0.001157,0.001500,0.249996,0,0);}
.m1d_c00079{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);}
.m13b_c00079{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);}
.m3e_c00079{transform:matrix(0.193283,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193283,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193283,-0.002126,0.002750,0.249985,0,0);}
.m117_c00079{transform:matrix(0.193775,-0.001356,0.001750,0.249994,0,0);-ms-transform:matrix(0.193775,-0.001356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193775,-0.001356,0.001750,0.249994,0,0);}
.m127_c00079{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);}
.m35_c00079{transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);}
.m125_c00079{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);}
.m6a_c00079{transform:matrix(0.194387,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194387,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194387,-0.001749,0.002250,0.249990,0,0);}
.m148_c00079{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);}
.ma7_c00079{transform:matrix(0.194591,-0.001168,0.001500,0.249996,0,0);-ms-transform:matrix(0.194591,-0.001168,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194591,-0.001168,0.001500,0.249996,0,0);}
.m6e_c00079{transform:matrix(0.194862,-0.001754,0.002250,0.249990,0,0);-ms-transform:matrix(0.194862,-0.001754,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194862,-0.001754,0.002250,0.249990,0,0);}
.ma0_c00079{transform:matrix(0.194906,-0.001169,0.001500,0.249996,0,0);-ms-transform:matrix(0.194906,-0.001169,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194906,-0.001169,0.001500,0.249996,0,0);}
.m6b_c00079{transform:matrix(0.195322,-0.001758,0.002250,0.249990,0,0);-ms-transform:matrix(0.195322,-0.001758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195322,-0.001758,0.002250,0.249990,0,0);}
.mb6_c00079{transform:matrix(0.195345,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195345,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195345,-0.001367,0.001750,0.249994,0,0);}
.mc5_c00079{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);}
.m26_c00079{transform:matrix(0.196286,-0.002748,0.003500,0.249976,0,0);-ms-transform:matrix(0.196286,-0.002748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196286,-0.002748,0.003500,0.249976,0,0);}
.me4_c00079{transform:matrix(0.196459,-0.001572,0.002000,0.249992,0,0);-ms-transform:matrix(0.196459,-0.001572,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196459,-0.001572,0.002000,0.249992,0,0);}
.m69_c00079{transform:matrix(0.196622,-0.001770,0.002250,0.249990,0,0);-ms-transform:matrix(0.196622,-0.001770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196622,-0.001770,0.002250,0.249990,0,0);}
.m73_c00079{transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);}
.mdf_c00079{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);}
.m133_c00079{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);}
.m74_c00079{transform:matrix(0.197207,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197207,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197207,-0.001775,0.002250,0.249990,0,0);}
.m67_c00079{transform:matrix(0.197272,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197272,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197272,-0.001775,0.002250,0.249990,0,0);}
.m18_c00079{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);}
.mc0_c00079{transform:matrix(0.197815,-0.001385,0.001750,0.249994,0,0);-ms-transform:matrix(0.197815,-0.001385,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197815,-0.001385,0.001750,0.249994,0,0);}
.mdc_c00079{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);}
.ma8_c00079{transform:matrix(0.197941,-0.001188,0.001500,0.249996,0,0);-ms-transform:matrix(0.197941,-0.001188,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197941,-0.001188,0.001500,0.249996,0,0);}
.md3_c00079{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);}
.m62_c00079{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);}
.m1b_c00079{transform:matrix(0.198291,-0.002776,0.003500,0.249976,0,0);-ms-transform:matrix(0.198291,-0.002776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198291,-0.002776,0.003500,0.249976,0,0);}
.m47_c00079{transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);}
.m2c_c00079{transform:matrix(0.198616,-0.002781,0.003500,0.249976,0,0);-ms-transform:matrix(0.198616,-0.002781,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198616,-0.002781,0.003500,0.249976,0,0);}
.m116_c00079{transform:matrix(0.199840,-0.001399,0.001750,0.249994,0,0);-ms-transform:matrix(0.199840,-0.001399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199840,-0.001399,0.001750,0.249994,0,0);}
.m6f_c00079{transform:matrix(0.200187,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200187,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200187,-0.001802,0.002250,0.249990,0,0);}
.m130_c00079{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);}
.m12e_c00079{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);}
.me_c00079{transform:matrix(0.201038,-0.002211,0.002750,0.249985,0,0);-ms-transform:matrix(0.201038,-0.002211,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201038,-0.002211,0.002750,0.249985,0,0);}
.md5_c00079{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);}
.m34_c00079{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);}
.m2b_c00079{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);}
.m56_c00079{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);}
.mc3_c00079{transform:matrix(0.202125,-0.001415,0.001750,0.249994,0,0);-ms-transform:matrix(0.202125,-0.001415,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202125,-0.001415,0.001750,0.249994,0,0);}
.m12d_c00079{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);}
.m9d_c00079{transform:matrix(0.203036,-0.001218,0.001500,0.249996,0,0);-ms-transform:matrix(0.203036,-0.001218,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203036,-0.001218,0.001500,0.249996,0,0);}
.md2_c00079{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);}
.mba_c00079{transform:matrix(0.203285,-0.001423,0.001750,0.249994,0,0);-ms-transform:matrix(0.203285,-0.001423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203285,-0.001423,0.001750,0.249994,0,0);}
.m99_c00079{transform:matrix(0.203466,-0.001221,0.001500,0.249996,0,0);-ms-transform:matrix(0.203466,-0.001221,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203466,-0.001221,0.001500,0.249996,0,0);}
.m149_c00079{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);}
.m1a_c00079{transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);}
.m57_c00079{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);}
.m93_c00079{transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-ms-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);}
.mf0_c00079{transform:matrix(0.204655,-0.001433,0.001750,0.249994,0,0);-ms-transform:matrix(0.204655,-0.001433,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204655,-0.001433,0.001750,0.249994,0,0);}
.mf9_c00079{transform:matrix(0.204790,-0.001434,0.001750,0.249994,0,0);-ms-transform:matrix(0.204790,-0.001434,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204790,-0.001434,0.001750,0.249994,0,0);}
.m2e_c00079{transform:matrix(0.204933,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204933,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204933,-0.002254,0.002750,0.249985,0,0);}
.m13e_c00079{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.me0_c00079{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);}
.ma3_c00079{transform:matrix(0.205096,-0.001231,0.001500,0.249996,0,0);-ms-transform:matrix(0.205096,-0.001231,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205096,-0.001231,0.001500,0.249996,0,0);}
.m44_c00079{transform:matrix(0.205362,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205362,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205362,-0.001848,0.002250,0.249990,0,0);}
.m11_c00079{transform:matrix(0.205888,-0.002265,0.002750,0.249985,0,0);-ms-transform:matrix(0.205888,-0.002265,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205888,-0.002265,0.002750,0.249985,0,0);}
.m66_c00079{transform:matrix(0.205987,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.205987,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205987,-0.001854,0.002250,0.249990,0,0);}
.m4d_c00079{transform:matrix(0.206277,-0.001856,0.002250,0.249990,0,0);-ms-transform:matrix(0.206277,-0.001856,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206277,-0.001856,0.002250,0.249990,0,0);}
.m144_c00079{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);}
.m16_c00079{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);}
.mb_c00079{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);}
.m10a_c00079{transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);}
.m134_c00079{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);}
.m4f_c00079{transform:matrix(0.207702,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207702,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207702,-0.001869,0.002250,0.249990,0,0);}
.m17_c00079{transform:matrix(0.207915,-0.002911,0.003500,0.249976,0,0);-ms-transform:matrix(0.207915,-0.002911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207915,-0.002911,0.003500,0.249976,0,0);}
.mbe_c00079{transform:matrix(0.208615,-0.001460,0.001750,0.249994,0,0);-ms-transform:matrix(0.208615,-0.001460,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208615,-0.001460,0.001750,0.249994,0,0);}
.m118_c00079{transform:matrix(0.208885,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208885,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208885,-0.001462,0.001750,0.249994,0,0);}
.maa_c00079{transform:matrix(0.208986,-0.001254,0.001500,0.249996,0,0);-ms-transform:matrix(0.208986,-0.001254,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208986,-0.001254,0.001500,0.249996,0,0);}
.mc7_c00079{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);}
.m122_c00079{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);}
.mf_c00079{transform:matrix(0.209702,-0.002307,0.002750,0.249985,0,0);-ms-transform:matrix(0.209702,-0.002307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209702,-0.002307,0.002750,0.249985,0,0);}
.mc8_c00079{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);}
.mb9_c00079{transform:matrix(0.209960,-0.001470,0.001750,0.249994,0,0);-ms-transform:matrix(0.209960,-0.001470,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209960,-0.001470,0.001750,0.249994,0,0);}
.m11c_c00079{transform:matrix(0.210100,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210100,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210100,-0.001471,0.001750,0.249994,0,0);}
.m100_c00079{transform:matrix(0.210495,-0.001473,0.001750,0.249994,0,0);-ms-transform:matrix(0.210495,-0.001473,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210495,-0.001473,0.001750,0.249994,0,0);}
.m9a_c00079{transform:matrix(0.210621,-0.001264,0.001500,0.249996,0,0);-ms-transform:matrix(0.210621,-0.001264,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210621,-0.001264,0.001500,0.249996,0,0);}
.m14e_c00079{transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);}
.mf2_c00079{transform:matrix(0.210815,-0.001476,0.001750,0.249994,0,0);-ms-transform:matrix(0.210815,-0.001476,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210815,-0.001476,0.001750,0.249994,0,0);}
.m10b_c00079{transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);-ms-transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);}
.m7d_c00079{transform:matrix(0.212023,-0.001696,0.002000,0.249992,0,0);-ms-transform:matrix(0.212023,-0.001696,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212023,-0.001696,0.002000,0.249992,0,0);}
.m27_c00079{transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);-ms-transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);}
.m11e_c00079{transform:matrix(0.212785,-0.001489,0.001750,0.249994,0,0);-ms-transform:matrix(0.212785,-0.001489,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212785,-0.001489,0.001750,0.249994,0,0);}
.m14_c00079{transform:matrix(0.212994,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.212994,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212994,-0.002982,0.003500,0.249976,0,0);}
.m13a_c00079{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);}
.m68_c00079{transform:matrix(0.213586,-0.001922,0.002250,0.249990,0,0);-ms-transform:matrix(0.213586,-0.001922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213586,-0.001922,0.002250,0.249990,0,0);}
.mc9_c00079{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);}
.m79_c00079{transform:matrix(0.213777,-0.002352,0.002750,0.249985,0,0);-ms-transform:matrix(0.213777,-0.002352,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213777,-0.002352,0.002750,0.249985,0,0);}
.ma6_c00079{transform:matrix(0.214541,-0.001287,0.001500,0.249996,0,0);-ms-transform:matrix(0.214541,-0.001287,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214541,-0.001287,0.001500,0.249996,0,0);}
.m78_c00079{transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);-ms-transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);}
.m82_c00079{transform:matrix(0.214838,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214838,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214838,-0.001719,0.002000,0.249992,0,0);}
.m58_c00079{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);}
.m98_c00079{transform:matrix(0.215656,-0.001294,0.001500,0.249996,0,0);-ms-transform:matrix(0.215656,-0.001294,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215656,-0.001294,0.001500,0.249996,0,0);}
.m132_c00079{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m142_c00079{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);}
.m135_c00079{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);}
.m90_c00079{transform:matrix(0.217591,-0.001306,0.001500,0.249996,0,0);-ms-transform:matrix(0.217591,-0.001306,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217591,-0.001306,0.001500,0.249996,0,0);}
.m43_c00079{transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);}
.m63_c00079{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);}
.m6d_c00079{transform:matrix(0.218556,-0.001967,0.002250,0.249990,0,0);-ms-transform:matrix(0.218556,-0.001967,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218556,-0.001967,0.002250,0.249990,0,0);}
.m91_c00079{transform:matrix(0.218956,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.218956,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218956,-0.001314,0.001500,0.249996,0,0);}
.m64_c00079{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);}
.mff_c00079{transform:matrix(0.219485,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219485,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219485,-0.001536,0.001750,0.249994,0,0);}
.m89_c00079{transform:matrix(0.219558,-0.001756,0.002000,0.249992,0,0);-ms-transform:matrix(0.219558,-0.001756,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219558,-0.001756,0.002000,0.249992,0,0);}
.m131_c00079{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);}
.m9c_c00079{transform:matrix(0.220946,-0.001326,0.001500,0.249996,0,0);-ms-transform:matrix(0.220946,-0.001326,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220946,-0.001326,0.001500,0.249996,0,0);}
.m128_c00079{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);}
.m9e_c00079{transform:matrix(0.222031,-0.001332,0.001500,0.249996,0,0);-ms-transform:matrix(0.222031,-0.001332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222031,-0.001332,0.001500,0.249996,0,0);}
.m2d_c00079{transform:matrix(0.222503,-0.003115,0.003500,0.249976,0,0);-ms-transform:matrix(0.222503,-0.003115,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222503,-0.003115,0.003500,0.249976,0,0);}
.m10c_c00079{transform:matrix(0.222540,-0.001558,0.001750,0.249994,0,0);-ms-transform:matrix(0.222540,-0.001558,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222540,-0.001558,0.001750,0.249994,0,0);}
.m37_c00079{transform:matrix(0.223431,-0.002458,0.002750,0.249985,0,0);-ms-transform:matrix(0.223431,-0.002458,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223431,-0.002458,0.002750,0.249985,0,0);}
.m33_c00079{transform:matrix(0.224166,-0.002466,0.002750,0.249985,0,0);-ms-transform:matrix(0.224166,-0.002466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224166,-0.002466,0.002750,0.249985,0,0);}
.m145_c00079{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);}
.m53_c00079{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);}
.m80_c00079{transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);-ms-transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);}
.m8e_c00079{transform:matrix(0.225456,-0.001353,0.001500,0.249996,0,0);-ms-transform:matrix(0.225456,-0.001353,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225456,-0.001353,0.001500,0.249996,0,0);}
.ma4_c00079{transform:matrix(0.225591,-0.001354,0.001500,0.249996,0,0);-ms-transform:matrix(0.225591,-0.001354,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225591,-0.001354,0.001500,0.249996,0,0);}
.mb1_c00079{transform:matrix(0.225896,-0.001355,0.001500,0.249996,0,0);-ms-transform:matrix(0.225896,-0.001355,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225896,-0.001355,0.001500,0.249996,0,0);}
.m1e_c00079{transform:matrix(0.226028,-0.003164,0.003500,0.249976,0,0);-ms-transform:matrix(0.226028,-0.003164,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226028,-0.003164,0.003500,0.249976,0,0);}
.m13c_c00079{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);}
.md_c00079{transform:matrix(0.227176,-0.002499,0.002750,0.249985,0,0);-ms-transform:matrix(0.227176,-0.002499,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227176,-0.002499,0.002750,0.249985,0,0);}
.m23_c00079{transform:matrix(0.227188,-0.003181,0.003500,0.249976,0,0);-ms-transform:matrix(0.227188,-0.003181,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227188,-0.003181,0.003500,0.249976,0,0);}
.m10e_c00079{transform:matrix(0.227644,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227644,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227644,-0.001594,0.001750,0.249994,0,0);}
.m105_c00079{transform:matrix(0.228304,-0.001598,0.001750,0.249994,0,0);-ms-transform:matrix(0.228304,-0.001598,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228304,-0.001598,0.001750,0.249994,0,0);}
.mfe_c00079{transform:matrix(0.228814,-0.001602,0.001750,0.249994,0,0);-ms-transform:matrix(0.228814,-0.001602,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228814,-0.001602,0.001750,0.249994,0,0);}
.mcc_c00079{transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{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);}
.m138_c00079{transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);}
.m46_c00079{transform:matrix(0.229941,-0.002069,0.002250,0.249990,0,0);-ms-transform:matrix(0.229941,-0.002069,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229941,-0.002069,0.002250,0.249990,0,0);}
.m31_c00079{transform:matrix(0.229991,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.229991,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229991,-0.002530,0.002750,0.249985,0,0);}
.m86_c00079{transform:matrix(0.230073,-0.001841,0.002000,0.249992,0,0);-ms-transform:matrix(0.230073,-0.001841,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230073,-0.001841,0.002000,0.249992,0,0);}
.m107_c00079{transform:matrix(0.230224,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230224,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230224,-0.001612,0.001750,0.249994,0,0);}
.mc6_c00079{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);}
.m94_c00079{transform:matrix(0.231071,-0.001386,0.001500,0.249996,0,0);-ms-transform:matrix(0.231071,-0.001386,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231071,-0.001386,0.001500,0.249996,0,0);}
.mf7_c00079{transform:matrix(0.231124,-0.001618,0.001750,0.249994,0,0);-ms-transform:matrix(0.231124,-0.001618,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231124,-0.001618,0.001750,0.249994,0,0);}
.mcd_c00079{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);}
.mf1_c00079{transform:matrix(0.232034,-0.001624,0.001750,0.249994,0,0);-ms-transform:matrix(0.232034,-0.001624,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232034,-0.001624,0.001750,0.249994,0,0);}
.m42_c00079{transform:matrix(0.232176,-0.002090,0.002250,0.249990,0,0);-ms-transform:matrix(0.232176,-0.002090,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232176,-0.002090,0.002250,0.249990,0,0);}
.m143_c00079{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);}
.m102_c00079{transform:matrix(0.233029,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.233029,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233029,-0.001631,0.001750,0.249994,0,0);}
.mfc_c00079{transform:matrix(0.233309,-0.001633,0.001750,0.249994,0,0);-ms-transform:matrix(0.233309,-0.001633,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233309,-0.001633,0.001750,0.249994,0,0);}
.mde_c00079{transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{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);}
.m11b_c00079{transform:matrix(0.235394,-0.001648,0.001750,0.249994,0,0);-ms-transform:matrix(0.235394,-0.001648,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235394,-0.001648,0.001750,0.249994,0,0);}
.ma9_c00079{transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);}
.m12a_c00079{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);}
.m25_c00079{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);}
.mca_c00079{transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);}
.m113_c00079{transform:matrix(0.240449,-0.001683,0.001750,0.249994,0,0);-ms-transform:matrix(0.240449,-0.001683,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240449,-0.001683,0.001750,0.249994,0,0);}
.mcb_c00079{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);}
.mc4_c00079{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);}
.ma5_c00079{transform:matrix(0.242806,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242806,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242806,-0.001457,0.001500,0.249996,0,0);}
.mb5_c00079{transform:matrix(0.242816,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242816,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242816,-0.001457,0.001500,0.249996,0,0);}
.m11f_c00079{transform:matrix(0.242944,-0.001701,0.001750,0.249994,0,0);-ms-transform:matrix(0.242944,-0.001701,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242944,-0.001701,0.001750,0.249994,0,0);}
.m5c_c00079{transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.244596,-0.003424,0.003500,0.249976,0,0);-ms-transform:matrix(0.244596,-0.003424,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244596,-0.003424,0.003500,0.249976,0,0);}
.m137_c00079{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);}
.m84_c00079{transform:matrix(0.250352,-0.002003,0.002000,0.249992,0,0);-ms-transform:matrix(0.250352,-0.002003,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250352,-0.002003,0.002000,0.249992,0,0);}
.m32_c00079{transform:matrix(0.250375,-0.002754,0.002750,0.249985,0,0);-ms-transform:matrix(0.250375,-0.002754,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250375,-0.002754,0.002750,0.249985,0,0);}
.mf6_c00079{transform:matrix(0.251609,-0.001761,0.001750,0.249994,0,0);-ms-transform:matrix(0.251609,-0.001761,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251609,-0.001761,0.001750,0.249994,0,0);}
.m3c_c00079{transform:matrix(0.251675,-0.002768,0.002750,0.249985,0,0);-ms-transform:matrix(0.251675,-0.002768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251675,-0.002768,0.002750,0.249985,0,0);}
.m54_c00079{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);}
.m146_c00079{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m77_c00079{transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);-ms-transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);}
.m7f_c00079{transform:matrix(0.254337,-0.002035,0.002000,0.249992,0,0);-ms-transform:matrix(0.254337,-0.002035,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254337,-0.002035,0.002000,0.249992,0,0);}
.m14b_c00079{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);}
.mbc_c00079{transform:matrix(0.255274,-0.001787,0.001750,0.249994,0,0);-ms-transform:matrix(0.255274,-0.001787,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255274,-0.001787,0.001750,0.249994,0,0);}
.m87_c00079{transform:matrix(0.255562,-0.002044,0.002000,0.249992,0,0);-ms-transform:matrix(0.255562,-0.002044,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255562,-0.002044,0.002000,0.249992,0,0);}
.m8a_c00079{transform:matrix(0.255822,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255822,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255822,-0.002047,0.002000,0.249992,0,0);}
.m49_c00079{transform:matrix(0.255905,-0.002303,0.002250,0.249990,0,0);-ms-transform:matrix(0.255905,-0.002303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255905,-0.002303,0.002250,0.249990,0,0);}
.m36_c00079{transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);-ms-transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);}
.mf5_c00079{transform:matrix(0.258039,-0.001806,0.001750,0.249994,0,0);-ms-transform:matrix(0.258039,-0.001806,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258039,-0.001806,0.001750,0.249994,0,0);}
.m0_c00079{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);}
.m4e_c00079{transform:matrix(0.258825,-0.002329,0.002250,0.249990,0,0);-ms-transform:matrix(0.258825,-0.002329,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258825,-0.002329,0.002250,0.249990,0,0);}
.m92_c00079{transform:matrix(0.259515,-0.001557,0.001500,0.249996,0,0);-ms-transform:matrix(0.259515,-0.001557,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259515,-0.001557,0.001500,0.249996,0,0);}
.m13f_c00079{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);}
.m111_c00079{transform:matrix(0.262049,-0.001834,0.001750,0.249994,0,0);-ms-transform:matrix(0.262049,-0.001834,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262049,-0.001834,0.001750,0.249994,0,0);}
.mad_c00079{transform:matrix(0.262205,-0.001573,0.001500,0.249996,0,0);-ms-transform:matrix(0.262205,-0.001573,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262205,-0.001573,0.001500,0.249996,0,0);}
.mfa_c00079{transform:matrix(0.263459,-0.001844,0.001750,0.249994,0,0);-ms-transform:matrix(0.263459,-0.001844,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263459,-0.001844,0.001750,0.249994,0,0);}
.m103_c00079{transform:matrix(0.265159,-0.001856,0.001750,0.249994,0,0);-ms-transform:matrix(0.265159,-0.001856,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265159,-0.001856,0.001750,0.249994,0,0);}
.m85_c00079{transform:matrix(0.268671,-0.002149,0.002000,0.249992,0,0);-ms-transform:matrix(0.268671,-0.002149,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268671,-0.002149,0.002000,0.249992,0,0);}
.m8c_c00079{transform:matrix(0.270275,-0.001622,0.001500,0.249996,0,0);-ms-transform:matrix(0.270275,-0.001622,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270275,-0.001622,0.001500,0.249996,0,0);}
.mce_c00079{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.m96_c00079{transform:matrix(0.280175,-0.001681,0.001500,0.249996,0,0);-ms-transform:matrix(0.280175,-0.001681,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280175,-0.001681,0.001500,0.249996,0,0);}
.m115_c00079{transform:matrix(0.282513,-0.001978,0.001750,0.249994,0,0);-ms-transform:matrix(0.282513,-0.001978,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282513,-0.001978,0.001750,0.249994,0,0);}
.mfb_c00079{transform:matrix(0.282838,-0.001980,0.001750,0.249994,0,0);-ms-transform:matrix(0.282838,-0.001980,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282838,-0.001980,0.001750,0.249994,0,0);}
.m110_c00079{transform:matrix(0.287083,-0.002010,0.001750,0.249994,0,0);-ms-transform:matrix(0.287083,-0.002010,0.001750,0.249994,0,0);-webkit-transform:matrix(0.287083,-0.002010,0.001750,0.249994,0,0);}
.m140_c00079{transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);}
.m7a_c00079{transform:matrix(0.290667,-0.003197,0.002750,0.249985,0,0);-ms-transform:matrix(0.290667,-0.003197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290667,-0.003197,0.002750,0.249985,0,0);}
.m12_c00079{transform:matrix(0.305140,-0.004272,0.003500,0.249976,0,0);-ms-transform:matrix(0.305140,-0.004272,0.003500,0.249976,0,0);-webkit-transform:matrix(0.305140,-0.004272,0.003500,0.249976,0,0);}
.m83_c00079{transform:matrix(0.307165,-0.002457,0.002000,0.249992,0,0);-ms-transform:matrix(0.307165,-0.002457,0.002000,0.249992,0,0);-webkit-transform:matrix(0.307165,-0.002457,0.002000,0.249992,0,0);}
.ma_c00079{transform:matrix(0.313971,-0.003454,0.002750,0.249985,0,0);-ms-transform:matrix(0.313971,-0.003454,0.002750,0.249985,0,0);-webkit-transform:matrix(0.313971,-0.003454,0.002750,0.249985,0,0);}
.m4_c00079{transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314210,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.329298,-0.004610,0.003500,0.249976,0,0);-ms-transform:matrix(0.329298,-0.004610,0.003500,0.249976,0,0);-webkit-transform:matrix(0.329298,-0.004610,0.003500,0.249976,0,0);}
.m4a_c00079{transform:matrix(0.332007,-0.002988,0.002250,0.249990,0,0);-ms-transform:matrix(0.332007,-0.002988,0.002250,0.249990,0,0);-webkit-transform:matrix(0.332007,-0.002988,0.002250,0.249990,0,0);}
.mae_c00079{transform:matrix(0.338344,-0.002030,0.001500,0.249996,0,0);-ms-transform:matrix(0.338344,-0.002030,0.001500,0.249996,0,0);-webkit-transform:matrix(0.338344,-0.002030,0.001500,0.249996,0,0);}
.m1_c00079{transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339430,0.000000,0.000000,0.250000,0,0);}
.m14a_c00079{transform:matrix(0.346405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346405,0.000000,0.000000,0.250000,0,0);}
.meb_c00079{transform:matrix(0.347509,-0.002780,0.002000,0.249992,0,0);-ms-transform:matrix(0.347509,-0.002780,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347509,-0.002780,0.002000,0.249992,0,0);}
.m5e_c00079{transform:matrix(0.349140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349140,0.000000,0.000000,0.250000,0,0);}
.m141_c00079{transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);}
.md9_c00079{transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.370545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370545,0.000000,0.000000,0.250000,0,0);}
.m4b_c00079{transform:matrix(0.373295,-0.003360,0.002250,0.249990,0,0);-ms-transform:matrix(0.373295,-0.003360,0.002250,0.249990,0,0);-webkit-transform:matrix(0.373295,-0.003360,0.002250,0.249990,0,0);}
.mbd_c00079{transform:matrix(0.376596,-0.002636,0.001750,0.249994,0,0);-ms-transform:matrix(0.376596,-0.002636,0.001750,0.249994,0,0);-webkit-transform:matrix(0.376596,-0.002636,0.001750,0.249994,0,0);}
.mf8_c00079{transform:matrix(0.391660,-0.002742,0.001750,0.249994,0,0);-ms-transform:matrix(0.391660,-0.002742,0.001750,0.249994,0,0);-webkit-transform:matrix(0.391660,-0.002742,0.001750,0.249994,0,0);}
.m8_c00079{transform:matrix(0.396165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396165,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.397661,-0.004374,0.002750,0.249985,0,0);-ms-transform:matrix(0.397661,-0.004374,0.002750,0.249985,0,0);-webkit-transform:matrix(0.397661,-0.004374,0.002750,0.249985,0,0);}
.m104_c00079{transform:matrix(0.397720,-0.002784,0.001750,0.249994,0,0);-ms-transform:matrix(0.397720,-0.002784,0.001750,0.249994,0,0);-webkit-transform:matrix(0.397720,-0.002784,0.001750,0.249994,0,0);}
.m9_c00079{transform:matrix(0.406020,-0.004466,0.002750,0.249985,0,0);-ms-transform:matrix(0.406020,-0.004466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.406020,-0.004466,0.002750,0.249985,0,0);}
.m5_c00079{transform:matrix(0.452995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00079{transform:matrix(0.501646,-0.003010,0.001500,0.249996,0,0);-ms-transform:matrix(0.501646,-0.003010,0.001500,0.249996,0,0);-webkit-transform:matrix(0.501646,-0.003010,0.001500,0.249996,0,0);}
.m7_c00079{transform:matrix(0.508460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508460,0.000000,0.000000,0.250000,0,0);}
.m14c_c00079{transform:matrix(0.621495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621495,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;}
._0_c00079{margin-left:-42.126361px;}
.fc0_c00079{color:transparent;}
.fs12_c00079{font-size:44.100000px;}
.fs11_c00079{font-size:45.150000px;}
.fs16_c00079{font-size:47.251158px;}
.fs13_c00079{font-size:49.350000px;}
.fs18_c00079{font-size:49.351209px;}
.fs19_c00079{font-size:50.400000px;}
.fse_c00079{font-size:50.400907px;}
.fs17_c00079{font-size:50.401235px;}
.fs1a_c00079{font-size:51.450000px;}
.fsf_c00079{font-size:51.450926px;}
.fsc_c00079{font-size:51.451646px;}
.fs14_c00079{font-size:52.500000px;}
.fsd_c00079{font-size:52.500945px;}
.fs1b_c00079{font-size:53.550000px;}
.fs10_c00079{font-size:54.601338px;}
.fs15_c00079{font-size:57.751848px;}
.fs5_c00079{font-size:61.953748px;}
.fs4_c00079{font-size:63.006174px;}
.fs9_c00079{font-size:64.050000px;}
.fsb_c00079{font-size:66.154002px;}
.fsa_c00079{font-size:68.250000px;}
.fs8_c00079{font-size:70.352849px;}
.fs3_c00079{font-size:70.356894px;}
.fs7_c00079{font-size:71.402892px;}
.fs6_c00079{font-size:72.454383px;}
.fs1_c00079{font-size:73.504447px;}
.fs2_c00079{font-size:73.507203px;}
.fs0_c00079{font-size:101.850000px;}
.y0_c00079{bottom:0.000000px;}
.y102_c00079{bottom:120.882000px;}
.y101_c00079{bottom:139.404000px;}
.y100_c00079{bottom:156.925500px;}
.yff_c00079{bottom:175.312500px;}
.yf4_c00079{bottom:191.430000px;}
.yf5_c00079{bottom:191.713468px;}
.yf6_c00079{bottom:192.049920px;}
.yf7_c00079{bottom:192.359891px;}
.yf8_c00079{bottom:192.745450px;}
.yf9_c00079{bottom:193.138129px;}
.yfa_c00079{bottom:193.331392px;}
.yfb_c00079{bottom:193.567632px;}
.yfc_c00079{bottom:193.773621px;}
.yfd_c00079{bottom:193.877592px;}
.yfe_c00079{bottom:194.166783px;}
.yed_c00079{bottom:210.439545px;}
.yee_c00079{bottom:210.439714px;}
.yf1_c00079{bottom:210.439764px;}
.yf0_c00079{bottom:210.439854px;}
.yeb_c00079{bottom:210.439915px;}
.yec_c00079{bottom:210.439935px;}
.yf2_c00079{bottom:210.439994px;}
.yef_c00079{bottom:210.440224px;}
.yf3_c00079{bottom:210.440583px;}
.ydc_c00079{bottom:227.070165px;}
.ydd_c00079{bottom:227.283661px;}
.yde_c00079{bottom:227.436920px;}
.ydf_c00079{bottom:227.792229px;}
.ye0_c00079{bottom:228.013370px;}
.ye1_c00079{bottom:228.136219px;}
.ye2_c00079{bottom:228.597369px;}
.ye3_c00079{bottom:228.714707px;}
.ye4_c00079{bottom:228.913030px;}
.ye5_c00079{bottom:229.082962px;}
.ye6_c00079{bottom:229.194546px;}
.ye7_c00079{bottom:229.502732px;}
.ye8_c00079{bottom:229.805153px;}
.ye9_c00079{bottom:229.895799px;}
.yea_c00079{bottom:230.130191px;}
.ycf_c00079{bottom:245.160000px;}
.yd0_c00079{bottom:245.434039px;}
.yd1_c00079{bottom:245.638075px;}
.yd2_c00079{bottom:245.889530px;}
.yd3_c00079{bottom:245.997270px;}
.yd4_c00079{bottom:246.125790px;}
.yd5_c00079{bottom:246.358291px;}
.yd6_c00079{bottom:246.620970px;}
.yd7_c00079{bottom:246.819525px;}
.yd8_c00079{bottom:247.085952px;}
.yd9_c00079{bottom:247.401592px;}
.yda_c00079{bottom:247.913772px;}
.ydb_c00079{bottom:248.013984px;}
.yc2_c00079{bottom:263.250000px;}
.yc3_c00079{bottom:263.502732px;}
.yc4_c00079{bottom:263.653896px;}
.yc5_c00079{bottom:263.889156px;}
.yc6_c00079{bottom:263.977956px;}
.yc7_c00079{bottom:264.295452px;}
.yc8_c00079{bottom:264.502860px;}
.yc9_c00079{bottom:264.785844px;}
.yca_c00079{bottom:265.129464px;}
.ycb_c00079{bottom:265.245924px;}
.ycc_c00079{bottom:265.716564px;}
.ycd_c00079{bottom:265.857000px;}
.yce_c00079{bottom:265.989048px;}
.yb2_c00079{bottom:281.070000px;}
.yb0_c00079{bottom:281.340000px;}
.yb3_c00079{bottom:281.359500px;}
.yb4_c00079{bottom:281.583000px;}
.yb5_c00079{bottom:281.794500px;}
.yb6_c00079{bottom:282.144000px;}
.yb7_c00079{bottom:282.295500px;}
.yb8_c00079{bottom:282.498000px;}
.yb9_c00079{bottom:282.598500px;}
.yba_c00079{bottom:282.727500px;}
.ybb_c00079{bottom:282.831000px;}
.ybc_c00079{bottom:283.071000px;}
.ybd_c00079{bottom:283.366500px;}
.ybe_c00079{bottom:283.638000px;}
.ybf_c00079{bottom:283.827000px;}
.yc0_c00079{bottom:284.269500px;}
.yc1_c00079{bottom:284.352000px;}
.yaf_c00079{bottom:298.894500px;}
.yb1_c00079{bottom:300.769500px;}
.ya1_c00079{bottom:316.710000px;}
.ya2_c00079{bottom:316.972720px;}
.ya3_c00079{bottom:317.346804px;}
.ya4_c00079{bottom:317.498445px;}
.ya5_c00079{bottom:317.794902px;}
.ya6_c00079{bottom:317.963164px;}
.ya7_c00079{bottom:318.244732px;}
.ya8_c00079{bottom:318.348829px;}
.ya9_c00079{bottom:318.462135px;}
.yaa_c00079{bottom:318.841857px;}
.yab_c00079{bottom:319.009867px;}
.yac_c00079{bottom:319.367298px;}
.yad_c00079{bottom:319.535508px;}
.yae_c00079{bottom:319.681185px;}
.y92_c00079{bottom:334.257030px;}
.y93_c00079{bottom:334.498659px;}
.y94_c00079{bottom:334.787586px;}
.y95_c00079{bottom:335.454756px;}
.y96_c00079{bottom:335.627775px;}
.y97_c00079{bottom:335.740560px;}
.y98_c00079{bottom:336.364722px;}
.y99_c00079{bottom:336.618981px;}
.y9a_c00079{bottom:336.739647px;}
.y9b_c00079{bottom:337.166871px;}
.y9c_c00079{bottom:337.419420px;}
.y9d_c00079{bottom:337.533618px;}
.y9e_c00079{bottom:337.702140px;}
.y9f_c00079{bottom:338.170563px;}
.ya0_c00079{bottom:338.259519px;}
.y87_c00079{bottom:352.617726px;}
.y88_c00079{bottom:353.003733px;}
.y89_c00079{bottom:353.119071px;}
.y8a_c00079{bottom:353.638071px;}
.y8b_c00079{bottom:353.891187px;}
.y8c_c00079{bottom:354.262917px;}
.y8d_c00079{bottom:354.360594px;}
.y8e_c00079{bottom:354.515853px;}
.y8f_c00079{bottom:354.652362px;}
.y90_c00079{bottom:355.131114px;}
.y91_c00079{bottom:355.478505px;}
.y79_c00079{bottom:370.709724px;}
.y7a_c00079{bottom:371.098473px;}
.y7b_c00079{bottom:371.184624px;}
.y7c_c00079{bottom:371.462622px;}
.y7d_c00079{bottom:371.816667px;}
.y7e_c00079{bottom:372.158118px;}
.y7f_c00079{bottom:372.314208px;}
.y80_c00079{bottom:372.602352px;}
.y81_c00079{bottom:372.711045px;}
.y82_c00079{bottom:373.123938px;}
.y83_c00079{bottom:373.351029px;}
.y84_c00079{bottom:373.638498px;}
.y85_c00079{bottom:374.005443px;}
.y86_c00079{bottom:374.714235px;}
.y68_c00079{bottom:388.786500px;}
.y76_c00079{bottom:388.800000px;}
.y77_c00079{bottom:388.860102px;}
.y69_c00079{bottom:388.965792px;}
.y6a_c00079{bottom:389.171016px;}
.y6b_c00079{bottom:389.294112px;}
.y6c_c00079{bottom:389.596500px;}
.y6d_c00079{bottom:389.750292px;}
.y6e_c00079{bottom:390.201636px;}
.y6f_c00079{bottom:390.463056px;}
.y70_c00079{bottom:390.689844px;}
.y71_c00079{bottom:390.940272px;}
.y72_c00079{bottom:391.050528px;}
.y73_c00079{bottom:391.425972px;}
.y74_c00079{bottom:391.678752px;}
.y78_c00079{bottom:391.958874px;}
.y75_c00079{bottom:392.093496px;}
.y61_c00079{bottom:415.531500px;}
.y62_c00079{bottom:416.152197px;}
.y63_c00079{bottom:416.421988px;}
.y64_c00079{bottom:416.781441px;}
.y65_c00079{bottom:417.675906px;}
.y66_c00079{bottom:417.942859px;}
.y67_c00079{bottom:418.335394px;}
.y5a_c00079{bottom:437.669580px;}
.y5b_c00079{bottom:438.019168px;}
.y5c_c00079{bottom:438.475312px;}
.y5d_c00079{bottom:438.810142px;}
.y5e_c00079{bottom:439.247692px;}
.y5f_c00079{bottom:440.122765px;}
.y60_c00079{bottom:440.404770px;}
.y50_c00079{bottom:461.302500px;}
.y51_c00079{bottom:461.430453px;}
.y52_c00079{bottom:461.792509px;}
.y53_c00079{bottom:461.984466px;}
.y54_c00079{bottom:462.312354px;}
.y55_c00079{bottom:462.691960px;}
.y56_c00079{bottom:463.099593px;}
.y57_c00079{bottom:463.498383px;}
.y58_c00079{bottom:463.838313px;}
.y59_c00079{bottom:464.130291px;}
.y4f_c00079{bottom:485.857500px;}
.y4e_c00079{bottom:508.645500px;}
.y46_c00079{bottom:529.339985px;}
.y47_c00079{bottom:529.918842px;}
.y48_c00079{bottom:530.272551px;}
.y49_c00079{bottom:530.545885px;}
.y4a_c00079{bottom:531.328167px;}
.y4b_c00079{bottom:531.474090px;}
.y4c_c00079{bottom:531.787821px;}
.y4d_c00079{bottom:532.284414px;}
.y3c_c00079{bottom:552.310500px;}
.y3d_c00079{bottom:552.419742px;}
.y3e_c00079{bottom:552.769784px;}
.y3f_c00079{bottom:553.301629px;}
.y40_c00079{bottom:553.593675px;}
.y41_c00079{bottom:554.079986px;}
.y42_c00079{bottom:554.701971px;}
.y43_c00079{bottom:555.134646px;}
.y44_c00079{bottom:555.462075px;}
.y45_c00079{bottom:555.795295px;}
.y33_c00079{bottom:575.100625px;}
.y34_c00079{bottom:575.353335px;}
.y35_c00079{bottom:575.780748px;}
.y36_c00079{bottom:576.176104px;}
.y37_c00079{bottom:576.608055px;}
.y38_c00079{bottom:577.680943px;}
.y39_c00079{bottom:578.098078px;}
.y3a_c00079{bottom:578.331979px;}
.y3b_c00079{bottom:578.765959px;}
.y28_c00079{bottom:597.781500px;}
.y29_c00079{bottom:598.167649px;}
.y2a_c00079{bottom:598.405332px;}
.y2b_c00079{bottom:598.859742px;}
.y2c_c00079{bottom:599.031952px;}
.y2d_c00079{bottom:599.263662px;}
.y2e_c00079{bottom:599.875779px;}
.y2f_c00079{bottom:600.152170px;}
.y30_c00079{bottom:600.508191px;}
.y31_c00079{bottom:600.923479px;}
.y32_c00079{bottom:601.363072px;}
.y21_c00079{bottom:620.715861px;}
.y22_c00079{bottom:621.277164px;}
.y23_c00079{bottom:622.130211px;}
.y24_c00079{bottom:622.359507px;}
.y25_c00079{bottom:622.744917px;}
.y26_c00079{bottom:623.225841px;}
.y27_c00079{bottom:623.595180px;}
.y16_c00079{bottom:643.409703px;}
.y17_c00079{bottom:643.869813px;}
.y18_c00079{bottom:644.295147px;}
.y19_c00079{bottom:644.656824px;}
.y1a_c00079{bottom:644.929899px;}
.y1b_c00079{bottom:645.375105px;}
.y1c_c00079{bottom:645.793560px;}
.y1d_c00079{bottom:646.048707px;}
.y1e_c00079{bottom:646.530063px;}
.y1f_c00079{bottom:647.071800px;}
.y20_c00079{bottom:647.419455px;}
.yc_c00079{bottom:666.364500px;}
.yd_c00079{bottom:667.009011px;}
.ye_c00079{bottom:667.557048px;}
.yf_c00079{bottom:668.071968px;}
.y10_c00079{bottom:668.406372px;}
.y11_c00079{bottom:669.095550px;}
.y12_c00079{bottom:669.526701px;}
.y13_c00079{bottom:670.030176px;}
.y14_c00079{bottom:670.498056px;}
.y15_c00079{bottom:670.933764px;}
.y3_c00079{bottom:698.793000px;}
.y4_c00079{bottom:699.110378px;}
.y5_c00079{bottom:699.335553px;}
.y6_c00079{bottom:699.583812px;}
.y7_c00079{bottom:699.810786px;}
.y8_c00079{bottom:700.073169px;}
.y9_c00079{bottom:700.490999px;}
.ya_c00079{bottom:700.713336px;}
.yb_c00079{bottom:701.171640px;}
.y2_c00079{bottom:740.296500px;}
.y1_c00079{bottom:775.807500px;}
.h14_c00079{height:44.100000px;}
.h13_c00079{height:45.150000px;}
.h18_c00079{height:47.251158px;}
.h15_c00079{height:49.350000px;}
.h1a_c00079{height:49.351209px;}
.h1b_c00079{height:50.400000px;}
.h10_c00079{height:50.400907px;}
.h19_c00079{height:50.401235px;}
.h1c_c00079{height:51.450000px;}
.h11_c00079{height:51.450926px;}
.he_c00079{height:51.451646px;}
.h16_c00079{height:52.500000px;}
.hf_c00079{height:52.500945px;}
.h1d_c00079{height:53.550000px;}
.h12_c00079{height:54.601338px;}
.h17_c00079{height:57.751848px;}
.h7_c00079{height:61.953748px;}
.h6_c00079{height:63.006174px;}
.hb_c00079{height:64.050000px;}
.hd_c00079{height:66.154002px;}
.hc_c00079{height:68.250000px;}
.ha_c00079{height:70.352849px;}
.h5_c00079{height:70.356894px;}
.h9_c00079{height:71.402892px;}
.h8_c00079{height:72.454383px;}
.h3_c00079{height:73.504447px;}
.h4_c00079{height:73.507203px;}
.h2_c00079{height:101.850000px;}
.h0_c00079{height:1008.450000px;}
.h1_c00079{height:1008.750000px;}
.w0_c00079{width:711.720000px;}
.w1_c00079{width:711.750000px;}
.x0_c00079{left:0.000000px;}
.x64_c00079{left:166.938063px;}
.x82_c00079{left:167.940000px;}
.x62_c00079{left:180.126000px;}
.xa9_c00079{left:186.030000px;}
.x50_c00079{left:188.406000px;}
.x3e_c00079{left:190.484631px;}
.x36_c00079{left:191.557500px;}
.x72_c00079{left:197.478921px;}
.x83_c00079{left:199.260000px;}
.x26_c00079{left:202.629390px;}
.x1c_c00079{left:204.265059px;}
.x5c_c00079{left:207.709500px;}
.xaa_c00079{left:211.410000px;}
.xa3_c00079{left:212.760000px;}
.x65_c00079{left:215.478978px;}
.x8b_c00079{left:218.235000px;}
.x92_c00079{left:220.395609px;}
.x30_c00079{left:223.456568px;}
.x45_c00079{left:225.180000px;}
.x66_c00079{left:226.337352px;}
.x7_c00079{left:227.880000px;}
.x5d_c00079{left:230.121000px;}
.x4a_c00079{left:231.660000px;}
.x55_c00079{left:232.915638px;}
.x8e_c00079{left:236.577000px;}
.x13_c00079{left:238.686000px;}
.x88_c00079{left:240.372000px;}
.x37_c00079{left:242.589000px;}
.x84_c00079{left:244.620000px;}
.x1d_c00079{left:246.131823px;}
.x3f_c00079{left:248.301605px;}
.x8_c00079{left:250.560000px;}
.x5e_c00079{left:255.774000px;}
.x27_c00079{left:258.797040px;}
.x2b_c00079{left:260.434500px;}
.x46_c00079{left:263.250000px;}
.x9f_c00079{left:269.730000px;}
.x56_c00079{left:270.930612px;}
.xa_c00079{left:272.934000px;}
.x4b_c00079{left:277.560000px;}
.x7a_c00079{left:280.105500px;}
.x40_c00079{left:283.602281px;}
.x14_c00079{left:284.722500px;}
.x8f_c00079{left:287.890500px;}
.x31_c00079{left:291.980309px;}
.x4c_c00079{left:298.890000px;}
.x51_c00079{left:300.612000px;}
.xb_c00079{left:301.786500px;}
.x1_c00079{left:302.940000px;}
.x67_c00079{left:305.426907px;}
.x5f_c00079{left:308.959500px;}
.x41_c00079{left:310.972538px;}
.x6c_c00079{left:313.270257px;}
.x1e_c00079{left:317.671326px;}
.x93_c00079{left:320.295609px;}
.xc_c00079{left:322.257000px;}
.x15_c00079{left:323.868000px;}
.x32_c00079{left:327.975413px;}
.x98_c00079{left:329.134908px;}
.xa4_c00079{left:332.370000px;}
.x38_c00079{left:334.132500px;}
.x57_c00079{left:335.248870px;}
.x2c_c00079{left:338.464500px;}
.x90_c00079{left:339.465000px;}
.x2_c00079{left:340.470000px;}
.x1f_c00079{left:342.534876px;}
.xd_c00079{left:344.826000px;}
.x7b_c00079{left:346.494000px;}
.x68_c00079{left:348.084894px;}
.x6d_c00079{left:349.456041px;}
.x73_c00079{left:352.710558px;}
.x9b_c00079{left:355.662000px;}
.xa0_c00079{left:357.750000px;}
.x47_c00079{left:359.100000px;}
.x16_c00079{left:360.648000px;}
.x99_c00079{left:363.155078px;}
.xe_c00079{left:365.460000px;}
.x28_c00079{left:367.077609px;}
.x89_c00079{left:374.019000px;}
.x9_c00079{left:377.460000px;}
.x4d_c00079{left:381.780000px;}
.x20_c00079{left:383.015577px;}
.x17_c00079{left:384.534000px;}
.x7c_c00079{left:386.718000px;}
.x39_c00079{left:388.167000px;}
.xf_c00079{left:389.313000px;}
.x2d_c00079{left:394.111500px;}
.x59_c00079{left:398.401500px;}
.x7d_c00079{left:401.589000px;}
.x6e_c00079{left:402.660726px;}
.x42_c00079{left:403.772201px;}
.x29_c00079{left:405.644772px;}
.x58_c00079{left:408.143899px;}
.x9c_c00079{left:411.759000px;}
.x48_c00079{left:414.450000px;}
.x33_c00079{left:417.327922px;}
.x3_c00079{left:419.310000px;}
.x21_c00079{left:421.049673px;}
.x5a_c00079{left:422.670000px;}
.x4e_c00079{left:425.250000px;}
.x10_c00079{left:427.297500px;}
.x74_c00079{left:430.736622px;}
.x52_c00079{left:432.393000px;}
.x18_c00079{left:433.761000px;}
.x43_c00079{left:435.130917px;}
.x6f_c00079{left:438.816510px;}
.x22_c00079{left:444.311160px;}
.x4_c00079{left:445.500000px;}
.x11_c00079{left:447.510000px;}
.x8a_c00079{left:450.427500px;}
.x2e_c00079{left:451.603500px;}
.x5_c00079{left:453.870000px;}
.x94_c00079{left:455.544609px;}
.x3a_c00079{left:457.276500px;}
.x5b_c00079{left:458.355000px;}
.x75_c00079{left:462.612744px;}
.x19_c00079{left:464.557500px;}
.x9a_c00079{left:467.108670px;}
.x69_c00079{left:468.803445px;}
.x53_c00079{left:470.163000px;}
.x34_c00079{left:471.603329px;}
.x9d_c00079{left:473.116500px;}
.x49_c00079{left:475.470000px;}
.x60_c00079{left:476.931000px;}
.xa7_c00079{left:478.710000px;}
.x44_c00079{left:484.807472px;}
.x23_c00079{left:488.016987px;}
.x12_c00079{left:489.174000px;}
.x2a_c00079{left:490.704039px;}
.x8c_c00079{left:493.623000px;}
.x7e_c00079{left:496.023000px;}
.x6a_c00079{left:497.151603px;}
.xa5_c00079{left:498.960000px;}
.x6_c00079{left:500.850000px;}
.x54_c00079{left:502.605000px;}
.x3b_c00079{left:505.351500px;}
.x35_c00079{left:507.782933px;}
.x8d_c00079{left:510.129000px;}
.xa6_c00079{left:513.810000px;}
.x95_c00079{left:515.511609px;}
.x9e_c00079{left:517.396500px;}
.xa1_c00079{left:520.290000px;}
.x4f_c00079{left:521.910000px;}
.x70_c00079{left:526.609479px;}
.x2f_c00079{left:529.320000px;}
.x76_c00079{left:531.176925px;}
.x1a_c00079{left:533.940000px;}
.x24_c00079{left:537.214545px;}
.x3c_c00079{left:541.732500px;}
.x7f_c00079{left:547.084500px;}
.x85_c00079{left:549.180000px;}
.x96_c00079{left:558.714609px;}
.x91_c00079{left:561.676500px;}
.x77_c00079{left:562.768047px;}
.x1b_c00079{left:565.062000px;}
.x25_c00079{left:568.798368px;}
.x80_c00079{left:571.114500px;}
.x71_c00079{left:576.257682px;}
.x3d_c00079{left:578.757000px;}
.x86_c00079{left:590.760000px;}
.x81_c00079{left:591.925500px;}
.x78_c00079{left:598.137624px;}
.x97_c00079{left:605.148609px;}
.x61_c00079{left:621.084000px;}
.x87_c00079{left:627.750000px;}
.xa8_c00079{left:629.910000px;}
.xa2_c00079{left:630.990000px;}
.x79_c00079{left:656.707422px;}
.x6b_c00079{left:667.600560px;}
.x63_c00079{left:706.605000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
._0_c00079{margin-left:-37.445654pt;}
.fs12_c00079{font-size:39.200000pt;}
.fs11_c00079{font-size:40.133333pt;}
.fs16_c00079{font-size:42.001029pt;}
.fs13_c00079{font-size:43.866667pt;}
.fs18_c00079{font-size:43.867741pt;}
.fs19_c00079{font-size:44.800000pt;}
.fse_c00079{font-size:44.800806pt;}
.fs17_c00079{font-size:44.801098pt;}
.fs1a_c00079{font-size:45.733333pt;}
.fsf_c00079{font-size:45.734157pt;}
.fsc_c00079{font-size:45.734797pt;}
.fs14_c00079{font-size:46.666667pt;}
.fsd_c00079{font-size:46.667507pt;}
.fs1b_c00079{font-size:47.600000pt;}
.fs10_c00079{font-size:48.534522pt;}
.fs15_c00079{font-size:51.334976pt;}
.fs5_c00079{font-size:55.069998pt;}
.fs4_c00079{font-size:56.005488pt;}
.fs9_c00079{font-size:56.933333pt;}
.fsb_c00079{font-size:58.803557pt;}
.fsa_c00079{font-size:60.666667pt;}
.fs8_c00079{font-size:62.535866pt;}
.fs3_c00079{font-size:62.539461pt;}
.fs7_c00079{font-size:63.469237pt;}
.fs6_c00079{font-size:64.403896pt;}
.fs1_c00079{font-size:65.337286pt;}
.fs2_c00079{font-size:65.339736pt;}
.fs0_c00079{font-size:90.533333pt;}
.y0_c00079{bottom:0.000000pt;}
.y102_c00079{bottom:107.450667pt;}
.y101_c00079{bottom:123.914667pt;}
.y100_c00079{bottom:139.489333pt;}
.yff_c00079{bottom:155.833333pt;}
.yf4_c00079{bottom:170.160000pt;}
.yf5_c00079{bottom:170.411972pt;}
.yf6_c00079{bottom:170.711040pt;}
.yf7_c00079{bottom:170.986569pt;}
.yf8_c00079{bottom:171.329289pt;}
.yf9_c00079{bottom:171.678337pt;}
.yfa_c00079{bottom:171.850127pt;}
.yfb_c00079{bottom:172.060117pt;}
.yfc_c00079{bottom:172.243219pt;}
.yfd_c00079{bottom:172.335637pt;}
.yfe_c00079{bottom:172.592696pt;}
.yed_c00079{bottom:187.057373pt;}
.yee_c00079{bottom:187.057524pt;}
.yf1_c00079{bottom:187.057568pt;}
.yf0_c00079{bottom:187.057648pt;}
.yeb_c00079{bottom:187.057703pt;}
.yec_c00079{bottom:187.057720pt;}
.yf2_c00079{bottom:187.057772pt;}
.yef_c00079{bottom:187.057977pt;}
.yf3_c00079{bottom:187.058296pt;}
.ydc_c00079{bottom:201.840147pt;}
.ydd_c00079{bottom:202.029921pt;}
.yde_c00079{bottom:202.166151pt;}
.ydf_c00079{bottom:202.481981pt;}
.ye0_c00079{bottom:202.678551pt;}
.ye1_c00079{bottom:202.787751pt;}
.ye2_c00079{bottom:203.197661pt;}
.ye3_c00079{bottom:203.301961pt;}
.ye4_c00079{bottom:203.478249pt;}
.ye5_c00079{bottom:203.629300pt;}
.ye6_c00079{bottom:203.728485pt;}
.ye7_c00079{bottom:204.002428pt;}
.ye8_c00079{bottom:204.271247pt;}
.ye9_c00079{bottom:204.351821pt;}
.yea_c00079{bottom:204.560169pt;}
.ycf_c00079{bottom:217.920000pt;}
.yd0_c00079{bottom:218.163591pt;}
.yd1_c00079{bottom:218.344956pt;}
.yd2_c00079{bottom:218.568471pt;}
.yd3_c00079{bottom:218.664240pt;}
.yd4_c00079{bottom:218.778480pt;}
.yd5_c00079{bottom:218.985148pt;}
.yd6_c00079{bottom:219.218640pt;}
.yd7_c00079{bottom:219.395133pt;}
.yd8_c00079{bottom:219.631957pt;}
.yd9_c00079{bottom:219.912527pt;}
.yda_c00079{bottom:220.367797pt;}
.ydb_c00079{bottom:220.456875pt;}
.yc2_c00079{bottom:234.000000pt;}
.yc3_c00079{bottom:234.224651pt;}
.yc4_c00079{bottom:234.359019pt;}
.yc5_c00079{bottom:234.568139pt;}
.yc6_c00079{bottom:234.647072pt;}
.yc7_c00079{bottom:234.929291pt;}
.yc8_c00079{bottom:235.113653pt;}
.yc9_c00079{bottom:235.365195pt;}
.yca_c00079{bottom:235.670635pt;}
.ycb_c00079{bottom:235.774155pt;}
.ycc_c00079{bottom:236.192501pt;}
.ycd_c00079{bottom:236.317333pt;}
.yce_c00079{bottom:236.434709pt;}
.yb2_c00079{bottom:249.840000pt;}
.yb0_c00079{bottom:250.080000pt;}
.yb3_c00079{bottom:250.097333pt;}
.yb4_c00079{bottom:250.296000pt;}
.yb5_c00079{bottom:250.484000pt;}
.yb6_c00079{bottom:250.794667pt;}
.yb7_c00079{bottom:250.929333pt;}
.yb8_c00079{bottom:251.109333pt;}
.yb9_c00079{bottom:251.198667pt;}
.yba_c00079{bottom:251.313333pt;}
.ybb_c00079{bottom:251.405333pt;}
.ybc_c00079{bottom:251.618667pt;}
.ybd_c00079{bottom:251.881333pt;}
.ybe_c00079{bottom:252.122667pt;}
.ybf_c00079{bottom:252.290667pt;}
.yc0_c00079{bottom:252.684000pt;}
.yc1_c00079{bottom:252.757333pt;}
.yaf_c00079{bottom:265.684000pt;}
.yb1_c00079{bottom:267.350667pt;}
.ya1_c00079{bottom:281.520000pt;}
.ya2_c00079{bottom:281.753529pt;}
.ya3_c00079{bottom:282.086048pt;}
.ya4_c00079{bottom:282.220840pt;}
.ya5_c00079{bottom:282.484357pt;}
.ya6_c00079{bottom:282.633924pt;}
.ya7_c00079{bottom:282.884207pt;}
.ya8_c00079{bottom:282.976737pt;}
.ya9_c00079{bottom:283.077453pt;}
.yaa_c00079{bottom:283.414984pt;}
.yab_c00079{bottom:283.564327pt;}
.yac_c00079{bottom:283.882043pt;}
.yad_c00079{bottom:284.031563pt;}
.yae_c00079{bottom:284.161053pt;}
.y92_c00079{bottom:297.117360pt;}
.y93_c00079{bottom:297.332141pt;}
.y94_c00079{bottom:297.588965pt;}
.y95_c00079{bottom:298.182005pt;}
.y96_c00079{bottom:298.335800pt;}
.y97_c00079{bottom:298.436053pt;}
.y98_c00079{bottom:298.990864pt;}
.y99_c00079{bottom:299.216872pt;}
.y9a_c00079{bottom:299.324131pt;}
.y9b_c00079{bottom:299.703885pt;}
.y9c_c00079{bottom:299.928373pt;}
.y9d_c00079{bottom:300.029883pt;}
.y9e_c00079{bottom:300.179680pt;}
.y9f_c00079{bottom:300.596056pt;}
.ya0_c00079{bottom:300.675128pt;}
.y87_c00079{bottom:313.437979pt;}
.y88_c00079{bottom:313.781096pt;}
.y89_c00079{bottom:313.883619pt;}
.y8a_c00079{bottom:314.344952pt;}
.y8b_c00079{bottom:314.569944pt;}
.y8c_c00079{bottom:314.900371pt;}
.y8d_c00079{bottom:314.987195pt;}
.y8e_c00079{bottom:315.125203pt;}
.y8f_c00079{bottom:315.246544pt;}
.y90_c00079{bottom:315.672101pt;}
.y91_c00079{bottom:315.980893pt;}
.y79_c00079{bottom:329.519755pt;}
.y7a_c00079{bottom:329.865309pt;}
.y7b_c00079{bottom:329.941888pt;}
.y7c_c00079{bottom:330.188997pt;}
.y7d_c00079{bottom:330.503704pt;}
.y7e_c00079{bottom:330.807216pt;}
.y7f_c00079{bottom:330.945963pt;}
.y80_c00079{bottom:331.202091pt;}
.y81_c00079{bottom:331.298707pt;}
.y82_c00079{bottom:331.665723pt;}
.y83_c00079{bottom:331.867581pt;}
.y84_c00079{bottom:332.123109pt;}
.y85_c00079{bottom:332.449283pt;}
.y86_c00079{bottom:333.079320pt;}
.y68_c00079{bottom:345.588000pt;}
.y76_c00079{bottom:345.600000pt;}
.y77_c00079{bottom:345.653424pt;}
.y69_c00079{bottom:345.747371pt;}
.y6a_c00079{bottom:345.929792pt;}
.y6b_c00079{bottom:346.039211pt;}
.y6c_c00079{bottom:346.308000pt;}
.y6d_c00079{bottom:346.444704pt;}
.y6e_c00079{bottom:346.845899pt;}
.y6f_c00079{bottom:347.078272pt;}
.y70_c00079{bottom:347.279861pt;}
.y71_c00079{bottom:347.502464pt;}
.y72_c00079{bottom:347.600469pt;}
.y73_c00079{bottom:347.934197pt;}
.y74_c00079{bottom:348.158891pt;}
.y78_c00079{bottom:348.407888pt;}
.y75_c00079{bottom:348.527552pt;}
.y61_c00079{bottom:369.361333pt;}
.y62_c00079{bottom:369.913064pt;}
.y63_c00079{bottom:370.152879pt;}
.y64_c00079{bottom:370.472392pt;}
.y65_c00079{bottom:371.267472pt;}
.y66_c00079{bottom:371.504764pt;}
.y67_c00079{bottom:371.853684pt;}
.y5a_c00079{bottom:389.039627pt;}
.y5b_c00079{bottom:389.350372pt;}
.y5c_c00079{bottom:389.755833pt;}
.y5d_c00079{bottom:390.053460pt;}
.y5e_c00079{bottom:390.442393pt;}
.y5f_c00079{bottom:391.220236pt;}
.y60_c00079{bottom:391.470907pt;}
.y50_c00079{bottom:410.046667pt;}
.y51_c00079{bottom:410.160403pt;}
.y52_c00079{bottom:410.482231pt;}
.y53_c00079{bottom:410.652859pt;}
.y54_c00079{bottom:410.944315pt;}
.y55_c00079{bottom:411.281743pt;}
.y56_c00079{bottom:411.644083pt;}
.y57_c00079{bottom:411.998563pt;}
.y58_c00079{bottom:412.300723pt;}
.y59_c00079{bottom:412.560259pt;}
.y4f_c00079{bottom:431.873333pt;}
.y4e_c00079{bottom:452.129333pt;}
.y46_c00079{bottom:470.524431pt;}
.y47_c00079{bottom:471.038971pt;}
.y48_c00079{bottom:471.353379pt;}
.y49_c00079{bottom:471.596343pt;}
.y4a_c00079{bottom:472.291704pt;}
.y4b_c00079{bottom:472.421413pt;}
.y4c_c00079{bottom:472.700285pt;}
.y4d_c00079{bottom:473.141701pt;}
.y3c_c00079{bottom:490.942667pt;}
.y3d_c00079{bottom:491.039771pt;}
.y3e_c00079{bottom:491.350919pt;}
.y3f_c00079{bottom:491.823671pt;}
.y40_c00079{bottom:492.083267pt;}
.y41_c00079{bottom:492.515543pt;}
.y42_c00079{bottom:493.068419pt;}
.y43_c00079{bottom:493.453019pt;}
.y44_c00079{bottom:493.744067pt;}
.y45_c00079{bottom:494.040263pt;}
.y33_c00079{bottom:511.200556pt;}
.y34_c00079{bottom:511.425187pt;}
.y35_c00079{bottom:511.805109pt;}
.y36_c00079{bottom:512.156537pt;}
.y37_c00079{bottom:512.540493pt;}
.y38_c00079{bottom:513.494172pt;}
.y39_c00079{bottom:513.864959pt;}
.y3a_c00079{bottom:514.072871pt;}
.y3b_c00079{bottom:514.458631pt;}
.y28_c00079{bottom:531.361333pt;}
.y29_c00079{bottom:531.704577pt;}
.y2a_c00079{bottom:531.915851pt;}
.y2b_c00079{bottom:532.319771pt;}
.y2c_c00079{bottom:532.472847pt;}
.y2d_c00079{bottom:532.678811pt;}
.y2e_c00079{bottom:533.222915pt;}
.y2f_c00079{bottom:533.468596pt;}
.y30_c00079{bottom:533.785059pt;}
.y31_c00079{bottom:534.154204pt;}
.y32_c00079{bottom:534.544953pt;}
.y21_c00079{bottom:551.747432pt;}
.y22_c00079{bottom:552.246368pt;}
.y23_c00079{bottom:553.004632pt;}
.y24_c00079{bottom:553.208451pt;}
.y25_c00079{bottom:553.551037pt;}
.y26_c00079{bottom:553.978525pt;}
.y27_c00079{bottom:554.306827pt;}
.y16_c00079{bottom:571.919736pt;}
.y17_c00079{bottom:572.328723pt;}
.y18_c00079{bottom:572.706797pt;}
.y19_c00079{bottom:573.028288pt;}
.y1a_c00079{bottom:573.271021pt;}
.y1b_c00079{bottom:573.666760pt;}
.y1c_c00079{bottom:574.038720pt;}
.y1d_c00079{bottom:574.265517pt;}
.y1e_c00079{bottom:574.693389pt;}
.y1f_c00079{bottom:575.174933pt;}
.y20_c00079{bottom:575.483960pt;}
.yc_c00079{bottom:592.324000pt;}
.yd_c00079{bottom:592.896899pt;}
.ye_c00079{bottom:593.384043pt;}
.yf_c00079{bottom:593.841749pt;}
.y10_c00079{bottom:594.138997pt;}
.y11_c00079{bottom:594.751600pt;}
.y12_c00079{bottom:595.134845pt;}
.y13_c00079{bottom:595.582379pt;}
.y14_c00079{bottom:595.998272pt;}
.y15_c00079{bottom:596.385568pt;}
.y3_c00079{bottom:621.149333pt;}
.y4_c00079{bottom:621.431447pt;}
.y5_c00079{bottom:621.631603pt;}
.y6_c00079{bottom:621.852277pt;}
.y7_c00079{bottom:622.054032pt;}
.y8_c00079{bottom:622.287261pt;}
.y9_c00079{bottom:622.658665pt;}
.ya_c00079{bottom:622.856299pt;}
.yb_c00079{bottom:623.263680pt;}
.y2_c00079{bottom:658.041333pt;}
.y1_c00079{bottom:689.606667pt;}
.h14_c00079{height:39.200000pt;}
.h13_c00079{height:40.133333pt;}
.h18_c00079{height:42.001029pt;}
.h15_c00079{height:43.866667pt;}
.h1a_c00079{height:43.867741pt;}
.h1b_c00079{height:44.800000pt;}
.h10_c00079{height:44.800806pt;}
.h19_c00079{height:44.801098pt;}
.h1c_c00079{height:45.733333pt;}
.h11_c00079{height:45.734157pt;}
.he_c00079{height:45.734797pt;}
.h16_c00079{height:46.666667pt;}
.hf_c00079{height:46.667507pt;}
.h1d_c00079{height:47.600000pt;}
.h12_c00079{height:48.534522pt;}
.h17_c00079{height:51.334976pt;}
.h7_c00079{height:55.069998pt;}
.h6_c00079{height:56.005488pt;}
.hb_c00079{height:56.933333pt;}
.hd_c00079{height:58.803557pt;}
.hc_c00079{height:60.666667pt;}
.ha_c00079{height:62.535866pt;}
.h5_c00079{height:62.539461pt;}
.h9_c00079{height:63.469237pt;}
.h8_c00079{height:64.403896pt;}
.h3_c00079{height:65.337286pt;}
.h4_c00079{height:65.339736pt;}
.h2_c00079{height:90.533333pt;}
.h0_c00079{height:896.400000pt;}
.h1_c00079{height:896.666667pt;}
.w0_c00079{width:632.640000pt;}
.w1_c00079{width:632.666667pt;}
.x0_c00079{left:0.000000pt;}
.x64_c00079{left:148.389389pt;}
.x82_c00079{left:149.280000pt;}
.x62_c00079{left:160.112000pt;}
.xa9_c00079{left:165.360000pt;}
.x50_c00079{left:167.472000pt;}
.x3e_c00079{left:169.319672pt;}
.x36_c00079{left:170.273333pt;}
.x72_c00079{left:175.536819pt;}
.x83_c00079{left:177.120000pt;}
.x26_c00079{left:180.115013pt;}
.x1c_c00079{left:181.568941pt;}
.x5c_c00079{left:184.630667pt;}
.xaa_c00079{left:187.920000pt;}
.xa3_c00079{left:189.120000pt;}
.x65_c00079{left:191.536869pt;}
.x8b_c00079{left:193.986667pt;}
.x92_c00079{left:195.907208pt;}
.x30_c00079{left:198.628060pt;}
.x45_c00079{left:200.160000pt;}
.x66_c00079{left:201.188757pt;}
.x7_c00079{left:202.560000pt;}
.x5d_c00079{left:204.552000pt;}
.x4a_c00079{left:205.920000pt;}
.x55_c00079{left:207.036123pt;}
.x8e_c00079{left:210.290667pt;}
.x13_c00079{left:212.165333pt;}
.x88_c00079{left:213.664000pt;}
.x37_c00079{left:215.634667pt;}
.x84_c00079{left:217.440000pt;}
.x1d_c00079{left:218.783843pt;}
.x3f_c00079{left:220.712537pt;}
.x8_c00079{left:222.720000pt;}
.x5e_c00079{left:227.354667pt;}
.x27_c00079{left:230.041813pt;}
.x2b_c00079{left:231.497333pt;}
.x46_c00079{left:234.000000pt;}
.x9f_c00079{left:239.760000pt;}
.x56_c00079{left:240.827211pt;}
.xa_c00079{left:242.608000pt;}
.x4b_c00079{left:246.720000pt;}
.x7a_c00079{left:248.982667pt;}
.x40_c00079{left:252.090916pt;}
.x14_c00079{left:253.086667pt;}
.x8f_c00079{left:255.902667pt;}
.x31_c00079{left:259.538052pt;}
.x4c_c00079{left:265.680000pt;}
.x51_c00079{left:267.210667pt;}
.xb_c00079{left:268.254667pt;}
.x1_c00079{left:269.280000pt;}
.x67_c00079{left:271.490584pt;}
.x5f_c00079{left:274.630667pt;}
.x41_c00079{left:276.420033pt;}
.x6c_c00079{left:278.462451pt;}
.x1e_c00079{left:282.374512pt;}
.x93_c00079{left:284.707208pt;}
.xc_c00079{left:286.450667pt;}
.x15_c00079{left:287.882667pt;}
.x32_c00079{left:291.533700pt;}
.x98_c00079{left:292.564363pt;}
.xa4_c00079{left:295.440000pt;}
.x38_c00079{left:297.006667pt;}
.x57_c00079{left:297.998996pt;}
.x2c_c00079{left:300.857333pt;}
.x90_c00079{left:301.746667pt;}
.x2_c00079{left:302.640000pt;}
.x1f_c00079{left:304.475445pt;}
.xd_c00079{left:306.512000pt;}
.x7b_c00079{left:307.994667pt;}
.x68_c00079{left:309.408795pt;}
.x6d_c00079{left:310.627592pt;}
.x73_c00079{left:313.520496pt;}
.x9b_c00079{left:316.144000pt;}
.xa0_c00079{left:318.000000pt;}
.x47_c00079{left:319.200000pt;}
.x16_c00079{left:320.576000pt;}
.x99_c00079{left:322.804513pt;}
.xe_c00079{left:324.853333pt;}
.x28_c00079{left:326.291208pt;}
.x89_c00079{left:332.461333pt;}
.x9_c00079{left:335.520000pt;}
.x4d_c00079{left:339.360000pt;}
.x20_c00079{left:340.458291pt;}
.x17_c00079{left:341.808000pt;}
.x7c_c00079{left:343.749333pt;}
.x39_c00079{left:345.037333pt;}
.xf_c00079{left:346.056000pt;}
.x2d_c00079{left:350.321333pt;}
.x59_c00079{left:354.134667pt;}
.x7d_c00079{left:356.968000pt;}
.x6e_c00079{left:357.920645pt;}
.x42_c00079{left:358.908623pt;}
.x29_c00079{left:360.573131pt;}
.x58_c00079{left:362.794577pt;}
.x9c_c00079{left:366.008000pt;}
.x48_c00079{left:368.400000pt;}
.x33_c00079{left:370.958153pt;}
.x3_c00079{left:372.720000pt;}
.x21_c00079{left:374.266376pt;}
.x5a_c00079{left:375.706667pt;}
.x4e_c00079{left:378.000000pt;}
.x10_c00079{left:379.820000pt;}
.x74_c00079{left:382.876997pt;}
.x52_c00079{left:384.349333pt;}
.x18_c00079{left:385.565333pt;}
.x43_c00079{left:386.783037pt;}
.x6f_c00079{left:390.059120pt;}
.x22_c00079{left:394.943253pt;}
.x4_c00079{left:396.000000pt;}
.x11_c00079{left:397.786667pt;}
.x8a_c00079{left:400.380000pt;}
.x2e_c00079{left:401.425333pt;}
.x5_c00079{left:403.440000pt;}
.x94_c00079{left:404.928541pt;}
.x3a_c00079{left:406.468000pt;}
.x5b_c00079{left:407.426667pt;}
.x75_c00079{left:411.211328pt;}
.x19_c00079{left:412.940000pt;}
.x9a_c00079{left:415.207707pt;}
.x69_c00079{left:416.714173pt;}
.x53_c00079{left:417.922667pt;}
.x34_c00079{left:419.202959pt;}
.x9d_c00079{left:420.548000pt;}
.x49_c00079{left:422.640000pt;}
.x60_c00079{left:423.938667pt;}
.xa7_c00079{left:425.520000pt;}
.x44_c00079{left:430.939975pt;}
.x23_c00079{left:433.792877pt;}
.x12_c00079{left:434.821333pt;}
.x2a_c00079{left:436.181368pt;}
.x8c_c00079{left:438.776000pt;}
.x7e_c00079{left:440.909333pt;}
.x6a_c00079{left:441.912536pt;}
.xa5_c00079{left:443.520000pt;}
.x6_c00079{left:445.200000pt;}
.x54_c00079{left:446.760000pt;}
.x3b_c00079{left:449.201333pt;}
.x35_c00079{left:451.362607pt;}
.x8d_c00079{left:453.448000pt;}
.xa6_c00079{left:456.720000pt;}
.x95_c00079{left:458.232541pt;}
.x9e_c00079{left:459.908000pt;}
.xa1_c00079{left:462.480000pt;}
.x4f_c00079{left:463.920000pt;}
.x70_c00079{left:468.097315pt;}
.x2f_c00079{left:470.506667pt;}
.x76_c00079{left:472.157267pt;}
.x1a_c00079{left:474.613333pt;}
.x24_c00079{left:477.524040pt;}
.x3c_c00079{left:481.540000pt;}
.x7f_c00079{left:486.297333pt;}
.x85_c00079{left:488.160000pt;}
.x96_c00079{left:496.635208pt;}
.x91_c00079{left:499.268000pt;}
.x77_c00079{left:500.238264pt;}
.x1b_c00079{left:502.277333pt;}
.x25_c00079{left:505.598549pt;}
.x80_c00079{left:507.657333pt;}
.x71_c00079{left:512.229051pt;}
.x3d_c00079{left:514.450667pt;}
.x86_c00079{left:525.120000pt;}
.x81_c00079{left:526.156000pt;}
.x78_c00079{left:531.677888pt;}
.x97_c00079{left:537.909875pt;}
.x61_c00079{left:552.074667pt;}
.x87_c00079{left:558.000000pt;}
.xa8_c00079{left:559.920000pt;}
.xa2_c00079{left:560.880000pt;}
.x79_c00079{left:583.739931pt;}
.x6b_c00079{left:593.422720pt;}
.x63_c00079{left:628.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_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_ef4e99a7aa2876b3106553d3.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;}
.md3_c00080{transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);}
.m8b_c00080{transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);}
.mef_c00080{transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);}
.mfc_c00080{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.mcd_c00080{transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);}
.m98_c00080{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);}
.m62_c00080{transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);}
.m5e_c00080{transform:matrix(0.108154,-0.001514,0.003500,0.249976,0,0);-ms-transform:matrix(0.108154,-0.001514,0.003500,0.249976,0,0);-webkit-transform:matrix(0.108154,-0.001514,0.003500,0.249976,0,0);}
.m92_c00080{transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);}
.mfb_c00080{transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);}
.m86_c00080{transform:matrix(0.122960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122960,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{transform:matrix(0.128245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128245,0.000000,0.000000,0.250000,0,0);}
.m74_c00080{transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);}
.m1f_c00080{transform:matrix(0.133935,-0.001205,0.002250,0.249990,0,0);-ms-transform:matrix(0.133935,-0.001205,0.002250,0.249990,0,0);-webkit-transform:matrix(0.133935,-0.001205,0.002250,0.249990,0,0);}
.m26_c00080{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);}
.m29_c00080{transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138740,0.000000,0.000000,0.250000,0,0);}
.mf3_c00080{transform:matrix(0.140995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140995,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.144039,-0.002449,0.004249,0.249964,0,0);-ms-transform:matrix(0.144039,-0.002449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.144039,-0.002449,0.004249,0.249964,0,0);}
.m3c_c00080{transform:matrix(0.144728,-0.001881,0.003250,0.249979,0,0);-ms-transform:matrix(0.144728,-0.001881,0.003250,0.249979,0,0);-webkit-transform:matrix(0.144728,-0.001881,0.003250,0.249979,0,0);}
.mc_c00080{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);}
.mf5_c00080{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);}
.m25_c00080{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);}
.m45_c00080{transform:matrix(0.147688,-0.001920,0.003250,0.249979,0,0);-ms-transform:matrix(0.147688,-0.001920,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147688,-0.001920,0.003250,0.249979,0,0);}
.m21_c00080{transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);-ms-transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);}
.m20_c00080{transform:matrix(0.152974,-0.001377,0.002250,0.249990,0,0);-ms-transform:matrix(0.152974,-0.001377,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152974,-0.001377,0.002250,0.249990,0,0);}
.m3e_c00080{transform:matrix(0.153887,-0.002001,0.003250,0.249979,0,0);-ms-transform:matrix(0.153887,-0.002001,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153887,-0.002001,0.003250,0.249979,0,0);}
.m1b_c00080{transform:matrix(0.155634,-0.001401,0.002250,0.249990,0,0);-ms-transform:matrix(0.155634,-0.001401,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155634,-0.001401,0.002250,0.249990,0,0);}
.m1d_c00080{transform:matrix(0.156649,-0.001410,0.002250,0.249990,0,0);-ms-transform:matrix(0.156649,-0.001410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156649,-0.001410,0.002250,0.249990,0,0);}
.m2a_c00080{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);}
.m6_c00080{transform:matrix(0.159067,-0.002704,0.004249,0.249964,0,0);-ms-transform:matrix(0.159067,-0.002704,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159067,-0.002704,0.004249,0.249964,0,0);}
.m2f_c00080{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);}
.m1c_c00080{transform:matrix(0.162108,-0.001459,0.002250,0.249990,0,0);-ms-transform:matrix(0.162108,-0.001459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162108,-0.001459,0.002250,0.249990,0,0);}
.m10_c00080{transform:matrix(0.162422,-0.002761,0.004249,0.249964,0,0);-ms-transform:matrix(0.162422,-0.002761,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162422,-0.002761,0.004249,0.249964,0,0);}
.ma6_c00080{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);}
.mf4_c00080{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);}
.m9_c00080{transform:matrix(0.164441,-0.002796,0.004249,0.249964,0,0);-ms-transform:matrix(0.164441,-0.002796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164441,-0.002796,0.004249,0.249964,0,0);}
.m6c_c00080{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);}
.m40_c00080{transform:matrix(0.165721,-0.002154,0.003250,0.249979,0,0);-ms-transform:matrix(0.165721,-0.002154,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165721,-0.002154,0.003250,0.249979,0,0);}
.me8_c00080{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.me0_c00080{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);}
.m52_c00080{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);}
.m7b_c00080{transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{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);}
.m68_c00080{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);}
.md_c00080{transform:matrix(0.171575,-0.002917,0.004249,0.249964,0,0);-ms-transform:matrix(0.171575,-0.002917,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171575,-0.002917,0.004249,0.249964,0,0);}
.m54_c00080{transform:matrix(0.171800,-0.002233,0.003250,0.249979,0,0);-ms-transform:matrix(0.171800,-0.002233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171800,-0.002233,0.003250,0.249979,0,0);}
.m11_c00080{transform:matrix(0.172370,-0.002930,0.004249,0.249964,0,0);-ms-transform:matrix(0.172370,-0.002930,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172370,-0.002930,0.004249,0.249964,0,0);}
.m70_c00080{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);}
.mff_c00080{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);}
.md1_c00080{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);}
.mf0_c00080{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m48_c00080{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);}
.m5_c00080{transform:matrix(0.174475,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174475,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174475,-0.002966,0.004249,0.249964,0,0);}
.me7_c00080{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);}
.m22_c00080{transform:matrix(0.175088,-0.001576,0.002250,0.249990,0,0);-ms-transform:matrix(0.175088,-0.001576,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175088,-0.001576,0.002250,0.249990,0,0);}
.m88_c00080{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);}
.m8_c00080{transform:matrix(0.178304,-0.003031,0.004249,0.249964,0,0);-ms-transform:matrix(0.178304,-0.003031,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178304,-0.003031,0.004249,0.249964,0,0);}
.maf_c00080{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);}
.m100_c00080{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);}
.m82_c00080{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);}
.mb8_c00080{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);}
.ma5_c00080{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);}
.ma3_c00080{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);}
.mb6_c00080{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);}
.m64_c00080{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);}
.m80_c00080{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);}
.m79_c00080{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);}
.m14_c00080{transform:matrix(0.181918,-0.001637,0.002250,0.249990,0,0);-ms-transform:matrix(0.181918,-0.001637,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181918,-0.001637,0.002250,0.249990,0,0);}
.m9c_c00080{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);}
.ma2_c00080{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);}
.m1e_c00080{transform:matrix(0.182953,-0.001647,0.002250,0.249990,0,0);-ms-transform:matrix(0.182953,-0.001647,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182953,-0.001647,0.002250,0.249990,0,0);}
.ma8_c00080{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);}
.m8d_c00080{transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);}
.md5_c00080{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);}
.m9e_c00080{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);}
.m46_c00080{transform:matrix(0.184839,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184839,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184839,-0.002403,0.003250,0.249979,0,0);}
.m3d_c00080{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);}
.m4c_c00080{transform:matrix(0.185714,-0.002414,0.003250,0.249979,0,0);-ms-transform:matrix(0.185714,-0.002414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185714,-0.002414,0.003250,0.249979,0,0);}
.m4d_c00080{transform:matrix(0.185739,-0.002415,0.003250,0.249979,0,0);-ms-transform:matrix(0.185739,-0.002415,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185739,-0.002415,0.003250,0.249979,0,0);}
.mab_c00080{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);}
.m6a_c00080{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);}
.mbe_c00080{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);}
.md2_c00080{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);}
.mdb_c00080{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);}
.m3_c00080{transform:matrix(0.186953,-0.003178,0.004249,0.249964,0,0);-ms-transform:matrix(0.186953,-0.003178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186953,-0.003178,0.004249,0.249964,0,0);}
.m3f_c00080{transform:matrix(0.187274,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187274,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187274,-0.002435,0.003250,0.249979,0,0);}
.m17_c00080{transform:matrix(0.187362,-0.001686,0.002250,0.249990,0,0);-ms-transform:matrix(0.187362,-0.001686,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187362,-0.001686,0.002250,0.249990,0,0);}
.me5_c00080{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);}
.mf2_c00080{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);}
.m7_c00080{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);}
.m15_c00080{transform:matrix(0.188662,-0.001698,0.002250,0.249990,0,0);-ms-transform:matrix(0.188662,-0.001698,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188662,-0.001698,0.002250,0.249990,0,0);}
.m7a_c00080{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);}
.m77_c00080{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);}
.mc3_c00080{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);}
.m47_c00080{transform:matrix(0.189704,-0.002466,0.003250,0.249979,0,0);-ms-transform:matrix(0.189704,-0.002466,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189704,-0.002466,0.003250,0.249979,0,0);}
.m78_c00080{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);}
.m24_c00080{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);}
.m44_c00080{transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);-ms-transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);}
.m3b_c00080{transform:matrix(0.192434,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192434,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192434,-0.002502,0.003250,0.249979,0,0);}
.mb5_c00080{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);}
.m7d_c00080{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);}
.mfa_c00080{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);}
.m89_c00080{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);}
.m8e_c00080{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);}
.mea_c00080{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);}
.m35_c00080{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);}
.m6b_c00080{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);}
.mcc_c00080{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);}
.m12_c00080{transform:matrix(0.195587,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195587,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195587,-0.001760,0.002250,0.249990,0,0);}
.m4_c00080{transform:matrix(0.195617,-0.003325,0.004249,0.249964,0,0);-ms-transform:matrix(0.195617,-0.003325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195617,-0.003325,0.004249,0.249964,0,0);}
.me2_c00080{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);}
.m49_c00080{transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);}
.mf1_c00080{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);}
.me_c00080{transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);-ms-transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);}
.m2_c00080{transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-ms-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);}
.m19_c00080{transform:matrix(0.197637,-0.001779,0.002250,0.249990,0,0);-ms-transform:matrix(0.197637,-0.001779,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197637,-0.001779,0.002250,0.249990,0,0);}
.md7_c00080{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);}
.m31_c00080{transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);}
.mf8_c00080{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);}
.m41_c00080{transform:matrix(0.198643,-0.002582,0.003250,0.249979,0,0);-ms-transform:matrix(0.198643,-0.002582,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198643,-0.002582,0.003250,0.249979,0,0);}
.m38_c00080{transform:matrix(0.198648,-0.002582,0.003250,0.249979,0,0);-ms-transform:matrix(0.198648,-0.002582,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198648,-0.002582,0.003250,0.249979,0,0);}
.m85_c00080{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);}
.mcf_c00080{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);}
.ma1_c00080{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);}
.m69_c00080{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);}
.m16_c00080{transform:matrix(0.199637,-0.001797,0.002250,0.249990,0,0);-ms-transform:matrix(0.199637,-0.001797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199637,-0.001797,0.002250,0.249990,0,0);}
.mb9_c00080{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);}
.m6f_c00080{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);}
.mdf_c00080{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);}
.mbd_c00080{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);}
.mcb_c00080{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);}
.md6_c00080{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);}
.me3_c00080{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);}
.m75_c00080{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);}
.ma4_c00080{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);}
.mb4_c00080{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);}
.m72_c00080{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);}
.m6e_c00080{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);}
.m81_c00080{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);}
.mbf_c00080{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);}
.mc5_c00080{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);}
.m84_c00080{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);}
.mb0_c00080{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);}
.m58_c00080{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);}
.m51_c00080{transform:matrix(0.206323,-0.002682,0.003250,0.249979,0,0);-ms-transform:matrix(0.206323,-0.002682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206323,-0.002682,0.003250,0.249979,0,0);}
.m90_c00080{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);}
.m1a_c00080{transform:matrix(0.207272,-0.001865,0.002250,0.249990,0,0);-ms-transform:matrix(0.207272,-0.001865,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207272,-0.001865,0.002250,0.249990,0,0);}
.m9a_c00080{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);}
.mc4_c00080{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);}
.md4_c00080{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);}
.me4_c00080{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);}
.m8f_c00080{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);}
.m5d_c00080{transform:matrix(0.211254,-0.002958,0.003500,0.249976,0,0);-ms-transform:matrix(0.211254,-0.002958,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211254,-0.002958,0.003500,0.249976,0,0);}
.m61_c00080{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);}
.mbc_c00080{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);}
.m4a_c00080{transform:matrix(0.211682,-0.002752,0.003250,0.249979,0,0);-ms-transform:matrix(0.211682,-0.002752,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211682,-0.002752,0.003250,0.249979,0,0);}
.m13_c00080{transform:matrix(0.211806,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211806,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211806,-0.001906,0.002250,0.249990,0,0);}
.m97_c00080{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);}
.m9d_c00080{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);}
.mc9_c00080{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);}
.mfd_c00080{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);}
.m5b_c00080{transform:matrix(0.213459,-0.002988,0.003500,0.249976,0,0);-ms-transform:matrix(0.213459,-0.002988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213459,-0.002988,0.003500,0.249976,0,0);}
.m53_c00080{transform:matrix(0.213797,-0.002779,0.003250,0.249979,0,0);-ms-transform:matrix(0.213797,-0.002779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213797,-0.002779,0.003250,0.249979,0,0);}
.mf9_c00080{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);}
.m7f_c00080{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);}
.mde_c00080{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);}
.mb3_c00080{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);}
.m96_c00080{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);}
.m4b_c00080{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);}
.m28_c00080{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);}
.md9_c00080{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);}
.m73_c00080{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);}
.m66_c00080{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);}
.m43_c00080{transform:matrix(0.219301,-0.002851,0.003250,0.249979,0,0);-ms-transform:matrix(0.219301,-0.002851,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219301,-0.002851,0.003250,0.249979,0,0);}
.m42_c00080{transform:matrix(0.219691,-0.002856,0.003250,0.249979,0,0);-ms-transform:matrix(0.219691,-0.002856,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219691,-0.002856,0.003250,0.249979,0,0);}
.m3a_c00080{transform:matrix(0.220021,-0.002860,0.003250,0.249979,0,0);-ms-transform:matrix(0.220021,-0.002860,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220021,-0.002860,0.003250,0.249979,0,0);}
.mce_c00080{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.md0_c00080{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);}
.mf_c00080{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);}
.m8c_c00080{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);}
.m32_c00080{transform:matrix(0.223441,-0.002905,0.003250,0.249979,0,0);-ms-transform:matrix(0.223441,-0.002905,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223441,-0.002905,0.003250,0.249979,0,0);}
.m7e_c00080{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);}
.m6d_c00080{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);}
.mc8_c00080{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);}
.m63_c00080{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);}
.mb1_c00080{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);}
.mba_c00080{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);}
.m76_c00080{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);}
.ma9_c00080{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);}
.m55_c00080{transform:matrix(0.226891,-0.002950,0.003250,0.249979,0,0);-ms-transform:matrix(0.226891,-0.002950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226891,-0.002950,0.003250,0.249979,0,0);}
.mc0_c00080{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);}
.m95_c00080{transform:matrix(0.227205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227205,0.000000,0.000000,0.250000,0,0);}
.m67_c00080{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);}
.md8_c00080{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);}
.mdc_c00080{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);}
.m94_c00080{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);}
.m4f_c00080{transform:matrix(0.228766,-0.002974,0.003250,0.249979,0,0);-ms-transform:matrix(0.228766,-0.002974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228766,-0.002974,0.003250,0.249979,0,0);}
.m99_c00080{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);}
.mc7_c00080{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);}
.ma_c00080{transform:matrix(0.230022,-0.003910,0.004249,0.249964,0,0);-ms-transform:matrix(0.230022,-0.003910,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230022,-0.003910,0.004249,0.249964,0,0);}
.m60_c00080{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);}
.meb_c00080{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);}
.m9b_c00080{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);}
.m56_c00080{transform:matrix(0.231930,-0.003015,0.003250,0.249979,0,0);-ms-transform:matrix(0.231930,-0.003015,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231930,-0.003015,0.003250,0.249979,0,0);}
.med_c00080{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);}
.m8a_c00080{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);}
.m9f_c00080{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);}
.maa_c00080{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m91_c00080{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.mca_c00080{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);}
.m83_c00080{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);}
.mc2_c00080{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);}
.m36_c00080{transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);}
.mb2_c00080{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.mbb_c00080{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);}
.mda_c00080{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00080{transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);-ms-transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);}
.m50_c00080{transform:matrix(0.242275,-0.003150,0.003250,0.249979,0,0);-ms-transform:matrix(0.242275,-0.003150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242275,-0.003150,0.003250,0.249979,0,0);}
.mac_c00080{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);}
.mad_c00080{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);}
.m71_c00080{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);}
.ma0_c00080{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.m93_c00080{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);}
.m2b_c00080{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);}
.me9_c00080{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);}
.m1_c00080{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m65_c00080{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);}
.mec_c00080{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);}
.m7c_c00080{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);}
.mb7_c00080{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{transform:matrix(0.248659,-0.003233,0.003250,0.249979,0,0);-ms-transform:matrix(0.248659,-0.003233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248659,-0.003233,0.003250,0.249979,0,0);}
.mae_c00080{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);}
.m18_c00080{transform:matrix(0.253245,-0.002279,0.002250,0.249990,0,0);-ms-transform:matrix(0.253245,-0.002279,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253245,-0.002279,0.002250,0.249990,0,0);}
.m5c_c00080{transform:matrix(0.254455,-0.003562,0.003500,0.249976,0,0);-ms-transform:matrix(0.254455,-0.003562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254455,-0.003562,0.003500,0.249976,0,0);}
.m5f_c00080{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.mdd_c00080{transform:matrix(0.262860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262860,0.000000,0.000000,0.250000,0,0);}
.m87_c00080{transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);}
.me1_c00080{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.ma7_c00080{transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);}
.mc6_c00080{transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266775,0.000000,0.000000,0.250000,0,0);}
.m59_c00080{transform:matrix(0.267229,-0.003741,0.003500,0.249976,0,0);-ms-transform:matrix(0.267229,-0.003741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267229,-0.003741,0.003500,0.249976,0,0);}
.m57_c00080{transform:matrix(0.269594,-0.003774,0.003500,0.249976,0,0);-ms-transform:matrix(0.269594,-0.003774,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269594,-0.003774,0.003500,0.249976,0,0);}
.mc1_c00080{transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);}
.mf7_c00080{transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280570,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{transform:matrix(0.304489,-0.003958,0.003250,0.249979,0,0);-ms-transform:matrix(0.304489,-0.003958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.304489,-0.003958,0.003250,0.249979,0,0);}
.m0_c00080{transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00080{transform:matrix(0.305100,-0.004271,0.003500,0.249976,0,0);-ms-transform:matrix(0.305100,-0.004271,0.003500,0.249976,0,0);-webkit-transform:matrix(0.305100,-0.004271,0.003500,0.249976,0,0);}
.m37_c00080{transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);}
.mee_c00080{transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336845,0.000000,0.000000,0.250000,0,0);}
.mfe_c00080{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.me6_c00080{transform:matrix(0.365830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365830,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.370200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.465505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465505,0.000000,0.000000,0.250000,0,0);}
.m2c_c00080{transform:matrix(0.494515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494515,0.000000,0.000000,0.250000,0,0);}
.m2e_c00080{transform:matrix(0.499755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499755,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(0.500953,-0.006512,0.003250,0.249979,0,0);-ms-transform:matrix(0.500953,-0.006512,0.003250,0.249979,0,0);-webkit-transform:matrix(0.500953,-0.006512,0.003250,0.249979,0,0);}
.mf6_c00080{transform:matrix(0.950610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950610,0.000000,0.000000,0.250000,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;}
.fs19_c00080{font-size:45.150000px;}
.fs16_c00080{font-size:48.300000px;}
.fs11_c00080{font-size:49.350000px;}
.fs15_c00080{font-size:50.400000px;}
.fs12_c00080{font-size:51.450000px;}
.fs13_c00080{font-size:52.500000px;}
.fs17_c00080{font-size:53.550000px;}
.fs14_c00080{font-size:54.600000px;}
.fs1a_c00080{font-size:55.650000px;}
.fs1c_c00080{font-size:57.750000px;}
.fs18_c00080{font-size:60.900000px;}
.fs10_c00080{font-size:63.006174px;}
.fs1_c00080{font-size:66.150000px;}
.fs4_c00080{font-size:68.252764px;}
.fse_c00080{font-size:69.305856px;}
.fsd_c00080{font-size:70.355944px;}
.fs3_c00080{font-size:70.360165px;}
.fsf_c00080{font-size:71.406033px;}
.fs5_c00080{font-size:75.603062px;}
.fsc_c00080{font-size:75.606388px;}
.fs2_c00080{font-size:75.610923px;}
.fs6_c00080{font-size:81.900000px;}
.fsb_c00080{font-size:103.950000px;}
.fs9_c00080{font-size:110.250000px;}
.fs0_c00080{font-size:111.300000px;}
.fs7_c00080{font-size:113.400000px;}
.fs8_c00080{font-size:129.160913px;}
.fsa_c00080{font-size:136.500000px;}
.fs1b_c00080{font-size:197.400000px;}
.y0_c00080{bottom:0.000000px;}
.y63_c00080{bottom:146.601000px;}
.y75_c00080{bottom:162.253500px;}
.y64_c00080{bottom:164.152500px;}
.y74_c00080{bottom:180.360000px;}
.y62_c00080{bottom:181.293000px;}
.y73_c00080{bottom:198.066000px;}
.y61_c00080{bottom:199.200000px;}
.y72_c00080{bottom:215.464500px;}
.y60_c00080{bottom:217.237500px;}
.y70_c00080{bottom:233.166000px;}
.y5f_c00080{bottom:234.900000px;}
.y6f_c00080{bottom:250.797000px;}
.y5e_c00080{bottom:252.450000px;}
.y6e_c00080{bottom:268.413000px;}
.y5d_c00080{bottom:270.369000px;}
.y6d_c00080{bottom:286.089000px;}
.y5c_c00080{bottom:287.820000px;}
.y5b_c00080{bottom:301.311000px;}
.y6c_c00080{bottom:304.011000px;}
.y5a_c00080{bottom:318.889500px;}
.y6b_c00080{bottom:321.787500px;}
.y59_c00080{bottom:336.927000px;}
.y6a_c00080{bottom:339.628500px;}
.y58_c00080{bottom:354.550500px;}
.y69_c00080{bottom:357.474000px;}
.y57_c00080{bottom:372.324000px;}
.y68_c00080{bottom:374.977500px;}
.y56_c00080{bottom:390.514500px;}
.y67_c00080{bottom:393.297000px;}
.y55_c00080{bottom:407.782500px;}
.y66_c00080{bottom:410.547000px;}
.y54_c00080{bottom:425.650500px;}
.y65_c00080{bottom:428.707500px;}
.y2_c00080{bottom:472.906500px;}
.y24_c00080{bottom:474.315000px;}
.y21_c00080{bottom:496.615951px;}
.y22_c00080{bottom:496.616298px;}
.y20_c00080{bottom:496.616475px;}
.y23_c00080{bottom:496.616614px;}
.y1d_c00080{bottom:496.616829px;}
.y1a_c00080{bottom:496.616899px;}
.y1f_c00080{bottom:496.616938px;}
.y1e_c00080{bottom:496.617175px;}
.y1b_c00080{bottom:496.617186px;}
.y1c_c00080{bottom:496.617412px;}
.y13_c00080{bottom:517.591500px;}
.y14_c00080{bottom:517.900204px;}
.y15_c00080{bottom:518.639005px;}
.y16_c00080{bottom:518.959428px;}
.y17_c00080{bottom:519.258696px;}
.y18_c00080{bottom:519.671823px;}
.y19_c00080{bottom:520.118524px;}
.yb_c00080{bottom:540.268364px;}
.yc_c00080{bottom:540.693019px;}
.yd_c00080{bottom:540.964678px;}
.ye_c00080{bottom:541.469361px;}
.yf_c00080{bottom:542.063030px;}
.y10_c00080{bottom:542.237100px;}
.y11_c00080{bottom:542.692661px;}
.y12_c00080{bottom:543.224618px;}
.y3_c00080{bottom:562.413000px;}
.y4_c00080{bottom:563.569833px;}
.y5_c00080{bottom:563.860610px;}
.y6_c00080{bottom:564.509712px;}
.y7_c00080{bottom:565.108121px;}
.y8_c00080{bottom:565.783131px;}
.y9_c00080{bottom:566.058658px;}
.ya_c00080{bottom:566.694629px;}
.y4c_c00080{bottom:606.153000px;}
.y4d_c00080{bottom:606.489546px;}
.y4e_c00080{bottom:607.491519px;}
.y4f_c00080{bottom:608.353170px;}
.y50_c00080{bottom:608.575371px;}
.y51_c00080{bottom:608.887473px;}
.y52_c00080{bottom:610.035732px;}
.y53_c00080{bottom:610.849965px;}
.y46_c00080{bottom:629.096905px;}
.y47_c00080{bottom:630.089611px;}
.y48_c00080{bottom:630.948937px;}
.y49_c00080{bottom:631.549460px;}
.y4a_c00080{bottom:632.044136px;}
.y4b_c00080{bottom:632.780904px;}
.y3f_c00080{bottom:651.778384px;}
.y40_c00080{bottom:652.145563px;}
.y41_c00080{bottom:652.808802px;}
.y42_c00080{bottom:653.062300px;}
.y43_c00080{bottom:653.632047px;}
.y44_c00080{bottom:653.820103px;}
.y45_c00080{bottom:654.225805px;}
.y37_c00080{bottom:673.650420px;}
.y38_c00080{bottom:674.119863px;}
.y39_c00080{bottom:674.694225px;}
.y3a_c00080{bottom:675.163122px;}
.y3b_c00080{bottom:675.500481px;}
.y3c_c00080{bottom:676.210242px;}
.y3d_c00080{bottom:677.027711px;}
.y3e_c00080{bottom:677.474727px;}
.y2d_c00080{bottom:696.333000px;}
.y2e_c00080{bottom:696.741135px;}
.y2f_c00080{bottom:697.020765px;}
.y30_c00080{bottom:697.280661px;}
.y31_c00080{bottom:698.031879px;}
.y32_c00080{bottom:698.379622px;}
.y33_c00080{bottom:699.249342px;}
.y34_c00080{bottom:699.568635px;}
.y35_c00080{bottom:700.124131px;}
.y36_c00080{bottom:700.885919px;}
.y2c_c00080{bottom:722.814000px;}
.y1_c00080{bottom:762.346500px;}
.y2b_c00080{bottom:766.515000px;}
.y2a_c00080{bottom:802.167000px;}
.y26_c00080{bottom:859.146000px;}
.y27_c00080{bottom:861.902715px;}
.y28_c00080{bottom:862.782243px;}
.y29_c00080{bottom:863.688154px;}
.y71_c00080{bottom:864.270000px;}
.y25_c00080{bottom:902.593500px;}
.h1b_c00080{height:45.150000px;}
.h18_c00080{height:48.300000px;}
.h13_c00080{height:49.350000px;}
.h17_c00080{height:50.400000px;}
.h14_c00080{height:51.450000px;}
.h15_c00080{height:52.500000px;}
.h19_c00080{height:53.550000px;}
.h16_c00080{height:54.600000px;}
.h1c_c00080{height:55.650000px;}
.h1e_c00080{height:57.750000px;}
.h1a_c00080{height:60.900000px;}
.h12_c00080{height:63.006174px;}
.h3_c00080{height:66.150000px;}
.h6_c00080{height:68.252764px;}
.h10_c00080{height:69.305856px;}
.hf_c00080{height:70.355944px;}
.h5_c00080{height:70.360165px;}
.h11_c00080{height:71.406033px;}
.h7_c00080{height:75.603062px;}
.he_c00080{height:75.606388px;}
.h4_c00080{height:75.610923px;}
.h8_c00080{height:81.900000px;}
.hd_c00080{height:103.950000px;}
.hb_c00080{height:110.250000px;}
.h2_c00080{height:111.300000px;}
.h9_c00080{height:113.400000px;}
.ha_c00080{height:129.160913px;}
.hc_c00080{height:136.500000px;}
.h1d_c00080{height:197.400000px;}
.h1_c00080{height:1005.000000px;}
.h0_c00080{height:1005.150000px;}
.w0_c00080{width:705.450000px;}
.w1_c00080{width:705.750000px;}
.x0_c00080{left:0.000000px;}
.x27_c00080{left:94.230000px;}
.x56_c00080{left:97.740000px;}
.x68_c00080{left:100.980000px;}
.x2f_c00080{left:111.976500px;}
.x60_c00080{left:113.670000px;}
.x5c_c00080{left:119.340000px;}
.x6b_c00080{left:127.440000px;}
.x38_c00080{left:131.114557px;}
.x3c_c00080{left:132.165523px;}
.x3_c00080{left:133.326000px;}
.x2_c00080{left:134.460000px;}
.x57_c00080{left:137.430000px;}
.x4e_c00080{left:138.510000px;}
.x61_c00080{left:141.750000px;}
.x30_c00080{left:143.371500px;}
.x4f_c00080{left:147.960000px;}
.x6c_c00080{left:150.390000px;}
.x51_c00080{left:151.740000px;}
.x47_c00080{left:155.988000px;}
.x5d_c00080{left:158.490000px;}
.x50_c00080{left:162.810000px;}
.x31_c00080{left:164.881500px;}
.x63_c00080{left:166.590000px;}
.x12_c00080{left:167.794500px;}
.x3d_c00080{left:168.949966px;}
.x39_c00080{left:170.226064px;}
.xb_c00080{left:172.089832px;}
.x18_c00080{left:176.040200px;}
.x6d_c00080{left:177.660000px;}
.x2a_c00080{left:179.961000px;}
.x32_c00080{left:184.873500px;}
.x52_c00080{left:186.840000px;}
.x58_c00080{left:193.050000px;}
.x62_c00080{left:195.210000px;}
.xc_c00080{left:196.719331px;}
.x1_c00080{left:199.530000px;}
.x4_c00080{left:201.375000px;}
.x21_c00080{left:202.500000px;}
.x5e_c00080{left:206.280000px;}
.x42_c00080{left:208.939402px;}
.x64_c00080{left:212.760000px;}
.x65_c00080{left:217.350000px;}
.x5_c00080{left:218.479500px;}
.x53_c00080{left:219.780000px;}
.x19_c00080{left:221.402372px;}
.x22_c00080{left:223.830000px;}
.x28_c00080{left:226.800000px;}
.x69_c00080{left:230.580000px;}
.x3e_c00080{left:235.317060px;}
.x4d_c00080{left:237.600000px;}
.x67_c00080{left:240.840000px;}
.xd_c00080{left:242.646523px;}
.x1a_c00080{left:248.673086px;}
.x13_c00080{left:249.883500px;}
.x66_c00080{left:251.100000px;}
.x5f_c00080{left:254.880000px;}
.x6_c00080{left:256.662000px;}
.x59_c00080{left:258.930000px;}
.x3f_c00080{left:260.702554px;}
.x54_c00080{left:263.790000px;}
.x33_c00080{left:269.409000px;}
.x43_c00080{left:275.041403px;}
.x1b_c00080{left:276.213813px;}
.x6e_c00080{left:277.560000px;}
.x55_c00080{left:279.180000px;}
.x2e_c00080{left:283.230000px;}
.x5a_c00080{left:284.310000px;}
.x14_c00080{left:285.486000px;}
.x48_c00080{left:289.104000px;}
.x7_c00080{left:291.862500px;}
.x6a_c00080{left:293.760000px;}
.xe_c00080{left:296.632532px;}
.x5b_c00080{left:302.670000px;}
.x49_c00080{left:304.975500px;}
.xf_c00080{left:312.520663px;}
.x40_c00080{left:317.685277px;}
.x15_c00080{left:318.738000px;}
.x44_c00080{left:321.235402px;}
.x4a_c00080{left:327.268500px;}
.x8_c00080{left:331.569000px;}
.x34_c00080{left:336.310500px;}
.x83_c00080{left:338.040000px;}
.x2d_c00080{left:339.390000px;}
.x1c_c00080{left:344.526348px;}
.x88_c00080{left:345.870000px;}
.x9_c00080{left:347.776500px;}
.x8c_c00080{left:349.110000px;}
.x10_c00080{left:353.881371px;}
.x45_c00080{left:359.287402px;}
.x35_c00080{left:360.871500px;}
.x16_c00080{left:364.641000px;}
.x1d_c00080{left:367.476711px;}
.x23_c00080{left:370.170000px;}
.x95_c00080{left:375.300000px;}
.x41_c00080{left:377.092098px;}
.x2c_c00080{left:380.700000px;}
.xa_c00080{left:385.186500px;}
.x73_c00080{left:386.370000px;}
.x76_c00080{left:387.450000px;}
.x7b_c00080{left:388.800000px;}
.x1e_c00080{left:392.587250px;}
.x84_c00080{left:397.170000px;}
.x7a_c00080{left:400.140000px;}
.x11_c00080{left:402.207292px;}
.x36_c00080{left:403.602000px;}
.x98_c00080{left:407.430000px;}
.x4b_c00080{left:409.287000px;}
.x3a_c00080{left:412.486704px;}
.x17_c00080{left:414.274500px;}
.x46_c00080{left:415.961902px;}
.x74_c00080{left:420.120000px;}
.x99_c00080{left:421.200000px;}
.x96_c00080{left:422.280000px;}
.x6f_c00080{left:431.460000px;}
.x1f_c00080{left:433.629071px;}
.x24_c00080{left:437.130000px;}
.x8d_c00080{left:440.910000px;}
.x77_c00080{left:442.530000px;}
.x85_c00080{left:444.150000px;}
.x9a_c00080{left:448.200000px;}
.x3b_c00080{left:449.757691px;}
.x93_c00080{left:451.440000px;}
.x20_c00080{left:455.499339px;}
.x25_c00080{left:459.000000px;}
.x80_c00080{left:460.080000px;}
.x37_c00080{left:462.201000px;}
.x70_c00080{left:466.020000px;}
.x4c_c00080{left:467.446500px;}
.x86_c00080{left:476.280000px;}
.x75_c00080{left:477.900000px;}
.x89_c00080{left:481.680000px;}
.x81_c00080{left:483.030000px;}
.x7c_c00080{left:496.260000px;}
.x71_c00080{left:497.610000px;}
.x26_c00080{left:498.690000px;}
.x78_c00080{left:500.580000px;}
.x8a_c00080{left:502.740000px;}
.x82_c00080{left:512.730000px;}
.x94_c00080{left:514.620000px;}
.x87_c00080{left:519.480000px;}
.x7d_c00080{left:520.560000px;}
.x7e_c00080{left:522.990000px;}
.x79_c00080{left:527.580000px;}
.x2b_c00080{left:529.357500px;}
.x90_c00080{left:542.160000px;}
.x8e_c00080{left:550.260000px;}
.x97_c00080{left:553.770000px;}
.x72_c00080{left:557.820000px;}
.x7f_c00080{left:559.440000px;}
.x8b_c00080{left:563.220000px;}
.x29_c00080{left:579.150000px;}
.x91_c00080{left:591.030000px;}
.x8f_c00080{left:593.460000px;}
.x92_c00080{left:612.360000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
.fs19_c00080{font-size:40.133333pt;}
.fs16_c00080{font-size:42.933333pt;}
.fs11_c00080{font-size:43.866667pt;}
.fs15_c00080{font-size:44.800000pt;}
.fs12_c00080{font-size:45.733333pt;}
.fs13_c00080{font-size:46.666667pt;}
.fs17_c00080{font-size:47.600000pt;}
.fs14_c00080{font-size:48.533333pt;}
.fs1a_c00080{font-size:49.466667pt;}
.fs1c_c00080{font-size:51.333333pt;}
.fs18_c00080{font-size:54.133333pt;}
.fs10_c00080{font-size:56.005488pt;}
.fs1_c00080{font-size:58.800000pt;}
.fs4_c00080{font-size:60.669124pt;}
.fse_c00080{font-size:61.605205pt;}
.fsd_c00080{font-size:62.538617pt;}
.fs3_c00080{font-size:62.542369pt;}
.fsf_c00080{font-size:63.472029pt;}
.fs5_c00080{font-size:67.202722pt;}
.fsc_c00080{font-size:67.205678pt;}
.fs2_c00080{font-size:67.209710pt;}
.fs6_c00080{font-size:72.800000pt;}
.fsb_c00080{font-size:92.400000pt;}
.fs9_c00080{font-size:98.000000pt;}
.fs0_c00080{font-size:98.933333pt;}
.fs7_c00080{font-size:100.800000pt;}
.fs8_c00080{font-size:114.809700pt;}
.fsa_c00080{font-size:121.333333pt;}
.fs1b_c00080{font-size:175.466667pt;}
.y0_c00080{bottom:0.000000pt;}
.y63_c00080{bottom:130.312000pt;}
.y75_c00080{bottom:144.225333pt;}
.y64_c00080{bottom:145.913333pt;}
.y74_c00080{bottom:160.320000pt;}
.y62_c00080{bottom:161.149333pt;}
.y73_c00080{bottom:176.058667pt;}
.y61_c00080{bottom:177.066667pt;}
.y72_c00080{bottom:191.524000pt;}
.y60_c00080{bottom:193.100000pt;}
.y70_c00080{bottom:207.258667pt;}
.y5f_c00080{bottom:208.800000pt;}
.y6f_c00080{bottom:222.930667pt;}
.y5e_c00080{bottom:224.400000pt;}
.y6e_c00080{bottom:238.589333pt;}
.y5d_c00080{bottom:240.328000pt;}
.y6d_c00080{bottom:254.301333pt;}
.y5c_c00080{bottom:255.840000pt;}
.y5b_c00080{bottom:267.832000pt;}
.y6c_c00080{bottom:270.232000pt;}
.y5a_c00080{bottom:283.457333pt;}
.y6b_c00080{bottom:286.033333pt;}
.y59_c00080{bottom:299.490667pt;}
.y6a_c00080{bottom:301.892000pt;}
.y58_c00080{bottom:315.156000pt;}
.y69_c00080{bottom:317.754667pt;}
.y57_c00080{bottom:330.954667pt;}
.y68_c00080{bottom:333.313333pt;}
.y56_c00080{bottom:347.124000pt;}
.y67_c00080{bottom:349.597333pt;}
.y55_c00080{bottom:362.473333pt;}
.y66_c00080{bottom:364.930667pt;}
.y54_c00080{bottom:378.356000pt;}
.y65_c00080{bottom:381.073333pt;}
.y2_c00080{bottom:420.361333pt;}
.y24_c00080{bottom:421.613333pt;}
.y21_c00080{bottom:441.436401pt;}
.y22_c00080{bottom:441.436709pt;}
.y20_c00080{bottom:441.436867pt;}
.y23_c00080{bottom:441.436991pt;}
.y1d_c00080{bottom:441.437181pt;}
.y1a_c00080{bottom:441.437244pt;}
.y1f_c00080{bottom:441.437279pt;}
.y1e_c00080{bottom:441.437489pt;}
.y1b_c00080{bottom:441.437499pt;}
.y1c_c00080{bottom:441.437700pt;}
.y13_c00080{bottom:460.081333pt;}
.y14_c00080{bottom:460.355737pt;}
.y15_c00080{bottom:461.012449pt;}
.y16_c00080{bottom:461.297269pt;}
.y17_c00080{bottom:461.563285pt;}
.y18_c00080{bottom:461.930509pt;}
.y19_c00080{bottom:462.327577pt;}
.yb_c00080{bottom:480.238545pt;}
.yc_c00080{bottom:480.616017pt;}
.yd_c00080{bottom:480.857492pt;}
.ye_c00080{bottom:481.306099pt;}
.yf_c00080{bottom:481.833804pt;}
.y10_c00080{bottom:481.988533pt;}
.y11_c00080{bottom:482.393476pt;}
.y12_c00080{bottom:482.866327pt;}
.y3_c00080{bottom:499.922667pt;}
.y4_c00080{bottom:500.950963pt;}
.y5_c00080{bottom:501.209431pt;}
.y6_c00080{bottom:501.786411pt;}
.y7_c00080{bottom:502.318329pt;}
.y8_c00080{bottom:502.918339pt;}
.y9_c00080{bottom:503.163252pt;}
.ya_c00080{bottom:503.728559pt;}
.y4c_c00080{bottom:538.802667pt;}
.y4d_c00080{bottom:539.101819pt;}
.y4e_c00080{bottom:539.992461pt;}
.y4f_c00080{bottom:540.758373pt;}
.y50_c00080{bottom:540.955885pt;}
.y51_c00080{bottom:541.233309pt;}
.y52_c00080{bottom:542.253984pt;}
.y53_c00080{bottom:542.977747pt;}
.y46_c00080{bottom:559.197249pt;}
.y47_c00080{bottom:560.079655pt;}
.y48_c00080{bottom:560.843500pt;}
.y49_c00080{bottom:561.377297pt;}
.y4a_c00080{bottom:561.817009pt;}
.y4b_c00080{bottom:562.471915pt;}
.y3f_c00080{bottom:579.358564pt;}
.y40_c00080{bottom:579.684945pt;}
.y41_c00080{bottom:580.274491pt;}
.y42_c00080{bottom:580.499823pt;}
.y43_c00080{bottom:581.006264pt;}
.y44_c00080{bottom:581.173425pt;}
.y45_c00080{bottom:581.534049pt;}
.y37_c00080{bottom:598.800373pt;}
.y38_c00080{bottom:599.217656pt;}
.y39_c00080{bottom:599.728200pt;}
.y3a_c00080{bottom:600.144997pt;}
.y3b_c00080{bottom:600.444872pt;}
.y3c_c00080{bottom:601.075771pt;}
.y3d_c00080{bottom:601.802409pt;}
.y3e_c00080{bottom:602.199757pt;}
.y2d_c00080{bottom:618.962667pt;}
.y2e_c00080{bottom:619.325453pt;}
.y2f_c00080{bottom:619.574013pt;}
.y30_c00080{bottom:619.805032pt;}
.y31_c00080{bottom:620.472781pt;}
.y32_c00080{bottom:620.781887pt;}
.y33_c00080{bottom:621.554971pt;}
.y34_c00080{bottom:621.838787pt;}
.y35_c00080{bottom:622.332561pt;}
.y36_c00080{bottom:623.009705pt;}
.y2c_c00080{bottom:642.501333pt;}
.y1_c00080{bottom:677.641333pt;}
.y2b_c00080{bottom:681.346667pt;}
.y2a_c00080{bottom:713.037333pt;}
.y26_c00080{bottom:763.685333pt;}
.y27_c00080{bottom:766.135747pt;}
.y28_c00080{bottom:766.917549pt;}
.y29_c00080{bottom:767.722804pt;}
.y71_c00080{bottom:768.240000pt;}
.y25_c00080{bottom:802.305333pt;}
.h1b_c00080{height:40.133333pt;}
.h18_c00080{height:42.933333pt;}
.h13_c00080{height:43.866667pt;}
.h17_c00080{height:44.800000pt;}
.h14_c00080{height:45.733333pt;}
.h15_c00080{height:46.666667pt;}
.h19_c00080{height:47.600000pt;}
.h16_c00080{height:48.533333pt;}
.h1c_c00080{height:49.466667pt;}
.h1e_c00080{height:51.333333pt;}
.h1a_c00080{height:54.133333pt;}
.h12_c00080{height:56.005488pt;}
.h3_c00080{height:58.800000pt;}
.h6_c00080{height:60.669124pt;}
.h10_c00080{height:61.605205pt;}
.hf_c00080{height:62.538617pt;}
.h5_c00080{height:62.542369pt;}
.h11_c00080{height:63.472029pt;}
.h7_c00080{height:67.202722pt;}
.he_c00080{height:67.205678pt;}
.h4_c00080{height:67.209710pt;}
.h8_c00080{height:72.800000pt;}
.hd_c00080{height:92.400000pt;}
.hb_c00080{height:98.000000pt;}
.h2_c00080{height:98.933333pt;}
.h9_c00080{height:100.800000pt;}
.ha_c00080{height:114.809700pt;}
.hc_c00080{height:121.333333pt;}
.h1d_c00080{height:175.466667pt;}
.h1_c00080{height:893.333333pt;}
.h0_c00080{height:893.466667pt;}
.w0_c00080{width:627.066667pt;}
.w1_c00080{width:627.333333pt;}
.x0_c00080{left:0.000000pt;}
.x27_c00080{left:83.760000pt;}
.x56_c00080{left:86.880000pt;}
.x68_c00080{left:89.760000pt;}
.x2f_c00080{left:99.534667pt;}
.x60_c00080{left:101.040000pt;}
.x5c_c00080{left:106.080000pt;}
.x6b_c00080{left:113.280000pt;}
.x38_c00080{left:116.546273pt;}
.x3c_c00080{left:117.480465pt;}
.x3_c00080{left:118.512000pt;}
.x2_c00080{left:119.520000pt;}
.x57_c00080{left:122.160000pt;}
.x4e_c00080{left:123.120000pt;}
.x61_c00080{left:126.000000pt;}
.x30_c00080{left:127.441333pt;}
.x4f_c00080{left:131.520000pt;}
.x6c_c00080{left:133.680000pt;}
.x51_c00080{left:134.880000pt;}
.x47_c00080{left:138.656000pt;}
.x5d_c00080{left:140.880000pt;}
.x50_c00080{left:144.720000pt;}
.x31_c00080{left:146.561333pt;}
.x63_c00080{left:148.080000pt;}
.x12_c00080{left:149.150667pt;}
.x3d_c00080{left:150.177748pt;}
.x39_c00080{left:151.312057pt;}
.xb_c00080{left:152.968740pt;}
.x18_c00080{left:156.480177pt;}
.x6d_c00080{left:157.920000pt;}
.x2a_c00080{left:159.965333pt;}
.x32_c00080{left:164.332000pt;}
.x52_c00080{left:166.080000pt;}
.x58_c00080{left:171.600000pt;}
.x62_c00080{left:173.520000pt;}
.xc_c00080{left:174.861628pt;}
.x1_c00080{left:177.360000pt;}
.x4_c00080{left:179.000000pt;}
.x21_c00080{left:180.000000pt;}
.x5e_c00080{left:183.360000pt;}
.x42_c00080{left:185.723913pt;}
.x64_c00080{left:189.120000pt;}
.x65_c00080{left:193.200000pt;}
.x5_c00080{left:194.204000pt;}
.x53_c00080{left:195.360000pt;}
.x19_c00080{left:196.802108pt;}
.x22_c00080{left:198.960000pt;}
.x28_c00080{left:201.600000pt;}
.x69_c00080{left:204.960000pt;}
.x3e_c00080{left:209.170720pt;}
.x4d_c00080{left:211.200000pt;}
.x67_c00080{left:214.080000pt;}
.xd_c00080{left:215.685799pt;}
.x1a_c00080{left:221.042743pt;}
.x13_c00080{left:222.118667pt;}
.x66_c00080{left:223.200000pt;}
.x5f_c00080{left:226.560000pt;}
.x6_c00080{left:228.144000pt;}
.x59_c00080{left:230.160000pt;}
.x3f_c00080{left:231.735604pt;}
.x54_c00080{left:234.480000pt;}
.x33_c00080{left:239.474667pt;}
.x43_c00080{left:244.481247pt;}
.x1b_c00080{left:245.523389pt;}
.x6e_c00080{left:246.720000pt;}
.x55_c00080{left:248.160000pt;}
.x2e_c00080{left:251.760000pt;}
.x5a_c00080{left:252.720000pt;}
.x14_c00080{left:253.765333pt;}
.x48_c00080{left:256.981333pt;}
.x7_c00080{left:259.433333pt;}
.x6a_c00080{left:261.120000pt;}
.xe_c00080{left:263.673361pt;}
.x5b_c00080{left:269.040000pt;}
.x49_c00080{left:271.089333pt;}
.xf_c00080{left:277.796145pt;}
.x40_c00080{left:282.386913pt;}
.x15_c00080{left:283.322667pt;}
.x44_c00080{left:285.542580pt;}
.x4a_c00080{left:290.905333pt;}
.x8_c00080{left:294.728000pt;}
.x34_c00080{left:298.942667pt;}
.x83_c00080{left:300.480000pt;}
.x2d_c00080{left:301.680000pt;}
.x1c_c00080{left:306.245643pt;}
.x88_c00080{left:307.440000pt;}
.x9_c00080{left:309.134667pt;}
.x8c_c00080{left:310.320000pt;}
.x10_c00080{left:314.561219pt;}
.x45_c00080{left:319.366580pt;}
.x35_c00080{left:320.774667pt;}
.x16_c00080{left:324.125333pt;}
.x1d_c00080{left:326.645965pt;}
.x23_c00080{left:329.040000pt;}
.x95_c00080{left:333.600000pt;}
.x41_c00080{left:335.192976pt;}
.x2c_c00080{left:338.400000pt;}
.xa_c00080{left:342.388000pt;}
.x73_c00080{left:343.440000pt;}
.x76_c00080{left:344.400000pt;}
.x7b_c00080{left:345.600000pt;}
.x1e_c00080{left:348.966444pt;}
.x84_c00080{left:353.040000pt;}
.x7a_c00080{left:355.680000pt;}
.x11_c00080{left:357.517593pt;}
.x36_c00080{left:358.757333pt;}
.x98_c00080{left:362.160000pt;}
.x4b_c00080{left:363.810667pt;}
.x3a_c00080{left:366.654848pt;}
.x17_c00080{left:368.244000pt;}
.x46_c00080{left:369.743913pt;}
.x74_c00080{left:373.440000pt;}
.x99_c00080{left:374.400000pt;}
.x96_c00080{left:375.360000pt;}
.x6f_c00080{left:383.520000pt;}
.x1f_c00080{left:385.448063pt;}
.x24_c00080{left:388.560000pt;}
.x8d_c00080{left:391.920000pt;}
.x77_c00080{left:393.360000pt;}
.x85_c00080{left:394.800000pt;}
.x9a_c00080{left:398.400000pt;}
.x3b_c00080{left:399.784615pt;}
.x93_c00080{left:401.280000pt;}
.x20_c00080{left:404.888301pt;}
.x25_c00080{left:408.000000pt;}
.x80_c00080{left:408.960000pt;}
.x37_c00080{left:410.845333pt;}
.x70_c00080{left:414.240000pt;}
.x4c_c00080{left:415.508000pt;}
.x86_c00080{left:423.360000pt;}
.x75_c00080{left:424.800000pt;}
.x89_c00080{left:428.160000pt;}
.x81_c00080{left:429.360000pt;}
.x7c_c00080{left:441.120000pt;}
.x71_c00080{left:442.320000pt;}
.x26_c00080{left:443.280000pt;}
.x78_c00080{left:444.960000pt;}
.x8a_c00080{left:446.880000pt;}
.x82_c00080{left:455.760000pt;}
.x94_c00080{left:457.440000pt;}
.x87_c00080{left:461.760000pt;}
.x7d_c00080{left:462.720000pt;}
.x7e_c00080{left:464.880000pt;}
.x79_c00080{left:468.960000pt;}
.x2b_c00080{left:470.540000pt;}
.x90_c00080{left:481.920000pt;}
.x8e_c00080{left:489.120000pt;}
.x97_c00080{left:492.240000pt;}
.x72_c00080{left:495.840000pt;}
.x7f_c00080{left:497.280000pt;}
.x8b_c00080{left:500.640000pt;}
.x29_c00080{left:514.800000pt;}
.x91_c00080{left:525.360000pt;}
.x8f_c00080{left:527.520000pt;}
.x92_c00080{left:544.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.me8_c00081{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);}
.mca_c00081{transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00081{transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);}
.mdc_c00081{transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);}
.mb7_c00081{transform:matrix(0.122815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122815,0.000000,0.000000,0.250000,0,0);}
.m29_c00081{transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137470,0.000000,0.000000,0.250000,0,0);}
.m43_c00081{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);}
.mc3_c00081{transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);}
.m51_c00081{transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);}
.mee_c00081{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);}
.m2c_c00081{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.m20_c00081{transform:matrix(0.150519,-0.001355,0.002250,0.249990,0,0);-ms-transform:matrix(0.150519,-0.001355,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150519,-0.001355,0.002250,0.249990,0,0);}
.mc6_c00081{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);}
.m98_c00081{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);}
.ma8_c00081{transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);}
.mb9_c00081{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);}
.mf_c00081{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.meb_c00081{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);}
.ma1_c00081{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);}
.mcc_c00081{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);}
.m1d_c00081{transform:matrix(0.154154,-0.001387,0.002250,0.249990,0,0);-ms-transform:matrix(0.154154,-0.001387,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154154,-0.001387,0.002250,0.249990,0,0);}
.m3d_c00081{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);}
.mc1_c00081{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);}
.mc8_c00081{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);}
.mec_c00081{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);}
.m24_c00081{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);}
.md5_c00081{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);}
.m80_c00081{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);}
.m93_c00081{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_c00081{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);}
.m94_c00081{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);}
.m95_c00081{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);}
.m2d_c00081{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);}
.ma7_c00081{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);}
.m40_c00081{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);}
.mbf_c00081{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);}
.m1c_c00081{transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);-ms-transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);}
.mc_c00081{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);}
.mb_c00081{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);}
.m27_c00081{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);}
.m49_c00081{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);}
.mdf_c00081{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);}
.m6_c00081{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);}
.m42_c00081{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);}
.m37_c00081{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);}
.m9c_c00081{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.m41_c00081{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);}
.m67_c00081{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);}
.m30_c00081{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);}
.m96_c00081{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.m2f_c00081{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);}
.mb3_c00081{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);}
.mb8_c00081{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);}
.mad_c00081{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);}
.m18_c00081{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);}
.m36_c00081{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);}
.m4b_c00081{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);}
.m78_c00081{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);}
.m16_c00081{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);}
.mbc_c00081{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);}
.mda_c00081{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);}
.mb5_c00081{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);}
.m15_c00081{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);}
.ma4_c00081{transform:matrix(0.175990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175990,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{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);}
.m71_c00081{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);}
.m19_c00081{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);}
.ma2_c00081{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);}
.mea_c00081{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);}
.m79_c00081{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);}
.m4c_c00081{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);}
.m10_c00081{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);}
.mbd_c00081{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);}
.m33_c00081{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);}
.m74_c00081{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);}
.m48_c00081{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.m77_c00081{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);}
.m11_c00081{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);}
.m4f_c00081{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);}
.m5_c00081{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);}
.m17_c00081{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);}
.m52_c00081{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);}
.m2e_c00081{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m90_c00081{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);}
.mde_c00081{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);}
.m55_c00081{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);}
.mb4_c00081{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);}
.m85_c00081{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);}
.m3a_c00081{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);}
.m26_c00081{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);}
.m84_c00081{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);}
.m3e_c00081{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);}
.m38_c00081{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);}
.m4e_c00081{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);}
.m4a_c00081{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);}
.m76_c00081{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);}
.m2b_c00081{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);}
.ma9_c00081{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);}
.m2a_c00081{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);}
.mc9_c00081{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);}
.m58_c00081{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);}
.m14_c00081{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);}
.m92_c00081{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);}
.m31_c00081{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);}
.m13_c00081{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);}
.mc4_c00081{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);}
.m69_c00081{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);}
.m6b_c00081{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);}
.m7c_c00081{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);}
.m53_c00081{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);}
.m61_c00081{transform:matrix(0.190007,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.190007,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190007,-0.001710,0.002250,0.249990,0,0);}
.m9f_c00081{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);}
.md0_c00081{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);}
.m50_c00081{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);}
.m8c_c00081{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);}
.m56_c00081{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);}
.mb1_c00081{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);}
.m99_c00081{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);}
.mf0_c00081{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_c00081{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);}
.m8b_c00081{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);}
.ma6_c00081{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);}
.m57_c00081{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);}
.m9_c00081{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);}
.m28_c00081{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);}
.mce_c00081{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);}
.m6f_c00081{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);}
.m8e_c00081{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);}
.m44_c00081{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);}
.m66_c00081{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);}
.m47_c00081{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);}
.m46_c00081{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);}
.md6_c00081{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);}
.m25_c00081{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);}
.me6_c00081{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);}
.m82_c00081{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);}
.mef_c00081{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);}
.m72_c00081{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);}
.m12_c00081{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);}
.mc7_c00081{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);}
.m6a_c00081{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);}
.mcf_c00081{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m7f_c00081{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);}
.m4d_c00081{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);}
.mdb_c00081{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);}
.me5_c00081{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);}
.m1e_c00081{transform:matrix(0.201477,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201477,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201477,-0.001813,0.002250,0.249990,0,0);}
.ma_c00081{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);}
.m7b_c00081{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);}
.me4_c00081{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);}
.m8f_c00081{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);}
.md9_c00081{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);}
.m34_c00081{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);}
.m83_c00081{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);}
.mab_c00081{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);}
.md2_c00081{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);}
.m65_c00081{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);}
.m8a_c00081{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_c00081{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);}
.mae_c00081{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);}
.me1_c00081{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);}
.m22_c00081{transform:matrix(0.205007,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205007,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205007,-0.001845,0.002250,0.249990,0,0);}
.m6c_c00081{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);}
.mcd_c00081{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);}
.m9a_c00081{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);}
.md8_c00081{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);}
.m97_c00081{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);}
.med_c00081{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);}
.md7_c00081{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);}
.m9b_c00081{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);}
.mbe_c00081{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);}
.mba_c00081{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);}
.mb6_c00081{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);}
.m5e_c00081{transform:matrix(0.211936,-0.001907,0.002250,0.249990,0,0);-ms-transform:matrix(0.211936,-0.001907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211936,-0.001907,0.002250,0.249990,0,0);}
.m6e_c00081{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);}
.me3_c00081{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);}
.me7_c00081{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);}
.m32_c00081{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);}
.ma0_c00081{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);}
.m62_c00081{transform:matrix(0.214596,-0.001931,0.002250,0.249990,0,0);-ms-transform:matrix(0.214596,-0.001931,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214596,-0.001931,0.002250,0.249990,0,0);}
.m21_c00081{transform:matrix(0.214816,-0.001933,0.002250,0.249990,0,0);-ms-transform:matrix(0.214816,-0.001933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214816,-0.001933,0.002250,0.249990,0,0);}
.m3c_c00081{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);}
.mac_c00081{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);}
.mc0_c00081{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);}
.m39_c00081{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);}
.m1b_c00081{transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);-ms-transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);}
.m54_c00081{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);}
.md_c00081{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);}
.m9d_c00081{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);}
.m3b_c00081{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);}
.m5a_c00081{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);}
.me0_c00081{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);}
.m68_c00081{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);}
.mb0_c00081{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);}
.m64_c00081{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);}
.m70_c00081{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);}
.m73_c00081{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);}
.m86_c00081{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);}
.mc5_c00081{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);}
.m7a_c00081{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);}
.m81_c00081{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);}
.me9_c00081{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);}
.m8d_c00081{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);}
.m23_c00081{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);}
.m75_c00081{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);}
.m35_c00081{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);}
.me2_c00081{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);}
.m4_c00081{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);}
.m9e_c00081{transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);}
.mdd_c00081{transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m3f_c00081{transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);}
.ma3_c00081{transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);}
.md1_c00081{transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);}
.mbb_c00081{transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);}
.m1f_c00081{transform:matrix(0.247085,-0.002224,0.002250,0.249990,0,0);-ms-transform:matrix(0.247085,-0.002224,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247085,-0.002224,0.002250,0.249990,0,0);}
.m5d_c00081{transform:matrix(0.247090,-0.002224,0.002250,0.249990,0,0);-ms-transform:matrix(0.247090,-0.002224,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247090,-0.002224,0.002250,0.249990,0,0);}
.m63_c00081{transform:matrix(0.249575,-0.002246,0.002250,0.249990,0,0);-ms-transform:matrix(0.249575,-0.002246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249575,-0.002246,0.002250,0.249990,0,0);}
.m91_c00081{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);}
.ma5_c00081{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);}
.maf_c00081{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);}
.md4_c00081{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.m59_c00081{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);}
.m2_c00081{transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);}
.mcb_c00081{transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00081{transform:matrix(0.264284,-0.002379,0.002250,0.249990,0,0);-ms-transform:matrix(0.264284,-0.002379,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264284,-0.002379,0.002250,0.249990,0,0);}
.m89_c00081{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.maa_c00081{transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);}
.m60_c00081{transform:matrix(0.284823,-0.002563,0.002250,0.249990,0,0);-ms-transform:matrix(0.284823,-0.002563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284823,-0.002563,0.002250,0.249990,0,0);}
.mc2_c00081{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296490,0.000000,0.000000,0.250000,0,0);}
.m5b_c00081{transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297225,0.000000,0.000000,0.250000,0,0);}
.m5c_c00081{transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319245,0.000000,0.000000,0.250000,0,0);}
.m87_c00081{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);}
.md3_c00081{transform:matrix(0.326565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326565,0.000000,0.000000,0.250000,0,0);}
.m7e_c00081{transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401605,0.000000,0.000000,0.250000,0,0);}
.m88_c00081{transform:matrix(0.433850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433850,0.000000,0.000000,0.250000,0,0);}
.m7d_c00081{transform:matrix(0.667740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667740,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(1.062610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062610,0.000000,0.000000,0.250000,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;}
.fs2_c00081{font-size:19.950000px;}
.fs3_c00081{font-size:29.400000px;}
.fs0_c00081{font-size:46.200000px;}
.fs9_c00081{font-size:60.900000px;}
.fsa_c00081{font-size:61.952509px;}
.fsb_c00081{font-size:65.100000px;}
.fs8_c00081{font-size:67.200000px;}
.fsd_c00081{font-size:68.250000px;}
.fsc_c00081{font-size:69.300000px;}
.fsf_c00081{font-size:70.350000px;}
.fs7_c00081{font-size:70.352849px;}
.fs4_c00081{font-size:71.400000px;}
.fs5_c00081{font-size:72.450000px;}
.fs6_c00081{font-size:73.500000px;}
.fse_c00081{font-size:74.550000px;}
.fs1_c00081{font-size:127.050000px;}
.y0_c00081{bottom:0.000000px;}
.y2f_c00081{bottom:149.917500px;}
.y2e_c00081{bottom:173.148000px;}
.y2d_c00081{bottom:195.900000px;}
.y2c_c00081{bottom:219.502500px;}
.y2b_c00081{bottom:242.290500px;}
.y2a_c00081{bottom:265.446000px;}
.y29_c00081{bottom:288.706500px;}
.y28_c00081{bottom:311.901000px;}
.y27_c00081{bottom:335.524500px;}
.y26_c00081{bottom:358.236000px;}
.y25_c00081{bottom:381.559500px;}
.y24_c00081{bottom:404.256000px;}
.y23_c00081{bottom:427.533000px;}
.y22_c00081{bottom:450.559500px;}
.y21_c00081{bottom:474.160500px;}
.y20_c00081{bottom:496.962000px;}
.y1f_c00081{bottom:519.649500px;}
.y18_c00081{bottom:541.081500px;}
.y19_c00081{bottom:541.499514px;}
.y1a_c00081{bottom:541.650228px;}
.y1b_c00081{bottom:542.192334px;}
.y1c_c00081{bottom:542.860597px;}
.y1d_c00081{bottom:543.331774px;}
.y1e_c00081{bottom:543.744874px;}
.y17_c00081{bottom:565.651500px;}
.y16_c00081{bottom:588.868500px;}
.y15_c00081{bottom:610.809000px;}
.y14_c00081{bottom:633.874500px;}
.y13_c00081{bottom:656.830500px;}
.y12_c00081{bottom:679.437000px;}
.y11_c00081{bottom:702.735000px;}
.y10_c00081{bottom:725.473500px;}
.y8_c00081{bottom:747.361500px;}
.y9_c00081{bottom:747.932266px;}
.ya_c00081{bottom:748.216604px;}
.yb_c00081{bottom:748.576513px;}
.yc_c00081{bottom:749.164533px;}
.yd_c00081{bottom:749.373176px;}
.ye_c00081{bottom:749.587528px;}
.yf_c00081{bottom:750.178302px;}
.y7_c00081{bottom:771.387000px;}
.y6_c00081{bottom:794.277000px;}
.y5_c00081{bottom:816.682500px;}
.y4_c00081{bottom:882.495000px;}
.y3_c00081{bottom:894.510000px;}
.y2_c00081{bottom:902.977500px;}
.y1_c00081{bottom:925.020000px;}
.h4_c00081{height:19.950000px;}
.h5_c00081{height:29.400000px;}
.h2_c00081{height:46.200000px;}
.hb_c00081{height:60.900000px;}
.hc_c00081{height:61.952509px;}
.hd_c00081{height:65.100000px;}
.ha_c00081{height:67.200000px;}
.hf_c00081{height:68.250000px;}
.he_c00081{height:69.300000px;}
.h11_c00081{height:70.350000px;}
.h9_c00081{height:70.352849px;}
.h6_c00081{height:71.400000px;}
.h7_c00081{height:72.450000px;}
.h8_c00081{height:73.500000px;}
.h10_c00081{height:74.550000px;}
.h3_c00081{height:127.050000px;}
.h0_c00081{height:1008.450000px;}
.h1_c00081{height:1008.750000px;}
.w0_c00081{width:711.720000px;}
.w1_c00081{width:711.750000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:108.540000px;}
.x3_c00081{left:109.620000px;}
.x4_c00081{left:116.910000px;}
.x6a_c00081{left:191.700000px;}
.x66_c00081{left:194.670000px;}
.x5_c00081{left:197.100000px;}
.x22_c00081{left:199.260000px;}
.x12_c00081{left:200.340000px;}
.x5e_c00081{left:218.430000px;}
.x6e_c00081{left:220.050000px;}
.x38_c00081{left:223.560000px;}
.x67_c00081{left:224.910000px;}
.x30_c00081{left:227.610000px;}
.x47_c00081{left:228.690000px;}
.x23_c00081{left:230.310000px;}
.x27_c00081{left:232.470000px;}
.xb_c00081{left:234.630000px;}
.x1_c00081{left:235.710000px;}
.x6_c00081{left:237.330000px;}
.x72_c00081{left:240.300000px;}
.x51_c00081{left:241.380000px;}
.x43_c00081{left:244.474500px;}
.x13_c00081{left:245.970000px;}
.x3f_c00081{left:247.050000px;}
.x6b_c00081{left:250.290000px;}
.x61_c00081{left:251.910000px;}
.x28_c00081{left:256.770000px;}
.x44_c00081{left:261.220500px;}
.x1b_c00081{left:262.800000px;}
.x4a_c00081{left:264.600000px;}
.x73_c00081{left:265.680000px;}
.x40_c00081{left:270.270000px;}
.x14_c00081{left:272.160000px;}
.x83_c00081{left:274.050000px;}
.xc_c00081{left:275.400000px;}
.x62_c00081{left:277.020000px;}
.x59_c00081{left:278.370000px;}
.x52_c00081{left:279.450000px;}
.x39_c00081{left:288.900000px;}
.x48_c00081{left:290.520000px;}
.x1c_c00081{left:294.393000px;}
.x29_c00081{left:297.810000px;}
.x3b_c00081{left:303.210000px;}
.x77_c00081{left:305.640000px;}
.x15_c00081{left:311.310000px;}
.x5a_c00081{left:312.930000px;}
.x7_c00081{left:314.010000px;}
.x4b_c00081{left:315.630000px;}
.x7f_c00081{left:318.330000px;}
.x2c_c00081{left:320.220000px;}
.x45_c00081{left:321.454500px;}
.x53_c00081{left:322.920000px;}
.xd_c00081{left:327.780000px;}
.x24_c00081{left:329.670000px;}
.x16_c00081{left:331.290000px;}
.x1d_c00081{left:334.383000px;}
.x31_c00081{left:339.120000px;}
.x54_c00081{left:342.630000px;}
.x5b_c00081{left:348.840000px;}
.x2a_c00081{left:351.000000px;}
.x34_c00081{left:352.620000px;}
.x8_c00081{left:355.050000px;}
.x4e_c00081{left:357.480000px;}
.x63_c00081{left:360.720000px;}
.x6f_c00081{left:363.420000px;}
.x84_c00081{left:369.360000px;}
.x32_c00081{left:370.710000px;}
.x78_c00081{left:372.060000px;}
.x6c_c00081{left:373.140000px;}
.x2d_c00081{left:375.840000px;}
.xe_c00081{left:376.920000px;}
.x58_c00081{left:378.270000px;}
.x70_c00081{left:380.970000px;}
.x9_c00081{left:383.400000px;}
.x17_c00081{left:385.830000px;}
.x35_c00081{left:390.150000px;}
.x3c_c00081{left:392.310000px;}
.xf_c00081{left:394.470000px;}
.x46_c00081{left:395.706000px;}
.x2e_c00081{left:397.440000px;}
.x4f_c00081{left:398.520000px;}
.x1e_c00081{left:399.718500px;}
.x68_c00081{left:401.760000px;}
.x7c_c00081{left:403.380000px;}
.x74_c00081{left:405.000000px;}
.x64_c00081{left:406.080000px;}
.x5f_c00081{left:409.050000px;}
.x25_c00081{left:412.560000px;}
.x33_c00081{left:413.640000px;}
.x36_c00081{left:417.960000px;}
.x3d_c00081{left:420.390000px;}
.x41_c00081{left:421.470000px;}
.x1f_c00081{left:422.901000px;}
.x18_c00081{left:426.870000px;}
.x4c_c00081{left:428.220000px;}
.x69_c00081{left:429.840000px;}
.xa_c00081{left:433.350000px;}
.x2b_c00081{left:435.780000px;}
.x10_c00081{left:437.400000px;}
.x80_c00081{left:440.370000px;}
.x79_c00081{left:442.800000px;}
.x49_c00081{left:445.230000px;}
.x20_c00081{left:446.718000px;}
.x3a_c00081{left:447.930000px;}
.x6d_c00081{left:450.360000px;}
.x71_c00081{left:451.440000px;}
.x81_c00081{left:463.050000px;}
.x65_c00081{left:467.910000px;}
.x19_c00081{left:468.990000px;}
.x3e_c00081{left:477.360000px;}
.x75_c00081{left:482.760000px;}
.x37_c00081{left:484.380000px;}
.x60_c00081{left:485.730000px;}
.x1a_c00081{left:487.620000px;}
.x2f_c00081{left:491.400000px;}
.x11_c00081{left:494.640000px;}
.x5c_c00081{left:496.530000px;}
.x76_c00081{left:505.710000px;}
.x7a_c00081{left:506.790000px;}
.x26_c00081{left:510.300000px;}
.x21_c00081{left:512.359500px;}
.x7d_c00081{left:514.350000px;}
.x50_c00081{left:524.340000px;}
.x5d_c00081{left:525.960000px;}
.x42_c00081{left:528.930000px;}
.x55_c00081{left:530.550000px;}
.x4d_c00081{left:532.170000px;}
.x7b_c00081{left:546.210000px;}
.x56_c00081{left:552.960000px;}
.x82_c00081{left:573.480000px;}
.x7e_c00081{left:575.640000px;}
.x57_c00081{left:596.970000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
.fs2_c00081{font-size:17.733333pt;}
.fs3_c00081{font-size:26.133333pt;}
.fs0_c00081{font-size:41.066667pt;}
.fs9_c00081{font-size:54.133333pt;}
.fsa_c00081{font-size:55.068897pt;}
.fsb_c00081{font-size:57.866667pt;}
.fs8_c00081{font-size:59.733333pt;}
.fsd_c00081{font-size:60.666667pt;}
.fsc_c00081{font-size:61.600000pt;}
.fsf_c00081{font-size:62.533333pt;}
.fs7_c00081{font-size:62.535866pt;}
.fs4_c00081{font-size:63.466667pt;}
.fs5_c00081{font-size:64.400000pt;}
.fs6_c00081{font-size:65.333333pt;}
.fse_c00081{font-size:66.266667pt;}
.fs1_c00081{font-size:112.933333pt;}
.y0_c00081{bottom:0.000000pt;}
.y2f_c00081{bottom:133.260000pt;}
.y2e_c00081{bottom:153.909333pt;}
.y2d_c00081{bottom:174.133333pt;}
.y2c_c00081{bottom:195.113333pt;}
.y2b_c00081{bottom:215.369333pt;}
.y2a_c00081{bottom:235.952000pt;}
.y29_c00081{bottom:256.628000pt;}
.y28_c00081{bottom:277.245333pt;}
.y27_c00081{bottom:298.244000pt;}
.y26_c00081{bottom:318.432000pt;}
.y25_c00081{bottom:339.164000pt;}
.y24_c00081{bottom:359.338667pt;}
.y23_c00081{bottom:380.029333pt;}
.y22_c00081{bottom:400.497333pt;}
.y21_c00081{bottom:421.476000pt;}
.y20_c00081{bottom:441.744000pt;}
.y1f_c00081{bottom:461.910667pt;}
.y18_c00081{bottom:480.961333pt;}
.y19_c00081{bottom:481.332901pt;}
.y1a_c00081{bottom:481.466869pt;}
.y1b_c00081{bottom:481.948741pt;}
.y1c_c00081{bottom:482.542753pt;}
.y1d_c00081{bottom:482.961577pt;}
.y1e_c00081{bottom:483.328777pt;}
.y17_c00081{bottom:502.801333pt;}
.y16_c00081{bottom:523.438667pt;}
.y15_c00081{bottom:542.941333pt;}
.y14_c00081{bottom:563.444000pt;}
.y13_c00081{bottom:583.849333pt;}
.y12_c00081{bottom:603.944000pt;}
.y11_c00081{bottom:624.653333pt;}
.y10_c00081{bottom:644.865333pt;}
.y8_c00081{bottom:664.321333pt;}
.y9_c00081{bottom:664.828681pt;}
.ya_c00081{bottom:665.081425pt;}
.yb_c00081{bottom:665.401345pt;}
.yc_c00081{bottom:665.924029pt;}
.yd_c00081{bottom:666.109489pt;}
.ye_c00081{bottom:666.300025pt;}
.yf_c00081{bottom:666.825157pt;}
.y7_c00081{bottom:685.677333pt;}
.y6_c00081{bottom:706.024000pt;}
.y5_c00081{bottom:725.940000pt;}
.y4_c00081{bottom:784.440000pt;}
.y3_c00081{bottom:795.120000pt;}
.y2_c00081{bottom:802.646667pt;}
.y1_c00081{bottom:822.240000pt;}
.h4_c00081{height:17.733333pt;}
.h5_c00081{height:26.133333pt;}
.h2_c00081{height:41.066667pt;}
.hb_c00081{height:54.133333pt;}
.hc_c00081{height:55.068897pt;}
.hd_c00081{height:57.866667pt;}
.ha_c00081{height:59.733333pt;}
.hf_c00081{height:60.666667pt;}
.he_c00081{height:61.600000pt;}
.h11_c00081{height:62.533333pt;}
.h9_c00081{height:62.535866pt;}
.h6_c00081{height:63.466667pt;}
.h7_c00081{height:64.400000pt;}
.h8_c00081{height:65.333333pt;}
.h10_c00081{height:66.266667pt;}
.h3_c00081{height:112.933333pt;}
.h0_c00081{height:896.400000pt;}
.h1_c00081{height:896.666667pt;}
.w0_c00081{width:632.640000pt;}
.w1_c00081{width:632.666667pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:96.480000pt;}
.x3_c00081{left:97.440000pt;}
.x4_c00081{left:103.920000pt;}
.x6a_c00081{left:170.400000pt;}
.x66_c00081{left:173.040000pt;}
.x5_c00081{left:175.200000pt;}
.x22_c00081{left:177.120000pt;}
.x12_c00081{left:178.080000pt;}
.x5e_c00081{left:194.160000pt;}
.x6e_c00081{left:195.600000pt;}
.x38_c00081{left:198.720000pt;}
.x67_c00081{left:199.920000pt;}
.x30_c00081{left:202.320000pt;}
.x47_c00081{left:203.280000pt;}
.x23_c00081{left:204.720000pt;}
.x27_c00081{left:206.640000pt;}
.xb_c00081{left:208.560000pt;}
.x1_c00081{left:209.520000pt;}
.x6_c00081{left:210.960000pt;}
.x72_c00081{left:213.600000pt;}
.x51_c00081{left:214.560000pt;}
.x43_c00081{left:217.310667pt;}
.x13_c00081{left:218.640000pt;}
.x3f_c00081{left:219.600000pt;}
.x6b_c00081{left:222.480000pt;}
.x61_c00081{left:223.920000pt;}
.x28_c00081{left:228.240000pt;}
.x44_c00081{left:232.196000pt;}
.x1b_c00081{left:233.600000pt;}
.x4a_c00081{left:235.200000pt;}
.x73_c00081{left:236.160000pt;}
.x40_c00081{left:240.240000pt;}
.x14_c00081{left:241.920000pt;}
.x83_c00081{left:243.600000pt;}
.xc_c00081{left:244.800000pt;}
.x62_c00081{left:246.240000pt;}
.x59_c00081{left:247.440000pt;}
.x52_c00081{left:248.400000pt;}
.x39_c00081{left:256.800000pt;}
.x48_c00081{left:258.240000pt;}
.x1c_c00081{left:261.682667pt;}
.x29_c00081{left:264.720000pt;}
.x3b_c00081{left:269.520000pt;}
.x77_c00081{left:271.680000pt;}
.x15_c00081{left:276.720000pt;}
.x5a_c00081{left:278.160000pt;}
.x7_c00081{left:279.120000pt;}
.x4b_c00081{left:280.560000pt;}
.x7f_c00081{left:282.960000pt;}
.x2c_c00081{left:284.640000pt;}
.x45_c00081{left:285.737333pt;}
.x53_c00081{left:287.040000pt;}
.xd_c00081{left:291.360000pt;}
.x24_c00081{left:293.040000pt;}
.x16_c00081{left:294.480000pt;}
.x1d_c00081{left:297.229333pt;}
.x31_c00081{left:301.440000pt;}
.x54_c00081{left:304.560000pt;}
.x5b_c00081{left:310.080000pt;}
.x2a_c00081{left:312.000000pt;}
.x34_c00081{left:313.440000pt;}
.x8_c00081{left:315.600000pt;}
.x4e_c00081{left:317.760000pt;}
.x63_c00081{left:320.640000pt;}
.x6f_c00081{left:323.040000pt;}
.x84_c00081{left:328.320000pt;}
.x32_c00081{left:329.520000pt;}
.x78_c00081{left:330.720000pt;}
.x6c_c00081{left:331.680000pt;}
.x2d_c00081{left:334.080000pt;}
.xe_c00081{left:335.040000pt;}
.x58_c00081{left:336.240000pt;}
.x70_c00081{left:338.640000pt;}
.x9_c00081{left:340.800000pt;}
.x17_c00081{left:342.960000pt;}
.x35_c00081{left:346.800000pt;}
.x3c_c00081{left:348.720000pt;}
.xf_c00081{left:350.640000pt;}
.x46_c00081{left:351.738667pt;}
.x2e_c00081{left:353.280000pt;}
.x4f_c00081{left:354.240000pt;}
.x1e_c00081{left:355.305333pt;}
.x68_c00081{left:357.120000pt;}
.x7c_c00081{left:358.560000pt;}
.x74_c00081{left:360.000000pt;}
.x64_c00081{left:360.960000pt;}
.x5f_c00081{left:363.600000pt;}
.x25_c00081{left:366.720000pt;}
.x33_c00081{left:367.680000pt;}
.x36_c00081{left:371.520000pt;}
.x3d_c00081{left:373.680000pt;}
.x41_c00081{left:374.640000pt;}
.x1f_c00081{left:375.912000pt;}
.x18_c00081{left:379.440000pt;}
.x4c_c00081{left:380.640000pt;}
.x69_c00081{left:382.080000pt;}
.xa_c00081{left:385.200000pt;}
.x2b_c00081{left:387.360000pt;}
.x10_c00081{left:388.800000pt;}
.x80_c00081{left:391.440000pt;}
.x79_c00081{left:393.600000pt;}
.x49_c00081{left:395.760000pt;}
.x20_c00081{left:397.082667pt;}
.x3a_c00081{left:398.160000pt;}
.x6d_c00081{left:400.320000pt;}
.x71_c00081{left:401.280000pt;}
.x81_c00081{left:411.600000pt;}
.x65_c00081{left:415.920000pt;}
.x19_c00081{left:416.880000pt;}
.x3e_c00081{left:424.320000pt;}
.x75_c00081{left:429.120000pt;}
.x37_c00081{left:430.560000pt;}
.x60_c00081{left:431.760000pt;}
.x1a_c00081{left:433.440000pt;}
.x2f_c00081{left:436.800000pt;}
.x11_c00081{left:439.680000pt;}
.x5c_c00081{left:441.360000pt;}
.x76_c00081{left:449.520000pt;}
.x7a_c00081{left:450.480000pt;}
.x26_c00081{left:453.600000pt;}
.x21_c00081{left:455.430667pt;}
.x7d_c00081{left:457.200000pt;}
.x50_c00081{left:466.080000pt;}
.x5d_c00081{left:467.520000pt;}
.x42_c00081{left:470.160000pt;}
.x55_c00081{left:471.600000pt;}
.x4d_c00081{left:473.040000pt;}
.x7b_c00081{left:485.520000pt;}
.x56_c00081{left:491.520000pt;}
.x82_c00081{left:509.760000pt;}
.x7e_c00081{left:511.680000pt;}
.x57_c00081{left:530.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_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_ef4e99a7aa2876b3106553d3.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;}
.m93_c00082{transform:matrix(0.004544,0.000082,-0.004499,0.249960,0,0);-ms-transform:matrix(0.004544,0.000082,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.004544,0.000082,-0.004499,0.249960,0,0);}
.md5_c00082{transform:matrix(0.010838,0.000184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.010838,0.000184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.010838,0.000184,-0.004249,0.249964,0,0);}
.m66_c00082{transform:matrix(0.011138,0.000189,-0.004249,0.249964,0,0);-ms-transform:matrix(0.011138,0.000189,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.011138,0.000189,-0.004249,0.249964,0,0);}
.mdc_c00082{transform:matrix(0.014018,0.000252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.014018,0.000252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.014018,0.000252,-0.004499,0.249960,0,0);}
.mbc_c00082{transform:matrix(0.032634,0.000620,-0.004749,0.249955,0,0);-ms-transform:matrix(0.032634,0.000620,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.032634,0.000620,-0.004749,0.249955,0,0);}
.m1a_c00082{transform:matrix(0.046157,0.000508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.046157,0.000508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.046157,0.000508,-0.002750,0.249985,0,0);}
.m1b_c00082{transform:matrix(0.046277,0.000509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.046277,0.000509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.046277,0.000509,-0.002750,0.249985,0,0);}
.mbb_c00082{transform:matrix(0.051446,0.000977,-0.004749,0.249955,0,0);-ms-transform:matrix(0.051446,0.000977,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.051446,0.000977,-0.004749,0.249955,0,0);}
.mcd_c00082{transform:matrix(0.057205,0.001087,-0.004749,0.249955,0,0);-ms-transform:matrix(0.057205,0.001087,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.057205,0.001087,-0.004749,0.249955,0,0);}
.m65_c00082{transform:matrix(0.059070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059070,0.000000,0.000000,0.250000,0,0);}
.m4f_c00082{transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);}
.mce_c00082{transform:matrix(0.094343,0.001793,-0.004749,0.249955,0,0);-ms-transform:matrix(0.094343,0.001793,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.094343,0.001793,-0.004749,0.249955,0,0);}
.ma1_c00082{transform:matrix(0.148383,0.002819,-0.004749,0.249955,0,0);-ms-transform:matrix(0.148383,0.002819,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.148383,0.002819,-0.004749,0.249955,0,0);}
.m3b_c00082{transform:matrix(0.148960,0.002085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148960,0.002085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148960,0.002085,-0.003500,0.249976,0,0);}
.m76_c00082{transform:matrix(0.152515,0.003050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152515,0.003050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152515,0.003050,-0.004999,0.249950,0,0);}
.md2_c00082{transform:matrix(0.152853,0.002598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152853,0.002598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152853,0.002598,-0.004249,0.249964,0,0);}
.m5f_c00082{transform:matrix(0.155073,0.002636,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155073,0.002636,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155073,0.002636,-0.004249,0.249964,0,0);}
.mb9_c00082{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);}
.m7b_c00082{transform:matrix(0.160138,0.003203,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160138,0.003203,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160138,0.003203,-0.004999,0.249950,0,0);}
.m7a_c00082{transform:matrix(0.160738,0.003215,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160738,0.003215,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160738,0.003215,-0.004999,0.249950,0,0);}
.mca_c00082{transform:matrix(0.161046,0.003060,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161046,0.003060,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161046,0.003060,-0.004749,0.249955,0,0);}
.m8f_c00082{transform:matrix(0.162249,0.002920,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162249,0.002920,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162249,0.002920,-0.004499,0.249960,0,0);}
.m9b_c00082{transform:matrix(0.162354,0.002922,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162354,0.002922,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162354,0.002922,-0.004499,0.249960,0,0);}
.md1_c00082{transform:matrix(0.162726,0.002766,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162726,0.002766,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162726,0.002766,-0.004249,0.249964,0,0);}
.mc9_c00082{transform:matrix(0.166115,0.003156,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166115,0.003156,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166115,0.003156,-0.004749,0.249955,0,0);}
.m2f_c00082{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);}
.m3c_c00082{transform:matrix(0.166504,0.002331,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166504,0.002331,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166504,0.002331,-0.003500,0.249976,0,0);}
.mb7_c00082{transform:matrix(0.166720,0.003168,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166720,0.003168,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166720,0.003168,-0.004749,0.249955,0,0);}
.m38_c00082{transform:matrix(0.167904,0.002351,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167904,0.002351,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167904,0.002351,-0.003500,0.249976,0,0);}
.m1f_c00082{transform:matrix(0.168195,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168195,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168195,0.001850,-0.002750,0.249985,0,0);}
.ma_c00082{transform:matrix(0.169090,0.001860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169090,0.001860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169090,0.001860,-0.002750,0.249985,0,0);}
.m1d_c00082{transform:matrix(0.170505,0.001876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170505,0.001876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170505,0.001876,-0.002750,0.249985,0,0);}
.maf_c00082{transform:matrix(0.170913,0.002735,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170913,0.002735,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170913,0.002735,-0.003999,0.249968,0,0);}
.m2_c00082{transform:matrix(0.171164,0.003766,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171164,0.003766,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171164,0.003766,-0.005499,0.249940,0,0);}
.m5_c00082{transform:matrix(0.171350,0.001885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171350,0.001885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171350,0.001885,-0.002750,0.249985,0,0);}
.m2c_c00082{transform:matrix(0.172070,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172070,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172070,0.001893,-0.002750,0.249985,0,0);}
.m7_c00082{transform:matrix(0.173100,0.001904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173100,0.001904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173100,0.001904,-0.002750,0.249985,0,0);}
.m42_c00082{transform:matrix(0.173618,0.002778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173618,0.002778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173618,0.002778,-0.003999,0.249968,0,0);}
.m18_c00082{transform:matrix(0.174154,0.001916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174154,0.001916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174154,0.001916,-0.002750,0.249985,0,0);}
.m34_c00082{transform:matrix(0.175388,0.002455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175388,0.002455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175388,0.002455,-0.003500,0.249976,0,0);}
.m21_c00082{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);}
.m9e_c00082{transform:matrix(0.176688,0.003357,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176688,0.003357,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176688,0.003357,-0.004749,0.249955,0,0);}
.md_c00082{transform:matrix(0.176744,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176744,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176744,0.001944,-0.002750,0.249985,0,0);}
.m60_c00082{transform:matrix(0.176789,0.003005,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176789,0.003005,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176789,0.003005,-0.004249,0.249964,0,0);}
.m84_c00082{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);}
.mb3_c00082{transform:matrix(0.178213,0.003386,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178213,0.003386,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178213,0.003386,-0.004749,0.249955,0,0);}
.m9d_c00082{transform:matrix(0.179018,0.003401,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179018,0.003401,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179018,0.003401,-0.004749,0.249955,0,0);}
.m16_c00082{transform:matrix(0.180254,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180254,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180254,0.001983,-0.002750,0.249985,0,0);}
.m39_c00082{transform:matrix(0.180567,0.002528,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180567,0.002528,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180567,0.002528,-0.003500,0.249976,0,0);}
.m29_c00082{transform:matrix(0.181599,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181599,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181599,0.001998,-0.002750,0.249985,0,0);}
.m69_c00082{transform:matrix(0.181929,0.003093,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181929,0.003093,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181929,0.003093,-0.004249,0.249964,0,0);}
.m75_c00082{transform:matrix(0.183208,0.003664,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183208,0.003664,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183208,0.003664,-0.004999,0.249950,0,0);}
.m17_c00082{transform:matrix(0.183284,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183284,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183284,0.002016,-0.002750,0.249985,0,0);}
.mb4_c00082{transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);}
.m32_c00082{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);}
.m5c_c00082{transform:matrix(0.184058,0.003129,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184058,0.003129,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184058,0.003129,-0.004249,0.249964,0,0);}
.m5e_c00082{transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);}
.m9f_c00082{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);}
.ma0_c00082{transform:matrix(0.185057,0.003516,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185057,0.003516,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185057,0.003516,-0.004749,0.249955,0,0);}
.m10_c00082{transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);}
.mc2_c00082{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);}
.m95_c00082{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);}
.mb5_c00082{transform:matrix(0.186916,0.003551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186916,0.003551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186916,0.003551,-0.004749,0.249955,0,0);}
.m35_c00082{transform:matrix(0.187432,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187432,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187432,0.002624,-0.003500,0.249976,0,0);}
.mb0_c00082{transform:matrix(0.187586,0.003001,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187586,0.003001,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187586,0.003001,-0.003999,0.249968,0,0);}
.mc7_c00082{transform:matrix(0.187741,0.003567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187741,0.003567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187741,0.003567,-0.004749,0.249955,0,0);}
.m1e_c00082{transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);}
.m40_c00082{transform:matrix(0.189256,0.003028,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189256,0.003028,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189256,0.003028,-0.003999,0.249968,0,0);}
.ma3_c00082{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);}
.mc8_c00082{transform:matrix(0.189441,0.003599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189441,0.003599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189441,0.003599,-0.004749,0.249955,0,0);}
.m44_c00082{transform:matrix(0.189506,0.003032,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189506,0.003032,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189506,0.003032,-0.003999,0.249968,0,0);}
.ma7_c00082{transform:matrix(0.190216,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190216,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190216,0.003043,-0.003999,0.249968,0,0);}
.m31_c00082{transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);}
.m4a_c00082{transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);}
.m13_c00082{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);}
.m54_c00082{transform:matrix(0.191471,0.002681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191471,0.002681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191471,0.002681,-0.003500,0.249976,0,0);}
.ma5_c00082{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);}
.ma8_c00082{transform:matrix(0.191745,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191745,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191745,0.003068,-0.003999,0.249968,0,0);}
.m5a_c00082{transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);}
.mb2_c00082{transform:matrix(0.193750,0.003681,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193750,0.003681,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193750,0.003681,-0.004749,0.249955,0,0);}
.mcf_c00082{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);}
.m46_c00082{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);}
.mbe_c00082{transform:matrix(0.194830,0.003702,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194830,0.003702,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194830,0.003702,-0.004749,0.249955,0,0);}
.ma4_c00082{transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);}
.m7f_c00082{transform:matrix(0.195093,0.003512,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195093,0.003512,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195093,0.003512,-0.004499,0.249960,0,0);}
.m30_c00082{transform:matrix(0.195246,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195246,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195246,0.002733,-0.003500,0.249976,0,0);}
.m7d_c00082{transform:matrix(0.195531,0.003911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195531,0.003911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195531,0.003911,-0.004999,0.249950,0,0);}
.m26_c00082{transform:matrix(0.195583,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195583,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195583,0.002151,-0.002750,0.249985,0,0);}
.m85_c00082{transform:matrix(0.195808,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195808,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195808,0.003525,-0.004499,0.249960,0,0);}
.m43_c00082{transform:matrix(0.196090,0.003137,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196090,0.003137,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196090,0.003137,-0.003999,0.249968,0,0);}
.ma2_c00082{transform:matrix(0.196934,0.003742,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196934,0.003742,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196934,0.003742,-0.004749,0.249955,0,0);}
.m70_c00082{transform:matrix(0.196996,0.003940,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196996,0.003940,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196996,0.003940,-0.004999,0.249950,0,0);}
.m98_c00082{transform:matrix(0.197233,0.003550,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197233,0.003550,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197233,0.003550,-0.004499,0.249960,0,0);}
.mf_c00082{transform:matrix(0.198603,0.002185,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198603,0.002185,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198603,0.002185,-0.002750,0.249985,0,0);}
.mc_c00082{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);}
.m6e_c00082{transform:matrix(0.199685,0.003994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199685,0.003994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199685,0.003994,-0.004999,0.249950,0,0);}
.m6_c00082{transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);}
.m9c_c00082{transform:matrix(0.200394,0.003807,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200394,0.003807,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200394,0.003807,-0.004749,0.249955,0,0);}
.m33_c00082{transform:matrix(0.200530,0.002807,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200530,0.002807,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200530,0.002807,-0.003500,0.249976,0,0);}
.mb_c00082{transform:matrix(0.200923,0.002210,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200923,0.002210,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200923,0.002210,-0.002750,0.249985,0,0);}
.ma9_c00082{transform:matrix(0.201149,0.003218,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201149,0.003218,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201149,0.003218,-0.003999,0.249968,0,0);}
.m41_c00082{transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);}
.m5b_c00082{transform:matrix(0.201661,0.003428,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201661,0.003428,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201661,0.003428,-0.004249,0.249964,0,0);}
.m9_c00082{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);}
.m3f_c00082{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);}
.m77_c00082{transform:matrix(0.202070,0.004041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202070,0.004041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202070,0.004041,-0.004999,0.249950,0,0);}
.m57_c00082{transform:matrix(0.202095,0.002829,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202095,0.002829,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202095,0.002829,-0.003500,0.249976,0,0);}
.m80_c00082{transform:matrix(0.202557,0.003646,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202557,0.003646,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202557,0.003646,-0.004499,0.249960,0,0);}
.m99_c00082{transform:matrix(0.202752,0.003650,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202752,0.003650,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202752,0.003650,-0.004499,0.249960,0,0);}
.m79_c00082{transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);}
.mb6_c00082{transform:matrix(0.202928,0.003856,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202928,0.003856,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202928,0.003856,-0.004749,0.249955,0,0);}
.m74_c00082{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);}
.m24_c00082{transform:matrix(0.204268,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204268,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204268,0.002247,-0.002750,0.249985,0,0);}
.m11_c00082{transform:matrix(0.204538,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204538,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204538,0.002250,-0.002750,0.249985,0,0);}
.mac_c00082{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);}
.m14_c00082{transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);}
.m71_c00082{transform:matrix(0.205189,0.004104,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205189,0.004104,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205189,0.004104,-0.004999,0.249950,0,0);}
.m6c_c00082{transform:matrix(0.205219,0.004104,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205219,0.004104,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205219,0.004104,-0.004999,0.249950,0,0);}
.m3e_c00082{transform:matrix(0.205409,0.003287,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205409,0.003287,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205409,0.003287,-0.003999,0.249968,0,0);}
.m72_c00082{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);}
.m62_c00082{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);}
.m4b_c00082{transform:matrix(0.207232,0.003108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207232,0.003108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207232,0.003108,-0.003750,0.249972,0,0);}
.m6d_c00082{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);}
.m37_c00082{transform:matrix(0.208370,0.002917,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208370,0.002917,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208370,0.002917,-0.003500,0.249976,0,0);}
.mb8_c00082{transform:matrix(0.210377,0.003997,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210377,0.003997,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210377,0.003997,-0.004749,0.249955,0,0);}
.m82_c00082{transform:matrix(0.210531,0.003790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210531,0.003790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210531,0.003790,-0.004499,0.249960,0,0);}
.m6b_c00082{transform:matrix(0.211678,0.004234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211678,0.004234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211678,0.004234,-0.004999,0.249950,0,0);}
.mba_c00082{transform:matrix(0.212197,0.004032,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212197,0.004032,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212197,0.004032,-0.004749,0.249955,0,0);}
.m3a_c00082{transform:matrix(0.212299,0.002972,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212299,0.002972,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212299,0.002972,-0.003500,0.249976,0,0);}
.m8_c00082{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);}
.m89_c00082{transform:matrix(0.212576,0.003826,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212576,0.003826,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212576,0.003826,-0.004499,0.249960,0,0);}
.mad_c00082{transform:matrix(0.214378,0.003430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214378,0.003430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214378,0.003430,-0.003999,0.249968,0,0);}
.m6f_c00082{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);}
.mab_c00082{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);}
.mc0_c00082{transform:matrix(0.216406,0.004112,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216406,0.004112,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216406,0.004112,-0.004749,0.249955,0,0);}
.m1c_c00082{transform:matrix(0.216522,0.002382,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216522,0.002382,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216522,0.002382,-0.002750,0.249985,0,0);}
.m47_c00082{transform:matrix(0.216611,0.003249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216611,0.003249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216611,0.003249,-0.003750,0.249972,0,0);}
.m8b_c00082{transform:matrix(0.216720,0.003901,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216720,0.003901,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216720,0.003901,-0.004499,0.249960,0,0);}
.m7c_c00082{transform:matrix(0.216722,0.004334,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216722,0.004334,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216722,0.004334,-0.004999,0.249950,0,0);}
.m5d_c00082{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);}
.m8e_c00082{transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);}
.m2b_c00082{transform:matrix(0.218032,0.002398,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218032,0.002398,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218032,0.002398,-0.002750,0.249985,0,0);}
.m91_c00082{transform:matrix(0.218380,0.003931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218380,0.003931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218380,0.003931,-0.004499,0.249960,0,0);}
.m88_c00082{transform:matrix(0.218670,0.003936,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218670,0.003936,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218670,0.003936,-0.004499,0.249960,0,0);}
.m51_c00082{transform:matrix(0.219583,0.003074,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219583,0.003074,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219583,0.003074,-0.003500,0.249976,0,0);}
.m7e_c00082{transform:matrix(0.219944,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219944,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219944,0.003959,-0.004499,0.249960,0,0);}
.m61_c00082{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);}
.mc6_c00082{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);}
.m8a_c00082{transform:matrix(0.221039,0.003979,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221039,0.003979,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221039,0.003979,-0.004499,0.249960,0,0);}
.m12_c00082{transform:matrix(0.221252,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221252,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221252,0.002434,-0.002750,0.249985,0,0);}
.m2a_c00082{transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);}
.m48_c00082{transform:matrix(0.222565,0.003338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222565,0.003338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222565,0.003338,-0.003750,0.249972,0,0);}
.m63_c00082{transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);}
.m97_c00082{transform:matrix(0.223489,0.004023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223489,0.004023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223489,0.004023,-0.004499,0.249960,0,0);}
.m94_c00082{transform:matrix(0.223829,0.004029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223829,0.004029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223829,0.004029,-0.004499,0.249960,0,0);}
.m36_c00082{transform:matrix(0.224673,0.003145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224673,0.003145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224673,0.003145,-0.003500,0.249976,0,0);}
.md3_c00082{transform:matrix(0.224788,0.003821,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224788,0.003821,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224788,0.003821,-0.004249,0.249964,0,0);}
.m22_c00082{transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224941,0.002474,-0.002750,0.249985,0,0);}
.m2e_c00082{transform:matrix(0.225283,0.003154,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225283,0.003154,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225283,0.003154,-0.003500,0.249976,0,0);}
.m81_c00082{transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);}
.m67_c00082{transform:matrix(0.227972,0.003876,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227972,0.003876,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227972,0.003876,-0.004249,0.249964,0,0);}
.m3d_c00082{transform:matrix(0.228908,0.003205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228908,0.003205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228908,0.003205,-0.003500,0.249976,0,0);}
.m83_c00082{transform:matrix(0.229023,0.004122,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229023,0.004122,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229023,0.004122,-0.004499,0.249960,0,0);}
.m50_c00082{transform:matrix(0.229318,0.003210,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229318,0.003210,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229318,0.003210,-0.003500,0.249976,0,0);}
.m8d_c00082{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);}
.mae_c00082{transform:matrix(0.231560,0.003705,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231560,0.003705,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231560,0.003705,-0.003999,0.249968,0,0);}
.maa_c00082{transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);}
.m87_c00082{transform:matrix(0.232002,0.004176,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232002,0.004176,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232002,0.004176,-0.004499,0.249960,0,0);}
.m19_c00082{transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);}
.m23_c00082{transform:matrix(0.232436,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232436,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232436,0.002557,-0.002750,0.249985,0,0);}
.mcb_c00082{transform:matrix(0.232468,0.004417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232468,0.004417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232468,0.004417,-0.004749,0.249955,0,0);}
.md0_c00082{transform:matrix(0.234621,0.003989,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234621,0.003989,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234621,0.003989,-0.004249,0.249964,0,0);}
.me1_c00082{transform:matrix(0.235937,0.004247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235937,0.004247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235937,0.004247,-0.004499,0.249960,0,0);}
.mdd_c00082{transform:matrix(0.236312,0.004254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236312,0.004254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236312,0.004254,-0.004499,0.249960,0,0);}
.m4_c00082{transform:matrix(0.236521,0.002602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236521,0.002602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236521,0.002602,-0.002750,0.249985,0,0);}
.m68_c00082{transform:matrix(0.236681,0.004024,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236681,0.004024,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236681,0.004024,-0.004249,0.249964,0,0);}
.m15_c00082{transform:matrix(0.239156,0.002631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239156,0.002631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239156,0.002631,-0.002750,0.249985,0,0);}
.m59_c00082{transform:matrix(0.239880,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239880,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239880,0.004078,-0.004249,0.249964,0,0);}
.m4e_c00082{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);}
.m20_c00082{transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);}
.m49_c00082{transform:matrix(0.241708,0.003626,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241708,0.003626,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241708,0.003626,-0.003750,0.249972,0,0);}
.m92_c00082{transform:matrix(0.241746,0.004351,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241746,0.004351,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241746,0.004351,-0.004499,0.249960,0,0);}
.mc1_c00082{transform:matrix(0.241931,0.004597,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241931,0.004597,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241931,0.004597,-0.004749,0.249955,0,0);}
.m86_c00082{transform:matrix(0.244680,0.004404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244680,0.004404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244680,0.004404,-0.004499,0.249960,0,0);}
.mcc_c00082{transform:matrix(0.244766,0.004651,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244766,0.004651,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244766,0.004651,-0.004749,0.249955,0,0);}
.m96_c00082{transform:matrix(0.246735,0.004441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246735,0.004441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246735,0.004441,-0.004499,0.249960,0,0);}
.m52_c00082{transform:matrix(0.247986,0.003472,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247986,0.003472,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247986,0.003472,-0.003500,0.249976,0,0);}
.me0_c00082{transform:matrix(0.248835,0.004479,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248835,0.004479,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248835,0.004479,-0.004499,0.249960,0,0);}
.me_c00082{transform:matrix(0.249660,0.002746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249660,0.002746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249660,0.002746,-0.002750,0.249985,0,0);}
.ma6_c00082{transform:matrix(0.252704,0.004801,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252704,0.004801,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252704,0.004801,-0.004749,0.249955,0,0);}
.mb1_c00082{transform:matrix(0.254459,0.004835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254459,0.004835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254459,0.004835,-0.004749,0.249955,0,0);}
.md6_c00082{transform:matrix(0.256543,0.004361,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256543,0.004361,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256543,0.004361,-0.004249,0.249964,0,0);}
.m9a_c00082{transform:matrix(0.256838,0.004623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256838,0.004623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256838,0.004623,-0.004499,0.249960,0,0);}
.mbf_c00082{transform:matrix(0.258033,0.004903,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258033,0.004903,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258033,0.004903,-0.004749,0.249955,0,0);}
.m25_c00082{transform:matrix(0.259174,0.002851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259174,0.002851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259174,0.002851,-0.002750,0.249985,0,0);}
.mc3_c00082{transform:matrix(0.259953,0.004939,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259953,0.004939,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259953,0.004939,-0.004749,0.249955,0,0);}
.m78_c00082{transform:matrix(0.260798,0.005216,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260798,0.005216,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260798,0.005216,-0.004999,0.249950,0,0);}
.md4_c00082{transform:matrix(0.267996,0.004556,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267996,0.004556,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267996,0.004556,-0.004249,0.249964,0,0);}
.m27_c00082{transform:matrix(0.271934,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271934,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271934,0.002991,-0.002750,0.249985,0,0);}
.m73_c00082{transform:matrix(0.271986,0.005440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271986,0.005440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271986,0.005440,-0.004999,0.249950,0,0);}
.m90_c00082{transform:matrix(0.272991,0.004914,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272991,0.004914,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272991,0.004914,-0.004499,0.249960,0,0);}
.mbd_c00082{transform:matrix(0.278625,0.005294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278625,0.005294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278625,0.005294,-0.004749,0.249955,0,0);}
.m0_c00082{transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.296488,0.006523,-0.005499,0.249940,0,0);-ms-transform:matrix(0.296488,0.006523,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.296488,0.006523,-0.005499,0.249940,0,0);}
.m2d_c00082{transform:matrix(0.297767,0.003275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297767,0.003275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297767,0.003275,-0.002750,0.249985,0,0);}
.m53_c00082{transform:matrix(0.299351,0.004191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.299351,0.004191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.299351,0.004191,-0.003500,0.249976,0,0);}
.m55_c00082{transform:matrix(0.299786,0.004197,-0.003500,0.249976,0,0);-ms-transform:matrix(0.299786,0.004197,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.299786,0.004197,-0.003500,0.249976,0,0);}
.mc4_c00082{transform:matrix(0.300861,0.005716,-0.004749,0.249955,0,0);-ms-transform:matrix(0.300861,0.005716,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.300861,0.005716,-0.004749,0.249955,0,0);}
.md7_c00082{transform:matrix(0.307571,0.005229,-0.004249,0.249964,0,0);-ms-transform:matrix(0.307571,0.005229,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.307571,0.005229,-0.004249,0.249964,0,0);}
.mc5_c00082{transform:matrix(0.310619,0.005902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.310619,0.005902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.310619,0.005902,-0.004749,0.249955,0,0);}
.m8c_c00082{transform:matrix(0.312434,0.005624,-0.004499,0.249960,0,0);-ms-transform:matrix(0.312434,0.005624,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.312434,0.005624,-0.004499,0.249960,0,0);}
.m1_c00082{transform:matrix(0.319138,0.007021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.319138,0.007021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.319138,0.007021,-0.005499,0.249940,0,0);}
.m56_c00082{transform:matrix(0.325683,0.004560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.325683,0.004560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.325683,0.004560,-0.003500,0.249976,0,0);}
.m28_c00082{transform:matrix(0.329735,0.003627,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329735,0.003627,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329735,0.003627,-0.002750,0.249985,0,0);}
.mdb_c00082{transform:matrix(0.337400,0.006073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.337400,0.006073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.337400,0.006073,-0.004499,0.249960,0,0);}
.m4c_c00082{transform:matrix(0.349781,0.005247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349781,0.005247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349781,0.005247,-0.003750,0.249972,0,0);}
.mdf_c00082{transform:matrix(0.365166,0.006573,-0.004499,0.249960,0,0);-ms-transform:matrix(0.365166,0.006573,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.365166,0.006573,-0.004499,0.249960,0,0);}
.m64_c00082{transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);}
.m45_c00082{transform:matrix(0.432886,0.006493,-0.003750,0.249972,0,0);-ms-transform:matrix(0.432886,0.006493,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.432886,0.006493,-0.003750,0.249972,0,0);}
.md9_c00082{transform:matrix(0.449662,0.008094,-0.004499,0.249960,0,0);-ms-transform:matrix(0.449662,0.008094,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.449662,0.008094,-0.004499,0.249960,0,0);}
.m58_c00082{transform:matrix(0.474319,0.006640,-0.003500,0.249976,0,0);-ms-transform:matrix(0.474319,0.006640,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.474319,0.006640,-0.003500,0.249976,0,0);}
.m4d_c00082{transform:matrix(0.489330,0.007340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.489330,0.007340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.489330,0.007340,-0.003750,0.249972,0,0);}
.m6a_c00082{transform:matrix(0.625095,0.010627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.625095,0.010627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.625095,0.010627,-0.004249,0.249964,0,0);}
.md8_c00082{transform:matrix(0.772295,0.013901,-0.004499,0.249960,0,0);-ms-transform:matrix(0.772295,0.013901,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.772295,0.013901,-0.004499,0.249960,0,0);}
.mda_c00082{transform:matrix(0.775419,0.013958,-0.004499,0.249960,0,0);-ms-transform:matrix(0.775419,0.013958,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.775419,0.013958,-0.004499,0.249960,0,0);}
.mde_c00082{transform:matrix(0.851982,0.015336,-0.004499,0.249960,0,0);-ms-transform:matrix(0.851982,0.015336,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.851982,0.015336,-0.004499,0.249960,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;}
.fs0_c00082{font-size:48.300000px;}
.fs12_c00082{font-size:60.909865px;}
.fs16_c00082{font-size:61.957929px;}
.fs18_c00082{font-size:63.011370px;}
.fs14_c00082{font-size:65.110545px;}
.fs13_c00082{font-size:67.210886px;}
.fs17_c00082{font-size:67.212129px;}
.fs5_c00082{font-size:68.254129px;}
.fs6_c00082{font-size:68.256688px;}
.fs11_c00082{font-size:68.261056px;}
.fs2_c00082{font-size:69.304193px;}
.fsa_c00082{font-size:69.306791px;}
.fsc_c00082{font-size:70.350000px;}
.fs3_c00082{font-size:70.354256px;}
.fs19_c00082{font-size:70.362697px;}
.fsd_c00082{font-size:71.400000px;}
.fs4_c00082{font-size:71.404320px;}
.fs7_c00082{font-size:71.406997px;}
.fs8_c00082{font-size:71.409139px;}
.fsb_c00082{font-size:72.460468px;}
.fs10_c00082{font-size:72.464489px;}
.fs9_c00082{font-size:73.508268px;}
.fs15_c00082{font-size:73.513266px;}
.fsf_c00082{font-size:73.514699px;}
.fse_c00082{font-size:76.661075px;}
.fs1a_c00082{font-size:78.761379px;}
.fs1_c00082{font-size:139.683791px;}
.y0_c00082{bottom:0.000000px;}
.ye0_c00082{bottom:125.592264px;}
.ydf_c00082{bottom:126.217260px;}
.yde_c00082{bottom:127.342269px;}
.ydd_c00082{bottom:128.421972px;}
.ydc_c00082{bottom:128.761497px;}
.ydb_c00082{bottom:128.894310px;}
.yda_c00082{bottom:129.721455px;}
.yd9_c00082{bottom:131.230755px;}
.yd8_c00082{bottom:131.790087px;}
.yd7_c00082{bottom:132.849000px;}
.yd6_c00082{bottom:153.246071px;}
.yd5_c00082{bottom:153.713868px;}
.yd4_c00082{bottom:153.814211px;}
.yd3_c00082{bottom:154.696154px;}
.yd2_c00082{bottom:155.403702px;}
.yd1_c00082{bottom:156.013688px;}
.yd0_c00082{bottom:156.739979px;}
.ycf_c00082{bottom:157.341498px;}
.yce_c00082{bottom:158.764500px;}
.ycd_c00082{bottom:175.456889px;}
.ycc_c00082{bottom:176.376254px;}
.ycb_c00082{bottom:177.495002px;}
.yca_c00082{bottom:177.862860px;}
.yc9_c00082{bottom:178.730706px;}
.yc8_c00082{bottom:179.297406px;}
.yc7_c00082{bottom:179.851859px;}
.yc6_c00082{bottom:180.468347px;}
.yc5_c00082{bottom:181.047950px;}
.yc4_c00082{bottom:181.704165px;}
.yc3_c00082{bottom:198.400304px;}
.yc2_c00082{bottom:198.971175px;}
.yc1_c00082{bottom:199.373162px;}
.yc0_c00082{bottom:200.018015px;}
.ybf_c00082{bottom:201.238823px;}
.ybe_c00082{bottom:202.042215px;}
.ybd_c00082{bottom:203.388119px;}
.ybc_c00082{bottom:204.177336px;}
.ybb_c00082{bottom:204.388404px;}
.yba_c00082{bottom:219.475434px;}
.yb9_c00082{bottom:220.472906px;}
.yb8_c00082{bottom:221.140376px;}
.yb7_c00082{bottom:221.945643px;}
.yb6_c00082{bottom:222.663615px;}
.yb5_c00082{bottom:223.524229px;}
.yb4_c00082{bottom:224.551997px;}
.yb3_c00082{bottom:225.137016px;}
.yb2_c00082{bottom:226.137679px;}
.yb1_c00082{bottom:226.594164px;}
.yb0_c00082{bottom:227.184000px;}
.yaf_c00082{bottom:243.154224px;}
.yae_c00082{bottom:243.751632px;}
.yad_c00082{bottom:244.217088px;}
.yac_c00082{bottom:244.722672px;}
.yab_c00082{bottom:245.627304px;}
.yaa_c00082{bottom:245.985744px;}
.ya9_c00082{bottom:247.256760px;}
.ya8_c00082{bottom:247.859760px;}
.ya7_c00082{bottom:248.629656px;}
.ya6_c00082{bottom:249.213000px;}
.ya5_c00082{bottom:266.093820px;}
.ya4_c00082{bottom:266.539360px;}
.ya3_c00082{bottom:267.163539px;}
.ya2_c00082{bottom:268.010331px;}
.ya1_c00082{bottom:268.509794px;}
.ya0_c00082{bottom:269.161275px;}
.y9f_c00082{bottom:270.002538px;}
.y9e_c00082{bottom:270.592859px;}
.y9d_c00082{bottom:271.126093px;}
.y9c_c00082{bottom:271.921500px;}
.y9b_c00082{bottom:272.434500px;}
.y9a_c00082{bottom:289.176129px;}
.y99_c00082{bottom:290.722932px;}
.y98_c00082{bottom:291.753090px;}
.y97_c00082{bottom:292.237011px;}
.y96_c00082{bottom:292.990365px;}
.y95_c00082{bottom:293.599944px;}
.y94_c00082{bottom:294.469560px;}
.y93_c00082{bottom:295.257987px;}
.y92_c00082{bottom:311.269224px;}
.y91_c00082{bottom:313.266465px;}
.y90_c00082{bottom:313.886838px;}
.y8f_c00082{bottom:314.288652px;}
.y8e_c00082{bottom:315.244980px;}
.y8d_c00082{bottom:316.961838px;}
.y8c_c00082{bottom:317.608350px;}
.y8b_c00082{bottom:318.329322px;}
.y8a_c00082{bottom:334.675473px;}
.y89_c00082{bottom:335.392260px;}
.y88_c00082{bottom:336.716769px;}
.y87_c00082{bottom:338.115333px;}
.y86_c00082{bottom:338.864172px;}
.y85_c00082{bottom:340.227876px;}
.y84_c00082{bottom:358.089999px;}
.y83_c00082{bottom:358.854990px;}
.y82_c00082{bottom:359.601918px;}
.y81_c00082{bottom:359.885337px;}
.y80_c00082{bottom:361.076118px;}
.y7f_c00082{bottom:361.649598px;}
.y7e_c00082{bottom:362.427252px;}
.y7d_c00082{bottom:362.908500px;}
.y7c_c00082{bottom:380.146350px;}
.y7b_c00082{bottom:380.830680px;}
.y7a_c00082{bottom:381.902610px;}
.y79_c00082{bottom:382.242270px;}
.y78_c00082{bottom:382.844400px;}
.y77_c00082{bottom:383.454000px;}
.y76_c00082{bottom:383.937840px;}
.y75_c00082{bottom:384.661590px;}
.y74_c00082{bottom:385.027380px;}
.y73_c00082{bottom:402.692490px;}
.y72_c00082{bottom:403.415940px;}
.y71_c00082{bottom:404.071800px;}
.y70_c00082{bottom:404.798490px;}
.y6f_c00082{bottom:405.320790px;}
.y6e_c00082{bottom:406.336230px;}
.y6d_c00082{bottom:407.182470px;}
.y6c_c00082{bottom:408.029790px;}
.y6b_c00082{bottom:408.584700px;}
.y6a_c00082{bottom:409.054500px;}
.y69_c00082{bottom:425.312712px;}
.y68_c00082{bottom:425.898881px;}
.y67_c00082{bottom:426.323507px;}
.y66_c00082{bottom:427.095774px;}
.y65_c00082{bottom:428.494500px;}
.y64_c00082{bottom:451.744500px;}
.y63_c00082{bottom:456.580500px;}
.y62_c00082{bottom:484.878000px;}
.y61_c00082{bottom:505.045494px;}
.y60_c00082{bottom:505.406574px;}
.y5f_c00082{bottom:506.307642px;}
.y5e_c00082{bottom:507.340469px;}
.y5d_c00082{bottom:507.900831px;}
.y5c_c00082{bottom:508.194387px;}
.y5b_c00082{bottom:509.010107px;}
.y5a_c00082{bottom:509.773500px;}
.y59_c00082{bottom:526.479459px;}
.y58_c00082{bottom:527.531811px;}
.y57_c00082{bottom:527.979720px;}
.y56_c00082{bottom:528.593088px;}
.y55_c00082{bottom:529.118907px;}
.y54_c00082{bottom:529.510221px;}
.y53_c00082{bottom:529.810689px;}
.y52_c00082{bottom:530.089632px;}
.y51_c00082{bottom:530.933538px;}
.y50_c00082{bottom:531.124554px;}
.y4f_c00082{bottom:531.648000px;}
.y4e_c00082{bottom:615.686437px;}
.y4d_c00082{bottom:616.411072px;}
.y4c_c00082{bottom:617.071515px;}
.y4b_c00082{bottom:617.529368px;}
.y4a_c00082{bottom:618.189495px;}
.y49_c00082{bottom:618.765022px;}
.y48_c00082{bottom:619.148400px;}
.y47_c00082{bottom:620.101320px;}
.y46_c00082{bottom:620.749500px;}
.y45_c00082{bottom:637.685124px;}
.y44_c00082{bottom:638.965332px;}
.y43_c00082{bottom:639.643548px;}
.y42_c00082{bottom:639.898524px;}
.y41_c00082{bottom:640.775652px;}
.y40_c00082{bottom:642.590508px;}
.y3f_c00082{bottom:643.684500px;}
.y3e_c00082{bottom:662.364357px;}
.y3d_c00082{bottom:663.300561px;}
.y3c_c00082{bottom:663.803706px;}
.y3b_c00082{bottom:664.227642px;}
.y3a_c00082{bottom:664.939710px;}
.y39_c00082{bottom:666.206532px;}
.y38_c00082{bottom:666.909414px;}
.y37_c00082{bottom:684.357417px;}
.y36_c00082{bottom:685.299876px;}
.y35_c00082{bottom:685.961355px;}
.y34_c00082{bottom:686.432847px;}
.y33_c00082{bottom:687.076224px;}
.y32_c00082{bottom:687.632031px;}
.y31_c00082{bottom:688.353990px;}
.y30_c00082{bottom:688.660359px;}
.y2f_c00082{bottom:689.053500px;}
.y2e_c00082{bottom:706.854402px;}
.y2d_c00082{bottom:707.784736px;}
.y2c_c00082{bottom:708.714609px;}
.y2b_c00082{bottom:709.311451px;}
.y2a_c00082{bottom:710.086950px;}
.y29_c00082{bottom:710.373609px;}
.y28_c00082{bottom:711.099453px;}
.y27_c00082{bottom:711.583195px;}
.y26_c00082{bottom:728.852395px;}
.y25_c00082{bottom:728.864188px;}
.y24_c00082{bottom:729.906076px;}
.y23_c00082{bottom:730.348104px;}
.y22_c00082{bottom:731.118580px;}
.y21_c00082{bottom:731.980698px;}
.y20_c00082{bottom:732.793614px;}
.y1f_c00082{bottom:733.256325px;}
.y1e_c00082{bottom:733.889916px;}
.y1d_c00082{bottom:734.446330px;}
.y1c_c00082{bottom:751.227495px;}
.y1b_c00082{bottom:751.756998px;}
.y1a_c00082{bottom:752.928400px;}
.y19_c00082{bottom:753.211942px;}
.y18_c00082{bottom:753.710809px;}
.y17_c00082{bottom:754.026126px;}
.y16_c00082{bottom:754.994775px;}
.y15_c00082{bottom:755.198205px;}
.y14_c00082{bottom:755.633985px;}
.y13_c00082{bottom:756.539877px;}
.y12_c00082{bottom:776.451187px;}
.y11_c00082{bottom:776.648307px;}
.y10_c00082{bottom:776.956513px;}
.yf_c00082{bottom:777.131271px;}
.ye_c00082{bottom:777.829441px;}
.yd_c00082{bottom:778.048543px;}
.yc_c00082{bottom:778.679974px;}
.yb_c00082{bottom:798.005620px;}
.ya_c00082{bottom:798.614883px;}
.y9_c00082{bottom:798.997666px;}
.y8_c00082{bottom:799.591798px;}
.y7_c00082{bottom:800.399985px;}
.y6_c00082{bottom:800.767951px;}
.y5_c00082{bottom:801.091500px;}
.y4_c00082{bottom:847.601172px;}
.y3_c00082{bottom:851.719803px;}
.y2_c00082{bottom:856.449000px;}
.y1_c00082{bottom:903.690000px;}
.h2_c00082{height:48.300000px;}
.h14_c00082{height:60.909865px;}
.h18_c00082{height:61.957929px;}
.h1a_c00082{height:63.011370px;}
.h16_c00082{height:65.110545px;}
.h15_c00082{height:67.210886px;}
.h19_c00082{height:67.212129px;}
.h7_c00082{height:68.254129px;}
.h8_c00082{height:68.256688px;}
.h13_c00082{height:68.261056px;}
.h4_c00082{height:69.304193px;}
.hc_c00082{height:69.306791px;}
.he_c00082{height:70.350000px;}
.h5_c00082{height:70.354256px;}
.h1b_c00082{height:70.362697px;}
.hf_c00082{height:71.400000px;}
.h6_c00082{height:71.404320px;}
.h9_c00082{height:71.406997px;}
.ha_c00082{height:71.409139px;}
.hd_c00082{height:72.460468px;}
.h12_c00082{height:72.464489px;}
.hb_c00082{height:73.508268px;}
.h17_c00082{height:73.513266px;}
.h11_c00082{height:73.514699px;}
.h10_c00082{height:76.661075px;}
.h1c_c00082{height:78.761379px;}
.h3_c00082{height:139.683791px;}
.h1_c00082{height:1005.000000px;}
.h0_c00082{height:1005.150000px;}
.w0_c00082{width:705.450000px;}
.w1_c00082{width:705.750000px;}
.x0_c00082{left:0.000000px;}
.x8a_c00082{left:33.814500px;}
.x8b_c00082{left:92.643000px;}
.x7f_c00082{left:109.998582px;}
.x67_c00082{left:117.127131px;}
.x32_c00082{left:119.865000px;}
.x79_c00082{left:122.352000px;}
.x87_c00082{left:124.200000px;}
.x6b_c00082{left:126.622557px;}
.x13_c00082{left:128.072246px;}
.x3f_c00082{left:130.495500px;}
.x38_c00082{left:132.633000px;}
.x27_c00082{left:134.278500px;}
.xc_c00082{left:135.944210px;}
.x5_c00082{left:138.370500px;}
.x5a_c00082{left:150.087090px;}
.x68_c00082{left:153.179835px;}
.x53_c00082{left:154.186500px;}
.x60_c00082{left:155.298000px;}
.x28_c00082{left:162.360000px;}
.x73_c00082{left:163.962000px;}
.x6_c00082{left:167.784000px;}
.x21_c00082{left:169.661493px;}
.x39_c00082{left:175.845000px;}
.x2d_c00082{left:177.179112px;}
.x47_c00082{left:178.879500px;}
.x40_c00082{left:181.528500px;}
.x29_c00082{left:184.243500px;}
.x69_c00082{left:185.512674px;}
.x2_c00082{left:187.246500px;}
.x5b_c00082{left:195.278190px;}
.x14_c00082{left:197.742711px;}
.x7_c00082{left:201.235500px;}
.x85_c00082{left:202.870280px;}
.x1b_c00082{left:205.057472px;}
.xd_c00082{left:206.166761px;}
.x88_c00082{left:207.906000px;}
.x74_c00082{left:212.080500px;}
.x6c_c00082{left:218.736057px;}
.x22_c00082{left:221.463777px;}
.x54_c00082{left:224.298000px;}
.x5c_c00082{left:225.472590px;}
.x48_c00082{left:226.863000px;}
.xe_c00082{left:230.449289px;}
.x1c_c00082{left:232.256673px;}
.x64_c00082{left:234.381642px;}
.x2a_c00082{left:235.812000px;}
.x3a_c00082{left:239.373000px;}
.x4e_c00082{left:240.570000px;}
.x23_c00082{left:241.932101px;}
.x49_c00082{left:244.131000px;}
.x15_c00082{left:246.851622px;}
.x80_c00082{left:247.934798px;}
.x75_c00082{left:249.768000px;}
.x2e_c00082{left:251.698983px;}
.x8c_c00082{left:253.519500px;}
.x6e_c00082{left:256.282500px;}
.x41_c00082{left:261.732000px;}
.x5d_c00082{left:263.605650px;}
.x3b_c00082{left:264.931500px;}
.x55_c00082{left:266.610000px;}
.x6a_c00082{left:271.390596px;}
.x8_c00082{left:274.707000px;}
.x4a_c00082{left:277.093500px;}
.x1d_c00082{left:280.109522px;}
.x42_c00082{left:283.194000px;}
.x89_c00082{left:286.012500px;}
.x2f_c00082{left:293.559219px;}
.x81_c00082{left:295.194093px;}
.x24_c00082{left:297.293769px;}
.x6f_c00082{left:300.559500px;}
.x33_c00082{left:301.668000px;}
.x3c_c00082{left:303.300000px;}
.x65_c00082{left:304.327131px;}
.xf_c00082{left:307.966488px;}
.x43_c00082{left:311.145000px;}
.x61_c00082{left:312.261000px;}
.x7a_c00082{left:314.971500px;}
.x56_c00082{left:317.382000px;}
.x30_c00082{left:318.482169px;}
.x16_c00082{left:321.408989px;}
.x5e_c00082{left:322.474860px;}
.x10_c00082{left:327.399417px;}
.x9_c00082{left:328.719000px;}
.x1e_c00082{left:330.798672px;}
.x70_c00082{left:334.848000px;}
.x4b_c00082{left:337.848000px;}
.x25_c00082{left:339.959867px;}
.x57_c00082{left:343.497000px;}
.x17_c00082{left:345.709961px;}
.x31_c00082{left:348.098430px;}
.x76_c00082{left:351.609000px;}
.x62_c00082{left:353.757000px;}
.x2b_c00082{left:355.146000px;}
.x34_c00082{left:356.488500px;}
.x7b_c00082{left:360.267000px;}
.x11_c00082{left:361.691676px;}
.xa_c00082{left:363.517500px;}
.x82_c00082{left:367.028829px;}
.x66_c00082{left:370.575255px;}
.x35_c00082{left:372.424500px;}
.x1f_c00082{left:376.157186px;}
.x3d_c00082{left:377.832000px;}
.x58_c00082{left:379.831500px;}
.x12_c00082{left:383.566655px;}
.x5f_c00082{left:389.426700px;}
.x4c_c00082{left:390.852000px;}
.x44_c00082{left:392.515500px;}
.x63_c00082{left:396.256500px;}
.x7c_c00082{left:398.055000px;}
.x86_c00082{left:401.140356px;}
.x3_c00082{left:402.210000px;}
.x83_c00082{left:404.917254px;}
.x18_c00082{left:405.927641px;}
.x50_c00082{left:407.178000px;}
.x4d_c00082{left:412.092000px;}
.x36_c00082{left:414.813000px;}
.xb_c00082{left:418.905000px;}
.x3e_c00082{left:421.861500px;}
.x45_c00082{left:424.509000px;}
.x84_c00082{left:428.601666px;}
.x51_c00082{left:432.156000px;}
.x8d_c00082{left:436.966500px;}
.x71_c00082{left:438.555000px;}
.x77_c00082{left:439.747500px;}
.x59_c00082{left:448.797000px;}
.x72_c00082{left:462.004500px;}
.x20_c00082{left:463.461927px;}
.x6d_c00082{left:464.503557px;}
.x52_c00082{left:466.636500px;}
.x2c_c00082{left:469.713000px;}
.x26_c00082{left:472.792478px;}
.x7d_c00082{left:475.567500px;}
.x4f_c00082{left:484.047000px;}
.x37_c00082{left:494.826000px;}
.x19_c00082{left:496.053161px;}
.x46_c00082{left:499.677000px;}
.x78_c00082{left:506.176500px;}
.x7e_c00082{left:528.066000px;}
.x1a_c00082{left:536.825270px;}
.x4_c00082{left:589.420500px;}
.x1_c00082{left:620.730000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fs0_c00082{font-size:42.933333pt;}
.fs12_c00082{font-size:54.142102pt;}
.fs16_c00082{font-size:55.073715pt;}
.fs18_c00082{font-size:56.010107pt;}
.fs14_c00082{font-size:57.876040pt;}
.fs13_c00082{font-size:59.743009pt;}
.fs17_c00082{font-size:59.744114pt;}
.fs5_c00082{font-size:60.670337pt;}
.fs6_c00082{font-size:60.672612pt;}
.fs11_c00082{font-size:60.676494pt;}
.fs2_c00082{font-size:61.603727pt;}
.fsa_c00082{font-size:61.606037pt;}
.fsc_c00082{font-size:62.533333pt;}
.fs3_c00082{font-size:62.537116pt;}
.fs19_c00082{font-size:62.544620pt;}
.fsd_c00082{font-size:63.466667pt;}
.fs4_c00082{font-size:63.470506pt;}
.fs7_c00082{font-size:63.472886pt;}
.fs8_c00082{font-size:63.474790pt;}
.fsb_c00082{font-size:64.409305pt;}
.fs10_c00082{font-size:64.412879pt;}
.fs9_c00082{font-size:65.340683pt;}
.fs15_c00082{font-size:65.345125pt;}
.fsf_c00082{font-size:65.346399pt;}
.fse_c00082{font-size:68.143178pt;}
.fs1a_c00082{font-size:70.010114pt;}
.fs1_c00082{font-size:124.163370pt;}
.y0_c00082{bottom:0.000000pt;}
.ye0_c00082{bottom:111.637568pt;}
.ydf_c00082{bottom:112.193120pt;}
.yde_c00082{bottom:113.193128pt;}
.ydd_c00082{bottom:114.152864pt;}
.ydc_c00082{bottom:114.454664pt;}
.ydb_c00082{bottom:114.572720pt;}
.yda_c00082{bottom:115.307960pt;}
.yd9_c00082{bottom:116.649560pt;}
.yd8_c00082{bottom:117.146744pt;}
.yd7_c00082{bottom:118.088000pt;}
.yd6_c00082{bottom:136.218729pt;}
.yd5_c00082{bottom:136.634549pt;}
.yd4_c00082{bottom:136.723743pt;}
.yd3_c00082{bottom:137.507692pt;}
.yd2_c00082{bottom:138.136624pt;}
.yd1_c00082{bottom:138.678833pt;}
.yd0_c00082{bottom:139.324425pt;}
.ycf_c00082{bottom:139.859109pt;}
.yce_c00082{bottom:141.124000pt;}
.ycd_c00082{bottom:155.961679pt;}
.ycc_c00082{bottom:156.778892pt;}
.ycb_c00082{bottom:157.773335pt;}
.yca_c00082{bottom:158.100320pt;}
.yc9_c00082{bottom:158.871739pt;}
.yc8_c00082{bottom:159.375472pt;}
.yc7_c00082{bottom:159.868319pt;}
.yc6_c00082{bottom:160.416308pt;}
.yc5_c00082{bottom:160.931511pt;}
.yc4_c00082{bottom:161.514813pt;}
.yc3_c00082{bottom:176.355825pt;}
.yc2_c00082{bottom:176.863267pt;}
.yc1_c00082{bottom:177.220588pt;}
.yc0_c00082{bottom:177.793791pt;}
.ybf_c00082{bottom:178.878953pt;}
.ybe_c00082{bottom:179.593080pt;}
.ybd_c00082{bottom:180.789439pt;}
.ybc_c00082{bottom:181.490965pt;}
.ybb_c00082{bottom:181.678581pt;}
.yba_c00082{bottom:195.089275pt;}
.yb9_c00082{bottom:195.975916pt;}
.yb8_c00082{bottom:196.569223pt;}
.yb7_c00082{bottom:197.285016pt;}
.yb6_c00082{bottom:197.923213pt;}
.yb5_c00082{bottom:198.688204pt;}
.yb4_c00082{bottom:199.601775pt;}
.yb3_c00082{bottom:200.121792pt;}
.yb2_c00082{bottom:201.011271pt;}
.yb1_c00082{bottom:201.417035pt;}
.yb0_c00082{bottom:201.941333pt;}
.yaf_c00082{bottom:216.137088pt;}
.yae_c00082{bottom:216.668117pt;}
.yad_c00082{bottom:217.081856pt;}
.yac_c00082{bottom:217.531264pt;}
.yab_c00082{bottom:218.335381pt;}
.yaa_c00082{bottom:218.653995pt;}
.ya9_c00082{bottom:219.783787pt;}
.ya8_c00082{bottom:220.319787pt;}
.ya7_c00082{bottom:221.004139pt;}
.ya6_c00082{bottom:221.522667pt;}
.ya5_c00082{bottom:236.527840pt;}
.ya4_c00082{bottom:236.923876pt;}
.ya3_c00082{bottom:237.478701pt;}
.ya2_c00082{bottom:238.231405pt;}
.ya1_c00082{bottom:238.675372pt;}
.ya0_c00082{bottom:239.254467pt;}
.y9f_c00082{bottom:240.002256pt;}
.y9e_c00082{bottom:240.526985pt;}
.y9d_c00082{bottom:241.000972pt;}
.y9c_c00082{bottom:241.708000pt;}
.y9b_c00082{bottom:242.164000pt;}
.y9a_c00082{bottom:257.045448pt;}
.y99_c00082{bottom:258.420384pt;}
.y98_c00082{bottom:259.336080pt;}
.y97_c00082{bottom:259.766232pt;}
.y96_c00082{bottom:260.435880pt;}
.y95_c00082{bottom:260.977728pt;}
.y94_c00082{bottom:261.750720pt;}
.y93_c00082{bottom:262.451544pt;}
.y92_c00082{bottom:276.683755pt;}
.y91_c00082{bottom:278.459080pt;}
.y90_c00082{bottom:279.010523pt;}
.y8f_c00082{bottom:279.367691pt;}
.y8e_c00082{bottom:280.217760pt;}
.y8d_c00082{bottom:281.743856pt;}
.y8c_c00082{bottom:282.318533pt;}
.y8b_c00082{bottom:282.959397pt;}
.y8a_c00082{bottom:297.489309pt;}
.y89_c00082{bottom:298.126453pt;}
.y88_c00082{bottom:299.303795pt;}
.y87_c00082{bottom:300.546963pt;}
.y86_c00082{bottom:301.212597pt;}
.y85_c00082{bottom:302.424779pt;}
.y84_c00082{bottom:318.302221pt;}
.y83_c00082{bottom:318.982213pt;}
.y82_c00082{bottom:319.646149pt;}
.y81_c00082{bottom:319.898077pt;}
.y80_c00082{bottom:320.956549pt;}
.y7f_c00082{bottom:321.466309pt;}
.y7e_c00082{bottom:322.157557pt;}
.y7d_c00082{bottom:322.585333pt;}
.y7c_c00082{bottom:337.907867pt;}
.y7b_c00082{bottom:338.516160pt;}
.y7a_c00082{bottom:339.468987pt;}
.y79_c00082{bottom:339.770907pt;}
.y78_c00082{bottom:340.306133pt;}
.y77_c00082{bottom:340.848000pt;}
.y76_c00082{bottom:341.278080pt;}
.y75_c00082{bottom:341.921413pt;}
.y74_c00082{bottom:342.246560pt;}
.y73_c00082{bottom:357.948880pt;}
.y72_c00082{bottom:358.591947pt;}
.y71_c00082{bottom:359.174933pt;}
.y70_c00082{bottom:359.820880pt;}
.y6f_c00082{bottom:360.285147pt;}
.y6e_c00082{bottom:361.187760pt;}
.y6d_c00082{bottom:361.939973pt;}
.y6c_c00082{bottom:362.693147pt;}
.y6b_c00082{bottom:363.186400pt;}
.y6a_c00082{bottom:363.604000pt;}
.y69_c00082{bottom:378.055744pt;}
.y68_c00082{bottom:378.576783pt;}
.y67_c00082{bottom:378.954228pt;}
.y66_c00082{bottom:379.640688pt;}
.y65_c00082{bottom:380.884000pt;}
.y64_c00082{bottom:401.550667pt;}
.y63_c00082{bottom:405.849333pt;}
.y62_c00082{bottom:431.002667pt;}
.y61_c00082{bottom:448.929328pt;}
.y60_c00082{bottom:449.250288pt;}
.y5f_c00082{bottom:450.051237pt;}
.y5e_c00082{bottom:450.969305pt;}
.y5d_c00082{bottom:451.467405pt;}
.y5c_c00082{bottom:451.728344pt;}
.y5b_c00082{bottom:452.453428pt;}
.y5a_c00082{bottom:453.132000pt;}
.y59_c00082{bottom:467.981741pt;}
.y58_c00082{bottom:468.917165pt;}
.y57_c00082{bottom:469.315307pt;}
.y56_c00082{bottom:469.860523pt;}
.y55_c00082{bottom:470.327917pt;}
.y54_c00082{bottom:470.675752pt;}
.y53_c00082{bottom:470.942835pt;}
.y52_c00082{bottom:471.190784pt;}
.y51_c00082{bottom:471.940923pt;}
.y50_c00082{bottom:472.110715pt;}
.y4f_c00082{bottom:472.576000pt;}
.y4e_c00082{bottom:547.276833pt;}
.y4d_c00082{bottom:547.920953pt;}
.y4c_c00082{bottom:548.508013pt;}
.y4b_c00082{bottom:548.914993pt;}
.y4a_c00082{bottom:549.501773pt;}
.y49_c00082{bottom:550.013353pt;}
.y48_c00082{bottom:550.354133pt;}
.y47_c00082{bottom:551.201173pt;}
.y46_c00082{bottom:551.777333pt;}
.y45_c00082{bottom:566.831221pt;}
.y44_c00082{bottom:567.969184pt;}
.y43_c00082{bottom:568.572043pt;}
.y42_c00082{bottom:568.798688pt;}
.y41_c00082{bottom:569.578357pt;}
.y40_c00082{bottom:571.191563pt;}
.y3f_c00082{bottom:572.164000pt;}
.y3e_c00082{bottom:588.768317pt;}
.y3d_c00082{bottom:589.600499pt;}
.y3c_c00082{bottom:590.047739pt;}
.y3b_c00082{bottom:590.424571pt;}
.y3a_c00082{bottom:591.057520pt;}
.y39_c00082{bottom:592.183584pt;}
.y38_c00082{bottom:592.808368pt;}
.y37_c00082{bottom:608.317704pt;}
.y36_c00082{bottom:609.155445pt;}
.y35_c00082{bottom:609.743427pt;}
.y34_c00082{bottom:610.162531pt;}
.y33_c00082{bottom:610.734421pt;}
.y32_c00082{bottom:611.228472pt;}
.y31_c00082{bottom:611.870213pt;}
.y30_c00082{bottom:612.142541pt;}
.y2f_c00082{bottom:612.492000pt;}
.y2e_c00082{bottom:628.315024pt;}
.y2d_c00082{bottom:629.141988pt;}
.y2c_c00082{bottom:629.968541pt;}
.y2b_c00082{bottom:630.499068pt;}
.y2a_c00082{bottom:631.188400pt;}
.y29_c00082{bottom:631.443208pt;}
.y28_c00082{bottom:632.088403pt;}
.y27_c00082{bottom:632.518396pt;}
.y26_c00082{bottom:647.868796pt;}
.y25_c00082{bottom:647.879279pt;}
.y24_c00082{bottom:648.805401pt;}
.y23_c00082{bottom:649.198315pt;}
.y22_c00082{bottom:649.883183pt;}
.y21_c00082{bottom:650.649509pt;}
.y20_c00082{bottom:651.372101pt;}
.y1f_c00082{bottom:651.783400pt;}
.y1e_c00082{bottom:652.346592pt;}
.y1d_c00082{bottom:652.841183pt;}
.y1c_c00082{bottom:667.757773pt;}
.y1b_c00082{bottom:668.228443pt;}
.y1a_c00082{bottom:669.269689pt;}
.y19_c00082{bottom:669.521727pt;}
.y18_c00082{bottom:669.965164pt;}
.y17_c00082{bottom:670.245445pt;}
.y16_c00082{bottom:671.106467pt;}
.y15_c00082{bottom:671.287293pt;}
.y14_c00082{bottom:671.674653pt;}
.y13_c00082{bottom:672.479891pt;}
.y12_c00082{bottom:690.178833pt;}
.y11_c00082{bottom:690.354051pt;}
.y10_c00082{bottom:690.628012pt;}
.yf_c00082{bottom:690.783352pt;}
.ye_c00082{bottom:691.403948pt;}
.yd_c00082{bottom:691.598705pt;}
.yc_c00082{bottom:692.159977pt;}
.yb_c00082{bottom:709.338329pt;}
.ya_c00082{bottom:709.879896pt;}
.y9_c00082{bottom:710.220148pt;}
.y8_c00082{bottom:710.748265pt;}
.y7_c00082{bottom:711.466653pt;}
.y6_c00082{bottom:711.793735pt;}
.y5_c00082{bottom:712.081333pt;}
.y4_c00082{bottom:753.423264pt;}
.y3_c00082{bottom:757.084269pt;}
.y2_c00082{bottom:761.288000pt;}
.y1_c00082{bottom:803.280000pt;}
.h2_c00082{height:42.933333pt;}
.h14_c00082{height:54.142102pt;}
.h18_c00082{height:55.073715pt;}
.h1a_c00082{height:56.010107pt;}
.h16_c00082{height:57.876040pt;}
.h15_c00082{height:59.743009pt;}
.h19_c00082{height:59.744114pt;}
.h7_c00082{height:60.670337pt;}
.h8_c00082{height:60.672612pt;}
.h13_c00082{height:60.676494pt;}
.h4_c00082{height:61.603727pt;}
.hc_c00082{height:61.606037pt;}
.he_c00082{height:62.533333pt;}
.h5_c00082{height:62.537116pt;}
.h1b_c00082{height:62.544620pt;}
.hf_c00082{height:63.466667pt;}
.h6_c00082{height:63.470506pt;}
.h9_c00082{height:63.472886pt;}
.ha_c00082{height:63.474790pt;}
.hd_c00082{height:64.409305pt;}
.h12_c00082{height:64.412879pt;}
.hb_c00082{height:65.340683pt;}
.h17_c00082{height:65.345125pt;}
.h11_c00082{height:65.346399pt;}
.h10_c00082{height:68.143178pt;}
.h1c_c00082{height:70.010114pt;}
.h3_c00082{height:124.163370pt;}
.h1_c00082{height:893.333333pt;}
.h0_c00082{height:893.466667pt;}
.w0_c00082{width:627.066667pt;}
.w1_c00082{width:627.333333pt;}
.x0_c00082{left:0.000000pt;}
.x8a_c00082{left:30.057333pt;}
.x8b_c00082{left:82.349333pt;}
.x7f_c00082{left:97.776517pt;}
.x67_c00082{left:104.113005pt;}
.x32_c00082{left:106.546667pt;}
.x79_c00082{left:108.757333pt;}
.x87_c00082{left:110.400000pt;}
.x6b_c00082{left:112.553384pt;}
.x13_c00082{left:113.841996pt;}
.x3f_c00082{left:115.996000pt;}
.x38_c00082{left:117.896000pt;}
.x27_c00082{left:119.358667pt;}
.xc_c00082{left:120.839297pt;}
.x5_c00082{left:122.996000pt;}
.x5a_c00082{left:133.410747pt;}
.x68_c00082{left:136.159853pt;}
.x53_c00082{left:137.054667pt;}
.x60_c00082{left:138.042667pt;}
.x28_c00082{left:144.320000pt;}
.x73_c00082{left:145.744000pt;}
.x6_c00082{left:149.141333pt;}
.x21_c00082{left:150.810216pt;}
.x39_c00082{left:156.306667pt;}
.x2d_c00082{left:157.492544pt;}
.x47_c00082{left:159.004000pt;}
.x40_c00082{left:161.358667pt;}
.x29_c00082{left:163.772000pt;}
.x69_c00082{left:164.900155pt;}
.x2_c00082{left:166.441333pt;}
.x5b_c00082{left:173.580613pt;}
.x14_c00082{left:175.771299pt;}
.x7_c00082{left:178.876000pt;}
.x85_c00082{left:180.329137pt;}
.x1b_c00082{left:182.273308pt;}
.xd_c00082{left:183.259343pt;}
.x88_c00082{left:184.805333pt;}
.x74_c00082{left:188.516000pt;}
.x6c_c00082{left:194.432051pt;}
.x22_c00082{left:196.856691pt;}
.x54_c00082{left:199.376000pt;}
.x5c_c00082{left:200.420080pt;}
.x48_c00082{left:201.656000pt;}
.xe_c00082{left:204.843812pt;}
.x1c_c00082{left:206.450376pt;}
.x64_c00082{left:208.339237pt;}
.x2a_c00082{left:209.610667pt;}
.x3a_c00082{left:212.776000pt;}
.x4e_c00082{left:213.840000pt;}
.x23_c00082{left:215.050756pt;}
.x49_c00082{left:217.005333pt;}
.x15_c00082{left:219.423664pt;}
.x80_c00082{left:220.386487pt;}
.x75_c00082{left:222.016000pt;}
.x2e_c00082{left:223.732429pt;}
.x8c_c00082{left:225.350667pt;}
.x6e_c00082{left:227.806667pt;}
.x41_c00082{left:232.650667pt;}
.x5d_c00082{left:234.316133pt;}
.x3b_c00082{left:235.494667pt;}
.x55_c00082{left:236.986667pt;}
.x6a_c00082{left:241.236085pt;}
.x8_c00082{left:244.184000pt;}
.x4a_c00082{left:246.305333pt;}
.x1d_c00082{left:248.986241pt;}
.x42_c00082{left:251.728000pt;}
.x89_c00082{left:254.233333pt;}
.x2f_c00082{left:260.941528pt;}
.x81_c00082{left:262.394749pt;}
.x24_c00082{left:264.261128pt;}
.x6f_c00082{left:267.164000pt;}
.x33_c00082{left:268.149333pt;}
.x3c_c00082{left:269.600000pt;}
.x65_c00082{left:270.513005pt;}
.xf_c00082{left:273.747989pt;}
.x43_c00082{left:276.573333pt;}
.x61_c00082{left:277.565333pt;}
.x7a_c00082{left:279.974667pt;}
.x56_c00082{left:282.117333pt;}
.x30_c00082{left:283.095261pt;}
.x16_c00082{left:285.696879pt;}
.x5e_c00082{left:286.644320pt;}
.x10_c00082{left:291.021704pt;}
.x9_c00082{left:292.194667pt;}
.x1e_c00082{left:294.043264pt;}
.x70_c00082{left:297.642667pt;}
.x4b_c00082{left:300.309333pt;}
.x25_c00082{left:302.186548pt;}
.x57_c00082{left:305.330667pt;}
.x17_c00082{left:307.297743pt;}
.x31_c00082{left:309.420827pt;}
.x76_c00082{left:312.541333pt;}
.x62_c00082{left:314.450667pt;}
.x2b_c00082{left:315.685333pt;}
.x34_c00082{left:316.878667pt;}
.x7b_c00082{left:320.237333pt;}
.x11_c00082{left:321.503712pt;}
.xa_c00082{left:323.126667pt;}
.x82_c00082{left:326.247848pt;}
.x66_c00082{left:329.400227pt;}
.x35_c00082{left:331.044000pt;}
.x1f_c00082{left:334.361943pt;}
.x3d_c00082{left:335.850667pt;}
.x58_c00082{left:337.628000pt;}
.x12_c00082{left:340.948137pt;}
.x5f_c00082{left:346.157067pt;}
.x4c_c00082{left:347.424000pt;}
.x44_c00082{left:348.902667pt;}
.x63_c00082{left:352.228000pt;}
.x7c_c00082{left:353.826667pt;}
.x86_c00082{left:356.569205pt;}
.x3_c00082{left:357.520000pt;}
.x83_c00082{left:359.926448pt;}
.x18_c00082{left:360.824569pt;}
.x50_c00082{left:361.936000pt;}
.x4d_c00082{left:366.304000pt;}
.x36_c00082{left:368.722667pt;}
.xb_c00082{left:372.360000pt;}
.x3e_c00082{left:374.988000pt;}
.x45_c00082{left:377.341333pt;}
.x84_c00082{left:380.979259pt;}
.x51_c00082{left:384.138667pt;}
.x8d_c00082{left:388.414667pt;}
.x71_c00082{left:389.826667pt;}
.x77_c00082{left:390.886667pt;}
.x59_c00082{left:398.930667pt;}
.x72_c00082{left:410.670667pt;}
.x20_c00082{left:411.966157pt;}
.x6d_c00082{left:412.892051pt;}
.x52_c00082{left:414.788000pt;}
.x2c_c00082{left:417.522667pt;}
.x26_c00082{left:420.259980pt;}
.x7d_c00082{left:422.726667pt;}
.x4f_c00082{left:430.264000pt;}
.x37_c00082{left:439.845333pt;}
.x19_c00082{left:440.936143pt;}
.x46_c00082{left:444.157333pt;}
.x78_c00082{left:449.934667pt;}
.x7e_c00082{left:469.392000pt;}
.x1a_c00082{left:477.178017pt;}
.x4_c00082{left:523.929333pt;}
.x1_c00082{left:551.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_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_ef4e99a7aa2876b3106553d3.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;}
.m87_c00083{transform:matrix(0.011170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011170,0.000000,0.000000,0.250000,0,0);}
.maf_c00083{transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);}
.mb7_c00083{transform:matrix(0.029684,0.000297,-0.002500,0.249988,0,0);-ms-transform:matrix(0.029684,0.000297,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.029684,0.000297,-0.002500,0.249988,0,0);}
.m6a_c00083{transform:matrix(0.073975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073975,0.000000,0.000000,0.250000,0,0);}
.m69_c00083{transform:matrix(0.091830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091830,0.000000,0.000000,0.250000,0,0);}
.m25_c00083{transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);}
.m26_c00083{transform:matrix(0.099930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099930,0.000000,0.000000,0.250000,0,0);}
.m3e_c00083{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m92_c00083{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);}
.m80_c00083{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m48_c00083{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);}
.ma9_c00083{transform:matrix(0.149360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149360,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);}
.mc7_c00083{transform:matrix(0.150717,0.001507,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150717,0.001507,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150717,0.001507,-0.002500,0.249988,0,0);}
.m40_c00083{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);}
.m9d_c00083{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);}
.m86_c00083{transform:matrix(0.154920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154920,0.000000,0.000000,0.250000,0,0);}
.maa_c00083{transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);}
.m7b_c00083{transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);}
.m56_c00083{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);}
.mcb_c00083{transform:matrix(0.157692,0.001577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157692,0.001577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157692,0.001577,-0.002500,0.249988,0,0);}
.m5e_c00083{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);}
.md_c00083{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);}
.m60_c00083{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);}
.ma_c00083{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);}
.m79_c00083{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);}
.m82_c00083{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);}
.m4a_c00083{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);}
.m1e_c00083{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);}
.mb5_c00083{transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);}
.m9_c00083{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);}
.m5_c00083{transform:matrix(0.165780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165780,0.000000,0.000000,0.250000,0,0);}
.mad_c00083{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_c00083{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);}
.m9a_c00083{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);}
.m94_c00083{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);}
.mbe_c00083{transform:matrix(0.170181,0.001702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170181,0.001702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170181,0.001702,-0.002500,0.249988,0,0);}
.m2_c00083{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_c00083{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);}
.m45_c00083{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);}
.m1d_c00083{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);}
.m75_c00083{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);}
.m38_c00083{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);}
.m24_c00083{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);}
.mae_c00083{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);}
.m49_c00083{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);}
.m66_c00083{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);}
.m8_c00083{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);}
.m57_c00083{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);}
.m29_c00083{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);}
.mcf_c00083{transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);}
.m6e_c00083{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);}
.m81_c00083{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);}
.m9f_c00083{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);}
.mc5_c00083{transform:matrix(0.180091,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180091,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180091,0.001801,-0.002500,0.249988,0,0);}
.m37_c00083{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);}
.m70_c00083{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);}
.mc_c00083{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);}
.me_c00083{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);}
.m83_c00083{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);}
.m47_c00083{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);}
.m44_c00083{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);}
.mb2_c00083{transform:matrix(0.185011,0.001850,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185011,0.001850,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185011,0.001850,-0.002500,0.249988,0,0);}
.m22_c00083{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);}
.mbf_c00083{transform:matrix(0.185746,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185746,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185746,0.001857,-0.002500,0.249988,0,0);}
.ma2_c00083{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);}
.m71_c00083{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);}
.ma3_c00083{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);}
.m4f_c00083{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);}
.m12_c00083{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);}
.m7d_c00083{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);}
.m97_c00083{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);}
.m19_c00083{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);}
.m89_c00083{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);}
.m91_c00083{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);}
.m6_c00083{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);}
.m84_c00083{transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00083{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);}
.m7e_c00083{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);}
.m3c_c00083{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);}
.m35_c00083{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);}
.mc1_c00083{transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);}
.m33_c00083{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);}
.m5a_c00083{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);}
.ma5_c00083{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);}
.m21_c00083{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);}
.m3d_c00083{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);}
.m34_c00083{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);}
.m74_c00083{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);}
.m8c_c00083{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);}
.m36_c00083{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);}
.m95_c00083{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);}
.m59_c00083{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);}
.m93_c00083{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);}
.ma0_c00083{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);}
.m18_c00083{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);}
.m76_c00083{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);}
.m99_c00083{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);}
.mc8_c00083{transform:matrix(0.197820,0.001978,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197820,0.001978,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197820,0.001978,-0.002500,0.249988,0,0);}
.m30_c00083{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);}
.mb4_c00083{transform:matrix(0.197915,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197915,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197915,0.001979,-0.002500,0.249988,0,0);}
.m5c_c00083{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);}
.m3b_c00083{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);}
.m55_c00083{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);}
.m67_c00083{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);}
.mb6_c00083{transform:matrix(0.198780,0.001988,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198780,0.001988,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198780,0.001988,-0.002500,0.249988,0,0);}
.m77_c00083{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);}
.m2a_c00083{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);}
.m72_c00083{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);}
.m9e_c00083{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);}
.m7f_c00083{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);}
.mc0_c00083{transform:matrix(0.201325,0.002013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201325,0.002013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201325,0.002013,-0.002500,0.249988,0,0);}
.m7c_c00083{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);}
.m9b_c00083{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);}
.mc2_c00083{transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);}
.mc6_c00083{transform:matrix(0.202920,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202920,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202920,0.002029,-0.002500,0.249988,0,0);}
.m5b_c00083{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);}
.m39_c00083{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);}
.m4d_c00083{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);}
.m61_c00083{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.m68_c00083{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);}
.m17_c00083{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);}
.m11_c00083{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);}
.mb9_c00083{transform:matrix(0.205370,0.002054,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205370,0.002054,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205370,0.002054,-0.002500,0.249988,0,0);}
.m1b_c00083{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);}
.ma7_c00083{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);}
.m6d_c00083{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);}
.m14_c00083{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);}
.m96_c00083{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);}
.m65_c00083{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);}
.ma1_c00083{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);}
.m2b_c00083{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);}
.mac_c00083{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);}
.m6b_c00083{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);}
.m42_c00083{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);}
.m4b_c00083{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);}
.m63_c00083{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);}
.m32_c00083{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);}
.m46_c00083{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);}
.m8f_c00083{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);}
.mcd_c00083{transform:matrix(0.214719,0.002147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214719,0.002147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214719,0.002147,-0.002500,0.249988,0,0);}
.m4c_c00083{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);}
.m4e_c00083{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);}
.m5f_c00083{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);}
.ma6_c00083{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);}
.mc9_c00083{transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);}
.m3f_c00083{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);}
.mc3_c00083{transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216504,0.002165,-0.002500,0.249988,0,0);}
.mbd_c00083{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);}
.m54_c00083{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m7a_c00083{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);}
.m16_c00083{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);}
.m7_c00083{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);}
.m6f_c00083{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);}
.mb0_c00083{transform:matrix(0.221834,0.002218,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221834,0.002218,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221834,0.002218,-0.002500,0.249988,0,0);}
.m41_c00083{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);}
.m52_c00083{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);}
.m31_c00083{transform:matrix(0.224465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224465,0.000000,0.000000,0.250000,0,0);}
.mb3_c00083{transform:matrix(0.227244,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227244,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227244,0.002272,-0.002500,0.249988,0,0);}
.m13_c00083{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);}
.mb_c00083{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);}
.m9c_c00083{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);}
.m8d_c00083{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);}
.m20_c00083{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);}
.mba_c00083{transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);}
.mb1_c00083{transform:matrix(0.232898,0.002329,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232898,0.002329,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232898,0.002329,-0.002500,0.249988,0,0);}
.m1a_c00083{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);}
.m6c_c00083{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);}
.m8a_c00083{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);}
.m53_c00083{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);}
.m27_c00083{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);}
.m2e_c00083{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);}
.m2d_c00083{transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{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);}
.m10_c00083{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);}
.m28_c00083{transform:matrix(0.242805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00083{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m43_c00083{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00083{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);}
.m88_c00083{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);}
.m50_c00083{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.ma4_c00083{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);}
.m0_c00083{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);}
.m90_c00083{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m64_c00083{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);}
.mb8_c00083{transform:matrix(0.262822,0.002628,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262822,0.002628,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262822,0.002628,-0.002500,0.249988,0,0);}
.mca_c00083{transform:matrix(0.265882,0.002659,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265882,0.002659,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265882,0.002659,-0.002500,0.249988,0,0);}
.m8e_c00083{transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);}
.mf_c00083{transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);}
.m98_c00083{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);}
.mbb_c00083{transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);}
.m58_c00083{transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);}
.m51_c00083{transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289280,0.000000,0.000000,0.250000,0,0);}
.m73_c00083{transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294060,0.000000,0.000000,0.250000,0,0);}
.m23_c00083{transform:matrix(0.303655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303655,0.000000,0.000000,0.250000,0,0);}
.m3a_c00083{transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);}
.m85_c00083{transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);}
.mc4_c00083{transform:matrix(0.353977,0.003540,-0.002500,0.249988,0,0);-ms-transform:matrix(0.353977,0.003540,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.353977,0.003540,-0.002500,0.249988,0,0);}
.mab_c00083{transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00083{transform:matrix(0.401425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401425,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);}
.m62_c00083{transform:matrix(0.415490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415490,0.000000,0.000000,0.250000,0,0);}
.mbc_c00083{transform:matrix(0.424629,0.004246,-0.002500,0.249988,0,0);-ms-transform:matrix(0.424629,0.004246,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.424629,0.004246,-0.002500,0.249988,0,0);}
.m1c_c00083{transform:matrix(0.427465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427465,0.000000,0.000000,0.250000,0,0);}
.m1f_c00083{transform:matrix(0.485725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00083{transform:matrix(0.534268,0.005343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.534268,0.005343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.534268,0.005343,-0.002500,0.249988,0,0);}
.ma8_c00083{transform:matrix(0.571850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571850,0.000000,0.000000,0.250000,0,0);}
.mce_c00083{transform:matrix(0.634158,0.006342,-0.002500,0.249988,0,0);-ms-transform:matrix(0.634158,0.006342,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.634158,0.006342,-0.002500,0.249988,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;}
.fs0_c00083{font-size:29.400000px;}
.fsb_c00083{font-size:51.452572px;}
.fsc_c00083{font-size:54.602730px;}
.fs7_c00083{font-size:67.200000px;}
.fs5_c00083{font-size:69.300000px;}
.fs6_c00083{font-size:70.350000px;}
.fsa_c00083{font-size:71.400000px;}
.fs4_c00083{font-size:72.450000px;}
.fs3_c00083{font-size:73.500000px;}
.fs1_c00083{font-size:74.550000px;}
.fs8_c00083{font-size:76.650000px;}
.fs2_c00083{font-size:78.750000px;}
.fs9_c00083{font-size:87.150000px;}
.y0_c00083{bottom:0.000000px;}
.y62_c00083{bottom:147.278520px;}
.y61_c00083{bottom:150.052650px;}
.y60_c00083{bottom:150.270390px;}
.y5f_c00083{bottom:150.541020px;}
.y5e_c00083{bottom:150.660015px;}
.y5d_c00083{bottom:163.672695px;}
.y5c_c00083{bottom:164.199405px;}
.y5b_c00083{bottom:164.486520px;}
.y5a_c00083{bottom:164.631375px;}
.y59_c00083{bottom:164.988465px;}
.y58_c00083{bottom:165.085890px;}
.y57_c00083{bottom:165.399480px;}
.y56_c00083{bottom:165.730095px;}
.y55_c00083{bottom:166.142490px;}
.y54_c00083{bottom:166.314480px;}
.y53_c00083{bottom:166.730880px;}
.y52_c00083{bottom:167.166810px;}
.y51_c00083{bottom:167.494800px;}
.y50_c00083{bottom:167.606700px;}
.y4f_c00083{bottom:167.684445px;}
.y4e_c00083{bottom:168.208980px;}
.y4d_c00083{bottom:181.283640px;}
.y4c_c00083{bottom:182.729100px;}
.y4b_c00083{bottom:183.217905px;}
.y4a_c00083{bottom:183.760665px;}
.y49_c00083{bottom:183.919905px;}
.y48_c00083{bottom:184.427610px;}
.y47_c00083{bottom:184.602960px;}
.y46_c00083{bottom:185.040390px;}
.y45_c00083{bottom:185.561490px;}
.y44_c00083{bottom:185.826105px;}
.y43_c00083{bottom:186.023220px;}
.y42_c00083{bottom:186.179940px;}
.y41_c00083{bottom:186.300000px;}
.y40_c00083{bottom:269.517000px;}
.y3f_c00083{bottom:269.772000px;}
.y3e_c00083{bottom:269.986500px;}
.y3d_c00083{bottom:270.390000px;}
.y3c_c00083{bottom:270.627000px;}
.y3b_c00083{bottom:270.907500px;}
.y3a_c00083{bottom:271.680000px;}
.y39_c00083{bottom:272.011500px;}
.y38_c00083{bottom:272.428500px;}
.y37_c00083{bottom:272.704500px;}
.y36_c00083{bottom:292.093500px;}
.y35_c00083{bottom:292.524000px;}
.y34_c00083{bottom:292.804500px;}
.y33_c00083{bottom:293.169000px;}
.y32_c00083{bottom:293.367000px;}
.y31_c00083{bottom:294.019500px;}
.y30_c00083{bottom:294.403500px;}
.y2f_c00083{bottom:294.564000px;}
.y2e_c00083{bottom:294.780000px;}
.y2d_c00083{bottom:295.113000px;}
.y2c_c00083{bottom:317.038500px;}
.y2b_c00083{bottom:338.374500px;}
.y2a_c00083{bottom:338.550000px;}
.y29_c00083{bottom:339.124500px;}
.y28_c00083{bottom:339.369000px;}
.y27_c00083{bottom:339.829500px;}
.y26_c00083{bottom:340.192500px;}
.y25_c00083{bottom:340.413000px;}
.y24_c00083{bottom:340.743000px;}
.y23_c00083{bottom:341.013000px;}
.y22_c00083{bottom:366.180000px;}
.y21_c00083{bottom:393.586500px;}
.y20_c00083{bottom:393.910500px;}
.y1f_c00083{bottom:394.143000px;}
.y1e_c00083{bottom:394.732500px;}
.y1d_c00083{bottom:394.957500px;}
.y1c_c00083{bottom:395.424000px;}
.y1b_c00083{bottom:395.665500px;}
.y1a_c00083{bottom:395.946000px;}
.y19_c00083{bottom:396.361500px;}
.y18_c00083{bottom:418.996500px;}
.y17_c00083{bottom:442.045500px;}
.y16_c00083{bottom:463.551000px;}
.y15_c00083{bottom:464.146500px;}
.y14_c00083{bottom:464.506500px;}
.y13_c00083{bottom:464.892000px;}
.y12_c00083{bottom:465.378000px;}
.y11_c00083{bottom:466.069500px;}
.y10_c00083{bottom:466.560000px;}
.yf_c00083{bottom:491.799000px;}
.ye_c00083{bottom:520.404000px;}
.yd_c00083{bottom:543.700500px;}
.yc_c00083{bottom:566.569500px;}
.yb_c00083{bottom:589.521000px;}
.ya_c00083{bottom:611.676000px;}
.y9_c00083{bottom:634.782000px;}
.y8_c00083{bottom:657.135000px;}
.y7_c00083{bottom:680.920500px;}
.y6_c00083{bottom:708.750000px;}
.y5_c00083{bottom:736.368000px;}
.y4_c00083{bottom:759.324000px;}
.y3_c00083{bottom:782.535000px;}
.y2_c00083{bottom:810.540000px;}
.y1_c00083{bottom:825.930000px;}
.h2_c00083{height:29.400000px;}
.hd_c00083{height:51.452572px;}
.he_c00083{height:54.602730px;}
.h9_c00083{height:67.200000px;}
.h7_c00083{height:69.300000px;}
.h8_c00083{height:70.350000px;}
.hc_c00083{height:71.400000px;}
.h6_c00083{height:72.450000px;}
.h5_c00083{height:73.500000px;}
.h3_c00083{height:74.550000px;}
.ha_c00083{height:76.650000px;}
.h4_c00083{height:78.750000px;}
.hb_c00083{height:87.150000px;}
.h0_c00083{height:1008.450000px;}
.h1_c00083{height:1008.750000px;}
.w0_c00083{width:711.720000px;}
.w1_c00083{width:711.750000px;}
.x0_c00083{left:0.000000px;}
.x79_c00083{left:103.964910px;}
.x84_c00083{left:113.586900px;}
.x85_c00083{left:130.586910px;}
.x7a_c00083{left:169.469715px;}
.x71_c00083{left:170.950500px;}
.x7b_c00083{left:179.194410px;}
.x72_c00083{left:182.956500px;}
.x7c_c00083{left:193.234695px;}
.x4f_c00083{left:195.481500px;}
.x33_c00083{left:198.180000px;}
.x86_c00083{left:200.275995px;}
.x61_c00083{left:202.939500px;}
.x36_c00083{left:204.930000px;}
.x3_c00083{left:206.010000px;}
.x13_c00083{left:207.090000px;}
.x73_c00083{left:218.340000px;}
.x1d_c00083{left:227.070000px;}
.x65_c00083{left:230.581500px;}
.x2c_c00083{left:231.660000px;}
.x24_c00083{left:233.550000px;}
.x14_c00083{left:235.710000px;}
.x4_c00083{left:240.300000px;}
.x3d_c00083{left:241.650000px;}
.x74_c00083{left:244.801500px;}
.x1e_c00083{left:247.590000px;}
.xc_c00083{left:250.020000px;}
.x34_c00083{left:254.340000px;}
.x5a_c00083{left:257.236500px;}
.x66_c00083{left:258.661500px;}
.x5_c00083{left:260.550000px;}
.x50_c00083{left:264.331500px;}
.x6c_c00083{left:267.477000px;}
.x37_c00083{left:274.050000px;}
.x25_c00083{left:278.100000px;}
.x42_c00083{left:280.530000px;}
.x2d_c00083{left:288.630000px;}
.x1b_c00083{left:291.330000px;}
.x15_c00083{left:293.760000px;}
.x1f_c00083{left:294.840000px;}
.x6d_c00083{left:297.651000px;}
.x6_c00083{left:302.940000px;}
.xd_c00083{left:305.370000px;}
.x48_c00083{left:310.500000px;}
.x43_c00083{left:314.280000px;}
.x3e_c00083{left:317.520000px;}
.x26_c00083{left:319.140000px;}
.x5b_c00083{left:322.506000px;}
.x2e_c00083{left:324.000000px;}
.xe_c00083{left:325.620000px;}
.x16_c00083{left:336.150000px;}
.x54_c00083{left:338.041500px;}
.x75_c00083{left:340.654500px;}
.x2_c00083{left:342.090000px;}
.x3f_c00083{left:343.980000px;}
.x7_c00083{left:345.600000px;}
.x62_c00083{left:350.901000px;}
.x1c_c00083{left:352.080000px;}
.x20_c00083{left:356.940000px;}
.x76_c00083{left:358.189500px;}
.x7d_c00083{left:362.519100px;}
.x38_c00083{left:364.500000px;}
.x67_c00083{left:366.931500px;}
.x27_c00083{left:368.010000px;}
.x21_c00083{left:371.790000px;}
.x1_c00083{left:376.110000px;}
.xf_c00083{left:379.350000px;}
.x2f_c00083{left:381.240000px;}
.x44_c00083{left:385.290000px;}
.x39_c00083{left:386.370000px;}
.x51_c00083{left:390.151500px;}
.x4d_c00083{left:391.152000px;}
.x6e_c00083{left:393.303000px;}
.x55_c00083{left:395.281500px;}
.x49_c00083{left:399.060000px;}
.x35_c00083{left:400.680000px;}
.x17_c00083{left:403.110000px;}
.x45_c00083{left:405.270000px;}
.x10_c00083{left:408.240000px;}
.x6f_c00083{left:414.829500px;}
.x8_c00083{left:416.070000px;}
.x22_c00083{left:417.690000px;}
.x56_c00083{left:423.091500px;}
.x68_c00083{left:424.711500px;}
.x52_c00083{left:430.381500px;}
.x40_c00083{left:431.730000px;}
.x3a_c00083{left:434.700000px;}
.x9_c00083{left:436.320000px;}
.x23_c00083{left:437.400000px;}
.x63_c00083{left:438.895500px;}
.x11_c00083{left:440.100000px;}
.x28_c00083{left:441.990000px;}
.x30_c00083{left:446.850000px;}
.x5f_c00083{left:447.933000px;}
.x70_c00083{left:451.548000px;}
.x4a_c00083{left:453.330000px;}
.x7e_c00083{left:455.421960px;}
.x69_c00083{left:460.081500px;}
.x57_c00083{left:462.241500px;}
.x18_c00083{left:466.560000px;}
.x29_c00083{left:467.640000px;}
.x41_c00083{left:470.070000px;}
.x53_c00083{left:471.151500px;}
.x3b_c00083{left:473.580000px;}
.x12_c00083{left:478.170000px;}
.x4b_c00083{left:479.520000px;}
.x5c_c00083{left:482.647500px;}
.x31_c00083{left:488.970000px;}
.x19_c00083{left:490.050000px;}
.x46_c00083{left:491.670000px;}
.x6a_c00083{left:494.529000px;}
.xa_c00083{left:503.820000px;}
.x7f_c00083{left:506.724480px;}
.x4c_c00083{left:508.680000px;}
.x64_c00083{left:510.736500px;}
.x5d_c00083{left:511.791000px;}
.x47_c00083{left:513.540000px;}
.x58_c00083{left:517.861500px;}
.x77_c00083{left:528.040500px;}
.x2a_c00083{left:529.470000px;}
.xb_c00083{left:532.710000px;}
.x1a_c00083{left:534.870000px;}
.x4e_c00083{left:540.229500px;}
.x3c_c00083{left:547.020000px;}
.x80_c00083{left:551.284365px;}
.x5e_c00083{left:552.312000px;}
.x32_c00083{left:555.120000px;}
.x81_c00083{left:569.370225px;}
.x2b_c00083{left:571.860000px;}
.x59_c00083{left:573.751500px;}
.x60_c00083{left:580.233000px;}
.x6b_c00083{left:583.363500px;}
.x87_c00083{left:596.650890px;}
.x82_c00083{left:605.282445px;}
.x83_c00083{left:671.154765px;}
.x78_c00083{left:672.586500px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.fs0_c00083{font-size:26.133333pt;}
.fsb_c00083{font-size:45.735620pt;}
.fsc_c00083{font-size:48.535760pt;}
.fs7_c00083{font-size:59.733333pt;}
.fs5_c00083{font-size:61.600000pt;}
.fs6_c00083{font-size:62.533333pt;}
.fsa_c00083{font-size:63.466667pt;}
.fs4_c00083{font-size:64.400000pt;}
.fs3_c00083{font-size:65.333333pt;}
.fs1_c00083{font-size:66.266667pt;}
.fs8_c00083{font-size:68.133333pt;}
.fs2_c00083{font-size:70.000000pt;}
.fs9_c00083{font-size:77.466667pt;}
.y0_c00083{bottom:0.000000pt;}
.y62_c00083{bottom:130.914240pt;}
.y61_c00083{bottom:133.380133pt;}
.y60_c00083{bottom:133.573680pt;}
.y5f_c00083{bottom:133.814240pt;}
.y5e_c00083{bottom:133.920013pt;}
.y5d_c00083{bottom:145.486840pt;}
.y5c_c00083{bottom:145.955027pt;}
.y5b_c00083{bottom:146.210240pt;}
.y5a_c00083{bottom:146.339000pt;}
.y59_c00083{bottom:146.656413pt;}
.y58_c00083{bottom:146.743013pt;}
.y57_c00083{bottom:147.021760pt;}
.y56_c00083{bottom:147.315640pt;}
.y55_c00083{bottom:147.682213pt;}
.y54_c00083{bottom:147.835093pt;}
.y53_c00083{bottom:148.205227pt;}
.y52_c00083{bottom:148.592720pt;}
.y51_c00083{bottom:148.884267pt;}
.y50_c00083{bottom:148.983733pt;}
.y4f_c00083{bottom:149.052840pt;}
.y4e_c00083{bottom:149.519093pt;}
.y4d_c00083{bottom:161.141013pt;}
.y4c_c00083{bottom:162.425867pt;}
.y4b_c00083{bottom:162.860360pt;}
.y4a_c00083{bottom:163.342813pt;}
.y49_c00083{bottom:163.484360pt;}
.y48_c00083{bottom:163.935653pt;}
.y47_c00083{bottom:164.091520pt;}
.y46_c00083{bottom:164.480347pt;}
.y45_c00083{bottom:164.943547pt;}
.y44_c00083{bottom:165.178760pt;}
.y43_c00083{bottom:165.353973pt;}
.y42_c00083{bottom:165.493280pt;}
.y41_c00083{bottom:165.600000pt;}
.y40_c00083{bottom:239.570667pt;}
.y3f_c00083{bottom:239.797333pt;}
.y3e_c00083{bottom:239.988000pt;}
.y3d_c00083{bottom:240.346667pt;}
.y3c_c00083{bottom:240.557333pt;}
.y3b_c00083{bottom:240.806667pt;}
.y3a_c00083{bottom:241.493333pt;}
.y39_c00083{bottom:241.788000pt;}
.y38_c00083{bottom:242.158667pt;}
.y37_c00083{bottom:242.404000pt;}
.y36_c00083{bottom:259.638667pt;}
.y35_c00083{bottom:260.021333pt;}
.y34_c00083{bottom:260.270667pt;}
.y33_c00083{bottom:260.594667pt;}
.y32_c00083{bottom:260.770667pt;}
.y31_c00083{bottom:261.350667pt;}
.y30_c00083{bottom:261.692000pt;}
.y2f_c00083{bottom:261.834667pt;}
.y2e_c00083{bottom:262.026667pt;}
.y2d_c00083{bottom:262.322667pt;}
.y2c_c00083{bottom:281.812000pt;}
.y2b_c00083{bottom:300.777333pt;}
.y2a_c00083{bottom:300.933333pt;}
.y29_c00083{bottom:301.444000pt;}
.y28_c00083{bottom:301.661333pt;}
.y27_c00083{bottom:302.070667pt;}
.y26_c00083{bottom:302.393333pt;}
.y25_c00083{bottom:302.589333pt;}
.y24_c00083{bottom:302.882667pt;}
.y23_c00083{bottom:303.122667pt;}
.y22_c00083{bottom:325.493333pt;}
.y21_c00083{bottom:349.854667pt;}
.y20_c00083{bottom:350.142667pt;}
.y1f_c00083{bottom:350.349333pt;}
.y1e_c00083{bottom:350.873333pt;}
.y1d_c00083{bottom:351.073333pt;}
.y1c_c00083{bottom:351.488000pt;}
.y1b_c00083{bottom:351.702667pt;}
.y1a_c00083{bottom:351.952000pt;}
.y19_c00083{bottom:352.321333pt;}
.y18_c00083{bottom:372.441333pt;}
.y17_c00083{bottom:392.929333pt;}
.y16_c00083{bottom:412.045333pt;}
.y15_c00083{bottom:412.574667pt;}
.y14_c00083{bottom:412.894667pt;}
.y13_c00083{bottom:413.237333pt;}
.y12_c00083{bottom:413.669333pt;}
.y11_c00083{bottom:414.284000pt;}
.y10_c00083{bottom:414.720000pt;}
.yf_c00083{bottom:437.154667pt;}
.ye_c00083{bottom:462.581333pt;}
.yd_c00083{bottom:483.289333pt;}
.yc_c00083{bottom:503.617333pt;}
.yb_c00083{bottom:524.018667pt;}
.ya_c00083{bottom:543.712000pt;}
.y9_c00083{bottom:564.250667pt;}
.y8_c00083{bottom:584.120000pt;}
.y7_c00083{bottom:605.262667pt;}
.y6_c00083{bottom:630.000000pt;}
.y5_c00083{bottom:654.549333pt;}
.y4_c00083{bottom:674.954667pt;}
.y3_c00083{bottom:695.586667pt;}
.y2_c00083{bottom:720.480000pt;}
.y1_c00083{bottom:734.160000pt;}
.h2_c00083{height:26.133333pt;}
.hd_c00083{height:45.735620pt;}
.he_c00083{height:48.535760pt;}
.h9_c00083{height:59.733333pt;}
.h7_c00083{height:61.600000pt;}
.h8_c00083{height:62.533333pt;}
.hc_c00083{height:63.466667pt;}
.h6_c00083{height:64.400000pt;}
.h5_c00083{height:65.333333pt;}
.h3_c00083{height:66.266667pt;}
.ha_c00083{height:68.133333pt;}
.h4_c00083{height:70.000000pt;}
.hb_c00083{height:77.466667pt;}
.h0_c00083{height:896.400000pt;}
.h1_c00083{height:896.666667pt;}
.w0_c00083{width:632.640000pt;}
.w1_c00083{width:632.666667pt;}
.x0_c00083{left:0.000000pt;}
.x79_c00083{left:92.413253pt;}
.x84_c00083{left:100.966133pt;}
.x85_c00083{left:116.077253pt;}
.x7a_c00083{left:150.639747pt;}
.x71_c00083{left:151.956000pt;}
.x7b_c00083{left:159.283920pt;}
.x72_c00083{left:162.628000pt;}
.x7c_c00083{left:171.764173pt;}
.x4f_c00083{left:173.761333pt;}
.x33_c00083{left:176.160000pt;}
.x86_c00083{left:178.023107pt;}
.x61_c00083{left:180.390667pt;}
.x36_c00083{left:182.160000pt;}
.x3_c00083{left:183.120000pt;}
.x13_c00083{left:184.080000pt;}
.x73_c00083{left:194.080000pt;}
.x1d_c00083{left:201.840000pt;}
.x65_c00083{left:204.961333pt;}
.x2c_c00083{left:205.920000pt;}
.x24_c00083{left:207.600000pt;}
.x14_c00083{left:209.520000pt;}
.x4_c00083{left:213.600000pt;}
.x3d_c00083{left:214.800000pt;}
.x74_c00083{left:217.601333pt;}
.x1e_c00083{left:220.080000pt;}
.xc_c00083{left:222.240000pt;}
.x34_c00083{left:226.080000pt;}
.x5a_c00083{left:228.654667pt;}
.x66_c00083{left:229.921333pt;}
.x5_c00083{left:231.600000pt;}
.x50_c00083{left:234.961333pt;}
.x6c_c00083{left:237.757333pt;}
.x37_c00083{left:243.600000pt;}
.x25_c00083{left:247.200000pt;}
.x42_c00083{left:249.360000pt;}
.x2d_c00083{left:256.560000pt;}
.x1b_c00083{left:258.960000pt;}
.x15_c00083{left:261.120000pt;}
.x1f_c00083{left:262.080000pt;}
.x6d_c00083{left:264.578667pt;}
.x6_c00083{left:269.280000pt;}
.xd_c00083{left:271.440000pt;}
.x48_c00083{left:276.000000pt;}
.x43_c00083{left:279.360000pt;}
.x3e_c00083{left:282.240000pt;}
.x26_c00083{left:283.680000pt;}
.x5b_c00083{left:286.672000pt;}
.x2e_c00083{left:288.000000pt;}
.xe_c00083{left:289.440000pt;}
.x16_c00083{left:298.800000pt;}
.x54_c00083{left:300.481333pt;}
.x75_c00083{left:302.804000pt;}
.x2_c00083{left:304.080000pt;}
.x3f_c00083{left:305.760000pt;}
.x7_c00083{left:307.200000pt;}
.x62_c00083{left:311.912000pt;}
.x1c_c00083{left:312.960000pt;}
.x20_c00083{left:317.280000pt;}
.x76_c00083{left:318.390667pt;}
.x7d_c00083{left:322.239200pt;}
.x38_c00083{left:324.000000pt;}
.x67_c00083{left:326.161333pt;}
.x27_c00083{left:327.120000pt;}
.x21_c00083{left:330.480000pt;}
.x1_c00083{left:334.320000pt;}
.xf_c00083{left:337.200000pt;}
.x2f_c00083{left:338.880000pt;}
.x44_c00083{left:342.480000pt;}
.x39_c00083{left:343.440000pt;}
.x51_c00083{left:346.801333pt;}
.x4d_c00083{left:347.690667pt;}
.x6e_c00083{left:349.602667pt;}
.x55_c00083{left:351.361333pt;}
.x49_c00083{left:354.720000pt;}
.x35_c00083{left:356.160000pt;}
.x17_c00083{left:358.320000pt;}
.x45_c00083{left:360.240000pt;}
.x10_c00083{left:362.880000pt;}
.x6f_c00083{left:368.737333pt;}
.x8_c00083{left:369.840000pt;}
.x22_c00083{left:371.280000pt;}
.x56_c00083{left:376.081333pt;}
.x68_c00083{left:377.521333pt;}
.x52_c00083{left:382.561333pt;}
.x40_c00083{left:383.760000pt;}
.x3a_c00083{left:386.400000pt;}
.x9_c00083{left:387.840000pt;}
.x23_c00083{left:388.800000pt;}
.x63_c00083{left:390.129333pt;}
.x11_c00083{left:391.200000pt;}
.x28_c00083{left:392.880000pt;}
.x30_c00083{left:397.200000pt;}
.x5f_c00083{left:398.162667pt;}
.x70_c00083{left:401.376000pt;}
.x4a_c00083{left:402.960000pt;}
.x7e_c00083{left:404.819520pt;}
.x69_c00083{left:408.961333pt;}
.x57_c00083{left:410.881333pt;}
.x18_c00083{left:414.720000pt;}
.x29_c00083{left:415.680000pt;}
.x41_c00083{left:417.840000pt;}
.x53_c00083{left:418.801333pt;}
.x3b_c00083{left:420.960000pt;}
.x12_c00083{left:425.040000pt;}
.x4b_c00083{left:426.240000pt;}
.x5c_c00083{left:429.020000pt;}
.x31_c00083{left:434.640000pt;}
.x19_c00083{left:435.600000pt;}
.x46_c00083{left:437.040000pt;}
.x6a_c00083{left:439.581333pt;}
.xa_c00083{left:447.840000pt;}
.x7f_c00083{left:450.421760pt;}
.x4c_c00083{left:452.160000pt;}
.x64_c00083{left:453.988000pt;}
.x5d_c00083{left:454.925333pt;}
.x47_c00083{left:456.480000pt;}
.x58_c00083{left:460.321333pt;}
.x77_c00083{left:469.369333pt;}
.x2a_c00083{left:470.640000pt;}
.xb_c00083{left:473.520000pt;}
.x1a_c00083{left:475.440000pt;}
.x4e_c00083{left:480.204000pt;}
.x3c_c00083{left:486.240000pt;}
.x80_c00083{left:490.030547pt;}
.x5e_c00083{left:490.944000pt;}
.x32_c00083{left:493.440000pt;}
.x81_c00083{left:506.106867pt;}
.x2b_c00083{left:508.320000pt;}
.x59_c00083{left:510.001333pt;}
.x60_c00083{left:515.762667pt;}
.x6b_c00083{left:518.545333pt;}
.x87_c00083{left:530.356347pt;}
.x82_c00083{left:538.028840pt;}
.x83_c00083{left:596.582013pt;}
.x78_c00083{left:597.854667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m41_c00084{transform:matrix(0.009344,0.000159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.009344,0.000159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.009344,0.000159,-0.004249,0.249964,0,0);}
.m56_c00084{transform:matrix(0.013243,0.000225,-0.004249,0.249964,0,0);-ms-transform:matrix(0.013243,0.000225,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.013243,0.000225,-0.004249,0.249964,0,0);}
.m9e_c00084{transform:matrix(0.020087,0.000321,-0.003999,0.249968,0,0);-ms-transform:matrix(0.020087,0.000321,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.020087,0.000321,-0.003999,0.249968,0,0);}
.m32_c00084{transform:matrix(0.041333,0.000413,-0.002500,0.249988,0,0);-ms-transform:matrix(0.041333,0.000413,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.041333,0.000413,-0.002500,0.249988,0,0);}
.m9d_c00084{transform:matrix(0.045804,0.000733,-0.003999,0.249968,0,0);-ms-transform:matrix(0.045804,0.000733,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.045804,0.000733,-0.003999,0.249968,0,0);}
.m99_c00084{transform:matrix(0.065892,0.001054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.065892,0.001054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.065892,0.001054,-0.003999,0.249968,0,0);}
.m34_c00084{transform:matrix(0.134488,0.001345,-0.002500,0.249988,0,0);-ms-transform:matrix(0.134488,0.001345,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.134488,0.001345,-0.002500,0.249988,0,0);}
.maf_c00084{transform:matrix(0.138812,0.002221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138812,0.002221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138812,0.002221,-0.003999,0.249968,0,0);}
.m5d_c00084{transform:matrix(0.149488,0.002541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149488,0.002541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149488,0.002541,-0.004249,0.249964,0,0);}
.ma4_c00084{transform:matrix(0.154660,0.002475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154660,0.002475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154660,0.002475,-0.003999,0.249968,0,0);}
.mc6_c00084{transform:matrix(0.154752,0.002940,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154752,0.002940,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154752,0.002940,-0.004749,0.249955,0,0);}
.m59_c00084{transform:matrix(0.155128,0.002637,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155128,0.002637,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155128,0.002637,-0.004249,0.249964,0,0);}
.m1d_c00084{transform:matrix(0.155477,0.001555,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155477,0.001555,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155477,0.001555,-0.002500,0.249988,0,0);}
.mc5_c00084{transform:matrix(0.156592,0.002975,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156592,0.002975,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156592,0.002975,-0.004749,0.249955,0,0);}
.m4b_c00084{transform:matrix(0.158837,0.002700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158837,0.002700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158837,0.002700,-0.004249,0.249964,0,0);}
.m3e_c00084{transform:matrix(0.160832,0.001608,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160832,0.001608,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160832,0.001608,-0.002500,0.249988,0,0);}
.m2f_c00084{transform:matrix(0.163182,0.001632,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163182,0.001632,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163182,0.001632,-0.002500,0.249988,0,0);}
.m25_c00084{transform:matrix(0.163457,0.001635,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163457,0.001635,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163457,0.001635,-0.002500,0.249988,0,0);}
.m62_c00084{transform:matrix(0.164131,0.002790,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164131,0.002790,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164131,0.002790,-0.004249,0.249964,0,0);}
.m2a_c00084{transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);}
.m2c_c00084{transform:matrix(0.165522,0.001655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165522,0.001655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165522,0.001655,-0.002500,0.249988,0,0);}
.m49_c00084{transform:matrix(0.165656,0.002816,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165656,0.002816,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165656,0.002816,-0.004249,0.249964,0,0);}
.ma3_c00084{transform:matrix(0.166844,0.002669,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166844,0.002669,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166844,0.002669,-0.003999,0.249968,0,0);}
.m48_c00084{transform:matrix(0.168481,0.002864,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168481,0.002864,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168481,0.002864,-0.004249,0.249964,0,0);}
.m5e_c00084{transform:matrix(0.170935,0.002906,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170935,0.002906,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170935,0.002906,-0.004249,0.249964,0,0);}
.m81_c00084{transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);}
.mc4_c00084{transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);}
.m47_c00084{transform:matrix(0.172975,0.002941,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172975,0.002941,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172975,0.002941,-0.004249,0.249964,0,0);}
.m4c_c00084{transform:matrix(0.173180,0.002944,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173180,0.002944,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173180,0.002944,-0.004249,0.249964,0,0);}
.m44_c00084{transform:matrix(0.174960,0.002974,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174960,0.002974,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174960,0.002974,-0.004249,0.249964,0,0);}
.m23_c00084{transform:matrix(0.176781,0.001768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176781,0.001768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176781,0.001768,-0.002500,0.249988,0,0);}
.m66_c00084{transform:matrix(0.177509,0.003018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177509,0.003018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177509,0.003018,-0.004249,0.249964,0,0);}
.m8b_c00084{transform:matrix(0.177858,0.002490,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177858,0.002490,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177858,0.002490,-0.003500,0.249976,0,0);}
.m4e_c00084{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);}
.m35_c00084{transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178566,0.001786,-0.002500,0.249988,0,0);}
.m55_c00084{transform:matrix(0.178609,0.003036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178609,0.003036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178609,0.003036,-0.004249,0.249964,0,0);}
.m86_c00084{transform:matrix(0.181242,0.002537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181242,0.002537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181242,0.002537,-0.003500,0.249976,0,0);}
.m27_c00084{transform:matrix(0.183001,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183001,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183001,0.001830,-0.002500,0.249988,0,0);}
.m58_c00084{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);}
.m28_c00084{transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186326,0.001863,-0.002500,0.249988,0,0);}
.m87_c00084{transform:matrix(0.186757,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186757,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186757,0.002615,-0.003500,0.249976,0,0);}
.mcd_c00084{transform:matrix(0.186981,0.003553,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186981,0.003553,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186981,0.003553,-0.004749,0.249955,0,0);}
.m5c_c00084{transform:matrix(0.187368,0.003185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187368,0.003185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187368,0.003185,-0.004249,0.249964,0,0);}
.m22_c00084{transform:matrix(0.187451,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187451,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187451,0.001875,-0.002500,0.249988,0,0);}
.m9_c00084{transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);}
.m37_c00084{transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);}
.m60_c00084{transform:matrix(0.187918,0.003195,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187918,0.003195,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187918,0.003195,-0.004249,0.249964,0,0);}
.ma8_c00084{transform:matrix(0.187991,0.003008,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187991,0.003008,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187991,0.003008,-0.003999,0.249968,0,0);}
.m1a_c00084{transform:matrix(0.188101,0.001881,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188101,0.001881,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188101,0.001881,-0.002500,0.249988,0,0);}
.m24_c00084{transform:matrix(0.188986,0.001890,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188986,0.001890,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188986,0.001890,-0.002500,0.249988,0,0);}
.m8a_c00084{transform:matrix(0.189356,0.002651,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189356,0.002651,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189356,0.002651,-0.003500,0.249976,0,0);}
.m69_c00084{transform:matrix(0.189373,0.003219,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189373,0.003219,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189373,0.003219,-0.004249,0.249964,0,0);}
.m1f_c00084{transform:matrix(0.189751,0.001898,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189751,0.001898,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189751,0.001898,-0.002500,0.249988,0,0);}
.m39_c00084{transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190105,0.001901,-0.002500,0.249988,0,0);}
.ma1_c00084{transform:matrix(0.191026,0.003056,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191026,0.003056,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191026,0.003056,-0.003999,0.249968,0,0);}
.maa_c00084{transform:matrix(0.191041,0.003057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191041,0.003057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191041,0.003057,-0.003999,0.249968,0,0);}
.m75_c00084{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);}
.mc2_c00084{transform:matrix(0.192155,0.003651,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192155,0.003651,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192155,0.003651,-0.004749,0.249955,0,0);}
.m2d_c00084{transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);}
.m67_c00084{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);}
.m61_c00084{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);}
.m12_c00084{transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194035,0.001940,-0.002500,0.249988,0,0);}
.m74_c00084{transform:matrix(0.194112,0.003300,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194112,0.003300,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194112,0.003300,-0.004249,0.249964,0,0);}
.m31_c00084{transform:matrix(0.194130,0.001941,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194130,0.001941,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194130,0.001941,-0.002500,0.249988,0,0);}
.m5f_c00084{transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);}
.m2e_c00084{transform:matrix(0.195030,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195030,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195030,0.001950,-0.002500,0.249988,0,0);}
.m93_c00084{transform:matrix(0.195057,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195057,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195057,0.003316,-0.004249,0.249964,0,0);}
.m92_c00084{transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);}
.m13_c00084{transform:matrix(0.196575,0.001966,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196575,0.001966,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196575,0.001966,-0.002500,0.249988,0,0);}
.m6c_c00084{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);}
.m1b_c00084{transform:matrix(0.197545,0.001975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197545,0.001975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197545,0.001975,-0.002500,0.249988,0,0);}
.m7d_c00084{transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);}
.m1_c00084{transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198615,0.001986,-0.002500,0.249988,0,0);}
.m96_c00084{transform:matrix(0.199341,0.003389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199341,0.003389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199341,0.003389,-0.004249,0.249964,0,0);}
.m76_c00084{transform:matrix(0.199411,0.003390,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199411,0.003390,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199411,0.003390,-0.004249,0.249964,0,0);}
.m95_c00084{transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);}
.m7b_c00084{transform:matrix(0.199570,0.002794,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199570,0.002794,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199570,0.002794,-0.003500,0.249976,0,0);}
.mb2_c00084{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);}
.ma9_c00084{transform:matrix(0.200494,0.003208,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200494,0.003208,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200494,0.003208,-0.003999,0.249968,0,0);}
.m4a_c00084{transform:matrix(0.200956,0.003416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200956,0.003416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200956,0.003416,-0.004249,0.249964,0,0);}
.m46_c00084{transform:matrix(0.201636,0.003428,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201636,0.003428,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201636,0.003428,-0.004249,0.249964,0,0);}
.mf_c00084{transform:matrix(0.202200,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202200,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202200,0.002022,-0.002500,0.249988,0,0);}
.m8d_c00084{transform:matrix(0.202605,0.002836,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202605,0.002836,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202605,0.002836,-0.003500,0.249976,0,0);}
.m51_c00084{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);}
.ma0_c00084{transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203444,0.003255,-0.003999,0.249968,0,0);}
.m14_c00084{transform:matrix(0.203665,0.002037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203665,0.002037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203665,0.002037,-0.002500,0.249988,0,0);}
.m85_c00084{transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);}
.m53_c00084{transform:matrix(0.206245,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206245,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206245,0.003506,-0.004249,0.249964,0,0);}
.m17_c00084{transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206355,0.002064,-0.002500,0.249988,0,0);}
.mb3_c00084{transform:matrix(0.207518,0.003320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207518,0.003320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207518,0.003320,-0.003999,0.249968,0,0);}
.m9c_c00084{transform:matrix(0.208068,0.003329,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208068,0.003329,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208068,0.003329,-0.003999,0.249968,0,0);}
.m2b_c00084{transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);}
.mc3_c00084{transform:matrix(0.208252,0.003957,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208252,0.003957,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208252,0.003957,-0.004749,0.249955,0,0);}
.m7a_c00084{transform:matrix(0.210439,0.002946,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210439,0.002946,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210439,0.002946,-0.003500,0.249976,0,0);}
.m5b_c00084{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);}
.m10_c00084{transform:matrix(0.210889,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210889,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210889,0.002109,-0.002500,0.249988,0,0);}
.mb8_c00084{transform:matrix(0.211512,0.004019,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211512,0.004019,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211512,0.004019,-0.004749,0.249955,0,0);}
.m7c_c00084{transform:matrix(0.212079,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212079,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212079,0.002969,-0.003500,0.249976,0,0);}
.m4_c00084{transform:matrix(0.212269,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212269,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212269,0.002123,-0.002500,0.249988,0,0);}
.me_c00084{transform:matrix(0.212459,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212459,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212459,0.002125,-0.002500,0.249988,0,0);}
.m88_c00084{transform:matrix(0.212549,0.002976,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212549,0.002976,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212549,0.002976,-0.003500,0.249976,0,0);}
.m79_c00084{transform:matrix(0.212694,0.002978,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212694,0.002978,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212694,0.002978,-0.003500,0.249976,0,0);}
.m50_c00084{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);}
.m6f_c00084{transform:matrix(0.213489,0.003629,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213489,0.003629,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213489,0.003629,-0.004249,0.249964,0,0);}
.m91_c00084{transform:matrix(0.213714,0.003633,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213714,0.003633,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213714,0.003633,-0.004249,0.249964,0,0);}
.mb0_c00084{transform:matrix(0.213973,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213973,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213973,0.003424,-0.003999,0.249968,0,0);}
.m72_c00084{transform:matrix(0.214789,0.003651,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214789,0.003651,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214789,0.003651,-0.004249,0.249964,0,0);}
.m1c_c00084{transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);}
.mbb_c00084{transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);}
.m7_c00084{transform:matrix(0.215709,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215709,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215709,0.002157,-0.002500,0.249988,0,0);}
.mae_c00084{transform:matrix(0.216167,0.003459,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216167,0.003459,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216167,0.003459,-0.003999,0.249968,0,0);}
.mb1_c00084{transform:matrix(0.217122,0.003474,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217122,0.003474,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217122,0.003474,-0.003999,0.249968,0,0);}
.m11_c00084{transform:matrix(0.218804,0.002188,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218804,0.002188,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218804,0.002188,-0.002500,0.249988,0,0);}
.m38_c00084{transform:matrix(0.219229,0.002192,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219229,0.002192,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219229,0.002192,-0.002500,0.249988,0,0);}
.m94_c00084{transform:matrix(0.219573,0.003733,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219573,0.003733,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219573,0.003733,-0.004249,0.249964,0,0);}
.ma7_c00084{transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);}
.m7e_c00084{transform:matrix(0.220478,0.003087,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220478,0.003087,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220478,0.003087,-0.003500,0.249976,0,0);}
.m4f_c00084{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);}
.m6b_c00084{transform:matrix(0.221528,0.003766,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221528,0.003766,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221528,0.003766,-0.004249,0.249964,0,0);}
.m16_c00084{transform:matrix(0.221994,0.002220,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221994,0.002220,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221994,0.002220,-0.002500,0.249988,0,0);}
.m68_c00084{transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);}
.m6d_c00084{transform:matrix(0.222173,0.003777,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222173,0.003777,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222173,0.003777,-0.004249,0.249964,0,0);}
.mad_c00084{transform:matrix(0.222272,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222272,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222272,0.003556,-0.003999,0.249968,0,0);}
.m6e_c00084{transform:matrix(0.222418,0.003781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222418,0.003781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222418,0.003781,-0.004249,0.249964,0,0);}
.m30_c00084{transform:matrix(0.223539,0.002235,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223539,0.002235,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223539,0.002235,-0.002500,0.249988,0,0);}
.m26_c00084{transform:matrix(0.224254,0.002243,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224254,0.002243,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224254,0.002243,-0.002500,0.249988,0,0);}
.m19_c00084{transform:matrix(0.225449,0.002254,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225449,0.002254,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225449,0.002254,-0.002500,0.249988,0,0);}
.m42_c00084{transform:matrix(0.225707,0.003837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225707,0.003837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225707,0.003837,-0.004249,0.249964,0,0);}
.mb6_c00084{transform:matrix(0.225774,0.004290,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225774,0.004290,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225774,0.004290,-0.004749,0.249955,0,0);}
.m6a_c00084{transform:matrix(0.226137,0.003844,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226137,0.003844,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226137,0.003844,-0.004249,0.249964,0,0);}
.m8e_c00084{transform:matrix(0.226173,0.003166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226173,0.003166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226173,0.003166,-0.003500,0.249976,0,0);}
.m65_c00084{transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);}
.m78_c00084{transform:matrix(0.227013,0.003178,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227013,0.003178,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227013,0.003178,-0.003500,0.249976,0,0);}
.m29_c00084{transform:matrix(0.227144,0.002271,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227144,0.002271,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227144,0.002271,-0.002500,0.249988,0,0);}
.m33_c00084{transform:matrix(0.227554,0.002276,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227554,0.002276,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227554,0.002276,-0.002500,0.249988,0,0);}
.md_c00084{transform:matrix(0.231668,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231668,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231668,0.002317,-0.002500,0.249988,0,0);}
.m54_c00084{transform:matrix(0.234706,0.003990,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234706,0.003990,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234706,0.003990,-0.004249,0.249964,0,0);}
.m8c_c00084{transform:matrix(0.234882,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234882,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234882,0.003288,-0.003500,0.249976,0,0);}
.m97_c00084{transform:matrix(0.235166,0.003998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235166,0.003998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235166,0.003998,-0.004249,0.249964,0,0);}
.m5a_c00084{transform:matrix(0.236471,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236471,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236471,0.004020,-0.004249,0.249964,0,0);}
.m9f_c00084{transform:matrix(0.236745,0.003788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236745,0.003788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236745,0.003788,-0.003999,0.249968,0,0);}
.m63_c00084{transform:matrix(0.236991,0.004029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236991,0.004029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236991,0.004029,-0.004249,0.249964,0,0);}
.ma5_c00084{transform:matrix(0.237655,0.003802,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237655,0.003802,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237655,0.003802,-0.003999,0.249968,0,0);}
.m64_c00084{transform:matrix(0.238845,0.004060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238845,0.004060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238845,0.004060,-0.004249,0.249964,0,0);}
.mc_c00084{transform:matrix(0.240058,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240058,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240058,0.002401,-0.002500,0.249988,0,0);}
.m52_c00084{transform:matrix(0.242170,0.004117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242170,0.004117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242170,0.004117,-0.004249,0.249964,0,0);}
.m4d_c00084{transform:matrix(0.242675,0.004125,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242675,0.004125,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242675,0.004125,-0.004249,0.249964,0,0);}
.m20_c00084{transform:matrix(0.242798,0.002428,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242798,0.002428,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242798,0.002428,-0.002500,0.249988,0,0);}
.m90_c00084{transform:matrix(0.243835,0.004145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243835,0.004145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243835,0.004145,-0.004249,0.249964,0,0);}
.m80_c00084{transform:matrix(0.244336,0.003421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244336,0.003421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244336,0.003421,-0.003500,0.249976,0,0);}
.mca_c00084{transform:matrix(0.247335,0.004699,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247335,0.004699,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247335,0.004699,-0.004749,0.249955,0,0);}
.m82_c00084{transform:matrix(0.248061,0.003473,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248061,0.003473,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248061,0.003473,-0.003500,0.249976,0,0);}
.m71_c00084{transform:matrix(0.249529,0.004242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249529,0.004242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249529,0.004242,-0.004249,0.249964,0,0);}
.m84_c00084{transform:matrix(0.250220,0.003503,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250220,0.003503,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250220,0.003503,-0.003500,0.249976,0,0);}
.m3a_c00084{transform:matrix(0.252602,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252602,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252602,0.002526,-0.002500,0.249988,0,0);}
.mb9_c00084{transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);}
.m3c_c00084{transform:matrix(0.255052,0.002551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255052,0.002551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255052,0.002551,-0.002500,0.249988,0,0);}
.m21_c00084{transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);}
.m40_c00084{transform:matrix(0.260247,0.002602,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260247,0.002602,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260247,0.002602,-0.002500,0.249988,0,0);}
.mc0_c00084{transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);}
.m43_c00084{transform:matrix(0.261517,0.004446,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261517,0.004446,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261517,0.004446,-0.004249,0.249964,0,0);}
.m18_c00084{transform:matrix(0.264312,0.002643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264312,0.002643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264312,0.002643,-0.002500,0.249988,0,0);}
.mab_c00084{transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);}
.mb7_c00084{transform:matrix(0.271471,0.005158,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271471,0.005158,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271471,0.005158,-0.004749,0.249955,0,0);}
.m3f_c00084{transform:matrix(0.271701,0.002717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271701,0.002717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271701,0.002717,-0.002500,0.249988,0,0);}
.mbf_c00084{transform:matrix(0.286803,0.005449,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286803,0.005449,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286803,0.005449,-0.004749,0.249955,0,0);}
.mc9_c00084{transform:matrix(0.292752,0.005562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292752,0.005562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292752,0.005562,-0.004749,0.249955,0,0);}
.m3b_c00084{transform:matrix(0.293970,0.002940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293970,0.002940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293970,0.002940,-0.002500,0.249988,0,0);}
.mc1_c00084{transform:matrix(0.295237,0.005609,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295237,0.005609,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295237,0.005609,-0.004749,0.249955,0,0);}
.m3d_c00084{transform:matrix(0.296435,0.002964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.296435,0.002964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.296435,0.002964,-0.002500,0.249988,0,0);}
.m83_c00084{transform:matrix(0.300976,0.004214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300976,0.004214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300976,0.004214,-0.003500,0.249976,0,0);}
.m73_c00084{transform:matrix(0.308975,0.005253,-0.004249,0.249964,0,0);-ms-transform:matrix(0.308975,0.005253,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.308975,0.005253,-0.004249,0.249964,0,0);}
.m1e_c00084{transform:matrix(0.309140,0.003091,-0.002500,0.249988,0,0);-ms-transform:matrix(0.309140,0.003091,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.309140,0.003091,-0.002500,0.249988,0,0);}
.mbd_c00084{transform:matrix(0.313948,0.005965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.313948,0.005965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.313948,0.005965,-0.004749,0.249955,0,0);}
.m8f_c00084{transform:matrix(0.315224,0.005359,-0.004249,0.249964,0,0);-ms-transform:matrix(0.315224,0.005359,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.315224,0.005359,-0.004249,0.249964,0,0);}
.mbe_c00084{transform:matrix(0.315548,0.005995,-0.004749,0.249955,0,0);-ms-transform:matrix(0.315548,0.005995,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.315548,0.005995,-0.004749,0.249955,0,0);}
.m57_c00084{transform:matrix(0.327868,0.005574,-0.004249,0.249964,0,0);-ms-transform:matrix(0.327868,0.005574,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.327868,0.005574,-0.004249,0.249964,0,0);}
.m0_c00084{transform:matrix(0.332313,0.003323,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332313,0.003323,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332313,0.003323,-0.002500,0.249988,0,0);}
.m15_c00084{transform:matrix(0.336378,0.003364,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336378,0.003364,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336378,0.003364,-0.002500,0.249988,0,0);}
.m6_c00084{transform:matrix(0.338953,0.003390,-0.002500,0.249988,0,0);-ms-transform:matrix(0.338953,0.003390,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.338953,0.003390,-0.002500,0.249988,0,0);}
.m70_c00084{transform:matrix(0.340056,0.005781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.340056,0.005781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.340056,0.005781,-0.004249,0.249964,0,0);}
.m89_c00084{transform:matrix(0.342541,0.004796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.342541,0.004796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.342541,0.004796,-0.003500,0.249976,0,0);}
.m77_c00084{transform:matrix(0.353015,0.004942,-0.003500,0.249976,0,0);-ms-transform:matrix(0.353015,0.004942,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.353015,0.004942,-0.003500,0.249976,0,0);}
.m98_c00084{transform:matrix(0.354814,0.006032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.354814,0.006032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.354814,0.006032,-0.004249,0.249964,0,0);}
.m9a_c00084{transform:matrix(0.382096,0.006114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.382096,0.006114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.382096,0.006114,-0.003999,0.249968,0,0);}
.m9b_c00084{transform:matrix(0.403208,0.006451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.403208,0.006451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.403208,0.006451,-0.003999,0.249968,0,0);}
.mb5_c00084{transform:matrix(0.405288,0.006485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.405288,0.006485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.405288,0.006485,-0.003999,0.249968,0,0);}
.m36_c00084{transform:matrix(0.412359,0.004124,-0.002500,0.249988,0,0);-ms-transform:matrix(0.412359,0.004124,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.412359,0.004124,-0.002500,0.249988,0,0);}
.m3_c00084{transform:matrix(0.424004,0.004240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.424004,0.004240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.424004,0.004240,-0.002500,0.249988,0,0);}
.mbc_c00084{transform:matrix(0.438041,0.008323,-0.004749,0.249955,0,0);-ms-transform:matrix(0.438041,0.008323,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.438041,0.008323,-0.004749,0.249955,0,0);}
.ma_c00084{transform:matrix(0.447983,0.004480,-0.002500,0.249988,0,0);-ms-transform:matrix(0.447983,0.004480,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.447983,0.004480,-0.002500,0.249988,0,0);}
.m8_c00084{transform:matrix(0.474016,0.004740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.474016,0.004740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.474016,0.004740,-0.002500,0.249988,0,0);}
.m2_c00084{transform:matrix(0.490265,0.004903,-0.002500,0.249988,0,0);-ms-transform:matrix(0.490265,0.004903,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.490265,0.004903,-0.002500,0.249988,0,0);}
.mc7_c00084{transform:matrix(0.499120,0.009483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.499120,0.009483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.499120,0.009483,-0.004749,0.249955,0,0);}
.m45_c00084{transform:matrix(0.505012,0.008585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.505012,0.008585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.505012,0.008585,-0.004249,0.249964,0,0);}
.ma2_c00084{transform:matrix(0.517129,0.008274,-0.003999,0.249968,0,0);-ms-transform:matrix(0.517129,0.008274,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.517129,0.008274,-0.003999,0.249968,0,0);}
.mce_c00084{transform:matrix(0.532419,0.010116,-0.004749,0.249955,0,0);-ms-transform:matrix(0.532419,0.010116,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.532419,0.010116,-0.004749,0.249955,0,0);}
.m5_c00084{transform:matrix(0.561007,0.005610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.561007,0.005610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.561007,0.005610,-0.002500,0.249988,0,0);}
.ma6_c00084{transform:matrix(0.602198,0.009635,-0.003999,0.249968,0,0);-ms-transform:matrix(0.602198,0.009635,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.602198,0.009635,-0.003999,0.249968,0,0);}
.mcb_c00084{transform:matrix(0.626747,0.011908,-0.004749,0.249955,0,0);-ms-transform:matrix(0.626747,0.011908,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.626747,0.011908,-0.004749,0.249955,0,0);}
.mba_c00084{transform:matrix(0.627297,0.011919,-0.004749,0.249955,0,0);-ms-transform:matrix(0.627297,0.011919,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.627297,0.011919,-0.004749,0.249955,0,0);}
.mb_c00084{transform:matrix(0.647388,0.006474,-0.002500,0.249988,0,0);-ms-transform:matrix(0.647388,0.006474,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.647388,0.006474,-0.002500,0.249988,0,0);}
.m7f_c00084{transform:matrix(0.702391,0.009833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.702391,0.009833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.702391,0.009833,-0.003500,0.249976,0,0);}
.mcf_c00084{transform:matrix(0.746000,0.014174,-0.004749,0.249955,0,0);-ms-transform:matrix(0.746000,0.014174,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.746000,0.014174,-0.004749,0.249955,0,0);}
.mac_c00084{transform:matrix(0.767862,0.012286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.767862,0.012286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.767862,0.012286,-0.003999,0.249968,0,0);}
.mcc_c00084{transform:matrix(0.786103,0.014936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.786103,0.014936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.786103,0.014936,-0.004749,0.249955,0,0);}
.mc8_c00084{transform:matrix(0.833085,0.015829,-0.004749,0.249955,0,0);-ms-transform:matrix(0.833085,0.015829,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.833085,0.015829,-0.004749,0.249955,0,0);}
.mb4_c00084{transform:matrix(1.141089,0.018257,-0.003999,0.249968,0,0);-ms-transform:matrix(1.141089,0.018257,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.141089,0.018257,-0.003999,0.249968,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;}
.fs1a_c00084{font-size:51.459286px;}
.fs1b_c00084{font-size:57.760423px;}
.fs4_c00084{font-size:63.003150px;}
.fs12_c00084{font-size:63.006174px;}
.fs10_c00084{font-size:63.009103px;}
.fs13_c00084{font-size:65.106379px;}
.fs6_c00084{font-size:66.153307px;}
.fs14_c00084{font-size:66.156482px;}
.fs18_c00084{font-size:66.158467px;}
.fsd_c00084{font-size:66.159558px;}
.fs5_c00084{font-size:67.203360px;}
.fs16_c00084{font-size:67.208601px;}
.fsf_c00084{font-size:68.259861px;}
.fs3_c00084{font-size:69.303465px;}
.fs15_c00084{font-size:69.310013px;}
.fs8_c00084{font-size:70.353517px;}
.fs19_c00084{font-size:70.359004px;}
.fs17_c00084{font-size:71.409139px;}
.fs11_c00084{font-size:71.410317px;}
.fs7_c00084{font-size:72.453622px;}
.fs9_c00084{font-size:73.503675px;}
.fse_c00084{font-size:73.510620px;}
.fsc_c00084{font-size:74.560772px;}
.fsa_c00084{font-size:81.904095px;}
.fs2_c00084{font-size:82.954147px;}
.fs1_c00084{font-size:85.054252px;}
.fsb_c00084{font-size:91.363199px;}
.fs0_c00084{font-size:131.256562px;}
.y0_c00084{bottom:0.000000px;}
.ycf_c00084{bottom:143.919148px;}
.yce_c00084{bottom:144.494758px;}
.ycd_c00084{bottom:144.795463px;}
.ycc_c00084{bottom:146.212981px;}
.ycb_c00084{bottom:146.360361px;}
.yca_c00084{bottom:147.043852px;}
.yc9_c00084{bottom:147.334051px;}
.yc8_c00084{bottom:148.942141px;}
.yc7_c00084{bottom:149.672872px;}
.yc6_c00084{bottom:150.267186px;}
.yc5_c00084{bottom:150.570645px;}
.yc4_c00084{bottom:151.686585px;}
.yc3_c00084{bottom:160.914702px;}
.yc2_c00084{bottom:161.328607px;}
.yc1_c00084{bottom:161.693949px;}
.yc0_c00084{bottom:162.094403px;}
.ybf_c00084{bottom:163.419738px;}
.ybe_c00084{bottom:163.669712px;}
.ybd_c00084{bottom:164.157175px;}
.ybc_c00084{bottom:164.372122px;}
.ybb_c00084{bottom:165.287144px;}
.yba_c00084{bottom:166.150180px;}
.yb9_c00084{bottom:166.399356px;}
.yb8_c00084{bottom:167.497660px;}
.yb7_c00084{bottom:167.772771px;}
.yb6_c00084{bottom:168.753000px;}
.yb5_c00084{bottom:188.836848px;}
.yb4_c00084{bottom:191.101476px;}
.yb3_c00084{bottom:193.024356px;}
.yb2_c00084{bottom:193.226832px;}
.yb1_c00084{bottom:194.037072px;}
.yb0_c00084{bottom:195.230304px;}
.yaf_c00084{bottom:195.852612px;}
.yae_c00084{bottom:197.675352px;}
.yad_c00084{bottom:198.720360px;}
.yac_c00084{bottom:216.140700px;}
.yab_c00084{bottom:217.252716px;}
.yaa_c00084{bottom:218.041272px;}
.ya9_c00084{bottom:219.543444px;}
.ya8_c00084{bottom:220.250484px;}
.ya7_c00084{bottom:220.857444px;}
.ya6_c00084{bottom:237.847200px;}
.ya5_c00084{bottom:239.120376px;}
.ya4_c00084{bottom:239.808936px;}
.ya3_c00084{bottom:240.257880px;}
.ya2_c00084{bottom:241.170864px;}
.ya1_c00084{bottom:241.654704px;}
.ya0_c00084{bottom:242.562072px;}
.y9f_c00084{bottom:243.273216px;}
.y9e_c00084{bottom:260.273604px;}
.y9d_c00084{bottom:260.664252px;}
.y9c_c00084{bottom:262.305252px;}
.y9b_c00084{bottom:263.727516px;}
.y9a_c00084{bottom:264.883404px;}
.y99_c00084{bottom:265.696500px;}
.y98_c00084{bottom:283.050246px;}
.y97_c00084{bottom:283.825523px;}
.y96_c00084{bottom:284.342484px;}
.y95_c00084{bottom:285.564801px;}
.y94_c00084{bottom:285.830894px;}
.y93_c00084{bottom:286.578553px;}
.y92_c00084{bottom:286.996958px;}
.y91_c00084{bottom:287.819460px;}
.y90_c00084{bottom:288.745952px;}
.y8f_c00084{bottom:289.173000px;}
.y8e_c00084{bottom:307.122381px;}
.y8d_c00084{bottom:307.705446px;}
.y8c_c00084{bottom:308.824221px;}
.y8b_c00084{bottom:309.227946px;}
.y8a_c00084{bottom:310.045245px;}
.y89_c00084{bottom:310.427844px;}
.y88_c00084{bottom:311.308647px;}
.y87_c00084{bottom:330.099846px;}
.y86_c00084{bottom:331.114329px;}
.y85_c00084{bottom:331.636650px;}
.y84_c00084{bottom:332.205951px;}
.y83_c00084{bottom:332.761086px;}
.y82_c00084{bottom:332.940597px;}
.y81_c00084{bottom:333.779874px;}
.y80_c00084{bottom:334.275102px;}
.y7f_c00084{bottom:352.695642px;}
.y7e_c00084{bottom:352.917360px;}
.y7d_c00084{bottom:353.776554px;}
.y7c_c00084{bottom:354.172152px;}
.y7b_c00084{bottom:354.810972px;}
.y7a_c00084{bottom:355.151298px;}
.y79_c00084{bottom:355.718235px;}
.y78_c00084{bottom:356.462055px;}
.y77_c00084{bottom:356.946000px;}
.y76_c00084{bottom:420.707897px;}
.y75_c00084{bottom:421.167294px;}
.y74_c00084{bottom:421.778735px;}
.y73_c00084{bottom:422.719966px;}
.y72_c00084{bottom:423.045470px;}
.y71_c00084{bottom:423.411477px;}
.y70_c00084{bottom:423.765465px;}
.y6f_c00084{bottom:444.088593px;}
.y6e_c00084{bottom:444.921060px;}
.y6d_c00084{bottom:445.394649px;}
.y6c_c00084{bottom:446.010606px;}
.y6b_c00084{bottom:446.537944px;}
.y6a_c00084{bottom:446.726241px;}
.y69_c00084{bottom:447.377484px;}
.y68_c00084{bottom:466.133646px;}
.y67_c00084{bottom:466.664137px;}
.y66_c00084{bottom:467.060169px;}
.y65_c00084{bottom:467.273340px;}
.y64_c00084{bottom:467.769518px;}
.y63_c00084{bottom:468.000340px;}
.y62_c00084{bottom:468.432629px;}
.y61_c00084{bottom:468.813048px;}
.y60_c00084{bottom:469.520296px;}
.y5f_c00084{bottom:488.983316px;}
.y5e_c00084{bottom:489.496631px;}
.y5d_c00084{bottom:489.745563px;}
.y5c_c00084{bottom:490.214283px;}
.y5b_c00084{bottom:490.773596px;}
.y5a_c00084{bottom:490.972182px;}
.y59_c00084{bottom:491.394717px;}
.y58_c00084{bottom:491.845479px;}
.y57_c00084{bottom:492.333529px;}
.y56_c00084{bottom:492.472198px;}
.y55_c00084{bottom:509.625066px;}
.y54_c00084{bottom:509.978818px;}
.y53_c00084{bottom:510.513882px;}
.y52_c00084{bottom:511.119058px;}
.y51_c00084{bottom:512.226195px;}
.y50_c00084{bottom:513.054924px;}
.y4f_c00084{bottom:514.234698px;}
.y4e_c00084{bottom:514.666723px;}
.y4d_c00084{bottom:515.426538px;}
.y4c_c00084{bottom:534.068267px;}
.y4b_c00084{bottom:534.632466px;}
.y4a_c00084{bottom:534.995026px;}
.y49_c00084{bottom:535.644957px;}
.y48_c00084{bottom:536.609901px;}
.y47_c00084{bottom:537.182622px;}
.y46_c00084{bottom:537.838375px;}
.y45_c00084{bottom:556.961328px;}
.y44_c00084{bottom:557.979543px;}
.y43_c00084{bottom:558.710959px;}
.y42_c00084{bottom:559.468513px;}
.y41_c00084{bottom:560.790000px;}
.y3d_c00084{bottom:597.340995px;}
.y3c_c00084{bottom:597.341295px;}
.y3e_c00084{bottom:597.341625px;}
.y40_c00084{bottom:597.341655px;}
.y3f_c00084{bottom:597.342255px;}
.y3b_c00084{bottom:623.611680px;}
.y3a_c00084{bottom:623.867160px;}
.y39_c00084{bottom:624.431400px;}
.y38_c00084{bottom:624.641355px;}
.y37_c00084{bottom:625.256640px;}
.y36_c00084{bottom:625.547460px;}
.y35_c00084{bottom:626.159790px;}
.y34_c00084{bottom:626.379375px;}
.y33_c00084{bottom:626.936865px;}
.y32_c00084{bottom:644.708610px;}
.y31_c00084{bottom:645.757335px;}
.y30_c00084{bottom:646.315245px;}
.y2f_c00084{bottom:646.595625px;}
.y2e_c00084{bottom:647.149785px;}
.y2d_c00084{bottom:648.328470px;}
.y2c_c00084{bottom:648.774975px;}
.y2b_c00084{bottom:649.344870px;}
.y2a_c00084{bottom:649.888905px;}
.y29_c00084{bottom:668.404950px;}
.y28_c00084{bottom:668.782050px;}
.y27_c00084{bottom:669.115665px;}
.y26_c00084{bottom:670.039260px;}
.y25_c00084{bottom:670.262550px;}
.y24_c00084{bottom:671.295555px;}
.y23_c00084{bottom:671.810355px;}
.y22_c00084{bottom:672.065940px;}
.y21_c00084{bottom:672.592995px;}
.y20_c00084{bottom:692.346450px;}
.y1f_c00084{bottom:692.809275px;}
.y1e_c00084{bottom:693.043920px;}
.y1d_c00084{bottom:693.456780px;}
.y1c_c00084{bottom:694.083570px;}
.y1b_c00084{bottom:694.979955px;}
.y16_c00084{bottom:717.060075px;}
.y17_c00084{bottom:717.060405px;}
.y18_c00084{bottom:717.061080px;}
.y19_c00084{bottom:717.061110px;}
.y1a_c00084{bottom:717.061125px;}
.y12_c00084{bottom:739.674030px;}
.y14_c00084{bottom:739.674390px;}
.y11_c00084{bottom:739.674600px;}
.y13_c00084{bottom:739.674660px;}
.y15_c00084{bottom:739.674720px;}
.yd_c00084{bottom:739.674810px;}
.y10_c00084{bottom:739.675185px;}
.ye_c00084{bottom:739.675440px;}
.yf_c00084{bottom:739.675455px;}
.yb_c00084{bottom:761.873820px;}
.yc_c00084{bottom:761.873850px;}
.ya_c00084{bottom:784.208655px;}
.y9_c00084{bottom:785.568090px;}
.y8_c00084{bottom:785.915775px;}
.y7_c00084{bottom:786.176355px;}
.y6_c00084{bottom:786.796740px;}
.y4_c00084{bottom:812.053260px;}
.y3_c00084{bottom:812.053515px;}
.y5_c00084{bottom:812.053590px;}
.y2_c00084{bottom:843.525840px;}
.y1_c00084{bottom:845.643000px;}
.h1c_c00084{height:51.459286px;}
.h1d_c00084{height:57.760423px;}
.h6_c00084{height:63.003150px;}
.h14_c00084{height:63.006174px;}
.h12_c00084{height:63.009103px;}
.h15_c00084{height:65.106379px;}
.h8_c00084{height:66.153307px;}
.h16_c00084{height:66.156482px;}
.h1a_c00084{height:66.158467px;}
.hf_c00084{height:66.159558px;}
.h7_c00084{height:67.203360px;}
.h18_c00084{height:67.208601px;}
.h11_c00084{height:68.259861px;}
.h5_c00084{height:69.303465px;}
.h17_c00084{height:69.310013px;}
.ha_c00084{height:70.353517px;}
.h1b_c00084{height:70.359004px;}
.h19_c00084{height:71.409139px;}
.h13_c00084{height:71.410317px;}
.h9_c00084{height:72.453622px;}
.hb_c00084{height:73.503675px;}
.h10_c00084{height:73.510620px;}
.he_c00084{height:74.560772px;}
.hc_c00084{height:81.904095px;}
.h4_c00084{height:82.954147px;}
.h3_c00084{height:85.054252px;}
.hd_c00084{height:91.363199px;}
.h2_c00084{height:131.256562px;}
.h1_c00084{height:1005.000000px;}
.h0_c00084{height:1005.150000px;}
.w0_c00084{width:705.450000px;}
.w1_c00084{width:705.750000px;}
.x0_c00084{left:0.000000px;}
.x84_c00084{left:80.537051px;}
.x7b_c00084{left:91.080000px;}
.x4a_c00084{left:118.141902px;}
.xd_c00084{left:119.608035px;}
.x77_c00084{left:126.763500px;}
.x60_c00084{left:128.631501px;}
.x43_c00084{left:130.191994px;}
.x56_c00084{left:131.597901px;}
.x3d_c00084{left:132.936179px;}
.x2f_c00084{left:134.026710px;}
.x1b_c00084{left:136.198290px;}
.x16_c00084{left:138.507300px;}
.x6_c00084{left:143.088555px;}
.x85_c00084{left:145.054374px;}
.x6f_c00084{left:148.863000px;}
.x69_c00084{left:154.504500px;}
.x7c_c00084{left:157.150500px;}
.x5b_c00084{left:164.059500px;}
.x78_c00084{left:165.444684px;}
.x61_c00084{left:166.684026px;}
.x71_c00084{left:172.869588px;}
.xe_c00084{left:174.150495px;}
.x21_c00084{left:175.874640px;}
.x27_c00084{left:178.254690px;}
.x30_c00084{left:180.474780px;}
.x3e_c00084{left:183.425121px;}
.x57_c00084{left:185.881517px;}
.x66_c00084{left:191.757075px;}
.x1_c00084{left:193.506000px;}
.x22_c00084{left:195.582555px;}
.x31_c00084{left:198.832920px;}
.x58_c00084{left:201.547343px;}
.x17_c00084{left:203.580810px;}
.x44_c00084{left:204.713270px;}
.x6a_c00084{left:209.004000px;}
.xf_c00084{left:213.302910px;}
.x7d_c00084{left:214.956000px;}
.x4b_c00084{left:216.121398px;}
.x1c_c00084{left:217.735980px;}
.x67_c00084{left:219.085575px;}
.x7_c00084{left:220.728615px;}
.x28_c00084{left:222.042870px;}
.x3f_c00084{left:227.441105px;}
.x72_c00084{left:229.580088px;}
.x62_c00084{left:231.240429px;}
.x3_c00084{left:232.472535px;}
.x23_c00084{left:235.211370px;}
.x51_c00084{left:240.978837px;}
.x59_c00084{left:245.541591px;}
.x32_c00084{left:249.864900px;}
.x8_c00084{left:253.387275px;}
.x4c_c00084{left:254.480300px;}
.x29_c00084{left:256.342335px;}
.x5c_c00084{left:257.685000px;}
.x73_c00084{left:259.820088px;}
.x10_c00084{left:269.735550px;}
.x39_c00084{left:272.130000px;}
.x7e_c00084{left:273.493500px;}
.x1d_c00084{left:274.714410px;}
.x45_c00084{left:278.436519px;}
.x5d_c00084{left:281.994000px;}
.xb_c00084{left:284.045445px;}
.x63_c00084{left:287.680206px;}
.x86_c00084{left:291.642552px;}
.x75_c00084{left:293.370696px;}
.x9_c00084{left:296.856645px;}
.x79_c00084{left:300.188472px;}
.x40_c00084{left:301.678154px;}
.x52_c00084{left:307.169691px;}
.x34_c00084{left:310.505430px;}
.x1e_c00084{left:312.250035px;}
.x11_c00084{left:313.748445px;}
.x3a_c00084{left:316.692000px;}
.x35_c00084{left:318.336210px;}
.x7f_c00084{left:321.652500px;}
.x4d_c00084{left:323.334312px;}
.x4_c00084{left:325.357320px;}
.x5e_c00084{left:327.624000px;}
.x46_c00084{left:330.274411px;}
.x24_c00084{left:331.887975px;}
.x1f_c00084{left:333.614325px;}
.x5a_c00084{left:336.287292px;}
.x7a_c00084{left:337.695372px;}
.x76_c00084{left:339.748452px;}
.x6b_c00084{left:341.631000px;}
.x33_c00084{left:343.019055px;}
.x74_c00084{left:344.940588px;}
.x2a_c00084{left:347.058120px;}
.x18_c00084{left:351.278085px;}
.xc_c00084{left:352.899330px;}
.x53_c00084{left:356.833107px;}
.x80_c00084{left:358.621500px;}
.x3b_c00084{left:359.716500px;}
.x12_c00084{left:361.810245px;}
.x4e_c00084{left:365.998673px;}
.x64_c00084{left:371.654382px;}
.x36_c00084{left:372.878670px;}
.x20_c00084{left:375.696405px;}
.x54_c00084{left:378.198657px;}
.x41_c00084{left:379.506432px;}
.x68_c00084{left:386.214075px;}
.x4f_c00084{left:388.673493px;}
.x2b_c00084{left:389.722845px;}
.x87_c00084{left:393.867738px;}
.x5_c00084{left:398.531640px;}
.x19_c00084{left:401.230080px;}
.x25_c00084{left:402.945345px;}
.x2_c00084{left:405.222000px;}
.x13_c00084{left:408.251895px;}
.x2c_c00084{left:411.310200px;}
.x6c_c00084{left:413.532000px;}
.x55_c00084{left:417.822875px;}
.x3c_c00084{left:419.611500px;}
.x42_c00084{left:422.932890px;}
.x37_c00084{left:424.720860px;}
.x1a_c00084{left:428.231280px;}
.x5f_c00084{left:433.089000px;}
.x50_c00084{left:435.373262px;}
.x47_c00084{left:437.265222px;}
.x38_c00084{left:439.032285px;}
.x81_c00084{left:441.532500px;}
.x6d_c00084{left:443.941500px;}
.x65_c00084{left:449.689974px;}
.x2d_c00084{left:454.199910px;}
.x26_c00084{left:457.665210px;}
.x14_c00084{left:463.334400px;}
.xa_c00084{left:466.703535px;}
.x48_c00084{left:470.681283px;}
.x82_c00084{left:481.837500px;}
.x70_c00084{left:487.794000px;}
.x6e_c00084{left:489.546000px;}
.x49_c00084{left:492.814166px;}
.x83_c00084{left:503.622000px;}
.x15_c00084{left:520.307100px;}
.x2e_c00084{left:534.919995px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.fs1a_c00084{font-size:45.741587pt;}
.fs1b_c00084{font-size:51.342598pt;}
.fs4_c00084{font-size:56.002800pt;}
.fs12_c00084{font-size:56.005488pt;}
.fs10_c00084{font-size:56.008091pt;}
.fs13_c00084{font-size:57.872337pt;}
.fs6_c00084{font-size:58.802940pt;}
.fs14_c00084{font-size:58.805762pt;}
.fs18_c00084{font-size:58.807526pt;}
.fsd_c00084{font-size:58.808496pt;}
.fs5_c00084{font-size:59.736320pt;}
.fs16_c00084{font-size:59.740979pt;}
.fsf_c00084{font-size:60.675432pt;}
.fs3_c00084{font-size:61.603080pt;}
.fs15_c00084{font-size:61.608901pt;}
.fs8_c00084{font-size:62.536460pt;}
.fs19_c00084{font-size:62.541337pt;}
.fs17_c00084{font-size:63.474790pt;}
.fs11_c00084{font-size:63.475837pt;}
.fs7_c00084{font-size:64.403220pt;}
.fs9_c00084{font-size:65.336600pt;}
.fse_c00084{font-size:65.342773pt;}
.fsc_c00084{font-size:66.276242pt;}
.fsa_c00084{font-size:72.803640pt;}
.fs2_c00084{font-size:73.737020pt;}
.fs1_c00084{font-size:75.603780pt;}
.fsb_c00084{font-size:81.211733pt;}
.fs0_c00084{font-size:116.672500pt;}
.y0_c00084{bottom:0.000000pt;}
.ycf_c00084{bottom:127.928132pt;}
.yce_c00084{bottom:128.439785pt;}
.ycd_c00084{bottom:128.707079pt;}
.ycc_c00084{bottom:129.967095pt;}
.ycb_c00084{bottom:130.098099pt;}
.yca_c00084{bottom:130.705647pt;}
.yc9_c00084{bottom:130.963601pt;}
.yc8_c00084{bottom:132.393015pt;}
.yc7_c00084{bottom:133.042553pt;}
.yc6_c00084{bottom:133.570832pt;}
.yc5_c00084{bottom:133.840573pt;}
.yc4_c00084{bottom:134.832520pt;}
.yc3_c00084{bottom:143.035291pt;}
.yc2_c00084{bottom:143.403207pt;}
.yc1_c00084{bottom:143.727955pt;}
.yc0_c00084{bottom:144.083913pt;}
.ybf_c00084{bottom:145.261989pt;}
.ybe_c00084{bottom:145.484188pt;}
.ybd_c00084{bottom:145.917489pt;}
.ybc_c00084{bottom:146.108553pt;}
.ybb_c00084{bottom:146.921905pt;}
.yba_c00084{bottom:147.689049pt;}
.yb9_c00084{bottom:147.910539pt;}
.yb8_c00084{bottom:148.886809pt;}
.yb7_c00084{bottom:149.131352pt;}
.yb6_c00084{bottom:150.002667pt;}
.yb5_c00084{bottom:167.854976pt;}
.yb4_c00084{bottom:169.867979pt;}
.yb3_c00084{bottom:171.577205pt;}
.yb2_c00084{bottom:171.757184pt;}
.yb1_c00084{bottom:172.477397pt;}
.yb0_c00084{bottom:173.538048pt;}
.yaf_c00084{bottom:174.091211pt;}
.yae_c00084{bottom:175.711424pt;}
.yad_c00084{bottom:176.640320pt;}
.yac_c00084{bottom:192.125067pt;}
.yab_c00084{bottom:193.113525pt;}
.yaa_c00084{bottom:193.814464pt;}
.ya9_c00084{bottom:195.149728pt;}
.ya8_c00084{bottom:195.778208pt;}
.ya7_c00084{bottom:196.317728pt;}
.ya6_c00084{bottom:211.419733pt;}
.ya5_c00084{bottom:212.551445pt;}
.ya4_c00084{bottom:213.163499pt;}
.ya3_c00084{bottom:213.562560pt;}
.ya2_c00084{bottom:214.374101pt;}
.ya1_c00084{bottom:214.804181pt;}
.ya0_c00084{bottom:215.610731pt;}
.y9f_c00084{bottom:216.242859pt;}
.y9e_c00084{bottom:231.354315pt;}
.y9d_c00084{bottom:231.701557pt;}
.y9c_c00084{bottom:233.160224pt;}
.y9b_c00084{bottom:234.424459pt;}
.y9a_c00084{bottom:235.451915pt;}
.y99_c00084{bottom:236.174667pt;}
.y98_c00084{bottom:251.600219pt;}
.y97_c00084{bottom:252.289353pt;}
.y96_c00084{bottom:252.748875pt;}
.y95_c00084{bottom:253.835379pt;}
.y94_c00084{bottom:254.071905pt;}
.y93_c00084{bottom:254.736492pt;}
.y92_c00084{bottom:255.108407pt;}
.y91_c00084{bottom:255.839520pt;}
.y90_c00084{bottom:256.663068pt;}
.y8f_c00084{bottom:257.042667pt;}
.y8e_c00084{bottom:272.997672pt;}
.y8d_c00084{bottom:273.515952pt;}
.y8c_c00084{bottom:274.510419pt;}
.y8b_c00084{bottom:274.869285pt;}
.y8a_c00084{bottom:275.595773pt;}
.y89_c00084{bottom:275.935861pt;}
.y88_c00084{bottom:276.718797pt;}
.y87_c00084{bottom:293.422085pt;}
.y86_c00084{bottom:294.323848pt;}
.y85_c00084{bottom:294.788133pt;}
.y84_c00084{bottom:295.294179pt;}
.y83_c00084{bottom:295.787632pt;}
.y82_c00084{bottom:295.947197pt;}
.y81_c00084{bottom:296.693221pt;}
.y80_c00084{bottom:297.133424pt;}
.y7f_c00084{bottom:313.507237pt;}
.y7e_c00084{bottom:313.704320pt;}
.y7d_c00084{bottom:314.468048pt;}
.y7c_c00084{bottom:314.819691pt;}
.y7b_c00084{bottom:315.387531pt;}
.y7a_c00084{bottom:315.690043pt;}
.y79_c00084{bottom:316.193987pt;}
.y78_c00084{bottom:316.855160pt;}
.y77_c00084{bottom:317.285333pt;}
.y76_c00084{bottom:373.962575pt;}
.y75_c00084{bottom:374.370928pt;}
.y74_c00084{bottom:374.914431pt;}
.y73_c00084{bottom:375.751081pt;}
.y72_c00084{bottom:376.040417pt;}
.y71_c00084{bottom:376.365757pt;}
.y70_c00084{bottom:376.680413pt;}
.y6f_c00084{bottom:394.745416pt;}
.y6e_c00084{bottom:395.485387pt;}
.y6d_c00084{bottom:395.906355pt;}
.y6c_c00084{bottom:396.453872pt;}
.y6b_c00084{bottom:396.922617pt;}
.y6a_c00084{bottom:397.089992pt;}
.y69_c00084{bottom:397.668875pt;}
.y68_c00084{bottom:414.341019pt;}
.y67_c00084{bottom:414.812567pt;}
.y66_c00084{bottom:415.164595pt;}
.y65_c00084{bottom:415.354080pt;}
.y64_c00084{bottom:415.795127pt;}
.y63_c00084{bottom:416.000303pt;}
.y62_c00084{bottom:416.384559pt;}
.y61_c00084{bottom:416.722709pt;}
.y60_c00084{bottom:417.351375pt;}
.y5f_c00084{bottom:434.651836pt;}
.y5e_c00084{bottom:435.108116pt;}
.y5d_c00084{bottom:435.329389pt;}
.y5c_c00084{bottom:435.746029pt;}
.y5b_c00084{bottom:436.243196pt;}
.y5a_c00084{bottom:436.419717pt;}
.y59_c00084{bottom:436.795304pt;}
.y58_c00084{bottom:437.195981pt;}
.y57_c00084{bottom:437.629804pt;}
.y56_c00084{bottom:437.753065pt;}
.y55_c00084{bottom:453.000059pt;}
.y54_c00084{bottom:453.314505pt;}
.y53_c00084{bottom:453.790117pt;}
.y52_c00084{bottom:454.328052pt;}
.y51_c00084{bottom:455.312173pt;}
.y50_c00084{bottom:456.048821pt;}
.y4f_c00084{bottom:457.097509pt;}
.y4e_c00084{bottom:457.481532pt;}
.y4d_c00084{bottom:458.156923pt;}
.y4c_c00084{bottom:474.727348pt;}
.y4b_c00084{bottom:475.228859pt;}
.y4a_c00084{bottom:475.551135pt;}
.y49_c00084{bottom:476.128851pt;}
.y48_c00084{bottom:476.986579pt;}
.y47_c00084{bottom:477.495664pt;}
.y46_c00084{bottom:478.078556pt;}
.y45_c00084{bottom:495.076736pt;}
.y44_c00084{bottom:495.981816pt;}
.y43_c00084{bottom:496.631964pt;}
.y42_c00084{bottom:497.305345pt;}
.y41_c00084{bottom:498.480000pt;}
.y3d_c00084{bottom:530.969773pt;}
.y3c_c00084{bottom:530.970040pt;}
.y3e_c00084{bottom:530.970333pt;}
.y40_c00084{bottom:530.970360pt;}
.y3f_c00084{bottom:530.970893pt;}
.y3b_c00084{bottom:554.321493pt;}
.y3a_c00084{bottom:554.548587pt;}
.y39_c00084{bottom:555.050133pt;}
.y38_c00084{bottom:555.236760pt;}
.y37_c00084{bottom:555.783680pt;}
.y36_c00084{bottom:556.042187pt;}
.y35_c00084{bottom:556.586480pt;}
.y34_c00084{bottom:556.781667pt;}
.y33_c00084{bottom:557.277213pt;}
.y32_c00084{bottom:573.074320pt;}
.y31_c00084{bottom:574.006520pt;}
.y30_c00084{bottom:574.502440pt;}
.y2f_c00084{bottom:574.751667pt;}
.y2e_c00084{bottom:575.244253pt;}
.y2d_c00084{bottom:576.291973pt;}
.y2c_c00084{bottom:576.688867pt;}
.y2b_c00084{bottom:577.195440pt;}
.y2a_c00084{bottom:577.679027pt;}
.y29_c00084{bottom:594.137733pt;}
.y28_c00084{bottom:594.472933pt;}
.y27_c00084{bottom:594.769480pt;}
.y26_c00084{bottom:595.590453pt;}
.y25_c00084{bottom:595.788933pt;}
.y24_c00084{bottom:596.707160pt;}
.y23_c00084{bottom:597.164760pt;}
.y22_c00084{bottom:597.391947pt;}
.y21_c00084{bottom:597.860440pt;}
.y20_c00084{bottom:615.419067pt;}
.y1f_c00084{bottom:615.830467pt;}
.y1e_c00084{bottom:616.039040pt;}
.y1d_c00084{bottom:616.406027pt;}
.y1c_c00084{bottom:616.963173pt;}
.y1b_c00084{bottom:617.759960pt;}
.y16_c00084{bottom:637.386733pt;}
.y17_c00084{bottom:637.387027pt;}
.y18_c00084{bottom:637.387627pt;}
.y19_c00084{bottom:637.387653pt;}
.y1a_c00084{bottom:637.387667pt;}
.y12_c00084{bottom:657.488027pt;}
.y14_c00084{bottom:657.488347pt;}
.y11_c00084{bottom:657.488533pt;}
.y13_c00084{bottom:657.488587pt;}
.y15_c00084{bottom:657.488640pt;}
.yd_c00084{bottom:657.488720pt;}
.y10_c00084{bottom:657.489053pt;}
.ye_c00084{bottom:657.489280pt;}
.yf_c00084{bottom:657.489293pt;}
.yb_c00084{bottom:677.221173pt;}
.yc_c00084{bottom:677.221200pt;}
.ya_c00084{bottom:697.074360pt;}
.y9_c00084{bottom:698.282747pt;}
.y8_c00084{bottom:698.591800pt;}
.y7_c00084{bottom:698.823427pt;}
.y6_c00084{bottom:699.374880pt;}
.y4_c00084{bottom:721.825120pt;}
.y3_c00084{bottom:721.825347pt;}
.y5_c00084{bottom:721.825413pt;}
.y2_c00084{bottom:749.800747pt;}
.y1_c00084{bottom:751.682667pt;}
.h1c_c00084{height:45.741587pt;}
.h1d_c00084{height:51.342598pt;}
.h6_c00084{height:56.002800pt;}
.h14_c00084{height:56.005488pt;}
.h12_c00084{height:56.008091pt;}
.h15_c00084{height:57.872337pt;}
.h8_c00084{height:58.802940pt;}
.h16_c00084{height:58.805762pt;}
.h1a_c00084{height:58.807526pt;}
.hf_c00084{height:58.808496pt;}
.h7_c00084{height:59.736320pt;}
.h18_c00084{height:59.740979pt;}
.h11_c00084{height:60.675432pt;}
.h5_c00084{height:61.603080pt;}
.h17_c00084{height:61.608901pt;}
.ha_c00084{height:62.536460pt;}
.h1b_c00084{height:62.541337pt;}
.h19_c00084{height:63.474790pt;}
.h13_c00084{height:63.475837pt;}
.h9_c00084{height:64.403220pt;}
.hb_c00084{height:65.336600pt;}
.h10_c00084{height:65.342773pt;}
.he_c00084{height:66.276242pt;}
.hc_c00084{height:72.803640pt;}
.h4_c00084{height:73.737020pt;}
.h3_c00084{height:75.603780pt;}
.hd_c00084{height:81.211733pt;}
.h2_c00084{height:116.672500pt;}
.h1_c00084{height:893.333333pt;}
.h0_c00084{height:893.466667pt;}
.w0_c00084{width:627.066667pt;}
.w1_c00084{width:627.333333pt;}
.x0_c00084{left:0.000000pt;}
.x84_c00084{left:71.588489pt;}
.x7b_c00084{left:80.960000pt;}
.x4a_c00084{left:105.015024pt;}
.xd_c00084{left:106.318253pt;}
.x77_c00084{left:112.678667pt;}
.x60_c00084{left:114.339112pt;}
.x43_c00084{left:115.726217pt;}
.x56_c00084{left:116.975912pt;}
.x3d_c00084{left:118.165492pt;}
.x2f_c00084{left:119.134853pt;}
.x1b_c00084{left:121.065147pt;}
.x16_c00084{left:123.117600pt;}
.x6_c00084{left:127.189827pt;}
.x85_c00084{left:128.937221pt;}
.x6f_c00084{left:132.322667pt;}
.x69_c00084{left:137.337333pt;}
.x7c_c00084{left:139.689333pt;}
.x5b_c00084{left:145.830667pt;}
.x78_c00084{left:147.061941pt;}
.x61_c00084{left:148.163579pt;}
.x71_c00084{left:153.661856pt;}
.xe_c00084{left:154.800440pt;}
.x21_c00084{left:156.333013pt;}
.x27_c00084{left:158.448613pt;}
.x30_c00084{left:160.422027pt;}
.x3e_c00084{left:163.044552pt;}
.x57_c00084{left:165.228015pt;}
.x66_c00084{left:170.450733pt;}
.x1_c00084{left:172.005333pt;}
.x22_c00084{left:173.851160pt;}
.x31_c00084{left:176.740373pt;}
.x58_c00084{left:179.153193pt;}
.x17_c00084{left:180.960720pt;}
.x44_c00084{left:181.967351pt;}
.x6a_c00084{left:185.781333pt;}
.xf_c00084{left:189.602587pt;}
.x7d_c00084{left:191.072000pt;}
.x4b_c00084{left:192.107909pt;}
.x1c_c00084{left:193.543093pt;}
.x67_c00084{left:194.742733pt;}
.x7_c00084{left:196.203213pt;}
.x28_c00084{left:197.371440pt;}
.x3f_c00084{left:202.169871pt;}
.x72_c00084{left:204.071189pt;}
.x62_c00084{left:205.547048pt;}
.x3_c00084{left:206.642253pt;}
.x23_c00084{left:209.076773pt;}
.x51_c00084{left:214.203411pt;}
.x59_c00084{left:218.259192pt;}
.x32_c00084{left:222.102133pt;}
.x8_c00084{left:225.233133pt;}
.x4c_c00084{left:226.204711pt;}
.x29_c00084{left:227.859853pt;}
.x5c_c00084{left:229.053333pt;}
.x73_c00084{left:230.951189pt;}
.x10_c00084{left:239.764933pt;}
.x39_c00084{left:241.893333pt;}
.x7e_c00084{left:243.105333pt;}
.x1d_c00084{left:244.190587pt;}
.x45_c00084{left:247.499128pt;}
.x5d_c00084{left:250.661333pt;}
.xb_c00084{left:252.484840pt;}
.x63_c00084{left:255.715739pt;}
.x86_c00084{left:259.237824pt;}
.x75_c00084{left:260.773952pt;}
.x9_c00084{left:263.872573pt;}
.x79_c00084{left:266.834197pt;}
.x40_c00084{left:268.158359pt;}
.x52_c00084{left:273.039725pt;}
.x34_c00084{left:276.004827pt;}
.x1e_c00084{left:277.555587pt;}
.x11_c00084{left:278.887507pt;}
.x3a_c00084{left:281.504000pt;}
.x35_c00084{left:282.965520pt;}
.x7f_c00084{left:285.913333pt;}
.x4d_c00084{left:287.408277pt;}
.x4_c00084{left:289.206507pt;}
.x5e_c00084{left:291.221333pt;}
.x46_c00084{left:293.577255pt;}
.x24_c00084{left:295.011533pt;}
.x1f_c00084{left:296.546067pt;}
.x5a_c00084{left:298.922037pt;}
.x7a_c00084{left:300.173664pt;}
.x76_c00084{left:301.998624pt;}
.x6b_c00084{left:303.672000pt;}
.x33_c00084{left:304.905827pt;}
.x74_c00084{left:306.613856pt;}
.x2a_c00084{left:308.496107pt;}
.x18_c00084{left:312.247187pt;}
.xc_c00084{left:313.688293pt;}
.x53_c00084{left:317.184984pt;}
.x80_c00084{left:318.774667pt;}
.x3b_c00084{left:319.748000pt;}
.x12_c00084{left:321.609107pt;}
.x4e_c00084{left:325.332153pt;}
.x64_c00084{left:330.359451pt;}
.x36_c00084{left:331.447707pt;}
.x20_c00084{left:333.952360pt;}
.x54_c00084{left:336.176584pt;}
.x41_c00084{left:337.339051pt;}
.x68_c00084{left:343.301400pt;}
.x4f_c00084{left:345.487549pt;}
.x2b_c00084{left:346.420307pt;}
.x87_c00084{left:350.104656pt;}
.x5_c00084{left:354.250347pt;}
.x19_c00084{left:356.648960pt;}
.x25_c00084{left:358.173640pt;}
.x2_c00084{left:360.197333pt;}
.x13_c00084{left:362.890573pt;}
.x2c_c00084{left:365.609067pt;}
.x6c_c00084{left:367.584000pt;}
.x55_c00084{left:371.398111pt;}
.x3c_c00084{left:372.988000pt;}
.x42_c00084{left:375.940347pt;}
.x37_c00084{left:377.529653pt;}
.x1a_c00084{left:380.650027pt;}
.x5f_c00084{left:384.968000pt;}
.x50_c00084{left:386.998455pt;}
.x47_c00084{left:388.680197pt;}
.x38_c00084{left:390.250920pt;}
.x81_c00084{left:392.473333pt;}
.x6d_c00084{left:394.614667pt;}
.x65_c00084{left:399.724421pt;}
.x2d_c00084{left:403.733253pt;}
.x26_c00084{left:406.813520pt;}
.x14_c00084{left:411.852800pt;}
.xa_c00084{left:414.847587pt;}
.x48_c00084{left:418.383363pt;}
.x82_c00084{left:428.300000pt;}
.x70_c00084{left:433.594667pt;}
.x6e_c00084{left:435.152000pt;}
.x49_c00084{left:438.057036pt;}
.x83_c00084{left:447.664000pt;}
.x15_c00084{left:462.495200pt;}
.x2e_c00084{left:475.484440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.md4_c00085{transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-ms-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);}
.m8f_c00085{transform:matrix(0.021663,-0.000260,0.003000,0.249982,0,0);-ms-transform:matrix(0.021663,-0.000260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.021663,-0.000260,0.003000,0.249982,0,0);}
.mdf_c00085{transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-ms-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);}
.m17_c00085{transform:matrix(0.099568,-0.001195,0.003000,0.249982,0,0);-ms-transform:matrix(0.099568,-0.001195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.099568,-0.001195,0.003000,0.249982,0,0);}
.mc5_c00085{transform:matrix(0.110322,-0.001324,0.003000,0.249982,0,0);-ms-transform:matrix(0.110322,-0.001324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.110322,-0.001324,0.003000,0.249982,0,0);}
.m13_c00085{transform:matrix(0.137210,-0.001647,0.003000,0.249982,0,0);-ms-transform:matrix(0.137210,-0.001647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137210,-0.001647,0.003000,0.249982,0,0);}
.m9_c00085{transform:matrix(0.143215,-0.001719,0.003000,0.249982,0,0);-ms-transform:matrix(0.143215,-0.001719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143215,-0.001719,0.003000,0.249982,0,0);}
.m27_c00085{transform:matrix(0.143415,-0.001721,0.003000,0.249982,0,0);-ms-transform:matrix(0.143415,-0.001721,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143415,-0.001721,0.003000,0.249982,0,0);}
.ma8_c00085{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);}
.m77_c00085{transform:matrix(0.146069,-0.001753,0.003000,0.249982,0,0);-ms-transform:matrix(0.146069,-0.001753,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146069,-0.001753,0.003000,0.249982,0,0);}
.mc0_c00085{transform:matrix(0.147469,-0.001770,0.003000,0.249982,0,0);-ms-transform:matrix(0.147469,-0.001770,0.003000,0.249982,0,0);-webkit-transform:matrix(0.147469,-0.001770,0.003000,0.249982,0,0);}
.mb9_c00085{transform:matrix(0.148299,-0.001780,0.003000,0.249982,0,0);-ms-transform:matrix(0.148299,-0.001780,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148299,-0.001780,0.003000,0.249982,0,0);}
.mdb_c00085{transform:matrix(0.149059,-0.001789,0.003000,0.249982,0,0);-ms-transform:matrix(0.149059,-0.001789,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149059,-0.001789,0.003000,0.249982,0,0);}
.m1b_c00085{transform:matrix(0.150274,-0.001803,0.003000,0.249982,0,0);-ms-transform:matrix(0.150274,-0.001803,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150274,-0.001803,0.003000,0.249982,0,0);}
.m1e_c00085{transform:matrix(0.152834,-0.001834,0.003000,0.249982,0,0);-ms-transform:matrix(0.152834,-0.001834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152834,-0.001834,0.003000,0.249982,0,0);}
.m67_c00085{transform:matrix(0.154704,-0.001856,0.003000,0.249982,0,0);-ms-transform:matrix(0.154704,-0.001856,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154704,-0.001856,0.003000,0.249982,0,0);}
.m1d_c00085{transform:matrix(0.156584,-0.001879,0.003000,0.249982,0,0);-ms-transform:matrix(0.156584,-0.001879,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156584,-0.001879,0.003000,0.249982,0,0);}
.m4c_c00085{transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);-ms-transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);}
.m38_c00085{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);}
.m3b_c00085{transform:matrix(0.160028,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.160028,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160028,-0.001920,0.003000,0.249982,0,0);}
.mba_c00085{transform:matrix(0.160763,-0.001929,0.003000,0.249982,0,0);-ms-transform:matrix(0.160763,-0.001929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160763,-0.001929,0.003000,0.249982,0,0);}
.m4_c00085{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);}
.ma_c00085{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);}
.m4b_c00085{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_c00085{transform:matrix(0.165333,-0.001984,0.003000,0.249982,0,0);-ms-transform:matrix(0.165333,-0.001984,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165333,-0.001984,0.003000,0.249982,0,0);}
.m56_c00085{transform:matrix(0.165653,-0.001988,0.003000,0.249982,0,0);-ms-transform:matrix(0.165653,-0.001988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165653,-0.001988,0.003000,0.249982,0,0);}
.mad_c00085{transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);-ms-transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);}
.maa_c00085{transform:matrix(0.166273,-0.001995,0.003000,0.249982,0,0);-ms-transform:matrix(0.166273,-0.001995,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166273,-0.001995,0.003000,0.249982,0,0);}
.m23_c00085{transform:matrix(0.166438,-0.001997,0.003000,0.249982,0,0);-ms-transform:matrix(0.166438,-0.001997,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166438,-0.001997,0.003000,0.249982,0,0);}
.mce_c00085{transform:matrix(0.166738,-0.002001,0.003000,0.249982,0,0);-ms-transform:matrix(0.166738,-0.002001,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166738,-0.002001,0.003000,0.249982,0,0);}
.m9b_c00085{transform:matrix(0.166753,-0.002001,0.003000,0.249982,0,0);-ms-transform:matrix(0.166753,-0.002001,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166753,-0.002001,0.003000,0.249982,0,0);}
.mae_c00085{transform:matrix(0.167433,-0.002009,0.003000,0.249982,0,0);-ms-transform:matrix(0.167433,-0.002009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167433,-0.002009,0.003000,0.249982,0,0);}
.m2a_c00085{transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);}
.m36_c00085{transform:matrix(0.169178,-0.002030,0.003000,0.249982,0,0);-ms-transform:matrix(0.169178,-0.002030,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169178,-0.002030,0.003000,0.249982,0,0);}
.m9f_c00085{transform:matrix(0.169628,-0.002036,0.003000,0.249982,0,0);-ms-transform:matrix(0.169628,-0.002036,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169628,-0.002036,0.003000,0.249982,0,0);}
.ma1_c00085{transform:matrix(0.170888,-0.002051,0.003000,0.249982,0,0);-ms-transform:matrix(0.170888,-0.002051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170888,-0.002051,0.003000,0.249982,0,0);}
.m32_c00085{transform:matrix(0.171403,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171403,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171403,-0.002057,0.003000,0.249982,0,0);}
.mab_c00085{transform:matrix(0.171823,-0.002062,0.003000,0.249982,0,0);-ms-transform:matrix(0.171823,-0.002062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171823,-0.002062,0.003000,0.249982,0,0);}
.m50_c00085{transform:matrix(0.172238,-0.002067,0.003000,0.249982,0,0);-ms-transform:matrix(0.172238,-0.002067,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172238,-0.002067,0.003000,0.249982,0,0);}
.m6d_c00085{transform:matrix(0.173043,-0.002077,0.003000,0.249982,0,0);-ms-transform:matrix(0.173043,-0.002077,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173043,-0.002077,0.003000,0.249982,0,0);}
.md1_c00085{transform:matrix(0.173098,-0.002077,0.003000,0.249982,0,0);-ms-transform:matrix(0.173098,-0.002077,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173098,-0.002077,0.003000,0.249982,0,0);}
.m9d_c00085{transform:matrix(0.175117,-0.002101,0.003000,0.249982,0,0);-ms-transform:matrix(0.175117,-0.002101,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175117,-0.002101,0.003000,0.249982,0,0);}
.mc7_c00085{transform:matrix(0.175572,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175572,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175572,-0.002107,0.003000,0.249982,0,0);}
.mbc_c00085{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);}
.ma9_c00085{transform:matrix(0.176932,-0.002123,0.003000,0.249982,0,0);-ms-transform:matrix(0.176932,-0.002123,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176932,-0.002123,0.003000,0.249982,0,0);}
.m3a_c00085{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);}
.m35_c00085{transform:matrix(0.178562,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178562,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178562,-0.002143,0.003000,0.249982,0,0);}
.ma7_c00085{transform:matrix(0.180182,-0.002162,0.003000,0.249982,0,0);-ms-transform:matrix(0.180182,-0.002162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180182,-0.002162,0.003000,0.249982,0,0);}
.m3_c00085{transform:matrix(0.180212,-0.002163,0.003000,0.249982,0,0);-ms-transform:matrix(0.180212,-0.002163,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180212,-0.002163,0.003000,0.249982,0,0);}
.m31_c00085{transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);-ms-transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);}
.m40_c00085{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);}
.mc4_c00085{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);}
.m57_c00085{transform:matrix(0.181777,-0.002181,0.003000,0.249982,0,0);-ms-transform:matrix(0.181777,-0.002181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181777,-0.002181,0.003000,0.249982,0,0);}
.m1f_c00085{transform:matrix(0.182247,-0.002187,0.003000,0.249982,0,0);-ms-transform:matrix(0.182247,-0.002187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182247,-0.002187,0.003000,0.249982,0,0);}
.m2f_c00085{transform:matrix(0.182412,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182412,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182412,-0.002189,0.003000,0.249982,0,0);}
.mdd_c00085{transform:matrix(0.182427,-0.002189,0.003000,0.249982,0,0);-ms-transform:matrix(0.182427,-0.002189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182427,-0.002189,0.003000,0.249982,0,0);}
.mcb_c00085{transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);-ms-transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);}
.m9e_c00085{transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);-ms-transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);}
.m9c_c00085{transform:matrix(0.184277,-0.002211,0.003000,0.249982,0,0);-ms-transform:matrix(0.184277,-0.002211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184277,-0.002211,0.003000,0.249982,0,0);}
.m42_c00085{transform:matrix(0.185232,-0.002223,0.003000,0.249982,0,0);-ms-transform:matrix(0.185232,-0.002223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185232,-0.002223,0.003000,0.249982,0,0);}
.mb4_c00085{transform:matrix(0.185822,-0.002230,0.003000,0.249982,0,0);-ms-transform:matrix(0.185822,-0.002230,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185822,-0.002230,0.003000,0.249982,0,0);}
.m21_c00085{transform:matrix(0.186612,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186612,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186612,-0.002239,0.003000,0.249982,0,0);}
.m29_c00085{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);}
.m92_c00085{transform:matrix(0.187921,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187921,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187921,-0.002255,0.003000,0.249982,0,0);}
.mcf_c00085{transform:matrix(0.188296,-0.002260,0.003000,0.249982,0,0);-ms-transform:matrix(0.188296,-0.002260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188296,-0.002260,0.003000,0.249982,0,0);}
.m49_c00085{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);}
.m6b_c00085{transform:matrix(0.188936,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188936,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188936,-0.002267,0.003000,0.249982,0,0);}
.m51_c00085{transform:matrix(0.189276,-0.002271,0.003000,0.249982,0,0);-ms-transform:matrix(0.189276,-0.002271,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189276,-0.002271,0.003000,0.249982,0,0);}
.mc9_c00085{transform:matrix(0.189341,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189341,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189341,-0.002272,0.003000,0.249982,0,0);}
.m28_c00085{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);}
.m96_c00085{transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);-ms-transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);}
.mc1_c00085{transform:matrix(0.190426,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190426,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190426,-0.002285,0.003000,0.249982,0,0);}
.mac_c00085{transform:matrix(0.191451,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191451,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191451,-0.002297,0.003000,0.249982,0,0);}
.m8e_c00085{transform:matrix(0.191826,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191826,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191826,-0.002302,0.003000,0.249982,0,0);}
.m65_c00085{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);}
.m47_c00085{transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);}
.m84_c00085{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);}
.mca_c00085{transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193756,-0.002325,0.003000,0.249982,0,0);}
.mbd_c00085{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);}
.md_c00085{transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);}
.m5f_c00085{transform:matrix(0.194291,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194291,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194291,-0.002331,0.003000,0.249982,0,0);}
.m34_c00085{transform:matrix(0.194656,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194656,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194656,-0.002336,0.003000,0.249982,0,0);}
.ma5_c00085{transform:matrix(0.194886,-0.002339,0.003000,0.249982,0,0);-ms-transform:matrix(0.194886,-0.002339,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194886,-0.002339,0.003000,0.249982,0,0);}
.m39_c00085{transform:matrix(0.196346,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196346,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196346,-0.002356,0.003000,0.249982,0,0);}
.m76_c00085{transform:matrix(0.196386,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196386,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196386,-0.002357,0.003000,0.249982,0,0);}
.m18_c00085{transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);-ms-transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);}
.m20_c00085{transform:matrix(0.197996,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.197996,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197996,-0.002376,0.003000,0.249982,0,0);}
.mbf_c00085{transform:matrix(0.198271,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198271,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198271,-0.002379,0.003000,0.249982,0,0);}
.m4e_c00085{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);}
.m4f_c00085{transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);}
.m6_c00085{transform:matrix(0.199386,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199386,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199386,-0.002393,0.003000,0.249982,0,0);}
.ma2_c00085{transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);}
.m41_c00085{transform:matrix(0.199906,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199906,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199906,-0.002399,0.003000,0.249982,0,0);}
.m99_c00085{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);}
.m15_c00085{transform:matrix(0.201246,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201246,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201246,-0.002415,0.003000,0.249982,0,0);}
.m64_c00085{transform:matrix(0.201415,-0.002417,0.003000,0.249982,0,0);-ms-transform:matrix(0.201415,-0.002417,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201415,-0.002417,0.003000,0.249982,0,0);}
.mda_c00085{transform:matrix(0.202160,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202160,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202160,-0.002426,0.003000,0.249982,0,0);}
.m24_c00085{transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);}
.m37_c00085{transform:matrix(0.202845,-0.002434,0.003000,0.249982,0,0);-ms-transform:matrix(0.202845,-0.002434,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202845,-0.002434,0.003000,0.249982,0,0);}
.m3e_c00085{transform:matrix(0.202930,-0.002435,0.003000,0.249982,0,0);-ms-transform:matrix(0.202930,-0.002435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202930,-0.002435,0.003000,0.249982,0,0);}
.m6c_c00085{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);}
.m2e_c00085{transform:matrix(0.203160,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203160,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203160,-0.002438,0.003000,0.249982,0,0);}
.m91_c00085{transform:matrix(0.203455,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203455,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203455,-0.002441,0.003000,0.249982,0,0);}
.m5d_c00085{transform:matrix(0.203700,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203700,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203700,-0.002444,0.003000,0.249982,0,0);}
.md3_c00085{transform:matrix(0.204420,-0.002453,0.003000,0.249982,0,0);-ms-transform:matrix(0.204420,-0.002453,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204420,-0.002453,0.003000,0.249982,0,0);}
.m2_c00085{transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);}
.m6e_c00085{transform:matrix(0.205415,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205415,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205415,-0.002465,0.003000,0.249982,0,0);}
.m5_c00085{transform:matrix(0.205505,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205505,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205505,-0.002466,0.003000,0.249982,0,0);}
.m1_c00085{transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);}
.mc_c00085{transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);}
.m3d_c00085{transform:matrix(0.207805,-0.002494,0.003000,0.249982,0,0);-ms-transform:matrix(0.207805,-0.002494,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207805,-0.002494,0.003000,0.249982,0,0);}
.m22_c00085{transform:matrix(0.207905,-0.002495,0.003000,0.249982,0,0);-ms-transform:matrix(0.207905,-0.002495,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207905,-0.002495,0.003000,0.249982,0,0);}
.mf_c00085{transform:matrix(0.207940,-0.002495,0.003000,0.249982,0,0);-ms-transform:matrix(0.207940,-0.002495,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207940,-0.002495,0.003000,0.249982,0,0);}
.m78_c00085{transform:matrix(0.208125,-0.002498,0.003000,0.249982,0,0);-ms-transform:matrix(0.208125,-0.002498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208125,-0.002498,0.003000,0.249982,0,0);}
.m75_c00085{transform:matrix(0.208270,-0.002499,0.003000,0.249982,0,0);-ms-transform:matrix(0.208270,-0.002499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208270,-0.002499,0.003000,0.249982,0,0);}
.mc2_c00085{transform:matrix(0.208390,-0.002501,0.003000,0.249982,0,0);-ms-transform:matrix(0.208390,-0.002501,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208390,-0.002501,0.003000,0.249982,0,0);}
.mbb_c00085{transform:matrix(0.208550,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208550,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208550,-0.002503,0.003000,0.249982,0,0);}
.m8_c00085{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);}
.m45_c00085{transform:matrix(0.209180,-0.002510,0.003000,0.249982,0,0);-ms-transform:matrix(0.209180,-0.002510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209180,-0.002510,0.003000,0.249982,0,0);}
.m11_c00085{transform:matrix(0.209205,-0.002510,0.003000,0.249982,0,0);-ms-transform:matrix(0.209205,-0.002510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209205,-0.002510,0.003000,0.249982,0,0);}
.m95_c00085{transform:matrix(0.210130,-0.002522,0.003000,0.249982,0,0);-ms-transform:matrix(0.210130,-0.002522,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210130,-0.002522,0.003000,0.249982,0,0);}
.mb_c00085{transform:matrix(0.211280,-0.002535,0.003000,0.249982,0,0);-ms-transform:matrix(0.211280,-0.002535,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211280,-0.002535,0.003000,0.249982,0,0);}
.m4a_c00085{transform:matrix(0.211555,-0.002539,0.003000,0.249982,0,0);-ms-transform:matrix(0.211555,-0.002539,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211555,-0.002539,0.003000,0.249982,0,0);}
.m1a_c00085{transform:matrix(0.212175,-0.002546,0.003000,0.249982,0,0);-ms-transform:matrix(0.212175,-0.002546,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212175,-0.002546,0.003000,0.249982,0,0);}
.ma4_c00085{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);}
.m44_c00085{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);}
.mc3_c00085{transform:matrix(0.213365,-0.002560,0.003000,0.249982,0,0);-ms-transform:matrix(0.213365,-0.002560,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213365,-0.002560,0.003000,0.249982,0,0);}
.mb0_c00085{transform:matrix(0.213390,-0.002561,0.003000,0.249982,0,0);-ms-transform:matrix(0.213390,-0.002561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213390,-0.002561,0.003000,0.249982,0,0);}
.m16_c00085{transform:matrix(0.213805,-0.002566,0.003000,0.249982,0,0);-ms-transform:matrix(0.213805,-0.002566,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213805,-0.002566,0.003000,0.249982,0,0);}
.mb2_c00085{transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);-ms-transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);}
.md0_c00085{transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);}
.m87_c00085{transform:matrix(0.215314,-0.002584,0.003000,0.249982,0,0);-ms-transform:matrix(0.215314,-0.002584,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215314,-0.002584,0.003000,0.249982,0,0);}
.maf_c00085{transform:matrix(0.215874,-0.002590,0.003000,0.249982,0,0);-ms-transform:matrix(0.215874,-0.002590,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215874,-0.002590,0.003000,0.249982,0,0);}
.m4d_c00085{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);}
.ma0_c00085{transform:matrix(0.216254,-0.002595,0.003000,0.249982,0,0);-ms-transform:matrix(0.216254,-0.002595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216254,-0.002595,0.003000,0.249982,0,0);}
.m26_c00085{transform:matrix(0.216429,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216429,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216429,-0.002597,0.003000,0.249982,0,0);}
.m48_c00085{transform:matrix(0.216684,-0.002600,0.003000,0.249982,0,0);-ms-transform:matrix(0.216684,-0.002600,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216684,-0.002600,0.003000,0.249982,0,0);}
.m55_c00085{transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);-ms-transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);}
.m98_c00085{transform:matrix(0.217139,-0.002606,0.003000,0.249982,0,0);-ms-transform:matrix(0.217139,-0.002606,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217139,-0.002606,0.003000,0.249982,0,0);}
.m6a_c00085{transform:matrix(0.217459,-0.002610,0.003000,0.249982,0,0);-ms-transform:matrix(0.217459,-0.002610,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217459,-0.002610,0.003000,0.249982,0,0);}
.m59_c00085{transform:matrix(0.217809,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217809,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217809,-0.002614,0.003000,0.249982,0,0);}
.m5b_c00085{transform:matrix(0.218689,-0.002624,0.003000,0.249982,0,0);-ms-transform:matrix(0.218689,-0.002624,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218689,-0.002624,0.003000,0.249982,0,0);}
.m7_c00085{transform:matrix(0.218824,-0.002626,0.003000,0.249982,0,0);-ms-transform:matrix(0.218824,-0.002626,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218824,-0.002626,0.003000,0.249982,0,0);}
.mc8_c00085{transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);-ms-transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);}
.m54_c00085{transform:matrix(0.219394,-0.002633,0.003000,0.249982,0,0);-ms-transform:matrix(0.219394,-0.002633,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219394,-0.002633,0.003000,0.249982,0,0);}
.m74_c00085{transform:matrix(0.219814,-0.002638,0.003000,0.249982,0,0);-ms-transform:matrix(0.219814,-0.002638,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219814,-0.002638,0.003000,0.249982,0,0);}
.m9a_c00085{transform:matrix(0.220269,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220269,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220269,-0.002643,0.003000,0.249982,0,0);}
.ma6_c00085{transform:matrix(0.221239,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221239,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221239,-0.002655,0.003000,0.249982,0,0);}
.m3c_c00085{transform:matrix(0.221589,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221589,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221589,-0.002659,0.003000,0.249982,0,0);}
.m8d_c00085{transform:matrix(0.222109,-0.002665,0.003000,0.249982,0,0);-ms-transform:matrix(0.222109,-0.002665,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222109,-0.002665,0.003000,0.249982,0,0);}
.m2b_c00085{transform:matrix(0.223214,-0.002679,0.003000,0.249982,0,0);-ms-transform:matrix(0.223214,-0.002679,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223214,-0.002679,0.003000,0.249982,0,0);}
.mb5_c00085{transform:matrix(0.223524,-0.002682,0.003000,0.249982,0,0);-ms-transform:matrix(0.223524,-0.002682,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223524,-0.002682,0.003000,0.249982,0,0);}
.m63_c00085{transform:matrix(0.223689,-0.002684,0.003000,0.249982,0,0);-ms-transform:matrix(0.223689,-0.002684,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223689,-0.002684,0.003000,0.249982,0,0);}
.m2d_c00085{transform:matrix(0.223779,-0.002685,0.003000,0.249982,0,0);-ms-transform:matrix(0.223779,-0.002685,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223779,-0.002685,0.003000,0.249982,0,0);}
.m14_c00085{transform:matrix(0.225314,-0.002704,0.003000,0.249982,0,0);-ms-transform:matrix(0.225314,-0.002704,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225314,-0.002704,0.003000,0.249982,0,0);}
.m97_c00085{transform:matrix(0.225444,-0.002705,0.003000,0.249982,0,0);-ms-transform:matrix(0.225444,-0.002705,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225444,-0.002705,0.003000,0.249982,0,0);}
.m52_c00085{transform:matrix(0.225669,-0.002708,0.003000,0.249982,0,0);-ms-transform:matrix(0.225669,-0.002708,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225669,-0.002708,0.003000,0.249982,0,0);}
.md8_c00085{transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-ms-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);}
.m46_c00085{transform:matrix(0.226054,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226054,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226054,-0.002713,0.003000,0.249982,0,0);}
.m0_c00085{transform:matrix(0.227374,-0.002728,0.003000,0.249982,0,0);-ms-transform:matrix(0.227374,-0.002728,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227374,-0.002728,0.003000,0.249982,0,0);}
.m19_c00085{transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);-ms-transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);}
.m61_c00085{transform:matrix(0.231688,-0.002780,0.003000,0.249982,0,0);-ms-transform:matrix(0.231688,-0.002780,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231688,-0.002780,0.003000,0.249982,0,0);}
.ma3_c00085{transform:matrix(0.231838,-0.002782,0.003000,0.249982,0,0);-ms-transform:matrix(0.231838,-0.002782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231838,-0.002782,0.003000,0.249982,0,0);}
.m3f_c00085{transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);-ms-transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);}
.mcc_c00085{transform:matrix(0.238208,-0.002858,0.003000,0.249982,0,0);-ms-transform:matrix(0.238208,-0.002858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238208,-0.002858,0.003000,0.249982,0,0);}
.m25_c00085{transform:matrix(0.240673,-0.002888,0.003000,0.249982,0,0);-ms-transform:matrix(0.240673,-0.002888,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240673,-0.002888,0.003000,0.249982,0,0);}
.mb8_c00085{transform:matrix(0.240903,-0.002891,0.003000,0.249982,0,0);-ms-transform:matrix(0.240903,-0.002891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240903,-0.002891,0.003000,0.249982,0,0);}
.m53_c00085{transform:matrix(0.243317,-0.002920,0.003000,0.249982,0,0);-ms-transform:matrix(0.243317,-0.002920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243317,-0.002920,0.003000,0.249982,0,0);}
.m43_c00085{transform:matrix(0.245152,-0.002942,0.003000,0.249982,0,0);-ms-transform:matrix(0.245152,-0.002942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245152,-0.002942,0.003000,0.249982,0,0);}
.m69_c00085{transform:matrix(0.246932,-0.002963,0.003000,0.249982,0,0);-ms-transform:matrix(0.246932,-0.002963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246932,-0.002963,0.003000,0.249982,0,0);}
.mb3_c00085{transform:matrix(0.246957,-0.002963,0.003000,0.249982,0,0);-ms-transform:matrix(0.246957,-0.002963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246957,-0.002963,0.003000,0.249982,0,0);}
.m30_c00085{transform:matrix(0.248962,-0.002988,0.003000,0.249982,0,0);-ms-transform:matrix(0.248962,-0.002988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248962,-0.002988,0.003000,0.249982,0,0);}
.mb1_c00085{transform:matrix(0.250742,-0.003009,0.003000,0.249982,0,0);-ms-transform:matrix(0.250742,-0.003009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250742,-0.003009,0.003000,0.249982,0,0);}
.m5a_c00085{transform:matrix(0.251587,-0.003019,0.003000,0.249982,0,0);-ms-transform:matrix(0.251587,-0.003019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251587,-0.003019,0.003000,0.249982,0,0);}
.m66_c00085{transform:matrix(0.251757,-0.003021,0.003000,0.249982,0,0);-ms-transform:matrix(0.251757,-0.003021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251757,-0.003021,0.003000,0.249982,0,0);}
.md9_c00085{transform:matrix(0.252082,-0.003025,0.003000,0.249982,0,0);-ms-transform:matrix(0.252082,-0.003025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252082,-0.003025,0.003000,0.249982,0,0);}
.mc6_c00085{transform:matrix(0.252407,-0.003029,0.003000,0.249982,0,0);-ms-transform:matrix(0.252407,-0.003029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252407,-0.003029,0.003000,0.249982,0,0);}
.m1c_c00085{transform:matrix(0.253482,-0.003042,0.003000,0.249982,0,0);-ms-transform:matrix(0.253482,-0.003042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253482,-0.003042,0.003000,0.249982,0,0);}
.me_c00085{transform:matrix(0.253732,-0.003045,0.003000,0.249982,0,0);-ms-transform:matrix(0.253732,-0.003045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253732,-0.003045,0.003000,0.249982,0,0);}
.md2_c00085{transform:matrix(0.255112,-0.003061,0.003000,0.249982,0,0);-ms-transform:matrix(0.255112,-0.003061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255112,-0.003061,0.003000,0.249982,0,0);}
.m93_c00085{transform:matrix(0.256702,-0.003080,0.003000,0.249982,0,0);-ms-transform:matrix(0.256702,-0.003080,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256702,-0.003080,0.003000,0.249982,0,0);}
.m8c_c00085{transform:matrix(0.256882,-0.003083,0.003000,0.249982,0,0);-ms-transform:matrix(0.256882,-0.003083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256882,-0.003083,0.003000,0.249982,0,0);}
.m68_c00085{transform:matrix(0.258556,-0.003103,0.003000,0.249982,0,0);-ms-transform:matrix(0.258556,-0.003103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258556,-0.003103,0.003000,0.249982,0,0);}
.mde_c00085{transform:matrix(0.259816,-0.003118,0.003000,0.249982,0,0);-ms-transform:matrix(0.259816,-0.003118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259816,-0.003118,0.003000,0.249982,0,0);}
.m58_c00085{transform:matrix(0.260306,-0.003124,0.003000,0.249982,0,0);-ms-transform:matrix(0.260306,-0.003124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260306,-0.003124,0.003000,0.249982,0,0);}
.m94_c00085{transform:matrix(0.264026,-0.003168,0.003000,0.249982,0,0);-ms-transform:matrix(0.264026,-0.003168,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264026,-0.003168,0.003000,0.249982,0,0);}
.m33_c00085{transform:matrix(0.264041,-0.003168,0.003000,0.249982,0,0);-ms-transform:matrix(0.264041,-0.003168,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264041,-0.003168,0.003000,0.249982,0,0);}
.m85_c00085{transform:matrix(0.266276,-0.003195,0.003000,0.249982,0,0);-ms-transform:matrix(0.266276,-0.003195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266276,-0.003195,0.003000,0.249982,0,0);}
.m6f_c00085{transform:matrix(0.268956,-0.003227,0.003000,0.249982,0,0);-ms-transform:matrix(0.268956,-0.003227,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268956,-0.003227,0.003000,0.249982,0,0);}
.m71_c00085{transform:matrix(0.269596,-0.003235,0.003000,0.249982,0,0);-ms-transform:matrix(0.269596,-0.003235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269596,-0.003235,0.003000,0.249982,0,0);}
.mb6_c00085{transform:matrix(0.269741,-0.003237,0.003000,0.249982,0,0);-ms-transform:matrix(0.269741,-0.003237,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269741,-0.003237,0.003000,0.249982,0,0);}
.m73_c00085{transform:matrix(0.271725,-0.003261,0.003000,0.249982,0,0);-ms-transform:matrix(0.271725,-0.003261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271725,-0.003261,0.003000,0.249982,0,0);}
.m12_c00085{transform:matrix(0.280155,-0.003362,0.003000,0.249982,0,0);-ms-transform:matrix(0.280155,-0.003362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280155,-0.003362,0.003000,0.249982,0,0);}
.m90_c00085{transform:matrix(0.291569,-0.003499,0.003000,0.249982,0,0);-ms-transform:matrix(0.291569,-0.003499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291569,-0.003499,0.003000,0.249982,0,0);}
.m8b_c00085{transform:matrix(0.294304,-0.003532,0.003000,0.249982,0,0);-ms-transform:matrix(0.294304,-0.003532,0.003000,0.249982,0,0);-webkit-transform:matrix(0.294304,-0.003532,0.003000,0.249982,0,0);}
.m5c_c00085{transform:matrix(0.294449,-0.003533,0.003000,0.249982,0,0);-ms-transform:matrix(0.294449,-0.003533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.294449,-0.003533,0.003000,0.249982,0,0);}
.m7e_c00085{transform:matrix(0.302998,-0.003636,0.003000,0.249982,0,0);-ms-transform:matrix(0.302998,-0.003636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.302998,-0.003636,0.003000,0.249982,0,0);}
.m70_c00085{transform:matrix(0.305883,-0.003671,0.003000,0.249982,0,0);-ms-transform:matrix(0.305883,-0.003671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.305883,-0.003671,0.003000,0.249982,0,0);}
.m83_c00085{transform:matrix(0.307058,-0.003685,0.003000,0.249982,0,0);-ms-transform:matrix(0.307058,-0.003685,0.003000,0.249982,0,0);-webkit-transform:matrix(0.307058,-0.003685,0.003000,0.249982,0,0);}
.m2c_c00085{transform:matrix(0.313797,-0.003766,0.003000,0.249982,0,0);-ms-transform:matrix(0.313797,-0.003766,0.003000,0.249982,0,0);-webkit-transform:matrix(0.313797,-0.003766,0.003000,0.249982,0,0);}
.m82_c00085{transform:matrix(0.322957,-0.003875,0.003000,0.249982,0,0);-ms-transform:matrix(0.322957,-0.003875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.322957,-0.003875,0.003000,0.249982,0,0);}
.m5e_c00085{transform:matrix(0.328246,-0.003939,0.003000,0.249982,0,0);-ms-transform:matrix(0.328246,-0.003939,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328246,-0.003939,0.003000,0.249982,0,0);}
.md7_c00085{transform:matrix(0.337571,-0.004051,0.003000,0.249982,0,0);-ms-transform:matrix(0.337571,-0.004051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337571,-0.004051,0.003000,0.249982,0,0);}
.m10_c00085{transform:matrix(0.339021,-0.004068,0.003000,0.249982,0,0);-ms-transform:matrix(0.339021,-0.004068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.339021,-0.004068,0.003000,0.249982,0,0);}
.m7c_c00085{transform:matrix(0.341145,-0.004094,0.003000,0.249982,0,0);-ms-transform:matrix(0.341145,-0.004094,0.003000,0.249982,0,0);-webkit-transform:matrix(0.341145,-0.004094,0.003000,0.249982,0,0);}
.mbe_c00085{transform:matrix(0.347300,-0.004168,0.003000,0.249982,0,0);-ms-transform:matrix(0.347300,-0.004168,0.003000,0.249982,0,0);-webkit-transform:matrix(0.347300,-0.004168,0.003000,0.249982,0,0);}
.m7d_c00085{transform:matrix(0.348825,-0.004186,0.003000,0.249982,0,0);-ms-transform:matrix(0.348825,-0.004186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.348825,-0.004186,0.003000,0.249982,0,0);}
.m86_c00085{transform:matrix(0.351000,-0.004212,0.003000,0.249982,0,0);-ms-transform:matrix(0.351000,-0.004212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.351000,-0.004212,0.003000,0.249982,0,0);}
.mb7_c00085{transform:matrix(0.354254,-0.004251,0.003000,0.249982,0,0);-ms-transform:matrix(0.354254,-0.004251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.354254,-0.004251,0.003000,0.249982,0,0);}
.m81_c00085{transform:matrix(0.354454,-0.004253,0.003000,0.249982,0,0);-ms-transform:matrix(0.354454,-0.004253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.354454,-0.004253,0.003000,0.249982,0,0);}
.m62_c00085{transform:matrix(0.359644,-0.004316,0.003000,0.249982,0,0);-ms-transform:matrix(0.359644,-0.004316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.359644,-0.004316,0.003000,0.249982,0,0);}
.m72_c00085{transform:matrix(0.360299,-0.004324,0.003000,0.249982,0,0);-ms-transform:matrix(0.360299,-0.004324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.360299,-0.004324,0.003000,0.249982,0,0);}
.m89_c00085{transform:matrix(0.361834,-0.004342,0.003000,0.249982,0,0);-ms-transform:matrix(0.361834,-0.004342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.361834,-0.004342,0.003000,0.249982,0,0);}
.mcd_c00085{transform:matrix(0.366434,-0.004397,0.003000,0.249982,0,0);-ms-transform:matrix(0.366434,-0.004397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.366434,-0.004397,0.003000,0.249982,0,0);}
.md6_c00085{transform:matrix(0.373313,-0.004480,0.003000,0.249982,0,0);-ms-transform:matrix(0.373313,-0.004480,0.003000,0.249982,0,0);-webkit-transform:matrix(0.373313,-0.004480,0.003000,0.249982,0,0);}
.m8a_c00085{transform:matrix(0.424424,-0.005093,0.003000,0.249982,0,0);-ms-transform:matrix(0.424424,-0.005093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.424424,-0.005093,0.003000,0.249982,0,0);}
.md5_c00085{transform:matrix(0.461047,-0.005533,0.003000,0.249982,0,0);-ms-transform:matrix(0.461047,-0.005533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.461047,-0.005533,0.003000,0.249982,0,0);}
.m7b_c00085{transform:matrix(0.491960,-0.005904,0.003000,0.249982,0,0);-ms-transform:matrix(0.491960,-0.005904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.491960,-0.005904,0.003000,0.249982,0,0);}
.mdc_c00085{transform:matrix(0.499039,-0.005988,0.003000,0.249982,0,0);-ms-transform:matrix(0.499039,-0.005988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.499039,-0.005988,0.003000,0.249982,0,0);}
.m7f_c00085{transform:matrix(0.522477,-0.006270,0.003000,0.249982,0,0);-ms-transform:matrix(0.522477,-0.006270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.522477,-0.006270,0.003000,0.249982,0,0);}
.m80_c00085{transform:matrix(0.581323,-0.006976,0.003000,0.249982,0,0);-ms-transform:matrix(0.581323,-0.006976,0.003000,0.249982,0,0);-webkit-transform:matrix(0.581323,-0.006976,0.003000,0.249982,0,0);}
.m7a_c00085{transform:matrix(0.595602,-0.007147,0.003000,0.249982,0,0);-ms-transform:matrix(0.595602,-0.007147,0.003000,0.249982,0,0);-webkit-transform:matrix(0.595602,-0.007147,0.003000,0.249982,0,0);}
.m79_c00085{transform:matrix(0.611156,-0.007334,0.003000,0.249982,0,0);-ms-transform:matrix(0.611156,-0.007334,0.003000,0.249982,0,0);-webkit-transform:matrix(0.611156,-0.007334,0.003000,0.249982,0,0);}
.m88_c00085{transform:matrix(0.715299,-0.008584,0.003000,0.249982,0,0);-ms-transform:matrix(0.715299,-0.008584,0.003000,0.249982,0,0);-webkit-transform:matrix(0.715299,-0.008584,0.003000,0.249982,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;}
.fs2_c00085{font-size:61.954460px;}
.fs0_c00085{font-size:65.104687px;}
.fs1_c00085{font-size:68.254914px;}
.fs8_c00085{font-size:69.304989px;}
.fs3_c00085{font-size:70.355065px;}
.fs5_c00085{font-size:71.405141px;}
.fs7_c00085{font-size:72.455216px;}
.fs6_c00085{font-size:73.505292px;}
.fs4_c00085{font-size:74.555367px;}
.fsb_c00085{font-size:75.605443px;}
.fsa_c00085{font-size:77.705594px;}
.fs9_c00085{font-size:79.805745px;}
.y0_c00085{bottom:0.000000px;}
.ye1_c00085{bottom:124.961880px;}
.ye0_c00085{bottom:124.961994px;}
.yd9_c00085{bottom:124.962612px;}
.yd8_c00085{bottom:124.962648px;}
.ydf_c00085{bottom:124.962690px;}
.yda_c00085{bottom:124.962954px;}
.yde_c00085{bottom:124.963026px;}
.ydc_c00085{bottom:124.963500px;}
.ydb_c00085{bottom:124.963638px;}
.ydd_c00085{bottom:124.963662px;}
.yd6_c00085{bottom:148.558746px;}
.yd7_c00085{bottom:148.558920px;}
.yd5_c00085{bottom:148.559316px;}
.yd4_c00085{bottom:172.028304px;}
.yd3_c00085{bottom:172.028598px;}
.yd2_c00085{bottom:172.028694px;}
.yd0_c00085{bottom:172.028802px;}
.yd1_c00085{bottom:172.028970px;}
.yce_c00085{bottom:172.029156px;}
.ycf_c00085{bottom:172.029360px;}
.ycd_c00085{bottom:172.029492px;}
.ycc_c00085{bottom:172.029630px;}
.yc7_c00085{bottom:195.191916px;}
.yc8_c00085{bottom:195.192060px;}
.yc5_c00085{bottom:195.192414px;}
.yc6_c00085{bottom:195.192576px;}
.yc9_c00085{bottom:195.192762px;}
.yc3_c00085{bottom:195.192846px;}
.ycb_c00085{bottom:195.193092px;}
.yc4_c00085{bottom:195.193128px;}
.yca_c00085{bottom:195.193248px;}
.yc2_c00085{bottom:195.193524px;}
.yb9_c00085{bottom:217.489506px;}
.yba_c00085{bottom:217.490172px;}
.ybb_c00085{bottom:217.490754px;}
.ybd_c00085{bottom:217.490802px;}
.ybe_c00085{bottom:217.491006px;}
.ybc_c00085{bottom:217.491120px;}
.ybf_c00085{bottom:217.491630px;}
.yc0_c00085{bottom:217.492176px;}
.yc1_c00085{bottom:217.492260px;}
.yb8_c00085{bottom:240.837588px;}
.yb7_c00085{bottom:240.838302px;}
.yb6_c00085{bottom:240.838800px;}
.yb5_c00085{bottom:240.838854px;}
.yb1_c00085{bottom:240.839112px;}
.yb2_c00085{bottom:240.839262px;}
.yb4_c00085{bottom:240.839532px;}
.yb3_c00085{bottom:240.839724px;}
.yb0_c00085{bottom:263.632464px;}
.yaf_c00085{bottom:263.632800px;}
.yae_c00085{bottom:263.632878px;}
.ya8_c00085{bottom:263.633388px;}
.yad_c00085{bottom:263.633430px;}
.yaa_c00085{bottom:263.633598px;}
.yac_c00085{bottom:263.633844px;}
.ya9_c00085{bottom:263.633934px;}
.yab_c00085{bottom:263.634180px;}
.ya1_c00085{bottom:286.500162px;}
.ya3_c00085{bottom:286.500414px;}
.ya2_c00085{bottom:286.500906px;}
.ya4_c00085{bottom:286.501158px;}
.ya5_c00085{bottom:286.501386px;}
.ya7_c00085{bottom:286.501632px;}
.ya6_c00085{bottom:286.501908px;}
.ya0_c00085{bottom:309.967140px;}
.y9e_c00085{bottom:309.967392px;}
.y9f_c00085{bottom:309.967656px;}
.y9d_c00085{bottom:309.968028px;}
.y9c_c00085{bottom:309.968706px;}
.y99_c00085{bottom:309.968766px;}
.y9b_c00085{bottom:309.968838px;}
.y9a_c00085{bottom:309.968952px;}
.y94_c00085{bottom:332.436138px;}
.y96_c00085{bottom:332.436264px;}
.y91_c00085{bottom:332.436468px;}
.y93_c00085{bottom:332.436474px;}
.y95_c00085{bottom:332.436540px;}
.y98_c00085{bottom:332.436594px;}
.y92_c00085{bottom:332.436810px;}
.y97_c00085{bottom:332.436888px;}
.y87_c00085{bottom:355.198644px;}
.y88_c00085{bottom:355.199088px;}
.y8a_c00085{bottom:355.199454px;}
.y89_c00085{bottom:355.199670px;}
.y8b_c00085{bottom:355.199916px;}
.y8e_c00085{bottom:355.200384px;}
.y8d_c00085{bottom:355.200402px;}
.y8f_c00085{bottom:355.200408px;}
.y8c_c00085{bottom:355.200600px;}
.y90_c00085{bottom:355.200798px;}
.y85_c00085{bottom:378.353856px;}
.y86_c00085{bottom:378.353904px;}
.y83_c00085{bottom:400.604616px;}
.y81_c00085{bottom:400.604730px;}
.y82_c00085{bottom:400.604832px;}
.y84_c00085{bottom:400.605300px;}
.y80_c00085{bottom:424.910376px;}
.y7f_c00085{bottom:424.910994px;}
.y7e_c00085{bottom:447.397050px;}
.y7d_c00085{bottom:447.397488px;}
.y7c_c00085{bottom:447.397986px;}
.y7b_c00085{bottom:447.398442px;}
.y76_c00085{bottom:470.222544px;}
.y7a_c00085{bottom:470.222946px;}
.y78_c00085{bottom:470.223018px;}
.y77_c00085{bottom:470.223252px;}
.y79_c00085{bottom:470.223480px;}
.y74_c00085{bottom:493.892166px;}
.y73_c00085{bottom:493.892322px;}
.y72_c00085{bottom:493.892436px;}
.y75_c00085{bottom:493.892508px;}
.y6a_c00085{bottom:515.896458px;}
.y68_c00085{bottom:515.896710px;}
.y69_c00085{bottom:515.896854px;}
.y6b_c00085{bottom:515.897022px;}
.y67_c00085{bottom:515.897328px;}
.y6d_c00085{bottom:515.897472px;}
.y6e_c00085{bottom:515.897538px;}
.y6c_c00085{bottom:515.897766px;}
.y6f_c00085{bottom:515.897964px;}
.y71_c00085{bottom:515.897970px;}
.y70_c00085{bottom:515.898366px;}
.y61_c00085{bottom:538.918218px;}
.y66_c00085{bottom:538.918260px;}
.y63_c00085{bottom:538.918428px;}
.y65_c00085{bottom:538.918476px;}
.y64_c00085{bottom:538.918572px;}
.y5c_c00085{bottom:538.918662px;}
.y5f_c00085{bottom:538.918674px;}
.y60_c00085{bottom:538.918698px;}
.y5e_c00085{bottom:538.918848px;}
.y62_c00085{bottom:538.918866px;}
.y5d_c00085{bottom:538.919364px;}
.y59_c00085{bottom:561.735930px;}
.y56_c00085{bottom:561.736200px;}
.y55_c00085{bottom:561.736236px;}
.y58_c00085{bottom:561.736386px;}
.y5a_c00085{bottom:561.736560px;}
.y57_c00085{bottom:561.736602px;}
.y5b_c00085{bottom:561.736824px;}
.y51_c00085{bottom:584.854404px;}
.y52_c00085{bottom:584.854608px;}
.y50_c00085{bottom:584.854620px;}
.y4d_c00085{bottom:584.854830px;}
.y54_c00085{bottom:584.855304px;}
.y53_c00085{bottom:584.855316px;}
.y4f_c00085{bottom:584.855358px;}
.y4e_c00085{bottom:584.855394px;}
.y45_c00085{bottom:606.731658px;}
.y46_c00085{bottom:606.732180px;}
.y47_c00085{bottom:606.732684px;}
.y4a_c00085{bottom:606.732756px;}
.y4c_c00085{bottom:606.732762px;}
.y4b_c00085{bottom:606.733260px;}
.y48_c00085{bottom:606.733368px;}
.y49_c00085{bottom:606.733374px;}
.y41_c00085{bottom:629.791284px;}
.y42_c00085{bottom:629.791488px;}
.y44_c00085{bottom:629.791596px;}
.y3e_c00085{bottom:629.791734px;}
.y43_c00085{bottom:629.791812px;}
.y3d_c00085{bottom:629.791950px;}
.y40_c00085{bottom:629.791962px;}
.y3c_c00085{bottom:629.792268px;}
.y3f_c00085{bottom:629.792418px;}
.y3a_c00085{bottom:652.432692px;}
.y37_c00085{bottom:652.433016px;}
.y39_c00085{bottom:652.433046px;}
.y36_c00085{bottom:652.433232px;}
.y33_c00085{bottom:652.433244px;}
.y35_c00085{bottom:652.433370px;}
.y3b_c00085{bottom:652.433418px;}
.y34_c00085{bottom:652.433586px;}
.y38_c00085{bottom:652.433664px;}
.y32_c00085{bottom:675.680280px;}
.y31_c00085{bottom:675.680976px;}
.y2e_c00085{bottom:675.681258px;}
.y2d_c00085{bottom:675.681312px;}
.y30_c00085{bottom:675.681450px;}
.y2f_c00085{bottom:675.681882px;}
.y25_c00085{bottom:698.241552px;}
.y26_c00085{bottom:698.241876px;}
.y2b_c00085{bottom:698.242080px;}
.y27_c00085{bottom:698.242266px;}
.y2c_c00085{bottom:698.242326px;}
.y29_c00085{bottom:698.242632px;}
.y2a_c00085{bottom:698.242716px;}
.y28_c00085{bottom:698.242968px;}
.y23_c00085{bottom:720.804636px;}
.y1e_c00085{bottom:720.804918px;}
.y1d_c00085{bottom:720.805032px;}
.y1f_c00085{bottom:720.805122px;}
.y22_c00085{bottom:720.805212px;}
.y20_c00085{bottom:720.805404px;}
.y24_c00085{bottom:720.805824px;}
.y21_c00085{bottom:720.805908px;}
.y12_c00085{bottom:743.706066px;}
.y18_c00085{bottom:743.706288px;}
.y16_c00085{bottom:743.706318px;}
.y1a_c00085{bottom:743.706330px;}
.y13_c00085{bottom:743.706390px;}
.y15_c00085{bottom:743.706414px;}
.y17_c00085{bottom:743.706462px;}
.y19_c00085{bottom:743.706528px;}
.y1c_c00085{bottom:743.706618px;}
.y1b_c00085{bottom:743.706732px;}
.y14_c00085{bottom:743.706972px;}
.y11_c00085{bottom:766.050402px;}
.y10_c00085{bottom:766.050936px;}
.yf_c00085{bottom:766.051374px;}
.ye_c00085{bottom:766.051872px;}
.yd_c00085{bottom:766.052286px;}
.yc_c00085{bottom:766.053000px;}
.y8_c00085{bottom:766.053288px;}
.yb_c00085{bottom:766.053618px;}
.y9_c00085{bottom:766.053990px;}
.ya_c00085{bottom:766.054134px;}
.y1_c00085{bottom:787.306500px;}
.y2_c00085{bottom:787.850046px;}
.y3_c00085{bottom:788.218992px;}
.y4_c00085{bottom:788.579352px;}
.y5_c00085{bottom:789.055794px;}
.y6_c00085{bottom:789.541794px;}
.y7_c00085{bottom:789.850350px;}
.h4_c00085{height:61.954460px;}
.h2_c00085{height:65.104687px;}
.h3_c00085{height:68.254914px;}
.ha_c00085{height:69.304989px;}
.h5_c00085{height:70.355065px;}
.h7_c00085{height:71.405141px;}
.h9_c00085{height:72.455216px;}
.h8_c00085{height:73.505292px;}
.h6_c00085{height:74.555367px;}
.hd_c00085{height:75.605443px;}
.hc_c00085{height:77.705594px;}
.hb_c00085{height:79.805745px;}
.h0_c00085{height:1008.450000px;}
.h1_c00085{height:1008.750000px;}
.w0_c00085{width:711.720000px;}
.w1_c00085{width:711.750000px;}
.x0_c00085{left:0.000000px;}
.x80_c00085{left:177.389118px;}
.x4d_c00085{left:179.280072px;}
.x60_c00085{left:192.778122px;}
.x81_c00085{left:194.130030px;}
.x4e_c00085{left:195.480912px;}
.x66_c00085{left:196.828812px;}
.x34_c00085{left:197.911212px;}
.x1_c00085{left:199.207500px;}
.x8_c00085{left:200.611704px;}
.x3f_c00085{left:216.541566px;}
.x35_c00085{left:219.512826px;}
.x67_c00085{left:220.860768px;}
.x5f_c00085{left:222.480576px;}
.x3b_c00085{left:224.642742px;}
.x46_c00085{left:226.263612px;}
.x9_c00085{left:228.424200px;}
.x2c_c00085{left:230.045682px;}
.x61_c00085{left:233.821026px;}
.x82_c00085{left:235.983060px;}
.x20_c00085{left:237.604650px;}
.x6e_c00085{left:241.922952px;}
.x2_c00085{left:244.503000px;}
.x86_c00085{left:247.321290px;}
.x7a_c00085{left:249.482550px;}
.x69_c00085{left:250.563120px;}
.x62_c00085{left:258.123018px;}
.x71_c00085{left:259.743882px;}
.x12_c00085{left:262.445724px;}
.x36_c00085{left:264.876360px;}
.x47_c00085{left:266.226372px;}
.x27_c00085{left:267.578154px;}
.x2d_c00085{left:268.658244px;}
.xa_c00085{left:270.817302px;}
.x7b_c00085{left:273.784542px;}
.x3_c00085{left:275.248500px;}
.x83_c00085{left:276.755928px;}
.x13_c00085{left:283.777302px;}
.x76_c00085{left:289.715694px;}
.x57_c00085{left:290.796138px;}
.x2e_c00085{left:292.150128px;}
.x72_c00085{left:294.845940px;}
.x1b_c00085{left:296.737944px;}
.x3c_c00085{left:298.627380px;}
.x88_c00085{left:301.055634px;}
.x63_c00085{left:303.486552px;}
.x4_c00085{left:305.278500px;}
.x40_c00085{left:308.348778px;}
.xb_c00085{left:310.780062px;}
.x37_c00085{left:312.940272px;}
.x28_c00085{left:317.262300px;}
.x4f_c00085{left:319.149714px;}
.x6f_c00085{left:320.768310px;}
.x1c_c00085{left:322.390134px;}
.x2f_c00085{left:324.011718px;}
.x14_c00085{left:325.900368px;}
.x5d_c00085{left:330.218616px;}
.x21_c00085{left:332.650830px;}
.xc_c00085{left:333.731874px;}
.x5b_c00085{left:337.509222px;}
.x87_c00085{left:341.287326px;}
.x5_c00085{left:344.982000px;}
.x89_c00085{left:346.689204px;}
.x7d_c00085{left:350.201592px;}
.x5e_c00085{left:353.980536px;}
.x58_c00085{left:356.411088px;}
.x3d_c00085{left:357.761394px;}
.x22_c00085{left:360.463326px;}
.x38_c00085{left:362.352900px;}
.x50_c00085{left:365.593392px;}
.x15_c00085{left:368.293470px;}
.x59_c00085{left:370.451604px;}
.x41_c00085{left:373.153620px;}
.x55_c00085{left:378.822324px;}
.x3e_c00085{left:380.713206px;}
.x6_c00085{left:385.482000px;}
.x5c_c00085{left:388.812120px;}
.x64_c00085{left:390.703098px;}
.xd_c00085{left:392.055780px;}
.x29_c00085{left:394.487424px;}
.x6a_c00085{left:395.563500px;}
.x30_c00085{left:399.076518px;}
.x39_c00085{left:403.125768px;}
.x84_c00085{left:406.094058px;}
.x23_c00085{left:409.067328px;}
.x7_c00085{left:411.195000px;}
.x42_c00085{left:413.926488px;}
.x56_c00085{left:415.814652px;}
.x68_c00085{left:416.895492px;}
.x73_c00085{left:417.974670px;}
.x1d_c00085{left:420.138210px;}
.x31_c00085{left:422.028330px;}
.x5a_c00085{left:423.914808px;}
.x7e_c00085{left:427.158162px;}
.x16_c00085{left:432.288186px;}
.x17_c00085{left:439.309194px;}
.x3a_c00085{left:440.658168px;}
.xe_c00085{left:449.029488px;}
.x48_c00085{left:450.379386px;}
.x2a_c00085{left:453.081366px;}
.x65_c00085{left:456.588084px;}
.x24_c00085{left:459.831636px;}
.x1e_c00085{left:461.721204px;}
.x6b_c00085{left:463.338774px;}
.x18_c00085{left:464.421312px;}
.xf_c00085{left:468.740832px;}
.x8a_c00085{left:469.817952px;}
.x49_c00085{left:475.221468px;}
.x32_c00085{left:477.381804px;}
.x45_c00085{left:478.731192px;}
.x77_c00085{left:480.079608px;}
.x19_c00085{left:486.833034px;}
.x51_c00085{left:490.342356px;}
.x10_c00085{left:493.582914px;}
.x85_c00085{left:495.199392px;}
.x25_c00085{left:496.283892px;}
.x2b_c00085{left:497.904828px;}
.x70_c00085{left:499.520532px;}
.x43_c00085{left:500.872998px;}
.x78_c00085{left:506.541924px;}
.x6c_c00085{left:509.242380px;}
.x4a_c00085{left:510.863598px;}
.x1f_c00085{left:521.395290px;}
.x7f_c00085{left:523.824576px;}
.x74_c00085{left:527.062884px;}
.x7c_c00085{left:530.571996px;}
.x8b_c00085{left:532.192434px;}
.x33_c00085{left:537.325926px;}
.x1a_c00085{left:542.456544px;}
.x11_c00085{left:547.046118px;}
.x6d_c00085{left:549.205140px;}
.x52_c00085{left:551.636676px;}
.x4b_c00085{left:559.737636px;}
.x26_c00085{left:562.438914px;}
.x79_c00085{left:564.865830px;}
.x53_c00085{left:567.297426px;}
.x75_c00085{left:575.666886px;}
.x44_c00085{left:587.009400px;}
.x54_c00085{left:604.019718px;}
.x4c_c00085{left:605.101170px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
.fs2_c00085{font-size:55.070631pt;}
.fs0_c00085{font-size:57.870833pt;}
.fs1_c00085{font-size:60.671035pt;}
.fs8_c00085{font-size:61.604435pt;}
.fs3_c00085{font-size:62.537836pt;}
.fs5_c00085{font-size:63.471236pt;}
.fs7_c00085{font-size:64.404637pt;}
.fs6_c00085{font-size:65.338037pt;}
.fs4_c00085{font-size:66.271438pt;}
.fsb_c00085{font-size:67.204838pt;}
.fsa_c00085{font-size:69.071639pt;}
.fs9_c00085{font-size:70.938440pt;}
.y0_c00085{bottom:0.000000pt;}
.ye1_c00085{bottom:111.077227pt;}
.ye0_c00085{bottom:111.077328pt;}
.yd9_c00085{bottom:111.077877pt;}
.yd8_c00085{bottom:111.077909pt;}
.ydf_c00085{bottom:111.077947pt;}
.yda_c00085{bottom:111.078181pt;}
.yde_c00085{bottom:111.078245pt;}
.ydc_c00085{bottom:111.078667pt;}
.ydb_c00085{bottom:111.078789pt;}
.ydd_c00085{bottom:111.078811pt;}
.yd6_c00085{bottom:132.052219pt;}
.yd7_c00085{bottom:132.052373pt;}
.yd5_c00085{bottom:132.052725pt;}
.yd4_c00085{bottom:152.914048pt;}
.yd3_c00085{bottom:152.914309pt;}
.yd2_c00085{bottom:152.914395pt;}
.yd0_c00085{bottom:152.914491pt;}
.yd1_c00085{bottom:152.914640pt;}
.yce_c00085{bottom:152.914805pt;}
.ycf_c00085{bottom:152.914987pt;}
.ycd_c00085{bottom:152.915104pt;}
.ycc_c00085{bottom:152.915227pt;}
.yc7_c00085{bottom:173.503925pt;}
.yc8_c00085{bottom:173.504053pt;}
.yc5_c00085{bottom:173.504368pt;}
.yc6_c00085{bottom:173.504512pt;}
.yc9_c00085{bottom:173.504677pt;}
.yc3_c00085{bottom:173.504752pt;}
.ycb_c00085{bottom:173.504971pt;}
.yc4_c00085{bottom:173.505003pt;}
.yca_c00085{bottom:173.505109pt;}
.yc2_c00085{bottom:173.505355pt;}
.yb9_c00085{bottom:193.324005pt;}
.yba_c00085{bottom:193.324597pt;}
.ybb_c00085{bottom:193.325115pt;}
.ybd_c00085{bottom:193.325157pt;}
.ybe_c00085{bottom:193.325339pt;}
.ybc_c00085{bottom:193.325440pt;}
.ybf_c00085{bottom:193.325893pt;}
.yc0_c00085{bottom:193.326379pt;}
.yc1_c00085{bottom:193.326453pt;}
.yb8_c00085{bottom:214.077856pt;}
.yb7_c00085{bottom:214.078491pt;}
.yb6_c00085{bottom:214.078933pt;}
.yb5_c00085{bottom:214.078981pt;}
.yb1_c00085{bottom:214.079211pt;}
.yb2_c00085{bottom:214.079344pt;}
.yb4_c00085{bottom:214.079584pt;}
.yb3_c00085{bottom:214.079755pt;}
.yb0_c00085{bottom:234.339968pt;}
.yaf_c00085{bottom:234.340267pt;}
.yae_c00085{bottom:234.340336pt;}
.ya8_c00085{bottom:234.340789pt;}
.yad_c00085{bottom:234.340827pt;}
.yaa_c00085{bottom:234.340976pt;}
.yac_c00085{bottom:234.341195pt;}
.ya9_c00085{bottom:234.341275pt;}
.yab_c00085{bottom:234.341493pt;}
.ya1_c00085{bottom:254.666811pt;}
.ya3_c00085{bottom:254.667035pt;}
.ya2_c00085{bottom:254.667472pt;}
.ya4_c00085{bottom:254.667696pt;}
.ya5_c00085{bottom:254.667899pt;}
.ya7_c00085{bottom:254.668117pt;}
.ya6_c00085{bottom:254.668363pt;}
.ya0_c00085{bottom:275.526347pt;}
.y9e_c00085{bottom:275.526571pt;}
.y9f_c00085{bottom:275.526805pt;}
.y9d_c00085{bottom:275.527136pt;}
.y9c_c00085{bottom:275.527739pt;}
.y99_c00085{bottom:275.527792pt;}
.y9b_c00085{bottom:275.527856pt;}
.y9a_c00085{bottom:275.527957pt;}
.y94_c00085{bottom:295.498789pt;}
.y96_c00085{bottom:295.498901pt;}
.y91_c00085{bottom:295.499083pt;}
.y93_c00085{bottom:295.499088pt;}
.y95_c00085{bottom:295.499147pt;}
.y98_c00085{bottom:295.499195pt;}
.y92_c00085{bottom:295.499387pt;}
.y97_c00085{bottom:295.499456pt;}
.y87_c00085{bottom:315.732128pt;}
.y88_c00085{bottom:315.732523pt;}
.y8a_c00085{bottom:315.732848pt;}
.y89_c00085{bottom:315.733040pt;}
.y8b_c00085{bottom:315.733259pt;}
.y8e_c00085{bottom:315.733675pt;}
.y8d_c00085{bottom:315.733691pt;}
.y8f_c00085{bottom:315.733696pt;}
.y8c_c00085{bottom:315.733867pt;}
.y90_c00085{bottom:315.734043pt;}
.y85_c00085{bottom:336.314539pt;}
.y86_c00085{bottom:336.314581pt;}
.y83_c00085{bottom:356.092992pt;}
.y81_c00085{bottom:356.093093pt;}
.y82_c00085{bottom:356.093184pt;}
.y84_c00085{bottom:356.093600pt;}
.y80_c00085{bottom:377.698112pt;}
.y7f_c00085{bottom:377.698661pt;}
.y7e_c00085{bottom:397.686267pt;}
.y7d_c00085{bottom:397.686656pt;}
.y7c_c00085{bottom:397.687099pt;}
.y7b_c00085{bottom:397.687504pt;}
.y76_c00085{bottom:417.975595pt;}
.y7a_c00085{bottom:417.975952pt;}
.y78_c00085{bottom:417.976016pt;}
.y77_c00085{bottom:417.976224pt;}
.y79_c00085{bottom:417.976427pt;}
.y74_c00085{bottom:439.015259pt;}
.y73_c00085{bottom:439.015397pt;}
.y72_c00085{bottom:439.015499pt;}
.y75_c00085{bottom:439.015563pt;}
.y6a_c00085{bottom:458.574629pt;}
.y68_c00085{bottom:458.574853pt;}
.y69_c00085{bottom:458.574981pt;}
.y6b_c00085{bottom:458.575131pt;}
.y67_c00085{bottom:458.575403pt;}
.y6d_c00085{bottom:458.575531pt;}
.y6e_c00085{bottom:458.575589pt;}
.y6c_c00085{bottom:458.575792pt;}
.y6f_c00085{bottom:458.575968pt;}
.y71_c00085{bottom:458.575973pt;}
.y70_c00085{bottom:458.576325pt;}
.y61_c00085{bottom:479.038416pt;}
.y66_c00085{bottom:479.038453pt;}
.y63_c00085{bottom:479.038603pt;}
.y65_c00085{bottom:479.038645pt;}
.y64_c00085{bottom:479.038731pt;}
.y5c_c00085{bottom:479.038811pt;}
.y5f_c00085{bottom:479.038821pt;}
.y60_c00085{bottom:479.038843pt;}
.y5e_c00085{bottom:479.038976pt;}
.y62_c00085{bottom:479.038992pt;}
.y5d_c00085{bottom:479.039435pt;}
.y59_c00085{bottom:499.320827pt;}
.y56_c00085{bottom:499.321067pt;}
.y55_c00085{bottom:499.321099pt;}
.y58_c00085{bottom:499.321232pt;}
.y5a_c00085{bottom:499.321387pt;}
.y57_c00085{bottom:499.321424pt;}
.y5b_c00085{bottom:499.321621pt;}
.y51_c00085{bottom:519.870581pt;}
.y52_c00085{bottom:519.870763pt;}
.y50_c00085{bottom:519.870773pt;}
.y4d_c00085{bottom:519.870960pt;}
.y54_c00085{bottom:519.871381pt;}
.y53_c00085{bottom:519.871392pt;}
.y4f_c00085{bottom:519.871429pt;}
.y4e_c00085{bottom:519.871461pt;}
.y45_c00085{bottom:539.317029pt;}
.y46_c00085{bottom:539.317493pt;}
.y47_c00085{bottom:539.317941pt;}
.y4a_c00085{bottom:539.318005pt;}
.y4c_c00085{bottom:539.318011pt;}
.y4b_c00085{bottom:539.318453pt;}
.y48_c00085{bottom:539.318549pt;}
.y49_c00085{bottom:539.318555pt;}
.y41_c00085{bottom:559.814475pt;}
.y42_c00085{bottom:559.814656pt;}
.y44_c00085{bottom:559.814752pt;}
.y3e_c00085{bottom:559.814875pt;}
.y43_c00085{bottom:559.814944pt;}
.y3d_c00085{bottom:559.815067pt;}
.y40_c00085{bottom:559.815077pt;}
.y3c_c00085{bottom:559.815349pt;}
.y3f_c00085{bottom:559.815483pt;}
.y3a_c00085{bottom:579.940171pt;}
.y37_c00085{bottom:579.940459pt;}
.y39_c00085{bottom:579.940485pt;}
.y36_c00085{bottom:579.940651pt;}
.y33_c00085{bottom:579.940661pt;}
.y35_c00085{bottom:579.940773pt;}
.y3b_c00085{bottom:579.940816pt;}
.y34_c00085{bottom:579.940965pt;}
.y38_c00085{bottom:579.941035pt;}
.y32_c00085{bottom:600.604693pt;}
.y31_c00085{bottom:600.605312pt;}
.y2e_c00085{bottom:600.605563pt;}
.y2d_c00085{bottom:600.605611pt;}
.y30_c00085{bottom:600.605733pt;}
.y2f_c00085{bottom:600.606117pt;}
.y25_c00085{bottom:620.659157pt;}
.y26_c00085{bottom:620.659445pt;}
.y2b_c00085{bottom:620.659627pt;}
.y27_c00085{bottom:620.659792pt;}
.y2c_c00085{bottom:620.659845pt;}
.y29_c00085{bottom:620.660117pt;}
.y2a_c00085{bottom:620.660192pt;}
.y28_c00085{bottom:620.660416pt;}
.y23_c00085{bottom:640.715232pt;}
.y1e_c00085{bottom:640.715483pt;}
.y1d_c00085{bottom:640.715584pt;}
.y1f_c00085{bottom:640.715664pt;}
.y22_c00085{bottom:640.715744pt;}
.y20_c00085{bottom:640.715915pt;}
.y24_c00085{bottom:640.716288pt;}
.y21_c00085{bottom:640.716363pt;}
.y12_c00085{bottom:661.072059pt;}
.y18_c00085{bottom:661.072256pt;}
.y16_c00085{bottom:661.072283pt;}
.y1a_c00085{bottom:661.072293pt;}
.y13_c00085{bottom:661.072347pt;}
.y15_c00085{bottom:661.072368pt;}
.y17_c00085{bottom:661.072411pt;}
.y19_c00085{bottom:661.072469pt;}
.y1c_c00085{bottom:661.072549pt;}
.y1b_c00085{bottom:661.072651pt;}
.y14_c00085{bottom:661.072864pt;}
.y11_c00085{bottom:680.933691pt;}
.y10_c00085{bottom:680.934165pt;}
.yf_c00085{bottom:680.934555pt;}
.ye_c00085{bottom:680.934997pt;}
.yd_c00085{bottom:680.935365pt;}
.yc_c00085{bottom:680.936000pt;}
.y8_c00085{bottom:680.936256pt;}
.yb_c00085{bottom:680.936549pt;}
.y9_c00085{bottom:680.936880pt;}
.ya_c00085{bottom:680.937008pt;}
.y1_c00085{bottom:699.828000pt;}
.y2_c00085{bottom:700.311152pt;}
.y3_c00085{bottom:700.639104pt;}
.y4_c00085{bottom:700.959424pt;}
.y5_c00085{bottom:701.382928pt;}
.y6_c00085{bottom:701.814928pt;}
.y7_c00085{bottom:702.089200pt;}
.h4_c00085{height:55.070631pt;}
.h2_c00085{height:57.870833pt;}
.h3_c00085{height:60.671035pt;}
.ha_c00085{height:61.604435pt;}
.h5_c00085{height:62.537836pt;}
.h7_c00085{height:63.471236pt;}
.h9_c00085{height:64.404637pt;}
.h8_c00085{height:65.338037pt;}
.h6_c00085{height:66.271438pt;}
.hd_c00085{height:67.204838pt;}
.hc_c00085{height:69.071639pt;}
.hb_c00085{height:70.938440pt;}
.h0_c00085{height:896.400000pt;}
.h1_c00085{height:896.666667pt;}
.w0_c00085{width:632.640000pt;}
.w1_c00085{width:632.666667pt;}
.x0_c00085{left:0.000000pt;}
.x80_c00085{left:157.679216pt;}
.x4d_c00085{left:159.360064pt;}
.x60_c00085{left:171.358331pt;}
.x81_c00085{left:172.560027pt;}
.x4e_c00085{left:173.760811pt;}
.x66_c00085{left:174.958944pt;}
.x34_c00085{left:175.921077pt;}
.x1_c00085{left:177.073333pt;}
.x8_c00085{left:178.321515pt;}
.x3f_c00085{left:192.481392pt;}
.x35_c00085{left:195.122512pt;}
.x67_c00085{left:196.320683pt;}
.x5f_c00085{left:197.760512pt;}
.x3b_c00085{left:199.682437pt;}
.x46_c00085{left:201.123211pt;}
.x9_c00085{left:203.043733pt;}
.x2c_c00085{left:204.485051pt;}
.x61_c00085{left:207.840912pt;}
.x82_c00085{left:209.762720pt;}
.x20_c00085{left:211.204133pt;}
.x6e_c00085{left:215.042624pt;}
.x2_c00085{left:217.336000pt;}
.x86_c00085{left:219.841147pt;}
.x7a_c00085{left:221.762267pt;}
.x69_c00085{left:222.722773pt;}
.x62_c00085{left:229.442683pt;}
.x71_c00085{left:230.883451pt;}
.x12_c00085{left:233.285088pt;}
.x36_c00085{left:235.445653pt;}
.x47_c00085{left:236.645664pt;}
.x27_c00085{left:237.847248pt;}
.x2d_c00085{left:238.807328pt;}
.xa_c00085{left:240.726491pt;}
.x7b_c00085{left:243.364037pt;}
.x3_c00085{left:244.665333pt;}
.x83_c00085{left:246.005269pt;}
.x13_c00085{left:252.246491pt;}
.x76_c00085{left:257.525061pt;}
.x57_c00085{left:258.485456pt;}
.x2e_c00085{left:259.689003pt;}
.x72_c00085{left:262.085280pt;}
.x1b_c00085{left:263.767061pt;}
.x3c_c00085{left:265.446560pt;}
.x88_c00085{left:267.605008pt;}
.x63_c00085{left:269.765824pt;}
.x4_c00085{left:271.358667pt;}
.x40_c00085{left:274.087803pt;}
.xb_c00085{left:276.248944pt;}
.x37_c00085{left:278.169131pt;}
.x28_c00085{left:282.010933pt;}
.x4f_c00085{left:283.688635pt;}
.x6f_c00085{left:285.127387pt;}
.x1c_c00085{left:286.569008pt;}
.x2f_c00085{left:288.010416pt;}
.x14_c00085{left:289.689216pt;}
.x5d_c00085{left:293.527659pt;}
.x21_c00085{left:295.689627pt;}
.xc_c00085{left:296.650555pt;}
.x5b_c00085{left:300.008197pt;}
.x87_c00085{left:303.366512pt;}
.x5_c00085{left:306.650667pt;}
.x89_c00085{left:308.168181pt;}
.x7d_c00085{left:311.290304pt;}
.x5e_c00085{left:314.649365pt;}
.x58_c00085{left:316.809856pt;}
.x3d_c00085{left:318.010128pt;}
.x22_c00085{left:320.411845pt;}
.x38_c00085{left:322.091467pt;}
.x50_c00085{left:324.971904pt;}
.x15_c00085{left:327.371973pt;}
.x59_c00085{left:329.290315pt;}
.x41_c00085{left:331.692107pt;}
.x55_c00085{left:336.730955pt;}
.x3e_c00085{left:338.411739pt;}
.x6_c00085{left:342.650667pt;}
.x5c_c00085{left:345.610773pt;}
.x64_c00085{left:347.291643pt;}
.xd_c00085{left:348.494027pt;}
.x29_c00085{left:350.655488pt;}
.x6a_c00085{left:351.612000pt;}
.x30_c00085{left:354.734683pt;}
.x39_c00085{left:358.334016pt;}
.x84_c00085{left:360.972496pt;}
.x23_c00085{left:363.615403pt;}
.x7_c00085{left:365.506667pt;}
.x42_c00085{left:367.934656pt;}
.x56_c00085{left:369.613024pt;}
.x68_c00085{left:370.573771pt;}
.x73_c00085{left:371.533040pt;}
.x1d_c00085{left:373.456187pt;}
.x31_c00085{left:375.136293pt;}
.x5a_c00085{left:376.813163pt;}
.x7e_c00085{left:379.696144pt;}
.x16_c00085{left:384.256165pt;}
.x17_c00085{left:390.497061pt;}
.x3a_c00085{left:391.696149pt;}
.xe_c00085{left:399.137323pt;}
.x48_c00085{left:400.337232pt;}
.x2a_c00085{left:402.738992pt;}
.x65_c00085{left:405.856075pt;}
.x24_c00085{left:408.739232pt;}
.x1e_c00085{left:410.418848pt;}
.x6b_c00085{left:411.856688pt;}
.x18_c00085{left:412.818944pt;}
.xf_c00085{left:416.658517pt;}
.x8a_c00085{left:417.615957pt;}
.x49_c00085{left:422.419083pt;}
.x32_c00085{left:424.339381pt;}
.x45_c00085{left:425.538837pt;}
.x77_c00085{left:426.737429pt;}
.x19_c00085{left:432.740475pt;}
.x51_c00085{left:435.859872pt;}
.x10_c00085{left:438.740368pt;}
.x85_c00085{left:440.177237pt;}
.x25_c00085{left:441.141237pt;}
.x2b_c00085{left:442.582069pt;}
.x70_c00085{left:444.018251pt;}
.x43_c00085{left:445.220443pt;}
.x78_c00085{left:450.259488pt;}
.x6c_c00085{left:452.659893pt;}
.x4a_c00085{left:454.100976pt;}
.x1f_c00085{left:463.462480pt;}
.x7f_c00085{left:465.621845pt;}
.x74_c00085{left:468.500341pt;}
.x7c_c00085{left:471.619552pt;}
.x8b_c00085{left:473.059941pt;}
.x33_c00085{left:477.623045pt;}
.x1a_c00085{left:482.183595pt;}
.x11_c00085{left:486.263216pt;}
.x6d_c00085{left:488.182347pt;}
.x52_c00085{left:490.343712pt;}
.x4b_c00085{left:497.544565pt;}
.x26_c00085{left:499.945701pt;}
.x79_c00085{left:502.102960pt;}
.x53_c00085{left:504.264379pt;}
.x75_c00085{left:511.703899pt;}
.x44_c00085{left:521.786133pt;}
.x54_c00085{left:536.906416pt;}
.x4c_c00085{left:537.867707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m72_c00086{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);}
.m71_c00086{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.017895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017895,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{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);}
.m41_c00086{transform:matrix(0.034865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034865,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.077550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077550,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{transform:matrix(0.111565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111565,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.129787,0.001428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.129787,0.001428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.129787,0.001428,-0.002750,0.249985,0,0);}
.mb_c00086{transform:matrix(0.132505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132505,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.134917,0.001484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.134917,0.001484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.134917,0.001484,-0.002750,0.249985,0,0);}
.m10_c00086{transform:matrix(0.149065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149065,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.152026,0.001672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152026,0.001672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152026,0.001672,-0.002750,0.249985,0,0);}
.m1f_c00086{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);}
.m40_c00086{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);}
.m9f_c00086{transform:matrix(0.155411,0.001710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155411,0.001710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155411,0.001710,-0.002750,0.249985,0,0);}
.m4d_c00086{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);}
.m5a_c00086{transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{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);}
.ma9_c00086{transform:matrix(0.160364,0.002245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160364,0.002245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160364,0.002245,-0.003500,0.249976,0,0);}
.m4a_c00086{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);}
.ma1_c00086{transform:matrix(0.160730,0.001768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160730,0.001768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160730,0.001768,-0.002750,0.249985,0,0);}
.m1c_c00086{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);}
.m7c_c00086{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);}
.m8d_c00086{transform:matrix(0.167860,0.001846,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167860,0.001846,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167860,0.001846,-0.002750,0.249985,0,0);}
.maf_c00086{transform:matrix(0.168553,0.002360,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168553,0.002360,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168553,0.002360,-0.003500,0.249976,0,0);}
.m13_c00086{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);}
.m2c_c00086{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{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);}
.m1a_c00086{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);}
.ma_c00086{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);}
.m6_c00086{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);}
.ma0_c00086{transform:matrix(0.175429,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175429,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175429,0.001930,-0.002750,0.249985,0,0);}
.m48_c00086{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);}
.m81_c00086{transform:matrix(0.177086,0.001771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177086,0.001771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177086,0.001771,-0.002500,0.249988,0,0);}
.m94_c00086{transform:matrix(0.177389,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177389,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177389,0.001951,-0.002750,0.249985,0,0);}
.m97_c00086{transform:matrix(0.179229,0.001972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179229,0.001972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179229,0.001972,-0.002750,0.249985,0,0);}
.m16_c00086{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);}
.m4_c00086{transform:matrix(0.180357,0.002164,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180357,0.002164,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180357,0.002164,-0.003000,0.249982,0,0);}
.m25_c00086{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);}
.ma2_c00086{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);}
.m5b_c00086{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);}
.me_c00086{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);}
.mad_c00086{transform:matrix(0.182857,0.002560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182857,0.002560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182857,0.002560,-0.003500,0.249976,0,0);}
.m12_c00086{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);}
.m6d_c00086{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);}
.m89_c00086{transform:matrix(0.185014,0.002035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185014,0.002035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185014,0.002035,-0.002750,0.249985,0,0);}
.m5_c00086{transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);}
.mc_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);}
.m3f_c00086{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);}
.m88_c00086{transform:matrix(0.186684,0.002054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186684,0.002054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186684,0.002054,-0.002750,0.249985,0,0);}
.m36_c00086{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(0.187054,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187054,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187054,0.002058,-0.002750,0.249985,0,0);}
.m7d_c00086{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);}
.m95_c00086{transform:matrix(0.188214,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188214,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188214,0.002070,-0.002750,0.249985,0,0);}
.m1_c00086{transform:matrix(0.188231,0.002259,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188231,0.002259,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188231,0.002259,-0.003000,0.249982,0,0);}
.m21_c00086{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);}
.maa_c00086{transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);}
.m44_c00086{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);}
.ma4_c00086{transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);}
.mf_c00086{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);}
.m24_c00086{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);}
.m2f_c00086{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);}
.m53_c00086{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);}
.m84_c00086{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);}
.m2e_c00086{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);}
.m26_c00086{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);}
.m7b_c00086{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);}
.m20_c00086{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);}
.m3_c00086{transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);}
.m6f_c00086{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);}
.m43_c00086{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{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);}
.m91_c00086{transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);}
.m5c_c00086{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{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);}
.m7a_c00086{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);}
.m47_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);}
.m80_c00086{transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);}
.m45_c00086{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);}
.mb0_c00086{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);}
.m76_c00086{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_c00086{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);}
.m74_c00086{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);}
.m22_c00086{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);}
.m99_c00086{transform:matrix(0.201928,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201928,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201928,0.002221,-0.002750,0.249985,0,0);}
.m4b_c00086{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);}
.m59_c00086{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_c00086{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);}
.m86_c00086{transform:matrix(0.205348,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205348,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205348,0.002259,-0.002750,0.249985,0,0);}
.m1d_c00086{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);}
.m2d_c00086{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);}
.mb7_c00086{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);}
.m3a_c00086{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);}
.m3d_c00086{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);}
.mab_c00086{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);}
.m85_c00086{transform:matrix(0.209515,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209515,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209515,0.002095,-0.002500,0.249988,0,0);}
.md_c00086{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);}
.m3e_c00086{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_c00086{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);}
.m83_c00086{transform:matrix(0.212024,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212024,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212024,0.002120,-0.002500,0.249988,0,0);}
.m8a_c00086{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);}
.m30_c00086{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);}
.mb9_c00086{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);}
.m37_c00086{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);}
.m67_c00086{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);}
.m23_c00086{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);}
.m66_c00086{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);}
.m63_c00086{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);}
.m65_c00086{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);}
.m46_c00086{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);}
.m2_c00086{transform:matrix(0.217749,0.002613,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217749,0.002613,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217749,0.002613,-0.003000,0.249982,0,0);}
.m64_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);}
.m98_c00086{transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);}
.mb2_c00086{transform:matrix(0.219269,0.003070,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219269,0.003070,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219269,0.003070,-0.003500,0.249976,0,0);}
.m38_c00086{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);}
.m68_c00086{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);}
.mac_c00086{transform:matrix(0.223123,0.003124,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223123,0.003124,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223123,0.003124,-0.003500,0.249976,0,0);}
.m1b_c00086{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);}
.mb3_c00086{transform:matrix(0.225043,0.003151,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225043,0.003151,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225043,0.003151,-0.003500,0.249976,0,0);}
.m9d_c00086{transform:matrix(0.226966,0.002497,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226966,0.002497,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226966,0.002497,-0.002750,0.249985,0,0);}
.m2a_c00086{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);}
.m27_c00086{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);}
.mae_c00086{transform:matrix(0.230682,0.003230,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230682,0.003230,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230682,0.003230,-0.003500,0.249976,0,0);}
.m14_c00086{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);}
.m6a_c00086{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.mb1_c00086{transform:matrix(0.233797,0.003273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233797,0.003273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233797,0.003273,-0.003500,0.249976,0,0);}
.m82_c00086{transform:matrix(0.236878,0.002369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236878,0.002369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236878,0.002369,-0.002500,0.249988,0,0);}
.mb6_c00086{transform:matrix(0.237767,0.003329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237767,0.003329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237767,0.003329,-0.003500,0.249976,0,0);}
.m15_c00086{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.238703,0.002864,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238703,0.002864,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238703,0.002864,-0.003000,0.249982,0,0);}
.m28_c00086{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);}
.m8f_c00086{transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);}
.m9b_c00086{transform:matrix(0.240415,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240415,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240415,0.002645,-0.002750,0.249985,0,0);}
.m79_c00086{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);}
.mb8_c00086{transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);}
.m7_c00086{transform:matrix(0.243322,0.002920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243322,0.002920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243322,0.002920,-0.003000,0.249982,0,0);}
.ma8_c00086{transform:matrix(0.243666,0.003411,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243666,0.003411,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243666,0.003411,-0.003500,0.249976,0,0);}
.m7f_c00086{transform:matrix(0.243798,0.002438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243798,0.002438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243798,0.002438,-0.002500,0.249988,0,0);}
.m17_c00086{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{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);}
.m0_c00086{transform:matrix(0.252397,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252397,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252397,0.003029,-0.003000,0.249982,0,0);}
.m87_c00086{transform:matrix(0.253415,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253415,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253415,0.002788,-0.002750,0.249985,0,0);}
.m92_c00086{transform:matrix(0.253725,0.002791,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253725,0.002791,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253725,0.002791,-0.002750,0.249985,0,0);}
.m3b_c00086{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);}
.m51_c00086{transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{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);}
.m8c_c00086{transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);}
.m90_c00086{transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);}
.m18_c00086{transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);}
.m32_c00086{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);}
.mba_c00086{transform:matrix(0.282047,0.003949,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282047,0.003949,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282047,0.003949,-0.003500,0.249976,0,0);}
.mb5_c00086{transform:matrix(0.285252,0.003994,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285252,0.003994,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285252,0.003994,-0.003500,0.249976,0,0);}
.m4e_c00086{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.291012,0.003201,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291012,0.003201,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291012,0.003201,-0.002750,0.249985,0,0);}
.m50_c00086{transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.303245,0.003032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303245,0.003032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303245,0.003032,-0.002500,0.249988,0,0);}
.m73_c00086{transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311545,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313655,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.327275,0.003600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.327275,0.003600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.327275,0.003600,-0.002750,0.249985,0,0);}
.m5d_c00086{transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360830,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.376470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376470,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.398965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398965,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.402776,0.005236,-0.003250,0.249979,0,0);-ms-transform:matrix(0.402776,0.005236,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.402776,0.005236,-0.003250,0.249979,0,0);}
.m9a_c00086{transform:matrix(0.416635,0.004583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.416635,0.004583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.416635,0.004583,-0.002750,0.249985,0,0);}
.ma7_c00086{transform:matrix(0.418314,0.005856,-0.003500,0.249976,0,0);-ms-transform:matrix(0.418314,0.005856,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.418314,0.005856,-0.003500,0.249976,0,0);}
.mb4_c00086{transform:matrix(0.419219,0.005869,-0.003500,0.249976,0,0);-ms-transform:matrix(0.419219,0.005869,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.419219,0.005869,-0.003500,0.249976,0,0);}
.m61_c00086{transform:matrix(0.429264,0.005580,-0.003250,0.249979,0,0);-ms-transform:matrix(0.429264,0.005580,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.429264,0.005580,-0.003250,0.249979,0,0);}
.m8e_c00086{transform:matrix(0.432094,0.004753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.432094,0.004753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.432094,0.004753,-0.002750,0.249985,0,0);}
.m8b_c00086{transform:matrix(0.435124,0.004786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.435124,0.004786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.435124,0.004786,-0.002750,0.249985,0,0);}
.m6e_c00086{transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.439660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439660,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.469280,0.006101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.469280,0.006101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.469280,0.006101,-0.003250,0.249979,0,0);}
.m60_c00086{transform:matrix(0.475815,0.006186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475815,0.006186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475815,0.006186,-0.003250,0.249979,0,0);}
.m6c_c00086{transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.536240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536240,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.644815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644815,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.737395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737395,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.821915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821915,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;}
.fsc_c00086{font-size:67.203360px;}
.fs3_c00086{font-size:68.250000px;}
.fs6_c00086{font-size:69.300000px;}
.fsf_c00086{font-size:69.306791px;}
.fs2_c00086{font-size:70.350000px;}
.fs5_c00086{font-size:71.400000px;}
.fs8_c00086{font-size:72.450000px;}
.fsd_c00086{font-size:72.454383px;}
.fs0_c00086{font-size:72.455216px;}
.fs10_c00086{font-size:72.457100px;}
.fs7_c00086{font-size:73.500000px;}
.fsb_c00086{font-size:74.550000px;}
.fse_c00086{font-size:74.554510px;}
.fsa_c00086{font-size:76.656477px;}
.fs9_c00086{font-size:78.756654px;}
.fs4_c00086{font-size:96.600000px;}
.fs1_c00086{font-size:131.250000px;}
.y0_c00086{bottom:0.000000px;}
.y65_c00086{bottom:140.136408px;}
.y64_c00086{bottom:143.073657px;}
.y63_c00086{bottom:143.330151px;}
.y62_c00086{bottom:143.654412px;}
.y61_c00086{bottom:144.071073px;}
.y60_c00086{bottom:144.535971px;}
.y5f_c00086{bottom:145.375320px;}
.y5e_c00086{bottom:145.939275px;}
.y5d_c00086{bottom:146.464275px;}
.y5c_c00086{bottom:146.830956px;}
.y5b_c00086{bottom:147.420153px;}
.y5a_c00086{bottom:164.040747px;}
.y59_c00086{bottom:166.623978px;}
.y58_c00086{bottom:167.278023px;}
.y57_c00086{bottom:167.761863px;}
.y56_c00086{bottom:168.136104px;}
.y55_c00086{bottom:169.206117px;}
.y54_c00086{bottom:169.584075px;}
.y53_c00086{bottom:170.295177px;}
.y52_c00086{bottom:170.643000px;}
.y9_c00086{bottom:188.348958px;}
.y8_c00086{bottom:188.670240px;}
.y7_c00086{bottom:189.357156px;}
.y6_c00086{bottom:190.018224px;}
.y5_c00086{bottom:190.441926px;}
.y4_c00086{bottom:190.960362px;}
.y3_c00086{bottom:191.342736px;}
.y2_c00086{bottom:191.958336px;}
.y1_c00086{bottom:192.289500px;}
.y51_c00086{bottom:210.501238px;}
.y50_c00086{bottom:210.966687px;}
.y4f_c00086{bottom:211.301043px;}
.y4e_c00086{bottom:211.735323px;}
.y4d_c00086{bottom:212.204038px;}
.y4c_c00086{bottom:212.816403px;}
.y4b_c00086{bottom:213.389679px;}
.y4a_c00086{bottom:213.680755px;}
.y49_c00086{bottom:213.906360px;}
.y48_c00086{bottom:214.548078px;}
.y47_c00086{bottom:214.651500px;}
.y45_c00086{bottom:235.176672px;}
.y46_c00086{bottom:235.177104px;}
.y44_c00086{bottom:256.595549px;}
.y43_c00086{bottom:257.254394px;}
.y42_c00086{bottom:257.623267px;}
.y41_c00086{bottom:258.169748px;}
.y40_c00086{bottom:258.330045px;}
.y3f_c00086{bottom:259.004285px;}
.y3e_c00086{bottom:259.185669px;}
.y3d_c00086{bottom:259.602822px;}
.y3c_c00086{bottom:260.281500px;}
.y39_c00086{bottom:280.525502px;}
.y3b_c00086{bottom:280.525898px;}
.y3a_c00086{bottom:280.525941px;}
.y38_c00086{bottom:303.148936px;}
.y37_c00086{bottom:303.561734px;}
.y36_c00086{bottom:303.811230px;}
.y35_c00086{bottom:304.378533px;}
.y34_c00086{bottom:304.743200px;}
.y33_c00086{bottom:305.189260px;}
.y32_c00086{bottom:305.457105px;}
.y31_c00086{bottom:305.929500px;}
.y30_c00086{bottom:325.896705px;}
.y2f_c00086{bottom:326.250600px;}
.y2e_c00086{bottom:326.415285px;}
.y2d_c00086{bottom:327.185280px;}
.y2c_c00086{bottom:327.481755px;}
.y2b_c00086{bottom:327.800340px;}
.y2a_c00086{bottom:328.045650px;}
.y29_c00086{bottom:328.321500px;}
.y28_c00086{bottom:348.786000px;}
.y27_c00086{bottom:370.321500px;}
.y26_c00086{bottom:393.894000px;}
.y25_c00086{bottom:417.411000px;}
.y24_c00086{bottom:440.073204px;}
.y23_c00086{bottom:477.000588px;}
.y22_c00086{bottom:478.972857px;}
.y21_c00086{bottom:480.604500px;}
.y20_c00086{bottom:615.018000px;}
.y1f_c00086{bottom:615.609000px;}
.y1e_c00086{bottom:616.251000px;}
.y1d_c00086{bottom:616.639500px;}
.y1c_c00086{bottom:616.797000px;}
.y1b_c00086{bottom:617.110500px;}
.y1a_c00086{bottom:617.314500px;}
.y19_c00086{bottom:617.430000px;}
.y18_c00086{bottom:617.440500px;}
.y17_c00086{bottom:617.842500px;}
.y16_c00086{bottom:618.069000px;}
.y15_c00086{bottom:618.742500px;}
.y14_c00086{bottom:619.381500px;}
.y13_c00086{bottom:640.117500px;}
.y12_c00086{bottom:650.835000px;}
.y11_c00086{bottom:664.050000px;}
.y10_c00086{bottom:686.215500px;}
.yf_c00086{bottom:708.720000px;}
.ye_c00086{bottom:732.486000px;}
.yd_c00086{bottom:754.428000px;}
.yc_c00086{bottom:777.880500px;}
.yb_c00086{bottom:800.589000px;}
.ya_c00086{bottom:844.122000px;}
.he_c00086{height:67.203360px;}
.h5_c00086{height:68.250000px;}
.h8_c00086{height:69.300000px;}
.h11_c00086{height:69.306791px;}
.h4_c00086{height:70.350000px;}
.h7_c00086{height:71.400000px;}
.ha_c00086{height:72.450000px;}
.hf_c00086{height:72.454383px;}
.h2_c00086{height:72.455216px;}
.h12_c00086{height:72.457100px;}
.h9_c00086{height:73.500000px;}
.hd_c00086{height:74.550000px;}
.h10_c00086{height:74.554510px;}
.hc_c00086{height:76.656477px;}
.hb_c00086{height:78.756654px;}
.h6_c00086{height:96.600000px;}
.h3_c00086{height:131.250000px;}
.h1_c00086{height:1005.000000px;}
.h0_c00086{height:1005.150000px;}
.w0_c00086{width:705.450000px;}
.w1_c00086{width:705.750000px;}
.x0_c00086{left:0.000000px;}
.x77_c00086{left:84.607179px;}
.x59_c00086{left:112.320000px;}
.x69_c00086{left:117.349500px;}
.x70_c00086{left:119.128500px;}
.x1_c00086{left:124.588500px;}
.x44_c00086{left:126.513000px;}
.x61_c00086{left:128.056500px;}
.x24_c00086{left:130.680000px;}
.x30_c00086{left:132.570000px;}
.xd_c00086{left:133.920000px;}
.x71_c00086{left:143.973000px;}
.x2_c00086{left:152.185500px;}
.x25_c00086{left:154.710000px;}
.x4d_c00086{left:162.540000px;}
.xe_c00086{left:164.700000px;}
.x38_c00086{left:167.130000px;}
.x14_c00086{left:170.640000px;}
.xa_c00086{left:176.310000px;}
.x1a_c00086{left:177.930000px;}
.x2d_c00086{left:182.250000px;}
.x6a_c00086{left:185.089500px;}
.x26_c00086{left:186.840000px;}
.x39_c00086{left:190.080000px;}
.x4e_c00086{left:191.160000px;}
.x15_c00086{left:195.480000px;}
.xf_c00086{left:197.910000px;}
.x31_c00086{left:200.880000px;}
.x1b_c00086{left:202.230000px;}
.x3_c00086{left:203.485500px;}
.x6b_c00086{left:205.599000px;}
.x5e_c00086{left:209.130000px;}
.x5a_c00086{left:210.600000px;}
.x1c_c00086{left:220.860000px;}
.x64_c00086{left:227.188500px;}
.x4f_c00086{left:228.420000px;}
.x78_c00086{left:230.666679px;}
.x6c_c00086{left:232.060500px;}
.x4_c00086{left:235.350000px;}
.x5f_c00086{left:238.777500px;}
.x32_c00086{left:243.810000px;}
.x27_c00086{left:245.700000px;}
.x3a_c00086{left:251.640000px;}
.x1d_c00086{left:254.610000px;}
.x52_c00086{left:261.360000px;}
.x62_c00086{left:269.053500px;}
.x4c_c00086{left:271.090563px;}
.x2e_c00086{left:272.970000px;}
.x5_c00086{left:278.553000px;}
.x41_c00086{left:279.990000px;}
.x6d_c00086{left:284.176500px;}
.x16_c00086{left:285.390000px;}
.x53_c00086{left:289.170000px;}
.x79_c00086{left:290.620179px;}
.x28_c00086{left:295.380000px;}
.x10_c00086{left:297.000000px;}
.x72_c00086{left:298.192500px;}
.x50_c00086{left:300.780000px;}
.x17_c00086{left:303.480000px;}
.x65_c00086{left:304.972500px;}
.x54_c00086{left:309.150000px;}
.x6_c00086{left:313.861500px;}
.x1e_c00086{left:316.440000px;}
.x5b_c00086{left:317.790000px;}
.x66_c00086{left:319.545000px;}
.x63_c00086{left:320.626500px;}
.x7a_c00086{left:323.827179px;}
.x73_c00086{left:324.924000px;}
.x11_c00086{left:329.130000px;}
.x55_c00086{left:332.910000px;}
.x29_c00086{left:335.610000px;}
.x3b_c00086{left:337.500000px;}
.x42_c00086{left:340.470000px;}
.x18_c00086{left:342.630000px;}
.x33_c00086{left:346.140000px;}
.x1f_c00086{left:353.160000px;}
.x45_c00086{left:356.016000px;}
.x74_c00086{left:359.484000px;}
.x12_c00086{left:361.800000px;}
.x51_c00086{left:363.420000px;}
.x60_c00086{left:367.635000px;}
.x7_c00086{left:368.950500px;}
.x57_c00086{left:370.980000px;}
.x7b_c00086{left:376.750179px;}
.x46_c00086{left:378.696000px;}
.x5c_c00086{left:380.160000px;}
.x6e_c00086{left:382.456500px;}
.x3c_c00086{left:388.260000px;}
.xb_c00086{left:390.960000px;}
.x13_c00086{left:393.120000px;}
.x7c_c00086{left:395.071179px;}
.x67_c00086{left:402.759000px;}
.x4b_c00086{left:404.025000px;}
.x75_c00086{left:406.201500px;}
.x2a_c00086{left:409.860000px;}
.x47_c00086{left:413.520000px;}
.x58_c00086{left:416.070000px;}
.x3d_c00086{left:419.580000px;}
.x2b_c00086{left:420.930000px;}
.x6f_c00086{left:421.936500px;}
.x8_c00086{left:426.193500px;}
.x20_c00086{left:430.920000px;}
.x34_c00086{left:443.880000px;}
.x3e_c00086{left:449.820000px;}
.x9_c00086{left:452.967000px;}
.x2c_c00086{left:460.890000px;}
.x68_c00086{left:462.654000px;}
.x21_c00086{left:465.210000px;}
.xc_c00086{left:466.290000px;}
.x48_c00086{left:474.265500px;}
.x5d_c00086{left:480.870000px;}
.x35_c00086{left:487.890000px;}
.x19_c00086{left:494.100000px;}
.x56_c00086{left:497.340000px;}
.x22_c00086{left:516.780000px;}
.x36_c00086{left:520.020000px;}
.x3f_c00086{left:524.880000px;}
.x49_c00086{left:545.530500px;}
.x37_c00086{left:558.360000px;}
.x76_c00086{left:590.718000px;}
.x2f_c00086{left:596.970000px;}
.x23_c00086{left:598.050000px;}
.x40_c00086{left:601.020000px;}
.x43_c00086{left:603.990000px;}
.x4a_c00086{left:611.169000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.fsc_c00086{font-size:59.736320pt;}
.fs3_c00086{font-size:60.666667pt;}
.fs6_c00086{font-size:61.600000pt;}
.fsf_c00086{font-size:61.606037pt;}
.fs2_c00086{font-size:62.533333pt;}
.fs5_c00086{font-size:63.466667pt;}
.fs8_c00086{font-size:64.400000pt;}
.fsd_c00086{font-size:64.403896pt;}
.fs0_c00086{font-size:64.404637pt;}
.fs10_c00086{font-size:64.406311pt;}
.fs7_c00086{font-size:65.333333pt;}
.fsb_c00086{font-size:66.266667pt;}
.fse_c00086{font-size:66.270676pt;}
.fsa_c00086{font-size:68.139090pt;}
.fs9_c00086{font-size:70.005915pt;}
.fs4_c00086{font-size:85.866667pt;}
.fs1_c00086{font-size:116.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y65_c00086{bottom:124.565696pt;}
.y64_c00086{bottom:127.176584pt;}
.y63_c00086{bottom:127.404579pt;}
.y62_c00086{bottom:127.692811pt;}
.y61_c00086{bottom:128.063176pt;}
.y60_c00086{bottom:128.476419pt;}
.y5f_c00086{bottom:129.222507pt;}
.y5e_c00086{bottom:129.723800pt;}
.y5d_c00086{bottom:130.190467pt;}
.y5c_c00086{bottom:130.516405pt;}
.y5b_c00086{bottom:131.040136pt;}
.y5a_c00086{bottom:145.813997pt;}
.y59_c00086{bottom:148.110203pt;}
.y58_c00086{bottom:148.691576pt;}
.y57_c00086{bottom:149.121656pt;}
.y56_c00086{bottom:149.454315pt;}
.y55_c00086{bottom:150.405437pt;}
.y54_c00086{bottom:150.741400pt;}
.y53_c00086{bottom:151.373491pt;}
.y52_c00086{bottom:151.682667pt;}
.y9_c00086{bottom:167.421296pt;}
.y8_c00086{bottom:167.706880pt;}
.y7_c00086{bottom:168.317472pt;}
.y6_c00086{bottom:168.905088pt;}
.y5_c00086{bottom:169.281712pt;}
.y4_c00086{bottom:169.742544pt;}
.y3_c00086{bottom:170.082432pt;}
.y2_c00086{bottom:170.629632pt;}
.y1_c00086{bottom:170.924000pt;}
.y51_c00086{bottom:187.112212pt;}
.y50_c00086{bottom:187.525944pt;}
.y4f_c00086{bottom:187.823149pt;}
.y4e_c00086{bottom:188.209176pt;}
.y4d_c00086{bottom:188.625812pt;}
.y4c_c00086{bottom:189.170136pt;}
.y4b_c00086{bottom:189.679715pt;}
.y4a_c00086{bottom:189.938449pt;}
.y49_c00086{bottom:190.138987pt;}
.y48_c00086{bottom:190.709403pt;}
.y47_c00086{bottom:190.801333pt;}
.y45_c00086{bottom:209.045931pt;}
.y46_c00086{bottom:209.046315pt;}
.y44_c00086{bottom:228.084932pt;}
.y43_c00086{bottom:228.670572pt;}
.y42_c00086{bottom:228.998460pt;}
.y41_c00086{bottom:229.484220pt;}
.y40_c00086{bottom:229.626707pt;}
.y3f_c00086{bottom:230.226031pt;}
.y3e_c00086{bottom:230.387261pt;}
.y3d_c00086{bottom:230.758064pt;}
.y3c_c00086{bottom:231.361333pt;}
.y39_c00086{bottom:249.356001pt;}
.y3b_c00086{bottom:249.356353pt;}
.y3a_c00086{bottom:249.356392pt;}
.y38_c00086{bottom:269.465721pt;}
.y37_c00086{bottom:269.832652pt;}
.y36_c00086{bottom:270.054427pt;}
.y35_c00086{bottom:270.558696pt;}
.y34_c00086{bottom:270.882844pt;}
.y33_c00086{bottom:271.279343pt;}
.y32_c00086{bottom:271.517427pt;}
.y31_c00086{bottom:271.937333pt;}
.y30_c00086{bottom:289.685960pt;}
.y2f_c00086{bottom:290.000533pt;}
.y2e_c00086{bottom:290.146920pt;}
.y2d_c00086{bottom:290.831360pt;}
.y2c_c00086{bottom:291.094893pt;}
.y2b_c00086{bottom:291.378080pt;}
.y2a_c00086{bottom:291.596133pt;}
.y29_c00086{bottom:291.841333pt;}
.y28_c00086{bottom:310.032000pt;}
.y27_c00086{bottom:329.174667pt;}
.y26_c00086{bottom:350.128000pt;}
.y25_c00086{bottom:371.032000pt;}
.y24_c00086{bottom:391.176181pt;}
.y23_c00086{bottom:424.000523pt;}
.y22_c00086{bottom:425.753651pt;}
.y21_c00086{bottom:427.204000pt;}
.y20_c00086{bottom:546.682667pt;}
.y1f_c00086{bottom:547.208000pt;}
.y1e_c00086{bottom:547.778667pt;}
.y1d_c00086{bottom:548.124000pt;}
.y1c_c00086{bottom:548.264000pt;}
.y1b_c00086{bottom:548.542667pt;}
.y1a_c00086{bottom:548.724000pt;}
.y19_c00086{bottom:548.826667pt;}
.y18_c00086{bottom:548.836000pt;}
.y17_c00086{bottom:549.193333pt;}
.y16_c00086{bottom:549.394667pt;}
.y15_c00086{bottom:549.993333pt;}
.y14_c00086{bottom:550.561333pt;}
.y13_c00086{bottom:568.993333pt;}
.y12_c00086{bottom:578.520000pt;}
.y11_c00086{bottom:590.266667pt;}
.y10_c00086{bottom:609.969333pt;}
.yf_c00086{bottom:629.973333pt;}
.ye_c00086{bottom:651.098667pt;}
.yd_c00086{bottom:670.602667pt;}
.yc_c00086{bottom:691.449333pt;}
.yb_c00086{bottom:711.634667pt;}
.ya_c00086{bottom:750.330667pt;}
.he_c00086{height:59.736320pt;}
.h5_c00086{height:60.666667pt;}
.h8_c00086{height:61.600000pt;}
.h11_c00086{height:61.606037pt;}
.h4_c00086{height:62.533333pt;}
.h7_c00086{height:63.466667pt;}
.ha_c00086{height:64.400000pt;}
.hf_c00086{height:64.403896pt;}
.h2_c00086{height:64.404637pt;}
.h12_c00086{height:64.406311pt;}
.h9_c00086{height:65.333333pt;}
.hd_c00086{height:66.266667pt;}
.h10_c00086{height:66.270676pt;}
.hc_c00086{height:68.139090pt;}
.hb_c00086{height:70.005915pt;}
.h6_c00086{height:85.866667pt;}
.h3_c00086{height:116.666667pt;}
.h1_c00086{height:893.333333pt;}
.h0_c00086{height:893.466667pt;}
.w0_c00086{width:627.066667pt;}
.w1_c00086{width:627.333333pt;}
.x0_c00086{left:0.000000pt;}
.x77_c00086{left:75.206381pt;}
.x59_c00086{left:99.840000pt;}
.x69_c00086{left:104.310667pt;}
.x70_c00086{left:105.892000pt;}
.x1_c00086{left:110.745333pt;}
.x44_c00086{left:112.456000pt;}
.x61_c00086{left:113.828000pt;}
.x24_c00086{left:116.160000pt;}
.x30_c00086{left:117.840000pt;}
.xd_c00086{left:119.040000pt;}
.x71_c00086{left:127.976000pt;}
.x2_c00086{left:135.276000pt;}
.x25_c00086{left:137.520000pt;}
.x4d_c00086{left:144.480000pt;}
.xe_c00086{left:146.400000pt;}
.x38_c00086{left:148.560000pt;}
.x14_c00086{left:151.680000pt;}
.xa_c00086{left:156.720000pt;}
.x1a_c00086{left:158.160000pt;}
.x2d_c00086{left:162.000000pt;}
.x6a_c00086{left:164.524000pt;}
.x26_c00086{left:166.080000pt;}
.x39_c00086{left:168.960000pt;}
.x4e_c00086{left:169.920000pt;}
.x15_c00086{left:173.760000pt;}
.xf_c00086{left:175.920000pt;}
.x31_c00086{left:178.560000pt;}
.x1b_c00086{left:179.760000pt;}
.x3_c00086{left:180.876000pt;}
.x6b_c00086{left:182.754667pt;}
.x5e_c00086{left:185.893333pt;}
.x5a_c00086{left:187.200000pt;}
.x1c_c00086{left:196.320000pt;}
.x64_c00086{left:201.945333pt;}
.x4f_c00086{left:203.040000pt;}
.x78_c00086{left:205.037048pt;}
.x6c_c00086{left:206.276000pt;}
.x4_c00086{left:209.200000pt;}
.x5f_c00086{left:212.246667pt;}
.x32_c00086{left:216.720000pt;}
.x27_c00086{left:218.400000pt;}
.x3a_c00086{left:223.680000pt;}
.x1d_c00086{left:226.320000pt;}
.x52_c00086{left:232.320000pt;}
.x62_c00086{left:239.158667pt;}
.x4c_c00086{left:240.969389pt;}
.x2e_c00086{left:242.640000pt;}
.x5_c00086{left:247.602667pt;}
.x41_c00086{left:248.880000pt;}
.x6d_c00086{left:252.601333pt;}
.x16_c00086{left:253.680000pt;}
.x53_c00086{left:257.040000pt;}
.x79_c00086{left:258.329048pt;}
.x28_c00086{left:262.560000pt;}
.x10_c00086{left:264.000000pt;}
.x72_c00086{left:265.060000pt;}
.x50_c00086{left:267.360000pt;}
.x17_c00086{left:269.760000pt;}
.x65_c00086{left:271.086667pt;}
.x54_c00086{left:274.800000pt;}
.x6_c00086{left:278.988000pt;}
.x1e_c00086{left:281.280000pt;}
.x5b_c00086{left:282.480000pt;}
.x66_c00086{left:284.040000pt;}
.x63_c00086{left:285.001333pt;}
.x7a_c00086{left:287.846381pt;}
.x73_c00086{left:288.821333pt;}
.x11_c00086{left:292.560000pt;}
.x55_c00086{left:295.920000pt;}
.x29_c00086{left:298.320000pt;}
.x3b_c00086{left:300.000000pt;}
.x42_c00086{left:302.640000pt;}
.x18_c00086{left:304.560000pt;}
.x33_c00086{left:307.680000pt;}
.x1f_c00086{left:313.920000pt;}
.x45_c00086{left:316.458667pt;}
.x74_c00086{left:319.541333pt;}
.x12_c00086{left:321.600000pt;}
.x51_c00086{left:323.040000pt;}
.x60_c00086{left:326.786667pt;}
.x7_c00086{left:327.956000pt;}
.x57_c00086{left:329.760000pt;}
.x7b_c00086{left:334.889048pt;}
.x46_c00086{left:336.618667pt;}
.x5c_c00086{left:337.920000pt;}
.x6e_c00086{left:339.961333pt;}
.x3c_c00086{left:345.120000pt;}
.xb_c00086{left:347.520000pt;}
.x13_c00086{left:349.440000pt;}
.x7c_c00086{left:351.174381pt;}
.x67_c00086{left:358.008000pt;}
.x4b_c00086{left:359.133333pt;}
.x75_c00086{left:361.068000pt;}
.x2a_c00086{left:364.320000pt;}
.x47_c00086{left:367.573333pt;}
.x58_c00086{left:369.840000pt;}
.x3d_c00086{left:372.960000pt;}
.x2b_c00086{left:374.160000pt;}
.x6f_c00086{left:375.054667pt;}
.x8_c00086{left:378.838667pt;}
.x20_c00086{left:383.040000pt;}
.x34_c00086{left:394.560000pt;}
.x3e_c00086{left:399.840000pt;}
.x9_c00086{left:402.637333pt;}
.x2c_c00086{left:409.680000pt;}
.x68_c00086{left:411.248000pt;}
.x21_c00086{left:413.520000pt;}
.xc_c00086{left:414.480000pt;}
.x48_c00086{left:421.569333pt;}
.x5d_c00086{left:427.440000pt;}
.x35_c00086{left:433.680000pt;}
.x19_c00086{left:439.200000pt;}
.x56_c00086{left:442.080000pt;}
.x22_c00086{left:459.360000pt;}
.x36_c00086{left:462.240000pt;}
.x3f_c00086{left:466.560000pt;}
.x49_c00086{left:484.916000pt;}
.x37_c00086{left:496.320000pt;}
.x76_c00086{left:525.082667pt;}
.x2f_c00086{left:530.640000pt;}
.x23_c00086{left:531.600000pt;}
.x40_c00086{left:534.240000pt;}
.x43_c00086{left:536.880000pt;}
.x4a_c00086{left:543.261333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8e_c00087{transform:matrix(0.016430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016430,0.000000,0.000000,0.250000,0,0);}
.ma9_c00087{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.m84_c00087{transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);}
.m4c_c00087{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);}
.m41_c00087{transform:matrix(0.030045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030045,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.036132,-0.000759,0.005249,0.249945,0,0);-ms-transform:matrix(0.036132,-0.000759,0.005249,0.249945,0,0);-webkit-transform:matrix(0.036132,-0.000759,0.005249,0.249945,0,0);}
.mf2_c00087{transform:matrix(0.041733,0.000417,-0.002500,0.249988,0,0);-ms-transform:matrix(0.041733,0.000417,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.041733,0.000417,-0.002500,0.249988,0,0);}
.mfc_c00087{transform:matrix(0.081326,0.000813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.081326,0.000813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.081326,0.000813,-0.002500,0.249988,0,0);}
.mb1_c00087{transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);}
.m5a_c00087{transform:matrix(0.116745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116745,0.000000,0.000000,0.250000,0,0);}
.m90_c00087{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{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);}
.m64_c00087{transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);}
.m81_c00087{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);}
.m2e_c00087{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);}
.ma3_c00087{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m93_c00087{transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);}
.m74_c00087{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m91_c00087{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);}
.m30_c00087{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);}
.m2c_c00087{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);}
.m33_c00087{transform:matrix(0.156690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156690,0.000000,0.000000,0.250000,0,0);}
.m38_c00087{transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{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);}
.m72_c00087{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);}
.ma5_c00087{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.m96_c00087{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);}
.m8b_c00087{transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);}
.mda_c00087{transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);}
.m89_c00087{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);}
.mcd_c00087{transform:matrix(0.163022,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163022,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163022,0.001630,-0.002500,0.249988,0,0);}
.m7f_c00087{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_c00087{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);}
.m2f_c00087{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);}
.m15_c00087{transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);}
.mbc_c00087{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);}
.m87_c00087{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_c00087{transform:matrix(0.168002,0.001680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168002,0.001680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168002,0.001680,-0.002500,0.249988,0,0);}
.m4f_c00087{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);}
.me5_c00087{transform:matrix(0.168437,0.001684,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168437,0.001684,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168437,0.001684,-0.002500,0.249988,0,0);}
.m14_c00087{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);}
.m1c_c00087{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);}
.m51_c00087{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);}
.m6c_c00087{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);}
.mf7_c00087{transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);}
.m3c_c00087{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);}
.m53_c00087{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);}
.m70_c00087{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);}
.m3e_c00087{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);}
.m94_c00087{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);}
.mb5_c00087{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);}
.m17_c00087{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);}
.m2a_c00087{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);}
.m52_c00087{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);}
.me7_c00087{transform:matrix(0.175406,0.001754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175406,0.001754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175406,0.001754,-0.002500,0.249988,0,0);}
.m71_c00087{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);}
.m92_c00087{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);}
.m63_c00087{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);}
.m1f_c00087{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);}
.m27_c00087{transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);}
.m7b_c00087{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);}
.m24_c00087{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);}
.mb9_c00087{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);}
.m6b_c00087{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);}
.m78_c00087{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);}
.mb2_c00087{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);}
.m9b_c00087{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);}
.m6e_c00087{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);}
.mc8_c00087{transform:matrix(0.179036,0.001790,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179036,0.001790,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179036,0.001790,-0.002500,0.249988,0,0);}
.m45_c00087{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);}
.m86_c00087{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);}
.mc0_c00087{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);}
.mb8_c00087{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);}
.md4_c00087{transform:matrix(0.180231,0.001802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180231,0.001802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180231,0.001802,-0.002500,0.249988,0,0);}
.md7_c00087{transform:matrix(0.180281,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180281,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180281,0.001803,-0.002500,0.249988,0,0);}
.m99_c00087{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);}
.mf_c00087{transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);}
.m3f_c00087{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);}
.m43_c00087{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);}
.mc7_c00087{transform:matrix(0.182221,0.001822,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182221,0.001822,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182221,0.001822,-0.002500,0.249988,0,0);}
.me2_c00087{transform:matrix(0.182511,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182511,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182511,0.001825,-0.002500,0.249988,0,0);}
.m31_c00087{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);}
.m56_c00087{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);}
.m95_c00087{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);}
.mb4_c00087{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);}
.m2d_c00087{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);}
.m61_c00087{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_c00087{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);}
.m4a_c00087{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);}
.mb6_c00087{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);}
.mc9_c00087{transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);}
.m13_c00087{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);}
.mf1_c00087{transform:matrix(0.185111,0.001851,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185111,0.001851,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185111,0.001851,-0.002500,0.249988,0,0);}
.mc5_c00087{transform:matrix(0.185286,0.001853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185286,0.001853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185286,0.001853,-0.002500,0.249988,0,0);}
.m7c_c00087{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);}
.md2_c00087{transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185741,0.001857,-0.002500,0.249988,0,0);}
.mb7_c00087{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);}
.mdc_c00087{transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186271,0.001863,-0.002500,0.249988,0,0);}
.maf_c00087{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);}
.ma2_c00087{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);}
.m9e_c00087{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);}
.m55_c00087{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);}
.m19_c00087{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);}
.m12_c00087{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.m62_c00087{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);}
.me8_c00087{transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);}
.meb_c00087{transform:matrix(0.188506,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188506,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188506,0.001885,-0.002500,0.249988,0,0);}
.m5e_c00087{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);}
.m26_c00087{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);}
.m8a_c00087{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_c00087{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);}
.m76_c00087{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);}
.mbf_c00087{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);}
.mbe_c00087{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);}
.mf4_c00087{transform:matrix(0.190400,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190400,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190400,0.001904,-0.002500,0.249988,0,0);}
.m85_c00087{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);}
.m35_c00087{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);}
.md1_c00087{transform:matrix(0.191985,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191985,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191985,0.001920,-0.002500,0.249988,0,0);}
.mf9_c00087{transform:matrix(0.192020,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192020,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192020,0.001920,-0.002500,0.249988,0,0);}
.md0_c00087{transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192415,0.001924,-0.002500,0.249988,0,0);}
.m57_c00087{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);}
.mc4_c00087{transform:matrix(0.192730,0.001927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192730,0.001927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192730,0.001927,-0.002500,0.249988,0,0);}
.mc1_c00087{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);}
.m75_c00087{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);}
.m48_c00087{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);}
.m28_c00087{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);}
.mea_c00087{transform:matrix(0.194550,0.001946,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194550,0.001946,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194550,0.001946,-0.002500,0.249988,0,0);}
.m69_c00087{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);}
.ma6_c00087{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);}
.m18_c00087{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);}
.m44_c00087{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);}
.m59_c00087{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);}
.m50_c00087{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);}
.mf3_c00087{transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);}
.m79_c00087{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);}
.mfb_c00087{transform:matrix(0.196935,0.001969,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196935,0.001969,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196935,0.001969,-0.002500,0.249988,0,0);}
.mba_c00087{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);}
.mac_c00087{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);}
.mae_c00087{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);}
.m73_c00087{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);}
.m9a_c00087{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);}
.m6a_c00087{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m46_c00087{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);}
.m11_c00087{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);}
.mbb_c00087{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);}
.m36_c00087{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);}
.m58_c00087{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);}
.m34_c00087{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);}
.mbd_c00087{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);}
.m1d_c00087{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);}
.m54_c00087{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);}
.m1e_c00087{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);}
.md6_c00087{transform:matrix(0.205075,0.002051,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205075,0.002051,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205075,0.002051,-0.002500,0.249988,0,0);}
.m29_c00087{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);}
.mfd_c00087{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);}
.me6_c00087{transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206345,0.002063,-0.002500,0.249988,0,0);}
.mca_c00087{transform:matrix(0.206450,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206450,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206450,0.002064,-0.002500,0.249988,0,0);}
.m7a_c00087{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);}
.m1a_c00087{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);}
.m37_c00087{transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);}
.maa_c00087{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);}
.m9d_c00087{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);}
.m47_c00087{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);}
.md3_c00087{transform:matrix(0.210619,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210619,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210619,0.002106,-0.002500,0.249988,0,0);}
.mcb_c00087{transform:matrix(0.210629,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210629,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210629,0.002106,-0.002500,0.249988,0,0);}
.ma1_c00087{transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);}
.m6f_c00087{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);}
.m9f_c00087{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);}
.mb3_c00087{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);}
.m4b_c00087{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);}
.m98_c00087{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);}
.m3a_c00087{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);}
.m9c_c00087{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);}
.mec_c00087{transform:matrix(0.214379,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214379,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214379,0.002144,-0.002500,0.249988,0,0);}
.m6d_c00087{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);}
.ma4_c00087{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);}
.me9_c00087{transform:matrix(0.214824,0.002148,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214824,0.002148,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214824,0.002148,-0.002500,0.249988,0,0);}
.me_c00087{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);}
.m3d_c00087{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);}
.m77_c00087{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);}
.m8c_c00087{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);}
.m21_c00087{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);}
.mef_c00087{transform:matrix(0.219509,0.002195,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219509,0.002195,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219509,0.002195,-0.002500,0.249988,0,0);}
.me3_c00087{transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);}
.mee_c00087{transform:matrix(0.221099,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221099,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221099,0.002211,-0.002500,0.249988,0,0);}
.mad_c00087{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);}
.m7d_c00087{transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{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);}
.m10_c00087{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);}
.mc6_c00087{transform:matrix(0.223349,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223349,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223349,0.002233,-0.002500,0.249988,0,0);}
.mab_c00087{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);}
.m82_c00087{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);}
.m4e_c00087{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);}
.mc2_c00087{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);}
.m20_c00087{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);}
.mb_c00087{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);}
.m23_c00087{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);}
.md9_c00087{transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);}
.md8_c00087{transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);}
.m60_c00087{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);}
.mf0_c00087{transform:matrix(0.228214,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228214,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228214,0.002282,-0.002500,0.249988,0,0);}
.mc3_c00087{transform:matrix(0.228674,0.002287,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228674,0.002287,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228674,0.002287,-0.002500,0.249988,0,0);}
.md5_c00087{transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);}
.m80_c00087{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);}
.m16_c00087{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);}
.m7e_c00087{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);}
.m68_c00087{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{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);}
.me4_c00087{transform:matrix(0.236658,0.002367,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236658,0.002367,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236658,0.002367,-0.002500,0.249988,0,0);}
.mce_c00087{transform:matrix(0.237883,0.002379,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237883,0.002379,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237883,0.002379,-0.002500,0.249988,0,0);}
.med_c00087{transform:matrix(0.239638,0.002396,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239638,0.002396,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239638,0.002396,-0.002500,0.249988,0,0);}
.mde_c00087{transform:matrix(0.243788,0.002438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243788,0.002438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243788,0.002438,-0.002500,0.249988,0,0);}
.mb0_c00087{transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);}
.m39_c00087{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);}
.mf8_c00087{transform:matrix(0.247208,0.002472,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247208,0.002472,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247208,0.002472,-0.002500,0.249988,0,0);}
.mfa_c00087{transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);}
.m25_c00087{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);}
.m3b_c00087{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);}
.m42_c00087{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.me0_c00087{transform:matrix(0.251362,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251362,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251362,0.002514,-0.002500,0.249988,0,0);}
.me1_c00087{transform:matrix(0.258067,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258067,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258067,0.002581,-0.002500,0.249988,0,0);}
.m67_c00087{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.mf5_c00087{transform:matrix(0.264682,0.002647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264682,0.002647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264682,0.002647,-0.002500,0.249988,0,0);}
.m3_c00087{transform:matrix(0.267381,-0.005615,0.005249,0.249945,0,0);-ms-transform:matrix(0.267381,-0.005615,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267381,-0.005615,0.005249,0.249945,0,0);}
.mcf_c00087{transform:matrix(0.267852,0.002679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267852,0.002679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267852,0.002679,-0.002500,0.249988,0,0);}
.m32_c00087{transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);}
.mdf_c00087{transform:matrix(0.271586,0.002716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271586,0.002716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271586,0.002716,-0.002500,0.249988,0,0);}
.m1_c00087{transform:matrix(0.275829,-0.005792,0.005249,0.249945,0,0);-ms-transform:matrix(0.275829,-0.005792,0.005249,0.249945,0,0);-webkit-transform:matrix(0.275829,-0.005792,0.005249,0.249945,0,0);}
.m5c_c00087{transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);}
.m66_c00087{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m4d_c00087{transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);}
.mdb_c00087{transform:matrix(0.289291,0.002893,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289291,0.002893,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289291,0.002893,-0.002500,0.249988,0,0);}
.m49_c00087{transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292730,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.ma0_c00087{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{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);}
.mcc_c00087{transform:matrix(0.312554,0.003126,-0.002500,0.249988,0,0);-ms-transform:matrix(0.312554,0.003126,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.312554,0.003126,-0.002500,0.249988,0,0);}
.m40_c00087{transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317260,0.000000,0.000000,0.250000,0,0);}
.m83_c00087{transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331120,0.000000,0.000000,0.250000,0,0);}
.m5d_c00087{transform:matrix(0.336875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336875,0.000000,0.000000,0.250000,0,0);}
.m65_c00087{transform:matrix(0.341365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341365,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.343879,-0.007221,0.005249,0.249945,0,0);-ms-transform:matrix(0.343879,-0.007221,0.005249,0.249945,0,0);-webkit-transform:matrix(0.343879,-0.007221,0.005249,0.249945,0,0);}
.m8d_c00087{transform:matrix(0.348360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348360,0.000000,0.000000,0.250000,0,0);}
.ma7_c00087{transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354875,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{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);}
.m5_c00087{transform:matrix(0.369599,-0.007762,0.005249,0.249945,0,0);-ms-transform:matrix(0.369599,-0.007762,0.005249,0.249945,0,0);-webkit-transform:matrix(0.369599,-0.007762,0.005249,0.249945,0,0);}
.m7_c00087{transform:matrix(0.385640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385640,0.000000,0.000000,0.250000,0,0);}
.ma8_c00087{transform:matrix(0.408730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408730,0.000000,0.000000,0.250000,0,0);}
.mf6_c00087{transform:matrix(0.419929,0.004199,-0.002500,0.249988,0,0);-ms-transform:matrix(0.419929,0.004199,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.419929,0.004199,-0.002500,0.249988,0,0);}
.m97_c00087{transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.482670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00087{transform:matrix(0.561410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561410,0.000000,0.000000,0.250000,0,0);}
.m5f_c00087{transform:matrix(0.736630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736630,0.000000,0.000000,0.250000,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;}
.fse_c00087{font-size:50.402520px;}
.fsf_c00087{font-size:52.502625px;}
.fs10_c00087{font-size:53.552677px;}
.fs11_c00087{font-size:55.652782px;}
.fs8_c00087{font-size:63.000000px;}
.fs6_c00087{font-size:64.050000px;}
.fs4_c00087{font-size:68.250000px;}
.fsd_c00087{font-size:69.300000px;}
.fsc_c00087{font-size:70.350000px;}
.fs5_c00087{font-size:71.400000px;}
.fsa_c00087{font-size:72.450000px;}
.fsb_c00087{font-size:73.500000px;}
.fs7_c00087{font-size:74.550000px;}
.fs1_c00087{font-size:78.767362px;}
.fs0_c00087{font-size:85.050000px;}
.fs9_c00087{font-size:94.500000px;}
.fs3_c00087{font-size:114.450000px;}
.fs2_c00087{font-size:140.700000px;}
.y0_c00087{bottom:0.000000px;}
.yca_c00087{bottom:134.242830px;}
.yc9_c00087{bottom:134.332905px;}
.yc8_c00087{bottom:135.124260px;}
.yc7_c00087{bottom:135.520650px;}
.yc6_c00087{bottom:135.828165px;}
.yc5_c00087{bottom:136.756320px;}
.yc4_c00087{bottom:137.868675px;}
.yc3_c00087{bottom:138.195240px;}
.yc2_c00087{bottom:138.450405px;}
.yc1_c00087{bottom:138.983625px;}
.yc0_c00087{bottom:139.443825px;}
.ybf_c00087{bottom:139.589295px;}
.ybe_c00087{bottom:152.875215px;}
.ybd_c00087{bottom:153.051030px;}
.ybc_c00087{bottom:153.660960px;}
.ybb_c00087{bottom:154.157655px;}
.yba_c00087{bottom:154.414605px;}
.yb9_c00087{bottom:154.635585px;}
.yb8_c00087{bottom:154.935075px;}
.yb7_c00087{bottom:155.115810px;}
.yb6_c00087{bottom:156.652680px;}
.yb5_c00087{bottom:156.828165px;}
.yb4_c00087{bottom:157.106010px;}
.yb3_c00087{bottom:157.411500px;}
.yb2_c00087{bottom:170.670630px;}
.yb1_c00087{bottom:170.851440px;}
.yb0_c00087{bottom:171.186270px;}
.yaf_c00087{bottom:171.358770px;}
.yae_c00087{bottom:171.774870px;}
.yad_c00087{bottom:172.133865px;}
.yac_c00087{bottom:172.204245px;}
.yab_c00087{bottom:172.490295px;}
.yaa_c00087{bottom:172.757775px;}
.ya9_c00087{bottom:172.878975px;}
.ya8_c00087{bottom:173.068230px;}
.ya7_c00087{bottom:173.249175px;}
.ya6_c00087{bottom:173.878320px;}
.ya5_c00087{bottom:174.175335px;}
.ya4_c00087{bottom:174.458550px;}
.ya3_c00087{bottom:174.631665px;}
.ya2_c00087{bottom:174.747780px;}
.ya1_c00087{bottom:175.231035px;}
.ya0_c00087{bottom:188.453055px;}
.y9f_c00087{bottom:188.730840px;}
.y9e_c00087{bottom:188.871255px;}
.y9d_c00087{bottom:189.241455px;}
.y9c_c00087{bottom:189.597915px;}
.y9b_c00087{bottom:189.876480px;}
.y9a_c00087{bottom:190.167555px;}
.y99_c00087{bottom:190.453815px;}
.y98_c00087{bottom:190.508130px;}
.y97_c00087{bottom:190.775640px;}
.y96_c00087{bottom:191.018115px;}
.y95_c00087{bottom:191.175225px;}
.y94_c00087{bottom:191.606805px;}
.y93_c00087{bottom:191.884965px;}
.y92_c00087{bottom:192.314250px;}
.y91_c00087{bottom:192.622095px;}
.y90_c00087{bottom:192.781500px;}
.y8f_c00087{bottom:235.666500px;}
.y8e_c00087{bottom:236.181000px;}
.y8d_c00087{bottom:236.449500px;}
.y8c_c00087{bottom:237.130500px;}
.y8b_c00087{bottom:237.493500px;}
.y8a_c00087{bottom:238.654500px;}
.y89_c00087{bottom:239.406000px;}
.y88_c00087{bottom:239.764500px;}
.y87_c00087{bottom:258.324000px;}
.y86_c00087{bottom:258.646500px;}
.y85_c00087{bottom:259.183500px;}
.y84_c00087{bottom:259.728000px;}
.y83_c00087{bottom:260.184000px;}
.y82_c00087{bottom:260.665500px;}
.y81_c00087{bottom:261.294000px;}
.y80_c00087{bottom:261.627000px;}
.y7f_c00087{bottom:261.946500px;}
.y7e_c00087{bottom:262.714500px;}
.y7d_c00087{bottom:280.932000px;}
.y7c_c00087{bottom:281.574000px;}
.y7b_c00087{bottom:281.767500px;}
.y7a_c00087{bottom:282.348000px;}
.y79_c00087{bottom:282.696000px;}
.y78_c00087{bottom:283.212000px;}
.y77_c00087{bottom:283.566000px;}
.y76_c00087{bottom:284.314500px;}
.y75_c00087{bottom:304.552500px;}
.y74_c00087{bottom:306.612000px;}
.y73_c00087{bottom:326.574000px;}
.y72_c00087{bottom:327.330000px;}
.y71_c00087{bottom:327.714000px;}
.y70_c00087{bottom:328.309500px;}
.y6f_c00087{bottom:328.773000px;}
.y6e_c00087{bottom:329.551500px;}
.y6d_c00087{bottom:329.944500px;}
.y6c_c00087{bottom:350.392500px;}
.y6b_c00087{bottom:351.037500px;}
.y6a_c00087{bottom:351.661500px;}
.y69_c00087{bottom:352.095000px;}
.y68_c00087{bottom:352.486500px;}
.y67_c00087{bottom:353.004000px;}
.y66_c00087{bottom:353.247000px;}
.y65_c00087{bottom:353.838000px;}
.y64_c00087{bottom:354.244500px;}
.y63_c00087{bottom:374.644500px;}
.y62_c00087{bottom:398.511000px;}
.y61_c00087{bottom:418.779000px;}
.y60_c00087{bottom:418.942500px;}
.y5f_c00087{bottom:419.392500px;}
.y5e_c00087{bottom:419.832000px;}
.y5d_c00087{bottom:420.216000px;}
.y5c_c00087{bottom:420.480000px;}
.y5b_c00087{bottom:421.242000px;}
.y5a_c00087{bottom:421.617000px;}
.y59_c00087{bottom:422.037000px;}
.y58_c00087{bottom:422.283000px;}
.y57_c00087{bottom:441.997500px;}
.y56_c00087{bottom:442.171500px;}
.y55_c00087{bottom:442.732500px;}
.y54_c00087{bottom:442.992000px;}
.y53_c00087{bottom:443.248500px;}
.y52_c00087{bottom:443.926500px;}
.y51_c00087{bottom:444.147000px;}
.y50_c00087{bottom:444.694500px;}
.y4f_c00087{bottom:444.934500px;}
.y4e_c00087{bottom:445.518000px;}
.y4d_c00087{bottom:445.771500px;}
.y4c_c00087{bottom:465.087000px;}
.y4b_c00087{bottom:465.484500px;}
.y4a_c00087{bottom:465.729000px;}
.y49_c00087{bottom:466.137000px;}
.y48_c00087{bottom:466.435500px;}
.y47_c00087{bottom:466.666500px;}
.y46_c00087{bottom:467.257500px;}
.y45_c00087{bottom:467.614500px;}
.y44_c00087{bottom:467.920500px;}
.y43_c00087{bottom:468.180000px;}
.y42_c00087{bottom:488.899500px;}
.y41_c00087{bottom:513.538500px;}
.y40_c00087{bottom:535.759500px;}
.y3f_c00087{bottom:558.093000px;}
.y3e_c00087{bottom:577.941000px;}
.y3d_c00087{bottom:578.701500px;}
.y3c_c00087{bottom:578.820000px;}
.y3b_c00087{bottom:579.438000px;}
.y3a_c00087{bottom:579.877500px;}
.y39_c00087{bottom:580.116000px;}
.y38_c00087{bottom:580.477500px;}
.y37_c00087{bottom:580.992000px;}
.y36_c00087{bottom:581.674500px;}
.y35_c00087{bottom:581.953500px;}
.y34_c00087{bottom:582.421500px;}
.y33_c00087{bottom:582.661500px;}
.y32_c00087{bottom:604.237500px;}
.y31_c00087{bottom:624.777000px;}
.y30_c00087{bottom:625.353000px;}
.y2f_c00087{bottom:625.483500px;}
.y2e_c00087{bottom:625.833000px;}
.y2d_c00087{bottom:626.860500px;}
.y2c_c00087{bottom:626.986500px;}
.y2b_c00087{bottom:627.684000px;}
.y2a_c00087{bottom:628.075500px;}
.y29_c00087{bottom:628.474500px;}
.y28_c00087{bottom:628.689000px;}
.y27_c00087{bottom:628.831500px;}
.y26_c00087{bottom:649.465500px;}
.y25_c00087{bottom:672.474000px;}
.y24_c00087{bottom:672.727500px;}
.y23_c00087{bottom:673.558500px;}
.y22_c00087{bottom:674.004000px;}
.y21_c00087{bottom:674.458500px;}
.y20_c00087{bottom:674.739000px;}
.y1f_c00087{bottom:675.271500px;}
.y1e_c00087{bottom:695.427000px;}
.y1d_c00087{bottom:696.280500px;}
.y1c_c00087{bottom:696.532500px;}
.y1b_c00087{bottom:697.281000px;}
.y1a_c00087{bottom:697.629000px;}
.y19_c00087{bottom:697.930500px;}
.y18_c00087{bottom:698.221500px;}
.y17_c00087{bottom:719.346000px;}
.y16_c00087{bottom:741.169500px;}
.y15_c00087{bottom:741.784500px;}
.y14_c00087{bottom:742.107000px;}
.y13_c00087{bottom:742.503000px;}
.y12_c00087{bottom:742.950000px;}
.y11_c00087{bottom:743.542500px;}
.y10_c00087{bottom:743.800500px;}
.yf_c00087{bottom:744.130500px;}
.ye_c00087{bottom:766.032000px;}
.yd_c00087{bottom:788.614500px;}
.yc_c00087{bottom:812.137500px;}
.y8_c00087{bottom:850.780500px;}
.y9_c00087{bottom:852.537000px;}
.ya_c00087{bottom:853.759500px;}
.yb_c00087{bottom:855.892500px;}
.y7_c00087{bottom:895.780500px;}
.y2_c00087{bottom:913.416000px;}
.y1_c00087{bottom:915.300000px;}
.y3_c00087{bottom:915.853312px;}
.y4_c00087{bottom:916.752417px;}
.y5_c00087{bottom:917.787601px;}
.y6_c00087{bottom:918.070786px;}
.h10_c00087{height:50.402520px;}
.h11_c00087{height:52.502625px;}
.h12_c00087{height:53.552677px;}
.h13_c00087{height:55.652782px;}
.ha_c00087{height:63.000000px;}
.h8_c00087{height:64.050000px;}
.h6_c00087{height:68.250000px;}
.hf_c00087{height:69.300000px;}
.he_c00087{height:70.350000px;}
.h7_c00087{height:71.400000px;}
.hc_c00087{height:72.450000px;}
.hd_c00087{height:73.500000px;}
.h9_c00087{height:74.550000px;}
.h3_c00087{height:78.767362px;}
.h2_c00087{height:85.050000px;}
.hb_c00087{height:94.500000px;}
.h5_c00087{height:114.450000px;}
.h4_c00087{height:140.700000px;}
.h0_c00087{height:1008.450000px;}
.h1_c00087{height:1008.750000px;}
.w0_c00087{width:711.720000px;}
.w1_c00087{width:711.750000px;}
.x0_c00087{left:0.000000px;}
.x7_c00087{left:110.430000px;}
.x89_c00087{left:163.534665px;}
.x9_c00087{left:165.376500px;}
.x81_c00087{left:177.015000px;}
.x36_c00087{left:186.333000px;}
.x70_c00087{left:193.465500px;}
.x2d_c00087{left:194.563500px;}
.xd_c00087{left:196.290000px;}
.x6b_c00087{left:198.183000px;}
.x4a_c00087{left:199.533000px;}
.x13_c00087{left:200.880000px;}
.x37_c00087{left:202.096500px;}
.x8_c00087{left:206.010000px;}
.x8a_c00087{left:211.860165px;}
.xe_c00087{left:220.320000px;}
.x3f_c00087{left:222.823500px;}
.x5f_c00087{left:225.051000px;}
.x14_c00087{left:226.800000px;}
.x52_c00087{left:228.153000px;}
.x71_c00087{left:230.436000px;}
.xa_c00087{left:232.942500px;}
.x21_c00087{left:237.727500px;}
.x8f_c00087{left:238.864500px;}
.x8b_c00087{left:240.783165px;}
.x74_c00087{left:243.397500px;}
.x4f_c00087{left:246.243000px;}
.xf_c00087{left:248.940000px;}
.x4b_c00087{left:250.833000px;}
.x31_c00087{left:254.530500px;}
.x7b_c00087{left:258.211500px;}
.x2e_c00087{left:260.436000px;}
.x28_c00087{left:263.250000px;}
.x40_c00087{left:265.309500px;}
.x22_c00087{left:266.344500px;}
.x15_c00087{left:268.110000px;}
.x38_c00087{left:270.130500px;}
.x93_c00087{left:273.327390px;}
.x1c_c00087{left:274.860000px;}
.x7e_c00087{left:278.731500px;}
.xb_c00087{left:279.972000px;}
.x32_c00087{left:282.522000px;}
.x6c_c00087{left:284.583000px;}
.x41_c00087{left:290.647500px;}
.x82_c00087{left:294.484500px;}
.x2f_c00087{left:299.043000px;}
.x59_c00087{left:302.806500px;}
.x65_c00087{left:304.428000px;}
.x16_c00087{left:306.720000px;}
.x1d_c00087{left:308.880000px;}
.x29_c00087{left:311.310000px;}
.x39_c00087{left:313.623000px;}
.x33_c00087{left:327.921000px;}
.x75_c00087{left:329.815500px;}
.x23_c00087{left:332.253000px;}
.x53_c00087{left:338.043000px;}
.x4c_c00087{left:339.393000px;}
.x49_c00087{left:340.743000px;}
.x50_c00087{left:341.823000px;}
.x10_c00087{left:345.060000px;}
.x6f_c00087{left:350.463000px;}
.x42_c00087{left:352.743000px;}
.x1e_c00087{left:355.860000px;}
.x2a_c00087{left:359.640000px;}
.x79_c00087{left:360.892500px;}
.xc_c00087{left:362.034000px;}
.x5a_c00087{left:368.469000px;}
.x34_c00087{left:372.463500px;}
.x17_c00087{left:373.950000px;}
.x83_c00087{left:377.601000px;}
.x54_c00087{left:378.813000px;}
.x66_c00087{left:380.608500px;}
.x24_c00087{left:381.897000px;}
.x60_c00087{left:384.322500px;}
.x11_c00087{left:387.180000px;}
.x72_c00087{left:388.891500px;}
.x3a_c00087{left:391.111500px;}
.x90_c00087{left:392.551500px;}
.x5b_c00087{left:394.122000px;}
.x18_c00087{left:396.360000px;}
.x43_c00087{left:399.498000px;}
.x4d_c00087{left:400.683000px;}
.x1f_c00087{left:404.730000px;}
.x67_c00087{left:406.981500px;}
.x12_c00087{left:409.860000px;}
.x6d_c00087{left:410.943000px;}
.x51_c00087{left:424.173000px;}
.x25_c00087{left:425.968500px;}
.x19_c00087{left:427.950000px;}
.x44_c00087{left:432.393000px;}
.x2b_c00087{left:433.890000px;}
.x7f_c00087{left:436.146000px;}
.x84_c00087{left:438.409500px;}
.x55_c00087{left:441.183000px;}
.x68_c00087{left:445.369500px;}
.x76_c00087{left:447.534000px;}
.x61_c00087{left:452.125500px;}
.x20_c00087{left:453.870000px;}
.x35_c00087{left:455.631000px;}
.x1a_c00087{left:457.920000px;}
.x26_c00087{left:461.844000px;}
.x8c_c00087{left:466.213665px;}
.x6e_c00087{left:468.183000px;}
.x56_c00087{left:469.263000px;}
.x7c_c00087{left:470.778000px;}
.x5c_c00087{left:472.666500px;}
.x4e_c00087{left:474.393000px;}
.x2_c00087{left:476.805000px;}
.x94_c00087{left:479.130225px;}
.x2c_c00087{left:480.870000px;}
.x73_c00087{left:485.044500px;}
.x78_c00087{left:487.657500px;}
.x69_c00087{left:489.348000px;}
.x80_c00087{left:492.025500px;}
.x45_c00087{left:493.984500px;}
.x85_c00087{left:495.373500px;}
.x5d_c00087{left:499.890000px;}
.x1b_c00087{left:502.470000px;}
.x62_c00087{left:503.689500px;}
.x30_c00087{left:505.048500px;}
.x57_c00087{left:509.763000px;}
.x7d_c00087{left:512.028000px;}
.x3b_c00087{left:519.361500px;}
.x27_c00087{left:530.182500px;}
.x6a_c00087{left:534.399000px;}
.x7a_c00087{left:537.264000px;}
.x58_c00087{left:540.273000px;}
.x5e_c00087{left:543.976500px;}
.x46_c00087{left:550.105500px;}
.x3c_c00087{left:558.238500px;}
.x63_c00087{left:559.792500px;}
.x47_c00087{left:560.907000px;}
.x86_c00087{left:568.039500px;}
.x95_c00087{left:570.451980px;}
.x3d_c00087{left:572.820000px;}
.x77_c00087{left:574.168500px;}
.x64_c00087{left:577.203000px;}
.x87_c00087{left:582.081000px;}
.x3_c00087{left:592.867500px;}
.x91_c00087{left:599.029500px;}
.x8d_c00087{left:601.494165px;}
.x88_c00087{left:609.859500px;}
.x92_c00087{left:616.611000px;}
.x8e_c00087{left:619.575165px;}
.x48_c00087{left:630.039000px;}
.x4_c00087{left:635.682000px;}
.x3e_c00087{left:636.810000px;}
.x1_c00087{left:672.300000px;}
.x5_c00087{left:684.976500px;}
.x6_c00087{left:698.461500px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.fse_c00087{font-size:44.802240pt;}
.fsf_c00087{font-size:46.669000pt;}
.fs10_c00087{font-size:47.602380pt;}
.fs11_c00087{font-size:49.469140pt;}
.fs8_c00087{font-size:56.000000pt;}
.fs6_c00087{font-size:56.933333pt;}
.fs4_c00087{font-size:60.666667pt;}
.fsd_c00087{font-size:61.600000pt;}
.fsc_c00087{font-size:62.533333pt;}
.fs5_c00087{font-size:63.466667pt;}
.fsa_c00087{font-size:64.400000pt;}
.fsb_c00087{font-size:65.333333pt;}
.fs7_c00087{font-size:66.266667pt;}
.fs1_c00087{font-size:70.015433pt;}
.fs0_c00087{font-size:75.600000pt;}
.fs9_c00087{font-size:84.000000pt;}
.fs3_c00087{font-size:101.733333pt;}
.fs2_c00087{font-size:125.066667pt;}
.y0_c00087{bottom:0.000000pt;}
.yca_c00087{bottom:119.326960pt;}
.yc9_c00087{bottom:119.407027pt;}
.yc8_c00087{bottom:120.110453pt;}
.yc7_c00087{bottom:120.462800pt;}
.yc6_c00087{bottom:120.736147pt;}
.yc5_c00087{bottom:121.561173pt;}
.yc4_c00087{bottom:122.549933pt;}
.yc3_c00087{bottom:122.840213pt;}
.yc2_c00087{bottom:123.067027pt;}
.yc1_c00087{bottom:123.541000pt;}
.yc0_c00087{bottom:123.950067pt;}
.ybf_c00087{bottom:124.079373pt;}
.ybe_c00087{bottom:135.889080pt;}
.ybd_c00087{bottom:136.045360pt;}
.ybc_c00087{bottom:136.587520pt;}
.ybb_c00087{bottom:137.029027pt;}
.yba_c00087{bottom:137.257427pt;}
.yb9_c00087{bottom:137.453853pt;}
.yb8_c00087{bottom:137.720067pt;}
.yb7_c00087{bottom:137.880720pt;}
.yb6_c00087{bottom:139.246827pt;}
.yb5_c00087{bottom:139.402813pt;}
.yb4_c00087{bottom:139.649787pt;}
.yb3_c00087{bottom:139.921333pt;}
.yb2_c00087{bottom:151.707227pt;}
.yb1_c00087{bottom:151.867947pt;}
.yb0_c00087{bottom:152.165573pt;}
.yaf_c00087{bottom:152.318907pt;}
.yae_c00087{bottom:152.688773pt;}
.yad_c00087{bottom:153.007880pt;}
.yac_c00087{bottom:153.070440pt;}
.yab_c00087{bottom:153.324707pt;}
.yaa_c00087{bottom:153.562467pt;}
.ya9_c00087{bottom:153.670200pt;}
.ya8_c00087{bottom:153.838427pt;}
.ya7_c00087{bottom:153.999267pt;}
.ya6_c00087{bottom:154.558507pt;}
.ya5_c00087{bottom:154.822520pt;}
.ya4_c00087{bottom:155.074267pt;}
.ya3_c00087{bottom:155.228147pt;}
.ya2_c00087{bottom:155.331360pt;}
.ya1_c00087{bottom:155.760920pt;}
.ya0_c00087{bottom:167.513827pt;}
.y9f_c00087{bottom:167.760747pt;}
.y9e_c00087{bottom:167.885560pt;}
.y9d_c00087{bottom:168.214627pt;}
.y9c_c00087{bottom:168.531480pt;}
.y9b_c00087{bottom:168.779093pt;}
.y9a_c00087{bottom:169.037827pt;}
.y99_c00087{bottom:169.292280pt;}
.y98_c00087{bottom:169.340560pt;}
.y97_c00087{bottom:169.578347pt;}
.y96_c00087{bottom:169.793880pt;}
.y95_c00087{bottom:169.933533pt;}
.y94_c00087{bottom:170.317160pt;}
.y93_c00087{bottom:170.564413pt;}
.y92_c00087{bottom:170.946000pt;}
.y91_c00087{bottom:171.219640pt;}
.y90_c00087{bottom:171.361333pt;}
.y8f_c00087{bottom:209.481333pt;}
.y8e_c00087{bottom:209.938667pt;}
.y8d_c00087{bottom:210.177333pt;}
.y8c_c00087{bottom:210.782667pt;}
.y8b_c00087{bottom:211.105333pt;}
.y8a_c00087{bottom:212.137333pt;}
.y89_c00087{bottom:212.805333pt;}
.y88_c00087{bottom:213.124000pt;}
.y87_c00087{bottom:229.621333pt;}
.y86_c00087{bottom:229.908000pt;}
.y85_c00087{bottom:230.385333pt;}
.y84_c00087{bottom:230.869333pt;}
.y83_c00087{bottom:231.274667pt;}
.y82_c00087{bottom:231.702667pt;}
.y81_c00087{bottom:232.261333pt;}
.y80_c00087{bottom:232.557333pt;}
.y7f_c00087{bottom:232.841333pt;}
.y7e_c00087{bottom:233.524000pt;}
.y7d_c00087{bottom:249.717333pt;}
.y7c_c00087{bottom:250.288000pt;}
.y7b_c00087{bottom:250.460000pt;}
.y7a_c00087{bottom:250.976000pt;}
.y79_c00087{bottom:251.285333pt;}
.y78_c00087{bottom:251.744000pt;}
.y77_c00087{bottom:252.058667pt;}
.y76_c00087{bottom:252.724000pt;}
.y75_c00087{bottom:270.713333pt;}
.y74_c00087{bottom:272.544000pt;}
.y73_c00087{bottom:290.288000pt;}
.y72_c00087{bottom:290.960000pt;}
.y71_c00087{bottom:291.301333pt;}
.y70_c00087{bottom:291.830667pt;}
.y6f_c00087{bottom:292.242667pt;}
.y6e_c00087{bottom:292.934667pt;}
.y6d_c00087{bottom:293.284000pt;}
.y6c_c00087{bottom:311.460000pt;}
.y6b_c00087{bottom:312.033333pt;}
.y6a_c00087{bottom:312.588000pt;}
.y69_c00087{bottom:312.973333pt;}
.y68_c00087{bottom:313.321333pt;}
.y67_c00087{bottom:313.781333pt;}
.y66_c00087{bottom:313.997333pt;}
.y65_c00087{bottom:314.522667pt;}
.y64_c00087{bottom:314.884000pt;}
.y63_c00087{bottom:333.017333pt;}
.y62_c00087{bottom:354.232000pt;}
.y61_c00087{bottom:372.248000pt;}
.y60_c00087{bottom:372.393333pt;}
.y5f_c00087{bottom:372.793333pt;}
.y5e_c00087{bottom:373.184000pt;}
.y5d_c00087{bottom:373.525333pt;}
.y5c_c00087{bottom:373.760000pt;}
.y5b_c00087{bottom:374.437333pt;}
.y5a_c00087{bottom:374.770667pt;}
.y59_c00087{bottom:375.144000pt;}
.y58_c00087{bottom:375.362667pt;}
.y57_c00087{bottom:392.886667pt;}
.y56_c00087{bottom:393.041333pt;}
.y55_c00087{bottom:393.540000pt;}
.y54_c00087{bottom:393.770667pt;}
.y53_c00087{bottom:393.998667pt;}
.y52_c00087{bottom:394.601333pt;}
.y51_c00087{bottom:394.797333pt;}
.y50_c00087{bottom:395.284000pt;}
.y4f_c00087{bottom:395.497333pt;}
.y4e_c00087{bottom:396.016000pt;}
.y4d_c00087{bottom:396.241333pt;}
.y4c_c00087{bottom:413.410667pt;}
.y4b_c00087{bottom:413.764000pt;}
.y4a_c00087{bottom:413.981333pt;}
.y49_c00087{bottom:414.344000pt;}
.y48_c00087{bottom:414.609333pt;}
.y47_c00087{bottom:414.814667pt;}
.y46_c00087{bottom:415.340000pt;}
.y45_c00087{bottom:415.657333pt;}
.y44_c00087{bottom:415.929333pt;}
.y43_c00087{bottom:416.160000pt;}
.y42_c00087{bottom:434.577333pt;}
.y41_c00087{bottom:456.478667pt;}
.y40_c00087{bottom:476.230667pt;}
.y3f_c00087{bottom:496.082667pt;}
.y3e_c00087{bottom:513.725333pt;}
.y3d_c00087{bottom:514.401333pt;}
.y3c_c00087{bottom:514.506667pt;}
.y3b_c00087{bottom:515.056000pt;}
.y3a_c00087{bottom:515.446667pt;}
.y39_c00087{bottom:515.658667pt;}
.y38_c00087{bottom:515.980000pt;}
.y37_c00087{bottom:516.437333pt;}
.y36_c00087{bottom:517.044000pt;}
.y35_c00087{bottom:517.292000pt;}
.y34_c00087{bottom:517.708000pt;}
.y33_c00087{bottom:517.921333pt;}
.y32_c00087{bottom:537.100000pt;}
.y31_c00087{bottom:555.357333pt;}
.y30_c00087{bottom:555.869333pt;}
.y2f_c00087{bottom:555.985333pt;}
.y2e_c00087{bottom:556.296000pt;}
.y2d_c00087{bottom:557.209333pt;}
.y2c_c00087{bottom:557.321333pt;}
.y2b_c00087{bottom:557.941333pt;}
.y2a_c00087{bottom:558.289333pt;}
.y29_c00087{bottom:558.644000pt;}
.y28_c00087{bottom:558.834667pt;}
.y27_c00087{bottom:558.961333pt;}
.y26_c00087{bottom:577.302667pt;}
.y25_c00087{bottom:597.754667pt;}
.y24_c00087{bottom:597.980000pt;}
.y23_c00087{bottom:598.718667pt;}
.y22_c00087{bottom:599.114667pt;}
.y21_c00087{bottom:599.518667pt;}
.y20_c00087{bottom:599.768000pt;}
.y1f_c00087{bottom:600.241333pt;}
.y1e_c00087{bottom:618.157333pt;}
.y1d_c00087{bottom:618.916000pt;}
.y1c_c00087{bottom:619.140000pt;}
.y1b_c00087{bottom:619.805333pt;}
.y1a_c00087{bottom:620.114667pt;}
.y19_c00087{bottom:620.382667pt;}
.y18_c00087{bottom:620.641333pt;}
.y17_c00087{bottom:639.418667pt;}
.y16_c00087{bottom:658.817333pt;}
.y15_c00087{bottom:659.364000pt;}
.y14_c00087{bottom:659.650667pt;}
.y13_c00087{bottom:660.002667pt;}
.y12_c00087{bottom:660.400000pt;}
.y11_c00087{bottom:660.926667pt;}
.y10_c00087{bottom:661.156000pt;}
.yf_c00087{bottom:661.449333pt;}
.ye_c00087{bottom:680.917333pt;}
.yd_c00087{bottom:700.990667pt;}
.yc_c00087{bottom:721.900000pt;}
.y8_c00087{bottom:756.249333pt;}
.y9_c00087{bottom:757.810667pt;}
.ya_c00087{bottom:758.897333pt;}
.yb_c00087{bottom:760.793333pt;}
.y7_c00087{bottom:796.249333pt;}
.y2_c00087{bottom:811.925333pt;}
.y1_c00087{bottom:813.600000pt;}
.y3_c00087{bottom:814.091833pt;}
.y4_c00087{bottom:814.891037pt;}
.y5_c00087{bottom:815.811201pt;}
.y6_c00087{bottom:816.062921pt;}
.h10_c00087{height:44.802240pt;}
.h11_c00087{height:46.669000pt;}
.h12_c00087{height:47.602380pt;}
.h13_c00087{height:49.469140pt;}
.ha_c00087{height:56.000000pt;}
.h8_c00087{height:56.933333pt;}
.h6_c00087{height:60.666667pt;}
.hf_c00087{height:61.600000pt;}
.he_c00087{height:62.533333pt;}
.h7_c00087{height:63.466667pt;}
.hc_c00087{height:64.400000pt;}
.hd_c00087{height:65.333333pt;}
.h9_c00087{height:66.266667pt;}
.h3_c00087{height:70.015433pt;}
.h2_c00087{height:75.600000pt;}
.hb_c00087{height:84.000000pt;}
.h5_c00087{height:101.733333pt;}
.h4_c00087{height:125.066667pt;}
.h0_c00087{height:896.400000pt;}
.h1_c00087{height:896.666667pt;}
.w0_c00087{width:632.640000pt;}
.w1_c00087{width:632.666667pt;}
.x0_c00087{left:0.000000pt;}
.x7_c00087{left:98.160000pt;}
.x89_c00087{left:145.364147pt;}
.x9_c00087{left:147.001333pt;}
.x81_c00087{left:157.346667pt;}
.x36_c00087{left:165.629333pt;}
.x70_c00087{left:171.969333pt;}
.x2d_c00087{left:172.945333pt;}
.xd_c00087{left:174.480000pt;}
.x6b_c00087{left:176.162667pt;}
.x4a_c00087{left:177.362667pt;}
.x13_c00087{left:178.560000pt;}
.x37_c00087{left:179.641333pt;}
.x8_c00087{left:183.120000pt;}
.x8a_c00087{left:188.320147pt;}
.xe_c00087{left:195.840000pt;}
.x3f_c00087{left:198.065333pt;}
.x5f_c00087{left:200.045333pt;}
.x14_c00087{left:201.600000pt;}
.x52_c00087{left:202.802667pt;}
.x71_c00087{left:204.832000pt;}
.xa_c00087{left:207.060000pt;}
.x21_c00087{left:211.313333pt;}
.x8f_c00087{left:212.324000pt;}
.x8b_c00087{left:214.029480pt;}
.x74_c00087{left:216.353333pt;}
.x4f_c00087{left:218.882667pt;}
.xf_c00087{left:221.280000pt;}
.x4b_c00087{left:222.962667pt;}
.x31_c00087{left:226.249333pt;}
.x7b_c00087{left:229.521333pt;}
.x2e_c00087{left:231.498667pt;}
.x28_c00087{left:234.000000pt;}
.x40_c00087{left:235.830667pt;}
.x22_c00087{left:236.750667pt;}
.x15_c00087{left:238.320000pt;}
.x38_c00087{left:240.116000pt;}
.x93_c00087{left:242.957680pt;}
.x1c_c00087{left:244.320000pt;}
.x7e_c00087{left:247.761333pt;}
.xb_c00087{left:248.864000pt;}
.x32_c00087{left:251.130667pt;}
.x6c_c00087{left:252.962667pt;}
.x41_c00087{left:258.353333pt;}
.x82_c00087{left:261.764000pt;}
.x2f_c00087{left:265.816000pt;}
.x59_c00087{left:269.161333pt;}
.x65_c00087{left:270.602667pt;}
.x16_c00087{left:272.640000pt;}
.x1d_c00087{left:274.560000pt;}
.x29_c00087{left:276.720000pt;}
.x39_c00087{left:278.776000pt;}
.x33_c00087{left:291.485333pt;}
.x75_c00087{left:293.169333pt;}
.x23_c00087{left:295.336000pt;}
.x53_c00087{left:300.482667pt;}
.x4c_c00087{left:301.682667pt;}
.x49_c00087{left:302.882667pt;}
.x50_c00087{left:303.842667pt;}
.x10_c00087{left:306.720000pt;}
.x6f_c00087{left:311.522667pt;}
.x42_c00087{left:313.549333pt;}
.x1e_c00087{left:316.320000pt;}
.x2a_c00087{left:319.680000pt;}
.x79_c00087{left:320.793333pt;}
.xc_c00087{left:321.808000pt;}
.x5a_c00087{left:327.528000pt;}
.x34_c00087{left:331.078667pt;}
.x17_c00087{left:332.400000pt;}
.x83_c00087{left:335.645333pt;}
.x54_c00087{left:336.722667pt;}
.x66_c00087{left:338.318667pt;}
.x24_c00087{left:339.464000pt;}
.x60_c00087{left:341.620000pt;}
.x11_c00087{left:344.160000pt;}
.x72_c00087{left:345.681333pt;}
.x3a_c00087{left:347.654667pt;}
.x90_c00087{left:348.934667pt;}
.x5b_c00087{left:350.330667pt;}
.x18_c00087{left:352.320000pt;}
.x43_c00087{left:355.109333pt;}
.x4d_c00087{left:356.162667pt;}
.x1f_c00087{left:359.760000pt;}
.x67_c00087{left:361.761333pt;}
.x12_c00087{left:364.320000pt;}
.x6d_c00087{left:365.282667pt;}
.x51_c00087{left:377.042667pt;}
.x25_c00087{left:378.638667pt;}
.x19_c00087{left:380.400000pt;}
.x44_c00087{left:384.349333pt;}
.x2b_c00087{left:385.680000pt;}
.x7f_c00087{left:387.685333pt;}
.x84_c00087{left:389.697333pt;}
.x55_c00087{left:392.162667pt;}
.x68_c00087{left:395.884000pt;}
.x76_c00087{left:397.808000pt;}
.x61_c00087{left:401.889333pt;}
.x20_c00087{left:403.440000pt;}
.x35_c00087{left:405.005333pt;}
.x1a_c00087{left:407.040000pt;}
.x26_c00087{left:410.528000pt;}
.x8c_c00087{left:414.412147pt;}
.x6e_c00087{left:416.162667pt;}
.x56_c00087{left:417.122667pt;}
.x7c_c00087{left:418.469333pt;}
.x5c_c00087{left:420.148000pt;}
.x4e_c00087{left:421.682667pt;}
.x2_c00087{left:423.826667pt;}
.x94_c00087{left:425.893533pt;}
.x2c_c00087{left:427.440000pt;}
.x73_c00087{left:431.150667pt;}
.x78_c00087{left:433.473333pt;}
.x69_c00087{left:434.976000pt;}
.x80_c00087{left:437.356000pt;}
.x45_c00087{left:439.097333pt;}
.x85_c00087{left:440.332000pt;}
.x5d_c00087{left:444.346667pt;}
.x1b_c00087{left:446.640000pt;}
.x62_c00087{left:447.724000pt;}
.x30_c00087{left:448.932000pt;}
.x57_c00087{left:453.122667pt;}
.x7d_c00087{left:455.136000pt;}
.x3b_c00087{left:461.654667pt;}
.x27_c00087{left:471.273333pt;}
.x6a_c00087{left:475.021333pt;}
.x7a_c00087{left:477.568000pt;}
.x58_c00087{left:480.242667pt;}
.x5e_c00087{left:483.534667pt;}
.x46_c00087{left:488.982667pt;}
.x3c_c00087{left:496.212000pt;}
.x63_c00087{left:497.593333pt;}
.x47_c00087{left:498.584000pt;}
.x86_c00087{left:504.924000pt;}
.x95_c00087{left:507.068427pt;}
.x3d_c00087{left:509.173333pt;}
.x77_c00087{left:510.372000pt;}
.x64_c00087{left:513.069333pt;}
.x87_c00087{left:517.405333pt;}
.x3_c00087{left:526.993333pt;}
.x91_c00087{left:532.470667pt;}
.x8d_c00087{left:534.661480pt;}
.x88_c00087{left:542.097333pt;}
.x92_c00087{left:548.098667pt;}
.x8e_c00087{left:550.733480pt;}
.x48_c00087{left:560.034667pt;}
.x4_c00087{left:565.050667pt;}
.x3e_c00087{left:566.053333pt;}
.x1_c00087{left:597.600000pt;}
.x5_c00087{left:608.868000pt;}
.x6_c00087{left:620.854667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8_c00088{transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.010537,0.000232,-0.005499,0.249940,0,0);-ms-transform:matrix(0.010537,0.000232,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.010537,0.000232,-0.005499,0.249940,0,0);}
.m41_c00088{transform:matrix(0.018633,0.000261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.018633,0.000261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.018633,0.000261,-0.003500,0.249976,0,0);}
.mc5_c00088{transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.023957,0.000359,-0.003750,0.249972,0,0);}
.mbc_c00088{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);}
.mb9_c00088{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);}
.m51_c00088{transform:matrix(0.059810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059810,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.082440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082440,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.100800,0.001411,-0.003500,0.249976,0,0);-ms-transform:matrix(0.100800,0.001411,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.100800,0.001411,-0.003500,0.249976,0,0);}
.mb_c00088{transform:matrix(0.101185,0.001417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.101185,0.001417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.101185,0.001417,-0.003500,0.249976,0,0);}
.md7_c00088{transform:matrix(0.126516,0.001898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.126516,0.001898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.126516,0.001898,-0.003750,0.249972,0,0);}
.md9_c00088{transform:matrix(0.130080,0.001951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.130080,0.001951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.130080,0.001951,-0.003750,0.249972,0,0);}
.m12_c00088{transform:matrix(0.130432,0.001826,-0.003500,0.249976,0,0);-ms-transform:matrix(0.130432,0.001826,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.130432,0.001826,-0.003500,0.249976,0,0);}
.m6_c00088{transform:matrix(0.131115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131115,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.135797,0.001901,-0.003500,0.249976,0,0);-ms-transform:matrix(0.135797,0.001901,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.135797,0.001901,-0.003500,0.249976,0,0);}
.md8_c00088{transform:matrix(0.138529,0.002078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138529,0.002078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138529,0.002078,-0.003750,0.249972,0,0);}
.mdb_c00088{transform:matrix(0.138729,0.002081,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138729,0.002081,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138729,0.002081,-0.003750,0.249972,0,0);}
.mae_c00088{transform:matrix(0.143034,0.003433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143034,0.003433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143034,0.003433,-0.005998,0.249928,0,0);}
.md6_c00088{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);}
.mdc_c00088{transform:matrix(0.146234,0.002194,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146234,0.002194,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146234,0.002194,-0.003750,0.249972,0,0);}
.mab_c00088{transform:matrix(0.147008,0.003528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.147008,0.003528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.147008,0.003528,-0.005998,0.249928,0,0);}
.m8a_c00088{transform:matrix(0.148139,0.003259,-0.005499,0.249940,0,0);-ms-transform:matrix(0.148139,0.003259,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.148139,0.003259,-0.005499,0.249940,0,0);}
.m15_c00088{transform:matrix(0.148300,0.002076,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148300,0.002076,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148300,0.002076,-0.003500,0.249976,0,0);}
.ma_c00088{transform:matrix(0.148615,0.002081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148615,0.002081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148615,0.002081,-0.003500,0.249976,0,0);}
.m40_c00088{transform:matrix(0.150365,0.002105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150365,0.002105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150365,0.002105,-0.003500,0.249976,0,0);}
.m52_c00088{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);}
.m35_c00088{transform:matrix(0.154270,0.002160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154270,0.002160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154270,0.002160,-0.003500,0.249976,0,0);}
.mc_c00088{transform:matrix(0.155800,0.002181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155800,0.002181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155800,0.002181,-0.003500,0.249976,0,0);}
.m2c_c00088{transform:matrix(0.157005,0.002198,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157005,0.002198,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157005,0.002198,-0.003500,0.249976,0,0);}
.m91_c00088{transform:matrix(0.158257,0.003482,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158257,0.003482,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158257,0.003482,-0.005499,0.249940,0,0);}
.m2f_c00088{transform:matrix(0.158629,0.002221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158629,0.002221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158629,0.002221,-0.003500,0.249976,0,0);}
.mad_c00088{transform:matrix(0.159579,0.003830,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159579,0.003830,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159579,0.003830,-0.005998,0.249928,0,0);}
.m68_c00088{transform:matrix(0.159821,0.003516,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159821,0.003516,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159821,0.003516,-0.005499,0.249940,0,0);}
.m42_c00088{transform:matrix(0.159844,0.002238,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159844,0.002238,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159844,0.002238,-0.003500,0.249976,0,0);}
.m3e_c00088{transform:matrix(0.160099,0.002241,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160099,0.002241,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160099,0.002241,-0.003500,0.249976,0,0);}
.mde_c00088{transform:matrix(0.160167,0.004324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160167,0.004324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160167,0.004324,-0.006748,0.249909,0,0);}
.m50_c00088{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);}
.m45_c00088{transform:matrix(0.160399,0.002246,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160399,0.002246,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160399,0.002246,-0.003500,0.249976,0,0);}
.m3a_c00088{transform:matrix(0.160634,0.002249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160634,0.002249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160634,0.002249,-0.003500,0.249976,0,0);}
.mbb_c00088{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);}
.m14_c00088{transform:matrix(0.161529,0.002261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161529,0.002261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161529,0.002261,-0.003500,0.249976,0,0);}
.m86_c00088{transform:matrix(0.161931,0.003562,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161931,0.003562,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161931,0.003562,-0.005499,0.249940,0,0);}
.m32_c00088{transform:matrix(0.162294,0.002272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162294,0.002272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162294,0.002272,-0.003500,0.249976,0,0);}
.m1a_c00088{transform:matrix(0.162384,0.002273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162384,0.002273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162384,0.002273,-0.003500,0.249976,0,0);}
.m3b_c00088{transform:matrix(0.162999,0.002282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162999,0.002282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162999,0.002282,-0.003500,0.249976,0,0);}
.maa_c00088{transform:matrix(0.163133,0.003915,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163133,0.003915,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163133,0.003915,-0.005998,0.249928,0,0);}
.m92_c00088{transform:matrix(0.163226,0.003591,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163226,0.003591,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163226,0.003591,-0.005499,0.249940,0,0);}
.mb5_c00088{transform:matrix(0.163263,0.003918,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163263,0.003918,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163263,0.003918,-0.005998,0.249928,0,0);}
.m44_c00088{transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);}
.m76_c00088{transform:matrix(0.165325,0.003637,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165325,0.003637,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165325,0.003637,-0.005499,0.249940,0,0);}
.mb4_c00088{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);}
.m33_c00088{transform:matrix(0.165584,0.002318,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165584,0.002318,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165584,0.002318,-0.003500,0.249976,0,0);}
.m6c_c00088{transform:matrix(0.165985,0.003652,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165985,0.003652,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165985,0.003652,-0.005499,0.249940,0,0);}
.m1d_c00088{transform:matrix(0.166184,0.002327,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166184,0.002327,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166184,0.002327,-0.003500,0.249976,0,0);}
.m1f_c00088{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);}
.m43_c00088{transform:matrix(0.166459,0.002330,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166459,0.002330,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166459,0.002330,-0.003500,0.249976,0,0);}
.mac_c00088{transform:matrix(0.166862,0.004005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166862,0.004005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166862,0.004005,-0.005998,0.249928,0,0);}
.mb2_c00088{transform:matrix(0.166867,0.004005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166867,0.004005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166867,0.004005,-0.005998,0.249928,0,0);}
.mb7_c00088{transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167237,0.004014,-0.005998,0.249928,0,0);}
.m53_c00088{transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);}
.m77_c00088{transform:matrix(0.167614,0.003688,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167614,0.003688,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167614,0.003688,-0.005499,0.249940,0,0);}
.m23_c00088{transform:matrix(0.169288,0.002370,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169288,0.002370,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169288,0.002370,-0.003500,0.249976,0,0);}
.ma0_c00088{transform:matrix(0.170084,0.003742,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170084,0.003742,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170084,0.003742,-0.005499,0.249940,0,0);}
.ma2_c00088{transform:matrix(0.170104,0.003742,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170104,0.003742,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170104,0.003742,-0.005499,0.249940,0,0);}
.m37_c00088{transform:matrix(0.170533,0.002387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170533,0.002387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170533,0.002387,-0.003500,0.249976,0,0);}
.mf_c00088{transform:matrix(0.170773,0.002391,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170773,0.002391,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170773,0.002391,-0.003500,0.249976,0,0);}
.ma5_c00088{transform:matrix(0.170807,0.005471,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170807,0.005471,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170807,0.005471,-0.008004,0.249872,0,0);}
.m67_c00088{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);}
.m59_c00088{transform:matrix(0.172013,0.003784,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172013,0.003784,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172013,0.003784,-0.005499,0.249940,0,0);}
.m5c_c00088{transform:matrix(0.172113,0.003786,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172113,0.003786,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172113,0.003786,-0.005499,0.249940,0,0);}
.m2e_c00088{transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);}
.mb1_c00088{transform:matrix(0.173190,0.004157,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173190,0.004157,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173190,0.004157,-0.005998,0.249928,0,0);}
.m4f_c00088{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);}
.ma9_c00088{transform:matrix(0.174390,0.004185,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174390,0.004185,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174390,0.004185,-0.005998,0.249928,0,0);}
.m3c_c00088{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);}
.m73_c00088{transform:matrix(0.174613,0.003841,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174613,0.003841,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174613,0.003841,-0.005499,0.249940,0,0);}
.m2_c00088{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);}
.m16_c00088{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);}
.m31_c00088{transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);}
.m9f_c00088{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);}
.m25_c00088{transform:matrix(0.175703,0.002460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175703,0.002460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175703,0.002460,-0.003500,0.249976,0,0);}
.ma1_c00088{transform:matrix(0.175937,0.003871,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175937,0.003871,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175937,0.003871,-0.005499,0.249940,0,0);}
.m4a_c00088{transform:matrix(0.176748,0.002474,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176748,0.002474,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176748,0.002474,-0.003500,0.249976,0,0);}
.m95_c00088{transform:matrix(0.176932,0.003893,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176932,0.003893,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176932,0.003893,-0.005499,0.249940,0,0);}
.mb6_c00088{transform:matrix(0.177424,0.004258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177424,0.004258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177424,0.004258,-0.005998,0.249928,0,0);}
.m78_c00088{transform:matrix(0.177472,0.003904,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177472,0.003904,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177472,0.003904,-0.005499,0.249940,0,0);}
.m6e_c00088{transform:matrix(0.178152,0.003919,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178152,0.003919,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178152,0.003919,-0.005499,0.249940,0,0);}
.ma7_c00088{transform:matrix(0.178374,0.005714,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178374,0.005714,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178374,0.005714,-0.008004,0.249872,0,0);}
.m48_c00088{transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);}
.m9d_c00088{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_c00088{transform:matrix(0.179232,0.003943,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179232,0.003943,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179232,0.003943,-0.005499,0.249940,0,0);}
.m20_c00088{transform:matrix(0.179277,0.002510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179277,0.002510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179277,0.002510,-0.003500,0.249976,0,0);}
.m71_c00088{transform:matrix(0.179432,0.003947,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179432,0.003947,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179432,0.003947,-0.005499,0.249940,0,0);}
.m24_c00088{transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);}
.ma4_c00088{transform:matrix(0.179693,0.005756,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179693,0.005756,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179693,0.005756,-0.008004,0.249872,0,0);}
.m3f_c00088{transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);}
.m21_c00088{transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);}
.mda_c00088{transform:matrix(0.181380,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181380,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181380,0.002721,-0.003750,0.249972,0,0);}
.m4c_c00088{transform:matrix(0.181387,0.002539,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181387,0.002539,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181387,0.002539,-0.003500,0.249976,0,0);}
.m7f_c00088{transform:matrix(0.182186,0.004008,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182186,0.004008,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182186,0.004008,-0.005499,0.249940,0,0);}
.m36_c00088{transform:matrix(0.182497,0.002555,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182497,0.002555,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182497,0.002555,-0.003500,0.249976,0,0);}
.m46_c00088{transform:matrix(0.182842,0.002560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182842,0.002560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182842,0.002560,-0.003500,0.249976,0,0);}
.m99_c00088{transform:matrix(0.183101,0.004028,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183101,0.004028,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183101,0.004028,-0.005499,0.249940,0,0);}
.mcb_c00088{transform:matrix(0.183349,0.002750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183349,0.002750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183349,0.002750,-0.003750,0.249972,0,0);}
.m89_c00088{transform:matrix(0.184435,0.004058,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184435,0.004058,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184435,0.004058,-0.005499,0.249940,0,0);}
.m4b_c00088{transform:matrix(0.185232,0.002593,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185232,0.002593,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185232,0.002593,-0.003500,0.249976,0,0);}
.m66_c00088{transform:matrix(0.185390,0.004079,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185390,0.004079,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185390,0.004079,-0.005499,0.249940,0,0);}
.m8e_c00088{transform:matrix(0.185725,0.004086,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185725,0.004086,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185725,0.004086,-0.005499,0.249940,0,0);}
.m58_c00088{transform:matrix(0.185775,0.004087,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185775,0.004087,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185775,0.004087,-0.005499,0.249940,0,0);}
.me_c00088{transform:matrix(0.185782,0.002601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185782,0.002601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185782,0.002601,-0.003500,0.249976,0,0);}
.m49_c00088{transform:matrix(0.185787,0.002601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185787,0.002601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185787,0.002601,-0.003500,0.249976,0,0);}
.m94_c00088{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_c00088{transform:matrix(0.186260,0.004098,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186260,0.004098,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186260,0.004098,-0.005499,0.249940,0,0);}
.m69_c00088{transform:matrix(0.186420,0.004101,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186420,0.004101,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186420,0.004101,-0.005499,0.249940,0,0);}
.m9c_c00088{transform:matrix(0.187580,0.004127,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187580,0.004127,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187580,0.004127,-0.005499,0.249940,0,0);}
.m93_c00088{transform:matrix(0.187760,0.004131,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187760,0.004131,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187760,0.004131,-0.005499,0.249940,0,0);}
.m57_c00088{transform:matrix(0.188259,0.004142,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188259,0.004142,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188259,0.004142,-0.005499,0.249940,0,0);}
.m8b_c00088{transform:matrix(0.188784,0.004153,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188784,0.004153,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188784,0.004153,-0.005499,0.249940,0,0);}
.m1e_c00088{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);}
.m56_c00088{transform:matrix(0.189044,0.004159,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189044,0.004159,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189044,0.004159,-0.005499,0.249940,0,0);}
.m90_c00088{transform:matrix(0.189304,0.004165,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189304,0.004165,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189304,0.004165,-0.005499,0.249940,0,0);}
.mc9_c00088{transform:matrix(0.190574,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190574,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190574,0.002859,-0.003750,0.249972,0,0);}
.mc2_c00088{transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190684,0.002860,-0.003750,0.249972,0,0);}
.m34_c00088{transform:matrix(0.191211,0.002677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191211,0.002677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191211,0.002677,-0.003500,0.249976,0,0);}
.m30_c00088{transform:matrix(0.191596,0.002682,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191596,0.002682,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191596,0.002682,-0.003500,0.249976,0,0);}
.m65_c00088{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);}
.m6b_c00088{transform:matrix(0.191884,0.004221,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191884,0.004221,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191884,0.004221,-0.005499,0.249940,0,0);}
.md0_c00088{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);}
.m6a_c00088{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);}
.mcf_c00088{transform:matrix(0.192623,0.002889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192623,0.002889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192623,0.002889,-0.003750,0.249972,0,0);}
.m81_c00088{transform:matrix(0.193178,0.004250,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193178,0.004250,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193178,0.004250,-0.005499,0.249940,0,0);}
.m29_c00088{transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);}
.m22_c00088{transform:matrix(0.194351,0.002721,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194351,0.002721,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194351,0.002721,-0.003500,0.249976,0,0);}
.mb3_c00088{transform:matrix(0.195769,0.004698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195769,0.004698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195769,0.004698,-0.005998,0.249928,0,0);}
.m6f_c00088{transform:matrix(0.196013,0.004312,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196013,0.004312,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196013,0.004312,-0.005499,0.249940,0,0);}
.ma6_c00088{transform:matrix(0.196209,0.006285,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196209,0.006285,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196209,0.006285,-0.008004,0.249872,0,0);}
.m7e_c00088{transform:matrix(0.196822,0.004330,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196822,0.004330,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196822,0.004330,-0.005499,0.249940,0,0);}
.m4d_c00088{transform:matrix(0.196831,0.002756,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196831,0.002756,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196831,0.002756,-0.003500,0.249976,0,0);}
.m4e_c00088{transform:matrix(0.197026,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197026,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197026,0.002758,-0.003500,0.249976,0,0);}
.m80_c00088{transform:matrix(0.197487,0.004345,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197487,0.004345,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197487,0.004345,-0.005499,0.249940,0,0);}
.m11_c00088{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);}
.m5a_c00088{transform:matrix(0.198032,0.004357,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198032,0.004357,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198032,0.004357,-0.005499,0.249940,0,0);}
.mc6_c00088{transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);}
.m7d_c00088{transform:matrix(0.198482,0.004367,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198482,0.004367,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198482,0.004367,-0.005499,0.249940,0,0);}
.m55_c00088{transform:matrix(0.198628,-0.011145,0.014006,0.249607,0,0);-ms-transform:matrix(0.198628,-0.011145,0.014006,0.249607,0,0);-webkit-transform:matrix(0.198628,-0.011145,0.014006,0.249607,0,0);}
.maf_c00088{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);}
.m5b_c00088{transform:matrix(0.201046,0.004423,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201046,0.004423,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201046,0.004423,-0.005499,0.249940,0,0);}
.m1c_c00088{transform:matrix(0.201210,0.002817,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201210,0.002817,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201210,0.002817,-0.003500,0.249976,0,0);}
.m87_c00088{transform:matrix(0.201561,0.004434,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201561,0.004434,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201561,0.004434,-0.005499,0.249940,0,0);}
.m2a_c00088{transform:matrix(0.203780,0.002853,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203780,0.002853,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203780,0.002853,-0.003500,0.249976,0,0);}
.m2d_c00088{transform:matrix(0.204090,0.002857,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204090,0.002857,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204090,0.002857,-0.003500,0.249976,0,0);}
.mbf_c00088{transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);}
.m62_c00088{transform:matrix(0.205280,0.004516,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205280,0.004516,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205280,0.004516,-0.005499,0.249940,0,0);}
.ma8_c00088{transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);}
.m97_c00088{transform:matrix(0.207730,0.004570,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207730,0.004570,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207730,0.004570,-0.005499,0.249940,0,0);}
.m85_c00088{transform:matrix(0.207995,0.004576,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207995,0.004576,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207995,0.004576,-0.005499,0.249940,0,0);}
.m5d_c00088{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);}
.m74_c00088{transform:matrix(0.208605,0.004589,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208605,0.004589,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208605,0.004589,-0.005499,0.249940,0,0);}
.m9_c00088{transform:matrix(0.209120,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209120,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209120,0.002928,-0.003500,0.249976,0,0);}
.m54_c00088{transform:matrix(0.209371,-0.011748,0.014006,0.249607,0,0);-ms-transform:matrix(0.209371,-0.011748,0.014006,0.249607,0,0);-webkit-transform:matrix(0.209371,-0.011748,0.014006,0.249607,0,0);}
.m8d_c00088{transform:matrix(0.209499,0.004609,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209499,0.004609,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209499,0.004609,-0.005499,0.249940,0,0);}
.mc4_c00088{transform:matrix(0.209556,0.003143,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209556,0.003143,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209556,0.003143,-0.003750,0.249972,0,0);}
.m8f_c00088{transform:matrix(0.210239,0.004625,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210239,0.004625,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210239,0.004625,-0.005499,0.249940,0,0);}
.m18_c00088{transform:matrix(0.210919,0.002953,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210919,0.002953,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210919,0.002953,-0.003500,0.249976,0,0);}
.mc0_c00088{transform:matrix(0.211936,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211936,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211936,0.003179,-0.003750,0.249972,0,0);}
.mcd_c00088{transform:matrix(0.212086,0.003181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212086,0.003181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212086,0.003181,-0.003750,0.249972,0,0);}
.m98_c00088{transform:matrix(0.212794,0.004681,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212794,0.004681,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212794,0.004681,-0.005499,0.249940,0,0);}
.mbd_c00088{transform:matrix(0.213381,0.003201,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213381,0.003201,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213381,0.003201,-0.003750,0.249972,0,0);}
.m88_c00088{transform:matrix(0.213513,0.004697,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213513,0.004697,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213513,0.004697,-0.005499,0.249940,0,0);}
.m72_c00088{transform:matrix(0.214368,0.004716,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214368,0.004716,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214368,0.004716,-0.005499,0.249940,0,0);}
.m75_c00088{transform:matrix(0.214458,0.004718,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214458,0.004718,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214458,0.004718,-0.005499,0.249940,0,0);}
.md3_c00088{transform:matrix(0.215361,0.003230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215361,0.003230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215361,0.003230,-0.003750,0.249972,0,0);}
.m70_c00088{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);}
.mb8_c00088{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);}
.m84_c00088{transform:matrix(0.217107,0.004776,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217107,0.004776,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217107,0.004776,-0.005499,0.249940,0,0);}
.m9e_c00088{transform:matrix(0.217732,0.004790,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217732,0.004790,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217732,0.004790,-0.005499,0.249940,0,0);}
.m5e_c00088{transform:matrix(0.218332,0.004803,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218332,0.004803,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218332,0.004803,-0.005499,0.249940,0,0);}
.m63_c00088{transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);}
.m2b_c00088{transform:matrix(0.219793,0.003077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219793,0.003077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219793,0.003077,-0.003500,0.249976,0,0);}
.m9b_c00088{transform:matrix(0.220452,0.004850,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220452,0.004850,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220452,0.004850,-0.005499,0.249940,0,0);}
.m79_c00088{transform:matrix(0.220532,0.004852,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220532,0.004852,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220532,0.004852,-0.005499,0.249940,0,0);}
.mce_c00088{transform:matrix(0.223600,0.003354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223600,0.003354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223600,0.003354,-0.003750,0.249972,0,0);}
.m1b_c00088{transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);}
.m64_c00088{transform:matrix(0.225231,0.004955,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225231,0.004955,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225231,0.004955,-0.005499,0.249940,0,0);}
.m10_c00088{transform:matrix(0.225328,0.003155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225328,0.003155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225328,0.003155,-0.003500,0.249976,0,0);}
.m82_c00088{transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);}
.m7c_c00088{transform:matrix(0.229939,0.005059,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229939,0.005059,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229939,0.005059,-0.005499,0.249940,0,0);}
.mbe_c00088{transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);}
.mca_c00088{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);}
.m17_c00088{transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233692,0.003272,-0.003500,0.249976,0,0);}
.m47_c00088{transform:matrix(0.235342,0.003295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235342,0.003295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235342,0.003295,-0.003500,0.249976,0,0);}
.md_c00088{transform:matrix(0.236462,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236462,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236462,0.003310,-0.003500,0.249976,0,0);}
.m3d_c00088{transform:matrix(0.239792,0.003357,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239792,0.003357,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239792,0.003357,-0.003500,0.249976,0,0);}
.mc8_c00088{transform:matrix(0.240748,0.003611,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240748,0.003611,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240748,0.003611,-0.003750,0.249972,0,0);}
.m27_c00088{transform:matrix(0.240931,0.003373,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240931,0.003373,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240931,0.003373,-0.003500,0.249976,0,0);}
.m60_c00088{transform:matrix(0.241252,0.005308,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241252,0.005308,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241252,0.005308,-0.005499,0.249940,0,0);}
.m96_c00088{transform:matrix(0.243401,0.005355,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243401,0.005355,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243401,0.005355,-0.005499,0.249940,0,0);}
.m8c_c00088{transform:matrix(0.244266,0.005374,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244266,0.005374,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244266,0.005374,-0.005499,0.249940,0,0);}
.m7a_c00088{transform:matrix(0.245596,0.005403,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245596,0.005403,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245596,0.005403,-0.005499,0.249940,0,0);}
.mc7_c00088{transform:matrix(0.246217,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246217,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246217,0.003693,-0.003750,0.249972,0,0);}
.md2_c00088{transform:matrix(0.251522,0.003773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251522,0.003773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251522,0.003773,-0.003750,0.249972,0,0);}
.m3_c00088{transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);}
.md4_c00088{transform:matrix(0.261111,0.003917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261111,0.003917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261111,0.003917,-0.003750,0.249972,0,0);}
.m61_c00088{transform:matrix(0.268470,0.005906,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268470,0.005906,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268470,0.005906,-0.005499,0.249940,0,0);}
.m5_c00088{transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);}
.mdf_c00088{transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);}
.md1_c00088{transform:matrix(0.275864,0.004138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275864,0.004138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275864,0.004138,-0.003750,0.249972,0,0);}
.mc1_c00088{transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);}
.mc3_c00088{transform:matrix(0.279284,0.004189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279284,0.004189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279284,0.004189,-0.003750,0.249972,0,0);}
.m28_c00088{transform:matrix(0.296121,0.004146,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296121,0.004146,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296121,0.004146,-0.003500,0.249976,0,0);}
.m26_c00088{transform:matrix(0.299236,0.004189,-0.003500,0.249976,0,0);-ms-transform:matrix(0.299236,0.004189,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.299236,0.004189,-0.003500,0.249976,0,0);}
.m4_c00088{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);}
.m7b_c00088{transform:matrix(0.308925,0.006796,-0.005499,0.249940,0,0);-ms-transform:matrix(0.308925,0.006796,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.308925,0.006796,-0.005499,0.249940,0,0);}
.ma3_c00088{transform:matrix(0.313154,0.010031,-0.008004,0.249872,0,0);-ms-transform:matrix(0.313154,0.010031,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.313154,0.010031,-0.008004,0.249872,0,0);}
.me0_c00088{transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319495,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.322972,0.007105,-0.005499,0.249940,0,0);-ms-transform:matrix(0.322972,0.007105,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.322972,0.007105,-0.005499,0.249940,0,0);}
.mcc_c00088{transform:matrix(0.332798,0.004992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.332798,0.004992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.332798,0.004992,-0.003750,0.249972,0,0);}
.md5_c00088{transform:matrix(0.341492,0.005122,-0.003750,0.249972,0,0);-ms-transform:matrix(0.341492,0.005122,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.341492,0.005122,-0.003750,0.249972,0,0);}
.mba_c00088{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);}
.m39_c00088{transform:matrix(0.369984,0.005180,-0.003500,0.249976,0,0);-ms-transform:matrix(0.369984,0.005180,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.369984,0.005180,-0.003500,0.249976,0,0);}
.mb0_c00088{transform:matrix(0.379106,0.009099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.379106,0.009099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.379106,0.009099,-0.005998,0.249928,0,0);}
.m1_c00088{transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.413000,0.005782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.413000,0.005782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.413000,0.005782,-0.003500,0.249976,0,0);}
.mdd_c00088{transform:matrix(0.480710,0.012979,-0.006748,0.249909,0,0);-ms-transform:matrix(0.480710,0.012979,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.480710,0.012979,-0.006748,0.249909,0,0);}
.m7_c00088{transform:matrix(0.784855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784855,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;}
._0_c00088{width:328.023046px;}
.fc0_c00088{color:transparent;}
.fs18_c00088{font-size:22.050000px;}
.fs1d_c00088{font-size:32.550000px;}
.fs1c_c00088{font-size:49.350000px;}
.fs19_c00088{font-size:50.405670px;}
.fs15_c00088{font-size:59.820816px;}
.fs17_c00088{font-size:59.867234px;}
.fs1b_c00088{font-size:60.922194px;}
.fsf_c00088{font-size:64.065498px;}
.fs16_c00088{font-size:64.068444px;}
.fs4_c00088{font-size:66.156482px;}
.fs0_c00088{font-size:67.200000px;}
.fs14_c00088{font-size:67.216260px;}
.fsd_c00088{font-size:68.220646px;}
.fs11_c00088{font-size:68.266515px;}
.fs7_c00088{font-size:69.306791px;}
.fse_c00088{font-size:69.316769px;}
.fs12_c00088{font-size:70.367023px;}
.fsa_c00088{font-size:71.406997px;}
.fs10_c00088{font-size:71.417277px;}
.fs9_c00088{font-size:72.457100px;}
.fs13_c00088{font-size:72.467531px;}
.fsc_c00088{font-size:73.500000px;}
.fs8_c00088{font-size:73.507203px;}
.fs5_c00088{font-size:74.557306px;}
.fs3_c00088{font-size:79.807820px;}
.fs1a_c00088{font-size:84.009449px;}
.fs6_c00088{font-size:89.258746px;}
.fsb_c00088{font-size:94.500000px;}
.fs1_c00088{font-size:152.250000px;}
.fs2_c00088{font-size:182.717904px;}
.y0_c00088{bottom:0.000000px;}
.yd5_c00088{bottom:75.600000px;}
.yd3_c00088{bottom:97.909945px;}
.yd2_c00088{bottom:100.177500px;}
.yd4_c00088{bottom:136.762500px;}
.ycf_c00088{bottom:137.261527px;}
.yd0_c00088{bottom:137.261550px;}
.yce_c00088{bottom:137.261992px;}
.yd1_c00088{bottom:137.262037px;}
.ycd_c00088{bottom:137.262352px;}
.ycc_c00088{bottom:137.262757px;}
.yca_c00088{bottom:137.263050px;}
.ycb_c00088{bottom:137.263335px;}
.yc9_c00088{bottom:156.993368px;}
.yc8_c00088{bottom:157.213725px;}
.yc7_c00088{bottom:157.462612px;}
.yc6_c00088{bottom:158.130045px;}
.yc5_c00088{bottom:158.309528px;}
.yc4_c00088{bottom:158.653995px;}
.yc3_c00088{bottom:158.970472px;}
.yc2_c00088{bottom:159.539932px;}
.yc1_c00088{bottom:159.701025px;}
.yc0_c00088{bottom:160.340400px;}
.ybf_c00088{bottom:160.751430px;}
.ybe_c00088{bottom:161.400270px;}
.ybd_c00088{bottom:161.533530px;}
.ybc_c00088{bottom:162.088043px;}
.ybb_c00088{bottom:162.768990px;}
.yba_c00088{bottom:163.079617px;}
.yb9_c00088{bottom:169.175850px;}
.yb8_c00088{bottom:169.855620px;}
.yb7_c00088{bottom:170.196630px;}
.yb6_c00088{bottom:170.447752px;}
.yb5_c00088{bottom:171.249675px;}
.yb4_c00088{bottom:171.553582px;}
.yb3_c00088{bottom:172.339552px;}
.yb2_c00088{bottom:172.882500px;}
.yb0_c00088{bottom:174.641304px;}
.yaf_c00088{bottom:175.569660px;}
.yae_c00088{bottom:176.235984px;}
.yad_c00088{bottom:176.898672px;}
.yac_c00088{bottom:177.602100px;}
.yab_c00088{bottom:178.860444px;}
.yaa_c00088{bottom:179.668296px;}
.ya9_c00088{bottom:180.364860px;}
.yb1_c00088{bottom:182.406000px;}
.ya8_c00088{bottom:186.221652px;}
.ya7_c00088{bottom:186.628848px;}
.ya6_c00088{bottom:187.357056px;}
.ya5_c00088{bottom:188.789496px;}
.ya4_c00088{bottom:189.143916px;}
.ya3_c00088{bottom:189.687912px;}
.ya2_c00088{bottom:191.166000px;}
.ya1_c00088{bottom:192.492072px;}
.ya0_c00088{bottom:194.162328px;}
.y9f_c00088{bottom:195.413400px;}
.y9e_c00088{bottom:196.311768px;}
.y9d_c00088{bottom:198.230232px;}
.y9c_c00088{bottom:199.269000px;}
.y9b_c00088{bottom:333.367149px;}
.y9a_c00088{bottom:334.813152px;}
.y99_c00088{bottom:335.385927px;}
.y98_c00088{bottom:337.053276px;}
.y97_c00088{bottom:337.755375px;}
.y96_c00088{bottom:338.400822px;}
.y95_c00088{bottom:339.465948px;}
.y94_c00088{bottom:340.331982px;}
.y93_c00088{bottom:340.685952px;}
.y92_c00088{bottom:356.825103px;}
.y91_c00088{bottom:358.605357px;}
.y90_c00088{bottom:359.184237px;}
.y8f_c00088{bottom:359.620749px;}
.y8e_c00088{bottom:360.487254px;}
.y8d_c00088{bottom:360.985974px;}
.y8c_c00088{bottom:361.475190px;}
.y8b_c00088{bottom:362.915115px;}
.y8a_c00088{bottom:363.107547px;}
.y89_c00088{bottom:379.982847px;}
.y88_c00088{bottom:381.469500px;}
.y87_c00088{bottom:381.934134px;}
.y86_c00088{bottom:383.820039px;}
.y85_c00088{bottom:384.491145px;}
.y84_c00088{bottom:385.570842px;}
.y83_c00088{bottom:386.335740px;}
.y82_c00088{bottom:402.717360px;}
.y81_c00088{bottom:403.237341px;}
.y80_c00088{bottom:404.565954px;}
.y7f_c00088{bottom:405.491835px;}
.y7e_c00088{bottom:406.381977px;}
.y7d_c00088{bottom:406.780518px;}
.y7c_c00088{bottom:407.256378px;}
.y7b_c00088{bottom:409.020921px;}
.y7a_c00088{bottom:423.818316px;}
.y79_c00088{bottom:424.672950px;}
.y78_c00088{bottom:426.667536px;}
.y77_c00088{bottom:428.028390px;}
.y76_c00088{bottom:429.042315px;}
.y75_c00088{bottom:429.656610px;}
.y74_c00088{bottom:430.470984px;}
.y73_c00088{bottom:431.165271px;}
.y72_c00088{bottom:446.845287px;}
.y71_c00088{bottom:447.887250px;}
.y70_c00088{bottom:448.266045px;}
.y6f_c00088{bottom:449.524989px;}
.y6e_c00088{bottom:450.655137px;}
.y6d_c00088{bottom:451.259328px;}
.y6c_c00088{bottom:452.062941px;}
.y6b_c00088{bottom:453.042726px;}
.y6a_c00088{bottom:469.321413px;}
.y69_c00088{bottom:470.756025px;}
.y68_c00088{bottom:471.486003px;}
.y67_c00088{bottom:472.537647px;}
.y66_c00088{bottom:473.336136px;}
.y65_c00088{bottom:474.540759px;}
.y64_c00088{bottom:475.065435px;}
.y63_c00088{bottom:475.459341px;}
.y62_c00088{bottom:493.354566px;}
.y61_c00088{bottom:494.077893px;}
.y60_c00088{bottom:494.780859px;}
.y5f_c00088{bottom:495.476202px;}
.y5e_c00088{bottom:496.038027px;}
.y5d_c00088{bottom:496.753533px;}
.y5c_c00088{bottom:498.160323px;}
.y5b_c00088{bottom:499.224243px;}
.y5a_c00088{bottom:517.232523px;}
.y59_c00088{bottom:517.880031px;}
.y58_c00088{bottom:518.333868px;}
.y57_c00088{bottom:519.893391px;}
.y56_c00088{bottom:520.560534px;}
.y55_c00088{bottom:522.179178px;}
.y54_c00088{bottom:536.817864px;}
.y53_c00088{bottom:537.923232px;}
.y52_c00088{bottom:538.350813px;}
.y51_c00088{bottom:539.776974px;}
.y50_c00088{bottom:540.309495px;}
.y4f_c00088{bottom:541.509606px;}
.y4e_c00088{bottom:542.397966px;}
.y4d_c00088{bottom:543.246000px;}
.y4b_c00088{bottom:577.045500px;}
.y4c_c00088{bottom:578.083740px;}
.y49_c00088{bottom:583.822500px;}
.y4a_c00088{bottom:603.856500px;}
.y48_c00088{bottom:608.332209px;}
.y47_c00088{bottom:609.105693px;}
.y46_c00088{bottom:609.938070px;}
.y45_c00088{bottom:610.992897px;}
.y44_c00088{bottom:626.774844px;}
.y43_c00088{bottom:627.472326px;}
.y42_c00088{bottom:628.714020px;}
.y41_c00088{bottom:629.185176px;}
.y40_c00088{bottom:630.336957px;}
.y3f_c00088{bottom:631.210245px;}
.y3e_c00088{bottom:631.674789px;}
.y3d_c00088{bottom:632.417595px;}
.y3c_c00088{bottom:632.864652px;}
.y3b_c00088{bottom:649.470546px;}
.y3a_c00088{bottom:651.415224px;}
.y39_c00088{bottom:651.848964px;}
.y38_c00088{bottom:652.658229px;}
.y37_c00088{bottom:653.094846px;}
.y36_c00088{bottom:653.900196px;}
.y35_c00088{bottom:654.736554px;}
.y34_c00088{bottom:655.136211px;}
.y33_c00088{bottom:656.087625px;}
.y32_c00088{bottom:673.898898px;}
.y31_c00088{bottom:696.310677px;}
.y30_c00088{bottom:697.073703px;}
.y2f_c00088{bottom:697.669389px;}
.y2e_c00088{bottom:698.518899px;}
.y2d_c00088{bottom:699.133335px;}
.y2c_c00088{bottom:699.753114px;}
.y2b_c00088{bottom:700.179864px;}
.y2a_c00088{bottom:700.638927px;}
.y29_c00088{bottom:719.728287px;}
.y28_c00088{bottom:720.333183px;}
.y27_c00088{bottom:721.045770px;}
.y26_c00088{bottom:721.447788px;}
.y25_c00088{bottom:721.916802px;}
.y24_c00088{bottom:723.056448px;}
.y23_c00088{bottom:723.863046px;}
.y20_c00088{bottom:743.138643px;}
.y21_c00088{bottom:743.139186px;}
.y22_c00088{bottom:743.139588px;}
.y1f_c00088{bottom:765.141342px;}
.y1e_c00088{bottom:765.779754px;}
.y1d_c00088{bottom:766.243521px;}
.y1c_c00088{bottom:766.840125px;}
.y1b_c00088{bottom:767.529891px;}
.y1a_c00088{bottom:768.050736px;}
.y19_c00088{bottom:768.378579px;}
.y18_c00088{bottom:768.687477px;}
.y13_c00088{bottom:789.194454px;}
.y17_c00088{bottom:789.194904px;}
.y12_c00088{bottom:789.195030px;}
.y11_c00088{bottom:789.195042px;}
.y14_c00088{bottom:789.195135px;}
.y16_c00088{bottom:789.195159px;}
.y15_c00088{bottom:789.195696px;}
.y10_c00088{bottom:809.139759px;}
.yf_c00088{bottom:809.627484px;}
.ye_c00088{bottom:810.115167px;}
.yd_c00088{bottom:810.693654px;}
.yc_c00088{bottom:811.124532px;}
.yb_c00088{bottom:812.028015px;}
.ya_c00088{bottom:812.353116px;}
.y9_c00088{bottom:812.897709px;}
.y8_c00088{bottom:813.711186px;}
.y7_c00088{bottom:814.323000px;}
.y6_c00088{bottom:847.885104px;}
.y5_c00088{bottom:849.121668px;}
.y4_c00088{bottom:850.305060px;}
.y3_c00088{bottom:853.206000px;}
.y2_c00088{bottom:896.878500px;}
.y1_c00088{bottom:916.681500px;}
.h1a_c00088{height:22.050000px;}
.h1f_c00088{height:32.550000px;}
.h1e_c00088{height:49.350000px;}
.h1b_c00088{height:50.405670px;}
.h17_c00088{height:59.820816px;}
.h19_c00088{height:59.867234px;}
.h1d_c00088{height:60.922194px;}
.h11_c00088{height:64.065498px;}
.h18_c00088{height:64.068444px;}
.h6_c00088{height:66.156482px;}
.h2_c00088{height:67.200000px;}
.h16_c00088{height:67.216260px;}
.hf_c00088{height:68.220646px;}
.h13_c00088{height:68.266515px;}
.h9_c00088{height:69.306791px;}
.h10_c00088{height:69.316769px;}
.h14_c00088{height:70.367023px;}
.hc_c00088{height:71.406997px;}
.h12_c00088{height:71.417277px;}
.hb_c00088{height:72.457100px;}
.h15_c00088{height:72.467531px;}
.he_c00088{height:73.500000px;}
.ha_c00088{height:73.507203px;}
.h7_c00088{height:74.557306px;}
.h5_c00088{height:79.807820px;}
.h1c_c00088{height:84.009449px;}
.h8_c00088{height:89.258746px;}
.hd_c00088{height:94.500000px;}
.h3_c00088{height:152.250000px;}
.h4_c00088{height:182.717904px;}
.h1_c00088{height:1005.000000px;}
.h0_c00088{height:1005.150000px;}
.w0_c00088{width:705.450000px;}
.w1_c00088{width:705.750000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:57.780000px;}
.x84_c00088{left:63.688088px;}
.x7e_c00088{left:65.571173px;}
.x7_c00088{left:71.550000px;}
.x6a_c00088{left:88.266000px;}
.x7f_c00088{left:89.480393px;}
.x8_c00088{left:112.590000px;}
.x32_c00088{left:115.219551px;}
.x4c_c00088{left:119.352852px;}
.x6b_c00088{left:120.695038px;}
.x42_c00088{left:124.740000px;}
.xe_c00088{left:125.874000px;}
.x3e_c00088{left:127.142685px;}
.x18_c00088{left:128.519796px;}
.x85_c00088{left:141.186525px;}
.x6f_c00088{left:142.219584px;}
.x43_c00088{left:144.990000px;}
.x39_c00088{left:149.289912px;}
.x1f_c00088{left:154.337982px;}
.x62_c00088{left:156.404847px;}
.x5b_c00088{left:158.182032px;}
.x69_c00088{left:159.319440px;}
.x86_c00088{left:160.629390px;}
.x33_c00088{left:162.816561px;}
.xa_c00088{left:164.805000px;}
.x47_c00088{left:165.966000px;}
.xf_c00088{left:169.575000px;}
.x56_c00088{left:170.894748px;}
.x3f_c00088{left:173.017410px;}
.x4f_c00088{left:175.004115px;}
.x2c_c00088{left:179.879919px;}
.x20_c00088{left:181.613238px;}
.x34_c00088{left:182.790381px;}
.x3a_c00088{left:184.665447px;}
.x70_c00088{left:187.146264px;}
.x5c_c00088{left:195.199032px;}
.x4d_c00088{left:196.406535px;}
.x63_c00088{left:199.615509px;}
.x3b_c00088{left:206.809284px;}
.x40_c00088{left:209.218353px;}
.x71_c00088{left:212.265852px;}
.x2d_c00088{left:216.326886px;}
.x67_c00088{left:219.638832px;}
.x8a_c00088{left:222.202500px;}
.x2_c00088{left:223.290000px;}
.x21_c00088{left:225.031956px;}
.x64_c00088{left:226.436727px;}
.x10_c00088{left:227.680500px;}
.x72_c00088{left:235.938084px;}
.x50_c00088{left:238.949115px;}
.x87_c00088{left:241.098480px;}
.x41_c00088{left:242.820111px;}
.x19_c00088{left:244.900602px;}
.x58_c00088{left:246.206952px;}
.x3c_c00088{left:248.397210px;}
.x2e_c00088{left:252.499374px;}
.x28_c00088{left:258.013461px;}
.x73_c00088{left:259.761816px;}
.x48_c00088{left:260.896500px;}
.x35_c00088{left:264.905493px;}
.x11_c00088{left:266.580000px;}
.x44_c00088{left:267.840000px;}
.x5d_c00088{left:269.209032px;}
.x51_c00088{left:271.472115px;}
.x25_c00088{left:275.682471px;}
.x3_c00088{left:281.880000px;}
.x49_c00088{left:285.102000px;}
.x36_c00088{left:286.769166px;}
.x12_c00088{left:289.801500px;}
.x74_c00088{left:292.940148px;}
.x52_c00088{left:297.009615px;}
.x6c_c00088{left:299.833221px;}
.x2f_c00088{left:302.462274px;}
.x68_c00088{left:305.424213px;}
.x1a_c00088{left:311.597664px;}
.x29_c00088{left:316.050642px;}
.x26_c00088{left:318.616392px;}
.x65_c00088{left:320.455023px;}
.x4e_c00088{left:324.045840px;}
.x1b_c00088{left:325.908978px;}
.x37_c00088{left:327.213264px;}
.x53_c00088{left:328.616115px;}
.x5e_c00088{left:331.066032px;}
.x22_c00088{left:332.239959px;}
.x4_c00088{left:334.530000px;}
.x88_c00088{left:336.149355px;}
.x30_c00088{left:337.509804px;}
.x27_c00088{left:342.378054px;}
.x1c_c00088{left:348.051825px;}
.x4a_c00088{left:349.927500px;}
.x57_c00088{left:351.045675px;}
.x13_c00088{left:354.336000px;}
.x54_c00088{left:360.569115px;}
.x2a_c00088{left:363.520470px;}
.x59_c00088{left:365.648199px;}
.x4b_c00088{left:369.363000px;}
.x23_c00088{left:370.831530px;}
.xb_c00088{left:372.015000px;}
.x79_c00088{left:374.350500px;}
.x66_c00088{left:379.912596px;}
.x31_c00088{left:382.366914px;}
.x14_c00088{left:385.113000px;}
.x1d_c00088{left:387.204990px;}
.x60_c00088{left:388.951320px;}
.x55_c00088{left:393.447615px;}
.x6d_c00088{left:399.670500px;}
.x2b_c00088{left:403.833903px;}
.x80_c00088{left:406.022888px;}
.x5_c00088{left:410.130000px;}
.x61_c00088{left:412.586820px;}
.x3d_c00088{left:417.960078px;}
.x45_c00088{left:419.494500px;}
.x5f_c00088{left:421.729032px;}
.x24_c00088{left:424.041021px;}
.x15_c00088{left:426.433500px;}
.x81_c00088{left:432.488175px;}
.x5a_c00088{left:436.640301px;}
.x46_c00088{left:437.997420px;}
.x75_c00088{left:439.560000px;}
.x38_c00088{left:446.090268px;}
.xc_c00088{left:456.543000px;}
.x16_c00088{left:461.268000px;}
.x1e_c00088{left:464.702673px;}
.x6_c00088{left:477.630000px;}
.x9_c00088{left:487.890000px;}
.x17_c00088{left:496.105500px;}
.x82_c00088{left:497.551110px;}
.x7a_c00088{left:500.470500px;}
.x76_c00088{left:502.200000px;}
.x7b_c00088{left:517.212000px;}
.x6e_c00088{left:527.131500px;}
.x89_c00088{left:532.461023px;}
.x83_c00088{left:533.735212px;}
.x7c_c00088{left:539.946000px;}
.xd_c00088{left:544.869000px;}
.x77_c00088{left:558.900000px;}
.x7d_c00088{left:585.264000px;}
.x78_c00088{left:602.370000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
._0_c00088{width:291.576041pt;}
.fs18_c00088{font-size:19.600000pt;}
.fs1d_c00088{font-size:28.933333pt;}
.fs1c_c00088{font-size:43.866667pt;}
.fs19_c00088{font-size:44.805040pt;}
.fs15_c00088{font-size:53.174059pt;}
.fs17_c00088{font-size:53.215319pt;}
.fs1b_c00088{font-size:54.153061pt;}
.fsf_c00088{font-size:56.947110pt;}
.fs16_c00088{font-size:56.949728pt;}
.fs4_c00088{font-size:58.805762pt;}
.fs0_c00088{font-size:59.733333pt;}
.fs14_c00088{font-size:59.747787pt;}
.fsd_c00088{font-size:60.640574pt;}
.fs11_c00088{font-size:60.681346pt;}
.fs7_c00088{font-size:61.606037pt;}
.fse_c00088{font-size:61.614905pt;}
.fs12_c00088{font-size:62.548465pt;}
.fsa_c00088{font-size:63.472886pt;}
.fs10_c00088{font-size:63.482024pt;}
.fs9_c00088{font-size:64.406311pt;}
.fs13_c00088{font-size:64.415583pt;}
.fsc_c00088{font-size:65.333333pt;}
.fs8_c00088{font-size:65.339736pt;}
.fs5_c00088{font-size:66.273160pt;}
.fs3_c00088{font-size:70.940284pt;}
.fs1a_c00088{font-size:74.675066pt;}
.fs6_c00088{font-size:79.341108pt;}
.fsb_c00088{font-size:84.000000pt;}
.fs1_c00088{font-size:135.333333pt;}
.fs2_c00088{font-size:162.415914pt;}
.y0_c00088{bottom:0.000000pt;}
.yd5_c00088{bottom:67.200000pt;}
.yd3_c00088{bottom:87.031063pt;}
.yd2_c00088{bottom:89.046667pt;}
.yd4_c00088{bottom:121.566667pt;}
.ycf_c00088{bottom:122.010247pt;}
.yd0_c00088{bottom:122.010267pt;}
.yce_c00088{bottom:122.010660pt;}
.yd1_c00088{bottom:122.010700pt;}
.ycd_c00088{bottom:122.010980pt;}
.ycc_c00088{bottom:122.011340pt;}
.yca_c00088{bottom:122.011600pt;}
.ycb_c00088{bottom:122.011853pt;}
.yc9_c00088{bottom:139.549660pt;}
.yc8_c00088{bottom:139.745533pt;}
.yc7_c00088{bottom:139.966767pt;}
.yc6_c00088{bottom:140.560040pt;}
.yc5_c00088{bottom:140.719580pt;}
.yc4_c00088{bottom:141.025773pt;}
.yc3_c00088{bottom:141.307087pt;}
.yc2_c00088{bottom:141.813273pt;}
.yc1_c00088{bottom:141.956467pt;}
.yc0_c00088{bottom:142.524800pt;}
.ybf_c00088{bottom:142.890160pt;}
.ybe_c00088{bottom:143.466907pt;}
.ybd_c00088{bottom:143.585360pt;}
.ybc_c00088{bottom:144.078260pt;}
.ybb_c00088{bottom:144.683547pt;}
.yba_c00088{bottom:144.959660pt;}
.yb9_c00088{bottom:150.378533pt;}
.yb8_c00088{bottom:150.982773pt;}
.yb7_c00088{bottom:151.285893pt;}
.yb6_c00088{bottom:151.509113pt;}
.yb5_c00088{bottom:152.221933pt;}
.yb4_c00088{bottom:152.492073pt;}
.yb3_c00088{bottom:153.190713pt;}
.yb2_c00088{bottom:153.673333pt;}
.yb0_c00088{bottom:155.236715pt;}
.yaf_c00088{bottom:156.061920pt;}
.yae_c00088{bottom:156.654208pt;}
.yad_c00088{bottom:157.243264pt;}
.yac_c00088{bottom:157.868533pt;}
.yab_c00088{bottom:158.987061pt;}
.yaa_c00088{bottom:159.705152pt;}
.ya9_c00088{bottom:160.324320pt;}
.yb1_c00088{bottom:162.138667pt;}
.ya8_c00088{bottom:165.530357pt;}
.ya7_c00088{bottom:165.892309pt;}
.ya6_c00088{bottom:166.539605pt;}
.ya5_c00088{bottom:167.812885pt;}
.ya4_c00088{bottom:168.127925pt;}
.ya3_c00088{bottom:168.611477pt;}
.ya2_c00088{bottom:169.925333pt;}
.ya1_c00088{bottom:171.104064pt;}
.ya0_c00088{bottom:172.588736pt;}
.y9f_c00088{bottom:173.700800pt;}
.y9e_c00088{bottom:174.499349pt;}
.y9d_c00088{bottom:176.204651pt;}
.y9c_c00088{bottom:177.128000pt;}
.y9b_c00088{bottom:296.326355pt;}
.y9a_c00088{bottom:297.611691pt;}
.y99_c00088{bottom:298.120824pt;}
.y98_c00088{bottom:299.602912pt;}
.y97_c00088{bottom:300.227000pt;}
.y96_c00088{bottom:300.800731pt;}
.y95_c00088{bottom:301.747509pt;}
.y94_c00088{bottom:302.517317pt;}
.y93_c00088{bottom:302.831957pt;}
.y92_c00088{bottom:317.177869pt;}
.y91_c00088{bottom:318.760317pt;}
.y90_c00088{bottom:319.274877pt;}
.y8f_c00088{bottom:319.662888pt;}
.y8e_c00088{bottom:320.433115pt;}
.y8d_c00088{bottom:320.876421pt;}
.y8c_c00088{bottom:321.311280pt;}
.y8b_c00088{bottom:322.591213pt;}
.y8a_c00088{bottom:322.762264pt;}
.y89_c00088{bottom:337.762531pt;}
.y88_c00088{bottom:339.084000pt;}
.y87_c00088{bottom:339.497008pt;}
.y86_c00088{bottom:341.173368pt;}
.y85_c00088{bottom:341.769907pt;}
.y84_c00088{bottom:342.729637pt;}
.y83_c00088{bottom:343.409547pt;}
.y82_c00088{bottom:357.970987pt;}
.y81_c00088{bottom:358.433192pt;}
.y80_c00088{bottom:359.614181pt;}
.y7f_c00088{bottom:360.437187pt;}
.y7e_c00088{bottom:361.228424pt;}
.y7d_c00088{bottom:361.582683pt;}
.y7c_c00088{bottom:362.005669pt;}
.y7b_c00088{bottom:363.574152pt;}
.y7a_c00088{bottom:376.727392pt;}
.y79_c00088{bottom:377.487067pt;}
.y78_c00088{bottom:379.260032pt;}
.y77_c00088{bottom:380.469680pt;}
.y76_c00088{bottom:381.370947pt;}
.y75_c00088{bottom:381.916987pt;}
.y74_c00088{bottom:382.640875pt;}
.y73_c00088{bottom:383.258019pt;}
.y72_c00088{bottom:397.195811pt;}
.y71_c00088{bottom:398.122000pt;}
.y70_c00088{bottom:398.458707pt;}
.y6f_c00088{bottom:399.577768pt;}
.y6e_c00088{bottom:400.582344pt;}
.y6d_c00088{bottom:401.119403pt;}
.y6c_c00088{bottom:401.833725pt;}
.y6b_c00088{bottom:402.704645pt;}
.y6a_c00088{bottom:417.174589pt;}
.y69_c00088{bottom:418.449800pt;}
.y68_c00088{bottom:419.098669pt;}
.y67_c00088{bottom:420.033464pt;}
.y66_c00088{bottom:420.743232pt;}
.y65_c00088{bottom:421.814008pt;}
.y64_c00088{bottom:422.280387pt;}
.y63_c00088{bottom:422.630525pt;}
.y62_c00088{bottom:438.537392pt;}
.y61_c00088{bottom:439.180349pt;}
.y60_c00088{bottom:439.805208pt;}
.y5f_c00088{bottom:440.423291pt;}
.y5e_c00088{bottom:440.922691pt;}
.y5d_c00088{bottom:441.558696pt;}
.y5c_c00088{bottom:442.809176pt;}
.y5b_c00088{bottom:443.754883pt;}
.y5a_c00088{bottom:459.762243pt;}
.y59_c00088{bottom:460.337805pt;}
.y58_c00088{bottom:460.741216pt;}
.y57_c00088{bottom:462.127459pt;}
.y56_c00088{bottom:462.720475pt;}
.y55_c00088{bottom:464.159269pt;}
.y54_c00088{bottom:477.171435pt;}
.y53_c00088{bottom:478.153984pt;}
.y52_c00088{bottom:478.534056pt;}
.y51_c00088{bottom:479.801755pt;}
.y50_c00088{bottom:480.275107pt;}
.y4f_c00088{bottom:481.341872pt;}
.y4e_c00088{bottom:482.131525pt;}
.y4d_c00088{bottom:482.885333pt;}
.y4b_c00088{bottom:512.929333pt;}
.y4c_c00088{bottom:513.852213pt;}
.y49_c00088{bottom:518.953333pt;}
.y4a_c00088{bottom:536.761333pt;}
.y48_c00088{bottom:540.739741pt;}
.y47_c00088{bottom:541.427283pt;}
.y46_c00088{bottom:542.167173pt;}
.y45_c00088{bottom:543.104797pt;}
.y44_c00088{bottom:557.133195pt;}
.y43_c00088{bottom:557.753179pt;}
.y42_c00088{bottom:558.856907pt;}
.y41_c00088{bottom:559.275712pt;}
.y40_c00088{bottom:560.299517pt;}
.y3f_c00088{bottom:561.075773pt;}
.y3e_c00088{bottom:561.488701pt;}
.y3d_c00088{bottom:562.148973pt;}
.y3c_c00088{bottom:562.546357pt;}
.y3b_c00088{bottom:577.307152pt;}
.y3a_c00088{bottom:579.035755pt;}
.y39_c00088{bottom:579.421301pt;}
.y38_c00088{bottom:580.140648pt;}
.y37_c00088{bottom:580.528752pt;}
.y36_c00088{bottom:581.244619pt;}
.y35_c00088{bottom:581.988048pt;}
.y34_c00088{bottom:582.343299pt;}
.y33_c00088{bottom:583.189000pt;}
.y32_c00088{bottom:599.021243pt;}
.y31_c00088{bottom:618.942824pt;}
.y30_c00088{bottom:619.621069pt;}
.y2f_c00088{bottom:620.150568pt;}
.y2e_c00088{bottom:620.905688pt;}
.y2d_c00088{bottom:621.451853pt;}
.y2c_c00088{bottom:622.002768pt;}
.y2b_c00088{bottom:622.382101pt;}
.y2a_c00088{bottom:622.790157pt;}
.y29_c00088{bottom:639.758477pt;}
.y28_c00088{bottom:640.296163pt;}
.y27_c00088{bottom:640.929573pt;}
.y26_c00088{bottom:641.286923pt;}
.y25_c00088{bottom:641.703824pt;}
.y24_c00088{bottom:642.716843pt;}
.y23_c00088{bottom:643.433819pt;}
.y20_c00088{bottom:660.567683pt;}
.y21_c00088{bottom:660.568165pt;}
.y22_c00088{bottom:660.568523pt;}
.y1f_c00088{bottom:680.125637pt;}
.y1e_c00088{bottom:680.693115pt;}
.y1d_c00088{bottom:681.105352pt;}
.y1c_c00088{bottom:681.635667pt;}
.y1b_c00088{bottom:682.248792pt;}
.y1a_c00088{bottom:682.711765pt;}
.y19_c00088{bottom:683.003181pt;}
.y18_c00088{bottom:683.277757pt;}
.y13_c00088{bottom:701.506181pt;}
.y17_c00088{bottom:701.506581pt;}
.y12_c00088{bottom:701.506693pt;}
.y11_c00088{bottom:701.506704pt;}
.y14_c00088{bottom:701.506787pt;}
.y16_c00088{bottom:701.506808pt;}
.y15_c00088{bottom:701.507285pt;}
.y10_c00088{bottom:719.235341pt;}
.yf_c00088{bottom:719.668875pt;}
.ye_c00088{bottom:720.102371pt;}
.yd_c00088{bottom:720.616581pt;}
.yc_c00088{bottom:720.999584pt;}
.yb_c00088{bottom:721.802680pt;}
.ya_c00088{bottom:722.091659pt;}
.y9_c00088{bottom:722.575741pt;}
.y8_c00088{bottom:723.298832pt;}
.y7_c00088{bottom:723.842667pt;}
.y6_c00088{bottom:753.675648pt;}
.y5_c00088{bottom:754.774816pt;}
.y4_c00088{bottom:755.826720pt;}
.y3_c00088{bottom:758.405333pt;}
.y2_c00088{bottom:797.225333pt;}
.y1_c00088{bottom:814.828000pt;}
.h1a_c00088{height:19.600000pt;}
.h1f_c00088{height:28.933333pt;}
.h1e_c00088{height:43.866667pt;}
.h1b_c00088{height:44.805040pt;}
.h17_c00088{height:53.174059pt;}
.h19_c00088{height:53.215319pt;}
.h1d_c00088{height:54.153061pt;}
.h11_c00088{height:56.947110pt;}
.h18_c00088{height:56.949728pt;}
.h6_c00088{height:58.805762pt;}
.h2_c00088{height:59.733333pt;}
.h16_c00088{height:59.747787pt;}
.hf_c00088{height:60.640574pt;}
.h13_c00088{height:60.681346pt;}
.h9_c00088{height:61.606037pt;}
.h10_c00088{height:61.614905pt;}
.h14_c00088{height:62.548465pt;}
.hc_c00088{height:63.472886pt;}
.h12_c00088{height:63.482024pt;}
.hb_c00088{height:64.406311pt;}
.h15_c00088{height:64.415583pt;}
.he_c00088{height:65.333333pt;}
.ha_c00088{height:65.339736pt;}
.h7_c00088{height:66.273160pt;}
.h5_c00088{height:70.940284pt;}
.h1c_c00088{height:74.675066pt;}
.h8_c00088{height:79.341108pt;}
.hd_c00088{height:84.000000pt;}
.h3_c00088{height:135.333333pt;}
.h4_c00088{height:162.415914pt;}
.h1_c00088{height:893.333333pt;}
.h0_c00088{height:893.466667pt;}
.w0_c00088{width:627.066667pt;}
.w1_c00088{width:627.333333pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:51.360000pt;}
.x84_c00088{left:56.611633pt;}
.x7e_c00088{left:58.285487pt;}
.x7_c00088{left:63.600000pt;}
.x6a_c00088{left:78.458667pt;}
.x7f_c00088{left:79.538127pt;}
.x8_c00088{left:100.080000pt;}
.x32_c00088{left:102.417379pt;}
.x4c_c00088{left:106.091424pt;}
.x6b_c00088{left:107.284479pt;}
.x42_c00088{left:110.880000pt;}
.xe_c00088{left:111.888000pt;}
.x3e_c00088{left:113.015720pt;}
.x18_c00088{left:114.239819pt;}
.x85_c00088{left:125.499133pt;}
.x6f_c00088{left:126.417408pt;}
.x43_c00088{left:128.880000pt;}
.x39_c00088{left:132.702144pt;}
.x1f_c00088{left:137.189317pt;}
.x62_c00088{left:139.026531pt;}
.x5b_c00088{left:140.606251pt;}
.x69_c00088{left:141.617280pt;}
.x86_c00088{left:142.781680pt;}
.x33_c00088{left:144.725832pt;}
.xa_c00088{left:146.493333pt;}
.x47_c00088{left:147.525333pt;}
.xf_c00088{left:150.733333pt;}
.x56_c00088{left:151.906443pt;}
.x3f_c00088{left:153.793253pt;}
.x4f_c00088{left:155.559213pt;}
.x2c_c00088{left:159.893261pt;}
.x20_c00088{left:161.433989pt;}
.x34_c00088{left:162.480339pt;}
.x3a_c00088{left:164.147064pt;}
.x70_c00088{left:166.352235pt;}
.x5c_c00088{left:173.510251pt;}
.x4d_c00088{left:174.583587pt;}
.x63_c00088{left:177.436008pt;}
.x3b_c00088{left:183.830475pt;}
.x40_c00088{left:185.971869pt;}
.x71_c00088{left:188.680757pt;}
.x2d_c00088{left:192.290565pt;}
.x67_c00088{left:195.234517pt;}
.x8a_c00088{left:197.513333pt;}
.x2_c00088{left:198.480000pt;}
.x21_c00088{left:200.028405pt;}
.x64_c00088{left:201.277091pt;}
.x10_c00088{left:202.382667pt;}
.x72_c00088{left:209.722741pt;}
.x50_c00088{left:212.399213pt;}
.x87_c00088{left:214.309760pt;}
.x41_c00088{left:215.840099pt;}
.x19_c00088{left:217.689424pt;}
.x58_c00088{left:218.850624pt;}
.x3c_c00088{left:220.797520pt;}
.x2e_c00088{left:224.443888pt;}
.x28_c00088{left:229.345299pt;}
.x73_c00088{left:230.899392pt;}
.x48_c00088{left:231.908000pt;}
.x35_c00088{left:235.471549pt;}
.x11_c00088{left:236.960000pt;}
.x44_c00088{left:238.080000pt;}
.x5d_c00088{left:239.296917pt;}
.x51_c00088{left:241.308547pt;}
.x25_c00088{left:245.051085pt;}
.x3_c00088{left:250.560000pt;}
.x49_c00088{left:253.424000pt;}
.x36_c00088{left:254.905925pt;}
.x12_c00088{left:257.601333pt;}
.x74_c00088{left:260.391243pt;}
.x52_c00088{left:264.008547pt;}
.x6c_c00088{left:266.518419pt;}
.x2f_c00088{left:268.855355pt;}
.x68_c00088{left:271.488189pt;}
.x1a_c00088{left:276.975701pt;}
.x29_c00088{left:280.933904pt;}
.x26_c00088{left:283.214571pt;}
.x65_c00088{left:284.848909pt;}
.x4e_c00088{left:288.040747pt;}
.x1b_c00088{left:289.696869pt;}
.x37_c00088{left:290.856235pt;}
.x53_c00088{left:292.103213pt;}
.x5e_c00088{left:294.280917pt;}
.x22_c00088{left:295.324408pt;}
.x4_c00088{left:297.360000pt;}
.x88_c00088{left:298.799427pt;}
.x30_c00088{left:300.008715pt;}
.x27_c00088{left:304.336048pt;}
.x1c_c00088{left:309.379400pt;}
.x4a_c00088{left:311.046667pt;}
.x57_c00088{left:312.040600pt;}
.x13_c00088{left:314.965333pt;}
.x54_c00088{left:320.505880pt;}
.x2a_c00088{left:323.129307pt;}
.x59_c00088{left:325.020621pt;}
.x4b_c00088{left:328.322667pt;}
.x23_c00088{left:329.628027pt;}
.xb_c00088{left:330.680000pt;}
.x79_c00088{left:332.756000pt;}
.x66_c00088{left:337.700085pt;}
.x31_c00088{left:339.881701pt;}
.x14_c00088{left:342.322667pt;}
.x1d_c00088{left:344.182213pt;}
.x60_c00088{left:345.734507pt;}
.x55_c00088{left:349.731213pt;}
.x6d_c00088{left:355.262667pt;}
.x2b_c00088{left:358.963469pt;}
.x80_c00088{left:360.909233pt;}
.x5_c00088{left:364.560000pt;}
.x61_c00088{left:366.743840pt;}
.x3d_c00088{left:371.520069pt;}
.x45_c00088{left:372.884000pt;}
.x5f_c00088{left:374.870251pt;}
.x24_c00088{left:376.925352pt;}
.x15_c00088{left:379.052000pt;}
.x81_c00088{left:384.433933pt;}
.x5a_c00088{left:388.124712pt;}
.x46_c00088{left:389.331040pt;}
.x75_c00088{left:390.720000pt;}
.x38_c00088{left:396.524683pt;}
.xc_c00088{left:405.816000pt;}
.x16_c00088{left:410.016000pt;}
.x1e_c00088{left:413.069043pt;}
.x6_c00088{left:424.560000pt;}
.x9_c00088{left:433.680000pt;}
.x17_c00088{left:440.982667pt;}
.x82_c00088{left:442.267653pt;}
.x7a_c00088{left:444.862667pt;}
.x76_c00088{left:446.400000pt;}
.x7b_c00088{left:459.744000pt;}
.x6e_c00088{left:468.561333pt;}
.x89_c00088{left:473.298687pt;}
.x83_c00088{left:474.431300pt;}
.x7c_c00088{left:479.952000pt;}
.xd_c00088{left:484.328000pt;}
.x77_c00088{left:496.800000pt;}
.x7d_c00088{left:520.234667pt;}
.x78_c00088{left:535.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_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;}
.m93_c00089{transform:matrix(0.010236,-0.000420,0.010252,0.249790,0,0);-ms-transform:matrix(0.010236,-0.000420,0.010252,0.249790,0,0);-webkit-transform:matrix(0.010236,-0.000420,0.010252,0.249790,0,0);}
.m26_c00089{transform:matrix(0.011605,-0.000476,0.010252,0.249790,0,0);-ms-transform:matrix(0.011605,-0.000476,0.010252,0.249790,0,0);-webkit-transform:matrix(0.011605,-0.000476,0.010252,0.249790,0,0);}
.m2d_c00089{transform:matrix(0.015137,-0.000621,0.010252,0.249790,0,0);-ms-transform:matrix(0.015137,-0.000621,0.010252,0.249790,0,0);-webkit-transform:matrix(0.015137,-0.000621,0.010252,0.249790,0,0);}
.mf_c00089{transform:matrix(0.051148,-0.002714,0.013245,0.249649,0,0);-ms-transform:matrix(0.051148,-0.002714,0.013245,0.249649,0,0);-webkit-transform:matrix(0.051148,-0.002714,0.013245,0.249649,0,0);}
.m2c_c00089{transform:matrix(0.077934,-0.003199,0.010252,0.249790,0,0);-ms-transform:matrix(0.077934,-0.003199,0.010252,0.249790,0,0);-webkit-transform:matrix(0.077934,-0.003199,0.010252,0.249790,0,0);}
.m25_c00089{transform:matrix(0.092637,-0.003802,0.010252,0.249790,0,0);-ms-transform:matrix(0.092637,-0.003802,0.010252,0.249790,0,0);-webkit-transform:matrix(0.092637,-0.003802,0.010252,0.249790,0,0);}
.m2_c00089{transform:matrix(0.093123,-0.003915,0.010501,0.249779,0,0);-ms-transform:matrix(0.093123,-0.003915,0.010501,0.249779,0,0);-webkit-transform:matrix(0.093123,-0.003915,0.010501,0.249779,0,0);}
.m15_c00089{transform:matrix(0.093232,-0.003826,0.010252,0.249790,0,0);-ms-transform:matrix(0.093232,-0.003826,0.010252,0.249790,0,0);-webkit-transform:matrix(0.093232,-0.003826,0.010252,0.249790,0,0);}
.m89_c00089{transform:matrix(0.106256,-0.004361,0.010252,0.249790,0,0);-ms-transform:matrix(0.106256,-0.004361,0.010252,0.249790,0,0);-webkit-transform:matrix(0.106256,-0.004361,0.010252,0.249790,0,0);}
.m4_c00089{transform:matrix(0.126303,-0.005310,0.010501,0.249779,0,0);-ms-transform:matrix(0.126303,-0.005310,0.010501,0.249779,0,0);-webkit-transform:matrix(0.126303,-0.005310,0.010501,0.249779,0,0);}
.mf6_c00089{transform:matrix(0.128867,-0.004773,0.009253,0.249829,0,0);-ms-transform:matrix(0.128867,-0.004773,0.009253,0.249829,0,0);-webkit-transform:matrix(0.128867,-0.004773,0.009253,0.249829,0,0);}
.m10d_c00089{transform:matrix(0.133791,-0.002542,0.004749,0.249955,0,0);-ms-transform:matrix(0.133791,-0.002542,0.004749,0.249955,0,0);-webkit-transform:matrix(0.133791,-0.002542,0.004749,0.249955,0,0);}
.m94_c00089{transform:matrix(0.134332,-0.005513,0.010252,0.249790,0,0);-ms-transform:matrix(0.134332,-0.005513,0.010252,0.249790,0,0);-webkit-transform:matrix(0.134332,-0.005513,0.010252,0.249790,0,0);}
.m5d_c00089{transform:matrix(0.144443,-0.005928,0.010252,0.249790,0,0);-ms-transform:matrix(0.144443,-0.005928,0.010252,0.249790,0,0);-webkit-transform:matrix(0.144443,-0.005928,0.010252,0.249790,0,0);}
.md1_c00089{transform:matrix(0.144976,-0.005369,0.009253,0.249829,0,0);-ms-transform:matrix(0.144976,-0.005369,0.009253,0.249829,0,0);-webkit-transform:matrix(0.144976,-0.005369,0.009253,0.249829,0,0);}
.m10f_c00089{transform:matrix(0.146094,-0.002776,0.004749,0.249955,0,0);-ms-transform:matrix(0.146094,-0.002776,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146094,-0.002776,0.004749,0.249955,0,0);}
.m104_c00089{transform:matrix(0.147023,-0.002793,0.004749,0.249955,0,0);-ms-transform:matrix(0.147023,-0.002793,0.004749,0.249955,0,0);-webkit-transform:matrix(0.147023,-0.002793,0.004749,0.249955,0,0);}
.m96_c00089{transform:matrix(0.148254,-0.003262,0.005499,0.249940,0,0);-ms-transform:matrix(0.148254,-0.003262,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148254,-0.003262,0.005499,0.249940,0,0);}
.m85_c00089{transform:matrix(0.148835,-0.006108,0.010252,0.249790,0,0);-ms-transform:matrix(0.148835,-0.006108,0.010252,0.249790,0,0);-webkit-transform:matrix(0.148835,-0.006108,0.010252,0.249790,0,0);}
.m71_c00089{transform:matrix(0.149889,-0.006152,0.010252,0.249790,0,0);-ms-transform:matrix(0.149889,-0.006152,0.010252,0.249790,0,0);-webkit-transform:matrix(0.149889,-0.006152,0.010252,0.249790,0,0);}
.m34_c00089{transform:matrix(0.151028,-0.006198,0.010252,0.249790,0,0);-ms-transform:matrix(0.151028,-0.006198,0.010252,0.249790,0,0);-webkit-transform:matrix(0.151028,-0.006198,0.010252,0.249790,0,0);}
.ma3_c00089{transform:matrix(0.151435,-0.006518,0.010751,0.249769,0,0);-ms-transform:matrix(0.151435,-0.006518,0.010751,0.249769,0,0);-webkit-transform:matrix(0.151435,-0.006518,0.010751,0.249769,0,0);}
.mf2_c00089{transform:matrix(0.151616,-0.005615,0.009253,0.249829,0,0);-ms-transform:matrix(0.151616,-0.005615,0.009253,0.249829,0,0);-webkit-transform:matrix(0.151616,-0.005615,0.009253,0.249829,0,0);}
.m106_c00089{transform:matrix(0.153147,-0.002910,0.004749,0.249955,0,0);-ms-transform:matrix(0.153147,-0.002910,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153147,-0.002910,0.004749,0.249955,0,0);}
.m8b_c00089{transform:matrix(0.156079,-0.006406,0.010252,0.249790,0,0);-ms-transform:matrix(0.156079,-0.006406,0.010252,0.249790,0,0);-webkit-transform:matrix(0.156079,-0.006406,0.010252,0.249790,0,0);}
.md3_c00089{transform:matrix(0.156263,-0.005788,0.009253,0.249829,0,0);-ms-transform:matrix(0.156263,-0.005788,0.009253,0.249829,0,0);-webkit-transform:matrix(0.156263,-0.005788,0.009253,0.249829,0,0);}
.m45_c00089{transform:matrix(0.156298,-0.006415,0.010252,0.249790,0,0);-ms-transform:matrix(0.156298,-0.006415,0.010252,0.249790,0,0);-webkit-transform:matrix(0.156298,-0.006415,0.010252,0.249790,0,0);}
.ma5_c00089{transform:matrix(0.157294,-0.006770,0.010751,0.249769,0,0);-ms-transform:matrix(0.157294,-0.006770,0.010751,0.249769,0,0);-webkit-transform:matrix(0.157294,-0.006770,0.010751,0.249769,0,0);}
.m10e_c00089{transform:matrix(0.157572,-0.002994,0.004749,0.249955,0,0);-ms-transform:matrix(0.157572,-0.002994,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157572,-0.002994,0.004749,0.249955,0,0);}
.m59_c00089{transform:matrix(0.158102,-0.006489,0.010252,0.249790,0,0);-ms-transform:matrix(0.158102,-0.006489,0.010252,0.249790,0,0);-webkit-transform:matrix(0.158102,-0.006489,0.010252,0.249790,0,0);}
.ma7_c00089{transform:matrix(0.159317,-0.006858,0.010751,0.249769,0,0);-ms-transform:matrix(0.159317,-0.006858,0.010751,0.249769,0,0);-webkit-transform:matrix(0.159317,-0.006858,0.010751,0.249769,0,0);}
.m63_c00089{transform:matrix(0.160230,-0.006576,0.010252,0.249790,0,0);-ms-transform:matrix(0.160230,-0.006576,0.010252,0.249790,0,0);-webkit-transform:matrix(0.160230,-0.006576,0.010252,0.249790,0,0);}
.m44_c00089{transform:matrix(0.160295,-0.006579,0.010252,0.249790,0,0);-ms-transform:matrix(0.160295,-0.006579,0.010252,0.249790,0,0);-webkit-transform:matrix(0.160295,-0.006579,0.010252,0.249790,0,0);}
.m10a_c00089{transform:matrix(0.161371,-0.003066,0.004749,0.249955,0,0);-ms-transform:matrix(0.161371,-0.003066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161371,-0.003066,0.004749,0.249955,0,0);}
.m4c_c00089{transform:matrix(0.162513,-0.006670,0.010252,0.249790,0,0);-ms-transform:matrix(0.162513,-0.006670,0.010252,0.249790,0,0);-webkit-transform:matrix(0.162513,-0.006670,0.010252,0.249790,0,0);}
.m23_c00089{transform:matrix(0.163702,-0.006719,0.010252,0.249790,0,0);-ms-transform:matrix(0.163702,-0.006719,0.010252,0.249790,0,0);-webkit-transform:matrix(0.163702,-0.006719,0.010252,0.249790,0,0);}
.m5c_c00089{transform:matrix(0.164192,-0.006739,0.010252,0.249790,0,0);-ms-transform:matrix(0.164192,-0.006739,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164192,-0.006739,0.010252,0.249790,0,0);}
.md7_c00089{transform:matrix(0.164272,-0.006084,0.009253,0.249829,0,0);-ms-transform:matrix(0.164272,-0.006084,0.009253,0.249829,0,0);-webkit-transform:matrix(0.164272,-0.006084,0.009253,0.249829,0,0);}
.mb6_c00089{transform:matrix(0.164473,-0.007409,0.011250,0.249747,0,0);-ms-transform:matrix(0.164473,-0.007409,0.011250,0.249747,0,0);-webkit-transform:matrix(0.164473,-0.007409,0.011250,0.249747,0,0);}
.m3e_c00089{transform:matrix(0.164492,-0.006751,0.010252,0.249790,0,0);-ms-transform:matrix(0.164492,-0.006751,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164492,-0.006751,0.010252,0.249790,0,0);}
.m36_c00089{transform:matrix(0.164736,-0.006761,0.010252,0.249790,0,0);-ms-transform:matrix(0.164736,-0.006761,0.010252,0.249790,0,0);-webkit-transform:matrix(0.164736,-0.006761,0.010252,0.249790,0,0);}
.md_c00089{transform:matrix(0.165263,-0.008768,0.013245,0.249649,0,0);-ms-transform:matrix(0.165263,-0.008768,0.013245,0.249649,0,0);-webkit-transform:matrix(0.165263,-0.008768,0.013245,0.249649,0,0);}
.m21_c00089{transform:matrix(0.165366,-0.006787,0.010252,0.249790,0,0);-ms-transform:matrix(0.165366,-0.006787,0.010252,0.249790,0,0);-webkit-transform:matrix(0.165366,-0.006787,0.010252,0.249790,0,0);}
.mb4_c00089{transform:matrix(0.165947,-0.007475,0.011250,0.249747,0,0);-ms-transform:matrix(0.165947,-0.007475,0.011250,0.249747,0,0);-webkit-transform:matrix(0.165947,-0.007475,0.011250,0.249747,0,0);}
.m18_c00089{transform:matrix(0.166345,-0.006827,0.010252,0.249790,0,0);-ms-transform:matrix(0.166345,-0.006827,0.010252,0.249790,0,0);-webkit-transform:matrix(0.166345,-0.006827,0.010252,0.249790,0,0);}
.m91_c00089{transform:matrix(0.166580,-0.006837,0.010252,0.249790,0,0);-ms-transform:matrix(0.166580,-0.006837,0.010252,0.249790,0,0);-webkit-transform:matrix(0.166580,-0.006837,0.010252,0.249790,0,0);}
.md6_c00089{transform:matrix(0.167240,-0.006194,0.009253,0.249829,0,0);-ms-transform:matrix(0.167240,-0.006194,0.009253,0.249829,0,0);-webkit-transform:matrix(0.167240,-0.006194,0.009253,0.249829,0,0);}
.m10b_c00089{transform:matrix(0.167615,-0.003185,0.004749,0.249955,0,0);-ms-transform:matrix(0.167615,-0.003185,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167615,-0.003185,0.004749,0.249955,0,0);}
.m72_c00089{transform:matrix(0.168278,-0.006906,0.010252,0.249790,0,0);-ms-transform:matrix(0.168278,-0.006906,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168278,-0.006906,0.010252,0.249790,0,0);}
.m8f_c00089{transform:matrix(0.168563,-0.006918,0.010252,0.249790,0,0);-ms-transform:matrix(0.168563,-0.006918,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168563,-0.006918,0.010252,0.249790,0,0);}
.m49_c00089{transform:matrix(0.168628,-0.006921,0.010252,0.249790,0,0);-ms-transform:matrix(0.168628,-0.006921,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168628,-0.006921,0.010252,0.249790,0,0);}
.m46_c00089{transform:matrix(0.169203,-0.006944,0.010252,0.249790,0,0);-ms-transform:matrix(0.169203,-0.006944,0.010252,0.249790,0,0);-webkit-transform:matrix(0.169203,-0.006944,0.010252,0.249790,0,0);}
.mc8_c00089{transform:matrix(0.169634,-0.006283,0.009253,0.249829,0,0);-ms-transform:matrix(0.169634,-0.006283,0.009253,0.249829,0,0);-webkit-transform:matrix(0.169634,-0.006283,0.009253,0.249829,0,0);}
.ma9_c00089{transform:matrix(0.169663,-0.007303,0.010751,0.249769,0,0);-ms-transform:matrix(0.169663,-0.007303,0.010751,0.249769,0,0);-webkit-transform:matrix(0.169663,-0.007303,0.010751,0.249769,0,0);}
.m19_c00089{transform:matrix(0.170047,-0.006979,0.010252,0.249790,0,0);-ms-transform:matrix(0.170047,-0.006979,0.010252,0.249790,0,0);-webkit-transform:matrix(0.170047,-0.006979,0.010252,0.249790,0,0);}
.m5f_c00089{transform:matrix(0.170122,-0.006982,0.010252,0.249790,0,0);-ms-transform:matrix(0.170122,-0.006982,0.010252,0.249790,0,0);-webkit-transform:matrix(0.170122,-0.006982,0.010252,0.249790,0,0);}
.mdb_c00089{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);}
.m81_c00089{transform:matrix(0.170372,-0.006992,0.010252,0.249790,0,0);-ms-transform:matrix(0.170372,-0.006992,0.010252,0.249790,0,0);-webkit-transform:matrix(0.170372,-0.006992,0.010252,0.249790,0,0);}
.m60_c00089{transform:matrix(0.171021,-0.007019,0.010252,0.249790,0,0);-ms-transform:matrix(0.171021,-0.007019,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171021,-0.007019,0.010252,0.249790,0,0);}
.m3b_c00089{transform:matrix(0.171071,-0.007021,0.010252,0.249790,0,0);-ms-transform:matrix(0.171071,-0.007021,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171071,-0.007021,0.010252,0.249790,0,0);}
.m43_c00089{transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);-ms-transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);}
.m3d_c00089{transform:matrix(0.172670,-0.007087,0.010252,0.249790,0,0);-ms-transform:matrix(0.172670,-0.007087,0.010252,0.249790,0,0);-webkit-transform:matrix(0.172670,-0.007087,0.010252,0.249790,0,0);}
.m24_c00089{transform:matrix(0.173424,-0.007118,0.010252,0.249790,0,0);-ms-transform:matrix(0.173424,-0.007118,0.010252,0.249790,0,0);-webkit-transform:matrix(0.173424,-0.007118,0.010252,0.249790,0,0);}
.m77_c00089{transform:matrix(0.173784,-0.007132,0.010252,0.249790,0,0);-ms-transform:matrix(0.173784,-0.007132,0.010252,0.249790,0,0);-webkit-transform:matrix(0.173784,-0.007132,0.010252,0.249790,0,0);}
.maa_c00089{transform:matrix(0.173799,-0.007481,0.010751,0.249769,0,0);-ms-transform:matrix(0.173799,-0.007481,0.010751,0.249769,0,0);-webkit-transform:matrix(0.173799,-0.007481,0.010751,0.249769,0,0);}
.md2_c00089{transform:matrix(0.173951,-0.006443,0.009253,0.249829,0,0);-ms-transform:matrix(0.173951,-0.006443,0.009253,0.249829,0,0);-webkit-transform:matrix(0.173951,-0.006443,0.009253,0.249829,0,0);}
.m3a_c00089{transform:matrix(0.174103,-0.007145,0.010252,0.249790,0,0);-ms-transform:matrix(0.174103,-0.007145,0.010252,0.249790,0,0);-webkit-transform:matrix(0.174103,-0.007145,0.010252,0.249790,0,0);}
.m7f_c00089{transform:matrix(0.174883,-0.007177,0.010252,0.249790,0,0);-ms-transform:matrix(0.174883,-0.007177,0.010252,0.249790,0,0);-webkit-transform:matrix(0.174883,-0.007177,0.010252,0.249790,0,0);}
.mac_c00089{transform:matrix(0.174888,-0.007528,0.010751,0.249769,0,0);-ms-transform:matrix(0.174888,-0.007528,0.010751,0.249769,0,0);-webkit-transform:matrix(0.174888,-0.007528,0.010751,0.249769,0,0);}
.m29_c00089{transform:matrix(0.175342,-0.007196,0.010252,0.249790,0,0);-ms-transform:matrix(0.175342,-0.007196,0.010252,0.249790,0,0);-webkit-transform:matrix(0.175342,-0.007196,0.010252,0.249790,0,0);}
.m110_c00089{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);}
.mca_c00089{transform:matrix(0.175959,-0.006517,0.009253,0.249829,0,0);-ms-transform:matrix(0.175959,-0.006517,0.009253,0.249829,0,0);-webkit-transform:matrix(0.175959,-0.006517,0.009253,0.249829,0,0);}
.m84_c00089{transform:matrix(0.176277,-0.007235,0.010252,0.249790,0,0);-ms-transform:matrix(0.176277,-0.007235,0.010252,0.249790,0,0);-webkit-transform:matrix(0.176277,-0.007235,0.010252,0.249790,0,0);}
.m6f_c00089{transform:matrix(0.176826,-0.007257,0.010252,0.249790,0,0);-ms-transform:matrix(0.176826,-0.007257,0.010252,0.249790,0,0);-webkit-transform:matrix(0.176826,-0.007257,0.010252,0.249790,0,0);}
.m35_c00089{transform:matrix(0.177241,-0.007274,0.010252,0.249790,0,0);-ms-transform:matrix(0.177241,-0.007274,0.010252,0.249790,0,0);-webkit-transform:matrix(0.177241,-0.007274,0.010252,0.249790,0,0);}
.mc3_c00089{transform:matrix(0.177593,-0.006578,0.009253,0.249829,0,0);-ms-transform:matrix(0.177593,-0.006578,0.009253,0.249829,0,0);-webkit-transform:matrix(0.177593,-0.006578,0.009253,0.249829,0,0);}
.m6_c00089{transform:matrix(0.177620,-0.009423,0.013245,0.249649,0,0);-ms-transform:matrix(0.177620,-0.009423,0.013245,0.249649,0,0);-webkit-transform:matrix(0.177620,-0.009423,0.013245,0.249649,0,0);}
.m22_c00089{transform:matrix(0.177890,-0.007301,0.010252,0.249790,0,0);-ms-transform:matrix(0.177890,-0.007301,0.010252,0.249790,0,0);-webkit-transform:matrix(0.177890,-0.007301,0.010252,0.249790,0,0);}
.m9c_c00089{transform:matrix(0.178507,-0.003927,0.005499,0.249940,0,0);-ms-transform:matrix(0.178507,-0.003927,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178507,-0.003927,0.005499,0.249940,0,0);}
.m41_c00089{transform:matrix(0.178625,-0.007331,0.010252,0.249790,0,0);-ms-transform:matrix(0.178625,-0.007331,0.010252,0.249790,0,0);-webkit-transform:matrix(0.178625,-0.007331,0.010252,0.249790,0,0);}
.m10c_c00089{transform:matrix(0.178658,-0.003394,0.004749,0.249955,0,0);-ms-transform:matrix(0.178658,-0.003394,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178658,-0.003394,0.004749,0.249955,0,0);}
.m47_c00089{transform:matrix(0.179104,-0.007351,0.010252,0.249790,0,0);-ms-transform:matrix(0.179104,-0.007351,0.010252,0.249790,0,0);-webkit-transform:matrix(0.179104,-0.007351,0.010252,0.249790,0,0);}
.mae_c00089{transform:matrix(0.179129,-0.007710,0.010751,0.249769,0,0);-ms-transform:matrix(0.179129,-0.007710,0.010751,0.249769,0,0);-webkit-transform:matrix(0.179129,-0.007710,0.010751,0.249769,0,0);}
.mb7_c00089{transform:matrix(0.179273,-0.008075,0.011250,0.249747,0,0);-ms-transform:matrix(0.179273,-0.008075,0.011250,0.249747,0,0);-webkit-transform:matrix(0.179273,-0.008075,0.011250,0.249747,0,0);}
.m4e_c00089{transform:matrix(0.179369,-0.007361,0.010252,0.249790,0,0);-ms-transform:matrix(0.179369,-0.007361,0.010252,0.249790,0,0);-webkit-transform:matrix(0.179369,-0.007361,0.010252,0.249790,0,0);}
.m105_c00089{transform:matrix(0.179428,-0.003409,0.004749,0.249955,0,0);-ms-transform:matrix(0.179428,-0.003409,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179428,-0.003409,0.004749,0.249955,0,0);}
.mb5_c00089{transform:matrix(0.179623,-0.008091,0.011250,0.249747,0,0);-ms-transform:matrix(0.179623,-0.008091,0.011250,0.249747,0,0);-webkit-transform:matrix(0.179623,-0.008091,0.011250,0.249747,0,0);}
.m56_c00089{transform:matrix(0.179924,-0.007384,0.010252,0.249790,0,0);-ms-transform:matrix(0.179924,-0.007384,0.010252,0.249790,0,0);-webkit-transform:matrix(0.179924,-0.007384,0.010252,0.249790,0,0);}
.m99_c00089{transform:matrix(0.180046,-0.003961,0.005499,0.249940,0,0);-ms-transform:matrix(0.180046,-0.003961,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180046,-0.003961,0.005499,0.249940,0,0);}
.m66_c00089{transform:matrix(0.180128,-0.007393,0.010252,0.249790,0,0);-ms-transform:matrix(0.180128,-0.007393,0.010252,0.249790,0,0);-webkit-transform:matrix(0.180128,-0.007393,0.010252,0.249790,0,0);}
.mde_c00089{transform:matrix(0.180621,-0.006690,0.009253,0.249829,0,0);-ms-transform:matrix(0.180621,-0.006690,0.009253,0.249829,0,0);-webkit-transform:matrix(0.180621,-0.006690,0.009253,0.249829,0,0);}
.m6a_c00089{transform:matrix(0.180863,-0.007423,0.010252,0.249790,0,0);-ms-transform:matrix(0.180863,-0.007423,0.010252,0.249790,0,0);-webkit-transform:matrix(0.180863,-0.007423,0.010252,0.249790,0,0);}
.mb1_c00089{transform:matrix(0.181262,-0.007802,0.010751,0.249769,0,0);-ms-transform:matrix(0.181262,-0.007802,0.010751,0.249769,0,0);-webkit-transform:matrix(0.181262,-0.007802,0.010751,0.249769,0,0);}
.m5e_c00089{transform:matrix(0.181317,-0.007441,0.010252,0.249790,0,0);-ms-transform:matrix(0.181317,-0.007441,0.010252,0.249790,0,0);-webkit-transform:matrix(0.181317,-0.007441,0.010252,0.249790,0,0);}
.mbd_c00089{transform:matrix(0.181735,-0.006731,0.009253,0.249829,0,0);-ms-transform:matrix(0.181735,-0.006731,0.009253,0.249829,0,0);-webkit-transform:matrix(0.181735,-0.006731,0.009253,0.249829,0,0);}
.m74_c00089{transform:matrix(0.182017,-0.007470,0.010252,0.249790,0,0);-ms-transform:matrix(0.182017,-0.007470,0.010252,0.249790,0,0);-webkit-transform:matrix(0.182017,-0.007470,0.010252,0.249790,0,0);}
.mad_c00089{transform:matrix(0.182206,-0.007843,0.010751,0.249769,0,0);-ms-transform:matrix(0.182206,-0.007843,0.010751,0.249769,0,0);-webkit-transform:matrix(0.182206,-0.007843,0.010751,0.249769,0,0);}
.mcc_c00089{transform:matrix(0.182285,-0.006751,0.009253,0.249829,0,0);-ms-transform:matrix(0.182285,-0.006751,0.009253,0.249829,0,0);-webkit-transform:matrix(0.182285,-0.006751,0.009253,0.249829,0,0);}
.m108_c00089{transform:matrix(0.182327,-0.003464,0.004749,0.249955,0,0);-ms-transform:matrix(0.182327,-0.003464,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182327,-0.003464,0.004749,0.249955,0,0);}
.m20_c00089{transform:matrix(0.182351,-0.007484,0.010252,0.249790,0,0);-ms-transform:matrix(0.182351,-0.007484,0.010252,0.249790,0,0);-webkit-transform:matrix(0.182351,-0.007484,0.010252,0.249790,0,0);}
.m2f_c00089{transform:matrix(0.182511,-0.007490,0.010252,0.249790,0,0);-ms-transform:matrix(0.182511,-0.007490,0.010252,0.249790,0,0);-webkit-transform:matrix(0.182511,-0.007490,0.010252,0.249790,0,0);}
.m109_c00089{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);}
.mbe_c00089{transform:matrix(0.184139,-0.006820,0.009253,0.249829,0,0);-ms-transform:matrix(0.184139,-0.006820,0.009253,0.249829,0,0);-webkit-transform:matrix(0.184139,-0.006820,0.009253,0.249829,0,0);}
.m9b_c00089{transform:matrix(0.184265,-0.004054,0.005499,0.249940,0,0);-ms-transform:matrix(0.184265,-0.004054,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184265,-0.004054,0.005499,0.249940,0,0);}
.m7e_c00089{transform:matrix(0.184630,-0.007577,0.010252,0.249790,0,0);-ms-transform:matrix(0.184630,-0.007577,0.010252,0.249790,0,0);-webkit-transform:matrix(0.184630,-0.007577,0.010252,0.249790,0,0);}
.m51_c00089{transform:matrix(0.184869,-0.007587,0.010252,0.249790,0,0);-ms-transform:matrix(0.184869,-0.007587,0.010252,0.249790,0,0);-webkit-transform:matrix(0.184869,-0.007587,0.010252,0.249790,0,0);}
.m88_c00089{transform:matrix(0.184894,-0.007588,0.010252,0.249790,0,0);-ms-transform:matrix(0.184894,-0.007588,0.010252,0.249790,0,0);-webkit-transform:matrix(0.184894,-0.007588,0.010252,0.249790,0,0);}
.m75_c00089{transform:matrix(0.185044,-0.007594,0.010252,0.249790,0,0);-ms-transform:matrix(0.185044,-0.007594,0.010252,0.249790,0,0);-webkit-transform:matrix(0.185044,-0.007594,0.010252,0.249790,0,0);}
.mee_c00089{transform:matrix(0.185143,-0.006857,0.009253,0.249829,0,0);-ms-transform:matrix(0.185143,-0.006857,0.009253,0.249829,0,0);-webkit-transform:matrix(0.185143,-0.006857,0.009253,0.249829,0,0);}
.m3f_c00089{transform:matrix(0.185709,-0.007622,0.010252,0.249790,0,0);-ms-transform:matrix(0.185709,-0.007622,0.010252,0.249790,0,0);-webkit-transform:matrix(0.185709,-0.007622,0.010252,0.249790,0,0);}
.m3c_c00089{transform:matrix(0.185794,-0.007625,0.010252,0.249790,0,0);-ms-transform:matrix(0.185794,-0.007625,0.010252,0.249790,0,0);-webkit-transform:matrix(0.185794,-0.007625,0.010252,0.249790,0,0);}
.m12_c00089{transform:matrix(0.186408,-0.007650,0.010252,0.249790,0,0);-ms-transform:matrix(0.186408,-0.007650,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186408,-0.007650,0.010252,0.249790,0,0);}
.m61_c00089{transform:matrix(0.186478,-0.007653,0.010252,0.249790,0,0);-ms-transform:matrix(0.186478,-0.007653,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186478,-0.007653,0.010252,0.249790,0,0);}
.mcf_c00089{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);}
.m103_c00089{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);}
.m33_c00089{transform:matrix(0.186943,-0.007672,0.010252,0.249790,0,0);-ms-transform:matrix(0.186943,-0.007672,0.010252,0.249790,0,0);-webkit-transform:matrix(0.186943,-0.007672,0.010252,0.249790,0,0);}
.m8c_c00089{transform:matrix(0.187008,-0.007675,0.010252,0.249790,0,0);-ms-transform:matrix(0.187008,-0.007675,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187008,-0.007675,0.010252,0.249790,0,0);}
.m8e_c00089{transform:matrix(0.187093,-0.007678,0.010252,0.249790,0,0);-ms-transform:matrix(0.187093,-0.007678,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187093,-0.007678,0.010252,0.249790,0,0);}
.m1c_c00089{transform:matrix(0.187972,-0.007715,0.010252,0.249790,0,0);-ms-transform:matrix(0.187972,-0.007715,0.010252,0.249790,0,0);-webkit-transform:matrix(0.187972,-0.007715,0.010252,0.249790,0,0);}
.m64_c00089{transform:matrix(0.188486,-0.007736,0.010252,0.249790,0,0);-ms-transform:matrix(0.188486,-0.007736,0.010252,0.249790,0,0);-webkit-transform:matrix(0.188486,-0.007736,0.010252,0.249790,0,0);}
.m80_c00089{transform:matrix(0.188626,-0.007741,0.010252,0.249790,0,0);-ms-transform:matrix(0.188626,-0.007741,0.010252,0.249790,0,0);-webkit-transform:matrix(0.188626,-0.007741,0.010252,0.249790,0,0);}
.m39_c00089{transform:matrix(0.189061,-0.007759,0.010252,0.249790,0,0);-ms-transform:matrix(0.189061,-0.007759,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189061,-0.007759,0.010252,0.249790,0,0);}
.m13_c00089{transform:matrix(0.189565,-0.007780,0.010252,0.249790,0,0);-ms-transform:matrix(0.189565,-0.007780,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189565,-0.007780,0.010252,0.249790,0,0);}
.m16_c00089{transform:matrix(0.189575,-0.007780,0.010252,0.249790,0,0);-ms-transform:matrix(0.189575,-0.007780,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189575,-0.007780,0.010252,0.249790,0,0);}
.m82_c00089{transform:matrix(0.189755,-0.007788,0.010252,0.249790,0,0);-ms-transform:matrix(0.189755,-0.007788,0.010252,0.249790,0,0);-webkit-transform:matrix(0.189755,-0.007788,0.010252,0.249790,0,0);}
.me4_c00089{transform:matrix(0.189780,-0.007029,0.009253,0.249829,0,0);-ms-transform:matrix(0.189780,-0.007029,0.009253,0.249829,0,0);-webkit-transform:matrix(0.189780,-0.007029,0.009253,0.249829,0,0);}
.m73_c00089{transform:matrix(0.190515,-0.007819,0.010252,0.249790,0,0);-ms-transform:matrix(0.190515,-0.007819,0.010252,0.249790,0,0);-webkit-transform:matrix(0.190515,-0.007819,0.010252,0.249790,0,0);}
.m1b_c00089{transform:matrix(0.191484,-0.007859,0.010252,0.249790,0,0);-ms-transform:matrix(0.191484,-0.007859,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191484,-0.007859,0.010252,0.249790,0,0);}
.m2a_c00089{transform:matrix(0.191529,-0.007861,0.010252,0.249790,0,0);-ms-transform:matrix(0.191529,-0.007861,0.010252,0.249790,0,0);-webkit-transform:matrix(0.191529,-0.007861,0.010252,0.249790,0,0);}
.mbc_c00089{transform:matrix(0.191828,-0.007105,0.009253,0.249829,0,0);-ms-transform:matrix(0.191828,-0.007105,0.009253,0.249829,0,0);-webkit-transform:matrix(0.191828,-0.007105,0.009253,0.249829,0,0);}
.ma4_c00089{transform:matrix(0.191957,-0.008262,0.010751,0.249769,0,0);-ms-transform:matrix(0.191957,-0.008262,0.010751,0.249769,0,0);-webkit-transform:matrix(0.191957,-0.008262,0.010751,0.249769,0,0);}
.mfe_c00089{transform:matrix(0.192080,-0.008652,0.011250,0.249747,0,0);-ms-transform:matrix(0.192080,-0.008652,0.011250,0.249747,0,0);-webkit-transform:matrix(0.192080,-0.008652,0.011250,0.249747,0,0);}
.m30_c00089{transform:matrix(0.192083,-0.007883,0.010252,0.249790,0,0);-ms-transform:matrix(0.192083,-0.007883,0.010252,0.249790,0,0);-webkit-transform:matrix(0.192083,-0.007883,0.010252,0.249790,0,0);}
.me7_c00089{transform:matrix(0.192258,-0.007121,0.009253,0.249829,0,0);-ms-transform:matrix(0.192258,-0.007121,0.009253,0.249829,0,0);-webkit-transform:matrix(0.192258,-0.007121,0.009253,0.249829,0,0);}
.m55_c00089{transform:matrix(0.192298,-0.007892,0.010252,0.249790,0,0);-ms-transform:matrix(0.192298,-0.007892,0.010252,0.249790,0,0);-webkit-transform:matrix(0.192298,-0.007892,0.010252,0.249790,0,0);}
.mc9_c00089{transform:matrix(0.193093,-0.007152,0.009253,0.249829,0,0);-ms-transform:matrix(0.193093,-0.007152,0.009253,0.249829,0,0);-webkit-transform:matrix(0.193093,-0.007152,0.009253,0.249829,0,0);}
.m17_c00089{transform:matrix(0.193297,-0.007933,0.010252,0.249790,0,0);-ms-transform:matrix(0.193297,-0.007933,0.010252,0.249790,0,0);-webkit-transform:matrix(0.193297,-0.007933,0.010252,0.249790,0,0);}
.m27_c00089{transform:matrix(0.194396,-0.007978,0.010252,0.249790,0,0);-ms-transform:matrix(0.194396,-0.007978,0.010252,0.249790,0,0);-webkit-transform:matrix(0.194396,-0.007978,0.010252,0.249790,0,0);}
.mc0_c00089{transform:matrix(0.194632,-0.007209,0.009253,0.249829,0,0);-ms-transform:matrix(0.194632,-0.007209,0.009253,0.249829,0,0);-webkit-transform:matrix(0.194632,-0.007209,0.009253,0.249829,0,0);}
.m83_c00089{transform:matrix(0.195071,-0.008006,0.010252,0.249790,0,0);-ms-transform:matrix(0.195071,-0.008006,0.010252,0.249790,0,0);-webkit-transform:matrix(0.195071,-0.008006,0.010252,0.249790,0,0);}
.mc1_c00089{transform:matrix(0.195221,-0.007230,0.009253,0.249829,0,0);-ms-transform:matrix(0.195221,-0.007230,0.009253,0.249829,0,0);-webkit-transform:matrix(0.195221,-0.007230,0.009253,0.249829,0,0);}
.mbf_c00089{transform:matrix(0.195241,-0.007231,0.009253,0.249829,0,0);-ms-transform:matrix(0.195241,-0.007231,0.009253,0.249829,0,0);-webkit-transform:matrix(0.195241,-0.007231,0.009253,0.249829,0,0);}
.mb3_c00089{transform:matrix(0.195692,-0.008815,0.011250,0.249747,0,0);-ms-transform:matrix(0.195692,-0.008815,0.011250,0.249747,0,0);-webkit-transform:matrix(0.195692,-0.008815,0.011250,0.249747,0,0);}
.maf_c00089{transform:matrix(0.195834,-0.008429,0.010751,0.249769,0,0);-ms-transform:matrix(0.195834,-0.008429,0.010751,0.249769,0,0);-webkit-transform:matrix(0.195834,-0.008429,0.010751,0.249769,0,0);}
.m31_c00089{transform:matrix(0.195920,-0.008041,0.010252,0.249790,0,0);-ms-transform:matrix(0.195920,-0.008041,0.010252,0.249790,0,0);-webkit-transform:matrix(0.195920,-0.008041,0.010252,0.249790,0,0);}
.mcb_c00089{transform:matrix(0.196021,-0.007260,0.009253,0.249829,0,0);-ms-transform:matrix(0.196021,-0.007260,0.009253,0.249829,0,0);-webkit-transform:matrix(0.196021,-0.007260,0.009253,0.249829,0,0);}
.md8_c00089{transform:matrix(0.196086,-0.007262,0.009253,0.249829,0,0);-ms-transform:matrix(0.196086,-0.007262,0.009253,0.249829,0,0);-webkit-transform:matrix(0.196086,-0.007262,0.009253,0.249829,0,0);}
.m7d_c00089{transform:matrix(0.196095,-0.008048,0.010252,0.249790,0,0);-ms-transform:matrix(0.196095,-0.008048,0.010252,0.249790,0,0);-webkit-transform:matrix(0.196095,-0.008048,0.010252,0.249790,0,0);}
.m90_c00089{transform:matrix(0.196295,-0.008056,0.010252,0.249790,0,0);-ms-transform:matrix(0.196295,-0.008056,0.010252,0.249790,0,0);-webkit-transform:matrix(0.196295,-0.008056,0.010252,0.249790,0,0);}
.m101_c00089{transform:matrix(0.196626,-0.008857,0.011250,0.249747,0,0);-ms-transform:matrix(0.196626,-0.008857,0.011250,0.249747,0,0);-webkit-transform:matrix(0.196626,-0.008857,0.011250,0.249747,0,0);}
.me2_c00089{transform:matrix(0.196725,-0.007286,0.009253,0.249829,0,0);-ms-transform:matrix(0.196725,-0.007286,0.009253,0.249829,0,0);-webkit-transform:matrix(0.196725,-0.007286,0.009253,0.249829,0,0);}
.me5_c00089{transform:matrix(0.196990,-0.007296,0.009253,0.249829,0,0);-ms-transform:matrix(0.196990,-0.007296,0.009253,0.249829,0,0);-webkit-transform:matrix(0.196990,-0.007296,0.009253,0.249829,0,0);}
.mb0_c00089{transform:matrix(0.197093,-0.008483,0.010751,0.249769,0,0);-ms-transform:matrix(0.197093,-0.008483,0.010751,0.249769,0,0);-webkit-transform:matrix(0.197093,-0.008483,0.010751,0.249769,0,0);}
.meb_c00089{transform:matrix(0.197315,-0.007308,0.009253,0.249829,0,0);-ms-transform:matrix(0.197315,-0.007308,0.009253,0.249829,0,0);-webkit-transform:matrix(0.197315,-0.007308,0.009253,0.249829,0,0);}
.m67_c00089{transform:matrix(0.198228,-0.008135,0.010252,0.249790,0,0);-ms-transform:matrix(0.198228,-0.008135,0.010252,0.249790,0,0);-webkit-transform:matrix(0.198228,-0.008135,0.010252,0.249790,0,0);}
.me8_c00089{transform:matrix(0.198274,-0.007343,0.009253,0.249829,0,0);-ms-transform:matrix(0.198274,-0.007343,0.009253,0.249829,0,0);-webkit-transform:matrix(0.198274,-0.007343,0.009253,0.249829,0,0);}
.mfa_c00089{transform:matrix(0.198908,-0.008960,0.011250,0.249747,0,0);-ms-transform:matrix(0.198908,-0.008960,0.011250,0.249747,0,0);-webkit-transform:matrix(0.198908,-0.008960,0.011250,0.249747,0,0);}
.m100_c00089{transform:matrix(0.198928,-0.008961,0.011250,0.249747,0,0);-ms-transform:matrix(0.198928,-0.008961,0.011250,0.249747,0,0);-webkit-transform:matrix(0.198928,-0.008961,0.011250,0.249747,0,0);}
.mea_c00089{transform:matrix(0.199338,-0.007383,0.009253,0.249829,0,0);-ms-transform:matrix(0.199338,-0.007383,0.009253,0.249829,0,0);-webkit-transform:matrix(0.199338,-0.007383,0.009253,0.249829,0,0);}
.mab_c00089{transform:matrix(0.199435,-0.008584,0.010751,0.249769,0,0);-ms-transform:matrix(0.199435,-0.008584,0.010751,0.249769,0,0);-webkit-transform:matrix(0.199435,-0.008584,0.010751,0.249769,0,0);}
.m14_c00089{transform:matrix(0.199442,-0.008185,0.010252,0.249790,0,0);-ms-transform:matrix(0.199442,-0.008185,0.010252,0.249790,0,0);-webkit-transform:matrix(0.199442,-0.008185,0.010252,0.249790,0,0);}
.mb8_c00089{transform:matrix(0.199453,-0.008984,0.011250,0.249747,0,0);-ms-transform:matrix(0.199453,-0.008984,0.011250,0.249747,0,0);-webkit-transform:matrix(0.199453,-0.008984,0.011250,0.249747,0,0);}
.mc2_c00089{transform:matrix(0.200018,-0.007408,0.009253,0.249829,0,0);-ms-transform:matrix(0.200018,-0.007408,0.009253,0.249829,0,0);-webkit-transform:matrix(0.200018,-0.007408,0.009253,0.249829,0,0);}
.mdd_c00089{transform:matrix(0.200143,-0.007413,0.009253,0.249829,0,0);-ms-transform:matrix(0.200143,-0.007413,0.009253,0.249829,0,0);-webkit-transform:matrix(0.200143,-0.007413,0.009253,0.249829,0,0);}
.m98_c00089{transform:matrix(0.200486,-0.004411,0.005499,0.249940,0,0);-ms-transform:matrix(0.200486,-0.004411,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200486,-0.004411,0.005499,0.249940,0,0);}
.mfd_c00089{transform:matrix(0.201755,-0.009088,0.011250,0.249747,0,0);-ms-transform:matrix(0.201755,-0.009088,0.011250,0.249747,0,0);-webkit-transform:matrix(0.201755,-0.009088,0.011250,0.249747,0,0);}
.m65_c00089{transform:matrix(0.201900,-0.008286,0.010252,0.249790,0,0);-ms-transform:matrix(0.201900,-0.008286,0.010252,0.249790,0,0);-webkit-transform:matrix(0.201900,-0.008286,0.010252,0.249790,0,0);}
.m50_c00089{transform:matrix(0.202100,-0.008294,0.010252,0.249790,0,0);-ms-transform:matrix(0.202100,-0.008294,0.010252,0.249790,0,0);-webkit-transform:matrix(0.202100,-0.008294,0.010252,0.249790,0,0);}
.m58_c00089{transform:matrix(0.202569,-0.008314,0.010252,0.249790,0,0);-ms-transform:matrix(0.202569,-0.008314,0.010252,0.249790,0,0);-webkit-transform:matrix(0.202569,-0.008314,0.010252,0.249790,0,0);}
.m62_c00089{transform:matrix(0.202769,-0.008322,0.010252,0.249790,0,0);-ms-transform:matrix(0.202769,-0.008322,0.010252,0.249790,0,0);-webkit-transform:matrix(0.202769,-0.008322,0.010252,0.249790,0,0);}
.md9_c00089{transform:matrix(0.202871,-0.007514,0.009253,0.249829,0,0);-ms-transform:matrix(0.202871,-0.007514,0.009253,0.249829,0,0);-webkit-transform:matrix(0.202871,-0.007514,0.009253,0.249829,0,0);}
.m7a_c00089{transform:matrix(0.203209,-0.008340,0.010252,0.249790,0,0);-ms-transform:matrix(0.203209,-0.008340,0.010252,0.249790,0,0);-webkit-transform:matrix(0.203209,-0.008340,0.010252,0.249790,0,0);}
.mef_c00089{transform:matrix(0.203740,-0.007546,0.009253,0.249829,0,0);-ms-transform:matrix(0.203740,-0.007546,0.009253,0.249829,0,0);-webkit-transform:matrix(0.203740,-0.007546,0.009253,0.249829,0,0);}
.m37_c00089{transform:matrix(0.203783,-0.008363,0.010252,0.249790,0,0);-ms-transform:matrix(0.203783,-0.008363,0.010252,0.249790,0,0);-webkit-transform:matrix(0.203783,-0.008363,0.010252,0.249790,0,0);}
.ma2_c00089{transform:matrix(0.203901,-0.008777,0.010751,0.249769,0,0);-ms-transform:matrix(0.203901,-0.008777,0.010751,0.249769,0,0);-webkit-transform:matrix(0.203901,-0.008777,0.010751,0.249769,0,0);}
.m38_c00089{transform:matrix(0.204438,-0.008390,0.010252,0.249790,0,0);-ms-transform:matrix(0.204438,-0.008390,0.010252,0.249790,0,0);-webkit-transform:matrix(0.204438,-0.008390,0.010252,0.249790,0,0);}
.mf4_c00089{transform:matrix(0.205159,-0.007598,0.009253,0.249829,0,0);-ms-transform:matrix(0.205159,-0.007598,0.009253,0.249829,0,0);-webkit-transform:matrix(0.205159,-0.007598,0.009253,0.249829,0,0);}
.ma0_c00089{transform:matrix(0.205530,-0.008847,0.010751,0.249769,0,0);-ms-transform:matrix(0.205530,-0.008847,0.010751,0.249769,0,0);-webkit-transform:matrix(0.205530,-0.008847,0.010751,0.249769,0,0);}
.me9_c00089{transform:matrix(0.205734,-0.007620,0.009253,0.249829,0,0);-ms-transform:matrix(0.205734,-0.007620,0.009253,0.249829,0,0);-webkit-transform:matrix(0.205734,-0.007620,0.009253,0.249829,0,0);}
.m6d_c00089{transform:matrix(0.206241,-0.008464,0.010252,0.249790,0,0);-ms-transform:matrix(0.206241,-0.008464,0.010252,0.249790,0,0);-webkit-transform:matrix(0.206241,-0.008464,0.010252,0.249790,0,0);}
.mc4_c00089{transform:matrix(0.206319,-0.007641,0.009253,0.249829,0,0);-ms-transform:matrix(0.206319,-0.007641,0.009253,0.249829,0,0);-webkit-transform:matrix(0.206319,-0.007641,0.009253,0.249829,0,0);}
.mdf_c00089{transform:matrix(0.207852,-0.007698,0.009253,0.249829,0,0);-ms-transform:matrix(0.207852,-0.007698,0.009253,0.249829,0,0);-webkit-transform:matrix(0.207852,-0.007698,0.009253,0.249829,0,0);}
.m76_c00089{transform:matrix(0.207995,-0.008536,0.010252,0.249790,0,0);-ms-transform:matrix(0.207995,-0.008536,0.010252,0.249790,0,0);-webkit-transform:matrix(0.207995,-0.008536,0.010252,0.249790,0,0);}
.me3_c00089{transform:matrix(0.209376,-0.007755,0.009253,0.249829,0,0);-ms-transform:matrix(0.209376,-0.007755,0.009253,0.249829,0,0);-webkit-transform:matrix(0.209376,-0.007755,0.009253,0.249829,0,0);}
.m5b_c00089{transform:matrix(0.209654,-0.008604,0.010252,0.249790,0,0);-ms-transform:matrix(0.209654,-0.008604,0.010252,0.249790,0,0);-webkit-transform:matrix(0.209654,-0.008604,0.010252,0.249790,0,0);}
.m9a_c00089{transform:matrix(0.209784,-0.004615,0.005499,0.249940,0,0);-ms-transform:matrix(0.209784,-0.004615,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209784,-0.004615,0.005499,0.249940,0,0);}
.me1_c00089{transform:matrix(0.210146,-0.007783,0.009253,0.249829,0,0);-ms-transform:matrix(0.210146,-0.007783,0.009253,0.249829,0,0);-webkit-transform:matrix(0.210146,-0.007783,0.009253,0.249829,0,0);}
.m2e_c00089{transform:matrix(0.210193,-0.008627,0.010252,0.249790,0,0);-ms-transform:matrix(0.210193,-0.008627,0.010252,0.249790,0,0);-webkit-transform:matrix(0.210193,-0.008627,0.010252,0.249790,0,0);}
.mce_c00089{transform:matrix(0.210965,-0.007814,0.009253,0.249829,0,0);-ms-transform:matrix(0.210965,-0.007814,0.009253,0.249829,0,0);-webkit-transform:matrix(0.210965,-0.007814,0.009253,0.249829,0,0);}
.m28_c00089{transform:matrix(0.211482,-0.008679,0.010252,0.249790,0,0);-ms-transform:matrix(0.211482,-0.008679,0.010252,0.249790,0,0);-webkit-transform:matrix(0.211482,-0.008679,0.010252,0.249790,0,0);}
.m79_c00089{transform:matrix(0.213345,-0.008756,0.010252,0.249790,0,0);-ms-transform:matrix(0.213345,-0.008756,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213345,-0.008756,0.010252,0.249790,0,0);}
.m78_c00089{transform:matrix(0.213395,-0.008758,0.010252,0.249790,0,0);-ms-transform:matrix(0.213395,-0.008758,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213395,-0.008758,0.010252,0.249790,0,0);}
.m53_c00089{transform:matrix(0.213535,-0.008764,0.010252,0.249790,0,0);-ms-transform:matrix(0.213535,-0.008764,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213535,-0.008764,0.010252,0.249790,0,0);}
.m4a_c00089{transform:matrix(0.213840,-0.008776,0.010252,0.249790,0,0);-ms-transform:matrix(0.213840,-0.008776,0.010252,0.249790,0,0);-webkit-transform:matrix(0.213840,-0.008776,0.010252,0.249790,0,0);}
.m107_c00089{transform:matrix(0.214701,-0.004079,0.004749,0.249955,0,0);-ms-transform:matrix(0.214701,-0.004079,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214701,-0.004079,0.004749,0.249955,0,0);}
.m5a_c00089{transform:matrix(0.214839,-0.008817,0.010252,0.249790,0,0);-ms-transform:matrix(0.214839,-0.008817,0.010252,0.249790,0,0);-webkit-transform:matrix(0.214839,-0.008817,0.010252,0.249790,0,0);}
.mf8_c00089{transform:matrix(0.215442,-0.009705,0.011250,0.249747,0,0);-ms-transform:matrix(0.215442,-0.009705,0.011250,0.249747,0,0);-webkit-transform:matrix(0.215442,-0.009705,0.011250,0.249747,0,0);}
.mf1_c00089{transform:matrix(0.216012,-0.008000,0.009253,0.249829,0,0);-ms-transform:matrix(0.216012,-0.008000,0.009253,0.249829,0,0);-webkit-transform:matrix(0.216012,-0.008000,0.009253,0.249829,0,0);}
.m11_c00089{transform:matrix(0.217052,-0.008908,0.010252,0.249790,0,0);-ms-transform:matrix(0.217052,-0.008908,0.010252,0.249790,0,0);-webkit-transform:matrix(0.217052,-0.008908,0.010252,0.249790,0,0);}
.me0_c00089{transform:matrix(0.217466,-0.008054,0.009253,0.249829,0,0);-ms-transform:matrix(0.217466,-0.008054,0.009253,0.249829,0,0);-webkit-transform:matrix(0.217466,-0.008054,0.009253,0.249829,0,0);}
.m9d_c00089{transform:matrix(0.218852,-0.004815,0.005499,0.249940,0,0);-ms-transform:matrix(0.218852,-0.004815,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218852,-0.004815,0.005499,0.249940,0,0);}
.m1a_c00089{transform:matrix(0.220295,-0.009041,0.010252,0.249790,0,0);-ms-transform:matrix(0.220295,-0.009041,0.010252,0.249790,0,0);-webkit-transform:matrix(0.220295,-0.009041,0.010252,0.249790,0,0);}
.m68_c00089{transform:matrix(0.220320,-0.009042,0.010252,0.249790,0,0);-ms-transform:matrix(0.220320,-0.009042,0.010252,0.249790,0,0);-webkit-transform:matrix(0.220320,-0.009042,0.010252,0.249790,0,0);}
.m4b_c00089{transform:matrix(0.220889,-0.009066,0.010252,0.249790,0,0);-ms-transform:matrix(0.220889,-0.009066,0.010252,0.249790,0,0);-webkit-transform:matrix(0.220889,-0.009066,0.010252,0.249790,0,0);}
.m4d_c00089{transform:matrix(0.220974,-0.009069,0.010252,0.249790,0,0);-ms-transform:matrix(0.220974,-0.009069,0.010252,0.249790,0,0);-webkit-transform:matrix(0.220974,-0.009069,0.010252,0.249790,0,0);}
.m1e_c00089{transform:matrix(0.221104,-0.009074,0.010252,0.249790,0,0);-ms-transform:matrix(0.221104,-0.009074,0.010252,0.249790,0,0);-webkit-transform:matrix(0.221104,-0.009074,0.010252,0.249790,0,0);}
.m6e_c00089{transform:matrix(0.221149,-0.009076,0.010252,0.249790,0,0);-ms-transform:matrix(0.221149,-0.009076,0.010252,0.249790,0,0);-webkit-transform:matrix(0.221149,-0.009076,0.010252,0.249790,0,0);}
.mba_c00089{transform:matrix(0.221528,-0.008205,0.009253,0.249829,0,0);-ms-transform:matrix(0.221528,-0.008205,0.009253,0.249829,0,0);-webkit-transform:matrix(0.221528,-0.008205,0.009253,0.249829,0,0);}
.ma6_c00089{transform:matrix(0.222349,-0.009571,0.010751,0.249769,0,0);-ms-transform:matrix(0.222349,-0.009571,0.010751,0.249769,0,0);-webkit-transform:matrix(0.222349,-0.009571,0.010751,0.249769,0,0);}
.mb2_c00089{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);}
.m87_c00089{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);}
.m69_c00089{transform:matrix(0.223737,-0.009182,0.010252,0.249790,0,0);-ms-transform:matrix(0.223737,-0.009182,0.010252,0.249790,0,0);-webkit-transform:matrix(0.223737,-0.009182,0.010252,0.249790,0,0);}
.mcd_c00089{transform:matrix(0.224256,-0.008306,0.009253,0.249829,0,0);-ms-transform:matrix(0.224256,-0.008306,0.009253,0.249829,0,0);-webkit-transform:matrix(0.224256,-0.008306,0.009253,0.249829,0,0);}
.mb_c00089{transform:matrix(0.224260,-0.011898,0.013245,0.249649,0,0);-ms-transform:matrix(0.224260,-0.011898,0.013245,0.249649,0,0);-webkit-transform:matrix(0.224260,-0.011898,0.013245,0.249649,0,0);}
.mda_c00089{transform:matrix(0.224786,-0.008325,0.009253,0.249829,0,0);-ms-transform:matrix(0.224786,-0.008325,0.009253,0.249829,0,0);-webkit-transform:matrix(0.224786,-0.008325,0.009253,0.249829,0,0);}
.m4f_c00089{transform:matrix(0.225660,-0.009261,0.010252,0.249790,0,0);-ms-transform:matrix(0.225660,-0.009261,0.010252,0.249790,0,0);-webkit-transform:matrix(0.225660,-0.009261,0.010252,0.249790,0,0);}
.m8d_c00089{transform:matrix(0.225730,-0.009264,0.010252,0.249790,0,0);-ms-transform:matrix(0.225730,-0.009264,0.010252,0.249790,0,0);-webkit-transform:matrix(0.225730,-0.009264,0.010252,0.249790,0,0);}
.m52_c00089{transform:matrix(0.226125,-0.009280,0.010252,0.249790,0,0);-ms-transform:matrix(0.226125,-0.009280,0.010252,0.249790,0,0);-webkit-transform:matrix(0.226125,-0.009280,0.010252,0.249790,0,0);}
.mf9_c00089{transform:matrix(0.227040,-0.010227,0.011250,0.249747,0,0);-ms-transform:matrix(0.227040,-0.010227,0.011250,0.249747,0,0);-webkit-transform:matrix(0.227040,-0.010227,0.011250,0.249747,0,0);}
.m70_c00089{transform:matrix(0.227184,-0.009324,0.010252,0.249790,0,0);-ms-transform:matrix(0.227184,-0.009324,0.010252,0.249790,0,0);-webkit-transform:matrix(0.227184,-0.009324,0.010252,0.249790,0,0);}
.me_c00089{transform:matrix(0.227270,-0.012057,0.013245,0.249649,0,0);-ms-transform:matrix(0.227270,-0.012057,0.013245,0.249649,0,0);-webkit-transform:matrix(0.227270,-0.012057,0.013245,0.249649,0,0);}
.mff_c00089{transform:matrix(0.227934,-0.010267,0.011250,0.249747,0,0);-ms-transform:matrix(0.227934,-0.010267,0.011250,0.249747,0,0);-webkit-transform:matrix(0.227934,-0.010267,0.011250,0.249747,0,0);}
.m57_c00089{transform:matrix(0.229122,-0.009403,0.010252,0.249790,0,0);-ms-transform:matrix(0.229122,-0.009403,0.010252,0.249790,0,0);-webkit-transform:matrix(0.229122,-0.009403,0.010252,0.249790,0,0);}
.m7c_c00089{transform:matrix(0.229312,-0.009411,0.010252,0.249790,0,0);-ms-transform:matrix(0.229312,-0.009411,0.010252,0.249790,0,0);-webkit-transform:matrix(0.229312,-0.009411,0.010252,0.249790,0,0);}
.mf7_c00089{transform:matrix(0.229658,-0.008506,0.009253,0.249829,0,0);-ms-transform:matrix(0.229658,-0.008506,0.009253,0.249829,0,0);-webkit-transform:matrix(0.229658,-0.008506,0.009253,0.249829,0,0);}
.mf0_c00089{transform:matrix(0.230172,-0.008525,0.009253,0.249829,0,0);-ms-transform:matrix(0.230172,-0.008525,0.009253,0.249829,0,0);-webkit-transform:matrix(0.230172,-0.008525,0.009253,0.249829,0,0);}
.md0_c00089{transform:matrix(0.230367,-0.008532,0.009253,0.249829,0,0);-ms-transform:matrix(0.230367,-0.008532,0.009253,0.249829,0,0);-webkit-transform:matrix(0.230367,-0.008532,0.009253,0.249829,0,0);}
.mf5_c00089{transform:matrix(0.230472,-0.008536,0.009253,0.249829,0,0);-ms-transform:matrix(0.230472,-0.008536,0.009253,0.249829,0,0);-webkit-transform:matrix(0.230472,-0.008536,0.009253,0.249829,0,0);}
.mdc_c00089{transform:matrix(0.231216,-0.008564,0.009253,0.249829,0,0);-ms-transform:matrix(0.231216,-0.008564,0.009253,0.249829,0,0);-webkit-transform:matrix(0.231216,-0.008564,0.009253,0.249829,0,0);}
.m6c_c00089{transform:matrix(0.231700,-0.009509,0.010252,0.249790,0,0);-ms-transform:matrix(0.231700,-0.009509,0.010252,0.249790,0,0);-webkit-transform:matrix(0.231700,-0.009509,0.010252,0.249790,0,0);}
.m6b_c00089{transform:matrix(0.232634,-0.009548,0.010252,0.249790,0,0);-ms-transform:matrix(0.232634,-0.009548,0.010252,0.249790,0,0);-webkit-transform:matrix(0.232634,-0.009548,0.010252,0.249790,0,0);}
.m8a_c00089{transform:matrix(0.232674,-0.009549,0.010252,0.249790,0,0);-ms-transform:matrix(0.232674,-0.009549,0.010252,0.249790,0,0);-webkit-transform:matrix(0.232674,-0.009549,0.010252,0.249790,0,0);}
.mc_c00089{transform:matrix(0.233876,-0.012408,0.013245,0.249649,0,0);-ms-transform:matrix(0.233876,-0.012408,0.013245,0.249649,0,0);-webkit-transform:matrix(0.233876,-0.012408,0.013245,0.249649,0,0);}
.m1d_c00089{transform:matrix(0.234093,-0.009607,0.010252,0.249790,0,0);-ms-transform:matrix(0.234093,-0.009607,0.010252,0.249790,0,0);-webkit-transform:matrix(0.234093,-0.009607,0.010252,0.249790,0,0);}
.md4_c00089{transform:matrix(0.234349,-0.008680,0.009253,0.249829,0,0);-ms-transform:matrix(0.234349,-0.008680,0.009253,0.249829,0,0);-webkit-transform:matrix(0.234349,-0.008680,0.009253,0.249829,0,0);}
.m32_c00089{transform:matrix(0.236686,-0.009714,0.010252,0.249790,0,0);-ms-transform:matrix(0.236686,-0.009714,0.010252,0.249790,0,0);-webkit-transform:matrix(0.236686,-0.009714,0.010252,0.249790,0,0);}
.m9e_c00089{transform:matrix(0.236698,-0.005207,0.005499,0.249940,0,0);-ms-transform:matrix(0.236698,-0.005207,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236698,-0.005207,0.005499,0.249940,0,0);}
.mfb_c00089{transform:matrix(0.238124,-0.010726,0.011250,0.249747,0,0);-ms-transform:matrix(0.238124,-0.010726,0.011250,0.249747,0,0);-webkit-transform:matrix(0.238124,-0.010726,0.011250,0.249747,0,0);}
.m102_c00089{transform:matrix(0.238548,-0.010745,0.011250,0.249747,0,0);-ms-transform:matrix(0.238548,-0.010745,0.011250,0.249747,0,0);-webkit-transform:matrix(0.238548,-0.010745,0.011250,0.249747,0,0);}
.m7b_c00089{transform:matrix(0.239998,-0.009850,0.010252,0.249790,0,0);-ms-transform:matrix(0.239998,-0.009850,0.010252,0.249790,0,0);-webkit-transform:matrix(0.239998,-0.009850,0.010252,0.249790,0,0);}
.mb9_c00089{transform:matrix(0.240030,-0.008890,0.009253,0.249829,0,0);-ms-transform:matrix(0.240030,-0.008890,0.009253,0.249829,0,0);-webkit-transform:matrix(0.240030,-0.008890,0.009253,0.249829,0,0);}
.m86_c00089{transform:matrix(0.243045,-0.009975,0.010252,0.249790,0,0);-ms-transform:matrix(0.243045,-0.009975,0.010252,0.249790,0,0);-webkit-transform:matrix(0.243045,-0.009975,0.010252,0.249790,0,0);}
.m92_c00089{transform:matrix(0.245079,-0.010058,0.010252,0.249790,0,0);-ms-transform:matrix(0.245079,-0.010058,0.010252,0.249790,0,0);-webkit-transform:matrix(0.245079,-0.010058,0.010252,0.249790,0,0);}
.m42_c00089{transform:matrix(0.250454,-0.010279,0.010252,0.249790,0,0);-ms-transform:matrix(0.250454,-0.010279,0.010252,0.249790,0,0);-webkit-transform:matrix(0.250454,-0.010279,0.010252,0.249790,0,0);}
.mbb_c00089{transform:matrix(0.260147,-0.009635,0.009253,0.249829,0,0);-ms-transform:matrix(0.260147,-0.009635,0.009253,0.249829,0,0);-webkit-transform:matrix(0.260147,-0.009635,0.009253,0.249829,0,0);}
.m48_c00089{transform:matrix(0.262474,-0.010772,0.010252,0.249790,0,0);-ms-transform:matrix(0.262474,-0.010772,0.010252,0.249790,0,0);-webkit-transform:matrix(0.262474,-0.010772,0.010252,0.249790,0,0);}
.m97_c00089{transform:matrix(0.263136,-0.005789,0.005499,0.249940,0,0);-ms-transform:matrix(0.263136,-0.005789,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263136,-0.005789,0.005499,0.249940,0,0);}
.mfc_c00089{transform:matrix(0.264996,-0.011937,0.011250,0.249747,0,0);-ms-transform:matrix(0.264996,-0.011937,0.011250,0.249747,0,0);-webkit-transform:matrix(0.264996,-0.011937,0.011250,0.249747,0,0);}
.me6_c00089{transform:matrix(0.270919,-0.010034,0.009253,0.249829,0,0);-ms-transform:matrix(0.270919,-0.010034,0.009253,0.249829,0,0);-webkit-transform:matrix(0.270919,-0.010034,0.009253,0.249829,0,0);}
.m9_c00089{transform:matrix(0.271249,-0.014391,0.013245,0.249649,0,0);-ms-transform:matrix(0.271249,-0.014391,0.013245,0.249649,0,0);-webkit-transform:matrix(0.271249,-0.014391,0.013245,0.249649,0,0);}
.mec_c00089{transform:matrix(0.280648,-0.010394,0.009253,0.249829,0,0);-ms-transform:matrix(0.280648,-0.010394,0.009253,0.249829,0,0);-webkit-transform:matrix(0.280648,-0.010394,0.009253,0.249829,0,0);}
.m54_c00089{transform:matrix(0.282068,-0.011576,0.010252,0.249790,0,0);-ms-transform:matrix(0.282068,-0.011576,0.010252,0.249790,0,0);-webkit-transform:matrix(0.282068,-0.011576,0.010252,0.249790,0,0);}
.mf3_c00089{transform:matrix(0.285799,-0.010585,0.009253,0.249829,0,0);-ms-transform:matrix(0.285799,-0.010585,0.009253,0.249829,0,0);-webkit-transform:matrix(0.285799,-0.010585,0.009253,0.249829,0,0);}
.m40_c00089{transform:matrix(0.286509,-0.011759,0.010252,0.249790,0,0);-ms-transform:matrix(0.286509,-0.011759,0.010252,0.249790,0,0);-webkit-transform:matrix(0.286509,-0.011759,0.010252,0.249790,0,0);}
.m8_c00089{transform:matrix(0.300093,-0.015921,0.013245,0.249649,0,0);-ms-transform:matrix(0.300093,-0.015921,0.013245,0.249649,0,0);-webkit-transform:matrix(0.300093,-0.015921,0.013245,0.249649,0,0);}
.ma_c00089{transform:matrix(0.304227,-0.016140,0.013245,0.249649,0,0);-ms-transform:matrix(0.304227,-0.016140,0.013245,0.249649,0,0);-webkit-transform:matrix(0.304227,-0.016140,0.013245,0.249649,0,0);}
.m1f_c00089{transform:matrix(0.305648,-0.012544,0.010252,0.249790,0,0);-ms-transform:matrix(0.305648,-0.012544,0.010252,0.249790,0,0);-webkit-transform:matrix(0.305648,-0.012544,0.010252,0.249790,0,0);}
.m2b_c00089{transform:matrix(0.313151,-0.012852,0.010252,0.249790,0,0);-ms-transform:matrix(0.313151,-0.012852,0.010252,0.249790,0,0);-webkit-transform:matrix(0.313151,-0.012852,0.010252,0.249790,0,0);}
.m95_c00089{transform:matrix(0.335175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335175,0.000000,0.000000,0.250000,0,0);}
.ma8_c00089{transform:matrix(0.347958,-0.014977,0.010751,0.249769,0,0);-ms-transform:matrix(0.347958,-0.014977,0.010751,0.249769,0,0);-webkit-transform:matrix(0.347958,-0.014977,0.010751,0.249769,0,0);}
.med_c00089{transform:matrix(0.359019,-0.013297,0.009253,0.249829,0,0);-ms-transform:matrix(0.359019,-0.013297,0.009253,0.249829,0,0);-webkit-transform:matrix(0.359019,-0.013297,0.009253,0.249829,0,0);}
.m9f_c00089{transform:matrix(0.371161,-0.015976,0.010751,0.249769,0,0);-ms-transform:matrix(0.371161,-0.015976,0.010751,0.249769,0,0);-webkit-transform:matrix(0.371161,-0.015976,0.010751,0.249769,0,0);}
.mc7_c00089{transform:matrix(0.373979,-0.013851,0.009253,0.249829,0,0);-ms-transform:matrix(0.373979,-0.013851,0.009253,0.249829,0,0);-webkit-transform:matrix(0.373979,-0.013851,0.009253,0.249829,0,0);}
.mc5_c00089{transform:matrix(0.379815,-0.014067,0.009253,0.249829,0,0);-ms-transform:matrix(0.379815,-0.014067,0.009253,0.249829,0,0);-webkit-transform:matrix(0.379815,-0.014067,0.009253,0.249829,0,0);}
.m5_c00089{transform:matrix(0.388584,-0.020616,0.013245,0.249649,0,0);-ms-transform:matrix(0.388584,-0.020616,0.013245,0.249649,0,0);-webkit-transform:matrix(0.388584,-0.020616,0.013245,0.249649,0,0);}
.m7_c00089{transform:matrix(0.434858,-0.023071,0.013245,0.249649,0,0);-ms-transform:matrix(0.434858,-0.023071,0.013245,0.249649,0,0);-webkit-transform:matrix(0.434858,-0.023071,0.013245,0.249649,0,0);}
.m0_c00089{transform:matrix(0.472548,-0.019867,0.010501,0.249779,0,0);-ms-transform:matrix(0.472548,-0.019867,0.010501,0.249779,0,0);-webkit-transform:matrix(0.472548,-0.019867,0.010501,0.249779,0,0);}
.mc6_c00089{transform:matrix(0.477443,-0.017683,0.009253,0.249829,0,0);-ms-transform:matrix(0.477443,-0.017683,0.009253,0.249829,0,0);-webkit-transform:matrix(0.477443,-0.017683,0.009253,0.249829,0,0);}
.m3_c00089{transform:matrix(0.547177,-0.023004,0.010501,0.249779,0,0);-ms-transform:matrix(0.547177,-0.023004,0.010501,0.249779,0,0);-webkit-transform:matrix(0.547177,-0.023004,0.010501,0.249779,0,0);}
.m1_c00089{transform:matrix(0.593171,-0.024938,0.010501,0.249779,0,0);-ms-transform:matrix(0.593171,-0.024938,0.010501,0.249779,0,0);-webkit-transform:matrix(0.593171,-0.024938,0.010501,0.249779,0,0);}
.m10_c00089{transform:matrix(0.606619,-0.024896,0.010252,0.249790,0,0);-ms-transform:matrix(0.606619,-0.024896,0.010252,0.249790,0,0);-webkit-transform:matrix(0.606619,-0.024896,0.010252,0.249790,0,0);}
.md5_c00089{transform:matrix(0.781599,-0.028948,0.009253,0.249829,0,0);-ms-transform:matrix(0.781599,-0.028948,0.009253,0.249829,0,0);-webkit-transform:matrix(0.781599,-0.028948,0.009253,0.249829,0,0);}
.ma1_c00089{transform:matrix(0.890011,-0.038309,0.010751,0.249769,0,0);-ms-transform:matrix(0.890011,-0.038309,0.010751,0.249769,0,0);-webkit-transform:matrix(0.890011,-0.038309,0.010751,0.249769,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;}
.fs10_c00089{font-size:22.050000px;}
.fs15_c00089{font-size:38.850000px;}
.fs1c_c00089{font-size:49.334452px;}
.fs1a_c00089{font-size:50.384121px;}
.fs19_c00089{font-size:51.433791px;}
.fs1b_c00089{font-size:52.483460px;}
.fs1d_c00089{font-size:52.500682px;}
.fs12_c00089{font-size:53.545984px;}
.fs16_c00089{font-size:53.550696px;}
.fs11_c00089{font-size:53.562958px;}
.fs17_c00089{font-size:54.582798px;}
.fs13_c00089{font-size:55.645826px;}
.fs14_c00089{font-size:57.745669px;}
.fs0_c00089{font-size:58.793091px;}
.fs1e_c00089{font-size:59.860802px;}
.fs18_c00089{font-size:61.930483px;}
.fse_c00089{font-size:65.089648px;}
.fs1_c00089{font-size:65.092350px;}
.fsf_c00089{font-size:66.139481px;}
.fsb_c00089{font-size:69.288980px;}
.fs6_c00089{font-size:70.338813px;}
.fs4_c00089{font-size:71.388646px;}
.fsc_c00089{font-size:72.438480px;}
.fs7_c00089{font-size:73.488313px;}
.fs5_c00089{font-size:74.538146px;}
.fs3_c00089{font-size:74.580187px;}
.fs8_c00089{font-size:75.587979px;}
.fs2_c00089{font-size:76.681037px;}
.fsd_c00089{font-size:77.687645px;}
.fs9_c00089{font-size:80.837144px;}
.fsa_c00089{font-size:85.036476px;}
.y0_c00089{bottom:0.000000px;}
.y10b_c00089{bottom:121.772297px;}
.y10c_c00089{bottom:122.703825px;}
.y10d_c00089{bottom:124.007454px;}
.y10e_c00089{bottom:124.454957px;}
.y10f_c00089{bottom:125.374953px;}
.y110_c00089{bottom:125.754282px;}
.y111_c00089{bottom:126.456128px;}
.yf2_c00089{bottom:126.956036px;}
.yf3_c00089{bottom:129.056988px;}
.yf4_c00089{bottom:129.543057px;}
.yb3_c00089{bottom:130.140000px;}
.yf5_c00089{bottom:130.899033px;}
.yf6_c00089{bottom:134.720763px;}
.yf7_c00089{bottom:135.798406px;}
.yf8_c00089{bottom:136.176250px;}
.y104_c00089{bottom:139.863000px;}
.y105_c00089{bottom:140.781099px;}
.y106_c00089{bottom:141.100755px;}
.y107_c00089{bottom:142.402749px;}
.y108_c00089{bottom:142.659876px;}
.y109_c00089{bottom:143.028866px;}
.y10a_c00089{bottom:143.802869px;}
.yea_c00089{bottom:145.302449px;}
.yeb_c00089{bottom:146.301282px;}
.yec_c00089{bottom:147.593710px;}
.yed_c00089{bottom:149.297838px;}
.ye6_c00089{bottom:150.959896px;}
.yf9_c00089{bottom:150.966000px;}
.yee_c00089{bottom:151.629782px;}
.yef_c00089{bottom:152.031879px;}
.yfa_c00089{bottom:152.639933px;}
.yf0_c00089{bottom:153.401508px;}
.yfb_c00089{bottom:153.582165px;}
.yf1_c00089{bottom:153.983592px;}
.yfc_c00089{bottom:155.282018px;}
.yfd_c00089{bottom:156.291075px;}
.yfe_c00089{bottom:156.971340px;}
.yff_c00089{bottom:158.938762px;}
.y100_c00089{bottom:160.444958px;}
.ye7_c00089{bottom:162.135765px;}
.ye8_c00089{bottom:163.160628px;}
.ye9_c00089{bottom:164.935629px;}
.y101_c00089{bottom:166.478513px;}
.y102_c00089{bottom:167.740695px;}
.y103_c00089{bottom:171.191093px;}
.yd6_c00089{bottom:173.897825px;}
.yd7_c00089{bottom:175.447496px;}
.yd8_c00089{bottom:175.874956px;}
.yd9_c00089{bottom:176.662502px;}
.yda_c00089{bottom:177.747582px;}
.ydb_c00089{bottom:178.553387px;}
.ydc_c00089{bottom:180.826833px;}
.ydd_c00089{bottom:181.647512px;}
.yde_c00089{bottom:183.609326px;}
.ydf_c00089{bottom:184.723821px;}
.ye0_c00089{bottom:185.214996px;}
.ye1_c00089{bottom:186.864456px;}
.ye2_c00089{bottom:187.443321px;}
.ye3_c00089{bottom:187.988720px;}
.ye4_c00089{bottom:189.591282px;}
.yc6_c00089{bottom:190.085898px;}
.ye5_c00089{bottom:190.388262px;}
.yc7_c00089{bottom:191.559145px;}
.yc8_c00089{bottom:192.433715px;}
.yc9_c00089{bottom:192.948921px;}
.yca_c00089{bottom:194.913066px;}
.ycb_c00089{bottom:196.109868px;}
.ycc_c00089{bottom:196.898190px;}
.ycd_c00089{bottom:198.609477px;}
.yce_c00089{bottom:200.489595px;}
.ycf_c00089{bottom:201.591992px;}
.yd0_c00089{bottom:202.331584px;}
.yd1_c00089{bottom:203.507685px;}
.yd2_c00089{bottom:204.723357px;}
.yd3_c00089{bottom:205.404897px;}
.yd4_c00089{bottom:206.416162px;}
.yd5_c00089{bottom:207.944855px;}
.yba_c00089{bottom:208.188000px;}
.ybb_c00089{bottom:210.515171px;}
.ybc_c00089{bottom:211.544917px;}
.ybd_c00089{bottom:212.942574px;}
.ybe_c00089{bottom:214.002291px;}
.ybf_c00089{bottom:214.702202px;}
.yc0_c00089{bottom:217.484916px;}
.yc1_c00089{bottom:219.415372px;}
.yc2_c00089{bottom:220.392228px;}
.ya2_c00089{bottom:221.968617px;}
.yc3_c00089{bottom:222.545295px;}
.yc4_c00089{bottom:223.628266px;}
.ya3_c00089{bottom:224.193019px;}
.yc5_c00089{bottom:224.247202px;}
.yb2_c00089{bottom:225.993561px;}
.ya4_c00089{bottom:226.097319px;}
.ya5_c00089{bottom:228.196234px;}
.ya6_c00089{bottom:229.307041px;}
.ya7_c00089{bottom:230.316936px;}
.ya8_c00089{bottom:233.049994px;}
.ya9_c00089{bottom:233.982117px;}
.yaa_c00089{bottom:234.591556px;}
.yab_c00089{bottom:235.928842px;}
.yac_c00089{bottom:237.317391px;}
.yad_c00089{bottom:238.626168px;}
.yae_c00089{bottom:239.494063px;}
.yaf_c00089{bottom:240.506344px;}
.yb0_c00089{bottom:242.116971px;}
.yb1_c00089{bottom:243.042256px;}
.y97_c00089{bottom:247.323000px;}
.y98_c00089{bottom:247.532814px;}
.y99_c00089{bottom:247.752396px;}
.y9a_c00089{bottom:248.667585px;}
.y9b_c00089{bottom:249.445659px;}
.y9c_c00089{bottom:250.027911px;}
.y9d_c00089{bottom:250.544823px;}
.y9e_c00089{bottom:251.519280px;}
.y9f_c00089{bottom:251.753382px;}
.ya0_c00089{bottom:252.358500px;}
.yb4_c00089{bottom:252.471000px;}
.yb5_c00089{bottom:253.809457px;}
.yb6_c00089{bottom:255.065092px;}
.yb7_c00089{bottom:257.401673px;}
.yb8_c00089{bottom:258.432735px;}
.yb9_c00089{bottom:260.536372px;}
.ya1_c00089{bottom:261.206481px;}
.y96_c00089{bottom:283.638000px;}
.y94_c00089{bottom:298.707509px;}
.y95_c00089{bottom:305.070726px;}
.y8e_c00089{bottom:307.346667px;}
.y8f_c00089{bottom:309.450444px;}
.y90_c00089{bottom:310.255896px;}
.y91_c00089{bottom:312.594344px;}
.y92_c00089{bottom:313.326170px;}
.y93_c00089{bottom:321.811538px;}
.y87_c00089{bottom:328.941576px;}
.y88_c00089{bottom:329.843850px;}
.y89_c00089{bottom:333.806544px;}
.y8a_c00089{bottom:335.763557px;}
.y8b_c00089{bottom:336.170453px;}
.y8c_c00089{bottom:337.748429px;}
.y8d_c00089{bottom:338.724033px;}
.y7e_c00089{bottom:350.817713px;}
.y7f_c00089{bottom:352.664487px;}
.y80_c00089{bottom:355.581674px;}
.y81_c00089{bottom:357.299823px;}
.y82_c00089{bottom:358.552103px;}
.y83_c00089{bottom:360.352176px;}
.y84_c00089{bottom:363.422856px;}
.y85_c00089{bottom:365.304278px;}
.y86_c00089{bottom:367.296981px;}
.y77_c00089{bottom:374.300028px;}
.y78_c00089{bottom:376.921119px;}
.y79_c00089{bottom:379.120655px;}
.y7a_c00089{bottom:379.904558px;}
.y7b_c00089{bottom:382.275869px;}
.y7c_c00089{bottom:384.140301px;}
.y7d_c00089{bottom:386.105739px;}
.y6d_c00089{bottom:395.906143px;}
.y6e_c00089{bottom:397.395066px;}
.y6f_c00089{bottom:399.523414px;}
.y70_c00089{bottom:401.725519px;}
.y71_c00089{bottom:403.559848px;}
.y72_c00089{bottom:406.344457px;}
.y73_c00089{bottom:407.791078px;}
.y74_c00089{bottom:409.224024px;}
.y75_c00089{bottom:411.188640px;}
.y76_c00089{bottom:413.789361px;}
.y62_c00089{bottom:419.658203px;}
.y63_c00089{bottom:422.981483px;}
.y64_c00089{bottom:424.455442px;}
.y65_c00089{bottom:426.147405px;}
.y66_c00089{bottom:429.042675px;}
.y67_c00089{bottom:430.729103px;}
.y68_c00089{bottom:431.709795px;}
.y69_c00089{bottom:434.026200px;}
.y6a_c00089{bottom:434.736117px;}
.y6b_c00089{bottom:436.643068px;}
.y6c_c00089{bottom:438.511968px;}
.y5c_c00089{bottom:444.214653px;}
.y5d_c00089{bottom:445.804335px;}
.y5e_c00089{bottom:446.877720px;}
.y5f_c00089{bottom:449.224420px;}
.y60_c00089{bottom:450.625242px;}
.y61_c00089{bottom:451.461266px;}
.y56_c00089{bottom:466.896452px;}
.y57_c00089{bottom:468.078097px;}
.y58_c00089{bottom:470.919286px;}
.y59_c00089{bottom:472.641812px;}
.y5a_c00089{bottom:475.497660px;}
.y5b_c00089{bottom:476.674732px;}
.y4e_c00089{bottom:489.574660px;}
.y4f_c00089{bottom:490.820830px;}
.y50_c00089{bottom:491.842042px;}
.y51_c00089{bottom:494.002480px;}
.y52_c00089{bottom:495.601446px;}
.y53_c00089{bottom:497.731704px;}
.y54_c00089{bottom:498.955896px;}
.y55_c00089{bottom:501.608037px;}
.y49_c00089{bottom:513.069934px;}
.y4a_c00089{bottom:514.608148px;}
.y4b_c00089{bottom:516.614835px;}
.y4c_c00089{bottom:519.735571px;}
.y4d_c00089{bottom:520.857247px;}
.y42_c00089{bottom:534.383210px;}
.y43_c00089{bottom:537.138170px;}
.y44_c00089{bottom:539.194734px;}
.y45_c00089{bottom:542.751555px;}
.y46_c00089{bottom:543.612624px;}
.y47_c00089{bottom:545.869439px;}
.y48_c00089{bottom:547.584666px;}
.y39_c00089{bottom:557.589769px;}
.y3a_c00089{bottom:559.003696px;}
.y3b_c00089{bottom:560.454355px;}
.y3c_c00089{bottom:561.731670px;}
.y3d_c00089{bottom:564.085470px;}
.y3e_c00089{bottom:565.114422px;}
.y3f_c00089{bottom:568.094017px;}
.y40_c00089{bottom:569.145372px;}
.y41_c00089{bottom:571.034421px;}
.y2f_c00089{bottom:578.397496px;}
.y30_c00089{bottom:579.828565px;}
.y31_c00089{bottom:582.854828px;}
.y32_c00089{bottom:583.864491px;}
.y33_c00089{bottom:585.527229px;}
.y34_c00089{bottom:587.971159px;}
.y35_c00089{bottom:589.773416px;}
.y36_c00089{bottom:590.683033px;}
.y37_c00089{bottom:592.744600px;}
.y38_c00089{bottom:595.653183px;}
.y28_c00089{bottom:602.413608px;}
.y29_c00089{bottom:606.215127px;}
.y2a_c00089{bottom:610.439652px;}
.y2b_c00089{bottom:612.517860px;}
.y2c_c00089{bottom:614.999125px;}
.y2d_c00089{bottom:619.597204px;}
.y2e_c00089{bottom:620.422530px;}
.y21_c00089{bottom:625.894078px;}
.y22_c00089{bottom:627.291395px;}
.y23_c00089{bottom:629.805677px;}
.y24_c00089{bottom:631.614147px;}
.y25_c00089{bottom:632.819035px;}
.y26_c00089{bottom:635.220448px;}
.y27_c00089{bottom:638.862828px;}
.y1b_c00089{bottom:649.380040px;}
.y1c_c00089{bottom:651.308681px;}
.y1d_c00089{bottom:653.507059px;}
.y1e_c00089{bottom:655.423707px;}
.y1f_c00089{bottom:657.155977px;}
.y20_c00089{bottom:659.329326px;}
.y17_c00089{bottom:672.324456px;}
.y18_c00089{bottom:674.325292px;}
.y19_c00089{bottom:677.309869px;}
.y1a_c00089{bottom:679.612497px;}
.y11_c00089{bottom:695.034000px;}
.y12_c00089{bottom:696.552127px;}
.y13_c00089{bottom:699.016679px;}
.y14_c00089{bottom:701.473542px;}
.y15_c00089{bottom:702.741734px;}
.y16_c00089{bottom:707.025147px;}
.y9_c00089{bottom:739.008594px;}
.ya_c00089{bottom:740.354131px;}
.yb_c00089{bottom:741.499726px;}
.yc_c00089{bottom:742.620279px;}
.yd_c00089{bottom:743.825817px;}
.ye_c00089{bottom:745.306902px;}
.yf_c00089{bottom:748.641768px;}
.y10_c00089{bottom:751.578577px;}
.y6_c00089{bottom:783.040500px;}
.y7_c00089{bottom:785.988042px;}
.y8_c00089{bottom:787.726945px;}
.y3_c00089{bottom:894.531096px;}
.y4_c00089{bottom:895.350285px;}
.y5_c00089{bottom:898.647845px;}
.y1_c00089{bottom:909.121500px;}
.y2_c00089{bottom:912.755214px;}
.h12_c00089{height:22.050000px;}
.h17_c00089{height:38.850000px;}
.h1e_c00089{height:49.334452px;}
.h1c_c00089{height:50.384121px;}
.h1b_c00089{height:51.433791px;}
.h1d_c00089{height:52.483460px;}
.h1f_c00089{height:52.500682px;}
.h14_c00089{height:53.545984px;}
.h18_c00089{height:53.550696px;}
.h13_c00089{height:53.562958px;}
.h19_c00089{height:54.582798px;}
.h15_c00089{height:55.645826px;}
.h16_c00089{height:57.745669px;}
.h2_c00089{height:58.793091px;}
.h20_c00089{height:59.860802px;}
.h1a_c00089{height:61.930483px;}
.h10_c00089{height:65.089648px;}
.h3_c00089{height:65.092350px;}
.h11_c00089{height:66.139481px;}
.hd_c00089{height:69.288980px;}
.h8_c00089{height:70.338813px;}
.h6_c00089{height:71.388646px;}
.he_c00089{height:72.438480px;}
.h9_c00089{height:73.488313px;}
.h7_c00089{height:74.538146px;}
.h5_c00089{height:74.580187px;}
.ha_c00089{height:75.587979px;}
.h4_c00089{height:76.681037px;}
.hf_c00089{height:77.687645px;}
.hb_c00089{height:80.837144px;}
.hc_c00089{height:85.036476px;}
.h0_c00089{height:1008.450000px;}
.h1_c00089{height:1008.750000px;}
.w0_c00089{width:711.720000px;}
.w1_c00089{width:711.750000px;}
.x0_c00089{left:0.000000px;}
.x6b_c00089{left:121.910856px;}
.x8c_c00089{left:126.429626px;}
.x85_c00089{left:128.548171px;}
.x7e_c00089{left:131.021751px;}
.x78_c00089{left:171.399000px;}
.x91_c00089{left:173.061000px;}
.x6c_c00089{left:174.810164px;}
.x66_c00089{left:186.712500px;}
.x86_c00089{left:188.413135px;}
.x67_c00089{left:196.249500px;}
.x23_c00089{left:204.798072px;}
.x47_c00089{left:206.450554px;}
.x4e_c00089{left:209.160547px;}
.x7f_c00089{left:210.470667px;}
.x87_c00089{left:212.229295px;}
.x96_c00089{left:215.434347px;}
.x6d_c00089{left:220.098267px;}
.x95_c00089{left:223.740000px;}
.x92_c00089{left:231.139863px;}
.x28_c00089{left:233.456404px;}
.x4f_c00089{left:238.929291px;}
.x11_c00089{left:240.816000px;}
.x42_c00089{left:242.244589px;}
.x30_c00089{left:243.851587px;}
.x5e_c00089{left:245.684058px;}
.x68_c00089{left:247.830000px;}
.x56_c00089{left:251.728560px;}
.x3c_c00089{left:253.521067px;}
.x5a_c00089{left:262.430805px;}
.x80_c00089{left:264.961122px;}
.x3e_c00089{left:268.530310px;}
.x37_c00089{left:270.803746px;}
.x97_c00089{left:272.121044px;}
.x1e_c00089{left:276.551209px;}
.x12_c00089{left:277.806472px;}
.x48_c00089{left:280.220083px;}
.x50_c00089{left:281.462017px;}
.x31_c00089{left:283.001800px;}
.x19_c00089{left:287.837887px;}
.x24_c00089{left:289.196238px;}
.x16_c00089{left:290.249552px;}
.x93_c00089{left:291.277665px;}
.x29_c00089{left:292.747237px;}
.x6e_c00089{left:296.447135px;}
.x81_c00089{left:298.166106px;}
.x79_c00089{left:299.772498px;}
.x5f_c00089{left:302.467014px;}
.x94_c00089{left:306.379548px;}
.x9_c00089{left:307.689012px;}
.x44_c00089{left:309.477486px;}
.x2a_c00089{left:312.520818px;}
.x32_c00089{left:317.489442px;}
.x38_c00089{left:319.706763px;}
.x54_c00089{left:322.879553px;}
.x60_c00089{left:324.213816px;}
.x51_c00089{left:325.462720px;}
.x7a_c00089{left:328.384857px;}
.x3d_c00089{left:330.532719px;}
.x98_c00089{left:331.537512px;}
.xa_c00089{left:333.051124px;}
.x13_c00089{left:337.857361px;}
.x1f_c00089{left:339.349933px;}
.x1a_c00089{left:341.403268px;}
.x2b_c00089{left:345.098349px;}
.x7b_c00089{left:347.282441px;}
.x6_c00089{left:349.596000px;}
.xb_c00089{left:354.644509px;}
.x5b_c00089{left:356.681082px;}
.x57_c00089{left:359.442435px;}
.x52_c00089{left:362.111491px;}
.x17_c00089{left:364.800005px;}
.x45_c00089{left:368.083222px;}
.x3f_c00089{left:372.359577px;}
.xc_c00089{left:375.765867px;}
.x69_c00089{left:377.452500px;}
.x99_c00089{left:378.569450px;}
.x33_c00089{left:381.022749px;}
.x25_c00089{left:382.986963px;}
.x1_c00089{left:384.946500px;}
.x1b_c00089{left:388.104021px;}
.x2c_c00089{left:392.979781px;}
.xd_c00089{left:398.489121px;}
.x3_c00089{left:399.532602px;}
.x46_c00089{left:403.056630px;}
.x7_c00089{left:405.154386px;}
.x61_c00089{left:407.106446px;}
.x34_c00089{left:408.800499px;}
.x74_c00089{left:410.400000px;}
.x5c_c00089{left:412.926503px;}
.x20_c00089{left:414.601684px;}
.x40_c00089{left:418.632777px;}
.x4_c00089{left:420.517245px;}
.x18_c00089{left:422.295291px;}
.x39_c00089{left:424.792263px;}
.xe_c00089{left:426.406176px;}
.x14_c00089{left:428.621506px;}
.x1c_c00089{left:430.312270px;}
.x8_c00089{left:437.931077px;}
.x55_c00089{left:442.261626px;}
.x2d_c00089{left:446.109805px;}
.x8d_c00089{left:447.179166px;}
.x5d_c00089{left:450.460892px;}
.x49_c00089{left:452.246689px;}
.x6f_c00089{left:453.950753px;}
.x88_c00089{left:456.179157px;}
.x43_c00089{left:464.262017px;}
.x2_c00089{left:471.376983px;}
.x21_c00089{left:474.577111px;}
.x3a_c00089{left:478.464820px;}
.x75_c00089{left:480.059354px;}
.x1d_c00089{left:483.267762px;}
.x2e_c00089{left:486.503311px;}
.xf_c00089{left:489.265254px;}
.x63_c00089{left:494.549657px;}
.x58_c00089{left:501.686352px;}
.x41_c00089{left:502.805721px;}
.x5_c00089{left:504.986349px;}
.x53_c00089{left:514.565118px;}
.x35_c00089{left:517.624419px;}
.x3b_c00089{left:519.270312px;}
.x89_c00089{left:520.985397px;}
.x8e_c00089{left:522.802911px;}
.x4a_c00089{left:525.451407px;}
.x76_c00089{left:531.931430px;}
.x15_c00089{left:532.990533px;}
.x82_c00089{left:537.212709px;}
.x70_c00089{left:538.768031px;}
.x4b_c00089{left:541.213044px;}
.x2f_c00089{left:543.475389px;}
.x10_c00089{left:544.621342px;}
.x77_c00089{left:554.821017px;}
.x83_c00089{left:556.140984px;}
.x7c_c00089{left:559.045965px;}
.x71_c00089{left:562.843964px;}
.x22_c00089{left:565.557795px;}
.x36_c00089{left:568.626738px;}
.x8f_c00089{left:581.065646px;}
.x4c_c00089{left:583.544713px;}
.x26_c00089{left:586.295584px;}
.x7d_c00089{left:588.286195px;}
.x59_c00089{left:591.693867px;}
.x72_c00089{left:601.169778px;}
.x8a_c00089{left:603.522999px;}
.x27_c00089{left:604.613232px;}
.x6a_c00089{left:614.023233px;}
.x73_c00089{left:618.825198px;}
.x65_c00089{left:622.890000px;}
.x4d_c00089{left:625.022361px;}
.x84_c00089{left:626.624041px;}
.x8b_c00089{left:627.634419px;}
.x62_c00089{left:636.206231px;}
.x90_c00089{left:639.878274px;}
.x64_c00089{left:645.900936px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
.fs10_c00089{font-size:19.600000pt;}
.fs15_c00089{font-size:34.533333pt;}
.fs1c_c00089{font-size:43.852846pt;}
.fs1a_c00089{font-size:44.785886pt;}
.fs19_c00089{font-size:45.718925pt;}
.fs1b_c00089{font-size:46.651964pt;}
.fs1d_c00089{font-size:46.667273pt;}
.fs12_c00089{font-size:47.596430pt;}
.fs16_c00089{font-size:47.600619pt;}
.fs11_c00089{font-size:47.611518pt;}
.fs17_c00089{font-size:48.518043pt;}
.fs13_c00089{font-size:49.462957pt;}
.fs14_c00089{font-size:51.329483pt;}
.fs0_c00089{font-size:52.260525pt;}
.fs1e_c00089{font-size:53.209602pt;}
.fs18_c00089{font-size:55.049318pt;}
.fse_c00089{font-size:57.857465pt;}
.fs1_c00089{font-size:57.859867pt;}
.fsf_c00089{font-size:58.790650pt;}
.fsb_c00089{font-size:61.590205pt;}
.fs6_c00089{font-size:62.523390pt;}
.fs4_c00089{font-size:63.456575pt;}
.fsc_c00089{font-size:64.389760pt;}
.fs7_c00089{font-size:65.322945pt;}
.fs5_c00089{font-size:66.256129pt;}
.fs3_c00089{font-size:66.293499pt;}
.fs8_c00089{font-size:67.189314pt;}
.fs2_c00089{font-size:68.160922pt;}
.fsd_c00089{font-size:69.055684pt;}
.fs9_c00089{font-size:71.855239pt;}
.fsa_c00089{font-size:75.587979pt;}
.y0_c00089{bottom:0.000000pt;}
.y10b_c00089{bottom:108.242041pt;}
.y10c_c00089{bottom:109.070067pt;}
.y10d_c00089{bottom:110.228848pt;}
.y10e_c00089{bottom:110.626628pt;}
.y10f_c00089{bottom:111.444403pt;}
.y110_c00089{bottom:111.781584pt;}
.y111_c00089{bottom:112.405447pt;}
.yf2_c00089{bottom:112.849809pt;}
.yf3_c00089{bottom:114.717323pt;}
.yf4_c00089{bottom:115.149384pt;}
.yb3_c00089{bottom:115.680000pt;}
.yf5_c00089{bottom:116.354696pt;}
.yf6_c00089{bottom:119.751789pt;}
.yf7_c00089{bottom:120.709695pt;}
.yf8_c00089{bottom:121.045556pt;}
.y104_c00089{bottom:124.322667pt;}
.y105_c00089{bottom:125.138755pt;}
.y106_c00089{bottom:125.422893pt;}
.y107_c00089{bottom:126.580221pt;}
.y108_c00089{bottom:126.808779pt;}
.y109_c00089{bottom:127.136769pt;}
.y10a_c00089{bottom:127.824772pt;}
.yea_c00089{bottom:129.157732pt;}
.yeb_c00089{bottom:130.045584pt;}
.yec_c00089{bottom:131.194409pt;}
.yed_c00089{bottom:132.709189pt;}
.ye6_c00089{bottom:134.186575pt;}
.yf9_c00089{bottom:134.192000pt;}
.yee_c00089{bottom:134.782028pt;}
.yef_c00089{bottom:135.139448pt;}
.yfa_c00089{bottom:135.679940pt;}
.yf0_c00089{bottom:136.356896pt;}
.yfb_c00089{bottom:136.517480pt;}
.yf1_c00089{bottom:136.874304pt;}
.yfc_c00089{bottom:138.028460pt;}
.yfd_c00089{bottom:138.925400pt;}
.yfe_c00089{bottom:139.530080pt;}
.yff_c00089{bottom:141.278900pt;}
.y100_c00089{bottom:142.617740pt;}
.ye7_c00089{bottom:144.120680pt;}
.ye8_c00089{bottom:145.031669pt;}
.ye9_c00089{bottom:146.609448pt;}
.y101_c00089{bottom:147.980900pt;}
.y102_c00089{bottom:149.102840pt;}
.y103_c00089{bottom:152.169860pt;}
.yd6_c00089{bottom:154.575844pt;}
.yd7_c00089{bottom:155.953329pt;}
.yd8_c00089{bottom:156.333295pt;}
.yd9_c00089{bottom:157.033335pt;}
.yda_c00089{bottom:157.997851pt;}
.ydb_c00089{bottom:158.714121pt;}
.ydc_c00089{bottom:160.734963pt;}
.ydd_c00089{bottom:161.464455pt;}
.yde_c00089{bottom:163.208289pt;}
.ydf_c00089{bottom:164.198952pt;}
.ye0_c00089{bottom:164.635552pt;}
.ye1_c00089{bottom:166.101739pt;}
.ye2_c00089{bottom:166.616285pt;}
.ye3_c00089{bottom:167.101084pt;}
.ye4_c00089{bottom:168.525584pt;}
.yc6_c00089{bottom:168.965243pt;}
.ye5_c00089{bottom:169.234011pt;}
.yc7_c00089{bottom:170.274796pt;}
.yc8_c00089{bottom:171.052191pt;}
.yc9_c00089{bottom:171.510152pt;}
.yca_c00089{bottom:173.256059pt;}
.ycb_c00089{bottom:174.319883pt;}
.ycc_c00089{bottom:175.020613pt;}
.ycd_c00089{bottom:176.541757pt;}
.yce_c00089{bottom:178.212973pt;}
.ycf_c00089{bottom:179.192881pt;}
.yd0_c00089{bottom:179.850297pt;}
.yd1_c00089{bottom:180.895720pt;}
.yd2_c00089{bottom:181.976317pt;}
.yd3_c00089{bottom:182.582131pt;}
.yd4_c00089{bottom:183.481033pt;}
.yd5_c00089{bottom:184.839871pt;}
.yba_c00089{bottom:185.056000pt;}
.ybb_c00089{bottom:187.124596pt;}
.ybc_c00089{bottom:188.039927pt;}
.ybd_c00089{bottom:189.282288pt;}
.ybe_c00089{bottom:190.224259pt;}
.ybf_c00089{bottom:190.846401pt;}
.yc0_c00089{bottom:193.319925pt;}
.yc1_c00089{bottom:195.035887pt;}
.yc2_c00089{bottom:195.904203pt;}
.ya2_c00089{bottom:197.305437pt;}
.yc3_c00089{bottom:197.818040pt;}
.yc4_c00089{bottom:198.780681pt;}
.ya3_c00089{bottom:199.282684pt;}
.yc5_c00089{bottom:199.330847pt;}
.yb2_c00089{bottom:200.883165pt;}
.ya4_c00089{bottom:200.975395pt;}
.ya5_c00089{bottom:202.841097pt;}
.ya6_c00089{bottom:203.828481pt;}
.ya7_c00089{bottom:204.726165pt;}
.ya8_c00089{bottom:207.155551pt;}
.ya9_c00089{bottom:207.984104pt;}
.yaa_c00089{bottom:208.525828pt;}
.yab_c00089{bottom:209.714527pt;}
.yac_c00089{bottom:210.948792pt;}
.yad_c00089{bottom:212.112149pt;}
.yae_c00089{bottom:212.883612pt;}
.yaf_c00089{bottom:213.783417pt;}
.yb0_c00089{bottom:215.215085pt;}
.yb1_c00089{bottom:216.037561pt;}
.y97_c00089{bottom:219.842667pt;}
.y98_c00089{bottom:220.029168pt;}
.y99_c00089{bottom:220.224352pt;}
.y9a_c00089{bottom:221.037853pt;}
.y9b_c00089{bottom:221.729475pt;}
.y9c_c00089{bottom:222.247032pt;}
.y9d_c00089{bottom:222.706509pt;}
.y9e_c00089{bottom:223.572693pt;}
.y9f_c00089{bottom:223.780784pt;}
.ya0_c00089{bottom:224.318667pt;}
.yb4_c00089{bottom:224.418667pt;}
.yb5_c00089{bottom:225.608407pt;}
.yb6_c00089{bottom:226.724527pt;}
.yb7_c00089{bottom:228.801487pt;}
.yb8_c00089{bottom:229.717987pt;}
.yb9_c00089{bottom:231.587887pt;}
.ya1_c00089{bottom:232.183539pt;}
.y96_c00089{bottom:252.122667pt;}
.y94_c00089{bottom:265.517785pt;}
.y95_c00089{bottom:271.173979pt;}
.y8e_c00089{bottom:273.197037pt;}
.y8f_c00089{bottom:275.067061pt;}
.y90_c00089{bottom:275.783019pt;}
.y91_c00089{bottom:277.861639pt;}
.y92_c00089{bottom:278.512151pt;}
.y93_c00089{bottom:286.054700pt;}
.y87_c00089{bottom:292.392512pt;}
.y88_c00089{bottom:293.194533pt;}
.y89_c00089{bottom:296.716928pt;}
.y8a_c00089{bottom:298.456495pt;}
.y8b_c00089{bottom:298.818180pt;}
.y8c_c00089{bottom:300.220825pt;}
.y8d_c00089{bottom:301.088029pt;}
.y7e_c00089{bottom:311.837967pt;}
.y7f_c00089{bottom:313.479544pt;}
.y80_c00089{bottom:316.072599pt;}
.y81_c00089{bottom:317.599843pt;}
.y82_c00089{bottom:318.712980pt;}
.y83_c00089{bottom:320.313045pt;}
.y84_c00089{bottom:323.042539pt;}
.y85_c00089{bottom:324.714913pt;}
.y86_c00089{bottom:326.486205pt;}
.y77_c00089{bottom:332.711136pt;}
.y78_c00089{bottom:335.040995pt;}
.y79_c00089{bottom:336.996137pt;}
.y7a_c00089{bottom:337.692940pt;}
.y7b_c00089{bottom:339.800772pt;}
.y7c_c00089{bottom:341.458045pt;}
.y7d_c00089{bottom:343.205101pt;}
.y6d_c00089{bottom:351.916572pt;}
.y6e_c00089{bottom:353.240059pt;}
.y6f_c00089{bottom:355.131924pt;}
.y70_c00089{bottom:357.089351pt;}
.y71_c00089{bottom:358.719865pt;}
.y72_c00089{bottom:361.195073pt;}
.y73_c00089{bottom:362.480959pt;}
.y74_c00089{bottom:363.754688pt;}
.y75_c00089{bottom:365.501013pt;}
.y76_c00089{bottom:367.812765pt;}
.y62_c00089{bottom:373.029513pt;}
.y63_c00089{bottom:375.983540pt;}
.y64_c00089{bottom:377.293727pt;}
.y65_c00089{bottom:378.797693pt;}
.y66_c00089{bottom:381.371267pt;}
.y67_c00089{bottom:382.870313pt;}
.y68_c00089{bottom:383.742040pt;}
.y69_c00089{bottom:385.801067pt;}
.y6a_c00089{bottom:386.432104pt;}
.y6b_c00089{bottom:388.127172pt;}
.y6c_c00089{bottom:389.788416pt;}
.y5c_c00089{bottom:394.857469pt;}
.y5d_c00089{bottom:396.270520pt;}
.y5e_c00089{bottom:397.224640pt;}
.y5f_c00089{bottom:399.310596pt;}
.y60_c00089{bottom:400.555771pt;}
.y61_c00089{bottom:401.298903pt;}
.y56_c00089{bottom:415.019068pt;}
.y57_c00089{bottom:416.069420pt;}
.y58_c00089{bottom:418.594921pt;}
.y59_c00089{bottom:420.126055pt;}
.y5a_c00089{bottom:422.664587pt;}
.y5b_c00089{bottom:423.710873pt;}
.y4e_c00089{bottom:435.177476pt;}
.y4f_c00089{bottom:436.285183pt;}
.y50_c00089{bottom:437.192927pt;}
.y51_c00089{bottom:439.113316pt;}
.y52_c00089{bottom:440.534619pt;}
.y53_c00089{bottom:442.428181pt;}
.y54_c00089{bottom:443.516352pt;}
.y55_c00089{bottom:445.873811pt;}
.y49_c00089{bottom:456.062164pt;}
.y4a_c00089{bottom:457.429465pt;}
.y4b_c00089{bottom:459.213187pt;}
.y4c_c00089{bottom:461.987175pt;}
.y4d_c00089{bottom:462.984220pt;}
.y42_c00089{bottom:475.007297pt;}
.y43_c00089{bottom:477.456151pt;}
.y44_c00089{bottom:479.284208pt;}
.y45_c00089{bottom:482.445827pt;}
.y46_c00089{bottom:483.211221pt;}
.y47_c00089{bottom:485.217279pt;}
.y48_c00089{bottom:486.741925pt;}
.y39_c00089{bottom:495.635351pt;}
.y3a_c00089{bottom:496.892175pt;}
.y3b_c00089{bottom:498.181649pt;}
.y3c_c00089{bottom:499.317040pt;}
.y3d_c00089{bottom:501.409307pt;}
.y3e_c00089{bottom:502.323931pt;}
.y3f_c00089{bottom:504.972460pt;}
.y40_c00089{bottom:505.906997pt;}
.y41_c00089{bottom:507.586152pt;}
.y2f_c00089{bottom:514.131108pt;}
.y30_c00089{bottom:515.403169pt;}
.y31_c00089{bottom:518.093180pt;}
.y32_c00089{bottom:518.990659pt;}
.y33_c00089{bottom:520.468648pt;}
.y34_c00089{bottom:522.641031pt;}
.y35_c00089{bottom:524.243036pt;}
.y36_c00089{bottom:525.051585pt;}
.y37_c00089{bottom:526.884089pt;}
.y38_c00089{bottom:529.469496pt;}
.y28_c00089{bottom:535.478763pt;}
.y29_c00089{bottom:538.857891pt;}
.y2a_c00089{bottom:542.613024pt;}
.y2b_c00089{bottom:544.460320pt;}
.y2c_c00089{bottom:546.665889pt;}
.y2d_c00089{bottom:550.753071pt;}
.y2e_c00089{bottom:551.486693pt;}
.y21_c00089{bottom:556.350292pt;}
.y22_c00089{bottom:557.592351pt;}
.y23_c00089{bottom:559.827268pt;}
.y24_c00089{bottom:561.434797pt;}
.y25_c00089{bottom:562.505809pt;}
.y26_c00089{bottom:564.640399pt;}
.y27_c00089{bottom:567.878069pt;}
.y1b_c00089{bottom:577.226703pt;}
.y1c_c00089{bottom:578.941049pt;}
.y1d_c00089{bottom:580.895164pt;}
.y1e_c00089{bottom:582.598851pt;}
.y1f_c00089{bottom:584.138647pt;}
.y20_c00089{bottom:586.070512pt;}
.y17_c00089{bottom:597.621739pt;}
.y18_c00089{bottom:599.400260pt;}
.y19_c00089{bottom:602.053217pt;}
.y1a_c00089{bottom:604.099997pt;}
.y11_c00089{bottom:617.808000pt;}
.y12_c00089{bottom:619.157447pt;}
.y13_c00089{bottom:621.348159pt;}
.y14_c00089{bottom:623.532037pt;}
.y15_c00089{bottom:624.659319pt;}
.y16_c00089{bottom:628.466797pt;}
.y9_c00089{bottom:656.896528pt;}
.ya_c00089{bottom:658.092561pt;}
.yb_c00089{bottom:659.110868pt;}
.yc_c00089{bottom:660.106915pt;}
.yd_c00089{bottom:661.178504pt;}
.ye_c00089{bottom:662.495024pt;}
.yf_c00089{bottom:665.459349pt;}
.y10_c00089{bottom:668.069847pt;}
.y6_c00089{bottom:696.036000pt;}
.y7_c00089{bottom:698.656037pt;}
.y8_c00089{bottom:700.201729pt;}
.y3_c00089{bottom:795.138752pt;}
.y4_c00089{bottom:795.866920pt;}
.y5_c00089{bottom:798.798084pt;}
.y1_c00089{bottom:808.108000pt;}
.y2_c00089{bottom:811.337968pt;}
.h12_c00089{height:19.600000pt;}
.h17_c00089{height:34.533333pt;}
.h1e_c00089{height:43.852846pt;}
.h1c_c00089{height:44.785886pt;}
.h1b_c00089{height:45.718925pt;}
.h1d_c00089{height:46.651964pt;}
.h1f_c00089{height:46.667273pt;}
.h14_c00089{height:47.596430pt;}
.h18_c00089{height:47.600619pt;}
.h13_c00089{height:47.611518pt;}
.h19_c00089{height:48.518043pt;}
.h15_c00089{height:49.462957pt;}
.h16_c00089{height:51.329483pt;}
.h2_c00089{height:52.260525pt;}
.h20_c00089{height:53.209602pt;}
.h1a_c00089{height:55.049318pt;}
.h10_c00089{height:57.857465pt;}
.h3_c00089{height:57.859867pt;}
.h11_c00089{height:58.790650pt;}
.hd_c00089{height:61.590205pt;}
.h8_c00089{height:62.523390pt;}
.h6_c00089{height:63.456575pt;}
.he_c00089{height:64.389760pt;}
.h9_c00089{height:65.322945pt;}
.h7_c00089{height:66.256129pt;}
.h5_c00089{height:66.293499pt;}
.ha_c00089{height:67.189314pt;}
.h4_c00089{height:68.160922pt;}
.hf_c00089{height:69.055684pt;}
.hb_c00089{height:71.855239pt;}
.hc_c00089{height:75.587979pt;}
.h0_c00089{height:896.400000pt;}
.h1_c00089{height:896.666667pt;}
.w0_c00089{width:632.640000pt;}
.w1_c00089{width:632.666667pt;}
.x0_c00089{left:0.000000pt;}
.x6b_c00089{left:108.365205pt;}
.x8c_c00089{left:112.381889pt;}
.x85_c00089{left:114.265041pt;}
.x7e_c00089{left:116.463779pt;}
.x78_c00089{left:152.354667pt;}
.x91_c00089{left:153.832000pt;}
.x6c_c00089{left:155.386812pt;}
.x66_c00089{left:165.966667pt;}
.x86_c00089{left:167.478343pt;}
.x67_c00089{left:174.444000pt;}
.x23_c00089{left:182.042731pt;}
.x47_c00089{left:183.511604pt;}
.x4e_c00089{left:185.920487pt;}
.x7f_c00089{left:187.085037pt;}
.x87_c00089{left:188.648263pt;}
.x96_c00089{left:191.497197pt;}
.x6d_c00089{left:195.642904pt;}
.x95_c00089{left:198.880000pt;}
.x92_c00089{left:205.457656pt;}
.x28_c00089{left:207.516804pt;}
.x4f_c00089{left:212.381592pt;}
.x11_c00089{left:214.058667pt;}
.x42_c00089{left:215.328524pt;}
.x30_c00089{left:216.756967pt;}
.x5e_c00089{left:218.385829pt;}
.x68_c00089{left:220.293333pt;}
.x56_c00089{left:223.758720pt;}
.x3c_c00089{left:225.352060pt;}
.x5a_c00089{left:233.271827pt;}
.x80_c00089{left:235.520997pt;}
.x3e_c00089{left:238.693609pt;}
.x37_c00089{left:240.714441pt;}
.x97_c00089{left:241.885372pt;}
.x1e_c00089{left:245.823297pt;}
.x12_c00089{left:246.939087pt;}
.x48_c00089{left:249.084519pt;}
.x50_c00089{left:250.188460pt;}
.x31_c00089{left:251.557156pt;}
.x19_c00089{left:255.855900pt;}
.x24_c00089{left:257.063323pt;}
.x16_c00089{left:257.999601pt;}
.x93_c00089{left:258.913480pt;}
.x29_c00089{left:260.219767pt;}
.x6e_c00089{left:263.508564pt;}
.x81_c00089{left:265.036539pt;}
.x79_c00089{left:266.464443pt;}
.x5f_c00089{left:268.859568pt;}
.x94_c00089{left:272.337376pt;}
.x9_c00089{left:273.501344pt;}
.x44_c00089{left:275.091099pt;}
.x2a_c00089{left:277.796283pt;}
.x32_c00089{left:282.212837pt;}
.x38_c00089{left:284.183789pt;}
.x54_c00089{left:287.004047pt;}
.x60_c00089{left:288.190059pt;}
.x51_c00089{left:289.300196pt;}
.x7a_c00089{left:291.897651pt;}
.x3d_c00089{left:293.806861pt;}
.x98_c00089{left:294.700011pt;}
.xa_c00089{left:296.045444pt;}
.x13_c00089{left:300.317655pt;}
.x1f_c00089{left:301.644385pt;}
.x1a_c00089{left:303.469572pt;}
.x2b_c00089{left:306.754088pt;}
.x7b_c00089{left:308.695503pt;}
.x6_c00089{left:310.752000pt;}
.xb_c00089{left:315.239564pt;}
.x5b_c00089{left:317.049851pt;}
.x57_c00089{left:319.504387pt;}
.x52_c00089{left:321.876881pt;}
.x17_c00089{left:324.266671pt;}
.x45_c00089{left:327.185087pt;}
.x3f_c00089{left:330.986291pt;}
.xc_c00089{left:334.014104pt;}
.x69_c00089{left:335.513333pt;}
.x99_c00089{left:336.506177pt;}
.x33_c00089{left:338.686888pt;}
.x25_c00089{left:340.432856pt;}
.x1_c00089{left:342.174667pt;}
.x1b_c00089{left:344.981352pt;}
.x2c_c00089{left:349.315361pt;}
.xd_c00089{left:354.212552pt;}
.x3_c00089{left:355.140091pt;}
.x46_c00089{left:358.272560pt;}
.x7_c00089{left:360.137232pt;}
.x61_c00089{left:361.872396pt;}
.x34_c00089{left:363.378221pt;}
.x74_c00089{left:364.800000pt;}
.x5c_c00089{left:367.045780pt;}
.x20_c00089{left:368.534831pt;}
.x40_c00089{left:372.118024pt;}
.x4_c00089{left:373.793107pt;}
.x18_c00089{left:375.373592pt;}
.x39_c00089{left:377.593123pt;}
.xe_c00089{left:379.027712pt;}
.x14_c00089{left:380.996895pt;}
.x1c_c00089{left:382.499796pt;}
.x8_c00089{left:389.272068pt;}
.x55_c00089{left:393.121445pt;}
.x2d_c00089{left:396.542049pt;}
.x8d_c00089{left:397.492592pt;}
.x5d_c00089{left:400.409681pt;}
.x49_c00089{left:401.997057pt;}
.x6f_c00089{left:403.511780pt;}
.x88_c00089{left:405.492584pt;}
.x43_c00089{left:412.677348pt;}
.x2_c00089{left:419.001763pt;}
.x21_c00089{left:421.846321pt;}
.x3a_c00089{left:425.302063pt;}
.x75_c00089{left:426.719425pt;}
.x1d_c00089{left:429.571344pt;}
.x2e_c00089{left:432.447388pt;}
.xf_c00089{left:434.902448pt;}
.x63_c00089{left:439.599695pt;}
.x58_c00089{left:445.943424pt;}
.x41_c00089{left:446.938419pt;}
.x5_c00089{left:448.876755pt;}
.x53_c00089{left:457.391216pt;}
.x35_c00089{left:460.110595pt;}
.x3b_c00089{left:461.573611pt;}
.x89_c00089{left:463.098131pt;}
.x8e_c00089{left:464.713699pt;}
.x4a_c00089{left:467.067917pt;}
.x76_c00089{left:472.827937pt;}
.x15_c00089{left:473.769363pt;}
.x82_c00089{left:477.522408pt;}
.x70_c00089{left:478.904916pt;}
.x4b_c00089{left:481.078261pt;}
.x2f_c00089{left:483.089235pt;}
.x10_c00089{left:484.107860pt;}
.x77_c00089{left:493.174237pt;}
.x83_c00089{left:494.347541pt;}
.x7c_c00089{left:496.929747pt;}
.x71_c00089{left:500.305745pt;}
.x22_c00089{left:502.718040pt;}
.x36_c00089{left:505.445989pt;}
.x8f_c00089{left:516.502796pt;}
.x4c_c00089{left:518.706412pt;}
.x26_c00089{left:521.151631pt;}
.x7d_c00089{left:522.921063pt;}
.x59_c00089{left:525.950104pt;}
.x72_c00089{left:534.373136pt;}
.x8a_c00089{left:536.464888pt;}
.x27_c00089{left:537.433984pt;}
.x6a_c00089{left:545.798429pt;}
.x73_c00089{left:550.066843pt;}
.x65_c00089{left:553.680000pt;}
.x4d_c00089{left:555.575432pt;}
.x84_c00089{left:556.999148pt;}
.x8b_c00089{left:557.897261pt;}
.x62_c00089{left:565.516649pt;}
.x90_c00089{left:568.780688pt;}
.x64_c00089{left:574.134165pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m36_c00090{transform:matrix(0.011293,0.000226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.011293,0.000226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.011293,0.000226,-0.004999,0.249950,0,0);}
.m64_c00090{transform:matrix(0.014047,0.000267,-0.004749,0.249955,0,0);-ms-transform:matrix(0.014047,0.000267,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.014047,0.000267,-0.004749,0.249955,0,0);}
.m13_c00090{transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);}
.mfe_c00090{transform:matrix(0.078715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078715,0.000000,0.000000,0.250000,0,0);}
.m106_c00090{transform:matrix(0.083460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083460,0.000000,0.000000,0.250000,0,0);}
.mf1_c00090{transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);}
.mb4_c00090{transform:matrix(0.115090,0.001841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.115090,0.001841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.115090,0.001841,-0.003999,0.249968,0,0);}
.mc1_c00090{transform:matrix(0.115265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115265,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.141195,0.001694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141195,0.001694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141195,0.001694,-0.003000,0.249982,0,0);}
.m31_c00090{transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{transform:matrix(0.147179,0.002502,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147179,0.002502,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147179,0.002502,-0.004249,0.249964,0,0);}
.m2b_c00090{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);}
.m7e_c00090{transform:matrix(0.150058,0.002551,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150058,0.002551,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150058,0.002551,-0.004249,0.249964,0,0);}
.m6c_c00090{transform:matrix(0.151180,0.003024,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151180,0.003024,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151180,0.003024,-0.004999,0.249950,0,0);}
.m35_c00090{transform:matrix(0.151615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151615,0.000000,0.000000,0.250000,0,0);}
.m89_c00090{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);}
.m72_c00090{transform:matrix(0.154338,0.002624,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154338,0.002624,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154338,0.002624,-0.004249,0.249964,0,0);}
.m51_c00090{transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);}
.m5e_c00090{transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155792,0.002960,-0.004749,0.249955,0,0);}
.m4d_c00090{transform:matrix(0.157707,0.002996,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157707,0.002996,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157707,0.002996,-0.004749,0.249955,0,0);}
.ma5_c00090{transform:matrix(0.161804,0.002589,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161804,0.002589,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161804,0.002589,-0.003999,0.249968,0,0);}
.m40_c00090{transform:matrix(0.166781,0.002835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166781,0.002835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166781,0.002835,-0.004249,0.249964,0,0);}
.m34_c00090{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);}
.mb_c00090{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);}
.m84_c00090{transform:matrix(0.167676,0.002850,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167676,0.002850,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167676,0.002850,-0.004249,0.249964,0,0);}
.m10_c00090{transform:matrix(0.169230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169230,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{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);}
.m28_c00090{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);}
.m7_c00090{transform:matrix(0.171353,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171353,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171353,0.002056,-0.003000,0.249982,0,0);}
.m5b_c00090{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);}
.m55_c00090{transform:matrix(0.174324,0.003312,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174324,0.003312,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174324,0.003312,-0.004749,0.249955,0,0);}
.m91_c00090{transform:matrix(0.174410,0.002965,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174410,0.002965,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174410,0.002965,-0.004249,0.249964,0,0);}
.m59_c00090{transform:matrix(0.174593,0.003317,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174593,0.003317,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174593,0.003317,-0.004749,0.249955,0,0);}
.m9_c00090{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);}
.m2c_c00090{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);}
.m54_c00090{transform:matrix(0.177133,0.003366,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177133,0.003366,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177133,0.003366,-0.004749,0.249955,0,0);}
.m104_c00090{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);}
.m39_c00090{transform:matrix(0.177410,0.003548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177410,0.003548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177410,0.003548,-0.004999,0.249950,0,0);}
.m6e_c00090{transform:matrix(0.177490,0.003550,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177490,0.003550,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177490,0.003550,-0.004999,0.249950,0,0);}
.med_c00090{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);}
.m25_c00090{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);}
.m6a_c00090{transform:matrix(0.178092,0.003918,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178092,0.003918,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178092,0.003918,-0.005499,0.249940,0,0);}
.mb0_c00090{transform:matrix(0.178802,0.002861,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178802,0.002861,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178802,0.002861,-0.003999,0.249968,0,0);}
.m66_c00090{transform:matrix(0.178822,0.003934,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178822,0.003934,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178822,0.003934,-0.005499,0.249940,0,0);}
.m11_c00090{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);}
.m69_c00090{transform:matrix(0.180486,0.003971,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180486,0.003971,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180486,0.003971,-0.005499,0.249940,0,0);}
.m53_c00090{transform:matrix(0.180917,0.003437,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180917,0.003437,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180917,0.003437,-0.004749,0.249955,0,0);}
.m29_c00090{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);}
.mbd_c00090{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);}
.m38_c00090{transform:matrix(0.181799,0.003636,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181799,0.003636,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181799,0.003636,-0.004999,0.249950,0,0);}
.mae_c00090{transform:matrix(0.181802,0.002909,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181802,0.002909,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181802,0.002909,-0.003999,0.249968,0,0);}
.m2d_c00090{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);}
.m9d_c00090{transform:matrix(0.182372,0.002918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182372,0.002918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182372,0.002918,-0.003999,0.249968,0,0);}
.m1e_c00090{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);}
.m21_c00090{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);}
.m32_c00090{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);}
.m48_c00090{transform:matrix(0.183412,0.003485,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183412,0.003485,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183412,0.003485,-0.004749,0.249955,0,0);}
.m98_c00090{transform:matrix(0.184346,0.002950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184346,0.002950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184346,0.002950,-0.003999,0.249968,0,0);}
.m101_c00090{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);}
.m2e_c00090{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);}
.m9b_c00090{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);}
.m5d_c00090{transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);}
.m2f_c00090{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);}
.me0_c00090{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);}
.ma7_c00090{transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);}
.ma1_c00090{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);}
.mc5_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);}
.m12_c00090{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);}
.m7f_c00090{transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187763,0.003192,-0.004249,0.249964,0,0);}
.m3f_c00090{transform:matrix(0.188448,0.003204,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188448,0.003204,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188448,0.003204,-0.004249,0.249964,0,0);}
.m103_c00090{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);}
.m27_c00090{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);}
.me3_c00090{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);}
.m3e_c00090{transform:matrix(0.189643,0.003224,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189643,0.003224,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189643,0.003224,-0.004249,0.249964,0,0);}
.md9_c00090{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);}
.m4f_c00090{transform:matrix(0.189861,0.003607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189861,0.003607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189861,0.003607,-0.004749,0.249955,0,0);}
.m9f_c00090{transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);}
.m1d_c00090{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);}
.m93_c00090{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);}
.m90_c00090{transform:matrix(0.190862,0.003245,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190862,0.003245,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190862,0.003245,-0.004249,0.249964,0,0);}
.m4c_c00090{transform:matrix(0.190936,0.003628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190936,0.003628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190936,0.003628,-0.004749,0.249955,0,0);}
.mca_c00090{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);}
.meb_c00090{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);}
.m95_c00090{transform:matrix(0.192940,0.003087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192940,0.003087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192940,0.003087,-0.003999,0.249968,0,0);}
.ma6_c00090{transform:matrix(0.193000,0.003088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193000,0.003088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193000,0.003088,-0.003999,0.249968,0,0);}
.mbf_c00090{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);}
.m43_c00090{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);}
.m23_c00090{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);}
.m6d_c00090{transform:matrix(0.193676,0.003874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193676,0.003874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193676,0.003874,-0.004999,0.249950,0,0);}
.m5c_c00090{transform:matrix(0.194075,0.003687,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194075,0.003687,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194075,0.003687,-0.004749,0.249955,0,0);}
.mf7_c00090{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);}
.m37_c00090{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);}
.m70_c00090{transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);}
.m3b_c00090{transform:matrix(0.195341,0.003907,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195341,0.003907,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195341,0.003907,-0.004999,0.249950,0,0);}
.m77_c00090{transform:matrix(0.195467,0.003323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195467,0.003323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195467,0.003323,-0.004249,0.249964,0,0);}
.ma0_c00090{transform:matrix(0.195755,0.003132,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195755,0.003132,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195755,0.003132,-0.003999,0.249968,0,0);}
.m85_c00090{transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);}
.mf_c00090{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);}
.m49_c00090{transform:matrix(0.197169,0.003746,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197169,0.003746,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197169,0.003746,-0.004749,0.249955,0,0);}
.m24_c00090{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);}
.m30_c00090{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);}
.m56_c00090{transform:matrix(0.198334,0.003768,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198334,0.003768,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198334,0.003768,-0.004749,0.249955,0,0);}
.m19_c00090{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);}
.m75_c00090{transform:matrix(0.198561,0.003376,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198561,0.003376,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198561,0.003376,-0.004249,0.249964,0,0);}
.mda_c00090{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);}
.m102_c00090{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);}
.m68_c00090{transform:matrix(0.199717,0.004394,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199717,0.004394,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199717,0.004394,-0.005499,0.249940,0,0);}
.m96_c00090{transform:matrix(0.200079,0.003201,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200079,0.003201,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200079,0.003201,-0.003999,0.249968,0,0);}
.m4e_c00090{transform:matrix(0.200299,0.003806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200299,0.003806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200299,0.003806,-0.004749,0.249955,0,0);}
.m63_c00090{transform:matrix(0.200799,0.003815,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200799,0.003815,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200799,0.003815,-0.004749,0.249955,0,0);}
.mef_c00090{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);}
.mad_c00090{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);}
.m1f_c00090{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);}
.mc2_c00090{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);}
.m81_c00090{transform:matrix(0.202316,0.003439,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202316,0.003439,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202316,0.003439,-0.004249,0.249964,0,0);}
.m1b_c00090{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);}
.m94_c00090{transform:matrix(0.202669,0.003243,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202669,0.003243,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202669,0.003243,-0.003999,0.249968,0,0);}
.m86_c00090{transform:matrix(0.203641,0.003462,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203641,0.003462,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203641,0.003462,-0.004249,0.249964,0,0);}
.mf2_c00090{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);}
.mc3_c00090{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);}
.mb3_c00090{transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);}
.md_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);}
.m3a_c00090{transform:matrix(0.205759,0.004115,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205759,0.004115,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205759,0.004115,-0.004999,0.249950,0,0);}
.maf_c00090{transform:matrix(0.205809,0.003293,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205809,0.003293,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205809,0.003293,-0.003999,0.249968,0,0);}
.m100_c00090{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);}
.mcf_c00090{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);}
.me7_c00090{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);}
.mb5_c00090{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);}
.md3_c00090{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);}
.m97_c00090{transform:matrix(0.208418,0.003335,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208418,0.003335,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208418,0.003335,-0.003999,0.249968,0,0);}
.mb2_c00090{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);}
.mb6_c00090{transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);}
.m5f_c00090{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);}
.m5a_c00090{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);}
.m47_c00090{transform:matrix(0.209562,0.003982,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209562,0.003982,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209562,0.003982,-0.004749,0.249955,0,0);}
.ma2_c00090{transform:matrix(0.210053,0.003361,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210053,0.003361,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210053,0.003361,-0.003999,0.249968,0,0);}
.m4b_c00090{transform:matrix(0.211332,0.004015,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211332,0.004015,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211332,0.004015,-0.004749,0.249955,0,0);}
.ma9_c00090{transform:matrix(0.211533,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211533,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211533,0.003385,-0.003999,0.249968,0,0);}
.md0_c00090{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);}
.m83_c00090{transform:matrix(0.212764,0.003617,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212764,0.003617,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212764,0.003617,-0.004249,0.249964,0,0);}
.md2_c00090{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);}
.m7c_c00090{transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);}
.m26_c00090{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);}
.md4_c00090{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);}
.mdb_c00090{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);}
.m80_c00090{transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);}
.m99_c00090{transform:matrix(0.214478,0.003432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214478,0.003432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214478,0.003432,-0.003999,0.249968,0,0);}
.m52_c00090{transform:matrix(0.214676,0.004079,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214676,0.004079,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214676,0.004079,-0.004749,0.249955,0,0);}
.m88_c00090{transform:matrix(0.215184,0.003658,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215184,0.003658,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215184,0.003658,-0.004249,0.249964,0,0);}
.mb8_c00090{transform:matrix(0.215897,0.003454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215897,0.003454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215897,0.003454,-0.003999,0.249968,0,0);}
.m7a_c00090{transform:matrix(0.216789,0.003685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216789,0.003685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216789,0.003685,-0.004249,0.249964,0,0);}
.m67_c00090{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);}
.mba_c00090{transform:matrix(0.217052,0.003473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217052,0.003473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217052,0.003473,-0.003999,0.249968,0,0);}
.mce_c00090{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);}
.mbb_c00090{transform:matrix(0.218437,0.003495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218437,0.003495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218437,0.003495,-0.003999,0.249968,0,0);}
.m1c_c00090{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);}
.mf0_c00090{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);}
.m16_c00090{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);}
.mfb_c00090{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);}
.mcd_c00090{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);}
.m22_c00090{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);}
.md5_c00090{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);}
.m6b_c00090{transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);}
.m60_c00090{transform:matrix(0.221185,0.004203,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221185,0.004203,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221185,0.004203,-0.004749,0.249955,0,0);}
.mee_c00090{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);}
.m3d_c00090{transform:matrix(0.221948,0.003773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221948,0.003773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221948,0.003773,-0.004249,0.249964,0,0);}
.m8e_c00090{transform:matrix(0.222018,0.003774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222018,0.003774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222018,0.003774,-0.004249,0.249964,0,0);}
.mbc_c00090{transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);}
.mab_c00090{transform:matrix(0.223096,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223096,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223096,0.003570,-0.003999,0.249968,0,0);}
.mf6_c00090{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);}
.mc4_c00090{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);}
.mea_c00090{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);}
.mf3_c00090{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);}
.m9e_c00090{transform:matrix(0.224576,0.003593,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224576,0.003593,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224576,0.003593,-0.003999,0.249968,0,0);}
.mfc_c00090{transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.225389,0.004282,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225389,0.004282,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225389,0.004282,-0.004749,0.249955,0,0);}
.mec_c00090{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);}
.m58_c00090{transform:matrix(0.226744,0.004308,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226744,0.004308,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226744,0.004308,-0.004749,0.249955,0,0);}
.m4a_c00090{transform:matrix(0.227174,0.004316,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227174,0.004316,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227174,0.004316,-0.004749,0.249955,0,0);}
.me_c00090{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.mc7_c00090{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);}
.m1a_c00090{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);}
.m33_c00090{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);}
.mb1_c00090{transform:matrix(0.228441,0.003655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228441,0.003655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228441,0.003655,-0.003999,0.249968,0,0);}
.ma3_c00090{transform:matrix(0.228816,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228816,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228816,0.003661,-0.003999,0.249968,0,0);}
.ma8_c00090{transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);}
.m41_c00090{transform:matrix(0.231112,0.003929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231112,0.003929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231112,0.003929,-0.004249,0.249964,0,0);}
.mcc_c00090{transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);}
.m62_c00090{transform:matrix(0.231258,0.004394,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231258,0.004394,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231258,0.004394,-0.004749,0.249955,0,0);}
.m45_c00090{transform:matrix(0.231743,0.004403,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231743,0.004403,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231743,0.004403,-0.004749,0.249955,0,0);}
.m17_c00090{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.mf5_c00090{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);}
.m73_c00090{transform:matrix(0.232131,0.003946,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232131,0.003946,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232131,0.003946,-0.004249,0.249964,0,0);}
.m78_c00090{transform:matrix(0.232396,0.003951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232396,0.003951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232396,0.003951,-0.004249,0.249964,0,0);}
.md1_c00090{transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);}
.mbe_c00090{transform:matrix(0.233485,0.003736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233485,0.003736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233485,0.003736,-0.003999,0.249968,0,0);}
.mac_c00090{transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);}
.m57_c00090{transform:matrix(0.234278,0.004451,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234278,0.004451,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234278,0.004451,-0.004749,0.249955,0,0);}
.m3c_c00090{transform:matrix(0.234301,0.003983,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234301,0.003983,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234301,0.003983,-0.004249,0.249964,0,0);}
.m6f_c00090{transform:matrix(0.234541,0.003987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234541,0.003987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234541,0.003987,-0.004249,0.249964,0,0);}
.m76_c00090{transform:matrix(0.236356,0.004018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236356,0.004018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236356,0.004018,-0.004249,0.249964,0,0);}
.mf9_c00090{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);}
.m15_c00090{transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.239070,0.004064,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239070,0.004064,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239070,0.004064,-0.004249,0.249964,0,0);}
.m2a_c00090{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.mc6_c00090{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);}
.m61_c00090{transform:matrix(0.244166,0.004639,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244166,0.004639,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244166,0.004639,-0.004749,0.249955,0,0);}
.mcb_c00090{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m71_c00090{transform:matrix(0.248574,0.004226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248574,0.004226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248574,0.004226,-0.004249,0.249964,0,0);}
.mde_c00090{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{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);}
.md6_c00090{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m87_c00090{transform:matrix(0.251474,0.004275,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251474,0.004275,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251474,0.004275,-0.004249,0.249964,0,0);}
.md8_c00090{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00090{transform:matrix(0.253128,0.004303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253128,0.004303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253128,0.004303,-0.004249,0.249964,0,0);}
.m82_c00090{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);}
.m8b_c00090{transform:matrix(0.254408,0.004325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254408,0.004325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254408,0.004325,-0.004249,0.249964,0,0);}
.mfa_c00090{transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);}
.m9c_c00090{transform:matrix(0.257792,0.004125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257792,0.004125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257792,0.004125,-0.003999,0.249968,0,0);}
.mf4_c00090{transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00090{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.me1_c00090{transform:matrix(0.258645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258645,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{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);}
.m14_c00090{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00090{transform:matrix(0.260132,0.004422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260132,0.004422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260132,0.004422,-0.004249,0.249964,0,0);}
.m74_c00090{transform:matrix(0.260867,0.004435,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260867,0.004435,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260867,0.004435,-0.004249,0.249964,0,0);}
.mf8_c00090{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);}
.me4_c00090{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.md7_c00090{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{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);}
.mdd_c00090{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);}
.m65_c00090{transform:matrix(0.276463,0.006082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276463,0.006082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276463,0.006082,-0.005499,0.249940,0,0);}
.mb7_c00090{transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);}
.m7d_c00090{transform:matrix(0.280200,0.004763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280200,0.004763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280200,0.004763,-0.004249,0.249964,0,0);}
.me6_c00090{transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283720,0.000000,0.000000,0.250000,0,0);}
.maa_c00090{transform:matrix(0.309100,0.004946,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309100,0.004946,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309100,0.004946,-0.003999,0.249968,0,0);}
.mff_c00090{transform:matrix(0.313740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313740,0.000000,0.000000,0.250000,0,0);}
.mc0_c00090{transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);}
.mc9_c00090{transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330145,0.000000,0.000000,0.250000,0,0);}
.me5_c00090{transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);}
.ma4_c00090{transform:matrix(0.335452,0.005367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.335452,0.005367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.335452,0.005367,-0.003999,0.249968,0,0);}
.me2_c00090{transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);}
.m42_c00090{transform:matrix(0.345900,0.005880,-0.004249,0.249964,0,0);-ms-transform:matrix(0.345900,0.005880,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.345900,0.005880,-0.004249,0.249964,0,0);}
.m0_c00090{transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);}
.m92_c00090{transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358390,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.391480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391480,0.000000,0.000000,0.250000,0,0);}
.mfd_c00090{transform:matrix(0.425400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425400,0.000000,0.000000,0.250000,0,0);}
.me9_c00090{transform:matrix(0.443035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443035,0.000000,0.000000,0.250000,0,0);}
.mdf_c00090{transform:matrix(0.454990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454990,0.000000,0.000000,0.250000,0,0);}
.mdc_c00090{transform:matrix(0.456385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456385,0.000000,0.000000,0.250000,0,0);}
.me8_c00090{transform:matrix(0.471520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471520,0.000000,0.000000,0.250000,0,0);}
.m8d_c00090{transform:matrix(0.509761,0.008666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.509761,0.008666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.509761,0.008666,-0.004249,0.249964,0,0);}
.m6_c00090{transform:matrix(0.513218,0.006159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.513218,0.006159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.513218,0.006159,-0.003000,0.249982,0,0);}
.m46_c00090{transform:matrix(0.528155,0.010035,-0.004749,0.249955,0,0);-ms-transform:matrix(0.528155,0.010035,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.528155,0.010035,-0.004749,0.249955,0,0);}
.m105_c00090{transform:matrix(0.529910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529910,0.000000,0.000000,0.250000,0,0);}
.m8a_c00090{transform:matrix(0.562134,0.009556,-0.004249,0.249964,0,0);-ms-transform:matrix(0.562134,0.009556,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.562134,0.009556,-0.004249,0.249964,0,0);}
.m44_c00090{transform:matrix(0.571842,0.010865,-0.004749,0.249955,0,0);-ms-transform:matrix(0.571842,0.010865,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.571842,0.010865,-0.004749,0.249955,0,0);}
.m4_c00090{transform:matrix(0.608760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608760,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.900285,0.014405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.900285,0.014405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.900285,0.014405,-0.003999,0.249968,0,0);}
.m3_c00090{transform:matrix(0.939660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939660,0.000000,0.000000,0.250000,0,0);}
.mb9_c00090{transform:matrix(3.245635,0.051930,-0.003999,0.249968,0,0);-ms-transform:matrix(3.245635,0.051930,-0.003999,0.249968,0,0);-webkit-transform:matrix(3.245635,0.051930,-0.003999,0.249968,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;}
.fs13_c00090{font-size:22.050000px;}
.fs17_c00090{font-size:42.000000px;}
.fs19_c00090{font-size:45.150000px;}
.fs16_c00090{font-size:46.200000px;}
.fs18_c00090{font-size:48.300000px;}
.fs15_c00090{font-size:48.306182px;}
.fs1_c00090{font-size:49.350000px;}
.fs1b_c00090{font-size:50.400000px;}
.fs14_c00090{font-size:50.406451px;}
.fs0_c00090{font-size:51.450000px;}
.fs1c_c00090{font-size:52.500000px;}
.fs1d_c00090{font-size:53.550000px;}
.fs1a_c00090{font-size:60.900000px;}
.fs5_c00090{font-size:63.000000px;}
.fsa_c00090{font-size:65.111749px;}
.fs6_c00090{font-size:66.150000px;}
.fs11_c00090{font-size:66.159558px;}
.fsf_c00090{font-size:67.209710px;}
.fs4_c00090{font-size:68.250000px;}
.fs12_c00090{font-size:68.259861px;}
.fsd_c00090{font-size:68.266515px;}
.fs7_c00090{font-size:69.300000px;}
.fsb_c00090{font-size:69.312508px;}
.fse_c00090{font-size:69.313859px;}
.fs3_c00090{font-size:70.350000px;}
.fs9_c00090{font-size:70.360165px;}
.fs10_c00090{font-size:71.410317px;}
.fsc_c00090{font-size:72.463076px;}
.fs8_c00090{font-size:75.615118px;}
.fs2_c00090{font-size:129.159298px;}
.y0_c00090{bottom:0.000000px;}
.yd4_c00090{bottom:137.859000px;}
.yd9_c00090{bottom:161.478000px;}
.yd3_c00090{bottom:163.017000px;}
.yd2_c00090{bottom:163.518000px;}
.yd1_c00090{bottom:163.744500px;}
.yd0_c00090{bottom:163.966500px;}
.ycf_c00090{bottom:164.689500px;}
.yce_c00090{bottom:165.033000px;}
.ycd_c00090{bottom:165.457500px;}
.ycc_c00090{bottom:166.299000px;}
.ycb_c00090{bottom:167.319000px;}
.yca_c00090{bottom:167.676000px;}
.yd8_c00090{bottom:179.277000px;}
.yc9_c00090{bottom:182.088000px;}
.yc8_c00090{bottom:183.157500px;}
.yc7_c00090{bottom:183.435000px;}
.yc6_c00090{bottom:183.988500px;}
.yc5_c00090{bottom:184.315500px;}
.yc4_c00090{bottom:185.107500px;}
.yc3_c00090{bottom:185.494500px;}
.yd7_c00090{bottom:198.021000px;}
.yc2_c00090{bottom:199.569000px;}
.yc1_c00090{bottom:200.074500px;}
.yc0_c00090{bottom:200.511000px;}
.ybf_c00090{bottom:201.406500px;}
.ybe_c00090{bottom:202.203000px;}
.ybd_c00090{bottom:202.437000px;}
.ybc_c00090{bottom:203.044500px;}
.yd6_c00090{bottom:214.816500px;}
.ybb_c00090{bottom:217.437000px;}
.yba_c00090{bottom:217.903500px;}
.yb9_c00090{bottom:218.400000px;}
.yb8_c00090{bottom:218.572500px;}
.yb7_c00090{bottom:219.130500px;}
.yb6_c00090{bottom:219.748500px;}
.yb5_c00090{bottom:220.863000px;}
.yd5_c00090{bottom:232.638000px;}
.yb4_c00090{bottom:236.794500px;}
.yb3_c00090{bottom:249.220308px;}
.yb2_c00090{bottom:250.267740px;}
.yb1_c00090{bottom:250.574184px;}
.yb0_c00090{bottom:250.978704px;}
.yaf_c00090{bottom:251.878488px;}
.yae_c00090{bottom:252.230820px;}
.yac_c00090{bottom:252.869616px;}
.yad_c00090{bottom:252.962820px;}
.yab_c00090{bottom:253.100112px;}
.yaa_c00090{bottom:253.656852px;}
.ya9_c00090{bottom:254.079612px;}
.ya8_c00090{bottom:254.244228px;}
.ya7_c00090{bottom:254.850108px;}
.ya6_c00090{bottom:255.292500px;}
.ya5_c00090{bottom:255.689364px;}
.ya4_c00090{bottom:266.910216px;}
.ya3_c00090{bottom:267.529224px;}
.ya2_c00090{bottom:267.780468px;}
.ya1_c00090{bottom:268.249968px;}
.ya0_c00090{bottom:269.120556px;}
.y9f_c00090{bottom:269.797044px;}
.y9e_c00090{bottom:269.983932px;}
.y9d_c00090{bottom:270.586968px;}
.y9c_c00090{bottom:271.254936px;}
.y9b_c00090{bottom:271.575168px;}
.y9a_c00090{bottom:272.008980px;}
.y99_c00090{bottom:272.319996px;}
.y98_c00090{bottom:272.475000px;}
.y97_c00090{bottom:273.251580px;}
.y96_c00090{bottom:273.509844px;}
.y95_c00090{bottom:284.628636px;}
.y94_c00090{bottom:284.961084px;}
.y93_c00090{bottom:285.924660px;}
.y92_c00090{bottom:286.715196px;}
.y91_c00090{bottom:287.298180px;}
.y90_c00090{bottom:287.808348px;}
.y8f_c00090{bottom:288.106380px;}
.y8e_c00090{bottom:288.492012px;}
.y8d_c00090{bottom:289.312668px;}
.y8c_c00090{bottom:289.540908px;}
.y8b_c00090{bottom:289.941852px;}
.y8a_c00090{bottom:290.503596px;}
.y89_c00090{bottom:290.953716px;}
.y88_c00090{bottom:291.692484px;}
.y87_c00090{bottom:292.141500px;}
.y86_c00090{bottom:316.302000px;}
.y85_c00090{bottom:332.425330px;}
.y84_c00090{bottom:333.353301px;}
.y83_c00090{bottom:333.756618px;}
.y82_c00090{bottom:334.447627px;}
.y81_c00090{bottom:336.819751px;}
.y80_c00090{bottom:337.218912px;}
.y7f_c00090{bottom:353.855370px;}
.y7e_c00090{bottom:354.303405px;}
.y7d_c00090{bottom:355.483857px;}
.y7c_c00090{bottom:356.538387px;}
.y7b_c00090{bottom:356.927684px;}
.y7a_c00090{bottom:358.241274px;}
.y79_c00090{bottom:358.847845px;}
.y78_c00090{bottom:359.902375px;}
.y77_c00090{bottom:377.234481px;}
.y76_c00090{bottom:377.728590px;}
.y75_c00090{bottom:378.734551px;}
.y74_c00090{bottom:379.123440px;}
.y73_c00090{bottom:379.921251px;}
.y72_c00090{bottom:380.415436px;}
.y71_c00090{bottom:381.001531px;}
.y70_c00090{bottom:382.046397px;}
.y6f_c00090{bottom:382.585402px;}
.y6e_c00090{bottom:399.763396px;}
.y6d_c00090{bottom:400.501540px;}
.y6c_c00090{bottom:401.255745px;}
.y6b_c00090{bottom:402.301860px;}
.y6a_c00090{bottom:403.241110px;}
.y69_c00090{bottom:404.221581px;}
.y68_c00090{bottom:405.540838px;}
.y67_c00090{bottom:423.947992px;}
.y66_c00090{bottom:424.300581px;}
.y65_c00090{bottom:425.178087px;}
.y64_c00090{bottom:425.778969px;}
.y63_c00090{bottom:427.461000px;}
.y62_c00090{bottom:447.135090px;}
.y61_c00090{bottom:448.912620px;}
.y60_c00090{bottom:449.424660px;}
.y5f_c00090{bottom:450.364500px;}
.y5e_c00090{bottom:468.486276px;}
.y5d_c00090{bottom:469.223298px;}
.y5c_c00090{bottom:470.320746px;}
.y5b_c00090{bottom:471.659919px;}
.y5a_c00090{bottom:472.348134px;}
.y59_c00090{bottom:473.556000px;}
.y58_c00090{bottom:491.100593px;}
.y57_c00090{bottom:492.500361px;}
.y56_c00090{bottom:492.884281px;}
.y55_c00090{bottom:493.298047px;}
.y54_c00090{bottom:494.023536px;}
.y53_c00090{bottom:494.632223px;}
.y52_c00090{bottom:513.494364px;}
.y51_c00090{bottom:513.891353px;}
.y50_c00090{bottom:514.634184px;}
.y4f_c00090{bottom:515.368341px;}
.y4e_c00090{bottom:516.146526px;}
.y4d_c00090{bottom:516.542432px;}
.y4c_c00090{bottom:517.790973px;}
.y4b_c00090{bottom:518.683077px;}
.y4a_c00090{bottom:536.978363px;}
.y49_c00090{bottom:537.400787px;}
.y48_c00090{bottom:538.090304px;}
.y47_c00090{bottom:539.019447px;}
.y46_c00090{bottom:540.413900px;}
.y45_c00090{bottom:541.585900px;}
.y44_c00090{bottom:542.159912px;}
.y43_c00090{bottom:558.778653px;}
.y42_c00090{bottom:559.486964px;}
.y41_c00090{bottom:560.107580px;}
.y40_c00090{bottom:560.798248px;}
.y3f_c00090{bottom:562.176451px;}
.y3e_c00090{bottom:562.966814px;}
.y3d_c00090{bottom:564.306000px;}
.y3c_c00090{bottom:626.453508px;}
.y3b_c00090{bottom:627.552012px;}
.y3a_c00090{bottom:628.562935px;}
.y39_c00090{bottom:629.009359px;}
.y38_c00090{bottom:629.588935px;}
.y37_c00090{bottom:630.184500px;}
.y36_c00090{bottom:648.682498px;}
.y35_c00090{bottom:649.760358px;}
.y34_c00090{bottom:650.513322px;}
.y33_c00090{bottom:650.903498px;}
.y32_c00090{bottom:651.457561px;}
.y31_c00090{bottom:652.052400px;}
.y30_c00090{bottom:652.593000px;}
.y2f_c00090{bottom:671.775360px;}
.y2e_c00090{bottom:672.497400px;}
.y2d_c00090{bottom:673.427850px;}
.y2c_c00090{bottom:674.043540px;}
.y2b_c00090{bottom:675.475110px;}
.y2a_c00090{bottom:675.816000px;}
.y29_c00090{bottom:693.369000px;}
.y28_c00090{bottom:693.867000px;}
.y27_c00090{bottom:694.195500px;}
.y26_c00090{bottom:694.734000px;}
.y25_c00090{bottom:695.008500px;}
.y24_c00090{bottom:695.827500px;}
.y23_c00090{bottom:696.166500px;}
.y22_c00090{bottom:696.550500px;}
.y21_c00090{bottom:697.414500px;}
.y20_c00090{bottom:717.190500px;}
.y1f_c00090{bottom:717.625500px;}
.y1e_c00090{bottom:718.068000px;}
.y1d_c00090{bottom:718.950000px;}
.y1c_c00090{bottom:719.514000px;}
.y1b_c00090{bottom:720.403500px;}
.y1a_c00090{bottom:721.177500px;}
.y19_c00090{bottom:721.726500px;}
.y18_c00090{bottom:722.527500px;}
.y17_c00090{bottom:738.120000px;}
.y16_c00090{bottom:739.281000px;}
.y15_c00090{bottom:739.818000px;}
.y14_c00090{bottom:740.911500px;}
.y13_c00090{bottom:741.694500px;}
.y12_c00090{bottom:742.768500px;}
.y11_c00090{bottom:743.866500px;}
.y10_c00090{bottom:744.666000px;}
.yf_c00090{bottom:761.128500px;}
.ye_c00090{bottom:761.848500px;}
.yd_c00090{bottom:762.352500px;}
.yc_c00090{bottom:762.732000px;}
.yb_c00090{bottom:764.233500px;}
.ya_c00090{bottom:765.084000px;}
.y9_c00090{bottom:766.069500px;}
.y8_c00090{bottom:766.804500px;}
.y7_c00090{bottom:786.931500px;}
.y6_c00090{bottom:809.896500px;}
.y5_c00090{bottom:853.596234px;}
.y4_c00090{bottom:854.503632px;}
.y3_c00090{bottom:856.179000px;}
.y2_c00090{bottom:896.265000px;}
.y1_c00090{bottom:911.623500px;}
.h15_c00090{height:22.050000px;}
.h19_c00090{height:42.000000px;}
.h1b_c00090{height:45.150000px;}
.h18_c00090{height:46.200000px;}
.h1a_c00090{height:48.300000px;}
.h17_c00090{height:48.306182px;}
.h3_c00090{height:49.350000px;}
.h1d_c00090{height:50.400000px;}
.h16_c00090{height:50.406451px;}
.h2_c00090{height:51.450000px;}
.h1e_c00090{height:52.500000px;}
.h1f_c00090{height:53.550000px;}
.h1c_c00090{height:60.900000px;}
.h7_c00090{height:63.000000px;}
.hc_c00090{height:65.111749px;}
.h8_c00090{height:66.150000px;}
.h13_c00090{height:66.159558px;}
.h11_c00090{height:67.209710px;}
.h6_c00090{height:68.250000px;}
.h14_c00090{height:68.259861px;}
.hf_c00090{height:68.266515px;}
.h9_c00090{height:69.300000px;}
.hd_c00090{height:69.312508px;}
.h10_c00090{height:69.313859px;}
.h5_c00090{height:70.350000px;}
.hb_c00090{height:70.360165px;}
.h12_c00090{height:71.410317px;}
.he_c00090{height:72.463076px;}
.ha_c00090{height:75.615118px;}
.h4_c00090{height:129.159298px;}
.h1_c00090{height:1005.000000px;}
.h0_c00090{height:1005.150000px;}
.w0_c00090{width:705.450000px;}
.w1_c00090{width:705.750000px;}
.x0_c00090{left:0.000000px;}
.x8a_c00090{left:76.446000px;}
.x82_c00090{left:77.874000px;}
.x6b_c00090{left:80.875500px;}
.x87_c00090{left:82.716000px;}
.x73_c00090{left:85.182072px;}
.x8f_c00090{left:90.180000px;}
.x8b_c00090{left:94.281000px;}
.x74_c00090{left:102.448860px;}
.x89_c00090{left:103.992000px;}
.x6c_c00090{left:108.939000px;}
.x7a_c00090{left:112.731720px;}
.x88_c00090{left:116.475000px;}
.x65_c00090{left:122.071596px;}
.x5b_c00090{left:123.408612px;}
.x41_c00090{left:126.046500px;}
.x29_c00090{left:129.385500px;}
.x13_c00090{left:130.447500px;}
.x69_c00090{left:143.957628px;}
.x6a_c00090{left:145.800000px;}
.x83_c00090{left:147.520500px;}
.x53_c00090{left:148.959000px;}
.x5f_c00090{left:153.367477px;}
.x57_c00090{left:155.781000px;}
.x3c_c00090{left:157.978500px;}
.x30_c00090{left:159.829500px;}
.x36_c00090{left:163.669500px;}
.xa_c00090{left:165.510000px;}
.x14_c00090{left:171.297000px;}
.x1b_c00090{left:172.825500px;}
.x31_c00090{left:176.874000px;}
.x4b_c00090{left:181.315978px;}
.x6d_c00090{left:183.244500px;}
.x75_c00090{left:185.362704px;}
.x2a_c00090{left:186.963000px;}
.x3d_c00090{left:189.324000px;}
.xb_c00090{left:191.160000px;}
.xf_c00090{left:192.240000px;}
.x90_c00090{left:194.400000px;}
.x37_c00090{left:195.469500px;}
.x42_c00090{left:196.530000px;}
.x7b_c00090{left:199.415004px;}
.x22_c00090{left:201.465000px;}
.x54_c00090{left:203.862000px;}
.x56_c00090{left:205.228500px;}
.x8c_c00090{left:208.587000px;}
.x60_c00090{left:211.387983px;}
.x2b_c00090{left:212.583000px;}
.x66_c00090{left:214.399540px;}
.xc_c00090{left:217.620000px;}
.x81_c00090{left:218.700000px;}
.x3e_c00090{left:219.828000px;}
.x84_c00090{left:221.037000px;}
.x48_c00090{left:222.817136px;}
.x50_c00090{left:223.902928px;}
.x15_c00090{left:226.054500px;}
.x7c_c00090{left:229.588464px;}
.x1c_c00090{left:230.610000px;}
.x85_c00090{left:231.778500px;}
.x2c_c00090{left:235.230000px;}
.x91_c00090{left:236.520000px;}
.x43_c00090{left:238.128000px;}
.x23_c00090{left:242.230500px;}
.x10_c00090{left:243.540000px;}
.x32_c00090{left:248.452500px;}
.x7_c00090{left:250.084500px;}
.x58_c00090{left:254.724000px;}
.x6e_c00090{left:257.677500px;}
.x4c_c00090{left:259.348925px;}
.x8d_c00090{left:261.939000px;}
.x38_c00090{left:263.052000px;}
.x7d_c00090{left:269.354736px;}
.x61_c00090{left:271.403463px;}
.x16_c00090{left:273.270000px;}
.x51_c00090{left:275.749359px;}
.x11_c00090{left:277.560000px;}
.x33_c00090{left:279.237000px;}
.xd_c00090{left:284.040000px;}
.x39_c00090{left:286.003500px;}
.x1d_c00090{left:287.116500px;}
.x24_c00090{left:289.015500px;}
.x59_c00090{left:290.070000px;}
.x86_c00090{left:292.042500px;}
.x5c_c00090{left:293.813298px;}
.x3f_c00090{left:296.530500px;}
.x49_c00090{left:300.316118px;}
.x12_c00090{left:306.180000px;}
.x2d_c00090{left:308.137500px;}
.x8e_c00090{left:309.439500px;}
.x44_c00090{left:310.665000px;}
.xe_c00090{left:314.550000px;}
.x62_c00090{left:315.685698px;}
.x25_c00090{left:318.709500px;}
.x76_c00090{left:320.367864px;}
.x34_c00090{left:325.759500px;}
.x1e_c00090{left:328.339500px;}
.x3a_c00090{left:330.295500px;}
.x7e_c00090{left:331.468728px;}
.x4d_c00090{left:332.752614px;}
.x63_c00090{left:337.325841px;}
.x5a_c00090{left:341.688000px;}
.x2e_c00090{left:344.059500px;}
.x55_c00090{left:345.900000px;}
.x45_c00090{left:347.016000px;}
.x5d_c00090{left:348.906436px;}
.x4a_c00090{left:351.903587px;}
.x40_c00090{left:354.346500px;}
.x17_c00090{left:356.707500px;}
.x35_c00090{left:361.861500px;}
.x94_c00090{left:363.960000px;}
.x26_c00090{left:365.091000px;}
.x67_c00090{left:367.597939px;}
.x95_c00090{left:373.680000px;}
.x9b_c00090{left:374.760000px;}
.x18_c00090{left:377.809500px;}
.x46_c00090{left:379.680000px;}
.x6f_c00090{left:383.583000px;}
.x1f_c00090{left:385.921500px;}
.x27_c00090{left:388.354500px;}
.x8_c00090{left:389.698500px;}
.x3b_c00090{left:393.699000px;}
.x2f_c00090{left:399.123000px;}
.x97_c00090{left:400.410000px;}
.x19_c00090{left:405.841500px;}
.x28_c00090{left:411.250500px;}
.x20_c00090{left:414.178500px;}
.x92_c00090{left:415.530000px;}
.x47_c00090{left:416.959500px;}
.x64_c00090{left:420.710938px;}
.x4e_c00090{left:425.099386px;}
.x5e_c00090{left:427.424259px;}
.x52_c00090{left:432.709264px;}
.x77_c00090{left:435.961212px;}
.x1a_c00090{left:445.857000px;}
.x4f_c00090{left:449.942312px;}
.x98_c00090{left:453.060000px;}
.x68_c00090{left:458.007384px;}
.x9_c00090{left:465.315000px;}
.x78_c00090{left:467.274216px;}
.x70_c00090{left:469.428000px;}
.x7f_c00090{left:471.603192px;}
.x21_c00090{left:475.305000px;}
.x79_c00090{left:484.008480px;}
.x9c_c00090{left:490.860000px;}
.x99_c00090{left:493.020000px;}
.x1_c00090{left:521.100000px;}
.x4_c00090{left:526.230000px;}
.x71_c00090{left:529.651500px;}
.x93_c00090{left:535.680000px;}
.x80_c00090{left:546.445092px;}
.x72_c00090{left:550.429500px;}
.x96_c00090{left:553.770000px;}
.x2_c00090{left:568.620000px;}
.x9a_c00090{left:571.320000px;}
.x9d_c00090{left:574.290000px;}
.x5_c00090{left:588.330000px;}
.x3_c00090{left:601.560000px;}
.x6_c00090{left:621.540000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs13_c00090{font-size:19.600000pt;}
.fs17_c00090{font-size:37.333333pt;}
.fs19_c00090{font-size:40.133333pt;}
.fs16_c00090{font-size:41.066667pt;}
.fs18_c00090{font-size:42.933333pt;}
.fs15_c00090{font-size:42.938828pt;}
.fs1_c00090{font-size:43.866667pt;}
.fs1b_c00090{font-size:44.800000pt;}
.fs14_c00090{font-size:44.805734pt;}
.fs0_c00090{font-size:45.733333pt;}
.fs1c_c00090{font-size:46.666667pt;}
.fs1d_c00090{font-size:47.600000pt;}
.fs1a_c00090{font-size:54.133333pt;}
.fs5_c00090{font-size:56.000000pt;}
.fsa_c00090{font-size:57.877111pt;}
.fs6_c00090{font-size:58.800000pt;}
.fs11_c00090{font-size:58.808496pt;}
.fsf_c00090{font-size:59.741964pt;}
.fs4_c00090{font-size:60.666667pt;}
.fs12_c00090{font-size:60.675432pt;}
.fsd_c00090{font-size:60.681346pt;}
.fs7_c00090{font-size:61.600000pt;}
.fsb_c00090{font-size:61.611118pt;}
.fse_c00090{font-size:61.612319pt;}
.fs3_c00090{font-size:62.533333pt;}
.fs9_c00090{font-size:62.542369pt;}
.fs10_c00090{font-size:63.475837pt;}
.fsc_c00090{font-size:64.411623pt;}
.fs8_c00090{font-size:67.213439pt;}
.fs2_c00090{font-size:114.808265pt;}
.y0_c00090{bottom:0.000000pt;}
.yd4_c00090{bottom:122.541333pt;}
.yd9_c00090{bottom:143.536000pt;}
.yd3_c00090{bottom:144.904000pt;}
.yd2_c00090{bottom:145.349333pt;}
.yd1_c00090{bottom:145.550667pt;}
.yd0_c00090{bottom:145.748000pt;}
.ycf_c00090{bottom:146.390667pt;}
.yce_c00090{bottom:146.696000pt;}
.ycd_c00090{bottom:147.073333pt;}
.ycc_c00090{bottom:147.821333pt;}
.ycb_c00090{bottom:148.728000pt;}
.yca_c00090{bottom:149.045333pt;}
.yd8_c00090{bottom:159.357333pt;}
.yc9_c00090{bottom:161.856000pt;}
.yc8_c00090{bottom:162.806667pt;}
.yc7_c00090{bottom:163.053333pt;}
.yc6_c00090{bottom:163.545333pt;}
.yc5_c00090{bottom:163.836000pt;}
.yc4_c00090{bottom:164.540000pt;}
.yc3_c00090{bottom:164.884000pt;}
.yd7_c00090{bottom:176.018667pt;}
.yc2_c00090{bottom:177.394667pt;}
.yc1_c00090{bottom:177.844000pt;}
.yc0_c00090{bottom:178.232000pt;}
.ybf_c00090{bottom:179.028000pt;}
.ybe_c00090{bottom:179.736000pt;}
.ybd_c00090{bottom:179.944000pt;}
.ybc_c00090{bottom:180.484000pt;}
.yd6_c00090{bottom:190.948000pt;}
.ybb_c00090{bottom:193.277333pt;}
.yba_c00090{bottom:193.692000pt;}
.yb9_c00090{bottom:194.133333pt;}
.yb8_c00090{bottom:194.286667pt;}
.yb7_c00090{bottom:194.782667pt;}
.yb6_c00090{bottom:195.332000pt;}
.yb5_c00090{bottom:196.322667pt;}
.yd5_c00090{bottom:206.789333pt;}
.yb4_c00090{bottom:210.484000pt;}
.yb3_c00090{bottom:221.529163pt;}
.yb2_c00090{bottom:222.460213pt;}
.yb1_c00090{bottom:222.732608pt;}
.yb0_c00090{bottom:223.092181pt;}
.yaf_c00090{bottom:223.891989pt;}
.yae_c00090{bottom:224.205173pt;}
.yac_c00090{bottom:224.772992pt;}
.yad_c00090{bottom:224.855840pt;}
.yab_c00090{bottom:224.977877pt;}
.yaa_c00090{bottom:225.472757pt;}
.ya9_c00090{bottom:225.848544pt;}
.ya8_c00090{bottom:225.994869pt;}
.ya7_c00090{bottom:226.533429pt;}
.ya6_c00090{bottom:226.926667pt;}
.ya5_c00090{bottom:227.279435pt;}
.ya4_c00090{bottom:237.253525pt;}
.ya3_c00090{bottom:237.803755pt;}
.ya2_c00090{bottom:238.027083pt;}
.ya1_c00090{bottom:238.444416pt;}
.ya0_c00090{bottom:239.218272pt;}
.y9f_c00090{bottom:239.819595pt;}
.y9e_c00090{bottom:239.985717pt;}
.y9d_c00090{bottom:240.521749pt;}
.y9c_c00090{bottom:241.115499pt;}
.y9b_c00090{bottom:241.400149pt;}
.y9a_c00090{bottom:241.785760pt;}
.y99_c00090{bottom:242.062219pt;}
.y98_c00090{bottom:242.200000pt;}
.y97_c00090{bottom:242.890293pt;}
.y96_c00090{bottom:243.119861pt;}
.y95_c00090{bottom:253.003232pt;}
.y94_c00090{bottom:253.298741pt;}
.y93_c00090{bottom:254.155253pt;}
.y92_c00090{bottom:254.857952pt;}
.y91_c00090{bottom:255.376160pt;}
.y90_c00090{bottom:255.829643pt;}
.y8f_c00090{bottom:256.094560pt;}
.y8e_c00090{bottom:256.437344pt;}
.y8d_c00090{bottom:257.166816pt;}
.y8c_c00090{bottom:257.369696pt;}
.y8b_c00090{bottom:257.726091pt;}
.y8a_c00090{bottom:258.225419pt;}
.y89_c00090{bottom:258.625525pt;}
.y88_c00090{bottom:259.282208pt;}
.y87_c00090{bottom:259.681333pt;}
.y86_c00090{bottom:281.157333pt;}
.y85_c00090{bottom:295.489183pt;}
.y84_c00090{bottom:296.314045pt;}
.y83_c00090{bottom:296.672549pt;}
.y82_c00090{bottom:297.286780pt;}
.y81_c00090{bottom:299.395335pt;}
.y80_c00090{bottom:299.750144pt;}
.y7f_c00090{bottom:314.538107pt;}
.y7e_c00090{bottom:314.936360pt;}
.y7d_c00090{bottom:315.985651pt;}
.y7c_c00090{bottom:316.923011pt;}
.y7b_c00090{bottom:317.269052pt;}
.y7a_c00090{bottom:318.436688pt;}
.y79_c00090{bottom:318.975863pt;}
.y78_c00090{bottom:319.913223pt;}
.y77_c00090{bottom:335.319539pt;}
.y76_c00090{bottom:335.758747pt;}
.y75_c00090{bottom:336.652935pt;}
.y74_c00090{bottom:336.998613pt;}
.y73_c00090{bottom:337.707779pt;}
.y72_c00090{bottom:338.147055pt;}
.y71_c00090{bottom:338.668028pt;}
.y70_c00090{bottom:339.596797pt;}
.y6f_c00090{bottom:340.075913pt;}
.y6e_c00090{bottom:355.345241pt;}
.y6d_c00090{bottom:356.001369pt;}
.y6c_c00090{bottom:356.671773pt;}
.y6b_c00090{bottom:357.601653pt;}
.y6a_c00090{bottom:358.436543pt;}
.y69_c00090{bottom:359.308072pt;}
.y68_c00090{bottom:360.480745pt;}
.y67_c00090{bottom:376.842660pt;}
.y66_c00090{bottom:377.156072pt;}
.y65_c00090{bottom:377.936077pt;}
.y64_c00090{bottom:378.470195pt;}
.y63_c00090{bottom:379.965333pt;}
.y62_c00090{bottom:397.453413pt;}
.y61_c00090{bottom:399.033440pt;}
.y60_c00090{bottom:399.488587pt;}
.y5f_c00090{bottom:400.324000pt;}
.y5e_c00090{bottom:416.432245pt;}
.y5d_c00090{bottom:417.087376pt;}
.y5c_c00090{bottom:418.062885pt;}
.y5b_c00090{bottom:419.253261pt;}
.y5a_c00090{bottom:419.865008pt;}
.y59_c00090{bottom:420.938667pt;}
.y58_c00090{bottom:436.533860pt;}
.y57_c00090{bottom:437.778099pt;}
.y56_c00090{bottom:438.119361pt;}
.y55_c00090{bottom:438.487153pt;}
.y54_c00090{bottom:439.132032pt;}
.y53_c00090{bottom:439.673087pt;}
.y52_c00090{bottom:456.439435pt;}
.y51_c00090{bottom:456.792313pt;}
.y50_c00090{bottom:457.452608pt;}
.y4f_c00090{bottom:458.105192pt;}
.y4e_c00090{bottom:458.796912pt;}
.y4d_c00090{bottom:459.148828pt;}
.y4c_c00090{bottom:460.258643pt;}
.y4b_c00090{bottom:461.051624pt;}
.y4a_c00090{bottom:477.314100pt;}
.y49_c00090{bottom:477.689588pt;}
.y48_c00090{bottom:478.302492pt;}
.y47_c00090{bottom:479.128397pt;}
.y46_c00090{bottom:480.367911pt;}
.y45_c00090{bottom:481.409689pt;}
.y44_c00090{bottom:481.919921pt;}
.y43_c00090{bottom:496.692136pt;}
.y42_c00090{bottom:497.321745pt;}
.y41_c00090{bottom:497.873404pt;}
.y40_c00090{bottom:498.487332pt;}
.y3f_c00090{bottom:499.712401pt;}
.y3e_c00090{bottom:500.414945pt;}
.y3d_c00090{bottom:501.605333pt;}
.y3c_c00090{bottom:556.847563pt;}
.y3b_c00090{bottom:557.824011pt;}
.y3a_c00090{bottom:558.722609pt;}
.y39_c00090{bottom:559.119431pt;}
.y38_c00090{bottom:559.634609pt;}
.y37_c00090{bottom:560.164000pt;}
.y36_c00090{bottom:576.606665pt;}
.y35_c00090{bottom:577.564763pt;}
.y34_c00090{bottom:578.234064pt;}
.y33_c00090{bottom:578.580887pt;}
.y32_c00090{bottom:579.073388pt;}
.y31_c00090{bottom:579.602133pt;}
.y30_c00090{bottom:580.082667pt;}
.y2f_c00090{bottom:597.133653pt;}
.y2e_c00090{bottom:597.775467pt;}
.y2d_c00090{bottom:598.602533pt;}
.y2c_c00090{bottom:599.149813pt;}
.y2b_c00090{bottom:600.422320pt;}
.y2a_c00090{bottom:600.725333pt;}
.y29_c00090{bottom:616.328000pt;}
.y28_c00090{bottom:616.770667pt;}
.y27_c00090{bottom:617.062667pt;}
.y26_c00090{bottom:617.541333pt;}
.y25_c00090{bottom:617.785333pt;}
.y24_c00090{bottom:618.513333pt;}
.y23_c00090{bottom:618.814667pt;}
.y22_c00090{bottom:619.156000pt;}
.y21_c00090{bottom:619.924000pt;}
.y20_c00090{bottom:637.502667pt;}
.y1f_c00090{bottom:637.889333pt;}
.y1e_c00090{bottom:638.282667pt;}
.y1d_c00090{bottom:639.066667pt;}
.y1c_c00090{bottom:639.568000pt;}
.y1b_c00090{bottom:640.358667pt;}
.y1a_c00090{bottom:641.046667pt;}
.y19_c00090{bottom:641.534667pt;}
.y18_c00090{bottom:642.246667pt;}
.y17_c00090{bottom:656.106667pt;}
.y16_c00090{bottom:657.138667pt;}
.y15_c00090{bottom:657.616000pt;}
.y14_c00090{bottom:658.588000pt;}
.y13_c00090{bottom:659.284000pt;}
.y12_c00090{bottom:660.238667pt;}
.y11_c00090{bottom:661.214667pt;}
.y10_c00090{bottom:661.925333pt;}
.yf_c00090{bottom:676.558667pt;}
.ye_c00090{bottom:677.198667pt;}
.yd_c00090{bottom:677.646667pt;}
.yc_c00090{bottom:677.984000pt;}
.yb_c00090{bottom:679.318667pt;}
.ya_c00090{bottom:680.074667pt;}
.y9_c00090{bottom:680.950667pt;}
.y8_c00090{bottom:681.604000pt;}
.y7_c00090{bottom:699.494667pt;}
.y6_c00090{bottom:719.908000pt;}
.y5_c00090{bottom:758.752208pt;}
.y4_c00090{bottom:759.558784pt;}
.y3_c00090{bottom:761.048000pt;}
.y2_c00090{bottom:796.680000pt;}
.y1_c00090{bottom:810.332000pt;}
.h15_c00090{height:19.600000pt;}
.h19_c00090{height:37.333333pt;}
.h1b_c00090{height:40.133333pt;}
.h18_c00090{height:41.066667pt;}
.h1a_c00090{height:42.933333pt;}
.h17_c00090{height:42.938828pt;}
.h3_c00090{height:43.866667pt;}
.h1d_c00090{height:44.800000pt;}
.h16_c00090{height:44.805734pt;}
.h2_c00090{height:45.733333pt;}
.h1e_c00090{height:46.666667pt;}
.h1f_c00090{height:47.600000pt;}
.h1c_c00090{height:54.133333pt;}
.h7_c00090{height:56.000000pt;}
.hc_c00090{height:57.877111pt;}
.h8_c00090{height:58.800000pt;}
.h13_c00090{height:58.808496pt;}
.h11_c00090{height:59.741964pt;}
.h6_c00090{height:60.666667pt;}
.h14_c00090{height:60.675432pt;}
.hf_c00090{height:60.681346pt;}
.h9_c00090{height:61.600000pt;}
.hd_c00090{height:61.611118pt;}
.h10_c00090{height:61.612319pt;}
.h5_c00090{height:62.533333pt;}
.hb_c00090{height:62.542369pt;}
.h12_c00090{height:63.475837pt;}
.he_c00090{height:64.411623pt;}
.ha_c00090{height:67.213439pt;}
.h4_c00090{height:114.808265pt;}
.h1_c00090{height:893.333333pt;}
.h0_c00090{height:893.466667pt;}
.w0_c00090{width:627.066667pt;}
.w1_c00090{width:627.333333pt;}
.x0_c00090{left:0.000000pt;}
.x8a_c00090{left:67.952000pt;}
.x82_c00090{left:69.221333pt;}
.x6b_c00090{left:71.889333pt;}
.x87_c00090{left:73.525333pt;}
.x73_c00090{left:75.717397pt;}
.x8f_c00090{left:80.160000pt;}
.x8b_c00090{left:83.805333pt;}
.x74_c00090{left:91.065653pt;}
.x89_c00090{left:92.437333pt;}
.x6c_c00090{left:96.834667pt;}
.x7a_c00090{left:100.205973pt;}
.x88_c00090{left:103.533333pt;}
.x65_c00090{left:108.508085pt;}
.x5b_c00090{left:109.696544pt;}
.x41_c00090{left:112.041333pt;}
.x29_c00090{left:115.009333pt;}
.x13_c00090{left:115.953333pt;}
.x69_c00090{left:127.962336pt;}
.x6a_c00090{left:129.600000pt;}
.x83_c00090{left:131.129333pt;}
.x53_c00090{left:132.408000pt;}
.x5f_c00090{left:136.326647pt;}
.x57_c00090{left:138.472000pt;}
.x3c_c00090{left:140.425333pt;}
.x30_c00090{left:142.070667pt;}
.x36_c00090{left:145.484000pt;}
.xa_c00090{left:147.120000pt;}
.x14_c00090{left:152.264000pt;}
.x1b_c00090{left:153.622667pt;}
.x31_c00090{left:157.221333pt;}
.x4b_c00090{left:161.169759pt;}
.x6d_c00090{left:162.884000pt;}
.x75_c00090{left:164.766848pt;}
.x2a_c00090{left:166.189333pt;}
.x3d_c00090{left:168.288000pt;}
.xb_c00090{left:169.920000pt;}
.xf_c00090{left:170.880000pt;}
.x90_c00090{left:172.800000pt;}
.x37_c00090{left:173.750667pt;}
.x42_c00090{left:174.693333pt;}
.x7b_c00090{left:177.257781pt;}
.x22_c00090{left:179.080000pt;}
.x54_c00090{left:181.210667pt;}
.x56_c00090{left:182.425333pt;}
.x8c_c00090{left:185.410667pt;}
.x60_c00090{left:187.900429pt;}
.x2b_c00090{left:188.962667pt;}
.x66_c00090{left:190.577369pt;}
.xc_c00090{left:193.440000pt;}
.x81_c00090{left:194.400000pt;}
.x3e_c00090{left:195.402667pt;}
.x84_c00090{left:196.477333pt;}
.x48_c00090{left:198.059676pt;}
.x50_c00090{left:199.024825pt;}
.x15_c00090{left:200.937333pt;}
.x7c_c00090{left:204.078635pt;}
.x1c_c00090{left:204.986667pt;}
.x85_c00090{left:206.025333pt;}
.x2c_c00090{left:209.093333pt;}
.x91_c00090{left:210.240000pt;}
.x43_c00090{left:211.669333pt;}
.x23_c00090{left:215.316000pt;}
.x10_c00090{left:216.480000pt;}
.x32_c00090{left:220.846667pt;}
.x7_c00090{left:222.297333pt;}
.x58_c00090{left:226.421333pt;}
.x6e_c00090{left:229.046667pt;}
.x4c_c00090{left:230.532377pt;}
.x8d_c00090{left:232.834667pt;}
.x38_c00090{left:233.824000pt;}
.x7d_c00090{left:239.426432pt;}
.x61_c00090{left:241.247523pt;}
.x16_c00090{left:242.906667pt;}
.x51_c00090{left:245.110541pt;}
.x11_c00090{left:246.720000pt;}
.x33_c00090{left:248.210667pt;}
.xd_c00090{left:252.480000pt;}
.x39_c00090{left:254.225333pt;}
.x1d_c00090{left:255.214667pt;}
.x24_c00090{left:256.902667pt;}
.x59_c00090{left:257.840000pt;}
.x86_c00090{left:259.593333pt;}
.x5c_c00090{left:261.167376pt;}
.x3f_c00090{left:263.582667pt;}
.x49_c00090{left:266.947660pt;}
.x12_c00090{left:272.160000pt;}
.x2d_c00090{left:273.900000pt;}
.x8e_c00090{left:275.057333pt;}
.x44_c00090{left:276.146667pt;}
.xe_c00090{left:279.600000pt;}
.x62_c00090{left:280.609509pt;}
.x25_c00090{left:283.297333pt;}
.x76_c00090{left:284.771435pt;}
.x34_c00090{left:289.564000pt;}
.x1e_c00090{left:291.857333pt;}
.x3a_c00090{left:293.596000pt;}
.x7e_c00090{left:294.638869pt;}
.x4d_c00090{left:295.780101pt;}
.x63_c00090{left:299.845192pt;}
.x5a_c00090{left:303.722667pt;}
.x2e_c00090{left:305.830667pt;}
.x55_c00090{left:307.466667pt;}
.x45_c00090{left:308.458667pt;}
.x5d_c00090{left:310.139055pt;}
.x4a_c00090{left:312.803188pt;}
.x40_c00090{left:314.974667pt;}
.x17_c00090{left:317.073333pt;}
.x35_c00090{left:321.654667pt;}
.x94_c00090{left:323.520000pt;}
.x26_c00090{left:324.525333pt;}
.x67_c00090{left:326.753724pt;}
.x95_c00090{left:332.160000pt;}
.x9b_c00090{left:333.120000pt;}
.x18_c00090{left:335.830667pt;}
.x46_c00090{left:337.493333pt;}
.x6f_c00090{left:340.962667pt;}
.x1f_c00090{left:343.041333pt;}
.x27_c00090{left:345.204000pt;}
.x8_c00090{left:346.398667pt;}
.x3b_c00090{left:349.954667pt;}
.x2f_c00090{left:354.776000pt;}
.x97_c00090{left:355.920000pt;}
.x19_c00090{left:360.748000pt;}
.x28_c00090{left:365.556000pt;}
.x20_c00090{left:368.158667pt;}
.x92_c00090{left:369.360000pt;}
.x47_c00090{left:370.630667pt;}
.x64_c00090{left:373.965279pt;}
.x4e_c00090{left:377.866121pt;}
.x5e_c00090{left:379.932675pt;}
.x52_c00090{left:384.630457pt;}
.x77_c00090{left:387.521077pt;}
.x1a_c00090{left:396.317333pt;}
.x4f_c00090{left:399.948721pt;}
.x98_c00090{left:402.720000pt;}
.x68_c00090{left:407.117675pt;}
.x9_c00090{left:413.613333pt;}
.x78_c00090{left:415.354859pt;}
.x70_c00090{left:417.269333pt;}
.x7f_c00090{left:419.202837pt;}
.x21_c00090{left:422.493333pt;}
.x79_c00090{left:430.229760pt;}
.x9c_c00090{left:436.320000pt;}
.x99_c00090{left:438.240000pt;}
.x1_c00090{left:463.200000pt;}
.x4_c00090{left:467.760000pt;}
.x71_c00090{left:470.801333pt;}
.x93_c00090{left:476.160000pt;}
.x80_c00090{left:485.728971pt;}
.x72_c00090{left:489.270667pt;}
.x96_c00090{left:492.240000pt;}
.x2_c00090{left:505.440000pt;}
.x9a_c00090{left:507.840000pt;}
.x9d_c00090{left:510.480000pt;}
.x5_c00090{left:522.960000pt;}
.x3_c00090{left:534.720000pt;}
.x6_c00090{left:552.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8c_c00091{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);}
.m8_c00091{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);}
.ma7_c00091{transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);}
.m9e_c00091{transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);}
.m41_c00091{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);}
.m62_c00091{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);}
.m51_c00091{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);}
.mb_c00091{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m8e_c00091{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);}
.m2b_c00091{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);}
.m58_c00091{transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154520,0.000000,0.000000,0.250000,0,0);}
.m5f_c00091{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);}
.m7e_c00091{transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{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);}
.m5d_c00091{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);}
.m54_c00091{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);}
.m2d_c00091{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);}
.m2c_c00091{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);}
.m2a_c00091{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);}
.m21_c00091{transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);}
.m5e_c00091{transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);}
.m95_c00091{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);}
.ma_c00091{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);}
.m72_c00091{transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{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);}
.m7f_c00091{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);}
.m4f_c00091{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);}
.m1f_c00091{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);}
.m20_c00091{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);}
.m63_c00091{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);}
.m89_c00091{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);}
.m40_c00091{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);}
.m7d_c00091{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);}
.m11_c00091{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);}
.m3b_c00091{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);}
.m53_c00091{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);}
.m28_c00091{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);}
.m44_c00091{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);}
.m3d_c00091{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00091{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);}
.md_c00091{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);}
.m90_c00091{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);}
.m38_c00091{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);}
.m2_c00091{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);}
.m76_c00091{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);}
.m1_c00091{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);}
.m3f_c00091{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);}
.m19_c00091{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);}
.m1c_c00091{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);}
.m78_c00091{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);}
.m88_c00091{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);}
.m81_c00091{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);}
.m86_c00091{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);}
.m10_c00091{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);}
.m5_c00091{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);}
.m65_c00091{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);}
.m4_c00091{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);}
.m3e_c00091{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);}
.m6b_c00091{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);}
.m6e_c00091{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);}
.m6c_c00091{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);}
.m74_c00091{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);}
.m91_c00091{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);}
.m9a_c00091{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);}
.m37_c00091{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);}
.m5b_c00091{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);}
.m8f_c00091{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);}
.m93_c00091{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);}
.m36_c00091{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);}
.m42_c00091{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);}
.m1e_c00091{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);}
.m56_c00091{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);}
.m1a_c00091{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);}
.m7a_c00091{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);}
.m4d_c00091{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);}
.m3c_c00091{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);}
.m69_c00091{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);}
.m18_c00091{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);}
.m87_c00091{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);}
.m27_c00091{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);}
.m46_c00091{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);}
.m68_c00091{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);}
.m1d_c00091{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);}
.m59_c00091{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);}
.m50_c00091{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);}
.m5c_c00091{transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);}
.ma4_c00091{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);}
.m15_c00091{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);}
.m24_c00091{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);}
.m22_c00091{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);}
.m25_c00091{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);}
.m82_c00091{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);}
.m3_c00091{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);}
.m26_c00091{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);}
.mf_c00091{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);}
.mab_c00091{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);}
.m70_c00091{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);}
.m33_c00091{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);}
.m57_c00091{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);}
.m83_c00091{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);}
.m64_c00091{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m30_c00091{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);}
.m8b_c00091{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);}
.m75_c00091{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);}
.m4c_c00091{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);}
.m0_c00091{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);}
.m60_c00091{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);}
.m4b_c00091{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);}
.m29_c00091{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);}
.me_c00091{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);}
.m45_c00091{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);}
.m12_c00091{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);}
.m16_c00091{transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);}
.m8a_c00091{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);}
.m7c_c00091{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);}
.mc_c00091{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);}
.m55_c00091{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);}
.ma1_c00091{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m61_c00091{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);}
.m9c_c00091{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);}
.m2e_c00091{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);}
.m79_c00091{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);}
.mad_c00091{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{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);}
.m31_c00091{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);}
.m23_c00091{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);}
.m9b_c00091{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);}
.m99_c00091{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);}
.m6a_c00091{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);}
.mac_c00091{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);}
.ma6_c00091{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);}
.m2f_c00091{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);}
.m94_c00091{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);}
.m77_c00091{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);}
.m80_c00091{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);}
.m48_c00091{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);}
.m96_c00091{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);}
.m85_c00091{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);}
.m34_c00091{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);}
.m6_c00091{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);}
.m9_c00091{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);}
.m32_c00091{transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);}
.m5a_c00091{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{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);}
.ma8_c00091{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);}
.ma2_c00091{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);}
.m35_c00091{transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{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);}
.m43_c00091{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);}
.m3a_c00091{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);}
.m1b_c00091{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);}
.maa_c00091{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.m6d_c00091{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m9f_c00091{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);}
.m66_c00091{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m8d_c00091{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);}
.m92_c00091{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);}
.m47_c00091{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);}
.ma5_c00091{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);}
.ma3_c00091{transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291360,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{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);}
.m73_c00091{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);}
.ma0_c00091{transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{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);}
.m49_c00091{transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);}
.m98_c00091{transform:matrix(0.374625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374625,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.402205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402205,0.000000,0.000000,0.250000,0,0);}
.m9d_c00091{transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419850,0.000000,0.000000,0.250000,0,0);}
.m97_c00091{transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433465,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.463535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463535,0.000000,0.000000,0.250000,0,0);}
.mae_c00091{transform:matrix(0.519560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519560,0.000000,0.000000,0.250000,0,0);}
.m84_c00091{transform:matrix(0.585205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585205,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.727015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727015,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;}
.fs7_c00091{font-size:49.350000px;}
.fs8_c00091{font-size:52.500000px;}
.fs1_c00091{font-size:68.250000px;}
.fs3_c00091{font-size:70.350000px;}
.fs2_c00091{font-size:71.400000px;}
.fs4_c00091{font-size:72.450000px;}
.fs0_c00091{font-size:74.550000px;}
.fs6_c00091{font-size:75.600000px;}
.fs5_c00091{font-size:148.050000px;}
.y0_c00091{bottom:0.000000px;}
.y18_c00091{bottom:145.771500px;}
.y17_c00091{bottom:165.012000px;}
.y16_c00091{bottom:214.819500px;}
.y15_c00091{bottom:245.542500px;}
.y14_c00091{bottom:268.159500px;}
.y13_c00091{bottom:291.357000px;}
.y12_c00091{bottom:318.807000px;}
.y11_c00091{bottom:342.411000px;}
.y10_c00091{bottom:364.855500px;}
.yf_c00091{bottom:388.099500px;}
.ye_c00091{bottom:410.839500px;}
.yd_c00091{bottom:434.007000px;}
.yc_c00091{bottom:457.240500px;}
.yb_c00091{bottom:497.167500px;}
.ya_c00091{bottom:610.218000px;}
.y9_c00091{bottom:633.652500px;}
.y8_c00091{bottom:656.554500px;}
.y7_c00091{bottom:679.860000px;}
.y6_c00091{bottom:702.343500px;}
.y5_c00091{bottom:725.088000px;}
.y4_c00091{bottom:748.845000px;}
.y3_c00091{bottom:770.701500px;}
.y2_c00091{bottom:793.690500px;}
.y1_c00091{bottom:817.161000px;}
.h9_c00091{height:49.350000px;}
.ha_c00091{height:52.500000px;}
.h3_c00091{height:68.250000px;}
.h5_c00091{height:70.350000px;}
.h4_c00091{height:71.400000px;}
.h6_c00091{height:72.450000px;}
.h2_c00091{height:74.550000px;}
.h8_c00091{height:75.600000px;}
.h7_c00091{height:148.050000px;}
.h0_c00091{height:1008.450000px;}
.h1_c00091{height:1008.750000px;}
.w0_c00091{width:711.720000px;}
.w1_c00091{width:711.750000px;}
.x0_c00091{left:0.000000px;}
.x6b_c00091{left:178.470000px;}
.x6c_c00091{left:203.040000px;}
.x2c_c00091{left:208.440000px;}
.x23_c00091{left:209.790000px;}
.x12_c00091{left:211.680000px;}
.x1a_c00091{left:212.760000px;}
.x6d_c00091{left:218.970000px;}
.x67_c00091{left:224.100000px;}
.x54_c00091{left:232.200000px;}
.x9_c00091{left:234.360000px;}
.x24_c00091{left:238.140000px;}
.x62_c00091{left:239.760000px;}
.x4_c00091{left:247.050000px;}
.x48_c00091{left:248.670000px;}
.x13_c00091{left:251.100000px;}
.x33_c00091{left:252.450000px;}
.x41_c00091{left:259.200000px;}
.x1b_c00091{left:260.550000px;}
.x1_c00091{left:264.870000px;}
.x3a_c00091{left:269.190000px;}
.x49_c00091{left:272.160000px;}
.x6e_c00091{left:274.320000px;}
.x25_c00091{left:278.910000px;}
.x59_c00091{left:281.340000px;}
.x4d_c00091{left:282.690000px;}
.xa_c00091{left:285.930000px;}
.x5d_c00091{left:287.550000px;}
.x63_c00091{left:288.900000px;}
.x34_c00091{left:290.790000px;}
.x5_c00091{left:293.760000px;}
.x3b_c00091{left:297.810000px;}
.x6f_c00091{left:298.890000px;}
.x4e_c00091{left:304.020000px;}
.x2d_c00091{left:308.880000px;}
.x1c_c00091{left:310.770000px;}
.x42_c00091{left:316.980000px;}
.xf_c00091{left:319.410000px;}
.x6_c00091{left:323.190000px;}
.xb_c00091{left:325.080000px;}
.x2_c00091{left:326.700000px;}
.x2e_c00091{left:328.590000px;}
.x4a_c00091{left:331.290000px;}
.x55_c00091{left:332.370000px;}
.x35_c00091{left:334.260000px;}
.x26_c00091{left:337.770000px;}
.x14_c00091{left:339.660000px;}
.x10_c00091{left:343.170000px;}
.x1d_c00091{left:345.060000px;}
.x4f_c00091{left:346.140000px;}
.x43_c00091{left:348.570000px;}
.x70_c00091{left:354.240000px;}
.x36_c00091{left:357.480000px;}
.x15_c00091{left:360.720000px;}
.xc_c00091{left:361.800000px;}
.x11_c00091{left:365.040000px;}
.x50_c00091{left:367.200000px;}
.x1e_c00091{left:368.550000px;}
.x2f_c00091{left:370.440000px;}
.x56_c00091{left:371.520000px;}
.x64_c00091{left:375.300000px;}
.x3c_c00091{left:376.380000px;}
.x7_c00091{left:378.270000px;}
.xd_c00091{left:392.040000px;}
.x16_c00091{left:393.930000px;}
.x3d_c00091{left:397.170000px;}
.x37_c00091{left:401.220000px;}
.x30_c00091{left:403.920000px;}
.x1f_c00091{left:406.620000px;}
.x3_c00091{left:409.590000px;}
.x71_c00091{left:412.560000px;}
.x65_c00091{left:416.610000px;}
.x27_c00091{left:417.690000px;}
.x20_c00091{left:420.930000px;}
.x51_c00091{left:426.060000px;}
.x57_c00091{left:430.380000px;}
.x5a_c00091{left:434.970000px;}
.xe_c00091{left:437.130000px;}
.x8_c00091{left:438.750000px;}
.x5e_c00091{left:440.910000px;}
.x3e_c00091{left:441.990000px;}
.x52_c00091{left:444.690000px;}
.x40_c00091{left:446.040000px;}
.x21_c00091{left:450.360000px;}
.x17_c00091{left:451.440000px;}
.x72_c00091{left:456.300000px;}
.x28_c00091{left:458.190000px;}
.x53_c00091{left:463.590000px;}
.x73_c00091{left:473.310000px;}
.x3f_c00091{left:474.390000px;}
.x4b_c00091{left:475.470000px;}
.x18_c00091{left:478.440000px;}
.x31_c00091{left:483.570000px;}
.x68_c00091{left:484.650000px;}
.x29_c00091{left:487.350000px;}
.x22_c00091{left:495.180000px;}
.x58_c00091{left:503.010000px;}
.x5f_c00091{left:505.440000px;}
.x2a_c00091{left:507.330000px;}
.x38_c00091{left:510.570000px;}
.x44_c00091{left:513.270000px;}
.x4c_c00091{left:517.050000px;}
.x74_c00091{left:518.670000px;}
.x5b_c00091{left:521.100000px;}
.x19_c00091{left:522.720000px;}
.x78_c00091{left:530.550000px;}
.x66_c00091{left:536.220000px;}
.x45_c00091{left:537.570000px;}
.x2b_c00091{left:539.460000px;}
.x32_c00091{left:541.350000px;}
.x39_c00091{left:546.480000px;}
.x5c_c00091{left:547.830000px;}
.x60_c00091{left:551.880000px;}
.x69_c00091{left:553.230000px;}
.x46_c00091{left:565.920000px;}
.x47_c00091{left:593.190000px;}
.x61_c00091{left:597.780000px;}
.x75_c00091{left:601.290000px;}
.x6a_c00091{left:602.370000px;}
.x79_c00091{left:605.070000px;}
.x7a_c00091{left:622.080000px;}
.x76_c00091{left:649.890000px;}
.x7b_c00091{left:664.200000px;}
.x77_c00091{left:686.880000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fs7_c00091{font-size:43.866667pt;}
.fs8_c00091{font-size:46.666667pt;}
.fs1_c00091{font-size:60.666667pt;}
.fs3_c00091{font-size:62.533333pt;}
.fs2_c00091{font-size:63.466667pt;}
.fs4_c00091{font-size:64.400000pt;}
.fs0_c00091{font-size:66.266667pt;}
.fs6_c00091{font-size:67.200000pt;}
.fs5_c00091{font-size:131.600000pt;}
.y0_c00091{bottom:0.000000pt;}
.y18_c00091{bottom:129.574667pt;}
.y17_c00091{bottom:146.677333pt;}
.y16_c00091{bottom:190.950667pt;}
.y15_c00091{bottom:218.260000pt;}
.y14_c00091{bottom:238.364000pt;}
.y13_c00091{bottom:258.984000pt;}
.y12_c00091{bottom:283.384000pt;}
.y11_c00091{bottom:304.365333pt;}
.y10_c00091{bottom:324.316000pt;}
.yf_c00091{bottom:344.977333pt;}
.ye_c00091{bottom:365.190667pt;}
.yd_c00091{bottom:385.784000pt;}
.yc_c00091{bottom:406.436000pt;}
.yb_c00091{bottom:441.926667pt;}
.ya_c00091{bottom:542.416000pt;}
.y9_c00091{bottom:563.246667pt;}
.y8_c00091{bottom:583.604000pt;}
.y7_c00091{bottom:604.320000pt;}
.y6_c00091{bottom:624.305333pt;}
.y5_c00091{bottom:644.522667pt;}
.y4_c00091{bottom:665.640000pt;}
.y3_c00091{bottom:685.068000pt;}
.y2_c00091{bottom:705.502667pt;}
.y1_c00091{bottom:726.365333pt;}
.h9_c00091{height:43.866667pt;}
.ha_c00091{height:46.666667pt;}
.h3_c00091{height:60.666667pt;}
.h5_c00091{height:62.533333pt;}
.h4_c00091{height:63.466667pt;}
.h6_c00091{height:64.400000pt;}
.h2_c00091{height:66.266667pt;}
.h8_c00091{height:67.200000pt;}
.h7_c00091{height:131.600000pt;}
.h0_c00091{height:896.400000pt;}
.h1_c00091{height:896.666667pt;}
.w0_c00091{width:632.640000pt;}
.w1_c00091{width:632.666667pt;}
.x0_c00091{left:0.000000pt;}
.x6b_c00091{left:158.640000pt;}
.x6c_c00091{left:180.480000pt;}
.x2c_c00091{left:185.280000pt;}
.x23_c00091{left:186.480000pt;}
.x12_c00091{left:188.160000pt;}
.x1a_c00091{left:189.120000pt;}
.x6d_c00091{left:194.640000pt;}
.x67_c00091{left:199.200000pt;}
.x54_c00091{left:206.400000pt;}
.x9_c00091{left:208.320000pt;}
.x24_c00091{left:211.680000pt;}
.x62_c00091{left:213.120000pt;}
.x4_c00091{left:219.600000pt;}
.x48_c00091{left:221.040000pt;}
.x13_c00091{left:223.200000pt;}
.x33_c00091{left:224.400000pt;}
.x41_c00091{left:230.400000pt;}
.x1b_c00091{left:231.600000pt;}
.x1_c00091{left:235.440000pt;}
.x3a_c00091{left:239.280000pt;}
.x49_c00091{left:241.920000pt;}
.x6e_c00091{left:243.840000pt;}
.x25_c00091{left:247.920000pt;}
.x59_c00091{left:250.080000pt;}
.x4d_c00091{left:251.280000pt;}
.xa_c00091{left:254.160000pt;}
.x5d_c00091{left:255.600000pt;}
.x63_c00091{left:256.800000pt;}
.x34_c00091{left:258.480000pt;}
.x5_c00091{left:261.120000pt;}
.x3b_c00091{left:264.720000pt;}
.x6f_c00091{left:265.680000pt;}
.x4e_c00091{left:270.240000pt;}
.x2d_c00091{left:274.560000pt;}
.x1c_c00091{left:276.240000pt;}
.x42_c00091{left:281.760000pt;}
.xf_c00091{left:283.920000pt;}
.x6_c00091{left:287.280000pt;}
.xb_c00091{left:288.960000pt;}
.x2_c00091{left:290.400000pt;}
.x2e_c00091{left:292.080000pt;}
.x4a_c00091{left:294.480000pt;}
.x55_c00091{left:295.440000pt;}
.x35_c00091{left:297.120000pt;}
.x26_c00091{left:300.240000pt;}
.x14_c00091{left:301.920000pt;}
.x10_c00091{left:305.040000pt;}
.x1d_c00091{left:306.720000pt;}
.x4f_c00091{left:307.680000pt;}
.x43_c00091{left:309.840000pt;}
.x70_c00091{left:314.880000pt;}
.x36_c00091{left:317.760000pt;}
.x15_c00091{left:320.640000pt;}
.xc_c00091{left:321.600000pt;}
.x11_c00091{left:324.480000pt;}
.x50_c00091{left:326.400000pt;}
.x1e_c00091{left:327.600000pt;}
.x2f_c00091{left:329.280000pt;}
.x56_c00091{left:330.240000pt;}
.x64_c00091{left:333.600000pt;}
.x3c_c00091{left:334.560000pt;}
.x7_c00091{left:336.240000pt;}
.xd_c00091{left:348.480000pt;}
.x16_c00091{left:350.160000pt;}
.x3d_c00091{left:353.040000pt;}
.x37_c00091{left:356.640000pt;}
.x30_c00091{left:359.040000pt;}
.x1f_c00091{left:361.440000pt;}
.x3_c00091{left:364.080000pt;}
.x71_c00091{left:366.720000pt;}
.x65_c00091{left:370.320000pt;}
.x27_c00091{left:371.280000pt;}
.x20_c00091{left:374.160000pt;}
.x51_c00091{left:378.720000pt;}
.x57_c00091{left:382.560000pt;}
.x5a_c00091{left:386.640000pt;}
.xe_c00091{left:388.560000pt;}
.x8_c00091{left:390.000000pt;}
.x5e_c00091{left:391.920000pt;}
.x3e_c00091{left:392.880000pt;}
.x52_c00091{left:395.280000pt;}
.x40_c00091{left:396.480000pt;}
.x21_c00091{left:400.320000pt;}
.x17_c00091{left:401.280000pt;}
.x72_c00091{left:405.600000pt;}
.x28_c00091{left:407.280000pt;}
.x53_c00091{left:412.080000pt;}
.x73_c00091{left:420.720000pt;}
.x3f_c00091{left:421.680000pt;}
.x4b_c00091{left:422.640000pt;}
.x18_c00091{left:425.280000pt;}
.x31_c00091{left:429.840000pt;}
.x68_c00091{left:430.800000pt;}
.x29_c00091{left:433.200000pt;}
.x22_c00091{left:440.160000pt;}
.x58_c00091{left:447.120000pt;}
.x5f_c00091{left:449.280000pt;}
.x2a_c00091{left:450.960000pt;}
.x38_c00091{left:453.840000pt;}
.x44_c00091{left:456.240000pt;}
.x4c_c00091{left:459.600000pt;}
.x74_c00091{left:461.040000pt;}
.x5b_c00091{left:463.200000pt;}
.x19_c00091{left:464.640000pt;}
.x78_c00091{left:471.600000pt;}
.x66_c00091{left:476.640000pt;}
.x45_c00091{left:477.840000pt;}
.x2b_c00091{left:479.520000pt;}
.x32_c00091{left:481.200000pt;}
.x39_c00091{left:485.760000pt;}
.x5c_c00091{left:486.960000pt;}
.x60_c00091{left:490.560000pt;}
.x69_c00091{left:491.760000pt;}
.x46_c00091{left:503.040000pt;}
.x47_c00091{left:527.280000pt;}
.x61_c00091{left:531.360000pt;}
.x75_c00091{left:534.480000pt;}
.x6a_c00091{left:535.440000pt;}
.x79_c00091{left:537.840000pt;}
.x7a_c00091{left:552.960000pt;}
.x76_c00091{left:577.680000pt;}
.x7b_c00091{left:590.400000pt;}
.x77_c00091{left:610.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mcc_c00092{transform:matrix(0.010423,0.000188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.010423,0.000188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.010423,0.000188,-0.004499,0.249960,0,0);}
.m1b_c00092{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.mf5_c00092{transform:matrix(0.013836,0.000318,-0.005748,0.249934,0,0);-ms-transform:matrix(0.013836,0.000318,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.013836,0.000318,-0.005748,0.249934,0,0);}
.m3f_c00092{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);}
.m4b_c00092{transform:matrix(0.031062,0.000404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.031062,0.000404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.031062,0.000404,-0.003250,0.249979,0,0);}
.ma8_c00092{transform:matrix(0.091207,0.001824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.091207,0.001824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.091207,0.001824,-0.004999,0.249950,0,0);}
.m1d_c00092{transform:matrix(0.092320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092320,0.000000,0.000000,0.250000,0,0);}
.m99_c00092{transform:matrix(0.093446,0.001869,-0.004999,0.249950,0,0);-ms-transform:matrix(0.093446,0.001869,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.093446,0.001869,-0.004999,0.249950,0,0);}
.m57_c00092{transform:matrix(0.096811,0.001936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.096811,0.001936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.096811,0.001936,-0.004999,0.249950,0,0);}
.m4a_c00092{transform:matrix(0.099812,0.001298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.099812,0.001298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.099812,0.001298,-0.003250,0.249979,0,0);}
.m47_c00092{transform:matrix(0.100876,0.001311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.100876,0.001311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.100876,0.001311,-0.003250,0.249979,0,0);}
.mc2_c00092{transform:matrix(0.118881,0.002378,-0.004999,0.249950,0,0);-ms-transform:matrix(0.118881,0.002378,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.118881,0.002378,-0.004999,0.249950,0,0);}
.med_c00092{transform:matrix(0.123737,0.002846,-0.005748,0.249934,0,0);-ms-transform:matrix(0.123737,0.002846,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.123737,0.002846,-0.005748,0.249934,0,0);}
.mf3_c00092{transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);-ms-transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);}
.mc6_c00092{transform:matrix(0.141747,0.002835,-0.004999,0.249950,0,0);-ms-transform:matrix(0.141747,0.002835,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.141747,0.002835,-0.004999,0.249950,0,0);}
.m8_c00092{transform:matrix(0.142200,0.001138,-0.002000,0.249992,0,0);-ms-transform:matrix(0.142200,0.001138,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.142200,0.001138,-0.002000,0.249992,0,0);}
.mde_c00092{transform:matrix(0.142382,0.003275,-0.005748,0.249934,0,0);-ms-transform:matrix(0.142382,0.003275,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.142382,0.003275,-0.005748,0.249934,0,0);}
.mee_c00092{transform:matrix(0.143592,0.003303,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143592,0.003303,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143592,0.003303,-0.005748,0.249934,0,0);}
.md9_c00092{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.mdc_c00092{transform:matrix(0.144942,0.003334,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144942,0.003334,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144942,0.003334,-0.005748,0.249934,0,0);}
.m86_c00092{transform:matrix(0.144996,0.002900,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144996,0.002900,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144996,0.002900,-0.004999,0.249950,0,0);}
.mcb_c00092{transform:matrix(0.146411,0.002635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.146411,0.002635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.146411,0.002635,-0.004499,0.249960,0,0);}
.mec_c00092{transform:matrix(0.147016,0.003381,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147016,0.003381,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147016,0.003381,-0.005748,0.249934,0,0);}
.mf4_c00092{transform:matrix(0.147421,0.003391,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147421,0.003391,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147421,0.003391,-0.005748,0.249934,0,0);}
.m64_c00092{transform:matrix(0.147960,0.002959,-0.004999,0.249950,0,0);-ms-transform:matrix(0.147960,0.002959,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.147960,0.002959,-0.004999,0.249950,0,0);}
.m4d_c00092{transform:matrix(0.148042,0.001925,-0.003250,0.249979,0,0);-ms-transform:matrix(0.148042,0.001925,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.148042,0.001925,-0.003250,0.249979,0,0);}
.m77_c00092{transform:matrix(0.148515,0.002970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148515,0.002970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148515,0.002970,-0.004999,0.249950,0,0);}
.m8c_c00092{transform:matrix(0.148875,0.002978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148875,0.002978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148875,0.002978,-0.004999,0.249950,0,0);}
.me5_c00092{transform:matrix(0.150605,0.003464,-0.005748,0.249934,0,0);-ms-transform:matrix(0.150605,0.003464,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.150605,0.003464,-0.005748,0.249934,0,0);}
.mdb_c00092{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);}
.me7_c00092{transform:matrix(0.151625,0.003487,-0.005748,0.249934,0,0);-ms-transform:matrix(0.151625,0.003487,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.151625,0.003487,-0.005748,0.249934,0,0);}
.m4c_c00092{transform:matrix(0.151722,0.001972,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151722,0.001972,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151722,0.001972,-0.003250,0.249979,0,0);}
.mdf_c00092{transform:matrix(0.151865,0.003493,-0.005748,0.249934,0,0);-ms-transform:matrix(0.151865,0.003493,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.151865,0.003493,-0.005748,0.249934,0,0);}
.m70_c00092{transform:matrix(0.152505,0.003050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152505,0.003050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152505,0.003050,-0.004999,0.249950,0,0);}
.m4f_c00092{transform:matrix(0.152674,0.003053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152674,0.003053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152674,0.003053,-0.004999,0.249950,0,0);}
.me9_c00092{transform:matrix(0.152985,0.003519,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152985,0.003519,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152985,0.003519,-0.005748,0.249934,0,0);}
.m83_c00092{transform:matrix(0.154409,0.003088,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154409,0.003088,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154409,0.003088,-0.004999,0.249950,0,0);}
.m2d_c00092{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);}
.mca_c00092{transform:matrix(0.155479,0.003110,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155479,0.003110,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155479,0.003110,-0.004999,0.249950,0,0);}
.me0_c00092{transform:matrix(0.156239,0.003593,-0.005748,0.249934,0,0);-ms-transform:matrix(0.156239,0.003593,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.156239,0.003593,-0.005748,0.249934,0,0);}
.m92_c00092{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);}
.m54_c00092{transform:matrix(0.156364,0.003127,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156364,0.003127,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156364,0.003127,-0.004999,0.249950,0,0);}
.mc5_c00092{transform:matrix(0.156529,0.003131,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156529,0.003131,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156529,0.003131,-0.004999,0.249950,0,0);}
.m14_c00092{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);}
.mac_c00092{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);}
.m9_c00092{transform:matrix(0.161265,0.001290,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161265,0.001290,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161265,0.001290,-0.002000,0.249992,0,0);}
.m3d_c00092{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);}
.me6_c00092{transform:matrix(0.162392,0.003735,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162392,0.003735,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162392,0.003735,-0.005748,0.249934,0,0);}
.m60_c00092{transform:matrix(0.162438,0.003249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162438,0.003249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162438,0.003249,-0.004999,0.249950,0,0);}
.m7f_c00092{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);}
.m87_c00092{transform:matrix(0.163027,0.003261,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163027,0.003261,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163027,0.003261,-0.004999,0.249950,0,0);}
.m4_c00092{transform:matrix(0.163540,0.001308,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163540,0.001308,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163540,0.001308,-0.002000,0.249992,0,0);}
.m61_c00092{transform:matrix(0.163567,0.003271,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163567,0.003271,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163567,0.003271,-0.004999,0.249950,0,0);}
.mb_c00092{transform:matrix(0.163895,0.001311,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163895,0.001311,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163895,0.001311,-0.002000,0.249992,0,0);}
.m66_c00092{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);}
.mc7_c00092{transform:matrix(0.165342,0.003307,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165342,0.003307,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165342,0.003307,-0.004999,0.249950,0,0);}
.m1c_c00092{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);}
.m95_c00092{transform:matrix(0.166797,0.003336,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166797,0.003336,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166797,0.003336,-0.004999,0.249950,0,0);}
.m9d_c00092{transform:matrix(0.167432,0.003349,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167432,0.003349,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167432,0.003349,-0.004999,0.249950,0,0);}
.m98_c00092{transform:matrix(0.168491,0.003370,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168491,0.003370,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168491,0.003370,-0.004999,0.249950,0,0);}
.mea_c00092{transform:matrix(0.168665,0.003879,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168665,0.003879,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168665,0.003879,-0.005748,0.249934,0,0);}
.m85_c00092{transform:matrix(0.169061,0.003381,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169061,0.003381,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169061,0.003381,-0.004999,0.249950,0,0);}
.mb2_c00092{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);}
.m35_c00092{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);}
.me4_c00092{transform:matrix(0.170185,0.003914,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170185,0.003914,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170185,0.003914,-0.005748,0.249934,0,0);}
.m2_c00092{transform:matrix(0.170585,0.001365,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170585,0.001365,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170585,0.001365,-0.002000,0.249992,0,0);}
.m6c_c00092{transform:matrix(0.170736,0.003415,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170736,0.003415,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170736,0.003415,-0.004999,0.249950,0,0);}
.mdd_c00092{transform:matrix(0.170830,0.003929,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170830,0.003929,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170830,0.003929,-0.005748,0.249934,0,0);}
.mb7_c00092{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);}
.m41_c00092{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);}
.m11_c00092{transform:matrix(0.171330,0.001371,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171330,0.001371,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171330,0.001371,-0.002000,0.249992,0,0);}
.m88_c00092{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);}
.m74_c00092{transform:matrix(0.171956,0.003439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171956,0.003439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171956,0.003439,-0.004999,0.249950,0,0);}
.me3_c00092{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);}
.m9f_c00092{transform:matrix(0.172401,0.003448,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172401,0.003448,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172401,0.003448,-0.004999,0.249950,0,0);}
.mb5_c00092{transform:matrix(0.172540,0.003451,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172540,0.003451,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172540,0.003451,-0.004999,0.249950,0,0);}
.m23_c00092{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);}
.me1_c00092{transform:matrix(0.173399,0.003988,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173399,0.003988,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173399,0.003988,-0.005748,0.249934,0,0);}
.ma0_c00092{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);}
.m42_c00092{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);}
.mc8_c00092{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);}
.m93_c00092{transform:matrix(0.174975,0.003500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174975,0.003500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174975,0.003500,-0.004999,0.249950,0,0);}
.m6_c00092{transform:matrix(0.175499,0.001404,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175499,0.001404,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175499,0.001404,-0.002000,0.249992,0,0);}
.m25_c00092{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);}
.mab_c00092{transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175945,0.003519,-0.004999,0.249950,0,0);}
.m1f_c00092{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);}
.mc4_c00092{transform:matrix(0.176035,0.003521,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176035,0.003521,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176035,0.003521,-0.004999,0.249950,0,0);}
.m21_c00092{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);}
.m65_c00092{transform:matrix(0.176250,0.003525,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176250,0.003525,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176250,0.003525,-0.004999,0.249950,0,0);}
.m32_c00092{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);}
.m9c_c00092{transform:matrix(0.177465,0.003549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177465,0.003549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177465,0.003549,-0.004999,0.249950,0,0);}
.m90_c00092{transform:matrix(0.177510,0.003550,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177510,0.003550,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177510,0.003550,-0.004999,0.249950,0,0);}
.m96_c00092{transform:matrix(0.177819,0.003556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177819,0.003556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177819,0.003556,-0.004999,0.249950,0,0);}
.m84_c00092{transform:matrix(0.178039,0.003561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178039,0.003561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178039,0.003561,-0.004999,0.249950,0,0);}
.mda_c00092{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);}
.m5a_c00092{transform:matrix(0.179079,0.003582,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179079,0.003582,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179079,0.003582,-0.004999,0.249950,0,0);}
.me_c00092{transform:matrix(0.179264,0.001434,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179264,0.001434,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179264,0.001434,-0.002000,0.249992,0,0);}
.m76_c00092{transform:matrix(0.179614,0.003592,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179614,0.003592,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179614,0.003592,-0.004999,0.249950,0,0);}
.m1_c00092{transform:matrix(0.179634,0.001437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179634,0.001437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179634,0.001437,-0.002000,0.249992,0,0);}
.maa_c00092{transform:matrix(0.180109,0.003602,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180109,0.003602,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180109,0.003602,-0.004999,0.249950,0,0);}
.m8f_c00092{transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);}
.m22_c00092{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);}
.m40_c00092{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);}
.m10_c00092{transform:matrix(0.180749,0.001446,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180749,0.001446,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180749,0.001446,-0.002000,0.249992,0,0);}
.me8_c00092{transform:matrix(0.180972,0.004162,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180972,0.004162,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180972,0.004162,-0.005748,0.249934,0,0);}
.m15_c00092{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);}
.ma7_c00092{transform:matrix(0.181534,0.003631,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181534,0.003631,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181534,0.003631,-0.004999,0.249950,0,0);}
.mf0_c00092{transform:matrix(0.182102,0.004188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182102,0.004188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182102,0.004188,-0.005748,0.249934,0,0);}
.m20_c00092{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);}
.m94_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);}
.me2_c00092{transform:matrix(0.182452,0.004196,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182452,0.004196,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182452,0.004196,-0.005748,0.249934,0,0);}
.m2b_c00092{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);}
.m79_c00092{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);}
.ma2_c00092{transform:matrix(0.183003,0.003660,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183003,0.003660,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183003,0.003660,-0.004999,0.249950,0,0);}
.mc3_c00092{transform:matrix(0.183228,0.003665,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183228,0.003665,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183228,0.003665,-0.004999,0.249950,0,0);}
.ma4_c00092{transform:matrix(0.183378,0.003668,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183378,0.003668,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183378,0.003668,-0.004999,0.249950,0,0);}
.m4e_c00092{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);}
.m2c_c00092{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);}
.m7b_c00092{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);}
.m1e_c00092{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);}
.m91_c00092{transform:matrix(0.185348,0.003707,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185348,0.003707,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185348,0.003707,-0.004999,0.249950,0,0);}
.m3a_c00092{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);}
.ma5_c00092{transform:matrix(0.185553,0.003711,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185553,0.003711,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185553,0.003711,-0.004999,0.249950,0,0);}
.mf_c00092{transform:matrix(0.185629,0.001485,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185629,0.001485,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185629,0.001485,-0.002000,0.249992,0,0);}
.m69_c00092{transform:matrix(0.186013,0.003720,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186013,0.003720,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186013,0.003720,-0.004999,0.249950,0,0);}
.m8a_c00092{transform:matrix(0.186433,0.003729,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186433,0.003729,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186433,0.003729,-0.004999,0.249950,0,0);}
.mbb_c00092{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);}
.m72_c00092{transform:matrix(0.187632,0.003753,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187632,0.003753,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187632,0.003753,-0.004999,0.249950,0,0);}
.m8e_c00092{transform:matrix(0.187707,0.003754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187707,0.003754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187707,0.003754,-0.004999,0.249950,0,0);}
.m18_c00092{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);}
.ma1_c00092{transform:matrix(0.188957,0.003779,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188957,0.003779,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188957,0.003779,-0.004999,0.249950,0,0);}
.m78_c00092{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);}
.m39_c00092{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);}
.m7a_c00092{transform:matrix(0.189622,0.003792,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189622,0.003792,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189622,0.003792,-0.004999,0.249950,0,0);}
.m30_c00092{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);}
.m1a_c00092{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);}
.m9e_c00092{transform:matrix(0.191292,0.003826,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191292,0.003826,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191292,0.003826,-0.004999,0.249950,0,0);}
.m31_c00092{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);}
.m52_c00092{transform:matrix(0.191687,0.003834,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191687,0.003834,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191687,0.003834,-0.004999,0.249950,0,0);}
.m7d_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);}
.md3_c00092{transform:matrix(0.192359,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192359,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192359,0.003462,-0.004499,0.249960,0,0);}
.m8d_c00092{transform:matrix(0.192452,0.003849,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192452,0.003849,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192452,0.003849,-0.004999,0.249950,0,0);}
.m3b_c00092{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);}
.m75_c00092{transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);}
.md6_c00092{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);}
.m44_c00092{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);}
.ma6_c00092{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);}
.m6b_c00092{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);}
.m34_c00092{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);}
.m5e_c00092{transform:matrix(0.195481,0.003910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195481,0.003910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195481,0.003910,-0.004999,0.249950,0,0);}
.m56_c00092{transform:matrix(0.195491,0.003910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195491,0.003910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195491,0.003910,-0.004999,0.249950,0,0);}
.mb4_c00092{transform:matrix(0.195556,0.003911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195556,0.003911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195556,0.003911,-0.004999,0.249950,0,0);}
.m50_c00092{transform:matrix(0.195821,0.003916,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195821,0.003916,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195821,0.003916,-0.004999,0.249950,0,0);}
.m12_c00092{transform:matrix(0.196409,0.001571,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196409,0.001571,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196409,0.001571,-0.002000,0.249992,0,0);}
.m0_c00092{transform:matrix(0.196469,0.001572,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196469,0.001572,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196469,0.001572,-0.002000,0.249992,0,0);}
.m82_c00092{transform:matrix(0.196606,0.003932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196606,0.003932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196606,0.003932,-0.004999,0.249950,0,0);}
.mae_c00092{transform:matrix(0.196706,0.003934,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196706,0.003934,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196706,0.003934,-0.004999,0.249950,0,0);}
.m5_c00092{transform:matrix(0.196944,0.001576,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196944,0.001576,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196944,0.001576,-0.002000,0.249992,0,0);}
.m3c_c00092{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);}
.mef_c00092{transform:matrix(0.197518,0.004543,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197518,0.004543,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197518,0.004543,-0.005748,0.249934,0,0);}
.m6f_c00092{transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);}
.mc_c00092{transform:matrix(0.198019,0.001584,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198019,0.001584,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198019,0.001584,-0.002000,0.249992,0,0);}
.ma3_c00092{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);}
.maf_c00092{transform:matrix(0.198850,0.003977,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198850,0.003977,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198850,0.003977,-0.004999,0.249950,0,0);}
.m80_c00092{transform:matrix(0.199995,0.004000,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199995,0.004000,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199995,0.004000,-0.004999,0.249950,0,0);}
.m38_c00092{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);}
.m16_c00092{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);}
.m28_c00092{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);}
.m89_c00092{transform:matrix(0.202939,0.004059,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202939,0.004059,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202939,0.004059,-0.004999,0.249950,0,0);}
.md4_c00092{transform:matrix(0.203432,0.003662,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203432,0.003662,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203432,0.003662,-0.004499,0.249960,0,0);}
.mcf_c00092{transform:matrix(0.203512,0.003663,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203512,0.003663,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203512,0.003663,-0.004499,0.249960,0,0);}
.m9b_c00092{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);}
.m3e_c00092{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);}
.m17_c00092{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);}
.m19_c00092{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);}
.m53_c00092{transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);}
.mb6_c00092{transform:matrix(0.207154,0.004143,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207154,0.004143,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207154,0.004143,-0.004999,0.249950,0,0);}
.mba_c00092{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);}
.mb1_c00092{transform:matrix(0.210653,0.004213,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210653,0.004213,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210653,0.004213,-0.004999,0.249950,0,0);}
.md1_c00092{transform:matrix(0.211071,0.003799,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211071,0.003799,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211071,0.003799,-0.004499,0.249960,0,0);}
.mf1_c00092{transform:matrix(0.211694,0.004869,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211694,0.004869,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211694,0.004869,-0.005748,0.249934,0,0);}
.m58_c00092{transform:matrix(0.211883,0.004238,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211883,0.004238,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211883,0.004238,-0.004999,0.249950,0,0);}
.md8_c00092{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);}
.m5c_c00092{transform:matrix(0.213067,0.004261,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213067,0.004261,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213067,0.004261,-0.004999,0.249950,0,0);}
.mb8_c00092{transform:matrix(0.213937,0.004279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213937,0.004279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213937,0.004279,-0.004999,0.249950,0,0);}
.m26_c00092{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);}
.m97_c00092{transform:matrix(0.214177,0.004284,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214177,0.004284,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214177,0.004284,-0.004999,0.249950,0,0);}
.mb0_c00092{transform:matrix(0.214492,0.004290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214492,0.004290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214492,0.004290,-0.004999,0.249950,0,0);}
.md_c00092{transform:matrix(0.216078,0.001729,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216078,0.001729,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216078,0.001729,-0.002000,0.249992,0,0);}
.m45_c00092{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);}
.m6d_c00092{transform:matrix(0.216922,0.004338,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216922,0.004338,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216922,0.004338,-0.004999,0.249950,0,0);}
.m49_c00092{transform:matrix(0.217277,0.002825,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217277,0.002825,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217277,0.002825,-0.003250,0.249979,0,0);}
.mc9_c00092{transform:matrix(0.217397,0.004348,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217397,0.004348,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217397,0.004348,-0.004999,0.249950,0,0);}
.mb9_c00092{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);}
.m33_c00092{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);}
.m27_c00092{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);}
.m5b_c00092{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);}
.md7_c00092{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);}
.m59_c00092{transform:matrix(0.218526,0.004371,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218526,0.004371,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218526,0.004371,-0.004999,0.249950,0,0);}
.mb3_c00092{transform:matrix(0.219386,0.004388,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219386,0.004388,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219386,0.004388,-0.004999,0.249950,0,0);}
.m36_c00092{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);}
.mf2_c00092{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);}
.mc1_c00092{transform:matrix(0.219861,0.004397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219861,0.004397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219861,0.004397,-0.004999,0.249950,0,0);}
.m71_c00092{transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);}
.m7c_c00092{transform:matrix(0.220251,0.004405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220251,0.004405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220251,0.004405,-0.004999,0.249950,0,0);}
.m7e_c00092{transform:matrix(0.221791,0.004436,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221791,0.004436,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221791,0.004436,-0.004999,0.249950,0,0);}
.m13_c00092{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);}
.m9a_c00092{transform:matrix(0.222311,0.004446,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222311,0.004446,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222311,0.004446,-0.004999,0.249950,0,0);}
.m81_c00092{transform:matrix(0.222341,0.004447,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222341,0.004447,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222341,0.004447,-0.004999,0.249950,0,0);}
.ma9_c00092{transform:matrix(0.222620,0.004452,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222620,0.004452,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222620,0.004452,-0.004999,0.249950,0,0);}
.m67_c00092{transform:matrix(0.224235,0.004485,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224235,0.004485,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224235,0.004485,-0.004999,0.249950,0,0);}
.m73_c00092{transform:matrix(0.225070,0.004501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225070,0.004501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225070,0.004501,-0.004999,0.249950,0,0);}
.mbd_c00092{transform:matrix(0.227115,0.004542,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227115,0.004542,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227115,0.004542,-0.004999,0.249950,0,0);}
.m7_c00092{transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);}
.mad_c00092{transform:matrix(0.228034,0.004561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228034,0.004561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228034,0.004561,-0.004999,0.249950,0,0);}
.md0_c00092{transform:matrix(0.228248,0.004108,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228248,0.004108,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228248,0.004108,-0.004499,0.249960,0,0);}
.mbf_c00092{transform:matrix(0.228804,0.004576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228804,0.004576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228804,0.004576,-0.004999,0.249950,0,0);}
.m2a_c00092{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);}
.m3_c00092{transform:matrix(0.231098,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231098,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231098,0.001849,-0.002000,0.249992,0,0);}
.mce_c00092{transform:matrix(0.231313,0.004164,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231313,0.004164,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231313,0.004164,-0.004499,0.249960,0,0);}
.m68_c00092{transform:matrix(0.235088,0.004702,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235088,0.004702,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235088,0.004702,-0.004999,0.249950,0,0);}
.ma_c00092{transform:matrix(0.237947,0.001904,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237947,0.001904,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237947,0.001904,-0.002000,0.249992,0,0);}
.m8b_c00092{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);}
.m5d_c00092{transform:matrix(0.246206,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246206,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246206,0.004924,-0.004999,0.249950,0,0);}
.m55_c00092{transform:matrix(0.247446,0.004949,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247446,0.004949,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247446,0.004949,-0.004999,0.249950,0,0);}
.meb_c00092{transform:matrix(0.248339,0.005712,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248339,0.005712,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248339,0.005712,-0.005748,0.249934,0,0);}
.m62_c00092{transform:matrix(0.248595,0.004972,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248595,0.004972,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248595,0.004972,-0.004999,0.249950,0,0);}
.mbc_c00092{transform:matrix(0.249055,0.004981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249055,0.004981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249055,0.004981,-0.004999,0.249950,0,0);}
.m63_c00092{transform:matrix(0.249545,0.004991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249545,0.004991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249545,0.004991,-0.004999,0.249950,0,0);}
.m5f_c00092{transform:matrix(0.259283,0.005186,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259283,0.005186,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259283,0.005186,-0.004999,0.249950,0,0);}
.md2_c00092{transform:matrix(0.261583,0.004708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261583,0.004708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261583,0.004708,-0.004499,0.249960,0,0);}
.md5_c00092{transform:matrix(0.261888,0.004714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261888,0.004714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261888,0.004714,-0.004499,0.249960,0,0);}
.m29_c00092{transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);}
.m6a_c00092{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);}
.m2e_c00092{transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00092{transform:matrix(0.269811,0.005396,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269811,0.005396,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269811,0.005396,-0.004999,0.249950,0,0);}
.mc0_c00092{transform:matrix(0.272955,0.005459,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272955,0.005459,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272955,0.005459,-0.004999,0.249950,0,0);}
.m43_c00092{transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318945,0.000000,0.000000,0.250000,0,0);}
.m6e_c00092{transform:matrix(0.329909,0.006598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.329909,0.006598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.329909,0.006598,-0.004999,0.249950,0,0);}
.mf6_c00092{transform:matrix(0.338770,0.007792,-0.005748,0.249934,0,0);-ms-transform:matrix(0.338770,0.007792,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.338770,0.007792,-0.005748,0.249934,0,0);}
.m46_c00092{transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00092{transform:matrix(0.360127,0.006482,-0.004499,0.249960,0,0);-ms-transform:matrix(0.360127,0.006482,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.360127,0.006482,-0.004499,0.249960,0,0);}
.m48_c00092{transform:matrix(0.404051,0.005253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.404051,0.005253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.404051,0.005253,-0.003250,0.249979,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;}
.fs8_c00092{font-size:60.912179px;}
.fs11_c00092{font-size:63.012599px;}
.fs14_c00092{font-size:64.066939px;}
.fsc_c00092{font-size:65.113019px;}
.fs0_c00092{font-size:67.202150px;}
.fs13_c00092{font-size:67.210886px;}
.fs2_c00092{font-size:68.250000px;}
.fs10_c00092{font-size:69.313859px;}
.fs5_c00092{font-size:70.350000px;}
.fs7_c00092{font-size:70.364069px;}
.fs15_c00092{font-size:70.368605px;}
.fs3_c00092{font-size:71.400000px;}
.fs4_c00092{font-size:72.450000px;}
.fs1_c00092{font-size:72.452318px;}
.fsa_c00092{font-size:72.464489px;}
.fse_c00092{font-size:73.514699px;}
.fsf_c00092{font-size:74.564909px;}
.fsb_c00092{font-size:75.615118px;}
.fsd_c00092{font-size:76.665328px;}
.fs9_c00092{font-size:77.715538px;}
.fs12_c00092{font-size:81.913267px;}
.fs6_c00092{font-size:91.357719px;}
.y0_c00092{bottom:0.000000px;}
.ye4_c00092{bottom:132.487011px;}
.ye3_c00092{bottom:133.148217px;}
.ye2_c00092{bottom:133.918287px;}
.ye1_c00092{bottom:134.135391px;}
.ye0_c00092{bottom:134.281767px;}
.ydf_c00092{bottom:134.422395px;}
.yde_c00092{bottom:135.161649px;}
.ydd_c00092{bottom:135.424398px;}
.ydc_c00092{bottom:135.728044px;}
.ydb_c00092{bottom:135.981126px;}
.yda_c00092{bottom:136.344123px;}
.yd9_c00092{bottom:149.017845px;}
.yd8_c00092{bottom:149.797683px;}
.yd7_c00092{bottom:150.164245px;}
.yd6_c00092{bottom:150.848588px;}
.yd5_c00092{bottom:151.580470px;}
.yd4_c00092{bottom:152.148271px;}
.yd3_c00092{bottom:153.200418px;}
.yd2_c00092{bottom:153.964903px;}
.yd1_c00092{bottom:155.269072px;}
.yd0_c00092{bottom:156.424684px;}
.ycf_c00092{bottom:156.668254px;}
.yce_c00092{bottom:157.350181px;}
.ycd_c00092{bottom:157.845705px;}
.ycc_c00092{bottom:158.495650px;}
.ycb_c00092{bottom:158.940804px;}
.yca_c00092{bottom:159.574500px;}
.yc8_c00092{bottom:192.520680px;}
.yc7_c00092{bottom:193.276545px;}
.yc6_c00092{bottom:193.787337px;}
.yc5_c00092{bottom:194.808258px;}
.yc4_c00092{bottom:195.618576px;}
.yc3_c00092{bottom:196.100595px;}
.yc2_c00092{bottom:197.732775px;}
.yc1_c00092{bottom:198.465390px;}
.yc0_c00092{bottom:199.341597px;}
.ybf_c00092{bottom:199.803120px;}
.ybe_c00092{bottom:219.019011px;}
.ybd_c00092{bottom:220.028892px;}
.ybc_c00092{bottom:221.406000px;}
.ybb_c00092{bottom:238.910400px;}
.yba_c00092{bottom:239.460630px;}
.yb9_c00092{bottom:240.125550px;}
.yb8_c00092{bottom:241.142700px;}
.yb7_c00092{bottom:241.788780px;}
.yb6_c00092{bottom:242.655510px;}
.yb5_c00092{bottom:243.743010px;}
.yb4_c00092{bottom:244.559790px;}
.yb3_c00092{bottom:260.291070px;}
.yb2_c00092{bottom:261.125910px;}
.yb1_c00092{bottom:261.557040px;}
.yb0_c00092{bottom:262.686150px;}
.yaf_c00092{bottom:263.079840px;}
.yae_c00092{bottom:264.035100px;}
.yad_c00092{bottom:264.701640px;}
.yac_c00092{bottom:265.176600px;}
.yab_c00092{bottom:266.470380px;}
.yaa_c00092{bottom:266.973810px;}
.ya9_c00092{bottom:285.348330px;}
.ya8_c00092{bottom:285.746400px;}
.ya7_c00092{bottom:286.631730px;}
.ya6_c00092{bottom:287.376960px;}
.ya5_c00092{bottom:287.930670px;}
.ya4_c00092{bottom:288.680130px;}
.ya3_c00092{bottom:289.029180px;}
.ya2_c00092{bottom:290.201700px;}
.ya1_c00092{bottom:307.260210px;}
.ya0_c00092{bottom:308.145540px;}
.y9f_c00092{bottom:308.897340px;}
.y9e_c00092{bottom:309.331500px;}
.y9d_c00092{bottom:309.851010px;}
.y9c_c00092{bottom:310.868970px;}
.y9b_c00092{bottom:311.484090px;}
.y9a_c00092{bottom:312.344910px;}
.y99_c00092{bottom:328.570620px;}
.y98_c00092{bottom:329.674890px;}
.y97_c00092{bottom:330.253110px;}
.y96_c00092{bottom:331.158240px;}
.y95_c00092{bottom:332.324190px;}
.y94_c00092{bottom:332.984070px;}
.y93_c00092{bottom:333.437250px;}
.y92_c00092{bottom:333.948000px;}
.y91_c00092{bottom:353.813520px;}
.y90_c00092{bottom:354.428970px;}
.y8f_c00092{bottom:354.756990px;}
.y8e_c00092{bottom:355.389780px;}
.y8d_c00092{bottom:356.121330px;}
.y8c_c00092{bottom:356.522520px;}
.y8b_c00092{bottom:357.171720px;}
.y8a_c00092{bottom:374.843790px;}
.y89_c00092{bottom:376.275060px;}
.y88_c00092{bottom:377.036250px;}
.y87_c00092{bottom:377.505300px;}
.y86_c00092{bottom:378.363360px;}
.y85_c00092{bottom:379.794270px;}
.y84_c00092{bottom:380.938980px;}
.y83_c00092{bottom:398.750550px;}
.y82_c00092{bottom:399.664200px;}
.y81_c00092{bottom:400.360920px;}
.y80_c00092{bottom:401.307600px;}
.y7f_c00092{bottom:402.014850px;}
.y7e_c00092{bottom:402.394680px;}
.y7d_c00092{bottom:402.780300px;}
.y7c_c00092{bottom:403.354800px;}
.y7b_c00092{bottom:420.389400px;}
.y7a_c00092{bottom:421.271910px;}
.y79_c00092{bottom:421.703730px;}
.y78_c00092{bottom:422.832750px;}
.y77_c00092{bottom:423.745500px;}
.y76_c00092{bottom:424.225560px;}
.y75_c00092{bottom:425.072010px;}
.y74_c00092{bottom:425.547120px;}
.y73_c00092{bottom:426.040590px;}
.y72_c00092{bottom:443.840970px;}
.y71_c00092{bottom:444.225060px;}
.y70_c00092{bottom:444.721740px;}
.y6f_c00092{bottom:445.174770px;}
.y6e_c00092{bottom:446.088090px;}
.y6d_c00092{bottom:447.130080px;}
.y6c_c00092{bottom:447.824400px;}
.y6b_c00092{bottom:448.183650px;}
.y6a_c00092{bottom:466.393380px;}
.y69_c00092{bottom:467.070900px;}
.y68_c00092{bottom:467.752380px;}
.y67_c00092{bottom:468.311610px;}
.y66_c00092{bottom:468.601020px;}
.y65_c00092{bottom:469.532700px;}
.y64_c00092{bottom:469.885170px;}
.y63_c00092{bottom:470.491740px;}
.y62_c00092{bottom:470.872380px;}
.y61_c00092{bottom:471.570330px;}
.y60_c00092{bottom:471.947070px;}
.y5f_c00092{bottom:488.781390px;}
.y5e_c00092{bottom:489.941520px;}
.y5d_c00092{bottom:490.881390px;}
.y5c_c00092{bottom:491.303010px;}
.y5b_c00092{bottom:491.653050px;}
.y5a_c00092{bottom:492.337890px;}
.y59_c00092{bottom:492.810000px;}
.y58_c00092{bottom:493.190820px;}
.y57_c00092{bottom:494.359980px;}
.y56_c00092{bottom:512.412600px;}
.y55_c00092{bottom:513.151590px;}
.y54_c00092{bottom:514.011300px;}
.y53_c00092{bottom:514.400880px;}
.y52_c00092{bottom:515.501070px;}
.y51_c00092{bottom:516.003270px;}
.y50_c00092{bottom:516.549210px;}
.y4f_c00092{bottom:517.585590px;}
.y4e_c00092{bottom:535.046640px;}
.y4d_c00092{bottom:535.696590px;}
.y4c_c00092{bottom:536.857230px;}
.y4b_c00092{bottom:537.606900px;}
.y4a_c00092{bottom:538.207290px;}
.y49_c00092{bottom:538.731390px;}
.y48_c00092{bottom:538.995150px;}
.y47_c00092{bottom:540.270390px;}
.y46_c00092{bottom:555.147450px;}
.y45_c00092{bottom:556.803720px;}
.y44_c00092{bottom:557.452140px;}
.y43_c00092{bottom:558.197310px;}
.y42_c00092{bottom:559.001760px;}
.y41_c00092{bottom:559.800900px;}
.y40_c00092{bottom:560.253000px;}
.yc9_c00092{bottom:561.459000px;}
.y3f_c00092{bottom:596.971500px;}
.y3e_c00092{bottom:603.253836px;}
.y3d_c00092{bottom:603.478456px;}
.y3c_c00092{bottom:603.997625px;}
.y3b_c00092{bottom:605.089605px;}
.y3a_c00092{bottom:605.367148px;}
.y39_c00092{bottom:605.868766px;}
.y38_c00092{bottom:606.154500px;}
.y37_c00092{bottom:623.650500px;}
.y36_c00092{bottom:625.200000px;}
.y35_c00092{bottom:625.771500px;}
.y34_c00092{bottom:626.085000px;}
.y33_c00092{bottom:627.118500px;}
.y32_c00092{bottom:627.879000px;}
.y31_c00092{bottom:629.110500px;}
.y30_c00092{bottom:646.005000px;}
.y2f_c00092{bottom:648.025500px;}
.y2e_c00092{bottom:648.328500px;}
.y2d_c00092{bottom:648.940500px;}
.y2c_c00092{bottom:649.749000px;}
.y2b_c00092{bottom:650.185500px;}
.y2a_c00092{bottom:650.887500px;}
.y29_c00092{bottom:651.247500px;}
.y28_c00092{bottom:669.849000px;}
.y27_c00092{bottom:670.896000px;}
.y26_c00092{bottom:671.314500px;}
.y25_c00092{bottom:671.463000px;}
.y24_c00092{bottom:672.000000px;}
.y23_c00092{bottom:672.907500px;}
.y22_c00092{bottom:673.411500px;}
.y21_c00092{bottom:673.654500px;}
.y20_c00092{bottom:691.933500px;}
.y1f_c00092{bottom:692.725500px;}
.y1e_c00092{bottom:693.019500px;}
.y1d_c00092{bottom:693.444000px;}
.y1c_c00092{bottom:693.841500px;}
.y1b_c00092{bottom:694.159500px;}
.y1a_c00092{bottom:694.696500px;}
.y19_c00092{bottom:694.875000px;}
.y18_c00092{bottom:695.344500px;}
.y17_c00092{bottom:695.529000px;}
.y16_c00092{bottom:696.063000px;}
.y15_c00092{bottom:717.945000px;}
.y14_c00092{bottom:740.631000px;}
.y11_c00092{bottom:769.331916px;}
.y13_c00092{bottom:769.332060px;}
.y12_c00092{bottom:769.332228px;}
.y10_c00092{bottom:769.332324px;}
.yf_c00092{bottom:769.332732px;}
.yd_c00092{bottom:769.332900px;}
.ye_c00092{bottom:769.333140px;}
.yc_c00092{bottom:769.333488px;}
.yb_c00092{bottom:790.179840px;}
.ya_c00092{bottom:790.358808px;}
.y9_c00092{bottom:790.581612px;}
.y8_c00092{bottom:791.007072px;}
.y7_c00092{bottom:791.257644px;}
.y6_c00092{bottom:791.631168px;}
.y5_c00092{bottom:791.810376px;}
.y4_c00092{bottom:792.009432px;}
.y3_c00092{bottom:792.605640px;}
.y2_c00092{bottom:793.037556px;}
.y1_c00092{bottom:793.260000px;}
.ha_c00092{height:60.912179px;}
.h13_c00092{height:63.012599px;}
.h16_c00092{height:64.066939px;}
.he_c00092{height:65.113019px;}
.h2_c00092{height:67.202150px;}
.h15_c00092{height:67.210886px;}
.h4_c00092{height:68.250000px;}
.h12_c00092{height:69.313859px;}
.h7_c00092{height:70.350000px;}
.h9_c00092{height:70.364069px;}
.h17_c00092{height:70.368605px;}
.h5_c00092{height:71.400000px;}
.h6_c00092{height:72.450000px;}
.h3_c00092{height:72.452318px;}
.hc_c00092{height:72.464489px;}
.h10_c00092{height:73.514699px;}
.h11_c00092{height:74.564909px;}
.hd_c00092{height:75.615118px;}
.hf_c00092{height:76.665328px;}
.hb_c00092{height:77.715538px;}
.h14_c00092{height:81.913267px;}
.h8_c00092{height:91.357719px;}
.h1_c00092{height:1005.000000px;}
.h0_c00092{height:1005.150000px;}
.w0_c00092{width:705.450000px;}
.w1_c00092{width:705.750000px;}
.x0_c00092{left:0.000000px;}
.x85_c00092{left:92.392500px;}
.x3a_c00092{left:107.698500px;}
.x86_c00092{left:119.944500px;}
.x72_c00092{left:122.787030px;}
.x62_c00092{left:125.020080px;}
.x6f_c00092{left:127.946280px;}
.x24_c00092{left:129.718500px;}
.x1d_c00092{left:131.760000px;}
.x14_c00092{left:133.110000px;}
.x87_c00092{left:139.299000px;}
.x7e_c00092{left:144.693000px;}
.xc_c00092{left:147.151968px;}
.x1_c00092{left:149.217000px;}
.x53_c00092{left:152.043150px;}
.x2f_c00092{left:154.086000px;}
.x63_c00092{left:155.245680px;}
.x15_c00092{left:157.680000px;}
.x8f_c00092{left:160.008571px;}
.x6e_c00092{left:162.089610px;}
.x3b_c00092{left:168.264000px;}
.x7c_c00092{left:171.262110px;}
.x6b_c00092{left:172.366740px;}
.x64_c00092{left:175.502070px;}
.x2_c00092{left:177.022500px;}
.x25_c00092{left:178.318500px;}
.x84_c00092{left:180.900000px;}
.x4a_c00092{left:183.035760px;}
.x73_c00092{left:187.940640px;}
.x67_c00092{left:189.001140px;}
.xd_c00092{left:190.353228px;}
.x80_c00092{left:191.440344px;}
.x54_c00092{left:193.093110px;}
.x26_c00092{left:195.045000px;}
.x44_c00092{left:197.293200px;}
.x4e_c00092{left:199.244760px;}
.x33_c00092{left:201.022500px;}
.x16_c00092{left:204.930000px;}
.x74_c00092{left:207.343920px;}
.x70_c00092{left:209.996580px;}
.x45_c00092{left:211.156470px;}
.xe_c00092{left:213.574716px;}
.x55_c00092{left:215.501460px;}
.x88_c00092{left:218.751000px;}
.x60_c00092{left:220.062330px;}
.x4f_c00092{left:221.662110px;}
.x77_c00092{left:223.381950px;}
.x81_c00092{left:226.305954px;}
.x17_c00092{left:229.230000px;}
.x3_c00092{left:231.012000px;}
.x65_c00092{left:232.707210px;}
.x4b_c00092{left:235.442760px;}
.x27_c00092{left:237.729000px;}
.xf_c00092{left:243.815148px;}
.x37_c00092{left:246.295500px;}
.x6c_c00092{left:247.911300px;}
.x50_c00092{left:249.469290px;}
.x56_c00092{left:251.157090px;}
.x28_c00092{left:253.903500px;}
.x5d_c00092{left:260.864220px;}
.x1e_c00092{left:261.900000px;}
.x68_c00092{left:264.298140px;}
.x10_c00092{left:267.305148px;}
.x46_c00092{left:270.307140px;}
.x57_c00092{left:271.931850px;}
.x3c_c00092{left:273.612000px;}
.x3f_c00092{left:275.703000px;}
.x7f_c00092{left:277.303500px;}
.x75_c00092{left:279.705300px;}
.x66_c00092{left:282.517200px;}
.x34_c00092{left:284.115000px;}
.x4c_c00092{left:290.452260px;}
.x18_c00092{left:294.840000px;}
.x29_c00092{left:302.749500px;}
.x11_c00092{left:304.296012px;}
.x4_c00092{left:305.538000px;}
.x1f_c00092{left:307.800000px;}
.x47_c00092{left:309.741420px;}
.x6d_c00092{left:311.933190px;}
.x3d_c00092{left:313.548000px;}
.x40_c00092{left:315.660000px;}
.x19_c00092{left:318.870000px;}
.x76_c00092{left:321.093450px;}
.x35_c00092{left:324.895500px;}
.x58_c00092{left:326.769150px;}
.x5_c00092{left:330.420000px;}
.x2a_c00092{left:331.683000px;}
.x20_c00092{left:332.910000px;}
.x69_c00092{left:334.105020px;}
.x51_c00092{left:335.124420px;}
.x12_c00092{left:336.696588px;}
.x59_c00092{left:343.790670px;}
.x36_c00092{left:345.133500px;}
.x5e_c00092{left:346.213530px;}
.x30_c00092{left:348.987000px;}
.x6_c00092{left:352.821000px;}
.x78_c00092{left:354.507090px;}
.x41_c00092{left:355.882500px;}
.x38_c00092{left:359.119500px;}
.x3e_c00092{left:360.450000px;}
.x7d_c00092{left:361.663920px;}
.x31_c00092{left:363.816000px;}
.x82_c00092{left:365.604948px;}
.x2b_c00092{left:367.867500px;}
.x89_c00092{left:369.526500px;}
.x48_c00092{left:370.849650px;}
.x6a_c00092{left:374.190330px;}
.x5a_c00092{left:376.704150px;}
.x1a_c00092{left:382.590000px;}
.x4d_c00092{left:389.866260px;}
.x42_c00092{left:393.141000px;}
.x21_c00092{left:395.550000px;}
.x13_c00092{left:396.908940px;}
.x7_c00092{left:399.511500px;}
.x5f_c00092{left:401.281440px;}
.x49_c00092{left:405.072840px;}
.x2c_c00092{left:406.470000px;}
.x71_c00092{left:410.467590px;}
.x61_c00092{left:411.870330px;}
.x79_c00092{left:413.963790px;}
.x8a_c00092{left:415.272000px;}
.x5b_c00092{left:416.780550px;}
.x22_c00092{left:424.980000px;}
.x8_c00092{left:430.833000px;}
.x2d_c00092{left:433.203000px;}
.x7a_c00092{left:436.645740px;}
.x1b_c00092{left:439.020000px;}
.x90_c00092{left:446.593290px;}
.x39_c00092{left:450.303000px;}
.x5c_c00092{left:456.658950px;}
.x52_c00092{left:458.731860px;}
.x23_c00092{left:465.480000px;}
.x8b_c00092{left:471.780000px;}
.x83_c00092{left:474.520062px;}
.x1c_c00092{left:478.980000px;}
.x7b_c00092{left:480.563610px;}
.x9_c00092{left:484.015500px;}
.x8c_c00092{left:501.534000px;}
.x2e_c00092{left:505.266000px;}
.x43_c00092{left:508.375500px;}
.x32_c00092{left:510.454500px;}
.xa_c00092{left:511.866000px;}
.x8d_c00092{left:517.471500px;}
.x91_c00092{left:520.038922px;}
.xb_c00092{left:534.237000px;}
.x8e_c00092{left:551.377500px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
.fs8_c00092{font-size:54.144159pt;}
.fs11_c00092{font-size:56.011199pt;}
.fs14_c00092{font-size:56.948390pt;}
.fsc_c00092{font-size:57.878239pt;}
.fs0_c00092{font-size:59.735245pt;}
.fs13_c00092{font-size:59.743009pt;}
.fs2_c00092{font-size:60.666667pt;}
.fs10_c00092{font-size:61.612319pt;}
.fs5_c00092{font-size:62.533333pt;}
.fs7_c00092{font-size:62.545839pt;}
.fs15_c00092{font-size:62.549871pt;}
.fs3_c00092{font-size:63.466667pt;}
.fs4_c00092{font-size:64.400000pt;}
.fs1_c00092{font-size:64.402061pt;}
.fsa_c00092{font-size:64.412879pt;}
.fse_c00092{font-size:65.346399pt;}
.fsf_c00092{font-size:66.279919pt;}
.fsb_c00092{font-size:67.213439pt;}
.fsd_c00092{font-size:68.146959pt;}
.fs9_c00092{font-size:69.080479pt;}
.fs12_c00092{font-size:72.811793pt;}
.fs6_c00092{font-size:81.206861pt;}
.y0_c00092{bottom:0.000000pt;}
.ye4_c00092{bottom:117.766232pt;}
.ye3_c00092{bottom:118.353971pt;}
.ye2_c00092{bottom:119.038477pt;}
.ye1_c00092{bottom:119.231459pt;}
.ye0_c00092{bottom:119.361571pt;}
.ydf_c00092{bottom:119.486573pt;}
.yde_c00092{bottom:120.143688pt;}
.ydd_c00092{bottom:120.377243pt;}
.ydc_c00092{bottom:120.647151pt;}
.ydb_c00092{bottom:120.872112pt;}
.yda_c00092{bottom:121.194776pt;}
.yd9_c00092{bottom:132.460307pt;}
.yd8_c00092{bottom:133.153496pt;}
.yd7_c00092{bottom:133.479329pt;}
.yd6_c00092{bottom:134.087633pt;}
.yd5_c00092{bottom:134.738196pt;}
.yd4_c00092{bottom:135.242908pt;}
.yd3_c00092{bottom:136.178149pt;}
.yd2_c00092{bottom:136.857692pt;}
.yd1_c00092{bottom:138.016953pt;}
.yd0_c00092{bottom:139.044164pt;}
.ycf_c00092{bottom:139.260671pt;}
.yce_c00092{bottom:139.866828pt;}
.ycd_c00092{bottom:140.307293pt;}
.ycc_c00092{bottom:140.885023pt;}
.ycb_c00092{bottom:141.280715pt;}
.yca_c00092{bottom:141.844000pt;}
.yc8_c00092{bottom:171.129493pt;}
.yc7_c00092{bottom:171.801373pt;}
.yc6_c00092{bottom:172.255411pt;}
.yc5_c00092{bottom:173.162896pt;}
.yc4_c00092{bottom:173.883179pt;}
.yc3_c00092{bottom:174.311640pt;}
.yc2_c00092{bottom:175.762467pt;}
.yc1_c00092{bottom:176.413680pt;}
.yc0_c00092{bottom:177.192531pt;}
.ybf_c00092{bottom:177.602773pt;}
.ybe_c00092{bottom:194.683565pt;}
.ybd_c00092{bottom:195.581237pt;}
.ybc_c00092{bottom:196.805333pt;}
.ybb_c00092{bottom:212.364800pt;}
.yba_c00092{bottom:212.853893pt;}
.yb9_c00092{bottom:213.444933pt;}
.yb8_c00092{bottom:214.349067pt;}
.yb7_c00092{bottom:214.923360pt;}
.yb6_c00092{bottom:215.693787pt;}
.yb5_c00092{bottom:216.660453pt;}
.yb4_c00092{bottom:217.386480pt;}
.yb3_c00092{bottom:231.369840pt;}
.yb2_c00092{bottom:232.111920pt;}
.yb1_c00092{bottom:232.495147pt;}
.yb0_c00092{bottom:233.498800pt;}
.yaf_c00092{bottom:233.848747pt;}
.yae_c00092{bottom:234.697867pt;}
.yad_c00092{bottom:235.290347pt;}
.yac_c00092{bottom:235.712533pt;}
.yab_c00092{bottom:236.862560pt;}
.yaa_c00092{bottom:237.310053pt;}
.ya9_c00092{bottom:253.642960pt;}
.ya8_c00092{bottom:253.996800pt;}
.ya7_c00092{bottom:254.783760pt;}
.ya6_c00092{bottom:255.446187pt;}
.ya5_c00092{bottom:255.938373pt;}
.ya4_c00092{bottom:256.604560pt;}
.ya3_c00092{bottom:256.914827pt;}
.ya2_c00092{bottom:257.957067pt;}
.ya1_c00092{bottom:273.120187pt;}
.ya0_c00092{bottom:273.907147pt;}
.y9f_c00092{bottom:274.575413pt;}
.y9e_c00092{bottom:274.961333pt;}
.y9d_c00092{bottom:275.423120pt;}
.y9c_c00092{bottom:276.327973pt;}
.y9b_c00092{bottom:276.874747pt;}
.y9a_c00092{bottom:277.639920pt;}
.y99_c00092{bottom:292.062773pt;}
.y98_c00092{bottom:293.044347pt;}
.y97_c00092{bottom:293.558320pt;}
.y96_c00092{bottom:294.362880pt;}
.y95_c00092{bottom:295.399280pt;}
.y94_c00092{bottom:295.985840pt;}
.y93_c00092{bottom:296.388667pt;}
.y92_c00092{bottom:296.842667pt;}
.y91_c00092{bottom:314.500907pt;}
.y90_c00092{bottom:315.047973pt;}
.y8f_c00092{bottom:315.339547pt;}
.y8e_c00092{bottom:315.902027pt;}
.y8d_c00092{bottom:316.552293pt;}
.y8c_c00092{bottom:316.908907pt;}
.y8b_c00092{bottom:317.485973pt;}
.y8a_c00092{bottom:333.194480pt;}
.y89_c00092{bottom:334.466720pt;}
.y88_c00092{bottom:335.143333pt;}
.y87_c00092{bottom:335.560267pt;}
.y86_c00092{bottom:336.322987pt;}
.y85_c00092{bottom:337.594907pt;}
.y84_c00092{bottom:338.612427pt;}
.y83_c00092{bottom:354.444933pt;}
.y82_c00092{bottom:355.257067pt;}
.y81_c00092{bottom:355.876373pt;}
.y80_c00092{bottom:356.717867pt;}
.y7f_c00092{bottom:357.346533pt;}
.y7e_c00092{bottom:357.684160pt;}
.y7d_c00092{bottom:358.026933pt;}
.y7c_c00092{bottom:358.537600pt;}
.y7b_c00092{bottom:373.679467pt;}
.y7a_c00092{bottom:374.463920pt;}
.y79_c00092{bottom:374.847760pt;}
.y78_c00092{bottom:375.851333pt;}
.y77_c00092{bottom:376.662667pt;}
.y76_c00092{bottom:377.089387pt;}
.y75_c00092{bottom:377.841787pt;}
.y74_c00092{bottom:378.264107pt;}
.y73_c00092{bottom:378.702747pt;}
.y72_c00092{bottom:394.525307pt;}
.y71_c00092{bottom:394.866720pt;}
.y70_c00092{bottom:395.308213pt;}
.y6f_c00092{bottom:395.710907pt;}
.y6e_c00092{bottom:396.522747pt;}
.y6d_c00092{bottom:397.448960pt;}
.y6c_c00092{bottom:398.066133pt;}
.y6b_c00092{bottom:398.385467pt;}
.y6a_c00092{bottom:414.571893pt;}
.y69_c00092{bottom:415.174133pt;}
.y68_c00092{bottom:415.779893pt;}
.y67_c00092{bottom:416.276987pt;}
.y66_c00092{bottom:416.534240pt;}
.y65_c00092{bottom:417.362400pt;}
.y64_c00092{bottom:417.675707pt;}
.y63_c00092{bottom:418.214880pt;}
.y62_c00092{bottom:418.553227pt;}
.y61_c00092{bottom:419.173627pt;}
.y60_c00092{bottom:419.508507pt;}
.y5f_c00092{bottom:434.472347pt;}
.y5e_c00092{bottom:435.503573pt;}
.y5d_c00092{bottom:436.339013pt;}
.y5c_c00092{bottom:436.713787pt;}
.y5b_c00092{bottom:437.024933pt;}
.y5a_c00092{bottom:437.633680pt;}
.y59_c00092{bottom:438.053333pt;}
.y58_c00092{bottom:438.391840pt;}
.y57_c00092{bottom:439.431093pt;}
.y56_c00092{bottom:455.477867pt;}
.y55_c00092{bottom:456.134747pt;}
.y54_c00092{bottom:456.898933pt;}
.y53_c00092{bottom:457.245227pt;}
.y52_c00092{bottom:458.223173pt;}
.y51_c00092{bottom:458.669573pt;}
.y50_c00092{bottom:459.154853pt;}
.y4f_c00092{bottom:460.076080pt;}
.y4e_c00092{bottom:475.597013pt;}
.y4d_c00092{bottom:476.174747pt;}
.y4c_c00092{bottom:477.206427pt;}
.y4b_c00092{bottom:477.872800pt;}
.y4a_c00092{bottom:478.406480pt;}
.y49_c00092{bottom:478.872347pt;}
.y48_c00092{bottom:479.106800pt;}
.y47_c00092{bottom:480.240347pt;}
.y46_c00092{bottom:493.464400pt;}
.y45_c00092{bottom:494.936640pt;}
.y44_c00092{bottom:495.513013pt;}
.y43_c00092{bottom:496.175387pt;}
.y42_c00092{bottom:496.890453pt;}
.y41_c00092{bottom:497.600800pt;}
.y40_c00092{bottom:498.002667pt;}
.yc9_c00092{bottom:499.074667pt;}
.y3f_c00092{bottom:530.641333pt;}
.y3e_c00092{bottom:536.225632pt;}
.y3d_c00092{bottom:536.425295pt;}
.y3c_c00092{bottom:536.886777pt;}
.y3b_c00092{bottom:537.857427pt;}
.y3a_c00092{bottom:538.104132pt;}
.y39_c00092{bottom:538.550015pt;}
.y38_c00092{bottom:538.804000pt;}
.y37_c00092{bottom:554.356000pt;}
.y36_c00092{bottom:555.733333pt;}
.y35_c00092{bottom:556.241333pt;}
.y34_c00092{bottom:556.520000pt;}
.y33_c00092{bottom:557.438667pt;}
.y32_c00092{bottom:558.114667pt;}
.y31_c00092{bottom:559.209333pt;}
.y30_c00092{bottom:574.226667pt;}
.y2f_c00092{bottom:576.022667pt;}
.y2e_c00092{bottom:576.292000pt;}
.y2d_c00092{bottom:576.836000pt;}
.y2c_c00092{bottom:577.554667pt;}
.y2b_c00092{bottom:577.942667pt;}
.y2a_c00092{bottom:578.566667pt;}
.y29_c00092{bottom:578.886667pt;}
.y28_c00092{bottom:595.421333pt;}
.y27_c00092{bottom:596.352000pt;}
.y26_c00092{bottom:596.724000pt;}
.y25_c00092{bottom:596.856000pt;}
.y24_c00092{bottom:597.333333pt;}
.y23_c00092{bottom:598.140000pt;}
.y22_c00092{bottom:598.588000pt;}
.y21_c00092{bottom:598.804000pt;}
.y20_c00092{bottom:615.052000pt;}
.y1f_c00092{bottom:615.756000pt;}
.y1e_c00092{bottom:616.017333pt;}
.y1d_c00092{bottom:616.394667pt;}
.y1c_c00092{bottom:616.748000pt;}
.y1b_c00092{bottom:617.030667pt;}
.y1a_c00092{bottom:617.508000pt;}
.y19_c00092{bottom:617.666667pt;}
.y18_c00092{bottom:618.084000pt;}
.y17_c00092{bottom:618.248000pt;}
.y16_c00092{bottom:618.722667pt;}
.y15_c00092{bottom:638.173333pt;}
.y14_c00092{bottom:658.338667pt;}
.y11_c00092{bottom:683.850592pt;}
.y13_c00092{bottom:683.850720pt;}
.y12_c00092{bottom:683.850869pt;}
.y10_c00092{bottom:683.850955pt;}
.yf_c00092{bottom:683.851317pt;}
.yd_c00092{bottom:683.851467pt;}
.ye_c00092{bottom:683.851680pt;}
.yc_c00092{bottom:683.851989pt;}
.yb_c00092{bottom:702.382080pt;}
.ya_c00092{bottom:702.541163pt;}
.y9_c00092{bottom:702.739211pt;}
.y8_c00092{bottom:703.117397pt;}
.y7_c00092{bottom:703.340128pt;}
.y6_c00092{bottom:703.672149pt;}
.y5_c00092{bottom:703.831445pt;}
.y4_c00092{bottom:704.008384pt;}
.y3_c00092{bottom:704.538347pt;}
.y2_c00092{bottom:704.922272pt;}
.y1_c00092{bottom:705.120000pt;}
.ha_c00092{height:54.144159pt;}
.h13_c00092{height:56.011199pt;}
.h16_c00092{height:56.948390pt;}
.he_c00092{height:57.878239pt;}
.h2_c00092{height:59.735245pt;}
.h15_c00092{height:59.743009pt;}
.h4_c00092{height:60.666667pt;}
.h12_c00092{height:61.612319pt;}
.h7_c00092{height:62.533333pt;}
.h9_c00092{height:62.545839pt;}
.h17_c00092{height:62.549871pt;}
.h5_c00092{height:63.466667pt;}
.h6_c00092{height:64.400000pt;}
.h3_c00092{height:64.402061pt;}
.hc_c00092{height:64.412879pt;}
.h10_c00092{height:65.346399pt;}
.h11_c00092{height:66.279919pt;}
.hd_c00092{height:67.213439pt;}
.hf_c00092{height:68.146959pt;}
.hb_c00092{height:69.080479pt;}
.h14_c00092{height:72.811793pt;}
.h8_c00092{height:81.206861pt;}
.h1_c00092{height:893.333333pt;}
.h0_c00092{height:893.466667pt;}
.w0_c00092{width:627.066667pt;}
.w1_c00092{width:627.333333pt;}
.x0_c00092{left:0.000000pt;}
.x85_c00092{left:82.126667pt;}
.x3a_c00092{left:95.732000pt;}
.x86_c00092{left:106.617333pt;}
.x72_c00092{left:109.144027pt;}
.x62_c00092{left:111.128960pt;}
.x6f_c00092{left:113.730027pt;}
.x24_c00092{left:115.305333pt;}
.x1d_c00092{left:117.120000pt;}
.x14_c00092{left:118.320000pt;}
.x87_c00092{left:123.821333pt;}
.x7e_c00092{left:128.616000pt;}
.xc_c00092{left:130.801749pt;}
.x1_c00092{left:132.637333pt;}
.x53_c00092{left:135.149467pt;}
.x2f_c00092{left:136.965333pt;}
.x63_c00092{left:137.996160pt;}
.x15_c00092{left:140.160000pt;}
.x8f_c00092{left:142.229841pt;}
.x6e_c00092{left:144.079653pt;}
.x3b_c00092{left:149.568000pt;}
.x7c_c00092{left:152.232987pt;}
.x6b_c00092{left:153.214880pt;}
.x64_c00092{left:156.001840pt;}
.x2_c00092{left:157.353333pt;}
.x25_c00092{left:158.505333pt;}
.x84_c00092{left:160.800000pt;}
.x4a_c00092{left:162.698453pt;}
.x73_c00092{left:167.058347pt;}
.x67_c00092{left:168.001013pt;}
.xd_c00092{left:169.202869pt;}
.x80_c00092{left:170.169195pt;}
.x54_c00092{left:171.638320pt;}
.x26_c00092{left:173.373333pt;}
.x44_c00092{left:175.371733pt;}
.x4e_c00092{left:177.106453pt;}
.x33_c00092{left:178.686667pt;}
.x16_c00092{left:182.160000pt;}
.x74_c00092{left:184.305707pt;}
.x70_c00092{left:186.663627pt;}
.x45_c00092{left:187.694640pt;}
.xe_c00092{left:189.844192pt;}
.x55_c00092{left:191.556853pt;}
.x88_c00092{left:194.445333pt;}
.x60_c00092{left:195.610960pt;}
.x4f_c00092{left:197.032987pt;}
.x77_c00092{left:198.561733pt;}
.x81_c00092{left:201.160848pt;}
.x17_c00092{left:203.760000pt;}
.x3_c00092{left:205.344000pt;}
.x65_c00092{left:206.850853pt;}
.x4b_c00092{left:209.282453pt;}
.x27_c00092{left:211.314667pt;}
.xf_c00092{left:216.724576pt;}
.x37_c00092{left:218.929333pt;}
.x6c_c00092{left:220.365600pt;}
.x50_c00092{left:221.750480pt;}
.x56_c00092{left:223.250747pt;}
.x28_c00092{left:225.692000pt;}
.x5d_c00092{left:231.879307pt;}
.x1e_c00092{left:232.800000pt;}
.x68_c00092{left:234.931680pt;}
.x10_c00092{left:237.604576pt;}
.x46_c00092{left:240.273013pt;}
.x57_c00092{left:241.717200pt;}
.x3c_c00092{left:243.210667pt;}
.x3f_c00092{left:245.069333pt;}
.x7f_c00092{left:246.492000pt;}
.x75_c00092{left:248.626933pt;}
.x66_c00092{left:251.126400pt;}
.x34_c00092{left:252.546667pt;}
.x4c_c00092{left:258.179787pt;}
.x18_c00092{left:262.080000pt;}
.x29_c00092{left:269.110667pt;}
.x11_c00092{left:270.485344pt;}
.x4_c00092{left:271.589333pt;}
.x1f_c00092{left:273.600000pt;}
.x47_c00092{left:275.325707pt;}
.x6d_c00092{left:277.273947pt;}
.x3d_c00092{left:278.709333pt;}
.x40_c00092{left:280.586667pt;}
.x19_c00092{left:283.440000pt;}
.x76_c00092{left:285.416400pt;}
.x35_c00092{left:288.796000pt;}
.x58_c00092{left:290.461467pt;}
.x5_c00092{left:293.706667pt;}
.x2a_c00092{left:294.829333pt;}
.x20_c00092{left:295.920000pt;}
.x69_c00092{left:296.982240pt;}
.x51_c00092{left:297.888373pt;}
.x12_c00092{left:299.285856pt;}
.x59_c00092{left:305.591707pt;}
.x36_c00092{left:306.785333pt;}
.x5e_c00092{left:307.745360pt;}
.x30_c00092{left:310.210667pt;}
.x6_c00092{left:313.618667pt;}
.x78_c00092{left:315.117413pt;}
.x41_c00092{left:316.340000pt;}
.x38_c00092{left:319.217333pt;}
.x3e_c00092{left:320.400000pt;}
.x7d_c00092{left:321.479040pt;}
.x31_c00092{left:323.392000pt;}
.x82_c00092{left:324.982176pt;}
.x2b_c00092{left:326.993333pt;}
.x89_c00092{left:328.468000pt;}
.x48_c00092{left:329.644133pt;}
.x6a_c00092{left:332.613627pt;}
.x5a_c00092{left:334.848133pt;}
.x1a_c00092{left:340.080000pt;}
.x4d_c00092{left:346.547787pt;}
.x42_c00092{left:349.458667pt;}
.x21_c00092{left:351.600000pt;}
.x13_c00092{left:352.807947pt;}
.x7_c00092{left:355.121333pt;}
.x5f_c00092{left:356.694613pt;}
.x49_c00092{left:360.064747pt;}
.x2c_c00092{left:361.306667pt;}
.x71_c00092{left:364.860080pt;}
.x61_c00092{left:366.106960pt;}
.x79_c00092{left:367.967813pt;}
.x8a_c00092{left:369.130667pt;}
.x5b_c00092{left:370.471600pt;}
.x22_c00092{left:377.760000pt;}
.x8_c00092{left:382.962667pt;}
.x2d_c00092{left:385.069333pt;}
.x7a_c00092{left:388.129547pt;}
.x1b_c00092{left:390.240000pt;}
.x90_c00092{left:396.971813pt;}
.x39_c00092{left:400.269333pt;}
.x5c_c00092{left:405.919067pt;}
.x52_c00092{left:407.761653pt;}
.x23_c00092{left:413.760000pt;}
.x8b_c00092{left:419.360000pt;}
.x83_c00092{left:421.795611pt;}
.x1c_c00092{left:425.760000pt;}
.x7b_c00092{left:427.167653pt;}
.x9_c00092{left:430.236000pt;}
.x8c_c00092{left:445.808000pt;}
.x2e_c00092{left:449.125333pt;}
.x43_c00092{left:451.889333pt;}
.x32_c00092{left:453.737333pt;}
.xa_c00092{left:454.992000pt;}
.x8d_c00092{left:459.974667pt;}
.x91_c00092{left:462.256820pt;}
.xb_c00092{left:474.877333pt;}
.x8e_c00092{left:490.113333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.md6_c00093{transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);}
.m5d_c00093{transform:matrix(0.012320,-0.000111,0.002250,0.249990,0,0);-ms-transform:matrix(0.012320,-0.000111,0.002250,0.249990,0,0);-webkit-transform:matrix(0.012320,-0.000111,0.002250,0.249990,0,0);}
.mef_c00093{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);}
.m3f_c00093{transform:matrix(0.017164,-0.000154,0.002250,0.249990,0,0);-ms-transform:matrix(0.017164,-0.000154,0.002250,0.249990,0,0);-webkit-transform:matrix(0.017164,-0.000154,0.002250,0.249990,0,0);}
.m95_c00093{transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.113737,-0.002275,0.004999,0.249950,0,0);-ms-transform:matrix(0.113737,-0.002275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.113737,-0.002275,0.004999,0.249950,0,0);}
.m57_c00093{transform:matrix(0.128955,-0.001161,0.002250,0.249990,0,0);-ms-transform:matrix(0.128955,-0.001161,0.002250,0.249990,0,0);-webkit-transform:matrix(0.128955,-0.001161,0.002250,0.249990,0,0);}
.m90_c00093{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);}
.m62_c00093{transform:matrix(0.144704,-0.001302,0.002250,0.249990,0,0);-ms-transform:matrix(0.144704,-0.001302,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144704,-0.001302,0.002250,0.249990,0,0);}
.m36_c00093{transform:matrix(0.144824,-0.001303,0.002250,0.249990,0,0);-ms-transform:matrix(0.144824,-0.001303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144824,-0.001303,0.002250,0.249990,0,0);}
.m42_c00093{transform:matrix(0.144964,-0.001305,0.002250,0.249990,0,0);-ms-transform:matrix(0.144964,-0.001305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144964,-0.001305,0.002250,0.249990,0,0);}
.ma7_c00093{transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.153484,-0.001381,0.002250,0.249990,0,0);-ms-transform:matrix(0.153484,-0.001381,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153484,-0.001381,0.002250,0.249990,0,0);}
.mc0_c00093{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);}
.m4f_c00093{transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);-ms-transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);}
.m9_c00093{transform:matrix(0.155884,-0.003118,0.004999,0.249950,0,0);-ms-transform:matrix(0.155884,-0.003118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155884,-0.003118,0.004999,0.249950,0,0);}
.m8d_c00093{transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160340,0.000000,0.000000,0.250000,0,0);}
.mc4_c00093{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);}
.mbc_c00093{transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.163984,-0.002296,0.003500,0.249976,0,0);-ms-transform:matrix(0.163984,-0.002296,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163984,-0.002296,0.003500,0.249976,0,0);}
.m50_c00093{transform:matrix(0.164723,-0.001483,0.002250,0.249990,0,0);-ms-transform:matrix(0.164723,-0.001483,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164723,-0.001483,0.002250,0.249990,0,0);}
.m85_c00093{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.165458,-0.001489,0.002250,0.249990,0,0);-ms-transform:matrix(0.165458,-0.001489,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165458,-0.001489,0.002250,0.249990,0,0);}
.m8f_c00093{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);}
.m8a_c00093{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);}
.m93_c00093{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);}
.mbf_c00093{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);}
.m23_c00093{transform:matrix(0.168325,-0.001852,0.002750,0.249985,0,0);-ms-transform:matrix(0.168325,-0.001852,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168325,-0.001852,0.002750,0.249985,0,0);}
.m26_c00093{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);}
.m81_c00093{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);}
.m7_c00093{transform:matrix(0.169176,-0.003384,0.004999,0.249950,0,0);-ms-transform:matrix(0.169176,-0.003384,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169176,-0.003384,0.004999,0.249950,0,0);}
.m48_c00093{transform:matrix(0.169508,-0.001526,0.002250,0.249990,0,0);-ms-transform:matrix(0.169508,-0.001526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169508,-0.001526,0.002250,0.249990,0,0);}
.m4b_c00093{transform:matrix(0.170423,-0.001534,0.002250,0.249990,0,0);-ms-transform:matrix(0.170423,-0.001534,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170423,-0.001534,0.002250,0.249990,0,0);}
.m6_c00093{transform:matrix(0.170886,-0.003418,0.004999,0.249950,0,0);-ms-transform:matrix(0.170886,-0.003418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170886,-0.003418,0.004999,0.249950,0,0);}
.m3e_c00093{transform:matrix(0.171123,-0.001540,0.002250,0.249990,0,0);-ms-transform:matrix(0.171123,-0.001540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171123,-0.001540,0.002250,0.249990,0,0);}
.mf1_c00093{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);}
.mb4_c00093{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);}
.m35_c00093{transform:matrix(0.175743,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175743,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175743,-0.001582,0.002250,0.249990,0,0);}
.m92_c00093{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);}
.m63_c00093{transform:matrix(0.176378,-0.001587,0.002250,0.249990,0,0);-ms-transform:matrix(0.176378,-0.001587,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176378,-0.001587,0.002250,0.249990,0,0);}
.meb_c00093{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);}
.m38_c00093{transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);-ms-transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);}
.m5_c00093{transform:matrix(0.178334,-0.003567,0.004999,0.249950,0,0);-ms-transform:matrix(0.178334,-0.003567,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178334,-0.003567,0.004999,0.249950,0,0);}
.mc5_c00093{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);}
.me2_c00093{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);}
.m4_c00093{transform:matrix(0.179469,-0.003589,0.004999,0.249950,0,0);-ms-transform:matrix(0.179469,-0.003589,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179469,-0.003589,0.004999,0.249950,0,0);}
.m5c_c00093{transform:matrix(0.179558,-0.001616,0.002250,0.249990,0,0);-ms-transform:matrix(0.179558,-0.001616,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179558,-0.001616,0.002250,0.249990,0,0);}
.mb5_c00093{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);}
.mcb_c00093{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);}
.me_c00093{transform:matrix(0.181604,-0.003632,0.004999,0.249950,0,0);-ms-transform:matrix(0.181604,-0.003632,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181604,-0.003632,0.004999,0.249950,0,0);}
.m2c_c00093{transform:matrix(0.182069,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182069,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182069,-0.002003,0.002750,0.249985,0,0);}
.ma0_c00093{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);}
.m67_c00093{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);}
.mce_c00093{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);}
.m40_c00093{transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);}
.m80_c00093{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);}
.mcc_c00093{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);}
.m2d_c00093{transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);}
.m8e_c00093{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);}
.mb3_c00093{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);}
.mbd_c00093{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);}
.m96_c00093{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);}
.m8b_c00093{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);}
.m47_c00093{transform:matrix(0.186772,-0.001681,0.002250,0.249990,0,0);-ms-transform:matrix(0.186772,-0.001681,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186772,-0.001681,0.002250,0.249990,0,0);}
.m14_c00093{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);}
.m9d_c00093{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);}
.mc3_c00093{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);}
.mc2_c00093{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);}
.me9_c00093{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);}
.m60_c00093{transform:matrix(0.188082,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188082,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188082,-0.001693,0.002250,0.249990,0,0);}
.m41_c00093{transform:matrix(0.188107,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188107,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188107,-0.001693,0.002250,0.249990,0,0);}
.mda_c00093{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);}
.ma1_c00093{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);}
.mc1_c00093{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);}
.mc8_c00093{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);}
.m39_c00093{transform:matrix(0.189612,-0.001707,0.002250,0.249990,0,0);-ms-transform:matrix(0.189612,-0.001707,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189612,-0.001707,0.002250,0.249990,0,0);}
.m24_c00093{transform:matrix(0.189619,-0.002086,0.002750,0.249985,0,0);-ms-transform:matrix(0.189619,-0.002086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189619,-0.002086,0.002750,0.249985,0,0);}
.m82_c00093{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);}
.m66_c00093{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);}
.md9_c00093{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);}
.m3a_c00093{transform:matrix(0.189937,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189937,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189937,-0.001709,0.002250,0.249990,0,0);}
.ma_c00093{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);}
.m2e_c00093{transform:matrix(0.190443,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190443,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190443,-0.002095,0.002750,0.249985,0,0);}
.mdf_c00093{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);}
.m77_c00093{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);}
.m7f_c00093{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);}
.m34_c00093{transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);}
.m15_c00093{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);}
.m45_c00093{transform:matrix(0.192662,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192662,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192662,-0.001734,0.002250,0.249990,0,0);}
.m2a_c00093{transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);}
.m1a_c00093{transform:matrix(0.192896,-0.002701,0.003500,0.249976,0,0);-ms-transform:matrix(0.192896,-0.002701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192896,-0.002701,0.003500,0.249976,0,0);}
.m3d_c00093{transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);-ms-transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);}
.mbe_c00093{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);}
.m84_c00093{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);}
.m83_c00093{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);}
.m56_c00093{transform:matrix(0.193842,-0.001745,0.002250,0.249990,0,0);-ms-transform:matrix(0.193842,-0.001745,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193842,-0.001745,0.002250,0.249990,0,0);}
.mc6_c00093{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);}
.m9c_c00093{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);}
.m8_c00093{transform:matrix(0.194276,-0.003886,0.004999,0.249950,0,0);-ms-transform:matrix(0.194276,-0.003886,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194276,-0.003886,0.004999,0.249950,0,0);}
.m1b_c00093{transform:matrix(0.194951,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194951,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194951,-0.002729,0.003500,0.249976,0,0);}
.me3_c00093{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);}
.mca_c00093{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);}
.mab_c00093{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);}
.ma5_c00093{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);}
.med_c00093{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);}
.m27_c00093{transform:matrix(0.197748,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197748,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197748,-0.002175,0.002750,0.249985,0,0);}
.me1_c00093{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);}
.m68_c00093{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);}
.md_c00093{transform:matrix(0.199880,-0.003998,0.004999,0.249950,0,0);-ms-transform:matrix(0.199880,-0.003998,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199880,-0.003998,0.004999,0.249950,0,0);}
.me8_c00093{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);}
.me0_c00093{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);}
.m7a_c00093{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);}
.m97_c00093{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);}
.mf0_c00093{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);}
.m99_c00093{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);}
.m3b_c00093{transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);-ms-transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);}
.mb6_c00093{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);}
.m8c_c00093{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);}
.m53_c00093{transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);}
.m5a_c00093{transform:matrix(0.205382,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205382,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205382,-0.001848,0.002250,0.249990,0,0);}
.m71_c00093{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);}
.m51_c00093{transform:matrix(0.205977,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.205977,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205977,-0.001854,0.002250,0.249990,0,0);}
.mcd_c00093{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);}
.mdb_c00093{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);}
.m13_c00093{transform:matrix(0.207778,-0.004156,0.004999,0.249950,0,0);-ms-transform:matrix(0.207778,-0.004156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207778,-0.004156,0.004999,0.249950,0,0);}
.m9a_c00093{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);}
.m5e_c00093{transform:matrix(0.208517,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208517,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208517,-0.001877,0.002250,0.249990,0,0);}
.m37_c00093{transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);}
.m98_c00093{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);}
.m5f_c00093{transform:matrix(0.209412,-0.001885,0.002250,0.249990,0,0);-ms-transform:matrix(0.209412,-0.001885,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209412,-0.001885,0.002250,0.249990,0,0);}
.me7_c00093{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);}
.m73_c00093{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);}
.m70_c00093{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);}
.m10_c00093{transform:matrix(0.211348,-0.004227,0.004999,0.249950,0,0);-ms-transform:matrix(0.211348,-0.004227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211348,-0.004227,0.004999,0.249950,0,0);}
.mb8_c00093{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);}
.m9b_c00093{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);}
.me6_c00093{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);}
.m30_c00093{transform:matrix(0.211732,-0.002329,0.002750,0.249985,0,0);-ms-transform:matrix(0.211732,-0.002329,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211732,-0.002329,0.002750,0.249985,0,0);}
.me5_c00093{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);}
.mee_c00093{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);}
.mf_c00093{transform:matrix(0.212997,-0.004260,0.004999,0.249950,0,0);-ms-transform:matrix(0.212997,-0.004260,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212997,-0.004260,0.004999,0.249950,0,0);}
.m89_c00093{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);}
.ma8_c00093{transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);}
.m6f_c00093{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);}
.m9e_c00093{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);}
.m46_c00093{transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);-ms-transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);}
.m79_c00093{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);}
.md0_c00093{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);}
.mea_c00093{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);}
.m17_c00093{transform:matrix(0.216812,-0.004336,0.004999,0.249950,0,0);-ms-transform:matrix(0.216812,-0.004336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216812,-0.004336,0.004999,0.249950,0,0);}
.md7_c00093{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00093{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);}
.mb0_c00093{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);}
.m25_c00093{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);}
.m49_c00093{transform:matrix(0.219666,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219666,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219666,-0.001977,0.002250,0.249990,0,0);}
.m29_c00093{transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);}
.ma2_c00093{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);}
.mb1_c00093{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);}
.m2f_c00093{transform:matrix(0.222437,-0.002447,0.002750,0.249985,0,0);-ms-transform:matrix(0.222437,-0.002447,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222437,-0.002447,0.002750,0.249985,0,0);}
.mec_c00093{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);}
.m44_c00093{transform:matrix(0.223251,-0.002009,0.002250,0.249990,0,0);-ms-transform:matrix(0.223251,-0.002009,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223251,-0.002009,0.002250,0.249990,0,0);}
.m86_c00093{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.mf3_c00093{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.mf2_c00093{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);}
.mbb_c00093{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);}
.m74_c00093{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);}
.m91_c00093{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);}
.m65_c00093{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);}
.m72_c00093{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);}
.m6a_c00093{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);}
.m55_c00093{transform:matrix(0.225966,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.225966,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225966,-0.002034,0.002250,0.249990,0,0);}
.m12_c00093{transform:matrix(0.226635,-0.004533,0.004999,0.249950,0,0);-ms-transform:matrix(0.226635,-0.004533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226635,-0.004533,0.004999,0.249950,0,0);}
.ma4_c00093{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);}
.m32_c00093{transform:matrix(0.229001,-0.002519,0.002750,0.249985,0,0);-ms-transform:matrix(0.229001,-0.002519,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229001,-0.002519,0.002750,0.249985,0,0);}
.m16_c00093{transform:matrix(0.229044,-0.004581,0.004999,0.249950,0,0);-ms-transform:matrix(0.229044,-0.004581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229044,-0.004581,0.004999,0.249950,0,0);}
.m11_c00093{transform:matrix(0.229429,-0.004589,0.004999,0.249950,0,0);-ms-transform:matrix(0.229429,-0.004589,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229429,-0.004589,0.004999,0.249950,0,0);}
.maa_c00093{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);}
.mc_c00093{transform:matrix(0.230389,-0.004608,0.004999,0.249950,0,0);-ms-transform:matrix(0.230389,-0.004608,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230389,-0.004608,0.004999,0.249950,0,0);}
.m4c_c00093{transform:matrix(0.231096,-0.002080,0.002250,0.249990,0,0);-ms-transform:matrix(0.231096,-0.002080,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231096,-0.002080,0.002250,0.249990,0,0);}
.mcf_c00093{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);}
.mba_c00093{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);}
.m6c_c00093{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);}
.m31_c00093{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);}
.mad_c00093{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);}
.mde_c00093{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);}
.mc9_c00093{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);}
.m58_c00093{transform:matrix(0.240895,-0.002168,0.002250,0.249990,0,0);-ms-transform:matrix(0.240895,-0.002168,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240895,-0.002168,0.002250,0.249990,0,0);}
.m7c_c00093{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);}
.m61_c00093{transform:matrix(0.241760,-0.002176,0.002250,0.249990,0,0);-ms-transform:matrix(0.241760,-0.002176,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241760,-0.002176,0.002250,0.249990,0,0);}
.mf4_c00093{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m7b_c00093{transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);}
.ma3_c00093{transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.243155,-0.002188,0.002250,0.249990,0,0);-ms-transform:matrix(0.243155,-0.002188,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243155,-0.002188,0.002250,0.249990,0,0);}
.m1c_c00093{transform:matrix(0.243301,-0.003406,0.003500,0.249976,0,0);-ms-transform:matrix(0.243301,-0.003406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243301,-0.003406,0.003500,0.249976,0,0);}
.ma9_c00093{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);}
.m4d_c00093{transform:matrix(0.243895,-0.002195,0.002250,0.249990,0,0);-ms-transform:matrix(0.243895,-0.002195,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243895,-0.002195,0.002250,0.249990,0,0);}
.m4e_c00093{transform:matrix(0.244240,-0.002198,0.002250,0.249990,0,0);-ms-transform:matrix(0.244240,-0.002198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244240,-0.002198,0.002250,0.249990,0,0);}
.mf5_c00093{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.247776,-0.003469,0.003500,0.249976,0,0);-ms-transform:matrix(0.247776,-0.003469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247776,-0.003469,0.003500,0.249976,0,0);}
.m9f_c00093{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);}
.md3_c00093{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mf7_c00093{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);}
.m28_c00093{transform:matrix(0.253980,-0.002794,0.002750,0.249985,0,0);-ms-transform:matrix(0.253980,-0.002794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253980,-0.002794,0.002750,0.249985,0,0);}
.m78_c00093{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);}
.md2_c00093{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);}
.mae_c00093{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);}
.maf_c00093{transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);}
.m22_c00093{transform:matrix(0.261379,-0.002875,0.002750,0.249985,0,0);-ms-transform:matrix(0.261379,-0.002875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261379,-0.002875,0.002750,0.249985,0,0);}
.m64_c00093{transform:matrix(0.262420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262420,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.262907,-0.005258,0.004999,0.249950,0,0);-ms-transform:matrix(0.262907,-0.005258,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262907,-0.005258,0.004999,0.249950,0,0);}
.m54_c00093{transform:matrix(0.263979,-0.002376,0.002250,0.249990,0,0);-ms-transform:matrix(0.263979,-0.002376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263979,-0.002376,0.002250,0.249990,0,0);}
.m6b_c00093{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);}
.mac_c00093{transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);}
.m6e_c00093{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);}
.mb9_c00093{transform:matrix(0.267390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267390,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.267704,-0.003748,0.003500,0.249976,0,0);-ms-transform:matrix(0.267704,-0.003748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267704,-0.003748,0.003500,0.249976,0,0);}
.m1e_c00093{transform:matrix(0.270019,-0.003780,0.003500,0.249976,0,0);-ms-transform:matrix(0.270019,-0.003780,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270019,-0.003780,0.003500,0.249976,0,0);}
.m7d_c00093{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);}
.m1f_c00093{transform:matrix(0.271713,-0.003804,0.003500,0.249976,0,0);-ms-transform:matrix(0.271713,-0.003804,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271713,-0.003804,0.003500,0.249976,0,0);}
.m3c_c00093{transform:matrix(0.273174,-0.002459,0.002250,0.249990,0,0);-ms-transform:matrix(0.273174,-0.002459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273174,-0.002459,0.002250,0.249990,0,0);}
.m69_c00093{transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);}
.md5_c00093{transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);}
.me4_c00093{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);}
.md4_c00093{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m76_c00093{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);}
.m6d_c00093{transform:matrix(0.292900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292900,0.000000,0.000000,0.250000,0,0);}
.m87_c00093{transform:matrix(0.293560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293560,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.295266,-0.004134,0.003500,0.249976,0,0);-ms-transform:matrix(0.295266,-0.004134,0.003500,0.249976,0,0);-webkit-transform:matrix(0.295266,-0.004134,0.003500,0.249976,0,0);}
.mf6_c00093{transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.305478,-0.002749,0.002250,0.249990,0,0);-ms-transform:matrix(0.305478,-0.002749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305478,-0.002749,0.002250,0.249990,0,0);}
.m7e_c00093{transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);}
.mc7_c00093{transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);-ms-transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);}
.mdd_c00093{transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.330087,-0.028501,0.021506,0.249073,0,0);-ms-transform:matrix(0.330087,-0.028501,0.021506,0.249073,0,0);-webkit-transform:matrix(0.330087,-0.028501,0.021506,0.249073,0,0);}
.m4a_c00093{transform:matrix(0.334416,-0.003010,0.002250,0.249990,0,0);-ms-transform:matrix(0.334416,-0.003010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.334416,-0.003010,0.002250,0.249990,0,0);}
.m94_c00093{transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);}
.m33_c00093{transform:matrix(0.356363,-0.003920,0.002750,0.249985,0,0);-ms-transform:matrix(0.356363,-0.003920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.356363,-0.003920,0.002750,0.249985,0,0);}
.md8_c00093{transform:matrix(0.393200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393200,0.000000,0.000000,0.250000,0,0);}
.mf9_c00093{transform:matrix(0.394380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394380,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.394951,-0.005529,0.003500,0.249976,0,0);-ms-transform:matrix(0.394951,-0.005529,0.003500,0.249976,0,0);-webkit-transform:matrix(0.394951,-0.005529,0.003500,0.249976,0,0);}
.ma6_c00093{transform:matrix(0.399460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399460,0.000000,0.000000,0.250000,0,0);}
.mb7_c00093{transform:matrix(0.419035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419035,0.000000,0.000000,0.250000,0,0);}
.md1_c00093{transform:matrix(0.431800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431800,0.000000,0.000000,0.250000,0,0);}
.mfa_c00093{transform:matrix(0.464600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464600,0.000000,0.000000,0.250000,0,0);}
.m88_c00093{transform:matrix(0.480060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480060,0.000000,0.000000,0.250000,0,0);}
.m75_c00093{transform:matrix(0.526675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526675,0.000000,0.000000,0.250000,0,0);}
.mdc_c00093{transform:matrix(0.588625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588625,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.825733,-0.071298,0.021506,0.249073,0,0);-ms-transform:matrix(0.825733,-0.071298,0.021506,0.249073,0,0);-webkit-transform:matrix(0.825733,-0.071298,0.021506,0.249073,0,0);}
.m0_c00093{transform:matrix(0.853848,-0.073726,0.021506,0.249073,0,0);-ms-transform:matrix(0.853848,-0.073726,0.021506,0.249073,0,0);-webkit-transform:matrix(0.853848,-0.073726,0.021506,0.249073,0,0);}
.mf8_c00093{transform:matrix(1.488200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.488200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.488200,0.000000,0.000000,0.250000,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;}
.fs17_c00093{font-size:21.000000px;}
.fs0_c00093{font-size:54.583945px;}
.fs16_c00093{font-size:60.900000px;}
.fsd_c00093{font-size:61.950000px;}
.fse_c00093{font-size:66.150000px;}
.fs4_c00093{font-size:66.156482px;}
.fs3_c00093{font-size:66.163229px;}
.fsc_c00093{font-size:67.200000px;}
.fs15_c00093{font-size:68.250000px;}
.fs9_c00093{font-size:68.252764px;}
.fs2_c00093{font-size:68.263649px;}
.fs10_c00093{font-size:69.300000px;}
.fsa_c00093{font-size:69.302807px;}
.fs5_c00093{font-size:69.304193px;}
.fs14_c00093{font-size:70.350000px;}
.fs7_c00093{font-size:70.352849px;}
.fs11_c00093{font-size:71.400000px;}
.fs6_c00093{font-size:71.404320px;}
.fs1_c00093{font-size:71.414279px;}
.fsf_c00093{font-size:72.450000px;}
.fs8_c00093{font-size:72.452934px;}
.fs12_c00093{font-size:73.500000px;}
.fsb_c00093{font-size:73.502977px;}
.fs13_c00093{font-size:90.300000px;}
.y0_c00093{bottom:0.000000px;}
.y77_c00093{bottom:72.276000px;}
.y76_c00093{bottom:130.767000px;}
.y75_c00093{bottom:153.964500px;}
.y74_c00093{bottom:177.121500px;}
.y73_c00093{bottom:199.023000px;}
.y72_c00093{bottom:222.258000px;}
.y71_c00093{bottom:249.022500px;}
.y70_c00093{bottom:272.371500px;}
.y6f_c00093{bottom:295.285500px;}
.y6e_c00093{bottom:317.484000px;}
.y6d_c00093{bottom:340.071000px;}
.y6c_c00093{bottom:363.699000px;}
.y6b_c00093{bottom:386.185500px;}
.y6a_c00093{bottom:409.197000px;}
.y69_c00093{bottom:432.546000px;}
.y68_c00093{bottom:455.232000px;}
.y67_c00093{bottom:478.587000px;}
.y66_c00093{bottom:501.606000px;}
.y65_c00093{bottom:524.943000px;}
.y62_c00093{bottom:569.710140px;}
.y61_c00093{bottom:569.710450px;}
.y64_c00093{bottom:569.710593px;}
.y5f_c00093{bottom:569.710627px;}
.y63_c00093{bottom:569.710666px;}
.y60_c00093{bottom:569.711124px;}
.y56_c00093{bottom:591.299460px;}
.y57_c00093{bottom:591.958326px;}
.y58_c00093{bottom:592.173793px;}
.y59_c00093{bottom:592.498960px;}
.y5a_c00093{bottom:593.081760px;}
.y5b_c00093{bottom:593.313429px;}
.y5c_c00093{bottom:593.526291px;}
.y5d_c00093{bottom:593.864595px;}
.y5e_c00093{bottom:595.260756px;}
.y4c_c00093{bottom:615.134659px;}
.y4d_c00093{bottom:615.135096px;}
.y51_c00093{bottom:615.135402px;}
.y55_c00093{bottom:615.135441px;}
.y4e_c00093{bottom:615.135652px;}
.y54_c00093{bottom:615.135798px;}
.y52_c00093{bottom:615.135838px;}
.y4f_c00093{bottom:615.135849px;}
.y50_c00093{bottom:615.135985px;}
.y53_c00093{bottom:615.136021px;}
.y4a_c00093{bottom:638.153197px;}
.y46_c00093{bottom:638.153461px;}
.y49_c00093{bottom:638.153751px;}
.y4b_c00093{bottom:638.153784px;}
.y45_c00093{bottom:638.153818px;}
.y47_c00093{bottom:638.154018px;}
.y42_c00093{bottom:638.154099px;}
.y48_c00093{bottom:638.154245px;}
.y44_c00093{bottom:638.154342px;}
.y43_c00093{bottom:638.154505px;}
.y41_c00093{bottom:638.154816px;}
.y35_c00093{bottom:659.341500px;}
.y36_c00093{bottom:659.574469px;}
.y37_c00093{bottom:659.844172px;}
.y38_c00093{bottom:660.043864px;}
.y39_c00093{bottom:660.335451px;}
.y3a_c00093{bottom:660.598364px;}
.y3b_c00093{bottom:660.984342px;}
.y3c_c00093{bottom:661.385386px;}
.y3d_c00093{bottom:661.574899px;}
.y3e_c00093{bottom:661.893108px;}
.y3f_c00093{bottom:662.085118px;}
.y40_c00093{bottom:662.469301px;}
.y2d_c00093{bottom:682.290120px;}
.y2e_c00093{bottom:683.217024px;}
.y2f_c00093{bottom:683.397979px;}
.y30_c00093{bottom:683.899843px;}
.y31_c00093{bottom:684.185079px;}
.y32_c00093{bottom:684.809043px;}
.y33_c00093{bottom:685.206676px;}
.y34_c00093{bottom:685.741705px;}
.y23_c00093{bottom:704.971500px;}
.y24_c00093{bottom:705.375486px;}
.y25_c00093{bottom:705.829863px;}
.y26_c00093{bottom:706.043884px;}
.y27_c00093{bottom:706.700254px;}
.y28_c00093{bottom:707.151925px;}
.y29_c00093{bottom:707.671543px;}
.y2a_c00093{bottom:707.959617px;}
.y2b_c00093{bottom:708.200071px;}
.y2c_c00093{bottom:708.704971px;}
.y19_c00093{bottom:727.923000px;}
.y1a_c00093{bottom:728.338863px;}
.y1b_c00093{bottom:728.921088px;}
.y1c_c00093{bottom:729.529080px;}
.y1d_c00093{bottom:730.074240px;}
.y1e_c00093{bottom:730.762662px;}
.y1f_c00093{bottom:731.178903px;}
.y20_c00093{bottom:731.533761px;}
.y21_c00093{bottom:731.934987px;}
.y22_c00093{bottom:732.441675px;}
.y13_c00093{bottom:750.055770px;}
.y14_c00093{bottom:750.751650px;}
.y15_c00093{bottom:751.896390px;}
.y16_c00093{bottom:752.807970px;}
.y17_c00093{bottom:754.166850px;}
.y18_c00093{bottom:754.665930px;}
.yd_c00093{bottom:772.740330px;}
.ye_c00093{bottom:774.208950px;}
.yf_c00093{bottom:774.659040px;}
.y10_c00093{bottom:775.657380px;}
.y11_c00093{bottom:776.739720px;}
.y12_c00093{bottom:777.850200px;}
.y4_c00093{bottom:794.616000px;}
.y5_c00093{bottom:795.215490px;}
.y6_c00093{bottom:797.185110px;}
.y7_c00093{bottom:797.979630px;}
.y8_c00093{bottom:798.872490px;}
.y9_c00093{bottom:799.691070px;}
.ya_c00093{bottom:800.287230px;}
.yb_c00093{bottom:800.875590px;}
.yc_c00093{bottom:801.824070px;}
.y1_c00093{bottom:879.082500px;}
.y2_c00093{bottom:899.945670px;}
.y3_c00093{bottom:912.189576px;}
.h19_c00093{height:21.000000px;}
.h2_c00093{height:54.583945px;}
.h18_c00093{height:60.900000px;}
.hf_c00093{height:61.950000px;}
.h10_c00093{height:66.150000px;}
.h6_c00093{height:66.156482px;}
.h5_c00093{height:66.163229px;}
.he_c00093{height:67.200000px;}
.h17_c00093{height:68.250000px;}
.hb_c00093{height:68.252764px;}
.h4_c00093{height:68.263649px;}
.h12_c00093{height:69.300000px;}
.hc_c00093{height:69.302807px;}
.h7_c00093{height:69.304193px;}
.h16_c00093{height:70.350000px;}
.h9_c00093{height:70.352849px;}
.h13_c00093{height:71.400000px;}
.h8_c00093{height:71.404320px;}
.h3_c00093{height:71.414279px;}
.h11_c00093{height:72.450000px;}
.ha_c00093{height:72.452934px;}
.h14_c00093{height:73.500000px;}
.hd_c00093{height:73.502977px;}
.h15_c00093{height:90.300000px;}
.h0_c00093{height:1008.450000px;}
.h1_c00093{height:1008.750000px;}
.w0_c00093{width:711.720000px;}
.w1_c00093{width:711.750000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:103.677000px;}
.x52_c00093{left:109.890000px;}
.x57_c00093{left:113.130000px;}
.x4_c00093{left:191.436000px;}
.x12_c00093{left:192.715860px;}
.x3f_c00093{left:194.400386px;}
.x6a_c00093{left:195.480000px;}
.x77_c00093{left:196.560000px;}
.x73_c00093{left:197.640000px;}
.x88_c00093{left:198.720000px;}
.x2e_c00093{left:219.592500px;}
.x5_c00093{left:221.410500px;}
.x17_c00093{left:222.928500px;}
.x83_c00093{left:224.910000px;}
.x6c_c00093{left:226.800000px;}
.x1f_c00093{left:228.028500px;}
.x13_c00093{left:236.213340px;}
.x40_c00093{left:238.952490px;}
.x65_c00093{left:240.030000px;}
.x5e_c00093{left:241.110000px;}
.x7a_c00093{left:243.810000px;}
.x2f_c00093{left:249.559500px;}
.x38_c00093{left:251.913386px;}
.x74_c00093{left:255.420000px;}
.x46_c00093{left:260.132780px;}
.x66_c00093{left:261.630000px;}
.x18_c00093{left:264.516000px;}
.x86_c00093{left:266.220000px;}
.x20_c00093{left:269.335500px;}
.x30_c00093{left:271.747500px;}
.x7b_c00093{left:273.240000px;}
.x39_c00093{left:277.293938px;}
.xd_c00093{left:278.601330px;}
.x47_c00093{left:281.740091px;}
.x5f_c00093{left:284.850000px;}
.x21_c00093{left:288.792000px;}
.x58_c00093{left:290.250000px;}
.x41_c00093{left:292.685337px;}
.x28_c00093{left:294.186727px;}
.x53_c00093{left:295.650000px;}
.x82_c00093{left:301.320000px;}
.x3a_c00093{left:302.944517px;}
.xe_c00093{left:305.082420px;}
.x6f_c00093{left:306.450000px;}
.x14_c00093{left:307.781070px;}
.x8a_c00093{left:312.930000px;}
.x48_c00093{left:314.202794px;}
.x7c_c00093{left:315.360000px;}
.x59_c00093{left:317.250000px;}
.x6_c00093{left:319.891500px;}
.x89_c00093{left:321.570000px;}
.x6d_c00093{left:322.920000px;}
.x4f_c00093{left:325.080000px;}
.x84_c00093{left:328.590000px;}
.x31_c00093{left:333.358500px;}
.x29_c00093{left:339.810727px;}
.x3b_c00093{left:341.556149px;}
.x87_c00093{left:343.440000px;}
.x2_c00093{left:345.301620px;}
.x19_c00093{left:346.884000px;}
.x22_c00093{left:348.462000px;}
.x70_c00093{left:350.460000px;}
.x54_c00093{left:355.050000px;}
.x4c_c00093{left:357.486882px;}
.x7_c00093{left:359.617500px;}
.xf_c00093{left:363.777930px;}
.x2a_c00093{left:365.741227px;}
.x5a_c00093{left:368.820000px;}
.x49_c00093{left:372.457767px;}
.x42_c00093{left:374.228939px;}
.x32_c00093{left:376.245000px;}
.x85_c00093{left:378.270000px;}
.x50_c00093{left:383.670000px;}
.x80_c00093{left:384.750000px;}
.x23_c00093{left:389.523000px;}
.x6e_c00093{left:391.230000px;}
.x1a_c00093{left:396.057000px;}
.x67_c00093{left:399.330000px;}
.x3c_c00093{left:400.687941px;}
.x8_c00093{left:404.260500px;}
.x4d_c00093{left:405.549270px;}
.x6b_c00093{left:408.780000px;}
.x55_c00093{left:413.100000px;}
.x60_c00093{left:415.260000px;}
.x4a_c00093{left:417.016376px;}
.x33_c00093{left:420.805500px;}
.x2b_c00093{left:422.465227px;}
.x1b_c00093{left:425.788500px;}
.x10_c00093{left:427.423740px;}
.x5d_c00093{left:431.460000px;}
.x43_c00093{left:432.550664px;}
.x68_c00093{left:435.240000px;}
.x24_c00093{left:436.761000px;}
.x75_c00093{left:439.020000px;}
.x34_c00093{left:441.862500px;}
.x7d_c00093{left:443.610000px;}
.x9_c00093{left:445.189500px;}
.x4e_c00093{left:448.211226px;}
.x15_c00093{left:449.740440px;}
.x1c_c00093{left:451.135500px;}
.x61_c00093{left:454.410000px;}
.x2c_c00093{left:458.613727px;}
.x76_c00093{left:460.080000px;}
.x25_c00093{left:462.949500px;}
.x7e_c00093{left:465.210000px;}
.x5b_c00093{left:471.690000px;}
.xa_c00093{left:474.997500px;}
.x35_c00093{left:477.219000px;}
.x1d_c00093{left:479.794500px;}
.x16_c00093{left:480.921930px;}
.x26_c00093{left:484.809000px;}
.x3_c00093{left:487.103136px;}
.x62_c00093{left:490.050000px;}
.x51_c00093{left:491.670000px;}
.x11_c00093{left:492.776670px;}
.x78_c00093{left:494.370000px;}
.x36_c00093{left:498.553500px;}
.x7f_c00093{left:500.040000px;}
.xb_c00093{left:504.415500px;}
.x2d_c00093{left:507.252727px;}
.x79_c00093{left:509.760000px;}
.x44_c00093{left:512.744157px;}
.x56_c00093{left:514.350000px;}
.x1e_c00093{left:515.986500px;}
.x71_c00093{left:518.130000px;}
.x69_c00093{left:523.530000px;}
.x27_c00093{left:530.709000px;}
.x72_c00093{left:537.840000px;}
.x37_c00093{left:541.240500px;}
.x63_c00093{left:547.290000px;}
.x5c_c00093{left:548.640000px;}
.x3d_c00093{left:550.004037px;}
.xc_c00093{left:551.839500px;}
.x81_c00093{left:557.280000px;}
.x64_c00093{left:565.380000px;}
.x4b_c00093{left:590.399810px;}
.x3e_c00093{left:595.906250px;}
.x45_c00093{left:599.686704px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fs17_c00093{font-size:18.666667pt;}
.fs0_c00093{font-size:48.519062pt;}
.fs16_c00093{font-size:54.133333pt;}
.fsd_c00093{font-size:55.066667pt;}
.fse_c00093{font-size:58.800000pt;}
.fs4_c00093{font-size:58.805762pt;}
.fs3_c00093{font-size:58.811759pt;}
.fsc_c00093{font-size:59.733333pt;}
.fs15_c00093{font-size:60.666667pt;}
.fs9_c00093{font-size:60.669124pt;}
.fs2_c00093{font-size:60.678799pt;}
.fs10_c00093{font-size:61.600000pt;}
.fsa_c00093{font-size:61.602495pt;}
.fs5_c00093{font-size:61.603727pt;}
.fs14_c00093{font-size:62.533333pt;}
.fs7_c00093{font-size:62.535866pt;}
.fs11_c00093{font-size:63.466667pt;}
.fs6_c00093{font-size:63.470506pt;}
.fs1_c00093{font-size:63.479359pt;}
.fsf_c00093{font-size:64.400000pt;}
.fs8_c00093{font-size:64.402608pt;}
.fs12_c00093{font-size:65.333333pt;}
.fsb_c00093{font-size:65.335979pt;}
.fs13_c00093{font-size:80.266667pt;}
.y0_c00093{bottom:0.000000pt;}
.y77_c00093{bottom:64.245333pt;}
.y76_c00093{bottom:116.237333pt;}
.y75_c00093{bottom:136.857333pt;}
.y74_c00093{bottom:157.441333pt;}
.y73_c00093{bottom:176.909333pt;}
.y72_c00093{bottom:197.562667pt;}
.y71_c00093{bottom:221.353333pt;}
.y70_c00093{bottom:242.108000pt;}
.y6f_c00093{bottom:262.476000pt;}
.y6e_c00093{bottom:282.208000pt;}
.y6d_c00093{bottom:302.285333pt;}
.y6c_c00093{bottom:323.288000pt;}
.y6b_c00093{bottom:343.276000pt;}
.y6a_c00093{bottom:363.730667pt;}
.y69_c00093{bottom:384.485333pt;}
.y68_c00093{bottom:404.650667pt;}
.y67_c00093{bottom:425.410667pt;}
.y66_c00093{bottom:445.872000pt;}
.y65_c00093{bottom:466.616000pt;}
.y62_c00093{bottom:506.409013pt;}
.y61_c00093{bottom:506.409289pt;}
.y64_c00093{bottom:506.409416pt;}
.y5f_c00093{bottom:506.409447pt;}
.y63_c00093{bottom:506.409481pt;}
.y60_c00093{bottom:506.409888pt;}
.y56_c00093{bottom:525.599520pt;}
.y57_c00093{bottom:526.185179pt;}
.y58_c00093{bottom:526.376705pt;}
.y59_c00093{bottom:526.665743pt;}
.y5a_c00093{bottom:527.183787pt;}
.y5b_c00093{bottom:527.389715pt;}
.y5c_c00093{bottom:527.578925pt;}
.y5d_c00093{bottom:527.879640pt;}
.y5e_c00093{bottom:529.120672pt;}
.y4c_c00093{bottom:546.786364pt;}
.y4d_c00093{bottom:546.786752pt;}
.y51_c00093{bottom:546.787024pt;}
.y55_c00093{bottom:546.787059pt;}
.y4e_c00093{bottom:546.787247pt;}
.y54_c00093{bottom:546.787376pt;}
.y52_c00093{bottom:546.787412pt;}
.y4f_c00093{bottom:546.787421pt;}
.y50_c00093{bottom:546.787543pt;}
.y53_c00093{bottom:546.787575pt;}
.y4a_c00093{bottom:567.247287pt;}
.y46_c00093{bottom:567.247521pt;}
.y49_c00093{bottom:567.247779pt;}
.y4b_c00093{bottom:567.247808pt;}
.y45_c00093{bottom:567.247839pt;}
.y47_c00093{bottom:567.248016pt;}
.y42_c00093{bottom:567.248088pt;}
.y48_c00093{bottom:567.248217pt;}
.y44_c00093{bottom:567.248304pt;}
.y43_c00093{bottom:567.248449pt;}
.y41_c00093{bottom:567.248725pt;}
.y35_c00093{bottom:586.081333pt;}
.y36_c00093{bottom:586.288417pt;}
.y37_c00093{bottom:586.528153pt;}
.y38_c00093{bottom:586.705657pt;}
.y39_c00093{bottom:586.964845pt;}
.y3a_c00093{bottom:587.198545pt;}
.y3b_c00093{bottom:587.541637pt;}
.y3c_c00093{bottom:587.898121pt;}
.y3d_c00093{bottom:588.066577pt;}
.y3e_c00093{bottom:588.349429pt;}
.y3f_c00093{bottom:588.520105pt;}
.y40_c00093{bottom:588.861601pt;}
.y2d_c00093{bottom:606.480107pt;}
.y2e_c00093{bottom:607.304021pt;}
.y2f_c00093{bottom:607.464871pt;}
.y30_c00093{bottom:607.910972pt;}
.y31_c00093{bottom:608.164515pt;}
.y32_c00093{bottom:608.719149pt;}
.y33_c00093{bottom:609.072601pt;}
.y34_c00093{bottom:609.548183pt;}
.y23_c00093{bottom:626.641333pt;}
.y24_c00093{bottom:627.000432pt;}
.y25_c00093{bottom:627.404323pt;}
.y26_c00093{bottom:627.594564pt;}
.y27_c00093{bottom:628.178004pt;}
.y28_c00093{bottom:628.579489pt;}
.y29_c00093{bottom:629.041372pt;}
.y2a_c00093{bottom:629.297437pt;}
.y2b_c00093{bottom:629.511175pt;}
.y2c_c00093{bottom:629.959975pt;}
.y19_c00093{bottom:647.042667pt;}
.y1a_c00093{bottom:647.412323pt;}
.y1b_c00093{bottom:647.929856pt;}
.y1c_c00093{bottom:648.470293pt;}
.y1d_c00093{bottom:648.954880pt;}
.y1e_c00093{bottom:649.566811pt;}
.y1f_c00093{bottom:649.936803pt;}
.y20_c00093{bottom:650.252232pt;}
.y21_c00093{bottom:650.608877pt;}
.y22_c00093{bottom:651.059267pt;}
.y13_c00093{bottom:666.716240pt;}
.y14_c00093{bottom:667.334800pt;}
.y15_c00093{bottom:668.352347pt;}
.y16_c00093{bottom:669.162640pt;}
.y17_c00093{bottom:670.370533pt;}
.y18_c00093{bottom:670.814160pt;}
.yd_c00093{bottom:686.880293pt;}
.ye_c00093{bottom:688.185733pt;}
.yf_c00093{bottom:688.585813pt;}
.y10_c00093{bottom:689.473227pt;}
.y11_c00093{bottom:690.435307pt;}
.y12_c00093{bottom:691.422400pt;}
.y4_c00093{bottom:706.325333pt;}
.y5_c00093{bottom:706.858213pt;}
.y6_c00093{bottom:708.608987pt;}
.y7_c00093{bottom:709.315227pt;}
.y8_c00093{bottom:710.108880pt;}
.y9_c00093{bottom:710.836507pt;}
.ya_c00093{bottom:711.366427pt;}
.yb_c00093{bottom:711.889413pt;}
.yc_c00093{bottom:712.732507pt;}
.y1_c00093{bottom:781.406667pt;}
.y2_c00093{bottom:799.951707pt;}
.y3_c00093{bottom:810.835179pt;}
.h19_c00093{height:18.666667pt;}
.h2_c00093{height:48.519062pt;}
.h18_c00093{height:54.133333pt;}
.hf_c00093{height:55.066667pt;}
.h10_c00093{height:58.800000pt;}
.h6_c00093{height:58.805762pt;}
.h5_c00093{height:58.811759pt;}
.he_c00093{height:59.733333pt;}
.h17_c00093{height:60.666667pt;}
.hb_c00093{height:60.669124pt;}
.h4_c00093{height:60.678799pt;}
.h12_c00093{height:61.600000pt;}
.hc_c00093{height:61.602495pt;}
.h7_c00093{height:61.603727pt;}
.h16_c00093{height:62.533333pt;}
.h9_c00093{height:62.535866pt;}
.h13_c00093{height:63.466667pt;}
.h8_c00093{height:63.470506pt;}
.h3_c00093{height:63.479359pt;}
.h11_c00093{height:64.400000pt;}
.ha_c00093{height:64.402608pt;}
.h14_c00093{height:65.333333pt;}
.hd_c00093{height:65.335979pt;}
.h15_c00093{height:80.266667pt;}
.h0_c00093{height:896.400000pt;}
.h1_c00093{height:896.666667pt;}
.w0_c00093{width:632.640000pt;}
.w1_c00093{width:632.666667pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:92.157333pt;}
.x52_c00093{left:97.680000pt;}
.x57_c00093{left:100.560000pt;}
.x4_c00093{left:170.165333pt;}
.x12_c00093{left:171.302987pt;}
.x3f_c00093{left:172.800343pt;}
.x6a_c00093{left:173.760000pt;}
.x77_c00093{left:174.720000pt;}
.x73_c00093{left:175.680000pt;}
.x88_c00093{left:176.640000pt;}
.x2e_c00093{left:195.193333pt;}
.x5_c00093{left:196.809333pt;}
.x17_c00093{left:198.158667pt;}
.x83_c00093{left:199.920000pt;}
.x6c_c00093{left:201.600000pt;}
.x1f_c00093{left:202.692000pt;}
.x13_c00093{left:209.967413pt;}
.x40_c00093{left:212.402213pt;}
.x65_c00093{left:213.360000pt;}
.x5e_c00093{left:214.320000pt;}
.x7a_c00093{left:216.720000pt;}
.x2f_c00093{left:221.830667pt;}
.x38_c00093{left:223.923009pt;}
.x74_c00093{left:227.040000pt;}
.x46_c00093{left:231.229137pt;}
.x66_c00093{left:232.560000pt;}
.x18_c00093{left:235.125333pt;}
.x86_c00093{left:236.640000pt;}
.x20_c00093{left:239.409333pt;}
.x30_c00093{left:241.553333pt;}
.x7b_c00093{left:242.880000pt;}
.x39_c00093{left:246.483500pt;}
.xd_c00093{left:247.645627pt;}
.x47_c00093{left:250.435636pt;}
.x5f_c00093{left:253.200000pt;}
.x21_c00093{left:256.704000pt;}
.x58_c00093{left:258.000000pt;}
.x41_c00093{left:260.164744pt;}
.x28_c00093{left:261.499313pt;}
.x53_c00093{left:262.800000pt;}
.x82_c00093{left:267.840000pt;}
.x3a_c00093{left:269.284015pt;}
.xe_c00093{left:271.184373pt;}
.x6f_c00093{left:272.400000pt;}
.x14_c00093{left:273.583173pt;}
.x8a_c00093{left:278.160000pt;}
.x48_c00093{left:279.291372pt;}
.x7c_c00093{left:280.320000pt;}
.x59_c00093{left:282.000000pt;}
.x6_c00093{left:284.348000pt;}
.x89_c00093{left:285.840000pt;}
.x6d_c00093{left:287.040000pt;}
.x4f_c00093{left:288.960000pt;}
.x84_c00093{left:292.080000pt;}
.x31_c00093{left:296.318667pt;}
.x29_c00093{left:302.053980pt;}
.x3b_c00093{left:303.605465pt;}
.x87_c00093{left:305.280000pt;}
.x2_c00093{left:306.934773pt;}
.x19_c00093{left:308.341333pt;}
.x22_c00093{left:309.744000pt;}
.x70_c00093{left:311.520000pt;}
.x54_c00093{left:315.600000pt;}
.x4c_c00093{left:317.766117pt;}
.x7_c00093{left:319.660000pt;}
.xf_c00093{left:323.358160pt;}
.x2a_c00093{left:325.103313pt;}
.x5a_c00093{left:327.840000pt;}
.x49_c00093{left:331.073571pt;}
.x42_c00093{left:332.647945pt;}
.x32_c00093{left:334.440000pt;}
.x85_c00093{left:336.240000pt;}
.x50_c00093{left:341.040000pt;}
.x80_c00093{left:342.000000pt;}
.x23_c00093{left:346.242667pt;}
.x6e_c00093{left:347.760000pt;}
.x1a_c00093{left:352.050667pt;}
.x67_c00093{left:354.960000pt;}
.x3c_c00093{left:356.167059pt;}
.x8_c00093{left:359.342667pt;}
.x4d_c00093{left:360.488240pt;}
.x6b_c00093{left:363.360000pt;}
.x55_c00093{left:367.200000pt;}
.x60_c00093{left:369.120000pt;}
.x4a_c00093{left:370.681223pt;}
.x33_c00093{left:374.049333pt;}
.x2b_c00093{left:375.524647pt;}
.x1b_c00093{left:378.478667pt;}
.x10_c00093{left:379.932213pt;}
.x5d_c00093{left:383.520000pt;}
.x43_c00093{left:384.489479pt;}
.x68_c00093{left:386.880000pt;}
.x24_c00093{left:388.232000pt;}
.x75_c00093{left:390.240000pt;}
.x34_c00093{left:392.766667pt;}
.x7d_c00093{left:394.320000pt;}
.x9_c00093{left:395.724000pt;}
.x4e_c00093{left:398.409979pt;}
.x15_c00093{left:399.769280pt;}
.x1c_c00093{left:401.009333pt;}
.x61_c00093{left:403.920000pt;}
.x2c_c00093{left:407.656647pt;}
.x76_c00093{left:408.960000pt;}
.x25_c00093{left:411.510667pt;}
.x7e_c00093{left:413.520000pt;}
.x5b_c00093{left:419.280000pt;}
.xa_c00093{left:422.220000pt;}
.x35_c00093{left:424.194667pt;}
.x1d_c00093{left:426.484000pt;}
.x16_c00093{left:427.486160pt;}
.x26_c00093{left:430.941333pt;}
.x3_c00093{left:432.980565pt;}
.x62_c00093{left:435.600000pt;}
.x51_c00093{left:437.040000pt;}
.x11_c00093{left:438.023707pt;}
.x78_c00093{left:439.440000pt;}
.x36_c00093{left:443.158667pt;}
.x7f_c00093{left:444.480000pt;}
.xb_c00093{left:448.369333pt;}
.x2d_c00093{left:450.891313pt;}
.x79_c00093{left:453.120000pt;}
.x44_c00093{left:455.772584pt;}
.x56_c00093{left:457.200000pt;}
.x1e_c00093{left:458.654667pt;}
.x71_c00093{left:460.560000pt;}
.x69_c00093{left:465.360000pt;}
.x27_c00093{left:471.741333pt;}
.x72_c00093{left:478.080000pt;}
.x37_c00093{left:481.102667pt;}
.x63_c00093{left:486.480000pt;}
.x5c_c00093{left:487.680000pt;}
.x3d_c00093{left:488.892477pt;}
.xc_c00093{left:490.524000pt;}
.x81_c00093{left:495.360000pt;}
.x64_c00093{left:502.560000pt;}
.x4b_c00093{left:524.799831pt;}
.x3e_c00093{left:529.694444pt;}
.x45_c00093{left:533.054848pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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.012985,0.000377,-0.007247,0.249895,0,0);-ms-transform:matrix(0.012985,0.000377,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.012985,0.000377,-0.007247,0.249895,0,0);}
.mbb_c00094{transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);}
.mce_c00094{transform:matrix(0.022263,0.000267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.022263,0.000267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.022263,0.000267,-0.003000,0.249982,0,0);}
.mc0_c00094{transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.037245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037245,0.000000,0.000000,0.250000,0,0);}
.m43_c00094{transform:matrix(0.051905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051905,0.000000,0.000000,0.250000,0,0);}
.mc1_c00094{transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);}
.me7_c00094{transform:matrix(0.063794,0.000893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.063794,0.000893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.063794,0.000893,-0.003500,0.249976,0,0);}
.m76_c00094{transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);}
.m1d_c00094{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);}
.md6_c00094{transform:matrix(0.111917,0.001343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.111917,0.001343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.111917,0.001343,-0.003000,0.249982,0,0);}
.m99_c00094{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{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);}
.m95_c00094{transform:matrix(0.150219,0.001803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150219,0.001803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150219,0.001803,-0.003000,0.249982,0,0);}
.m59_c00094{transform:matrix(0.151921,0.002431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151921,0.002431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151921,0.002431,-0.003999,0.249968,0,0);}
.m6e_c00094{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);}
.m68_c00094{transform:matrix(0.159010,0.002544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159010,0.002544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159010,0.002544,-0.003999,0.249968,0,0);}
.m3c_c00094{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);}
.m7d_c00094{transform:matrix(0.165438,0.001985,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165438,0.001985,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165438,0.001985,-0.003000,0.249982,0,0);}
.m42_c00094{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m98_c00094{transform:matrix(0.167903,0.002015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167903,0.002015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167903,0.002015,-0.003000,0.249982,0,0);}
.m47_c00094{transform:matrix(0.168558,0.001517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168558,0.001517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168558,0.001517,-0.002250,0.249990,0,0);}
.me6_c00094{transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);}
.m3e_c00094{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.mb4_c00094{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);}
.m11_c00094{transform:matrix(0.169809,0.004924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169809,0.004924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169809,0.004924,-0.007247,0.249895,0,0);}
.me5_c00094{transform:matrix(0.169883,0.002378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169883,0.002378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169883,0.002378,-0.003500,0.249976,0,0);}
.m56_c00094{transform:matrix(0.170083,0.002721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170083,0.002721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170083,0.002721,-0.003999,0.249968,0,0);}
.m66_c00094{transform:matrix(0.170888,0.002734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170888,0.002734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170888,0.002734,-0.003999,0.249968,0,0);}
.m2f_c00094{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);}
.m80_c00094{transform:matrix(0.171843,0.002062,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171843,0.002062,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171843,0.002062,-0.003000,0.249982,0,0);}
.m67_c00094{transform:matrix(0.172213,0.002755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172213,0.002755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172213,0.002755,-0.003999,0.249968,0,0);}
.m71_c00094{transform:matrix(0.173245,0.001906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173245,0.001906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173245,0.001906,-0.002750,0.249985,0,0);}
.m63_c00094{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);}
.ma7_c00094{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);}
.m60_c00094{transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);}
.ma5_c00094{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);}
.maa_c00094{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);}
.mbc_c00094{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);}
.m57_c00094{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);}
.mac_c00094{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);}
.m4a_c00094{transform:matrix(0.177813,0.001600,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177813,0.001600,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177813,0.001600,-0.002250,0.249990,0,0);}
.m8a_c00094{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);}
.m39_c00094{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);}
.ma3_c00094{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);}
.m37_c00094{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);}
.m29_c00094{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);}
.m6f_c00094{transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);}
.m17_c00094{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);}
.m32_c00094{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);}
.m7b_c00094{transform:matrix(0.181812,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181812,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181812,0.002182,-0.003000,0.249982,0,0);}
.m84_c00094{transform:matrix(0.182442,0.002189,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182442,0.002189,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182442,0.002189,-0.003000,0.249982,0,0);}
.m2a_c00094{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);}
.m2e_c00094{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);}
.ma4_c00094{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);}
.ma8_c00094{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);}
.m48_c00094{transform:matrix(0.184253,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184253,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184253,0.001658,-0.002250,0.249990,0,0);}
.m72_c00094{transform:matrix(0.184344,0.002028,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184344,0.002028,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184344,0.002028,-0.002750,0.249985,0,0);}
.m20_c00094{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);}
.m27_c00094{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);}
.mb7_c00094{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);}
.m8d_c00094{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);}
.m89_c00094{transform:matrix(0.187696,0.002252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187696,0.002252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187696,0.002252,-0.003000,0.249982,0,0);}
.m3a_c00094{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);}
.m8e_c00094{transform:matrix(0.188116,0.002257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188116,0.002257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188116,0.002257,-0.003000,0.249982,0,0);}
.ma0_c00094{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);}
.m93_c00094{transform:matrix(0.188436,0.002261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188436,0.002261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188436,0.002261,-0.003000,0.249982,0,0);}
.m94_c00094{transform:matrix(0.188746,0.002265,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188746,0.002265,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188746,0.002265,-0.003000,0.249982,0,0);}
.m73_c00094{transform:matrix(0.188984,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188984,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188984,0.002079,-0.002750,0.249985,0,0);}
.m51_c00094{transform:matrix(0.189556,0.003033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189556,0.003033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189556,0.003033,-0.003999,0.249968,0,0);}
.m4f_c00094{transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190051,0.003041,-0.003999,0.249968,0,0);}
.m69_c00094{transform:matrix(0.190313,0.002093,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190313,0.002093,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190313,0.002093,-0.002750,0.249985,0,0);}
.m6d_c00094{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);}
.m31_c00094{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);}
.mb0_c00094{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);}
.m5e_c00094{transform:matrix(0.192675,0.003083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192675,0.003083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192675,0.003083,-0.003999,0.249968,0,0);}
.m7a_c00094{transform:matrix(0.192836,0.002314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192836,0.002314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192836,0.002314,-0.003000,0.249982,0,0);}
.me4_c00094{transform:matrix(0.192966,0.002702,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192966,0.002702,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192966,0.002702,-0.003500,0.249976,0,0);}
.me2_c00094{transform:matrix(0.193366,0.002707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193366,0.002707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193366,0.002707,-0.003500,0.249976,0,0);}
.m58_c00094{transform:matrix(0.193715,0.003099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193715,0.003099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193715,0.003099,-0.003999,0.249968,0,0);}
.m6a_c00094{transform:matrix(0.193908,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193908,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193908,0.002133,-0.002750,0.249985,0,0);}
.m82_c00094{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);}
.m74_c00094{transform:matrix(0.194063,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194063,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194063,0.002135,-0.002750,0.249985,0,0);}
.m96_c00094{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);}
.m2c_c00094{transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00094{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);}
.m6c_c00094{transform:matrix(0.195343,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195343,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195343,0.002149,-0.002750,0.249985,0,0);}
.mae_c00094{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);}
.mbf_c00094{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);}
.md9_c00094{transform:matrix(0.197081,0.002365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197081,0.002365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197081,0.002365,-0.003000,0.249982,0,0);}
.m35_c00094{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);}
.m75_c00094{transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);}
.m33_c00094{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);}
.m3b_c00094{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);}
.m46_c00094{transform:matrix(0.197447,0.001777,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197447,0.001777,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197447,0.001777,-0.002250,0.249990,0,0);}
.mbe_c00094{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);}
.m18_c00094{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);}
.mda_c00094{transform:matrix(0.199781,0.002397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199781,0.002397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199781,0.002397,-0.003000,0.249982,0,0);}
.md5_c00094{transform:matrix(0.199831,0.002398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199831,0.002398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199831,0.002398,-0.003000,0.249982,0,0);}
.m4e_c00094{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);}
.m5a_c00094{transform:matrix(0.200949,0.003215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200949,0.003215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200949,0.003215,-0.003999,0.249968,0,0);}
.m52_c00094{transform:matrix(0.201159,0.003219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201159,0.003219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201159,0.003219,-0.003999,0.249968,0,0);}
.me3_c00094{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);}
.m5c_c00094{transform:matrix(0.201659,0.003227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201659,0.003227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201659,0.003227,-0.003999,0.249968,0,0);}
.m55_c00094{transform:matrix(0.202119,0.003234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202119,0.003234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202119,0.003234,-0.003999,0.249968,0,0);}
.mb2_c00094{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);}
.m90_c00094{transform:matrix(0.202350,0.002428,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202350,0.002428,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202350,0.002428,-0.003000,0.249982,0,0);}
.ma9_c00094{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);}
.maf_c00094{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);}
.m4b_c00094{transform:matrix(0.204782,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204782,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204782,0.001843,-0.002250,0.249990,0,0);}
.mb8_c00094{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);}
.m24_c00094{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);}
.m62_c00094{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);}
.m64_c00094{transform:matrix(0.205994,0.003296,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205994,0.003296,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205994,0.003296,-0.003999,0.249968,0,0);}
.mad_c00094{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);}
.ma1_c00094{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);}
.m9e_c00094{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);}
.m5d_c00094{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);}
.m28_c00094{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);}
.m86_c00094{transform:matrix(0.207990,0.002496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207990,0.002496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207990,0.002496,-0.003000,0.249982,0,0);}
.m8c_c00094{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);}
.m8f_c00094{transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);}
.m85_c00094{transform:matrix(0.211850,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211850,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211850,0.002542,-0.003000,0.249982,0,0);}
.mb9_c00094{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);}
.m25_c00094{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);}
.m61_c00094{transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);}
.m19_c00094{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);}
.md2_c00094{transform:matrix(0.214120,0.002569,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214120,0.002569,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214120,0.002569,-0.003000,0.249982,0,0);}
.m1a_c00094{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);}
.m1c_c00094{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);}
.m1b_c00094{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);}
.m6b_c00094{transform:matrix(0.216047,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216047,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216047,0.002377,-0.002750,0.249985,0,0);}
.m2d_c00094{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);}
.mcf_c00094{transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);}
.m2_c00094{transform:matrix(0.217713,0.006314,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217713,0.006314,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217713,0.006314,-0.007247,0.249895,0,0);}
.mab_c00094{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);}
.md1_c00094{transform:matrix(0.219154,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219154,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219154,0.002630,-0.003000,0.249982,0,0);}
.m70_c00094{transform:matrix(0.219727,0.002417,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219727,0.002417,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219727,0.002417,-0.002750,0.249985,0,0);}
.m8b_c00094{transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);}
.m81_c00094{transform:matrix(0.221774,0.002661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221774,0.002661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221774,0.002661,-0.003000,0.249982,0,0);}
.mb6_c00094{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);}
.mdf_c00094{transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);}
.m50_c00094{transform:matrix(0.222567,0.003561,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222567,0.003561,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222567,0.003561,-0.003999,0.249968,0,0);}
.m54_c00094{transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);}
.m40_c00094{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);}
.m83_c00094{transform:matrix(0.225244,0.002703,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225244,0.002703,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225244,0.002703,-0.003000,0.249982,0,0);}
.m26_c00094{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);}
.me0_c00094{transform:matrix(0.226309,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226309,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226309,0.002716,-0.003000,0.249982,0,0);}
.mbd_c00094{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.m79_c00094{transform:matrix(0.229069,0.002749,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229069,0.002749,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229069,0.002749,-0.003000,0.249982,0,0);}
.m4d_c00094{transform:matrix(0.229196,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229196,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229196,0.003667,-0.003999,0.249968,0,0);}
.m65_c00094{transform:matrix(0.229921,0.003679,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229921,0.003679,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229921,0.003679,-0.003999,0.249968,0,0);}
.m77_c00094{transform:matrix(0.229933,0.002759,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229933,0.002759,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229933,0.002759,-0.003000,0.249982,0,0);}
.m3f_c00094{transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);}
.mc9_c00094{transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);}
.ma6_c00094{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);}
.mdc_c00094{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m21_c00094{transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.231761,0.002086,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231761,0.002086,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231761,0.002086,-0.002250,0.249990,0,0);}
.m30_c00094{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);}
.mcd_c00094{transform:matrix(0.234343,0.002812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234343,0.002812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234343,0.002812,-0.003000,0.249982,0,0);}
.md4_c00094{transform:matrix(0.234928,0.002819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234928,0.002819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234928,0.002819,-0.003000,0.249982,0,0);}
.mc5_c00094{transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);}
.m53_c00094{transform:matrix(0.235955,0.003775,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235955,0.003775,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235955,0.003775,-0.003999,0.249968,0,0);}
.mcc_c00094{transform:matrix(0.236748,0.002841,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236748,0.002841,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236748,0.002841,-0.003000,0.249982,0,0);}
.m3d_c00094{transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00094{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);}
.m45_c00094{transform:matrix(0.239525,0.002156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239525,0.002156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239525,0.002156,-0.002250,0.249990,0,0);}
.m15_c00094{transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);}
.m91_c00094{transform:matrix(0.240723,0.002889,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240723,0.002889,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240723,0.002889,-0.003000,0.249982,0,0);}
.m5f_c00094{transform:matrix(0.241144,0.003858,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241144,0.003858,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241144,0.003858,-0.003999,0.249968,0,0);}
.m87_c00094{transform:matrix(0.241158,0.002894,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241158,0.002894,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241158,0.002894,-0.003000,0.249982,0,0);}
.m14_c00094{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);}
.m36_c00094{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{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);}
.m16_c00094{transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.247528,0.003960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247528,0.003960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247528,0.003960,-0.003999,0.249968,0,0);}
.m7f_c00094{transform:matrix(0.248172,0.002978,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248172,0.002978,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248172,0.002978,-0.003000,0.249982,0,0);}
.mb5_c00094{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m41_c00094{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.253383,0.007348,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253383,0.007348,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253383,0.007348,-0.007247,0.249895,0,0);}
.m9f_c00094{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);}
.mb3_c00094{transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);}
.md3_c00094{transform:matrix(0.267566,0.003211,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267566,0.003211,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267566,0.003211,-0.003000,0.249982,0,0);}
.m9a_c00094{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);}
.m7c_c00094{transform:matrix(0.278920,0.003347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278920,0.003347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278920,0.003347,-0.003000,0.249982,0,0);}
.mb1_c00094{transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);}
.mc8_c00094{transform:matrix(0.286123,0.009165,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286123,0.009165,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286123,0.009165,-0.008004,0.249872,0,0);}
.mc7_c00094{transform:matrix(0.286158,0.009166,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286158,0.009166,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286158,0.009166,-0.008004,0.249872,0,0);}
.m7e_c00094{transform:matrix(0.294329,0.003532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294329,0.003532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294329,0.003532,-0.003000,0.249982,0,0);}
.me1_c00094{transform:matrix(0.298321,0.004176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.298321,0.004176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.298321,0.004176,-0.003500,0.249976,0,0);}
.mc2_c00094{transform:matrix(0.300376,0.009622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.300376,0.009622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.300376,0.009622,-0.008004,0.249872,0,0);}
.mca_c00094{transform:matrix(0.307262,0.009842,-0.008004,0.249872,0,0);-ms-transform:matrix(0.307262,0.009842,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.307262,0.009842,-0.008004,0.249872,0,0);}
.m78_c00094{transform:matrix(0.311248,0.003735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.311248,0.003735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.311248,0.003735,-0.003000,0.249982,0,0);}
.md0_c00094{transform:matrix(0.312433,0.003749,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312433,0.003749,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312433,0.003749,-0.003000,0.249982,0,0);}
.m8_c00094{transform:matrix(0.323229,0.009374,-0.007247,0.249895,0,0);-ms-transform:matrix(0.323229,0.009374,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.323229,0.009374,-0.007247,0.249895,0,0);}
.mb_c00094{transform:matrix(0.335914,0.009741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.335914,0.009741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.335914,0.009741,-0.007247,0.249895,0,0);}
.mc4_c00094{transform:matrix(0.337307,0.010805,-0.008004,0.249872,0,0);-ms-transform:matrix(0.337307,0.010805,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.337307,0.010805,-0.008004,0.249872,0,0);}
.me8_c00094{transform:matrix(0.337947,0.004731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.337947,0.004731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.337947,0.004731,-0.003500,0.249976,0,0);}
.m10_c00094{transform:matrix(0.339417,0.009843,-0.007247,0.249895,0,0);-ms-transform:matrix(0.339417,0.009843,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.339417,0.009843,-0.007247,0.249895,0,0);}
.m9b_c00094{transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344465,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.346070,0.010036,-0.007247,0.249895,0,0);-ms-transform:matrix(0.346070,0.010036,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.346070,0.010036,-0.007247,0.249895,0,0);}
.mba_c00094{transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.353615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353615,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.359525,0.003236,-0.002250,0.249990,0,0);-ms-transform:matrix(0.359525,0.003236,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.359525,0.003236,-0.002250,0.249990,0,0);}
.m88_c00094{transform:matrix(0.360819,0.004330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.360819,0.004330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.360819,0.004330,-0.003000,0.249982,0,0);}
.mdd_c00094{transform:matrix(0.364099,0.004369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.364099,0.004369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.364099,0.004369,-0.003000,0.249982,0,0);}
.mdb_c00094{transform:matrix(0.367519,0.004410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.367519,0.004410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.367519,0.004410,-0.003000,0.249982,0,0);}
.mcb_c00094{transform:matrix(0.391239,0.012532,-0.008004,0.249872,0,0);-ms-transform:matrix(0.391239,0.012532,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.391239,0.012532,-0.008004,0.249872,0,0);}
.me9_c00094{transform:matrix(0.394130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394130,0.000000,0.000000,0.250000,0,0);}
.mea_c00094{transform:matrix(0.394578,0.008286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.394578,0.008286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.394578,0.008286,-0.005249,0.249945,0,0);}
.ma_c00094{transform:matrix(0.416650,0.012083,-0.007247,0.249895,0,0);-ms-transform:matrix(0.416650,0.012083,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.416650,0.012083,-0.007247,0.249895,0,0);}
.m9c_c00094{transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);}
.md8_c00094{transform:matrix(0.429409,0.005153,-0.003000,0.249982,0,0);-ms-transform:matrix(0.429409,0.005153,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.429409,0.005153,-0.003000,0.249982,0,0);}
.m5_c00094{transform:matrix(0.437991,0.012702,-0.007247,0.249895,0,0);-ms-transform:matrix(0.437991,0.012702,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.437991,0.012702,-0.007247,0.249895,0,0);}
.m3_c00094{transform:matrix(0.440405,0.012772,-0.007247,0.249895,0,0);-ms-transform:matrix(0.440405,0.012772,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.440405,0.012772,-0.007247,0.249895,0,0);}
.m44_c00094{transform:matrix(0.444835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444835,0.000000,0.000000,0.250000,0,0);}
.m9d_c00094{transform:matrix(0.445485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445485,0.000000,0.000000,0.250000,0,0);}
.mde_c00094{transform:matrix(0.449798,0.005398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.449798,0.005398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.449798,0.005398,-0.003000,0.249982,0,0);}
.mee_c00094{transform:matrix(0.458814,0.009635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.458814,0.009635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.458814,0.009635,-0.005249,0.249945,0,0);}
.m7_c00094{transform:matrix(0.467184,0.013548,-0.007247,0.249895,0,0);-ms-transform:matrix(0.467184,0.013548,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.467184,0.013548,-0.007247,0.249895,0,0);}
.md7_c00094{transform:matrix(0.485085,0.005821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.485085,0.005821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.485085,0.005821,-0.003000,0.249982,0,0);}
.mc3_c00094{transform:matrix(0.501828,0.016075,-0.008004,0.249872,0,0);-ms-transform:matrix(0.501828,0.016075,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.501828,0.016075,-0.008004,0.249872,0,0);}
.m9_c00094{transform:matrix(0.506237,0.014681,-0.007247,0.249895,0,0);-ms-transform:matrix(0.506237,0.014681,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.506237,0.014681,-0.007247,0.249895,0,0);}
.mc6_c00094{transform:matrix(0.526720,0.016872,-0.008004,0.249872,0,0);-ms-transform:matrix(0.526720,0.016872,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.526720,0.016872,-0.008004,0.249872,0,0);}
.m97_c00094{transform:matrix(0.533107,0.006397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.533107,0.006397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.533107,0.006397,-0.003000,0.249982,0,0);}
.m92_c00094{transform:matrix(0.541716,0.006501,-0.003000,0.249982,0,0);-ms-transform:matrix(0.541716,0.006501,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.541716,0.006501,-0.003000,0.249982,0,0);}
.ma2_c00094{transform:matrix(0.542275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542275,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.554602,0.016083,-0.007247,0.249895,0,0);-ms-transform:matrix(0.554602,0.016083,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.554602,0.016083,-0.007247,0.249895,0,0);}
.me_c00094{transform:matrix(0.598703,0.017362,-0.007247,0.249895,0,0);-ms-transform:matrix(0.598703,0.017362,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.598703,0.017362,-0.007247,0.249895,0,0);}
.m13_c00094{transform:matrix(0.606215,0.017580,-0.007247,0.249895,0,0);-ms-transform:matrix(0.606215,0.017580,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.606215,0.017580,-0.007247,0.249895,0,0);}
.md_c00094{transform:matrix(0.664141,0.019260,-0.007247,0.249895,0,0);-ms-transform:matrix(0.664141,0.019260,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.664141,0.019260,-0.007247,0.249895,0,0);}
.m4_c00094{transform:matrix(0.690100,0.020013,-0.007247,0.249895,0,0);-ms-transform:matrix(0.690100,0.020013,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.690100,0.020013,-0.007247,0.249895,0,0);}
.m1_c00094{transform:matrix(0.763469,0.022141,-0.007247,0.249895,0,0);-ms-transform:matrix(0.763469,0.022141,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.763469,0.022141,-0.007247,0.249895,0,0);}
.m0_c00094{transform:matrix(0.837693,0.024293,-0.007247,0.249895,0,0);-ms-transform:matrix(0.837693,0.024293,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.837693,0.024293,-0.007247,0.249895,0,0);}
.med_c00094{transform:matrix(0.876107,0.018398,-0.005249,0.249945,0,0);-ms-transform:matrix(0.876107,0.018398,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.876107,0.018398,-0.005249,0.249945,0,0);}
.meb_c00094{transform:matrix(0.993961,0.020873,-0.005249,0.249945,0,0);-ms-transform:matrix(0.993961,0.020873,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.993961,0.020873,-0.005249,0.249945,0,0);}
.mec_c00094{transform:matrix(1.303308,0.027369,-0.005249,0.249945,0,0);-ms-transform:matrix(1.303308,0.027369,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.303308,0.027369,-0.005249,0.249945,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;}
.fs11_c00094{font-size:28.350000px;}
.fs14_c00094{font-size:33.602419px;}
.fs15_c00094{font-size:49.353553px;}
.fs12_c00094{font-size:50.375424px;}
.fs13_c00094{font-size:51.453704px;}
.fs0_c00094{font-size:54.622954px;}
.fs17_c00094{font-size:55.650000px;}
.fs16_c00094{font-size:59.855865px;}
.fs18_c00094{font-size:61.963658px;}
.fs4_c00094{font-size:64.050000px;}
.fsa_c00094{font-size:64.058198px;}
.fs2_c00094{font-size:65.100000px;}
.fsf_c00094{font-size:67.204838px;}
.fs6_c00094{font-size:68.250000px;}
.fsd_c00094{font-size:69.304193px;}
.fs3_c00094{font-size:70.350000px;}
.fsc_c00094{font-size:70.354256px;}
.fse_c00094{font-size:70.355065px;}
.fsb_c00094{font-size:70.359004px;}
.fs5_c00094{font-size:71.400000px;}
.fs9_c00094{font-size:71.402892px;}
.fs7_c00094{font-size:72.450000px;}
.fs10_c00094{font-size:72.455216px;}
.fs8_c00094{font-size:86.100000px;}
.fs1_c00094{font-size:88.237080px;}
.y0_c00094{bottom:0.000000px;}
.yba_c00094{bottom:71.155500px;}
.ybf_c00094{bottom:76.942052px;}
.ybe_c00094{bottom:78.091739px;}
.ybd_c00094{bottom:79.883049px;}
.ybc_c00094{bottom:81.569433px;}
.ybb_c00094{bottom:82.357500px;}
.yb9_c00094{bottom:134.734593px;}
.yb8_c00094{bottom:134.971725px;}
.yb7_c00094{bottom:134.991339px;}
.yb6_c00094{bottom:135.384060px;}
.yb5_c00094{bottom:136.265409px;}
.yb4_c00094{bottom:136.729887px;}
.yb3_c00094{bottom:137.078466px;}
.yb2_c00094{bottom:137.350500px;}
.yb1_c00094{bottom:139.448310px;}
.yb0_c00094{bottom:139.868340px;}
.yaf_c00094{bottom:140.277066px;}
.yae_c00094{bottom:141.147726px;}
.yad_c00094{bottom:141.491286px;}
.yac_c00094{bottom:141.821106px;}
.yab_c00094{bottom:142.507038px;}
.yaa_c00094{bottom:142.891818px;}
.ya9_c00094{bottom:143.322630px;}
.ya8_c00094{bottom:144.723792px;}
.ya7_c00094{bottom:151.878084px;}
.ya6_c00094{bottom:151.878546px;}
.ya5_c00094{bottom:152.670456px;}
.ya4_c00094{bottom:152.865270px;}
.ya3_c00094{bottom:153.265842px;}
.ya2_c00094{bottom:153.525798px;}
.ya1_c00094{bottom:153.739926px;}
.ya0_c00094{bottom:154.403604px;}
.y9f_c00094{bottom:154.530918px;}
.y9e_c00094{bottom:154.790028px;}
.y9b_c00094{bottom:155.806140px;}
.y9c_c00094{bottom:155.853468px;}
.y9a_c00094{bottom:157.330716px;}
.y99_c00094{bottom:157.959180px;}
.y9d_c00094{bottom:158.220000px;}
.y98_c00094{bottom:158.783724px;}
.y97_c00094{bottom:159.937500px;}
.y96_c00094{bottom:160.597740px;}
.y95_c00094{bottom:161.328108px;}
.y94_c00094{bottom:162.156828px;}
.y93_c00094{bottom:162.745500px;}
.y92_c00094{bottom:187.380000px;}
.y91_c00094{bottom:208.723500px;}
.y90_c00094{bottom:230.025000px;}
.y8f_c00094{bottom:230.664000px;}
.y8e_c00094{bottom:231.294000px;}
.y8d_c00094{bottom:231.636000px;}
.y8c_c00094{bottom:232.255500px;}
.y8b_c00094{bottom:232.591500px;}
.y8a_c00094{bottom:233.425500px;}
.y89_c00094{bottom:233.922000px;}
.y88_c00094{bottom:234.307500px;}
.y87_c00094{bottom:234.789000px;}
.y86_c00094{bottom:235.174500px;}
.y85_c00094{bottom:253.335000px;}
.y84_c00094{bottom:254.275500px;}
.y83_c00094{bottom:254.959500px;}
.y82_c00094{bottom:256.083000px;}
.y81_c00094{bottom:256.674000px;}
.y80_c00094{bottom:257.854500px;}
.y7f_c00094{bottom:275.751000px;}
.y7e_c00094{bottom:276.634500px;}
.y7d_c00094{bottom:277.369500px;}
.y7c_c00094{bottom:278.146500px;}
.y7b_c00094{bottom:278.923500px;}
.y7a_c00094{bottom:279.519000px;}
.y79_c00094{bottom:280.263000px;}
.y78_c00094{bottom:298.155000px;}
.y77_c00094{bottom:299.025000px;}
.y76_c00094{bottom:299.307000px;}
.y75_c00094{bottom:299.610000px;}
.y74_c00094{bottom:299.989500px;}
.y73_c00094{bottom:301.249500px;}
.y72_c00094{bottom:301.846500px;}
.y71_c00094{bottom:302.676000px;}
.y70_c00094{bottom:322.714500px;}
.y6f_c00094{bottom:343.325610px;}
.y6e_c00094{bottom:343.938474px;}
.y6d_c00094{bottom:344.262132px;}
.y6c_c00094{bottom:344.578896px;}
.y6b_c00094{bottom:345.195144px;}
.y6a_c00094{bottom:345.719448px;}
.y69_c00094{bottom:346.439412px;}
.y68_c00094{bottom:346.675986px;}
.y67_c00094{bottom:365.618754px;}
.y66_c00094{bottom:366.023430px;}
.y65_c00094{bottom:366.463170px;}
.y64_c00094{bottom:367.035378px;}
.y63_c00094{bottom:367.719420px;}
.y62_c00094{bottom:368.084958px;}
.y61_c00094{bottom:368.497620px;}
.y60_c00094{bottom:369.088344px;}
.y5f_c00094{bottom:387.409458px;}
.y5e_c00094{bottom:388.043400px;}
.y5d_c00094{bottom:388.704972px;}
.y5c_c00094{bottom:389.650440px;}
.y5b_c00094{bottom:390.504234px;}
.y5a_c00094{bottom:391.108986px;}
.y59_c00094{bottom:391.508400px;}
.y58_c00094{bottom:392.312562px;}
.y57_c00094{bottom:410.672244px;}
.y56_c00094{bottom:410.987118px;}
.y55_c00094{bottom:411.191256px;}
.y54_c00094{bottom:411.774528px;}
.y53_c00094{bottom:412.018518px;}
.y52_c00094{bottom:412.270248px;}
.y51_c00094{bottom:412.877100px;}
.y50_c00094{bottom:413.673456px;}
.y4f_c00094{bottom:413.981742px;}
.y4e_c00094{bottom:414.295500px;}
.y4d_c00094{bottom:433.347438px;}
.y4c_c00094{bottom:434.024178px;}
.y4b_c00094{bottom:434.732563px;}
.y4a_c00094{bottom:435.364213px;}
.y49_c00094{bottom:436.264989px;}
.y48_c00094{bottom:436.799511px;}
.y47_c00094{bottom:437.129863px;}
.y46_c00094{bottom:456.488159px;}
.y45_c00094{bottom:456.734685px;}
.y44_c00094{bottom:457.111363px;}
.y43_c00094{bottom:457.854804px;}
.y42_c00094{bottom:458.659789px;}
.y41_c00094{bottom:459.104349px;}
.y40_c00094{bottom:459.541500px;}
.y3f_c00094{bottom:479.546964px;}
.y3e_c00094{bottom:479.995368px;}
.y3d_c00094{bottom:480.384420px;}
.y3c_c00094{bottom:480.638844px;}
.y3b_c00094{bottom:481.133256px;}
.y3a_c00094{bottom:481.616460px;}
.y39_c00094{bottom:482.215956px;}
.y32_c00094{bottom:503.159220px;}
.y35_c00094{bottom:503.159748px;}
.y33_c00094{bottom:503.159928px;}
.y36_c00094{bottom:503.159940px;}
.y38_c00094{bottom:503.160144px;}
.y37_c00094{bottom:503.160192px;}
.y34_c00094{bottom:503.160408px;}
.y2c_c00094{bottom:525.962256px;}
.y2d_c00094{bottom:525.962832px;}
.y2e_c00094{bottom:525.962988px;}
.y31_c00094{bottom:525.963096px;}
.y30_c00094{bottom:525.963108px;}
.y2f_c00094{bottom:525.963384px;}
.y2b_c00094{bottom:545.721072px;}
.y2a_c00094{bottom:546.688152px;}
.y29_c00094{bottom:547.162248px;}
.y28_c00094{bottom:547.620240px;}
.y27_c00094{bottom:548.554488px;}
.y26_c00094{bottom:549.479256px;}
.y25_c00094{bottom:550.143072px;}
.y24_c00094{bottom:550.533000px;}
.y23_c00094{bottom:635.529025px;}
.y22_c00094{bottom:636.095108px;}
.y21_c00094{bottom:636.547195px;}
.y20_c00094{bottom:636.813631px;}
.y1f_c00094{bottom:637.013215px;}
.y1e_c00094{bottom:637.555240px;}
.y1d_c00094{bottom:638.259589px;}
.y1c_c00094{bottom:638.551500px;}
.y1b_c00094{bottom:660.160500px;}
.y1a_c00094{bottom:683.550000px;}
.y19_c00094{bottom:705.970500px;}
.y18_c00094{bottom:728.566500px;}
.y17_c00094{bottom:751.755000px;}
.y16_c00094{bottom:774.172500px;}
.y15_c00094{bottom:797.544000px;}
.y14_c00094{bottom:838.327960px;}
.y13_c00094{bottom:839.543649px;}
.y12_c00094{bottom:840.675160px;}
.y11_c00094{bottom:841.237552px;}
.y10_c00094{bottom:841.529566px;}
.yf_c00094{bottom:841.788560px;}
.ye_c00094{bottom:842.078920px;}
.yd_c00094{bottom:842.370064px;}
.yc_c00094{bottom:904.705086px;}
.yb_c00094{bottom:905.313738px;}
.ya_c00094{bottom:905.949273px;}
.y9_c00094{bottom:906.335509px;}
.y8_c00094{bottom:907.791628px;}
.y7_c00094{bottom:908.899051px;}
.y6_c00094{bottom:913.129340px;}
.y5_c00094{bottom:914.593158px;}
.y4_c00094{bottom:915.580217px;}
.y3_c00094{bottom:915.831907px;}
.y2_c00094{bottom:917.942397px;}
.y1_c00094{bottom:919.366500px;}
.h13_c00094{height:28.350000px;}
.h16_c00094{height:33.602419px;}
.h17_c00094{height:49.353553px;}
.h14_c00094{height:50.375424px;}
.h15_c00094{height:51.453704px;}
.h2_c00094{height:54.622954px;}
.h19_c00094{height:55.650000px;}
.h18_c00094{height:59.855865px;}
.h1a_c00094{height:61.963658px;}
.h6_c00094{height:64.050000px;}
.hc_c00094{height:64.058198px;}
.h4_c00094{height:65.100000px;}
.h11_c00094{height:67.204838px;}
.h8_c00094{height:68.250000px;}
.hf_c00094{height:69.304193px;}
.h5_c00094{height:70.350000px;}
.he_c00094{height:70.354256px;}
.h10_c00094{height:70.355065px;}
.hd_c00094{height:70.359004px;}
.h7_c00094{height:71.400000px;}
.hb_c00094{height:71.402892px;}
.h9_c00094{height:72.450000px;}
.h12_c00094{height:72.455216px;}
.ha_c00094{height:86.100000px;}
.h3_c00094{height:88.237080px;}
.h1_c00094{height:1005.000000px;}
.h0_c00094{height:1005.150000px;}
.w0_c00094{width:705.450000px;}
.w1_c00094{width:705.750000px;}
.x0_c00094{left:0.000000px;}
.x8e_c00094{left:33.747834px;}
.x90_c00094{left:37.266996px;}
.x88_c00094{left:41.245500px;}
.x8f_c00094{left:54.539322px;}
.x82_c00094{left:69.390000px;}
.x1_c00094{left:81.790500px;}
.x83_c00094{left:87.767604px;}
.x91_c00094{left:104.023296px;}
.x84_c00094{left:113.639207px;}
.x14_c00094{left:116.100000px;}
.x5d_c00094{left:117.559500px;}
.x61_c00094{left:119.082462px;}
.x49_c00094{left:120.419556px;}
.x1d_c00094{left:121.500000px;}
.x25_c00094{left:122.850000px;}
.x92_c00094{left:124.547082px;}
.x39_c00094{left:125.703000px;}
.x2_c00094{left:130.897500px;}
.x80_c00094{left:135.810000px;}
.x53_c00094{left:137.290500px;}
.x93_c00094{left:142.860102px;}
.x4a_c00094{left:143.912580px;}
.x3f_c00094{left:145.405500px;}
.x58_c00094{left:147.040548px;}
.x15_c00094{left:148.230000px;}
.x81_c00094{left:156.870000px;}
.x3a_c00094{left:158.137500px;}
.x2c_c00094{left:164.700000px;}
.x1e_c00094{left:166.050000px;}
.x34_c00094{left:167.670000px;}
.xd_c00094{left:169.682835px;}
.x68_c00094{left:172.382898px;}
.x7a_c00094{left:175.309500px;}
.x62_c00094{left:176.469576px;}
.x16_c00094{left:177.660000px;}
.x4e_c00094{left:180.262776px;}
.x26_c00094{left:184.140000px;}
.x1f_c00094{left:186.300000px;}
.x76_c00094{left:187.786500px;}
.x35_c00094{left:190.890000px;}
.x85_c00094{left:193.071695px;}
.xe_c00094{left:196.132625px;}
.x4b_c00094{left:198.459048px;}
.x73_c00094{left:201.489000px;}
.x3_c00094{left:203.673000px;}
.x63_c00094{left:205.003392px;}
.x70_c00094{left:206.461500px;}
.x94_c00094{left:207.629118px;}
.x45_c00094{left:209.259060px;}
.x4_c00094{left:212.352000px;}
.x27_c00094{left:215.730000px;}
.x54_c00094{left:217.446000px;}
.x86_c00094{left:218.812928px;}
.xf_c00094{left:222.555414px;}
.x6e_c00094{left:225.990000px;}
.x2d_c00094{left:227.340000px;}
.x4f_c00094{left:228.561408px;}
.x7b_c00094{left:234.177000px;}
.x3b_c00094{left:236.398500px;}
.x87_c00094{left:238.432788px;}
.x17_c00094{left:239.490000px;}
.x6b_c00094{left:241.236222px;}
.x36_c00094{left:243.270000px;}
.x40_c00094{left:244.692000px;}
.x5_c00094{left:246.388500px;}
.x64_c00094{left:248.148348px;}
.x74_c00094{left:250.084500px;}
.x28_c00094{left:251.100000px;}
.x4c_c00094{left:253.545636px;}
.x46_c00094{left:259.215852px;}
.x31_c00094{left:261.630000px;}
.x20_c00094{left:265.410000px;}
.x59_c00094{left:266.611728px;}
.x95_c00094{left:268.488030px;}
.x10_c00094{left:272.564471px;}
.x37_c00094{left:274.860000px;}
.x50_c00094{left:277.935636px;}
.x6f_c00094{left:279.180000px;}
.x18_c00094{left:282.690000px;}
.x9b_c00094{left:283.737000px;}
.x71_c00094{left:285.189000px;}
.x5e_c00094{left:286.330500px;}
.x77_c00094{left:288.646500px;}
.x55_c00094{left:290.626500px;}
.x6c_c00094{left:292.590222px;}
.x7e_c00094{left:295.650000px;}
.x6_c00094{left:296.865000px;}
.x75_c00094{left:298.689000px;}
.x29_c00094{left:299.700000px;}
.x41_c00094{left:303.082500px;}
.x69_c00094{left:305.237982px;}
.x21_c00094{left:306.990000px;}
.x65_c00094{left:309.171390px;}
.x7c_c00094{left:312.193500px;}
.x2e_c00094{left:318.060000px;}
.x5a_c00094{left:319.261150px;}
.x19_c00094{left:322.380000px;}
.x11_c00094{left:323.639093px;}
.x5f_c00094{left:327.640500px;}
.x78_c00094{left:328.864500px;}
.x22_c00094{left:330.210000px;}
.x42_c00094{left:331.707000px;}
.x47_c00094{left:335.096268px;}
.x51_c00094{left:342.252804px;}
.x2a_c00094{left:344.520000px;}
.x6d_c00094{left:345.958722px;}
.x3c_c00094{left:348.403500px;}
.x23_c00094{left:350.730000px;}
.x7d_c00094{left:353.514000px;}
.x4d_c00094{left:355.078128px;}
.x56_c00094{left:358.212000px;}
.x89_c00094{left:359.278500px;}
.x43_c00094{left:361.338000px;}
.x48_c00094{left:364.260732px;}
.x96_c00094{left:367.621500px;}
.x7f_c00094{left:369.360000px;}
.x32_c00094{left:374.220000px;}
.x60_c00094{left:376.246500px;}
.x5b_c00094{left:378.341007px;}
.x2b_c00094{left:379.620000px;}
.x24_c00094{left:381.240000px;}
.x79_c00094{left:384.207000px;}
.x52_c00094{left:387.063600px;}
.x1a_c00094{left:389.340000px;}
.x2f_c00094{left:392.850000px;}
.x6a_c00094{left:397.318098px;}
.x3d_c00094{left:398.635500px;}
.x72_c00094{left:399.931500px;}
.x57_c00094{left:414.867000px;}
.x1b_c00094{left:417.690000px;}
.x33_c00094{left:420.120000px;}
.x44_c00094{left:421.780500px;}
.x66_c00094{left:423.963636px;}
.x12_c00094{left:426.486228px;}
.x8a_c00094{left:432.429000px;}
.x5c_c00094{left:434.680380px;}
.x7_c00094{left:442.737000px;}
.x8b_c00094{left:454.092000px;}
.x3e_c00094{left:461.533500px;}
.x97_c00094{left:463.752000px;}
.x67_c00094{left:469.291056px;}
.x30_c00094{left:471.690000px;}
.x38_c00094{left:478.170000px;}
.x8_c00094{left:480.924000px;}
.x1c_c00094{left:483.840000px;}
.x8c_c00094{left:487.473000px;}
.x98_c00094{left:491.803500px;}
.x99_c00094{left:493.204500px;}
.x8d_c00094{left:503.707500px;}
.x9a_c00094{left:510.142500px;}
.x9_c00094{left:531.135000px;}
.x13_c00094{left:537.050409px;}
.xa_c00094{left:544.453500px;}
.xb_c00094{left:566.368500px;}
.xc_c00094{left:587.356500px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
.fs11_c00094{font-size:25.200000pt;}
.fs14_c00094{font-size:29.868817pt;}
.fs15_c00094{font-size:43.869825pt;}
.fs12_c00094{font-size:44.778155pt;}
.fs13_c00094{font-size:45.736626pt;}
.fs0_c00094{font-size:48.553737pt;}
.fs17_c00094{font-size:49.466667pt;}
.fs16_c00094{font-size:53.205213pt;}
.fs18_c00094{font-size:55.078808pt;}
.fs4_c00094{font-size:56.933333pt;}
.fsa_c00094{font-size:56.940620pt;}
.fs2_c00094{font-size:57.866667pt;}
.fsf_c00094{font-size:59.737634pt;}
.fs6_c00094{font-size:60.666667pt;}
.fsd_c00094{font-size:61.603727pt;}
.fs3_c00094{font-size:62.533333pt;}
.fsc_c00094{font-size:62.537116pt;}
.fse_c00094{font-size:62.537836pt;}
.fsb_c00094{font-size:62.541337pt;}
.fs5_c00094{font-size:63.466667pt;}
.fs9_c00094{font-size:63.469237pt;}
.fs7_c00094{font-size:64.400000pt;}
.fs10_c00094{font-size:64.404637pt;}
.fs8_c00094{font-size:76.533333pt;}
.fs1_c00094{font-size:78.432960pt;}
.y0_c00094{bottom:0.000000pt;}
.yba_c00094{bottom:63.249333pt;}
.ybf_c00094{bottom:68.392935pt;}
.ybe_c00094{bottom:69.414879pt;}
.ybd_c00094{bottom:71.007155pt;}
.ybc_c00094{bottom:72.506163pt;}
.ybb_c00094{bottom:73.206667pt;}
.yb9_c00094{bottom:119.764083pt;}
.yb8_c00094{bottom:119.974867pt;}
.yb7_c00094{bottom:119.992301pt;}
.yb6_c00094{bottom:120.341387pt;}
.yb5_c00094{bottom:121.124808pt;}
.yb4_c00094{bottom:121.537677pt;}
.yb3_c00094{bottom:121.847525pt;}
.yb2_c00094{bottom:122.089333pt;}
.yb1_c00094{bottom:123.954053pt;}
.yb0_c00094{bottom:124.327413pt;}
.yaf_c00094{bottom:124.690725pt;}
.yae_c00094{bottom:125.464645pt;}
.yad_c00094{bottom:125.770032pt;}
.yac_c00094{bottom:126.063205pt;}
.yab_c00094{bottom:126.672923pt;}
.yaa_c00094{bottom:127.014949pt;}
.ya9_c00094{bottom:127.397893pt;}
.ya8_c00094{bottom:128.643371pt;}
.ya7_c00094{bottom:135.002741pt;}
.ya6_c00094{bottom:135.003152pt;}
.ya5_c00094{bottom:135.707072pt;}
.ya4_c00094{bottom:135.880240pt;}
.ya3_c00094{bottom:136.236304pt;}
.ya2_c00094{bottom:136.467376pt;}
.ya1_c00094{bottom:136.657712pt;}
.ya0_c00094{bottom:137.247648pt;}
.y9f_c00094{bottom:137.360816pt;}
.y9e_c00094{bottom:137.591136pt;}
.y9b_c00094{bottom:138.494347pt;}
.y9c_c00094{bottom:138.536416pt;}
.y9a_c00094{bottom:139.849525pt;}
.y99_c00094{bottom:140.408160pt;}
.y9d_c00094{bottom:140.640000pt;}
.y98_c00094{bottom:141.141088pt;}
.y97_c00094{bottom:142.166667pt;}
.y96_c00094{bottom:142.753547pt;}
.y95_c00094{bottom:143.402763pt;}
.y94_c00094{bottom:144.139403pt;}
.y93_c00094{bottom:144.662667pt;}
.y92_c00094{bottom:166.560000pt;}
.y91_c00094{bottom:185.532000pt;}
.y90_c00094{bottom:204.466667pt;}
.y8f_c00094{bottom:205.034667pt;}
.y8e_c00094{bottom:205.594667pt;}
.y8d_c00094{bottom:205.898667pt;}
.y8c_c00094{bottom:206.449333pt;}
.y8b_c00094{bottom:206.748000pt;}
.y8a_c00094{bottom:207.489333pt;}
.y89_c00094{bottom:207.930667pt;}
.y88_c00094{bottom:208.273333pt;}
.y87_c00094{bottom:208.701333pt;}
.y86_c00094{bottom:209.044000pt;}
.y85_c00094{bottom:225.186667pt;}
.y84_c00094{bottom:226.022667pt;}
.y83_c00094{bottom:226.630667pt;}
.y82_c00094{bottom:227.629333pt;}
.y81_c00094{bottom:228.154667pt;}
.y80_c00094{bottom:229.204000pt;}
.y7f_c00094{bottom:245.112000pt;}
.y7e_c00094{bottom:245.897333pt;}
.y7d_c00094{bottom:246.550667pt;}
.y7c_c00094{bottom:247.241333pt;}
.y7b_c00094{bottom:247.932000pt;}
.y7a_c00094{bottom:248.461333pt;}
.y79_c00094{bottom:249.122667pt;}
.y78_c00094{bottom:265.026667pt;}
.y77_c00094{bottom:265.800000pt;}
.y76_c00094{bottom:266.050667pt;}
.y75_c00094{bottom:266.320000pt;}
.y74_c00094{bottom:266.657333pt;}
.y73_c00094{bottom:267.777333pt;}
.y72_c00094{bottom:268.308000pt;}
.y71_c00094{bottom:269.045333pt;}
.y70_c00094{bottom:286.857333pt;}
.y6f_c00094{bottom:305.178320pt;}
.y6e_c00094{bottom:305.723088pt;}
.y6d_c00094{bottom:306.010784pt;}
.y6c_c00094{bottom:306.292352pt;}
.y6b_c00094{bottom:306.840128pt;}
.y6a_c00094{bottom:307.306176pt;}
.y69_c00094{bottom:307.946144pt;}
.y68_c00094{bottom:308.156432pt;}
.y67_c00094{bottom:324.994448pt;}
.y66_c00094{bottom:325.354160pt;}
.y65_c00094{bottom:325.745040pt;}
.y64_c00094{bottom:326.253669pt;}
.y63_c00094{bottom:326.861707pt;}
.y62_c00094{bottom:327.186629pt;}
.y61_c00094{bottom:327.553440pt;}
.y60_c00094{bottom:328.078528pt;}
.y5f_c00094{bottom:344.363963pt;}
.y5e_c00094{bottom:344.927467pt;}
.y5d_c00094{bottom:345.515531pt;}
.y5c_c00094{bottom:346.355947pt;}
.y5b_c00094{bottom:347.114875pt;}
.y5a_c00094{bottom:347.652432pt;}
.y59_c00094{bottom:348.007467pt;}
.y58_c00094{bottom:348.722277pt;}
.y57_c00094{bottom:365.041995pt;}
.y56_c00094{bottom:365.321883pt;}
.y55_c00094{bottom:365.503339pt;}
.y54_c00094{bottom:366.021803pt;}
.y53_c00094{bottom:366.238683pt;}
.y52_c00094{bottom:366.462443pt;}
.y51_c00094{bottom:367.001867pt;}
.y50_c00094{bottom:367.709739pt;}
.y4f_c00094{bottom:367.983771pt;}
.y4e_c00094{bottom:368.262667pt;}
.y4d_c00094{bottom:385.197723pt;}
.y4c_c00094{bottom:385.799269pt;}
.y4b_c00094{bottom:386.428945pt;}
.y4a_c00094{bottom:386.990412pt;}
.y49_c00094{bottom:387.791101pt;}
.y48_c00094{bottom:388.266232pt;}
.y47_c00094{bottom:388.559879pt;}
.y46_c00094{bottom:405.767252pt;}
.y45_c00094{bottom:405.986387pt;}
.y44_c00094{bottom:406.321212pt;}
.y43_c00094{bottom:406.982048pt;}
.y42_c00094{bottom:407.697591pt;}
.y41_c00094{bottom:408.092755pt;}
.y40_c00094{bottom:408.481333pt;}
.y3f_c00094{bottom:426.263968pt;}
.y3e_c00094{bottom:426.662549pt;}
.y3d_c00094{bottom:427.008373pt;}
.y3c_c00094{bottom:427.234528pt;}
.y3b_c00094{bottom:427.674005pt;}
.y3a_c00094{bottom:428.103520pt;}
.y39_c00094{bottom:428.636405pt;}
.y32_c00094{bottom:447.252640pt;}
.y35_c00094{bottom:447.253109pt;}
.y33_c00094{bottom:447.253269pt;}
.y36_c00094{bottom:447.253280pt;}
.y38_c00094{bottom:447.253461pt;}
.y37_c00094{bottom:447.253504pt;}
.y34_c00094{bottom:447.253696pt;}
.y2c_c00094{bottom:467.522005pt;}
.y2d_c00094{bottom:467.522517pt;}
.y2e_c00094{bottom:467.522656pt;}
.y31_c00094{bottom:467.522752pt;}
.y30_c00094{bottom:467.522763pt;}
.y2f_c00094{bottom:467.523008pt;}
.y2b_c00094{bottom:485.085397pt;}
.y2a_c00094{bottom:485.945024pt;}
.y29_c00094{bottom:486.366443pt;}
.y28_c00094{bottom:486.773547pt;}
.y27_c00094{bottom:487.603989pt;}
.y26_c00094{bottom:488.426005pt;}
.y25_c00094{bottom:489.016064pt;}
.y24_c00094{bottom:489.362667pt;}
.y23_c00094{bottom:564.914689pt;}
.y22_c00094{bottom:565.417873pt;}
.y21_c00094{bottom:565.819729pt;}
.y20_c00094{bottom:566.056561pt;}
.y1f_c00094{bottom:566.233969pt;}
.y1e_c00094{bottom:566.715769pt;}
.y1d_c00094{bottom:567.341857pt;}
.y1c_c00094{bottom:567.601333pt;}
.y1b_c00094{bottom:586.809333pt;}
.y1a_c00094{bottom:607.600000pt;}
.y19_c00094{bottom:627.529333pt;}
.y18_c00094{bottom:647.614667pt;}
.y17_c00094{bottom:668.226667pt;}
.y16_c00094{bottom:688.153333pt;}
.y15_c00094{bottom:708.928000pt;}
.y14_c00094{bottom:745.180409pt;}
.y13_c00094{bottom:746.261021pt;}
.y12_c00094{bottom:747.266809pt;}
.y11_c00094{bottom:747.766713pt;}
.y10_c00094{bottom:748.026281pt;}
.yf_c00094{bottom:748.256497pt;}
.ye_c00094{bottom:748.514596pt;}
.yd_c00094{bottom:748.773391pt;}
.yc_c00094{bottom:804.182299pt;}
.yb_c00094{bottom:804.723323pt;}
.ya_c00094{bottom:805.288243pt;}
.y9_c00094{bottom:805.631564pt;}
.y8_c00094{bottom:806.925892pt;}
.y7_c00094{bottom:807.910268pt;}
.y6_c00094{bottom:811.670524pt;}
.y5_c00094{bottom:812.971696pt;}
.y4_c00094{bottom:813.849081pt;}
.y3_c00094{bottom:814.072807pt;}
.y2_c00094{bottom:815.948797pt;}
.y1_c00094{bottom:817.214667pt;}
.h13_c00094{height:25.200000pt;}
.h16_c00094{height:29.868817pt;}
.h17_c00094{height:43.869825pt;}
.h14_c00094{height:44.778155pt;}
.h15_c00094{height:45.736626pt;}
.h2_c00094{height:48.553737pt;}
.h19_c00094{height:49.466667pt;}
.h18_c00094{height:53.205213pt;}
.h1a_c00094{height:55.078808pt;}
.h6_c00094{height:56.933333pt;}
.hc_c00094{height:56.940620pt;}
.h4_c00094{height:57.866667pt;}
.h11_c00094{height:59.737634pt;}
.h8_c00094{height:60.666667pt;}
.hf_c00094{height:61.603727pt;}
.h5_c00094{height:62.533333pt;}
.he_c00094{height:62.537116pt;}
.h10_c00094{height:62.537836pt;}
.hd_c00094{height:62.541337pt;}
.h7_c00094{height:63.466667pt;}
.hb_c00094{height:63.469237pt;}
.h9_c00094{height:64.400000pt;}
.h12_c00094{height:64.404637pt;}
.ha_c00094{height:76.533333pt;}
.h3_c00094{height:78.432960pt;}
.h1_c00094{height:893.333333pt;}
.h0_c00094{height:893.466667pt;}
.w0_c00094{width:627.066667pt;}
.w1_c00094{width:627.333333pt;}
.x0_c00094{left:0.000000pt;}
.x8e_c00094{left:29.998075pt;}
.x90_c00094{left:33.126219pt;}
.x88_c00094{left:36.662667pt;}
.x8f_c00094{left:48.479397pt;}
.x82_c00094{left:61.680000pt;}
.x1_c00094{left:72.702667pt;}
.x83_c00094{left:78.015648pt;}
.x91_c00094{left:92.465152pt;}
.x84_c00094{left:101.012628pt;}
.x14_c00094{left:103.200000pt;}
.x5d_c00094{left:104.497333pt;}
.x61_c00094{left:105.851077pt;}
.x49_c00094{left:107.039605pt;}
.x1d_c00094{left:108.000000pt;}
.x25_c00094{left:109.200000pt;}
.x92_c00094{left:110.708517pt;}
.x39_c00094{left:111.736000pt;}
.x2_c00094{left:116.353333pt;}
.x80_c00094{left:120.720000pt;}
.x53_c00094{left:122.036000pt;}
.x93_c00094{left:126.986757pt;}
.x4a_c00094{left:127.922293pt;}
.x3f_c00094{left:129.249333pt;}
.x58_c00094{left:130.702709pt;}
.x15_c00094{left:131.760000pt;}
.x81_c00094{left:139.440000pt;}
.x3a_c00094{left:140.566667pt;}
.x2c_c00094{left:146.400000pt;}
.x1e_c00094{left:147.600000pt;}
.x34_c00094{left:149.040000pt;}
.xd_c00094{left:150.829187pt;}
.x68_c00094{left:153.229243pt;}
.x7a_c00094{left:155.830667pt;}
.x62_c00094{left:156.861845pt;}
.x16_c00094{left:157.920000pt;}
.x4e_c00094{left:160.233579pt;}
.x26_c00094{left:163.680000pt;}
.x1f_c00094{left:165.600000pt;}
.x76_c00094{left:166.921333pt;}
.x35_c00094{left:169.680000pt;}
.x85_c00094{left:171.619284pt;}
.xe_c00094{left:174.340111pt;}
.x4b_c00094{left:176.408043pt;}
.x73_c00094{left:179.101333pt;}
.x3_c00094{left:181.042667pt;}
.x63_c00094{left:182.225237pt;}
.x70_c00094{left:183.521333pt;}
.x94_c00094{left:184.559216pt;}
.x45_c00094{left:186.008053pt;}
.x4_c00094{left:188.757333pt;}
.x27_c00094{left:191.760000pt;}
.x54_c00094{left:193.285333pt;}
.x86_c00094{left:194.500380pt;}
.xf_c00094{left:197.827035pt;}
.x6e_c00094{left:200.880000pt;}
.x2d_c00094{left:202.080000pt;}
.x4f_c00094{left:203.165696pt;}
.x7b_c00094{left:208.157333pt;}
.x3b_c00094{left:210.132000pt;}
.x87_c00094{left:211.940256pt;}
.x17_c00094{left:212.880000pt;}
.x6b_c00094{left:214.432197pt;}
.x36_c00094{left:216.240000pt;}
.x40_c00094{left:217.504000pt;}
.x5_c00094{left:219.012000pt;}
.x64_c00094{left:220.576309pt;}
.x74_c00094{left:222.297333pt;}
.x28_c00094{left:223.200000pt;}
.x4c_c00094{left:225.373899pt;}
.x46_c00094{left:230.414091pt;}
.x31_c00094{left:232.560000pt;}
.x20_c00094{left:235.920000pt;}
.x59_c00094{left:236.988203pt;}
.x95_c00094{left:238.656027pt;}
.x10_c00094{left:242.279529pt;}
.x37_c00094{left:244.320000pt;}
.x50_c00094{left:247.053899pt;}
.x6f_c00094{left:248.160000pt;}
.x18_c00094{left:251.280000pt;}
.x9b_c00094{left:252.210667pt;}
.x71_c00094{left:253.501333pt;}
.x5e_c00094{left:254.516000pt;}
.x77_c00094{left:256.574667pt;}
.x55_c00094{left:258.334667pt;}
.x6c_c00094{left:260.080197pt;}
.x7e_c00094{left:262.800000pt;}
.x6_c00094{left:263.880000pt;}
.x75_c00094{left:265.501333pt;}
.x29_c00094{left:266.400000pt;}
.x41_c00094{left:269.406667pt;}
.x69_c00094{left:271.322651pt;}
.x21_c00094{left:272.880000pt;}
.x65_c00094{left:274.819013pt;}
.x7c_c00094{left:277.505333pt;}
.x2e_c00094{left:282.720000pt;}
.x5a_c00094{left:283.787689pt;}
.x19_c00094{left:286.560000pt;}
.x11_c00094{left:287.679193pt;}
.x5f_c00094{left:291.236000pt;}
.x78_c00094{left:292.324000pt;}
.x22_c00094{left:293.520000pt;}
.x42_c00094{left:294.850667pt;}
.x47_c00094{left:297.863349pt;}
.x51_c00094{left:304.224715pt;}
.x2a_c00094{left:306.240000pt;}
.x6d_c00094{left:307.518864pt;}
.x3c_c00094{left:309.692000pt;}
.x23_c00094{left:311.760000pt;}
.x7d_c00094{left:314.234667pt;}
.x4d_c00094{left:315.625003pt;}
.x56_c00094{left:318.410667pt;}
.x89_c00094{left:319.358667pt;}
.x43_c00094{left:321.189333pt;}
.x48_c00094{left:323.787317pt;}
.x96_c00094{left:326.774667pt;}
.x7f_c00094{left:328.320000pt;}
.x32_c00094{left:332.640000pt;}
.x60_c00094{left:334.441333pt;}
.x5b_c00094{left:336.303117pt;}
.x2b_c00094{left:337.440000pt;}
.x24_c00094{left:338.880000pt;}
.x79_c00094{left:341.517333pt;}
.x52_c00094{left:344.056533pt;}
.x1a_c00094{left:346.080000pt;}
.x2f_c00094{left:349.200000pt;}
.x6a_c00094{left:353.171643pt;}
.x3d_c00094{left:354.342667pt;}
.x72_c00094{left:355.494667pt;}
.x57_c00094{left:368.770667pt;}
.x1b_c00094{left:371.280000pt;}
.x33_c00094{left:373.440000pt;}
.x44_c00094{left:374.916000pt;}
.x66_c00094{left:376.856565pt;}
.x12_c00094{left:379.098869pt;}
.x8a_c00094{left:384.381333pt;}
.x5c_c00094{left:386.382560pt;}
.x7_c00094{left:393.544000pt;}
.x8b_c00094{left:403.637333pt;}
.x3e_c00094{left:410.252000pt;}
.x97_c00094{left:412.224000pt;}
.x67_c00094{left:417.147605pt;}
.x30_c00094{left:419.280000pt;}
.x38_c00094{left:425.040000pt;}
.x8_c00094{left:427.488000pt;}
.x1c_c00094{left:430.080000pt;}
.x8c_c00094{left:433.309333pt;}
.x98_c00094{left:437.158667pt;}
.x99_c00094{left:438.404000pt;}
.x8d_c00094{left:447.740000pt;}
.x9a_c00094{left:453.460000pt;}
.x9_c00094{left:472.120000pt;}
.x13_c00094{left:477.378141pt;}
.xa_c00094{left:483.958667pt;}
.xb_c00094{left:503.438667pt;}
.xc_c00094{left:522.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_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_7b27c95a9cb4dd3f7cd72c03.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);}
.m44_c00095{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);}
.m42_c00095{transform:matrix(0.137620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137620,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{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);}
.m78_c00095{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);}
.m48_c00095{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);}
.m9f_c00095{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);}
.m9e_c00095{transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148910,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.149530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149530,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{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);}
.m5c_c00095{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);}
.m6b_c00095{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);}
.m7c_c00095{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{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);}
.m7e_c00095{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{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);}
.m89_c00095{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);}
.m92_c00095{transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);}
.mab_c00095{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);}
.maa_c00095{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);}
.m94_c00095{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);}
.m55_c00095{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);}
.m3e_c00095{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);}
.m9d_c00095{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);}
.m7a_c00095{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{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);}
.m3d_c00095{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);}
.m95_c00095{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{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);}
.m8a_c00095{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);}
.m91_c00095{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);}
.m9c_c00095{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);}
.m6f_c00095{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);}
.m1e_c00095{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);}
.m65_c00095{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);}
.ma5_c00095{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);}
.m46_c00095{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);}
.m80_c00095{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);}
.ma7_c00095{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);}
.m74_c00095{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);}
.m82_c00095{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);}
.m52_c00095{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);}
.m32_c00095{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);}
.mc_c00095{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);}
.m76_c00095{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);}
.mae_c00095{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);}
.maf_c00095{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);}
.m9a_c00095{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);}
.m5d_c00095{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);}
.m73_c00095{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);}
.mac_c00095{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);}
.ma6_c00095{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);}
.m83_c00095{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);}
.m47_c00095{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);}
.m77_c00095{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);}
.m49_c00095{transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{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);}
.m3c_c00095{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);}
.m15_c00095{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);}
.m14_c00095{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);}
.m3f_c00095{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);}
.ma1_c00095{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);}
.m6c_c00095{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);}
.m85_c00095{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);}
.m9b_c00095{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);}
.md_c00095{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);}
.mad_c00095{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);}
.m8b_c00095{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);}
.ma8_c00095{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);}
.m8d_c00095{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);}
.m37_c00095{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);}
.m54_c00095{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);}
.ma9_c00095{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);}
.m4b_c00095{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);}
.m7f_c00095{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);}
.m40_c00095{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);}
.m3a_c00095{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);}
.m5e_c00095{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);}
.m6a_c00095{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);}
.m6d_c00095{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);}
.m34_c00095{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);}
.m5a_c00095{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);}
.m81_c00095{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);}
.m8e_c00095{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);}
.m68_c00095{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);}
.m67_c00095{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);}
.ma4_c00095{transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{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);}
.m98_c00095{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);}
.m87_c00095{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);}
.m61_c00095{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);}
.m33_c00095{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);}
.m69_c00095{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);}
.m1c_c00095{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);}
.m45_c00095{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);}
.m84_c00095{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);}
.m4a_c00095{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);}
.m59_c00095{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);}
.m93_c00095{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);}
.m19_c00095{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);}
.m7d_c00095{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);}
.m79_c00095{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);}
.m7b_c00095{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);}
.ma0_c00095{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);}
.m11_c00095{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);}
.m70_c00095{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);}
.m51_c00095{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);}
.m36_c00095{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);}
.m8f_c00095{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);}
.m12_c00095{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);}
.m8c_c00095{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);}
.m2d_c00095{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);}
.m75_c00095{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);}
.m1f_c00095{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);}
.ma_c00095{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);}
.m56_c00095{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);}
.m66_c00095{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);}
.m1d_c00095{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);}
.m99_c00095{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);}
.m64_c00095{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);}
.m71_c00095{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);}
.m4c_c00095{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);}
.m62_c00095{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);}
.m3_c00095{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);}
.m63_c00095{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{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);}
.m29_c00095{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{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);}
.m39_c00095{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);}
.m6e_c00095{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{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);}
.m35_c00095{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);}
.mb_c00095{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);}
.m96_c00095{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);}
.m2b_c00095{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m13_c00095{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.262434,-0.002887,0.002750,0.249985,0,0);-ms-transform:matrix(0.262434,-0.002887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262434,-0.002887,0.002750,0.249985,0,0);}
.m1a_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);}
.m23_c00095{transform:matrix(0.277713,-0.003055,0.002750,0.249985,0,0);-ms-transform:matrix(0.277713,-0.003055,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277713,-0.003055,0.002750,0.249985,0,0);}
.m26_c00095{transform:matrix(0.282128,-0.003103,0.002750,0.249985,0,0);-ms-transform:matrix(0.282128,-0.003103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282128,-0.003103,0.002750,0.249985,0,0);}
.m20_c00095{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{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);}
.m5_c00095{transform:matrix(0.305340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.331800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331800,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.335630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335630,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.346725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346725,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.349470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349470,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.356630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356630,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358195,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.363783,-0.004002,0.002750,0.249985,0,0);-ms-transform:matrix(0.363783,-0.004002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.363783,-0.004002,0.002750,0.249985,0,0);}
.m1b_c00095{transform:matrix(0.366380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366380,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.367495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367495,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386205,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.397321,-0.004371,0.002750,0.249985,0,0);-ms-transform:matrix(0.397321,-0.004371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.397321,-0.004371,0.002750,0.249985,0,0);}
.m2_c00095{transform:matrix(0.412390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412390,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.438770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438770,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.459960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459960,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.466157,-0.005128,0.002750,0.249985,0,0);-ms-transform:matrix(0.466157,-0.005128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.466157,-0.005128,0.002750,0.249985,0,0);}
.m2f_c00095{transform:matrix(0.480325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480325,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.485680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485680,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.489540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489540,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.493060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493060,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.501800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501800,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.537470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537470,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.693300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693300,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.787520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787520,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;}
.fsd_c00095{font-size:54.600000px;}
.fsc_c00095{font-size:55.650000px;}
.fse_c00095{font-size:57.750000px;}
.fsb_c00095{font-size:64.050000px;}
.fs9_c00095{font-size:69.300000px;}
.fs5_c00095{font-size:70.350000px;}
.fs4_c00095{font-size:71.400000px;}
.fs3_c00095{font-size:72.450000px;}
.fs7_c00095{font-size:73.500000px;}
.fs6_c00095{font-size:73.504447px;}
.fs8_c00095{font-size:74.550000px;}
.fsa_c00095{font-size:75.600000px;}
.fs0_c00095{font-size:92.400000px;}
.fs1_c00095{font-size:105.000000px;}
.fs2_c00095{font-size:124.950000px;}
.y0_c00095{bottom:0.000000px;}
.y20_c00095{bottom:125.535000px;}
.y1f_c00095{bottom:143.736000px;}
.y1d_c00095{bottom:145.545000px;}
.y1e_c00095{bottom:161.215500px;}
.y1c_c00095{bottom:164.041500px;}
.y1b_c00095{bottom:224.100000px;}
.y1a_c00095{bottom:247.650000px;}
.y19_c00095{bottom:270.210000px;}
.y18_c00095{bottom:293.133000px;}
.y17_c00095{bottom:316.362000px;}
.y16_c00095{bottom:339.465000px;}
.y15_c00095{bottom:362.215500px;}
.y14_c00095{bottom:384.633000px;}
.y13_c00095{bottom:407.785500px;}
.y12_c00095{bottom:430.534500px;}
.y11_c00095{bottom:453.381000px;}
.y10_c00095{bottom:476.296500px;}
.yf_c00095{bottom:499.287000px;}
.ye_c00095{bottom:522.534000px;}
.yd_c00095{bottom:545.131500px;}
.y7_c00095{bottom:565.113000px;}
.y8_c00095{bottom:567.677199px;}
.y9_c00095{bottom:567.951231px;}
.ya_c00095{bottom:568.167348px;}
.yb_c00095{bottom:568.390709px;}
.yc_c00095{bottom:568.636542px;}
.y6_c00095{bottom:591.645000px;}
.y5_c00095{bottom:613.900500px;}
.y4_c00095{bottom:649.830000px;}
.y3_c00095{bottom:687.787500px;}
.y2_c00095{bottom:704.836500px;}
.y1_c00095{bottom:730.921500px;}
.hf_c00095{height:54.600000px;}
.he_c00095{height:55.650000px;}
.h10_c00095{height:57.750000px;}
.hd_c00095{height:64.050000px;}
.hb_c00095{height:69.300000px;}
.h7_c00095{height:70.350000px;}
.h6_c00095{height:71.400000px;}
.h5_c00095{height:72.450000px;}
.h9_c00095{height:73.500000px;}
.h8_c00095{height:73.504447px;}
.ha_c00095{height:74.550000px;}
.hc_c00095{height:75.600000px;}
.h2_c00095{height:92.400000px;}
.h3_c00095{height:105.000000px;}
.h4_c00095{height:124.950000px;}
.h0_c00095{height:1008.450000px;}
.h1_c00095{height:1008.750000px;}
.w0_c00095{width:711.720000px;}
.w1_c00095{width:711.750000px;}
.x0_c00095{left:0.000000px;}
.x22_c00095{left:119.070000px;}
.x1_c00095{left:121.500000px;}
.x4_c00095{left:127.440000px;}
.x1c_c00095{left:130.740000px;}
.x23_c00095{left:181.440000px;}
.x6e_c00095{left:182.790000px;}
.x6a_c00095{left:196.290000px;}
.x38_c00095{left:203.040000px;}
.x73_c00095{left:206.550000px;}
.x6b_c00095{left:211.140000px;}
.x24_c00095{left:212.220000px;}
.x39_c00095{left:217.080000px;}
.xd_c00095{left:218.430000px;}
.x6c_c00095{left:231.120000px;}
.x50_c00095{left:236.250000px;}
.x74_c00095{left:237.870000px;}
.x31_c00095{left:238.950000px;}
.x5d_c00095{left:244.620000px;}
.x57_c00095{left:246.780000px;}
.xe_c00095{left:255.420000px;}
.x15_c00095{left:257.850000px;}
.x62_c00095{left:261.360000px;}
.x75_c00095{left:262.980000px;}
.x5_c00095{left:264.330000px;}
.x6f_c00095{left:267.030000px;}
.x2_c00095{left:274.050000px;}
.x16_c00095{left:278.640000px;}
.x25_c00095{left:279.720000px;}
.xf_c00095{left:282.420000px;}
.x51_c00095{left:287.550000px;}
.x44_c00095{left:295.650000px;}
.x7_c00095{left:300.240000px;}
.x3a_c00095{left:302.670000px;}
.x26_c00095{left:305.100000px;}
.x70_c00095{left:308.070000px;}
.x4b_c00095{left:309.150000px;}
.x58_c00095{left:320.760000px;}
.x45_c00095{left:322.380000px;}
.x17_c00095{left:324.540000px;}
.x49_c00095{left:325.890000px;}
.x4c_c00095{left:330.480000px;}
.x60_c00095{left:334.800000px;}
.x3b_c00095{left:336.420000px;}
.x52_c00095{left:337.770000px;}
.x32_c00095{left:338.850000px;}
.x27_c00095{left:341.820000px;}
.x18_c00095{left:343.440000px;}
.x71_c00095{left:348.570000px;}
.x37_c00095{left:351.810000px;}
.x48_c00095{left:359.640000px;}
.x33_c00095{left:360.720000px;}
.x1d_c00095{left:363.849000px;}
.x10_c00095{left:368.010000px;}
.x2d_c00095{left:369.090000px;}
.x3c_c00095{left:373.680000px;}
.x6d_c00095{left:375.570000px;}
.x53_c00095{left:377.460000px;}
.x8_c00095{left:385.560000px;}
.x1e_c00095{left:388.761000px;}
.x2e_c00095{left:390.690000px;}
.x19_c00095{left:393.120000px;}
.x4a_c00095{left:395.820000px;}
.x3_c00095{left:396.900000px;}
.x3d_c00095{left:397.980000px;}
.x72_c00095{left:399.330000px;}
.x9_c00095{left:400.680000px;}
.x59_c00095{left:403.920000px;}
.x1f_c00095{left:408.408000px;}
.x4d_c00095{left:409.590000px;}
.xa_c00095{left:412.560000px;}
.x5e_c00095{left:413.910000px;}
.x6_c00095{left:418.500000px;}
.x1a_c00095{left:427.410000px;}
.x20_c00095{left:428.713500px;}
.x3e_c00095{left:430.110000px;}
.x11_c00095{left:431.190000px;}
.x28_c00095{left:435.240000px;}
.x42_c00095{left:437.940000px;}
.x4e_c00095{left:440.370000px;}
.x63_c00095{left:447.930000px;}
.x21_c00095{left:451.062000px;}
.x54_c00095{left:454.140000px;}
.xb_c00095{left:456.570000px;}
.x2f_c00095{left:457.650000px;}
.x43_c00095{left:459.810000px;}
.x29_c00095{left:461.430000px;}
.x12_c00095{left:470.880000px;}
.x34_c00095{left:473.040000px;}
.x64_c00095{left:474.930000px;}
.x3f_c00095{left:477.900000px;}
.x5a_c00095{left:480.330000px;}
.x5f_c00095{left:482.490000px;}
.x55_c00095{left:483.840000px;}
.x2a_c00095{left:485.460000px;}
.xc_c00095{left:490.050000px;}
.x61_c00095{left:493.830000px;}
.x30_c00095{left:498.150000px;}
.x35_c00095{left:505.980000px;}
.x4f_c00095{left:508.950000px;}
.x46_c00095{left:514.890000px;}
.x5b_c00095{left:518.670000px;}
.x2b_c00095{left:523.530000px;}
.x56_c00095{left:526.500000px;}
.x13_c00095{left:528.390000px;}
.x1b_c00095{left:532.710000px;}
.x36_c00095{left:538.380000px;}
.x40_c00095{left:542.970000px;}
.x47_c00095{left:546.480000px;}
.x65_c00095{left:568.080000px;}
.x5c_c00095{left:576.720000px;}
.x66_c00095{left:580.770000px;}
.x14_c00095{left:587.790000px;}
.x41_c00095{left:589.410000px;}
.x67_c00095{left:598.050000px;}
.x2c_c00095{left:599.400000px;}
.x68_c00095{left:634.230000px;}
.x69_c00095{left:677.160000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.fsd_c00095{font-size:48.533333pt;}
.fsc_c00095{font-size:49.466667pt;}
.fse_c00095{font-size:51.333333pt;}
.fsb_c00095{font-size:56.933333pt;}
.fs9_c00095{font-size:61.600000pt;}
.fs5_c00095{font-size:62.533333pt;}
.fs4_c00095{font-size:63.466667pt;}
.fs3_c00095{font-size:64.400000pt;}
.fs7_c00095{font-size:65.333333pt;}
.fs6_c00095{font-size:65.337286pt;}
.fs8_c00095{font-size:66.266667pt;}
.fsa_c00095{font-size:67.200000pt;}
.fs0_c00095{font-size:82.133333pt;}
.fs1_c00095{font-size:93.333333pt;}
.fs2_c00095{font-size:111.066667pt;}
.y0_c00095{bottom:0.000000pt;}
.y20_c00095{bottom:111.586667pt;}
.y1f_c00095{bottom:127.765333pt;}
.y1d_c00095{bottom:129.373333pt;}
.y1e_c00095{bottom:143.302667pt;}
.y1c_c00095{bottom:145.814667pt;}
.y1b_c00095{bottom:199.200000pt;}
.y1a_c00095{bottom:220.133333pt;}
.y19_c00095{bottom:240.186667pt;}
.y18_c00095{bottom:260.562667pt;}
.y17_c00095{bottom:281.210667pt;}
.y16_c00095{bottom:301.746667pt;}
.y15_c00095{bottom:321.969333pt;}
.y14_c00095{bottom:341.896000pt;}
.y13_c00095{bottom:362.476000pt;}
.y12_c00095{bottom:382.697333pt;}
.y11_c00095{bottom:403.005333pt;}
.y10_c00095{bottom:423.374667pt;}
.yf_c00095{bottom:443.810667pt;}
.ye_c00095{bottom:464.474667pt;}
.yd_c00095{bottom:484.561333pt;}
.y7_c00095{bottom:502.322667pt;}
.y8_c00095{bottom:504.601955pt;}
.y9_c00095{bottom:504.845539pt;}
.ya_c00095{bottom:505.037643pt;}
.yb_c00095{bottom:505.236185pt;}
.yc_c00095{bottom:505.454704pt;}
.y6_c00095{bottom:525.906667pt;}
.y5_c00095{bottom:545.689333pt;}
.y4_c00095{bottom:577.626667pt;}
.y3_c00095{bottom:611.366667pt;}
.y2_c00095{bottom:626.521333pt;}
.y1_c00095{bottom:649.708000pt;}
.hf_c00095{height:48.533333pt;}
.he_c00095{height:49.466667pt;}
.h10_c00095{height:51.333333pt;}
.hd_c00095{height:56.933333pt;}
.hb_c00095{height:61.600000pt;}
.h7_c00095{height:62.533333pt;}
.h6_c00095{height:63.466667pt;}
.h5_c00095{height:64.400000pt;}
.h9_c00095{height:65.333333pt;}
.h8_c00095{height:65.337286pt;}
.ha_c00095{height:66.266667pt;}
.hc_c00095{height:67.200000pt;}
.h2_c00095{height:82.133333pt;}
.h3_c00095{height:93.333333pt;}
.h4_c00095{height:111.066667pt;}
.h0_c00095{height:896.400000pt;}
.h1_c00095{height:896.666667pt;}
.w0_c00095{width:632.640000pt;}
.w1_c00095{width:632.666667pt;}
.x0_c00095{left:0.000000pt;}
.x22_c00095{left:105.840000pt;}
.x1_c00095{left:108.000000pt;}
.x4_c00095{left:113.280000pt;}
.x1c_c00095{left:116.213333pt;}
.x23_c00095{left:161.280000pt;}
.x6e_c00095{left:162.480000pt;}
.x6a_c00095{left:174.480000pt;}
.x38_c00095{left:180.480000pt;}
.x73_c00095{left:183.600000pt;}
.x6b_c00095{left:187.680000pt;}
.x24_c00095{left:188.640000pt;}
.x39_c00095{left:192.960000pt;}
.xd_c00095{left:194.160000pt;}
.x6c_c00095{left:205.440000pt;}
.x50_c00095{left:210.000000pt;}
.x74_c00095{left:211.440000pt;}
.x31_c00095{left:212.400000pt;}
.x5d_c00095{left:217.440000pt;}
.x57_c00095{left:219.360000pt;}
.xe_c00095{left:227.040000pt;}
.x15_c00095{left:229.200000pt;}
.x62_c00095{left:232.320000pt;}
.x75_c00095{left:233.760000pt;}
.x5_c00095{left:234.960000pt;}
.x6f_c00095{left:237.360000pt;}
.x2_c00095{left:243.600000pt;}
.x16_c00095{left:247.680000pt;}
.x25_c00095{left:248.640000pt;}
.xf_c00095{left:251.040000pt;}
.x51_c00095{left:255.600000pt;}
.x44_c00095{left:262.800000pt;}
.x7_c00095{left:266.880000pt;}
.x3a_c00095{left:269.040000pt;}
.x26_c00095{left:271.200000pt;}
.x70_c00095{left:273.840000pt;}
.x4b_c00095{left:274.800000pt;}
.x58_c00095{left:285.120000pt;}
.x45_c00095{left:286.560000pt;}
.x17_c00095{left:288.480000pt;}
.x49_c00095{left:289.680000pt;}
.x4c_c00095{left:293.760000pt;}
.x60_c00095{left:297.600000pt;}
.x3b_c00095{left:299.040000pt;}
.x52_c00095{left:300.240000pt;}
.x32_c00095{left:301.200000pt;}
.x27_c00095{left:303.840000pt;}
.x18_c00095{left:305.280000pt;}
.x71_c00095{left:309.840000pt;}
.x37_c00095{left:312.720000pt;}
.x48_c00095{left:319.680000pt;}
.x33_c00095{left:320.640000pt;}
.x1d_c00095{left:323.421333pt;}
.x10_c00095{left:327.120000pt;}
.x2d_c00095{left:328.080000pt;}
.x3c_c00095{left:332.160000pt;}
.x6d_c00095{left:333.840000pt;}
.x53_c00095{left:335.520000pt;}
.x8_c00095{left:342.720000pt;}
.x1e_c00095{left:345.565333pt;}
.x2e_c00095{left:347.280000pt;}
.x19_c00095{left:349.440000pt;}
.x4a_c00095{left:351.840000pt;}
.x3_c00095{left:352.800000pt;}
.x3d_c00095{left:353.760000pt;}
.x72_c00095{left:354.960000pt;}
.x9_c00095{left:356.160000pt;}
.x59_c00095{left:359.040000pt;}
.x1f_c00095{left:363.029333pt;}
.x4d_c00095{left:364.080000pt;}
.xa_c00095{left:366.720000pt;}
.x5e_c00095{left:367.920000pt;}
.x6_c00095{left:372.000000pt;}
.x1a_c00095{left:379.920000pt;}
.x20_c00095{left:381.078667pt;}
.x3e_c00095{left:382.320000pt;}
.x11_c00095{left:383.280000pt;}
.x28_c00095{left:386.880000pt;}
.x42_c00095{left:389.280000pt;}
.x4e_c00095{left:391.440000pt;}
.x63_c00095{left:398.160000pt;}
.x21_c00095{left:400.944000pt;}
.x54_c00095{left:403.680000pt;}
.xb_c00095{left:405.840000pt;}
.x2f_c00095{left:406.800000pt;}
.x43_c00095{left:408.720000pt;}
.x29_c00095{left:410.160000pt;}
.x12_c00095{left:418.560000pt;}
.x34_c00095{left:420.480000pt;}
.x64_c00095{left:422.160000pt;}
.x3f_c00095{left:424.800000pt;}
.x5a_c00095{left:426.960000pt;}
.x5f_c00095{left:428.880000pt;}
.x55_c00095{left:430.080000pt;}
.x2a_c00095{left:431.520000pt;}
.xc_c00095{left:435.600000pt;}
.x61_c00095{left:438.960000pt;}
.x30_c00095{left:442.800000pt;}
.x35_c00095{left:449.760000pt;}
.x4f_c00095{left:452.400000pt;}
.x46_c00095{left:457.680000pt;}
.x5b_c00095{left:461.040000pt;}
.x2b_c00095{left:465.360000pt;}
.x56_c00095{left:468.000000pt;}
.x13_c00095{left:469.680000pt;}
.x1b_c00095{left:473.520000pt;}
.x36_c00095{left:478.560000pt;}
.x40_c00095{left:482.640000pt;}
.x47_c00095{left:485.760000pt;}
.x65_c00095{left:504.960000pt;}
.x5c_c00095{left:512.640000pt;}
.x66_c00095{left:516.240000pt;}
.x14_c00095{left:522.480000pt;}
.x41_c00095{left:523.920000pt;}
.x67_c00095{left:531.600000pt;}
.x2c_c00095{left:532.800000pt;}
.x68_c00095{left:563.760000pt;}
.x69_c00095{left:601.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m81_c00096{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);}
.m49_c00096{transform:matrix(0.014945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014945,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.026435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026435,0.000000,0.000000,0.250000,0,0);}
.m8b_c00096{transform:matrix(0.072945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072945,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.074420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074420,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.086202,-0.001207,0.003500,0.249976,0,0);-ms-transform:matrix(0.086202,-0.001207,0.003500,0.249976,0,0);-webkit-transform:matrix(0.086202,-0.001207,0.003500,0.249976,0,0);}
.m5a_c00096{transform:matrix(0.094780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094780,0.000000,0.000000,0.250000,0,0);}
.m63_c00096{transform:matrix(0.118995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118995,0.000000,0.000000,0.250000,0,0);}
.m5d_c00096{transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00096{transform:matrix(0.126995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126995,0.000000,0.000000,0.250000,0,0);}
.m21_c00096{transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.127980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127980,0.000000,0.000000,0.250000,0,0);}
.m7d_c00096{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);}
.m3c_c00096{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);}
.m52_c00096{transform:matrix(0.138045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138045,0.000000,0.000000,0.250000,0,0);}
.m96_c00096{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);}
.m4e_c00096{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);}
.m3f_c00096{transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00096{transform:matrix(0.140685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140685,0.000000,0.000000,0.250000,0,0);}
.mb8_c00096{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);}
.mbf_c00096{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);}
.mbb_c00096{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);}
.m1f_c00096{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);}
.m24_c00096{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);}
.m4c_c00096{transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{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);}
.m1b_c00096{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);}
.mb9_c00096{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);}
.m6_c00096{transform:matrix(0.155610,-0.002179,0.003500,0.249976,0,0);-ms-transform:matrix(0.155610,-0.002179,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155610,-0.002179,0.003500,0.249976,0,0);}
.m18_c00096{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);}
.m50_c00096{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);}
.m2b_c00096{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);}
.m14_c00096{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);}
.ma4_c00096{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);}
.m93_c00096{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);}
.m95_c00096{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);}
.m3b_c00096{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);}
.mb7_c00096{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);}
.mc2_c00096{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);}
.m6a_c00096{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);}
.m6d_c00096{transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161995,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{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);}
.m3d_c00096{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);}
.mac_c00096{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);}
.m7e_c00096{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);}
.m7c_c00096{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.mc5_c00096{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);}
.m69_c00096{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);}
.mb5_c00096{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);}
.m6e_c00096{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);}
.m8a_c00096{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);}
.m84_c00096{transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);}
.m10_c00096{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);}
.m1e_c00096{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);}
.m89_c00096{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);}
.m22_c00096{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);}
.mc1_c00096{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);}
.ma7_c00096{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);}
.m33_c00096{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.ma8_c00096{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);}
.m3e_c00096{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);}
.m68_c00096{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);}
.m5f_c00096{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);}
.m0_c00096{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);}
.mbc_c00096{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);}
.ma1_c00096{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);}
.m77_c00096{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);}
.m91_c00096{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);}
.m17_c00096{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);}
.mc3_c00096{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);}
.m80_c00096{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);}
.mcb_c00096{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);}
.mb4_c00096{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);}
.m2c_c00096{transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);}
.m2d_c00096{transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);}
.m90_c00096{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);}
.m35_c00096{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);}
.m6b_c00096{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);}
.m42_c00096{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);}
.m98_c00096{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);}
.mba_c00096{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);}
.mae_c00096{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);}
.m23_c00096{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);}
.m20_c00096{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);}
.m92_c00096{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);}
.m75_c00096{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);}
.mc4_c00096{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_c00096{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);}
.m1d_c00096{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);}
.m99_c00096{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);}
.mc7_c00096{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);}
.mc0_c00096{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_c00096{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);}
.me_c00096{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);}
.md_c00096{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);}
.ma5_c00096{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);}
.m97_c00096{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);}
.m44_c00096{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);}
.m34_c00096{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);}
.mf_c00096{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);}
.mad_c00096{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);}
.m9c_c00096{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);}
.mab_c00096{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);}
.m4b_c00096{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);}
.m6c_c00096{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);}
.m8f_c00096{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);}
.m79_c00096{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);}
.m59_c00096{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);}
.m11_c00096{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);}
.ma3_c00096{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);}
.ma0_c00096{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);}
.mb2_c00096{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);}
.m3a_c00096{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);}
.m15_c00096{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);}
.m9b_c00096{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);}
.m67_c00096{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);}
.ma9_c00096{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);}
.m4_c00096{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);}
.mca_c00096{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);}
.m25_c00096{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);}
.mcc_c00096{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);}
.m9f_c00096{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);}
.m7f_c00096{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);}
.m2e_c00096{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);}
.m13_c00096{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{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);}
.m45_c00096{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);}
.m31_c00096{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);}
.m72_c00096{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);}
.m27_c00096{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);}
.mc8_c00096{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);}
.m1c_c00096{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);}
.m71_c00096{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);}
.mb_c00096{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);}
.mc9_c00096{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);}
.m9a_c00096{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_c00096{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);}
.m9e_c00096{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);}
.m76_c00096{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);}
.m28_c00096{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);}
.m2f_c00096{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);}
.mbd_c00096{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);}
.m7b_c00096{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);}
.m94_c00096{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);}
.m51_c00096{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);}
.m60_c00096{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);}
.maf_c00096{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);}
.m4f_c00096{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);}
.m12_c00096{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);}
.m73_c00096{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);}
.m8c_c00096{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);}
.mb6_c00096{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);}
.m30_c00096{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);}
.m32_c00096{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);}
.m37_c00096{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);}
.m38_c00096{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);}
.m43_c00096{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m64_c00096{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);}
.mb0_c00096{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);}
.ma6_c00096{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);}
.mc6_c00096{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);}
.m5e_c00096{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);}
.ma2_c00096{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);}
.m8d_c00096{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);}
.m61_c00096{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m86_c00096{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);}
.m85_c00096{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);}
.m9d_c00096{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);}
.m88_c00096{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{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);}
.m65_c00096{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);}
.mb3_c00096{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m83_c00096{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);}
.m74_c00096{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);}
.m62_c00096{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m41_c00096{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m70_c00096{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);}
.m40_c00096{transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);}
.mb1_c00096{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);}
.m29_c00096{transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282085,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.298881,-0.004184,0.003500,0.249976,0,0);-ms-transform:matrix(0.298881,-0.004184,0.003500,0.249976,0,0);-webkit-transform:matrix(0.298881,-0.004184,0.003500,0.249976,0,0);}
.m2_c00096{transform:matrix(0.305395,-0.004276,0.003500,0.249976,0,0);-ms-transform:matrix(0.305395,-0.004276,0.003500,0.249976,0,0);-webkit-transform:matrix(0.305395,-0.004276,0.003500,0.249976,0,0);}
.m56_c00096{transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308455,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311370,0.000000,0.000000,0.250000,0,0);}
.m82_c00096{transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00096{transform:matrix(0.321795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321795,0.000000,0.000000,0.250000,0,0);}
.m87_c00096{transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);}
.m39_c00096{transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.339800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339800,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{transform:matrix(0.385515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385515,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.390165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390165,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{transform:matrix(0.409735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409735,0.000000,0.000000,0.250000,0,0);}
.m8e_c00096{transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.414049,-0.005797,0.003500,0.249976,0,0);-ms-transform:matrix(0.414049,-0.005797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.414049,-0.005797,0.003500,0.249976,0,0);}
.m58_c00096{transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.437830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437830,0.000000,0.000000,0.250000,0,0);}
.m78_c00096{transform:matrix(0.445565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445565,0.000000,0.000000,0.250000,0,0);}
.m66_c00096{transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491595,0.000000,0.000000,0.250000,0,0);}
.m6f_c00096{transform:matrix(1.000410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000410,0.000000,0.000000,0.250000,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;}
.fs0_c00096{font-size:51.450000px;}
.fs1_c00096{font-size:57.755659px;}
.fsc_c00096{font-size:61.950000px;}
.fsb_c00096{font-size:67.200000px;}
.fse_c00096{font-size:68.250000px;}
.fs10_c00096{font-size:69.300000px;}
.fs3_c00096{font-size:70.350000px;}
.fs4_c00096{font-size:71.400000px;}
.fsf_c00096{font-size:73.500000px;}
.fs6_c00096{font-size:75.600000px;}
.fs7_c00096{font-size:76.650000px;}
.fs5_c00096{font-size:79.800000px;}
.fs8_c00096{font-size:82.950000px;}
.fs2_c00096{font-size:88.200000px;}
.fs9_c00096{font-size:91.350000px;}
.fs11_c00096{font-size:94.500000px;}
.fsd_c00096{font-size:103.950000px;}
.fsa_c00096{font-size:108.150000px;}
.y0_c00096{bottom:0.000000px;}
.y53_c00096{bottom:224.428500px;}
.y52_c00096{bottom:224.764500px;}
.y51_c00096{bottom:225.451500px;}
.y50_c00096{bottom:226.425000px;}
.y4f_c00096{bottom:226.902000px;}
.y4e_c00096{bottom:227.196000px;}
.y4d_c00096{bottom:227.608500px;}
.y4c_c00096{bottom:247.632000px;}
.y4b_c00096{bottom:247.965000px;}
.y4a_c00096{bottom:248.505000px;}
.y49_c00096{bottom:249.105000px;}
.y48_c00096{bottom:249.508500px;}
.y47_c00096{bottom:250.162500px;}
.y46_c00096{bottom:250.558500px;}
.y45_c00096{bottom:271.198500px;}
.y44_c00096{bottom:293.334000px;}
.y43_c00096{bottom:294.054000px;}
.y42_c00096{bottom:294.328500px;}
.y41_c00096{bottom:294.948000px;}
.y40_c00096{bottom:295.260000px;}
.y3f_c00096{bottom:295.908000px;}
.y3e_c00096{bottom:296.190000px;}
.y3d_c00096{bottom:315.525000px;}
.y3c_c00096{bottom:316.365000px;}
.y3b_c00096{bottom:316.815000px;}
.y3a_c00096{bottom:317.292000px;}
.y39_c00096{bottom:318.154500px;}
.y38_c00096{bottom:318.838500px;}
.y37_c00096{bottom:319.411500px;}
.y36_c00096{bottom:337.849500px;}
.y35_c00096{bottom:338.238000px;}
.y34_c00096{bottom:338.470500px;}
.y33_c00096{bottom:338.710500px;}
.y32_c00096{bottom:339.204000px;}
.y31_c00096{bottom:339.565500px;}
.y30_c00096{bottom:339.957000px;}
.y2f_c00096{bottom:340.218000px;}
.y2e_c00096{bottom:340.740000px;}
.y2d_c00096{bottom:340.942500px;}
.y2c_c00096{bottom:341.182500px;}
.y2b_c00096{bottom:341.550000px;}
.y2a_c00096{bottom:362.926500px;}
.y29_c00096{bottom:385.273500px;}
.y28_c00096{bottom:408.105000px;}
.y27_c00096{bottom:429.849000px;}
.y26_c00096{bottom:451.447500px;}
.y25_c00096{bottom:451.936500px;}
.y24_c00096{bottom:451.987500px;}
.y23_c00096{bottom:452.142000px;}
.y22_c00096{bottom:452.635500px;}
.y21_c00096{bottom:452.988000px;}
.y20_c00096{bottom:453.159000px;}
.y1f_c00096{bottom:453.664500px;}
.y1e_c00096{bottom:454.053000px;}
.y1d_c00096{bottom:454.326000px;}
.y1c_c00096{bottom:454.683000px;}
.y1b_c00096{bottom:475.377000px;}
.y1a_c00096{bottom:499.140000px;}
.y19_c00096{bottom:522.409500px;}
.y18_c00096{bottom:544.291500px;}
.y17_c00096{bottom:566.619000px;}
.y16_c00096{bottom:586.267500px;}
.y12_c00096{bottom:607.501500px;}
.y13_c00096{bottom:609.243000px;}
.y14_c00096{bottom:609.855000px;}
.y15_c00096{bottom:610.414500px;}
.y11_c00096{bottom:633.498000px;}
.y10_c00096{bottom:655.116000px;}
.yf_c00096{bottom:678.720000px;}
.ye_c00096{bottom:701.746500px;}
.yd_c00096{bottom:724.411500px;}
.yc_c00096{bottom:747.279000px;}
.yb_c00096{bottom:769.942500px;}
.ya_c00096{bottom:792.250500px;}
.y9_c00096{bottom:814.956000px;}
.y8_c00096{bottom:860.023500px;}
.y2_c00096{bottom:921.241500px;}
.y3_c00096{bottom:921.904260px;}
.y4_c00096{bottom:922.762131px;}
.y1_c00096{bottom:923.266500px;}
.y5_c00096{bottom:923.748501px;}
.y6_c00096{bottom:924.499755px;}
.y7_c00096{bottom:926.181792px;}
.h2_c00096{height:51.450000px;}
.h3_c00096{height:57.755659px;}
.he_c00096{height:61.950000px;}
.hd_c00096{height:67.200000px;}
.h10_c00096{height:68.250000px;}
.h12_c00096{height:69.300000px;}
.h5_c00096{height:70.350000px;}
.h6_c00096{height:71.400000px;}
.h11_c00096{height:73.500000px;}
.h8_c00096{height:75.600000px;}
.h9_c00096{height:76.650000px;}
.h7_c00096{height:79.800000px;}
.ha_c00096{height:82.950000px;}
.h4_c00096{height:88.200000px;}
.hb_c00096{height:91.350000px;}
.h13_c00096{height:94.500000px;}
.hf_c00096{height:103.950000px;}
.hc_c00096{height:108.150000px;}
.h1_c00096{height:1005.000000px;}
.h0_c00096{height:1005.150000px;}
.w0_c00096{width:705.450000px;}
.w1_c00096{width:705.750000px;}
.x0_c00096{left:0.000000px;}
.x5f_c00096{left:39.148500px;}
.x59_c00096{left:40.498500px;}
.x53_c00096{left:46.978500px;}
.x46_c00096{left:106.135500px;}
.x4a_c00096{left:110.158500px;}
.x25_c00096{left:130.140000px;}
.x16_c00096{left:131.490000px;}
.xe_c00096{left:134.460000px;}
.x73_c00096{left:150.387000px;}
.x4f_c00096{left:153.358500px;}
.x3c_c00096{left:156.060000px;}
.x26_c00096{left:158.490000px;}
.x17_c00096{left:164.700000px;}
.x1e_c00096{left:166.860000px;}
.x66_c00096{left:170.250000px;}
.x6d_c00096{left:172.797000px;}
.x54_c00096{left:173.878500px;}
.x8_c00096{left:176.310000px;}
.x7c_c00096{left:178.057500px;}
.x60_c00096{left:180.628500px;}
.x81_c00096{left:184.785000px;}
.x6e_c00096{left:186.297000px;}
.x2e_c00096{left:187.380000px;}
.xf_c00096{left:190.890000px;}
.x85_c00096{left:194.574000px;}
.x18_c00096{left:196.560000px;}
.x67_c00096{left:200.536500px;}
.x5a_c00096{left:204.928500px;}
.x55_c00096{left:207.358500px;}
.x71_c00096{left:209.247000px;}
.x2f_c00096{left:211.410000px;}
.x1f_c00096{left:213.300000px;}
.x3d_c00096{left:214.920000px;}
.x6f_c00096{left:219.237000px;}
.x27_c00096{left:223.560000px;}
.x10_c00096{left:228.690000px;}
.x1_c00096{left:231.390000px;}
.x36_c00096{left:232.470000px;}
.x7d_c00096{left:235.003500px;}
.x2_c00096{left:237.402000px;}
.x72_c00096{left:240.567000px;}
.x19_c00096{left:242.460000px;}
.x68_c00096{left:243.690000px;}
.x28_c00096{left:245.430000px;}
.x50_c00096{left:247.858500px;}
.x20_c00096{left:249.750000px;}
.x47_c00096{left:251.266500px;}
.x37_c00096{left:255.960000px;}
.x41_c00096{left:261.360000px;}
.x65_c00096{left:264.328500px;}
.x82_c00096{left:265.572000px;}
.x29_c00096{left:266.760000px;}
.x56_c00096{left:269.998500px;}
.x80_c00096{left:273.780000px;}
.x9_c00096{left:276.750000px;}
.x30_c00096{left:280.530000px;}
.x3_c00096{left:284.742000px;}
.x7e_c00096{left:285.826500px;}
.x3e_c00096{left:287.550000px;}
.x76_c00096{left:289.573500px;}
.x21_c00096{left:290.790000px;}
.x38_c00096{left:291.870000px;}
.x83_c00096{left:296.610000px;}
.x2a_c00096{left:297.810000px;}
.x69_c00096{left:299.830500px;}
.x48_c00096{left:302.305500px;}
.xa_c00096{left:303.480000px;}
.x61_c00096{left:307.528500px;}
.x7f_c00096{left:308.715000px;}
.x11_c00096{left:310.230000px;}
.x3f_c00096{left:312.930000px;}
.x5b_c00096{left:314.278500px;}
.x1a_c00096{left:315.630000px;}
.x42_c00096{left:317.250000px;}
.x39_c00096{left:318.330000px;}
.x4b_c00096{left:323.728500px;}
.x31_c00096{left:325.620000px;}
.x2b_c00096{left:327.510000px;}
.x77_c00096{left:328.779000px;}
.x62_c00096{left:334.798500px;}
.x1b_c00096{left:337.230000px;}
.x12_c00096{left:341.280000px;}
.x84_c00096{left:342.775500px;}
.x4_c00096{left:346.018500px;}
.x49_c00096{left:348.985500px;}
.x32_c00096{left:351.270000px;}
.x22_c00096{left:352.620000px;}
.x43_c00096{left:355.590000px;}
.x6a_c00096{left:357.895500px;}
.x63_c00096{left:363.148500px;}
.x1c_c00096{left:364.230000px;}
.x40_c00096{left:369.360000px;}
.x3a_c00096{left:370.440000px;}
.x23_c00096{left:377.460000px;}
.x70_c00096{left:380.427000px;}
.x2c_c00096{left:383.940000px;}
.x86_c00096{left:388.963500px;}
.x57_c00096{left:390.148500px;}
.x5c_c00096{left:391.228500px;}
.x74_c00096{left:393.387000px;}
.xb_c00096{left:395.010000px;}
.x4c_c00096{left:397.438500px;}
.x13_c00096{left:400.410000px;}
.x58_c00096{left:407.698500px;}
.x33_c00096{left:409.590000px;}
.x6b_c00096{left:412.705500px;}
.x78_c00096{left:414.315000px;}
.x5_c00096{left:416.473500px;}
.x44_c00096{left:417.690000px;}
.x5d_c00096{left:420.388500px;}
.x3b_c00096{left:424.440000px;}
.x2d_c00096{left:427.140000px;}
.x24_c00096{left:429.030000px;}
.x64_c00096{left:431.458500px;}
.x14_c00096{left:433.890000px;}
.x1d_c00096{left:436.050000px;}
.x79_c00096{left:438.340500px;}
.x75_c00096{left:439.557000px;}
.x4d_c00096{left:451.978500px;}
.x15_c00096{left:453.060000px;}
.x51_c00096{left:455.758500px;}
.x34_c00096{left:457.650000px;}
.x7a_c00096{left:461.563500px;}
.xc_c00096{left:464.940000px;}
.x6_c00096{left:470.134500px;}
.x45_c00096{left:471.420000px;}
.x5e_c00096{left:477.358500px;}
.x6c_c00096{left:489.651000px;}
.x7b_c00096{left:500.464500px;}
.x4e_c00096{left:511.648500px;}
.x52_c00096{left:515.968500px;}
.x35_c00096{left:517.050000px;}
.xd_c00096{left:535.680000px;}
.x7_c00096{left:590.280000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.fs0_c00096{font-size:45.733333pt;}
.fs1_c00096{font-size:51.338364pt;}
.fsc_c00096{font-size:55.066667pt;}
.fsb_c00096{font-size:59.733333pt;}
.fse_c00096{font-size:60.666667pt;}
.fs10_c00096{font-size:61.600000pt;}
.fs3_c00096{font-size:62.533333pt;}
.fs4_c00096{font-size:63.466667pt;}
.fsf_c00096{font-size:65.333333pt;}
.fs6_c00096{font-size:67.200000pt;}
.fs7_c00096{font-size:68.133333pt;}
.fs5_c00096{font-size:70.933333pt;}
.fs8_c00096{font-size:73.733333pt;}
.fs2_c00096{font-size:78.400000pt;}
.fs9_c00096{font-size:81.200000pt;}
.fs11_c00096{font-size:84.000000pt;}
.fsd_c00096{font-size:92.400000pt;}
.fsa_c00096{font-size:96.133333pt;}
.y0_c00096{bottom:0.000000pt;}
.y53_c00096{bottom:199.492000pt;}
.y52_c00096{bottom:199.790667pt;}
.y51_c00096{bottom:200.401333pt;}
.y50_c00096{bottom:201.266667pt;}
.y4f_c00096{bottom:201.690667pt;}
.y4e_c00096{bottom:201.952000pt;}
.y4d_c00096{bottom:202.318667pt;}
.y4c_c00096{bottom:220.117333pt;}
.y4b_c00096{bottom:220.413333pt;}
.y4a_c00096{bottom:220.893333pt;}
.y49_c00096{bottom:221.426667pt;}
.y48_c00096{bottom:221.785333pt;}
.y47_c00096{bottom:222.366667pt;}
.y46_c00096{bottom:222.718667pt;}
.y45_c00096{bottom:241.065333pt;}
.y44_c00096{bottom:260.741333pt;}
.y43_c00096{bottom:261.381333pt;}
.y42_c00096{bottom:261.625333pt;}
.y41_c00096{bottom:262.176000pt;}
.y40_c00096{bottom:262.453333pt;}
.y3f_c00096{bottom:263.029333pt;}
.y3e_c00096{bottom:263.280000pt;}
.y3d_c00096{bottom:280.466667pt;}
.y3c_c00096{bottom:281.213333pt;}
.y3b_c00096{bottom:281.613333pt;}
.y3a_c00096{bottom:282.037333pt;}
.y39_c00096{bottom:282.804000pt;}
.y38_c00096{bottom:283.412000pt;}
.y37_c00096{bottom:283.921333pt;}
.y36_c00096{bottom:300.310667pt;}
.y35_c00096{bottom:300.656000pt;}
.y34_c00096{bottom:300.862667pt;}
.y33_c00096{bottom:301.076000pt;}
.y32_c00096{bottom:301.514667pt;}
.y31_c00096{bottom:301.836000pt;}
.y30_c00096{bottom:302.184000pt;}
.y2f_c00096{bottom:302.416000pt;}
.y2e_c00096{bottom:302.880000pt;}
.y2d_c00096{bottom:303.060000pt;}
.y2c_c00096{bottom:303.273333pt;}
.y2b_c00096{bottom:303.600000pt;}
.y2a_c00096{bottom:322.601333pt;}
.y29_c00096{bottom:342.465333pt;}
.y28_c00096{bottom:362.760000pt;}
.y27_c00096{bottom:382.088000pt;}
.y26_c00096{bottom:401.286667pt;}
.y25_c00096{bottom:401.721333pt;}
.y24_c00096{bottom:401.766667pt;}
.y23_c00096{bottom:401.904000pt;}
.y22_c00096{bottom:402.342667pt;}
.y21_c00096{bottom:402.656000pt;}
.y20_c00096{bottom:402.808000pt;}
.y1f_c00096{bottom:403.257333pt;}
.y1e_c00096{bottom:403.602667pt;}
.y1d_c00096{bottom:403.845333pt;}
.y1c_c00096{bottom:404.162667pt;}
.y1b_c00096{bottom:422.557333pt;}
.y1a_c00096{bottom:443.680000pt;}
.y19_c00096{bottom:464.364000pt;}
.y18_c00096{bottom:483.814667pt;}
.y17_c00096{bottom:503.661333pt;}
.y16_c00096{bottom:521.126667pt;}
.y12_c00096{bottom:540.001333pt;}
.y13_c00096{bottom:541.549333pt;}
.y14_c00096{bottom:542.093333pt;}
.y15_c00096{bottom:542.590667pt;}
.y11_c00096{bottom:563.109333pt;}
.y10_c00096{bottom:582.325333pt;}
.yf_c00096{bottom:603.306667pt;}
.ye_c00096{bottom:623.774667pt;}
.yd_c00096{bottom:643.921333pt;}
.yc_c00096{bottom:664.248000pt;}
.yb_c00096{bottom:684.393333pt;}
.ya_c00096{bottom:704.222667pt;}
.y9_c00096{bottom:724.405333pt;}
.y8_c00096{bottom:764.465333pt;}
.y2_c00096{bottom:818.881333pt;}
.y3_c00096{bottom:819.470453pt;}
.y4_c00096{bottom:820.233005pt;}
.y1_c00096{bottom:820.681333pt;}
.y5_c00096{bottom:821.109779pt;}
.y6_c00096{bottom:821.777560pt;}
.y7_c00096{bottom:823.272704pt;}
.h2_c00096{height:45.733333pt;}
.h3_c00096{height:51.338364pt;}
.he_c00096{height:55.066667pt;}
.hd_c00096{height:59.733333pt;}
.h10_c00096{height:60.666667pt;}
.h12_c00096{height:61.600000pt;}
.h5_c00096{height:62.533333pt;}
.h6_c00096{height:63.466667pt;}
.h11_c00096{height:65.333333pt;}
.h8_c00096{height:67.200000pt;}
.h9_c00096{height:68.133333pt;}
.h7_c00096{height:70.933333pt;}
.ha_c00096{height:73.733333pt;}
.h4_c00096{height:78.400000pt;}
.hb_c00096{height:81.200000pt;}
.h13_c00096{height:84.000000pt;}
.hf_c00096{height:92.400000pt;}
.hc_c00096{height:96.133333pt;}
.h1_c00096{height:893.333333pt;}
.h0_c00096{height:893.466667pt;}
.w0_c00096{width:627.066667pt;}
.w1_c00096{width:627.333333pt;}
.x0_c00096{left:0.000000pt;}
.x5f_c00096{left:34.798667pt;}
.x59_c00096{left:35.998667pt;}
.x53_c00096{left:41.758667pt;}
.x46_c00096{left:94.342667pt;}
.x4a_c00096{left:97.918667pt;}
.x25_c00096{left:115.680000pt;}
.x16_c00096{left:116.880000pt;}
.xe_c00096{left:119.520000pt;}
.x73_c00096{left:133.677333pt;}
.x4f_c00096{left:136.318667pt;}
.x3c_c00096{left:138.720000pt;}
.x26_c00096{left:140.880000pt;}
.x17_c00096{left:146.400000pt;}
.x1e_c00096{left:148.320000pt;}
.x66_c00096{left:151.333333pt;}
.x6d_c00096{left:153.597333pt;}
.x54_c00096{left:154.558667pt;}
.x8_c00096{left:156.720000pt;}
.x7c_c00096{left:158.273333pt;}
.x60_c00096{left:160.558667pt;}
.x81_c00096{left:164.253333pt;}
.x6e_c00096{left:165.597333pt;}
.x2e_c00096{left:166.560000pt;}
.xf_c00096{left:169.680000pt;}
.x85_c00096{left:172.954667pt;}
.x18_c00096{left:174.720000pt;}
.x67_c00096{left:178.254667pt;}
.x5a_c00096{left:182.158667pt;}
.x55_c00096{left:184.318667pt;}
.x71_c00096{left:185.997333pt;}
.x2f_c00096{left:187.920000pt;}
.x1f_c00096{left:189.600000pt;}
.x3d_c00096{left:191.040000pt;}
.x6f_c00096{left:194.877333pt;}
.x27_c00096{left:198.720000pt;}
.x10_c00096{left:203.280000pt;}
.x1_c00096{left:205.680000pt;}
.x36_c00096{left:206.640000pt;}
.x7d_c00096{left:208.892000pt;}
.x2_c00096{left:211.024000pt;}
.x72_c00096{left:213.837333pt;}
.x19_c00096{left:215.520000pt;}
.x68_c00096{left:216.613333pt;}
.x28_c00096{left:218.160000pt;}
.x50_c00096{left:220.318667pt;}
.x20_c00096{left:222.000000pt;}
.x47_c00096{left:223.348000pt;}
.x37_c00096{left:227.520000pt;}
.x41_c00096{left:232.320000pt;}
.x65_c00096{left:234.958667pt;}
.x82_c00096{left:236.064000pt;}
.x29_c00096{left:237.120000pt;}
.x56_c00096{left:239.998667pt;}
.x80_c00096{left:243.360000pt;}
.x9_c00096{left:246.000000pt;}
.x30_c00096{left:249.360000pt;}
.x3_c00096{left:253.104000pt;}
.x7e_c00096{left:254.068000pt;}
.x3e_c00096{left:255.600000pt;}
.x76_c00096{left:257.398667pt;}
.x21_c00096{left:258.480000pt;}
.x38_c00096{left:259.440000pt;}
.x83_c00096{left:263.653333pt;}
.x2a_c00096{left:264.720000pt;}
.x69_c00096{left:266.516000pt;}
.x48_c00096{left:268.716000pt;}
.xa_c00096{left:269.760000pt;}
.x61_c00096{left:273.358667pt;}
.x7f_c00096{left:274.413333pt;}
.x11_c00096{left:275.760000pt;}
.x3f_c00096{left:278.160000pt;}
.x5b_c00096{left:279.358667pt;}
.x1a_c00096{left:280.560000pt;}
.x42_c00096{left:282.000000pt;}
.x39_c00096{left:282.960000pt;}
.x4b_c00096{left:287.758667pt;}
.x31_c00096{left:289.440000pt;}
.x2b_c00096{left:291.120000pt;}
.x77_c00096{left:292.248000pt;}
.x62_c00096{left:297.598667pt;}
.x1b_c00096{left:299.760000pt;}
.x12_c00096{left:303.360000pt;}
.x84_c00096{left:304.689333pt;}
.x4_c00096{left:307.572000pt;}
.x49_c00096{left:310.209333pt;}
.x32_c00096{left:312.240000pt;}
.x22_c00096{left:313.440000pt;}
.x43_c00096{left:316.080000pt;}
.x6a_c00096{left:318.129333pt;}
.x63_c00096{left:322.798667pt;}
.x1c_c00096{left:323.760000pt;}
.x40_c00096{left:328.320000pt;}
.x3a_c00096{left:329.280000pt;}
.x23_c00096{left:335.520000pt;}
.x70_c00096{left:338.157333pt;}
.x2c_c00096{left:341.280000pt;}
.x86_c00096{left:345.745333pt;}
.x57_c00096{left:346.798667pt;}
.x5c_c00096{left:347.758667pt;}
.x74_c00096{left:349.677333pt;}
.xb_c00096{left:351.120000pt;}
.x4c_c00096{left:353.278667pt;}
.x13_c00096{left:355.920000pt;}
.x58_c00096{left:362.398667pt;}
.x33_c00096{left:364.080000pt;}
.x6b_c00096{left:366.849333pt;}
.x78_c00096{left:368.280000pt;}
.x5_c00096{left:370.198667pt;}
.x44_c00096{left:371.280000pt;}
.x5d_c00096{left:373.678667pt;}
.x3b_c00096{left:377.280000pt;}
.x2d_c00096{left:379.680000pt;}
.x24_c00096{left:381.360000pt;}
.x64_c00096{left:383.518667pt;}
.x14_c00096{left:385.680000pt;}
.x1d_c00096{left:387.600000pt;}
.x79_c00096{left:389.636000pt;}
.x75_c00096{left:390.717333pt;}
.x4d_c00096{left:401.758667pt;}
.x15_c00096{left:402.720000pt;}
.x51_c00096{left:405.118667pt;}
.x34_c00096{left:406.800000pt;}
.x7a_c00096{left:410.278667pt;}
.xc_c00096{left:413.280000pt;}
.x6_c00096{left:417.897333pt;}
.x45_c00096{left:419.040000pt;}
.x5e_c00096{left:424.318667pt;}
.x6c_c00096{left:435.245333pt;}
.x7b_c00096{left:444.857333pt;}
.x4e_c00096{left:454.798667pt;}
.x52_c00096{left:458.638667pt;}
.x35_c00096{left:459.600000pt;}
.xd_c00096{left:476.160000pt;}
.x7_c00096{left:524.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.me9_c00097{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);}
.me8_c00097{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);}
.me4_c00097{transform:matrix(0.091180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091180,0.000000,0.000000,0.250000,0,0);}
.mb2_c00097{transform:matrix(0.094472,0.000756,-0.002000,0.249992,0,0);-ms-transform:matrix(0.094472,0.000756,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.094472,0.000756,-0.002000,0.249992,0,0);}
.m79_c00097{transform:matrix(0.100635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100635,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{transform:matrix(0.123775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123775,0.000000,0.000000,0.250000,0,0);}
.m75_c00097{transform:matrix(0.128655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128655,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.133430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133430,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144415,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00097{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.m6f_c00097{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);}
.m22_c00097{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);}
.mb6_c00097{transform:matrix(0.157030,0.001256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157030,0.001256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157030,0.001256,-0.002000,0.249992,0,0);}
.m5a_c00097{transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);}
.m71_c00097{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);}
.m9a_c00097{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);}
.md3_c00097{transform:matrix(0.158490,0.001268,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158490,0.001268,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158490,0.001268,-0.002000,0.249992,0,0);}
.m48_c00097{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);}
.mce_c00097{transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);}
.m70_c00097{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.m73_c00097{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);}
.mda_c00097{transform:matrix(0.162405,0.001299,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162405,0.001299,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162405,0.001299,-0.002000,0.249992,0,0);}
.m51_c00097{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);}
.m72_c00097{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);}
.m4e_c00097{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);}
.md9_c00097{transform:matrix(0.163620,0.001309,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163620,0.001309,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163620,0.001309,-0.002000,0.249992,0,0);}
.md_c00097{transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);}
.mb7_c00097{transform:matrix(0.164790,0.001318,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164790,0.001318,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164790,0.001318,-0.002000,0.249992,0,0);}
.m7e_c00097{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);}
.ma8_c00097{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);}
.mcb_c00097{transform:matrix(0.166840,0.001335,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166840,0.001335,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166840,0.001335,-0.002000,0.249992,0,0);}
.m3c_c00097{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.mb4_c00097{transform:matrix(0.167490,0.001340,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167490,0.001340,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167490,0.001340,-0.002000,0.249992,0,0);}
.mad_c00097{transform:matrix(0.167835,0.001343,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167835,0.001343,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167835,0.001343,-0.002000,0.249992,0,0);}
.maf_c00097{transform:matrix(0.168995,0.001352,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168995,0.001352,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168995,0.001352,-0.002000,0.249992,0,0);}
.mc9_c00097{transform:matrix(0.169365,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169365,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169365,0.001355,-0.002000,0.249992,0,0);}
.m7f_c00097{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);}
.mc3_c00097{transform:matrix(0.170120,0.001361,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170120,0.001361,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170120,0.001361,-0.002000,0.249992,0,0);}
.m5d_c00097{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);}
.mbb_c00097{transform:matrix(0.170860,0.001367,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170860,0.001367,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170860,0.001367,-0.002000,0.249992,0,0);}
.mf_c00097{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);}
.m36_c00097{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);}
.m52_c00097{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);}
.ma0_c00097{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);}
.m8a_c00097{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);}
.m8d_c00097{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);}
.m7c_c00097{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);}
.m39_c00097{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);}
.mae_c00097{transform:matrix(0.175749,0.001406,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175749,0.001406,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175749,0.001406,-0.002000,0.249992,0,0);}
.m84_c00097{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);}
.m57_c00097{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{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);}
.m7d_c00097{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);}
.m21_c00097{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);}
.m62_c00097{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);}
.m60_c00097{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);}
.ma5_c00097{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);}
.m8b_c00097{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);}
.m49_c00097{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);}
.mb3_c00097{transform:matrix(0.179744,0.001438,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179744,0.001438,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179744,0.001438,-0.002000,0.249992,0,0);}
.m69_c00097{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);}
.m33_c00097{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);}
.m1b_c00097{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.ma7_c00097{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);}
.m91_c00097{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);}
.m4d_c00097{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);}
.me_c00097{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);}
.m7b_c00097{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);}
.ma_c00097{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);}
.mb5_c00097{transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);}
.m30_c00097{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);}
.m14_c00097{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);}
.m3a_c00097{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);}
.m74_c00097{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);}
.mc6_c00097{transform:matrix(0.184334,0.001475,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184334,0.001475,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184334,0.001475,-0.002000,0.249992,0,0);}
.m61_c00097{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);}
.mac_c00097{transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);}
.m15_c00097{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);}
.m58_c00097{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);}
.m80_c00097{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);}
.m78_c00097{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);}
.m4f_c00097{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);}
.md5_c00097{transform:matrix(0.185869,0.001487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185869,0.001487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185869,0.001487,-0.002000,0.249992,0,0);}
.m82_c00097{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);}
.m67_c00097{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);}
.m9_c00097{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);}
.m77_c00097{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);}
.m16_c00097{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);}
.m88_c00097{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);}
.m3d_c00097{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);}
.m7a_c00097{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);}
.m1d_c00097{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);}
.mc7_c00097{transform:matrix(0.187419,0.001499,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187419,0.001499,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187419,0.001499,-0.002000,0.249992,0,0);}
.ma9_c00097{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);}
.m42_c00097{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);}
.ma3_c00097{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);}
.mb8_c00097{transform:matrix(0.189209,0.001514,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189209,0.001514,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189209,0.001514,-0.002000,0.249992,0,0);}
.m11_c00097{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);}
.m19_c00097{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);}
.m94_c00097{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);}
.m34_c00097{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);}
.m97_c00097{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);}
.mdc_c00097{transform:matrix(0.191904,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191904,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191904,0.001535,-0.002000,0.249992,0,0);}
.mc2_c00097{transform:matrix(0.191964,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191964,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191964,0.001536,-0.002000,0.249992,0,0);}
.m8e_c00097{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);}
.ma2_c00097{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);}
.md0_c00097{transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);}
.m9d_c00097{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);}
.md7_c00097{transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);}
.m1c_c00097{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);}
.m5f_c00097{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);}
.m9f_c00097{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);}
.m54_c00097{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);}
.md1_c00097{transform:matrix(0.195204,0.001562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195204,0.001562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195204,0.001562,-0.002000,0.249992,0,0);}
.m32_c00097{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);}
.m9b_c00097{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);}
.m47_c00097{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);}
.m2b_c00097{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);}
.m2f_c00097{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);}
.ma4_c00097{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);}
.m9e_c00097{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);}
.m18_c00097{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);}
.m20_c00097{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);}
.m93_c00097{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);}
.m56_c00097{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);}
.mb0_c00097{transform:matrix(0.198809,0.001590,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198809,0.001590,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198809,0.001590,-0.002000,0.249992,0,0);}
.ma1_c00097{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);}
.maa_c00097{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);}
.m63_c00097{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);}
.md6_c00097{transform:matrix(0.200104,0.001601,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200104,0.001601,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200104,0.001601,-0.002000,0.249992,0,0);}
.m92_c00097{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);}
.m3b_c00097{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);}
.m37_c00097{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);}
.m59_c00097{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);}
.m8c_c00097{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);}
.mcc_c00097{transform:matrix(0.202584,0.001621,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202584,0.001621,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202584,0.001621,-0.002000,0.249992,0,0);}
.mc5_c00097{transform:matrix(0.203183,0.001625,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203183,0.001625,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203183,0.001625,-0.002000,0.249992,0,0);}
.m6a_c00097{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);}
.m2c_c00097{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);}
.m17_c00097{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);}
.mbe_c00097{transform:matrix(0.203948,0.001632,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203948,0.001632,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203948,0.001632,-0.002000,0.249992,0,0);}
.m89_c00097{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);}
.m68_c00097{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);}
.m55_c00097{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00097{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);}
.m2a_c00097{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);}
.m64_c00097{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);}
.m3_c00097{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);}
.mab_c00097{transform:matrix(0.206453,0.001652,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206453,0.001652,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206453,0.001652,-0.002000,0.249992,0,0);}
.m6c_c00097{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);}
.mba_c00097{transform:matrix(0.206613,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206613,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206613,0.001653,-0.002000,0.249992,0,0);}
.m6b_c00097{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.mcd_c00097{transform:matrix(0.207098,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207098,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207098,0.001657,-0.002000,0.249992,0,0);}
.m28_c00097{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);}
.m31_c00097{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);}
.mdb_c00097{transform:matrix(0.208008,0.001664,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208008,0.001664,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208008,0.001664,-0.002000,0.249992,0,0);}
.m10_c00097{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);}
.m1f_c00097{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);}
.m2e_c00097{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);}
.m85_c00097{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);}
.m29_c00097{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);}
.mcf_c00097{transform:matrix(0.210853,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210853,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210853,0.001687,-0.002000,0.249992,0,0);}
.m4c_c00097{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);}
.mbc_c00097{transform:matrix(0.211753,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211753,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211753,0.001694,-0.002000,0.249992,0,0);}
.md4_c00097{transform:matrix(0.211888,0.001695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211888,0.001695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211888,0.001695,-0.002000,0.249992,0,0);}
.mdd_c00097{transform:matrix(0.213583,0.001709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213583,0.001709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213583,0.001709,-0.002000,0.249992,0,0);}
.m2d_c00097{transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);}
.m98_c00097{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);}
.mbd_c00097{transform:matrix(0.214773,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214773,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214773,0.001718,-0.002000,0.249992,0,0);}
.m96_c00097{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);}
.m83_c00097{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);}
.m90_c00097{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);}
.m9c_c00097{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);}
.m4a_c00097{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);}
.m8f_c00097{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);}
.m35_c00097{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);}
.m76_c00097{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);}
.mc4_c00097{transform:matrix(0.223728,0.001790,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223728,0.001790,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223728,0.001790,-0.002000,0.249992,0,0);}
.m86_c00097{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m81_c00097{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);}
.m38_c00097{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);}
.m65_c00097{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);}
.mc8_c00097{transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);}
.m1a_c00097{transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);}
.me6_c00097{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);}
.mca_c00097{transform:matrix(0.230413,0.001843,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230413,0.001843,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230413,0.001843,-0.002000,0.249992,0,0);}
.m26_c00097{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);}
.m4b_c00097{transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);}
.mb9_c00097{transform:matrix(0.234592,0.001877,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234592,0.001877,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234592,0.001877,-0.002000,0.249992,0,0);}
.mb1_c00097{transform:matrix(0.235922,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235922,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235922,0.001887,-0.002000,0.249992,0,0);}
.ma6_c00097{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.mc1_c00097{transform:matrix(0.238692,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238692,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238692,0.001910,-0.002000,0.249992,0,0);}
.m1e_c00097{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);}
.m87_c00097{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);}
.m45_c00097{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);}
.md2_c00097{transform:matrix(0.246032,0.001968,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246032,0.001968,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246032,0.001968,-0.002000,0.249992,0,0);}
.mdf_c00097{transform:matrix(0.248772,0.001990,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248772,0.001990,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248772,0.001990,-0.002000,0.249992,0,0);}
.m5c_c00097{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);}
.m66_c00097{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);}
.m44_c00097{transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);}
.m6d_c00097{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);}
.mde_c00097{transform:matrix(0.258212,0.002066,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258212,0.002066,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258212,0.002066,-0.002000,0.249992,0,0);}
.m27_c00097{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);}
.m24_c00097{transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);}
.me1_c00097{transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);}
.mbf_c00097{transform:matrix(0.269551,0.002156,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269551,0.002156,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269551,0.002156,-0.002000,0.249992,0,0);}
.m25_c00097{transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);}
.m41_c00097{transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280480,0.000000,0.000000,0.250000,0,0);}
.med_c00097{transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);}
.m6e_c00097{transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);}
.m99_c00097{transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313670,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);}
.me5_c00097{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.323485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323485,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{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);}
.m6_c00097{transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358455,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);}
.mc0_c00097{transform:matrix(0.370663,0.002965,-0.002000,0.249992,0,0);-ms-transform:matrix(0.370663,0.002965,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.370663,0.002965,-0.002000,0.249992,0,0);}
.m0_c00097{transform:matrix(0.389875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389875,0.000000,0.000000,0.250000,0,0);}
.md8_c00097{transform:matrix(0.390303,0.003122,-0.002000,0.249992,0,0);-ms-transform:matrix(0.390303,0.003122,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.390303,0.003122,-0.002000,0.249992,0,0);}
.mec_c00097{transform:matrix(0.394080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394080,0.000000,0.000000,0.250000,0,0);}
.mea_c00097{transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);}
.me2_c00097{transform:matrix(0.444555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444555,0.000000,0.000000,0.250000,0,0);}
.me0_c00097{transform:matrix(0.525960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525960,0.000000,0.000000,0.250000,0,0);}
.mee_c00097{transform:matrix(0.531195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531195,0.000000,0.000000,0.250000,0,0);}
.m95_c00097{transform:matrix(0.557860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557860,0.000000,0.000000,0.250000,0,0);}
.meb_c00097{transform:matrix(0.558225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558225,0.000000,0.000000,0.250000,0,0);}
.me3_c00097{transform:matrix(0.563340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563340,0.000000,0.000000,0.250000,0,0);}
.me7_c00097{transform:matrix(0.589475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589475,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.745740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745740,0.000000,0.000000,0.250000,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;}
.fs10_c00097{font-size:27.300000px;}
.fs11_c00097{font-size:33.600000px;}
.fsc_c00097{font-size:48.301546px;}
.fsd_c00097{font-size:50.401613px;}
.fsf_c00097{font-size:51.450000px;}
.fse_c00097{font-size:52.501680px;}
.fsb_c00097{font-size:54.601747px;}
.fsa_c00097{font-size:61.950000px;}
.fs5_c00097{font-size:65.100000px;}
.fs0_c00097{font-size:66.150000px;}
.fs4_c00097{font-size:69.300000px;}
.fs3_c00097{font-size:70.350000px;}
.fs9_c00097{font-size:71.400000px;}
.fs8_c00097{font-size:72.450000px;}
.fs6_c00097{font-size:75.600000px;}
.fs7_c00097{font-size:77.700000px;}
.fs2_c00097{font-size:80.850000px;}
.fs1_c00097{font-size:97.650000px;}
.y0_c00097{bottom:0.000000px;}
.y4f_c00097{bottom:101.635500px;}
.y4e_c00097{bottom:111.139500px;}
.y4d_c00097{bottom:113.931000px;}
.y4c_c00097{bottom:154.548192px;}
.y4b_c00097{bottom:154.718880px;}
.y4a_c00097{bottom:155.079120px;}
.y49_c00097{bottom:155.290956px;}
.y48_c00097{bottom:156.017808px;}
.y47_c00097{bottom:156.260604px;}
.y46_c00097{bottom:156.495756px;}
.y45_c00097{bottom:156.640152px;}
.y44_c00097{bottom:156.913848px;}
.y43_c00097{bottom:157.156620px;}
.y42_c00097{bottom:157.426620px;}
.y41_c00097{bottom:157.869480px;}
.y40_c00097{bottom:158.017560px;}
.y3f_c00097{bottom:158.503644px;}
.y3e_c00097{bottom:158.758956px;}
.y3d_c00097{bottom:172.463136px;}
.y3c_c00097{bottom:172.695876px;}
.y3b_c00097{bottom:172.957884px;}
.y3a_c00097{bottom:173.246400px;}
.y39_c00097{bottom:173.518332px;}
.y38_c00097{bottom:173.637420px;}
.y37_c00097{bottom:173.761092px;}
.y36_c00097{bottom:173.890800px;}
.y35_c00097{bottom:174.193812px;}
.y34_c00097{bottom:174.698616px;}
.y33_c00097{bottom:175.133304px;}
.y32_c00097{bottom:175.677120px;}
.y31_c00097{bottom:175.936560px;}
.y30_c00097{bottom:176.150868px;}
.y2f_c00097{bottom:176.576916px;}
.y2e_c00097{bottom:191.397744px;}
.y2d_c00097{bottom:191.563680px;}
.y2c_c00097{bottom:191.971980px;}
.y2b_c00097{bottom:192.614232px;}
.y2a_c00097{bottom:192.911604px;}
.y29_c00097{bottom:193.258512px;}
.y28_c00097{bottom:193.829172px;}
.y27_c00097{bottom:194.062812px;}
.y26_c00097{bottom:194.399832px;}
.y25_c00097{bottom:208.260624px;}
.y24_c00097{bottom:208.696932px;}
.y23_c00097{bottom:208.843812px;}
.y22_c00097{bottom:209.290896px;}
.y21_c00097{bottom:209.515320px;}
.y20_c00097{bottom:209.778972px;}
.y1f_c00097{bottom:209.884356px;}
.y1e_c00097{bottom:210.474600px;}
.y1d_c00097{bottom:210.638760px;}
.y1c_c00097{bottom:210.844128px;}
.y1b_c00097{bottom:211.122636px;}
.y1a_c00097{bottom:211.254408px;}
.y19_c00097{bottom:211.530900px;}
.y18_c00097{bottom:211.680000px;}
.y17_c00097{bottom:263.790000px;}
.y16_c00097{bottom:295.530000px;}
.y15_c00097{bottom:318.636000px;}
.y14_c00097{bottom:341.365500px;}
.y13_c00097{bottom:363.418500px;}
.y12_c00097{bottom:386.530500px;}
.y11_c00097{bottom:409.305000px;}
.y10_c00097{bottom:431.520000px;}
.yf_c00097{bottom:454.851000px;}
.ye_c00097{bottom:478.440000px;}
.yd_c00097{bottom:501.031500px;}
.yc_c00097{bottom:523.608000px;}
.yb_c00097{bottom:546.019500px;}
.ya_c00097{bottom:569.329500px;}
.y9_c00097{bottom:591.739500px;}
.y8_c00097{bottom:614.049000px;}
.y7_c00097{bottom:637.249500px;}
.y6_c00097{bottom:659.790000px;}
.y5_c00097{bottom:683.013000px;}
.y4_c00097{bottom:705.226500px;}
.y3_c00097{bottom:727.992000px;}
.y2_c00097{bottom:764.604000px;}
.y1_c00097{bottom:805.950000px;}
.h12_c00097{height:27.300000px;}
.h13_c00097{height:33.600000px;}
.he_c00097{height:48.301546px;}
.hf_c00097{height:50.401613px;}
.h11_c00097{height:51.450000px;}
.h10_c00097{height:52.501680px;}
.hd_c00097{height:54.601747px;}
.hc_c00097{height:61.950000px;}
.h7_c00097{height:65.100000px;}
.h2_c00097{height:66.150000px;}
.h6_c00097{height:69.300000px;}
.h5_c00097{height:70.350000px;}
.hb_c00097{height:71.400000px;}
.ha_c00097{height:72.450000px;}
.h8_c00097{height:75.600000px;}
.h9_c00097{height:77.700000px;}
.h4_c00097{height:80.850000px;}
.h3_c00097{height:97.650000px;}
.h0_c00097{height:1008.450000px;}
.h1_c00097{height:1008.750000px;}
.w0_c00097{width:676.890000px;}
.w1_c00097{width:677.250000px;}
.x0_c00097{left:0.000000px;}
.x7c_c00097{left:140.304420px;}
.x59_c00097{left:145.800000px;}
.x72_c00097{left:153.547500px;}
.x4f_c00097{left:164.430000px;}
.x3e_c00097{left:166.050000px;}
.x7d_c00097{left:168.368520px;}
.x73_c00097{left:172.185000px;}
.x37_c00097{left:174.420000px;}
.x17_c00097{left:176.580000px;}
.x7_c00097{left:178.200000px;}
.x7e_c00097{left:187.822896px;}
.x50_c00097{left:198.180000px;}
.x3f_c00097{left:202.230000px;}
.x61_c00097{left:204.120000px;}
.x74_c00097{left:206.746500px;}
.x6c_c00097{left:208.710000px;}
.x80_c00097{left:210.820236px;}
.x2a_c00097{left:212.490000px;}
.x18_c00097{left:214.110000px;}
.x25_c00097{left:216.270000px;}
.x32_c00097{left:218.700000px;}
.x5a_c00097{left:220.320000px;}
.x75_c00097{left:223.218000px;}
.x8_c00097{left:227.070000px;}
.x67_c00097{left:231.390000px;}
.x51_c00097{left:234.090000px;}
.x1e_c00097{left:236.250000px;}
.x88_c00097{left:239.125020px;}
.x62_c00097{left:240.300000px;}
.x4b_c00097{left:241.380000px;}
.x2b_c00097{left:243.540000px;}
.x46_c00097{left:244.890000px;}
.x11_c00097{left:248.400000px;}
.x19_c00097{left:251.370000px;}
.x33_c00097{left:256.230000px;}
.x9_c00097{left:258.390000px;}
.x63_c00097{left:260.280000px;}
.x69_c00097{left:263.790000px;}
.x38_c00097{left:267.300000px;}
.x52_c00097{left:268.380000px;}
.x5b_c00097{left:269.730000px;}
.x30_c00097{left:270.810000px;}
.x55_c00097{left:273.240000px;}
.x40_c00097{left:275.670000px;}
.x1a_c00097{left:276.750000px;}
.x1f_c00097{left:278.100000px;}
.x2c_c00097{left:282.960000px;}
.x34_c00097{left:284.040000px;}
.x12_c00097{left:286.470000px;}
.x89_c00097{left:288.294624px;}
.x1_c00097{left:289.710000px;}
.x6d_c00097{left:291.330000px;}
.x39_c00097{left:297.270000px;}
.x5c_c00097{left:299.430000px;}
.x26_c00097{left:301.860000px;}
.x5_c00097{left:304.020000px;}
.xa_c00097{left:308.340000px;}
.x6e_c00097{left:309.690000px;}
.x35_c00097{left:318.330000px;}
.x1b_c00097{left:320.490000px;}
.x3a_c00097{left:322.380000px;}
.x13_c00097{left:328.590000px;}
.xb_c00097{left:336.150000px;}
.x27_c00097{left:340.470000px;}
.x7f_c00097{left:342.529440px;}
.x2_c00097{left:344.250000px;}
.x8a_c00097{left:345.265668px;}
.x20_c00097{left:346.680000px;}
.x81_c00097{left:348.499644px;}
.x4c_c00097{left:350.460000px;}
.x64_c00097{left:351.540000px;}
.x53_c00097{left:356.400000px;}
.x14_c00097{left:358.290000px;}
.x3b_c00097{left:363.420000px;}
.x31_c00097{left:365.040000px;}
.x47_c00097{left:367.470000px;}
.x41_c00097{left:369.360000px;}
.x2d_c00097{left:372.060000px;}
.x21_c00097{left:373.140000px;}
.x28_c00097{left:375.030000px;}
.x1c_c00097{left:376.920000px;}
.x76_c00097{left:378.003000px;}
.x68_c00097{left:384.750000px;}
.x77_c00097{left:391.176000px;}
.x42_c00097{left:392.850000px;}
.x5d_c00097{left:394.740000px;}
.x15_c00097{left:399.330000px;}
.x82_c00097{left:404.662200px;}
.x3_c00097{left:406.620000px;}
.x48_c00097{left:407.700000px;}
.x4d_c00097{left:410.130000px;}
.x6a_c00097{left:413.370000px;}
.x3c_c00097{left:416.610000px;}
.x8b_c00097{left:417.920592px;}
.x43_c00097{left:420.390000px;}
.x6_c00097{left:422.550000px;}
.x78_c00097{left:424.132500px;}
.xc_c00097{left:425.250000px;}
.x36_c00097{left:426.330000px;}
.x29_c00097{left:427.410000px;}
.x2e_c00097{left:428.490000px;}
.x5e_c00097{left:429.840000px;}
.x6b_c00097{left:430.920000px;}
.x22_c00097{left:434.160000px;}
.x65_c00097{left:436.050000px;}
.x3d_c00097{left:437.670000px;}
.x56_c00097{left:440.370000px;}
.x4_c00097{left:444.690000px;}
.x2f_c00097{left:450.630000px;}
.x16_c00097{left:451.710000px;}
.x83_c00097{left:452.751816px;}
.x23_c00097{left:454.680000px;}
.x49_c00097{left:456.300000px;}
.x44_c00097{left:459.270000px;}
.x4e_c00097{left:460.890000px;}
.x84_c00097{left:466.523208px;}
.xd_c00097{left:473.040000px;}
.x85_c00097{left:479.721600px;}
.x1d_c00097{left:481.950000px;}
.x66_c00097{left:483.570000px;}
.x6f_c00097{left:485.730000px;}
.x5f_c00097{left:489.780000px;}
.x57_c00097{left:491.940000px;}
.x24_c00097{left:498.150000px;}
.x4a_c00097{left:500.040000px;}
.x79_c00097{left:508.071000px;}
.x70_c00097{left:510.030000px;}
.xe_c00097{left:513.540000px;}
.x45_c00097{left:514.890000px;}
.x8f_c00097{left:516.240000px;}
.x7a_c00097{left:526.431000px;}
.x54_c00097{left:527.580000px;}
.x60_c00097{left:530.550000px;}
.xf_c00097{left:533.250000px;}
.x90_c00097{left:536.220000px;}
.x58_c00097{left:538.380000px;}
.x86_c00097{left:542.089608px;}
.x8c_c00097{left:549.105036px;}
.x10_c00097{left:571.860000px;}
.x95_c00097{left:576.450000px;}
.x71_c00097{left:577.800000px;}
.x7b_c00097{left:580.969500px;}
.x8d_c00097{left:589.072212px;}
.x87_c00097{left:597.182676px;}
.x96_c00097{left:604.800000px;}
.x8e_c00097{left:607.970556px;}
.x91_c00097{left:631.260000px;}
.x97_c00097{left:632.610000px;}
.x92_c00097{left:639.090000px;}
.x98_c00097{left:647.460000px;}
.x93_c00097{left:666.900000px;}
.x94_c00097{left:673.380000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
.fs10_c00097{font-size:24.266667pt;}
.fs11_c00097{font-size:29.866667pt;}
.fsc_c00097{font-size:42.934707pt;}
.fsd_c00097{font-size:44.801434pt;}
.fsf_c00097{font-size:45.733333pt;}
.fse_c00097{font-size:46.668160pt;}
.fsb_c00097{font-size:48.534886pt;}
.fsa_c00097{font-size:55.066667pt;}
.fs5_c00097{font-size:57.866667pt;}
.fs0_c00097{font-size:58.800000pt;}
.fs4_c00097{font-size:61.600000pt;}
.fs3_c00097{font-size:62.533333pt;}
.fs9_c00097{font-size:63.466667pt;}
.fs8_c00097{font-size:64.400000pt;}
.fs6_c00097{font-size:67.200000pt;}
.fs7_c00097{font-size:69.066667pt;}
.fs2_c00097{font-size:71.866667pt;}
.fs1_c00097{font-size:86.800000pt;}
.y0_c00097{bottom:0.000000pt;}
.y4f_c00097{bottom:90.342667pt;}
.y4e_c00097{bottom:98.790667pt;}
.y4d_c00097{bottom:101.272000pt;}
.y4c_c00097{bottom:137.376171pt;}
.y4b_c00097{bottom:137.527893pt;}
.y4a_c00097{bottom:137.848107pt;}
.y49_c00097{bottom:138.036405pt;}
.y48_c00097{bottom:138.682496pt;}
.y47_c00097{bottom:138.898315pt;}
.y46_c00097{bottom:139.107339pt;}
.y45_c00097{bottom:139.235691pt;}
.y44_c00097{bottom:139.478976pt;}
.y43_c00097{bottom:139.694773pt;}
.y42_c00097{bottom:139.934773pt;}
.y41_c00097{bottom:140.328427pt;}
.y40_c00097{bottom:140.460053pt;}
.y3f_c00097{bottom:140.892128pt;}
.y3e_c00097{bottom:141.119072pt;}
.y3d_c00097{bottom:153.300565pt;}
.y3c_c00097{bottom:153.507445pt;}
.y3b_c00097{bottom:153.740341pt;}
.y3a_c00097{bottom:153.996800pt;}
.y39_c00097{bottom:154.238517pt;}
.y38_c00097{bottom:154.344373pt;}
.y37_c00097{bottom:154.454304pt;}
.y36_c00097{bottom:154.569600pt;}
.y35_c00097{bottom:154.838944pt;}
.y34_c00097{bottom:155.287659pt;}
.y33_c00097{bottom:155.674048pt;}
.y32_c00097{bottom:156.157440pt;}
.y31_c00097{bottom:156.388053pt;}
.y30_c00097{bottom:156.578549pt;}
.y2f_c00097{bottom:156.957259pt;}
.y2e_c00097{bottom:170.131328pt;}
.y2d_c00097{bottom:170.278827pt;}
.y2c_c00097{bottom:170.641760pt;}
.y2b_c00097{bottom:171.212651pt;}
.y2a_c00097{bottom:171.476981pt;}
.y29_c00097{bottom:171.785344pt;}
.y28_c00097{bottom:172.292597pt;}
.y27_c00097{bottom:172.500277pt;}
.y26_c00097{bottom:172.799851pt;}
.y25_c00097{bottom:185.120555pt;}
.y24_c00097{bottom:185.508384pt;}
.y23_c00097{bottom:185.638944pt;}
.y22_c00097{bottom:186.036352pt;}
.y21_c00097{bottom:186.235840pt;}
.y20_c00097{bottom:186.470197pt;}
.y1f_c00097{bottom:186.563872pt;}
.y1e_c00097{bottom:187.088533pt;}
.y1d_c00097{bottom:187.234453pt;}
.y1c_c00097{bottom:187.417003pt;}
.y1b_c00097{bottom:187.664565pt;}
.y1a_c00097{bottom:187.781696pt;}
.y19_c00097{bottom:188.027467pt;}
.y18_c00097{bottom:188.160000pt;}
.y17_c00097{bottom:234.480000pt;}
.y16_c00097{bottom:262.693333pt;}
.y15_c00097{bottom:283.232000pt;}
.y14_c00097{bottom:303.436000pt;}
.y13_c00097{bottom:323.038667pt;}
.y12_c00097{bottom:343.582667pt;}
.y11_c00097{bottom:363.826667pt;}
.y10_c00097{bottom:383.573333pt;}
.yf_c00097{bottom:404.312000pt;}
.ye_c00097{bottom:425.280000pt;}
.yd_c00097{bottom:445.361333pt;}
.yc_c00097{bottom:465.429333pt;}
.yb_c00097{bottom:485.350667pt;}
.ya_c00097{bottom:506.070667pt;}
.y9_c00097{bottom:525.990667pt;}
.y8_c00097{bottom:545.821333pt;}
.y7_c00097{bottom:566.444000pt;}
.y6_c00097{bottom:586.480000pt;}
.y5_c00097{bottom:607.122667pt;}
.y4_c00097{bottom:626.868000pt;}
.y3_c00097{bottom:647.104000pt;}
.y2_c00097{bottom:679.648000pt;}
.y1_c00097{bottom:716.400000pt;}
.h12_c00097{height:24.266667pt;}
.h13_c00097{height:29.866667pt;}
.he_c00097{height:42.934707pt;}
.hf_c00097{height:44.801434pt;}
.h11_c00097{height:45.733333pt;}
.h10_c00097{height:46.668160pt;}
.hd_c00097{height:48.534886pt;}
.hc_c00097{height:55.066667pt;}
.h7_c00097{height:57.866667pt;}
.h2_c00097{height:58.800000pt;}
.h6_c00097{height:61.600000pt;}
.h5_c00097{height:62.533333pt;}
.hb_c00097{height:63.466667pt;}
.ha_c00097{height:64.400000pt;}
.h8_c00097{height:67.200000pt;}
.h9_c00097{height:69.066667pt;}
.h4_c00097{height:71.866667pt;}
.h3_c00097{height:86.800000pt;}
.h0_c00097{height:896.400000pt;}
.h1_c00097{height:896.666667pt;}
.w0_c00097{width:601.680000pt;}
.w1_c00097{width:602.000000pt;}
.x0_c00097{left:0.000000pt;}
.x7c_c00097{left:124.715040pt;}
.x59_c00097{left:129.600000pt;}
.x72_c00097{left:136.486667pt;}
.x4f_c00097{left:146.160000pt;}
.x3e_c00097{left:147.600000pt;}
.x7d_c00097{left:149.660907pt;}
.x73_c00097{left:153.053333pt;}
.x37_c00097{left:155.040000pt;}
.x17_c00097{left:156.960000pt;}
.x7_c00097{left:158.400000pt;}
.x7e_c00097{left:166.953685pt;}
.x50_c00097{left:176.160000pt;}
.x3f_c00097{left:179.760000pt;}
.x61_c00097{left:181.440000pt;}
.x74_c00097{left:183.774667pt;}
.x6c_c00097{left:185.520000pt;}
.x80_c00097{left:187.395765pt;}
.x2a_c00097{left:188.880000pt;}
.x18_c00097{left:190.320000pt;}
.x25_c00097{left:192.240000pt;}
.x32_c00097{left:194.400000pt;}
.x5a_c00097{left:195.840000pt;}
.x75_c00097{left:198.416000pt;}
.x8_c00097{left:201.840000pt;}
.x67_c00097{left:205.680000pt;}
.x51_c00097{left:208.080000pt;}
.x1e_c00097{left:210.000000pt;}
.x88_c00097{left:212.555573pt;}
.x62_c00097{left:213.600000pt;}
.x4b_c00097{left:214.560000pt;}
.x2b_c00097{left:216.480000pt;}
.x46_c00097{left:217.680000pt;}
.x11_c00097{left:220.800000pt;}
.x19_c00097{left:223.440000pt;}
.x33_c00097{left:227.760000pt;}
.x9_c00097{left:229.680000pt;}
.x63_c00097{left:231.360000pt;}
.x69_c00097{left:234.480000pt;}
.x38_c00097{left:237.600000pt;}
.x52_c00097{left:238.560000pt;}
.x5b_c00097{left:239.760000pt;}
.x30_c00097{left:240.720000pt;}
.x55_c00097{left:242.880000pt;}
.x40_c00097{left:245.040000pt;}
.x1a_c00097{left:246.000000pt;}
.x1f_c00097{left:247.200000pt;}
.x2c_c00097{left:251.520000pt;}
.x34_c00097{left:252.480000pt;}
.x12_c00097{left:254.640000pt;}
.x89_c00097{left:256.261888pt;}
.x1_c00097{left:257.520000pt;}
.x6d_c00097{left:258.960000pt;}
.x39_c00097{left:264.240000pt;}
.x5c_c00097{left:266.160000pt;}
.x26_c00097{left:268.320000pt;}
.x5_c00097{left:270.240000pt;}
.xa_c00097{left:274.080000pt;}
.x6e_c00097{left:275.280000pt;}
.x35_c00097{left:282.960000pt;}
.x1b_c00097{left:284.880000pt;}
.x3a_c00097{left:286.560000pt;}
.x13_c00097{left:292.080000pt;}
.xb_c00097{left:298.800000pt;}
.x27_c00097{left:302.640000pt;}
.x7f_c00097{left:304.470613pt;}
.x2_c00097{left:306.000000pt;}
.x8a_c00097{left:306.902816pt;}
.x20_c00097{left:308.160000pt;}
.x81_c00097{left:309.777461pt;}
.x4c_c00097{left:311.520000pt;}
.x64_c00097{left:312.480000pt;}
.x53_c00097{left:316.800000pt;}
.x14_c00097{left:318.480000pt;}
.x3b_c00097{left:323.040000pt;}
.x31_c00097{left:324.480000pt;}
.x47_c00097{left:326.640000pt;}
.x41_c00097{left:328.320000pt;}
.x2d_c00097{left:330.720000pt;}
.x21_c00097{left:331.680000pt;}
.x28_c00097{left:333.360000pt;}
.x1c_c00097{left:335.040000pt;}
.x76_c00097{left:336.002667pt;}
.x68_c00097{left:342.000000pt;}
.x77_c00097{left:347.712000pt;}
.x42_c00097{left:349.200000pt;}
.x5d_c00097{left:350.880000pt;}
.x15_c00097{left:354.960000pt;}
.x82_c00097{left:359.699733pt;}
.x3_c00097{left:361.440000pt;}
.x48_c00097{left:362.400000pt;}
.x4d_c00097{left:364.560000pt;}
.x6a_c00097{left:367.440000pt;}
.x3c_c00097{left:370.320000pt;}
.x8b_c00097{left:371.484971pt;}
.x43_c00097{left:373.680000pt;}
.x6_c00097{left:375.600000pt;}
.x78_c00097{left:377.006667pt;}
.xc_c00097{left:378.000000pt;}
.x36_c00097{left:378.960000pt;}
.x29_c00097{left:379.920000pt;}
.x2e_c00097{left:380.880000pt;}
.x5e_c00097{left:382.080000pt;}
.x6b_c00097{left:383.040000pt;}
.x22_c00097{left:385.920000pt;}
.x65_c00097{left:387.600000pt;}
.x3d_c00097{left:389.040000pt;}
.x56_c00097{left:391.440000pt;}
.x4_c00097{left:395.280000pt;}
.x2f_c00097{left:400.560000pt;}
.x16_c00097{left:401.520000pt;}
.x83_c00097{left:402.446059pt;}
.x23_c00097{left:404.160000pt;}
.x49_c00097{left:405.600000pt;}
.x44_c00097{left:408.240000pt;}
.x4e_c00097{left:409.680000pt;}
.x84_c00097{left:414.687296pt;}
.xd_c00097{left:420.480000pt;}
.x85_c00097{left:426.419200pt;}
.x1d_c00097{left:428.400000pt;}
.x66_c00097{left:429.840000pt;}
.x6f_c00097{left:431.760000pt;}
.x5f_c00097{left:435.360000pt;}
.x57_c00097{left:437.280000pt;}
.x24_c00097{left:442.800000pt;}
.x4a_c00097{left:444.480000pt;}
.x79_c00097{left:451.618667pt;}
.x70_c00097{left:453.360000pt;}
.xe_c00097{left:456.480000pt;}
.x45_c00097{left:457.680000pt;}
.x8f_c00097{left:458.880000pt;}
.x7a_c00097{left:467.938667pt;}
.x54_c00097{left:468.960000pt;}
.x60_c00097{left:471.600000pt;}
.xf_c00097{left:474.000000pt;}
.x90_c00097{left:476.640000pt;}
.x58_c00097{left:478.560000pt;}
.x86_c00097{left:481.857429pt;}
.x8c_c00097{left:488.093365pt;}
.x10_c00097{left:508.320000pt;}
.x95_c00097{left:512.400000pt;}
.x71_c00097{left:513.600000pt;}
.x7b_c00097{left:516.417333pt;}
.x8d_c00097{left:523.619744pt;}
.x87_c00097{left:530.829045pt;}
.x96_c00097{left:537.600000pt;}
.x8e_c00097{left:540.418272pt;}
.x91_c00097{left:561.120000pt;}
.x97_c00097{left:562.320000pt;}
.x92_c00097{left:568.080000pt;}
.x98_c00097{left:575.520000pt;}
.x93_c00097{left:592.800000pt;}
.x94_c00097{left:598.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_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;}
.m4a_c00098{transform:matrix(0.007245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007245,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.mb5_c00098{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);}
.m95_c00098{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);}
.m49_c00098{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);}
.m68_c00098{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);}
.mc2_c00098{transform:matrix(0.027903,0.000363,-0.003250,0.249979,0,0);-ms-transform:matrix(0.027903,0.000363,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.027903,0.000363,-0.003250,0.249979,0,0);}
.mb6_c00098{transform:matrix(0.038977,0.000507,-0.003250,0.249979,0,0);-ms-transform:matrix(0.038977,0.000507,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.038977,0.000507,-0.003250,0.249979,0,0);}
.mce_c00098{transform:matrix(0.061540,0.000800,-0.003250,0.249979,0,0);-ms-transform:matrix(0.061540,0.000800,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.061540,0.000800,-0.003250,0.249979,0,0);}
.m93_c00098{transform:matrix(0.072245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072245,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.110840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);}
.ma2_c00098{transform:matrix(0.127840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127840,0.000000,0.000000,0.250000,0,0);}
.mbf_c00098{transform:matrix(0.138843,0.001805,-0.003250,0.249979,0,0);-ms-transform:matrix(0.138843,0.001805,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.138843,0.001805,-0.003250,0.249979,0,0);}
.m4b_c00098{transform:matrix(0.141085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141085,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.143735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143735,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{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);}
.m9d_c00098{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);}
.m14_c00098{transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);}
.mda_c00098{transform:matrix(0.153112,0.001990,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153112,0.001990,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153112,0.001990,-0.003250,0.249979,0,0);}
.m1b_c00098{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);}
.md0_c00098{transform:matrix(0.157362,0.002046,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157362,0.002046,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157362,0.002046,-0.003250,0.249979,0,0);}
.ma3_c00098{transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{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);}
.mc6_c00098{transform:matrix(0.163146,0.002121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163146,0.002121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163146,0.002121,-0.003250,0.249979,0,0);}
.m4_c00098{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.mba_c00098{transform:matrix(0.164251,0.002135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164251,0.002135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164251,0.002135,-0.003250,0.249979,0,0);}
.mb8_c00098{transform:matrix(0.166191,0.002160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166191,0.002160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166191,0.002160,-0.003250,0.249979,0,0);}
.m1f_c00098{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);}
.m2b_c00098{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);}
.mbc_c00098{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);}
.m50_c00098{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);}
.m56_c00098{transform:matrix(0.173190,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173190,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173190,0.001905,-0.002750,0.249985,0,0);}
.mc3_c00098{transform:matrix(0.173500,0.002256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173500,0.002256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173500,0.002256,-0.003250,0.249979,0,0);}
.me4_c00098{transform:matrix(0.173555,0.002256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173555,0.002256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173555,0.002256,-0.003250,0.249979,0,0);}
.m94_c00098{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);}
.m9_c00098{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);}
.m10_c00098{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);}
.m34_c00098{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);}
.m5e_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);}
.m82_c00098{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);}
.m9f_c00098{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{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);}
.m8_c00098{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);}
.m41_c00098{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);}
.mc5_c00098{transform:matrix(0.179310,0.002331,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179310,0.002331,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179310,0.002331,-0.003250,0.249979,0,0);}
.md_c00098{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);}
.m6f_c00098{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);}
.m3f_c00098{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);}
.mc9_c00098{transform:matrix(0.180725,0.002349,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180725,0.002349,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180725,0.002349,-0.003250,0.249979,0,0);}
.m21_c00098{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);}
.m7b_c00098{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);}
.me2_c00098{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);}
.mc_c00098{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);}
.m38_c00098{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);}
.mbe_c00098{transform:matrix(0.183045,0.002380,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183045,0.002380,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183045,0.002380,-0.003250,0.249979,0,0);}
.md9_c00098{transform:matrix(0.183085,0.002380,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183085,0.002380,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183085,0.002380,-0.003250,0.249979,0,0);}
.me_c00098{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);}
.me3_c00098{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);}
.ma8_c00098{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);}
.m48_c00098{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);}
.m0_c00098{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);}
.m7c_c00098{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);}
.md5_c00098{transform:matrix(0.187714,0.002440,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187714,0.002440,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187714,0.002440,-0.003250,0.249979,0,0);}
.m43_c00098{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);}
.me6_c00098{transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);}
.m25_c00098{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);}
.mb7_c00098{transform:matrix(0.188999,0.002457,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188999,0.002457,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188999,0.002457,-0.003250,0.249979,0,0);}
.m2a_c00098{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);}
.m85_c00098{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);}
.m23_c00098{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);}
.mc4_c00098{transform:matrix(0.192009,0.002496,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192009,0.002496,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192009,0.002496,-0.003250,0.249979,0,0);}
.ma4_c00098{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);}
.md4_c00098{transform:matrix(0.193224,0.002512,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193224,0.002512,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193224,0.002512,-0.003250,0.249979,0,0);}
.m11_c00098{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{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);}
.m8e_c00098{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);}
.mc1_c00098{transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);}
.m19_c00098{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);}
.m91_c00098{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);}
.m92_c00098{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);}
.m3_c00098{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);}
.m7_c00098{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);}
.md1_c00098{transform:matrix(0.196898,0.002560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196898,0.002560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196898,0.002560,-0.003250,0.249979,0,0);}
.me0_c00098{transform:matrix(0.197138,0.002563,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197138,0.002563,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197138,0.002563,-0.003250,0.249979,0,0);}
.m7f_c00098{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);}
.md2_c00098{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);}
.m31_c00098{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);}
.m7a_c00098{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);}
.m83_c00098{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);}
.m69_c00098{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);}
.mf_c00098{transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{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);}
.m88_c00098{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);}
.ma6_c00098{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);}
.mad_c00098{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);}
.m22_c00098{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);}
.m37_c00098{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);}
.m74_c00098{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);}
.m3b_c00098{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);}
.m58_c00098{transform:matrix(0.204123,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204123,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204123,0.002245,-0.002750,0.249985,0,0);}
.m51_c00098{transform:matrix(0.204313,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204313,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204313,0.002247,-0.002750,0.249985,0,0);}
.m7e_c00098{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);}
.m87_c00098{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);}
.m29_c00098{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);}
.m1d_c00098{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);}
.m80_c00098{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);}
.m17_c00098{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);}
.mdb_c00098{transform:matrix(0.206198,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206198,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206198,0.002681,-0.003250,0.249979,0,0);}
.m81_c00098{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);}
.m77_c00098{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);}
.mb9_c00098{transform:matrix(0.207672,0.002700,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207672,0.002700,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207672,0.002700,-0.003250,0.249979,0,0);}
.m16_c00098{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);}
.m6e_c00098{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);}
.m42_c00098{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);}
.mae_c00098{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_c00098{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);}
.m9b_c00098{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);}
.md3_c00098{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);}
.mee_c00098{transform:matrix(0.212320,0.002548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212320,0.002548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212320,0.002548,-0.003000,0.249982,0,0);}
.m2e_c00098{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);}
.m75_c00098{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);}
.m36_c00098{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);}
.mab_c00098{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);}
.m71_c00098{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);}
.m7d_c00098{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);}
.ma_c00098{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);}
.m13_c00098{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);}
.m2f_c00098{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);}
.mcc_c00098{transform:matrix(0.217107,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217107,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217107,0.002822,-0.003250,0.249979,0,0);}
.mcd_c00098{transform:matrix(0.218317,0.002838,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218317,0.002838,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218317,0.002838,-0.003250,0.249979,0,0);}
.m1c_c00098{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);}
.m8f_c00098{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);}
.m40_c00098{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);}
.ma1_c00098{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{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);}
.mc8_c00098{transform:matrix(0.220756,0.002870,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220756,0.002870,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220756,0.002870,-0.003250,0.249979,0,0);}
.mbb_c00098{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);}
.ma9_c00098{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);}
.mbd_c00098{transform:matrix(0.222801,0.002896,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222801,0.002896,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222801,0.002896,-0.003250,0.249979,0,0);}
.m1_c00098{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);}
.m20_c00098{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);}
.ma7_c00098{transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{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);}
.mdc_c00098{transform:matrix(0.227156,0.002953,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227156,0.002953,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227156,0.002953,-0.003250,0.249979,0,0);}
.m5f_c00098{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{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);}
.m28_c00098{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);}
.m86_c00098{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);}
.m4e_c00098{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);}
.maa_c00098{transform:matrix(0.232130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232130,0.000000,0.000000,0.250000,0,0);}
.mb2_c00098{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);}
.mcf_c00098{transform:matrix(0.233175,0.003031,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233175,0.003031,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233175,0.003031,-0.003250,0.249979,0,0);}
.m54_c00098{transform:matrix(0.233816,0.002572,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233816,0.002572,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233816,0.002572,-0.002750,0.249985,0,0);}
.m98_c00098{transform:matrix(0.233855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233855,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{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);}
.ma5_c00098{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);}
.m15_c00098{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);}
.m8c_c00098{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);}
.m84_c00098{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);}
.m4d_c00098{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);}
.m32_c00098{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);}
.m3d_c00098{transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{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);}
.mb4_c00098{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);}
.m4c_c00098{transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{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);}
.mac_c00098{transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.m78_c00098{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{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);}
.mb0_c00098{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);}
.m47_c00098{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);}
.ma0_c00098{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);}
.me1_c00098{transform:matrix(0.247484,0.003217,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247484,0.003217,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247484,0.003217,-0.003250,0.249979,0,0);}
.mca_c00098{transform:matrix(0.249264,0.003240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249264,0.003240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249264,0.003240,-0.003250,0.249979,0,0);}
.m46_c00098{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);}
.m8b_c00098{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.md8_c00098{transform:matrix(0.250444,0.003256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250444,0.003256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250444,0.003256,-0.003250,0.249979,0,0);}
.m76_c00098{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);}
.mb1_c00098{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);}
.maf_c00098{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);}
.m12_c00098{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);}
.m64_c00098{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);}
.m72_c00098{transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260170,0.000000,0.000000,0.250000,0,0);}
.mdf_c00098{transform:matrix(0.260713,0.003389,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260713,0.003389,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260713,0.003389,-0.003250,0.249979,0,0);}
.mcb_c00098{transform:matrix(0.261473,0.003399,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261473,0.003399,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261473,0.003399,-0.003250,0.249979,0,0);}
.m5d_c00098{transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263045,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{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);}
.mdd_c00098{transform:matrix(0.265123,0.003447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265123,0.003447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265123,0.003447,-0.003250,0.249979,0,0);}
.m35_c00098{transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.269125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269125,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269470,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{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);}
.mb3_c00098{transform:matrix(0.283220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283220,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{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);}
.m63_c00098{transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);}
.mc0_c00098{transform:matrix(0.297495,0.003867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297495,0.003867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297495,0.003867,-0.003250,0.249979,0,0);}
.m97_c00098{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);}
.m57_c00098{transform:matrix(0.308461,0.003393,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308461,0.003393,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308461,0.003393,-0.002750,0.249985,0,0);}
.m90_c00098{transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.311331,0.003425,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311331,0.003425,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311331,0.003425,-0.002750,0.249985,0,0);}
.m4f_c00098{transform:matrix(0.317455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317455,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317790,0.000000,0.000000,0.250000,0,0);}
.me7_c00098{transform:matrix(0.320523,0.004167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.320523,0.004167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.320523,0.004167,-0.003250,0.249979,0,0);}
.mde_c00098{transform:matrix(0.321693,0.004182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321693,0.004182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321693,0.004182,-0.003250,0.249979,0,0);}
.m39_c00098{transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332085,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.337900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337900,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);}
.me8_c00098{transform:matrix(0.348231,0.004527,-0.003250,0.249979,0,0);-ms-transform:matrix(0.348231,0.004527,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.348231,0.004527,-0.003250,0.249979,0,0);}
.mc7_c00098{transform:matrix(0.351755,0.004573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351755,0.004573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351755,0.004573,-0.003250,0.249979,0,0);}
.me5_c00098{transform:matrix(0.353450,0.004595,-0.003250,0.249979,0,0);-ms-transform:matrix(0.353450,0.004595,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.353450,0.004595,-0.003250,0.249979,0,0);}
.m6a_c00098{transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);}
.me9_c00098{transform:matrix(0.401786,0.005223,-0.003250,0.249979,0,0);-ms-transform:matrix(0.401786,0.005223,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.401786,0.005223,-0.003250,0.249979,0,0);}
.m96_c00098{transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);}
.med_c00098{transform:matrix(0.428369,0.005140,-0.003000,0.249982,0,0);-ms-transform:matrix(0.428369,0.005140,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.428369,0.005140,-0.003000,0.249982,0,0);}
.m61_c00098{transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);}
.md6_c00098{transform:matrix(0.463016,0.006019,-0.003250,0.249979,0,0);-ms-transform:matrix(0.463016,0.006019,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.463016,0.006019,-0.003250,0.249979,0,0);}
.mea_c00098{transform:matrix(0.508443,0.006101,-0.003000,0.249982,0,0);-ms-transform:matrix(0.508443,0.006101,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.508443,0.006101,-0.003000,0.249982,0,0);}
.md7_c00098{transform:matrix(0.601979,0.007826,-0.003250,0.249979,0,0);-ms-transform:matrix(0.601979,0.007826,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.601979,0.007826,-0.003250,0.249979,0,0);}
.m59_c00098{transform:matrix(0.621875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621875,0.000000,0.000000,0.250000,0,0);}
.mec_c00098{transform:matrix(0.665537,0.007986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.665537,0.007986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.665537,0.007986,-0.003000,0.249982,0,0);}
.m65_c00098{transform:matrix(0.714100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714100,0.000000,0.000000,0.250000,0,0);}
.meb_c00098{transform:matrix(0.842139,0.010106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.842139,0.010106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.842139,0.010106,-0.003000,0.249982,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;}
.fsd_c00098{font-size:53.554525px;}
.fse_c00098{font-size:55.654702px;}
.fsa_c00098{font-size:60.900000px;}
.fsc_c00098{font-size:61.955235px;}
.fsb_c00098{font-size:63.000000px;}
.fs6_c00098{font-size:67.200000px;}
.fs7_c00098{font-size:67.204065px;}
.fs9_c00098{font-size:68.250000px;}
.fs3_c00098{font-size:69.300000px;}
.fs4_c00098{font-size:71.400000px;}
.fs1_c00098{font-size:72.450000px;}
.fs2_c00098{font-size:73.500000px;}
.fs5_c00098{font-size:74.550000px;}
.fs0_c00098{font-size:75.600000px;}
.fs8_c00098{font-size:87.150000px;}
.fsf_c00098{font-size:91.356577px;}
.y0_c00098{bottom:0.000000px;}
.y91_c00098{bottom:99.246774px;}
.y90_c00098{bottom:99.607872px;}
.y8f_c00098{bottom:101.771328px;}
.y8e_c00098{bottom:103.967346px;}
.y8d_c00098{bottom:104.763000px;}
.y8c_c00098{bottom:145.891896px;}
.y8b_c00098{bottom:149.060702px;}
.y8a_c00098{bottom:149.964588px;}
.y89_c00098{bottom:151.296906px;}
.y88_c00098{bottom:151.874765px;}
.y87_c00098{bottom:166.439793px;}
.y86_c00098{bottom:166.882788px;}
.y85_c00098{bottom:167.670252px;}
.y84_c00098{bottom:168.263394px;}
.y83_c00098{bottom:168.959936px;}
.y82_c00098{bottom:169.220676px;}
.y81_c00098{bottom:169.494204px;}
.y80_c00098{bottom:170.090096px;}
.y7f_c00098{bottom:170.776364px;}
.y7e_c00098{bottom:171.817628px;}
.y7d_c00098{bottom:172.264677px;}
.y7c_c00098{bottom:172.895951px;}
.y7b_c00098{bottom:173.154020px;}
.y7a_c00098{bottom:173.703767px;}
.y79_c00098{bottom:174.151577px;}
.y78_c00098{bottom:185.340243px;}
.y77_c00098{bottom:185.939103px;}
.y76_c00098{bottom:186.636204px;}
.y75_c00098{bottom:187.983225px;}
.y74_c00098{bottom:188.713866px;}
.y73_c00098{bottom:189.383021px;}
.y72_c00098{bottom:190.790261px;}
.y71_c00098{bottom:190.962305px;}
.y70_c00098{bottom:192.034149px;}
.y6f_c00098{bottom:193.863977px;}
.y6e_c00098{bottom:194.528552px;}
.y6d_c00098{bottom:195.435231px;}
.y6c_c00098{bottom:196.688396px;}
.y6b_c00098{bottom:198.371475px;}
.y6a_c00098{bottom:199.263480px;}
.y69_c00098{bottom:203.490759px;}
.y68_c00098{bottom:203.708672px;}
.y67_c00098{bottom:204.048615px;}
.y66_c00098{bottom:204.456692px;}
.y65_c00098{bottom:204.533678px;}
.y64_c00098{bottom:204.975898px;}
.y63_c00098{bottom:205.158497px;}
.y62_c00098{bottom:205.470672px;}
.y61_c00098{bottom:206.155473px;}
.y60_c00098{bottom:206.198510px;}
.y5f_c00098{bottom:206.492589px;}
.y5e_c00098{bottom:207.257574px;}
.y5d_c00098{bottom:207.759329px;}
.y5c_c00098{bottom:208.549605px;}
.y5b_c00098{bottom:208.699892px;}
.y5a_c00098{bottom:209.314961px;}
.y59_c00098{bottom:209.790000px;}
.y58_c00098{bottom:249.331500px;}
.y57_c00098{bottom:250.152000px;}
.y56_c00098{bottom:250.537500px;}
.y55_c00098{bottom:250.825500px;}
.y54_c00098{bottom:251.224500px;}
.y53_c00098{bottom:251.767500px;}
.y52_c00098{bottom:252.075000px;}
.y51_c00098{bottom:252.745500px;}
.y50_c00098{bottom:253.261500px;}
.y4f_c00098{bottom:272.314500px;}
.y4e_c00098{bottom:272.703000px;}
.y4d_c00098{bottom:273.316500px;}
.y4c_c00098{bottom:273.726000px;}
.y4b_c00098{bottom:274.224000px;}
.y4a_c00098{bottom:274.494000px;}
.y49_c00098{bottom:274.774500px;}
.y48_c00098{bottom:275.401500px;}
.y47_c00098{bottom:295.948500px;}
.y46_c00098{bottom:296.409000px;}
.y45_c00098{bottom:296.775000px;}
.y44_c00098{bottom:297.184500px;}
.y43_c00098{bottom:297.651000px;}
.y42_c00098{bottom:298.096500px;}
.y41_c00098{bottom:298.621500px;}
.y40_c00098{bottom:319.030500px;}
.y3e_c00098{bottom:339.051000px;}
.y3f_c00098{bottom:339.072000px;}
.y3d_c00098{bottom:339.792000px;}
.y3c_c00098{bottom:340.209000px;}
.y3b_c00098{bottom:340.353000px;}
.y3a_c00098{bottom:340.857000px;}
.y39_c00098{bottom:341.139000px;}
.y38_c00098{bottom:341.550000px;}
.y37_c00098{bottom:341.947500px;}
.y36_c00098{bottom:342.559500px;}
.y35_c00098{bottom:343.171500px;}
.y34_c00098{bottom:363.649500px;}
.y33_c00098{bottom:386.151000px;}
.y32_c00098{bottom:409.129500px;}
.y31_c00098{bottom:428.623500px;}
.y30_c00098{bottom:429.414000px;}
.y2f_c00098{bottom:429.823500px;}
.y2e_c00098{bottom:430.471500px;}
.y2d_c00098{bottom:430.933500px;}
.y2c_c00098{bottom:431.161500px;}
.y2b_c00098{bottom:431.791500px;}
.y2a_c00098{bottom:431.958000px;}
.y29_c00098{bottom:432.147000px;}
.y28_c00098{bottom:432.376500px;}
.y27_c00098{bottom:433.099500px;}
.y26_c00098{bottom:453.715500px;}
.y25_c00098{bottom:486.285000px;}
.y24_c00098{bottom:525.430500px;}
.y23_c00098{bottom:568.811886px;}
.y22_c00098{bottom:569.430817px;}
.y21_c00098{bottom:569.568510px;}
.y20_c00098{bottom:570.244334px;}
.y1f_c00098{bottom:570.725705px;}
.y1e_c00098{bottom:571.080933px;}
.y1d_c00098{bottom:571.253111px;}
.y1c_c00098{bottom:571.863000px;}
.y1b_c00098{bottom:611.700000px;}
.y1a_c00098{bottom:612.205500px;}
.y19_c00098{bottom:612.456000px;}
.y18_c00098{bottom:612.847500px;}
.y17_c00098{bottom:613.137000px;}
.y16_c00098{bottom:613.294500px;}
.y15_c00098{bottom:613.467000px;}
.y14_c00098{bottom:615.058500px;}
.y13_c00098{bottom:634.897500px;}
.y12_c00098{bottom:635.244000px;}
.y11_c00098{bottom:635.796000px;}
.y10_c00098{bottom:636.318000px;}
.yf_c00098{bottom:637.126500px;}
.ye_c00098{bottom:637.930500px;}
.yd_c00098{bottom:638.551500px;}
.yc_c00098{bottom:657.961500px;}
.yb_c00098{bottom:658.626000px;}
.ya_c00098{bottom:659.212500px;}
.y9_c00098{bottom:659.634000px;}
.y8_c00098{bottom:660.153000px;}
.y7_c00098{bottom:682.201500px;}
.y6_c00098{bottom:704.215500px;}
.y5_c00098{bottom:727.302000px;}
.y4_c00098{bottom:749.607000px;}
.y3_c00098{bottom:771.850500px;}
.y2_c00098{bottom:794.812500px;}
.y1_c00098{bottom:818.370000px;}
.hf_c00098{height:53.554525px;}
.h10_c00098{height:55.654702px;}
.hc_c00098{height:60.900000px;}
.he_c00098{height:61.955235px;}
.hd_c00098{height:63.000000px;}
.h8_c00098{height:67.200000px;}
.h9_c00098{height:67.204065px;}
.hb_c00098{height:68.250000px;}
.h5_c00098{height:69.300000px;}
.h6_c00098{height:71.400000px;}
.h3_c00098{height:72.450000px;}
.h4_c00098{height:73.500000px;}
.h7_c00098{height:74.550000px;}
.h2_c00098{height:75.600000px;}
.ha_c00098{height:87.150000px;}
.h11_c00098{height:91.356577px;}
.h1_c00098{height:1005.000000px;}
.h0_c00098{height:1005.150000px;}
.w0_c00098{width:705.450000px;}
.w1_c00098{width:705.750000px;}
.x0_c00098{left:0.000000px;}
.x70_c00098{left:47.278500px;}
.x77_c00098{left:58.183521px;}
.x89_c00098{left:61.561500px;}
.x71_c00098{left:83.820000px;}
.x78_c00098{left:86.061638px;}
.x86_c00098{left:96.167490px;}
.x3a_c00098{left:97.675500px;}
.x63_c00098{left:108.810000px;}
.x80_c00098{left:114.312140px;}
.xf_c00098{left:120.960000px;}
.x32_c00098{left:122.668500px;}
.x8_c00098{left:123.930000px;}
.x36_c00098{left:126.199500px;}
.x3f_c00098{left:127.206000px;}
.x2c_c00098{left:128.790000px;}
.x72_c00098{left:131.133000px;}
.x79_c00098{left:138.670151px;}
.x1_c00098{left:143.100000px;}
.x21_c00098{left:148.770000px;}
.x2d_c00098{left:151.470000px;}
.x64_c00098{left:156.330000px;}
.x1a_c00098{left:159.300000px;}
.x6e_c00098{left:164.323500px;}
.x57_c00098{left:169.020000px;}
.x28_c00098{left:170.910000px;}
.x22_c00098{left:171.990000px;}
.x33_c00098{left:174.558000px;}
.x5d_c00098{left:176.193000px;}
.x7a_c00098{left:177.826979px;}
.x10_c00098{left:179.280000px;}
.x40_c00098{left:182.650500px;}
.x65_c00098{left:186.030000px;}
.x81_c00098{left:188.491304px;}
.x49_c00098{left:190.143000px;}
.x2_c00098{left:197.910000px;}
.x1b_c00098{left:200.070000px;}
.x87_c00098{left:202.251087px;}
.x4e_c00098{left:203.308500px;}
.x7b_c00098{left:206.141478px;}
.x6a_c00098{left:209.652000px;}
.x4a_c00098{left:211.038000px;}
.x9_c00098{left:215.730000px;}
.x23_c00098{left:217.620000px;}
.x58_c00098{left:221.130000px;}
.x11_c00098{left:223.830000px;}
.x44_c00098{left:225.180000px;}
.x1c_c00098{left:227.880000px;}
.x41_c00098{left:230.596500px;}
.x5e_c00098{left:231.786000px;}
.x37_c00098{left:235.768500px;}
.x29_c00098{left:238.410000px;}
.xa_c00098{left:241.920000px;}
.x12_c00098{left:243.270000px;}
.x45_c00098{left:246.240000px;}
.x66_c00098{left:249.750000px;}
.x6b_c00098{left:252.040500px;}
.x59_c00098{left:261.630000px;}
.x4f_c00098{left:263.248500px;}
.x2e_c00098{left:265.410000px;}
.x5f_c00098{left:267.922500px;}
.x34_c00098{left:275.259000px;}
.x53_c00098{left:277.560000px;}
.x3_c00098{left:281.070000px;}
.x48_c00098{left:284.310000px;}
.x13_c00098{left:285.930000px;}
.x67_c00098{left:287.010000px;}
.x6c_c00098{left:289.278000px;}
.x2f_c00098{left:291.330000px;}
.x4_c00098{left:297.000000px;}
.x4b_c00098{left:300.624000px;}
.x1d_c00098{left:303.210000px;}
.x50_c00098{left:305.638500px;}
.x46_c00098{left:307.800000px;}
.x54_c00098{left:308.880000px;}
.x8a_c00098{left:310.867500px;}
.x3b_c00098{left:318.228000px;}
.x24_c00098{left:320.490000px;}
.x6d_c00098{left:322.510500px;}
.x6f_c00098{left:324.366000px;}
.x47_c00098{left:327.240000px;}
.xb_c00098{left:329.400000px;}
.x30_c00098{left:331.560000px;}
.x82_c00098{left:332.747424px;}
.x42_c00098{left:335.796000px;}
.x38_c00098{left:338.106000px;}
.x25_c00098{left:339.930000px;}
.x35_c00098{left:341.647500px;}
.x1e_c00098{left:346.140000px;}
.x83_c00098{left:347.264988px;}
.x43_c00098{left:348.313500px;}
.x14_c00098{left:351.270000px;}
.xc_c00098{left:353.970000px;}
.x55_c00098{left:355.860000px;}
.x5_c00098{left:357.750000px;}
.x31_c00098{left:364.230000px;}
.x15_c00098{left:365.310000px;}
.x7c_c00098{left:366.988776px;}
.x5a_c00098{left:368.550000px;}
.x68_c00098{left:371.790000px;}
.x3c_c00098{left:374.110500px;}
.x26_c00098{left:375.570000px;}
.x2a_c00098{left:377.730000px;}
.xd_c00098{left:378.810000px;}
.x39_c00098{left:380.562000px;}
.x51_c00098{left:383.938500px;}
.x16_c00098{left:385.830000px;}
.x7d_c00098{left:387.880109px;}
.x60_c00098{left:389.775000px;}
.x5b_c00098{left:393.930000px;}
.x1f_c00098{left:404.190000px;}
.x27_c00098{left:407.700000px;}
.x7e_c00098{left:410.731473px;}
.x56_c00098{left:413.100000px;}
.x73_c00098{left:417.594000px;}
.x5c_c00098{left:419.040000px;}
.x7_c00098{left:423.090000px;}
.x17_c00098{left:424.980000px;}
.xe_c00098{left:427.410000px;}
.x88_c00098{left:428.520384px;}
.x6_c00098{left:429.840000px;}
.x20_c00098{left:431.460000px;}
.x69_c00098{left:441.990000px;}
.x18_c00098{left:449.550000px;}
.x52_c00098{left:452.248500px;}
.x3d_c00098{left:454.306500px;}
.x74_c00098{left:457.533000px;}
.x4c_c00098{left:459.616500px;}
.x2b_c00098{left:460.620000px;}
.x84_c00098{left:462.614981px;}
.x7f_c00098{left:474.609698px;}
.x19_c00098{left:479.790000px;}
.x85_c00098{left:487.228382px;}
.x75_c00098{left:488.923500px;}
.x8b_c00098{left:491.155500px;}
.x62_c00098{left:493.194000px;}
.x61_c00098{left:495.084000px;}
.x76_c00098{left:515.073000px;}
.x3e_c00098{left:517.530000px;}
.x8c_c00098{left:521.247000px;}
.x4d_c00098{left:531.529500px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fsd_c00098{font-size:47.604022pt;}
.fse_c00098{font-size:49.470846pt;}
.fsa_c00098{font-size:54.133333pt;}
.fsc_c00098{font-size:55.071320pt;}
.fsb_c00098{font-size:56.000000pt;}
.fs6_c00098{font-size:59.733333pt;}
.fs7_c00098{font-size:59.736947pt;}
.fs9_c00098{font-size:60.666667pt;}
.fs3_c00098{font-size:61.600000pt;}
.fs4_c00098{font-size:63.466667pt;}
.fs1_c00098{font-size:64.400000pt;}
.fs2_c00098{font-size:65.333333pt;}
.fs5_c00098{font-size:66.266667pt;}
.fs0_c00098{font-size:67.200000pt;}
.fs8_c00098{font-size:77.466667pt;}
.fsf_c00098{font-size:81.205846pt;}
.y0_c00098{bottom:0.000000pt;}
.y91_c00098{bottom:88.219355pt;}
.y90_c00098{bottom:88.540331pt;}
.y8f_c00098{bottom:90.463403pt;}
.y8e_c00098{bottom:92.415419pt;}
.y8d_c00098{bottom:93.122667pt;}
.y8c_c00098{bottom:129.681685pt;}
.y8b_c00098{bottom:132.498401pt;}
.y8a_c00098{bottom:133.301856pt;}
.y89_c00098{bottom:134.486139pt;}
.y88_c00098{bottom:134.999791pt;}
.y87_c00098{bottom:147.946483pt;}
.y86_c00098{bottom:148.340256pt;}
.y85_c00098{bottom:149.040224pt;}
.y84_c00098{bottom:149.567461pt;}
.y83_c00098{bottom:150.186609pt;}
.y82_c00098{bottom:150.418379pt;}
.y81_c00098{bottom:150.661515pt;}
.y80_c00098{bottom:151.191196pt;}
.y7f_c00098{bottom:151.801212pt;}
.y7e_c00098{bottom:152.726780pt;}
.y7d_c00098{bottom:153.124157pt;}
.y7c_c00098{bottom:153.685289pt;}
.y7b_c00098{bottom:153.914684pt;}
.y7a_c00098{bottom:154.403348pt;}
.y79_c00098{bottom:154.801401pt;}
.y78_c00098{bottom:164.746883pt;}
.y77_c00098{bottom:165.279203pt;}
.y76_c00098{bottom:165.898848pt;}
.y75_c00098{bottom:167.096200pt;}
.y74_c00098{bottom:167.745659pt;}
.y73_c00098{bottom:168.340463pt;}
.y72_c00098{bottom:169.591343pt;}
.y71_c00098{bottom:169.744271pt;}
.y70_c00098{bottom:170.697021pt;}
.y6f_c00098{bottom:172.323535pt;}
.y6e_c00098{bottom:172.914268pt;}
.y6d_c00098{bottom:173.720205pt;}
.y6c_c00098{bottom:174.834129pt;}
.y6b_c00098{bottom:176.330200pt;}
.y6a_c00098{bottom:177.123093pt;}
.y69_c00098{bottom:180.880675pt;}
.y68_c00098{bottom:181.074375pt;}
.y67_c00098{bottom:181.376547pt;}
.y66_c00098{bottom:181.739281pt;}
.y65_c00098{bottom:181.807713pt;}
.y64_c00098{bottom:182.200799pt;}
.y63_c00098{bottom:182.363108pt;}
.y62_c00098{bottom:182.640597pt;}
.y61_c00098{bottom:183.249309pt;}
.y60_c00098{bottom:183.287564pt;}
.y5f_c00098{bottom:183.548968pt;}
.y5e_c00098{bottom:184.228955pt;}
.y5d_c00098{bottom:184.674959pt;}
.y5c_c00098{bottom:185.377427pt;}
.y5b_c00098{bottom:185.511015pt;}
.y5a_c00098{bottom:186.057743pt;}
.y59_c00098{bottom:186.480000pt;}
.y58_c00098{bottom:221.628000pt;}
.y57_c00098{bottom:222.357333pt;}
.y56_c00098{bottom:222.700000pt;}
.y55_c00098{bottom:222.956000pt;}
.y54_c00098{bottom:223.310667pt;}
.y53_c00098{bottom:223.793333pt;}
.y52_c00098{bottom:224.066667pt;}
.y51_c00098{bottom:224.662667pt;}
.y50_c00098{bottom:225.121333pt;}
.y4f_c00098{bottom:242.057333pt;}
.y4e_c00098{bottom:242.402667pt;}
.y4d_c00098{bottom:242.948000pt;}
.y4c_c00098{bottom:243.312000pt;}
.y4b_c00098{bottom:243.754667pt;}
.y4a_c00098{bottom:243.994667pt;}
.y49_c00098{bottom:244.244000pt;}
.y48_c00098{bottom:244.801333pt;}
.y47_c00098{bottom:263.065333pt;}
.y46_c00098{bottom:263.474667pt;}
.y45_c00098{bottom:263.800000pt;}
.y44_c00098{bottom:264.164000pt;}
.y43_c00098{bottom:264.578667pt;}
.y42_c00098{bottom:264.974667pt;}
.y41_c00098{bottom:265.441333pt;}
.y40_c00098{bottom:283.582667pt;}
.y3e_c00098{bottom:301.378667pt;}
.y3f_c00098{bottom:301.397333pt;}
.y3d_c00098{bottom:302.037333pt;}
.y3c_c00098{bottom:302.408000pt;}
.y3b_c00098{bottom:302.536000pt;}
.y3a_c00098{bottom:302.984000pt;}
.y39_c00098{bottom:303.234667pt;}
.y38_c00098{bottom:303.600000pt;}
.y37_c00098{bottom:303.953333pt;}
.y36_c00098{bottom:304.497333pt;}
.y35_c00098{bottom:305.041333pt;}
.y34_c00098{bottom:323.244000pt;}
.y33_c00098{bottom:343.245333pt;}
.y32_c00098{bottom:363.670667pt;}
.y31_c00098{bottom:380.998667pt;}
.y30_c00098{bottom:381.701333pt;}
.y2f_c00098{bottom:382.065333pt;}
.y2e_c00098{bottom:382.641333pt;}
.y2d_c00098{bottom:383.052000pt;}
.y2c_c00098{bottom:383.254667pt;}
.y2b_c00098{bottom:383.814667pt;}
.y2a_c00098{bottom:383.962667pt;}
.y29_c00098{bottom:384.130667pt;}
.y28_c00098{bottom:384.334667pt;}
.y27_c00098{bottom:384.977333pt;}
.y26_c00098{bottom:403.302667pt;}
.y25_c00098{bottom:432.253333pt;}
.y24_c00098{bottom:467.049333pt;}
.y23_c00098{bottom:505.610565pt;}
.y22_c00098{bottom:506.160727pt;}
.y21_c00098{bottom:506.283120pt;}
.y20_c00098{bottom:506.883852pt;}
.y1f_c00098{bottom:507.311737pt;}
.y1e_c00098{bottom:507.627496pt;}
.y1d_c00098{bottom:507.780543pt;}
.y1c_c00098{bottom:508.322667pt;}
.y1b_c00098{bottom:543.733333pt;}
.y1a_c00098{bottom:544.182667pt;}
.y19_c00098{bottom:544.405333pt;}
.y18_c00098{bottom:544.753333pt;}
.y17_c00098{bottom:545.010667pt;}
.y16_c00098{bottom:545.150667pt;}
.y15_c00098{bottom:545.304000pt;}
.y14_c00098{bottom:546.718667pt;}
.y13_c00098{bottom:564.353333pt;}
.y12_c00098{bottom:564.661333pt;}
.y11_c00098{bottom:565.152000pt;}
.y10_c00098{bottom:565.616000pt;}
.yf_c00098{bottom:566.334667pt;}
.ye_c00098{bottom:567.049333pt;}
.yd_c00098{bottom:567.601333pt;}
.yc_c00098{bottom:584.854667pt;}
.yb_c00098{bottom:585.445333pt;}
.ya_c00098{bottom:585.966667pt;}
.y9_c00098{bottom:586.341333pt;}
.y8_c00098{bottom:586.802667pt;}
.y7_c00098{bottom:606.401333pt;}
.y6_c00098{bottom:625.969333pt;}
.y5_c00098{bottom:646.490667pt;}
.y4_c00098{bottom:666.317333pt;}
.y3_c00098{bottom:686.089333pt;}
.y2_c00098{bottom:706.500000pt;}
.y1_c00098{bottom:727.440000pt;}
.hf_c00098{height:47.604022pt;}
.h10_c00098{height:49.470846pt;}
.hc_c00098{height:54.133333pt;}
.he_c00098{height:55.071320pt;}
.hd_c00098{height:56.000000pt;}
.h8_c00098{height:59.733333pt;}
.h9_c00098{height:59.736947pt;}
.hb_c00098{height:60.666667pt;}
.h5_c00098{height:61.600000pt;}
.h6_c00098{height:63.466667pt;}
.h3_c00098{height:64.400000pt;}
.h4_c00098{height:65.333333pt;}
.h7_c00098{height:66.266667pt;}
.h2_c00098{height:67.200000pt;}
.ha_c00098{height:77.466667pt;}
.h11_c00098{height:81.205846pt;}
.h1_c00098{height:893.333333pt;}
.h0_c00098{height:893.466667pt;}
.w0_c00098{width:627.066667pt;}
.w1_c00098{width:627.333333pt;}
.x0_c00098{left:0.000000pt;}
.x70_c00098{left:42.025333pt;}
.x77_c00098{left:51.718685pt;}
.x89_c00098{left:54.721333pt;}
.x71_c00098{left:74.506667pt;}
.x78_c00098{left:76.499233pt;}
.x86_c00098{left:85.482213pt;}
.x3a_c00098{left:86.822667pt;}
.x63_c00098{left:96.720000pt;}
.x80_c00098{left:101.610791pt;}
.xf_c00098{left:107.520000pt;}
.x32_c00098{left:109.038667pt;}
.x8_c00098{left:110.160000pt;}
.x36_c00098{left:112.177333pt;}
.x3f_c00098{left:113.072000pt;}
.x2c_c00098{left:114.480000pt;}
.x72_c00098{left:116.562667pt;}
.x79_c00098{left:123.262356pt;}
.x1_c00098{left:127.200000pt;}
.x21_c00098{left:132.240000pt;}
.x2d_c00098{left:134.640000pt;}
.x64_c00098{left:138.960000pt;}
.x1a_c00098{left:141.600000pt;}
.x6e_c00098{left:146.065333pt;}
.x57_c00098{left:150.240000pt;}
.x28_c00098{left:151.920000pt;}
.x22_c00098{left:152.880000pt;}
.x33_c00098{left:155.162667pt;}
.x5d_c00098{left:156.616000pt;}
.x7a_c00098{left:158.068425pt;}
.x10_c00098{left:159.360000pt;}
.x40_c00098{left:162.356000pt;}
.x65_c00098{left:165.360000pt;}
.x81_c00098{left:167.547825pt;}
.x49_c00098{left:169.016000pt;}
.x2_c00098{left:175.920000pt;}
.x1b_c00098{left:177.840000pt;}
.x87_c00098{left:179.778744pt;}
.x4e_c00098{left:180.718667pt;}
.x7b_c00098{left:183.236869pt;}
.x6a_c00098{left:186.357333pt;}
.x4a_c00098{left:187.589333pt;}
.x9_c00098{left:191.760000pt;}
.x23_c00098{left:193.440000pt;}
.x58_c00098{left:196.560000pt;}
.x11_c00098{left:198.960000pt;}
.x44_c00098{left:200.160000pt;}
.x1c_c00098{left:202.560000pt;}
.x41_c00098{left:204.974667pt;}
.x5e_c00098{left:206.032000pt;}
.x37_c00098{left:209.572000pt;}
.x29_c00098{left:211.920000pt;}
.xa_c00098{left:215.040000pt;}
.x12_c00098{left:216.240000pt;}
.x45_c00098{left:218.880000pt;}
.x66_c00098{left:222.000000pt;}
.x6b_c00098{left:224.036000pt;}
.x59_c00098{left:232.560000pt;}
.x4f_c00098{left:233.998667pt;}
.x2e_c00098{left:235.920000pt;}
.x5f_c00098{left:238.153333pt;}
.x34_c00098{left:244.674667pt;}
.x53_c00098{left:246.720000pt;}
.x3_c00098{left:249.840000pt;}
.x48_c00098{left:252.720000pt;}
.x13_c00098{left:254.160000pt;}
.x67_c00098{left:255.120000pt;}
.x6c_c00098{left:257.136000pt;}
.x2f_c00098{left:258.960000pt;}
.x4_c00098{left:264.000000pt;}
.x4b_c00098{left:267.221333pt;}
.x1d_c00098{left:269.520000pt;}
.x50_c00098{left:271.678667pt;}
.x46_c00098{left:273.600000pt;}
.x54_c00098{left:274.560000pt;}
.x8a_c00098{left:276.326667pt;}
.x3b_c00098{left:282.869333pt;}
.x24_c00098{left:284.880000pt;}
.x6d_c00098{left:286.676000pt;}
.x6f_c00098{left:288.325333pt;}
.x47_c00098{left:290.880000pt;}
.xb_c00098{left:292.800000pt;}
.x30_c00098{left:294.720000pt;}
.x82_c00098{left:295.775488pt;}
.x42_c00098{left:298.485333pt;}
.x38_c00098{left:300.538667pt;}
.x25_c00098{left:302.160000pt;}
.x35_c00098{left:303.686667pt;}
.x1e_c00098{left:307.680000pt;}
.x83_c00098{left:308.679989pt;}
.x43_c00098{left:309.612000pt;}
.x14_c00098{left:312.240000pt;}
.xc_c00098{left:314.640000pt;}
.x55_c00098{left:316.320000pt;}
.x5_c00098{left:318.000000pt;}
.x31_c00098{left:323.760000pt;}
.x15_c00098{left:324.720000pt;}
.x7c_c00098{left:326.212245pt;}
.x5a_c00098{left:327.600000pt;}
.x68_c00098{left:330.480000pt;}
.x3c_c00098{left:332.542667pt;}
.x26_c00098{left:333.840000pt;}
.x2a_c00098{left:335.760000pt;}
.xd_c00098{left:336.720000pt;}
.x39_c00098{left:338.277333pt;}
.x51_c00098{left:341.278667pt;}
.x16_c00098{left:342.960000pt;}
.x7d_c00098{left:344.782319pt;}
.x60_c00098{left:346.466667pt;}
.x5b_c00098{left:350.160000pt;}
.x1f_c00098{left:359.280000pt;}
.x27_c00098{left:362.400000pt;}
.x7e_c00098{left:365.094643pt;}
.x56_c00098{left:367.200000pt;}
.x73_c00098{left:371.194667pt;}
.x5c_c00098{left:372.480000pt;}
.x7_c00098{left:376.080000pt;}
.x17_c00098{left:377.760000pt;}
.xe_c00098{left:379.920000pt;}
.x88_c00098{left:380.907008pt;}
.x6_c00098{left:382.080000pt;}
.x20_c00098{left:383.520000pt;}
.x69_c00098{left:392.880000pt;}
.x18_c00098{left:399.600000pt;}
.x52_c00098{left:401.998667pt;}
.x3d_c00098{left:403.828000pt;}
.x74_c00098{left:406.696000pt;}
.x4c_c00098{left:408.548000pt;}
.x2b_c00098{left:409.440000pt;}
.x84_c00098{left:411.213316pt;}
.x7f_c00098{left:421.875287pt;}
.x19_c00098{left:426.480000pt;}
.x85_c00098{left:433.091895pt;}
.x75_c00098{left:434.598667pt;}
.x8b_c00098{left:436.582667pt;}
.x62_c00098{left:438.394667pt;}
.x61_c00098{left:440.074667pt;}
.x76_c00098{left:457.842667pt;}
.x3e_c00098{left:460.026667pt;}
.x8c_c00098{left:463.330667pt;}
.x4d_c00098{left:472.470667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc3_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);}
.m55_c00099{transform:matrix(0.076010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076010,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{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);}
.m9e_c00099{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);}
.m1e_c00099{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{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);}
.mb1_c00099{transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);}
.mb6_c00099{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);}
.m7c_c00099{transform:matrix(0.151580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151580,0.000000,0.000000,0.250000,0,0);}
.md_c00099{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);}
.m96_c00099{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);}
.m14_c00099{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);}
.m3a_c00099{transform:matrix(0.153510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153510,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{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);}
.m4d_c00099{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);}
.m41_c00099{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);}
.m40_c00099{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);}
.m3c_c00099{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);}
.m19_c00099{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);}
.maf_c00099{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);}
.m38_c00099{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);}
.mad_c00099{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_c00099{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);}
.m84_c00099{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);}
.m7f_c00099{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{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);}
.m39_c00099{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);}
.m24_c00099{transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);}
.md2_c00099{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);}
.ma0_c00099{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);}
.m73_c00099{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);}
.m9f_c00099{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);}
.mb8_c00099{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);}
.mbd_c00099{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);}
.m1c_c00099{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);}
.m18_c00099{transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{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);}
.m6e_c00099{transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{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);}
.m88_c00099{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);}
.m47_c00099{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);}
.mbc_c00099{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);}
.m93_c00099{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);}
.m5a_c00099{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);}
.m2a_c00099{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);}
.m6f_c00099{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);}
.m61_c00099{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_c00099{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);}
.m7b_c00099{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);}
.ma4_c00099{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);}
.m31_c00099{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);}
.ma1_c00099{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);}
.mb0_c00099{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);}
.mb5_c00099{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);}
.m13_c00099{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);}
.m28_c00099{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);}
.m5d_c00099{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);}
.m2b_c00099{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);}
.mb9_c00099{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);}
.m1b_c00099{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);}
.m17_c00099{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_c00099{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);}
.m15_c00099{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);}
.m86_c00099{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);}
.mb4_c00099{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);}
.mb7_c00099{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);}
.m60_c00099{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);}
.mcf_c00099{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);}
.m65_c00099{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);}
.maa_c00099{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);}
.m2e_c00099{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);}
.mab_c00099{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);}
.m64_c00099{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);}
.md0_c00099{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);}
.m85_c00099{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);}
.m29_c00099{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);}
.m98_c00099{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);}
.m78_c00099{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);}
.m68_c00099{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);}
.m11_c00099{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);}
.m21_c00099{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);}
.ma5_c00099{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);}
.m12_c00099{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);}
.m6_c00099{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);}
.mac_c00099{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);}
.m4a_c00099{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.mae_c00099{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);}
.me_c00099{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);}
.m26_c00099{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);}
.m6a_c00099{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);}
.m80_c00099{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_c00099{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);}
.m36_c00099{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);}
.m7a_c00099{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);}
.m8_c00099{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);}
.m2f_c00099{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);}
.ma2_c00099{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);}
.m3_c00099{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);}
.m27_c00099{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);}
.m9d_c00099{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_c00099{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);}
.m5_c00099{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);}
.mbe_c00099{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);}
.m91_c00099{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);}
.m1a_c00099{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);}
.m95_c00099{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);}
.m22_c00099{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);}
.ma7_c00099{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);}
.m1d_c00099{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);}
.m37_c00099{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);}
.mb3_c00099{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);}
.mbb_c00099{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);}
.m2c_c00099{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);}
.m97_c00099{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);}
.mc8_c00099{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);}
.mc6_c00099{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);}
.m7_c00099{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);}
.m83_c00099{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);}
.m0_c00099{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);}
.m72_c00099{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);}
.m79_c00099{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);}
.md1_c00099{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);}
.m49_c00099{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);}
.m30_c00099{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);}
.m2_c00099{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);}
.m74_c00099{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);}
.mf_c00099{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);}
.m81_c00099{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);}
.mc1_c00099{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);}
.mc_c00099{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);}
.ma8_c00099{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);}
.mb2_c00099{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);}
.m5c_c00099{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);}
.m6c_c00099{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);}
.m67_c00099{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);}
.m5b_c00099{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);}
.m34_c00099{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);}
.m4b_c00099{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);}
.m20_c00099{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);}
.m7d_c00099{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);}
.mc5_c00099{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);}
.mca_c00099{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{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);}
.mb_c00099{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);}
.m76_c00099{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);}
.mc0_c00099{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);}
.m70_c00099{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m8b_c00099{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);}
.m32_c00099{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);}
.m62_c00099{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);}
.m7e_c00099{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);}
.m99_c00099{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);}
.mc9_c00099{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);}
.m9a_c00099{transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);}
.m9b_c00099{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);}
.mba_c00099{transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.235285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235285,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{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);}
.m8f_c00099{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.ma6_c00099{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);}
.m90_c00099{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);}
.ma_c00099{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);}
.m63_c00099{transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{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);}
.m48_c00099{transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);}
.m94_c00099{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{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);}
.m8c_c00099{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{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);}
.m8a_c00099{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{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);}
.m92_c00099{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);}
.m87_c00099{transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);}
.mce_c00099{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);}
.m6d_c00099{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00099{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.270525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{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);}
.m5e_c00099{transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);}
.m8e_c00099{transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00099{transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{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);}
.m82_c00099{transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306505,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{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);}
.m42_c00099{transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);}
.mcc_c00099{transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);}
.mcd_c00099{transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);}
.mcb_c00099{transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322760,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{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);}
.m71_c00099{transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327665,0.000000,0.000000,0.250000,0,0);}
.mc4_c00099{transform:matrix(0.332150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332150,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.346090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346090,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);}
.mbf_c00099{transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.373655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373655,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.375810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375810,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.376035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376035,0.000000,0.000000,0.250000,0,0);}
.m9c_c00099{transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.389060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389060,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.429865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429865,0.000000,0.000000,0.250000,0,0);}
.mc2_c00099{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);}
.m53_c00099{transform:matrix(0.453285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453285,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.585805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585805,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.620505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620505,0.000000,0.000000,0.250000,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;}
.fs0_c00099{font-size:26.250000px;}
.fs2_c00099{font-size:63.000000px;}
.fs6_c00099{font-size:66.150000px;}
.fsb_c00099{font-size:68.250000px;}
.fs1_c00099{font-size:69.300000px;}
.fsc_c00099{font-size:70.350000px;}
.fs4_c00099{font-size:71.400000px;}
.fs8_c00099{font-size:72.450000px;}
.fs3_c00099{font-size:73.500000px;}
.fs5_c00099{font-size:74.550000px;}
.fs7_c00099{font-size:77.700000px;}
.fsd_c00099{font-size:81.900000px;}
.fsa_c00099{font-size:87.150000px;}
.fs9_c00099{font-size:99.750000px;}
.y0_c00099{bottom:0.000000px;}
.y28_c00099{bottom:147.574500px;}
.y27_c00099{bottom:169.753500px;}
.y26_c00099{bottom:193.230000px;}
.y25_c00099{bottom:216.364500px;}
.y24_c00099{bottom:239.020500px;}
.y23_c00099{bottom:262.225500px;}
.y22_c00099{bottom:284.946000px;}
.y21_c00099{bottom:307.560000px;}
.y20_c00099{bottom:330.688500px;}
.y1f_c00099{bottom:353.892000px;}
.y1e_c00099{bottom:376.671000px;}
.y1d_c00099{bottom:398.797500px;}
.y1c_c00099{bottom:422.304000px;}
.y1b_c00099{bottom:444.829500px;}
.y1a_c00099{bottom:468.934500px;}
.y19_c00099{bottom:488.632500px;}
.y18_c00099{bottom:488.958000px;}
.y17_c00099{bottom:489.237000px;}
.y16_c00099{bottom:489.411000px;}
.y15_c00099{bottom:489.837000px;}
.y14_c00099{bottom:490.159500px;}
.y13_c00099{bottom:490.533000px;}
.y12_c00099{bottom:490.744500px;}
.y11_c00099{bottom:491.019000px;}
.y10_c00099{bottom:491.122500px;}
.yf_c00099{bottom:491.452500px;}
.ye_c00099{bottom:491.943000px;}
.yd_c00099{bottom:513.120000px;}
.yc_c00099{bottom:548.803500px;}
.yb_c00099{bottom:586.690500px;}
.ya_c00099{bottom:651.780000px;}
.y9_c00099{bottom:674.668500px;}
.y8_c00099{bottom:697.314000px;}
.y7_c00099{bottom:720.360000px;}
.y6_c00099{bottom:742.875000px;}
.y5_c00099{bottom:765.451500px;}
.y4_c00099{bottom:788.017500px;}
.y3_c00099{bottom:811.428000px;}
.y2_c00099{bottom:834.214500px;}
.y1_c00099{bottom:844.020000px;}
.h2_c00099{height:26.250000px;}
.h4_c00099{height:63.000000px;}
.h8_c00099{height:66.150000px;}
.hd_c00099{height:68.250000px;}
.h3_c00099{height:69.300000px;}
.he_c00099{height:70.350000px;}
.h6_c00099{height:71.400000px;}
.ha_c00099{height:72.450000px;}
.h5_c00099{height:73.500000px;}
.h7_c00099{height:74.550000px;}
.h9_c00099{height:77.700000px;}
.hf_c00099{height:81.900000px;}
.hc_c00099{height:87.150000px;}
.hb_c00099{height:99.750000px;}
.h0_c00099{height:1008.450000px;}
.h1_c00099{height:1008.750000px;}
.w0_c00099{width:676.890000px;}
.w1_c00099{width:677.250000px;}
.x0_c00099{left:0.000000px;}
.x43_c00099{left:152.820000px;}
.x7d_c00099{left:170.370000px;}
.x52_c00099{left:176.850000px;}
.x19_c00099{left:181.170000px;}
.x4e_c00099{left:184.410000px;}
.x11_c00099{left:185.760000px;}
.x2_c00099{left:187.110000px;}
.x20_c00099{left:188.460000px;}
.x63_c00099{left:204.660000px;}
.x32_c00099{left:205.740000px;}
.xa_c00099{left:211.410000px;}
.x21_c00099{left:212.760000px;}
.x58_c00099{left:215.190000px;}
.x2c_c00099{left:217.620000px;}
.x66_c00099{left:222.750000px;}
.x12_c00099{left:225.450000px;}
.x36_c00099{left:228.960000px;}
.x64_c00099{left:230.850000px;}
.x5e_c00099{left:232.740000px;}
.x3_c00099{left:236.790000px;}
.x33_c00099{left:243.270000px;}
.x28_c00099{left:245.970000px;}
.x46_c00099{left:247.476000px;}
.x2d_c00099{left:249.480000px;}
.x13_c00099{left:250.560000px;}
.x71_c00099{left:257.310000px;}
.x65_c00099{left:258.390000px;}
.xb_c00099{left:264.870000px;}
.x67_c00099{left:270.270000px;}
.x77_c00099{left:271.890000px;}
.x59_c00099{left:273.780000px;}
.x6a_c00099{left:276.750000px;}
.x4_c00099{left:281.880000px;}
.x4f_c00099{left:284.850000px;}
.x7b_c00099{left:287.550000px;}
.x47_c00099{left:288.774000px;}
.x14_c00099{left:291.060000px;}
.x2e_c00099{left:294.030000px;}
.x22_c00099{left:295.920000px;}
.x3f_c00099{left:297.810000px;}
.x53_c00099{left:298.890000px;}
.x48_c00099{left:301.741500px;}
.x5a_c00099{left:304.290000px;}
.x1a_c00099{left:305.640000px;}
.x44_c00099{left:306.990000px;}
.xc_c00099{left:308.340000px;}
.x2f_c00099{left:311.850000px;}
.x15_c00099{left:314.280000px;}
.x5_c00099{left:315.630000px;}
.x72_c00099{left:318.060000px;}
.x23_c00099{left:319.410000px;}
.x5f_c00099{left:321.300000px;}
.x7e_c00099{left:322.650000px;}
.x40_c00099{left:325.350000px;}
.x6f_c00099{left:327.780000px;}
.x34_c00099{left:332.640000px;}
.x49_c00099{left:336.030000px;}
.x37_c00099{left:337.770000px;}
.x81_c00099{left:340.200000px;}
.x7c_c00099{left:341.820000px;}
.x45_c00099{left:347.760000px;}
.x41_c00099{left:352.620000px;}
.x7f_c00099{left:353.700000px;}
.x54_c00099{left:355.590000px;}
.x38_c00099{left:356.670000px;}
.x60_c00099{left:359.100000px;}
.x30_c00099{left:361.260000px;}
.x24_c00099{left:363.150000px;}
.x1b_c00099{left:368.550000px;}
.x6b_c00099{left:369.630000px;}
.x5b_c00099{left:373.950000px;}
.x35_c00099{left:376.650000px;}
.xd_c00099{left:378.540000px;}
.x78_c00099{left:380.160000px;}
.x39_c00099{left:383.940000px;}
.x68_c00099{left:386.640000px;}
.x73_c00099{left:387.720000px;}
.x31_c00099{left:388.800000px;}
.x50_c00099{left:390.690000px;}
.xe_c00099{left:393.390000px;}
.x5c_c00099{left:397.980000px;}
.x29_c00099{left:401.490000px;}
.x6_c00099{left:403.920000px;}
.x1_c00099{left:405.810000px;}
.x55_c00099{left:407.970000px;}
.x3a_c00099{left:409.860000px;}
.x74_c00099{left:413.640000px;}
.x70_c00099{left:415.530000px;}
.x1c_c00099{left:416.610000px;}
.x16_c00099{left:418.770000px;}
.x7_c00099{left:423.360000px;}
.x82_c00099{left:424.710000px;}
.x79_c00099{left:427.410000px;}
.x25_c00099{left:430.650000px;}
.x6c_c00099{left:436.320000px;}
.x1d_c00099{left:439.020000px;}
.x2a_c00099{left:440.100000px;}
.x56_c00099{left:443.340000px;}
.x42_c00099{left:447.120000px;}
.x4a_c00099{left:449.428500px;}
.x5d_c00099{left:454.680000px;}
.x7a_c00099{left:457.110000px;}
.x3b_c00099{left:458.730000px;}
.x17_c00099{left:460.620000px;}
.xf_c00099{left:461.970000px;}
.x26_c00099{left:463.860000px;}
.x69_c00099{left:469.530000px;}
.x1e_c00099{left:471.690000px;}
.x2b_c00099{left:474.120000px;}
.x3c_c00099{left:475.740000px;}
.x75_c00099{left:481.950000px;}
.x8_c00099{left:484.650000px;}
.x27_c00099{left:486.810000px;}
.x51_c00099{left:488.160000px;}
.x1f_c00099{left:494.370000px;}
.x6d_c00099{left:499.770000px;}
.x9_c00099{left:502.740000px;}
.x61_c00099{left:504.090000px;}
.x18_c00099{left:511.650000px;}
.x3d_c00099{left:520.560000px;}
.x80_c00099{left:522.180000px;}
.x4b_c00099{left:524.257500px;}
.x10_c00099{left:525.960000px;}
.x6e_c00099{left:531.360000px;}
.x76_c00099{left:538.110000px;}
.x4c_c00099{left:559.048500px;}
.x57_c00099{left:570.780000px;}
.x3e_c00099{left:572.130000px;}
.x62_c00099{left:581.580000px;}
.x4d_c00099{left:599.829000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.fs0_c00099{font-size:23.333333pt;}
.fs2_c00099{font-size:56.000000pt;}
.fs6_c00099{font-size:58.800000pt;}
.fsb_c00099{font-size:60.666667pt;}
.fs1_c00099{font-size:61.600000pt;}
.fsc_c00099{font-size:62.533333pt;}
.fs4_c00099{font-size:63.466667pt;}
.fs8_c00099{font-size:64.400000pt;}
.fs3_c00099{font-size:65.333333pt;}
.fs5_c00099{font-size:66.266667pt;}
.fs7_c00099{font-size:69.066667pt;}
.fsd_c00099{font-size:72.800000pt;}
.fsa_c00099{font-size:77.466667pt;}
.fs9_c00099{font-size:88.666667pt;}
.y0_c00099{bottom:0.000000pt;}
.y28_c00099{bottom:131.177333pt;}
.y27_c00099{bottom:150.892000pt;}
.y26_c00099{bottom:171.760000pt;}
.y25_c00099{bottom:192.324000pt;}
.y24_c00099{bottom:212.462667pt;}
.y23_c00099{bottom:233.089333pt;}
.y22_c00099{bottom:253.285333pt;}
.y21_c00099{bottom:273.386667pt;}
.y20_c00099{bottom:293.945333pt;}
.y1f_c00099{bottom:314.570667pt;}
.y1e_c00099{bottom:334.818667pt;}
.y1d_c00099{bottom:354.486667pt;}
.y1c_c00099{bottom:375.381333pt;}
.y1b_c00099{bottom:395.404000pt;}
.y1a_c00099{bottom:416.830667pt;}
.y19_c00099{bottom:434.340000pt;}
.y18_c00099{bottom:434.629333pt;}
.y17_c00099{bottom:434.877333pt;}
.y16_c00099{bottom:435.032000pt;}
.y15_c00099{bottom:435.410667pt;}
.y14_c00099{bottom:435.697333pt;}
.y13_c00099{bottom:436.029333pt;}
.y12_c00099{bottom:436.217333pt;}
.y11_c00099{bottom:436.461333pt;}
.y10_c00099{bottom:436.553333pt;}
.yf_c00099{bottom:436.846667pt;}
.ye_c00099{bottom:437.282667pt;}
.yd_c00099{bottom:456.106667pt;}
.yc_c00099{bottom:487.825333pt;}
.yb_c00099{bottom:521.502667pt;}
.ya_c00099{bottom:579.360000pt;}
.y9_c00099{bottom:599.705333pt;}
.y8_c00099{bottom:619.834667pt;}
.y7_c00099{bottom:640.320000pt;}
.y6_c00099{bottom:660.333333pt;}
.y5_c00099{bottom:680.401333pt;}
.y4_c00099{bottom:700.460000pt;}
.y3_c00099{bottom:721.269333pt;}
.y2_c00099{bottom:741.524000pt;}
.y1_c00099{bottom:750.240000pt;}
.h2_c00099{height:23.333333pt;}
.h4_c00099{height:56.000000pt;}
.h8_c00099{height:58.800000pt;}
.hd_c00099{height:60.666667pt;}
.h3_c00099{height:61.600000pt;}
.he_c00099{height:62.533333pt;}
.h6_c00099{height:63.466667pt;}
.ha_c00099{height:64.400000pt;}
.h5_c00099{height:65.333333pt;}
.h7_c00099{height:66.266667pt;}
.h9_c00099{height:69.066667pt;}
.hf_c00099{height:72.800000pt;}
.hc_c00099{height:77.466667pt;}
.hb_c00099{height:88.666667pt;}
.h0_c00099{height:896.400000pt;}
.h1_c00099{height:896.666667pt;}
.w0_c00099{width:601.680000pt;}
.w1_c00099{width:602.000000pt;}
.x0_c00099{left:0.000000pt;}
.x43_c00099{left:135.840000pt;}
.x7d_c00099{left:151.440000pt;}
.x52_c00099{left:157.200000pt;}
.x19_c00099{left:161.040000pt;}
.x4e_c00099{left:163.920000pt;}
.x11_c00099{left:165.120000pt;}
.x2_c00099{left:166.320000pt;}
.x20_c00099{left:167.520000pt;}
.x63_c00099{left:181.920000pt;}
.x32_c00099{left:182.880000pt;}
.xa_c00099{left:187.920000pt;}
.x21_c00099{left:189.120000pt;}
.x58_c00099{left:191.280000pt;}
.x2c_c00099{left:193.440000pt;}
.x66_c00099{left:198.000000pt;}
.x12_c00099{left:200.400000pt;}
.x36_c00099{left:203.520000pt;}
.x64_c00099{left:205.200000pt;}
.x5e_c00099{left:206.880000pt;}
.x3_c00099{left:210.480000pt;}
.x33_c00099{left:216.240000pt;}
.x28_c00099{left:218.640000pt;}
.x46_c00099{left:219.978667pt;}
.x2d_c00099{left:221.760000pt;}
.x13_c00099{left:222.720000pt;}
.x71_c00099{left:228.720000pt;}
.x65_c00099{left:229.680000pt;}
.xb_c00099{left:235.440000pt;}
.x67_c00099{left:240.240000pt;}
.x77_c00099{left:241.680000pt;}
.x59_c00099{left:243.360000pt;}
.x6a_c00099{left:246.000000pt;}
.x4_c00099{left:250.560000pt;}
.x4f_c00099{left:253.200000pt;}
.x7b_c00099{left:255.600000pt;}
.x47_c00099{left:256.688000pt;}
.x14_c00099{left:258.720000pt;}
.x2e_c00099{left:261.360000pt;}
.x22_c00099{left:263.040000pt;}
.x3f_c00099{left:264.720000pt;}
.x53_c00099{left:265.680000pt;}
.x48_c00099{left:268.214667pt;}
.x5a_c00099{left:270.480000pt;}
.x1a_c00099{left:271.680000pt;}
.x44_c00099{left:272.880000pt;}
.xc_c00099{left:274.080000pt;}
.x2f_c00099{left:277.200000pt;}
.x15_c00099{left:279.360000pt;}
.x5_c00099{left:280.560000pt;}
.x72_c00099{left:282.720000pt;}
.x23_c00099{left:283.920000pt;}
.x5f_c00099{left:285.600000pt;}
.x7e_c00099{left:286.800000pt;}
.x40_c00099{left:289.200000pt;}
.x6f_c00099{left:291.360000pt;}
.x34_c00099{left:295.680000pt;}
.x49_c00099{left:298.693333pt;}
.x37_c00099{left:300.240000pt;}
.x81_c00099{left:302.400000pt;}
.x7c_c00099{left:303.840000pt;}
.x45_c00099{left:309.120000pt;}
.x41_c00099{left:313.440000pt;}
.x7f_c00099{left:314.400000pt;}
.x54_c00099{left:316.080000pt;}
.x38_c00099{left:317.040000pt;}
.x60_c00099{left:319.200000pt;}
.x30_c00099{left:321.120000pt;}
.x24_c00099{left:322.800000pt;}
.x1b_c00099{left:327.600000pt;}
.x6b_c00099{left:328.560000pt;}
.x5b_c00099{left:332.400000pt;}
.x35_c00099{left:334.800000pt;}
.xd_c00099{left:336.480000pt;}
.x78_c00099{left:337.920000pt;}
.x39_c00099{left:341.280000pt;}
.x68_c00099{left:343.680000pt;}
.x73_c00099{left:344.640000pt;}
.x31_c00099{left:345.600000pt;}
.x50_c00099{left:347.280000pt;}
.xe_c00099{left:349.680000pt;}
.x5c_c00099{left:353.760000pt;}
.x29_c00099{left:356.880000pt;}
.x6_c00099{left:359.040000pt;}
.x1_c00099{left:360.720000pt;}
.x55_c00099{left:362.640000pt;}
.x3a_c00099{left:364.320000pt;}
.x74_c00099{left:367.680000pt;}
.x70_c00099{left:369.360000pt;}
.x1c_c00099{left:370.320000pt;}
.x16_c00099{left:372.240000pt;}
.x7_c00099{left:376.320000pt;}
.x82_c00099{left:377.520000pt;}
.x79_c00099{left:379.920000pt;}
.x25_c00099{left:382.800000pt;}
.x6c_c00099{left:387.840000pt;}
.x1d_c00099{left:390.240000pt;}
.x2a_c00099{left:391.200000pt;}
.x56_c00099{left:394.080000pt;}
.x42_c00099{left:397.440000pt;}
.x4a_c00099{left:399.492000pt;}
.x5d_c00099{left:404.160000pt;}
.x7a_c00099{left:406.320000pt;}
.x3b_c00099{left:407.760000pt;}
.x17_c00099{left:409.440000pt;}
.xf_c00099{left:410.640000pt;}
.x26_c00099{left:412.320000pt;}
.x69_c00099{left:417.360000pt;}
.x1e_c00099{left:419.280000pt;}
.x2b_c00099{left:421.440000pt;}
.x3c_c00099{left:422.880000pt;}
.x75_c00099{left:428.400000pt;}
.x8_c00099{left:430.800000pt;}
.x27_c00099{left:432.720000pt;}
.x51_c00099{left:433.920000pt;}
.x1f_c00099{left:439.440000pt;}
.x6d_c00099{left:444.240000pt;}
.x9_c00099{left:446.880000pt;}
.x61_c00099{left:448.080000pt;}
.x18_c00099{left:454.800000pt;}
.x3d_c00099{left:462.720000pt;}
.x80_c00099{left:464.160000pt;}
.x4b_c00099{left:466.006667pt;}
.x10_c00099{left:467.520000pt;}
.x6e_c00099{left:472.320000pt;}
.x76_c00099{left:478.320000pt;}
.x4c_c00099{left:496.932000pt;}
.x57_c00099{left:507.360000pt;}
.x3e_c00099{left:508.560000pt;}
.x62_c00099{left:516.960000pt;}
.x4d_c00099{left:533.181333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma8_c00100{transform:matrix(0.008169,0.000123,-0.003750,0.249972,0,0);-ms-transform:matrix(0.008169,0.000123,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.008169,0.000123,-0.003750,0.249972,0,0);}
.ma9_c00100{transform:matrix(0.010414,0.000156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010414,0.000156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010414,0.000156,-0.003750,0.249972,0,0);}
.m19_c00100{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);}
.mb3_c00100{transform:matrix(0.052408,0.000839,-0.003999,0.249968,0,0);-ms-transform:matrix(0.052408,0.000839,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.052408,0.000839,-0.003999,0.249968,0,0);}
.mad_c00100{transform:matrix(0.089440,0.001342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.089440,0.001342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.089440,0.001342,-0.003750,0.249972,0,0);}
.m6f_c00100{transform:matrix(0.100330,0.001003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.100330,0.001003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.100330,0.001003,-0.002500,0.249988,0,0);}
.m5b_c00100{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.139323,0.001393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.139323,0.001393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.139323,0.001393,-0.002500,0.249988,0,0);}
.m5a_c00100{transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141305,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.142633,0.001426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.142633,0.001426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.142633,0.001426,-0.002500,0.249988,0,0);}
.m2e_c00100{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);}
.m3f_c00100{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);}
.mca_c00100{transform:matrix(0.146164,0.001754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146164,0.001754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146164,0.001754,-0.003000,0.249982,0,0);}
.m4c_c00100{transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{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_c00100{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);}
.mec_c00100{transform:matrix(0.152156,0.002434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152156,0.002434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152156,0.002434,-0.003999,0.249968,0,0);}
.m23_c00100{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);}
.m96_c00100{transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154542,0.001545,-0.002500,0.249988,0,0);}
.m4a_c00100{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);}
.m35_c00100{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);}
.mcf_c00100{transform:matrix(0.156819,0.001882,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156819,0.001882,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156819,0.001882,-0.003000,0.249982,0,0);}
.mcb_c00100{transform:matrix(0.157719,0.001893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157719,0.001893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157719,0.001893,-0.003000,0.249982,0,0);}
.m50_c00100{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);}
.m49_c00100{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);}
.m38_c00100{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_c00100{transform:matrix(0.159935,0.002559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159935,0.002559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159935,0.002559,-0.003999,0.249968,0,0);}
.m40_c00100{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);}
.m6c_c00100{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_c00100{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);}
.m47_c00100{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);}
.ma6_c00100{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);}
.m39_c00100{transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{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);}
.mc3_c00100{transform:matrix(0.163624,0.002618,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163624,0.002618,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163624,0.002618,-0.003999,0.249968,0,0);}
.m82_c00100{transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164147,0.001641,-0.002500,0.249988,0,0);}
.m7e_c00100{transform:matrix(0.164372,0.001644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164372,0.001644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164372,0.001644,-0.002500,0.249988,0,0);}
.m88_c00100{transform:matrix(0.164787,0.001648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164787,0.001648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164787,0.001648,-0.002500,0.249988,0,0);}
.m65_c00100{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);}
.m4_c00100{transform:matrix(0.165380,0.001819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165380,0.001819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165380,0.001819,-0.002750,0.249985,0,0);}
.meb_c00100{transform:matrix(0.165564,0.002649,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165564,0.002649,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165564,0.002649,-0.003999,0.249968,0,0);}
.m2c_c00100{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);}
.m42_c00100{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);}
.m54_c00100{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);}
.mc8_c00100{transform:matrix(0.168638,0.002024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168638,0.002024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168638,0.002024,-0.003000,0.249982,0,0);}
.m87_c00100{transform:matrix(0.168942,0.001689,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168942,0.001689,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168942,0.001689,-0.002500,0.249988,0,0);}
.m25_c00100{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.md7_c00100{transform:matrix(0.169608,0.002035,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169608,0.002035,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169608,0.002035,-0.003000,0.249982,0,0);}
.m41_c00100{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);}
.m86_c00100{transform:matrix(0.170981,0.001710,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170981,0.001710,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170981,0.001710,-0.002500,0.249988,0,0);}
.mc9_c00100{transform:matrix(0.171893,0.002063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171893,0.002063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171893,0.002063,-0.003000,0.249982,0,0);}
.m1f_c00100{transform:matrix(0.171898,-0.005157,0.007497,0.249888,0,0);-ms-transform:matrix(0.171898,-0.005157,0.007497,0.249888,0,0);-webkit-transform:matrix(0.171898,-0.005157,0.007497,0.249888,0,0);}
.m44_c00100{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);}
.mf0_c00100{transform:matrix(0.172618,0.002762,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172618,0.002762,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172618,0.002762,-0.003999,0.249968,0,0);}
.mc0_c00100{transform:matrix(0.172938,0.002767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172938,0.002767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172938,0.002767,-0.003999,0.249968,0,0);}
.m8f_c00100{transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);}
.m4f_c00100{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);}
.md8_c00100{transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);}
.m81_c00100{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);}
.m45_c00100{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);}
.m9f_c00100{transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);}
.m56_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);}
.m48_c00100{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);}
.me1_c00100{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);}
.m43_c00100{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);}
.m5f_c00100{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);}
.m97_c00100{transform:matrix(0.176836,0.001768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176836,0.001768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176836,0.001768,-0.002500,0.249988,0,0);}
.m7b_c00100{transform:matrix(0.177891,0.001779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177891,0.001779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177891,0.001779,-0.002500,0.249988,0,0);}
.m3a_c00100{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);}
.m57_c00100{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);}
.m33_c00100{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);}
.m2f_c00100{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);}
.me_c00100{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);}
.m6b_c00100{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);}
.mef_c00100{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);}
.m8a_c00100{transform:matrix(0.179706,0.001797,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179706,0.001797,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179706,0.001797,-0.002500,0.249988,0,0);}
.m34_c00100{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);}
.med_c00100{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);}
.ma3_c00100{transform:matrix(0.182339,0.002735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182339,0.002735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182339,0.002735,-0.003750,0.249972,0,0);}
.m63_c00100{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);}
.ma4_c00100{transform:matrix(0.182524,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182524,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182524,0.002738,-0.003750,0.249972,0,0);}
.mb8_c00100{transform:matrix(0.182582,0.002921,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182582,0.002921,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182582,0.002921,-0.003999,0.249968,0,0);}
.m30_c00100{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);}
.m13_c00100{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);}
.mc1_c00100{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);}
.mdf_c00100{transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);}
.maf_c00100{transform:matrix(0.183759,0.002756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183759,0.002756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183759,0.002756,-0.003750,0.249972,0,0);}
.m31_c00100{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);}
.m62_c00100{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);}
.mb6_c00100{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);}
.m55_c00100{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);}
.mae_c00100{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);}
.m84_c00100{transform:matrix(0.186241,0.001862,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186241,0.001862,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186241,0.001862,-0.002500,0.249988,0,0);}
.m3d_c00100{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);}
.md4_c00100{transform:matrix(0.187911,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187911,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187911,0.002255,-0.003000,0.249982,0,0);}
.me7_c00100{transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187921,0.003007,-0.003999,0.249968,0,0);}
.m80_c00100{transform:matrix(0.187936,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187936,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187936,0.001879,-0.002500,0.249988,0,0);}
.m6e_c00100{transform:matrix(0.187991,0.001880,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187991,0.001880,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187991,0.001880,-0.002500,0.249988,0,0);}
.m51_c00100{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);}
.m94_c00100{transform:matrix(0.188641,0.001886,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188641,0.001886,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188641,0.001886,-0.002500,0.249988,0,0);}
.me0_c00100{transform:matrix(0.189026,0.002268,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189026,0.002268,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189026,0.002268,-0.003000,0.249982,0,0);}
.m11_c00100{transform:matrix(0.189684,0.002845,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189684,0.002845,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189684,0.002845,-0.003750,0.249972,0,0);}
.m8c_c00100{transform:matrix(0.190205,0.001902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190205,0.001902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190205,0.001902,-0.002500,0.249988,0,0);}
.mb_c00100{transform:matrix(0.190773,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190773,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190773,0.002099,-0.002750,0.249985,0,0);}
.m64_c00100{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);}
.m37_c00100{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);}
.me3_c00100{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);}
.md6_c00100{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);}
.m92_c00100{transform:matrix(0.191755,0.001918,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191755,0.001918,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191755,0.001918,-0.002500,0.249988,0,0);}
.mdb_c00100{transform:matrix(0.192236,0.002307,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192236,0.002307,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192236,0.002307,-0.003000,0.249982,0,0);}
.me8_c00100{transform:matrix(0.192325,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192325,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192325,0.003077,-0.003999,0.249968,0,0);}
.mf4_c00100{transform:matrix(0.192585,0.003081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192585,0.003081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192585,0.003081,-0.003999,0.249968,0,0);}
.mdc_c00100{transform:matrix(0.193041,0.002316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193041,0.002316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193041,0.002316,-0.003000,0.249982,0,0);}
.m91_c00100{transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);}
.m12_c00100{transform:matrix(0.193278,0.002899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193278,0.002899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193278,0.002899,-0.003750,0.249972,0,0);}
.mdd_c00100{transform:matrix(0.193321,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193321,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193321,0.002320,-0.003000,0.249982,0,0);}
.m2_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);}
.mcc_c00100{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);}
.md_c00100{transform:matrix(0.194153,0.002912,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194153,0.002912,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194153,0.002912,-0.003750,0.249972,0,0);}
.mba_c00100{transform:matrix(0.194195,0.003107,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194195,0.003107,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194195,0.003107,-0.003999,0.249968,0,0);}
.m4d_c00100{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);}
.m85_c00100{transform:matrix(0.194380,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194380,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194380,0.001944,-0.002500,0.249988,0,0);}
.m52_c00100{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);}
.m78_c00100{transform:matrix(0.194645,0.001946,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194645,0.001946,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194645,0.001946,-0.002500,0.249988,0,0);}
.m73_c00100{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);}
.mda_c00100{transform:matrix(0.195246,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195246,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195246,0.002343,-0.003000,0.249982,0,0);}
.md2_c00100{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);}
.m8e_c00100{transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);}
.mbe_c00100{transform:matrix(0.196185,0.003139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196185,0.003139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196185,0.003139,-0.003999,0.249968,0,0);}
.mf5_c00100{transform:matrix(0.196280,0.003140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196280,0.003140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196280,0.003140,-0.003999,0.249968,0,0);}
.mbf_c00100{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);}
.m46_c00100{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);}
.m7a_c00100{transform:matrix(0.197225,0.001972,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197225,0.001972,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197225,0.001972,-0.002500,0.249988,0,0);}
.mcd_c00100{transform:matrix(0.197326,0.002368,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197326,0.002368,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197326,0.002368,-0.003000,0.249982,0,0);}
.m5c_c00100{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);}
.mab_c00100{transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);}
.mb0_c00100{transform:matrix(0.198878,0.002983,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198878,0.002983,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198878,0.002983,-0.003750,0.249972,0,0);}
.mb9_c00100{transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);}
.m83_c00100{transform:matrix(0.199010,0.001990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199010,0.001990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199010,0.001990,-0.002500,0.249988,0,0);}
.me9_c00100{transform:matrix(0.199599,0.003194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199599,0.003194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199599,0.003194,-0.003999,0.249968,0,0);}
.mf_c00100{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);}
.m93_c00100{transform:matrix(0.199830,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199830,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199830,0.001998,-0.002500,0.249988,0,0);}
.m8d_c00100{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);}
.ma_c00100{transform:matrix(0.200728,0.002208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200728,0.002208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200728,0.002208,-0.002750,0.249985,0,0);}
.m9e_c00100{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);}
.m21_c00100{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);}
.m36_c00100{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);}
.m53_c00100{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);}
.m89_c00100{transform:matrix(0.202255,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202255,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202255,0.002023,-0.002500,0.249988,0,0);}
.m2d_c00100{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);}
.mac_c00100{transform:matrix(0.203202,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203202,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203202,0.003048,-0.003750,0.249972,0,0);}
.m95_c00100{transform:matrix(0.203220,0.002032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203220,0.002032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203220,0.002032,-0.002500,0.249988,0,0);}
.m9b_c00100{transform:matrix(0.203600,0.002036,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203600,0.002036,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203600,0.002036,-0.002500,0.249988,0,0);}
.mc2_c00100{transform:matrix(0.203954,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203954,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203954,0.003263,-0.003999,0.249968,0,0);}
.m1_c00100{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);}
.me2_c00100{transform:matrix(0.204365,0.002452,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204365,0.002452,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204365,0.002452,-0.003000,0.249982,0,0);}
.mc4_c00100{transform:matrix(0.205684,0.003291,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205684,0.003291,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205684,0.003291,-0.003999,0.249968,0,0);}
.mfb_c00100{transform:matrix(0.205869,0.003294,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205869,0.003294,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205869,0.003294,-0.003999,0.249968,0,0);}
.md0_c00100{transform:matrix(0.205980,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205980,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205980,0.002472,-0.003000,0.249982,0,0);}
.m9c_c00100{transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);}
.mb7_c00100{transform:matrix(0.206669,0.003307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206669,0.003307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206669,0.003307,-0.003999,0.249968,0,0);}
.m77_c00100{transform:matrix(0.208775,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208775,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208775,0.002088,-0.002500,0.249988,0,0);}
.mf7_c00100{transform:matrix(0.208858,0.003342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208858,0.003342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208858,0.003342,-0.003999,0.249968,0,0);}
.m22_c00100{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);}
.m66_c00100{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);}
.m9a_c00100{transform:matrix(0.209640,0.002096,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209640,0.002096,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209640,0.002096,-0.002500,0.249988,0,0);}
.m8_c00100{transform:matrix(0.211517,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211517,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211517,0.002327,-0.002750,0.249985,0,0);}
.m7f_c00100{transform:matrix(0.211849,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211849,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211849,0.002118,-0.002500,0.249988,0,0);}
.md5_c00100{transform:matrix(0.211995,0.002544,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211995,0.002544,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211995,0.002544,-0.003000,0.249982,0,0);}
.m4b_c00100{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);}
.m10_c00100{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);}
.m61_c00100{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);}
.md3_c00100{transform:matrix(0.212495,0.002550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212495,0.002550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212495,0.002550,-0.003000,0.249982,0,0);}
.mf2_c00100{transform:matrix(0.213063,0.003409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213063,0.003409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213063,0.003409,-0.003999,0.249968,0,0);}
.m90_c00100{transform:matrix(0.213884,0.002139,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213884,0.002139,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213884,0.002139,-0.002500,0.249988,0,0);}
.m2a_c00100{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);}
.mbb_c00100{transform:matrix(0.216372,0.003462,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216372,0.003462,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216372,0.003462,-0.003999,0.249968,0,0);}
.m60_c00100{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);}
.m3c_c00100{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);}
.md9_c00100{transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);}
.md1_c00100{transform:matrix(0.217979,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217979,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217979,0.002616,-0.003000,0.249982,0,0);}
.m98_c00100{transform:matrix(0.218599,0.002186,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218599,0.002186,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218599,0.002186,-0.002500,0.249988,0,0);}
.m67_c00100{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);}
.mc5_c00100{transform:matrix(0.219032,0.003505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219032,0.003505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219032,0.003505,-0.003999,0.249968,0,0);}
.mc7_c00100{transform:matrix(0.219544,0.002635,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219544,0.002635,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219544,0.002635,-0.003000,0.249982,0,0);}
.m3e_c00100{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);}
.m8b_c00100{transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);}
.m28_c00100{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);}
.m3_c00100{transform:matrix(0.221617,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221617,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221617,0.002438,-0.002750,0.249985,0,0);}
.mf8_c00100{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);}
.mee_c00100{transform:matrix(0.222382,0.003558,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222382,0.003558,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222382,0.003558,-0.003999,0.249968,0,0);}
.ma1_c00100{transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);}
.mbd_c00100{transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);}
.mfa_c00100{transform:matrix(0.223911,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223911,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223911,0.003583,-0.003999,0.249968,0,0);}
.m79_c00100{transform:matrix(0.223929,0.002239,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223929,0.002239,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223929,0.002239,-0.002500,0.249988,0,0);}
.m9d_c00100{transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);}
.m71_c00100{transform:matrix(0.224804,0.002248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224804,0.002248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224804,0.002248,-0.002500,0.249988,0,0);}
.m24_c00100{transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);}
.mc6_c00100{transform:matrix(0.228634,0.002744,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228634,0.002744,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228634,0.002744,-0.003000,0.249982,0,0);}
.mde_c00100{transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);}
.m76_c00100{transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231918,0.002319,-0.002500,0.249988,0,0);}
.m27_c00100{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.233006,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233006,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233006,0.002563,-0.002750,0.249985,0,0);}
.m1e_c00100{transform:matrix(0.234230,-0.007027,0.007497,0.249888,0,0);-ms-transform:matrix(0.234230,-0.007027,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234230,-0.007027,0.007497,0.249888,0,0);}
.m7c_c00100{transform:matrix(0.234538,0.002345,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234538,0.002345,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234538,0.002345,-0.002500,0.249988,0,0);}
.m59_c00100{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mf6_c00100{transform:matrix(0.236925,0.003791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236925,0.003791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236925,0.003791,-0.003999,0.249968,0,0);}
.m26_c00100{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);}
.m70_c00100{transform:matrix(0.237488,0.002375,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237488,0.002375,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237488,0.002375,-0.002500,0.249988,0,0);}
.m4e_c00100{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);}
.m9_c00100{transform:matrix(0.238981,0.002629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238981,0.002629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238981,0.002629,-0.002750,0.249985,0,0);}
.ma0_c00100{transform:matrix(0.239118,0.003587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239118,0.003587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239118,0.003587,-0.003750,0.249972,0,0);}
.mea_c00100{transform:matrix(0.240709,0.003851,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240709,0.003851,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240709,0.003851,-0.003999,0.249968,0,0);}
.m16_c00100{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);}
.mce_c00100{transform:matrix(0.241653,0.002900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241653,0.002900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241653,0.002900,-0.003000,0.249982,0,0);}
.m3b_c00100{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);}
.m15_c00100{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.me5_c00100{transform:matrix(0.251523,0.004024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251523,0.004024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251523,0.004024,-0.003999,0.249968,0,0);}
.mb1_c00100{transform:matrix(0.251707,0.003776,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251707,0.003776,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251707,0.003776,-0.003750,0.249972,0,0);}
.m75_c00100{transform:matrix(0.253117,0.002531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253117,0.002531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253117,0.002531,-0.002500,0.249988,0,0);}
.m69_c00100{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.ma5_c00100{transform:matrix(0.253826,0.003807,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253826,0.003807,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253826,0.003807,-0.003750,0.249972,0,0);}
.mb4_c00100{transform:matrix(0.257892,0.004126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257892,0.004126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257892,0.004126,-0.003999,0.249968,0,0);}
.mbc_c00100{transform:matrix(0.260807,0.004173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260807,0.004173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260807,0.004173,-0.003999,0.249968,0,0);}
.mf1_c00100{transform:matrix(0.262841,0.004205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262841,0.004205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262841,0.004205,-0.003999,0.249968,0,0);}
.m14_c00100{transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264660,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.270699,0.002978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270699,0.002978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270699,0.002978,-0.002750,0.249985,0,0);}
.m17_c00100{transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);}
.me6_c00100{transform:matrix(0.272350,0.004358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272350,0.004358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272350,0.004358,-0.003999,0.249968,0,0);}
.m20_c00100{transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.ma7_c00100{transform:matrix(0.291892,0.004378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291892,0.004378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291892,0.004378,-0.003750,0.249972,0,0);}
.m1d_c00100{transform:matrix(0.295462,-0.008864,0.007497,0.249888,0,0);-ms-transform:matrix(0.295462,-0.008864,0.007497,0.249888,0,0);-webkit-transform:matrix(0.295462,-0.008864,0.007497,0.249888,0,0);}
.m29_c00100{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.me4_c00100{transform:matrix(0.297764,0.003573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297764,0.003573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297764,0.003573,-0.003000,0.249982,0,0);}
.m74_c00100{transform:matrix(0.304145,0.003041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304145,0.003041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304145,0.003041,-0.002500,0.249988,0,0);}
.mf3_c00100{transform:matrix(0.304971,0.004880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.304971,0.004880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.304971,0.004880,-0.003999,0.249968,0,0);}
.ma2_c00100{transform:matrix(0.309195,0.004638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.309195,0.004638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.309195,0.004638,-0.003750,0.249972,0,0);}
.maa_c00100{transform:matrix(0.320239,0.004804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320239,0.004804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320239,0.004804,-0.003750,0.249972,0,0);}
.m72_c00100{transform:matrix(0.320429,0.003204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.320429,0.003204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.320429,0.003204,-0.002500,0.249988,0,0);}
.mf9_c00100{transform:matrix(0.323869,0.005182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.323869,0.005182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.323869,0.005182,-0.003999,0.249968,0,0);}
.mb2_c00100{transform:matrix(0.336687,0.005050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.336687,0.005050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.336687,0.005050,-0.003750,0.249972,0,0);}
.m68_c00100{transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.358180,0.005373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.358180,0.005373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.358180,0.005373,-0.003750,0.249972,0,0);}
.m1a_c00100{transform:matrix(0.365940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365940,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.421970,-0.012659,0.007497,0.249888,0,0);-ms-transform:matrix(0.421970,-0.012659,0.007497,0.249888,0,0);-webkit-transform:matrix(0.421970,-0.012659,0.007497,0.249888,0,0);}
.m5_c00100{transform:matrix(0.443383,0.004877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.443383,0.004877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.443383,0.004877,-0.002750,0.249985,0,0);}
.m1b_c00100{transform:matrix(0.503848,-0.015115,0.007497,0.249888,0,0);-ms-transform:matrix(0.503848,-0.015115,0.007497,0.249888,0,0);-webkit-transform:matrix(0.503848,-0.015115,0.007497,0.249888,0,0);}
.m6d_c00100{transform:matrix(0.807560,0.008076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.807560,0.008076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.807560,0.008076,-0.002500,0.249988,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;}
.fsb_c00100{font-size:24.150000px;}
.fsd_c00100{font-size:61.953097px;}
.fs18_c00100{font-size:63.008063px;}
.fse_c00100{font-size:64.053202px;}
.fs3_c00100{font-size:65.100000px;}
.fs1_c00100{font-size:65.103938px;}
.fs0_c00100{font-size:67.200000px;}
.fs2_c00100{font-size:67.207560px;}
.fs7_c00100{font-size:68.250000px;}
.fs16_c00100{font-size:68.254914px;}
.fs13_c00100{font-size:69.308870px;}
.fs10_c00100{font-size:70.353517px;}
.fs15_c00100{font-size:70.355065px;}
.fs6_c00100{font-size:71.400000px;}
.fsf_c00100{font-size:71.403570px;}
.fs14_c00100{font-size:71.405141px;}
.fsa_c00100{font-size:72.450000px;}
.fs17_c00100{font-size:72.459273px;}
.fs9_c00100{font-size:74.550000px;}
.fs11_c00100{font-size:74.558386px;}
.fs8_c00100{font-size:75.600000px;}
.fsc_c00100{font-size:90.300000px;}
.fs12_c00100{font-size:93.460513px;}
.fs5_c00100{font-size:101.895822px;}
.fs4_c00100{font-size:302.536049px;}
.y0_c00100{bottom:0.000000px;}
.y13_c00100{bottom:141.435000px;}
.yb1_c00100{bottom:160.625220px;}
.yb0_c00100{bottom:161.417232px;}
.yaf_c00100{bottom:162.257304px;}
.yae_c00100{bottom:163.352820px;}
.yad_c00100{bottom:163.808892px;}
.yac_c00100{bottom:164.580624px;}
.yab_c00100{bottom:164.797368px;}
.yaa_c00100{bottom:165.461004px;}
.ya9_c00100{bottom:165.728100px;}
.ya8_c00100{bottom:166.400940px;}
.ya7_c00100{bottom:166.861572px;}
.ya6_c00100{bottom:182.170440px;}
.ya5_c00100{bottom:182.984016px;}
.ya4_c00100{bottom:183.568104px;}
.ya3_c00100{bottom:184.146000px;}
.ya2_c00100{bottom:184.660080px;}
.ya1_c00100{bottom:185.069328px;}
.ya0_c00100{bottom:185.515464px;}
.y9f_c00100{bottom:186.426312px;}
.y9e_c00100{bottom:186.729432px;}
.y9d_c00100{bottom:187.554792px;}
.y9c_c00100{bottom:187.891704px;}
.y9b_c00100{bottom:188.493000px;}
.y12_c00100{bottom:207.813585px;}
.y11_c00100{bottom:208.712595px;}
.y10_c00100{bottom:209.189955px;}
.yf_c00100{bottom:209.409173px;}
.ye_c00100{bottom:210.015683px;}
.yd_c00100{bottom:210.644513px;}
.yc_c00100{bottom:211.515353px;}
.yb_c00100{bottom:211.953000px;}
.y9a_c00100{bottom:229.078722px;}
.y99_c00100{bottom:230.106036px;}
.y98_c00100{bottom:231.138180px;}
.y97_c00100{bottom:231.652164px;}
.y96_c00100{bottom:232.928364px;}
.y95_c00100{bottom:233.749482px;}
.y94_c00100{bottom:234.359628px;}
.y93_c00100{bottom:251.845464px;}
.y92_c00100{bottom:252.220398px;}
.y91_c00100{bottom:252.822204px;}
.y90_c00100{bottom:254.203044px;}
.y8f_c00100{bottom:255.477270px;}
.y8e_c00100{bottom:256.178100px;}
.y8d_c00100{bottom:256.740558px;}
.y8c_c00100{bottom:257.582586px;}
.y8b_c00100{bottom:273.285204px;}
.y8a_c00100{bottom:274.042572px;}
.y89_c00100{bottom:275.057466px;}
.y88_c00100{bottom:276.254340px;}
.y87_c00100{bottom:276.972102px;}
.y86_c00100{bottom:277.746234px;}
.y85_c00100{bottom:278.048844px;}
.y84_c00100{bottom:278.468844px;}
.y83_c00100{bottom:279.992358px;}
.y82_c00100{bottom:299.051016px;}
.y81_c00100{bottom:299.569452px;}
.y80_c00100{bottom:299.873364px;}
.y7f_c00100{bottom:300.258978px;}
.y7e_c00100{bottom:300.911226px;}
.y7d_c00100{bottom:301.261002px;}
.y7c_c00100{bottom:301.591500px;}
.y7b_c00100{bottom:320.016324px;}
.y7a_c00100{bottom:320.791380px;}
.y79_c00100{bottom:321.706608px;}
.y78_c00100{bottom:321.962100px;}
.y77_c00100{bottom:322.540860px;}
.y76_c00100{bottom:323.059320px;}
.y75_c00100{bottom:323.339616px;}
.y74_c00100{bottom:323.821500px;}
.y73_c00100{bottom:324.406332px;}
.y72_c00100{bottom:324.810300px;}
.y71_c00100{bottom:337.126644px;}
.y70_c00100{bottom:338.232492px;}
.y6f_c00100{bottom:338.840508px;}
.y6e_c00100{bottom:339.489876px;}
.y6d_c00100{bottom:340.491996px;}
.y6c_c00100{bottom:340.889460px;}
.y6b_c00100{bottom:341.511804px;}
.y6a_c00100{bottom:342.241716px;}
.y69_c00100{bottom:342.364500px;}
.y68_c00100{bottom:360.957667px;}
.y67_c00100{bottom:361.476427px;}
.y66_c00100{bottom:361.711125px;}
.y65_c00100{bottom:362.608590px;}
.y64_c00100{bottom:362.882257px;}
.y63_c00100{bottom:363.054127px;}
.y62_c00100{bottom:363.773437px;}
.y61_c00100{bottom:364.495200px;}
.y60_c00100{bottom:389.978055px;}
.y5f_c00100{bottom:390.700042px;}
.y5e_c00100{bottom:391.768928px;}
.y5d_c00100{bottom:415.528927px;}
.y5c_c00100{bottom:416.565907px;}
.y5b_c00100{bottom:416.889570px;}
.y5a_c00100{bottom:417.301522px;}
.y59_c00100{bottom:418.068412px;}
.y58_c00100{bottom:418.287450px;}
.y57_c00100{bottom:419.149515px;}
.y56_c00100{bottom:419.583000px;}
.ya_c00100{bottom:438.071424px;}
.y9_c00100{bottom:438.783960px;}
.y8_c00100{bottom:439.155639px;}
.y7_c00100{bottom:439.505786px;}
.y6_c00100{bottom:439.981315px;}
.y5_c00100{bottom:440.222001px;}
.y4_c00100{bottom:440.714856px;}
.y3_c00100{bottom:441.008507px;}
.y2_c00100{bottom:441.288000px;}
.y55_c00100{bottom:461.944260px;}
.y54_c00100{bottom:462.574125px;}
.y53_c00100{bottom:463.034160px;}
.y52_c00100{bottom:463.210485px;}
.y51_c00100{bottom:464.018010px;}
.y50_c00100{bottom:464.353125px;}
.y4f_c00100{bottom:464.879595px;}
.y4e_c00100{bottom:465.203820px;}
.y4d_c00100{bottom:483.584970px;}
.y4c_c00100{bottom:484.040190px;}
.y4b_c00100{bottom:484.910775px;}
.y4a_c00100{bottom:485.451645px;}
.y49_c00100{bottom:485.912595px;}
.y48_c00100{bottom:486.289560px;}
.y47_c00100{bottom:486.687375px;}
.y46_c00100{bottom:487.347300px;}
.y45_c00100{bottom:506.751120px;}
.y44_c00100{bottom:507.121020px;}
.y43_c00100{bottom:507.589155px;}
.y42_c00100{bottom:507.781905px;}
.y41_c00100{bottom:508.099560px;}
.y40_c00100{bottom:508.547010px;}
.y3f_c00100{bottom:508.806930px;}
.y3e_c00100{bottom:509.035275px;}
.y3d_c00100{bottom:509.486865px;}
.y3a_c00100{bottom:530.342715px;}
.y3b_c00100{bottom:530.343030px;}
.y33_c00100{bottom:530.343195px;}
.y34_c00100{bottom:530.343210px;}
.y35_c00100{bottom:530.343225px;}
.y39_c00100{bottom:530.343300px;}
.y3c_c00100{bottom:530.343345px;}
.y36_c00100{bottom:530.343840px;}
.y38_c00100{bottom:530.343885px;}
.y37_c00100{bottom:530.344170px;}
.y32_c00100{bottom:551.981640px;}
.y31_c00100{bottom:552.514860px;}
.y30_c00100{bottom:552.837990px;}
.y2f_c00100{bottom:553.430835px;}
.y2e_c00100{bottom:553.889850px;}
.y2d_c00100{bottom:554.249025px;}
.y2c_c00100{bottom:554.850195px;}
.y2b_c00100{bottom:573.752430px;}
.y2a_c00100{bottom:574.168050px;}
.y29_c00100{bottom:574.428810px;}
.y28_c00100{bottom:575.007735px;}
.y27_c00100{bottom:575.604480px;}
.y26_c00100{bottom:576.401565px;}
.y25_c00100{bottom:576.547980px;}
.y24_c00100{bottom:576.880515px;}
.y23_c00100{bottom:577.263000px;}
.y22_c00100{bottom:614.392500px;}
.y1_c00100{bottom:620.482500px;}
.y21_c00100{bottom:628.423500px;}
.y20_c00100{bottom:642.402000px;}
.y1f_c00100{bottom:665.308500px;}
.y1e_c00100{bottom:687.949500px;}
.y1d_c00100{bottom:710.530500px;}
.y1c_c00100{bottom:733.720500px;}
.y1b_c00100{bottom:756.192000px;}
.y1a_c00100{bottom:778.561500px;}
.y19_c00100{bottom:801.112500px;}
.y18_c00100{bottom:847.019280px;}
.y17_c00100{bottom:847.019415px;}
.y16_c00100{bottom:847.019610px;}
.y15_c00100{bottom:847.020150px;}
.y14_c00100{bottom:887.805000px;}
.hd_c00100{height:24.150000px;}
.hf_c00100{height:61.953097px;}
.h1a_c00100{height:63.008063px;}
.h10_c00100{height:64.053202px;}
.h5_c00100{height:65.100000px;}
.h3_c00100{height:65.103938px;}
.h2_c00100{height:67.200000px;}
.h4_c00100{height:67.207560px;}
.h9_c00100{height:68.250000px;}
.h18_c00100{height:68.254914px;}
.h15_c00100{height:69.308870px;}
.h12_c00100{height:70.353517px;}
.h17_c00100{height:70.355065px;}
.h8_c00100{height:71.400000px;}
.h11_c00100{height:71.403570px;}
.h16_c00100{height:71.405141px;}
.hc_c00100{height:72.450000px;}
.h19_c00100{height:72.459273px;}
.hb_c00100{height:74.550000px;}
.h13_c00100{height:74.558386px;}
.ha_c00100{height:75.600000px;}
.he_c00100{height:90.300000px;}
.h14_c00100{height:93.460513px;}
.h7_c00100{height:101.895822px;}
.h6_c00100{height:302.536049px;}
.h1_c00100{height:1005.000000px;}
.h0_c00100{height:1005.150000px;}
.w0_c00100{width:705.450000px;}
.w1_c00100{width:705.750000px;}
.x0_c00100{left:0.000000px;}
.xd_c00100{left:125.089500px;}
.x7a_c00100{left:127.396500px;}
.x7e_c00100{left:128.878584px;}
.x15_c00100{left:130.140000px;}
.x6d_c00100{left:132.637500px;}
.x74_c00100{left:134.031682px;}
.x1c_c00100{left:135.147000px;}
.x4_c00100{left:136.467000px;}
.x5c_c00100{left:137.853855px;}
.x41_c00100{left:139.050000px;}
.x20_c00100{left:140.130000px;}
.x71_c00100{left:145.394752px;}
.x90_c00100{left:148.254000px;}
.xe_c00100{left:154.266000px;}
.x7f_c00100{left:155.814516px;}
.x48_c00100{left:156.870000px;}
.x96_c00100{left:157.938096px;}
.x5_c00100{left:161.875500px;}
.x21_c00100{left:163.350000px;}
.x1_c00100{left:164.700000px;}
.x2a_c00100{left:166.320000px;}
.x3b_c00100{left:167.940000px;}
.x8c_c00100{left:171.257796px;}
.x35_c00100{left:176.580000px;}
.x7b_c00100{left:180.690000px;}
.x4d_c00100{left:184.410000px;}
.x16_c00100{left:186.570000px;}
.x6_c00100{left:188.571000px;}
.x81_c00100{left:191.254500px;}
.x1d_c00100{left:193.076535px;}
.x69_c00100{left:195.660075px;}
.x36_c00100{left:197.100000px;}
.x75_c00100{left:199.653120px;}
.x62_c00100{left:203.312355px;}
.x5d_c00100{left:204.571515px;}
.x91_c00100{left:206.892000px;}
.x57_c00100{left:209.749500px;}
.xf_c00100{left:212.322000px;}
.x84_c00100{left:214.687104px;}
.x6e_c00100{left:219.007500px;}
.x72_c00100{left:221.754900px;}
.x2_c00100{left:223.290000px;}
.x58_c00100{left:224.391000px;}
.x17_c00100{left:225.990000px;}
.x2b_c00100{left:228.150000px;}
.x3c_c00100{left:229.230000px;}
.x22_c00100{left:231.120000px;}
.x7_c00100{left:233.376000px;}
.x42_c00100{left:236.250000px;}
.x2c_c00100{left:241.650000px;}
.x63_c00100{left:243.004830px;}
.x5e_c00100{left:244.539420px;}
.x82_c00100{left:245.608500px;}
.x37_c00100{left:247.320000px;}
.x89_c00100{left:250.630920px;}
.x23_c00100{left:252.450000px;}
.x10_c00100{left:254.244000px;}
.x8_c00100{left:255.256500px;}
.x92_c00100{left:258.477000px;}
.x3d_c00100{left:260.010000px;}
.x18_c00100{left:261.090000px;}
.x2d_c00100{left:262.710000px;}
.x76_c00100{left:265.111058px;}
.x49_c00100{left:266.760000px;}
.x24_c00100{left:269.730000px;}
.x73_c00100{left:273.288165px;}
.x43_c00100{left:274.590000px;}
.x93_c00100{left:277.422000px;}
.x38_c00100{left:278.640000px;}
.x77_c00100{left:280.669980px;}
.x6f_c00100{left:284.736000px;}
.x4e_c00100{left:289.710000px;}
.x67_c00100{left:291.765285px;}
.x85_c00100{left:293.533998px;}
.x11_c00100{left:294.678000px;}
.x9_c00100{left:298.486500px;}
.x1e_c00100{left:299.504250px;}
.x44_c00100{left:301.860000px;}
.x83_c00100{left:303.069000px;}
.x25_c00100{left:304.290000px;}
.x78_c00100{left:305.515965px;}
.x7c_c00100{left:307.060500px;}
.x64_c00100{left:308.078340px;}
.x12_c00100{left:309.292500px;}
.x39_c00100{left:311.580000px;}
.x3_c00100{left:313.740000px;}
.x6a_c00100{left:317.126475px;}
.x80_c00100{left:318.706608px;}
.x2f_c00100{left:319.950000px;}
.x8a_c00100{left:321.436326px;}
.x3e_c00100{left:324.540000px;}
.x4a_c00100{left:326.970000px;}
.xa_c00100{left:330.318000px;}
.x86_c00100{left:331.344330px;}
.x6b_c00100{left:333.108810px;}
.x8d_c00100{left:334.358448px;}
.x54_c00100{left:335.610000px;}
.x53_c00100{left:339.930000px;}
.x13_c00100{left:341.116500px;}
.x30_c00100{left:344.790000px;}
.x45_c00100{left:346.410000px;}
.x4f_c00100{left:347.490000px;}
.x4b_c00100{left:349.380000px;}
.x26_c00100{left:357.480000px;}
.x5f_c00100{left:361.426590px;}
.xb_c00100{left:364.107000px;}
.x50_c00100{left:369.630000px;}
.x19_c00100{left:372.060000px;}
.x6c_c00100{left:374.911890px;}
.x27_c00100{left:378.000000px;}
.x31_c00100{left:383.400000px;}
.x55_c00100{left:385.290000px;}
.x79_c00100{left:387.051848px;}
.x97_c00100{left:388.126728px;}
.x3f_c00100{left:391.500000px;}
.x87_c00100{left:394.328538px;}
.x4c_c00100{left:396.090000px;}
.x60_c00100{left:397.339950px;}
.x8e_c00100{left:398.867352px;}
.x14_c00100{left:401.050500px;}
.x70_c00100{left:402.909000px;}
.x56_c00100{left:403.920000px;}
.x65_c00100{left:406.633680px;}
.x2e_c00100{left:407.970000px;}
.x40_c00100{left:409.590000px;}
.x32_c00100{left:414.180000px;}
.x28_c00100{left:417.150000px;}
.x94_c00100{left:419.941500px;}
.x59_c00100{left:421.666500px;}
.x46_c00100{left:424.170000px;}
.xc_c00100{left:428.883000px;}
.x33_c00100{left:431.730000px;}
.x98_c00100{left:434.817240px;}
.x3a_c00100{left:436.050000px;}
.x68_c00100{left:441.610785px;}
.x51_c00100{left:443.070000px;}
.x5a_c00100{left:447.742500px;}
.x8b_c00100{left:452.391894px;}
.x7d_c00100{left:454.762500px;}
.x61_c00100{left:456.512535px;}
.x34_c00100{left:460.890000px;}
.x8f_c00100{left:463.098774px;}
.x66_c00100{left:471.977220px;}
.x1f_c00100{left:476.702595px;}
.x99_c00100{left:478.785324px;}
.x29_c00100{left:480.870000px;}
.x1a_c00100{left:484.650000px;}
.x88_c00100{left:487.634208px;}
.x5b_c00100{left:489.304500px;}
.x47_c00100{left:493.290000px;}
.x52_c00100{left:495.990000px;}
.x1b_c00100{left:520.290000px;}
.x95_c00100{left:543.414000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fsb_c00100{font-size:21.466667pt;}
.fsd_c00100{font-size:55.069420pt;}
.fs18_c00100{font-size:56.007168pt;}
.fse_c00100{font-size:56.936180pt;}
.fs3_c00100{font-size:57.866667pt;}
.fs1_c00100{font-size:57.870167pt;}
.fs0_c00100{font-size:59.733333pt;}
.fs2_c00100{font-size:59.740053pt;}
.fs7_c00100{font-size:60.666667pt;}
.fs16_c00100{font-size:60.671035pt;}
.fs13_c00100{font-size:61.607884pt;}
.fs10_c00100{font-size:62.536460pt;}
.fs15_c00100{font-size:62.537836pt;}
.fs6_c00100{font-size:63.466667pt;}
.fsf_c00100{font-size:63.469840pt;}
.fs14_c00100{font-size:63.471236pt;}
.fsa_c00100{font-size:64.400000pt;}
.fs17_c00100{font-size:64.408243pt;}
.fs9_c00100{font-size:66.266667pt;}
.fs11_c00100{font-size:66.274121pt;}
.fs8_c00100{font-size:67.200000pt;}
.fsc_c00100{font-size:80.266667pt;}
.fs12_c00100{font-size:83.076011pt;}
.fs5_c00100{font-size:90.574064pt;}
.fs4_c00100{font-size:268.920933pt;}
.y0_c00100{bottom:0.000000pt;}
.y13_c00100{bottom:125.720000pt;}
.yb1_c00100{bottom:142.777973pt;}
.yb0_c00100{bottom:143.481984pt;}
.yaf_c00100{bottom:144.228715pt;}
.yae_c00100{bottom:145.202507pt;}
.yad_c00100{bottom:145.607904pt;}
.yac_c00100{bottom:146.293888pt;}
.yab_c00100{bottom:146.486549pt;}
.yaa_c00100{bottom:147.076448pt;}
.ya9_c00100{bottom:147.313867pt;}
.ya8_c00100{bottom:147.911947pt;}
.ya7_c00100{bottom:148.321397pt;}
.ya6_c00100{bottom:161.929280pt;}
.ya5_c00100{bottom:162.652459pt;}
.ya4_c00100{bottom:163.171648pt;}
.ya3_c00100{bottom:163.685333pt;}
.ya2_c00100{bottom:164.142293pt;}
.ya1_c00100{bottom:164.506069pt;}
.ya0_c00100{bottom:164.902635pt;}
.y9f_c00100{bottom:165.712277pt;}
.y9e_c00100{bottom:165.981717pt;}
.y9d_c00100{bottom:166.715371pt;}
.y9c_c00100{bottom:167.014848pt;}
.y9b_c00100{bottom:167.549333pt;}
.y12_c00100{bottom:184.723187pt;}
.y11_c00100{bottom:185.522307pt;}
.y10_c00100{bottom:185.946627pt;}
.yf_c00100{bottom:186.141487pt;}
.ye_c00100{bottom:186.680607pt;}
.yd_c00100{bottom:187.239567pt;}
.yc_c00100{bottom:188.013647pt;}
.yb_c00100{bottom:188.402667pt;}
.y9a_c00100{bottom:203.625531pt;}
.y99_c00100{bottom:204.538699pt;}
.y98_c00100{bottom:205.456160pt;}
.y97_c00100{bottom:205.913035pt;}
.y96_c00100{bottom:207.047435pt;}
.y95_c00100{bottom:207.777317pt;}
.y94_c00100{bottom:208.319669pt;}
.y93_c00100{bottom:223.862635pt;}
.y92_c00100{bottom:224.195909pt;}
.y91_c00100{bottom:224.730848pt;}
.y90_c00100{bottom:225.958261pt;}
.y8f_c00100{bottom:227.090907pt;}
.y8e_c00100{bottom:227.713867pt;}
.y8d_c00100{bottom:228.213829pt;}
.y8c_c00100{bottom:228.962299pt;}
.y8b_c00100{bottom:242.920181pt;}
.y8a_c00100{bottom:243.593397pt;}
.y89_c00100{bottom:244.495525pt;}
.y88_c00100{bottom:245.559413pt;}
.y87_c00100{bottom:246.197424pt;}
.y86_c00100{bottom:246.885541pt;}
.y85_c00100{bottom:247.154528pt;}
.y84_c00100{bottom:247.527861pt;}
.y83_c00100{bottom:248.882096pt;}
.y82_c00100{bottom:265.823125pt;}
.y81_c00100{bottom:266.283957pt;}
.y80_c00100{bottom:266.554101pt;}
.y7f_c00100{bottom:266.896869pt;}
.y7e_c00100{bottom:267.476645pt;}
.y7d_c00100{bottom:267.787557pt;}
.y7c_c00100{bottom:268.081333pt;}
.y7b_c00100{bottom:284.458955pt;}
.y7a_c00100{bottom:285.147893pt;}
.y79_c00100{bottom:285.961429pt;}
.y78_c00100{bottom:286.188533pt;}
.y77_c00100{bottom:286.702987pt;}
.y76_c00100{bottom:287.163840pt;}
.y75_c00100{bottom:287.412992pt;}
.y74_c00100{bottom:287.841333pt;}
.y73_c00100{bottom:288.361184pt;}
.y72_c00100{bottom:288.720267pt;}
.y71_c00100{bottom:299.668128pt;}
.y70_c00100{bottom:300.651104pt;}
.y6f_c00100{bottom:301.191563pt;}
.y6e_c00100{bottom:301.768779pt;}
.y6d_c00100{bottom:302.659552pt;}
.y6c_c00100{bottom:303.012853pt;}
.y6b_c00100{bottom:303.566048pt;}
.y6a_c00100{bottom:304.214859pt;}
.y69_c00100{bottom:304.324000pt;}
.y68_c00100{bottom:320.851260pt;}
.y67_c00100{bottom:321.312380pt;}
.y66_c00100{bottom:321.521000pt;}
.y65_c00100{bottom:322.318747pt;}
.y64_c00100{bottom:322.562007pt;}
.y63_c00100{bottom:322.714780pt;}
.y62_c00100{bottom:323.354167pt;}
.y61_c00100{bottom:323.995733pt;}
.y60_c00100{bottom:346.647160pt;}
.y5f_c00100{bottom:347.288927pt;}
.y5e_c00100{bottom:348.239047pt;}
.y5d_c00100{bottom:369.359047pt;}
.y5c_c00100{bottom:370.280807pt;}
.y5b_c00100{bottom:370.568507pt;}
.y5a_c00100{bottom:370.934687pt;}
.y59_c00100{bottom:371.616367pt;}
.y58_c00100{bottom:371.811067pt;}
.y57_c00100{bottom:372.577347pt;}
.y56_c00100{bottom:372.962667pt;}
.ya_c00100{bottom:389.396821pt;}
.y9_c00100{bottom:390.030187pt;}
.y8_c00100{bottom:390.360568pt;}
.y7_c00100{bottom:390.671809pt;}
.y6_c00100{bottom:391.094503pt;}
.y5_c00100{bottom:391.308445pt;}
.y4_c00100{bottom:391.746539pt;}
.y3_c00100{bottom:392.007561pt;}
.y2_c00100{bottom:392.256000pt;}
.y55_c00100{bottom:410.617120pt;}
.y54_c00100{bottom:411.177000pt;}
.y53_c00100{bottom:411.585920pt;}
.y52_c00100{bottom:411.742653pt;}
.y51_c00100{bottom:412.460453pt;}
.y50_c00100{bottom:412.758333pt;}
.y4f_c00100{bottom:413.226307pt;}
.y4e_c00100{bottom:413.514507pt;}
.y4d_c00100{bottom:429.853307pt;}
.y4c_c00100{bottom:430.257947pt;}
.y4b_c00100{bottom:431.031800pt;}
.y4a_c00100{bottom:431.512573pt;}
.y49_c00100{bottom:431.922307pt;}
.y48_c00100{bottom:432.257387pt;}
.y47_c00100{bottom:432.611000pt;}
.y46_c00100{bottom:433.197600pt;}
.y45_c00100{bottom:450.445440pt;}
.y44_c00100{bottom:450.774240pt;}
.y43_c00100{bottom:451.190360pt;}
.y42_c00100{bottom:451.361693pt;}
.y41_c00100{bottom:451.644053pt;}
.y40_c00100{bottom:452.041787pt;}
.y3f_c00100{bottom:452.272827pt;}
.y3e_c00100{bottom:452.475800pt;}
.y3d_c00100{bottom:452.877213pt;}
.y3a_c00100{bottom:471.415747pt;}
.y3b_c00100{bottom:471.416027pt;}
.y33_c00100{bottom:471.416173pt;}
.y34_c00100{bottom:471.416187pt;}
.y35_c00100{bottom:471.416200pt;}
.y39_c00100{bottom:471.416267pt;}
.y3c_c00100{bottom:471.416307pt;}
.y36_c00100{bottom:471.416747pt;}
.y38_c00100{bottom:471.416787pt;}
.y37_c00100{bottom:471.417040pt;}
.y32_c00100{bottom:490.650347pt;}
.y31_c00100{bottom:491.124320pt;}
.y30_c00100{bottom:491.411547pt;}
.y2f_c00100{bottom:491.938520pt;}
.y2e_c00100{bottom:492.346533pt;}
.y2d_c00100{bottom:492.665800pt;}
.y2c_c00100{bottom:493.200173pt;}
.y2b_c00100{bottom:510.002160pt;}
.y2a_c00100{bottom:510.371600pt;}
.y29_c00100{bottom:510.603387pt;}
.y28_c00100{bottom:511.117987pt;}
.y27_c00100{bottom:511.648427pt;}
.y26_c00100{bottom:512.356947pt;}
.y25_c00100{bottom:512.487093pt;}
.y24_c00100{bottom:512.782680pt;}
.y23_c00100{bottom:513.122667pt;}
.y22_c00100{bottom:546.126667pt;}
.y1_c00100{bottom:551.540000pt;}
.y21_c00100{bottom:558.598667pt;}
.y20_c00100{bottom:571.024000pt;}
.y1f_c00100{bottom:591.385333pt;}
.y1e_c00100{bottom:611.510667pt;}
.y1d_c00100{bottom:631.582667pt;}
.y1c_c00100{bottom:652.196000pt;}
.y1b_c00100{bottom:672.170667pt;}
.y1a_c00100{bottom:692.054667pt;}
.y19_c00100{bottom:712.100000pt;}
.y18_c00100{bottom:752.906027pt;}
.y17_c00100{bottom:752.906147pt;}
.y16_c00100{bottom:752.906320pt;}
.y15_c00100{bottom:752.906800pt;}
.y14_c00100{bottom:789.160000pt;}
.hd_c00100{height:21.466667pt;}
.hf_c00100{height:55.069420pt;}
.h1a_c00100{height:56.007168pt;}
.h10_c00100{height:56.936180pt;}
.h5_c00100{height:57.866667pt;}
.h3_c00100{height:57.870167pt;}
.h2_c00100{height:59.733333pt;}
.h4_c00100{height:59.740053pt;}
.h9_c00100{height:60.666667pt;}
.h18_c00100{height:60.671035pt;}
.h15_c00100{height:61.607884pt;}
.h12_c00100{height:62.536460pt;}
.h17_c00100{height:62.537836pt;}
.h8_c00100{height:63.466667pt;}
.h11_c00100{height:63.469840pt;}
.h16_c00100{height:63.471236pt;}
.hc_c00100{height:64.400000pt;}
.h19_c00100{height:64.408243pt;}
.hb_c00100{height:66.266667pt;}
.h13_c00100{height:66.274121pt;}
.ha_c00100{height:67.200000pt;}
.he_c00100{height:80.266667pt;}
.h14_c00100{height:83.076011pt;}
.h7_c00100{height:90.574064pt;}
.h6_c00100{height:268.920933pt;}
.h1_c00100{height:893.333333pt;}
.h0_c00100{height:893.466667pt;}
.w0_c00100{width:627.066667pt;}
.w1_c00100{width:627.333333pt;}
.x0_c00100{left:0.000000pt;}
.xd_c00100{left:111.190667pt;}
.x7a_c00100{left:113.241333pt;}
.x7e_c00100{left:114.558741pt;}
.x15_c00100{left:115.680000pt;}
.x6d_c00100{left:117.900000pt;}
.x74_c00100{left:119.139273pt;}
.x1c_c00100{left:120.130667pt;}
.x4_c00100{left:121.304000pt;}
.x5c_c00100{left:122.536760pt;}
.x41_c00100{left:123.600000pt;}
.x20_c00100{left:124.560000pt;}
.x71_c00100{left:129.239780pt;}
.x90_c00100{left:131.781333pt;}
.xe_c00100{left:137.125333pt;}
.x7f_c00100{left:138.501792pt;}
.x48_c00100{left:139.440000pt;}
.x96_c00100{left:140.389419pt;}
.x5_c00100{left:143.889333pt;}
.x21_c00100{left:145.200000pt;}
.x1_c00100{left:146.400000pt;}
.x2a_c00100{left:147.840000pt;}
.x3b_c00100{left:149.280000pt;}
.x8c_c00100{left:152.229152pt;}
.x35_c00100{left:156.960000pt;}
.x7b_c00100{left:160.613333pt;}
.x4d_c00100{left:163.920000pt;}
.x16_c00100{left:165.840000pt;}
.x6_c00100{left:167.618667pt;}
.x81_c00100{left:170.004000pt;}
.x1d_c00100{left:171.623587pt;}
.x69_c00100{left:173.920067pt;}
.x36_c00100{left:175.200000pt;}
.x75_c00100{left:177.469440pt;}
.x62_c00100{left:180.722093pt;}
.x5d_c00100{left:181.841347pt;}
.x91_c00100{left:183.904000pt;}
.x57_c00100{left:186.444000pt;}
.xf_c00100{left:188.730667pt;}
.x84_c00100{left:190.832981pt;}
.x6e_c00100{left:194.673333pt;}
.x72_c00100{left:197.115467pt;}
.x2_c00100{left:198.480000pt;}
.x58_c00100{left:199.458667pt;}
.x17_c00100{left:200.880000pt;}
.x2b_c00100{left:202.800000pt;}
.x3c_c00100{left:203.760000pt;}
.x22_c00100{left:205.440000pt;}
.x7_c00100{left:207.445333pt;}
.x42_c00100{left:210.000000pt;}
.x2c_c00100{left:214.800000pt;}
.x63_c00100{left:216.004293pt;}
.x5e_c00100{left:217.368373pt;}
.x82_c00100{left:218.318667pt;}
.x37_c00100{left:219.840000pt;}
.x89_c00100{left:222.783040pt;}
.x23_c00100{left:224.400000pt;}
.x10_c00100{left:225.994667pt;}
.x8_c00100{left:226.894667pt;}
.x92_c00100{left:229.757333pt;}
.x3d_c00100{left:231.120000pt;}
.x18_c00100{left:232.080000pt;}
.x2d_c00100{left:233.520000pt;}
.x76_c00100{left:235.654273pt;}
.x49_c00100{left:237.120000pt;}
.x24_c00100{left:239.760000pt;}
.x73_c00100{left:242.922813pt;}
.x43_c00100{left:244.080000pt;}
.x93_c00100{left:246.597333pt;}
.x38_c00100{left:247.680000pt;}
.x77_c00100{left:249.484427pt;}
.x6f_c00100{left:253.098667pt;}
.x4e_c00100{left:257.520000pt;}
.x67_c00100{left:259.346920pt;}
.x85_c00100{left:260.919109pt;}
.x11_c00100{left:261.936000pt;}
.x9_c00100{left:265.321333pt;}
.x1e_c00100{left:266.226000pt;}
.x44_c00100{left:268.320000pt;}
.x83_c00100{left:269.394667pt;}
.x25_c00100{left:270.480000pt;}
.x78_c00100{left:271.569747pt;}
.x7c_c00100{left:272.942667pt;}
.x64_c00100{left:273.847413pt;}
.x12_c00100{left:274.926667pt;}
.x39_c00100{left:276.960000pt;}
.x3_c00100{left:278.880000pt;}
.x6a_c00100{left:281.890200pt;}
.x80_c00100{left:283.294763pt;}
.x2f_c00100{left:284.400000pt;}
.x8a_c00100{left:285.721179pt;}
.x3e_c00100{left:288.480000pt;}
.x4a_c00100{left:290.640000pt;}
.xa_c00100{left:293.616000pt;}
.x86_c00100{left:294.528293pt;}
.x6b_c00100{left:296.096720pt;}
.x8d_c00100{left:297.207509pt;}
.x54_c00100{left:298.320000pt;}
.x53_c00100{left:302.160000pt;}
.x13_c00100{left:303.214667pt;}
.x30_c00100{left:306.480000pt;}
.x45_c00100{left:307.920000pt;}
.x4f_c00100{left:308.880000pt;}
.x4b_c00100{left:310.560000pt;}
.x26_c00100{left:317.760000pt;}
.x5f_c00100{left:321.268080pt;}
.xb_c00100{left:323.650667pt;}
.x50_c00100{left:328.560000pt;}
.x19_c00100{left:330.720000pt;}
.x6c_c00100{left:333.255013pt;}
.x27_c00100{left:336.000000pt;}
.x31_c00100{left:340.800000pt;}
.x55_c00100{left:342.480000pt;}
.x79_c00100{left:344.046087pt;}
.x97_c00100{left:345.001536pt;}
.x3f_c00100{left:348.000000pt;}
.x87_c00100{left:350.514256pt;}
.x4c_c00100{left:352.080000pt;}
.x60_c00100{left:353.191067pt;}
.x8e_c00100{left:354.548757pt;}
.x14_c00100{left:356.489333pt;}
.x70_c00100{left:358.141333pt;}
.x56_c00100{left:359.040000pt;}
.x65_c00100{left:361.452160pt;}
.x2e_c00100{left:362.640000pt;}
.x40_c00100{left:364.080000pt;}
.x32_c00100{left:368.160000pt;}
.x28_c00100{left:370.800000pt;}
.x94_c00100{left:373.281333pt;}
.x59_c00100{left:374.814667pt;}
.x46_c00100{left:377.040000pt;}
.xc_c00100{left:381.229333pt;}
.x33_c00100{left:383.760000pt;}
.x98_c00100{left:386.504213pt;}
.x3a_c00100{left:387.600000pt;}
.x68_c00100{left:392.542920pt;}
.x51_c00100{left:393.840000pt;}
.x5a_c00100{left:397.993333pt;}
.x8b_c00100{left:402.126128pt;}
.x7d_c00100{left:404.233333pt;}
.x61_c00100{left:405.788920pt;}
.x34_c00100{left:409.680000pt;}
.x8f_c00100{left:411.643355pt;}
.x66_c00100{left:419.535307pt;}
.x1f_c00100{left:423.735640pt;}
.x99_c00100{left:425.586955pt;}
.x29_c00100{left:427.440000pt;}
.x1a_c00100{left:430.800000pt;}
.x88_c00100{left:433.452629pt;}
.x5b_c00100{left:434.937333pt;}
.x47_c00100{left:438.480000pt;}
.x52_c00100{left:440.880000pt;}
.x1b_c00100{left:462.480000pt;}
.x95_c00100{left:483.034667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m4c_c00101{transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{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);}
.m49_c00101{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);}
.m37_c00101{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);}
.m29_c00101{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);}
.m85_c00101{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.063415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063415,0.000000,0.000000,0.250000,0,0);}
.ma6_c00101{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);}
.m61_c00101{transform:matrix(0.086635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086635,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.mbd_c00101{transform:matrix(0.122514,0.001225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.122514,0.001225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.122514,0.001225,-0.002500,0.249988,0,0);}
.mc5_c00101{transform:matrix(0.135963,0.001360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135963,0.001360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135963,0.001360,-0.002500,0.249988,0,0);}
.m65_c00101{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);}
.m5a_c00101{transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{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);}
.mb_c00101{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);}
.m1b_c00101{transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{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);}
.m30_c00101{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);}
.mbf_c00101{transform:matrix(0.161577,0.001616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161577,0.001616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161577,0.001616,-0.002500,0.249988,0,0);}
.mc1_c00101{transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);}
.me_c00101{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00101{transform:matrix(0.165347,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165347,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165347,0.001653,-0.002500,0.249988,0,0);}
.m95_c00101{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);}
.m56_c00101{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);}
.m6a_c00101{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);}
.m12_c00101{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);}
.ma1_c00101{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);}
.m8a_c00101{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);}
.m2_c00101{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);}
.mc3_c00101{transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);}
.m67_c00101{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{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);}
.mb8_c00101{transform:matrix(0.170556,0.001706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170556,0.001706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170556,0.001706,-0.002500,0.249988,0,0);}
.mb3_c00101{transform:matrix(0.170721,0.001707,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170721,0.001707,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170721,0.001707,-0.002500,0.249988,0,0);}
.m33_c00101{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);}
.m86_c00101{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);}
.m1_c00101{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);}
.m20_c00101{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);}
.mb2_c00101{transform:matrix(0.172276,0.001723,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172276,0.001723,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172276,0.001723,-0.002500,0.249988,0,0);}
.m1d_c00101{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.mc0_c00101{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);}
.ma2_c00101{transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{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);}
.mb1_c00101{transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);}
.m32_c00101{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);}
.ma_c00101{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);}
.mab_c00101{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);}
.m74_c00101{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);}
.m11_c00101{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);}
.m63_c00101{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);}
.m8_c00101{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);}
.m52_c00101{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);}
.m53_c00101{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);}
.m90_c00101{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);}
.m54_c00101{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);}
.m50_c00101{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);}
.ma9_c00101{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);}
.m7e_c00101{transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184305,0.000000,0.000000,0.250000,0,0);}
.maf_c00101{transform:matrix(0.184626,0.001846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184626,0.001846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184626,0.001846,-0.002500,0.249988,0,0);}
.m26_c00101{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);}
.mc2_c00101{transform:matrix(0.185801,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185801,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185801,0.001858,-0.002500,0.249988,0,0);}
.m27_c00101{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);}
.m23_c00101{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);}
.m89_c00101{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);}
.mba_c00101{transform:matrix(0.189766,0.001898,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189766,0.001898,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189766,0.001898,-0.002500,0.249988,0,0);}
.m1a_c00101{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);}
.mb0_c00101{transform:matrix(0.190090,0.001901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190090,0.001901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190090,0.001901,-0.002500,0.249988,0,0);}
.m31_c00101{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);}
.ma4_c00101{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);}
.m4b_c00101{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);}
.m2f_c00101{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);}
.m9a_c00101{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);}
.m34_c00101{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);}
.m64_c00101{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);}
.m87_c00101{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);}
.m45_c00101{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_c00101{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);}
.m2e_c00101{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);}
.m2d_c00101{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);}
.ma0_c00101{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);}
.m19_c00101{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);}
.mbc_c00101{transform:matrix(0.200470,0.002005,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200470,0.002005,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200470,0.002005,-0.002500,0.249988,0,0);}
.m91_c00101{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);}
.m7c_c00101{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);}
.m1e_c00101{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);}
.m98_c00101{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{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);}
.m3a_c00101{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);}
.m9d_c00101{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);}
.m9e_c00101{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);}
.m94_c00101{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);}
.m22_c00101{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);}
.m80_c00101{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);}
.m69_c00101{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);}
.m82_c00101{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);}
.mbb_c00101{transform:matrix(0.204880,0.002049,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204880,0.002049,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204880,0.002049,-0.002500,0.249988,0,0);}
.m15_c00101{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);}
.m16_c00101{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);}
.m66_c00101{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);}
.m18_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);}
.m8d_c00101{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);}
.m5b_c00101{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);}
.m97_c00101{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);}
.m4d_c00101{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);}
.m88_c00101{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);}
.m5d_c00101{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);}
.m39_c00101{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);}
.mc4_c00101{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);}
.mbe_c00101{transform:matrix(0.210894,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210894,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210894,0.002109,-0.002500,0.249988,0,0);}
.m83_c00101{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);}
.m68_c00101{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_c00101{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);}
.ma7_c00101{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);}
.m9b_c00101{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);}
.mb9_c00101{transform:matrix(0.214389,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214389,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214389,0.002144,-0.002500,0.249988,0,0);}
.m21_c00101{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);}
.mc_c00101{transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{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);}
.ma5_c00101{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);}
.mac_c00101{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);}
.m14_c00101{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);}
.m3b_c00101{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);}
.m8f_c00101{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);}
.m17_c00101{transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00101{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);}
.m77_c00101{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);}
.m6e_c00101{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);}
.m6f_c00101{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);}
.m1f_c00101{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);}
.m46_c00101{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);}
.m3d_c00101{transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{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);}
.m75_c00101{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{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);}
.m8e_c00101{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);}
.ma3_c00101{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);}
.md_c00101{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{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);}
.m92_c00101{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);}
.m41_c00101{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{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);}
.m96_c00101{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);}
.m38_c00101{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);}
.m4_c00101{transform:matrix(0.242605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242605,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{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);}
.m7f_c00101{transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{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);}
.m3f_c00101{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);}
.m47_c00101{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);}
.m59_c00101{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);}
.m7a_c00101{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);}
.m2b_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);}
.mb6_c00101{transform:matrix(0.253682,0.002537,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253682,0.002537,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253682,0.002537,-0.002500,0.249988,0,0);}
.m3e_c00101{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.ma8_c00101{transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);}
.maa_c00101{transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{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);}
.m44_c00101{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);}
.m7d_c00101{transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.267360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267360,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{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);}
.m24_c00101{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);}
.m48_c00101{transform:matrix(0.289160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297330,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.298355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298355,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00101{transform:matrix(0.325929,0.003259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.325929,0.003259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.325929,0.003259,-0.002500,0.249988,0,0);}
.m93_c00101{transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.348870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348870,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.351635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.355100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355100,0.000000,0.000000,0.250000,0,0);}
.mae_c00101{transform:matrix(0.370221,0.003702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.370221,0.003702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.370221,0.003702,-0.002500,0.249988,0,0);}
.mb4_c00101{transform:matrix(0.372621,0.003726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.372621,0.003726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.372621,0.003726,-0.002500,0.249988,0,0);}
.m42_c00101{transform:matrix(0.379720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379720,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.383780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383780,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.414585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414585,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.421600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421600,0.000000,0.000000,0.250000,0,0);}
.mad_c00101{transform:matrix(0.432155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432155,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.433075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433075,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.443110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443110,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.447985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447985,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449640,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.764450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764450,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.827120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827120,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.846215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.846215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.846215,0.000000,0.000000,0.250000,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;}
.fs5_c00101{font-size:64.050000px;}
.fs7_c00101{font-size:66.150000px;}
.fs8_c00101{font-size:67.200000px;}
.fsb_c00101{font-size:69.300000px;}
.fsd_c00101{font-size:69.303465px;}
.fs4_c00101{font-size:70.350000px;}
.fs0_c00101{font-size:71.400000px;}
.fs2_c00101{font-size:72.450000px;}
.fs1_c00101{font-size:73.500000px;}
.fsc_c00101{font-size:73.503675px;}
.fse_c00101{font-size:76.653832px;}
.fs6_c00101{font-size:77.700000px;}
.fs9_c00101{font-size:80.850000px;}
.fs3_c00101{font-size:92.400000px;}
.fsa_c00101{font-size:94.500000px;}
.y0_c00101{bottom:0.000000px;}
.y53_c00101{bottom:143.693640px;}
.y52_c00101{bottom:144.180645px;}
.y51_c00101{bottom:144.453330px;}
.y50_c00101{bottom:144.883170px;}
.y4f_c00101{bottom:145.123185px;}
.y4e_c00101{bottom:146.227815px;}
.y4d_c00101{bottom:146.618760px;}
.y4c_c00101{bottom:146.880750px;}
.y4b_c00101{bottom:166.775325px;}
.y4a_c00101{bottom:167.567505px;}
.y49_c00101{bottom:168.426030px;}
.y48_c00101{bottom:168.652380px;}
.y47_c00101{bottom:169.490775px;}
.y46_c00101{bottom:170.032005px;}
.y45_c00101{bottom:170.433735px;}
.y44_c00101{bottom:170.641155px;}
.y43_c00101{bottom:189.446790px;}
.y42_c00101{bottom:189.858525px;}
.y41_c00101{bottom:190.240695px;}
.y40_c00101{bottom:190.691595px;}
.y3f_c00101{bottom:191.018580px;}
.y3e_c00101{bottom:191.585775px;}
.y3d_c00101{bottom:192.363420px;}
.y3c_c00101{bottom:192.781500px;}
.y3b_c00101{bottom:213.532500px;}
.y3a_c00101{bottom:235.426500px;}
.y39_c00101{bottom:235.869000px;}
.y38_c00101{bottom:236.298000px;}
.y37_c00101{bottom:236.736000px;}
.y36_c00101{bottom:237.444000px;}
.y35_c00101{bottom:237.886500px;}
.y34_c00101{bottom:238.009500px;}
.y33_c00101{bottom:238.683000px;}
.y32_c00101{bottom:258.631500px;}
.y31_c00101{bottom:259.033500px;}
.y30_c00101{bottom:259.273500px;}
.y2f_c00101{bottom:259.635000px;}
.y2e_c00101{bottom:260.188500px;}
.y2d_c00101{bottom:260.386500px;}
.y2c_c00101{bottom:260.649000px;}
.y2b_c00101{bottom:261.091500px;}
.y2a_c00101{bottom:280.929000px;}
.y29_c00101{bottom:280.989000px;}
.y28_c00101{bottom:281.451000px;}
.y27_c00101{bottom:281.785500px;}
.y26_c00101{bottom:281.887500px;}
.y25_c00101{bottom:282.223500px;}
.y24_c00101{bottom:282.568500px;}
.y23_c00101{bottom:283.131000px;}
.y22_c00101{bottom:283.438500px;}
.y21_c00101{bottom:283.771500px;}
.y20_c00101{bottom:303.192000px;}
.y1f_c00101{bottom:303.891000px;}
.y1e_c00101{bottom:304.294500px;}
.y1d_c00101{bottom:304.903500px;}
.y1c_c00101{bottom:305.073000px;}
.y1b_c00101{bottom:305.628000px;}
.y1a_c00101{bottom:305.844000px;}
.y19_c00101{bottom:306.222000px;}
.y18_c00101{bottom:306.601500px;}
.y17_c00101{bottom:306.810000px;}
.y16_c00101{bottom:307.261500px;}
.y15_c00101{bottom:328.080000px;}
.y14_c00101{bottom:350.925000px;}
.y13_c00101{bottom:372.819000px;}
.y12_c00101{bottom:395.190000px;}
.y11_c00101{bottom:417.907500px;}
.y10_c00101{bottom:442.188000px;}
.yf_c00101{bottom:461.440500px;}
.ye_c00101{bottom:483.618000px;}
.yd_c00101{bottom:506.403000px;}
.yc_c00101{bottom:528.786000px;}
.yb_c00101{bottom:551.136000px;}
.ya_c00101{bottom:573.348000px;}
.y9_c00101{bottom:597.126000px;}
.y8_c00101{bottom:618.840000px;}
.y7_c00101{bottom:641.527500px;}
.y6_c00101{bottom:669.568500px;}
.y5_c00101{bottom:700.714500px;}
.y4_c00101{bottom:723.010500px;}
.y3_c00101{bottom:745.896000px;}
.y2_c00101{bottom:767.977500px;}
.y1_c00101{bottom:791.628000px;}
.h7_c00101{height:64.050000px;}
.h9_c00101{height:66.150000px;}
.ha_c00101{height:67.200000px;}
.hd_c00101{height:69.300000px;}
.hf_c00101{height:69.303465px;}
.h6_c00101{height:70.350000px;}
.h2_c00101{height:71.400000px;}
.h4_c00101{height:72.450000px;}
.h3_c00101{height:73.500000px;}
.he_c00101{height:73.503675px;}
.h10_c00101{height:76.653832px;}
.h8_c00101{height:77.700000px;}
.hb_c00101{height:80.850000px;}
.h5_c00101{height:92.400000px;}
.hc_c00101{height:94.500000px;}
.h0_c00101{height:1008.450000px;}
.h1_c00101{height:1008.750000px;}
.w0_c00101{width:676.890000px;}
.w1_c00101{width:677.250000px;}
.x0_c00101{left:0.000000px;}
.x5c_c00101{left:156.060000px;}
.x6b_c00101{left:160.498500px;}
.x30_c00101{left:162.540000px;}
.x43_c00101{left:163.620000px;}
.x3a_c00101{left:165.240000px;}
.x51_c00101{left:168.210000px;}
.x4c_c00101{left:169.560000px;}
.x1e_c00101{left:171.180000px;}
.x31_c00101{left:173.070000px;}
.xc_c00101{left:174.150000px;}
.x5_c00101{left:176.040000px;}
.x76_c00101{left:188.055150px;}
.xd_c00101{left:193.320000px;}
.x44_c00101{left:195.750000px;}
.x3b_c00101{left:197.910000px;}
.x62_c00101{left:202.770000px;}
.x18_c00101{left:204.390000px;}
.x64_c00101{left:212.085000px;}
.x4d_c00101{left:215.190000px;}
.x3c_c00101{left:220.050000px;}
.x77_c00101{left:221.477475px;}
.x6d_c00101{left:226.462500px;}
.x65_c00101{left:230.977500px;}
.x45_c00101{left:233.820000px;}
.x5d_c00101{left:234.900000px;}
.xe_c00101{left:237.870000px;}
.x70_c00101{left:239.181000px;}
.x1f_c00101{left:240.300000px;}
.x6_c00101{left:241.650000px;}
.x28_c00101{left:245.430000px;}
.x71_c00101{left:251.541000px;}
.x46_c00101{left:253.260000px;}
.x32_c00101{left:258.930000px;}
.x23_c00101{left:263.790000px;}
.xf_c00101{left:265.410000px;}
.x78_c00101{left:266.599575px;}
.x19_c00101{left:268.110000px;}
.x3d_c00101{left:271.620000px;}
.x7_c00101{left:272.970000px;}
.x5e_c00101{left:274.320000px;}
.x73_c00101{left:276.571500px;}
.x52_c00101{left:277.830000px;}
.x4e_c00101{left:280.260000px;}
.x6e_c00101{left:284.209500px;}
.x29_c00101{left:286.200000px;}
.x33_c00101{left:291.600000px;}
.x24_c00101{left:294.840000px;}
.x10_c00101{left:296.460000px;}
.x66_c00101{left:299.842500px;}
.x34_c00101{left:309.150000px;}
.x11_c00101{left:312.120000px;}
.x4b_c00101{left:313.470000px;}
.x58_c00101{left:314.820000px;}
.x8_c00101{left:316.710000px;}
.x1a_c00101{left:319.140000px;}
.x53_c00101{left:321.030000px;}
.x63_c00101{left:322.110000px;}
.x3e_c00101{left:323.730000px;}
.x5f_c00101{left:325.350000px;}
.x12_c00101{left:329.940000px;}
.x4f_c00101{left:332.370000px;}
.x47_c00101{left:333.450000px;}
.x79_c00101{left:336.487680px;}
.x2a_c00101{left:338.580000px;}
.x35_c00101{left:341.280000px;}
.x25_c00101{left:345.060000px;}
.x1b_c00101{left:346.410000px;}
.x20_c00101{left:348.840000px;}
.x48_c00101{left:353.160000px;}
.x2b_c00101{left:355.320000px;}
.x3f_c00101{left:356.400000px;}
.x74_c00101{left:365.989500px;}
.x13_c00101{left:367.200000px;}
.x67_c00101{left:370.036500px;}
.x2c_c00101{left:374.490000px;}
.x59_c00101{left:378.000000px;}
.x60_c00101{left:379.350000px;}
.x9_c00101{left:380.700000px;}
.x26_c00101{left:382.320000px;}
.x68_c00101{left:385.422000px;}
.x49_c00101{left:390.150000px;}
.x36_c00101{left:391.230000px;}
.x2d_c00101{left:394.470000px;}
.x1c_c00101{left:396.360000px;}
.x40_c00101{left:397.710000px;}
.x14_c00101{left:403.110000px;}
.x21_c00101{left:409.590000px;}
.x5a_c00101{left:412.020000px;}
.xa_c00101{left:414.180000px;}
.x54_c00101{left:418.770000px;}
.x7a_c00101{left:426.973380px;}
.x6f_c00101{left:428.418000px;}
.x1d_c00101{left:432.540000px;}
.x15_c00101{left:433.890000px;}
.x2e_c00101{left:436.320000px;}
.x41_c00101{left:438.750000px;}
.x69_c00101{left:440.803500px;}
.x50_c00101{left:444.960000px;}
.x75_c00101{left:449.296500px;}
.x22_c00101{left:452.520000px;}
.x4a_c00101{left:455.490000px;}
.x2f_c00101{left:457.110000px;}
.x61_c00101{left:462.510000px;}
.x1_c00101{left:464.130000px;}
.x6c_c00101{left:469.725000px;}
.xb_c00101{left:474.660000px;}
.x55_c00101{left:476.010000px;}
.x16_c00101{left:478.440000px;}
.x37_c00101{left:482.220000px;}
.x7c_c00101{left:488.677335px;}
.x2_c00101{left:490.860000px;}
.x7b_c00101{left:492.990060px;}
.x72_c00101{left:497.461500px;}
.x27_c00101{left:501.930000px;}
.x5b_c00101{left:503.010000px;}
.x17_c00101{left:509.760000px;}
.x56_c00101{left:514.350000px;}
.x3_c00101{left:517.320000px;}
.x6a_c00101{left:541.011000px;}
.x57_c00101{left:542.430000px;}
.x38_c00101{left:550.530000px;}
.x39_c00101{left:554.580000px;}
.x4_c00101{left:566.460000px;}
.x42_c00101{left:570.240000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fs5_c00101{font-size:56.933333pt;}
.fs7_c00101{font-size:58.800000pt;}
.fs8_c00101{font-size:59.733333pt;}
.fsb_c00101{font-size:61.600000pt;}
.fsd_c00101{font-size:61.603080pt;}
.fs4_c00101{font-size:62.533333pt;}
.fs0_c00101{font-size:63.466667pt;}
.fs2_c00101{font-size:64.400000pt;}
.fs1_c00101{font-size:65.333333pt;}
.fsc_c00101{font-size:65.336600pt;}
.fse_c00101{font-size:68.136740pt;}
.fs6_c00101{font-size:69.066667pt;}
.fs9_c00101{font-size:71.866667pt;}
.fs3_c00101{font-size:82.133333pt;}
.fsa_c00101{font-size:84.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y53_c00101{bottom:127.727680pt;}
.y52_c00101{bottom:128.160573pt;}
.y51_c00101{bottom:128.402960pt;}
.y50_c00101{bottom:128.785040pt;}
.y4f_c00101{bottom:128.998387pt;}
.y4e_c00101{bottom:129.980280pt;}
.y4d_c00101{bottom:130.327787pt;}
.y4c_c00101{bottom:130.560667pt;}
.y4b_c00101{bottom:148.244733pt;}
.y4a_c00101{bottom:148.948893pt;}
.y49_c00101{bottom:149.712027pt;}
.y48_c00101{bottom:149.913227pt;}
.y47_c00101{bottom:150.658467pt;}
.y46_c00101{bottom:151.139560pt;}
.y45_c00101{bottom:151.496653pt;}
.y44_c00101{bottom:151.681027pt;}
.y43_c00101{bottom:168.397147pt;}
.y42_c00101{bottom:168.763133pt;}
.y41_c00101{bottom:169.102840pt;}
.y40_c00101{bottom:169.503640pt;}
.y3f_c00101{bottom:169.794293pt;}
.y3e_c00101{bottom:170.298467pt;}
.y3d_c00101{bottom:170.989707pt;}
.y3c_c00101{bottom:171.361333pt;}
.y3b_c00101{bottom:189.806667pt;}
.y3a_c00101{bottom:209.268000pt;}
.y39_c00101{bottom:209.661333pt;}
.y38_c00101{bottom:210.042667pt;}
.y37_c00101{bottom:210.432000pt;}
.y36_c00101{bottom:211.061333pt;}
.y35_c00101{bottom:211.454667pt;}
.y34_c00101{bottom:211.564000pt;}
.y33_c00101{bottom:212.162667pt;}
.y32_c00101{bottom:229.894667pt;}
.y31_c00101{bottom:230.252000pt;}
.y30_c00101{bottom:230.465333pt;}
.y2f_c00101{bottom:230.786667pt;}
.y2e_c00101{bottom:231.278667pt;}
.y2d_c00101{bottom:231.454667pt;}
.y2c_c00101{bottom:231.688000pt;}
.y2b_c00101{bottom:232.081333pt;}
.y2a_c00101{bottom:249.714667pt;}
.y29_c00101{bottom:249.768000pt;}
.y28_c00101{bottom:250.178667pt;}
.y27_c00101{bottom:250.476000pt;}
.y26_c00101{bottom:250.566667pt;}
.y25_c00101{bottom:250.865333pt;}
.y24_c00101{bottom:251.172000pt;}
.y23_c00101{bottom:251.672000pt;}
.y22_c00101{bottom:251.945333pt;}
.y21_c00101{bottom:252.241333pt;}
.y20_c00101{bottom:269.504000pt;}
.y1f_c00101{bottom:270.125333pt;}
.y1e_c00101{bottom:270.484000pt;}
.y1d_c00101{bottom:271.025333pt;}
.y1c_c00101{bottom:271.176000pt;}
.y1b_c00101{bottom:271.669333pt;}
.y1a_c00101{bottom:271.861333pt;}
.y19_c00101{bottom:272.197333pt;}
.y18_c00101{bottom:272.534667pt;}
.y17_c00101{bottom:272.720000pt;}
.y16_c00101{bottom:273.121333pt;}
.y15_c00101{bottom:291.626667pt;}
.y14_c00101{bottom:311.933333pt;}
.y13_c00101{bottom:331.394667pt;}
.y12_c00101{bottom:351.280000pt;}
.y11_c00101{bottom:371.473333pt;}
.y10_c00101{bottom:393.056000pt;}
.yf_c00101{bottom:410.169333pt;}
.ye_c00101{bottom:429.882667pt;}
.yd_c00101{bottom:450.136000pt;}
.yc_c00101{bottom:470.032000pt;}
.yb_c00101{bottom:489.898667pt;}
.ya_c00101{bottom:509.642667pt;}
.y9_c00101{bottom:530.778667pt;}
.y8_c00101{bottom:550.080000pt;}
.y7_c00101{bottom:570.246667pt;}
.y6_c00101{bottom:595.172000pt;}
.y5_c00101{bottom:622.857333pt;}
.y4_c00101{bottom:642.676000pt;}
.y3_c00101{bottom:663.018667pt;}
.y2_c00101{bottom:682.646667pt;}
.y1_c00101{bottom:703.669333pt;}
.h7_c00101{height:56.933333pt;}
.h9_c00101{height:58.800000pt;}
.ha_c00101{height:59.733333pt;}
.hd_c00101{height:61.600000pt;}
.hf_c00101{height:61.603080pt;}
.h6_c00101{height:62.533333pt;}
.h2_c00101{height:63.466667pt;}
.h4_c00101{height:64.400000pt;}
.h3_c00101{height:65.333333pt;}
.he_c00101{height:65.336600pt;}
.h10_c00101{height:68.136740pt;}
.h8_c00101{height:69.066667pt;}
.hb_c00101{height:71.866667pt;}
.h5_c00101{height:82.133333pt;}
.hc_c00101{height:84.000000pt;}
.h0_c00101{height:896.400000pt;}
.h1_c00101{height:896.666667pt;}
.w0_c00101{width:601.680000pt;}
.w1_c00101{width:602.000000pt;}
.x0_c00101{left:0.000000pt;}
.x5c_c00101{left:138.720000pt;}
.x6b_c00101{left:142.665333pt;}
.x30_c00101{left:144.480000pt;}
.x43_c00101{left:145.440000pt;}
.x3a_c00101{left:146.880000pt;}
.x51_c00101{left:149.520000pt;}
.x4c_c00101{left:150.720000pt;}
.x1e_c00101{left:152.160000pt;}
.x31_c00101{left:153.840000pt;}
.xc_c00101{left:154.800000pt;}
.x5_c00101{left:156.480000pt;}
.x76_c00101{left:167.160133pt;}
.xd_c00101{left:171.840000pt;}
.x44_c00101{left:174.000000pt;}
.x3b_c00101{left:175.920000pt;}
.x62_c00101{left:180.240000pt;}
.x18_c00101{left:181.680000pt;}
.x64_c00101{left:188.520000pt;}
.x4d_c00101{left:191.280000pt;}
.x3c_c00101{left:195.600000pt;}
.x77_c00101{left:196.868867pt;}
.x6d_c00101{left:201.300000pt;}
.x65_c00101{left:205.313333pt;}
.x45_c00101{left:207.840000pt;}
.x5d_c00101{left:208.800000pt;}
.xe_c00101{left:211.440000pt;}
.x70_c00101{left:212.605333pt;}
.x1f_c00101{left:213.600000pt;}
.x6_c00101{left:214.800000pt;}
.x28_c00101{left:218.160000pt;}
.x71_c00101{left:223.592000pt;}
.x46_c00101{left:225.120000pt;}
.x32_c00101{left:230.160000pt;}
.x23_c00101{left:234.480000pt;}
.xf_c00101{left:235.920000pt;}
.x78_c00101{left:236.977400pt;}
.x19_c00101{left:238.320000pt;}
.x3d_c00101{left:241.440000pt;}
.x7_c00101{left:242.640000pt;}
.x5e_c00101{left:243.840000pt;}
.x73_c00101{left:245.841333pt;}
.x52_c00101{left:246.960000pt;}
.x4e_c00101{left:249.120000pt;}
.x6e_c00101{left:252.630667pt;}
.x29_c00101{left:254.400000pt;}
.x33_c00101{left:259.200000pt;}
.x24_c00101{left:262.080000pt;}
.x10_c00101{left:263.520000pt;}
.x66_c00101{left:266.526667pt;}
.x34_c00101{left:274.800000pt;}
.x11_c00101{left:277.440000pt;}
.x4b_c00101{left:278.640000pt;}
.x58_c00101{left:279.840000pt;}
.x8_c00101{left:281.520000pt;}
.x1a_c00101{left:283.680000pt;}
.x53_c00101{left:285.360000pt;}
.x63_c00101{left:286.320000pt;}
.x3e_c00101{left:287.760000pt;}
.x5f_c00101{left:289.200000pt;}
.x12_c00101{left:293.280000pt;}
.x4f_c00101{left:295.440000pt;}
.x47_c00101{left:296.400000pt;}
.x79_c00101{left:299.100160pt;}
.x2a_c00101{left:300.960000pt;}
.x35_c00101{left:303.360000pt;}
.x25_c00101{left:306.720000pt;}
.x1b_c00101{left:307.920000pt;}
.x20_c00101{left:310.080000pt;}
.x48_c00101{left:313.920000pt;}
.x2b_c00101{left:315.840000pt;}
.x3f_c00101{left:316.800000pt;}
.x74_c00101{left:325.324000pt;}
.x13_c00101{left:326.400000pt;}
.x67_c00101{left:328.921333pt;}
.x2c_c00101{left:332.880000pt;}
.x59_c00101{left:336.000000pt;}
.x60_c00101{left:337.200000pt;}
.x9_c00101{left:338.400000pt;}
.x26_c00101{left:339.840000pt;}
.x68_c00101{left:342.597333pt;}
.x49_c00101{left:346.800000pt;}
.x36_c00101{left:347.760000pt;}
.x2d_c00101{left:350.640000pt;}
.x1c_c00101{left:352.320000pt;}
.x40_c00101{left:353.520000pt;}
.x14_c00101{left:358.320000pt;}
.x21_c00101{left:364.080000pt;}
.x5a_c00101{left:366.240000pt;}
.xa_c00101{left:368.160000pt;}
.x54_c00101{left:372.240000pt;}
.x7a_c00101{left:379.531893pt;}
.x6f_c00101{left:380.816000pt;}
.x1d_c00101{left:384.480000pt;}
.x15_c00101{left:385.680000pt;}
.x2e_c00101{left:387.840000pt;}
.x41_c00101{left:390.000000pt;}
.x69_c00101{left:391.825333pt;}
.x50_c00101{left:395.520000pt;}
.x75_c00101{left:399.374667pt;}
.x22_c00101{left:402.240000pt;}
.x4a_c00101{left:404.880000pt;}
.x2f_c00101{left:406.320000pt;}
.x61_c00101{left:411.120000pt;}
.x1_c00101{left:412.560000pt;}
.x6c_c00101{left:417.533333pt;}
.xb_c00101{left:421.920000pt;}
.x55_c00101{left:423.120000pt;}
.x16_c00101{left:425.280000pt;}
.x37_c00101{left:428.640000pt;}
.x7c_c00101{left:434.379853pt;}
.x2_c00101{left:436.320000pt;}
.x7b_c00101{left:438.213387pt;}
.x72_c00101{left:442.188000pt;}
.x27_c00101{left:446.160000pt;}
.x5b_c00101{left:447.120000pt;}
.x17_c00101{left:453.120000pt;}
.x56_c00101{left:457.200000pt;}
.x3_c00101{left:459.840000pt;}
.x6a_c00101{left:480.898667pt;}
.x57_c00101{left:482.160000pt;}
.x38_c00101{left:489.360000pt;}
.x39_c00101{left:492.960000pt;}
.x4_c00101{left:503.520000pt;}
.x42_c00101{left:506.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_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_ef4e99a7aa2876b3106553d3.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;}
.m26_c00102{transform:matrix(0.008559,0.000145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.008559,0.000145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.008559,0.000145,-0.004249,0.249964,0,0);}
.m68_c00102{transform:matrix(0.012505,0.000338,-0.006748,0.249909,0,0);-ms-transform:matrix(0.012505,0.000338,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.012505,0.000338,-0.006748,0.249909,0,0);}
.m1b_c00102{transform:matrix(0.042906,0.000601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.042906,0.000601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.042906,0.000601,-0.003500,0.249976,0,0);}
.maa_c00102{transform:matrix(0.049399,0.001433,-0.007247,0.249895,0,0);-ms-transform:matrix(0.049399,0.001433,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.049399,0.001433,-0.007247,0.249895,0,0);}
.m33_c00102{transform:matrix(0.052263,0.000836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.052263,0.000836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.052263,0.000836,-0.003999,0.249968,0,0);}
.mc_c00102{transform:matrix(0.114560,0.001833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.114560,0.001833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.114560,0.001833,-0.003999,0.249968,0,0);}
.m7d_c00102{transform:matrix(0.125474,0.003388,-0.006748,0.249909,0,0);-ms-transform:matrix(0.125474,0.003388,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.125474,0.003388,-0.006748,0.249909,0,0);}
.m92_c00102{transform:matrix(0.140484,0.003793,-0.006748,0.249909,0,0);-ms-transform:matrix(0.140484,0.003793,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.140484,0.003793,-0.006748,0.249909,0,0);}
.m48_c00102{transform:matrix(0.142669,0.002996,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142669,0.002996,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142669,0.002996,-0.005249,0.249945,0,0);}
.m1d_c00102{transform:matrix(0.145051,0.002031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145051,0.002031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145051,0.002031,-0.003500,0.249976,0,0);}
.m14_c00102{transform:matrix(0.145941,0.002043,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145941,0.002043,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145941,0.002043,-0.003500,0.249976,0,0);}
.m31_c00102{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);}
.m9e_c00102{transform:matrix(0.148626,0.004013,-0.006748,0.249909,0,0);-ms-transform:matrix(0.148626,0.004013,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.148626,0.004013,-0.006748,0.249909,0,0);}
.md4_c00102{transform:matrix(0.150573,0.002560,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150573,0.002560,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150573,0.002560,-0.004249,0.249964,0,0);}
.m20_c00102{transform:matrix(0.153510,0.002149,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153510,0.002149,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153510,0.002149,-0.003500,0.249976,0,0);}
.m8_c00102{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);}
.m36_c00102{transform:matrix(0.155920,0.002495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155920,0.002495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155920,0.002495,-0.003999,0.249968,0,0);}
.m97_c00102{transform:matrix(0.160716,0.004339,-0.006748,0.249909,0,0);-ms-transform:matrix(0.160716,0.004339,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.160716,0.004339,-0.006748,0.249909,0,0);}
.m2b_c00102{transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);}
.mb1_c00102{transform:matrix(0.162924,0.003421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162924,0.003421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162924,0.003421,-0.005249,0.249945,0,0);}
.m44_c00102{transform:matrix(0.163729,0.003438,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163729,0.003438,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163729,0.003438,-0.005249,0.249945,0,0);}
.m3_c00102{transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{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);}
.m4a_c00102{transform:matrix(0.166933,0.003506,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166933,0.003506,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166933,0.003506,-0.005249,0.249945,0,0);}
.m98_c00102{transform:matrix(0.168704,0.004555,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168704,0.004555,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168704,0.004555,-0.006748,0.249909,0,0);}
.m21_c00102{transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169078,0.002367,-0.003500,0.249976,0,0);}
.m35_c00102{transform:matrix(0.169998,0.002720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169998,0.002720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169998,0.002720,-0.003999,0.249968,0,0);}
.m30_c00102{transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170018,0.002720,-0.003999,0.249968,0,0);}
.m5_c00102{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);}
.m3b_c00102{transform:matrix(0.171913,0.002751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171913,0.002751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171913,0.002751,-0.003999,0.249968,0,0);}
.m96_c00102{transform:matrix(0.172247,0.004651,-0.006748,0.249909,0,0);-ms-transform:matrix(0.172247,0.004651,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.172247,0.004651,-0.006748,0.249909,0,0);}
.m8a_c00102{transform:matrix(0.173397,0.004682,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173397,0.004682,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173397,0.004682,-0.006748,0.249909,0,0);}
.m2_c00102{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);}
.m37_c00102{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);}
.m8d_c00102{transform:matrix(0.174082,0.004700,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174082,0.004700,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174082,0.004700,-0.006748,0.249909,0,0);}
.m86_c00102{transform:matrix(0.175866,0.004748,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175866,0.004748,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175866,0.004748,-0.006748,0.249909,0,0);}
.m12_c00102{transform:matrix(0.176802,0.002829,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176802,0.002829,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176802,0.002829,-0.003999,0.249968,0,0);}
.m8c_c00102{transform:matrix(0.176881,0.004776,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176881,0.004776,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176881,0.004776,-0.006748,0.249909,0,0);}
.m85_c00102{transform:matrix(0.177170,0.004784,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177170,0.004784,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177170,0.004784,-0.006748,0.249909,0,0);}
.m1f_c00102{transform:matrix(0.177668,0.002487,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177668,0.002487,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177668,0.002487,-0.003500,0.249976,0,0);}
.m4f_c00102{transform:matrix(0.178261,0.003743,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178261,0.003743,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178261,0.003743,-0.005249,0.249945,0,0);}
.m7f_c00102{transform:matrix(0.178930,0.004831,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178930,0.004831,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178930,0.004831,-0.006748,0.249909,0,0);}
.m19_c00102{transform:matrix(0.179302,0.002510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179302,0.002510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179302,0.002510,-0.003500,0.249976,0,0);}
.ma0_c00102{transform:matrix(0.179365,0.004843,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179365,0.004843,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179365,0.004843,-0.006748,0.249909,0,0);}
.m61_c00102{transform:matrix(0.180219,0.004866,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180219,0.004866,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180219,0.004866,-0.006748,0.249909,0,0);}
.m78_c00102{transform:matrix(0.180819,0.004882,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180819,0.004882,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180819,0.004882,-0.006748,0.249909,0,0);}
.m6e_c00102{transform:matrix(0.181609,0.004903,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181609,0.004903,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181609,0.004903,-0.006748,0.249909,0,0);}
.m6c_c00102{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);}
.m4e_c00102{transform:matrix(0.181740,0.003817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181740,0.003817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181740,0.003817,-0.005249,0.249945,0,0);}
.m16_c00102{transform:matrix(0.182797,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182797,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182797,0.002559,-0.003500,0.249976,0,0);}
.m39_c00102{transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);}
.m67_c00102{transform:matrix(0.183883,0.004965,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183883,0.004965,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183883,0.004965,-0.006748,0.249909,0,0);}
.m77_c00102{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);}
.m55_c00102{transform:matrix(0.184139,0.003867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184139,0.003867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184139,0.003867,-0.005249,0.249945,0,0);}
.ma4_c00102{transform:matrix(0.184582,0.005353,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184582,0.005353,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184582,0.005353,-0.007247,0.249895,0,0);}
.m1e_c00102{transform:matrix(0.185107,0.002591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185107,0.002591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185107,0.002591,-0.003500,0.249976,0,0);}
.m71_c00102{transform:matrix(0.185168,0.005000,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185168,0.005000,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185168,0.005000,-0.006748,0.249909,0,0);}
.mce_c00102{transform:matrix(0.187268,0.003184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187268,0.003184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187268,0.003184,-0.004249,0.249964,0,0);}
.m9b_c00102{transform:matrix(0.188191,0.005081,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188191,0.005081,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188191,0.005081,-0.006748,0.249909,0,0);}
.m4c_c00102{transform:matrix(0.188488,0.003958,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188488,0.003958,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188488,0.003958,-0.005249,0.249945,0,0);}
.m82_c00102{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);}
.maf_c00102{transform:matrix(0.189298,0.003975,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189298,0.003975,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189298,0.003975,-0.005249,0.249945,0,0);}
.m93_c00102{transform:matrix(0.190950,0.005156,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190950,0.005156,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190950,0.005156,-0.006748,0.249909,0,0);}
.m17_c00102{transform:matrix(0.191101,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191101,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191101,0.002675,-0.003500,0.249976,0,0);}
.md_c00102{transform:matrix(0.191176,0.003059,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191176,0.003059,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191176,0.003059,-0.003999,0.249968,0,0);}
.m1c_c00102{transform:matrix(0.191626,0.002683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191626,0.002683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191626,0.002683,-0.003500,0.249976,0,0);}
.m84_c00102{transform:matrix(0.193120,0.005214,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193120,0.005214,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193120,0.005214,-0.006748,0.249909,0,0);}
.m5a_c00102{transform:matrix(0.193609,0.005227,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193609,0.005227,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193609,0.005227,-0.006748,0.249909,0,0);}
.m6f_c00102{transform:matrix(0.193709,0.005230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193709,0.005230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193709,0.005230,-0.006748,0.249909,0,0);}
.mcc_c00102{transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);}
.md0_c00102{transform:matrix(0.194552,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194552,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194552,0.003307,-0.004249,0.249964,0,0);}
.m24_c00102{transform:matrix(0.194867,0.003313,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194867,0.003313,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194867,0.003313,-0.004249,0.249964,0,0);}
.mba_c00102{transform:matrix(0.195212,0.004099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195212,0.004099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195212,0.004099,-0.005249,0.249945,0,0);}
.m2d_c00102{transform:matrix(0.196505,0.003144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196505,0.003144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196505,0.003144,-0.003999,0.249968,0,0);}
.m9a_c00102{transform:matrix(0.196548,0.005307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196548,0.005307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196548,0.005307,-0.006748,0.249909,0,0);}
.m38_c00102{transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);}
.m6d_c00102{transform:matrix(0.197193,0.005324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197193,0.005324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197193,0.005324,-0.006748,0.249909,0,0);}
.m2a_c00102{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);}
.m46_c00102{transform:matrix(0.197626,0.004150,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197626,0.004150,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197626,0.004150,-0.005249,0.249945,0,0);}
.m22_c00102{transform:matrix(0.198081,0.002773,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198081,0.002773,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198081,0.002773,-0.003500,0.249976,0,0);}
.m9f_c00102{transform:matrix(0.198213,0.005352,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198213,0.005352,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198213,0.005352,-0.006748,0.249909,0,0);}
.ma1_c00102{transform:matrix(0.199047,0.005374,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199047,0.005374,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199047,0.005374,-0.006748,0.249909,0,0);}
.m50_c00102{transform:matrix(0.199236,0.004184,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199236,0.004184,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199236,0.004184,-0.005249,0.249945,0,0);}
.m15_c00102{transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);}
.ma7_c00102{transform:matrix(0.199546,0.005787,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199546,0.005787,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199546,0.005787,-0.007247,0.249895,0,0);}
.m76_c00102{transform:matrix(0.200307,0.005408,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200307,0.005408,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200307,0.005408,-0.006748,0.249909,0,0);}
.mb_c00102{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);}
.m5c_c00102{transform:matrix(0.201237,0.005433,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201237,0.005433,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201237,0.005433,-0.006748,0.249909,0,0);}
.mc3_c00102{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);}
.m5d_c00102{transform:matrix(0.201891,0.005451,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201891,0.005451,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201891,0.005451,-0.006748,0.249909,0,0);}
.m47_c00102{transform:matrix(0.202135,0.004245,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202135,0.004245,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202135,0.004245,-0.005249,0.249945,0,0);}
.m65_c00102{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);}
.m18_c00102{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);}
.mb3_c00102{transform:matrix(0.203920,0.004282,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203920,0.004282,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203920,0.004282,-0.005249,0.249945,0,0);}
.m3e_c00102{transform:matrix(0.204510,0.004295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204510,0.004295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204510,0.004295,-0.005249,0.249945,0,0);}
.md3_c00102{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);}
.m70_c00102{transform:matrix(0.205320,0.005544,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205320,0.005544,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205320,0.005544,-0.006748,0.249909,0,0);}
.mbf_c00102{transform:matrix(0.205445,0.004314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205445,0.004314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205445,0.004314,-0.005249,0.249945,0,0);}
.m4d_c00102{transform:matrix(0.206409,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206409,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206409,0.004335,-0.005249,0.249945,0,0);}
.m88_c00102{transform:matrix(0.206430,0.005574,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206430,0.005574,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206430,0.005574,-0.006748,0.249909,0,0);}
.m2f_c00102{transform:matrix(0.207248,0.003316,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207248,0.003316,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207248,0.003316,-0.003999,0.249968,0,0);}
.mb2_c00102{transform:matrix(0.207599,0.004360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207599,0.004360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207599,0.004360,-0.005249,0.249945,0,0);}
.m6a_c00102{transform:matrix(0.207674,0.005607,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207674,0.005607,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207674,0.005607,-0.006748,0.249909,0,0);}
.mab_c00102{transform:matrix(0.207823,0.006027,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207823,0.006027,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207823,0.006027,-0.007247,0.249895,0,0);}
.m25_c00102{transform:matrix(0.207950,0.003535,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207950,0.003535,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207950,0.003535,-0.004249,0.249964,0,0);}
.m91_c00102{transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);}
.mc4_c00102{transform:matrix(0.209074,0.004391,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209074,0.004391,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209074,0.004391,-0.005249,0.249945,0,0);}
.m5f_c00102{transform:matrix(0.209194,0.005648,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209194,0.005648,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209194,0.005648,-0.006748,0.249909,0,0);}
.ma3_c00102{transform:matrix(0.210621,0.006108,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210621,0.006108,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210621,0.006108,-0.007247,0.249895,0,0);}
.mbb_c00102{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);}
.mb0_c00102{transform:matrix(0.212423,0.004461,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212423,0.004461,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212423,0.004461,-0.005249,0.249945,0,0);}
.m11_c00102{transform:matrix(0.212788,0.003405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212788,0.003405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212788,0.003405,-0.003999,0.249968,0,0);}
.m8f_c00102{transform:matrix(0.212847,0.005747,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212847,0.005747,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212847,0.005747,-0.006748,0.249909,0,0);}
.mb5_c00102{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);}
.m59_c00102{transform:matrix(0.214317,0.005787,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214317,0.005787,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214317,0.005787,-0.006748,0.249909,0,0);}
.m41_c00102{transform:matrix(0.214508,0.004505,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214508,0.004505,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214508,0.004505,-0.005249,0.249945,0,0);}
.m3f_c00102{transform:matrix(0.214758,0.004510,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214758,0.004510,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214758,0.004510,-0.005249,0.249945,0,0);}
.m9_c00102{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);}
.m9d_c00102{transform:matrix(0.215731,0.005825,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215731,0.005825,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215731,0.005825,-0.006748,0.249909,0,0);}
.m13_c00102{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);}
.md2_c00102{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);}
.m89_c00102{transform:matrix(0.216371,0.005842,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216371,0.005842,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216371,0.005842,-0.006748,0.249909,0,0);}
.m72_c00102{transform:matrix(0.217246,0.005866,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217246,0.005866,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217246,0.005866,-0.006748,0.249909,0,0);}
.ma_c00102{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);}
.m7a_c00102{transform:matrix(0.218305,0.005894,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218305,0.005894,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218305,0.005894,-0.006748,0.249909,0,0);}
.mb7_c00102{transform:matrix(0.219452,0.004608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219452,0.004608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219452,0.004608,-0.005249,0.249945,0,0);}
.m2c_c00102{transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);}
.m7b_c00102{transform:matrix(0.219635,0.005930,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219635,0.005930,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219635,0.005930,-0.006748,0.249909,0,0);}
.m99_c00102{transform:matrix(0.220235,0.005946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220235,0.005946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220235,0.005946,-0.006748,0.249909,0,0);}
.m5e_c00102{transform:matrix(0.220460,0.005952,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220460,0.005952,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220460,0.005952,-0.006748,0.249909,0,0);}
.md1_c00102{transform:matrix(0.221963,0.003773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221963,0.003773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221963,0.003773,-0.004249,0.249964,0,0);}
.m90_c00102{transform:matrix(0.222554,0.006009,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222554,0.006009,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222554,0.006009,-0.006748,0.249909,0,0);}
.m49_c00102{transform:matrix(0.222681,0.004676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222681,0.004676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222681,0.004676,-0.005249,0.249945,0,0);}
.mbe_c00102{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);}
.mcd_c00102{transform:matrix(0.223083,0.003792,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223083,0.003792,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223083,0.003792,-0.004249,0.249964,0,0);}
.m4b_c00102{transform:matrix(0.224376,0.004712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224376,0.004712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224376,0.004712,-0.005249,0.249945,0,0);}
.m5b_c00102{transform:matrix(0.224458,0.006060,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224458,0.006060,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224458,0.006060,-0.006748,0.249909,0,0);}
.m34_c00102{transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);}
.m51_c00102{transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);}
.m94_c00102{transform:matrix(0.225113,0.006078,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225113,0.006078,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225113,0.006078,-0.006748,0.249909,0,0);}
.m1a_c00102{transform:matrix(0.225238,0.003153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225238,0.003153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225238,0.003153,-0.003500,0.249976,0,0);}
.mb9_c00102{transform:matrix(0.225330,0.004732,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225330,0.004732,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225330,0.004732,-0.005249,0.249945,0,0);}
.m7e_c00102{transform:matrix(0.225768,0.006096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225768,0.006096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225768,0.006096,-0.006748,0.249909,0,0);}
.m52_c00102{transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);}
.m79_c00102{transform:matrix(0.226133,0.006106,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226133,0.006106,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226133,0.006106,-0.006748,0.249909,0,0);}
.mbd_c00102{transform:matrix(0.226340,0.004753,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226340,0.004753,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226340,0.004753,-0.005249,0.249945,0,0);}
.m8e_c00102{transform:matrix(0.227257,0.006136,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227257,0.006136,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227257,0.006136,-0.006748,0.249909,0,0);}
.m3a_c00102{transform:matrix(0.229141,0.003666,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229141,0.003666,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229141,0.003666,-0.003999,0.249968,0,0);}
.m60_c00102{transform:matrix(0.229786,0.006204,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229786,0.006204,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229786,0.006204,-0.006748,0.249909,0,0);}
.m3c_c00102{transform:matrix(0.229851,0.003678,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229851,0.003678,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229851,0.003678,-0.003999,0.249968,0,0);}
.mf_c00102{transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);}
.mc0_c00102{transform:matrix(0.233084,0.004895,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233084,0.004895,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233084,0.004895,-0.005249,0.249945,0,0);}
.m64_c00102{transform:matrix(0.233455,0.006303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233455,0.006303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233455,0.006303,-0.006748,0.249909,0,0);}
.mc8_c00102{transform:matrix(0.234583,0.004926,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234583,0.004926,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234583,0.004926,-0.005249,0.249945,0,0);}
.m6b_c00102{transform:matrix(0.235134,0.006349,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235134,0.006349,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235134,0.006349,-0.006748,0.249909,0,0);}
.m83_c00102{transform:matrix(0.238043,0.006427,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238043,0.006427,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238043,0.006427,-0.006748,0.249909,0,0);}
.m66_c00102{transform:matrix(0.238558,0.006441,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238558,0.006441,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238558,0.006441,-0.006748,0.249909,0,0);}
.m69_c00102{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);}
.m4_c00102{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);}
.mc9_c00102{transform:matrix(0.239182,0.005023,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239182,0.005023,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239182,0.005023,-0.005249,0.249945,0,0);}
.m43_c00102{transform:matrix(0.239747,0.005035,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239747,0.005035,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239747,0.005035,-0.005249,0.249945,0,0);}
.m40_c00102{transform:matrix(0.242597,0.005095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242597,0.005095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242597,0.005095,-0.005249,0.249945,0,0);}
.m42_c00102{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);}
.m73_c00102{transform:matrix(0.244111,0.006591,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244111,0.006591,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244111,0.006591,-0.006748,0.249909,0,0);}
.m62_c00102{transform:matrix(0.244406,0.006599,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244406,0.006599,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244406,0.006599,-0.006748,0.249909,0,0);}
.m45_c00102{transform:matrix(0.246856,0.005184,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246856,0.005184,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246856,0.005184,-0.005249,0.249945,0,0);}
.m1_c00102{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);}
.m54_c00102{transform:matrix(0.248780,0.005224,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248780,0.005224,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248780,0.005224,-0.005249,0.249945,0,0);}
.mbc_c00102{transform:matrix(0.249050,0.005230,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249050,0.005230,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249050,0.005230,-0.005249,0.249945,0,0);}
.mcb_c00102{transform:matrix(0.249589,0.004243,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249589,0.004243,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249589,0.004243,-0.004249,0.249964,0,0);}
.mc1_c00102{transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);}
.mcf_c00102{transform:matrix(0.254463,0.004326,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254463,0.004326,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254463,0.004326,-0.004249,0.249964,0,0);}
.ma5_c00102{transform:matrix(0.256697,0.007444,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256697,0.007444,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256697,0.007444,-0.007247,0.249895,0,0);}
.m27_c00102{transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);}
.mc6_c00102{transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);}
.ma6_c00102{transform:matrix(0.260296,0.007549,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260296,0.007549,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260296,0.007549,-0.007247,0.249895,0,0);}
.m80_c00102{transform:matrix(0.264474,0.007141,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264474,0.007141,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264474,0.007141,-0.006748,0.249909,0,0);}
.m95_c00102{transform:matrix(0.266123,0.007185,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266123,0.007185,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266123,0.007185,-0.006748,0.249909,0,0);}
.m58_c00102{transform:matrix(0.267348,0.007218,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267348,0.007218,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267348,0.007218,-0.006748,0.249909,0,0);}
.m9c_c00102{transform:matrix(0.267448,0.007221,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267448,0.007221,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267448,0.007221,-0.006748,0.249909,0,0);}
.mb8_c00102{transform:matrix(0.268396,0.005636,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268396,0.005636,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268396,0.005636,-0.005249,0.249945,0,0);}
.m28_c00102{transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);}
.mc7_c00102{transform:matrix(0.271635,0.005704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271635,0.005704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271635,0.005704,-0.005249,0.249945,0,0);}
.mb4_c00102{transform:matrix(0.272040,0.005713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272040,0.005713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272040,0.005713,-0.005249,0.249945,0,0);}
.m2e_c00102{transform:matrix(0.272760,0.004364,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272760,0.004364,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272760,0.004364,-0.003999,0.249968,0,0);}
.m75_c00102{transform:matrix(0.277834,0.007502,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277834,0.007502,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277834,0.007502,-0.006748,0.249909,0,0);}
.m74_c00102{transform:matrix(0.281248,0.007594,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281248,0.007594,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281248,0.007594,-0.006748,0.249909,0,0);}
.mc5_c00102{transform:matrix(0.284007,0.005964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284007,0.005964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284007,0.005964,-0.005249,0.249945,0,0);}
.m8b_c00102{transform:matrix(0.287335,0.007758,-0.006748,0.249909,0,0);-ms-transform:matrix(0.287335,0.007758,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.287335,0.007758,-0.006748,0.249909,0,0);}
.m29_c00102{transform:matrix(0.292448,0.004972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292448,0.004972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292448,0.004972,-0.004249,0.249964,0,0);}
.m87_c00102{transform:matrix(0.298611,0.008063,-0.006748,0.249909,0,0);-ms-transform:matrix(0.298611,0.008063,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.298611,0.008063,-0.006748,0.249909,0,0);}
.ma9_c00102{transform:matrix(0.299459,0.008684,-0.007247,0.249895,0,0);-ms-transform:matrix(0.299459,0.008684,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.299459,0.008684,-0.007247,0.249895,0,0);}
.mac_c00102{transform:matrix(0.299504,0.008686,-0.007247,0.249895,0,0);-ms-transform:matrix(0.299504,0.008686,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.299504,0.008686,-0.007247,0.249895,0,0);}
.m6_c00102{transform:matrix(0.301585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301585,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);}
.mca_c00102{transform:matrix(0.304066,0.005169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.304066,0.005169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.304066,0.005169,-0.004249,0.249964,0,0);}
.mb6_c00102{transform:matrix(0.310357,0.006517,-0.005249,0.249945,0,0);-ms-transform:matrix(0.310357,0.006517,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.310357,0.006517,-0.005249,0.249945,0,0);}
.m81_c00102{transform:matrix(0.314455,0.008490,-0.006748,0.249909,0,0);-ms-transform:matrix(0.314455,0.008490,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.314455,0.008490,-0.006748,0.249909,0,0);}
.m32_c00102{transform:matrix(0.318339,0.005093,-0.003999,0.249968,0,0);-ms-transform:matrix(0.318339,0.005093,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.318339,0.005093,-0.003999,0.249968,0,0);}
.m7_c00102{transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328390,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.331042,0.006952,-0.005249,0.249945,0,0);-ms-transform:matrix(0.331042,0.006952,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.331042,0.006952,-0.005249,0.249945,0,0);}
.m56_c00102{transform:matrix(0.333873,0.009015,-0.006748,0.249909,0,0);-ms-transform:matrix(0.333873,0.009015,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.333873,0.009015,-0.006748,0.249909,0,0);}
.m3d_c00102{transform:matrix(0.352942,0.007412,-0.005249,0.249945,0,0);-ms-transform:matrix(0.352942,0.007412,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.352942,0.007412,-0.005249,0.249945,0,0);}
.mc2_c00102{transform:matrix(0.355672,0.007469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.355672,0.007469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.355672,0.007469,-0.005249,0.249945,0,0);}
.me_c00102{transform:matrix(0.361194,0.005779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361194,0.005779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361194,0.005779,-0.003999,0.249968,0,0);}
.m7c_c00102{transform:matrix(0.363368,0.009811,-0.006748,0.249909,0,0);-ms-transform:matrix(0.363368,0.009811,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.363368,0.009811,-0.006748,0.249909,0,0);}
.m57_c00102{transform:matrix(0.372124,0.010047,-0.006748,0.249909,0,0);-ms-transform:matrix(0.372124,0.010047,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.372124,0.010047,-0.006748,0.249909,0,0);}
.md5_c00102{transform:matrix(0.383800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383800,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.396131,0.010696,-0.006748,0.249909,0,0);-ms-transform:matrix(0.396131,0.010696,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.396131,0.010696,-0.006748,0.249909,0,0);}
.mad_c00102{transform:matrix(0.452135,0.013112,-0.007247,0.249895,0,0);-ms-transform:matrix(0.452135,0.013112,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.452135,0.013112,-0.007247,0.249895,0,0);}
.m10_c00102{transform:matrix(0.492177,0.007875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.492177,0.007875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.492177,0.007875,-0.003999,0.249968,0,0);}
.ma2_c00102{transform:matrix(0.633074,0.018359,-0.007247,0.249895,0,0);-ms-transform:matrix(0.633074,0.018359,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.633074,0.018359,-0.007247,0.249895,0,0);}
.m23_c00102{transform:matrix(0.681512,0.011586,-0.004249,0.249964,0,0);-ms-transform:matrix(0.681512,0.011586,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.681512,0.011586,-0.004249,0.249964,0,0);}
.ma8_c00102{transform:matrix(0.831905,0.024125,-0.007247,0.249895,0,0);-ms-transform:matrix(0.831905,0.024125,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.831905,0.024125,-0.007247,0.249895,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;}
.fs14_c00102{font-size:58.812964px;}
.fs9_c00102{font-size:59.863195px;}
.fs13_c00102{font-size:64.064121px;}
.fs12_c00102{font-size:65.114353px;}
.fs8_c00102{font-size:66.158467px;}
.fs15_c00102{font-size:67.209710px;}
.fsd_c00102{font-size:67.224490px;}
.fs0_c00102{font-size:68.250000px;}
.fsc_c00102{font-size:68.274873px;}
.fs7_c00102{font-size:69.308870px;}
.fs10_c00102{font-size:69.325255px;}
.fs3_c00102{font-size:70.356894px;}
.fsa_c00102{font-size:71.415742px;}
.fsb_c00102{font-size:71.426021px;}
.fse_c00102{font-size:72.476403px;}
.fs1_c00102{font-size:73.500000px;}
.fsf_c00102{font-size:73.526786px;}
.fs11_c00102{font-size:73.530900px;}
.fs4_c00102{font-size:76.657511px;}
.fs2_c00102{font-size:76.659811px;}
.fs5_c00102{font-size:99.764413px;}
.fs6_c00102{font-size:123.917902px;}
.fs16_c00102{font-size:156.450000px;}
.y0_c00102{bottom:0.000000px;}
.yd3_c00102{bottom:76.453500px;}
.yab_c00102{bottom:142.214836px;}
.yaa_c00102{bottom:142.842237px;}
.ya9_c00102{bottom:144.255813px;}
.ya8_c00102{bottom:144.697860px;}
.ya7_c00102{bottom:145.308339px;}
.ya6_c00102{bottom:147.516051px;}
.ya5_c00102{bottom:147.972149px;}
.ya4_c00102{bottom:149.874839px;}
.ya3_c00102{bottom:150.482838px;}
.ya2_c00102{bottom:151.459804px;}
.ya1_c00102{bottom:153.415216px;}
.ya0_c00102{bottom:154.156500px;}
.y9f_c00102{bottom:166.235261px;}
.y9e_c00102{bottom:167.457708px;}
.y9d_c00102{bottom:169.846584px;}
.y9c_c00102{bottom:170.554494px;}
.y9b_c00102{bottom:172.545326px;}
.y9a_c00102{bottom:173.357780px;}
.y99_c00102{bottom:174.712193px;}
.y98_c00102{bottom:176.045949px;}
.y97_c00102{bottom:188.771768px;}
.y96_c00102{bottom:190.680087px;}
.y95_c00102{bottom:191.578418px;}
.y94_c00102{bottom:192.937598px;}
.y93_c00102{bottom:193.557612px;}
.y92_c00102{bottom:195.334347px;}
.y91_c00102{bottom:196.351424px;}
.y90_c00102{bottom:196.826084px;}
.y8f_c00102{bottom:198.462000px;}
.y8e_c00102{bottom:211.720834px;}
.y8d_c00102{bottom:212.411562px;}
.y8c_c00102{bottom:213.680751px;}
.y8b_c00102{bottom:214.285618px;}
.y8a_c00102{bottom:215.347609px;}
.y89_c00102{bottom:216.871058px;}
.y88_c00102{bottom:217.902917px;}
.y87_c00102{bottom:219.369259px;}
.y86_c00102{bottom:220.834995px;}
.y85_c00102{bottom:221.410500px;}
.y84_c00102{bottom:234.942293px;}
.y83_c00102{bottom:235.819852px;}
.y82_c00102{bottom:236.598759px;}
.y81_c00102{bottom:237.679986px;}
.y80_c00102{bottom:239.409756px;}
.y7f_c00102{bottom:239.733744px;}
.y7e_c00102{bottom:240.658364px;}
.y7d_c00102{bottom:241.746111px;}
.y7c_c00102{bottom:242.427863px;}
.y7b_c00102{bottom:257.773886px;}
.y7a_c00102{bottom:257.825400px;}
.y79_c00102{bottom:260.054111px;}
.y78_c00102{bottom:260.966784px;}
.y77_c00102{bottom:261.359902px;}
.y76_c00102{bottom:262.433272px;}
.y75_c00102{bottom:263.297955px;}
.y74_c00102{bottom:264.597591px;}
.y73_c00102{bottom:265.657516px;}
.y72_c00102{bottom:279.806724px;}
.y71_c00102{bottom:281.263125px;}
.y70_c00102{bottom:282.784762px;}
.y6f_c00102{bottom:283.256003px;}
.y6e_c00102{bottom:283.851642px;}
.y6d_c00102{bottom:285.118688px;}
.y6c_c00102{bottom:285.868694px;}
.y6b_c00102{bottom:286.669440px;}
.y6a_c00102{bottom:288.072833px;}
.y69_c00102{bottom:303.291559px;}
.y68_c00102{bottom:303.899064px;}
.y67_c00102{bottom:304.237076px;}
.y66_c00102{bottom:304.262871px;}
.y65_c00102{bottom:305.918304px;}
.y64_c00102{bottom:307.595685px;}
.y63_c00102{bottom:308.263203px;}
.y62_c00102{bottom:309.002156px;}
.y61_c00102{bottom:309.259947px;}
.y60_c00102{bottom:310.225144px;}
.y5f_c00102{bottom:325.355210px;}
.y5e_c00102{bottom:325.948894px;}
.y5d_c00102{bottom:326.582255px;}
.y5c_c00102{bottom:327.815251px;}
.y5b_c00102{bottom:328.239178px;}
.y5a_c00102{bottom:329.596709px;}
.y59_c00102{bottom:330.608126px;}
.y58_c00102{bottom:331.262013px;}
.y57_c00102{bottom:331.932216px;}
.y56_c00102{bottom:332.367843px;}
.y55_c00102{bottom:350.985658px;}
.y54_c00102{bottom:352.089000px;}
.y53_c00102{bottom:376.559666px;}
.y52_c00102{bottom:376.911848px;}
.y51_c00102{bottom:377.848514px;}
.y50_c00102{bottom:378.626528px;}
.y4f_c00102{bottom:379.234152px;}
.y4e_c00102{bottom:380.568387px;}
.y4d_c00102{bottom:380.971595px;}
.y4c_c00102{bottom:382.593630px;}
.y4b_c00102{bottom:400.064735px;}
.y4a_c00102{bottom:400.978361px;}
.y49_c00102{bottom:401.445096px;}
.y48_c00102{bottom:402.158540px;}
.y47_c00102{bottom:403.678005px;}
.y46_c00102{bottom:404.043500px;}
.y45_c00102{bottom:404.729664px;}
.y44_c00102{bottom:405.276000px;}
.y43_c00102{bottom:421.267488px;}
.y42_c00102{bottom:421.714725px;}
.y41_c00102{bottom:422.779425px;}
.y40_c00102{bottom:423.990757px;}
.y3f_c00102{bottom:424.907911px;}
.y3e_c00102{bottom:426.214343px;}
.y3d_c00102{bottom:426.933928px;}
.y3c_c00102{bottom:427.382362px;}
.y3b_c00102{bottom:428.041500px;}
.y3a_c00102{bottom:444.360588px;}
.y39_c00102{bottom:445.026024px;}
.y38_c00102{bottom:446.030040px;}
.y37_c00102{bottom:446.770596px;}
.y36_c00102{bottom:447.213528px;}
.y35_c00102{bottom:448.288644px;}
.y34_c00102{bottom:449.113860px;}
.y33_c00102{bottom:449.524872px;}
.y32_c00102{bottom:450.362328px;}
.y31_c00102{bottom:466.769352px;}
.y30_c00102{bottom:467.275272px;}
.y2f_c00102{bottom:467.628288px;}
.y2e_c00102{bottom:468.237744px;}
.y2d_c00102{bottom:469.340664px;}
.y2c_c00102{bottom:470.204904px;}
.y2b_c00102{bottom:470.572272px;}
.y2a_c00102{bottom:471.211560px;}
.y29_c00102{bottom:471.574248px;}
.y28_c00102{bottom:471.963000px;}
.yd2_c00102{bottom:487.765950px;}
.yd1_c00102{bottom:488.235532px;}
.yd0_c00102{bottom:488.702310px;}
.ycf_c00102{bottom:489.638925px;}
.yce_c00102{bottom:490.512530px;}
.ycd_c00102{bottom:491.289055px;}
.ycc_c00102{bottom:491.990918px;}
.ycb_c00102{bottom:492.760354px;}
.yca_c00102{bottom:493.169119px;}
.yc9_c00102{bottom:493.812867px;}
.yc8_c00102{bottom:494.373000px;}
.yc7_c00102{bottom:512.285080px;}
.yc6_c00102{bottom:513.287562px;}
.yc5_c00102{bottom:513.884185px;}
.yc4_c00102{bottom:514.741818px;}
.yc3_c00102{bottom:515.625600px;}
.yc2_c00102{bottom:516.092235px;}
.yc1_c00102{bottom:516.731971px;}
.yc0_c00102{bottom:517.315561px;}
.ybf_c00102{bottom:533.305217px;}
.ybe_c00102{bottom:534.085998px;}
.ybd_c00102{bottom:534.593242px;}
.ybc_c00102{bottom:535.071541px;}
.ybb_c00102{bottom:535.953418px;}
.yba_c00102{bottom:536.583793px;}
.yb9_c00102{bottom:537.118968px;}
.yb8_c00102{bottom:538.083705px;}
.yb7_c00102{bottom:538.622817px;}
.yb6_c00102{bottom:539.120410px;}
.yb5_c00102{bottom:552.424190px;}
.yb4_c00102{bottom:554.172219px;}
.yb3_c00102{bottom:555.531286px;}
.yb2_c00102{bottom:556.445259px;}
.yb1_c00102{bottom:557.602128px;}
.yb0_c00102{bottom:558.690642px;}
.yaf_c00102{bottom:559.309239px;}
.yae_c00102{bottom:559.745735px;}
.yad_c00102{bottom:560.561805px;}
.yac_c00102{bottom:561.145500px;}
.y27_c00102{bottom:638.690936px;}
.y26_c00102{bottom:641.057634px;}
.y25_c00102{bottom:643.151568px;}
.y24_c00102{bottom:675.035042px;}
.y23_c00102{bottom:677.199660px;}
.y22_c00102{bottom:678.062682px;}
.y21_c00102{bottom:680.404500px;}
.y1a_c00102{bottom:742.924896px;}
.y1b_c00102{bottom:742.925118px;}
.y1c_c00102{bottom:742.925220px;}
.y20_c00102{bottom:742.925292px;}
.y1e_c00102{bottom:742.925508px;}
.y1d_c00102{bottom:742.925886px;}
.y1f_c00102{bottom:742.925931px;}
.y19_c00102{bottom:763.653240px;}
.y18_c00102{bottom:764.198568px;}
.y17_c00102{bottom:764.971200px;}
.y16_c00102{bottom:765.430932px;}
.y15_c00102{bottom:766.150014px;}
.y14_c00102{bottom:766.452603px;}
.y13_c00102{bottom:767.004525px;}
.y12_c00102{bottom:767.306904px;}
.y11_c00102{bottom:767.613000px;}
.y9_c00102{bottom:786.019500px;}
.y8_c00102{bottom:786.328500px;}
.y7_c00102{bottom:787.183500px;}
.y6_c00102{bottom:787.462500px;}
.y5_c00102{bottom:788.307000px;}
.y4_c00102{bottom:788.544000px;}
.y3_c00102{bottom:789.390000px;}
.y2_c00102{bottom:789.753000px;}
.y10_c00102{bottom:807.353232px;}
.yf_c00102{bottom:807.629616px;}
.ye_c00102{bottom:808.522872px;}
.yd_c00102{bottom:809.225976px;}
.yc_c00102{bottom:809.528064px;}
.yb_c00102{bottom:810.809424px;}
.ya_c00102{bottom:811.047000px;}
.y1_c00102{bottom:811.554000px;}
.h16_c00102{height:58.812964px;}
.hb_c00102{height:59.863195px;}
.h15_c00102{height:64.064121px;}
.h14_c00102{height:65.114353px;}
.ha_c00102{height:66.158467px;}
.h17_c00102{height:67.209710px;}
.hf_c00102{height:67.224490px;}
.h2_c00102{height:68.250000px;}
.he_c00102{height:68.274873px;}
.h9_c00102{height:69.308870px;}
.h12_c00102{height:69.325255px;}
.h5_c00102{height:70.356894px;}
.hc_c00102{height:71.415742px;}
.hd_c00102{height:71.426021px;}
.h10_c00102{height:72.476403px;}
.h3_c00102{height:73.500000px;}
.h11_c00102{height:73.526786px;}
.h13_c00102{height:73.530900px;}
.h6_c00102{height:76.657511px;}
.h4_c00102{height:76.659811px;}
.h7_c00102{height:99.764413px;}
.h8_c00102{height:123.917902px;}
.h18_c00102{height:156.450000px;}
.h1_c00102{height:1005.000000px;}
.h0_c00102{height:1005.150000px;}
.w0_c00102{width:705.450000px;}
.w1_c00102{width:705.750000px;}
.x0_c00102{left:0.000000px;}
.x5a_c00102{left:99.571500px;}
.x67_c00102{left:104.670000px;}
.x78_c00102{left:115.881300px;}
.x5b_c00102{left:120.886500px;}
.x54_c00102{left:122.187474px;}
.x33_c00102{left:123.321000px;}
.x1_c00102{left:124.470000px;}
.x73_c00102{left:125.874405px;}
.x13_c00102{left:128.350500px;}
.x68_c00102{left:130.231500px;}
.x24_c00102{left:141.930180px;}
.x43_c00102{left:145.698958px;}
.x55_c00102{left:148.382663px;}
.x5_c00102{left:149.944500px;}
.x1a_c00102{left:152.822733px;}
.x34_c00102{left:154.708500px;}
.x2_c00102{left:156.060000px;}
.x6e_c00102{left:158.251500px;}
.x4a_c00102{left:164.147693px;}
.x2e_c00102{left:166.342212px;}
.x14_c00102{left:171.813000px;}
.x4b_c00102{left:174.863043px;}
.x35_c00102{left:176.062500px;}
.x44_c00102{left:179.194276px;}
.x39_c00102{left:182.899500px;}
.x1b_c00102{left:186.036243px;}
.x79_c00102{left:187.783817px;}
.x56_c00102{left:190.226297px;}
.x7a_c00102{left:191.826000px;}
.x3_c00102{left:194.130000px;}
.x3c_c00102{left:195.725857px;}
.x69_c00102{left:197.659500px;}
.x3a_c00102{left:200.304000px;}
.x4c_c00102{left:205.623014px;}
.x6_c00102{left:210.424500px;}
.x27_c00102{left:211.728000px;}
.x20_c00102{left:213.588000px;}
.x4d_c00102{left:215.674624px;}
.x57_c00102{left:225.805769px;}
.x7_c00102{left:227.329500px;}
.x5c_c00102{left:229.482000px;}
.x6a_c00102{left:231.348000px;}
.x15_c00102{left:232.849500px;}
.x28_c00102{left:234.688500px;}
.x63_c00102{left:235.825388px;}
.x4_c00102{left:237.870000px;}
.xc_c00102{left:239.016000px;}
.x6f_c00102{left:245.692500px;}
.x4e_c00102{left:246.955176px;}
.x74_c00102{left:250.980041px;}
.x25_c00102{left:252.128432px;}
.xd_c00102{left:253.864500px;}
.x7b_c00102{left:261.132000px;}
.x45_c00102{left:262.443490px;}
.x5d_c00102{left:267.699000px;}
.x41_c00102{left:268.840500px;}
.x3d_c00102{left:271.315207px;}
.x36_c00102{left:272.539500px;}
.x1c_c00102{left:275.684820px;}
.x2f_c00102{left:281.918820px;}
.x16_c00102{left:284.212500px;}
.x8_c00102{left:287.626500px;}
.x29_c00102{left:288.703500px;}
.x3e_c00102{left:297.748605px;}
.x1d_c00102{left:299.716524px;}
.x7c_c00102{left:302.418000px;}
.x30_c00102{left:304.069404px;}
.x9_c00102{left:307.602000px;}
.x42_c00102{left:309.705000px;}
.x17_c00102{left:317.050500px;}
.x64_c00102{left:322.880492px;}
.x4f_c00102{left:324.616494px;}
.x61_c00102{left:327.006000px;}
.x3b_c00102{left:328.858500px;}
.x46_c00102{left:330.346329px;}
.x3f_c00102{left:331.581187px;}
.xe_c00102{left:333.949500px;}
.x52_c00102{left:338.496611px;}
.x31_c00102{left:341.070528px;}
.x1e_c00102{left:343.730655px;}
.x58_c00102{left:346.364009px;}
.x7d_c00102{left:348.096000px;}
.x21_c00102{left:351.342000px;}
.xf_c00102{left:352.830000px;}
.x2a_c00102{left:357.636000px;}
.x1f_c00102{left:363.172956px;}
.xa_c00102{left:368.632500px;}
.x18_c00102{left:372.238500px;}
.x37_c00102{left:373.896000px;}
.x26_c00102{left:376.694699px;}
.x75_c00102{left:378.989991px;}
.x70_c00102{left:382.072500px;}
.x5e_c00102{left:385.858500px;}
.x40_c00102{left:387.666856px;}
.xb_c00102{left:390.670500px;}
.x2b_c00102{left:395.727000px;}
.x10_c00102{left:396.774000px;}
.x65_c00102{left:399.960189px;}
.x22_c00102{left:402.108000px;}
.x50_c00102{left:407.655717px;}
.x76_c00102{left:408.912141px;}
.x59_c00102{left:410.105250px;}
.x19_c00102{left:411.190500px;}
.x47_c00102{left:413.173962px;}
.x2c_c00102{left:417.790500px;}
.x32_c00102{left:424.499676px;}
.x53_c00102{left:426.173960px;}
.x6b_c00102{left:430.830000px;}
.x5f_c00102{left:432.865500px;}
.x66_c00102{left:439.398437px;}
.x77_c00102{left:440.569949px;}
.x48_c00102{left:444.859956px;}
.x38_c00102{left:445.893000px;}
.x2d_c00102{left:449.410500px;}
.x11_c00102{left:452.602500px;}
.x7e_c00102{left:454.579500px;}
.x60_c00102{left:458.448000px;}
.x51_c00102{left:468.323617px;}
.x12_c00102{left:469.876500px;}
.x49_c00102{left:474.520545px;}
.x62_c00102{left:481.296000px;}
.x71_c00102{left:490.312500px;}
.x6c_c00102{left:494.817000px;}
.x7f_c00102{left:509.659500px;}
.x6d_c00102{left:516.451500px;}
.x23_c00102{left:529.438500px;}
.x80_c00102{left:542.970000px;}
.x72_c00102{left:573.552000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fs14_c00102{font-size:52.278190pt;}
.fs9_c00102{font-size:53.211729pt;}
.fs13_c00102{font-size:56.945886pt;}
.fs12_c00102{font-size:57.879425pt;}
.fs8_c00102{font-size:58.807526pt;}
.fs15_c00102{font-size:59.741964pt;}
.fsd_c00102{font-size:59.755102pt;}
.fs0_c00102{font-size:60.666667pt;}
.fsc_c00102{font-size:60.688776pt;}
.fs7_c00102{font-size:61.607884pt;}
.fs10_c00102{font-size:61.622449pt;}
.fs3_c00102{font-size:62.539461pt;}
.fsa_c00102{font-size:63.480660pt;}
.fsb_c00102{font-size:63.489796pt;}
.fse_c00102{font-size:64.423470pt;}
.fs1_c00102{font-size:65.333333pt;}
.fsf_c00102{font-size:65.357143pt;}
.fs11_c00102{font-size:65.360800pt;}
.fs4_c00102{font-size:68.140010pt;}
.fs2_c00102{font-size:68.142054pt;}
.fs5_c00102{font-size:88.679478pt;}
.fs6_c00102{font-size:110.149246pt;}
.fs16_c00102{font-size:139.066667pt;}
.y0_c00102{bottom:0.000000pt;}
.yd3_c00102{bottom:67.958667pt;}
.yab_c00102{bottom:126.413188pt;}
.yaa_c00102{bottom:126.970877pt;}
.ya9_c00102{bottom:128.227389pt;}
.ya8_c00102{bottom:128.620320pt;}
.ya7_c00102{bottom:129.162968pt;}
.ya6_c00102{bottom:131.125379pt;}
.ya5_c00102{bottom:131.530799pt;}
.ya4_c00102{bottom:133.222079pt;}
.ya3_c00102{bottom:133.762523pt;}
.ya2_c00102{bottom:134.630937pt;}
.ya1_c00102{bottom:136.369081pt;}
.ya0_c00102{bottom:137.028000pt;}
.y9f_c00102{bottom:147.764676pt;}
.y9e_c00102{bottom:148.851296pt;}
.y9d_c00102{bottom:150.974741pt;}
.y9c_c00102{bottom:151.603995pt;}
.y9b_c00102{bottom:153.373623pt;}
.y9a_c00102{bottom:154.095804pt;}
.y99_c00102{bottom:155.299727pt;}
.y98_c00102{bottom:156.485288pt;}
.y97_c00102{bottom:167.797127pt;}
.y96_c00102{bottom:169.493411pt;}
.y95_c00102{bottom:170.291927pt;}
.y94_c00102{bottom:171.500087pt;}
.y93_c00102{bottom:172.051211pt;}
.y92_c00102{bottom:173.630531pt;}
.y91_c00102{bottom:174.534599pt;}
.y90_c00102{bottom:174.956519pt;}
.y8f_c00102{bottom:176.410667pt;}
.y8e_c00102{bottom:188.196297pt;}
.y8d_c00102{bottom:188.810277pt;}
.y8c_c00102{bottom:189.938445pt;}
.y8b_c00102{bottom:190.476105pt;}
.y8a_c00102{bottom:191.420097pt;}
.y89_c00102{bottom:192.774273pt;}
.y88_c00102{bottom:193.691481pt;}
.y87_c00102{bottom:194.994897pt;}
.y86_c00102{bottom:196.297773pt;}
.y85_c00102{bottom:196.809333pt;}
.y84_c00102{bottom:208.837593pt;}
.y83_c00102{bottom:209.617647pt;}
.y82_c00102{bottom:210.310008pt;}
.y81_c00102{bottom:211.271099pt;}
.y80_c00102{bottom:212.808672pt;}
.y7f_c00102{bottom:213.096661pt;}
.y7e_c00102{bottom:213.918545pt;}
.y7d_c00102{bottom:214.885432pt;}
.y7c_c00102{bottom:215.491433pt;}
.y7b_c00102{bottom:229.132343pt;}
.y7a_c00102{bottom:229.178133pt;}
.y79_c00102{bottom:231.159209pt;}
.y78_c00102{bottom:231.970475pt;}
.y77_c00102{bottom:232.319913pt;}
.y76_c00102{bottom:233.274020pt;}
.y75_c00102{bottom:234.042627pt;}
.y74_c00102{bottom:235.197859pt;}
.y73_c00102{bottom:236.140015pt;}
.y72_c00102{bottom:248.717088pt;}
.y71_c00102{bottom:250.011667pt;}
.y70_c00102{bottom:251.364233pt;}
.y6f_c00102{bottom:251.783113pt;}
.y6e_c00102{bottom:252.312571pt;}
.y6d_c00102{bottom:253.438833pt;}
.y6c_c00102{bottom:254.105505pt;}
.y6b_c00102{bottom:254.817280pt;}
.y6a_c00102{bottom:256.064740pt;}
.y69_c00102{bottom:269.592497pt;}
.y68_c00102{bottom:270.132501pt;}
.y67_c00102{bottom:270.432956pt;}
.y66_c00102{bottom:270.455885pt;}
.y65_c00102{bottom:271.927381pt;}
.y64_c00102{bottom:273.418387pt;}
.y63_c00102{bottom:274.011736pt;}
.y62_c00102{bottom:274.668583pt;}
.y61_c00102{bottom:274.897731pt;}
.y60_c00102{bottom:275.755684pt;}
.y5f_c00102{bottom:289.204631pt;}
.y5e_c00102{bottom:289.732351pt;}
.y5d_c00102{bottom:290.295337pt;}
.y5c_c00102{bottom:291.391335pt;}
.y5b_c00102{bottom:291.768159pt;}
.y5a_c00102{bottom:292.974852pt;}
.y59_c00102{bottom:293.873889pt;}
.y58_c00102{bottom:294.455123pt;}
.y57_c00102{bottom:295.050859pt;}
.y56_c00102{bottom:295.438083pt;}
.y55_c00102{bottom:311.987252pt;}
.y54_c00102{bottom:312.968000pt;}
.y53_c00102{bottom:334.719703pt;}
.y52_c00102{bottom:335.032753pt;}
.y51_c00102{bottom:335.865345pt;}
.y50_c00102{bottom:336.556913pt;}
.y4f_c00102{bottom:337.097024pt;}
.y4e_c00102{bottom:338.283011pt;}
.y4d_c00102{bottom:338.641417pt;}
.y4c_c00102{bottom:340.083227pt;}
.y4b_c00102{bottom:355.613097pt;}
.y4a_c00102{bottom:356.425209pt;}
.y49_c00102{bottom:356.840085pt;}
.y48_c00102{bottom:357.474257pt;}
.y47_c00102{bottom:358.824893pt;}
.y46_c00102{bottom:359.149777pt;}
.y45_c00102{bottom:359.759701pt;}
.y44_c00102{bottom:360.245333pt;}
.y43_c00102{bottom:374.459989pt;}
.y42_c00102{bottom:374.857533pt;}
.y41_c00102{bottom:375.803933pt;}
.y40_c00102{bottom:376.880673pt;}
.y3f_c00102{bottom:377.695921pt;}
.y3e_c00102{bottom:378.857193pt;}
.y3d_c00102{bottom:379.496825pt;}
.y3c_c00102{bottom:379.895433pt;}
.y3b_c00102{bottom:380.481333pt;}
.y3a_c00102{bottom:394.987189pt;}
.y39_c00102{bottom:395.578688pt;}
.y38_c00102{bottom:396.471147pt;}
.y37_c00102{bottom:397.129419pt;}
.y36_c00102{bottom:397.523136pt;}
.y35_c00102{bottom:398.478795pt;}
.y34_c00102{bottom:399.212320pt;}
.y33_c00102{bottom:399.577664pt;}
.y32_c00102{bottom:400.322069pt;}
.y31_c00102{bottom:414.906091pt;}
.y30_c00102{bottom:415.355797pt;}
.y2f_c00102{bottom:415.669589pt;}
.y2e_c00102{bottom:416.211328pt;}
.y2d_c00102{bottom:417.191701pt;}
.y2c_c00102{bottom:417.959915pt;}
.y2b_c00102{bottom:418.286464pt;}
.y2a_c00102{bottom:418.854720pt;}
.y29_c00102{bottom:419.177109pt;}
.y28_c00102{bottom:419.522667pt;}
.yd2_c00102{bottom:433.569733pt;}
.yd1_c00102{bottom:433.987140pt;}
.yd0_c00102{bottom:434.402053pt;}
.ycf_c00102{bottom:435.234600pt;}
.yce_c00102{bottom:436.011137pt;}
.ycd_c00102{bottom:436.701383pt;}
.ycc_c00102{bottom:437.325260pt;}
.ycb_c00102{bottom:438.009204pt;}
.yca_c00102{bottom:438.372551pt;}
.yc9_c00102{bottom:438.944771pt;}
.yc8_c00102{bottom:439.442667pt;}
.yc7_c00102{bottom:455.364516pt;}
.yc6_c00102{bottom:456.255611pt;}
.yc5_c00102{bottom:456.785943pt;}
.yc4_c00102{bottom:457.548283pt;}
.yc3_c00102{bottom:458.333867pt;}
.yc2_c00102{bottom:458.748653pt;}
.yc1_c00102{bottom:459.317308pt;}
.yc0_c00102{bottom:459.836055pt;}
.ybf_c00102{bottom:474.049081pt;}
.ybe_c00102{bottom:474.743109pt;}
.ybd_c00102{bottom:475.193993pt;}
.ybc_c00102{bottom:475.619148pt;}
.ybb_c00102{bottom:476.403039pt;}
.yba_c00102{bottom:476.963372pt;}
.yb9_c00102{bottom:477.439083pt;}
.yb8_c00102{bottom:478.296627pt;}
.yb7_c00102{bottom:478.775837pt;}
.yb6_c00102{bottom:479.218143pt;}
.yb5_c00102{bottom:491.043724pt;}
.yb4_c00102{bottom:492.597528pt;}
.yb3_c00102{bottom:493.805588pt;}
.yb2_c00102{bottom:494.618008pt;}
.yb1_c00102{bottom:495.646336pt;}
.yb0_c00102{bottom:496.613904pt;}
.yaf_c00102{bottom:497.163768pt;}
.yae_c00102{bottom:497.551764pt;}
.yad_c00102{bottom:498.277160pt;}
.yac_c00102{bottom:498.796000pt;}
.y27_c00102{bottom:567.725276pt;}
.y26_c00102{bottom:569.829008pt;}
.y25_c00102{bottom:571.690283pt;}
.y24_c00102{bottom:600.031148pt;}
.y23_c00102{bottom:601.955253pt;}
.y22_c00102{bottom:602.722384pt;}
.y21_c00102{bottom:604.804000pt;}
.y1a_c00102{bottom:660.377685pt;}
.y1b_c00102{bottom:660.377883pt;}
.y1c_c00102{bottom:660.377973pt;}
.y20_c00102{bottom:660.378037pt;}
.y1e_c00102{bottom:660.378229pt;}
.y1d_c00102{bottom:660.378565pt;}
.y1f_c00102{bottom:660.378605pt;}
.y19_c00102{bottom:678.802880pt;}
.y18_c00102{bottom:679.287616pt;}
.y17_c00102{bottom:679.974400pt;}
.y16_c00102{bottom:680.383051pt;}
.y15_c00102{bottom:681.022235pt;}
.y14_c00102{bottom:681.291203pt;}
.y13_c00102{bottom:681.781800pt;}
.y12_c00102{bottom:682.050581pt;}
.y11_c00102{bottom:682.322667pt;}
.y9_c00102{bottom:698.684000pt;}
.y8_c00102{bottom:698.958667pt;}
.y7_c00102{bottom:699.718667pt;}
.y6_c00102{bottom:699.966667pt;}
.y5_c00102{bottom:700.717333pt;}
.y4_c00102{bottom:700.928000pt;}
.y3_c00102{bottom:701.680000pt;}
.y2_c00102{bottom:702.002667pt;}
.y10_c00102{bottom:717.647317pt;}
.yf_c00102{bottom:717.892992pt;}
.ye_c00102{bottom:718.686997pt;}
.yd_c00102{bottom:719.311979pt;}
.yc_c00102{bottom:719.580501pt;}
.yb_c00102{bottom:720.719488pt;}
.ya_c00102{bottom:720.930667pt;}
.y1_c00102{bottom:721.381333pt;}
.h16_c00102{height:52.278190pt;}
.hb_c00102{height:53.211729pt;}
.h15_c00102{height:56.945886pt;}
.h14_c00102{height:57.879425pt;}
.ha_c00102{height:58.807526pt;}
.h17_c00102{height:59.741964pt;}
.hf_c00102{height:59.755102pt;}
.h2_c00102{height:60.666667pt;}
.he_c00102{height:60.688776pt;}
.h9_c00102{height:61.607884pt;}
.h12_c00102{height:61.622449pt;}
.h5_c00102{height:62.539461pt;}
.hc_c00102{height:63.480660pt;}
.hd_c00102{height:63.489796pt;}
.h10_c00102{height:64.423470pt;}
.h3_c00102{height:65.333333pt;}
.h11_c00102{height:65.357143pt;}
.h13_c00102{height:65.360800pt;}
.h6_c00102{height:68.140010pt;}
.h4_c00102{height:68.142054pt;}
.h7_c00102{height:88.679478pt;}
.h8_c00102{height:110.149246pt;}
.h18_c00102{height:139.066667pt;}
.h1_c00102{height:893.333333pt;}
.h0_c00102{height:893.466667pt;}
.w0_c00102{width:627.066667pt;}
.w1_c00102{width:627.333333pt;}
.x0_c00102{left:0.000000pt;}
.x5a_c00102{left:88.508000pt;}
.x67_c00102{left:93.040000pt;}
.x78_c00102{left:103.005600pt;}
.x5b_c00102{left:107.454667pt;}
.x54_c00102{left:108.611088pt;}
.x33_c00102{left:109.618667pt;}
.x1_c00102{left:110.640000pt;}
.x73_c00102{left:111.888360pt;}
.x13_c00102{left:114.089333pt;}
.x68_c00102{left:115.761333pt;}
.x24_c00102{left:126.160160pt;}
.x43_c00102{left:129.510185pt;}
.x55_c00102{left:131.895700pt;}
.x5_c00102{left:133.284000pt;}
.x1a_c00102{left:135.842429pt;}
.x34_c00102{left:137.518667pt;}
.x2_c00102{left:138.720000pt;}
.x6e_c00102{left:140.668000pt;}
.x4a_c00102{left:145.909060pt;}
.x2e_c00102{left:147.859744pt;}
.x14_c00102{left:152.722667pt;}
.x4b_c00102{left:155.433816pt;}
.x35_c00102{left:156.500000pt;}
.x44_c00102{left:159.283801pt;}
.x39_c00102{left:162.577333pt;}
.x1b_c00102{left:165.365549pt;}
.x79_c00102{left:166.918948pt;}
.x56_c00102{left:169.090041pt;}
.x7a_c00102{left:170.512000pt;}
.x3_c00102{left:172.560000pt;}
.x3c_c00102{left:173.978540pt;}
.x69_c00102{left:175.697333pt;}
.x3a_c00102{left:178.048000pt;}
.x4c_c00102{left:182.776012pt;}
.x6_c00102{left:187.044000pt;}
.x27_c00102{left:188.202667pt;}
.x20_c00102{left:189.856000pt;}
.x4d_c00102{left:191.710777pt;}
.x57_c00102{left:200.716239pt;}
.x7_c00102{left:202.070667pt;}
.x5c_c00102{left:203.984000pt;}
.x6a_c00102{left:205.642667pt;}
.x15_c00102{left:206.977333pt;}
.x28_c00102{left:208.612000pt;}
.x63_c00102{left:209.622567pt;}
.x4_c00102{left:211.440000pt;}
.xc_c00102{left:212.458667pt;}
.x6f_c00102{left:218.393333pt;}
.x4e_c00102{left:219.515712pt;}
.x74_c00102{left:223.093369pt;}
.x25_c00102{left:224.114161pt;}
.xd_c00102{left:225.657333pt;}
.x7b_c00102{left:232.117333pt;}
.x45_c00102{left:233.283103pt;}
.x5d_c00102{left:237.954667pt;}
.x41_c00102{left:238.969333pt;}
.x3d_c00102{left:241.169073pt;}
.x36_c00102{left:242.257333pt;}
.x1c_c00102{left:245.053173pt;}
.x2f_c00102{left:250.594507pt;}
.x16_c00102{left:252.633333pt;}
.x8_c00102{left:255.668000pt;}
.x29_c00102{left:256.625333pt;}
.x3e_c00102{left:264.665427pt;}
.x1d_c00102{left:266.414688pt;}
.x7c_c00102{left:268.816000pt;}
.x30_c00102{left:270.283915pt;}
.x9_c00102{left:273.424000pt;}
.x42_c00102{left:275.293333pt;}
.x17_c00102{left:281.822667pt;}
.x64_c00102{left:287.004881pt;}
.x4f_c00102{left:288.547995pt;}
.x61_c00102{left:290.672000pt;}
.x3b_c00102{left:292.318667pt;}
.x46_c00102{left:293.641181pt;}
.x3f_c00102{left:294.738833pt;}
.xe_c00102{left:296.844000pt;}
.x52_c00102{left:300.885876pt;}
.x31_c00102{left:303.173803pt;}
.x1e_c00102{left:305.538360pt;}
.x58_c00102{left:307.879119pt;}
.x7d_c00102{left:309.418667pt;}
.x21_c00102{left:312.304000pt;}
.xf_c00102{left:313.626667pt;}
.x2a_c00102{left:317.898667pt;}
.x1f_c00102{left:322.820405pt;}
.xa_c00102{left:327.673333pt;}
.x18_c00102{left:330.878667pt;}
.x37_c00102{left:332.352000pt;}
.x26_c00102{left:334.839732pt;}
.x75_c00102{left:336.879992pt;}
.x70_c00102{left:339.620000pt;}
.x5e_c00102{left:342.985333pt;}
.x40_c00102{left:344.592761pt;}
.xb_c00102{left:347.262667pt;}
.x2b_c00102{left:351.757333pt;}
.x10_c00102{left:352.688000pt;}
.x65_c00102{left:355.520168pt;}
.x22_c00102{left:357.429333pt;}
.x50_c00102{left:362.360637pt;}
.x76_c00102{left:363.477459pt;}
.x59_c00102{left:364.538000pt;}
.x19_c00102{left:365.502667pt;}
.x47_c00102{left:367.265744pt;}
.x2c_c00102{left:371.369333pt;}
.x32_c00102{left:377.333045pt;}
.x53_c00102{left:378.821297pt;}
.x6b_c00102{left:382.960000pt;}
.x5f_c00102{left:384.769333pt;}
.x66_c00102{left:390.576388pt;}
.x77_c00102{left:391.617732pt;}
.x48_c00102{left:395.431072pt;}
.x38_c00102{left:396.349333pt;}
.x2d_c00102{left:399.476000pt;}
.x11_c00102{left:402.313333pt;}
.x7e_c00102{left:404.070667pt;}
.x60_c00102{left:407.509333pt;}
.x51_c00102{left:416.287660pt;}
.x12_c00102{left:417.668000pt;}
.x49_c00102{left:421.796040pt;}
.x62_c00102{left:427.818667pt;}
.x71_c00102{left:435.833333pt;}
.x6c_c00102{left:439.837333pt;}
.x7f_c00102{left:453.030667pt;}
.x6d_c00102{left:459.068000pt;}
.x23_c00102{left:470.612000pt;}
.x80_c00102{left:482.640000pt;}
.x72_c00102{left:509.824000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mea_c00103{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);}
.m97_c00103{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);}
.mef_c00103{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);}
.m4d_c00103{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);}
.m8a_c00103{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{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);}
.m13_c00103{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);}
.m10_c00103{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{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);}
.mb3_c00103{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.mf3_c00103{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.m88_c00103{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);}
.mfd_c00103{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);}
.m95_c00103{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);}
.mb7_c00103{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);}
.mbb_c00103{transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{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);}
.m3e_c00103{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00103{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);}
.mee_c00103{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);}
.m3b_c00103{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);}
.m90_c00103{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);}
.me_c00103{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);}
.m38_c00103{transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);}
.mfe_c00103{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);}
.m8f_c00103{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.md8_c00103{transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);}
.mf4_c00103{transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);}
.mb8_c00103{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);}
.m27_c00103{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);}
.m6c_c00103{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);}
.md0_c00103{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);}
.mb0_c00103{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);}
.mf2_c00103{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);}
.m8c_c00103{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);}
.m1f_c00103{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);}
.m6a_c00103{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);}
.mca_c00103{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);}
.maf_c00103{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);}
.m8b_c00103{transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);}
.mf6_c00103{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m36_c00103{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);}
.m50_c00103{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);}
.m14_c00103{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);}
.m84_c00103{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);}
.m94_c00103{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);}
.me5_c00103{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);}
.m9c_c00103{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);}
.m64_c00103{transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);}
.md2_c00103{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);}
.m2c_c00103{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);}
.mb2_c00103{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);}
.me9_c00103{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);}
.m4c_c00103{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);}
.me3_c00103{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);}
.mfc_c00103{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);}
.m3d_c00103{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);}
.m34_c00103{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);}
.m3c_c00103{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);}
.m9b_c00103{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);}
.m8d_c00103{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);}
.m81_c00103{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);}
.m92_c00103{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);}
.m2f_c00103{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);}
.m47_c00103{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);}
.m35_c00103{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);}
.m32_c00103{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.m82_c00103{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);}
.m54_c00103{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);}
.m31_c00103{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);}
.m80_c00103{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);}
.m2b_c00103{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);}
.m37_c00103{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);}
.m29_c00103{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);}
.mc6_c00103{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_c00103{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);}
.m89_c00103{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);}
.m83_c00103{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);}
.m51_c00103{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);}
.mc_c00103{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);}
.mab_c00103{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);}
.m2a_c00103{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);}
.m69_c00103{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);}
.mf8_c00103{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);}
.m93_c00103{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);}
.m46_c00103{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);}
.m2e_c00103{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);}
.mff_c00103{transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);}
.m4b_c00103{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);}
.me2_c00103{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);}
.m53_c00103{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);}
.m6d_c00103{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);}
.m91_c00103{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);}
.m11_c00103{transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);}
.m61_c00103{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);}
.med_c00103{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);}
.m26_c00103{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);}
.mda_c00103{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);}
.mfa_c00103{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_c00103{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);}
.mec_c00103{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);}
.m4e_c00103{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);}
.m9e_c00103{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);}
.m5c_c00103{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);}
.m87_c00103{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);}
.mb_c00103{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);}
.m21_c00103{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);}
.m98_c00103{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);}
.m44_c00103{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);}
.m15_c00103{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);}
.m52_c00103{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);}
.m28_c00103{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);}
.mf9_c00103{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);}
.mad_c00103{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);}
.m20_c00103{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);}
.m63_c00103{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);}
.mf7_c00103{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);}
.m4f_c00103{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);}
.m86_c00103{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);}
.mcc_c00103{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);}
.ma4_c00103{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);}
.mdb_c00103{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);}
.m100_c00103{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m4a_c00103{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);}
.m56_c00103{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);}
.m45_c00103{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);}
.ma8_c00103{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);}
.m25_c00103{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);}
.mc0_c00103{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);}
.m99_c00103{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);}
.m7f_c00103{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);}
.m7a_c00103{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);}
.mb6_c00103{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);}
.md_c00103{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);}
.m85_c00103{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);}
.mc4_c00103{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);}
.m9_c00103{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);}
.mc8_c00103{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);}
.m5d_c00103{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);}
.mf5_c00103{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);}
.m30_c00103{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);}
.m48_c00103{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);}
.m9d_c00103{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);}
.m12_c00103{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);}
.m4_c00103{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);}
.m8e_c00103{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);}
.m7_c00103{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);}
.m33_c00103{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.m6b_c00103{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);}
.m43_c00103{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);}
.mbf_c00103{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);}
.mb1_c00103{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);}
.me4_c00103{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);}
.m57_c00103{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);}
.m17_c00103{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);}
.m22_c00103{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);}
.m5_c00103{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);}
.m65_c00103{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);}
.mae_c00103{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);}
.m76_c00103{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);}
.mbd_c00103{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);}
.m7c_c00103{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);}
.m16_c00103{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);}
.mbc_c00103{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);}
.m78_c00103{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);}
.mb9_c00103{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);}
.m2_c00103{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);}
.m18_c00103{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);}
.m7b_c00103{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);}
.meb_c00103{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);}
.m7e_c00103{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);}
.m70_c00103{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);}
.m5f_c00103{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);}
.md9_c00103{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);}
.ma2_c00103{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);}
.ma3_c00103{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);}
.mf1_c00103{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);}
.m77_c00103{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);}
.ma0_c00103{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);}
.m62_c00103{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);}
.mb5_c00103{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);}
.mb4_c00103{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);}
.mfb_c00103{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);}
.m60_c00103{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);}
.ma_c00103{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);}
.m9f_c00103{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);}
.m2d_c00103{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);}
.maa_c00103{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);}
.me8_c00103{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);}
.m74_c00103{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);}
.mcf_c00103{transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);}
.mc7_c00103{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);}
.mc2_c00103{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);}
.m6e_c00103{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);}
.md5_c00103{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);}
.m8_c00103{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);}
.ma7_c00103{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);}
.mc5_c00103{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);}
.m79_c00103{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);}
.ma9_c00103{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);}
.m1c_c00103{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);}
.m58_c00103{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);}
.mf0_c00103{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);}
.m3a_c00103{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);}
.mc1_c00103{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m72_c00103{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);}
.mdd_c00103{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);}
.m19_c00103{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);}
.md1_c00103{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);}
.m0_c00103{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);}
.m66_c00103{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);}
.m23_c00103{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);}
.m9a_c00103{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);}
.ma6_c00103{transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);}
.m5b_c00103{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m49_c00103{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.m96_c00103{transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);}
.m55_c00103{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);}
.md3_c00103{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);}
.m6f_c00103{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m7d_c00103{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.mc9_c00103{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);}
.mcb_c00103{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);}
.mdf_c00103{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{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);}
.m39_c00103{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.mde_c00103{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.me0_c00103{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.m5e_c00103{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);}
.m41_c00103{transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);}
.m42_c00103{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.me6_c00103{transform:matrix(0.262050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00103{transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262285,0.000000,0.000000,0.250000,0,0);}
.mce_c00103{transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);}
.mdc_c00103{transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);}
.mba_c00103{transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);}
.m68_c00103{transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);}
.me7_c00103{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);}
.m1_c00103{transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);}
.m73_c00103{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);}
.mac_c00103{transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280595,0.000000,0.000000,0.250000,0,0);}
.m71_c00103{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);}
.md7_c00103{transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282470,0.000000,0.000000,0.250000,0,0);}
.md4_c00103{transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);}
.m5a_c00103{transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{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);}
.m75_c00103{transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);}
.m59_c00103{transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330885,0.000000,0.000000,0.250000,0,0);}
.me1_c00103{transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);}
.mcd_c00103{transform:matrix(0.349030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349030,0.000000,0.000000,0.250000,0,0);}
.m67_c00103{transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353780,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.382090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382090,0.000000,0.000000,0.250000,0,0);}
.md6_c00103{transform:matrix(0.486850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.993885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.993885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.993885,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;}
.fs7_c00103{font-size:60.900000px;}
.fs8_c00103{font-size:61.950000px;}
.fsb_c00103{font-size:65.100000px;}
.fs6_c00103{font-size:67.200000px;}
.fsa_c00103{font-size:68.250000px;}
.fs1_c00103{font-size:69.300000px;}
.fs3_c00103{font-size:70.350000px;}
.fs2_c00103{font-size:71.400000px;}
.fs5_c00103{font-size:72.450000px;}
.fs9_c00103{font-size:73.500000px;}
.fsc_c00103{font-size:74.550000px;}
.fs4_c00103{font-size:77.700000px;}
.fs0_c00103{font-size:122.850000px;}
.y0_c00103{bottom:0.000000px;}
.y2a_c00103{bottom:131.161500px;}
.y29_c00103{bottom:131.568000px;}
.y28_c00103{bottom:132.214500px;}
.y27_c00103{bottom:132.484500px;}
.y26_c00103{bottom:133.162500px;}
.y25_c00103{bottom:133.464000px;}
.y24_c00103{bottom:134.299500px;}
.y23_c00103{bottom:134.731500px;}
.y22_c00103{bottom:155.061000px;}
.y21_c00103{bottom:155.860500px;}
.y20_c00103{bottom:156.177000px;}
.y1f_c00103{bottom:157.285500px;}
.y1e_c00103{bottom:157.951500px;}
.y1d_c00103{bottom:179.013000px;}
.y1c_c00103{bottom:201.982500px;}
.y1b_c00103{bottom:225.012000px;}
.y1a_c00103{bottom:247.843500px;}
.y19_c00103{bottom:270.613500px;}
.y18_c00103{bottom:293.631000px;}
.y17_c00103{bottom:316.669500px;}
.y16_c00103{bottom:339.303000px;}
.y15_c00103{bottom:362.302500px;}
.y14_c00103{bottom:385.863000px;}
.y13_c00103{bottom:408.301500px;}
.y12_c00103{bottom:431.349000px;}
.y11_c00103{bottom:454.101000px;}
.y10_c00103{bottom:477.262500px;}
.yf_c00103{bottom:499.572000px;}
.ye_c00103{bottom:523.561500px;}
.yd_c00103{bottom:545.131500px;}
.yc_c00103{bottom:569.148000px;}
.yb_c00103{bottom:591.364500px;}
.ya_c00103{bottom:615.099000px;}
.y9_c00103{bottom:637.201500px;}
.y8_c00103{bottom:666.010500px;}
.y7_c00103{bottom:689.665500px;}
.y6_c00103{bottom:712.315500px;}
.y5_c00103{bottom:735.387000px;}
.y4_c00103{bottom:758.083500px;}
.y3_c00103{bottom:781.510500px;}
.y2_c00103{bottom:803.982000px;}
.y1_c00103{bottom:851.569500px;}
.h9_c00103{height:60.900000px;}
.ha_c00103{height:61.950000px;}
.hd_c00103{height:65.100000px;}
.h8_c00103{height:67.200000px;}
.hc_c00103{height:68.250000px;}
.h3_c00103{height:69.300000px;}
.h5_c00103{height:70.350000px;}
.h4_c00103{height:71.400000px;}
.h7_c00103{height:72.450000px;}
.hb_c00103{height:73.500000px;}
.he_c00103{height:74.550000px;}
.h6_c00103{height:77.700000px;}
.h2_c00103{height:122.850000px;}
.h0_c00103{height:1008.450000px;}
.h1_c00103{height:1008.750000px;}
.w0_c00103{width:676.890000px;}
.w1_c00103{width:677.250000px;}
.x0_c00103{left:0.000000px;}
.x6a_c00103{left:169.830000px;}
.x23_c00103{left:171.990000px;}
.x7b_c00103{left:173.340000px;}
.x83_c00103{left:175.500000px;}
.x45_c00103{left:177.120000px;}
.x4_c00103{left:178.200000px;}
.x2e_c00103{left:179.280000px;}
.x72_c00103{left:196.020000px;}
.x8d_c00103{left:199.530000px;}
.x5_c00103{left:201.150000px;}
.x35_c00103{left:202.770000px;}
.x2f_c00103{left:204.120000px;}
.x61_c00103{left:206.820000px;}
.xb_c00103{left:208.440000px;}
.x7c_c00103{left:209.520000px;}
.x46_c00103{left:211.140000px;}
.x91_c00103{left:212.490000px;}
.x80_c00103{left:216.000000px;}
.x28_c00103{left:217.620000px;}
.x4c_c00103{left:220.320000px;}
.x75_c00103{left:225.720000px;}
.x3f_c00103{left:227.340000px;}
.x6b_c00103{left:228.960000px;}
.x88_c00103{left:230.040000px;}
.x5b_c00103{left:233.010000px;}
.x38_c00103{left:234.900000px;}
.x30_c00103{left:237.060000px;}
.x52_c00103{left:238.140000px;}
.xc_c00103{left:239.490000px;}
.x12_c00103{left:241.110000px;}
.x6f_c00103{left:242.730000px;}
.x40_c00103{left:246.780000px;}
.x1b_c00103{left:248.940000px;}
.x55_c00103{left:252.720000px;}
.x29_c00103{left:255.420000px;}
.x6_c00103{left:258.930000px;}
.x81_c00103{left:260.550000px;}
.xd_c00103{left:264.330000px;}
.x13_c00103{left:266.220000px;}
.x73_c00103{left:269.730000px;}
.x5c_c00103{left:271.890000px;}
.x84_c00103{left:272.970000px;}
.x1c_c00103{left:274.050000px;}
.x39_c00103{left:276.750000px;}
.x67_c00103{left:279.990000px;}
.x47_c00103{left:283.770000px;}
.x24_c00103{left:285.660000px;}
.x85_c00103{left:290.790000px;}
.xe_c00103{left:292.950000px;}
.x1_c00103{left:294.300000px;}
.x41_c00103{left:296.190000px;}
.x31_c00103{left:297.270000px;}
.x74_c00103{left:298.350000px;}
.x56_c00103{left:301.050000px;}
.x70_c00103{left:302.130000px;}
.x6c_c00103{left:305.370000px;}
.x63_c00103{left:306.450000px;}
.x14_c00103{left:310.500000px;}
.x25_c00103{left:312.930000px;}
.x32_c00103{left:316.980000px;}
.x62_c00103{left:321.030000px;}
.x4d_c00103{left:323.190000px;}
.x68_c00103{left:324.270000px;}
.x7_c00103{left:326.970000px;}
.x1d_c00103{left:331.020000px;}
.x53_c00103{left:333.990000px;}
.x36_c00103{left:335.610000px;}
.x8e_c00103{left:337.500000px;}
.xf_c00103{left:338.850000px;}
.x5d_c00103{left:345.870000px;}
.x64_c00103{left:346.950000px;}
.x8_c00103{left:348.570000px;}
.x15_c00103{left:350.190000px;}
.x48_c00103{left:351.540000px;}
.x3a_c00103{left:352.890000px;}
.x10_c00103{left:356.130000px;}
.x89_c00103{left:359.640000px;}
.x42_c00103{left:360.720000px;}
.x65_c00103{left:362.610000px;}
.x2a_c00103{left:363.690000px;}
.x7d_c00103{left:365.580000px;}
.x57_c00103{left:367.200000px;}
.x33_c00103{left:370.170000px;}
.x2b_c00103{left:374.220000px;}
.x16_c00103{left:375.570000px;}
.x5e_c00103{left:376.650000px;}
.x49_c00103{left:380.430000px;}
.x11_c00103{left:383.400000px;}
.x1e_c00103{left:384.480000px;}
.x8f_c00103{left:387.180000px;}
.x58_c00103{left:388.530000px;}
.x86_c00103{left:390.420000px;}
.x69_c00103{left:394.200000px;}
.x76_c00103{left:398.250000px;}
.x2_c00103{left:400.950000px;}
.x9_c00103{left:405.270000px;}
.x37_c00103{left:409.050000px;}
.x26_c00103{left:411.480000px;}
.x3b_c00103{left:413.100000px;}
.x6d_c00103{left:415.800000px;}
.x2c_c00103{left:417.960000px;}
.x54_c00103{left:419.580000px;}
.x8a_c00103{left:423.900000px;}
.x71_c00103{left:428.490000px;}
.x4e_c00103{left:430.380000px;}
.x3_c00103{left:432.270000px;}
.x17_c00103{left:435.510000px;}
.x1f_c00103{left:438.750000px;}
.xa_c00103{left:447.390000px;}
.x18_c00103{left:448.740000px;}
.x7e_c00103{left:450.360000px;}
.x66_c00103{left:451.980000px;}
.x8b_c00103{left:454.410000px;}
.x27_c00103{left:456.030000px;}
.x3c_c00103{left:457.920000px;}
.x5f_c00103{left:459.540000px;}
.x43_c00103{left:460.890000px;}
.x20_c00103{left:462.240000px;}
.x59_c00103{left:463.590000px;}
.x4a_c00103{left:468.450000px;}
.x19_c00103{left:473.580000px;}
.x77_c00103{left:478.440000px;}
.x5a_c00103{left:484.380000px;}
.x21_c00103{left:485.460000px;}
.x6e_c00103{left:487.620000px;}
.x7f_c00103{left:489.240000px;}
.x3d_c00103{left:492.750000px;}
.x78_c00103{left:494.370000px;}
.x34_c00103{left:498.690000px;}
.x4b_c00103{left:500.310000px;}
.x90_c00103{left:502.740000px;}
.x2d_c00103{left:505.710000px;}
.x87_c00103{left:508.410000px;}
.x60_c00103{left:513.270000px;}
.x79_c00103{left:514.350000px;}
.x82_c00103{left:515.970000px;}
.x1a_c00103{left:517.860000px;}
.x3e_c00103{left:521.370000px;}
.x22_c00103{left:524.340000px;}
.x8c_c00103{left:528.660000px;}
.x4f_c00103{left:530.010000px;}
.x44_c00103{left:540.540000px;}
.x7a_c00103{left:542.970000px;}
.x50_c00103{left:569.970000px;}
.x51_c00103{left:611.280000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.fs7_c00103{font-size:54.133333pt;}
.fs8_c00103{font-size:55.066667pt;}
.fsb_c00103{font-size:57.866667pt;}
.fs6_c00103{font-size:59.733333pt;}
.fsa_c00103{font-size:60.666667pt;}
.fs1_c00103{font-size:61.600000pt;}
.fs3_c00103{font-size:62.533333pt;}
.fs2_c00103{font-size:63.466667pt;}
.fs5_c00103{font-size:64.400000pt;}
.fs9_c00103{font-size:65.333333pt;}
.fsc_c00103{font-size:66.266667pt;}
.fs4_c00103{font-size:69.066667pt;}
.fs0_c00103{font-size:109.200000pt;}
.y0_c00103{bottom:0.000000pt;}
.y2a_c00103{bottom:116.588000pt;}
.y29_c00103{bottom:116.949333pt;}
.y28_c00103{bottom:117.524000pt;}
.y27_c00103{bottom:117.764000pt;}
.y26_c00103{bottom:118.366667pt;}
.y25_c00103{bottom:118.634667pt;}
.y24_c00103{bottom:119.377333pt;}
.y23_c00103{bottom:119.761333pt;}
.y22_c00103{bottom:137.832000pt;}
.y21_c00103{bottom:138.542667pt;}
.y20_c00103{bottom:138.824000pt;}
.y1f_c00103{bottom:139.809333pt;}
.y1e_c00103{bottom:140.401333pt;}
.y1d_c00103{bottom:159.122667pt;}
.y1c_c00103{bottom:179.540000pt;}
.y1b_c00103{bottom:200.010667pt;}
.y1a_c00103{bottom:220.305333pt;}
.y19_c00103{bottom:240.545333pt;}
.y18_c00103{bottom:261.005333pt;}
.y17_c00103{bottom:281.484000pt;}
.y16_c00103{bottom:301.602667pt;}
.y15_c00103{bottom:322.046667pt;}
.y14_c00103{bottom:342.989333pt;}
.y13_c00103{bottom:362.934667pt;}
.y12_c00103{bottom:383.421333pt;}
.y11_c00103{bottom:403.645333pt;}
.y10_c00103{bottom:424.233333pt;}
.yf_c00103{bottom:444.064000pt;}
.ye_c00103{bottom:465.388000pt;}
.yd_c00103{bottom:484.561333pt;}
.yc_c00103{bottom:505.909333pt;}
.yb_c00103{bottom:525.657333pt;}
.ya_c00103{bottom:546.754667pt;}
.y9_c00103{bottom:566.401333pt;}
.y8_c00103{bottom:592.009333pt;}
.y7_c00103{bottom:613.036000pt;}
.y6_c00103{bottom:633.169333pt;}
.y5_c00103{bottom:653.677333pt;}
.y4_c00103{bottom:673.852000pt;}
.y3_c00103{bottom:694.676000pt;}
.y2_c00103{bottom:714.650667pt;}
.y1_c00103{bottom:756.950667pt;}
.h9_c00103{height:54.133333pt;}
.ha_c00103{height:55.066667pt;}
.hd_c00103{height:57.866667pt;}
.h8_c00103{height:59.733333pt;}
.hc_c00103{height:60.666667pt;}
.h3_c00103{height:61.600000pt;}
.h5_c00103{height:62.533333pt;}
.h4_c00103{height:63.466667pt;}
.h7_c00103{height:64.400000pt;}
.hb_c00103{height:65.333333pt;}
.he_c00103{height:66.266667pt;}
.h6_c00103{height:69.066667pt;}
.h2_c00103{height:109.200000pt;}
.h0_c00103{height:896.400000pt;}
.h1_c00103{height:896.666667pt;}
.w0_c00103{width:601.680000pt;}
.w1_c00103{width:602.000000pt;}
.x0_c00103{left:0.000000pt;}
.x6a_c00103{left:150.960000pt;}
.x23_c00103{left:152.880000pt;}
.x7b_c00103{left:154.080000pt;}
.x83_c00103{left:156.000000pt;}
.x45_c00103{left:157.440000pt;}
.x4_c00103{left:158.400000pt;}
.x2e_c00103{left:159.360000pt;}
.x72_c00103{left:174.240000pt;}
.x8d_c00103{left:177.360000pt;}
.x5_c00103{left:178.800000pt;}
.x35_c00103{left:180.240000pt;}
.x2f_c00103{left:181.440000pt;}
.x61_c00103{left:183.840000pt;}
.xb_c00103{left:185.280000pt;}
.x7c_c00103{left:186.240000pt;}
.x46_c00103{left:187.680000pt;}
.x91_c00103{left:188.880000pt;}
.x80_c00103{left:192.000000pt;}
.x28_c00103{left:193.440000pt;}
.x4c_c00103{left:195.840000pt;}
.x75_c00103{left:200.640000pt;}
.x3f_c00103{left:202.080000pt;}
.x6b_c00103{left:203.520000pt;}
.x88_c00103{left:204.480000pt;}
.x5b_c00103{left:207.120000pt;}
.x38_c00103{left:208.800000pt;}
.x30_c00103{left:210.720000pt;}
.x52_c00103{left:211.680000pt;}
.xc_c00103{left:212.880000pt;}
.x12_c00103{left:214.320000pt;}
.x6f_c00103{left:215.760000pt;}
.x40_c00103{left:219.360000pt;}
.x1b_c00103{left:221.280000pt;}
.x55_c00103{left:224.640000pt;}
.x29_c00103{left:227.040000pt;}
.x6_c00103{left:230.160000pt;}
.x81_c00103{left:231.600000pt;}
.xd_c00103{left:234.960000pt;}
.x13_c00103{left:236.640000pt;}
.x73_c00103{left:239.760000pt;}
.x5c_c00103{left:241.680000pt;}
.x84_c00103{left:242.640000pt;}
.x1c_c00103{left:243.600000pt;}
.x39_c00103{left:246.000000pt;}
.x67_c00103{left:248.880000pt;}
.x47_c00103{left:252.240000pt;}
.x24_c00103{left:253.920000pt;}
.x85_c00103{left:258.480000pt;}
.xe_c00103{left:260.400000pt;}
.x1_c00103{left:261.600000pt;}
.x41_c00103{left:263.280000pt;}
.x31_c00103{left:264.240000pt;}
.x74_c00103{left:265.200000pt;}
.x56_c00103{left:267.600000pt;}
.x70_c00103{left:268.560000pt;}
.x6c_c00103{left:271.440000pt;}
.x63_c00103{left:272.400000pt;}
.x14_c00103{left:276.000000pt;}
.x25_c00103{left:278.160000pt;}
.x32_c00103{left:281.760000pt;}
.x62_c00103{left:285.360000pt;}
.x4d_c00103{left:287.280000pt;}
.x68_c00103{left:288.240000pt;}
.x7_c00103{left:290.640000pt;}
.x1d_c00103{left:294.240000pt;}
.x53_c00103{left:296.880000pt;}
.x36_c00103{left:298.320000pt;}
.x8e_c00103{left:300.000000pt;}
.xf_c00103{left:301.200000pt;}
.x5d_c00103{left:307.440000pt;}
.x64_c00103{left:308.400000pt;}
.x8_c00103{left:309.840000pt;}
.x15_c00103{left:311.280000pt;}
.x48_c00103{left:312.480000pt;}
.x3a_c00103{left:313.680000pt;}
.x10_c00103{left:316.560000pt;}
.x89_c00103{left:319.680000pt;}
.x42_c00103{left:320.640000pt;}
.x65_c00103{left:322.320000pt;}
.x2a_c00103{left:323.280000pt;}
.x7d_c00103{left:324.960000pt;}
.x57_c00103{left:326.400000pt;}
.x33_c00103{left:329.040000pt;}
.x2b_c00103{left:332.640000pt;}
.x16_c00103{left:333.840000pt;}
.x5e_c00103{left:334.800000pt;}
.x49_c00103{left:338.160000pt;}
.x11_c00103{left:340.800000pt;}
.x1e_c00103{left:341.760000pt;}
.x8f_c00103{left:344.160000pt;}
.x58_c00103{left:345.360000pt;}
.x86_c00103{left:347.040000pt;}
.x69_c00103{left:350.400000pt;}
.x76_c00103{left:354.000000pt;}
.x2_c00103{left:356.400000pt;}
.x9_c00103{left:360.240000pt;}
.x37_c00103{left:363.600000pt;}
.x26_c00103{left:365.760000pt;}
.x3b_c00103{left:367.200000pt;}
.x6d_c00103{left:369.600000pt;}
.x2c_c00103{left:371.520000pt;}
.x54_c00103{left:372.960000pt;}
.x8a_c00103{left:376.800000pt;}
.x71_c00103{left:380.880000pt;}
.x4e_c00103{left:382.560000pt;}
.x3_c00103{left:384.240000pt;}
.x17_c00103{left:387.120000pt;}
.x1f_c00103{left:390.000000pt;}
.xa_c00103{left:397.680000pt;}
.x18_c00103{left:398.880000pt;}
.x7e_c00103{left:400.320000pt;}
.x66_c00103{left:401.760000pt;}
.x8b_c00103{left:403.920000pt;}
.x27_c00103{left:405.360000pt;}
.x3c_c00103{left:407.040000pt;}
.x5f_c00103{left:408.480000pt;}
.x43_c00103{left:409.680000pt;}
.x20_c00103{left:410.880000pt;}
.x59_c00103{left:412.080000pt;}
.x4a_c00103{left:416.400000pt;}
.x19_c00103{left:420.960000pt;}
.x77_c00103{left:425.280000pt;}
.x5a_c00103{left:430.560000pt;}
.x21_c00103{left:431.520000pt;}
.x6e_c00103{left:433.440000pt;}
.x7f_c00103{left:434.880000pt;}
.x3d_c00103{left:438.000000pt;}
.x78_c00103{left:439.440000pt;}
.x34_c00103{left:443.280000pt;}
.x4b_c00103{left:444.720000pt;}
.x90_c00103{left:446.880000pt;}
.x2d_c00103{left:449.520000pt;}
.x87_c00103{left:451.920000pt;}
.x60_c00103{left:456.240000pt;}
.x79_c00103{left:457.200000pt;}
.x82_c00103{left:458.640000pt;}
.x1a_c00103{left:460.320000pt;}
.x3e_c00103{left:463.440000pt;}
.x22_c00103{left:466.080000pt;}
.x8c_c00103{left:469.920000pt;}
.x4f_c00103{left:471.120000pt;}
.x44_c00103{left:480.480000pt;}
.x7a_c00103{left:482.640000pt;}
.x50_c00103{left:506.640000pt;}
.x51_c00103{left:543.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m46_c00104{transform:matrix(0.010853,0.000185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.010853,0.000185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.010853,0.000185,-0.004249,0.249964,0,0);}
.mda_c00104{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.016044,0.000176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016044,0.000176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016044,0.000176,-0.002750,0.249985,0,0);}
.m48_c00104{transform:matrix(0.016663,0.000283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.016663,0.000283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.016663,0.000283,-0.004249,0.249964,0,0);}
.ma9_c00104{transform:matrix(0.025020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025020,0.000000,0.000000,0.250000,0,0);}
.m4c_c00104{transform:matrix(0.035305,0.000600,-0.004249,0.249964,0,0);-ms-transform:matrix(0.035305,0.000600,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.035305,0.000600,-0.004249,0.249964,0,0);}
.m49_c00104{transform:matrix(0.056942,0.000968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.056942,0.000968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.056942,0.000968,-0.004249,0.249964,0,0);}
.ma0_c00104{transform:matrix(0.106985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106985,0.000000,0.000000,0.250000,0,0);}
.md4_c00104{transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);}
.ma1_c00104{transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);}
.m4b_c00104{transform:matrix(0.132366,0.002250,-0.004249,0.249964,0,0);-ms-transform:matrix(0.132366,0.002250,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.132366,0.002250,-0.004249,0.249964,0,0);}
.m56_c00104{transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);}
.m3c_c00104{transform:matrix(0.155303,0.002640,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155303,0.002640,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155303,0.002640,-0.004249,0.249964,0,0);}
.m17_c00104{transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156826,0.001725,-0.002750,0.249985,0,0);}
.m71_c00104{transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);}
.m26_c00104{transform:matrix(0.161088,0.003222,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161088,0.003222,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161088,0.003222,-0.004999,0.249950,0,0);}
.m90_c00104{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);}
.m4a_c00104{transform:matrix(0.164046,0.002789,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164046,0.002789,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164046,0.002789,-0.004249,0.249964,0,0);}
.m38_c00104{transform:matrix(0.164326,0.002794,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164326,0.002794,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164326,0.002794,-0.004249,0.249964,0,0);}
.mb9_c00104{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);}
.m6c_c00104{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);}
.m66_c00104{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);}
.m7b_c00104{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);}
.maf_c00104{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);}
.md8_c00104{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);}
.m5_c00104{transform:matrix(0.169455,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169455,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169455,0.001864,-0.002750,0.249985,0,0);}
.m5f_c00104{transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00104{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);}
.me3_c00104{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);}
.m14_c00104{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);}
.m9e_c00104{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);}
.m52_c00104{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.mbc_c00104{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);}
.mb1_c00104{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);}
.m34_c00104{transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);}
.md6_c00104{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);}
.m91_c00104{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);}
.m8b_c00104{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);}
.m2e_c00104{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);}
.m27_c00104{transform:matrix(0.176065,0.003521,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176065,0.003521,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176065,0.003521,-0.004999,0.249950,0,0);}
.m79_c00104{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);}
.mca_c00104{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);}
.ma4_c00104{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);}
.m44_c00104{transform:matrix(0.177114,0.003011,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177114,0.003011,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177114,0.003011,-0.004249,0.249964,0,0);}
.m51_c00104{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);}
.m13_c00104{transform:matrix(0.178679,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178679,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178679,0.001965,-0.002750,0.249985,0,0);}
.m1c_c00104{transform:matrix(0.179174,0.001971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179174,0.001971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179174,0.001971,-0.002750,0.249985,0,0);}
.m9f_c00104{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);}
.ma8_c00104{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);}
.mc0_c00104{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);}
.ma3_c00104{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);}
.mb4_c00104{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);}
.m96_c00104{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);}
.m69_c00104{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);}
.m33_c00104{transform:matrix(0.181364,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181364,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181364,0.003083,-0.004249,0.249964,0,0);}
.m32_c00104{transform:matrix(0.182034,0.003095,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182034,0.003095,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182034,0.003095,-0.004249,0.249964,0,0);}
.m87_c00104{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);}
.m67_c00104{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);}
.mc7_c00104{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);}
.mf_c00104{transform:matrix(0.183594,0.002020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183594,0.002020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183594,0.002020,-0.002750,0.249985,0,0);}
.mb3_c00104{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);}
.m22_c00104{transform:matrix(0.184788,0.003696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184788,0.003696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184788,0.003696,-0.004999,0.249950,0,0);}
.mbf_c00104{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);}
.mc9_c00104{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);}
.m45_c00104{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);}
.mb_c00104{transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);}
.m36_c00104{transform:matrix(0.186248,0.003166,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186248,0.003166,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186248,0.003166,-0.004249,0.249964,0,0);}
.m58_c00104{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);}
.mae_c00104{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);}
.mad_c00104{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);}
.m12_c00104{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);}
.m6b_c00104{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);}
.m1b_c00104{transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);}
.mc1_c00104{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);}
.m85_c00104{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_c00104{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);}
.mb7_c00104{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);}
.m8a_c00104{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);}
.mba_c00104{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);}
.m9d_c00104{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);}
.m7e_c00104{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);}
.mc_c00104{transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);}
.m6d_c00104{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);}
.mab_c00104{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);}
.mac_c00104{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);}
.m64_c00104{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);}
.m18_c00104{transform:matrix(0.192423,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192423,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192423,0.002117,-0.002750,0.249985,0,0);}
.m25_c00104{transform:matrix(0.192861,0.003857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192861,0.003857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192861,0.003857,-0.004999,0.249950,0,0);}
.m23_c00104{transform:matrix(0.192876,0.003858,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192876,0.003858,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192876,0.003858,-0.004999,0.249950,0,0);}
.m5a_c00104{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);}
.mdc_c00104{transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);}
.m84_c00104{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);}
.m94_c00104{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);}
.m88_c00104{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);}
.m75_c00104{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);}
.m29_c00104{transform:matrix(0.195076,0.003902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195076,0.003902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195076,0.003902,-0.004999,0.249950,0,0);}
.m8c_c00104{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);}
.mc6_c00104{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);}
.m5b_c00104{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);}
.m93_c00104{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);}
.m21_c00104{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);}
.m9c_c00104{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);}
.m2_c00104{transform:matrix(0.197363,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197363,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197363,0.002171,-0.002750,0.249985,0,0);}
.ma_c00104{transform:matrix(0.197633,0.002174,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197633,0.002174,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197633,0.002174,-0.002750,0.249985,0,0);}
.m3a_c00104{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);}
.m16_c00104{transform:matrix(0.197868,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197868,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197868,0.002177,-0.002750,0.249985,0,0);}
.m3b_c00104{transform:matrix(0.198631,0.003377,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198631,0.003377,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198631,0.003377,-0.004249,0.249964,0,0);}
.m3d_c00104{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);}
.m61_c00104{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);}
.m3f_c00104{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);}
.m28_c00104{transform:matrix(0.199730,0.003995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199730,0.003995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199730,0.003995,-0.004999,0.249950,0,0);}
.mc2_c00104{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);}
.m82_c00104{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);}
.mb2_c00104{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);}
.m9b_c00104{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);}
.m81_c00104{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);}
.m24_c00104{transform:matrix(0.202904,0.004058,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202904,0.004058,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202904,0.004058,-0.004999,0.249950,0,0);}
.m2b_c00104{transform:matrix(0.203201,0.003454,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203201,0.003454,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203201,0.003454,-0.004249,0.249964,0,0);}
.m30_c00104{transform:matrix(0.203436,0.003458,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203436,0.003458,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203436,0.003458,-0.004249,0.249964,0,0);}
.mbd_c00104{transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);}
.m8e_c00104{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);}
.mbe_c00104{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);}
.m8f_c00104{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);}
.mdf_c00104{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);}
.m31_c00104{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);}
.m11_c00104{transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);}
.m59_c00104{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);}
.mb6_c00104{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);}
.maa_c00104{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m2c_c00104{transform:matrix(0.207275,0.003524,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207275,0.003524,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207275,0.003524,-0.004249,0.249964,0,0);}
.m7d_c00104{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);}
.m1d_c00104{transform:matrix(0.207792,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207792,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207792,0.002286,-0.002750,0.249985,0,0);}
.m86_c00104{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);}
.md7_c00104{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);}
.m53_c00104{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);}
.m60_c00104{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);}
.md_c00104{transform:matrix(0.209882,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209882,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209882,0.002309,-0.002750,0.249985,0,0);}
.m39_c00104{transform:matrix(0.210200,0.003573,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210200,0.003573,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210200,0.003573,-0.004249,0.249964,0,0);}
.m63_c00104{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);}
.mcb_c00104{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);}
.mbb_c00104{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);}
.m4f_c00104{transform:matrix(0.212889,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212889,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212889,0.003619,-0.004249,0.249964,0,0);}
.mb8_c00104{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);}
.m7c_c00104{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);}
.m4e_c00104{transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);}
.mde_c00104{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);}
.m74_c00104{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.md0_c00104{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);}
.ma5_c00104{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);}
.mcc_c00104{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);}
.mce_c00104{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);}
.m35_c00104{transform:matrix(0.217569,0.003699,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217569,0.003699,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217569,0.003699,-0.004249,0.249964,0,0);}
.m76_c00104{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);}
.m4_c00104{transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);}
.m98_c00104{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);}
.m68_c00104{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);}
.m5e_c00104{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);}
.md9_c00104{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);}
.md5_c00104{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);}
.m6_c00104{transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);}
.m3_c00104{transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221437,0.002436,-0.002750,0.249985,0,0);}
.m83_c00104{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);}
.mcd_c00104{transform:matrix(0.222655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222655,0.000000,0.000000,0.250000,0,0);}
.ma2_c00104{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);}
.m37_c00104{transform:matrix(0.224538,0.003817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224538,0.003817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224538,0.003817,-0.004249,0.249964,0,0);}
.m15_c00104{transform:matrix(0.226006,0.002486,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226006,0.002486,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226006,0.002486,-0.002750,0.249985,0,0);}
.m62_c00104{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);}
.mc3_c00104{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);}
.mc5_c00104{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);}
.ma7_c00104{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);}
.mb5_c00104{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);}
.m70_c00104{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);}
.m2f_c00104{transform:matrix(0.227512,0.003868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227512,0.003868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227512,0.003868,-0.004249,0.249964,0,0);}
.m9_c00104{transform:matrix(0.227951,0.002507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227951,0.002507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227951,0.002507,-0.002750,0.249985,0,0);}
.m72_c00104{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);}
.m40_c00104{transform:matrix(0.229032,0.003894,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229032,0.003894,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229032,0.003894,-0.004249,0.249964,0,0);}
.mc4_c00104{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);}
.m20_c00104{transform:matrix(0.229476,0.002524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229476,0.002524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229476,0.002524,-0.002750,0.249985,0,0);}
.m2d_c00104{transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);}
.md1_c00104{transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);}
.m9a_c00104{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);}
.m95_c00104{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);}
.m55_c00104{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);}
.mcf_c00104{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.ma6_c00104{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m7f_c00104{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);}
.m92_c00104{transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);}
.m6a_c00104{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);}
.m80_c00104{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);}
.m1f_c00104{transform:matrix(0.241135,0.002652,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241135,0.002652,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241135,0.002652,-0.002750,0.249985,0,0);}
.m65_c00104{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);}
.mb0_c00104{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);}
.m8d_c00104{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);}
.me4_c00104{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);}
.m4d_c00104{transform:matrix(0.244670,0.004159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244670,0.004159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244670,0.004159,-0.004249,0.249964,0,0);}
.me_c00104{transform:matrix(0.244730,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244730,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244730,0.002692,-0.002750,0.249985,0,0);}
.m5c_c00104{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m57_c00104{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m78_c00104{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m43_c00104{transform:matrix(0.251179,0.004270,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251179,0.004270,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251179,0.004270,-0.004249,0.249964,0,0);}
.m97_c00104{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);}
.me2_c00104{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);}
.m1e_c00104{transform:matrix(0.252245,0.002775,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252245,0.002775,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252245,0.002775,-0.002750,0.249985,0,0);}
.m6e_c00104{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.256359,0.002820,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256359,0.002820,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256359,0.002820,-0.002750,0.249985,0,0);}
.m89_c00104{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);}
.m19_c00104{transform:matrix(0.261344,0.002875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261344,0.002875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261344,0.002875,-0.002750,0.249985,0,0);}
.m1a_c00104{transform:matrix(0.262144,0.002884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262144,0.002884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262144,0.002884,-0.002750,0.249985,0,0);}
.m1_c00104{transform:matrix(0.262249,0.002885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262249,0.002885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262249,0.002885,-0.002750,0.249985,0,0);}
.m7a_c00104{transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);}
.m5d_c00104{transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);}
.m42_c00104{transform:matrix(0.277415,0.004716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277415,0.004716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277415,0.004716,-0.004249,0.249964,0,0);}
.m0_c00104{transform:matrix(0.277658,0.003054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277658,0.003054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277658,0.003054,-0.002750,0.249985,0,0);}
.m77_c00104{transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);}
.mdb_c00104{transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);}
.md3_c00104{transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293410,0.000000,0.000000,0.250000,0,0);}
.m41_c00104{transform:matrix(0.299317,0.005088,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299317,0.005088,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299317,0.005088,-0.004249,0.249964,0,0);}
.mdd_c00104{transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);}
.m2a_c00104{transform:matrix(0.327594,0.006552,-0.004999,0.249950,0,0);-ms-transform:matrix(0.327594,0.006552,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.327594,0.006552,-0.004999,0.249950,0,0);}
.md2_c00104{transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330860,0.000000,0.000000,0.250000,0,0);}
.m6f_c00104{transform:matrix(0.332770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332770,0.000000,0.000000,0.250000,0,0);}
.me7_c00104{transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333440,0.000000,0.000000,0.250000,0,0);}
.m73_c00104{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);}
.me0_c00104{transform:matrix(0.349815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349815,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.356363,0.003920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.356363,0.003920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.356363,0.003920,-0.002750,0.249985,0,0);}
.me1_c00104{transform:matrix(0.381225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381225,0.000000,0.000000,0.250000,0,0);}
.m47_c00104{transform:matrix(0.384644,0.006539,-0.004249,0.249964,0,0);-ms-transform:matrix(0.384644,0.006539,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.384644,0.006539,-0.004249,0.249964,0,0);}
.m54_c00104{transform:matrix(0.389305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389305,0.000000,0.000000,0.250000,0,0);}
.me6_c00104{transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);}
.me9_c00104{transform:matrix(0.471735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471735,0.000000,0.000000,0.250000,0,0);}
.m50_c00104{transform:matrix(0.530398,0.009017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.530398,0.009017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.530398,0.009017,-0.004249,0.249964,0,0);}
.me5_c00104{transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);}
.m3e_c00104{transform:matrix(0.876008,0.014892,-0.004249,0.249964,0,0);-ms-transform:matrix(0.876008,0.014892,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.876008,0.014892,-0.004249,0.249964,0,0);}
.me8_c00104{transform:matrix(0.943910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943910,0.000000,0.000000,0.250000,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;}
.fs11_c00104{font-size:34.650000px;}
.fs10_c00104{font-size:43.050000px;}
.fse_c00104{font-size:55.650000px;}
.fsd_c00104{font-size:63.000000px;}
.fsa_c00104{font-size:64.050000px;}
.fsc_c00104{font-size:66.150000px;}
.fsb_c00104{font-size:68.250000px;}
.fs6_c00104{font-size:69.300000px;}
.fs2_c00104{font-size:69.310013px;}
.fs4_c00104{font-size:70.360165px;}
.fs7_c00104{font-size:71.400000px;}
.fs0_c00104{font-size:71.404320px;}
.fs3_c00104{font-size:71.410317px;}
.fs8_c00104{font-size:72.450000px;}
.fs5_c00104{font-size:72.460468px;}
.fs1_c00104{font-size:74.564909px;}
.fs9_c00104{font-size:79.800000px;}
.fsf_c00104{font-size:129.150000px;}
.y0_c00104{bottom:0.000000px;}
.ye7_c00104{bottom:95.094000px;}
.ye8_c00104{bottom:99.360000px;}
.ye6_c00104{bottom:107.269500px;}
.ye5_c00104{bottom:123.504000px;}
.ye4_c00104{bottom:153.009000px;}
.ye3_c00104{bottom:154.123500px;}
.ye2_c00104{bottom:155.068500px;}
.ye1_c00104{bottom:156.066000px;}
.ye0_c00104{bottom:156.738000px;}
.ydf_c00104{bottom:157.764000px;}
.yde_c00104{bottom:159.262500px;}
.ydd_c00104{bottom:160.779000px;}
.ydc_c00104{bottom:161.316000px;}
.ydb_c00104{bottom:162.244500px;}
.yda_c00104{bottom:172.674000px;}
.yd9_c00104{bottom:178.215000px;}
.yd8_c00104{bottom:180.048000px;}
.yd7_c00104{bottom:180.919500px;}
.yd6_c00104{bottom:183.106500px;}
.yd5_c00104{bottom:185.239500px;}
.yd4_c00104{bottom:185.484000px;}
.yd3_c00104{bottom:198.244500px;}
.yd2_c00104{bottom:198.696000px;}
.yd1_c00104{bottom:200.524500px;}
.yd0_c00104{bottom:201.318000px;}
.ycf_c00104{bottom:202.842000px;}
.yce_c00104{bottom:203.694000px;}
.ycd_c00104{bottom:205.873500px;}
.ycc_c00104{bottom:207.645000px;}
.ycb_c00104{bottom:222.922500px;}
.yca_c00104{bottom:224.382000px;}
.yc9_c00104{bottom:225.337500px;}
.yc8_c00104{bottom:226.200000px;}
.yc7_c00104{bottom:228.555000px;}
.yc6_c00104{bottom:229.764000px;}
.yc5_c00104{bottom:230.587500px;}
.yc4_c00104{bottom:244.627500px;}
.yc3_c00104{bottom:245.395500px;}
.yc2_c00104{bottom:246.153000px;}
.yc1_c00104{bottom:247.476000px;}
.yc0_c00104{bottom:248.445000px;}
.ybf_c00104{bottom:249.628500px;}
.ybe_c00104{bottom:250.527000px;}
.ybd_c00104{bottom:251.482500px;}
.ybc_c00104{bottom:252.046500px;}
.ybb_c00104{bottom:252.727500px;}
.yba_c00104{bottom:267.172500px;}
.yb9_c00104{bottom:268.131000px;}
.yb8_c00104{bottom:269.079000px;}
.yb7_c00104{bottom:270.027000px;}
.yb6_c00104{bottom:270.820500px;}
.yb5_c00104{bottom:272.356500px;}
.yb4_c00104{bottom:273.072000px;}
.yb3_c00104{bottom:273.981000px;}
.yb2_c00104{bottom:275.407500px;}
.yb1_c00104{bottom:290.409000px;}
.yb0_c00104{bottom:291.376500px;}
.yaf_c00104{bottom:292.015500px;}
.yae_c00104{bottom:293.437500px;}
.yad_c00104{bottom:293.851500px;}
.yac_c00104{bottom:295.558500px;}
.yab_c00104{bottom:297.004500px;}
.yaa_c00104{bottom:298.008000px;}
.ya9_c00104{bottom:298.293000px;}
.ya8_c00104{bottom:314.283000px;}
.ya7_c00104{bottom:315.291000px;}
.ya6_c00104{bottom:316.417500px;}
.ya5_c00104{bottom:317.494500px;}
.ya4_c00104{bottom:318.084000px;}
.ya3_c00104{bottom:318.952500px;}
.ya2_c00104{bottom:320.880000px;}
.ya1_c00104{bottom:321.075000px;}
.ya0_c00104{bottom:333.201000px;}
.y9f_c00104{bottom:334.417500px;}
.y9e_c00104{bottom:334.875000px;}
.y9d_c00104{bottom:335.754000px;}
.y9c_c00104{bottom:337.105500px;}
.y9b_c00104{bottom:338.217000px;}
.y9a_c00104{bottom:338.764500px;}
.y99_c00104{bottom:339.774000px;}
.y98_c00104{bottom:341.236500px;}
.y97_c00104{bottom:342.037500px;}
.y96_c00104{bottom:359.386500px;}
.y95_c00104{bottom:359.661000px;}
.y94_c00104{bottom:360.547500px;}
.y93_c00104{bottom:360.985500px;}
.y92_c00104{bottom:361.362000px;}
.y91_c00104{bottom:362.515500px;}
.y90_c00104{bottom:362.995500px;}
.y8f_c00104{bottom:363.513000px;}
.y8e_c00104{bottom:364.372500px;}
.y8d_c00104{bottom:365.043000px;}
.y8c_c00104{bottom:379.488000px;}
.y8b_c00104{bottom:379.578000px;}
.y8a_c00104{bottom:381.208500px;}
.y89_c00104{bottom:381.784500px;}
.y88_c00104{bottom:382.660500px;}
.y87_c00104{bottom:383.491500px;}
.y86_c00104{bottom:384.960000px;}
.y85_c00104{bottom:386.026500px;}
.y84_c00104{bottom:386.781000px;}
.y83_c00104{bottom:387.528000px;}
.y82_c00104{bottom:387.994500px;}
.y81_c00104{bottom:405.070500px;}
.y80_c00104{bottom:405.516000px;}
.y7f_c00104{bottom:405.831000px;}
.y7e_c00104{bottom:406.767000px;}
.y7d_c00104{bottom:407.812500px;}
.y7c_c00104{bottom:408.213000px;}
.y7b_c00104{bottom:409.075500px;}
.y7a_c00104{bottom:409.864500px;}
.y79_c00104{bottom:425.722500px;}
.y78_c00104{bottom:427.291500px;}
.y77_c00104{bottom:428.023500px;}
.y76_c00104{bottom:428.386500px;}
.y75_c00104{bottom:429.775500px;}
.y74_c00104{bottom:430.623000px;}
.y73_c00104{bottom:432.277500px;}
.y72_c00104{bottom:448.717500px;}
.y71_c00104{bottom:449.974500px;}
.y70_c00104{bottom:450.786000px;}
.y6f_c00104{bottom:451.263000px;}
.y6e_c00104{bottom:451.581000px;}
.y6d_c00104{bottom:452.124000px;}
.y6c_c00104{bottom:452.613000px;}
.y6b_c00104{bottom:453.513000px;}
.y6a_c00104{bottom:454.686000px;}
.y69_c00104{bottom:473.590500px;}
.y68_c00104{bottom:474.076500px;}
.y67_c00104{bottom:474.657000px;}
.y66_c00104{bottom:475.668000px;}
.y65_c00104{bottom:476.544000px;}
.y64_c00104{bottom:477.364500px;}
.y63_c00104{bottom:495.145500px;}
.y62_c00104{bottom:495.709500px;}
.y61_c00104{bottom:496.429500px;}
.y60_c00104{bottom:497.049000px;}
.y5f_c00104{bottom:497.709000px;}
.y5e_c00104{bottom:498.630000px;}
.y5d_c00104{bottom:499.087500px;}
.y5c_c00104{bottom:499.549500px;}
.y5b_c00104{bottom:500.047500px;}
.y5a_c00104{bottom:516.276000px;}
.y59_c00104{bottom:516.814500px;}
.y58_c00104{bottom:518.049000px;}
.y57_c00104{bottom:518.680500px;}
.y56_c00104{bottom:519.609000px;}
.y55_c00104{bottom:520.248000px;}
.y54_c00104{bottom:521.643000px;}
.y53_c00104{bottom:546.468000px;}
.y52_c00104{bottom:571.432500px;}
.y51_c00104{bottom:610.518699px;}
.y50_c00104{bottom:611.201577px;}
.y4f_c00104{bottom:611.416220px;}
.y4e_c00104{bottom:612.452109px;}
.y4d_c00104{bottom:612.837752px;}
.y4c_c00104{bottom:613.632640px;}
.y4b_c00104{bottom:615.322551px;}
.y4a_c00104{bottom:615.959033px;}
.y49_c00104{bottom:616.623861px;}
.y48_c00104{bottom:617.463183px;}
.y47_c00104{bottom:632.505581px;}
.y46_c00104{bottom:634.378298px;}
.y45_c00104{bottom:635.002595px;}
.y44_c00104{bottom:635.486380px;}
.y43_c00104{bottom:636.300237px;}
.y42_c00104{bottom:636.661154px;}
.y41_c00104{bottom:637.675964px;}
.y40_c00104{bottom:638.441536px;}
.y3f_c00104{bottom:640.256769px;}
.y3e_c00104{bottom:657.218181px;}
.y3d_c00104{bottom:657.566400px;}
.y3c_c00104{bottom:658.462152px;}
.y3b_c00104{bottom:659.039963px;}
.y3a_c00104{bottom:659.888531px;}
.y39_c00104{bottom:660.263963px;}
.y38_c00104{bottom:661.132502px;}
.y37_c00104{bottom:662.040294px;}
.y36_c00104{bottom:679.318262px;}
.y35_c00104{bottom:679.960683px;}
.y34_c00104{bottom:680.404511px;}
.y33_c00104{bottom:680.818248px;}
.y32_c00104{bottom:681.442004px;}
.y31_c00104{bottom:682.223681px;}
.y30_c00104{bottom:683.064084px;}
.y2f_c00104{bottom:683.535452px;}
.y2e_c00104{bottom:684.363488px;}
.y2d_c00104{bottom:684.803822px;}
.y2c_c00104{bottom:685.263000px;}
.y2b_c00104{bottom:701.806740px;}
.y2a_c00104{bottom:702.562170px;}
.y29_c00104{bottom:703.364460px;}
.y28_c00104{bottom:703.970340px;}
.y27_c00104{bottom:704.455050px;}
.y26_c00104{bottom:705.239730px;}
.y25_c00104{bottom:705.590970px;}
.y24_c00104{bottom:706.643970px;}
.y23_c00104{bottom:707.425530px;}
.y22_c00104{bottom:707.946000px;}
.y21_c00104{bottom:725.523877px;}
.y20_c00104{bottom:726.383506px;}
.y1f_c00104{bottom:726.729172px;}
.y1e_c00104{bottom:727.747944px;}
.y1d_c00104{bottom:728.339515px;}
.y1c_c00104{bottom:729.169371px;}
.y1b_c00104{bottom:729.808464px;}
.y1a_c00104{bottom:748.133937px;}
.y19_c00104{bottom:749.361351px;}
.y18_c00104{bottom:750.067203px;}
.y17_c00104{bottom:750.509082px;}
.y16_c00104{bottom:751.210068px;}
.y15_c00104{bottom:751.715416px;}
.y14_c00104{bottom:752.647536px;}
.y13_c00104{bottom:753.357561px;}
.y12_c00104{bottom:753.841417px;}
.y11_c00104{bottom:770.236218px;}
.y10_c00104{bottom:771.512358px;}
.yf_c00104{bottom:771.978189px;}
.ye_c00104{bottom:772.760424px;}
.yd_c00104{bottom:773.332927px;}
.yc_c00104{bottom:774.068152px;}
.yb_c00104{bottom:775.532532px;}
.ya_c00104{bottom:775.982461px;}
.y9_c00104{bottom:793.596342px;}
.y8_c00104{bottom:794.281884px;}
.y7_c00104{bottom:794.941405px;}
.y6_c00104{bottom:795.265218px;}
.y5_c00104{bottom:795.574114px;}
.y4_c00104{bottom:796.188871px;}
.y3_c00104{bottom:796.512189px;}
.y2_c00104{bottom:797.072347px;}
.y1_c00104{bottom:797.313000px;}
.h13_c00104{height:34.650000px;}
.h12_c00104{height:43.050000px;}
.h10_c00104{height:55.650000px;}
.hf_c00104{height:63.000000px;}
.hc_c00104{height:64.050000px;}
.he_c00104{height:66.150000px;}
.hd_c00104{height:68.250000px;}
.h8_c00104{height:69.300000px;}
.h4_c00104{height:69.310013px;}
.h6_c00104{height:70.360165px;}
.h9_c00104{height:71.400000px;}
.h2_c00104{height:71.404320px;}
.h5_c00104{height:71.410317px;}
.ha_c00104{height:72.450000px;}
.h7_c00104{height:72.460468px;}
.h3_c00104{height:74.564909px;}
.hb_c00104{height:79.800000px;}
.h11_c00104{height:129.150000px;}
.h1_c00104{height:1005.000000px;}
.h0_c00104{height:1005.150000px;}
.w0_c00104{width:705.450000px;}
.w1_c00104{width:705.750000px;}
.x0_c00104{left:0.000000px;}
.x35_c00104{left:119.101915px;}
.x71_c00104{left:120.309000px;}
.x3d_c00104{left:125.574407px;}
.x72_c00104{left:127.831500px;}
.x7d_c00104{left:132.474000px;}
.x82_c00104{left:134.253000px;}
.x63_c00104{left:135.814500px;}
.x46_c00104{left:137.580000px;}
.x1e_c00104{left:139.326000px;}
.x1_c00104{left:140.655000px;}
.x69_c00104{left:144.985500px;}
.x5d_c00104{left:157.393500px;}
.x2_c00104{left:162.532500px;}
.x2f_c00104{left:163.660002px;}
.x1f_c00104{left:165.349500px;}
.xa_c00104{left:168.006753px;}
.x3e_c00104{left:169.738902px;}
.x8b_c00104{left:171.180000px;}
.x59_c00104{left:178.431000px;}
.x18_c00104{left:180.149289px;}
.x6a_c00104{left:181.365000px;}
.x4c_c00104{left:183.628500px;}
.x47_c00104{left:188.122500px;}
.x5e_c00104{left:189.894000px;}
.x27_c00104{left:191.742000px;}
.x77_c00104{left:193.081500px;}
.x7e_c00104{left:198.094500px;}
.x50_c00104{left:202.881000px;}
.x20_c00104{left:204.427500px;}
.x7b_c00104{left:207.540000px;}
.x64_c00104{left:208.699500px;}
.x11_c00104{left:210.396177px;}
.x48_c00104{left:212.200500px;}
.x3_c00104{left:213.456000px;}
.x36_c00104{left:214.671177px;}
.x30_c00104{left:220.413471px;}
.x5f_c00104{left:222.729000px;}
.x5a_c00104{left:223.800000px;}
.x78_c00104{left:229.441500px;}
.x19_c00104{left:231.996935px;}
.x65_c00104{left:233.349000px;}
.x73_c00104{left:235.359000px;}
.x3f_c00104{left:238.166556px;}
.x28_c00104{left:240.450000px;}
.x4_c00104{left:242.848500px;}
.x5b_c00104{left:244.842000px;}
.x6b_c00104{left:247.848000px;}
.x51_c00104{left:252.844500px;}
.x37_c00104{left:254.938800px;}
.x21_c00104{left:257.077500px;}
.xb_c00104{left:259.536221px;}
.x49_c00104{left:260.662500px;}
.x55_c00104{left:261.880500px;}
.x12_c00104{left:265.267064px;}
.x1a_c00104{left:269.001405px;}
.x83_c00104{left:273.624000px;}
.x22_c00104{left:274.639500px;}
.x7f_c00104{left:278.838000px;}
.x52_c00104{left:279.984000px;}
.x4d_c00104{left:288.486000px;}
.x43_c00104{left:291.870000px;}
.x6c_c00104{left:293.749500px;}
.x13_c00104{left:294.978600px;}
.x5_c00104{left:298.735500px;}
.x5c_c00104{left:299.877000px;}
.x84_c00104{left:301.726500px;}
.xc_c00104{left:305.508696px;}
.x38_c00104{left:308.366989px;}
.x53_c00104{left:310.150500px;}
.x23_c00104{left:313.873500px;}
.x29_c00104{left:317.613000px;}
.x6d_c00104{left:318.648000px;}
.x4e_c00104{left:320.754000px;}
.x7c_c00104{left:322.441500px;}
.x44_c00104{left:325.498500px;}
.x6_c00104{left:326.817000px;}
.x4a_c00104{left:328.005000px;}
.x66_c00104{left:329.049000px;}
.x56_c00104{left:331.318500px;}
.x1b_c00104{left:332.704407px;}
.x14_c00104{left:336.201878px;}
.x24_c00104{left:338.109000px;}
.xd_c00104{left:341.325233px;}
.x74_c00104{left:342.810000px;}
.x4f_c00104{left:347.736000px;}
.x57_c00104{left:349.488000px;}
.x31_c00104{left:351.182689px;}
.x1c_c00104{left:354.309219px;}
.x7_c00104{left:356.254500px;}
.x85_c00104{left:360.841500px;}
.x15_c00104{left:362.189162px;}
.x2a_c00104{left:363.594000px;}
.x4b_c00104{left:365.874000px;}
.x25_c00104{left:368.403000px;}
.x39_c00104{left:370.233899px;}
.x75_c00104{left:381.607500px;}
.x58_c00104{left:386.068500px;}
.x32_c00104{left:387.289801px;}
.x40_c00104{left:389.187405px;}
.xe_c00104{left:390.207543px;}
.x67_c00104{left:392.134500px;}
.x3a_c00104{left:395.691032px;}
.x2b_c00104{left:400.285500px;}
.x16_c00104{left:403.718423px;}
.x68_c00104{left:405.222000px;}
.x1d_c00104{left:408.045266px;}
.x8_c00104{left:416.211000px;}
.x7a_c00104{left:417.477000px;}
.xf_c00104{left:419.326943px;}
.x2c_c00104{left:424.623000px;}
.x87_c00104{left:425.980500px;}
.x79_c00104{left:427.093500px;}
.x3b_c00104{left:428.530910px;}
.x6e_c00104{left:430.626000px;}
.x60_c00104{left:432.175500px;}
.x45_c00104{left:441.937500px;}
.x33_c00104{left:443.246745px;}
.x26_c00104{left:446.289000px;}
.x2d_c00104{left:450.730500px;}
.x41_c00104{left:454.981161px;}
.x76_c00104{left:456.655500px;}
.x80_c00104{left:463.998000px;}
.x34_c00104{left:465.054127px;}
.x54_c00104{left:469.216500px;}
.x6f_c00104{left:470.590500px;}
.x17_c00104{left:475.887654px;}
.x9_c00104{left:478.533000px;}
.x81_c00104{left:480.711000px;}
.x2e_c00104{left:488.520000px;}
.x42_c00104{left:490.913937px;}
.x10_c00104{left:499.062554px;}
.x61_c00104{left:503.070000px;}
.x62_c00104{left:506.971500px;}
.x3c_c00104{left:527.128569px;}
.x89_c00104{left:531.090000px;}
.x86_c00104{left:539.572500px;}
.x70_c00104{left:546.661500px;}
.x8a_c00104{left:554.040000px;}
.x88_c00104{left:585.900000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs11_c00104{font-size:30.800000pt;}
.fs10_c00104{font-size:38.266667pt;}
.fse_c00104{font-size:49.466667pt;}
.fsd_c00104{font-size:56.000000pt;}
.fsa_c00104{font-size:56.933333pt;}
.fsc_c00104{font-size:58.800000pt;}
.fsb_c00104{font-size:60.666667pt;}
.fs6_c00104{font-size:61.600000pt;}
.fs2_c00104{font-size:61.608901pt;}
.fs4_c00104{font-size:62.542369pt;}
.fs7_c00104{font-size:63.466667pt;}
.fs0_c00104{font-size:63.470506pt;}
.fs3_c00104{font-size:63.475837pt;}
.fs8_c00104{font-size:64.400000pt;}
.fs5_c00104{font-size:64.409305pt;}
.fs1_c00104{font-size:66.279919pt;}
.fs9_c00104{font-size:70.933333pt;}
.fsf_c00104{font-size:114.800000pt;}
.y0_c00104{bottom:0.000000pt;}
.ye7_c00104{bottom:84.528000pt;}
.ye8_c00104{bottom:88.320000pt;}
.ye6_c00104{bottom:95.350667pt;}
.ye5_c00104{bottom:109.781333pt;}
.ye4_c00104{bottom:136.008000pt;}
.ye3_c00104{bottom:136.998667pt;}
.ye2_c00104{bottom:137.838667pt;}
.ye1_c00104{bottom:138.725333pt;}
.ye0_c00104{bottom:139.322667pt;}
.ydf_c00104{bottom:140.234667pt;}
.yde_c00104{bottom:141.566667pt;}
.ydd_c00104{bottom:142.914667pt;}
.ydc_c00104{bottom:143.392000pt;}
.ydb_c00104{bottom:144.217333pt;}
.yda_c00104{bottom:153.488000pt;}
.yd9_c00104{bottom:158.413333pt;}
.yd8_c00104{bottom:160.042667pt;}
.yd7_c00104{bottom:160.817333pt;}
.yd6_c00104{bottom:162.761333pt;}
.yd5_c00104{bottom:164.657333pt;}
.yd4_c00104{bottom:164.874667pt;}
.yd3_c00104{bottom:176.217333pt;}
.yd2_c00104{bottom:176.618667pt;}
.yd1_c00104{bottom:178.244000pt;}
.yd0_c00104{bottom:178.949333pt;}
.ycf_c00104{bottom:180.304000pt;}
.yce_c00104{bottom:181.061333pt;}
.ycd_c00104{bottom:182.998667pt;}
.ycc_c00104{bottom:184.573333pt;}
.ycb_c00104{bottom:198.153333pt;}
.yca_c00104{bottom:199.450667pt;}
.yc9_c00104{bottom:200.300000pt;}
.yc8_c00104{bottom:201.066667pt;}
.yc7_c00104{bottom:203.160000pt;}
.yc6_c00104{bottom:204.234667pt;}
.yc5_c00104{bottom:204.966667pt;}
.yc4_c00104{bottom:217.446667pt;}
.yc3_c00104{bottom:218.129333pt;}
.yc2_c00104{bottom:218.802667pt;}
.yc1_c00104{bottom:219.978667pt;}
.yc0_c00104{bottom:220.840000pt;}
.ybf_c00104{bottom:221.892000pt;}
.ybe_c00104{bottom:222.690667pt;}
.ybd_c00104{bottom:223.540000pt;}
.ybc_c00104{bottom:224.041333pt;}
.ybb_c00104{bottom:224.646667pt;}
.yba_c00104{bottom:237.486667pt;}
.yb9_c00104{bottom:238.338667pt;}
.yb8_c00104{bottom:239.181333pt;}
.yb7_c00104{bottom:240.024000pt;}
.yb6_c00104{bottom:240.729333pt;}
.yb5_c00104{bottom:242.094667pt;}
.yb4_c00104{bottom:242.730667pt;}
.yb3_c00104{bottom:243.538667pt;}
.yb2_c00104{bottom:244.806667pt;}
.yb1_c00104{bottom:258.141333pt;}
.yb0_c00104{bottom:259.001333pt;}
.yaf_c00104{bottom:259.569333pt;}
.yae_c00104{bottom:260.833333pt;}
.yad_c00104{bottom:261.201333pt;}
.yac_c00104{bottom:262.718667pt;}
.yab_c00104{bottom:264.004000pt;}
.yaa_c00104{bottom:264.896000pt;}
.ya9_c00104{bottom:265.149333pt;}
.ya8_c00104{bottom:279.362667pt;}
.ya7_c00104{bottom:280.258667pt;}
.ya6_c00104{bottom:281.260000pt;}
.ya5_c00104{bottom:282.217333pt;}
.ya4_c00104{bottom:282.741333pt;}
.ya3_c00104{bottom:283.513333pt;}
.ya2_c00104{bottom:285.226667pt;}
.ya1_c00104{bottom:285.400000pt;}
.ya0_c00104{bottom:296.178667pt;}
.y9f_c00104{bottom:297.260000pt;}
.y9e_c00104{bottom:297.666667pt;}
.y9d_c00104{bottom:298.448000pt;}
.y9c_c00104{bottom:299.649333pt;}
.y9b_c00104{bottom:300.637333pt;}
.y9a_c00104{bottom:301.124000pt;}
.y99_c00104{bottom:302.021333pt;}
.y98_c00104{bottom:303.321333pt;}
.y97_c00104{bottom:304.033333pt;}
.y96_c00104{bottom:319.454667pt;}
.y95_c00104{bottom:319.698667pt;}
.y94_c00104{bottom:320.486667pt;}
.y93_c00104{bottom:320.876000pt;}
.y92_c00104{bottom:321.210667pt;}
.y91_c00104{bottom:322.236000pt;}
.y90_c00104{bottom:322.662667pt;}
.y8f_c00104{bottom:323.122667pt;}
.y8e_c00104{bottom:323.886667pt;}
.y8d_c00104{bottom:324.482667pt;}
.y8c_c00104{bottom:337.322667pt;}
.y8b_c00104{bottom:337.402667pt;}
.y8a_c00104{bottom:338.852000pt;}
.y89_c00104{bottom:339.364000pt;}
.y88_c00104{bottom:340.142667pt;}
.y87_c00104{bottom:340.881333pt;}
.y86_c00104{bottom:342.186667pt;}
.y85_c00104{bottom:343.134667pt;}
.y84_c00104{bottom:343.805333pt;}
.y83_c00104{bottom:344.469333pt;}
.y82_c00104{bottom:344.884000pt;}
.y81_c00104{bottom:360.062667pt;}
.y80_c00104{bottom:360.458667pt;}
.y7f_c00104{bottom:360.738667pt;}
.y7e_c00104{bottom:361.570667pt;}
.y7d_c00104{bottom:362.500000pt;}
.y7c_c00104{bottom:362.856000pt;}
.y7b_c00104{bottom:363.622667pt;}
.y7a_c00104{bottom:364.324000pt;}
.y79_c00104{bottom:378.420000pt;}
.y78_c00104{bottom:379.814667pt;}
.y77_c00104{bottom:380.465333pt;}
.y76_c00104{bottom:380.788000pt;}
.y75_c00104{bottom:382.022667pt;}
.y74_c00104{bottom:382.776000pt;}
.y73_c00104{bottom:384.246667pt;}
.y72_c00104{bottom:398.860000pt;}
.y71_c00104{bottom:399.977333pt;}
.y70_c00104{bottom:400.698667pt;}
.y6f_c00104{bottom:401.122667pt;}
.y6e_c00104{bottom:401.405333pt;}
.y6d_c00104{bottom:401.888000pt;}
.y6c_c00104{bottom:402.322667pt;}
.y6b_c00104{bottom:403.122667pt;}
.y6a_c00104{bottom:404.165333pt;}
.y69_c00104{bottom:420.969333pt;}
.y68_c00104{bottom:421.401333pt;}
.y67_c00104{bottom:421.917333pt;}
.y66_c00104{bottom:422.816000pt;}
.y65_c00104{bottom:423.594667pt;}
.y64_c00104{bottom:424.324000pt;}
.y63_c00104{bottom:440.129333pt;}
.y62_c00104{bottom:440.630667pt;}
.y61_c00104{bottom:441.270667pt;}
.y60_c00104{bottom:441.821333pt;}
.y5f_c00104{bottom:442.408000pt;}
.y5e_c00104{bottom:443.226667pt;}
.y5d_c00104{bottom:443.633333pt;}
.y5c_c00104{bottom:444.044000pt;}
.y5b_c00104{bottom:444.486667pt;}
.y5a_c00104{bottom:458.912000pt;}
.y59_c00104{bottom:459.390667pt;}
.y58_c00104{bottom:460.488000pt;}
.y57_c00104{bottom:461.049333pt;}
.y56_c00104{bottom:461.874667pt;}
.y55_c00104{bottom:462.442667pt;}
.y54_c00104{bottom:463.682667pt;}
.y53_c00104{bottom:485.749333pt;}
.y52_c00104{bottom:507.940000pt;}
.y51_c00104{bottom:542.683288pt;}
.y50_c00104{bottom:543.290291pt;}
.y4f_c00104{bottom:543.481084pt;}
.y4e_c00104{bottom:544.401875pt;}
.y4d_c00104{bottom:544.744668pt;}
.y4c_c00104{bottom:545.451236pt;}
.y4b_c00104{bottom:546.953379pt;}
.y4a_c00104{bottom:547.519140pt;}
.y49_c00104{bottom:548.110099pt;}
.y48_c00104{bottom:548.856163pt;}
.y47_c00104{bottom:562.227183pt;}
.y46_c00104{bottom:563.891820pt;}
.y45_c00104{bottom:564.446751pt;}
.y44_c00104{bottom:564.876783pt;}
.y43_c00104{bottom:565.600211pt;}
.y42_c00104{bottom:565.921025pt;}
.y41_c00104{bottom:566.823079pt;}
.y40_c00104{bottom:567.503588pt;}
.y3f_c00104{bottom:569.117128pt;}
.y3e_c00104{bottom:584.193939pt;}
.y3d_c00104{bottom:584.503467pt;}
.y3c_c00104{bottom:585.299691pt;}
.y3b_c00104{bottom:585.813300pt;}
.y3a_c00104{bottom:586.567583pt;}
.y39_c00104{bottom:586.901300pt;}
.y38_c00104{bottom:587.673335pt;}
.y37_c00104{bottom:588.480261pt;}
.y36_c00104{bottom:603.838455pt;}
.y35_c00104{bottom:604.409496pt;}
.y34_c00104{bottom:604.804009pt;}
.y33_c00104{bottom:605.171776pt;}
.y32_c00104{bottom:605.726225pt;}
.y31_c00104{bottom:606.421049pt;}
.y30_c00104{bottom:607.168075pt;}
.y2f_c00104{bottom:607.587068pt;}
.y2e_c00104{bottom:608.323100pt;}
.y2d_c00104{bottom:608.714508pt;}
.y2c_c00104{bottom:609.122667pt;}
.y2b_c00104{bottom:623.828213pt;}
.y2a_c00104{bottom:624.499707pt;}
.y29_c00104{bottom:625.212853pt;}
.y28_c00104{bottom:625.751413pt;}
.y27_c00104{bottom:626.182267pt;}
.y26_c00104{bottom:626.879760pt;}
.y25_c00104{bottom:627.191973pt;}
.y24_c00104{bottom:628.127973pt;}
.y23_c00104{bottom:628.822693pt;}
.y22_c00104{bottom:629.285333pt;}
.y21_c00104{bottom:644.910113pt;}
.y20_c00104{bottom:645.674228pt;}
.y1f_c00104{bottom:645.981487pt;}
.y1e_c00104{bottom:646.887061pt;}
.y1d_c00104{bottom:647.412903pt;}
.y1c_c00104{bottom:648.150552pt;}
.y1b_c00104{bottom:648.718635pt;}
.y1a_c00104{bottom:665.007944pt;}
.y19_c00104{bottom:666.098979pt;}
.y18_c00104{bottom:666.726403pt;}
.y17_c00104{bottom:667.119184pt;}
.y16_c00104{bottom:667.742283pt;}
.y15_c00104{bottom:668.191481pt;}
.y14_c00104{bottom:669.020032pt;}
.y13_c00104{bottom:669.651165pt;}
.y12_c00104{bottom:670.081260pt;}
.y11_c00104{bottom:684.654416pt;}
.y10_c00104{bottom:685.788763pt;}
.yf_c00104{bottom:686.202835pt;}
.ye_c00104{bottom:686.898155pt;}
.yd_c00104{bottom:687.407047pt;}
.yc_c00104{bottom:688.060580pt;}
.yb_c00104{bottom:689.362251pt;}
.ya_c00104{bottom:689.762188pt;}
.y9_c00104{bottom:705.418971pt;}
.y8_c00104{bottom:706.028341pt;}
.y7_c00104{bottom:706.614583pt;}
.y6_c00104{bottom:706.902416pt;}
.y5_c00104{bottom:707.176991pt;}
.y4_c00104{bottom:707.723441pt;}
.y3_c00104{bottom:708.010835pt;}
.y2_c00104{bottom:708.508753pt;}
.y1_c00104{bottom:708.722667pt;}
.h13_c00104{height:30.800000pt;}
.h12_c00104{height:38.266667pt;}
.h10_c00104{height:49.466667pt;}
.hf_c00104{height:56.000000pt;}
.hc_c00104{height:56.933333pt;}
.he_c00104{height:58.800000pt;}
.hd_c00104{height:60.666667pt;}
.h8_c00104{height:61.600000pt;}
.h4_c00104{height:61.608901pt;}
.h6_c00104{height:62.542369pt;}
.h9_c00104{height:63.466667pt;}
.h2_c00104{height:63.470506pt;}
.h5_c00104{height:63.475837pt;}
.ha_c00104{height:64.400000pt;}
.h7_c00104{height:64.409305pt;}
.h3_c00104{height:66.279919pt;}
.hb_c00104{height:70.933333pt;}
.h11_c00104{height:114.800000pt;}
.h1_c00104{height:893.333333pt;}
.h0_c00104{height:893.466667pt;}
.w0_c00104{width:627.066667pt;}
.w1_c00104{width:627.333333pt;}
.x0_c00104{left:0.000000pt;}
.x35_c00104{left:105.868369pt;}
.x71_c00104{left:106.941333pt;}
.x3d_c00104{left:111.621695pt;}
.x72_c00104{left:113.628000pt;}
.x7d_c00104{left:117.754667pt;}
.x82_c00104{left:119.336000pt;}
.x63_c00104{left:120.724000pt;}
.x46_c00104{left:122.293333pt;}
.x1e_c00104{left:123.845333pt;}
.x1_c00104{left:125.026667pt;}
.x69_c00104{left:128.876000pt;}
.x5d_c00104{left:139.905333pt;}
.x2_c00104{left:144.473333pt;}
.x2f_c00104{left:145.475557pt;}
.x1f_c00104{left:146.977333pt;}
.xa_c00104{left:149.339336pt;}
.x3e_c00104{left:150.879024pt;}
.x8b_c00104{left:152.160000pt;}
.x59_c00104{left:158.605333pt;}
.x18_c00104{left:160.132701pt;}
.x6a_c00104{left:161.213333pt;}
.x4c_c00104{left:163.225333pt;}
.x47_c00104{left:167.220000pt;}
.x5e_c00104{left:168.794667pt;}
.x27_c00104{left:170.437333pt;}
.x77_c00104{left:171.628000pt;}
.x7e_c00104{left:176.084000pt;}
.x50_c00104{left:180.338667pt;}
.x20_c00104{left:181.713333pt;}
.x7b_c00104{left:184.480000pt;}
.x64_c00104{left:185.510667pt;}
.x11_c00104{left:187.018824pt;}
.x48_c00104{left:188.622667pt;}
.x3_c00104{left:189.738667pt;}
.x36_c00104{left:190.818824pt;}
.x30_c00104{left:195.923085pt;}
.x5f_c00104{left:197.981333pt;}
.x5a_c00104{left:198.933333pt;}
.x78_c00104{left:203.948000pt;}
.x19_c00104{left:206.219497pt;}
.x65_c00104{left:207.421333pt;}
.x73_c00104{left:209.208000pt;}
.x3f_c00104{left:211.703605pt;}
.x28_c00104{left:213.733333pt;}
.x4_c00104{left:215.865333pt;}
.x5b_c00104{left:217.637333pt;}
.x6b_c00104{left:220.309333pt;}
.x51_c00104{left:224.750667pt;}
.x37_c00104{left:226.612267pt;}
.x21_c00104{left:228.513333pt;}
.xb_c00104{left:230.698863pt;}
.x49_c00104{left:231.700000pt;}
.x55_c00104{left:232.782667pt;}
.x12_c00104{left:235.792945pt;}
.x1a_c00104{left:239.112360pt;}
.x83_c00104{left:243.221333pt;}
.x22_c00104{left:244.124000pt;}
.x7f_c00104{left:247.856000pt;}
.x52_c00104{left:248.874667pt;}
.x4d_c00104{left:256.432000pt;}
.x43_c00104{left:259.440000pt;}
.x6c_c00104{left:261.110667pt;}
.x13_c00104{left:262.203200pt;}
.x5_c00104{left:265.542667pt;}
.x5c_c00104{left:266.557333pt;}
.x84_c00104{left:268.201333pt;}
.xc_c00104{left:271.563285pt;}
.x38_c00104{left:274.103991pt;}
.x53_c00104{left:275.689333pt;}
.x23_c00104{left:278.998667pt;}
.x29_c00104{left:282.322667pt;}
.x6d_c00104{left:283.242667pt;}
.x4e_c00104{left:285.114667pt;}
.x7c_c00104{left:286.614667pt;}
.x44_c00104{left:289.332000pt;}
.x6_c00104{left:290.504000pt;}
.x4a_c00104{left:291.560000pt;}
.x66_c00104{left:292.488000pt;}
.x56_c00104{left:294.505333pt;}
.x1b_c00104{left:295.737251pt;}
.x14_c00104{left:298.846113pt;}
.x24_c00104{left:300.541333pt;}
.xd_c00104{left:303.400207pt;}
.x74_c00104{left:304.720000pt;}
.x4f_c00104{left:309.098667pt;}
.x57_c00104{left:310.656000pt;}
.x31_c00104{left:312.162391pt;}
.x1c_c00104{left:314.941528pt;}
.x7_c00104{left:316.670667pt;}
.x85_c00104{left:320.748000pt;}
.x15_c00104{left:321.945921pt;}
.x2a_c00104{left:323.194667pt;}
.x4b_c00104{left:325.221333pt;}
.x25_c00104{left:327.469333pt;}
.x39_c00104{left:329.096799pt;}
.x75_c00104{left:339.206667pt;}
.x58_c00104{left:343.172000pt;}
.x32_c00104{left:344.257601pt;}
.x40_c00104{left:345.944360pt;}
.xe_c00104{left:346.851149pt;}
.x67_c00104{left:348.564000pt;}
.x3a_c00104{left:351.725361pt;}
.x2b_c00104{left:355.809333pt;}
.x16_c00104{left:358.860820pt;}
.x68_c00104{left:360.197333pt;}
.x1d_c00104{left:362.706903pt;}
.x8_c00104{left:369.965333pt;}
.x7a_c00104{left:371.090667pt;}
.xf_c00104{left:372.735060pt;}
.x2c_c00104{left:377.442667pt;}
.x87_c00104{left:378.649333pt;}
.x79_c00104{left:379.638667pt;}
.x3b_c00104{left:380.916364pt;}
.x6e_c00104{left:382.778667pt;}
.x60_c00104{left:384.156000pt;}
.x45_c00104{left:392.833333pt;}
.x33_c00104{left:393.997107pt;}
.x26_c00104{left:396.701333pt;}
.x2d_c00104{left:400.649333pt;}
.x41_c00104{left:404.427699pt;}
.x76_c00104{left:405.916000pt;}
.x80_c00104{left:412.442667pt;}
.x34_c00104{left:413.381447pt;}
.x54_c00104{left:417.081333pt;}
.x6f_c00104{left:418.302667pt;}
.x17_c00104{left:423.011248pt;}
.x9_c00104{left:425.362667pt;}
.x81_c00104{left:427.298667pt;}
.x2e_c00104{left:434.240000pt;}
.x42_c00104{left:436.367944pt;}
.x10_c00104{left:443.611159pt;}
.x61_c00104{left:447.173333pt;}
.x62_c00104{left:450.641333pt;}
.x3c_c00104{left:468.558728pt;}
.x89_c00104{left:472.080000pt;}
.x86_c00104{left:479.620000pt;}
.x70_c00104{left:485.921333pt;}
.x8a_c00104{left:492.480000pt;}
.x88_c00104{left:520.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m83_c00105{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);}
.mf4_c00105{transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);}
.me8_c00105{transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);}
.m55_c00105{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);}
.m9_c00105{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);}
.m28_c00105{transform:matrix(0.145666,-0.001602,0.002750,0.249985,0,0);-ms-transform:matrix(0.145666,-0.001602,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145666,-0.001602,0.002750,0.249985,0,0);}
.md4_c00105{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);}
.m7b_c00105{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);}
.m3d_c00105{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.mb8_c00105{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);}
.m57_c00105{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);}
.m21_c00105{transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);-ms-transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);}
.m32_c00105{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);}
.m6d_c00105{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);}
.m84_c00105{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.m7c_c00105{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);}
.m27_c00105{transform:matrix(0.167525,-0.001843,0.002750,0.249985,0,0);-ms-transform:matrix(0.167525,-0.001843,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167525,-0.001843,0.002750,0.249985,0,0);}
.m54_c00105{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);}
.m7a_c00105{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);}
.md5_c00105{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);}
.m4b_c00105{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);}
.ma2_c00105{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);}
.m8a_c00105{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m33_c00105{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);}
.m53_c00105{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);}
.m11_c00105{transform:matrix(0.172573,-0.001553,0.002250,0.249990,0,0);-ms-transform:matrix(0.172573,-0.001553,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172573,-0.001553,0.002250,0.249990,0,0);}
.m36_c00105{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);}
.mb1_c00105{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);}
.mf5_c00105{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);}
.m78_c00105{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);}
.m1a_c00105{transform:matrix(0.176648,-0.001590,0.002250,0.249990,0,0);-ms-transform:matrix(0.176648,-0.001590,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176648,-0.001590,0.002250,0.249990,0,0);}
.md7_c00105{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);}
.mcb_c00105{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);}
.m6c_c00105{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);}
.m4a_c00105{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);}
.m81_c00105{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);}
.m2e_c00105{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);}
.ma_c00105{transform:matrix(0.180237,-0.002523,0.003500,0.249976,0,0);-ms-transform:matrix(0.180237,-0.002523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180237,-0.002523,0.003500,0.249976,0,0);}
.mcc_c00105{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);}
.m2f_c00105{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);}
.mcd_c00105{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);}
.m75_c00105{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);}
.m13_c00105{transform:matrix(0.182848,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182848,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182848,-0.001646,0.002250,0.249990,0,0);}
.m71_c00105{transform:matrix(0.182909,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182909,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182909,-0.002012,0.002750,0.249985,0,0);}
.m1b_c00105{transform:matrix(0.183063,-0.001648,0.002250,0.249990,0,0);-ms-transform:matrix(0.183063,-0.001648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183063,-0.001648,0.002250,0.249990,0,0);}
.m86_c00105{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);}
.m67_c00105{transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);}
.m77_c00105{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);}
.mf2_c00105{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);}
.m22_c00105{transform:matrix(0.185659,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185659,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185659,-0.002042,0.002750,0.249985,0,0);}
.m3e_c00105{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.mca_c00105{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);}
.m98_c00105{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);}
.m2c_c00105{transform:matrix(0.188269,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188269,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188269,-0.002071,0.002750,0.249985,0,0);}
.m92_c00105{transform:matrix(0.188711,0.004718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188711,0.004718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188711,0.004718,-0.006248,0.249922,0,0);}
.m1c_c00105{transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);-ms-transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);}
.m76_c00105{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);}
.m90_c00105{transform:matrix(0.189661,0.004742,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189661,0.004742,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189661,0.004742,-0.006248,0.249922,0,0);}
.m20_c00105{transform:matrix(0.190192,-0.001712,0.002250,0.249990,0,0);-ms-transform:matrix(0.190192,-0.001712,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190192,-0.001712,0.002250,0.249990,0,0);}
.m9a_c00105{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);}
.mc8_c00105{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);}
.mde_c00105{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);}
.m26_c00105{transform:matrix(0.191553,-0.002107,0.002750,0.249985,0,0);-ms-transform:matrix(0.191553,-0.002107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191553,-0.002107,0.002750,0.249985,0,0);}
.mdc_c00105{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);}
.m58_c00105{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);}
.m63_c00105{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);}
.mc0_c00105{transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);}
.m80_c00105{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);}
.m35_c00105{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);}
.mba_c00105{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);}
.m38_c00105{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);}
.m30_c00105{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);}
.med_c00105{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);}
.m99_c00105{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);}
.m2d_c00105{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);}
.mab_c00105{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);}
.me_c00105{transform:matrix(0.196751,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196751,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196751,-0.002755,0.003500,0.249976,0,0);}
.m95_c00105{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);}
.m12_c00105{transform:matrix(0.199142,-0.001792,0.002250,0.249990,0,0);-ms-transform:matrix(0.199142,-0.001792,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199142,-0.001792,0.002250,0.249990,0,0);}
.m50_c00105{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);}
.m9b_c00105{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);}
.mbd_c00105{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);}
.m1_c00105{transform:matrix(0.199813,0.004995,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199813,0.004995,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199813,0.004995,-0.006248,0.249922,0,0);}
.mf_c00105{transform:matrix(0.200025,-0.002800,0.003500,0.249976,0,0);-ms-transform:matrix(0.200025,-0.002800,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200025,-0.002800,0.003500,0.249976,0,0);}
.md1_c00105{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);}
.m4d_c00105{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);}
.m7f_c00105{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);}
.mdf_c00105{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);}
.m59_c00105{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);}
.m29_c00105{transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);}
.m18_c00105{transform:matrix(0.201897,-0.001817,0.002250,0.249990,0,0);-ms-transform:matrix(0.201897,-0.001817,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201897,-0.001817,0.002250,0.249990,0,0);}
.m68_c00105{transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);}
.m8b_c00105{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);}
.ma5_c00105{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);}
.m3c_c00105{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);}
.mb5_c00105{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);}
.m4_c00105{transform:matrix(0.203936,0.005098,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203936,0.005098,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203936,0.005098,-0.006248,0.249922,0,0);}
.m52_c00105{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);}
.mf1_c00105{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);}
.m9c_c00105{transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);}
.mec_c00105{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);}
.m73_c00105{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);}
.m74_c00105{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);}
.ma4_c00105{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);}
.m65_c00105{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);}
.m2a_c00105{transform:matrix(0.207817,-0.002286,0.002750,0.249985,0,0);-ms-transform:matrix(0.207817,-0.002286,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207817,-0.002286,0.002750,0.249985,0,0);}
.mf7_c00105{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);}
.m6b_c00105{transform:matrix(0.208647,-0.002295,0.002750,0.249985,0,0);-ms-transform:matrix(0.208647,-0.002295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208647,-0.002295,0.002750,0.249985,0,0);}
.m5f_c00105{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);}
.m5_c00105{transform:matrix(0.209210,0.005230,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209210,0.005230,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209210,0.005230,-0.006248,0.249922,0,0);}
.m1f_c00105{transform:matrix(0.209457,-0.001885,0.002250,0.249990,0,0);-ms-transform:matrix(0.209457,-0.001885,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209457,-0.001885,0.002250,0.249990,0,0);}
.mc2_c00105{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);}
.m7e_c00105{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);}
.m23_c00105{transform:matrix(0.210437,-0.002315,0.002750,0.249985,0,0);-ms-transform:matrix(0.210437,-0.002315,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210437,-0.002315,0.002750,0.249985,0,0);}
.m14_c00105{transform:matrix(0.210611,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210611,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210611,-0.001896,0.002250,0.249990,0,0);}
.me1_c00105{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);}
.m5a_c00105{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);}
.md3_c00105{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);}
.m2b_c00105{transform:matrix(0.212652,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212652,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212652,-0.002339,0.002750,0.249985,0,0);}
.m89_c00105{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);}
.mf8_c00105{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);}
.m97_c00105{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);}
.m91_c00105{transform:matrix(0.215913,0.005398,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215913,0.005398,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215913,0.005398,-0.006248,0.249922,0,0);}
.me9_c00105{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.maf_c00105{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);}
.maa_c00105{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);}
.meb_c00105{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);}
.me7_c00105{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);}
.m66_c00105{transform:matrix(0.218897,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218897,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218897,-0.002408,0.002750,0.249985,0,0);}
.m87_c00105{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);}
.md2_c00105{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_c00105{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m6a_c00105{transform:matrix(0.220942,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220942,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220942,-0.002430,0.002750,0.249985,0,0);}
.m2_c00105{transform:matrix(0.221061,0.005527,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221061,0.005527,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221061,0.005527,-0.006248,0.249922,0,0);}
.m24_c00105{transform:matrix(0.221162,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221162,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221162,-0.002433,0.002750,0.249985,0,0);}
.m51_c00105{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);}
.m4e_c00105{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);}
.mea_c00105{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);}
.m93_c00105{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);}
.mad_c00105{transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);}
.m37_c00105{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);}
.m64_c00105{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);}
.m94_c00105{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);}
.mdb_c00105{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);}
.m17_c00105{transform:matrix(0.223451,-0.002011,0.002250,0.249990,0,0);-ms-transform:matrix(0.223451,-0.002011,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223451,-0.002011,0.002250,0.249990,0,0);}
.m6f_c00105{transform:matrix(0.223626,-0.002460,0.002750,0.249985,0,0);-ms-transform:matrix(0.223626,-0.002460,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223626,-0.002460,0.002750,0.249985,0,0);}
.m8f_c00105{transform:matrix(0.223850,0.005596,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223850,0.005596,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223850,0.005596,-0.006248,0.249922,0,0);}
.m9f_c00105{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);}
.mc7_c00105{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m60_c00105{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);}
.m47_c00105{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);}
.mf3_c00105{transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.225911,-0.002485,0.002750,0.249985,0,0);-ms-transform:matrix(0.225911,-0.002485,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225911,-0.002485,0.002750,0.249985,0,0);}
.mb_c00105{transform:matrix(0.226443,-0.003170,0.003500,0.249976,0,0);-ms-transform:matrix(0.226443,-0.003170,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226443,-0.003170,0.003500,0.249976,0,0);}
.m15_c00105{transform:matrix(0.227511,-0.002048,0.002250,0.249990,0,0);-ms-transform:matrix(0.227511,-0.002048,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227511,-0.002048,0.002250,0.249990,0,0);}
.md6_c00105{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);}
.m9d_c00105{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);}
.mae_c00105{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);}
.m9e_c00105{transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);}
.mef_c00105{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);}
.mb6_c00105{transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230790,0.000000,0.000000,0.250000,0,0);}
.mcf_c00105{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);}
.mb4_c00105{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.me6_c00105{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);}
.m69_c00105{transform:matrix(0.233031,-0.002563,0.002750,0.249985,0,0);-ms-transform:matrix(0.233031,-0.002563,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233031,-0.002563,0.002750,0.249985,0,0);}
.m70_c00105{transform:matrix(0.233196,-0.002565,0.002750,0.249985,0,0);-ms-transform:matrix(0.233196,-0.002565,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233196,-0.002565,0.002750,0.249985,0,0);}
.m6_c00105{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);}
.me5_c00105{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);}
.mc5_c00105{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);}
.mbc_c00105{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);}
.mf6_c00105{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00105{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.mb7_c00105{transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);}
.m8e_c00105{transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);}
.m85_c00105{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);}
.m8d_c00105{transform:matrix(0.239800,0.005995,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239800,0.005995,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239800,0.005995,-0.006248,0.249922,0,0);}
.mf0_c00105{transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.240306,-0.003364,0.003500,0.249976,0,0);-ms-transform:matrix(0.240306,-0.003364,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240306,-0.003364,0.003500,0.249976,0,0);}
.m6e_c00105{transform:matrix(0.240745,-0.002648,0.002750,0.249985,0,0);-ms-transform:matrix(0.240745,-0.002648,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240745,-0.002648,0.002750,0.249985,0,0);}
.m4f_c00105{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);}
.m3_c00105{transform:matrix(0.241664,0.006042,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241664,0.006042,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241664,0.006042,-0.006248,0.249922,0,0);}
.m5c_c00105{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);}
.mac_c00105{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m49_c00105{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);}
.mdd_c00105{transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.243141,-0.003404,0.003500,0.249976,0,0);-ms-transform:matrix(0.243141,-0.003404,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243141,-0.003404,0.003500,0.249976,0,0);}
.mc4_c00105{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);}
.mfa_c00105{transform:matrix(0.243545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243545,0.000000,0.000000,0.250000,0,0);}
.m3a_c00105{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);}
.me3_c00105{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);}
.m5b_c00105{transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);}
.mb0_c00105{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);}
.mbb_c00105{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{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);}
.m88_c00105{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);}
.m48_c00105{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.ma0_c00105{transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m31_c00105{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);}
.mce_c00105{transform:matrix(0.254865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254865,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.255525,-0.003577,0.003500,0.249976,0,0);-ms-transform:matrix(0.255525,-0.003577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255525,-0.003577,0.003500,0.249976,0,0);}
.mf9_c00105{transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257275,0.000000,0.000000,0.250000,0,0);}
.ma8_c00105{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);}
.mc6_c00105{transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);}
.m82_c00105{transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260620,0.000000,0.000000,0.250000,0,0);}
.mb2_c00105{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me2_c00105{transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);}
.mee_c00105{transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00105{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m62_c00105{transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);}
.m96_c00105{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);}
.m72_c00105{transform:matrix(0.268389,-0.002952,0.002750,0.249985,0,0);-ms-transform:matrix(0.268389,-0.002952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268389,-0.002952,0.002750,0.249985,0,0);}
.m45_c00105{transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);}
.ma6_c00105{transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269115,0.000000,0.000000,0.250000,0,0);}
.mb9_c00105{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m61_c00105{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);}
.mc9_c00105{transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);}
.mda_c00105{transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);}
.mb3_c00105{transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);}
.me0_c00105{transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280985,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.281904,-0.002537,0.002250,0.249990,0,0);-ms-transform:matrix(0.281904,-0.002537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281904,-0.002537,0.002250,0.249990,0,0);}
.m19_c00105{transform:matrix(0.282854,-0.002546,0.002250,0.249990,0,0);-ms-transform:matrix(0.282854,-0.002546,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282854,-0.002546,0.002250,0.249990,0,0);}
.ma9_c00105{transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284795,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.286998,-0.002583,0.002250,0.249990,0,0);-ms-transform:matrix(0.286998,-0.002583,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286998,-0.002583,0.002250,0.249990,0,0);}
.md0_c00105{transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);}
.mbf_c00105{transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);}
.m79_c00105{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.mc1_c00105{transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);}
.mc3_c00105{transform:matrix(0.301640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301640,0.000000,0.000000,0.250000,0,0);}
.m5e_c00105{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);}
.ma3_c00105{transform:matrix(0.308865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308865,0.000000,0.000000,0.250000,0,0);}
.md9_c00105{transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.318590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318590,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.319877,-0.002879,0.002250,0.249990,0,0);-ms-transform:matrix(0.319877,-0.002879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.319877,-0.002879,0.002250,0.249990,0,0);}
.ma7_c00105{transform:matrix(0.322180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322180,0.000000,0.000000,0.250000,0,0);}
.mfb_c00105{transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331505,0.000000,0.000000,0.250000,0,0);}
.ma1_c00105{transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332410,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.337270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337270,0.000000,0.000000,0.250000,0,0);}
.me4_c00105{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m5d_c00105{transform:matrix(0.350835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350835,0.000000,0.000000,0.250000,0,0);}
.m39_c00105{transform:matrix(0.373540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373540,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.379351,0.009484,-0.006248,0.249922,0,0);-ms-transform:matrix(0.379351,0.009484,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.379351,0.009484,-0.006248,0.249922,0,0);}
.m1d_c00105{transform:matrix(0.392604,-0.003533,0.002250,0.249990,0,0);-ms-transform:matrix(0.392604,-0.003533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.392604,-0.003533,0.002250,0.249990,0,0);}
.m4c_c00105{transform:matrix(0.435705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00105{transform:matrix(0.519850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519850,0.000000,0.000000,0.250000,0,0);}
.m8c_c00105{transform:matrix(0.545929,0.013648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.545929,0.013648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.545929,0.013648,-0.006248,0.249922,0,0);}
.mfc_c00105{transform:matrix(0.621135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621135,0.000000,0.000000,0.250000,0,0);}
.md8_c00105{transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.767160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767160,0.000000,0.000000,0.250000,0,0);}
.m3f_c00105{transform:matrix(0.851075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851075,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{transform:matrix(0.963070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963070,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;}
.fs1a_c00105{font-size:43.050000px;}
.fs16_c00105{font-size:46.200000px;}
.fs14_c00105{font-size:48.300000px;}
.fs1d_c00105{font-size:49.350000px;}
.fs13_c00105{font-size:51.450000px;}
.fs1b_c00105{font-size:52.500000px;}
.fs18_c00105{font-size:53.550000px;}
.fs1c_c00105{font-size:54.600000px;}
.fs15_c00105{font-size:55.650000px;}
.fs17_c00105{font-size:58.800000px;}
.fs0_c00105{font-size:65.120341px;}
.fse_c00105{font-size:67.200000px;}
.fsb_c00105{font-size:68.250000px;}
.fs2_c00105{font-size:68.256688px;}
.fs1_c00105{font-size:69.300000px;}
.fsf_c00105{font-size:69.304193px;}
.fsd_c00105{font-size:70.350000px;}
.fs7_c00105{font-size:71.400000px;}
.fs3_c00105{font-size:71.402892px;}
.fs5_c00105{font-size:72.454383px;}
.fs11_c00105{font-size:73.500000px;}
.fs6_c00105{font-size:73.504447px;}
.fs12_c00105{font-size:73.522965px;}
.fs4_c00105{font-size:74.553019px;}
.fsc_c00105{font-size:75.600000px;}
.fs10_c00105{font-size:75.604574px;}
.fs8_c00105{font-size:77.700000px;}
.fs9_c00105{font-size:106.050000px;}
.fsa_c00105{font-size:107.100000px;}
.fs19_c00105{font-size:116.550000px;}
.y0_c00105{bottom:0.000000px;}
.y5c_c00105{bottom:153.252000px;}
.y62_c00105{bottom:154.120500px;}
.y5b_c00105{bottom:171.180000px;}
.y61_c00105{bottom:171.450000px;}
.y5a_c00105{bottom:189.087000px;}
.y58_c00105{bottom:189.307500px;}
.y59_c00105{bottom:206.820000px;}
.y57_c00105{bottom:207.243000px;}
.y60_c00105{bottom:224.866500px;}
.y56_c00105{bottom:225.063000px;}
.y55_c00105{bottom:243.112500px;}
.y5f_c00105{bottom:243.270000px;}
.y54_c00105{bottom:260.820000px;}
.y5e_c00105{bottom:261.090000px;}
.y5d_c00105{bottom:301.990500px;}
.y53_c00105{bottom:329.852512px;}
.y52_c00105{bottom:330.925950px;}
.y51_c00105{bottom:332.180400px;}
.y50_c00105{bottom:333.914437px;}
.y4f_c00105{bottom:334.813950px;}
.y4e_c00105{bottom:335.605125px;}
.y4d_c00105{bottom:336.426000px;}
.y4c_c00105{bottom:351.181500px;}
.y4b_c00105{bottom:374.061000px;}
.y4a_c00105{bottom:397.497000px;}
.y43_c00105{bottom:418.500447px;}
.y44_c00105{bottom:419.246198px;}
.y45_c00105{bottom:419.971290px;}
.y46_c00105{bottom:420.311735px;}
.y47_c00105{bottom:420.731330px;}
.y48_c00105{bottom:421.376166px;}
.y49_c00105{bottom:421.800595px;}
.y3d_c00105{bottom:441.183000px;}
.y3e_c00105{bottom:442.168363px;}
.y3f_c00105{bottom:442.510194px;}
.y40_c00105{bottom:443.125364px;}
.y41_c00105{bottom:443.680358px;}
.y42_c00105{bottom:444.141169px;}
.y3b_c00105{bottom:465.433500px;}
.y3c_c00105{bottom:466.957500px;}
.y33_c00105{bottom:486.541500px;}
.y34_c00105{bottom:487.242000px;}
.y35_c00105{bottom:487.552500px;}
.y36_c00105{bottom:488.277000px;}
.y37_c00105{bottom:488.754000px;}
.y38_c00105{bottom:489.171000px;}
.y39_c00105{bottom:489.421500px;}
.y3a_c00105{bottom:489.910500px;}
.y32_c00105{bottom:511.524000px;}
.y31_c00105{bottom:533.074500px;}
.y30_c00105{bottom:570.388500px;}
.y2f_c00105{bottom:605.847000px;}
.y2e_c00105{bottom:662.020500px;}
.y2d_c00105{bottom:684.765000px;}
.y27_c00105{bottom:706.591500px;}
.y28_c00105{bottom:706.912375px;}
.y29_c00105{bottom:707.334148px;}
.y2a_c00105{bottom:708.108807px;}
.y2b_c00105{bottom:708.599418px;}
.y2c_c00105{bottom:708.869671px;}
.y21_c00105{bottom:729.001500px;}
.y22_c00105{bottom:729.325246px;}
.y23_c00105{bottom:729.800578px;}
.y24_c00105{bottom:730.507521px;}
.y25_c00105{bottom:730.878260px;}
.y26_c00105{bottom:731.306962px;}
.y1d_c00105{bottom:753.157761px;}
.y1f_c00105{bottom:753.157944px;}
.y1e_c00105{bottom:753.158018px;}
.y20_c00105{bottom:753.158050px;}
.y1c_c00105{bottom:753.158148px;}
.y1a_c00105{bottom:753.158505px;}
.y1b_c00105{bottom:753.158822px;}
.y19_c00105{bottom:753.158878px;}
.y10_c00105{bottom:774.361500px;}
.y11_c00105{bottom:774.560287px;}
.y12_c00105{bottom:774.992760px;}
.y13_c00105{bottom:775.444564px;}
.y14_c00105{bottom:775.899217px;}
.y15_c00105{bottom:776.154246px;}
.y16_c00105{bottom:776.630661px;}
.y17_c00105{bottom:776.854261px;}
.y18_c00105{bottom:777.228535px;}
.y8_c00105{bottom:796.860000px;}
.y9_c00105{bottom:797.199696px;}
.ya_c00105{bottom:797.498232px;}
.yb_c00105{bottom:798.069054px;}
.yc_c00105{bottom:799.017309px;}
.yd_c00105{bottom:799.369458px;}
.ye_c00105{bottom:800.372166px;}
.yf_c00105{bottom:800.972325px;}
.y6_c00105{bottom:812.741250px;}
.y5_c00105{bottom:813.603113px;}
.y4_c00105{bottom:814.584938px;}
.y3_c00105{bottom:816.252675px;}
.y2_c00105{bottom:817.057013px;}
.y1_c00105{bottom:818.385000px;}
.y7_c00105{bottom:823.225500px;}
.h1c_c00105{height:43.050000px;}
.h18_c00105{height:46.200000px;}
.h16_c00105{height:48.300000px;}
.h1f_c00105{height:49.350000px;}
.h15_c00105{height:51.450000px;}
.h1d_c00105{height:52.500000px;}
.h1a_c00105{height:53.550000px;}
.h1e_c00105{height:54.600000px;}
.h17_c00105{height:55.650000px;}
.h19_c00105{height:58.800000px;}
.h2_c00105{height:65.120341px;}
.h10_c00105{height:67.200000px;}
.hd_c00105{height:68.250000px;}
.h4_c00105{height:68.256688px;}
.h3_c00105{height:69.300000px;}
.h11_c00105{height:69.304193px;}
.hf_c00105{height:70.350000px;}
.h9_c00105{height:71.400000px;}
.h5_c00105{height:71.402892px;}
.h7_c00105{height:72.454383px;}
.h13_c00105{height:73.500000px;}
.h8_c00105{height:73.504447px;}
.h14_c00105{height:73.522965px;}
.h6_c00105{height:74.553019px;}
.he_c00105{height:75.600000px;}
.h12_c00105{height:75.604574px;}
.ha_c00105{height:77.700000px;}
.hb_c00105{height:106.050000px;}
.hc_c00105{height:107.100000px;}
.h1b_c00105{height:116.550000px;}
.h0_c00105{height:1008.450000px;}
.h1_c00105{height:1008.750000px;}
.w0_c00105{width:676.890000px;}
.w1_c00105{width:677.250000px;}
.x0_c00105{left:0.000000px;}
.x80_c00105{left:131.760000px;}
.x67_c00105{left:133.380000px;}
.x82_c00105{left:144.180000px;}
.x63_c00105{left:147.150000px;}
.x68_c00105{left:150.120000px;}
.x1_c00105{left:157.356000px;}
.x38_c00105{left:162.810000px;}
.x10_c00105{left:165.151500px;}
.x44_c00105{left:167.310000px;}
.x27_c00105{left:169.290000px;}
.x9_c00105{left:170.337000px;}
.x6b_c00105{left:171.720000px;}
.x7c_c00105{left:181.710000px;}
.x6c_c00105{left:183.600000px;}
.x69_c00105{left:185.760000px;}
.x11_c00105{left:187.239000px;}
.x2c_c00105{left:189.540000px;}
.xa_c00105{left:194.601000px;}
.x19_c00105{left:196.289833px;}
.x20_c00105{left:199.407000px;}
.x64_c00105{left:200.880000px;}
.x40_c00105{left:202.770000px;}
.x28_c00105{left:203.850000px;}
.x83_c00105{left:208.170000px;}
.x4c_c00105{left:209.250000px;}
.x2_c00105{left:210.475500px;}
.x57_c00105{left:211.680000px;}
.xb_c00105{left:215.925000px;}
.x79_c00105{left:219.780000px;}
.x62_c00105{left:221.392500px;}
.x81_c00105{left:224.370000px;}
.x6a_c00105{left:225.720000px;}
.x6d_c00105{left:230.310000px;}
.x1a_c00105{left:231.661195px;}
.x12_c00105{left:235.291500px;}
.x24_c00105{left:237.216000px;}
.x5a_c00105{left:240.030000px;}
.x39_c00105{left:241.110000px;}
.x3_c00105{left:242.649000px;}
.x45_c00105{left:245.076000px;}
.x41_c00105{left:248.670000px;}
.x1b_c00105{left:255.421626px;}
.xc_c00105{left:256.698000px;}
.x65_c00105{left:257.850000px;}
.x5b_c00105{left:261.900000px;}
.x5f_c00105{left:264.600000px;}
.x7d_c00105{left:267.570000px;}
.x84_c00105{left:272.160000px;}
.x34_c00105{left:276.480000px;}
.x42_c00105{left:278.100000px;}
.x46_c00105{left:279.592500px;}
.x29_c00105{left:281.610000px;}
.x4d_c00105{left:284.310000px;}
.x13_c00105{left:285.492000px;}
.x50_c00105{left:287.202000px;}
.x36_c00105{left:290.790000px;}
.x7e_c00105{left:295.920000px;}
.x7a_c00105{left:297.000000px;}
.x66_c00105{left:301.590000px;}
.x2d_c00105{left:302.940000px;}
.x7b_c00105{left:305.100000px;}
.x21_c00105{left:306.886500px;}
.x4_c00105{left:309.358500px;}
.x5c_c00105{left:311.850000px;}
.x3a_c00105{left:317.520000px;}
.x1c_c00105{left:322.384053px;}
.xd_c00105{left:324.430500px;}
.x2e_c00105{left:326.430000px;}
.x2a_c00105{left:328.590000px;}
.x35_c00105{left:333.180000px;}
.x53_c00105{left:334.637393px;}
.x14_c00105{left:336.009000px;}
.x22_c00105{left:340.590000px;}
.x51_c00105{left:343.126500px;}
.x7f_c00105{left:344.520000px;}
.x1d_c00105{left:346.414497px;}
.x5_c00105{left:348.631500px;}
.x25_c00105{left:352.240500px;}
.x58_c00105{left:353.700000px;}
.x4e_c00105{left:355.050000px;}
.x47_c00105{left:360.067500px;}
.x5d_c00105{left:361.530000px;}
.x43_c00105{left:362.880000px;}
.x15_c00105{left:364.345500px;}
.x6e_c00105{left:365.580000px;}
.x2f_c00105{left:370.980000px;}
.x54_c00105{left:372.782393px;}
.x4f_c00105{left:374.220000px;}
.x60_c00105{left:375.570000px;}
.x26_c00105{left:376.809000px;}
.x6f_c00105{left:378.540000px;}
.x23_c00105{left:379.563000px;}
.x94_c00105{left:381.780000px;}
.x6_c00105{left:383.106000px;}
.x1e_c00105{left:389.076453px;}
.x52_c00105{left:393.580500px;}
.x30_c00105{left:396.090000px;}
.x2b_c00105{left:397.980000px;}
.x3b_c00105{left:403.920000px;}
.x37_c00105{left:407.430000px;}
.x89_c00105{left:410.940000px;}
.x48_c00105{left:412.999500px;}
.x16_c00105{left:417.280500px;}
.x5e_c00105{left:419.310000px;}
.xe_c00105{left:421.206000px;}
.x75_c00105{left:424.710000px;}
.x70_c00105{left:426.600000px;}
.x31_c00105{left:429.030000px;}
.x7_c00105{left:430.380000px;}
.x55_c00105{left:431.403892px;}
.x8a_c00105{left:434.430000px;}
.x3c_c00105{left:436.320000px;}
.x1f_c00105{left:438.758976px;}
.x59_c00105{left:440.100000px;}
.x17_c00105{left:442.125000px;}
.x86_c00105{left:446.850000px;}
.x76_c00105{left:448.200000px;}
.x90_c00105{left:453.330000px;}
.x8_c00105{left:456.570000px;}
.x49_c00105{left:459.363000px;}
.xf_c00105{left:464.074500px;}
.x61_c00105{left:467.100000px;}
.x32_c00105{left:468.450000px;}
.x56_c00105{left:469.988393px;}
.x71_c00105{left:472.500000px;}
.x91_c00105{left:480.870000px;}
.x3d_c00105{left:482.220000px;}
.x18_c00105{left:483.711000px;}
.x4a_c00105{left:487.188000px;}
.x8b_c00105{left:491.130000px;}
.x33_c00105{left:495.720000px;}
.x77_c00105{left:503.550000px;}
.x96_c00105{left:507.330000px;}
.x3e_c00105{left:508.680000px;}
.x8c_c00105{left:511.650000px;}
.x87_c00105{left:513.810000px;}
.x95_c00105{left:514.890000px;}
.x92_c00105{left:517.860000px;}
.x8d_c00105{left:532.170000px;}
.x97_c00105{left:535.410000px;}
.x4b_c00105{left:541.492500px;}
.x72_c00105{left:543.510000px;}
.x88_c00105{left:561.870000px;}
.x3f_c00105{left:565.110000px;}
.x8e_c00105{left:566.190000px;}
.x73_c00105{left:571.320000px;}
.x85_c00105{left:575.640000px;}
.x98_c00105{left:583.470000px;}
.x93_c00105{left:586.710000px;}
.x74_c00105{left:589.410000px;}
.x78_c00105{left:593.730000px;}
.x8f_c00105{left:606.420000px;}
.x99_c00105{left:623.970000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
.fs1a_c00105{font-size:38.266667pt;}
.fs16_c00105{font-size:41.066667pt;}
.fs14_c00105{font-size:42.933333pt;}
.fs1d_c00105{font-size:43.866667pt;}
.fs13_c00105{font-size:45.733333pt;}
.fs1b_c00105{font-size:46.666667pt;}
.fs18_c00105{font-size:47.600000pt;}
.fs1c_c00105{font-size:48.533333pt;}
.fs15_c00105{font-size:49.466667pt;}
.fs17_c00105{font-size:52.266667pt;}
.fs0_c00105{font-size:57.884747pt;}
.fse_c00105{font-size:59.733333pt;}
.fsb_c00105{font-size:60.666667pt;}
.fs2_c00105{font-size:60.672612pt;}
.fs1_c00105{font-size:61.600000pt;}
.fsf_c00105{font-size:61.603727pt;}
.fsd_c00105{font-size:62.533333pt;}
.fs7_c00105{font-size:63.466667pt;}
.fs3_c00105{font-size:63.469237pt;}
.fs5_c00105{font-size:64.403896pt;}
.fs11_c00105{font-size:65.333333pt;}
.fs6_c00105{font-size:65.337286pt;}
.fs12_c00105{font-size:65.353747pt;}
.fs4_c00105{font-size:66.269350pt;}
.fsc_c00105{font-size:67.200000pt;}
.fs10_c00105{font-size:67.204065pt;}
.fs8_c00105{font-size:69.066667pt;}
.fs9_c00105{font-size:94.266667pt;}
.fsa_c00105{font-size:95.200000pt;}
.fs19_c00105{font-size:103.600000pt;}
.y0_c00105{bottom:0.000000pt;}
.y5c_c00105{bottom:136.224000pt;}
.y62_c00105{bottom:136.996000pt;}
.y5b_c00105{bottom:152.160000pt;}
.y61_c00105{bottom:152.400000pt;}
.y5a_c00105{bottom:168.077333pt;}
.y58_c00105{bottom:168.273333pt;}
.y59_c00105{bottom:183.840000pt;}
.y57_c00105{bottom:184.216000pt;}
.y60_c00105{bottom:199.881333pt;}
.y56_c00105{bottom:200.056000pt;}
.y55_c00105{bottom:216.100000pt;}
.y5f_c00105{bottom:216.240000pt;}
.y54_c00105{bottom:231.840000pt;}
.y5e_c00105{bottom:232.080000pt;}
.y5d_c00105{bottom:268.436000pt;}
.y53_c00105{bottom:293.202233pt;}
.y52_c00105{bottom:294.156400pt;}
.y51_c00105{bottom:295.271467pt;}
.y50_c00105{bottom:296.812833pt;}
.y4f_c00105{bottom:297.612400pt;}
.y4e_c00105{bottom:298.315667pt;}
.y4d_c00105{bottom:299.045333pt;}
.y4c_c00105{bottom:312.161333pt;}
.y4b_c00105{bottom:332.498667pt;}
.y4a_c00105{bottom:353.330667pt;}
.y43_c00105{bottom:372.000397pt;}
.y44_c00105{bottom:372.663287pt;}
.y45_c00105{bottom:373.307813pt;}
.y46_c00105{bottom:373.610431pt;}
.y47_c00105{bottom:373.983404pt;}
.y48_c00105{bottom:374.556592pt;}
.y49_c00105{bottom:374.933863pt;}
.y3d_c00105{bottom:392.162667pt;}
.y3e_c00105{bottom:393.038545pt;}
.y3f_c00105{bottom:393.342395pt;}
.y40_c00105{bottom:393.889212pt;}
.y41_c00105{bottom:394.382540pt;}
.y42_c00105{bottom:394.792151pt;}
.y3b_c00105{bottom:413.718667pt;}
.y3c_c00105{bottom:415.073333pt;}
.y33_c00105{bottom:432.481333pt;}
.y34_c00105{bottom:433.104000pt;}
.y35_c00105{bottom:433.380000pt;}
.y36_c00105{bottom:434.024000pt;}
.y37_c00105{bottom:434.448000pt;}
.y38_c00105{bottom:434.818667pt;}
.y39_c00105{bottom:435.041333pt;}
.y3a_c00105{bottom:435.476000pt;}
.y32_c00105{bottom:454.688000pt;}
.y31_c00105{bottom:473.844000pt;}
.y30_c00105{bottom:507.012000pt;}
.y2f_c00105{bottom:538.530667pt;}
.y2e_c00105{bottom:588.462667pt;}
.y2d_c00105{bottom:608.680000pt;}
.y27_c00105{bottom:628.081333pt;}
.y28_c00105{bottom:628.366556pt;}
.y29_c00105{bottom:628.741465pt;}
.y2a_c00105{bottom:629.430051pt;}
.y2b_c00105{bottom:629.866149pt;}
.y2c_c00105{bottom:630.106375pt;}
.y21_c00105{bottom:648.001333pt;}
.y22_c00105{bottom:648.289108pt;}
.y23_c00105{bottom:648.711625pt;}
.y24_c00105{bottom:649.340019pt;}
.y25_c00105{bottom:649.669564pt;}
.y26_c00105{bottom:650.050633pt;}
.y1d_c00105{bottom:669.473565pt;}
.y1f_c00105{bottom:669.473728pt;}
.y1e_c00105{bottom:669.473793pt;}
.y20_c00105{bottom:669.473823pt;}
.y1c_c00105{bottom:669.473909pt;}
.y1a_c00105{bottom:669.474227pt;}
.y1b_c00105{bottom:669.474508pt;}
.y19_c00105{bottom:669.474559pt;}
.y10_c00105{bottom:688.321333pt;}
.y11_c00105{bottom:688.498033pt;}
.y12_c00105{bottom:688.882453pt;}
.y13_c00105{bottom:689.284057pt;}
.y14_c00105{bottom:689.688193pt;}
.y15_c00105{bottom:689.914885pt;}
.y16_c00105{bottom:690.338365pt;}
.y17_c00105{bottom:690.537121pt;}
.y18_c00105{bottom:690.869809pt;}
.y8_c00105{bottom:708.320000pt;}
.y9_c00105{bottom:708.621952pt;}
.ya_c00105{bottom:708.887317pt;}
.yb_c00105{bottom:709.394715pt;}
.yc_c00105{bottom:710.237608pt;}
.yd_c00105{bottom:710.550629pt;}
.ye_c00105{bottom:711.441925pt;}
.yf_c00105{bottom:711.975400pt;}
.y6_c00105{bottom:722.436667pt;}
.y5_c00105{bottom:723.202767pt;}
.y4_c00105{bottom:724.075500pt;}
.y3_c00105{bottom:725.557933pt;}
.y2_c00105{bottom:726.272900pt;}
.y1_c00105{bottom:727.453333pt;}
.y7_c00105{bottom:731.756000pt;}
.h1c_c00105{height:38.266667pt;}
.h18_c00105{height:41.066667pt;}
.h16_c00105{height:42.933333pt;}
.h1f_c00105{height:43.866667pt;}
.h15_c00105{height:45.733333pt;}
.h1d_c00105{height:46.666667pt;}
.h1a_c00105{height:47.600000pt;}
.h1e_c00105{height:48.533333pt;}
.h17_c00105{height:49.466667pt;}
.h19_c00105{height:52.266667pt;}
.h2_c00105{height:57.884747pt;}
.h10_c00105{height:59.733333pt;}
.hd_c00105{height:60.666667pt;}
.h4_c00105{height:60.672612pt;}
.h3_c00105{height:61.600000pt;}
.h11_c00105{height:61.603727pt;}
.hf_c00105{height:62.533333pt;}
.h9_c00105{height:63.466667pt;}
.h5_c00105{height:63.469237pt;}
.h7_c00105{height:64.403896pt;}
.h13_c00105{height:65.333333pt;}
.h8_c00105{height:65.337286pt;}
.h14_c00105{height:65.353747pt;}
.h6_c00105{height:66.269350pt;}
.he_c00105{height:67.200000pt;}
.h12_c00105{height:67.204065pt;}
.ha_c00105{height:69.066667pt;}
.hb_c00105{height:94.266667pt;}
.hc_c00105{height:95.200000pt;}
.h1b_c00105{height:103.600000pt;}
.h0_c00105{height:896.400000pt;}
.h1_c00105{height:896.666667pt;}
.w0_c00105{width:601.680000pt;}
.w1_c00105{width:602.000000pt;}
.x0_c00105{left:0.000000pt;}
.x80_c00105{left:117.120000pt;}
.x67_c00105{left:118.560000pt;}
.x82_c00105{left:128.160000pt;}
.x63_c00105{left:130.800000pt;}
.x68_c00105{left:133.440000pt;}
.x1_c00105{left:139.872000pt;}
.x38_c00105{left:144.720000pt;}
.x10_c00105{left:146.801333pt;}
.x44_c00105{left:148.720000pt;}
.x27_c00105{left:150.480000pt;}
.x9_c00105{left:151.410667pt;}
.x6b_c00105{left:152.640000pt;}
.x7c_c00105{left:161.520000pt;}
.x6c_c00105{left:163.200000pt;}
.x69_c00105{left:165.120000pt;}
.x11_c00105{left:166.434667pt;}
.x2c_c00105{left:168.480000pt;}
.xa_c00105{left:172.978667pt;}
.x19_c00105{left:174.479852pt;}
.x20_c00105{left:177.250667pt;}
.x64_c00105{left:178.560000pt;}
.x40_c00105{left:180.240000pt;}
.x28_c00105{left:181.200000pt;}
.x83_c00105{left:185.040000pt;}
.x4c_c00105{left:186.000000pt;}
.x2_c00105{left:187.089333pt;}
.x57_c00105{left:188.160000pt;}
.xb_c00105{left:191.933333pt;}
.x79_c00105{left:195.360000pt;}
.x62_c00105{left:196.793333pt;}
.x81_c00105{left:199.440000pt;}
.x6a_c00105{left:200.640000pt;}
.x6d_c00105{left:204.720000pt;}
.x1a_c00105{left:205.921063pt;}
.x12_c00105{left:209.148000pt;}
.x24_c00105{left:210.858667pt;}
.x5a_c00105{left:213.360000pt;}
.x39_c00105{left:214.320000pt;}
.x3_c00105{left:215.688000pt;}
.x45_c00105{left:217.845333pt;}
.x41_c00105{left:221.040000pt;}
.x1b_c00105{left:227.041445pt;}
.xc_c00105{left:228.176000pt;}
.x65_c00105{left:229.200000pt;}
.x5b_c00105{left:232.800000pt;}
.x5f_c00105{left:235.200000pt;}
.x7d_c00105{left:237.840000pt;}
.x84_c00105{left:241.920000pt;}
.x34_c00105{left:245.760000pt;}
.x42_c00105{left:247.200000pt;}
.x46_c00105{left:248.526667pt;}
.x29_c00105{left:250.320000pt;}
.x4d_c00105{left:252.720000pt;}
.x13_c00105{left:253.770667pt;}
.x50_c00105{left:255.290667pt;}
.x36_c00105{left:258.480000pt;}
.x7e_c00105{left:263.040000pt;}
.x7a_c00105{left:264.000000pt;}
.x66_c00105{left:268.080000pt;}
.x2d_c00105{left:269.280000pt;}
.x7b_c00105{left:271.200000pt;}
.x21_c00105{left:272.788000pt;}
.x4_c00105{left:274.985333pt;}
.x5c_c00105{left:277.200000pt;}
.x3a_c00105{left:282.240000pt;}
.x1c_c00105{left:286.563603pt;}
.xd_c00105{left:288.382667pt;}
.x2e_c00105{left:290.160000pt;}
.x2a_c00105{left:292.080000pt;}
.x35_c00105{left:296.160000pt;}
.x53_c00105{left:297.455460pt;}
.x14_c00105{left:298.674667pt;}
.x22_c00105{left:302.746667pt;}
.x51_c00105{left:305.001333pt;}
.x7f_c00105{left:306.240000pt;}
.x1d_c00105{left:307.923997pt;}
.x5_c00105{left:309.894667pt;}
.x25_c00105{left:313.102667pt;}
.x58_c00105{left:314.400000pt;}
.x4e_c00105{left:315.600000pt;}
.x47_c00105{left:320.060000pt;}
.x5d_c00105{left:321.360000pt;}
.x43_c00105{left:322.560000pt;}
.x15_c00105{left:323.862667pt;}
.x6e_c00105{left:324.960000pt;}
.x2f_c00105{left:329.760000pt;}
.x54_c00105{left:331.362127pt;}
.x4f_c00105{left:332.640000pt;}
.x60_c00105{left:333.840000pt;}
.x26_c00105{left:334.941333pt;}
.x6f_c00105{left:336.480000pt;}
.x23_c00105{left:337.389333pt;}
.x94_c00105{left:339.360000pt;}
.x6_c00105{left:340.538667pt;}
.x1e_c00105{left:345.845736pt;}
.x52_c00105{left:349.849333pt;}
.x30_c00105{left:352.080000pt;}
.x2b_c00105{left:353.760000pt;}
.x3b_c00105{left:359.040000pt;}
.x37_c00105{left:362.160000pt;}
.x89_c00105{left:365.280000pt;}
.x48_c00105{left:367.110667pt;}
.x16_c00105{left:370.916000pt;}
.x5e_c00105{left:372.720000pt;}
.xe_c00105{left:374.405333pt;}
.x75_c00105{left:377.520000pt;}
.x70_c00105{left:379.200000pt;}
.x31_c00105{left:381.360000pt;}
.x7_c00105{left:382.560000pt;}
.x55_c00105{left:383.470127pt;}
.x8a_c00105{left:386.160000pt;}
.x3c_c00105{left:387.840000pt;}
.x1f_c00105{left:390.007979pt;}
.x59_c00105{left:391.200000pt;}
.x17_c00105{left:393.000000pt;}
.x86_c00105{left:397.200000pt;}
.x76_c00105{left:398.400000pt;}
.x90_c00105{left:402.960000pt;}
.x8_c00105{left:405.840000pt;}
.x49_c00105{left:408.322667pt;}
.xf_c00105{left:412.510667pt;}
.x61_c00105{left:415.200000pt;}
.x32_c00105{left:416.400000pt;}
.x56_c00105{left:417.767460pt;}
.x71_c00105{left:420.000000pt;}
.x91_c00105{left:427.440000pt;}
.x3d_c00105{left:428.640000pt;}
.x18_c00105{left:429.965333pt;}
.x4a_c00105{left:433.056000pt;}
.x8b_c00105{left:436.560000pt;}
.x33_c00105{left:440.640000pt;}
.x77_c00105{left:447.600000pt;}
.x96_c00105{left:450.960000pt;}
.x3e_c00105{left:452.160000pt;}
.x8c_c00105{left:454.800000pt;}
.x87_c00105{left:456.720000pt;}
.x95_c00105{left:457.680000pt;}
.x92_c00105{left:460.320000pt;}
.x8d_c00105{left:473.040000pt;}
.x97_c00105{left:475.920000pt;}
.x4b_c00105{left:481.326667pt;}
.x72_c00105{left:483.120000pt;}
.x88_c00105{left:499.440000pt;}
.x3f_c00105{left:502.320000pt;}
.x8e_c00105{left:503.280000pt;}
.x73_c00105{left:507.840000pt;}
.x85_c00105{left:511.680000pt;}
.x98_c00105{left:518.640000pt;}
.x93_c00105{left:521.520000pt;}
.x74_c00105{left:523.920000pt;}
.x78_c00105{left:527.760000pt;}
.x8f_c00105{left:539.040000pt;}
.x99_c00105{left:554.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma9_c00106{transform:matrix(0.014254,0.000428,-0.007497,0.249888,0,0);-ms-transform:matrix(0.014254,0.000428,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.014254,0.000428,-0.007497,0.249888,0,0);}
.m5_c00106{transform:matrix(0.077707,0.002254,-0.007247,0.249895,0,0);-ms-transform:matrix(0.077707,0.002254,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.077707,0.002254,-0.007247,0.249895,0,0);}
.mea_c00106{transform:matrix(0.095641,0.003064,-0.008004,0.249872,0,0);-ms-transform:matrix(0.095641,0.003064,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.095641,0.003064,-0.008004,0.249872,0,0);}
.m38_c00106{transform:matrix(0.096706,0.002901,-0.007497,0.249888,0,0);-ms-transform:matrix(0.096706,0.002901,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.096706,0.002901,-0.007497,0.249888,0,0);}
.me0_c00106{transform:matrix(0.108509,0.003476,-0.008004,0.249872,0,0);-ms-transform:matrix(0.108509,0.003476,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.108509,0.003476,-0.008004,0.249872,0,0);}
.mb_c00106{transform:matrix(0.110289,0.003198,-0.007247,0.249895,0,0);-ms-transform:matrix(0.110289,0.003198,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.110289,0.003198,-0.007247,0.249895,0,0);}
.ma2_c00106{transform:matrix(0.121340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121340,0.000000,0.000000,0.250000,0,0);}
.m107_c00106{transform:matrix(0.138258,0.003595,-0.006498,0.249916,0,0);-ms-transform:matrix(0.138258,0.003595,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.138258,0.003595,-0.006498,0.249916,0,0);}
.mf9_c00106{transform:matrix(0.146365,0.004835,-0.008254,0.249864,0,0);-ms-transform:matrix(0.146365,0.004835,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.146365,0.004835,-0.008254,0.249864,0,0);}
.m9f_c00106{transform:matrix(0.146600,0.004545,-0.007746,0.249880,0,0);-ms-transform:matrix(0.146600,0.004545,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.146600,0.004545,-0.007746,0.249880,0,0);}
.m4d_c00106{transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);}
.m10d_c00106{transform:matrix(0.147530,0.003836,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147530,0.003836,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147530,0.003836,-0.006498,0.249916,0,0);}
.mbb_c00106{transform:matrix(0.148703,0.004461,-0.007497,0.249888,0,0);-ms-transform:matrix(0.148703,0.004461,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.148703,0.004461,-0.007497,0.249888,0,0);}
.mbe_c00106{transform:matrix(0.155030,0.004496,-0.007247,0.249895,0,0);-ms-transform:matrix(0.155030,0.004496,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.155030,0.004496,-0.007247,0.249895,0,0);}
.mb2_c00106{transform:matrix(0.156090,0.004683,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156090,0.004683,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156090,0.004683,-0.007497,0.249888,0,0);}
.m2d_c00106{transform:matrix(0.157028,0.003612,-0.005748,0.249934,0,0);-ms-transform:matrix(0.157028,0.003612,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.157028,0.003612,-0.005748,0.249934,0,0);}
.m52_c00106{transform:matrix(0.157075,0.003770,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157075,0.003770,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157075,0.003770,-0.005998,0.249928,0,0);}
.mdd_c00106{transform:matrix(0.157714,0.005052,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157714,0.005052,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157714,0.005052,-0.008004,0.249872,0,0);}
.m1d_c00106{transform:matrix(0.158197,0.002689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158197,0.002689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158197,0.002689,-0.004249,0.249964,0,0);}
.mf1_c00106{transform:matrix(0.159363,0.005105,-0.008004,0.249872,0,0);-ms-transform:matrix(0.159363,0.005105,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.159363,0.005105,-0.008004,0.249872,0,0);}
.m7f_c00106{transform:matrix(0.159454,0.003827,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159454,0.003827,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159454,0.003827,-0.005998,0.249928,0,0);}
.m11_c00106{transform:matrix(0.160282,0.002725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160282,0.002725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160282,0.002725,-0.004249,0.249964,0,0);}
.m4e_c00106{transform:matrix(0.160299,0.003847,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160299,0.003847,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160299,0.003847,-0.005998,0.249928,0,0);}
.m47_c00106{transform:matrix(0.160369,0.003849,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160369,0.003849,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160369,0.003849,-0.005998,0.249928,0,0);}
.m10c_c00106{transform:matrix(0.161395,0.004196,-0.006498,0.249916,0,0);-ms-transform:matrix(0.161395,0.004196,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.161395,0.004196,-0.006498,0.249916,0,0);}
.m2b_c00106{transform:matrix(0.161467,0.003714,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161467,0.003714,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161467,0.003714,-0.005748,0.249934,0,0);}
.m9e_c00106{transform:matrix(0.161747,0.005014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.161747,0.005014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.161747,0.005014,-0.007746,0.249880,0,0);}
.mad_c00106{transform:matrix(0.162377,0.004871,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162377,0.004871,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162377,0.004871,-0.007497,0.249888,0,0);}
.mb9_c00106{transform:matrix(0.162612,0.004878,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162612,0.004878,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162612,0.004878,-0.007497,0.249888,0,0);}
.m98_c00106{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);}
.mb7_c00106{transform:matrix(0.163177,0.004895,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163177,0.004895,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163177,0.004895,-0.007497,0.249888,0,0);}
.mb8_c00106{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);}
.m95_c00106{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);}
.m0_c00106{transform:matrix(0.165320,0.004794,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165320,0.004794,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165320,0.004794,-0.007247,0.249895,0,0);}
.me2_c00106{transform:matrix(0.166420,0.005331,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166420,0.005331,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166420,0.005331,-0.008004,0.249872,0,0);}
.mf3_c00106{transform:matrix(0.166450,0.005332,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166450,0.005332,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166450,0.005332,-0.008004,0.249872,0,0);}
.m5c_c00106{transform:matrix(0.166552,0.003997,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166552,0.003997,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166552,0.003997,-0.005998,0.249928,0,0);}
.m82_c00106{transform:matrix(0.166557,0.003997,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166557,0.003997,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166557,0.003997,-0.005998,0.249928,0,0);}
.me5_c00106{transform:matrix(0.166889,0.005346,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166889,0.005346,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166889,0.005346,-0.008004,0.249872,0,0);}
.m10f_c00106{transform:matrix(0.167134,0.004345,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167134,0.004345,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167134,0.004345,-0.006498,0.249916,0,0);}
.m57_c00106{transform:matrix(0.167257,0.004014,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167257,0.004014,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167257,0.004014,-0.005998,0.249928,0,0);}
.m74_c00106{transform:matrix(0.167677,0.004024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167677,0.004024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167677,0.004024,-0.005998,0.249928,0,0);}
.mf6_c00106{transform:matrix(0.167844,0.005376,-0.008004,0.249872,0,0);-ms-transform:matrix(0.167844,0.005376,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.167844,0.005376,-0.008004,0.249872,0,0);}
.m88_c00106{transform:matrix(0.168471,0.004043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168471,0.004043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168471,0.004043,-0.005998,0.249928,0,0);}
.m40_c00106{transform:matrix(0.168617,0.001686,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168617,0.001686,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168617,0.001686,-0.002500,0.249988,0,0);}
.m78_c00106{transform:matrix(0.168651,0.004048,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168651,0.004048,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168651,0.004048,-0.005998,0.249928,0,0);}
.m5a_c00106{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);}
.m4f_c00106{transform:matrix(0.170066,0.004082,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170066,0.004082,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170066,0.004082,-0.005998,0.249928,0,0);}
.m50_c00106{transform:matrix(0.170221,0.004085,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170221,0.004085,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170221,0.004085,-0.005998,0.249928,0,0);}
.mb5_c00106{transform:matrix(0.170783,0.005123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170783,0.005123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170783,0.005123,-0.007497,0.249888,0,0);}
.m83_c00106{transform:matrix(0.171476,0.004115,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171476,0.004115,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171476,0.004115,-0.005998,0.249928,0,0);}
.m7e_c00106{transform:matrix(0.171975,0.004127,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171975,0.004127,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171975,0.004127,-0.005998,0.249928,0,0);}
.md5_c00106{transform:matrix(0.173266,0.005550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173266,0.005550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173266,0.005550,-0.008004,0.249872,0,0);}
.ma7_c00106{transform:matrix(0.174032,0.005221,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174032,0.005221,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174032,0.005221,-0.007497,0.249888,0,0);}
.m54_c00106{transform:matrix(0.174470,0.004187,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174470,0.004187,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174470,0.004187,-0.005998,0.249928,0,0);}
.m48_c00106{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);}
.me7_c00106{transform:matrix(0.174695,0.005596,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174695,0.005596,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174695,0.005596,-0.008004,0.249872,0,0);}
.mf0_c00106{transform:matrix(0.175890,0.005634,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175890,0.005634,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175890,0.005634,-0.008004,0.249872,0,0);}
.m65_c00106{transform:matrix(0.175929,0.004222,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175929,0.004222,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175929,0.004222,-0.005998,0.249928,0,0);}
.mac_c00106{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);}
.m63_c00106{transform:matrix(0.176429,0.004234,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176429,0.004234,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176429,0.004234,-0.005998,0.249928,0,0);}
.m59_c00106{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);}
.m10b_c00106{transform:matrix(0.177365,0.004611,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177365,0.004611,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177365,0.004611,-0.006498,0.249916,0,0);}
.maf_c00106{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);}
.mdb_c00106{transform:matrix(0.177664,0.005691,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177664,0.005691,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177664,0.005691,-0.008004,0.249872,0,0);}
.me3_c00106{transform:matrix(0.177829,0.005696,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177829,0.005696,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177829,0.005696,-0.008004,0.249872,0,0);}
.m51_c00106{transform:matrix(0.177894,0.004269,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177894,0.004269,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177894,0.004269,-0.005998,0.249928,0,0);}
.m67_c00106{transform:matrix(0.177924,0.004270,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177924,0.004270,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177924,0.004270,-0.005998,0.249928,0,0);}
.m35_c00106{transform:matrix(0.178000,0.005340,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178000,0.005340,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178000,0.005340,-0.007497,0.249888,0,0);}
.m20_c00106{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);}
.m24_c00106{transform:matrix(0.178664,0.003037,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178664,0.003037,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178664,0.003037,-0.004249,0.249964,0,0);}
.m7b_c00106{transform:matrix(0.178844,0.004292,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178844,0.004292,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178844,0.004292,-0.005998,0.249928,0,0);}
.m4c_c00106{transform:matrix(0.179843,0.004316,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179843,0.004316,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179843,0.004316,-0.005998,0.249928,0,0);}
.mbc_c00106{transform:matrix(0.179924,0.005398,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179924,0.005398,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179924,0.005398,-0.007497,0.249888,0,0);}
.mbd_c00106{transform:matrix(0.180354,0.005230,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180354,0.005230,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180354,0.005230,-0.007247,0.249895,0,0);}
.m5d_c00106{transform:matrix(0.180813,0.004340,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180813,0.004340,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180813,0.004340,-0.005998,0.249928,0,0);}
.md4_c00106{transform:matrix(0.180842,0.005793,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180842,0.005793,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180842,0.005793,-0.008004,0.249872,0,0);}
.m6c_c00106{transform:matrix(0.181108,0.004347,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181108,0.004347,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181108,0.004347,-0.005998,0.249928,0,0);}
.mdc_c00106{transform:matrix(0.181817,0.005824,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181817,0.005824,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181817,0.005824,-0.008004,0.249872,0,0);}
.md7_c00106{transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);}
.m80_c00106{transform:matrix(0.182208,0.004373,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182208,0.004373,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182208,0.004373,-0.005998,0.249928,0,0);}
.m27_c00106{transform:matrix(0.183229,0.003115,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183229,0.003115,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183229,0.003115,-0.004249,0.249964,0,0);}
.ma5_c00106{transform:matrix(0.184107,0.005523,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184107,0.005523,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184107,0.005523,-0.007497,0.249888,0,0);}
.me8_c00106{transform:matrix(0.184415,0.005907,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184415,0.005907,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184415,0.005907,-0.008004,0.249872,0,0);}
.m69_c00106{transform:matrix(0.184922,0.004438,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184922,0.004438,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184922,0.004438,-0.005998,0.249928,0,0);}
.m97_c00106{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);}
.mc8_c00106{transform:matrix(0.186035,0.005959,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186035,0.005959,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186035,0.005959,-0.008004,0.249872,0,0);}
.me9_c00106{transform:matrix(0.186614,0.005978,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186614,0.005978,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186614,0.005978,-0.008004,0.249872,0,0);}
.m34_c00106{transform:matrix(0.186651,0.005600,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186651,0.005600,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186651,0.005600,-0.007497,0.249888,0,0);}
.m3a_c00106{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);}
.m77_c00106{transform:matrix(0.186726,0.004481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186726,0.004481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186726,0.004481,-0.005998,0.249928,0,0);}
.mdf_c00106{transform:matrix(0.186799,0.005984,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186799,0.005984,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186799,0.005984,-0.008004,0.249872,0,0);}
.m108_c00106{transform:matrix(0.186802,0.004857,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186802,0.004857,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186802,0.004857,-0.006498,0.249916,0,0);}
.m49_c00106{transform:matrix(0.186861,0.004485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186861,0.004485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186861,0.004485,-0.005998,0.249928,0,0);}
.me4_c00106{transform:matrix(0.186864,0.005986,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186864,0.005986,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186864,0.005986,-0.008004,0.249872,0,0);}
.meb_c00106{transform:matrix(0.186949,0.005988,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186949,0.005988,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186949,0.005988,-0.008004,0.249872,0,0);}
.m10e_c00106{transform:matrix(0.186952,0.004861,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186952,0.004861,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186952,0.004861,-0.006498,0.249916,0,0);}
.m4b_c00106{transform:matrix(0.187681,0.004504,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187681,0.004504,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187681,0.004504,-0.005998,0.249928,0,0);}
.ma6_c00106{transform:matrix(0.188270,0.005648,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188270,0.005648,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188270,0.005648,-0.007497,0.249888,0,0);}
.md6_c00106{transform:matrix(0.188723,0.006045,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188723,0.006045,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188723,0.006045,-0.008004,0.249872,0,0);}
.m1a_c00106{transform:matrix(0.188923,0.003212,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188923,0.003212,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188923,0.003212,-0.004249,0.249964,0,0);}
.m4a_c00106{transform:matrix(0.189545,0.004549,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189545,0.004549,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189545,0.004549,-0.005998,0.249928,0,0);}
.mb6_c00106{transform:matrix(0.189915,0.005697,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189915,0.005697,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189915,0.005697,-0.007497,0.249888,0,0);}
.mb3_c00106{transform:matrix(0.189920,0.005698,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189920,0.005698,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189920,0.005698,-0.007497,0.249888,0,0);}
.m46_c00106{transform:matrix(0.189955,0.004559,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189955,0.004559,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189955,0.004559,-0.005998,0.249928,0,0);}
.mcc_c00106{transform:matrix(0.190058,0.006088,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190058,0.006088,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190058,0.006088,-0.008004,0.249872,0,0);}
.m1f_c00106{transform:matrix(0.190193,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190193,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190193,0.003233,-0.004249,0.249964,0,0);}
.m1e_c00106{transform:matrix(0.190522,0.003239,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190522,0.003239,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190522,0.003239,-0.004249,0.249964,0,0);}
.m6a_c00106{transform:matrix(0.191400,0.004594,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191400,0.004594,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191400,0.004594,-0.005998,0.249928,0,0);}
.m87_c00106{transform:matrix(0.191465,0.004595,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191465,0.004595,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191465,0.004595,-0.005998,0.249928,0,0);}
.mc2_c00106{transform:matrix(0.191534,0.005554,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191534,0.005554,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191534,0.005554,-0.007247,0.249895,0,0);}
.mca_c00106{transform:matrix(0.191607,0.006138,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191607,0.006138,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191607,0.006138,-0.008004,0.249872,0,0);}
.mfe_c00106{transform:matrix(0.191660,0.005175,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191660,0.005175,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191660,0.005175,-0.006748,0.249909,0,0);}
.m7d_c00106{transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);}
.m39_c00106{transform:matrix(0.192134,0.005764,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192134,0.005764,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192134,0.005764,-0.007497,0.249888,0,0);}
.md2_c00106{transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);}
.m85_c00106{transform:matrix(0.192420,0.004618,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192420,0.004618,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192420,0.004618,-0.005998,0.249928,0,0);}
.mf2_c00106{transform:matrix(0.193141,0.006187,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193141,0.006187,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193141,0.006187,-0.008004,0.249872,0,0);}
.ma4_c00106{transform:matrix(0.193833,0.005815,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193833,0.005815,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193833,0.005815,-0.007497,0.249888,0,0);}
.ma0_c00106{transform:matrix(0.194432,0.006027,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194432,0.006027,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194432,0.006027,-0.007746,0.249880,0,0);}
.m104_c00106{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);}
.m44_c00106{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);}
.m16_c00106{transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195212,0.003319,-0.004249,0.249964,0,0);}
.m55_c00106{transform:matrix(0.195494,0.004692,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195494,0.004692,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195494,0.004692,-0.005998,0.249928,0,0);}
.m84_c00106{transform:matrix(0.195554,0.004693,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195554,0.004693,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195554,0.004693,-0.005998,0.249928,0,0);}
.me6_c00106{transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);}
.m94_c00106{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);}
.mda_c00106{transform:matrix(0.196434,0.006292,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196434,0.006292,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196434,0.006292,-0.008004,0.249872,0,0);}
.m7a_c00106{transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);}
.ma3_c00106{transform:matrix(0.196716,0.005901,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196716,0.005901,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196716,0.005901,-0.007497,0.249888,0,0);}
.m9c_c00106{transform:matrix(0.197510,0.006123,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197510,0.006123,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197510,0.006123,-0.007746,0.249880,0,0);}
.m37_c00106{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);}
.m92_c00106{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);}
.m1b_c00106{transform:matrix(0.198051,0.003367,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198051,0.003367,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198051,0.003367,-0.004249,0.249964,0,0);}
.m68_c00106{transform:matrix(0.198878,0.004773,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198878,0.004773,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198878,0.004773,-0.005998,0.249928,0,0);}
.m23_c00106{transform:matrix(0.198981,0.003383,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198981,0.003383,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198981,0.003383,-0.004249,0.249964,0,0);}
.m21_c00106{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);}
.mfc_c00106{transform:matrix(0.200167,0.005405,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200167,0.005405,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200167,0.005405,-0.006748,0.249909,0,0);}
.m58_c00106{transform:matrix(0.200667,0.004816,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200667,0.004816,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200667,0.004816,-0.005998,0.249928,0,0);}
.med_c00106{transform:matrix(0.201227,0.006446,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201227,0.006446,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201227,0.006446,-0.008004,0.249872,0,0);}
.m3f_c00106{transform:matrix(0.201300,0.002013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201300,0.002013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201300,0.002013,-0.002500,0.249988,0,0);}
.m56_c00106{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);}
.m25_c00106{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);}
.mcd_c00106{transform:matrix(0.202906,0.006499,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202906,0.006499,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202906,0.006499,-0.008004,0.249872,0,0);}
.m8a_c00106{transform:matrix(0.202997,0.004872,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202997,0.004872,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202997,0.004872,-0.005998,0.249928,0,0);}
.m99_c00106{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);}
.mbf_c00106{transform:matrix(0.203559,0.005903,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203559,0.005903,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203559,0.005903,-0.007247,0.249895,0,0);}
.m53_c00106{transform:matrix(0.203661,0.004888,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203661,0.004888,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203661,0.004888,-0.005998,0.249928,0,0);}
.m8d_c00106{transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);}
.mde_c00106{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);}
.m61_c00106{transform:matrix(0.205776,0.004939,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205776,0.004939,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205776,0.004939,-0.005998,0.249928,0,0);}
.m90_c00106{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);}
.m7c_c00106{transform:matrix(0.206850,0.004964,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206850,0.004964,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206850,0.004964,-0.005998,0.249928,0,0);}
.m79_c00106{transform:matrix(0.207015,0.004968,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207015,0.004968,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207015,0.004968,-0.005998,0.249928,0,0);}
.m6b_c00106{transform:matrix(0.208065,0.004994,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208065,0.004994,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208065,0.004994,-0.005998,0.249928,0,0);}
.mef_c00106{transform:matrix(0.208543,0.006680,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208543,0.006680,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208543,0.006680,-0.008004,0.249872,0,0);}
.m5f_c00106{transform:matrix(0.208595,0.005006,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208595,0.005006,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208595,0.005006,-0.005998,0.249928,0,0);}
.md9_c00106{transform:matrix(0.209448,0.006709,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209448,0.006709,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209448,0.006709,-0.008004,0.249872,0,0);}
.mee_c00106{transform:matrix(0.210717,0.006750,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210717,0.006750,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210717,0.006750,-0.008004,0.249872,0,0);}
.m3b_c00106{transform:matrix(0.210730,0.006322,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210730,0.006322,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210730,0.006322,-0.007497,0.249888,0,0);}
.mc1_c00106{transform:matrix(0.210846,0.006115,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210846,0.006115,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210846,0.006115,-0.007247,0.249895,0,0);}
.mcf_c00106{transform:matrix(0.211906,0.006788,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211906,0.006788,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211906,0.006788,-0.008004,0.249872,0,0);}
.m8c_c00106{transform:matrix(0.212514,0.005100,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212514,0.005100,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212514,0.005100,-0.005998,0.249928,0,0);}
.mff_c00106{transform:matrix(0.212932,0.005749,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212932,0.005749,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212932,0.005749,-0.006748,0.249909,0,0);}
.m62_c00106{transform:matrix(0.213244,0.005118,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213244,0.005118,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213244,0.005118,-0.005998,0.249928,0,0);}
.m93_c00106{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);}
.m76_c00106{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);}
.mae_c00106{transform:matrix(0.213819,0.006415,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213819,0.006415,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213819,0.006415,-0.007497,0.249888,0,0);}
.mba_c00106{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);}
.m96_c00106{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);}
.m6e_c00106{transform:matrix(0.214818,0.005156,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214818,0.005156,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214818,0.005156,-0.005998,0.249928,0,0);}
.mb1_c00106{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);}
.mc0_c00106{transform:matrix(0.215544,0.006251,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215544,0.006251,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215544,0.006251,-0.007247,0.249895,0,0);}
.m71_c00106{transform:matrix(0.215888,0.005181,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215888,0.005181,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215888,0.005181,-0.005998,0.249928,0,0);}
.mb4_c00106{transform:matrix(0.216153,0.006485,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216153,0.006485,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216153,0.006485,-0.007497,0.249888,0,0);}
.m105_c00106{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);}
.m17_c00106{transform:matrix(0.216319,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216319,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216319,0.003677,-0.004249,0.249964,0,0);}
.m36_c00106{transform:matrix(0.217207,0.006516,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217207,0.006516,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217207,0.006516,-0.007497,0.249888,0,0);}
.mce_c00106{transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);}
.mc3_c00106{transform:matrix(0.217484,0.006307,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217484,0.006307,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217484,0.006307,-0.007247,0.249895,0,0);}
.m70_c00106{transform:matrix(0.217747,0.005226,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217747,0.005226,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217747,0.005226,-0.005998,0.249928,0,0);}
.m22_c00106{transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);}
.m102_c00106{transform:matrix(0.218970,0.005912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218970,0.005912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218970,0.005912,-0.006748,0.249909,0,0);}
.m14_c00106{transform:matrix(0.221273,0.003762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221273,0.003762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221273,0.003762,-0.004249,0.249964,0,0);}
.m110_c00106{transform:matrix(0.221290,0.005754,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221290,0.005754,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221290,0.005754,-0.006498,0.249916,0,0);}
.m42_c00106{transform:matrix(0.221324,0.002213,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221324,0.002213,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221324,0.002213,-0.002500,0.249988,0,0);}
.m73_c00106{transform:matrix(0.221476,0.005315,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221476,0.005315,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221476,0.005315,-0.005998,0.249928,0,0);}
.m2a_c00106{transform:matrix(0.221726,0.005100,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221726,0.005100,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221726,0.005100,-0.005748,0.249934,0,0);}
.md_c00106{transform:matrix(0.222896,0.006464,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222896,0.006464,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222896,0.006464,-0.007247,0.249895,0,0);}
.m86_c00106{transform:matrix(0.223071,0.005354,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223071,0.005354,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223071,0.005354,-0.005998,0.249928,0,0);}
.m72_c00106{transform:matrix(0.223276,0.005359,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223276,0.005359,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223276,0.005359,-0.005998,0.249928,0,0);}
.m1c_c00106{transform:matrix(0.224278,0.003813,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224278,0.003813,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224278,0.003813,-0.004249,0.249964,0,0);}
.m5b_c00106{transform:matrix(0.225490,0.005412,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225490,0.005412,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225490,0.005412,-0.005998,0.249928,0,0);}
.m6f_c00106{transform:matrix(0.225695,0.005417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225695,0.005417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225695,0.005417,-0.005998,0.249928,0,0);}
.m106_c00106{transform:matrix(0.226683,0.005894,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226683,0.005894,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226683,0.005894,-0.006498,0.249916,0,0);}
.m101_c00106{transform:matrix(0.229196,0.006188,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229196,0.006188,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229196,0.006188,-0.006748,0.249909,0,0);}
.m111_c00106{transform:matrix(0.229562,0.005969,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229562,0.005969,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229562,0.005969,-0.006498,0.249916,0,0);}
.m9d_c00106{transform:matrix(0.230849,0.007156,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230849,0.007156,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230849,0.007156,-0.007746,0.249880,0,0);}
.m8f_c00106{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);}
.m8b_c00106{transform:matrix(0.232973,0.005591,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232973,0.005591,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232973,0.005591,-0.005998,0.249928,0,0);}
.m66_c00106{transform:matrix(0.233358,0.005601,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233358,0.005601,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233358,0.005601,-0.005998,0.249928,0,0);}
.m10_c00106{transform:matrix(0.233506,0.003970,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233506,0.003970,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233506,0.003970,-0.004249,0.249964,0,0);}
.m103_c00106{transform:matrix(0.233890,0.006315,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233890,0.006315,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233890,0.006315,-0.006748,0.249909,0,0);}
.me_c00106{transform:matrix(0.234796,0.006809,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234796,0.006809,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234796,0.006809,-0.007247,0.249895,0,0);}
.m5e_c00106{transform:matrix(0.235407,0.005650,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235407,0.005650,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235407,0.005650,-0.005998,0.249928,0,0);}
.m89_c00106{transform:matrix(0.240386,0.005769,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240386,0.005769,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240386,0.005769,-0.005998,0.249928,0,0);}
.m43_c00106{transform:matrix(0.241186,0.005788,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241186,0.005788,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241186,0.005788,-0.005998,0.249928,0,0);}
.m33_c00106{transform:matrix(0.241246,0.007237,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241246,0.007237,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241246,0.007237,-0.007497,0.249888,0,0);}
.m45_c00106{transform:matrix(0.241495,0.005796,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241495,0.005796,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241495,0.005796,-0.005998,0.249928,0,0);}
.m10a_c00106{transform:matrix(0.241623,0.006282,-0.006498,0.249916,0,0);-ms-transform:matrix(0.241623,0.006282,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.241623,0.006282,-0.006498,0.249916,0,0);}
.mf8_c00106{transform:matrix(0.241961,0.007750,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241961,0.007750,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241961,0.007750,-0.008004,0.249872,0,0);}
.mcb_c00106{transform:matrix(0.242441,0.007766,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242441,0.007766,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242441,0.007766,-0.008004,0.249872,0,0);}
.m81_c00106{transform:matrix(0.242985,0.005832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242985,0.005832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242985,0.005832,-0.005998,0.249928,0,0);}
.m3d_c00106{transform:matrix(0.244140,0.007324,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244140,0.007324,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244140,0.007324,-0.007497,0.249888,0,0);}
.m15_c00106{transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);}
.m60_c00106{transform:matrix(0.248204,0.005957,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248204,0.005957,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248204,0.005957,-0.005998,0.249928,0,0);}
.m75_c00106{transform:matrix(0.248279,0.005959,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248279,0.005959,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248279,0.005959,-0.005998,0.249928,0,0);}
.md3_c00106{transform:matrix(0.249032,0.007977,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249032,0.007977,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249032,0.007977,-0.008004,0.249872,0,0);}
.m100_c00106{transform:matrix(0.249809,0.006745,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249809,0.006745,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249809,0.006745,-0.006748,0.249909,0,0);}
.m64_c00106{transform:matrix(0.251038,0.006025,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251038,0.006025,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251038,0.006025,-0.005998,0.249928,0,0);}
.m12_c00106{transform:matrix(0.252119,0.004286,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252119,0.004286,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252119,0.004286,-0.004249,0.249964,0,0);}
.m32_c00106{transform:matrix(0.253186,0.007596,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253186,0.007596,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253186,0.007596,-0.007497,0.249888,0,0);}
.mf5_c00106{transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);}
.m41_c00106{transform:matrix(0.256782,0.002568,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256782,0.002568,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256782,0.002568,-0.002500,0.249988,0,0);}
.m9b_c00106{transform:matrix(0.257376,0.007979,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257376,0.007979,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257376,0.007979,-0.007746,0.249880,0,0);}
.mf_c00106{transform:matrix(0.260625,0.007558,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260625,0.007558,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260625,0.007558,-0.007247,0.249895,0,0);}
.mf7_c00106{transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);}
.mb0_c00106{transform:matrix(0.263087,0.007893,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263087,0.007893,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263087,0.007893,-0.007497,0.249888,0,0);}
.m6d_c00106{transform:matrix(0.263959,0.006335,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263959,0.006335,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263959,0.006335,-0.005998,0.249928,0,0);}
.m8e_c00106{transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.275150,0.004678,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275150,0.004678,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275150,0.004678,-0.004249,0.249964,0,0);}
.m19_c00106{transform:matrix(0.276315,0.004697,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276315,0.004697,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276315,0.004697,-0.004249,0.249964,0,0);}
.mfd_c00106{transform:matrix(0.286626,0.007739,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286626,0.007739,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286626,0.007739,-0.006748,0.249909,0,0);}
.m9a_c00106{transform:matrix(0.286652,0.008886,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286652,0.008886,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286652,0.008886,-0.007746,0.249880,0,0);}
.m7_c00106{transform:matrix(0.287699,0.008343,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287699,0.008343,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287699,0.008343,-0.007247,0.249895,0,0);}
.m91_c00106{transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287835,0.000000,0.000000,0.250000,0,0);}
.md0_c00106{transform:matrix(0.290811,0.009315,-0.008004,0.249872,0,0);-ms-transform:matrix(0.290811,0.009315,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.290811,0.009315,-0.008004,0.249872,0,0);}
.m28_c00106{transform:matrix(0.291228,0.004951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291228,0.004951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291228,0.004951,-0.004249,0.249964,0,0);}
.ma_c00106{transform:matrix(0.292622,0.008486,-0.007247,0.249895,0,0);-ms-transform:matrix(0.292622,0.008486,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.292622,0.008486,-0.007247,0.249895,0,0);}
.m26_c00106{transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);}
.ma1_c00106{transform:matrix(0.302520,0.009378,-0.007746,0.249880,0,0);-ms-transform:matrix(0.302520,0.009378,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.302520,0.009378,-0.007746,0.249880,0,0);}
.md8_c00106{transform:matrix(0.303784,0.009731,-0.008004,0.249872,0,0);-ms-transform:matrix(0.303784,0.009731,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.303784,0.009731,-0.008004,0.249872,0,0);}
.mec_c00106{transform:matrix(0.304674,0.009759,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304674,0.009759,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304674,0.009759,-0.008004,0.249872,0,0);}
.maa_c00106{transform:matrix(0.307712,0.009231,-0.007497,0.249888,0,0);-ms-transform:matrix(0.307712,0.009231,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.307712,0.009231,-0.007497,0.249888,0,0);}
.m2f_c00106{transform:matrix(0.322450,0.009673,-0.007497,0.249888,0,0);-ms-transform:matrix(0.322450,0.009673,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.322450,0.009673,-0.007497,0.249888,0,0);}
.m29_c00106{transform:matrix(0.323453,0.005499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.323453,0.005499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.323453,0.005499,-0.004249,0.249964,0,0);}
.m2e_c00106{transform:matrix(0.326514,0.007510,-0.005748,0.249934,0,0);-ms-transform:matrix(0.326514,0.007510,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.326514,0.007510,-0.005748,0.249934,0,0);}
.mc9_c00106{transform:matrix(0.335198,0.010737,-0.008004,0.249872,0,0);-ms-transform:matrix(0.335198,0.010737,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.335198,0.010737,-0.008004,0.249872,0,0);}
.m30_c00106{transform:matrix(0.336304,0.010089,-0.007497,0.249888,0,0);-ms-transform:matrix(0.336304,0.010089,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.336304,0.010089,-0.007497,0.249888,0,0);}
.m3c_c00106{transform:matrix(0.338813,0.010164,-0.007497,0.249888,0,0);-ms-transform:matrix(0.338813,0.010164,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.338813,0.010164,-0.007497,0.249888,0,0);}
.me1_c00106{transform:matrix(0.339311,0.010869,-0.008004,0.249872,0,0);-ms-transform:matrix(0.339311,0.010869,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.339311,0.010869,-0.008004,0.249872,0,0);}
.m4_c00106{transform:matrix(0.350403,0.010162,-0.007247,0.249895,0,0);-ms-transform:matrix(0.350403,0.010162,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.350403,0.010162,-0.007247,0.249895,0,0);}
.m3_c00106{transform:matrix(0.350708,0.010171,-0.007247,0.249895,0,0);-ms-transform:matrix(0.350708,0.010171,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.350708,0.010171,-0.007247,0.249895,0,0);}
.m18_c00106{transform:matrix(0.353359,0.006007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.353359,0.006007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.353359,0.006007,-0.004249,0.249964,0,0);}
.mfa_c00106{transform:matrix(0.354337,0.011705,-0.008254,0.249864,0,0);-ms-transform:matrix(0.354337,0.011705,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.354337,0.011705,-0.008254,0.249864,0,0);}
.mc4_c00106{transform:matrix(0.368356,0.013274,-0.009003,0.249838,0,0);-ms-transform:matrix(0.368356,0.013274,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.368356,0.013274,-0.009003,0.249838,0,0);}
.mc_c00106{transform:matrix(0.380375,0.011031,-0.007247,0.249895,0,0);-ms-transform:matrix(0.380375,0.011031,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.380375,0.011031,-0.007247,0.249895,0,0);}
.m3e_c00106{transform:matrix(0.388986,0.003890,-0.002500,0.249988,0,0);-ms-transform:matrix(0.388986,0.003890,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.388986,0.003890,-0.002500,0.249988,0,0);}
.m6_c00106{transform:matrix(0.390311,0.011319,-0.007247,0.249895,0,0);-ms-transform:matrix(0.390311,0.011319,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.390311,0.011319,-0.007247,0.249895,0,0);}
.mf4_c00106{transform:matrix(0.397411,0.012730,-0.008004,0.249872,0,0);-ms-transform:matrix(0.397411,0.012730,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.397411,0.012730,-0.008004,0.249872,0,0);}
.m1_c00106{transform:matrix(0.398752,0.011564,-0.007247,0.249895,0,0);-ms-transform:matrix(0.398752,0.011564,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.398752,0.011564,-0.007247,0.249895,0,0);}
.m2_c00106{transform:matrix(0.410542,0.011906,-0.007247,0.249895,0,0);-ms-transform:matrix(0.410542,0.011906,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.410542,0.011906,-0.007247,0.249895,0,0);}
.m31_c00106{transform:matrix(0.420416,0.012612,-0.007497,0.249888,0,0);-ms-transform:matrix(0.420416,0.012612,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.420416,0.012612,-0.007497,0.249888,0,0);}
.ma8_c00106{transform:matrix(0.425743,0.012772,-0.007497,0.249888,0,0);-ms-transform:matrix(0.425743,0.012772,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.425743,0.012772,-0.007497,0.249888,0,0);}
.mfb_c00106{transform:matrix(0.449360,0.014844,-0.008254,0.249864,0,0);-ms-transform:matrix(0.449360,0.014844,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.449360,0.014844,-0.008254,0.249864,0,0);}
.m109_c00106{transform:matrix(0.462539,0.012026,-0.006498,0.249916,0,0);-ms-transform:matrix(0.462539,0.012026,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.462539,0.012026,-0.006498,0.249916,0,0);}
.m2c_c00106{transform:matrix(0.473940,0.010901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.473940,0.010901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.473940,0.010901,-0.005748,0.249934,0,0);}
.md1_c00106{transform:matrix(0.539014,0.017266,-0.008004,0.249872,0,0);-ms-transform:matrix(0.539014,0.017266,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.539014,0.017266,-0.008004,0.249872,0,0);}
.m8_c00106{transform:matrix(0.545381,0.015816,-0.007247,0.249895,0,0);-ms-transform:matrix(0.545381,0.015816,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.545381,0.015816,-0.007247,0.249895,0,0);}
.mc6_c00106{transform:matrix(0.546340,0.019688,-0.009003,0.249838,0,0);-ms-transform:matrix(0.546340,0.019688,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.546340,0.019688,-0.009003,0.249838,0,0);}
.mc7_c00106{transform:matrix(0.610714,0.022008,-0.009003,0.249838,0,0);-ms-transform:matrix(0.610714,0.022008,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.610714,0.022008,-0.009003,0.249838,0,0);}
.mc5_c00106{transform:matrix(0.705202,0.025413,-0.009003,0.249838,0,0);-ms-transform:matrix(0.705202,0.025413,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.705202,0.025413,-0.009003,0.249838,0,0);}
.mab_c00106{transform:matrix(0.751282,0.022538,-0.007497,0.249888,0,0);-ms-transform:matrix(0.751282,0.022538,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.751282,0.022538,-0.007497,0.249888,0,0);}
.m9_c00106{transform:matrix(1.223506,0.035482,-0.007247,0.249895,0,0);-ms-transform:matrix(1.223506,0.035482,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.223506,0.035482,-0.007247,0.249895,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;}
.fs18_c00106{font-size:31.488926px;}
.fs0_c00106{font-size:45.168982px;}
.fs20_c00106{font-size:46.216837px;}
.fs19_c00106{font-size:51.424912px;}
.fs1a_c00106{font-size:52.474400px;}
.fs21_c00106{font-size:52.517742px;}
.fs17_c00106{font-size:52.522072px;}
.fs1d_c00106{font-size:53.523888px;}
.fs14_c00106{font-size:53.574092px;}
.fs1b_c00106{font-size:54.573376px;}
.fs15_c00106{font-size:54.624564px;}
.fs1c_c00106{font-size:55.622864px;}
.fs22_c00106{font-size:57.769516px;}
.fs16_c00106{font-size:57.775982px;}
.fs1f_c00106{font-size:61.921806px;}
.fse_c00106{font-size:61.967839px;}
.fs1e_c00106{font-size:64.018768px;}
.fs5_c00106{font-size:65.109406px;}
.fs6_c00106{font-size:65.117217px;}
.fs7_c00106{font-size:65.129288px;}
.fsd_c00106{font-size:66.169048px;}
.fsa_c00106{font-size:67.219351px;}
.fs11_c00106{font-size:68.250000px;}
.fs4_c00106{font-size:68.259861px;}
.fs10_c00106{font-size:69.300000px;}
.fs3_c00106{font-size:69.310013px;}
.fsc_c00106{font-size:69.319956px;}
.fs9_c00106{font-size:71.403570px;}
.fs8_c00106{font-size:72.482595px;}
.fs12_c00106{font-size:72.484804px;}
.fsb_c00106{font-size:73.521165px;}
.fsf_c00106{font-size:75.621770px;}
.fs2_c00106{font-size:111.346792px;}
.fs13_c00106{font-size:116.550000px;}
.fs1_c00106{font-size:157.566215px;}
.y0_c00106{bottom:0.000000px;}
.yc5_c00106{bottom:119.970762px;}
.yc4_c00106{bottom:121.079166px;}
.yc3_c00106{bottom:122.616384px;}
.yc2_c00106{bottom:123.931500px;}
.yf9_c00106{bottom:128.219628px;}
.yf8_c00106{bottom:130.277293px;}
.yf7_c00106{bottom:130.687500px;}
.yf6_c00106{bottom:135.065229px;}
.yf5_c00106{bottom:136.913484px;}
.yf4_c00106{bottom:139.800246px;}
.yf3_c00106{bottom:140.830199px;}
.yf2_c00106{bottom:143.185481px;}
.y10f_c00106{bottom:149.300133px;}
.y10e_c00106{bottom:149.655132px;}
.y10d_c00106{bottom:150.340881px;}
.y10c_c00106{bottom:150.690087px;}
.y10b_c00106{bottom:151.438713px;}
.y10a_c00106{bottom:151.793829px;}
.y109_c00106{bottom:152.367150px;}
.y108_c00106{bottom:153.087663px;}
.y107_c00106{bottom:166.077003px;}
.y106_c00106{bottom:167.053368px;}
.y105_c00106{bottom:167.600382px;}
.y104_c00106{bottom:168.843429px;}
.y103_c00106{bottom:169.694019px;}
.y102_c00106{bottom:171.456000px;}
.yf1_c00106{bottom:172.754396px;}
.yf0_c00106{bottom:173.424137px;}
.yef_c00106{bottom:174.022919px;}
.yee_c00106{bottom:174.799101px;}
.yed_c00106{bottom:175.774449px;}
.yec_c00106{bottom:178.176654px;}
.yeb_c00106{bottom:180.093537px;}
.yea_c00106{bottom:181.757452px;}
.y101_c00106{bottom:183.778004px;}
.y100_c00106{bottom:184.361366px;}
.yff_c00106{bottom:185.278002px;}
.yfe_c00106{bottom:185.861364px;}
.yfd_c00106{bottom:186.539496px;}
.yfc_c00106{bottom:187.533730px;}
.yfb_c00106{bottom:188.073393px;}
.yfa_c00106{bottom:189.276000px;}
.ye9_c00106{bottom:190.059536px;}
.ye8_c00106{bottom:190.460315px;}
.ye7_c00106{bottom:191.488889px;}
.ye6_c00106{bottom:192.375709px;}
.ye5_c00106{bottom:193.007355px;}
.ye4_c00106{bottom:194.618044px;}
.ye3_c00106{bottom:195.136316px;}
.ye2_c00106{bottom:195.787076px;}
.ye1_c00106{bottom:196.799943px;}
.ye0_c00106{bottom:197.475876px;}
.ydf_c00106{bottom:199.298990px;}
.yc1_c00106{bottom:201.872232px;}
.yc0_c00106{bottom:203.421702px;}
.ybf_c00106{bottom:203.969584px;}
.ybe_c00106{bottom:205.206898px;}
.ybd_c00106{bottom:205.747603px;}
.ybc_c00106{bottom:206.529124px;}
.ybb_c00106{bottom:207.367500px;}
.yde_c00106{bottom:207.590876px;}
.ydd_c00106{bottom:208.893363px;}
.ydc_c00106{bottom:209.904327px;}
.ydb_c00106{bottom:210.620973px;}
.yda_c00106{bottom:211.465735px;}
.yd9_c00106{bottom:212.621184px;}
.yd8_c00106{bottom:213.851976px;}
.yd7_c00106{bottom:215.083056px;}
.yd6_c00106{bottom:216.838373px;}
.yba_c00106{bottom:219.568290px;}
.yb9_c00106{bottom:220.369800px;}
.yb8_c00106{bottom:221.103810px;}
.yb7_c00106{bottom:222.085905px;}
.yb6_c00106{bottom:222.627855px;}
.yb5_c00106{bottom:223.544970px;}
.yb4_c00106{bottom:224.376510px;}
.yb3_c00106{bottom:224.897910px;}
.yd5_c00106{bottom:226.733505px;}
.yd4_c00106{bottom:227.732067px;}
.yd3_c00106{bottom:228.532923px;}
.yd2_c00106{bottom:229.162963px;}
.yd1_c00106{bottom:230.713401px;}
.yd0_c00106{bottom:232.757432px;}
.ycf_c00106{bottom:234.648214px;}
.yb2_c00106{bottom:237.235380px;}
.yb1_c00106{bottom:238.550475px;}
.yb0_c00106{bottom:239.292765px;}
.yaf_c00106{bottom:241.096455px;}
.yae_c00106{bottom:241.481370px;}
.yad_c00106{bottom:242.998770px;}
.yce_c00106{bottom:243.283560px;}
.ycd_c00106{bottom:245.081160px;}
.ycc_c00106{bottom:246.743352px;}
.ycb_c00106{bottom:247.665960px;}
.yca_c00106{bottom:248.397480px;}
.yc9_c00106{bottom:249.374424px;}
.yc8_c00106{bottom:250.113144px;}
.yc7_c00106{bottom:251.473368px;}
.yc6_c00106{bottom:251.913000px;}
.yac_c00106{bottom:254.017245px;}
.yab_c00106{bottom:255.126225px;}
.yaa_c00106{bottom:256.516860px;}
.ya9_c00106{bottom:258.561030px;}
.ya8_c00106{bottom:259.429305px;}
.ya7_c00106{bottom:260.337315px;}
.ya6_c00106{bottom:262.055190px;}
.ya5_c00106{bottom:263.018415px;}
.ya4_c00106{bottom:264.759150px;}
.ya3_c00106{bottom:265.546695px;}
.ya2_c00106{bottom:266.443185px;}
.ya1_c00106{bottom:267.847500px;}
.y9f_c00106{bottom:298.911238px;}
.y9e_c00106{bottom:300.948403px;}
.y9d_c00106{bottom:301.574805px;}
.y9c_c00106{bottom:303.227043px;}
.y9b_c00106{bottom:305.173998px;}
.y9a_c00106{bottom:308.034306px;}
.y99_c00106{bottom:309.324495px;}
.y98_c00106{bottom:310.513500px;}
.y97_c00106{bottom:346.447500px;}
.y96_c00106{bottom:347.805000px;}
.y95_c00106{bottom:349.714500px;}
.y94_c00106{bottom:351.447000px;}
.y93_c00106{bottom:351.967500px;}
.y92_c00106{bottom:352.660500px;}
.y91_c00106{bottom:354.519000px;}
.y90_c00106{bottom:372.459000px;}
.y8f_c00106{bottom:392.436672px;}
.y8e_c00106{bottom:393.025992px;}
.y8d_c00106{bottom:394.683276px;}
.y8c_c00106{bottom:395.505012px;}
.y8b_c00106{bottom:395.976540px;}
.y8a_c00106{bottom:397.309992px;}
.y89_c00106{bottom:399.157488px;}
.y88_c00106{bottom:400.096332px;}
.y87_c00106{bottom:412.908864px;}
.y86_c00106{bottom:414.058440px;}
.y85_c00106{bottom:415.126152px;}
.y84_c00106{bottom:416.476608px;}
.y83_c00106{bottom:417.245748px;}
.y82_c00106{bottom:418.328280px;}
.y81_c00106{bottom:419.278884px;}
.y80_c00106{bottom:419.916276px;}
.y7f_c00106{bottom:421.305540px;}
.y7e_c00106{bottom:422.241504px;}
.y7d_c00106{bottom:438.642096px;}
.y7c_c00106{bottom:439.269408px;}
.y7b_c00106{bottom:440.917500px;}
.y7a_c00106{bottom:441.639288px;}
.y79_c00106{bottom:442.443456px;}
.y78_c00106{bottom:443.886420px;}
.y77_c00106{bottom:444.656892px;}
.y76_c00106{bottom:460.046364px;}
.y75_c00106{bottom:461.268840px;}
.y74_c00106{bottom:462.758532px;}
.y73_c00106{bottom:463.401396px;}
.y72_c00106{bottom:464.695152px;}
.y71_c00106{bottom:466.190712px;}
.y70_c00106{bottom:467.342388px;}
.y6f_c00106{bottom:483.113340px;}
.y6e_c00106{bottom:484.418172px;}
.y6d_c00106{bottom:485.020752px;}
.y6c_c00106{bottom:485.384940px;}
.y6b_c00106{bottom:486.489720px;}
.y6a_c00106{bottom:487.351644px;}
.y69_c00106{bottom:487.952664px;}
.y68_c00106{bottom:489.217368px;}
.y67_c00106{bottom:504.817164px;}
.y66_c00106{bottom:505.612644px;}
.y65_c00106{bottom:506.078856px;}
.y64_c00106{bottom:507.062064px;}
.y63_c00106{bottom:507.768048px;}
.y62_c00106{bottom:508.968852px;}
.y61_c00106{bottom:509.490672px;}
.y60_c00106{bottom:510.332532px;}
.y5f_c00106{bottom:511.909164px;}
.y5e_c00106{bottom:526.600920px;}
.y5d_c00106{bottom:527.417364px;}
.y5c_c00106{bottom:528.016896px;}
.y5b_c00106{bottom:529.000248px;}
.y5a_c00106{bottom:529.607064px;}
.y59_c00106{bottom:530.557296px;}
.y58_c00106{bottom:531.358788px;}
.y57_c00106{bottom:532.296660px;}
.y56_c00106{bottom:533.362344px;}
.y55_c00106{bottom:534.054108px;}
.y54_c00106{bottom:548.329272px;}
.y53_c00106{bottom:549.394320px;}
.y52_c00106{bottom:550.738740px;}
.y51_c00106{bottom:551.373324px;}
.y50_c00106{bottom:552.541332px;}
.y4f_c00106{bottom:553.405488px;}
.y4e_c00106{bottom:554.065692px;}
.y4d_c00106{bottom:554.895156px;}
.y4c_c00106{bottom:556.641168px;}
.y4b_c00106{bottom:557.281260px;}
.y4a_c00106{bottom:572.433780px;}
.y49_c00106{bottom:573.565332px;}
.y48_c00106{bottom:574.300416px;}
.y47_c00106{bottom:574.925268px;}
.y46_c00106{bottom:576.980220px;}
.y45_c00106{bottom:577.562952px;}
.y44_c00106{bottom:579.157500px;}
.y43_c00106{bottom:596.126985px;}
.y42_c00106{bottom:596.823930px;}
.y41_c00106{bottom:597.949425px;}
.y40_c00106{bottom:598.578165px;}
.y3f_c00106{bottom:599.916000px;}
.y3e_c00106{bottom:614.748780px;}
.y3d_c00106{bottom:615.095610px;}
.ya0_c00106{bottom:615.328500px;}
.y3c_c00106{bottom:616.784820px;}
.y3b_c00106{bottom:617.579925px;}
.y3a_c00106{bottom:618.907245px;}
.y39_c00106{bottom:619.103100px;}
.y38_c00106{bottom:621.274365px;}
.y37_c00106{bottom:621.535500px;}
.y36_c00106{bottom:639.018060px;}
.y35_c00106{bottom:639.791655px;}
.y34_c00106{bottom:640.824990px;}
.y33_c00106{bottom:641.391990px;}
.y32_c00106{bottom:642.637275px;}
.y31_c00106{bottom:643.245495px;}
.y30_c00106{bottom:643.960500px;}
.y2f_c00106{bottom:713.963840px;}
.y2e_c00106{bottom:714.876744px;}
.y2d_c00106{bottom:716.262195px;}
.y2c_c00106{bottom:716.883333px;}
.y2b_c00106{bottom:717.666000px;}
.y2a_c00106{bottom:775.453206px;}
.y29_c00106{bottom:776.154286px;}
.y28_c00106{bottom:776.908644px;}
.y27_c00106{bottom:777.262981px;}
.y26_c00106{bottom:778.478464px;}
.y25_c00106{bottom:779.300068px;}
.y24_c00106{bottom:780.782502px;}
.y23_c00106{bottom:782.454775px;}
.y22_c00106{bottom:798.220459px;}
.y21_c00106{bottom:798.928759px;}
.y20_c00106{bottom:799.716252px;}
.y1f_c00106{bottom:800.274475px;}
.y1e_c00106{bottom:800.906362px;}
.y1d_c00106{bottom:802.470264px;}
.y1c_c00106{bottom:803.616838px;}
.y1b_c00106{bottom:804.233634px;}
.y1a_c00106{bottom:805.140820px;}
.y19_c00106{bottom:821.175973px;}
.y18_c00106{bottom:822.046314px;}
.y17_c00106{bottom:822.477799px;}
.y16_c00106{bottom:823.928188px;}
.y15_c00106{bottom:824.644356px;}
.y14_c00106{bottom:824.980548px;}
.y13_c00106{bottom:826.035789px;}
.y12_c00106{bottom:826.389015px;}
.y11_c00106{bottom:827.013000px;}
.y10_c00106{bottom:862.130275px;}
.yf_c00106{bottom:863.889924px;}
.ye_c00106{bottom:865.580155px;}
.yd_c00106{bottom:869.920389px;}
.yc_c00106{bottom:906.423876px;}
.yb_c00106{bottom:908.888946px;}
.ya_c00106{bottom:915.573514px;}
.y9_c00106{bottom:923.501898px;}
.y8_c00106{bottom:924.561471px;}
.y7_c00106{bottom:926.229696px;}
.y6_c00106{bottom:927.018481px;}
.y5_c00106{bottom:928.163097px;}
.y4_c00106{bottom:929.486932px;}
.y3_c00106{bottom:931.349907px;}
.y2_c00106{bottom:932.041252px;}
.y1_c00106{bottom:933.667500px;}
.h1a_c00106{height:31.488926px;}
.h2_c00106{height:45.168982px;}
.h22_c00106{height:46.216837px;}
.h1b_c00106{height:51.424912px;}
.h1c_c00106{height:52.474400px;}
.h23_c00106{height:52.517742px;}
.h19_c00106{height:52.522072px;}
.h1f_c00106{height:53.523888px;}
.h16_c00106{height:53.574092px;}
.h1d_c00106{height:54.573376px;}
.h17_c00106{height:54.624564px;}
.h1e_c00106{height:55.622864px;}
.h24_c00106{height:57.769516px;}
.h18_c00106{height:57.775982px;}
.h21_c00106{height:61.921806px;}
.h10_c00106{height:61.967839px;}
.h20_c00106{height:64.018768px;}
.h7_c00106{height:65.109406px;}
.h8_c00106{height:65.117217px;}
.h9_c00106{height:65.129288px;}
.hf_c00106{height:66.169048px;}
.hc_c00106{height:67.219351px;}
.h13_c00106{height:68.250000px;}
.h6_c00106{height:68.259861px;}
.h12_c00106{height:69.300000px;}
.h5_c00106{height:69.310013px;}
.he_c00106{height:69.319956px;}
.hb_c00106{height:71.403570px;}
.ha_c00106{height:72.482595px;}
.h14_c00106{height:72.484804px;}
.hd_c00106{height:73.521165px;}
.h11_c00106{height:75.621770px;}
.h4_c00106{height:111.346792px;}
.h15_c00106{height:116.550000px;}
.h3_c00106{height:157.566215px;}
.h1_c00106{height:1005.000000px;}
.h0_c00106{height:1005.150000px;}
.w0_c00106{width:705.450000px;}
.w1_c00106{width:705.750000px;}
.x0_c00106{left:0.000000px;}
.x8e_c00106{left:29.119948px;}
.x88_c00106{left:30.685500px;}
.x9a_c00106{left:32.151000px;}
.x92_c00106{left:34.221105px;}
.x94_c00106{left:35.280824px;}
.x89_c00106{left:44.410262px;}
.x1_c00106{left:47.809500px;}
.x96_c00106{left:80.907291px;}
.x8f_c00106{left:86.368317px;}
.x73_c00106{left:87.769500px;}
.x99_c00106{left:97.293048px;}
.x2_c00106{left:103.887000px;}
.x9b_c00106{left:106.860216px;}
.x8a_c00106{left:109.936669px;}
.x6e_c00106{left:112.704000px;}
.x5d_c00106{left:122.242776px;}
.x45_c00106{left:123.629532px;}
.x6a_c00106{left:124.938000px;}
.x3_c00106{left:127.726500px;}
.x19_c00106{left:129.097399px;}
.x22_c00106{left:132.597859px;}
.x74_c00106{left:134.580000px;}
.x10_c00106{left:135.607500px;}
.x8b_c00106{left:140.435640px;}
.x90_c00106{left:148.260393px;}
.x6f_c00106{left:151.059000px;}
.x46_c00106{left:153.703752px;}
.x3e_c00106{left:155.186976px;}
.x59_c00106{left:157.910988px;}
.x63_c00106{left:158.919192px;}
.x8c_c00106{left:163.272780px;}
.x75_c00106{left:164.463000px;}
.x11_c00106{left:172.312500px;}
.x1a_c00106{left:174.429579px;}
.x56_c00106{left:177.736896px;}
.x37_c00106{left:181.395000px;}
.xc_c00106{left:182.734764px;}
.x51_c00106{left:186.015648px;}
.x76_c00106{left:190.714500px;}
.x4_c00106{left:191.967000px;}
.x12_c00106{left:193.090500px;}
.x3b_c00106{left:195.471000px;}
.x47_c00106{left:200.045868px;}
.x87_c00106{left:202.243769px;}
.x1b_c00106{left:205.239498px;}
.x5e_c00106{left:208.371084px;}
.x95_c00106{left:209.922165px;}
.x72_c00106{left:211.680000px;}
.x52_c00106{left:213.309444px;}
.x5a_c00106{left:215.658120px;}
.x93_c00106{left:216.941026px;}
.x6b_c00106{left:219.435000px;}
.x23_c00106{left:220.640376px;}
.x3f_c00106{left:224.998284px;}
.x2d_c00106{left:226.984500px;}
.x2a_c00106{left:228.945000px;}
.x64_c00106{left:229.957272px;}
.x5f_c00106{left:231.989892px;}
.x4c_c00106{left:233.017320px;}
.x33_c00106{left:235.316520px;}
.x5_c00106{left:237.616500px;}
.x6c_c00106{left:238.686000px;}
.x48_c00106{left:240.812340px;}
.x57_c00106{left:242.740944px;}
.x38_c00106{left:244.269000px;}
.x5b_c00106{left:247.851864px;}
.x97_c00106{left:249.398058px;}
.x2e_c00106{left:250.818000px;}
.x53_c00106{left:252.474816px;}
.x13_c00106{left:255.163500px;}
.x40_c00106{left:258.183492px;}
.x1c_c00106{left:262.535065px;}
.x98_c00106{left:266.030795px;}
.x60_c00106{left:267.220872px;}
.x91_c00106{left:268.761427px;}
.x2f_c00106{left:271.092000px;}
.x14_c00106{left:274.939500px;}
.x6_c00106{left:277.086000px;}
.x65_c00106{left:281.265324px;}
.x41_c00106{left:284.566344px;}
.x2b_c00106{left:289.980000px;}
.x68_c00106{left:292.140000px;}
.x24_c00106{left:298.663224px;}
.x8d_c00106{left:300.085830px;}
.x54_c00106{left:302.697228px;}
.x7_c00106{left:304.285500px;}
.x3c_c00106{left:305.374500px;}
.x4d_c00106{left:307.920120px;}
.x34_c00106{left:310.194270px;}
.x30_c00106{left:312.601500px;}
.x15_c00106{left:317.067000px;}
.x42_c00106{left:319.134516px;}
.xa2_c00106{left:322.134000px;}
.x58_c00106{left:326.997996px;}
.x31_c00106{left:331.501500px;}
.x7b_c00106{left:333.236430px;}
.x61_c00106{left:335.806440px;}
.x4e_c00106{left:338.586840px;}
.x1d_c00106{left:340.760587px;}
.x25_c00106{left:341.873745px;}
.x49_c00106{left:343.399824px;}
.x55_c00106{left:346.668852px;}
.x70_c00106{left:347.751000px;}
.x2c_c00106{left:350.217000px;}
.x69_c00106{left:352.890000px;}
.x39_c00106{left:356.818500px;}
.x8_c00106{left:361.810500px;}
.xa_c00106{left:366.084970px;}
.x5c_c00106{left:367.731984px;}
.x1e_c00106{left:372.369981px;}
.x6d_c00106{left:373.588500px;}
.x9c_c00106{left:375.874500px;}
.x4f_c00106{left:381.304848px;}
.x4a_c00106{left:386.123832px;}
.x83_c00106{left:388.240500px;}
.xd_c00106{left:389.394157px;}
.x32_c00106{left:391.732500px;}
.xa6_c00106{left:393.504843px;}
.x66_c00106{left:394.761888px;}
.x9d_c00106{left:395.862000px;}
.x77_c00106{left:397.318500px;}
.x9_c00106{left:398.347500px;}
.x1f_c00106{left:400.264053px;}
.x16_c00106{left:402.384000px;}
.x26_c00106{left:405.870577px;}
.x84_c00106{left:406.885500px;}
.x3d_c00106{left:409.186500px;}
.x4b_c00106{left:412.167444px;}
.xa7_c00106{left:413.224938px;}
.x7f_c00106{left:414.429360px;}
.x67_c00106{left:417.440808px;}
.x71_c00106{left:421.255500px;}
.xa3_c00106{left:422.617500px;}
.x27_c00106{left:424.507440px;}
.x3a_c00106{left:426.513000px;}
.x17_c00106{left:427.765500px;}
.x9e_c00106{left:432.685500px;}
.x80_c00106{left:433.795530px;}
.x50_c00106{left:436.126644px;}
.x20_c00106{left:439.614539px;}
.x43_c00106{left:445.006992px;}
.x35_c00106{left:448.381410px;}
.x85_c00106{left:449.551500px;}
.x7c_c00106{left:452.766330px;}
.xa8_c00106{left:454.834596px;}
.x9f_c00106{left:457.801500px;}
.x36_c00106{left:460.342770px;}
.x28_c00106{left:464.203588px;}
.x78_c00106{left:465.457500px;}
.x62_c00106{left:467.952936px;}
.xe_c00106{left:469.886319px;}
.x21_c00106{left:475.012728px;}
.x7d_c00106{left:476.708610px;}
.x18_c00106{left:478.962000px;}
.xb_c00106{left:483.442158px;}
.x44_c00106{left:487.632984px;}
.xa4_c00106{left:491.466000px;}
.x81_c00106{left:495.102720px;}
.x29_c00106{left:501.118839px;}
.x79_c00106{left:511.812000px;}
.xa0_c00106{left:513.357000px;}
.x7e_c00106{left:519.143850px;}
.x86_c00106{left:521.874000px;}
.x82_c00106{left:523.721430px;}
.xa5_c00106{left:529.018500px;}
.xa9_c00106{left:532.079664px;}
.xa1_c00106{left:534.963000px;}
.x7a_c00106{left:548.778000px;}
.xf_c00106{left:553.652220px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.fs18_c00106{font-size:27.990156pt;}
.fs0_c00106{font-size:40.150206pt;}
.fs20_c00106{font-size:41.081633pt;}
.fs19_c00106{font-size:45.711033pt;}
.fs1a_c00106{font-size:46.643911pt;}
.fs21_c00106{font-size:46.682437pt;}
.fs17_c00106{font-size:46.686286pt;}
.fs1d_c00106{font-size:47.576789pt;}
.fs14_c00106{font-size:47.621415pt;}
.fs1b_c00106{font-size:48.509668pt;}
.fs15_c00106{font-size:48.555168pt;}
.fs1c_c00106{font-size:49.442546pt;}
.fs22_c00106{font-size:51.350681pt;}
.fs16_c00106{font-size:51.356428pt;}
.fs1f_c00106{font-size:55.041606pt;}
.fse_c00106{font-size:55.082524pt;}
.fs1e_c00106{font-size:56.905572pt;}
.fs5_c00106{font-size:57.875028pt;}
.fs6_c00106{font-size:57.881970pt;}
.fs7_c00106{font-size:57.892701pt;}
.fsd_c00106{font-size:58.816932pt;}
.fsa_c00106{font-size:59.750534pt;}
.fs11_c00106{font-size:60.666667pt;}
.fs4_c00106{font-size:60.675432pt;}
.fs10_c00106{font-size:61.600000pt;}
.fs3_c00106{font-size:61.608901pt;}
.fsc_c00106{font-size:61.617738pt;}
.fs9_c00106{font-size:63.469840pt;}
.fs8_c00106{font-size:64.428973pt;}
.fs12_c00106{font-size:64.430937pt;}
.fsb_c00106{font-size:65.352147pt;}
.fsf_c00106{font-size:67.219351pt;}
.fs2_c00106{font-size:98.974926pt;}
.fs13_c00106{font-size:103.600000pt;}
.fs1_c00106{font-size:140.058858pt;}
.y0_c00106{bottom:0.000000pt;}
.yc5_c00106{bottom:106.640677pt;}
.yc4_c00106{bottom:107.625925pt;}
.yc3_c00106{bottom:108.992341pt;}
.yc2_c00106{bottom:110.161333pt;}
.yf9_c00106{bottom:113.973003pt;}
.yf8_c00106{bottom:115.802039pt;}
.yf7_c00106{bottom:116.166667pt;}
.yf6_c00106{bottom:120.057981pt;}
.yf5_c00106{bottom:121.700875pt;}
.yf4_c00106{bottom:124.266885pt;}
.yf3_c00106{bottom:125.182399pt;}
.yf2_c00106{bottom:127.275983pt;}
.y10f_c00106{bottom:132.711229pt;}
.y10e_c00106{bottom:133.026784pt;}
.y10d_c00106{bottom:133.636339pt;}
.y10c_c00106{bottom:133.946744pt;}
.y10b_c00106{bottom:134.612189pt;}
.y10a_c00106{bottom:134.927848pt;}
.y109_c00106{bottom:135.437467pt;}
.y108_c00106{bottom:136.077923pt;}
.y107_c00106{bottom:147.624003pt;}
.y106_c00106{bottom:148.491883pt;}
.y105_c00106{bottom:148.978117pt;}
.y104_c00106{bottom:150.083048pt;}
.y103_c00106{bottom:150.839128pt;}
.y102_c00106{bottom:152.405333pt;}
.yf1_c00106{bottom:153.559463pt;}
.yf0_c00106{bottom:154.154788pt;}
.yef_c00106{bottom:154.687039pt;}
.yee_c00106{bottom:155.376979pt;}
.yed_c00106{bottom:156.243955pt;}
.yec_c00106{bottom:158.379248pt;}
.yeb_c00106{bottom:160.083144pt;}
.yea_c00106{bottom:161.562180pt;}
.y101_c00106{bottom:163.358225pt;}
.y100_c00106{bottom:163.876769pt;}
.yff_c00106{bottom:164.691557pt;}
.yfe_c00106{bottom:165.210101pt;}
.yfd_c00106{bottom:165.812885pt;}
.yfc_c00106{bottom:166.696649pt;}
.yfb_c00106{bottom:167.176349pt;}
.yfa_c00106{bottom:168.245333pt;}
.ye9_c00106{bottom:168.941809pt;}
.ye8_c00106{bottom:169.298057pt;}
.ye7_c00106{bottom:170.212345pt;}
.ye6_c00106{bottom:171.000631pt;}
.ye5_c00106{bottom:171.562093pt;}
.ye4_c00106{bottom:172.993817pt;}
.ye3_c00106{bottom:173.454503pt;}
.ye2_c00106{bottom:174.032956pt;}
.ye1_c00106{bottom:174.933283pt;}
.ye0_c00106{bottom:175.534112pt;}
.ydf_c00106{bottom:177.154657pt;}
.yc1_c00106{bottom:179.441984pt;}
.yc0_c00106{bottom:180.819291pt;}
.ybf_c00106{bottom:181.306297pt;}
.ybe_c00106{bottom:182.406132pt;}
.ybd_c00106{bottom:182.886759pt;}
.ybc_c00106{bottom:183.581444pt;}
.ybb_c00106{bottom:184.326667pt;}
.yde_c00106{bottom:184.525223pt;}
.ydd_c00106{bottom:185.682989pt;}
.ydc_c00106{bottom:186.581624pt;}
.ydb_c00106{bottom:187.218643pt;}
.yda_c00106{bottom:187.969543pt;}
.yd9_c00106{bottom:188.996608pt;}
.yd8_c00106{bottom:190.090645pt;}
.yd7_c00106{bottom:191.184939pt;}
.yd6_c00106{bottom:192.745220pt;}
.yba_c00106{bottom:195.171813pt;}
.yb9_c00106{bottom:195.884267pt;}
.yb8_c00106{bottom:196.536720pt;}
.yb7_c00106{bottom:197.409693pt;}
.yb6_c00106{bottom:197.891427pt;}
.yb5_c00106{bottom:198.706640pt;}
.yb4_c00106{bottom:199.445787pt;}
.yb3_c00106{bottom:199.909253pt;}
.yd5_c00106{bottom:201.540893pt;}
.yd4_c00106{bottom:202.428504pt;}
.yd3_c00106{bottom:203.140376pt;}
.yd2_c00106{bottom:203.700412pt;}
.yd1_c00106{bottom:205.078579pt;}
.yd0_c00106{bottom:206.895495pt;}
.ycf_c00106{bottom:208.576191pt;}
.yb2_c00106{bottom:210.875893pt;}
.yb1_c00106{bottom:212.044867pt;}
.yb0_c00106{bottom:212.704680pt;}
.yaf_c00106{bottom:214.307960pt;}
.yae_c00106{bottom:214.650107pt;}
.yad_c00106{bottom:215.998907pt;}
.yce_c00106{bottom:216.252053pt;}
.ycd_c00106{bottom:217.849920pt;}
.ycc_c00106{bottom:219.327424pt;}
.ycb_c00106{bottom:220.147520pt;}
.yca_c00106{bottom:220.797760pt;}
.yc9_c00106{bottom:221.666155pt;}
.yc8_c00106{bottom:222.322795pt;}
.yc7_c00106{bottom:223.531883pt;}
.yc6_c00106{bottom:223.922667pt;}
.yac_c00106{bottom:225.793107pt;}
.yab_c00106{bottom:226.778867pt;}
.yaa_c00106{bottom:228.014987pt;}
.ya9_c00106{bottom:229.832027pt;}
.ya8_c00106{bottom:230.603827pt;}
.ya7_c00106{bottom:231.410947pt;}
.ya6_c00106{bottom:232.937947pt;}
.ya5_c00106{bottom:233.794147pt;}
.ya4_c00106{bottom:235.341467pt;}
.ya3_c00106{bottom:236.041507pt;}
.ya2_c00106{bottom:236.838387pt;}
.ya1_c00106{bottom:238.086667pt;}
.y9f_c00106{bottom:265.698879pt;}
.y9e_c00106{bottom:267.509692pt;}
.y9d_c00106{bottom:268.066493pt;}
.y9c_c00106{bottom:269.535149pt;}
.y9b_c00106{bottom:271.265776pt;}
.y9a_c00106{bottom:273.808272pt;}
.y99_c00106{bottom:274.955107pt;}
.y98_c00106{bottom:276.012000pt;}
.y97_c00106{bottom:307.953333pt;}
.y96_c00106{bottom:309.160000pt;}
.y95_c00106{bottom:310.857333pt;}
.y94_c00106{bottom:312.397333pt;}
.y93_c00106{bottom:312.860000pt;}
.y92_c00106{bottom:313.476000pt;}
.y91_c00106{bottom:315.128000pt;}
.y90_c00106{bottom:331.074667pt;}
.y8f_c00106{bottom:348.832597pt;}
.y8e_c00106{bottom:349.356437pt;}
.y8d_c00106{bottom:350.829579pt;}
.y8c_c00106{bottom:351.560011pt;}
.y8b_c00106{bottom:351.979147pt;}
.y8a_c00106{bottom:353.164437pt;}
.y89_c00106{bottom:354.806656pt;}
.y88_c00106{bottom:355.641184pt;}
.y87_c00106{bottom:367.030101pt;}
.y86_c00106{bottom:368.051947pt;}
.y85_c00106{bottom:369.001024pt;}
.y84_c00106{bottom:370.201429pt;}
.y83_c00106{bottom:370.885109pt;}
.y82_c00106{bottom:371.847360pt;}
.y81_c00106{bottom:372.692341pt;}
.y80_c00106{bottom:373.258912pt;}
.y7f_c00106{bottom:374.493813pt;}
.y7e_c00106{bottom:375.325781pt;}
.y7d_c00106{bottom:389.904085pt;}
.y7c_c00106{bottom:390.461696pt;}
.y7b_c00106{bottom:391.926667pt;}
.y7a_c00106{bottom:392.568256pt;}
.y79_c00106{bottom:393.283072pt;}
.y78_c00106{bottom:394.565707pt;}
.y77_c00106{bottom:395.250571pt;}
.y76_c00106{bottom:408.930101pt;}
.y75_c00106{bottom:410.016747pt;}
.y74_c00106{bottom:411.340917pt;}
.y73_c00106{bottom:411.912352pt;}
.y72_c00106{bottom:413.062357pt;}
.y71_c00106{bottom:414.391744pt;}
.y70_c00106{bottom:415.415456pt;}
.y6f_c00106{bottom:429.434080pt;}
.y6e_c00106{bottom:430.593931pt;}
.y6d_c00106{bottom:431.129557pt;}
.y6c_c00106{bottom:431.453280pt;}
.y6b_c00106{bottom:432.435307pt;}
.y6a_c00106{bottom:433.201461pt;}
.y69_c00106{bottom:433.735701pt;}
.y68_c00106{bottom:434.859883pt;}
.y67_c00106{bottom:448.726368pt;}
.y66_c00106{bottom:449.433461pt;}
.y65_c00106{bottom:449.847872pt;}
.y64_c00106{bottom:450.721835pt;}
.y63_c00106{bottom:451.349376pt;}
.y62_c00106{bottom:452.416757pt;}
.y61_c00106{bottom:452.880597pt;}
.y60_c00106{bottom:453.628917pt;}
.y5f_c00106{bottom:455.030368pt;}
.y5e_c00106{bottom:468.089707pt;}
.y5d_c00106{bottom:468.815435pt;}
.y5c_c00106{bottom:469.348352pt;}
.y5b_c00106{bottom:470.222443pt;}
.y5a_c00106{bottom:470.761835pt;}
.y59_c00106{bottom:471.606485pt;}
.y58_c00106{bottom:472.318923pt;}
.y57_c00106{bottom:473.152587pt;}
.y56_c00106{bottom:474.099861pt;}
.y55_c00106{bottom:474.714763pt;}
.y54_c00106{bottom:487.403797pt;}
.y53_c00106{bottom:488.350507pt;}
.y52_c00106{bottom:489.545547pt;}
.y51_c00106{bottom:490.109621pt;}
.y50_c00106{bottom:491.147851pt;}
.y4f_c00106{bottom:491.915989pt;}
.y4e_c00106{bottom:492.502837pt;}
.y4d_c00106{bottom:493.240139pt;}
.y4c_c00106{bottom:494.792149pt;}
.y4b_c00106{bottom:495.361120pt;}
.y4a_c00106{bottom:508.830027pt;}
.y49_c00106{bottom:509.835851pt;}
.y48_c00106{bottom:510.489259pt;}
.y47_c00106{bottom:511.044683pt;}
.y46_c00106{bottom:512.871307pt;}
.y45_c00106{bottom:513.389291pt;}
.y44_c00106{bottom:514.806667pt;}
.y43_c00106{bottom:529.890653pt;}
.y42_c00106{bottom:530.510160pt;}
.y41_c00106{bottom:531.510600pt;}
.y40_c00106{bottom:532.069480pt;}
.y3f_c00106{bottom:533.258667pt;}
.y3e_c00106{bottom:546.443360pt;}
.y3d_c00106{bottom:546.751653pt;}
.ya0_c00106{bottom:546.958667pt;}
.y3c_c00106{bottom:548.253173pt;}
.y3b_c00106{bottom:548.959933pt;}
.y3a_c00106{bottom:550.139773pt;}
.y39_c00106{bottom:550.313867pt;}
.y38_c00106{bottom:552.243880pt;}
.y37_c00106{bottom:552.476000pt;}
.y36_c00106{bottom:568.016053pt;}
.y35_c00106{bottom:568.703693pt;}
.y34_c00106{bottom:569.622213pt;}
.y33_c00106{bottom:570.126213pt;}
.y32_c00106{bottom:571.233133pt;}
.y31_c00106{bottom:571.773773pt;}
.y30_c00106{bottom:572.409333pt;}
.y2f_c00106{bottom:634.634524pt;}
.y2e_c00106{bottom:635.445995pt;}
.y2d_c00106{bottom:636.677507pt;}
.y2c_c00106{bottom:637.229629pt;}
.y2b_c00106{bottom:637.925333pt;}
.y2a_c00106{bottom:689.291739pt;}
.y29_c00106{bottom:689.914921pt;}
.y28_c00106{bottom:690.585461pt;}
.y27_c00106{bottom:690.900428pt;}
.y26_c00106{bottom:691.980857pt;}
.y25_c00106{bottom:692.711172pt;}
.y24_c00106{bottom:694.028891pt;}
.y23_c00106{bottom:695.515356pt;}
.y22_c00106{bottom:709.529297pt;}
.y21_c00106{bottom:710.158897pt;}
.y20_c00106{bottom:710.858891pt;}
.y1f_c00106{bottom:711.355089pt;}
.y1e_c00106{bottom:711.916767pt;}
.y1d_c00106{bottom:713.306901pt;}
.y1c_c00106{bottom:714.326079pt;}
.y1b_c00106{bottom:714.874341pt;}
.y1a_c00106{bottom:715.680729pt;}
.y19_c00106{bottom:729.934199pt;}
.y18_c00106{bottom:730.707835pt;}
.y17_c00106{bottom:731.091377pt;}
.y16_c00106{bottom:732.380612pt;}
.y15_c00106{bottom:733.017205pt;}
.y14_c00106{bottom:733.316043pt;}
.y13_c00106{bottom:734.254035pt;}
.y12_c00106{bottom:734.568013pt;}
.y11_c00106{bottom:735.122667pt;}
.y10_c00106{bottom:766.338023pt;}
.yf_c00106{bottom:767.902155pt;}
.ye_c00106{bottom:769.404583pt;}
.yd_c00106{bottom:773.262568pt;}
.yc_c00106{bottom:805.710112pt;}
.yb_c00106{bottom:807.901285pt;}
.ya_c00106{bottom:813.843124pt;}
.y9_c00106{bottom:820.890576pt;}
.y8_c00106{bottom:821.832419pt;}
.y7_c00106{bottom:823.315285pt;}
.y6_c00106{bottom:824.016428pt;}
.y5_c00106{bottom:825.033864pt;}
.y4_c00106{bottom:826.210607pt;}
.y3_c00106{bottom:827.866584pt;}
.y2_c00106{bottom:828.481113pt;}
.y1_c00106{bottom:829.926667pt;}
.h1a_c00106{height:27.990156pt;}
.h2_c00106{height:40.150206pt;}
.h22_c00106{height:41.081633pt;}
.h1b_c00106{height:45.711033pt;}
.h1c_c00106{height:46.643911pt;}
.h23_c00106{height:46.682437pt;}
.h19_c00106{height:46.686286pt;}
.h1f_c00106{height:47.576789pt;}
.h16_c00106{height:47.621415pt;}
.h1d_c00106{height:48.509668pt;}
.h17_c00106{height:48.555168pt;}
.h1e_c00106{height:49.442546pt;}
.h24_c00106{height:51.350681pt;}
.h18_c00106{height:51.356428pt;}
.h21_c00106{height:55.041606pt;}
.h10_c00106{height:55.082524pt;}
.h20_c00106{height:56.905572pt;}
.h7_c00106{height:57.875028pt;}
.h8_c00106{height:57.881970pt;}
.h9_c00106{height:57.892701pt;}
.hf_c00106{height:58.816932pt;}
.hc_c00106{height:59.750534pt;}
.h13_c00106{height:60.666667pt;}
.h6_c00106{height:60.675432pt;}
.h12_c00106{height:61.600000pt;}
.h5_c00106{height:61.608901pt;}
.he_c00106{height:61.617738pt;}
.hb_c00106{height:63.469840pt;}
.ha_c00106{height:64.428973pt;}
.h14_c00106{height:64.430937pt;}
.hd_c00106{height:65.352147pt;}
.h11_c00106{height:67.219351pt;}
.h4_c00106{height:98.974926pt;}
.h15_c00106{height:103.600000pt;}
.h3_c00106{height:140.058858pt;}
.h1_c00106{height:893.333333pt;}
.h0_c00106{height:893.466667pt;}
.w0_c00106{width:627.066667pt;}
.w1_c00106{width:627.333333pt;}
.x0_c00106{left:0.000000pt;}
.x8e_c00106{left:25.884399pt;}
.x88_c00106{left:27.276000pt;}
.x9a_c00106{left:28.578667pt;}
.x92_c00106{left:30.418760pt;}
.x94_c00106{left:31.360732pt;}
.x89_c00106{left:39.475788pt;}
.x1_c00106{left:42.497333pt;}
.x96_c00106{left:71.917592pt;}
.x8f_c00106{left:76.771837pt;}
.x73_c00106{left:78.017333pt;}
.x99_c00106{left:86.482709pt;}
.x2_c00106{left:92.344000pt;}
.x9b_c00106{left:94.986859pt;}
.x8a_c00106{left:97.721484pt;}
.x6e_c00106{left:100.181333pt;}
.x5d_c00106{left:108.660245pt;}
.x45_c00106{left:109.892917pt;}
.x6a_c00106{left:111.056000pt;}
.x3_c00106{left:113.534667pt;}
.x19_c00106{left:114.753244pt;}
.x22_c00106{left:117.864764pt;}
.x74_c00106{left:119.626667pt;}
.x10_c00106{left:120.540000pt;}
.x8b_c00106{left:124.831680pt;}
.x90_c00106{left:131.787016pt;}
.x6f_c00106{left:134.274667pt;}
.x46_c00106{left:136.625557pt;}
.x3e_c00106{left:137.943979pt;}
.x59_c00106{left:140.365323pt;}
.x63_c00106{left:141.261504pt;}
.x8c_c00106{left:145.131360pt;}
.x75_c00106{left:146.189333pt;}
.x11_c00106{left:153.166667pt;}
.x1a_c00106{left:155.048515pt;}
.x56_c00106{left:157.988352pt;}
.x37_c00106{left:161.240000pt;}
.xc_c00106{left:162.430901pt;}
.x51_c00106{left:165.347243pt;}
.x76_c00106{left:169.524000pt;}
.x4_c00106{left:170.637333pt;}
.x12_c00106{left:171.636000pt;}
.x3b_c00106{left:173.752000pt;}
.x47_c00106{left:177.818549pt;}
.x87_c00106{left:179.772239pt;}
.x1b_c00106{left:182.435109pt;}
.x5e_c00106{left:185.218741pt;}
.x95_c00106{left:186.597480pt;}
.x72_c00106{left:188.160000pt;}
.x52_c00106{left:189.608395pt;}
.x5a_c00106{left:191.696107pt;}
.x93_c00106{left:192.836468pt;}
.x6b_c00106{left:195.053333pt;}
.x23_c00106{left:196.124779pt;}
.x3f_c00106{left:199.998475pt;}
.x2d_c00106{left:201.764000pt;}
.x2a_c00106{left:203.506667pt;}
.x64_c00106{left:204.406464pt;}
.x5f_c00106{left:206.213237pt;}
.x4c_c00106{left:207.126507pt;}
.x33_c00106{left:209.170240pt;}
.x5_c00106{left:211.214667pt;}
.x6c_c00106{left:212.165333pt;}
.x48_c00106{left:214.055413pt;}
.x57_c00106{left:215.769728pt;}
.x38_c00106{left:217.128000pt;}
.x5b_c00106{left:220.312768pt;}
.x97_c00106{left:221.687163pt;}
.x2e_c00106{left:222.949333pt;}
.x53_c00106{left:224.422059pt;}
.x13_c00106{left:226.812000pt;}
.x40_c00106{left:229.496437pt;}
.x1c_c00106{left:233.364503pt;}
.x98_c00106{left:236.471817pt;}
.x60_c00106{left:237.529664pt;}
.x91_c00106{left:238.899047pt;}
.x2f_c00106{left:240.970667pt;}
.x14_c00106{left:244.390667pt;}
.x6_c00106{left:246.298667pt;}
.x65_c00106{left:250.013621pt;}
.x41_c00106{left:252.947861pt;}
.x2b_c00106{left:257.760000pt;}
.x68_c00106{left:259.680000pt;}
.x24_c00106{left:265.478421pt;}
.x8d_c00106{left:266.742960pt;}
.x54_c00106{left:269.064203pt;}
.x7_c00106{left:270.476000pt;}
.x3c_c00106{left:271.444000pt;}
.x4d_c00106{left:273.706773pt;}
.x34_c00106{left:275.728240pt;}
.x30_c00106{left:277.868000pt;}
.x15_c00106{left:281.837333pt;}
.x42_c00106{left:283.675125pt;}
.xa2_c00106{left:286.341333pt;}
.x58_c00106{left:290.664885pt;}
.x31_c00106{left:294.668000pt;}
.x7b_c00106{left:296.210160pt;}
.x61_c00106{left:298.494613pt;}
.x4e_c00106{left:300.966080pt;}
.x1d_c00106{left:302.898300pt;}
.x25_c00106{left:303.887773pt;}
.x49_c00106{left:305.244288pt;}
.x55_c00106{left:308.150091pt;}
.x70_c00106{left:309.112000pt;}
.x2c_c00106{left:311.304000pt;}
.x69_c00106{left:313.680000pt;}
.x39_c00106{left:317.172000pt;}
.x8_c00106{left:321.609333pt;}
.xa_c00106{left:325.408863pt;}
.x5c_c00106{left:326.872875pt;}
.x1e_c00106{left:330.995539pt;}
.x6d_c00106{left:332.078667pt;}
.x9c_c00106{left:334.110667pt;}
.x4f_c00106{left:338.937643pt;}
.x4a_c00106{left:343.221184pt;}
.x83_c00106{left:345.102667pt;}
.xd_c00106{left:346.128140pt;}
.x32_c00106{left:348.206667pt;}
.xa6_c00106{left:349.782083pt;}
.x66_c00106{left:350.899456pt;}
.x9d_c00106{left:351.877333pt;}
.x77_c00106{left:353.172000pt;}
.x9_c00106{left:354.086667pt;}
.x1f_c00106{left:355.790269pt;}
.x16_c00106{left:357.674667pt;}
.x26_c00106{left:360.773847pt;}
.x84_c00106{left:361.676000pt;}
.x3d_c00106{left:363.721333pt;}
.x4b_c00106{left:366.371061pt;}
.xa7_c00106{left:367.311056pt;}
.x7f_c00106{left:368.381653pt;}
.x67_c00106{left:371.058496pt;}
.x71_c00106{left:374.449333pt;}
.xa3_c00106{left:375.660000pt;}
.x27_c00106{left:377.339947pt;}
.x3a_c00106{left:379.122667pt;}
.x17_c00106{left:380.236000pt;}
.x9e_c00106{left:384.609333pt;}
.x80_c00106{left:385.596027pt;}
.x50_c00106{left:387.668128pt;}
.x20_c00106{left:390.768479pt;}
.x43_c00106{left:395.561771pt;}
.x35_c00106{left:398.561253pt;}
.x85_c00106{left:399.601333pt;}
.x7c_c00106{left:402.458960pt;}
.xa8_c00106{left:404.297419pt;}
.x9f_c00106{left:406.934667pt;}
.x36_c00106{left:409.193573pt;}
.x28_c00106{left:412.625412pt;}
.x78_c00106{left:413.740000pt;}
.x62_c00106{left:415.958165pt;}
.xe_c00106{left:417.676728pt;}
.x21_c00106{left:422.233536pt;}
.x7d_c00106{left:423.740987pt;}
.x18_c00106{left:425.744000pt;}
.xb_c00106{left:429.726363pt;}
.x44_c00106{left:433.451541pt;}
.xa4_c00106{left:436.858667pt;}
.x81_c00106{left:440.091307pt;}
.x29_c00106{left:445.438968pt;}
.x79_c00106{left:454.944000pt;}
.xa0_c00106{left:456.317333pt;}
.x7e_c00106{left:461.461200pt;}
.x86_c00106{left:463.888000pt;}
.x82_c00106{left:465.530160pt;}
.xa5_c00106{left:470.238667pt;}
.xa9_c00106{left:472.959701pt;}
.xa1_c00106{left:475.522667pt;}
.x7a_c00106{left:487.802667pt;}
.xf_c00106{left:492.135307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.meb_c00107{transform:matrix(0.008980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008980,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{transform:matrix(0.009569,-0.000144,0.003750,0.249972,0,0);-ms-transform:matrix(0.009569,-0.000144,0.003750,0.249972,0,0);-webkit-transform:matrix(0.009569,-0.000144,0.003750,0.249972,0,0);}
.m77_c00107{transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);-ms-transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);}
.m6b_c00107{transform:matrix(0.020068,-0.000301,0.003750,0.249972,0,0);-ms-transform:matrix(0.020068,-0.000301,0.003750,0.249972,0,0);-webkit-transform:matrix(0.020068,-0.000301,0.003750,0.249972,0,0);}
.md4_c00107{transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);}
.mac_c00107{transform:matrix(0.023517,-0.000353,0.003750,0.249972,0,0);-ms-transform:matrix(0.023517,-0.000353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.023517,-0.000353,0.003750,0.249972,0,0);}
.m33_c00107{transform:matrix(0.027892,-0.000418,0.003750,0.249972,0,0);-ms-transform:matrix(0.027892,-0.000418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.027892,-0.000418,0.003750,0.249972,0,0);}
.mec_c00107{transform:matrix(0.087805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087805,0.000000,0.000000,0.250000,0,0);}
.me5_c00107{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);}
.me6_c00107{transform:matrix(0.118690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118690,0.000000,0.000000,0.250000,0,0);}
.mb5_c00107{transform:matrix(0.122266,-0.001834,0.003750,0.249972,0,0);-ms-transform:matrix(0.122266,-0.001834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.122266,-0.001834,0.003750,0.249972,0,0);}
.me9_c00107{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);}
.me8_c00107{transform:matrix(0.135880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135880,0.000000,0.000000,0.250000,0,0);}
.me7_c00107{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00107{transform:matrix(0.137465,-0.002062,0.003750,0.249972,0,0);-ms-transform:matrix(0.137465,-0.002062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137465,-0.002062,0.003750,0.249972,0,0);}
.m45_c00107{transform:matrix(0.137949,-0.002069,0.003750,0.249972,0,0);-ms-transform:matrix(0.137949,-0.002069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137949,-0.002069,0.003750,0.249972,0,0);}
.m46_c00107{transform:matrix(0.138119,-0.002072,0.003750,0.249972,0,0);-ms-transform:matrix(0.138119,-0.002072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.138119,-0.002072,0.003750,0.249972,0,0);}
.m1f_c00107{transform:matrix(0.139984,-0.002100,0.003750,0.249972,0,0);-ms-transform:matrix(0.139984,-0.002100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.139984,-0.002100,0.003750,0.249972,0,0);}
.m2e_c00107{transform:matrix(0.140409,-0.002106,0.003750,0.249972,0,0);-ms-transform:matrix(0.140409,-0.002106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.140409,-0.002106,0.003750,0.249972,0,0);}
.mf2_c00107{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.mb7_c00107{transform:matrix(0.143539,-0.002153,0.003750,0.249972,0,0);-ms-transform:matrix(0.143539,-0.002153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143539,-0.002153,0.003750,0.249972,0,0);}
.m72_c00107{transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);-ms-transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);}
.m21_c00107{transform:matrix(0.145134,-0.002177,0.003750,0.249972,0,0);-ms-transform:matrix(0.145134,-0.002177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145134,-0.002177,0.003750,0.249972,0,0);}
.mea_c00107{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);}
.m9_c00107{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);}
.m11_c00107{transform:matrix(0.149948,-0.002249,0.003750,0.249972,0,0);-ms-transform:matrix(0.149948,-0.002249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149948,-0.002249,0.003750,0.249972,0,0);}
.m26_c00107{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);}
.mcd_c00107{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);}
.m3d_c00107{transform:matrix(0.151463,-0.002272,0.003750,0.249972,0,0);-ms-transform:matrix(0.151463,-0.002272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151463,-0.002272,0.003750,0.249972,0,0);}
.mb1_c00107{transform:matrix(0.151778,-0.002277,0.003750,0.249972,0,0);-ms-transform:matrix(0.151778,-0.002277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151778,-0.002277,0.003750,0.249972,0,0);}
.m79_c00107{transform:matrix(0.152403,-0.002286,0.003750,0.249972,0,0);-ms-transform:matrix(0.152403,-0.002286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152403,-0.002286,0.003750,0.249972,0,0);}
.m28_c00107{transform:matrix(0.152828,-0.002292,0.003750,0.249972,0,0);-ms-transform:matrix(0.152828,-0.002292,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152828,-0.002292,0.003750,0.249972,0,0);}
.m112_c00107{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);}
.m81_c00107{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);}
.m80_c00107{transform:matrix(0.155458,-0.002332,0.003750,0.249972,0,0);-ms-transform:matrix(0.155458,-0.002332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155458,-0.002332,0.003750,0.249972,0,0);}
.m7b_c00107{transform:matrix(0.155797,-0.002337,0.003750,0.249972,0,0);-ms-transform:matrix(0.155797,-0.002337,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155797,-0.002337,0.003750,0.249972,0,0);}
.m44_c00107{transform:matrix(0.156887,-0.002353,0.003750,0.249972,0,0);-ms-transform:matrix(0.156887,-0.002353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156887,-0.002353,0.003750,0.249972,0,0);}
.ma4_c00107{transform:matrix(0.156902,-0.002354,0.003750,0.249972,0,0);-ms-transform:matrix(0.156902,-0.002354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156902,-0.002354,0.003750,0.249972,0,0);}
.m16_c00107{transform:matrix(0.157512,-0.002363,0.003750,0.249972,0,0);-ms-transform:matrix(0.157512,-0.002363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157512,-0.002363,0.003750,0.249972,0,0);}
.m17_c00107{transform:matrix(0.157717,-0.002366,0.003750,0.249972,0,0);-ms-transform:matrix(0.157717,-0.002366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157717,-0.002366,0.003750,0.249972,0,0);}
.m13_c00107{transform:matrix(0.158437,-0.002377,0.003750,0.249972,0,0);-ms-transform:matrix(0.158437,-0.002377,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158437,-0.002377,0.003750,0.249972,0,0);}
.m9a_c00107{transform:matrix(0.158712,-0.002381,0.003750,0.249972,0,0);-ms-transform:matrix(0.158712,-0.002381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158712,-0.002381,0.003750,0.249972,0,0);}
.m108_c00107{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);}
.m55_c00107{transform:matrix(0.158937,-0.002384,0.003750,0.249972,0,0);-ms-transform:matrix(0.158937,-0.002384,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158937,-0.002384,0.003750,0.249972,0,0);}
.m32_c00107{transform:matrix(0.159107,-0.002387,0.003750,0.249972,0,0);-ms-transform:matrix(0.159107,-0.002387,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159107,-0.002387,0.003750,0.249972,0,0);}
.med_c00107{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);}
.m2f_c00107{transform:matrix(0.159792,-0.002397,0.003750,0.249972,0,0);-ms-transform:matrix(0.159792,-0.002397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159792,-0.002397,0.003750,0.249972,0,0);}
.m20_c00107{transform:matrix(0.160277,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160277,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160277,-0.002404,0.003750,0.249972,0,0);}
.me4_c00107{transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);}
.mf0_c00107{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);}
.m29_c00107{transform:matrix(0.161667,-0.002425,0.003750,0.249972,0,0);-ms-transform:matrix(0.161667,-0.002425,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161667,-0.002425,0.003750,0.249972,0,0);}
.mfb_c00107{transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);}
.m8f_c00107{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);}
.m19_c00107{transform:matrix(0.163312,-0.002450,0.003750,0.249972,0,0);-ms-transform:matrix(0.163312,-0.002450,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163312,-0.002450,0.003750,0.249972,0,0);}
.m93_c00107{transform:matrix(0.164102,-0.002462,0.003750,0.249972,0,0);-ms-transform:matrix(0.164102,-0.002462,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164102,-0.002462,0.003750,0.249972,0,0);}
.m5a_c00107{transform:matrix(0.164686,-0.002470,0.003750,0.249972,0,0);-ms-transform:matrix(0.164686,-0.002470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164686,-0.002470,0.003750,0.249972,0,0);}
.m15_c00107{transform:matrix(0.165516,-0.002483,0.003750,0.249972,0,0);-ms-transform:matrix(0.165516,-0.002483,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165516,-0.002483,0.003750,0.249972,0,0);}
.m14_c00107{transform:matrix(0.165721,-0.002486,0.003750,0.249972,0,0);-ms-transform:matrix(0.165721,-0.002486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165721,-0.002486,0.003750,0.249972,0,0);}
.m5e_c00107{transform:matrix(0.165726,-0.002486,0.003750,0.249972,0,0);-ms-transform:matrix(0.165726,-0.002486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165726,-0.002486,0.003750,0.249972,0,0);}
.m12_c00107{transform:matrix(0.166441,-0.002497,0.003750,0.249972,0,0);-ms-transform:matrix(0.166441,-0.002497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166441,-0.002497,0.003750,0.249972,0,0);}
.m40_c00107{transform:matrix(0.166606,-0.002499,0.003750,0.249972,0,0);-ms-transform:matrix(0.166606,-0.002499,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166606,-0.002499,0.003750,0.249972,0,0);}
.m10f_c00107{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);}
.m74_c00107{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);}
.m101_c00107{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);}
.m3e_c00107{transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);}
.m9d_c00107{transform:matrix(0.168676,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168676,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168676,-0.002530,0.003750,0.249972,0,0);}
.m4d_c00107{transform:matrix(0.168946,-0.002534,0.003750,0.249972,0,0);-ms-transform:matrix(0.168946,-0.002534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168946,-0.002534,0.003750,0.249972,0,0);}
.m6_c00107{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_c00107{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);}
.m4b_c00107{transform:matrix(0.170851,-0.002563,0.003750,0.249972,0,0);-ms-transform:matrix(0.170851,-0.002563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170851,-0.002563,0.003750,0.249972,0,0);}
.m9f_c00107{transform:matrix(0.171186,-0.002568,0.003750,0.249972,0,0);-ms-transform:matrix(0.171186,-0.002568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171186,-0.002568,0.003750,0.249972,0,0);}
.m75_c00107{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);}
.m24_c00107{transform:matrix(0.171926,-0.002579,0.003750,0.249972,0,0);-ms-transform:matrix(0.171926,-0.002579,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171926,-0.002579,0.003750,0.249972,0,0);}
.m2c_c00107{transform:matrix(0.171996,-0.002580,0.003750,0.249972,0,0);-ms-transform:matrix(0.171996,-0.002580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171996,-0.002580,0.003750,0.249972,0,0);}
.m9e_c00107{transform:matrix(0.172171,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172171,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172171,-0.002583,0.003750,0.249972,0,0);}
.m1a_c00107{transform:matrix(0.172906,-0.002594,0.003750,0.249972,0,0);-ms-transform:matrix(0.172906,-0.002594,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172906,-0.002594,0.003750,0.249972,0,0);}
.m105_c00107{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);}
.m9b_c00107{transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);}
.m10e_c00107{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);}
.m49_c00107{transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);-ms-transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);}
.m71_c00107{transform:matrix(0.174500,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174500,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174500,-0.002618,0.003750,0.249972,0,0);}
.m18_c00107{transform:matrix(0.175345,-0.002630,0.003750,0.249972,0,0);-ms-transform:matrix(0.175345,-0.002630,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175345,-0.002630,0.003750,0.249972,0,0);}
.m107_c00107{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.mf5_c00107{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);}
.m8b_c00107{transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);}
.m7c_c00107{transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);}
.m31_c00107{transform:matrix(0.176765,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176765,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176765,-0.002651,0.003750,0.249972,0,0);}
.m41_c00107{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);}
.m7d_c00107{transform:matrix(0.176985,-0.002655,0.003750,0.249972,0,0);-ms-transform:matrix(0.176985,-0.002655,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176985,-0.002655,0.003750,0.249972,0,0);}
.m27_c00107{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);}
.m9c_c00107{transform:matrix(0.177525,-0.002663,0.003750,0.249972,0,0);-ms-transform:matrix(0.177525,-0.002663,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177525,-0.002663,0.003750,0.249972,0,0);}
.m1b_c00107{transform:matrix(0.177570,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177570,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177570,-0.002664,0.003750,0.249972,0,0);}
.mff_c00107{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);}
.mba_c00107{transform:matrix(0.178490,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178490,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178490,-0.002677,0.003750,0.249972,0,0);}
.m82_c00107{transform:matrix(0.178635,-0.002680,0.003750,0.249972,0,0);-ms-transform:matrix(0.178635,-0.002680,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178635,-0.002680,0.003750,0.249972,0,0);}
.m4_c00107{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);}
.mbb_c00107{transform:matrix(0.180255,-0.002704,0.003750,0.249972,0,0);-ms-transform:matrix(0.180255,-0.002704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180255,-0.002704,0.003750,0.249972,0,0);}
.mde_c00107{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);}
.m1c_c00107{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);}
.m56_c00107{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);}
.m10c_c00107{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);}
.m42_c00107{transform:matrix(0.182744,-0.002741,0.003750,0.249972,0,0);-ms-transform:matrix(0.182744,-0.002741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182744,-0.002741,0.003750,0.249972,0,0);}
.m3f_c00107{transform:matrix(0.182759,-0.002741,0.003750,0.249972,0,0);-ms-transform:matrix(0.182759,-0.002741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182759,-0.002741,0.003750,0.249972,0,0);}
.m98_c00107{transform:matrix(0.183054,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183054,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183054,-0.002746,0.003750,0.249972,0,0);}
.m39_c00107{transform:matrix(0.183079,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183079,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183079,-0.002746,0.003750,0.249972,0,0);}
.m106_c00107{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);}
.m111_c00107{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);}
.m7f_c00107{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);}
.mef_c00107{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);}
.m48_c00107{transform:matrix(0.185629,-0.002784,0.003750,0.249972,0,0);-ms-transform:matrix(0.185629,-0.002784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185629,-0.002784,0.003750,0.249972,0,0);}
.m3a_c00107{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);}
.mcf_c00107{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);}
.m86_c00107{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);}
.m4a_c00107{transform:matrix(0.187164,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187164,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187164,-0.002807,0.003750,0.249972,0,0);}
.m110_c00107{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);}
.m103_c00107{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);}
.md9_c00107{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);}
.m57_c00107{transform:matrix(0.189199,-0.002838,0.003750,0.249972,0,0);-ms-transform:matrix(0.189199,-0.002838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189199,-0.002838,0.003750,0.249972,0,0);}
.mf9_c00107{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);}
.mdc_c00107{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);}
.m8_c00107{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);}
.m2b_c00107{transform:matrix(0.190589,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190589,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190589,-0.002859,0.003750,0.249972,0,0);}
.m97_c00107{transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);}
.m8d_c00107{transform:matrix(0.191378,-0.002871,0.003750,0.249972,0,0);-ms-transform:matrix(0.191378,-0.002871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191378,-0.002871,0.003750,0.249972,0,0);}
.m22_c00107{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);}
.ma5_c00107{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);}
.m59_c00107{transform:matrix(0.192168,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192168,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192168,-0.002883,0.003750,0.249972,0,0);}
.m90_c00107{transform:matrix(0.192288,-0.002884,0.003750,0.249972,0,0);-ms-transform:matrix(0.192288,-0.002884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192288,-0.002884,0.003750,0.249972,0,0);}
.m30_c00107{transform:matrix(0.192493,-0.002887,0.003750,0.249972,0,0);-ms-transform:matrix(0.192493,-0.002887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192493,-0.002887,0.003750,0.249972,0,0);}
.m65_c00107{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);}
.m10d_c00107{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);}
.m91_c00107{transform:matrix(0.193158,-0.002897,0.003750,0.249972,0,0);-ms-transform:matrix(0.193158,-0.002897,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193158,-0.002897,0.003750,0.249972,0,0);}
.ma2_c00107{transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);-ms-transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);}
.m117_c00107{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);}
.mbe_c00107{transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);}
.m89_c00107{transform:matrix(0.194318,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194318,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194318,-0.002915,0.003750,0.249972,0,0);}
.ma_c00107{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);}
.m53_c00107{transform:matrix(0.194578,-0.002919,0.003750,0.249972,0,0);-ms-transform:matrix(0.194578,-0.002919,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194578,-0.002919,0.003750,0.249972,0,0);}
.m2d_c00107{transform:matrix(0.195478,-0.002932,0.003750,0.249972,0,0);-ms-transform:matrix(0.195478,-0.002932,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195478,-0.002932,0.003750,0.249972,0,0);}
.m5_c00107{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);}
.m94_c00107{transform:matrix(0.196943,-0.002954,0.003750,0.249972,0,0);-ms-transform:matrix(0.196943,-0.002954,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196943,-0.002954,0.003750,0.249972,0,0);}
.m3b_c00107{transform:matrix(0.197148,-0.002957,0.003750,0.249972,0,0);-ms-transform:matrix(0.197148,-0.002957,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197148,-0.002957,0.003750,0.249972,0,0);}
.me1_c00107{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);}
.m5f_c00107{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);}
.mdf_c00107{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);}
.mf4_c00107{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);}
.m116_c00107{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);}
.mdd_c00107{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);}
.m68_c00107{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);}
.m5b_c00107{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);}
.m84_c00107{transform:matrix(0.198183,-0.002973,0.003750,0.249972,0,0);-ms-transform:matrix(0.198183,-0.002973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198183,-0.002973,0.003750,0.249972,0,0);}
.m47_c00107{transform:matrix(0.198428,-0.002976,0.003750,0.249972,0,0);-ms-transform:matrix(0.198428,-0.002976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198428,-0.002976,0.003750,0.249972,0,0);}
.m62_c00107{transform:matrix(0.198643,-0.002980,0.003750,0.249972,0,0);-ms-transform:matrix(0.198643,-0.002980,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198643,-0.002980,0.003750,0.249972,0,0);}
.m100_c00107{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);}
.mb_c00107{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);}
.m52_c00107{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);}
.m2a_c00107{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);}
.m10b_c00107{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);}
.mdb_c00107{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);}
.ma9_c00107{transform:matrix(0.202387,-0.003036,0.003750,0.249972,0,0);-ms-transform:matrix(0.202387,-0.003036,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202387,-0.003036,0.003750,0.249972,0,0);}
.mb3_c00107{transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);}
.m83_c00107{transform:matrix(0.203842,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203842,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203842,-0.003058,0.003750,0.249972,0,0);}
.mb9_c00107{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);}
.mee_c00107{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);}
.m4c_c00107{transform:matrix(0.204267,-0.003064,0.003750,0.249972,0,0);-ms-transform:matrix(0.204267,-0.003064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204267,-0.003064,0.003750,0.249972,0,0);}
.m60_c00107{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);}
.ma6_c00107{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);}
.mc_c00107{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_c00107{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);}
.mfa_c00107{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);}
.m43_c00107{transform:matrix(0.208052,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208052,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208052,-0.003121,0.003750,0.249972,0,0);}
.m1e_c00107{transform:matrix(0.208442,-0.003127,0.003750,0.249972,0,0);-ms-transform:matrix(0.208442,-0.003127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208442,-0.003127,0.003750,0.249972,0,0);}
.mc0_c00107{transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.208692,-0.003130,0.003750,0.249972,0,0);-ms-transform:matrix(0.208692,-0.003130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208692,-0.003130,0.003750,0.249972,0,0);}
.m76_c00107{transform:matrix(0.208946,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208946,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208946,-0.003134,0.003750,0.249972,0,0);}
.m85_c00107{transform:matrix(0.209341,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209341,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209341,-0.003140,0.003750,0.249972,0,0);}
.m118_c00107{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);}
.md1_c00107{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);}
.mb4_c00107{transform:matrix(0.210091,-0.003151,0.003750,0.249972,0,0);-ms-transform:matrix(0.210091,-0.003151,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210091,-0.003151,0.003750,0.249972,0,0);}
.mc8_c00107{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);}
.m95_c00107{transform:matrix(0.211581,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211581,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211581,-0.003174,0.003750,0.249972,0,0);}
.m7a_c00107{transform:matrix(0.211896,-0.003178,0.003750,0.249972,0,0);-ms-transform:matrix(0.211896,-0.003178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211896,-0.003178,0.003750,0.249972,0,0);}
.md6_c00107{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);}
.md2_c00107{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);}
.mc6_c00107{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);}
.m88_c00107{transform:matrix(0.212721,-0.003191,0.003750,0.249972,0,0);-ms-transform:matrix(0.212721,-0.003191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212721,-0.003191,0.003750,0.249972,0,0);}
.mfe_c00107{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);}
.mb2_c00107{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);}
.mc1_c00107{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);}
.m8c_c00107{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);}
.mc4_c00107{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);}
.m61_c00107{transform:matrix(0.214951,-0.003224,0.003750,0.249972,0,0);-ms-transform:matrix(0.214951,-0.003224,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214951,-0.003224,0.003750,0.249972,0,0);}
.mae_c00107{transform:matrix(0.215436,-0.003232,0.003750,0.249972,0,0);-ms-transform:matrix(0.215436,-0.003232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215436,-0.003232,0.003750,0.249972,0,0);}
.m102_c00107{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);}
.ma1_c00107{transform:matrix(0.217805,-0.003267,0.003750,0.249972,0,0);-ms-transform:matrix(0.217805,-0.003267,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217805,-0.003267,0.003750,0.249972,0,0);}
.m96_c00107{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);}
.m115_c00107{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);}
.m1d_c00107{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);}
.mbd_c00107{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);}
.m67_c00107{transform:matrix(0.220990,-0.003315,0.003750,0.249972,0,0);-ms-transform:matrix(0.220990,-0.003315,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220990,-0.003315,0.003750,0.249972,0,0);}
.m10a_c00107{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);}
.m50_c00107{transform:matrix(0.221605,-0.003324,0.003750,0.249972,0,0);-ms-transform:matrix(0.221605,-0.003324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221605,-0.003324,0.003750,0.249972,0,0);}
.mad_c00107{transform:matrix(0.222245,-0.003334,0.003750,0.249972,0,0);-ms-transform:matrix(0.222245,-0.003334,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222245,-0.003334,0.003750,0.249972,0,0);}
.mbc_c00107{transform:matrix(0.222355,-0.003335,0.003750,0.249972,0,0);-ms-transform:matrix(0.222355,-0.003335,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222355,-0.003335,0.003750,0.249972,0,0);}
.mf8_c00107{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);}
.mf1_c00107{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);}
.m109_c00107{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);}
.m5c_c00107{transform:matrix(0.224465,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224465,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224465,-0.003367,0.003750,0.249972,0,0);}
.mfd_c00107{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);}
.m10_c00107{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);}
.mb0_c00107{transform:matrix(0.226015,-0.003390,0.003750,0.249972,0,0);-ms-transform:matrix(0.226015,-0.003390,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226015,-0.003390,0.003750,0.249972,0,0);}
.maa_c00107{transform:matrix(0.226505,-0.003398,0.003750,0.249972,0,0);-ms-transform:matrix(0.226505,-0.003398,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226505,-0.003398,0.003750,0.249972,0,0);}
.m25_c00107{transform:matrix(0.227004,-0.003405,0.003750,0.249972,0,0);-ms-transform:matrix(0.227004,-0.003405,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227004,-0.003405,0.003750,0.249972,0,0);}
.m7e_c00107{transform:matrix(0.227164,-0.003407,0.003750,0.249972,0,0);-ms-transform:matrix(0.227164,-0.003407,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227164,-0.003407,0.003750,0.249972,0,0);}
.m119_c00107{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);}
.m38_c00107{transform:matrix(0.227869,-0.003418,0.003750,0.249972,0,0);-ms-transform:matrix(0.227869,-0.003418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227869,-0.003418,0.003750,0.249972,0,0);}
.m104_c00107{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);}
.mbf_c00107{transform:matrix(0.230044,-0.003451,0.003750,0.249972,0,0);-ms-transform:matrix(0.230044,-0.003451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230044,-0.003451,0.003750,0.249972,0,0);}
.m87_c00107{transform:matrix(0.230294,-0.003454,0.003750,0.249972,0,0);-ms-transform:matrix(0.230294,-0.003454,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230294,-0.003454,0.003750,0.249972,0,0);}
.mce_c00107{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);}
.m23_c00107{transform:matrix(0.231344,-0.003470,0.003750,0.249972,0,0);-ms-transform:matrix(0.231344,-0.003470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231344,-0.003470,0.003750,0.249972,0,0);}
.me0_c00107{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);}
.ma3_c00107{transform:matrix(0.231844,-0.003478,0.003750,0.249972,0,0);-ms-transform:matrix(0.231844,-0.003478,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231844,-0.003478,0.003750,0.249972,0,0);}
.mca_c00107{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);}
.md0_c00107{transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);}
.mfc_c00107{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);}
.maf_c00107{transform:matrix(0.234714,-0.003521,0.003750,0.249972,0,0);-ms-transform:matrix(0.234714,-0.003521,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234714,-0.003521,0.003750,0.249972,0,0);}
.m8e_c00107{transform:matrix(0.235164,-0.003527,0.003750,0.249972,0,0);-ms-transform:matrix(0.235164,-0.003527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235164,-0.003527,0.003750,0.249972,0,0);}
.m37_c00107{transform:matrix(0.235618,-0.003534,0.003750,0.249972,0,0);-ms-transform:matrix(0.235618,-0.003534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235618,-0.003534,0.003750,0.249972,0,0);}
.mcc_c00107{transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);}
.m78_c00107{transform:matrix(0.235998,-0.003540,0.003750,0.249972,0,0);-ms-transform:matrix(0.235998,-0.003540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235998,-0.003540,0.003750,0.249972,0,0);}
.m8a_c00107{transform:matrix(0.239183,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239183,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239183,-0.003588,0.003750,0.249972,0,0);}
.ma7_c00107{transform:matrix(0.239778,-0.003597,0.003750,0.249972,0,0);-ms-transform:matrix(0.239778,-0.003597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239778,-0.003597,0.003750,0.249972,0,0);}
.mc5_c00107{transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);-ms-transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);}
.m3_c00107{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);}
.mcb_c00107{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);}
.mda_c00107{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m54_c00107{transform:matrix(0.251407,-0.003771,0.003750,0.249972,0,0);-ms-transform:matrix(0.251407,-0.003771,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251407,-0.003771,0.003750,0.249972,0,0);}
.m7_c00107{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);}
.m58_c00107{transform:matrix(0.256691,-0.003850,0.003750,0.249972,0,0);-ms-transform:matrix(0.256691,-0.003850,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256691,-0.003850,0.003750,0.249972,0,0);}
.m73_c00107{transform:matrix(0.258351,-0.003875,0.003750,0.249972,0,0);-ms-transform:matrix(0.258351,-0.003875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258351,-0.003875,0.003750,0.249972,0,0);}
.m6d_c00107{transform:matrix(0.259136,-0.003887,0.003750,0.249972,0,0);-ms-transform:matrix(0.259136,-0.003887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259136,-0.003887,0.003750,0.249972,0,0);}
.mc7_c00107{transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);}
.mc9_c00107{transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);}
.m63_c00107{transform:matrix(0.261476,-0.003922,0.003750,0.249972,0,0);-ms-transform:matrix(0.261476,-0.003922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261476,-0.003922,0.003750,0.249972,0,0);}
.m114_c00107{transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);}
.m69_c00107{transform:matrix(0.269960,-0.004049,0.003750,0.249972,0,0);-ms-transform:matrix(0.269960,-0.004049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269960,-0.004049,0.003750,0.249972,0,0);}
.md7_c00107{transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);}
.mc3_c00107{transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);}
.m66_c00107{transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);-ms-transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);}
.m5d_c00107{transform:matrix(0.277399,-0.004161,0.003750,0.249972,0,0);-ms-transform:matrix(0.277399,-0.004161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277399,-0.004161,0.003750,0.249972,0,0);}
.m70_c00107{transform:matrix(0.278099,-0.004171,0.003750,0.249972,0,0);-ms-transform:matrix(0.278099,-0.004171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278099,-0.004171,0.003750,0.249972,0,0);}
.m36_c00107{transform:matrix(0.278179,-0.004173,0.003750,0.249972,0,0);-ms-transform:matrix(0.278179,-0.004173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278179,-0.004173,0.003750,0.249972,0,0);}
.mf6_c00107{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);}
.m34_c00107{transform:matrix(0.281228,-0.004218,0.003750,0.249972,0,0);-ms-transform:matrix(0.281228,-0.004218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281228,-0.004218,0.003750,0.249972,0,0);}
.md8_c00107{transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);}
.m35_c00107{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);}
.md_c00107{transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296480,0.000000,0.000000,0.250000,0,0);}
.mf3_c00107{transform:matrix(0.309795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309795,0.000000,0.000000,0.250000,0,0);}
.mf7_c00107{transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);}
.m6f_c00107{transform:matrix(0.313320,-0.004700,0.003750,0.249972,0,0);-ms-transform:matrix(0.313320,-0.004700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313320,-0.004700,0.003750,0.249972,0,0);}
.m92_c00107{transform:matrix(0.316399,-0.004746,0.003750,0.249972,0,0);-ms-transform:matrix(0.316399,-0.004746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.316399,-0.004746,0.003750,0.249972,0,0);}
.m6c_c00107{transform:matrix(0.317064,-0.004756,0.003750,0.249972,0,0);-ms-transform:matrix(0.317064,-0.004756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.317064,-0.004756,0.003750,0.249972,0,0);}
.mab_c00107{transform:matrix(0.320379,-0.004806,0.003750,0.249972,0,0);-ms-transform:matrix(0.320379,-0.004806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.320379,-0.004806,0.003750,0.249972,0,0);}
.m113_c00107{transform:matrix(0.321455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321455,0.000000,0.000000,0.250000,0,0);}
.m6e_c00107{transform:matrix(0.334227,-0.005013,0.003750,0.249972,0,0);-ms-transform:matrix(0.334227,-0.005013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.334227,-0.005013,0.003750,0.249972,0,0);}
.me3_c00107{transform:matrix(0.346795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346795,0.000000,0.000000,0.250000,0,0);}
.mb6_c00107{transform:matrix(0.349001,-0.005235,0.003750,0.249972,0,0);-ms-transform:matrix(0.349001,-0.005235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.349001,-0.005235,0.003750,0.249972,0,0);}
.md5_c00107{transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);}
.m4f_c00107{transform:matrix(0.426187,-0.006393,0.003750,0.249972,0,0);-ms-transform:matrix(0.426187,-0.006393,0.003750,0.249972,0,0);-webkit-transform:matrix(0.426187,-0.006393,0.003750,0.249972,0,0);}
.m1_c00107{transform:matrix(0.430915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430915,0.000000,0.000000,0.250000,0,0);}
.me2_c00107{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);}
.m99_c00107{transform:matrix(0.435571,-0.006534,0.003750,0.249972,0,0);-ms-transform:matrix(0.435571,-0.006534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.435571,-0.006534,0.003750,0.249972,0,0);}
.mc2_c00107{transform:matrix(0.436075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436075,0.000000,0.000000,0.250000,0,0);}
.m6a_c00107{transform:matrix(0.475067,-0.007126,0.003750,0.249972,0,0);-ms-transform:matrix(0.475067,-0.007126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.475067,-0.007126,0.003750,0.249972,0,0);}
.mf_c00107{transform:matrix(0.565550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565550,0.000000,0.000000,0.250000,0,0);}
.m64_c00107{transform:matrix(0.666690,-0.010000,0.003750,0.249972,0,0);-ms-transform:matrix(0.666690,-0.010000,0.003750,0.249972,0,0);-webkit-transform:matrix(0.666690,-0.010000,0.003750,0.249972,0,0);}
.md3_c00107{transform:matrix(0.667120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667120,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.776960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776960,0.000000,0.000000,0.250000,0,0);}
.mb8_c00107{transform:matrix(0.898979,-0.013485,0.003750,0.249972,0,0);-ms-transform:matrix(0.898979,-0.013485,0.003750,0.249972,0,0);-webkit-transform:matrix(0.898979,-0.013485,0.003750,0.249972,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;}
.fs17_c00107{font-size:22.050000px;}
.fs12_c00107{font-size:48.300000px;}
.fs10_c00107{font-size:49.350000px;}
.fsf_c00107{font-size:51.450000px;}
.fs2_c00107{font-size:52.500000px;}
.fs11_c00107{font-size:53.550000px;}
.fs1_c00107{font-size:54.600000px;}
.fs18_c00107{font-size:57.750000px;}
.fs14_c00107{font-size:58.800000px;}
.fs15_c00107{font-size:61.950000px;}
.fsb_c00107{font-size:61.956969px;}
.fsa_c00107{font-size:65.107323px;}
.fse_c00107{font-size:68.257678px;}
.fsc_c00107{font-size:69.307796px;}
.fs6_c00107{font-size:70.357914px;}
.fs8_c00107{font-size:71.408032px;}
.fs5_c00107{font-size:72.458150px;}
.fsd_c00107{font-size:73.508268px;}
.fs7_c00107{font-size:75.608505px;}
.fs4_c00107{font-size:76.658623px;}
.fs9_c00107{font-size:79.808977px;}
.fs13_c00107{font-size:85.050000px;}
.fs0_c00107{font-size:114.450000px;}
.fs16_c00107{font-size:126.000000px;}
.fs3_c00107{font-size:134.400000px;}
.y0_c00107{bottom:0.000000px;}
.y3_c00107{bottom:170.787000px;}
.ybb_c00107{bottom:172.800000px;}
.yba_c00107{bottom:187.867500px;}
.yc4_c00107{bottom:191.661000px;}
.yc3_c00107{bottom:209.904000px;}
.y2_c00107{bottom:215.896500px;}
.yc2_c00107{bottom:227.727000px;}
.yb9_c00107{bottom:234.318000px;}
.yb8_c00107{bottom:245.970000px;}
.yb7_c00107{bottom:251.451000px;}
.yc1_c00107{bottom:268.311000px;}
.yb6_c00107{bottom:269.230500px;}
.yc0_c00107{bottom:287.052000px;}
.yb5_c00107{bottom:287.457000px;}
.yaa_c00107{bottom:330.875310px;}
.yab_c00107{bottom:330.875437px;}
.yae_c00107{bottom:330.875662px;}
.yb4_c00107{bottom:330.875775px;}
.yb1_c00107{bottom:330.875805px;}
.yb3_c00107{bottom:330.875842px;}
.yb2_c00107{bottom:330.875910px;}
.yad_c00107{bottom:330.875925px;}
.yac_c00107{bottom:330.875970px;}
.yaf_c00107{bottom:330.876217px;}
.yb0_c00107{bottom:330.876300px;}
.ya9_c00107{bottom:352.972620px;}
.ya8_c00107{bottom:352.972815px;}
.ya7_c00107{bottom:352.973482px;}
.ya6_c00107{bottom:352.973722px;}
.ya5_c00107{bottom:352.974067px;}
.ya3_c00107{bottom:352.974097px;}
.ya2_c00107{bottom:352.974232px;}
.ya4_c00107{bottom:352.974330px;}
.ya1_c00107{bottom:352.974555px;}
.y9c_c00107{bottom:376.382032px;}
.y9d_c00107{bottom:376.382460px;}
.y9f_c00107{bottom:376.382475px;}
.y9b_c00107{bottom:376.382767px;}
.y9a_c00107{bottom:376.382812px;}
.ya0_c00107{bottom:376.382857px;}
.y9e_c00107{bottom:376.382865px;}
.y99_c00107{bottom:376.383307px;}
.y98_c00107{bottom:376.383675px;}
.y94_c00107{bottom:399.173767px;}
.y8f_c00107{bottom:399.174060px;}
.y93_c00107{bottom:399.174135px;}
.y90_c00107{bottom:399.174165px;}
.y95_c00107{bottom:399.174172px;}
.y92_c00107{bottom:399.174780px;}
.y91_c00107{bottom:399.174847px;}
.y96_c00107{bottom:399.174855px;}
.y97_c00107{bottom:399.175387px;}
.y8e_c00107{bottom:421.744492px;}
.y8d_c00107{bottom:444.812827px;}
.y8a_c00107{bottom:444.812835px;}
.y88_c00107{bottom:444.813165px;}
.y8b_c00107{bottom:444.813390px;}
.y8c_c00107{bottom:444.813472px;}
.y89_c00107{bottom:444.813547px;}
.y87_c00107{bottom:444.813660px;}
.ybf_c00107{bottom:457.110000px;}
.y81_c00107{bottom:468.049117px;}
.y80_c00107{bottom:468.049462px;}
.y82_c00107{bottom:468.049582px;}
.y84_c00107{bottom:468.049875px;}
.y83_c00107{bottom:468.050093px;}
.y7f_c00107{bottom:468.050130px;}
.y85_c00107{bottom:468.050385px;}
.y86_c00107{bottom:468.050790px;}
.y78_c00107{bottom:489.466485px;}
.y79_c00107{bottom:489.939525px;}
.y7a_c00107{bottom:490.403325px;}
.y7b_c00107{bottom:491.036362px;}
.y7c_c00107{bottom:491.281995px;}
.y7d_c00107{bottom:491.929868px;}
.y7e_c00107{bottom:492.820957px;}
.y73_c00107{bottom:513.506520px;}
.y72_c00107{bottom:513.507083px;}
.y74_c00107{bottom:513.507247px;}
.y76_c00107{bottom:513.507308px;}
.y70_c00107{bottom:513.507495px;}
.y77_c00107{bottom:513.507563px;}
.y71_c00107{bottom:513.507727px;}
.y75_c00107{bottom:513.507803px;}
.y6f_c00107{bottom:513.508140px;}
.y64_c00107{bottom:534.831503px;}
.y65_c00107{bottom:535.166670px;}
.y66_c00107{bottom:535.472168px;}
.y67_c00107{bottom:535.783058px;}
.y68_c00107{bottom:536.035627px;}
.y69_c00107{bottom:536.590230px;}
.y6a_c00107{bottom:536.744370px;}
.y6b_c00107{bottom:537.029902px;}
.y6c_c00107{bottom:537.314903px;}
.y6d_c00107{bottom:537.444232px;}
.y6e_c00107{bottom:537.859237px;}
.y62_c00107{bottom:559.486598px;}
.y61_c00107{bottom:559.486620px;}
.y60_c00107{bottom:559.486792px;}
.y63_c00107{bottom:559.487280px;}
.y56_c00107{bottom:580.198650px;}
.y57_c00107{bottom:580.922640px;}
.y58_c00107{bottom:581.170763px;}
.y59_c00107{bottom:581.445840px;}
.y5a_c00107{bottom:582.171660px;}
.y5b_c00107{bottom:582.414638px;}
.y5c_c00107{bottom:582.614558px;}
.y5d_c00107{bottom:582.903480px;}
.y5e_c00107{bottom:583.200975px;}
.y5f_c00107{bottom:583.527525px;}
.y4d_c00107{bottom:603.409852px;}
.y4e_c00107{bottom:603.759818px;}
.y4f_c00107{bottom:604.002120px;}
.y50_c00107{bottom:604.392653px;}
.y51_c00107{bottom:604.565648px;}
.y52_c00107{bottom:605.018603px;}
.y53_c00107{bottom:605.204633px;}
.y54_c00107{bottom:605.432310px;}
.y55_c00107{bottom:605.940128px;}
.y45_c00107{bottom:625.024005px;}
.y46_c00107{bottom:625.367573px;}
.y47_c00107{bottom:625.834380px;}
.y48_c00107{bottom:626.371575px;}
.y49_c00107{bottom:627.078345px;}
.y4a_c00107{bottom:627.576203px;}
.y4b_c00107{bottom:627.885413px;}
.y4c_c00107{bottom:628.521052px;}
.ybe_c00107{bottom:628.831500px;}
.y43_c00107{bottom:647.973150px;}
.y44_c00107{bottom:649.192560px;}
.y3c_c00107{bottom:670.932345px;}
.y3d_c00107{bottom:671.404387px;}
.y3e_c00107{bottom:672.427582px;}
.y3f_c00107{bottom:672.760680px;}
.y40_c00107{bottom:673.428562px;}
.y41_c00107{bottom:674.007225px;}
.y42_c00107{bottom:674.649495px;}
.y34_c00107{bottom:694.153905px;}
.y35_c00107{bottom:694.694467px;}
.y36_c00107{bottom:695.245845px;}
.y37_c00107{bottom:695.991188px;}
.y38_c00107{bottom:696.192090px;}
.y39_c00107{bottom:696.688118px;}
.y3a_c00107{bottom:697.119060px;}
.y3b_c00107{bottom:697.589130px;}
.y2d_c00107{bottom:716.838563px;}
.y2e_c00107{bottom:717.515017px;}
.y2f_c00107{bottom:717.842265px;}
.y30_c00107{bottom:718.483552px;}
.y31_c00107{bottom:719.296125px;}
.y32_c00107{bottom:719.574863px;}
.y33_c00107{bottom:719.873497px;}
.y2a_c00107{bottom:741.962310px;}
.y29_c00107{bottom:741.962632px;}
.y2b_c00107{bottom:741.962843px;}
.y2c_c00107{bottom:741.962948px;}
.y20_c00107{bottom:762.204660px;}
.y21_c00107{bottom:762.569790px;}
.y22_c00107{bottom:763.333867px;}
.y23_c00107{bottom:763.877850px;}
.y24_c00107{bottom:764.512485px;}
.y25_c00107{bottom:764.886323px;}
.y26_c00107{bottom:765.898778px;}
.y27_c00107{bottom:766.628070px;}
.y28_c00107{bottom:767.747783px;}
.y18_c00107{bottom:784.618538px;}
.y19_c00107{bottom:785.054858px;}
.y1a_c00107{bottom:785.696040px;}
.y1b_c00107{bottom:786.079208px;}
.y1c_c00107{bottom:786.532327px;}
.y1d_c00107{bottom:787.352918px;}
.y1e_c00107{bottom:787.814453px;}
.y1f_c00107{bottom:788.486250px;}
.y10_c00107{bottom:807.571478px;}
.y11_c00107{bottom:808.400498px;}
.y12_c00107{bottom:809.114828px;}
.y13_c00107{bottom:809.378467px;}
.y14_c00107{bottom:810.082298px;}
.y15_c00107{bottom:810.656880px;}
.y16_c00107{bottom:811.442805px;}
.y17_c00107{bottom:811.882658px;}
.y5_c00107{bottom:830.523000px;}
.y6_c00107{bottom:830.846482px;}
.y7_c00107{bottom:831.248288px;}
.y8_c00107{bottom:831.924863px;}
.y9_c00107{bottom:832.184085px;}
.ya_c00107{bottom:832.742265px;}
.yb_c00107{bottom:833.131942px;}
.yc_c00107{bottom:833.694037px;}
.yd_c00107{bottom:834.278453px;}
.ye_c00107{bottom:834.784703px;}
.yf_c00107{bottom:835.670280px;}
.y4_c00107{bottom:877.461000px;}
.y1_c00107{bottom:917.536500px;}
.ybd_c00107{bottom:936.630000px;}
.ybc_c00107{bottom:939.060000px;}
.h19_c00107{height:22.050000px;}
.h14_c00107{height:48.300000px;}
.h12_c00107{height:49.350000px;}
.h11_c00107{height:51.450000px;}
.h4_c00107{height:52.500000px;}
.h13_c00107{height:53.550000px;}
.h3_c00107{height:54.600000px;}
.h1a_c00107{height:57.750000px;}
.h16_c00107{height:58.800000px;}
.h17_c00107{height:61.950000px;}
.hd_c00107{height:61.956969px;}
.hc_c00107{height:65.107323px;}
.h10_c00107{height:68.257678px;}
.he_c00107{height:69.307796px;}
.h8_c00107{height:70.357914px;}
.ha_c00107{height:71.408032px;}
.h7_c00107{height:72.458150px;}
.hf_c00107{height:73.508268px;}
.h9_c00107{height:75.608505px;}
.h6_c00107{height:76.658623px;}
.hb_c00107{height:79.808977px;}
.h15_c00107{height:85.050000px;}
.h2_c00107{height:114.450000px;}
.h18_c00107{height:126.000000px;}
.h5_c00107{height:134.400000px;}
.h0_c00107{height:1008.450000px;}
.h1_c00107{height:1008.750000px;}
.w0_c00107{width:676.890000px;}
.w1_c00107{width:677.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:86.130000px;}
.x75_c00107{left:143.370000px;}
.x4_c00107{left:144.450000px;}
.x2_c00107{left:158.220000px;}
.x71_c00107{left:161.453963px;}
.x6e_c00107{left:165.506460px;}
.x5_c00107{left:166.860000px;}
.x84_c00107{left:171.450000px;}
.x3c_c00107{left:176.226578px;}
.x11_c00107{left:177.310500px;}
.x43_c00107{left:179.459775px;}
.x78_c00107{left:185.760000px;}
.x6_c00107{left:192.510000px;}
.x76_c00107{left:196.290000px;}
.x12_c00107{left:198.876000px;}
.x28_c00107{left:201.921105px;}
.x65_c00107{left:203.311695px;}
.x23_c00107{left:204.889072px;}
.x5f_c00107{left:207.904545px;}
.xb_c00107{left:210.600000px;}
.x6a_c00107{left:212.491193px;}
.x72_c00107{left:214.109798px;}
.x7d_c00107{left:215.460000px;}
.x57_c00107{left:217.826963px;}
.x7_c00107{left:220.590000px;}
.x38_c00107{left:222.322095px;}
.x13_c00107{left:225.663000px;}
.x1c_c00107{left:229.120417px;}
.x79_c00107{left:230.310000px;}
.x77_c00107{left:231.390000px;}
.x34_c00107{left:233.952480px;}
.x66_c00107{left:238.145025px;}
.x8_c00107{left:240.030000px;}
.x44_c00107{left:241.786643px;}
.x24_c00107{left:244.933965px;}
.x4e_c00107{left:248.545688px;}
.x49_c00107{left:250.131930px;}
.x29_c00107{left:252.859605px;}
.x58_c00107{left:256.097490px;}
.x35_c00107{left:261.270218px;}
.x60_c00107{left:263.685578px;}
.x7b_c00107{left:267.300000px;}
.x25_c00107{left:268.878105px;}
.x14_c00107{left:270.768000px;}
.x3_c00107{left:272.430000px;}
.x1d_c00107{left:273.741742px;}
.x7a_c00107{left:279.720000px;}
.x3d_c00107{left:283.110698px;}
.x9_c00107{left:284.580000px;}
.x15_c00107{left:288.049500px;}
.x2a_c00107{left:289.125105px;}
.x1e_c00107{left:290.217495px;}
.x85_c00107{left:292.950000px;}
.x59_c00107{left:294.927563px;}
.xc_c00107{left:297.270000px;}
.x4a_c00107{left:298.972560px;}
.x4f_c00107{left:300.929625px;}
.x3e_c00107{left:306.917558px;}
.x54_c00107{left:311.324775px;}
.xa_c00107{left:314.550000px;}
.x42_c00107{left:316.165080px;}
.x4b_c00107{left:320.607833px;}
.x16_c00107{left:325.261500px;}
.x30_c00107{left:326.447655px;}
.x69_c00107{left:328.874393px;}
.x39_c00107{left:330.374955px;}
.x2b_c00107{left:331.434105px;}
.x67_c00107{left:332.655788px;}
.x1f_c00107{left:334.238842px;}
.x45_c00107{left:337.420500px;}
.xd_c00107{left:338.850000px;}
.x31_c00107{left:343.730048px;}
.x55_c00107{left:345.619493px;}
.x3a_c00107{left:347.069198px;}
.x26_c00107{left:348.490912px;}
.x17_c00107{left:351.240000px;}
.x86_c00107{left:352.350000px;}
.x3f_c00107{left:354.643778px;}
.x2c_c00107{left:356.356605px;}
.x6b_c00107{left:357.497115px;}
.x83_c00107{left:358.560000px;}
.x7c_c00107{left:359.640000px;}
.x73_c00107{left:368.566538px;}
.x20_c00107{left:370.143802px;}
.x68_c00107{left:371.269973px;}
.xe_c00107{left:373.410000px;}
.x46_c00107{left:375.712148px;}
.x27_c00107{left:377.359485px;}
.x56_c00107{left:379.372575px;}
.x32_c00107{left:382.074165px;}
.x7e_c00107{left:386.910000px;}
.x18_c00107{left:388.713000px;}
.x88_c00107{left:392.310000px;}
.x40_c00107{left:396.021908px;}
.x50_c00107{left:397.823393px;}
.x47_c00107{left:399.526868px;}
.x61_c00107{left:402.463403px;}
.x33_c00107{left:404.486205px;}
.x36_c00107{left:405.683220px;}
.xf_c00107{left:411.480000px;}
.x7f_c00107{left:413.370000px;}
.x5a_c00107{left:415.127685px;}
.x90_c00107{left:416.610000px;}
.x51_c00107{left:417.852900px;}
.x21_c00107{left:419.238060px;}
.x9b_c00107{left:421.200000px;}
.x2d_c00107{left:423.853605px;}
.x10_c00107{left:426.060000px;}
.x19_c00107{left:427.674000px;}
.x4c_c00107{left:428.896695px;}
.x37_c00107{left:430.593345px;}
.x95_c00107{left:434.430000px;}
.x6f_c00107{left:437.696205px;}
.x80_c00107{left:439.560000px;}
.x41_c00107{left:441.940605px;}
.x22_c00107{left:446.761155px;}
.x48_c00107{left:448.404330px;}
.x5b_c00107{left:450.766920px;}
.x6c_c00107{left:455.248598px;}
.x1a_c00107{left:461.424000px;}
.x3b_c00107{left:463.510440px;}
.x81_c00107{left:469.530000px;}
.x91_c00107{left:470.880000px;}
.x2e_c00107{left:472.473105px;}
.x52_c00107{left:476.451788px;}
.x63_c00107{left:478.473113px;}
.x89_c00107{left:482.220000px;}
.x62_c00107{left:483.474263px;}
.x5c_c00107{left:486.470678px;}
.x9c_c00107{left:490.860000px;}
.x4d_c00107{left:492.357855px;}
.x70_c00107{left:495.751778px;}
.x64_c00107{left:499.804905px;}
.x6d_c00107{left:500.884358px;}
.x5d_c00107{left:502.594365px;}
.x74_c00107{left:504.662160px;}
.x53_c00107{left:509.124240px;}
.x96_c00107{left:510.570000px;}
.x8e_c00107{left:513.270000px;}
.x1b_c00107{left:520.462500px;}
.x9d_c00107{left:525.690000px;}
.x97_c00107{left:528.660000px;}
.x92_c00107{left:532.710000px;}
.x8a_c00107{left:540.270000px;}
.x8f_c00107{left:543.510000px;}
.x2f_c00107{left:547.120605px;}
.x5e_c00107{left:554.466810px;}
.x93_c00107{left:556.470000px;}
.x8c_c00107{left:570.240000px;}
.x9e_c00107{left:572.130000px;}
.x8d_c00107{left:579.150000px;}
.x9f_c00107{left:581.850000px;}
.x94_c00107{left:587.250000px;}
.x98_c00107{left:591.030000px;}
.x82_c00107{left:596.970000px;}
.x99_c00107{left:601.020000px;}
.x9a_c00107{left:631.800000px;}
.x87_c00107{left:633.960000px;}
.x8b_c00107{left:649.620000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:0.000000pt;}
.fs17_c00107{font-size:19.600000pt;}
.fs12_c00107{font-size:42.933333pt;}
.fs10_c00107{font-size:43.866667pt;}
.fsf_c00107{font-size:45.733333pt;}
.fs2_c00107{font-size:46.666667pt;}
.fs11_c00107{font-size:47.600000pt;}
.fs1_c00107{font-size:48.533333pt;}
.fs18_c00107{font-size:51.333333pt;}
.fs14_c00107{font-size:52.266667pt;}
.fs15_c00107{font-size:55.066667pt;}
.fsb_c00107{font-size:55.072861pt;}
.fsa_c00107{font-size:57.873176pt;}
.fse_c00107{font-size:60.673491pt;}
.fsc_c00107{font-size:61.606930pt;}
.fs6_c00107{font-size:62.540368pt;}
.fs8_c00107{font-size:63.473806pt;}
.fs5_c00107{font-size:64.407245pt;}
.fsd_c00107{font-size:65.340683pt;}
.fs7_c00107{font-size:67.207560pt;}
.fs4_c00107{font-size:68.140998pt;}
.fs9_c00107{font-size:70.941313pt;}
.fs13_c00107{font-size:75.600000pt;}
.fs0_c00107{font-size:101.733333pt;}
.fs16_c00107{font-size:112.000000pt;}
.fs3_c00107{font-size:119.466667pt;}
.y0_c00107{bottom:0.000000pt;}
.y3_c00107{bottom:151.810667pt;}
.ybb_c00107{bottom:153.600000pt;}
.yba_c00107{bottom:166.993333pt;}
.yc4_c00107{bottom:170.365333pt;}
.yc3_c00107{bottom:186.581333pt;}
.y2_c00107{bottom:191.908000pt;}
.yc2_c00107{bottom:202.424000pt;}
.yb9_c00107{bottom:208.282667pt;}
.yb8_c00107{bottom:218.640000pt;}
.yb7_c00107{bottom:223.512000pt;}
.yc1_c00107{bottom:238.498667pt;}
.yb6_c00107{bottom:239.316000pt;}
.yc0_c00107{bottom:255.157333pt;}
.yb5_c00107{bottom:255.517333pt;}
.yaa_c00107{bottom:294.111387pt;}
.yab_c00107{bottom:294.111500pt;}
.yae_c00107{bottom:294.111700pt;}
.yb4_c00107{bottom:294.111800pt;}
.yb1_c00107{bottom:294.111827pt;}
.yb3_c00107{bottom:294.111860pt;}
.yb2_c00107{bottom:294.111920pt;}
.yad_c00107{bottom:294.111933pt;}
.yac_c00107{bottom:294.111973pt;}
.yaf_c00107{bottom:294.112193pt;}
.yb0_c00107{bottom:294.112267pt;}
.ya9_c00107{bottom:313.753440pt;}
.ya8_c00107{bottom:313.753613pt;}
.ya7_c00107{bottom:313.754207pt;}
.ya6_c00107{bottom:313.754420pt;}
.ya5_c00107{bottom:313.754727pt;}
.ya3_c00107{bottom:313.754753pt;}
.ya2_c00107{bottom:313.754873pt;}
.ya4_c00107{bottom:313.754960pt;}
.ya1_c00107{bottom:313.755160pt;}
.y9c_c00107{bottom:334.561807pt;}
.y9d_c00107{bottom:334.562187pt;}
.y9f_c00107{bottom:334.562200pt;}
.y9b_c00107{bottom:334.562460pt;}
.y9a_c00107{bottom:334.562500pt;}
.ya0_c00107{bottom:334.562540pt;}
.y9e_c00107{bottom:334.562547pt;}
.y99_c00107{bottom:334.562940pt;}
.y98_c00107{bottom:334.563267pt;}
.y94_c00107{bottom:354.821127pt;}
.y8f_c00107{bottom:354.821387pt;}
.y93_c00107{bottom:354.821453pt;}
.y90_c00107{bottom:354.821480pt;}
.y95_c00107{bottom:354.821487pt;}
.y92_c00107{bottom:354.822027pt;}
.y91_c00107{bottom:354.822087pt;}
.y96_c00107{bottom:354.822093pt;}
.y97_c00107{bottom:354.822567pt;}
.y8e_c00107{bottom:374.883993pt;}
.y8d_c00107{bottom:395.389180pt;}
.y8a_c00107{bottom:395.389187pt;}
.y88_c00107{bottom:395.389480pt;}
.y8b_c00107{bottom:395.389680pt;}
.y8c_c00107{bottom:395.389753pt;}
.y89_c00107{bottom:395.389820pt;}
.y87_c00107{bottom:395.389920pt;}
.ybf_c00107{bottom:406.320000pt;}
.y81_c00107{bottom:416.043660pt;}
.y80_c00107{bottom:416.043967pt;}
.y82_c00107{bottom:416.044073pt;}
.y84_c00107{bottom:416.044333pt;}
.y83_c00107{bottom:416.044527pt;}
.y7f_c00107{bottom:416.044560pt;}
.y85_c00107{bottom:416.044787pt;}
.y86_c00107{bottom:416.045147pt;}
.y78_c00107{bottom:435.081320pt;}
.y79_c00107{bottom:435.501800pt;}
.y7a_c00107{bottom:435.914067pt;}
.y7b_c00107{bottom:436.476767pt;}
.y7c_c00107{bottom:436.695107pt;}
.y7d_c00107{bottom:437.270993pt;}
.y7e_c00107{bottom:438.063073pt;}
.y73_c00107{bottom:456.450240pt;}
.y72_c00107{bottom:456.450740pt;}
.y74_c00107{bottom:456.450887pt;}
.y76_c00107{bottom:456.450940pt;}
.y70_c00107{bottom:456.451107pt;}
.y77_c00107{bottom:456.451167pt;}
.y71_c00107{bottom:456.451313pt;}
.y75_c00107{bottom:456.451380pt;}
.y6f_c00107{bottom:456.451680pt;}
.y64_c00107{bottom:475.405780pt;}
.y65_c00107{bottom:475.703707pt;}
.y66_c00107{bottom:475.975260pt;}
.y67_c00107{bottom:476.251607pt;}
.y68_c00107{bottom:476.476113pt;}
.y69_c00107{bottom:476.969093pt;}
.y6a_c00107{bottom:477.106107pt;}
.y6b_c00107{bottom:477.359913pt;}
.y6c_c00107{bottom:477.613247pt;}
.y6d_c00107{bottom:477.728207pt;}
.y6e_c00107{bottom:478.097100pt;}
.y62_c00107{bottom:497.321420pt;}
.y61_c00107{bottom:497.321440pt;}
.y60_c00107{bottom:497.321593pt;}
.y63_c00107{bottom:497.322027pt;}
.y56_c00107{bottom:515.732133pt;}
.y57_c00107{bottom:516.375680pt;}
.y58_c00107{bottom:516.596233pt;}
.y59_c00107{bottom:516.840747pt;}
.y5a_c00107{bottom:517.485920pt;}
.y5b_c00107{bottom:517.701900pt;}
.y5c_c00107{bottom:517.879607pt;}
.y5d_c00107{bottom:518.136427pt;}
.y5e_c00107{bottom:518.400867pt;}
.y5f_c00107{bottom:518.691133pt;}
.y4d_c00107{bottom:536.364313pt;}
.y4e_c00107{bottom:536.675393pt;}
.y4f_c00107{bottom:536.890773pt;}
.y50_c00107{bottom:537.237913pt;}
.y51_c00107{bottom:537.391687pt;}
.y52_c00107{bottom:537.794313pt;}
.y53_c00107{bottom:537.959673pt;}
.y54_c00107{bottom:538.162053pt;}
.y55_c00107{bottom:538.613447pt;}
.y45_c00107{bottom:555.576893pt;}
.y46_c00107{bottom:555.882287pt;}
.y47_c00107{bottom:556.297227pt;}
.y48_c00107{bottom:556.774733pt;}
.y49_c00107{bottom:557.402973pt;}
.y4a_c00107{bottom:557.845513pt;}
.y4b_c00107{bottom:558.120367pt;}
.y4c_c00107{bottom:558.685380pt;}
.ybe_c00107{bottom:558.961333pt;}
.y43_c00107{bottom:575.976133pt;}
.y44_c00107{bottom:577.060053pt;}
.y3c_c00107{bottom:596.384307pt;}
.y3d_c00107{bottom:596.803900pt;}
.y3e_c00107{bottom:597.713407pt;}
.y3f_c00107{bottom:598.009493pt;}
.y40_c00107{bottom:598.603167pt;}
.y41_c00107{bottom:599.117533pt;}
.y42_c00107{bottom:599.688440pt;}
.y34_c00107{bottom:617.025693pt;}
.y35_c00107{bottom:617.506193pt;}
.y36_c00107{bottom:617.996307pt;}
.y37_c00107{bottom:618.658833pt;}
.y38_c00107{bottom:618.837413pt;}
.y39_c00107{bottom:619.278327pt;}
.y3a_c00107{bottom:619.661387pt;}
.y3b_c00107{bottom:620.079227pt;}
.y2d_c00107{bottom:637.189833pt;}
.y2e_c00107{bottom:637.791127pt;}
.y2f_c00107{bottom:638.082013pt;}
.y30_c00107{bottom:638.652047pt;}
.y31_c00107{bottom:639.374333pt;}
.y32_c00107{bottom:639.622100pt;}
.y33_c00107{bottom:639.887553pt;}
.y2a_c00107{bottom:659.522053pt;}
.y29_c00107{bottom:659.522340pt;}
.y2b_c00107{bottom:659.522527pt;}
.y2c_c00107{bottom:659.522620pt;}
.y20_c00107{bottom:677.515253pt;}
.y21_c00107{bottom:677.839813pt;}
.y22_c00107{bottom:678.518993pt;}
.y23_c00107{bottom:679.002533pt;}
.y24_c00107{bottom:679.566653pt;}
.y25_c00107{bottom:679.898953pt;}
.y26_c00107{bottom:680.798913pt;}
.y27_c00107{bottom:681.447173pt;}
.y28_c00107{bottom:682.442473pt;}
.y18_c00107{bottom:697.438700pt;}
.y19_c00107{bottom:697.826540pt;}
.y1a_c00107{bottom:698.396480pt;}
.y1b_c00107{bottom:698.737073pt;}
.y1c_c00107{bottom:699.139847pt;}
.y1d_c00107{bottom:699.869260pt;}
.y1e_c00107{bottom:700.279513pt;}
.y1f_c00107{bottom:700.876667pt;}
.y10_c00107{bottom:717.841313pt;}
.y11_c00107{bottom:718.578220pt;}
.y12_c00107{bottom:719.213180pt;}
.y13_c00107{bottom:719.447527pt;}
.y14_c00107{bottom:720.073153pt;}
.y15_c00107{bottom:720.583893pt;}
.y16_c00107{bottom:721.282493pt;}
.y17_c00107{bottom:721.673473pt;}
.y5_c00107{bottom:738.242667pt;}
.y6_c00107{bottom:738.530207pt;}
.y7_c00107{bottom:738.887367pt;}
.y8_c00107{bottom:739.488767pt;}
.y9_c00107{bottom:739.719187pt;}
.ya_c00107{bottom:740.215347pt;}
.yb_c00107{bottom:740.561727pt;}
.yc_c00107{bottom:741.061367pt;}
.yd_c00107{bottom:741.580847pt;}
.ye_c00107{bottom:742.030847pt;}
.yf_c00107{bottom:742.818027pt;}
.y4_c00107{bottom:779.965333pt;}
.y1_c00107{bottom:815.588000pt;}
.ybd_c00107{bottom:832.560000pt;}
.ybc_c00107{bottom:834.720000pt;}
.h19_c00107{height:19.600000pt;}
.h14_c00107{height:42.933333pt;}
.h12_c00107{height:43.866667pt;}
.h11_c00107{height:45.733333pt;}
.h4_c00107{height:46.666667pt;}
.h13_c00107{height:47.600000pt;}
.h3_c00107{height:48.533333pt;}
.h1a_c00107{height:51.333333pt;}
.h16_c00107{height:52.266667pt;}
.h17_c00107{height:55.066667pt;}
.hd_c00107{height:55.072861pt;}
.hc_c00107{height:57.873176pt;}
.h10_c00107{height:60.673491pt;}
.he_c00107{height:61.606930pt;}
.h8_c00107{height:62.540368pt;}
.ha_c00107{height:63.473806pt;}
.h7_c00107{height:64.407245pt;}
.hf_c00107{height:65.340683pt;}
.h9_c00107{height:67.207560pt;}
.h6_c00107{height:68.140998pt;}
.hb_c00107{height:70.941313pt;}
.h15_c00107{height:75.600000pt;}
.h2_c00107{height:101.733333pt;}
.h18_c00107{height:112.000000pt;}
.h5_c00107{height:119.466667pt;}
.h0_c00107{height:896.400000pt;}
.h1_c00107{height:896.666667pt;}
.w0_c00107{width:601.680000pt;}
.w1_c00107{width:602.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:76.560000pt;}
.x75_c00107{left:127.440000pt;}
.x4_c00107{left:128.400000pt;}
.x2_c00107{left:140.640000pt;}
.x71_c00107{left:143.514633pt;}
.x6e_c00107{left:147.116853pt;}
.x5_c00107{left:148.320000pt;}
.x84_c00107{left:152.400000pt;}
.x3c_c00107{left:156.645847pt;}
.x11_c00107{left:157.609333pt;}
.x43_c00107{left:159.519800pt;}
.x78_c00107{left:165.120000pt;}
.x6_c00107{left:171.120000pt;}
.x76_c00107{left:174.480000pt;}
.x12_c00107{left:176.778667pt;}
.x28_c00107{left:179.485427pt;}
.x65_c00107{left:180.721507pt;}
.x23_c00107{left:182.123620pt;}
.x5f_c00107{left:184.804040pt;}
.xb_c00107{left:187.200000pt;}
.x6a_c00107{left:188.881060pt;}
.x72_c00107{left:190.319820pt;}
.x7d_c00107{left:191.520000pt;}
.x57_c00107{left:193.623967pt;}
.x7_c00107{left:196.080000pt;}
.x38_c00107{left:197.619640pt;}
.x13_c00107{left:200.589333pt;}
.x1c_c00107{left:203.662593pt;}
.x79_c00107{left:204.720000pt;}
.x77_c00107{left:205.680000pt;}
.x34_c00107{left:207.957760pt;}
.x66_c00107{left:211.684467pt;}
.x8_c00107{left:213.360000pt;}
.x44_c00107{left:214.921460pt;}
.x24_c00107{left:217.719080pt;}
.x4e_c00107{left:220.929500pt;}
.x49_c00107{left:222.339493pt;}
.x29_c00107{left:224.764093pt;}
.x58_c00107{left:227.642213pt;}
.x35_c00107{left:232.240193pt;}
.x60_c00107{left:234.387180pt;}
.x7b_c00107{left:237.600000pt;}
.x25_c00107{left:239.002760pt;}
.x14_c00107{left:240.682667pt;}
.x3_c00107{left:242.160000pt;}
.x1d_c00107{left:243.325993pt;}
.x7a_c00107{left:248.640000pt;}
.x3d_c00107{left:251.653953pt;}
.x9_c00107{left:252.960000pt;}
.x15_c00107{left:256.044000pt;}
.x2a_c00107{left:257.000093pt;}
.x1e_c00107{left:257.971107pt;}
.x85_c00107{left:260.400000pt;}
.x59_c00107{left:262.157833pt;}
.xc_c00107{left:264.240000pt;}
.x4a_c00107{left:265.753387pt;}
.x4f_c00107{left:267.493000pt;}
.x3e_c00107{left:272.815607pt;}
.x54_c00107{left:276.733133pt;}
.xa_c00107{left:279.600000pt;}
.x42_c00107{left:281.035627pt;}
.x4b_c00107{left:284.984740pt;}
.x16_c00107{left:289.121333pt;}
.x30_c00107{left:290.175693pt;}
.x69_c00107{left:292.332793pt;}
.x39_c00107{left:293.666627pt;}
.x2b_c00107{left:294.608093pt;}
.x67_c00107{left:295.694033pt;}
.x1f_c00107{left:297.101193pt;}
.x45_c00107{left:299.929333pt;}
.xd_c00107{left:301.200000pt;}
.x31_c00107{left:305.537820pt;}
.x55_c00107{left:307.217327pt;}
.x3a_c00107{left:308.505953pt;}
.x26_c00107{left:309.769700pt;}
.x17_c00107{left:312.213333pt;}
.x86_c00107{left:313.200000pt;}
.x3f_c00107{left:315.238913pt;}
.x2c_c00107{left:316.761427pt;}
.x6b_c00107{left:317.775213pt;}
.x83_c00107{left:318.720000pt;}
.x7c_c00107{left:319.680000pt;}
.x73_c00107{left:327.614700pt;}
.x20_c00107{left:329.016713pt;}
.x68_c00107{left:330.017753pt;}
.xe_c00107{left:331.920000pt;}
.x46_c00107{left:333.966353pt;}
.x27_c00107{left:335.430653pt;}
.x56_c00107{left:337.220067pt;}
.x32_c00107{left:339.621480pt;}
.x7e_c00107{left:343.920000pt;}
.x18_c00107{left:345.522667pt;}
.x88_c00107{left:348.720000pt;}
.x40_c00107{left:352.019473pt;}
.x50_c00107{left:353.620793pt;}
.x47_c00107{left:355.134993pt;}
.x61_c00107{left:357.745247pt;}
.x33_c00107{left:359.543293pt;}
.x36_c00107{left:360.607307pt;}
.xf_c00107{left:365.760000pt;}
.x7f_c00107{left:367.440000pt;}
.x5a_c00107{left:369.002387pt;}
.x90_c00107{left:370.320000pt;}
.x51_c00107{left:371.424800pt;}
.x21_c00107{left:372.656053pt;}
.x9b_c00107{left:374.400000pt;}
.x2d_c00107{left:376.758760pt;}
.x10_c00107{left:378.720000pt;}
.x19_c00107{left:380.154667pt;}
.x4c_c00107{left:381.241507pt;}
.x37_c00107{left:382.749640pt;}
.x95_c00107{left:386.160000pt;}
.x6f_c00107{left:389.063293pt;}
.x80_c00107{left:390.720000pt;}
.x41_c00107{left:392.836093pt;}
.x22_c00107{left:397.121027pt;}
.x48_c00107{left:398.581627pt;}
.x5b_c00107{left:400.681707pt;}
.x6c_c00107{left:404.665420pt;}
.x1a_c00107{left:410.154667pt;}
.x3b_c00107{left:412.009280pt;}
.x81_c00107{left:417.360000pt;}
.x91_c00107{left:418.560000pt;}
.x2e_c00107{left:419.976093pt;}
.x52_c00107{left:423.512700pt;}
.x63_c00107{left:425.309433pt;}
.x89_c00107{left:428.640000pt;}
.x62_c00107{left:429.754900pt;}
.x5c_c00107{left:432.418380pt;}
.x9c_c00107{left:436.320000pt;}
.x4d_c00107{left:437.651427pt;}
.x70_c00107{left:440.668247pt;}
.x64_c00107{left:444.271027pt;}
.x6d_c00107{left:445.230540pt;}
.x5d_c00107{left:446.750547pt;}
.x74_c00107{left:448.588587pt;}
.x53_c00107{left:452.554880pt;}
.x96_c00107{left:453.840000pt;}
.x8e_c00107{left:456.240000pt;}
.x1b_c00107{left:462.633333pt;}
.x9d_c00107{left:467.280000pt;}
.x97_c00107{left:469.920000pt;}
.x92_c00107{left:473.520000pt;}
.x8a_c00107{left:480.240000pt;}
.x8f_c00107{left:483.120000pt;}
.x2f_c00107{left:486.329427pt;}
.x5e_c00107{left:492.859387pt;}
.x93_c00107{left:494.640000pt;}
.x8c_c00107{left:506.880000pt;}
.x9e_c00107{left:508.560000pt;}
.x8d_c00107{left:514.800000pt;}
.x9f_c00107{left:517.200000pt;}
.x94_c00107{left:522.000000pt;}
.x98_c00107{left:525.360000pt;}
.x82_c00107{left:530.640000pt;}
.x99_c00107{left:534.240000pt;}
.x9a_c00107{left:561.600000pt;}
.x87_c00107{left:563.520000pt;}
.x8b_c00107{left:577.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_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_ef4e99a7aa2876b3106553d3.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;}
.m1_c00108{transform:matrix(0.009795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00108{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);}
.m3_c00108{transform:matrix(0.015490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015490,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);}
.mdb_c00108{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);}
.me7_c00108{transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);}
.m3a_c00108{transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);}
.m65_c00108{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);}
.m6_c00108{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);}
.m1e_c00108{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m43_c00108{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);}
.m3b_c00108{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);}
.m14_c00108{transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{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);}
.m7_c00108{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);}
.m9e_c00108{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);}
.m3c_c00108{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);}
.m2e_c00108{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);}
.m96_c00108{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);}
.m95_c00108{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);}
.mac_c00108{transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);}
.mf1_c00108{transform:matrix(0.164238,0.001971,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164238,0.001971,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164238,0.001971,-0.003000,0.249982,0,0);}
.m46_c00108{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);}
.mcd_c00108{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00108{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);}
.ma2_c00108{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);}
.mcc_c00108{transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);}
.m47_c00108{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);}
.m4a_c00108{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);}
.m45_c00108{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);}
.m8_c00108{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);}
.md2_c00108{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m48_c00108{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);}
.me5_c00108{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);}
.m7c_c00108{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);}
.m16_c00108{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);}
.m9d_c00108{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);}
.m3e_c00108{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);}
.m41_c00108{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);}
.m9f_c00108{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);}
.md_c00108{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);}
.m91_c00108{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);}
.m6a_c00108{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);}
.m49_c00108{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);}
.mbd_c00108{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);}
.m98_c00108{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);}
.ma1_c00108{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);}
.m9c_c00108{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);}
.m73_c00108{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);}
.m53_c00108{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);}
.m12_c00108{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);}
.m7d_c00108{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);}
.me8_c00108{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);}
.m1f_c00108{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);}
.mab_c00108{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);}
.mca_c00108{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);}
.m20_c00108{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);}
.m8f_c00108{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);}
.mbf_c00108{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);}
.mef_c00108{transform:matrix(0.188321,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188321,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188321,0.002260,-0.003000,0.249982,0,0);}
.me0_c00108{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);}
.m27_c00108{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);}
.mf3_c00108{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);}
.m71_c00108{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);}
.mad_c00108{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);}
.m34_c00108{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);}
.m78_c00108{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);}
.mf7_c00108{transform:matrix(0.192056,0.002305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192056,0.002305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192056,0.002305,-0.003000,0.249982,0,0);}
.m38_c00108{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);}
.m6e_c00108{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);}
.me4_c00108{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);}
.mc7_c00108{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);}
.m2a_c00108{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);}
.ma9_c00108{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);}
.m77_c00108{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);}
.m22_c00108{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);}
.m89_c00108{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);}
.m2f_c00108{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);}
.mdf_c00108{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);}
.ma8_c00108{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);}
.mf_c00108{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);}
.m5d_c00108{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);}
.mf0_c00108{transform:matrix(0.196886,0.002363,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196886,0.002363,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196886,0.002363,-0.003000,0.249982,0,0);}
.m94_c00108{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);}
.mce_c00108{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);}
.m8a_c00108{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_c00108{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);}
.maa_c00108{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);}
.me2_c00108{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);}
.m8b_c00108{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);}
.mc_c00108{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);}
.m9a_c00108{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);}
.m97_c00108{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);}
.m2c_c00108{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.mb5_c00108{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);}
.m10_c00108{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);}
.m70_c00108{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);}
.mc2_c00108{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);}
.m74_c00108{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);}
.m36_c00108{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);}
.m1d_c00108{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);}
.m2b_c00108{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);}
.mc9_c00108{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);}
.mc3_c00108{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);}
.me9_c00108{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.ma4_c00108{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);}
.mb7_c00108{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);}
.m67_c00108{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);}
.me_c00108{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);}
.m18_c00108{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);}
.m79_c00108{transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);}
.m8e_c00108{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);}
.ma3_c00108{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);}
.m0_c00108{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);}
.m8c_c00108{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);}
.m17_c00108{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);}
.mee_c00108{transform:matrix(0.206935,0.002483,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206935,0.002483,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206935,0.002483,-0.003000,0.249982,0,0);}
.md6_c00108{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);}
.mc8_c00108{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);}
.ma7_c00108{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);}
.mf8_c00108{transform:matrix(0.208770,0.002505,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208770,0.002505,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208770,0.002505,-0.003000,0.249982,0,0);}
.mf6_c00108{transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);}
.m88_c00108{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);}
.m13_c00108{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);}
.m1a_c00108{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);}
.m51_c00108{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);}
.ma5_c00108{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);}
.m40_c00108{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);}
.mda_c00108{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);}
.m1c_c00108{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);}
.m90_c00108{transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);}
.m64_c00108{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);}
.m42_c00108{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);}
.m3f_c00108{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);}
.me6_c00108{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);}
.mdd_c00108{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);}
.maf_c00108{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);}
.m7a_c00108{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);}
.mb1_c00108{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);}
.mba_c00108{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);}
.m5_c00108{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);}
.m57_c00108{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);}
.m2d_c00108{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);}
.mc6_c00108{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);}
.m35_c00108{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);}
.me3_c00108{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);}
.m3d_c00108{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);}
.mf5_c00108{transform:matrix(0.217334,0.002608,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217334,0.002608,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217334,0.002608,-0.003000,0.249982,0,0);}
.m85_c00108{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);}
.m9b_c00108{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);}
.m58_c00108{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);}
.m72_c00108{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);}
.mb0_c00108{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);}
.mc5_c00108{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);}
.mf4_c00108{transform:matrix(0.221259,0.002655,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221259,0.002655,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221259,0.002655,-0.003000,0.249982,0,0);}
.md0_c00108{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);}
.mb3_c00108{transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);}
.me1_c00108{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);}
.m25_c00108{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);}
.m76_c00108{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);}
.m32_c00108{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);}
.m39_c00108{transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);}
.m75_c00108{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);}
.m7e_c00108{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);}
.ma0_c00108{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);}
.mb9_c00108{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);}
.m31_c00108{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);}
.m5a_c00108{transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228985,0.000000,0.000000,0.250000,0,0);}
.m44_c00108{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.mea_c00108{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);}
.md3_c00108{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);}
.m26_c00108{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);}
.m19_c00108{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);}
.m82_c00108{transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);}
.m99_c00108{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00108{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);}
.mbe_c00108{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);}
.m86_c00108{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);}
.m66_c00108{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);}
.m4d_c00108{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);}
.mb_c00108{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);}
.md7_c00108{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.mb8_c00108{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);}
.m7b_c00108{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{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);}
.mb6_c00108{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);}
.md8_c00108{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);}
.m6d_c00108{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m23_c00108{transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);}
.md1_c00108{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.m33_c00108{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);}
.m30_c00108{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);}
.m37_c00108{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);}
.m6b_c00108{transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);}
.mc0_c00108{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m92_c00108{transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);}
.md4_c00108{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);}
.m61_c00108{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);}
.m1b_c00108{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);}
.m29_c00108{transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);}
.mf2_c00108{transform:matrix(0.257606,0.003091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257606,0.003091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257606,0.003091,-0.003000,0.249982,0,0);}
.m81_c00108{transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);}
.mb4_c00108{transform:matrix(0.260325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260325,0.000000,0.000000,0.250000,0,0);}
.m83_c00108{transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);}
.mae_c00108{transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);}
.m84_c00108{transform:matrix(0.264525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264525,0.000000,0.000000,0.250000,0,0);}
.m5b_c00108{transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);}
.m21_c00108{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);}
.m52_c00108{transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267950,0.000000,0.000000,0.250000,0,0);}
.mec_c00108{transform:matrix(0.268251,0.003219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268251,0.003219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268251,0.003219,-0.003000,0.249982,0,0);}
.mde_c00108{transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);}
.med_c00108{transform:matrix(0.273870,0.003286,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273870,0.003286,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273870,0.003286,-0.003000,0.249982,0,0);}
.mcf_c00108{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m54_c00108{transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277335,0.000000,0.000000,0.250000,0,0);}
.m6f_c00108{transform:matrix(0.284245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284245,0.000000,0.000000,0.250000,0,0);}
.mdc_c00108{transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284555,0.000000,0.000000,0.250000,0,0);}
.mb2_c00108{transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);}
.m62_c00108{transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294205,0.000000,0.000000,0.250000,0,0);}
.md5_c00108{transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305770,0.000000,0.000000,0.250000,0,0);}
.m4e_c00108{transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{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);}
.md9_c00108{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);}
.mbc_c00108{transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{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);}
.ma_c00108{transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339135,0.000000,0.000000,0.250000,0,0);}
.m8d_c00108{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);}
.m55_c00108{transform:matrix(0.345815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345815,0.000000,0.000000,0.250000,0,0);}
.m93_c00108{transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);}
.mc1_c00108{transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);}
.m87_c00108{transform:matrix(0.368665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368665,0.000000,0.000000,0.250000,0,0);}
.m69_c00108{transform:matrix(0.371275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371275,0.000000,0.000000,0.250000,0,0);}
.ma6_c00108{transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);}
.m50_c00108{transform:matrix(0.386485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386485,0.000000,0.000000,0.250000,0,0);}
.mbb_c00108{transform:matrix(0.397020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397020,0.000000,0.000000,0.250000,0,0);}
.m59_c00108{transform:matrix(0.416585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416585,0.000000,0.000000,0.250000,0,0);}
.meb_c00108{transform:matrix(0.422775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422775,0.000000,0.000000,0.250000,0,0);}
.m68_c00108{transform:matrix(0.427200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427200,0.000000,0.000000,0.250000,0,0);}
.mc4_c00108{transform:matrix(0.432015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432015,0.000000,0.000000,0.250000,0,0);}
.m60_c00108{transform:matrix(0.463955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463955,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.478940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478940,0.000000,0.000000,0.250000,0,0);}
.m5f_c00108{transform:matrix(0.491025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00108{transform:matrix(0.530430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530430,0.000000,0.000000,0.250000,0,0);}
.mcb_c00108{transform:matrix(0.555300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00108{transform:matrix(0.623275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623275,0.000000,0.000000,0.250000,0,0);}
.m63_c00108{transform:matrix(0.737085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737085,0.000000,0.000000,0.250000,0,0);}
.m56_c00108{transform:matrix(0.842695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842695,0.000000,0.000000,0.250000,0,0);}
.m5c_c00108{transform:matrix(0.845015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845015,0.000000,0.000000,0.250000,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;}
.fs11_c00108{font-size:16.800000px;}
.fsf_c00108{font-size:47.250000px;}
.fs10_c00108{font-size:49.350000px;}
.fse_c00108{font-size:51.450000px;}
.fsd_c00108{font-size:52.500000px;}
.fs12_c00108{font-size:58.804233px;}
.fs4_c00108{font-size:60.900000px;}
.fs5_c00108{font-size:61.950000px;}
.fs8_c00108{font-size:65.100000px;}
.fsa_c00108{font-size:68.250000px;}
.fs9_c00108{font-size:69.300000px;}
.fs3_c00108{font-size:70.350000px;}
.fsb_c00108{font-size:71.400000px;}
.fs2_c00108{font-size:72.450000px;}
.fsc_c00108{font-size:74.550000px;}
.fs7_c00108{font-size:78.750000px;}
.fs6_c00108{font-size:79.800000px;}
.fs0_c00108{font-size:87.150000px;}
.fs1_c00108{font-size:138.600000px;}
.y0_c00108{bottom:0.000000px;}
.y62_c00108{bottom:147.631068px;}
.y61_c00108{bottom:148.224132px;}
.y60_c00108{bottom:148.453542px;}
.y5f_c00108{bottom:148.793832px;}
.y5e_c00108{bottom:149.374098px;}
.y5d_c00108{bottom:149.503464px;}
.y5c_c00108{bottom:150.132834px;}
.y5b_c00108{bottom:150.498270px;}
.y5a_c00108{bottom:151.227450px;}
.y59_c00108{bottom:151.402518px;}
.y58_c00108{bottom:151.755066px;}
.y57_c00108{bottom:151.959762px;}
.y56_c00108{bottom:152.293500px;}
.y55_c00108{bottom:158.760000px;}
.y54_c00108{bottom:164.373000px;}
.y53_c00108{bottom:164.716500px;}
.y52_c00108{bottom:165.112500px;}
.y51_c00108{bottom:165.286500px;}
.y50_c00108{bottom:165.643500px;}
.y4f_c00108{bottom:165.838500px;}
.y4e_c00108{bottom:166.242000px;}
.y4d_c00108{bottom:166.564500px;}
.y4c_c00108{bottom:167.011500px;}
.y4b_c00108{bottom:168.067500px;}
.y4a_c00108{bottom:168.579000px;}
.y49_c00108{bottom:168.843000px;}
.y48_c00108{bottom:169.159500px;}
.y47_c00108{bottom:169.759500px;}
.y46_c00108{bottom:170.290500px;}
.y45_c00108{bottom:183.184500px;}
.y44_c00108{bottom:183.468000px;}
.y43_c00108{bottom:184.155000px;}
.y42_c00108{bottom:184.366500px;}
.y41_c00108{bottom:184.794000px;}
.y40_c00108{bottom:185.148000px;}
.y3f_c00108{bottom:185.401500px;}
.y3e_c00108{bottom:186.211500px;}
.y3d_c00108{bottom:186.549000px;}
.y3c_c00108{bottom:186.781500px;}
.y3b_c00108{bottom:186.960000px;}
.y3a_c00108{bottom:187.465500px;}
.y39_c00108{bottom:187.591500px;}
.y38_c00108{bottom:187.959000px;}
.y37_c00108{bottom:188.190000px;}
.y36_c00108{bottom:201.222000px;}
.y35_c00108{bottom:201.513000px;}
.y34_c00108{bottom:202.513500px;}
.y33_c00108{bottom:202.963500px;}
.y32_c00108{bottom:203.242500px;}
.y31_c00108{bottom:203.838000px;}
.y30_c00108{bottom:204.198000px;}
.y2f_c00108{bottom:205.203000px;}
.y2e_c00108{bottom:218.256000px;}
.y2d_c00108{bottom:218.473500px;}
.y2c_c00108{bottom:218.862000px;}
.y2b_c00108{bottom:219.187500px;}
.y2a_c00108{bottom:219.294000px;}
.y29_c00108{bottom:219.703500px;}
.y28_c00108{bottom:219.949500px;}
.y27_c00108{bottom:220.422000px;}
.y26_c00108{bottom:220.656000px;}
.y25_c00108{bottom:220.738500px;}
.y24_c00108{bottom:221.164500px;}
.y23_c00108{bottom:221.670000px;}
.y22_c00108{bottom:236.089500px;}
.y21_c00108{bottom:236.335500px;}
.y20_c00108{bottom:236.562000px;}
.y1f_c00108{bottom:236.806500px;}
.y1e_c00108{bottom:236.971500px;}
.y1d_c00108{bottom:237.468000px;}
.y1c_c00108{bottom:237.774000px;}
.y1b_c00108{bottom:237.877500px;}
.y1a_c00108{bottom:238.453500px;}
.y19_c00108{bottom:238.671000px;}
.y18_c00108{bottom:238.924500px;}
.y17_c00108{bottom:239.220000px;}
.y16_c00108{bottom:255.883500px;}
.y15_c00108{bottom:273.700500px;}
.y14_c00108{bottom:320.409000px;}
.y13_c00108{bottom:342.321000px;}
.y12_c00108{bottom:365.076000px;}
.y11_c00108{bottom:387.450000px;}
.y10_c00108{bottom:410.043000px;}
.yf_c00108{bottom:432.352500px;}
.ye_c00108{bottom:468.318000px;}
.yd_c00108{bottom:503.574000px;}
.yc_c00108{bottom:566.730000px;}
.yb_c00108{bottom:633.181500px;}
.ya_c00108{bottom:655.191000px;}
.y9_c00108{bottom:677.478000px;}
.y8_c00108{bottom:700.714500px;}
.y7_c00108{bottom:722.988000px;}
.y6_c00108{bottom:745.144500px;}
.y5_c00108{bottom:767.619000px;}
.y4_c00108{bottom:790.542000px;}
.y3_c00108{bottom:812.991000px;}
.y2_c00108{bottom:860.952000px;}
.y1_c00108{bottom:884.250000px;}
.h13_c00108{height:16.800000px;}
.h11_c00108{height:47.250000px;}
.h12_c00108{height:49.350000px;}
.h10_c00108{height:51.450000px;}
.hf_c00108{height:52.500000px;}
.h14_c00108{height:58.804233px;}
.h6_c00108{height:60.900000px;}
.h7_c00108{height:61.950000px;}
.ha_c00108{height:65.100000px;}
.hc_c00108{height:68.250000px;}
.hb_c00108{height:69.300000px;}
.h5_c00108{height:70.350000px;}
.hd_c00108{height:71.400000px;}
.h4_c00108{height:72.450000px;}
.he_c00108{height:74.550000px;}
.h9_c00108{height:78.750000px;}
.h8_c00108{height:79.800000px;}
.h2_c00108{height:87.150000px;}
.h3_c00108{height:138.600000px;}
.h1_c00108{height:1005.000000px;}
.h0_c00108{height:1005.150000px;}
.w0_c00108{width:705.450000px;}
.w1_c00108{width:705.750000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:62.640000px;}
.x8f_c00108{left:69.964500px;}
.x96_c00108{left:83.859000px;}
.x80_c00108{left:89.029500px;}
.x6c_c00108{left:90.180000px;}
.x8c_c00108{left:91.914000px;}
.x87_c00108{left:93.609000px;}
.x51_c00108{left:107.730000px;}
.x74_c00108{left:110.970000px;}
.x62_c00108{left:117.180000px;}
.x9c_c00108{left:120.301500px;}
.x52_c00108{left:123.660000px;}
.x65_c00108{left:124.740000px;}
.x58_c00108{left:126.090000px;}
.x41_c00108{left:127.170000px;}
.x19_c00108{left:128.250000px;}
.x11_c00108{left:129.330000px;}
.x8_c00108{left:130.680000px;}
.x9d_c00108{left:137.359500px;}
.x90_c00108{left:142.428000px;}
.x26_c00108{left:144.720000px;}
.x75_c00108{left:146.070000px;}
.x59_c00108{left:156.870000px;}
.x5b_c00108{left:158.220000px;}
.x3b_c00108{left:160.110000px;}
.x66_c00108{left:161.460000px;}
.x5f_c00108{left:163.350000px;}
.x2_c00108{left:164.430000px;}
.x81_c00108{left:167.329500px;}
.x33_c00108{left:169.290000px;}
.x21_c00108{left:171.450000px;}
.x42_c00108{left:172.530000px;}
.x12_c00108{left:175.230000px;}
.x5_c00108{left:179.280000px;}
.x9e_c00108{left:181.327500px;}
.x76_c00108{left:183.330000px;}
.x46_c00108{left:184.950000px;}
.x3c_c00108{left:186.570000px;}
.x6d_c00108{left:188.730000px;}
.x5c_c00108{left:190.620000px;}
.x27_c00108{left:193.860000px;}
.x3_c00108{left:195.210000px;}
.x82_c00108{left:198.379500px;}
.x77_c00108{left:200.070000px;}
.x9_c00108{left:208.170000px;}
.x88_c00108{left:209.962500px;}
.x1a_c00108{left:211.140000px;}
.x28_c00108{left:213.840000px;}
.x34_c00108{left:215.190000px;}
.x3d_c00108{left:216.810000px;}
.x89_c00108{left:220.234500px;}
.x8d_c00108{left:222.612000px;}
.x67_c00108{left:226.530000px;}
.x13_c00108{left:227.880000px;}
.xa_c00108{left:228.960000px;}
.x53_c00108{left:233.550000px;}
.x22_c00108{left:241.110000px;}
.x2d_c00108{left:242.460000px;}
.x14_c00108{left:244.080000px;}
.x47_c00108{left:245.430000px;}
.x35_c00108{left:250.020000px;}
.x29_c00108{left:252.990000px;}
.x97_c00108{left:254.761500px;}
.x5d_c00108{left:258.660000px;}
.x48_c00108{left:260.010000px;}
.xb_c00108{left:261.090000px;}
.x50_c00108{left:263.250000px;}
.x2e_c00108{left:268.110000px;}
.x1b_c00108{left:271.620000px;}
.x78_c00108{left:275.130000px;}
.x43_c00108{left:277.290000px;}
.xc_c00108{left:280.800000px;}
.x15_c00108{left:284.580000px;}
.x54_c00108{left:293.490000px;}
.x1c_c00108{left:295.920000px;}
.x2f_c00108{left:297.810000px;}
.x68_c00108{left:298.890000px;}
.x23_c00108{left:301.320000px;}
.x60_c00108{left:303.480000px;}
.x79_c00108{left:306.180000px;}
.x3e_c00108{left:307.530000px;}
.x4f_c00108{left:309.150000px;}
.x44_c00108{left:311.850000px;}
.x16_c00108{left:316.170000px;}
.x2a_c00108{left:317.790000px;}
.x30_c00108{left:321.030000px;}
.x36_c00108{left:322.380000px;}
.x6e_c00108{left:325.890000px;}
.x3f_c00108{left:329.940000px;}
.xd_c00108{left:331.290000px;}
.x5e_c00108{left:332.910000px;}
.x49_c00108{left:335.610000px;}
.x8e_c00108{left:337.944000px;}
.x7a_c00108{left:339.930000px;}
.x6f_c00108{left:341.280000px;}
.x61_c00108{left:345.330000px;}
.x1d_c00108{left:349.650000px;}
.x17_c00108{left:351.810000px;}
.x24_c00108{left:354.510000px;}
.x55_c00108{left:355.860000px;}
.xe_c00108{left:356.940000px;}
.x70_c00108{left:360.450000px;}
.x4a_c00108{left:362.610000px;}
.x37_c00108{left:363.960000px;}
.x31_c00108{left:368.280000px;}
.x69_c00108{left:369.630000px;}
.x40_c00108{left:371.250000px;}
.x91_c00108{left:374.139000px;}
.x1e_c00108{left:380.430000px;}
.x9f_c00108{left:384.129000px;}
.x2b_c00108{left:385.560000px;}
.x63_c00108{left:389.610000px;}
.xf_c00108{left:390.690000px;}
.x45_c00108{left:392.850000px;}
.x98_c00108{left:395.124000px;}
.x6_c00108{left:397.170000px;}
.x4b_c00108{left:403.380000px;}
.x2c_c00108{left:405.270000px;}
.x1f_c00108{left:406.890000px;}
.x92_c00108{left:409.524000px;}
.x18_c00108{left:410.670000px;}
.x10_c00108{left:413.100000px;}
.x38_c00108{left:417.690000px;}
.x25_c00108{left:419.580000px;}
.x5a_c00108{left:425.520000px;}
.x71_c00108{left:427.950000px;}
.x7b_c00108{left:429.030000px;}
.x6a_c00108{left:432.270000px;}
.x83_c00108{left:433.830000px;}
.x39_c00108{left:438.210000px;}
.x99_c00108{left:441.247500px;}
.x4c_c00108{left:445.230000px;}
.x64_c00108{left:447.930000px;}
.x20_c00108{left:450.630000px;}
.x4d_c00108{left:453.060000px;}
.x32_c00108{left:455.220000px;}
.x56_c00108{left:459.810000px;}
.x7_c00108{left:465.480000px;}
.x84_c00108{left:468.664500px;}
.x7c_c00108{left:471.150000px;}
.x72_c00108{left:472.230000px;}
.x93_c00108{left:473.403000px;}
.x3a_c00108{left:479.250000px;}
.xa0_c00108{left:481.026000px;}
.x57_c00108{left:482.490000px;}
.x8a_c00108{left:493.215000px;}
.x85_c00108{left:501.054000px;}
.x6b_c00108{left:503.550000px;}
.x7d_c00108{left:507.060000px;}
.x4e_c00108{left:511.110000px;}
.x9a_c00108{left:512.604000px;}
.x8b_c00108{left:520.464000px;}
.x4_c00108{left:524.610000px;}
.x7e_c00108{left:525.690000px;}
.x73_c00108{left:534.330000px;}
.x86_c00108{left:536.155500px;}
.x9b_c00108{left:539.049000px;}
.x94_c00108{left:542.065500px;}
.x7f_c00108{left:553.770000px;}
.x95_c00108{left:570.415500px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
.fs11_c00108{font-size:14.933333pt;}
.fsf_c00108{font-size:42.000000pt;}
.fs10_c00108{font-size:43.866667pt;}
.fse_c00108{font-size:45.733333pt;}
.fsd_c00108{font-size:46.666667pt;}
.fs12_c00108{font-size:52.270430pt;}
.fs4_c00108{font-size:54.133333pt;}
.fs5_c00108{font-size:55.066667pt;}
.fs8_c00108{font-size:57.866667pt;}
.fsa_c00108{font-size:60.666667pt;}
.fs9_c00108{font-size:61.600000pt;}
.fs3_c00108{font-size:62.533333pt;}
.fsb_c00108{font-size:63.466667pt;}
.fs2_c00108{font-size:64.400000pt;}
.fsc_c00108{font-size:66.266667pt;}
.fs7_c00108{font-size:70.000000pt;}
.fs6_c00108{font-size:70.933333pt;}
.fs0_c00108{font-size:77.466667pt;}
.fs1_c00108{font-size:123.200000pt;}
.y0_c00108{bottom:0.000000pt;}
.y62_c00108{bottom:131.227616pt;}
.y61_c00108{bottom:131.754784pt;}
.y60_c00108{bottom:131.958704pt;}
.y5f_c00108{bottom:132.261184pt;}
.y5e_c00108{bottom:132.776976pt;}
.y5d_c00108{bottom:132.891968pt;}
.y5c_c00108{bottom:133.451408pt;}
.y5b_c00108{bottom:133.776240pt;}
.y5a_c00108{bottom:134.424400pt;}
.y59_c00108{bottom:134.580016pt;}
.y58_c00108{bottom:134.893392pt;}
.y57_c00108{bottom:135.075344pt;}
.y56_c00108{bottom:135.372000pt;}
.y55_c00108{bottom:141.120000pt;}
.y54_c00108{bottom:146.109333pt;}
.y53_c00108{bottom:146.414667pt;}
.y52_c00108{bottom:146.766667pt;}
.y51_c00108{bottom:146.921333pt;}
.y50_c00108{bottom:147.238667pt;}
.y4f_c00108{bottom:147.412000pt;}
.y4e_c00108{bottom:147.770667pt;}
.y4d_c00108{bottom:148.057333pt;}
.y4c_c00108{bottom:148.454667pt;}
.y4b_c00108{bottom:149.393333pt;}
.y4a_c00108{bottom:149.848000pt;}
.y49_c00108{bottom:150.082667pt;}
.y48_c00108{bottom:150.364000pt;}
.y47_c00108{bottom:150.897333pt;}
.y46_c00108{bottom:151.369333pt;}
.y45_c00108{bottom:162.830667pt;}
.y44_c00108{bottom:163.082667pt;}
.y43_c00108{bottom:163.693333pt;}
.y42_c00108{bottom:163.881333pt;}
.y41_c00108{bottom:164.261333pt;}
.y40_c00108{bottom:164.576000pt;}
.y3f_c00108{bottom:164.801333pt;}
.y3e_c00108{bottom:165.521333pt;}
.y3d_c00108{bottom:165.821333pt;}
.y3c_c00108{bottom:166.028000pt;}
.y3b_c00108{bottom:166.186667pt;}
.y3a_c00108{bottom:166.636000pt;}
.y39_c00108{bottom:166.748000pt;}
.y38_c00108{bottom:167.074667pt;}
.y37_c00108{bottom:167.280000pt;}
.y36_c00108{bottom:178.864000pt;}
.y35_c00108{bottom:179.122667pt;}
.y34_c00108{bottom:180.012000pt;}
.y33_c00108{bottom:180.412000pt;}
.y32_c00108{bottom:180.660000pt;}
.y31_c00108{bottom:181.189333pt;}
.y30_c00108{bottom:181.509333pt;}
.y2f_c00108{bottom:182.402667pt;}
.y2e_c00108{bottom:194.005333pt;}
.y2d_c00108{bottom:194.198667pt;}
.y2c_c00108{bottom:194.544000pt;}
.y2b_c00108{bottom:194.833333pt;}
.y2a_c00108{bottom:194.928000pt;}
.y29_c00108{bottom:195.292000pt;}
.y28_c00108{bottom:195.510667pt;}
.y27_c00108{bottom:195.930667pt;}
.y26_c00108{bottom:196.138667pt;}
.y25_c00108{bottom:196.212000pt;}
.y24_c00108{bottom:196.590667pt;}
.y23_c00108{bottom:197.040000pt;}
.y22_c00108{bottom:209.857333pt;}
.y21_c00108{bottom:210.076000pt;}
.y20_c00108{bottom:210.277333pt;}
.y1f_c00108{bottom:210.494667pt;}
.y1e_c00108{bottom:210.641333pt;}
.y1d_c00108{bottom:211.082667pt;}
.y1c_c00108{bottom:211.354667pt;}
.y1b_c00108{bottom:211.446667pt;}
.y1a_c00108{bottom:211.958667pt;}
.y19_c00108{bottom:212.152000pt;}
.y18_c00108{bottom:212.377333pt;}
.y17_c00108{bottom:212.640000pt;}
.y16_c00108{bottom:227.452000pt;}
.y15_c00108{bottom:243.289333pt;}
.y14_c00108{bottom:284.808000pt;}
.y13_c00108{bottom:304.285333pt;}
.y12_c00108{bottom:324.512000pt;}
.y11_c00108{bottom:344.400000pt;}
.y10_c00108{bottom:364.482667pt;}
.yf_c00108{bottom:384.313333pt;}
.ye_c00108{bottom:416.282667pt;}
.yd_c00108{bottom:447.621333pt;}
.yc_c00108{bottom:503.760000pt;}
.yb_c00108{bottom:562.828000pt;}
.ya_c00108{bottom:582.392000pt;}
.y9_c00108{bottom:602.202667pt;}
.y8_c00108{bottom:622.857333pt;}
.y7_c00108{bottom:642.656000pt;}
.y6_c00108{bottom:662.350667pt;}
.y5_c00108{bottom:682.328000pt;}
.y4_c00108{bottom:702.704000pt;}
.y3_c00108{bottom:722.658667pt;}
.y2_c00108{bottom:765.290667pt;}
.y1_c00108{bottom:786.000000pt;}
.h13_c00108{height:14.933333pt;}
.h11_c00108{height:42.000000pt;}
.h12_c00108{height:43.866667pt;}
.h10_c00108{height:45.733333pt;}
.hf_c00108{height:46.666667pt;}
.h14_c00108{height:52.270430pt;}
.h6_c00108{height:54.133333pt;}
.h7_c00108{height:55.066667pt;}
.ha_c00108{height:57.866667pt;}
.hc_c00108{height:60.666667pt;}
.hb_c00108{height:61.600000pt;}
.h5_c00108{height:62.533333pt;}
.hd_c00108{height:63.466667pt;}
.h4_c00108{height:64.400000pt;}
.he_c00108{height:66.266667pt;}
.h9_c00108{height:70.000000pt;}
.h8_c00108{height:70.933333pt;}
.h2_c00108{height:77.466667pt;}
.h3_c00108{height:123.200000pt;}
.h1_c00108{height:893.333333pt;}
.h0_c00108{height:893.466667pt;}
.w0_c00108{width:627.066667pt;}
.w1_c00108{width:627.333333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:55.680000pt;}
.x8f_c00108{left:62.190667pt;}
.x96_c00108{left:74.541333pt;}
.x80_c00108{left:79.137333pt;}
.x6c_c00108{left:80.160000pt;}
.x8c_c00108{left:81.701333pt;}
.x87_c00108{left:83.208000pt;}
.x51_c00108{left:95.760000pt;}
.x74_c00108{left:98.640000pt;}
.x62_c00108{left:104.160000pt;}
.x9c_c00108{left:106.934667pt;}
.x52_c00108{left:109.920000pt;}
.x65_c00108{left:110.880000pt;}
.x58_c00108{left:112.080000pt;}
.x41_c00108{left:113.040000pt;}
.x19_c00108{left:114.000000pt;}
.x11_c00108{left:114.960000pt;}
.x8_c00108{left:116.160000pt;}
.x9d_c00108{left:122.097333pt;}
.x90_c00108{left:126.602667pt;}
.x26_c00108{left:128.640000pt;}
.x75_c00108{left:129.840000pt;}
.x59_c00108{left:139.440000pt;}
.x5b_c00108{left:140.640000pt;}
.x3b_c00108{left:142.320000pt;}
.x66_c00108{left:143.520000pt;}
.x5f_c00108{left:145.200000pt;}
.x2_c00108{left:146.160000pt;}
.x81_c00108{left:148.737333pt;}
.x33_c00108{left:150.480000pt;}
.x21_c00108{left:152.400000pt;}
.x42_c00108{left:153.360000pt;}
.x12_c00108{left:155.760000pt;}
.x5_c00108{left:159.360000pt;}
.x9e_c00108{left:161.180000pt;}
.x76_c00108{left:162.960000pt;}
.x46_c00108{left:164.400000pt;}
.x3c_c00108{left:165.840000pt;}
.x6d_c00108{left:167.760000pt;}
.x5c_c00108{left:169.440000pt;}
.x27_c00108{left:172.320000pt;}
.x3_c00108{left:173.520000pt;}
.x82_c00108{left:176.337333pt;}
.x77_c00108{left:177.840000pt;}
.x9_c00108{left:185.040000pt;}
.x88_c00108{left:186.633333pt;}
.x1a_c00108{left:187.680000pt;}
.x28_c00108{left:190.080000pt;}
.x34_c00108{left:191.280000pt;}
.x3d_c00108{left:192.720000pt;}
.x89_c00108{left:195.764000pt;}
.x8d_c00108{left:197.877333pt;}
.x67_c00108{left:201.360000pt;}
.x13_c00108{left:202.560000pt;}
.xa_c00108{left:203.520000pt;}
.x53_c00108{left:207.600000pt;}
.x22_c00108{left:214.320000pt;}
.x2d_c00108{left:215.520000pt;}
.x14_c00108{left:216.960000pt;}
.x47_c00108{left:218.160000pt;}
.x35_c00108{left:222.240000pt;}
.x29_c00108{left:224.880000pt;}
.x97_c00108{left:226.454667pt;}
.x5d_c00108{left:229.920000pt;}
.x48_c00108{left:231.120000pt;}
.xb_c00108{left:232.080000pt;}
.x50_c00108{left:234.000000pt;}
.x2e_c00108{left:238.320000pt;}
.x1b_c00108{left:241.440000pt;}
.x78_c00108{left:244.560000pt;}
.x43_c00108{left:246.480000pt;}
.xc_c00108{left:249.600000pt;}
.x15_c00108{left:252.960000pt;}
.x54_c00108{left:260.880000pt;}
.x1c_c00108{left:263.040000pt;}
.x2f_c00108{left:264.720000pt;}
.x68_c00108{left:265.680000pt;}
.x23_c00108{left:267.840000pt;}
.x60_c00108{left:269.760000pt;}
.x79_c00108{left:272.160000pt;}
.x3e_c00108{left:273.360000pt;}
.x4f_c00108{left:274.800000pt;}
.x44_c00108{left:277.200000pt;}
.x16_c00108{left:281.040000pt;}
.x2a_c00108{left:282.480000pt;}
.x30_c00108{left:285.360000pt;}
.x36_c00108{left:286.560000pt;}
.x6e_c00108{left:289.680000pt;}
.x3f_c00108{left:293.280000pt;}
.xd_c00108{left:294.480000pt;}
.x5e_c00108{left:295.920000pt;}
.x49_c00108{left:298.320000pt;}
.x8e_c00108{left:300.394667pt;}
.x7a_c00108{left:302.160000pt;}
.x6f_c00108{left:303.360000pt;}
.x61_c00108{left:306.960000pt;}
.x1d_c00108{left:310.800000pt;}
.x17_c00108{left:312.720000pt;}
.x24_c00108{left:315.120000pt;}
.x55_c00108{left:316.320000pt;}
.xe_c00108{left:317.280000pt;}
.x70_c00108{left:320.400000pt;}
.x4a_c00108{left:322.320000pt;}
.x37_c00108{left:323.520000pt;}
.x31_c00108{left:327.360000pt;}
.x69_c00108{left:328.560000pt;}
.x40_c00108{left:330.000000pt;}
.x91_c00108{left:332.568000pt;}
.x1e_c00108{left:338.160000pt;}
.x9f_c00108{left:341.448000pt;}
.x2b_c00108{left:342.720000pt;}
.x63_c00108{left:346.320000pt;}
.xf_c00108{left:347.280000pt;}
.x45_c00108{left:349.200000pt;}
.x98_c00108{left:351.221333pt;}
.x6_c00108{left:353.040000pt;}
.x4b_c00108{left:358.560000pt;}
.x2c_c00108{left:360.240000pt;}
.x1f_c00108{left:361.680000pt;}
.x92_c00108{left:364.021333pt;}
.x18_c00108{left:365.040000pt;}
.x10_c00108{left:367.200000pt;}
.x38_c00108{left:371.280000pt;}
.x25_c00108{left:372.960000pt;}
.x5a_c00108{left:378.240000pt;}
.x71_c00108{left:380.400000pt;}
.x7b_c00108{left:381.360000pt;}
.x6a_c00108{left:384.240000pt;}
.x83_c00108{left:385.626667pt;}
.x39_c00108{left:389.520000pt;}
.x99_c00108{left:392.220000pt;}
.x4c_c00108{left:395.760000pt;}
.x64_c00108{left:398.160000pt;}
.x20_c00108{left:400.560000pt;}
.x4d_c00108{left:402.720000pt;}
.x32_c00108{left:404.640000pt;}
.x56_c00108{left:408.720000pt;}
.x7_c00108{left:413.760000pt;}
.x84_c00108{left:416.590667pt;}
.x7c_c00108{left:418.800000pt;}
.x72_c00108{left:419.760000pt;}
.x93_c00108{left:420.802667pt;}
.x3a_c00108{left:426.000000pt;}
.xa0_c00108{left:427.578667pt;}
.x57_c00108{left:428.880000pt;}
.x8a_c00108{left:438.413333pt;}
.x85_c00108{left:445.381333pt;}
.x6b_c00108{left:447.600000pt;}
.x7d_c00108{left:450.720000pt;}
.x4e_c00108{left:454.320000pt;}
.x9a_c00108{left:455.648000pt;}
.x8b_c00108{left:462.634667pt;}
.x4_c00108{left:466.320000pt;}
.x7e_c00108{left:467.280000pt;}
.x73_c00108{left:474.960000pt;}
.x86_c00108{left:476.582667pt;}
.x9b_c00108{left:479.154667pt;}
.x94_c00108{left:481.836000pt;}
.x7f_c00108{left:492.240000pt;}
.x95_c00108{left:507.036000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m9a_c00109{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);}
.m1_c00109{transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);}
.mc5_c00109{transform:matrix(0.051580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051580,0.000000,0.000000,0.250000,0,0);}
.m75_c00109{transform:matrix(0.073140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073140,0.000000,0.000000,0.250000,0,0);}
.m55_c00109{transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);}
.m78_c00109{transform:matrix(0.123415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123415,0.000000,0.000000,0.250000,0,0);}
.md6_c00109{transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127680,0.000000,0.000000,0.250000,0,0);}
.m79_c00109{transform:matrix(0.130215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130215,0.000000,0.000000,0.250000,0,0);}
.m93_c00109{transform:matrix(0.133445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133445,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);}
.m84_c00109{transform:matrix(0.139335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139335,0.000000,0.000000,0.250000,0,0);}
.mee_c00109{transform:matrix(0.139645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139645,0.000000,0.000000,0.250000,0,0);}
.m53_c00109{transform:matrix(0.140020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140020,0.000000,0.000000,0.250000,0,0);}
.mb6_c00109{transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);}
.m89_c00109{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);}
.m2e_c00109{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m74_c00109{transform:matrix(0.143140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143140,0.000000,0.000000,0.250000,0,0);}
.m34_c00109{transform:matrix(0.143755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143755,0.000000,0.000000,0.250000,0,0);}
.m5e_c00109{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);}
.m68_c00109{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);}
.m43_c00109{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);}
.mba_c00109{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);}
.m3f_c00109{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);}
.m90_c00109{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);}
.m9c_c00109{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);}
.m39_c00109{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);}
.mbb_c00109{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);}
.m76_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);}
.m4d_c00109{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);}
.m7b_c00109{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);}
.m87_c00109{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);}
.m16_c00109{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);}
.m88_c00109{transform:matrix(0.157165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157165,0.000000,0.000000,0.250000,0,0);}
.mb9_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);}
.m13_c00109{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);}
.mbc_c00109{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);}
.m26_c00109{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);}
.m73_c00109{transform:matrix(0.158455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158455,0.000000,0.000000,0.250000,0,0);}
.mb8_c00109{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);}
.mb7_c00109{transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);}
.m77_c00109{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);}
.mb5_c00109{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);}
.m7e_c00109{transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{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);}
.m6b_c00109{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);}
.m9d_c00109{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);}
.mc7_c00109{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);}
.m28_c00109{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);}
.m38_c00109{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);}
.m4f_c00109{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);}
.m36_c00109{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);}
.mc0_c00109{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);}
.m29_c00109{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);}
.mb1_c00109{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);}
.m35_c00109{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);}
.m10_c00109{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);}
.m2c_c00109{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_c00109{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);}
.m7f_c00109{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);}
.mc2_c00109{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);}
.m11_c00109{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);}
.mcc_c00109{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);}
.m46_c00109{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);}
.mae_c00109{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);}
.m33_c00109{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m86_c00109{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.mc3_c00109{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);}
.mbe_c00109{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);}
.m7_c00109{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);}
.md1_c00109{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);}
.m21_c00109{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);}
.m6_c00109{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);}
.m23_c00109{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);}
.m40_c00109{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);}
.m9f_c00109{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);}
.m71_c00109{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);}
.m4e_c00109{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);}
.mb3_c00109{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);}
.m3_c00109{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);}
.m41_c00109{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);}
.m8_c00109{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);}
.me0_c00109{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);}
.m82_c00109{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);}
.m85_c00109{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);}
.m25_c00109{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);}
.mb2_c00109{transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);}
.m91_c00109{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);}
.m92_c00109{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);}
.m98_c00109{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);}
.mb0_c00109{transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{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);}
.m9e_c00109{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);}
.mad_c00109{transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);}
.m7c_c00109{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);}
.mec_c00109{transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{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);}
.md3_c00109{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);}
.mf0_c00109{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);}
.m1e_c00109{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);}
.m17_c00109{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);}
.m80_c00109{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);}
.maf_c00109{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{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);}
.m81_c00109{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_c00109{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);}
.m61_c00109{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);}
.m8a_c00109{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);}
.me_c00109{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);}
.m31_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);}
.m2b_c00109{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);}
.ma6_c00109{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);}
.m9_c00109{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);}
.m27_c00109{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);}
.mf1_c00109{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);}
.m2a_c00109{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);}
.m12_c00109{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);}
.m1f_c00109{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);}
.m42_c00109{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);}
.m30_c00109{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);}
.me9_c00109{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);}
.me7_c00109{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);}
.mab_c00109{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);}
.m6d_c00109{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);}
.mde_c00109{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);}
.mc_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);}
.mf2_c00109{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);}
.me3_c00109{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);}
.mc1_c00109{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);}
.m5b_c00109{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);}
.mc6_c00109{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);}
.m20_c00109{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);}
.m19_c00109{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);}
.m60_c00109{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);}
.mf3_c00109{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);}
.med_c00109{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);}
.md5_c00109{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);}
.m3c_c00109{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);}
.mda_c00109{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);}
.m45_c00109{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);}
.md2_c00109{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);}
.m6e_c00109{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);}
.m6f_c00109{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);}
.meb_c00109{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);}
.m50_c00109{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);}
.mac_c00109{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);}
.mb_c00109{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);}
.m4b_c00109{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);}
.me5_c00109{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);}
.m72_c00109{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);}
.ma0_c00109{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);}
.m47_c00109{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);}
.mb4_c00109{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);}
.md4_c00109{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);}
.m8f_c00109{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);}
.m44_c00109{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);}
.m8e_c00109{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);}
.mdc_c00109{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);}
.me1_c00109{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);}
.m15_c00109{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);}
.m48_c00109{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);}
.mdf_c00109{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);}
.mbd_c00109{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);}
.m4a_c00109{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);}
.me2_c00109{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);}
.m5f_c00109{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);}
.mf5_c00109{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);}
.m69_c00109{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_c00109{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);}
.m1a_c00109{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);}
.mbf_c00109{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);}
.me6_c00109{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);}
.m8d_c00109{transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{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);}
.m3b_c00109{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);}
.m3d_c00109{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);}
.m97_c00109{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);}
.m7a_c00109{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);}
.m51_c00109{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);}
.m59_c00109{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);}
.mcb_c00109{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);}
.ma4_c00109{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);}
.mcf_c00109{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);}
.md8_c00109{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);}
.ma1_c00109{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);}
.m5d_c00109{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);}
.mef_c00109{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);}
.m4c_c00109{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);}
.mea_c00109{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);}
.m57_c00109{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{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);}
.m83_c00109{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);}
.m66_c00109{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);}
.m14_c00109{transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);}
.mf4_c00109{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);}
.m8c_c00109{transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);}
.m95_c00109{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);}
.m9b_c00109{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);}
.m56_c00109{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);}
.m58_c00109{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{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);}
.m5c_c00109{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);}
.m5a_c00109{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);}
.m52_c00109{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);}
.m65_c00109{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);}
.me4_c00109{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);}
.mdb_c00109{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);}
.ma9_c00109{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);}
.m62_c00109{transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);}
.m64_c00109{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);}
.m6a_c00109{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);}
.m18_c00109{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);}
.m7d_c00109{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);}
.ma7_c00109{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);}
.md9_c00109{transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);}
.ma5_c00109{transform:matrix(0.236510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236510,0.000000,0.000000,0.250000,0,0);}
.m94_c00109{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.mcd_c00109{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);}
.mca_c00109{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m96_c00109{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);}
.m3a_c00109{transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);}
.md0_c00109{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);}
.m1c_c00109{transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);}
.maa_c00109{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{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);}
.m2_c00109{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);}
.m37_c00109{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);}
.m67_c00109{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);}
.m54_c00109{transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257330,0.000000,0.000000,0.250000,0,0);}
.mc8_c00109{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);}
.ma8_c00109{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);}
.ma2_c00109{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);}
.mce_c00109{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);}
.md7_c00109{transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);}
.m70_c00109{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);}
.mdd_c00109{transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);}
.m99_c00109{transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);}
.mc4_c00109{transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);}
.m63_c00109{transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);}
.m8b_c00109{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);}
.m3e_c00109{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);}
.mf_c00109{transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353600,0.000000,0.000000,0.250000,0,0);}
.mc9_c00109{transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);}
.m49_c00109{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00109{transform:matrix(0.370455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370455,0.000000,0.000000,0.250000,0,0);}
.m6c_c00109{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);}
.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;}
.fc0_c00109{color:transparent;}
.fs0_c00109{font-size:24.150000px;}
.fs6_c00109{font-size:64.050000px;}
.fs2_c00109{font-size:68.250000px;}
.fs1_c00109{font-size:69.300000px;}
.fs7_c00109{font-size:70.350000px;}
.fs4_c00109{font-size:71.400000px;}
.fs9_c00109{font-size:72.450000px;}
.fs3_c00109{font-size:73.500000px;}
.fse_c00109{font-size:75.600000px;}
.fs5_c00109{font-size:76.650000px;}
.fsb_c00109{font-size:77.700000px;}
.fsa_c00109{font-size:78.750000px;}
.fsd_c00109{font-size:79.800000px;}
.fsc_c00109{font-size:85.050000px;}
.fs8_c00109{font-size:86.100000px;}
.y0_c00109{bottom:0.000000px;}
.y26_c00109{bottom:152.227500px;}
.y25_c00109{bottom:173.401500px;}
.y24_c00109{bottom:173.985000px;}
.y23_c00109{bottom:174.813000px;}
.y22_c00109{bottom:175.377000px;}
.y21_c00109{bottom:175.750500px;}
.y20_c00109{bottom:175.945500px;}
.y1f_c00109{bottom:176.380500px;}
.y1e_c00109{bottom:176.850000px;}
.y1d_c00109{bottom:198.222000px;}
.y1c_c00109{bottom:220.786500px;}
.y1b_c00109{bottom:243.838500px;}
.y1a_c00109{bottom:267.055500px;}
.y19_c00109{bottom:290.034000px;}
.y18_c00109{bottom:312.301500px;}
.y17_c00109{bottom:335.245500px;}
.y16_c00109{bottom:358.248000px;}
.y15_c00109{bottom:380.785500px;}
.y14_c00109{bottom:404.085000px;}
.y13_c00109{bottom:426.553500px;}
.y12_c00109{bottom:449.100000px;}
.y11_c00109{bottom:471.904500px;}
.y10_c00109{bottom:494.406000px;}
.yf_c00109{bottom:517.795500px;}
.ye_c00109{bottom:540.051000px;}
.yd_c00109{bottom:562.806000px;}
.yc_c00109{bottom:585.807000px;}
.yb_c00109{bottom:608.694000px;}
.ya_c00109{bottom:630.862500px;}
.y9_c00109{bottom:654.135000px;}
.y8_c00109{bottom:675.921000px;}
.y7_c00109{bottom:698.931000px;}
.y6_c00109{bottom:721.773000px;}
.y5_c00109{bottom:744.750000px;}
.y4_c00109{bottom:766.981500px;}
.y3_c00109{bottom:789.451500px;}
.y2_c00109{bottom:812.242500px;}
.y1_c00109{bottom:912.060000px;}
.h2_c00109{height:24.150000px;}
.h8_c00109{height:64.050000px;}
.h4_c00109{height:68.250000px;}
.h3_c00109{height:69.300000px;}
.h9_c00109{height:70.350000px;}
.h6_c00109{height:71.400000px;}
.hb_c00109{height:72.450000px;}
.h5_c00109{height:73.500000px;}
.h10_c00109{height:75.600000px;}
.h7_c00109{height:76.650000px;}
.hd_c00109{height:77.700000px;}
.hc_c00109{height:78.750000px;}
.hf_c00109{height:79.800000px;}
.he_c00109{height:85.050000px;}
.ha_c00109{height:86.100000px;}
.h0_c00109{height:1008.450000px;}
.h1_c00109{height:1008.750000px;}
.w0_c00109{width:676.890000px;}
.w1_c00109{width:677.250000px;}
.x0_c00109{left:0.000000px;}
.x2e_c00109{left:160.380000px;}
.x4e_c00109{left:163.350000px;}
.x76_c00109{left:167.130000px;}
.x3_c00109{left:169.290000px;}
.x15_c00109{left:170.640000px;}
.x62_c00109{left:171.990000px;}
.x73_c00109{left:173.340000px;}
.x83_c00109{left:175.500000px;}
.x2f_c00109{left:191.700000px;}
.x63_c00109{left:194.940000px;}
.x21_c00109{left:196.290000px;}
.x49_c00109{left:199.260000px;}
.x4_c00109{left:202.770000px;}
.xf_c00109{left:209.790000px;}
.x29_c00109{left:211.140000px;}
.x84_c00109{left:213.030000px;}
.x7b_c00109{left:216.000000px;}
.x22_c00109{left:217.620000px;}
.xa_c00109{left:224.370000px;}
.x44_c00109{left:226.260000px;}
.x30_c00109{left:227.880000px;}
.x6a_c00109{left:229.770000px;}
.x5c_c00109{left:231.660000px;}
.x64_c00109{left:234.090000px;}
.x6f_c00109{left:236.790000px;}
.x1_c00109{left:238.680000px;}
.x57_c00109{left:239.760000px;}
.x2a_c00109{left:244.620000px;}
.x4a_c00109{left:246.780000px;}
.x5_c00109{left:250.830000px;}
.xb_c00109{left:252.990000px;}
.x1b_c00109{left:255.150000px;}
.x36_c00109{left:258.930000px;}
.x58_c00109{left:260.280000px;}
.x2_c00109{left:263.520000px;}
.x45_c00109{left:265.410000px;}
.x7c_c00109{left:268.380000px;}
.x2b_c00109{left:270.000000px;}
.x23_c00109{left:271.080000px;}
.x40_c00109{left:273.240000px;}
.x5d_c00109{left:275.130000px;}
.x4f_c00109{left:278.100000px;}
.x80_c00109{left:279.450000px;}
.x6b_c00109{left:280.530000px;}
.x31_c00109{left:283.770000px;}
.x16_c00109{left:285.120000px;}
.x37_c00109{left:287.550000px;}
.x1c_c00109{left:289.170000px;}
.x3b_c00109{left:292.950000px;}
.x4b_c00109{left:296.460000px;}
.x41_c00109{left:299.970000px;}
.x74_c00109{left:301.050000px;}
.x6d_c00109{left:306.450000px;}
.x52_c00109{left:308.610000px;}
.x65_c00109{left:312.390000px;}
.x4c_c00109{left:314.010000px;}
.x53_c00109{left:316.980000px;}
.x17_c00109{left:322.110000px;}
.x46_c00109{left:325.620000px;}
.x6c_c00109{left:327.510000px;}
.x66_c00109{left:328.860000px;}
.xc_c00109{left:331.020000px;}
.x6e_c00109{left:332.640000px;}
.x24_c00109{left:333.990000px;}
.x10_c00109{left:335.070000px;}
.x59_c00109{left:336.690000px;}
.x5e_c00109{left:339.120000px;}
.x1d_c00109{left:340.200000px;}
.x50_c00109{left:342.900000px;}
.x32_c00109{left:344.250000px;}
.x38_c00109{left:348.840000px;}
.x3c_c00109{left:349.920000px;}
.x5a_c00109{left:355.860000px;}
.x6_c00109{left:356.940000px;}
.x25_c00109{left:358.560000px;}
.x54_c00109{left:360.180000px;}
.x11_c00109{left:361.260000px;}
.x51_c00109{left:365.040000px;}
.x1e_c00109{left:366.660000px;}
.x75_c00109{left:370.710000px;}
.x18_c00109{left:371.790000px;}
.x2c_c00109{left:373.680000px;}
.x7_c00109{left:377.730000px;}
.x3d_c00109{left:383.130000px;}
.x67_c00109{left:385.020000px;}
.x39_c00109{left:386.370000px;}
.x7f_c00109{left:389.880000px;}
.x1f_c00109{left:392.580000px;}
.xd_c00109{left:393.660000px;}
.x4d_c00109{left:396.630000px;}
.x19_c00109{left:399.060000px;}
.x26_c00109{left:400.410000px;}
.x55_c00109{left:401.490000px;}
.x33_c00109{left:409.590000px;}
.x7d_c00109{left:413.100000px;}
.x77_c00109{left:414.720000px;}
.x47_c00109{left:418.770000px;}
.x2d_c00109{left:420.120000px;}
.x56_c00109{left:421.740000px;}
.x85_c00109{left:422.820000px;}
.x79_c00109{left:424.980000px;}
.x12_c00109{left:426.330000px;}
.x27_c00109{left:427.950000px;}
.x86_c00109{left:432.000000px;}
.x8_c00109{left:434.160000px;}
.x68_c00109{left:440.370000px;}
.x81_c00109{left:443.610000px;}
.x34_c00109{left:444.960000px;}
.x42_c00109{left:446.040000px;}
.x70_c00109{left:447.390000px;}
.x3e_c00109{left:451.440000px;}
.x7a_c00109{left:454.410000px;}
.x5f_c00109{left:455.490000px;}
.x28_c00109{left:456.570000px;}
.x20_c00109{left:459.270000px;}
.x1a_c00109{left:461.430000px;}
.x13_c00109{left:463.050000px;}
.x71_c00109{left:471.960000px;}
.xe_c00109{left:473.850000px;}
.x9_c00109{left:479.520000px;}
.x35_c00109{left:480.870000px;}
.x60_c00109{left:483.300000px;}
.x14_c00109{left:487.350000px;}
.x5b_c00109{left:491.130000px;}
.x48_c00109{left:493.290000px;}
.x72_c00109{left:502.740000px;}
.x3a_c00109{left:504.900000px;}
.x78_c00109{left:505.980000px;}
.x43_c00109{left:519.750000px;}
.x61_c00109{left:524.610000px;}
.x3f_c00109{left:528.930000px;}
.x69_c00109{left:548.100000px;}
.x82_c00109{left:554.998500px;}
.x7e_c00109{left:558.900000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.fs0_c00109{font-size:21.466667pt;}
.fs6_c00109{font-size:56.933333pt;}
.fs2_c00109{font-size:60.666667pt;}
.fs1_c00109{font-size:61.600000pt;}
.fs7_c00109{font-size:62.533333pt;}
.fs4_c00109{font-size:63.466667pt;}
.fs9_c00109{font-size:64.400000pt;}
.fs3_c00109{font-size:65.333333pt;}
.fse_c00109{font-size:67.200000pt;}
.fs5_c00109{font-size:68.133333pt;}
.fsb_c00109{font-size:69.066667pt;}
.fsa_c00109{font-size:70.000000pt;}
.fsd_c00109{font-size:70.933333pt;}
.fsc_c00109{font-size:75.600000pt;}
.fs8_c00109{font-size:76.533333pt;}
.y0_c00109{bottom:0.000000pt;}
.y26_c00109{bottom:135.313333pt;}
.y25_c00109{bottom:154.134667pt;}
.y24_c00109{bottom:154.653333pt;}
.y23_c00109{bottom:155.389333pt;}
.y22_c00109{bottom:155.890667pt;}
.y21_c00109{bottom:156.222667pt;}
.y20_c00109{bottom:156.396000pt;}
.y1f_c00109{bottom:156.782667pt;}
.y1e_c00109{bottom:157.200000pt;}
.y1d_c00109{bottom:176.197333pt;}
.y1c_c00109{bottom:196.254667pt;}
.y1b_c00109{bottom:216.745333pt;}
.y1a_c00109{bottom:237.382667pt;}
.y19_c00109{bottom:257.808000pt;}
.y18_c00109{bottom:277.601333pt;}
.y17_c00109{bottom:297.996000pt;}
.y16_c00109{bottom:318.442667pt;}
.y15_c00109{bottom:338.476000pt;}
.y14_c00109{bottom:359.186667pt;}
.y13_c00109{bottom:379.158667pt;}
.y12_c00109{bottom:399.200000pt;}
.y11_c00109{bottom:419.470667pt;}
.y10_c00109{bottom:439.472000pt;}
.yf_c00109{bottom:460.262667pt;}
.ye_c00109{bottom:480.045333pt;}
.yd_c00109{bottom:500.272000pt;}
.yc_c00109{bottom:520.717333pt;}
.yb_c00109{bottom:541.061333pt;}
.ya_c00109{bottom:560.766667pt;}
.y9_c00109{bottom:581.453333pt;}
.y8_c00109{bottom:600.818667pt;}
.y7_c00109{bottom:621.272000pt;}
.y6_c00109{bottom:641.576000pt;}
.y5_c00109{bottom:662.000000pt;}
.y4_c00109{bottom:681.761333pt;}
.y3_c00109{bottom:701.734667pt;}
.y2_c00109{bottom:721.993333pt;}
.y1_c00109{bottom:810.720000pt;}
.h2_c00109{height:21.466667pt;}
.h8_c00109{height:56.933333pt;}
.h4_c00109{height:60.666667pt;}
.h3_c00109{height:61.600000pt;}
.h9_c00109{height:62.533333pt;}
.h6_c00109{height:63.466667pt;}
.hb_c00109{height:64.400000pt;}
.h5_c00109{height:65.333333pt;}
.h10_c00109{height:67.200000pt;}
.h7_c00109{height:68.133333pt;}
.hd_c00109{height:69.066667pt;}
.hc_c00109{height:70.000000pt;}
.hf_c00109{height:70.933333pt;}
.he_c00109{height:75.600000pt;}
.ha_c00109{height:76.533333pt;}
.h0_c00109{height:896.400000pt;}
.h1_c00109{height:896.666667pt;}
.w0_c00109{width:601.680000pt;}
.w1_c00109{width:602.000000pt;}
.x0_c00109{left:0.000000pt;}
.x2e_c00109{left:142.560000pt;}
.x4e_c00109{left:145.200000pt;}
.x76_c00109{left:148.560000pt;}
.x3_c00109{left:150.480000pt;}
.x15_c00109{left:151.680000pt;}
.x62_c00109{left:152.880000pt;}
.x73_c00109{left:154.080000pt;}
.x83_c00109{left:156.000000pt;}
.x2f_c00109{left:170.400000pt;}
.x63_c00109{left:173.280000pt;}
.x21_c00109{left:174.480000pt;}
.x49_c00109{left:177.120000pt;}
.x4_c00109{left:180.240000pt;}
.xf_c00109{left:186.480000pt;}
.x29_c00109{left:187.680000pt;}
.x84_c00109{left:189.360000pt;}
.x7b_c00109{left:192.000000pt;}
.x22_c00109{left:193.440000pt;}
.xa_c00109{left:199.440000pt;}
.x44_c00109{left:201.120000pt;}
.x30_c00109{left:202.560000pt;}
.x6a_c00109{left:204.240000pt;}
.x5c_c00109{left:205.920000pt;}
.x64_c00109{left:208.080000pt;}
.x6f_c00109{left:210.480000pt;}
.x1_c00109{left:212.160000pt;}
.x57_c00109{left:213.120000pt;}
.x2a_c00109{left:217.440000pt;}
.x4a_c00109{left:219.360000pt;}
.x5_c00109{left:222.960000pt;}
.xb_c00109{left:224.880000pt;}
.x1b_c00109{left:226.800000pt;}
.x36_c00109{left:230.160000pt;}
.x58_c00109{left:231.360000pt;}
.x2_c00109{left:234.240000pt;}
.x45_c00109{left:235.920000pt;}
.x7c_c00109{left:238.560000pt;}
.x2b_c00109{left:240.000000pt;}
.x23_c00109{left:240.960000pt;}
.x40_c00109{left:242.880000pt;}
.x5d_c00109{left:244.560000pt;}
.x4f_c00109{left:247.200000pt;}
.x80_c00109{left:248.400000pt;}
.x6b_c00109{left:249.360000pt;}
.x31_c00109{left:252.240000pt;}
.x16_c00109{left:253.440000pt;}
.x37_c00109{left:255.600000pt;}
.x1c_c00109{left:257.040000pt;}
.x3b_c00109{left:260.400000pt;}
.x4b_c00109{left:263.520000pt;}
.x41_c00109{left:266.640000pt;}
.x74_c00109{left:267.600000pt;}
.x6d_c00109{left:272.400000pt;}
.x52_c00109{left:274.320000pt;}
.x65_c00109{left:277.680000pt;}
.x4c_c00109{left:279.120000pt;}
.x53_c00109{left:281.760000pt;}
.x17_c00109{left:286.320000pt;}
.x46_c00109{left:289.440000pt;}
.x6c_c00109{left:291.120000pt;}
.x66_c00109{left:292.320000pt;}
.xc_c00109{left:294.240000pt;}
.x6e_c00109{left:295.680000pt;}
.x24_c00109{left:296.880000pt;}
.x10_c00109{left:297.840000pt;}
.x59_c00109{left:299.280000pt;}
.x5e_c00109{left:301.440000pt;}
.x1d_c00109{left:302.400000pt;}
.x50_c00109{left:304.800000pt;}
.x32_c00109{left:306.000000pt;}
.x38_c00109{left:310.080000pt;}
.x3c_c00109{left:311.040000pt;}
.x5a_c00109{left:316.320000pt;}
.x6_c00109{left:317.280000pt;}
.x25_c00109{left:318.720000pt;}
.x54_c00109{left:320.160000pt;}
.x11_c00109{left:321.120000pt;}
.x51_c00109{left:324.480000pt;}
.x1e_c00109{left:325.920000pt;}
.x75_c00109{left:329.520000pt;}
.x18_c00109{left:330.480000pt;}
.x2c_c00109{left:332.160000pt;}
.x7_c00109{left:335.760000pt;}
.x3d_c00109{left:340.560000pt;}
.x67_c00109{left:342.240000pt;}
.x39_c00109{left:343.440000pt;}
.x7f_c00109{left:346.560000pt;}
.x1f_c00109{left:348.960000pt;}
.xd_c00109{left:349.920000pt;}
.x4d_c00109{left:352.560000pt;}
.x19_c00109{left:354.720000pt;}
.x26_c00109{left:355.920000pt;}
.x55_c00109{left:356.880000pt;}
.x33_c00109{left:364.080000pt;}
.x7d_c00109{left:367.200000pt;}
.x77_c00109{left:368.640000pt;}
.x47_c00109{left:372.240000pt;}
.x2d_c00109{left:373.440000pt;}
.x56_c00109{left:374.880000pt;}
.x85_c00109{left:375.840000pt;}
.x79_c00109{left:377.760000pt;}
.x12_c00109{left:378.960000pt;}
.x27_c00109{left:380.400000pt;}
.x86_c00109{left:384.000000pt;}
.x8_c00109{left:385.920000pt;}
.x68_c00109{left:391.440000pt;}
.x81_c00109{left:394.320000pt;}
.x34_c00109{left:395.520000pt;}
.x42_c00109{left:396.480000pt;}
.x70_c00109{left:397.680000pt;}
.x3e_c00109{left:401.280000pt;}
.x7a_c00109{left:403.920000pt;}
.x5f_c00109{left:404.880000pt;}
.x28_c00109{left:405.840000pt;}
.x20_c00109{left:408.240000pt;}
.x1a_c00109{left:410.160000pt;}
.x13_c00109{left:411.600000pt;}
.x71_c00109{left:419.520000pt;}
.xe_c00109{left:421.200000pt;}
.x9_c00109{left:426.240000pt;}
.x35_c00109{left:427.440000pt;}
.x60_c00109{left:429.600000pt;}
.x14_c00109{left:433.200000pt;}
.x5b_c00109{left:436.560000pt;}
.x48_c00109{left:438.480000pt;}
.x72_c00109{left:446.880000pt;}
.x3a_c00109{left:448.800000pt;}
.x78_c00109{left:449.760000pt;}
.x43_c00109{left:462.000000pt;}
.x61_c00109{left:466.320000pt;}
.x3f_c00109{left:470.160000pt;}
.x69_c00109{left:487.200000pt;}
.x82_c00109{left:493.332000pt;}
.x7e_c00109{left:496.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m10_c00110{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);}
.m40_c00110{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);}
.m11_c00110{transform:matrix(0.017275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017275,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.021400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021400,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);}
.m49_c00110{transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.135715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135715,0.000000,0.000000,0.250000,0,0);}
.m14_c00110{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);}
.mb_c00110{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);}
.m1b_c00110{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);}
.m59_c00110{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);}
.m53_c00110{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);}
.m27_c00110{transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{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);}
.m4a_c00110{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);}
.m3b_c00110{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);}
.m1d_c00110{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);}
.m54_c00110{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);}
.m25_c00110{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);}
.m5_c00110{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);}
.m65_c00110{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);}
.m29_c00110{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);}
.m2b_c00110{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);}
.m61_c00110{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);}
.m63_c00110{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);}
.m4d_c00110{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);}
.m60_c00110{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);}
.m3a_c00110{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);}
.m50_c00110{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);}
.m26_c00110{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);}
.m58_c00110{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);}
.m3d_c00110{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);}
.m1e_c00110{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);}
.m46_c00110{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);}
.m41_c00110{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);}
.m37_c00110{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);}
.m5d_c00110{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);}
.m45_c00110{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);}
.m4b_c00110{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);}
.m5c_c00110{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);}
.m20_c00110{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);}
.m3e_c00110{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);}
.m13_c00110{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);}
.m62_c00110{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);}
.m1f_c00110{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_c00110{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);}
.m44_c00110{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);}
.m2d_c00110{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_c00110{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);}
.m5f_c00110{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);}
.m17_c00110{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);}
.m1a_c00110{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);}
.m1c_c00110{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);}
.m2c_c00110{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);}
.m4f_c00110{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);}
.m23_c00110{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);}
.m4e_c00110{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);}
.m30_c00110{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);}
.m33_c00110{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);}
.m51_c00110{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);}
.m39_c00110{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);}
.m5a_c00110{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);}
.m2e_c00110{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);}
.m36_c00110{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);}
.m15_c00110{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);}
.m32_c00110{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);}
.m48_c00110{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);}
.m64_c00110{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);}
.m3f_c00110{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);}
.m55_c00110{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);}
.m43_c00110{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_c00110{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);}
.m24_c00110{transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{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);}
.m4c_c00110{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);}
.m18_c00110{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);}
.m2a_c00110{transform:matrix(0.229690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229690,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{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);}
.m16_c00110{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);}
.m57_c00110{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);}
.m66_c00110{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00110{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);}
.m56_c00110{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267810,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{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);}
.m5e_c00110{transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);}
.m67_c00110{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);}
.m47_c00110{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);}
.mc_c00110{transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281190,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{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);}
.m38_c00110{transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.295585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295585,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.300940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300940,0.000000,0.000000,0.250000,0,0);}
.m52_c00110{transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321980,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);}
.m22_c00110{transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.364635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364635,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.381160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381160,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.418580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418580,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.449975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449975,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.490590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490590,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.649140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649140,0.000000,0.000000,0.250000,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;}
.fc0_c00110{color:transparent;}
.fs8_c00110{font-size:23.100000px;}
.fs0_c00110{font-size:39.900000px;}
.fs5_c00110{font-size:64.050000px;}
.fs3_c00110{font-size:68.250000px;}
.fs4_c00110{font-size:70.350000px;}
.fs7_c00110{font-size:71.400000px;}
.fs6_c00110{font-size:84.000000px;}
.fs2_c00110{font-size:126.000000px;}
.fs1_c00110{font-size:128.100000px;}
.y0_c00110{bottom:0.000000px;}
.y14_c00110{bottom:448.470000px;}
.y13_c00110{bottom:481.993500px;}
.y12_c00110{bottom:544.180500px;}
.y11_c00110{bottom:585.624000px;}
.y10_c00110{bottom:655.774500px;}
.yf_c00110{bottom:678.160500px;}
.ye_c00110{bottom:701.118000px;}
.yd_c00110{bottom:724.410000px;}
.yc_c00110{bottom:747.465000px;}
.yb_c00110{bottom:769.311000px;}
.ya_c00110{bottom:792.450000px;}
.y9_c00110{bottom:814.312500px;}
.y8_c00110{bottom:859.176000px;}
.y2_c00110{bottom:895.324500px;}
.y3_c00110{bottom:897.736500px;}
.y4_c00110{bottom:898.497000px;}
.y5_c00110{bottom:900.258000px;}
.y6_c00110{bottom:902.161500px;}
.y7_c00110{bottom:903.517500px;}
.y1_c00110{bottom:926.095500px;}
.ha_c00110{height:23.100000px;}
.h2_c00110{height:39.900000px;}
.h7_c00110{height:64.050000px;}
.h5_c00110{height:68.250000px;}
.h6_c00110{height:70.350000px;}
.h9_c00110{height:71.400000px;}
.h8_c00110{height:84.000000px;}
.h4_c00110{height:126.000000px;}
.h3_c00110{height:128.100000px;}
.h1_c00110{height:1005.000000px;}
.h0_c00110{height:1005.150000px;}
.w0_c00110{width:705.450000px;}
.w1_c00110{width:705.750000px;}
.x0_c00110{left:0.000000px;}
.x12_c00110{left:40.230000px;}
.xc_c00110{left:41.952000px;}
.x1_c00110{left:56.430000px;}
.x2_c00110{left:119.070000px;}
.x1d_c00110{left:129.330000px;}
.x16_c00110{left:130.410000px;}
.x31_c00110{left:146.070000px;}
.x2a_c00110{left:157.680000px;}
.x3_c00110{left:159.030000px;}
.x43_c00110{left:168.210000px;}
.x13_c00110{left:169.560000px;}
.x1e_c00110{left:173.610000px;}
.x39_c00110{left:182.520000px;}
.x24_c00110{left:194.670000px;}
.x32_c00110{left:197.910000px;}
.x3c_c00110{left:200.340000px;}
.x4e_c00110{left:201.420000px;}
.xd_c00110{left:202.740000px;}
.x3a_c00110{left:207.630000px;}
.x44_c00110{left:210.600000px;}
.x3d_c00110{left:214.110000px;}
.x17_c00110{left:227.340000px;}
.x4_c00110{left:230.580000px;}
.x25_c00110{left:233.010000px;}
.x1f_c00110{left:235.980000px;}
.x2b_c00110{left:239.490000px;}
.xe_c00110{left:253.473000px;}
.x4f_c00110{left:260.820000px;}
.x18_c00110{left:267.840000px;}
.x26_c00110{left:272.700000px;}
.x5_c00110{left:275.940000px;}
.x3e_c00110{left:277.830000px;}
.x4b_c00110{left:281.880000px;}
.x20_c00110{left:285.390000px;}
.x2c_c00110{left:296.460000px;}
.x3b_c00110{left:300.780000px;}
.x19_c00110{left:308.880000px;}
.x33_c00110{left:310.230000px;}
.x4c_c00110{left:311.580000px;}
.x21_c00110{left:313.740000px;}
.x45_c00110{left:318.600000px;}
.x27_c00110{left:323.460000px;}
.x3f_c00110{left:325.080000px;}
.x50_c00110{left:335.340000px;}
.x6_c00110{left:337.770000px;}
.x4d_c00110{left:339.390000px;}
.x34_c00110{left:345.330000px;}
.x2d_c00110{left:346.410000px;}
.x7_c00110{left:349.650000px;}
.x40_c00110{left:351.270000px;}
.x1a_c00110{left:355.860000px;}
.x46_c00110{left:359.100000px;}
.x2e_c00110{left:361.800000px;}
.xf_c00110{left:370.888500px;}
.x47_c00110{left:381.510000px;}
.x35_c00110{left:386.640000px;}
.x22_c00110{left:389.070000px;}
.x14_c00110{left:390.420000px;}
.x1b_c00110{left:395.280000px;}
.x8_c00110{left:396.900000px;}
.x23_c00110{left:405.540000px;}
.x52_c00110{left:406.620000px;}
.x41_c00110{left:413.100000px;}
.x2f_c00110{left:414.720000px;}
.x51_c00110{left:417.690000px;}
.x48_c00110{left:422.820000px;}
.x36_c00110{left:424.980000px;}
.x1c_c00110{left:432.810000px;}
.x28_c00110{left:436.590000px;}
.x9_c00110{left:453.870000px;}
.x49_c00110{left:459.810000px;}
.x42_c00110{left:465.480000px;}
.x15_c00110{left:466.830000px;}
.x29_c00110{left:469.800000px;}
.x4a_c00110{left:470.880000px;}
.x30_c00110{left:481.680000px;}
.x37_c00110{left:491.940000px;}
.x10_c00110{left:497.752500px;}
.xa_c00110{left:504.630000px;}
.xb_c00110{left:528.120000px;}
.x38_c00110{left:547.020000px;}
.x11_c00110{left:588.172500px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
.fs8_c00110{font-size:20.533333pt;}
.fs0_c00110{font-size:35.466667pt;}
.fs5_c00110{font-size:56.933333pt;}
.fs3_c00110{font-size:60.666667pt;}
.fs4_c00110{font-size:62.533333pt;}
.fs7_c00110{font-size:63.466667pt;}
.fs6_c00110{font-size:74.666667pt;}
.fs2_c00110{font-size:112.000000pt;}
.fs1_c00110{font-size:113.866667pt;}
.y0_c00110{bottom:0.000000pt;}
.y14_c00110{bottom:398.640000pt;}
.y13_c00110{bottom:428.438667pt;}
.y12_c00110{bottom:483.716000pt;}
.y11_c00110{bottom:520.554667pt;}
.y10_c00110{bottom:582.910667pt;}
.yf_c00110{bottom:602.809333pt;}
.ye_c00110{bottom:623.216000pt;}
.yd_c00110{bottom:643.920000pt;}
.yc_c00110{bottom:664.413333pt;}
.yb_c00110{bottom:683.832000pt;}
.ya_c00110{bottom:704.400000pt;}
.y9_c00110{bottom:723.833333pt;}
.y8_c00110{bottom:763.712000pt;}
.y2_c00110{bottom:795.844000pt;}
.y3_c00110{bottom:797.988000pt;}
.y4_c00110{bottom:798.664000pt;}
.y5_c00110{bottom:800.229333pt;}
.y6_c00110{bottom:801.921333pt;}
.y7_c00110{bottom:803.126667pt;}
.y1_c00110{bottom:823.196000pt;}
.ha_c00110{height:20.533333pt;}
.h2_c00110{height:35.466667pt;}
.h7_c00110{height:56.933333pt;}
.h5_c00110{height:60.666667pt;}
.h6_c00110{height:62.533333pt;}
.h9_c00110{height:63.466667pt;}
.h8_c00110{height:74.666667pt;}
.h4_c00110{height:112.000000pt;}
.h3_c00110{height:113.866667pt;}
.h1_c00110{height:893.333333pt;}
.h0_c00110{height:893.466667pt;}
.w0_c00110{width:627.066667pt;}
.w1_c00110{width:627.333333pt;}
.x0_c00110{left:0.000000pt;}
.x12_c00110{left:35.760000pt;}
.xc_c00110{left:37.290667pt;}
.x1_c00110{left:50.160000pt;}
.x2_c00110{left:105.840000pt;}
.x1d_c00110{left:114.960000pt;}
.x16_c00110{left:115.920000pt;}
.x31_c00110{left:129.840000pt;}
.x2a_c00110{left:140.160000pt;}
.x3_c00110{left:141.360000pt;}
.x43_c00110{left:149.520000pt;}
.x13_c00110{left:150.720000pt;}
.x1e_c00110{left:154.320000pt;}
.x39_c00110{left:162.240000pt;}
.x24_c00110{left:173.040000pt;}
.x32_c00110{left:175.920000pt;}
.x3c_c00110{left:178.080000pt;}
.x4e_c00110{left:179.040000pt;}
.xd_c00110{left:180.213333pt;}
.x3a_c00110{left:184.560000pt;}
.x44_c00110{left:187.200000pt;}
.x3d_c00110{left:190.320000pt;}
.x17_c00110{left:202.080000pt;}
.x4_c00110{left:204.960000pt;}
.x25_c00110{left:207.120000pt;}
.x1f_c00110{left:209.760000pt;}
.x2b_c00110{left:212.880000pt;}
.xe_c00110{left:225.309333pt;}
.x4f_c00110{left:231.840000pt;}
.x18_c00110{left:238.080000pt;}
.x26_c00110{left:242.400000pt;}
.x5_c00110{left:245.280000pt;}
.x3e_c00110{left:246.960000pt;}
.x4b_c00110{left:250.560000pt;}
.x20_c00110{left:253.680000pt;}
.x2c_c00110{left:263.520000pt;}
.x3b_c00110{left:267.360000pt;}
.x19_c00110{left:274.560000pt;}
.x33_c00110{left:275.760000pt;}
.x4c_c00110{left:276.960000pt;}
.x21_c00110{left:278.880000pt;}
.x45_c00110{left:283.200000pt;}
.x27_c00110{left:287.520000pt;}
.x3f_c00110{left:288.960000pt;}
.x50_c00110{left:298.080000pt;}
.x6_c00110{left:300.240000pt;}
.x4d_c00110{left:301.680000pt;}
.x34_c00110{left:306.960000pt;}
.x2d_c00110{left:307.920000pt;}
.x7_c00110{left:310.800000pt;}
.x40_c00110{left:312.240000pt;}
.x1a_c00110{left:316.320000pt;}
.x46_c00110{left:319.200000pt;}
.x2e_c00110{left:321.600000pt;}
.xf_c00110{left:329.678667pt;}
.x47_c00110{left:339.120000pt;}
.x35_c00110{left:343.680000pt;}
.x22_c00110{left:345.840000pt;}
.x14_c00110{left:347.040000pt;}
.x1b_c00110{left:351.360000pt;}
.x8_c00110{left:352.800000pt;}
.x23_c00110{left:360.480000pt;}
.x52_c00110{left:361.440000pt;}
.x41_c00110{left:367.200000pt;}
.x2f_c00110{left:368.640000pt;}
.x51_c00110{left:371.280000pt;}
.x48_c00110{left:375.840000pt;}
.x36_c00110{left:377.760000pt;}
.x1c_c00110{left:384.720000pt;}
.x28_c00110{left:388.080000pt;}
.x9_c00110{left:403.440000pt;}
.x49_c00110{left:408.720000pt;}
.x42_c00110{left:413.760000pt;}
.x15_c00110{left:414.960000pt;}
.x29_c00110{left:417.600000pt;}
.x4a_c00110{left:418.560000pt;}
.x30_c00110{left:428.160000pt;}
.x37_c00110{left:437.280000pt;}
.x10_c00110{left:442.446667pt;}
.xa_c00110{left:448.560000pt;}
.xb_c00110{left:469.440000pt;}
.x38_c00110{left:486.240000pt;}
.x11_c00110{left:522.820000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.me1_c00111{transform:matrix(0.056371,0.001015,-0.004499,0.249960,0,0);-ms-transform:matrix(0.056371,0.001015,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.056371,0.001015,-0.004499,0.249960,0,0);}
.m6a_c00111{transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{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);}
.m2f_c00111{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);}
.ma2_c00111{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);}
.m39_c00111{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);}
.m10_c00111{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);}
.m61_c00111{transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{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);}
.m6_c00111{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);}
.m67_c00111{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);}
.m6d_c00111{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);}
.m82_c00111{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);}
.m59_c00111{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);}
.m21_c00111{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);}
.m30_c00111{transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);}
.mc8_c00111{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);}
.m9_c00111{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);}
.md4_c00111{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);}
.m3c_c00111{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);}
.m54_c00111{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);}
.m72_c00111{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);}
.m64_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);}
.mc6_c00111{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);}
.m1e_c00111{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);}
.m8_c00111{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);}
.mf1_c00111{transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);}
.mf4_c00111{transform:matrix(0.172795,0.002938,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172795,0.002938,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172795,0.002938,-0.004249,0.249964,0,0);}
.m1b_c00111{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);}
.m73_c00111{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);}
.m6c_c00111{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);}
.m3a_c00111{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);}
.m31_c00111{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);}
.m15_c00111{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);}
.m6b_c00111{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);}
.m7e_c00111{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);}
.ma6_c00111{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);}
.m20_c00111{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);}
.mb_c00111{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);}
.m14_c00111{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);}
.m83_c00111{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);}
.m4b_c00111{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);}
.me4_c00111{transform:matrix(0.178649,0.003037,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178649,0.003037,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178649,0.003037,-0.004249,0.249964,0,0);}
.m2a_c00111{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);}
.m7a_c00111{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);}
.m8b_c00111{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);}
.ma4_c00111{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);}
.mf6_c00111{transform:matrix(0.179319,0.003048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179319,0.003048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179319,0.003048,-0.004249,0.249964,0,0);}
.m1c_c00111{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);}
.mec_c00111{transform:matrix(0.179390,0.002691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179390,0.002691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179390,0.002691,-0.003750,0.249972,0,0);}
.mf2_c00111{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);}
.m24_c00111{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);}
.ma_c00111{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);}
.m58_c00111{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);}
.m7_c00111{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);}
.m8c_c00111{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);}
.m66_c00111{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);}
.m36_c00111{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);}
.mae_c00111{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);}
.mb2_c00111{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);}
.m77_c00111{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_c00111{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);}
.m4f_c00111{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);}
.m80_c00111{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);}
.m86_c00111{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);}
.md3_c00111{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);}
.med_c00111{transform:matrix(0.186194,0.002793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186194,0.002793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186194,0.002793,-0.003750,0.249972,0,0);}
.mc_c00111{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);}
.m5_c00111{transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);}
.mab_c00111{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);}
.mb0_c00111{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);}
.mb9_c00111{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);}
.m32_c00111{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);}
.m74_c00111{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);}
.m3e_c00111{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);}
.m9c_c00111{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);}
.m99_c00111{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);}
.m81_c00111{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);}
.m16_c00111{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);}
.mf_c00111{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);}
.mb5_c00111{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);}
.m6e_c00111{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);}
.ma8_c00111{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);}
.m40_c00111{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);}
.m29_c00111{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{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);}
.m12_c00111{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);}
.m3b_c00111{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);}
.m27_c00111{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);}
.m5b_c00111{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);}
.m37_c00111{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);}
.m9f_c00111{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.m79_c00111{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);}
.m2_c00111{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);}
.m5e_c00111{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);}
.m7b_c00111{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);}
.ma1_c00111{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);}
.m71_c00111{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);}
.mf5_c00111{transform:matrix(0.195327,0.003321,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195327,0.003321,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195327,0.003321,-0.004249,0.249964,0,0);}
.m88_c00111{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);}
.m6f_c00111{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);}
.m50_c00111{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);}
.m9a_c00111{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);}
.md9_c00111{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);}
.m69_c00111{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);}
.m57_c00111{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);}
.m41_c00111{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);}
.m5c_c00111{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);}
.m52_c00111{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);}
.me7_c00111{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);}
.mac_c00111{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);}
.mcf_c00111{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);}
.me9_c00111{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);}
.m62_c00111{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);}
.mca_c00111{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);}
.mc0_c00111{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);}
.m38_c00111{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);}
.m7f_c00111{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);}
.md8_c00111{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);}
.mdf_c00111{transform:matrix(0.202327,0.003642,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202327,0.003642,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202327,0.003642,-0.004499,0.249960,0,0);}
.m9e_c00111{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);}
.mbb_c00111{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);}
.m56_c00111{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);}
.m84_c00111{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);}
.m92_c00111{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);}
.m11_c00111{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);}
.mb6_c00111{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);}
.mb4_c00111{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_c00111{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);}
.maa_c00111{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);}
.mee_c00111{transform:matrix(0.205662,0.003085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205662,0.003085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205662,0.003085,-0.003750,0.249972,0,0);}
.m75_c00111{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);}
.m91_c00111{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);}
.mc9_c00111{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);}
.m63_c00111{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);}
.m18_c00111{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);}
.mf8_c00111{transform:matrix(0.206805,0.003516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206805,0.003516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206805,0.003516,-0.004249,0.249964,0,0);}
.m9d_c00111{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);}
.mea_c00111{transform:matrix(0.207242,0.003109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207242,0.003109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207242,0.003109,-0.003750,0.249972,0,0);}
.m19_c00111{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);}
.m17_c00111{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);}
.m3d_c00111{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);}
.md5_c00111{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);}
.mcd_c00111{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);}
.mf3_c00111{transform:matrix(0.208555,0.003545,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208555,0.003545,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208555,0.003545,-0.004249,0.249964,0,0);}
.m25_c00111{transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);}
.mdc_c00111{transform:matrix(0.209451,0.003770,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209451,0.003770,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209451,0.003770,-0.004499,0.249960,0,0);}
.mad_c00111{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);}
.m1a_c00111{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);}
.mb3_c00111{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);}
.md7_c00111{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);}
.m2b_c00111{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);}
.m1f_c00111{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);}
.mba_c00111{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);}
.mb8_c00111{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);}
.mb7_c00111{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);}
.m34_c00111{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);}
.m2e_c00111{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);}
.m65_c00111{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);}
.m93_c00111{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);}
.mbc_c00111{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);}
.m51_c00111{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);}
.mc5_c00111{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);}
.m70_c00111{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);}
.ma9_c00111{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);}
.me8_c00111{transform:matrix(0.214049,0.003639,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214049,0.003639,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214049,0.003639,-0.004249,0.249964,0,0);}
.m87_c00111{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);}
.me0_c00111{transform:matrix(0.215190,0.003873,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215190,0.003873,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215190,0.003873,-0.004499,0.249960,0,0);}
.md6_c00111{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);}
.m7c_c00111{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);}
.m5a_c00111{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);}
.mbd_c00111{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);}
.m3f_c00111{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);}
.m60_c00111{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);}
.m44_c00111{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);}
.meb_c00111{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);}
.m26_c00111{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);}
.m42_c00111{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);}
.mbe_c00111{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);}
.md0_c00111{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);}
.m85_c00111{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);}
.m22_c00111{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.mcc_c00111{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);}
.m5d_c00111{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);}
.m96_c00111{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);}
.m47_c00111{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);}
.ma0_c00111{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);}
.m98_c00111{transform:matrix(0.227035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227035,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{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);}
.ma7_c00111{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);}
.m90_c00111{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);}
.mdb_c00111{transform:matrix(0.229058,0.004123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229058,0.004123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229058,0.004123,-0.004499,0.249960,0,0);}
.mb1_c00111{transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);}
.mce_c00111{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);}
.m8e_c00111{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);}
.mc1_c00111{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);}
.ma5_c00111{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);}
.md1_c00111{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);}
.maf_c00111{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);}
.mcb_c00111{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);}
.m13_c00111{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);}
.m89_c00111{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);}
.m78_c00111{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);}
.m28_c00111{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);}
.m8f_c00111{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);}
.m35_c00111{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);}
.m8a_c00111{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);}
.ma3_c00111{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.me5_c00111{transform:matrix(0.250789,0.004263,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250789,0.004263,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250789,0.004263,-0.004249,0.249964,0,0);}
.m8d_c00111{transform:matrix(0.253775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253775,0.000000,0.000000,0.250000,0,0);}
.m97_c00111{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00111{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);}
.me_c00111{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);}
.m9b_c00111{transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);}
.m95_c00111{transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);}
.mc7_c00111{transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);}
.mc3_c00111{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);}
.md_c00111{transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272380,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);}
.me6_c00111{transform:matrix(0.278290,0.004731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278290,0.004731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278290,0.004731,-0.004249,0.249964,0,0);}
.m94_c00111{transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{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);}
.mef_c00111{transform:matrix(0.290972,0.004365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290972,0.004365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290972,0.004365,-0.003750,0.249972,0,0);}
.me2_c00111{transform:matrix(0.293462,0.005282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.293462,0.005282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.293462,0.005282,-0.004499,0.249960,0,0);}
.m45_c00111{transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296845,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299940,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);}
.mda_c00111{transform:matrix(0.315349,0.005676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.315349,0.005676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.315349,0.005676,-0.004499,0.249960,0,0);}
.mdd_c00111{transform:matrix(0.317754,0.005720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.317754,0.005720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.317754,0.005720,-0.004499,0.249960,0,0);}
.m48_c00111{transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337215,0.000000,0.000000,0.250000,0,0);}
.mbf_c00111{transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);}
.md2_c00111{transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);}
.me3_c00111{transform:matrix(0.390719,0.006642,-0.004249,0.249964,0,0);-ms-transform:matrix(0.390719,0.006642,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.390719,0.006642,-0.004249,0.249964,0,0);}
.m53_c00111{transform:matrix(0.401785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401785,0.000000,0.000000,0.250000,0,0);}
.mde_c00111{transform:matrix(0.435419,0.007838,-0.004499,0.249960,0,0);-ms-transform:matrix(0.435419,0.007838,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.435419,0.007838,-0.004499,0.249960,0,0);}
.mf0_c00111{transform:matrix(0.473857,0.007108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.473857,0.007108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.473857,0.007108,-0.003750,0.249972,0,0);}
.m0_c00111{transform:matrix(0.481035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481035,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.537675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537675,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.558480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558480,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.561835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561835,0.000000,0.000000,0.250000,0,0);}
.m4d_c00111{transform:matrix(0.673310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673310,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.724365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724365,0.000000,0.000000,0.250000,0,0);}
.mf7_c00111{transform:matrix(0.766804,0.013036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.766804,0.013036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.766804,0.013036,-0.004249,0.249964,0,0);}
.m4a_c00111{transform:matrix(0.873680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.873680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.873680,0.000000,0.000000,0.250000,0,0);}
.mc4_c00111{transform:matrix(0.904075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.904075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.904075,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;}
.fsb_c00111{font-size:40.950000px;}
.fse_c00111{font-size:47.250000px;}
.fsc_c00111{font-size:50.400000px;}
.fs10_c00111{font-size:51.457434px;}
.fsd_c00111{font-size:52.500000px;}
.fs11_c00111{font-size:52.505906px;}
.fsf_c00111{font-size:54.608844px;}
.fs12_c00111{font-size:59.858648px;}
.fs8_c00111{font-size:63.000000px;}
.fsa_c00111{font-size:66.150000px;}
.fs9_c00111{font-size:67.200000px;}
.fs4_c00111{font-size:68.250000px;}
.fs6_c00111{font-size:69.300000px;}
.fs3_c00111{font-size:70.350000px;}
.fs2_c00111{font-size:71.400000px;}
.fs5_c00111{font-size:72.450000px;}
.fs7_c00111{font-size:73.500000px;}
.fs0_c00111{font-size:166.950000px;}
.fs1_c00111{font-size:195.300000px;}
.y0_c00111{bottom:0.000000px;}
.y7c_c00111{bottom:146.629269px;}
.y7d_c00111{bottom:146.634696px;}
.y7b_c00111{bottom:146.985642px;}
.y93_c00111{bottom:147.179772px;}
.y7a_c00111{bottom:147.451851px;}
.y79_c00111{bottom:147.777012px;}
.y92_c00111{bottom:147.940437px;}
.y78_c00111{bottom:148.089024px;}
.y91_c00111{bottom:148.610475px;}
.y90_c00111{bottom:149.054940px;}
.y77_c00111{bottom:149.080140px;}
.y8f_c00111{bottom:149.519474px;}
.y76_c00111{bottom:149.534064px;}
.y8e_c00111{bottom:149.807751px;}
.y75_c00111{bottom:149.854500px;}
.y8d_c00111{bottom:150.014276px;}
.y8c_c00111{bottom:150.664500px;}
.y74_c00111{bottom:167.355000px;}
.y8b_c00111{bottom:170.349352px;}
.y8a_c00111{bottom:170.556375px;}
.y89_c00111{bottom:171.017715px;}
.y88_c00111{bottom:171.827918px;}
.y87_c00111{bottom:172.309822px;}
.y86_c00111{bottom:172.844963px;}
.y85_c00111{bottom:173.343000px;}
.y73_c00111{bottom:184.570500px;}
.y84_c00111{bottom:193.692246px;}
.y83_c00111{bottom:194.716300px;}
.y82_c00111{bottom:195.060499px;}
.y81_c00111{bottom:195.354285px;}
.y80_c00111{bottom:196.217154px;}
.y7f_c00111{bottom:196.639205px;}
.y7e_c00111{bottom:196.831500px;}
.y72_c00111{bottom:201.933000px;}
.y71_c00111{bottom:227.610000px;}
.y70_c00111{bottom:252.664500px;}
.y6f_c00111{bottom:253.221000px;}
.y6e_c00111{bottom:253.374000px;}
.y6d_c00111{bottom:254.001000px;}
.y6c_c00111{bottom:254.817000px;}
.y6b_c00111{bottom:255.151500px;}
.y6a_c00111{bottom:255.373500px;}
.y69_c00111{bottom:255.844500px;}
.y68_c00111{bottom:256.092000px;}
.y67_c00111{bottom:256.530000px;}
.y66_c00111{bottom:276.118500px;}
.y65_c00111{bottom:276.661500px;}
.y64_c00111{bottom:276.849000px;}
.y63_c00111{bottom:277.150500px;}
.y62_c00111{bottom:277.464000px;}
.y61_c00111{bottom:277.932000px;}
.y60_c00111{bottom:278.388000px;}
.y5f_c00111{bottom:278.799000px;}
.y5e_c00111{bottom:279.127500px;}
.y5d_c00111{bottom:279.373500px;}
.y5c_c00111{bottom:279.726000px;}
.y5b_c00111{bottom:302.428500px;}
.y5a_c00111{bottom:321.664500px;}
.y59_c00111{bottom:321.940500px;}
.y58_c00111{bottom:322.545000px;}
.y57_c00111{bottom:322.753500px;}
.y56_c00111{bottom:322.978500px;}
.y55_c00111{bottom:323.136000px;}
.y54_c00111{bottom:323.374500px;}
.y53_c00111{bottom:323.584500px;}
.y52_c00111{bottom:324.057000px;}
.y51_c00111{bottom:324.450000px;}
.y50_c00111{bottom:324.606000px;}
.y4f_c00111{bottom:324.919500px;}
.y4e_c00111{bottom:325.366500px;}
.y4d_c00111{bottom:344.361000px;}
.y4c_c00111{bottom:344.803500px;}
.y4b_c00111{bottom:345.175500px;}
.y4a_c00111{bottom:345.546000px;}
.y49_c00111{bottom:345.793500px;}
.y48_c00111{bottom:346.363500px;}
.y47_c00111{bottom:346.930500px;}
.y46_c00111{bottom:347.538000px;}
.y45_c00111{bottom:347.991000px;}
.y44_c00111{bottom:348.523500px;}
.y43_c00111{bottom:348.858000px;}
.y42_c00111{bottom:367.339500px;}
.y41_c00111{bottom:367.771500px;}
.y40_c00111{bottom:368.058000px;}
.y3f_c00111{bottom:368.454000px;}
.y3e_c00111{bottom:368.721000px;}
.y3d_c00111{bottom:369.705000px;}
.y3c_c00111{bottom:369.943500px;}
.y3b_c00111{bottom:370.512000px;}
.y3a_c00111{bottom:370.776000px;}
.y39_c00111{bottom:371.014500px;}
.y38_c00111{bottom:371.214000px;}
.y37_c00111{bottom:371.524500px;}
.y36_c00111{bottom:391.329000px;}
.y35_c00111{bottom:391.591500px;}
.y34_c00111{bottom:391.852500px;}
.y33_c00111{bottom:392.265000px;}
.y32_c00111{bottom:392.872500px;}
.y31_c00111{bottom:393.132000px;}
.y30_c00111{bottom:393.292500px;}
.y2f_c00111{bottom:393.438000px;}
.y2e_c00111{bottom:393.708000px;}
.y2d_c00111{bottom:393.828000px;}
.y2c_c00111{bottom:394.204500px;}
.y2b_c00111{bottom:413.832000px;}
.y2a_c00111{bottom:414.093000px;}
.y29_c00111{bottom:414.439500px;}
.y28_c00111{bottom:414.708000px;}
.y27_c00111{bottom:414.921000px;}
.y26_c00111{bottom:415.075500px;}
.y25_c00111{bottom:415.549500px;}
.y24_c00111{bottom:415.701000px;}
.y23_c00111{bottom:415.945500px;}
.y22_c00111{bottom:416.406000px;}
.y21_c00111{bottom:416.598000px;}
.y20_c00111{bottom:416.883000px;}
.y1f_c00111{bottom:435.877500px;}
.y1e_c00111{bottom:436.465500px;}
.y1d_c00111{bottom:436.737000px;}
.y1c_c00111{bottom:437.368500px;}
.y1b_c00111{bottom:437.601000px;}
.y1a_c00111{bottom:438.271500px;}
.y19_c00111{bottom:439.059000px;}
.y18_c00111{bottom:439.354500px;}
.y17_c00111{bottom:439.986000px;}
.y16_c00111{bottom:459.103500px;}
.y15_c00111{bottom:459.424500px;}
.y14_c00111{bottom:459.675000px;}
.y13_c00111{bottom:459.879000px;}
.y12_c00111{bottom:460.252500px;}
.y11_c00111{bottom:460.894500px;}
.y10_c00111{bottom:461.454000px;}
.yf_c00111{bottom:461.643000px;}
.ye_c00111{bottom:461.796000px;}
.yd_c00111{bottom:461.967000px;}
.yc_c00111{bottom:462.616500px;}
.yb_c00111{bottom:463.051500px;}
.ya_c00111{bottom:483.970500px;}
.y9_c00111{bottom:506.938500px;}
.y8_c00111{bottom:575.701500px;}
.y7_c00111{bottom:598.383000px;}
.y6_c00111{bottom:621.061500px;}
.y5_c00111{bottom:643.471500px;}
.y4_c00111{bottom:666.186000px;}
.y3_c00111{bottom:690.040500px;}
.y2_c00111{bottom:738.511500px;}
.y1_c00111{bottom:797.580000px;}
.hd_c00111{height:40.950000px;}
.h10_c00111{height:47.250000px;}
.he_c00111{height:50.400000px;}
.h12_c00111{height:51.457434px;}
.hf_c00111{height:52.500000px;}
.h13_c00111{height:52.505906px;}
.h11_c00111{height:54.608844px;}
.h14_c00111{height:59.858648px;}
.ha_c00111{height:63.000000px;}
.hc_c00111{height:66.150000px;}
.hb_c00111{height:67.200000px;}
.h6_c00111{height:68.250000px;}
.h8_c00111{height:69.300000px;}
.h5_c00111{height:70.350000px;}
.h4_c00111{height:71.400000px;}
.h7_c00111{height:72.450000px;}
.h9_c00111{height:73.500000px;}
.h2_c00111{height:166.950000px;}
.h3_c00111{height:195.300000px;}
.h0_c00111{height:1008.450000px;}
.h1_c00111{height:1008.750000px;}
.w0_c00111{width:676.890000px;}
.w1_c00111{width:677.250000px;}
.x0_c00111{left:0.000000px;}
.x59_c00111{left:137.833500px;}
.x3c_c00111{left:139.050000px;}
.x50_c00111{left:140.574000px;}
.x5_c00111{left:142.290000px;}
.x1b_c00111{left:143.910000px;}
.x8d_c00111{left:151.512000px;}
.x82_c00111{left:153.090000px;}
.x48_c00111{left:157.567500px;}
.x2f_c00111{left:162.540000px;}
.x83_c00111{left:166.590000px;}
.x10_c00111{left:168.480000px;}
.x1_c00111{left:170.370000px;}
.x3_c00111{left:171.990000px;}
.x61_c00111{left:175.090500px;}
.x25_c00111{left:179.550000px;}
.x51_c00111{left:181.378500px;}
.x88_c00111{left:182.790000px;}
.x30_c00111{left:184.680000px;}
.x7e_c00111{left:186.984000px;}
.x5a_c00111{left:191.638500px;}
.x6f_c00111{left:195.081000px;}
.x62_c00111{left:197.250000px;}
.x76_c00111{left:200.337000px;}
.x78_c00111{left:202.393500px;}
.x11_c00111{left:205.740000px;}
.x52_c00111{left:208.887000px;}
.x1c_c00111{left:210.060000px;}
.x26_c00111{left:213.570000px;}
.x89_c00111{left:215.460000px;}
.x3d_c00111{left:218.430000px;}
.x63_c00111{left:223.708500px;}
.x8a_c00111{left:225.180000px;}
.x6_c00111{left:226.800000px;}
.x1d_c00111{left:228.690000px;}
.x79_c00111{left:233.176500px;}
.x70_c00111{left:234.250500px;}
.x84_c00111{left:238.680000px;}
.x12_c00111{left:242.730000px;}
.x8b_c00111{left:245.700000px;}
.x5b_c00111{left:247.497000px;}
.x77_c00111{left:248.667000px;}
.x1e_c00111{left:253.530000px;}
.x85_c00111{left:258.660000px;}
.x7f_c00111{left:266.884500px;}
.x4_c00111{left:268.650000px;}
.x69_c00111{left:271.183500px;}
.x53_c00111{left:274.758000px;}
.x49_c00111{left:277.980000px;}
.x31_c00111{left:279.720000px;}
.x44_c00111{left:283.770000px;}
.x8e_c00111{left:284.992500px;}
.x7_c00111{left:291.600000px;}
.x4a_c00111{left:296.920500px;}
.x71_c00111{left:302.824500px;}
.x86_c00111{left:305.370000px;}
.x8_c00111{left:308.340000px;}
.x54_c00111{left:309.594000px;}
.x8f_c00111{left:310.893000px;}
.x13_c00111{left:313.740000px;}
.x27_c00111{left:315.360000px;}
.x3e_c00111{left:319.410000px;}
.x2_c00111{left:323.460000px;}
.x7a_c00111{left:325.506000px;}
.x5c_c00111{left:328.227000px;}
.x4e_c00111{left:330.352500px;}
.x1f_c00111{left:332.640000px;}
.x14_c00111{left:335.610000px;}
.x9_c00111{left:336.960000px;}
.x8c_c00111{left:341.010000px;}
.x64_c00111{left:342.775500px;}
.x32_c00111{left:346.410000px;}
.x87_c00111{left:353.430000px;}
.x28_c00111{left:360.990000px;}
.x37_c00111{left:362.610000px;}
.x20_c00111{left:363.960000px;}
.x33_c00111{left:373.140000px;}
.x15_c00111{left:374.220000px;}
.x3f_c00111{left:375.570000px;}
.x45_c00111{left:380.160000px;}
.x29_c00111{left:381.510000px;}
.x93_c00111{left:385.663500px;}
.x90_c00111{left:387.046500px;}
.x6a_c00111{left:388.665000px;}
.x81_c00111{left:390.960000px;}
.xa_c00111{left:393.660000px;}
.x4b_c00111{left:397.041000px;}
.x55_c00111{left:398.967000px;}
.x16_c00111{left:401.760000px;}
.x21_c00111{left:405.270000px;}
.x2a_c00111{left:406.620000px;}
.x38_c00111{left:408.510000px;}
.x91_c00111{left:411.873000px;}
.x5d_c00111{left:414.922500px;}
.x72_c00111{left:417.880500px;}
.xb_c00111{left:419.580000px;}
.x40_c00111{left:421.200000px;}
.x98_c00111{left:424.333500px;}
.x2b_c00111{left:426.060000px;}
.x39_c00111{left:427.950000px;}
.x46_c00111{left:431.730000px;}
.x34_c00111{left:434.970000px;}
.x99_c00111{left:436.482000px;}
.x73_c00111{left:437.548500px;}
.x17_c00111{left:440.100000px;}
.x22_c00111{left:443.610000px;}
.x6b_c00111{left:445.629000px;}
.x56_c00111{left:451.612500px;}
.x9a_c00111{left:453.439500px;}
.x94_c00111{left:454.542000px;}
.x47_c00111{left:459.000000px;}
.xc_c00111{left:460.620000px;}
.x92_c00111{left:462.630000px;}
.x74_c00111{left:465.583500px;}
.x41_c00111{left:467.370000px;}
.x6c_c00111{left:470.451000px;}
.x5e_c00111{left:473.751000px;}
.x35_c00111{left:479.790000px;}
.x65_c00111{left:481.807500px;}
.x2c_c00111{left:484.380000px;}
.x95_c00111{left:486.669000px;}
.x23_c00111{left:488.160000px;}
.x57_c00111{left:489.951000px;}
.x75_c00111{left:491.556000px;}
.xd_c00111{left:493.020000px;}
.x4f_c00111{left:500.991000px;}
.x18_c00111{left:507.060000px;}
.x4c_c00111{left:509.908500px;}
.x5f_c00111{left:510.996000px;}
.x7b_c00111{left:518.026500px;}
.x66_c00111{left:525.840000px;}
.x42_c00111{left:530.280000px;}
.x2d_c00111{left:533.520000px;}
.x19_c00111{left:539.460000px;}
.x7c_c00111{left:541.452000px;}
.x6d_c00111{left:544.696500px;}
.x9b_c00111{left:546.324000px;}
.x60_c00111{left:548.530500px;}
.x3a_c00111{left:549.720000px;}
.x67_c00111{left:557.736000px;}
.x2e_c00111{left:559.980000px;}
.x24_c00111{left:564.840000px;}
.xe_c00111{left:566.460000px;}
.x80_c00111{left:567.960000px;}
.x96_c00111{left:571.438500px;}
.x3b_c00111{left:574.830000px;}
.x58_c00111{left:576.634500px;}
.x97_c00111{left:585.240000px;}
.x6e_c00111{left:589.005000px;}
.x9c_c00111{left:591.069000px;}
.x1a_c00111{left:593.730000px;}
.x4d_c00111{left:596.079000px;}
.x36_c00111{left:600.750000px;}
.x43_c00111{left:602.370000px;}
.x68_c00111{left:605.760000px;}
.xf_c00111{left:607.770000px;}
.x7d_c00111{left:609.286500px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fsb_c00111{font-size:36.400000pt;}
.fse_c00111{font-size:42.000000pt;}
.fsc_c00111{font-size:44.800000pt;}
.fs10_c00111{font-size:45.739941pt;}
.fsd_c00111{font-size:46.666667pt;}
.fs11_c00111{font-size:46.671916pt;}
.fsf_c00111{font-size:48.541195pt;}
.fs12_c00111{font-size:53.207687pt;}
.fs8_c00111{font-size:56.000000pt;}
.fsa_c00111{font-size:58.800000pt;}
.fs9_c00111{font-size:59.733333pt;}
.fs4_c00111{font-size:60.666667pt;}
.fs6_c00111{font-size:61.600000pt;}
.fs3_c00111{font-size:62.533333pt;}
.fs2_c00111{font-size:63.466667pt;}
.fs5_c00111{font-size:64.400000pt;}
.fs7_c00111{font-size:65.333333pt;}
.fs0_c00111{font-size:148.400000pt;}
.fs1_c00111{font-size:173.600000pt;}
.y0_c00111{bottom:0.000000pt;}
.y7c_c00111{bottom:130.337128pt;}
.y7d_c00111{bottom:130.341952pt;}
.y7b_c00111{bottom:130.653904pt;}
.y93_c00111{bottom:130.826464pt;}
.y7a_c00111{bottom:131.068312pt;}
.y79_c00111{bottom:131.357344pt;}
.y92_c00111{bottom:131.502611pt;}
.y78_c00111{bottom:131.634688pt;}
.y91_c00111{bottom:132.098200pt;}
.y90_c00111{bottom:132.493280pt;}
.y77_c00111{bottom:132.515680pt;}
.y8f_c00111{bottom:132.906199pt;}
.y76_c00111{bottom:132.919168pt;}
.y8e_c00111{bottom:133.162445pt;}
.y75_c00111{bottom:133.204000pt;}
.y8d_c00111{bottom:133.346023pt;}
.y8c_c00111{bottom:133.924000pt;}
.y74_c00111{bottom:148.760000pt;}
.y8b_c00111{bottom:151.421647pt;}
.y8a_c00111{bottom:151.605667pt;}
.y89_c00111{bottom:152.015747pt;}
.y88_c00111{bottom:152.735927pt;}
.y87_c00111{bottom:153.164287pt;}
.y86_c00111{bottom:153.639967pt;}
.y85_c00111{bottom:154.082667pt;}
.y73_c00111{bottom:164.062667pt;}
.y84_c00111{bottom:172.170885pt;}
.y83_c00111{bottom:173.081156pt;}
.y82_c00111{bottom:173.387111pt;}
.y81_c00111{bottom:173.648253pt;}
.y80_c00111{bottom:174.415248pt;}
.y7f_c00111{bottom:174.790404pt;}
.y7e_c00111{bottom:174.961333pt;}
.y72_c00111{bottom:179.496000pt;}
.y71_c00111{bottom:202.320000pt;}
.y70_c00111{bottom:224.590667pt;}
.y6f_c00111{bottom:225.085333pt;}
.y6e_c00111{bottom:225.221333pt;}
.y6d_c00111{bottom:225.778667pt;}
.y6c_c00111{bottom:226.504000pt;}
.y6b_c00111{bottom:226.801333pt;}
.y6a_c00111{bottom:226.998667pt;}
.y69_c00111{bottom:227.417333pt;}
.y68_c00111{bottom:227.637333pt;}
.y67_c00111{bottom:228.026667pt;}
.y66_c00111{bottom:245.438667pt;}
.y65_c00111{bottom:245.921333pt;}
.y64_c00111{bottom:246.088000pt;}
.y63_c00111{bottom:246.356000pt;}
.y62_c00111{bottom:246.634667pt;}
.y61_c00111{bottom:247.050667pt;}
.y60_c00111{bottom:247.456000pt;}
.y5f_c00111{bottom:247.821333pt;}
.y5e_c00111{bottom:248.113333pt;}
.y5d_c00111{bottom:248.332000pt;}
.y5c_c00111{bottom:248.645333pt;}
.y5b_c00111{bottom:268.825333pt;}
.y5a_c00111{bottom:285.924000pt;}
.y59_c00111{bottom:286.169333pt;}
.y58_c00111{bottom:286.706667pt;}
.y57_c00111{bottom:286.892000pt;}
.y56_c00111{bottom:287.092000pt;}
.y55_c00111{bottom:287.232000pt;}
.y54_c00111{bottom:287.444000pt;}
.y53_c00111{bottom:287.630667pt;}
.y52_c00111{bottom:288.050667pt;}
.y51_c00111{bottom:288.400000pt;}
.y50_c00111{bottom:288.538667pt;}
.y4f_c00111{bottom:288.817333pt;}
.y4e_c00111{bottom:289.214667pt;}
.y4d_c00111{bottom:306.098667pt;}
.y4c_c00111{bottom:306.492000pt;}
.y4b_c00111{bottom:306.822667pt;}
.y4a_c00111{bottom:307.152000pt;}
.y49_c00111{bottom:307.372000pt;}
.y48_c00111{bottom:307.878667pt;}
.y47_c00111{bottom:308.382667pt;}
.y46_c00111{bottom:308.922667pt;}
.y45_c00111{bottom:309.325333pt;}
.y44_c00111{bottom:309.798667pt;}
.y43_c00111{bottom:310.096000pt;}
.y42_c00111{bottom:326.524000pt;}
.y41_c00111{bottom:326.908000pt;}
.y40_c00111{bottom:327.162667pt;}
.y3f_c00111{bottom:327.514667pt;}
.y3e_c00111{bottom:327.752000pt;}
.y3d_c00111{bottom:328.626667pt;}
.y3c_c00111{bottom:328.838667pt;}
.y3b_c00111{bottom:329.344000pt;}
.y3a_c00111{bottom:329.578667pt;}
.y39_c00111{bottom:329.790667pt;}
.y38_c00111{bottom:329.968000pt;}
.y37_c00111{bottom:330.244000pt;}
.y36_c00111{bottom:347.848000pt;}
.y35_c00111{bottom:348.081333pt;}
.y34_c00111{bottom:348.313333pt;}
.y33_c00111{bottom:348.680000pt;}
.y32_c00111{bottom:349.220000pt;}
.y31_c00111{bottom:349.450667pt;}
.y30_c00111{bottom:349.593333pt;}
.y2f_c00111{bottom:349.722667pt;}
.y2e_c00111{bottom:349.962667pt;}
.y2d_c00111{bottom:350.069333pt;}
.y2c_c00111{bottom:350.404000pt;}
.y2b_c00111{bottom:367.850667pt;}
.y2a_c00111{bottom:368.082667pt;}
.y29_c00111{bottom:368.390667pt;}
.y28_c00111{bottom:368.629333pt;}
.y27_c00111{bottom:368.818667pt;}
.y26_c00111{bottom:368.956000pt;}
.y25_c00111{bottom:369.377333pt;}
.y24_c00111{bottom:369.512000pt;}
.y23_c00111{bottom:369.729333pt;}
.y22_c00111{bottom:370.138667pt;}
.y21_c00111{bottom:370.309333pt;}
.y20_c00111{bottom:370.562667pt;}
.y1f_c00111{bottom:387.446667pt;}
.y1e_c00111{bottom:387.969333pt;}
.y1d_c00111{bottom:388.210667pt;}
.y1c_c00111{bottom:388.772000pt;}
.y1b_c00111{bottom:388.978667pt;}
.y1a_c00111{bottom:389.574667pt;}
.y19_c00111{bottom:390.274667pt;}
.y18_c00111{bottom:390.537333pt;}
.y17_c00111{bottom:391.098667pt;}
.y16_c00111{bottom:408.092000pt;}
.y15_c00111{bottom:408.377333pt;}
.y14_c00111{bottom:408.600000pt;}
.y13_c00111{bottom:408.781333pt;}
.y12_c00111{bottom:409.113333pt;}
.y11_c00111{bottom:409.684000pt;}
.y10_c00111{bottom:410.181333pt;}
.yf_c00111{bottom:410.349333pt;}
.ye_c00111{bottom:410.485333pt;}
.yd_c00111{bottom:410.637333pt;}
.yc_c00111{bottom:411.214667pt;}
.yb_c00111{bottom:411.601333pt;}
.ya_c00111{bottom:430.196000pt;}
.y9_c00111{bottom:450.612000pt;}
.y8_c00111{bottom:511.734667pt;}
.y7_c00111{bottom:531.896000pt;}
.y6_c00111{bottom:552.054667pt;}
.y5_c00111{bottom:571.974667pt;}
.y4_c00111{bottom:592.165333pt;}
.y3_c00111{bottom:613.369333pt;}
.y2_c00111{bottom:656.454667pt;}
.y1_c00111{bottom:708.960000pt;}
.hd_c00111{height:36.400000pt;}
.h10_c00111{height:42.000000pt;}
.he_c00111{height:44.800000pt;}
.h12_c00111{height:45.739941pt;}
.hf_c00111{height:46.666667pt;}
.h13_c00111{height:46.671916pt;}
.h11_c00111{height:48.541195pt;}
.h14_c00111{height:53.207687pt;}
.ha_c00111{height:56.000000pt;}
.hc_c00111{height:58.800000pt;}
.hb_c00111{height:59.733333pt;}
.h6_c00111{height:60.666667pt;}
.h8_c00111{height:61.600000pt;}
.h5_c00111{height:62.533333pt;}
.h4_c00111{height:63.466667pt;}
.h7_c00111{height:64.400000pt;}
.h9_c00111{height:65.333333pt;}
.h2_c00111{height:148.400000pt;}
.h3_c00111{height:173.600000pt;}
.h0_c00111{height:896.400000pt;}
.h1_c00111{height:896.666667pt;}
.w0_c00111{width:601.680000pt;}
.w1_c00111{width:602.000000pt;}
.x0_c00111{left:0.000000pt;}
.x59_c00111{left:122.518667pt;}
.x3c_c00111{left:123.600000pt;}
.x50_c00111{left:124.954667pt;}
.x5_c00111{left:126.480000pt;}
.x1b_c00111{left:127.920000pt;}
.x8d_c00111{left:134.677333pt;}
.x82_c00111{left:136.080000pt;}
.x48_c00111{left:140.060000pt;}
.x2f_c00111{left:144.480000pt;}
.x83_c00111{left:148.080000pt;}
.x10_c00111{left:149.760000pt;}
.x1_c00111{left:151.440000pt;}
.x3_c00111{left:152.880000pt;}
.x61_c00111{left:155.636000pt;}
.x25_c00111{left:159.600000pt;}
.x51_c00111{left:161.225333pt;}
.x88_c00111{left:162.480000pt;}
.x30_c00111{left:164.160000pt;}
.x7e_c00111{left:166.208000pt;}
.x5a_c00111{left:170.345333pt;}
.x6f_c00111{left:173.405333pt;}
.x62_c00111{left:175.333333pt;}
.x76_c00111{left:178.077333pt;}
.x78_c00111{left:179.905333pt;}
.x11_c00111{left:182.880000pt;}
.x52_c00111{left:185.677333pt;}
.x1c_c00111{left:186.720000pt;}
.x26_c00111{left:189.840000pt;}
.x89_c00111{left:191.520000pt;}
.x3d_c00111{left:194.160000pt;}
.x63_c00111{left:198.852000pt;}
.x8a_c00111{left:200.160000pt;}
.x6_c00111{left:201.600000pt;}
.x1d_c00111{left:203.280000pt;}
.x79_c00111{left:207.268000pt;}
.x70_c00111{left:208.222667pt;}
.x84_c00111{left:212.160000pt;}
.x12_c00111{left:215.760000pt;}
.x8b_c00111{left:218.400000pt;}
.x5b_c00111{left:219.997333pt;}
.x77_c00111{left:221.037333pt;}
.x1e_c00111{left:225.360000pt;}
.x85_c00111{left:229.920000pt;}
.x7f_c00111{left:237.230667pt;}
.x4_c00111{left:238.800000pt;}
.x69_c00111{left:241.052000pt;}
.x53_c00111{left:244.229333pt;}
.x49_c00111{left:247.093333pt;}
.x31_c00111{left:248.640000pt;}
.x44_c00111{left:252.240000pt;}
.x8e_c00111{left:253.326667pt;}
.x7_c00111{left:259.200000pt;}
.x4a_c00111{left:263.929333pt;}
.x71_c00111{left:269.177333pt;}
.x86_c00111{left:271.440000pt;}
.x8_c00111{left:274.080000pt;}
.x54_c00111{left:275.194667pt;}
.x8f_c00111{left:276.349333pt;}
.x13_c00111{left:278.880000pt;}
.x27_c00111{left:280.320000pt;}
.x3e_c00111{left:283.920000pt;}
.x2_c00111{left:287.520000pt;}
.x7a_c00111{left:289.338667pt;}
.x5c_c00111{left:291.757333pt;}
.x4e_c00111{left:293.646667pt;}
.x1f_c00111{left:295.680000pt;}
.x14_c00111{left:298.320000pt;}
.x9_c00111{left:299.520000pt;}
.x8c_c00111{left:303.120000pt;}
.x64_c00111{left:304.689333pt;}
.x32_c00111{left:307.920000pt;}
.x87_c00111{left:314.160000pt;}
.x28_c00111{left:320.880000pt;}
.x37_c00111{left:322.320000pt;}
.x20_c00111{left:323.520000pt;}
.x33_c00111{left:331.680000pt;}
.x15_c00111{left:332.640000pt;}
.x3f_c00111{left:333.840000pt;}
.x45_c00111{left:337.920000pt;}
.x29_c00111{left:339.120000pt;}
.x93_c00111{left:342.812000pt;}
.x90_c00111{left:344.041333pt;}
.x6a_c00111{left:345.480000pt;}
.x81_c00111{left:347.520000pt;}
.xa_c00111{left:349.920000pt;}
.x4b_c00111{left:352.925333pt;}
.x55_c00111{left:354.637333pt;}
.x16_c00111{left:357.120000pt;}
.x21_c00111{left:360.240000pt;}
.x2a_c00111{left:361.440000pt;}
.x38_c00111{left:363.120000pt;}
.x91_c00111{left:366.109333pt;}
.x5d_c00111{left:368.820000pt;}
.x72_c00111{left:371.449333pt;}
.xb_c00111{left:372.960000pt;}
.x40_c00111{left:374.400000pt;}
.x98_c00111{left:377.185333pt;}
.x2b_c00111{left:378.720000pt;}
.x39_c00111{left:380.400000pt;}
.x46_c00111{left:383.760000pt;}
.x34_c00111{left:386.640000pt;}
.x99_c00111{left:387.984000pt;}
.x73_c00111{left:388.932000pt;}
.x17_c00111{left:391.200000pt;}
.x22_c00111{left:394.320000pt;}
.x6b_c00111{left:396.114667pt;}
.x56_c00111{left:401.433333pt;}
.x9a_c00111{left:403.057333pt;}
.x94_c00111{left:404.037333pt;}
.x47_c00111{left:408.000000pt;}
.xc_c00111{left:409.440000pt;}
.x92_c00111{left:411.226667pt;}
.x74_c00111{left:413.852000pt;}
.x41_c00111{left:415.440000pt;}
.x6c_c00111{left:418.178667pt;}
.x5e_c00111{left:421.112000pt;}
.x35_c00111{left:426.480000pt;}
.x65_c00111{left:428.273333pt;}
.x2c_c00111{left:430.560000pt;}
.x95_c00111{left:432.594667pt;}
.x23_c00111{left:433.920000pt;}
.x57_c00111{left:435.512000pt;}
.x75_c00111{left:436.938667pt;}
.xd_c00111{left:438.240000pt;}
.x4f_c00111{left:445.325333pt;}
.x18_c00111{left:450.720000pt;}
.x4c_c00111{left:453.252000pt;}
.x5f_c00111{left:454.218667pt;}
.x7b_c00111{left:460.468000pt;}
.x66_c00111{left:467.413333pt;}
.x42_c00111{left:471.360000pt;}
.x2d_c00111{left:474.240000pt;}
.x19_c00111{left:479.520000pt;}
.x7c_c00111{left:481.290667pt;}
.x6d_c00111{left:484.174667pt;}
.x9b_c00111{left:485.621333pt;}
.x60_c00111{left:487.582667pt;}
.x3a_c00111{left:488.640000pt;}
.x67_c00111{left:495.765333pt;}
.x2e_c00111{left:497.760000pt;}
.x24_c00111{left:502.080000pt;}
.xe_c00111{left:503.520000pt;}
.x80_c00111{left:504.853333pt;}
.x96_c00111{left:507.945333pt;}
.x3b_c00111{left:510.960000pt;}
.x58_c00111{left:512.564000pt;}
.x97_c00111{left:520.213333pt;}
.x6e_c00111{left:523.560000pt;}
.x9c_c00111{left:525.394667pt;}
.x1a_c00111{left:527.760000pt;}
.x4d_c00111{left:529.848000pt;}
.x36_c00111{left:534.000000pt;}
.x43_c00111{left:535.440000pt;}
.x68_c00111{left:538.453333pt;}
.xf_c00111{left:540.240000pt;}
.x7d_c00111{left:541.588000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mad_c00112{transform:matrix(0.012509,0.000113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.012509,0.000113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.012509,0.000113,-0.002250,0.249990,0,0);}
.m5e_c00112{transform:matrix(0.014540,0.000364,-0.006248,0.249922,0,0);-ms-transform:matrix(0.014540,0.000364,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.014540,0.000364,-0.006248,0.249922,0,0);}
.md_c00112{transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017045,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.056025,0.006313,-0.027992,0.248428,0,0);-ms-transform:matrix(0.056025,0.006313,-0.027992,0.248428,0,0);-webkit-transform:matrix(0.056025,0.006313,-0.027992,0.248428,0,0);}
.ma9_c00112{transform:matrix(0.076092,0.000685,-0.002250,0.249990,0,0);-ms-transform:matrix(0.076092,0.000685,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.076092,0.000685,-0.002250,0.249990,0,0);}
.m4a_c00112{transform:matrix(0.096539,0.002800,-0.007247,0.249895,0,0);-ms-transform:matrix(0.096539,0.002800,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.096539,0.002800,-0.007247,0.249895,0,0);}
.ma5_c00112{transform:matrix(0.109866,0.000989,-0.002250,0.249990,0,0);-ms-transform:matrix(0.109866,0.000989,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.109866,0.000989,-0.002250,0.249990,0,0);}
.mab_c00112{transform:matrix(0.120795,0.001087,-0.002250,0.249990,0,0);-ms-transform:matrix(0.120795,0.001087,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.120795,0.001087,-0.002250,0.249990,0,0);}
.mba_c00112{transform:matrix(0.132375,0.001191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.132375,0.001191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.132375,0.001191,-0.002250,0.249990,0,0);}
.m71_c00112{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.md2_c00112{transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139359,0.001254,-0.002250,0.249990,0,0);}
.mfc_c00112{transform:matrix(0.146894,0.001322,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146894,0.001322,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146894,0.001322,-0.002250,0.249990,0,0);}
.mf4_c00112{transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);}
.m9c_c00112{transform:matrix(0.150284,0.001353,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150284,0.001353,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150284,0.001353,-0.002250,0.249990,0,0);}
.mac_c00112{transform:matrix(0.151154,0.001360,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151154,0.001360,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151154,0.001360,-0.002250,0.249990,0,0);}
.md6_c00112{transform:matrix(0.151729,0.001366,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151729,0.001366,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151729,0.001366,-0.002250,0.249990,0,0);}
.m10f_c00112{transform:matrix(0.152249,0.001370,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152249,0.001370,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152249,0.001370,-0.002250,0.249990,0,0);}
.m88_c00112{transform:matrix(0.153820,0.001231,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153820,0.001231,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153820,0.001231,-0.002000,0.249992,0,0);}
.mcc_c00112{transform:matrix(0.154909,0.001394,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154909,0.001394,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154909,0.001394,-0.002250,0.249990,0,0);}
.maf_c00112{transform:matrix(0.155569,0.001400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155569,0.001400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155569,0.001400,-0.002250,0.249990,0,0);}
.m68_c00112{transform:matrix(0.155685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00112{transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);}
.m81_c00112{transform:matrix(0.156595,0.001253,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156595,0.001253,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156595,0.001253,-0.002000,0.249992,0,0);}
.m11c_c00112{transform:matrix(0.156875,0.002196,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156875,0.002196,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156875,0.002196,-0.003500,0.249976,0,0);}
.m9b_c00112{transform:matrix(0.157434,0.001417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157434,0.001417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157434,0.001417,-0.002250,0.249990,0,0);}
.mc1_c00112{transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);}
.m48_c00112{transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);}
.m2d_c00112{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);}
.me5_c00112{transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);}
.m47_c00112{transform:matrix(0.159513,0.004626,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159513,0.004626,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159513,0.004626,-0.007247,0.249895,0,0);}
.m10d_c00112{transform:matrix(0.159864,0.001439,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159864,0.001439,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159864,0.001439,-0.002250,0.249990,0,0);}
.maa_c00112{transform:matrix(0.160054,0.001440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160054,0.001440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160054,0.001440,-0.002250,0.249990,0,0);}
.m6f_c00112{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);}
.m9a_c00112{transform:matrix(0.161513,0.001454,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161513,0.001454,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161513,0.001454,-0.002250,0.249990,0,0);}
.m54_c00112{transform:matrix(0.161707,0.002749,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161707,0.002749,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161707,0.002749,-0.004249,0.249964,0,0);}
.me6_c00112{transform:matrix(0.162103,0.001459,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162103,0.001459,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162103,0.001459,-0.002250,0.249990,0,0);}
.mfa_c00112{transform:matrix(0.162868,0.001466,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162868,0.001466,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162868,0.001466,-0.002250,0.249990,0,0);}
.m1e_c00112{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);}
.m6c_c00112{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);}
.m7b_c00112{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);}
.m140_c00112{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);}
.me8_c00112{transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);}
.m121_c00112{transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);}
.m33_c00112{transform:matrix(0.164781,0.001153,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164781,0.001153,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164781,0.001153,-0.001750,0.249994,0,0);}
.me4_c00112{transform:matrix(0.165113,0.001486,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165113,0.001486,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165113,0.001486,-0.002250,0.249990,0,0);}
.m3e_c00112{transform:matrix(0.165166,0.004790,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165166,0.004790,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165166,0.004790,-0.007247,0.249895,0,0);}
.mc3_c00112{transform:matrix(0.166058,0.001495,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166058,0.001495,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166058,0.001495,-0.002250,0.249990,0,0);}
.m8e_c00112{transform:matrix(0.168000,0.001344,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168000,0.001344,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168000,0.001344,-0.002000,0.249992,0,0);}
.m9e_c00112{transform:matrix(0.168168,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168168,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168168,0.001514,-0.002250,0.249990,0,0);}
.m1a_c00112{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);}
.m117_c00112{transform:matrix(0.168798,0.002363,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168798,0.002363,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168798,0.002363,-0.003500,0.249976,0,0);}
.md7_c00112{transform:matrix(0.169068,0.001522,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169068,0.001522,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169068,0.001522,-0.002250,0.249990,0,0);}
.m19_c00112{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);}
.m6a_c00112{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);}
.m12_c00112{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);}
.m3a_c00112{transform:matrix(0.172428,0.005000,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172428,0.005000,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172428,0.005000,-0.007247,0.249895,0,0);}
.m7f_c00112{transform:matrix(0.172654,0.001381,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172654,0.001381,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172654,0.001381,-0.002000,0.249992,0,0);}
.m32_c00112{transform:matrix(0.172676,0.001209,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172676,0.001209,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172676,0.001209,-0.001750,0.249994,0,0);}
.m127_c00112{transform:matrix(0.172718,0.002418,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172718,0.002418,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172718,0.002418,-0.003500,0.249976,0,0);}
.m3d_c00112{transform:matrix(0.172747,0.005010,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172747,0.005010,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172747,0.005010,-0.007247,0.249895,0,0);}
.mc4_c00112{transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);}
.m124_c00112{transform:matrix(0.173558,0.002430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173558,0.002430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173558,0.002430,-0.003500,0.249976,0,0);}
.m1d_c00112{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);}
.ma7_c00112{transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);}
.m138_c00112{transform:matrix(0.174093,0.002437,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174093,0.002437,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174093,0.002437,-0.003500,0.249976,0,0);}
.m113_c00112{transform:matrix(0.174128,0.002438,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174128,0.002438,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174128,0.002438,-0.003500,0.249976,0,0);}
.m92_c00112{transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);}
.m133_c00112{transform:matrix(0.175323,0.002455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175323,0.002455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175323,0.002455,-0.003500,0.249976,0,0);}
.m10e_c00112{transform:matrix(0.175498,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175498,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175498,0.001579,-0.002250,0.249990,0,0);}
.m17_c00112{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);}
.mf7_c00112{transform:matrix(0.175593,0.001580,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175593,0.001580,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175593,0.001580,-0.002250,0.249990,0,0);}
.m78_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);}
.mf3_c00112{transform:matrix(0.175683,0.001581,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175683,0.001581,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175683,0.001581,-0.002250,0.249990,0,0);}
.md0_c00112{transform:matrix(0.175928,0.001583,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175928,0.001583,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175928,0.001583,-0.002250,0.249990,0,0);}
.m11d_c00112{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);}
.m3c_c00112{transform:matrix(0.176326,0.005113,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176326,0.005113,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176326,0.005113,-0.007247,0.249895,0,0);}
.mb5_c00112{transform:matrix(0.176398,0.001588,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176398,0.001588,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176398,0.001588,-0.002250,0.249990,0,0);}
.m82_c00112{transform:matrix(0.176499,0.001412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176499,0.001412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176499,0.001412,-0.002000,0.249992,0,0);}
.mcd_c00112{transform:matrix(0.176628,0.001590,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176628,0.001590,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176628,0.001590,-0.002250,0.249990,0,0);}
.m6e_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);}
.md4_c00112{transform:matrix(0.177163,0.001594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177163,0.001594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177163,0.001594,-0.002250,0.249990,0,0);}
.m111_c00112{transform:matrix(0.177383,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177383,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177383,0.001596,-0.002250,0.249990,0,0);}
.me2_c00112{transform:matrix(0.177683,0.001599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177683,0.001599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177683,0.001599,-0.002250,0.249990,0,0);}
.m7a_c00112{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);}
.m49_c00112{transform:matrix(0.178240,0.005169,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178240,0.005169,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178240,0.005169,-0.007247,0.249895,0,0);}
.m86_c00112{transform:matrix(0.178709,0.001430,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178709,0.001430,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178709,0.001430,-0.002000,0.249992,0,0);}
.m55_c00112{transform:matrix(0.178954,0.003042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178954,0.003042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178954,0.003042,-0.004249,0.249964,0,0);}
.m9d_c00112{transform:matrix(0.179023,0.001611,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179023,0.001611,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179023,0.001611,-0.002250,0.249990,0,0);}
.mf6_c00112{transform:matrix(0.179128,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179128,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179128,0.001612,-0.002250,0.249990,0,0);}
.mbd_c00112{transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);}
.m93_c00112{transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);}
.m122_c00112{transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);}
.m2c_c00112{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);}
.m8f_c00112{transform:matrix(0.180209,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180209,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180209,0.001442,-0.002000,0.249992,0,0);}
.m123_c00112{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);}
.m29_c00112{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);}
.mfb_c00112{transform:matrix(0.180918,0.001628,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180918,0.001628,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180918,0.001628,-0.002250,0.249990,0,0);}
.m3f_c00112{transform:matrix(0.180984,0.005249,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180984,0.005249,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180984,0.005249,-0.007247,0.249895,0,0);}
.m14_c00112{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);}
.m97_c00112{transform:matrix(0.181143,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181143,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181143,0.001630,-0.002250,0.249990,0,0);}
.me0_c00112{transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);}
.m136_c00112{transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);}
.m8d_c00112{transform:matrix(0.181909,0.001455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181909,0.001455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181909,0.001455,-0.002000,0.249992,0,0);}
.m125_c00112{transform:matrix(0.181992,0.002548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181992,0.002548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181992,0.002548,-0.003500,0.249976,0,0);}
.ma0_c00112{transform:matrix(0.182058,0.001639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182058,0.001639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182058,0.001639,-0.002250,0.249990,0,0);}
.m13b_c00112{transform:matrix(0.182652,0.002557,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182652,0.002557,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182652,0.002557,-0.003500,0.249976,0,0);}
.m2a_c00112{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);}
.m115_c00112{transform:matrix(0.182947,0.002561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182947,0.002561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182947,0.002561,-0.003500,0.249976,0,0);}
.me3_c00112{transform:matrix(0.183528,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183528,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183528,0.001652,-0.002250,0.249990,0,0);}
.m112_c00112{transform:matrix(0.183603,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183603,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183603,0.001652,-0.002250,0.249990,0,0);}
.m31_c00112{transform:matrix(0.183900,0.001287,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183900,0.001287,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183900,0.001287,-0.001750,0.249994,0,0);}
.mb1_c00112{transform:matrix(0.183973,0.001656,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183973,0.001656,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183973,0.001656,-0.002250,0.249990,0,0);}
.m62_c00112{transform:matrix(0.184532,0.004613,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184532,0.004613,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184532,0.004613,-0.006248,0.249922,0,0);}
.m11b_c00112{transform:matrix(0.184587,0.002584,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184587,0.002584,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184587,0.002584,-0.003500,0.249976,0,0);}
.m73_c00112{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);}
.m103_c00112{transform:matrix(0.185492,0.001669,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185492,0.001669,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185492,0.001669,-0.002250,0.249990,0,0);}
.m6b_c00112{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_c00112{transform:matrix(0.186032,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186032,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186032,0.001674,-0.002250,0.249990,0,0);}
.m25_c00112{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);}
.mc0_c00112{transform:matrix(0.186562,0.001679,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186562,0.001679,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186562,0.001679,-0.002250,0.249990,0,0);}
.m11_c00112{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);}
.m7d_c00112{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);}
.m110_c00112{transform:matrix(0.187052,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187052,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187052,0.001683,-0.002250,0.249990,0,0);}
.m8a_c00112{transform:matrix(0.188774,0.001510,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188774,0.001510,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188774,0.001510,-0.002000,0.249992,0,0);}
.m84_c00112{transform:matrix(0.188959,0.001512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188959,0.001512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188959,0.001512,-0.002000,0.249992,0,0);}
.m128_c00112{transform:matrix(0.189141,0.002648,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189141,0.002648,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189141,0.002648,-0.003500,0.249976,0,0);}
.m61_c00112{transform:matrix(0.189756,0.004744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189756,0.004744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189756,0.004744,-0.006248,0.249922,0,0);}
.m10b_c00112{transform:matrix(0.189782,0.001708,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189782,0.001708,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189782,0.001708,-0.002250,0.249990,0,0);}
.m44_c00112{transform:matrix(0.189850,0.005506,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189850,0.005506,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189850,0.005506,-0.007247,0.249895,0,0);}
.m116_c00112{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);}
.mdd_c00112{transform:matrix(0.190177,0.001712,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190177,0.001712,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190177,0.001712,-0.002250,0.249990,0,0);}
.m40_c00112{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);}
.mc2_c00112{transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);}
.m77_c00112{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);}
.m96_c00112{transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);}
.m39_c00112{transform:matrix(0.190965,0.005538,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190965,0.005538,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190965,0.005538,-0.007247,0.249895,0,0);}
.mf0_c00112{transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);}
.m28_c00112{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);}
.me1_c00112{transform:matrix(0.191322,0.001722,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191322,0.001722,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191322,0.001722,-0.002250,0.249990,0,0);}
.m74_c00112{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);}
.m80_c00112{transform:matrix(0.192174,0.001537,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192174,0.001537,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192174,0.001537,-0.002000,0.249992,0,0);}
.m75_c00112{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);}
.m12c_c00112{transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);}
.m89_c00112{transform:matrix(0.192499,0.001540,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192499,0.001540,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192499,0.001540,-0.002000,0.249992,0,0);}
.m30_c00112{transform:matrix(0.192510,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192510,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192510,0.001348,-0.001750,0.249994,0,0);}
.m118_c00112{transform:matrix(0.192576,0.002696,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192576,0.002696,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192576,0.002696,-0.003500,0.249976,0,0);}
.m76_c00112{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);}
.mb0_c00112{transform:matrix(0.193532,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193532,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193532,0.001742,-0.002250,0.249990,0,0);}
.mcb_c00112{transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);}
.m12e_c00112{transform:matrix(0.194431,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194431,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194431,0.002722,-0.003500,0.249976,0,0);}
.mfe_c00112{transform:matrix(0.194482,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194482,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194482,0.001750,-0.002250,0.249990,0,0);}
.m5a_c00112{transform:matrix(0.194642,0.003309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194642,0.003309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194642,0.003309,-0.004249,0.249964,0,0);}
.m132_c00112{transform:matrix(0.194876,0.002728,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194876,0.002728,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194876,0.002728,-0.003500,0.249976,0,0);}
.m2b_c00112{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);}
.m130_c00112{transform:matrix(0.195526,0.002737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195526,0.002737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195526,0.002737,-0.003500,0.249976,0,0);}
.mc6_c00112{transform:matrix(0.195737,0.001762,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195737,0.001762,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195737,0.001762,-0.002250,0.249990,0,0);}
.m15_c00112{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);}
.m69_c00112{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);}
.m79_c00112{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);}
.m13f_c00112{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);}
.m13_c00112{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);}
.m2e_c00112{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);}
.mea_c00112{transform:matrix(0.198282,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198282,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198282,0.001785,-0.002250,0.249990,0,0);}
.me7_c00112{transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);}
.m1c_c00112{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);}
.m106_c00112{transform:matrix(0.199442,0.001795,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199442,0.001795,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199442,0.001795,-0.002250,0.249990,0,0);}
.ma6_c00112{transform:matrix(0.199607,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199607,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199607,0.001796,-0.002250,0.249990,0,0);}
.m53_c00112{transform:matrix(0.199756,0.003396,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199756,0.003396,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199756,0.003396,-0.004249,0.249964,0,0);}
.m13c_c00112{transform:matrix(0.199795,0.002797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199795,0.002797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199795,0.002797,-0.003500,0.249976,0,0);}
.m21_c00112{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);}
.med_c00112{transform:matrix(0.200687,0.001806,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200687,0.001806,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200687,0.001806,-0.002250,0.249990,0,0);}
.m94_c00112{transform:matrix(0.200829,0.001607,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200829,0.001607,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200829,0.001607,-0.002000,0.249992,0,0);}
.mde_c00112{transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);}
.mf5_c00112{transform:matrix(0.201202,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201202,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201202,0.001811,-0.002250,0.249990,0,0);}
.m4c_c00112{transform:matrix(0.201335,0.005839,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201335,0.005839,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201335,0.005839,-0.007247,0.249895,0,0);}
.m85_c00112{transform:matrix(0.201659,0.001613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201659,0.001613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201659,0.001613,-0.002000,0.249992,0,0);}
.m35_c00112{transform:matrix(0.201705,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201705,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201705,0.001412,-0.001750,0.249994,0,0);}
.m142_c00112{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);}
.mf9_c00112{transform:matrix(0.202192,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202192,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202192,0.001820,-0.002250,0.249990,0,0);}
.m5d_c00112{transform:matrix(0.202676,0.003445,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202676,0.003445,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202676,0.003445,-0.004249,0.249964,0,0);}
.md9_c00112{transform:matrix(0.202747,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202747,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202747,0.001825,-0.002250,0.249990,0,0);}
.mfd_c00112{transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);}
.md3_c00112{transform:matrix(0.203117,0.001828,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203117,0.001828,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203117,0.001828,-0.002250,0.249990,0,0);}
.m12b_c00112{transform:matrix(0.203620,0.002851,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203620,0.002851,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203620,0.002851,-0.003500,0.249976,0,0);}
.mf1_c00112{transform:matrix(0.203642,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203642,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203642,0.001833,-0.002250,0.249990,0,0);}
.m10_c00112{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.m104_c00112{transform:matrix(0.204257,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204257,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204257,0.001838,-0.002250,0.249990,0,0);}
.m12a_c00112{transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204315,0.002860,-0.003500,0.249976,0,0);}
.m3b_c00112{transform:matrix(0.205464,0.005958,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205464,0.005958,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205464,0.005958,-0.007247,0.249895,0,0);}
.mc5_c00112{transform:matrix(0.205522,0.001850,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205522,0.001850,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205522,0.001850,-0.002250,0.249990,0,0);}
.m100_c00112{transform:matrix(0.205642,0.001851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205642,0.001851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205642,0.001851,-0.002250,0.249990,0,0);}
.m91_c00112{transform:matrix(0.206093,0.001649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206093,0.001649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206093,0.001649,-0.002000,0.249992,0,0);}
.m87_c00112{transform:matrix(0.206218,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206218,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206218,0.001650,-0.002000,0.249992,0,0);}
.mae_c00112{transform:matrix(0.206392,0.001858,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206392,0.001858,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206392,0.001858,-0.002250,0.249990,0,0);}
.md1_c00112{transform:matrix(0.206847,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206847,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206847,0.001862,-0.002250,0.249990,0,0);}
.mcf_c00112{transform:matrix(0.206997,0.001863,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206997,0.001863,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206997,0.001863,-0.002250,0.249990,0,0);}
.md5_c00112{transform:matrix(0.207292,0.001866,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207292,0.001866,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207292,0.001866,-0.002250,0.249990,0,0);}
.m10c_c00112{transform:matrix(0.208382,0.001875,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208382,0.001875,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208382,0.001875,-0.002250,0.249990,0,0);}
.m57_c00112{transform:matrix(0.208630,0.003547,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208630,0.003547,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208630,0.003547,-0.004249,0.249964,0,0);}
.m13a_c00112{transform:matrix(0.208735,0.002922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208735,0.002922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208735,0.002922,-0.003500,0.249976,0,0);}
.m90_c00112{transform:matrix(0.208878,0.001671,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208878,0.001671,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208878,0.001671,-0.002000,0.249992,0,0);}
.m131_c00112{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);}
.mec_c00112{transform:matrix(0.209232,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209232,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209232,0.001883,-0.002250,0.249990,0,0);}
.m83_c00112{transform:matrix(0.209628,0.001677,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209628,0.001677,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209628,0.001677,-0.002000,0.249992,0,0);}
.m20_c00112{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);}
.mdc_c00112{transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);}
.m9f_c00112{transform:matrix(0.210971,0.001899,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210971,0.001899,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210971,0.001899,-0.002250,0.249990,0,0);}
.m105_c00112{transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);}
.mb4_c00112{transform:matrix(0.211451,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211451,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211451,0.001903,-0.002250,0.249990,0,0);}
.m60_c00112{transform:matrix(0.211569,0.005289,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211569,0.005289,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211569,0.005289,-0.006248,0.249922,0,0);}
.ma3_c00112{transform:matrix(0.211851,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211851,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211851,0.001907,-0.002250,0.249990,0,0);}
.mb9_c00112{transform:matrix(0.212036,0.001908,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212036,0.001908,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212036,0.001908,-0.002250,0.249990,0,0);}
.m134_c00112{transform:matrix(0.212049,0.002969,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212049,0.002969,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212049,0.002969,-0.003500,0.249976,0,0);}
.mc7_c00112{transform:matrix(0.212106,0.001909,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212106,0.001909,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212106,0.001909,-0.002250,0.249990,0,0);}
.m63_c00112{transform:matrix(0.212494,0.005312,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212494,0.005312,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212494,0.005312,-0.006248,0.249922,0,0);}
.mb2_c00112{transform:matrix(0.212746,0.001915,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212746,0.001915,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212746,0.001915,-0.002250,0.249990,0,0);}
.m7e_c00112{transform:matrix(0.212833,0.001703,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212833,0.001703,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212833,0.001703,-0.002000,0.249992,0,0);}
.m22_c00112{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);}
.m2f_c00112{transform:matrix(0.212965,0.001491,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212965,0.001491,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212965,0.001491,-0.001750,0.249994,0,0);}
.mca_c00112{transform:matrix(0.213291,0.001920,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213291,0.001920,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213291,0.001920,-0.002250,0.249990,0,0);}
.m58_c00112{transform:matrix(0.213589,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213589,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213589,0.003631,-0.004249,0.249964,0,0);}
.m107_c00112{transform:matrix(0.213856,0.001925,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213856,0.001925,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213856,0.001925,-0.002250,0.249990,0,0);}
.md8_c00112{transform:matrix(0.214166,0.001927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214166,0.001927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214166,0.001927,-0.002250,0.249990,0,0);}
.mbc_c00112{transform:matrix(0.214286,0.001929,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214286,0.001929,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214286,0.001929,-0.002250,0.249990,0,0);}
.m126_c00112{transform:matrix(0.215384,0.003015,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215384,0.003015,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215384,0.003015,-0.003500,0.249976,0,0);}
.mce_c00112{transform:matrix(0.215596,0.001940,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215596,0.001940,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215596,0.001940,-0.002250,0.249990,0,0);}
.m12f_c00112{transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);}
.m114_c00112{transform:matrix(0.215634,0.003019,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215634,0.003019,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215634,0.003019,-0.003500,0.249976,0,0);}
.m120_c00112{transform:matrix(0.215664,0.003019,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215664,0.003019,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215664,0.003019,-0.003500,0.249976,0,0);}
.m5b_c00112{transform:matrix(0.215704,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215704,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215704,0.003667,-0.004249,0.249964,0,0);}
.me9_c00112{transform:matrix(0.217066,0.001954,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217066,0.001954,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217066,0.001954,-0.002250,0.249990,0,0);}
.me_c00112{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.mf8_c00112{transform:matrix(0.217276,0.001955,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217276,0.001955,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217276,0.001955,-0.002250,0.249990,0,0);}
.mff_c00112{transform:matrix(0.217321,0.001956,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217321,0.001956,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217321,0.001956,-0.002250,0.249990,0,0);}
.m67_c00112{transform:matrix(0.218716,0.001968,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218716,0.001968,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218716,0.001968,-0.002250,0.249990,0,0);}
.mef_c00112{transform:matrix(0.218741,0.001969,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218741,0.001969,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218741,0.001969,-0.002250,0.249990,0,0);}
.m11e_c00112{transform:matrix(0.219199,0.003069,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219199,0.003069,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219199,0.003069,-0.003500,0.249976,0,0);}
.ma8_c00112{transform:matrix(0.219276,0.001973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219276,0.001973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219276,0.001973,-0.002250,0.249990,0,0);}
.mf_c00112{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);}
.m51_c00112{transform:matrix(0.219538,0.003732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219538,0.003732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219538,0.003732,-0.004249,0.249964,0,0);}
.m109_c00112{transform:matrix(0.219591,0.001976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219591,0.001976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219591,0.001976,-0.002250,0.249990,0,0);}
.m101_c00112{transform:matrix(0.220986,0.001989,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220986,0.001989,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220986,0.001989,-0.002250,0.249990,0,0);}
.m46_c00112{transform:matrix(0.221447,0.006422,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221447,0.006422,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221447,0.006422,-0.007247,0.249895,0,0);}
.mdf_c00112{transform:matrix(0.221686,0.001995,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221686,0.001995,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221686,0.001995,-0.002250,0.249990,0,0);}
.m37_c00112{transform:matrix(0.221730,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221730,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221730,0.001552,-0.001750,0.249994,0,0);}
.m146_c00112{transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.222933,0.003790,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222933,0.003790,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222933,0.003790,-0.004249,0.249964,0,0);}
.m34_c00112{transform:matrix(0.223185,0.001562,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223185,0.001562,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223185,0.001562,-0.001750,0.249994,0,0);}
.mc8_c00112{transform:matrix(0.224961,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224961,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224961,0.002025,-0.002250,0.249990,0,0);}
.m5f_c00112{transform:matrix(0.225010,0.005625,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225010,0.005625,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225010,0.005625,-0.006248,0.249922,0,0);}
.m36_c00112{transform:matrix(0.225059,0.001575,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225059,0.001575,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225059,0.001575,-0.001750,0.249994,0,0);}
.m7c_c00112{transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{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);}
.m8c_c00112{transform:matrix(0.225393,0.001803,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225393,0.001803,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225393,0.001803,-0.002000,0.249992,0,0);}
.m41_c00112{transform:matrix(0.226475,0.006568,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226475,0.006568,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226475,0.006568,-0.007247,0.249895,0,0);}
.m137_c00112{transform:matrix(0.227103,0.003179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227103,0.003179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227103,0.003179,-0.003500,0.249976,0,0);}
.m12d_c00112{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);}
.m119_c00112{transform:matrix(0.230242,0.003223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230242,0.003223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230242,0.003223,-0.003500,0.249976,0,0);}
.meb_c00112{transform:matrix(0.230656,0.002076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230656,0.002076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230656,0.002076,-0.002250,0.249990,0,0);}
.m70_c00112{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);}
.m6d_c00112{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.m129_c00112{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);}
.m102_c00112{transform:matrix(0.232891,0.002096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232891,0.002096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232891,0.002096,-0.002250,0.249990,0,0);}
.m45_c00112{transform:matrix(0.235686,0.006835,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235686,0.006835,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235686,0.006835,-0.007247,0.249895,0,0);}
.mf2_c00112{transform:matrix(0.236670,0.002130,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236670,0.002130,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236670,0.002130,-0.002250,0.249990,0,0);}
.m7_c00112{transform:matrix(0.237128,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237128,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237128,0.002371,-0.002500,0.249988,0,0);}
.m11a_c00112{transform:matrix(0.237217,0.003321,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237217,0.003321,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237217,0.003321,-0.003500,0.249976,0,0);}
.mdb_c00112{transform:matrix(0.237500,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237500,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237500,0.002138,-0.002250,0.249990,0,0);}
.m139_c00112{transform:matrix(0.237942,0.003331,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237942,0.003331,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237942,0.003331,-0.003500,0.249976,0,0);}
.m95_c00112{transform:matrix(0.241660,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241660,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241660,0.002175,-0.002250,0.249990,0,0);}
.m16_c00112{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);}
.mda_c00112{transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);}
.mc_c00112{transform:matrix(0.244637,0.027565,-0.027992,0.248428,0,0);-ms-transform:matrix(0.244637,0.027565,-0.027992,0.248428,0,0);-webkit-transform:matrix(0.244637,0.027565,-0.027992,0.248428,0,0);}
.m4b_c00112{transform:matrix(0.246316,0.007143,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246316,0.007143,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246316,0.007143,-0.007247,0.249895,0,0);}
.m65_c00112{transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);}
.m9_c00112{transform:matrix(0.248863,0.002489,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248863,0.002489,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248863,0.002489,-0.002500,0.249988,0,0);}
.m13e_c00112{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.249694,0.004245,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249694,0.004245,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249694,0.004245,-0.004249,0.249964,0,0);}
.m27_c00112{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.250735,0.007271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250735,0.007271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250735,0.007271,-0.007247,0.249895,0,0);}
.m144_c00112{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{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);}
.mbe_c00112{transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);}
.m98_c00112{transform:matrix(0.254460,0.002290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254460,0.002290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254460,0.002290,-0.002250,0.249990,0,0);}
.m43_c00112{transform:matrix(0.258296,0.007491,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258296,0.007491,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258296,0.007491,-0.007247,0.249895,0,0);}
.mb8_c00112{transform:matrix(0.258400,0.002326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258400,0.002326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258400,0.002326,-0.002250,0.249990,0,0);}
.m8_c00112{transform:matrix(0.264977,0.002650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264977,0.002650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264977,0.002650,-0.002500,0.249988,0,0);}
.m42_c00112{transform:matrix(0.265858,0.007710,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265858,0.007710,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265858,0.007710,-0.007247,0.249895,0,0);}
.m66_c00112{transform:matrix(0.266604,0.002399,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266604,0.002399,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266604,0.002399,-0.002250,0.249990,0,0);}
.m8b_c00112{transform:matrix(0.267186,0.002137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267186,0.002137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267186,0.002137,-0.002000,0.249992,0,0);}
.mbb_c00112{transform:matrix(0.269934,0.002429,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269934,0.002429,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269934,0.002429,-0.002250,0.249990,0,0);}
.mee_c00112{transform:matrix(0.270694,0.002436,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270694,0.002436,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270694,0.002436,-0.002250,0.249990,0,0);}
.m108_c00112{transform:matrix(0.282204,0.002540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282204,0.002540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282204,0.002540,-0.002250,0.249990,0,0);}
.m4d_c00112{transform:matrix(0.286769,0.008316,-0.007247,0.249895,0,0);-ms-transform:matrix(0.286769,0.008316,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.286769,0.008316,-0.007247,0.249895,0,0);}
.m72_c00112{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);}
.m10a_c00112{transform:matrix(0.298543,0.002687,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298543,0.002687,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298543,0.002687,-0.002250,0.249990,0,0);}
.ma4_c00112{transform:matrix(0.299958,0.002700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299958,0.002700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299958,0.002700,-0.002250,0.249990,0,0);}
.mb3_c00112{transform:matrix(0.309327,0.002784,-0.002250,0.249990,0,0);-ms-transform:matrix(0.309327,0.002784,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.309327,0.002784,-0.002250,0.249990,0,0);}
.m145_c00112{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);}
.m64_c00112{transform:matrix(0.311862,0.002807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311862,0.002807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311862,0.002807,-0.002250,0.249990,0,0);}
.mb7_c00112{transform:matrix(0.322032,0.002898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.322032,0.002898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.322032,0.002898,-0.002250,0.249990,0,0);}
.m99_c00112{transform:matrix(0.328577,0.002957,-0.002250,0.249990,0,0);-ms-transform:matrix(0.328577,0.002957,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.328577,0.002957,-0.002250,0.249990,0,0);}
.m11f_c00112{transform:matrix(0.335327,0.004695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.335327,0.004695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.335327,0.004695,-0.003500,0.249976,0,0);}
.m4_c00112{transform:matrix(0.336623,0.003366,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336623,0.003366,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336623,0.003366,-0.002500,0.249988,0,0);}
.m4f_c00112{transform:matrix(0.338171,0.005749,-0.004249,0.249964,0,0);-ms-transform:matrix(0.338171,0.005749,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.338171,0.005749,-0.004249,0.249964,0,0);}
.mb6_c00112{transform:matrix(0.354836,0.003194,-0.002250,0.249990,0,0);-ms-transform:matrix(0.354836,0.003194,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.354836,0.003194,-0.002250,0.249990,0,0);}
.m6_c00112{transform:matrix(0.354887,0.003549,-0.002500,0.249988,0,0);-ms-transform:matrix(0.354887,0.003549,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.354887,0.003549,-0.002500,0.249988,0,0);}
.m141_c00112{transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.377121,0.010937,-0.007247,0.249895,0,0);-ms-transform:matrix(0.377121,0.010937,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.377121,0.010937,-0.007247,0.249895,0,0);}
.m5_c00112{transform:matrix(0.382226,0.003822,-0.002500,0.249988,0,0);-ms-transform:matrix(0.382226,0.003822,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.382226,0.003822,-0.002500,0.249988,0,0);}
.m148_c00112{transform:matrix(0.396260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396260,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.396578,0.006742,-0.004249,0.249964,0,0);-ms-transform:matrix(0.396578,0.006742,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.396578,0.006742,-0.004249,0.249964,0,0);}
.m26_c00112{transform:matrix(0.400650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400650,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.411063,0.003700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.411063,0.003700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.411063,0.003700,-0.002250,0.249990,0,0);}
.m13d_c00112{transform:matrix(0.432683,0.006058,-0.003500,0.249976,0,0);-ms-transform:matrix(0.432683,0.006058,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.432683,0.006058,-0.003500,0.249976,0,0);}
.m3_c00112{transform:matrix(0.458867,0.004589,-0.002500,0.249988,0,0);-ms-transform:matrix(0.458867,0.004589,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.458867,0.004589,-0.002500,0.249988,0,0);}
.m24_c00112{transform:matrix(0.477365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477365,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.488860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488860,0.000000,0.000000,0.250000,0,0);}
.m147_c00112{transform:matrix(0.522005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522005,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.605737,0.068252,-0.027992,0.248428,0,0);-ms-transform:matrix(0.605737,0.068252,-0.027992,0.248428,0,0);-webkit-transform:matrix(0.605737,0.068252,-0.027992,0.248428,0,0);}
.m5c_c00112{transform:matrix(0.608887,0.010351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.608887,0.010351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.608887,0.010351,-0.004249,0.249964,0,0);}
.m0_c00112{transform:matrix(0.630148,0.006301,-0.002500,0.249988,0,0);-ms-transform:matrix(0.630148,0.006301,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.630148,0.006301,-0.002500,0.249988,0,0);}
.m135_c00112{transform:matrix(0.630173,0.008822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.630173,0.008822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.630173,0.008822,-0.003500,0.249976,0,0);}
.m143_c00112{transform:matrix(0.775700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775700,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(1.127244,0.011272,-0.002500,0.249988,0,0);-ms-transform:matrix(1.127244,0.011272,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.127244,0.011272,-0.002500,0.249988,0,0);}
.m2_c00112{transform:matrix(1.162977,0.011630,-0.002500,0.249988,0,0);-ms-transform:matrix(1.162977,0.011630,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.162977,0.011630,-0.002500,0.249988,0,0);}
.ma1_c00112{transform:matrix(1.486190,0.013376,-0.002250,0.249990,0,0);-ms-transform:matrix(1.486190,0.013376,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.486190,0.013376,-0.002250,0.249990,0,0);}
.m56_c00112{transform:matrix(2.000926,0.034016,-0.004249,0.249964,0,0);-ms-transform:matrix(2.000926,0.034016,-0.004249,0.249964,0,0);-webkit-transform:matrix(2.000926,0.034016,-0.004249,0.249964,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;}
.fs18_c00112{font-size:37.800000px;}
.fs0_c00112{font-size:45.152257px;}
.fs15_c00112{font-size:46.200000px;}
.fs19_c00112{font-size:48.300000px;}
.fs16_c00112{font-size:50.404939px;}
.fs7_c00112{font-size:51.457434px;}
.fs8_c00112{font-size:52.516404px;}
.fs17_c00112{font-size:53.555248px;}
.fs1_c00112{font-size:54.615832px;}
.fs11_c00112{font-size:61.952509px;}
.fs4_c00112{font-size:66.151621px;}
.fs3_c00112{font-size:67.200000px;}
.fs14_c00112{font-size:67.206585px;}
.fs2_c00112{font-size:68.250000px;}
.fsc_c00112{font-size:68.252184px;}
.fse_c00112{font-size:68.252764px;}
.fs6_c00112{font-size:68.278693px;}
.fsf_c00112{font-size:69.302807px;}
.fsd_c00112{font-size:70.352849px;}
.fsb_c00112{font-size:72.452318px;}
.fs10_c00112{font-size:72.452934px;}
.fs13_c00112{font-size:72.457100px;}
.fs5_c00112{font-size:72.480459px;}
.fsa_c00112{font-size:73.500000px;}
.fs12_c00112{font-size:79.807820px;}
.fs9_c00112{font-size:130.205273px;}
.y0_c00112{bottom:0.000000px;}
.y121_c00112{bottom:166.396500px;}
.y4f_c00112{bottom:167.430450px;}
.y4e_c00112{bottom:168.733988px;}
.y4d_c00112{bottom:170.254613px;}
.y4c_c00112{bottom:171.118688px;}
.y4b_c00112{bottom:172.617413px;}
.y4a_c00112{bottom:173.344500px;}
.y122_c00112{bottom:183.795000px;}
.y120_c00112{bottom:185.427873px;}
.y11f_c00112{bottom:185.981085px;}
.y11e_c00112{bottom:187.453293px;}
.y11d_c00112{bottom:187.979112px;}
.y11c_c00112{bottom:188.681757px;}
.y11b_c00112{bottom:189.817389px;}
.y11a_c00112{bottom:200.103108px;}
.y119_c00112{bottom:200.304120px;}
.y118_c00112{bottom:201.421131px;}
.y117_c00112{bottom:202.002285px;}
.y116_c00112{bottom:202.235826px;}
.y115_c00112{bottom:202.893000px;}
.y114_c00112{bottom:207.195000px;}
.y49_c00112{bottom:217.456500px;}
.y48_c00112{bottom:217.918254px;}
.y47_c00112{bottom:218.048227px;}
.y46_c00112{bottom:218.816670px;}
.y45_c00112{bottom:220.073208px;}
.y44_c00112{bottom:220.426664px;}
.y43_c00112{bottom:220.931793px;}
.y41_c00112{bottom:221.675271px;}
.y40_c00112{bottom:221.886386px;}
.y42_c00112{bottom:222.382565px;}
.y3f_c00112{bottom:222.616553px;}
.y3e_c00112{bottom:223.282077px;}
.y3d_c00112{bottom:224.324084px;}
.y3c_c00112{bottom:224.847344px;}
.y3b_c00112{bottom:225.183000px;}
.y113_c00112{bottom:271.927419px;}
.y112_c00112{bottom:272.184480px;}
.y111_c00112{bottom:272.983047px;}
.y110_c00112{bottom:273.590976px;}
.y10f_c00112{bottom:274.361235px;}
.y10e_c00112{bottom:274.694799px;}
.y10d_c00112{bottom:275.239161px;}
.y10c_c00112{bottom:275.681316px;}
.y10b_c00112{bottom:276.528120px;}
.y10a_c00112{bottom:277.280529px;}
.y109_c00112{bottom:278.100075px;}
.y108_c00112{bottom:294.787710px;}
.y107_c00112{bottom:295.585269px;}
.y106_c00112{bottom:296.068899px;}
.y105_c00112{bottom:297.490410px;}
.y104_c00112{bottom:297.844953px;}
.y103_c00112{bottom:298.885839px;}
.y102_c00112{bottom:299.075028px;}
.y101_c00112{bottom:299.437614px;}
.y100_c00112{bottom:299.974269px;}
.yff_c00112{bottom:300.783000px;}
.y3a_c00112{bottom:308.840525px;}
.y39_c00112{bottom:310.823388px;}
.y38_c00112{bottom:311.912109px;}
.y37_c00112{bottom:312.747054px;}
.y36_c00112{bottom:313.464669px;}
.y35_c00112{bottom:315.558360px;}
.y34_c00112{bottom:316.538037px;}
.y33_c00112{bottom:317.578347px;}
.y32_c00112{bottom:319.393491px;}
.y31_c00112{bottom:320.641167px;}
.y30_c00112{bottom:321.189714px;}
.y2f_c00112{bottom:323.506517px;}
.y2e_c00112{bottom:324.486455px;}
.y2d_c00112{bottom:335.476734px;}
.y2c_c00112{bottom:337.618630px;}
.y2b_c00112{bottom:338.714352px;}
.y2a_c00112{bottom:340.045104px;}
.y29_c00112{bottom:341.988858px;}
.y28_c00112{bottom:342.809964px;}
.y27_c00112{bottom:343.524452px;}
.y26_c00112{bottom:345.839565px;}
.y25_c00112{bottom:347.796021px;}
.y24_c00112{bottom:348.580500px;}
.yfe_c00112{bottom:363.518316px;}
.yfd_c00112{bottom:364.233093px;}
.yfc_c00112{bottom:364.649061px;}
.yfb_c00112{bottom:365.126622px;}
.yfa_c00112{bottom:365.779596px;}
.yf9_c00112{bottom:366.280866px;}
.yf8_c00112{bottom:366.886674px;}
.yf7_c00112{bottom:367.744923px;}
.yf6_c00112{bottom:368.833500px;}
.yf4_c00112{bottom:394.686267px;}
.yf5_c00112{bottom:394.686310px;}
.yf3_c00112{bottom:394.686794px;}
.yf2_c00112{bottom:394.687530px;}
.yf1_c00112{bottom:394.687786px;}
.yf0_c00112{bottom:394.687877px;}
.yef_c00112{bottom:394.688269px;}
.yee_c00112{bottom:413.003124px;}
.yed_c00112{bottom:413.469585px;}
.yec_c00112{bottom:413.975394px;}
.yeb_c00112{bottom:414.619370px;}
.yea_c00112{bottom:414.894433px;}
.ye9_c00112{bottom:415.254703px;}
.ye8_c00112{bottom:416.096571px;}
.ye7_c00112{bottom:416.570351px;}
.ye6_c00112{bottom:416.926191px;}
.ye5_c00112{bottom:417.214002px;}
.ye4_c00112{bottom:417.431068px;}
.ye3_c00112{bottom:418.104144px;}
.ye2_c00112{bottom:418.492731px;}
.ye1_c00112{bottom:436.426251px;}
.ye0_c00112{bottom:437.020851px;}
.ydf_c00112{bottom:437.302179px;}
.yde_c00112{bottom:437.563065px;}
.ydd_c00112{bottom:437.884086px;}
.ydc_c00112{bottom:438.440679px;}
.ydb_c00112{bottom:438.783505px;}
.yda_c00112{bottom:439.512997px;}
.yd9_c00112{bottom:439.762017px;}
.yd8_c00112{bottom:440.412147px;}
.yd7_c00112{bottom:440.633502px;}
.yd6_c00112{bottom:458.561602px;}
.yd5_c00112{bottom:459.215229px;}
.yd4_c00112{bottom:459.979333px;}
.yd3_c00112{bottom:460.223526px;}
.yd2_c00112{bottom:460.499029px;}
.yd1_c00112{bottom:461.164836px;}
.yd0_c00112{bottom:461.462322px;}
.ycf_c00112{bottom:461.734572px;}
.yce_c00112{bottom:462.255064px;}
.ycd_c00112{bottom:462.765727px;}
.ycc_c00112{bottom:463.383694px;}
.ycb_c00112{bottom:463.584867px;}
.yca_c00112{bottom:481.586829px;}
.yc9_c00112{bottom:481.991937px;}
.yc8_c00112{bottom:482.245843px;}
.yc7_c00112{bottom:482.632347px;}
.yc6_c00112{bottom:483.298624px;}
.yc5_c00112{bottom:483.922995px;}
.yc4_c00112{bottom:484.174552px;}
.yc3_c00112{bottom:484.618059px;}
.yc2_c00112{bottom:485.263329px;}
.yc1_c00112{bottom:485.997762px;}
.yc0_c00112{bottom:503.748147px;}
.ybf_c00112{bottom:504.350077px;}
.ybe_c00112{bottom:505.379556px;}
.ybd_c00112{bottom:505.815042px;}
.ybc_c00112{bottom:506.112018px;}
.ybb_c00112{bottom:506.695465px;}
.yba_c00112{bottom:507.000015px;}
.yb9_c00112{bottom:507.245158px;}
.yb8_c00112{bottom:507.609222px;}
.yb7_c00112{bottom:508.137853px;}
.yb6_c00112{bottom:526.772629px;}
.yb5_c00112{bottom:526.946311px;}
.yb4_c00112{bottom:527.802745px;}
.yb3_c00112{bottom:528.023565px;}
.yb2_c00112{bottom:528.224764px;}
.yb1_c00112{bottom:528.960891px;}
.yb0_c00112{bottom:529.590105px;}
.yaf_c00112{bottom:530.083593px;}
.yae_c00112{bottom:530.347876px;}
.yad_c00112{bottom:530.767249px;}
.yac_c00112{bottom:531.033220px;}
.yab_c00112{bottom:531.627585px;}
.yaa_c00112{bottom:548.526633px;}
.ya9_c00112{bottom:548.871418px;}
.ya8_c00112{bottom:549.454252px;}
.ya7_c00112{bottom:549.807531px;}
.ya6_c00112{bottom:550.227147px;}
.ya5_c00112{bottom:550.494049px;}
.ya4_c00112{bottom:550.903836px;}
.ya3_c00112{bottom:551.176882px;}
.ya2_c00112{bottom:551.462703px;}
.ya1_c00112{bottom:552.253609px;}
.ya0_c00112{bottom:552.583245px;}
.y9f_c00112{bottom:553.500615px;}
.y9e_c00112{bottom:571.674880px;}
.y9d_c00112{bottom:572.015587px;}
.y9c_c00112{bottom:572.174917px;}
.y9b_c00112{bottom:572.735979px;}
.y9a_c00112{bottom:573.015633px;}
.y99_c00112{bottom:573.274575px;}
.y98_c00112{bottom:573.835879px;}
.y97_c00112{bottom:574.099845px;}
.y96_c00112{bottom:574.404273px;}
.y95_c00112{bottom:574.629232px;}
.y94_c00112{bottom:575.415902px;}
.y93_c00112{bottom:575.910361px;}
.y92_c00112{bottom:593.782854px;}
.y91_c00112{bottom:594.293760px;}
.y90_c00112{bottom:594.581632px;}
.y8f_c00112{bottom:594.963441px;}
.y8e_c00112{bottom:595.456551px;}
.y8d_c00112{bottom:595.726317px;}
.y8c_c00112{bottom:596.990659px;}
.y8b_c00112{bottom:598.052263px;}
.yd_c00112{bottom:599.345856px;}
.yc_c00112{bottom:608.673216px;}
.yb_c00112{bottom:610.494000px;}
.y8a_c00112{bottom:616.514710px;}
.y89_c00112{bottom:616.685787px;}
.y88_c00112{bottom:617.117218px;}
.y87_c00112{bottom:617.205226px;}
.y86_c00112{bottom:617.589664px;}
.y85_c00112{bottom:617.848994px;}
.y84_c00112{bottom:618.251151px;}
.y83_c00112{bottom:619.388605px;}
.y82_c00112{bottom:638.608943px;}
.y81_c00112{bottom:639.080430px;}
.y80_c00112{bottom:639.695179px;}
.y7f_c00112{bottom:639.945132px;}
.y7e_c00112{bottom:640.365873px;}
.y7d_c00112{bottom:640.720855px;}
.y7c_c00112{bottom:640.917523px;}
.y7b_c00112{bottom:641.048973px;}
.y7a_c00112{bottom:641.449734px;}
.y79_c00112{bottom:641.899351px;}
.y78_c00112{bottom:642.399823px;}
.y77_c00112{bottom:642.601500px;}
.y23_c00112{bottom:661.955957px;}
.y22_c00112{bottom:662.313167px;}
.y21_c00112{bottom:662.549196px;}
.y20_c00112{bottom:662.834817px;}
.y1f_c00112{bottom:663.137081px;}
.y1e_c00112{bottom:663.541740px;}
.y1d_c00112{bottom:663.823130px;}
.y1c_c00112{bottom:664.284584px;}
.y1b_c00112{bottom:664.740000px;}
.y76_c00112{bottom:684.818040px;}
.y75_c00112{bottom:684.974976px;}
.y74_c00112{bottom:685.148040px;}
.y73_c00112{bottom:685.715292px;}
.y72_c00112{bottom:685.881372px;}
.y71_c00112{bottom:686.365404px;}
.y70_c00112{bottom:686.494260px;}
.y6f_c00112{bottom:686.666832px;}
.y6e_c00112{bottom:686.883852px;}
.y6d_c00112{bottom:687.478680px;}
.y6c_c00112{bottom:687.960432px;}
.y6b_c00112{bottom:706.916232px;}
.y6a_c00112{bottom:707.365848px;}
.y69_c00112{bottom:707.564580px;}
.y68_c00112{bottom:707.871288px;}
.y67_c00112{bottom:708.182064px;}
.y66_c00112{bottom:708.423996px;}
.y65_c00112{bottom:708.780804px;}
.y64_c00112{bottom:709.169544px;}
.y63_c00112{bottom:709.344468px;}
.y62_c00112{bottom:709.784904px;}
.y61_c00112{bottom:710.061528px;}
.y60_c00112{bottom:710.437500px;}
.y1a_c00112{bottom:736.954500px;}
.y19_c00112{bottom:756.948000px;}
.y18_c00112{bottom:757.276500px;}
.y17_c00112{bottom:757.698000px;}
.y16_c00112{bottom:758.200500px;}
.y15_c00112{bottom:758.484000px;}
.y14_c00112{bottom:758.731500px;}
.y13_c00112{bottom:759.237000px;}
.y12_c00112{bottom:759.384000px;}
.y11_c00112{bottom:759.583500px;}
.y10_c00112{bottom:759.966000px;}
.yf_c00112{bottom:760.051500px;}
.ye_c00112{bottom:780.949500px;}
.y5f_c00112{bottom:802.828500px;}
.y5e_c00112{bottom:803.386500px;}
.y5d_c00112{bottom:803.616000px;}
.y5c_c00112{bottom:804.069000px;}
.y5b_c00112{bottom:804.546000px;}
.y5a_c00112{bottom:804.697500px;}
.y59_c00112{bottom:804.880500px;}
.y58_c00112{bottom:805.185000px;}
.y57_c00112{bottom:805.356000px;}
.y56_c00112{bottom:805.674000px;}
.y55_c00112{bottom:806.220000px;}
.y54_c00112{bottom:826.360500px;}
.y53_c00112{bottom:872.138098px;}
.y52_c00112{bottom:873.579710px;}
.y51_c00112{bottom:874.175802px;}
.y50_c00112{bottom:875.611500px;}
.ya_c00112{bottom:934.672515px;}
.y9_c00112{bottom:935.355750px;}
.y8_c00112{bottom:935.909310px;}
.y7_c00112{bottom:936.103680px;}
.y6_c00112{bottom:936.581715px;}
.y5_c00112{bottom:936.867495px;}
.y4_c00112{bottom:937.192020px;}
.y3_c00112{bottom:937.902195px;}
.y2_c00112{bottom:938.172150px;}
.y1_c00112{bottom:938.374500px;}
.h1a_c00112{height:37.800000px;}
.h2_c00112{height:45.152257px;}
.h17_c00112{height:46.200000px;}
.h1b_c00112{height:48.300000px;}
.h18_c00112{height:50.404939px;}
.h9_c00112{height:51.457434px;}
.ha_c00112{height:52.516404px;}
.h19_c00112{height:53.555248px;}
.h3_c00112{height:54.615832px;}
.h13_c00112{height:61.952509px;}
.h6_c00112{height:66.151621px;}
.h5_c00112{height:67.200000px;}
.h16_c00112{height:67.206585px;}
.h4_c00112{height:68.250000px;}
.he_c00112{height:68.252184px;}
.h10_c00112{height:68.252764px;}
.h8_c00112{height:68.278693px;}
.h11_c00112{height:69.302807px;}
.hf_c00112{height:70.352849px;}
.hd_c00112{height:72.452318px;}
.h12_c00112{height:72.452934px;}
.h15_c00112{height:72.457100px;}
.h7_c00112{height:72.480459px;}
.hc_c00112{height:73.500000px;}
.h14_c00112{height:79.807820px;}
.hb_c00112{height:130.205273px;}
.h1_c00112{height:1005.000000px;}
.h0_c00112{height:1005.150000px;}
.w0_c00112{width:705.450000px;}
.w1_c00112{width:705.750000px;}
.x0_c00112{left:0.000000px;}
.xb_c00112{left:55.678500px;}
.x4f_c00112{left:57.847500px;}
.x30_c00112{left:61.486500px;}
.xc_c00112{left:71.837958px;}
.xe_c00112{left:79.380000px;}
.x43_c00112{left:84.592500px;}
.x22_c00112{left:86.130000px;}
.x31_c00112{left:88.537500px;}
.x9e_c00112{left:90.081533px;}
.xf_c00112{left:91.260000px;}
.x83_c00112{left:92.483871px;}
.x65_c00112{left:101.140500px;}
.x44_c00112{left:104.337000px;}
.xa7_c00112{left:107.815500px;}
.x93_c00112{left:108.935546px;}
.x99_c00112{left:112.456604px;}
.x70_c00112{left:114.366000px;}
.x3a_c00112{left:116.667834px;}
.x9f_c00112{left:122.423655px;}
.x23_c00112{left:129.330000px;}
.x54_c00112{left:132.570000px;}
.x10_c00112{left:135.810000px;}
.x77_c00112{left:142.463192px;}
.x29_c00112{left:144.886500px;}
.x1b_c00112{left:146.011500px;}
.x66_c00112{left:148.137000px;}
.xb3_c00112{left:149.290905px;}
.xd_c00112{left:154.618278px;}
.x32_c00112{left:156.001500px;}
.x5d_c00112{left:159.745500px;}
.x1_c00112{left:161.923500px;}
.x11_c00112{left:163.890000px;}
.x94_c00112{left:165.097533px;}
.x71_c00112{left:169.974000px;}
.x1c_c00112{left:174.600000px;}
.x9a_c00112{left:177.526023px;}
.xa0_c00112{left:178.541643px;}
.x3b_c00112{left:181.027284px;}
.x2_c00112{left:182.158500px;}
.xa5_c00112{left:186.035577px;}
.x1d_c00112{left:195.657000px;}
.xa1_c00112{left:196.659657px;}
.x5e_c00112{left:199.426500px;}
.x12_c00112{left:201.690000px;}
.x86_c00112{left:205.308116px;}
.x55_c00112{left:206.820000px;}
.x3_c00112{left:209.154000px;}
.x2a_c00112{left:210.808500px;}
.x72_c00112{left:219.931500px;}
.x24_c00112{left:221.130000px;}
.x13_c00112{left:223.290000px;}
.xad_c00112{left:224.967000px;}
.x90_c00112{left:229.095872px;}
.x3c_c00112{left:230.904148px;}
.x33_c00112{left:235.833000px;}
.x67_c00112{left:237.769500px;}
.x7f_c00112{left:241.263629px;}
.x50_c00112{left:242.268000px;}
.xa6_c00112{left:243.817248px;}
.x25_c00112{left:245.160000px;}
.xa8_c00112{left:246.874500px;}
.x47_c00112{left:249.324000px;}
.x2b_c00112{left:251.007000px;}
.xb4_c00112{left:257.322273px;}
.x5f_c00112{left:258.823500px;}
.x34_c00112{left:260.470500px;}
.xae_c00112{left:262.544064px;}
.x73_c00112{left:264.460500px;}
.x14_c00112{left:266.220000px;}
.x1e_c00112{left:267.774000px;}
.x56_c00112{left:271.080000px;}
.x84_c00112{left:273.650751px;}
.x9b_c00112{left:275.248632px;}
.x6b_c00112{left:276.670080px;}
.x45_c00112{left:278.511000px;}
.x4_c00112{left:280.171500px;}
.x3d_c00112{left:281.329926px;}
.x95_c00112{left:283.584900px;}
.x35_c00112{left:288.784500px;}
.xa2_c00112{left:289.816146px;}
.x46_c00112{left:290.929500px;}
.x26_c00112{left:293.490000px;}
.x8c_c00112{left:295.243659px;}
.x91_c00112{left:298.491237px;}
.x60_c00112{left:300.661500px;}
.x1f_c00112{left:303.142500px;}
.x78_c00112{left:305.016621px;}
.x15_c00112{left:308.070000px;}
.x3e_c00112{left:310.214053px;}
.x5_c00112{left:312.624000px;}
.x27_c00112{left:315.360000px;}
.x51_c00112{left:316.465500px;}
.x6c_c00112{left:319.598916px;}
.x8d_c00112{left:324.907389px;}
.xa9_c00112{left:325.951500px;}
.x87_c00112{left:327.947402px;}
.x16_c00112{left:331.830000px;}
.xaf_c00112{left:333.009564px;}
.x48_c00112{left:334.663500px;}
.x3f_c00112{left:337.421529px;}
.x6_c00112{left:341.202000px;}
.x20_c00112{left:343.608000px;}
.x57_c00112{left:348.570000px;}
.x2c_c00112{left:351.996000px;}
.x36_c00112{left:355.810500px;}
.xb0_c00112{left:356.835564px;}
.xb5_c00112{left:358.830000px;}
.x61_c00112{left:360.340500px;}
.x79_c00112{left:362.535161px;}
.x49_c00112{left:364.377000px;}
.x8e_c00112{left:368.460998px;}
.x58_c00112{left:369.630000px;}
.x96_c00112{left:371.115821px;}
.xaa_c00112{left:372.592500px;}
.x80_c00112{left:380.717618px;}
.x52_c00112{left:382.698000px;}
.x4a_c00112{left:385.168500px;}
.x74_c00112{left:387.109500px;}
.x7_c00112{left:389.005500px;}
.xa3_c00112{left:390.050946px;}
.x2d_c00112{left:392.799000px;}
.x40_c00112{left:395.588740px;}
.x17_c00112{left:397.170000px;}
.x7a_c00112{left:399.516822px;}
.x37_c00112{left:401.698500px;}
.xb6_c00112{left:405.000000px;}
.xab_c00112{left:406.704000px;}
.x8_c00112{left:408.442500px;}
.x59_c00112{left:410.940000px;}
.x6d_c00112{left:412.488660px;}
.x18_c00112{left:415.800000px;}
.x62_c00112{left:417.039000px;}
.x8a_c00112{left:419.167884px;}
.x68_c00112{left:421.917000px;}
.x9c_c00112{left:423.505809px;}
.x81_c00112{left:425.506808px;}
.x2e_c00112{left:426.517500px;}
.x88_c00112{left:427.590606px;}
.xac_c00112{left:436.416000px;}
.x38_c00112{left:439.482000px;}
.x63_c00112{left:445.659000px;}
.x9d_c00112{left:451.597553px;}
.x7b_c00112{left:454.399808px;}
.x4b_c00112{left:459.082500px;}
.x69_c00112{left:460.255500px;}
.x9_c00112{left:463.798500px;}
.x28_c00112{left:465.750000px;}
.x7c_c00112{left:467.012037px;}
.x41_c00112{left:468.962863px;}
.x8f_c00112{left:471.346566px;}
.x19_c00112{left:474.930000px;}
.x2f_c00112{left:477.547500px;}
.xb7_c00112{left:480.330000px;}
.x85_c00112{left:482.066375px;}
.x75_c00112{left:483.187500px;}
.x6a_c00112{left:485.097000px;}
.x82_c00112{left:486.414714px;}
.x97_c00112{left:487.758215px;}
.x92_c00112{left:491.551496px;}
.x6e_c00112{left:493.520808px;}
.x1a_c00112{left:495.990000px;}
.x5a_c00112{left:497.340000px;}
.x4c_c00112{left:504.285000px;}
.xa4_c00112{left:508.864247px;}
.x4d_c00112{left:511.930500px;}
.x39_c00112{left:513.340500px;}
.x64_c00112{left:515.323500px;}
.x8b_c00112{left:517.027616px;}
.x6f_c00112{left:518.341512px;}
.x21_c00112{left:522.649500px;}
.x42_c00112{left:524.033184px;}
.x7d_c00112{left:528.616644px;}
.xb1_c00112{left:530.679564px;}
.xa_c00112{left:532.122000px;}
.xb2_c00112{left:533.179500px;}
.x76_c00112{left:535.575000px;}
.x4e_c00112{left:539.092500px;}
.x5b_c00112{left:540.540000px;}
.x53_c00112{left:542.877000px;}
.x89_c00112{left:543.910500px;}
.x98_c00112{left:547.215648px;}
.x7e_c00112{left:553.125590px;}
.x5c_c00112{left:558.360000px;}
.xb8_c00112{left:569.700000px;}
.xb9_c00112{left:594.810000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.fs18_c00112{font-size:33.600000pt;}
.fs0_c00112{font-size:40.135340pt;}
.fs15_c00112{font-size:41.066667pt;}
.fs19_c00112{font-size:42.933333pt;}
.fs16_c00112{font-size:44.804390pt;}
.fs7_c00112{font-size:45.739941pt;}
.fs8_c00112{font-size:46.681248pt;}
.fs17_c00112{font-size:47.604665pt;}
.fs1_c00112{font-size:48.547406pt;}
.fs11_c00112{font-size:55.068897pt;}
.fs4_c00112{font-size:58.801441pt;}
.fs3_c00112{font-size:59.733333pt;}
.fs14_c00112{font-size:59.739187pt;}
.fs2_c00112{font-size:60.666667pt;}
.fsc_c00112{font-size:60.668608pt;}
.fse_c00112{font-size:60.669124pt;}
.fs6_c00112{font-size:60.692172pt;}
.fsf_c00112{font-size:61.602495pt;}
.fsd_c00112{font-size:62.535866pt;}
.fsb_c00112{font-size:64.402061pt;}
.fs10_c00112{font-size:64.402608pt;}
.fs13_c00112{font-size:64.406311pt;}
.fs5_c00112{font-size:64.427075pt;}
.fsa_c00112{font-size:65.333333pt;}
.fs12_c00112{font-size:70.940284pt;}
.fs9_c00112{font-size:115.738020pt;}
.y0_c00112{bottom:0.000000pt;}
.y121_c00112{bottom:147.908000pt;}
.y4f_c00112{bottom:148.827067pt;}
.y4e_c00112{bottom:149.985767pt;}
.y4d_c00112{bottom:151.337433pt;}
.y4c_c00112{bottom:152.105500pt;}
.y4b_c00112{bottom:153.437700pt;}
.y4a_c00112{bottom:154.084000pt;}
.y122_c00112{bottom:163.373333pt;}
.y120_c00112{bottom:164.824776pt;}
.y11f_c00112{bottom:165.316520pt;}
.y11e_c00112{bottom:166.625149pt;}
.y11d_c00112{bottom:167.092544pt;}
.y11c_c00112{bottom:167.717117pt;}
.y11b_c00112{bottom:168.726568pt;}
.y11a_c00112{bottom:177.869429pt;}
.y119_c00112{bottom:178.048107pt;}
.y118_c00112{bottom:179.041005pt;}
.y117_c00112{bottom:179.557587pt;}
.y116_c00112{bottom:179.765179pt;}
.y115_c00112{bottom:180.349333pt;}
.y114_c00112{bottom:184.173333pt;}
.y49_c00112{bottom:193.294667pt;}
.y48_c00112{bottom:193.705115pt;}
.y47_c00112{bottom:193.820647pt;}
.y46_c00112{bottom:194.503707pt;}
.y45_c00112{bottom:195.620629pt;}
.y44_c00112{bottom:195.934812pt;}
.y43_c00112{bottom:196.383816pt;}
.y41_c00112{bottom:197.044685pt;}
.y40_c00112{bottom:197.232343pt;}
.y42_c00112{bottom:197.673391pt;}
.y3f_c00112{bottom:197.881380pt;}
.y3e_c00112{bottom:198.472957pt;}
.y3d_c00112{bottom:199.399185pt;}
.y3c_c00112{bottom:199.864305pt;}
.y3b_c00112{bottom:200.162667pt;}
.y113_c00112{bottom:241.713261pt;}
.y112_c00112{bottom:241.941760pt;}
.y111_c00112{bottom:242.651597pt;}
.y110_c00112{bottom:243.191979pt;}
.y10f_c00112{bottom:243.876653pt;}
.y10e_c00112{bottom:244.173155pt;}
.y10d_c00112{bottom:244.657032pt;}
.y10c_c00112{bottom:245.050059pt;}
.y10b_c00112{bottom:245.802773pt;}
.y10a_c00112{bottom:246.471581pt;}
.y109_c00112{bottom:247.200067pt;}
.y108_c00112{bottom:262.033520pt;}
.y107_c00112{bottom:262.742461pt;}
.y106_c00112{bottom:263.172355pt;}
.y105_c00112{bottom:264.435920pt;}
.y104_c00112{bottom:264.751069pt;}
.y103_c00112{bottom:265.676301pt;}
.y102_c00112{bottom:265.844469pt;}
.y101_c00112{bottom:266.166768pt;}
.y100_c00112{bottom:266.643795pt;}
.yff_c00112{bottom:267.362667pt;}
.y3a_c00112{bottom:274.524911pt;}
.y39_c00112{bottom:276.287456pt;}
.y38_c00112{bottom:277.255208pt;}
.y37_c00112{bottom:277.997381pt;}
.y36_c00112{bottom:278.635261pt;}
.y35_c00112{bottom:280.496320pt;}
.y34_c00112{bottom:281.367144pt;}
.y33_c00112{bottom:282.291864pt;}
.y32_c00112{bottom:283.905325pt;}
.y31_c00112{bottom:285.014371pt;}
.y30_c00112{bottom:285.501968pt;}
.y2f_c00112{bottom:287.561348pt;}
.y2e_c00112{bottom:288.432404pt;}
.y2d_c00112{bottom:298.201541pt;}
.y2c_c00112{bottom:300.105449pt;}
.y2b_c00112{bottom:301.079424pt;}
.y2a_c00112{bottom:302.262315pt;}
.y29_c00112{bottom:303.990096pt;}
.y28_c00112{bottom:304.719968pt;}
.y27_c00112{bottom:305.355068pt;}
.y26_c00112{bottom:307.412947pt;}
.y25_c00112{bottom:309.152019pt;}
.y24_c00112{bottom:309.849333pt;}
.yfe_c00112{bottom:323.127392pt;}
.yfd_c00112{bottom:323.762749pt;}
.yfc_c00112{bottom:324.132499pt;}
.yfb_c00112{bottom:324.556997pt;}
.yfa_c00112{bottom:325.137419pt;}
.yf9_c00112{bottom:325.582992pt;}
.yf8_c00112{bottom:326.121488pt;}
.yf7_c00112{bottom:326.884376pt;}
.yf6_c00112{bottom:327.852000pt;}
.yf4_c00112{bottom:350.832237pt;}
.yf5_c00112{bottom:350.832276pt;}
.yf3_c00112{bottom:350.832705pt;}
.yf2_c00112{bottom:350.833360pt;}
.yf1_c00112{bottom:350.833588pt;}
.yf0_c00112{bottom:350.833668pt;}
.yef_c00112{bottom:350.834017pt;}
.yee_c00112{bottom:367.113888pt;}
.yed_c00112{bottom:367.528520pt;}
.yec_c00112{bottom:367.978128pt;}
.yeb_c00112{bottom:368.550551pt;}
.yea_c00112{bottom:368.795052pt;}
.ye9_c00112{bottom:369.115292pt;}
.ye8_c00112{bottom:369.863619pt;}
.ye7_c00112{bottom:370.284756pt;}
.ye6_c00112{bottom:370.601059pt;}
.ye5_c00112{bottom:370.856891pt;}
.ye4_c00112{bottom:371.049839pt;}
.ye3_c00112{bottom:371.648128pt;}
.ye2_c00112{bottom:371.993539pt;}
.ye1_c00112{bottom:387.934445pt;}
.ye0_c00112{bottom:388.462979pt;}
.ydf_c00112{bottom:388.713048pt;}
.yde_c00112{bottom:388.944947pt;}
.ydd_c00112{bottom:389.230299pt;}
.ydc_c00112{bottom:389.725048pt;}
.ydb_c00112{bottom:390.029783pt;}
.yda_c00112{bottom:390.678220pt;}
.yd9_c00112{bottom:390.899571pt;}
.yd8_c00112{bottom:391.477464pt;}
.yd7_c00112{bottom:391.674224pt;}
.yd6_c00112{bottom:407.610313pt;}
.yd5_c00112{bottom:408.191315pt;}
.yd4_c00112{bottom:408.870519pt;}
.yd3_c00112{bottom:409.087579pt;}
.yd2_c00112{bottom:409.332471pt;}
.yd1_c00112{bottom:409.924299pt;}
.yd0_c00112{bottom:410.188731pt;}
.ycf_c00112{bottom:410.430731pt;}
.yce_c00112{bottom:410.893391pt;}
.ycd_c00112{bottom:411.347313pt;}
.ycc_c00112{bottom:411.896617pt;}
.ycb_c00112{bottom:412.075437pt;}
.yca_c00112{bottom:428.077181pt;}
.yc9_c00112{bottom:428.437277pt;}
.yc8_c00112{bottom:428.662972pt;}
.yc7_c00112{bottom:429.006531pt;}
.yc6_c00112{bottom:429.598777pt;}
.yc5_c00112{bottom:430.153773pt;}
.yc4_c00112{bottom:430.377380pt;}
.yc3_c00112{bottom:430.771608pt;}
.yc2_c00112{bottom:431.345181pt;}
.yc1_c00112{bottom:431.998011pt;}
.yc0_c00112{bottom:447.776131pt;}
.ybf_c00112{bottom:448.311180pt;}
.ybe_c00112{bottom:449.226272pt;}
.ybd_c00112{bottom:449.613371pt;}
.ybc_c00112{bottom:449.877349pt;}
.ybb_c00112{bottom:450.395969pt;}
.yba_c00112{bottom:450.666680pt;}
.yb9_c00112{bottom:450.884585pt;}
.yb8_c00112{bottom:451.208197pt;}
.yb7_c00112{bottom:451.678092pt;}
.yb6_c00112{bottom:468.242337pt;}
.yb5_c00112{bottom:468.396721pt;}
.yb4_c00112{bottom:469.157996pt;}
.yb3_c00112{bottom:469.354280pt;}
.yb2_c00112{bottom:469.533124pt;}
.yb1_c00112{bottom:470.187459pt;}
.yb0_c00112{bottom:470.746760pt;}
.yaf_c00112{bottom:471.185416pt;}
.yae_c00112{bottom:471.420335pt;}
.yad_c00112{bottom:471.793111pt;}
.yac_c00112{bottom:472.029529pt;}
.yab_c00112{bottom:472.557853pt;}
.yaa_c00112{bottom:487.579229pt;}
.ya9_c00112{bottom:487.885705pt;}
.ya8_c00112{bottom:488.403780pt;}
.ya7_c00112{bottom:488.717805pt;}
.ya6_c00112{bottom:489.090797pt;}
.ya5_c00112{bottom:489.328044pt;}
.ya4_c00112{bottom:489.692299pt;}
.ya3_c00112{bottom:489.935007pt;}
.ya2_c00112{bottom:490.189069pt;}
.ya1_c00112{bottom:490.892097pt;}
.ya0_c00112{bottom:491.185107pt;}
.y9f_c00112{bottom:492.000547pt;}
.y9e_c00112{bottom:508.155449pt;}
.y9d_c00112{bottom:508.458300pt;}
.y9c_c00112{bottom:508.599927pt;}
.y9b_c00112{bottom:509.098648pt;}
.y9a_c00112{bottom:509.347229pt;}
.y99_c00112{bottom:509.577400pt;}
.y98_c00112{bottom:510.076337pt;}
.y97_c00112{bottom:510.310973pt;}
.y96_c00112{bottom:510.581576pt;}
.y95_c00112{bottom:510.781540pt;}
.y94_c00112{bottom:511.480801pt;}
.y93_c00112{bottom:511.920321pt;}
.y92_c00112{bottom:527.806981pt;}
.y91_c00112{bottom:528.261120pt;}
.y90_c00112{bottom:528.517007pt;}
.y8f_c00112{bottom:528.856392pt;}
.y8e_c00112{bottom:529.294712pt;}
.y8d_c00112{bottom:529.534504pt;}
.y8c_c00112{bottom:530.658364pt;}
.y8b_c00112{bottom:531.602012pt;}
.yd_c00112{bottom:532.751872pt;}
.yc_c00112{bottom:541.042859pt;}
.yb_c00112{bottom:542.661333pt;}
.y8a_c00112{bottom:548.013076pt;}
.y89_c00112{bottom:548.165144pt;}
.y88_c00112{bottom:548.548639pt;}
.y87_c00112{bottom:548.626868pt;}
.y86_c00112{bottom:548.968591pt;}
.y85_c00112{bottom:549.199105pt;}
.y84_c00112{bottom:549.556579pt;}
.y83_c00112{bottom:550.567649pt;}
.y82_c00112{bottom:567.652393pt;}
.y81_c00112{bottom:568.071493pt;}
.y80_c00112{bottom:568.617937pt;}
.y7f_c00112{bottom:568.840117pt;}
.y7e_c00112{bottom:569.214109pt;}
.y7d_c00112{bottom:569.529649pt;}
.y7c_c00112{bottom:569.704465pt;}
.y7b_c00112{bottom:569.821309pt;}
.y7a_c00112{bottom:570.177541pt;}
.y79_c00112{bottom:570.577201pt;}
.y78_c00112{bottom:571.022065pt;}
.y77_c00112{bottom:571.201333pt;}
.y23_c00112{bottom:588.405295pt;}
.y22_c00112{bottom:588.722815pt;}
.y21_c00112{bottom:588.932619pt;}
.y20_c00112{bottom:589.186504pt;}
.y1f_c00112{bottom:589.455183pt;}
.y1e_c00112{bottom:589.814880pt;}
.y1d_c00112{bottom:590.065004pt;}
.y1c_c00112{bottom:590.475185pt;}
.y1b_c00112{bottom:590.880000pt;}
.y76_c00112{bottom:608.727147pt;}
.y75_c00112{bottom:608.866645pt;}
.y74_c00112{bottom:609.020480pt;}
.y73_c00112{bottom:609.524704pt;}
.y72_c00112{bottom:609.672331pt;}
.y71_c00112{bottom:610.102581pt;}
.y70_c00112{bottom:610.217120pt;}
.y6f_c00112{bottom:610.370517pt;}
.y6e_c00112{bottom:610.563424pt;}
.y6d_c00112{bottom:611.092160pt;}
.y6c_c00112{bottom:611.520384pt;}
.y6b_c00112{bottom:628.369984pt;}
.y6a_c00112{bottom:628.769643pt;}
.y69_c00112{bottom:628.946293pt;}
.y68_c00112{bottom:629.218923pt;}
.y67_c00112{bottom:629.495168pt;}
.y66_c00112{bottom:629.710219pt;}
.y65_c00112{bottom:630.027381pt;}
.y64_c00112{bottom:630.372928pt;}
.y63_c00112{bottom:630.528416pt;}
.y62_c00112{bottom:630.919915pt;}
.y61_c00112{bottom:631.165803pt;}
.y60_c00112{bottom:631.500000pt;}
.y1a_c00112{bottom:655.070667pt;}
.y19_c00112{bottom:672.842667pt;}
.y18_c00112{bottom:673.134667pt;}
.y17_c00112{bottom:673.509333pt;}
.y16_c00112{bottom:673.956000pt;}
.y15_c00112{bottom:674.208000pt;}
.y14_c00112{bottom:674.428000pt;}
.y13_c00112{bottom:674.877333pt;}
.y12_c00112{bottom:675.008000pt;}
.y11_c00112{bottom:675.185333pt;}
.y10_c00112{bottom:675.525333pt;}
.yf_c00112{bottom:675.601333pt;}
.ye_c00112{bottom:694.177333pt;}
.y5f_c00112{bottom:713.625333pt;}
.y5e_c00112{bottom:714.121333pt;}
.y5d_c00112{bottom:714.325333pt;}
.y5c_c00112{bottom:714.728000pt;}
.y5b_c00112{bottom:715.152000pt;}
.y5a_c00112{bottom:715.286667pt;}
.y59_c00112{bottom:715.449333pt;}
.y58_c00112{bottom:715.720000pt;}
.y57_c00112{bottom:715.872000pt;}
.y56_c00112{bottom:716.154667pt;}
.y55_c00112{bottom:716.640000pt;}
.y54_c00112{bottom:734.542667pt;}
.y53_c00112{bottom:775.233865pt;}
.y52_c00112{bottom:776.515297pt;}
.y51_c00112{bottom:777.045157pt;}
.y50_c00112{bottom:778.321333pt;}
.ya_c00112{bottom:830.820013pt;}
.y9_c00112{bottom:831.427333pt;}
.y8_c00112{bottom:831.919387pt;}
.y7_c00112{bottom:832.092160pt;}
.y6_c00112{bottom:832.517080pt;}
.y5_c00112{bottom:832.771107pt;}
.y4_c00112{bottom:833.059573pt;}
.y3_c00112{bottom:833.690840pt;}
.y2_c00112{bottom:833.930800pt;}
.y1_c00112{bottom:834.110667pt;}
.h1a_c00112{height:33.600000pt;}
.h2_c00112{height:40.135340pt;}
.h17_c00112{height:41.066667pt;}
.h1b_c00112{height:42.933333pt;}
.h18_c00112{height:44.804390pt;}
.h9_c00112{height:45.739941pt;}
.ha_c00112{height:46.681248pt;}
.h19_c00112{height:47.604665pt;}
.h3_c00112{height:48.547406pt;}
.h13_c00112{height:55.068897pt;}
.h6_c00112{height:58.801441pt;}
.h5_c00112{height:59.733333pt;}
.h16_c00112{height:59.739187pt;}
.h4_c00112{height:60.666667pt;}
.he_c00112{height:60.668608pt;}
.h10_c00112{height:60.669124pt;}
.h8_c00112{height:60.692172pt;}
.h11_c00112{height:61.602495pt;}
.hf_c00112{height:62.535866pt;}
.hd_c00112{height:64.402061pt;}
.h12_c00112{height:64.402608pt;}
.h15_c00112{height:64.406311pt;}
.h7_c00112{height:64.427075pt;}
.hc_c00112{height:65.333333pt;}
.h14_c00112{height:70.940284pt;}
.hb_c00112{height:115.738020pt;}
.h1_c00112{height:893.333333pt;}
.h0_c00112{height:893.466667pt;}
.w0_c00112{width:627.066667pt;}
.w1_c00112{width:627.333333pt;}
.x0_c00112{left:0.000000pt;}
.xb_c00112{left:49.492000pt;}
.x4f_c00112{left:51.420000pt;}
.x30_c00112{left:54.654667pt;}
.xc_c00112{left:63.855963pt;}
.xe_c00112{left:70.560000pt;}
.x43_c00112{left:75.193333pt;}
.x22_c00112{left:76.560000pt;}
.x31_c00112{left:78.700000pt;}
.x9e_c00112{left:80.072473pt;}
.xf_c00112{left:81.120000pt;}
.x83_c00112{left:82.207885pt;}
.x65_c00112{left:89.902667pt;}
.x44_c00112{left:92.744000pt;}
.xa7_c00112{left:95.836000pt;}
.x93_c00112{left:96.831596pt;}
.x99_c00112{left:99.961425pt;}
.x70_c00112{left:101.658667pt;}
.x3a_c00112{left:103.704741pt;}
.x9f_c00112{left:108.821027pt;}
.x23_c00112{left:114.960000pt;}
.x54_c00112{left:117.840000pt;}
.x10_c00112{left:120.720000pt;}
.x77_c00112{left:126.633948pt;}
.x29_c00112{left:128.788000pt;}
.x1b_c00112{left:129.788000pt;}
.x66_c00112{left:131.677333pt;}
.xb3_c00112{left:132.703027pt;}
.xd_c00112{left:137.438469pt;}
.x32_c00112{left:138.668000pt;}
.x5d_c00112{left:141.996000pt;}
.x1_c00112{left:143.932000pt;}
.x11_c00112{left:145.680000pt;}
.x94_c00112{left:146.753363pt;}
.x71_c00112{left:151.088000pt;}
.x1c_c00112{left:155.200000pt;}
.x9a_c00112{left:157.800909pt;}
.xa0_c00112{left:158.703683pt;}
.x3b_c00112{left:160.913141pt;}
.x2_c00112{left:161.918667pt;}
.xa5_c00112{left:165.364957pt;}
.x1d_c00112{left:173.917333pt;}
.xa1_c00112{left:174.808584pt;}
.x5e_c00112{left:177.268000pt;}
.x12_c00112{left:179.280000pt;}
.x86_c00112{left:182.496103pt;}
.x55_c00112{left:183.840000pt;}
.x3_c00112{left:185.914667pt;}
.x2a_c00112{left:187.385333pt;}
.x72_c00112{left:195.494667pt;}
.x24_c00112{left:196.560000pt;}
.x13_c00112{left:198.480000pt;}
.xad_c00112{left:199.970667pt;}
.x90_c00112{left:203.640775pt;}
.x3c_c00112{left:205.248132pt;}
.x33_c00112{left:209.629333pt;}
.x67_c00112{left:211.350667pt;}
.x7f_c00112{left:214.456559pt;}
.x50_c00112{left:215.349333pt;}
.xa6_c00112{left:216.726443pt;}
.x25_c00112{left:217.920000pt;}
.xa8_c00112{left:219.444000pt;}
.x47_c00112{left:221.621333pt;}
.x2b_c00112{left:223.117333pt;}
.xb4_c00112{left:228.730909pt;}
.x5f_c00112{left:230.065333pt;}
.x34_c00112{left:231.529333pt;}
.xae_c00112{left:233.372501pt;}
.x73_c00112{left:235.076000pt;}
.x14_c00112{left:236.640000pt;}
.x1e_c00112{left:238.021333pt;}
.x56_c00112{left:240.960000pt;}
.x84_c00112{left:243.245112pt;}
.x9b_c00112{left:244.665451pt;}
.x6b_c00112{left:245.928960pt;}
.x45_c00112{left:247.565333pt;}
.x4_c00112{left:249.041333pt;}
.x3d_c00112{left:250.071045pt;}
.x95_c00112{left:252.075467pt;}
.x35_c00112{left:256.697333pt;}
.xa2_c00112{left:257.614352pt;}
.x46_c00112{left:258.604000pt;}
.x26_c00112{left:260.880000pt;}
.x8c_c00112{left:262.438808pt;}
.x91_c00112{left:265.325544pt;}
.x60_c00112{left:267.254667pt;}
.x1f_c00112{left:269.460000pt;}
.x78_c00112{left:271.125885pt;}
.x15_c00112{left:273.840000pt;}
.x3e_c00112{left:275.745825pt;}
.x5_c00112{left:277.888000pt;}
.x27_c00112{left:280.320000pt;}
.x51_c00112{left:281.302667pt;}
.x6c_c00112{left:284.087925pt;}
.x8d_c00112{left:288.806568pt;}
.xa9_c00112{left:289.734667pt;}
.x87_c00112{left:291.508801pt;}
.x16_c00112{left:294.960000pt;}
.xaf_c00112{left:296.008501pt;}
.x48_c00112{left:297.478667pt;}
.x3f_c00112{left:299.930248pt;}
.x6_c00112{left:303.290667pt;}
.x20_c00112{left:305.429333pt;}
.x57_c00112{left:309.840000pt;}
.x2c_c00112{left:312.885333pt;}
.x36_c00112{left:316.276000pt;}
.xb0_c00112{left:317.187168pt;}
.xb5_c00112{left:318.960000pt;}
.x61_c00112{left:320.302667pt;}
.x79_c00112{left:322.253476pt;}
.x49_c00112{left:323.890667pt;}
.x8e_c00112{left:327.520887pt;}
.x58_c00112{left:328.560000pt;}
.x96_c00112{left:329.880729pt;}
.xaa_c00112{left:331.193333pt;}
.x80_c00112{left:338.415660pt;}
.x52_c00112{left:340.176000pt;}
.x4a_c00112{left:342.372000pt;}
.x74_c00112{left:344.097333pt;}
.x7_c00112{left:345.782667pt;}
.xa3_c00112{left:346.711952pt;}
.x2d_c00112{left:349.154667pt;}
.x40_c00112{left:351.634436pt;}
.x17_c00112{left:353.040000pt;}
.x7a_c00112{left:355.126064pt;}
.x37_c00112{left:357.065333pt;}
.xb6_c00112{left:360.000000pt;}
.xab_c00112{left:361.514667pt;}
.x8_c00112{left:363.060000pt;}
.x59_c00112{left:365.280000pt;}
.x6d_c00112{left:366.656587pt;}
.x18_c00112{left:369.600000pt;}
.x62_c00112{left:370.701333pt;}
.x8a_c00112{left:372.593675pt;}
.x68_c00112{left:375.037333pt;}
.x9c_c00112{left:376.449608pt;}
.x81_c00112{left:378.228273pt;}
.x2e_c00112{left:379.126667pt;}
.x88_c00112{left:380.080539pt;}
.xac_c00112{left:387.925333pt;}
.x38_c00112{left:390.650667pt;}
.x63_c00112{left:396.141333pt;}
.x9d_c00112{left:401.420047pt;}
.x7b_c00112{left:403.910940pt;}
.x4b_c00112{left:408.073333pt;}
.x69_c00112{left:409.116000pt;}
.x9_c00112{left:412.265333pt;}
.x28_c00112{left:414.000000pt;}
.x7c_c00112{left:415.121811pt;}
.x41_c00112{left:416.855879pt;}
.x8f_c00112{left:418.974725pt;}
.x19_c00112{left:422.160000pt;}
.x2f_c00112{left:424.486667pt;}
.xb7_c00112{left:426.960000pt;}
.x85_c00112{left:428.503444pt;}
.x75_c00112{left:429.500000pt;}
.x6a_c00112{left:431.197333pt;}
.x82_c00112{left:432.368635pt;}
.x97_c00112{left:433.562857pt;}
.x92_c00112{left:436.934663pt;}
.x6e_c00112{left:438.685163pt;}
.x1a_c00112{left:440.880000pt;}
.x5a_c00112{left:442.080000pt;}
.x4c_c00112{left:448.253333pt;}
.xa4_c00112{left:452.323775pt;}
.x4d_c00112{left:455.049333pt;}
.x39_c00112{left:456.302667pt;}
.x64_c00112{left:458.065333pt;}
.x8b_c00112{left:459.580103pt;}
.x6f_c00112{left:460.748011pt;}
.x21_c00112{left:464.577333pt;}
.x42_c00112{left:465.807275pt;}
.x7d_c00112{left:469.881461pt;}
.xb1_c00112{left:471.715168pt;}
.xa_c00112{left:472.997333pt;}
.xb2_c00112{left:473.937333pt;}
.x76_c00112{left:476.066667pt;}
.x4e_c00112{left:479.193333pt;}
.x5b_c00112{left:480.480000pt;}
.x53_c00112{left:482.557333pt;}
.x89_c00112{left:483.476000pt;}
.x98_c00112{left:486.413909pt;}
.x7e_c00112{left:491.667191pt;}
.x5c_c00112{left:496.320000pt;}
.xb8_c00112{left:506.400000pt;}
.xb9_c00112{left:528.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_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_4ab86c84425994a9e06b01c2.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;}
.m11_c00113{transform:matrix(0.011045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011045,0.000000,0.000000,0.250000,0,0);}
.md_c00113{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);}
.md8_c00113{transform:matrix(0.094235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);}
.mcf_c00113{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.m5d_c00113{transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);}
.ma2_c00113{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);}
.m78_c00113{transform:matrix(0.142415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142415,0.000000,0.000000,0.250000,0,0);}
.mba_c00113{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);}
.m90_c00113{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);}
.m11a_c00113{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);}
.m10f_c00113{transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{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);}
.m3b_c00113{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);}
.m105_c00113{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);}
.m129_c00113{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);}
.me7_c00113{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);}
.m146_c00113{transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);}
.mb5_c00113{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);}
.mf2_c00113{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);}
.m85_c00113{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);}
.m117_c00113{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);}
.mdc_c00113{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);}
.m63_c00113{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);}
.m11f_c00113{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);}
.mea_c00113{transform:matrix(0.158485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158485,0.000000,0.000000,0.250000,0,0);}
.mbb_c00113{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);}
.m35_c00113{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);}
.m10_c00113{transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);}
.m13e_c00113{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);}
.mf7_c00113{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);}
.m2c_c00113{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);}
.med_c00113{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);}
.me3_c00113{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);}
.mc5_c00113{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);}
.mab_c00113{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);}
.md5_c00113{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);}
.m73_c00113{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);}
.m111_c00113{transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);}
.m37_c00113{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);}
.m130_c00113{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);}
.mcd_c00113{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);}
.m7a_c00113{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);}
.m33_c00113{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);}
.m34_c00113{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_c00113{transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);}
.m81_c00113{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);}
.m8e_c00113{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);}
.m11e_c00113{transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{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);}
.m158_c00113{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);}
.m64_c00113{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);}
.m12c_c00113{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);}
.m46_c00113{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);}
.me0_c00113{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);}
.m7c_c00113{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);}
.m93_c00113{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);}
.m74_c00113{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);}
.m6b_c00113{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);}
.m122_c00113{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);}
.m152_c00113{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);}
.m59_c00113{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);}
.me1_c00113{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);}
.mb0_c00113{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);}
.mc6_c00113{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);}
.m52_c00113{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);}
.mf6_c00113{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);}
.mc4_c00113{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);}
.mf0_c00113{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);}
.mb8_c00113{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);}
.m19_c00113{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);}
.mca_c00113{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);}
.m3_c00113{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);}
.mbc_c00113{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);}
.m23_c00113{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);}
.m2a_c00113{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);}
.me6_c00113{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);}
.mb7_c00113{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);}
.m3e_c00113{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);}
.m151_c00113{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);}
.me2_c00113{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);}
.mb3_c00113{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);}
.m43_c00113{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);}
.m80_c00113{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);}
.m113_c00113{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);}
.m61_c00113{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);}
.m6c_c00113{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);}
.m110_c00113{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);}
.m84_c00113{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);}
.me8_c00113{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);}
.m13c_c00113{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);}
.mc7_c00113{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);}
.m15b_c00113{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);}
.m50_c00113{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);}
.m5f_c00113{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);}
.m106_c00113{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_c00113{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);}
.m14f_c00113{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);}
.m86_c00113{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);}
.md6_c00113{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);}
.mee_c00113{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);}
.mc0_c00113{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);}
.m92_c00113{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);}
.m82_c00113{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);}
.m2f_c00113{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);}
.m41_c00113{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);}
.m88_c00113{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);}
.md3_c00113{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);}
.m66_c00113{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);}
.m7d_c00113{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);}
.m96_c00113{transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);}
.m141_c00113{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);}
.mae_c00113{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);}
.mec_c00113{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);}
.m26_c00113{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);}
.m27_c00113{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);}
.m3c_c00113{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);}
.ma5_c00113{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);}
.mde_c00113{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.mb4_c00113{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);}
.m95_c00113{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.me5_c00113{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);}
.mcc_c00113{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);}
.m155_c00113{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);}
.mad_c00113{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);}
.m7e_c00113{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);}
.m2d_c00113{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);}
.mc3_c00113{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);}
.mdf_c00113{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);}
.mf5_c00113{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);}
.mb1_c00113{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);}
.mc8_c00113{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);}
.m143_c00113{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);}
.m10a_c00113{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);}
.m17_c00113{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);}
.m1e_c00113{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);}
.m9f_c00113{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);}
.m11b_c00113{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);}
.m13d_c00113{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);}
.m13a_c00113{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);}
.m119_c00113{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);}
.m124_c00113{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);}
.m8d_c00113{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);}
.m4f_c00113{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);}
.m9c_c00113{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);}
.m103_c00113{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);}
.m67_c00113{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);}
.m60_c00113{transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);}
.m69_c00113{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);}
.m140_c00113{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);}
.m12e_c00113{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);}
.m10b_c00113{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);}
.m1d_c00113{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);}
.m8b_c00113{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);}
.mce_c00113{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);}
.m99_c00113{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);}
.m83_c00113{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);}
.m10e_c00113{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);}
.mdd_c00113{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);}
.m51_c00113{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);}
.mcb_c00113{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);}
.mf4_c00113{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);}
.m121_c00113{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);}
.m32_c00113{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);}
.mff_c00113{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);}
.m9b_c00113{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);}
.m13b_c00113{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);}
.mb6_c00113{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);}
.ma7_c00113{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{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);}
.m65_c00113{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);}
.mf1_c00113{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);}
.m134_c00113{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);}
.m126_c00113{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);}
.m4e_c00113{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);}
.m53_c00113{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);}
.m5a_c00113{transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);}
.m101_c00113{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);}
.m8c_c00113{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);}
.mfe_c00113{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);}
.m142_c00113{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);}
.m8f_c00113{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);}
.mbf_c00113{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);}
.m1b_c00113{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);}
.md2_c00113{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);}
.mdb_c00113{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);}
.m1c_c00113{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);}
.m138_c00113{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);}
.m36_c00113{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);}
.m115_c00113{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);}
.m1f_c00113{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);}
.m107_c00113{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);}
.mb9_c00113{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);}
.m6a_c00113{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);}
.ma4_c00113{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);}
.m68_c00113{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);}
.m30_c00113{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);}
.m123_c00113{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);}
.mfc_c00113{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);}
.m118_c00113{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);}
.m21_c00113{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);}
.m58_c00113{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);}
.m135_c00113{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);}
.maa_c00113{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);}
.m22_c00113{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);}
.m18_c00113{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);}
.m47_c00113{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);}
.mf9_c00113{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);}
.md7_c00113{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);}
.m116_c00113{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);}
.m3f_c00113{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);}
.meb_c00113{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);}
.m44_c00113{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);}
.m71_c00113{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);}
.m137_c00113{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);}
.m12d_c00113{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);}
.m13_c00113{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);}
.m70_c00113{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);}
.m8_c00113{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);}
.ma6_c00113{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);}
.mfd_c00113{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);}
.m40_c00113{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);}
.mf3_c00113{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);}
.m108_c00113{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);}
.m2b_c00113{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);}
.m55_c00113{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);}
.m153_c00113{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);}
.m57_c00113{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);}
.m3a_c00113{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);}
.maf_c00113{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);}
.m87_c00113{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);}
.ma1_c00113{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);}
.m9a_c00113{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.me9_c00113{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);}
.m148_c00113{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);}
.m56_c00113{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);}
.m100_c00113{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);}
.m42_c00113{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);}
.m25_c00113{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);}
.mbe_c00113{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);}
.m76_c00113{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);}
.mac_c00113{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);}
.m89_c00113{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);}
.m5c_c00113{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);}
.m24_c00113{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);}
.m8a_c00113{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);}
.m10c_c00113{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);}
.m48_c00113{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);}
.m91_c00113{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);}
.m136_c00113{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);}
.m12a_c00113{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);}
.m114_c00113{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);}
.m29_c00113{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);}
.m120_c00113{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m62_c00113{transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);}
.m6e_c00113{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);}
.mfb_c00113{transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);}
.m139_c00113{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);}
.m77_c00113{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00113{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);}
.m45_c00113{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);}
.m28_c00113{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);}
.m20_c00113{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);}
.m6f_c00113{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);}
.m14e_c00113{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);}
.m125_c00113{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);}
.m154_c00113{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);}
.mfa_c00113{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);}
.m1a_c00113{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);}
.m14a_c00113{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);}
.m4a_c00113{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);}
.m133_c00113{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);}
.m2e_c00113{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m127_c00113{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);}
.m94_c00113{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);}
.m14b_c00113{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);}
.m15_c00113{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);}
.mc9_c00113{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);}
.ma0_c00113{transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{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);}
.m10d_c00113{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);}
.m109_c00113{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.mef_c00113{transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233330,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{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);}
.m112_c00113{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);}
.m15f_c00113{transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);}
.m98_c00113{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m6d_c00113{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);}
.mb2_c00113{transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);}
.m147_c00113{transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);}
.m131_c00113{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);}
.md4_c00113{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);}
.m104_c00113{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);}
.m79_c00113{transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);}
.me_c00113{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);}
.m144_c00113{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);}
.mc1_c00113{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);}
.m5b_c00113{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);}
.m14d_c00113{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);}
.ma8_c00113{transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);}
.m3d_c00113{transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);}
.mf8_c00113{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);}
.mbd_c00113{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m13f_c00113{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.m102_c00113{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.m150_c00113{transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);}
.ma3_c00113{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);}
.m97_c00113{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{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);}
.m12f_c00113{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.md1_c00113{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m159_c00113{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.me4_c00113{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{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);}
.ma9_c00113{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);}
.m14c_c00113{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);}
.m132_c00113{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);}
.m9d_c00113{transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263755,0.000000,0.000000,0.250000,0,0);}
.m145_c00113{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);}
.m12b_c00113{transform:matrix(0.267225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267225,0.000000,0.000000,0.250000,0,0);}
.m156_c00113{transform:matrix(0.268370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268370,0.000000,0.000000,0.250000,0,0);}
.m128_c00113{transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269525,0.000000,0.000000,0.250000,0,0);}
.m15e_c00113{transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270740,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);}
.m157_c00113{transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);}
.m9e_c00113{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);}
.md0_c00113{transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);}
.m15c_c00113{transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);}
.m11d_c00113{transform:matrix(0.282220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282220,0.000000,0.000000,0.250000,0,0);}
.m75_c00113{transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287170,0.000000,0.000000,0.250000,0,0);}
.m11c_c00113{transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00113{transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);}
.m160_c00113{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);}
.m7f_c00113{transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00113{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00113{transform:matrix(0.334540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334540,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00113{transform:matrix(0.366880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366880,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.390600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390600,0.000000,0.000000,0.250000,0,0);}
.m149_c00113{transform:matrix(0.490630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490630,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.493660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493660,0.000000,0.000000,0.250000,0,0);}
.m15a_c00113{transform:matrix(0.574475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574475,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.596435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596435,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.631530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631530,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.738965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738965,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.770495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770495,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.813625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813625,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.937200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937200,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(1.087345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087345,0.000000,0.000000,0.250000,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;}
._0_c00113{width:76.076884px;}
.fc0_c00113{color:transparent;}
.fs0_c00113{font-size:22.050000px;}
.fs1_c00113{font-size:28.350000px;}
.fs3_c00113{font-size:31.500000px;}
.fs2_c00113{font-size:51.450000px;}
.fsf_c00113{font-size:54.600000px;}
.fs6_c00113{font-size:60.900000px;}
.fsb_c00113{font-size:61.950000px;}
.fs5_c00113{font-size:63.000000px;}
.fs9_c00113{font-size:65.100000px;}
.fsc_c00113{font-size:66.150000px;}
.fse_c00113{font-size:67.200000px;}
.fs8_c00113{font-size:68.250000px;}
.fsa_c00113{font-size:69.300000px;}
.fs7_c00113{font-size:70.350000px;}
.fsd_c00113{font-size:71.400000px;}
.fs4_c00113{font-size:100.800000px;}
.y0_c00113{bottom:0.000000px;}
.y27_c00113{bottom:143.908500px;}
.y26_c00113{bottom:167.152500px;}
.y25_c00113{bottom:190.459500px;}
.y24_c00113{bottom:213.165000px;}
.y23_c00113{bottom:235.795500px;}
.y22_c00113{bottom:258.994500px;}
.y21_c00113{bottom:281.707500px;}
.y20_c00113{bottom:304.387500px;}
.y1f_c00113{bottom:327.306000px;}
.y1e_c00113{bottom:350.019000px;}
.y1d_c00113{bottom:373.206000px;}
.y1c_c00113{bottom:396.123000px;}
.y1b_c00113{bottom:418.666500px;}
.y1a_c00113{bottom:442.618500px;}
.y19_c00113{bottom:464.437500px;}
.y18_c00113{bottom:487.381500px;}
.y17_c00113{bottom:509.791500px;}
.y16_c00113{bottom:532.888500px;}
.y15_c00113{bottom:555.390000px;}
.y14_c00113{bottom:578.371500px;}
.y13_c00113{bottom:601.258500px;}
.y12_c00113{bottom:624.478500px;}
.y11_c00113{bottom:646.887000px;}
.y10_c00113{bottom:669.297000px;}
.yf_c00113{bottom:692.040000px;}
.ye_c00113{bottom:715.197000px;}
.yd_c00113{bottom:738.147000px;}
.yc_c00113{bottom:760.797000px;}
.yb_c00113{bottom:783.714000px;}
.ya_c00113{bottom:806.128500px;}
.y9_c00113{bottom:829.140000px;}
.y8_c00113{bottom:879.075000px;}
.y7_c00113{bottom:911.589000px;}
.y6_c00113{bottom:911.742000px;}
.y5_c00113{bottom:911.947500px;}
.y4_c00113{bottom:916.650000px;}
.y3_c00113{bottom:937.710000px;}
.y2_c00113{bottom:945.000000px;}
.y1_c00113{bottom:966.330000px;}
.h2_c00113{height:22.050000px;}
.h3_c00113{height:28.350000px;}
.h5_c00113{height:31.500000px;}
.h4_c00113{height:51.450000px;}
.h11_c00113{height:54.600000px;}
.h8_c00113{height:60.900000px;}
.hd_c00113{height:61.950000px;}
.h7_c00113{height:63.000000px;}
.hb_c00113{height:65.100000px;}
.he_c00113{height:66.150000px;}
.h10_c00113{height:67.200000px;}
.ha_c00113{height:68.250000px;}
.hc_c00113{height:69.300000px;}
.h9_c00113{height:70.350000px;}
.hf_c00113{height:71.400000px;}
.h6_c00113{height:100.800000px;}
.h0_c00113{height:1008.450000px;}
.h1_c00113{height:1008.750000px;}
.w0_c00113{width:676.890000px;}
.w1_c00113{width:677.250000px;}
.x0_c00113{left:0.000000px;}
.x3_c00113{left:86.130000px;}
.xc_c00113{left:93.381000px;}
.xc1_c00113{left:129.330000px;}
.xb7_c00113{left:131.760000px;}
.xc7_c00113{left:135.270000px;}
.xbb_c00113{left:138.510000px;}
.x15_c00113{left:139.590000px;}
.x20_c00113{left:140.940000px;}
.x10_c00113{left:142.290000px;}
.x4_c00113{left:153.900000px;}
.x6b_c00113{left:158.490000px;}
.x2a_c00113{left:162.000000px;}
.x65_c00113{left:164.160000px;}
.x33_c00113{left:170.370000px;}
.x5c_c00113{left:172.800000px;}
.x9b_c00113{left:176.580000px;}
.xb1_c00113{left:178.200000px;}
.xaa_c00113{left:179.550000px;}
.x97_c00113{left:181.170000px;}
.x21_c00113{left:182.250000px;}
.x71_c00113{left:185.220000px;}
.x3b_c00113{left:191.160000px;}
.xbc_c00113{left:194.670000px;}
.x4c_c00113{left:195.750000px;}
.x5_c00113{left:197.100000px;}
.x16_c00113{left:199.800000px;}
.xab_c00113{left:201.960000px;}
.x72_c00113{left:204.120000px;}
.xa1_c00113{left:206.280000px;}
.x93_c00113{left:208.170000px;}
.xb2_c00113{left:212.490000px;}
.x44_c00113{left:216.270000px;}
.x88_c00113{left:218.700000px;}
.x7c_c00113{left:220.590000px;}
.x11_c00113{left:223.020000px;}
.xa7_c00113{left:224.370000px;}
.x22_c00113{left:226.800000px;}
.x34_c00113{left:227.880000px;}
.x5d_c00113{left:229.230000px;}
.x2b_c00113{left:232.740000px;}
.x3c_c00113{left:236.520000px;}
.x8d_c00113{left:238.140000px;}
.xb8_c00113{left:240.300000px;}
.x89_c00113{left:241.650000px;}
.xa8_c00113{left:244.890000px;}
.xc2_c00113{left:246.510000px;}
.x66_c00113{left:248.940000px;}
.x2c_c00113{left:252.990000px;}
.x12_c00113{left:255.690000px;}
.x3d_c00113{left:258.660000px;}
.x80_c00113{left:260.820000px;}
.x6c_c00113{left:263.250000px;}
.x5e_c00113{left:265.140000px;}
.x17_c00113{left:266.760000px;}
.xc3_c00113{left:267.840000px;}
.x92_c00113{left:269.460000px;}
.x23_c00113{left:270.810000px;}
.x73_c00113{left:272.160000px;}
.x8e_c00113{left:273.240000px;}
.x4d_c00113{left:276.750000px;}
.x54_c00113{left:279.180000px;}
.x67_c00113{left:281.340000px;}
.xbd_c00113{left:285.390000px;}
.x45_c00113{left:287.010000px;}
.x4e_c00113{left:289.170000px;}
.xb3_c00113{left:290.520000px;}
.x94_c00113{left:291.870000px;}
.x81_c00113{left:292.950000px;}
.x35_c00113{left:294.570000px;}
.xc8_c00113{left:297.810000px;}
.x9c_c00113{left:299.430000px;}
.x7d_c00113{left:301.590000px;}
.xc4_c00113{left:302.940000px;}
.x6d_c00113{left:304.290000px;}
.x74_c00113{left:305.640000px;}
.xac_c00113{left:306.720000px;}
.x13_c00113{left:307.800000px;}
.x56_c00113{left:312.390000px;}
.x5f_c00113{left:313.470000px;}
.x82_c00113{left:315.630000px;}
.x36_c00113{left:317.250000px;}
.x2d_c00113{left:321.840000px;}
.xc5_c00113{left:326.430000px;}
.x3e_c00113{left:327.510000px;}
.x75_c00113{left:332.640000px;}
.x9d_c00113{left:333.990000px;}
.x46_c00113{left:335.340000px;}
.xad_c00113{left:336.420000px;}
.x2e_c00113{left:337.770000px;}
.x7e_c00113{left:338.850000px;}
.x24_c00113{left:342.630000px;}
.xb9_c00113{left:343.710000px;}
.x6_c00113{left:344.790000px;}
.xa2_c00113{left:348.300000px;}
.x8f_c00113{left:349.650000px;}
.x18_c00113{left:351.000000px;}
.x8a_c00113{left:352.890000px;}
.xc9_c00113{left:354.780000px;}
.x57_c00113{left:355.860000px;}
.x68_c00113{left:358.560000px;}
.xa4_c00113{left:360.180000px;}
.x9e_c00113{left:361.260000px;}
.x60_c00113{left:362.340000px;}
.xae_c00113{left:367.200000px;}
.x19_c00113{left:369.900000px;}
.xba_c00113{left:372.330000px;}
.x14_c00113{left:373.950000px;}
.x83_c00113{left:376.650000px;}
.x47_c00113{left:379.080000px;}
.x37_c00113{left:380.430000px;}
.x95_c00113{left:383.400000px;}
.x4f_c00113{left:384.750000px;}
.x61_c00113{left:386.100000px;}
.x55_c00113{left:387.180000px;}
.xb4_c00113{left:390.690000px;}
.x76_c00113{left:392.310000px;}
.x58_c00113{left:393.390000px;}
.xaf_c00113{left:395.010000px;}
.x7_c00113{left:397.440000px;}
.x9_c00113{left:401.490000px;}
.x69_c00113{left:402.570000px;}
.x2f_c00113{left:404.730000px;}
.x8_c00113{left:409.860000px;}
.x1a_c00113{left:414.720000px;}
.x1_c00113{left:416.880000px;}
.x25_c00113{left:418.500000px;}
.x98_c00113{left:420.390000px;}
.xbe_c00113{left:422.280000px;}
.x7f_c00113{left:423.900000px;}
.xb5_c00113{left:424.980000px;}
.x6e_c00113{left:427.410000px;}
.x84_c00113{left:429.840000px;}
.x3f_c00113{left:432.540000px;}
.x50_c00113{left:436.320000px;}
.x1b_c00113{left:441.720000px;}
.x99_c00113{left:446.040000px;}
.x30_c00113{left:450.630000px;}
.x77_c00113{left:453.600000px;}
.x9f_c00113{left:456.300000px;}
.xb6_c00113{left:458.190000px;}
.x38_c00113{left:459.810000px;}
.x26_c00113{left:460.890000px;}
.xa5_c00113{left:462.240000px;}
.xbf_c00113{left:463.320000px;}
.x90_c00113{left:468.180000px;}
.x62_c00113{left:471.150000px;}
.x48_c00113{left:473.040000px;}
.x78_c00113{left:474.120000px;}
.xa3_c00113{left:481.140000px;}
.x51_c00113{left:484.110000px;}
.x1c_c00113{left:486.540000px;}
.x39_c00113{left:487.620000px;}
.x59_c00113{left:489.780000px;}
.x85_c00113{left:491.400000px;}
.x40_c00113{left:492.750000px;}
.x79_c00113{left:495.990000px;}
.x6f_c00113{left:498.150000px;}
.xa6_c00113{left:502.470000px;}
.x31_c00113{left:505.980000px;}
.x41_c00113{left:508.950000px;}
.x86_c00113{left:511.380000px;}
.x1d_c00113{left:514.350000px;}
.x49_c00113{left:518.670000px;}
.x6a_c00113{left:521.370000px;}
.x9a_c00113{left:525.420000px;}
.xa_c00113{left:528.120000px;}
.x5a_c00113{left:530.280000px;}
.xb0_c00113{left:532.170000px;}
.x8b_c00113{left:533.520000px;}
.x27_c00113{left:535.140000px;}
.x96_c00113{left:537.570000px;}
.x70_c00113{left:539.460000px;}
.x7a_c00113{left:541.890000px;}
.x91_c00113{left:546.480000px;}
.x63_c00113{left:551.340000px;}
.x28_c00113{left:555.120000px;}
.x3a_c00113{left:557.280000px;}
.x1e_c00113{left:558.360000px;}
.x52_c00113{left:559.980000px;}
.xa9_c00113{left:561.060000px;}
.x32_c00113{left:564.030000px;}
.x42_c00113{left:569.430000px;}
.x7b_c00113{left:571.860000px;}
.x8c_c00113{left:574.020000px;}
.x4a_c00113{left:575.100000px;}
.xb_c00113{left:580.230000px;}
.xc0_c00113{left:582.390000px;}
.x2_c00113{left:584.010000px;}
.xa0_c00113{left:586.170000px;}
.x43_c00113{left:587.520000px;}
.x53_c00113{left:589.680000px;}
.xc6_c00113{left:591.300000px;}
.x5b_c00113{left:592.650000px;}
.x64_c00113{left:594.270000px;}
.x4b_c00113{left:601.830000px;}
.x1f_c00113{left:603.180000px;}
.x29_c00113{left:605.610000px;}
.x87_c00113{left:609.390000px;}
.xd_c00113{left:615.868500px;}
.xcb_c00113{left:635.040000px;}
.xca_c00113{left:637.740000px;}
.xe_c00113{left:638.754000px;}
.xf_c00113{left:655.758000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
._0_c00113{width:67.623897pt;}
.fs0_c00113{font-size:19.600000pt;}
.fs1_c00113{font-size:25.200000pt;}
.fs3_c00113{font-size:28.000000pt;}
.fs2_c00113{font-size:45.733333pt;}
.fsf_c00113{font-size:48.533333pt;}
.fs6_c00113{font-size:54.133333pt;}
.fsb_c00113{font-size:55.066667pt;}
.fs5_c00113{font-size:56.000000pt;}
.fs9_c00113{font-size:57.866667pt;}
.fsc_c00113{font-size:58.800000pt;}
.fse_c00113{font-size:59.733333pt;}
.fs8_c00113{font-size:60.666667pt;}
.fsa_c00113{font-size:61.600000pt;}
.fs7_c00113{font-size:62.533333pt;}
.fsd_c00113{font-size:63.466667pt;}
.fs4_c00113{font-size:89.600000pt;}
.y0_c00113{bottom:0.000000pt;}
.y27_c00113{bottom:127.918667pt;}
.y26_c00113{bottom:148.580000pt;}
.y25_c00113{bottom:169.297333pt;}
.y24_c00113{bottom:189.480000pt;}
.y23_c00113{bottom:209.596000pt;}
.y22_c00113{bottom:230.217333pt;}
.y21_c00113{bottom:250.406667pt;}
.y20_c00113{bottom:270.566667pt;}
.y1f_c00113{bottom:290.938667pt;}
.y1e_c00113{bottom:311.128000pt;}
.y1d_c00113{bottom:331.738667pt;}
.y1c_c00113{bottom:352.109333pt;}
.y1b_c00113{bottom:372.148000pt;}
.y1a_c00113{bottom:393.438667pt;}
.y19_c00113{bottom:412.833333pt;}
.y18_c00113{bottom:433.228000pt;}
.y17_c00113{bottom:453.148000pt;}
.y16_c00113{bottom:473.678667pt;}
.y15_c00113{bottom:493.680000pt;}
.y14_c00113{bottom:514.108000pt;}
.y13_c00113{bottom:534.452000pt;}
.y12_c00113{bottom:555.092000pt;}
.y11_c00113{bottom:575.010667pt;}
.y10_c00113{bottom:594.930667pt;}
.yf_c00113{bottom:615.146667pt;}
.ye_c00113{bottom:635.730667pt;}
.yd_c00113{bottom:656.130667pt;}
.yc_c00113{bottom:676.264000pt;}
.yb_c00113{bottom:696.634667pt;}
.ya_c00113{bottom:716.558667pt;}
.y9_c00113{bottom:737.013333pt;}
.y8_c00113{bottom:781.400000pt;}
.y7_c00113{bottom:810.301333pt;}
.y6_c00113{bottom:810.437333pt;}
.y5_c00113{bottom:810.620000pt;}
.y4_c00113{bottom:814.800000pt;}
.y3_c00113{bottom:833.520000pt;}
.y2_c00113{bottom:840.000000pt;}
.y1_c00113{bottom:858.960000pt;}
.h2_c00113{height:19.600000pt;}
.h3_c00113{height:25.200000pt;}
.h5_c00113{height:28.000000pt;}
.h4_c00113{height:45.733333pt;}
.h11_c00113{height:48.533333pt;}
.h8_c00113{height:54.133333pt;}
.hd_c00113{height:55.066667pt;}
.h7_c00113{height:56.000000pt;}
.hb_c00113{height:57.866667pt;}
.he_c00113{height:58.800000pt;}
.h10_c00113{height:59.733333pt;}
.ha_c00113{height:60.666667pt;}
.hc_c00113{height:61.600000pt;}
.h9_c00113{height:62.533333pt;}
.hf_c00113{height:63.466667pt;}
.h6_c00113{height:89.600000pt;}
.h0_c00113{height:896.400000pt;}
.h1_c00113{height:896.666667pt;}
.w0_c00113{width:601.680000pt;}
.w1_c00113{width:602.000000pt;}
.x0_c00113{left:0.000000pt;}
.x3_c00113{left:76.560000pt;}
.xc_c00113{left:83.005333pt;}
.xc1_c00113{left:114.960000pt;}
.xb7_c00113{left:117.120000pt;}
.xc7_c00113{left:120.240000pt;}
.xbb_c00113{left:123.120000pt;}
.x15_c00113{left:124.080000pt;}
.x20_c00113{left:125.280000pt;}
.x10_c00113{left:126.480000pt;}
.x4_c00113{left:136.800000pt;}
.x6b_c00113{left:140.880000pt;}
.x2a_c00113{left:144.000000pt;}
.x65_c00113{left:145.920000pt;}
.x33_c00113{left:151.440000pt;}
.x5c_c00113{left:153.600000pt;}
.x9b_c00113{left:156.960000pt;}
.xb1_c00113{left:158.400000pt;}
.xaa_c00113{left:159.600000pt;}
.x97_c00113{left:161.040000pt;}
.x21_c00113{left:162.000000pt;}
.x71_c00113{left:164.640000pt;}
.x3b_c00113{left:169.920000pt;}
.xbc_c00113{left:173.040000pt;}
.x4c_c00113{left:174.000000pt;}
.x5_c00113{left:175.200000pt;}
.x16_c00113{left:177.600000pt;}
.xab_c00113{left:179.520000pt;}
.x72_c00113{left:181.440000pt;}
.xa1_c00113{left:183.360000pt;}
.x93_c00113{left:185.040000pt;}
.xb2_c00113{left:188.880000pt;}
.x44_c00113{left:192.240000pt;}
.x88_c00113{left:194.400000pt;}
.x7c_c00113{left:196.080000pt;}
.x11_c00113{left:198.240000pt;}
.xa7_c00113{left:199.440000pt;}
.x22_c00113{left:201.600000pt;}
.x34_c00113{left:202.560000pt;}
.x5d_c00113{left:203.760000pt;}
.x2b_c00113{left:206.880000pt;}
.x3c_c00113{left:210.240000pt;}
.x8d_c00113{left:211.680000pt;}
.xb8_c00113{left:213.600000pt;}
.x89_c00113{left:214.800000pt;}
.xa8_c00113{left:217.680000pt;}
.xc2_c00113{left:219.120000pt;}
.x66_c00113{left:221.280000pt;}
.x2c_c00113{left:224.880000pt;}
.x12_c00113{left:227.280000pt;}
.x3d_c00113{left:229.920000pt;}
.x80_c00113{left:231.840000pt;}
.x6c_c00113{left:234.000000pt;}
.x5e_c00113{left:235.680000pt;}
.x17_c00113{left:237.120000pt;}
.xc3_c00113{left:238.080000pt;}
.x92_c00113{left:239.520000pt;}
.x23_c00113{left:240.720000pt;}
.x73_c00113{left:241.920000pt;}
.x8e_c00113{left:242.880000pt;}
.x4d_c00113{left:246.000000pt;}
.x54_c00113{left:248.160000pt;}
.x67_c00113{left:250.080000pt;}
.xbd_c00113{left:253.680000pt;}
.x45_c00113{left:255.120000pt;}
.x4e_c00113{left:257.040000pt;}
.xb3_c00113{left:258.240000pt;}
.x94_c00113{left:259.440000pt;}
.x81_c00113{left:260.400000pt;}
.x35_c00113{left:261.840000pt;}
.xc8_c00113{left:264.720000pt;}
.x9c_c00113{left:266.160000pt;}
.x7d_c00113{left:268.080000pt;}
.xc4_c00113{left:269.280000pt;}
.x6d_c00113{left:270.480000pt;}
.x74_c00113{left:271.680000pt;}
.xac_c00113{left:272.640000pt;}
.x13_c00113{left:273.600000pt;}
.x56_c00113{left:277.680000pt;}
.x5f_c00113{left:278.640000pt;}
.x82_c00113{left:280.560000pt;}
.x36_c00113{left:282.000000pt;}
.x2d_c00113{left:286.080000pt;}
.xc5_c00113{left:290.160000pt;}
.x3e_c00113{left:291.120000pt;}
.x75_c00113{left:295.680000pt;}
.x9d_c00113{left:296.880000pt;}
.x46_c00113{left:298.080000pt;}
.xad_c00113{left:299.040000pt;}
.x2e_c00113{left:300.240000pt;}
.x7e_c00113{left:301.200000pt;}
.x24_c00113{left:304.560000pt;}
.xb9_c00113{left:305.520000pt;}
.x6_c00113{left:306.480000pt;}
.xa2_c00113{left:309.600000pt;}
.x8f_c00113{left:310.800000pt;}
.x18_c00113{left:312.000000pt;}
.x8a_c00113{left:313.680000pt;}
.xc9_c00113{left:315.360000pt;}
.x57_c00113{left:316.320000pt;}
.x68_c00113{left:318.720000pt;}
.xa4_c00113{left:320.160000pt;}
.x9e_c00113{left:321.120000pt;}
.x60_c00113{left:322.080000pt;}
.xae_c00113{left:326.400000pt;}
.x19_c00113{left:328.800000pt;}
.xba_c00113{left:330.960000pt;}
.x14_c00113{left:332.400000pt;}
.x83_c00113{left:334.800000pt;}
.x47_c00113{left:336.960000pt;}
.x37_c00113{left:338.160000pt;}
.x95_c00113{left:340.800000pt;}
.x4f_c00113{left:342.000000pt;}
.x61_c00113{left:343.200000pt;}
.x55_c00113{left:344.160000pt;}
.xb4_c00113{left:347.280000pt;}
.x76_c00113{left:348.720000pt;}
.x58_c00113{left:349.680000pt;}
.xaf_c00113{left:351.120000pt;}
.x7_c00113{left:353.280000pt;}
.x9_c00113{left:356.880000pt;}
.x69_c00113{left:357.840000pt;}
.x2f_c00113{left:359.760000pt;}
.x8_c00113{left:364.320000pt;}
.x1a_c00113{left:368.640000pt;}
.x1_c00113{left:370.560000pt;}
.x25_c00113{left:372.000000pt;}
.x98_c00113{left:373.680000pt;}
.xbe_c00113{left:375.360000pt;}
.x7f_c00113{left:376.800000pt;}
.xb5_c00113{left:377.760000pt;}
.x6e_c00113{left:379.920000pt;}
.x84_c00113{left:382.080000pt;}
.x3f_c00113{left:384.480000pt;}
.x50_c00113{left:387.840000pt;}
.x1b_c00113{left:392.640000pt;}
.x99_c00113{left:396.480000pt;}
.x30_c00113{left:400.560000pt;}
.x77_c00113{left:403.200000pt;}
.x9f_c00113{left:405.600000pt;}
.xb6_c00113{left:407.280000pt;}
.x38_c00113{left:408.720000pt;}
.x26_c00113{left:409.680000pt;}
.xa5_c00113{left:410.880000pt;}
.xbf_c00113{left:411.840000pt;}
.x90_c00113{left:416.160000pt;}
.x62_c00113{left:418.800000pt;}
.x48_c00113{left:420.480000pt;}
.x78_c00113{left:421.440000pt;}
.xa3_c00113{left:427.680000pt;}
.x51_c00113{left:430.320000pt;}
.x1c_c00113{left:432.480000pt;}
.x39_c00113{left:433.440000pt;}
.x59_c00113{left:435.360000pt;}
.x85_c00113{left:436.800000pt;}
.x40_c00113{left:438.000000pt;}
.x79_c00113{left:440.880000pt;}
.x6f_c00113{left:442.800000pt;}
.xa6_c00113{left:446.640000pt;}
.x31_c00113{left:449.760000pt;}
.x41_c00113{left:452.400000pt;}
.x86_c00113{left:454.560000pt;}
.x1d_c00113{left:457.200000pt;}
.x49_c00113{left:461.040000pt;}
.x6a_c00113{left:463.440000pt;}
.x9a_c00113{left:467.040000pt;}
.xa_c00113{left:469.440000pt;}
.x5a_c00113{left:471.360000pt;}
.xb0_c00113{left:473.040000pt;}
.x8b_c00113{left:474.240000pt;}
.x27_c00113{left:475.680000pt;}
.x96_c00113{left:477.840000pt;}
.x70_c00113{left:479.520000pt;}
.x7a_c00113{left:481.680000pt;}
.x91_c00113{left:485.760000pt;}
.x63_c00113{left:490.080000pt;}
.x28_c00113{left:493.440000pt;}
.x3a_c00113{left:495.360000pt;}
.x1e_c00113{left:496.320000pt;}
.x52_c00113{left:497.760000pt;}
.xa9_c00113{left:498.720000pt;}
.x32_c00113{left:501.360000pt;}
.x42_c00113{left:506.160000pt;}
.x7b_c00113{left:508.320000pt;}
.x8c_c00113{left:510.240000pt;}
.x4a_c00113{left:511.200000pt;}
.xb_c00113{left:515.760000pt;}
.xc0_c00113{left:517.680000pt;}
.x2_c00113{left:519.120000pt;}
.xa0_c00113{left:521.040000pt;}
.x43_c00113{left:522.240000pt;}
.x53_c00113{left:524.160000pt;}
.xc6_c00113{left:525.600000pt;}
.x5b_c00113{left:526.800000pt;}
.x64_c00113{left:528.240000pt;}
.x4b_c00113{left:534.960000pt;}
.x1f_c00113{left:536.160000pt;}
.x29_c00113{left:538.320000pt;}
.x87_c00113{left:541.680000pt;}
.xd_c00113{left:547.438667pt;}
.xcb_c00113{left:564.480000pt;}
.xca_c00113{left:566.880000pt;}
.xe_c00113{left:567.781333pt;}
.xf_c00113{left:582.896000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m115_c00114{transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);}
.mb7_c00114{transform:matrix(0.016263,0.000260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016263,0.000260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016263,0.000260,-0.003999,0.249968,0,0);}
.mba_c00114{transform:matrix(0.032521,0.000520,-0.003999,0.249968,0,0);-ms-transform:matrix(0.032521,0.000520,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.032521,0.000520,-0.003999,0.249968,0,0);}
.m5f_c00114{transform:matrix(0.098606,0.000887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.098606,0.000887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.098606,0.000887,-0.002250,0.249990,0,0);}
.m173_c00114{transform:matrix(0.100345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100345,0.000000,0.000000,0.250000,0,0);}
.m16d_c00114{transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);}
.m16e_c00114{transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);}
.m16f_c00114{transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);}
.ma3_c00114{transform:matrix(0.112765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112765,0.000000,0.000000,0.250000,0,0);}
.maf_c00114{transform:matrix(0.140037,0.002241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.140037,0.002241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.140037,0.002241,-0.003999,0.249968,0,0);}
.mc8_c00114{transform:matrix(0.140627,0.002250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.140627,0.002250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.140627,0.002250,-0.003999,0.249968,0,0);}
.m5a_c00114{transform:matrix(0.144044,0.001296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144044,0.001296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144044,0.001296,-0.002250,0.249990,0,0);}
.m3e_c00114{transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);}
.m5e_c00114{transform:matrix(0.145004,0.001305,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145004,0.001305,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145004,0.001305,-0.002250,0.249990,0,0);}
.m8c_c00114{transform:matrix(0.145089,0.001306,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145089,0.001306,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145089,0.001306,-0.002250,0.249990,0,0);}
.ma8_c00114{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);}
.m59_c00114{transform:matrix(0.145449,0.001309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145449,0.001309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145449,0.001309,-0.002250,0.249990,0,0);}
.mef_c00114{transform:matrix(0.145529,0.002183,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145529,0.002183,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145529,0.002183,-0.003750,0.249972,0,0);}
.m97_c00114{transform:matrix(0.145589,0.001310,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145589,0.001310,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145589,0.001310,-0.002250,0.249990,0,0);}
.m111_c00114{transform:matrix(0.146688,0.002200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.146688,0.002200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.146688,0.002200,-0.003750,0.249972,0,0);}
.m2a_c00114{transform:matrix(0.146864,0.001322,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146864,0.001322,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146864,0.001322,-0.002250,0.249990,0,0);}
.m9b_c00114{transform:matrix(0.147244,0.001325,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147244,0.001325,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147244,0.001325,-0.002250,0.249990,0,0);}
.mca_c00114{transform:matrix(0.147726,0.002364,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147726,0.002364,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147726,0.002364,-0.003999,0.249968,0,0);}
.me4_c00114{transform:matrix(0.148318,0.002225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148318,0.002225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148318,0.002225,-0.003750,0.249972,0,0);}
.m16c_c00114{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);}
.m20_c00114{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);}
.m6a_c00114{transform:matrix(0.151744,0.001366,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151744,0.001366,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151744,0.001366,-0.002250,0.249990,0,0);}
.m4f_c00114{transform:matrix(0.152164,0.001369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152164,0.001369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152164,0.001369,-0.002250,0.249990,0,0);}
.md3_c00114{transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);}
.mbd_c00114{transform:matrix(0.152890,0.002446,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152890,0.002446,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152890,0.002446,-0.003999,0.249968,0,0);}
.m10_c00114{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.md2_c00114{transform:matrix(0.154613,0.002319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154613,0.002319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154613,0.002319,-0.003750,0.249972,0,0);}
.m4_c00114{transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.155689,0.001401,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155689,0.001401,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155689,0.001401,-0.002250,0.249990,0,0);}
.m6d_c00114{transform:matrix(0.156324,0.001407,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156324,0.001407,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156324,0.001407,-0.002250,0.249990,0,0);}
.mb_c00114{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);}
.m41_c00114{transform:matrix(0.156934,0.001412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156934,0.001412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156934,0.001412,-0.002250,0.249990,0,0);}
.mdd_c00114{transform:matrix(0.157077,0.002356,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157077,0.002356,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157077,0.002356,-0.003750,0.249972,0,0);}
.m50_c00114{transform:matrix(0.157584,0.001418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157584,0.001418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157584,0.001418,-0.002250,0.249990,0,0);}
.me2_c00114{transform:matrix(0.157642,0.002365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157642,0.002365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157642,0.002365,-0.003750,0.249972,0,0);}
.m70_c00114{transform:matrix(0.157659,0.001419,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157659,0.001419,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157659,0.001419,-0.002250,0.249990,0,0);}
.m22_c00114{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);}
.m79_c00114{transform:matrix(0.157964,0.001422,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157964,0.001422,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157964,0.001422,-0.002250,0.249990,0,0);}
.m19_c00114{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.mad_c00114{transform:matrix(0.159025,0.002544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159025,0.002544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159025,0.002544,-0.003999,0.249968,0,0);}
.md_c00114{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_c00114{transform:matrix(0.159574,0.001436,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159574,0.001436,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159574,0.001436,-0.002250,0.249990,0,0);}
.m150_c00114{transform:matrix(0.160217,0.002403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160217,0.002403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160217,0.002403,-0.003750,0.249972,0,0);}
.m10b_c00114{transform:matrix(0.160322,0.002405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160322,0.002405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160322,0.002405,-0.003750,0.249972,0,0);}
.mfc_c00114{transform:matrix(0.160672,0.002410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160672,0.002410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160672,0.002410,-0.003750,0.249972,0,0);}
.m27_c00114{transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);}
.m12e_c00114{transform:matrix(0.160802,0.002412,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160802,0.002412,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160802,0.002412,-0.003750,0.249972,0,0);}
.m47_c00114{transform:matrix(0.161403,0.001453,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161403,0.001453,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161403,0.001453,-0.002250,0.249990,0,0);}
.me1_c00114{transform:matrix(0.161952,0.002429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161952,0.002429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161952,0.002429,-0.003750,0.249972,0,0);}
.m3_c00114{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);}
.mc9_c00114{transform:matrix(0.162599,0.002602,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162599,0.002602,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162599,0.002602,-0.003999,0.249968,0,0);}
.m78_c00114{transform:matrix(0.162663,0.001464,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162663,0.001464,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162663,0.001464,-0.002250,0.249990,0,0);}
.m14e_c00114{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);}
.m86_c00114{transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);}
.m5c_c00114{transform:matrix(0.163223,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163223,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163223,0.001469,-0.002250,0.249990,0,0);}
.m9a_c00114{transform:matrix(0.163463,0.001471,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163463,0.001471,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163463,0.001471,-0.002250,0.249990,0,0);}
.m15b_c00114{transform:matrix(0.164252,0.002464,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164252,0.002464,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164252,0.002464,-0.003750,0.249972,0,0);}
.m46_c00114{transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);}
.m3d_c00114{transform:matrix(0.164633,0.001482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164633,0.001482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164633,0.001482,-0.002250,0.249990,0,0);}
.m12c_c00114{transform:matrix(0.164976,0.002475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164976,0.002475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164976,0.002475,-0.003750,0.249972,0,0);}
.m10d_c00114{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);}
.m17_c00114{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);}
.m167_c00114{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);}
.m6b_c00114{transform:matrix(0.166548,0.001499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166548,0.001499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166548,0.001499,-0.002250,0.249990,0,0);}
.m49_c00114{transform:matrix(0.167233,0.001505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167233,0.001505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167233,0.001505,-0.002250,0.249990,0,0);}
.m13_c00114{transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);}
.m12b_c00114{transform:matrix(0.167451,0.002512,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167451,0.002512,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167451,0.002512,-0.003750,0.249972,0,0);}
.mae_c00114{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);}
.mab_c00114{transform:matrix(0.167794,0.002685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167794,0.002685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167794,0.002685,-0.003999,0.249968,0,0);}
.m66_c00114{transform:matrix(0.168533,0.001517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168533,0.001517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168533,0.001517,-0.002250,0.249990,0,0);}
.m9c_c00114{transform:matrix(0.169168,0.001523,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169168,0.001523,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169168,0.001523,-0.002250,0.249990,0,0);}
.m56_c00114{transform:matrix(0.169203,0.001523,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169203,0.001523,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169203,0.001523,-0.002250,0.249990,0,0);}
.m106_c00114{transform:matrix(0.169316,0.002540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169316,0.002540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169316,0.002540,-0.003750,0.249972,0,0);}
.m113_c00114{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);}
.m71_c00114{transform:matrix(0.169983,0.001530,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169983,0.001530,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169983,0.001530,-0.002250,0.249990,0,0);}
.m10e_c00114{transform:matrix(0.170106,0.002552,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170106,0.002552,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170106,0.002552,-0.003750,0.249972,0,0);}
.m10a_c00114{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);}
.mc4_c00114{transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);}
.m2c_c00114{transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);}
.m5d_c00114{transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);}
.m143_c00114{transform:matrix(0.170661,0.002560,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170661,0.002560,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170661,0.002560,-0.003750,0.249972,0,0);}
.m109_c00114{transform:matrix(0.170961,0.002564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170961,0.002564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170961,0.002564,-0.003750,0.249972,0,0);}
.mc3_c00114{transform:matrix(0.171093,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171093,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171093,0.002737,-0.003999,0.249968,0,0);}
.m11d_c00114{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);}
.m14f_c00114{transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171271,0.002569,-0.003750,0.249972,0,0);}
.m151_c00114{transform:matrix(0.171281,0.002569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171281,0.002569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171281,0.002569,-0.003750,0.249972,0,0);}
.md0_c00114{transform:matrix(0.172036,0.002581,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172036,0.002581,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172036,0.002581,-0.003750,0.249972,0,0);}
.mac_c00114{transform:matrix(0.172193,0.002755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172193,0.002755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172193,0.002755,-0.003999,0.249968,0,0);}
.m123_c00114{transform:matrix(0.172341,0.002585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172341,0.002585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172341,0.002585,-0.003750,0.249972,0,0);}
.m2e_c00114{transform:matrix(0.172788,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172788,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172788,0.001555,-0.002250,0.249990,0,0);}
.m145_c00114{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);}
.mf1_c00114{transform:matrix(0.173001,0.002595,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173001,0.002595,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173001,0.002595,-0.003750,0.249972,0,0);}
.m7b_c00114{transform:matrix(0.173128,0.001558,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173128,0.001558,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173128,0.001558,-0.002250,0.249990,0,0);}
.m3a_c00114{transform:matrix(0.173308,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173308,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173308,0.001560,-0.002250,0.249990,0,0);}
.mda_c00114{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);}
.m5b_c00114{transform:matrix(0.173543,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173543,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173543,0.001562,-0.002250,0.249990,0,0);}
.m37_c00114{transform:matrix(0.173713,0.001563,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173713,0.001563,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173713,0.001563,-0.002250,0.249990,0,0);}
.m165_c00114{transform:matrix(0.173825,0.002607,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173825,0.002607,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173825,0.002607,-0.003750,0.249972,0,0);}
.m15f_c00114{transform:matrix(0.173850,0.002608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173850,0.002608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173850,0.002608,-0.003750,0.249972,0,0);}
.m53_c00114{transform:matrix(0.173888,0.001565,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173888,0.001565,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173888,0.001565,-0.002250,0.249990,0,0);}
.m8d_c00114{transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);}
.mc5_c00114{transform:matrix(0.174073,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174073,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174073,0.002785,-0.003999,0.249968,0,0);}
.m4b_c00114{transform:matrix(0.174088,0.001567,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174088,0.001567,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174088,0.001567,-0.002250,0.249990,0,0);}
.m15a_c00114{transform:matrix(0.174440,0.002617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174440,0.002617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174440,0.002617,-0.003750,0.249972,0,0);}
.m31_c00114{transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);}
.m138_c00114{transform:matrix(0.174855,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174855,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174855,0.002623,-0.003750,0.249972,0,0);}
.m94_c00114{transform:matrix(0.175068,0.001576,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175068,0.001576,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175068,0.001576,-0.002250,0.249990,0,0);}
.m6f_c00114{transform:matrix(0.175458,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175458,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175458,0.001579,-0.002250,0.249990,0,0);}
.m127_c00114{transform:matrix(0.175470,0.002632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175470,0.002632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175470,0.002632,-0.003750,0.249972,0,0);}
.m84_c00114{transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);}
.m39_c00114{transform:matrix(0.176943,0.001592,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176943,0.001592,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176943,0.001592,-0.002250,0.249990,0,0);}
.m90_c00114{transform:matrix(0.177078,0.001594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177078,0.001594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177078,0.001594,-0.002250,0.249990,0,0);}
.m68_c00114{transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);}
.mff_c00114{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);}
.ma1_c00114{transform:matrix(0.177238,0.001595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177238,0.001595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177238,0.001595,-0.002250,0.249990,0,0);}
.m141_c00114{transform:matrix(0.177675,0.002665,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177675,0.002665,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177675,0.002665,-0.003750,0.249972,0,0);}
.m114_c00114{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);}
.m34_c00114{transform:matrix(0.177933,0.001601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177933,0.001601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177933,0.001601,-0.002250,0.249990,0,0);}
.m9e_c00114{transform:matrix(0.178053,0.001602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178053,0.001602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178053,0.001602,-0.002250,0.249990,0,0);}
.md1_c00114{transform:matrix(0.178600,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178600,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178600,0.002679,-0.003750,0.249972,0,0);}
.m25_c00114{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);}
.m62_c00114{transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);}
.m119_c00114{transform:matrix(0.178940,0.002684,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178940,0.002684,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178940,0.002684,-0.003750,0.249972,0,0);}
.m7c_c00114{transform:matrix(0.179103,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179103,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179103,0.001612,-0.002250,0.249990,0,0);}
.m40_c00114{transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);}
.m155_c00114{transform:matrix(0.179170,0.002688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179170,0.002688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179170,0.002688,-0.003750,0.249972,0,0);}
.m77_c00114{transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);}
.m158_c00114{transform:matrix(0.179375,0.002691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179375,0.002691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179375,0.002691,-0.003750,0.249972,0,0);}
.m2_c00114{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);}
.mfe_c00114{transform:matrix(0.179765,0.002696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179765,0.002696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179765,0.002696,-0.003750,0.249972,0,0);}
.m10c_c00114{transform:matrix(0.180055,0.002701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180055,0.002701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180055,0.002701,-0.003750,0.249972,0,0);}
.m154_c00114{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);}
.m157_c00114{transform:matrix(0.180405,0.002706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180405,0.002706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180405,0.002706,-0.003750,0.249972,0,0);}
.ma5_c00114{transform:matrix(0.180717,0.002891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180717,0.002891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180717,0.002891,-0.003999,0.249968,0,0);}
.me3_c00114{transform:matrix(0.181345,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181345,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181345,0.002720,-0.003750,0.249972,0,0);}
.m72_c00114{transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);}
.m142_c00114{transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);}
.m4c_c00114{transform:matrix(0.181963,0.001638,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181963,0.001638,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181963,0.001638,-0.002250,0.249990,0,0);}
.m9d_c00114{transform:matrix(0.182228,0.001640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182228,0.001640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182228,0.001640,-0.002250,0.249990,0,0);}
.mc7_c00114{transform:matrix(0.182577,0.002921,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182577,0.002921,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182577,0.002921,-0.003999,0.249968,0,0);}
.m75_c00114{transform:matrix(0.182933,0.001646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182933,0.001646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182933,0.001646,-0.002250,0.249990,0,0);}
.m15c_c00114{transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);}
.m24_c00114{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);}
.mdf_c00114{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);}
.mfd_c00114{transform:matrix(0.183259,0.002749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183259,0.002749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183259,0.002749,-0.003750,0.249972,0,0);}
.m8_c00114{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);}
.m159_c00114{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);}
.m36_c00114{transform:matrix(0.184378,0.001659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184378,0.001659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184378,0.001659,-0.002250,0.249990,0,0);}
.ma0_c00114{transform:matrix(0.184503,0.001661,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184503,0.001661,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184503,0.001661,-0.002250,0.249990,0,0);}
.m14b_c00114{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);}
.mf6_c00114{transform:matrix(0.184649,0.002770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184649,0.002770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184649,0.002770,-0.003750,0.249972,0,0);}
.m88_c00114{transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);}
.m153_c00114{transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);}
.m149_c00114{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);}
.m91_c00114{transform:matrix(0.185367,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185367,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185367,0.001668,-0.002250,0.249990,0,0);}
.m16_c00114{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);}
.m67_c00114{transform:matrix(0.185632,0.001671,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185632,0.001671,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185632,0.001671,-0.002250,0.249990,0,0);}
.m100_c00114{transform:matrix(0.185654,0.002785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185654,0.002785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185654,0.002785,-0.003750,0.249972,0,0);}
.m23_c00114{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);}
.me5_c00114{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);}
.m152_c00114{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);}
.m65_c00114{transform:matrix(0.186352,0.001677,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186352,0.001677,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186352,0.001677,-0.002250,0.249990,0,0);}
.m43_c00114{transform:matrix(0.186592,0.001679,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186592,0.001679,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186592,0.001679,-0.002250,0.249990,0,0);}
.m64_c00114{transform:matrix(0.186617,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186617,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186617,0.001680,-0.002250,0.249990,0,0);}
.m9f_c00114{transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);}
.ma7_c00114{transform:matrix(0.186876,0.002990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186876,0.002990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186876,0.002990,-0.003999,0.249968,0,0);}
.m48_c00114{transform:matrix(0.187077,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187077,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187077,0.001684,-0.002250,0.249990,0,0);}
.m28_c00114{transform:matrix(0.187402,0.001687,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187402,0.001687,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187402,0.001687,-0.002250,0.249990,0,0);}
.mde_c00114{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);}
.mf2_c00114{transform:matrix(0.187494,0.002812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187494,0.002812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187494,0.002812,-0.003750,0.249972,0,0);}
.m85_c00114{transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);}
.m99_c00114{transform:matrix(0.187852,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187852,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187852,0.001691,-0.002250,0.249990,0,0);}
.m147_c00114{transform:matrix(0.188139,0.002822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188139,0.002822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188139,0.002822,-0.003750,0.249972,0,0);}
.m7f_c00114{transform:matrix(0.188172,0.001694,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188172,0.001694,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188172,0.001694,-0.002250,0.249990,0,0);}
.m82_c00114{transform:matrix(0.188417,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188417,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188417,0.001696,-0.002250,0.249990,0,0);}
.mc2_c00114{transform:matrix(0.188556,0.003017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188556,0.003017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188556,0.003017,-0.003999,0.249968,0,0);}
.md9_c00114{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);}
.m8f_c00114{transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);}
.m1e_c00114{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);}
.m3f_c00114{transform:matrix(0.188932,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188932,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188932,0.001700,-0.002250,0.249990,0,0);}
.m15d_c00114{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);}
.m35_c00114{transform:matrix(0.190062,0.001711,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190062,0.001711,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190062,0.001711,-0.002250,0.249990,0,0);}
.m1d_c00114{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);}
.m42_c00114{transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190542,0.001715,-0.002250,0.249990,0,0);}
.m52_c00114{transform:matrix(0.190797,0.001717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190797,0.001717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190797,0.001717,-0.002250,0.249990,0,0);}
.m38_c00114{transform:matrix(0.190917,0.001718,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190917,0.001718,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190917,0.001718,-0.002250,0.249990,0,0);}
.mc1_c00114{transform:matrix(0.191031,0.003056,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191031,0.003056,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191031,0.003056,-0.003999,0.249968,0,0);}
.m2b_c00114{transform:matrix(0.191142,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191142,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191142,0.001720,-0.002250,0.249990,0,0);}
.m3c_c00114{transform:matrix(0.191992,0.001728,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191992,0.001728,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191992,0.001728,-0.002250,0.249990,0,0);}
.m11e_c00114{transform:matrix(0.192048,0.002881,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192048,0.002881,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192048,0.002881,-0.003750,0.249972,0,0);}
.m108_c00114{transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);}
.m18_c00114{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);}
.m83_c00114{transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);}
.m15_c00114{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);}
.me9_c00114{transform:matrix(0.192448,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192448,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192448,0.002887,-0.003750,0.249972,0,0);}
.m4d_c00114{transform:matrix(0.193047,0.001737,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193047,0.001737,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193047,0.001737,-0.002250,0.249990,0,0);}
.m54_c00114{transform:matrix(0.193107,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193107,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193107,0.001738,-0.002250,0.249990,0,0);}
.m12d_c00114{transform:matrix(0.193543,0.002903,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193543,0.002903,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193543,0.002903,-0.003750,0.249972,0,0);}
.m1b_c00114{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);}
.m8a_c00114{transform:matrix(0.193867,0.001745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193867,0.001745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193867,0.001745,-0.002250,0.249990,0,0);}
.m29_c00114{transform:matrix(0.193942,0.001745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193942,0.001745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193942,0.001745,-0.002250,0.249990,0,0);}
.m15e_c00114{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);}
.m92_c00114{transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);}
.m61_c00114{transform:matrix(0.194097,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194097,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194097,0.001747,-0.002250,0.249990,0,0);}
.m8b_c00114{transform:matrix(0.194217,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194217,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194217,0.001748,-0.002250,0.249990,0,0);}
.m112_c00114{transform:matrix(0.194493,0.002917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194493,0.002917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194493,0.002917,-0.003750,0.249972,0,0);}
.m128_c00114{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);}
.m11_c00114{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);}
.m7_c00114{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);}
.mdc_c00114{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);}
.m144_c00114{transform:matrix(0.195268,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195268,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195268,0.002929,-0.003750,0.249972,0,0);}
.m11a_c00114{transform:matrix(0.195293,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195293,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195293,0.002929,-0.003750,0.249972,0,0);}
.m63_c00114{transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);}
.m6_c00114{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);}
.m9_c00114{transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{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);}
.mb2_c00114{transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196570,0.003145,-0.003999,0.249968,0,0);}
.m129_c00114{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);}
.m87_c00114{transform:matrix(0.197177,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197177,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197177,0.001775,-0.002250,0.249990,0,0);}
.mf7_c00114{transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);}
.meb_c00114{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);}
.m2d_c00114{transform:matrix(0.197362,0.001776,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197362,0.001776,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197362,0.001776,-0.002250,0.249990,0,0);}
.mce_c00114{transform:matrix(0.197418,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197418,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197418,0.002961,-0.003750,0.249972,0,0);}
.m102_c00114{transform:matrix(0.197558,0.002963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197558,0.002963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197558,0.002963,-0.003750,0.249972,0,0);}
.ma6_c00114{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);}
.m121_c00114{transform:matrix(0.197683,0.002965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197683,0.002965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197683,0.002965,-0.003750,0.249972,0,0);}
.md6_c00114{transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);}
.mc_c00114{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);}
.m12f_c00114{transform:matrix(0.198343,0.002975,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198343,0.002975,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198343,0.002975,-0.003750,0.249972,0,0);}
.m44_c00114{transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);}
.m101_c00114{transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);}
.m2f_c00114{transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);}
.m5_c00114{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);}
.m14_c00114{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);}
.m160_c00114{transform:matrix(0.200557,0.003008,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200557,0.003008,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200557,0.003008,-0.003750,0.249972,0,0);}
.m57_c00114{transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201057,0.001810,-0.002250,0.249990,0,0);}
.m95_c00114{transform:matrix(0.201242,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201242,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201242,0.001811,-0.002250,0.249990,0,0);}
.m11c_c00114{transform:matrix(0.201242,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201242,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201242,0.003019,-0.003750,0.249972,0,0);}
.m107_c00114{transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);}
.mfa_c00114{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);}
.m30_c00114{transform:matrix(0.201797,0.001816,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201797,0.001816,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201797,0.001816,-0.002250,0.249990,0,0);}
.m124_c00114{transform:matrix(0.202437,0.003037,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202437,0.003037,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202437,0.003037,-0.003750,0.249972,0,0);}
.mf9_c00114{transform:matrix(0.202562,0.003038,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202562,0.003038,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202562,0.003038,-0.003750,0.249972,0,0);}
.m51_c00114{transform:matrix(0.203357,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203357,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203357,0.001830,-0.002250,0.249990,0,0);}
.m1a_c00114{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);}
.ma9_c00114{transform:matrix(0.203789,0.003261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203789,0.003261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203789,0.003261,-0.003999,0.249968,0,0);}
.m4a_c00114{transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);}
.ma_c00114{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);}
.m148_c00114{transform:matrix(0.204292,0.003064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204292,0.003064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204292,0.003064,-0.003750,0.249972,0,0);}
.m103_c00114{transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);}
.m134_c00114{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);}
.m6e_c00114{transform:matrix(0.204787,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204787,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204787,0.001843,-0.002250,0.249990,0,0);}
.m116_c00114{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);}
.m14a_c00114{transform:matrix(0.204977,0.003075,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204977,0.003075,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204977,0.003075,-0.003750,0.249972,0,0);}
.m136_c00114{transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);}
.mcd_c00114{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);}
.mea_c00114{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);}
.mbe_c00114{transform:matrix(0.205689,0.003291,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205689,0.003291,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205689,0.003291,-0.003999,0.249968,0,0);}
.m120_c00114{transform:matrix(0.205807,0.003087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205807,0.003087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205807,0.003087,-0.003750,0.249972,0,0);}
.m55_c00114{transform:matrix(0.206307,0.001857,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206307,0.001857,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206307,0.001857,-0.002250,0.249990,0,0);}
.m80_c00114{transform:matrix(0.207252,0.001865,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207252,0.001865,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207252,0.001865,-0.002250,0.249990,0,0);}
.m3b_c00114{transform:matrix(0.207347,0.001866,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207347,0.001866,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207347,0.001866,-0.002250,0.249990,0,0);}
.m33_c00114{transform:matrix(0.208617,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208617,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208617,0.001878,-0.002250,0.249990,0,0);}
.mb5_c00114{transform:matrix(0.208968,0.003343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208968,0.003343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208968,0.003343,-0.003999,0.249968,0,0);}
.m26_c00114{transform:matrix(0.209262,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209262,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209262,0.001883,-0.002250,0.249990,0,0);}
.m139_c00114{transform:matrix(0.209441,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209441,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209441,0.003142,-0.003750,0.249972,0,0);}
.m89_c00114{transform:matrix(0.210081,0.001891,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210081,0.001891,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210081,0.001891,-0.002250,0.249990,0,0);}
.m161_c00114{transform:matrix(0.210251,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210251,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210251,0.003154,-0.003750,0.249972,0,0);}
.m13a_c00114{transform:matrix(0.210816,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210816,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210816,0.003162,-0.003750,0.249972,0,0);}
.m93_c00114{transform:matrix(0.211976,0.001908,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211976,0.001908,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211976,0.001908,-0.002250,0.249990,0,0);}
.m13c_c00114{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);}
.m1_c00114{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);}
.m74_c00114{transform:matrix(0.213306,0.001920,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213306,0.001920,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213306,0.001920,-0.002250,0.249990,0,0);}
.m11b_c00114{transform:matrix(0.213521,0.003203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213521,0.003203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213521,0.003203,-0.003750,0.249972,0,0);}
.m11f_c00114{transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);}
.m7e_c00114{transform:matrix(0.214271,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214271,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214271,0.001928,-0.002250,0.249990,0,0);}
.m60_c00114{transform:matrix(0.214386,0.001929,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214386,0.001929,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214386,0.001929,-0.002250,0.249990,0,0);}
.m133_c00114{transform:matrix(0.214421,0.003216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214421,0.003216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214421,0.003216,-0.003750,0.249972,0,0);}
.med_c00114{transform:matrix(0.215021,0.003225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215021,0.003225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215021,0.003225,-0.003750,0.249972,0,0);}
.m58_c00114{transform:matrix(0.217186,0.001955,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217186,0.001955,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217186,0.001955,-0.002250,0.249990,0,0);}
.m1f_c00114{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);}
.m105_c00114{transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);}
.m45_c00114{transform:matrix(0.219641,0.001977,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219641,0.001977,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219641,0.001977,-0.002250,0.249990,0,0);}
.m146_c00114{transform:matrix(0.221120,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221120,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221120,0.003317,-0.003750,0.249972,0,0);}
.m21_c00114{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.mb6_c00114{transform:matrix(0.221842,0.003549,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221842,0.003549,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221842,0.003549,-0.003999,0.249968,0,0);}
.md4_c00114{transform:matrix(0.221965,0.003329,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221965,0.003329,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221965,0.003329,-0.003750,0.249972,0,0);}
.m32_c00114{transform:matrix(0.222161,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222161,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222161,0.001999,-0.002250,0.249990,0,0);}
.m118_c00114{transform:matrix(0.222940,0.003344,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222940,0.003344,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222940,0.003344,-0.003750,0.249972,0,0);}
.m135_c00114{transform:matrix(0.224000,0.003360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224000,0.003360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224000,0.003360,-0.003750,0.249972,0,0);}
.m1c_c00114{transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);}
.mec_c00114{transform:matrix(0.224295,0.003364,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224295,0.003364,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224295,0.003364,-0.003750,0.249972,0,0);}
.m6c_c00114{transform:matrix(0.225411,0.002029,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225411,0.002029,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225411,0.002029,-0.002250,0.249990,0,0);}
.m12a_c00114{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);}
.maa_c00114{transform:matrix(0.227271,0.003636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227271,0.003636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227271,0.003636,-0.003999,0.249968,0,0);}
.mc0_c00114{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);}
.m7d_c00114{transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);}
.mc6_c00114{transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);}
.mf8_c00114{transform:matrix(0.228189,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228189,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228189,0.003423,-0.003750,0.249972,0,0);}
.m13d_c00114{transform:matrix(0.228279,0.003424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228279,0.003424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228279,0.003424,-0.003750,0.249972,0,0);}
.m122_c00114{transform:matrix(0.228549,0.003428,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228549,0.003428,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228549,0.003428,-0.003750,0.249972,0,0);}
.mb4_c00114{transform:matrix(0.228801,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228801,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228801,0.003661,-0.003999,0.249968,0,0);}
.mee_c00114{transform:matrix(0.228894,0.003433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228894,0.003433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228894,0.003433,-0.003750,0.249972,0,0);}
.mf3_c00114{transform:matrix(0.229224,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229224,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229224,0.003438,-0.003750,0.249972,0,0);}
.m76_c00114{transform:matrix(0.230336,0.002073,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230336,0.002073,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230336,0.002073,-0.002250,0.249990,0,0);}
.m164_c00114{transform:matrix(0.230979,0.003465,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230979,0.003465,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230979,0.003465,-0.003750,0.249972,0,0);}
.mfb_c00114{transform:matrix(0.232344,0.003485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232344,0.003485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232344,0.003485,-0.003750,0.249972,0,0);}
.me0_c00114{transform:matrix(0.232409,0.003486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232409,0.003486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232409,0.003486,-0.003750,0.249972,0,0);}
.mb3_c00114{transform:matrix(0.234555,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234555,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234555,0.003753,-0.003999,0.249968,0,0);}
.m7a_c00114{transform:matrix(0.234630,0.002112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234630,0.002112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234630,0.002112,-0.002250,0.249990,0,0);}
.md5_c00114{transform:matrix(0.234849,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234849,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234849,0.003523,-0.003750,0.249972,0,0);}
.m168_c00114{transform:matrix(0.235758,0.003536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235758,0.003536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235758,0.003536,-0.003750,0.249972,0,0);}
.mdb_c00114{transform:matrix(0.237373,0.003561,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237373,0.003561,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237373,0.003561,-0.003750,0.249972,0,0);}
.m69_c00114{transform:matrix(0.240200,0.002162,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240200,0.002162,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240200,0.002162,-0.002250,0.249990,0,0);}
.mcf_c00114{transform:matrix(0.240248,0.003604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240248,0.003604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240248,0.003604,-0.003750,0.249972,0,0);}
.mf0_c00114{transform:matrix(0.245012,0.003675,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245012,0.003675,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245012,0.003675,-0.003750,0.249972,0,0);}
.m117_c00114{transform:matrix(0.250382,0.003756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250382,0.003756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250382,0.003756,-0.003750,0.249972,0,0);}
.m13b_c00114{transform:matrix(0.253112,0.003797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253112,0.003797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253112,0.003797,-0.003750,0.249972,0,0);}
.m4e_c00114{transform:matrix(0.254565,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254565,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254565,0.002291,-0.002250,0.249990,0,0);}
.mbc_c00114{transform:matrix(0.257727,0.004124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257727,0.004124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257727,0.004124,-0.003999,0.249968,0,0);}
.m166_c00114{transform:matrix(0.258606,0.003879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258606,0.003879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258606,0.003879,-0.003750,0.249972,0,0);}
.m0_c00114{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);}
.me8_c00114{transform:matrix(0.263920,0.003959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263920,0.003959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263920,0.003959,-0.003750,0.249972,0,0);}
.m137_c00114{transform:matrix(0.266925,0.004004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266925,0.004004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266925,0.004004,-0.003750,0.249972,0,0);}
.m81_c00114{transform:matrix(0.270434,0.002434,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270434,0.002434,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270434,0.002434,-0.002250,0.249990,0,0);}
.mb0_c00114{transform:matrix(0.276525,0.004424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276525,0.004424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276525,0.004424,-0.003999,0.249968,0,0);}
.m156_c00114{transform:matrix(0.276834,0.004153,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276834,0.004153,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276834,0.004153,-0.003750,0.249972,0,0);}
.m132_c00114{transform:matrix(0.278769,0.004182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278769,0.004182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278769,0.004182,-0.003750,0.249972,0,0);}
.m17a_c00114{transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296345,0.000000,0.000000,0.250000,0,0);}
.m179_c00114{transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302680,0.000000,0.000000,0.250000,0,0);}
.mcb_c00114{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);}
.m98_c00114{transform:matrix(0.313197,0.002819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313197,0.002819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313197,0.002819,-0.002250,0.249990,0,0);}
.m13e_c00114{transform:matrix(0.327983,0.004920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.327983,0.004920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.327983,0.004920,-0.003750,0.249972,0,0);}
.md7_c00114{transform:matrix(0.329383,0.004941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.329383,0.004941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.329383,0.004941,-0.003750,0.249972,0,0);}
.md8_c00114{transform:matrix(0.347806,0.005217,-0.003750,0.249972,0,0);-ms-transform:matrix(0.347806,0.005217,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.347806,0.005217,-0.003750,0.249972,0,0);}
.m13f_c00114{transform:matrix(0.358375,0.005376,-0.003750,0.249972,0,0);-ms-transform:matrix(0.358375,0.005376,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.358375,0.005376,-0.003750,0.249972,0,0);}
.m104_c00114{transform:matrix(0.362129,0.005432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.362129,0.005432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.362129,0.005432,-0.003750,0.249972,0,0);}
.m130_c00114{transform:matrix(0.367014,0.005505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.367014,0.005505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.367014,0.005505,-0.003750,0.249972,0,0);}
.mbf_c00114{transform:matrix(0.368583,0.005897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.368583,0.005897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.368583,0.005897,-0.003999,0.249968,0,0);}
.m125_c00114{transform:matrix(0.377403,0.005661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.377403,0.005661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.377403,0.005661,-0.003750,0.249972,0,0);}
.mb8_c00114{transform:matrix(0.379166,0.006067,-0.003999,0.249968,0,0);-ms-transform:matrix(0.379166,0.006067,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.379166,0.006067,-0.003999,0.249968,0,0);}
.m17b_c00114{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m170_c00114{transform:matrix(0.390400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390400,0.000000,0.000000,0.250000,0,0);}
.m16b_c00114{transform:matrix(0.391980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391980,0.000000,0.000000,0.250000,0,0);}
.m178_c00114{transform:matrix(0.392240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392240,0.000000,0.000000,0.250000,0,0);}
.ma4_c00114{transform:matrix(0.392615,0.006282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.392615,0.006282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.392615,0.006282,-0.003999,0.249968,0,0);}
.mb9_c00114{transform:matrix(0.407298,0.006517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.407298,0.006517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.407298,0.006517,-0.003999,0.249968,0,0);}
.mf4_c00114{transform:matrix(0.421248,0.006319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.421248,0.006319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.421248,0.006319,-0.003750,0.249972,0,0);}
.m140_c00114{transform:matrix(0.433231,0.006498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.433231,0.006498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.433231,0.006498,-0.003750,0.249972,0,0);}
.m169_c00114{transform:matrix(0.446975,0.006705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.446975,0.006705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.446975,0.006705,-0.003750,0.249972,0,0);}
.m14c_c00114{transform:matrix(0.453819,0.006807,-0.003750,0.249972,0,0);-ms-transform:matrix(0.453819,0.006807,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.453819,0.006807,-0.003750,0.249972,0,0);}
.m10f_c00114{transform:matrix(0.463693,0.006955,-0.003750,0.249972,0,0);-ms-transform:matrix(0.463693,0.006955,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.463693,0.006955,-0.003750,0.249972,0,0);}
.mbb_c00114{transform:matrix(0.471570,0.007545,-0.003999,0.249968,0,0);-ms-transform:matrix(0.471570,0.007545,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.471570,0.007545,-0.003999,0.249968,0,0);}
.me6_c00114{transform:matrix(0.473962,0.007109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.473962,0.007109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.473962,0.007109,-0.003750,0.249972,0,0);}
.m110_c00114{transform:matrix(0.496189,0.007443,-0.003750,0.249972,0,0);-ms-transform:matrix(0.496189,0.007443,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.496189,0.007443,-0.003750,0.249972,0,0);}
.m131_c00114{transform:matrix(0.503708,0.007556,-0.003750,0.249972,0,0);-ms-transform:matrix(0.503708,0.007556,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.503708,0.007556,-0.003750,0.249972,0,0);}
.me7_c00114{transform:matrix(0.519462,0.007792,-0.003750,0.249972,0,0);-ms-transform:matrix(0.519462,0.007792,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.519462,0.007792,-0.003750,0.249972,0,0);}
.m172_c00114{transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);}
.m175_c00114{transform:matrix(0.564390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564390,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{transform:matrix(0.585466,0.005269,-0.002250,0.249990,0,0);-ms-transform:matrix(0.585466,0.005269,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.585466,0.005269,-0.002250,0.249990,0,0);}
.m176_c00114{transform:matrix(0.660060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660060,0.000000,0.000000,0.250000,0,0);}
.ma2_c00114{transform:matrix(0.662543,0.005963,-0.002250,0.249990,0,0);-ms-transform:matrix(0.662543,0.005963,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.662543,0.005963,-0.002250,0.249990,0,0);}
.mcc_c00114{transform:matrix(0.674209,0.010113,-0.003750,0.249972,0,0);-ms-transform:matrix(0.674209,0.010113,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.674209,0.010113,-0.003750,0.249972,0,0);}
.m126_c00114{transform:matrix(0.703401,0.010551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.703401,0.010551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.703401,0.010551,-0.003750,0.249972,0,0);}
.m163_c00114{transform:matrix(0.723459,0.010852,-0.003750,0.249972,0,0);-ms-transform:matrix(0.723459,0.010852,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.723459,0.010852,-0.003750,0.249972,0,0);}
.m177_c00114{transform:matrix(0.731320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731320,0.000000,0.000000,0.250000,0,0);}
.m171_c00114{transform:matrix(0.736405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736405,0.000000,0.000000,0.250000,0,0);}
.m14d_c00114{transform:matrix(0.743301,0.011150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.743301,0.011150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.743301,0.011150,-0.003750,0.249972,0,0);}
.mb1_c00114{transform:matrix(0.747879,0.011966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.747879,0.011966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.747879,0.011966,-0.003999,0.249968,0,0);}
.me_c00114{transform:matrix(0.776605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776605,0.000000,0.000000,0.250000,0,0);}
.mf5_c00114{transform:matrix(0.778142,0.011672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.778142,0.011672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.778142,0.011672,-0.003750,0.249972,0,0);}
.m162_c00114{transform:matrix(0.790331,0.011855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.790331,0.011855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.790331,0.011855,-0.003750,0.249972,0,0);}
.m16a_c00114{transform:matrix(0.817170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817170,0.000000,0.000000,0.250000,0,0);}
.m174_c00114{transform:matrix(1.383165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.383165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.383165,0.000000,0.000000,0.250000,0,0);}
.v1_c00114{vertical-align:-1.914000px;}
.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;}
._0_c00114{width:33.125281px;}
._1_c00114{width:349.878747px;}
._2_c00114{width:13117.452744px;}
.fc0_c00114{color:transparent;}
.fs1a_c00114{font-size:16.800000px;}
.fse_c00114{font-size:26.253360px;}
.fs1_c00114{font-size:51.450000px;}
.fsd_c00114{font-size:59.857660px;}
.fs9_c00114{font-size:60.902466px;}
.fs12_c00114{font-size:61.956969px;}
.fs18_c00114{font-size:63.000000px;}
.fs15_c00114{font-size:63.007087px;}
.fs17_c00114{font-size:65.107323px;}
.fs13_c00114{font-size:67.207560px;}
.fs2_c00114{font-size:68.250000px;}
.fs6_c00114{font-size:68.252764px;}
.fs10_c00114{font-size:69.307796px;}
.fs3_c00114{font-size:70.350000px;}
.fsa_c00114{font-size:70.352849px;}
.fs16_c00114{font-size:70.357914px;}
.fsb_c00114{font-size:71.400000px;}
.fs4_c00114{font-size:71.402892px;}
.fs14_c00114{font-size:71.408032px;}
.fs19_c00114{font-size:72.450000px;}
.fs5_c00114{font-size:72.452934px;}
.fs11_c00114{font-size:72.458150px;}
.fs7_c00114{font-size:73.502977px;}
.fsc_c00114{font-size:73.509407px;}
.fs8_c00114{font-size:74.553019px;}
.fsf_c00114{font-size:74.559542px;}
.fs0_c00114{font-size:92.400000px;}
.y0_c00114{bottom:0.000000px;}
.y173_c00114{bottom:75.823500px;}
.y174_c00114{bottom:76.672500px;}
.y172_c00114{bottom:76.681500px;}
.y171_c00114{bottom:78.660000px;}
.y170_c00114{bottom:80.692500px;}
.y16f_c00114{bottom:81.880500px;}
.y16e_c00114{bottom:86.203500px;}
.y16d_c00114{bottom:86.404500px;}
.y16c_c00114{bottom:101.031000px;}
.y16b_c00114{bottom:119.192100px;}
.y16a_c00114{bottom:121.868730px;}
.y169_c00114{bottom:123.469575px;}
.y168_c00114{bottom:124.105283px;}
.y167_c00114{bottom:125.004308px;}
.y166_c00114{bottom:125.299688px;}
.y165_c00114{bottom:126.330285px;}
.y164_c00114{bottom:141.402000px;}
.y163_c00114{bottom:142.185435px;}
.y162_c00114{bottom:144.076710px;}
.y161_c00114{bottom:145.272720px;}
.y160_c00114{bottom:145.923705px;}
.y15f_c00114{bottom:146.472240px;}
.y15e_c00114{bottom:148.119555px;}
.y15d_c00114{bottom:149.088623px;}
.y15c_c00114{bottom:149.817533px;}
.y15b_c00114{bottom:150.285173px;}
.y15a_c00114{bottom:150.860655px;}
.y159_c00114{bottom:151.709858px;}
.y158_c00114{bottom:163.426853px;}
.y157_c00114{bottom:165.021585px;}
.y156_c00114{bottom:166.155630px;}
.y155_c00114{bottom:166.686000px;}
.y154_c00114{bottom:168.018540px;}
.y153_c00114{bottom:168.755933px;}
.y152_c00114{bottom:169.043573px;}
.y151_c00114{bottom:170.469915px;}
.y150_c00114{bottom:171.008813px;}
.y14f_c00114{bottom:171.697313px;}
.y14e_c00114{bottom:185.343518px;}
.y14d_c00114{bottom:186.477180px;}
.y14c_c00114{bottom:187.130955px;}
.y14b_c00114{bottom:188.205068px;}
.y14a_c00114{bottom:188.545740px;}
.y149_c00114{bottom:189.631200px;}
.y148_c00114{bottom:191.190503px;}
.y147_c00114{bottom:191.714100px;}
.y146_c00114{bottom:193.276238px;}
.y145_c00114{bottom:193.660215px;}
.y144_c00114{bottom:194.081048px;}
.y143_c00114{bottom:195.111878px;}
.y142_c00114{bottom:195.999315px;}
.y141_c00114{bottom:208.385775px;}
.y140_c00114{bottom:208.683615px;}
.y13f_c00114{bottom:209.152642px;}
.y13e_c00114{bottom:209.524215px;}
.y13d_c00114{bottom:210.223193px;}
.y13c_c00114{bottom:211.306087px;}
.y13b_c00114{bottom:212.283698px;}
.y13a_c00114{bottom:212.729070px;}
.y139_c00114{bottom:213.073275px;}
.y138_c00114{bottom:214.565587px;}
.y137_c00114{bottom:214.956292px;}
.y136_c00114{bottom:215.879738px;}
.y135_c00114{bottom:217.003560px;}
.y134_c00114{bottom:217.670430px;}
.y133_c00114{bottom:217.871663px;}
.y132_c00114{bottom:230.648888px;}
.y131_c00114{bottom:231.459653px;}
.y130_c00114{bottom:232.387568px;}
.y12f_c00114{bottom:232.975028px;}
.y12e_c00114{bottom:234.199897px;}
.y12d_c00114{bottom:235.828283px;}
.y12c_c00114{bottom:236.217817px;}
.y12b_c00114{bottom:236.818695px;}
.y12a_c00114{bottom:238.454093px;}
.y129_c00114{bottom:239.616263px;}
.y128_c00114{bottom:240.555893px;}
.y127_c00114{bottom:252.580823px;}
.y126_c00114{bottom:253.275877px;}
.y125_c00114{bottom:253.734315px;}
.y124_c00114{bottom:254.478150px;}
.y123_c00114{bottom:255.200992px;}
.y122_c00114{bottom:255.605610px;}
.y121_c00114{bottom:256.066860px;}
.y120_c00114{bottom:256.995068px;}
.y11f_c00114{bottom:257.383523px;}
.y11e_c00114{bottom:257.994653px;}
.y11d_c00114{bottom:259.447553px;}
.y11c_c00114{bottom:259.823798px;}
.y11b_c00114{bottom:261.165278px;}
.y11a_c00114{bottom:262.424408px;}
.y119_c00114{bottom:274.776518px;}
.y118_c00114{bottom:275.063685px;}
.y117_c00114{bottom:281.304315px;}
.y116_c00114{bottom:282.818250px;}
.y115_c00114{bottom:283.245038px;}
.y114_c00114{bottom:284.227823px;}
.y113_c00114{bottom:285.048315px;}
.y112_c00114{bottom:285.917798px;}
.y111_c00114{bottom:298.495868px;}
.y110_c00114{bottom:298.898858px;}
.y10f_c00114{bottom:299.650545px;}
.y10e_c00114{bottom:300.290805px;}
.y10d_c00114{bottom:300.477390px;}
.y10c_c00114{bottom:300.901335px;}
.y10b_c00114{bottom:301.370940px;}
.y10a_c00114{bottom:301.778017px;}
.y109_c00114{bottom:302.572072px;}
.y108_c00114{bottom:302.914995px;}
.y107_c00114{bottom:303.485468px;}
.y106_c00114{bottom:304.009763px;}
.y105_c00114{bottom:320.558572px;}
.y104_c00114{bottom:322.049663px;}
.y103_c00114{bottom:322.939410px;}
.y102_c00114{bottom:323.544600px;}
.y101_c00114{bottom:324.665423px;}
.y100_c00114{bottom:325.259535px;}
.yff_c00114{bottom:326.110087px;}
.yfe_c00114{bottom:326.864078px;}
.yfd_c00114{bottom:327.844477px;}
.yfc_c00114{bottom:328.633373px;}
.yfb_c00114{bottom:329.384558px;}
.yfa_c00114{bottom:330.174195px;}
.yf9_c00114{bottom:331.687297px;}
.yf8_c00114{bottom:332.378017px;}
.yf7_c00114{bottom:333.457335px;}
.yf6_c00114{bottom:344.725687px;}
.yf5_c00114{bottom:345.649508px;}
.yf4_c00114{bottom:345.929730px;}
.yf3_c00114{bottom:346.148640px;}
.yf2_c00114{bottom:346.368450px;}
.yf1_c00114{bottom:346.739385px;}
.yf0_c00114{bottom:347.919210px;}
.yef_c00114{bottom:348.706245px;}
.yee_c00114{bottom:349.568168px;}
.yed_c00114{bottom:350.040255px;}
.yec_c00114{bottom:350.679638px;}
.yeb_c00114{bottom:351.034005px;}
.yea_c00114{bottom:351.892845px;}
.ye9_c00114{bottom:352.346880px;}
.ye8_c00114{bottom:366.583050px;}
.ye7_c00114{bottom:367.130685px;}
.ye6_c00114{bottom:367.318530px;}
.ye5_c00114{bottom:367.455090px;}
.ye4_c00114{bottom:367.712085px;}
.ye3_c00114{bottom:367.826085px;}
.ye2_c00114{bottom:367.941067px;}
.ye1_c00114{bottom:368.345152px;}
.ye0_c00114{bottom:368.533957px;}
.ydf_c00114{bottom:368.793525px;}
.yde_c00114{bottom:368.935448px;}
.ydd_c00114{bottom:369.071602px;}
.ydc_c00114{bottom:369.394620px;}
.ydb_c00114{bottom:369.586088px;}
.yda_c00114{bottom:369.897570px;}
.yd9_c00114{bottom:389.168700px;}
.yd8_c00114{bottom:390.014700px;}
.yd7_c00114{bottom:390.367140px;}
.yd6_c00114{bottom:391.076047px;}
.yd5_c00114{bottom:391.476953px;}
.yd4_c00114{bottom:392.274960px;}
.yd3_c00114{bottom:393.003870px;}
.yd2_c00114{bottom:393.408037px;}
.yd1_c00114{bottom:394.215833px;}
.yd0_c00114{bottom:395.074095px;}
.ycf_c00114{bottom:396.678075px;}
.yce_c00114{bottom:397.446000px;}
.ycd_c00114{bottom:411.188640px;}
.ycc_c00114{bottom:412.189344px;}
.ycb_c00114{bottom:412.826844px;}
.yca_c00114{bottom:413.113032px;}
.yc9_c00114{bottom:414.925680px;}
.yc8_c00114{bottom:415.265292px;}
.yc7_c00114{bottom:416.256480px;}
.yc6_c00114{bottom:417.625092px;}
.yc5_c00114{bottom:418.112340px;}
.yc4_c00114{bottom:418.754796px;}
.yc1_c00114{bottom:419.342760px;}
.yc3_c00114{bottom:419.858436px;}
.yc0_c00114{bottom:420.614196px;}
.yc2_c00114{bottom:421.200384px;}
.ybf_c00114{bottom:423.945912px;}
.ybe_c00114{bottom:427.102692px;}
.ybd_c00114{bottom:428.613060px;}
.ybc_c00114{bottom:431.287284px;}
.yba_c00114{bottom:433.390848px;}
.ybb_c00114{bottom:434.461020px;}
.yb9_c00114{bottom:434.761056px;}
.yb8_c00114{bottom:439.763040px;}
.yb7_c00114{bottom:440.304372px;}
.yb6_c00114{bottom:441.000672px;}
.yb5_c00114{bottom:441.745236px;}
.yb4_c00114{bottom:442.179984px;}
.yb3_c00114{bottom:443.076396px;}
.yb2_c00114{bottom:456.804768px;}
.yb1_c00114{bottom:457.866360px;}
.yb0_c00114{bottom:458.496024px;}
.ya5_c00114{bottom:458.730000px;}
.yaf_c00114{bottom:459.067224px;}
.yae_c00114{bottom:459.728160px;}
.yad_c00114{bottom:460.618104px;}
.yac_c00114{bottom:461.430024px;}
.yab_c00114{bottom:462.151992px;}
.yaa_c00114{bottom:462.536568px;}
.ya9_c00114{bottom:463.241616px;}
.ya8_c00114{bottom:464.235096px;}
.ya7_c00114{bottom:464.856816px;}
.ya6_c00114{bottom:465.483000px;}
.ya4_c00114{bottom:480.574898px;}
.ya3_c00114{bottom:481.541795px;}
.ya2_c00114{bottom:481.956008px;}
.ya1_c00114{bottom:482.386371px;}
.ya0_c00114{bottom:483.029182px;}
.y9f_c00114{bottom:483.570375px;}
.y9e_c00114{bottom:485.009270px;}
.y9d_c00114{bottom:485.321580px;}
.y9c_c00114{bottom:485.984485px;}
.y9b_c00114{bottom:487.076742px;}
.y9a_c00114{bottom:502.245609px;}
.y99_c00114{bottom:503.124216px;}
.y98_c00114{bottom:503.431950px;}
.y97_c00114{bottom:504.193263px;}
.y96_c00114{bottom:504.605583px;}
.y95_c00114{bottom:506.072431px;}
.y94_c00114{bottom:507.205926px;}
.y93_c00114{bottom:507.666825px;}
.y92_c00114{bottom:508.144106px;}
.y91_c00114{bottom:508.638606px;}
.y90_c00114{bottom:509.756934px;}
.y8f_c00114{bottom:525.003091px;}
.y8e_c00114{bottom:525.457372px;}
.y8d_c00114{bottom:525.907143px;}
.y8c_c00114{bottom:526.533739px;}
.y8b_c00114{bottom:527.571859px;}
.y8a_c00114{bottom:527.940138px;}
.y89_c00114{bottom:528.619419px;}
.y88_c00114{bottom:528.956595px;}
.y87_c00114{bottom:529.568119px;}
.y86_c00114{bottom:530.637166px;}
.y85_c00114{bottom:530.929032px;}
.y84_c00114{bottom:531.897342px;}
.y83_c00114{bottom:548.755992px;}
.y82_c00114{bottom:549.893339px;}
.y81_c00114{bottom:550.462620px;}
.y80_c00114{bottom:550.833700px;}
.y7f_c00114{bottom:551.005797px;}
.y7e_c00114{bottom:551.679506px;}
.y7d_c00114{bottom:551.882865px;}
.y7c_c00114{bottom:552.869262px;}
.y7b_c00114{bottom:553.389402px;}
.y7a_c00114{bottom:553.866855px;}
.y79_c00114{bottom:554.305672px;}
.y78_c00114{bottom:570.935447px;}
.y77_c00114{bottom:571.774702px;}
.y76_c00114{bottom:572.119450px;}
.y75_c00114{bottom:572.709028px;}
.y74_c00114{bottom:573.270139px;}
.y73_c00114{bottom:573.753345px;}
.y72_c00114{bottom:574.069464px;}
.y71_c00114{bottom:575.206837px;}
.y70_c00114{bottom:575.753823px;}
.y6f_c00114{bottom:576.164227px;}
.y6e_c00114{bottom:576.445668px;}
.y6d_c00114{bottom:593.525171px;}
.y6c_c00114{bottom:593.851701px;}
.y6b_c00114{bottom:594.037450px;}
.y6a_c00114{bottom:594.808996px;}
.y69_c00114{bottom:595.490659px;}
.y68_c00114{bottom:595.647780px;}
.y67_c00114{bottom:596.140114px;}
.y66_c00114{bottom:596.315290px;}
.y65_c00114{bottom:596.690773px;}
.y64_c00114{bottom:596.988769px;}
.y63_c00114{bottom:597.579009px;}
.y62_c00114{bottom:597.983026px;}
.y61_c00114{bottom:598.856407px;}
.y60_c00114{bottom:616.120162px;}
.y5f_c00114{bottom:616.465689px;}
.y5e_c00114{bottom:616.792732px;}
.y5d_c00114{bottom:617.087130px;}
.y5c_c00114{bottom:617.313790px;}
.y5b_c00114{bottom:617.684646px;}
.y5a_c00114{bottom:618.183385px;}
.y59_c00114{bottom:618.480604px;}
.y58_c00114{bottom:618.734538px;}
.y57_c00114{bottom:619.659111px;}
.y56_c00114{bottom:620.352567px;}
.y55_c00114{bottom:620.727985px;}
.y54_c00114{bottom:638.442337px;}
.y53_c00114{bottom:638.885407px;}
.y52_c00114{bottom:639.287416px;}
.y51_c00114{bottom:639.669900px;}
.y50_c00114{bottom:639.903802px;}
.y4f_c00114{bottom:640.744209px;}
.y4e_c00114{bottom:641.222790px;}
.y4d_c00114{bottom:641.609244px;}
.y4c_c00114{bottom:642.135273px;}
.y4b_c00114{bottom:642.401635px;}
.y4a_c00114{bottom:642.646314px;}
.y49_c00114{bottom:643.168656px;}
.y48_c00114{bottom:643.408972px;}
.y47_c00114{bottom:661.264953px;}
.y46_c00114{bottom:661.682995px;}
.y45_c00114{bottom:662.315047px;}
.y44_c00114{bottom:662.534418px;}
.y43_c00114{bottom:662.914602px;}
.y42_c00114{bottom:663.221149px;}
.y41_c00114{bottom:663.681141px;}
.y40_c00114{bottom:663.894178px;}
.y3f_c00114{bottom:664.528228px;}
.y3e_c00114{bottom:664.901122px;}
.y3d_c00114{bottom:665.549011px;}
.y3c_c00114{bottom:683.989359px;}
.y3b_c00114{bottom:684.402486px;}
.y3a_c00114{bottom:684.958915px;}
.y39_c00114{bottom:685.235679px;}
.y38_c00114{bottom:685.838710px;}
.y37_c00114{bottom:686.098626px;}
.y36_c00114{bottom:686.465232px;}
.y35_c00114{bottom:686.932251px;}
.y34_c00114{bottom:687.293889px;}
.y33_c00114{bottom:687.960168px;}
.y32_c00114{bottom:706.239906px;}
.y31_c00114{bottom:706.485214px;}
.y30_c00114{bottom:706.903444px;}
.y2f_c00114{bottom:707.620402px;}
.y2e_c00114{bottom:707.826588px;}
.y2d_c00114{bottom:708.298345px;}
.y2c_c00114{bottom:708.577890px;}
.y2b_c00114{bottom:708.861876px;}
.y2a_c00114{bottom:709.533096px;}
.y29_c00114{bottom:709.690803px;}
.y28_c00114{bottom:710.101500px;}
.y27_c00114{bottom:736.699500px;}
.y26_c00114{bottom:756.492000px;}
.y25_c00114{bottom:756.637500px;}
.y24_c00114{bottom:756.783000px;}
.y23_c00114{bottom:756.919500px;}
.y22_c00114{bottom:757.390500px;}
.y21_c00114{bottom:758.122500px;}
.y20_c00114{bottom:758.793000px;}
.y1f_c00114{bottom:759.358500px;}
.y1e_c00114{bottom:759.637500px;}
.y1d_c00114{bottom:759.958500px;}
.y1c_c00114{bottom:760.320000px;}
.y1b_c00114{bottom:779.506500px;}
.y1a_c00114{bottom:779.886000px;}
.y19_c00114{bottom:780.106500px;}
.y18_c00114{bottom:780.336000px;}
.y17_c00114{bottom:780.895500px;}
.y16_c00114{bottom:781.239000px;}
.y15_c00114{bottom:781.680000px;}
.y14_c00114{bottom:781.822500px;}
.y13_c00114{bottom:782.068500px;}
.y12_c00114{bottom:782.215500px;}
.y11_c00114{bottom:782.730000px;}
.y10_c00114{bottom:800.631000px;}
.yf_c00114{bottom:801.132000px;}
.ye_c00114{bottom:801.282000px;}
.yd_c00114{bottom:801.892500px;}
.yc_c00114{bottom:802.140000px;}
.yb_c00114{bottom:802.449000px;}
.ya_c00114{bottom:802.846500px;}
.y9_c00114{bottom:803.151000px;}
.y8_c00114{bottom:803.710500px;}
.y7_c00114{bottom:803.926500px;}
.y6_c00114{bottom:804.232500px;}
.y5_c00114{bottom:804.603000px;}
.y4_c00114{bottom:804.792000px;}
.y3_c00114{bottom:805.141500px;}
.y2_c00114{bottom:823.500000px;}
.y1_c00114{bottom:833.760000px;}
.h1c_c00114{height:16.800000px;}
.h10_c00114{height:26.253360px;}
.h3_c00114{height:51.450000px;}
.hf_c00114{height:59.857660px;}
.hb_c00114{height:60.902466px;}
.h14_c00114{height:61.956969px;}
.h1a_c00114{height:63.000000px;}
.h17_c00114{height:63.007087px;}
.h19_c00114{height:65.107323px;}
.h15_c00114{height:67.207560px;}
.h4_c00114{height:68.250000px;}
.h8_c00114{height:68.252764px;}
.h12_c00114{height:69.307796px;}
.h5_c00114{height:70.350000px;}
.hc_c00114{height:70.352849px;}
.h18_c00114{height:70.357914px;}
.hd_c00114{height:71.400000px;}
.h6_c00114{height:71.402892px;}
.h16_c00114{height:71.408032px;}
.h1b_c00114{height:72.450000px;}
.h7_c00114{height:72.452934px;}
.h13_c00114{height:72.458150px;}
.h9_c00114{height:73.502977px;}
.he_c00114{height:73.509407px;}
.ha_c00114{height:74.553019px;}
.h11_c00114{height:74.559542px;}
.h2_c00114{height:92.400000px;}
.h1_c00114{height:1005.000000px;}
.h0_c00114{height:1005.150000px;}
.w0_c00114{width:705.450000px;}
.w1_c00114{width:705.750000px;}
.x0_c00114{left:0.000000px;}
.xda_c00114{left:36.484500px;}
.xd4_c00114{left:37.530000px;}
.x89_c00114{left:39.959508px;}
.xab_c00114{left:41.970772px;}
.x81_c00114{left:43.778412px;}
.xc8_c00114{left:45.417307px;}
.xdb_c00114{left:47.044500px;}
.xa1_c00114{left:48.142275px;}
.x9b_c00114{left:50.523090px;}
.xc2_c00114{left:53.934165px;}
.x79_c00114{left:58.134000px;}
.x9c_c00114{left:82.992585px;}
.xc9_c00114{left:91.317307px;}
.x51_c00114{left:92.685247px;}
.xac_c00114{left:94.327687px;}
.x8f_c00114{left:95.385000px;}
.x38_c00114{left:97.329808px;}
.x5f_c00114{left:99.199851px;}
.x41_c00114{left:100.301805px;}
.x2e_c00114{left:101.403322px;}
.x3_c00114{left:103.021500px;}
.xb7_c00114{left:110.742720px;}
.x8a_c00114{left:114.547632px;}
.x24_c00114{left:118.956000px;}
.xd5_c00114{left:120.690000px;}
.x42_c00114{left:122.169913px;}
.x5a_c00114{left:123.503530px;}
.xa2_c00114{left:125.135550px;}
.x93_c00114{left:127.079970px;}
.x23_c00114{left:129.598500px;}
.x60_c00114{left:132.956136px;}
.xb3_c00114{left:134.790990px;}
.x7a_c00114{left:136.128000px;}
.x4b_c00114{left:137.586834px;}
.x4_c00114{left:141.898500px;}
.x9d_c00114{left:144.349507px;}
.xce_c00114{left:145.863780px;}
.xad_c00114{left:151.363462px;}
.x5b_c00114{left:155.102896px;}
.xbc_c00114{left:157.191577px;}
.x52_c00114{left:159.891831px;}
.x5_c00114{left:162.957000px;}
.x25_c00114{left:164.589000px;}
.x82_c00114{left:165.915468px;}
.x11_c00114{left:167.565000px;}
.x43_c00114{left:169.707063px;}
.x6d_c00114{left:172.413310px;}
.x2f_c00114{left:175.434322px;}
.x1a_c00114{left:178.363500px;}
.x94_c00114{left:180.821715px;}
.x26_c00114{left:182.112000px;}
.xb4_c00114{left:183.906300px;}
.x12_c00114{left:185.934000px;}
.x44_c00114{left:191.893158px;}
.x5c_c00114{left:197.210884px;}
.x7b_c00114{left:198.220500px;}
.x39_c00114{left:199.415890px;}
.x90_c00114{left:202.317000px;}
.x6_c00114{left:204.042000px;}
.x6e_c00114{left:205.356028px;}
.x4c_c00114{left:206.970213px;}
.x1b_c00114{left:209.445000px;}
.x8b_c00114{left:211.488012px;}
.xc3_c00114{left:213.671895px;}
.x30_c00114{left:215.616322px;}
.x13_c00114{left:216.747000px;}
.xca_c00114{left:222.333307px;}
.xa3_c00114{left:225.239535px;}
.x95_c00114{left:227.266492px;}
.x73_c00114{left:232.322326px;}
.x14_c00114{left:234.531000px;}
.x53_c00114{left:236.362077px;}
.x7_c00114{left:238.018500px;}
.x7c_c00114{left:242.286000px;}
.xbd_c00114{left:248.013982px;}
.x9e_c00114{left:249.073582px;}
.x65_c00114{left:253.606737px;}
.x27_c00114{left:256.692000px;}
.xa4_c00114{left:257.914620px;}
.x54_c00114{left:259.305253px;}
.x8_c00114{left:262.036500px;}
.x45_c00114{left:263.935362px;}
.xae_c00114{left:265.070490px;}
.x7d_c00114{left:266.322000px;}
.x31_c00114{left:267.507322px;}
.x96_c00114{left:270.476820px;}
.x1c_c00114{left:272.313000px;}
.xdc_c00114{left:274.552500px;}
.xd6_c00114{left:277.020000px;}
.xb5_c00114{left:280.980532px;}
.x3a_c00114{left:284.202634px;}
.x61_c00114{left:285.560641px;}
.xb8_c00114{left:286.909800px;}
.x28_c00114{left:288.246000px;}
.x15_c00114{left:289.599000px;}
.xcb_c00114{left:290.668807px;}
.xa5_c00114{left:292.203502px;}
.x66_c00114{left:294.385036px;}
.x46_c00114{left:299.040727px;}
.x55_c00114{left:301.654728px;}
.xbe_c00114{left:303.039007px;}
.xaf_c00114{left:305.812050px;}
.x32_c00114{left:308.241322px;}
.x7e_c00114{left:311.445000px;}
.x91_c00114{left:313.387500px;}
.x85_c00114{left:315.573960px;}
.x67_c00114{left:316.847821px;}
.x29_c00114{left:319.306500px;}
.xb9_c00114{left:320.850270px;}
.xcf_c00114{left:321.972728px;}
.x9_c00114{left:324.144000px;}
.x3b_c00114{left:330.145716px;}
.x16_c00114{left:332.530500px;}
.xa6_c00114{left:334.858395px;}
.x33_c00114{left:337.120822px;}
.xd7_c00114{left:338.310000px;}
.x56_c00114{left:339.523864px;}
.x47_c00114{left:342.548944px;}
.xc4_c00114{left:344.649457px;}
.x1d_c00114{left:346.824000px;}
.x57_c00114{left:351.647932px;}
.x62_c00114{left:353.010211px;}
.x4d_c00114{left:354.438376px;}
.xa_c00114{left:357.927000px;}
.x3c_c00114{left:360.872946px;}
.x68_c00114{left:362.154378px;}
.x63_c00114{left:366.298239px;}
.xa7_c00114{left:367.620457px;}
.x8c_c00114{left:369.735972px;}
.x2a_c00114{left:371.724000px;}
.xcc_c00114{left:379.504808px;}
.xd3_c00114{left:382.751430px;}
.xd0_c00114{left:385.136948px;}
.x69_c00114{left:386.739555px;}
.x5d_c00114{left:389.404972px;}
.xbf_c00114{left:393.493935px;}
.x2b_c00114{left:394.633500px;}
.x3d_c00114{left:398.948608px;}
.xb_c00114{left:402.172500px;}
.x34_c00114{left:404.124322px;}
.x97_c00114{left:407.386792px;}
.x74_c00114{left:408.693481px;}
.xdd_c00114{left:412.290000px;}
.xb0_c00114{left:413.829150px;}
.xcd_c00114{left:414.862807px;}
.x7f_c00114{left:417.811500px;}
.x48_c00114{left:418.926067px;}
.x3e_c00114{left:420.822906px;}
.x1e_c00114{left:428.097000px;}
.x17_c00114{left:431.082000px;}
.x86_c00114{left:432.508392px;}
.x35_c00114{left:434.875822px;}
.xc_c00114{left:436.464000px;}
.x64_c00114{left:438.613633px;}
.x49_c00114{left:440.248189px;}
.x4e_c00114{left:441.392593px;}
.xd8_c00114{left:443.340000px;}
.xd1_c00114{left:448.067168px;}
.x98_c00114{left:450.325597px;}
.x6a_c00114{left:455.915815px;}
.x18_c00114{left:458.622000px;}
.x5e_c00114{left:461.216380px;}
.xd_c00114{left:463.999500px;}
.x6f_c00114{left:468.824313px;}
.xd9_c00114{left:471.420000px;}
.x99_c00114{left:473.032657px;}
.x2c_c00114{left:474.295500px;}
.x58_c00114{left:477.749896px;}
.xa8_c00114{left:479.139570px;}
.x1f_c00114{left:480.475500px;}
.xba_c00114{left:482.334525px;}
.x3f_c00114{left:484.050339px;}
.x8d_c00114{left:489.342156px;}
.x75_c00114{left:491.265511px;}
.x4f_c00114{left:493.454121px;}
.x20_c00114{left:495.640500px;}
.x36_c00114{left:496.701322px;}
.x6b_c00114{left:497.702061px;}
.x59_c00114{left:502.863492px;}
.x9a_c00114{left:504.359887px;}
.x19_c00114{left:506.145000px;}
.x9f_c00114{left:508.839952px;}
.x21_c00114{left:511.842000px;}
.x92_c00114{left:516.114000px;}
.x70_c00114{left:519.578573px;}
.x2d_c00114{left:520.765500px;}
.x76_c00114{left:523.121364px;}
.xc6_c00114{left:524.422207px;}
.x40_c00114{left:525.832461px;}
.x22_c00114{left:528.001500px;}
.xe_c00114{left:531.825000px;}
.x83_c00114{left:533.010612px;}
.x80_c00114{left:534.174000px;}
.x71_c00114{left:540.103466px;}
.x37_c00114{left:542.604322px;}
.xa9_c00114{left:544.194285px;}
.xc0_c00114{left:545.770095px;}
.xf_c00114{left:548.527500px;}
.x4a_c00114{left:551.808678px;}
.xb1_c00114{left:552.936067px;}
.x87_c00114{left:555.875172px;}
.x6c_c00114{left:557.982307px;}
.x50_c00114{left:560.683513px;}
.xc7_c00114{left:581.095455px;}
.xc5_c00114{left:582.539302px;}
.xbb_c00114{left:587.718277px;}
.xd2_c00114{left:588.872730px;}
.xc1_c00114{left:590.819070px;}
.xb2_c00114{left:593.205082px;}
.xa0_c00114{left:594.810735px;}
.x8e_c00114{left:596.300748px;}
.x77_c00114{left:597.551691px;}
.x72_c00114{left:598.723307px;}
.x78_c00114{left:600.210000px;}
.x88_c00114{left:602.987892px;}
.x10_c00114{left:604.119000px;}
.xb6_c00114{left:607.342552px;}
.xaa_c00114{left:608.992500px;}
.x84_c00114{left:613.584816px;}
.x1_c00114{left:616.950000px;}
.x2_c00114{left:620.730000px;}
@media print{
.v1_c00114{vertical-align:-1.701333pt;}
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
._0_c00114{width:29.444694pt;}
._1_c00114{width:311.003331pt;}
._2_c00114{width:11659.957994pt;}
.fs1a_c00114{font-size:14.933333pt;}
.fse_c00114{font-size:23.336320pt;}
.fs1_c00114{font-size:45.733333pt;}
.fsd_c00114{font-size:53.206809pt;}
.fs9_c00114{font-size:54.135526pt;}
.fs12_c00114{font-size:55.072861pt;}
.fs18_c00114{font-size:56.000000pt;}
.fs15_c00114{font-size:56.006300pt;}
.fs17_c00114{font-size:57.873176pt;}
.fs13_c00114{font-size:59.740053pt;}
.fs2_c00114{font-size:60.666667pt;}
.fs6_c00114{font-size:60.669124pt;}
.fs10_c00114{font-size:61.606930pt;}
.fs3_c00114{font-size:62.533333pt;}
.fsa_c00114{font-size:62.535866pt;}
.fs16_c00114{font-size:62.540368pt;}
.fsb_c00114{font-size:63.466667pt;}
.fs4_c00114{font-size:63.469237pt;}
.fs14_c00114{font-size:63.473806pt;}
.fs19_c00114{font-size:64.400000pt;}
.fs5_c00114{font-size:64.402608pt;}
.fs11_c00114{font-size:64.407245pt;}
.fs7_c00114{font-size:65.335979pt;}
.fsc_c00114{font-size:65.341695pt;}
.fs8_c00114{font-size:66.269350pt;}
.fsf_c00114{font-size:66.275148pt;}
.fs0_c00114{font-size:82.133333pt;}
.y0_c00114{bottom:0.000000pt;}
.y173_c00114{bottom:67.398667pt;}
.y174_c00114{bottom:68.153333pt;}
.y172_c00114{bottom:68.161333pt;}
.y171_c00114{bottom:69.920000pt;}
.y170_c00114{bottom:71.726667pt;}
.y16f_c00114{bottom:72.782667pt;}
.y16e_c00114{bottom:76.625333pt;}
.y16d_c00114{bottom:76.804000pt;}
.y16c_c00114{bottom:89.805333pt;}
.y16b_c00114{bottom:105.948533pt;}
.y16a_c00114{bottom:108.327760pt;}
.y169_c00114{bottom:109.750733pt;}
.y168_c00114{bottom:110.315807pt;}
.y167_c00114{bottom:111.114940pt;}
.y166_c00114{bottom:111.377500pt;}
.y165_c00114{bottom:112.293587pt;}
.y164_c00114{bottom:125.690667pt;}
.y163_c00114{bottom:126.387053pt;}
.y162_c00114{bottom:128.068187pt;}
.y161_c00114{bottom:129.131307pt;}
.y160_c00114{bottom:129.709960pt;}
.y15f_c00114{bottom:130.197547pt;}
.y15e_c00114{bottom:131.661827pt;}
.y15d_c00114{bottom:132.523220pt;}
.y15c_c00114{bottom:133.171140pt;}
.y15b_c00114{bottom:133.586820pt;}
.y15a_c00114{bottom:134.098360pt;}
.y159_c00114{bottom:134.853207pt;}
.y158_c00114{bottom:145.268313pt;}
.y157_c00114{bottom:146.685853pt;}
.y156_c00114{bottom:147.693893pt;}
.y155_c00114{bottom:148.165333pt;}
.y154_c00114{bottom:149.349813pt;}
.y153_c00114{bottom:150.005273pt;}
.y152_c00114{bottom:150.260953pt;}
.y151_c00114{bottom:151.528813pt;}
.y150_c00114{bottom:152.007833pt;}
.y14f_c00114{bottom:152.619833pt;}
.y14e_c00114{bottom:164.749793pt;}
.y14d_c00114{bottom:165.757493pt;}
.y14c_c00114{bottom:166.338627pt;}
.y14b_c00114{bottom:167.293393pt;}
.y14a_c00114{bottom:167.596213pt;}
.y149_c00114{bottom:168.561067pt;}
.y148_c00114{bottom:169.947113pt;}
.y147_c00114{bottom:170.412533pt;}
.y146_c00114{bottom:171.801100pt;}
.y145_c00114{bottom:172.142413pt;}
.y144_c00114{bottom:172.516487pt;}
.y143_c00114{bottom:173.432780pt;}
.y142_c00114{bottom:174.221613pt;}
.y141_c00114{bottom:185.231800pt;}
.y140_c00114{bottom:185.496547pt;}
.y13f_c00114{bottom:185.913460pt;}
.y13e_c00114{bottom:186.243747pt;}
.y13d_c00114{bottom:186.865060pt;}
.y13c_c00114{bottom:187.827633pt;}
.y13b_c00114{bottom:188.696620pt;}
.y13a_c00114{bottom:189.092507pt;}
.y139_c00114{bottom:189.398467pt;}
.y138_c00114{bottom:190.724967pt;}
.y137_c00114{bottom:191.072260pt;}
.y136_c00114{bottom:191.893100pt;}
.y135_c00114{bottom:192.892053pt;}
.y134_c00114{bottom:193.484827pt;}
.y133_c00114{bottom:193.663700pt;}
.y132_c00114{bottom:205.021233pt;}
.y131_c00114{bottom:205.741913pt;}
.y130_c00114{bottom:206.566727pt;}
.y12f_c00114{bottom:207.088913pt;}
.y12e_c00114{bottom:208.177687pt;}
.y12d_c00114{bottom:209.625140pt;}
.y12c_c00114{bottom:209.971393pt;}
.y12b_c00114{bottom:210.505507pt;}
.y12a_c00114{bottom:211.959193pt;}
.y129_c00114{bottom:212.992233pt;}
.y128_c00114{bottom:213.827460pt;}
.y127_c00114{bottom:224.516287pt;}
.y126_c00114{bottom:225.134113pt;}
.y125_c00114{bottom:225.541613pt;}
.y124_c00114{bottom:226.202800pt;}
.y123_c00114{bottom:226.845327pt;}
.y122_c00114{bottom:227.204987pt;}
.y121_c00114{bottom:227.614987pt;}
.y120_c00114{bottom:228.440060pt;}
.y11f_c00114{bottom:228.785353pt;}
.y11e_c00114{bottom:229.328580pt;}
.y11d_c00114{bottom:230.620047pt;}
.y11c_c00114{bottom:230.954487pt;}
.y11b_c00114{bottom:232.146913pt;}
.y11a_c00114{bottom:233.266140pt;}
.y119_c00114{bottom:244.245793pt;}
.y118_c00114{bottom:244.501053pt;}
.y117_c00114{bottom:250.048280pt;}
.y116_c00114{bottom:251.394000pt;}
.y115_c00114{bottom:251.773367pt;}
.y114_c00114{bottom:252.646953pt;}
.y113_c00114{bottom:253.376280pt;}
.y112_c00114{bottom:254.149153pt;}
.y111_c00114{bottom:265.329660pt;}
.y110_c00114{bottom:265.687873pt;}
.y10f_c00114{bottom:266.356040pt;}
.y10e_c00114{bottom:266.925160pt;}
.y10d_c00114{bottom:267.091013pt;}
.y10c_c00114{bottom:267.467853pt;}
.y10b_c00114{bottom:267.885280pt;}
.y10a_c00114{bottom:268.247127pt;}
.y109_c00114{bottom:268.952953pt;}
.y108_c00114{bottom:269.257773pt;}
.y107_c00114{bottom:269.764860pt;}
.y106_c00114{bottom:270.230900pt;}
.y105_c00114{bottom:284.940953pt;}
.y104_c00114{bottom:286.266367pt;}
.y103_c00114{bottom:287.057253pt;}
.y102_c00114{bottom:287.595200pt;}
.y101_c00114{bottom:288.591487pt;}
.y100_c00114{bottom:289.119587pt;}
.yff_c00114{bottom:289.875633pt;}
.yfe_c00114{bottom:290.545847pt;}
.yfd_c00114{bottom:291.417313pt;}
.yfc_c00114{bottom:292.118553pt;}
.yfb_c00114{bottom:292.786273pt;}
.yfa_c00114{bottom:293.488173pt;}
.yf9_c00114{bottom:294.833153pt;}
.yf8_c00114{bottom:295.447127pt;}
.yf7_c00114{bottom:296.406520pt;}
.yf6_c00114{bottom:306.422833pt;}
.yf5_c00114{bottom:307.244007pt;}
.yf4_c00114{bottom:307.493093pt;}
.yf3_c00114{bottom:307.687680pt;}
.yf2_c00114{bottom:307.883067pt;}
.yf1_c00114{bottom:308.212787pt;}
.yf0_c00114{bottom:309.261520pt;}
.yef_c00114{bottom:309.961107pt;}
.yee_c00114{bottom:310.727260pt;}
.yed_c00114{bottom:311.146893pt;}
.yec_c00114{bottom:311.715233pt;}
.yeb_c00114{bottom:312.030227pt;}
.yea_c00114{bottom:312.793640pt;}
.ye9_c00114{bottom:313.197227pt;}
.ye8_c00114{bottom:325.851600pt;}
.ye7_c00114{bottom:326.338387pt;}
.ye6_c00114{bottom:326.505360pt;}
.ye5_c00114{bottom:326.626747pt;}
.ye4_c00114{bottom:326.855187pt;}
.ye3_c00114{bottom:326.956520pt;}
.ye2_c00114{bottom:327.058727pt;}
.ye1_c00114{bottom:327.417913pt;}
.ye0_c00114{bottom:327.585740pt;}
.ydf_c00114{bottom:327.816467pt;}
.yde_c00114{bottom:327.942620pt;}
.ydd_c00114{bottom:328.063647pt;}
.ydc_c00114{bottom:328.350773pt;}
.ydb_c00114{bottom:328.520967pt;}
.yda_c00114{bottom:328.797840pt;}
.yd9_c00114{bottom:345.927733pt;}
.yd8_c00114{bottom:346.679733pt;}
.yd7_c00114{bottom:346.993013pt;}
.yd6_c00114{bottom:347.623153pt;}
.yd5_c00114{bottom:347.979513pt;}
.yd4_c00114{bottom:348.688853pt;}
.yd3_c00114{bottom:349.336773pt;}
.yd2_c00114{bottom:349.696033pt;}
.yd1_c00114{bottom:350.414073pt;}
.yd0_c00114{bottom:351.176973pt;}
.ycf_c00114{bottom:352.602733pt;}
.yce_c00114{bottom:353.285333pt;}
.ycd_c00114{bottom:365.501013pt;}
.ycc_c00114{bottom:366.390528pt;}
.ycb_c00114{bottom:366.957195pt;}
.yca_c00114{bottom:367.211584pt;}
.yc9_c00114{bottom:368.822827pt;}
.yc8_c00114{bottom:369.124704pt;}
.yc7_c00114{bottom:370.005760pt;}
.yc6_c00114{bottom:371.222304pt;}
.yc5_c00114{bottom:371.655413pt;}
.yc4_c00114{bottom:372.226485pt;}
.yc1_c00114{bottom:372.749120pt;}
.yc3_c00114{bottom:373.207499pt;}
.yc0_c00114{bottom:373.879285pt;}
.yc2_c00114{bottom:374.400341pt;}
.ybf_c00114{bottom:376.840811pt;}
.ybe_c00114{bottom:379.646837pt;}
.ybd_c00114{bottom:380.989387pt;}
.ybc_c00114{bottom:383.366475pt;}
.yba_c00114{bottom:385.236309pt;}
.ybb_c00114{bottom:386.187573pt;}
.yb9_c00114{bottom:386.454272pt;}
.yb8_c00114{bottom:390.900480pt;}
.yb7_c00114{bottom:391.381664pt;}
.yb6_c00114{bottom:392.000597pt;}
.yb5_c00114{bottom:392.662432pt;}
.yb4_c00114{bottom:393.048875pt;}
.yb3_c00114{bottom:393.845685pt;}
.yb2_c00114{bottom:406.048683pt;}
.yb1_c00114{bottom:406.992320pt;}
.yb0_c00114{bottom:407.552021pt;}
.ya5_c00114{bottom:407.760000pt;}
.yaf_c00114{bottom:408.059755pt;}
.yae_c00114{bottom:408.647253pt;}
.yad_c00114{bottom:409.438315pt;}
.yac_c00114{bottom:410.160021pt;}
.yab_c00114{bottom:410.801771pt;}
.yaa_c00114{bottom:411.143616pt;}
.ya9_c00114{bottom:411.770325pt;}
.ya8_c00114{bottom:412.653419pt;}
.ya7_c00114{bottom:413.206059pt;}
.ya6_c00114{bottom:413.762667pt;}
.ya4_c00114{bottom:427.177687pt;}
.ya3_c00114{bottom:428.037151pt;}
.ya2_c00114{bottom:428.405340pt;}
.ya1_c00114{bottom:428.787885pt;}
.ya0_c00114{bottom:429.359273pt;}
.y9f_c00114{bottom:429.840333pt;}
.y9e_c00114{bottom:431.119351pt;}
.y9d_c00114{bottom:431.396960pt;}
.y9c_c00114{bottom:431.986209pt;}
.y9b_c00114{bottom:432.957104pt;}
.y9a_c00114{bottom:446.440541pt;}
.y99_c00114{bottom:447.221525pt;}
.y98_c00114{bottom:447.495067pt;}
.y97_c00114{bottom:448.171789pt;}
.y96_c00114{bottom:448.538296pt;}
.y95_c00114{bottom:449.842161pt;}
.y94_c00114{bottom:450.849712pt;}
.y93_c00114{bottom:451.259400pt;}
.y92_c00114{bottom:451.683649pt;}
.y91_c00114{bottom:452.123205pt;}
.y90_c00114{bottom:453.117275pt;}
.y8f_c00114{bottom:466.669415pt;}
.y8e_c00114{bottom:467.073220pt;}
.y8d_c00114{bottom:467.473016pt;}
.y8c_c00114{bottom:468.029991pt;}
.y8b_c00114{bottom:468.952764pt;}
.y8a_c00114{bottom:469.280123pt;}
.y89_c00114{bottom:469.883928pt;}
.y88_c00114{bottom:470.183640pt;}
.y87_c00114{bottom:470.727217pt;}
.y86_c00114{bottom:471.677481pt;}
.y85_c00114{bottom:471.936917pt;}
.y84_c00114{bottom:472.797637pt;}
.y83_c00114{bottom:487.783104pt;}
.y82_c00114{bottom:488.794079pt;}
.y81_c00114{bottom:489.300107pt;}
.y80_c00114{bottom:489.629956pt;}
.y7f_c00114{bottom:489.782931pt;}
.y7e_c00114{bottom:490.381783pt;}
.y7d_c00114{bottom:490.562547pt;}
.y7c_c00114{bottom:491.439344pt;}
.y7b_c00114{bottom:491.901691pt;}
.y7a_c00114{bottom:492.326093pt;}
.y79_c00114{bottom:492.716153pt;}
.y78_c00114{bottom:507.498175pt;}
.y77_c00114{bottom:508.244180pt;}
.y76_c00114{bottom:508.550623pt;}
.y75_c00114{bottom:509.074692pt;}
.y74_c00114{bottom:509.573457pt;}
.y73_c00114{bottom:510.002973pt;}
.y72_c00114{bottom:510.283968pt;}
.y71_c00114{bottom:511.294967pt;}
.y70_c00114{bottom:511.781176pt;}
.y6f_c00114{bottom:512.145980pt;}
.y6e_c00114{bottom:512.396149pt;}
.y6d_c00114{bottom:527.577929pt;}
.y6c_c00114{bottom:527.868179pt;}
.y6b_c00114{bottom:528.033289pt;}
.y6a_c00114{bottom:528.719108pt;}
.y69_c00114{bottom:529.325031pt;}
.y68_c00114{bottom:529.464693pt;}
.y67_c00114{bottom:529.902324pt;}
.y66_c00114{bottom:530.058036pt;}
.y65_c00114{bottom:530.391799pt;}
.y64_c00114{bottom:530.656684pt;}
.y63_c00114{bottom:531.181341pt;}
.y62_c00114{bottom:531.540468pt;}
.y61_c00114{bottom:532.316807pt;}
.y60_c00114{bottom:547.662367pt;}
.y5f_c00114{bottom:547.969501pt;}
.y5e_c00114{bottom:548.260207pt;}
.y5d_c00114{bottom:548.521893pt;}
.y5c_c00114{bottom:548.723369pt;}
.y5b_c00114{bottom:549.053019pt;}
.y5a_c00114{bottom:549.496343pt;}
.y59_c00114{bottom:549.760537pt;}
.y58_c00114{bottom:549.986256pt;}
.y57_c00114{bottom:550.808099pt;}
.y56_c00114{bottom:551.424504pt;}
.y55_c00114{bottom:551.758209pt;}
.y54_c00114{bottom:567.504300pt;}
.y53_c00114{bottom:567.898140pt;}
.y52_c00114{bottom:568.255481pt;}
.y51_c00114{bottom:568.595467pt;}
.y50_c00114{bottom:568.803380pt;}
.y4f_c00114{bottom:569.550408pt;}
.y4e_c00114{bottom:569.975813pt;}
.y4d_c00114{bottom:570.319328pt;}
.y4c_c00114{bottom:570.786909pt;}
.y4b_c00114{bottom:571.023676pt;}
.y4a_c00114{bottom:571.241168pt;}
.y49_c00114{bottom:571.705472pt;}
.y48_c00114{bottom:571.919087pt;}
.y47_c00114{bottom:587.791069pt;}
.y46_c00114{bottom:588.162663pt;}
.y45_c00114{bottom:588.724487pt;}
.y44_c00114{bottom:588.919483pt;}
.y43_c00114{bottom:589.257424pt;}
.y42_c00114{bottom:589.529911pt;}
.y41_c00114{bottom:589.938792pt;}
.y40_c00114{bottom:590.128159pt;}
.y3f_c00114{bottom:590.691759pt;}
.y3e_c00114{bottom:591.023220pt;}
.y3d_c00114{bottom:591.599121pt;}
.y3c_c00114{bottom:607.990541pt;}
.y3b_c00114{bottom:608.357765pt;}
.y3a_c00114{bottom:608.852369pt;}
.y39_c00114{bottom:609.098381pt;}
.y38_c00114{bottom:609.634409pt;}
.y37_c00114{bottom:609.865445pt;}
.y36_c00114{bottom:610.191317pt;}
.y35_c00114{bottom:610.606445pt;}
.y34_c00114{bottom:610.927901pt;}
.y33_c00114{bottom:611.520149pt;}
.y32_c00114{bottom:627.768805pt;}
.y31_c00114{bottom:627.986857pt;}
.y30_c00114{bottom:628.358617pt;}
.y2f_c00114{bottom:628.995913pt;}
.y2e_c00114{bottom:629.179189pt;}
.y2d_c00114{bottom:629.598529pt;}
.y2c_c00114{bottom:629.847013pt;}
.y2b_c00114{bottom:630.099445pt;}
.y2a_c00114{bottom:630.696085pt;}
.y29_c00114{bottom:630.836269pt;}
.y28_c00114{bottom:631.201333pt;}
.y27_c00114{bottom:654.844000pt;}
.y26_c00114{bottom:672.437333pt;}
.y25_c00114{bottom:672.566667pt;}
.y24_c00114{bottom:672.696000pt;}
.y23_c00114{bottom:672.817333pt;}
.y22_c00114{bottom:673.236000pt;}
.y21_c00114{bottom:673.886667pt;}
.y20_c00114{bottom:674.482667pt;}
.y1f_c00114{bottom:674.985333pt;}
.y1e_c00114{bottom:675.233333pt;}
.y1d_c00114{bottom:675.518667pt;}
.y1c_c00114{bottom:675.840000pt;}
.y1b_c00114{bottom:692.894667pt;}
.y1a_c00114{bottom:693.232000pt;}
.y19_c00114{bottom:693.428000pt;}
.y18_c00114{bottom:693.632000pt;}
.y17_c00114{bottom:694.129333pt;}
.y16_c00114{bottom:694.434667pt;}
.y15_c00114{bottom:694.826667pt;}
.y14_c00114{bottom:694.953333pt;}
.y13_c00114{bottom:695.172000pt;}
.y12_c00114{bottom:695.302667pt;}
.y11_c00114{bottom:695.760000pt;}
.y10_c00114{bottom:711.672000pt;}
.yf_c00114{bottom:712.117333pt;}
.ye_c00114{bottom:712.250667pt;}
.yd_c00114{bottom:712.793333pt;}
.yc_c00114{bottom:713.013333pt;}
.yb_c00114{bottom:713.288000pt;}
.ya_c00114{bottom:713.641333pt;}
.y9_c00114{bottom:713.912000pt;}
.y8_c00114{bottom:714.409333pt;}
.y7_c00114{bottom:714.601333pt;}
.y6_c00114{bottom:714.873333pt;}
.y5_c00114{bottom:715.202667pt;}
.y4_c00114{bottom:715.370667pt;}
.y3_c00114{bottom:715.681333pt;}
.y2_c00114{bottom:732.000000pt;}
.y1_c00114{bottom:741.120000pt;}
.h1c_c00114{height:14.933333pt;}
.h10_c00114{height:23.336320pt;}
.h3_c00114{height:45.733333pt;}
.hf_c00114{height:53.206809pt;}
.hb_c00114{height:54.135526pt;}
.h14_c00114{height:55.072861pt;}
.h1a_c00114{height:56.000000pt;}
.h17_c00114{height:56.006300pt;}
.h19_c00114{height:57.873176pt;}
.h15_c00114{height:59.740053pt;}
.h4_c00114{height:60.666667pt;}
.h8_c00114{height:60.669124pt;}
.h12_c00114{height:61.606930pt;}
.h5_c00114{height:62.533333pt;}
.hc_c00114{height:62.535866pt;}
.h18_c00114{height:62.540368pt;}
.hd_c00114{height:63.466667pt;}
.h6_c00114{height:63.469237pt;}
.h16_c00114{height:63.473806pt;}
.h1b_c00114{height:64.400000pt;}
.h7_c00114{height:64.402608pt;}
.h13_c00114{height:64.407245pt;}
.h9_c00114{height:65.335979pt;}
.he_c00114{height:65.341695pt;}
.ha_c00114{height:66.269350pt;}
.h11_c00114{height:66.275148pt;}
.h2_c00114{height:82.133333pt;}
.h1_c00114{height:893.333333pt;}
.h0_c00114{height:893.466667pt;}
.w0_c00114{width:627.066667pt;}
.w1_c00114{width:627.333333pt;}
.x0_c00114{left:0.000000pt;}
.xda_c00114{left:32.430667pt;}
.xd4_c00114{left:33.360000pt;}
.x89_c00114{left:35.519563pt;}
.xab_c00114{left:37.307353pt;}
.x81_c00114{left:38.914144pt;}
.xc8_c00114{left:40.370940pt;}
.xdb_c00114{left:41.817333pt;}
.xa1_c00114{left:42.793133pt;}
.x9b_c00114{left:44.909413pt;}
.xc2_c00114{left:47.941480pt;}
.x79_c00114{left:51.674667pt;}
.x9c_c00114{left:73.771187pt;}
.xc9_c00114{left:81.170940pt;}
.x51_c00114{left:82.386887pt;}
.xac_c00114{left:83.846833pt;}
.x8f_c00114{left:84.786667pt;}
.x38_c00114{left:86.515385pt;}
.x5f_c00114{left:88.177645pt;}
.x41_c00114{left:89.157160pt;}
.x2e_c00114{left:90.136287pt;}
.x3_c00114{left:91.574667pt;}
.xb7_c00114{left:98.437973pt;}
.x8a_c00114{left:101.820117pt;}
.x24_c00114{left:105.738667pt;}
.xd5_c00114{left:107.280000pt;}
.x42_c00114{left:108.595479pt;}
.x5a_c00114{left:109.780916pt;}
.xa2_c00114{left:111.231600pt;}
.x93_c00114{left:112.959973pt;}
.x23_c00114{left:115.198667pt;}
.x60_c00114{left:118.183232pt;}
.xb3_c00114{left:119.814213pt;}
.x7a_c00114{left:121.002667pt;}
.x4b_c00114{left:122.299408pt;}
.x4_c00114{left:126.132000pt;}
.x9d_c00114{left:128.310673pt;}
.xce_c00114{left:129.656693pt;}
.xad_c00114{left:134.545300pt;}
.x5b_c00114{left:137.869241pt;}
.xbc_c00114{left:139.725847pt;}
.x52_c00114{left:142.126072pt;}
.x5_c00114{left:144.850667pt;}
.x25_c00114{left:146.301333pt;}
.x82_c00114{left:147.480416pt;}
.x11_c00114{left:148.946667pt;}
.x43_c00114{left:150.850723pt;}
.x6d_c00114{left:153.256276pt;}
.x2f_c00114{left:155.941620pt;}
.x1a_c00114{left:158.545333pt;}
.x94_c00114{left:160.730413pt;}
.x26_c00114{left:161.877333pt;}
.xb4_c00114{left:163.472267pt;}
.x12_c00114{left:165.274667pt;}
.x44_c00114{left:170.571696pt;}
.x5c_c00114{left:175.298564pt;}
.x7b_c00114{left:176.196000pt;}
.x39_c00114{left:177.258569pt;}
.x90_c00114{left:179.837333pt;}
.x6_c00114{left:181.370667pt;}
.x6e_c00114{left:182.538692pt;}
.x4c_c00114{left:183.973523pt;}
.x1b_c00114{left:186.173333pt;}
.x8b_c00114{left:187.989344pt;}
.xc3_c00114{left:189.930573pt;}
.x30_c00114{left:191.658953pt;}
.x13_c00114{left:192.664000pt;}
.xca_c00114{left:197.629607pt;}
.xa3_c00114{left:200.212920pt;}
.x95_c00114{left:202.014660pt;}
.x73_c00114{left:206.508735pt;}
.x14_c00114{left:208.472000pt;}
.x53_c00114{left:210.099624pt;}
.x7_c00114{left:211.572000pt;}
.x7c_c00114{left:215.365333pt;}
.xbd_c00114{left:220.456873pt;}
.x9e_c00114{left:221.398740pt;}
.x65_c00114{left:225.428211pt;}
.x27_c00114{left:228.170667pt;}
.xa4_c00114{left:229.257440pt;}
.x54_c00114{left:230.493559pt;}
.x8_c00114{left:232.921333pt;}
.x45_c00114{left:234.609211pt;}
.xae_c00114{left:235.618213pt;}
.x7d_c00114{left:236.730667pt;}
.x31_c00114{left:237.784287pt;}
.x96_c00114{left:240.423840pt;}
.x1c_c00114{left:242.056000pt;}
.xdc_c00114{left:244.046667pt;}
.xd6_c00114{left:246.240000pt;}
.xb5_c00114{left:249.760473pt;}
.x3a_c00114{left:252.624564pt;}
.x61_c00114{left:253.831681pt;}
.xb8_c00114{left:255.030933pt;}
.x28_c00114{left:256.218667pt;}
.x15_c00114{left:257.421333pt;}
.xcb_c00114{left:258.372273pt;}
.xa5_c00114{left:259.736447pt;}
.x66_c00114{left:261.675588pt;}
.x46_c00114{left:265.813980pt;}
.x55_c00114{left:268.137536pt;}
.xbe_c00114{left:269.368007pt;}
.xaf_c00114{left:271.832933pt;}
.x32_c00114{left:273.992287pt;}
.x7e_c00114{left:276.840000pt;}
.x91_c00114{left:278.566667pt;}
.x85_c00114{left:280.510187pt;}
.x67_c00114{left:281.642508pt;}
.x29_c00114{left:283.828000pt;}
.xb9_c00114{left:285.200240pt;}
.xcf_c00114{left:286.197980pt;}
.x9_c00114{left:288.128000pt;}
.x3b_c00114{left:293.462859pt;}
.x16_c00114{left:295.582667pt;}
.xa6_c00114{left:297.651907pt;}
.x33_c00114{left:299.662953pt;}
.xd7_c00114{left:300.720000pt;}
.x56_c00114{left:301.798991pt;}
.x47_c00114{left:304.487951pt;}
.xc4_c00114{left:306.355073pt;}
.x1d_c00114{left:308.288000pt;}
.x57_c00114{left:312.575940pt;}
.x62_c00114{left:313.786855pt;}
.x4d_c00114{left:315.056335pt;}
.xa_c00114{left:318.157333pt;}
.x3c_c00114{left:320.775952pt;}
.x68_c00114{left:321.915003pt;}
.x63_c00114{left:325.598435pt;}
.xa7_c00114{left:326.773740pt;}
.x8c_c00114{left:328.654197pt;}
.x2a_c00114{left:330.421333pt;}
.xcc_c00114{left:337.337607pt;}
.xd3_c00114{left:340.223493pt;}
.xd0_c00114{left:342.343953pt;}
.x69_c00114{left:343.768493pt;}
.x5d_c00114{left:346.137753pt;}
.xbf_c00114{left:349.772387pt;}
.x2b_c00114{left:350.785333pt;}
.x3d_c00114{left:354.620985pt;}
.xb_c00114{left:357.486667pt;}
.x34_c00114{left:359.221620pt;}
.x97_c00114{left:362.121593pt;}
.x74_c00114{left:363.283095pt;}
.xdd_c00114{left:366.480000pt;}
.xb0_c00114{left:367.848133pt;}
.xcd_c00114{left:368.766940pt;}
.x7f_c00114{left:371.388000pt;}
.x48_c00114{left:372.378727pt;}
.x3e_c00114{left:374.064805pt;}
.x1e_c00114{left:380.530667pt;}
.x17_c00114{left:383.184000pt;}
.x86_c00114{left:384.451904pt;}
.x35_c00114{left:386.556287pt;}
.xc_c00114{left:387.968000pt;}
.x64_c00114{left:389.878785pt;}
.x49_c00114{left:391.331724pt;}
.x4e_c00114{left:392.348972pt;}
.xd8_c00114{left:394.080000pt;}
.xd1_c00114{left:398.281927pt;}
.x98_c00114{left:400.289420pt;}
.x6a_c00114{left:405.258503pt;}
.x18_c00114{left:407.664000pt;}
.x5e_c00114{left:409.970116pt;}
.xd_c00114{left:412.444000pt;}
.x6f_c00114{left:416.732723pt;}
.xd9_c00114{left:419.040000pt;}
.x99_c00114{left:420.473473pt;}
.x2c_c00114{left:421.596000pt;}
.x58_c00114{left:424.666575pt;}
.xa8_c00114{left:425.901840pt;}
.x1f_c00114{left:427.089333pt;}
.xba_c00114{left:428.741800pt;}
.x3f_c00114{left:430.266968pt;}
.x8d_c00114{left:434.970805pt;}
.x75_c00114{left:436.680455pt;}
.x4f_c00114{left:438.625885pt;}
.x20_c00114{left:440.569333pt;}
.x36_c00114{left:441.512287pt;}
.x6b_c00114{left:442.401832pt;}
.x59_c00114{left:446.989771pt;}
.x9a_c00114{left:448.319900pt;}
.x19_c00114{left:449.906667pt;}
.x9f_c00114{left:452.302180pt;}
.x21_c00114{left:454.970667pt;}
.x92_c00114{left:458.768000pt;}
.x70_c00114{left:461.847620pt;}
.x2d_c00114{left:462.902667pt;}
.x76_c00114{left:464.996768pt;}
.xc6_c00114{left:466.153073pt;}
.x40_c00114{left:467.406632pt;}
.x22_c00114{left:469.334667pt;}
.xe_c00114{left:472.733333pt;}
.x83_c00114{left:473.787211pt;}
.x80_c00114{left:474.821333pt;}
.x71_c00114{left:480.091969pt;}
.x37_c00114{left:482.314953pt;}
.xa9_c00114{left:483.728253pt;}
.xc0_c00114{left:485.128973pt;}
.xf_c00114{left:487.580000pt;}
.x4a_c00114{left:490.496603pt;}
.xb1_c00114{left:491.498727pt;}
.x87_c00114{left:494.111264pt;}
.x6c_c00114{left:495.984273pt;}
.x50_c00114{left:498.385345pt;}
.xc7_c00114{left:516.529293pt;}
.xc5_c00114{left:517.812713pt;}
.xbb_c00114{left:522.416247pt;}
.xd2_c00114{left:523.442427pt;}
.xc1_c00114{left:525.172507pt;}
.xb2_c00114{left:527.293407pt;}
.xa0_c00114{left:528.720653pt;}
.x8e_c00114{left:530.045109pt;}
.x77_c00114{left:531.157059pt;}
.x72_c00114{left:532.198495pt;}
.x78_c00114{left:533.520000pt;}
.x88_c00114{left:535.989237pt;}
.x10_c00114{left:536.994667pt;}
.xb6_c00114{left:539.860047pt;}
.xaa_c00114{left:541.326667pt;}
.x84_c00114{left:545.408725pt;}
.x1_c00114{left:548.400000pt;}
.x2_c00114{left:551.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9_c00115{transform:matrix(0.003303,-0.000119,0.009003,0.249838,0,0);-ms-transform:matrix(0.003303,-0.000119,0.009003,0.249838,0,0);-webkit-transform:matrix(0.003303,-0.000119,0.009003,0.249838,0,0);}
.m2_c00115{transform:matrix(0.048369,-0.001743,0.009003,0.249838,0,0);-ms-transform:matrix(0.048369,-0.001743,0.009003,0.249838,0,0);-webkit-transform:matrix(0.048369,-0.001743,0.009003,0.249838,0,0);}
.me8_c00115{transform:matrix(0.049895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049895,0.000000,0.000000,0.250000,0,0);}
.ma7_c00115{transform:matrix(0.061690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061690,0.000000,0.000000,0.250000,0,0);}
.mf4_c00115{transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.089757,-0.003234,0.009003,0.249838,0,0);-ms-transform:matrix(0.089757,-0.003234,0.009003,0.249838,0,0);-webkit-transform:matrix(0.089757,-0.003234,0.009003,0.249838,0,0);}
.m9d_c00115{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.145268,-0.001453,0.002500,0.249988,0,0);-ms-transform:matrix(0.145268,-0.001453,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145268,-0.001453,0.002500,0.249988,0,0);}
.m3c_c00115{transform:matrix(0.145453,-0.001455,0.002500,0.249988,0,0);-ms-transform:matrix(0.145453,-0.001455,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145453,-0.001455,0.002500,0.249988,0,0);}
.mac_c00115{transform:matrix(0.145545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145545,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.147450,-0.001180,0.002000,0.249992,0,0);-ms-transform:matrix(0.147450,-0.001180,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147450,-0.001180,0.002000,0.249992,0,0);}
.mda_c00115{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);}
.m79_c00115{transform:matrix(0.147680,-0.001181,0.002000,0.249992,0,0);-ms-transform:matrix(0.147680,-0.001181,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147680,-0.001181,0.002000,0.249992,0,0);}
.m55_c00115{transform:matrix(0.148125,-0.001185,0.002000,0.249992,0,0);-ms-transform:matrix(0.148125,-0.001185,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148125,-0.001185,0.002000,0.249992,0,0);}
.mab_c00115{transform:matrix(0.149255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149255,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.149445,-0.001196,0.002000,0.249992,0,0);-ms-transform:matrix(0.149445,-0.001196,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149445,-0.001196,0.002000,0.249992,0,0);}
.mf_c00115{transform:matrix(0.150347,-0.001503,0.002500,0.249988,0,0);-ms-transform:matrix(0.150347,-0.001503,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150347,-0.001503,0.002500,0.249988,0,0);}
.mff_c00115{transform:matrix(0.150405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150405,0.000000,0.000000,0.250000,0,0);}
.m14b_c00115{transform:matrix(0.150515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150515,0.000000,0.000000,0.250000,0,0);}
.m96_c00115{transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);-ms-transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);}
.me6_c00115{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);}
.m146_c00115{transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);}
.m73_c00115{transform:matrix(0.151555,-0.001212,0.002000,0.249992,0,0);-ms-transform:matrix(0.151555,-0.001212,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151555,-0.001212,0.002000,0.249992,0,0);}
.mde_c00115{transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151635,0.000000,0.000000,0.250000,0,0);}
.m14c_c00115{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);}
.m14e_c00115{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);}
.m7d_c00115{transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);-ms-transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);}
.m5a_c00115{transform:matrix(0.154555,-0.001236,0.002000,0.249992,0,0);-ms-transform:matrix(0.154555,-0.001236,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154555,-0.001236,0.002000,0.249992,0,0);}
.m20_c00115{transform:matrix(0.154587,-0.001546,0.002500,0.249988,0,0);-ms-transform:matrix(0.154587,-0.001546,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154587,-0.001546,0.002500,0.249988,0,0);}
.mfc_c00115{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);}
.m153_c00115{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);}
.m152_c00115{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);}
.m1a_c00115{transform:matrix(0.155837,-0.001558,0.002500,0.249988,0,0);-ms-transform:matrix(0.155837,-0.001558,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155837,-0.001558,0.002500,0.249988,0,0);}
.m136_c00115{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);}
.m6f_c00115{transform:matrix(0.155860,-0.001247,0.002000,0.249992,0,0);-ms-transform:matrix(0.155860,-0.001247,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155860,-0.001247,0.002000,0.249992,0,0);}
.m44_c00115{transform:matrix(0.156195,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156195,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156195,-0.001250,0.002000,0.249992,0,0);}
.m104_c00115{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);}
.mad_c00115{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);}
.m9b_c00115{transform:matrix(0.156920,-0.001255,0.002000,0.249992,0,0);-ms-transform:matrix(0.156920,-0.001255,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156920,-0.001255,0.002000,0.249992,0,0);}
.m4d_c00115{transform:matrix(0.157515,-0.001260,0.002000,0.249992,0,0);-ms-transform:matrix(0.157515,-0.001260,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157515,-0.001260,0.002000,0.249992,0,0);}
.m7b_c00115{transform:matrix(0.157630,-0.001261,0.002000,0.249992,0,0);-ms-transform:matrix(0.157630,-0.001261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157630,-0.001261,0.002000,0.249992,0,0);}
.m35_c00115{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);}
.ma4_c00115{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);}
.m159_c00115{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.mbb_c00115{transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158365,0.000000,0.000000,0.250000,0,0);}
.m52_c00115{transform:matrix(0.158900,-0.001271,0.002000,0.249992,0,0);-ms-transform:matrix(0.158900,-0.001271,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158900,-0.001271,0.002000,0.249992,0,0);}
.m23_c00115{transform:matrix(0.159667,-0.001597,0.002500,0.249988,0,0);-ms-transform:matrix(0.159667,-0.001597,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159667,-0.001597,0.002500,0.249988,0,0);}
.maf_c00115{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.m13b_c00115{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);}
.mbe_c00115{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);}
.ma5_c00115{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);}
.m37_c00115{transform:matrix(0.161107,-0.001611,0.002500,0.249988,0,0);-ms-transform:matrix(0.161107,-0.001611,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161107,-0.001611,0.002500,0.249988,0,0);}
.m2e_c00115{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);}
.m82_c00115{transform:matrix(0.161660,-0.001293,0.002000,0.249992,0,0);-ms-transform:matrix(0.161660,-0.001293,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161660,-0.001293,0.002000,0.249992,0,0);}
.m145_c00115{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);}
.m107_c00115{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);}
.m6c_c00115{transform:matrix(0.161995,-0.001296,0.002000,0.249992,0,0);-ms-transform:matrix(0.161995,-0.001296,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161995,-0.001296,0.002000,0.249992,0,0);}
.m9e_c00115{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);}
.me_c00115{transform:matrix(0.163377,-0.001634,0.002500,0.249988,0,0);-ms-transform:matrix(0.163377,-0.001634,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163377,-0.001634,0.002500,0.249988,0,0);}
.md0_c00115{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);}
.m1e_c00115{transform:matrix(0.164542,-0.001645,0.002500,0.249988,0,0);-ms-transform:matrix(0.164542,-0.001645,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164542,-0.001645,0.002500,0.249988,0,0);}
.md2_c00115{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);}
.m45_c00115{transform:matrix(0.164680,-0.001317,0.002000,0.249992,0,0);-ms-transform:matrix(0.164680,-0.001317,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164680,-0.001317,0.002000,0.249992,0,0);}
.mfb_c00115{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);}
.m86_c00115{transform:matrix(0.165485,-0.001324,0.002000,0.249992,0,0);-ms-transform:matrix(0.165485,-0.001324,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165485,-0.001324,0.002000,0.249992,0,0);}
.m14a_c00115{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);}
.m57_c00115{transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);-ms-transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);}
.m70_c00115{transform:matrix(0.166405,-0.001331,0.002000,0.249992,0,0);-ms-transform:matrix(0.166405,-0.001331,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166405,-0.001331,0.002000,0.249992,0,0);}
.mbd_c00115{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);}
.mcb_c00115{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);}
.m7f_c00115{transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-ms-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);}
.m14d_c00115{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);}
.m92_c00115{transform:matrix(0.167380,-0.001339,0.002000,0.249992,0,0);-ms-transform:matrix(0.167380,-0.001339,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167380,-0.001339,0.002000,0.249992,0,0);}
.mc4_c00115{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);}
.mc6_c00115{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);}
.mcf_c00115{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);}
.m36_c00115{transform:matrix(0.167897,-0.001679,0.002500,0.249988,0,0);-ms-transform:matrix(0.167897,-0.001679,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167897,-0.001679,0.002500,0.249988,0,0);}
.m77_c00115{transform:matrix(0.168205,-0.001346,0.002000,0.249992,0,0);-ms-transform:matrix(0.168205,-0.001346,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168205,-0.001346,0.002000,0.249992,0,0);}
.m7a_c00115{transform:matrix(0.168525,-0.001348,0.002000,0.249992,0,0);-ms-transform:matrix(0.168525,-0.001348,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168525,-0.001348,0.002000,0.249992,0,0);}
.m29_c00115{transform:matrix(0.168832,-0.001688,0.002500,0.249988,0,0);-ms-transform:matrix(0.168832,-0.001688,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168832,-0.001688,0.002500,0.249988,0,0);}
.mbf_c00115{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);}
.m158_c00115{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);}
.m5f_c00115{transform:matrix(0.169145,-0.001353,0.002000,0.249992,0,0);-ms-transform:matrix(0.169145,-0.001353,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169145,-0.001353,0.002000,0.249992,0,0);}
.m21_c00115{transform:matrix(0.169287,-0.001693,0.002500,0.249988,0,0);-ms-transform:matrix(0.169287,-0.001693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169287,-0.001693,0.002500,0.249988,0,0);}
.m5c_c00115{transform:matrix(0.169875,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169875,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169875,-0.001359,0.002000,0.249992,0,0);}
.mb9_c00115{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);}
.mdd_c00115{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);}
.md6_c00115{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m123_c00115{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);}
.md1_c00115{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);}
.m103_c00115{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);}
.m13e_c00115{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);}
.ma8_c00115{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);}
.m140_c00115{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);}
.m53_c00115{transform:matrix(0.171850,-0.001375,0.002000,0.249992,0,0);-ms-transform:matrix(0.171850,-0.001375,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171850,-0.001375,0.002000,0.249992,0,0);}
.mb4_c00115{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);}
.m135_c00115{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m139_c00115{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);}
.m101_c00115{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);}
.md7_c00115{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);}
.m157_c00115{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{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);}
.mf7_c00115{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);}
.m47_c00115{transform:matrix(0.173379,-0.001387,0.002000,0.249992,0,0);-ms-transform:matrix(0.173379,-0.001387,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173379,-0.001387,0.002000,0.249992,0,0);}
.m41_c00115{transform:matrix(0.173459,-0.001388,0.002000,0.249992,0,0);-ms-transform:matrix(0.173459,-0.001388,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173459,-0.001388,0.002000,0.249992,0,0);}
.m105_c00115{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);}
.m15_c00115{transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);}
.md3_c00115{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);}
.mca_c00115{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);}
.me0_c00115{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);}
.m17_c00115{transform:matrix(0.174066,-0.001741,0.002500,0.249988,0,0);-ms-transform:matrix(0.174066,-0.001741,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174066,-0.001741,0.002500,0.249988,0,0);}
.m115_c00115{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);}
.m3f_c00115{transform:matrix(0.174259,-0.001394,0.002000,0.249992,0,0);-ms-transform:matrix(0.174259,-0.001394,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174259,-0.001394,0.002000,0.249992,0,0);}
.m143_c00115{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);}
.m13f_c00115{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);}
.m10d_c00115{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);}
.m108_c00115{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);}
.m26_c00115{transform:matrix(0.175171,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175171,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175171,-0.001752,0.002500,0.249988,0,0);}
.m7c_c00115{transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);}
.m3a_c00115{transform:matrix(0.176391,-0.001764,0.002500,0.249988,0,0);-ms-transform:matrix(0.176391,-0.001764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176391,-0.001764,0.002500,0.249988,0,0);}
.m4c_c00115{transform:matrix(0.176604,-0.001413,0.002000,0.249992,0,0);-ms-transform:matrix(0.176604,-0.001413,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176604,-0.001413,0.002000,0.249992,0,0);}
.m11e_c00115{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);}
.m25_c00115{transform:matrix(0.177111,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177111,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177111,-0.001771,0.002500,0.249988,0,0);}
.m148_c00115{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);}
.m63_c00115{transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);-ms-transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);}
.m113_c00115{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.m10a_c00115{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);}
.m66_c00115{transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);-ms-transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);}
.m1f_c00115{transform:matrix(0.178431,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178431,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178431,-0.001784,0.002500,0.249988,0,0);}
.m15a_c00115{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);}
.mc9_c00115{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);}
.m59_c00115{transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-ms-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);}
.mfa_c00115{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);}
.mb6_c00115{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);}
.m87_c00115{transform:matrix(0.179449,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179449,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179449,-0.001436,0.002000,0.249992,0,0);}
.mf8_c00115{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);}
.m3b_c00115{transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);-ms-transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);}
.m51_c00115{transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);-ms-transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);}
.m156_c00115{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);}
.m61_c00115{transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);}
.m2d_c00115{transform:matrix(0.180651,-0.001807,0.002500,0.249988,0,0);-ms-transform:matrix(0.180651,-0.001807,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180651,-0.001807,0.002500,0.249988,0,0);}
.mc_c00115{transform:matrix(0.180776,-0.001808,0.002500,0.249988,0,0);-ms-transform:matrix(0.180776,-0.001808,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180776,-0.001808,0.002500,0.249988,0,0);}
.ma_c00115{transform:matrix(0.180811,-0.001808,0.002500,0.249988,0,0);-ms-transform:matrix(0.180811,-0.001808,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180811,-0.001808,0.002500,0.249988,0,0);}
.m106_c00115{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);}
.m68_c00115{transform:matrix(0.180884,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180884,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180884,-0.001447,0.002000,0.249992,0,0);}
.ma0_c00115{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);}
.m28_c00115{transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);-ms-transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181561,-0.001816,0.002500,0.249988,0,0);}
.m128_c00115{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);}
.m48_c00115{transform:matrix(0.182009,-0.001456,0.002000,0.249992,0,0);-ms-transform:matrix(0.182009,-0.001456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182009,-0.001456,0.002000,0.249992,0,0);}
.m15b_c00115{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);}
.m50_c00115{transform:matrix(0.182144,-0.001457,0.002000,0.249992,0,0);-ms-transform:matrix(0.182144,-0.001457,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182144,-0.001457,0.002000,0.249992,0,0);}
.m46_c00115{transform:matrix(0.182224,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182224,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182224,-0.001458,0.002000,0.249992,0,0);}
.m60_c00115{transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);}
.m134_c00115{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);}
.m81_c00115{transform:matrix(0.182604,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182604,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182604,-0.001461,0.002000,0.249992,0,0);}
.m10e_c00115{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);}
.maa_c00115{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);}
.mb7_c00115{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);}
.m10b_c00115{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);}
.ma9_c00115{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);}
.m147_c00115{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);}
.m117_c00115{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);}
.m10_c00115{transform:matrix(0.183671,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183671,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183671,-0.001837,0.002500,0.249988,0,0);}
.m155_c00115{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);}
.m4b_c00115{transform:matrix(0.184184,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184184,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184184,-0.001473,0.002000,0.249992,0,0);}
.m8e_c00115{transform:matrix(0.184219,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184219,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184219,-0.001474,0.002000,0.249992,0,0);}
.mcd_c00115{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);}
.me5_c00115{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);}
.m4f_c00115{transform:matrix(0.184794,-0.001478,0.002000,0.249992,0,0);-ms-transform:matrix(0.184794,-0.001478,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184794,-0.001478,0.002000,0.249992,0,0);}
.m74_c00115{transform:matrix(0.184819,-0.001479,0.002000,0.249992,0,0);-ms-transform:matrix(0.184819,-0.001479,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184819,-0.001479,0.002000,0.249992,0,0);}
.me4_c00115{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);}
.m99_c00115{transform:matrix(0.185044,-0.001480,0.002000,0.249992,0,0);-ms-transform:matrix(0.185044,-0.001480,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185044,-0.001480,0.002000,0.249992,0,0);}
.mb0_c00115{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);}
.m80_c00115{transform:matrix(0.186439,-0.001492,0.002000,0.249992,0,0);-ms-transform:matrix(0.186439,-0.001492,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186439,-0.001492,0.002000,0.249992,0,0);}
.m129_c00115{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);}
.m13c_c00115{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);}
.m125_c00115{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);}
.m18_c00115{transform:matrix(0.186661,-0.001867,0.002500,0.249988,0,0);-ms-transform:matrix(0.186661,-0.001867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186661,-0.001867,0.002500,0.249988,0,0);}
.m84_c00115{transform:matrix(0.186884,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186884,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186884,-0.001495,0.002000,0.249992,0,0);}
.m93_c00115{transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);}
.m13_c00115{transform:matrix(0.187506,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187506,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187506,-0.001875,0.002500,0.249988,0,0);}
.mfe_c00115{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);}
.m58_c00115{transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);-ms-transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);}
.m138_c00115{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);}
.m56_c00115{transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);}
.mcc_c00115{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);}
.m1b_c00115{transform:matrix(0.188561,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188561,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188561,-0.001886,0.002500,0.249988,0,0);}
.m102_c00115{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);}
.m127_c00115{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);}
.mc8_c00115{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);}
.m116_c00115{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);}
.md8_c00115{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);}
.m8b_c00115{transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);-ms-transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);}
.m151_c00115{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);}
.m11d_c00115{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);}
.m42_c00115{transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);}
.md_c00115{transform:matrix(0.190465,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190465,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190465,-0.001905,0.002500,0.249988,0,0);}
.m110_c00115{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);}
.m4_c00115{transform:matrix(0.191036,-0.006884,0.009003,0.249838,0,0);-ms-transform:matrix(0.191036,-0.006884,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191036,-0.006884,0.009003,0.249838,0,0);}
.mc1_c00115{transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.191530,-0.001915,0.002500,0.249988,0,0);-ms-transform:matrix(0.191530,-0.001915,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191530,-0.001915,0.002500,0.249988,0,0);}
.mdf_c00115{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);}
.m91_c00115{transform:matrix(0.191569,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191569,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191569,-0.001533,0.002000,0.249992,0,0);}
.m83_c00115{transform:matrix(0.191589,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191589,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191589,-0.001533,0.002000,0.249992,0,0);}
.m8d_c00115{transform:matrix(0.191759,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191759,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191759,-0.001534,0.002000,0.249992,0,0);}
.mb1_c00115{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);}
.m94_c00115{transform:matrix(0.191919,-0.001535,0.002000,0.249992,0,0);-ms-transform:matrix(0.191919,-0.001535,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191919,-0.001535,0.002000,0.249992,0,0);}
.ma3_c00115{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);}
.m154_c00115{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);}
.ma6_c00115{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);}
.mea_c00115{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);}
.m75_c00115{transform:matrix(0.192814,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192814,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192814,-0.001543,0.002000,0.249992,0,0);}
.mc5_c00115{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);}
.m14_c00115{transform:matrix(0.193265,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193265,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193265,-0.001933,0.002500,0.249988,0,0);}
.mb_c00115{transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);-ms-transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);}
.m69_c00115{transform:matrix(0.194339,-0.001555,0.002000,0.249992,0,0);-ms-transform:matrix(0.194339,-0.001555,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194339,-0.001555,0.002000,0.249992,0,0);}
.m2f_c00115{transform:matrix(0.195300,-0.001953,0.002500,0.249988,0,0);-ms-transform:matrix(0.195300,-0.001953,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195300,-0.001953,0.002500,0.249988,0,0);}
.m149_c00115{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);}
.m72_c00115{transform:matrix(0.195964,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.195964,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195964,-0.001568,0.002000,0.249992,0,0);}
.m98_c00115{transform:matrix(0.196059,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.196059,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196059,-0.001568,0.002000,0.249992,0,0);}
.m12_c00115{transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);-ms-transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);}
.m124_c00115{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);}
.md4_c00115{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);}
.m141_c00115{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);}
.md5_c00115{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_c00115{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);}
.mba_c00115{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);}
.m8f_c00115{transform:matrix(0.197389,-0.001579,0.002000,0.249992,0,0);-ms-transform:matrix(0.197389,-0.001579,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197389,-0.001579,0.002000,0.249992,0,0);}
.mc7_c00115{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);}
.m43_c00115{transform:matrix(0.198194,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198194,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198194,-0.001586,0.002000,0.249992,0,0);}
.m19_c00115{transform:matrix(0.198355,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198355,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198355,-0.001984,0.002500,0.249988,0,0);}
.mb2_c00115{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);}
.mce_c00115{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.mf6_c00115{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);}
.m4a_c00115{transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);-ms-transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);}
.m5d_c00115{transform:matrix(0.200554,-0.001604,0.002000,0.249992,0,0);-ms-transform:matrix(0.200554,-0.001604,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200554,-0.001604,0.002000,0.249992,0,0);}
.m97_c00115{transform:matrix(0.200794,-0.001606,0.002000,0.249992,0,0);-ms-transform:matrix(0.200794,-0.001606,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200794,-0.001606,0.002000,0.249992,0,0);}
.m114_c00115{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);}
.m6a_c00115{transform:matrix(0.201414,-0.001611,0.002000,0.249992,0,0);-ms-transform:matrix(0.201414,-0.001611,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201414,-0.001611,0.002000,0.249992,0,0);}
.m1d_c00115{transform:matrix(0.201430,-0.002014,0.002500,0.249988,0,0);-ms-transform:matrix(0.201430,-0.002014,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201430,-0.002014,0.002500,0.249988,0,0);}
.mb8_c00115{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);}
.m13a_c00115{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);}
.md9_c00115{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);}
.m2c_c00115{transform:matrix(0.202550,-0.002025,0.002500,0.249988,0,0);-ms-transform:matrix(0.202550,-0.002025,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202550,-0.002025,0.002500,0.249988,0,0);}
.m142_c00115{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);}
.m109_c00115{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);}
.m100_c00115{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);}
.mdc_c00115{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);}
.m144_c00115{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);}
.m8c_c00115{transform:matrix(0.203498,-0.001628,0.002000,0.249992,0,0);-ms-transform:matrix(0.203498,-0.001628,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203498,-0.001628,0.002000,0.249992,0,0);}
.me7_c00115{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);}
.m121_c00115{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);}
.m9c_c00115{transform:matrix(0.204433,-0.001635,0.002000,0.249992,0,0);-ms-transform:matrix(0.204433,-0.001635,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204433,-0.001635,0.002000,0.249992,0,0);}
.m130_c00115{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);}
.m4e_c00115{transform:matrix(0.205168,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205168,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205168,-0.001641,0.002000,0.249992,0,0);}
.m16_c00115{transform:matrix(0.205215,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205215,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205215,-0.002052,0.002500,0.249988,0,0);}
.m126_c00115{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);}
.m88_c00115{transform:matrix(0.205468,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205468,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205468,-0.001644,0.002000,0.249992,0,0);}
.mc3_c00115{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);}
.m38_c00115{transform:matrix(0.207305,-0.002073,0.002500,0.249988,0,0);-ms-transform:matrix(0.207305,-0.002073,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207305,-0.002073,0.002500,0.249988,0,0);}
.m8a_c00115{transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);}
.m6b_c00115{transform:matrix(0.207403,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207403,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207403,-0.001659,0.002000,0.249992,0,0);}
.m11_c00115{transform:matrix(0.207685,-0.002077,0.002500,0.249988,0,0);-ms-transform:matrix(0.207685,-0.002077,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207685,-0.002077,0.002500,0.249988,0,0);}
.m122_c00115{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);}
.m3d_c00115{transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);}
.m12a_c00115{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);}
.m112_c00115{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);}
.m9a_c00115{transform:matrix(0.209263,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209263,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209263,-0.001674,0.002000,0.249992,0,0);}
.m64_c00115{transform:matrix(0.209788,-0.001678,0.002000,0.249992,0,0);-ms-transform:matrix(0.209788,-0.001678,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209788,-0.001678,0.002000,0.249992,0,0);}
.mc2_c00115{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);}
.m9f_c00115{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);}
.m12c_c00115{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);}
.m49_c00115{transform:matrix(0.210858,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210858,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210858,-0.001687,0.002000,0.249992,0,0);}
.mb5_c00115{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);}
.m10c_c00115{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);}
.m11c_c00115{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);}
.m78_c00115{transform:matrix(0.214878,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214878,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214878,-0.001719,0.002000,0.249992,0,0);}
.mbc_c00115{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);}
.m133_c00115{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);}
.mb3_c00115{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);}
.m132_c00115{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);}
.m12d_c00115{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);}
.m13d_c00115{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);}
.m11f_c00115{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_c00115{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);}
.m131_c00115{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);}
.m2b_c00115{transform:matrix(0.219099,-0.002191,0.002500,0.249988,0,0);-ms-transform:matrix(0.219099,-0.002191,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219099,-0.002191,0.002500,0.249988,0,0);}
.m150_c00115{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);}
.m10f_c00115{transform:matrix(0.220220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220220,0.000000,0.000000,0.250000,0,0);}
.mdb_c00115{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);}
.m5b_c00115{transform:matrix(0.222253,-0.001778,0.002000,0.249992,0,0);-ms-transform:matrix(0.222253,-0.001778,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222253,-0.001778,0.002000,0.249992,0,0);}
.m118_c00115{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);}
.m5e_c00115{transform:matrix(0.225618,-0.001805,0.002000,0.249992,0,0);-ms-transform:matrix(0.225618,-0.001805,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225618,-0.001805,0.002000,0.249992,0,0);}
.m24_c00115{transform:matrix(0.225994,-0.002260,0.002500,0.249988,0,0);-ms-transform:matrix(0.225994,-0.002260,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225994,-0.002260,0.002500,0.249988,0,0);}
.m27_c00115{transform:matrix(0.226349,-0.002263,0.002500,0.249988,0,0);-ms-transform:matrix(0.226349,-0.002263,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226349,-0.002263,0.002500,0.249988,0,0);}
.m95_c00115{transform:matrix(0.226498,-0.001812,0.002000,0.249992,0,0);-ms-transform:matrix(0.226498,-0.001812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226498,-0.001812,0.002000,0.249992,0,0);}
.m32_c00115{transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-ms-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);}
.mc0_c00115{transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);}
.mee_c00115{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);}
.me3_c00115{transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);}
.mf3_c00115{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m111_c00115{transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);}
.m65_c00115{transform:matrix(0.235357,-0.001883,0.002000,0.249992,0,0);-ms-transform:matrix(0.235357,-0.001883,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235357,-0.001883,0.002000,0.249992,0,0);}
.m33_c00115{transform:matrix(0.235498,-0.002355,0.002500,0.249988,0,0);-ms-transform:matrix(0.235498,-0.002355,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235498,-0.002355,0.002500,0.249988,0,0);}
.m2a_c00115{transform:matrix(0.235703,-0.002357,0.002500,0.249988,0,0);-ms-transform:matrix(0.235703,-0.002357,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235703,-0.002357,0.002500,0.249988,0,0);}
.m119_c00115{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);}
.m30_c00115{transform:matrix(0.236543,-0.002365,0.002500,0.249988,0,0);-ms-transform:matrix(0.236543,-0.002365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236543,-0.002365,0.002500,0.249988,0,0);}
.m6d_c00115{transform:matrix(0.236547,-0.001892,0.002000,0.249992,0,0);-ms-transform:matrix(0.236547,-0.001892,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236547,-0.001892,0.002000,0.249992,0,0);}
.mf9_c00115{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);}
.mf2_c00115{transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237845,0.000000,0.000000,0.250000,0,0);}
.m54_c00115{transform:matrix(0.240067,-0.001921,0.002000,0.249992,0,0);-ms-transform:matrix(0.240067,-0.001921,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240067,-0.001921,0.002000,0.249992,0,0);}
.m62_c00115{transform:matrix(0.240882,-0.001927,0.002000,0.249992,0,0);-ms-transform:matrix(0.240882,-0.001927,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240882,-0.001927,0.002000,0.249992,0,0);}
.m71_c00115{transform:matrix(0.241942,-0.001936,0.002000,0.249992,0,0);-ms-transform:matrix(0.241942,-0.001936,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241942,-0.001936,0.002000,0.249992,0,0);}
.m11b_c00115{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m12f_c00115{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m85_c00115{transform:matrix(0.249667,-0.001997,0.002000,0.249992,0,0);-ms-transform:matrix(0.249667,-0.001997,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249667,-0.001997,0.002000,0.249992,0,0);}
.m34_c00115{transform:matrix(0.249698,-0.002497,0.002500,0.249988,0,0);-ms-transform:matrix(0.249698,-0.002497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249698,-0.002497,0.002500,0.249988,0,0);}
.m15c_c00115{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);}
.m1c_c00115{transform:matrix(0.251067,-0.002511,0.002500,0.249988,0,0);-ms-transform:matrix(0.251067,-0.002511,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251067,-0.002511,0.002500,0.249988,0,0);}
.m137_c00115{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.mfd_c00115{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);}
.m89_c00115{transform:matrix(0.258017,-0.002064,0.002000,0.249992,0,0);-ms-transform:matrix(0.258017,-0.002064,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258017,-0.002064,0.002000,0.249992,0,0);}
.me2_c00115{transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);}
.m12b_c00115{transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262710,0.000000,0.000000,0.250000,0,0);}
.m14f_c00115{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);}
.m15d_c00115{transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.271679,-0.009790,0.009003,0.249838,0,0);-ms-transform:matrix(0.271679,-0.009790,0.009003,0.249838,0,0);-webkit-transform:matrix(0.271679,-0.009790,0.009003,0.249838,0,0);}
.mf1_c00115{transform:matrix(0.284470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284470,0.000000,0.000000,0.250000,0,0);}
.meb_c00115{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.me9_c00115{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.297407,-0.010717,0.009003,0.249838,0,0);-ms-transform:matrix(0.297407,-0.010717,0.009003,0.249838,0,0);-webkit-transform:matrix(0.297407,-0.010717,0.009003,0.249838,0,0);}
.m90_c00115{transform:matrix(0.301835,-0.002415,0.002000,0.249992,0,0);-ms-transform:matrix(0.301835,-0.002415,0.002000,0.249992,0,0);-webkit-transform:matrix(0.301835,-0.002415,0.002000,0.249992,0,0);}
.mf0_c00115{transform:matrix(0.311995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311995,0.000000,0.000000,0.250000,0,0);}
.m67_c00115{transform:matrix(0.312640,-0.002501,0.002000,0.249992,0,0);-ms-transform:matrix(0.312640,-0.002501,0.002000,0.249992,0,0);-webkit-transform:matrix(0.312640,-0.002501,0.002000,0.249992,0,0);}
.m11a_c00115{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.m6e_c00115{transform:matrix(0.329779,-0.002638,0.002000,0.249992,0,0);-ms-transform:matrix(0.329779,-0.002638,0.002000,0.249992,0,0);-webkit-transform:matrix(0.329779,-0.002638,0.002000,0.249992,0,0);}
.m12e_c00115{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);}
.mf5_c00115{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.344222,-0.012404,0.009003,0.249838,0,0);-ms-transform:matrix(0.344222,-0.012404,0.009003,0.249838,0,0);-webkit-transform:matrix(0.344222,-0.012404,0.009003,0.249838,0,0);}
.m120_c00115{transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);}
.m7e_c00115{transform:matrix(0.355389,-0.002843,0.002000,0.249992,0,0);-ms-transform:matrix(0.355389,-0.002843,0.002000,0.249992,0,0);-webkit-transform:matrix(0.355389,-0.002843,0.002000,0.249992,0,0);}
.m7_c00115{transform:matrix(0.360606,-0.012995,0.009003,0.249838,0,0);-ms-transform:matrix(0.360606,-0.012995,0.009003,0.249838,0,0);-webkit-transform:matrix(0.360606,-0.012995,0.009003,0.249838,0,0);}
.m0_c00115{transform:matrix(0.376561,-0.013570,0.009003,0.249838,0,0);-ms-transform:matrix(0.376561,-0.013570,0.009003,0.249838,0,0);-webkit-transform:matrix(0.376561,-0.013570,0.009003,0.249838,0,0);}
.ma1_c00115{transform:matrix(0.393430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393430,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.395059,-0.014236,0.009003,0.249838,0,0);-ms-transform:matrix(0.395059,-0.014236,0.009003,0.249838,0,0);-webkit-transform:matrix(0.395059,-0.014236,0.009003,0.249838,0,0);}
.me1_c00115{transform:matrix(0.404330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404330,0.000000,0.000000,0.250000,0,0);}
.m76_c00115{transform:matrix(0.495644,-0.003965,0.002000,0.249992,0,0);-ms-transform:matrix(0.495644,-0.003965,0.002000,0.249992,0,0);-webkit-transform:matrix(0.495644,-0.003965,0.002000,0.249992,0,0);}
.mec_c00115{transform:matrix(0.551450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551450,0.000000,0.000000,0.250000,0,0);}
.med_c00115{transform:matrix(0.576150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576150,0.000000,0.000000,0.250000,0,0);}
.mef_c00115{transform:matrix(0.793070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793070,0.000000,0.000000,0.250000,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;}
.fs13_c00115{font-size:16.800000px;}
.fs6_c00115{font-size:63.003150px;}
.fse_c00115{font-size:67.200000px;}
.fsd_c00115{font-size:68.250000px;}
.fs10_c00115{font-size:69.300000px;}
.fs9_c00115{font-size:69.302218px;}
.fs4_c00115{font-size:69.303465px;}
.fsf_c00115{font-size:70.350000px;}
.fsa_c00115{font-size:70.352251px;}
.fsb_c00115{font-size:71.400000px;}
.fs8_c00115{font-size:71.402285px;}
.fs3_c00115{font-size:71.403570px;}
.fsc_c00115{font-size:72.450000px;}
.fs12_c00115{font-size:73.500000px;}
.fs7_c00115{font-size:73.502352px;}
.fs5_c00115{font-size:73.503675px;}
.fs11_c00115{font-size:74.550000px;}
.fs0_c00115{font-size:109.161609px;}
.fs1_c00115{font-size:122.806811px;}
.fs14_c00115{font-size:207.900000px;}
.fs2_c00115{font-size:230.918789px;}
.y0_c00115{bottom:0.000000px;}
.yae_c00115{bottom:68.580000px;}
.yaf_c00115{bottom:71.301000px;}
.yad_c00115{bottom:138.183000px;}
.yac_c00115{bottom:161.431500px;}
.yab_c00115{bottom:184.116000px;}
.yaa_c00115{bottom:207.060000px;}
.ya9_c00115{bottom:230.218500px;}
.ya8_c00115{bottom:252.690000px;}
.ya7_c00115{bottom:275.817000px;}
.ya6_c00115{bottom:299.068500px;}
.ya5_c00115{bottom:322.225500px;}
.ya4_c00115{bottom:345.135000px;}
.ya3_c00115{bottom:371.590500px;}
.ya2_c00115{bottom:394.140000px;}
.ya1_c00115{bottom:417.297000px;}
.ya0_c00115{bottom:440.008500px;}
.y9f_c00115{bottom:463.528500px;}
.y9e_c00115{bottom:485.955000px;}
.y9d_c00115{bottom:509.097000px;}
.y98_c00115{bottom:531.852060px;}
.y99_c00115{bottom:531.852276px;}
.y97_c00115{bottom:531.852300px;}
.y95_c00115{bottom:531.852396px;}
.y94_c00115{bottom:531.852528px;}
.y92_c00115{bottom:531.852648px;}
.y9c_c00115{bottom:531.852732px;}
.y9b_c00115{bottom:531.852744px;}
.y9a_c00115{bottom:531.852804px;}
.y96_c00115{bottom:531.852852px;}
.y91_c00115{bottom:531.853020px;}
.y93_c00115{bottom:531.853248px;}
.y86_c00115{bottom:553.304460px;}
.y87_c00115{bottom:553.532868px;}
.y88_c00115{bottom:553.803576px;}
.y89_c00115{bottom:554.143152px;}
.y8a_c00115{bottom:554.386212px;}
.y8b_c00115{bottom:554.661852px;}
.y8c_c00115{bottom:554.915724px;}
.y8d_c00115{bottom:555.150696px;}
.y8e_c00115{bottom:555.509988px;}
.y8f_c00115{bottom:555.714876px;}
.y90_c00115{bottom:555.965688px;}
.y7f_c00115{bottom:577.769568px;}
.y7e_c00115{bottom:577.769928px;}
.y80_c00115{bottom:577.770216px;}
.y82_c00115{bottom:577.770432px;}
.y7d_c00115{bottom:577.770480px;}
.y81_c00115{bottom:577.770564px;}
.y77_c00115{bottom:577.770588px;}
.y83_c00115{bottom:577.770780px;}
.y7c_c00115{bottom:577.771020px;}
.y85_c00115{bottom:577.771176px;}
.y78_c00115{bottom:577.771236px;}
.y84_c00115{bottom:577.771248px;}
.y7b_c00115{bottom:577.771392px;}
.y7a_c00115{bottom:577.771512px;}
.y79_c00115{bottom:577.771824px;}
.y6d_c00115{bottom:600.453312px;}
.y74_c00115{bottom:600.453504px;}
.y6b_c00115{bottom:600.453516px;}
.y76_c00115{bottom:600.453528px;}
.y6c_c00115{bottom:600.453684px;}
.y6e_c00115{bottom:600.453732px;}
.y69_c00115{bottom:600.453840px;}
.y70_c00115{bottom:600.453960px;}
.y75_c00115{bottom:600.453972px;}
.y73_c00115{bottom:600.454056px;}
.y71_c00115{bottom:600.454080px;}
.y6a_c00115{bottom:600.454188px;}
.y6f_c00115{bottom:600.454272px;}
.y72_c00115{bottom:600.454668px;}
.y67_c00115{bottom:623.510016px;}
.y68_c00115{bottom:623.510424px;}
.y64_c00115{bottom:623.510664px;}
.y66_c00115{bottom:623.510700px;}
.y5f_c00115{bottom:623.510796px;}
.y62_c00115{bottom:623.511048px;}
.y60_c00115{bottom:623.511084px;}
.y63_c00115{bottom:623.511096px;}
.y5e_c00115{bottom:623.511168px;}
.y65_c00115{bottom:623.511312px;}
.y61_c00115{bottom:623.511480px;}
.y5d_c00115{bottom:646.193112px;}
.y5c_c00115{bottom:646.193436px;}
.y5b_c00115{bottom:646.194108px;}
.y5a_c00115{bottom:646.194540px;}
.y59_c00115{bottom:646.195152px;}
.y58_c00115{bottom:646.195584px;}
.y57_c00115{bottom:646.196016px;}
.y56_c00115{bottom:646.196388px;}
.y54_c00115{bottom:646.196460px;}
.y55_c00115{bottom:646.196928px;}
.y49_c00115{bottom:667.170300px;}
.y4a_c00115{bottom:667.585764px;}
.y4b_c00115{bottom:667.956600px;}
.y4c_c00115{bottom:668.076864px;}
.y4d_c00115{bottom:668.314572px;}
.y4e_c00115{bottom:668.729040px;}
.y4f_c00115{bottom:668.848644px;}
.y50_c00115{bottom:669.567504px;}
.y51_c00115{bottom:669.979872px;}
.y52_c00115{bottom:670.268340px;}
.y53_c00115{bottom:670.436556px;}
.y3e_c00115{bottom:690.661500px;}
.y3f_c00115{bottom:690.877548px;}
.y40_c00115{bottom:691.220976px;}
.y41_c00115{bottom:691.568748px;}
.y42_c00115{bottom:691.857888px;}
.y43_c00115{bottom:692.231868px;}
.y44_c00115{bottom:692.613912px;}
.y45_c00115{bottom:693.210360px;}
.y46_c00115{bottom:693.396240px;}
.y47_c00115{bottom:693.845448px;}
.y48_c00115{bottom:694.039872px;}
.y37_c00115{bottom:718.540170px;}
.y3a_c00115{bottom:718.540410px;}
.y38_c00115{bottom:718.540455px;}
.y36_c00115{bottom:718.540485px;}
.y39_c00115{bottom:718.540740px;}
.y3c_c00115{bottom:718.540980px;}
.y3b_c00115{bottom:718.540995px;}
.y35_c00115{bottom:718.541115px;}
.y3d_c00115{bottom:718.541265px;}
.y2b_c00115{bottom:740.338455px;}
.y2c_c00115{bottom:740.604525px;}
.y2d_c00115{bottom:741.006300px;}
.y2e_c00115{bottom:741.442290px;}
.y2f_c00115{bottom:741.859800px;}
.y30_c00115{bottom:742.066575px;}
.y31_c00115{bottom:742.759260px;}
.y32_c00115{bottom:743.296560px;}
.y33_c00115{bottom:743.646945px;}
.y34_c00115{bottom:743.765505px;}
.y20_c00115{bottom:762.479760px;}
.y21_c00115{bottom:762.693045px;}
.y22_c00115{bottom:762.868620px;}
.y23_c00115{bottom:763.605825px;}
.y24_c00115{bottom:763.827315px;}
.y25_c00115{bottom:764.467050px;}
.y26_c00115{bottom:765.026025px;}
.y27_c00115{bottom:765.398685px;}
.y28_c00115{bottom:766.062765px;}
.y29_c00115{bottom:766.232985px;}
.y2a_c00115{bottom:766.583940px;}
.y15_c00115{bottom:784.890195px;}
.y16_c00115{bottom:785.152140px;}
.y17_c00115{bottom:785.522100px;}
.y18_c00115{bottom:786.097275px;}
.y19_c00115{bottom:786.394335px;}
.y1a_c00115{bottom:786.910035px;}
.y1b_c00115{bottom:787.247460px;}
.y1c_c00115{bottom:787.498680px;}
.y1d_c00115{bottom:788.216820px;}
.y1e_c00115{bottom:788.440995px;}
.y1f_c00115{bottom:788.765040px;}
.yb_c00115{bottom:808.111500px;}
.yc_c00115{bottom:808.468425px;}
.yd_c00115{bottom:809.335110px;}
.ye_c00115{bottom:810.048060px;}
.yf_c00115{bottom:810.490860px;}
.y10_c00115{bottom:810.914820px;}
.y11_c00115{bottom:811.133235px;}
.y12_c00115{bottom:811.530405px;}
.y13_c00115{bottom:812.035365px;}
.y14_c00115{bottom:812.240145px;}
.y8_c00115{bottom:840.765843px;}
.y9_c00115{bottom:842.347044px;}
.ya_c00115{bottom:845.306676px;}
.y3_c00115{bottom:850.789418px;}
.y4_c00115{bottom:855.833328px;}
.y5_c00115{bottom:857.186298px;}
.y6_c00115{bottom:858.178710px;}
.y7_c00115{bottom:859.406184px;}
.y1_c00115{bottom:878.287500px;}
.y2_c00115{bottom:897.252354px;}
.h15_c00115{height:16.800000px;}
.h8_c00115{height:63.003150px;}
.h10_c00115{height:67.200000px;}
.hf_c00115{height:68.250000px;}
.h12_c00115{height:69.300000px;}
.hb_c00115{height:69.302218px;}
.h6_c00115{height:69.303465px;}
.h11_c00115{height:70.350000px;}
.hc_c00115{height:70.352251px;}
.hd_c00115{height:71.400000px;}
.ha_c00115{height:71.402285px;}
.h5_c00115{height:71.403570px;}
.he_c00115{height:72.450000px;}
.h14_c00115{height:73.500000px;}
.h9_c00115{height:73.502352px;}
.h7_c00115{height:73.503675px;}
.h13_c00115{height:74.550000px;}
.h2_c00115{height:109.161609px;}
.h3_c00115{height:122.806811px;}
.h16_c00115{height:207.900000px;}
.h4_c00115{height:230.918789px;}
.h0_c00115{height:1008.450000px;}
.h1_c00115{height:1008.750000px;}
.w0_c00115{width:676.890000px;}
.w1_c00115{width:677.250000px;}
.x0_c00115{left:0.000000px;}
.x5e_c00115{left:79.913880px;}
.x1_c00115{left:81.153000px;}
.x70_c00115{left:85.585560px;}
.x67_c00115{left:95.344584px;}
.x3_c00115{left:97.741057px;}
.x7e_c00115{left:117.720000px;}
.x2f_c00115{left:125.274660px;}
.x68_c00115{left:133.458696px;}
.x8_c00115{left:135.065790px;}
.x9e_c00115{left:136.620000px;}
.xc8_c00115{left:143.370000px;}
.xc3_c00115{left:144.450000px;}
.x38_c00115{left:153.192000px;}
.x9f_c00115{left:154.440000px;}
.x1c_c00115{left:156.729330px;}
.x93_c00115{left:157.950000px;}
.x13_c00115{left:161.864775px;}
.x8c_c00115{left:163.350000px;}
.x99_c00115{left:167.400000px;}
.x26_c00115{left:168.849405px;}
.xa_c00115{left:170.511000px;}
.xa5_c00115{left:171.990000px;}
.x1d_c00115{left:174.286830px;}
.x50_c00115{left:176.580168px;}
.x30_c00115{left:178.466985px;}
.x39_c00115{left:180.198000px;}
.xbb_c00115{left:183.060000px;}
.x79_c00115{left:185.760000px;}
.x7f_c00115{left:187.920000px;}
.x49_c00115{left:189.541020px;}
.x41_c00115{left:195.037272px;}
.x5f_c00115{left:197.638404px;}
.x14_c00115{left:198.860775px;}
.xaf_c00115{left:202.230000px;}
.x8d_c00115{left:206.820000px;}
.x4a_c00115{left:211.412424px;}
.x31_c00115{left:212.488890px;}
.x57_c00115{left:214.378032px;}
.x27_c00115{left:219.077910px;}
.x82_c00115{left:220.590000px;}
.x3a_c00115{left:223.126500px;}
.x51_c00115{left:225.181776px;}
.x80_c00115{left:228.420000px;}
.xb6_c00115{left:232.740000px;}
.x32_c00115{left:235.169655px;}
.x9_c00115{left:237.014968px;}
.x71_c00115{left:238.142328px;}
.x83_c00115{left:243.270000px;}
.x8e_c00115{left:244.890000px;}
.x1e_c00115{left:248.007330px;}
.x60_c00115{left:250.290276px;}
.x4b_c00115{left:252.993588px;}
.xaa_c00115{left:254.610000px;}
.x58_c00115{left:255.959196px;}
.xb_c00115{left:257.179500px;}
.xb0_c00115{left:260.280000px;}
.x33_c00115{left:261.900825px;}
.x4_c00115{left:265.648252px;}
.x61_c00115{left:268.651452px;}
.x1f_c00115{left:270.156330px;}
.x94_c00115{left:271.890000px;}
.x28_c00115{left:273.628005px;}
.x69_c00115{left:275.753976px;}
.xb2_c00115{left:279.990000px;}
.xa6_c00115{left:282.150000px;}
.x15_c00115{left:286.084275px;}
.x4c_c00115{left:290.254476px;}
.x59_c00115{left:291.331452px;}
.x8f_c00115{left:292.680000px;}
.x9a_c00115{left:295.110000px;}
.x62_c00115{left:296.731752px;}
.xc4_c00115{left:298.080000px;}
.x42_c00115{left:299.264112px;}
.x3b_c00115{left:302.740500px;}
.x84_c00115{left:304.290000px;}
.x5_c00115{left:310.687897px;}
.x63_c00115{left:311.852724px;}
.x95_c00115{left:313.740000px;}
.x34_c00115{left:316.173255px;}
.x6a_c00115{left:321.647208px;}
.x5a_c00115{left:323.732028px;}
.x29_c00115{left:325.730040px;}
.xc_c00115{left:328.474500px;}
.xb1_c00115{left:331.020000px;}
.x20_c00115{left:334.129830px;}
.x16_c00115{left:337.654275px;}
.x5b_c00115{left:339.123012px;}
.xa7_c00115{left:342.630000px;}
.x6_c00115{left:343.723464px;}
.xb7_c00115{left:345.600000px;}
.x35_c00115{left:346.684800px;}
.x4d_c00115{left:347.766660px;}
.x3c_c00115{left:349.488000px;}
.x2a_c00115{left:351.658065px;}
.x85_c00115{left:356.130000px;}
.x43_c00115{left:358.385580px;}
.x81_c00115{left:360.450000px;}
.x64_c00115{left:361.804428px;}
.x90_c00115{left:362.880000px;}
.x6b_c00115{left:364.069392px;}
.x9b_c00115{left:367.740000px;}
.x72_c00115{left:368.826192px;}
.x17_c00115{left:371.396775px;}
.xd_c00115{left:372.754500px;}
.xb8_c00115{left:374.220000px;}
.x44_c00115{left:375.398712px;}
.x52_c00115{left:378.005556px;}
.x36_c00115{left:379.086540px;}
.xbe_c00115{left:382.050000px;}
.x7_c00115{left:384.614397px;}
.xbc_c00115{left:386.640000px;}
.x21_c00115{left:390.027330px;}
.x73_c00115{left:392.047680px;}
.x18_c00115{left:396.518775px;}
.x53_c00115{left:401.765580px;}
.x6c_c00115{left:403.191516px;}
.x96_c00115{left:405.270000px;}
.x37_c00115{left:408.517980px;}
.xab_c00115{left:412.020000px;}
.xa0_c00115{left:413.100000px;}
.xe_c00115{left:415.150500px;}
.x86_c00115{left:420.390000px;}
.x74_c00115{left:421.748076px;}
.xbd_c00115{left:425.250000px;}
.x22_c00115{left:427.293330px;}
.x4e_c00115{left:429.578904px;}
.x7a_c00115{left:432.000000px;}
.x5c_c00115{left:433.626060px;}
.x65_c00115{left:435.246120px;}
.xf_c00115{left:436.992000px;}
.x2b_c00115{left:438.328305px;}
.x91_c00115{left:446.580000px;}
.xbf_c00115{left:448.740000px;}
.x87_c00115{left:453.600000px;}
.x75_c00115{left:456.578808px;}
.xb3_c00115{left:460.080000px;}
.xc7_c00115{left:461.700000px;}
.x6d_c00115{left:463.103976px;}
.xa8_c00115{left:464.400000px;}
.x9c_c00115{left:466.020000px;}
.x66_c00115{left:467.106660px;}
.x19_c00115{left:468.332775px;}
.x4f_c00115{left:469.809984px;}
.x3d_c00115{left:471.799500px;}
.x10_c00115{left:476.709000px;}
.x45_c00115{left:478.007028px;}
.x54_c00115{left:480.337608px;}
.x88_c00115{left:486.810000px;}
.x97_c00115{left:487.890000px;}
.x7b_c00115{left:489.510000px;}
.x1a_c00115{left:490.750275px;}
.xc5_c00115{left:492.210000px;}
.x23_c00115{left:493.701330px;}
.x3e_c00115{left:495.034500px;}
.x6e_c00115{left:497.153016px;}
.xac_c00115{left:504.360000px;}
.x2c_c00115{left:505.559655px;}
.xa1_c00115{left:507.600000px;}
.x76_c00115{left:508.960656px;}
.x24_c00115{left:510.723330px;}
.x92_c00115{left:513.540000px;}
.x89_c00115{left:516.510000px;}
.x9d_c00115{left:521.100000px;}
.x1b_c00115{left:523.154775px;}
.x77_c00115{left:524.891676px;}
.x7c_c00115{left:525.960000px;}
.x11_c00115{left:527.205000px;}
.xad_c00115{left:530.010000px;}
.xb9_c00115{left:531.090000px;}
.xb4_c00115{left:533.790000px;}
.x46_c00115{left:536.865996px;}
.x6f_c00115{left:539.005188px;}
.xc0_c00115{left:542.160000px;}
.xc6_c00115{left:544.320000px;}
.x25_c00115{left:545.818830px;}
.x12_c00115{left:547.683000px;}
.x2d_c00115{left:549.299025px;}
.x3f_c00115{left:551.185500px;}
.xc2_c00115{left:552.420000px;}
.xa2_c00115{left:556.200000px;}
.xa9_c00115{left:559.710000px;}
.x55_c00115{left:561.069780px;}
.x2e_c00115{left:564.155325px;}
.x78_c00115{left:565.392768px;}
.x7d_c00115{left:567.270000px;}
.x8a_c00115{left:569.430000px;}
.xa3_c00115{left:572.400000px;}
.x40_c00115{left:575.488500px;}
.x47_c00115{left:578.174832px;}
.x98_c00115{left:582.660000px;}
.x56_c00115{left:584.559780px;}
.x5d_c00115{left:588.069948px;}
.xa4_c00115{left:591.570000px;}
.x8b_c00115{left:592.920000px;}
.xc1_c00115{left:595.890000px;}
.xae_c00115{left:598.050000px;}
.x48_c00115{left:602.202024px;}
.xb5_c00115{left:604.260000px;}
.xba_c00115{left:606.420000px;}
.x2_c00115{left:607.427698px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fs13_c00115{font-size:14.933333pt;}
.fs6_c00115{font-size:56.002800pt;}
.fse_c00115{font-size:59.733333pt;}
.fsd_c00115{font-size:60.666667pt;}
.fs10_c00115{font-size:61.600000pt;}
.fs9_c00115{font-size:61.601971pt;}
.fs4_c00115{font-size:61.603080pt;}
.fsf_c00115{font-size:62.533333pt;}
.fsa_c00115{font-size:62.535334pt;}
.fsb_c00115{font-size:63.466667pt;}
.fs8_c00115{font-size:63.468698pt;}
.fs3_c00115{font-size:63.469840pt;}
.fsc_c00115{font-size:64.400000pt;}
.fs12_c00115{font-size:65.333333pt;}
.fs7_c00115{font-size:65.335424pt;}
.fs5_c00115{font-size:65.336600pt;}
.fs11_c00115{font-size:66.266667pt;}
.fs0_c00115{font-size:97.032542pt;}
.fs1_c00115{font-size:109.161609pt;}
.fs14_c00115{font-size:184.800000pt;}
.fs2_c00115{font-size:205.261146pt;}
.y0_c00115{bottom:0.000000pt;}
.yae_c00115{bottom:60.960000pt;}
.yaf_c00115{bottom:63.378667pt;}
.yad_c00115{bottom:122.829333pt;}
.yac_c00115{bottom:143.494667pt;}
.yab_c00115{bottom:163.658667pt;}
.yaa_c00115{bottom:184.053333pt;}
.ya9_c00115{bottom:204.638667pt;}
.ya8_c00115{bottom:224.613333pt;}
.ya7_c00115{bottom:245.170667pt;}
.ya6_c00115{bottom:265.838667pt;}
.ya5_c00115{bottom:286.422667pt;}
.ya4_c00115{bottom:306.786667pt;}
.ya3_c00115{bottom:330.302667pt;}
.ya2_c00115{bottom:350.346667pt;}
.ya1_c00115{bottom:370.930667pt;}
.ya0_c00115{bottom:391.118667pt;}
.y9f_c00115{bottom:412.025333pt;}
.y9e_c00115{bottom:431.960000pt;}
.y9d_c00115{bottom:452.530667pt;}
.y98_c00115{bottom:472.757387pt;}
.y99_c00115{bottom:472.757579pt;}
.y97_c00115{bottom:472.757600pt;}
.y95_c00115{bottom:472.757685pt;}
.y94_c00115{bottom:472.757803pt;}
.y92_c00115{bottom:472.757909pt;}
.y9c_c00115{bottom:472.757984pt;}
.y9b_c00115{bottom:472.757995pt;}
.y9a_c00115{bottom:472.758048pt;}
.y96_c00115{bottom:472.758091pt;}
.y91_c00115{bottom:472.758240pt;}
.y93_c00115{bottom:472.758443pt;}
.y86_c00115{bottom:491.826187pt;}
.y87_c00115{bottom:492.029216pt;}
.y88_c00115{bottom:492.269845pt;}
.y89_c00115{bottom:492.571691pt;}
.y8a_c00115{bottom:492.787744pt;}
.y8b_c00115{bottom:493.032757pt;}
.y8c_c00115{bottom:493.258421pt;}
.y8d_c00115{bottom:493.467285pt;}
.y8e_c00115{bottom:493.786656pt;}
.y8f_c00115{bottom:493.968779pt;}
.y90_c00115{bottom:494.191723pt;}
.y7f_c00115{bottom:513.572949pt;}
.y7e_c00115{bottom:513.573269pt;}
.y80_c00115{bottom:513.573525pt;}
.y82_c00115{bottom:513.573717pt;}
.y7d_c00115{bottom:513.573760pt;}
.y81_c00115{bottom:513.573835pt;}
.y77_c00115{bottom:513.573856pt;}
.y83_c00115{bottom:513.574027pt;}
.y7c_c00115{bottom:513.574240pt;}
.y85_c00115{bottom:513.574379pt;}
.y78_c00115{bottom:513.574432pt;}
.y84_c00115{bottom:513.574443pt;}
.y7b_c00115{bottom:513.574571pt;}
.y7a_c00115{bottom:513.574677pt;}
.y79_c00115{bottom:513.574955pt;}
.y6d_c00115{bottom:533.736277pt;}
.y74_c00115{bottom:533.736448pt;}
.y6b_c00115{bottom:533.736459pt;}
.y76_c00115{bottom:533.736469pt;}
.y6c_c00115{bottom:533.736608pt;}
.y6e_c00115{bottom:533.736651pt;}
.y69_c00115{bottom:533.736747pt;}
.y70_c00115{bottom:533.736853pt;}
.y75_c00115{bottom:533.736864pt;}
.y73_c00115{bottom:533.736939pt;}
.y71_c00115{bottom:533.736960pt;}
.y6a_c00115{bottom:533.737056pt;}
.y6f_c00115{bottom:533.737131pt;}
.y72_c00115{bottom:533.737483pt;}
.y67_c00115{bottom:554.231125pt;}
.y68_c00115{bottom:554.231488pt;}
.y64_c00115{bottom:554.231701pt;}
.y66_c00115{bottom:554.231733pt;}
.y5f_c00115{bottom:554.231819pt;}
.y62_c00115{bottom:554.232043pt;}
.y60_c00115{bottom:554.232075pt;}
.y63_c00115{bottom:554.232085pt;}
.y5e_c00115{bottom:554.232149pt;}
.y65_c00115{bottom:554.232277pt;}
.y61_c00115{bottom:554.232427pt;}
.y5d_c00115{bottom:574.393877pt;}
.y5c_c00115{bottom:574.394165pt;}
.y5b_c00115{bottom:574.394763pt;}
.y5a_c00115{bottom:574.395147pt;}
.y59_c00115{bottom:574.395691pt;}
.y58_c00115{bottom:574.396075pt;}
.y57_c00115{bottom:574.396459pt;}
.y56_c00115{bottom:574.396789pt;}
.y54_c00115{bottom:574.396853pt;}
.y55_c00115{bottom:574.397269pt;}
.y49_c00115{bottom:593.040267pt;}
.y4a_c00115{bottom:593.409568pt;}
.y4b_c00115{bottom:593.739200pt;}
.y4c_c00115{bottom:593.846101pt;}
.y4d_c00115{bottom:594.057397pt;}
.y4e_c00115{bottom:594.425813pt;}
.y4f_c00115{bottom:594.532128pt;}
.y50_c00115{bottom:595.171115pt;}
.y51_c00115{bottom:595.537664pt;}
.y52_c00115{bottom:595.794080pt;}
.y53_c00115{bottom:595.943605pt;}
.y3e_c00115{bottom:613.921333pt;}
.y3f_c00115{bottom:614.113376pt;}
.y40_c00115{bottom:614.418645pt;}
.y41_c00115{bottom:614.727776pt;}
.y42_c00115{bottom:614.984789pt;}
.y43_c00115{bottom:615.317216pt;}
.y44_c00115{bottom:615.656811pt;}
.y45_c00115{bottom:616.186987pt;}
.y46_c00115{bottom:616.352213pt;}
.y47_c00115{bottom:616.751509pt;}
.y48_c00115{bottom:616.924331pt;}
.y37_c00115{bottom:638.702373pt;}
.y3a_c00115{bottom:638.702587pt;}
.y38_c00115{bottom:638.702627pt;}
.y36_c00115{bottom:638.702653pt;}
.y39_c00115{bottom:638.702880pt;}
.y3c_c00115{bottom:638.703093pt;}
.y3b_c00115{bottom:638.703107pt;}
.y35_c00115{bottom:638.703213pt;}
.y3d_c00115{bottom:638.703347pt;}
.y2b_c00115{bottom:658.078627pt;}
.y2c_c00115{bottom:658.315133pt;}
.y2d_c00115{bottom:658.672267pt;}
.y2e_c00115{bottom:659.059813pt;}
.y2f_c00115{bottom:659.430933pt;}
.y30_c00115{bottom:659.614733pt;}
.y31_c00115{bottom:660.230453pt;}
.y32_c00115{bottom:660.708053pt;}
.y33_c00115{bottom:661.019507pt;}
.y34_c00115{bottom:661.124893pt;}
.y20_c00115{bottom:677.759787pt;}
.y21_c00115{bottom:677.949373pt;}
.y22_c00115{bottom:678.105440pt;}
.y23_c00115{bottom:678.760733pt;}
.y24_c00115{bottom:678.957613pt;}
.y25_c00115{bottom:679.526267pt;}
.y26_c00115{bottom:680.023133pt;}
.y27_c00115{bottom:680.354387pt;}
.y28_c00115{bottom:680.944680pt;}
.y29_c00115{bottom:681.095987pt;}
.y2a_c00115{bottom:681.407947pt;}
.y15_c00115{bottom:697.680173pt;}
.y16_c00115{bottom:697.913013pt;}
.y17_c00115{bottom:698.241867pt;}
.y18_c00115{bottom:698.753133pt;}
.y19_c00115{bottom:699.017187pt;}
.y1a_c00115{bottom:699.475587pt;}
.y1b_c00115{bottom:699.775520pt;}
.y1c_c00115{bottom:699.998827pt;}
.y1d_c00115{bottom:700.637173pt;}
.y1e_c00115{bottom:700.836440pt;}
.y1f_c00115{bottom:701.124480pt;}
.yb_c00115{bottom:718.321333pt;}
.yc_c00115{bottom:718.638600pt;}
.yd_c00115{bottom:719.408987pt;}
.ye_c00115{bottom:720.042720pt;}
.yf_c00115{bottom:720.436320pt;}
.y10_c00115{bottom:720.813173pt;}
.y11_c00115{bottom:721.007320pt;}
.y12_c00115{bottom:721.360360pt;}
.y13_c00115{bottom:721.809213pt;}
.y14_c00115{bottom:721.991240pt;}
.y8_c00115{bottom:747.347416pt;}
.y9_c00115{bottom:748.752928pt;}
.ya_c00115{bottom:751.383712pt;}
.y3_c00115{bottom:756.257260pt;}
.y4_c00115{bottom:760.740736pt;}
.y5_c00115{bottom:761.943376pt;}
.y6_c00115{bottom:762.825520pt;}
.y7_c00115{bottom:763.916608pt;}
.y1_c00115{bottom:780.700000pt;}
.y2_c00115{bottom:797.557648pt;}
.h15_c00115{height:14.933333pt;}
.h8_c00115{height:56.002800pt;}
.h10_c00115{height:59.733333pt;}
.hf_c00115{height:60.666667pt;}
.h12_c00115{height:61.600000pt;}
.hb_c00115{height:61.601971pt;}
.h6_c00115{height:61.603080pt;}
.h11_c00115{height:62.533333pt;}
.hc_c00115{height:62.535334pt;}
.hd_c00115{height:63.466667pt;}
.ha_c00115{height:63.468698pt;}
.h5_c00115{height:63.469840pt;}
.he_c00115{height:64.400000pt;}
.h14_c00115{height:65.333333pt;}
.h9_c00115{height:65.335424pt;}
.h7_c00115{height:65.336600pt;}
.h13_c00115{height:66.266667pt;}
.h2_c00115{height:97.032542pt;}
.h3_c00115{height:109.161609pt;}
.h16_c00115{height:184.800000pt;}
.h4_c00115{height:205.261146pt;}
.h0_c00115{height:896.400000pt;}
.h1_c00115{height:896.666667pt;}
.w0_c00115{width:601.680000pt;}
.w1_c00115{width:602.000000pt;}
.x0_c00115{left:0.000000pt;}
.x5e_c00115{left:71.034560pt;}
.x1_c00115{left:72.136000pt;}
.x70_c00115{left:76.076053pt;}
.x67_c00115{left:84.750741pt;}
.x3_c00115{left:86.880940pt;}
.x7e_c00115{left:104.640000pt;}
.x2f_c00115{left:111.355253pt;}
.x68_c00115{left:118.629952pt;}
.x8_c00115{left:120.058480pt;}
.x9e_c00115{left:121.440000pt;}
.xc8_c00115{left:127.440000pt;}
.xc3_c00115{left:128.400000pt;}
.x38_c00115{left:136.170667pt;}
.x9f_c00115{left:137.280000pt;}
.x1c_c00115{left:139.314960pt;}
.x93_c00115{left:140.400000pt;}
.x13_c00115{left:143.879800pt;}
.x8c_c00115{left:145.200000pt;}
.x99_c00115{left:148.800000pt;}
.x26_c00115{left:150.088360pt;}
.xa_c00115{left:151.565333pt;}
.xa5_c00115{left:152.880000pt;}
.x1d_c00115{left:154.921627pt;}
.x50_c00115{left:156.960149pt;}
.x30_c00115{left:158.637320pt;}
.x39_c00115{left:160.176000pt;}
.xbb_c00115{left:162.720000pt;}
.x79_c00115{left:165.120000pt;}
.x7f_c00115{left:167.040000pt;}
.x49_c00115{left:168.480907pt;}
.x41_c00115{left:173.366464pt;}
.x5f_c00115{left:175.678581pt;}
.x14_c00115{left:176.765133pt;}
.xaf_c00115{left:179.760000pt;}
.x8d_c00115{left:183.840000pt;}
.x4a_c00115{left:187.922155pt;}
.x31_c00115{left:188.879013pt;}
.x57_c00115{left:190.558251pt;}
.x27_c00115{left:194.735920pt;}
.x82_c00115{left:196.080000pt;}
.x3a_c00115{left:198.334667pt;}
.x51_c00115{left:200.161579pt;}
.x80_c00115{left:203.040000pt;}
.xb6_c00115{left:206.880000pt;}
.x32_c00115{left:209.039693pt;}
.x9_c00115{left:210.679972pt;}
.x71_c00115{left:211.682069pt;}
.x83_c00115{left:216.240000pt;}
.x8e_c00115{left:217.680000pt;}
.x1e_c00115{left:220.450960pt;}
.x60_c00115{left:222.480245pt;}
.x4b_c00115{left:224.883189pt;}
.xaa_c00115{left:226.320000pt;}
.x58_c00115{left:227.519285pt;}
.xb_c00115{left:228.604000pt;}
.xb0_c00115{left:231.360000pt;}
.x33_c00115{left:232.800733pt;}
.x4_c00115{left:236.131780pt;}
.x61_c00115{left:238.801291pt;}
.x1f_c00115{left:240.138960pt;}
.x94_c00115{left:241.680000pt;}
.x28_c00115{left:243.224893pt;}
.x69_c00115{left:245.114645pt;}
.xb2_c00115{left:248.880000pt;}
.xa6_c00115{left:250.800000pt;}
.x15_c00115{left:254.297133pt;}
.x4c_c00115{left:258.003979pt;}
.x59_c00115{left:258.961291pt;}
.x8f_c00115{left:260.160000pt;}
.x9a_c00115{left:262.320000pt;}
.x62_c00115{left:263.761557pt;}
.xc4_c00115{left:264.960000pt;}
.x42_c00115{left:266.012544pt;}
.x3b_c00115{left:269.102667pt;}
.x84_c00115{left:270.480000pt;}
.x5_c00115{left:276.167020pt;}
.x63_c00115{left:277.202421pt;}
.x95_c00115{left:278.880000pt;}
.x34_c00115{left:281.042893pt;}
.x6a_c00115{left:285.908629pt;}
.x5a_c00115{left:287.761803pt;}
.x29_c00115{left:289.537813pt;}
.xc_c00115{left:291.977333pt;}
.xb1_c00115{left:294.240000pt;}
.x20_c00115{left:297.004293pt;}
.x16_c00115{left:300.137133pt;}
.x5b_c00115{left:301.442677pt;}
.xa7_c00115{left:304.560000pt;}
.x6_c00115{left:305.531968pt;}
.xb7_c00115{left:307.200000pt;}
.x35_c00115{left:308.164267pt;}
.x4d_c00115{left:309.125920pt;}
.x3c_c00115{left:310.656000pt;}
.x2a_c00115{left:312.584947pt;}
.x85_c00115{left:316.560000pt;}
.x43_c00115{left:318.564960pt;}
.x81_c00115{left:320.400000pt;}
.x64_c00115{left:321.603936pt;}
.x90_c00115{left:322.560000pt;}
.x6b_c00115{left:323.617237pt;}
.x9b_c00115{left:326.880000pt;}
.x72_c00115{left:327.845504pt;}
.x17_c00115{left:330.130467pt;}
.xd_c00115{left:331.337333pt;}
.xb8_c00115{left:332.640000pt;}
.x44_c00115{left:333.687744pt;}
.x52_c00115{left:336.004939pt;}
.x36_c00115{left:336.965813pt;}
.xbe_c00115{left:339.600000pt;}
.x7_c00115{left:341.879464pt;}
.xbc_c00115{left:343.680000pt;}
.x21_c00115{left:346.690960pt;}
.x73_c00115{left:348.486827pt;}
.x18_c00115{left:352.461133pt;}
.x53_c00115{left:357.124960pt;}
.x6c_c00115{left:358.392459pt;}
.x96_c00115{left:360.240000pt;}
.x37_c00115{left:363.127093pt;}
.xab_c00115{left:366.240000pt;}
.xa0_c00115{left:367.200000pt;}
.xe_c00115{left:369.022667pt;}
.x86_c00115{left:373.680000pt;}
.x74_c00115{left:374.887179pt;}
.xbd_c00115{left:378.000000pt;}
.x22_c00115{left:379.816293pt;}
.x4e_c00115{left:381.847915pt;}
.x7a_c00115{left:384.000000pt;}
.x5c_c00115{left:385.445387pt;}
.x65_c00115{left:386.885440pt;}
.xf_c00115{left:388.437333pt;}
.x2b_c00115{left:389.625160pt;}
.x91_c00115{left:396.960000pt;}
.xbf_c00115{left:398.880000pt;}
.x87_c00115{left:403.200000pt;}
.x75_c00115{left:405.847829pt;}
.xb3_c00115{left:408.960000pt;}
.xc7_c00115{left:410.400000pt;}
.x6d_c00115{left:411.647979pt;}
.xa8_c00115{left:412.800000pt;}
.x9c_c00115{left:414.240000pt;}
.x66_c00115{left:415.205920pt;}
.x19_c00115{left:416.295800pt;}
.x4f_c00115{left:417.608875pt;}
.x3d_c00115{left:419.377333pt;}
.x10_c00115{left:423.741333pt;}
.x45_c00115{left:424.895136pt;}
.x54_c00115{left:426.966763pt;}
.x88_c00115{left:432.720000pt;}
.x97_c00115{left:433.680000pt;}
.x7b_c00115{left:435.120000pt;}
.x1a_c00115{left:436.222467pt;}
.xc5_c00115{left:437.520000pt;}
.x23_c00115{left:438.845627pt;}
.x3e_c00115{left:440.030667pt;}
.x6e_c00115{left:441.913792pt;}
.xac_c00115{left:448.320000pt;}
.x2c_c00115{left:449.386360pt;}
.xa1_c00115{left:451.200000pt;}
.x76_c00115{left:452.409472pt;}
.x24_c00115{left:453.976293pt;}
.x92_c00115{left:456.480000pt;}
.x89_c00115{left:459.120000pt;}
.x9d_c00115{left:463.200000pt;}
.x1b_c00115{left:465.026467pt;}
.x77_c00115{left:466.570379pt;}
.x7c_c00115{left:467.520000pt;}
.x11_c00115{left:468.626667pt;}
.xad_c00115{left:471.120000pt;}
.xb9_c00115{left:472.080000pt;}
.xb4_c00115{left:474.480000pt;}
.x46_c00115{left:477.214219pt;}
.x6f_c00115{left:479.115723pt;}
.xc0_c00115{left:481.920000pt;}
.xc6_c00115{left:483.840000pt;}
.x25_c00115{left:485.172293pt;}
.x12_c00115{left:486.829333pt;}
.x2d_c00115{left:488.265800pt;}
.x3f_c00115{left:489.942667pt;}
.xc2_c00115{left:491.040000pt;}
.xa2_c00115{left:494.400000pt;}
.xa9_c00115{left:497.520000pt;}
.x55_c00115{left:498.728693pt;}
.x2e_c00115{left:501.471400pt;}
.x78_c00115{left:502.571349pt;}
.x7d_c00115{left:504.240000pt;}
.x8a_c00115{left:506.160000pt;}
.xa3_c00115{left:508.800000pt;}
.x40_c00115{left:511.545333pt;}
.x47_c00115{left:513.933184pt;}
.x98_c00115{left:517.920000pt;}
.x56_c00115{left:519.608693pt;}
.x5d_c00115{left:522.728843pt;}
.xa4_c00115{left:525.840000pt;}
.x8b_c00115{left:527.040000pt;}
.xc1_c00115{left:529.680000pt;}
.xae_c00115{left:531.600000pt;}
.x48_c00115{left:535.290688pt;}
.xb5_c00115{left:537.120000pt;}
.xba_c00115{left:539.040000pt;}
.x2_c00115{left:539.935732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3f_c00116{transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);}
.m7f_c00116{transform:matrix(0.133027,0.001862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.133027,0.001862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.133027,0.001862,-0.003500,0.249976,0,0);}
.m18_c00116{transform:matrix(0.139753,0.001817,-0.003250,0.249979,0,0);-ms-transform:matrix(0.139753,0.001817,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.139753,0.001817,-0.003250,0.249979,0,0);}
.m6d_c00116{transform:matrix(0.147121,0.002060,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147121,0.002060,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147121,0.002060,-0.003500,0.249976,0,0);}
.m1e_c00116{transform:matrix(0.147473,0.001917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147473,0.001917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147473,0.001917,-0.003250,0.249979,0,0);}
.m21_c00116{transform:matrix(0.147673,0.001920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147673,0.001920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147673,0.001920,-0.003250,0.249979,0,0);}
.m3b_c00116{transform:matrix(0.150355,0.002105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150355,0.002105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150355,0.002105,-0.003500,0.249976,0,0);}
.m6c_c00116{transform:matrix(0.151645,0.002123,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151645,0.002123,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151645,0.002123,-0.003500,0.249976,0,0);}
.m39_c00116{transform:matrix(0.151875,0.002126,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151875,0.002126,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151875,0.002126,-0.003500,0.249976,0,0);}
.m7d_c00116{transform:matrix(0.152565,0.002136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152565,0.002136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152565,0.002136,-0.003500,0.249976,0,0);}
.m22_c00116{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);}
.m4f_c00116{transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);}
.m5d_c00116{transform:matrix(0.154005,0.002156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154005,0.002156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154005,0.002156,-0.003500,0.249976,0,0);}
.m64_c00116{transform:matrix(0.154745,0.002166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154745,0.002166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154745,0.002166,-0.003500,0.249976,0,0);}
.m51_c00116{transform:matrix(0.155080,0.002171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155080,0.002171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155080,0.002171,-0.003500,0.249976,0,0);}
.m2e_c00116{transform:matrix(0.155140,0.002172,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155140,0.002172,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155140,0.002172,-0.003500,0.249976,0,0);}
.m8_c00116{transform:matrix(0.155147,0.002017,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155147,0.002017,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155147,0.002017,-0.003250,0.249979,0,0);}
.m7b_c00116{transform:matrix(0.155475,0.002177,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155475,0.002177,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155475,0.002177,-0.003500,0.249976,0,0);}
.m2b_c00116{transform:matrix(0.155790,0.002181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155790,0.002181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155790,0.002181,-0.003500,0.249976,0,0);}
.m53_c00116{transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);}
.m19_c00116{transform:matrix(0.157397,0.002046,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157397,0.002046,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157397,0.002046,-0.003250,0.249979,0,0);}
.m62_c00116{transform:matrix(0.157405,0.002204,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157405,0.002204,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157405,0.002204,-0.003500,0.249976,0,0);}
.m4b_c00116{transform:matrix(0.157485,0.002205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157485,0.002205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157485,0.002205,-0.003500,0.249976,0,0);}
.m41_c00116{transform:matrix(0.157560,0.002206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157560,0.002206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157560,0.002206,-0.003500,0.249976,0,0);}
.m26_c00116{transform:matrix(0.158224,0.002215,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158224,0.002215,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158224,0.002215,-0.003500,0.249976,0,0);}
.m27_c00116{transform:matrix(0.159419,0.002232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159419,0.002232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159419,0.002232,-0.003500,0.249976,0,0);}
.m31_c00116{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);}
.m46_c00116{transform:matrix(0.160034,0.002240,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160034,0.002240,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160034,0.002240,-0.003500,0.249976,0,0);}
.m1f_c00116{transform:matrix(0.160066,0.002081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160066,0.002081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160066,0.002081,-0.003250,0.249979,0,0);}
.m69_c00116{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);}
.m5b_c00116{transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);}
.m0_c00116{transform:matrix(0.164686,0.002141,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164686,0.002141,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164686,0.002141,-0.003250,0.249979,0,0);}
.m28_c00116{transform:matrix(0.167069,0.002339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167069,0.002339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167069,0.002339,-0.003500,0.249976,0,0);}
.m1d_c00116{transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);}
.m12_c00116{transform:matrix(0.168061,0.002185,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168061,0.002185,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168061,0.002185,-0.003250,0.249979,0,0);}
.m47_c00116{transform:matrix(0.168413,0.002358,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168413,0.002358,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168413,0.002358,-0.003500,0.249976,0,0);}
.m7_c00116{transform:matrix(0.168596,0.002192,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168596,0.002192,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168596,0.002192,-0.003250,0.249979,0,0);}
.m5f_c00116{transform:matrix(0.168618,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168618,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168618,0.002361,-0.003500,0.249976,0,0);}
.m5_c00116{transform:matrix(0.169441,0.002203,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169441,0.002203,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169441,0.002203,-0.003250,0.249979,0,0);}
.m65_c00116{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);}
.m40_c00116{transform:matrix(0.171108,0.002396,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171108,0.002396,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171108,0.002396,-0.003500,0.249976,0,0);}
.m7a_c00116{transform:matrix(0.171213,0.002397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171213,0.002397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171213,0.002397,-0.003500,0.249976,0,0);}
.m86_c00116{transform:matrix(0.171503,0.002401,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171503,0.002401,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171503,0.002401,-0.003500,0.249976,0,0);}
.m7c_c00116{transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);}
.m24_c00116{transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);}
.m3c_c00116{transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172503,0.002415,-0.003500,0.249976,0,0);}
.m48_c00116{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);}
.m2a_c00116{transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);}
.m17_c00116{transform:matrix(0.173960,0.002261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173960,0.002261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173960,0.002261,-0.003250,0.249979,0,0);}
.m73_c00116{transform:matrix(0.174893,0.002449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174893,0.002449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174893,0.002449,-0.003500,0.249976,0,0);}
.m25_c00116{transform:matrix(0.175573,0.002458,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175573,0.002458,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175573,0.002458,-0.003500,0.249976,0,0);}
.m4_c00116{transform:matrix(0.175775,0.002285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175775,0.002285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175775,0.002285,-0.003250,0.249979,0,0);}
.m4d_c00116{transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);}
.m83_c00116{transform:matrix(0.176323,0.002469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176323,0.002469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176323,0.002469,-0.003500,0.249976,0,0);}
.m61_c00116{transform:matrix(0.176608,0.002473,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176608,0.002473,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176608,0.002473,-0.003500,0.249976,0,0);}
.m15_c00116{transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);}
.m20_c00116{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);}
.m4e_c00116{transform:matrix(0.177943,0.002491,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177943,0.002491,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177943,0.002491,-0.003500,0.249976,0,0);}
.m6_c00116{transform:matrix(0.179175,0.002329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179175,0.002329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179175,0.002329,-0.003250,0.249979,0,0);}
.m4c_c00116{transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);}
.m54_c00116{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);}
.m44_c00116{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);}
.m43_c00116{transform:matrix(0.183742,0.002572,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183742,0.002572,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183742,0.002572,-0.003500,0.249976,0,0);}
.m13_c00116{transform:matrix(0.183869,0.002390,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183869,0.002390,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183869,0.002390,-0.003250,0.249979,0,0);}
.m45_c00116{transform:matrix(0.185802,0.002601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185802,0.002601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185802,0.002601,-0.003500,0.249976,0,0);}
.m29_c00116{transform:matrix(0.186247,0.002607,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186247,0.002607,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186247,0.002607,-0.003500,0.249976,0,0);}
.m67_c00116{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);}
.m1c_c00116{transform:matrix(0.186334,0.002422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186334,0.002422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186334,0.002422,-0.003250,0.249979,0,0);}
.m3d_c00116{transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);}
.mb_c00116{transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);}
.m3e_c00116{transform:matrix(0.186927,0.002617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186927,0.002617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186927,0.002617,-0.003500,0.249976,0,0);}
.m52_c00116{transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);}
.m81_c00116{transform:matrix(0.187472,0.002625,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187472,0.002625,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187472,0.002625,-0.003500,0.249976,0,0);}
.m5e_c00116{transform:matrix(0.187897,0.002631,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187897,0.002631,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187897,0.002631,-0.003500,0.249976,0,0);}
.m79_c00116{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);}
.me_c00116{transform:matrix(0.189424,0.002463,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189424,0.002463,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189424,0.002463,-0.003250,0.249979,0,0);}
.m37_c00116{transform:matrix(0.190531,0.002667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190531,0.002667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190531,0.002667,-0.003500,0.249976,0,0);}
.m42_c00116{transform:matrix(0.190556,0.002668,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190556,0.002668,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190556,0.002668,-0.003500,0.249976,0,0);}
.m7e_c00116{transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);}
.m56_c00116{transform:matrix(0.191186,0.002677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191186,0.002677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191186,0.002677,-0.003500,0.249976,0,0);}
.ma_c00116{transform:matrix(0.191314,0.002487,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191314,0.002487,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191314,0.002487,-0.003250,0.249979,0,0);}
.md_c00116{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);}
.m63_c00116{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);}
.m55_c00116{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);}
.m3a_c00116{transform:matrix(0.193076,0.002703,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193076,0.002703,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193076,0.002703,-0.003500,0.249976,0,0);}
.m32_c00116{transform:matrix(0.193111,0.002704,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193111,0.002704,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193111,0.002704,-0.003500,0.249976,0,0);}
.m38_c00116{transform:matrix(0.193781,0.002713,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193781,0.002713,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193781,0.002713,-0.003500,0.249976,0,0);}
.m9_c00116{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);}
.m30_c00116{transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);}
.m3_c00116{transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);}
.m58_c00116{transform:matrix(0.195631,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195631,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195631,0.002739,-0.003500,0.249976,0,0);}
.m35_c00116{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);}
.m6b_c00116{transform:matrix(0.196116,0.002746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196116,0.002746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196116,0.002746,-0.003500,0.249976,0,0);}
.m16_c00116{transform:matrix(0.196318,0.002552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196318,0.002552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196318,0.002552,-0.003250,0.249979,0,0);}
.m4a_c00116{transform:matrix(0.197446,0.002764,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197446,0.002764,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197446,0.002764,-0.003500,0.249976,0,0);}
.m14_c00116{transform:matrix(0.198448,0.002580,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198448,0.002580,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198448,0.002580,-0.003250,0.249979,0,0);}
.m68_c00116{transform:matrix(0.198601,0.002780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198601,0.002780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198601,0.002780,-0.003500,0.249976,0,0);}
.m2f_c00116{transform:matrix(0.199015,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199015,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199015,0.002786,-0.003500,0.249976,0,0);}
.m1_c00116{transform:matrix(0.199398,0.002592,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199398,0.002592,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199398,0.002592,-0.003250,0.249979,0,0);}
.mf_c00116{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);}
.m50_c00116{transform:matrix(0.201750,0.002825,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201750,0.002825,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201750,0.002825,-0.003500,0.249976,0,0);}
.m33_c00116{transform:matrix(0.202175,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202175,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202175,0.002830,-0.003500,0.249976,0,0);}
.m34_c00116{transform:matrix(0.202675,0.002837,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202675,0.002837,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202675,0.002837,-0.003500,0.249976,0,0);}
.m11_c00116{transform:matrix(0.203083,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203083,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203083,0.002640,-0.003250,0.249979,0,0);}
.m75_c00116{transform:matrix(0.204860,0.002868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204860,0.002868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204860,0.002868,-0.003500,0.249976,0,0);}
.m77_c00116{transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);}
.m5a_c00116{transform:matrix(0.210659,0.002949,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210659,0.002949,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210659,0.002949,-0.003500,0.249976,0,0);}
.m6a_c00116{transform:matrix(0.211259,0.002958,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211259,0.002958,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211259,0.002958,-0.003500,0.249976,0,0);}
.m6e_c00116{transform:matrix(0.213239,0.002985,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213239,0.002985,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213239,0.002985,-0.003500,0.249976,0,0);}
.m57_c00116{transform:matrix(0.214659,0.003005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214659,0.003005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214659,0.003005,-0.003500,0.249976,0,0);}
.m49_c00116{transform:matrix(0.217234,0.003041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217234,0.003041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217234,0.003041,-0.003500,0.249976,0,0);}
.m85_c00116{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);}
.m1b_c00116{transform:matrix(0.222101,0.002887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222101,0.002887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222101,0.002887,-0.003250,0.249979,0,0);}
.m23_c00116{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);}
.m2c_c00116{transform:matrix(0.228208,0.003195,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228208,0.003195,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228208,0.003195,-0.003500,0.249976,0,0);}
.m5c_c00116{transform:matrix(0.228698,0.003202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228698,0.003202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228698,0.003202,-0.003500,0.249976,0,0);}
.m36_c00116{transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);}
.m78_c00116{transform:matrix(0.233292,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233292,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233292,0.003266,-0.003500,0.249976,0,0);}
.m66_c00116{transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);}
.m72_c00116{transform:matrix(0.238562,0.003340,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238562,0.003340,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238562,0.003340,-0.003500,0.249976,0,0);}
.m60_c00116{transform:matrix(0.240056,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240056,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240056,0.003361,-0.003500,0.249976,0,0);}
.mc_c00116{transform:matrix(0.242480,0.003152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242480,0.003152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242480,0.003152,-0.003250,0.249979,0,0);}
.m84_c00116{transform:matrix(0.245636,0.003439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245636,0.003439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245636,0.003439,-0.003500,0.249976,0,0);}
.m10_c00116{transform:matrix(0.250819,0.003261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250819,0.003261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250819,0.003261,-0.003250,0.249979,0,0);}
.m59_c00116{transform:matrix(0.251010,0.003514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251010,0.003514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251010,0.003514,-0.003500,0.249976,0,0);}
.m80_c00116{transform:matrix(0.253355,0.003547,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253355,0.003547,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253355,0.003547,-0.003500,0.249976,0,0);}
.m71_c00116{transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);}
.m2d_c00116{transform:matrix(0.272483,0.003815,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272483,0.003815,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272483,0.003815,-0.003500,0.249976,0,0);}
.m76_c00116{transform:matrix(0.278483,0.003899,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278483,0.003899,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278483,0.003899,-0.003500,0.249976,0,0);}
.m70_c00116{transform:matrix(0.291751,0.004085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291751,0.004085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291751,0.004085,-0.003500,0.249976,0,0);}
.m82_c00116{transform:matrix(0.296866,0.004156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296866,0.004156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296866,0.004156,-0.003500,0.249976,0,0);}
.m2_c00116{transform:matrix(0.331037,0.004303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.331037,0.004303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.331037,0.004303,-0.003250,0.249979,0,0);}
.m6f_c00116{transform:matrix(0.343956,0.004815,-0.003500,0.249976,0,0);-ms-transform:matrix(0.343956,0.004815,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.343956,0.004815,-0.003500,0.249976,0,0);}
.m74_c00116{transform:matrix(0.360520,0.005047,-0.003500,0.249976,0,0);-ms-transform:matrix(0.360520,0.005047,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.360520,0.005047,-0.003500,0.249976,0,0);}
.m1a_c00116{transform:matrix(0.581521,0.007560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.581521,0.007560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.581521,0.007560,-0.003250,0.249979,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;}
.fs8_c00116{font-size:67.206585px;}
.fs4_c00116{font-size:68.256688px;}
.fs1_c00116{font-size:69.305856px;}
.fs6_c00116{font-size:69.306791px;}
.fs5_c00116{font-size:70.356894px;}
.fs3_c00116{font-size:71.406033px;}
.fs7_c00116{font-size:71.406997px;}
.fs2_c00116{font-size:72.456122px;}
.fs0_c00116{font-size:73.506210px;}
.fs9_c00116{font-size:77.707614px;}
.y0_c00116{bottom:0.000000px;}
.y8a_c00116{bottom:579.478392px;}
.y89_c00116{bottom:580.078560px;}
.y88_c00116{bottom:580.580184px;}
.y87_c00116{bottom:581.449470px;}
.y86_c00116{bottom:582.076185px;}
.y85_c00116{bottom:582.700863px;}
.y84_c00116{bottom:582.961542px;}
.y83_c00116{bottom:583.337214px;}
.y82_c00116{bottom:584.368194px;}
.y81_c00116{bottom:585.113376px;}
.y80_c00116{bottom:585.593943px;}
.y7f_c00116{bottom:586.700784px;}
.y7e_c00116{bottom:600.811545px;}
.y7d_c00116{bottom:601.445226px;}
.y7c_c00116{bottom:602.699235px;}
.y7b_c00116{bottom:603.335331px;}
.y7a_c00116{bottom:603.961611px;}
.y79_c00116{bottom:604.615101px;}
.y78_c00116{bottom:604.824393px;}
.y77_c00116{bottom:605.540838px;}
.y76_c00116{bottom:606.579288px;}
.y75_c00116{bottom:607.002858px;}
.y74_c00116{bottom:607.717434px;}
.y73_c00116{bottom:607.771140px;}
.y72_c00116{bottom:608.958195px;}
.y71_c00116{bottom:609.178887px;}
.y70_c00116{bottom:622.965273px;}
.y6f_c00116{bottom:623.343336px;}
.y6e_c00116{bottom:624.378846px;}
.y6d_c00116{bottom:624.715560px;}
.y6c_c00116{bottom:625.358307px;}
.y6b_c00116{bottom:626.076591px;}
.y6a_c00116{bottom:626.401860px;}
.y69_c00116{bottom:627.498207px;}
.y68_c00116{bottom:628.147569px;}
.y67_c00116{bottom:628.631304px;}
.y66_c00116{bottom:629.365653px;}
.y65_c00116{bottom:645.787275px;}
.y64_c00116{bottom:646.475643px;}
.y63_c00116{bottom:647.326110px;}
.y62_c00116{bottom:647.741448px;}
.y61_c00116{bottom:648.358593px;}
.y60_c00116{bottom:649.515675px;}
.y5f_c00116{bottom:650.499549px;}
.y5e_c00116{bottom:650.872242px;}
.y5d_c00116{bottom:651.774972px;}
.y5c_c00116{bottom:652.419066px;}
.y5b_c00116{bottom:653.127108px;}
.y5a_c00116{bottom:668.673585px;}
.y59_c00116{bottom:669.284907px;}
.y58_c00116{bottom:669.645348px;}
.y57_c00116{bottom:670.056963px;}
.y56_c00116{bottom:670.425972px;}
.y55_c00116{bottom:670.762128px;}
.y54_c00116{bottom:671.195277px;}
.y53_c00116{bottom:671.689500px;}
.y52_c00116{bottom:672.056598px;}
.y51_c00116{bottom:672.871323px;}
.y50_c00116{bottom:673.262706px;}
.y4f_c00116{bottom:674.307975px;}
.y4e_c00116{bottom:674.902803px;}
.y4d_c00116{bottom:675.533559px;}
.y4c_c00116{bottom:691.873776px;}
.y4b_c00116{bottom:692.175306px;}
.y4a_c00116{bottom:692.723322px;}
.y49_c00116{bottom:692.993949px;}
.y48_c00116{bottom:693.702900px;}
.y47_c00116{bottom:694.199262px;}
.y46_c00116{bottom:694.870221px;}
.y45_c00116{bottom:695.473881px;}
.y44_c00116{bottom:695.954241px;}
.y43_c00116{bottom:696.490686px;}
.y42_c00116{bottom:696.714510px;}
.y41_c00116{bottom:697.406976px;}
.y40_c00116{bottom:714.096555px;}
.y3f_c00116{bottom:714.850776px;}
.y3e_c00116{bottom:715.240419px;}
.y3d_c00116{bottom:715.679100px;}
.y3c_c00116{bottom:715.981806px;}
.y3b_c00116{bottom:716.302689px;}
.y3a_c00116{bottom:716.741370px;}
.y39_c00116{bottom:717.037356px;}
.y38_c00116{bottom:717.914772px;}
.y37_c00116{bottom:718.479852px;}
.y36_c00116{bottom:718.821138px;}
.y35_c00116{bottom:719.365080px;}
.y34_c00116{bottom:719.691246px;}
.y33_c00116{bottom:720.090729px;}
.y32_c00116{bottom:736.457373px;}
.y31_c00116{bottom:736.797636px;}
.y30_c00116{bottom:737.104635px;}
.y2f_c00116{bottom:738.007908px;}
.y2e_c00116{bottom:738.302286px;}
.y2d_c00116{bottom:738.714327px;}
.y2c_c00116{bottom:739.463859px;}
.y2b_c00116{bottom:739.955154px;}
.y2a_c00116{bottom:740.321835px;}
.y29_c00116{bottom:740.639334px;}
.y28_c00116{bottom:741.365178px;}
.y27_c00116{bottom:741.734736px;}
.y26_c00116{bottom:742.503000px;}
.y24_c00116{bottom:764.488441px;}
.y23_c00116{bottom:764.488762px;}
.y25_c00116{bottom:764.488870px;}
.y22_c00116{bottom:782.555988px;}
.y21_c00116{bottom:782.783770px;}
.y20_c00116{bottom:783.196933px;}
.y1f_c00116{bottom:783.476439px;}
.y1e_c00116{bottom:783.826936px;}
.y1d_c00116{bottom:784.590306px;}
.y1c_c00116{bottom:785.039238px;}
.y1b_c00116{bottom:785.316265px;}
.y1a_c00116{bottom:785.616639px;}
.y19_c00116{bottom:786.388804px;}
.y18_c00116{bottom:786.656256px;}
.y17_c00116{bottom:787.319006px;}
.y16_c00116{bottom:804.864228px;}
.y15_c00116{bottom:805.125868px;}
.y14_c00116{bottom:805.553426px;}
.y13_c00116{bottom:805.743019px;}
.y12_c00116{bottom:806.245334px;}
.y11_c00116{bottom:806.468103px;}
.y10_c00116{bottom:807.049680px;}
.yf_c00116{bottom:807.364799px;}
.ye_c00116{bottom:807.632679px;}
.yd_c00116{bottom:807.855293px;}
.yc_c00116{bottom:808.338805px;}
.yb_c00116{bottom:808.608930px;}
.ya_c00116{bottom:809.001067px;}
.y9_c00116{bottom:809.176677px;}
.y8_c00116{bottom:809.729661px;}
.y7_c00116{bottom:827.154483px;}
.y6_c00116{bottom:828.130594px;}
.y5_c00116{bottom:828.787042px;}
.y4_c00116{bottom:829.902481px;}
.y3_c00116{bottom:830.975215px;}
.y2_c00116{bottom:831.710658px;}
.y1_c00116{bottom:832.423500px;}
.ha_c00116{height:67.206585px;}
.h6_c00116{height:68.256688px;}
.h3_c00116{height:69.305856px;}
.h8_c00116{height:69.306791px;}
.h7_c00116{height:70.356894px;}
.h5_c00116{height:71.406033px;}
.h9_c00116{height:71.406997px;}
.h4_c00116{height:72.456122px;}
.h2_c00116{height:73.506210px;}
.hb_c00116{height:77.707614px;}
.h1_c00116{height:1005.000000px;}
.h0_c00116{height:1005.150000px;}
.w0_c00116{width:705.450000px;}
.w1_c00116{width:705.750000px;}
.x0_c00116{left:0.000000px;}
.x5d_c00116{left:84.670098px;}
.x54_c00116{left:92.685228px;}
.x2e_c00116{left:97.021980px;}
.x1_c00116{left:98.104500px;}
.x21_c00116{left:116.463000px;}
.x2f_c00116{left:127.806921px;}
.x20_c00116{left:134.732182px;}
.x42_c00116{left:138.856671px;}
.x4c_c00116{left:140.487780px;}
.x55_c00116{left:145.138728px;}
.x8_c00116{left:148.681888px;}
.x3b_c00116{left:150.613779px;}
.x2_c00116{left:152.938500px;}
.x16_c00116{left:157.807714px;}
.x5e_c00116{left:162.826209px;}
.x9_c00116{left:164.613798px;}
.x5f_c00116{left:165.805041px;}
.x3c_c00116{left:167.780010px;}
.x22_c00116{left:171.339000px;}
.x68_c00116{left:176.887818px;}
.x43_c00116{left:178.558125px;}
.x56_c00116{left:179.691228px;}
.x4d_c00116{left:180.707646px;}
.x17_c00116{left:182.073838px;}
.x30_c00116{left:194.779866px;}
.x23_c00116{left:197.736000px;}
.xa_c00116{left:200.202214px;}
.x60_c00116{left:205.486815px;}
.x3_c00116{left:209.511000px;}
.x69_c00116{left:214.147689px;}
.x31_c00116{left:220.979223px;}
.xb_c00116{left:224.789358px;}
.x57_c00116{left:226.074228px;}
.x61_c00116{left:228.990492px;}
.x4e_c00116{left:237.151071px;}
.x3d_c00116{left:246.088623px;}
.x44_c00116{left:248.290659px;}
.x24_c00116{left:249.582000px;}
.x18_c00116{left:252.319171px;}
.x4f_c00116{left:260.449920px;}
.x32_c00116{left:264.449832px;}
.x6a_c00116{left:265.713363px;}
.xc_c00116{left:268.791508px;}
.x25_c00116{left:272.260500px;}
.x45_c00116{left:274.424802px;}
.x19_c00116{left:279.579373px;}
.x6b_c00116{left:284.509788px;}
.x62_c00116{left:286.662258px;}
.xd_c00116{left:289.031535px;}
.x4_c00116{left:292.029000px;}
.x26_c00116{left:298.452000px;}
.x1a_c00116{left:304.697517px;}
.xe_c00116{left:313.330659px;}
.x50_c00116{left:321.939198px;}
.x63_c00116{left:326.477532px;}
.x58_c00116{left:327.618228px;}
.x46_c00116{left:328.761546px;}
.x33_c00116{left:331.944777px;}
.x27_c00116{left:333.544500px;}
.x64_c00116{left:338.104881px;}
.xf_c00116{left:341.955900px;}
.x3e_c00116{left:344.098488px;}
.x1b_c00116{left:345.462570px;}
.x47_c00116{left:353.268210px;}
.x34_c00116{left:354.694092px;}
.x6c_c00116{left:360.151446px;}
.x65_c00116{left:374.387844px;}
.x5_c00116{left:377.832000px;}
.x59_c00116{left:378.924228px;}
.x3f_c00116{left:382.232013px;}
.x28_c00116{left:387.082500px;}
.x35_c00116{left:388.386054px;}
.x10_c00116{left:394.886284px;}
.x6d_c00116{left:403.596792px;}
.x66_c00116{left:409.155891px;}
.x36_c00116{left:413.020890px;}
.x11_c00116{left:415.138311px;}
.x29_c00116{left:416.514000px;}
.x5a_c00116{left:424.834728px;}
.x6_c00116{left:428.328000px;}
.x51_c00116{left:432.916611px;}
.x37_c00116{left:436.250205px;}
.x2a_c00116{left:437.541000px;}
.x67_c00116{left:444.517917px;}
.x1c_c00116{left:446.724202px;}
.x5b_c00116{left:448.885728px;}
.x40_c00116{left:457.560063px;}
.x52_c00116{left:458.832876px;}
.x12_c00116{left:460.817500px;}
.x48_c00116{left:462.162198px;}
.x38_c00116{left:469.942167px;}
.x1d_c00116{left:472.148365px;}
.x13_c00116{left:478.055949px;}
.x49_c00116{left:489.634320px;}
.x39_c00116{left:499.917087px;}
.x2b_c00116{left:502.060500px;}
.x7_c00116{left:503.413500px;}
.x1e_c00116{left:509.700340px;}
.x53_c00116{left:511.971885px;}
.x4a_c00116{left:513.665484px;}
.x14_c00116{left:516.945963px;}
.x41_c00116{left:522.849966px;}
.x2c_c00116{left:523.989000px;}
.x1f_c00116{left:530.453386px;}
.x15_c00116{left:540.765087px;}
.x2d_c00116{left:548.293500px;}
.x5c_c00116{left:549.855228px;}
.x4b_c00116{left:554.437917px;}
.x3a_c00116{left:557.969406px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.fs8_c00116{font-size:59.739187pt;}
.fs4_c00116{font-size:60.672612pt;}
.fs1_c00116{font-size:61.605205pt;}
.fs6_c00116{font-size:61.606037pt;}
.fs5_c00116{font-size:62.539461pt;}
.fs3_c00116{font-size:63.472029pt;}
.fs7_c00116{font-size:63.472886pt;}
.fs2_c00116{font-size:64.405442pt;}
.fs0_c00116{font-size:65.338854pt;}
.fs9_c00116{font-size:69.073435pt;}
.y0_c00116{bottom:0.000000pt;}
.y8a_c00116{bottom:515.091904pt;}
.y89_c00116{bottom:515.625387pt;}
.y88_c00116{bottom:516.071275pt;}
.y87_c00116{bottom:516.843973pt;}
.y86_c00116{bottom:517.401053pt;}
.y85_c00116{bottom:517.956323pt;}
.y84_c00116{bottom:518.188037pt;}
.y83_c00116{bottom:518.521968pt;}
.y82_c00116{bottom:519.438395pt;}
.y81_c00116{bottom:520.100779pt;}
.y80_c00116{bottom:520.527949pt;}
.y7f_c00116{bottom:521.511808pt;}
.y7e_c00116{bottom:534.054707pt;}
.y7d_c00116{bottom:534.617979pt;}
.y7c_c00116{bottom:535.732653pt;}
.y7b_c00116{bottom:536.298072pt;}
.y7a_c00116{bottom:536.854765pt;}
.y79_c00116{bottom:537.435645pt;}
.y78_c00116{bottom:537.621683pt;}
.y77_c00116{bottom:538.258523pt;}
.y76_c00116{bottom:539.181589pt;}
.y75_c00116{bottom:539.558096pt;}
.y74_c00116{bottom:540.193275pt;}
.y73_c00116{bottom:540.241013pt;}
.y72_c00116{bottom:541.296173pt;}
.y71_c00116{bottom:541.492344pt;}
.y70_c00116{bottom:553.746909pt;}
.y6f_c00116{bottom:554.082965pt;}
.y6e_c00116{bottom:555.003419pt;}
.y6d_c00116{bottom:555.302720pt;}
.y6c_c00116{bottom:555.874051pt;}
.y6b_c00116{bottom:556.512525pt;}
.y6a_c00116{bottom:556.801653pt;}
.y69_c00116{bottom:557.776184pt;}
.y68_c00116{bottom:558.353395pt;}
.y67_c00116{bottom:558.783381pt;}
.y66_c00116{bottom:559.436136pt;}
.y65_c00116{bottom:574.033133pt;}
.y64_c00116{bottom:574.645016pt;}
.y63_c00116{bottom:575.400987pt;}
.y62_c00116{bottom:575.770176pt;}
.y61_c00116{bottom:576.318749pt;}
.y60_c00116{bottom:577.347267pt;}
.y5f_c00116{bottom:578.221821pt;}
.y5e_c00116{bottom:578.553104pt;}
.y5d_c00116{bottom:579.355531pt;}
.y5c_c00116{bottom:579.928059pt;}
.y5b_c00116{bottom:580.557429pt;}
.y5a_c00116{bottom:594.376520pt;}
.y59_c00116{bottom:594.919917pt;}
.y58_c00116{bottom:595.240309pt;}
.y57_c00116{bottom:595.606189pt;}
.y56_c00116{bottom:595.934197pt;}
.y55_c00116{bottom:596.233003pt;}
.y54_c00116{bottom:596.618024pt;}
.y53_c00116{bottom:597.057333pt;}
.y52_c00116{bottom:597.383643pt;}
.y51_c00116{bottom:598.107843pt;}
.y50_c00116{bottom:598.455739pt;}
.y4f_c00116{bottom:599.384867pt;}
.y4e_c00116{bottom:599.913603pt;}
.y4d_c00116{bottom:600.474275pt;}
.y4c_c00116{bottom:614.998912pt;}
.y4b_c00116{bottom:615.266939pt;}
.y4a_c00116{bottom:615.754064pt;}
.y49_c00116{bottom:615.994621pt;}
.y48_c00116{bottom:616.624800pt;}
.y47_c00116{bottom:617.066011pt;}
.y46_c00116{bottom:617.662419pt;}
.y45_c00116{bottom:618.199005pt;}
.y44_c00116{bottom:618.625992pt;}
.y43_c00116{bottom:619.102832pt;}
.y42_c00116{bottom:619.301787pt;}
.y41_c00116{bottom:619.917312pt;}
.y40_c00116{bottom:634.752493pt;}
.y3f_c00116{bottom:635.422912pt;}
.y3e_c00116{bottom:635.769261pt;}
.y3d_c00116{bottom:636.159200pt;}
.y3c_c00116{bottom:636.428272pt;}
.y3b_c00116{bottom:636.713501pt;}
.y3a_c00116{bottom:637.103440pt;}
.y39_c00116{bottom:637.366539pt;}
.y38_c00116{bottom:638.146464pt;}
.y37_c00116{bottom:638.648757pt;}
.y36_c00116{bottom:638.952123pt;}
.y35_c00116{bottom:639.435627pt;}
.y34_c00116{bottom:639.725552pt;}
.y33_c00116{bottom:640.080648pt;}
.y32_c00116{bottom:654.628776pt;}
.y31_c00116{bottom:654.931232pt;}
.y30_c00116{bottom:655.204120pt;}
.y2f_c00116{bottom:656.007029pt;}
.y2e_c00116{bottom:656.268699pt;}
.y2d_c00116{bottom:656.634957pt;}
.y2c_c00116{bottom:657.301208pt;}
.y2b_c00116{bottom:657.737915pt;}
.y2a_c00116{bottom:658.063853pt;}
.y29_c00116{bottom:658.346075pt;}
.y28_c00116{bottom:658.991269pt;}
.y27_c00116{bottom:659.319765pt;}
.y26_c00116{bottom:660.002667pt;}
.y24_c00116{bottom:679.545281pt;}
.y23_c00116{bottom:679.545567pt;}
.y25_c00116{bottom:679.545663pt;}
.y22_c00116{bottom:695.605323pt;}
.y21_c00116{bottom:695.807796pt;}
.y20_c00116{bottom:696.175052pt;}
.y1f_c00116{bottom:696.423501pt;}
.y1e_c00116{bottom:696.735055pt;}
.y1d_c00116{bottom:697.413605pt;}
.y1c_c00116{bottom:697.812656pt;}
.y1b_c00116{bottom:698.058903pt;}
.y1a_c00116{bottom:698.325901pt;}
.y19_c00116{bottom:699.012271pt;}
.y18_c00116{bottom:699.250005pt;}
.y17_c00116{bottom:699.839116pt;}
.y16_c00116{bottom:715.434869pt;}
.y15_c00116{bottom:715.667439pt;}
.y14_c00116{bottom:716.047489pt;}
.y13_c00116{bottom:716.216017pt;}
.y12_c00116{bottom:716.662519pt;}
.y11_c00116{bottom:716.860536pt;}
.y10_c00116{bottom:717.377493pt;}
.yf_c00116{bottom:717.657599pt;}
.ye_c00116{bottom:717.895715pt;}
.yd_c00116{bottom:718.093593pt;}
.yc_c00116{bottom:718.523383pt;}
.yb_c00116{bottom:718.763493pt;}
.ya_c00116{bottom:719.112060pt;}
.y9_c00116{bottom:719.268157pt;}
.y8_c00116{bottom:719.759699pt;}
.y7_c00116{bottom:735.248429pt;}
.y6_c00116{bottom:736.116084pt;}
.y5_c00116{bottom:736.699593pt;}
.y4_c00116{bottom:737.691095pt;}
.y3_c00116{bottom:738.644636pt;}
.y2_c00116{bottom:739.298363pt;}
.y1_c00116{bottom:739.932000pt;}
.ha_c00116{height:59.739187pt;}
.h6_c00116{height:60.672612pt;}
.h3_c00116{height:61.605205pt;}
.h8_c00116{height:61.606037pt;}
.h7_c00116{height:62.539461pt;}
.h5_c00116{height:63.472029pt;}
.h9_c00116{height:63.472886pt;}
.h4_c00116{height:64.405442pt;}
.h2_c00116{height:65.338854pt;}
.hb_c00116{height:69.073435pt;}
.h1_c00116{height:893.333333pt;}
.h0_c00116{height:893.466667pt;}
.w0_c00116{width:627.066667pt;}
.w1_c00116{width:627.333333pt;}
.x0_c00116{left:0.000000pt;}
.x5d_c00116{left:75.262309pt;}
.x54_c00116{left:82.386869pt;}
.x2e_c00116{left:86.241760pt;}
.x1_c00116{left:87.204000pt;}
.x21_c00116{left:103.522667pt;}
.x2f_c00116{left:113.606152pt;}
.x20_c00116{left:119.761940pt;}
.x42_c00116{left:123.428152pt;}
.x4c_c00116{left:124.878027pt;}
.x55_c00116{left:129.012203pt;}
.x8_c00116{left:132.161679pt;}
.x3b_c00116{left:133.878915pt;}
.x2_c00116{left:135.945333pt;}
.x16_c00116{left:140.273524pt;}
.x5e_c00116{left:144.734408pt;}
.x9_c00116{left:146.323376pt;}
.x5f_c00116{left:147.382259pt;}
.x3c_c00116{left:149.137787pt;}
.x22_c00116{left:152.301333pt;}
.x68_c00116{left:157.233616pt;}
.x43_c00116{left:158.718333pt;}
.x56_c00116{left:159.725536pt;}
.x4d_c00116{left:160.629019pt;}
.x17_c00116{left:161.843412pt;}
.x30_c00116{left:173.137659pt;}
.x23_c00116{left:175.765333pt;}
.xa_c00116{left:177.957524pt;}
.x60_c00116{left:182.654947pt;}
.x3_c00116{left:186.232000pt;}
.x69_c00116{left:190.353501pt;}
.x31_c00116{left:196.425976pt;}
.xb_c00116{left:199.812763pt;}
.x57_c00116{left:200.954869pt;}
.x61_c00116{left:203.547104pt;}
.x4e_c00116{left:210.800952pt;}
.x3d_c00116{left:218.745443pt;}
.x44_c00116{left:220.702808pt;}
.x24_c00116{left:221.850667pt;}
.x18_c00116{left:224.283708pt;}
.x4f_c00116{left:231.511040pt;}
.x32_c00116{left:235.066517pt;}
.x6a_c00116{left:236.189656pt;}
.xc_c00116{left:238.925785pt;}
.x25_c00116{left:242.009333pt;}
.x45_c00116{left:243.933157pt;}
.x19_c00116{left:248.514999pt;}
.x6b_c00116{left:252.897589pt;}
.x62_c00116{left:254.810896pt;}
.xd_c00116{left:256.916920pt;}
.x4_c00116{left:259.581333pt;}
.x26_c00116{left:265.290667pt;}
.x1a_c00116{left:270.842237pt;}
.xe_c00116{left:278.516141pt;}
.x50_c00116{left:286.168176pt;}
.x63_c00116{left:290.202251pt;}
.x58_c00116{left:291.216203pt;}
.x46_c00116{left:292.232485pt;}
.x33_c00116{left:295.062024pt;}
.x27_c00116{left:296.484000pt;}
.x64_c00116{left:300.537672pt;}
.xf_c00116{left:303.960800pt;}
.x3e_c00116{left:305.865323pt;}
.x1b_c00116{left:307.077840pt;}
.x47_c00116{left:314.016187pt;}
.x34_c00116{left:315.283637pt;}
.x6c_c00116{left:320.134619pt;}
.x65_c00116{left:332.789195pt;}
.x5_c00116{left:335.850667pt;}
.x59_c00116{left:336.821536pt;}
.x3f_c00116{left:339.761789pt;}
.x28_c00116{left:344.073333pt;}
.x35_c00116{left:345.232048pt;}
.x10_c00116{left:351.010031pt;}
.x6d_c00116{left:358.752704pt;}
.x66_c00116{left:363.694125pt;}
.x36_c00116{left:367.129680pt;}
.x11_c00116{left:369.011832pt;}
.x29_c00116{left:370.234667pt;}
.x5a_c00116{left:377.630869pt;}
.x6_c00116{left:380.736000pt;}
.x51_c00116{left:384.814765pt;}
.x37_c00116{left:387.777960pt;}
.x2a_c00116{left:388.925333pt;}
.x67_c00116{left:395.127037pt;}
.x1c_c00116{left:397.088180pt;}
.x5b_c00116{left:399.009536pt;}
.x40_c00116{left:406.720056pt;}
.x52_c00116{left:407.851445pt;}
.x12_c00116{left:409.615556pt;}
.x48_c00116{left:410.810843pt;}
.x38_c00116{left:417.726371pt;}
.x1d_c00116{left:419.687436pt;}
.x13_c00116{left:424.938621pt;}
.x49_c00116{left:435.230507pt;}
.x39_c00116{left:444.370744pt;}
.x2b_c00116{left:446.276000pt;}
.x7_c00116{left:447.478667pt;}
.x1e_c00116{left:453.066969pt;}
.x53_c00116{left:455.086120pt;}
.x4a_c00116{left:456.591541pt;}
.x14_c00116{left:459.507523pt;}
.x41_c00116{left:464.755525pt;}
.x2c_c00116{left:465.768000pt;}
.x1f_c00116{left:471.514121pt;}
.x15_c00116{left:480.680077pt;}
.x2d_c00116{left:487.372000pt;}
.x5c_c00116{left:488.760203pt;}
.x4b_c00116{left:492.833704pt;}
.x3a_c00116{left:495.972805pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00117{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
}
.y0_c00117{bottom:0.000000px;}
.h0_c00117{height:1008.450000px;}
.h1_c00117{height:1008.750000px;}
.w0_c00117{width:676.890000px;}
.w1_c00117{width:677.250000px;}
.x0_c00117{left:0.000000px;}
@media print{
.y0_c00117{bottom:0.000000pt;}
.h0_c00117{height:896.400000pt;}
.h1_c00117{height:896.666667pt;}
.w0_c00117{width:601.680000pt;}
.w1_c00117{width:602.000000pt;}
.x0_c00117{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_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;}
.sc__c00118{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
}
.y0_c00118{bottom:0.000000px;}
.h1_c00118{height:1005.000000px;}
.h0_c00118{height:1005.150000px;}
.w0_c00118{width:705.450000px;}
.w1_c00118{width:705.750000px;}
.x0_c00118{left:0.000000px;}
@media print{
.y0_c00118{bottom:0.000000pt;}
.h1_c00118{height:893.333333pt;}
.h0_c00118{height:893.466667pt;}
.w0_c00118{width:627.066667pt;}
.w1_c00118{width:627.333333pt;}
.x0_c00118{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_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;}
.sc__c00119{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
}
.y0_c00119{bottom:0.000000px;}
.h0_c00119{height:1008.450000px;}
.h1_c00119{height:1008.750000px;}
.w0_c00119{width:676.890000px;}
.w1_c00119{width:677.250000px;}
.x0_c00119{left:0.000000px;}
@media print{
.y0_c00119{bottom:0.000000pt;}
.h0_c00119{height:896.400000pt;}
.h1_c00119{height:896.666667pt;}
.w0_c00119{width:601.680000pt;}
.w1_c00119{width:602.000000pt;}
.x0_c00119{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_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_d24df5124729fd0a4ee0fe1e.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;}
.mda_c00120{transform:matrix(0.010540,0.000084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010540,0.000084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010540,0.000084,-0.002000,0.249992,0,0);}
.m25_c00120{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);}
.m104_c00120{transform:matrix(0.011785,0.000094,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011785,0.000094,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011785,0.000094,-0.002000,0.249992,0,0);}
.m69_c00120{transform:matrix(0.011785,-0.000071,0.001500,0.249996,0,0);-ms-transform:matrix(0.011785,-0.000071,0.001500,0.249996,0,0);-webkit-transform:matrix(0.011785,-0.000071,0.001500,0.249996,0,0);}
.mc_c00120{transform:matrix(0.013223,-0.000238,0.004499,0.249960,0,0);-ms-transform:matrix(0.013223,-0.000238,0.004499,0.249960,0,0);-webkit-transform:matrix(0.013223,-0.000238,0.004499,0.249960,0,0);}
.m77_c00120{transform:matrix(0.014050,-0.000084,0.001500,0.249996,0,0);-ms-transform:matrix(0.014050,-0.000084,0.001500,0.249996,0,0);-webkit-transform:matrix(0.014050,-0.000084,0.001500,0.249996,0,0);}
.mf3_c00120{transform:matrix(0.029434,0.000235,-0.002000,0.249992,0,0);-ms-transform:matrix(0.029434,0.000235,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.029434,0.000235,-0.002000,0.249992,0,0);}
.m1b_c00120{transform:matrix(0.079147,-0.001425,0.004499,0.249960,0,0);-ms-transform:matrix(0.079147,-0.001425,0.004499,0.249960,0,0);-webkit-transform:matrix(0.079147,-0.001425,0.004499,0.249960,0,0);}
.m105_c00120{transform:matrix(0.095437,0.000763,-0.002000,0.249992,0,0);-ms-transform:matrix(0.095437,0.000763,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.095437,0.000763,-0.002000,0.249992,0,0);}
.m45_c00120{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);}
.mfd_c00120{transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143320,0.001147,-0.002000,0.249992,0,0);}
.m3f_c00120{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);}
.m8a_c00120{transform:matrix(0.151290,0.001210,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151290,0.001210,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151290,0.001210,-0.002000,0.249992,0,0);}
.md7_c00120{transform:matrix(0.151320,0.001211,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151320,0.001211,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151320,0.001211,-0.002000,0.249992,0,0);}
.m85_c00120{transform:matrix(0.153485,0.001228,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153485,0.001228,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153485,0.001228,-0.002000,0.249992,0,0);}
.m42_c00120{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);}
.mbe_c00120{transform:matrix(0.154360,0.001235,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154360,0.001235,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154360,0.001235,-0.002000,0.249992,0,0);}
.m6d_c00120{transform:matrix(0.154457,-0.000927,0.001500,0.249996,0,0);-ms-transform:matrix(0.154457,-0.000927,0.001500,0.249996,0,0);-webkit-transform:matrix(0.154457,-0.000927,0.001500,0.249996,0,0);}
.m99_c00120{transform:matrix(0.155155,0.001241,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155155,0.001241,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155155,0.001241,-0.002000,0.249992,0,0);}
.mb8_c00120{transform:matrix(0.155885,0.001247,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155885,0.001247,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155885,0.001247,-0.002000,0.249992,0,0);}
.m100_c00120{transform:matrix(0.156695,0.001254,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156695,0.001254,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156695,0.001254,-0.002000,0.249992,0,0);}
.m71_c00120{transform:matrix(0.158662,-0.000952,0.001500,0.249996,0,0);-ms-transform:matrix(0.158662,-0.000952,0.001500,0.249996,0,0);-webkit-transform:matrix(0.158662,-0.000952,0.001500,0.249996,0,0);}
.m65_c00120{transform:matrix(0.158752,-0.000953,0.001500,0.249996,0,0);-ms-transform:matrix(0.158752,-0.000953,0.001500,0.249996,0,0);-webkit-transform:matrix(0.158752,-0.000953,0.001500,0.249996,0,0);}
.m97_c00120{transform:matrix(0.159010,0.001272,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159010,0.001272,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159010,0.001272,-0.002000,0.249992,0,0);}
.m3b_c00120{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);}
.m36_c00120{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);}
.m46_c00120{transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.160337,-0.000962,0.001500,0.249996,0,0);-ms-transform:matrix(0.160337,-0.000962,0.001500,0.249996,0,0);-webkit-transform:matrix(0.160337,-0.000962,0.001500,0.249996,0,0);}
.m49_c00120{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);}
.m58_c00120{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);}
.mb4_c00120{transform:matrix(0.163850,0.001311,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163850,0.001311,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163850,0.001311,-0.002000,0.249992,0,0);}
.m4f_c00120{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);}
.mf1_c00120{transform:matrix(0.164095,0.001313,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164095,0.001313,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164095,0.001313,-0.002000,0.249992,0,0);}
.mc0_c00120{transform:matrix(0.165095,0.001321,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165095,0.001321,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165095,0.001321,-0.002000,0.249992,0,0);}
.md4_c00120{transform:matrix(0.165280,0.001322,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165280,0.001322,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165280,0.001322,-0.002000,0.249992,0,0);}
.m74_c00120{transform:matrix(0.165687,-0.000994,0.001500,0.249996,0,0);-ms-transform:matrix(0.165687,-0.000994,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165687,-0.000994,0.001500,0.249996,0,0);}
.m26_c00120{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);}
.m4b_c00120{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);}
.md3_c00120{transform:matrix(0.167765,0.001342,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167765,0.001342,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167765,0.001342,-0.002000,0.249992,0,0);}
.m95_c00120{transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);}
.ma7_c00120{transform:matrix(0.168600,0.001349,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168600,0.001349,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168600,0.001349,-0.002000,0.249992,0,0);}
.m107_c00120{transform:matrix(0.168645,0.001349,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168645,0.001349,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168645,0.001349,-0.002000,0.249992,0,0);}
.m38_c00120{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);}
.m55_c00120{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);}
.m2e_c00120{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);}
.mef_c00120{transform:matrix(0.170470,0.001364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170470,0.001364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170470,0.001364,-0.002000,0.249992,0,0);}
.m60_c00120{transform:matrix(0.170627,-0.001024,0.001500,0.249996,0,0);-ms-transform:matrix(0.170627,-0.001024,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170627,-0.001024,0.001500,0.249996,0,0);}
.md6_c00120{transform:matrix(0.171070,0.001369,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171070,0.001369,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171070,0.001369,-0.002000,0.249992,0,0);}
.m3d_c00120{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);}
.ma5_c00120{transform:matrix(0.171590,0.001373,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171590,0.001373,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171590,0.001373,-0.002000,0.249992,0,0);}
.mfc_c00120{transform:matrix(0.171725,0.001374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171725,0.001374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171725,0.001374,-0.002000,0.249992,0,0);}
.mff_c00120{transform:matrix(0.171949,0.001376,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171949,0.001376,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171949,0.001376,-0.002000,0.249992,0,0);}
.m70_c00120{transform:matrix(0.172637,-0.001036,0.001500,0.249996,0,0);-ms-transform:matrix(0.172637,-0.001036,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172637,-0.001036,0.001500,0.249996,0,0);}
.m10c_c00120{transform:matrix(0.172839,0.001383,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172839,0.001383,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172839,0.001383,-0.002000,0.249992,0,0);}
.m80_c00120{transform:matrix(0.172864,0.001383,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172864,0.001383,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172864,0.001383,-0.002000,0.249992,0,0);}
.m115_c00120{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);}
.m29_c00120{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);}
.m48_c00120{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);}
.m8c_c00120{transform:matrix(0.173149,0.001385,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173149,0.001385,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173149,0.001385,-0.002000,0.249992,0,0);}
.mc1_c00120{transform:matrix(0.173664,0.001389,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173664,0.001389,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173664,0.001389,-0.002000,0.249992,0,0);}
.mbd_c00120{transform:matrix(0.174134,0.001393,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174134,0.001393,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174134,0.001393,-0.002000,0.249992,0,0);}
.m120_c00120{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);}
.m10b_c00120{transform:matrix(0.174669,0.001397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174669,0.001397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174669,0.001397,-0.002000,0.249992,0,0);}
.mbb_c00120{transform:matrix(0.174739,0.001398,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174739,0.001398,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174739,0.001398,-0.002000,0.249992,0,0);}
.m11e_c00120{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);}
.md5_c00120{transform:matrix(0.175764,0.001406,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175764,0.001406,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175764,0.001406,-0.002000,0.249992,0,0);}
.ma4_c00120{transform:matrix(0.176149,0.001409,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176149,0.001409,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176149,0.001409,-0.002000,0.249992,0,0);}
.m7e_c00120{transform:matrix(0.176314,0.001411,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176314,0.001411,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176314,0.001411,-0.002000,0.249992,0,0);}
.ma2_c00120{transform:matrix(0.176559,0.001412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176559,0.001412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176559,0.001412,-0.002000,0.249992,0,0);}
.m66_c00120{transform:matrix(0.176667,-0.001060,0.001500,0.249996,0,0);-ms-transform:matrix(0.176667,-0.001060,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176667,-0.001060,0.001500,0.249996,0,0);}
.m6c_c00120{transform:matrix(0.176762,-0.001061,0.001500,0.249996,0,0);-ms-transform:matrix(0.176762,-0.001061,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176762,-0.001061,0.001500,0.249996,0,0);}
.mf9_c00120{transform:matrix(0.177159,0.001417,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177159,0.001417,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177159,0.001417,-0.002000,0.249992,0,0);}
.m96_c00120{transform:matrix(0.177514,0.001420,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177514,0.001420,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177514,0.001420,-0.002000,0.249992,0,0);}
.m6b_c00120{transform:matrix(0.178357,-0.001070,0.001500,0.249996,0,0);-ms-transform:matrix(0.178357,-0.001070,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178357,-0.001070,0.001500,0.249996,0,0);}
.mfb_c00120{transform:matrix(0.178379,0.001427,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178379,0.001427,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178379,0.001427,-0.002000,0.249992,0,0);}
.ma8_c00120{transform:matrix(0.178429,0.001427,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178429,0.001427,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178429,0.001427,-0.002000,0.249992,0,0);}
.m10f_c00120{transform:matrix(0.178679,0.001429,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178679,0.001429,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178679,0.001429,-0.002000,0.249992,0,0);}
.m1f_c00120{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);}
.me0_c00120{transform:matrix(0.179149,0.001433,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179149,0.001433,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179149,0.001433,-0.002000,0.249992,0,0);}
.mde_c00120{transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);}
.m9c_c00120{transform:matrix(0.179874,0.001439,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179874,0.001439,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179874,0.001439,-0.002000,0.249992,0,0);}
.mc5_c00120{transform:matrix(0.181084,0.001449,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181084,0.001449,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181084,0.001449,-0.002000,0.249992,0,0);}
.md0_c00120{transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181154,0.001449,-0.002000,0.249992,0,0);}
.m121_c00120{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);}
.m4a_c00120{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);}
.m63_c00120{transform:matrix(0.181657,-0.001090,0.001500,0.249996,0,0);-ms-transform:matrix(0.181657,-0.001090,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181657,-0.001090,0.001500,0.249996,0,0);}
.mc6_c00120{transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);}
.m118_c00120{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);}
.mae_c00120{transform:matrix(0.183654,0.001469,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183654,0.001469,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183654,0.001469,-0.002000,0.249992,0,0);}
.mc9_c00120{transform:matrix(0.184079,0.001473,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184079,0.001473,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184079,0.001473,-0.002000,0.249992,0,0);}
.mba_c00120{transform:matrix(0.184109,0.001473,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184109,0.001473,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184109,0.001473,-0.002000,0.249992,0,0);}
.m3e_c00120{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);}
.m4e_c00120{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);}
.m8f_c00120{transform:matrix(0.184459,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184459,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184459,0.001476,-0.002000,0.249992,0,0);}
.m7c_c00120{transform:matrix(0.184807,-0.001109,0.001500,0.249996,0,0);-ms-transform:matrix(0.184807,-0.001109,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184807,-0.001109,0.001500,0.249996,0,0);}
.md8_c00120{transform:matrix(0.184864,0.001479,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184864,0.001479,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184864,0.001479,-0.002000,0.249992,0,0);}
.mb1_c00120{transform:matrix(0.184964,0.001480,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184964,0.001480,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184964,0.001480,-0.002000,0.249992,0,0);}
.md1_c00120{transform:matrix(0.185214,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185214,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185214,0.001482,-0.002000,0.249992,0,0);}
.m64_c00120{transform:matrix(0.185312,-0.001112,0.001500,0.249996,0,0);-ms-transform:matrix(0.185312,-0.001112,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185312,-0.001112,0.001500,0.249996,0,0);}
.mcf_c00120{transform:matrix(0.185589,0.001485,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185589,0.001485,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185589,0.001485,-0.002000,0.249992,0,0);}
.mb9_c00120{transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);}
.m33_c00120{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_c00120{transform:matrix(0.186374,0.001491,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186374,0.001491,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186374,0.001491,-0.002000,0.249992,0,0);}
.m17_c00120{transform:matrix(0.186485,-0.003357,0.004499,0.249960,0,0);-ms-transform:matrix(0.186485,-0.003357,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186485,-0.003357,0.004499,0.249960,0,0);}
.m10d_c00120{transform:matrix(0.186644,0.001493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186644,0.001493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186644,0.001493,-0.002000,0.249992,0,0);}
.m7b_c00120{transform:matrix(0.186987,-0.001122,0.001500,0.249996,0,0);-ms-transform:matrix(0.186987,-0.001122,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186987,-0.001122,0.001500,0.249996,0,0);}
.ma3_c00120{transform:matrix(0.187524,0.001500,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187524,0.001500,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187524,0.001500,-0.002000,0.249992,0,0);}
.m51_c00120{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);}
.m50_c00120{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);}
.mdf_c00120{transform:matrix(0.187704,0.001502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187704,0.001502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187704,0.001502,-0.002000,0.249992,0,0);}
.m101_c00120{transform:matrix(0.187804,0.001502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187804,0.001502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187804,0.001502,-0.002000,0.249992,0,0);}
.m119_c00120{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);}
.m18_c00120{transform:matrix(0.188674,-0.003396,0.004499,0.249960,0,0);-ms-transform:matrix(0.188674,-0.003396,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188674,-0.003396,0.004499,0.249960,0,0);}
.m47_c00120{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);}
.mb7_c00120{transform:matrix(0.189594,0.001517,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189594,0.001517,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189594,0.001517,-0.002000,0.249992,0,0);}
.m90_c00120{transform:matrix(0.189604,0.001517,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189604,0.001517,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189604,0.001517,-0.002000,0.249992,0,0);}
.md2_c00120{transform:matrix(0.189734,0.001518,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189734,0.001518,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189734,0.001518,-0.002000,0.249992,0,0);}
.m75_c00120{transform:matrix(0.190057,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.190057,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190057,-0.001140,0.001500,0.249996,0,0);}
.m7a_c00120{transform:matrix(0.190672,-0.001144,0.001500,0.249996,0,0);-ms-transform:matrix(0.190672,-0.001144,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190672,-0.001144,0.001500,0.249996,0,0);}
.m6e_c00120{transform:matrix(0.190722,-0.001144,0.001500,0.249996,0,0);-ms-transform:matrix(0.190722,-0.001144,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190722,-0.001144,0.001500,0.249996,0,0);}
.m106_c00120{transform:matrix(0.190854,0.001527,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190854,0.001527,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190854,0.001527,-0.002000,0.249992,0,0);}
.m56_c00120{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);}
.m113_c00120{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);}
.mc4_c00120{transform:matrix(0.191549,0.001532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191549,0.001532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191549,0.001532,-0.002000,0.249992,0,0);}
.mdc_c00120{transform:matrix(0.191564,0.001533,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191564,0.001533,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191564,0.001533,-0.002000,0.249992,0,0);}
.m9b_c00120{transform:matrix(0.191569,0.001533,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191569,0.001533,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191569,0.001533,-0.002000,0.249992,0,0);}
.mf2_c00120{transform:matrix(0.191879,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191879,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191879,0.001535,-0.002000,0.249992,0,0);}
.mc8_c00120{transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);}
.mc7_c00120{transform:matrix(0.192379,0.001539,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192379,0.001539,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192379,0.001539,-0.002000,0.249992,0,0);}
.m0_c00120{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);}
.m10a_c00120{transform:matrix(0.192859,0.001543,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192859,0.001543,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192859,0.001543,-0.002000,0.249992,0,0);}
.m91_c00120{transform:matrix(0.193039,0.001544,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193039,0.001544,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193039,0.001544,-0.002000,0.249992,0,0);}
.m44_c00120{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);}
.m5f_c00120{transform:matrix(0.193692,-0.001162,0.001500,0.249996,0,0);-ms-transform:matrix(0.193692,-0.001162,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193692,-0.001162,0.001500,0.249996,0,0);}
.m92_c00120{transform:matrix(0.194509,0.001556,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194509,0.001556,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194509,0.001556,-0.002000,0.249992,0,0);}
.m10e_c00120{transform:matrix(0.194864,0.001559,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194864,0.001559,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194864,0.001559,-0.002000,0.249992,0,0);}
.m9d_c00120{transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);}
.m8d_c00120{transform:matrix(0.195274,0.001562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195274,0.001562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195274,0.001562,-0.002000,0.249992,0,0);}
.m5c_c00120{transform:matrix(0.195851,-0.001175,0.001500,0.249996,0,0);-ms-transform:matrix(0.195851,-0.001175,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195851,-0.001175,0.001500,0.249996,0,0);}
.m16_c00120{transform:matrix(0.195893,-0.003526,0.004499,0.249960,0,0);-ms-transform:matrix(0.195893,-0.003526,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195893,-0.003526,0.004499,0.249960,0,0);}
.m8e_c00120{transform:matrix(0.196224,0.001570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196224,0.001570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196224,0.001570,-0.002000,0.249992,0,0);}
.m9a_c00120{transform:matrix(0.196474,0.001572,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196474,0.001572,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196474,0.001572,-0.002000,0.249992,0,0);}
.m98_c00120{transform:matrix(0.197249,0.001578,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197249,0.001578,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197249,0.001578,-0.002000,0.249992,0,0);}
.m53_c00120{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.mec_c00120{transform:matrix(0.198214,0.001586,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198214,0.001586,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198214,0.001586,-0.002000,0.249992,0,0);}
.m93_c00120{transform:matrix(0.198659,0.001589,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198659,0.001589,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198659,0.001589,-0.002000,0.249992,0,0);}
.mb2_c00120{transform:matrix(0.198784,0.001590,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198784,0.001590,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198784,0.001590,-0.002000,0.249992,0,0);}
.m87_c00120{transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);}
.m3c_c00120{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);}
.m2a_c00120{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);}
.mfa_c00120{transform:matrix(0.199884,0.001599,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199884,0.001599,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199884,0.001599,-0.002000,0.249992,0,0);}
.m39_c00120{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);}
.m62_c00120{transform:matrix(0.200506,-0.001203,0.001500,0.249996,0,0);-ms-transform:matrix(0.200506,-0.001203,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200506,-0.001203,0.001500,0.249996,0,0);}
.m54_c00120{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);}
.m37_c00120{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);}
.m3a_c00120{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);}
.m72_c00120{transform:matrix(0.203436,-0.001221,0.001500,0.249996,0,0);-ms-transform:matrix(0.203436,-0.001221,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203436,-0.001221,0.001500,0.249996,0,0);}
.m28_c00120{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);}
.mbf_c00120{transform:matrix(0.203813,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203813,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203813,0.001631,-0.002000,0.249992,0,0);}
.m61_c00120{transform:matrix(0.204936,-0.001230,0.001500,0.249996,0,0);-ms-transform:matrix(0.204936,-0.001230,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204936,-0.001230,0.001500,0.249996,0,0);}
.m108_c00120{transform:matrix(0.205023,0.001640,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205023,0.001640,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205023,0.001640,-0.002000,0.249992,0,0);}
.mac_c00120{transform:matrix(0.205663,0.001645,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205663,0.001645,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205663,0.001645,-0.002000,0.249992,0,0);}
.m9e_c00120{transform:matrix(0.205713,0.001646,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205713,0.001646,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205713,0.001646,-0.002000,0.249992,0,0);}
.ma9_c00120{transform:matrix(0.206238,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206238,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206238,0.001650,-0.002000,0.249992,0,0);}
.ma1_c00120{transform:matrix(0.206498,0.001652,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206498,0.001652,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206498,0.001652,-0.002000,0.249992,0,0);}
.mce_c00120{transform:matrix(0.207393,0.001659,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207393,0.001659,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207393,0.001659,-0.002000,0.249992,0,0);}
.m116_c00120{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);}
.mf8_c00120{transform:matrix(0.208103,0.001665,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208103,0.001665,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208103,0.001665,-0.002000,0.249992,0,0);}
.m109_c00120{transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);}
.mf0_c00120{transform:matrix(0.208828,0.001671,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208828,0.001671,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208828,0.001671,-0.002000,0.249992,0,0);}
.me5_c00120{transform:matrix(0.209273,0.001674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209273,0.001674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209273,0.001674,-0.002000,0.249992,0,0);}
.mb0_c00120{transform:matrix(0.209648,0.001677,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209648,0.001677,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209648,0.001677,-0.002000,0.249992,0,0);}
.mee_c00120{transform:matrix(0.209863,0.001679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209863,0.001679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209863,0.001679,-0.002000,0.249992,0,0);}
.mbc_c00120{transform:matrix(0.210713,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210713,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210713,0.001686,-0.002000,0.249992,0,0);}
.mb5_c00120{transform:matrix(0.210728,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210728,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210728,0.001686,-0.002000,0.249992,0,0);}
.med_c00120{transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);}
.m81_c00120{transform:matrix(0.212903,0.001703,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212903,0.001703,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212903,0.001703,-0.002000,0.249992,0,0);}
.m8b_c00120{transform:matrix(0.216638,0.001733,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216638,0.001733,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216638,0.001733,-0.002000,0.249992,0,0);}
.me3_c00120{transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);}
.m114_c00120{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);}
.mcd_c00120{transform:matrix(0.219488,0.001756,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219488,0.001756,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219488,0.001756,-0.002000,0.249992,0,0);}
.m52_c00120{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);}
.m5b_c00120{transform:matrix(0.222596,-0.001336,0.001500,0.249996,0,0);-ms-transform:matrix(0.222596,-0.001336,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222596,-0.001336,0.001500,0.249996,0,0);}
.m2f_c00120{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);}
.m11f_c00120{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);}
.mc3_c00120{transform:matrix(0.223388,0.001787,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223388,0.001787,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223388,0.001787,-0.002000,0.249992,0,0);}
.ma6_c00120{transform:matrix(0.224298,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224298,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224298,0.001794,-0.002000,0.249992,0,0);}
.mad_c00120{transform:matrix(0.225268,0.001802,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225268,0.001802,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225268,0.001802,-0.002000,0.249992,0,0);}
.m30_c00120{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);}
.md9_c00120{transform:matrix(0.226678,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226678,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226678,0.001813,-0.002000,0.249992,0,0);}
.m11d_c00120{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);}
.m7f_c00120{transform:matrix(0.228738,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228738,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228738,0.001830,-0.002000,0.249992,0,0);}
.m43_c00120{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);}
.m2c_c00120{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);}
.me1_c00120{transform:matrix(0.231168,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231168,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231168,0.001849,-0.002000,0.249992,0,0);}
.m35_c00120{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);}
.m102_c00120{transform:matrix(0.233473,0.001868,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233473,0.001868,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233473,0.001868,-0.002000,0.249992,0,0);}
.m82_c00120{transform:matrix(0.233708,0.001870,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233708,0.001870,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233708,0.001870,-0.002000,0.249992,0,0);}
.mb3_c00120{transform:matrix(0.233918,0.001871,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233918,0.001871,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233918,0.001871,-0.002000,0.249992,0,0);}
.m6f_c00120{transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);}
.mca_c00120{transform:matrix(0.237182,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237182,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237182,0.001897,-0.002000,0.249992,0,0);}
.m12_c00120{transform:matrix(0.237412,-0.004273,0.004499,0.249960,0,0);-ms-transform:matrix(0.237412,-0.004273,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237412,-0.004273,0.004499,0.249960,0,0);}
.mf6_c00120{transform:matrix(0.237682,0.001901,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237682,0.001901,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237682,0.001901,-0.002000,0.249992,0,0);}
.m123_c00120{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);}
.mdd_c00120{transform:matrix(0.242427,0.001939,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242427,0.001939,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242427,0.001939,-0.002000,0.249992,0,0);}
.maf_c00120{transform:matrix(0.243527,0.001948,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243527,0.001948,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243527,0.001948,-0.002000,0.249992,0,0);}
.me4_c00120{transform:matrix(0.243732,0.001950,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243732,0.001950,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243732,0.001950,-0.002000,0.249992,0,0);}
.m57_c00120{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.247200,-0.004450,0.004499,0.249960,0,0);-ms-transform:matrix(0.247200,-0.004450,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247200,-0.004450,0.004499,0.249960,0,0);}
.m5e_c00120{transform:matrix(0.247541,-0.001485,0.001500,0.249996,0,0);-ms-transform:matrix(0.247541,-0.001485,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247541,-0.001485,0.001500,0.249996,0,0);}
.m41_c00120{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.mea_c00120{transform:matrix(0.252672,0.002021,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252672,0.002021,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252672,0.002021,-0.002000,0.249992,0,0);}
.m79_c00120{transform:matrix(0.253025,-0.001518,0.001500,0.249996,0,0);-ms-transform:matrix(0.253025,-0.001518,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253025,-0.001518,0.001500,0.249996,0,0);}
.m117_c00120{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.255940,-0.001536,0.001500,0.249996,0,0);-ms-transform:matrix(0.255940,-0.001536,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255940,-0.001536,0.001500,0.249996,0,0);}
.m31_c00120{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.268781,-0.004838,0.004499,0.249960,0,0);-ms-transform:matrix(0.268781,-0.004838,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268781,-0.004838,0.004499,0.249960,0,0);}
.m67_c00120{transform:matrix(0.270120,-0.001621,0.001500,0.249996,0,0);-ms-transform:matrix(0.270120,-0.001621,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270120,-0.001621,0.001500,0.249996,0,0);}
.m11_c00120{transform:matrix(0.271071,-0.004879,0.004499,0.249960,0,0);-ms-transform:matrix(0.271071,-0.004879,0.004499,0.249960,0,0);-webkit-transform:matrix(0.271071,-0.004879,0.004499,0.249960,0,0);}
.meb_c00120{transform:matrix(0.273346,0.002187,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273346,0.002187,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273346,0.002187,-0.002000,0.249992,0,0);}
.m20_c00120{transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276490,0.000000,0.000000,0.250000,0,0);}
.me9_c00120{transform:matrix(0.280321,0.002243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280321,0.002243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280321,0.002243,-0.002000,0.249992,0,0);}
.m59_c00120{transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);}
.m110_c00120{transform:matrix(0.285411,0.002283,-0.002000,0.249992,0,0);-ms-transform:matrix(0.285411,0.002283,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.285411,0.002283,-0.002000,0.249992,0,0);}
.m19_c00120{transform:matrix(0.288583,-0.005194,0.004499,0.249960,0,0);-ms-transform:matrix(0.288583,-0.005194,0.004499,0.249960,0,0);-webkit-transform:matrix(0.288583,-0.005194,0.004499,0.249960,0,0);}
.m10_c00120{transform:matrix(0.290028,-0.005221,0.004499,0.249960,0,0);-ms-transform:matrix(0.290028,-0.005221,0.004499,0.249960,0,0);-webkit-transform:matrix(0.290028,-0.005221,0.004499,0.249960,0,0);}
.m2b_c00120{transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290875,0.000000,0.000000,0.250000,0,0);}
.m124_c00120{transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293690,0.000000,0.000000,0.250000,0,0);}
.mfe_c00120{transform:matrix(0.298125,0.002385,-0.002000,0.249992,0,0);-ms-transform:matrix(0.298125,0.002385,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.298125,0.002385,-0.002000,0.249992,0,0);}
.mf7_c00120{transform:matrix(0.300315,0.002403,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300315,0.002403,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300315,0.002403,-0.002000,0.249992,0,0);}
.m40_c00120{transform:matrix(0.303310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303310,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.303465,-0.001821,0.001500,0.249996,0,0);-ms-transform:matrix(0.303465,-0.001821,0.001500,0.249996,0,0);-webkit-transform:matrix(0.303465,-0.001821,0.001500,0.249996,0,0);}
.m122_c00120{transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305505,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);}
.m112_c00120{transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00120{transform:matrix(0.323485,0.002588,-0.002000,0.249992,0,0);-ms-transform:matrix(0.323485,0.002588,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.323485,0.002588,-0.002000,0.249992,0,0);}
.m7d_c00120{transform:matrix(0.326534,-0.001959,0.001500,0.249996,0,0);-ms-transform:matrix(0.326534,-0.001959,0.001500,0.249996,0,0);-webkit-transform:matrix(0.326534,-0.001959,0.001500,0.249996,0,0);}
.mb6_c00120{transform:matrix(0.331404,0.002651,-0.002000,0.249992,0,0);-ms-transform:matrix(0.331404,0.002651,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.331404,0.002651,-0.002000,0.249992,0,0);}
.mdb_c00120{transform:matrix(0.337539,0.002700,-0.002000,0.249992,0,0);-ms-transform:matrix(0.337539,0.002700,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.337539,0.002700,-0.002000,0.249992,0,0);}
.m4_c00120{transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.340840,-0.006135,0.004499,0.249960,0,0);-ms-transform:matrix(0.340840,-0.006135,0.004499,0.249960,0,0);-webkit-transform:matrix(0.340840,-0.006135,0.004499,0.249960,0,0);}
.m1e_c00120{transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00120{transform:matrix(0.343999,0.002752,-0.002000,0.249992,0,0);-ms-transform:matrix(0.343999,0.002752,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.343999,0.002752,-0.002000,0.249992,0,0);}
.me2_c00120{transform:matrix(0.351164,0.002809,-0.002000,0.249992,0,0);-ms-transform:matrix(0.351164,0.002809,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.351164,0.002809,-0.002000,0.249992,0,0);}
.m22_c00120{transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.361375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361375,0.000000,0.000000,0.250000,0,0);}
.me7_c00120{transform:matrix(0.381528,0.003052,-0.002000,0.249992,0,0);-ms-transform:matrix(0.381528,0.003052,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.381528,0.003052,-0.002000,0.249992,0,0);}
.mf_c00120{transform:matrix(0.386907,-0.006964,0.004499,0.249960,0,0);-ms-transform:matrix(0.386907,-0.006964,0.004499,0.249960,0,0);-webkit-transform:matrix(0.386907,-0.006964,0.004499,0.249960,0,0);}
.m78_c00120{transform:matrix(0.394133,-0.002365,0.001500,0.249996,0,0);-ms-transform:matrix(0.394133,-0.002365,0.001500,0.249996,0,0);-webkit-transform:matrix(0.394133,-0.002365,0.001500,0.249996,0,0);}
.m2d_c00120{transform:matrix(0.398570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398570,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411705,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.413925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413925,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.414370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414370,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.417425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417425,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.419632,-0.007553,0.004499,0.249960,0,0);-ms-transform:matrix(0.419632,-0.007553,0.004499,0.249960,0,0);-webkit-transform:matrix(0.419632,-0.007553,0.004499,0.249960,0,0);}
.m94_c00120{transform:matrix(0.420082,0.003361,-0.002000,0.249992,0,0);-ms-transform:matrix(0.420082,0.003361,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.420082,0.003361,-0.002000,0.249992,0,0);}
.m4d_c00120{transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.422632,-0.002536,0.001500,0.249996,0,0);-ms-transform:matrix(0.422632,-0.002536,0.001500,0.249996,0,0);-webkit-transform:matrix(0.422632,-0.002536,0.001500,0.249996,0,0);}
.maa_c00120{transform:matrix(0.423391,0.003387,-0.002000,0.249992,0,0);-ms-transform:matrix(0.423391,0.003387,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.423391,0.003387,-0.002000,0.249992,0,0);}
.mf4_c00120{transform:matrix(0.423541,0.003388,-0.002000,0.249992,0,0);-ms-transform:matrix(0.423541,0.003388,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.423541,0.003388,-0.002000,0.249992,0,0);}
.m21_c00120{transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.442440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442440,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.446271,0.003570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.446271,0.003570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.446271,0.003570,-0.002000,0.249992,0,0);}
.me8_c00120{transform:matrix(0.456270,0.003650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.456270,0.003650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.456270,0.003650,-0.002000,0.249992,0,0);}
.m11a_c00120{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);}
.m27_c00120{transform:matrix(0.480150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480150,0.000000,0.000000,0.250000,0,0);}
.me6_c00120{transform:matrix(0.494824,0.003959,-0.002000,0.249992,0,0);-ms-transform:matrix(0.494824,0.003959,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.494824,0.003959,-0.002000,0.249992,0,0);}
.md_c00120{transform:matrix(0.497614,-0.008957,0.004499,0.249960,0,0);-ms-transform:matrix(0.497614,-0.008957,0.004499,0.249960,0,0);-webkit-transform:matrix(0.497614,-0.008957,0.004499,0.249960,0,0);}
.ma0_c00120{transform:matrix(0.499234,0.003994,-0.002000,0.249992,0,0);-ms-transform:matrix(0.499234,0.003994,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.499234,0.003994,-0.002000,0.249992,0,0);}
.m76_c00120{transform:matrix(0.503096,-0.003019,0.001500,0.249996,0,0);-ms-transform:matrix(0.503096,-0.003019,0.001500,0.249996,0,0);-webkit-transform:matrix(0.503096,-0.003019,0.001500,0.249996,0,0);}
.mf5_c00120{transform:matrix(0.507599,0.004061,-0.002000,0.249992,0,0);-ms-transform:matrix(0.507599,0.004061,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.507599,0.004061,-0.002000,0.249992,0,0);}
.m103_c00120{transform:matrix(0.563062,0.004504,-0.002000,0.249992,0,0);-ms-transform:matrix(0.563062,0.004504,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.563062,0.004504,-0.002000,0.249992,0,0);}
.m83_c00120{transform:matrix(0.576192,0.004610,-0.002000,0.249992,0,0);-ms-transform:matrix(0.576192,0.004610,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.576192,0.004610,-0.002000,0.249992,0,0);}
.mc2_c00120{transform:matrix(0.579686,0.004637,-0.002000,0.249992,0,0);-ms-transform:matrix(0.579686,0.004637,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.579686,0.004637,-0.002000,0.249992,0,0);}
.m125_c00120{transform:matrix(0.579765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579765,0.000000,0.000000,0.250000,0,0);}
.m111_c00120{transform:matrix(0.588690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588690,0.000000,0.000000,0.250000,0,0);}
.m11c_c00120{transform:matrix(0.600220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600220,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.617860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617860,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.663929,0.005311,-0.002000,0.249992,0,0);-ms-transform:matrix(0.663929,0.005311,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.663929,0.005311,-0.002000,0.249992,0,0);}
.m11b_c00120{transform:matrix(0.778655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778655,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.800565,-0.014410,0.004499,0.249960,0,0);-ms-transform:matrix(0.800565,-0.014410,0.004499,0.249960,0,0);-webkit-transform:matrix(0.800565,-0.014410,0.004499,0.249960,0,0);}
.m9f_c00120{transform:matrix(0.810484,0.006484,-0.002000,0.249992,0,0);-ms-transform:matrix(0.810484,0.006484,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.810484,0.006484,-0.002000,0.249992,0,0);}
.m2_c00120{transform:matrix(0.828255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828255,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.832865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832865,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.872497,0.006980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.872497,0.006980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.872497,0.006980,-0.002000,0.249992,0,0);}
.m5a_c00120{transform:matrix(0.885829,-0.005315,0.001500,0.249996,0,0);-ms-transform:matrix(0.885829,-0.005315,0.001500,0.249996,0,0);-webkit-transform:matrix(0.885829,-0.005315,0.001500,0.249996,0,0);}
.m1c_c00120{transform:matrix(0.930055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930055,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.973534,0.007788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.973534,0.007788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.973534,0.007788,-0.002000,0.249992,0,0);}
.m1_c00120{transform:matrix(1.195015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195015,0.000000,0.000000,0.250000,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;}
.fs15_c00120{font-size:21.000000px;}
.fs7_c00120{font-size:37.800000px;}
.fs19_c00120{font-size:39.900000px;}
.fs1_c00120{font-size:43.050000px;}
.fs4_c00120{font-size:57.759355px;}
.fs9_c00120{font-size:60.900000px;}
.fs10_c00120{font-size:66.152117px;}
.fsc_c00120{font-size:67.201210px;}
.fsa_c00120{font-size:68.250000px;}
.fs13_c00120{font-size:68.252184px;}
.fs8_c00120{font-size:69.300000px;}
.fse_c00120{font-size:69.301247px;}
.fsf_c00120{font-size:69.302218px;}
.fs16_c00120{font-size:70.350000px;}
.fs14_c00120{font-size:71.402285px;}
.fs17_c00120{font-size:72.450000px;}
.fsd_c00120{font-size:72.451304px;}
.fs12_c00120{font-size:72.452318px;}
.fsb_c00120{font-size:73.500000px;}
.fs11_c00120{font-size:73.502352px;}
.fs6_c00120{font-size:76.662416px;}
.fs0_c00120{font-size:81.900000px;}
.fs5_c00120{font-size:143.873302px;}
.fs3_c00120{font-size:162.750000px;}
.fs2_c00120{font-size:175.350000px;}
.fs18_c00120{font-size:226.800000px;}
.y0_c00120{bottom:0.000000px;}
.yf0_c00120{bottom:82.573500px;}
.yef_c00120{bottom:86.112000px;}
.yee_c00120{bottom:129.340500px;}
.yed_c00120{bottom:131.416500px;}
.yec_c00120{bottom:135.630000px;}
.yeb_c00120{bottom:136.753500px;}
.yea_c00120{bottom:137.307000px;}
.ye9_c00120{bottom:138.703500px;}
.ye8_c00120{bottom:140.263500px;}
.ye7_c00120{bottom:141.805500px;}
.ye6_c00120{bottom:143.194500px;}
.ye5_c00120{bottom:155.892000px;}
.ye4_c00120{bottom:157.273500px;}
.ye3_c00120{bottom:158.368500px;}
.ye2_c00120{bottom:159.240000px;}
.ye1_c00120{bottom:160.737000px;}
.ye0_c00120{bottom:161.535000px;}
.ydf_c00120{bottom:162.858000px;}
.yde_c00120{bottom:164.373000px;}
.ydd_c00120{bottom:165.244500px;}
.ydb_c00120{bottom:180.390288px;}
.yda_c00120{bottom:181.415124px;}
.yd9_c00120{bottom:182.196024px;}
.yd8_c00120{bottom:182.535396px;}
.yd7_c00120{bottom:182.843616px;}
.yd6_c00120{bottom:183.455568px;}
.yd5_c00120{bottom:183.767784px;}
.yd4_c00120{bottom:184.415796px;}
.yd3_c00120{bottom:185.131872px;}
.yd2_c00120{bottom:185.441844px;}
.ydc_c00120{bottom:185.637000px;}
.yd1_c00120{bottom:185.893596px;}
.yd0_c00120{bottom:186.300192px;}
.ycf_c00120{bottom:202.909728px;}
.yce_c00120{bottom:203.244468px;}
.ycd_c00120{bottom:203.480544px;}
.ycc_c00120{bottom:204.021108px;}
.ycb_c00120{bottom:204.269916px;}
.yca_c00120{bottom:204.742428px;}
.yc9_c00120{bottom:204.983616px;}
.yc8_c00120{bottom:205.149264px;}
.yc7_c00120{bottom:206.017020px;}
.yc6_c00120{bottom:206.491620px;}
.yc5_c00120{bottom:206.717220px;}
.yc4_c00120{bottom:207.379104px;}
.yc3_c00120{bottom:207.836124px;}
.yc2_c00120{bottom:208.148460px;}
.yc1_c00120{bottom:208.760532px;}
.yc0_c00120{bottom:209.249868px;}
.ybf_c00120{bottom:226.701996px;}
.ybe_c00120{bottom:226.816800px;}
.ybd_c00120{bottom:227.367840px;}
.ybc_c00120{bottom:227.487984px;}
.ybb_c00120{bottom:228.165564px;}
.yba_c00120{bottom:228.307560px;}
.yb9_c00120{bottom:228.814728px;}
.yb8_c00120{bottom:229.176768px;}
.yb7_c00120{bottom:229.402932px;}
.yb6_c00120{bottom:229.857444px;}
.yb5_c00120{bottom:230.117760px;}
.yb4_c00120{bottom:230.244264px;}
.yb3_c00120{bottom:230.472960px;}
.yb2_c00120{bottom:230.580864px;}
.yb1_c00120{bottom:247.999764px;}
.yb0_c00120{bottom:248.561100px;}
.yaf_c00120{bottom:249.109056px;}
.yae_c00120{bottom:249.905592px;}
.yad_c00120{bottom:250.075704px;}
.yac_c00120{bottom:250.580244px;}
.yab_c00120{bottom:251.020980px;}
.yaa_c00120{bottom:251.966784px;}
.ya9_c00120{bottom:252.611244px;}
.ya8_c00120{bottom:253.287600px;}
.ya7_c00120{bottom:254.020452px;}
.ya6_c00120{bottom:254.613852px;}
.ya5_c00120{bottom:270.526644px;}
.ya4_c00120{bottom:270.747756px;}
.ya3_c00120{bottom:271.386432px;}
.ya2_c00120{bottom:272.015412px;}
.ya1_c00120{bottom:272.335632px;}
.ya0_c00120{bottom:272.920224px;}
.y9f_c00120{bottom:273.134208px;}
.y9e_c00120{bottom:273.886224px;}
.y9d_c00120{bottom:274.231224px;}
.y9c_c00120{bottom:274.964472px;}
.y9b_c00120{bottom:275.193660px;}
.y9a_c00120{bottom:275.710500px;}
.y99_c00120{bottom:276.454836px;}
.y98_c00120{bottom:277.022916px;}
.y97_c00120{bottom:295.051260px;}
.y96_c00120{bottom:295.297116px;}
.y95_c00120{bottom:295.585332px;}
.y94_c00120{bottom:295.947528px;}
.y93_c00120{bottom:296.404284px;}
.y92_c00120{bottom:296.651340px;}
.y91_c00120{bottom:297.110112px;}
.y90_c00120{bottom:297.822564px;}
.y8f_c00120{bottom:298.078092px;}
.y8e_c00120{bottom:298.566348px;}
.y8d_c00120{bottom:298.889772px;}
.y8c_c00120{bottom:317.312856px;}
.y8b_c00120{bottom:317.568180px;}
.y8a_c00120{bottom:318.158784px;}
.y89_c00120{bottom:318.336228px;}
.y88_c00120{bottom:318.659520px;}
.y87_c00120{bottom:319.303956px;}
.y86_c00120{bottom:319.808868px;}
.y85_c00120{bottom:320.150508px;}
.y84_c00120{bottom:320.962332px;}
.y83_c00120{bottom:321.159708px;}
.y82_c00120{bottom:321.569364px;}
.y81_c00120{bottom:339.531228px;}
.y80_c00120{bottom:340.569144px;}
.y7f_c00120{bottom:340.739724px;}
.y7e_c00120{bottom:341.159892px;}
.y7d_c00120{bottom:341.472732px;}
.y7c_c00120{bottom:342.092880px;}
.y7b_c00120{bottom:342.459552px;}
.y7a_c00120{bottom:342.663468px;}
.y79_c00120{bottom:343.159704px;}
.y78_c00120{bottom:343.489452px;}
.y77_c00120{bottom:344.062224px;}
.y76_c00120{bottom:344.520744px;}
.y75_c00120{bottom:362.818524px;}
.y74_c00120{bottom:363.168432px;}
.y73_c00120{bottom:363.473064px;}
.y72_c00120{bottom:363.604788px;}
.y71_c00120{bottom:364.159920px;}
.y70_c00120{bottom:364.829556px;}
.y6f_c00120{bottom:365.572644px;}
.y6e_c00120{bottom:365.846952px;}
.y6d_c00120{bottom:366.293832px;}
.y6c_c00120{bottom:366.529212px;}
.y6b_c00120{bottom:366.847056px;}
.y6a_c00120{bottom:367.199280px;}
.y69_c00120{bottom:385.042116px;}
.y68_c00120{bottom:385.391736px;}
.y67_c00120{bottom:386.041992px;}
.y66_c00120{bottom:386.238528px;}
.y65_c00120{bottom:386.728884px;}
.y64_c00120{bottom:386.918940px;}
.y63_c00120{bottom:387.296928px;}
.y62_c00120{bottom:387.409008px;}
.y61_c00120{bottom:387.683544px;}
.y60_c00120{bottom:387.849948px;}
.y5f_c00120{bottom:388.621272px;}
.y5e_c00120{bottom:389.070348px;}
.y5d_c00120{bottom:407.952168px;}
.y5c_c00120{bottom:408.524340px;}
.y5b_c00120{bottom:408.833184px;}
.y5a_c00120{bottom:409.741572px;}
.y59_c00120{bottom:409.970100px;}
.y58_c00120{bottom:410.446200px;}
.y57_c00120{bottom:411.092520px;}
.y56_c00120{bottom:411.722472px;}
.y55_c00120{bottom:412.123920px;}
.y54_c00120{bottom:412.315200px;}
.y53_c00120{bottom:412.490604px;}
.y52_c00120{bottom:412.831536px;}
.y51_c00120{bottom:430.846824px;}
.y50_c00120{bottom:431.698056px;}
.y4f_c00120{bottom:432.279528px;}
.y4e_c00120{bottom:432.496752px;}
.y4d_c00120{bottom:432.916296px;}
.y4c_c00120{bottom:433.441644px;}
.y4b_c00120{bottom:433.797804px;}
.y4a_c00120{bottom:434.026308px;}
.y49_c00120{bottom:434.341728px;}
.y48_c00120{bottom:434.734884px;}
.y47_c00120{bottom:435.240000px;}
.y40_c00120{bottom:455.216148px;}
.y41_c00120{bottom:455.297127px;}
.y42_c00120{bottom:456.492306px;}
.y43_c00120{bottom:457.497138px;}
.y44_c00120{bottom:458.008518px;}
.y45_c00120{bottom:467.583657px;}
.y46_c00120{bottom:468.078924px;}
.y3f_c00120{bottom:479.772915px;}
.y3e_c00120{bottom:480.583359px;}
.y3d_c00120{bottom:481.849776px;}
.y3c_c00120{bottom:482.208888px;}
.y3b_c00120{bottom:482.468724px;}
.y3a_c00120{bottom:483.064245px;}
.y39_c00120{bottom:483.577983px;}
.y38_c00120{bottom:484.684362px;}
.y37_c00120{bottom:485.261304px;}
.y36_c00120{bottom:485.927928px;}
.y35_c00120{bottom:486.765765px;}
.y34_c00120{bottom:487.832751px;}
.y33_c00120{bottom:488.566878px;}
.y32_c00120{bottom:488.700171px;}
.y23_c00120{bottom:498.421500px;}
.y24_c00120{bottom:498.741207px;}
.y25_c00120{bottom:499.058781px;}
.y26_c00120{bottom:499.373025px;}
.y27_c00120{bottom:499.496154px;}
.y28_c00120{bottom:499.688952px;}
.y29_c00120{bottom:499.943256px;}
.y2a_c00120{bottom:500.080947px;}
.y2b_c00120{bottom:500.511840px;}
.y2c_c00120{bottom:500.694855px;}
.y2d_c00120{bottom:500.897409px;}
.y2e_c00120{bottom:501.224604px;}
.y2f_c00120{bottom:501.394551px;}
.y30_c00120{bottom:501.774063px;}
.y31_c00120{bottom:501.859662px;}
.y22_c00120{bottom:523.999500px;}
.y21_c00120{bottom:546.351000px;}
.y20_c00120{bottom:568.555500px;}
.y1f_c00120{bottom:591.279000px;}
.y1e_c00120{bottom:607.246500px;}
.y1d_c00120{bottom:610.075500px;}
.yd_c00120{bottom:610.725795px;}
.y1c_c00120{bottom:610.816500px;}
.ye_c00120{bottom:611.068929px;}
.yf_c00120{bottom:611.417784px;}
.y10_c00120{bottom:612.284052px;}
.y1b_c00120{bottom:612.700500px;}
.y11_c00120{bottom:613.015386px;}
.y12_c00120{bottom:613.606890px;}
.y13_c00120{bottom:613.912215px;}
.y1a_c00120{bottom:615.259500px;}
.y19_c00120{bottom:615.859500px;}
.y18_c00120{bottom:617.488500px;}
.y17_c00120{bottom:618.175500px;}
.y16_c00120{bottom:619.408500px;}
.y15_c00120{bottom:621.324000px;}
.y14_c00120{bottom:657.988500px;}
.yb_c00120{bottom:661.312689px;}
.yc_c00120{bottom:661.312794px;}
.y9_c00120{bottom:661.313355px;}
.y8_c00120{bottom:661.313454px;}
.ya_c00120{bottom:661.313958px;}
.y5_c00120{bottom:680.407500px;}
.y6_c00120{bottom:680.756880px;}
.y7_c00120{bottom:690.558393px;}
.y4_c00120{bottom:714.591000px;}
.y3_c00120{bottom:773.946000px;}
.y2_c00120{bottom:805.684500px;}
.y1_c00120{bottom:850.230000px;}
.h17_c00120{height:21.000000px;}
.h9_c00120{height:37.800000px;}
.h1b_c00120{height:39.900000px;}
.h3_c00120{height:43.050000px;}
.h6_c00120{height:57.759355px;}
.hb_c00120{height:60.900000px;}
.h12_c00120{height:66.152117px;}
.he_c00120{height:67.201210px;}
.hc_c00120{height:68.250000px;}
.h15_c00120{height:68.252184px;}
.ha_c00120{height:69.300000px;}
.h10_c00120{height:69.301247px;}
.h11_c00120{height:69.302218px;}
.h18_c00120{height:70.350000px;}
.h16_c00120{height:71.402285px;}
.h19_c00120{height:72.450000px;}
.hf_c00120{height:72.451304px;}
.h14_c00120{height:72.452318px;}
.hd_c00120{height:73.500000px;}
.h13_c00120{height:73.502352px;}
.h8_c00120{height:76.662416px;}
.h2_c00120{height:81.900000px;}
.h7_c00120{height:143.873302px;}
.h5_c00120{height:162.750000px;}
.h4_c00120{height:175.350000px;}
.h1a_c00120{height:226.800000px;}
.h1_c00120{height:1005.000000px;}
.h0_c00120{height:1005.150000px;}
.w0_c00120{width:705.450000px;}
.w1_c00120{width:705.750000px;}
.x0_c00120{left:0.000000px;}
.x35_c00120{left:23.490000px;}
.xb2_c00120{left:25.711500px;}
.x5a_c00120{left:27.395601px;}
.xa_c00120{left:28.483500px;}
.x8d_c00120{left:29.483868px;}
.x17_c00120{left:30.933000px;}
.x5_c00120{left:32.400000px;}
.x2_c00120{left:34.290000px;}
.x88_c00120{left:35.489676px;}
.x52_c00120{left:36.900846px;}
.x16_c00120{left:39.150000px;}
.x63_c00120{left:43.493664px;}
.x3e_c00120{left:45.090000px;}
.xb_c00120{left:47.893500px;}
.x9d_c00120{left:76.881696px;}
.x95_c00120{left:80.298612px;}
.x64_c00120{left:81.422364px;}
.x18_c00120{left:82.711500px;}
.x3f_c00120{left:83.970000px;}
.x21_c00120{left:85.590000px;}
.x6_c00120{left:86.670000px;}
.x9e_c00120{left:94.944840px;}
.x5d_c00120{left:100.066500px;}
.x7_c00120{left:102.870000px;}
.x82_c00120{left:104.100636px;}
.x36_c00120{left:109.350000px;}
.x19_c00120{left:116.025000px;}
.x74_c00120{left:121.168740px;}
.x65_c00120{left:122.195040px;}
.x5b_c00120{left:126.550485px;}
.x22_c00120{left:128.520000px;}
.x9f_c00120{left:132.172140px;}
.x1a_c00120{left:134.610000px;}
.xa4_c00120{left:135.684204px;}
.x49_c00120{left:136.992000px;}
.x40_c00120{left:138.510000px;}
.x96_c00120{left:141.340656px;}
.x4_c00120{left:142.830000px;}
.x7a_c00120{left:145.143468px;}
.x53_c00120{left:149.480205px;}
.x75_c00120{left:150.591240px;}
.x23_c00120{left:156.060000px;}
.x41_c00120{left:158.220000px;}
.x37_c00120{left:159.840000px;}
.xa5_c00120{left:164.038020px;}
.x66_c00120{left:166.750680px;}
.xae_c00120{left:169.096500px;}
.x1b_c00120{left:178.650000px;}
.x7b_c00120{left:181.861680px;}
.xd_c00120{left:187.676145px;}
.x38_c00120{left:189.270000px;}
.x1c_c00120{left:194.878500px;}
.x8e_c00120{left:195.886884px;}
.x97_c00120{left:197.758356px;}
.x54_c00120{left:201.847617px;}
.xb3_c00120{left:205.317000px;}
.x76_c00120{left:206.451240px;}
.x8_c00120{left:208.170000px;}
.x4a_c00120{left:209.887500px;}
.xac_c00120{left:215.332452px;}
.x5e_c00120{left:217.201500px;}
.x24_c00120{left:218.970000px;}
.xa0_c00120{left:229.444920px;}
.x2d_c00120{left:230.580000px;}
.x39_c00120{left:233.280000px;}
.x67_c00120{left:236.681616px;}
.x42_c00120{left:240.570000px;}
.x4b_c00120{left:242.020500px;}
.x55_c00120{left:243.499116px;}
.xaf_c00120{left:246.916500px;}
.x25_c00120{left:248.400000px;}
.x98_c00120{left:251.501640px;}
.x6c_c00120{left:255.055032px;}
.x7c_c00120{left:259.630056px;}
.x5f_c00120{left:261.721500px;}
.x1d_c00120{left:264.054000px;}
.x2e_c00120{left:265.680000px;}
.x3a_c00120{left:274.050000px;}
.x43_c00120{left:279.180000px;}
.xa1_c00120{left:281.262840px;}
.x8f_c00120{left:283.376784px;}
.x4c_c00120{left:284.404500px;}
.xa6_c00120{left:286.348092px;}
.x6d_c00120{left:289.372032px;}
.xe_c00120{left:292.993746px;}
.x7d_c00120{left:300.401232px;}
.x6e_c00120{left:303.382032px;}
.x4d_c00120{left:307.353000px;}
.x2f_c00120{left:308.610000px;}
.x26_c00120{left:310.770000px;}
.x1e_c00120{left:314.964000px;}
.x9_c00120{left:316.980000px;}
.x44_c00120{left:319.410000px;}
.x60_c00120{left:327.390000px;}
.x99_c00120{left:330.349620px;}
.x27_c00120{left:331.560000px;}
.x77_c00120{left:333.625740px;}
.x1f_c00120{left:334.996500px;}
.x28_c00120{left:347.490000px;}
.x11_c00120{left:348.718587px;}
.x6f_c00120{left:350.630532px;}
.xa2_c00120{left:353.659416px;}
.x89_c00120{left:355.233732px;}
.xad_c00120{left:358.226520px;}
.x83_c00120{left:360.075096px;}
.x68_c00120{left:361.420620px;}
.x9a_c00120{left:367.065444px;}
.x7e_c00120{left:369.294180px;}
.xf_c00120{left:373.736409px;}
.x3b_c00120{left:374.760000px;}
.x12_c00120{left:377.284665px;}
.x45_c00120{left:378.540000px;}
.x61_c00120{left:379.833000px;}
.x30_c00120{left:381.780000px;}
.x90_c00120{left:383.001384px;}
.x69_c00120{left:386.798916px;}
.x8a_c00120{left:390.616020px;}
.x29_c00120{left:392.850000px;}
.x84_c00120{left:395.986308px;}
.x91_c00120{left:402.436416px;}
.x7f_c00120{left:404.086404px;}
.x13_c00120{left:406.335297px;}
.xa7_c00120{left:408.389664px;}
.x4e_c00120{left:409.671000px;}
.x20_c00120{left:411.441000px;}
.x85_c00120{left:415.729152px;}
.x3c_c00120{left:417.420000px;}
.x31_c00120{left:422.820000px;}
.xb0_c00120{left:433.138500px;}
.x56_c00120{left:434.288298px;}
.x70_c00120{left:435.682032px;}
.x4f_c00120{left:443.430000px;}
.xa8_c00120{left:445.368276px;}
.x80_c00120{left:450.794532px;}
.x46_c00120{left:454.410000px;}
.x92_c00120{left:455.634144px;}
.x57_c00120{left:456.689259px;}
.x32_c00120{left:458.730000px;}
.x71_c00120{left:460.249032px;}
.x2a_c00120{left:461.970000px;}
.x81_c00120{left:469.679376px;}
.x14_c00120{left:478.469073px;}
.x62_c00120{left:479.670000px;}
.x86_c00120{left:481.304124px;}
.x93_c00120{left:484.785948px;}
.x78_c00120{left:486.721740px;}
.x6a_c00120{left:487.784112px;}
.x9b_c00120{left:489.647520px;}
.x33_c00120{left:491.940000px;}
.xb4_c00120{left:496.803000px;}
.x2b_c00120{left:498.420000px;}
.x79_c00120{left:503.187240px;}
.x8b_c00120{left:507.798468px;}
.x87_c00120{left:509.656896px;}
.xa9_c00120{left:510.969204px;}
.xb5_c00120{left:513.810000px;}
.x6b_c00120{left:522.076836px;}
.x3d_c00120{left:526.500000px;}
.x58_c00120{left:535.880208px;}
.x10_c00120{left:539.002950px;}
.x72_c00120{left:541.531032px;}
.x2c_c00120{left:544.320000px;}
.x47_c00120{left:549.450000px;}
.x34_c00120{left:555.660000px;}
.xaa_c00120{left:560.163528px;}
.x5c_c00120{left:565.092255px;}
.xa3_c00120{left:566.443608px;}
.xb6_c00120{left:569.970000px;}
.xb1_c00120{left:578.838000px;}
.x9c_c00120{left:581.993556px;}
.x8c_c00120{left:584.120580px;}
.x73_c00120{left:585.233532px;}
.x59_c00120{left:586.562895px;}
.x3_c00120{left:588.060000px;}
.x50_c00120{left:589.539000px;}
.x48_c00120{left:590.760000px;}
.xc_c00120{left:592.422000px;}
.x1_c00120{left:600.750000px;}
.x51_c00120{left:603.805500px;}
.xab_c00120{left:612.014280px;}
.x15_c00120{left:614.187234px;}
.x94_c00120{left:620.253708px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.fs15_c00120{font-size:18.666667pt;}
.fs7_c00120{font-size:33.600000pt;}
.fs19_c00120{font-size:35.466667pt;}
.fs1_c00120{font-size:38.266667pt;}
.fs4_c00120{font-size:51.341649pt;}
.fs9_c00120{font-size:54.133333pt;}
.fs10_c00120{font-size:58.801882pt;}
.fsc_c00120{font-size:59.734409pt;}
.fsa_c00120{font-size:60.666667pt;}
.fs13_c00120{font-size:60.668608pt;}
.fs8_c00120{font-size:61.600000pt;}
.fse_c00120{font-size:61.601109pt;}
.fsf_c00120{font-size:61.601971pt;}
.fs16_c00120{font-size:62.533333pt;}
.fs14_c00120{font-size:63.468698pt;}
.fs17_c00120{font-size:64.400000pt;}
.fsd_c00120{font-size:64.401159pt;}
.fs12_c00120{font-size:64.402061pt;}
.fsb_c00120{font-size:65.333333pt;}
.fs11_c00120{font-size:65.335424pt;}
.fs6_c00120{font-size:68.144370pt;}
.fs0_c00120{font-size:72.800000pt;}
.fs5_c00120{font-size:127.887379pt;}
.fs3_c00120{font-size:144.666667pt;}
.fs2_c00120{font-size:155.866667pt;}
.fs18_c00120{font-size:201.600000pt;}
.y0_c00120{bottom:0.000000pt;}
.yf0_c00120{bottom:73.398667pt;}
.yef_c00120{bottom:76.544000pt;}
.yee_c00120{bottom:114.969333pt;}
.yed_c00120{bottom:116.814667pt;}
.yec_c00120{bottom:120.560000pt;}
.yeb_c00120{bottom:121.558667pt;}
.yea_c00120{bottom:122.050667pt;}
.ye9_c00120{bottom:123.292000pt;}
.ye8_c00120{bottom:124.678667pt;}
.ye7_c00120{bottom:126.049333pt;}
.ye6_c00120{bottom:127.284000pt;}
.ye5_c00120{bottom:138.570667pt;}
.ye4_c00120{bottom:139.798667pt;}
.ye3_c00120{bottom:140.772000pt;}
.ye2_c00120{bottom:141.546667pt;}
.ye1_c00120{bottom:142.877333pt;}
.ye0_c00120{bottom:143.586667pt;}
.ydf_c00120{bottom:144.762667pt;}
.yde_c00120{bottom:146.109333pt;}
.ydd_c00120{bottom:146.884000pt;}
.ydb_c00120{bottom:160.346923pt;}
.yda_c00120{bottom:161.257888pt;}
.yd9_c00120{bottom:161.952021pt;}
.yd8_c00120{bottom:162.253685pt;}
.yd7_c00120{bottom:162.527659pt;}
.yd6_c00120{bottom:163.071616pt;}
.yd5_c00120{bottom:163.349141pt;}
.yd4_c00120{bottom:163.925152pt;}
.yd3_c00120{bottom:164.561664pt;}
.yd2_c00120{bottom:164.837195pt;}
.ydc_c00120{bottom:165.010667pt;}
.yd1_c00120{bottom:165.238752pt;}
.yd0_c00120{bottom:165.600171pt;}
.ycf_c00120{bottom:180.364203pt;}
.yce_c00120{bottom:180.661749pt;}
.ycd_c00120{bottom:180.871595pt;}
.ycc_c00120{bottom:181.352096pt;}
.ycb_c00120{bottom:181.573259pt;}
.yca_c00120{bottom:181.993269pt;}
.yc9_c00120{bottom:182.207659pt;}
.yc8_c00120{bottom:182.354901pt;}
.yc7_c00120{bottom:183.126240pt;}
.yc6_c00120{bottom:183.548107pt;}
.yc5_c00120{bottom:183.748640pt;}
.yc4_c00120{bottom:184.336981pt;}
.yc3_c00120{bottom:184.743221pt;}
.yc2_c00120{bottom:185.020853pt;}
.yc1_c00120{bottom:185.564917pt;}
.yc0_c00120{bottom:185.999883pt;}
.ybf_c00120{bottom:201.512885pt;}
.ybe_c00120{bottom:201.614933pt;}
.ybd_c00120{bottom:202.104747pt;}
.ybc_c00120{bottom:202.211541pt;}
.ybb_c00120{bottom:202.813835pt;}
.yba_c00120{bottom:202.940053pt;}
.yb9_c00120{bottom:203.390869pt;}
.yb8_c00120{bottom:203.712683pt;}
.yb7_c00120{bottom:203.913717pt;}
.yb6_c00120{bottom:204.317728pt;}
.yb5_c00120{bottom:204.549120pt;}
.yb4_c00120{bottom:204.661568pt;}
.yb3_c00120{bottom:204.864853pt;}
.yb2_c00120{bottom:204.960768pt;}
.yb1_c00120{bottom:220.444235pt;}
.yb0_c00120{bottom:220.943200pt;}
.yaf_c00120{bottom:221.430272pt;}
.yae_c00120{bottom:222.138304pt;}
.yad_c00120{bottom:222.289515pt;}
.yac_c00120{bottom:222.737995pt;}
.yab_c00120{bottom:223.129760pt;}
.yaa_c00120{bottom:223.970475pt;}
.ya9_c00120{bottom:224.543328pt;}
.ya8_c00120{bottom:225.144533pt;}
.ya7_c00120{bottom:225.795957pt;}
.ya6_c00120{bottom:226.323424pt;}
.ya5_c00120{bottom:240.468128pt;}
.ya4_c00120{bottom:240.664672pt;}
.ya3_c00120{bottom:241.232384pt;}
.ya2_c00120{bottom:241.791477pt;}
.ya1_c00120{bottom:242.076117pt;}
.ya0_c00120{bottom:242.595755pt;}
.y9f_c00120{bottom:242.785963pt;}
.y9e_c00120{bottom:243.454421pt;}
.y9d_c00120{bottom:243.761088pt;}
.y9c_c00120{bottom:244.412864pt;}
.y9b_c00120{bottom:244.616587pt;}
.y9a_c00120{bottom:245.076000pt;}
.y99_c00120{bottom:245.737632pt;}
.y98_c00120{bottom:246.242592pt;}
.y97_c00120{bottom:262.267787pt;}
.y96_c00120{bottom:262.486325pt;}
.y95_c00120{bottom:262.742517pt;}
.y94_c00120{bottom:263.064469pt;}
.y93_c00120{bottom:263.470475pt;}
.y92_c00120{bottom:263.690080pt;}
.y91_c00120{bottom:264.097877pt;}
.y90_c00120{bottom:264.731168pt;}
.y8f_c00120{bottom:264.958304pt;}
.y8e_c00120{bottom:265.392309pt;}
.y8d_c00120{bottom:265.679797pt;}
.y8c_c00120{bottom:282.055872pt;}
.y8b_c00120{bottom:282.282827pt;}
.y8a_c00120{bottom:282.807808pt;}
.y89_c00120{bottom:282.965536pt;}
.y88_c00120{bottom:283.252907pt;}
.y87_c00120{bottom:283.825739pt;}
.y86_c00120{bottom:284.274549pt;}
.y85_c00120{bottom:284.578229pt;}
.y84_c00120{bottom:285.299851pt;}
.y83_c00120{bottom:285.475296pt;}
.y82_c00120{bottom:285.839435pt;}
.y81_c00120{bottom:301.805536pt;}
.y80_c00120{bottom:302.728128pt;}
.y7f_c00120{bottom:302.879755pt;}
.y7e_c00120{bottom:303.253237pt;}
.y7d_c00120{bottom:303.531317pt;}
.y7c_c00120{bottom:304.082560pt;}
.y7b_c00120{bottom:304.408491pt;}
.y7a_c00120{bottom:304.589749pt;}
.y79_c00120{bottom:305.030848pt;}
.y78_c00120{bottom:305.323957pt;}
.y77_c00120{bottom:305.833088pt;}
.y76_c00120{bottom:306.240661pt;}
.y75_c00120{bottom:322.505355pt;}
.y74_c00120{bottom:322.816384pt;}
.y73_c00120{bottom:323.087168pt;}
.y72_c00120{bottom:323.204256pt;}
.y71_c00120{bottom:323.697707pt;}
.y70_c00120{bottom:324.292939pt;}
.y6f_c00120{bottom:324.953461pt;}
.y6e_c00120{bottom:325.197291pt;}
.y6d_c00120{bottom:325.594517pt;}
.y6c_c00120{bottom:325.803744pt;}
.y6b_c00120{bottom:326.086272pt;}
.y6a_c00120{bottom:326.399360pt;}
.y69_c00120{bottom:342.259659pt;}
.y68_c00120{bottom:342.570432pt;}
.y67_c00120{bottom:343.148437pt;}
.y66_c00120{bottom:343.323136pt;}
.y65_c00120{bottom:343.759008pt;}
.y64_c00120{bottom:343.927947pt;}
.y63_c00120{bottom:344.263936pt;}
.y62_c00120{bottom:344.363563pt;}
.y61_c00120{bottom:344.607595pt;}
.y60_c00120{bottom:344.755509pt;}
.y5f_c00120{bottom:345.441131pt;}
.y5e_c00120{bottom:345.840309pt;}
.y5d_c00120{bottom:362.624149pt;}
.y5c_c00120{bottom:363.132747pt;}
.y5b_c00120{bottom:363.407275pt;}
.y5a_c00120{bottom:364.214731pt;}
.y59_c00120{bottom:364.417867pt;}
.y58_c00120{bottom:364.841067pt;}
.y57_c00120{bottom:365.415573pt;}
.y56_c00120{bottom:365.975531pt;}
.y55_c00120{bottom:366.332373pt;}
.y54_c00120{bottom:366.502400pt;}
.y53_c00120{bottom:366.658315pt;}
.y52_c00120{bottom:366.961365pt;}
.y51_c00120{bottom:382.974955pt;}
.y50_c00120{bottom:383.731605pt;}
.y4f_c00120{bottom:384.248469pt;}
.y4e_c00120{bottom:384.441557pt;}
.y4d_c00120{bottom:384.814485pt;}
.y4c_c00120{bottom:385.281461pt;}
.y4b_c00120{bottom:385.598048pt;}
.y4a_c00120{bottom:385.801163pt;}
.y49_c00120{bottom:386.081536pt;}
.y48_c00120{bottom:386.431008pt;}
.y47_c00120{bottom:386.880000pt;}
.y40_c00120{bottom:404.636576pt;}
.y41_c00120{bottom:404.708557pt;}
.y42_c00120{bottom:405.770939pt;}
.y43_c00120{bottom:406.664123pt;}
.y44_c00120{bottom:407.118683pt;}
.y45_c00120{bottom:415.629917pt;}
.y46_c00120{bottom:416.070155pt;}
.y3f_c00120{bottom:426.464813pt;}
.y3e_c00120{bottom:427.185208pt;}
.y3d_c00120{bottom:428.310912pt;}
.y3c_c00120{bottom:428.630123pt;}
.y3b_c00120{bottom:428.861088pt;}
.y3a_c00120{bottom:429.390440pt;}
.y39_c00120{bottom:429.847096pt;}
.y38_c00120{bottom:430.830544pt;}
.y37_c00120{bottom:431.343381pt;}
.y36_c00120{bottom:431.935936pt;}
.y35_c00120{bottom:432.680680pt;}
.y34_c00120{bottom:433.629112pt;}
.y33_c00120{bottom:434.281669pt;}
.y32_c00120{bottom:434.400152pt;}
.y23_c00120{bottom:443.041333pt;}
.y24_c00120{bottom:443.325517pt;}
.y25_c00120{bottom:443.607805pt;}
.y26_c00120{bottom:443.887133pt;}
.y27_c00120{bottom:443.996581pt;}
.y28_c00120{bottom:444.167957pt;}
.y29_c00120{bottom:444.394005pt;}
.y2a_c00120{bottom:444.516397pt;}
.y2b_c00120{bottom:444.899413pt;}
.y2c_c00120{bottom:445.062093pt;}
.y2d_c00120{bottom:445.242141pt;}
.y2e_c00120{bottom:445.532981pt;}
.y2f_c00120{bottom:445.684045pt;}
.y30_c00120{bottom:446.021389pt;}
.y31_c00120{bottom:446.097477pt;}
.y22_c00120{bottom:465.777333pt;}
.y21_c00120{bottom:485.645333pt;}
.y20_c00120{bottom:505.382667pt;}
.y1f_c00120{bottom:525.581333pt;}
.y1e_c00120{bottom:539.774667pt;}
.y1d_c00120{bottom:542.289333pt;}
.yd_c00120{bottom:542.867373pt;}
.y1c_c00120{bottom:542.948000pt;}
.ye_c00120{bottom:543.172381pt;}
.yf_c00120{bottom:543.482475pt;}
.y10_c00120{bottom:544.252491pt;}
.y1b_c00120{bottom:544.622667pt;}
.y11_c00120{bottom:544.902565pt;}
.y12_c00120{bottom:545.428347pt;}
.y13_c00120{bottom:545.699747pt;}
.y1a_c00120{bottom:546.897333pt;}
.y19_c00120{bottom:547.430667pt;}
.y18_c00120{bottom:548.878667pt;}
.y17_c00120{bottom:549.489333pt;}
.y16_c00120{bottom:550.585333pt;}
.y15_c00120{bottom:552.288000pt;}
.y14_c00120{bottom:584.878667pt;}
.yb_c00120{bottom:587.833501pt;}
.yc_c00120{bottom:587.833595pt;}
.y9_c00120{bottom:587.834093pt;}
.y8_c00120{bottom:587.834181pt;}
.ya_c00120{bottom:587.834629pt;}
.y5_c00120{bottom:604.806667pt;}
.y6_c00120{bottom:605.117227pt;}
.y7_c00120{bottom:613.829683pt;}
.y4_c00120{bottom:635.192000pt;}
.y3_c00120{bottom:687.952000pt;}
.y2_c00120{bottom:716.164000pt;}
.y1_c00120{bottom:755.760000pt;}
.h17_c00120{height:18.666667pt;}
.h9_c00120{height:33.600000pt;}
.h1b_c00120{height:35.466667pt;}
.h3_c00120{height:38.266667pt;}
.h6_c00120{height:51.341649pt;}
.hb_c00120{height:54.133333pt;}
.h12_c00120{height:58.801882pt;}
.he_c00120{height:59.734409pt;}
.hc_c00120{height:60.666667pt;}
.h15_c00120{height:60.668608pt;}
.ha_c00120{height:61.600000pt;}
.h10_c00120{height:61.601109pt;}
.h11_c00120{height:61.601971pt;}
.h18_c00120{height:62.533333pt;}
.h16_c00120{height:63.468698pt;}
.h19_c00120{height:64.400000pt;}
.hf_c00120{height:64.401159pt;}
.h14_c00120{height:64.402061pt;}
.hd_c00120{height:65.333333pt;}
.h13_c00120{height:65.335424pt;}
.h8_c00120{height:68.144370pt;}
.h2_c00120{height:72.800000pt;}
.h7_c00120{height:127.887379pt;}
.h5_c00120{height:144.666667pt;}
.h4_c00120{height:155.866667pt;}
.h1a_c00120{height:201.600000pt;}
.h1_c00120{height:893.333333pt;}
.h0_c00120{height:893.466667pt;}
.w0_c00120{width:627.066667pt;}
.w1_c00120{width:627.333333pt;}
.x0_c00120{left:0.000000pt;}
.x35_c00120{left:20.880000pt;}
.xb2_c00120{left:22.854667pt;}
.x5a_c00120{left:24.351645pt;}
.xa_c00120{left:25.318667pt;}
.x8d_c00120{left:26.207883pt;}
.x17_c00120{left:27.496000pt;}
.x5_c00120{left:28.800000pt;}
.x2_c00120{left:30.480000pt;}
.x88_c00120{left:31.546379pt;}
.x52_c00120{left:32.800752pt;}
.x16_c00120{left:34.800000pt;}
.x63_c00120{left:38.661035pt;}
.x3e_c00120{left:40.080000pt;}
.xb_c00120{left:42.572000pt;}
.x9d_c00120{left:68.339285pt;}
.x95_c00120{left:71.376544pt;}
.x64_c00120{left:72.375435pt;}
.x18_c00120{left:73.521333pt;}
.x3f_c00120{left:74.640000pt;}
.x21_c00120{left:76.080000pt;}
.x6_c00120{left:77.040000pt;}
.x9e_c00120{left:84.395413pt;}
.x5d_c00120{left:88.948000pt;}
.x7_c00120{left:91.440000pt;}
.x82_c00120{left:92.533899pt;}
.x36_c00120{left:97.200000pt;}
.x19_c00120{left:103.133333pt;}
.x74_c00120{left:107.705547pt;}
.x65_c00120{left:108.617813pt;}
.x5b_c00120{left:112.489320pt;}
.x22_c00120{left:114.240000pt;}
.x9f_c00120{left:117.486347pt;}
.x1a_c00120{left:119.653333pt;}
.xa4_c00120{left:120.608181pt;}
.x49_c00120{left:121.770667pt;}
.x40_c00120{left:123.120000pt;}
.x96_c00120{left:125.636139pt;}
.x4_c00120{left:126.960000pt;}
.x7a_c00120{left:129.016416pt;}
.x53_c00120{left:132.871293pt;}
.x75_c00120{left:133.858880pt;}
.x23_c00120{left:138.720000pt;}
.x41_c00120{left:140.640000pt;}
.x37_c00120{left:142.080000pt;}
.xa5_c00120{left:145.811573pt;}
.x66_c00120{left:148.222827pt;}
.xae_c00120{left:150.308000pt;}
.x1b_c00120{left:158.800000pt;}
.x7b_c00120{left:161.654827pt;}
.xd_c00120{left:166.823240pt;}
.x38_c00120{left:168.240000pt;}
.x1c_c00120{left:173.225333pt;}
.x8e_c00120{left:174.121675pt;}
.x97_c00120{left:175.785205pt;}
.x54_c00120{left:179.420104pt;}
.xb3_c00120{left:182.504000pt;}
.x76_c00120{left:183.512213pt;}
.x8_c00120{left:185.040000pt;}
.x4a_c00120{left:186.566667pt;}
.xac_c00120{left:191.406624pt;}
.x5e_c00120{left:193.068000pt;}
.x24_c00120{left:194.640000pt;}
.xa0_c00120{left:203.951040pt;}
.x2d_c00120{left:204.960000pt;}
.x39_c00120{left:207.360000pt;}
.x67_c00120{left:210.383659pt;}
.x42_c00120{left:213.840000pt;}
.x4b_c00120{left:215.129333pt;}
.x55_c00120{left:216.443659pt;}
.xaf_c00120{left:219.481333pt;}
.x25_c00120{left:220.800000pt;}
.x98_c00120{left:223.557013pt;}
.x6c_c00120{left:226.715584pt;}
.x7c_c00120{left:230.782272pt;}
.x5f_c00120{left:232.641333pt;}
.x1d_c00120{left:234.714667pt;}
.x2e_c00120{left:236.160000pt;}
.x3a_c00120{left:243.600000pt;}
.x43_c00120{left:248.160000pt;}
.xa1_c00120{left:250.011413pt;}
.x8f_c00120{left:251.890475pt;}
.x4c_c00120{left:252.804000pt;}
.xa6_c00120{left:254.531637pt;}
.x6d_c00120{left:257.219584pt;}
.xe_c00120{left:260.438885pt;}
.x7d_c00120{left:267.023317pt;}
.x6e_c00120{left:269.672917pt;}
.x4d_c00120{left:273.202667pt;}
.x2f_c00120{left:274.320000pt;}
.x26_c00120{left:276.240000pt;}
.x1e_c00120{left:279.968000pt;}
.x9_c00120{left:281.760000pt;}
.x44_c00120{left:283.920000pt;}
.x60_c00120{left:291.013333pt;}
.x99_c00120{left:293.644107pt;}
.x27_c00120{left:294.720000pt;}
.x77_c00120{left:296.556213pt;}
.x1f_c00120{left:297.774667pt;}
.x28_c00120{left:308.880000pt;}
.x11_c00120{left:309.972077pt;}
.x6f_c00120{left:311.671584pt;}
.xa2_c00120{left:314.363925pt;}
.x89_c00120{left:315.763317pt;}
.xad_c00120{left:318.423573pt;}
.x83_c00120{left:320.066752pt;}
.x68_c00120{left:321.262773pt;}
.x9a_c00120{left:326.280395pt;}
.x7e_c00120{left:328.261493pt;}
.xf_c00120{left:332.210141pt;}
.x3b_c00120{left:333.120000pt;}
.x12_c00120{left:335.364147pt;}
.x45_c00120{left:336.480000pt;}
.x61_c00120{left:337.629333pt;}
.x30_c00120{left:339.360000pt;}
.x90_c00120{left:340.445675pt;}
.x69_c00120{left:343.821259pt;}
.x8a_c00120{left:347.214240pt;}
.x29_c00120{left:349.200000pt;}
.x84_c00120{left:351.987829pt;}
.x91_c00120{left:357.721259pt;}
.x7f_c00120{left:359.187915pt;}
.x13_c00120{left:361.186931pt;}
.xa7_c00120{left:363.013035pt;}
.x4e_c00120{left:364.152000pt;}
.x20_c00120{left:365.725333pt;}
.x85_c00120{left:369.537024pt;}
.x3c_c00120{left:371.040000pt;}
.x31_c00120{left:375.840000pt;}
.xb0_c00120{left:385.012000pt;}
.x56_c00120{left:386.034043pt;}
.x70_c00120{left:387.272917pt;}
.x4f_c00120{left:394.160000pt;}
.xa8_c00120{left:395.882912pt;}
.x80_c00120{left:400.706251pt;}
.x46_c00120{left:403.920000pt;}
.x92_c00120{left:405.008128pt;}
.x57_c00120{left:405.946008pt;}
.x32_c00120{left:407.760000pt;}
.x71_c00120{left:409.110251pt;}
.x2a_c00120{left:410.640000pt;}
.x81_c00120{left:417.492779pt;}
.x14_c00120{left:425.305843pt;}
.x62_c00120{left:426.373333pt;}
.x86_c00120{left:427.825888pt;}
.x93_c00120{left:430.920843pt;}
.x78_c00120{left:432.641547pt;}
.x6a_c00120{left:433.585877pt;}
.x9b_c00120{left:435.242240pt;}
.x33_c00120{left:437.280000pt;}
.xb4_c00120{left:441.602667pt;}
.x2b_c00120{left:443.040000pt;}
.x79_c00120{left:447.277547pt;}
.x8b_c00120{left:451.376416pt;}
.x87_c00120{left:453.028352pt;}
.xa9_c00120{left:454.194848pt;}
.xb5_c00120{left:456.720000pt;}
.x6b_c00120{left:464.068299pt;}
.x3d_c00120{left:468.000000pt;}
.x58_c00120{left:476.337963pt;}
.x10_c00120{left:479.113733pt;}
.x72_c00120{left:481.360917pt;}
.x2c_c00120{left:483.840000pt;}
.x47_c00120{left:488.400000pt;}
.x34_c00120{left:493.920000pt;}
.xaa_c00120{left:497.923136pt;}
.x5c_c00120{left:502.304227pt;}
.xa3_c00120{left:503.505429pt;}
.xb6_c00120{left:506.640000pt;}
.xb1_c00120{left:514.522667pt;}
.x9c_c00120{left:517.327605pt;}
.x8c_c00120{left:519.218293pt;}
.x73_c00120{left:520.207584pt;}
.x59_c00120{left:521.389240pt;}
.x3_c00120{left:522.720000pt;}
.x50_c00120{left:524.034667pt;}
.x48_c00120{left:525.120000pt;}
.xc_c00120{left:526.597333pt;}
.x1_c00120{left:534.000000pt;}
.x51_c00120{left:536.716000pt;}
.xab_c00120{left:544.012693pt;}
.x15_c00120{left:545.944208pt;}
.x94_c00120{left:551.336629pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m135_c00121{transform:matrix(0.007909,0.000095,-0.003000,0.249982,0,0);-ms-transform:matrix(0.007909,0.000095,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.007909,0.000095,-0.003000,0.249982,0,0);}
.ma3_c00121{transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);}
.m13a_c00121{transform:matrix(0.016679,0.000200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.016679,0.000200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.016679,0.000200,-0.003000,0.249982,0,0);}
.mf7_c00121{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00121{transform:matrix(0.032310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032310,0.000000,0.000000,0.250000,0,0);}
.mbe_c00121{transform:matrix(0.068315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068315,0.000000,0.000000,0.250000,0,0);}
.mea_c00121{transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.130470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130470,0.000000,0.000000,0.250000,0,0);}
.mbb_c00121{transform:matrix(0.133405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133405,0.000000,0.000000,0.250000,0,0);}
.me9_c00121{transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{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);}
.mac_c00121{transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);}
.mf5_c00121{transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);}
.m11c_c00121{transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);}
.m132_c00121{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);}
.mee_c00121{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);}
.md5_c00121{transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{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);}
.mb5_c00121{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);}
.md6_c00121{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);}
.mdc_c00121{transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);}
.m10a_c00121{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);}
.mb3_c00121{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.ma4_c00121{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);}
.m3_c00121{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);}
.m11f_c00121{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);}
.m106_c00121{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);}
.m7_c00121{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);}
.m65_c00121{transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);}
.m6c_c00121{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);}
.mcb_c00121{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);}
.m2_c00121{transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);}
.m99_c00121{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);}
.m8f_c00121{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);}
.m41_c00121{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);}
.m28_c00121{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);}
.mef_c00121{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.m101_c00121{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);}
.m1_c00121{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{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);}
.m3e_c00121{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);}
.mb4_c00121{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);}
.mb9_c00121{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);}
.md9_c00121{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);}
.m90_c00121{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);}
.mf3_c00121{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);}
.m60_c00121{transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);}
.m7c_c00121{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);}
.mec_c00121{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00121{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);}
.mda_c00121{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);}
.m119_c00121{transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{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);}
.m26_c00121{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);}
.m5_c00121{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);}
.mab_c00121{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);}
.m38_c00121{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);}
.m48_c00121{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);}
.med_c00121{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);}
.m4a_c00121{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);}
.m4_c00121{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);}
.mba_c00121{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);}
.m40_c00121{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);}
.m42_c00121{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);}
.m59_c00121{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);}
.m12f_c00121{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);}
.mf4_c00121{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);}
.m87_c00121{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);}
.m108_c00121{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);}
.m133_c00121{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);}
.m107_c00121{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);}
.mce_c00121{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.m53_c00121{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);}
.me_c00121{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);}
.m10f_c00121{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);}
.m51_c00121{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);}
.m10c_c00121{transform:matrix(0.167180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167180,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{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);}
.mbc_c00121{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);}
.mcd_c00121{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);}
.mc4_c00121{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);}
.m6_c00121{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);}
.m12d_c00121{transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);}
.m73_c00121{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);}
.m7b_c00121{transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);}
.m92_c00121{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);}
.m32_c00121{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m118_c00121{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);}
.m15_c00121{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);}
.m102_c00121{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);}
.m36_c00121{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);}
.m64_c00121{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{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);}
.m57_c00121{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);}
.m83_c00121{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);}
.ma5_c00121{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);}
.mb7_c00121{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);}
.mfb_c00121{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);}
.m11b_c00121{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);}
.meb_c00121{transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);}
.m103_c00121{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);}
.mf6_c00121{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);}
.m100_c00121{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);}
.m116_c00121{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);}
.mf9_c00121{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{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);}
.m10d_c00121{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);}
.md8_c00121{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);}
.m5a_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);}
.m6f_c00121{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);}
.mc0_c00121{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);}
.m110_c00121{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);}
.m8_c00121{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);}
.mbd_c00121{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);}
.m13_c00121{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);}
.m9c_c00121{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);}
.mf1_c00121{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);}
.m12b_c00121{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);}
.m98_c00121{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);}
.m122_c00121{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);}
.m12e_c00121{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);}
.md0_c00121{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);}
.m27_c00121{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);}
.mfa_c00121{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);}
.mc3_c00121{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);}
.me0_c00121{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);}
.mf8_c00121{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);}
.m131_c00121{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);}
.m37_c00121{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);}
.m50_c00121{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);}
.m54_c00121{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);}
.m2f_c00121{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{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);}
.maa_c00121{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);}
.md1_c00121{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);}
.m75_c00121{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);}
.m33_c00121{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);}
.mdd_c00121{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);}
.m117_c00121{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);}
.m129_c00121{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);}
.m95_c00121{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);}
.mfd_c00121{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);}
.m3c_c00121{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);}
.mff_c00121{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);}
.mb0_c00121{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);}
.m45_c00121{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.mde_c00121{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);}
.m29_c00121{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);}
.m115_c00121{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);}
.m7d_c00121{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);}
.m10e_c00121{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);}
.mfc_c00121{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);}
.m47_c00121{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);}
.m4c_c00121{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);}
.ma8_c00121{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);}
.m123_c00121{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);}
.mc2_c00121{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);}
.ma2_c00121{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);}
.m91_c00121{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);}
.m4d_c00121{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);}
.m8c_c00121{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_c00121{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_c00121{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);}
.m12c_c00121{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);}
.mb2_c00121{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);}
.mca_c00121{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);}
.ma6_c00121{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);}
.m24_c00121{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);}
.m124_c00121{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);}
.m8d_c00121{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);}
.m130_c00121{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);}
.m127_c00121{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);}
.m5c_c00121{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);}
.m49_c00121{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);}
.m63_c00121{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);}
.ma1_c00121{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);}
.md7_c00121{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);}
.m9a_c00121{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);}
.m12_c00121{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);}
.ma_c00121{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);}
.mcc_c00121{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);}
.m89_c00121{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);}
.m12a_c00121{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);}
.m3b_c00121{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);}
.m16_c00121{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);}
.m114_c00121{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);}
.mfe_c00121{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);}
.md4_c00121{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);}
.m5f_c00121{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);}
.m96_c00121{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);}
.mdb_c00121{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);}
.m79_c00121{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);}
.md2_c00121{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);}
.m126_c00121{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{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);}
.m2e_c00121{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);}
.ma7_c00121{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);}
.m52_c00121{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);}
.m120_c00121{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);}
.m8b_c00121{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);}
.m97_c00121{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);}
.m69_c00121{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);}
.m138_c00121{transform:matrix(0.192841,0.002314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192841,0.002314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192841,0.002314,-0.003000,0.249982,0,0);}
.m6a_c00121{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);}
.m128_c00121{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);}
.mc6_c00121{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);}
.m111_c00121{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);}
.m43_c00121{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);}
.m8e_c00121{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);}
.m84_c00121{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);}
.m4e_c00121{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);}
.m6d_c00121{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);}
.m11_c00121{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);}
.m2b_c00121{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);}
.md3_c00121{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);}
.m4f_c00121{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);}
.m77_c00121{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);}
.m11a_c00121{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);}
.mad_c00121{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);}
.mb8_c00121{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);}
.m8a_c00121{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);}
.m136_c00121{transform:matrix(0.198101,0.002377,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198101,0.002377,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198101,0.002377,-0.003000,0.249982,0,0);}
.mb1_c00121{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);}
.mf2_c00121{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);}
.m5d_c00121{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);}
.m85_c00121{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);}
.m13c_c00121{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);}
.m22_c00121{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);}
.m121_c00121{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);}
.m61_c00121{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);}
.mc1_c00121{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);}
.mc5_c00121{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);}
.m25_c00121{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);}
.m9e_c00121{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);}
.mc9_c00121{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);}
.me1_c00121{transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{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);}
.m0_c00121{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);}
.mcf_c00121{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);}
.m109_c00121{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);}
.m4b_c00121{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);}
.mf0_c00121{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);}
.m3d_c00121{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);}
.m74_c00121{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);}
.me5_c00121{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);}
.m93_c00121{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);}
.m3a_c00121{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);}
.m9f_c00121{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);}
.mae_c00121{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);}
.m86_c00121{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);}
.m72_c00121{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);}
.m81_c00121{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);}
.m5b_c00121{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);}
.m70_c00121{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);}
.m78_c00121{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);}
.me8_c00121{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);}
.m105_c00121{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);}
.me7_c00121{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{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);}
.m1d_c00121{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);}
.m9b_c00121{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);}
.me2_c00121{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);}
.m9d_c00121{transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{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);}
.m1f_c00121{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);}
.me6_c00121{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);}
.m35_c00121{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);}
.m21_c00121{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);}
.m20_c00121{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);}
.m1c_c00121{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);}
.m46_c00121{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);}
.m66_c00121{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);}
.mc7_c00121{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);}
.mbf_c00121{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);}
.m17_c00121{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);}
.m62_c00121{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);}
.mc8_c00121{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);}
.m112_c00121{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);}
.m3f_c00121{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);}
.m125_c00121{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);}
.m7a_c00121{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);}
.m11e_c00121{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);}
.m7e_c00121{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);}
.m10b_c00121{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);}
.md_c00121{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);}
.mc_c00121{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);}
.m1b_c00121{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);}
.m56_c00121{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);}
.m113_c00121{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{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);}
.mb6_c00121{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);}
.m6b_c00121{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);}
.m80_c00121{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);}
.m23_c00121{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);}
.m13d_c00121{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);}
.m104_c00121{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);}
.m137_c00121{transform:matrix(0.242588,0.002911,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242588,0.002911,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242588,0.002911,-0.003000,0.249982,0,0);}
.me4_c00121{transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{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);}
.ma0_c00121{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.maf_c00121{transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);}
.m139_c00121{transform:matrix(0.263486,0.003162,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263486,0.003162,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263486,0.003162,-0.003000,0.249982,0,0);}
.me3_c00121{transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288240,0.000000,0.000000,0.250000,0,0);}
.m76_c00121{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);}
.m19_c00121{transform:matrix(0.294315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294315,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);}
.ma9_c00121{transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{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);}
.m13b_c00121{transform:matrix(0.326815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326815,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.330135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330135,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.336585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336585,0.000000,0.000000,0.250000,0,0);}
.m134_c00121{transform:matrix(0.337096,0.004045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.337096,0.004045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.337096,0.004045,-0.003000,0.249982,0,0);}
.m13e_c00121{transform:matrix(0.526710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526710,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;}
.fsd_c00121{font-size:27.300000px;}
.fsc_c00121{font-size:42.000000px;}
.fs2_c00121{font-size:61.950000px;}
.fsa_c00121{font-size:65.100000px;}
.fs7_c00121{font-size:68.250000px;}
.fs6_c00121{font-size:69.300000px;}
.fs1_c00121{font-size:70.350000px;}
.fs4_c00121{font-size:71.400000px;}
.fs9_c00121{font-size:72.450000px;}
.fs3_c00121{font-size:73.500000px;}
.fs5_c00121{font-size:74.550000px;}
.fs0_c00121{font-size:75.600000px;}
.fs8_c00121{font-size:78.750000px;}
.fsb_c00121{font-size:140.710130px;}
.y0_c00121{bottom:0.000000px;}
.y27_c00121{bottom:30.240000px;}
.y26_c00121{bottom:80.145234px;}
.y25_c00121{bottom:81.010350px;}
.y24_c00121{bottom:81.758430px;}
.y23_c00121{bottom:82.435860px;}
.y22_c00121{bottom:83.183976px;}
.y21_c00121{bottom:83.594898px;}
.y20_c00121{bottom:84.784500px;}
.y1f_c00121{bottom:126.090000px;}
.y1e_c00121{bottom:149.325000px;}
.y1d_c00121{bottom:172.831500px;}
.y1c_c00121{bottom:195.750000px;}
.y1b_c00121{bottom:219.208500px;}
.y1a_c00121{bottom:242.158500px;}
.y19_c00121{bottom:264.900000px;}
.y18_c00121{bottom:288.096000px;}
.y17_c00121{bottom:311.070000px;}
.y16_c00121{bottom:333.489000px;}
.y15_c00121{bottom:357.450000px;}
.y14_c00121{bottom:380.670000px;}
.y13_c00121{bottom:403.881000px;}
.y12_c00121{bottom:425.541000px;}
.y11_c00121{bottom:449.763000px;}
.y10_c00121{bottom:472.711500px;}
.yf_c00121{bottom:495.924000px;}
.ye_c00121{bottom:518.641500px;}
.yd_c00121{bottom:541.591500px;}
.yc_c00121{bottom:564.870000px;}
.yb_c00121{bottom:587.550000px;}
.ya_c00121{bottom:610.441500px;}
.y9_c00121{bottom:632.802000px;}
.y8_c00121{bottom:655.546500px;}
.y7_c00121{bottom:679.020000px;}
.y6_c00121{bottom:702.480000px;}
.y5_c00121{bottom:725.700000px;}
.y4_c00121{bottom:747.840000px;}
.y3_c00121{bottom:771.090000px;}
.y2_c00121{bottom:793.770000px;}
.y1_c00121{bottom:816.984000px;}
.hf_c00121{height:27.300000px;}
.he_c00121{height:42.000000px;}
.h4_c00121{height:61.950000px;}
.hc_c00121{height:65.100000px;}
.h9_c00121{height:68.250000px;}
.h8_c00121{height:69.300000px;}
.h3_c00121{height:70.350000px;}
.h6_c00121{height:71.400000px;}
.hb_c00121{height:72.450000px;}
.h5_c00121{height:73.500000px;}
.h7_c00121{height:74.550000px;}
.h2_c00121{height:75.600000px;}
.ha_c00121{height:78.750000px;}
.hd_c00121{height:140.710130px;}
.h0_c00121{height:1008.450000px;}
.h1_c00121{height:1008.750000px;}
.w0_c00121{width:676.890000px;}
.w1_c00121{width:677.250000px;}
.x0_c00121{left:0.000000px;}
.xb0_c00121{left:89.866500px;}
.x8d_c00121{left:142.830000px;}
.x56_c00121{left:144.990000px;}
.xd_c00121{left:146.340000px;}
.x7d_c00121{left:163.620000px;}
.x41_c00121{left:164.700000px;}
.x1_c00121{left:166.050000px;}
.x8e_c00121{left:167.400000px;}
.x17_c00121{left:171.180000px;}
.x6b_c00121{left:172.260000px;}
.x88_c00121{left:174.960000px;}
.x98_c00121{left:176.580000px;}
.x38_c00121{left:184.680000px;}
.x31_c00121{left:187.380000px;}
.xb1_c00121{left:189.000000px;}
.x7e_c00121{left:192.240000px;}
.x49_c00121{left:194.670000px;}
.x42_c00121{left:198.720000px;}
.xe_c00121{left:200.880000px;}
.x62_c00121{left:203.040000px;}
.x21_c00121{left:205.200000px;}
.x9f_c00121{left:206.820000px;}
.x2a_c00121{left:208.440000px;}
.x2_c00121{left:211.680000px;}
.x5b_c00121{left:213.570000px;}
.x32_c00121{left:216.810000px;}
.x76_c00121{left:221.400000px;}
.x18_c00121{left:223.830000px;}
.x22_c00121{left:224.910000px;}
.x86_c00121{left:227.880000px;}
.xf_c00121{left:229.500000px;}
.x39_c00121{left:231.930000px;}
.x4f_c00121{left:234.090000px;}
.x94_c00121{left:235.440000px;}
.x5c_c00121{left:237.870000px;}
.x89_c00121{left:244.350000px;}
.x6c_c00121{left:248.670000px;}
.x10_c00121{left:250.290000px;}
.x7f_c00121{left:253.260000px;}
.x3_c00121{left:254.610000px;}
.x50_c00121{left:258.930000px;}
.x19_c00121{left:260.010000px;}
.x3e_c00121{left:264.870000px;}
.x43_c00121{left:269.190000px;}
.x63_c00121{left:272.700000px;}
.x72_c00121{left:274.860000px;}
.xa0_c00121{left:276.210000px;}
.x8f_c00121{left:278.370000px;}
.x4_c00121{left:280.260000px;}
.x95_c00121{left:281.340000px;}
.x11_c00121{left:283.230000px;}
.xb2_c00121{left:285.586500px;}
.x5d_c00121{left:288.090000px;}
.x51_c00121{left:289.710000px;}
.x33_c00121{left:293.490000px;}
.x44_c00121{left:296.730000px;}
.x64_c00121{left:299.700000px;}
.x6d_c00121{left:304.290000px;}
.x4a_c00121{left:306.180000px;}
.x1a_c00121{left:308.070000px;}
.x34_c00121{left:309.150000px;}
.x77_c00121{left:312.390000px;}
.x3a_c00121{left:314.010000px;}
.x45_c00121{left:318.060000px;}
.x5e_c00121{left:319.950000px;}
.x5_c00121{left:326.700000px;}
.x23_c00121{left:328.050000px;}
.x1b_c00121{left:330.750000px;}
.x65_c00121{left:333.720000px;}
.x3b_c00121{left:339.930000px;}
.xb3_c00121{left:342.039000px;}
.xac_c00121{left:345.870000px;}
.x99_c00121{left:348.300000px;}
.x12_c00121{left:350.460000px;}
.x3f_c00121{left:352.620000px;}
.x52_c00121{left:353.700000px;}
.x6_c00121{left:354.780000px;}
.x46_c00121{left:358.560000px;}
.x5f_c00121{left:361.260000px;}
.x2b_c00121{left:365.040000px;}
.x84_c00121{left:366.390000px;}
.x24_c00121{left:368.820000px;}
.x78_c00121{left:372.600000px;}
.xa5_c00121{left:373.680000px;}
.x7_c00121{left:374.760000px;}
.x40_c00121{left:375.840000px;}
.xa9_c00121{left:379.080000px;}
.x9a_c00121{left:380.430000px;}
.x35_c00121{left:384.480000px;}
.x66_c00121{left:385.560000px;}
.x2c_c00121{left:386.910000px;}
.x6e_c00121{left:390.690000px;}
.x85_c00121{left:396.630000px;}
.xa6_c00121{left:399.870000px;}
.x1c_c00121{left:400.950000px;}
.x4b_c00121{left:402.030000px;}
.x7c_c00121{left:403.650000px;}
.x47_c00121{left:410.130000px;}
.x67_c00121{left:411.210000px;}
.x9b_c00121{left:412.290000px;}
.x57_c00121{left:417.150000px;}
.x53_c00121{left:418.500000px;}
.x25_c00121{left:420.390000px;}
.x2d_c00121{left:422.820000px;}
.x1d_c00121{left:426.330000px;}
.x90_c00121{left:427.680000px;}
.x8_c00121{left:431.460000px;}
.xa1_c00121{left:432.810000px;}
.x48_c00121{left:435.780000px;}
.x13_c00121{left:438.750000px;}
.x54_c00121{left:440.910000px;}
.xaa_c00121{left:443.070000px;}
.x2e_c00121{left:446.040000px;}
.x3c_c00121{left:449.010000px;}
.x96_c00121{left:450.090000px;}
.xa2_c00121{left:456.300000px;}
.x68_c00121{left:459.810000px;}
.x80_c00121{left:461.430000px;}
.x9c_c00121{left:462.510000px;}
.x14_c00121{left:464.400000px;}
.x6f_c00121{left:467.640000px;}
.x4c_c00121{left:470.070000px;}
.x9_c00121{left:474.930000px;}
.xb4_c00121{left:476.472000px;}
.x91_c00121{left:480.060000px;}
.x1e_c00121{left:483.030000px;}
.x81_c00121{left:484.650000px;}
.x4d_c00121{left:487.890000px;}
.x9d_c00121{left:489.240000px;}
.x69_c00121{left:496.530000px;}
.x79_c00121{left:499.770000px;}
.xa_c00121{left:500.850000px;}
.x26_c00121{left:502.200000px;}
.x60_c00121{left:503.280000px;}
.x36_c00121{left:506.520000px;}
.x2f_c00121{left:508.410000px;}
.xa3_c00121{left:510.300000px;}
.x15_c00121{left:513.000000px;}
.xad_c00121{left:514.080000px;}
.x58_c00121{left:518.400000px;}
.x70_c00121{left:520.020000px;}
.x1f_c00121{left:525.150000px;}
.x27_c00121{left:529.470000px;}
.x73_c00121{left:530.820000px;}
.x92_c00121{left:535.680000px;}
.xab_c00121{left:538.110000px;}
.x87_c00121{left:541.890000px;}
.x6a_c00121{left:546.480000px;}
.x7a_c00121{left:547.830000px;}
.xb_c00121{left:550.800000px;}
.x97_c00121{left:553.230000px;}
.x4e_c00121{left:554.580000px;}
.x55_c00121{left:555.930000px;}
.xa7_c00121{left:559.710000px;}
.x82_c00121{left:561.600000px;}
.x3d_c00121{left:565.380000px;}
.x37_c00121{left:568.350000px;}
.x74_c00121{left:570.240000px;}
.x9e_c00121{left:577.260000px;}
.x61_c00121{left:578.880000px;}
.x8a_c00121{left:580.500000px;}
.x16_c00121{left:581.580000px;}
.x59_c00121{left:583.200000px;}
.xa8_c00121{left:585.090000px;}
.x7b_c00121{left:589.410000px;}
.x30_c00121{left:592.650000px;}
.x93_c00121{left:594.540000px;}
.x28_c00121{left:596.430000px;}
.x5a_c00121{left:598.320000px;}
.xa4_c00121{left:599.670000px;}
.xae_c00121{left:601.830000px;}
.x75_c00121{left:608.310000px;}
.x20_c00121{left:611.280000px;}
.x83_c00121{left:613.440000px;}
.x29_c00121{left:615.600000px;}
.xc_c00121{left:629.370000px;}
.x71_c00121{left:639.090000px;}
.xaf_c00121{left:647.190000px;}
.x8b_c00121{left:653.400000px;}
.xb6_c00121{left:660.690000px;}
.xb5_c00121{left:662.580000px;}
.x8c_c00121{left:670.410000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:0.000000pt;}
.fsd_c00121{font-size:24.266667pt;}
.fsc_c00121{font-size:37.333333pt;}
.fs2_c00121{font-size:55.066667pt;}
.fsa_c00121{font-size:57.866667pt;}
.fs7_c00121{font-size:60.666667pt;}
.fs6_c00121{font-size:61.600000pt;}
.fs1_c00121{font-size:62.533333pt;}
.fs4_c00121{font-size:63.466667pt;}
.fs9_c00121{font-size:64.400000pt;}
.fs3_c00121{font-size:65.333333pt;}
.fs5_c00121{font-size:66.266667pt;}
.fs0_c00121{font-size:67.200000pt;}
.fs8_c00121{font-size:70.000000pt;}
.fsb_c00121{font-size:125.075671pt;}
.y0_c00121{bottom:0.000000pt;}
.y27_c00121{bottom:26.880000pt;}
.y26_c00121{bottom:71.240208pt;}
.y25_c00121{bottom:72.009200pt;}
.y24_c00121{bottom:72.674160pt;}
.y23_c00121{bottom:73.276320pt;}
.y22_c00121{bottom:73.941312pt;}
.y21_c00121{bottom:74.306576pt;}
.y20_c00121{bottom:75.364000pt;}
.y1f_c00121{bottom:112.080000pt;}
.y1e_c00121{bottom:132.733333pt;}
.y1d_c00121{bottom:153.628000pt;}
.y1c_c00121{bottom:174.000000pt;}
.y1b_c00121{bottom:194.852000pt;}
.y1a_c00121{bottom:215.252000pt;}
.y19_c00121{bottom:235.466667pt;}
.y18_c00121{bottom:256.085333pt;}
.y17_c00121{bottom:276.506667pt;}
.y16_c00121{bottom:296.434667pt;}
.y15_c00121{bottom:317.733333pt;}
.y14_c00121{bottom:338.373333pt;}
.y13_c00121{bottom:359.005333pt;}
.y12_c00121{bottom:378.258667pt;}
.y11_c00121{bottom:399.789333pt;}
.y10_c00121{bottom:420.188000pt;}
.yf_c00121{bottom:440.821333pt;}
.ye_c00121{bottom:461.014667pt;}
.yd_c00121{bottom:481.414667pt;}
.yc_c00121{bottom:502.106667pt;}
.yb_c00121{bottom:522.266667pt;}
.ya_c00121{bottom:542.614667pt;}
.y9_c00121{bottom:562.490667pt;}
.y8_c00121{bottom:582.708000pt;}
.y7_c00121{bottom:603.573333pt;}
.y6_c00121{bottom:624.426667pt;}
.y5_c00121{bottom:645.066667pt;}
.y4_c00121{bottom:664.746667pt;}
.y3_c00121{bottom:685.413333pt;}
.y2_c00121{bottom:705.573333pt;}
.y1_c00121{bottom:726.208000pt;}
.hf_c00121{height:24.266667pt;}
.he_c00121{height:37.333333pt;}
.h4_c00121{height:55.066667pt;}
.hc_c00121{height:57.866667pt;}
.h9_c00121{height:60.666667pt;}
.h8_c00121{height:61.600000pt;}
.h3_c00121{height:62.533333pt;}
.h6_c00121{height:63.466667pt;}
.hb_c00121{height:64.400000pt;}
.h5_c00121{height:65.333333pt;}
.h7_c00121{height:66.266667pt;}
.h2_c00121{height:67.200000pt;}
.ha_c00121{height:70.000000pt;}
.hd_c00121{height:125.075671pt;}
.h0_c00121{height:896.400000pt;}
.h1_c00121{height:896.666667pt;}
.w0_c00121{width:601.680000pt;}
.w1_c00121{width:602.000000pt;}
.x0_c00121{left:0.000000pt;}
.xb0_c00121{left:79.881333pt;}
.x8d_c00121{left:126.960000pt;}
.x56_c00121{left:128.880000pt;}
.xd_c00121{left:130.080000pt;}
.x7d_c00121{left:145.440000pt;}
.x41_c00121{left:146.400000pt;}
.x1_c00121{left:147.600000pt;}
.x8e_c00121{left:148.800000pt;}
.x17_c00121{left:152.160000pt;}
.x6b_c00121{left:153.120000pt;}
.x88_c00121{left:155.520000pt;}
.x98_c00121{left:156.960000pt;}
.x38_c00121{left:164.160000pt;}
.x31_c00121{left:166.560000pt;}
.xb1_c00121{left:168.000000pt;}
.x7e_c00121{left:170.880000pt;}
.x49_c00121{left:173.040000pt;}
.x42_c00121{left:176.640000pt;}
.xe_c00121{left:178.560000pt;}
.x62_c00121{left:180.480000pt;}
.x21_c00121{left:182.400000pt;}
.x9f_c00121{left:183.840000pt;}
.x2a_c00121{left:185.280000pt;}
.x2_c00121{left:188.160000pt;}
.x5b_c00121{left:189.840000pt;}
.x32_c00121{left:192.720000pt;}
.x76_c00121{left:196.800000pt;}
.x18_c00121{left:198.960000pt;}
.x22_c00121{left:199.920000pt;}
.x86_c00121{left:202.560000pt;}
.xf_c00121{left:204.000000pt;}
.x39_c00121{left:206.160000pt;}
.x4f_c00121{left:208.080000pt;}
.x94_c00121{left:209.280000pt;}
.x5c_c00121{left:211.440000pt;}
.x89_c00121{left:217.200000pt;}
.x6c_c00121{left:221.040000pt;}
.x10_c00121{left:222.480000pt;}
.x7f_c00121{left:225.120000pt;}
.x3_c00121{left:226.320000pt;}
.x50_c00121{left:230.160000pt;}
.x19_c00121{left:231.120000pt;}
.x3e_c00121{left:235.440000pt;}
.x43_c00121{left:239.280000pt;}
.x63_c00121{left:242.400000pt;}
.x72_c00121{left:244.320000pt;}
.xa0_c00121{left:245.520000pt;}
.x8f_c00121{left:247.440000pt;}
.x4_c00121{left:249.120000pt;}
.x95_c00121{left:250.080000pt;}
.x11_c00121{left:251.760000pt;}
.xb2_c00121{left:253.854667pt;}
.x5d_c00121{left:256.080000pt;}
.x51_c00121{left:257.520000pt;}
.x33_c00121{left:260.880000pt;}
.x44_c00121{left:263.760000pt;}
.x64_c00121{left:266.400000pt;}
.x6d_c00121{left:270.480000pt;}
.x4a_c00121{left:272.160000pt;}
.x1a_c00121{left:273.840000pt;}
.x34_c00121{left:274.800000pt;}
.x77_c00121{left:277.680000pt;}
.x3a_c00121{left:279.120000pt;}
.x45_c00121{left:282.720000pt;}
.x5e_c00121{left:284.400000pt;}
.x5_c00121{left:290.400000pt;}
.x23_c00121{left:291.600000pt;}
.x1b_c00121{left:294.000000pt;}
.x65_c00121{left:296.640000pt;}
.x3b_c00121{left:302.160000pt;}
.xb3_c00121{left:304.034667pt;}
.xac_c00121{left:307.440000pt;}
.x99_c00121{left:309.600000pt;}
.x12_c00121{left:311.520000pt;}
.x3f_c00121{left:313.440000pt;}
.x52_c00121{left:314.400000pt;}
.x6_c00121{left:315.360000pt;}
.x46_c00121{left:318.720000pt;}
.x5f_c00121{left:321.120000pt;}
.x2b_c00121{left:324.480000pt;}
.x84_c00121{left:325.680000pt;}
.x24_c00121{left:327.840000pt;}
.x78_c00121{left:331.200000pt;}
.xa5_c00121{left:332.160000pt;}
.x7_c00121{left:333.120000pt;}
.x40_c00121{left:334.080000pt;}
.xa9_c00121{left:336.960000pt;}
.x9a_c00121{left:338.160000pt;}
.x35_c00121{left:341.760000pt;}
.x66_c00121{left:342.720000pt;}
.x2c_c00121{left:343.920000pt;}
.x6e_c00121{left:347.280000pt;}
.x85_c00121{left:352.560000pt;}
.xa6_c00121{left:355.440000pt;}
.x1c_c00121{left:356.400000pt;}
.x4b_c00121{left:357.360000pt;}
.x7c_c00121{left:358.800000pt;}
.x47_c00121{left:364.560000pt;}
.x67_c00121{left:365.520000pt;}
.x9b_c00121{left:366.480000pt;}
.x57_c00121{left:370.800000pt;}
.x53_c00121{left:372.000000pt;}
.x25_c00121{left:373.680000pt;}
.x2d_c00121{left:375.840000pt;}
.x1d_c00121{left:378.960000pt;}
.x90_c00121{left:380.160000pt;}
.x8_c00121{left:383.520000pt;}
.xa1_c00121{left:384.720000pt;}
.x48_c00121{left:387.360000pt;}
.x13_c00121{left:390.000000pt;}
.x54_c00121{left:391.920000pt;}
.xaa_c00121{left:393.840000pt;}
.x2e_c00121{left:396.480000pt;}
.x3c_c00121{left:399.120000pt;}
.x96_c00121{left:400.080000pt;}
.xa2_c00121{left:405.600000pt;}
.x68_c00121{left:408.720000pt;}
.x80_c00121{left:410.160000pt;}
.x9c_c00121{left:411.120000pt;}
.x14_c00121{left:412.800000pt;}
.x6f_c00121{left:415.680000pt;}
.x4c_c00121{left:417.840000pt;}
.x9_c00121{left:422.160000pt;}
.xb4_c00121{left:423.530667pt;}
.x91_c00121{left:426.720000pt;}
.x1e_c00121{left:429.360000pt;}
.x81_c00121{left:430.800000pt;}
.x4d_c00121{left:433.680000pt;}
.x9d_c00121{left:434.880000pt;}
.x69_c00121{left:441.360000pt;}
.x79_c00121{left:444.240000pt;}
.xa_c00121{left:445.200000pt;}
.x26_c00121{left:446.400000pt;}
.x60_c00121{left:447.360000pt;}
.x36_c00121{left:450.240000pt;}
.x2f_c00121{left:451.920000pt;}
.xa3_c00121{left:453.600000pt;}
.x15_c00121{left:456.000000pt;}
.xad_c00121{left:456.960000pt;}
.x58_c00121{left:460.800000pt;}
.x70_c00121{left:462.240000pt;}
.x1f_c00121{left:466.800000pt;}
.x27_c00121{left:470.640000pt;}
.x73_c00121{left:471.840000pt;}
.x92_c00121{left:476.160000pt;}
.xab_c00121{left:478.320000pt;}
.x87_c00121{left:481.680000pt;}
.x6a_c00121{left:485.760000pt;}
.x7a_c00121{left:486.960000pt;}
.xb_c00121{left:489.600000pt;}
.x97_c00121{left:491.760000pt;}
.x4e_c00121{left:492.960000pt;}
.x55_c00121{left:494.160000pt;}
.xa7_c00121{left:497.520000pt;}
.x82_c00121{left:499.200000pt;}
.x3d_c00121{left:502.560000pt;}
.x37_c00121{left:505.200000pt;}
.x74_c00121{left:506.880000pt;}
.x9e_c00121{left:513.120000pt;}
.x61_c00121{left:514.560000pt;}
.x8a_c00121{left:516.000000pt;}
.x16_c00121{left:516.960000pt;}
.x59_c00121{left:518.400000pt;}
.xa8_c00121{left:520.080000pt;}
.x7b_c00121{left:523.920000pt;}
.x30_c00121{left:526.800000pt;}
.x93_c00121{left:528.480000pt;}
.x28_c00121{left:530.160000pt;}
.x5a_c00121{left:531.840000pt;}
.xa4_c00121{left:533.040000pt;}
.xae_c00121{left:534.960000pt;}
.x75_c00121{left:540.720000pt;}
.x20_c00121{left:543.360000pt;}
.x83_c00121{left:545.280000pt;}
.x29_c00121{left:547.200000pt;}
.xc_c00121{left:559.440000pt;}
.x71_c00121{left:568.080000pt;}
.xaf_c00121{left:575.280000pt;}
.x8b_c00121{left:580.800000pt;}
.xb6_c00121{left:587.280000pt;}
.xb5_c00121{left:588.960000pt;}
.x8c_c00121{left:595.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_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_4ab86c84425994a9e06b01c2.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;}
.m137_c00122{transform:matrix(0.007967,0.000223,-0.006997,0.249902,0,0);-ms-transform:matrix(0.007967,0.000223,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.007967,0.000223,-0.006997,0.249902,0,0);}
.md6_c00122{transform:matrix(0.011780,0.000330,-0.006997,0.249902,0,0);-ms-transform:matrix(0.011780,0.000330,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.011780,0.000330,-0.006997,0.249902,0,0);}
.m134_c00122{transform:matrix(0.018903,0.000529,-0.006997,0.249902,0,0);-ms-transform:matrix(0.018903,0.000529,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.018903,0.000529,-0.006997,0.249902,0,0);}
.m126_c00122{transform:matrix(0.018963,0.000531,-0.006997,0.249902,0,0);-ms-transform:matrix(0.018963,0.000531,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.018963,0.000531,-0.006997,0.249902,0,0);}
.m6d_c00122{transform:matrix(0.051715,0.001241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.051715,0.001241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.051715,0.001241,-0.005998,0.249928,0,0);}
.m69_c00122{transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057660,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{transform:matrix(0.102036,0.002449,-0.005998,0.249928,0,0);-ms-transform:matrix(0.102036,0.002449,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.102036,0.002449,-0.005998,0.249928,0,0);}
.m140_c00122{transform:matrix(0.122840,0.002702,-0.005499,0.249940,0,0);-ms-transform:matrix(0.122840,0.002702,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.122840,0.002702,-0.005499,0.249940,0,0);}
.m65_c00122{transform:matrix(0.136636,0.003279,-0.005998,0.249928,0,0);-ms-transform:matrix(0.136636,0.003279,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.136636,0.003279,-0.005998,0.249928,0,0);}
.m8e_c00122{transform:matrix(0.144788,0.003475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144788,0.003475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144788,0.003475,-0.005998,0.249928,0,0);}
.m70_c00122{transform:matrix(0.144823,0.003476,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144823,0.003476,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144823,0.003476,-0.005998,0.249928,0,0);}
.m4f_c00122{transform:matrix(0.145583,0.004076,-0.006997,0.249902,0,0);-ms-transform:matrix(0.145583,0.004076,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.145583,0.004076,-0.006997,0.249902,0,0);}
.mca_c00122{transform:matrix(0.146311,0.003804,-0.006498,0.249916,0,0);-ms-transform:matrix(0.146311,0.003804,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.146311,0.003804,-0.006498,0.249916,0,0);}
.m5e_c00122{transform:matrix(0.146553,0.003517,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146553,0.003517,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146553,0.003517,-0.005998,0.249928,0,0);}
.mc1_c00122{transform:matrix(0.146895,0.003819,-0.006498,0.249916,0,0);-ms-transform:matrix(0.146895,0.003819,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.146895,0.003819,-0.006498,0.249916,0,0);}
.m5d_c00122{transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);}
.m46_c00122{transform:matrix(0.148197,0.004150,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148197,0.004150,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148197,0.004150,-0.006997,0.249902,0,0);}
.m47_c00122{transform:matrix(0.148427,0.004156,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148427,0.004156,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148427,0.004156,-0.006997,0.249902,0,0);}
.m21_c00122{transform:matrix(0.150244,0.003906,-0.006498,0.249916,0,0);-ms-transform:matrix(0.150244,0.003906,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.150244,0.003906,-0.006498,0.249916,0,0);}
.m34_c00122{transform:matrix(0.150361,0.004210,-0.006997,0.249902,0,0);-ms-transform:matrix(0.150361,0.004210,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.150361,0.004210,-0.006997,0.249902,0,0);}
.mb8_c00122{transform:matrix(0.150999,0.003926,-0.006498,0.249916,0,0);-ms-transform:matrix(0.150999,0.003926,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.150999,0.003926,-0.006498,0.249916,0,0);}
.md9_c00122{transform:matrix(0.152675,0.004275,-0.006997,0.249902,0,0);-ms-transform:matrix(0.152675,0.004275,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.152675,0.004275,-0.006997,0.249902,0,0);}
.mfa_c00122{transform:matrix(0.154080,0.004314,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154080,0.004314,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154080,0.004314,-0.006997,0.249902,0,0);}
.m10e_c00122{transform:matrix(0.154434,0.004324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154434,0.004324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154434,0.004324,-0.006997,0.249902,0,0);}
.m12e_c00122{transform:matrix(0.154449,0.004325,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154449,0.004325,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154449,0.004325,-0.006997,0.249902,0,0);}
.md0_c00122{transform:matrix(0.154453,0.004016,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154453,0.004016,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154453,0.004016,-0.006498,0.249916,0,0);}
.m9_c00122{transform:matrix(0.154473,0.004016,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154473,0.004016,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154473,0.004016,-0.006498,0.249916,0,0);}
.mfc_c00122{transform:matrix(0.154584,0.004328,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154584,0.004328,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154584,0.004328,-0.006997,0.249902,0,0);}
.mb0_c00122{transform:matrix(0.154720,0.003713,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154720,0.003713,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154720,0.003713,-0.005998,0.249928,0,0);}
.m1f_c00122{transform:matrix(0.155293,0.004038,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155293,0.004038,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155293,0.004038,-0.006498,0.249916,0,0);}
.md2_c00122{transform:matrix(0.156262,0.004063,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156262,0.004063,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156262,0.004063,-0.006498,0.249916,0,0);}
.m112_c00122{transform:matrix(0.156314,0.004377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156314,0.004377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156314,0.004377,-0.006997,0.249902,0,0);}
.mfb_c00122{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);}
.mde_c00122{transform:matrix(0.157268,0.004404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157268,0.004404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157268,0.004404,-0.006997,0.249902,0,0);}
.m36_c00122{transform:matrix(0.157878,0.004421,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157878,0.004421,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157878,0.004421,-0.006997,0.249902,0,0);}
.md5_c00122{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);}
.m58_c00122{transform:matrix(0.160057,0.004482,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160057,0.004482,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160057,0.004482,-0.006997,0.249902,0,0);}
.m94_c00122{transform:matrix(0.160559,0.003853,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160559,0.003853,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160559,0.003853,-0.005998,0.249928,0,0);}
.m12f_c00122{transform:matrix(0.161962,0.004535,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161962,0.004535,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161962,0.004535,-0.006997,0.249902,0,0);}
.mc_c00122{transform:matrix(0.162385,0.004222,-0.006498,0.249916,0,0);-ms-transform:matrix(0.162385,0.004222,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.162385,0.004222,-0.006498,0.249916,0,0);}
.ma3_c00122{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);}
.mc4_c00122{transform:matrix(0.162470,0.004224,-0.006498,0.249916,0,0);-ms-transform:matrix(0.162470,0.004224,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.162470,0.004224,-0.006498,0.249916,0,0);}
.m106_c00122{transform:matrix(0.162571,0.004552,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162571,0.004552,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162571,0.004552,-0.006997,0.249902,0,0);}
.m13f_c00122{transform:matrix(0.162611,0.003577,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162611,0.003577,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162611,0.003577,-0.005499,0.249940,0,0);}
.m12a_c00122{transform:matrix(0.162851,0.004560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162851,0.004560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162851,0.004560,-0.006997,0.249902,0,0);}
.m8b_c00122{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);}
.m6f_c00122{transform:matrix(0.163693,0.003929,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163693,0.003929,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163693,0.003929,-0.005998,0.249928,0,0);}
.me4_c00122{transform:matrix(0.165215,0.004626,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165215,0.004626,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165215,0.004626,-0.006997,0.249902,0,0);}
.mf8_c00122{transform:matrix(0.165405,0.004631,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165405,0.004631,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165405,0.004631,-0.006997,0.249902,0,0);}
.mf1_c00122{transform:matrix(0.165465,0.004633,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165465,0.004633,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165465,0.004633,-0.006997,0.249902,0,0);}
.m5a_c00122{transform:matrix(0.165467,0.003971,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165467,0.003971,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165467,0.003971,-0.005998,0.249928,0,0);}
.m110_c00122{transform:matrix(0.165805,0.004643,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165805,0.004643,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165805,0.004643,-0.006997,0.249902,0,0);}
.mfd_c00122{transform:matrix(0.166005,0.004648,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166005,0.004648,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166005,0.004648,-0.006997,0.249902,0,0);}
.me0_c00122{transform:matrix(0.166190,0.004653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166190,0.004653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166190,0.004653,-0.006997,0.249902,0,0);}
.mad_c00122{transform:matrix(0.166232,0.003990,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166232,0.003990,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166232,0.003990,-0.005998,0.249928,0,0);}
.m127_c00122{transform:matrix(0.166235,0.004655,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166235,0.004655,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166235,0.004655,-0.006997,0.249902,0,0);}
.mea_c00122{transform:matrix(0.166645,0.004666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166645,0.004666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166645,0.004666,-0.006997,0.249902,0,0);}
.m98_c00122{transform:matrix(0.166672,0.004000,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166672,0.004000,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166672,0.004000,-0.005998,0.249928,0,0);}
.mdb_c00122{transform:matrix(0.167065,0.004678,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167065,0.004678,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167065,0.004678,-0.006997,0.249902,0,0);}
.m4c_c00122{transform:matrix(0.167164,0.004681,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167164,0.004681,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167164,0.004681,-0.006997,0.249902,0,0);}
.m129_c00122{transform:matrix(0.167449,0.004689,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167449,0.004689,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167449,0.004689,-0.006997,0.249902,0,0);}
.m43_c00122{transform:matrix(0.167544,0.004691,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167544,0.004691,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167544,0.004691,-0.006997,0.249902,0,0);}
.m114_c00122{transform:matrix(0.167864,0.004700,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167864,0.004700,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167864,0.004700,-0.006997,0.249902,0,0);}
.m22_c00122{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);}
.m108_c00122{transform:matrix(0.168559,0.004720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168559,0.004720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168559,0.004720,-0.006997,0.249902,0,0);}
.m9e_c00122{transform:matrix(0.168761,0.004050,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168761,0.004050,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168761,0.004050,-0.005998,0.249928,0,0);}
.m20_c00122{transform:matrix(0.169433,0.004405,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169433,0.004405,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169433,0.004405,-0.006498,0.249916,0,0);}
.mf6_c00122{transform:matrix(0.169649,0.004750,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169649,0.004750,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169649,0.004750,-0.006997,0.249902,0,0);}
.m52_c00122{transform:matrix(0.169683,0.004751,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169683,0.004751,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169683,0.004751,-0.006997,0.249902,0,0);}
.m10a_c00122{transform:matrix(0.169748,0.004753,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169748,0.004753,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169748,0.004753,-0.006997,0.249902,0,0);}
.m6e_c00122{transform:matrix(0.170081,0.004082,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170081,0.004082,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170081,0.004082,-0.005998,0.249928,0,0);}
.m71_c00122{transform:matrix(0.170216,0.004085,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170216,0.004085,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170216,0.004085,-0.005998,0.249928,0,0);}
.m3d_c00122{transform:matrix(0.170828,0.004783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170828,0.004783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170828,0.004783,-0.006997,0.249902,0,0);}
.mee_c00122{transform:matrix(0.171188,0.004793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171188,0.004793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171188,0.004793,-0.006997,0.249902,0,0);}
.md_c00122{transform:matrix(0.172597,0.004488,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172597,0.004488,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172597,0.004488,-0.006498,0.249916,0,0);}
.m5c_c00122{transform:matrix(0.172875,0.004149,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172875,0.004149,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172875,0.004149,-0.005998,0.249928,0,0);}
.mdd_c00122{transform:matrix(0.173037,0.004845,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173037,0.004845,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173037,0.004845,-0.006997,0.249902,0,0);}
.ma6_c00122{transform:matrix(0.173040,0.004153,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173040,0.004153,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173040,0.004153,-0.005998,0.249928,0,0);}
.m116_c00122{transform:matrix(0.173582,0.004860,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173582,0.004860,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173582,0.004860,-0.006997,0.249902,0,0);}
.mb1_c00122{transform:matrix(0.173795,0.004171,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173795,0.004171,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173795,0.004171,-0.005998,0.249928,0,0);}
.m119_c00122{transform:matrix(0.174647,0.004890,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174647,0.004890,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174647,0.004890,-0.006997,0.249902,0,0);}
.mdf_c00122{transform:matrix(0.174861,0.004896,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174861,0.004896,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174861,0.004896,-0.006997,0.249902,0,0);}
.m101_c00122{transform:matrix(0.174931,0.004898,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174931,0.004898,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174931,0.004898,-0.006997,0.249902,0,0);}
.mcd_c00122{transform:matrix(0.175616,0.004566,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175616,0.004566,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175616,0.004566,-0.006498,0.249916,0,0);}
.me2_c00122{transform:matrix(0.175736,0.004921,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175736,0.004921,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175736,0.004921,-0.006997,0.249902,0,0);}
.m128_c00122{transform:matrix(0.176056,0.004930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176056,0.004930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176056,0.004930,-0.006997,0.249902,0,0);}
.mff_c00122{transform:matrix(0.176176,0.004933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176176,0.004933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176176,0.004933,-0.006997,0.249902,0,0);}
.m26_c00122{transform:matrix(0.176580,0.004591,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176580,0.004591,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176580,0.004591,-0.006498,0.249916,0,0);}
.m82_c00122{transform:matrix(0.176719,0.004241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176719,0.004241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176719,0.004241,-0.005998,0.249928,0,0);}
.m18_c00122{transform:matrix(0.176950,0.004601,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176950,0.004601,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176950,0.004601,-0.006498,0.249916,0,0);}
.m85_c00122{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);}
.m8f_c00122{transform:matrix(0.177909,0.004270,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177909,0.004270,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177909,0.004270,-0.005998,0.249928,0,0);}
.me3_c00122{transform:matrix(0.178480,0.004997,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178480,0.004997,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178480,0.004997,-0.006997,0.249902,0,0);}
.m24_c00122{transform:matrix(0.178525,0.004642,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178525,0.004642,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178525,0.004642,-0.006498,0.249916,0,0);}
.mba_c00122{transform:matrix(0.178740,0.004647,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178740,0.004647,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178740,0.004647,-0.006498,0.249916,0,0);}
.mbe_c00122{transform:matrix(0.178870,0.004651,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178870,0.004651,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178870,0.004651,-0.006498,0.249916,0,0);}
.me1_c00122{transform:matrix(0.179535,0.005027,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179535,0.005027,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179535,0.005027,-0.006997,0.249902,0,0);}
.m120_c00122{transform:matrix(0.179840,0.005036,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179840,0.005036,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179840,0.005036,-0.006997,0.249902,0,0);}
.m29_c00122{transform:matrix(0.179894,0.004677,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179894,0.004677,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179894,0.004677,-0.006498,0.249916,0,0);}
.m136_c00122{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);}
.m11b_c00122{transform:matrix(0.180289,0.005048,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180289,0.005048,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180289,0.005048,-0.006997,0.249902,0,0);}
.m23_c00122{transform:matrix(0.180699,0.004698,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180699,0.004698,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180699,0.004698,-0.006498,0.249916,0,0);}
.mbd_c00122{transform:matrix(0.181034,0.004707,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181034,0.004707,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181034,0.004707,-0.006498,0.249916,0,0);}
.mf4_c00122{transform:matrix(0.181374,0.005078,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181374,0.005078,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181374,0.005078,-0.006997,0.249902,0,0);}
.maa_c00122{transform:matrix(0.181603,0.004358,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181603,0.004358,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181603,0.004358,-0.005998,0.249928,0,0);}
.m84_c00122{transform:matrix(0.182108,0.004371,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182108,0.004371,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182108,0.004371,-0.005998,0.249928,0,0);}
.m113_c00122{transform:matrix(0.182154,0.005100,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182154,0.005100,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182154,0.005100,-0.006997,0.249902,0,0);}
.m123_c00122{transform:matrix(0.182159,0.005100,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182159,0.005100,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182159,0.005100,-0.006997,0.249902,0,0);}
.mcb_c00122{transform:matrix(0.182308,0.004740,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182308,0.004740,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182308,0.004740,-0.006498,0.249916,0,0);}
.mc2_c00122{transform:matrix(0.182748,0.004751,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182748,0.004751,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182748,0.004751,-0.006498,0.249916,0,0);}
.m91_c00122{transform:matrix(0.183047,0.004393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183047,0.004393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183047,0.004393,-0.005998,0.249928,0,0);}
.m41_c00122{transform:matrix(0.183448,0.005137,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183448,0.005137,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183448,0.005137,-0.006997,0.249902,0,0);}
.m12d_c00122{transform:matrix(0.183753,0.005145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183753,0.005145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183753,0.005145,-0.006997,0.249902,0,0);}
.m16_c00122{transform:matrix(0.183778,0.004778,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183778,0.004778,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183778,0.004778,-0.006498,0.249916,0,0);}
.m109_c00122{transform:matrix(0.183798,0.005146,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183798,0.005146,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183798,0.005146,-0.006997,0.249902,0,0);}
.mbf_c00122{transform:matrix(0.183823,0.004779,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183823,0.004779,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183823,0.004779,-0.006498,0.249916,0,0);}
.m8a_c00122{transform:matrix(0.183842,0.004412,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183842,0.004412,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183842,0.004412,-0.005998,0.249928,0,0);}
.m93_c00122{transform:matrix(0.183907,0.004414,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183907,0.004414,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183907,0.004414,-0.005998,0.249928,0,0);}
.m74_c00122{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);}
.m107_c00122{transform:matrix(0.184118,0.005155,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184118,0.005155,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184118,0.005155,-0.006997,0.249902,0,0);}
.mb7_c00122{transform:matrix(0.184588,0.004799,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184588,0.004799,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184588,0.004799,-0.006498,0.249916,0,0);}
.mc5_c00122{transform:matrix(0.184623,0.004800,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184623,0.004800,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184623,0.004800,-0.006498,0.249916,0,0);}
.me6_c00122{transform:matrix(0.184978,0.005179,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184978,0.005179,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184978,0.005179,-0.006997,0.249902,0,0);}
.me8_c00122{transform:matrix(0.185217,0.005186,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185217,0.005186,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185217,0.005186,-0.006997,0.249902,0,0);}
.m8_c00122{transform:matrix(0.185457,0.004822,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185457,0.004822,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185457,0.004822,-0.006498,0.249916,0,0);}
.m49_c00122{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);}
.m9f_c00122{transform:matrix(0.185896,0.004462,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185896,0.004462,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185896,0.004462,-0.005998,0.249928,0,0);}
.m51_c00122{transform:matrix(0.185957,0.005207,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185957,0.005207,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185957,0.005207,-0.006997,0.249902,0,0);}
.mf9_c00122{transform:matrix(0.186062,0.005210,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186062,0.005210,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186062,0.005210,-0.006997,0.249902,0,0);}
.med_c00122{transform:matrix(0.186372,0.005218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186372,0.005218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186372,0.005218,-0.006997,0.249902,0,0);}
.mf2_c00122{transform:matrix(0.186602,0.005225,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186602,0.005225,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186602,0.005225,-0.006997,0.249902,0,0);}
.ma5_c00122{transform:matrix(0.186771,0.004483,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186771,0.004483,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186771,0.004483,-0.005998,0.249928,0,0);}
.m2b_c00122{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);}
.m2e_c00122{transform:matrix(0.187027,0.004863,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187027,0.004863,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187027,0.004863,-0.006498,0.249916,0,0);}
.m121_c00122{transform:matrix(0.187042,0.005237,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187042,0.005237,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187042,0.005237,-0.006997,0.249902,0,0);}
.m39_c00122{transform:matrix(0.187067,0.005238,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187067,0.005238,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187067,0.005238,-0.006997,0.249902,0,0);}
.ma9_c00122{transform:matrix(0.187446,0.004499,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187446,0.004499,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187446,0.004499,-0.005998,0.249928,0,0);}
.m10d_c00122{transform:matrix(0.187492,0.005250,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187492,0.005250,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187492,0.005250,-0.006997,0.249902,0,0);}
.m1c_c00122{transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);}
.m9a_c00122{transform:matrix(0.188061,0.004513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188061,0.004513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188061,0.004513,-0.005998,0.249928,0,0);}
.mec_c00122{transform:matrix(0.188621,0.005281,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188621,0.005281,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188621,0.005281,-0.006997,0.249902,0,0);}
.m105_c00122{transform:matrix(0.188641,0.005282,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188641,0.005282,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188641,0.005282,-0.006997,0.249902,0,0);}
.m90_c00122{transform:matrix(0.189001,0.004536,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189001,0.004536,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189001,0.004536,-0.005998,0.249928,0,0);}
.mce_c00122{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);}
.m117_c00122{transform:matrix(0.189261,0.005299,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189261,0.005299,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189261,0.005299,-0.006997,0.249902,0,0);}
.m99_c00122{transform:matrix(0.189340,0.004544,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189340,0.004544,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189340,0.004544,-0.005998,0.249928,0,0);}
.m8d_c00122{transform:matrix(0.189395,0.004545,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189395,0.004545,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189395,0.004545,-0.005998,0.249928,0,0);}
.m57_c00122{transform:matrix(0.189596,0.005309,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189596,0.005309,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189596,0.005309,-0.006997,0.249902,0,0);}
.ma2_c00122{transform:matrix(0.189620,0.004551,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189620,0.004551,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189620,0.004551,-0.005998,0.249928,0,0);}
.m1a_c00122{transform:matrix(0.189721,0.004933,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189721,0.004933,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189721,0.004933,-0.006498,0.249916,0,0);}
.m88_c00122{transform:matrix(0.189920,0.004558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189920,0.004558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189920,0.004558,-0.005998,0.249928,0,0);}
.mb3_c00122{transform:matrix(0.190750,0.004578,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190750,0.004578,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190750,0.004578,-0.005998,0.249928,0,0);}
.m55_c00122{transform:matrix(0.190935,0.005346,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190935,0.005346,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190935,0.005346,-0.006997,0.249902,0,0);}
.m31_c00122{transform:matrix(0.190950,0.004965,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190950,0.004965,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190950,0.004965,-0.006498,0.249916,0,0);}
.m89_c00122{transform:matrix(0.191150,0.004588,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191150,0.004588,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191150,0.004588,-0.005998,0.249928,0,0);}
.mc6_c00122{transform:matrix(0.191495,0.004979,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191495,0.004979,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191495,0.004979,-0.006498,0.249916,0,0);}
.m27_c00122{transform:matrix(0.191610,0.004982,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191610,0.004982,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191610,0.004982,-0.006498,0.249916,0,0);}
.m6c_c00122{transform:matrix(0.191815,0.004604,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191815,0.004604,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191815,0.004604,-0.005998,0.249928,0,0);}
.mac_c00122{transform:matrix(0.191945,0.004607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191945,0.004607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191945,0.004607,-0.005998,0.249928,0,0);}
.mf7_c00122{transform:matrix(0.192025,0.005377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192025,0.005377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192025,0.005377,-0.006997,0.249902,0,0);}
.m10c_c00122{transform:matrix(0.192180,0.005381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192180,0.005381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192180,0.005381,-0.006997,0.249902,0,0);}
.maf_c00122{transform:matrix(0.192250,0.004614,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192250,0.004614,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192250,0.004614,-0.005998,0.249928,0,0);}
.m124_c00122{transform:matrix(0.192380,0.005387,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192380,0.005387,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192380,0.005387,-0.006997,0.249902,0,0);}
.mab_c00122{transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);}
.m9b_c00122{transform:matrix(0.192744,0.004626,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192744,0.004626,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192744,0.004626,-0.005998,0.249928,0,0);}
.m53_c00122{transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);}
.m54_c00122{transform:matrix(0.192974,0.005403,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192974,0.005403,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192974,0.005403,-0.006997,0.249902,0,0);}
.m14_c00122{transform:matrix(0.193145,0.005022,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193145,0.005022,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193145,0.005022,-0.006498,0.249916,0,0);}
.ma1_c00122{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);}
.m73_c00122{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);}
.m10_c00122{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);}
.m12c_c00122{transform:matrix(0.193514,0.005418,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193514,0.005418,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193514,0.005418,-0.006997,0.249902,0,0);}
.m37_c00122{transform:matrix(0.193634,0.005422,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193634,0.005422,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193634,0.005422,-0.006997,0.249902,0,0);}
.mc9_c00122{transform:matrix(0.193660,0.005035,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193660,0.005035,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193660,0.005035,-0.006498,0.249916,0,0);}
.m35_c00122{transform:matrix(0.193789,0.005426,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193789,0.005426,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193789,0.005426,-0.006997,0.249902,0,0);}
.m104_c00122{transform:matrix(0.193804,0.005427,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193804,0.005427,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193804,0.005427,-0.006997,0.249902,0,0);}
.mcc_c00122{transform:matrix(0.193849,0.005040,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193849,0.005040,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193849,0.005040,-0.006498,0.249916,0,0);}
.md3_c00122{transform:matrix(0.194034,0.005045,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194034,0.005045,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194034,0.005045,-0.006498,0.249916,0,0);}
.mbb_c00122{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);}
.m1b_c00122{transform:matrix(0.194564,0.005059,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194564,0.005059,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194564,0.005059,-0.006498,0.249916,0,0);}
.mfe_c00122{transform:matrix(0.194619,0.005449,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194619,0.005449,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194619,0.005449,-0.006997,0.249902,0,0);}
.me9_c00122{transform:matrix(0.194919,0.005458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194919,0.005458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194919,0.005458,-0.006997,0.249902,0,0);}
.m6_c00122{transform:matrix(0.195004,0.005070,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195004,0.005070,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195004,0.005070,-0.006498,0.249916,0,0);}
.m8c_c00122{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);}
.mc3_c00122{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);}
.m7e_c00122{transform:matrix(0.195734,0.004698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195734,0.004698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195734,0.004698,-0.005998,0.249928,0,0);}
.m48_c00122{transform:matrix(0.195743,0.005481,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195743,0.005481,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195743,0.005481,-0.006997,0.249902,0,0);}
.m111_c00122{transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);}
.m5b_c00122{transform:matrix(0.195979,0.004703,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195979,0.004703,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195979,0.004703,-0.005998,0.249928,0,0);}
.m4a_c00122{transform:matrix(0.196158,0.005492,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196158,0.005492,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196158,0.005492,-0.006997,0.249902,0,0);}
.m72_c00122{transform:matrix(0.196963,0.004727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196963,0.004727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196963,0.004727,-0.005998,0.249928,0,0);}
.m103_c00122{transform:matrix(0.197143,0.005520,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197143,0.005520,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197143,0.005520,-0.006997,0.249902,0,0);}
.m1e_c00122{transform:matrix(0.197158,0.005126,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197158,0.005126,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197158,0.005126,-0.006498,0.249916,0,0);}
.mf0_c00122{transform:matrix(0.198022,0.005545,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198022,0.005545,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198022,0.005545,-0.006997,0.249902,0,0);}
.m3b_c00122{transform:matrix(0.198362,0.005554,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198362,0.005554,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198362,0.005554,-0.006997,0.249902,0,0);}
.m11f_c00122{transform:matrix(0.198572,0.005560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198572,0.005560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198572,0.005560,-0.006997,0.249902,0,0);}
.m115_c00122{transform:matrix(0.198587,0.005560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198587,0.005560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198587,0.005560,-0.006997,0.249902,0,0);}
.m118_c00122{transform:matrix(0.198757,0.005565,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198757,0.005565,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198757,0.005565,-0.006997,0.249902,0,0);}
.m143_c00122{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);}
.m2_c00122{transform:matrix(0.198808,0.005169,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198808,0.005169,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198808,0.005169,-0.006498,0.249916,0,0);}
.m92_c00122{transform:matrix(0.199148,0.004780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199148,0.004780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199148,0.004780,-0.005998,0.249928,0,0);}
.md7_c00122{transform:matrix(0.199157,0.005576,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199157,0.005576,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199157,0.005576,-0.006997,0.249902,0,0);}
.m141_c00122{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);}
.m10b_c00122{transform:matrix(0.199407,0.005583,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199407,0.005583,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199407,0.005583,-0.006997,0.249902,0,0);}
.m100_c00122{transform:matrix(0.200087,0.005602,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200087,0.005602,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200087,0.005602,-0.006997,0.249902,0,0);}
.m4_c00122{transform:matrix(0.200272,0.005207,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200272,0.005207,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200272,0.005207,-0.006498,0.249916,0,0);}
.mbc_c00122{transform:matrix(0.200277,0.005207,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200277,0.005207,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200277,0.005207,-0.006498,0.249916,0,0);}
.m33_c00122{transform:matrix(0.200512,0.005213,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200512,0.005213,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200512,0.005213,-0.006498,0.249916,0,0);}
.mae_c00122{transform:matrix(0.200702,0.004817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200702,0.004817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200702,0.004817,-0.005998,0.249928,0,0);}
.m11c_c00122{transform:matrix(0.202331,0.005665,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202331,0.005665,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202331,0.005665,-0.006997,0.249902,0,0);}
.m4e_c00122{transform:matrix(0.202611,0.005673,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202611,0.005673,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202611,0.005673,-0.006997,0.249902,0,0);}
.m15_c00122{transform:matrix(0.202751,0.005272,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202751,0.005272,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202751,0.005272,-0.006498,0.249916,0,0);}
.m50_c00122{transform:matrix(0.202846,0.005680,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202846,0.005680,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202846,0.005680,-0.006997,0.249902,0,0);}
.ma8_c00122{transform:matrix(0.203077,0.004874,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203077,0.004874,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203077,0.004874,-0.005998,0.249928,0,0);}
.ma_c00122{transform:matrix(0.203121,0.005281,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203121,0.005281,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203121,0.005281,-0.006498,0.249916,0,0);}
.m4b_c00122{transform:matrix(0.203755,0.005705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203755,0.005705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203755,0.005705,-0.006997,0.249902,0,0);}
.m3c_c00122{transform:matrix(0.203815,0.005707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203815,0.005707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203815,0.005707,-0.006997,0.249902,0,0);}
.m13_c00122{transform:matrix(0.204041,0.005305,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204041,0.005305,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204041,0.005305,-0.006498,0.249916,0,0);}
.m56_c00122{transform:matrix(0.204730,0.005732,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204730,0.005732,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204730,0.005732,-0.006997,0.249902,0,0);}
.mb2_c00122{transform:matrix(0.204941,0.004919,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204941,0.004919,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204941,0.004919,-0.005998,0.249928,0,0);}
.m59_c00122{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);}
.m97_c00122{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);}
.m7_c00122{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);}
.m45_c00122{transform:matrix(0.206349,0.005778,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206349,0.005778,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206349,0.005778,-0.006997,0.249902,0,0);}
.m5_c00122{transform:matrix(0.206395,0.005366,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206395,0.005366,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206395,0.005366,-0.006498,0.249916,0,0);}
.mf5_c00122{transform:matrix(0.206869,0.005792,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206869,0.005792,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206869,0.005792,-0.006997,0.249902,0,0);}
.m44_c00122{transform:matrix(0.207149,0.005800,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207149,0.005800,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207149,0.005800,-0.006997,0.249902,0,0);}
.mef_c00122{transform:matrix(0.208353,0.005834,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208353,0.005834,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208353,0.005834,-0.006997,0.249902,0,0);}
.m28_c00122{transform:matrix(0.208769,0.005428,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208769,0.005428,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208769,0.005428,-0.006498,0.249916,0,0);}
.m1d_c00122{transform:matrix(0.209069,0.005436,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209069,0.005436,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209069,0.005436,-0.006498,0.249916,0,0);}
.m2c_c00122{transform:matrix(0.209799,0.005455,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209799,0.005455,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209799,0.005455,-0.006498,0.249916,0,0);}
.meb_c00122{transform:matrix(0.209918,0.005878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209918,0.005878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209918,0.005878,-0.006997,0.249902,0,0);}
.m40_c00122{transform:matrix(0.210133,0.005884,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210133,0.005884,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210133,0.005884,-0.006997,0.249902,0,0);}
.m80_c00122{transform:matrix(0.210379,0.005049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210379,0.005049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210379,0.005049,-0.005998,0.249928,0,0);}
.m10f_c00122{transform:matrix(0.211187,0.005913,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211187,0.005913,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211187,0.005913,-0.006997,0.249902,0,0);}
.m131_c00122{transform:matrix(0.211217,0.005914,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211217,0.005914,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211217,0.005914,-0.006997,0.249902,0,0);}
.m19_c00122{transform:matrix(0.211239,0.005492,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211239,0.005492,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211239,0.005492,-0.006498,0.249916,0,0);}
.md8_c00122{transform:matrix(0.211272,0.005916,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211272,0.005916,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211272,0.005916,-0.006997,0.249902,0,0);}
.me7_c00122{transform:matrix(0.211332,0.005917,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211332,0.005917,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211332,0.005917,-0.006997,0.249902,0,0);}
.m2f_c00122{transform:matrix(0.211658,0.005503,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211658,0.005503,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211658,0.005503,-0.006498,0.249916,0,0);}
.m6b_c00122{transform:matrix(0.212259,0.005094,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212259,0.005094,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212259,0.005094,-0.005998,0.249928,0,0);}
.m87_c00122{transform:matrix(0.213044,0.005113,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213044,0.005113,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213044,0.005113,-0.005998,0.249928,0,0);}
.m3_c00122{transform:matrix(0.213428,0.005549,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213428,0.005549,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213428,0.005549,-0.006498,0.249916,0,0);}
.m76_c00122{transform:matrix(0.213484,0.005124,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213484,0.005124,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213484,0.005124,-0.005998,0.249928,0,0);}
.m68_c00122{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);}
.m3a_c00122{transform:matrix(0.213581,0.005980,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213581,0.005980,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213581,0.005980,-0.006997,0.249902,0,0);}
.m3f_c00122{transform:matrix(0.213996,0.005992,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213996,0.005992,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213996,0.005992,-0.006997,0.249902,0,0);}
.m122_c00122{transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);}
.m67_c00122{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);}
.m42_c00122{transform:matrix(0.214571,0.006008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214571,0.006008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214571,0.006008,-0.006997,0.249902,0,0);}
.m9c_c00122{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);}
.ma0_c00122{transform:matrix(0.215918,0.005182,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215918,0.005182,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215918,0.005182,-0.005998,0.249928,0,0);}
.mb6_c00122{transform:matrix(0.217387,0.005652,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217387,0.005652,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217387,0.005652,-0.006498,0.249916,0,0);}
.me5_c00122{transform:matrix(0.217765,0.006097,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217765,0.006097,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217765,0.006097,-0.006997,0.249902,0,0);}
.m135_c00122{transform:matrix(0.217835,0.006099,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217835,0.006099,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217835,0.006099,-0.006997,0.249902,0,0);}
.m11a_c00122{transform:matrix(0.218110,0.006107,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218110,0.006107,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218110,0.006107,-0.006997,0.249902,0,0);}
.mb9_c00122{transform:matrix(0.219211,0.005699,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219211,0.005699,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219211,0.005699,-0.006498,0.249916,0,0);}
.m7f_c00122{transform:matrix(0.220457,0.005291,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220457,0.005291,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220457,0.005291,-0.005998,0.249928,0,0);}
.mc8_c00122{transform:matrix(0.221890,0.005769,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221890,0.005769,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221890,0.005769,-0.006498,0.249916,0,0);}
.m11d_c00122{transform:matrix(0.222153,0.006220,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222153,0.006220,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222153,0.006220,-0.006997,0.249902,0,0);}
.m81_c00122{transform:matrix(0.223131,0.005355,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223131,0.005355,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223131,0.005355,-0.005998,0.249928,0,0);}
.m86_c00122{transform:matrix(0.223306,0.005359,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223306,0.005359,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223306,0.005359,-0.005998,0.249928,0,0);}
.m75_c00122{transform:matrix(0.223661,0.005368,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223661,0.005368,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223661,0.005368,-0.005998,0.249928,0,0);}
.m17_c00122{transform:matrix(0.226463,0.005888,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226463,0.005888,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226463,0.005888,-0.006498,0.249916,0,0);}
.m25_c00122{transform:matrix(0.226868,0.005899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226868,0.005899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226868,0.005899,-0.006498,0.249916,0,0);}
.m102_c00122{transform:matrix(0.228276,0.006392,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228276,0.006392,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228276,0.006392,-0.006997,0.249902,0,0);}
.m132_c00122{transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);}
.m7a_c00122{transform:matrix(0.229889,0.005517,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229889,0.005517,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229889,0.005517,-0.005998,0.249928,0,0);}
.mc7_c00122{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);}
.m7b_c00122{transform:matrix(0.232473,0.005579,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232473,0.005579,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232473,0.005579,-0.005998,0.249928,0,0);}
.m12b_c00122{transform:matrix(0.232529,0.006511,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232529,0.006511,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232529,0.006511,-0.006997,0.249902,0,0);}
.mdc_c00122{transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);}
.m7d_c00122{transform:matrix(0.234792,0.005635,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234792,0.005635,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234792,0.005635,-0.005998,0.249928,0,0);}
.m77_c00122{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);}
.m32_c00122{transform:matrix(0.237790,0.006183,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237790,0.006183,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237790,0.006183,-0.006498,0.249916,0,0);}
.mda_c00122{transform:matrix(0.239806,0.006715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239806,0.006715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239806,0.006715,-0.006997,0.249902,0,0);}
.m2a_c00122{transform:matrix(0.240514,0.006253,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240514,0.006253,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240514,0.006253,-0.006498,0.249916,0,0);}
.m38_c00122{transform:matrix(0.241620,0.006765,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241620,0.006765,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241620,0.006765,-0.006997,0.249902,0,0);}
.mc0_c00122{transform:matrix(0.241748,0.006285,-0.006498,0.249916,0,0);-ms-transform:matrix(0.241748,0.006285,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.241748,0.006285,-0.006498,0.249916,0,0);}
.m83_c00122{transform:matrix(0.241935,0.005806,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241935,0.005806,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241935,0.005806,-0.005998,0.249928,0,0);}
.m95_c00122{transform:matrix(0.242800,0.005827,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242800,0.005827,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242800,0.005827,-0.005998,0.249928,0,0);}
.m133_c00122{transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);}
.m30_c00122{transform:matrix(0.246257,0.006403,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246257,0.006403,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246257,0.006403,-0.006498,0.249916,0,0);}
.m2d_c00122{transform:matrix(0.246607,0.006412,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246607,0.006412,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246607,0.006412,-0.006498,0.249916,0,0);}
.md1_c00122{transform:matrix(0.246732,0.006415,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246732,0.006415,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246732,0.006415,-0.006498,0.249916,0,0);}
.m9d_c00122{transform:matrix(0.247899,0.005950,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247899,0.005950,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247899,0.005950,-0.005998,0.249928,0,0);}
.m66_c00122{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);}
.m144_c00122{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);}
.ma4_c00122{transform:matrix(0.254127,0.006099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254127,0.006099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254127,0.006099,-0.005998,0.249928,0,0);}
.mb_c00122{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);}
.m79_c00122{transform:matrix(0.254617,0.006111,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254617,0.006111,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254617,0.006111,-0.005998,0.249928,0,0);}
.m63_c00122{transform:matrix(0.254902,0.006118,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254902,0.006118,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254902,0.006118,-0.005998,0.249928,0,0);}
.m130_c00122{transform:matrix(0.255390,0.007151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255390,0.007151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255390,0.007151,-0.006997,0.249902,0,0);}
.mf3_c00122{transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);}
.m3e_c00122{transform:matrix(0.261942,0.007334,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261942,0.007334,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261942,0.007334,-0.006997,0.249902,0,0);}
.m142_c00122{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);}
.m96_c00122{transform:matrix(0.270807,0.006499,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270807,0.006499,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270807,0.006499,-0.005998,0.249928,0,0);}
.m4d_c00122{transform:matrix(0.276342,0.007738,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276342,0.007738,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276342,0.007738,-0.006997,0.249902,0,0);}
.m0_c00122{transform:matrix(0.278405,-0.012819,0.011499,0.249735,0,0);-ms-transform:matrix(0.278405,-0.012819,0.011499,0.249735,0,0);-webkit-transform:matrix(0.278405,-0.012819,0.011499,0.249735,0,0);}
.mf_c00122{transform:matrix(0.280855,0.007302,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280855,0.007302,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280855,0.007302,-0.006498,0.249916,0,0);}
.m6a_c00122{transform:matrix(0.282034,0.006769,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282034,0.006769,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282034,0.006769,-0.005998,0.249928,0,0);}
.md4_c00122{transform:matrix(0.283554,0.007372,-0.006498,0.249916,0,0);-ms-transform:matrix(0.283554,0.007372,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.283554,0.007372,-0.006498,0.249916,0,0);}
.m11_c00122{transform:matrix(0.286458,0.007448,-0.006498,0.249916,0,0);-ms-transform:matrix(0.286458,0.007448,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.286458,0.007448,-0.006498,0.249916,0,0);}
.mcf_c00122{transform:matrix(0.286598,0.007452,-0.006498,0.249916,0,0);-ms-transform:matrix(0.286598,0.007452,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.286598,0.007452,-0.006498,0.249916,0,0);}
.m12_c00122{transform:matrix(0.288063,0.007490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.288063,0.007490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.288063,0.007490,-0.006498,0.249916,0,0);}
.m11e_c00122{transform:matrix(0.290871,0.008144,-0.006997,0.249902,0,0);-ms-transform:matrix(0.290871,0.008144,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.290871,0.008144,-0.006997,0.249902,0,0);}
.m60_c00122{transform:matrix(0.293106,0.007035,-0.005998,0.249928,0,0);-ms-transform:matrix(0.293106,0.007035,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.293106,0.007035,-0.005998,0.249928,0,0);}
.ma7_c00122{transform:matrix(0.304397,0.007306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.304397,0.007306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.304397,0.007306,-0.005998,0.249928,0,0);}
.m62_c00122{transform:matrix(0.306602,0.007358,-0.005998,0.249928,0,0);-ms-transform:matrix(0.306602,0.007358,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.306602,0.007358,-0.005998,0.249928,0,0);}
.m1_c00122{transform:matrix(0.312893,-0.014408,0.011499,0.249735,0,0);-ms-transform:matrix(0.312893,-0.014408,0.011499,0.249735,0,0);-webkit-transform:matrix(0.312893,-0.014408,0.011499,0.249735,0,0);}
.m78_c00122{transform:matrix(0.320658,0.007696,-0.005998,0.249928,0,0);-ms-transform:matrix(0.320658,0.007696,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.320658,0.007696,-0.005998,0.249928,0,0);}
.mb5_c00122{transform:matrix(0.320942,0.008344,-0.006498,0.249916,0,0);-ms-transform:matrix(0.320942,0.008344,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.320942,0.008344,-0.006498,0.249916,0,0);}
.m125_c00122{transform:matrix(0.329236,0.009219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.329236,0.009219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.329236,0.009219,-0.006997,0.249902,0,0);}
.me_c00122{transform:matrix(0.332568,0.008647,-0.006498,0.249916,0,0);-ms-transform:matrix(0.332568,0.008647,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.332568,0.008647,-0.006498,0.249916,0,0);}
.mb4_c00122{transform:matrix(0.338672,0.008128,-0.005998,0.249928,0,0);-ms-transform:matrix(0.338672,0.008128,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.338672,0.008128,-0.005998,0.249928,0,0);}
.m5f_c00122{transform:matrix(0.387978,0.009311,-0.005998,0.249928,0,0);-ms-transform:matrix(0.387978,0.009311,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.387978,0.009311,-0.005998,0.249928,0,0);}
.m13a_c00122{transform:matrix(0.429501,0.009449,-0.005499,0.249940,0,0);-ms-transform:matrix(0.429501,0.009449,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.429501,0.009449,-0.005499,0.249940,0,0);}
.m13c_c00122{transform:matrix(0.439889,0.009678,-0.005499,0.249940,0,0);-ms-transform:matrix(0.439889,0.009678,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.439889,0.009678,-0.005499,0.249940,0,0);}
.m64_c00122{transform:matrix(0.468795,0.011251,-0.005998,0.249928,0,0);-ms-transform:matrix(0.468795,0.011251,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.468795,0.011251,-0.005998,0.249928,0,0);}
.m139_c00122{transform:matrix(0.481324,0.010589,-0.005499,0.249940,0,0);-ms-transform:matrix(0.481324,0.010589,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.481324,0.010589,-0.005499,0.249940,0,0);}
.m138_c00122{transform:matrix(0.565845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565845,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.570931,0.013702,-0.005998,0.249928,0,0);-ms-transform:matrix(0.570931,0.013702,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.570931,0.013702,-0.005998,0.249928,0,0);}
.m13d_c00122{transform:matrix(0.580085,0.012762,-0.005499,0.249940,0,0);-ms-transform:matrix(0.580085,0.012762,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.580085,0.012762,-0.005499,0.249940,0,0);}
.m13e_c00122{transform:matrix(0.624414,0.013737,-0.005499,0.249940,0,0);-ms-transform:matrix(0.624414,0.013737,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.624414,0.013737,-0.005499,0.249940,0,0);}
.m13b_c00122{transform:matrix(0.634891,0.013968,-0.005499,0.249940,0,0);-ms-transform:matrix(0.634891,0.013968,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.634891,0.013968,-0.005499,0.249940,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;}
._0_c00122{width:65.137351px;}
.fc0_c00122{color:transparent;}
.fs1b_c00122{font-size:16.800000px;}
.fs19_c00122{font-size:18.900000px;}
.fs7_c00122{font-size:21.006047px;}
.fs8_c00122{font-size:22.050000px;}
.fsd_c00122{font-size:60.917537px;}
.fs9_c00122{font-size:63.000000px;}
.fs17_c00122{font-size:63.024691px;}
.fs16_c00122{font-size:66.175926px;}
.fsa_c00122{font-size:67.219351px;}
.fs1_c00122{font-size:67.222710px;}
.fse_c00122{font-size:68.269653px;}
.fs12_c00122{font-size:68.273065px;}
.fs10_c00122{font-size:69.319956px;}
.fs2_c00122{font-size:69.323419px;}
.fs15_c00122{font-size:69.327160px;}
.fs1a_c00122{font-size:70.367023px;}
.fsf_c00122{font-size:70.370258px;}
.fs11_c00122{font-size:70.373774px;}
.fs5_c00122{font-size:70.377572px;}
.fsc_c00122{font-size:71.420560px;}
.fs3_c00122{font-size:71.424129px;}
.fs4_c00122{font-size:71.427983px;}
.fs13_c00122{font-size:72.478395px;}
.fs6_c00122{font-size:73.521165px;}
.fs14_c00122{font-size:74.579218px;}
.fs18_c00122{font-size:76.680041px;}
.fsb_c00122{font-size:81.923584px;}
.fs0_c00122{font-size:143.858415px;}
.y0_c00122{bottom:0.000000px;}
.y13f_c00122{bottom:98.150616px;}
.y13e_c00122{bottom:98.785404px;}
.y13d_c00122{bottom:100.370955px;}
.y13c_c00122{bottom:101.761542px;}
.y13b_c00122{bottom:102.695937px;}
.y13a_c00122{bottom:106.492686px;}
.y141_c00122{bottom:107.460000px;}
.y139_c00122{bottom:108.291945px;}
.y138_c00122{bottom:109.359000px;}
.y140_c00122{bottom:117.990000px;}
.y136_c00122{bottom:140.020122px;}
.y135_c00122{bottom:141.905418px;}
.y134_c00122{bottom:142.660074px;}
.y133_c00122{bottom:144.470232px;}
.y137_c00122{bottom:146.476500px;}
.y132_c00122{bottom:147.864630px;}
.y131_c00122{bottom:150.867504px;}
.y130_c00122{bottom:160.283970px;}
.y12f_c00122{bottom:161.972658px;}
.y12e_c00122{bottom:163.325400px;}
.y12d_c00122{bottom:164.004390px;}
.y12c_c00122{bottom:166.340298px;}
.y12b_c00122{bottom:168.157410px;}
.y12a_c00122{bottom:169.373130px;}
.y129_c00122{bottom:170.210718px;}
.y128_c00122{bottom:171.476118px;}
.y127_c00122{bottom:172.311816px;}
.y126_c00122{bottom:174.280176px;}
.y125_c00122{bottom:174.641940px;}
.y124_c00122{bottom:182.613684px;}
.y123_c00122{bottom:185.369034px;}
.y122_c00122{bottom:186.021150px;}
.y121_c00122{bottom:186.834378px;}
.y120_c00122{bottom:187.832478px;}
.y11f_c00122{bottom:188.458368px;}
.y11e_c00122{bottom:189.732762px;}
.y11d_c00122{bottom:190.444962px;}
.y11c_c00122{bottom:192.909582px;}
.y11b_c00122{bottom:194.881992px;}
.y11a_c00122{bottom:195.389352px;}
.y119_c00122{bottom:196.048512px;}
.y118_c00122{bottom:197.325552px;}
.y117_c00122{bottom:204.926520px;}
.y116_c00122{bottom:206.044662px;}
.y115_c00122{bottom:206.772084px;}
.y114_c00122{bottom:208.572618px;}
.y113_c00122{bottom:210.393720px;}
.y112_c00122{bottom:212.284692px;}
.y111_c00122{bottom:214.135464px;}
.y110_c00122{bottom:215.885634px;}
.y10f_c00122{bottom:216.698004px;}
.y10e_c00122{bottom:218.036478px;}
.y10d_c00122{bottom:219.202590px;}
.y10c_c00122{bottom:227.603592px;}
.y10b_c00122{bottom:229.402656px;}
.y10a_c00122{bottom:230.500902px;}
.y109_c00122{bottom:232.004682px;}
.y108_c00122{bottom:232.945758px;}
.y107_c00122{bottom:234.704412px;}
.y106_c00122{bottom:235.700556px;}
.y105_c00122{bottom:237.359070px;}
.y104_c00122{bottom:238.278750px;}
.y103_c00122{bottom:240.353958px;}
.y102_c00122{bottom:241.620786px;}
.y101_c00122{bottom:250.281030px;}
.y100_c00122{bottom:252.090984px;}
.yff_c00122{bottom:252.601554px;}
.yfe_c00122{bottom:254.522454px;}
.yfd_c00122{bottom:256.170036px;}
.yfc_c00122{bottom:257.754066px;}
.yfb_c00122{bottom:258.321648px;}
.yfa_c00122{bottom:260.104860px;}
.yf9_c00122{bottom:261.397146px;}
.yf8_c00122{bottom:262.697526px;}
.yf7_c00122{bottom:263.765736px;}
.yf6_c00122{bottom:272.178168px;}
.yf5_c00122{bottom:272.800698px;}
.yf4_c00122{bottom:274.459428px;}
.yf3_c00122{bottom:276.912804px;}
.yf2_c00122{bottom:277.570536px;}
.yf1_c00122{bottom:280.042746px;}
.yf0_c00122{bottom:282.160416px;}
.yef_c00122{bottom:284.451702px;}
.yee_c00122{bottom:286.455702px;}
.yed_c00122{bottom:296.152320px;}
.yec_c00122{bottom:298.056846px;}
.yeb_c00122{bottom:299.190894px;}
.yea_c00122{bottom:300.342024px;}
.ye9_c00122{bottom:302.827428px;}
.ye8_c00122{bottom:303.721332px;}
.ye7_c00122{bottom:305.848962px;}
.ye6_c00122{bottom:306.604164px;}
.ye5_c00122{bottom:308.327520px;}
.ye4_c00122{bottom:309.416706px;}
.ye3_c00122{bottom:319.384704px;}
.ye2_c00122{bottom:320.255280px;}
.ye1_c00122{bottom:322.095216px;}
.ye0_c00122{bottom:323.196066px;}
.ydf_c00122{bottom:324.132156px;}
.yde_c00122{bottom:324.956694px;}
.ydd_c00122{bottom:326.124906px;}
.ydc_c00122{bottom:327.050370px;}
.ydb_c00122{bottom:329.008200px;}
.yda_c00122{bottom:330.253380px;}
.yd9_c00122{bottom:331.026378px;}
.yd8_c00122{bottom:349.774260px;}
.yd7_c00122{bottom:351.893832px;}
.yd6_c00122{bottom:353.526792px;}
.yd5_c00122{bottom:353.973000px;}
.yd4_c00122{bottom:363.844548px;}
.yd3_c00122{bottom:364.501554px;}
.yd2_c00122{bottom:367.472811px;}
.yd1_c00122{bottom:368.191842px;}
.yd0_c00122{bottom:369.349962px;}
.ycf_c00122{bottom:370.256121px;}
.yce_c00122{bottom:371.306901px;}
.ycd_c00122{bottom:373.038417px;}
.ycc_c00122{bottom:373.484526px;}
.ycb_c00122{bottom:374.558256px;}
.yca_c00122{bottom:376.637490px;}
.yc9_c00122{bottom:386.211804px;}
.yc8_c00122{bottom:388.713678px;}
.yc7_c00122{bottom:389.904792px;}
.yc6_c00122{bottom:390.419514px;}
.yc5_c00122{bottom:391.741077px;}
.yc4_c00122{bottom:392.411793px;}
.yc3_c00122{bottom:393.175053px;}
.yc2_c00122{bottom:394.607529px;}
.yc1_c00122{bottom:395.678079px;}
.yc0_c00122{bottom:396.518283px;}
.ybf_c00122{bottom:397.384461px;}
.ybe_c00122{bottom:398.785815px;}
.ybd_c00122{bottom:410.039499px;}
.ybc_c00122{bottom:411.542013px;}
.ybb_c00122{bottom:412.426962px;}
.yba_c00122{bottom:413.188983px;}
.yb9_c00122{bottom:414.105288px;}
.yb8_c00122{bottom:414.786540px;}
.yb7_c00122{bottom:415.528398px;}
.yb3_c00122{bottom:415.983396px;}
.yb2_c00122{bottom:416.492916px;}
.yb1_c00122{bottom:418.080912px;}
.yb0_c00122{bottom:419.425116px;}
.yaf_c00122{bottom:420.130104px;}
.yae_c00122{bottom:421.422540px;}
.yb6_c00122{bottom:432.821619px;}
.yb5_c00122{bottom:434.368788px;}
.yb4_c00122{bottom:434.977500px;}
.yad_c00122{bottom:436.192992px;}
.yac_c00122{bottom:436.840212px;}
.yab_c00122{bottom:438.639600px;}
.yaa_c00122{bottom:439.456512px;}
.ya9_c00122{bottom:441.575352px;}
.ya8_c00122{bottom:442.640712px;}
.ya7_c00122{bottom:444.378576px;}
.ya6_c00122{bottom:454.949448px;}
.ya5_c00122{bottom:456.657180px;}
.ya4_c00122{bottom:457.283424px;}
.ya3_c00122{bottom:458.122236px;}
.ya2_c00122{bottom:458.719416px;}
.ya1_c00122{bottom:459.991896px;}
.ya0_c00122{bottom:461.516436px;}
.y9f_c00122{bottom:462.882936px;}
.y9e_c00122{bottom:465.055800px;}
.y9d_c00122{bottom:465.636756px;}
.y9c_c00122{bottom:466.522536px;}
.y9b_c00122{bottom:478.605192px;}
.y9a_c00122{bottom:479.614416px;}
.y99_c00122{bottom:480.415284px;}
.y98_c00122{bottom:481.055808px;}
.y97_c00122{bottom:482.542944px;}
.y96_c00122{bottom:483.390240px;}
.y95_c00122{bottom:484.046184px;}
.y94_c00122{bottom:485.560476px;}
.y93_c00122{bottom:486.683400px;}
.y92_c00122{bottom:487.879764px;}
.y91_c00122{bottom:489.748344px;}
.y90_c00122{bottom:500.345868px;}
.y8f_c00122{bottom:501.898464px;}
.y8e_c00122{bottom:504.182616px;}
.y8d_c00122{bottom:504.736056px;}
.y8c_c00122{bottom:507.265152px;}
.y8b_c00122{bottom:509.248788px;}
.y8a_c00122{bottom:510.429876px;}
.y89_c00122{bottom:512.434272px;}
.y88_c00122{bottom:523.190316px;}
.y87_c00122{bottom:523.984992px;}
.y86_c00122{bottom:524.659536px;}
.y85_c00122{bottom:525.850404px;}
.y84_c00122{bottom:526.352364px;}
.y83_c00122{bottom:528.261996px;}
.y82_c00122{bottom:530.405916px;}
.y81_c00122{bottom:531.963468px;}
.y80_c00122{bottom:532.757784px;}
.y7f_c00122{bottom:534.583836px;}
.y7e_c00122{bottom:545.204916px;}
.y7d_c00122{bottom:545.892192px;}
.y7c_c00122{bottom:546.769632px;}
.y7b_c00122{bottom:547.182924px;}
.y7a_c00122{bottom:548.742984px;}
.y79_c00122{bottom:549.383904px;}
.y78_c00122{bottom:551.018532px;}
.y77_c00122{bottom:551.720916px;}
.y76_c00122{bottom:553.490436px;}
.y75_c00122{bottom:554.118864px;}
.y74_c00122{bottom:555.583560px;}
.y73_c00122{bottom:556.459884px;}
.y72_c00122{bottom:568.367592px;}
.y71_c00122{bottom:569.147112px;}
.y70_c00122{bottom:570.102720px;}
.y6f_c00122{bottom:571.046532px;}
.y6c_c00122{bottom:590.481816px;}
.y6d_c00122{bottom:590.481828px;}
.y6e_c00122{bottom:590.481984px;}
.y6b_c00122{bottom:613.087200px;}
.y6a_c00122{bottom:614.403036px;}
.y69_c00122{bottom:615.334500px;}
.y68_c00122{bottom:624.237000px;}
.y67_c00122{bottom:626.940000px;}
.y66_c00122{bottom:628.356540px;}
.y65_c00122{bottom:629.081748px;}
.y64_c00122{bottom:629.576892px;}
.y63_c00122{bottom:630.049524px;}
.y62_c00122{bottom:630.603144px;}
.y61_c00122{bottom:630.891720px;}
.y60_c00122{bottom:633.655824px;}
.y5f_c00122{bottom:633.956532px;}
.y5e_c00122{bottom:635.108376px;}
.y5d_c00122{bottom:635.970432px;}
.y5c_c00122{bottom:637.616820px;}
.y5b_c00122{bottom:638.482728px;}
.y5a_c00122{bottom:640.987500px;}
.y59_c00122{bottom:642.351930px;}
.y58_c00122{bottom:643.257408px;}
.y57_c00122{bottom:645.157422px;}
.y56_c00122{bottom:645.858252px;}
.y55_c00122{bottom:647.444412px;}
.y54_c00122{bottom:659.339148px;}
.y53_c00122{bottom:661.308150px;}
.y52_c00122{bottom:662.531760px;}
.y51_c00122{bottom:663.374238px;}
.y50_c00122{bottom:664.202298px;}
.y4f_c00122{bottom:665.966154px;}
.y4e_c00122{bottom:667.002312px;}
.y4d_c00122{bottom:668.803758px;}
.y4c_c00122{bottom:670.130682px;}
.y4b_c00122{bottom:681.726030px;}
.y4a_c00122{bottom:682.260678px;}
.y49_c00122{bottom:683.832828px;}
.y48_c00122{bottom:684.274860px;}
.y47_c00122{bottom:684.857718px;}
.y46_c00122{bottom:685.679910px;}
.y45_c00122{bottom:686.297148px;}
.y44_c00122{bottom:687.456594px;}
.y43_c00122{bottom:688.179522px;}
.y42_c00122{bottom:690.216552px;}
.y41_c00122{bottom:691.581804px;}
.y40_c00122{bottom:692.546502px;}
.y3f_c00122{bottom:702.190392px;}
.y3e_c00122{bottom:704.474730px;}
.y3d_c00122{bottom:705.964092px;}
.y3c_c00122{bottom:707.380626px;}
.y3b_c00122{bottom:708.318528px;}
.y3a_c00122{bottom:710.312940px;}
.y39_c00122{bottom:711.182424px;}
.y38_c00122{bottom:711.946110px;}
.y37_c00122{bottom:713.073600px;}
.y36_c00122{bottom:714.003732px;}
.y35_c00122{bottom:714.699000px;}
.y34_c00122{bottom:727.561254px;}
.y33_c00122{bottom:727.884441px;}
.y32_c00122{bottom:729.287073px;}
.y31_c00122{bottom:729.897837px;}
.y30_c00122{bottom:731.372895px;}
.y2f_c00122{bottom:732.836565px;}
.y2e_c00122{bottom:733.465485px;}
.y2d_c00122{bottom:735.266694px;}
.y2c_c00122{bottom:735.911916px;}
.y2b_c00122{bottom:737.343741px;}
.y2a_c00122{bottom:749.749443px;}
.y29_c00122{bottom:750.488844px;}
.y28_c00122{bottom:751.948497px;}
.y27_c00122{bottom:753.211863px;}
.y26_c00122{bottom:754.973298px;}
.y25_c00122{bottom:757.115490px;}
.y24_c00122{bottom:757.811133px;}
.y23_c00122{bottom:760.304403px;}
.y22_c00122{bottom:771.154992px;}
.y21_c00122{bottom:772.175565px;}
.y20_c00122{bottom:772.816575px;}
.y1f_c00122{bottom:773.951442px;}
.y1e_c00122{bottom:775.275642px;}
.y1d_c00122{bottom:776.395962px;}
.y1c_c00122{bottom:779.292666px;}
.y1b_c00122{bottom:781.029873px;}
.y1a_c00122{bottom:781.813824px;}
.y19_c00122{bottom:782.450271px;}
.y18_c00122{bottom:794.026671px;}
.y17_c00122{bottom:795.492237px;}
.y16_c00122{bottom:796.844967px;}
.y15_c00122{bottom:797.839764px;}
.y14_c00122{bottom:798.919569px;}
.y13_c00122{bottom:799.574121px;}
.y12_c00122{bottom:800.746188px;}
.y11_c00122{bottom:801.875625px;}
.y10_c00122{bottom:802.587825px;}
.yf_c00122{bottom:803.799012px;}
.ye_c00122{bottom:804.600900px;}
.yd_c00122{bottom:815.851473px;}
.yc_c00122{bottom:816.624141px;}
.yb_c00122{bottom:817.943628px;}
.ya_c00122{bottom:818.405349px;}
.y9_c00122{bottom:819.293223px;}
.y8_c00122{bottom:820.520748px;}
.y7_c00122{bottom:821.975955px;}
.y6_c00122{bottom:823.667580px;}
.y5_c00122{bottom:824.267166px;}
.y4_c00122{bottom:826.745499px;}
.y3_c00122{bottom:827.559000px;}
.y1_c00122{bottom:849.787500px;}
.y2_c00122{bottom:853.697247px;}
.h1d_c00122{height:16.800000px;}
.h1b_c00122{height:18.900000px;}
.h9_c00122{height:21.006047px;}
.ha_c00122{height:22.050000px;}
.hf_c00122{height:60.917537px;}
.hb_c00122{height:63.000000px;}
.h19_c00122{height:63.024691px;}
.h18_c00122{height:66.175926px;}
.hc_c00122{height:67.219351px;}
.h3_c00122{height:67.222710px;}
.h10_c00122{height:68.269653px;}
.h14_c00122{height:68.273065px;}
.h12_c00122{height:69.319956px;}
.h4_c00122{height:69.323419px;}
.h17_c00122{height:69.327160px;}
.h1c_c00122{height:70.367023px;}
.h11_c00122{height:70.370258px;}
.h13_c00122{height:70.373774px;}
.h7_c00122{height:70.377572px;}
.he_c00122{height:71.420560px;}
.h5_c00122{height:71.424129px;}
.h6_c00122{height:71.427983px;}
.h15_c00122{height:72.478395px;}
.h8_c00122{height:73.521165px;}
.h16_c00122{height:74.579218px;}
.h1a_c00122{height:76.680041px;}
.hd_c00122{height:81.923584px;}
.h2_c00122{height:143.858415px;}
.h1_c00122{height:1005.000000px;}
.h0_c00122{height:1005.150000px;}
.w0_c00122{width:705.450000px;}
.w1_c00122{width:705.750000px;}
.x0_c00122{left:0.000000px;}
.xb6_c00122{left:25.804500px;}
.xb5_c00122{left:28.350000px;}
.x55_c00122{left:51.570000px;}
.x8b_c00122{left:68.752500px;}
.xad_c00122{left:70.006146px;}
.xa4_c00122{left:72.763950px;}
.xb7_c00122{left:74.307000px;}
.x56_c00122{left:79.380000px;}
.xa2_c00122{left:81.649488px;}
.x99_c00122{left:82.802682px;}
.x96_c00122{left:84.154062px;}
.x43_c00122{left:85.236216px;}
.x5e_c00122{left:88.156056px;}
.x38_c00122{left:89.676846px;}
.x3_c00122{left:91.165500px;}
.xb3_c00122{left:93.071052px;}
.x8d_c00122{left:98.870592px;}
.xb9_c00122{left:99.900000px;}
.xba_c00122{left:102.600000px;}
.x74_c00122{left:104.335116px;}
.x2e_c00122{left:107.382000px;}
.xa5_c00122{left:112.689498px;}
.xbb_c00122{left:113.940000px;}
.x18_c00122{left:116.520057px;}
.x9a_c00122{left:118.433208px;}
.x92_c00122{left:120.300810px;}
.x4_c00122{left:122.454000px;}
.xe_c00122{left:124.608750px;}
.x39_c00122{left:126.757404px;}
.x57_c00122{left:129.060000px;}
.xbc_c00122{left:130.950000px;}
.x2f_c00122{left:132.213000px;}
.xa6_c00122{left:133.282188px;}
.x44_c00122{left:134.395602px;}
.x75_c00122{left:137.115240px;}
.x49_c00122{left:140.723088px;}
.x8c_c00122{left:143.008500px;}
.xae_c00122{left:145.182846px;}
.x97_c00122{left:146.772048px;}
.x19_c00122{left:147.884376px;}
.xa7_c00122{left:149.150424px;}
.xb8_c00122{left:156.091500px;}
.x65_c00122{left:157.527468px;}
.x76_c00122{left:158.632692px;}
.x4f_c00122{left:161.510268px;}
.x8e_c00122{left:163.978632px;}
.x30_c00122{left:165.432000px;}
.x84_c00122{left:169.364463px;}
.xaf_c00122{left:172.134078px;}
.xf_c00122{left:175.060863px;}
.x3a_c00122{left:179.269344px;}
.x1_c00122{left:182.737500px;}
.x20_c00122{left:186.547215px;}
.x66_c00122{left:188.059992px;}
.x9e_c00122{left:190.298316px;}
.x88_c00122{left:196.929111px;}
.x45_c00122{left:201.091950px;}
.x10_c00122{left:204.762423px;}
.x5f_c00122{left:206.942712px;}
.xa8_c00122{left:210.801036px;}
.x21_c00122{left:213.302715px;}
.x5_c00122{left:217.774500px;}
.x9f_c00122{left:219.980838px;}
.x8f_c00122{left:227.145840px;}
.x4a_c00122{left:230.393568px;}
.x31_c00122{left:232.974000px;}
.x46_c00122{left:239.491542px;}
.x6_c00122{left:240.835500px;}
.x6f_c00122{left:242.436264px;}
.xa3_c00122{left:245.140296px;}
.x27_c00122{left:246.152922px;}
.x67_c00122{left:247.955112px;}
.x11_c00122{left:251.839380px;}
.x3b_c00122{left:257.596212px;}
.x4b_c00122{left:261.606186px;}
.x32_c00122{left:264.027000px;}
.x2_c00122{left:267.647005px;}
.x93_c00122{left:268.884336px;}
.x28_c00122{left:271.323585px;}
.xa0_c00122{left:273.476844px;}
.x7d_c00122{left:274.488048px;}
.x60_c00122{left:277.733520px;}
.x6b_c00122{left:278.803812px;}
.x9b_c00122{left:283.244010px;}
.x3c_c00122{left:285.398766px;}
.xa9_c00122{left:287.832426px;}
.x77_c00122{left:289.721760px;}
.x7b_c00122{left:290.937732px;}
.x7e_c00122{left:294.092112px;}
.x22_c00122{left:295.694715px;}
.x70_c00122{left:298.527732px;}
.x12_c00122{left:300.671415px;}
.x4c_c00122{left:302.365500px;}
.x47_c00122{left:304.845390px;}
.x7_c00122{left:305.898000px;}
.x81_c00122{left:307.524225px;}
.xaa_c00122{left:310.104948px;}
.x89_c00122{left:312.265644px;}
.x50_c00122{left:313.929576px;}
.x85_c00122{left:321.475524px;}
.x71_c00122{left:322.794468px;}
.x13_c00122{left:327.924819px;}
.x29_c00122{left:329.870106px;}
.x1a_c00122{left:333.212673px;}
.x33_c00122{left:335.256000px;}
.xb0_c00122{left:337.810176px;}
.x51_c00122{left:339.123300px;}
.x8a_c00122{left:344.635467px;}
.x78_c00122{left:346.177692px;}
.xab_c00122{left:349.935996px;}
.x90_c00122{left:351.503424px;}
.x3d_c00122{left:353.730588px;}
.x7c_c00122{left:355.218576px;}
.x52_c00122{left:360.629844px;}
.x8_c00122{left:361.867500px;}
.x23_c00122{left:363.442215px;}
.x48_c00122{left:366.705612px;}
.x34_c00122{left:368.752500px;}
.x61_c00122{left:371.169252px;}
.x14_c00122{left:372.919659px;}
.x1b_c00122{left:378.033843px;}
.x53_c00122{left:383.136924px;}
.x3e_c00122{left:385.346352px;}
.x91_c00122{left:387.012942px;}
.x2a_c00122{left:388.854627px;}
.x9c_c00122{left:390.992004px;}
.x6c_c00122{left:392.984604px;}
.x86_c00122{left:395.215074px;}
.x62_c00122{left:396.811140px;}
.xac_c00122{left:400.697826px;}
.x68_c00122{left:403.845624px;}
.x4d_c00122{left:406.731000px;}
.x3f_c00122{left:407.771112px;}
.x9_c00122{left:409.080000px;}
.x24_c00122{left:412.033215px;}
.x2b_c00122{left:413.269251px;}
.x15_c00122{left:414.356304px;}
.x54_c00122{left:416.105508px;}
.x35_c00122{left:419.343000px;}
.x69_c00122{left:423.134688px;}
.x40_c00122{left:424.791078px;}
.x82_c00122{left:426.810225px;}
.x58_c00122{left:429.093000px;}
.x1c_c00122{left:430.985208px;}
.x72_c00122{left:432.993048px;}
.xb1_c00122{left:435.030486px;}
.x5a_c00122{left:436.592196px;}
.x7f_c00122{left:438.441000px;}
.xa1_c00122{left:441.218274px;}
.xa_c00122{left:443.229000px;}
.x79_c00122{left:446.523492px;}
.x94_c00122{left:451.618506px;}
.x9d_c00122{left:455.038434px;}
.x63_c00122{left:459.187128px;}
.xb_c00122{left:460.987500px;}
.x73_c00122{left:462.672924px;}
.x25_c00122{left:468.173715px;}
.x2c_c00122{left:469.352694px;}
.x16_c00122{left:470.714229px;}
.x36_c00122{left:472.534500px;}
.x5b_c00122{left:473.863152px;}
.x1d_c00122{left:476.365878px;}
.x6d_c00122{left:477.589020px;}
.xb2_c00122{left:478.678332px;}
.xb4_c00122{left:480.477552px;}
.x2d_c00122{left:482.302545px;}
.x41_c00122{left:485.281980px;}
.x6a_c00122{left:494.856732px;}
.x26_c00122{left:496.612215px;}
.x5c_c00122{left:500.375676px;}
.x1e_c00122{left:502.001541px;}
.x42_c00122{left:505.824114px;}
.xc_c00122{left:511.737000px;}
.x95_c00122{left:513.042840px;}
.x83_c00122{left:518.635725px;}
.x80_c00122{left:521.359500px;}
.x59_c00122{left:522.730500px;}
.x5d_c00122{left:526.351932px;}
.x98_c00122{left:530.319624px;}
.x17_c00122{left:531.758388px;}
.x7a_c00122{left:533.016300px;}
.x6e_c00122{left:535.088880px;}
.x64_c00122{left:538.352256px;}
.xd_c00122{left:541.455000px;}
.x1f_c00122{left:542.813094px;}
.x4e_c00122{left:547.329000px;}
.x87_c00122{left:551.046018px;}
.x37_c00122{left:554.118000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
._0_c00122{width:57.899867pt;}
.fs1b_c00122{font-size:14.933333pt;}
.fs19_c00122{font-size:16.800000pt;}
.fs7_c00122{font-size:18.672042pt;}
.fs8_c00122{font-size:19.600000pt;}
.fsd_c00122{font-size:54.148921pt;}
.fs9_c00122{font-size:56.000000pt;}
.fs17_c00122{font-size:56.021948pt;}
.fs16_c00122{font-size:58.823045pt;}
.fsa_c00122{font-size:59.750534pt;}
.fs1_c00122{font-size:59.753520pt;}
.fse_c00122{font-size:60.684136pt;}
.fs12_c00122{font-size:60.687169pt;}
.fs10_c00122{font-size:61.617738pt;}
.fs2_c00122{font-size:61.620817pt;}
.fs15_c00122{font-size:61.624142pt;}
.fs1a_c00122{font-size:62.548465pt;}
.fsf_c00122{font-size:62.551340pt;}
.fs11_c00122{font-size:62.554466pt;}
.fs5_c00122{font-size:62.557842pt;}
.fsc_c00122{font-size:63.484942pt;}
.fs3_c00122{font-size:63.488115pt;}
.fs4_c00122{font-size:63.491541pt;}
.fs13_c00122{font-size:64.425240pt;}
.fs6_c00122{font-size:65.352147pt;}
.fs14_c00122{font-size:66.292638pt;}
.fs18_c00122{font-size:68.160036pt;}
.fsb_c00122{font-size:72.820963pt;}
.fs0_c00122{font-size:127.874147pt;}
.y0_c00122{bottom:0.000000pt;}
.y13f_c00122{bottom:87.244992pt;}
.y13e_c00122{bottom:87.809248pt;}
.y13d_c00122{bottom:89.218627pt;}
.y13c_c00122{bottom:90.454704pt;}
.y13b_c00122{bottom:91.285277pt;}
.y13a_c00122{bottom:94.660165pt;}
.y141_c00122{bottom:95.520000pt;}
.y139_c00122{bottom:96.259507pt;}
.y138_c00122{bottom:97.208000pt;}
.y140_c00122{bottom:104.880000pt;}
.y136_c00122{bottom:124.462331pt;}
.y135_c00122{bottom:126.138149pt;}
.y134_c00122{bottom:126.808955pt;}
.y133_c00122{bottom:128.417984pt;}
.y137_c00122{bottom:130.201333pt;}
.y132_c00122{bottom:131.435227pt;}
.y131_c00122{bottom:134.104448pt;}
.y130_c00122{bottom:142.474640pt;}
.y12f_c00122{bottom:143.975696pt;}
.y12e_c00122{bottom:145.178133pt;}
.y12d_c00122{bottom:145.781680pt;}
.y12c_c00122{bottom:147.858043pt;}
.y12b_c00122{bottom:149.473253pt;}
.y12a_c00122{bottom:150.553893pt;}
.y129_c00122{bottom:151.298416pt;}
.y128_c00122{bottom:152.423216pt;}
.y127_c00122{bottom:153.166059pt;}
.y126_c00122{bottom:154.915712pt;}
.y125_c00122{bottom:155.237280pt;}
.y124_c00122{bottom:162.323275pt;}
.y123_c00122{bottom:164.772475pt;}
.y122_c00122{bottom:165.352133pt;}
.y121_c00122{bottom:166.075003pt;}
.y120_c00122{bottom:166.962203pt;}
.y11f_c00122{bottom:167.518549pt;}
.y11e_c00122{bottom:168.651344pt;}
.y11d_c00122{bottom:169.284411pt;}
.y11c_c00122{bottom:171.475184pt;}
.y11b_c00122{bottom:173.228437pt;}
.y11a_c00122{bottom:173.679424pt;}
.y119_c00122{bottom:174.265344pt;}
.y118_c00122{bottom:175.400491pt;}
.y117_c00122{bottom:182.156907pt;}
.y116_c00122{bottom:183.150811pt;}
.y115_c00122{bottom:183.797408pt;}
.y114_c00122{bottom:185.397883pt;}
.y113_c00122{bottom:187.016640pt;}
.y112_c00122{bottom:188.697504pt;}
.y111_c00122{bottom:190.342635pt;}
.y110_c00122{bottom:191.898341pt;}
.y10f_c00122{bottom:192.620448pt;}
.y10e_c00122{bottom:193.810203pt;}
.y10d_c00122{bottom:194.846747pt;}
.y10c_c00122{bottom:202.314304pt;}
.y10b_c00122{bottom:203.913472pt;}
.y10a_c00122{bottom:204.889691pt;}
.y109_c00122{bottom:206.226384pt;}
.y108_c00122{bottom:207.062896pt;}
.y107_c00122{bottom:208.626144pt;}
.y106_c00122{bottom:209.511605pt;}
.y105_c00122{bottom:210.985840pt;}
.y104_c00122{bottom:211.803333pt;}
.y103_c00122{bottom:213.647963pt;}
.y102_c00122{bottom:214.774032pt;}
.y101_c00122{bottom:222.472027pt;}
.y100_c00122{bottom:224.080875pt;}
.yff_c00122{bottom:224.534715pt;}
.yfe_c00122{bottom:226.242181pt;}
.yfd_c00122{bottom:227.706699pt;}
.yfc_c00122{bottom:229.114725pt;}
.yfb_c00122{bottom:229.619243pt;}
.yfa_c00122{bottom:231.204320pt;}
.yf9_c00122{bottom:232.353019pt;}
.yf8_c00122{bottom:233.508912pt;}
.yf7_c00122{bottom:234.458432pt;}
.yf6_c00122{bottom:241.936149pt;}
.yf5_c00122{bottom:242.489509pt;}
.yf4_c00122{bottom:243.963936pt;}
.yf3_c00122{bottom:246.144715pt;}
.yf2_c00122{bottom:246.729365pt;}
.yf1_c00122{bottom:248.926885pt;}
.yf0_c00122{bottom:250.809259pt;}
.yef_c00122{bottom:252.845957pt;}
.yee_c00122{bottom:254.627291pt;}
.yed_c00122{bottom:263.246507pt;}
.yec_c00122{bottom:264.939419pt;}
.yeb_c00122{bottom:265.947461pt;}
.yea_c00122{bottom:266.970688pt;}
.ye9_c00122{bottom:269.179936pt;}
.ye8_c00122{bottom:269.974517pt;}
.ye7_c00122{bottom:271.865744pt;}
.ye6_c00122{bottom:272.537035pt;}
.ye5_c00122{bottom:274.068907pt;}
.ye4_c00122{bottom:275.037072pt;}
.ye3_c00122{bottom:283.897515pt;}
.ye2_c00122{bottom:284.671360pt;}
.ye1_c00122{bottom:286.306859pt;}
.ye0_c00122{bottom:287.285392pt;}
.ydf_c00122{bottom:288.117472pt;}
.yde_c00122{bottom:288.850395pt;}
.ydd_c00122{bottom:289.888805pt;}
.ydc_c00122{bottom:290.711440pt;}
.ydb_c00122{bottom:292.451733pt;}
.yda_c00122{bottom:293.558560pt;}
.yd9_c00122{bottom:294.245669pt;}
.yd8_c00122{bottom:310.910453pt;}
.yd7_c00122{bottom:312.794517pt;}
.yd6_c00122{bottom:314.246037pt;}
.yd5_c00122{bottom:314.642667pt;}
.yd4_c00122{bottom:323.417376pt;}
.yd3_c00122{bottom:324.001381pt;}
.yd2_c00122{bottom:326.642499pt;}
.yd1_c00122{bottom:327.281637pt;}
.yd0_c00122{bottom:328.311077pt;}
.ycf_c00122{bottom:329.116552pt;}
.yce_c00122{bottom:330.050579pt;}
.ycd_c00122{bottom:331.589704pt;}
.ycc_c00122{bottom:331.986245pt;}
.ycb_c00122{bottom:332.940672pt;}
.yca_c00122{bottom:334.788880pt;}
.yc9_c00122{bottom:343.299381pt;}
.yc8_c00122{bottom:345.523269pt;}
.yc7_c00122{bottom:346.582037pt;}
.yc6_c00122{bottom:347.039568pt;}
.yc5_c00122{bottom:348.214291pt;}
.yc4_c00122{bottom:348.810483pt;}
.yc3_c00122{bottom:349.488936pt;}
.yc2_c00122{bottom:350.762248pt;}
.yc1_c00122{bottom:351.713848pt;}
.yc0_c00122{bottom:352.460696pt;}
.ybf_c00122{bottom:353.230632pt;}
.ybe_c00122{bottom:354.476280pt;}
.ybd_c00122{bottom:364.479555pt;}
.ybc_c00122{bottom:365.815123pt;}
.ybb_c00122{bottom:366.601744pt;}
.yba_c00122{bottom:367.279096pt;}
.yb9_c00122{bottom:368.093589pt;}
.yb8_c00122{bottom:368.699147pt;}
.yb7_c00122{bottom:369.358576pt;}
.yb3_c00122{bottom:369.763019pt;}
.yb2_c00122{bottom:370.215925pt;}
.yb1_c00122{bottom:371.627477pt;}
.yb0_c00122{bottom:372.822325pt;}
.yaf_c00122{bottom:373.448981pt;}
.yae_c00122{bottom:374.597813pt;}
.yb6_c00122{bottom:384.730328pt;}
.yb5_c00122{bottom:386.105589pt;}
.yb4_c00122{bottom:386.646667pt;}
.yad_c00122{bottom:387.727104pt;}
.yac_c00122{bottom:388.302411pt;}
.yab_c00122{bottom:389.901867pt;}
.yaa_c00122{bottom:390.628011pt;}
.ya9_c00122{bottom:392.511424pt;}
.ya8_c00122{bottom:393.458411pt;}
.ya7_c00122{bottom:395.003179pt;}
.ya6_c00122{bottom:404.399509pt;}
.ya5_c00122{bottom:405.917493pt;}
.ya4_c00122{bottom:406.474155pt;}
.ya3_c00122{bottom:407.219765pt;}
.ya2_c00122{bottom:407.750592pt;}
.ya1_c00122{bottom:408.881685pt;}
.ya0_c00122{bottom:410.236832pt;}
.y9f_c00122{bottom:411.451499pt;}
.y9e_c00122{bottom:413.382933pt;}
.y9d_c00122{bottom:413.899339pt;}
.y9c_c00122{bottom:414.686699pt;}
.y9b_c00122{bottom:425.426837pt;}
.y9a_c00122{bottom:426.323925pt;}
.y99_c00122{bottom:427.035808pt;}
.y98_c00122{bottom:427.605163pt;}
.y97_c00122{bottom:428.927061pt;}
.y96_c00122{bottom:429.680213pt;}
.y95_c00122{bottom:430.263275pt;}
.y94_c00122{bottom:431.609312pt;}
.y93_c00122{bottom:432.607467pt;}
.y92_c00122{bottom:433.670901pt;}
.y91_c00122{bottom:435.331861pt;}
.y90_c00122{bottom:444.751883pt;}
.y8f_c00122{bottom:446.131968pt;}
.y8e_c00122{bottom:448.162325pt;}
.y8d_c00122{bottom:448.654272pt;}
.y8c_c00122{bottom:450.902357pt;}
.y8b_c00122{bottom:452.665589pt;}
.y8a_c00122{bottom:453.715445pt;}
.y89_c00122{bottom:455.497131pt;}
.y88_c00122{bottom:465.058059pt;}
.y87_c00122{bottom:465.764437pt;}
.y86_c00122{bottom:466.364032pt;}
.y85_c00122{bottom:467.422581pt;}
.y84_c00122{bottom:467.868768pt;}
.y83_c00122{bottom:469.566219pt;}
.y82_c00122{bottom:471.471925pt;}
.y81_c00122{bottom:472.856416pt;}
.y80_c00122{bottom:473.562475pt;}
.y7f_c00122{bottom:475.185632pt;}
.y7e_c00122{bottom:484.626592pt;}
.y7d_c00122{bottom:485.237504pt;}
.y7c_c00122{bottom:486.017451pt;}
.y7b_c00122{bottom:486.384821pt;}
.y7a_c00122{bottom:487.771541pt;}
.y79_c00122{bottom:488.341248pt;}
.y78_c00122{bottom:489.794251pt;}
.y77_c00122{bottom:490.418592pt;}
.y76_c00122{bottom:491.991499pt;}
.y75_c00122{bottom:492.550101pt;}
.y74_c00122{bottom:493.852053pt;}
.y73_c00122{bottom:494.631008pt;}
.y72_c00122{bottom:505.215637pt;}
.y71_c00122{bottom:505.908544pt;}
.y70_c00122{bottom:506.757973pt;}
.y6f_c00122{bottom:507.596917pt;}
.y6c_c00122{bottom:524.872725pt;}
.y6d_c00122{bottom:524.872736pt;}
.y6e_c00122{bottom:524.872875pt;}
.y6b_c00122{bottom:544.966400pt;}
.y6a_c00122{bottom:546.136032pt;}
.y69_c00122{bottom:546.964000pt;}
.y68_c00122{bottom:554.877333pt;}
.y67_c00122{bottom:557.280000pt;}
.y66_c00122{bottom:558.539147pt;}
.y65_c00122{bottom:559.183776pt;}
.y64_c00122{bottom:559.623904pt;}
.y63_c00122{bottom:560.044021pt;}
.y62_c00122{bottom:560.536128pt;}
.y61_c00122{bottom:560.792640pt;}
.y60_c00122{bottom:563.249621pt;}
.y5f_c00122{bottom:563.516917pt;}
.y5e_c00122{bottom:564.540779pt;}
.y5d_c00122{bottom:565.307051pt;}
.y5c_c00122{bottom:566.770507pt;}
.y5b_c00122{bottom:567.540203pt;}
.y5a_c00122{bottom:569.766667pt;}
.y59_c00122{bottom:570.979493pt;}
.y58_c00122{bottom:571.784363pt;}
.y57_c00122{bottom:573.473264pt;}
.y56_c00122{bottom:574.096224pt;}
.y55_c00122{bottom:575.506144pt;}
.y54_c00122{bottom:586.079243pt;}
.y53_c00122{bottom:587.829467pt;}
.y52_c00122{bottom:588.917120pt;}
.y51_c00122{bottom:589.665989pt;}
.y50_c00122{bottom:590.402043pt;}
.y4f_c00122{bottom:591.969915pt;}
.y4e_c00122{bottom:592.890944pt;}
.y4d_c00122{bottom:594.492229pt;}
.y4c_c00122{bottom:595.671717pt;}
.y4b_c00122{bottom:605.978693pt;}
.y4a_c00122{bottom:606.453936pt;}
.y49_c00122{bottom:607.851403pt;}
.y48_c00122{bottom:608.244320pt;}
.y47_c00122{bottom:608.762416pt;}
.y46_c00122{bottom:609.493253pt;}
.y45_c00122{bottom:610.041909pt;}
.y44_c00122{bottom:611.072528pt;}
.y43_c00122{bottom:611.715131pt;}
.y42_c00122{bottom:613.525824pt;}
.y41_c00122{bottom:614.739381pt;}
.y40_c00122{bottom:615.596891pt;}
.y3f_c00122{bottom:624.169237pt;}
.y3e_c00122{bottom:626.199760pt;}
.y3d_c00122{bottom:627.523637pt;}
.y3c_c00122{bottom:628.782779pt;}
.y3b_c00122{bottom:629.616469pt;}
.y3a_c00122{bottom:631.389280pt;}
.y39_c00122{bottom:632.162155pt;}
.y38_c00122{bottom:632.840987pt;}
.y37_c00122{bottom:633.843200pt;}
.y36_c00122{bottom:634.669984pt;}
.y35_c00122{bottom:635.288000pt;}
.y34_c00122{bottom:646.721115pt;}
.y33_c00122{bottom:647.008392pt;}
.y32_c00122{bottom:648.255176pt;}
.y31_c00122{bottom:648.798077pt;}
.y30_c00122{bottom:650.109240pt;}
.y2f_c00122{bottom:651.410280pt;}
.y2e_c00122{bottom:651.969320pt;}
.y2d_c00122{bottom:653.570395pt;}
.y2c_c00122{bottom:654.143925pt;}
.y2b_c00122{bottom:655.416659pt;}
.y2a_c00122{bottom:666.443949pt;}
.y29_c00122{bottom:667.101195pt;}
.y28_c00122{bottom:668.398664pt;}
.y27_c00122{bottom:669.521656pt;}
.y26_c00122{bottom:671.087376pt;}
.y25_c00122{bottom:672.991547pt;}
.y24_c00122{bottom:673.609896pt;}
.y23_c00122{bottom:675.826136pt;}
.y22_c00122{bottom:685.471104pt;}
.y21_c00122{bottom:686.378280pt;}
.y20_c00122{bottom:686.948067pt;}
.y1f_c00122{bottom:687.956837pt;}
.y1e_c00122{bottom:689.133904pt;}
.y1d_c00122{bottom:690.129744pt;}
.y1c_c00122{bottom:692.704592pt;}
.y1b_c00122{bottom:694.248776pt;}
.y1a_c00122{bottom:694.945621pt;}
.y19_c00122{bottom:695.511352pt;}
.y18_c00122{bottom:705.801485pt;}
.y17_c00122{bottom:707.104211pt;}
.y16_c00122{bottom:708.306637pt;}
.y15_c00122{bottom:709.190901pt;}
.y14_c00122{bottom:710.150728pt;}
.y13_c00122{bottom:710.732552pt;}
.y12_c00122{bottom:711.774389pt;}
.y11_c00122{bottom:712.778333pt;}
.y10_c00122{bottom:713.411400pt;}
.yf_c00122{bottom:714.488011pt;}
.ye_c00122{bottom:715.200800pt;}
.yd_c00122{bottom:725.201309pt;}
.yc_c00122{bottom:725.888125pt;}
.yb_c00122{bottom:727.061003pt;}
.ya_c00122{bottom:727.471421pt;}
.y9_c00122{bottom:728.260643pt;}
.y8_c00122{bottom:729.351776pt;}
.y7_c00122{bottom:730.645293pt;}
.y6_c00122{bottom:732.148960pt;}
.y5_c00122{bottom:732.681925pt;}
.y4_c00122{bottom:734.884888pt;}
.y3_c00122{bottom:735.608000pt;}
.y1_c00122{bottom:755.366667pt;}
.y2_c00122{bottom:758.841997pt;}
.h1d_c00122{height:14.933333pt;}
.h1b_c00122{height:16.800000pt;}
.h9_c00122{height:18.672042pt;}
.ha_c00122{height:19.600000pt;}
.hf_c00122{height:54.148921pt;}
.hb_c00122{height:56.000000pt;}
.h19_c00122{height:56.021948pt;}
.h18_c00122{height:58.823045pt;}
.hc_c00122{height:59.750534pt;}
.h3_c00122{height:59.753520pt;}
.h10_c00122{height:60.684136pt;}
.h14_c00122{height:60.687169pt;}
.h12_c00122{height:61.617738pt;}
.h4_c00122{height:61.620817pt;}
.h17_c00122{height:61.624142pt;}
.h1c_c00122{height:62.548465pt;}
.h11_c00122{height:62.551340pt;}
.h13_c00122{height:62.554466pt;}
.h7_c00122{height:62.557842pt;}
.he_c00122{height:63.484942pt;}
.h5_c00122{height:63.488115pt;}
.h6_c00122{height:63.491541pt;}
.h15_c00122{height:64.425240pt;}
.h8_c00122{height:65.352147pt;}
.h16_c00122{height:66.292638pt;}
.h1a_c00122{height:68.160036pt;}
.hd_c00122{height:72.820963pt;}
.h2_c00122{height:127.874147pt;}
.h1_c00122{height:893.333333pt;}
.h0_c00122{height:893.466667pt;}
.w0_c00122{width:627.066667pt;}
.w1_c00122{width:627.333333pt;}
.x0_c00122{left:0.000000pt;}
.xb6_c00122{left:22.937333pt;}
.xb5_c00122{left:25.200000pt;}
.x55_c00122{left:45.840000pt;}
.x8b_c00122{left:61.113333pt;}
.xad_c00122{left:62.227685pt;}
.xa4_c00122{left:64.679067pt;}
.xb7_c00122{left:66.050667pt;}
.x56_c00122{left:70.560000pt;}
.xa2_c00122{left:72.577323pt;}
.x99_c00122{left:73.602384pt;}
.x96_c00122{left:74.803611pt;}
.x43_c00122{left:75.765525pt;}
.x5e_c00122{left:78.360939pt;}
.x38_c00122{left:79.712752pt;}
.x3_c00122{left:81.036000pt;}
.xb3_c00122{left:82.729824pt;}
.x8d_c00122{left:87.884971pt;}
.xb9_c00122{left:88.800000pt;}
.xba_c00122{left:91.200000pt;}
.x74_c00122{left:92.742325pt;}
.x2e_c00122{left:95.450667pt;}
.xa5_c00122{left:100.168443pt;}
.xbb_c00122{left:101.280000pt;}
.x18_c00122{left:103.573384pt;}
.x9a_c00122{left:105.273963pt;}
.x92_c00122{left:106.934053pt;}
.x4_c00122{left:108.848000pt;}
.xe_c00122{left:110.763333pt;}
.x39_c00122{left:112.673248pt;}
.x57_c00122{left:114.720000pt;}
.xbc_c00122{left:116.400000pt;}
.x2f_c00122{left:117.522667pt;}
.xa6_c00122{left:118.473056pt;}
.x44_c00122{left:119.462757pt;}
.x75_c00122{left:121.880213pt;}
.x49_c00122{left:125.087189pt;}
.x8c_c00122{left:127.118667pt;}
.xae_c00122{left:129.051419pt;}
.x97_c00122{left:130.464043pt;}
.x19_c00122{left:131.452779pt;}
.xa7_c00122{left:132.578155pt;}
.xb8_c00122{left:138.748000pt;}
.x65_c00122{left:140.024416pt;}
.x76_c00122{left:141.006837pt;}
.x4f_c00122{left:143.564683pt;}
.x8e_c00122{left:145.758784pt;}
.x30_c00122{left:147.050667pt;}
.x84_c00122{left:150.546189pt;}
.xaf_c00122{left:153.008069pt;}
.xf_c00122{left:155.609656pt;}
.x3a_c00122{left:159.350528pt;}
.x1_c00122{left:162.433333pt;}
.x20_c00122{left:165.819747pt;}
.x66_c00122{left:167.164437pt;}
.x9e_c00122{left:169.154059pt;}
.x88_c00122{left:175.048099pt;}
.x45_c00122{left:178.748400pt;}
.x10_c00122{left:182.011043pt;}
.x5f_c00122{left:183.949077pt;}
.xa8_c00122{left:187.378699pt;}
.x21_c00122{left:189.602413pt;}
.x5_c00122{left:193.577333pt;}
.x9f_c00122{left:195.538523pt;}
.x8f_c00122{left:201.907413pt;}
.x4a_c00122{left:204.794283pt;}
.x31_c00122{left:207.088000pt;}
.x46_c00122{left:212.881371pt;}
.x6_c00122{left:214.076000pt;}
.x6f_c00122{left:215.498901pt;}
.xa3_c00122{left:217.902485pt;}
.x27_c00122{left:218.802597pt;}
.x67_c00122{left:220.404544pt;}
.x11_c00122{left:223.857227pt;}
.x3b_c00122{left:228.974411pt;}
.x4b_c00122{left:232.538832pt;}
.x32_c00122{left:234.690667pt;}
.x2_c00122{left:237.908449pt;}
.x93_c00122{left:239.008299pt;}
.x28_c00122{left:241.176520pt;}
.xa0_c00122{left:243.090528pt;}
.x7d_c00122{left:243.989376pt;}
.x60_c00122{left:246.874240pt;}
.x6b_c00122{left:247.825611pt;}
.x9b_c00122{left:251.772453pt;}
.x3c_c00122{left:253.687792pt;}
.xa9_c00122{left:255.851045pt;}
.x77_c00122{left:257.530453pt;}
.x7b_c00122{left:258.611317pt;}
.x7e_c00122{left:261.415211pt;}
.x22_c00122{left:262.839747pt;}
.x70_c00122{left:265.357984pt;}
.x12_c00122{left:267.263480pt;}
.x4c_c00122{left:268.769333pt;}
.x47_c00122{left:270.973680pt;}
.x7_c00122{left:271.909333pt;}
.x81_c00122{left:273.354867pt;}
.xaa_c00122{left:275.648843pt;}
.x89_c00122{left:277.569461pt;}
.x50_c00122{left:279.048512pt;}
.x85_c00122{left:285.756021pt;}
.x71_c00122{left:286.928416pt;}
.x13_c00122{left:291.488728pt;}
.x29_c00122{left:293.217872pt;}
.x1a_c00122{left:296.189043pt;}
.x33_c00122{left:298.005333pt;}
.xb0_c00122{left:300.275712pt;}
.x51_c00122{left:301.442933pt;}
.x8a_c00122{left:306.342637pt;}
.x78_c00122{left:307.713504pt;}
.xab_c00122{left:311.054219pt;}
.x90_c00122{left:312.447488pt;}
.x3d_c00122{left:314.427189pt;}
.x7c_c00122{left:315.749845pt;}
.x52_c00122{left:320.559861pt;}
.x8_c00122{left:321.660000pt;}
.x23_c00122{left:323.059747pt;}
.x48_c00122{left:325.960544pt;}
.x34_c00122{left:327.780000pt;}
.x61_c00122{left:329.928224pt;}
.x14_c00122{left:331.484141pt;}
.x1b_c00122{left:336.030083pt;}
.x53_c00122{left:340.566155pt;}
.x3e_c00122{left:342.530091pt;}
.x91_c00122{left:344.011504pt;}
.x2a_c00122{left:345.648557pt;}
.x9c_c00122{left:347.548448pt;}
.x6c_c00122{left:349.319648pt;}
.x86_c00122{left:351.302288pt;}
.x62_c00122{left:352.721013pt;}
.xac_c00122{left:356.175845pt;}
.x68_c00122{left:358.973888pt;}
.x4d_c00122{left:361.538667pt;}
.x3f_c00122{left:362.463211pt;}
.x9_c00122{left:363.626667pt;}
.x24_c00122{left:366.251747pt;}
.x2b_c00122{left:367.350445pt;}
.x15_c00122{left:368.316715pt;}
.x54_c00122{left:369.871563pt;}
.x35_c00122{left:372.749333pt;}
.x69_c00122{left:376.119723pt;}
.x40_c00122{left:377.592069pt;}
.x82_c00122{left:379.386867pt;}
.x58_c00122{left:381.416000pt;}
.x1c_c00122{left:383.097963pt;}
.x72_c00122{left:384.882709pt;}
.xb1_c00122{left:386.693765pt;}
.x5a_c00122{left:388.081952pt;}
.x7f_c00122{left:389.725333pt;}
.xa1_c00122{left:392.194021pt;}
.xa_c00122{left:393.981333pt;}
.x79_c00122{left:396.909771pt;}
.x94_c00122{left:401.438672pt;}
.x9d_c00122{left:404.478608pt;}
.x63_c00122{left:408.166336pt;}
.xb_c00122{left:409.766667pt;}
.x73_c00122{left:411.264821pt;}
.x25_c00122{left:416.154413pt;}
.x2c_c00122{left:417.202395pt;}
.x16_c00122{left:418.412648pt;}
.x36_c00122{left:420.030667pt;}
.x5b_c00122{left:421.211691pt;}
.x1d_c00122{left:423.436336pt;}
.x6d_c00122{left:424.523573pt;}
.xb2_c00122{left:425.491851pt;}
.xb4_c00122{left:427.091157pt;}
.x2d_c00122{left:428.713373pt;}
.x41_c00122{left:431.361760pt;}
.x6a_c00122{left:439.872651pt;}
.x26_c00122{left:441.433080pt;}
.x5c_c00122{left:444.778379pt;}
.x1e_c00122{left:446.223592pt;}
.x42_c00122{left:449.621435pt;}
.xc_c00122{left:454.877333pt;}
.x95_c00122{left:456.038080pt;}
.x83_c00122{left:461.009533pt;}
.x80_c00122{left:463.430667pt;}
.x59_c00122{left:464.649333pt;}
.x5d_c00122{left:467.868384pt;}
.x98_c00122{left:471.395221pt;}
.x17_c00122{left:472.674123pt;}
.x7a_c00122{left:473.792267pt;}
.x6e_c00122{left:475.634560pt;}
.x64_c00122{left:478.535339pt;}
.xd_c00122{left:481.293333pt;}
.x1f_c00122{left:482.500528pt;}
.x4e_c00122{left:486.514667pt;}
.x87_c00122{left:489.818683pt;}
.x37_c00122{left:492.549333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m13e_c00123{transform:matrix(0.037905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037905,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.m11b_c00123{transform:matrix(0.109645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109645,0.000000,0.000000,0.250000,0,0);}
.m60_c00123{transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);}
.m113_c00123{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);}
.m19_c00123{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{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);}
.md9_c00123{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);}
.mc6_c00123{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);}
.m1d_c00123{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);}
.m106_c00123{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);}
.m53_c00123{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);}
.me7_c00123{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);}
.m5a_c00123{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);}
.m139_c00123{transform:matrix(0.151639,0.001820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151639,0.001820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151639,0.001820,-0.003000,0.249982,0,0);}
.m64_c00123{transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);}
.m62_c00123{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);}
.mb0_c00123{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);}
.m10e_c00123{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);}
.m41_c00123{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);}
.m4e_c00123{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);}
.m47_c00123{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);}
.m1_c00123{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);}
.mdb_c00123{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);}
.m93_c00123{transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{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);}
.m40_c00123{transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156005,0.000000,0.000000,0.250000,0,0);}
.me5_c00123{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);}
.m98_c00123{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);}
.m61_c00123{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);}
.m116_c00123{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);}
.m99_c00123{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m111_c00123{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{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);}
.m5f_c00123{transform:matrix(0.158420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158420,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{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);}
.m97_c00123{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.m10b_c00123{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);}
.m130_c00123{transform:matrix(0.159943,0.001919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159943,0.001919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159943,0.001919,-0.003000,0.249982,0,0);}
.mbd_c00123{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);}
.m37_c00123{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);}
.meb_c00123{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.mde_c00123{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);}
.m27_c00123{transform:matrix(0.162055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162055,0.000000,0.000000,0.250000,0,0);}
.mc4_c00123{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);}
.m7b_c00123{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);}
.m39_c00123{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);}
.mb9_c00123{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m8b_c00123{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);}
.mf_c00123{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);}
.mf0_c00123{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);}
.mf5_c00123{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);}
.m134_c00123{transform:matrix(0.163838,0.001966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163838,0.001966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163838,0.001966,-0.003000,0.249982,0,0);}
.me9_c00123{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{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);}
.m4f_c00123{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);}
.m3a_c00123{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);}
.m100_c00123{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);}
.m6f_c00123{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);}
.m9e_c00123{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);}
.m23_c00123{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);}
.mca_c00123{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);}
.md8_c00123{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);}
.m55_c00123{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);}
.m52_c00123{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);}
.ma4_c00123{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);}
.mc3_c00123{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);}
.m63_c00123{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);}
.m58_c00123{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);}
.m2a_c00123{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);}
.m96_c00123{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);}
.m125_c00123{transform:matrix(0.169583,0.002374,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169583,0.002374,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169583,0.002374,-0.003500,0.249976,0,0);}
.m138_c00123{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);}
.m137_c00123{transform:matrix(0.170008,0.002040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170008,0.002040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170008,0.002040,-0.003000,0.249982,0,0);}
.m57_c00123{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);}
.med_c00123{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);}
.m114_c00123{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);}
.m132_c00123{transform:matrix(0.170873,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170873,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170873,0.002050,-0.003000,0.249982,0,0);}
.m36_c00123{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);}
.m104_c00123{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);}
.mc0_c00123{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);}
.m9c_c00123{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);}
.m13b_c00123{transform:matrix(0.171663,0.002060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171663,0.002060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171663,0.002060,-0.003000,0.249982,0,0);}
.m5b_c00123{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);}
.mb6_c00123{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);}
.ma8_c00123{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);}
.m124_c00123{transform:matrix(0.172838,0.002420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172838,0.002420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172838,0.002420,-0.003500,0.249976,0,0);}
.m3e_c00123{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);}
.m67_c00123{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);}
.m2_c00123{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);}
.md7_c00123{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);}
.m12e_c00123{transform:matrix(0.174928,0.002449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174928,0.002449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174928,0.002449,-0.003500,0.249976,0,0);}
.m6a_c00123{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);}
.m95_c00123{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);}
.m79_c00123{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);}
.mb_c00123{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);}
.m31_c00123{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);}
.m8e_c00123{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);}
.mbb_c00123{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);}
.m11_c00123{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);}
.m46_c00123{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);}
.m112_c00123{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);}
.m2c_c00123{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);}
.m9_c00123{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);}
.m8f_c00123{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);}
.mdc_c00123{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);}
.me4_c00123{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_c00123{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);}
.m136_c00123{transform:matrix(0.178657,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178657,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178657,0.002144,-0.003000,0.249982,0,0);}
.mda_c00123{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);}
.m110_c00123{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);}
.m66_c00123{transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);}
.mef_c00123{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);}
.m89_c00123{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);}
.m8c_c00123{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);}
.m48_c00123{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);}
.m45_c00123{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);}
.m20_c00123{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);}
.m131_c00123{transform:matrix(0.179882,0.002159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179882,0.002159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179882,0.002159,-0.003000,0.249982,0,0);}
.m122_c00123{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);}
.mdf_c00123{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);}
.m2b_c00123{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);}
.me6_c00123{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);}
.m4_c00123{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);}
.mc7_c00123{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);}
.m42_c00123{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);}
.m2e_c00123{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);}
.m68_c00123{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);}
.m6c_c00123{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);}
.m84_c00123{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);}
.m4b_c00123{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);}
.m7d_c00123{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);}
.m107_c00123{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);}
.mb3_c00123{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);}
.m9a_c00123{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);}
.m69_c00123{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);}
.m6b_c00123{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);}
.m6_c00123{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);}
.m70_c00123{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);}
.m50_c00123{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);}
.m83_c00123{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);}
.m4d_c00123{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);}
.m34_c00123{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);}
.m85_c00123{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);}
.m56_c00123{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);}
.m13_c00123{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);}
.m65_c00123{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);}
.mc2_c00123{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m44_c00123{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);}
.m13a_c00123{transform:matrix(0.186452,0.002237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186452,0.002237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186452,0.002237,-0.003000,0.249982,0,0);}
.m4a_c00123{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);}
.m10c_c00123{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);}
.m7_c00123{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);}
.m10f_c00123{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);}
.mb2_c00123{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);}
.m51_c00123{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);}
.m15_c00123{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);}
.m22_c00123{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);}
.m30_c00123{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);}
.m115_c00123{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);}
.m3d_c00123{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);}
.mec_c00123{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);}
.mc5_c00123{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);}
.mfd_c00123{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);}
.me2_c00123{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);}
.mdd_c00123{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);}
.m6e_c00123{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);}
.me0_c00123{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);}
.m1f_c00123{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);}
.m28_c00123{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);}
.m72_c00123{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);}
.m3b_c00123{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);}
.mf9_c00123{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);}
.m14_c00123{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);}
.m1a_c00123{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);}
.mcd_c00123{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);}
.m11e_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);}
.m9b_c00123{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{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);}
.m73_c00123{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);}
.ma_c00123{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);}
.mf6_c00123{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);}
.m90_c00123{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);}
.m6d_c00123{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);}
.m135_c00123{transform:matrix(0.193171,0.002318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193171,0.002318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193171,0.002318,-0.003000,0.249982,0,0);}
.m12_c00123{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);}
.m7a_c00123{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);}
.m18_c00123{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);}
.me8_c00123{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);}
.m8a_c00123{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);}
.m9f_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);}
.ma1_c00123{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);}
.mf8_c00123{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);}
.m129_c00123{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);}
.md1_c00123{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);}
.me1_c00123{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);}
.mb5_c00123{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);}
.ma5_c00123{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);}
.mc1_c00123{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);}
.m33_c00123{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);}
.m25_c00123{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);}
.m3f_c00123{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);}
.m103_c00123{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);}
.m59_c00123{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);}
.m49_c00123{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);}
.mf4_c00123{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);}
.m5c_c00123{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);}
.mb4_c00123{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);}
.m71_c00123{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);}
.md3_c00123{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);}
.mbe_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);}
.m8_c00123{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);}
.md6_c00123{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);}
.m76_c00123{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);}
.mff_c00123{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);}
.mea_c00123{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);}
.ma9_c00123{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);}
.m8d_c00123{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);}
.mb8_c00123{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);}
.m4c_c00123{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);}
.m1e_c00123{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);}
.mee_c00123{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);}
.m82_c00123{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);}
.m17_c00123{transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);}
.mf7_c00123{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);}
.m119_c00123{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);}
.mc8_c00123{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);}
.ma7_c00123{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);}
.mfe_c00123{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);}
.m10_c00123{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);}
.mbc_c00123{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);}
.m54_c00123{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);}
.m105_c00123{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);}
.m101_c00123{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);}
.m5_c00123{transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);}
.md_c00123{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);}
.m81_c00123{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);}
.m7c_c00123{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);}
.ma3_c00123{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);}
.ma0_c00123{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);}
.m32_c00123{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);}
.m127_c00123{transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);}
.m43_c00123{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);}
.m87_c00123{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.mae_c00123{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);}
.ma2_c00123{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);}
.mab_c00123{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);}
.m123_c00123{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);}
.m13c_c00123{transform:matrix(0.212845,0.002554,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212845,0.002554,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212845,0.002554,-0.003000,0.249982,0,0);}
.mbf_c00123{transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{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);}
.m80_c00123{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);}
.maa_c00123{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);}
.mfa_c00123{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);}
.m126_c00123{transform:matrix(0.215674,0.003019,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215674,0.003019,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215674,0.003019,-0.003500,0.249976,0,0);}
.m12b_c00123{transform:matrix(0.215714,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215714,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215714,0.003020,-0.003500,0.249976,0,0);}
.m118_c00123{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);}
.m133_c00123{transform:matrix(0.216929,0.002603,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216929,0.002603,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216929,0.002603,-0.003000,0.249982,0,0);}
.mb7_c00123{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);}
.md0_c00123{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);}
.m5e_c00123{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);}
.m78_c00123{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);}
.m12a_c00123{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);}
.m11c_c00123{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);}
.m7e_c00123{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);}
.mfb_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);}
.m121_c00123{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);}
.me3_c00123{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);}
.mcc_c00123{transform:matrix(0.221795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221795,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{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);}
.m117_c00123{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);}
.m10a_c00123{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);}
.m102_c00123{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);}
.m12c_c00123{transform:matrix(0.225278,0.003154,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225278,0.003154,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225278,0.003154,-0.003500,0.249976,0,0);}
.m77_c00123{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);}
.mad_c00123{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m9d_c00123{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.ma6_c00123{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);}
.mf3_c00123{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);}
.mc_c00123{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);}
.m108_c00123{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);}
.m7f_c00123{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);}
.m11f_c00123{transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);}
.md4_c00123{transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{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);}
.mc9_c00123{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);}
.m88_c00123{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);}
.mf1_c00123{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);}
.mcf_c00123{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);}
.maf_c00123{transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);}
.mfc_c00123{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);}
.mac_c00123{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.m94_c00123{transform:matrix(0.242255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242255,0.000000,0.000000,0.250000,0,0);}
.m11a_c00123{transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);}
.md2_c00123{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);}
.m86_c00123{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.mba_c00123{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);}
.m92_c00123{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);}
.m38_c00123{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);}
.m1c_c00123{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m74_c00123{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.mf2_c00123{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);}
.m91_c00123{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.256155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256155,0.000000,0.000000,0.250000,0,0);}
.me_c00123{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);}
.m75_c00123{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m12d_c00123{transform:matrix(0.264769,0.003707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264769,0.003707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264769,0.003707,-0.003500,0.249976,0,0);}
.m13f_c00123{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);}
.mce_c00123{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.m128_c00123{transform:matrix(0.277403,0.003884,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277403,0.003884,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277403,0.003884,-0.003500,0.249976,0,0);}
.m11d_c00123{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);}
.mcb_c00123{transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);}
.md5_c00123{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m120_c00123{transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);}
.m12f_c00123{transform:matrix(0.316494,0.004431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.316494,0.004431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.316494,0.004431,-0.003500,0.249976,0,0);}
.m10d_c00123{transform:matrix(0.336780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336780,0.000000,0.000000,0.250000,0,0);}
.m109_c00123{transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.418510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418510,0.000000,0.000000,0.250000,0,0);}
.m13d_c00123{transform:matrix(0.521925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521925,0.000000,0.000000,0.250000,0,0);}
.m140_c00123{transform:matrix(0.579125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579125,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;}
.fsa_c00123{font-size:61.950000px;}
.fsd_c00123{font-size:61.956071px;}
.fs2_c00123{font-size:65.100000px;}
.fs1_c00123{font-size:66.150000px;}
.fsb_c00123{font-size:68.250000px;}
.fs4_c00123{font-size:69.300000px;}
.fs9_c00123{font-size:70.350000px;}
.fse_c00123{font-size:70.355065px;}
.fs5_c00123{font-size:71.400000px;}
.fs3_c00123{font-size:72.450000px;}
.fs6_c00123{font-size:73.500000px;}
.fsc_c00123{font-size:74.550000px;}
.fs8_c00123{font-size:75.600000px;}
.fs7_c00123{font-size:76.650000px;}
.fsf_c00123{font-size:89.250000px;}
.fs10_c00123{font-size:107.100000px;}
.fs0_c00123{font-size:136.500000px;}
.y0_c00123{bottom:0.000000px;}
.y82_c00123{bottom:110.970000px;}
.y81_c00123{bottom:127.710000px;}
.y7f_c00123{bottom:155.925972px;}
.y7e_c00123{bottom:156.668076px;}
.y7d_c00123{bottom:157.120938px;}
.y7c_c00123{bottom:157.419666px;}
.y7b_c00123{bottom:157.924566px;}
.y7a_c00123{bottom:158.278482px;}
.y79_c00123{bottom:158.653746px;}
.y78_c00123{bottom:159.218118px;}
.y77_c00123{bottom:159.810678px;}
.y76_c00123{bottom:160.316514px;}
.y75_c00123{bottom:160.621092px;}
.y74_c00123{bottom:160.971102px;}
.y73_c00123{bottom:161.190000px;}
.y72_c00123{bottom:178.979547px;}
.y71_c00123{bottom:179.387955px;}
.y70_c00123{bottom:179.883765px;}
.y6f_c00123{bottom:180.514647px;}
.y6e_c00123{bottom:180.849975px;}
.y6d_c00123{bottom:181.966020px;}
.y6c_c00123{bottom:182.340261px;}
.y6b_c00123{bottom:182.657634px;}
.y6a_c00123{bottom:183.379866px;}
.y69_c00123{bottom:183.746484px;}
.y68_c00123{bottom:184.150377px;}
.y67_c00123{bottom:184.410000px;}
.y66_c00123{bottom:201.879000px;}
.y65_c00123{bottom:202.345500px;}
.y64_c00123{bottom:202.842000px;}
.y63_c00123{bottom:203.127000px;}
.y62_c00123{bottom:203.697000px;}
.y61_c00123{bottom:203.940000px;}
.y60_c00123{bottom:204.196500px;}
.y5f_c00123{bottom:205.683000px;}
.y5e_c00123{bottom:205.918500px;}
.y5d_c00123{bottom:206.557500px;}
.y5c_c00123{bottom:206.826000px;}
.y5b_c00123{bottom:207.091500px;}
.y80_c00123{bottom:214.258500px;}
.y5a_c00123{bottom:225.354000px;}
.y59_c00123{bottom:225.612000px;}
.y58_c00123{bottom:225.942000px;}
.y57_c00123{bottom:226.102500px;}
.y56_c00123{bottom:226.255500px;}
.y55_c00123{bottom:226.740000px;}
.y54_c00123{bottom:227.055000px;}
.y53_c00123{bottom:228.079500px;}
.y52_c00123{bottom:228.616500px;}
.y51_c00123{bottom:228.798000px;}
.y50_c00123{bottom:229.015500px;}
.y4f_c00123{bottom:229.824000px;}
.y4e_c00123{bottom:230.041500px;}
.y4d_c00123{bottom:247.509000px;}
.y4c_c00123{bottom:247.972500px;}
.y4b_c00123{bottom:248.151000px;}
.y4a_c00123{bottom:248.955000px;}
.y49_c00123{bottom:249.964500px;}
.y48_c00123{bottom:250.219500px;}
.y47_c00123{bottom:251.071500px;}
.y46_c00123{bottom:251.908500px;}
.y45_c00123{bottom:252.448500px;}
.y44_c00123{bottom:270.460500px;}
.y43_c00123{bottom:270.876000px;}
.y42_c00123{bottom:271.068000px;}
.y41_c00123{bottom:271.543500px;}
.y40_c00123{bottom:271.803000px;}
.y3f_c00123{bottom:272.224500px;}
.y3e_c00123{bottom:273.453000px;}
.y3d_c00123{bottom:273.949500px;}
.y3c_c00123{bottom:274.354500px;}
.y3b_c00123{bottom:275.130000px;}
.y3a_c00123{bottom:293.467500px;}
.y39_c00123{bottom:293.695500px;}
.y38_c00123{bottom:294.052500px;}
.y37_c00123{bottom:294.889500px;}
.y36_c00123{bottom:295.159500px;}
.y35_c00123{bottom:295.432500px;}
.y34_c00123{bottom:295.617000px;}
.y33_c00123{bottom:296.071500px;}
.y32_c00123{bottom:296.236500px;}
.y31_c00123{bottom:296.625000px;}
.y30_c00123{bottom:296.829000px;}
.y2f_c00123{bottom:297.100500px;}
.y2e_c00123{bottom:297.540000px;}
.y2d_c00123{bottom:316.335000px;}
.y2c_c00123{bottom:316.555500px;}
.y2b_c00123{bottom:317.085000px;}
.y2a_c00123{bottom:317.347500px;}
.y29_c00123{bottom:318.063000px;}
.y28_c00123{bottom:318.853500px;}
.y27_c00123{bottom:319.129500px;}
.y26_c00123{bottom:319.656000px;}
.y25_c00123{bottom:319.945500px;}
.y24_c00123{bottom:320.223000px;}
.y23_c00123{bottom:320.760000px;}
.y22_c00123{bottom:339.454500px;}
.y21_c00123{bottom:340.098000px;}
.y20_c00123{bottom:340.315500px;}
.y1f_c00123{bottom:340.608000px;}
.y1e_c00123{bottom:340.954500px;}
.y1d_c00123{bottom:341.073000px;}
.y1c_c00123{bottom:341.391000px;}
.y1b_c00123{bottom:341.502000px;}
.y1a_c00123{bottom:341.982000px;}
.y19_c00123{bottom:342.148500px;}
.y18_c00123{bottom:342.358500px;}
.y17_c00123{bottom:342.630000px;}
.y16_c00123{bottom:364.414500px;}
.y15_c00123{bottom:386.607000px;}
.y14_c00123{bottom:415.761000px;}
.y13_c00123{bottom:438.049500px;}
.y12_c00123{bottom:461.907000px;}
.y11_c00123{bottom:483.664500px;}
.y10_c00123{bottom:506.373000px;}
.yf_c00123{bottom:529.590000px;}
.ye_c00123{bottom:552.990000px;}
.yd_c00123{bottom:575.937000px;}
.yc_c00123{bottom:599.370000px;}
.yb_c00123{bottom:622.050000px;}
.ya_c00123{bottom:645.270000px;}
.y9_c00123{bottom:667.920000px;}
.y8_c00123{bottom:690.891000px;}
.y7_c00123{bottom:713.917500px;}
.y6_c00123{bottom:736.585500px;}
.y5_c00123{bottom:759.810000px;}
.y4_c00123{bottom:782.938500px;}
.y3_c00123{bottom:805.351500px;}
.y2_c00123{bottom:828.300000px;}
.y1_c00123{bottom:876.420000px;}
.hc_c00123{height:61.950000px;}
.hf_c00123{height:61.956071px;}
.h4_c00123{height:65.100000px;}
.h3_c00123{height:66.150000px;}
.hd_c00123{height:68.250000px;}
.h6_c00123{height:69.300000px;}
.hb_c00123{height:70.350000px;}
.h10_c00123{height:70.355065px;}
.h7_c00123{height:71.400000px;}
.h5_c00123{height:72.450000px;}
.h8_c00123{height:73.500000px;}
.he_c00123{height:74.550000px;}
.ha_c00123{height:75.600000px;}
.h9_c00123{height:76.650000px;}
.h11_c00123{height:89.250000px;}
.h12_c00123{height:107.100000px;}
.h2_c00123{height:136.500000px;}
.h0_c00123{height:1008.450000px;}
.h1_c00123{height:1008.750000px;}
.w0_c00123{width:676.890000px;}
.w1_c00123{width:677.250000px;}
.x0_c00123{left:0.000000px;}
.x3_c00123{left:133.920000px;}
.x16_c00123{left:135.540000px;}
.x71_c00123{left:137.430000px;}
.x4_c00123{left:154.170000px;}
.xa2_c00123{left:156.187500px;}
.x20_c00123{left:157.950000px;}
.xa9_c00123{left:159.138000px;}
.x33_c00123{left:162.540000px;}
.x3f_c00123{left:164.160000px;}
.x46_c00123{left:167.670000px;}
.x72_c00123{left:170.640000px;}
.x82_c00123{left:171.720000px;}
.x75_c00123{left:174.690000px;}
.x89_c00123{left:175.770000px;}
.x28_c00123{left:176.850000px;}
.x36_c00123{left:181.710000px;}
.xad_c00123{left:184.234500px;}
.x17_c00123{left:186.300000px;}
.x4e_c00123{left:187.920000px;}
.xd_c00123{left:190.620000px;}
.x29_c00123{left:196.020000px;}
.x34_c00123{left:201.420000px;}
.x5_c00123{left:203.850000px;}
.x40_c00123{left:206.010000px;}
.x7b_c00123{left:208.980000px;}
.xae_c00123{left:210.421500px;}
.x9a_c00123{left:213.706500px;}
.x21_c00123{left:215.190000px;}
.x93_c00123{left:218.026500px;}
.x54_c00123{left:223.290000px;}
.xe_c00123{left:225.450000px;}
.x47_c00123{left:227.880000px;}
.x35_c00123{left:230.040000px;}
.x7c_c00123{left:232.470000px;}
.x76_c00123{left:234.630000px;}
.x8a_c00123{left:235.980000px;}
.x83_c00123{left:238.140000px;}
.x4f_c00123{left:240.030000px;}
.x6_c00123{left:243.000000px;}
.x5a_c00123{left:246.240000px;}
.x22_c00123{left:247.860000px;}
.xa3_c00123{left:249.337500px;}
.x41_c00123{left:250.560000px;}
.x48_c00123{left:252.180000px;}
.x6b_c00123{left:253.800000px;}
.x2a_c00123{left:260.280000px;}
.x37_c00123{left:262.710000px;}
.x64_c00123{left:265.950000px;}
.x50_c00123{left:268.920000px;}
.x18_c00123{left:271.890000px;}
.xf_c00123{left:275.670000px;}
.x7_c00123{left:277.290000px;}
.x84_c00123{left:282.420000px;}
.x38_c00123{left:283.770000px;}
.x5b_c00123{left:289.980000px;}
.x55_c00123{left:292.140000px;}
.x65_c00123{left:293.760000px;}
.x73_c00123{left:295.110000px;}
.x2b_c00123{left:298.080000px;}
.x94_c00123{left:299.566500px;}
.x62_c00123{left:301.590000px;}
.x1_c00123{left:303.750000px;}
.x7d_c00123{left:306.990000px;}
.x39_c00123{left:309.420000px;}
.x49_c00123{left:311.310000px;}
.x90_c00123{left:313.363500px;}
.x5c_c00123{left:314.820000px;}
.x19_c00123{left:315.900000px;}
.x8b_c00123{left:322.380000px;}
.x95_c00123{left:327.103500px;}
.x10_c00123{left:328.320000px;}
.x56_c00123{left:332.640000px;}
.x3a_c00123{left:335.070000px;}
.x85_c00123{left:338.580000px;}
.x1a_c00123{left:340.470000px;}
.x42_c00123{left:343.440000px;}
.x8c_c00123{left:346.140000px;}
.x6c_c00123{left:348.300000px;}
.x98_c00123{left:350.602500px;}
.x8_c00123{left:355.050000px;}
.x23_c00123{left:356.670000px;}
.x91_c00123{left:358.726500px;}
.x77_c00123{left:363.420000px;}
.x2_c00123{left:365.850000px;}
.x66_c00123{left:367.470000px;}
.x1b_c00123{left:370.170000px;}
.x9_c00123{left:375.570000px;}
.x2c_c00123{left:376.920000px;}
.xaa_c00123{left:378.390000px;}
.x6d_c00123{left:380.160000px;}
.x7e_c00123{left:382.590000px;}
.x5d_c00123{left:386.910000px;}
.x11_c00123{left:388.800000px;}
.xaf_c00123{left:391.128000px;}
.x51_c00123{left:395.550000px;}
.x24_c00123{left:397.440000px;}
.x2d_c00123{left:399.330000px;}
.x67_c00123{left:400.950000px;}
.x96_c00123{left:406.203000px;}
.xa4_c00123{left:407.817000px;}
.x86_c00123{left:409.050000px;}
.x7f_c00123{left:410.400000px;}
.x3b_c00123{left:414.180000px;}
.x25_c00123{left:415.530000px;}
.xab_c00123{left:419.958000px;}
.x63_c00123{left:421.470000px;}
.x4a_c00123{left:423.090000px;}
.x5e_c00123{left:425.520000px;}
.x6e_c00123{left:426.870000px;}
.x68_c00123{left:431.190000px;}
.x12_c00123{left:434.700000px;}
.x3c_c00123{left:436.320000px;}
.xa_c00123{left:441.720000px;}
.x8d_c00123{left:446.040000px;}
.x6f_c00123{left:450.630000px;}
.x2e_c00123{left:452.250000px;}
.x80_c00123{left:453.330000px;}
.x9e_c00123{left:454.524000px;}
.x5f_c00123{left:459.810000px;}
.x78_c00123{left:463.050000px;}
.x1c_c00123{left:464.130000px;}
.x4b_c00123{left:466.290000px;}
.xb_c00123{left:467.370000px;}
.x9b_c00123{left:468.856500px;}
.x57_c00123{left:471.960000px;}
.xb0_c00123{left:475.933500px;}
.x8e_c00123{left:477.090000px;}
.xa5_c00123{left:480.507000px;}
.x3d_c00123{left:483.030000px;}
.x1d_c00123{left:484.380000px;}
.x13_c00123{left:487.890000px;}
.x43_c00123{left:490.320000px;}
.x2f_c00123{left:491.670000px;}
.x9c_c00123{left:494.809500px;}
.x92_c00123{left:498.048000px;}
.x52_c00123{left:501.660000px;}
.x97_c00123{left:503.953500px;}
.x58_c00123{left:507.060000px;}
.xa6_c00123{left:509.077500px;}
.x3e_c00123{left:510.840000px;}
.x1e_c00123{left:512.190000px;}
.xb1_c00123{left:513.672000px;}
.x60_c00123{left:516.780000px;}
.x81_c00123{left:517.860000px;}
.x79_c00123{left:520.560000px;}
.x99_c00123{left:524.256000px;}
.x8f_c00123{left:526.500000px;}
.x9f_c00123{left:527.673000px;}
.x4c_c00123{left:529.200000px;}
.xac_c00123{left:532.548000px;}
.x53_c00123{left:534.060000px;}
.xa7_c00123{left:539.100000px;}
.x9d_c00123{left:542.308500px;}
.xa0_c00123{left:543.903000px;}
.xc_c00123{left:545.940000px;}
.x7a_c00123{left:548.370000px;}
.x30_c00123{left:549.450000px;}
.x26_c00123{left:551.070000px;}
.x87_c00123{left:553.500000px;}
.x69_c00123{left:555.930000px;}
.x59_c00123{left:560.790000px;}
.xa8_c00123{left:562.548000px;}
.x14_c00123{left:563.760000px;}
.x31_c00123{left:567.810000px;}
.x1f_c00123{left:572.400000px;}
.xb2_c00123{left:575.514000px;}
.x44_c00123{left:577.260000px;}
.x61_c00123{left:578.610000px;}
.x88_c00123{left:580.230000px;}
.x74_c00123{left:584.820000px;}
.xa1_c00123{left:586.080000px;}
.x32_c00123{left:590.220000px;}
.x4d_c00123{left:591.840000px;}
.x70_c00123{left:592.920000px;}
.x45_c00123{left:594.270000px;}
.x6a_c00123{left:597.780000px;}
.x27_c00123{left:599.670000px;}
.x15_c00123{left:602.910000px;}
.xb5_c00123{left:630.180000px;}
.xb3_c00123{left:637.740000px;}
.xb4_c00123{left:654.480000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.fsa_c00123{font-size:55.066667pt;}
.fsd_c00123{font-size:55.072063pt;}
.fs2_c00123{font-size:57.866667pt;}
.fs1_c00123{font-size:58.800000pt;}
.fsb_c00123{font-size:60.666667pt;}
.fs4_c00123{font-size:61.600000pt;}
.fs9_c00123{font-size:62.533333pt;}
.fse_c00123{font-size:62.537836pt;}
.fs5_c00123{font-size:63.466667pt;}
.fs3_c00123{font-size:64.400000pt;}
.fs6_c00123{font-size:65.333333pt;}
.fsc_c00123{font-size:66.266667pt;}
.fs8_c00123{font-size:67.200000pt;}
.fs7_c00123{font-size:68.133333pt;}
.fsf_c00123{font-size:79.333333pt;}
.fs10_c00123{font-size:95.200000pt;}
.fs0_c00123{font-size:121.333333pt;}
.y0_c00123{bottom:0.000000pt;}
.y82_c00123{bottom:98.640000pt;}
.y81_c00123{bottom:113.520000pt;}
.y7f_c00123{bottom:138.600864pt;}
.y7e_c00123{bottom:139.260512pt;}
.y7d_c00123{bottom:139.663056pt;}
.y7c_c00123{bottom:139.928592pt;}
.y7b_c00123{bottom:140.377392pt;}
.y7a_c00123{bottom:140.691984pt;}
.y79_c00123{bottom:141.025552pt;}
.y78_c00123{bottom:141.527216pt;}
.y77_c00123{bottom:142.053936pt;}
.y76_c00123{bottom:142.503568pt;}
.y75_c00123{bottom:142.774304pt;}
.y74_c00123{bottom:143.085424pt;}
.y73_c00123{bottom:143.280000pt;}
.y72_c00123{bottom:159.092931pt;}
.y71_c00123{bottom:159.455960pt;}
.y70_c00123{bottom:159.896680pt;}
.y6f_c00123{bottom:160.457464pt;}
.y6e_c00123{bottom:160.755533pt;}
.y6d_c00123{bottom:161.747573pt;}
.y6c_c00123{bottom:162.080232pt;}
.y6b_c00123{bottom:162.362341pt;}
.y6a_c00123{bottom:163.004325pt;}
.y69_c00123{bottom:163.330208pt;}
.y68_c00123{bottom:163.689224pt;}
.y67_c00123{bottom:163.920000pt;}
.y66_c00123{bottom:179.448000pt;}
.y65_c00123{bottom:179.862667pt;}
.y64_c00123{bottom:180.304000pt;}
.y63_c00123{bottom:180.557333pt;}
.y62_c00123{bottom:181.064000pt;}
.y61_c00123{bottom:181.280000pt;}
.y60_c00123{bottom:181.508000pt;}
.y5f_c00123{bottom:182.829333pt;}
.y5e_c00123{bottom:183.038667pt;}
.y5d_c00123{bottom:183.606667pt;}
.y5c_c00123{bottom:183.845333pt;}
.y5b_c00123{bottom:184.081333pt;}
.y80_c00123{bottom:190.452000pt;}
.y5a_c00123{bottom:200.314667pt;}
.y59_c00123{bottom:200.544000pt;}
.y58_c00123{bottom:200.837333pt;}
.y57_c00123{bottom:200.980000pt;}
.y56_c00123{bottom:201.116000pt;}
.y55_c00123{bottom:201.546667pt;}
.y54_c00123{bottom:201.826667pt;}
.y53_c00123{bottom:202.737333pt;}
.y52_c00123{bottom:203.214667pt;}
.y51_c00123{bottom:203.376000pt;}
.y50_c00123{bottom:203.569333pt;}
.y4f_c00123{bottom:204.288000pt;}
.y4e_c00123{bottom:204.481333pt;}
.y4d_c00123{bottom:220.008000pt;}
.y4c_c00123{bottom:220.420000pt;}
.y4b_c00123{bottom:220.578667pt;}
.y4a_c00123{bottom:221.293333pt;}
.y49_c00123{bottom:222.190667pt;}
.y48_c00123{bottom:222.417333pt;}
.y47_c00123{bottom:223.174667pt;}
.y46_c00123{bottom:223.918667pt;}
.y45_c00123{bottom:224.398667pt;}
.y44_c00123{bottom:240.409333pt;}
.y43_c00123{bottom:240.778667pt;}
.y42_c00123{bottom:240.949333pt;}
.y41_c00123{bottom:241.372000pt;}
.y40_c00123{bottom:241.602667pt;}
.y3f_c00123{bottom:241.977333pt;}
.y3e_c00123{bottom:243.069333pt;}
.y3d_c00123{bottom:243.510667pt;}
.y3c_c00123{bottom:243.870667pt;}
.y3b_c00123{bottom:244.560000pt;}
.y3a_c00123{bottom:260.860000pt;}
.y39_c00123{bottom:261.062667pt;}
.y38_c00123{bottom:261.380000pt;}
.y37_c00123{bottom:262.124000pt;}
.y36_c00123{bottom:262.364000pt;}
.y35_c00123{bottom:262.606667pt;}
.y34_c00123{bottom:262.770667pt;}
.y33_c00123{bottom:263.174667pt;}
.y32_c00123{bottom:263.321333pt;}
.y31_c00123{bottom:263.666667pt;}
.y30_c00123{bottom:263.848000pt;}
.y2f_c00123{bottom:264.089333pt;}
.y2e_c00123{bottom:264.480000pt;}
.y2d_c00123{bottom:281.186667pt;}
.y2c_c00123{bottom:281.382667pt;}
.y2b_c00123{bottom:281.853333pt;}
.y2a_c00123{bottom:282.086667pt;}
.y29_c00123{bottom:282.722667pt;}
.y28_c00123{bottom:283.425333pt;}
.y27_c00123{bottom:283.670667pt;}
.y26_c00123{bottom:284.138667pt;}
.y25_c00123{bottom:284.396000pt;}
.y24_c00123{bottom:284.642667pt;}
.y23_c00123{bottom:285.120000pt;}
.y22_c00123{bottom:301.737333pt;}
.y21_c00123{bottom:302.309333pt;}
.y20_c00123{bottom:302.502667pt;}
.y1f_c00123{bottom:302.762667pt;}
.y1e_c00123{bottom:303.070667pt;}
.y1d_c00123{bottom:303.176000pt;}
.y1c_c00123{bottom:303.458667pt;}
.y1b_c00123{bottom:303.557333pt;}
.y1a_c00123{bottom:303.984000pt;}
.y19_c00123{bottom:304.132000pt;}
.y18_c00123{bottom:304.318667pt;}
.y17_c00123{bottom:304.560000pt;}
.y16_c00123{bottom:323.924000pt;}
.y15_c00123{bottom:343.650667pt;}
.y14_c00123{bottom:369.565333pt;}
.y13_c00123{bottom:389.377333pt;}
.y12_c00123{bottom:410.584000pt;}
.y11_c00123{bottom:429.924000pt;}
.y10_c00123{bottom:450.109333pt;}
.yf_c00123{bottom:470.746667pt;}
.ye_c00123{bottom:491.546667pt;}
.yd_c00123{bottom:511.944000pt;}
.yc_c00123{bottom:532.773333pt;}
.yb_c00123{bottom:552.933333pt;}
.ya_c00123{bottom:573.573333pt;}
.y9_c00123{bottom:593.706667pt;}
.y8_c00123{bottom:614.125333pt;}
.y7_c00123{bottom:634.593333pt;}
.y6_c00123{bottom:654.742667pt;}
.y5_c00123{bottom:675.386667pt;}
.y4_c00123{bottom:695.945333pt;}
.y3_c00123{bottom:715.868000pt;}
.y2_c00123{bottom:736.266667pt;}
.y1_c00123{bottom:779.040000pt;}
.hc_c00123{height:55.066667pt;}
.hf_c00123{height:55.072063pt;}
.h4_c00123{height:57.866667pt;}
.h3_c00123{height:58.800000pt;}
.hd_c00123{height:60.666667pt;}
.h6_c00123{height:61.600000pt;}
.hb_c00123{height:62.533333pt;}
.h10_c00123{height:62.537836pt;}
.h7_c00123{height:63.466667pt;}
.h5_c00123{height:64.400000pt;}
.h8_c00123{height:65.333333pt;}
.he_c00123{height:66.266667pt;}
.ha_c00123{height:67.200000pt;}
.h9_c00123{height:68.133333pt;}
.h11_c00123{height:79.333333pt;}
.h12_c00123{height:95.200000pt;}
.h2_c00123{height:121.333333pt;}
.h0_c00123{height:896.400000pt;}
.h1_c00123{height:896.666667pt;}
.w0_c00123{width:601.680000pt;}
.w1_c00123{width:602.000000pt;}
.x0_c00123{left:0.000000pt;}
.x3_c00123{left:119.040000pt;}
.x16_c00123{left:120.480000pt;}
.x71_c00123{left:122.160000pt;}
.x4_c00123{left:137.040000pt;}
.xa2_c00123{left:138.833333pt;}
.x20_c00123{left:140.400000pt;}
.xa9_c00123{left:141.456000pt;}
.x33_c00123{left:144.480000pt;}
.x3f_c00123{left:145.920000pt;}
.x46_c00123{left:149.040000pt;}
.x72_c00123{left:151.680000pt;}
.x82_c00123{left:152.640000pt;}
.x75_c00123{left:155.280000pt;}
.x89_c00123{left:156.240000pt;}
.x28_c00123{left:157.200000pt;}
.x36_c00123{left:161.520000pt;}
.xad_c00123{left:163.764000pt;}
.x17_c00123{left:165.600000pt;}
.x4e_c00123{left:167.040000pt;}
.xd_c00123{left:169.440000pt;}
.x29_c00123{left:174.240000pt;}
.x34_c00123{left:179.040000pt;}
.x5_c00123{left:181.200000pt;}
.x40_c00123{left:183.120000pt;}
.x7b_c00123{left:185.760000pt;}
.xae_c00123{left:187.041333pt;}
.x9a_c00123{left:189.961333pt;}
.x21_c00123{left:191.280000pt;}
.x93_c00123{left:193.801333pt;}
.x54_c00123{left:198.480000pt;}
.xe_c00123{left:200.400000pt;}
.x47_c00123{left:202.560000pt;}
.x35_c00123{left:204.480000pt;}
.x7c_c00123{left:206.640000pt;}
.x76_c00123{left:208.560000pt;}
.x8a_c00123{left:209.760000pt;}
.x83_c00123{left:211.680000pt;}
.x4f_c00123{left:213.360000pt;}
.x6_c00123{left:216.000000pt;}
.x5a_c00123{left:218.880000pt;}
.x22_c00123{left:220.320000pt;}
.xa3_c00123{left:221.633333pt;}
.x41_c00123{left:222.720000pt;}
.x48_c00123{left:224.160000pt;}
.x6b_c00123{left:225.600000pt;}
.x2a_c00123{left:231.360000pt;}
.x37_c00123{left:233.520000pt;}
.x64_c00123{left:236.400000pt;}
.x50_c00123{left:239.040000pt;}
.x18_c00123{left:241.680000pt;}
.xf_c00123{left:245.040000pt;}
.x7_c00123{left:246.480000pt;}
.x84_c00123{left:251.040000pt;}
.x38_c00123{left:252.240000pt;}
.x5b_c00123{left:257.760000pt;}
.x55_c00123{left:259.680000pt;}
.x65_c00123{left:261.120000pt;}
.x73_c00123{left:262.320000pt;}
.x2b_c00123{left:264.960000pt;}
.x94_c00123{left:266.281333pt;}
.x62_c00123{left:268.080000pt;}
.x1_c00123{left:270.000000pt;}
.x7d_c00123{left:272.880000pt;}
.x39_c00123{left:275.040000pt;}
.x49_c00123{left:276.720000pt;}
.x90_c00123{left:278.545333pt;}
.x5c_c00123{left:279.840000pt;}
.x19_c00123{left:280.800000pt;}
.x8b_c00123{left:286.560000pt;}
.x95_c00123{left:290.758667pt;}
.x10_c00123{left:291.840000pt;}
.x56_c00123{left:295.680000pt;}
.x3a_c00123{left:297.840000pt;}
.x85_c00123{left:300.960000pt;}
.x1a_c00123{left:302.640000pt;}
.x42_c00123{left:305.280000pt;}
.x8c_c00123{left:307.680000pt;}
.x6c_c00123{left:309.600000pt;}
.x98_c00123{left:311.646667pt;}
.x8_c00123{left:315.600000pt;}
.x23_c00123{left:317.040000pt;}
.x91_c00123{left:318.868000pt;}
.x77_c00123{left:323.040000pt;}
.x2_c00123{left:325.200000pt;}
.x66_c00123{left:326.640000pt;}
.x1b_c00123{left:329.040000pt;}
.x9_c00123{left:333.840000pt;}
.x2c_c00123{left:335.040000pt;}
.xaa_c00123{left:336.346667pt;}
.x6d_c00123{left:337.920000pt;}
.x7e_c00123{left:340.080000pt;}
.x5d_c00123{left:343.920000pt;}
.x11_c00123{left:345.600000pt;}
.xaf_c00123{left:347.669333pt;}
.x51_c00123{left:351.600000pt;}
.x24_c00123{left:353.280000pt;}
.x2d_c00123{left:354.960000pt;}
.x67_c00123{left:356.400000pt;}
.x96_c00123{left:361.069333pt;}
.xa4_c00123{left:362.504000pt;}
.x86_c00123{left:363.600000pt;}
.x7f_c00123{left:364.800000pt;}
.x3b_c00123{left:368.160000pt;}
.x25_c00123{left:369.360000pt;}
.xab_c00123{left:373.296000pt;}
.x63_c00123{left:374.640000pt;}
.x4a_c00123{left:376.080000pt;}
.x5e_c00123{left:378.240000pt;}
.x6e_c00123{left:379.440000pt;}
.x68_c00123{left:383.280000pt;}
.x12_c00123{left:386.400000pt;}
.x3c_c00123{left:387.840000pt;}
.xa_c00123{left:392.640000pt;}
.x8d_c00123{left:396.480000pt;}
.x6f_c00123{left:400.560000pt;}
.x2e_c00123{left:402.000000pt;}
.x80_c00123{left:402.960000pt;}
.x9e_c00123{left:404.021333pt;}
.x5f_c00123{left:408.720000pt;}
.x78_c00123{left:411.600000pt;}
.x1c_c00123{left:412.560000pt;}
.x4b_c00123{left:414.480000pt;}
.xb_c00123{left:415.440000pt;}
.x9b_c00123{left:416.761333pt;}
.x57_c00123{left:419.520000pt;}
.xb0_c00123{left:423.052000pt;}
.x8e_c00123{left:424.080000pt;}
.xa5_c00123{left:427.117333pt;}
.x3d_c00123{left:429.360000pt;}
.x1d_c00123{left:430.560000pt;}
.x13_c00123{left:433.680000pt;}
.x43_c00123{left:435.840000pt;}
.x2f_c00123{left:437.040000pt;}
.x9c_c00123{left:439.830667pt;}
.x92_c00123{left:442.709333pt;}
.x52_c00123{left:445.920000pt;}
.x97_c00123{left:447.958667pt;}
.x58_c00123{left:450.720000pt;}
.xa6_c00123{left:452.513333pt;}
.x3e_c00123{left:454.080000pt;}
.x1e_c00123{left:455.280000pt;}
.xb1_c00123{left:456.597333pt;}
.x60_c00123{left:459.360000pt;}
.x81_c00123{left:460.320000pt;}
.x79_c00123{left:462.720000pt;}
.x99_c00123{left:466.005333pt;}
.x8f_c00123{left:468.000000pt;}
.x9f_c00123{left:469.042667pt;}
.x4c_c00123{left:470.400000pt;}
.xac_c00123{left:473.376000pt;}
.x53_c00123{left:474.720000pt;}
.xa7_c00123{left:479.200000pt;}
.x9d_c00123{left:482.052000pt;}
.xa0_c00123{left:483.469333pt;}
.xc_c00123{left:485.280000pt;}
.x7a_c00123{left:487.440000pt;}
.x30_c00123{left:488.400000pt;}
.x26_c00123{left:489.840000pt;}
.x87_c00123{left:492.000000pt;}
.x69_c00123{left:494.160000pt;}
.x59_c00123{left:498.480000pt;}
.xa8_c00123{left:500.042667pt;}
.x14_c00123{left:501.120000pt;}
.x31_c00123{left:504.720000pt;}
.x1f_c00123{left:508.800000pt;}
.xb2_c00123{left:511.568000pt;}
.x44_c00123{left:513.120000pt;}
.x61_c00123{left:514.320000pt;}
.x88_c00123{left:515.760000pt;}
.x74_c00123{left:519.840000pt;}
.xa1_c00123{left:520.960000pt;}
.x32_c00123{left:524.640000pt;}
.x4d_c00123{left:526.080000pt;}
.x70_c00123{left:527.040000pt;}
.x45_c00123{left:528.240000pt;}
.x6a_c00123{left:531.360000pt;}
.x27_c00123{left:533.040000pt;}
.x15_c00123{left:535.920000pt;}
.xb5_c00123{left:560.160000pt;}
.xb3_c00123{left:566.880000pt;}
.xb4_c00123{left:581.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_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_ef4e99a7aa2876b3106553d3.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;}
.m6f_c00124{transform:matrix(0.008090,0.000089,-0.002750,0.249985,0,0);-ms-transform:matrix(0.008090,0.000089,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.008090,0.000089,-0.002750,0.249985,0,0);}
.m7a_c00124{transform:matrix(0.016429,0.000181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016429,0.000181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016429,0.000181,-0.002750,0.249985,0,0);}
.m52_c00124{transform:matrix(0.019779,0.000158,-0.002000,0.249992,0,0);-ms-transform:matrix(0.019779,0.000158,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.019779,0.000158,-0.002000,0.249992,0,0);}
.mc4_c00124{transform:matrix(0.093688,0.001124,-0.003000,0.249982,0,0);-ms-transform:matrix(0.093688,0.001124,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.093688,0.001124,-0.003000,0.249982,0,0);}
.m0_c00124{transform:matrix(0.105074,0.006422,-0.015252,0.249534,0,0);-ms-transform:matrix(0.105074,0.006422,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.105074,0.006422,-0.015252,0.249534,0,0);}
.m70_c00124{transform:matrix(0.109393,0.001203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.109393,0.001203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.109393,0.001203,-0.002750,0.249985,0,0);}
.m66_c00124{transform:matrix(0.115333,0.001269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.115333,0.001269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.115333,0.001269,-0.002750,0.249985,0,0);}
.mbf_c00124{transform:matrix(0.126701,0.001520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.126701,0.001520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.126701,0.001520,-0.003000,0.249982,0,0);}
.m6d_c00124{transform:matrix(0.133662,0.001470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133662,0.001470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133662,0.001470,-0.002750,0.249985,0,0);}
.mee_c00124{transform:matrix(0.138505,0.001662,-0.003000,0.249982,0,0);-ms-transform:matrix(0.138505,0.001662,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.138505,0.001662,-0.003000,0.249982,0,0);}
.mec_c00124{transform:matrix(0.142550,0.001711,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142550,0.001711,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142550,0.001711,-0.003000,0.249982,0,0);}
.mf7_c00124{transform:matrix(0.144790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144790,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{transform:matrix(0.146895,0.001175,-0.002000,0.249992,0,0);-ms-transform:matrix(0.146895,0.001175,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.146895,0.001175,-0.002000,0.249992,0,0);}
.m55_c00124{transform:matrix(0.147431,0.001622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147431,0.001622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147431,0.001622,-0.002750,0.249985,0,0);}
.m79_c00124{transform:matrix(0.148231,0.001631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148231,0.001631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148231,0.001631,-0.002750,0.249985,0,0);}
.me_c00124{transform:matrix(0.151120,0.001209,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151120,0.001209,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151120,0.001209,-0.002000,0.249992,0,0);}
.m8a_c00124{transform:matrix(0.153226,0.001685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153226,0.001685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153226,0.001685,-0.002750,0.249985,0,0);}
.m57_c00124{transform:matrix(0.153946,0.001693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153946,0.001693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153946,0.001693,-0.002750,0.249985,0,0);}
.mb9_c00124{transform:matrix(0.154449,0.001853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154449,0.001853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154449,0.001853,-0.003000,0.249982,0,0);}
.m110_c00124{transform:matrix(0.155202,0.002018,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155202,0.002018,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155202,0.002018,-0.003250,0.249979,0,0);}
.m82_c00124{transform:matrix(0.155326,0.001709,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155326,0.001709,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155326,0.001709,-0.002750,0.249985,0,0);}
.mb5_c00124{transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155579,0.001867,-0.003000,0.249982,0,0);}
.mc3_c00124{transform:matrix(0.155679,0.001868,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155679,0.001868,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155679,0.001868,-0.003000,0.249982,0,0);}
.mf1_c00124{transform:matrix(0.155979,0.001872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155979,0.001872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155979,0.001872,-0.003000,0.249982,0,0);}
.m22_c00124{transform:matrix(0.156200,0.001250,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156200,0.001250,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156200,0.001250,-0.002000,0.249992,0,0);}
.m97_c00124{transform:matrix(0.156286,0.001719,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156286,0.001719,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156286,0.001719,-0.002750,0.249985,0,0);}
.m7b_c00124{transform:matrix(0.157670,0.001734,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157670,0.001734,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157670,0.001734,-0.002750,0.249985,0,0);}
.m15_c00124{transform:matrix(0.159390,0.001275,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159390,0.001275,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159390,0.001275,-0.002000,0.249992,0,0);}
.m2e_c00124{transform:matrix(0.159575,0.001277,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159575,0.001277,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159575,0.001277,-0.002000,0.249992,0,0);}
.m42_c00124{transform:matrix(0.159720,0.001278,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159720,0.001278,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159720,0.001278,-0.002000,0.249992,0,0);}
.mb1_c00124{transform:matrix(0.163218,0.001959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163218,0.001959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163218,0.001959,-0.003000,0.249982,0,0);}
.m56_c00124{transform:matrix(0.163385,0.001797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163385,0.001797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163385,0.001797,-0.002750,0.249985,0,0);}
.m13_c00124{transform:matrix(0.163985,0.001312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163985,0.001312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163985,0.001312,-0.002000,0.249992,0,0);}
.ma2_c00124{transform:matrix(0.164435,0.001809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164435,0.001809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164435,0.001809,-0.002750,0.249985,0,0);}
.mbc_c00124{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);}
.me6_c00124{transform:matrix(0.165798,0.001990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165798,0.001990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165798,0.001990,-0.003000,0.249982,0,0);}
.mad_c00124{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);}
.m10e_c00124{transform:matrix(0.166681,0.002167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166681,0.002167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166681,0.002167,-0.003250,0.249979,0,0);}
.m115_c00124{transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166686,0.002167,-0.003250,0.249979,0,0);}
.m2f_c00124{transform:matrix(0.166850,0.001335,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166850,0.001335,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166850,0.001335,-0.002000,0.249992,0,0);}
.mef_c00124{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);}
.m96_c00124{transform:matrix(0.168610,0.001855,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168610,0.001855,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168610,0.001855,-0.002750,0.249985,0,0);}
.m4b_c00124{transform:matrix(0.170170,0.001361,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170170,0.001361,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170170,0.001361,-0.002000,0.249992,0,0);}
.m3d_c00124{transform:matrix(0.170215,0.001362,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170215,0.001362,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170215,0.001362,-0.002000,0.249992,0,0);}
.m25_c00124{transform:matrix(0.170370,0.001363,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170370,0.001363,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170370,0.001363,-0.002000,0.249992,0,0);}
.ma1_c00124{transform:matrix(0.170465,0.001875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170465,0.001875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170465,0.001875,-0.002750,0.249985,0,0);}
.m126_c00124{transform:matrix(0.170812,0.003075,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170812,0.003075,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170812,0.003075,-0.004499,0.249960,0,0);}
.m37_c00124{transform:matrix(0.171650,0.001373,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171650,0.001373,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171650,0.001373,-0.002000,0.249992,0,0);}
.m86_c00124{transform:matrix(0.172875,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172875,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172875,0.001902,-0.002750,0.249985,0,0);}
.ma7_c00124{transform:matrix(0.173335,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173335,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173335,0.001907,-0.002750,0.249985,0,0);}
.ma9_c00124{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);}
.m10c_c00124{transform:matrix(0.173525,0.002256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173525,0.002256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173525,0.002256,-0.003250,0.249979,0,0);}
.m4d_c00124{transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173844,0.001391,-0.002000,0.249992,0,0);}
.m1f_c00124{transform:matrix(0.173979,0.001392,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173979,0.001392,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173979,0.001392,-0.002000,0.249992,0,0);}
.m113_c00124{transform:matrix(0.174045,0.002263,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174045,0.002263,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174045,0.002263,-0.003250,0.249979,0,0);}
.m103_c00124{transform:matrix(0.174327,0.002092,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174327,0.002092,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174327,0.002092,-0.003000,0.249982,0,0);}
.m5e_c00124{transform:matrix(0.174504,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174504,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174504,0.001920,-0.002750,0.249985,0,0);}
.mae_c00124{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);}
.m11d_c00124{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);}
.m8c_c00124{transform:matrix(0.175494,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175494,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175494,0.001930,-0.002750,0.249985,0,0);}
.mde_c00124{transform:matrix(0.175517,0.002106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175517,0.002106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175517,0.002106,-0.003000,0.249982,0,0);}
.m8f_c00124{transform:matrix(0.175634,0.001932,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175634,0.001932,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175634,0.001932,-0.002750,0.249985,0,0);}
.mfd_c00124{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);}
.m5d_c00124{transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);}
.m5a_c00124{transform:matrix(0.176239,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176239,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176239,0.001939,-0.002750,0.249985,0,0);}
.m124_c00124{transform:matrix(0.176511,0.003177,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176511,0.003177,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176511,0.003177,-0.004499,0.249960,0,0);}
.m10_c00124{transform:matrix(0.176514,0.001412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176514,0.001412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176514,0.001412,-0.002000,0.249992,0,0);}
.m10d_c00124{transform:matrix(0.176655,0.002297,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176655,0.002297,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176655,0.002297,-0.003250,0.249979,0,0);}
.m90_c00124{transform:matrix(0.176754,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176754,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176754,0.001944,-0.002750,0.249985,0,0);}
.m30_c00124{transform:matrix(0.177204,0.001418,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177204,0.001418,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177204,0.001418,-0.002000,0.249992,0,0);}
.mc1_c00124{transform:matrix(0.177222,0.002127,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177222,0.002127,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177222,0.002127,-0.003000,0.249982,0,0);}
.m47_c00124{transform:matrix(0.177394,0.001419,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177394,0.001419,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177394,0.001419,-0.002000,0.249992,0,0);}
.ma3_c00124{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);}
.me0_c00124{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);}
.m10b_c00124{transform:matrix(0.178930,0.002326,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178930,0.002326,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178930,0.002326,-0.003250,0.249979,0,0);}
.m1a_c00124{transform:matrix(0.179139,0.001433,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179139,0.001433,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179139,0.001433,-0.002000,0.249992,0,0);}
.m33_c00124{transform:matrix(0.179334,0.001435,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179334,0.001435,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179334,0.001435,-0.002000,0.249992,0,0);}
.m1c_c00124{transform:matrix(0.179409,0.001435,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179409,0.001435,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179409,0.001435,-0.002000,0.249992,0,0);}
.m1b_c00124{transform:matrix(0.179644,0.001437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179644,0.001437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179644,0.001437,-0.002000,0.249992,0,0);}
.m77_c00124{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);}
.m27_c00124{transform:matrix(0.179694,0.001438,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179694,0.001438,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179694,0.001438,-0.002000,0.249992,0,0);}
.maa_c00124{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);}
.m71_c00124{transform:matrix(0.180989,0.001991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180989,0.001991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180989,0.001991,-0.002750,0.249985,0,0);}
.m12d_c00124{transform:matrix(0.181106,0.003260,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181106,0.003260,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181106,0.003260,-0.004499,0.249960,0,0);}
.mc_c00124{transform:matrix(0.181364,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181364,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181364,0.001451,-0.002000,0.249992,0,0);}
.mdd_c00124{transform:matrix(0.181487,0.002178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181487,0.002178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181487,0.002178,-0.003000,0.249982,0,0);}
.m35_c00124{transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);}
.me1_c00124{transform:matrix(0.181937,0.002183,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181937,0.002183,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181937,0.002183,-0.003000,0.249982,0,0);}
.m8e_c00124{transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181999,0.002002,-0.002750,0.249985,0,0);}
.m88_c00124{transform:matrix(0.182139,0.002004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182139,0.002004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182139,0.002004,-0.002750,0.249985,0,0);}
.m16_c00124{transform:matrix(0.182389,0.001459,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182389,0.001459,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182389,0.001459,-0.002000,0.249992,0,0);}
.m46_c00124{transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);}
.me4_c00124{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);}
.m81_c00124{transform:matrix(0.182929,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182929,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182929,0.002012,-0.002750,0.249985,0,0);}
.m142_c00124{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);}
.m2d_c00124{transform:matrix(0.183189,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183189,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183189,0.001466,-0.002000,0.249992,0,0);}
.mc6_c00124{transform:matrix(0.183242,0.002199,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183242,0.002199,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183242,0.002199,-0.003000,0.249982,0,0);}
.mc7_c00124{transform:matrix(0.183907,0.002207,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183907,0.002207,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183907,0.002207,-0.003000,0.249982,0,0);}
.m3e_c00124{transform:matrix(0.184029,0.001472,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184029,0.001472,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184029,0.001472,-0.002000,0.249992,0,0);}
.mb6_c00124{transform:matrix(0.184327,0.002212,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184327,0.002212,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184327,0.002212,-0.003000,0.249982,0,0);}
.m12b_c00124{transform:matrix(0.184455,0.003320,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184455,0.003320,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184455,0.003320,-0.004499,0.249960,0,0);}
.med_c00124{transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);}
.m98_c00124{transform:matrix(0.184704,0.002032,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184704,0.002032,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184704,0.002032,-0.002750,0.249985,0,0);}
.mfb_c00124{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);}
.m80_c00124{transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);}
.m11a_c00124{transform:matrix(0.185844,0.002416,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185844,0.002416,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185844,0.002416,-0.003250,0.249979,0,0);}
.ma4_c00124{transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);}
.mcc_c00124{transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186287,0.002235,-0.003000,0.249982,0,0);}
.m51_c00124{transform:matrix(0.186424,0.001491,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186424,0.001491,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186424,0.001491,-0.002000,0.249992,0,0);}
.m69_c00124{transform:matrix(0.186429,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186429,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186429,0.002051,-0.002750,0.249985,0,0);}
.m34_c00124{transform:matrix(0.186459,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186459,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186459,0.001492,-0.002000,0.249992,0,0);}
.m38_c00124{transform:matrix(0.186774,0.001494,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186774,0.001494,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186774,0.001494,-0.002000,0.249992,0,0);}
.mfe_c00124{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);}
.mb8_c00124{transform:matrix(0.187272,0.002247,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187272,0.002247,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187272,0.002247,-0.003000,0.249982,0,0);}
.m1e_c00124{transform:matrix(0.187664,0.001501,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187664,0.001501,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187664,0.001501,-0.002000,0.249992,0,0);}
.m21_c00124{transform:matrix(0.187954,0.001504,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187954,0.001504,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187954,0.001504,-0.002000,0.249992,0,0);}
.mb3_c00124{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);}
.m32_c00124{transform:matrix(0.188629,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188629,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188629,0.001509,-0.002000,0.249992,0,0);}
.m114_c00124{transform:matrix(0.188814,0.002455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188814,0.002455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188814,0.002455,-0.003250,0.249979,0,0);}
.m13c_c00124{transform:matrix(0.188819,0.003399,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188819,0.003399,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188819,0.003399,-0.004499,0.249960,0,0);}
.maf_c00124{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);}
.m134_c00124{transform:matrix(0.189524,0.003411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189524,0.003411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189524,0.003411,-0.004499,0.249960,0,0);}
.m18_c00124{transform:matrix(0.189894,0.001519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189894,0.001519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189894,0.001519,-0.002000,0.249992,0,0);}
.m111_c00124{transform:matrix(0.190079,0.002471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190079,0.002471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190079,0.002471,-0.003250,0.249979,0,0);}
.m10f_c00124{transform:matrix(0.190109,0.002471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190109,0.002471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190109,0.002471,-0.003250,0.249979,0,0);}
.m91_c00124{transform:matrix(0.190208,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190208,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190208,0.002092,-0.002750,0.249985,0,0);}
.m73_c00124{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);}
.m83_c00124{transform:matrix(0.190618,0.002097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190618,0.002097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190618,0.002097,-0.002750,0.249985,0,0);}
.m89_c00124{transform:matrix(0.190638,0.002097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190638,0.002097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190638,0.002097,-0.002750,0.249985,0,0);}
.m63_c00124{transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);}
.m41_c00124{transform:matrix(0.190954,0.001528,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190954,0.001528,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190954,0.001528,-0.002000,0.249992,0,0);}
.m100_c00124{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);}
.ma0_c00124{transform:matrix(0.191683,0.002109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191683,0.002109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191683,0.002109,-0.002750,0.249985,0,0);}
.mbe_c00124{transform:matrix(0.191761,0.002301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191761,0.002301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191761,0.002301,-0.003000,0.249982,0,0);}
.m118_c00124{transform:matrix(0.191974,0.002496,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191974,0.002496,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191974,0.002496,-0.003250,0.249979,0,0);}
.m9b_c00124{transform:matrix(0.192043,0.002112,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192043,0.002112,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192043,0.002112,-0.002750,0.249985,0,0);}
.m12_c00124{transform:matrix(0.192404,0.001539,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192404,0.001539,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192404,0.001539,-0.002000,0.249992,0,0);}
.m2b_c00124{transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192614,0.001541,-0.002000,0.249992,0,0);}
.m76_c00124{transform:matrix(0.192643,0.002119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192643,0.002119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192643,0.002119,-0.002750,0.249985,0,0);}
.m36_c00124{transform:matrix(0.192719,0.001542,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192719,0.001542,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192719,0.001542,-0.002000,0.249992,0,0);}
.mea_c00124{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);}
.mf9_c00124{transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);}
.m20_c00124{transform:matrix(0.194234,0.001554,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194234,0.001554,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194234,0.001554,-0.002000,0.249992,0,0);}
.m8b_c00124{transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);}
.m11_c00124{transform:matrix(0.195724,0.001566,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195724,0.001566,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195724,0.001566,-0.002000,0.249992,0,0);}
.m102_c00124{transform:matrix(0.196496,0.002358,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196496,0.002358,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196496,0.002358,-0.003000,0.249982,0,0);}
.m10a_c00124{transform:matrix(0.196613,0.002556,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196613,0.002556,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196613,0.002556,-0.003250,0.249979,0,0);}
.m9c_c00124{transform:matrix(0.197108,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197108,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197108,0.002168,-0.002750,0.249985,0,0);}
.m135_c00124{transform:matrix(0.197183,0.003549,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197183,0.003549,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197183,0.003549,-0.004499,0.249960,0,0);}
.m45_c00124{transform:matrix(0.197209,0.001578,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197209,0.001578,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197209,0.001578,-0.002000,0.249992,0,0);}
.m108_c00124{transform:matrix(0.197381,0.002369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197381,0.002369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197381,0.002369,-0.003000,0.249982,0,0);}
.m8d_c00124{transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);}
.m4f_c00124{transform:matrix(0.197439,0.001580,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197439,0.001580,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197439,0.001580,-0.002000,0.249992,0,0);}
.m24_c00124{transform:matrix(0.197934,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197934,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197934,0.001583,-0.002000,0.249992,0,0);}
.m44_c00124{transform:matrix(0.198089,0.001585,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198089,0.001585,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198089,0.001585,-0.002000,0.249992,0,0);}
.m54_c00124{transform:matrix(0.198213,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198213,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198213,0.002180,-0.002750,0.249985,0,0);}
.mdc_c00124{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);}
.m14_c00124{transform:matrix(0.198304,0.001586,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198304,0.001586,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198304,0.001586,-0.002000,0.249992,0,0);}
.me7_c00124{transform:matrix(0.198461,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198461,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198461,0.002382,-0.003000,0.249982,0,0);}
.m11e_c00124{transform:matrix(0.198613,0.002582,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198613,0.002582,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198613,0.002582,-0.003250,0.249979,0,0);}
.m143_c00124{transform:matrix(0.198708,0.003577,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198708,0.003577,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198708,0.003577,-0.004499,0.249960,0,0);}
.m26_c00124{transform:matrix(0.198709,0.001590,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198709,0.001590,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198709,0.001590,-0.002000,0.249992,0,0);}
.ma8_c00124{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);}
.md7_c00124{transform:matrix(0.198831,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198831,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198831,0.002386,-0.003000,0.249982,0,0);}
.m107_c00124{transform:matrix(0.198871,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198871,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198871,0.002386,-0.003000,0.249982,0,0);}
.me2_c00124{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);}
.m11b_c00124{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);}
.me3_c00124{transform:matrix(0.199151,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199151,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199151,0.002390,-0.003000,0.249982,0,0);}
.mc5_c00124{transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);}
.me8_c00124{transform:matrix(0.199416,0.002393,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199416,0.002393,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199416,0.002393,-0.003000,0.249982,0,0);}
.mb4_c00124{transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);}
.mdf_c00124{transform:matrix(0.199826,0.002398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199826,0.002398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199826,0.002398,-0.003000,0.249982,0,0);}
.m75_c00124{transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199938,0.002199,-0.002750,0.249985,0,0);}
.m3f_c00124{transform:matrix(0.199954,0.001600,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199954,0.001600,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199954,0.001600,-0.002000,0.249992,0,0);}
.m128_c00124{transform:matrix(0.200058,0.003601,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200058,0.003601,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200058,0.003601,-0.004499,0.249960,0,0);}
.m112_c00124{transform:matrix(0.200123,0.002602,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200123,0.002602,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200123,0.002602,-0.003250,0.249979,0,0);}
.mda_c00124{transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);}
.m58_c00124{transform:matrix(0.200908,0.002210,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200908,0.002210,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200908,0.002210,-0.002750,0.249985,0,0);}
.m2c_c00124{transform:matrix(0.202139,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202139,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202139,0.001617,-0.002000,0.249992,0,0);}
.m23_c00124{transform:matrix(0.202319,0.001619,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202319,0.001619,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202319,0.001619,-0.002000,0.249992,0,0);}
.m48_c00124{transform:matrix(0.202409,0.001619,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202409,0.001619,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202409,0.001619,-0.002000,0.249992,0,0);}
.m7d_c00124{transform:matrix(0.202513,0.002228,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202513,0.002228,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202513,0.002228,-0.002750,0.249985,0,0);}
.m5c_c00124{transform:matrix(0.202538,0.002228,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202538,0.002228,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202538,0.002228,-0.002750,0.249985,0,0);}
.m31_c00124{transform:matrix(0.202644,0.001621,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202644,0.001621,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202644,0.001621,-0.002000,0.249992,0,0);}
.m3a_c00124{transform:matrix(0.202829,0.001623,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202829,0.001623,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202829,0.001623,-0.002000,0.249992,0,0);}
.m129_c00124{transform:matrix(0.203697,0.003667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203697,0.003667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203697,0.003667,-0.004499,0.249960,0,0);}
.mf8_c00124{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);}
.m17_c00124{transform:matrix(0.204443,0.001636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204443,0.001636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204443,0.001636,-0.002000,0.249992,0,0);}
.mcf_c00124{transform:matrix(0.204845,0.002458,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204845,0.002458,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204845,0.002458,-0.003000,0.249982,0,0);}
.mf_c00124{transform:matrix(0.205278,0.001642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205278,0.001642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205278,0.001642,-0.002000,0.249992,0,0);}
.ma5_c00124{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);}
.m117_c00124{transform:matrix(0.207147,0.002693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207147,0.002693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207147,0.002693,-0.003250,0.249979,0,0);}
.m68_c00124{transform:matrix(0.207292,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207292,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207292,0.002280,-0.002750,0.249985,0,0);}
.m9d_c00124{transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);}
.m120_c00124{transform:matrix(0.207652,0.002699,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207652,0.002699,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207652,0.002699,-0.003250,0.249979,0,0);}
.m99_c00124{transform:matrix(0.208337,0.002292,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208337,0.002292,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208337,0.002292,-0.002750,0.249985,0,0);}
.m12f_c00124{transform:matrix(0.208361,0.003751,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208361,0.003751,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208361,0.003751,-0.004499,0.249960,0,0);}
.m19_c00124{transform:matrix(0.208798,0.001670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208798,0.001670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208798,0.001670,-0.002000,0.249992,0,0);}
.m84_c00124{transform:matrix(0.208842,0.002297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208842,0.002297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208842,0.002297,-0.002750,0.249985,0,0);}
.mc2_c00124{transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);}
.m4c_c00124{transform:matrix(0.208998,0.001672,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208998,0.001672,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208998,0.001672,-0.002000,0.249992,0,0);}
.m9e_c00124{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);}
.m101_c00124{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);}
.m6b_c00124{transform:matrix(0.209307,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209307,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209307,0.002302,-0.002750,0.249985,0,0);}
.m138_c00124{transform:matrix(0.209476,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209476,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209476,0.003771,-0.004499,0.249960,0,0);}
.m29_c00124{transform:matrix(0.209818,0.001679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209818,0.001679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209818,0.001679,-0.002000,0.249992,0,0);}
.m13e_c00124{transform:matrix(0.209961,0.003779,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209961,0.003779,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209961,0.003779,-0.004499,0.249960,0,0);}
.m9f_c00124{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);}
.md6_c00124{transform:matrix(0.210875,0.002530,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210875,0.002530,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210875,0.002530,-0.003000,0.249982,0,0);}
.m50_c00124{transform:matrix(0.210923,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210923,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210923,0.001687,-0.002000,0.249992,0,0);}
.m136_c00124{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);}
.m6a_c00124{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);}
.m60_c00124{transform:matrix(0.211937,0.002331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211937,0.002331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211937,0.002331,-0.002750,0.249985,0,0);}
.m40_c00124{transform:matrix(0.212373,0.001699,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212373,0.001699,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212373,0.001699,-0.002000,0.249992,0,0);}
.md8_c00124{transform:matrix(0.212455,0.002549,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212455,0.002549,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212455,0.002549,-0.003000,0.249982,0,0);}
.m105_c00124{transform:matrix(0.213875,0.002566,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213875,0.002566,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213875,0.002566,-0.003000,0.249982,0,0);}
.m59_c00124{transform:matrix(0.214062,0.002355,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214062,0.002355,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214062,0.002355,-0.002750,0.249985,0,0);}
.m123_c00124{transform:matrix(0.214460,0.003860,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214460,0.003860,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214460,0.003860,-0.004499,0.249960,0,0);}
.m11f_c00124{transform:matrix(0.215767,0.002805,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215767,0.002805,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215767,0.002805,-0.003250,0.249979,0,0);}
.m95_c00124{transform:matrix(0.217697,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217697,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217697,0.002395,-0.002750,0.249985,0,0);}
.md0_c00124{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);}
.m12a_c00124{transform:matrix(0.218090,0.003926,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218090,0.003926,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218090,0.003926,-0.004499,0.249960,0,0);}
.mf4_c00124{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);}
.md_c00124{transform:matrix(0.219288,0.001754,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219288,0.001754,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219288,0.001754,-0.002000,0.249992,0,0);}
.m87_c00124{transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);}
.meb_c00124{transform:matrix(0.219504,0.002634,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219504,0.002634,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219504,0.002634,-0.003000,0.249982,0,0);}
.m133_c00124{transform:matrix(0.220404,0.003967,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220404,0.003967,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220404,0.003967,-0.004499,0.249960,0,0);}
.md1_c00124{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);}
.mc9_c00124{transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221059,0.002653,-0.003000,0.249982,0,0);}
.mac_c00124{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.mca_c00124{transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);}
.mf3_c00124{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);}
.mab_c00124{transform:matrix(0.222537,0.002448,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222537,0.002448,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222537,0.002448,-0.002750,0.249985,0,0);}
.m9a_c00124{transform:matrix(0.223251,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223251,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223251,0.002456,-0.002750,0.249985,0,0);}
.md2_c00124{transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);}
.md4_c00124{transform:matrix(0.224474,0.002694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224474,0.002694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224474,0.002694,-0.003000,0.249982,0,0);}
.mce_c00124{transform:matrix(0.224624,0.002695,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224624,0.002695,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224624,0.002695,-0.003000,0.249982,0,0);}
.m1d_c00124{transform:matrix(0.224868,0.001799,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224868,0.001799,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224868,0.001799,-0.002000,0.249992,0,0);}
.mb2_c00124{transform:matrix(0.225969,0.002712,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225969,0.002712,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225969,0.002712,-0.003000,0.249982,0,0);}
.m12c_c00124{transform:matrix(0.226823,0.004083,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226823,0.004083,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226823,0.004083,-0.004499,0.249960,0,0);}
.ma6_c00124{transform:matrix(0.227286,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227286,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227286,0.002500,-0.002750,0.249985,0,0);}
.m109_c00124{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);}
.m125_c00124{transform:matrix(0.228708,0.004117,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228708,0.004117,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228708,0.004117,-0.004499,0.249960,0,0);}
.m4e_c00124{transform:matrix(0.230148,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230148,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230148,0.001841,-0.002000,0.249992,0,0);}
.m132_c00124{transform:matrix(0.230268,0.004145,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230268,0.004145,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230268,0.004145,-0.004499,0.249960,0,0);}
.m131_c00124{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);}
.m104_c00124{transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);}
.m106_c00124{transform:matrix(0.232748,0.002793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232748,0.002793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232748,0.002793,-0.003000,0.249982,0,0);}
.m137_c00124{transform:matrix(0.233802,0.004208,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233802,0.004208,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233802,0.004208,-0.004499,0.249960,0,0);}
.md9_c00124{transform:matrix(0.234103,0.002809,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234103,0.002809,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234103,0.002809,-0.003000,0.249982,0,0);}
.mc0_c00124{transform:matrix(0.235988,0.002832,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235988,0.002832,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235988,0.002832,-0.003000,0.249982,0,0);}
.mf0_c00124{transform:matrix(0.236343,0.002836,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236343,0.002836,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236343,0.002836,-0.003000,0.249982,0,0);}
.m92_c00124{transform:matrix(0.236641,0.002603,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236641,0.002603,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236641,0.002603,-0.002750,0.249985,0,0);}
.mba_c00124{transform:matrix(0.237973,0.002856,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237973,0.002856,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237973,0.002856,-0.003000,0.249982,0,0);}
.mc8_c00124{transform:matrix(0.239098,0.002869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239098,0.002869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239098,0.002869,-0.003000,0.249982,0,0);}
.m141_c00124{transform:matrix(0.240301,0.004325,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240301,0.004325,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240301,0.004325,-0.004499,0.249960,0,0);}
.mf2_c00124{transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);}
.mbd_c00124{transform:matrix(0.243197,0.002918,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243197,0.002918,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243197,0.002918,-0.003000,0.249982,0,0);}
.m7f_c00124{transform:matrix(0.248965,0.002739,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248965,0.002739,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248965,0.002739,-0.002750,0.249985,0,0);}
.mcb_c00124{transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);}
.m53_c00124{transform:matrix(0.251630,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251630,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251630,0.002768,-0.002750,0.249985,0,0);}
.mcd_c00124{transform:matrix(0.253772,0.003045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253772,0.003045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253772,0.003045,-0.003000,0.249982,0,0);}
.m11c_c00124{transform:matrix(0.254553,0.003309,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254553,0.003309,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254553,0.003309,-0.003250,0.249979,0,0);}
.m119_c00124{transform:matrix(0.256878,0.003339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256878,0.003339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256878,0.003339,-0.003250,0.249979,0,0);}
.mb0_c00124{transform:matrix(0.258676,0.003104,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258676,0.003104,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258676,0.003104,-0.003000,0.249982,0,0);}
.mbb_c00124{transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);}
.m62_c00124{transform:matrix(0.259874,0.002859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259874,0.002859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259874,0.002859,-0.002750,0.249985,0,0);}
.m2a_c00124{transform:matrix(0.260387,0.002083,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260387,0.002083,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260387,0.002083,-0.002000,0.249992,0,0);}
.m39_c00124{transform:matrix(0.260972,0.002088,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260972,0.002088,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260972,0.002088,-0.002000,0.249992,0,0);}
.m5b_c00124{transform:matrix(0.262209,0.002884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262209,0.002884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262209,0.002884,-0.002750,0.249985,0,0);}
.m127_c00124{transform:matrix(0.262422,0.004724,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262422,0.004724,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262422,0.004724,-0.004499,0.249960,0,0);}
.md5_c00124{transform:matrix(0.263936,0.003167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263936,0.003167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263936,0.003167,-0.003000,0.249982,0,0);}
.m28_c00124{transform:matrix(0.269861,0.002159,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269861,0.002159,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269861,0.002159,-0.002000,0.249992,0,0);}
.md3_c00124{transform:matrix(0.271245,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271245,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271245,0.003255,-0.003000,0.249982,0,0);}
.mff_c00124{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m116_c00124{transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);}
.m4a_c00124{transform:matrix(0.278361,0.002227,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278361,0.002227,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278361,0.002227,-0.002000,0.249992,0,0);}
.m7c_c00124{transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);}
.mfa_c00124{transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);}
.me5_c00124{transform:matrix(0.283040,0.003396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283040,0.003396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283040,0.003396,-0.003000,0.249982,0,0);}
.me9_c00124{transform:matrix(0.288189,0.003458,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288189,0.003458,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288189,0.003458,-0.003000,0.249982,0,0);}
.m3b_c00124{transform:matrix(0.294016,0.002352,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294016,0.002352,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294016,0.002352,-0.002000,0.249992,0,0);}
.mf6_c00124{transform:matrix(0.294305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294305,0.000000,0.000000,0.250000,0,0);}
.mf5_c00124{transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.295802,0.003254,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295802,0.003254,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295802,0.003254,-0.002750,0.249985,0,0);}
.m6e_c00124{transform:matrix(0.296922,0.003266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296922,0.003266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296922,0.003266,-0.002750,0.249985,0,0);}
.m130_c00124{transform:matrix(0.296982,0.005346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296982,0.005346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296982,0.005346,-0.004499,0.249960,0,0);}
.m140_c00124{transform:matrix(0.297412,0.005353,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297412,0.005353,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297412,0.005353,-0.004499,0.249960,0,0);}
.m13d_c00124{transform:matrix(0.300336,0.005406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.300336,0.005406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.300336,0.005406,-0.004499,0.249960,0,0);}
.m122_c00124{transform:matrix(0.313304,0.004073,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313304,0.004073,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313304,0.004073,-0.003250,0.249979,0,0);}
.m13a_c00124{transform:matrix(0.316289,0.005693,-0.004499,0.249960,0,0);-ms-transform:matrix(0.316289,0.005693,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.316289,0.005693,-0.004499,0.249960,0,0);}
.m94_c00124{transform:matrix(0.316306,0.003479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316306,0.003479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316306,0.003479,-0.002750,0.249985,0,0);}
.m74_c00124{transform:matrix(0.327335,0.003601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.327335,0.003601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.327335,0.003601,-0.002750,0.249985,0,0);}
.m13f_c00124{transform:matrix(0.343234,0.006178,-0.004499,0.249960,0,0);-ms-transform:matrix(0.343234,0.006178,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.343234,0.006178,-0.004499,0.249960,0,0);}
.m61_c00124{transform:matrix(0.343444,0.003778,-0.002750,0.249985,0,0);-ms-transform:matrix(0.343444,0.003778,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.343444,0.003778,-0.002750,0.249985,0,0);}
.m93_c00124{transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);}
.mfc_c00124{transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363535,0.000000,0.000000,0.250000,0,0);}
.m121_c00124{transform:matrix(0.363624,0.004727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.363624,0.004727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.363624,0.004727,-0.003250,0.249979,0,0);}
.mdb_c00124{transform:matrix(0.372713,0.004473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.372713,0.004473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.372713,0.004473,-0.003000,0.249982,0,0);}
.m2_c00124{transform:matrix(0.376677,0.023023,-0.015252,0.249534,0,0);-ms-transform:matrix(0.376677,0.023023,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.376677,0.023023,-0.015252,0.249534,0,0);}
.m5f_c00124{transform:matrix(0.379627,0.004176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.379627,0.004176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.379627,0.004176,-0.002750,0.249985,0,0);}
.m6_c00124{transform:matrix(0.384947,0.023529,-0.015252,0.249534,0,0);-ms-transform:matrix(0.384947,0.023529,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.384947,0.023529,-0.015252,0.249534,0,0);}
.m7e_c00124{transform:matrix(0.416285,0.004579,-0.002750,0.249985,0,0);-ms-transform:matrix(0.416285,0.004579,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.416285,0.004579,-0.002750,0.249985,0,0);}
.m64_c00124{transform:matrix(0.419280,0.004612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.419280,0.004612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.419280,0.004612,-0.002750,0.249985,0,0);}
.m12e_c00124{transform:matrix(0.423256,0.007619,-0.004499,0.249960,0,0);-ms-transform:matrix(0.423256,0.007619,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.423256,0.007619,-0.004499,0.249960,0,0);}
.m8_c00124{transform:matrix(0.436500,0.026680,-0.015252,0.249534,0,0);-ms-transform:matrix(0.436500,0.026680,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.436500,0.026680,-0.015252,0.249534,0,0);}
.ma_c00124{transform:matrix(0.438487,0.026801,-0.015252,0.249534,0,0);-ms-transform:matrix(0.438487,0.026801,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.438487,0.026801,-0.015252,0.249534,0,0);}
.m67_c00124{transform:matrix(0.446233,0.004909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.446233,0.004909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.446233,0.004909,-0.002750,0.249985,0,0);}
.m49_c00124{transform:matrix(0.448091,0.003585,-0.002000,0.249992,0,0);-ms-transform:matrix(0.448091,0.003585,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.448091,0.003585,-0.002000,0.249992,0,0);}
.m13b_c00124{transform:matrix(0.450672,0.008112,-0.004499,0.249960,0,0);-ms-transform:matrix(0.450672,0.008112,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.450672,0.008112,-0.004499,0.249960,0,0);}
.mb7_c00124{transform:matrix(0.453197,0.005438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.453197,0.005438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.453197,0.005438,-0.003000,0.249982,0,0);}
.m65_c00124{transform:matrix(0.453943,0.004993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.453943,0.004993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.453943,0.004993,-0.002750,0.249985,0,0);}
.mb_c00124{transform:matrix(0.458924,0.028050,-0.015252,0.249534,0,0);-ms-transform:matrix(0.458924,0.028050,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.458924,0.028050,-0.015252,0.249534,0,0);}
.m9_c00124{transform:matrix(0.490545,0.029983,-0.015252,0.249534,0,0);-ms-transform:matrix(0.490545,0.029983,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.490545,0.029983,-0.015252,0.249534,0,0);}
.m5_c00124{transform:matrix(0.498265,0.030455,-0.015252,0.249534,0,0);-ms-transform:matrix(0.498265,0.030455,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.498265,0.030455,-0.015252,0.249534,0,0);}
.m6c_c00124{transform:matrix(0.511314,0.005624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.511314,0.005624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.511314,0.005624,-0.002750,0.249985,0,0);}
.m4_c00124{transform:matrix(0.605006,0.036979,-0.015252,0.249534,0,0);-ms-transform:matrix(0.605006,0.036979,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.605006,0.036979,-0.015252,0.249534,0,0);}
.m139_c00124{transform:matrix(0.681175,0.012261,-0.004499,0.249960,0,0);-ms-transform:matrix(0.681175,0.012261,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.681175,0.012261,-0.004499,0.249960,0,0);}
.m7_c00124{transform:matrix(0.722931,0.044187,-0.015252,0.249534,0,0);-ms-transform:matrix(0.722931,0.044187,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.722931,0.044187,-0.015252,0.249534,0,0);}
.m144_c00124{transform:matrix(0.738475,0.013293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.738475,0.013293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.738475,0.013293,-0.004499,0.249960,0,0);}
.m85_c00124{transform:matrix(0.758109,0.008339,-0.002750,0.249985,0,0);-ms-transform:matrix(0.758109,0.008339,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.758109,0.008339,-0.002750,0.249985,0,0);}
.m3_c00124{transform:matrix(0.823513,0.050335,-0.015252,0.249534,0,0);-ms-transform:matrix(0.823513,0.050335,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.823513,0.050335,-0.015252,0.249534,0,0);}
.m78_c00124{transform:matrix(0.845044,0.009295,-0.002750,0.249985,0,0);-ms-transform:matrix(0.845044,0.009295,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.845044,0.009295,-0.002750,0.249985,0,0);}
.m1_c00124{transform:matrix(1.046637,0.063973,-0.015252,0.249534,0,0);-ms-transform:matrix(1.046637,0.063973,-0.015252,0.249534,0,0);-webkit-transform:matrix(1.046637,0.063973,-0.015252,0.249534,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;}
.fs0_c00124{font-size:49.343214px;}
.fse_c00124{font-size:60.904385px;}
.fsf_c00124{font-size:64.054611px;}
.fs3_c00124{font-size:65.102083px;}
.fs4_c00124{font-size:66.152117px;}
.fs9_c00124{font-size:67.204065px;}
.fs12_c00124{font-size:67.204838px;}
.fs15_c00124{font-size:67.210886px;}
.fs5_c00124{font-size:68.252184px;}
.fs7_c00124{font-size:68.254129px;}
.fs14_c00124{font-size:68.255767px;}
.fsb_c00124{font-size:69.300000px;}
.fs16_c00124{font-size:69.311226px;}
.fs2_c00124{font-size:70.352251px;}
.fs6_c00124{font-size:70.354256px;}
.fsd_c00124{font-size:70.355065px;}
.fs11_c00124{font-size:71.400000px;}
.fsc_c00124{font-size:71.405141px;}
.fsa_c00124{font-size:72.454383px;}
.fs8_c00124{font-size:73.504447px;}
.fs1_c00124{font-size:74.552386px;}
.fs13_c00124{font-size:75.606388px;}
.fs17_c00124{font-size:76.662416px;}
.fs10_c00124{font-size:78.755670px;}
.y0_c00124{bottom:0.000000px;}
.y141_c00124{bottom:158.611746px;}
.y140_c00124{bottom:159.554589px;}
.y13f_c00124{bottom:160.210380px;}
.y13e_c00124{bottom:160.523883px;}
.y13d_c00124{bottom:160.734396px;}
.y13c_c00124{bottom:161.053983px;}
.y13b_c00124{bottom:161.656074px;}
.y13a_c00124{bottom:161.825862px;}
.y139_c00124{bottom:162.501240px;}
.y138_c00124{bottom:163.005750px;}
.y137_c00124{bottom:163.344087px;}
.y136_c00124{bottom:180.947562px;}
.y135_c00124{bottom:181.926543px;}
.y134_c00124{bottom:182.280930px;}
.y133_c00124{bottom:183.000879px;}
.y132_c00124{bottom:183.394158px;}
.y131_c00124{bottom:184.440114px;}
.y130_c00124{bottom:184.902189px;}
.y12f_c00124{bottom:185.925069px;}
.y12e_c00124{bottom:186.247905px;}
.y12d_c00124{bottom:187.014222px;}
.y12c_c00124{bottom:187.646886px;}
.y12b_c00124{bottom:201.299031px;}
.y12a_c00124{bottom:203.218245px;}
.y129_c00124{bottom:204.132033px;}
.y128_c00124{bottom:204.623244px;}
.y127_c00124{bottom:205.555689px;}
.y126_c00124{bottom:206.032077px;}
.y125_c00124{bottom:206.785593px;}
.y124_c00124{bottom:207.374355px;}
.y123_c00124{bottom:207.689580px;}
.y122_c00124{bottom:208.200069px;}
.y121_c00124{bottom:209.396061px;}
.y120_c00124{bottom:210.334500px;}
.y11f_c00124{bottom:225.413952px;}
.y11e_c00124{bottom:225.654640px;}
.y11d_c00124{bottom:226.623481px;}
.y11c_c00124{bottom:227.089473px;}
.y11b_c00124{bottom:227.397150px;}
.y11a_c00124{bottom:227.934927px;}
.y119_c00124{bottom:228.223161px;}
.y118_c00124{bottom:228.951645px;}
.y117_c00124{bottom:229.537825px;}
.y116_c00124{bottom:230.431429px;}
.y115_c00124{bottom:230.841958px;}
.y114_c00124{bottom:231.407252px;}
.y113_c00124{bottom:231.663444px;}
.y112_c00124{bottom:248.364456px;}
.y111_c00124{bottom:248.704672px;}
.y110_c00124{bottom:249.557661px;}
.y10f_c00124{bottom:249.908759px;}
.y10e_c00124{bottom:250.413477px;}
.y10d_c00124{bottom:251.070705px;}
.y10c_c00124{bottom:251.299011px;}
.y10b_c00124{bottom:251.741368px;}
.y10a_c00124{bottom:252.043150px;}
.y109_c00124{bottom:252.857529px;}
.y108_c00124{bottom:253.303397px;}
.y107_c00124{bottom:253.836000px;}
.y106_c00124{bottom:271.484586px;}
.y105_c00124{bottom:272.304396px;}
.y104_c00124{bottom:272.955078px;}
.y103_c00124{bottom:273.295332px;}
.y102_c00124{bottom:274.116276px;}
.y101_c00124{bottom:274.261716px;}
.y100_c00124{bottom:275.133366px;}
.yff_c00124{bottom:275.661378px;}
.yfe_c00124{bottom:276.493500px;}
.yfd_c00124{bottom:293.883000px;}
.yfc_c00124{bottom:294.601500px;}
.yfb_c00124{bottom:294.903000px;}
.yfa_c00124{bottom:295.513500px;}
.yf9_c00124{bottom:295.975500px;}
.yf8_c00124{bottom:296.452500px;}
.yf7_c00124{bottom:297.123000px;}
.yf6_c00124{bottom:297.466500px;}
.yf5_c00124{bottom:297.981000px;}
.yf4_c00124{bottom:298.488000px;}
.yf3_c00124{bottom:298.698000px;}
.yf2_c00124{bottom:298.932000px;}
.yf1_c00124{bottom:299.211000px;}
.yf0_c00124{bottom:321.474000px;}
.yef_c00124{bottom:338.838288px;}
.yee_c00124{bottom:339.193266px;}
.yed_c00124{bottom:339.818022px;}
.yec_c00124{bottom:340.341444px;}
.yeb_c00124{bottom:341.215038px;}
.yea_c00124{bottom:341.471760px;}
.ye9_c00124{bottom:342.012810px;}
.ye8_c00124{bottom:342.995568px;}
.ye7_c00124{bottom:343.447488px;}
.ye6_c00124{bottom:343.887798px;}
.ye5_c00124{bottom:344.771490px;}
.ye4_c00124{bottom:361.506600px;}
.ye3_c00124{bottom:362.296458px;}
.ye2_c00124{bottom:362.521788px;}
.ye1_c00124{bottom:363.303498px;}
.ye0_c00124{bottom:363.492876px;}
.ydf_c00124{bottom:363.979272px;}
.yde_c00124{bottom:364.341102px;}
.ydd_c00124{bottom:364.811598px;}
.ydc_c00124{bottom:365.643744px;}
.ydb_c00124{bottom:365.901606px;}
.yda_c00124{bottom:366.354804px;}
.yd9_c00124{bottom:366.923778px;}
.yd8_c00124{bottom:384.062058px;}
.yd7_c00124{bottom:385.138512px;}
.yd6_c00124{bottom:385.352928px;}
.yd5_c00124{bottom:385.695882px;}
.yd4_c00124{bottom:386.467686px;}
.yd3_c00124{bottom:387.056772px;}
.yd2_c00124{bottom:387.422982px;}
.yd1_c00124{bottom:387.695124px;}
.yd0_c00124{bottom:388.560834px;}
.ycf_c00124{bottom:388.696284px;}
.yce_c00124{bottom:389.363796px;}
.ycd_c00124{bottom:406.059078px;}
.ycc_c00124{bottom:407.098542px;}
.ycb_c00124{bottom:407.688432px;}
.yca_c00124{bottom:408.074070px;}
.yc9_c00124{bottom:409.257960px;}
.yc8_c00124{bottom:410.419590px;}
.yc7_c00124{bottom:410.860446px;}
.yc6_c00124{bottom:412.098096px;}
.yc5_c00124{bottom:412.559016px;}
.yc4_c00124{bottom:429.618132px;}
.yc3_c00124{bottom:429.971922px;}
.yc2_c00124{bottom:430.129458px;}
.yc1_c00124{bottom:430.723692px;}
.yc0_c00124{bottom:431.150832px;}
.ybf_c00124{bottom:431.708958px;}
.ybe_c00124{bottom:432.109944px;}
.ybd_c00124{bottom:432.280944px;}
.ybc_c00124{bottom:432.858474px;}
.ybb_c00124{bottom:433.993554px;}
.yba_c00124{bottom:434.398248px;}
.yb9_c00124{bottom:435.004632px;}
.yb8_c00124{bottom:452.049924px;}
.yb7_c00124{bottom:452.544708px;}
.yb6_c00124{bottom:453.475524px;}
.yb5_c00124{bottom:453.787626px;}
.yb4_c00124{bottom:454.528128px;}
.yb3_c00124{bottom:454.738332px;}
.yb2_c00124{bottom:455.197836px;}
.yb1_c00124{bottom:456.066912px;}
.yb0_c00124{bottom:456.614904px;}
.yaf_c00124{bottom:457.029552px;}
.yae_c00124{bottom:457.383000px;}
.yad_c00124{bottom:478.659000px;}
.yac_c00124{bottom:497.274484px;}
.yab_c00124{bottom:497.720152px;}
.yaa_c00124{bottom:498.383062px;}
.ya9_c00124{bottom:498.969033px;}
.ya8_c00124{bottom:499.282894px;}
.ya7_c00124{bottom:500.459472px;}
.ya6_c00124{bottom:500.761638px;}
.ya5_c00124{bottom:501.195495px;}
.ya4_c00124{bottom:501.900355px;}
.ya3_c00124{bottom:502.277250px;}
.ya2_c00124{bottom:502.894053px;}
.ya1_c00124{bottom:503.536936px;}
.ya0_c00124{bottom:520.561372px;}
.y9f_c00124{bottom:521.115208px;}
.y9e_c00124{bottom:522.091033px;}
.y9d_c00124{bottom:522.620536px;}
.y9c_c00124{bottom:522.919503px;}
.y9b_c00124{bottom:523.695939px;}
.y9a_c00124{bottom:524.738529px;}
.y99_c00124{bottom:525.205126px;}
.y98_c00124{bottom:525.564078px;}
.y97_c00124{bottom:525.950101px;}
.y96_c00124{bottom:542.605461px;}
.y95_c00124{bottom:542.854920px;}
.y94_c00124{bottom:543.124838px;}
.y93_c00124{bottom:543.508959px;}
.y92_c00124{bottom:543.910420px;}
.y91_c00124{bottom:544.273077px;}
.y90_c00124{bottom:544.860064px;}
.y8f_c00124{bottom:545.433853px;}
.y8e_c00124{bottom:546.419316px;}
.y8d_c00124{bottom:546.704725px;}
.y8c_c00124{bottom:547.212982px;}
.y8b_c00124{bottom:547.822375px;}
.y8a_c00124{bottom:564.549776px;}
.y89_c00124{bottom:565.230642px;}
.y88_c00124{bottom:566.358820px;}
.y87_c00124{bottom:566.937139px;}
.y86_c00124{bottom:567.947394px;}
.y85_c00124{bottom:568.401684px;}
.y84_c00124{bottom:569.132554px;}
.y83_c00124{bottom:569.431521px;}
.y82_c00124{bottom:570.337413px;}
.y81_c00124{bottom:570.716640px;}
.y80_c00124{bottom:571.046803px;}
.y7f_c00124{bottom:587.060733px;}
.y7e_c00124{bottom:588.071598px;}
.y7d_c00124{bottom:588.372957px;}
.y7c_c00124{bottom:589.094721px;}
.y7b_c00124{bottom:590.007739px;}
.y7a_c00124{bottom:590.807767px;}
.y79_c00124{bottom:592.223382px;}
.y78_c00124{bottom:592.505340px;}
.y77_c00124{bottom:592.879800px;}
.y76_c00124{bottom:593.458927px;}
.y75_c00124{bottom:609.069090px;}
.y74_c00124{bottom:609.639562px;}
.y73_c00124{bottom:609.873414px;}
.y72_c00124{bottom:610.955460px;}
.y71_c00124{bottom:611.197083px;}
.y70_c00124{bottom:611.579439px;}
.y6f_c00124{bottom:614.438535px;}
.y6e_c00124{bottom:614.598274px;}
.y6d_c00124{bottom:615.330153px;}
.y6c_c00124{bottom:632.590965px;}
.y6b_c00124{bottom:632.969856px;}
.y6a_c00124{bottom:633.825952px;}
.y69_c00124{bottom:634.169289px;}
.y68_c00124{bottom:634.463509px;}
.y67_c00124{bottom:634.594839px;}
.y66_c00124{bottom:635.205222px;}
.y65_c00124{bottom:635.457899px;}
.y64_c00124{bottom:635.743275px;}
.y63_c00124{bottom:636.511797px;}
.y62_c00124{bottom:636.806083px;}
.y61_c00124{bottom:637.710225px;}
.y60_c00124{bottom:638.012562px;}
.y5f_c00124{bottom:655.687858px;}
.y5e_c00124{bottom:655.996788px;}
.y5d_c00124{bottom:656.620356px;}
.y5c_c00124{bottom:657.309544px;}
.y5b_c00124{bottom:657.570327px;}
.y5a_c00124{bottom:657.812448px;}
.y59_c00124{bottom:658.500531px;}
.y58_c00124{bottom:658.928244px;}
.y57_c00124{bottom:659.240012px;}
.y56_c00124{bottom:659.581710px;}
.y55_c00124{bottom:659.898923px;}
.y54_c00124{bottom:660.196500px;}
.y53_c00124{bottom:679.063344px;}
.y52_c00124{bottom:682.518636px;}
.y51_c00124{bottom:683.104020px;}
.y50_c00124{bottom:700.713516px;}
.y4f_c00124{bottom:701.064072px;}
.y4e_c00124{bottom:701.269032px;}
.y4d_c00124{bottom:701.672268px;}
.y4c_c00124{bottom:701.965236px;}
.y4b_c00124{bottom:702.393684px;}
.y4a_c00124{bottom:702.691008px;}
.y49_c00124{bottom:703.346580px;}
.y48_c00124{bottom:703.652664px;}
.y47_c00124{bottom:704.184924px;}
.y46_c00124{bottom:705.066756px;}
.y45_c00124{bottom:705.539220px;}
.y44_c00124{bottom:723.874452px;}
.y43_c00124{bottom:724.105548px;}
.y42_c00124{bottom:724.420968px;}
.y41_c00124{bottom:724.792464px;}
.y40_c00124{bottom:725.053800px;}
.y3f_c00124{bottom:725.578800px;}
.y3e_c00124{bottom:726.008388px;}
.y3d_c00124{bottom:726.600432px;}
.y3c_c00124{bottom:726.840180px;}
.y3b_c00124{bottom:727.382412px;}
.y3a_c00124{bottom:746.263332px;}
.y39_c00124{bottom:746.465124px;}
.y38_c00124{bottom:746.901984px;}
.y37_c00124{bottom:747.225216px;}
.y36_c00124{bottom:747.661788px;}
.y35_c00124{bottom:748.018584px;}
.y34_c00124{bottom:748.212432px;}
.y33_c00124{bottom:748.562484px;}
.y32_c00124{bottom:748.770756px;}
.y31_c00124{bottom:749.186640px;}
.y30_c00124{bottom:749.499744px;}
.y2f_c00124{bottom:749.662464px;}
.y2e_c00124{bottom:750.330000px;}
.y2d_c00124{bottom:769.011576px;}
.y2c_c00124{bottom:769.296708px;}
.y2b_c00124{bottom:769.495476px;}
.y2a_c00124{bottom:770.378976px;}
.y29_c00124{bottom:770.566872px;}
.y28_c00124{bottom:771.156624px;}
.y27_c00124{bottom:771.588648px;}
.y26_c00124{bottom:771.744072px;}
.y25_c00124{bottom:771.957936px;}
.y24_c00124{bottom:772.740240px;}
.y23_c00124{bottom:791.030052px;}
.y22_c00124{bottom:791.313972px;}
.y21_c00124{bottom:792.135984px;}
.y20_c00124{bottom:792.339600px;}
.y1f_c00124{bottom:792.574656px;}
.y1e_c00124{bottom:792.715200px;}
.y1d_c00124{bottom:793.121256px;}
.y1c_c00124{bottom:793.512228px;}
.y1b_c00124{bottom:794.169060px;}
.y1a_c00124{bottom:794.397432px;}
.y19_c00124{bottom:794.980428px;}
.y18_c00124{bottom:795.151068px;}
.y17_c00124{bottom:814.636152px;}
.y16_c00124{bottom:814.988496px;}
.y15_c00124{bottom:815.180748px;}
.y14_c00124{bottom:815.796516px;}
.y13_c00124{bottom:816.059748px;}
.y12_c00124{bottom:816.576264px;}
.y11_c00124{bottom:816.766332px;}
.y10_c00124{bottom:817.243644px;}
.yf_c00124{bottom:817.498572px;}
.ye_c00124{bottom:817.757448px;}
.yd_c00124{bottom:818.101500px;}
.yc_c00124{bottom:856.513110px;}
.yb_c00124{bottom:861.633175px;}
.ya_c00124{bottom:863.393178px;}
.y9_c00124{bottom:864.891216px;}
.y8_c00124{bottom:866.481211px;}
.y7_c00124{bottom:867.703285px;}
.y6_c00124{bottom:869.382128px;}
.y5_c00124{bottom:871.042761px;}
.y4_c00124{bottom:872.798554px;}
.y3_c00124{bottom:874.968568px;}
.y2_c00124{bottom:877.732052px;}
.y1_c00124{bottom:881.827500px;}
.h2_c00124{height:49.343214px;}
.h10_c00124{height:60.904385px;}
.h11_c00124{height:64.054611px;}
.h5_c00124{height:65.102083px;}
.h6_c00124{height:66.152117px;}
.hb_c00124{height:67.204065px;}
.h14_c00124{height:67.204838px;}
.h17_c00124{height:67.210886px;}
.h7_c00124{height:68.252184px;}
.h9_c00124{height:68.254129px;}
.h16_c00124{height:68.255767px;}
.hd_c00124{height:69.300000px;}
.h18_c00124{height:69.311226px;}
.h4_c00124{height:70.352251px;}
.h8_c00124{height:70.354256px;}
.hf_c00124{height:70.355065px;}
.h13_c00124{height:71.400000px;}
.he_c00124{height:71.405141px;}
.hc_c00124{height:72.454383px;}
.ha_c00124{height:73.504447px;}
.h3_c00124{height:74.552386px;}
.h15_c00124{height:75.606388px;}
.h19_c00124{height:76.662416px;}
.h12_c00124{height:78.755670px;}
.h1_c00124{height:1005.000000px;}
.h0_c00124{height:1005.150000px;}
.w0_c00124{width:705.450000px;}
.w1_c00124{width:705.750000px;}
.x0_c00124{left:0.000000px;}
.x97_c00124{left:37.065768px;}
.xc7_c00124{left:41.667414px;}
.xc1_c00124{left:53.453040px;}
.x59_c00124{left:73.789745px;}
.xa5_c00124{left:76.410000px;}
.x9e_c00124{left:82.955586px;}
.xb1_c00124{left:85.485000px;}
.x8d_c00124{left:87.590784px;}
.x73_c00124{left:88.995023px;}
.x87_c00124{left:90.809550px;}
.x47_c00124{left:92.432928px;}
.x21_c00124{left:93.810060px;}
.x40_c00124{left:94.900056px;}
.x37_c00124{left:96.550896px;}
.x2b_c00124{left:98.161068px;}
.x17_c00124{left:99.511200px;}
.xa6_c00124{left:102.988500px;}
.x49_c00124{left:109.210500px;}
.x7e_c00124{left:115.020000px;}
.x52_c00124{left:116.989122px;}
.xd_c00124{left:118.392000px;}
.x66_c00124{left:119.987645px;}
.x1_c00124{left:122.194500px;}
.x88_c00124{left:123.718758px;}
.xa7_c00124{left:126.175500px;}
.x98_c00124{left:129.997884px;}
.x48_c00124{left:134.291424px;}
.x4a_c00124{left:136.263000px;}
.x41_c00124{left:137.832024px;}
.x5f_c00124{left:139.673792px;}
.x8e_c00124{left:143.216784px;}
.x6d_c00124{left:144.564609px;}
.x74_c00124{left:146.218752px;}
.x5a_c00124{left:148.026920px;}
.x67_c00124{left:149.144001px;}
.x9f_c00124{left:150.970776px;}
.x99_c00124{left:153.486672px;}
.x8f_c00124{left:154.504284px;}
.xac_c00124{left:157.533000px;}
.xe_c00124{left:161.398500px;}
.xa8_c00124{left:163.246500px;}
.x38_c00124{left:164.329896px;}
.x60_c00124{left:168.533165px;}
.x2c_c00124{left:172.414980px;}
.xb5_c00124{left:179.125115px;}
.x75_c00124{left:182.090460px;}
.x18_c00124{left:183.215028px;}
.xa0_c00124{left:184.787862px;}
.xc2_c00124{left:185.871447px;}
.x6e_c00124{left:186.951147px;}
.x2_c00124{left:189.198723px;}
.x2d_c00124{left:190.504836px;}
.x22_c00124{left:191.598060px;}
.xf_c00124{left:193.758000px;}
.x4b_c00124{left:196.164000px;}
.x7f_c00124{left:197.370000px;}
.xad_c00124{left:201.534000px;}
.xa9_c00124{left:205.491000px;}
.x19_c00124{left:208.573824px;}
.x6f_c00124{left:210.715383px;}
.x89_c00124{left:212.104134px;}
.x53_c00124{left:216.936033px;}
.x23_c00124{left:218.331060px;}
.xa1_c00124{left:219.572448px;}
.xb2_c00124{left:223.396500px;}
.x4c_c00124{left:224.506500px;}
.x10_c00124{left:225.624000px;}
.x90_c00124{left:226.646784px;}
.x9a_c00124{left:229.083072px;}
.xbc_c00124{left:230.388000px;}
.x3_c00124{left:234.411117px;}
.x24_c00124{left:237.759060px;}
.x68_c00124{left:241.765455px;}
.x8a_c00124{left:243.591378px;}
.xb3_c00124{left:246.610500px;}
.xbd_c00124{left:247.900500px;}
.x91_c00124{left:249.325284px;}
.xb6_c00124{left:253.634090px;}
.x7a_c00124{left:260.434997px;}
.x76_c00124{left:262.278695px;}
.x4d_c00124{left:263.389500px;}
.xc3_c00124{left:264.538521px;}
.x42_c00124{left:266.402940px;}
.x39_c00124{left:268.303896px;}
.x4_c00124{left:269.913969px;}
.x2e_c00124{left:271.502688px;}
.xae_c00124{left:274.171500px;}
.xaa_c00124{left:277.086000px;}
.x92_c00124{left:279.842784px;}
.x1a_c00124{left:281.489736px;}
.x11_c00124{left:285.288000px;}
.xaf_c00124{left:286.291500px;}
.x25_c00124{left:291.762060px;}
.x70_c00124{left:292.801976px;}
.x2f_c00124{left:294.724008px;}
.x5_c00124{left:298.639902px;}
.xc4_c00124{left:300.129234px;}
.xb7_c00124{left:302.533233px;}
.x54_c00124{left:304.698560px;}
.x12_c00124{left:309.046500px;}
.x7b_c00124{left:313.026264px;}
.x83_c00124{left:315.334506px;}
.x3a_c00124{left:322.002396px;}
.xc8_c00124{left:323.635995px;}
.x6_c00124{left:325.808955px;}
.x80_c00124{left:329.532000px;}
.x30_c00124{left:333.605196px;}
.xa2_c00124{left:336.805044px;}
.x71_c00124{left:340.600448px;}
.x77_c00124{left:344.904363px;}
.x4e_c00124{left:347.953500px;}
.x9b_c00124{left:348.978012px;}
.x7_c00124{left:353.275911px;}
.x31_c00124{left:355.211028px;}
.xa3_c00124{left:356.573310px;}
.x61_c00124{left:360.674441px;}
.x84_c00124{left:363.000006px;}
.x26_c00124{left:365.481060px;}
.x1b_c00124{left:370.055028px;}
.x4f_c00124{left:371.661000px;}
.x8_c00124{left:373.269843px;}
.x55_c00124{left:376.612268px;}
.x43_c00124{left:380.835192px;}
.xb0_c00124{left:383.058000px;}
.x1c_c00124{left:385.747908px;}
.x3b_c00124{left:387.627396px;}
.x27_c00124{left:388.968060px;}
.x93_c00124{left:393.250284px;}
.x32_c00124{left:394.935216px;}
.x7c_c00124{left:397.075992px;}
.x9_c00124{left:399.283212px;}
.xbe_c00124{left:400.740000px;}
.x13_c00124{left:406.515000px;}
.x81_c00124{left:408.757500px;}
.x69_c00124{left:410.526726px;}
.x1d_c00124{left:411.942204px;}
.xb4_c00124{left:414.588000px;}
.x5b_c00124{left:418.155950px;}
.x3c_c00124{left:420.294396px;}
.x94_c00124{left:421.829784px;}
.xa_c00124{left:423.792096px;}
.xbf_c00124{left:428.029500px;}
.x62_c00124{left:430.856390px;}
.xb8_c00124{left:432.149930px;}
.x1e_c00124{left:434.581524px;}
.x9c_c00124{left:437.278074px;}
.x5c_c00124{left:438.348735px;}
.x95_c00124{left:439.697784px;}
.x56_c00124{left:440.783074px;}
.x33_c00124{left:443.506332px;}
.x85_c00124{left:445.105506px;}
.x44_c00124{left:446.448120px;}
.xb_c00124{left:452.586891px;}
.x6a_c00124{left:455.054753px;}
.x9d_c00124{left:457.805826px;}
.x78_c00124{left:460.749822px;}
.xab_c00124{left:462.103500px;}
.xa4_c00124{left:463.990014px;}
.x3d_c00124{left:466.731396px;}
.x34_c00124{left:479.410044px;}
.x8b_c00124{left:480.714672px;}
.x14_c00124{left:483.486000px;}
.x72_c00124{left:485.255864px;}
.x63_c00124{left:486.379169px;}
.x50_c00124{left:491.002500px;}
.xc5_c00124{left:493.456122px;}
.x86_c00124{left:494.625006px;}
.xb9_c00124{left:496.625268px;}
.x28_c00124{left:499.405560px;}
.x45_c00124{left:501.846300px;}
.x79_c00124{left:503.324882px;}
.x3e_c00124{left:506.158896px;}
.x15_c00124{left:507.517500px;}
.x64_c00124{left:509.547657px;}
.x57_c00124{left:512.063783px;}
.xc9_c00124{left:514.810008px;}
.x51_c00124{left:519.087000px;}
.x29_c00124{left:524.251560px;}
.x1f_c00124{left:525.894792px;}
.x35_c00124{left:528.017160px;}
.x96_c00124{left:529.402284px;}
.x46_c00124{left:533.665032px;}
.x3f_c00124{left:535.045896px;}
.xc_c00124{left:536.354520px;}
.x7d_c00124{left:540.381240px;}
.x6b_c00124{left:541.796339px;}
.x58_c00124{left:543.644436px;}
.x5d_c00124{left:548.020031px;}
.x36_c00124{left:550.428480px;}
.x16_c00124{left:551.560500px;}
.x82_c00124{left:553.566000px;}
.x8c_c00124{left:554.959890px;}
.x20_c00124{left:557.447040px;}
.x2a_c00124{left:559.893060px;}
.xc6_c00124{left:568.767399px;}
.xba_c00124{left:577.383321px;}
.xc0_c00124{left:585.418500px;}
.x65_c00124{left:587.260941px;}
.x6c_c00124{left:594.146684px;}
.x5e_c00124{left:595.517003px;}
.xbb_c00124{left:597.398075px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:0.000000pt;}
.fs0_c00124{font-size:43.860635pt;}
.fse_c00124{font-size:54.137231pt;}
.fsf_c00124{font-size:56.937432pt;}
.fs3_c00124{font-size:57.868518pt;}
.fs4_c00124{font-size:58.801882pt;}
.fs9_c00124{font-size:59.736947pt;}
.fs12_c00124{font-size:59.737634pt;}
.fs15_c00124{font-size:59.743009pt;}
.fs5_c00124{font-size:60.668608pt;}
.fs7_c00124{font-size:60.670337pt;}
.fs14_c00124{font-size:60.671793pt;}
.fsb_c00124{font-size:61.600000pt;}
.fs16_c00124{font-size:61.609978pt;}
.fs2_c00124{font-size:62.535334pt;}
.fs6_c00124{font-size:62.537116pt;}
.fsd_c00124{font-size:62.537836pt;}
.fs11_c00124{font-size:63.466667pt;}
.fsc_c00124{font-size:63.471236pt;}
.fsa_c00124{font-size:64.403896pt;}
.fs8_c00124{font-size:65.337286pt;}
.fs1_c00124{font-size:66.268787pt;}
.fs13_c00124{font-size:67.205678pt;}
.fs17_c00124{font-size:68.144370pt;}
.fs10_c00124{font-size:70.005040pt;}
.y0_c00124{bottom:0.000000pt;}
.y141_c00124{bottom:140.988219pt;}
.y140_c00124{bottom:141.826301pt;}
.y13f_c00124{bottom:142.409227pt;}
.y13e_c00124{bottom:142.687896pt;}
.y13d_c00124{bottom:142.875019pt;}
.y13c_c00124{bottom:143.159096pt;}
.y13b_c00124{bottom:143.694288pt;}
.y13a_c00124{bottom:143.845211pt;}
.y139_c00124{bottom:144.445547pt;}
.y138_c00124{bottom:144.894000pt;}
.y137_c00124{bottom:145.194744pt;}
.y136_c00124{bottom:160.842277pt;}
.y135_c00124{bottom:161.712483pt;}
.y134_c00124{bottom:162.027493pt;}
.y133_c00124{bottom:162.667448pt;}
.y132_c00124{bottom:163.017029pt;}
.y131_c00124{bottom:163.946768pt;}
.y130_c00124{bottom:164.357501pt;}
.y12f_c00124{bottom:165.266728pt;}
.y12e_c00124{bottom:165.553693pt;}
.y12d_c00124{bottom:166.234864pt;}
.y12c_c00124{bottom:166.797232pt;}
.y12b_c00124{bottom:178.932472pt;}
.y12a_c00124{bottom:180.638440pt;}
.y129_c00124{bottom:181.450696pt;}
.y128_c00124{bottom:181.887328pt;}
.y127_c00124{bottom:182.716168pt;}
.y126_c00124{bottom:183.139624pt;}
.y125_c00124{bottom:183.809416pt;}
.y124_c00124{bottom:184.332760pt;}
.y123_c00124{bottom:184.612960pt;}
.y122_c00124{bottom:185.066728pt;}
.y121_c00124{bottom:186.129832pt;}
.y120_c00124{bottom:186.964000pt;}
.y11f_c00124{bottom:200.367957pt;}
.y11e_c00124{bottom:200.581903pt;}
.y11d_c00124{bottom:201.443095pt;}
.y11c_c00124{bottom:201.857309pt;}
.y11b_c00124{bottom:202.130800pt;}
.y11a_c00124{bottom:202.608824pt;}
.y119_c00124{bottom:202.865032pt;}
.y118_c00124{bottom:203.512573pt;}
.y117_c00124{bottom:204.033623pt;}
.y116_c00124{bottom:204.827937pt;}
.y115_c00124{bottom:205.192852pt;}
.y114_c00124{bottom:205.695335pt;}
.y113_c00124{bottom:205.923061pt;}
.y112_c00124{bottom:220.768405pt;}
.y111_c00124{bottom:221.070820pt;}
.y110_c00124{bottom:221.829032pt;}
.y10f_c00124{bottom:222.141119pt;}
.y10e_c00124{bottom:222.589757pt;}
.y10d_c00124{bottom:223.173960pt;}
.y10c_c00124{bottom:223.376899pt;}
.y10b_c00124{bottom:223.770105pt;}
.y10a_c00124{bottom:224.038356pt;}
.y109_c00124{bottom:224.762248pt;}
.y108_c00124{bottom:225.158575pt;}
.y107_c00124{bottom:225.632000pt;}
.y106_c00124{bottom:241.319632pt;}
.y105_c00124{bottom:242.048352pt;}
.y104_c00124{bottom:242.626736pt;}
.y103_c00124{bottom:242.929184pt;}
.y102_c00124{bottom:243.658912pt;}
.y101_c00124{bottom:243.788192pt;}
.y100_c00124{bottom:244.562992pt;}
.yff_c00124{bottom:245.032336pt;}
.yfe_c00124{bottom:245.772000pt;}
.yfd_c00124{bottom:261.229333pt;}
.yfc_c00124{bottom:261.868000pt;}
.yfb_c00124{bottom:262.136000pt;}
.yfa_c00124{bottom:262.678667pt;}
.yf9_c00124{bottom:263.089333pt;}
.yf8_c00124{bottom:263.513333pt;}
.yf7_c00124{bottom:264.109333pt;}
.yf6_c00124{bottom:264.414667pt;}
.yf5_c00124{bottom:264.872000pt;}
.yf4_c00124{bottom:265.322667pt;}
.yf3_c00124{bottom:265.509333pt;}
.yf2_c00124{bottom:265.717333pt;}
.yf1_c00124{bottom:265.965333pt;}
.yf0_c00124{bottom:285.754667pt;}
.yef_c00124{bottom:301.189589pt;}
.yee_c00124{bottom:301.505125pt;}
.yed_c00124{bottom:302.060464pt;}
.yec_c00124{bottom:302.525728pt;}
.yeb_c00124{bottom:303.302256pt;}
.yea_c00124{bottom:303.530453pt;}
.ye9_c00124{bottom:304.011387pt;}
.ye8_c00124{bottom:304.884949pt;}
.ye7_c00124{bottom:305.286656pt;}
.ye6_c00124{bottom:305.678043pt;}
.ye5_c00124{bottom:306.463547pt;}
.ye4_c00124{bottom:321.339200pt;}
.ye3_c00124{bottom:322.041296pt;}
.ye2_c00124{bottom:322.241589pt;}
.ye1_c00124{bottom:322.936443pt;}
.ye0_c00124{bottom:323.104779pt;}
.ydf_c00124{bottom:323.537131pt;}
.yde_c00124{bottom:323.858757pt;}
.ydd_c00124{bottom:324.276976pt;}
.ydc_c00124{bottom:325.016661pt;}
.ydb_c00124{bottom:325.245872pt;}
.yda_c00124{bottom:325.648715pt;}
.yd9_c00124{bottom:326.154469pt;}
.yd8_c00124{bottom:341.388496pt;}
.yd7_c00124{bottom:342.345344pt;}
.yd6_c00124{bottom:342.535936pt;}
.yd5_c00124{bottom:342.840784pt;}
.yd4_c00124{bottom:343.526832pt;}
.yd3_c00124{bottom:344.050464pt;}
.yd2_c00124{bottom:344.375984pt;}
.yd1_c00124{bottom:344.617888pt;}
.yd0_c00124{bottom:345.387408pt;}
.ycf_c00124{bottom:345.507808pt;}
.yce_c00124{bottom:346.101152pt;}
.ycd_c00124{bottom:360.941403pt;}
.ycc_c00124{bottom:361.865371pt;}
.ycb_c00124{bottom:362.389717pt;}
.yca_c00124{bottom:362.732507pt;}
.yc9_c00124{bottom:363.784853pt;}
.yc8_c00124{bottom:364.817413pt;}
.yc7_c00124{bottom:365.209285pt;}
.yc6_c00124{bottom:366.309419pt;}
.yc5_c00124{bottom:366.719125pt;}
.yc4_c00124{bottom:381.882784pt;}
.yc3_c00124{bottom:382.197264pt;}
.yc2_c00124{bottom:382.337296pt;}
.yc1_c00124{bottom:382.865504pt;}
.yc0_c00124{bottom:383.245184pt;}
.ybf_c00124{bottom:383.741296pt;}
.ybe_c00124{bottom:384.097728pt;}
.ybd_c00124{bottom:384.249728pt;}
.ybc_c00124{bottom:384.763088pt;}
.ybb_c00124{bottom:385.772048pt;}
.yba_c00124{bottom:386.131776pt;}
.yb9_c00124{bottom:386.670784pt;}
.yb8_c00124{bottom:401.822155pt;}
.yb7_c00124{bottom:402.261963pt;}
.yb6_c00124{bottom:403.089355pt;}
.yb5_c00124{bottom:403.366779pt;}
.yb4_c00124{bottom:404.025003pt;}
.yb3_c00124{bottom:404.211851pt;}
.yb2_c00124{bottom:404.620299pt;}
.yb1_c00124{bottom:405.392811pt;}
.yb0_c00124{bottom:405.879915pt;}
.yaf_c00124{bottom:406.248491pt;}
.yae_c00124{bottom:406.562667pt;}
.yad_c00124{bottom:425.474667pt;}
.yac_c00124{bottom:442.021764pt;}
.yab_c00124{bottom:442.417913pt;}
.yaa_c00124{bottom:443.007167pt;}
.ya9_c00124{bottom:443.528029pt;}
.ya8_c00124{bottom:443.807017pt;}
.ya7_c00124{bottom:444.852864pt;}
.ya6_c00124{bottom:445.121456pt;}
.ya5_c00124{bottom:445.507107pt;}
.ya4_c00124{bottom:446.133649pt;}
.ya3_c00124{bottom:446.468667pt;}
.ya2_c00124{bottom:447.016936pt;}
.ya1_c00124{bottom:447.588388pt;}
.ya0_c00124{bottom:462.721220pt;}
.y9f_c00124{bottom:463.213519pt;}
.y9e_c00124{bottom:464.080919pt;}
.y9d_c00124{bottom:464.551588pt;}
.y9c_c00124{bottom:464.817336pt;}
.y9b_c00124{bottom:465.507501pt;}
.y9a_c00124{bottom:466.434248pt;}
.y99_c00124{bottom:466.849001pt;}
.y98_c00124{bottom:467.168069pt;}
.y97_c00124{bottom:467.511201pt;}
.y96_c00124{bottom:482.315965pt;}
.y95_c00124{bottom:482.537707pt;}
.y94_c00124{bottom:482.777633pt;}
.y93_c00124{bottom:483.119075pt;}
.y92_c00124{bottom:483.475929pt;}
.y91_c00124{bottom:483.798291pt;}
.y90_c00124{bottom:484.320057pt;}
.y8f_c00124{bottom:484.830092pt;}
.y8e_c00124{bottom:485.706059pt;}
.y8d_c00124{bottom:485.959756pt;}
.y8c_c00124{bottom:486.411540pt;}
.y8b_c00124{bottom:486.953223pt;}
.y8a_c00124{bottom:501.822023pt;}
.y89_c00124{bottom:502.427237pt;}
.y88_c00124{bottom:503.430063pt;}
.y87_c00124{bottom:503.944124pt;}
.y86_c00124{bottom:504.842128pt;}
.y85_c00124{bottom:505.245941pt;}
.y84_c00124{bottom:505.895604pt;}
.y83_c00124{bottom:506.161352pt;}
.y82_c00124{bottom:506.966589pt;}
.y81_c00124{bottom:507.303680pt;}
.y80_c00124{bottom:507.597159pt;}
.y7f_c00124{bottom:521.831763pt;}
.y7e_c00124{bottom:522.730309pt;}
.y7d_c00124{bottom:522.998184pt;}
.y7c_c00124{bottom:523.639752pt;}
.y7b_c00124{bottom:524.451324pt;}
.y7a_c00124{bottom:525.162460pt;}
.y79_c00124{bottom:526.420784pt;}
.y78_c00124{bottom:526.671413pt;}
.y77_c00124{bottom:527.004267pt;}
.y76_c00124{bottom:527.519047pt;}
.y75_c00124{bottom:541.394747pt;}
.y74_c00124{bottom:541.901833pt;}
.y73_c00124{bottom:542.109701pt;}
.y72_c00124{bottom:543.071520pt;}
.y71_c00124{bottom:543.286296pt;}
.y70_c00124{bottom:543.626168pt;}
.y6f_c00124{bottom:546.167587pt;}
.y6e_c00124{bottom:546.309577pt;}
.y6d_c00124{bottom:546.960136pt;}
.y6c_c00124{bottom:562.303080pt;}
.y6b_c00124{bottom:562.639872pt;}
.y6a_c00124{bottom:563.400847pt;}
.y69_c00124{bottom:563.706035pt;}
.y68_c00124{bottom:563.967564pt;}
.y67_c00124{bottom:564.084301pt;}
.y66_c00124{bottom:564.626864pt;}
.y65_c00124{bottom:564.851465pt;}
.y64_c00124{bottom:565.105133pt;}
.y63_c00124{bottom:565.788264pt;}
.y62_c00124{bottom:566.049852pt;}
.y61_c00124{bottom:566.853533pt;}
.y60_c00124{bottom:567.122277pt;}
.y5f_c00124{bottom:582.833652pt;}
.y5e_c00124{bottom:583.108256pt;}
.y5d_c00124{bottom:583.662539pt;}
.y5c_c00124{bottom:584.275151pt;}
.y5b_c00124{bottom:584.506957pt;}
.y5a_c00124{bottom:584.722176pt;}
.y59_c00124{bottom:585.333805pt;}
.y58_c00124{bottom:585.713995pt;}
.y57_c00124{bottom:585.991121pt;}
.y56_c00124{bottom:586.294853pt;}
.y55_c00124{bottom:586.576820pt;}
.y54_c00124{bottom:586.841333pt;}
.y53_c00124{bottom:603.611861pt;}
.y52_c00124{bottom:606.683232pt;}
.y51_c00124{bottom:607.203573pt;}
.y50_c00124{bottom:622.856459pt;}
.y4f_c00124{bottom:623.168064pt;}
.y4e_c00124{bottom:623.350251pt;}
.y4d_c00124{bottom:623.708683pt;}
.y4c_c00124{bottom:623.969099pt;}
.y4b_c00124{bottom:624.349941pt;}
.y4a_c00124{bottom:624.614229pt;}
.y49_c00124{bottom:625.196960pt;}
.y48_c00124{bottom:625.469035pt;}
.y47_c00124{bottom:625.942155pt;}
.y46_c00124{bottom:626.726005pt;}
.y45_c00124{bottom:627.145973pt;}
.y44_c00124{bottom:643.443957pt;}
.y43_c00124{bottom:643.649376pt;}
.y42_c00124{bottom:643.929749pt;}
.y41_c00124{bottom:644.259968pt;}
.y40_c00124{bottom:644.492267pt;}
.y3f_c00124{bottom:644.958933pt;}
.y3e_c00124{bottom:645.340789pt;}
.y3d_c00124{bottom:645.867051pt;}
.y3c_c00124{bottom:646.080160pt;}
.y3b_c00124{bottom:646.562144pt;}
.y3a_c00124{bottom:663.345184pt;}
.y39_c00124{bottom:663.524555pt;}
.y38_c00124{bottom:663.912875pt;}
.y37_c00124{bottom:664.200192pt;}
.y36_c00124{bottom:664.588256pt;}
.y35_c00124{bottom:664.905408pt;}
.y34_c00124{bottom:665.077717pt;}
.y33_c00124{bottom:665.388875pt;}
.y32_c00124{bottom:665.574005pt;}
.y31_c00124{bottom:665.943680pt;}
.y30_c00124{bottom:666.221995pt;}
.y2f_c00124{bottom:666.366635pt;}
.y2e_c00124{bottom:666.960000pt;}
.y2d_c00124{bottom:683.565845pt;}
.y2c_c00124{bottom:683.819296pt;}
.y2b_c00124{bottom:683.995979pt;}
.y2a_c00124{bottom:684.781312pt;}
.y29_c00124{bottom:684.948331pt;}
.y28_c00124{bottom:685.472555pt;}
.y27_c00124{bottom:685.856576pt;}
.y26_c00124{bottom:685.994731pt;}
.y25_c00124{bottom:686.184832pt;}
.y24_c00124{bottom:686.880213pt;}
.y23_c00124{bottom:703.137824pt;}
.y22_c00124{bottom:703.390197pt;}
.y21_c00124{bottom:704.120875pt;}
.y20_c00124{bottom:704.301867pt;}
.y1f_c00124{bottom:704.510805pt;}
.y1e_c00124{bottom:704.635733pt;}
.y1d_c00124{bottom:704.996672pt;}
.y1c_c00124{bottom:705.344203pt;}
.y1b_c00124{bottom:705.928053pt;}
.y1a_c00124{bottom:706.131051pt;}
.y19_c00124{bottom:706.649269pt;}
.y18_c00124{bottom:706.800949pt;}
.y17_c00124{bottom:724.121024pt;}
.y16_c00124{bottom:724.434219pt;}
.y15_c00124{bottom:724.605109pt;}
.y14_c00124{bottom:725.152459pt;}
.y13_c00124{bottom:725.386443pt;}
.y12_c00124{bottom:725.845568pt;}
.y11_c00124{bottom:726.014517pt;}
.y10_c00124{bottom:726.438795pt;}
.yf_c00124{bottom:726.665397pt;}
.ye_c00124{bottom:726.895509pt;}
.yd_c00124{bottom:727.201333pt;}
.yc_c00124{bottom:761.344987pt;}
.yb_c00124{bottom:765.896156pt;}
.ya_c00124{bottom:767.460603pt;}
.y9_c00124{bottom:768.792192pt;}
.y8_c00124{bottom:770.205521pt;}
.y7_c00124{bottom:771.291809pt;}
.y6_c00124{bottom:772.784113pt;}
.y5_c00124{bottom:774.260232pt;}
.y4_c00124{bottom:775.820937pt;}
.y3_c00124{bottom:777.749839pt;}
.y2_c00124{bottom:780.206268pt;}
.y1_c00124{bottom:783.846667pt;}
.h2_c00124{height:43.860635pt;}
.h10_c00124{height:54.137231pt;}
.h11_c00124{height:56.937432pt;}
.h5_c00124{height:57.868518pt;}
.h6_c00124{height:58.801882pt;}
.hb_c00124{height:59.736947pt;}
.h14_c00124{height:59.737634pt;}
.h17_c00124{height:59.743009pt;}
.h7_c00124{height:60.668608pt;}
.h9_c00124{height:60.670337pt;}
.h16_c00124{height:60.671793pt;}
.hd_c00124{height:61.600000pt;}
.h18_c00124{height:61.609978pt;}
.h4_c00124{height:62.535334pt;}
.h8_c00124{height:62.537116pt;}
.hf_c00124{height:62.537836pt;}
.h13_c00124{height:63.466667pt;}
.he_c00124{height:63.471236pt;}
.hc_c00124{height:64.403896pt;}
.ha_c00124{height:65.337286pt;}
.h3_c00124{height:66.268787pt;}
.h15_c00124{height:67.205678pt;}
.h19_c00124{height:68.144370pt;}
.h12_c00124{height:70.005040pt;}
.h1_c00124{height:893.333333pt;}
.h0_c00124{height:893.466667pt;}
.w0_c00124{width:627.066667pt;}
.w1_c00124{width:627.333333pt;}
.x0_c00124{left:0.000000pt;}
.x97_c00124{left:32.947349pt;}
.xc7_c00124{left:37.037701pt;}
.xc1_c00124{left:47.513813pt;}
.x59_c00124{left:65.590884pt;}
.xa5_c00124{left:67.920000pt;}
.x9e_c00124{left:73.738299pt;}
.xb1_c00124{left:75.986667pt;}
.x8d_c00124{left:77.858475pt;}
.x73_c00124{left:79.106687pt;}
.x87_c00124{left:80.719600pt;}
.x47_c00124{left:82.162603pt;}
.x21_c00124{left:83.386720pt;}
.x40_c00124{left:84.355605pt;}
.x37_c00124{left:85.823019pt;}
.x2b_c00124{left:87.254283pt;}
.x17_c00124{left:88.454400pt;}
.xa6_c00124{left:91.545333pt;}
.x49_c00124{left:97.076000pt;}
.x7e_c00124{left:102.240000pt;}
.x52_c00124{left:103.990331pt;}
.xd_c00124{left:105.237333pt;}
.x66_c00124{left:106.655684pt;}
.x1_c00124{left:108.617333pt;}
.x88_c00124{left:109.972229pt;}
.xa7_c00124{left:112.156000pt;}
.x98_c00124{left:115.553675pt;}
.x48_c00124{left:119.370155pt;}
.x4a_c00124{left:121.122667pt;}
.x41_c00124{left:122.517355pt;}
.x5f_c00124{left:124.154481pt;}
.x8e_c00124{left:127.303808pt;}
.x6d_c00124{left:128.501875pt;}
.x74_c00124{left:129.972224pt;}
.x5a_c00124{left:131.579484pt;}
.x67_c00124{left:132.572445pt;}
.x9f_c00124{left:134.196245pt;}
.x99_c00124{left:136.432597pt;}
.x8f_c00124{left:137.337141pt;}
.xac_c00124{left:140.029333pt;}
.xe_c00124{left:143.465333pt;}
.xa8_c00124{left:145.108000pt;}
.x38_c00124{left:146.071019pt;}
.x60_c00124{left:149.807257pt;}
.x2c_c00124{left:153.257760pt;}
.xb5_c00124{left:159.222324pt;}
.x75_c00124{left:161.858187pt;}
.x18_c00124{left:162.857803pt;}
.xa0_c00124{left:164.255877pt;}
.xc2_c00124{left:165.219064pt;}
.x6e_c00124{left:166.178797pt;}
.x2_c00124{left:168.176643pt;}
.x2d_c00124{left:169.337632pt;}
.x22_c00124{left:170.309387pt;}
.xf_c00124{left:172.229333pt;}
.x4b_c00124{left:174.368000pt;}
.x7f_c00124{left:175.440000pt;}
.xad_c00124{left:179.141333pt;}
.xa9_c00124{left:182.658667pt;}
.x19_c00124{left:185.398955pt;}
.x6f_c00124{left:187.302563pt;}
.x89_c00124{left:188.537008pt;}
.x53_c00124{left:192.832029pt;}
.x23_c00124{left:194.072053pt;}
.xa1_c00124{left:195.175509pt;}
.xb2_c00124{left:198.574667pt;}
.x4c_c00124{left:199.561333pt;}
.x10_c00124{left:200.554667pt;}
.x90_c00124{left:201.463808pt;}
.x9a_c00124{left:203.629397pt;}
.xbc_c00124{left:204.789333pt;}
.x3_c00124{left:208.365437pt;}
.x24_c00124{left:211.341387pt;}
.x68_c00124{left:214.902627pt;}
.x8a_c00124{left:216.525669pt;}
.xb3_c00124{left:219.209333pt;}
.xbd_c00124{left:220.356000pt;}
.x91_c00124{left:221.622475pt;}
.xb6_c00124{left:225.452524pt;}
.x7a_c00124{left:231.497775pt;}
.x76_c00124{left:233.136617pt;}
.x4d_c00124{left:234.124000pt;}
.xc3_c00124{left:235.145352pt;}
.x42_c00124{left:236.802613pt;}
.x39_c00124{left:238.492352pt;}
.x4_c00124{left:239.923528pt;}
.x2e_c00124{left:241.335723pt;}
.xae_c00124{left:243.708000pt;}
.xaa_c00124{left:246.298667pt;}
.x92_c00124{left:248.749141pt;}
.x1a_c00124{left:250.213099pt;}
.x11_c00124{left:253.589333pt;}
.xaf_c00124{left:254.481333pt;}
.x25_c00124{left:259.344053pt;}
.x70_c00124{left:260.268423pt;}
.x2f_c00124{left:261.976896pt;}
.x5_c00124{left:265.457691pt;}
.xc4_c00124{left:266.781541pt;}
.xb7_c00124{left:268.918429pt;}
.x54_c00124{left:270.843164pt;}
.x12_c00124{left:274.708000pt;}
.x7b_c00124{left:278.245568pt;}
.x83_c00124{left:280.297339pt;}
.x3a_c00124{left:286.224352pt;}
.xc8_c00124{left:287.676440pt;}
.x6_c00124{left:289.607960pt;}
.x80_c00124{left:292.917333pt;}
.x30_c00124{left:296.537952pt;}
.xa2_c00124{left:299.382261pt;}
.x71_c00124{left:302.755953pt;}
.x77_c00124{left:306.581656pt;}
.x4e_c00124{left:309.292000pt;}
.x9b_c00124{left:310.202677pt;}
.x7_c00124{left:314.023032pt;}
.x31_c00124{left:315.743136pt;}
.xa3_c00124{left:316.954053pt;}
.x61_c00124{left:320.599503pt;}
.x84_c00124{left:322.666672pt;}
.x26_c00124{left:324.872053pt;}
.x1b_c00124{left:328.937803pt;}
.x4f_c00124{left:330.365333pt;}
.x8_c00124{left:331.795416pt;}
.x55_c00124{left:334.766460pt;}
.x43_c00124{left:338.520171pt;}
.xb0_c00124{left:340.496000pt;}
.x1c_c00124{left:342.887029pt;}
.x3b_c00124{left:344.557685pt;}
.x27_c00124{left:345.749387pt;}
.x93_c00124{left:349.555808pt;}
.x32_c00124{left:351.053525pt;}
.x7c_c00124{left:352.956437pt;}
.x9_c00124{left:354.918411pt;}
.xbe_c00124{left:356.213333pt;}
.x13_c00124{left:361.346667pt;}
.x81_c00124{left:363.340000pt;}
.x69_c00124{left:364.912645pt;}
.x1d_c00124{left:366.170848pt;}
.xb4_c00124{left:368.522667pt;}
.x5b_c00124{left:371.694177pt;}
.x3c_c00124{left:373.595019pt;}
.x94_c00124{left:374.959808pt;}
.xa_c00124{left:376.704085pt;}
.xbf_c00124{left:380.470667pt;}
.x62_c00124{left:382.983457pt;}
.xb8_c00124{left:384.133271pt;}
.x1e_c00124{left:386.294688pt;}
.x9c_c00124{left:388.691621pt;}
.x5c_c00124{left:389.643320pt;}
.x95_c00124{left:390.842475pt;}
.x56_c00124{left:391.807177pt;}
.x33_c00124{left:394.227851pt;}
.x85_c00124{left:395.649339pt;}
.x44_c00124{left:396.842773pt;}
.xb_c00124{left:402.299459pt;}
.x6a_c00124{left:404.493113pt;}
.x9d_c00124{left:406.938512pt;}
.x78_c00124{left:409.555397pt;}
.xab_c00124{left:410.758667pt;}
.xa4_c00124{left:412.435568pt;}
.x3d_c00124{left:414.872352pt;}
.x34_c00124{left:426.142261pt;}
.x8b_c00124{left:427.301931pt;}
.x14_c00124{left:429.765333pt;}
.x72_c00124{left:431.338545pt;}
.x63_c00124{left:432.337039pt;}
.x50_c00124{left:436.446667pt;}
.xc5_c00124{left:438.627664pt;}
.x86_c00124{left:439.666672pt;}
.xb9_c00124{left:441.444683pt;}
.x28_c00124{left:443.916053pt;}
.x45_c00124{left:446.085600pt;}
.x79_c00124{left:447.399895pt;}
.x3e_c00124{left:449.919019pt;}
.x15_c00124{left:451.126667pt;}
.x64_c00124{left:452.931251pt;}
.x57_c00124{left:455.167807pt;}
.xc9_c00124{left:457.608896pt;}
.x51_c00124{left:461.410667pt;}
.x29_c00124{left:466.001387pt;}
.x1f_c00124{left:467.462037pt;}
.x35_c00124{left:469.348587pt;}
.x96_c00124{left:470.579808pt;}
.x46_c00124{left:474.368917pt;}
.x3f_c00124{left:475.596352pt;}
.xc_c00124{left:476.759573pt;}
.x7d_c00124{left:480.338880pt;}
.x6b_c00124{left:481.596745pt;}
.x58_c00124{left:483.239499pt;}
.x5d_c00124{left:487.128916pt;}
.x36_c00124{left:489.269760pt;}
.x16_c00124{left:490.276000pt;}
.x82_c00124{left:492.058667pt;}
.x8c_c00124{left:493.297680pt;}
.x20_c00124{left:495.508480pt;}
.x2a_c00124{left:497.682720pt;}
.xc6_c00124{left:505.571021pt;}
.xba_c00124{left:513.229619pt;}
.xc0_c00124{left:520.372000pt;}
.x65_c00124{left:522.009725pt;}
.x6c_c00124{left:528.130385pt;}
.x5e_c00124{left:529.348447pt;}
.xbb_c00124{left:531.020511pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mfb_c00125{transform:matrix(0.010854,0.000163,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010854,0.000163,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010854,0.000163,-0.003750,0.249972,0,0);}
.m10a_c00125{transform:matrix(0.011019,0.000176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011019,0.000176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011019,0.000176,-0.003999,0.249968,0,0);}
.m8b_c00125{transform:matrix(0.011189,0.000123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011189,0.000123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011189,0.000123,-0.002750,0.249985,0,0);}
.m10c_c00125{transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);}
.m10b_c00125{transform:matrix(0.019777,0.000316,-0.003999,0.249968,0,0);-ms-transform:matrix(0.019777,0.000316,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.019777,0.000316,-0.003999,0.249968,0,0);}
.m12d_c00125{transform:matrix(0.042905,0.000686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.042905,0.000686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.042905,0.000686,-0.003999,0.249968,0,0);}
.m5c_c00125{transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);}
.m12f_c00125{transform:matrix(0.113320,0.001813,-0.003999,0.249968,0,0);-ms-transform:matrix(0.113320,0.001813,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.113320,0.001813,-0.003999,0.249968,0,0);}
.m14_c00125{transform:matrix(0.127379,0.001274,-0.002500,0.249988,0,0);-ms-transform:matrix(0.127379,0.001274,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.127379,0.001274,-0.002500,0.249988,0,0);}
.m3a_c00125{transform:matrix(0.142916,0.001572,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142916,0.001572,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142916,0.001572,-0.002750,0.249985,0,0);}
.m7f_c00125{transform:matrix(0.145636,0.001602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145636,0.001602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145636,0.001602,-0.002750,0.249985,0,0);}
.mf7_c00125{transform:matrix(0.147433,0.002212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147433,0.002212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147433,0.002212,-0.003750,0.249972,0,0);}
.m45_c00125{transform:matrix(0.147676,0.001624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147676,0.001624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147676,0.001624,-0.002750,0.249985,0,0);}
.mf2_c00125{transform:matrix(0.149023,0.002235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149023,0.002235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149023,0.002235,-0.003750,0.249972,0,0);}
.m74_c00125{transform:matrix(0.149046,0.001640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149046,0.001640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149046,0.001640,-0.002750,0.249985,0,0);}
.mf9_c00125{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);}
.mcc_c00125{transform:matrix(0.151781,0.001670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151781,0.001670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151781,0.001670,-0.002750,0.249985,0,0);}
.m0_c00125{transform:matrix(0.152562,0.001526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152562,0.001526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152562,0.001526,-0.002500,0.249988,0,0);}
.m4_c00125{transform:matrix(0.152777,0.001528,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152777,0.001528,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152777,0.001528,-0.002500,0.249988,0,0);}
.m3c_c00125{transform:matrix(0.153196,0.001685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153196,0.001685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153196,0.001685,-0.002750,0.249985,0,0);}
.m79_c00125{transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);}
.m136_c00125{transform:matrix(0.153945,0.002463,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153945,0.002463,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153945,0.002463,-0.003999,0.249968,0,0);}
.m3e_c00125{transform:matrix(0.154661,0.001701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154661,0.001701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154661,0.001701,-0.002750,0.249985,0,0);}
.m128_c00125{transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);}
.me4_c00125{transform:matrix(0.157695,0.001735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157695,0.001735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157695,0.001735,-0.002750,0.249985,0,0);}
.mc8_c00125{transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158325,0.001742,-0.002750,0.249985,0,0);}
.ma6_c00125{transform:matrix(0.158735,0.001746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158735,0.001746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158735,0.001746,-0.002750,0.249985,0,0);}
.md9_c00125{transform:matrix(0.158905,0.001748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158905,0.001748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158905,0.001748,-0.002750,0.249985,0,0);}
.me5_c00125{transform:matrix(0.159370,0.001753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159370,0.001753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159370,0.001753,-0.002750,0.249985,0,0);}
.ma3_c00125{transform:matrix(0.159560,0.001755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159560,0.001755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159560,0.001755,-0.002750,0.249985,0,0);}
.m6_c00125{transform:matrix(0.159962,0.001600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159962,0.001600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159962,0.001600,-0.002500,0.249988,0,0);}
.m7c_c00125{transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);}
.m95_c00125{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);}
.m2f_c00125{transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);}
.m73_c00125{transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);}
.m37_c00125{transform:matrix(0.163990,0.001804,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163990,0.001804,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163990,0.001804,-0.002750,0.249985,0,0);}
.md2_c00125{transform:matrix(0.164480,0.001809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164480,0.001809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164480,0.001809,-0.002750,0.249985,0,0);}
.m69_c00125{transform:matrix(0.165070,0.001816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165070,0.001816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165070,0.001816,-0.002750,0.249985,0,0);}
.mf6_c00125{transform:matrix(0.165116,0.002477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165116,0.002477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165116,0.002477,-0.003750,0.249972,0,0);}
.m41_c00125{transform:matrix(0.165340,0.001819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165340,0.001819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165340,0.001819,-0.002750,0.249985,0,0);}
.m90_c00125{transform:matrix(0.166045,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166045,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166045,0.001826,-0.002750,0.249985,0,0);}
.m47_c00125{transform:matrix(0.166535,0.001832,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166535,0.001832,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166535,0.001832,-0.002750,0.249985,0,0);}
.m5e_c00125{transform:matrix(0.167295,0.001840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167295,0.001840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167295,0.001840,-0.002750,0.249985,0,0);}
.m66_c00125{transform:matrix(0.167665,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167665,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167665,0.001844,-0.002750,0.249985,0,0);}
.maa_c00125{transform:matrix(0.168055,0.001849,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168055,0.001849,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168055,0.001849,-0.002750,0.249985,0,0);}
.mb4_c00125{transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169210,0.001861,-0.002750,0.249985,0,0);}
.m118_c00125{transform:matrix(0.169666,0.002545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169666,0.002545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169666,0.002545,-0.003750,0.249972,0,0);}
.m13_c00125{transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169707,0.001697,-0.002500,0.249988,0,0);}
.m11b_c00125{transform:matrix(0.169906,0.002549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169906,0.002549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169906,0.002549,-0.003750,0.249972,0,0);}
.m29_c00125{transform:matrix(0.169972,0.001700,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169972,0.001700,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169972,0.001700,-0.002500,0.249988,0,0);}
.m9a_c00125{transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);}
.mc9_c00125{transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);}
.m8e_c00125{transform:matrix(0.171270,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171270,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171270,0.001884,-0.002750,0.249985,0,0);}
.m4c_c00125{transform:matrix(0.171280,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171280,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171280,0.001884,-0.002750,0.249985,0,0);}
.m12a_c00125{transform:matrix(0.171428,0.002743,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171428,0.002743,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171428,0.002743,-0.003999,0.249968,0,0);}
.mbe_c00125{transform:matrix(0.172010,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172010,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172010,0.001892,-0.002750,0.249985,0,0);}
.m38_c00125{transform:matrix(0.172065,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172065,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172065,0.001893,-0.002750,0.249985,0,0);}
.mce_c00125{transform:matrix(0.172340,0.001896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172340,0.001896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172340,0.001896,-0.002750,0.249985,0,0);}
.m12c_c00125{transform:matrix(0.172948,0.002767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172948,0.002767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172948,0.002767,-0.003999,0.249968,0,0);}
.m62_c00125{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);}
.m6d_c00125{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);}
.mc5_c00125{transform:matrix(0.173689,0.001911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173689,0.001911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173689,0.001911,-0.002750,0.249985,0,0);}
.m134_c00125{transform:matrix(0.174083,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174083,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174083,0.002785,-0.003999,0.249968,0,0);}
.mbd_c00125{transform:matrix(0.174159,0.001916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174159,0.001916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174159,0.001916,-0.002750,0.249985,0,0);}
.ma_c00125{transform:matrix(0.174741,0.001747,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174741,0.001747,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174741,0.001747,-0.002500,0.249988,0,0);}
.m3f_c00125{transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176169,0.001938,-0.002750,0.249985,0,0);}
.m63_c00125{transform:matrix(0.176594,0.001943,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176594,0.001943,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176594,0.001943,-0.002750,0.249985,0,0);}
.md7_c00125{transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);}
.mb2_c00125{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);}
.m7_c00125{transform:matrix(0.177476,0.001775,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177476,0.001775,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177476,0.001775,-0.002500,0.249988,0,0);}
.m23_c00125{transform:matrix(0.178271,0.001783,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178271,0.001783,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178271,0.001783,-0.002500,0.249988,0,0);}
.m60_c00125{transform:matrix(0.178479,0.001963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178479,0.001963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178479,0.001963,-0.002750,0.249985,0,0);}
.m67_c00125{transform:matrix(0.178729,0.001966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178729,0.001966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178729,0.001966,-0.002750,0.249985,0,0);}
.m39_c00125{transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178879,0.001968,-0.002750,0.249985,0,0);}
.m11e_c00125{transform:matrix(0.179580,0.002694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179580,0.002694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179580,0.002694,-0.003750,0.249972,0,0);}
.m1_c00125{transform:matrix(0.180256,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180256,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180256,0.001803,-0.002500,0.249988,0,0);}
.m107_c00125{transform:matrix(0.180292,0.002885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180292,0.002885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180292,0.002885,-0.003999,0.249968,0,0);}
.m7b_c00125{transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180419,0.001985,-0.002750,0.249985,0,0);}
.m11f_c00125{transform:matrix(0.180940,0.002714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180940,0.002714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180940,0.002714,-0.003750,0.249972,0,0);}
.mc_c00125{transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);}
.m27_c00125{transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);}
.m6c_c00125{transform:matrix(0.181724,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181724,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181724,0.001999,-0.002750,0.249985,0,0);}
.m6b_c00125{transform:matrix(0.182544,0.002008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182544,0.002008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182544,0.002008,-0.002750,0.249985,0,0);}
.m129_c00125{transform:matrix(0.182662,0.002923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182662,0.002923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182662,0.002923,-0.003999,0.249968,0,0);}
.m116_c00125{transform:matrix(0.183019,0.002745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183019,0.002745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183019,0.002745,-0.003750,0.249972,0,0);}
.m43_c00125{transform:matrix(0.183149,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183149,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183149,0.002015,-0.002750,0.249985,0,0);}
.ma9_c00125{transform:matrix(0.183344,0.002017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183344,0.002017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183344,0.002017,-0.002750,0.249985,0,0);}
.m3d_c00125{transform:matrix(0.183829,0.002022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183829,0.002022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183829,0.002022,-0.002750,0.249985,0,0);}
.mb0_c00125{transform:matrix(0.183904,0.002023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183904,0.002023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183904,0.002023,-0.002750,0.249985,0,0);}
.m61_c00125{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);}
.mc7_c00125{transform:matrix(0.184839,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184839,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184839,0.002033,-0.002750,0.249985,0,0);}
.m117_c00125{transform:matrix(0.184849,0.002773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184849,0.002773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184849,0.002773,-0.003750,0.249972,0,0);}
.m97_c00125{transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);}
.m11_c00125{transform:matrix(0.185551,0.001856,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185551,0.001856,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185551,0.001856,-0.002500,0.249988,0,0);}
.mbb_c00125{transform:matrix(0.186019,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186019,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186019,0.002046,-0.002750,0.249985,0,0);}
.mba_c00125{transform:matrix(0.186119,0.002047,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186119,0.002047,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186119,0.002047,-0.002750,0.249985,0,0);}
.mfe_c00125{transform:matrix(0.186666,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186666,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186666,0.002987,-0.003999,0.249968,0,0);}
.m81_c00125{transform:matrix(0.186699,0.002054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186699,0.002054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186699,0.002054,-0.002750,0.249985,0,0);}
.mf_c00125{transform:matrix(0.186716,0.001867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186716,0.001867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186716,0.001867,-0.002500,0.249988,0,0);}
.m1b_c00125{transform:matrix(0.186896,0.001869,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186896,0.001869,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186896,0.001869,-0.002500,0.249988,0,0);}
.m120_c00125{transform:matrix(0.186954,0.002804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186954,0.002804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186954,0.002804,-0.003750,0.249972,0,0);}
.m100_c00125{transform:matrix(0.187551,0.003001,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187551,0.003001,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187551,0.003001,-0.003999,0.249968,0,0);}
.mc4_c00125{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);}
.m2_c00125{transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187886,0.001879,-0.002500,0.249988,0,0);}
.m12_c00125{transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);}
.m9_c00125{transform:matrix(0.188186,0.001882,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188186,0.001882,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188186,0.001882,-0.002500,0.249988,0,0);}
.m7a_c00125{transform:matrix(0.188484,0.002073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188484,0.002073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188484,0.002073,-0.002750,0.249985,0,0);}
.m25_c00125{transform:matrix(0.189331,0.001893,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189331,0.001893,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189331,0.001893,-0.002500,0.249988,0,0);}
.m77_c00125{transform:matrix(0.189374,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189374,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189374,0.002083,-0.002750,0.249985,0,0);}
.m8_c00125{transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189416,0.001894,-0.002500,0.249988,0,0);}
.m133_c00125{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);}
.m125_c00125{transform:matrix(0.189656,0.003034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189656,0.003034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189656,0.003034,-0.003999,0.249968,0,0);}
.m48_c00125{transform:matrix(0.189744,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189744,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189744,0.002087,-0.002750,0.249985,0,0);}
.mc3_c00125{transform:matrix(0.190278,0.002093,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190278,0.002093,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190278,0.002093,-0.002750,0.249985,0,0);}
.mb_c00125{transform:matrix(0.190690,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190690,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190690,0.001907,-0.002500,0.249988,0,0);}
.m82_c00125{transform:matrix(0.191143,0.002103,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191143,0.002103,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191143,0.002103,-0.002750,0.249985,0,0);}
.m68_c00125{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);}
.mf8_c00125{transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);}
.m16_c00125{transform:matrix(0.191565,0.001916,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191565,0.001916,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191565,0.001916,-0.002500,0.249988,0,0);}
.m92_c00125{transform:matrix(0.191918,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191918,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191918,0.002111,-0.002750,0.249985,0,0);}
.m49_c00125{transform:matrix(0.192203,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192203,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192203,0.002114,-0.002750,0.249985,0,0);}
.m33_c00125{transform:matrix(0.192205,0.001922,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192205,0.001922,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192205,0.001922,-0.002500,0.249988,0,0);}
.mf4_c00125{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);}
.ma2_c00125{transform:matrix(0.192618,0.002119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192618,0.002119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192618,0.002119,-0.002750,0.249985,0,0);}
.mfd_c00125{transform:matrix(0.192665,0.003083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192665,0.003083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192665,0.003083,-0.003999,0.249968,0,0);}
.mc2_c00125{transform:matrix(0.192778,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192778,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192778,0.002121,-0.002750,0.249985,0,0);}
.m31_c00125{transform:matrix(0.192860,0.001929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192860,0.001929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192860,0.001929,-0.002500,0.249988,0,0);}
.m5_c00125{transform:matrix(0.192900,0.001929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192900,0.001929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192900,0.001929,-0.002500,0.249988,0,0);}
.m3b_c00125{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);}
.m72_c00125{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);}
.m5b_c00125{transform:matrix(0.193533,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193533,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193533,0.002129,-0.002750,0.249985,0,0);}
.m70_c00125{transform:matrix(0.193648,0.002130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193648,0.002130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193648,0.002130,-0.002750,0.249985,0,0);}
.m91_c00125{transform:matrix(0.193723,0.002131,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193723,0.002131,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193723,0.002131,-0.002750,0.249985,0,0);}
.m6f_c00125{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);}
.m5f_c00125{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);}
.m65_c00125{transform:matrix(0.195473,0.002150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195473,0.002150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195473,0.002150,-0.002750,0.249985,0,0);}
.mc0_c00125{transform:matrix(0.195543,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195543,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195543,0.002151,-0.002750,0.249985,0,0);}
.m4d_c00125{transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);}
.m40_c00125{transform:matrix(0.196658,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196658,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196658,0.002163,-0.002750,0.249985,0,0);}
.mb9_c00125{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);}
.m113_c00125{transform:matrix(0.197100,0.003154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197100,0.003154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197100,0.003154,-0.003999,0.249968,0,0);}
.m36_c00125{transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);}
.mfc_c00125{transform:matrix(0.197693,0.002965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197693,0.002965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197693,0.002965,-0.003750,0.249972,0,0);}
.m83_c00125{transform:matrix(0.198008,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198008,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198008,0.002178,-0.002750,0.249985,0,0);}
.m1a_c00125{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);}
.m53_c00125{transform:matrix(0.198463,0.002183,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198463,0.002183,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198463,0.002183,-0.002750,0.249985,0,0);}
.m30_c00125{transform:matrix(0.198565,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198565,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198565,0.001986,-0.002500,0.249988,0,0);}
.m109_c00125{transform:matrix(0.198605,0.003178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198605,0.003178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198605,0.003178,-0.003999,0.249968,0,0);}
.m103_c00125{transform:matrix(0.198925,0.003183,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198925,0.003183,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198925,0.003183,-0.003999,0.249968,0,0);}
.m78_c00125{transform:matrix(0.199073,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199073,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199073,0.002190,-0.002750,0.249985,0,0);}
.m123_c00125{transform:matrix(0.199284,0.003189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199284,0.003189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199284,0.003189,-0.003999,0.249968,0,0);}
.m4e_c00125{transform:matrix(0.199343,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199343,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199343,0.002193,-0.002750,0.249985,0,0);}
.mad_c00125{transform:matrix(0.199468,0.002194,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199468,0.002194,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199468,0.002194,-0.002750,0.249985,0,0);}
.m57_c00125{transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);}
.ma0_c00125{transform:matrix(0.199563,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199563,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199563,0.002195,-0.002750,0.249985,0,0);}
.m2b_c00125{transform:matrix(0.200800,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200800,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200800,0.002008,-0.002500,0.249988,0,0);}
.m127_c00125{transform:matrix(0.201004,0.003216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201004,0.003216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201004,0.003216,-0.003999,0.249968,0,0);}
.m8a_c00125{transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);}
.m42_c00125{transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);}
.mb8_c00125{transform:matrix(0.202178,0.002224,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202178,0.002224,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202178,0.002224,-0.002750,0.249985,0,0);}
.m24_c00125{transform:matrix(0.202370,0.002024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202370,0.002024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202370,0.002024,-0.002500,0.249988,0,0);}
.m26_c00125{transform:matrix(0.203300,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203300,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203300,0.002033,-0.002500,0.249988,0,0);}
.md_c00125{transform:matrix(0.203485,0.002035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203485,0.002035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203485,0.002035,-0.002500,0.249988,0,0);}
.me_c00125{transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203500,0.002035,-0.002500,0.249988,0,0);}
.m2e_c00125{transform:matrix(0.203670,0.002037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203670,0.002037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203670,0.002037,-0.002500,0.249988,0,0);}
.mb7_c00125{transform:matrix(0.204288,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204288,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204288,0.002247,-0.002750,0.249985,0,0);}
.m19_c00125{transform:matrix(0.204860,0.002049,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204860,0.002049,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204860,0.002049,-0.002500,0.249988,0,0);}
.m105_c00125{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);}
.m98_c00125{transform:matrix(0.205178,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205178,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205178,0.002257,-0.002750,0.249985,0,0);}
.m93_c00125{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);}
.m56_c00125{transform:matrix(0.205448,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205448,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205448,0.002260,-0.002750,0.249985,0,0);}
.mff_c00125{transform:matrix(0.205589,0.003289,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205589,0.003289,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205589,0.003289,-0.003999,0.249968,0,0);}
.mb1_c00125{transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);}
.md0_c00125{transform:matrix(0.206243,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206243,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206243,0.002269,-0.002750,0.249985,0,0);}
.mcd_c00125{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);}
.m2a_c00125{transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);}
.m96_c00125{transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);}
.m5d_c00125{transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207522,0.002283,-0.002750,0.249985,0,0);}
.m9f_c00125{transform:matrix(0.208057,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208057,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208057,0.002289,-0.002750,0.249985,0,0);}
.mcf_c00125{transform:matrix(0.208462,0.002293,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208462,0.002293,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208462,0.002293,-0.002750,0.249985,0,0);}
.m52_c00125{transform:matrix(0.209407,0.002303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209407,0.002303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209407,0.002303,-0.002750,0.249985,0,0);}
.m8c_c00125{transform:matrix(0.209442,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209442,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209442,0.002304,-0.002750,0.249985,0,0);}
.mfa_c00125{transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);}
.m84_c00125{transform:matrix(0.210832,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210832,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210832,0.002319,-0.002750,0.249985,0,0);}
.m17_c00125{transform:matrix(0.211124,0.002111,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211124,0.002111,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211124,0.002111,-0.002500,0.249988,0,0);}
.m11a_c00125{transform:matrix(0.211216,0.003168,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211216,0.003168,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211216,0.003168,-0.003750,0.249972,0,0);}
.m9e_c00125{transform:matrix(0.211262,0.002324,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211262,0.002324,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211262,0.002324,-0.002750,0.249985,0,0);}
.m138_c00125{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);}
.mf3_c00125{transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);}
.m6a_c00125{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);}
.mbf_c00125{transform:matrix(0.212357,0.002336,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212357,0.002336,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212357,0.002336,-0.002750,0.249985,0,0);}
.m99_c00125{transform:matrix(0.212702,0.002340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212702,0.002340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212702,0.002340,-0.002750,0.249985,0,0);}
.m9d_c00125{transform:matrix(0.212982,0.002343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212982,0.002343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212982,0.002343,-0.002750,0.249985,0,0);}
.m115_c00125{transform:matrix(0.213143,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213143,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213143,0.003410,-0.003999,0.249968,0,0);}
.m28_c00125{transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);}
.m35_c00125{transform:matrix(0.213964,0.002140,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213964,0.002140,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213964,0.002140,-0.002500,0.249988,0,0);}
.ma5_c00125{transform:matrix(0.214747,0.002362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214747,0.002362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214747,0.002362,-0.002750,0.249985,0,0);}
.m34_c00125{transform:matrix(0.215894,0.002159,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215894,0.002159,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215894,0.002159,-0.002500,0.249988,0,0);}
.m55_c00125{transform:matrix(0.216747,0.002384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216747,0.002384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216747,0.002384,-0.002750,0.249985,0,0);}
.ma8_c00125{transform:matrix(0.217127,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217127,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217127,0.002388,-0.002750,0.249985,0,0);}
.mc6_c00125{transform:matrix(0.217402,0.002391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217402,0.002391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217402,0.002391,-0.002750,0.249985,0,0);}
.m7e_c00125{transform:matrix(0.217862,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217862,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217862,0.002396,-0.002750,0.249985,0,0);}
.md4_c00125{transform:matrix(0.218187,0.002400,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218187,0.002400,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218187,0.002400,-0.002750,0.249985,0,0);}
.m8f_c00125{transform:matrix(0.218827,0.002407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218827,0.002407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218827,0.002407,-0.002750,0.249985,0,0);}
.mb6_c00125{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);}
.ma4_c00125{transform:matrix(0.219987,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219987,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219987,0.002420,-0.002750,0.249985,0,0);}
.m2c_c00125{transform:matrix(0.220744,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220744,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220744,0.002207,-0.002500,0.249988,0,0);}
.m9b_c00125{transform:matrix(0.221317,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221317,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221317,0.002434,-0.002750,0.249985,0,0);}
.md3_c00125{transform:matrix(0.221452,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221452,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221452,0.002436,-0.002750,0.249985,0,0);}
.md6_c00125{transform:matrix(0.221532,0.002437,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221532,0.002437,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221532,0.002437,-0.002750,0.249985,0,0);}
.m22_c00125{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);}
.mae_c00125{transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);}
.m8d_c00125{transform:matrix(0.221842,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221842,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221842,0.002440,-0.002750,0.249985,0,0);}
.mb3_c00125{transform:matrix(0.222637,0.002449,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222637,0.002449,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222637,0.002449,-0.002750,0.249985,0,0);}
.m2d_c00125{transform:matrix(0.222969,0.002230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222969,0.002230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222969,0.002230,-0.002500,0.249988,0,0);}
.mef_c00125{transform:matrix(0.223180,0.003348,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223180,0.003348,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223180,0.003348,-0.003750,0.249972,0,0);}
.m75_c00125{transform:matrix(0.223476,0.002458,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223476,0.002458,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223476,0.002458,-0.002750,0.249985,0,0);}
.mf5_c00125{transform:matrix(0.223970,0.003360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223970,0.003360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223970,0.003360,-0.003750,0.249972,0,0);}
.m130_c00125{transform:matrix(0.224366,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224366,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224366,0.003590,-0.003999,0.249968,0,0);}
.ma7_c00125{transform:matrix(0.225356,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225356,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225356,0.002479,-0.002750,0.249985,0,0);}
.mca_c00125{transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);}
.m3_c00125{transform:matrix(0.227274,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227274,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227274,0.002273,-0.002500,0.249988,0,0);}
.mac_c00125{transform:matrix(0.227316,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227316,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227316,0.002500,-0.002750,0.249985,0,0);}
.mab_c00125{transform:matrix(0.227476,0.002502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227476,0.002502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227476,0.002502,-0.002750,0.249985,0,0);}
.m9c_c00125{transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);}
.m80_c00125{transform:matrix(0.227786,0.002506,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227786,0.002506,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227786,0.002506,-0.002750,0.249985,0,0);}
.m12e_c00125{transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);}
.m32_c00125{transform:matrix(0.228059,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228059,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228059,0.002281,-0.002500,0.249988,0,0);}
.m101_c00125{transform:matrix(0.228841,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228841,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228841,0.003661,-0.003999,0.249968,0,0);}
.m119_c00125{transform:matrix(0.229294,0.003439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229294,0.003439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229294,0.003439,-0.003750,0.249972,0,0);}
.m1c_c00125{transform:matrix(0.229689,0.002297,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229689,0.002297,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229689,0.002297,-0.002500,0.249988,0,0);}
.m21_c00125{transform:matrix(0.231593,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231593,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231593,0.002316,-0.002500,0.249988,0,0);}
.m11d_c00125{transform:matrix(0.231684,0.003475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231684,0.003475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231684,0.003475,-0.003750,0.249972,0,0);}
.m4f_c00125{transform:matrix(0.233091,0.002564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233091,0.002564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233091,0.002564,-0.002750,0.249985,0,0);}
.mb5_c00125{transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);}
.m1d_c00125{transform:matrix(0.233708,0.002337,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233708,0.002337,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233708,0.002337,-0.002500,0.249988,0,0);}
.m6e_c00125{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);}
.md1_c00125{transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);}
.me2_c00125{transform:matrix(0.235416,0.002590,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235416,0.002590,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235416,0.002590,-0.002750,0.249985,0,0);}
.m4a_c00125{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m11c_c00125{transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);}
.m126_c00125{transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);}
.m64_c00125{transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);}
.m10_c00125{transform:matrix(0.238453,0.002385,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238453,0.002385,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238453,0.002385,-0.002500,0.249988,0,0);}
.m87_c00125{transform:matrix(0.239885,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239885,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239885,0.002639,-0.002750,0.249985,0,0);}
.m1e_c00125{transform:matrix(0.240203,0.002402,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240203,0.002402,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240203,0.002402,-0.002500,0.249988,0,0);}
.m51_c00125{transform:matrix(0.240835,0.002649,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240835,0.002649,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240835,0.002649,-0.002750,0.249985,0,0);}
.me7_c00125{transform:matrix(0.240978,0.003615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240978,0.003615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240978,0.003615,-0.003750,0.249972,0,0);}
.mcb_c00125{transform:matrix(0.241670,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241670,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241670,0.002658,-0.002750,0.249985,0,0);}
.mbc_c00125{transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241700,0.002659,-0.002750,0.249985,0,0);}
.m76_c00125{transform:matrix(0.242450,0.002667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242450,0.002667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242450,0.002667,-0.002750,0.249985,0,0);}
.me9_c00125{transform:matrix(0.243228,0.003648,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243228,0.003648,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243228,0.003648,-0.003750,0.249972,0,0);}
.m132_c00125{transform:matrix(0.243354,0.003894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243354,0.003894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243354,0.003894,-0.003999,0.249968,0,0);}
.md8_c00125{transform:matrix(0.243980,0.002684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243980,0.002684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243980,0.002684,-0.002750,0.249985,0,0);}
.m12b_c00125{transform:matrix(0.244554,0.003913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244554,0.003913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244554,0.003913,-0.003999,0.249968,0,0);}
.m15_c00125{transform:matrix(0.245318,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245318,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245318,0.002453,-0.002500,0.249988,0,0);}
.m18_c00125{transform:matrix(0.247998,0.002480,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247998,0.002480,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247998,0.002480,-0.002500,0.249988,0,0);}
.m122_c00125{transform:matrix(0.253018,0.004048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253018,0.004048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253018,0.004048,-0.003999,0.249968,0,0);}
.m7d_c00125{transform:matrix(0.254515,0.002800,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254515,0.002800,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254515,0.002800,-0.002750,0.249985,0,0);}
.mf0_c00125{transform:matrix(0.254811,0.003822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254811,0.003822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254811,0.003822,-0.003750,0.249972,0,0);}
.m20_c00125{transform:matrix(0.256027,0.002560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256027,0.002560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256027,0.002560,-0.002500,0.249988,0,0);}
.m46_c00125{transform:matrix(0.259889,0.002859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259889,0.002859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259889,0.002859,-0.002750,0.249985,0,0);}
.ma1_c00125{transform:matrix(0.262539,0.002888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262539,0.002888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262539,0.002888,-0.002750,0.249985,0,0);}
.mc1_c00125{transform:matrix(0.263649,0.002900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263649,0.002900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263649,0.002900,-0.002750,0.249985,0,0);}
.maf_c00125{transform:matrix(0.264859,0.002913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264859,0.002913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264859,0.002913,-0.002750,0.249985,0,0);}
.m5a_c00125{transform:matrix(0.265534,0.002921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265534,0.002921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265534,0.002921,-0.002750,0.249985,0,0);}
.m85_c00125{transform:matrix(0.265579,0.002921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265579,0.002921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265579,0.002921,-0.002750,0.249985,0,0);}
.m131_c00125{transform:matrix(0.266756,0.004268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266756,0.004268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266756,0.004268,-0.003999,0.249968,0,0);}
.m112_c00125{transform:matrix(0.267631,0.004282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267631,0.004282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267631,0.004282,-0.003999,0.249968,0,0);}
.m54_c00125{transform:matrix(0.268439,0.002953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268439,0.002953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268439,0.002953,-0.002750,0.249985,0,0);}
.m50_c00125{transform:matrix(0.268794,0.002957,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268794,0.002957,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268794,0.002957,-0.002750,0.249985,0,0);}
.m59_c00125{transform:matrix(0.270489,0.002975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270489,0.002975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270489,0.002975,-0.002750,0.249985,0,0);}
.me0_c00125{transform:matrix(0.270964,0.002981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270964,0.002981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270964,0.002981,-0.002750,0.249985,0,0);}
.mee_c00125{transform:matrix(0.271010,0.004065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271010,0.004065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271010,0.004065,-0.003750,0.249972,0,0);}
.m71_c00125{transform:matrix(0.271919,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271919,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271919,0.002991,-0.002750,0.249985,0,0);}
.m124_c00125{transform:matrix(0.274885,0.004398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274885,0.004398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274885,0.004398,-0.003999,0.249968,0,0);}
.mdd_c00125{transform:matrix(0.278698,0.003066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278698,0.003066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278698,0.003066,-0.002750,0.249985,0,0);}
.m108_c00125{transform:matrix(0.279134,0.004466,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279134,0.004466,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279134,0.004466,-0.003999,0.249968,0,0);}
.m1f_c00125{transform:matrix(0.282011,0.002820,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282011,0.002820,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282011,0.002820,-0.002500,0.249988,0,0);}
.mf1_c00125{transform:matrix(0.283628,0.004254,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283628,0.004254,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283628,0.004254,-0.003750,0.249972,0,0);}
.m89_c00125{transform:matrix(0.286798,0.003155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286798,0.003155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286798,0.003155,-0.002750,0.249985,0,0);}
.m86_c00125{transform:matrix(0.292917,0.003222,-0.002750,0.249985,0,0);-ms-transform:matrix(0.292917,0.003222,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.292917,0.003222,-0.002750,0.249985,0,0);}
.m94_c00125{transform:matrix(0.295232,0.003248,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295232,0.003248,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295232,0.003248,-0.002750,0.249985,0,0);}
.m44_c00125{transform:matrix(0.298332,0.003282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298332,0.003282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298332,0.003282,-0.002750,0.249985,0,0);}
.m88_c00125{transform:matrix(0.299077,0.003290,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299077,0.003290,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299077,0.003290,-0.002750,0.249985,0,0);}
.m139_c00125{transform:matrix(0.300132,0.004802,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300132,0.004802,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300132,0.004802,-0.003999,0.249968,0,0);}
.m110_c00125{transform:matrix(0.301166,0.004819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301166,0.004819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301166,0.004819,-0.003999,0.249968,0,0);}
.m4b_c00125{transform:matrix(0.304302,0.003347,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304302,0.003347,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304302,0.003347,-0.002750,0.249985,0,0);}
.md5_c00125{transform:matrix(0.305826,0.003364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305826,0.003364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305826,0.003364,-0.002750,0.249985,0,0);}
.m58_c00125{transform:matrix(0.321021,0.003531,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321021,0.003531,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321021,0.003531,-0.002750,0.249985,0,0);}
.m137_c00125{transform:matrix(0.331698,0.005307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.331698,0.005307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.331698,0.005307,-0.003999,0.249968,0,0);}
.me8_c00125{transform:matrix(0.363654,0.005455,-0.003750,0.249972,0,0);-ms-transform:matrix(0.363654,0.005455,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.363654,0.005455,-0.003750,0.249972,0,0);}
.mea_c00125{transform:matrix(0.367329,0.005510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.367329,0.005510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.367329,0.005510,-0.003750,0.249972,0,0);}
.me6_c00125{transform:matrix(0.374193,0.005613,-0.003750,0.249972,0,0);-ms-transform:matrix(0.374193,0.005613,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.374193,0.005613,-0.003750,0.249972,0,0);}
.m13a_c00125{transform:matrix(0.394854,0.006318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394854,0.006318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394854,0.006318,-0.003999,0.249968,0,0);}
.m104_c00125{transform:matrix(0.396269,0.006340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.396269,0.006340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.396269,0.006340,-0.003999,0.249968,0,0);}
.mda_c00125{transform:matrix(0.421939,0.004641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.421939,0.004641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.421939,0.004641,-0.002750,0.249985,0,0);}
.m106_c00125{transform:matrix(0.424941,0.006799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.424941,0.006799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.424941,0.006799,-0.003999,0.249968,0,0);}
.mdb_c00125{transform:matrix(0.438273,0.004821,-0.002750,0.249985,0,0);-ms-transform:matrix(0.438273,0.004821,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.438273,0.004821,-0.002750,0.249985,0,0);}
.m111_c00125{transform:matrix(0.466165,0.007459,-0.003999,0.249968,0,0);-ms-transform:matrix(0.466165,0.007459,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.466165,0.007459,-0.003999,0.249968,0,0);}
.mdc_c00125{transform:matrix(0.535313,0.005888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.535313,0.005888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.535313,0.005888,-0.002750,0.249985,0,0);}
.m135_c00125{transform:matrix(0.566802,0.009069,-0.003999,0.249968,0,0);-ms-transform:matrix(0.566802,0.009069,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.566802,0.009069,-0.003999,0.249968,0,0);}
.m114_c00125{transform:matrix(0.569922,0.009119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.569922,0.009119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.569922,0.009119,-0.003999,0.249968,0,0);}
.me1_c00125{transform:matrix(0.575520,0.006331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.575520,0.006331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.575520,0.006331,-0.002750,0.249985,0,0);}
.m102_c00125{transform:matrix(0.587375,0.009398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.587375,0.009398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.587375,0.009398,-0.003999,0.249968,0,0);}
.me3_c00125{transform:matrix(0.675114,0.007426,-0.002750,0.249985,0,0);-ms-transform:matrix(0.675114,0.007426,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.675114,0.007426,-0.002750,0.249985,0,0);}
.meb_c00125{transform:matrix(0.677749,0.010166,-0.003750,0.249972,0,0);-ms-transform:matrix(0.677749,0.010166,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.677749,0.010166,-0.003750,0.249972,0,0);}
.mde_c00125{transform:matrix(0.690033,0.007590,-0.002750,0.249985,0,0);-ms-transform:matrix(0.690033,0.007590,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.690033,0.007590,-0.002750,0.249985,0,0);}
.m121_c00125{transform:matrix(0.690507,0.010358,-0.003750,0.249972,0,0);-ms-transform:matrix(0.690507,0.010358,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.690507,0.010358,-0.003750,0.249972,0,0);}
.m10f_c00125{transform:matrix(0.775356,0.012406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.775356,0.012406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.775356,0.012406,-0.003999,0.249968,0,0);}
.mec_c00125{transform:matrix(0.787721,0.011816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.787721,0.011816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.787721,0.011816,-0.003750,0.249972,0,0);}
.med_c00125{transform:matrix(0.789531,0.011843,-0.003750,0.249972,0,0);-ms-transform:matrix(0.789531,0.011843,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.789531,0.011843,-0.003750,0.249972,0,0);}
.mdf_c00125{transform:matrix(0.792977,0.008723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.792977,0.008723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.792977,0.008723,-0.002750,0.249985,0,0);}
.m10e_c00125{transform:matrix(0.810756,0.012972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.810756,0.012972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.810756,0.012972,-0.003999,0.249968,0,0);}
.m10d_c00125{transform:matrix(0.937830,0.015005,-0.003999,0.249968,0,0);-ms-transform:matrix(0.937830,0.015005,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.937830,0.015005,-0.003999,0.249968,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;}
.fc0_c00125{color:transparent;}
.fsc_c00125{font-size:63.003811px;}
.fs6_c00125{font-size:64.053875px;}
.fsd_c00125{font-size:65.103938px;}
.fs7_c00125{font-size:66.154002px;}
.fs2_c00125{font-size:67.203360px;}
.fsb_c00125{font-size:67.204065px;}
.fs11_c00125{font-size:67.208601px;}
.fs9_c00125{font-size:68.254129px;}
.fs1_c00125{font-size:69.303465px;}
.fs5_c00125{font-size:69.304193px;}
.fs10_c00125{font-size:69.308870px;}
.fs3_c00125{font-size:70.353517px;}
.fsa_c00125{font-size:70.354256px;}
.fse_c00125{font-size:70.357914px;}
.fs12_c00125{font-size:70.359004px;}
.fs0_c00125{font-size:71.403570px;}
.fsf_c00125{font-size:71.409139px;}
.fs4_c00125{font-size:72.454383px;}
.fs8_c00125{font-size:78.754764px;}
.y0_c00125{bottom:0.000000px;}
.y13b_c00125{bottom:147.820464px;}
.y13a_c00125{bottom:147.998904px;}
.y139_c00125{bottom:148.768224px;}
.y138_c00125{bottom:148.958592px;}
.y137_c00125{bottom:149.254428px;}
.y136_c00125{bottom:150.097656px;}
.y135_c00125{bottom:151.005168px;}
.y134_c00125{bottom:151.915956px;}
.y133_c00125{bottom:152.390040px;}
.y132_c00125{bottom:153.322812px;}
.y131_c00125{bottom:154.172652px;}
.y130_c00125{bottom:154.437660px;}
.y12f_c00125{bottom:170.181072px;}
.y12e_c00125{bottom:171.054888px;}
.y12d_c00125{bottom:172.261560px;}
.y12c_c00125{bottom:172.934280px;}
.y12b_c00125{bottom:173.262408px;}
.y12a_c00125{bottom:173.888928px;}
.y129_c00125{bottom:174.627624px;}
.y128_c00125{bottom:174.960360px;}
.y127_c00125{bottom:175.647144px;}
.y126_c00125{bottom:176.360136px;}
.y125_c00125{bottom:176.694600px;}
.y124_c00125{bottom:176.961504px;}
.y123_c00125{bottom:177.954000px;}
.y122_c00125{bottom:193.145790px;}
.y121_c00125{bottom:193.869120px;}
.y120_c00125{bottom:194.184975px;}
.y11f_c00125{bottom:195.177360px;}
.y11e_c00125{bottom:195.834180px;}
.y11d_c00125{bottom:196.396995px;}
.y11c_c00125{bottom:196.976010px;}
.y11b_c00125{bottom:198.045390px;}
.y11a_c00125{bottom:198.649267px;}
.y119_c00125{bottom:199.195590px;}
.y118_c00125{bottom:200.176185px;}
.y117_c00125{bottom:200.613000px;}
.y116_c00125{bottom:216.658344px;}
.y115_c00125{bottom:217.793160px;}
.y114_c00125{bottom:217.939704px;}
.y113_c00125{bottom:219.692616px;}
.y112_c00125{bottom:219.990024px;}
.y111_c00125{bottom:220.512336px;}
.y110_c00125{bottom:222.194808px;}
.y10f_c00125{bottom:222.804336px;}
.y10e_c00125{bottom:223.836000px;}
.y10d_c00125{bottom:261.521940px;}
.y10c_c00125{bottom:264.230136px;}
.y10b_c00125{bottom:267.182460px;}
.y10a_c00125{bottom:269.327088px;}
.y109_c00125{bottom:269.730744px;}
.y108_c00125{bottom:285.694980px;}
.y107_c00125{bottom:286.381692px;}
.y106_c00125{bottom:287.423028px;}
.y105_c00125{bottom:287.953836px;}
.y104_c00125{bottom:288.544500px;}
.y103_c00125{bottom:289.764108px;}
.y102_c00125{bottom:290.100948px;}
.y101_c00125{bottom:290.488788px;}
.y100_c00125{bottom:291.106548px;}
.yff_c00125{bottom:291.677964px;}
.yfe_c00125{bottom:292.411500px;}
.yfd_c00125{bottom:310.405718px;}
.yfc_c00125{bottom:310.501763px;}
.yfb_c00125{bottom:311.369775px;}
.yfa_c00125{bottom:311.637158px;}
.yf9_c00125{bottom:312.265988px;}
.yf8_c00125{bottom:312.441495px;}
.yf7_c00125{bottom:313.070820px;}
.yf6_c00125{bottom:313.405913px;}
.yf5_c00125{bottom:313.949340px;}
.yf4_c00125{bottom:314.230320px;}
.yf3_c00125{bottom:314.405790px;}
.yf2_c00125{bottom:314.913690px;}
.yf1_c00125{bottom:315.089115px;}
.yf0_c00125{bottom:330.852450px;}
.yef_c00125{bottom:331.373955px;}
.yee_c00125{bottom:332.494725px;}
.yed_c00125{bottom:333.702030px;}
.yec_c00125{bottom:334.728548px;}
.yeb_c00125{bottom:335.752770px;}
.yea_c00125{bottom:336.091598px;}
.ye9_c00125{bottom:336.395798px;}
.ye8_c00125{bottom:337.412415px;}
.ye7_c00125{bottom:338.043000px;}
.ye5_c00125{bottom:359.879035px;}
.ye6_c00125{bottom:359.879085px;}
.ye4_c00125{bottom:377.406126px;}
.ye3_c00125{bottom:377.571832px;}
.ye2_c00125{bottom:377.931159px;}
.ye1_c00125{bottom:379.156665px;}
.ye0_c00125{bottom:379.647435px;}
.ydf_c00125{bottom:380.467441px;}
.yde_c00125{bottom:380.613880px;}
.ydd_c00125{bottom:381.382483px;}
.ydc_c00125{bottom:381.628099px;}
.ydb_c00125{bottom:382.659541px;}
.yda_c00125{bottom:383.079310px;}
.yd9_c00125{bottom:383.385814px;}
.yd8_c00125{bottom:401.207067px;}
.yd7_c00125{bottom:401.687056px;}
.yd6_c00125{bottom:402.133197px;}
.yd5_c00125{bottom:402.516555px;}
.yd4_c00125{bottom:403.185930px;}
.yd3_c00125{bottom:403.546177px;}
.yd2_c00125{bottom:404.075538px;}
.yd1_c00125{bottom:405.182772px;}
.yd0_c00125{bottom:405.660468px;}
.ycf_c00125{bottom:406.114740px;}
.yce_c00125{bottom:406.875930px;}
.ycd_c00125{bottom:422.911258px;}
.ycc_c00125{bottom:423.619992px;}
.ycb_c00125{bottom:424.875522px;}
.yca_c00125{bottom:425.475615px;}
.yc9_c00125{bottom:425.746489px;}
.yc8_c00125{bottom:426.577306px;}
.yc7_c00125{bottom:427.027075px;}
.yc6_c00125{bottom:428.197521px;}
.yc5_c00125{bottom:428.586157px;}
.yc4_c00125{bottom:429.559167px;}
.yc3_c00125{bottom:446.127496px;}
.yc2_c00125{bottom:446.369827px;}
.yc1_c00125{bottom:447.040779px;}
.yc0_c00125{bottom:447.329253px;}
.ybf_c00125{bottom:447.771171px;}
.ybe_c00125{bottom:448.047702px;}
.ybd_c00125{bottom:448.248508px;}
.ybc_c00125{bottom:449.274222px;}
.ybb_c00125{bottom:450.052852px;}
.yba_c00125{bottom:450.645540px;}
.yb9_c00125{bottom:450.927514px;}
.yb8_c00125{bottom:451.253092px;}
.yb7_c00125{bottom:451.766526px;}
.yb6_c00125{bottom:452.240976px;}
.yb5_c00125{bottom:469.227627px;}
.yb4_c00125{bottom:469.758137px;}
.yb3_c00125{bottom:470.152369px;}
.yb2_c00125{bottom:471.473257px;}
.yb1_c00125{bottom:471.921896px;}
.yb0_c00125{bottom:472.459218px;}
.yaf_c00125{bottom:473.427165px;}
.yae_c00125{bottom:474.062823px;}
.yad_c00125{bottom:474.580053px;}
.yac_c00125{bottom:475.191775px;}
.yab_c00125{bottom:491.147773px;}
.yaa_c00125{bottom:491.731536px;}
.ya9_c00125{bottom:492.171375px;}
.ya8_c00125{bottom:492.690739px;}
.ya7_c00125{bottom:493.274188px;}
.ya6_c00125{bottom:494.088097px;}
.ya5_c00125{bottom:494.465352px;}
.ya4_c00125{bottom:494.976253px;}
.ya3_c00125{bottom:495.279937px;}
.ya2_c00125{bottom:495.628555px;}
.ya1_c00125{bottom:496.872274px;}
.ya0_c00125{bottom:497.237041px;}
.y9f_c00125{bottom:497.877252px;}
.y9e_c00125{bottom:514.349614px;}
.y9d_c00125{bottom:514.683024px;}
.y9c_c00125{bottom:515.623554px;}
.y9b_c00125{bottom:515.957128px;}
.y9a_c00125{bottom:516.690792px;}
.y99_c00125{bottom:517.061368px;}
.y98_c00125{bottom:517.446115px;}
.y97_c00125{bottom:518.487157px;}
.y96_c00125{bottom:518.755093px;}
.y95_c00125{bottom:519.280885px;}
.y94_c00125{bottom:520.290007px;}
.y93_c00125{bottom:537.911203px;}
.y92_c00125{bottom:538.331344px;}
.y91_c00125{bottom:538.837800px;}
.y90_c00125{bottom:539.121969px;}
.y8f_c00125{bottom:539.599471px;}
.y8e_c00125{bottom:539.989504px;}
.y8d_c00125{bottom:540.375874px;}
.y8c_c00125{bottom:540.552051px;}
.y8b_c00125{bottom:540.670602px;}
.y8a_c00125{bottom:541.138618px;}
.y89_c00125{bottom:541.453390px;}
.y88_c00125{bottom:541.966543px;}
.y87_c00125{bottom:542.309922px;}
.y86_c00125{bottom:542.660509px;}
.y85_c00125{bottom:543.239010px;}
.y84_c00125{bottom:560.490928px;}
.y83_c00125{bottom:560.761800px;}
.y82_c00125{bottom:561.516097px;}
.y81_c00125{bottom:561.926554px;}
.y80_c00125{bottom:563.596807px;}
.y7f_c00125{bottom:564.223843px;}
.y7e_c00125{bottom:564.714214px;}
.y7d_c00125{bottom:565.037515px;}
.y7c_c00125{bottom:565.648746px;}
.y7b_c00125{bottom:583.166005px;}
.y7a_c00125{bottom:583.476493px;}
.y79_c00125{bottom:584.127529px;}
.y78_c00125{bottom:584.613612px;}
.y77_c00125{bottom:584.849872px;}
.y76_c00125{bottom:585.333397px;}
.y75_c00125{bottom:585.871104px;}
.y74_c00125{bottom:586.260520px;}
.y73_c00125{bottom:586.620273px;}
.y72_c00125{bottom:587.338953px;}
.y71_c00125{bottom:588.295296px;}
.y70_c00125{bottom:588.600141px;}
.y6f_c00125{bottom:606.120780px;}
.y6e_c00125{bottom:606.351846px;}
.y6d_c00125{bottom:606.672721px;}
.y6c_c00125{bottom:607.192042px;}
.y6b_c00125{bottom:607.965397px;}
.y6a_c00125{bottom:608.377617px;}
.y69_c00125{bottom:608.647804px;}
.y68_c00125{bottom:609.209811px;}
.y67_c00125{bottom:609.446784px;}
.y66_c00125{bottom:610.186330px;}
.y65_c00125{bottom:610.471500px;}
.y64_c00125{bottom:634.861830px;}
.y63_c00125{bottom:635.048875px;}
.y62_c00125{bottom:635.269849px;}
.y61_c00125{bottom:635.698711px;}
.y60_c00125{bottom:636.103695px;}
.y5f_c00125{bottom:636.349420px;}
.y5e_c00125{bottom:637.074172px;}
.y5d_c00125{bottom:637.188629px;}
.y5c_c00125{bottom:637.737078px;}
.y5b_c00125{bottom:656.832346px;}
.y5a_c00125{bottom:657.062395px;}
.y59_c00125{bottom:657.208304px;}
.y58_c00125{bottom:657.864096px;}
.y57_c00125{bottom:658.071209px;}
.y56_c00125{bottom:658.857577px;}
.y55_c00125{bottom:659.103947px;}
.y54_c00125{bottom:659.722609px;}
.y53_c00125{bottom:659.897560px;}
.y52_c00125{bottom:660.177957px;}
.y51_c00125{bottom:660.493930px;}
.y50_c00125{bottom:660.981339px;}
.y4f_c00125{bottom:661.228353px;}
.y4e_c00125{bottom:679.564143px;}
.y4d_c00125{bottom:679.769155px;}
.y4c_c00125{bottom:679.929651px;}
.y4b_c00125{bottom:680.686819px;}
.y4a_c00125{bottom:681.628639px;}
.y49_c00125{bottom:681.978291px;}
.y48_c00125{bottom:682.314016px;}
.y47_c00125{bottom:682.531008px;}
.y46_c00125{bottom:682.736251px;}
.y45_c00125{bottom:682.997694px;}
.y44_c00125{bottom:683.469924px;}
.y43_c00125{bottom:683.758031px;}
.y42_c00125{bottom:684.179737px;}
.y41_c00125{bottom:701.589838px;}
.y40_c00125{bottom:702.056227px;}
.y3f_c00125{bottom:702.359118px;}
.y3e_c00125{bottom:703.113580px;}
.y3d_c00125{bottom:703.380765px;}
.y3c_c00125{bottom:704.043322px;}
.y3b_c00125{bottom:704.402511px;}
.y3a_c00125{bottom:705.168821px;}
.y39_c00125{bottom:705.566454px;}
.y38_c00125{bottom:706.271515px;}
.y37_c00125{bottom:706.591500px;}
.y35_c00125{bottom:727.940400px;}
.y36_c00125{bottom:727.940715px;}
.y34_c00125{bottom:727.940970px;}
.y33_c00125{bottom:727.941255px;}
.y31_c00125{bottom:727.941795px;}
.y32_c00125{bottom:727.941825px;}
.y30_c00125{bottom:747.545460px;}
.y2f_c00125{bottom:748.142205px;}
.y2e_c00125{bottom:748.590390px;}
.y2d_c00125{bottom:748.906620px;}
.y2c_c00125{bottom:749.544240px;}
.y2b_c00125{bottom:749.913120px;}
.y2a_c00125{bottom:750.475200px;}
.y29_c00125{bottom:751.031505px;}
.y28_c00125{bottom:751.298625px;}
.y27_c00125{bottom:751.687320px;}
.y26_c00125{bottom:752.219355px;}
.y25_c00125{bottom:770.399910px;}
.y24_c00125{bottom:770.966985px;}
.y23_c00125{bottom:771.380520px;}
.y22_c00125{bottom:771.871605px;}
.y21_c00125{bottom:772.103850px;}
.y20_c00125{bottom:772.589805px;}
.y1f_c00125{bottom:773.024640px;}
.y1e_c00125{bottom:773.402625px;}
.y1d_c00125{bottom:773.683215px;}
.y1c_c00125{bottom:773.987895px;}
.y1b_c00125{bottom:774.552810px;}
.y1a_c00125{bottom:774.900525px;}
.y19_c00125{bottom:792.904830px;}
.y18_c00125{bottom:793.758075px;}
.y17_c00125{bottom:793.995750px;}
.y16_c00125{bottom:794.214405px;}
.y15_c00125{bottom:794.367435px;}
.y14_c00125{bottom:794.962680px;}
.y13_c00125{bottom:795.208125px;}
.y12_c00125{bottom:795.964200px;}
.y11_c00125{bottom:796.277460px;}
.y10_c00125{bottom:796.598775px;}
.yf_c00125{bottom:796.993110px;}
.ye_c00125{bottom:797.581575px;}
.yd_c00125{bottom:816.006615px;}
.yc_c00125{bottom:816.254520px;}
.yb_c00125{bottom:816.521865px;}
.ya_c00125{bottom:817.065045px;}
.y9_c00125{bottom:817.393995px;}
.y8_c00125{bottom:817.770090px;}
.y7_c00125{bottom:818.166810px;}
.y6_c00125{bottom:818.617815px;}
.y5_c00125{bottom:818.817465px;}
.y4_c00125{bottom:819.147090px;}
.y3_c00125{bottom:819.932595px;}
.y2_c00125{bottom:820.148580px;}
.y1_c00125{bottom:820.531500px;}
.he_c00125{height:63.003811px;}
.h8_c00125{height:64.053875px;}
.hf_c00125{height:65.103938px;}
.h9_c00125{height:66.154002px;}
.h4_c00125{height:67.203360px;}
.hd_c00125{height:67.204065px;}
.h13_c00125{height:67.208601px;}
.hb_c00125{height:68.254129px;}
.h3_c00125{height:69.303465px;}
.h7_c00125{height:69.304193px;}
.h12_c00125{height:69.308870px;}
.h5_c00125{height:70.353517px;}
.hc_c00125{height:70.354256px;}
.h10_c00125{height:70.357914px;}
.h14_c00125{height:70.359004px;}
.h2_c00125{height:71.403570px;}
.h11_c00125{height:71.409139px;}
.h6_c00125{height:72.454383px;}
.ha_c00125{height:78.754764px;}
.h0_c00125{height:1008.450000px;}
.h1_c00125{height:1008.750000px;}
.w0_c00125{width:676.890000px;}
.w1_c00125{width:677.250000px;}
.x0_c00125{left:0.000000px;}
.x9e_c00125{left:104.858378px;}
.x98_c00125{left:111.045000px;}
.x9f_c00125{left:122.454705px;}
.x7f_c00125{left:131.311688px;}
.x66_c00125{left:133.218776px;}
.x59_c00125{left:134.296818px;}
.x1_c00125{left:135.732000px;}
.xb2_c00125{left:150.599340px;}
.x51_c00125{left:151.870500px;}
.x2f_c00125{left:153.496500px;}
.x92_c00125{left:155.614442px;}
.x42_c00125{left:159.646593px;}
.xa9_c00125{left:161.500500px;}
.x80_c00125{left:167.760879px;}
.x18_c00125{left:171.044790px;}
.x2_c00125{left:174.024000px;}
.x76_c00125{left:176.351534px;}
.x52_c00125{left:177.795000px;}
.xa4_c00125{left:179.092500px;}
.x61_c00125{left:180.463746px;}
.x30_c00125{left:182.586000px;}
.x8d_c00125{left:184.786830px;}
.x23_c00125{left:188.616915px;}
.x4b_c00125{left:190.044083px;}
.xac_c00125{left:193.074000px;}
.x3_c00125{left:195.622500px;}
.x2b_c00125{left:198.179940px;}
.x3a_c00125{left:199.663779px;}
.x4c_c00125{left:201.540215px;}
.x62_c00125{left:205.354202px;}
.x81_c00125{left:207.208505px;}
.x43_c00125{left:208.320621px;}
.xad_c00125{left:209.755500px;}
.x7c_c00125{left:214.484762px;}
.xa0_c00125{left:218.851928px;}
.x99_c00125{left:220.858500px;}
.x88_c00125{left:224.463512px;}
.x19_c00125{left:227.536290px;}
.x67_c00125{left:231.168131px;}
.x82_c00125{left:232.305960px;}
.xe_c00125{left:234.225045px;}
.xa7_c00125{left:235.282500px;}
.x44_c00125{left:239.909468px;}
.x9a_c00125{left:241.138500px;}
.x3b_c00125{left:242.593779px;}
.x53_c00125{left:245.026500px;}
.x31_c00125{left:246.682500px;}
.x24_c00125{left:254.198415px;}
.x1a_c00125{left:258.004290px;}
.x2c_c00125{left:259.743090px;}
.x6f_c00125{left:262.539684px;}
.x9b_c00125{left:263.727000px;}
.xf_c00125{left:266.356545px;}
.x45_c00125{left:267.991281px;}
.x68_c00125{left:270.590256px;}
.x4_c00125{left:274.173000px;}
.xae_c00125{left:275.221500px;}
.x93_c00125{left:276.867449px;}
.x32_c00125{left:282.831000px;}
.x3c_c00125{left:285.019779px;}
.x1b_c00125{left:286.063290px;}
.x2d_c00125{left:287.824395px;}
.x63_c00125{left:291.389321px;}
.x69_c00125{left:294.841728px;}
.x10_c00125{left:297.682545px;}
.x5a_c00125{left:299.283003px;}
.x89_c00125{left:302.500580px;}
.xaa_c00125{left:303.553500px;}
.x3d_c00125{left:304.746279px;}
.x5_c00125{left:307.135500px;}
.x25_c00125{left:309.828915px;}
.x54_c00125{left:317.661000px;}
.xb3_c00125{left:318.708528px;}
.x8e_c00125{left:320.662841px;}
.x1c_c00125{left:323.861790px;}
.x6_c00125{left:327.100500px;}
.x5b_c00125{left:329.260173px;}
.x6a_c00125{left:330.842436px;}
.x8a_c00125{left:332.478260px;}
.x3e_c00125{left:335.266779px;}
.x70_c00125{left:336.859226px;}
.x4d_c00125{left:338.992716px;}
.x2e_c00125{left:341.286735px;}
.x46_c00125{left:347.366156px;}
.x33_c00125{left:352.495500px;}
.x6b_c00125{left:353.544441px;}
.x8f_c00125{left:355.966790px;}
.x83_c00125{left:359.420655px;}
.x5c_c00125{left:361.661310px;}
.x71_c00125{left:364.335318px;}
.x26_c00125{left:366.036915px;}
.x1d_c00125{left:367.345290px;}
.xa1_c00125{left:369.586223px;}
.x7_c00125{left:372.201000px;}
.x11_c00125{left:373.290045px;}
.xa5_c00125{left:374.934000px;}
.x55_c00125{left:379.698000px;}
.x4e_c00125{left:381.935195px;}
.x6c_c00125{left:383.213781px;}
.x34_c00125{left:385.149000px;}
.x77_c00125{left:386.246294px;}
.x8b_c00125{left:387.822818px;}
.x72_c00125{left:390.795944px;}
.x12_c00125{left:397.834545px;}
.x7d_c00125{left:399.439157px;}
.x94_c00125{left:400.776857px;}
.x27_c00125{left:402.924915px;}
.x4f_c00125{left:404.069442px;}
.x5d_c00125{left:406.452315px;}
.x8_c00125{left:411.873000px;}
.x6d_c00125{left:413.216121px;}
.x1e_c00125{left:415.940790px;}
.x64_c00125{left:419.909499px;}
.x50_c00125{left:422.710140px;}
.x90_c00125{left:424.611270px;}
.x95_c00125{left:435.845702px;}
.x1f_c00125{left:439.165290px;}
.x78_c00125{left:440.462901px;}
.x73_c00125{left:443.172711px;}
.x35_c00125{left:445.381500px;}
.x5e_c00125{left:446.726870px;}
.x9_c00125{left:449.482500px;}
.x47_c00125{left:450.525278px;}
.x3f_c00125{left:452.673279px;}
.x84_c00125{left:453.738576px;}
.x13_c00125{left:457.359045px;}
.x28_c00125{left:466.686915px;}
.x36_c00125{left:469.671000px;}
.x48_c00125{left:471.263009px;}
.x14_c00125{left:472.662045px;}
.x85_c00125{left:475.059114px;}
.xa2_c00125{left:476.742255px;}
.x79_c00125{left:479.320185px;}
.x9c_c00125{left:480.930000px;}
.xa_c00125{left:482.377500px;}
.xaf_c00125{left:486.820500px;}
.x20_c00125{left:488.273790px;}
.x15_c00125{left:494.527545px;}
.xb4_c00125{left:496.119360px;}
.x56_c00125{left:497.214000px;}
.x29_c00125{left:498.309915px;}
.xa8_c00125{left:501.226500px;}
.x5f_c00125{left:506.939210px;}
.x65_c00125{left:509.567036px;}
.x6e_c00125{left:510.770976px;}
.x91_c00125{left:512.015442px;}
.x7a_c00125{left:513.988167px;}
.xb5_c00125{left:515.828172px;}
.x16_c00125{left:518.295045px;}
.x40_c00125{left:521.506779px;}
.x96_c00125{left:523.388814px;}
.x57_c00125{left:526.384500px;}
.xb6_c00125{left:528.476364px;}
.x21_c00125{left:529.627290px;}
.x86_c00125{left:531.229877px;}
.x74_c00125{left:534.179208px;}
.xb_c00125{left:536.695500px;}
.x37_c00125{left:538.258500px;}
.x2a_c00125{left:543.128415px;}
.x58_c00125{left:547.390500px;}
.x97_c00125{left:549.099473px;}
.x49_c00125{left:551.509400px;}
.xa6_c00125{left:553.029000px;}
.x41_c00125{left:554.734779px;}
.x75_c00125{left:557.942916px;}
.x7e_c00125{left:559.809360px;}
.x60_c00125{left:561.214616px;}
.xb0_c00125{left:562.237500px;}
.xc_c00125{left:563.430000px;}
.x38_c00125{left:565.794000px;}
.xa3_c00125{left:573.119978px;}
.x4a_c00125{left:574.468647px;}
.x8c_c00125{left:576.835502px;}
.xb7_c00125{left:579.747180px;}
.x7b_c00125{left:582.221664px;}
.x22_c00125{left:586.334790px;}
.xd_c00125{left:588.220500px;}
.x9d_c00125{left:590.415000px;}
.xb8_c00125{left:591.649872px;}
.x87_c00125{left:601.435826px;}
.x17_c00125{left:603.619545px;}
.x39_c00125{left:608.193000px;}
.xb1_c00125{left:616.851000px;}
.xab_c00125{left:630.193500px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
.fsc_c00125{font-size:56.003388pt;}
.fs6_c00125{font-size:56.936778pt;}
.fsd_c00125{font-size:57.870167pt;}
.fs7_c00125{font-size:58.803557pt;}
.fs2_c00125{font-size:59.736320pt;}
.fsb_c00125{font-size:59.736947pt;}
.fs11_c00125{font-size:59.740979pt;}
.fs9_c00125{font-size:60.670337pt;}
.fs1_c00125{font-size:61.603080pt;}
.fs5_c00125{font-size:61.603727pt;}
.fs10_c00125{font-size:61.607884pt;}
.fs3_c00125{font-size:62.536460pt;}
.fsa_c00125{font-size:62.537116pt;}
.fse_c00125{font-size:62.540368pt;}
.fs12_c00125{font-size:62.541337pt;}
.fs0_c00125{font-size:63.469840pt;}
.fsf_c00125{font-size:63.474790pt;}
.fs4_c00125{font-size:64.403896pt;}
.fs8_c00125{font-size:70.004235pt;}
.y0_c00125{bottom:0.000000pt;}
.y13b_c00125{bottom:131.395968pt;}
.y13a_c00125{bottom:131.554581pt;}
.y139_c00125{bottom:132.238421pt;}
.y138_c00125{bottom:132.407637pt;}
.y137_c00125{bottom:132.670603pt;}
.y136_c00125{bottom:133.420139pt;}
.y135_c00125{bottom:134.226816pt;}
.y134_c00125{bottom:135.036405pt;}
.y133_c00125{bottom:135.457813pt;}
.y132_c00125{bottom:136.286944pt;}
.y131_c00125{bottom:137.042357pt;}
.y130_c00125{bottom:137.277920pt;}
.y12f_c00125{bottom:151.272064pt;}
.y12e_c00125{bottom:152.048789pt;}
.y12d_c00125{bottom:153.121387pt;}
.y12c_c00125{bottom:153.719360pt;}
.y12b_c00125{bottom:154.011029pt;}
.y12a_c00125{bottom:154.567936pt;}
.y129_c00125{bottom:155.224555pt;}
.y128_c00125{bottom:155.520320pt;}
.y127_c00125{bottom:156.130795pt;}
.y126_c00125{bottom:156.764565pt;}
.y125_c00125{bottom:157.061867pt;}
.y124_c00125{bottom:157.299115pt;}
.y123_c00125{bottom:158.181333pt;}
.y122_c00125{bottom:171.685147pt;}
.y121_c00125{bottom:172.328107pt;}
.y120_c00125{bottom:172.608867pt;}
.y11f_c00125{bottom:173.490987pt;}
.y11e_c00125{bottom:174.074827pt;}
.y11d_c00125{bottom:174.575107pt;}
.y11c_c00125{bottom:175.089787pt;}
.y11b_c00125{bottom:176.040347pt;}
.y11a_c00125{bottom:176.577127pt;}
.y119_c00125{bottom:177.062747pt;}
.y118_c00125{bottom:177.934387pt;}
.y117_c00125{bottom:178.322667pt;}
.y116_c00125{bottom:192.585195pt;}
.y115_c00125{bottom:193.593920pt;}
.y114_c00125{bottom:193.724181pt;}
.y113_c00125{bottom:195.282325pt;}
.y112_c00125{bottom:195.546688pt;}
.y111_c00125{bottom:196.010965pt;}
.y110_c00125{bottom:197.506496pt;}
.y10f_c00125{bottom:198.048299pt;}
.y10e_c00125{bottom:198.965333pt;}
.y10d_c00125{bottom:232.463947pt;}
.y10c_c00125{bottom:234.871232pt;}
.y10b_c00125{bottom:237.495520pt;}
.y10a_c00125{bottom:239.401856pt;}
.y109_c00125{bottom:239.760661pt;}
.y108_c00125{bottom:253.951093pt;}
.y107_c00125{bottom:254.561504pt;}
.y106_c00125{bottom:255.487136pt;}
.y105_c00125{bottom:255.958965pt;}
.y104_c00125{bottom:256.484000pt;}
.y103_c00125{bottom:257.568096pt;}
.y102_c00125{bottom:257.867509pt;}
.y101_c00125{bottom:258.212256pt;}
.y100_c00125{bottom:258.761376pt;}
.yff_c00125{bottom:259.269301pt;}
.yfe_c00125{bottom:259.921333pt;}
.yfd_c00125{bottom:275.916193pt;}
.yfc_c00125{bottom:276.001567pt;}
.yfb_c00125{bottom:276.773133pt;}
.yfa_c00125{bottom:277.010807pt;}
.yf9_c00125{bottom:277.569767pt;}
.yf8_c00125{bottom:277.725773pt;}
.yf7_c00125{bottom:278.285173pt;}
.yf6_c00125{bottom:278.583033pt;}
.yf5_c00125{bottom:279.066080pt;}
.yf4_c00125{bottom:279.315840pt;}
.yf3_c00125{bottom:279.471813pt;}
.yf2_c00125{bottom:279.923280pt;}
.yf1_c00125{bottom:280.079213pt;}
.yf0_c00125{bottom:294.091067pt;}
.yef_c00125{bottom:294.554627pt;}
.yee_c00125{bottom:295.550867pt;}
.yed_c00125{bottom:296.624027pt;}
.yec_c00125{bottom:297.536487pt;}
.yeb_c00125{bottom:298.446907pt;}
.yea_c00125{bottom:298.748087pt;}
.ye9_c00125{bottom:299.018487pt;}
.ye8_c00125{bottom:299.922147pt;}
.ye7_c00125{bottom:300.482667pt;}
.ye5_c00125{bottom:319.892476pt;}
.ye6_c00125{bottom:319.892520pt;}
.ye4_c00125{bottom:335.472112pt;}
.ye3_c00125{bottom:335.619407pt;}
.ye2_c00125{bottom:335.938808pt;}
.ye1_c00125{bottom:337.028147pt;}
.ye0_c00125{bottom:337.464387pt;}
.ydf_c00125{bottom:338.193281pt;}
.yde_c00125{bottom:338.323449pt;}
.ydd_c00125{bottom:339.006652pt;}
.ydc_c00125{bottom:339.224977pt;}
.ydb_c00125{bottom:340.141815pt;}
.yda_c00125{bottom:340.514943pt;}
.yd9_c00125{bottom:340.787391pt;}
.yd8_c00125{bottom:356.628504pt;}
.yd7_c00125{bottom:357.055161pt;}
.yd6_c00125{bottom:357.451731pt;}
.yd5_c00125{bottom:357.792493pt;}
.yd4_c00125{bottom:358.387493pt;}
.yd3_c00125{bottom:358.707713pt;}
.yd2_c00125{bottom:359.178256pt;}
.yd1_c00125{bottom:360.162464pt;}
.yd0_c00125{bottom:360.587083pt;}
.ycf_c00125{bottom:360.990880pt;}
.yce_c00125{bottom:361.667493pt;}
.ycd_c00125{bottom:375.921119pt;}
.ycc_c00125{bottom:376.551104pt;}
.ycb_c00125{bottom:377.667131pt;}
.yca_c00125{bottom:378.200547pt;}
.yc9_c00125{bottom:378.441324pt;}
.yc8_c00125{bottom:379.179828pt;}
.yc7_c00125{bottom:379.579623pt;}
.yc6_c00125{bottom:380.620019pt;}
.yc5_c00125{bottom:380.965473pt;}
.yc4_c00125{bottom:381.830371pt;}
.yc3_c00125{bottom:396.557775pt;}
.yc2_c00125{bottom:396.773180pt;}
.yc1_c00125{bottom:397.369581pt;}
.yc0_c00125{bottom:397.626003pt;}
.ybf_c00125{bottom:398.018819pt;}
.ybe_c00125{bottom:398.264624pt;}
.ybd_c00125{bottom:398.443119pt;}
.ybc_c00125{bottom:399.354864pt;}
.ybb_c00125{bottom:400.046980pt;}
.yba_c00125{bottom:400.573813pt;}
.yb9_c00125{bottom:400.824457pt;}
.yb8_c00125{bottom:401.113860pt;}
.yb7_c00125{bottom:401.570245pt;}
.yb6_c00125{bottom:401.991979pt;}
.yb5_c00125{bottom:417.091224pt;}
.yb4_c00125{bottom:417.562788pt;}
.yb3_c00125{bottom:417.913217pt;}
.yb2_c00125{bottom:419.087340pt;}
.yb1_c00125{bottom:419.486129pt;}
.yb0_c00125{bottom:419.963749pt;}
.yaf_c00125{bottom:420.824147pt;}
.yae_c00125{bottom:421.389176pt;}
.yad_c00125{bottom:421.848936pt;}
.yac_c00125{bottom:422.392689pt;}
.yab_c00125{bottom:436.575799pt;}
.yaa_c00125{bottom:437.094699pt;}
.ya9_c00125{bottom:437.485667pt;}
.ya8_c00125{bottom:437.947324pt;}
.ya7_c00125{bottom:438.465945pt;}
.ya6_c00125{bottom:439.189420pt;}
.ya5_c00125{bottom:439.524757pt;}
.ya4_c00125{bottom:439.978892pt;}
.ya3_c00125{bottom:440.248833pt;}
.ya2_c00125{bottom:440.558716pt;}
.ya1_c00125{bottom:441.664244pt;}
.ya0_c00125{bottom:441.988481pt;}
.y9f_c00125{bottom:442.557557pt;}
.y9e_c00125{bottom:457.199657pt;}
.y9d_c00125{bottom:457.496021pt;}
.y9c_c00125{bottom:458.332048pt;}
.y9b_c00125{bottom:458.628559pt;}
.y9a_c00125{bottom:459.280704pt;}
.y99_c00125{bottom:459.610105pt;}
.y98_c00125{bottom:459.952103pt;}
.y97_c00125{bottom:460.877473pt;}
.y96_c00125{bottom:461.115639pt;}
.y95_c00125{bottom:461.583009pt;}
.y94_c00125{bottom:462.480007pt;}
.y93_c00125{bottom:478.143292pt;}
.y92_c00125{bottom:478.516751pt;}
.y91_c00125{bottom:478.966933pt;}
.y90_c00125{bottom:479.219528pt;}
.y8f_c00125{bottom:479.643975pt;}
.y8e_c00125{bottom:479.990671pt;}
.y8d_c00125{bottom:480.334111pt;}
.y8c_c00125{bottom:480.490712pt;}
.y8b_c00125{bottom:480.596091pt;}
.y8a_c00125{bottom:481.012105pt;}
.y89_c00125{bottom:481.291903pt;}
.y88_c00125{bottom:481.748039pt;}
.y87_c00125{bottom:482.053264pt;}
.y86_c00125{bottom:482.364897pt;}
.y85_c00125{bottom:482.879120pt;}
.y84_c00125{bottom:498.214159pt;}
.y83_c00125{bottom:498.454933pt;}
.y82_c00125{bottom:499.125420pt;}
.y81_c00125{bottom:499.490271pt;}
.y80_c00125{bottom:500.974940pt;}
.y7f_c00125{bottom:501.532305pt;}
.y7e_c00125{bottom:501.968191pt;}
.y7d_c00125{bottom:502.255569pt;}
.y7c_c00125{bottom:502.798885pt;}
.y7b_c00125{bottom:518.369783pt;}
.y7a_c00125{bottom:518.645772pt;}
.y79_c00125{bottom:519.224471pt;}
.y78_c00125{bottom:519.656544pt;}
.y77_c00125{bottom:519.866553pt;}
.y76_c00125{bottom:520.296353pt;}
.y75_c00125{bottom:520.774315pt;}
.y74_c00125{bottom:521.120463pt;}
.y73_c00125{bottom:521.440243pt;}
.y72_c00125{bottom:522.079069pt;}
.y71_c00125{bottom:522.929152pt;}
.y70_c00125{bottom:523.200125pt;}
.y6f_c00125{bottom:538.774027pt;}
.y6e_c00125{bottom:538.979419pt;}
.y6d_c00125{bottom:539.264641pt;}
.y6c_c00125{bottom:539.726260pt;}
.y6b_c00125{bottom:540.413687pt;}
.y6a_c00125{bottom:540.780104pt;}
.y69_c00125{bottom:541.020271pt;}
.y68_c00125{bottom:541.519832pt;}
.y67_c00125{bottom:541.730475pt;}
.y66_c00125{bottom:542.387849pt;}
.y65_c00125{bottom:542.641333pt;}
.y64_c00125{bottom:564.321627pt;}
.y63_c00125{bottom:564.487889pt;}
.y62_c00125{bottom:564.684311pt;}
.y61_c00125{bottom:565.065521pt;}
.y60_c00125{bottom:565.425507pt;}
.y5f_c00125{bottom:565.643929pt;}
.y5e_c00125{bottom:566.288153pt;}
.y5d_c00125{bottom:566.389892pt;}
.y5c_c00125{bottom:566.877403pt;}
.y5b_c00125{bottom:583.850975pt;}
.y5a_c00125{bottom:584.055463pt;}
.y59_c00125{bottom:584.185159pt;}
.y58_c00125{bottom:584.768085pt;}
.y57_c00125{bottom:584.952185pt;}
.y56_c00125{bottom:585.651180pt;}
.y55_c00125{bottom:585.870175pt;}
.y54_c00125{bottom:586.420097pt;}
.y53_c00125{bottom:586.575609pt;}
.y52_c00125{bottom:586.824851pt;}
.y51_c00125{bottom:587.105716pt;}
.y50_c00125{bottom:587.538968pt;}
.y4f_c00125{bottom:587.758536pt;}
.y4e_c00125{bottom:604.057016pt;}
.y4d_c00125{bottom:604.239249pt;}
.y4c_c00125{bottom:604.381912pt;}
.y4b_c00125{bottom:605.054951pt;}
.y4a_c00125{bottom:605.892124pt;}
.y49_c00125{bottom:606.202925pt;}
.y48_c00125{bottom:606.501348pt;}
.y47_c00125{bottom:606.694229pt;}
.y46_c00125{bottom:606.876668pt;}
.y45_c00125{bottom:607.109061pt;}
.y44_c00125{bottom:607.528821pt;}
.y43_c00125{bottom:607.784916pt;}
.y42_c00125{bottom:608.159767pt;}
.y41_c00125{bottom:623.635412pt;}
.y40_c00125{bottom:624.049980pt;}
.y3f_c00125{bottom:624.319216pt;}
.y3e_c00125{bottom:624.989849pt;}
.y3d_c00125{bottom:625.227347pt;}
.y3c_c00125{bottom:625.816287pt;}
.y3b_c00125{bottom:626.135565pt;}
.y3a_c00125{bottom:626.816729pt;}
.y39_c00125{bottom:627.170181pt;}
.y38_c00125{bottom:627.796903pt;}
.y37_c00125{bottom:628.081333pt;}
.y35_c00125{bottom:647.058133pt;}
.y36_c00125{bottom:647.058413pt;}
.y34_c00125{bottom:647.058640pt;}
.y33_c00125{bottom:647.058893pt;}
.y31_c00125{bottom:647.059373pt;}
.y32_c00125{bottom:647.059400pt;}
.y30_c00125{bottom:664.484853pt;}
.y2f_c00125{bottom:665.015293pt;}
.y2e_c00125{bottom:665.413680pt;}
.y2d_c00125{bottom:665.694773pt;}
.y2c_c00125{bottom:666.261547pt;}
.y2b_c00125{bottom:666.589440pt;}
.y2a_c00125{bottom:667.089067pt;}
.y29_c00125{bottom:667.583560pt;}
.y28_c00125{bottom:667.821000pt;}
.y27_c00125{bottom:668.166507pt;}
.y26_c00125{bottom:668.639427pt;}
.y25_c00125{bottom:684.799920pt;}
.y24_c00125{bottom:685.303987pt;}
.y23_c00125{bottom:685.671573pt;}
.y22_c00125{bottom:686.108093pt;}
.y21_c00125{bottom:686.314533pt;}
.y20_c00125{bottom:686.746493pt;}
.y1f_c00125{bottom:687.133013pt;}
.y1e_c00125{bottom:687.469000pt;}
.y1d_c00125{bottom:687.718413pt;}
.y1c_c00125{bottom:687.989240pt;}
.y1b_c00125{bottom:688.491387pt;}
.y1a_c00125{bottom:688.800467pt;}
.y19_c00125{bottom:704.804293pt;}
.y18_c00125{bottom:705.562733pt;}
.y17_c00125{bottom:705.774000pt;}
.y16_c00125{bottom:705.968360pt;}
.y15_c00125{bottom:706.104387pt;}
.y14_c00125{bottom:706.633493pt;}
.y13_c00125{bottom:706.851667pt;}
.y12_c00125{bottom:707.523733pt;}
.y11_c00125{bottom:707.802187pt;}
.y10_c00125{bottom:708.087800pt;}
.yf_c00125{bottom:708.438320pt;}
.ye_c00125{bottom:708.961400pt;}
.yd_c00125{bottom:725.339213pt;}
.yc_c00125{bottom:725.559573pt;}
.yb_c00125{bottom:725.797213pt;}
.ya_c00125{bottom:726.280040pt;}
.y9_c00125{bottom:726.572440pt;}
.y8_c00125{bottom:726.906747pt;}
.y7_c00125{bottom:727.259387pt;}
.y6_c00125{bottom:727.660280pt;}
.y5_c00125{bottom:727.837747pt;}
.y4_c00125{bottom:728.130747pt;}
.y3_c00125{bottom:728.828973pt;}
.y2_c00125{bottom:729.020960pt;}
.y1_c00125{bottom:729.361333pt;}
.he_c00125{height:56.003388pt;}
.h8_c00125{height:56.936778pt;}
.hf_c00125{height:57.870167pt;}
.h9_c00125{height:58.803557pt;}
.h4_c00125{height:59.736320pt;}
.hd_c00125{height:59.736947pt;}
.h13_c00125{height:59.740979pt;}
.hb_c00125{height:60.670337pt;}
.h3_c00125{height:61.603080pt;}
.h7_c00125{height:61.603727pt;}
.h12_c00125{height:61.607884pt;}
.h5_c00125{height:62.536460pt;}
.hc_c00125{height:62.537116pt;}
.h10_c00125{height:62.540368pt;}
.h14_c00125{height:62.541337pt;}
.h2_c00125{height:63.469840pt;}
.h11_c00125{height:63.474790pt;}
.h6_c00125{height:64.403896pt;}
.ha_c00125{height:70.004235pt;}
.h0_c00125{height:896.400000pt;}
.h1_c00125{height:896.666667pt;}
.w0_c00125{width:601.680000pt;}
.w1_c00125{width:602.000000pt;}
.x0_c00125{left:0.000000pt;}
.x9e_c00125{left:93.207447pt;}
.x98_c00125{left:98.706667pt;}
.x9f_c00125{left:108.848627pt;}
.x7f_c00125{left:116.721500pt;}
.x66_c00125{left:118.416689pt;}
.x59_c00125{left:119.374949pt;}
.x1_c00125{left:120.650667pt;}
.xb2_c00125{left:133.866080pt;}
.x51_c00125{left:134.996000pt;}
.x2f_c00125{left:136.441333pt;}
.x92_c00125{left:138.323948pt;}
.x42_c00125{left:141.908083pt;}
.xa9_c00125{left:143.556000pt;}
.x80_c00125{left:149.120781pt;}
.x18_c00125{left:152.039813pt;}
.x2_c00125{left:154.688000pt;}
.x76_c00125{left:156.756919pt;}
.x52_c00125{left:158.040000pt;}
.xa4_c00125{left:159.193333pt;}
.x61_c00125{left:160.412219pt;}
.x30_c00125{left:162.298667pt;}
.x8d_c00125{left:164.254960pt;}
.x23_c00125{left:167.659480pt;}
.x4b_c00125{left:168.928073pt;}
.xac_c00125{left:171.621333pt;}
.x3_c00125{left:173.886667pt;}
.x2b_c00125{left:176.159947pt;}
.x3a_c00125{left:177.478915pt;}
.x4c_c00125{left:179.146857pt;}
.x62_c00125{left:182.537068pt;}
.x81_c00125{left:184.185337pt;}
.x43_c00125{left:185.173885pt;}
.xad_c00125{left:186.449333pt;}
.x7c_c00125{left:190.653121pt;}
.xa0_c00125{left:194.535047pt;}
.x99_c00125{left:196.318667pt;}
.x88_c00125{left:199.523121pt;}
.x19_c00125{left:202.254480pt;}
.x67_c00125{left:205.482783pt;}
.x82_c00125{left:206.494187pt;}
.xe_c00125{left:208.200040pt;}
.xa7_c00125{left:209.140000pt;}
.x44_c00125{left:213.252860pt;}
.x9a_c00125{left:214.345333pt;}
.x3b_c00125{left:215.638915pt;}
.x53_c00125{left:217.801333pt;}
.x31_c00125{left:219.273333pt;}
.x24_c00125{left:225.954147pt;}
.x1a_c00125{left:229.337147pt;}
.x2c_c00125{left:230.882747pt;}
.x6f_c00125{left:233.368608pt;}
.x9b_c00125{left:234.424000pt;}
.xf_c00125{left:236.761373pt;}
.x45_c00125{left:238.214472pt;}
.x68_c00125{left:240.524672pt;}
.x4_c00125{left:243.709333pt;}
.xae_c00125{left:244.641333pt;}
.x93_c00125{left:246.104399pt;}
.x32_c00125{left:251.405333pt;}
.x3c_c00125{left:253.350915pt;}
.x1b_c00125{left:254.278480pt;}
.x2d_c00125{left:255.843907pt;}
.x63_c00125{left:259.012729pt;}
.x69_c00125{left:262.081536pt;}
.x10_c00125{left:264.606707pt;}
.x5a_c00125{left:266.029336pt;}
.x89_c00125{left:268.889404pt;}
.xaa_c00125{left:269.825333pt;}
.x3d_c00125{left:270.885581pt;}
.x5_c00125{left:273.009333pt;}
.x25_c00125{left:275.403480pt;}
.x54_c00125{left:282.365333pt;}
.xb3_c00125{left:283.296469pt;}
.x8e_c00125{left:285.033636pt;}
.x1c_c00125{left:287.877147pt;}
.x6_c00125{left:290.756000pt;}
.x5b_c00125{left:292.675709pt;}
.x6a_c00125{left:294.082165pt;}
.x8a_c00125{left:295.536231pt;}
.x3e_c00125{left:298.014915pt;}
.x70_c00125{left:299.430423pt;}
.x4d_c00125{left:301.326859pt;}
.x2e_c00125{left:303.365987pt;}
.x46_c00125{left:308.769916pt;}
.x33_c00125{left:313.329333pt;}
.x6b_c00125{left:314.261725pt;}
.x8f_c00125{left:316.414924pt;}
.x83_c00125{left:319.485027pt;}
.x5c_c00125{left:321.476720pt;}
.x71_c00125{left:323.853616pt;}
.x26_c00125{left:325.366147pt;}
.x1d_c00125{left:326.529147pt;}
.xa1_c00125{left:328.521087pt;}
.x7_c00125{left:330.845333pt;}
.x11_c00125{left:331.813373pt;}
.xa5_c00125{left:333.274667pt;}
.x55_c00125{left:337.509333pt;}
.x4e_c00125{left:339.497951pt;}
.x6c_c00125{left:340.634472pt;}
.x34_c00125{left:342.354667pt;}
.x77_c00125{left:343.330039pt;}
.x8b_c00125{left:344.731393pt;}
.x72_c00125{left:347.374172pt;}
.x12_c00125{left:353.630707pt;}
.x7d_c00125{left:355.057028pt;}
.x94_c00125{left:356.246095pt;}
.x27_c00125{left:358.155480pt;}
.x4f_c00125{left:359.172837pt;}
.x5d_c00125{left:361.290947pt;}
.x8_c00125{left:366.109333pt;}
.x6d_c00125{left:367.303219pt;}
.x1e_c00125{left:369.725147pt;}
.x64_c00125{left:373.252888pt;}
.x50_c00125{left:375.742347pt;}
.x90_c00125{left:377.432240pt;}
.x95_c00125{left:387.418401pt;}
.x1f_c00125{left:390.369147pt;}
.x78_c00125{left:391.522579pt;}
.x73_c00125{left:393.931299pt;}
.x35_c00125{left:395.894667pt;}
.x5e_c00125{left:397.090551pt;}
.x9_c00125{left:399.540000pt;}
.x47_c00125{left:400.466913pt;}
.x3f_c00125{left:402.376248pt;}
.x84_c00125{left:403.323179pt;}
.x13_c00125{left:406.541373pt;}
.x28_c00125{left:414.832813pt;}
.x36_c00125{left:417.485333pt;}
.x48_c00125{left:418.900452pt;}
.x14_c00125{left:420.144040pt;}
.x85_c00125{left:422.274768pt;}
.xa2_c00125{left:423.770893pt;}
.x79_c00125{left:426.062387pt;}
.x9c_c00125{left:427.493333pt;}
.xa_c00125{left:428.780000pt;}
.xaf_c00125{left:432.729333pt;}
.x20_c00125{left:434.021147pt;}
.x15_c00125{left:439.580040pt;}
.xb4_c00125{left:440.994987pt;}
.x56_c00125{left:441.968000pt;}
.x29_c00125{left:442.942147pt;}
.xa8_c00125{left:445.534667pt;}
.x5f_c00125{left:450.612631pt;}
.x65_c00125{left:452.948476pt;}
.x6e_c00125{left:454.018645pt;}
.x91_c00125{left:455.124837pt;}
.x7a_c00125{left:456.878371pt;}
.xb5_c00125{left:458.513931pt;}
.x16_c00125{left:460.706707pt;}
.x40_c00125{left:463.561581pt;}
.x96_c00125{left:465.234501pt;}
.x57_c00125{left:467.897333pt;}
.xb6_c00125{left:469.756768pt;}
.x21_c00125{left:470.779813pt;}
.x86_c00125{left:472.204335pt;}
.x74_c00125{left:474.825963pt;}
.xb_c00125{left:477.062667pt;}
.x37_c00125{left:478.452000pt;}
.x2a_c00125{left:482.780813pt;}
.x58_c00125{left:486.569333pt;}
.x97_c00125{left:488.088420pt;}
.x49_c00125{left:490.230577pt;}
.xa6_c00125{left:491.581333pt;}
.x41_c00125{left:493.097581pt;}
.x75_c00125{left:495.949259pt;}
.x7e_c00125{left:497.608320pt;}
.x60_c00125{left:498.857436pt;}
.xb0_c00125{left:499.766667pt;}
.xc_c00125{left:500.826667pt;}
.x38_c00125{left:502.928000pt;}
.xa3_c00125{left:509.439980pt;}
.x4a_c00125{left:510.638797pt;}
.x8c_c00125{left:512.742668pt;}
.xb7_c00125{left:515.330827pt;}
.x7b_c00125{left:517.530368pt;}
.x22_c00125{left:521.186480pt;}
.xd_c00125{left:522.862667pt;}
.x9d_c00125{left:524.813333pt;}
.xb8_c00125{left:525.910997pt;}
.x87_c00125{left:534.609623pt;}
.x17_c00125{left:536.550707pt;}
.x39_c00125{left:540.616000pt;}
.xb1_c00125{left:548.312000pt;}
.xab_c00125{left:560.172000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m137_c00126{transform:matrix(0.012135,0.000109,-0.002250,0.249990,0,0);-ms-transform:matrix(0.012135,0.000109,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.012135,0.000109,-0.002250,0.249990,0,0);}
.m87_c00126{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.mf6_c00126{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.mea_c00126{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);}
.m101_c00126{transform:matrix(0.030950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030950,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.054275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054275,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.075175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075175,0.000000,0.000000,0.250000,0,0);}
.m92_c00126{transform:matrix(0.088120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088120,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);}
.mf5_c00126{transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);}
.m109_c00126{transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);}
.m155_c00126{transform:matrix(0.120540,0.001085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.120540,0.001085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.120540,0.001085,-0.002250,0.249990,0,0);}
.mdc_c00126{transform:matrix(0.121995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121995,0.000000,0.000000,0.250000,0,0);}
.m121_c00126{transform:matrix(0.134107,0.000939,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134107,0.000939,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134107,0.000939,-0.001750,0.249994,0,0);}
.m11_c00126{transform:matrix(0.138005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138005,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{transform:matrix(0.144020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144020,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{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);}
.m64_c00126{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);}
.m73_c00126{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);}
.m75_c00126{transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);}
.m65_c00126{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);}
.mad_c00126{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);}
.m13c_c00126{transform:matrix(0.154154,0.001387,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154154,0.001387,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154154,0.001387,-0.002250,0.249990,0,0);}
.m8e_c00126{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);}
.m9b_c00126{transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155870,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{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);}
.m39_c00126{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);}
.m94_c00126{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);}
.md1_c00126{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);}
.m12e_c00126{transform:matrix(0.157049,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157049,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157049,0.001413,-0.002250,0.249990,0,0);}
.m29_c00126{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);}
.m6f_c00126{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);}
.m2c_c00126{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);}
.m45_c00126{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);}
.m41_c00126{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);}
.m105_c00126{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);}
.m55_c00126{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);}
.md3_c00126{transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{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);}
.m10f_c00126{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);}
.m13d_c00126{transform:matrix(0.162543,0.001463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162543,0.001463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162543,0.001463,-0.002250,0.249990,0,0);}
.m62_c00126{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{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);}
.m6a_c00126{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);}
.m46_c00126{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);}
.maf_c00126{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);}
.mc7_c00126{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);}
.m1_c00126{transform:matrix(0.165816,0.002156,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165816,0.002156,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165816,0.002156,-0.003250,0.249979,0,0);}
.mb0_c00126{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);}
.m97_c00126{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);}
.m2b_c00126{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);}
.m5c_c00126{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);}
.m37_c00126{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);}
.md2_c00126{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);}
.m6b_c00126{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);}
.m7a_c00126{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_c00126{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);}
.ma0_c00126{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);}
.m9a_c00126{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);}
.m98_c00126{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);}
.m12f_c00126{transform:matrix(0.172443,0.001552,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172443,0.001552,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172443,0.001552,-0.002250,0.249990,0,0);}
.m43_c00126{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);}
.mb5_c00126{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);}
.m1a_c00126{transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);}
.mb3_c00126{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);}
.m58_c00126{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);}
.m34_c00126{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);}
.mf2_c00126{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);}
.m69_c00126{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);}
.m5a_c00126{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);}
.m22_c00126{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_c00126{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);}
.m49_c00126{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);}
.m59_c00126{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);}
.md6_c00126{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);}
.mb9_c00126{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);}
.m111_c00126{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);}
.m60_c00126{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);}
.md0_c00126{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);}
.m67_c00126{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);}
.m76_c00126{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);}
.m63_c00126{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);}
.m129_c00126{transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);}
.m4d_c00126{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);}
.mde_c00126{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);}
.m160_c00126{transform:matrix(0.181368,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181368,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181368,0.001632,-0.002250,0.249990,0,0);}
.m4b_c00126{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);}
.ma5_c00126{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);}
.m72_c00126{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);}
.mb8_c00126{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);}
.mce_c00126{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_c00126{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);}
.mbf_c00126{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);}
.m99_c00126{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);}
.mcd_c00126{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);}
.m21_c00126{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);}
.mb4_c00126{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);}
.mb1_c00126{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);}
.m162_c00126{transform:matrix(0.185267,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185267,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185267,0.001667,-0.002250,0.249990,0,0);}
.mca_c00126{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);}
.m6d_c00126{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);}
.mba_c00126{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);}
.m9c_c00126{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);}
.m52_c00126{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);}
.m20_c00126{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);}
.m12d_c00126{transform:matrix(0.187002,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187002,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187002,0.001683,-0.002250,0.249990,0,0);}
.mfd_c00126{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);}
.mc8_c00126{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);}
.mbb_c00126{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);}
.md8_c00126{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);}
.mcf_c00126{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);}
.mf8_c00126{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);}
.m84_c00126{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);}
.m42_c00126{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);}
.m5b_c00126{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);}
.m44_c00126{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);}
.m128_c00126{transform:matrix(0.190042,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190042,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190042,0.001710,-0.002250,0.249990,0,0);}
.mb6_c00126{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);}
.m4e_c00126{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);}
.m2a_c00126{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);}
.m132_c00126{transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191077,0.001720,-0.002250,0.249990,0,0);}
.m4a_c00126{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);}
.maa_c00126{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);}
.m131_c00126{transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);}
.m77_c00126{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);}
.m17_c00126{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);}
.m3c_c00126{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);}
.mae_c00126{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);}
.m40_c00126{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);}
.m32_c00126{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);}
.m88_c00126{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);}
.m2e_c00126{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);}
.m3d_c00126{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);}
.mc3_c00126{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);}
.m5e_c00126{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);}
.m38_c00126{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);}
.m6c_c00126{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);}
.md4_c00126{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);}
.ma4_c00126{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);}
.m13b_c00126{transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);}
.m3b_c00126{transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{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);}
.m107_c00126{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);}
.m79_c00126{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);}
.me8_c00126{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);}
.md_c00126{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);}
.m152_c00126{transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);}
.m61_c00126{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);}
.m126_c00126{transform:matrix(0.202492,0.001822,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202492,0.001822,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202492,0.001822,-0.002250,0.249990,0,0);}
.mab_c00126{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);}
.mf3_c00126{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);}
.mac_c00126{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);}
.mbd_c00126{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);}
.m56_c00126{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);}
.m122_c00126{transform:matrix(0.203677,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203677,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203677,0.001833,-0.002250,0.249990,0,0);}
.me1_c00126{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);}
.mc_c00126{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);}
.m133_c00126{transform:matrix(0.204022,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204022,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204022,0.001836,-0.002250,0.249990,0,0);}
.mfb_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);}
.m12c_c00126{transform:matrix(0.204837,0.001844,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204837,0.001844,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204837,0.001844,-0.002250,0.249990,0,0);}
.m36_c00126{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);}
.m161_c00126{transform:matrix(0.205007,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205007,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205007,0.001845,-0.002250,0.249990,0,0);}
.m48_c00126{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);}
.mc2_c00126{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);}
.mef_c00126{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);}
.m4f_c00126{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);}
.mc6_c00126{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);}
.m71_c00126{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);}
.m30_c00126{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);}
.m68_c00126{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);}
.mc4_c00126{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);}
.mf0_c00126{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);}
.mec_c00126{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);}
.m163_c00126{transform:matrix(0.208732,0.001879,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208732,0.001879,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208732,0.001879,-0.002250,0.249990,0,0);}
.ma3_c00126{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);}
.me4_c00126{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);}
.m130_c00126{transform:matrix(0.209767,0.001888,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209767,0.001888,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209767,0.001888,-0.002250,0.249990,0,0);}
.m135_c00126{transform:matrix(0.210246,0.001892,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210246,0.001892,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210246,0.001892,-0.002250,0.249990,0,0);}
.m123_c00126{transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);}
.mb2_c00126{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);}
.ma1_c00126{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);}
.ma9_c00126{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);}
.m85_c00126{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);}
.mbe_c00126{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);}
.m28_c00126{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);}
.m16_c00126{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);}
.m54_c00126{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);}
.m27_c00126{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);}
.m47_c00126{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);}
.m2d_c00126{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);}
.mc0_c00126{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);}
.mfc_c00126{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);}
.med_c00126{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);}
.mfe_c00126{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);}
.mee_c00126{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);}
.m146_c00126{transform:matrix(0.216881,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216881,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216881,0.001952,-0.002250,0.249990,0,0);}
.m144_c00126{transform:matrix(0.216946,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216946,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216946,0.001953,-0.002250,0.249990,0,0);}
.m82_c00126{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);}
.m78_c00126{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);}
.m74_c00126{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);}
.m13a_c00126{transform:matrix(0.218316,0.001965,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218316,0.001965,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218316,0.001965,-0.002250,0.249990,0,0);}
.m10e_c00126{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);}
.m113_c00126{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);}
.m19_c00126{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);}
.mf1_c00126{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);}
.m23_c00126{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);}
.m33_c00126{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);}
.me6_c00126{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);}
.m14c_c00126{transform:matrix(0.222851,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222851,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222851,0.002006,-0.002250,0.249990,0,0);}
.ma8_c00126{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);}
.me7_c00126{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);}
.m93_c00126{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);}
.m18_c00126{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);}
.m51_c00126{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);}
.m25_c00126{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);}
.m104_c00126{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);}
.m1c_c00126{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);}
.m116_c00126{transform:matrix(0.227144,0.001590,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227144,0.001590,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227144,0.001590,-0.001750,0.249994,0,0);}
.m12a_c00126{transform:matrix(0.227921,0.002051,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227921,0.002051,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227921,0.002051,-0.002250,0.249990,0,0);}
.mf7_c00126{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);}
.mda_c00126{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);}
.m8b_c00126{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);}
.m26_c00126{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);}
.m110_c00126{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);}
.m134_c00126{transform:matrix(0.229341,0.002064,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229341,0.002064,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229341,0.002064,-0.002250,0.249990,0,0);}
.m153_c00126{transform:matrix(0.229726,0.002068,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229726,0.002068,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229726,0.002068,-0.002250,0.249990,0,0);}
.m9e_c00126{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);}
.ma7_c00126{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);}
.m11a_c00126{transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);}
.m1b_c00126{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);}
.m149_c00126{transform:matrix(0.233491,0.002101,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233491,0.002101,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233491,0.002101,-0.002250,0.249990,0,0);}
.m12b_c00126{transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233656,0.002103,-0.002250,0.249990,0,0);}
.m15a_c00126{transform:matrix(0.234101,0.002107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234101,0.002107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234101,0.002107,-0.002250,0.249990,0,0);}
.mc9_c00126{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);}
.m157_c00126{transform:matrix(0.234361,0.002109,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234361,0.002109,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234361,0.002109,-0.002250,0.249990,0,0);}
.ma6_c00126{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);}
.m15f_c00126{transform:matrix(0.235545,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235545,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235545,0.002120,-0.002250,0.249990,0,0);}
.m142_c00126{transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);}
.m14d_c00126{transform:matrix(0.237245,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237245,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237245,0.002135,-0.002250,0.249990,0,0);}
.m125_c00126{transform:matrix(0.237540,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237540,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237540,0.002138,-0.002250,0.249990,0,0);}
.me_c00126{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);}
.m2f_c00126{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);}
.m145_c00126{transform:matrix(0.238760,0.002149,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238760,0.002149,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238760,0.002149,-0.002250,0.249990,0,0);}
.m6e_c00126{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);}
.m7e_c00126{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);}
.mcb_c00126{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);}
.m7c_c00126{transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m103_c00126{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);}
.m127_c00126{transform:matrix(0.241270,0.002171,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241270,0.002171,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241270,0.002171,-0.002250,0.249990,0,0);}
.mbc_c00126{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);}
.m8a_c00126{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);}
.m1f_c00126{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);}
.mdf_c00126{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.mf9_c00126{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.m108_c00126{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m15b_c00126{transform:matrix(0.247610,0.002228,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247610,0.002228,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247610,0.002228,-0.002250,0.249990,0,0);}
.m119_c00126{transform:matrix(0.248114,0.001737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248114,0.001737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248114,0.001737,-0.001750,0.249994,0,0);}
.m9d_c00126{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{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);}
.me5_c00126{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.mcc_c00126{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);}
.m3e_c00126{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);}
.mc1_c00126{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);}
.m106_c00126{transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);}
.m154_c00126{transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);}
.m89_c00126{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m164_c00126{transform:matrix(0.259279,0.002334,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259279,0.002334,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259279,0.002334,-0.002250,0.249990,0,0);}
.ma2_c00126{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);}
.md7_c00126{transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);}
.mdd_c00126{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.m10d_c00126{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);}
.me2_c00126{transform:matrix(0.266290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266290,0.000000,0.000000,0.250000,0,0);}
.m165_c00126{transform:matrix(0.267834,0.002411,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267834,0.002411,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267834,0.002411,-0.002250,0.249990,0,0);}
.m5f_c00126{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);}
.m11c_c00126{transform:matrix(0.269318,0.001885,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269318,0.001885,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269318,0.001885,-0.001750,0.249994,0,0);}
.mc5_c00126{transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269520,0.000000,0.000000,0.250000,0,0);}
.me0_c00126{transform:matrix(0.270770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270770,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);}
.m115_c00126{transform:matrix(0.275008,0.001925,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275008,0.001925,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275008,0.001925,-0.001750,0.249994,0,0);}
.m7d_c00126{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);}
.me3_c00126{transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);}
.md5_c00126{transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);}
.m112_c00126{transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281375,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.283615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283615,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{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);}
.m117_c00126{transform:matrix(0.286623,0.002006,-0.001750,0.249994,0,0);-ms-transform:matrix(0.286623,0.002006,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.286623,0.002006,-0.001750,0.249994,0,0);}
.m114_c00126{transform:matrix(0.286805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286805,0.000000,0.000000,0.250000,0,0);}
.m150_c00126{transform:matrix(0.287128,0.002584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287128,0.002584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287128,0.002584,-0.002250,0.249990,0,0);}
.m124_c00126{transform:matrix(0.289003,0.002601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289003,0.002601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289003,0.002601,-0.002250,0.249990,0,0);}
.m0_c00126{transform:matrix(0.290350,0.003775,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290350,0.003775,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290350,0.003775,-0.003250,0.249979,0,0);}
.m83_c00126{transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290445,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);}
.m141_c00126{transform:matrix(0.292233,0.002630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.292233,0.002630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.292233,0.002630,-0.002250,0.249990,0,0);}
.m156_c00126{transform:matrix(0.293423,0.002641,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293423,0.002641,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293423,0.002641,-0.002250,0.249990,0,0);}
.m158_c00126{transform:matrix(0.293738,0.002644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293738,0.002644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293738,0.002644,-0.002250,0.249990,0,0);}
.m10_c00126{transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293740,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.294020,0.003822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294020,0.003822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294020,0.003822,-0.003250,0.249979,0,0);}
.m7_c00126{transform:matrix(0.296455,0.003854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.296455,0.003854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.296455,0.003854,-0.003250,0.249979,0,0);}
.mfa_c00126{transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);}
.m10a_c00126{transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296980,0.000000,0.000000,0.250000,0,0);}
.m143_c00126{transform:matrix(0.303328,0.002730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.303328,0.002730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.303328,0.002730,-0.002250,0.249990,0,0);}
.mff_c00126{transform:matrix(0.304740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304740,0.000000,0.000000,0.250000,0,0);}
.m11b_c00126{transform:matrix(0.309037,0.002163,-0.001750,0.249994,0,0);-ms-transform:matrix(0.309037,0.002163,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.309037,0.002163,-0.001750,0.249994,0,0);}
.m8c_c00126{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);}
.meb_c00126{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);}
.m91_c00126{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);}
.m151_c00126{transform:matrix(0.323487,0.002911,-0.002250,0.249990,0,0);-ms-transform:matrix(0.323487,0.002911,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.323487,0.002911,-0.002250,0.249990,0,0);}
.m1e_c00126{transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);}
.me9_c00126{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_c00126{transform:matrix(0.335732,0.004365,-0.003250,0.249979,0,0);-ms-transform:matrix(0.335732,0.004365,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.335732,0.004365,-0.003250,0.249979,0,0);}
.m118_c00126{transform:matrix(0.342197,0.002395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342197,0.002395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342197,0.002395,-0.001750,0.249994,0,0);}
.m90_c00126{transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342325,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.349290,0.004541,-0.003250,0.249979,0,0);-ms-transform:matrix(0.349290,0.004541,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.349290,0.004541,-0.003250,0.249979,0,0);}
.m136_c00126{transform:matrix(0.349926,0.003149,-0.002250,0.249990,0,0);-ms-transform:matrix(0.349926,0.003149,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.349926,0.003149,-0.002250,0.249990,0,0);}
.m12_c00126{transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);}
.m14b_c00126{transform:matrix(0.358915,0.003230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.358915,0.003230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.358915,0.003230,-0.002250,0.249990,0,0);}
.m15d_c00126{transform:matrix(0.362200,0.003260,-0.002250,0.249990,0,0);-ms-transform:matrix(0.362200,0.003260,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.362200,0.003260,-0.002250,0.249990,0,0);}
.m10c_c00126{transform:matrix(0.363100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363100,0.000000,0.000000,0.250000,0,0);}
.mf4_c00126{transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366895,0.000000,0.000000,0.250000,0,0);}
.m10b_c00126{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);}
.m15_c00126{transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);}
.m102_c00126{transform:matrix(0.372195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372195,0.000000,0.000000,0.250000,0,0);}
.m148_c00126{transform:matrix(0.373115,0.003358,-0.002250,0.249990,0,0);-ms-transform:matrix(0.373115,0.003358,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.373115,0.003358,-0.002250,0.249990,0,0);}
.m8f_c00126{transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);}
.m100_c00126{transform:matrix(0.380035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380035,0.000000,0.000000,0.250000,0,0);}
.m15e_c00126{transform:matrix(0.380045,0.003420,-0.002250,0.249990,0,0);-ms-transform:matrix(0.380045,0.003420,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.380045,0.003420,-0.002250,0.249990,0,0);}
.m8_c00126{transform:matrix(0.381338,0.004957,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381338,0.004957,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381338,0.004957,-0.003250,0.249979,0,0);}
.m14e_c00126{transform:matrix(0.392774,0.003535,-0.002250,0.249990,0,0);-ms-transform:matrix(0.392774,0.003535,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.392774,0.003535,-0.002250,0.249990,0,0);}
.m6_c00126{transform:matrix(0.404361,0.005257,-0.003250,0.249979,0,0);-ms-transform:matrix(0.404361,0.005257,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.404361,0.005257,-0.003250,0.249979,0,0);}
.m147_c00126{transform:matrix(0.420368,0.003783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.420368,0.003783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.420368,0.003783,-0.002250,0.249990,0,0);}
.m2_c00126{transform:matrix(0.424674,0.005521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.424674,0.005521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.424674,0.005521,-0.003250,0.249979,0,0);}
.m5_c00126{transform:matrix(0.436028,0.005668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.436028,0.005668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.436028,0.005668,-0.003250,0.249979,0,0);}
.ma_c00126{transform:matrix(0.444927,0.005784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.444927,0.005784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.444927,0.005784,-0.003250,0.249979,0,0);}
.m11e_c00126{transform:matrix(0.448859,0.003142,-0.001750,0.249994,0,0);-ms-transform:matrix(0.448859,0.003142,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.448859,0.003142,-0.001750,0.249994,0,0);}
.m8d_c00126{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m159_c00126{transform:matrix(0.477391,0.004297,-0.002250,0.249990,0,0);-ms-transform:matrix(0.477391,0.004297,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.477391,0.004297,-0.002250,0.249990,0,0);}
.m139_c00126{transform:matrix(0.500670,0.004506,-0.002250,0.249990,0,0);-ms-transform:matrix(0.500670,0.004506,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.500670,0.004506,-0.002250,0.249990,0,0);}
.m24_c00126{transform:matrix(0.505485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505485,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.506877,0.006589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.506877,0.006589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.506877,0.006589,-0.003250,0.249979,0,0);}
.m140_c00126{transform:matrix(0.529499,0.004765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.529499,0.004765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.529499,0.004765,-0.002250,0.249990,0,0);}
.m11d_c00126{transform:matrix(0.574816,0.004024,-0.001750,0.249994,0,0);-ms-transform:matrix(0.574816,0.004024,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.574816,0.004024,-0.001750,0.249994,0,0);}
.m120_c00126{transform:matrix(0.580606,0.004064,-0.001750,0.249994,0,0);-ms-transform:matrix(0.580606,0.004064,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.580606,0.004064,-0.001750,0.249994,0,0);}
.m138_c00126{transform:matrix(0.599726,0.005398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.599726,0.005398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.599726,0.005398,-0.002250,0.249990,0,0);}
.m11f_c00126{transform:matrix(0.607140,0.004250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.607140,0.004250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.607140,0.004250,-0.001750,0.249994,0,0);}
.m13e_c00126{transform:matrix(0.607585,0.005468,-0.002250,0.249990,0,0);-ms-transform:matrix(0.607585,0.005468,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.607585,0.005468,-0.002250,0.249990,0,0);}
.m13_c00126{transform:matrix(0.609820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609820,0.000000,0.000000,0.250000,0,0);}
.mdb_c00126{transform:matrix(0.616025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616025,0.000000,0.000000,0.250000,0,0);}
.m14a_c00126{transform:matrix(0.631649,0.005685,-0.002250,0.249990,0,0);-ms-transform:matrix(0.631649,0.005685,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.631649,0.005685,-0.002250,0.249990,0,0);}
.md9_c00126{transform:matrix(0.642135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642135,0.000000,0.000000,0.250000,0,0);}
.m14f_c00126{transform:matrix(0.669083,0.006022,-0.002250,0.249990,0,0);-ms-transform:matrix(0.669083,0.006022,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.669083,0.006022,-0.002250,0.249990,0,0);}
.m14_c00126{transform:matrix(0.670345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670345,0.000000,0.000000,0.250000,0,0);}
.m13f_c00126{transform:matrix(0.674633,0.006072,-0.002250,0.249990,0,0);-ms-transform:matrix(0.674633,0.006072,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.674633,0.006072,-0.002250,0.249990,0,0);}
.m15c_c00126{transform:matrix(0.763339,0.006870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.763339,0.006870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.763339,0.006870,-0.002250,0.249990,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;}
.fs5_c00126{font-size:22.050000px;}
.fs6_c00126{font-size:32.550000px;}
.fs2_c00126{font-size:37.800000px;}
.fs11_c00126{font-size:44.100000px;}
.fs14_c00126{font-size:45.150000px;}
.fs0_c00126{font-size:45.153815px;}
.fs18_c00126{font-size:47.250000px;}
.fs1e_c00126{font-size:47.251914px;}
.fs15_c00126{font-size:48.300000px;}
.fs17_c00126{font-size:49.350000px;}
.fs1d_c00126{font-size:49.351999px;}
.fs16_c00126{font-size:50.400000px;}
.fs1f_c00126{font-size:51.452084px;}
.fs13_c00126{font-size:52.500000px;}
.fs19_c00126{font-size:52.501286px;}
.fs12_c00126{font-size:55.650000px;}
.fsd_c00126{font-size:59.850000px;}
.fsb_c00126{font-size:64.050000px;}
.fsf_c00126{font-size:65.100000px;}
.fs1b_c00126{font-size:65.102636px;}
.fsa_c00126{font-size:66.150000px;}
.fs9_c00126{font-size:67.200000px;}
.fs1a_c00126{font-size:67.202722px;}
.fs8_c00126{font-size:68.250000px;}
.fs7_c00126{font-size:69.300000px;}
.fsc_c00126{font-size:70.350000px;}
.fs1c_c00126{font-size:70.352849px;}
.fse_c00126{font-size:75.600000px;}
.fs10_c00126{font-size:77.700000px;}
.fs4_c00126{font-size:93.450000px;}
.fs1_c00126{font-size:105.008872px;}
.fs3_c00126{font-size:123.900000px;}
.y0_c00126{bottom:0.000000px;}
.y7e_c00126{bottom:156.210459px;}
.y7c_c00126{bottom:156.210732px;}
.y7d_c00126{bottom:156.210835px;}
.y78_c00126{bottom:156.210918px;}
.y7b_c00126{bottom:156.210959px;}
.y79_c00126{bottom:156.211441px;}
.y7a_c00126{bottom:156.211455px;}
.y76_c00126{bottom:173.947811px;}
.y75_c00126{bottom:173.948110px;}
.y77_c00126{bottom:173.948434px;}
.y74_c00126{bottom:173.948487px;}
.y73_c00126{bottom:173.949163px;}
.y71_c00126{bottom:173.949570px;}
.y72_c00126{bottom:173.949780px;}
.y70_c00126{bottom:173.950156px;}
.y6f_c00126{bottom:173.950696px;}
.y6d_c00126{bottom:173.950762px;}
.y6b_c00126{bottom:173.950959px;}
.y6c_c00126{bottom:173.951049px;}
.y6e_c00126{bottom:173.951269px;}
.y6a_c00126{bottom:188.073319px;}
.y69_c00126{bottom:188.325742px;}
.y68_c00126{bottom:188.634366px;}
.y67_c00126{bottom:188.806410px;}
.y66_c00126{bottom:188.955072px;}
.y65_c00126{bottom:189.314901px;}
.y64_c00126{bottom:189.669424px;}
.y63_c00126{bottom:189.980451px;}
.y62_c00126{bottom:190.325822px;}
.y61_c00126{bottom:190.461240px;}
.y60_c00126{bottom:190.981462px;}
.y5f_c00126{bottom:191.146500px;}
.y5e_c00126{bottom:191.382682px;}
.y5d_c00126{bottom:191.610940px;}
.y5c_c00126{bottom:191.769403px;}
.y5b_c00126{bottom:192.240000px;}
.y5a_c00126{bottom:232.192472px;}
.y59_c00126{bottom:232.713872px;}
.y58_c00126{bottom:232.913984px;}
.y57_c00126{bottom:233.635712px;}
.y56_c00126{bottom:234.076175px;}
.y55_c00126{bottom:234.136687px;}
.y54_c00126{bottom:234.542609px;}
.y53_c00126{bottom:235.088439px;}
.y52_c00126{bottom:235.169888px;}
.y51_c00126{bottom:253.763147px;}
.y50_c00126{bottom:254.348885px;}
.y4f_c00126{bottom:254.776214px;}
.y4e_c00126{bottom:255.096960px;}
.y4d_c00126{bottom:255.709792px;}
.y4c_c00126{bottom:256.130169px;}
.y4b_c00126{bottom:256.795935px;}
.y4a_c00126{bottom:257.000068px;}
.y49_c00126{bottom:257.294126px;}
.y48_c00126{bottom:257.850636px;}
.y47_c00126{bottom:275.704737px;}
.y46_c00126{bottom:275.884814px;}
.y45_c00126{bottom:276.348579px;}
.y44_c00126{bottom:276.540131px;}
.y43_c00126{bottom:276.893210px;}
.y42_c00126{bottom:277.162791px;}
.y41_c00126{bottom:277.931224px;}
.y40_c00126{bottom:278.115716px;}
.y3f_c00126{bottom:278.322522px;}
.y3e_c00126{bottom:278.793416px;}
.y3d_c00126{bottom:279.451500px;}
.y3c_c00126{bottom:311.277906px;}
.y3b_c00126{bottom:311.495876px;}
.y3a_c00126{bottom:312.070131px;}
.y39_c00126{bottom:312.704961px;}
.y38_c00126{bottom:312.873454px;}
.y37_c00126{bottom:313.296888px;}
.y36_c00126{bottom:313.442260px;}
.y35_c00126{bottom:313.716184px;}
.y34_c00126{bottom:313.892112px;}
.y33_c00126{bottom:314.065950px;}
.y32_c00126{bottom:314.204004px;}
.y31_c00126{bottom:314.455489px;}
.y30_c00126{bottom:314.550000px;}
.y2f_c00126{bottom:330.390000px;}
.y2e_c00126{bottom:347.931000px;}
.y2d_c00126{bottom:365.719500px;}
.y2c_c00126{bottom:381.247500px;}
.y2b_c00126{bottom:383.400000px;}
.y2a_c00126{bottom:383.485500px;}
.y28_c00126{bottom:399.330000px;}
.y27_c00126{bottom:399.600000px;}
.y29_c00126{bottom:400.963500px;}
.y26_c00126{bottom:407.970000px;}
.y25_c00126{bottom:419.580000px;}
.y24_c00126{bottom:434.250000px;}
.y23_c00126{bottom:456.154500px;}
.y22_c00126{bottom:478.570500px;}
.y21_c00126{bottom:501.012000px;}
.y20_c00126{bottom:523.723500px;}
.y1f_c00126{bottom:546.058500px;}
.y1e_c00126{bottom:568.318500px;}
.y1d_c00126{bottom:592.570500px;}
.y1c_c00126{bottom:613.351500px;}
.y1b_c00126{bottom:636.216000px;}
.y1a_c00126{bottom:659.172000px;}
.y19_c00126{bottom:681.562500px;}
.y18_c00126{bottom:704.257500px;}
.y17_c00126{bottom:726.873000px;}
.y16_c00126{bottom:749.293500px;}
.y15_c00126{bottom:772.158000px;}
.y14_c00126{bottom:794.860500px;}
.y13_c00126{bottom:817.024500px;}
.y12_c00126{bottom:843.093000px;}
.y11_c00126{bottom:844.830000px;}
.yf_c00126{bottom:857.520000px;}
.y10_c00126{bottom:860.023500px;}
.ye_c00126{bottom:878.580000px;}
.yd_c00126{bottom:889.380000px;}
.yc_c00126{bottom:902.789349px;}
.yb_c00126{bottom:902.789893px;}
.ya_c00126{bottom:902.790135px;}
.y9_c00126{bottom:902.790808px;}
.y8_c00126{bottom:918.300072px;}
.y7_c00126{bottom:919.065408px;}
.y6_c00126{bottom:919.465333px;}
.y5_c00126{bottom:920.027206px;}
.y4_c00126{bottom:920.854942px;}
.y3_c00126{bottom:921.620883px;}
.y2_c00126{bottom:921.776941px;}
.y1_c00126{bottom:922.323000px;}
.h7_c00126{height:22.050000px;}
.h8_c00126{height:32.550000px;}
.h4_c00126{height:37.800000px;}
.h13_c00126{height:44.100000px;}
.h16_c00126{height:45.150000px;}
.h2_c00126{height:45.153815px;}
.h1a_c00126{height:47.250000px;}
.h20_c00126{height:47.251914px;}
.h17_c00126{height:48.300000px;}
.h19_c00126{height:49.350000px;}
.h1f_c00126{height:49.351999px;}
.h18_c00126{height:50.400000px;}
.h21_c00126{height:51.452084px;}
.h15_c00126{height:52.500000px;}
.h1b_c00126{height:52.501286px;}
.h14_c00126{height:55.650000px;}
.hf_c00126{height:59.850000px;}
.hd_c00126{height:64.050000px;}
.h11_c00126{height:65.100000px;}
.h1d_c00126{height:65.102636px;}
.hc_c00126{height:66.150000px;}
.hb_c00126{height:67.200000px;}
.h1c_c00126{height:67.202722px;}
.ha_c00126{height:68.250000px;}
.h9_c00126{height:69.300000px;}
.he_c00126{height:70.350000px;}
.h1e_c00126{height:70.352849px;}
.h10_c00126{height:75.600000px;}
.h12_c00126{height:77.700000px;}
.h6_c00126{height:93.450000px;}
.h3_c00126{height:105.008872px;}
.h5_c00126{height:123.900000px;}
.h1_c00126{height:1005.000000px;}
.h0_c00126{height:1005.150000px;}
.w0_c00126{width:705.450000px;}
.w1_c00126{width:705.750000px;}
.x0_c00126{left:0.000000px;}
.xce_c00126{left:51.571044px;}
.xd3_c00126{left:58.860987px;}
.x5f_c00126{left:62.910000px;}
.xcf_c00126{left:65.072137px;}
.x58_c00126{left:66.960000px;}
.x7a_c00126{left:69.930000px;}
.x72_c00126{left:71.280000px;}
.xc5_c00126{left:73.865712px;}
.x80_c00126{left:75.600000px;}
.x45_c00126{left:77.490000px;}
.xbd_c00126{left:93.037500px;}
.x66_c00126{left:94.230000px;}
.x4f_c00126{left:95.310000px;}
.x26_c00126{left:96.390000px;}
.x18_c00126{left:97.470000px;}
.x3b_c00126{left:99.360000px;}
.x89_c00126{left:100.980000px;}
.x6f_c00126{left:103.140000px;}
.xd0_c00126{left:104.763850px;}
.xa7_c00126{left:109.620000px;}
.x8e_c00126{left:111.240000px;}
.xaa_c00126{left:113.940000px;}
.xa1_c00126{left:115.020000px;}
.x67_c00126{left:119.880000px;}
.x3c_c00126{left:121.500000px;}
.x99_c00126{left:124.200000px;}
.x74_c00126{left:127.440000px;}
.x73_c00126{left:130.680000px;}
.xc8_c00126{left:132.183000px;}
.x19_c00126{left:134.460000px;}
.x60_c00126{left:136.890000px;}
.xd4_c00126{left:137.974400px;}
.x81_c00126{left:139.050000px;}
.x50_c00126{left:140.130000px;}
.xc6_c00126{left:142.180833px;}
.x27_c00126{left:144.990000px;}
.x93_c00126{left:146.880000px;}
.xb7_c00126{left:148.671000px;}
.x46_c00126{left:150.120000px;}
.xa2_c00126{left:151.470000px;}
.x32_c00126{left:154.440000px;}
.xc9_c00126{left:157.545000px;}
.x14_c00126{left:160.110000px;}
.x59_c00126{left:161.460000px;}
.xd1_c00126{left:162.545535px;}
.x9a_c00126{left:164.160000px;}
.xab_c00126{left:165.510000px;}
.xd5_c00126{left:166.865235px;}
.xb1_c00126{left:168.210000px;}
.xc1_c00126{left:169.445142px;}
.x28_c00126{left:171.990000px;}
.xa3_c00126{left:178.470000px;}
.x5a_c00126{left:179.820000px;}
.x33_c00126{left:180.900000px;}
.x51_c00126{left:184.410000px;}
.x68_c00126{left:186.030000px;}
.x3d_c00126{left:187.920000px;}
.xac_c00126{left:190.890000px;}
.xc2_c00126{left:192.126642px;}
.x75_c00126{left:193.590000px;}
.x61_c00126{left:195.480000px;}
.x1a_c00126{left:197.640000px;}
.x10_c00126{left:199.800000px;}
.x69_c00126{left:201.420000px;}
.xb8_c00126{left:204.319500px;}
.x7b_c00126{left:206.550000px;}
.x9_c00126{left:208.163793px;}
.x8f_c00126{left:209.790000px;}
.x47_c00126{left:211.410000px;}
.x3e_c00126{left:213.570000px;}
.x1b_c00126{left:214.650000px;}
.x82_c00126{left:215.730000px;}
.xad_c00126{left:218.700000px;}
.x9b_c00126{left:219.780000px;}
.xd2_c00126{left:221.947341px;}
.x76_c00126{left:223.020000px;}
.x29_c00126{left:224.640000px;}
.xa4_c00126{left:227.880000px;}
.xb2_c00126{left:228.960000px;}
.x3f_c00126{left:235.170000px;}
.x94_c00126{left:237.600000px;}
.x11_c00126{left:239.220000px;}
.x34_c00126{left:240.840000px;}
.x9c_c00126{left:242.460000px;}
.x48_c00126{left:245.430000px;}
.x8a_c00126{left:248.130000px;}
.x1c_c00126{left:249.210000px;}
.x52_c00126{left:252.180000px;}
.xb9_c00126{left:254.286000px;}
.x35_c00126{left:255.420000px;}
.xb3_c00126{left:259.470000px;}
.xbe_c00126{left:261.957000px;}
.x5b_c00126{left:264.060000px;}
.x7c_c00126{left:265.140000px;}
.x1d_c00126{left:269.460000px;}
.x83_c00126{left:271.350000px;}
.xca_c00126{left:274.974000px;}
.xae_c00126{left:276.210000px;}
.x1_c00126{left:278.184000px;}
.xa8_c00126{left:279.720000px;}
.x62_c00126{left:282.690000px;}
.x9d_c00126{left:286.740000px;}
.x90_c00126{left:288.090000px;}
.x2a_c00126{left:289.170000px;}
.x40_c00126{left:291.060000px;}
.xba_c00126{left:293.418000px;}
.xb4_c00126{left:295.110000px;}
.x5c_c00126{left:297.000000px;}
.x8b_c00126{left:299.430000px;}
.x6a_c00126{left:305.370000px;}
.xd6_c00126{left:309.432278px;}
.x41_c00126{left:311.580000px;}
.xc3_c00126{left:312.809142px;}
.x49_c00126{left:314.010000px;}
.x2b_c00126{left:315.900000px;}
.x7d_c00126{left:317.790000px;}
.x2_c00126{left:320.188500px;}
.xa_c00126{left:324.542949px;}
.x84_c00126{left:325.620000px;}
.x63_c00126{left:331.020000px;}
.x3_c00126{left:332.193000px;}
.x77_c00126{left:334.800000px;}
.x1e_c00126{left:336.690000px;}
.xb6_c00126{left:339.930000px;}
.xa9_c00126{left:342.900000px;}
.xaf_c00126{left:344.520000px;}
.xc7_c00126{left:345.807669px;}
.x70_c00126{left:348.030000px;}
.xb5_c00126{left:351.540000px;}
.x36_c00126{left:353.430000px;}
.x1f_c00126{left:355.050000px;}
.x6b_c00126{left:358.560000px;}
.x95_c00126{left:359.910000px;}
.x53_c00126{left:361.260000px;}
.x4a_c00126{left:367.470000px;}
.x37_c00126{left:369.900000px;}
.xa5_c00126{left:372.330000px;}
.x78_c00126{left:373.410000px;}
.xbb_c00126{left:374.676000px;}
.x6c_c00126{left:376.650000px;}
.x5d_c00126{left:379.620000px;}
.x91_c00126{left:381.510000px;}
.x20_c00126{left:384.480000px;}
.xb_c00126{left:386.648940px;}
.x85_c00126{left:387.720000px;}
.x54_c00126{left:389.610000px;}
.x4_c00126{left:391.111500px;}
.x38_c00126{left:393.120000px;}
.x15_c00126{left:395.550000px;}
.x79_c00126{left:398.520000px;}
.x2c_c00126{left:400.410000px;}
.x21_c00126{left:406.080000px;}
.x8c_c00126{left:408.510000px;}
.x4b_c00126{left:413.370000px;}
.xbf_c00126{left:416.523000px;}
.x64_c00126{left:420.390000px;}
.xa6_c00126{left:421.470000px;}
.x96_c00126{left:423.090000px;}
.xcb_c00126{left:427.279500px;}
.x86_c00126{left:428.760000px;}
.x55_c00126{left:430.110000px;}
.x5e_c00126{left:436.050000px;}
.xc0_c00126{left:437.806500px;}
.x22_c00126{left:439.830000px;}
.x42_c00126{left:443.880000px;}
.x87_c00126{left:446.850000px;}
.x8d_c00126{left:451.710000px;}
.x5_c00126{left:454.783500px;}
.x2d_c00126{left:456.030000px;}
.x16_c00126{left:459.810000px;}
.xcc_c00126{left:462.913500px;}
.xc4_c00126{left:464.021142px;}
.x39_c00126{left:465.480000px;}
.x6d_c00126{left:467.100000px;}
.x4c_c00126{left:468.720000px;}
.x2e_c00126{left:469.800000px;}
.x97_c00126{left:472.770000px;}
.x56_c00126{left:474.390000px;}
.x7e_c00126{left:476.820000px;}
.x71_c00126{left:478.170000px;}
.x92_c00126{left:480.330000px;}
.x23_c00126{left:488.430000px;}
.x65_c00126{left:489.510000px;}
.x4d_c00126{left:493.830000px;}
.x6_c00126{left:498.004500px;}
.x7f_c00126{left:504.090000px;}
.x98_c00126{left:508.410000px;}
.x43_c00126{left:511.110000px;}
.x88_c00126{left:514.890000px;}
.x6e_c00126{left:516.510000px;}
.x24_c00126{left:517.860000px;}
.x12_c00126{left:520.830000px;}
.x3a_c00126{left:521.910000px;}
.x57_c00126{left:524.070000px;}
.xcd_c00126{left:525.252000px;}
.x2f_c00126{left:527.580000px;}
.x7_c00126{left:528.768000px;}
.x44_c00126{left:532.440000px;}
.x4e_c00126{left:535.680000px;}
.xc_c00126{left:541.101531px;}
.xb0_c00126{left:544.860000px;}
.x30_c00126{left:546.480000px;}
.x13_c00126{left:571.320000px;}
.x9e_c00126{left:576.720000px;}
.x25_c00126{left:577.800000px;}
.x9f_c00126{left:583.740000px;}
.x31_c00126{left:586.440000px;}
.x8_c00126{left:587.640000px;}
.xa0_c00126{left:589.140000px;}
.xf_c00126{left:591.840000px;}
.xd_c00126{left:594.270000px;}
.x17_c00126{left:596.430000px;}
.xbc_c00126{left:602.611500px;}
.xe_c00126{left:607.230000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
.fs5_c00126{font-size:19.600000pt;}
.fs6_c00126{font-size:28.933333pt;}
.fs2_c00126{font-size:33.600000pt;}
.fs11_c00126{font-size:39.200000pt;}
.fs14_c00126{font-size:40.133333pt;}
.fs0_c00126{font-size:40.136724pt;}
.fs18_c00126{font-size:42.000000pt;}
.fs1e_c00126{font-size:42.001701pt;}
.fs15_c00126{font-size:42.933333pt;}
.fs17_c00126{font-size:43.866667pt;}
.fs1d_c00126{font-size:43.868443pt;}
.fs16_c00126{font-size:44.800000pt;}
.fs1f_c00126{font-size:45.735185pt;}
.fs13_c00126{font-size:46.666667pt;}
.fs19_c00126{font-size:46.667810pt;}
.fs12_c00126{font-size:49.466667pt;}
.fsd_c00126{font-size:53.200000pt;}
.fsb_c00126{font-size:56.933333pt;}
.fsf_c00126{font-size:57.866667pt;}
.fs1b_c00126{font-size:57.869010pt;}
.fsa_c00126{font-size:58.800000pt;}
.fs9_c00126{font-size:59.733333pt;}
.fs1a_c00126{font-size:59.735752pt;}
.fs8_c00126{font-size:60.666667pt;}
.fs7_c00126{font-size:61.600000pt;}
.fsc_c00126{font-size:62.533333pt;}
.fs1c_c00126{font-size:62.535866pt;}
.fse_c00126{font-size:67.200000pt;}
.fs10_c00126{font-size:69.066667pt;}
.fs4_c00126{font-size:83.066667pt;}
.fs1_c00126{font-size:93.341220pt;}
.fs3_c00126{font-size:110.133333pt;}
.y0_c00126{bottom:0.000000pt;}
.y7e_c00126{bottom:138.853741pt;}
.y7c_c00126{bottom:138.853984pt;}
.y7d_c00126{bottom:138.854076pt;}
.y78_c00126{bottom:138.854149pt;}
.y7b_c00126{bottom:138.854185pt;}
.y79_c00126{bottom:138.854615pt;}
.y7a_c00126{bottom:138.854627pt;}
.y76_c00126{bottom:154.620276pt;}
.y75_c00126{bottom:154.620543pt;}
.y77_c00126{bottom:154.620831pt;}
.y74_c00126{bottom:154.620877pt;}
.y73_c00126{bottom:154.621479pt;}
.y71_c00126{bottom:154.621840pt;}
.y72_c00126{bottom:154.622027pt;}
.y70_c00126{bottom:154.622361pt;}
.y6f_c00126{bottom:154.622841pt;}
.y6d_c00126{bottom:154.622900pt;}
.y6b_c00126{bottom:154.623075pt;}
.y6c_c00126{bottom:154.623155pt;}
.y6e_c00126{bottom:154.623351pt;}
.y6a_c00126{bottom:167.176284pt;}
.y69_c00126{bottom:167.400660pt;}
.y68_c00126{bottom:167.674992pt;}
.y67_c00126{bottom:167.827920pt;}
.y66_c00126{bottom:167.960064pt;}
.y65_c00126{bottom:168.279912pt;}
.y64_c00126{bottom:168.595044pt;}
.y63_c00126{bottom:168.871512pt;}
.y62_c00126{bottom:169.178508pt;}
.y61_c00126{bottom:169.298880pt;}
.y60_c00126{bottom:169.761300pt;}
.y5f_c00126{bottom:169.908000pt;}
.y5e_c00126{bottom:170.117940pt;}
.y5d_c00126{bottom:170.320836pt;}
.y5c_c00126{bottom:170.461692pt;}
.y5b_c00126{bottom:170.880000pt;}
.y5a_c00126{bottom:206.393308pt;}
.y59_c00126{bottom:206.856775pt;}
.y58_c00126{bottom:207.034652pt;}
.y57_c00126{bottom:207.676188pt;}
.y56_c00126{bottom:208.067711pt;}
.y55_c00126{bottom:208.121500pt;}
.y54_c00126{bottom:208.482319pt;}
.y53_c00126{bottom:208.967501pt;}
.y52_c00126{bottom:209.039900pt;}
.y51_c00126{bottom:225.567241pt;}
.y50_c00126{bottom:226.087897pt;}
.y4f_c00126{bottom:226.467745pt;}
.y4e_c00126{bottom:226.752853pt;}
.y4d_c00126{bottom:227.297593pt;}
.y4c_c00126{bottom:227.671261pt;}
.y4b_c00126{bottom:228.263053pt;}
.y4a_c00126{bottom:228.444505pt;}
.y49_c00126{bottom:228.705889pt;}
.y48_c00126{bottom:229.200565pt;}
.y47_c00126{bottom:245.070877pt;}
.y46_c00126{bottom:245.230945pt;}
.y45_c00126{bottom:245.643181pt;}
.y44_c00126{bottom:245.813449pt;}
.y43_c00126{bottom:246.127297pt;}
.y42_c00126{bottom:246.366925pt;}
.y41_c00126{bottom:247.049977pt;}
.y40_c00126{bottom:247.213969pt;}
.y3f_c00126{bottom:247.397797pt;}
.y3e_c00126{bottom:247.816369pt;}
.y3d_c00126{bottom:248.401333pt;}
.y3c_c00126{bottom:276.691472pt;}
.y3b_c00126{bottom:276.885223pt;}
.y3a_c00126{bottom:277.395672pt;}
.y39_c00126{bottom:277.959965pt;}
.y38_c00126{bottom:278.109737pt;}
.y37_c00126{bottom:278.486123pt;}
.y36_c00126{bottom:278.615343pt;}
.y35_c00126{bottom:278.858831pt;}
.y34_c00126{bottom:279.015211pt;}
.y33_c00126{bottom:279.169733pt;}
.y32_c00126{bottom:279.292448pt;}
.y31_c00126{bottom:279.515991pt;}
.y30_c00126{bottom:279.600000pt;}
.y2f_c00126{bottom:293.680000pt;}
.y2e_c00126{bottom:309.272000pt;}
.y2d_c00126{bottom:325.084000pt;}
.y2c_c00126{bottom:338.886667pt;}
.y2b_c00126{bottom:340.800000pt;}
.y2a_c00126{bottom:340.876000pt;}
.y28_c00126{bottom:354.960000pt;}
.y27_c00126{bottom:355.200000pt;}
.y29_c00126{bottom:356.412000pt;}
.y26_c00126{bottom:362.640000pt;}
.y25_c00126{bottom:372.960000pt;}
.y24_c00126{bottom:386.000000pt;}
.y23_c00126{bottom:405.470667pt;}
.y22_c00126{bottom:425.396000pt;}
.y21_c00126{bottom:445.344000pt;}
.y20_c00126{bottom:465.532000pt;}
.y1f_c00126{bottom:485.385333pt;}
.y1e_c00126{bottom:505.172000pt;}
.y1d_c00126{bottom:526.729333pt;}
.y1c_c00126{bottom:545.201333pt;}
.y1b_c00126{bottom:565.525333pt;}
.y1a_c00126{bottom:585.930667pt;}
.y19_c00126{bottom:605.833333pt;}
.y18_c00126{bottom:626.006667pt;}
.y17_c00126{bottom:646.109333pt;}
.y16_c00126{bottom:666.038667pt;}
.y15_c00126{bottom:686.362667pt;}
.y14_c00126{bottom:706.542667pt;}
.y13_c00126{bottom:726.244000pt;}
.y12_c00126{bottom:749.416000pt;}
.y11_c00126{bottom:750.960000pt;}
.yf_c00126{bottom:762.240000pt;}
.y10_c00126{bottom:764.465333pt;}
.ye_c00126{bottom:780.960000pt;}
.yd_c00126{bottom:790.560000pt;}
.yc_c00126{bottom:802.479421pt;}
.yb_c00126{bottom:802.479905pt;}
.ya_c00126{bottom:802.480120pt;}
.y9_c00126{bottom:802.480719pt;}
.y8_c00126{bottom:816.266731pt;}
.y7_c00126{bottom:816.947029pt;}
.y6_c00126{bottom:817.302519pt;}
.y5_c00126{bottom:817.801961pt;}
.y4_c00126{bottom:818.537727pt;}
.y3_c00126{bottom:819.218563pt;}
.y2_c00126{bottom:819.357281pt;}
.y1_c00126{bottom:819.842667pt;}
.h7_c00126{height:19.600000pt;}
.h8_c00126{height:28.933333pt;}
.h4_c00126{height:33.600000pt;}
.h13_c00126{height:39.200000pt;}
.h16_c00126{height:40.133333pt;}
.h2_c00126{height:40.136724pt;}
.h1a_c00126{height:42.000000pt;}
.h20_c00126{height:42.001701pt;}
.h17_c00126{height:42.933333pt;}
.h19_c00126{height:43.866667pt;}
.h1f_c00126{height:43.868443pt;}
.h18_c00126{height:44.800000pt;}
.h21_c00126{height:45.735185pt;}
.h15_c00126{height:46.666667pt;}
.h1b_c00126{height:46.667810pt;}
.h14_c00126{height:49.466667pt;}
.hf_c00126{height:53.200000pt;}
.hd_c00126{height:56.933333pt;}
.h11_c00126{height:57.866667pt;}
.h1d_c00126{height:57.869010pt;}
.hc_c00126{height:58.800000pt;}
.hb_c00126{height:59.733333pt;}
.h1c_c00126{height:59.735752pt;}
.ha_c00126{height:60.666667pt;}
.h9_c00126{height:61.600000pt;}
.he_c00126{height:62.533333pt;}
.h1e_c00126{height:62.535866pt;}
.h10_c00126{height:67.200000pt;}
.h12_c00126{height:69.066667pt;}
.h6_c00126{height:83.066667pt;}
.h3_c00126{height:93.341220pt;}
.h5_c00126{height:110.133333pt;}
.h1_c00126{height:893.333333pt;}
.h0_c00126{height:893.466667pt;}
.w0_c00126{width:627.066667pt;}
.w1_c00126{width:627.333333pt;}
.x0_c00126{left:0.000000pt;}
.xce_c00126{left:45.840928pt;}
.xd3_c00126{left:52.320877pt;}
.x5f_c00126{left:55.920000pt;}
.xcf_c00126{left:57.841900pt;}
.x58_c00126{left:59.520000pt;}
.x7a_c00126{left:62.160000pt;}
.x72_c00126{left:63.360000pt;}
.xc5_c00126{left:65.658411pt;}
.x80_c00126{left:67.200000pt;}
.x45_c00126{left:68.880000pt;}
.xbd_c00126{left:82.700000pt;}
.x66_c00126{left:83.760000pt;}
.x4f_c00126{left:84.720000pt;}
.x26_c00126{left:85.680000pt;}
.x18_c00126{left:86.640000pt;}
.x3b_c00126{left:88.320000pt;}
.x89_c00126{left:89.760000pt;}
.x6f_c00126{left:91.680000pt;}
.xd0_c00126{left:93.123423pt;}
.xa7_c00126{left:97.440000pt;}
.x8e_c00126{left:98.880000pt;}
.xaa_c00126{left:101.280000pt;}
.xa1_c00126{left:102.240000pt;}
.x67_c00126{left:106.560000pt;}
.x3c_c00126{left:108.000000pt;}
.x99_c00126{left:110.400000pt;}
.x74_c00126{left:113.280000pt;}
.x73_c00126{left:116.160000pt;}
.xc8_c00126{left:117.496000pt;}
.x19_c00126{left:119.520000pt;}
.x60_c00126{left:121.680000pt;}
.xd4_c00126{left:122.643911pt;}
.x81_c00126{left:123.600000pt;}
.x50_c00126{left:124.560000pt;}
.xc6_c00126{left:126.382963pt;}
.x27_c00126{left:128.880000pt;}
.x93_c00126{left:130.560000pt;}
.xb7_c00126{left:132.152000pt;}
.x46_c00126{left:133.440000pt;}
.xa2_c00126{left:134.640000pt;}
.x32_c00126{left:137.280000pt;}
.xc9_c00126{left:140.040000pt;}
.x14_c00126{left:142.320000pt;}
.x59_c00126{left:143.520000pt;}
.xd1_c00126{left:144.484920pt;}
.x9a_c00126{left:145.920000pt;}
.xab_c00126{left:147.120000pt;}
.xd5_c00126{left:148.324653pt;}
.xb1_c00126{left:149.520000pt;}
.xc1_c00126{left:150.617904pt;}
.x28_c00126{left:152.880000pt;}
.xa3_c00126{left:158.640000pt;}
.x5a_c00126{left:159.840000pt;}
.x33_c00126{left:160.800000pt;}
.x51_c00126{left:163.920000pt;}
.x68_c00126{left:165.360000pt;}
.x3d_c00126{left:167.040000pt;}
.xac_c00126{left:169.680000pt;}
.xc2_c00126{left:170.779237pt;}
.x75_c00126{left:172.080000pt;}
.x61_c00126{left:173.760000pt;}
.x1a_c00126{left:175.680000pt;}
.x10_c00126{left:177.600000pt;}
.x69_c00126{left:179.040000pt;}
.xb8_c00126{left:181.617333pt;}
.x7b_c00126{left:183.600000pt;}
.x9_c00126{left:185.034483pt;}
.x8f_c00126{left:186.480000pt;}
.x47_c00126{left:187.920000pt;}
.x3e_c00126{left:189.840000pt;}
.x1b_c00126{left:190.800000pt;}
.x82_c00126{left:191.760000pt;}
.xad_c00126{left:194.400000pt;}
.x9b_c00126{left:195.360000pt;}
.xd2_c00126{left:197.286525pt;}
.x76_c00126{left:198.240000pt;}
.x29_c00126{left:199.680000pt;}
.xa4_c00126{left:202.560000pt;}
.xb2_c00126{left:203.520000pt;}
.x3f_c00126{left:209.040000pt;}
.x94_c00126{left:211.200000pt;}
.x11_c00126{left:212.640000pt;}
.x34_c00126{left:214.080000pt;}
.x9c_c00126{left:215.520000pt;}
.x48_c00126{left:218.160000pt;}
.x8a_c00126{left:220.560000pt;}
.x1c_c00126{left:221.520000pt;}
.x52_c00126{left:224.160000pt;}
.xb9_c00126{left:226.032000pt;}
.x35_c00126{left:227.040000pt;}
.xb3_c00126{left:230.640000pt;}
.xbe_c00126{left:232.850667pt;}
.x5b_c00126{left:234.720000pt;}
.x7c_c00126{left:235.680000pt;}
.x1d_c00126{left:239.520000pt;}
.x83_c00126{left:241.200000pt;}
.xca_c00126{left:244.421333pt;}
.xae_c00126{left:245.520000pt;}
.x1_c00126{left:247.274667pt;}
.xa8_c00126{left:248.640000pt;}
.x62_c00126{left:251.280000pt;}
.x9d_c00126{left:254.880000pt;}
.x90_c00126{left:256.080000pt;}
.x2a_c00126{left:257.040000pt;}
.x40_c00126{left:258.720000pt;}
.xba_c00126{left:260.816000pt;}
.xb4_c00126{left:262.320000pt;}
.x5c_c00126{left:264.000000pt;}
.x8b_c00126{left:266.160000pt;}
.x6a_c00126{left:271.440000pt;}
.xd6_c00126{left:275.050913pt;}
.x41_c00126{left:276.960000pt;}
.xc3_c00126{left:278.052571pt;}
.x49_c00126{left:279.120000pt;}
.x2b_c00126{left:280.800000pt;}
.x7d_c00126{left:282.480000pt;}
.x2_c00126{left:284.612000pt;}
.xa_c00126{left:288.482621pt;}
.x84_c00126{left:289.440000pt;}
.x63_c00126{left:294.240000pt;}
.x3_c00126{left:295.282667pt;}
.x77_c00126{left:297.600000pt;}
.x1e_c00126{left:299.280000pt;}
.xb6_c00126{left:302.160000pt;}
.xa9_c00126{left:304.800000pt;}
.xaf_c00126{left:306.240000pt;}
.xc7_c00126{left:307.384595pt;}
.x70_c00126{left:309.360000pt;}
.xb5_c00126{left:312.480000pt;}
.x36_c00126{left:314.160000pt;}
.x1f_c00126{left:315.600000pt;}
.x6b_c00126{left:318.720000pt;}
.x95_c00126{left:319.920000pt;}
.x53_c00126{left:321.120000pt;}
.x4a_c00126{left:326.640000pt;}
.x37_c00126{left:328.800000pt;}
.xa5_c00126{left:330.960000pt;}
.x78_c00126{left:331.920000pt;}
.xbb_c00126{left:333.045333pt;}
.x6c_c00126{left:334.800000pt;}
.x5d_c00126{left:337.440000pt;}
.x91_c00126{left:339.120000pt;}
.x20_c00126{left:341.760000pt;}
.xb_c00126{left:343.687947pt;}
.x85_c00126{left:344.640000pt;}
.x54_c00126{left:346.320000pt;}
.x4_c00126{left:347.654667pt;}
.x38_c00126{left:349.440000pt;}
.x15_c00126{left:351.600000pt;}
.x79_c00126{left:354.240000pt;}
.x2c_c00126{left:355.920000pt;}
.x21_c00126{left:360.960000pt;}
.x8c_c00126{left:363.120000pt;}
.x4b_c00126{left:367.440000pt;}
.xbf_c00126{left:370.242667pt;}
.x64_c00126{left:373.680000pt;}
.xa6_c00126{left:374.640000pt;}
.x96_c00126{left:376.080000pt;}
.xcb_c00126{left:379.804000pt;}
.x86_c00126{left:381.120000pt;}
.x55_c00126{left:382.320000pt;}
.x5e_c00126{left:387.600000pt;}
.xc0_c00126{left:389.161333pt;}
.x22_c00126{left:390.960000pt;}
.x42_c00126{left:394.560000pt;}
.x87_c00126{left:397.200000pt;}
.x8d_c00126{left:401.520000pt;}
.x5_c00126{left:404.252000pt;}
.x2d_c00126{left:405.360000pt;}
.x16_c00126{left:408.720000pt;}
.xcc_c00126{left:411.478667pt;}
.xc4_c00126{left:412.463237pt;}
.x39_c00126{left:413.760000pt;}
.x6d_c00126{left:415.200000pt;}
.x4c_c00126{left:416.640000pt;}
.x2e_c00126{left:417.600000pt;}
.x97_c00126{left:420.240000pt;}
.x56_c00126{left:421.680000pt;}
.x7e_c00126{left:423.840000pt;}
.x71_c00126{left:425.040000pt;}
.x92_c00126{left:426.960000pt;}
.x23_c00126{left:434.160000pt;}
.x65_c00126{left:435.120000pt;}
.x4d_c00126{left:438.960000pt;}
.x6_c00126{left:442.670667pt;}
.x7f_c00126{left:448.080000pt;}
.x98_c00126{left:451.920000pt;}
.x43_c00126{left:454.320000pt;}
.x88_c00126{left:457.680000pt;}
.x6e_c00126{left:459.120000pt;}
.x24_c00126{left:460.320000pt;}
.x12_c00126{left:462.960000pt;}
.x3a_c00126{left:463.920000pt;}
.x57_c00126{left:465.840000pt;}
.xcd_c00126{left:466.890667pt;}
.x2f_c00126{left:468.960000pt;}
.x7_c00126{left:470.016000pt;}
.x44_c00126{left:473.280000pt;}
.x4e_c00126{left:476.160000pt;}
.xc_c00126{left:480.979139pt;}
.xb0_c00126{left:484.320000pt;}
.x30_c00126{left:485.760000pt;}
.x13_c00126{left:507.840000pt;}
.x9e_c00126{left:512.640000pt;}
.x25_c00126{left:513.600000pt;}
.x9f_c00126{left:518.880000pt;}
.x31_c00126{left:521.280000pt;}
.x8_c00126{left:522.346667pt;}
.xa0_c00126{left:523.680000pt;}
.xf_c00126{left:526.080000pt;}
.xd_c00126{left:528.240000pt;}
.x17_c00126{left:530.160000pt;}
.xbc_c00126{left:535.654667pt;}
.xe_c00126{left:539.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m30_c00127{transform:matrix(0.016300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00127{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.mec_c00127{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{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);}
.m110_c00127{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);}
.m5a_c00127{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);}
.m51_c00127{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.ma1_c00127{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m85_c00127{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);}
.m52_c00127{transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);}
.md4_c00127{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);}
.m38_c00127{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);}
.m13_c00127{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);}
.m14_c00127{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);}
.ma6_c00127{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);}
.m93_c00127{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);}
.m55_c00127{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);}
.m3d_c00127{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);}
.m23_c00127{transform:matrix(0.161430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161430,0.000000,0.000000,0.250000,0,0);}
.m126_c00127{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);}
.m9_c00127{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);}
.m70_c00127{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);}
.m103_c00127{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);}
.m58_c00127{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);}
.m10f_c00127{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);}
.mca_c00127{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);}
.m26_c00127{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);}
.mcb_c00127{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);}
.me2_c00127{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);}
.m82_c00127{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);}
.m4d_c00127{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);}
.me5_c00127{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);}
.meb_c00127{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);}
.m5_c00127{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);}
.m4f_c00127{transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);}
.m28_c00127{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);}
.md5_c00127{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);}
.m2_c00127{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);}
.m7e_c00127{transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);}
.mb7_c00127{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);}
.ma8_c00127{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);}
.m22_c00127{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);}
.md_c00127{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);}
.m6_c00127{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);}
.m86_c00127{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);}
.m15_c00127{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m2d_c00127{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);}
.m57_c00127{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);}
.m4_c00127{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m9c_c00127{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);}
.m81_c00127{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);}
.m4e_c00127{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);}
.m7d_c00127{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);}
.m3_c00127{transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);}
.mcd_c00127{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);}
.me_c00127{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);}
.m105_c00127{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);}
.md7_c00127{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);}
.md8_c00127{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);}
.mb1_c00127{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);}
.m53_c00127{transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{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);}
.m16_c00127{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);}
.m65_c00127{transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);}
.m116_c00127{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);}
.m1e_c00127{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);}
.m98_c00127{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);}
.m20_c00127{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);}
.mc9_c00127{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);}
.m124_c00127{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);}
.mb2_c00127{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);}
.m9d_c00127{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);}
.m77_c00127{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);}
.mcc_c00127{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);}
.m129_c00127{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);}
.m11_c00127{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);}
.ma2_c00127{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);}
.ma7_c00127{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);}
.m71_c00127{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);}
.mdb_c00127{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);}
.mb9_c00127{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);}
.m87_c00127{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);}
.m8e_c00127{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);}
.mf5_c00127{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);}
.m79_c00127{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);}
.mbd_c00127{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);}
.m90_c00127{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);}
.m9e_c00127{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);}
.mdc_c00127{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);}
.m8f_c00127{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{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);}
.m6f_c00127{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);}
.me7_c00127{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);}
.m8a_c00127{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);}
.m1c_c00127{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);}
.m33_c00127{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);}
.m27_c00127{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);}
.mc6_c00127{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);}
.ma_c00127{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);}
.m45_c00127{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_c00127{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);}
.me1_c00127{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);}
.m62_c00127{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);}
.m54_c00127{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);}
.m4b_c00127{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);}
.m40_c00127{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);}
.m25_c00127{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);}
.m115_c00127{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);}
.m114_c00127{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);}
.m106_c00127{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);}
.m1f_c00127{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);}
.mdd_c00127{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);}
.m59_c00127{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);}
.m2b_c00127{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);}
.m39_c00127{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);}
.m11e_c00127{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);}
.mdf_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);}
.mac_c00127{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);}
.m88_c00127{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);}
.m94_c00127{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);}
.m104_c00127{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);}
.m118_c00127{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);}
.mf3_c00127{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);}
.m8b_c00127{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);}
.mb_c00127{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);}
.m1d_c00127{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);}
.m2a_c00127{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);}
.med_c00127{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);}
.m117_c00127{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);}
.m12b_c00127{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);}
.mc8_c00127{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);}
.m95_c00127{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);}
.m1b_c00127{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);}
.mb3_c00127{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);}
.maf_c00127{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);}
.m6a_c00127{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);}
.m12a_c00127{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);}
.mf_c00127{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);}
.m3f_c00127{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);}
.mda_c00127{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);}
.m9a_c00127{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);}
.m97_c00127{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);}
.m44_c00127{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);}
.m41_c00127{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);}
.m3a_c00127{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);}
.m12e_c00127{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);}
.mc_c00127{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);}
.md6_c00127{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);}
.m10c_c00127{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);}
.m127_c00127{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);}
.m12c_c00127{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);}
.me3_c00127{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);}
.m107_c00127{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);}
.m99_c00127{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);}
.m2c_c00127{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);}
.m78_c00127{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);}
.m125_c00127{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);}
.mc0_c00127{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);}
.m35_c00127{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);}
.me6_c00127{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);}
.m29_c00127{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);}
.m1a_c00127{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);}
.md1_c00127{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_c00127{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);}
.m83_c00127{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);}
.m11b_c00127{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);}
.m7c_c00127{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_c00127{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);}
.m5e_c00127{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);}
.maa_c00127{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);}
.m111_c00127{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);}
.m11f_c00127{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);}
.ma3_c00127{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);}
.me4_c00127{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);}
.mce_c00127{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);}
.m7b_c00127{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);}
.m47_c00127{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);}
.m7a_c00127{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);}
.m8_c00127{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);}
.m92_c00127{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);}
.m60_c00127{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);}
.m102_c00127{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);}
.md3_c00127{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);}
.m3c_c00127{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);}
.m4c_c00127{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);}
.m48_c00127{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);}
.m19_c00127{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);}
.mf6_c00127{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);}
.mab_c00127{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);}
.mde_c00127{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);}
.m64_c00127{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);}
.m96_c00127{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);}
.m11a_c00127{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);}
.m69_c00127{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);}
.m113_c00127{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);}
.mee_c00127{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);}
.mfc_c00127{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);}
.m73_c00127{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);}
.mc3_c00127{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_c00127{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);}
.m120_c00127{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);}
.mbb_c00127{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);}
.m123_c00127{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);}
.mf0_c00127{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);}
.m119_c00127{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);}
.m8d_c00127{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);}
.mc7_c00127{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.ma0_c00127{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);}
.md0_c00127{transform:matrix(0.221480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221480,0.000000,0.000000,0.250000,0,0);}
.m108_c00127{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);}
.m6c_c00127{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);}
.ma5_c00127{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);}
.mea_c00127{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);}
.m5c_c00127{transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);}
.ma4_c00127{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);}
.m100_c00127{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);}
.mfd_c00127{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);}
.me8_c00127{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);}
.mf4_c00127{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);}
.m6e_c00127{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);}
.m5d_c00127{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);}
.mfa_c00127{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);}
.m56_c00127{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);}
.m11d_c00127{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);}
.m43_c00127{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);}
.m21_c00127{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.m11c_c00127{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);}
.ma9_c00127{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);}
.m67_c00127{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);}
.m42_c00127{transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);}
.m3b_c00127{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);}
.mad_c00127{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);}
.m9f_c00127{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);}
.mb0_c00127{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);}
.mef_c00127{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);}
.m5f_c00127{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);}
.mbf_c00127{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);}
.m6d_c00127{transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);}
.m74_c00127{transform:matrix(0.239885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239885,0.000000,0.000000,0.250000,0,0);}
.md9_c00127{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);}
.m10_c00127{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);}
.me0_c00127{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);}
.m7f_c00127{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);}
.mc2_c00127{transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);}
.m91_c00127{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);}
.mf2_c00127{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);}
.m9b_c00127{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);}
.m4a_c00127{transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);}
.mb4_c00127{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);}
.mf9_c00127{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m12d_c00127{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);}
.m68_c00127{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);}
.mf7_c00127{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{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);}
.m12_c00127{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);}
.m18_c00127{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);}
.m75_c00127{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m128_c00127{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);}
.mf1_c00127{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m10b_c00127{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.mcf_c00127{transform:matrix(0.253530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253530,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);}
.m34_c00127{transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);}
.m10a_c00127{transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);}
.m61_c00127{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m66_c00127{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m10e_c00127{transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);}
.m6b_c00127{transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);}
.m46_c00127{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);}
.m3e_c00127{transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00127{transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274140,0.000000,0.000000,0.250000,0,0);}
.m36_c00127{transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);}
.m112_c00127{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.mae_c00127{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.md2_c00127{transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288640,0.000000,0.000000,0.250000,0,0);}
.mba_c00127{transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289650,0.000000,0.000000,0.250000,0,0);}
.m89_c00127{transform:matrix(0.290595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290595,0.000000,0.000000,0.250000,0,0);}
.m31_c00127{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.mfe_c00127{transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292275,0.000000,0.000000,0.250000,0,0);}
.mf8_c00127{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.m72_c00127{transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.m122_c00127{transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);}
.mff_c00127{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m63_c00127{transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328050,0.000000,0.000000,0.250000,0,0);}
.m121_c00127{transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328520,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);}
.m109_c00127{transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342785,0.000000,0.000000,0.250000,0,0);}
.me9_c00127{transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);}
.mfb_c00127{transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353595,0.000000,0.000000,0.250000,0,0);}
.m76_c00127{transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);}
.m12f_c00127{transform:matrix(0.373800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373800,0.000000,0.000000,0.250000,0,0);}
.mb6_c00127{transform:matrix(0.386040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386040,0.000000,0.000000,0.250000,0,0);}
.m101_c00127{transform:matrix(0.386630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386630,0.000000,0.000000,0.250000,0,0);}
.m10d_c00127{transform:matrix(0.534765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534765,0.000000,0.000000,0.250000,0,0);}
.mb8_c00127{transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);}
.m80_c00127{transform:matrix(0.555030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555030,0.000000,0.000000,0.250000,0,0);}
.mc4_c00127{transform:matrix(0.565385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565385,0.000000,0.000000,0.250000,0,0);}
.mbc_c00127{transform:matrix(0.670200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670200,0.000000,0.000000,0.250000,0,0);}
.mc1_c00127{transform:matrix(0.700135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700135,0.000000,0.000000,0.250000,0,0);}
.mb5_c00127{transform:matrix(0.713395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713395,0.000000,0.000000,0.250000,0,0);}
.mbe_c00127{transform:matrix(1.033015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.033015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.033015,0.000000,0.000000,0.250000,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;}
.fsa_c00127{font-size:60.900000px;}
.fs7_c00127{font-size:61.950000px;}
.fs9_c00127{font-size:63.000000px;}
.fs3_c00127{font-size:66.150000px;}
.fsb_c00127{font-size:67.200000px;}
.fs2_c00127{font-size:68.250000px;}
.fs6_c00127{font-size:69.300000px;}
.fs8_c00127{font-size:70.350000px;}
.fs1_c00127{font-size:71.400000px;}
.fs4_c00127{font-size:72.450000px;}
.fsc_c00127{font-size:76.650000px;}
.fs0_c00127{font-size:80.850000px;}
.fs5_c00127{font-size:96.600000px;}
.y0_c00127{bottom:0.000000px;}
.y40_c00127{bottom:84.553500px;}
.y3f_c00127{bottom:146.979000px;}
.y3e_c00127{bottom:171.225000px;}
.y3d_c00127{bottom:194.712000px;}
.y3c_c00127{bottom:217.860000px;}
.y3b_c00127{bottom:241.132500px;}
.y3a_c00127{bottom:263.832000px;}
.y39_c00127{bottom:286.780500px;}
.y38_c00127{bottom:310.230000px;}
.y37_c00127{bottom:333.217500px;}
.y36_c00127{bottom:355.090500px;}
.y35_c00127{bottom:402.189000px;}
.y34_c00127{bottom:424.938000px;}
.y33_c00127{bottom:447.891000px;}
.y32_c00127{bottom:471.297000px;}
.y31_c00127{bottom:494.031000px;}
.y30_c00127{bottom:517.209000px;}
.y2f_c00127{bottom:540.150000px;}
.y2e_c00127{bottom:563.101500px;}
.y2d_c00127{bottom:585.865500px;}
.y2c_c00127{bottom:609.331500px;}
.y2b_c00127{bottom:631.179000px;}
.y2a_c00127{bottom:653.167500px;}
.y29_c00127{bottom:694.950000px;}
.y25_c00127{bottom:725.224500px;}
.y26_c00127{bottom:725.565000px;}
.y27_c00127{bottom:727.924500px;}
.y28_c00127{bottom:730.431000px;}
.y19_c00127{bottom:752.493000px;}
.y1a_c00127{bottom:752.890500px;}
.y1b_c00127{bottom:753.235500px;}
.y1c_c00127{bottom:754.026000px;}
.y1d_c00127{bottom:754.509000px;}
.y1e_c00127{bottom:754.815000px;}
.y1f_c00127{bottom:755.242500px;}
.y20_c00127{bottom:755.548500px;}
.y21_c00127{bottom:756.094500px;}
.y22_c00127{bottom:756.331500px;}
.y23_c00127{bottom:756.967500px;}
.y24_c00127{bottom:757.357500px;}
.ye_c00127{bottom:775.171500px;}
.yf_c00127{bottom:775.590000px;}
.y10_c00127{bottom:775.897500px;}
.y11_c00127{bottom:776.103000px;}
.y12_c00127{bottom:776.767500px;}
.y13_c00127{bottom:777.070500px;}
.y14_c00127{bottom:777.310500px;}
.y15_c00127{bottom:777.958500px;}
.y16_c00127{bottom:778.222500px;}
.y17_c00127{bottom:778.914000px;}
.y18_c00127{bottom:779.620500px;}
.y3_c00127{bottom:797.851500px;}
.y4_c00127{bottom:798.709500px;}
.y5_c00127{bottom:798.843000px;}
.y6_c00127{bottom:799.122000px;}
.y7_c00127{bottom:799.348500px;}
.y8_c00127{bottom:799.936500px;}
.y9_c00127{bottom:800.142000px;}
.ya_c00127{bottom:800.649000px;}
.yb_c00127{bottom:801.042000px;}
.yc_c00127{bottom:801.316500px;}
.yd_c00127{bottom:801.480000px;}
.y2_c00127{bottom:822.033000px;}
.y1_c00127{bottom:931.602000px;}
.hc_c00127{height:60.900000px;}
.h9_c00127{height:61.950000px;}
.hb_c00127{height:63.000000px;}
.h5_c00127{height:66.150000px;}
.hd_c00127{height:67.200000px;}
.h4_c00127{height:68.250000px;}
.h8_c00127{height:69.300000px;}
.ha_c00127{height:70.350000px;}
.h3_c00127{height:71.400000px;}
.h6_c00127{height:72.450000px;}
.he_c00127{height:76.650000px;}
.h2_c00127{height:80.850000px;}
.h7_c00127{height:96.600000px;}
.h0_c00127{height:1008.450000px;}
.h1_c00127{height:1008.750000px;}
.w0_c00127{width:676.890000px;}
.w1_c00127{width:677.250000px;}
.x0_c00127{left:0.000000px;}
.x1f_c00127{left:146.014500px;}
.x3_c00127{left:149.040000px;}
.x2b_c00127{left:150.355500px;}
.x6f_c00127{left:152.280000px;}
.x67_c00127{left:159.840000px;}
.x70_c00127{left:162.000000px;}
.x32_c00127{left:164.700000px;}
.x4c_c00127{left:166.320000px;}
.x9c_c00127{left:168.750000px;}
.x3d_c00127{left:169.830000px;}
.x2c_c00127{left:176.548500px;}
.x4_c00127{left:180.630000px;}
.x20_c00127{left:182.122500px;}
.x33_c00127{left:183.600000px;}
.x76_c00127{left:188.460000px;}
.x16_c00127{left:191.289000px;}
.x68_c00127{left:192.510000px;}
.xaf_c00127{left:197.100000px;}
.x71_c00127{left:198.720000px;}
.x56_c00127{left:201.690000px;}
.x4d_c00127{left:203.040000px;}
.x7a_c00127{left:208.440000px;}
.x44_c00127{left:211.140000px;}
.x21_c00127{left:213.462000px;}
.x3e_c00127{left:215.460000px;}
.x17_c00127{left:222.066000px;}
.x92_c00127{left:223.560000px;}
.x69_c00127{left:225.180000px;}
.x4e_c00127{left:228.960000px;}
.x83_c00127{left:231.390000px;}
.x34_c00127{left:235.170000px;}
.x7f_c00127{left:239.760000px;}
.x18_c00127{left:242.581500px;}
.x5d_c00127{left:246.510000px;}
.x57_c00127{left:247.860000px;}
.x93_c00127{left:250.020000px;}
.x9d_c00127{left:252.990000px;}
.x6a_c00127{left:255.150000px;}
.xc_c00127{left:256.882500px;}
.x45_c00127{left:262.170000px;}
.x5e_c00127{left:263.790000px;}
.x2e_c00127{left:264.870000px;}
.x58_c00127{left:268.110000px;}
.x5_c00127{left:269.730000px;}
.xa7_c00127{left:271.890000px;}
.xd_c00127{left:273.594000px;}
.x35_c00127{left:274.860000px;}
.x22_c00127{left:285.270000px;}
.x94_c00127{left:286.740000px;}
.x77_c00127{left:288.090000px;}
.x36_c00127{left:289.440000px;}
.x98_c00127{left:290.790000px;}
.x2f_c00127{left:292.950000px;}
.x4f_c00127{left:294.840000px;}
.x72_c00127{left:296.190000px;}
.x5f_c00127{left:298.080000px;}
.x7b_c00127{left:302.130000px;}
.x3f_c00127{left:304.020000px;}
.x84_c00127{left:306.720000px;}
.xe_c00127{left:308.460000px;}
.x80_c00127{left:311.040000px;}
.x6b_c00127{left:312.390000px;}
.xb0_c00127{left:315.090000px;}
.x95_c00127{left:321.840000px;}
.x59_c00127{left:325.080000px;}
.x9e_c00127{left:326.160000px;}
.x23_c00127{left:329.230500px;}
.xf_c00127{left:336.810000px;}
.x19_c00127{left:339.259500px;}
.x78_c00127{left:342.900000px;}
.xab_c00127{left:344.520000px;}
.x6_c00127{left:348.030000px;}
.x60_c00127{left:350.190000px;}
.x73_c00127{left:354.240000px;}
.x6c_c00127{left:355.590000px;}
.x24_c00127{left:357.096000px;}
.x50_c00127{left:359.910000px;}
.x1a_c00127{left:363.295500px;}
.x37_c00127{left:364.500000px;}
.x7c_c00127{left:366.660000px;}
.x99_c00127{left:368.280000px;}
.xac_c00127{left:369.360000px;}
.x7_c00127{left:375.030000px;}
.x51_c00127{left:377.730000px;}
.x6d_c00127{left:382.590000px;}
.x46_c00127{left:385.560000px;}
.xa3_c00127{left:388.530000px;}
.x30_c00127{left:390.960000px;}
.x79_c00127{left:392.310000px;}
.x38_c00127{left:393.660000px;}
.x25_c00127{left:395.980500px;}
.x7d_c00127{left:398.790000px;}
.x9f_c00127{left:403.110000px;}
.x8_c00127{left:407.160000px;}
.x61_c00127{left:409.050000px;}
.x10_c00127{left:410.247000px;}
.x47_c00127{left:417.150000px;}
.x85_c00127{left:418.230000px;}
.x52_c00127{left:419.310000px;}
.x26_c00127{left:423.787500px;}
.xad_c00127{left:424.980000px;}
.x1b_c00127{left:428.086500px;}
.x74_c00127{left:430.380000px;}
.x62_c00127{left:433.080000px;}
.x11_c00127{left:435.891000px;}
.x7e_c00127{left:437.940000px;}
.x81_c00127{left:441.720000px;}
.x39_c00127{left:443.610000px;}
.x53_c00127{left:446.040000px;}
.x40_c00127{left:448.200000px;}
.x48_c00127{left:449.280000px;}
.x1_c00127{left:450.900000px;}
.x1c_c00127{left:454.546500px;}
.x5a_c00127{left:458.460000px;}
.x31_c00127{left:459.810000px;}
.x91_c00127{left:461.700000px;}
.x86_c00127{left:463.050000px;}
.x9_c00127{left:465.750000px;}
.x89_c00127{left:467.100000px;}
.xa0_c00127{left:468.720000px;}
.x2_c00127{left:471.960000px;}
.x27_c00127{left:473.443500px;}
.x63_c00127{left:476.280000px;}
.x5b_c00127{left:477.360000px;}
.xa8_c00127{left:484.380000px;}
.x9a_c00127{left:487.080000px;}
.x49_c00127{left:489.240000px;}
.x28_c00127{left:495.025500px;}
.x12_c00127{left:499.330500px;}
.x8d_c00127{left:500.850000px;}
.x41_c00127{left:503.010000px;}
.xa_c00127{left:504.360000px;}
.x3a_c00127{left:506.520000px;}
.x5c_c00127{left:507.870000px;}
.x8a_c00127{left:509.220000px;}
.x87_c00127{left:512.190000px;}
.x54_c00127{left:513.810000px;}
.xa4_c00127{left:515.160000px;}
.x4a_c00127{left:517.050000px;}
.x64_c00127{left:518.940000px;}
.xa9_c00127{left:520.020000px;}
.x6e_c00127{left:521.100000px;}
.x1d_c00127{left:523.654500px;}
.x96_c00127{left:530.280000px;}
.x3b_c00127{left:533.520000px;}
.x88_c00127{left:537.570000px;}
.xaa_c00127{left:539.730000px;}
.x65_c00127{left:543.780000px;}
.x75_c00127{left:545.130000px;}
.x13_c00127{left:548.469000px;}
.x2d_c00127{left:550.761000px;}
.x29_c00127{left:552.798000px;}
.x9b_c00127{left:557.010000px;}
.x97_c00127{left:559.440000px;}
.xa1_c00127{left:562.680000px;}
.x4b_c00127{left:563.760000px;}
.xb_c00127{left:571.590000px;}
.x8b_c00127{left:572.670000px;}
.xb1_c00127{left:576.720000px;}
.xa5_c00127{left:578.070000px;}
.x14_c00127{left:582.759000px;}
.x8e_c00127{left:585.630000px;}
.x2a_c00127{left:588.190500px;}
.x42_c00127{left:591.300000px;}
.x66_c00127{left:593.190000px;}
.x1e_c00127{left:594.339000px;}
.x82_c00127{left:601.290000px;}
.x15_c00127{left:603.273000px;}
.x8f_c00127{left:607.770000px;}
.x8c_c00127{left:609.660000px;}
.x43_c00127{left:612.900000px;}
.x3c_c00127{left:617.490000px;}
.xae_c00127{left:629.910000px;}
.x90_c00127{left:640.440000px;}
.xa2_c00127{left:642.330000px;}
.x55_c00127{left:652.860000px;}
.xa6_c00127{left:656.370000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.fsa_c00127{font-size:54.133333pt;}
.fs7_c00127{font-size:55.066667pt;}
.fs9_c00127{font-size:56.000000pt;}
.fs3_c00127{font-size:58.800000pt;}
.fsb_c00127{font-size:59.733333pt;}
.fs2_c00127{font-size:60.666667pt;}
.fs6_c00127{font-size:61.600000pt;}
.fs8_c00127{font-size:62.533333pt;}
.fs1_c00127{font-size:63.466667pt;}
.fs4_c00127{font-size:64.400000pt;}
.fsc_c00127{font-size:68.133333pt;}
.fs0_c00127{font-size:71.866667pt;}
.fs5_c00127{font-size:85.866667pt;}
.y0_c00127{bottom:0.000000pt;}
.y40_c00127{bottom:75.158667pt;}
.y3f_c00127{bottom:130.648000pt;}
.y3e_c00127{bottom:152.200000pt;}
.y3d_c00127{bottom:173.077333pt;}
.y3c_c00127{bottom:193.653333pt;}
.y3b_c00127{bottom:214.340000pt;}
.y3a_c00127{bottom:234.517333pt;}
.y39_c00127{bottom:254.916000pt;}
.y38_c00127{bottom:275.760000pt;}
.y37_c00127{bottom:296.193333pt;}
.y36_c00127{bottom:315.636000pt;}
.y35_c00127{bottom:357.501333pt;}
.y34_c00127{bottom:377.722667pt;}
.y33_c00127{bottom:398.125333pt;}
.y32_c00127{bottom:418.930667pt;}
.y31_c00127{bottom:439.138667pt;}
.y30_c00127{bottom:459.741333pt;}
.y2f_c00127{bottom:480.133333pt;}
.y2e_c00127{bottom:500.534667pt;}
.y2d_c00127{bottom:520.769333pt;}
.y2c_c00127{bottom:541.628000pt;}
.y2b_c00127{bottom:561.048000pt;}
.y2a_c00127{bottom:580.593333pt;}
.y29_c00127{bottom:617.733333pt;}
.y25_c00127{bottom:644.644000pt;}
.y26_c00127{bottom:644.946667pt;}
.y27_c00127{bottom:647.044000pt;}
.y28_c00127{bottom:649.272000pt;}
.y19_c00127{bottom:668.882667pt;}
.y1a_c00127{bottom:669.236000pt;}
.y1b_c00127{bottom:669.542667pt;}
.y1c_c00127{bottom:670.245333pt;}
.y1d_c00127{bottom:670.674667pt;}
.y1e_c00127{bottom:670.946667pt;}
.y1f_c00127{bottom:671.326667pt;}
.y20_c00127{bottom:671.598667pt;}
.y21_c00127{bottom:672.084000pt;}
.y22_c00127{bottom:672.294667pt;}
.y23_c00127{bottom:672.860000pt;}
.y24_c00127{bottom:673.206667pt;}
.ye_c00127{bottom:689.041333pt;}
.yf_c00127{bottom:689.413333pt;}
.y10_c00127{bottom:689.686667pt;}
.y11_c00127{bottom:689.869333pt;}
.y12_c00127{bottom:690.460000pt;}
.y13_c00127{bottom:690.729333pt;}
.y14_c00127{bottom:690.942667pt;}
.y15_c00127{bottom:691.518667pt;}
.y16_c00127{bottom:691.753333pt;}
.y17_c00127{bottom:692.368000pt;}
.y18_c00127{bottom:692.996000pt;}
.y3_c00127{bottom:709.201333pt;}
.y4_c00127{bottom:709.964000pt;}
.y5_c00127{bottom:710.082667pt;}
.y6_c00127{bottom:710.330667pt;}
.y7_c00127{bottom:710.532000pt;}
.y8_c00127{bottom:711.054667pt;}
.y9_c00127{bottom:711.237333pt;}
.ya_c00127{bottom:711.688000pt;}
.yb_c00127{bottom:712.037333pt;}
.yc_c00127{bottom:712.281333pt;}
.yd_c00127{bottom:712.426667pt;}
.y2_c00127{bottom:730.696000pt;}
.y1_c00127{bottom:828.090667pt;}
.hc_c00127{height:54.133333pt;}
.h9_c00127{height:55.066667pt;}
.hb_c00127{height:56.000000pt;}
.h5_c00127{height:58.800000pt;}
.hd_c00127{height:59.733333pt;}
.h4_c00127{height:60.666667pt;}
.h8_c00127{height:61.600000pt;}
.ha_c00127{height:62.533333pt;}
.h3_c00127{height:63.466667pt;}
.h6_c00127{height:64.400000pt;}
.he_c00127{height:68.133333pt;}
.h2_c00127{height:71.866667pt;}
.h7_c00127{height:85.866667pt;}
.h0_c00127{height:896.400000pt;}
.h1_c00127{height:896.666667pt;}
.w0_c00127{width:601.680000pt;}
.w1_c00127{width:602.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1f_c00127{left:129.790667pt;}
.x3_c00127{left:132.480000pt;}
.x2b_c00127{left:133.649333pt;}
.x6f_c00127{left:135.360000pt;}
.x67_c00127{left:142.080000pt;}
.x70_c00127{left:144.000000pt;}
.x32_c00127{left:146.400000pt;}
.x4c_c00127{left:147.840000pt;}
.x9c_c00127{left:150.000000pt;}
.x3d_c00127{left:150.960000pt;}
.x2c_c00127{left:156.932000pt;}
.x4_c00127{left:160.560000pt;}
.x20_c00127{left:161.886667pt;}
.x33_c00127{left:163.200000pt;}
.x76_c00127{left:167.520000pt;}
.x16_c00127{left:170.034667pt;}
.x68_c00127{left:171.120000pt;}
.xaf_c00127{left:175.200000pt;}
.x71_c00127{left:176.640000pt;}
.x56_c00127{left:179.280000pt;}
.x4d_c00127{left:180.480000pt;}
.x7a_c00127{left:185.280000pt;}
.x44_c00127{left:187.680000pt;}
.x21_c00127{left:189.744000pt;}
.x3e_c00127{left:191.520000pt;}
.x17_c00127{left:197.392000pt;}
.x92_c00127{left:198.720000pt;}
.x69_c00127{left:200.160000pt;}
.x4e_c00127{left:203.520000pt;}
.x83_c00127{left:205.680000pt;}
.x34_c00127{left:209.040000pt;}
.x7f_c00127{left:213.120000pt;}
.x18_c00127{left:215.628000pt;}
.x5d_c00127{left:219.120000pt;}
.x57_c00127{left:220.320000pt;}
.x93_c00127{left:222.240000pt;}
.x9d_c00127{left:224.880000pt;}
.x6a_c00127{left:226.800000pt;}
.xc_c00127{left:228.340000pt;}
.x45_c00127{left:233.040000pt;}
.x5e_c00127{left:234.480000pt;}
.x2e_c00127{left:235.440000pt;}
.x58_c00127{left:238.320000pt;}
.x5_c00127{left:239.760000pt;}
.xa7_c00127{left:241.680000pt;}
.xd_c00127{left:243.194667pt;}
.x35_c00127{left:244.320000pt;}
.x22_c00127{left:253.573333pt;}
.x94_c00127{left:254.880000pt;}
.x77_c00127{left:256.080000pt;}
.x36_c00127{left:257.280000pt;}
.x98_c00127{left:258.480000pt;}
.x2f_c00127{left:260.400000pt;}
.x4f_c00127{left:262.080000pt;}
.x72_c00127{left:263.280000pt;}
.x5f_c00127{left:264.960000pt;}
.x7b_c00127{left:268.560000pt;}
.x3f_c00127{left:270.240000pt;}
.x84_c00127{left:272.640000pt;}
.xe_c00127{left:274.186667pt;}
.x80_c00127{left:276.480000pt;}
.x6b_c00127{left:277.680000pt;}
.xb0_c00127{left:280.080000pt;}
.x95_c00127{left:286.080000pt;}
.x59_c00127{left:288.960000pt;}
.x9e_c00127{left:289.920000pt;}
.x23_c00127{left:292.649333pt;}
.xf_c00127{left:299.386667pt;}
.x19_c00127{left:301.564000pt;}
.x78_c00127{left:304.800000pt;}
.xab_c00127{left:306.240000pt;}
.x6_c00127{left:309.360000pt;}
.x60_c00127{left:311.280000pt;}
.x73_c00127{left:314.880000pt;}
.x6c_c00127{left:316.080000pt;}
.x24_c00127{left:317.418667pt;}
.x50_c00127{left:319.920000pt;}
.x1a_c00127{left:322.929333pt;}
.x37_c00127{left:324.000000pt;}
.x7c_c00127{left:325.920000pt;}
.x99_c00127{left:327.360000pt;}
.xac_c00127{left:328.320000pt;}
.x7_c00127{left:333.360000pt;}
.x51_c00127{left:335.760000pt;}
.x6d_c00127{left:340.080000pt;}
.x46_c00127{left:342.720000pt;}
.xa3_c00127{left:345.360000pt;}
.x30_c00127{left:347.520000pt;}
.x79_c00127{left:348.720000pt;}
.x38_c00127{left:349.920000pt;}
.x25_c00127{left:351.982667pt;}
.x7d_c00127{left:354.480000pt;}
.x9f_c00127{left:358.320000pt;}
.x8_c00127{left:361.920000pt;}
.x61_c00127{left:363.600000pt;}
.x10_c00127{left:364.664000pt;}
.x47_c00127{left:370.800000pt;}
.x85_c00127{left:371.760000pt;}
.x52_c00127{left:372.720000pt;}
.x26_c00127{left:376.700000pt;}
.xad_c00127{left:377.760000pt;}
.x1b_c00127{left:380.521333pt;}
.x74_c00127{left:382.560000pt;}
.x62_c00127{left:384.960000pt;}
.x11_c00127{left:387.458667pt;}
.x7e_c00127{left:389.280000pt;}
.x81_c00127{left:392.640000pt;}
.x39_c00127{left:394.320000pt;}
.x53_c00127{left:396.480000pt;}
.x40_c00127{left:398.400000pt;}
.x48_c00127{left:399.360000pt;}
.x1_c00127{left:400.800000pt;}
.x1c_c00127{left:404.041333pt;}
.x5a_c00127{left:407.520000pt;}
.x31_c00127{left:408.720000pt;}
.x91_c00127{left:410.400000pt;}
.x86_c00127{left:411.600000pt;}
.x9_c00127{left:414.000000pt;}
.x89_c00127{left:415.200000pt;}
.xa0_c00127{left:416.640000pt;}
.x2_c00127{left:419.520000pt;}
.x27_c00127{left:420.838667pt;}
.x63_c00127{left:423.360000pt;}
.x5b_c00127{left:424.320000pt;}
.xa8_c00127{left:430.560000pt;}
.x9a_c00127{left:432.960000pt;}
.x49_c00127{left:434.880000pt;}
.x28_c00127{left:440.022667pt;}
.x12_c00127{left:443.849333pt;}
.x8d_c00127{left:445.200000pt;}
.x41_c00127{left:447.120000pt;}
.xa_c00127{left:448.320000pt;}
.x3a_c00127{left:450.240000pt;}
.x5c_c00127{left:451.440000pt;}
.x8a_c00127{left:452.640000pt;}
.x87_c00127{left:455.280000pt;}
.x54_c00127{left:456.720000pt;}
.xa4_c00127{left:457.920000pt;}
.x4a_c00127{left:459.600000pt;}
.x64_c00127{left:461.280000pt;}
.xa9_c00127{left:462.240000pt;}
.x6e_c00127{left:463.200000pt;}
.x1d_c00127{left:465.470667pt;}
.x96_c00127{left:471.360000pt;}
.x3b_c00127{left:474.240000pt;}
.x88_c00127{left:477.840000pt;}
.xaa_c00127{left:479.760000pt;}
.x65_c00127{left:483.360000pt;}
.x75_c00127{left:484.560000pt;}
.x13_c00127{left:487.528000pt;}
.x2d_c00127{left:489.565333pt;}
.x29_c00127{left:491.376000pt;}
.x9b_c00127{left:495.120000pt;}
.x97_c00127{left:497.280000pt;}
.xa1_c00127{left:500.160000pt;}
.x4b_c00127{left:501.120000pt;}
.xb_c00127{left:508.080000pt;}
.x8b_c00127{left:509.040000pt;}
.xb1_c00127{left:512.640000pt;}
.xa5_c00127{left:513.840000pt;}
.x14_c00127{left:518.008000pt;}
.x8e_c00127{left:520.560000pt;}
.x2a_c00127{left:522.836000pt;}
.x42_c00127{left:525.600000pt;}
.x66_c00127{left:527.280000pt;}
.x1e_c00127{left:528.301333pt;}
.x82_c00127{left:534.480000pt;}
.x15_c00127{left:536.242667pt;}
.x8f_c00127{left:540.240000pt;}
.x8c_c00127{left:541.920000pt;}
.x43_c00127{left:544.800000pt;}
.x3c_c00127{left:548.880000pt;}
.xae_c00127{left:559.920000pt;}
.x90_c00127{left:569.280000pt;}
.xa2_c00127{left:570.960000pt;}
.x55_c00127{left:580.320000pt;}
.xa6_c00127{left:583.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7_c00128{transform:matrix(0.009344,0.000103,-0.002750,0.249985,0,0);-ms-transform:matrix(0.009344,0.000103,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.009344,0.000103,-0.002750,0.249985,0,0);}
.m14c_c00128{transform:matrix(0.016909,0.000152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.016909,0.000152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.016909,0.000152,-0.002250,0.249990,0,0);}
.mb1_c00128{transform:matrix(0.030899,0.000278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.030899,0.000278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.030899,0.000278,-0.002250,0.249990,0,0);}
.mbc_c00128{transform:matrix(0.044758,0.000403,-0.002250,0.249990,0,0);-ms-transform:matrix(0.044758,0.000403,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.044758,0.000403,-0.002250,0.249990,0,0);}
.mcc_c00128{transform:matrix(0.083927,0.000755,-0.002250,0.249990,0,0);-ms-transform:matrix(0.083927,0.000755,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.083927,0.000755,-0.002250,0.249990,0,0);}
.m151_c00128{transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);}
.m59_c00128{transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);}
.m148_c00128{transform:matrix(0.115310,0.001038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.115310,0.001038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.115310,0.001038,-0.002250,0.249990,0,0);}
.m28_c00128{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.md8_c00128{transform:matrix(0.122750,0.001105,-0.002250,0.249990,0,0);-ms-transform:matrix(0.122750,0.001105,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.122750,0.001105,-0.002250,0.249990,0,0);}
.m77_c00128{transform:matrix(0.134435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134435,0.000000,0.000000,0.250000,0,0);}
.mcb_c00128{transform:matrix(0.138274,0.001244,-0.002250,0.249990,0,0);-ms-transform:matrix(0.138274,0.001244,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.138274,0.001244,-0.002250,0.249990,0,0);}
.m3a_c00128{transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);}
.mde_c00128{transform:matrix(0.140679,0.001266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.140679,0.001266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.140679,0.001266,-0.002250,0.249990,0,0);}
.m12b_c00128{transform:matrix(0.142289,0.001281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142289,0.001281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142289,0.001281,-0.002250,0.249990,0,0);}
.m104_c00128{transform:matrix(0.143739,0.001294,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143739,0.001294,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143739,0.001294,-0.002250,0.249990,0,0);}
.mf8_c00128{transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);}
.m119_c00128{transform:matrix(0.145879,0.001313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145879,0.001313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145879,0.001313,-0.002250,0.249990,0,0);}
.m42_c00128{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);}
.m10e_c00128{transform:matrix(0.146279,0.001317,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146279,0.001317,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146279,0.001317,-0.002250,0.249990,0,0);}
.m2b_c00128{transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{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);}
.m5d_c00128{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.mbd_c00128{transform:matrix(0.149199,0.001343,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149199,0.001343,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149199,0.001343,-0.002250,0.249990,0,0);}
.m124_c00128{transform:matrix(0.151029,0.001359,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151029,0.001359,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151029,0.001359,-0.002250,0.249990,0,0);}
.m2c_c00128{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);}
.m111_c00128{transform:matrix(0.152139,0.001369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152139,0.001369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152139,0.001369,-0.002250,0.249990,0,0);}
.mf2_c00128{transform:matrix(0.154229,0.001388,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154229,0.001388,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154229,0.001388,-0.002250,0.249990,0,0);}
.mcd_c00128{transform:matrix(0.154359,0.001389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154359,0.001389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154359,0.001389,-0.002250,0.249990,0,0);}
.m16_c00128{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);}
.m64_c00128{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);}
.m6a_c00128{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);}
.ma8_c00128{transform:matrix(0.155929,0.001403,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155929,0.001403,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155929,0.001403,-0.002250,0.249990,0,0);}
.m6e_c00128{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);}
.m1b_c00128{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);}
.m38_c00128{transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.158939,0.001430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158939,0.001430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158939,0.001430,-0.002250,0.249990,0,0);}
.m5e_c00128{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);}
.m4c_c00128{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);}
.m131_c00128{transform:matrix(0.160998,0.001449,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160998,0.001449,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160998,0.001449,-0.002250,0.249990,0,0);}
.mc4_c00128{transform:matrix(0.161068,0.001450,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161068,0.001450,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161068,0.001450,-0.002250,0.249990,0,0);}
.me9_c00128{transform:matrix(0.162333,0.001461,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162333,0.001461,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162333,0.001461,-0.002250,0.249990,0,0);}
.m4a_c00128{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);}
.m12c_c00128{transform:matrix(0.164073,0.001477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164073,0.001477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164073,0.001477,-0.002250,0.249990,0,0);}
.m136_c00128{transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);}
.m85_c00128{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);}
.mc1_c00128{transform:matrix(0.166483,0.001498,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166483,0.001498,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166483,0.001498,-0.002250,0.249990,0,0);}
.m9b_c00128{transform:matrix(0.167523,0.001508,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167523,0.001508,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167523,0.001508,-0.002250,0.249990,0,0);}
.m8a_c00128{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);}
.m8e_c00128{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);}
.m1a_c00128{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);}
.m11b_c00128{transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);}
.m72_c00128{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);}
.md4_c00128{transform:matrix(0.173363,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173363,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173363,0.001560,-0.002250,0.249990,0,0);}
.m41_c00128{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);}
.m11c_c00128{transform:matrix(0.173633,0.001563,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173633,0.001563,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173633,0.001563,-0.002250,0.249990,0,0);}
.m8d_c00128{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);}
.m112_c00128{transform:matrix(0.174428,0.001570,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174428,0.001570,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174428,0.001570,-0.002250,0.249990,0,0);}
.m50_c00128{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);}
.mab_c00128{transform:matrix(0.174463,0.001570,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174463,0.001570,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174463,0.001570,-0.002250,0.249990,0,0);}
.m9f_c00128{transform:matrix(0.174793,0.001573,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174793,0.001573,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174793,0.001573,-0.002250,0.249990,0,0);}
.m91_c00128{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);}
.m55_c00128{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);}
.m128_c00128{transform:matrix(0.175313,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175313,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175313,0.001578,-0.002250,0.249990,0,0);}
.mea_c00128{transform:matrix(0.175413,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175413,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175413,0.001579,-0.002250,0.249990,0,0);}
.mc8_c00128{transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);}
.mf6_c00128{transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175563,0.001580,-0.002250,0.249990,0,0);}
.m135_c00128{transform:matrix(0.175863,0.001583,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175863,0.001583,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175863,0.001583,-0.002250,0.249990,0,0);}
.mce_c00128{transform:matrix(0.176338,0.001587,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176338,0.001587,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176338,0.001587,-0.002250,0.249990,0,0);}
.m12d_c00128{transform:matrix(0.176353,0.001587,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176353,0.001587,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176353,0.001587,-0.002250,0.249990,0,0);}
.m9d_c00128{transform:matrix(0.176403,0.001588,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176403,0.001588,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176403,0.001588,-0.002250,0.249990,0,0);}
.mf7_c00128{transform:matrix(0.176558,0.001589,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176558,0.001589,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176558,0.001589,-0.002250,0.249990,0,0);}
.m10c_c00128{transform:matrix(0.176768,0.001591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176768,0.001591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176768,0.001591,-0.002250,0.249990,0,0);}
.mae_c00128{transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177168,0.001595,-0.002250,0.249990,0,0);}
.md6_c00128{transform:matrix(0.177203,0.001595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177203,0.001595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177203,0.001595,-0.002250,0.249990,0,0);}
.ma2_c00128{transform:matrix(0.177318,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177318,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177318,0.001596,-0.002250,0.249990,0,0);}
.me4_c00128{transform:matrix(0.177363,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177363,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177363,0.001596,-0.002250,0.249990,0,0);}
.m116_c00128{transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);}
.m54_c00128{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);}
.m47_c00128{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);}
.m40_c00128{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);}
.m12a_c00128{transform:matrix(0.178648,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178648,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178648,0.001608,-0.002250,0.249990,0,0);}
.m2e_c00128{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);}
.mb8_c00128{transform:matrix(0.178858,0.001610,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178858,0.001610,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178858,0.001610,-0.002250,0.249990,0,0);}
.m103_c00128{transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);}
.m2d_c00128{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);}
.mb5_c00128{transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);}
.m97_c00128{transform:matrix(0.179728,0.001618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179728,0.001618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179728,0.001618,-0.002250,0.249990,0,0);}
.m63_c00128{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);}
.m10_c00128{transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);}
.me3_c00128{transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);}
.mec_c00128{transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180523,0.001625,-0.002250,0.249990,0,0);}
.m14d_c00128{transform:matrix(0.180663,0.001626,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180663,0.001626,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180663,0.001626,-0.002250,0.249990,0,0);}
.mc2_c00128{transform:matrix(0.181638,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181638,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181638,0.001635,-0.002250,0.249990,0,0);}
.m110_c00128{transform:matrix(0.181673,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181673,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181673,0.001635,-0.002250,0.249990,0,0);}
.m37_c00128{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);}
.mbb_c00128{transform:matrix(0.182723,0.001645,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182723,0.001645,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182723,0.001645,-0.002250,0.249990,0,0);}
.m29_c00128{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);}
.me7_c00128{transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);}
.m3f_c00128{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);}
.m3d_c00128{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);}
.m3c_c00128{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);}
.m19_c00128{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);}
.mb6_c00128{transform:matrix(0.184198,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184198,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184198,0.001658,-0.002250,0.249990,0,0);}
.m2f_c00128{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);}
.m117_c00128{transform:matrix(0.184643,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184643,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184643,0.001662,-0.002250,0.249990,0,0);}
.m7d_c00128{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);}
.m9e_c00128{transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);}
.m98_c00128{transform:matrix(0.185008,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185008,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185008,0.001665,-0.002250,0.249990,0,0);}
.m12_c00128{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);}
.m92_c00128{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);}
.mfd_c00128{transform:matrix(0.185287,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185287,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185287,0.001668,-0.002250,0.249990,0,0);}
.m71_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);}
.m11d_c00128{transform:matrix(0.185722,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185722,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185722,0.001672,-0.002250,0.249990,0,0);}
.m11a_c00128{transform:matrix(0.185937,0.001673,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185937,0.001673,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185937,0.001673,-0.002250,0.249990,0,0);}
.m32_c00128{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);}
.m14_c00128{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);}
.m73_c00128{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);}
.m61_c00128{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);}
.m25_c00128{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);}
.m122_c00128{transform:matrix(0.187032,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187032,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187032,0.001683,-0.002250,0.249990,0,0);}
.m96_c00128{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);}
.mc6_c00128{transform:matrix(0.187527,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187527,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187527,0.001688,-0.002250,0.249990,0,0);}
.md3_c00128{transform:matrix(0.187582,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187582,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187582,0.001688,-0.002250,0.249990,0,0);}
.m31_c00128{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);}
.m3b_c00128{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);}
.m57_c00128{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);}
.m3e_c00128{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);}
.m9a_c00128{transform:matrix(0.188687,0.001698,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188687,0.001698,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188687,0.001698,-0.002250,0.249990,0,0);}
.mc0_c00128{transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);}
.m69_c00128{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);}
.mb3_c00128{transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);}
.m5c_c00128{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);}
.m18_c00128{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);}
.m121_c00128{transform:matrix(0.189442,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189442,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189442,0.001705,-0.002250,0.249990,0,0);}
.m4e_c00128{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);}
.md2_c00128{transform:matrix(0.189712,0.001707,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189712,0.001707,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189712,0.001707,-0.002250,0.249990,0,0);}
.meb_c00128{transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);}
.mac_c00128{transform:matrix(0.189967,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189967,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189967,0.001710,-0.002250,0.249990,0,0);}
.m7e_c00128{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);}
.m12f_c00128{transform:matrix(0.190597,0.001715,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190597,0.001715,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190597,0.001715,-0.002250,0.249990,0,0);}
.m8f_c00128{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);}
.m43_c00128{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_c00128{transform:matrix(0.191042,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191042,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191042,0.001719,-0.002250,0.249990,0,0);}
.m68_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);}
.m34_c00128{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);}
.m45_c00128{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);}
.mca_c00128{transform:matrix(0.191807,0.001726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191807,0.001726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191807,0.001726,-0.002250,0.249990,0,0);}
.m1d_c00128{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{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);}
.m4_c00128{transform:matrix(0.191953,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191953,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191953,0.002111,-0.002750,0.249985,0,0);}
.m84_c00128{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);}
.m11e_c00128{transform:matrix(0.192102,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192102,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192102,0.001729,-0.002250,0.249990,0,0);}
.m33_c00128{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);}
.m76_c00128{transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{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);}
.me5_c00128{transform:matrix(0.194312,0.001749,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194312,0.001749,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194312,0.001749,-0.002250,0.249990,0,0);}
.m11f_c00128{transform:matrix(0.194362,0.001749,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194362,0.001749,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194362,0.001749,-0.002250,0.249990,0,0);}
.m114_c00128{transform:matrix(0.194512,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194512,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194512,0.001751,-0.002250,0.249990,0,0);}
.m6b_c00128{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);}
.mc3_c00128{transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);}
.m10b_c00128{transform:matrix(0.196187,0.001766,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196187,0.001766,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196187,0.001766,-0.002250,0.249990,0,0);}
.m26_c00128{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);}
.m44_c00128{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);}
.m6d_c00128{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);}
.m139_c00128{transform:matrix(0.197207,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197207,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197207,0.001775,-0.002250,0.249990,0,0);}
.m93_c00128{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);}
.m143_c00128{transform:matrix(0.197712,0.001779,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197712,0.001779,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197712,0.001779,-0.002250,0.249990,0,0);}
.md1_c00128{transform:matrix(0.197957,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197957,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197957,0.001782,-0.002250,0.249990,0,0);}
.me0_c00128{transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198152,0.001783,-0.002250,0.249990,0,0);}
.m27_c00128{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);}
.m79_c00128{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);}
.m4b_c00128{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);}
.me1_c00128{transform:matrix(0.198802,0.001789,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198802,0.001789,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198802,0.001789,-0.002250,0.249990,0,0);}
.mba_c00128{transform:matrix(0.198987,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198987,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198987,0.001791,-0.002250,0.249990,0,0);}
.m13b_c00128{transform:matrix(0.199252,0.001793,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199252,0.001793,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199252,0.001793,-0.002250,0.249990,0,0);}
.ma7_c00128{transform:matrix(0.199472,0.001795,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199472,0.001795,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199472,0.001795,-0.002250,0.249990,0,0);}
.mff_c00128{transform:matrix(0.200432,0.001804,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200432,0.001804,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200432,0.001804,-0.002250,0.249990,0,0);}
.m106_c00128{transform:matrix(0.200662,0.001806,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200662,0.001806,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200662,0.001806,-0.002250,0.249990,0,0);}
.m48_c00128{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);}
.m107_c00128{transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);}
.mb2_c00128{transform:matrix(0.200952,0.001809,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200952,0.001809,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200952,0.001809,-0.002250,0.249990,0,0);}
.m125_c00128{transform:matrix(0.201142,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201142,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201142,0.001810,-0.002250,0.249990,0,0);}
.mad_c00128{transform:matrix(0.201177,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201177,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201177,0.001811,-0.002250,0.249990,0,0);}
.m67_c00128{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);}
.mf4_c00128{transform:matrix(0.201302,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201302,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201302,0.001812,-0.002250,0.249990,0,0);}
.m2a_c00128{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);}
.mcf_c00128{transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);}
.m118_c00128{transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);}
.mf1_c00128{transform:matrix(0.201992,0.001818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201992,0.001818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201992,0.001818,-0.002250,0.249990,0,0);}
.m65_c00128{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);}
.mf3_c00128{transform:matrix(0.202247,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202247,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202247,0.001820,-0.002250,0.249990,0,0);}
.mbf_c00128{transform:matrix(0.202517,0.001823,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202517,0.001823,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202517,0.001823,-0.002250,0.249990,0,0);}
.m7c_c00128{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);}
.m6f_c00128{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_c00128{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);}
.m13_c00128{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);}
.m5a_c00128{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);}
.m129_c00128{transform:matrix(0.203432,0.001831,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203432,0.001831,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203432,0.001831,-0.002250,0.249990,0,0);}
.m115_c00128{transform:matrix(0.203807,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203807,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203807,0.001834,-0.002250,0.249990,0,0);}
.m80_c00128{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);}
.m51_c00128{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);}
.m4f_c00128{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);}
.m99_c00128{transform:matrix(0.204827,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204827,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204827,0.001843,-0.002250,0.249990,0,0);}
.mc5_c00128{transform:matrix(0.204892,0.001844,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204892,0.001844,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204892,0.001844,-0.002250,0.249990,0,0);}
.m49_c00128{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);}
.m8b_c00128{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);}
.m94_c00128{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);}
.m100_c00128{transform:matrix(0.205272,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205272,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205272,0.001847,-0.002250,0.249990,0,0);}
.m5b_c00128{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);}
.m126_c00128{transform:matrix(0.205647,0.001851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205647,0.001851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205647,0.001851,-0.002250,0.249990,0,0);}
.m30_c00128{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);}
.ma9_c00128{transform:matrix(0.206837,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206837,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206837,0.001862,-0.002250,0.249990,0,0);}
.mb9_c00128{transform:matrix(0.207947,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207947,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207947,0.001872,-0.002250,0.249990,0,0);}
.m9c_c00128{transform:matrix(0.207987,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207987,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207987,0.001872,-0.002250,0.249990,0,0);}
.m7b_c00128{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);}
.m146_c00128{transform:matrix(0.208112,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208112,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208112,0.001873,-0.002250,0.249990,0,0);}
.me2_c00128{transform:matrix(0.208412,0.001876,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208412,0.001876,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208412,0.001876,-0.002250,0.249990,0,0);}
.ma3_c00128{transform:matrix(0.208647,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208647,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208647,0.001878,-0.002250,0.249990,0,0);}
.m13a_c00128{transform:matrix(0.209317,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209317,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209317,0.001884,-0.002250,0.249990,0,0);}
.ma4_c00128{transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209412,0.001885,-0.002250,0.249990,0,0);}
.m22_c00128{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);}
.m113_c00128{transform:matrix(0.209617,0.001887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209617,0.001887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209617,0.001887,-0.002250,0.249990,0,0);}
.mc7_c00128{transform:matrix(0.209896,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209896,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209896,0.001889,-0.002250,0.249990,0,0);}
.m105_c00128{transform:matrix(0.209921,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209921,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209921,0.001889,-0.002250,0.249990,0,0);}
.m123_c00128{transform:matrix(0.210181,0.001892,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210181,0.001892,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210181,0.001892,-0.002250,0.249990,0,0);}
.m145_c00128{transform:matrix(0.210876,0.001898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210876,0.001898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210876,0.001898,-0.002250,0.249990,0,0);}
.mb0_c00128{transform:matrix(0.210881,0.001898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210881,0.001898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210881,0.001898,-0.002250,0.249990,0,0);}
.m101_c00128{transform:matrix(0.211106,0.001900,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211106,0.001900,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211106,0.001900,-0.002250,0.249990,0,0);}
.ma1_c00128{transform:matrix(0.211611,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211611,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211611,0.001905,-0.002250,0.249990,0,0);}
.m56_c00128{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);}
.m74_c00128{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);}
.m46_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);}
.mc9_c00128{transform:matrix(0.212646,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212646,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212646,0.001914,-0.002250,0.249990,0,0);}
.m36_c00128{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);}
.m130_c00128{transform:matrix(0.213451,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213451,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213451,0.001921,-0.002250,0.249990,0,0);}
.m17_c00128{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);}
.mb4_c00128{transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214091,0.001927,-0.002250,0.249990,0,0);}
.m13d_c00128{transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);}
.m10d_c00128{transform:matrix(0.214971,0.001935,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214971,0.001935,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214971,0.001935,-0.002250,0.249990,0,0);}
.m132_c00128{transform:matrix(0.215651,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215651,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215651,0.001941,-0.002250,0.249990,0,0);}
.m53_c00128{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);}
.m24_c00128{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);}
.m12e_c00128{transform:matrix(0.216981,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216981,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216981,0.001953,-0.002250,0.249990,0,0);}
.m88_c00128{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);}
.mfc_c00128{transform:matrix(0.219231,0.001973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219231,0.001973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219231,0.001973,-0.002250,0.249990,0,0);}
.m78_c00128{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);}
.mfb_c00128{transform:matrix(0.219796,0.001978,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219796,0.001978,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219796,0.001978,-0.002250,0.249990,0,0);}
.m138_c00128{transform:matrix(0.221396,0.001993,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221396,0.001993,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221396,0.001993,-0.002250,0.249990,0,0);}
.mf0_c00128{transform:matrix(0.223091,0.002008,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223091,0.002008,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223091,0.002008,-0.002250,0.249990,0,0);}
.m4d_c00128{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);}
.m13e_c00128{transform:matrix(0.225551,0.002030,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225551,0.002030,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225551,0.002030,-0.002250,0.249990,0,0);}
.md9_c00128{transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);}
.m39_c00128{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);}
.m70_c00128{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.227671,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227671,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227671,0.002049,-0.002250,0.249990,0,0);}
.m144_c00128{transform:matrix(0.227691,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227691,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227691,0.002049,-0.002250,0.249990,0,0);}
.m142_c00128{transform:matrix(0.228141,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228141,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228141,0.002053,-0.002250,0.249990,0,0);}
.mbe_c00128{transform:matrix(0.228296,0.002055,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228296,0.002055,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228296,0.002055,-0.002250,0.249990,0,0);}
.m102_c00128{transform:matrix(0.228486,0.002056,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228486,0.002056,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228486,0.002056,-0.002250,0.249990,0,0);}
.m109_c00128{transform:matrix(0.228546,0.002057,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228546,0.002057,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228546,0.002057,-0.002250,0.249990,0,0);}
.m10a_c00128{transform:matrix(0.228921,0.002060,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228921,0.002060,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228921,0.002060,-0.002250,0.249990,0,0);}
.m13f_c00128{transform:matrix(0.229236,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229236,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229236,0.002063,-0.002250,0.249990,0,0);}
.m134_c00128{transform:matrix(0.229621,0.002067,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229621,0.002067,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229621,0.002067,-0.002250,0.249990,0,0);}
.mef_c00128{transform:matrix(0.231271,0.002081,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231271,0.002081,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231271,0.002081,-0.002250,0.249990,0,0);}
.m58_c00128{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);}
.m5f_c00128{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);}
.m83_c00128{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);}
.mf9_c00128{transform:matrix(0.235015,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235015,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235015,0.002115,-0.002250,0.249990,0,0);}
.m140_c00128{transform:matrix(0.235215,0.002117,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235215,0.002117,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235215,0.002117,-0.002250,0.249990,0,0);}
.m1f_c00128{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);}
.m87_c00128{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);}
.m120_c00128{transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);}
.mdd_c00128{transform:matrix(0.237805,0.002140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237805,0.002140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237805,0.002140,-0.002250,0.249990,0,0);}
.m154_c00128{transform:matrix(0.238545,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238545,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238545,0.002147,-0.002250,0.249990,0,0);}
.m6c_c00128{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);}
.maa_c00128{transform:matrix(0.239295,0.002154,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239295,0.002154,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239295,0.002154,-0.002250,0.249990,0,0);}
.m89_c00128{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);}
.mdf_c00128{transform:matrix(0.240325,0.002163,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240325,0.002163,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240325,0.002163,-0.002250,0.249990,0,0);}
.m95_c00128{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);}
.m1c_c00128{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);}
.m141_c00128{transform:matrix(0.243610,0.002192,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243610,0.002192,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243610,0.002192,-0.002250,0.249990,0,0);}
.m15_c00128{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);}
.m75_c00128{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.m14e_c00128{transform:matrix(0.245580,0.002210,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245580,0.002210,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245580,0.002210,-0.002250,0.249990,0,0);}
.mc_c00128{transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);}
.mdb_c00128{transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);}
.m155_c00128{transform:matrix(0.247875,0.002231,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247875,0.002231,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247875,0.002231,-0.002250,0.249990,0,0);}
.m7f_c00128{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.mb7_c00128{transform:matrix(0.248970,0.002241,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248970,0.002241,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248970,0.002241,-0.002250,0.249990,0,0);}
.m153_c00128{transform:matrix(0.249480,0.002245,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249480,0.002245,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249480,0.002245,-0.002250,0.249990,0,0);}
.me6_c00128{transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252000,0.002268,-0.002250,0.249990,0,0);}
.mda_c00128{transform:matrix(0.255115,0.002296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255115,0.002296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255115,0.002296,-0.002250,0.249990,0,0);}
.md0_c00128{transform:matrix(0.256010,0.002304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256010,0.002304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256010,0.002304,-0.002250,0.249990,0,0);}
.mfe_c00128{transform:matrix(0.256610,0.002309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256610,0.002309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256610,0.002309,-0.002250,0.249990,0,0);}
.me_c00128{transform:matrix(0.257499,0.002832,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257499,0.002832,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257499,0.002832,-0.002750,0.249985,0,0);}
.m137_c00128{transform:matrix(0.259964,0.002340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259964,0.002340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259964,0.002340,-0.002250,0.249990,0,0);}
.m7a_c00128{transform:matrix(0.260995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260995,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{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);}
.m149_c00128{transform:matrix(0.261244,0.002351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261244,0.002351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261244,0.002351,-0.002250,0.249990,0,0);}
.m14a_c00128{transform:matrix(0.262089,0.002359,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262089,0.002359,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262089,0.002359,-0.002250,0.249990,0,0);}
.m10f_c00128{transform:matrix(0.263889,0.002375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263889,0.002375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263889,0.002375,-0.002250,0.249990,0,0);}
.m8c_c00128{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);}
.m127_c00128{transform:matrix(0.267949,0.002412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267949,0.002412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267949,0.002412,-0.002250,0.249990,0,0);}
.m35_c00128{transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268555,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);}
.m147_c00128{transform:matrix(0.276009,0.002484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276009,0.002484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276009,0.002484,-0.002250,0.249990,0,0);}
.mdc_c00128{transform:matrix(0.277534,0.002498,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277534,0.002498,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277534,0.002498,-0.002250,0.249990,0,0);}
.me8_c00128{transform:matrix(0.284033,0.002556,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284033,0.002556,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284033,0.002556,-0.002250,0.249990,0,0);}
.m14f_c00128{transform:matrix(0.286068,0.002575,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286068,0.002575,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286068,0.002575,-0.002250,0.249990,0,0);}
.mfa_c00128{transform:matrix(0.286583,0.002579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286583,0.002579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286583,0.002579,-0.002250,0.249990,0,0);}
.m152_c00128{transform:matrix(0.288103,0.002593,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288103,0.002593,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288103,0.002593,-0.002250,0.249990,0,0);}
.m82_c00128{transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290835,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{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);}
.mf_c00128{transform:matrix(0.298167,0.003280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298167,0.003280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298167,0.003280,-0.002750,0.249985,0,0);}
.maf_c00128{transform:matrix(0.300323,0.002703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.300323,0.002703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.300323,0.002703,-0.002250,0.249990,0,0);}
.m13c_c00128{transform:matrix(0.305608,0.002750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305608,0.002750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305608,0.002750,-0.002250,0.249990,0,0);}
.m133_c00128{transform:matrix(0.305678,0.002751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305678,0.002751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305678,0.002751,-0.002250,0.249990,0,0);}
.md7_c00128{transform:matrix(0.311102,0.002800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311102,0.002800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311102,0.002800,-0.002250,0.249990,0,0);}
.m2_c00128{transform:matrix(0.320326,0.003524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.320326,0.003524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.320326,0.003524,-0.002750,0.249985,0,0);}
.m9_c00128{transform:matrix(0.330620,0.003637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330620,0.003637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330620,0.003637,-0.002750,0.249985,0,0);}
.mee_c00128{transform:matrix(0.345181,0.003107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.345181,0.003107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.345181,0.003107,-0.002250,0.249990,0,0);}
.m108_c00128{transform:matrix(0.351261,0.003161,-0.002250,0.249990,0,0);-ms-transform:matrix(0.351261,0.003161,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.351261,0.003161,-0.002250,0.249990,0,0);}
.m86_c00128{transform:matrix(0.352420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352420,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.360548,0.003966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360548,0.003966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360548,0.003966,-0.002750,0.249985,0,0);}
.m150_c00128{transform:matrix(0.366050,0.003294,-0.002250,0.249990,0,0);-ms-transform:matrix(0.366050,0.003294,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.366050,0.003294,-0.002250,0.249990,0,0);}
.m5_c00128{transform:matrix(0.381652,0.004198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.381652,0.004198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.381652,0.004198,-0.002750,0.249985,0,0);}
.md_c00128{transform:matrix(0.385307,0.004238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.385307,0.004238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.385307,0.004238,-0.002750,0.249985,0,0);}
.m21_c00128{transform:matrix(0.396610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396610,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.397966,0.004378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.397966,0.004378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.397966,0.004378,-0.002750,0.249985,0,0);}
.ma_c00128{transform:matrix(0.398316,0.004381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.398316,0.004381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.398316,0.004381,-0.002750,0.249985,0,0);}
.m0_c00128{transform:matrix(0.415450,0.004570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.415450,0.004570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.415450,0.004570,-0.002750,0.249985,0,0);}
.med_c00128{transform:matrix(0.439102,0.003952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.439102,0.003952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.439102,0.003952,-0.002250,0.249990,0,0);}
.m14b_c00128{transform:matrix(0.459791,0.004138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.459791,0.004138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.459791,0.004138,-0.002250,0.249990,0,0);}
.m3_c00128{transform:matrix(0.601214,0.006613,-0.002750,0.249985,0,0);-ms-transform:matrix(0.601214,0.006613,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.601214,0.006613,-0.002750,0.249985,0,0);}
.md5_c00128{transform:matrix(0.628675,0.005658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.628675,0.005658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.628675,0.005658,-0.002250,0.249990,0,0);}
.ma6_c00128{transform:matrix(0.645959,0.005814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.645959,0.005814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.645959,0.005814,-0.002250,0.249990,0,0);}
.mb_c00128{transform:matrix(0.704817,0.007753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.704817,0.007753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.704817,0.007753,-0.002750,0.249985,0,0);}
.m6_c00128{transform:matrix(0.873272,0.009606,-0.002750,0.249985,0,0);-ms-transform:matrix(0.873272,0.009606,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.873272,0.009606,-0.002750,0.249985,0,0);}
.m156_c00128{transform:matrix(1.371291,0.027426,-0.004999,0.249950,0,0);-ms-transform:matrix(1.371291,0.027426,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.371291,0.027426,-0.004999,0.249950,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;}
.fs0_c00128{font-size:48.302922px;}
.fs10_c00128{font-size:59.852424px;}
.fs4_c00128{font-size:61.950000px;}
.fs6_c00128{font-size:63.000000px;}
.fs13_c00128{font-size:63.002551px;}
.fs8_c00128{font-size:64.050000px;}
.fsa_c00128{font-size:65.100000px;}
.fs11_c00128{font-size:66.152679px;}
.fs14_c00128{font-size:66.163229px;}
.fsd_c00128{font-size:67.202722px;}
.fs7_c00128{font-size:68.250000px;}
.fsb_c00128{font-size:68.252764px;}
.fs5_c00128{font-size:69.300000px;}
.fs12_c00128{font-size:69.302807px;}
.fs9_c00128{font-size:70.350000px;}
.fsf_c00128{font-size:70.352849px;}
.fs3_c00128{font-size:71.400000px;}
.fsc_c00128{font-size:71.402892px;}
.fse_c00128{font-size:73.502977px;}
.fs1_c00128{font-size:91.355527px;}
.fs2_c00128{font-size:122.857432px;}
.y0_c00128{bottom:0.000000px;}
.yf6_c00128{bottom:108.012000px;}
.yf5_c00128{bottom:166.230908px;}
.yf4_c00128{bottom:167.640332px;}
.yf3_c00128{bottom:168.814626px;}
.yf2_c00128{bottom:169.185714px;}
.yf1_c00128{bottom:169.286816px;}
.yf0_c00128{bottom:170.354675px;}
.yef_c00128{bottom:171.318663px;}
.yee_c00128{bottom:171.686402px;}
.yed_c00128{bottom:172.497104px;}
.yec_c00128{bottom:172.733772px;}
.yeb_c00128{bottom:173.066694px;}
.yea_c00128{bottom:189.730197px;}
.ye9_c00128{bottom:190.054515px;}
.ye8_c00128{bottom:190.302329px;}
.ye7_c00128{bottom:190.377065px;}
.ye6_c00128{bottom:191.763875px;}
.ye5_c00128{bottom:192.081873px;}
.ye4_c00128{bottom:193.086888px;}
.ye3_c00128{bottom:193.343615px;}
.ye2_c00128{bottom:193.540259px;}
.ye1_c00128{bottom:194.383865px;}
.ye0_c00128{bottom:194.807727px;}
.ydf_c00128{bottom:195.480362px;}
.yde_c00128{bottom:195.753834px;}
.ydd_c00128{bottom:211.500063px;}
.ydc_c00128{bottom:212.004171px;}
.ydb_c00128{bottom:212.877650px;}
.yda_c00128{bottom:214.154801px;}
.yd9_c00128{bottom:214.815226px;}
.yd8_c00128{bottom:215.079948px;}
.yd7_c00128{bottom:215.545271px;}
.yd6_c00128{bottom:215.829642px;}
.yd5_c00128{bottom:217.009518px;}
.yd4_c00128{bottom:217.664165px;}
.yd3_c00128{bottom:217.890978px;}
.yd2_c00128{bottom:234.655340px;}
.yd1_c00128{bottom:235.005077px;}
.yd0_c00128{bottom:235.718393px;}
.ycf_c00128{bottom:236.060987px;}
.yce_c00128{bottom:236.916818px;}
.ycd_c00128{bottom:237.217848px;}
.ycc_c00128{bottom:237.674681px;}
.ycb_c00128{bottom:238.384337px;}
.yca_c00128{bottom:239.057736px;}
.yc9_c00128{bottom:239.539833px;}
.yc8_c00128{bottom:239.805106px;}
.yc7_c00128{bottom:240.028493px;}
.yc6_c00128{bottom:256.998707px;}
.yc5_c00128{bottom:257.735209px;}
.yc4_c00128{bottom:258.180481px;}
.yc3_c00128{bottom:258.598503px;}
.yc2_c00128{bottom:259.030960px;}
.yc1_c00128{bottom:259.528548px;}
.yc0_c00128{bottom:259.771677px;}
.ybf_c00128{bottom:260.579712px;}
.ybe_c00128{bottom:260.975937px;}
.ybd_c00128{bottom:261.292151px;}
.ybc_c00128{bottom:261.842782px;}
.ybb_c00128{bottom:262.130934px;}
.yba_c00128{bottom:262.463824px;}
.yb9_c00128{bottom:262.707872px;}
.yb8_c00128{bottom:280.643594px;}
.yb7_c00128{bottom:281.451534px;}
.yb6_c00128{bottom:281.743237px;}
.yb5_c00128{bottom:282.235059px;}
.yb4_c00128{bottom:282.551178px;}
.yb3_c00128{bottom:283.449514px;}
.yb2_c00128{bottom:284.006722px;}
.yb1_c00128{bottom:284.206746px;}
.yb0_c00128{bottom:285.341217px;}
.yaf_c00128{bottom:285.659442px;}
.yae_c00128{bottom:301.868629px;}
.yad_c00128{bottom:302.127936px;}
.yac_c00128{bottom:303.150660px;}
.yab_c00128{bottom:303.782898px;}
.yaa_c00128{bottom:304.231843px;}
.ya9_c00128{bottom:304.530096px;}
.ya8_c00128{bottom:304.716412px;}
.ya7_c00128{bottom:305.779514px;}
.ya6_c00128{bottom:306.636730px;}
.ya5_c00128{bottom:307.558942px;}
.ya4_c00128{bottom:307.799113px;}
.ya3_c00128{bottom:324.875256px;}
.ya2_c00128{bottom:325.386066px;}
.ya1_c00128{bottom:325.726368px;}
.ya0_c00128{bottom:326.188722px;}
.y9f_c00128{bottom:326.486008px;}
.y9e_c00128{bottom:327.417561px;}
.y9d_c00128{bottom:327.854708px;}
.y9c_c00128{bottom:328.459459px;}
.y9b_c00128{bottom:328.882835px;}
.y9a_c00128{bottom:329.230588px;}
.y99_c00128{bottom:329.400394px;}
.y98_c00128{bottom:347.493163px;}
.y97_c00128{bottom:347.939149px;}
.y96_c00128{bottom:348.428545px;}
.y95_c00128{bottom:348.769482px;}
.y94_c00128{bottom:349.686879px;}
.y93_c00128{bottom:350.479378px;}
.y92_c00128{bottom:350.892472px;}
.y91_c00128{bottom:351.387904px;}
.y90_c00128{bottom:351.866620px;}
.y8f_c00128{bottom:352.388909px;}
.y8e_c00128{bottom:352.602909px;}
.y8d_c00128{bottom:353.157873px;}
.y8c_c00128{bottom:370.205653px;}
.y8b_c00128{bottom:370.484038px;}
.y8a_c00128{bottom:370.794921px;}
.y89_c00128{bottom:370.943585px;}
.y88_c00128{bottom:371.383593px;}
.y87_c00128{bottom:372.420172px;}
.y86_c00128{bottom:372.630780px;}
.y85_c00128{bottom:373.038453px;}
.y84_c00128{bottom:373.426819px;}
.y83_c00128{bottom:373.916608px;}
.y82_c00128{bottom:374.152059px;}
.y81_c00128{bottom:374.584318px;}
.y80_c00128{bottom:374.759485px;}
.y7f_c00128{bottom:393.196357px;}
.y7e_c00128{bottom:393.373221px;}
.y7d_c00128{bottom:393.842170px;}
.y7c_c00128{bottom:394.097901px;}
.y7b_c00128{bottom:394.850755px;}
.y7a_c00128{bottom:395.715930px;}
.y79_c00128{bottom:396.481367px;}
.y78_c00128{bottom:396.658001px;}
.y77_c00128{bottom:396.901500px;}
.y76_c00128{bottom:415.270741px;}
.y75_c00128{bottom:418.172608px;}
.y74_c00128{bottom:418.734124px;}
.y73_c00128{bottom:419.113389px;}
.y72_c00128{bottom:419.848285px;}
.y71_c00128{bottom:438.207982px;}
.y70_c00128{bottom:438.570322px;}
.y6f_c00128{bottom:438.789063px;}
.y6e_c00128{bottom:439.335840px;}
.y6d_c00128{bottom:439.552096px;}
.y6c_c00128{bottom:439.683465px;}
.y6b_c00128{bottom:439.695088px;}
.y6a_c00128{bottom:440.256904px;}
.y69_c00128{bottom:440.502388px;}
.y68_c00128{bottom:441.080661px;}
.y67_c00128{bottom:441.233805px;}
.y66_c00128{bottom:441.775735px;}
.y65_c00128{bottom:442.256875px;}
.y64_c00128{bottom:460.923370px;}
.y63_c00128{bottom:461.106556px;}
.y62_c00128{bottom:461.460508px;}
.y61_c00128{bottom:461.968956px;}
.y60_c00128{bottom:462.112597px;}
.y5f_c00128{bottom:462.334344px;}
.y5e_c00128{bottom:462.840537px;}
.y5d_c00128{bottom:463.153107px;}
.y5b_c00128{bottom:463.409524px;}
.y5c_c00128{bottom:463.423147px;}
.y5a_c00128{bottom:464.017842px;}
.y59_c00128{bottom:464.239642px;}
.y58_c00128{bottom:464.925997px;}
.y57_c00128{bottom:465.212037px;}
.y56_c00128{bottom:483.232266px;}
.y55_c00128{bottom:483.807004px;}
.y54_c00128{bottom:484.125110px;}
.y53_c00128{bottom:484.518606px;}
.y52_c00128{bottom:485.061090px;}
.y51_c00128{bottom:485.404524px;}
.y50_c00128{bottom:485.494754px;}
.y4f_c00128{bottom:486.203290px;}
.y4e_c00128{bottom:486.567597px;}
.y4d_c00128{bottom:486.775531px;}
.y4c_c00128{bottom:487.086103px;}
.y4b_c00128{bottom:487.599343px;}
.y4a_c00128{bottom:487.890216px;}
.y49_c00128{bottom:506.797264px;}
.y48_c00128{bottom:507.438865px;}
.y47_c00128{bottom:507.650248px;}
.y46_c00128{bottom:507.973074px;}
.y45_c00128{bottom:508.597975px;}
.y44_c00128{bottom:508.828879px;}
.y43_c00128{bottom:509.329432px;}
.y42_c00128{bottom:509.499789px;}
.y41_c00128{bottom:509.912700px;}
.y40_c00128{bottom:510.301500px;}
.y3f_c00128{bottom:533.249595px;}
.y3e_c00128{bottom:551.354784px;}
.y3d_c00128{bottom:551.950417px;}
.y3c_c00128{bottom:552.183468px;}
.y3b_c00128{bottom:552.861897px;}
.y3a_c00128{bottom:553.488742px;}
.y39_c00128{bottom:554.047683px;}
.y38_c00128{bottom:554.565205px;}
.y37_c00128{bottom:554.880781px;}
.y36_c00128{bottom:555.391500px;}
.y35_c00128{bottom:574.017000px;}
.y34_c00128{bottom:574.228500px;}
.y33_c00128{bottom:575.005500px;}
.y32_c00128{bottom:575.664000px;}
.y31_c00128{bottom:575.887500px;}
.y30_c00128{bottom:576.451500px;}
.y2f_c00128{bottom:576.918000px;}
.y2e_c00128{bottom:577.330500px;}
.y2d_c00128{bottom:578.092500px;}
.y2c_c00128{bottom:578.611500px;}
.y2b_c00128{bottom:596.880000px;}
.y2a_c00128{bottom:597.388500px;}
.y29_c00128{bottom:597.952500px;}
.y28_c00128{bottom:598.243500px;}
.y27_c00128{bottom:598.831500px;}
.y26_c00128{bottom:598.987500px;}
.y25_c00128{bottom:599.238000px;}
.y24_c00128{bottom:599.629500px;}
.y23_c00128{bottom:600.030000px;}
.y22_c00128{bottom:600.258000px;}
.y21_c00128{bottom:601.021500px;}
.y20_c00128{bottom:621.559500px;}
.y1f_c00128{bottom:642.262500px;}
.y1e_c00128{bottom:643.354500px;}
.y1d_c00128{bottom:643.653000px;}
.y1c_c00128{bottom:644.635500px;}
.y1b_c00128{bottom:644.994000px;}
.y1a_c00128{bottom:645.301500px;}
.y19_c00128{bottom:666.996000px;}
.y18_c00128{bottom:689.709000px;}
.y17_c00128{bottom:712.141500px;}
.y16_c00128{bottom:735.070500px;}
.y15_c00128{bottom:757.426500px;}
.y14_c00128{bottom:780.397500px;}
.y13_c00128{bottom:802.740000px;}
.y12_c00128{bottom:825.120000px;}
.y11_c00128{bottom:875.728631px;}
.y10_c00128{bottom:879.314865px;}
.yf_c00128{bottom:880.198551px;}
.y9_c00128{bottom:918.957442px;}
.ya_c00128{bottom:918.957931px;}
.ye_c00128{bottom:918.958123px;}
.y8_c00128{bottom:918.958176px;}
.yb_c00128{bottom:918.958201px;}
.yd_c00128{bottom:918.958497px;}
.yc_c00128{bottom:918.958758px;}
.y7_c00128{bottom:938.431645px;}
.y6_c00128{bottom:938.770341px;}
.y5_c00128{bottom:939.301806px;}
.y4_c00128{bottom:940.149972px;}
.y3_c00128{bottom:940.825647px;}
.y2_c00128{bottom:941.425851px;}
.y1_c00128{bottom:942.031500px;}
.h2_c00128{height:48.302922px;}
.h12_c00128{height:59.852424px;}
.h6_c00128{height:61.950000px;}
.h8_c00128{height:63.000000px;}
.h15_c00128{height:63.002551px;}
.ha_c00128{height:64.050000px;}
.hc_c00128{height:65.100000px;}
.h13_c00128{height:66.152679px;}
.h16_c00128{height:66.163229px;}
.hf_c00128{height:67.202722px;}
.h9_c00128{height:68.250000px;}
.hd_c00128{height:68.252764px;}
.h7_c00128{height:69.300000px;}
.h14_c00128{height:69.302807px;}
.hb_c00128{height:70.350000px;}
.h11_c00128{height:70.352849px;}
.h5_c00128{height:71.400000px;}
.he_c00128{height:71.402892px;}
.h10_c00128{height:73.502977px;}
.h3_c00128{height:91.355527px;}
.h4_c00128{height:122.857432px;}
.h1_c00128{height:1005.000000px;}
.h0_c00128{height:1005.150000px;}
.w0_c00128{width:705.450000px;}
.w1_c00128{width:705.750000px;}
.x0_c00128{left:0.000000px;}
.x92_c00128{left:29.548170px;}
.xb9_c00128{left:63.561236px;}
.x2e_c00128{left:68.310000px;}
.x60_c00128{left:71.941500px;}
.x1c_c00128{left:75.870000px;}
.xa1_c00128{left:77.103585px;}
.x77_c00128{left:79.250217px;}
.x11_c00128{left:81.270000px;}
.x82_c00128{left:83.044358px;}
.xba_c00128{left:85.718034px;}
.x24_c00128{left:96.120000px;}
.x3c_c00128{left:98.820000px;}
.x12_c00128{left:100.170000px;}
.x9c_c00128{left:101.358129px;}
.xab_c00128{left:102.452483px;}
.x78_c00128{left:108.402460px;}
.x7d_c00128{left:110.292570px;}
.xac_c00128{left:124.593389px;}
.x56_c00128{left:127.533000px;}
.x3d_c00128{left:132.300000px;}
.x97_c00128{left:134.564718px;}
.x83_c00128{left:136.504358px;}
.x25_c00128{left:139.050000px;}
.x2f_c00128{left:141.480000px;}
.x13_c00128{left:143.910000px;}
.x8c_c00128{left:146.226000px;}
.xa6_c00128{left:149.190591px;}
.xbb_c00128{left:155.588768px;}
.x61_c00128{left:156.729000px;}
.x79_c00128{left:159.762001px;}
.x8e_c00128{left:165.386486px;}
.x8a_c00128{left:167.478509px;}
.x1d_c00128{left:169.290000px;}
.x36_c00128{left:172.530000px;}
.x98_c00128{left:176.939340px;}
.x59_c00128{left:178.200000px;}
.xe_c00128{left:180.187328px;}
.x62_c00128{left:182.128500px;}
.x50_c00128{left:185.490000px;}
.x26_c00128{left:186.570000px;}
.x70_c00128{left:188.056500px;}
.x7a_c00128{left:190.769718px;}
.x8_c00128{left:192.240090px;}
.x84_c00128{left:196.718858px;}
.x3e_c00128{left:199.800000px;}
.x1e_c00128{left:201.420000px;}
.x57_c00128{left:203.145000px;}
.xa2_c00128{left:204.234509px;}
.x71_c00128{left:206.985000px;}
.x27_c00128{left:209.520000px;}
.x47_c00128{left:210.600000px;}
.x9_c00128{left:212.491032px;}
.x1_c00128{left:214.012500px;}
.x14_c00128{left:215.190000px;}
.x5a_c00128{left:217.890000px;}
.xad_c00128{left:220.979297px;}
.x3f_c00128{left:224.910000px;}
.x58_c00128{left:226.090500px;}
.x6c_c00128{left:230.736000px;}
.x37_c00128{left:235.980000px;}
.x51_c00128{left:237.060000px;}
.x28_c00128{left:238.140000px;}
.x48_c00128{left:241.110000px;}
.x5b_c00128{left:242.460000px;}
.xbc_c00128{left:244.386975px;}
.xa7_c00128{left:246.361595px;}
.xf_c00128{left:248.111826px;}
.x40_c00128{left:251.370000px;}
.x8f_c00128{left:253.125189px;}
.xb5_c00128{left:254.434673px;}
.x7f_c00128{left:260.441207px;}
.x7e_c00128{left:261.788193px;}
.x1f_c00128{left:263.250000px;}
.x2_c00128{left:269.071500px;}
.x63_c00128{left:270.168000px;}
.x15_c00128{left:271.890000px;}
.x93_c00128{left:273.154296px;}
.x5c_c00128{left:275.400000px;}
.x85_c00128{left:277.987358px;}
.xae_c00128{left:280.161704px;}
.x20_c00128{left:281.610000px;}
.xb3_c00128{left:284.151191px;}
.x52_c00128{left:286.740000px;}
.x72_c00128{left:288.258000px;}
.x49_c00128{left:289.710000px;}
.x6d_c00128{left:292.840500px;}
.x90_c00128{left:293.921825px;}
.x64_c00128{left:297.966000px;}
.xb4_c00128{left:303.063840px;}
.x4a_c00128{left:305.100000px;}
.x30_c00128{left:308.070000px;}
.x38_c00128{left:309.150000px;}
.x29_c00128{left:312.660000px;}
.x65_c00128{left:315.259500px;}
.x16_c00128{left:316.440000px;}
.x41_c00128{left:317.790000px;}
.x7b_c00128{left:318.910570px;}
.x9d_c00128{left:320.020259px;}
.xbd_c00128{left:322.267263px;}
.x3_c00128{left:323.635500px;}
.x7c_c00128{left:327.935990px;}
.x2a_c00128{left:329.670000px;}
.x9e_c00128{left:334.388246px;}
.x21_c00128{left:335.610000px;}
.xa3_c00128{left:340.581108px;}
.xaf_c00128{left:343.367003px;}
.x94_c00128{left:345.208500px;}
.x39_c00128{left:347.760000px;}
.x17_c00128{left:349.110000px;}
.x4b_c00128{left:351.270000px;}
.xb_c00128{left:353.439093px;}
.x53_c00128{left:356.400000px;}
.x73_c00128{left:357.691500px;}
.x31_c00128{left:361.530000px;}
.xa_c00128{left:364.510429px;}
.xb6_c00128{left:367.289597px;}
.x42_c00128{left:368.550000px;}
.x4c_c00128{left:371.250000px;}
.x99_c00128{left:374.376572px;}
.x69_c00128{left:375.996000px;}
.xa4_c00128{left:378.393245px;}
.x66_c00128{left:380.592000px;}
.x32_c00128{left:382.050000px;}
.x86_c00128{left:383.575357px;}
.x4_c00128{left:385.060500px;}
.x22_c00128{left:387.180000px;}
.x4d_c00128{left:390.150000px;}
.x80_c00128{left:391.390019px;}
.x74_c00128{left:393.561000px;}
.x43_c00128{left:396.090000px;}
.xa8_c00128{left:398.657100px;}
.xa5_c00128{left:400.803935px;}
.x9a_c00128{left:404.074802px;}
.x18_c00128{left:405.270000px;}
.x87_c00128{left:407.603858px;}
.x2b_c00128{left:411.750000px;}
.x67_c00128{left:412.953000px;}
.xb0_c00128{left:414.624072px;}
.x75_c00128{left:417.048000px;}
.x54_c00128{left:418.500000px;}
.x33_c00128{left:423.630000px;}
.xbe_c00128{left:425.304201px;}
.x95_c00128{left:428.640002px;}
.x19_c00128{left:430.110000px;}
.x8b_c00128{left:433.955924px;}
.x6e_c00128{left:437.871000px;}
.x8d_c00128{left:439.470000px;}
.x9f_c00128{left:440.488425px;}
.x6a_c00128{left:441.834000px;}
.xb1_c00128{left:443.189303px;}
.x44_c00128{left:444.690000px;}
.x2c_c00128{left:446.040000px;}
.x3a_c00128{left:449.550000px;}
.x55_c00128{left:456.840000px;}
.x5d_c00128{left:459.270000px;}
.x5_c00128{left:462.166500px;}
.x6f_c00128{left:463.765500px;}
.xa9_c00128{left:465.076211px;}
.xb7_c00128{left:466.375142px;}
.x88_c00128{left:468.356858px;}
.xb8_c00128{left:471.678899px;}
.x23_c00128{left:473.850000px;}
.x68_c00128{left:475.563000px;}
.x4e_c00128{left:477.900000px;}
.x9b_c00128{left:484.258073px;}
.x76_c00128{left:488.337000px;}
.x3b_c00128{left:489.510000px;}
.x81_c00128{left:491.838101px;}
.x5e_c00128{left:493.020000px;}
.x34_c00128{left:497.880000px;}
.xb2_c00128{left:502.611696px;}
.x96_c00128{left:504.231152px;}
.x91_c00128{left:508.613394px;}
.x6_c00128{left:510.481500px;}
.x45_c00128{left:513.270000px;}
.x1a_c00128{left:517.320000px;}
.x6b_c00128{left:519.604500px;}
.xaa_c00128{left:521.741172px;}
.x10_c00128{left:523.945254px;}
.x2d_c00128{left:525.960000px;}
.x35_c00128{left:529.200000px;}
.xc_c00128{left:530.570027px;}
.x5f_c00128{left:531.900000px;}
.x89_c00128{left:532.921357px;}
.x4f_c00128{left:534.600000px;}
.x46_c00128{left:537.030000px;}
.xa0_c00128{left:539.099375px;}
.x7_c00128{left:541.272000px;}
.x1b_c00128{left:545.130000px;}
.xd_c00128{left:567.562998px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
.fs0_c00128{font-size:42.935931pt;}
.fs10_c00128{font-size:53.202155pt;}
.fs4_c00128{font-size:55.066667pt;}
.fs6_c00128{font-size:56.000000pt;}
.fs13_c00128{font-size:56.002268pt;}
.fs8_c00128{font-size:56.933333pt;}
.fsa_c00128{font-size:57.866667pt;}
.fs11_c00128{font-size:58.802381pt;}
.fs14_c00128{font-size:58.811759pt;}
.fsd_c00128{font-size:59.735752pt;}
.fs7_c00128{font-size:60.666667pt;}
.fsb_c00128{font-size:60.669124pt;}
.fs5_c00128{font-size:61.600000pt;}
.fs12_c00128{font-size:61.602495pt;}
.fs9_c00128{font-size:62.533333pt;}
.fsf_c00128{font-size:62.535866pt;}
.fs3_c00128{font-size:63.466667pt;}
.fsc_c00128{font-size:63.469237pt;}
.fse_c00128{font-size:65.335979pt;}
.fs1_c00128{font-size:81.204912pt;}
.fs2_c00128{font-size:109.206606pt;}
.y0_c00128{bottom:0.000000pt;}
.yf6_c00128{bottom:96.010667pt;}
.yf5_c00128{bottom:147.760807pt;}
.yf4_c00128{bottom:149.013628pt;}
.yf3_c00128{bottom:150.057445pt;}
.yf2_c00128{bottom:150.387301pt;}
.yf1_c00128{bottom:150.477169pt;}
.yf0_c00128{bottom:151.426377pt;}
.yef_c00128{bottom:152.283256pt;}
.yee_c00128{bottom:152.610135pt;}
.yed_c00128{bottom:153.330759pt;}
.yec_c00128{bottom:153.541131pt;}
.yeb_c00128{bottom:153.837061pt;}
.yea_c00128{bottom:168.649064pt;}
.ye9_c00128{bottom:168.937347pt;}
.ye8_c00128{bottom:169.157625pt;}
.ye7_c00128{bottom:169.224057pt;}
.ye6_c00128{bottom:170.456777pt;}
.ye5_c00128{bottom:170.739443pt;}
.ye4_c00128{bottom:171.632789pt;}
.ye3_c00128{bottom:171.860991pt;}
.ye2_c00128{bottom:172.035785pt;}
.ye1_c00128{bottom:172.785657pt;}
.ye0_c00128{bottom:173.162424pt;}
.ydf_c00128{bottom:173.760321pt;}
.yde_c00128{bottom:174.003408pt;}
.ydd_c00128{bottom:188.000056pt;}
.ydc_c00128{bottom:188.448152pt;}
.ydb_c00128{bottom:189.224577pt;}
.yda_c00128{bottom:190.359823pt;}
.yd9_c00128{bottom:190.946868pt;}
.yd8_c00128{bottom:191.182176pt;}
.yd7_c00128{bottom:191.595796pt;}
.yd6_c00128{bottom:191.848571pt;}
.yd5_c00128{bottom:192.897349pt;}
.yd4_c00128{bottom:193.479257pt;}
.yd3_c00128{bottom:193.680869pt;}
.yd2_c00128{bottom:208.582524pt;}
.yd1_c00128{bottom:208.893401pt;}
.yd0_c00128{bottom:209.527460pt;}
.ycf_c00128{bottom:209.831988pt;}
.yce_c00128{bottom:210.592727pt;}
.ycd_c00128{bottom:210.860309pt;}
.ycc_c00128{bottom:211.266383pt;}
.ycb_c00128{bottom:211.897188pt;}
.yca_c00128{bottom:212.495765pt;}
.yc9_c00128{bottom:212.924296pt;}
.yc8_c00128{bottom:213.160095pt;}
.yc7_c00128{bottom:213.358660pt;}
.yc6_c00128{bottom:228.443295pt;}
.yc5_c00128{bottom:229.097964pt;}
.yc4_c00128{bottom:229.493761pt;}
.yc3_c00128{bottom:229.865336pt;}
.yc2_c00128{bottom:230.249743pt;}
.yc1_c00128{bottom:230.692043pt;}
.yc0_c00128{bottom:230.908157pt;}
.ybf_c00128{bottom:231.626411pt;}
.ybe_c00128{bottom:231.978611pt;}
.ybd_c00128{bottom:232.259689pt;}
.ybc_c00128{bottom:232.749140pt;}
.ybb_c00128{bottom:233.005275pt;}
.yba_c00128{bottom:233.301177pt;}
.yb9_c00128{bottom:233.518108pt;}
.yb8_c00128{bottom:249.460972pt;}
.yb7_c00128{bottom:250.179141pt;}
.yb6_c00128{bottom:250.438433pt;}
.yb5_c00128{bottom:250.875608pt;}
.yb4_c00128{bottom:251.156603pt;}
.yb3_c00128{bottom:251.955124pt;}
.yb2_c00128{bottom:252.450420pt;}
.yb1_c00128{bottom:252.628219pt;}
.yb0_c00128{bottom:253.636637pt;}
.yaf_c00128{bottom:253.919504pt;}
.yae_c00128{bottom:268.327671pt;}
.yad_c00128{bottom:268.558165pt;}
.yac_c00128{bottom:269.467253pt;}
.yab_c00128{bottom:270.029243pt;}
.yaa_c00128{bottom:270.428305pt;}
.ya9_c00128{bottom:270.693419pt;}
.ya8_c00128{bottom:270.859033pt;}
.ya7_c00128{bottom:271.804012pt;}
.ya6_c00128{bottom:272.565983pt;}
.ya5_c00128{bottom:273.385727pt;}
.ya4_c00128{bottom:273.599212pt;}
.ya3_c00128{bottom:288.778005pt;}
.ya2_c00128{bottom:289.232059pt;}
.ya1_c00128{bottom:289.534549pt;}
.ya0_c00128{bottom:289.945531pt;}
.y9f_c00128{bottom:290.209785pt;}
.y9e_c00128{bottom:291.037832pt;}
.y9d_c00128{bottom:291.426407pt;}
.y9c_c00128{bottom:291.963964pt;}
.y9b_c00128{bottom:292.340297pt;}
.y9a_c00128{bottom:292.649412pt;}
.y99_c00128{bottom:292.800351pt;}
.y98_c00128{bottom:308.882812pt;}
.y97_c00128{bottom:309.279244pt;}
.y96_c00128{bottom:309.714263pt;}
.y95_c00128{bottom:310.017317pt;}
.y94_c00128{bottom:310.832781pt;}
.y93_c00128{bottom:311.537225pt;}
.y92_c00128{bottom:311.904420pt;}
.y91_c00128{bottom:312.344804pt;}
.y90_c00128{bottom:312.770329pt;}
.y8f_c00128{bottom:313.234585pt;}
.y8e_c00128{bottom:313.424808pt;}
.y8d_c00128{bottom:313.918109pt;}
.y8c_c00128{bottom:329.071692pt;}
.y8b_c00128{bottom:329.319145pt;}
.y8a_c00128{bottom:329.595485pt;}
.y89_c00128{bottom:329.727631pt;}
.y88_c00128{bottom:330.118749pt;}
.y87_c00128{bottom:331.040153pt;}
.y86_c00128{bottom:331.227360pt;}
.y85_c00128{bottom:331.589736pt;}
.y84_c00128{bottom:331.934951pt;}
.y83_c00128{bottom:332.370319pt;}
.y82_c00128{bottom:332.579608pt;}
.y81_c00128{bottom:332.963839pt;}
.y80_c00128{bottom:333.119543pt;}
.y7f_c00128{bottom:349.507873pt;}
.y7e_c00128{bottom:349.665085pt;}
.y7d_c00128{bottom:350.081929pt;}
.y7c_c00128{bottom:350.309245pt;}
.y7b_c00128{bottom:350.978449pt;}
.y7a_c00128{bottom:351.747493pt;}
.y79_c00128{bottom:352.427881pt;}
.y78_c00128{bottom:352.584889pt;}
.y77_c00128{bottom:352.801333pt;}
.y76_c00128{bottom:369.129548pt;}
.y75_c00128{bottom:371.708985pt;}
.y74_c00128{bottom:372.208111pt;}
.y73_c00128{bottom:372.545235pt;}
.y72_c00128{bottom:373.198476pt;}
.y71_c00128{bottom:389.518207pt;}
.y70_c00128{bottom:389.840287pt;}
.y6f_c00128{bottom:390.034723pt;}
.y6e_c00128{bottom:390.520747pt;}
.y6d_c00128{bottom:390.712975pt;}
.y6c_c00128{bottom:390.829747pt;}
.y6b_c00128{bottom:390.840079pt;}
.y6a_c00128{bottom:391.339471pt;}
.y69_c00128{bottom:391.557679pt;}
.y68_c00128{bottom:392.071699pt;}
.y67_c00128{bottom:392.207827pt;}
.y66_c00128{bottom:392.689543pt;}
.y65_c00128{bottom:393.117223pt;}
.y64_c00128{bottom:409.709663pt;}
.y63_c00128{bottom:409.872495pt;}
.y62_c00128{bottom:410.187119pt;}
.y61_c00128{bottom:410.639072pt;}
.y60_c00128{bottom:410.766753pt;}
.y5f_c00128{bottom:410.963861pt;}
.y5e_c00128{bottom:411.413811pt;}
.y5d_c00128{bottom:411.691651pt;}
.y5b_c00128{bottom:411.919577pt;}
.y5c_c00128{bottom:411.931687pt;}
.y5a_c00128{bottom:412.460304pt;}
.y59_c00128{bottom:412.657460pt;}
.y58_c00128{bottom:413.267553pt;}
.y57_c00128{bottom:413.521811pt;}
.y56_c00128{bottom:429.539792pt;}
.y55_c00128{bottom:430.050671pt;}
.y54_c00128{bottom:430.333431pt;}
.y53_c00128{bottom:430.683205pt;}
.y52_c00128{bottom:431.165413pt;}
.y51_c00128{bottom:431.470688pt;}
.y50_c00128{bottom:431.550892pt;}
.y4f_c00128{bottom:432.180703pt;}
.y4e_c00128{bottom:432.504531pt;}
.y4d_c00128{bottom:432.689361pt;}
.y4c_c00128{bottom:432.965425pt;}
.y4b_c00128{bottom:433.421639pt;}
.y4a_c00128{bottom:433.680192pt;}
.y49_c00128{bottom:450.486457pt;}
.y48_c00128{bottom:451.056769pt;}
.y47_c00128{bottom:451.244665pt;}
.y46_c00128{bottom:451.531621pt;}
.y45_c00128{bottom:452.087089pt;}
.y44_c00128{bottom:452.292337pt;}
.y43_c00128{bottom:452.737273pt;}
.y42_c00128{bottom:452.888701pt;}
.y41_c00128{bottom:453.255733pt;}
.y40_c00128{bottom:453.601333pt;}
.y3f_c00128{bottom:473.999640pt;}
.y3e_c00128{bottom:490.093141pt;}
.y3d_c00128{bottom:490.622593pt;}
.y3c_c00128{bottom:490.829749pt;}
.y3b_c00128{bottom:491.432797pt;}
.y3a_c00128{bottom:491.989993pt;}
.y39_c00128{bottom:492.486829pt;}
.y38_c00128{bottom:492.946849pt;}
.y37_c00128{bottom:493.227361pt;}
.y36_c00128{bottom:493.681333pt;}
.y35_c00128{bottom:510.237333pt;}
.y34_c00128{bottom:510.425333pt;}
.y33_c00128{bottom:511.116000pt;}
.y32_c00128{bottom:511.701333pt;}
.y31_c00128{bottom:511.900000pt;}
.y30_c00128{bottom:512.401333pt;}
.y2f_c00128{bottom:512.816000pt;}
.y2e_c00128{bottom:513.182667pt;}
.y2d_c00128{bottom:513.860000pt;}
.y2c_c00128{bottom:514.321333pt;}
.y2b_c00128{bottom:530.560000pt;}
.y2a_c00128{bottom:531.012000pt;}
.y29_c00128{bottom:531.513333pt;}
.y28_c00128{bottom:531.772000pt;}
.y27_c00128{bottom:532.294667pt;}
.y26_c00128{bottom:532.433333pt;}
.y25_c00128{bottom:532.656000pt;}
.y24_c00128{bottom:533.004000pt;}
.y23_c00128{bottom:533.360000pt;}
.y22_c00128{bottom:533.562667pt;}
.y21_c00128{bottom:534.241333pt;}
.y20_c00128{bottom:552.497333pt;}
.y1f_c00128{bottom:570.900000pt;}
.y1e_c00128{bottom:571.870667pt;}
.y1d_c00128{bottom:572.136000pt;}
.y1c_c00128{bottom:573.009333pt;}
.y1b_c00128{bottom:573.328000pt;}
.y1a_c00128{bottom:573.601333pt;}
.y19_c00128{bottom:592.885333pt;}
.y18_c00128{bottom:613.074667pt;}
.y17_c00128{bottom:633.014667pt;}
.y16_c00128{bottom:653.396000pt;}
.y15_c00128{bottom:673.268000pt;}
.y14_c00128{bottom:693.686667pt;}
.y13_c00128{bottom:713.546667pt;}
.y12_c00128{bottom:733.440000pt;}
.y11_c00128{bottom:778.425449pt;}
.y10_c00128{bottom:781.613213pt;}
.yf_c00128{bottom:782.398712pt;}
.y9_c00128{bottom:816.851060pt;}
.ya_c00128{bottom:816.851495pt;}
.ye_c00128{bottom:816.851665pt;}
.y8_c00128{bottom:816.851712pt;}
.yb_c00128{bottom:816.851735pt;}
.yd_c00128{bottom:816.851997pt;}
.yc_c00128{bottom:816.852229pt;}
.y7_c00128{bottom:834.161463pt;}
.y6_c00128{bottom:834.462525pt;}
.y5_c00128{bottom:834.934939pt;}
.y4_c00128{bottom:835.688864pt;}
.y3_c00128{bottom:836.289464pt;}
.y2_c00128{bottom:836.822979pt;}
.y1_c00128{bottom:837.361333pt;}
.h2_c00128{height:42.935931pt;}
.h12_c00128{height:53.202155pt;}
.h6_c00128{height:55.066667pt;}
.h8_c00128{height:56.000000pt;}
.h15_c00128{height:56.002268pt;}
.ha_c00128{height:56.933333pt;}
.hc_c00128{height:57.866667pt;}
.h13_c00128{height:58.802381pt;}
.h16_c00128{height:58.811759pt;}
.hf_c00128{height:59.735752pt;}
.h9_c00128{height:60.666667pt;}
.hd_c00128{height:60.669124pt;}
.h7_c00128{height:61.600000pt;}
.h14_c00128{height:61.602495pt;}
.hb_c00128{height:62.533333pt;}
.h11_c00128{height:62.535866pt;}
.h5_c00128{height:63.466667pt;}
.he_c00128{height:63.469237pt;}
.h10_c00128{height:65.335979pt;}
.h3_c00128{height:81.204912pt;}
.h4_c00128{height:109.206606pt;}
.h1_c00128{height:893.333333pt;}
.h0_c00128{height:893.466667pt;}
.w0_c00128{width:627.066667pt;}
.w1_c00128{width:627.333333pt;}
.x0_c00128{left:0.000000pt;}
.x92_c00128{left:26.265040pt;}
.xb9_c00128{left:56.498876pt;}
.x2e_c00128{left:60.720000pt;}
.x60_c00128{left:63.948000pt;}
.x1c_c00128{left:67.440000pt;}
.xa1_c00128{left:68.536520pt;}
.x77_c00128{left:70.444637pt;}
.x11_c00128{left:72.240000pt;}
.x82_c00128{left:73.817207pt;}
.xba_c00128{left:76.193808pt;}
.x24_c00128{left:85.440000pt;}
.x3c_c00128{left:87.840000pt;}
.x12_c00128{left:89.040000pt;}
.x9c_c00128{left:90.096115pt;}
.xab_c00128{left:91.068873pt;}
.x78_c00128{left:96.357743pt;}
.x7d_c00128{left:98.037840pt;}
.xac_c00128{left:110.749679pt;}
.x56_c00128{left:113.362667pt;}
.x3d_c00128{left:117.600000pt;}
.x97_c00128{left:119.613083pt;}
.x83_c00128{left:121.337207pt;}
.x25_c00128{left:123.600000pt;}
.x2f_c00128{left:125.760000pt;}
.x13_c00128{left:127.920000pt;}
.x8c_c00128{left:129.978667pt;}
.xa6_c00128{left:132.613859pt;}
.xbb_c00128{left:138.301127pt;}
.x61_c00128{left:139.314667pt;}
.x79_c00128{left:142.010668pt;}
.x8e_c00128{left:147.010209pt;}
.x8a_c00128{left:148.869785pt;}
.x1d_c00128{left:150.480000pt;}
.x36_c00128{left:153.360000pt;}
.x98_c00128{left:157.279413pt;}
.x59_c00128{left:158.400000pt;}
.xe_c00128{left:160.166513pt;}
.x62_c00128{left:161.892000pt;}
.x50_c00128{left:164.880000pt;}
.x26_c00128{left:165.840000pt;}
.x70_c00128{left:167.161333pt;}
.x7a_c00128{left:169.573083pt;}
.x8_c00128{left:170.880080pt;}
.x84_c00128{left:174.861207pt;}
.x3e_c00128{left:177.600000pt;}
.x1e_c00128{left:179.040000pt;}
.x57_c00128{left:180.573333pt;}
.xa2_c00128{left:181.541785pt;}
.x71_c00128{left:183.986667pt;}
.x27_c00128{left:186.240000pt;}
.x47_c00128{left:187.200000pt;}
.x9_c00128{left:188.880917pt;}
.x1_c00128{left:190.233333pt;}
.x14_c00128{left:191.280000pt;}
.x5a_c00128{left:193.680000pt;}
.xad_c00128{left:196.426041pt;}
.x3f_c00128{left:199.920000pt;}
.x58_c00128{left:200.969333pt;}
.x6c_c00128{left:205.098667pt;}
.x37_c00128{left:209.760000pt;}
.x51_c00128{left:210.720000pt;}
.x28_c00128{left:211.680000pt;}
.x48_c00128{left:214.320000pt;}
.x5b_c00128{left:215.520000pt;}
.xbc_c00128{left:217.232867pt;}
.xa7_c00128{left:218.988084pt;}
.xf_c00128{left:220.543845pt;}
.x40_c00128{left:223.440000pt;}
.x8f_c00128{left:225.000168pt;}
.xb5_c00128{left:226.164153pt;}
.x7f_c00128{left:231.503295pt;}
.x7e_c00128{left:232.700616pt;}
.x1f_c00128{left:234.000000pt;}
.x2_c00128{left:239.174667pt;}
.x63_c00128{left:240.149333pt;}
.x15_c00128{left:241.680000pt;}
.x93_c00128{left:242.803819pt;}
.x5c_c00128{left:244.800000pt;}
.x85_c00128{left:247.099873pt;}
.xae_c00128{left:249.032625pt;}
.x20_c00128{left:250.320000pt;}
.xb3_c00128{left:252.578836pt;}
.x52_c00128{left:254.880000pt;}
.x72_c00128{left:256.229333pt;}
.x49_c00128{left:257.520000pt;}
.x6d_c00128{left:260.302667pt;}
.x90_c00128{left:261.263844pt;}
.x64_c00128{left:264.858667pt;}
.xb4_c00128{left:269.390080pt;}
.x4a_c00128{left:271.200000pt;}
.x30_c00128{left:273.840000pt;}
.x38_c00128{left:274.800000pt;}
.x29_c00128{left:277.920000pt;}
.x65_c00128{left:280.230667pt;}
.x16_c00128{left:281.280000pt;}
.x41_c00128{left:282.480000pt;}
.x7b_c00128{left:283.476063pt;}
.x9d_c00128{left:284.462452pt;}
.xbd_c00128{left:286.459789pt;}
.x3_c00128{left:287.676000pt;}
.x7c_c00128{left:291.498657pt;}
.x2a_c00128{left:293.040000pt;}
.x9e_c00128{left:297.233996pt;}
.x21_c00128{left:298.320000pt;}
.xa3_c00128{left:302.738763pt;}
.xaf_c00128{left:305.215113pt;}
.x94_c00128{left:306.852000pt;}
.x39_c00128{left:309.120000pt;}
.x17_c00128{left:310.320000pt;}
.x4b_c00128{left:312.240000pt;}
.xb_c00128{left:314.168083pt;}
.x53_c00128{left:316.800000pt;}
.x73_c00128{left:317.948000pt;}
.x31_c00128{left:321.360000pt;}
.xa_c00128{left:324.009271pt;}
.xb6_c00128{left:326.479641pt;}
.x42_c00128{left:327.600000pt;}
.x4c_c00128{left:330.000000pt;}
.x99_c00128{left:332.779175pt;}
.x69_c00128{left:334.218667pt;}
.xa4_c00128{left:336.349551pt;}
.x66_c00128{left:338.304000pt;}
.x32_c00128{left:339.600000pt;}
.x86_c00128{left:340.955873pt;}
.x4_c00128{left:342.276000pt;}
.x22_c00128{left:344.160000pt;}
.x4d_c00128{left:346.800000pt;}
.x80_c00128{left:347.902239pt;}
.x74_c00128{left:349.832000pt;}
.x43_c00128{left:352.080000pt;}
.xa8_c00128{left:354.361867pt;}
.xa5_c00128{left:356.270164pt;}
.x9a_c00128{left:359.177601pt;}
.x18_c00128{left:360.240000pt;}
.x87_c00128{left:362.314540pt;}
.x2b_c00128{left:366.000000pt;}
.x67_c00128{left:367.069333pt;}
.xb0_c00128{left:368.554731pt;}
.x75_c00128{left:370.709333pt;}
.x54_c00128{left:372.000000pt;}
.x33_c00128{left:376.560000pt;}
.xbe_c00128{left:378.048179pt;}
.x95_c00128{left:381.013335pt;}
.x19_c00128{left:382.320000pt;}
.x8b_c00128{left:385.738599pt;}
.x6e_c00128{left:389.218667pt;}
.x8d_c00128{left:390.640000pt;}
.x9f_c00128{left:391.545267pt;}
.x6a_c00128{left:392.741333pt;}
.xb1_c00128{left:393.946047pt;}
.x44_c00128{left:395.280000pt;}
.x2c_c00128{left:396.480000pt;}
.x3a_c00128{left:399.600000pt;}
.x55_c00128{left:406.080000pt;}
.x5d_c00128{left:408.240000pt;}
.x5_c00128{left:410.814667pt;}
.x6f_c00128{left:412.236000pt;}
.xa9_c00128{left:413.401076pt;}
.xb7_c00128{left:414.555681pt;}
.x88_c00128{left:416.317207pt;}
.xb8_c00128{left:419.270132pt;}
.x23_c00128{left:421.200000pt;}
.x68_c00128{left:422.722667pt;}
.x4e_c00128{left:424.800000pt;}
.x9b_c00128{left:430.451620pt;}
.x76_c00128{left:434.077333pt;}
.x3b_c00128{left:435.120000pt;}
.x81_c00128{left:437.189423pt;}
.x5e_c00128{left:438.240000pt;}
.x34_c00128{left:442.560000pt;}
.xb2_c00128{left:446.765952pt;}
.x96_c00128{left:448.205468pt;}
.x91_c00128{left:452.100795pt;}
.x6_c00128{left:453.761333pt;}
.x45_c00128{left:456.240000pt;}
.x1a_c00128{left:459.840000pt;}
.x6b_c00128{left:461.870667pt;}
.xaa_c00128{left:463.769931pt;}
.x10_c00128{left:465.729115pt;}
.x2d_c00128{left:467.520000pt;}
.x35_c00128{left:470.400000pt;}
.xc_c00128{left:471.617801pt;}
.x5f_c00128{left:472.800000pt;}
.x89_c00128{left:473.707873pt;}
.x4f_c00128{left:475.200000pt;}
.x46_c00128{left:477.360000pt;}
.xa0_c00128{left:479.199444pt;}
.x7_c00128{left:481.130667pt;}
.x1b_c00128{left:484.560000pt;}
.xd_c00128{left:504.500443pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m77_c00129{transform:matrix(0.095109,0.001046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.095109,0.001046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.095109,0.001046,-0.002750,0.249985,0,0);}
.mec_c00129{transform:matrix(0.096462,0.002315,-0.005998,0.249928,0,0);-ms-transform:matrix(0.096462,0.002315,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.096462,0.002315,-0.005998,0.249928,0,0);}
.ma2_c00129{transform:matrix(0.104662,0.001675,-0.003999,0.249968,0,0);-ms-transform:matrix(0.104662,0.001675,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.104662,0.001675,-0.003999,0.249968,0,0);}
.m11e_c00129{transform:matrix(0.112302,0.002021,-0.004499,0.249960,0,0);-ms-transform:matrix(0.112302,0.002021,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.112302,0.002021,-0.004499,0.249960,0,0);}
.m177_c00129{transform:matrix(0.115536,0.002080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.115536,0.002080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.115536,0.002080,-0.004499,0.249960,0,0);}
.m137_c00129{transform:matrix(0.130999,0.002358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130999,0.002358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130999,0.002358,-0.004499,0.249960,0,0);}
.m65_c00129{transform:matrix(0.132687,0.001460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132687,0.001460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132687,0.001460,-0.002750,0.249985,0,0);}
.m75_c00129{transform:matrix(0.137742,0.001515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.137742,0.001515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.137742,0.001515,-0.002750,0.249985,0,0);}
.m86_c00129{transform:matrix(0.140536,0.001546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140536,0.001546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140536,0.001546,-0.002750,0.249985,0,0);}
.m3d_c00129{transform:matrix(0.143696,0.001581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143696,0.001581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143696,0.001581,-0.002750,0.249985,0,0);}
.m7b_c00129{transform:matrix(0.143726,0.001581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143726,0.001581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143726,0.001581,-0.002750,0.249985,0,0);}
.mc_c00129{transform:matrix(0.144861,0.001593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144861,0.001593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144861,0.001593,-0.002750,0.249985,0,0);}
.me0_c00129{transform:matrix(0.144903,0.003478,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144903,0.003478,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144903,0.003478,-0.005998,0.249928,0,0);}
.mfa_c00129{transform:matrix(0.145853,0.003500,-0.005998,0.249928,0,0);-ms-transform:matrix(0.145853,0.003500,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.145853,0.003500,-0.005998,0.249928,0,0);}
.m92_c00129{transform:matrix(0.145866,0.002334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145866,0.002334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145866,0.002334,-0.003999,0.249968,0,0);}
.m24_c00129{transform:matrix(0.145876,0.001605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145876,0.001605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145876,0.001605,-0.002750,0.249985,0,0);}
.mf5_c00129{transform:matrix(0.146133,0.003507,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146133,0.003507,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146133,0.003507,-0.005998,0.249928,0,0);}
.me3_c00129{transform:matrix(0.146358,0.003513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146358,0.003513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146358,0.003513,-0.005998,0.249928,0,0);}
.mff_c00129{transform:matrix(0.147408,0.003538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.147408,0.003538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.147408,0.003538,-0.005998,0.249928,0,0);}
.m61_c00129{transform:matrix(0.148096,0.001629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148096,0.001629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148096,0.001629,-0.002750,0.249985,0,0);}
.m18_c00129{transform:matrix(0.149116,0.001640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149116,0.001640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149116,0.001640,-0.002750,0.249985,0,0);}
.m41_c00129{transform:matrix(0.150281,0.001653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150281,0.001653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150281,0.001653,-0.002750,0.249985,0,0);}
.m4b_c00129{transform:matrix(0.150381,0.001654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150381,0.001654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150381,0.001654,-0.002750,0.249985,0,0);}
.m122_c00129{transform:matrix(0.151590,0.002729,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151590,0.002729,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151590,0.002729,-0.004499,0.249960,0,0);}
.m123_c00129{transform:matrix(0.152050,0.002737,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152050,0.002737,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152050,0.002737,-0.004499,0.249960,0,0);}
.mad_c00129{transform:matrix(0.152898,0.002599,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152898,0.002599,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152898,0.002599,-0.004249,0.249964,0,0);}
.m66_c00129{transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);}
.m175_c00129{transform:matrix(0.153975,0.002772,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153975,0.002772,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153975,0.002772,-0.004499,0.249960,0,0);}
.mc5_c00129{transform:matrix(0.155250,0.003726,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155250,0.003726,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155250,0.003726,-0.005998,0.249928,0,0);}
.m34_c00129{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);}
.m3e_c00129{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);}
.mb7_c00129{transform:matrix(0.156642,0.002663,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156642,0.002663,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156642,0.002663,-0.004249,0.249964,0,0);}
.m7a_c00129{transform:matrix(0.157395,0.001731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157395,0.001731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157395,0.001731,-0.002750,0.249985,0,0);}
.m0_c00129{transform:matrix(0.157545,0.001733,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157545,0.001733,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157545,0.001733,-0.002750,0.249985,0,0);}
.m6d_c00129{transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);}
.m4e_c00129{transform:matrix(0.157945,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157945,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157945,0.001737,-0.002750,0.249985,0,0);}
.m29_c00129{transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);}
.mde_c00129{transform:matrix(0.158654,0.003808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158654,0.003808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158654,0.003808,-0.005998,0.249928,0,0);}
.m16c_c00129{transform:matrix(0.158834,0.002859,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158834,0.002859,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158834,0.002859,-0.004499,0.249960,0,0);}
.m3c_c00129{transform:matrix(0.159420,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159420,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159420,0.001754,-0.002750,0.249985,0,0);}
.mc2_c00129{transform:matrix(0.160007,0.002720,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160007,0.002720,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160007,0.002720,-0.004249,0.249964,0,0);}
.m2c_c00129{transform:matrix(0.160295,0.001763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160295,0.001763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160295,0.001763,-0.002750,0.249985,0,0);}
.mf6_c00129{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);}
.me5_c00129{transform:matrix(0.160594,0.003854,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160594,0.003854,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160594,0.003854,-0.005998,0.249928,0,0);}
.m9b_c00129{transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);}
.mef_c00129{transform:matrix(0.160744,0.003858,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160744,0.003858,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160744,0.003858,-0.005998,0.249928,0,0);}
.maf_c00129{transform:matrix(0.161182,0.002740,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161182,0.002740,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161182,0.002740,-0.004249,0.249964,0,0);}
.m16b_c00129{transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);}
.m88_c00129{transform:matrix(0.161835,0.001780,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161835,0.001780,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161835,0.001780,-0.002750,0.249985,0,0);}
.m58_c00129{transform:matrix(0.162220,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162220,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162220,0.001784,-0.002750,0.249985,0,0);}
.m2f_c00129{transform:matrix(0.162280,0.001785,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162280,0.001785,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162280,0.001785,-0.002750,0.249985,0,0);}
.m16a_c00129{transform:matrix(0.162629,0.002927,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162629,0.002927,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162629,0.002927,-0.004499,0.249960,0,0);}
.m91_c00129{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);}
.m120_c00129{transform:matrix(0.163549,0.002944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163549,0.002944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163549,0.002944,-0.004499,0.249960,0,0);}
.m51_c00129{transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163710,0.001801,-0.002750,0.249985,0,0);}
.m4a_c00129{transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);}
.mc7_c00129{transform:matrix(0.163828,0.003932,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163828,0.003932,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163828,0.003932,-0.005998,0.249928,0,0);}
.ma5_c00129{transform:matrix(0.164224,0.002628,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164224,0.002628,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164224,0.002628,-0.003999,0.249968,0,0);}
.mb2_c00129{transform:matrix(0.164766,0.002801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164766,0.002801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164766,0.002801,-0.004249,0.249964,0,0);}
.m9a_c00129{transform:matrix(0.165609,0.002650,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165609,0.002650,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165609,0.002650,-0.003999,0.249968,0,0);}
.m19_c00129{transform:matrix(0.166005,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166005,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166005,0.001826,-0.002750,0.249985,0,0);}
.m47_c00129{transform:matrix(0.167090,0.001838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167090,0.001838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167090,0.001838,-0.002750,0.249985,0,0);}
.m129_c00129{transform:matrix(0.167243,0.003010,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167243,0.003010,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167243,0.003010,-0.004499,0.249960,0,0);}
.m124_c00129{transform:matrix(0.167473,0.003015,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167473,0.003015,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167473,0.003015,-0.004499,0.249960,0,0);}
.m128_c00129{transform:matrix(0.167538,0.003016,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167538,0.003016,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167538,0.003016,-0.004499,0.249960,0,0);}
.me1_c00129{transform:matrix(0.167987,0.004032,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167987,0.004032,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167987,0.004032,-0.005998,0.249928,0,0);}
.m55_c00129{transform:matrix(0.168560,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168560,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168560,0.001854,-0.002750,0.249985,0,0);}
.m26_c00129{transform:matrix(0.168920,0.001858,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168920,0.001858,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168920,0.001858,-0.002750,0.249985,0,0);}
.mf1_c00129{transform:matrix(0.169001,0.004056,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169001,0.004056,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169001,0.004056,-0.005998,0.249928,0,0);}
.m15f_c00129{transform:matrix(0.169018,0.003042,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169018,0.003042,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169018,0.003042,-0.004499,0.249960,0,0);}
.m67_c00129{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);}
.m30_c00129{transform:matrix(0.169425,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169425,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169425,0.001864,-0.002750,0.249985,0,0);}
.m14_c00129{transform:matrix(0.169570,0.001865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169570,0.001865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169570,0.001865,-0.002750,0.249985,0,0);}
.md5_c00129{transform:matrix(0.170106,0.004083,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170106,0.004083,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170106,0.004083,-0.005998,0.249928,0,0);}
.m27_c00129{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);}
.m15c_c00129{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);}
.m73_c00129{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);}
.m57_c00129{transform:matrix(0.171120,0.001882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171120,0.001882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171120,0.001882,-0.002750,0.249985,0,0);}
.m6a_c00129{transform:matrix(0.171565,0.001887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171565,0.001887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171565,0.001887,-0.002750,0.249985,0,0);}
.m6_c00129{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);}
.m46_c00129{transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);}
.m4f_c00129{transform:matrix(0.171935,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171935,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171935,0.001891,-0.002750,0.249985,0,0);}
.m99_c00129{transform:matrix(0.172148,0.002754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172148,0.002754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172148,0.002754,-0.003999,0.249968,0,0);}
.m161_c00129{transform:matrix(0.172487,0.003105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172487,0.003105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172487,0.003105,-0.004499,0.249960,0,0);}
.m5f_c00129{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);}
.m97_c00129{transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);}
.m6f_c00129{transform:matrix(0.173040,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173040,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173040,0.001903,-0.002750,0.249985,0,0);}
.m37_c00129{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);}
.ma4_c00129{transform:matrix(0.173868,0.002782,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173868,0.002782,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173868,0.002782,-0.003999,0.249968,0,0);}
.m151_c00129{transform:matrix(0.173912,0.003130,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173912,0.003130,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173912,0.003130,-0.004499,0.249960,0,0);}
.m5c_c00129{transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174324,0.001918,-0.002750,0.249985,0,0);}
.m121_c00129{transform:matrix(0.174577,0.003142,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174577,0.003142,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174577,0.003142,-0.004499,0.249960,0,0);}
.m15d_c00129{transform:matrix(0.174942,0.003149,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174942,0.003149,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174942,0.003149,-0.004499,0.249960,0,0);}
.m1_c00129{transform:matrix(0.175239,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175239,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175239,0.001928,-0.002750,0.249985,0,0);}
.m6e_c00129{transform:matrix(0.175814,0.001934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175814,0.001934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175814,0.001934,-0.002750,0.249985,0,0);}
.me9_c00129{transform:matrix(0.175894,0.004221,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175894,0.004221,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175894,0.004221,-0.005998,0.249928,0,0);}
.m1b_c00129{transform:matrix(0.176229,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176229,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176229,0.001939,-0.002750,0.249985,0,0);}
.m5e_c00129{transform:matrix(0.176254,0.001939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176254,0.001939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176254,0.001939,-0.002750,0.249985,0,0);}
.m4d_c00129{transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);}
.mdd_c00129{transform:matrix(0.176619,0.004239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176619,0.004239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176619,0.004239,-0.005998,0.249928,0,0);}
.mee_c00129{transform:matrix(0.177154,0.004252,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177154,0.004252,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177154,0.004252,-0.005998,0.249928,0,0);}
.m144_c00129{transform:matrix(0.177401,0.003193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177401,0.003193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177401,0.003193,-0.004499,0.249960,0,0);}
.m76_c00129{transform:matrix(0.177409,0.001952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177409,0.001952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177409,0.001952,-0.002750,0.249985,0,0);}
.m82_c00129{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);}
.m111_c00129{transform:matrix(0.178554,0.004285,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178554,0.004285,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178554,0.004285,-0.005998,0.249928,0,0);}
.m133_c00129{transform:matrix(0.179166,0.003225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179166,0.003225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179166,0.003225,-0.004499,0.249960,0,0);}
.m1e_c00129{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);}
.mb4_c00129{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);}
.m23_c00129{transform:matrix(0.179459,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179459,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179459,0.001974,-0.002750,0.249985,0,0);}
.m172_c00129{transform:matrix(0.179731,0.003235,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179731,0.003235,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179731,0.003235,-0.004499,0.249960,0,0);}
.maa_c00129{transform:matrix(0.179832,0.002877,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179832,0.002877,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179832,0.002877,-0.003999,0.249968,0,0);}
.m11_c00129{transform:matrix(0.180039,0.001980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180039,0.001980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180039,0.001980,-0.002750,0.249985,0,0);}
.m43_c00129{transform:matrix(0.180259,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180259,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180259,0.001983,-0.002750,0.249985,0,0);}
.me4_c00129{transform:matrix(0.180298,0.004327,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180298,0.004327,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180298,0.004327,-0.005998,0.249928,0,0);}
.m15e_c00129{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);}
.mfb_c00129{transform:matrix(0.180378,0.004329,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180378,0.004329,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180378,0.004329,-0.005998,0.249928,0,0);}
.mba_c00129{transform:matrix(0.181134,0.003079,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181134,0.003079,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181134,0.003079,-0.004249,0.249964,0,0);}
.m4_c00129{transform:matrix(0.181509,0.001997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181509,0.001997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181509,0.001997,-0.002750,0.249985,0,0);}
.m16_c00129{transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);}
.mb1_c00129{transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);}
.m56_c00129{transform:matrix(0.182029,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182029,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182029,0.002002,-0.002750,0.249985,0,0);}
.mb8_c00129{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);}
.mf2_c00129{transform:matrix(0.182332,0.004376,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182332,0.004376,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182332,0.004376,-0.005998,0.249928,0,0);}
.m13a_c00129{transform:matrix(0.182360,0.003282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182360,0.003282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182360,0.003282,-0.004499,0.249960,0,0);}
.m15_c00129{transform:matrix(0.183274,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183274,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183274,0.002016,-0.002750,0.249985,0,0);}
.m13_c00129{transform:matrix(0.183289,0.002016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183289,0.002016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183289,0.002016,-0.002750,0.249985,0,0);}
.m11c_c00129{transform:matrix(0.183860,0.003309,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183860,0.003309,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183860,0.003309,-0.004499,0.249960,0,0);}
.mfd_c00129{transform:matrix(0.183937,0.004414,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183937,0.004414,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183937,0.004414,-0.005998,0.249928,0,0);}
.ma6_c00129{transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);}
.m118_c00129{transform:matrix(0.184335,0.003318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184335,0.003318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184335,0.003318,-0.004499,0.249960,0,0);}
.m2d_c00129{transform:matrix(0.184444,0.002029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184444,0.002029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184444,0.002029,-0.002750,0.249985,0,0);}
.m40_c00129{transform:matrix(0.184474,0.002029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184474,0.002029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184474,0.002029,-0.002750,0.249985,0,0);}
.mb9_c00129{transform:matrix(0.184808,0.003142,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184808,0.003142,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184808,0.003142,-0.004249,0.249964,0,0);}
.m167_c00129{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);}
.m3b_c00129{transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);}
.m42_c00129{transform:matrix(0.185099,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185099,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185099,0.002036,-0.002750,0.249985,0,0);}
.m4c_c00129{transform:matrix(0.185134,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185134,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185134,0.002036,-0.002750,0.249985,0,0);}
.md2_c00129{transform:matrix(0.185332,0.004448,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185332,0.004448,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185332,0.004448,-0.005998,0.249928,0,0);}
.m174_c00129{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);}
.m145_c00129{transform:matrix(0.186495,0.003357,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186495,0.003357,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186495,0.003357,-0.004499,0.249960,0,0);}
.mb0_c00129{transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);}
.m1c_c00129{transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);}
.m6c_c00129{transform:matrix(0.187379,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187379,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187379,0.002061,-0.002750,0.249985,0,0);}
.m54_c00129{transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);}
.m83_c00129{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);}
.me7_c00129{transform:matrix(0.187896,0.004510,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187896,0.004510,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187896,0.004510,-0.005998,0.249928,0,0);}
.m49_c00129{transform:matrix(0.188149,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188149,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188149,0.002070,-0.002750,0.249985,0,0);}
.m7c_c00129{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);}
.m39_c00129{transform:matrix(0.189024,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189024,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189024,0.002079,-0.002750,0.249985,0,0);}
.m69_c00129{transform:matrix(0.189384,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189384,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189384,0.002083,-0.002750,0.249985,0,0);}
.m114_c00129{transform:matrix(0.189394,0.003409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189394,0.003409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189394,0.003409,-0.004499,0.249960,0,0);}
.mb6_c00129{transform:matrix(0.189408,0.003220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189408,0.003220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189408,0.003220,-0.004249,0.249964,0,0);}
.m170_c00129{transform:matrix(0.189479,0.003411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189479,0.003411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189479,0.003411,-0.004499,0.249960,0,0);}
.mdb_c00129{transform:matrix(0.189480,0.004548,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189480,0.004548,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189480,0.004548,-0.005998,0.249928,0,0);}
.m12d_c00129{transform:matrix(0.189569,0.003412,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189569,0.003412,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189569,0.003412,-0.004499,0.249960,0,0);}
.m101_c00129{transform:matrix(0.189570,0.004550,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189570,0.004550,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189570,0.004550,-0.005998,0.249928,0,0);}
.m21_c00129{transform:matrix(0.189954,0.002089,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189954,0.002089,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189954,0.002089,-0.002750,0.249985,0,0);}
.m3a_c00129{transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);}
.m81_c00129{transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);}
.m135_c00129{transform:matrix(0.190774,0.003434,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190774,0.003434,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190774,0.003434,-0.004499,0.249960,0,0);}
.mc0_c00129{transform:matrix(0.191547,0.003256,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191547,0.003256,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191547,0.003256,-0.004249,0.249964,0,0);}
.m68_c00129{transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);}
.m48_c00129{transform:matrix(0.192238,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192238,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192238,0.002115,-0.002750,0.249985,0,0);}
.mda_c00129{transform:matrix(0.192255,0.004614,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192255,0.004614,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192255,0.004614,-0.005998,0.249928,0,0);}
.m143_c00129{transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192494,0.003465,-0.004499,0.249960,0,0);}
.mf8_c00129{transform:matrix(0.192764,0.004626,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192764,0.004626,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192764,0.004626,-0.005998,0.249928,0,0);}
.m7f_c00129{transform:matrix(0.192848,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192848,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192848,0.002121,-0.002750,0.249985,0,0);}
.m31_c00129{transform:matrix(0.192883,0.002122,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192883,0.002122,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192883,0.002122,-0.002750,0.249985,0,0);}
.m98_c00129{transform:matrix(0.192905,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192905,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192905,0.003086,-0.003999,0.249968,0,0);}
.m59_c00129{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);}
.m16d_c00129{transform:matrix(0.192974,0.003474,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192974,0.003474,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192974,0.003474,-0.004499,0.249960,0,0);}
.m131_c00129{transform:matrix(0.193314,0.003480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193314,0.003480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193314,0.003480,-0.004499,0.249960,0,0);}
.m80_c00129{transform:matrix(0.193423,0.002128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193423,0.002128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193423,0.002128,-0.002750,0.249985,0,0);}
.m159_c00129{transform:matrix(0.193424,0.003482,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193424,0.003482,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193424,0.003482,-0.004499,0.249960,0,0);}
.m70_c00129{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);}
.m103_c00129{transform:matrix(0.193949,0.004655,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193949,0.004655,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193949,0.004655,-0.005998,0.249928,0,0);}
.m17_c00129{transform:matrix(0.193998,0.002134,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193998,0.002134,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193998,0.002134,-0.002750,0.249985,0,0);}
.m176_c00129{transform:matrix(0.194049,0.003493,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194049,0.003493,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194049,0.003493,-0.004499,0.249960,0,0);}
.m16f_c00129{transform:matrix(0.194339,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194339,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194339,0.003498,-0.004499,0.249960,0,0);}
.m90_c00129{transform:matrix(0.194798,0.002143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194798,0.002143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194798,0.002143,-0.002750,0.249985,0,0);}
.me2_c00129{transform:matrix(0.195099,0.004682,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195099,0.004682,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195099,0.004682,-0.005998,0.249928,0,0);}
.m7_c00129{transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);}
.m12b_c00129{transform:matrix(0.195898,0.003526,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195898,0.003526,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195898,0.003526,-0.004499,0.249960,0,0);}
.m33_c00129{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);}
.m13c_c00129{transform:matrix(0.196078,0.003529,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196078,0.003529,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196078,0.003529,-0.004499,0.249960,0,0);}
.md8_c00129{transform:matrix(0.196363,0.004713,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196363,0.004713,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196363,0.004713,-0.005998,0.249928,0,0);}
.m11f_c00129{transform:matrix(0.196408,0.003535,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196408,0.003535,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196408,0.003535,-0.004499,0.249960,0,0);}
.mf_c00129{transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);}
.m44_c00129{transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);}
.ma0_c00129{transform:matrix(0.197395,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197395,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197395,0.003158,-0.003999,0.249968,0,0);}
.m110_c00129{transform:matrix(0.197498,0.004740,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197498,0.004740,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197498,0.004740,-0.005998,0.249928,0,0);}
.m130_c00129{transform:matrix(0.197533,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197533,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197533,0.003556,-0.004499,0.249960,0,0);}
.m8e_c00129{transform:matrix(0.197793,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197793,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197793,0.002176,-0.002750,0.249985,0,0);}
.m132_c00129{transform:matrix(0.197838,0.003561,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197838,0.003561,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197838,0.003561,-0.004499,0.249960,0,0);}
.m179_c00129{transform:matrix(0.197873,0.003562,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197873,0.003562,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197873,0.003562,-0.004499,0.249960,0,0);}
.m72_c00129{transform:matrix(0.197903,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197903,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197903,0.002177,-0.002750,0.249985,0,0);}
.m5d_c00129{transform:matrix(0.197938,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197938,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197938,0.002177,-0.002750,0.249985,0,0);}
.m12f_c00129{transform:matrix(0.198208,0.003568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198208,0.003568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198208,0.003568,-0.004499,0.249960,0,0);}
.m2a_c00129{transform:matrix(0.198313,0.002181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198313,0.002181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198313,0.002181,-0.002750,0.249985,0,0);}
.m8c_c00129{transform:matrix(0.198333,0.002182,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198333,0.002182,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198333,0.002182,-0.002750,0.249985,0,0);}
.ma1_c00129{transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);}
.m60_c00129{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);}
.m100_c00129{transform:matrix(0.199288,0.004783,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199288,0.004783,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199288,0.004783,-0.005998,0.249928,0,0);}
.m63_c00129{transform:matrix(0.199373,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199373,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199373,0.002193,-0.002750,0.249985,0,0);}
.m8d_c00129{transform:matrix(0.199778,0.002198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199778,0.002198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199778,0.002198,-0.002750,0.249985,0,0);}
.m52_c00129{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);}
.m1a_c00129{transform:matrix(0.199888,0.002199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199888,0.002199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199888,0.002199,-0.002750,0.249985,0,0);}
.m12_c00129{transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);}
.mae_c00129{transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);}
.mf0_c00129{transform:matrix(0.200377,0.004809,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200377,0.004809,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200377,0.004809,-0.005998,0.249928,0,0);}
.mcd_c00129{transform:matrix(0.200692,0.004817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200692,0.004817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200692,0.004817,-0.005998,0.249928,0,0);}
.m13e_c00129{transform:matrix(0.200767,0.003614,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200767,0.003614,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200767,0.003614,-0.004499,0.249960,0,0);}
.me_c00129{transform:matrix(0.200853,0.002209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200853,0.002209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200853,0.002209,-0.002750,0.249985,0,0);}
.mbe_c00129{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);}
.mdc_c00129{transform:matrix(0.201712,0.004841,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201712,0.004841,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201712,0.004841,-0.005998,0.249928,0,0);}
.m106_c00129{transform:matrix(0.201722,0.004841,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201722,0.004841,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201722,0.004841,-0.005998,0.249928,0,0);}
.m53_c00129{transform:matrix(0.201723,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201723,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201723,0.002219,-0.002750,0.249985,0,0);}
.m166_c00129{transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);}
.m160_c00129{transform:matrix(0.202007,0.003636,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202007,0.003636,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202007,0.003636,-0.004499,0.249960,0,0);}
.m3_c00129{transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202068,0.002223,-0.002750,0.249985,0,0);}
.m156_c00129{transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);}
.m116_c00129{transform:matrix(0.202677,0.003648,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202677,0.003648,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202677,0.003648,-0.004499,0.249960,0,0);}
.m11b_c00129{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);}
.m93_c00129{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);}
.m50_c00129{transform:matrix(0.202868,0.002232,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202868,0.002232,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202868,0.002232,-0.002750,0.249985,0,0);}
.mf3_c00129{transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);}
.mf4_c00129{transform:matrix(0.202967,0.004871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202967,0.004871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202967,0.004871,-0.005998,0.249928,0,0);}
.mcc_c00129{transform:matrix(0.203022,0.004873,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203022,0.004873,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203022,0.004873,-0.005998,0.249928,0,0);}
.m74_c00129{transform:matrix(0.203038,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203038,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203038,0.002233,-0.002750,0.249985,0,0);}
.m89_c00129{transform:matrix(0.203483,0.002238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203483,0.002238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203483,0.002238,-0.002750,0.249985,0,0);}
.m155_c00129{transform:matrix(0.203687,0.003666,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203687,0.003666,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203687,0.003666,-0.004499,0.249960,0,0);}
.md7_c00129{transform:matrix(0.204041,0.004897,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204041,0.004897,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204041,0.004897,-0.005998,0.249928,0,0);}
.m165_c00129{transform:matrix(0.204057,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204057,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204057,0.003673,-0.004499,0.249960,0,0);}
.mb_c00129{transform:matrix(0.204068,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204068,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204068,0.002245,-0.002750,0.249985,0,0);}
.m109_c00129{transform:matrix(0.204556,0.004909,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204556,0.004909,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204556,0.004909,-0.005998,0.249928,0,0);}
.m134_c00129{transform:matrix(0.204712,0.003685,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204712,0.003685,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204712,0.003685,-0.004499,0.249960,0,0);}
.m35_c00129{transform:matrix(0.204968,0.002255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204968,0.002255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204968,0.002255,-0.002750,0.249985,0,0);}
.m36_c00129{transform:matrix(0.205708,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205708,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205708,0.002263,-0.002750,0.249985,0,0);}
.m8f_c00129{transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);}
.mbb_c00129{transform:matrix(0.206000,0.003502,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206000,0.003502,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206000,0.003502,-0.004249,0.249964,0,0);}
.m10f_c00129{transform:matrix(0.206116,0.004947,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206116,0.004947,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206116,0.004947,-0.005998,0.249928,0,0);}
.m1d_c00129{transform:matrix(0.206373,0.002270,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206373,0.002270,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206373,0.002270,-0.002750,0.249985,0,0);}
.m10d_c00129{transform:matrix(0.207220,0.004973,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207220,0.004973,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207220,0.004973,-0.005998,0.249928,0,0);}
.m11a_c00129{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);}
.m14b_c00129{transform:matrix(0.207581,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207581,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207581,0.003736,-0.004499,0.249960,0,0);}
.m136_c00129{transform:matrix(0.207681,0.003738,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207681,0.003738,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207681,0.003738,-0.004499,0.249960,0,0);}
.m119_c00129{transform:matrix(0.208141,0.003747,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208141,0.003747,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208141,0.003747,-0.004499,0.249960,0,0);}
.md4_c00129{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);}
.m115_c00129{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);}
.mbf_c00129{transform:matrix(0.208990,0.003553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208990,0.003553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208990,0.003553,-0.004249,0.249964,0,0);}
.m171_c00129{transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);}
.m6b_c00129{transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);}
.m9_c00129{transform:matrix(0.209997,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209997,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209997,0.002310,-0.002750,0.249985,0,0);}
.m2b_c00129{transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);}
.m142_c00129{transform:matrix(0.211381,0.003805,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211381,0.003805,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211381,0.003805,-0.004499,0.249960,0,0);}
.mf7_c00129{transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);}
.mab_c00129{transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);}
.m10_c00129{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);}
.m157_c00129{transform:matrix(0.213050,0.003835,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213050,0.003835,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213050,0.003835,-0.004499,0.249960,0,0);}
.m117_c00129{transform:matrix(0.214910,0.003868,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214910,0.003868,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214910,0.003868,-0.004499,0.249960,0,0);}
.m3f_c00129{transform:matrix(0.215502,0.002371,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215502,0.002371,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215502,0.002371,-0.002750,0.249985,0,0);}
.mc6_c00129{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);}
.md6_c00129{transform:matrix(0.215898,0.005182,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215898,0.005182,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215898,0.005182,-0.005998,0.249928,0,0);}
.m2e_c00129{transform:matrix(0.216182,0.002378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216182,0.002378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216182,0.002378,-0.002750,0.249985,0,0);}
.mb5_c00129{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);}
.m139_c00129{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);}
.ma7_c00129{transform:matrix(0.218847,0.003502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218847,0.003502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218847,0.003502,-0.003999,0.249968,0,0);}
.m102_c00129{transform:matrix(0.218942,0.005255,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218942,0.005255,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218942,0.005255,-0.005998,0.249928,0,0);}
.md9_c00129{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);}
.md_c00129{transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);}
.m17b_c00129{transform:matrix(0.220199,0.003964,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220199,0.003964,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220199,0.003964,-0.004499,0.249960,0,0);}
.m104_c00129{transform:matrix(0.220786,0.005299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220786,0.005299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220786,0.005299,-0.005998,0.249928,0,0);}
.m15a_c00129{transform:matrix(0.221564,0.003988,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221564,0.003988,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221564,0.003988,-0.004499,0.249960,0,0);}
.m10b_c00129{transform:matrix(0.222981,0.005352,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222981,0.005352,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222981,0.005352,-0.005998,0.249928,0,0);}
.m152_c00129{transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);}
.m10e_c00129{transform:matrix(0.223266,0.005358,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223266,0.005358,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223266,0.005358,-0.005998,0.249928,0,0);}
.mb3_c00129{transform:matrix(0.223713,0.003803,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223713,0.003803,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223713,0.003803,-0.004249,0.249964,0,0);}
.m141_c00129{transform:matrix(0.223794,0.004028,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223794,0.004028,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223794,0.004028,-0.004499,0.249960,0,0);}
.m14f_c00129{transform:matrix(0.224219,0.004036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224219,0.004036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224219,0.004036,-0.004499,0.249960,0,0);}
.ma9_c00129{transform:matrix(0.224791,0.003597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224791,0.003597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224791,0.003597,-0.003999,0.249968,0,0);}
.m12e_c00129{transform:matrix(0.225029,0.004051,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225029,0.004051,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225029,0.004051,-0.004499,0.249960,0,0);}
.m1f_c00129{transform:matrix(0.225561,0.002481,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225561,0.002481,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225561,0.002481,-0.002750,0.249985,0,0);}
.m9d_c00129{transform:matrix(0.225686,0.003611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225686,0.003611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225686,0.003611,-0.003999,0.249968,0,0);}
.m2_c00129{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);}
.m7e_c00129{transform:matrix(0.225901,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225901,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225901,0.002485,-0.002750,0.249985,0,0);}
.m45_c00129{transform:matrix(0.225931,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225931,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225931,0.002485,-0.002750,0.249985,0,0);}
.m15b_c00129{transform:matrix(0.226103,0.004070,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226103,0.004070,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226103,0.004070,-0.004499,0.249960,0,0);}
.m158_c00129{transform:matrix(0.226493,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226493,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226493,0.004077,-0.004499,0.249960,0,0);}
.m138_c00129{transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);}
.mcf_c00129{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);}
.mbc_c00129{transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226917,0.003858,-0.004249,0.249964,0,0);}
.me8_c00129{transform:matrix(0.227619,0.005463,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227619,0.005463,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227619,0.005463,-0.005998,0.249928,0,0);}
.m8b_c00129{transform:matrix(0.228266,0.002511,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228266,0.002511,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228266,0.002511,-0.002750,0.249985,0,0);}
.m126_c00129{transform:matrix(0.228688,0.004116,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228688,0.004116,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228688,0.004116,-0.004499,0.249960,0,0);}
.m64_c00129{transform:matrix(0.229086,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229086,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229086,0.002520,-0.002750,0.249985,0,0);}
.m162_c00129{transform:matrix(0.229158,0.004125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229158,0.004125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229158,0.004125,-0.004499,0.249960,0,0);}
.m87_c00129{transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);}
.ma8_c00129{transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);}
.m95_c00129{transform:matrix(0.232090,0.003713,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232090,0.003713,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232090,0.003713,-0.003999,0.249968,0,0);}
.med_c00129{transform:matrix(0.232118,0.005571,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232118,0.005571,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232118,0.005571,-0.005998,0.249928,0,0);}
.m16e_c00129{transform:matrix(0.232182,0.004179,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232182,0.004179,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232182,0.004179,-0.004499,0.249960,0,0);}
.m13d_c00129{transform:matrix(0.232267,0.004181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232267,0.004181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232267,0.004181,-0.004499,0.249960,0,0);}
.m8_c00129{transform:matrix(0.232676,0.002559,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232676,0.002559,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232676,0.002559,-0.002750,0.249985,0,0);}
.m169_c00129{transform:matrix(0.233127,0.004196,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233127,0.004196,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233127,0.004196,-0.004499,0.249960,0,0);}
.m173_c00129{transform:matrix(0.233362,0.004201,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233362,0.004201,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233362,0.004201,-0.004499,0.249960,0,0);}
.m28_c00129{transform:matrix(0.233396,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233396,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233396,0.002567,-0.002750,0.249985,0,0);}
.m17a_c00129{transform:matrix(0.234277,0.004217,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234277,0.004217,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234277,0.004217,-0.004499,0.249960,0,0);}
.mc1_c00129{transform:matrix(0.234511,0.003987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234511,0.003987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234511,0.003987,-0.004249,0.249964,0,0);}
.mc9_c00129{transform:matrix(0.234842,0.005636,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234842,0.005636,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234842,0.005636,-0.005998,0.249928,0,0);}
.mea_c00129{transform:matrix(0.235157,0.005644,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235157,0.005644,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235157,0.005644,-0.005998,0.249928,0,0);}
.m10c_c00129{transform:matrix(0.235187,0.005644,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235187,0.005644,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235187,0.005644,-0.005998,0.249928,0,0);}
.m20_c00129{transform:matrix(0.235336,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235336,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235336,0.002589,-0.002750,0.249985,0,0);}
.m112_c00129{transform:matrix(0.235607,0.005655,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235607,0.005655,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235607,0.005655,-0.005998,0.249928,0,0);}
.m146_c00129{transform:matrix(0.235757,0.004244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235757,0.004244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235757,0.004244,-0.004499,0.249960,0,0);}
.m164_c00129{transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);}
.m9c_c00129{transform:matrix(0.237555,0.003801,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237555,0.003801,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237555,0.003801,-0.003999,0.249968,0,0);}
.m9e_c00129{transform:matrix(0.237820,0.003805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237820,0.003805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237820,0.003805,-0.003999,0.249968,0,0);}
.m14c_c00129{transform:matrix(0.239146,0.004305,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239146,0.004305,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239146,0.004305,-0.004499,0.249960,0,0);}
.m32_c00129{transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);}
.me6_c00129{transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);}
.m79_c00129{transform:matrix(0.242365,0.002666,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242365,0.002666,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242365,0.002666,-0.002750,0.249985,0,0);}
.m12a_c00129{transform:matrix(0.243146,0.004377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243146,0.004377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243146,0.004377,-0.004499,0.249960,0,0);}
.m113_c00129{transform:matrix(0.243796,0.004388,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243796,0.004388,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243796,0.004388,-0.004499,0.249960,0,0);}
.ma_c00129{transform:matrix(0.243855,0.002682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243855,0.002682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243855,0.002682,-0.002750,0.249985,0,0);}
.m163_c00129{transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);}
.m168_c00129{transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);}
.m127_c00129{transform:matrix(0.246195,0.004432,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246195,0.004432,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246195,0.004432,-0.004499,0.249960,0,0);}
.m105_c00129{transform:matrix(0.246224,0.005909,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246224,0.005909,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246224,0.005909,-0.005998,0.249928,0,0);}
.mac_c00129{transform:matrix(0.246384,0.004189,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246384,0.004189,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246384,0.004189,-0.004249,0.249964,0,0);}
.mfc_c00129{transform:matrix(0.246409,0.005914,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246409,0.005914,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246409,0.005914,-0.005998,0.249928,0,0);}
.m11d_c00129{transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);}
.m10a_c00129{transform:matrix(0.247824,0.005948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247824,0.005948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247824,0.005948,-0.005998,0.249928,0,0);}
.m22_c00129{transform:matrix(0.248175,0.002730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248175,0.002730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248175,0.002730,-0.002750,0.249985,0,0);}
.m7d_c00129{transform:matrix(0.249735,0.002747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249735,0.002747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249735,0.002747,-0.002750,0.249985,0,0);}
.m71_c00129{transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);}
.m96_c00129{transform:matrix(0.249993,0.004000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249993,0.004000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249993,0.004000,-0.003999,0.249968,0,0);}
.mca_c00129{transform:matrix(0.251872,0.006045,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251872,0.006045,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251872,0.006045,-0.005998,0.249928,0,0);}
.m5a_c00129{transform:matrix(0.252440,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252440,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252440,0.002777,-0.002750,0.249985,0,0);}
.m8a_c00129{transform:matrix(0.252565,0.002778,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252565,0.002778,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252565,0.002778,-0.002750,0.249985,0,0);}
.mc8_c00129{transform:matrix(0.253162,0.006076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253162,0.006076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253162,0.006076,-0.005998,0.249928,0,0);}
.m78_c00129{transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253500,0.002788,-0.002750,0.249985,0,0);}
.m25_c00129{transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);}
.m5_c00129{transform:matrix(0.256999,0.002827,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256999,0.002827,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256999,0.002827,-0.002750,0.249985,0,0);}
.m140_c00129{transform:matrix(0.257323,0.004632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257323,0.004632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257323,0.004632,-0.004499,0.249960,0,0);}
.m94_c00129{transform:matrix(0.263541,0.004217,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263541,0.004217,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263541,0.004217,-0.003999,0.249968,0,0);}
.m38_c00129{transform:matrix(0.264064,0.002905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264064,0.002905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264064,0.002905,-0.002750,0.249985,0,0);}
.m85_c00129{transform:matrix(0.264369,0.002908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264369,0.002908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264369,0.002908,-0.002750,0.249985,0,0);}
.ma3_c00129{transform:matrix(0.266986,0.004272,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266986,0.004272,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266986,0.004272,-0.003999,0.249968,0,0);}
.m125_c00129{transform:matrix(0.267372,0.004813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267372,0.004813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267372,0.004813,-0.004499,0.249960,0,0);}
.m150_c00129{transform:matrix(0.270336,0.004866,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270336,0.004866,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270336,0.004866,-0.004499,0.249960,0,0);}
.mce_c00129{transform:matrix(0.272257,0.006534,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272257,0.006534,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272257,0.006534,-0.005998,0.249928,0,0);}
.m178_c00129{transform:matrix(0.272456,0.004904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272456,0.004904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272456,0.004904,-0.004499,0.249960,0,0);}
.m84_c00129{transform:matrix(0.274443,0.003019,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274443,0.003019,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274443,0.003019,-0.002750,0.249985,0,0);}
.m14e_c00129{transform:matrix(0.274696,0.004945,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274696,0.004945,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274696,0.004945,-0.004499,0.249960,0,0);}
.m148_c00129{transform:matrix(0.275385,0.004957,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275385,0.004957,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275385,0.004957,-0.004499,0.249960,0,0);}
.m62_c00129{transform:matrix(0.277333,0.003051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277333,0.003051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277333,0.003051,-0.002750,0.249985,0,0);}
.m153_c00129{transform:matrix(0.279690,0.005034,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279690,0.005034,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279690,0.005034,-0.004499,0.249960,0,0);}
.mcb_c00129{transform:matrix(0.279774,0.006715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279774,0.006715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279774,0.006715,-0.005998,0.249928,0,0);}
.m13f_c00129{transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);}
.mdf_c00129{transform:matrix(0.289262,0.006942,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289262,0.006942,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289262,0.006942,-0.005998,0.249928,0,0);}
.m149_c00129{transform:matrix(0.289993,0.005220,-0.004499,0.249960,0,0);-ms-transform:matrix(0.289993,0.005220,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.289993,0.005220,-0.004499,0.249960,0,0);}
.m5b_c00129{transform:matrix(0.291552,0.003207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291552,0.003207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291552,0.003207,-0.002750,0.249985,0,0);}
.md0_c00129{transform:matrix(0.293421,0.007042,-0.005998,0.249928,0,0);-ms-transform:matrix(0.293421,0.007042,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.293421,0.007042,-0.005998,0.249928,0,0);}
.mc3_c00129{transform:matrix(0.294652,0.005009,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294652,0.005009,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294652,0.005009,-0.004249,0.249964,0,0);}
.m147_c00129{transform:matrix(0.295402,0.005317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.295402,0.005317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.295402,0.005317,-0.004499,0.249960,0,0);}
.m14a_c00129{transform:matrix(0.298097,0.005366,-0.004499,0.249960,0,0);-ms-transform:matrix(0.298097,0.005366,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.298097,0.005366,-0.004499,0.249960,0,0);}
.meb_c00129{transform:matrix(0.302148,0.007252,-0.005998,0.249928,0,0);-ms-transform:matrix(0.302148,0.007252,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.302148,0.007252,-0.005998,0.249928,0,0);}
.m9f_c00129{transform:matrix(0.318794,0.005101,-0.003999,0.249968,0,0);-ms-transform:matrix(0.318794,0.005101,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.318794,0.005101,-0.003999,0.249968,0,0);}
.m13b_c00129{transform:matrix(0.321753,0.005792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.321753,0.005792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.321753,0.005792,-0.004499,0.249960,0,0);}
.mfe_c00129{transform:matrix(0.330105,0.007923,-0.005998,0.249928,0,0);-ms-transform:matrix(0.330105,0.007923,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.330105,0.007923,-0.005998,0.249928,0,0);}
.mbd_c00129{transform:matrix(0.346135,0.005884,-0.004249,0.249964,0,0);-ms-transform:matrix(0.346135,0.005884,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.346135,0.005884,-0.004249,0.249964,0,0);}
.mf9_c00129{transform:matrix(0.370108,0.008883,-0.005998,0.249928,0,0);-ms-transform:matrix(0.370108,0.008883,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.370108,0.008883,-0.005998,0.249928,0,0);}
.m108_c00129{transform:matrix(0.384709,0.009233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.384709,0.009233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.384709,0.009233,-0.005998,0.249928,0,0);}
.m154_c00129{transform:matrix(0.386412,0.006955,-0.004499,0.249960,0,0);-ms-transform:matrix(0.386412,0.006955,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.386412,0.006955,-0.004499,0.249960,0,0);}
.mc4_c00129{transform:matrix(0.393042,0.009433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.393042,0.009433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.393042,0.009433,-0.005998,0.249928,0,0);}
.md1_c00129{transform:matrix(0.393492,0.009444,-0.005998,0.249928,0,0);-ms-transform:matrix(0.393492,0.009444,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.393492,0.009444,-0.005998,0.249928,0,0);}
.m14d_c00129{transform:matrix(0.403455,0.007262,-0.004499,0.249960,0,0);-ms-transform:matrix(0.403455,0.007262,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.403455,0.007262,-0.004499,0.249960,0,0);}
.md3_c00129{transform:matrix(0.408962,0.009815,-0.005998,0.249928,0,0);-ms-transform:matrix(0.408962,0.009815,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.408962,0.009815,-0.005998,0.249928,0,0);}
.m107_c00129{transform:matrix(0.477468,0.011459,-0.005998,0.249928,0,0);-ms-transform:matrix(0.477468,0.011459,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.477468,0.011459,-0.005998,0.249928,0,0);}
.m12c_c00129{transform:matrix(0.664112,0.011954,-0.004499,0.249960,0,0);-ms-transform:matrix(0.664112,0.011954,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.664112,0.011954,-0.004499,0.249960,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;}
.fs11_c00129{font-size:63.010205px;}
.fse_c00129{font-size:64.060375px;}
.fs6_c00129{font-size:65.108332px;}
.fs9_c00129{font-size:65.118746px;}
.fs0_c00129{font-size:66.154002px;}
.fs1_c00129{font-size:68.254129px;}
.fs7_c00129{font-size:68.259861px;}
.fs10_c00129{font-size:68.261056px;}
.fsa_c00129{font-size:68.269653px;}
.fs2_c00129{font-size:69.304193px;}
.fs5_c00129{font-size:69.308870px;}
.fsb_c00129{font-size:69.319956px;}
.fs3_c00129{font-size:70.354256px;}
.fs12_c00129{font-size:70.361396px;}
.fsd_c00129{font-size:70.370258px;}
.fs4_c00129{font-size:71.404320px;}
.fsf_c00129{font-size:71.411566px;}
.fsc_c00129{font-size:71.420560px;}
.fs8_c00129{font-size:72.460468px;}
.fs13_c00129{font-size:74.562076px;}
.y0_c00129{bottom:0.000000px;}
.y17d_c00129{bottom:170.921517px;}
.y17c_c00129{bottom:171.233046px;}
.y17b_c00129{bottom:171.862530px;}
.y17a_c00129{bottom:172.217382px;}
.y179_c00129{bottom:172.567617px;}
.y178_c00129{bottom:173.511033px;}
.y177_c00129{bottom:173.832741px;}
.y176_c00129{bottom:174.556581px;}
.y175_c00129{bottom:174.971553px;}
.y174_c00129{bottom:175.709070px;}
.y173_c00129{bottom:176.162424px;}
.y172_c00129{bottom:177.034152px;}
.y171_c00129{bottom:177.680526px;}
.y170_c00129{bottom:178.230990px;}
.y16f_c00129{bottom:178.909050px;}
.y16e_c00129{bottom:179.253858px;}
.y16d_c00129{bottom:193.162731px;}
.y16c_c00129{bottom:193.926777px;}
.y16b_c00129{bottom:194.871084px;}
.y16a_c00129{bottom:195.522885px;}
.y169_c00129{bottom:195.963372px;}
.y168_c00129{bottom:197.320032px;}
.y167_c00129{bottom:198.136326px;}
.y166_c00129{bottom:198.810876px;}
.y165_c00129{bottom:199.325631px;}
.y164_c00129{bottom:200.527788px;}
.y163_c00129{bottom:200.817918px;}
.y162_c00129{bottom:201.581775px;}
.y161_c00129{bottom:201.944229px;}
.y160_c00129{bottom:215.795373px;}
.y15f_c00129{bottom:216.564198px;}
.y15e_c00129{bottom:216.965304px;}
.y15d_c00129{bottom:217.774482px;}
.y15c_c00129{bottom:218.967756px;}
.y15b_c00129{bottom:219.218154px;}
.y15a_c00129{bottom:220.008729px;}
.y159_c00129{bottom:220.552011px;}
.y158_c00129{bottom:221.517069px;}
.y157_c00129{bottom:222.235860px;}
.y156_c00129{bottom:222.711423px;}
.y155_c00129{bottom:223.226637px;}
.y154_c00129{bottom:224.292747px;}
.y153_c00129{bottom:224.668134px;}
.y152_c00129{bottom:238.980093px;}
.y151_c00129{bottom:239.676945px;}
.y150_c00129{bottom:240.608076px;}
.y14f_c00129{bottom:241.617537px;}
.y14e_c00129{bottom:242.027445px;}
.y14d_c00129{bottom:242.821881px;}
.y14c_c00129{bottom:243.910686px;}
.y14b_c00129{bottom:244.510698px;}
.y14a_c00129{bottom:244.811211px;}
.y149_c00129{bottom:245.204271px;}
.y148_c00129{bottom:245.547567px;}
.y147_c00129{bottom:246.686109px;}
.y146_c00129{bottom:247.208937px;}
.y145_c00129{bottom:247.575144px;}
.y144_c00129{bottom:261.896715px;}
.y143_c00129{bottom:262.744218px;}
.y142_c00129{bottom:263.501568px;}
.y141_c00129{bottom:264.443733px;}
.y140_c00129{bottom:264.877434px;}
.y13f_c00129{bottom:265.702797px;}
.y13e_c00129{bottom:266.281137px;}
.y13d_c00129{bottom:266.991021px;}
.y13c_c00129{bottom:267.368454px;}
.y13b_c00129{bottom:268.064892px;}
.y13a_c00129{bottom:269.198676px;}
.y139_c00129{bottom:269.993475px;}
.y138_c00129{bottom:270.259155px;}
.y137_c00129{bottom:284.765352px;}
.y136_c00129{bottom:285.499347px;}
.y135_c00129{bottom:286.014858px;}
.y134_c00129{bottom:287.129364px;}
.y133_c00129{bottom:287.448666px;}
.y132_c00129{bottom:288.848373px;}
.y131_c00129{bottom:289.693257px;}
.y130_c00129{bottom:290.397579px;}
.y12f_c00129{bottom:290.846454px;}
.y12e_c00129{bottom:291.620301px;}
.y12d_c00129{bottom:292.950024px;}
.y12c_c00129{bottom:307.327233px;}
.y12b_c00129{bottom:307.782396px;}
.y12a_c00129{bottom:308.608761px;}
.y129_c00129{bottom:309.036126px;}
.y128_c00129{bottom:309.445764px;}
.y127_c00129{bottom:310.647273px;}
.y126_c00129{bottom:311.140629px;}
.y125_c00129{bottom:312.162147px;}
.y124_c00129{bottom:312.703404px;}
.y123_c00129{bottom:313.148847px;}
.y122_c00129{bottom:313.849413px;}
.y121_c00129{bottom:314.344389px;}
.y120_c00129{bottom:315.567486px;}
.y11f_c00129{bottom:315.897903px;}
.y11e_c00129{bottom:330.495135px;}
.y11d_c00129{bottom:331.885932px;}
.y11c_c00129{bottom:332.342448px;}
.y11b_c00129{bottom:333.421449px;}
.y11a_c00129{bottom:334.092372px;}
.y119_c00129{bottom:335.012775px;}
.y118_c00129{bottom:335.535900px;}
.y117_c00129{bottom:336.845130px;}
.y116_c00129{bottom:337.684371px;}
.y115_c00129{bottom:338.136540px;}
.y114_c00129{bottom:338.541000px;}
.y113_c00129{bottom:354.376320px;}
.y112_c00129{bottom:355.452084px;}
.y111_c00129{bottom:356.051328px;}
.y110_c00129{bottom:356.949888px;}
.y10f_c00129{bottom:357.931260px;}
.y10e_c00129{bottom:358.582224px;}
.y10d_c00129{bottom:361.434636px;}
.y10c_c00129{bottom:363.094212px;}
.y10b_c00129{bottom:363.853788px;}
.y10a_c00129{bottom:364.895976px;}
.y109_c00129{bottom:365.375736px;}
.y108_c00129{bottom:366.638280px;}
.y107_c00129{bottom:372.936216px;}
.y106_c00129{bottom:373.591356px;}
.y105_c00129{bottom:374.860344px;}
.y104_c00129{bottom:376.056228px;}
.y103_c00129{bottom:377.039412px;}
.y102_c00129{bottom:378.282336px;}
.y101_c00129{bottom:379.332696px;}
.y100_c00129{bottom:379.669272px;}
.yff_c00129{bottom:379.718892px;}
.yfe_c00129{bottom:381.242508px;}
.yfd_c00129{bottom:381.887436px;}
.yfc_c00129{bottom:384.381372px;}
.yfb_c00129{bottom:384.834996px;}
.yfa_c00129{bottom:386.362140px;}
.yf9_c00129{bottom:400.148832px;}
.yf8_c00129{bottom:401.178840px;}
.yf7_c00129{bottom:402.473184px;}
.yf6_c00129{bottom:403.246296px;}
.yf5_c00129{bottom:405.746196px;}
.yf4_c00129{bottom:407.267652px;}
.yf3_c00129{bottom:408.266652px;}
.yf2_c00129{bottom:409.494156px;}
.yf1_c00129{bottom:410.974644px;}
.yf0_c00129{bottom:411.619464px;}
.yef_c00129{bottom:412.315128px;}
.yee_c00129{bottom:413.426640px;}
.yed_c00129{bottom:413.860596px;}
.yec_c00129{bottom:415.521336px;}
.yeb_c00129{bottom:423.284772px;}
.yea_c00129{bottom:424.834848px;}
.ye9_c00129{bottom:425.409576px;}
.ye8_c00129{bottom:426.193356px;}
.ye7_c00129{bottom:426.620316px;}
.ye6_c00129{bottom:426.860220px;}
.ye5_c00129{bottom:428.223132px;}
.ye4_c00129{bottom:428.929608px;}
.ye3_c00129{bottom:429.838692px;}
.ye2_c00129{bottom:430.488780px;}
.ye1_c00129{bottom:430.833168px;}
.ye0_c00129{bottom:431.990952px;}
.ydf_c00129{bottom:445.218084px;}
.yde_c00129{bottom:446.256096px;}
.ydd_c00129{bottom:446.838444px;}
.ydc_c00129{bottom:447.542136px;}
.ydb_c00129{bottom:447.927288px;}
.yda_c00129{bottom:449.248992px;}
.yd9_c00129{bottom:450.332388px;}
.yd8_c00129{bottom:450.717168px;}
.yd7_c00129{bottom:451.099392px;}
.yd6_c00129{bottom:451.119996px;}
.yd5_c00129{bottom:452.868456px;}
.yd4_c00129{bottom:453.168816px;}
.yd3_c00129{bottom:453.422244px;}
.yd2_c00129{bottom:454.407708px;}
.yd1_c00129{bottom:467.434308px;}
.yd0_c00129{bottom:468.828516px;}
.ycf_c00129{bottom:469.606044px;}
.yce_c00129{bottom:471.206748px;}
.ycd_c00129{bottom:472.234584px;}
.ycc_c00129{bottom:472.820268px;}
.ycb_c00129{bottom:474.514176px;}
.yca_c00129{bottom:475.186044px;}
.yc9_c00129{bottom:476.356260px;}
.yc8_c00129{bottom:476.903208px;}
.yc7_c00129{bottom:478.168788px;}
.yc6_c00129{bottom:478.595352px;}
.yc5_c00129{bottom:480.063000px;}
.yc4_c00129{bottom:490.416081px;}
.yc3_c00129{bottom:491.064571px;}
.yc2_c00129{bottom:492.570652px;}
.yc1_c00129{bottom:493.401544px;}
.yc0_c00129{bottom:494.074923px;}
.ybf_c00129{bottom:494.861266px;}
.ybe_c00129{bottom:495.114303px;}
.ybd_c00129{bottom:496.229188px;}
.ybc_c00129{bottom:496.630329px;}
.ybb_c00129{bottom:497.028052px;}
.yba_c00129{bottom:498.149950px;}
.yb9_c00129{bottom:498.421500px;}
.yb8_c00129{bottom:513.251484px;}
.yb7_c00129{bottom:513.773494px;}
.yb6_c00129{bottom:514.192766px;}
.yb5_c00129{bottom:515.684694px;}
.yb4_c00129{bottom:516.726854px;}
.yb3_c00129{bottom:517.066463px;}
.yb2_c00129{bottom:517.615936px;}
.yb1_c00129{bottom:518.198943px;}
.yb0_c00129{bottom:518.802095px;}
.yaf_c00129{bottom:519.291669px;}
.yae_c00129{bottom:519.686435px;}
.yad_c00129{bottom:520.276454px;}
.yac_c00129{bottom:520.785000px;}
.yab_c00129{bottom:536.975388px;}
.yaa_c00129{bottom:537.757800px;}
.ya9_c00129{bottom:538.373112px;}
.ya8_c00129{bottom:538.602372px;}
.ya7_c00129{bottom:539.415060px;}
.ya6_c00129{bottom:539.838096px;}
.ya5_c00129{bottom:540.507648px;}
.ya4_c00129{bottom:540.893124px;}
.ya3_c00129{bottom:541.170768px;}
.ya2_c00129{bottom:542.913768px;}
.ya1_c00129{bottom:543.235404px;}
.ya0_c00129{bottom:543.667152px;}
.y9f_c00129{bottom:544.125648px;}
.y9e_c00129{bottom:544.480704px;}
.y9d_c00129{bottom:559.790916px;}
.y9c_c00129{bottom:560.092164px;}
.y9b_c00129{bottom:560.715468px;}
.y9a_c00129{bottom:561.328956px;}
.y99_c00129{bottom:562.063476px;}
.y98_c00129{bottom:563.157468px;}
.y97_c00129{bottom:563.635956px;}
.y96_c00129{bottom:564.404676px;}
.y95_c00129{bottom:565.671252px;}
.y94_c00129{bottom:566.435796px;}
.y93_c00129{bottom:566.731500px;}
.y92_c00129{bottom:582.214791px;}
.y91_c00129{bottom:582.746002px;}
.y90_c00129{bottom:584.293948px;}
.y8f_c00129{bottom:584.770779px;}
.y8e_c00129{bottom:585.573748px;}
.y8d_c00129{bottom:586.726147px;}
.y8c_c00129{bottom:587.432148px;}
.y8b_c00129{bottom:587.869309px;}
.y8a_c00129{bottom:588.405799px;}
.y89_c00129{bottom:588.791845px;}
.y88_c00129{bottom:589.888609px;}
.y87_c00129{bottom:590.207310px;}
.y86_c00129{bottom:605.368192px;}
.y85_c00129{bottom:606.020082px;}
.y84_c00129{bottom:606.458023px;}
.y83_c00129{bottom:607.207435px;}
.y82_c00129{bottom:608.506876px;}
.y81_c00129{bottom:609.210562px;}
.y80_c00129{bottom:609.981138px;}
.y7f_c00129{bottom:610.381717px;}
.y7e_c00129{bottom:611.126131px;}
.y7d_c00129{bottom:612.044739px;}
.y7c_c00129{bottom:612.347086px;}
.y7b_c00129{bottom:628.080471px;}
.y7a_c00129{bottom:628.638121px;}
.y79_c00129{bottom:628.938094px;}
.y78_c00129{bottom:629.215023px;}
.y77_c00129{bottom:630.290355px;}
.y76_c00129{bottom:630.716122px;}
.y75_c00129{bottom:631.862715px;}
.y74_c00129{bottom:632.199241px;}
.y73_c00129{bottom:632.785165px;}
.y72_c00129{bottom:633.235776px;}
.y71_c00129{bottom:633.546850px;}
.y70_c00129{bottom:634.041372px;}
.y6f_c00129{bottom:634.754031px;}
.y6e_c00129{bottom:635.028435px;}
.y6d_c00129{bottom:651.190738px;}
.y6c_c00129{bottom:651.757989px;}
.y6b_c00129{bottom:653.022244px;}
.y6a_c00129{bottom:653.394451px;}
.y69_c00129{bottom:653.855272px;}
.y68_c00129{bottom:654.435324px;}
.y67_c00129{bottom:654.828430px;}
.y66_c00129{bottom:655.261687px;}
.y65_c00129{bottom:655.687636px;}
.y64_c00129{bottom:656.935512px;}
.y63_c00129{bottom:657.417447px;}
.y62_c00129{bottom:657.711201px;}
.y61_c00129{bottom:674.280885px;}
.y60_c00129{bottom:674.822238px;}
.y5f_c00129{bottom:675.856429px;}
.y5e_c00129{bottom:677.042941px;}
.y5d_c00129{bottom:677.978242px;}
.y5c_c00129{bottom:678.281959px;}
.y5b_c00129{bottom:678.517830px;}
.y5a_c00129{bottom:679.480876px;}
.y59_c00129{bottom:679.836753px;}
.y58_c00129{bottom:680.122539px;}
.y57_c00129{bottom:697.188744px;}
.y56_c00129{bottom:697.498236px;}
.y55_c00129{bottom:698.350495px;}
.y54_c00129{bottom:699.421428px;}
.y53_c00129{bottom:700.000011px;}
.y52_c00129{bottom:700.196281px;}
.y51_c00129{bottom:700.774947px;}
.y50_c00129{bottom:701.522958px;}
.y4f_c00129{bottom:701.909361px;}
.y4e_c00129{bottom:702.324948px;}
.y4d_c00129{bottom:702.600868px;}
.y4c_c00129{bottom:702.803952px;}
.y4b_c00129{bottom:719.919912px;}
.y4a_c00129{bottom:720.586360px;}
.y49_c00129{bottom:720.988717px;}
.y48_c00129{bottom:721.448518px;}
.y47_c00129{bottom:721.884117px;}
.y46_c00129{bottom:722.404497px;}
.y45_c00129{bottom:722.736426px;}
.y44_c00129{bottom:723.354339px;}
.y43_c00129{bottom:723.648835px;}
.y42_c00129{bottom:724.136665px;}
.y41_c00129{bottom:724.759114px;}
.y40_c00129{bottom:725.248644px;}
.y3f_c00129{bottom:725.511910px;}
.y3e_c00129{bottom:725.753581px;}
.y3d_c00129{bottom:742.427181px;}
.y3c_c00129{bottom:742.991724px;}
.y3b_c00129{bottom:743.753857px;}
.y3a_c00129{bottom:744.259042px;}
.y39_c00129{bottom:744.648762px;}
.y38_c00129{bottom:745.207102px;}
.y37_c00129{bottom:745.568562px;}
.y36_c00129{bottom:746.123404px;}
.y35_c00129{bottom:746.453634px;}
.y34_c00129{bottom:746.919984px;}
.y33_c00129{bottom:747.787783px;}
.y32_c00129{bottom:748.164007px;}
.y31_c00129{bottom:765.716089px;}
.y30_c00129{bottom:766.015023px;}
.y2f_c00129{bottom:766.456792px;}
.y2e_c00129{bottom:767.267379px;}
.y2d_c00129{bottom:767.520318px;}
.y2c_c00129{bottom:767.956065px;}
.y2b_c00129{bottom:768.591250px;}
.y2a_c00129{bottom:768.818932px;}
.y29_c00129{bottom:769.257732px;}
.y28_c00129{bottom:769.846642px;}
.y27_c00129{bottom:770.657146px;}
.y26_c00129{bottom:771.163519px;}
.y25_c00129{bottom:771.386119px;}
.y24_c00129{bottom:788.198032px;}
.y23_c00129{bottom:788.431933px;}
.y22_c00129{bottom:789.469515px;}
.y21_c00129{bottom:789.803974px;}
.y20_c00129{bottom:790.416337px;}
.y1f_c00129{bottom:790.663107px;}
.y1e_c00129{bottom:791.703592px;}
.y1d_c00129{bottom:792.164200px;}
.y1c_c00129{bottom:792.542811px;}
.y1b_c00129{bottom:792.922279px;}
.y1a_c00129{bottom:793.353405px;}
.y19_c00129{bottom:793.530385px;}
.y18_c00129{bottom:811.191697px;}
.y17_c00129{bottom:811.924368px;}
.y16_c00129{bottom:812.328090px;}
.y15_c00129{bottom:813.018541px;}
.y14_c00129{bottom:813.439141px;}
.y13_c00129{bottom:813.824005px;}
.y12_c00129{bottom:814.727685px;}
.y11_c00129{bottom:815.463358px;}
.y10_c00129{bottom:815.826015px;}
.yf_c00129{bottom:816.032017px;}
.ye_c00129{bottom:816.259368px;}
.yd_c00129{bottom:816.478750px;}
.yc_c00129{bottom:834.002281px;}
.yb_c00129{bottom:835.368168px;}
.ya_c00129{bottom:835.813800px;}
.y9_c00129{bottom:835.991505px;}
.y8_c00129{bottom:836.419218px;}
.y7_c00129{bottom:836.663302px;}
.y6_c00129{bottom:836.912733px;}
.y5_c00129{bottom:837.441393px;}
.y4_c00129{bottom:837.771145px;}
.y3_c00129{bottom:838.510659px;}
.y2_c00129{bottom:838.959195px;}
.y1_c00129{bottom:839.160000px;}
.h13_c00129{height:63.010205px;}
.h10_c00129{height:64.060375px;}
.h8_c00129{height:65.108332px;}
.hb_c00129{height:65.118746px;}
.h2_c00129{height:66.154002px;}
.h3_c00129{height:68.254129px;}
.h9_c00129{height:68.259861px;}
.h12_c00129{height:68.261056px;}
.hc_c00129{height:68.269653px;}
.h4_c00129{height:69.304193px;}
.h7_c00129{height:69.308870px;}
.hd_c00129{height:69.319956px;}
.h5_c00129{height:70.354256px;}
.h14_c00129{height:70.361396px;}
.hf_c00129{height:70.370258px;}
.h6_c00129{height:71.404320px;}
.h11_c00129{height:71.411566px;}
.he_c00129{height:71.420560px;}
.ha_c00129{height:72.460468px;}
.h15_c00129{height:74.562076px;}
.h0_c00129{height:1008.450000px;}
.h1_c00129{height:1008.750000px;}
.w0_c00129{width:676.890000px;}
.w1_c00129{width:677.250000px;}
.x0_c00129{left:0.000000px;}
.x86_c00129{left:84.670500px;}
.xa2_c00129{left:89.565792px;}
.x8f_c00129{left:91.029288px;}
.xa7_c00129{left:140.900460px;}
.xb7_c00129{left:142.108719px;}
.xb3_c00129{left:143.306535px;}
.x98_c00129{left:144.704724px;}
.x82_c00129{left:145.969500px;}
.x66_c00129{left:147.372132px;}
.x61_c00129{left:148.454271px;}
.x4a_c00129{left:149.522340px;}
.x37_c00129{left:151.156919px;}
.x15_c00129{left:152.238504px;}
.x1_c00129{left:153.321000px;}
.xbc_c00129{left:156.980952px;}
.xcd_c00129{left:158.755038px;}
.x90_c00129{left:159.847188px;}
.x83_c00129{left:161.943000px;}
.x87_c00129{left:163.596000px;}
.x6e_c00129{left:165.306000px;}
.x16_c00129{left:166.963839px;}
.x21_c00129{left:168.800502px;}
.x2_c00129{left:171.576000px;}
.x2c_c00129{left:172.640003px;}
.x91_c00129{left:176.552100px;}
.xad_c00129{left:182.823000px;}
.x76_c00129{left:185.807376px;}
.x42_c00129{left:188.552259px;}
.xd_c00129{left:189.978558px;}
.x4b_c00129{left:192.307959px;}
.x7c_c00129{left:194.649000px;}
.x99_c00129{left:197.085024px;}
.xc9_c00129{left:199.836576px;}
.x2d_c00129{left:201.523359px;}
.x17_c00129{left:202.883943px;}
.xe_c00129{left:207.205877px;}
.x3_c00129{left:212.352000px;}
.x58_c00129{left:214.720397px;}
.x88_c00129{left:216.328500px;}
.xc6_c00129{left:218.400315px;}
.x43_c00129{left:220.468550px;}
.xce_c00129{left:223.421877px;}
.xb4_c00129{left:225.028050px;}
.x38_c00129{left:227.652236px;}
.x62_c00129{left:229.855691px;}
.xa8_c00129{left:232.149264px;}
.x18_c00129{left:234.517097px;}
.xf_c00129{left:237.447047px;}
.x89_c00129{left:239.118000px;}
.x9a_c00129{left:244.969284px;}
.x59_c00129{left:247.675445px;}
.xc1_c00129{left:248.676768px;}
.x44_c00129{left:250.140890px;}
.x84_c00129{left:251.332500px;}
.x67_c00129{left:253.320636px;}
.xae_c00129{left:254.568000px;}
.x4c_c00129{left:256.536638px;}
.xb8_c00129{left:258.973719px;}
.xbd_c00129{left:264.124452px;}
.x19_c00129{left:266.072250px;}
.x2e_c00129{left:268.276391px;}
.x22_c00129{left:270.105275px;}
.x4d_c00129{left:272.251445px;}
.x92_c00129{left:273.668568px;}
.x39_c00129{left:275.510180px;}
.xca_c00129{left:278.406672px;}
.x4_c00129{left:279.580500px;}
.x7d_c00129{left:281.376000px;}
.x53_c00129{left:284.397407px;}
.x9e_c00129{left:285.712056px;}
.x8a_c00129{left:287.877000px;}
.x4e_c00129{left:292.497554px;}
.x93_c00129{left:296.018772px;}
.x10_c00129{left:298.734870px;}
.xbe_c00129{left:302.815452px;}
.x1a_c00129{left:304.399821px;}
.x63_c00129{left:306.260841px;}
.x45_c00129{left:307.640619px;}
.x5_c00129{left:309.558000px;}
.x68_c00129{left:310.603358px;}
.x3a_c00129{left:313.039355px;}
.x23_c00129{left:315.459785px;}
.x7e_c00129{left:316.855500px;}
.xb9_c00129{left:323.040219px;}
.x9f_c00129{left:325.288896px;}
.xa3_c00129{left:326.907576px;}
.x2f_c00129{left:329.509538px;}
.x3b_c00129{left:335.720360px;}
.x5a_c00129{left:337.590501px;}
.x6f_c00129{left:340.296000px;}
.x54_c00129{left:341.640882px;}
.x24_c00129{left:349.213542px;}
.x7f_c00129{left:351.150000px;}
.x46_c00129{left:352.200146px;}
.x4f_c00129{left:354.885815px;}
.xaf_c00129{left:356.365500px;}
.x6_c00129{left:357.618000px;}
.x5b_c00129{left:360.001011px;}
.xbf_c00129{left:363.221952px;}
.x25_c00129{left:366.775163px;}
.x55_c00129{left:367.831227px;}
.x70_c00129{left:370.201500px;}
.x30_c00129{left:372.176097px;}
.x11_c00129{left:374.068545px;}
.x77_c00129{left:375.930828px;}
.x94_c00129{left:377.579508px;}
.x7_c00129{left:380.293500px;}
.x3c_c00129{left:383.302320px;}
.x8b_c00129{left:386.451000px;}
.xc7_c00129{left:387.753264px;}
.x9b_c00129{left:388.997064px;}
.x1b_c00129{left:391.079364px;}
.xc2_c00129{left:392.101176px;}
.xb5_c00129{left:393.594999px;}
.xc0_c00129{left:395.351952px;}
.x78_c00129{left:398.616468px;}
.x31_c00129{left:399.989987px;}
.x8_c00129{left:402.483000px;}
.x64_c00129{left:404.553018px;}
.x12_c00129{left:406.192199px;}
.xb0_c00129{left:407.499000px;}
.x3d_c00129{left:408.840759px;}
.x1c_c00129{left:411.603633px;}
.xa9_c00129{left:412.644444px;}
.x26_c00129{left:415.654590px;}
.x69_c00129{left:419.950647px;}
.xa4_c00129{left:422.605896px;}
.xcf_c00129{left:425.850705px;}
.x9c_c00129{left:430.221996px;}
.x50_c00129{left:433.974333px;}
.x56_c00129{left:437.225675px;}
.x71_c00129{left:438.576000px;}
.x9_c00129{left:441.366000px;}
.x32_c00129{left:442.974546px;}
.xb1_c00129{left:444.772500px;}
.xba_c00129{left:447.739719px;}
.x27_c00129{left:449.130848px;}
.x95_c00129{left:451.036092px;}
.x8c_c00129{left:453.681000px;}
.xc3_c00129{left:455.508042px;}
.xa_c00129{left:457.521000px;}
.x9d_c00129{left:460.485132px;}
.x1d_c00129{left:462.636072px;}
.x5c_c00129{left:464.756391px;}
.x6a_c00129{left:467.172029px;}
.x28_c00129{left:468.579419px;}
.x33_c00129{left:472.948386px;}
.xaa_c00129{left:477.969396px;}
.x3e_c00129{left:482.382642px;}
.x72_c00129{left:484.483500px;}
.xa0_c00129{left:487.255716px;}
.x1e_c00129{left:490.450259px;}
.xd0_c00129{left:492.467517px;}
.x47_c00129{left:494.223027px;}
.x6b_c00129{left:495.245681px;}
.xb_c00129{left:498.033000px;}
.xa5_c00129{left:500.392908px;}
.x51_c00129{left:502.897797px;}
.xb2_c00129{left:504.717000px;}
.xc4_c00129{left:508.671597px;}
.x79_c00129{left:510.663168px;}
.x34_c00129{left:511.782528px;}
.xcb_c00129{left:512.793933px;}
.xab_c00129{left:513.908532px;}
.x3f_c00129{left:517.772867px;}
.x8d_c00129{left:520.377000px;}
.x73_c00129{left:522.826500px;}
.x7a_c00129{left:524.147952px;}
.xb6_c00129{left:526.918623px;}
.xd1_c00129{left:529.638369px;}
.x29_c00129{left:530.949549px;}
.x13_c00129{left:532.579329px;}
.x5d_c00129{left:536.465240px;}
.xac_c00129{left:537.876456px;}
.x52_c00129{left:539.019213px;}
.x65_c00129{left:541.170012px;}
.x96_c00129{left:543.932484px;}
.x57_c00129{left:546.308373px;}
.x40_c00129{left:548.759190px;}
.x80_c00129{left:552.513000px;}
.xa1_c00129{left:553.951020px;}
.x5e_c00129{left:554.957931px;}
.xbb_c00129{left:556.035219px;}
.xc5_c00129{left:557.650206px;}
.x48_c00129{left:559.836092px;}
.x74_c00129{left:561.783000px;}
.x2a_c00129{left:564.973307px;}
.xa6_c00129{left:569.120820px;}
.x35_c00129{left:570.429741px;}
.x5f_c00129{left:575.000057px;}
.x1f_c00129{left:576.865802px;}
.x85_c00129{left:578.730000px;}
.x75_c00129{left:580.611000px;}
.x49_c00129{left:583.607564px;}
.x6c_c00129{left:586.325675px;}
.x2b_c00129{left:587.921295px;}
.x14_c00129{left:593.594153px;}
.x20_c00129{left:596.356587px;}
.x41_c00129{left:600.071568px;}
.x97_c00129{left:601.566264px;}
.xcc_c00129{left:602.700813px;}
.x7b_c00129{left:606.348132px;}
.x81_c00129{left:607.882500px;}
.xc8_c00129{left:609.491268px;}
.x8e_c00129{left:610.866000px;}
.x60_c00129{left:612.193923px;}
.x36_c00129{left:613.841784px;}
.x6d_c00129{left:617.570112px;}
.xc_c00129{left:622.204500px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs11_c00129{font-size:56.009071pt;}
.fse_c00129{font-size:56.942556pt;}
.fs6_c00129{font-size:57.874073pt;}
.fs9_c00129{font-size:57.883330pt;}
.fs0_c00129{font-size:58.803557pt;}
.fs1_c00129{font-size:60.670337pt;}
.fs7_c00129{font-size:60.675432pt;}
.fs10_c00129{font-size:60.676494pt;}
.fsa_c00129{font-size:60.684136pt;}
.fs2_c00129{font-size:61.603727pt;}
.fs5_c00129{font-size:61.607884pt;}
.fsb_c00129{font-size:61.617738pt;}
.fs3_c00129{font-size:62.537116pt;}
.fs12_c00129{font-size:62.543463pt;}
.fsd_c00129{font-size:62.551340pt;}
.fs4_c00129{font-size:63.470506pt;}
.fsf_c00129{font-size:63.476947pt;}
.fsc_c00129{font-size:63.484942pt;}
.fs8_c00129{font-size:64.409305pt;}
.fs13_c00129{font-size:66.277401pt;}
.y0_c00129{bottom:0.000000pt;}
.y17d_c00129{bottom:151.930237pt;}
.y17c_c00129{bottom:152.207152pt;}
.y17b_c00129{bottom:152.766693pt;}
.y17a_c00129{bottom:153.082117pt;}
.y179_c00129{bottom:153.393437pt;}
.y178_c00129{bottom:154.232029pt;}
.y177_c00129{bottom:154.517992pt;}
.y176_c00129{bottom:155.161405pt;}
.y175_c00129{bottom:155.530269pt;}
.y174_c00129{bottom:156.185840pt;}
.y173_c00129{bottom:156.588821pt;}
.y172_c00129{bottom:157.363691pt;}
.y171_c00129{bottom:157.938245pt;}
.y170_c00129{bottom:158.427547pt;}
.y16f_c00129{bottom:159.030267pt;}
.y16e_c00129{bottom:159.336763pt;}
.y16d_c00129{bottom:171.700205pt;}
.y16c_c00129{bottom:172.379357pt;}
.y16b_c00129{bottom:173.218741pt;}
.y16a_c00129{bottom:173.798120pt;}
.y169_c00129{bottom:174.189664pt;}
.y168_c00129{bottom:175.395584pt;}
.y167_c00129{bottom:176.121179pt;}
.y166_c00129{bottom:176.720779pt;}
.y165_c00129{bottom:177.178339pt;}
.y164_c00129{bottom:178.246923pt;}
.y163_c00129{bottom:178.504816pt;}
.y162_c00129{bottom:179.183800pt;}
.y161_c00129{bottom:179.505981pt;}
.y160_c00129{bottom:191.818109pt;}
.y15f_c00129{bottom:192.501509pt;}
.y15e_c00129{bottom:192.858048pt;}
.y15d_c00129{bottom:193.577317pt;}
.y15c_c00129{bottom:194.638005pt;}
.y15b_c00129{bottom:194.860581pt;}
.y15a_c00129{bottom:195.563315pt;}
.y159_c00129{bottom:196.046232pt;}
.y158_c00129{bottom:196.904061pt;}
.y157_c00129{bottom:197.542987pt;}
.y156_c00129{bottom:197.965709pt;}
.y155_c00129{bottom:198.423677pt;}
.y154_c00129{bottom:199.371331pt;}
.y153_c00129{bottom:199.705008pt;}
.y152_c00129{bottom:212.426749pt;}
.y151_c00129{bottom:213.046173pt;}
.y150_c00129{bottom:213.873845pt;}
.y14f_c00129{bottom:214.771144pt;}
.y14e_c00129{bottom:215.135507pt;}
.y14d_c00129{bottom:215.841672pt;}
.y14c_c00129{bottom:216.809499pt;}
.y14b_c00129{bottom:217.342843pt;}
.y14a_c00129{bottom:217.609965pt;}
.y149_c00129{bottom:217.959352pt;}
.y148_c00129{bottom:218.264504pt;}
.y147_c00129{bottom:219.276541pt;}
.y146_c00129{bottom:219.741277pt;}
.y145_c00129{bottom:220.066795pt;}
.y144_c00129{bottom:232.797080pt;}
.y143_c00129{bottom:233.550416pt;}
.y142_c00129{bottom:234.223616pt;}
.y141_c00129{bottom:235.061096pt;}
.y140_c00129{bottom:235.446608pt;}
.y13f_c00129{bottom:236.180264pt;}
.y13e_c00129{bottom:236.694344pt;}
.y13d_c00129{bottom:237.325352pt;}
.y13c_c00129{bottom:237.660848pt;}
.y13b_c00129{bottom:238.279904pt;}
.y13a_c00129{bottom:239.287712pt;}
.y139_c00129{bottom:239.994200pt;}
.y138_c00129{bottom:240.230360pt;}
.y137_c00129{bottom:253.124757pt;}
.y136_c00129{bottom:253.777197pt;}
.y135_c00129{bottom:254.235429pt;}
.y134_c00129{bottom:255.226101pt;}
.y133_c00129{bottom:255.509925pt;}
.y132_c00129{bottom:256.754109pt;}
.y131_c00129{bottom:257.505117pt;}
.y130_c00129{bottom:258.131181pt;}
.y12f_c00129{bottom:258.530181pt;}
.y12e_c00129{bottom:259.218045pt;}
.y12d_c00129{bottom:260.400021pt;}
.y12c_c00129{bottom:273.179763pt;}
.y12b_c00129{bottom:273.584352pt;}
.y12a_c00129{bottom:274.318899pt;}
.y129_c00129{bottom:274.698779pt;}
.y128_c00129{bottom:275.062901pt;}
.y127_c00129{bottom:276.130909pt;}
.y126_c00129{bottom:276.569448pt;}
.y125_c00129{bottom:277.477464pt;}
.y124_c00129{bottom:277.958581pt;}
.y123_c00129{bottom:278.354531pt;}
.y122_c00129{bottom:278.977256pt;}
.y121_c00129{bottom:279.417235pt;}
.y120_c00129{bottom:280.504432pt;}
.y11f_c00129{bottom:280.798136pt;}
.y11e_c00129{bottom:293.773453pt;}
.y11d_c00129{bottom:295.009717pt;}
.y11c_c00129{bottom:295.415509pt;}
.y11b_c00129{bottom:296.374621pt;}
.y11a_c00129{bottom:296.970997pt;}
.y119_c00129{bottom:297.789133pt;}
.y118_c00129{bottom:298.254133pt;}
.y117_c00129{bottom:299.417893pt;}
.y116_c00129{bottom:300.163885pt;}
.y115_c00129{bottom:300.565813pt;}
.y114_c00129{bottom:300.925333pt;}
.y113_c00129{bottom:315.001173pt;}
.y112_c00129{bottom:315.957408pt;}
.y111_c00129{bottom:316.490069pt;}
.y110_c00129{bottom:317.288789pt;}
.y10f_c00129{bottom:318.161120pt;}
.y10e_c00129{bottom:318.739755pt;}
.y10d_c00129{bottom:321.275232pt;}
.y10c_c00129{bottom:322.750411pt;}
.y10b_c00129{bottom:323.425589pt;}
.y10a_c00129{bottom:324.351979pt;}
.y109_c00129{bottom:324.778432pt;}
.y108_c00129{bottom:325.900693pt;}
.y107_c00129{bottom:331.498859pt;}
.y106_c00129{bottom:332.081205pt;}
.y105_c00129{bottom:333.209195pt;}
.y104_c00129{bottom:334.272203pt;}
.y103_c00129{bottom:335.146144pt;}
.y102_c00129{bottom:336.250965pt;}
.y101_c00129{bottom:337.184619pt;}
.y100_c00129{bottom:337.483797pt;}
.yff_c00129{bottom:337.527904pt;}
.yfe_c00129{bottom:338.882229pt;}
.yfd_c00129{bottom:339.455499pt;}
.yfc_c00129{bottom:341.672331pt;}
.yfb_c00129{bottom:342.075552pt;}
.yfa_c00129{bottom:343.433013pt;}
.yf9_c00129{bottom:355.687851pt;}
.yf8_c00129{bottom:356.603413pt;}
.yf7_c00129{bottom:357.753941pt;}
.yf6_c00129{bottom:358.441152pt;}
.yf5_c00129{bottom:360.663285pt;}
.yf4_c00129{bottom:362.015691pt;}
.yf3_c00129{bottom:362.903691pt;}
.yf2_c00129{bottom:363.994805pt;}
.yf1_c00129{bottom:365.310795pt;}
.yf0_c00129{bottom:365.883968pt;}
.yef_c00129{bottom:366.502336pt;}
.yee_c00129{bottom:367.490347pt;}
.yed_c00129{bottom:367.876085pt;}
.yec_c00129{bottom:369.352299pt;}
.yeb_c00129{bottom:376.253131pt;}
.yea_c00129{bottom:377.630976pt;}
.ye9_c00129{bottom:378.141845pt;}
.ye8_c00129{bottom:378.838539pt;}
.ye7_c00129{bottom:379.218059pt;}
.ye6_c00129{bottom:379.431307pt;}
.ye5_c00129{bottom:380.642784pt;}
.ye4_c00129{bottom:381.270763pt;}
.ye3_c00129{bottom:382.078837pt;}
.ye2_c00129{bottom:382.656693pt;}
.ye1_c00129{bottom:382.962816pt;}
.ye0_c00129{bottom:383.991957pt;}
.ydf_c00129{bottom:395.749408pt;}
.yde_c00129{bottom:396.672085pt;}
.ydd_c00129{bottom:397.189728pt;}
.ydc_c00129{bottom:397.815232pt;}
.ydb_c00129{bottom:398.157589pt;}
.yda_c00129{bottom:399.332437pt;}
.yd9_c00129{bottom:400.295456pt;}
.yd8_c00129{bottom:400.637483pt;}
.yd7_c00129{bottom:400.977237pt;}
.yd6_c00129{bottom:400.995552pt;}
.yd5_c00129{bottom:402.549739pt;}
.yd4_c00129{bottom:402.816725pt;}
.yd3_c00129{bottom:403.041995pt;}
.yd2_c00129{bottom:403.917963pt;}
.yd1_c00129{bottom:415.497163pt;}
.yd0_c00129{bottom:416.736459pt;}
.ycf_c00129{bottom:417.427595pt;}
.yce_c00129{bottom:418.850443pt;}
.ycd_c00129{bottom:419.764075pt;}
.ycc_c00129{bottom:420.284683pt;}
.ycb_c00129{bottom:421.790379pt;}
.yca_c00129{bottom:422.387595pt;}
.yc9_c00129{bottom:423.427787pt;}
.yc8_c00129{bottom:423.913963pt;}
.yc7_c00129{bottom:425.038923pt;}
.yc6_c00129{bottom:425.418091pt;}
.yc5_c00129{bottom:426.722667pt;}
.yc4_c00129{bottom:435.925405pt;}
.yc3_c00129{bottom:436.501841pt;}
.yc2_c00129{bottom:437.840580pt;}
.yc1_c00129{bottom:438.579151pt;}
.yc0_c00129{bottom:439.177709pt;}
.ybf_c00129{bottom:439.876681pt;}
.ybe_c00129{bottom:440.101603pt;}
.ybd_c00129{bottom:441.092612pt;}
.ybc_c00129{bottom:441.449181pt;}
.ybb_c00129{bottom:441.802713pt;}
.yba_c00129{bottom:442.799956pt;}
.yb9_c00129{bottom:443.041333pt;}
.yb8_c00129{bottom:456.223541pt;}
.yb7_c00129{bottom:456.687551pt;}
.yb6_c00129{bottom:457.060236pt;}
.yb5_c00129{bottom:458.386395pt;}
.yb4_c00129{bottom:459.312759pt;}
.yb3_c00129{bottom:459.614633pt;}
.yb2_c00129{bottom:460.103055pt;}
.yb1_c00129{bottom:460.621283pt;}
.yb0_c00129{bottom:461.157417pt;}
.yaf_c00129{bottom:461.592595pt;}
.yae_c00129{bottom:461.943497pt;}
.yad_c00129{bottom:462.467959pt;}
.yac_c00129{bottom:462.920000pt;}
.yab_c00129{bottom:477.311456pt;}
.yaa_c00129{bottom:478.006933pt;}
.ya9_c00129{bottom:478.553877pt;}
.ya8_c00129{bottom:478.757664pt;}
.ya7_c00129{bottom:479.480053pt;}
.ya6_c00129{bottom:479.856085pt;}
.ya5_c00129{bottom:480.451243pt;}
.ya4_c00129{bottom:480.793888pt;}
.ya3_c00129{bottom:481.040683pt;}
.ya2_c00129{bottom:482.590016pt;}
.ya1_c00129{bottom:482.875915pt;}
.ya0_c00129{bottom:483.259691pt;}
.y9f_c00129{bottom:483.667243pt;}
.y9e_c00129{bottom:483.982848pt;}
.y9d_c00129{bottom:497.591925pt;}
.y9c_c00129{bottom:497.859701pt;}
.y9b_c00129{bottom:498.413749pt;}
.y9a_c00129{bottom:498.959072pt;}
.y99_c00129{bottom:499.611979pt;}
.y98_c00129{bottom:500.584416pt;}
.y97_c00129{bottom:501.009739pt;}
.y96_c00129{bottom:501.693045pt;}
.y95_c00129{bottom:502.818891pt;}
.y94_c00129{bottom:503.498485pt;}
.y93_c00129{bottom:503.761333pt;}
.y92_c00129{bottom:517.524259pt;}
.y91_c00129{bottom:517.996447pt;}
.y90_c00129{bottom:519.372399pt;}
.y8f_c00129{bottom:519.796248pt;}
.y8e_c00129{bottom:520.509999pt;}
.y8d_c00129{bottom:521.534353pt;}
.y8c_c00129{bottom:522.161909pt;}
.y8b_c00129{bottom:522.550497pt;}
.y8a_c00129{bottom:523.027377pt;}
.y89_c00129{bottom:523.370529pt;}
.y88_c00129{bottom:524.345431pt;}
.y87_c00129{bottom:524.628720pt;}
.y86_c00129{bottom:538.105060pt;}
.y85_c00129{bottom:538.684517pt;}
.y84_c00129{bottom:539.073799pt;}
.y83_c00129{bottom:539.739943pt;}
.y82_c00129{bottom:540.895001pt;}
.y81_c00129{bottom:541.520500pt;}
.y80_c00129{bottom:542.205456pt;}
.y7f_c00129{bottom:542.561527pt;}
.y7e_c00129{bottom:543.223228pt;}
.y7d_c00129{bottom:544.039768pt;}
.y7c_c00129{bottom:544.308521pt;}
.y7b_c00129{bottom:558.293752pt;}
.y7a_c00129{bottom:558.789441pt;}
.y79_c00129{bottom:559.056084pt;}
.y78_c00129{bottom:559.302243pt;}
.y77_c00129{bottom:560.258093pt;}
.y76_c00129{bottom:560.636553pt;}
.y75_c00129{bottom:561.655747pt;}
.y74_c00129{bottom:561.954881pt;}
.y73_c00129{bottom:562.475703pt;}
.y72_c00129{bottom:562.876245pt;}
.y71_c00129{bottom:563.152756pt;}
.y70_c00129{bottom:563.592331pt;}
.y6f_c00129{bottom:564.225805pt;}
.y6e_c00129{bottom:564.469720pt;}
.y6d_c00129{bottom:578.836212pt;}
.y6c_c00129{bottom:579.340435pt;}
.y6b_c00129{bottom:580.464217pt;}
.y6a_c00129{bottom:580.795068pt;}
.y69_c00129{bottom:581.204687pt;}
.y68_c00129{bottom:581.720288pt;}
.y67_c00129{bottom:582.069716pt;}
.y66_c00129{bottom:582.454833pt;}
.y65_c00129{bottom:582.833455pt;}
.y64_c00129{bottom:583.942677pt;}
.y63_c00129{bottom:584.371064pt;}
.y62_c00129{bottom:584.632179pt;}
.y61_c00129{bottom:599.360787pt;}
.y60_c00129{bottom:599.841989pt;}
.y5f_c00129{bottom:600.761271pt;}
.y5e_c00129{bottom:601.815948pt;}
.y5d_c00129{bottom:602.647327pt;}
.y5c_c00129{bottom:602.917297pt;}
.y5b_c00129{bottom:603.126960pt;}
.y5a_c00129{bottom:603.983001pt;}
.y59_c00129{bottom:604.299336pt;}
.y58_c00129{bottom:604.553368pt;}
.y57_c00129{bottom:619.723328pt;}
.y56_c00129{bottom:619.998432pt;}
.y55_c00129{bottom:620.755996pt;}
.y54_c00129{bottom:621.707936pt;}
.y53_c00129{bottom:622.222232pt;}
.y52_c00129{bottom:622.396695pt;}
.y51_c00129{bottom:622.911064pt;}
.y50_c00129{bottom:623.575963pt;}
.y4f_c00129{bottom:623.919432pt;}
.y4e_c00129{bottom:624.288843pt;}
.y4d_c00129{bottom:624.534105pt;}
.y4c_c00129{bottom:624.714624pt;}
.y4b_c00129{bottom:639.928811pt;}
.y4a_c00129{bottom:640.521209pt;}
.y49_c00129{bottom:640.878860pt;}
.y48_c00129{bottom:641.287572pt;}
.y47_c00129{bottom:641.674771pt;}
.y46_c00129{bottom:642.137331pt;}
.y45_c00129{bottom:642.432379pt;}
.y44_c00129{bottom:642.981635pt;}
.y43_c00129{bottom:643.243409pt;}
.y42_c00129{bottom:643.677036pt;}
.y41_c00129{bottom:644.230324pt;}
.y40_c00129{bottom:644.665461pt;}
.y3f_c00129{bottom:644.899476pt;}
.y3e_c00129{bottom:645.114295pt;}
.y3d_c00129{bottom:659.935272pt;}
.y3c_c00129{bottom:660.437088pt;}
.y3b_c00129{bottom:661.114540pt;}
.y3a_c00129{bottom:661.563593pt;}
.y39_c00129{bottom:661.910011pt;}
.y38_c00129{bottom:662.406313pt;}
.y37_c00129{bottom:662.727611pt;}
.y36_c00129{bottom:663.220804pt;}
.y35_c00129{bottom:663.514341pt;}
.y34_c00129{bottom:663.928875pt;}
.y33_c00129{bottom:664.700252pt;}
.y32_c00129{bottom:665.034673pt;}
.y31_c00129{bottom:680.636524pt;}
.y30_c00129{bottom:680.902243pt;}
.y2f_c00129{bottom:681.294927pt;}
.y2e_c00129{bottom:682.015448pt;}
.y2d_c00129{bottom:682.240283pt;}
.y2c_c00129{bottom:682.627613pt;}
.y2b_c00129{bottom:683.192223pt;}
.y2a_c00129{bottom:683.394607pt;}
.y29_c00129{bottom:683.784651pt;}
.y28_c00129{bottom:684.308127pt;}
.y27_c00129{bottom:685.028575pt;}
.y26_c00129{bottom:685.478684pt;}
.y25_c00129{bottom:685.676551pt;}
.y24_c00129{bottom:700.620473pt;}
.y23_c00129{bottom:700.828385pt;}
.y22_c00129{bottom:701.750680pt;}
.y21_c00129{bottom:702.047977pt;}
.y20_c00129{bottom:702.592300pt;}
.y1f_c00129{bottom:702.811651pt;}
.y1e_c00129{bottom:703.736527pt;}
.y1d_c00129{bottom:704.145956pt;}
.y1c_c00129{bottom:704.482499pt;}
.y1b_c00129{bottom:704.819804pt;}
.y1a_c00129{bottom:705.203027pt;}
.y19_c00129{bottom:705.360343pt;}
.y18_c00129{bottom:721.059287pt;}
.y17_c00129{bottom:721.710549pt;}
.y16_c00129{bottom:722.069413pt;}
.y15_c00129{bottom:722.683148pt;}
.y14_c00129{bottom:723.057015pt;}
.y13_c00129{bottom:723.399116pt;}
.y12_c00129{bottom:724.202387pt;}
.y11_c00129{bottom:724.856319pt;}
.y10_c00129{bottom:725.178680pt;}
.yf_c00129{bottom:725.361793pt;}
.ye_c00129{bottom:725.563883pt;}
.yd_c00129{bottom:725.758889pt;}
.yc_c00129{bottom:741.335361pt;}
.yb_c00129{bottom:742.549483pt;}
.ya_c00129{bottom:742.945600pt;}
.y9_c00129{bottom:743.103560pt;}
.y8_c00129{bottom:743.483749pt;}
.y7_c00129{bottom:743.700713pt;}
.y6_c00129{bottom:743.922429pt;}
.y5_c00129{bottom:744.392349pt;}
.y4_c00129{bottom:744.685463pt;}
.y3_c00129{bottom:745.342808pt;}
.y2_c00129{bottom:745.741507pt;}
.y1_c00129{bottom:745.920000pt;}
.h13_c00129{height:56.009071pt;}
.h10_c00129{height:56.942556pt;}
.h8_c00129{height:57.874073pt;}
.hb_c00129{height:57.883330pt;}
.h2_c00129{height:58.803557pt;}
.h3_c00129{height:60.670337pt;}
.h9_c00129{height:60.675432pt;}
.h12_c00129{height:60.676494pt;}
.hc_c00129{height:60.684136pt;}
.h4_c00129{height:61.603727pt;}
.h7_c00129{height:61.607884pt;}
.hd_c00129{height:61.617738pt;}
.h5_c00129{height:62.537116pt;}
.h14_c00129{height:62.543463pt;}
.hf_c00129{height:62.551340pt;}
.h6_c00129{height:63.470506pt;}
.h11_c00129{height:63.476947pt;}
.he_c00129{height:63.484942pt;}
.ha_c00129{height:64.409305pt;}
.h15_c00129{height:66.277401pt;}
.h0_c00129{height:896.400000pt;}
.h1_c00129{height:896.666667pt;}
.w0_c00129{width:601.680000pt;}
.w1_c00129{width:602.000000pt;}
.x0_c00129{left:0.000000pt;}
.x86_c00129{left:75.262667pt;}
.xa2_c00129{left:79.614037pt;}
.x8f_c00129{left:80.914923pt;}
.xa7_c00129{left:125.244853pt;}
.xb7_c00129{left:126.318861pt;}
.xb3_c00129{left:127.383587pt;}
.x98_c00129{left:128.626421pt;}
.x82_c00129{left:129.750667pt;}
.x66_c00129{left:130.997451pt;}
.x61_c00129{left:131.959352pt;}
.x4a_c00129{left:132.908747pt;}
.x37_c00129{left:134.361705pt;}
.x15_c00129{left:135.323115pt;}
.x1_c00129{left:136.285333pt;}
.xbc_c00129{left:139.538624pt;}
.xcd_c00129{left:141.115589pt;}
.x90_c00129{left:142.086389pt;}
.x83_c00129{left:143.949333pt;}
.x87_c00129{left:145.418667pt;}
.x6e_c00129{left:146.938667pt;}
.x16_c00129{left:148.412301pt;}
.x21_c00129{left:150.044891pt;}
.x2_c00129{left:152.512000pt;}
.x2c_c00129{left:153.457780pt;}
.x91_c00129{left:156.935200pt;}
.xad_c00129{left:162.509333pt;}
.x76_c00129{left:165.162112pt;}
.x42_c00129{left:167.602008pt;}
.xd_c00129{left:168.869829pt;}
.x4b_c00129{left:170.940408pt;}
.x7c_c00129{left:173.021333pt;}
.x99_c00129{left:175.186688pt;}
.xc9_c00129{left:177.632512pt;}
.x2d_c00129{left:179.131875pt;}
.x17_c00129{left:180.341283pt;}
.xe_c00129{left:184.183001pt;}
.x3_c00129{left:188.757333pt;}
.x58_c00129{left:190.862575pt;}
.x88_c00129{left:192.292000pt;}
.xc6_c00129{left:194.133613pt;}
.x43_c00129{left:195.972044pt;}
.xce_c00129{left:198.597224pt;}
.xb4_c00129{left:200.024933pt;}
.x38_c00129{left:202.357543pt;}
.x62_c00129{left:204.316169pt;}
.xa8_c00129{left:206.354901pt;}
.x18_c00129{left:208.459641pt;}
.xf_c00129{left:211.064041pt;}
.x89_c00129{left:212.549333pt;}
.x9a_c00129{left:217.750475pt;}
.x59_c00129{left:220.155951pt;}
.xc1_c00129{left:221.046016pt;}
.x44_c00129{left:222.347457pt;}
.x84_c00129{left:223.406667pt;}
.x67_c00129{left:225.173899pt;}
.xae_c00129{left:226.282667pt;}
.x4c_c00129{left:228.032567pt;}
.xb8_c00129{left:230.198861pt;}
.xbd_c00129{left:234.777291pt;}
.x19_c00129{left:236.508667pt;}
.x2e_c00129{left:238.467903pt;}
.x22_c00129{left:240.093577pt;}
.x4d_c00129{left:242.001284pt;}
.x92_c00129{left:243.260949pt;}
.x39_c00129{left:244.897937pt;}
.xca_c00129{left:247.472597pt;}
.x4_c00129{left:248.516000pt;}
.x7d_c00129{left:250.112000pt;}
.x53_c00129{left:252.797695pt;}
.x9e_c00129{left:253.966272pt;}
.x8a_c00129{left:255.890667pt;}
.x4e_c00129{left:259.997825pt;}
.x93_c00129{left:263.127797pt;}
.x10_c00129{left:265.542107pt;}
.xbe_c00129{left:269.169291pt;}
.x1a_c00129{left:270.577619pt;}
.x63_c00129{left:272.231859pt;}
.x45_c00129{left:273.458328pt;}
.x5_c00129{left:275.162667pt;}
.x68_c00129{left:276.091873pt;}
.x3a_c00129{left:278.257204pt;}
.x23_c00129{left:280.408697pt;}
.x7e_c00129{left:281.649333pt;}
.xb9_c00129{left:287.146861pt;}
.x9f_c00129{left:289.145685pt;}
.xa3_c00129{left:290.584512pt;}
.x2f_c00129{left:292.897367pt;}
.x3b_c00129{left:298.418097pt;}
.x5a_c00129{left:300.080445pt;}
.x6f_c00129{left:302.485333pt;}
.x54_c00129{left:303.680784pt;}
.x24_c00129{left:310.412037pt;}
.x7f_c00129{left:312.133333pt;}
.x46_c00129{left:313.066796pt;}
.x4f_c00129{left:315.454057pt;}
.xaf_c00129{left:316.769333pt;}
.x6_c00129{left:317.882667pt;}
.x5b_c00129{left:320.000899pt;}
.xbf_c00129{left:322.863957pt;}
.x25_c00129{left:326.022367pt;}
.x55_c00129{left:326.961091pt;}
.x70_c00129{left:329.068000pt;}
.x30_c00129{left:330.823197pt;}
.x11_c00129{left:332.505373pt;}
.x77_c00129{left:334.160736pt;}
.x94_c00129{left:335.626229pt;}
.x7_c00129{left:338.038667pt;}
.x3c_c00129{left:340.713173pt;}
.x8b_c00129{left:343.512000pt;}
.xc7_c00129{left:344.669568pt;}
.x9b_c00129{left:345.775168pt;}
.x1b_c00129{left:347.626101pt;}
.xc2_c00129{left:348.534379pt;}
.xb5_c00129{left:349.862221pt;}
.xc0_c00129{left:351.423957pt;}
.x78_c00129{left:354.325749pt;}
.x31_c00129{left:355.546655pt;}
.x8_c00129{left:357.762667pt;}
.x64_c00129{left:359.602683pt;}
.x12_c00129{left:361.059732pt;}
.xb0_c00129{left:362.221333pt;}
.x3d_c00129{left:363.414008pt;}
.x1c_c00129{left:365.869896pt;}
.xa9_c00129{left:366.795061pt;}
.x26_c00129{left:369.470747pt;}
.x69_c00129{left:373.289464pt;}
.xa4_c00129{left:375.649685pt;}
.xcf_c00129{left:378.533960pt;}
.x9c_c00129{left:382.419552pt;}
.x50_c00129{left:385.754963pt;}
.x56_c00129{left:388.645044pt;}
.x71_c00129{left:389.845333pt;}
.x9_c00129{left:392.325333pt;}
.x32_c00129{left:393.755152pt;}
.xb1_c00129{left:395.353333pt;}
.xba_c00129{left:397.990861pt;}
.x27_c00129{left:399.227420pt;}
.x95_c00129{left:400.920971pt;}
.x8c_c00129{left:403.272000pt;}
.xc3_c00129{left:404.896037pt;}
.xa_c00129{left:406.685333pt;}
.x9d_c00129{left:409.320117pt;}
.x1d_c00129{left:411.232064pt;}
.x5c_c00129{left:413.116792pt;}
.x6a_c00129{left:415.264025pt;}
.x28_c00129{left:416.515039pt;}
.x33_c00129{left:420.398565pt;}
.xaa_c00129{left:424.861685pt;}
.x3e_c00129{left:428.784571pt;}
.x72_c00129{left:430.652000pt;}
.xa0_c00129{left:433.116192pt;}
.x1e_c00129{left:435.955785pt;}
.xd0_c00129{left:437.748904pt;}
.x47_c00129{left:439.309357pt;}
.x6b_c00129{left:440.218383pt;}
.xb_c00129{left:442.696000pt;}
.xa5_c00129{left:444.793696pt;}
.x51_c00129{left:447.020264pt;}
.xb2_c00129{left:448.637333pt;}
.xc4_c00129{left:452.152531pt;}
.x79_c00129{left:453.922816pt;}
.x34_c00129{left:454.917803pt;}
.xcb_c00129{left:455.816829pt;}
.xab_c00129{left:456.807584pt;}
.x3f_c00129{left:460.242548pt;}
.x8d_c00129{left:462.557333pt;}
.x73_c00129{left:464.734667pt;}
.x7a_c00129{left:465.909291pt;}
.xb6_c00129{left:468.372109pt;}
.xd1_c00129{left:470.789661pt;}
.x29_c00129{left:471.955155pt;}
.x13_c00129{left:473.403848pt;}
.x5d_c00129{left:476.857991pt;}
.xac_c00129{left:478.112405pt;}
.x52_c00129{left:479.128189pt;}
.x65_c00129{left:481.040011pt;}
.x96_c00129{left:483.495541pt;}
.x57_c00129{left:485.607443pt;}
.x40_c00129{left:487.785947pt;}
.x80_c00129{left:491.122667pt;}
.xa1_c00129{left:492.400907pt;}
.x5e_c00129{left:493.295939pt;}
.xbb_c00129{left:494.253528pt;}
.xc5_c00129{left:495.689072pt;}
.x48_c00129{left:497.632081pt;}
.x74_c00129{left:499.362667pt;}
.x2a_c00129{left:502.198495pt;}
.xa6_c00129{left:505.885173pt;}
.x35_c00129{left:507.048659pt;}
.x5f_c00129{left:511.111161pt;}
.x1f_c00129{left:512.769601pt;}
.x85_c00129{left:514.426667pt;}
.x75_c00129{left:516.098667pt;}
.x49_c00129{left:518.762279pt;}
.x6c_c00129{left:521.178377pt;}
.x2b_c00129{left:522.596707pt;}
.x14_c00129{left:527.639247pt;}
.x20_c00129{left:530.094744pt;}
.x41_c00129{left:533.396949pt;}
.x97_c00129{left:534.725568pt;}
.xcc_c00129{left:535.734056pt;}
.x7b_c00129{left:538.976117pt;}
.x81_c00129{left:540.340000pt;}
.xc8_c00129{left:541.770016pt;}
.x8e_c00129{left:542.992000pt;}
.x60_c00129{left:544.172376pt;}
.x36_c00129{left:545.637141pt;}
.x6d_c00129{left:548.951211pt;}
.xc_c00129{left:553.070667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m15a_c00130{transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011783,0.000189,-0.003999,0.249968,0,0);}
.mb6_c00130{transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);}
.m100_c00130{transform:matrix(0.058433,0.000935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.058433,0.000935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.058433,0.000935,-0.003999,0.249968,0,0);}
.m9_c00130{transform:matrix(0.070667,0.001343,-0.004749,0.249955,0,0);-ms-transform:matrix(0.070667,0.001343,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.070667,0.001343,-0.004749,0.249955,0,0);}
.m5_c00130{transform:matrix(0.083642,0.002342,-0.006997,0.249902,0,0);-ms-transform:matrix(0.083642,0.002342,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.083642,0.002342,-0.006997,0.249902,0,0);}
.m48_c00130{transform:matrix(0.083842,0.001174,-0.003500,0.249976,0,0);-ms-transform:matrix(0.083842,0.001174,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.083842,0.001174,-0.003500,0.249976,0,0);}
.m63_c00130{transform:matrix(0.092923,0.001487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.092923,0.001487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.092923,0.001487,-0.003999,0.249968,0,0);}
.m3d_c00130{transform:matrix(0.097035,0.001358,-0.003500,0.249976,0,0);-ms-transform:matrix(0.097035,0.001358,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.097035,0.001358,-0.003500,0.249976,0,0);}
.m83_c00130{transform:matrix(0.097343,0.001557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.097343,0.001557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.097343,0.001557,-0.003999,0.249968,0,0);}
.m19_c00130{transform:matrix(0.099035,0.001386,-0.003500,0.249976,0,0);-ms-transform:matrix(0.099035,0.001386,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.099035,0.001386,-0.003500,0.249976,0,0);}
.m8d_c00130{transform:matrix(0.099722,0.001596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.099722,0.001596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.099722,0.001596,-0.003999,0.249968,0,0);}
.m16_c00130{transform:matrix(0.104105,0.001457,-0.003500,0.249976,0,0);-ms-transform:matrix(0.104105,0.001457,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.104105,0.001457,-0.003500,0.249976,0,0);}
.m82_c00130{transform:matrix(0.110191,0.001763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.110191,0.001763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.110191,0.001763,-0.003999,0.249968,0,0);}
.mb5_c00130{transform:matrix(0.125794,0.002013,-0.003999,0.249968,0,0);-ms-transform:matrix(0.125794,0.002013,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.125794,0.002013,-0.003999,0.249968,0,0);}
.m12a_c00130{transform:matrix(0.129018,0.002064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129018,0.002064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129018,0.002064,-0.003999,0.249968,0,0);}
.mb4_c00130{transform:matrix(0.133143,0.002130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.133143,0.002130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.133143,0.002130,-0.003999,0.249968,0,0);}
.m92_c00130{transform:matrix(0.134213,0.002147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134213,0.002147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134213,0.002147,-0.003999,0.249968,0,0);}
.mdf_c00130{transform:matrix(0.138692,0.002219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138692,0.002219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138692,0.002219,-0.003999,0.249968,0,0);}
.m163_c00130{transform:matrix(0.142622,0.002282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.142622,0.002282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.142622,0.002282,-0.003999,0.249968,0,0);}
.m124_c00130{transform:matrix(0.144811,0.002317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.144811,0.002317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.144811,0.002317,-0.003999,0.249968,0,0);}
.m4b_c00130{transform:matrix(0.145461,0.002036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145461,0.002036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145461,0.002036,-0.003500,0.249976,0,0);}
.m118_c00130{transform:matrix(0.147756,0.002364,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147756,0.002364,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147756,0.002364,-0.003999,0.249968,0,0);}
.m166_c00130{transform:matrix(0.147821,0.002365,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147821,0.002365,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147821,0.002365,-0.003999,0.249968,0,0);}
.mf7_c00130{transform:matrix(0.148336,0.002373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148336,0.002373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148336,0.002373,-0.003999,0.249968,0,0);}
.m122_c00130{transform:matrix(0.148936,0.002383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148936,0.002383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148936,0.002383,-0.003999,0.249968,0,0);}
.mc7_c00130{transform:matrix(0.150291,0.002405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150291,0.002405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150291,0.002405,-0.003999,0.249968,0,0);}
.med_c00130{transform:matrix(0.150586,0.002409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150586,0.002409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150586,0.002409,-0.003999,0.249968,0,0);}
.m133_c00130{transform:matrix(0.150651,0.002410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150651,0.002410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150651,0.002410,-0.003999,0.249968,0,0);}
.ma3_c00130{transform:matrix(0.150686,0.002411,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150686,0.002411,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150686,0.002411,-0.003999,0.249968,0,0);}
.me2_c00130{transform:matrix(0.151326,0.002421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151326,0.002421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151326,0.002421,-0.003999,0.249968,0,0);}
.m6e_c00130{transform:matrix(0.151451,0.002423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151451,0.002423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151451,0.002423,-0.003999,0.249968,0,0);}
.m6a_c00130{transform:matrix(0.151541,0.002425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151541,0.002425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151541,0.002425,-0.003999,0.249968,0,0);}
.m168_c00130{transform:matrix(0.151976,0.002432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151976,0.002432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151976,0.002432,-0.003999,0.249968,0,0);}
.m89_c00130{transform:matrix(0.152051,0.002433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152051,0.002433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152051,0.002433,-0.003999,0.249968,0,0);}
.m72_c00130{transform:matrix(0.152126,0.002434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152126,0.002434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152126,0.002434,-0.003999,0.249968,0,0);}
.md5_c00130{transform:matrix(0.152755,0.002444,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152755,0.002444,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152755,0.002444,-0.003999,0.249968,0,0);}
.m11e_c00130{transform:matrix(0.152825,0.002445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152825,0.002445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152825,0.002445,-0.003999,0.249968,0,0);}
.m111_c00130{transform:matrix(0.152980,0.002448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152980,0.002448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152980,0.002448,-0.003999,0.249968,0,0);}
.mab_c00130{transform:matrix(0.153565,0.002457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153565,0.002457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153565,0.002457,-0.003999,0.249968,0,0);}
.m13f_c00130{transform:matrix(0.154630,0.002474,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154630,0.002474,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154630,0.002474,-0.003999,0.249968,0,0);}
.m116_c00130{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);}
.mf6_c00130{transform:matrix(0.155635,0.002490,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155635,0.002490,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155635,0.002490,-0.003999,0.249968,0,0);}
.ma8_c00130{transform:matrix(0.156625,0.002506,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156625,0.002506,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156625,0.002506,-0.003999,0.249968,0,0);}
.md0_c00130{transform:matrix(0.159220,0.002548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159220,0.002548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159220,0.002548,-0.003999,0.249968,0,0);}
.m6d_c00130{transform:matrix(0.159380,0.002550,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159380,0.002550,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159380,0.002550,-0.003999,0.249968,0,0);}
.m139_c00130{transform:matrix(0.159585,0.002553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159585,0.002553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159585,0.002553,-0.003999,0.249968,0,0);}
.m121_c00130{transform:matrix(0.159705,0.002555,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159705,0.002555,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159705,0.002555,-0.003999,0.249968,0,0);}
.m136_c00130{transform:matrix(0.160030,0.002560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160030,0.002560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160030,0.002560,-0.003999,0.249968,0,0);}
.m9a_c00130{transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);}
.mc0_c00130{transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160619,0.002570,-0.003999,0.249968,0,0);}
.m8c_c00130{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);}
.m2d_c00130{transform:matrix(0.161264,0.002258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161264,0.002258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161264,0.002258,-0.003500,0.249976,0,0);}
.mb0_c00130{transform:matrix(0.161659,0.002587,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161659,0.002587,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161659,0.002587,-0.003999,0.249968,0,0);}
.m13e_c00130{transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);}
.m125_c00130{transform:matrix(0.162809,0.002605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162809,0.002605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162809,0.002605,-0.003999,0.249968,0,0);}
.m115_c00130{transform:matrix(0.164019,0.002624,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164019,0.002624,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164019,0.002624,-0.003999,0.249968,0,0);}
.m87_c00130{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);}
.mf2_c00130{transform:matrix(0.165799,0.002653,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165799,0.002653,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165799,0.002653,-0.003999,0.249968,0,0);}
.m30_c00130{transform:matrix(0.165824,0.002322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165824,0.002322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165824,0.002322,-0.003500,0.249976,0,0);}
.m14f_c00130{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);}
.m13b_c00130{transform:matrix(0.165929,0.002655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165929,0.002655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165929,0.002655,-0.003999,0.249968,0,0);}
.m68_c00130{transform:matrix(0.166419,0.002663,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166419,0.002663,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166419,0.002663,-0.003999,0.249968,0,0);}
.m56_c00130{transform:matrix(0.166484,0.002664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166484,0.002664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166484,0.002664,-0.003999,0.249968,0,0);}
.m108_c00130{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);}
.me5_c00130{transform:matrix(0.167024,0.002672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167024,0.002672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167024,0.002672,-0.003999,0.249968,0,0);}
.ma5_c00130{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);}
.m98_c00130{transform:matrix(0.167194,0.002675,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167194,0.002675,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167194,0.002675,-0.003999,0.249968,0,0);}
.m11f_c00130{transform:matrix(0.167234,0.002676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167234,0.002676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167234,0.002676,-0.003999,0.249968,0,0);}
.m6c_c00130{transform:matrix(0.167749,0.002684,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167749,0.002684,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167749,0.002684,-0.003999,0.249968,0,0);}
.m113_c00130{transform:matrix(0.167998,0.002688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167998,0.002688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167998,0.002688,-0.003999,0.249968,0,0);}
.m33_c00130{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);}
.m14e_c00130{transform:matrix(0.168508,0.002696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168508,0.002696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168508,0.002696,-0.003999,0.249968,0,0);}
.m6b_c00130{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);}
.md2_c00130{transform:matrix(0.168948,0.002703,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168948,0.002703,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168948,0.002703,-0.003999,0.249968,0,0);}
.m8e_c00130{transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);}
.me7_c00130{transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170263,0.002724,-0.003999,0.249968,0,0);}
.m11a_c00130{transform:matrix(0.170268,0.002724,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170268,0.002724,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170268,0.002724,-0.003999,0.249968,0,0);}
.m12e_c00130{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);}
.m131_c00130{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);}
.mb9_c00130{transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);}
.m7c_c00130{transform:matrix(0.171143,0.002738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171143,0.002738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171143,0.002738,-0.003999,0.249968,0,0);}
.mb3_c00130{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);}
.mae_c00130{transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);}
.m78_c00130{transform:matrix(0.171618,0.002746,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171618,0.002746,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171618,0.002746,-0.003999,0.249968,0,0);}
.mfd_c00130{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);}
.m160_c00130{transform:matrix(0.171908,0.002751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171908,0.002751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171908,0.002751,-0.003999,0.249968,0,0);}
.m109_c00130{transform:matrix(0.171928,0.002751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171928,0.002751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171928,0.002751,-0.003999,0.249968,0,0);}
.mad_c00130{transform:matrix(0.172798,0.002765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172798,0.002765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172798,0.002765,-0.003999,0.249968,0,0);}
.ma2_c00130{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);}
.m74_c00130{transform:matrix(0.173368,0.002774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173368,0.002774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173368,0.002774,-0.003999,0.249968,0,0);}
.m55_c00130{transform:matrix(0.173538,0.002777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173538,0.002777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173538,0.002777,-0.003999,0.249968,0,0);}
.m127_c00130{transform:matrix(0.173668,0.002779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173668,0.002779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173668,0.002779,-0.003999,0.249968,0,0);}
.mfb_c00130{transform:matrix(0.173983,0.002784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173983,0.002784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173983,0.002784,-0.003999,0.249968,0,0);}
.mf1_c00130{transform:matrix(0.174238,0.002788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174238,0.002788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174238,0.002788,-0.003999,0.249968,0,0);}
.m58_c00130{transform:matrix(0.174473,0.002792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174473,0.002792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174473,0.002792,-0.003999,0.249968,0,0);}
.m4e_c00130{transform:matrix(0.174563,0.002444,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174563,0.002444,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174563,0.002444,-0.003500,0.249976,0,0);}
.m34_c00130{transform:matrix(0.174608,0.002445,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174608,0.002445,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174608,0.002445,-0.003500,0.249976,0,0);}
.m93_c00130{transform:matrix(0.175088,0.002801,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175088,0.002801,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175088,0.002801,-0.003999,0.249968,0,0);}
.m15e_c00130{transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);}
.m2a_c00130{transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175303,0.002454,-0.003500,0.249976,0,0);}
.m29_c00130{transform:matrix(0.175328,0.002455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175328,0.002455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175328,0.002455,-0.003500,0.249976,0,0);}
.m90_c00130{transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);}
.m27_c00130{transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);}
.m8_c00130{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);}
.m13d_c00130{transform:matrix(0.176602,0.002826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176602,0.002826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176602,0.002826,-0.003999,0.249968,0,0);}
.m114_c00130{transform:matrix(0.176682,0.002827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176682,0.002827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176682,0.002827,-0.003999,0.249968,0,0);}
.m135_c00130{transform:matrix(0.176917,0.002831,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176917,0.002831,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176917,0.002831,-0.003999,0.249968,0,0);}
.maf_c00130{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);}
.m7a_c00130{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);}
.m45_c00130{transform:matrix(0.177283,0.002482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177283,0.002482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177283,0.002482,-0.003500,0.249976,0,0);}
.m8f_c00130{transform:matrix(0.177372,0.002838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177372,0.002838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177372,0.002838,-0.003999,0.249968,0,0);}
.md1_c00130{transform:matrix(0.177457,0.002839,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177457,0.002839,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177457,0.002839,-0.003999,0.249968,0,0);}
.me4_c00130{transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);}
.m134_c00130{transform:matrix(0.178077,0.002849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178077,0.002849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178077,0.002849,-0.003999,0.249968,0,0);}
.m12f_c00130{transform:matrix(0.178762,0.002860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178762,0.002860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178762,0.002860,-0.003999,0.249968,0,0);}
.m126_c00130{transform:matrix(0.179067,0.002865,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179067,0.002865,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179067,0.002865,-0.003999,0.249968,0,0);}
.m12b_c00130{transform:matrix(0.179667,0.002875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179667,0.002875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179667,0.002875,-0.003999,0.249968,0,0);}
.m152_c00130{transform:matrix(0.179847,0.002878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179847,0.002878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179847,0.002878,-0.003999,0.249968,0,0);}
.mbc_c00130{transform:matrix(0.179862,0.002878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179862,0.002878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179862,0.002878,-0.003999,0.249968,0,0);}
.m28_c00130{transform:matrix(0.179877,0.002518,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179877,0.002518,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179877,0.002518,-0.003500,0.249976,0,0);}
.mb2_c00130{transform:matrix(0.179882,0.002878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179882,0.002878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179882,0.002878,-0.003999,0.249968,0,0);}
.md6_c00130{transform:matrix(0.179932,0.002879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179932,0.002879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179932,0.002879,-0.003999,0.249968,0,0);}
.m10e_c00130{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);}
.m149_c00130{transform:matrix(0.180437,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180437,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180437,0.002887,-0.003999,0.249968,0,0);}
.mb7_c00130{transform:matrix(0.180462,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180462,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180462,0.002887,-0.003999,0.249968,0,0);}
.m31_c00130{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);}
.m146_c00130{transform:matrix(0.180967,0.002895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180967,0.002895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180967,0.002895,-0.003999,0.249968,0,0);}
.m37_c00130{transform:matrix(0.181237,0.002537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181237,0.002537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181237,0.002537,-0.003500,0.249976,0,0);}
.m3f_c00130{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);}
.mfe_c00130{transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);}
.m2e_c00130{transform:matrix(0.181862,0.002546,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181862,0.002546,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181862,0.002546,-0.003500,0.249976,0,0);}
.m50_c00130{transform:matrix(0.182017,0.002548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182017,0.002548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182017,0.002548,-0.003500,0.249976,0,0);}
.m102_c00130{transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);}
.m110_c00130{transform:matrix(0.182677,0.002923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182677,0.002923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182677,0.002923,-0.003999,0.249968,0,0);}
.m24_c00130{transform:matrix(0.182697,0.002558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182697,0.002558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182697,0.002558,-0.003500,0.249976,0,0);}
.m67_c00130{transform:matrix(0.183552,0.002937,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183552,0.002937,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183552,0.002937,-0.003999,0.249968,0,0);}
.mdd_c00130{transform:matrix(0.183771,0.002940,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183771,0.002940,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183771,0.002940,-0.003999,0.249968,0,0);}
.m65_c00130{transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);}
.mfc_c00130{transform:matrix(0.184216,0.002947,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184216,0.002947,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184216,0.002947,-0.003999,0.249968,0,0);}
.ma7_c00130{transform:matrix(0.184226,0.002948,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184226,0.002948,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184226,0.002948,-0.003999,0.249968,0,0);}
.m91_c00130{transform:matrix(0.184466,0.002951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184466,0.002951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184466,0.002951,-0.003999,0.249968,0,0);}
.m9f_c00130{transform:matrix(0.184491,0.002952,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184491,0.002952,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184491,0.002952,-0.003999,0.249968,0,0);}
.mee_c00130{transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184651,0.002954,-0.003999,0.249968,0,0);}
.m4c_c00130{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);}
.m12d_c00130{transform:matrix(0.184841,0.002957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184841,0.002957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184841,0.002957,-0.003999,0.249968,0,0);}
.m3b_c00130{transform:matrix(0.184847,0.002588,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184847,0.002588,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184847,0.002588,-0.003500,0.249976,0,0);}
.m57_c00130{transform:matrix(0.185361,0.002966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185361,0.002966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185361,0.002966,-0.003999,0.249968,0,0);}
.mf5_c00130{transform:matrix(0.185376,0.002966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185376,0.002966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185376,0.002966,-0.003999,0.249968,0,0);}
.mf0_c00130{transform:matrix(0.185706,0.002971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185706,0.002971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185706,0.002971,-0.003999,0.249968,0,0);}
.m153_c00130{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);}
.mbf_c00130{transform:matrix(0.186066,0.002977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186066,0.002977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186066,0.002977,-0.003999,0.249968,0,0);}
.m80_c00130{transform:matrix(0.186271,0.002980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186271,0.002980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186271,0.002980,-0.003999,0.249968,0,0);}
.m13c_c00130{transform:matrix(0.186341,0.002981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186341,0.002981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186341,0.002981,-0.003999,0.249968,0,0);}
.m15b_c00130{transform:matrix(0.186646,0.002986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186646,0.002986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186646,0.002986,-0.003999,0.249968,0,0);}
.mc3_c00130{transform:matrix(0.186686,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186686,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186686,0.002987,-0.003999,0.249968,0,0);}
.m20_c00130{transform:matrix(0.186737,0.002614,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186737,0.002614,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186737,0.002614,-0.003500,0.249976,0,0);}
.m10a_c00130{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);}
.mac_c00130{transform:matrix(0.187121,0.002994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187121,0.002994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187121,0.002994,-0.003999,0.249968,0,0);}
.m49_c00130{transform:matrix(0.187142,0.002620,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187142,0.002620,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187142,0.002620,-0.003500,0.249976,0,0);}
.m117_c00130{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);}
.m148_c00130{transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);}
.m11b_c00130{transform:matrix(0.187506,0.003000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187506,0.003000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187506,0.003000,-0.003999,0.249968,0,0);}
.m69_c00130{transform:matrix(0.187521,0.003000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187521,0.003000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187521,0.003000,-0.003999,0.249968,0,0);}
.m138_c00130{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);}
.m79_c00130{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);}
.m9e_c00130{transform:matrix(0.187746,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187746,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187746,0.003004,-0.003999,0.249968,0,0);}
.m62_c00130{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);}
.mbe_c00130{transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);}
.m6_c00130{transform:matrix(0.188196,0.005269,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188196,0.005269,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188196,0.005269,-0.006997,0.249902,0,0);}
.m140_c00130{transform:matrix(0.188281,0.003012,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188281,0.003012,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188281,0.003012,-0.003999,0.249968,0,0);}
.me9_c00130{transform:matrix(0.188456,0.003015,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188456,0.003015,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188456,0.003015,-0.003999,0.249968,0,0);}
.mf4_c00130{transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188606,0.003018,-0.003999,0.249968,0,0);}
.m7b_c00130{transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);}
.me1_c00130{transform:matrix(0.188941,0.003023,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188941,0.003023,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188941,0.003023,-0.003999,0.249968,0,0);}
.ma4_c00130{transform:matrix(0.188946,0.003023,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188946,0.003023,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188946,0.003023,-0.003999,0.249968,0,0);}
.m1e_c00130{transform:matrix(0.189031,0.002646,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189031,0.002646,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189031,0.002646,-0.003500,0.249976,0,0);}
.mcb_c00130{transform:matrix(0.189266,0.003028,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189266,0.003028,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189266,0.003028,-0.003999,0.249968,0,0);}
.m3e_c00130{transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);}
.m1c_c00130{transform:matrix(0.189316,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189316,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189316,0.002650,-0.003500,0.249976,0,0);}
.m130_c00130{transform:matrix(0.189586,0.003033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189586,0.003033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189586,0.003033,-0.003999,0.249968,0,0);}
.m38_c00130{transform:matrix(0.189621,0.002655,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189621,0.002655,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189621,0.002655,-0.003500,0.249976,0,0);}
.mc6_c00130{transform:matrix(0.189971,0.003040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189971,0.003040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189971,0.003040,-0.003999,0.249968,0,0);}
.m141_c00130{transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);}
.m12c_c00130{transform:matrix(0.190526,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190526,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190526,0.003048,-0.003999,0.249968,0,0);}
.m4f_c00130{transform:matrix(0.190751,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190751,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190751,0.002671,-0.003500,0.249976,0,0);}
.m4_c00130{transform:matrix(0.190760,0.005341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190760,0.005341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190760,0.005341,-0.006997,0.249902,0,0);}
.mea_c00130{transform:matrix(0.190776,0.003052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190776,0.003052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190776,0.003052,-0.003999,0.249968,0,0);}
.m1d_c00130{transform:matrix(0.190871,0.002672,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190871,0.002672,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190871,0.002672,-0.003500,0.249976,0,0);}
.m14d_c00130{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);}
.mdc_c00130{transform:matrix(0.191181,0.003059,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191181,0.003059,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191181,0.003059,-0.003999,0.249968,0,0);}
.m66_c00130{transform:matrix(0.191266,0.003060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191266,0.003060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191266,0.003060,-0.003999,0.249968,0,0);}
.m104_c00130{transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);}
.m9c_c00130{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);}
.m2c_c00130{transform:matrix(0.191956,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191956,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191956,0.002687,-0.003500,0.249976,0,0);}
.ma_c00130{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);}
.m2b_c00130{transform:matrix(0.192101,0.002689,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192101,0.002689,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192101,0.002689,-0.003500,0.249976,0,0);}
.mf9_c00130{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);}
.mf8_c00130{transform:matrix(0.193070,0.003089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193070,0.003089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193070,0.003089,-0.003999,0.249968,0,0);}
.m5d_c00130{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);}
.m106_c00130{transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);}
.m97_c00130{transform:matrix(0.193620,0.003098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193620,0.003098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193620,0.003098,-0.003999,0.249968,0,0);}
.m123_c00130{transform:matrix(0.193840,0.003101,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193840,0.003101,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193840,0.003101,-0.003999,0.249968,0,0);}
.mbd_c00130{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);}
.mc2_c00130{transform:matrix(0.193985,0.003104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193985,0.003104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193985,0.003104,-0.003999,0.249968,0,0);}
.maa_c00130{transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194765,0.003116,-0.003999,0.249968,0,0);}
.m94_c00130{transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);}
.m11d_c00130{transform:matrix(0.195380,0.003126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195380,0.003126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195380,0.003126,-0.003999,0.249968,0,0);}
.m151_c00130{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);}
.m4a_c00130{transform:matrix(0.195901,0.002743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195901,0.002743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195901,0.002743,-0.003500,0.249976,0,0);}
.m25_c00130{transform:matrix(0.197016,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197016,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197016,0.002758,-0.003500,0.249976,0,0);}
.md7_c00130{transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);}
.m154_c00130{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);}
.mcf_c00130{transform:matrix(0.198025,0.003168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198025,0.003168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198025,0.003168,-0.003999,0.249968,0,0);}
.m119_c00130{transform:matrix(0.198200,0.003171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198200,0.003171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198200,0.003171,-0.003999,0.249968,0,0);}
.mce_c00130{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);}
.ma9_c00130{transform:matrix(0.198940,0.003183,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198940,0.003183,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198940,0.003183,-0.003999,0.249968,0,0);}
.m1f_c00130{transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);}
.mda_c00130{transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);}
.m99_c00130{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);}
.m8b_c00130{transform:matrix(0.200329,0.003205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200329,0.003205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200329,0.003205,-0.003999,0.249968,0,0);}
.m64_c00130{transform:matrix(0.200609,0.003210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200609,0.003210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200609,0.003210,-0.003999,0.249968,0,0);}
.m1b_c00130{transform:matrix(0.200995,0.002814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200995,0.002814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200995,0.002814,-0.003500,0.249976,0,0);}
.m103_c00130{transform:matrix(0.201239,0.003220,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201239,0.003220,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201239,0.003220,-0.003999,0.249968,0,0);}
.m96_c00130{transform:matrix(0.201524,0.003224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201524,0.003224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201524,0.003224,-0.003999,0.249968,0,0);}
.m112_c00130{transform:matrix(0.201569,0.003225,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201569,0.003225,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201569,0.003225,-0.003999,0.249968,0,0);}
.m107_c00130{transform:matrix(0.201774,0.003228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201774,0.003228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201774,0.003228,-0.003999,0.249968,0,0);}
.m22_c00130{transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);}
.mfa_c00130{transform:matrix(0.202134,0.003234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202134,0.003234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202134,0.003234,-0.003999,0.249968,0,0);}
.m1a_c00130{transform:matrix(0.202260,0.002832,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202260,0.002832,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202260,0.002832,-0.003500,0.249976,0,0);}
.mff_c00130{transform:matrix(0.202514,0.003240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202514,0.003240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202514,0.003240,-0.003999,0.249968,0,0);}
.m132_c00130{transform:matrix(0.202544,0.003241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202544,0.003241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202544,0.003241,-0.003999,0.249968,0,0);}
.md3_c00130{transform:matrix(0.202559,0.003241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202559,0.003241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202559,0.003241,-0.003999,0.249968,0,0);}
.me6_c00130{transform:matrix(0.202899,0.003246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202899,0.003246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202899,0.003246,-0.003999,0.249968,0,0);}
.m4d_c00130{transform:matrix(0.202950,0.002841,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202950,0.002841,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202950,0.002841,-0.003500,0.249976,0,0);}
.mef_c00130{transform:matrix(0.203359,0.003254,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203359,0.003254,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203359,0.003254,-0.003999,0.249968,0,0);}
.m54_c00130{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);}
.m42_c00130{transform:matrix(0.204080,0.002857,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204080,0.002857,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204080,0.002857,-0.003500,0.249976,0,0);}
.m150_c00130{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);}
.mc4_c00130{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);}
.m43_c00130{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);}
.md_c00130{transform:matrix(0.205010,0.002870,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205010,0.002870,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205010,0.002870,-0.003500,0.249976,0,0);}
.m14_c00130{transform:matrix(0.205130,0.002872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205130,0.002872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205130,0.002872,-0.003500,0.249976,0,0);}
.m10c_c00130{transform:matrix(0.205804,0.003293,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205804,0.003293,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205804,0.003293,-0.003999,0.249968,0,0);}
.m32_c00130{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);}
.m26_c00130{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);}
.m147_c00130{transform:matrix(0.206549,0.003305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206549,0.003305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206549,0.003305,-0.003999,0.249968,0,0);}
.me8_c00130{transform:matrix(0.207158,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207158,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207158,0.003315,-0.003999,0.249968,0,0);}
.m14a_c00130{transform:matrix(0.207323,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207323,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207323,0.003317,-0.003999,0.249968,0,0);}
.m120_c00130{transform:matrix(0.207358,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207358,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207358,0.003318,-0.003999,0.249968,0,0);}
.m86_c00130{transform:matrix(0.207423,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207423,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207423,0.003319,-0.003999,0.249968,0,0);}
.m137_c00130{transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);}
.meb_c00130{transform:matrix(0.207638,0.003322,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207638,0.003322,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207638,0.003322,-0.003999,0.249968,0,0);}
.mdb_c00130{transform:matrix(0.208473,0.003336,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208473,0.003336,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208473,0.003336,-0.003999,0.249968,0,0);}
.m10d_c00130{transform:matrix(0.208728,0.003340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208728,0.003340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208728,0.003340,-0.003999,0.249968,0,0);}
.m60_c00130{transform:matrix(0.208803,0.003341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208803,0.003341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208803,0.003341,-0.003999,0.249968,0,0);}
.mbb_c00130{transform:matrix(0.209213,0.003347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209213,0.003347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209213,0.003347,-0.003999,0.249968,0,0);}
.m77_c00130{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);}
.mde_c00130{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);}
.mb8_c00130{transform:matrix(0.210833,0.003373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210833,0.003373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210833,0.003373,-0.003999,0.249968,0,0);}
.m35_c00130{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);}
.m145_c00130{transform:matrix(0.211233,0.003380,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211233,0.003380,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211233,0.003380,-0.003999,0.249968,0,0);}
.m156_c00130{transform:matrix(0.211978,0.003392,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211978,0.003392,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211978,0.003392,-0.003999,0.249968,0,0);}
.me3_c00130{transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);}
.m105_c00130{transform:matrix(0.212708,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212708,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212708,0.003403,-0.003999,0.249968,0,0);}
.m10b_c00130{transform:matrix(0.212838,0.003405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212838,0.003405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212838,0.003405,-0.003999,0.249968,0,0);}
.m15_c00130{transform:matrix(0.213659,0.002991,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213659,0.002991,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213659,0.002991,-0.003500,0.249976,0,0);}
.ma1_c00130{transform:matrix(0.215252,0.003444,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215252,0.003444,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215252,0.003444,-0.003999,0.249968,0,0);}
.m61_c00130{transform:matrix(0.215547,0.003449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215547,0.003449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215547,0.003449,-0.003999,0.249968,0,0);}
.mc_c00130{transform:matrix(0.218364,0.003057,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218364,0.003057,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218364,0.003057,-0.003500,0.249976,0,0);}
.m14b_c00130{transform:matrix(0.218747,0.003500,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218747,0.003500,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218747,0.003500,-0.003999,0.249968,0,0);}
.m9b_c00130{transform:matrix(0.219957,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219957,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219957,0.003519,-0.003999,0.249968,0,0);}
.mb1_c00130{transform:matrix(0.221777,0.003548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221777,0.003548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221777,0.003548,-0.003999,0.249968,0,0);}
.m73_c00130{transform:matrix(0.222392,0.003558,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222392,0.003558,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222392,0.003558,-0.003999,0.249968,0,0);}
.mb_c00130{transform:matrix(0.222558,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222558,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222558,0.003116,-0.003500,0.249976,0,0);}
.mba_c00130{transform:matrix(0.222831,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222831,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222831,0.003565,-0.003999,0.249968,0,0);}
.m5a_c00130{transform:matrix(0.223426,0.003575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223426,0.003575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223426,0.003575,-0.003999,0.249968,0,0);}
.m3a_c00130{transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);}
.m142_c00130{transform:matrix(0.224236,0.003588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224236,0.003588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224236,0.003588,-0.003999,0.249968,0,0);}
.m11c_c00130{transform:matrix(0.224246,0.003588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224246,0.003588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224246,0.003588,-0.003999,0.249968,0,0);}
.md9_c00130{transform:matrix(0.224346,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224346,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224346,0.003590,-0.003999,0.249968,0,0);}
.m51_c00130{transform:matrix(0.225028,0.003150,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225028,0.003150,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225028,0.003150,-0.003500,0.249976,0,0);}
.m21_c00130{transform:matrix(0.225063,0.003151,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225063,0.003151,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225063,0.003151,-0.003500,0.249976,0,0);}
.mc1_c00130{transform:matrix(0.225266,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225266,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225266,0.003604,-0.003999,0.249968,0,0);}
.m15f_c00130{transform:matrix(0.226851,0.003630,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226851,0.003630,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226851,0.003630,-0.003999,0.249968,0,0);}
.m53_c00130{transform:matrix(0.229558,0.003214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229558,0.003214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229558,0.003214,-0.003500,0.249976,0,0);}
.m169_c00130{transform:matrix(0.230246,0.003684,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230246,0.003684,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230246,0.003684,-0.003999,0.249968,0,0);}
.m165_c00130{transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);}
.m36_c00130{transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232037,0.003249,-0.003500,0.249976,0,0);}
.mec_c00130{transform:matrix(0.232190,0.003715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232190,0.003715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232190,0.003715,-0.003999,0.249968,0,0);}
.m128_c00130{transform:matrix(0.232480,0.003720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232480,0.003720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232480,0.003720,-0.003999,0.249968,0,0);}
.m85_c00130{transform:matrix(0.233020,0.003728,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233020,0.003728,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233020,0.003728,-0.003999,0.249968,0,0);}
.m88_c00130{transform:matrix(0.234175,0.003747,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234175,0.003747,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234175,0.003747,-0.003999,0.249968,0,0);}
.m6f_c00130{transform:matrix(0.235510,0.003768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235510,0.003768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235510,0.003768,-0.003999,0.249968,0,0);}
.m5f_c00130{transform:matrix(0.236345,0.003782,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236345,0.003782,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236345,0.003782,-0.003999,0.249968,0,0);}
.m9d_c00130{transform:matrix(0.236935,0.003791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236935,0.003791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236935,0.003791,-0.003999,0.249968,0,0);}
.m95_c00130{transform:matrix(0.236960,0.003791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236960,0.003791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236960,0.003791,-0.003999,0.249968,0,0);}
.mc8_c00130{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);}
.md8_c00130{transform:matrix(0.239724,0.003836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239724,0.003836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239724,0.003836,-0.003999,0.249968,0,0);}
.m46_c00130{transform:matrix(0.240001,0.003360,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240001,0.003360,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240001,0.003360,-0.003500,0.249976,0,0);}
.m101_c00130{transform:matrix(0.240179,0.003843,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240179,0.003843,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240179,0.003843,-0.003999,0.249968,0,0);}
.m0_c00130{transform:matrix(0.240266,0.006727,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240266,0.006727,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240266,0.006727,-0.006997,0.249902,0,0);}
.m84_c00130{transform:matrix(0.240549,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240549,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240549,0.003849,-0.003999,0.249968,0,0);}
.m164_c00130{transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);}
.m2_c00130{transform:matrix(0.240986,0.006748,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240986,0.006748,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240986,0.006748,-0.006997,0.249902,0,0);}
.m155_c00130{transform:matrix(0.241734,0.003868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241734,0.003868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241734,0.003868,-0.003999,0.249968,0,0);}
.m167_c00130{transform:matrix(0.242219,0.003876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242219,0.003876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242219,0.003876,-0.003999,0.249968,0,0);}
.ma6_c00130{transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);}
.mf3_c00130{transform:matrix(0.245299,0.003925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245299,0.003925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245299,0.003925,-0.003999,0.249968,0,0);}
.m13_c00130{transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246506,0.003451,-0.003500,0.249976,0,0);}
.m81_c00130{transform:matrix(0.246708,0.003947,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246708,0.003947,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246708,0.003947,-0.003999,0.249968,0,0);}
.ma0_c00130{transform:matrix(0.247978,0.003968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247978,0.003968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247978,0.003968,-0.003999,0.249968,0,0);}
.m5e_c00130{transform:matrix(0.248028,0.003968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248028,0.003968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248028,0.003968,-0.003999,0.249968,0,0);}
.m7f_c00130{transform:matrix(0.248678,0.003979,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248678,0.003979,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248678,0.003979,-0.003999,0.249968,0,0);}
.m161_c00130{transform:matrix(0.249853,0.003998,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249853,0.003998,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249853,0.003998,-0.003999,0.249968,0,0);}
.m70_c00130{transform:matrix(0.253248,0.004052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253248,0.004052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253248,0.004052,-0.003999,0.249968,0,0);}
.m71_c00130{transform:matrix(0.256442,0.004103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256442,0.004103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256442,0.004103,-0.003999,0.249968,0,0);}
.m7e_c00130{transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);}
.m12_c00130{transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258100,0.003613,-0.003500,0.249976,0,0);}
.m15c_c00130{transform:matrix(0.259187,0.004147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259187,0.004147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259187,0.004147,-0.003999,0.249968,0,0);}
.m17_c00130{transform:matrix(0.262314,0.003672,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262314,0.003672,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262314,0.003672,-0.003500,0.249976,0,0);}
.m10f_c00130{transform:matrix(0.263971,0.004224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263971,0.004224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263971,0.004224,-0.003999,0.249968,0,0);}
.m11_c00130{transform:matrix(0.264574,0.003704,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264574,0.003704,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264574,0.003704,-0.003500,0.249976,0,0);}
.m15d_c00130{transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);}
.mcd_c00130{transform:matrix(0.264971,0.004240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264971,0.004240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264971,0.004240,-0.003999,0.249968,0,0);}
.m159_c00130{transform:matrix(0.268881,0.004302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268881,0.004302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268881,0.004302,-0.003999,0.249968,0,0);}
.m157_c00130{transform:matrix(0.274015,0.004384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274015,0.004384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274015,0.004384,-0.003999,0.249968,0,0);}
.m41_c00130{transform:matrix(0.275123,0.003852,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275123,0.003852,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275123,0.003852,-0.003500,0.249976,0,0);}
.m39_c00130{transform:matrix(0.275693,0.003860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275693,0.003860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275693,0.003860,-0.003500,0.249976,0,0);}
.m59_c00130{transform:matrix(0.276180,0.004419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276180,0.004419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276180,0.004419,-0.003999,0.249968,0,0);}
.m158_c00130{transform:matrix(0.276555,0.004425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276555,0.004425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276555,0.004425,-0.003999,0.249968,0,0);}
.m14c_c00130{transform:matrix(0.278419,0.004455,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278419,0.004455,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278419,0.004455,-0.003999,0.249968,0,0);}
.m13a_c00130{transform:matrix(0.281539,0.004505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281539,0.004505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281539,0.004505,-0.003999,0.249968,0,0);}
.m52_c00130{transform:matrix(0.283567,0.003970,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283567,0.003970,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283567,0.003970,-0.003500,0.249976,0,0);}
.md4_c00130{transform:matrix(0.284809,0.004557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284809,0.004557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284809,0.004557,-0.003999,0.249968,0,0);}
.m10_c00130{transform:matrix(0.286637,0.004013,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286637,0.004013,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286637,0.004013,-0.003500,0.249976,0,0);}
.m76_c00130{transform:matrix(0.288343,0.004613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288343,0.004613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288343,0.004613,-0.003999,0.249968,0,0);}
.m1_c00130{transform:matrix(0.290511,0.008134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.290511,0.008134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.290511,0.008134,-0.006997,0.249902,0,0);}
.m44_c00130{transform:matrix(0.293676,0.004111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293676,0.004111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293676,0.004111,-0.003500,0.249976,0,0);}
.m16a_c00130{transform:matrix(0.295360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295360,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.302200,0.004231,-0.003500,0.249976,0,0);-ms-transform:matrix(0.302200,0.004231,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.302200,0.004231,-0.003500,0.249976,0,0);}
.m3c_c00130{transform:matrix(0.311599,0.004362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.311599,0.004362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.311599,0.004362,-0.003500,0.249976,0,0);}
.m7d_c00130{transform:matrix(0.314030,0.005024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.314030,0.005024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.314030,0.005024,-0.003999,0.249968,0,0);}
.m162_c00130{transform:matrix(0.325378,0.005206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.325378,0.005206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.325378,0.005206,-0.003999,0.249968,0,0);}
.m144_c00130{transform:matrix(0.326513,0.005224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.326513,0.005224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.326513,0.005224,-0.003999,0.249968,0,0);}
.m3_c00130{transform:matrix(0.329226,0.009218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.329226,0.009218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.329226,0.009218,-0.006997,0.249902,0,0);}
.me0_c00130{transform:matrix(0.335157,0.005363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.335157,0.005363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.335157,0.005363,-0.003999,0.249968,0,0);}
.mc5_c00130{transform:matrix(0.341276,0.005460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.341276,0.005460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.341276,0.005460,-0.003999,0.249968,0,0);}
.mca_c00130{transform:matrix(0.345251,0.005524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.345251,0.005524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.345251,0.005524,-0.003999,0.249968,0,0);}
.m129_c00130{transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);}
.m5c_c00130{transform:matrix(0.358829,0.005741,-0.003999,0.249968,0,0);-ms-transform:matrix(0.358829,0.005741,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.358829,0.005741,-0.003999,0.249968,0,0);}
.mc9_c00130{transform:matrix(0.360279,0.005764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.360279,0.005764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.360279,0.005764,-0.003999,0.249968,0,0);}
.m5b_c00130{transform:matrix(0.362924,0.005807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.362924,0.005807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.362924,0.005807,-0.003999,0.249968,0,0);}
.me_c00130{transform:matrix(0.362964,0.005082,-0.003500,0.249976,0,0);-ms-transform:matrix(0.362964,0.005082,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.362964,0.005082,-0.003500,0.249976,0,0);}
.m23_c00130{transform:matrix(0.365499,0.005117,-0.003500,0.249976,0,0);-ms-transform:matrix(0.365499,0.005117,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.365499,0.005117,-0.003500,0.249976,0,0);}
.mf_c00130{transform:matrix(0.370279,0.005184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.370279,0.005184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.370279,0.005184,-0.003500,0.249976,0,0);}
.m75_c00130{transform:matrix(0.375287,0.006005,-0.003999,0.249968,0,0);-ms-transform:matrix(0.375287,0.006005,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.375287,0.006005,-0.003999,0.249968,0,0);}
.m7_c00130{transform:matrix(0.382795,0.010718,-0.006997,0.249902,0,0);-ms-transform:matrix(0.382795,0.010718,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.382795,0.010718,-0.006997,0.249902,0,0);}
.m143_c00130{transform:matrix(0.432170,0.006915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.432170,0.006915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.432170,0.006915,-0.003999,0.249968,0,0);}
.m18_c00130{transform:matrix(0.460195,0.006443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.460195,0.006443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.460195,0.006443,-0.003500,0.249976,0,0);}
.m47_c00130{transform:matrix(0.476648,0.006673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.476648,0.006673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.476648,0.006673,-0.003500,0.249976,0,0);}
.m8a_c00130{transform:matrix(0.496526,0.007944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.496526,0.007944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.496526,0.007944,-0.003999,0.249968,0,0);}
.mcc_c00130{transform:matrix(0.499841,0.007997,-0.003999,0.249968,0,0);-ms-transform:matrix(0.499841,0.007997,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.499841,0.007997,-0.003999,0.249968,0,0);}
.m2f_c00130{transform:matrix(0.638782,0.008943,-0.003500,0.249976,0,0);-ms-transform:matrix(0.638782,0.008943,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.638782,0.008943,-0.003500,0.249976,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;}
.fse_c00130{font-size:28.350000px;}
.fs5_c00130{font-size:63.008063px;}
.fs1_c00130{font-size:63.011370px;}
.fs2_c00130{font-size:64.056277px;}
.fs7_c00130{font-size:68.258735px;}
.fs6_c00130{font-size:69.308870px;}
.fs3_c00130{font-size:70.356894px;}
.fsc_c00130{font-size:70.359004px;}
.fsa_c00130{font-size:71.409139px;}
.fsd_c00130{font-size:72.459273px;}
.fs4_c00130{font-size:73.507203px;}
.fsb_c00130{font-size:73.509407px;}
.fs9_c00130{font-size:76.659811px;}
.fs8_c00130{font-size:86.111020px;}
.fs0_c00130{font-size:88.234568px;}
.y0_c00130{bottom:0.000000px;}
.y170_c00130{bottom:140.556792px;}
.y16f_c00130{bottom:144.788208px;}
.y16e_c00130{bottom:145.986576px;}
.y16d_c00130{bottom:147.639060px;}
.y16c_c00130{bottom:159.177732px;}
.y16b_c00130{bottom:160.522644px;}
.y16a_c00130{bottom:162.306864px;}
.y169_c00130{bottom:162.818148px;}
.y168_c00130{bottom:164.311236px;}
.y167_c00130{bottom:164.826972px;}
.y166_c00130{bottom:165.961920px;}
.y165_c00130{bottom:167.515344px;}
.y164_c00130{bottom:168.252480px;}
.y163_c00130{bottom:170.676504px;}
.y162_c00130{bottom:171.633960px;}
.y161_c00130{bottom:171.938100px;}
.y160_c00130{bottom:184.161492px;}
.y15f_c00130{bottom:184.456308px;}
.y15e_c00130{bottom:184.662780px;}
.y15d_c00130{bottom:185.515044px;}
.y15c_c00130{bottom:186.101436px;}
.y15b_c00130{bottom:186.367872px;}
.y15a_c00130{bottom:186.645696px;}
.y159_c00130{bottom:187.165284px;}
.y158_c00130{bottom:187.739520px;}
.y157_c00130{bottom:187.939116px;}
.y156_c00130{bottom:188.357880px;}
.y155_c00130{bottom:189.482064px;}
.y154_c00130{bottom:189.757428px;}
.y153_c00130{bottom:205.617468px;}
.y152_c00130{bottom:206.868924px;}
.y151_c00130{bottom:207.086076px;}
.y150_c00130{bottom:208.092420px;}
.y14f_c00130{bottom:209.638692px;}
.y14e_c00130{bottom:210.885360px;}
.y14d_c00130{bottom:212.187648px;}
.y14c_c00130{bottom:212.675652px;}
.y14b_c00130{bottom:214.198824px;}
.y14a_c00130{bottom:215.957436px;}
.y149_c00130{bottom:228.243324px;}
.y148_c00130{bottom:228.529380px;}
.y147_c00130{bottom:229.397220px;}
.y146_c00130{bottom:230.266236px;}
.y145_c00130{bottom:231.248184px;}
.y144_c00130{bottom:232.321824px;}
.y143_c00130{bottom:233.346816px;}
.y142_c00130{bottom:233.806092px;}
.y141_c00130{bottom:234.374616px;}
.y140_c00130{bottom:234.867384px;}
.y13f_c00130{bottom:236.874036px;}
.y13e_c00130{bottom:237.314160px;}
.y13d_c00130{bottom:238.096932px;}
.y13c_c00130{bottom:250.865448px;}
.y13b_c00130{bottom:251.418024px;}
.y13a_c00130{bottom:253.079964px;}
.y139_c00130{bottom:253.553772px;}
.y138_c00130{bottom:254.506128px;}
.y137_c00130{bottom:255.310764px;}
.y136_c00130{bottom:255.788808px;}
.y135_c00130{bottom:257.993652px;}
.y134_c00130{bottom:258.509616px;}
.y133_c00130{bottom:259.111632px;}
.y132_c00130{bottom:260.508444px;}
.y131_c00130{bottom:273.118392px;}
.y130_c00130{bottom:274.323996px;}
.y12f_c00130{bottom:275.065224px;}
.y12e_c00130{bottom:275.824056px;}
.y12d_c00130{bottom:276.469164px;}
.y12c_c00130{bottom:276.804048px;}
.y12b_c00130{bottom:278.274396px;}
.y12a_c00130{bottom:279.231012px;}
.y129_c00130{bottom:280.139688px;}
.y128_c00130{bottom:280.853520px;}
.y127_c00130{bottom:281.326320px;}
.y126_c00130{bottom:282.361704px;}
.y125_c00130{bottom:282.921144px;}
.y124_c00130{bottom:296.135376px;}
.y123_c00130{bottom:298.210716px;}
.y122_c00130{bottom:298.729428px;}
.y121_c00130{bottom:299.153952px;}
.y120_c00130{bottom:299.769120px;}
.y11f_c00130{bottom:300.936612px;}
.y11e_c00130{bottom:301.656492px;}
.y11d_c00130{bottom:302.417016px;}
.y11c_c00130{bottom:304.044840px;}
.y11b_c00130{bottom:304.623024px;}
.y11a_c00130{bottom:305.331000px;}
.y119_c00130{bottom:318.358500px;}
.y118_c00130{bottom:318.845520px;}
.y117_c00130{bottom:320.337540px;}
.y116_c00130{bottom:320.959680px;}
.y115_c00130{bottom:322.061868px;}
.y114_c00130{bottom:322.422432px;}
.y113_c00130{bottom:322.812288px;}
.y112_c00130{bottom:323.282628px;}
.y111_c00130{bottom:324.740208px;}
.y110_c00130{bottom:325.267872px;}
.y10f_c00130{bottom:326.085264px;}
.y10e_c00130{bottom:327.747096px;}
.y10d_c00130{bottom:341.147652px;}
.y10c_c00130{bottom:342.034788px;}
.y10b_c00130{bottom:343.406688px;}
.y10a_c00130{bottom:344.778660px;}
.y109_c00130{bottom:345.414528px;}
.y108_c00130{bottom:346.763448px;}
.y107_c00130{bottom:347.268636px;}
.y106_c00130{bottom:347.930508px;}
.y105_c00130{bottom:348.872748px;}
.y104_c00130{bottom:349.670196px;}
.y103_c00130{bottom:349.885248px;}
.y102_c00130{bottom:363.721536px;}
.y101_c00130{bottom:364.670592px;}
.y100_c00130{bottom:365.892636px;}
.yff_c00130{bottom:366.440556px;}
.yfe_c00130{bottom:367.653780px;}
.yfd_c00130{bottom:368.801472px;}
.yfc_c00130{bottom:369.597288px;}
.yfb_c00130{bottom:370.249500px;}
.yfa_c00130{bottom:370.722204px;}
.yf9_c00130{bottom:371.489064px;}
.yf8_c00130{bottom:372.305064px;}
.yf7_c00130{bottom:386.491140px;}
.yf6_c00130{bottom:386.925132px;}
.yf5_c00130{bottom:387.653880px;}
.yf4_c00130{bottom:388.561332px;}
.yf3_c00130{bottom:389.010252px;}
.yf2_c00130{bottom:389.731980px;}
.yf1_c00130{bottom:391.116888px;}
.yf0_c00130{bottom:391.546452px;}
.yef_c00130{bottom:392.176404px;}
.yee_c00130{bottom:393.242436px;}
.yed_c00130{bottom:393.919236px;}
.yec_c00130{bottom:394.986372px;}
.yeb_c00130{bottom:408.855240px;}
.yea_c00130{bottom:410.318928px;}
.ye9_c00130{bottom:411.339444px;}
.ye8_c00130{bottom:412.493016px;}
.ye7_c00130{bottom:413.138832px;}
.ye6_c00130{bottom:414.031704px;}
.ye5_c00130{bottom:415.089036px;}
.ye4_c00130{bottom:416.391864px;}
.ye3_c00130{bottom:417.397512px;}
.ye2_c00130{bottom:431.732628px;}
.ye1_c00130{bottom:432.707784px;}
.ye0_c00130{bottom:434.339376px;}
.ydf_c00130{bottom:434.845572px;}
.yde_c00130{bottom:435.385728px;}
.ydd_c00130{bottom:436.571796px;}
.ydc_c00130{bottom:437.331204px;}
.ydb_c00130{bottom:437.910864px;}
.yda_c00130{bottom:439.224408px;}
.yd9_c00130{bottom:440.080872px;}
.yd8_c00130{bottom:454.289928px;}
.yd7_c00130{bottom:454.446768px;}
.yd6_c00130{bottom:456.093696px;}
.yd5_c00130{bottom:457.041264px;}
.yd4_c00130{bottom:458.456844px;}
.yd3_c00130{bottom:459.302520px;}
.yd2_c00130{bottom:460.245840px;}
.yd1_c00130{bottom:461.174004px;}
.yd0_c00130{bottom:461.611596px;}
.ycf_c00130{bottom:462.223008px;}
.yce_c00130{bottom:476.756688px;}
.ycd_c00130{bottom:477.539472px;}
.ycc_c00130{bottom:477.887400px;}
.ycb_c00130{bottom:479.407716px;}
.yca_c00130{bottom:480.535932px;}
.yc9_c00130{bottom:481.280472px;}
.yc8_c00130{bottom:481.805640px;}
.yc7_c00130{bottom:482.825352px;}
.yc6_c00130{bottom:483.565836px;}
.yc5_c00130{bottom:484.245672px;}
.yc4_c00130{bottom:485.445816px;}
.yc3_c00130{bottom:499.253112px;}
.yc2_c00130{bottom:500.034528px;}
.yc1_c00130{bottom:500.798256px;}
.yc0_c00130{bottom:501.590676px;}
.ybf_c00130{bottom:503.070420px;}
.ybe_c00130{bottom:503.838984px;}
.ybd_c00130{bottom:504.973500px;}
.ybc_c00130{bottom:505.598460px;}
.ybb_c00130{bottom:505.933104px;}
.yba_c00130{bottom:507.559284px;}
.yb9_c00130{bottom:507.851040px;}
.yb8_c00130{bottom:522.424056px;}
.yb7_c00130{bottom:522.880464px;}
.yb6_c00130{bottom:523.648860px;}
.yb5_c00130{bottom:524.116896px;}
.yb4_c00130{bottom:524.490612px;}
.yb3_c00130{bottom:525.475908px;}
.yb2_c00130{bottom:527.052132px;}
.yb1_c00130{bottom:527.601204px;}
.yb0_c00130{bottom:528.140376px;}
.yaf_c00130{bottom:529.139556px;}
.yae_c00130{bottom:529.710372px;}
.yad_c00130{bottom:530.540904px;}
.yac_c00130{bottom:544.749912px;}
.yab_c00130{bottom:545.107056px;}
.yaa_c00130{bottom:545.549988px;}
.ya9_c00130{bottom:545.970780px;}
.ya8_c00130{bottom:546.698328px;}
.ya7_c00130{bottom:547.251432px;}
.ya6_c00130{bottom:548.093640px;}
.ya5_c00130{bottom:548.632080px;}
.ya4_c00130{bottom:550.297608px;}
.ya3_c00130{bottom:550.718232px;}
.ya2_c00130{bottom:551.593260px;}
.ya1_c00130{bottom:552.682968px;}
.ya0_c00130{bottom:566.939256px;}
.y9f_c00130{bottom:567.621720px;}
.y9e_c00130{bottom:568.524564px;}
.y9d_c00130{bottom:568.887972px;}
.y9c_c00130{bottom:569.704140px;}
.y9b_c00130{bottom:570.570576px;}
.y9a_c00130{bottom:571.232928px;}
.y99_c00130{bottom:572.788296px;}
.y98_c00130{bottom:573.342024px;}
.y97_c00130{bottom:573.725880px;}
.y96_c00130{bottom:574.505736px;}
.y95_c00130{bottom:575.095776px;}
.y171_c00130{bottom:589.543500px;}
.y94_c00130{bottom:589.636380px;}
.y93_c00130{bottom:590.390268px;}
.y92_c00130{bottom:590.701896px;}
.y91_c00130{bottom:591.241560px;}
.y90_c00130{bottom:591.701880px;}
.y8f_c00130{bottom:592.489920px;}
.y8e_c00130{bottom:594.862968px;}
.y8d_c00130{bottom:595.417188px;}
.y8c_c00130{bottom:596.466852px;}
.y8b_c00130{bottom:597.307020px;}
.y8a_c00130{bottom:597.778416px;}
.y89_c00130{bottom:611.386884px;}
.y88_c00130{bottom:612.130464px;}
.y87_c00130{bottom:613.739028px;}
.y86_c00130{bottom:614.064660px;}
.y85_c00130{bottom:614.865072px;}
.y84_c00130{bottom:615.827340px;}
.y83_c00130{bottom:616.128756px;}
.y82_c00130{bottom:617.130852px;}
.y81_c00130{bottom:617.549208px;}
.y80_c00130{bottom:617.957040px;}
.y7f_c00130{bottom:619.404372px;}
.y7e_c00130{bottom:619.642716px;}
.y7d_c00130{bottom:634.040364px;}
.y7c_c00130{bottom:634.577376px;}
.y7b_c00130{bottom:635.325084px;}
.y7a_c00130{bottom:636.083148px;}
.y79_c00130{bottom:637.088760px;}
.y78_c00130{bottom:637.522044px;}
.y77_c00130{bottom:638.237268px;}
.y76_c00130{bottom:638.437716px;}
.y75_c00130{bottom:638.726040px;}
.y74_c00130{bottom:638.998788px;}
.y73_c00130{bottom:639.321744px;}
.y72_c00130{bottom:640.436544px;}
.y71_c00130{bottom:640.955136px;}
.y70_c00130{bottom:641.206296px;}
.y6f_c00130{bottom:641.519328px;}
.y6e_c00130{bottom:657.728052px;}
.y6d_c00130{bottom:658.132236px;}
.y6c_c00130{bottom:659.252460px;}
.y6b_c00130{bottom:659.692608px;}
.y6a_c00130{bottom:660.381156px;}
.y69_c00130{bottom:661.069488px;}
.y68_c00130{bottom:661.890888px;}
.y67_c00130{bottom:662.919816px;}
.y66_c00130{bottom:663.342180px;}
.y65_c00130{bottom:664.310652px;}
.y64_c00130{bottom:664.468764px;}
.y63_c00130{bottom:679.529028px;}
.y62_c00130{bottom:679.892964px;}
.y61_c00130{bottom:681.059484px;}
.y60_c00130{bottom:681.898500px;}
.y5f_c00130{bottom:682.394412px;}
.y5e_c00130{bottom:682.632540px;}
.y5d_c00130{bottom:682.990572px;}
.y5c_c00130{bottom:683.281500px;}
.y5b_c00130{bottom:684.598164px;}
.y5a_c00130{bottom:685.371132px;}
.y59_c00130{bottom:685.695516px;}
.y58_c00130{bottom:686.078916px;}
.y57_c00130{bottom:686.589924px;}
.y56_c00130{bottom:686.881500px;}
.y55_c00130{bottom:701.652609px;}
.y54_c00130{bottom:701.951670px;}
.y53_c00130{bottom:702.624237px;}
.y52_c00130{bottom:703.296699px;}
.y51_c00130{bottom:703.679067px;}
.y50_c00130{bottom:704.034240px;}
.y4f_c00130{bottom:704.733519px;}
.y4e_c00130{bottom:705.066117px;}
.y4d_c00130{bottom:706.143837px;}
.y4c_c00130{bottom:706.442268px;}
.y4b_c00130{bottom:706.797714px;}
.y4a_c00130{bottom:707.754642px;}
.y49_c00130{bottom:707.941500px;}
.y48_c00130{bottom:723.749646px;}
.y47_c00130{bottom:725.542308px;}
.y46_c00130{bottom:726.367746px;}
.y45_c00130{bottom:727.227693px;}
.y44_c00130{bottom:728.559000px;}
.y43_c00130{bottom:729.025509px;}
.y42_c00130{bottom:729.441813px;}
.y41_c00130{bottom:730.327125px;}
.y40_c00130{bottom:730.866096px;}
.y3f_c00130{bottom:731.471430px;}
.y3e_c00130{bottom:731.694348px;}
.y3d_c00130{bottom:747.331953px;}
.y3c_c00130{bottom:748.123065px;}
.y3b_c00130{bottom:748.644915px;}
.y3a_c00130{bottom:748.924404px;}
.y39_c00130{bottom:749.809155px;}
.y38_c00130{bottom:750.406080px;}
.y37_c00130{bottom:750.758166px;}
.y36_c00130{bottom:751.767321px;}
.y35_c00130{bottom:752.020980px;}
.y34_c00130{bottom:752.568807px;}
.y33_c00130{bottom:753.563052px;}
.y32_c00130{bottom:754.084860px;}
.y31_c00130{bottom:754.375794px;}
.y30_c00130{bottom:768.455757px;}
.y2f_c00130{bottom:769.562721px;}
.y2e_c00130{bottom:769.931877px;}
.y2d_c00130{bottom:770.285796px;}
.y2c_c00130{bottom:771.360963px;}
.y2b_c00130{bottom:771.694584px;}
.y2a_c00130{bottom:772.680558px;}
.y29_c00130{bottom:773.142405px;}
.y28_c00130{bottom:773.747283px;}
.y27_c00130{bottom:774.432555px;}
.y26_c00130{bottom:774.765294px;}
.y25_c00130{bottom:774.898119px;}
.y24_c00130{bottom:791.248617px;}
.y23_c00130{bottom:791.857299px;}
.y22_c00130{bottom:793.188312px;}
.y21_c00130{bottom:794.027262px;}
.y20_c00130{bottom:794.691315px;}
.y1f_c00130{bottom:795.892554px;}
.y1e_c00130{bottom:796.790832px;}
.y1d_c00130{bottom:797.620659px;}
.y1c_c00130{bottom:798.163641px;}
.y1b_c00130{bottom:798.971820px;}
.y1a_c00130{bottom:799.198581px;}
.y19_c00130{bottom:814.326156px;}
.y18_c00130{bottom:814.930473px;}
.y17_c00130{bottom:815.182074px;}
.y16_c00130{bottom:816.215925px;}
.y15_c00130{bottom:816.646971px;}
.y14_c00130{bottom:817.577397px;}
.y13_c00130{bottom:818.390118px;}
.y12_c00130{bottom:818.602050px;}
.y11_c00130{bottom:818.961108px;}
.y10_c00130{bottom:819.214347px;}
.yf_c00130{bottom:819.988953px;}
.ye_c00130{bottom:820.499211px;}
.yd_c00130{bottom:821.134986px;}
.yc_c00130{bottom:821.341500px;}
.yb_c00130{bottom:832.216845px;}
.ya_c00130{bottom:833.196589px;}
.y9_c00130{bottom:837.541500px;}
.y8_c00130{bottom:857.913894px;}
.y7_c00130{bottom:859.505610px;}
.y6_c00130{bottom:860.560902px;}
.y5_c00130{bottom:862.240272px;}
.y4_c00130{bottom:863.684316px;}
.y3_c00130{bottom:867.564234px;}
.y2_c00130{bottom:869.203704px;}
.y1_c00130{bottom:869.944500px;}
.h10_c00130{height:28.350000px;}
.h7_c00130{height:63.008063px;}
.h3_c00130{height:63.011370px;}
.h4_c00130{height:64.056277px;}
.h9_c00130{height:68.258735px;}
.h8_c00130{height:69.308870px;}
.h5_c00130{height:70.356894px;}
.he_c00130{height:70.359004px;}
.hc_c00130{height:71.409139px;}
.hf_c00130{height:72.459273px;}
.h6_c00130{height:73.507203px;}
.hd_c00130{height:73.509407px;}
.hb_c00130{height:76.659811px;}
.ha_c00130{height:86.111020px;}
.h2_c00130{height:88.234568px;}
.h1_c00130{height:1005.000000px;}
.h0_c00130{height:1005.150000px;}
.w0_c00130{width:705.450000px;}
.w1_c00130{width:705.750000px;}
.x0_c00130{left:0.000000px;}
.x66_c00130{left:75.058812px;}
.xc6_c00130{left:78.423972px;}
.x2c_c00130{left:84.079182px;}
.xc_c00130{left:86.538000px;}
.x4e_c00130{left:88.763592px;}
.x3a_c00130{left:89.835000px;}
.x19_c00130{left:90.937422px;}
.xaa_c00130{left:94.451880px;}
.x9f_c00130{left:95.604420px;}
.x8e_c00130{left:96.734028px;}
.x4f_c00130{left:98.082948px;}
.x76_c00130{left:99.996852px;}
.xd_c00130{left:101.289000px;}
.x3b_c00130{left:103.182000px;}
.x1a_c00130{left:105.098523px;}
.xbf_c00130{left:114.809916px;}
.xb5_c00130{left:117.444708px;}
.x55_c00130{left:120.022488px;}
.xc7_c00130{left:121.920924px;}
.xca_c00130{left:123.924432px;}
.x22_c00130{left:127.206873px;}
.xac_c00130{left:129.345420px;}
.x8f_c00130{left:130.727448px;}
.x6d_c00130{left:131.806068px;}
.x45_c00130{left:134.611500px;}
.xb6_c00130{left:136.606572px;}
.xa0_c00130{left:138.539856px;}
.x2d_c00130{left:142.132182px;}
.xe_c00130{left:146.701500px;}
.x67_c00130{left:147.935484px;}
.x96_c00130{left:149.085816px;}
.x89_c00130{left:151.308768px;}
.x77_c00130{left:154.506372px;}
.x1b_c00130{left:155.645616px;}
.xad_c00130{left:156.854712px;}
.x1_c00130{left:158.667000px;}
.xbb_c00130{left:160.607004px;}
.x56_c00130{left:165.318768px;}
.xb0_c00130{left:167.526540px;}
.x3c_c00130{left:171.534000px;}
.x6e_c00130{left:172.857600px;}
.x34_c00130{left:175.844049px;}
.x46_c00130{left:178.848000px;}
.x23_c00130{left:179.905608px;}
.xa5_c00130{left:182.115168px;}
.xf_c00130{left:183.148500px;}
.x2_c00130{left:185.124000px;}
.x1c_c00130{left:189.607671px;}
.x6f_c00130{left:193.097640px;}
.x3d_c00130{left:196.923000px;}
.x78_c00130{left:198.224064px;}
.x83_c00130{left:202.082820px;}
.xa1_c00130{left:203.728212px;}
.x5d_c00130{left:204.921300px;}
.x68_c00130{left:206.225112px;}
.xc0_c00130{left:208.514916px;}
.x94_c00130{left:210.945864px;}
.x2e_c00130{left:213.149682px;}
.xa6_c00130{left:215.230056px;}
.x3e_c00130{left:218.239500px;}
.x79_c00130{left:219.261720px;}
.x70_c00130{left:222.266748px;}
.xb7_c00130{left:223.856304px;}
.x80_c00130{left:225.235824px;}
.x24_c00130{left:226.433259px;}
.x5e_c00130{left:228.161556px;}
.x35_c00130{left:231.150495px;}
.x84_c00130{left:234.953736px;}
.x69_c00130{left:237.019128px;}
.x10_c00130{left:238.477500px;}
.x50_c00130{left:240.409668px;}
.x1d_c00130{left:241.486722px;}
.x3_c00130{left:243.676500px;}
.xb8_c00130{left:245.276904px;}
.xbc_c00130{left:248.045712px;}
.x57_c00130{left:249.833400px;}
.x2f_c00130{left:252.280182px;}
.x81_c00130{left:253.588956px;}
.x11_c00130{left:256.566000px;}
.x90_c00130{left:259.009344px;}
.xc1_c00130{left:260.103228px;}
.x25_c00130{left:261.994263px;}
.x58_c00130{left:265.848636px;}
.x99_c00130{left:269.338668px;}
.x30_c00130{left:270.398682px;}
.x8a_c00130{left:273.240444px;}
.xa2_c00130{left:279.882540px;}
.x12_c00130{left:282.213000px;}
.x5f_c00130{left:283.853280px;}
.x36_c00130{left:286.278441px;}
.x51_c00130{left:288.746400px;}
.x9a_c00130{left:290.841300px;}
.x3f_c00130{left:295.219500px;}
.x13_c00130{left:297.351000px;}
.x8b_c00130{left:299.499264px;}
.x60_c00130{left:300.628752px;}
.x7a_c00130{left:302.539392px;}
.x71_c00130{left:304.098312px;}
.x91_c00130{left:305.956332px;}
.xa7_c00130{left:307.949628px;}
.x47_c00130{left:309.450000px;}
.x40_c00130{left:318.976500px;}
.x97_c00130{left:320.329608px;}
.x9_c00130{left:322.573500px;}
.xc8_c00130{left:323.693496px;}
.x48_c00130{left:327.633000px;}
.x52_c00130{left:329.235252px;}
.x85_c00130{left:335.141436px;}
.x59_c00130{left:336.691008px;}
.x26_c00130{left:337.886334px;}
.x72_c00130{left:338.931132px;}
.xa3_c00130{left:340.266636px;}
.x31_c00130{left:342.481182px;}
.x95_c00130{left:343.822980px;}
.xab_c00130{left:347.910576px;}
.x49_c00130{left:350.010000px;}
.xc2_c00130{left:351.160536px;}
.x61_c00130{left:354.112548px;}
.x14_c00130{left:355.402500px;}
.xbd_c00130{left:358.874304px;}
.x9b_c00130{left:360.049860px;}
.x5a_c00130{left:362.177100px;}
.x27_c00130{left:363.538191px;}
.x4a_c00130{left:364.893000px;}
.x32_c00130{left:367.630182px;}
.x37_c00130{left:369.476610px;}
.x7b_c00130{left:371.575476px;}
.x1e_c00130{left:372.698547px;}
.xc3_c00130{left:374.338524px;}
.xb9_c00130{left:381.226188px;}
.x4_c00130{left:382.245000px;}
.x73_c00130{left:384.549948px;}
.xb1_c00130{left:388.296348px;}
.xae_c00130{left:389.766588px;}
.x8c_c00130{left:393.196788px;}
.x41_c00130{left:394.294500px;}
.x4b_c00130{left:395.887500px;}
.xb2_c00130{left:397.206576px;}
.x62_c00130{left:398.605632px;}
.xa4_c00130{left:404.090064px;}
.xa8_c00130{left:408.308196px;}
.x33_c00130{left:410.267682px;}
.x6a_c00130{left:412.644012px;}
.x1f_c00130{left:414.236892px;}
.x63_c00130{left:416.707056px;}
.x9c_c00130{left:418.586616px;}
.x15_c00130{left:421.861500px;}
.x38_c00130{left:423.185598px;}
.xbe_c00130{left:426.071268px;}
.x74_c00130{left:427.495884px;}
.x5_c00130{left:433.818000px;}
.x7c_c00130{left:435.580872px;}
.x82_c00130{left:436.943148px;}
.x6b_c00130{left:438.225696px;}
.x28_c00130{left:446.229846px;}
.x4c_c00130{left:448.326000px;}
.x16_c00130{left:452.650500px;}
.x86_c00130{left:454.739700px;}
.x7d_c00130{left:456.629028px;}
.x53_c00130{left:461.540640px;}
.x9d_c00130{left:463.955712px;}
.x20_c00130{left:466.660422px;}
.x6c_c00130{left:468.203736px;}
.x42_c00130{left:469.639500px;}
.xc9_c00130{left:472.120632px;}
.x29_c00130{left:473.438724px;}
.x39_c00130{left:474.751149px;}
.xa9_c00130{left:476.891304px;}
.x7e_c00130{left:478.779612px;}
.x54_c00130{left:485.301756px;}
.x8d_c00130{left:486.612312px;}
.xb3_c00130{left:490.086684px;}
.x6_c00130{left:493.795500px;}
.x87_c00130{left:494.970780px;}
.x7f_c00130{left:496.599960px;}
.x9e_c00130{left:500.406384px;}
.x2a_c00130{left:501.843123px;}
.x64_c00130{left:506.083200px;}
.x5b_c00130{left:509.948748px;}
.xba_c00130{left:511.921572px;}
.xb4_c00130{left:514.119996px;}
.xc4_c00130{left:516.447120px;}
.x43_c00130{left:517.680000px;}
.x4d_c00130{left:521.233500px;}
.x17_c00130{left:526.497000px;}
.x92_c00130{left:528.735204px;}
.x75_c00130{left:530.066964px;}
.x7_c00130{left:531.484500px;}
.xaf_c00130{left:533.603616px;}
.x88_c00130{left:536.119812px;}
.x93_c00130{left:537.412416px;}
.x44_c00130{left:539.041500px;}
.x5c_c00130{left:541.542744px;}
.x18_c00130{left:544.468500px;}
.x98_c00130{left:545.855808px;}
.x65_c00130{left:547.399380px;}
.x21_c00130{left:549.837591px;}
.xa_c00130{left:551.253000px;}
.xc5_c00130{left:558.280308px;}
.x2b_c00130{left:587.020320px;}
.x8_c00130{left:588.331500px;}
.xb_c00130{left:602.818500px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
.fse_c00130{font-size:25.200000pt;}
.fs5_c00130{font-size:56.007168pt;}
.fs1_c00130{font-size:56.010107pt;}
.fs2_c00130{font-size:56.938913pt;}
.fs7_c00130{font-size:60.674432pt;}
.fs6_c00130{font-size:61.607884pt;}
.fs3_c00130{font-size:62.539461pt;}
.fsc_c00130{font-size:62.541337pt;}
.fsa_c00130{font-size:63.474790pt;}
.fsd_c00130{font-size:64.408243pt;}
.fs4_c00130{font-size:65.339736pt;}
.fsb_c00130{font-size:65.341695pt;}
.fs9_c00130{font-size:68.142054pt;}
.fs8_c00130{font-size:76.543129pt;}
.fs0_c00130{font-size:78.430727pt;}
.y0_c00130{bottom:0.000000pt;}
.y170_c00130{bottom:124.939371pt;}
.y16f_c00130{bottom:128.700629pt;}
.y16e_c00130{bottom:129.765845pt;}
.y16d_c00130{bottom:131.234720pt;}
.y16c_c00130{bottom:141.491317pt;}
.y16b_c00130{bottom:142.686795pt;}
.y16a_c00130{bottom:144.272768pt;}
.y169_c00130{bottom:144.727243pt;}
.y168_c00130{bottom:146.054432pt;}
.y167_c00130{bottom:146.512864pt;}
.y166_c00130{bottom:147.521707pt;}
.y165_c00130{bottom:148.902528pt;}
.y164_c00130{bottom:149.557760pt;}
.y163_c00130{bottom:151.712448pt;}
.y162_c00130{bottom:152.563520pt;}
.y161_c00130{bottom:152.833867pt;}
.y160_c00130{bottom:163.699104pt;}
.y15f_c00130{bottom:163.961163pt;}
.y15e_c00130{bottom:164.144693pt;}
.y15d_c00130{bottom:164.902261pt;}
.y15c_c00130{bottom:165.423499pt;}
.y15b_c00130{bottom:165.660331pt;}
.y15a_c00130{bottom:165.907285pt;}
.y159_c00130{bottom:166.369141pt;}
.y158_c00130{bottom:166.879573pt;}
.y157_c00130{bottom:167.056992pt;}
.y156_c00130{bottom:167.429227pt;}
.y155_c00130{bottom:168.428501pt;}
.y154_c00130{bottom:168.673269pt;}
.y153_c00130{bottom:182.771083pt;}
.y152_c00130{bottom:183.883488pt;}
.y151_c00130{bottom:184.076512pt;}
.y150_c00130{bottom:184.971040pt;}
.y14f_c00130{bottom:186.345504pt;}
.y14e_c00130{bottom:187.453653pt;}
.y14d_c00130{bottom:188.611243pt;}
.y14c_c00130{bottom:189.045024pt;}
.y14b_c00130{bottom:190.398955pt;}
.y14a_c00130{bottom:191.962165pt;}
.y149_c00130{bottom:202.882955pt;}
.y148_c00130{bottom:203.137227pt;}
.y147_c00130{bottom:203.908640pt;}
.y146_c00130{bottom:204.681099pt;}
.y145_c00130{bottom:205.553941pt;}
.y144_c00130{bottom:206.508288pt;}
.y143_c00130{bottom:207.419392pt;}
.y142_c00130{bottom:207.827637pt;}
.y141_c00130{bottom:208.332992pt;}
.y140_c00130{bottom:208.771008pt;}
.y13f_c00130{bottom:210.554699pt;}
.y13e_c00130{bottom:210.945920pt;}
.y13d_c00130{bottom:211.641717pt;}
.y13c_c00130{bottom:222.991509pt;}
.y13b_c00130{bottom:223.482688pt;}
.y13a_c00130{bottom:224.959968pt;}
.y139_c00130{bottom:225.381131pt;}
.y138_c00130{bottom:226.227669pt;}
.y137_c00130{bottom:226.942901pt;}
.y136_c00130{bottom:227.367829pt;}
.y135_c00130{bottom:229.327691pt;}
.y134_c00130{bottom:229.786325pt;}
.y133_c00130{bottom:230.321451pt;}
.y132_c00130{bottom:231.563061pt;}
.y131_c00130{bottom:242.771904pt;}
.y130_c00130{bottom:243.843552pt;}
.y12f_c00130{bottom:244.502421pt;}
.y12e_c00130{bottom:245.176939pt;}
.y12d_c00130{bottom:245.750368pt;}
.y12c_c00130{bottom:246.048043pt;}
.y12b_c00130{bottom:247.355019pt;}
.y12a_c00130{bottom:248.205344pt;}
.y129_c00130{bottom:249.013056pt;}
.y128_c00130{bottom:249.647573pt;}
.y127_c00130{bottom:250.067840pt;}
.y126_c00130{bottom:250.988181pt;}
.y125_c00130{bottom:251.485461pt;}
.y124_c00130{bottom:263.231445pt;}
.y123_c00130{bottom:265.076192pt;}
.y122_c00130{bottom:265.537269pt;}
.y121_c00130{bottom:265.914624pt;}
.y120_c00130{bottom:266.461440pt;}
.y11f_c00130{bottom:267.499211pt;}
.y11e_c00130{bottom:268.139104pt;}
.y11d_c00130{bottom:268.815125pt;}
.y11c_c00130{bottom:270.262080pt;}
.y11b_c00130{bottom:270.776021pt;}
.y11a_c00130{bottom:271.405333pt;}
.y119_c00130{bottom:282.985333pt;}
.y118_c00130{bottom:283.418240pt;}
.y117_c00130{bottom:284.744480pt;}
.y116_c00130{bottom:285.297493pt;}
.y115_c00130{bottom:286.277216pt;}
.y114_c00130{bottom:286.597717pt;}
.y113_c00130{bottom:286.944256pt;}
.y112_c00130{bottom:287.362336pt;}
.y111_c00130{bottom:288.657963pt;}
.y110_c00130{bottom:289.126997pt;}
.y10f_c00130{bottom:289.853568pt;}
.y10e_c00130{bottom:291.330752pt;}
.y10d_c00130{bottom:303.242357pt;}
.y10c_c00130{bottom:304.030923pt;}
.y10b_c00130{bottom:305.250389pt;}
.y10a_c00130{bottom:306.469920pt;}
.y109_c00130{bottom:307.035136pt;}
.y108_c00130{bottom:308.234176pt;}
.y107_c00130{bottom:308.683232pt;}
.y106_c00130{bottom:309.271563pt;}
.y105_c00130{bottom:310.109109pt;}
.y104_c00130{bottom:310.817952pt;}
.y103_c00130{bottom:311.009109pt;}
.y102_c00130{bottom:323.308032pt;}
.y101_c00130{bottom:324.151637pt;}
.y100_c00130{bottom:325.237899pt;}
.yff_c00130{bottom:325.724939pt;}
.yfe_c00130{bottom:326.803360pt;}
.yfd_c00130{bottom:327.823531pt;}
.yfc_c00130{bottom:328.530923pt;}
.yfb_c00130{bottom:329.110667pt;}
.yfa_c00130{bottom:329.530848pt;}
.yf9_c00130{bottom:330.212501pt;}
.yf8_c00130{bottom:330.937835pt;}
.yf7_c00130{bottom:343.547680pt;}
.yf6_c00130{bottom:343.933451pt;}
.yf5_c00130{bottom:344.581227pt;}
.yf4_c00130{bottom:345.387851pt;}
.yf3_c00130{bottom:345.786891pt;}
.yf2_c00130{bottom:346.428427pt;}
.yf1_c00130{bottom:347.659456pt;}
.yf0_c00130{bottom:348.041291pt;}
.yef_c00130{bottom:348.601248pt;}
.yee_c00130{bottom:349.548832pt;}
.yed_c00130{bottom:350.150432pt;}
.yec_c00130{bottom:351.098997pt;}
.yeb_c00130{bottom:363.426880pt;}
.yea_c00130{bottom:364.727936pt;}
.ye9_c00130{bottom:365.635061pt;}
.ye8_c00130{bottom:366.660459pt;}
.ye7_c00130{bottom:367.234517pt;}
.ye6_c00130{bottom:368.028181pt;}
.ye5_c00130{bottom:368.968032pt;}
.ye4_c00130{bottom:370.126101pt;}
.ye3_c00130{bottom:371.020011pt;}
.ye2_c00130{bottom:383.762336pt;}
.ye1_c00130{bottom:384.629141pt;}
.ye0_c00130{bottom:386.079445pt;}
.ydf_c00130{bottom:386.529397pt;}
.yde_c00130{bottom:387.009536pt;}
.ydd_c00130{bottom:388.063819pt;}
.ydc_c00130{bottom:388.738848pt;}
.ydb_c00130{bottom:389.254101pt;}
.yda_c00130{bottom:390.421696pt;}
.yd9_c00130{bottom:391.182997pt;}
.yd8_c00130{bottom:403.813269pt;}
.yd7_c00130{bottom:403.952683pt;}
.yd6_c00130{bottom:405.416619pt;}
.yd5_c00130{bottom:406.258901pt;}
.yd4_c00130{bottom:407.517195pt;}
.yd3_c00130{bottom:408.268907pt;}
.yd2_c00130{bottom:409.107413pt;}
.yd1_c00130{bottom:409.932448pt;}
.yd0_c00130{bottom:410.321419pt;}
.ycf_c00130{bottom:410.864896pt;}
.yce_c00130{bottom:423.783723pt;}
.ycd_c00130{bottom:424.479531pt;}
.ycc_c00130{bottom:424.788800pt;}
.ycb_c00130{bottom:426.140192pt;}
.yca_c00130{bottom:427.143051pt;}
.yc9_c00130{bottom:427.804864pt;}
.yc8_c00130{bottom:428.271680pt;}
.yc7_c00130{bottom:429.178091pt;}
.yc6_c00130{bottom:429.836299pt;}
.yc5_c00130{bottom:430.440597pt;}
.yc4_c00130{bottom:431.507392pt;}
.yc3_c00130{bottom:443.780544pt;}
.yc2_c00130{bottom:444.475136pt;}
.yc1_c00130{bottom:445.154005pt;}
.yc0_c00130{bottom:445.858379pt;}
.ybf_c00130{bottom:447.173707pt;}
.ybe_c00130{bottom:447.856875pt;}
.ybd_c00130{bottom:448.865333pt;}
.ybc_c00130{bottom:449.420853pt;}
.ybb_c00130{bottom:449.718315pt;}
.yba_c00130{bottom:451.163808pt;}
.yb9_c00130{bottom:451.423147pt;}
.yb8_c00130{bottom:464.376939pt;}
.yb7_c00130{bottom:464.782635pt;}
.yb6_c00130{bottom:465.465653pt;}
.yb5_c00130{bottom:465.881685pt;}
.yb4_c00130{bottom:466.213877pt;}
.yb3_c00130{bottom:467.089696pt;}
.yb2_c00130{bottom:468.490784pt;}
.yb1_c00130{bottom:468.978848pt;}
.yb0_c00130{bottom:469.458112pt;}
.yaf_c00130{bottom:470.346272pt;}
.yae_c00130{bottom:470.853664pt;}
.yad_c00130{bottom:471.591915pt;}
.yac_c00130{bottom:484.222144pt;}
.yab_c00130{bottom:484.539605pt;}
.yaa_c00130{bottom:484.933323pt;}
.ya9_c00130{bottom:485.307360pt;}
.ya8_c00130{bottom:485.954069pt;}
.ya7_c00130{bottom:486.445717pt;}
.ya6_c00130{bottom:487.194347pt;}
.ya5_c00130{bottom:487.672960pt;}
.ya4_c00130{bottom:489.153429pt;}
.ya3_c00130{bottom:489.527317pt;}
.ya2_c00130{bottom:490.305120pt;}
.ya1_c00130{bottom:491.273749pt;}
.ya0_c00130{bottom:503.946005pt;}
.y9f_c00130{bottom:504.552640pt;}
.y9e_c00130{bottom:505.355168pt;}
.y9d_c00130{bottom:505.678197pt;}
.y9c_c00130{bottom:506.403680pt;}
.y9b_c00130{bottom:507.173845pt;}
.y9a_c00130{bottom:507.762603pt;}
.y99_c00130{bottom:509.145152pt;}
.y98_c00130{bottom:509.637355pt;}
.y97_c00130{bottom:509.978560pt;}
.y96_c00130{bottom:510.671765pt;}
.y95_c00130{bottom:511.196245pt;}
.y171_c00130{bottom:524.038667pt;}
.y94_c00130{bottom:524.121227pt;}
.y93_c00130{bottom:524.791349pt;}
.y92_c00130{bottom:525.068352pt;}
.y91_c00130{bottom:525.548053pt;}
.y90_c00130{bottom:525.957227pt;}
.y8f_c00130{bottom:526.657707pt;}
.y8e_c00130{bottom:528.767083pt;}
.y8d_c00130{bottom:529.259723pt;}
.y8c_c00130{bottom:530.192757pt;}
.y8b_c00130{bottom:530.939573pt;}
.y8a_c00130{bottom:531.358592pt;}
.y89_c00130{bottom:543.455008pt;}
.y88_c00130{bottom:544.115968pt;}
.y87_c00130{bottom:545.545803pt;}
.y86_c00130{bottom:545.835253pt;}
.y85_c00130{bottom:546.546731pt;}
.y84_c00130{bottom:547.402080pt;}
.y83_c00130{bottom:547.670005pt;}
.y82_c00130{bottom:548.560757pt;}
.y81_c00130{bottom:548.932629pt;}
.y80_c00130{bottom:549.295147pt;}
.y7f_c00130{bottom:550.581664pt;}
.y7e_c00130{bottom:550.793525pt;}
.y7d_c00130{bottom:563.591435pt;}
.y7c_c00130{bottom:564.068779pt;}
.y7b_c00130{bottom:564.733408pt;}
.y7a_c00130{bottom:565.407243pt;}
.y79_c00130{bottom:566.301120pt;}
.y78_c00130{bottom:566.686261pt;}
.y77_c00130{bottom:567.322016pt;}
.y76_c00130{bottom:567.500192pt;}
.y75_c00130{bottom:567.756480pt;}
.y74_c00130{bottom:567.998923pt;}
.y73_c00130{bottom:568.285995pt;}
.y72_c00130{bottom:569.276928pt;}
.y71_c00130{bottom:569.737899pt;}
.y70_c00130{bottom:569.961152pt;}
.y6f_c00130{bottom:570.239403pt;}
.y6e_c00130{bottom:584.647157pt;}
.y6d_c00130{bottom:585.006432pt;}
.y6c_c00130{bottom:586.002187pt;}
.y6b_c00130{bottom:586.393429pt;}
.y6a_c00130{bottom:587.005472pt;}
.y69_c00130{bottom:587.617323pt;}
.y68_c00130{bottom:588.347456pt;}
.y67_c00130{bottom:589.262059pt;}
.y66_c00130{bottom:589.637493pt;}
.y65_c00130{bottom:590.498357pt;}
.y64_c00130{bottom:590.638901pt;}
.y63_c00130{bottom:604.025803pt;}
.y62_c00130{bottom:604.349301pt;}
.y61_c00130{bottom:605.386208pt;}
.y60_c00130{bottom:606.132000pt;}
.y5f_c00130{bottom:606.572811pt;}
.y5e_c00130{bottom:606.784480pt;}
.y5d_c00130{bottom:607.102731pt;}
.y5c_c00130{bottom:607.361333pt;}
.y5b_c00130{bottom:608.531701pt;}
.y5a_c00130{bottom:609.218784pt;}
.y59_c00130{bottom:609.507125pt;}
.y58_c00130{bottom:609.847925pt;}
.y57_c00130{bottom:610.302155pt;}
.y56_c00130{bottom:610.561333pt;}
.y55_c00130{bottom:623.691208pt;}
.y54_c00130{bottom:623.957040pt;}
.y53_c00130{bottom:624.554877pt;}
.y52_c00130{bottom:625.152621pt;}
.y51_c00130{bottom:625.492504pt;}
.y50_c00130{bottom:625.808213pt;}
.y4f_c00130{bottom:626.429795pt;}
.y4e_c00130{bottom:626.725437pt;}
.y4d_c00130{bottom:627.683411pt;}
.y4c_c00130{bottom:627.948683pt;}
.y4b_c00130{bottom:628.264635pt;}
.y4a_c00130{bottom:629.115237pt;}
.y49_c00130{bottom:629.281333pt;}
.y48_c00130{bottom:643.333019pt;}
.y47_c00130{bottom:644.926496pt;}
.y46_c00130{bottom:645.660219pt;}
.y45_c00130{bottom:646.424616pt;}
.y44_c00130{bottom:647.608000pt;}
.y43_c00130{bottom:648.022675pt;}
.y42_c00130{bottom:648.392723pt;}
.y41_c00130{bottom:649.179667pt;}
.y40_c00130{bottom:649.658752pt;}
.y3f_c00130{bottom:650.196827pt;}
.y3e_c00130{bottom:650.394976pt;}
.y3d_c00130{bottom:664.295069pt;}
.y3c_c00130{bottom:664.998280pt;}
.y3b_c00130{bottom:665.462147pt;}
.y3a_c00130{bottom:665.710581pt;}
.y39_c00130{bottom:666.497027pt;}
.y38_c00130{bottom:667.027627pt;}
.y37_c00130{bottom:667.340592pt;}
.y36_c00130{bottom:668.237619pt;}
.y35_c00130{bottom:668.463093pt;}
.y34_c00130{bottom:668.950051pt;}
.y33_c00130{bottom:669.833824pt;}
.y32_c00130{bottom:670.297653pt;}
.y31_c00130{bottom:670.556261pt;}
.y30_c00130{bottom:683.071784pt;}
.y2f_c00130{bottom:684.055752pt;}
.y2e_c00130{bottom:684.383891pt;}
.y2d_c00130{bottom:684.698485pt;}
.y2c_c00130{bottom:685.654189pt;}
.y2b_c00130{bottom:685.950741pt;}
.y2a_c00130{bottom:686.827163pt;}
.y29_c00130{bottom:687.237693pt;}
.y28_c00130{bottom:687.775363pt;}
.y27_c00130{bottom:688.384493pt;}
.y26_c00130{bottom:688.680261pt;}
.y25_c00130{bottom:688.798328pt;}
.y24_c00130{bottom:703.332104pt;}
.y23_c00130{bottom:703.873155pt;}
.y22_c00130{bottom:705.056277pt;}
.y21_c00130{bottom:705.802011pt;}
.y20_c00130{bottom:706.392280pt;}
.y1f_c00130{bottom:707.460048pt;}
.y1e_c00130{bottom:708.258517pt;}
.y1d_c00130{bottom:708.996141pt;}
.y1c_c00130{bottom:709.478792pt;}
.y1b_c00130{bottom:710.197173pt;}
.y1a_c00130{bottom:710.398739pt;}
.y19_c00130{bottom:723.845472pt;}
.y18_c00130{bottom:724.382643pt;}
.y17_c00130{bottom:724.606288pt;}
.y16_c00130{bottom:725.525267pt;}
.y15_c00130{bottom:725.908419pt;}
.y14_c00130{bottom:726.735464pt;}
.y13_c00130{bottom:727.457883pt;}
.y12_c00130{bottom:727.646267pt;}
.y11_c00130{bottom:727.965429pt;}
.y10_c00130{bottom:728.190531pt;}
.yf_c00130{bottom:728.879069pt;}
.ye_c00130{bottom:729.332632pt;}
.yd_c00130{bottom:729.897765pt;}
.yc_c00130{bottom:730.081333pt;}
.yb_c00130{bottom:739.748307pt;}
.ya_c00130{bottom:740.619191pt;}
.y9_c00130{bottom:744.481333pt;}
.y8_c00130{bottom:762.590128pt;}
.y7_c00130{bottom:764.004987pt;}
.y6_c00130{bottom:764.943024pt;}
.y5_c00130{bottom:766.435797pt;}
.y4_c00130{bottom:767.719392pt;}
.y3_c00130{bottom:771.168208pt;}
.y2_c00130{bottom:772.625515pt;}
.y1_c00130{bottom:773.284000pt;}
.h10_c00130{height:25.200000pt;}
.h7_c00130{height:56.007168pt;}
.h3_c00130{height:56.010107pt;}
.h4_c00130{height:56.938913pt;}
.h9_c00130{height:60.674432pt;}
.h8_c00130{height:61.607884pt;}
.h5_c00130{height:62.539461pt;}
.he_c00130{height:62.541337pt;}
.hc_c00130{height:63.474790pt;}
.hf_c00130{height:64.408243pt;}
.h6_c00130{height:65.339736pt;}
.hd_c00130{height:65.341695pt;}
.hb_c00130{height:68.142054pt;}
.ha_c00130{height:76.543129pt;}
.h2_c00130{height:78.430727pt;}
.h1_c00130{height:893.333333pt;}
.h0_c00130{height:893.466667pt;}
.w0_c00130{width:627.066667pt;}
.w1_c00130{width:627.333333pt;}
.x0_c00130{left:0.000000pt;}
.x66_c00130{left:66.718944pt;}
.xc6_c00130{left:69.710197pt;}
.x2c_c00130{left:74.737051pt;}
.xc_c00130{left:76.922667pt;}
.x4e_c00130{left:78.900971pt;}
.x3a_c00130{left:79.853333pt;}
.x19_c00130{left:80.833264pt;}
.xaa_c00130{left:83.957227pt;}
.x9f_c00130{left:84.981707pt;}
.x8e_c00130{left:85.985803pt;}
.x4f_c00130{left:87.184843pt;}
.x76_c00130{left:88.886091pt;}
.xd_c00130{left:90.034667pt;}
.x3b_c00130{left:91.717333pt;}
.x1a_c00130{left:93.420909pt;}
.xbf_c00130{left:102.053259pt;}
.xb5_c00130{left:104.395296pt;}
.x55_c00130{left:106.686656pt;}
.xc7_c00130{left:108.374155pt;}
.xca_c00130{left:110.155051pt;}
.x22_c00130{left:113.072776pt;}
.xac_c00130{left:114.973707pt;}
.x8f_c00130{left:116.202176pt;}
.x6d_c00130{left:117.160949pt;}
.x45_c00130{left:119.654667pt;}
.xb6_c00130{left:121.428064pt;}
.xa0_c00130{left:123.146539pt;}
.x2d_c00130{left:126.339717pt;}
.xe_c00130{left:130.401333pt;}
.x67_c00130{left:131.498208pt;}
.x96_c00130{left:132.520725pt;}
.x89_c00130{left:134.496683pt;}
.x77_c00130{left:137.338997pt;}
.x1b_c00130{left:138.351659pt;}
.xad_c00130{left:139.426411pt;}
.x1_c00130{left:141.037333pt;}
.xbb_c00130{left:142.761781pt;}
.x56_c00130{left:146.950016pt;}
.xb0_c00130{left:148.912480pt;}
.x3c_c00130{left:152.474667pt;}
.x6e_c00130{left:153.651200pt;}
.x34_c00130{left:156.305821pt;}
.x46_c00130{left:158.976000pt;}
.x23_c00130{left:159.916096pt;}
.xa5_c00130{left:161.880149pt;}
.xf_c00130{left:162.798667pt;}
.x2_c00130{left:164.554667pt;}
.x1c_c00130{left:168.540152pt;}
.x6f_c00130{left:171.642347pt;}
.x3d_c00130{left:175.042667pt;}
.x78_c00130{left:176.199168pt;}
.x83_c00130{left:179.629173pt;}
.xa1_c00130{left:181.091744pt;}
.x5d_c00130{left:182.152267pt;}
.x68_c00130{left:183.311211pt;}
.xc0_c00130{left:185.346592pt;}
.x94_c00130{left:187.507435pt;}
.x2e_c00130{left:189.466384pt;}
.xa6_c00130{left:191.315605pt;}
.x3e_c00130{left:193.990667pt;}
.x79_c00130{left:194.899307pt;}
.x70_c00130{left:197.570443pt;}
.xb7_c00130{left:198.983381pt;}
.x80_c00130{left:200.209621pt;}
.x24_c00130{left:201.274008pt;}
.x5e_c00130{left:202.810272pt;}
.x35_c00130{left:205.467107pt;}
.x84_c00130{left:208.847765pt;}
.x69_c00130{left:210.683669pt;}
.x10_c00130{left:211.980000pt;}
.x50_c00130{left:213.697483pt;}
.x1d_c00130{left:214.654864pt;}
.x3_c00130{left:216.601333pt;}
.xb8_c00130{left:218.023915pt;}
.xbc_c00130{left:220.485077pt;}
.x57_c00130{left:222.074133pt;}
.x2f_c00130{left:224.249051pt;}
.x81_c00130{left:225.412405pt;}
.x11_c00130{left:228.058667pt;}
.x90_c00130{left:230.230528pt;}
.xc1_c00130{left:231.202869pt;}
.x25_c00130{left:232.883789pt;}
.x58_c00130{left:236.309899pt;}
.x99_c00130{left:239.412149pt;}
.x30_c00130{left:240.354384pt;}
.x8a_c00130{left:242.880395pt;}
.xa2_c00130{left:248.784480pt;}
.x12_c00130{left:250.856000pt;}
.x5f_c00130{left:252.314027pt;}
.x36_c00130{left:254.469725pt;}
.x51_c00130{left:256.663467pt;}
.x9a_c00130{left:258.525600pt;}
.x3f_c00130{left:262.417333pt;}
.x13_c00130{left:264.312000pt;}
.x8b_c00130{left:266.221568pt;}
.x60_c00130{left:267.225557pt;}
.x7a_c00130{left:268.923904pt;}
.x71_c00130{left:270.309611pt;}
.x91_c00130{left:271.961184pt;}
.xa7_c00130{left:273.733003pt;}
.x47_c00130{left:275.066667pt;}
.x40_c00130{left:283.534667pt;}
.x97_c00130{left:284.737429pt;}
.x9_c00130{left:286.732000pt;}
.xc8_c00130{left:287.727552pt;}
.x48_c00130{left:291.229333pt;}
.x52_c00130{left:292.653557pt;}
.x85_c00130{left:297.903499pt;}
.x59_c00130{left:299.280896pt;}
.x26_c00130{left:300.343408pt;}
.x72_c00130{left:301.272117pt;}
.xa3_c00130{left:302.459232pt;}
.x31_c00130{left:304.427717pt;}
.x95_c00130{left:305.620427pt;}
.xab_c00130{left:309.253845pt;}
.x49_c00130{left:311.120000pt;}
.xc2_c00130{left:312.142699pt;}
.x61_c00130{left:314.766709pt;}
.x14_c00130{left:315.913333pt;}
.xbd_c00130{left:318.999381pt;}
.x9b_c00130{left:320.044320pt;}
.x5a_c00130{left:321.935200pt;}
.x27_c00130{left:323.145059pt;}
.x4a_c00130{left:324.349333pt;}
.x32_c00130{left:326.782384pt;}
.x37_c00130{left:328.423653pt;}
.x7b_c00130{left:330.289312pt;}
.x1e_c00130{left:331.287597pt;}
.xc3_c00130{left:332.745355pt;}
.xb9_c00130{left:338.867723pt;}
.x4_c00130{left:339.773333pt;}
.x73_c00130{left:341.822176pt;}
.xb1_c00130{left:345.152309pt;}
.xae_c00130{left:346.459189pt;}
.x8c_c00130{left:349.508256pt;}
.x41_c00130{left:350.484000pt;}
.x4b_c00130{left:351.900000pt;}
.xb2_c00130{left:353.072512pt;}
.x62_c00130{left:354.316117pt;}
.xa4_c00130{left:359.191168pt;}
.xa8_c00130{left:362.940619pt;}
.x33_c00130{left:364.682384pt;}
.x6a_c00130{left:366.794677pt;}
.x1f_c00130{left:368.210571pt;}
.x63_c00130{left:370.406272pt;}
.x9c_c00130{left:372.076992pt;}
.x15_c00130{left:374.988000pt;}
.x38_c00130{left:376.164976pt;}
.xbe_c00130{left:378.730016pt;}
.x74_c00130{left:379.996341pt;}
.x5_c00130{left:385.616000pt;}
.x7c_c00130{left:387.182997pt;}
.x82_c00130{left:388.393909pt;}
.x6b_c00130{left:389.533952pt;}
.x28_c00130{left:396.648752pt;}
.x4c_c00130{left:398.512000pt;}
.x16_c00130{left:402.356000pt;}
.x86_c00130{left:404.213067pt;}
.x7d_c00130{left:405.892469pt;}
.x53_c00130{left:410.258347pt;}
.x9d_c00130{left:412.405077pt;}
.x20_c00130{left:414.809264pt;}
.x6c_c00130{left:416.181099pt;}
.x42_c00130{left:417.457333pt;}
.xc9_c00130{left:419.662784pt;}
.x29_c00130{left:420.834421pt;}
.x39_c00130{left:422.001021pt;}
.xa9_c00130{left:423.903381pt;}
.x7e_c00130{left:425.581877pt;}
.x54_c00130{left:431.379339pt;}
.x8d_c00130{left:432.544277pt;}
.xb3_c00130{left:435.632608pt;}
.x6_c00130{left:438.929333pt;}
.x87_c00130{left:439.974027pt;}
.x7f_c00130{left:441.422187pt;}
.x9e_c00130{left:444.805675pt;}
.x2a_c00130{left:446.082776pt;}
.x64_c00130{left:449.851733pt;}
.x5b_c00130{left:453.287776pt;}
.xba_c00130{left:455.041397pt;}
.xb4_c00130{left:456.995552pt;}
.xc4_c00130{left:459.064107pt;}
.x43_c00130{left:460.160000pt;}
.x4d_c00130{left:463.318667pt;}
.x17_c00130{left:467.997333pt;}
.x92_c00130{left:469.986848pt;}
.x75_c00130{left:471.170635pt;}
.x7_c00130{left:472.430667pt;}
.xaf_c00130{left:474.314325pt;}
.x88_c00130{left:476.550944pt;}
.x93_c00130{left:477.699925pt;}
.x44_c00130{left:479.148000pt;}
.x5c_c00130{left:481.371328pt;}
.x18_c00130{left:483.972000pt;}
.x98_c00130{left:485.205163pt;}
.x65_c00130{left:486.577227pt;}
.x21_c00130{left:488.744525pt;}
.xa_c00130{left:490.002667pt;}
.xc5_c00130{left:496.249163pt;}
.x2b_c00130{left:521.795840pt;}
.x8_c00130{left:522.961333pt;}
.xb_c00130{left:535.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mf_c00131{transform:matrix(0.007007,0.000203,-0.007247,0.249895,0,0);-ms-transform:matrix(0.007007,0.000203,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.007007,0.000203,-0.007247,0.249895,0,0);}
.m1c_c00131{transform:matrix(0.021296,0.000618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.021296,0.000618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.021296,0.000618,-0.007247,0.249895,0,0);}
.m77_c00131{transform:matrix(0.038368,0.000422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.038368,0.000422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.038368,0.000422,-0.002750,0.249985,0,0);}
.m6_c00131{transform:matrix(0.047912,0.000575,-0.003000,0.249982,0,0);-ms-transform:matrix(0.047912,0.000575,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.047912,0.000575,-0.003000,0.249982,0,0);}
.m4f_c00131{transform:matrix(0.087049,0.001045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.087049,0.001045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.087049,0.001045,-0.003000,0.249982,0,0);}
.m6a_c00131{transform:matrix(0.132065,0.001585,-0.003000,0.249982,0,0);-ms-transform:matrix(0.132065,0.001585,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.132065,0.001585,-0.003000,0.249982,0,0);}
.m8_c00131{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.137785,0.001653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137785,0.001653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137785,0.001653,-0.003000,0.249982,0,0);}
.m66_c00131{transform:matrix(0.141175,0.001694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141175,0.001694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141175,0.001694,-0.003000,0.249982,0,0);}
.md7_c00131{transform:matrix(0.141295,0.001696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141295,0.001696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141295,0.001696,-0.003000,0.249982,0,0);}
.m9d_c00131{transform:matrix(0.142628,0.001854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.142628,0.001854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.142628,0.001854,-0.003250,0.249979,0,0);}
.md9_c00131{transform:matrix(0.142655,0.001712,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142655,0.001712,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142655,0.001712,-0.003000,0.249982,0,0);}
.m7_c00131{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);}
.me5_c00131{transform:matrix(0.145283,0.001453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145283,0.001453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145283,0.001453,-0.002500,0.249988,0,0);}
.m50_c00131{transform:matrix(0.146829,0.001762,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146829,0.001762,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146829,0.001762,-0.003000,0.249982,0,0);}
.m5b_c00131{transform:matrix(0.146834,0.001762,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146834,0.001762,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146834,0.001762,-0.003000,0.249982,0,0);}
.m1e_c00131{transform:matrix(0.147126,0.001618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147126,0.001618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147126,0.001618,-0.002750,0.249985,0,0);}
.mb9_c00131{transform:matrix(0.148399,0.001781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.148399,0.001781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.148399,0.001781,-0.003000,0.249982,0,0);}
.m65_c00131{transform:matrix(0.149274,0.001791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.149274,0.001791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.149274,0.001791,-0.003000,0.249982,0,0);}
.m11_c00131{transform:matrix(0.151356,0.004389,-0.007247,0.249895,0,0);-ms-transform:matrix(0.151356,0.004389,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.151356,0.004389,-0.007247,0.249895,0,0);}
.m5e_c00131{transform:matrix(0.151679,0.001820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151679,0.001820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151679,0.001820,-0.003000,0.249982,0,0);}
.m4b_c00131{transform:matrix(0.151769,0.001821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151769,0.001821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151769,0.001821,-0.003000,0.249982,0,0);}
.m33_c00131{transform:matrix(0.152016,0.001672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152016,0.001672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152016,0.001672,-0.002750,0.249985,0,0);}
.m43_c00131{transform:matrix(0.153004,0.001836,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153004,0.001836,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153004,0.001836,-0.003000,0.249982,0,0);}
.mb4_c00131{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);}
.mcf_c00131{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);}
.m53_c00131{transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);}
.m5d_c00131{transform:matrix(0.154289,0.001851,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154289,0.001851,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154289,0.001851,-0.003000,0.249982,0,0);}
.mb3_c00131{transform:matrix(0.154354,0.001852,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154354,0.001852,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154354,0.001852,-0.003000,0.249982,0,0);}
.mbb_c00131{transform:matrix(0.154644,0.001856,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154644,0.001856,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154644,0.001856,-0.003000,0.249982,0,0);}
.m76_c00131{transform:matrix(0.154744,0.001857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154744,0.001857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154744,0.001857,-0.003000,0.249982,0,0);}
.mb8_c00131{transform:matrix(0.155079,0.001861,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155079,0.001861,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155079,0.001861,-0.003000,0.249982,0,0);}
.m2c_c00131{transform:matrix(0.155226,0.001707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155226,0.001707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155226,0.001707,-0.002750,0.249985,0,0);}
.mac_c00131{transform:matrix(0.155839,0.001870,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155839,0.001870,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155839,0.001870,-0.003000,0.249982,0,0);}
.m98_c00131{transform:matrix(0.156227,0.002031,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156227,0.002031,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156227,0.002031,-0.003250,0.249979,0,0);}
.mb1_c00131{transform:matrix(0.156614,0.001879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156614,0.001879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156614,0.001879,-0.003000,0.249982,0,0);}
.m69_c00131{transform:matrix(0.158339,0.001900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158339,0.001900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158339,0.001900,-0.003000,0.249982,0,0);}
.mb2_c00131{transform:matrix(0.158554,0.001903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158554,0.001903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158554,0.001903,-0.003000,0.249982,0,0);}
.m80_c00131{transform:matrix(0.158930,0.001748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158930,0.001748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158930,0.001748,-0.002750,0.249985,0,0);}
.mbc_c00131{transform:matrix(0.159339,0.001912,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159339,0.001912,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159339,0.001912,-0.003000,0.249982,0,0);}
.m28_c00131{transform:matrix(0.160460,0.001765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160460,0.001765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160460,0.001765,-0.002750,0.249985,0,0);}
.ma2_c00131{transform:matrix(0.160631,0.002088,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160631,0.002088,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160631,0.002088,-0.003250,0.249979,0,0);}
.m54_c00131{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);}
.m2d_c00131{transform:matrix(0.161935,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161935,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161935,0.001781,-0.002750,0.249985,0,0);}
.mbd_c00131{transform:matrix(0.163033,0.001956,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163033,0.001956,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163033,0.001956,-0.003000,0.249982,0,0);}
.md1_c00131{transform:matrix(0.163193,0.001958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163193,0.001958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163193,0.001958,-0.003000,0.249982,0,0);}
.m7d_c00131{transform:matrix(0.163355,0.001797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163355,0.001797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163355,0.001797,-0.002750,0.249985,0,0);}
.m7b_c00131{transform:matrix(0.163380,0.001797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163380,0.001797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163380,0.001797,-0.002750,0.249985,0,0);}
.m87_c00131{transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);}
.mab_c00131{transform:matrix(0.164158,0.001970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164158,0.001970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164158,0.001970,-0.003000,0.249982,0,0);}
.m2f_c00131{transform:matrix(0.164730,0.001812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164730,0.001812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164730,0.001812,-0.002750,0.249985,0,0);}
.m8e_c00131{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);}
.mb6_c00131{transform:matrix(0.165088,0.001981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165088,0.001981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165088,0.001981,-0.003000,0.249982,0,0);}
.mcd_c00131{transform:matrix(0.165113,0.001981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165113,0.001981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165113,0.001981,-0.003000,0.249982,0,0);}
.m2a_c00131{transform:matrix(0.166195,0.001828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166195,0.001828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166195,0.001828,-0.002750,0.249985,0,0);}
.mce_c00131{transform:matrix(0.167788,0.002013,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167788,0.002013,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167788,0.002013,-0.003000,0.249982,0,0);}
.m62_c00131{transform:matrix(0.167933,0.002015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167933,0.002015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167933,0.002015,-0.003000,0.249982,0,0);}
.mc5_c00131{transform:matrix(0.169178,0.002030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169178,0.002030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169178,0.002030,-0.003000,0.249982,0,0);}
.mc8_c00131{transform:matrix(0.169848,0.002038,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169848,0.002038,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169848,0.002038,-0.003000,0.249982,0,0);}
.m30_c00131{transform:matrix(0.170585,0.001876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170585,0.001876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170585,0.001876,-0.002750,0.249985,0,0);}
.m61_c00131{transform:matrix(0.171008,0.002052,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171008,0.002052,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171008,0.002052,-0.003000,0.249982,0,0);}
.m34_c00131{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);}
.m48_c00131{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);}
.md5_c00131{transform:matrix(0.171798,0.002062,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171798,0.002062,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171798,0.002062,-0.003000,0.249982,0,0);}
.md3_c00131{transform:matrix(0.172243,0.002067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172243,0.002067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172243,0.002067,-0.003000,0.249982,0,0);}
.m73_c00131{transform:matrix(0.173473,0.002082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173473,0.002082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173473,0.002082,-0.003000,0.249982,0,0);}
.m5c_c00131{transform:matrix(0.174052,0.002089,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174052,0.002089,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174052,0.002089,-0.003000,0.249982,0,0);}
.m2e_c00131{transform:matrix(0.174414,0.001919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174414,0.001919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174414,0.001919,-0.002750,0.249985,0,0);}
.me3_c00131{transform:matrix(0.174966,0.001750,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174966,0.001750,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174966,0.001750,-0.002500,0.249988,0,0);}
.m26_c00131{transform:matrix(0.175064,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175064,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175064,0.001926,-0.002750,0.249985,0,0);}
.m15_c00131{transform:matrix(0.175506,0.005090,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175506,0.005090,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175506,0.005090,-0.007247,0.249895,0,0);}
.m39_c00131{transform:matrix(0.175579,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175579,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175579,0.001931,-0.002750,0.249985,0,0);}
.md2_c00131{transform:matrix(0.175792,0.002110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175792,0.002110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175792,0.002110,-0.003000,0.249982,0,0);}
.md0_c00131{transform:matrix(0.175797,0.002110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175797,0.002110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175797,0.002110,-0.003000,0.249982,0,0);}
.m41_c00131{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);}
.mbf_c00131{transform:matrix(0.176377,0.002117,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176377,0.002117,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176377,0.002117,-0.003000,0.249982,0,0);}
.m4e_c00131{transform:matrix(0.176537,0.002118,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176537,0.002118,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176537,0.002118,-0.003000,0.249982,0,0);}
.m67_c00131{transform:matrix(0.176902,0.002123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176902,0.002123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176902,0.002123,-0.003000,0.249982,0,0);}
.mc4_c00131{transform:matrix(0.176992,0.002124,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176992,0.002124,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176992,0.002124,-0.003000,0.249982,0,0);}
.m9c_c00131{transform:matrix(0.177035,0.002301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177035,0.002301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177035,0.002301,-0.003250,0.249979,0,0);}
.me9_c00131{transform:matrix(0.177216,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177216,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177216,0.001772,-0.002500,0.249988,0,0);}
.m74_c00131{transform:matrix(0.177432,0.002129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177432,0.002129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177432,0.002129,-0.003000,0.249982,0,0);}
.m83_c00131{transform:matrix(0.177845,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177845,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177845,0.002312,-0.003250,0.249979,0,0);}
.m8f_c00131{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);}
.mae_c00131{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);}
.m7a_c00131{transform:matrix(0.178334,0.001962,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178334,0.001962,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178334,0.001962,-0.002750,0.249985,0,0);}
.mcb_c00131{transform:matrix(0.178507,0.002142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178507,0.002142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178507,0.002142,-0.003000,0.249982,0,0);}
.m100_c00131{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);}
.m49_c00131{transform:matrix(0.178747,0.002145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178747,0.002145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178747,0.002145,-0.003000,0.249982,0,0);}
.mc1_c00131{transform:matrix(0.178762,0.002145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178762,0.002145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178762,0.002145,-0.003000,0.249982,0,0);}
.m105_c00131{transform:matrix(0.178887,0.002862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178887,0.002862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178887,0.002862,-0.003999,0.249968,0,0);}
.mc3_c00131{transform:matrix(0.179047,0.002149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179047,0.002149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179047,0.002149,-0.003000,0.249982,0,0);}
.m56_c00131{transform:matrix(0.179247,0.002151,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179247,0.002151,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179247,0.002151,-0.003000,0.249982,0,0);}
.mc9_c00131{transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);}
.m32_c00131{transform:matrix(0.179344,0.001973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179344,0.001973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179344,0.001973,-0.002750,0.249985,0,0);}
.m63_c00131{transform:matrix(0.180182,0.002162,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180182,0.002162,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180182,0.002162,-0.003000,0.249982,0,0);}
.me2_c00131{transform:matrix(0.180361,0.001804,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180361,0.001804,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180361,0.001804,-0.002500,0.249988,0,0);}
.m52_c00131{transform:matrix(0.180462,0.002166,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180462,0.002166,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180462,0.002166,-0.003000,0.249982,0,0);}
.m5a_c00131{transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);}
.m45_c00131{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);}
.m51_c00131{transform:matrix(0.181012,0.002172,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181012,0.002172,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181012,0.002172,-0.003000,0.249982,0,0);}
.m36_c00131{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);}
.m47_c00131{transform:matrix(0.182147,0.002186,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182147,0.002186,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182147,0.002186,-0.003000,0.249982,0,0);}
.m44_c00131{transform:matrix(0.182197,0.002186,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182197,0.002186,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182197,0.002186,-0.003000,0.249982,0,0);}
.m7c_c00131{transform:matrix(0.182574,0.002008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182574,0.002008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182574,0.002008,-0.002750,0.249985,0,0);}
.mc6_c00131{transform:matrix(0.182767,0.002193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182767,0.002193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182767,0.002193,-0.003000,0.249982,0,0);}
.m19_c00131{transform:matrix(0.182843,0.005302,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182843,0.005302,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182843,0.005302,-0.007247,0.249895,0,0);}
.mad_c00131{transform:matrix(0.182857,0.002194,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182857,0.002194,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182857,0.002194,-0.003000,0.249982,0,0);}
.m9b_c00131{transform:matrix(0.183504,0.002386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183504,0.002386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183504,0.002386,-0.003250,0.249979,0,0);}
.m31_c00131{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);}
.m8b_c00131{transform:matrix(0.184679,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184679,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184679,0.002401,-0.003250,0.249979,0,0);}
.m16_c00131{transform:matrix(0.184872,0.005361,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184872,0.005361,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184872,0.005361,-0.007247,0.249895,0,0);}
.mb5_c00131{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);}
.m46_c00131{transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);}
.m84_c00131{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);}
.m90_c00131{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);}
.m75_c00131{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);}
.ma6_c00131{transform:matrix(0.187644,0.002439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187644,0.002439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187644,0.002439,-0.003250,0.249979,0,0);}
.m60_c00131{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);}
.m5f_c00131{transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);}
.ma7_c00131{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);}
.m57_c00131{transform:matrix(0.188891,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188891,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188891,0.002267,-0.003000,0.249982,0,0);}
.m107_c00131{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);}
.m6b_c00131{transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);}
.ma1_c00131{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);}
.m101_c00131{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);}
.mc2_c00131{transform:matrix(0.190076,0.002281,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190076,0.002281,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190076,0.002281,-0.003000,0.249982,0,0);}
.m1b_c00131{transform:matrix(0.190080,0.005512,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190080,0.005512,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190080,0.005512,-0.007247,0.249895,0,0);}
.m71_c00131{transform:matrix(0.190171,0.002282,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190171,0.002282,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190171,0.002282,-0.003000,0.249982,0,0);}
.m59_c00131{transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);}
.m2b_c00131{transform:matrix(0.190833,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190833,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190833,0.002099,-0.002750,0.249985,0,0);}
.m7f_c00131{transform:matrix(0.191008,0.002101,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191008,0.002101,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191008,0.002101,-0.002750,0.249985,0,0);}
.maa_c00131{transform:matrix(0.191301,0.002296,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191301,0.002296,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191301,0.002296,-0.003000,0.249982,0,0);}
.m89_c00131{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);}
.m4a_c00131{transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);}
.m8a_c00131{transform:matrix(0.192439,0.002502,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192439,0.002502,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192439,0.002502,-0.003250,0.249979,0,0);}
.me4_c00131{transform:matrix(0.192680,0.001927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192680,0.001927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192680,0.001927,-0.002500,0.249988,0,0);}
.m18_c00131{transform:matrix(0.192719,0.005589,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192719,0.005589,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192719,0.005589,-0.007247,0.249895,0,0);}
.m3f_c00131{transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192753,0.002120,-0.002750,0.249985,0,0);}
.mdf_c00131{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);}
.mca_c00131{transform:matrix(0.193246,0.002319,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193246,0.002319,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193246,0.002319,-0.003000,0.249982,0,0);}
.ma0_c00131{transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193419,0.002514,-0.003250,0.249979,0,0);}
.m42_c00131{transform:matrix(0.193951,0.002327,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193951,0.002327,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193951,0.002327,-0.003000,0.249982,0,0);}
.me7_c00131{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);}
.m106_c00131{transform:matrix(0.194230,0.003108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194230,0.003108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194230,0.003108,-0.003999,0.249968,0,0);}
.m92_c00131{transform:matrix(0.194249,0.002525,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194249,0.002525,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194249,0.002525,-0.003250,0.249979,0,0);}
.m7e_c00131{transform:matrix(0.194428,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194428,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194428,0.002139,-0.002750,0.249985,0,0);}
.m68_c00131{transform:matrix(0.194441,0.002333,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194441,0.002333,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194441,0.002333,-0.003000,0.249982,0,0);}
.m38_c00131{transform:matrix(0.194488,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194488,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194488,0.002139,-0.002750,0.249985,0,0);}
.m96_c00131{transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194824,0.002533,-0.003250,0.249979,0,0);}
.m6f_c00131{transform:matrix(0.194956,0.002339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194956,0.002339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194956,0.002339,-0.003000,0.249982,0,0);}
.m85_c00131{transform:matrix(0.195343,0.002539,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195343,0.002539,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195343,0.002539,-0.003250,0.249979,0,0);}
.m86_c00131{transform:matrix(0.195413,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195413,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195413,0.002540,-0.003250,0.249979,0,0);}
.m12_c00131{transform:matrix(0.195453,0.005668,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195453,0.005668,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195453,0.005668,-0.007247,0.249895,0,0);}
.md4_c00131{transform:matrix(0.195696,0.002348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195696,0.002348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195696,0.002348,-0.003000,0.249982,0,0);}
.maf_c00131{transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);}
.ma9_c00131{transform:matrix(0.196686,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196686,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196686,0.002360,-0.003000,0.249982,0,0);}
.m22_c00131{transform:matrix(0.197028,0.002167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197028,0.002167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197028,0.002167,-0.002750,0.249985,0,0);}
.m79_c00131{transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);}
.me8_c00131{transform:matrix(0.197600,0.001976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197600,0.001976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197600,0.001976,-0.002500,0.249988,0,0);}
.m9f_c00131{transform:matrix(0.198513,0.002581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198513,0.002581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198513,0.002581,-0.003250,0.249979,0,0);}
.m27_c00131{transform:matrix(0.199223,0.002191,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199223,0.002191,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199223,0.002191,-0.002750,0.249985,0,0);}
.m9a_c00131{transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);}
.m14_c00131{transform:matrix(0.199441,0.005784,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199441,0.005784,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199441,0.005784,-0.007247,0.249895,0,0);}
.meb_c00131{transform:matrix(0.199790,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199790,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199790,0.001998,-0.002500,0.249988,0,0);}
.m108_c00131{transform:matrix(0.200679,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200679,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200679,0.003211,-0.003999,0.249968,0,0);}
.med_c00131{transform:matrix(0.200685,0.002007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200685,0.002007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200685,0.002007,-0.002500,0.249988,0,0);}
.m25_c00131{transform:matrix(0.201253,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201253,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201253,0.002214,-0.002750,0.249985,0,0);}
.m4c_c00131{transform:matrix(0.201261,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201261,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201261,0.002415,-0.003000,0.249982,0,0);}
.mbe_c00131{transform:matrix(0.201386,0.002417,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201386,0.002417,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201386,0.002417,-0.003000,0.249982,0,0);}
.m3e_c00131{transform:matrix(0.201763,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201763,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201763,0.002219,-0.002750,0.249985,0,0);}
.m81_c00131{transform:matrix(0.201833,0.002220,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201833,0.002220,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201833,0.002220,-0.002750,0.249985,0,0);}
.mda_c00131{transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);}
.mba_c00131{transform:matrix(0.203190,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203190,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203190,0.002438,-0.003000,0.249982,0,0);}
.mde_c00131{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);}
.m99_c00131{transform:matrix(0.203493,0.002645,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203493,0.002645,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203493,0.002645,-0.003250,0.249979,0,0);}
.mb7_c00131{transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);}
.ma_c00131{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);}
.m1f_c00131{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);}
.mdb_c00131{transform:matrix(0.204090,0.002449,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204090,0.002449,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204090,0.002449,-0.003000,0.249982,0,0);}
.m102_c00131{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);}
.mb0_c00131{transform:matrix(0.204590,0.002455,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204590,0.002455,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204590,0.002455,-0.003000,0.249982,0,0);}
.m1a_c00131{transform:matrix(0.204924,0.005943,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204924,0.005943,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204924,0.005943,-0.007247,0.249895,0,0);}
.m9e_c00131{transform:matrix(0.204948,0.002664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204948,0.002664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204948,0.002664,-0.003250,0.249979,0,0);}
.m88_c00131{transform:matrix(0.205028,0.002665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205028,0.002665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205028,0.002665,-0.003250,0.249979,0,0);}
.mef_c00131{transform:matrix(0.205800,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205800,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205800,0.002058,-0.002500,0.249988,0,0);}
.m20_c00131{transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205803,0.002264,-0.002750,0.249985,0,0);}
.m97_c00131{transform:matrix(0.205823,0.002676,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205823,0.002676,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205823,0.002676,-0.003250,0.249979,0,0);}
.md8_c00131{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);}
.mea_c00131{transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);}
.m104_c00131{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);}
.mcc_c00131{transform:matrix(0.208115,0.002497,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208115,0.002497,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208115,0.002497,-0.003000,0.249982,0,0);}
.mff_c00131{transform:matrix(0.208600,0.002086,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208600,0.002086,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208600,0.002086,-0.002500,0.249988,0,0);}
.m8c_c00131{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);}
.m6e_c00131{transform:matrix(0.209935,0.002519,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209935,0.002519,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209935,0.002519,-0.003000,0.249982,0,0);}
.m94_c00131{transform:matrix(0.209942,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209942,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209942,0.002729,-0.003250,0.249979,0,0);}
.mec_c00131{transform:matrix(0.210109,0.002101,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210109,0.002101,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210109,0.002101,-0.002500,0.249988,0,0);}
.m17_c00131{transform:matrix(0.210497,0.006104,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210497,0.006104,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210497,0.006104,-0.007247,0.249895,0,0);}
.ma3_c00131{transform:matrix(0.210932,0.002742,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210932,0.002742,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210932,0.002742,-0.003250,0.249979,0,0);}
.m3c_c00131{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);}
.mf2_c00131{transform:matrix(0.211829,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211829,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211829,0.002118,-0.002500,0.249988,0,0);}
.m13_c00131{transform:matrix(0.213105,0.006180,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213105,0.006180,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213105,0.006180,-0.007247,0.249895,0,0);}
.m6c_c00131{transform:matrix(0.213705,0.002564,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213705,0.002564,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213705,0.002564,-0.003000,0.249982,0,0);}
.me1_c00131{transform:matrix(0.214844,0.002148,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214844,0.002148,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214844,0.002148,-0.002500,0.249988,0,0);}
.m3b_c00131{transform:matrix(0.215747,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215747,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215747,0.002373,-0.002750,0.249985,0,0);}
.me0_c00131{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);}
.mb_c00131{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);}
.m72_c00131{transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);}
.m78_c00131{transform:matrix(0.218502,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218502,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218502,0.002404,-0.002750,0.249985,0,0);}
.m40_c00131{transform:matrix(0.219162,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219162,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219162,0.002411,-0.002750,0.249985,0,0);}
.m70_c00131{transform:matrix(0.219349,0.002632,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219349,0.002632,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219349,0.002632,-0.003000,0.249982,0,0);}
.m3d_c00131{transform:matrix(0.220282,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220282,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220282,0.002423,-0.002750,0.249985,0,0);}
.m58_c00131{transform:matrix(0.220929,0.002651,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220929,0.002651,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220929,0.002651,-0.003000,0.249982,0,0);}
.mee_c00131{transform:matrix(0.221029,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221029,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221029,0.002210,-0.002500,0.249988,0,0);}
.m93_c00131{transform:matrix(0.222031,0.002886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222031,0.002886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222031,0.002886,-0.003250,0.249979,0,0);}
.m21_c00131{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);}
.mc0_c00131{transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226344,0.002716,-0.003000,0.249982,0,0);}
.m64_c00131{transform:matrix(0.227324,0.002728,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227324,0.002728,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227324,0.002728,-0.003000,0.249982,0,0);}
.mfd_c00131{transform:matrix(0.227879,0.002279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227879,0.002279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227879,0.002279,-0.002500,0.249988,0,0);}
.mfe_c00131{transform:matrix(0.229184,0.002292,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229184,0.002292,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229184,0.002292,-0.002500,0.249988,0,0);}
.m0_c00131{transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);}
.md6_c00131{transform:matrix(0.233383,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233383,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233383,0.002801,-0.003000,0.249982,0,0);}
.mf1_c00131{transform:matrix(0.233613,0.002336,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233613,0.002336,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233613,0.002336,-0.002500,0.249988,0,0);}
.ma8_c00131{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.235436,0.002590,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235436,0.002590,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235436,0.002590,-0.002750,0.249985,0,0);}
.m8d_c00131{transform:matrix(0.236790,0.003078,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236790,0.003078,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236790,0.003078,-0.003250,0.249979,0,0);}
.m109_c00131{transform:matrix(0.237400,0.003798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237400,0.003798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237400,0.003798,-0.003999,0.249968,0,0);}
.mf6_c00131{transform:matrix(0.239408,0.002394,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239408,0.002394,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239408,0.002394,-0.002500,0.249988,0,0);}
.m82_c00131{transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239915,0.002639,-0.002750,0.249985,0,0);}
.mc7_c00131{transform:matrix(0.241898,0.002903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241898,0.002903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241898,0.002903,-0.003000,0.249982,0,0);}
.m91_c00131{transform:matrix(0.242565,0.003153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242565,0.003153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242565,0.003153,-0.003250,0.249979,0,0);}
.me_c00131{transform:matrix(0.243058,0.007049,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243058,0.007049,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243058,0.007049,-0.007247,0.249895,0,0);}
.mdc_c00131{transform:matrix(0.244217,0.002931,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244217,0.002931,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244217,0.002931,-0.003000,0.249982,0,0);}
.m95_c00131{transform:matrix(0.247074,0.003212,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247074,0.003212,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247074,0.003212,-0.003250,0.249979,0,0);}
.m9_c00131{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00131{transform:matrix(0.247848,0.002478,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247848,0.002478,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247848,0.002478,-0.002500,0.249988,0,0);}
.md_c00131{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);}
.m103_c00131{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);}
.ma5_c00131{transform:matrix(0.253674,0.003298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253674,0.003298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253674,0.003298,-0.003250,0.249979,0,0);}
.mfb_c00131{transform:matrix(0.256732,0.002567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256732,0.002567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256732,0.002567,-0.002500,0.249988,0,0);}
.mf8_c00131{transform:matrix(0.256877,0.002569,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256877,0.002569,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256877,0.002569,-0.002500,0.249988,0,0);}
.mfc_c00131{transform:matrix(0.260982,0.002610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260982,0.002610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260982,0.002610,-0.002500,0.249988,0,0);}
.ma4_c00131{transform:matrix(0.264053,0.003433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264053,0.003433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264053,0.003433,-0.003250,0.249979,0,0);}
.m55_c00131{transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);}
.m37_c00131{transform:matrix(0.268264,0.002951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268264,0.002951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268264,0.002951,-0.002750,0.249985,0,0);}
.m4d_c00131{transform:matrix(0.269291,0.003231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269291,0.003231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269291,0.003231,-0.003000,0.249982,0,0);}
.mf5_c00131{transform:matrix(0.283156,0.002832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283156,0.002832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283156,0.002832,-0.002500,0.249988,0,0);}
.m23_c00131{transform:matrix(0.285683,0.003143,-0.002750,0.249985,0,0);-ms-transform:matrix(0.285683,0.003143,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.285683,0.003143,-0.002750,0.249985,0,0);}
.me6_c00131{transform:matrix(0.285691,0.002857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285691,0.002857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285691,0.002857,-0.002500,0.249988,0,0);}
.mf4_c00131{transform:matrix(0.291785,0.002918,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291785,0.002918,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291785,0.002918,-0.002500,0.249988,0,0);}
.mfa_c00131{transform:matrix(0.304440,0.003044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304440,0.003044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304440,0.003044,-0.002500,0.249988,0,0);}
.m35_c00131{transform:matrix(0.319926,0.003519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319926,0.003519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319926,0.003519,-0.002750,0.249985,0,0);}
.mc_c00131{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.mf3_c00131{transform:matrix(0.335348,0.003353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.335348,0.003353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.335348,0.003353,-0.002500,0.249988,0,0);}
.mdd_c00131{transform:matrix(0.336876,0.004043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.336876,0.004043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.336876,0.004043,-0.003000,0.249982,0,0);}
.m3_c00131{transform:matrix(0.347140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347140,0.000000,0.000000,0.250000,0,0);}
.mf9_c00131{transform:matrix(0.366867,0.003669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.366867,0.003669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.366867,0.003669,-0.002500,0.249988,0,0);}
.m1d_c00131{transform:matrix(0.369903,0.004069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.369903,0.004069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.369903,0.004069,-0.002750,0.249985,0,0);}
.m24_c00131{transform:matrix(0.370863,0.004079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370863,0.004079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370863,0.004079,-0.002750,0.249985,0,0);}
.m10_c00131{transform:matrix(0.389061,0.011283,-0.007247,0.249895,0,0);-ms-transform:matrix(0.389061,0.011283,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.389061,0.011283,-0.007247,0.249895,0,0);}
.m29_c00131{transform:matrix(0.416865,0.004586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.416865,0.004586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.416865,0.004586,-0.002750,0.249985,0,0);}
.m5_c00131{transform:matrix(0.419945,0.005039,-0.003000,0.249982,0,0);-ms-transform:matrix(0.419945,0.005039,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.419945,0.005039,-0.003000,0.249982,0,0);}
.m2_c00131{transform:matrix(0.443825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443825,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.589635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589635,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.731170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731170,0.000000,0.000000,0.250000,0,0);}
.mf7_c00131{transform:matrix(0.820994,0.008210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.820994,0.008210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.820994,0.008210,-0.002500,0.249988,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;}
.fc0_c00131{color:transparent;}
.fs12_c00131{font-size:18.900000px;}
.fs5_c00131{font-size:25.200000px;}
.fs3_c00131{font-size:25.201814px;}
.fs0_c00131{font-size:30.450000px;}
.fs18_c00131{font-size:45.152257px;}
.fs1a_c00131{font-size:52.506720px;}
.fs19_c00131{font-size:53.550000px;}
.fs17_c00131{font-size:54.602730px;}
.fs1_c00131{font-size:58.800000px;}
.fs16_c00131{font-size:60.900000px;}
.fs2_c00131{font-size:61.950000px;}
.fsa_c00131{font-size:61.953748px;}
.fs8_c00131{font-size:67.204065px;}
.fs7_c00131{font-size:68.278693px;}
.fsf_c00131{font-size:69.305856px;}
.fs13_c00131{font-size:70.355065px;}
.fs10_c00131{font-size:70.355944px;}
.fsc_c00131{font-size:71.405141px;}
.fs15_c00131{font-size:72.450000px;}
.fs9_c00131{font-size:72.454383px;}
.fse_c00131{font-size:72.455216px;}
.fs11_c00131{font-size:72.456122px;}
.fsb_c00131{font-size:73.505292px;}
.fs14_c00131{font-size:74.555367px;}
.fsd_c00131{font-size:75.605443px;}
.fs4_c00131{font-size:128.100000px;}
.fs6_c00131{font-size:172.272395px;}
.y0_c00131{bottom:0.000000px;}
.y101_c00131{bottom:164.162784px;}
.y100_c00131{bottom:165.044304px;}
.yff_c00131{bottom:165.519504px;}
.yfe_c00131{bottom:166.098528px;}
.yfd_c00131{bottom:166.863000px;}
.yfc_c00131{bottom:168.231000px;}
.yfb_c00131{bottom:182.170935px;}
.yfa_c00131{bottom:182.376105px;}
.yf9_c00131{bottom:182.875875px;}
.yf8_c00131{bottom:183.248295px;}
.yf7_c00131{bottom:183.556155px;}
.yf6_c00131{bottom:183.723525px;}
.yf5_c00131{bottom:183.845235px;}
.yf4_c00131{bottom:184.341825px;}
.yf3_c00131{bottom:184.490865px;}
.yf2_c00131{bottom:184.817175px;}
.yf1_c00131{bottom:185.090025px;}
.yf0_c00131{bottom:185.232960px;}
.yef_c00131{bottom:185.373630px;}
.yee_c00131{bottom:185.838120px;}
.yed_c00131{bottom:186.064530px;}
.yec_c00131{bottom:186.421050px;}
.yeb_c00131{bottom:186.628935px;}
.yea_c00131{bottom:186.839475px;}
.ye9_c00131{bottom:200.400345px;}
.ye8_c00131{bottom:200.799900px;}
.ye7_c00131{bottom:201.010440px;}
.ye6_c00131{bottom:201.539610px;}
.ye5_c00131{bottom:201.771930px;}
.ye4_c00131{bottom:202.236360px;}
.ye3_c00131{bottom:202.571460px;}
.ye2_c00131{bottom:202.727910px;}
.ye1_c00131{bottom:203.016690px;}
.ye0_c00131{bottom:203.594805px;}
.ydf_c00131{bottom:203.778075px;}
.yde_c00131{bottom:204.345480px;}
.ydd_c00131{bottom:204.790965px;}
.ydc_c00131{bottom:204.931500px;}
.ydb_c00131{bottom:398.967000px;}
.yda_c00131{bottom:400.410000px;}
.yd9_c00131{bottom:416.875146px;}
.yd8_c00131{bottom:417.643044px;}
.yd7_c00131{bottom:417.930102px;}
.yd6_c00131{bottom:418.963446px;}
.yd5_c00131{bottom:419.461074px;}
.yd4_c00131{bottom:420.749520px;}
.yd3_c00131{bottom:421.093020px;}
.yd2_c00131{bottom:421.406292px;}
.yd1_c00131{bottom:422.021862px;}
.yd0_c00131{bottom:422.439600px;}
.ycf_c00131{bottom:423.350154px;}
.yce_c00131{bottom:423.891486px;}
.ycd_c00131{bottom:440.809386px;}
.ycc_c00131{bottom:441.412098px;}
.ycb_c00131{bottom:441.642120px;}
.yca_c00131{bottom:442.345308px;}
.yc9_c00131{bottom:442.601286px;}
.yc8_c00131{bottom:442.912776px;}
.yc7_c00131{bottom:443.398398px;}
.yc6_c00131{bottom:444.046434px;}
.yc5_c00131{bottom:444.376302px;}
.yc4_c00131{bottom:445.222626px;}
.yc3_c00131{bottom:445.747506px;}
.yc2_c00131{bottom:446.032608px;}
.yc1_c00131{bottom:463.686978px;}
.yc0_c00131{bottom:464.004714px;}
.ybf_c00131{bottom:465.018996px;}
.ybe_c00131{bottom:465.968280px;}
.ybd_c00131{bottom:466.557870px;}
.ybc_c00131{bottom:466.852962px;}
.ybb_c00131{bottom:467.105592px;}
.yba_c00131{bottom:468.107022px;}
.yb9_c00131{bottom:468.984954px;}
.yb8_c00131{bottom:486.758712px;}
.yb7_c00131{bottom:487.493010px;}
.yb6_c00131{bottom:487.837476px;}
.yb5_c00131{bottom:488.340000px;}
.yb4_c00131{bottom:488.744784px;}
.yb3_c00131{bottom:489.160758px;}
.yb2_c00131{bottom:489.927948px;}
.yb1_c00131{bottom:490.328970px;}
.yb0_c00131{bottom:490.995144px;}
.yaf_c00131{bottom:491.669250px;}
.yae_c00131{bottom:510.082746px;}
.yad_c00131{bottom:510.513720px;}
.yac_c00131{bottom:510.889614px;}
.yab_c00131{bottom:511.391976px;}
.yaa_c00131{bottom:511.722204px;}
.ya9_c00131{bottom:512.273166px;}
.ya8_c00131{bottom:512.684700px;}
.ya7_c00131{bottom:513.420702px;}
.ya6_c00131{bottom:513.659364px;}
.ya5_c00131{bottom:514.385970px;}
.ya4_c00131{bottom:515.059602px;}
.ya3_c00131{bottom:515.701500px;}
.ya2_c00131{bottom:522.450000px;}
.ya1_c00131{bottom:532.778154px;}
.ya0_c00131{bottom:533.257017px;}
.y9f_c00131{bottom:533.532847px;}
.y9e_c00131{bottom:534.504808px;}
.y9d_c00131{bottom:534.793335px;}
.y9c_c00131{bottom:535.402332px;}
.y9b_c00131{bottom:536.069970px;}
.y9a_c00131{bottom:536.535747px;}
.y99_c00131{bottom:537.077833px;}
.y98_c00131{bottom:537.563619px;}
.y97_c00131{bottom:557.078436px;}
.y96_c00131{bottom:557.425740px;}
.y95_c00131{bottom:557.971005px;}
.y94_c00131{bottom:558.944838px;}
.y1_c00131{bottom:559.036500px;}
.y93_c00131{bottom:560.356774px;}
.y92_c00131{bottom:560.787058px;}
.y91_c00131{bottom:578.083821px;}
.y90_c00131{bottom:578.465799px;}
.y8f_c00131{bottom:578.742253px;}
.y8e_c00131{bottom:579.516799px;}
.y8d_c00131{bottom:580.738264px;}
.y8c_c00131{bottom:581.393284px;}
.y8b_c00131{bottom:581.729454px;}
.y8a_c00131{bottom:582.511176px;}
.y89_c00131{bottom:582.988321px;}
.y88_c00131{bottom:583.470051px;}
.y87_c00131{bottom:601.055512px;}
.y86_c00131{bottom:601.816656px;}
.y85_c00131{bottom:602.286547px;}
.y84_c00131{bottom:603.017017px;}
.y83_c00131{bottom:603.350526px;}
.y82_c00131{bottom:604.112274px;}
.y81_c00131{bottom:604.395823px;}
.y80_c00131{bottom:604.898631px;}
.y7f_c00131{bottom:605.147782px;}
.y7e_c00131{bottom:606.278178px;}
.y7d_c00131{bottom:606.691500px;}
.y7c_c00131{bottom:623.746713px;}
.y7b_c00131{bottom:624.349821px;}
.y7a_c00131{bottom:624.899172px;}
.y79_c00131{bottom:625.511058px;}
.y78_c00131{bottom:625.852756px;}
.y77_c00131{bottom:626.309971px;}
.y76_c00131{bottom:627.185841px;}
.y75_c00131{bottom:627.467842px;}
.y74_c00131{bottom:627.943142px;}
.y73_c00131{bottom:628.139640px;}
.y72_c00131{bottom:628.682688px;}
.y71_c00131{bottom:628.830000px;}
.y70_c00131{bottom:647.069424px;}
.y6f_c00131{bottom:647.558520px;}
.y6e_c00131{bottom:647.823546px;}
.y6d_c00131{bottom:648.521964px;}
.y6c_c00131{bottom:648.991218px;}
.y6b_c00131{bottom:649.454694px;}
.y6a_c00131{bottom:650.354598px;}
.y69_c00131{bottom:651.023598px;}
.y68_c00131{bottom:651.281568px;}
.y67_c00131{bottom:651.712368px;}
.y66_c00131{bottom:652.045302px;}
.y65_c00131{bottom:670.001334px;}
.y64_c00131{bottom:670.131282px;}
.y63_c00131{bottom:670.624878px;}
.y62_c00131{bottom:670.958028px;}
.y61_c00131{bottom:671.724642px;}
.y60_c00131{bottom:672.209190px;}
.y5f_c00131{bottom:672.530736px;}
.y5e_c00131{bottom:672.791802px;}
.y5d_c00131{bottom:673.483920px;}
.y5c_c00131{bottom:673.831554px;}
.y5b_c00131{bottom:674.457762px;}
.y5a_c00131{bottom:692.585082px;}
.y59_c00131{bottom:693.031662px;}
.y58_c00131{bottom:693.544356px;}
.y57_c00131{bottom:693.933084px;}
.y56_c00131{bottom:694.701018px;}
.y55_c00131{bottom:694.937484px;}
.y54_c00131{bottom:695.841570px;}
.y53_c00131{bottom:696.265398px;}
.y52_c00131{bottom:696.923856px;}
.y51_c00131{bottom:697.409892px;}
.y50_c00131{bottom:715.332150px;}
.y4f_c00131{bottom:715.691514px;}
.y4e_c00131{bottom:716.193786px;}
.y4d_c00131{bottom:716.523480px;}
.y4c_c00131{bottom:716.805798px;}
.y4b_c00131{bottom:717.393390px;}
.y4a_c00131{bottom:717.936918px;}
.y49_c00131{bottom:718.095546px;}
.y48_c00131{bottom:718.893774px;}
.y47_c00131{bottom:719.131488px;}
.y46_c00131{bottom:719.320830px;}
.y45_c00131{bottom:720.089508px;}
.y44_c00131{bottom:737.386170px;}
.y43_c00131{bottom:738.305844px;}
.y42_c00131{bottom:738.627126px;}
.y41_c00131{bottom:739.427460px;}
.y40_c00131{bottom:739.809798px;}
.y3f_c00131{bottom:740.590854px;}
.y3e_c00131{bottom:741.537024px;}
.y3d_c00131{bottom:741.773454px;}
.y3c_c00131{bottom:741.977646px;}
.y3b_c00131{bottom:742.771500px;}
.y3a_c00131{bottom:760.986571px;}
.y39_c00131{bottom:761.388519px;}
.y38_c00131{bottom:761.833255px;}
.y37_c00131{bottom:762.304047px;}
.y36_c00131{bottom:762.982100px;}
.y35_c00131{bottom:763.402957px;}
.y34_c00131{bottom:763.729839px;}
.y33_c00131{bottom:764.382662px;}
.y32_c00131{bottom:765.198585px;}
.y31_c00131{bottom:765.432909px;}
.y30_c00131{bottom:765.620550px;}
.y2f_c00131{bottom:765.988670px;}
.y2e_c00131{bottom:784.765086px;}
.y2d_c00131{bottom:785.475556px;}
.y2c_c00131{bottom:786.023179px;}
.y2b_c00131{bottom:786.826347px;}
.y2a_c00131{bottom:788.121502px;}
.y29_c00131{bottom:789.149782px;}
.y28_c00131{bottom:790.118403px;}
.y27_c00131{bottom:790.976908px;}
.y26_c00131{bottom:791.325546px;}
.y25_c00131{bottom:791.865648px;}
.y24_c00131{bottom:792.176613px;}
.y23_c00131{bottom:792.992035px;}
.y22_c00131{bottom:806.191542px;}
.y21_c00131{bottom:806.901983px;}
.y20_c00131{bottom:807.573169px;}
.y1f_c00131{bottom:807.926055px;}
.y1e_c00131{bottom:808.179627px;}
.y1d_c00131{bottom:808.669215px;}
.y1c_c00131{bottom:809.036983px;}
.y1b_c00131{bottom:810.100870px;}
.y1a_c00131{bottom:810.394851px;}
.y19_c00131{bottom:811.104763px;}
.y18_c00131{bottom:811.320319px;}
.y17_c00131{bottom:811.891500px;}
.y16_c00131{bottom:829.044410px;}
.y15_c00131{bottom:829.569213px;}
.y14_c00131{bottom:830.022631px;}
.y13_c00131{bottom:830.475833px;}
.y12_c00131{bottom:830.877393px;}
.y11_c00131{bottom:831.772385px;}
.y10_c00131{bottom:832.339163px;}
.yf_c00131{bottom:832.603133px;}
.ye_c00131{bottom:832.983597px;}
.yd_c00131{bottom:833.345491px;}
.yc_c00131{bottom:833.761094px;}
.yb_c00131{bottom:833.924896px;}
.ya_c00131{bottom:834.295869px;}
.y9_c00131{bottom:843.481389px;}
.y8_c00131{bottom:848.097000px;}
.y7_c00131{bottom:874.804500px;}
.y6_c00131{bottom:876.633000px;}
.y5_c00131{bottom:902.448900px;}
.y4_c00131{bottom:907.200000px;}
.y3_c00131{bottom:921.460500px;}
.y2_c00131{bottom:936.775500px;}
.h14_c00131{height:18.900000px;}
.h7_c00131{height:25.200000px;}
.h5_c00131{height:25.201814px;}
.h2_c00131{height:30.450000px;}
.h1a_c00131{height:45.152257px;}
.h1c_c00131{height:52.506720px;}
.h1b_c00131{height:53.550000px;}
.h19_c00131{height:54.602730px;}
.h3_c00131{height:58.800000px;}
.h18_c00131{height:60.900000px;}
.h4_c00131{height:61.950000px;}
.hc_c00131{height:61.953748px;}
.ha_c00131{height:67.204065px;}
.h9_c00131{height:68.278693px;}
.h11_c00131{height:69.305856px;}
.h15_c00131{height:70.355065px;}
.h12_c00131{height:70.355944px;}
.he_c00131{height:71.405141px;}
.h17_c00131{height:72.450000px;}
.hb_c00131{height:72.454383px;}
.h10_c00131{height:72.455216px;}
.h13_c00131{height:72.456122px;}
.hd_c00131{height:73.505292px;}
.h16_c00131{height:74.555367px;}
.hf_c00131{height:75.605443px;}
.h6_c00131{height:128.100000px;}
.h8_c00131{height:172.272395px;}
.h0_c00131{height:1008.450000px;}
.h1_c00131{height:1008.750000px;}
.w0_c00131{width:676.890000px;}
.w1_c00131{width:677.250000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:90.450000px;}
.xc_c00131{left:93.150000px;}
.x5_c00131{left:95.521500px;}
.x7_c00131{left:98.280000px;}
.x3_c00131{left:107.730000px;}
.x4_c00131{left:134.730000px;}
.x92_c00131{left:138.684780px;}
.x1_c00131{left:141.210000px;}
.xe_c00131{left:144.168122px;}
.x8_c00131{left:146.880000px;}
.x8d_c00131{left:151.864500px;}
.x9a_c00131{left:156.600000px;}
.x52_c00131{left:158.350518px;}
.xf_c00131{left:160.584170px;}
.x1a_c00131{left:162.936000px;}
.x84_c00131{left:165.086634px;}
.x88_c00131{left:176.390532px;}
.x93_c00131{left:180.527280px;}
.x2b_c00131{left:186.177405px;}
.x53_c00131{left:188.595378px;}
.x5d_c00131{left:192.072000px;}
.x23_c00131{left:194.514776px;}
.x68_c00131{left:195.545210px;}
.x63_c00131{left:200.721245px;}
.x10_c00131{left:202.145050px;}
.x85_c00131{left:208.826634px;}
.x9_c00131{left:210.060000px;}
.x9b_c00131{left:211.680000px;}
.x7f_c00131{left:213.943944px;}
.x24_c00131{left:215.025923px;}
.x94_c00131{left:216.179280px;}
.x4a_c00131{left:217.474428px;}
.x1b_c00131{left:227.473500px;}
.x39_c00131{left:231.249204px;}
.x89_c00131{left:237.142854px;}
.x11_c00131{left:238.385517px;}
.x64_c00131{left:240.425252px;}
.x34_c00131{left:244.468500px;}
.x6b_c00131{left:245.861591px;}
.x3a_c00131{left:248.527920px;}
.xd_c00131{left:250.051500px;}
.x54_c00131{left:251.243634px;}
.x1c_c00131{left:254.199000px;}
.x42_c00131{left:256.137162px;}
.x7a_c00131{left:263.138652px;}
.x35_c00131{left:264.171000px;}
.x25_c00131{left:265.523090px;}
.x2c_c00131{left:267.716796px;}
.x3b_c00131{left:270.087672px;}
.x12_c00131{left:276.456984px;}
.x5e_c00131{left:279.025500px;}
.x6c_c00131{left:284.691098px;}
.x43_c00131{left:291.456162px;}
.x59_c00131{left:296.631000px;}
.x5f_c00131{left:298.191000px;}
.x7b_c00131{left:299.557584px;}
.x13_c00131{left:302.901556px;}
.x65_c00131{left:305.520090px;}
.x86_c00131{left:306.842634px;}
.x4b_c00131{left:311.996562px;}
.x69_c00131{left:313.157231px;}
.x73_c00131{left:314.280000px;}
.x80_c00131{left:318.448944px;}
.x26_c00131{left:322.484828px;}
.x8a_c00131{left:326.854614px;}
.x74_c00131{left:331.114500px;}
.x2d_c00131{left:333.065022px;}
.x4c_c00131{left:335.752350px;}
.x60_c00131{left:336.868500px;}
.x6d_c00131{left:340.317819px;}
.x36_c00131{left:343.018500px;}
.x8b_c00131{left:349.728786px;}
.xa_c00131{left:350.730000px;}
.x3c_c00131{left:357.076716px;}
.x14_c00131{left:359.614790px;}
.x87_c00131{left:360.845634px;}
.x2e_c00131{left:365.781885px;}
.x44_c00131{left:366.796662px;}
.x7c_c00131{left:369.240912px;}
.x8e_c00131{left:372.223500px;}
.x95_c00131{left:373.545780px;}
.x5a_c00131{left:376.255500px;}
.x27_c00131{left:382.960835px;}
.x1d_c00131{left:384.349500px;}
.x45_c00131{left:386.502162px;}
.x66_c00131{left:388.112662px;}
.x6e_c00131{left:391.087482px;}
.x75_c00131{left:392.448000px;}
.x55_c00131{left:393.862344px;}
.xb_c00131{left:402.030000px;}
.x3d_c00131{left:406.496310px;}
.x2f_c00131{left:407.860347px;}
.x4d_c00131{left:408.927714px;}
.x6f_c00131{left:415.128294px;}
.x5b_c00131{left:417.820500px;}
.x8f_c00131{left:421.378500px;}
.x76_c00131{left:426.742500px;}
.x1e_c00131{left:428.857500px;}
.x9c_c00131{left:433.458000px;}
.x56_c00131{left:435.985848px;}
.x96_c00131{left:438.108780px;}
.x37_c00131{left:439.968000px;}
.x61_c00131{left:442.930500px;}
.x15_c00131{left:449.077532px;}
.x46_c00131{left:450.496662px;}
.x1f_c00131{left:451.909500px;}
.x28_c00131{left:459.106302px;}
.x97_c00131{left:467.016780px;}
.x6a_c00131{left:468.613239px;}
.x9d_c00131{left:469.647000px;}
.x81_c00131{left:471.279444px;}
.x77_c00131{left:472.656000px;}
.x30_c00131{left:475.638589px;}
.x4e_c00131{left:478.563042px;}
.x47_c00131{left:482.890662px;}
.x20_c00131{left:483.990000px;}
.x3e_c00131{left:485.614764px;}
.x16_c00131{left:489.274173px;}
.x6_c00131{left:491.446500px;}
.x70_c00131{left:496.126347px;}
.x98_c00131{left:497.802780px;}
.x62_c00131{left:499.120500px;}
.x78_c00131{left:500.175000px;}
.x5c_c00131{left:504.510000px;}
.x29_c00131{left:506.345683px;}
.x4f_c00131{left:508.825902px;}
.x3f_c00131{left:515.589624px;}
.x71_c00131{left:519.075140px;}
.x7d_c00131{left:520.721712px;}
.x31_c00131{left:522.665601px;}
.x48_c00131{left:525.615162px;}
.x38_c00131{left:533.436000px;}
.x17_c00131{left:534.668186px;}
.x2a_c00131{left:538.536555px;}
.x57_c00131{left:542.043108px;}
.x90_c00131{left:543.970500px;}
.x21_c00131{left:545.007000px;}
.x50_c00131{left:553.709442px;}
.x82_c00131{left:555.802944px;}
.x8c_c00131{left:556.844334px;}
.x72_c00131{left:559.026666px;}
.x40_c00131{left:561.196164px;}
.x49_c00131{left:562.830162px;}
.x51_c00131{left:565.538586px;}
.x32_c00131{left:567.187596px;}
.x79_c00131{left:573.363000px;}
.x67_c00131{left:577.458620px;}
.x18_c00131{left:580.069698px;}
.x83_c00131{left:582.280944px;}
.x99_c00131{left:585.021780px;}
.x7e_c00131{left:587.414004px;}
.x41_c00131{left:593.893560px;}
.x91_c00131{left:604.980000px;}
.x33_c00131{left:607.410541px;}
.x22_c00131{left:609.592500px;}
.x58_c00131{left:610.637436px;}
.x19_c00131{left:632.540082px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.fs12_c00131{font-size:16.800000pt;}
.fs5_c00131{font-size:22.400000pt;}
.fs3_c00131{font-size:22.401613pt;}
.fs0_c00131{font-size:27.066667pt;}
.fs18_c00131{font-size:40.135340pt;}
.fs1a_c00131{font-size:46.672640pt;}
.fs19_c00131{font-size:47.600000pt;}
.fs17_c00131{font-size:48.535760pt;}
.fs1_c00131{font-size:52.266667pt;}
.fs16_c00131{font-size:54.133333pt;}
.fs2_c00131{font-size:55.066667pt;}
.fsa_c00131{font-size:55.069998pt;}
.fs8_c00131{font-size:59.736947pt;}
.fs7_c00131{font-size:60.692172pt;}
.fsf_c00131{font-size:61.605205pt;}
.fs13_c00131{font-size:62.537836pt;}
.fs10_c00131{font-size:62.538617pt;}
.fsc_c00131{font-size:63.471236pt;}
.fs15_c00131{font-size:64.400000pt;}
.fs9_c00131{font-size:64.403896pt;}
.fse_c00131{font-size:64.404637pt;}
.fs11_c00131{font-size:64.405442pt;}
.fsb_c00131{font-size:65.338037pt;}
.fs14_c00131{font-size:66.271438pt;}
.fsd_c00131{font-size:67.204838pt;}
.fs4_c00131{font-size:113.866667pt;}
.fs6_c00131{font-size:153.131018pt;}
.y0_c00131{bottom:0.000000pt;}
.y101_c00131{bottom:145.922475pt;}
.y100_c00131{bottom:146.706048pt;}
.yff_c00131{bottom:147.128448pt;}
.yfe_c00131{bottom:147.643136pt;}
.yfd_c00131{bottom:148.322667pt;}
.yfc_c00131{bottom:149.538667pt;}
.yfb_c00131{bottom:161.929720pt;}
.yfa_c00131{bottom:162.112093pt;}
.yf9_c00131{bottom:162.556333pt;}
.yf8_c00131{bottom:162.887373pt;}
.yf7_c00131{bottom:163.161027pt;}
.yf6_c00131{bottom:163.309800pt;}
.yf5_c00131{bottom:163.417987pt;}
.yf4_c00131{bottom:163.859400pt;}
.yf3_c00131{bottom:163.991880pt;}
.yf2_c00131{bottom:164.281933pt;}
.yf1_c00131{bottom:164.524467pt;}
.yf0_c00131{bottom:164.651520pt;}
.yef_c00131{bottom:164.776560pt;}
.yee_c00131{bottom:165.189440pt;}
.yed_c00131{bottom:165.390693pt;}
.yec_c00131{bottom:165.707600pt;}
.yeb_c00131{bottom:165.892387pt;}
.yea_c00131{bottom:166.079533pt;}
.ye9_c00131{bottom:178.133640pt;}
.ye8_c00131{bottom:178.488800pt;}
.ye7_c00131{bottom:178.675947pt;}
.ye6_c00131{bottom:179.146320pt;}
.ye5_c00131{bottom:179.352827pt;}
.ye4_c00131{bottom:179.765653pt;}
.ye3_c00131{bottom:180.063520pt;}
.ye2_c00131{bottom:180.202587pt;}
.ye1_c00131{bottom:180.459280pt;}
.ye0_c00131{bottom:180.973160pt;}
.ydf_c00131{bottom:181.136067pt;}
.yde_c00131{bottom:181.640427pt;}
.ydd_c00131{bottom:182.036413pt;}
.ydc_c00131{bottom:182.161333pt;}
.ydb_c00131{bottom:354.637333pt;}
.yda_c00131{bottom:355.920000pt;}
.yd9_c00131{bottom:370.555685pt;}
.yd8_c00131{bottom:371.238261pt;}
.yd7_c00131{bottom:371.493424pt;}
.yd6_c00131{bottom:372.411952pt;}
.yd5_c00131{bottom:372.854288pt;}
.yd4_c00131{bottom:373.999573pt;}
.yd3_c00131{bottom:374.304907pt;}
.yd2_c00131{bottom:374.583371pt;}
.yd1_c00131{bottom:375.130544pt;}
.yd0_c00131{bottom:375.501867pt;}
.ycf_c00131{bottom:376.311248pt;}
.yce_c00131{bottom:376.792432pt;}
.ycd_c00131{bottom:391.830565pt;}
.ycc_c00131{bottom:392.366309pt;}
.ycb_c00131{bottom:392.570773pt;}
.yca_c00131{bottom:393.195829pt;}
.yc9_c00131{bottom:393.423365pt;}
.yc8_c00131{bottom:393.700245pt;}
.yc7_c00131{bottom:394.131909pt;}
.yc6_c00131{bottom:394.707941pt;}
.yc5_c00131{bottom:395.001157pt;}
.yc4_c00131{bottom:395.753445pt;}
.yc3_c00131{bottom:396.220005pt;}
.yc2_c00131{bottom:396.473429pt;}
.yc1_c00131{bottom:412.166203pt;}
.yc0_c00131{bottom:412.448635pt;}
.ybf_c00131{bottom:413.350219pt;}
.ybe_c00131{bottom:414.194027pt;}
.ybd_c00131{bottom:414.718107pt;}
.ybc_c00131{bottom:414.980411pt;}
.ybb_c00131{bottom:415.204971pt;}
.yba_c00131{bottom:416.095131pt;}
.yb9_c00131{bottom:416.875515pt;}
.yb8_c00131{bottom:432.674411pt;}
.yb7_c00131{bottom:433.327120pt;}
.yb6_c00131{bottom:433.633312pt;}
.yb5_c00131{bottom:434.080000pt;}
.yb4_c00131{bottom:434.439808pt;}
.yb3_c00131{bottom:434.809563pt;}
.yb2_c00131{bottom:435.491509pt;}
.yb1_c00131{bottom:435.847973pt;}
.yb0_c00131{bottom:436.440128pt;}
.yaf_c00131{bottom:437.039333pt;}
.yae_c00131{bottom:453.406885pt;}
.yad_c00131{bottom:453.789973pt;}
.yac_c00131{bottom:454.124101pt;}
.yab_c00131{bottom:454.570645pt;}
.yaa_c00131{bottom:454.864181pt;}
.ya9_c00131{bottom:455.353925pt;}
.ya8_c00131{bottom:455.719733pt;}
.ya7_c00131{bottom:456.373957pt;}
.ya6_c00131{bottom:456.586101pt;}
.ya5_c00131{bottom:457.231973pt;}
.ya4_c00131{bottom:457.830757pt;}
.ya3_c00131{bottom:458.401333pt;}
.ya2_c00131{bottom:464.400000pt;}
.ya1_c00131{bottom:473.580581pt;}
.ya0_c00131{bottom:474.006237pt;}
.y9f_c00131{bottom:474.251420pt;}
.y9e_c00131{bottom:475.115385pt;}
.y9d_c00131{bottom:475.371853pt;}
.y9c_c00131{bottom:475.913184pt;}
.y9b_c00131{bottom:476.506640pt;}
.y9a_c00131{bottom:476.920664pt;}
.y99_c00131{bottom:477.402519pt;}
.y98_c00131{bottom:477.834328pt;}
.y97_c00131{bottom:495.180832pt;}
.y96_c00131{bottom:495.489547pt;}
.y95_c00131{bottom:495.974227pt;}
.y94_c00131{bottom:496.839856pt;}
.y1_c00131{bottom:496.921333pt;}
.y93_c00131{bottom:498.094911pt;}
.y92_c00131{bottom:498.477385pt;}
.y91_c00131{bottom:513.852285pt;}
.y90_c00131{bottom:514.191821pt;}
.y8f_c00131{bottom:514.437559pt;}
.y8e_c00131{bottom:515.126044pt;}
.y8d_c00131{bottom:516.211791pt;}
.y8c_c00131{bottom:516.794031pt;}
.y8b_c00131{bottom:517.092848pt;}
.y8a_c00131{bottom:517.787712pt;}
.y89_c00131{bottom:518.211841pt;}
.y88_c00131{bottom:518.640045pt;}
.y87_c00131{bottom:534.271567pt;}
.y86_c00131{bottom:534.948139pt;}
.y85_c00131{bottom:535.365820pt;}
.y84_c00131{bottom:536.015127pt;}
.y83_c00131{bottom:536.311579pt;}
.y82_c00131{bottom:536.988688pt;}
.y81_c00131{bottom:537.240732pt;}
.y80_c00131{bottom:537.687672pt;}
.y7f_c00131{bottom:537.909140pt;}
.y7e_c00131{bottom:538.913936pt;}
.y7d_c00131{bottom:539.281333pt;}
.y7c_c00131{bottom:554.441523pt;}
.y7b_c00131{bottom:554.977619pt;}
.y7a_c00131{bottom:555.465931pt;}
.y79_c00131{bottom:556.009829pt;}
.y78_c00131{bottom:556.313561pt;}
.y77_c00131{bottom:556.719975pt;}
.y76_c00131{bottom:557.498525pt;}
.y75_c00131{bottom:557.749193pt;}
.y74_c00131{bottom:558.171681pt;}
.y73_c00131{bottom:558.346347pt;}
.y72_c00131{bottom:558.829056pt;}
.y71_c00131{bottom:558.960000pt;}
.y70_c00131{bottom:575.172821pt;}
.y6f_c00131{bottom:575.607573pt;}
.y6e_c00131{bottom:575.843152pt;}
.y6d_c00131{bottom:576.463968pt;}
.y6c_c00131{bottom:576.881083pt;}
.y6b_c00131{bottom:577.293061pt;}
.y6a_c00131{bottom:578.092976pt;}
.y69_c00131{bottom:578.687643pt;}
.y68_c00131{bottom:578.916949pt;}
.y67_c00131{bottom:579.299883pt;}
.y66_c00131{bottom:579.595824pt;}
.y65_c00131{bottom:595.556741pt;}
.y64_c00131{bottom:595.672251pt;}
.y63_c00131{bottom:596.111003pt;}
.y62_c00131{bottom:596.407136pt;}
.y61_c00131{bottom:597.088571pt;}
.y60_c00131{bottom:597.519280pt;}
.y5f_c00131{bottom:597.805099pt;}
.y5e_c00131{bottom:598.037157pt;}
.y5d_c00131{bottom:598.652373pt;}
.y5c_c00131{bottom:598.961381pt;}
.y5b_c00131{bottom:599.518011pt;}
.y5a_c00131{bottom:615.631184pt;}
.y59_c00131{bottom:616.028144pt;}
.y58_c00131{bottom:616.483872pt;}
.y57_c00131{bottom:616.829408pt;}
.y56_c00131{bottom:617.512016pt;}
.y55_c00131{bottom:617.722208pt;}
.y54_c00131{bottom:618.525840pt;}
.y53_c00131{bottom:618.902576pt;}
.y52_c00131{bottom:619.487872pt;}
.y51_c00131{bottom:619.919904pt;}
.y50_c00131{bottom:635.850800pt;}
.y4f_c00131{bottom:636.170235pt;}
.y4e_c00131{bottom:636.616699pt;}
.y4d_c00131{bottom:636.909760pt;}
.y4c_c00131{bottom:637.160709pt;}
.y4b_c00131{bottom:637.683013pt;}
.y4a_c00131{bottom:638.166149pt;}
.y49_c00131{bottom:638.307152pt;}
.y48_c00131{bottom:639.016688pt;}
.y47_c00131{bottom:639.227989pt;}
.y46_c00131{bottom:639.396293pt;}
.y45_c00131{bottom:640.079563pt;}
.y44_c00131{bottom:655.454373pt;}
.y43_c00131{bottom:656.271861pt;}
.y42_c00131{bottom:656.557445pt;}
.y41_c00131{bottom:657.268853pt;}
.y40_c00131{bottom:657.608709pt;}
.y3f_c00131{bottom:658.302981pt;}
.y3e_c00131{bottom:659.144021pt;}
.y3d_c00131{bottom:659.354181pt;}
.y3c_c00131{bottom:659.535685pt;}
.y3b_c00131{bottom:660.241333pt;}
.y3a_c00131{bottom:676.432508pt;}
.y39_c00131{bottom:676.789795pt;}
.y38_c00131{bottom:677.185116pt;}
.y37_c00131{bottom:677.603597pt;}
.y36_c00131{bottom:678.206311pt;}
.y35_c00131{bottom:678.580407pt;}
.y34_c00131{bottom:678.870968pt;}
.y33_c00131{bottom:679.451255pt;}
.y32_c00131{bottom:680.176520pt;}
.y31_c00131{bottom:680.384808pt;}
.y30_c00131{bottom:680.551600pt;}
.y2f_c00131{bottom:680.878817pt;}
.y2e_c00131{bottom:697.568965pt;}
.y2d_c00131{bottom:698.200495pt;}
.y2c_c00131{bottom:698.687271pt;}
.y2b_c00131{bottom:699.401197pt;}
.y2a_c00131{bottom:700.552447pt;}
.y29_c00131{bottom:701.466473pt;}
.y28_c00131{bottom:702.327469pt;}
.y27_c00131{bottom:703.090585pt;}
.y26_c00131{bottom:703.400485pt;}
.y25_c00131{bottom:703.880576pt;}
.y24_c00131{bottom:704.156989pt;}
.y23_c00131{bottom:704.881809pt;}
.y22_c00131{bottom:716.614704pt;}
.y21_c00131{bottom:717.246207pt;}
.y20_c00131{bottom:717.842817pt;}
.y1f_c00131{bottom:718.156493pt;}
.y1e_c00131{bottom:718.381891pt;}
.y1d_c00131{bottom:718.817080pt;}
.y1c_c00131{bottom:719.143985pt;}
.y1b_c00131{bottom:720.089663pt;}
.y1a_c00131{bottom:720.350979pt;}
.y19_c00131{bottom:720.982012pt;}
.y18_c00131{bottom:721.173617pt;}
.y17_c00131{bottom:721.681333pt;}
.y16_c00131{bottom:736.928364pt;}
.y15_c00131{bottom:737.394856pt;}
.y14_c00131{bottom:737.797895pt;}
.y13_c00131{bottom:738.200740pt;}
.y12_c00131{bottom:738.557683pt;}
.y11_c00131{bottom:739.353231pt;}
.y10_c00131{bottom:739.857033pt;}
.yf_c00131{bottom:740.091673pt;}
.ye_c00131{bottom:740.429864pt;}
.yd_c00131{bottom:740.751548pt;}
.yc_c00131{bottom:741.120972pt;}
.yb_c00131{bottom:741.266575pt;}
.ya_c00131{bottom:741.596328pt;}
.y9_c00131{bottom:749.761235pt;}
.y8_c00131{bottom:753.864000pt;}
.y7_c00131{bottom:777.604000pt;}
.y6_c00131{bottom:779.229333pt;}
.y5_c00131{bottom:802.176800pt;}
.y4_c00131{bottom:806.400000pt;}
.y3_c00131{bottom:819.076000pt;}
.y2_c00131{bottom:832.689333pt;}
.h14_c00131{height:16.800000pt;}
.h7_c00131{height:22.400000pt;}
.h5_c00131{height:22.401613pt;}
.h2_c00131{height:27.066667pt;}
.h1a_c00131{height:40.135340pt;}
.h1c_c00131{height:46.672640pt;}
.h1b_c00131{height:47.600000pt;}
.h19_c00131{height:48.535760pt;}
.h3_c00131{height:52.266667pt;}
.h18_c00131{height:54.133333pt;}
.h4_c00131{height:55.066667pt;}
.hc_c00131{height:55.069998pt;}
.ha_c00131{height:59.736947pt;}
.h9_c00131{height:60.692172pt;}
.h11_c00131{height:61.605205pt;}
.h15_c00131{height:62.537836pt;}
.h12_c00131{height:62.538617pt;}
.he_c00131{height:63.471236pt;}
.h17_c00131{height:64.400000pt;}
.hb_c00131{height:64.403896pt;}
.h10_c00131{height:64.404637pt;}
.h13_c00131{height:64.405442pt;}
.hd_c00131{height:65.338037pt;}
.h16_c00131{height:66.271438pt;}
.hf_c00131{height:67.204838pt;}
.h6_c00131{height:113.866667pt;}
.h8_c00131{height:153.131018pt;}
.h0_c00131{height:896.400000pt;}
.h1_c00131{height:896.666667pt;}
.w0_c00131{width:601.680000pt;}
.w1_c00131{width:602.000000pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:80.400000pt;}
.xc_c00131{left:82.800000pt;}
.x5_c00131{left:84.908000pt;}
.x7_c00131{left:87.360000pt;}
.x3_c00131{left:95.760000pt;}
.x4_c00131{left:119.760000pt;}
.x92_c00131{left:123.275360pt;}
.x1_c00131{left:125.520000pt;}
.xe_c00131{left:128.149441pt;}
.x8_c00131{left:130.560000pt;}
.x8d_c00131{left:134.990667pt;}
.x9a_c00131{left:139.200000pt;}
.x52_c00131{left:140.756016pt;}
.xf_c00131{left:142.741484pt;}
.x1a_c00131{left:144.832000pt;}
.x84_c00131{left:146.743675pt;}
.x88_c00131{left:156.791584pt;}
.x93_c00131{left:160.468693pt;}
.x2b_c00131{left:165.491027pt;}
.x53_c00131{left:167.640336pt;}
.x5d_c00131{left:170.730667pt;}
.x23_c00131{left:172.902023pt;}
.x68_c00131{left:173.817964pt;}
.x63_c00131{left:178.418884pt;}
.x10_c00131{left:179.684489pt;}
.x85_c00131{left:185.623675pt;}
.x9_c00131{left:186.720000pt;}
.x9b_c00131{left:188.160000pt;}
.x7f_c00131{left:190.172395pt;}
.x24_c00131{left:191.134153pt;}
.x94_c00131{left:192.159360pt;}
.x4a_c00131{left:193.310603pt;}
.x1b_c00131{left:202.198667pt;}
.x39_c00131{left:205.554848pt;}
.x89_c00131{left:210.793648pt;}
.x11_c00131{left:211.898237pt;}
.x64_c00131{left:213.711335pt;}
.x34_c00131{left:217.305333pt;}
.x6b_c00131{left:218.543636pt;}
.x3a_c00131{left:220.913707pt;}
.xd_c00131{left:222.268000pt;}
.x54_c00131{left:223.327675pt;}
.x1c_c00131{left:225.954667pt;}
.x42_c00131{left:227.677477pt;}
.x7a_c00131{left:233.901024pt;}
.x35_c00131{left:234.818667pt;}
.x25_c00131{left:236.020524pt;}
.x2c_c00131{left:237.970485pt;}
.x3b_c00131{left:240.077931pt;}
.x12_c00131{left:245.739541pt;}
.x5e_c00131{left:248.022667pt;}
.x6c_c00131{left:253.058753pt;}
.x43_c00131{left:259.072144pt;}
.x59_c00131{left:263.672000pt;}
.x5f_c00131{left:265.058667pt;}
.x7b_c00131{left:266.273408pt;}
.x13_c00131{left:269.245828pt;}
.x65_c00131{left:271.573413pt;}
.x86_c00131{left:272.749008pt;}
.x4b_c00131{left:277.330277pt;}
.x69_c00131{left:278.361983pt;}
.x73_c00131{left:279.360000pt;}
.x80_c00131{left:283.065728pt;}
.x26_c00131{left:286.653180pt;}
.x8a_c00131{left:290.537435pt;}
.x74_c00131{left:294.324000pt;}
.x2d_c00131{left:296.057797pt;}
.x4c_c00131{left:298.446533pt;}
.x60_c00131{left:299.438667pt;}
.x6d_c00131{left:302.504728pt;}
.x36_c00131{left:304.905333pt;}
.x8b_c00131{left:310.870032pt;}
.xa_c00131{left:311.760000pt;}
.x3c_c00131{left:317.401525pt;}
.x14_c00131{left:319.657591pt;}
.x87_c00131{left:320.751675pt;}
.x2e_c00131{left:325.139453pt;}
.x44_c00131{left:326.041477pt;}
.x7c_c00131{left:328.214144pt;}
.x8e_c00131{left:330.865333pt;}
.x95_c00131{left:332.040693pt;}
.x5a_c00131{left:334.449333pt;}
.x27_c00131{left:340.409631pt;}
.x1d_c00131{left:341.644000pt;}
.x45_c00131{left:343.557477pt;}
.x66_c00131{left:344.989033pt;}
.x6e_c00131{left:347.633317pt;}
.x75_c00131{left:348.842667pt;}
.x55_c00131{left:350.099861pt;}
.xb_c00131{left:357.360000pt;}
.x3d_c00131{left:361.330053pt;}
.x2f_c00131{left:362.542531pt;}
.x4d_c00131{left:363.491301pt;}
.x6f_c00131{left:369.002928pt;}
.x5b_c00131{left:371.396000pt;}
.x8f_c00131{left:374.558667pt;}
.x76_c00131{left:379.326667pt;}
.x1e_c00131{left:381.206667pt;}
.x9c_c00131{left:385.296000pt;}
.x56_c00131{left:387.542976pt;}
.x96_c00131{left:389.430027pt;}
.x37_c00131{left:391.082667pt;}
.x61_c00131{left:393.716000pt;}
.x15_c00131{left:399.180028pt;}
.x46_c00131{left:400.441477pt;}
.x1f_c00131{left:401.697333pt;}
.x28_c00131{left:408.094491pt;}
.x97_c00131{left:415.126027pt;}
.x6a_c00131{left:416.545101pt;}
.x9d_c00131{left:417.464000pt;}
.x81_c00131{left:418.915061pt;}
.x77_c00131{left:420.138667pt;}
.x30_c00131{left:422.789857pt;}
.x4e_c00131{left:425.389371pt;}
.x47_c00131{left:429.236144pt;}
.x20_c00131{left:430.213333pt;}
.x3e_c00131{left:431.657568pt;}
.x16_c00131{left:434.910376pt;}
.x6_c00131{left:436.841333pt;}
.x70_c00131{left:441.001197pt;}
.x98_c00131{left:442.491360pt;}
.x62_c00131{left:443.662667pt;}
.x78_c00131{left:444.600000pt;}
.x5c_c00131{left:448.453333pt;}
.x29_c00131{left:450.085052pt;}
.x4f_c00131{left:452.289691pt;}
.x3f_c00131{left:458.301888pt;}
.x71_c00131{left:461.400124pt;}
.x7d_c00131{left:462.863744pt;}
.x31_c00131{left:464.591645pt;}
.x48_c00131{left:467.213477pt;}
.x38_c00131{left:474.165333pt;}
.x17_c00131{left:475.260609pt;}
.x2a_c00131{left:478.699160pt;}
.x57_c00131{left:481.816096pt;}
.x90_c00131{left:483.529333pt;}
.x21_c00131{left:484.450667pt;}
.x50_c00131{left:492.186171pt;}
.x82_c00131{left:494.047061pt;}
.x8c_c00131{left:494.972741pt;}
.x72_c00131{left:496.912592pt;}
.x40_c00131{left:498.841035pt;}
.x49_c00131{left:500.293477pt;}
.x51_c00131{left:502.700965pt;}
.x32_c00131{left:504.166752pt;}
.x79_c00131{left:509.656000pt;}
.x67_c00131{left:513.296551pt;}
.x18_c00131{left:515.617509pt;}
.x83_c00131{left:517.583061pt;}
.x99_c00131{left:520.019360pt;}
.x7e_c00131{left:522.145781pt;}
.x41_c00131{left:527.905387pt;}
.x91_c00131{left:537.760000pt;}
.x33_c00131{left:539.920481pt;}
.x22_c00131{left:541.860000pt;}
.x58_c00131{left:542.788832pt;}
.x19_c00131{left:562.257851pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m1e_c00132{transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);-ms-transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);}
.m1d_c00132{transform:matrix(0.007634,0.000107,-0.003500,0.249976,0,0);-ms-transform:matrix(0.007634,0.000107,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.007634,0.000107,-0.003500,0.249976,0,0);}
.m93_c00132{transform:matrix(0.015588,0.000218,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015588,0.000218,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015588,0.000218,-0.003500,0.249976,0,0);}
.m100_c00132{transform:matrix(0.022999,0.000230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.022999,0.000230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.022999,0.000230,-0.002500,0.249988,0,0);}
.mf8_c00132{transform:matrix(0.042248,0.000422,-0.002500,0.249988,0,0);-ms-transform:matrix(0.042248,0.000422,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.042248,0.000422,-0.002500,0.249988,0,0);}
.m3_c00132{transform:matrix(0.069499,0.000903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.069499,0.000903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.069499,0.000903,-0.003250,0.249979,0,0);}
.m5e_c00132{transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.092926,0.001301,-0.003500,0.249976,0,0);}
.me3_c00132{transform:matrix(0.102635,0.001026,-0.002500,0.249988,0,0);-ms-transform:matrix(0.102635,0.001026,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.102635,0.001026,-0.002500,0.249988,0,0);}
.m97_c00132{transform:matrix(0.135112,0.001892,-0.003500,0.249976,0,0);-ms-transform:matrix(0.135112,0.001892,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.135112,0.001892,-0.003500,0.249976,0,0);}
.m91_c00132{transform:matrix(0.136332,0.001909,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136332,0.001909,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136332,0.001909,-0.003500,0.249976,0,0);}
.ma_c00132{transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.141713,0.001842,-0.003250,0.249979,0,0);}
.ma0_c00132{transform:matrix(0.142106,0.001989,-0.003500,0.249976,0,0);-ms-transform:matrix(0.142106,0.001989,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.142106,0.001989,-0.003500,0.249976,0,0);}
.me0_c00132{transform:matrix(0.144288,0.001443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144288,0.001443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144288,0.001443,-0.002500,0.249988,0,0);}
.m89_c00132{transform:matrix(0.146316,0.002048,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146316,0.002048,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146316,0.002048,-0.003500,0.249976,0,0);}
.m1_c00132{transform:matrix(0.147493,0.001917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147493,0.001917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147493,0.001917,-0.003250,0.249979,0,0);}
.md3_c00132{transform:matrix(0.147831,0.002070,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147831,0.002070,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147831,0.002070,-0.003500,0.249976,0,0);}
.mcc_c00132{transform:matrix(0.147926,0.002071,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147926,0.002071,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147926,0.002071,-0.003500,0.249976,0,0);}
.m8a_c00132{transform:matrix(0.148610,0.002081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148610,0.002081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148610,0.002081,-0.003500,0.249976,0,0);}
.m99_c00132{transform:matrix(0.149150,0.002088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149150,0.002088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149150,0.002088,-0.003500,0.249976,0,0);}
.maa_c00132{transform:matrix(0.151330,0.002119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151330,0.002119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151330,0.002119,-0.003500,0.249976,0,0);}
.mca_c00132{transform:matrix(0.152605,0.002136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152605,0.002136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152605,0.002136,-0.003500,0.249976,0,0);}
.mab_c00132{transform:matrix(0.153895,0.002155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153895,0.002155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153895,0.002155,-0.003500,0.249976,0,0);}
.m95_c00132{transform:matrix(0.154715,0.002166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154715,0.002166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154715,0.002166,-0.003500,0.249976,0,0);}
.m8d_c00132{transform:matrix(0.155460,0.002176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155460,0.002176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155460,0.002176,-0.003500,0.249976,0,0);}
.m48_c00132{transform:matrix(0.155860,0.002182,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155860,0.002182,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155860,0.002182,-0.003500,0.249976,0,0);}
.m28_c00132{transform:matrix(0.156125,0.002186,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156125,0.002186,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156125,0.002186,-0.003500,0.249976,0,0);}
.m7a_c00132{transform:matrix(0.156550,0.002192,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156550,0.002192,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156550,0.002192,-0.003500,0.249976,0,0);}
.m6c_c00132{transform:matrix(0.156735,0.002194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156735,0.002194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156735,0.002194,-0.003500,0.249976,0,0);}
.m3c_c00132{transform:matrix(0.157285,0.002202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157285,0.002202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157285,0.002202,-0.003500,0.249976,0,0);}
.mc0_c00132{transform:matrix(0.160309,0.002244,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160309,0.002244,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160309,0.002244,-0.003500,0.249976,0,0);}
.m3b_c00132{transform:matrix(0.160329,0.002245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160329,0.002245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160329,0.002245,-0.003500,0.249976,0,0);}
.m1c_c00132{transform:matrix(0.161159,0.002256,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161159,0.002256,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161159,0.002256,-0.003500,0.249976,0,0);}
.m9d_c00132{transform:matrix(0.161499,0.002261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161499,0.002261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161499,0.002261,-0.003500,0.249976,0,0);}
.me1_c00132{transform:matrix(0.161717,0.001617,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161717,0.001617,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161717,0.001617,-0.002500,0.249988,0,0);}
.me2_c00132{transform:matrix(0.162082,0.001621,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162082,0.001621,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162082,0.001621,-0.002500,0.249988,0,0);}
.m79_c00132{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);}
.m7f_c00132{transform:matrix(0.163334,0.002287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163334,0.002287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163334,0.002287,-0.003500,0.249976,0,0);}
.m59_c00132{transform:matrix(0.163759,0.002293,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163759,0.002293,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163759,0.002293,-0.003500,0.249976,0,0);}
.mdc_c00132{transform:matrix(0.163947,0.001639,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163947,0.001639,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163947,0.001639,-0.002500,0.249988,0,0);}
.m4_c00132{transform:matrix(0.163981,0.002132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163981,0.002132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163981,0.002132,-0.003250,0.249979,0,0);}
.mcd_c00132{transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164334,0.002301,-0.003500,0.249976,0,0);}
.m2c_c00132{transform:matrix(0.164589,0.002304,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164589,0.002304,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164589,0.002304,-0.003500,0.249976,0,0);}
.m8f_c00132{transform:matrix(0.164729,0.002306,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164729,0.002306,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164729,0.002306,-0.003500,0.249976,0,0);}
.m39_c00132{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);}
.m87_c00132{transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165529,0.002317,-0.003500,0.249976,0,0);}
.m52_c00132{transform:matrix(0.165734,0.002320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165734,0.002320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165734,0.002320,-0.003500,0.249976,0,0);}
.m90_c00132{transform:matrix(0.166524,0.002331,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166524,0.002331,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166524,0.002331,-0.003500,0.249976,0,0);}
.mfe_c00132{transform:matrix(0.166632,0.001666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166632,0.001666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166632,0.001666,-0.002500,0.249988,0,0);}
.meb_c00132{transform:matrix(0.167837,0.001678,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167837,0.001678,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167837,0.001678,-0.002500,0.249988,0,0);}
.m43_c00132{transform:matrix(0.168678,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168678,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168678,0.002361,-0.003500,0.249976,0,0);}
.mbe_c00132{transform:matrix(0.168858,0.002364,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168858,0.002364,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168858,0.002364,-0.003500,0.249976,0,0);}
.m4c_c00132{transform:matrix(0.169098,0.002367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169098,0.002367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169098,0.002367,-0.003500,0.249976,0,0);}
.m69_c00132{transform:matrix(0.169333,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169333,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169333,0.002371,-0.003500,0.249976,0,0);}
.mbd_c00132{transform:matrix(0.169343,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169343,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169343,0.002371,-0.003500,0.249976,0,0);}
.me6_c00132{transform:matrix(0.169892,0.001699,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169892,0.001699,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169892,0.001699,-0.002500,0.249988,0,0);}
.mcb_c00132{transform:matrix(0.169943,0.002379,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169943,0.002379,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169943,0.002379,-0.003500,0.249976,0,0);}
.m8e_c00132{transform:matrix(0.170388,0.002385,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170388,0.002385,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170388,0.002385,-0.003500,0.249976,0,0);}
.m31_c00132{transform:matrix(0.170948,0.002393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170948,0.002393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170948,0.002393,-0.003500,0.249976,0,0);}
.m9e_c00132{transform:matrix(0.171708,0.002404,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171708,0.002404,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171708,0.002404,-0.003500,0.249976,0,0);}
.m54_c00132{transform:matrix(0.171813,0.002405,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171813,0.002405,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171813,0.002405,-0.003500,0.249976,0,0);}
.ma9_c00132{transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);}
.mde_c00132{transform:matrix(0.172021,0.001720,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172021,0.001720,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172021,0.001720,-0.002500,0.249988,0,0);}
.mea_c00132{transform:matrix(0.172136,0.001721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172136,0.001721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172136,0.001721,-0.002500,0.249988,0,0);}
.m53_c00132{transform:matrix(0.172508,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172508,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172508,0.002415,-0.003500,0.249976,0,0);}
.mc5_c00132{transform:matrix(0.172828,0.002420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172828,0.002420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172828,0.002420,-0.003500,0.249976,0,0);}
.m49_c00132{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);}
.m2e_c00132{transform:matrix(0.172988,0.002422,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172988,0.002422,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172988,0.002422,-0.003500,0.249976,0,0);}
.m35_c00132{transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173138,0.002424,-0.003500,0.249976,0,0);}
.m2a_c00132{transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);}
.m4a_c00132{transform:matrix(0.173278,0.002426,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173278,0.002426,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173278,0.002426,-0.003500,0.249976,0,0);}
.md6_c00132{transform:matrix(0.173478,0.002429,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173478,0.002429,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173478,0.002429,-0.003500,0.249976,0,0);}
.ma8_c00132{transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);}
.mf2_c00132{transform:matrix(0.175101,0.001751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175101,0.001751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175101,0.001751,-0.002500,0.249988,0,0);}
.mb8_c00132{transform:matrix(0.175103,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175103,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175103,0.002451,-0.003500,0.249976,0,0);}
.m64_c00132{transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);}
.mf9_c00132{transform:matrix(0.175471,0.001755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175471,0.001755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175471,0.001755,-0.002500,0.249988,0,0);}
.m6b_c00132{transform:matrix(0.175708,0.002460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175708,0.002460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175708,0.002460,-0.003500,0.249976,0,0);}
.m47_c00132{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);}
.m82_c00132{transform:matrix(0.175843,0.002462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175843,0.002462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175843,0.002462,-0.003500,0.249976,0,0);}
.m61_c00132{transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175978,0.002464,-0.003500,0.249976,0,0);}
.m103_c00132{transform:matrix(0.176371,0.001764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176371,0.001764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176371,0.001764,-0.002500,0.249988,0,0);}
.m65_c00132{transform:matrix(0.176593,0.002472,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176593,0.002472,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176593,0.002472,-0.003500,0.249976,0,0);}
.m45_c00132{transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);}
.mc6_c00132{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);}
.m44_c00132{transform:matrix(0.177528,0.002485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177528,0.002485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177528,0.002485,-0.003500,0.249976,0,0);}
.m51_c00132{transform:matrix(0.177778,0.002489,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177778,0.002489,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177778,0.002489,-0.003500,0.249976,0,0);}
.m60_c00132{transform:matrix(0.178463,0.002498,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178463,0.002498,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178463,0.002498,-0.003500,0.249976,0,0);}
.med_c00132{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);}
.m9b_c00132{transform:matrix(0.178548,0.002500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178548,0.002500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178548,0.002500,-0.003500,0.249976,0,0);}
.mc4_c00132{transform:matrix(0.178802,0.002503,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178802,0.002503,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178802,0.002503,-0.003500,0.249976,0,0);}
.mf3_c00132{transform:matrix(0.178871,0.001789,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178871,0.001789,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178871,0.001789,-0.002500,0.249988,0,0);}
.m5a_c00132{transform:matrix(0.178902,0.002505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178902,0.002505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178902,0.002505,-0.003500,0.249976,0,0);}
.m84_c00132{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);}
.m68_c00132{transform:matrix(0.179362,0.002511,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179362,0.002511,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179362,0.002511,-0.003500,0.249976,0,0);}
.m3d_c00132{transform:matrix(0.180162,0.002522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180162,0.002522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180162,0.002522,-0.003500,0.249976,0,0);}
.m30_c00132{transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);}
.md0_c00132{transform:matrix(0.180742,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180742,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180742,0.002530,-0.003500,0.249976,0,0);}
.m98_c00132{transform:matrix(0.180747,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180747,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180747,0.002530,-0.003500,0.249976,0,0);}
.m92_c00132{transform:matrix(0.180962,0.002533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180962,0.002533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180962,0.002533,-0.003500,0.249976,0,0);}
.mc3_c00132{transform:matrix(0.181052,0.002535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181052,0.002535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181052,0.002535,-0.003500,0.249976,0,0);}
.mb4_c00132{transform:matrix(0.181147,0.002536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181147,0.002536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181147,0.002536,-0.003500,0.249976,0,0);}
.m86_c00132{transform:matrix(0.181202,0.002537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181202,0.002537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181202,0.002537,-0.003500,0.249976,0,0);}
.m6e_c00132{transform:matrix(0.181487,0.002541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181487,0.002541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181487,0.002541,-0.003500,0.249976,0,0);}
.m70_c00132{transform:matrix(0.182762,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182762,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182762,0.002559,-0.003500,0.249976,0,0);}
.mf6_c00132{transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);}
.mef_c00132{transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);}
.m8c_c00132{transform:matrix(0.183892,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183892,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183892,0.002574,-0.003500,0.249976,0,0);}
.md5_c00132{transform:matrix(0.183917,0.002575,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183917,0.002575,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183917,0.002575,-0.003500,0.249976,0,0);}
.m67_c00132{transform:matrix(0.184057,0.002577,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184057,0.002577,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184057,0.002577,-0.003500,0.249976,0,0);}
.m7d_c00132{transform:matrix(0.184312,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184312,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184312,0.002580,-0.003500,0.249976,0,0);}
.m58_c00132{transform:matrix(0.184317,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184317,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184317,0.002580,-0.003500,0.249976,0,0);}
.m71_c00132{transform:matrix(0.184467,0.002583,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184467,0.002583,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184467,0.002583,-0.003500,0.249976,0,0);}
.mc1_c00132{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);}
.m25_c00132{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);}
.m63_c00132{transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);}
.m32_c00132{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);}
.m83_c00132{transform:matrix(0.186932,0.002617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186932,0.002617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186932,0.002617,-0.003500,0.249976,0,0);}
.m27_c00132{transform:matrix(0.187002,0.002618,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187002,0.002618,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187002,0.002618,-0.003500,0.249976,0,0);}
.m6a_c00132{transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187067,0.002619,-0.003500,0.249976,0,0);}
.mec_c00132{transform:matrix(0.187186,0.001872,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187186,0.001872,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187186,0.001872,-0.002500,0.249988,0,0);}
.mbf_c00132{transform:matrix(0.188052,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188052,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188052,0.002633,-0.003500,0.249976,0,0);}
.md9_c00132{transform:matrix(0.188292,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188292,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188292,0.002636,-0.003500,0.249976,0,0);}
.md8_c00132{transform:matrix(0.188382,0.002637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188382,0.002637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188382,0.002637,-0.003500,0.249976,0,0);}
.m4b_c00132{transform:matrix(0.188447,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188447,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188447,0.002638,-0.003500,0.249976,0,0);}
.m74_c00132{transform:matrix(0.188667,0.002641,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188667,0.002641,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188667,0.002641,-0.003500,0.249976,0,0);}
.m85_c00132{transform:matrix(0.188687,0.002642,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188687,0.002642,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188687,0.002642,-0.003500,0.249976,0,0);}
.mc9_c00132{transform:matrix(0.189061,0.002647,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189061,0.002647,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189061,0.002647,-0.003500,0.249976,0,0);}
.m2f_c00132{transform:matrix(0.189591,0.002654,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189591,0.002654,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189591,0.002654,-0.003500,0.249976,0,0);}
.mc2_c00132{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);}
.mb3_c00132{transform:matrix(0.190616,0.002669,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190616,0.002669,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190616,0.002669,-0.003500,0.249976,0,0);}
.mee_c00132{transform:matrix(0.190630,0.001906,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190630,0.001906,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190630,0.001906,-0.002500,0.249988,0,0);}
.m3f_c00132{transform:matrix(0.190721,0.002670,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190721,0.002670,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190721,0.002670,-0.003500,0.249976,0,0);}
.m33_c00132{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);}
.m8b_c00132{transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);}
.mac_c00132{transform:matrix(0.191051,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191051,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191051,0.002675,-0.003500,0.249976,0,0);}
.m5b_c00132{transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);}
.mbb_c00132{transform:matrix(0.191156,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191156,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191156,0.002676,-0.003500,0.249976,0,0);}
.m55_c00132{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);}
.mb0_c00132{transform:matrix(0.192351,0.002693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192351,0.002693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192351,0.002693,-0.003500,0.249976,0,0);}
.m36_c00132{transform:matrix(0.193416,0.002708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193416,0.002708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193416,0.002708,-0.003500,0.249976,0,0);}
.m46_c00132{transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193501,0.002709,-0.003500,0.249976,0,0);}
.m104_c00132{transform:matrix(0.193670,0.001937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193670,0.001937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193670,0.001937,-0.002500,0.249988,0,0);}
.mc7_c00132{transform:matrix(0.194941,0.002729,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194941,0.002729,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194941,0.002729,-0.003500,0.249976,0,0);}
.mc8_c00132{transform:matrix(0.195316,0.002734,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195316,0.002734,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195316,0.002734,-0.003500,0.249976,0,0);}
.m7b_c00132{transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);}
.m5d_c00132{transform:matrix(0.196036,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196036,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196036,0.002745,-0.003500,0.249976,0,0);}
.mda_c00132{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);}
.m66_c00132{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);}
.m38_c00132{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);}
.m6f_c00132{transform:matrix(0.197276,0.002762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197276,0.002762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197276,0.002762,-0.003500,0.249976,0,0);}
.mdb_c00132{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);}
.ma7_c00132{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);}
.m94_c00132{transform:matrix(0.197926,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197926,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197926,0.002771,-0.003500,0.249976,0,0);}
.ma1_c00132{transform:matrix(0.198206,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198206,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198206,0.002775,-0.003500,0.249976,0,0);}
.m96_c00132{transform:matrix(0.199155,0.002788,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199155,0.002788,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199155,0.002788,-0.003500,0.249976,0,0);}
.mb7_c00132{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);}
.me5_c00132{transform:matrix(0.199315,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199315,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199315,0.001993,-0.002500,0.249988,0,0);}
.m88_c00132{transform:matrix(0.199735,0.002796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199735,0.002796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199735,0.002796,-0.003500,0.249976,0,0);}
.me4_c00132{transform:matrix(0.200315,0.002003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200315,0.002003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200315,0.002003,-0.002500,0.249988,0,0);}
.mf1_c00132{transform:matrix(0.200940,0.002009,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200940,0.002009,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200940,0.002009,-0.002500,0.249988,0,0);}
.m56_c00132{transform:matrix(0.201140,0.002816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201140,0.002816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201140,0.002816,-0.003500,0.249976,0,0);}
.mcf_c00132{transform:matrix(0.201405,0.002820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201405,0.002820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201405,0.002820,-0.003500,0.249976,0,0);}
.mb1_c00132{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);}
.m9a_c00132{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);}
.md7_c00132{transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);}
.mf4_c00132{transform:matrix(0.203675,0.002037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203675,0.002037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203675,0.002037,-0.002500,0.249988,0,0);}
.mdf_c00132{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);}
.m6d_c00132{transform:matrix(0.204035,0.002856,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204035,0.002856,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204035,0.002856,-0.003500,0.249976,0,0);}
.mdd_c00132{transform:matrix(0.204220,0.002042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204220,0.002042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204220,0.002042,-0.002500,0.249988,0,0);}
.mfa_c00132{transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);}
.mf5_c00132{transform:matrix(0.204945,0.002049,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204945,0.002049,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204945,0.002049,-0.002500,0.249988,0,0);}
.mba_c00132{transform:matrix(0.205835,0.002882,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205835,0.002882,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205835,0.002882,-0.003500,0.249976,0,0);}
.mbc_c00132{transform:matrix(0.206160,0.002886,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206160,0.002886,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206160,0.002886,-0.003500,0.249976,0,0);}
.m62_c00132{transform:matrix(0.206300,0.002888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206300,0.002888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206300,0.002888,-0.003500,0.249976,0,0);}
.m5c_c00132{transform:matrix(0.206510,0.002891,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206510,0.002891,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206510,0.002891,-0.003500,0.249976,0,0);}
.m37_c00132{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);}
.mce_c00132{transform:matrix(0.207900,0.002911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207900,0.002911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207900,0.002911,-0.003500,0.249976,0,0);}
.m3a_c00132{transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);}
.mb6_c00132{transform:matrix(0.210289,0.002944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210289,0.002944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210289,0.002944,-0.003500,0.249976,0,0);}
.mb5_c00132{transform:matrix(0.211034,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211034,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211034,0.002954,-0.003500,0.249976,0,0);}
.m42_c00132{transform:matrix(0.212159,0.002970,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212159,0.002970,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212159,0.002970,-0.003500,0.249976,0,0);}
.m9c_c00132{transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);}
.m3e_c00132{transform:matrix(0.216449,0.003030,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216449,0.003030,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216449,0.003030,-0.003500,0.249976,0,0);}
.m4d_c00132{transform:matrix(0.216469,0.003031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216469,0.003031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216469,0.003031,-0.003500,0.249976,0,0);}
.m7c_c00132{transform:matrix(0.218339,0.003057,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218339,0.003057,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218339,0.003057,-0.003500,0.249976,0,0);}
.mf7_c00132{transform:matrix(0.218709,0.002187,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218709,0.002187,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218709,0.002187,-0.002500,0.249988,0,0);}
.m50_c00132{transform:matrix(0.219339,0.003071,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219339,0.003071,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219339,0.003071,-0.003500,0.249976,0,0);}
.m81_c00132{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);}
.m1f_c00132{transform:matrix(0.221358,0.003099,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221358,0.003099,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221358,0.003099,-0.003500,0.249976,0,0);}
.m107_c00132{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);}
.m7e_c00132{transform:matrix(0.222018,0.003108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222018,0.003108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222018,0.003108,-0.003500,0.249976,0,0);}
.ma3_c00132{transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);}
.me7_c00132{transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);}
.m9f_c00132{transform:matrix(0.225503,0.003157,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225503,0.003157,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225503,0.003157,-0.003500,0.249976,0,0);}
.m57_c00132{transform:matrix(0.225893,0.003163,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225893,0.003163,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225893,0.003163,-0.003500,0.249976,0,0);}
.md1_c00132{transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);}
.ma6_c00132{transform:matrix(0.229293,0.003210,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229293,0.003210,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229293,0.003210,-0.003500,0.249976,0,0);}
.m41_c00132{transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);}
.mb9_c00132{transform:matrix(0.232012,0.003248,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232012,0.003248,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232012,0.003248,-0.003500,0.249976,0,0);}
.m34_c00132{transform:matrix(0.234187,0.003279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234187,0.003279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234187,0.003279,-0.003500,0.249976,0,0);}
.me8_c00132{transform:matrix(0.236363,0.002364,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236363,0.002364,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236363,0.002364,-0.002500,0.249988,0,0);}
.m4f_c00132{transform:matrix(0.240631,0.003369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240631,0.003369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240631,0.003369,-0.003500,0.249976,0,0);}
.m75_c00132{transform:matrix(0.240861,0.003372,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240861,0.003372,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240861,0.003372,-0.003500,0.249976,0,0);}
.m13_c00132{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);}
.m5_c00132{transform:matrix(0.244629,0.003180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244629,0.003180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244629,0.003180,-0.003250,0.249979,0,0);}
.m4e_c00132{transform:matrix(0.246416,0.003450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246416,0.003450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246416,0.003450,-0.003500,0.249976,0,0);}
.m102_c00132{transform:matrix(0.247843,0.002478,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247843,0.002478,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247843,0.002478,-0.002500,0.249988,0,0);}
.m78_c00132{transform:matrix(0.248296,0.003476,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248296,0.003476,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248296,0.003476,-0.003500,0.249976,0,0);}
.m2b_c00132{transform:matrix(0.248686,0.003482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248686,0.003482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248686,0.003482,-0.003500,0.249976,0,0);}
.m0_c00132{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{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);}
.m80_c00132{transform:matrix(0.251230,0.003517,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251230,0.003517,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251230,0.003517,-0.003500,0.249976,0,0);}
.ma5_c00132{transform:matrix(0.251725,0.003524,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251725,0.003524,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251725,0.003524,-0.003500,0.249976,0,0);}
.m101_c00132{transform:matrix(0.251747,0.002517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251747,0.002517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251747,0.002517,-0.002500,0.249988,0,0);}
.ma4_c00132{transform:matrix(0.254760,0.003567,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254760,0.003567,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254760,0.003567,-0.003500,0.249976,0,0);}
.m73_c00132{transform:matrix(0.263089,0.003683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263089,0.003683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263089,0.003683,-0.003500,0.249976,0,0);}
.mfc_c00132{transform:matrix(0.264342,0.002643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264342,0.002643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264342,0.002643,-0.002500,0.249988,0,0);}
.mf_c00132{transform:matrix(0.265128,0.003447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265128,0.003447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265128,0.003447,-0.003250,0.249979,0,0);}
.m72_c00132{transform:matrix(0.267174,0.003740,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267174,0.003740,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267174,0.003740,-0.003500,0.249976,0,0);}
.ma2_c00132{transform:matrix(0.270568,0.003788,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270568,0.003788,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270568,0.003788,-0.003500,0.249976,0,0);}
.m2d_c00132{transform:matrix(0.277938,0.003891,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277938,0.003891,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277938,0.003891,-0.003500,0.249976,0,0);}
.m7_c00132{transform:matrix(0.279891,0.003639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279891,0.003639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279891,0.003639,-0.003250,0.249979,0,0);}
.m21_c00132{transform:matrix(0.282012,0.003948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282012,0.003948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282012,0.003948,-0.003500,0.249976,0,0);}
.me_c00132{transform:matrix(0.284686,0.003701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284686,0.003701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284686,0.003701,-0.003250,0.249979,0,0);}
.m1a_c00132{transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.295710,0.003844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295710,0.003844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295710,0.003844,-0.003250,0.249979,0,0);}
.md2_c00132{transform:matrix(0.304570,0.004264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304570,0.004264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304570,0.004264,-0.003500,0.249976,0,0);}
.mae_c00132{transform:matrix(0.311574,0.004362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.311574,0.004362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.311574,0.004362,-0.003500,0.249976,0,0);}
.mad_c00132{transform:matrix(0.316599,0.004432,-0.003500,0.249976,0,0);-ms-transform:matrix(0.316599,0.004432,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.316599,0.004432,-0.003500,0.249976,0,0);}
.maf_c00132{transform:matrix(0.320069,0.004481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.320069,0.004481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.320069,0.004481,-0.003500,0.249976,0,0);}
.m19_c00132{transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320895,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.323188,0.004201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.323188,0.004201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.323188,0.004201,-0.003250,0.249979,0,0);}
.m10_c00132{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);}
.m5f_c00132{transform:matrix(0.333422,0.004668,-0.003500,0.249976,0,0);-ms-transform:matrix(0.333422,0.004668,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.333422,0.004668,-0.003500,0.249976,0,0);}
.mff_c00132{transform:matrix(0.338093,0.003381,-0.002500,0.249988,0,0);-ms-transform:matrix(0.338093,0.003381,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.338093,0.003381,-0.002500,0.249988,0,0);}
.m76_c00132{transform:matrix(0.339012,0.004746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.339012,0.004746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.339012,0.004746,-0.003500,0.249976,0,0);}
.m77_c00132{transform:matrix(0.341162,0.004776,-0.003500,0.249976,0,0);-ms-transform:matrix(0.341162,0.004776,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.341162,0.004776,-0.003500,0.249976,0,0);}
.m40_c00132{transform:matrix(0.347086,0.004859,-0.003500,0.249976,0,0);-ms-transform:matrix(0.347086,0.004859,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.347086,0.004859,-0.003500,0.249976,0,0);}
.m106_c00132{transform:matrix(0.355835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355835,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.356555,0.004992,-0.003500,0.249976,0,0);-ms-transform:matrix(0.356555,0.004992,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.356555,0.004992,-0.003500,0.249976,0,0);}
.mf0_c00132{transform:matrix(0.365547,0.003655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.365547,0.003655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.365547,0.003655,-0.002500,0.249988,0,0);}
.m18_c00132{transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370070,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);}
.mb2_c00132{transform:matrix(0.375893,0.005263,-0.003500,0.249976,0,0);-ms-transform:matrix(0.375893,0.005263,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.375893,0.005263,-0.003500,0.249976,0,0);}
.m105_c00132{transform:matrix(0.399230,0.003992,-0.002500,0.249988,0,0);-ms-transform:matrix(0.399230,0.003992,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.399230,0.003992,-0.002500,0.249988,0,0);}
.m23_c00132{transform:matrix(0.403245,0.005645,-0.003500,0.249976,0,0);-ms-transform:matrix(0.403245,0.005645,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.403245,0.005645,-0.003500,0.249976,0,0);}
.m14_c00132{transform:matrix(0.408835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408835,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.413855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413855,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.437260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437260,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{transform:matrix(0.441497,0.006181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.441497,0.006181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.441497,0.006181,-0.003500,0.249976,0,0);}
.m1b_c00132{transform:matrix(0.442535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442535,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.443253,0.005762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.443253,0.005762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.443253,0.005762,-0.003250,0.249979,0,0);}
.m20_c00132{transform:matrix(0.455500,0.006377,-0.003500,0.249976,0,0);-ms-transform:matrix(0.455500,0.006377,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.455500,0.006377,-0.003500,0.249976,0,0);}
.md_c00132{transform:matrix(0.476715,0.006197,-0.003250,0.249979,0,0);-ms-transform:matrix(0.476715,0.006197,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.476715,0.006197,-0.003250,0.249979,0,0);}
.md4_c00132{transform:matrix(0.477468,0.006685,-0.003500,0.249976,0,0);-ms-transform:matrix(0.477468,0.006685,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.477468,0.006685,-0.003500,0.249976,0,0);}
.m12_c00132{transform:matrix(0.488485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488485,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.506705,0.007094,-0.003500,0.249976,0,0);-ms-transform:matrix(0.506705,0.007094,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.506705,0.007094,-0.003500,0.249976,0,0);}
.m8_c00132{transform:matrix(0.518046,0.006735,-0.003250,0.249979,0,0);-ms-transform:matrix(0.518046,0.006735,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.518046,0.006735,-0.003250,0.249979,0,0);}
.mfb_c00132{transform:matrix(0.548343,0.005483,-0.002500,0.249988,0,0);-ms-transform:matrix(0.548343,0.005483,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.548343,0.005483,-0.002500,0.249988,0,0);}
.mfd_c00132{transform:matrix(0.577481,0.005775,-0.002500,0.249988,0,0);-ms-transform:matrix(0.577481,0.005775,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.577481,0.005775,-0.002500,0.249988,0,0);}
.me9_c00132{transform:matrix(0.618924,0.006189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.618924,0.006189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.618924,0.006189,-0.002500,0.249988,0,0);}
.m2_c00132{transform:matrix(0.755446,0.009821,-0.003250,0.249979,0,0);-ms-transform:matrix(0.755446,0.009821,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.755446,0.009821,-0.003250,0.249979,0,0);}
.m6_c00132{transform:matrix(0.783039,0.010180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.783039,0.010180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.783039,0.010180,-0.003250,0.249979,0,0);}
.m24_c00132{transform:matrix(1.393763,0.019513,-0.003500,0.249976,0,0);-ms-transform:matrix(1.393763,0.019513,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.393763,0.019513,-0.003500,0.249976,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;}
.fs11_c00132{font-size:52.502625px;}
.fs10_c00132{font-size:54.602730px;}
.fs1_c00132{font-size:57.754880px;}
.fsc_c00132{font-size:60.905968px;}
.fsf_c00132{font-size:63.003150px;}
.fs12_c00132{font-size:65.100000px;}
.fse_c00132{font-size:67.206585px;}
.fs8_c00132{font-size:68.256688px;}
.fsb_c00132{font-size:69.306791px;}
.fsd_c00132{font-size:70.356894px;}
.fsa_c00132{font-size:71.406997px;}
.fs9_c00132{font-size:73.507203px;}
.fs7_c00132{font-size:74.557306px;}
.fs3_c00132{font-size:80.856832px;}
.fs0_c00132{font-size:88.200000px;}
.fs2_c00132{font-size:107.109050px;}
.fs6_c00132{font-size:122.850000px;}
.fs5_c00132{font-size:163.800000px;}
.fs4_c00132{font-size:165.900000px;}
.y0_c00132{bottom:0.000000px;}
.yff_c00132{bottom:150.057000px;}
.yfe_c00132{bottom:171.174960px;}
.yfd_c00132{bottom:172.074060px;}
.yfc_c00132{bottom:172.325655px;}
.yfb_c00132{bottom:173.137170px;}
.yfa_c00132{bottom:173.448585px;}
.yf9_c00132{bottom:173.575455px;}
.yf8_c00132{bottom:173.886585px;}
.yf7_c00132{bottom:174.301620px;}
.yf6_c00132{bottom:175.001550px;}
.yf5_c00132{bottom:175.329855px;}
.yf4_c00132{bottom:176.716845px;}
.yf3_c00132{bottom:177.053460px;}
.yf2_c00132{bottom:177.390720px;}
.yf1_c00132{bottom:186.610080px;}
.yf0_c00132{bottom:187.248840px;}
.yef_c00132{bottom:187.474155px;}
.yee_c00132{bottom:187.631985px;}
.yed_c00132{bottom:187.952475px;}
.yec_c00132{bottom:188.088150px;}
.yeb_c00132{bottom:188.516100px;}
.yea_c00132{bottom:188.749170px;}
.ye9_c00132{bottom:188.854965px;}
.ye8_c00132{bottom:189.181245px;}
.ye7_c00132{bottom:189.352575px;}
.ye6_c00132{bottom:189.505335px;}
.ye5_c00132{bottom:190.025670px;}
.ye4_c00132{bottom:190.332600px;}
.ye3_c00132{bottom:190.619715px;}
.ye2_c00132{bottom:205.148295px;}
.ye1_c00132{bottom:205.408890px;}
.ye0_c00132{bottom:206.049195px;}
.ydf_c00132{bottom:206.267565px;}
.yde_c00132{bottom:206.796765px;}
.ydd_c00132{bottom:207.353400px;}
.ydc_c00132{bottom:207.587910px;}
.ydb_c00132{bottom:208.081980px;}
.yda_c00132{bottom:208.403400px;}
.yd9_c00132{bottom:208.641120px;}
.yd8_c00132{bottom:208.881765px;}
.yd7_c00132{bottom:209.175810px;}
.yd6_c00132{bottom:209.821215px;}
.yd5_c00132{bottom:210.061500px;}
.yd4_c00132{bottom:257.411529px;}
.yd3_c00132{bottom:257.963571px;}
.yd2_c00132{bottom:259.438395px;}
.yd1_c00132{bottom:260.454090px;}
.yd0_c00132{bottom:261.374814px;}
.ycf_c00132{bottom:262.125984px;}
.yce_c00132{bottom:262.885869px;}
.ycd_c00132{bottom:263.306373px;}
.ycc_c00132{bottom:263.507454px;}
.ycb_c00132{bottom:264.131454px;}
.yca_c00132{bottom:264.582309px;}
.yc9_c00132{bottom:280.284420px;}
.yc8_c00132{bottom:281.132091px;}
.yc7_c00132{bottom:282.050643px;}
.yc6_c00132{bottom:282.411714px;}
.yc5_c00132{bottom:282.772029px;}
.yc4_c00132{bottom:283.654695px;}
.yc3_c00132{bottom:284.001267px;}
.yc2_c00132{bottom:284.605953px;}
.yc1_c00132{bottom:285.047238px;}
.yc0_c00132{bottom:286.073670px;}
.ybf_c00132{bottom:286.345077px;}
.ybe_c00132{bottom:287.247975px;}
.ybd_c00132{bottom:303.416880px;}
.ybc_c00132{bottom:303.868185px;}
.ybb_c00132{bottom:304.938051px;}
.yba_c00132{bottom:305.259420px;}
.yb9_c00132{bottom:305.589009px;}
.yb8_c00132{bottom:306.168108px;}
.yb7_c00132{bottom:306.856965px;}
.yb6_c00132{bottom:307.383447px;}
.yb5_c00132{bottom:308.087295px;}
.yb4_c00132{bottom:308.611215px;}
.yb3_c00132{bottom:309.110958px;}
.yb2_c00132{bottom:309.452757px;}
.yb1_c00132{bottom:310.323201px;}
.yb0_c00132{bottom:311.012709px;}
.yaf_c00132{bottom:327.214884px;}
.yae_c00132{bottom:327.735936px;}
.yad_c00132{bottom:328.030482px;}
.yac_c00132{bottom:328.370808px;}
.yab_c00132{bottom:329.785137px;}
.yaa_c00132{bottom:330.453819px;}
.ya9_c00132{bottom:331.385610px;}
.ya8_c00132{bottom:331.781523px;}
.ya7_c00132{bottom:332.829381px;}
.ya6_c00132{bottom:333.305241px;}
.ya5_c00132{bottom:349.777980px;}
.ya4_c00132{bottom:350.139576px;}
.ya3_c00132{bottom:350.454873px;}
.ya2_c00132{bottom:351.333234px;}
.ya1_c00132{bottom:352.716369px;}
.ya0_c00132{bottom:353.152383px;}
.y9f_c00132{bottom:353.966364px;}
.y9e_c00132{bottom:354.637281px;}
.y9d_c00132{bottom:355.146486px;}
.y9c_c00132{bottom:355.595931px;}
.y9b_c00132{bottom:356.375322px;}
.y9a_c00132{bottom:372.177222px;}
.y99_c00132{bottom:372.535887px;}
.y98_c00132{bottom:373.399599px;}
.y97_c00132{bottom:373.838952px;}
.y96_c00132{bottom:374.267427px;}
.y95_c00132{bottom:374.572413px;}
.y94_c00132{bottom:375.411102px;}
.y93_c00132{bottom:375.723690px;}
.y92_c00132{bottom:376.064031px;}
.y91_c00132{bottom:376.467924px;}
.y90_c00132{bottom:376.779735px;}
.y8f_c00132{bottom:377.264169px;}
.y8e_c00132{bottom:377.591070px;}
.y8d_c00132{bottom:377.917026px;}
.y8c_c00132{bottom:378.243528px;}
.y8b_c00132{bottom:395.375616px;}
.y8a_c00132{bottom:395.699406px;}
.y89_c00132{bottom:396.046332px;}
.y88_c00132{bottom:396.502959px;}
.y87_c00132{bottom:396.992424px;}
.y86_c00132{bottom:397.555014px;}
.y85_c00132{bottom:398.194035px;}
.y84_c00132{bottom:398.709009px;}
.y83_c00132{bottom:398.896602px;}
.y82_c00132{bottom:399.104820px;}
.y81_c00132{bottom:399.703662px;}
.y80_c00132{bottom:400.387284px;}
.y7f_c00132{bottom:417.386829px;}
.y7e_c00132{bottom:417.887445px;}
.y7d_c00132{bottom:418.435167px;}
.y7c_c00132{bottom:418.834650px;}
.y7b_c00132{bottom:419.934567px;}
.y7a_c00132{bottom:420.247155px;}
.y79_c00132{bottom:420.584262px;}
.y78_c00132{bottom:421.030116px;}
.y77_c00132{bottom:421.478784px;}
.y76_c00132{bottom:422.079399px;}
.y75_c00132{bottom:423.068922px;}
.y74_c00132{bottom:439.991103px;}
.y73_c00132{bottom:440.469141px;}
.y72_c00132{bottom:440.682318px;}
.y71_c00132{bottom:440.953869px;}
.y70_c00132{bottom:441.470046px;}
.y6f_c00132{bottom:441.688326px;}
.y6e_c00132{bottom:442.459653px;}
.y6d_c00132{bottom:443.165265px;}
.y6c_c00132{bottom:443.541141px;}
.y6b_c00132{bottom:443.825031px;}
.y6a_c00132{bottom:444.945834px;}
.y69_c00132{bottom:446.023542px;}
.y68_c00132{bottom:462.770559px;}
.y67_c00132{bottom:463.123365px;}
.y66_c00132{bottom:463.695048px;}
.y65_c00132{bottom:463.820502px;}
.y64_c00132{bottom:464.407938px;}
.y63_c00132{bottom:464.644773px;}
.y62_c00132{bottom:465.318723px;}
.y61_c00132{bottom:465.545949px;}
.y60_c00132{bottom:465.940206px;}
.y5f_c00132{bottom:466.557351px;}
.y5e_c00132{bottom:467.066139px;}
.y5d_c00132{bottom:467.439171px;}
.y5c_c00132{bottom:468.016914px;}
.y5b_c00132{bottom:468.169011px;}
.y5a_c00132{bottom:485.224959px;}
.y59_c00132{bottom:485.869536px;}
.y58_c00132{bottom:486.144399px;}
.y57_c00132{bottom:486.308478px;}
.y56_c00132{bottom:486.749877px;}
.y55_c00132{bottom:487.116252px;}
.y54_c00132{bottom:487.365375px;}
.y53_c00132{bottom:487.855239px;}
.y52_c00132{bottom:488.325339px;}
.y51_c00132{bottom:489.015336px;}
.y50_c00132{bottom:489.254178px;}
.y4f_c00132{bottom:489.717630px;}
.y4e_c00132{bottom:490.579887px;}
.y4d_c00132{bottom:507.943038px;}
.y4c_c00132{bottom:508.779627px;}
.y4b_c00132{bottom:509.163810px;}
.y4a_c00132{bottom:509.777982px;}
.y49_c00132{bottom:509.978526px;}
.y48_c00132{bottom:510.212988px;}
.y47_c00132{bottom:510.568671px;}
.y46_c00132{bottom:511.432719px;}
.y45_c00132{bottom:511.695711px;}
.y44_c00132{bottom:512.673084px;}
.y43_c00132{bottom:513.220512px;}
.y42_c00132{bottom:513.802635px;}
.y41_c00132{bottom:530.927067px;}
.y40_c00132{bottom:531.358419px;}
.y3f_c00132{bottom:531.676551px;}
.y3e_c00132{bottom:531.884088px;}
.y3d_c00132{bottom:532.299288px;}
.y3c_c00132{bottom:532.601571px;}
.y3b_c00132{bottom:533.014491px;}
.y3a_c00132{bottom:533.356947px;}
.y39_c00132{bottom:533.615454px;}
.y38_c00132{bottom:534.190644px;}
.y37_c00132{bottom:534.479913px;}
.y36_c00132{bottom:534.925371px;}
.y35_c00132{bottom:535.623276px;}
.y34_c00132{bottom:535.944537px;}
.y33_c00132{bottom:553.596744px;}
.y32_c00132{bottom:553.762920px;}
.y31_c00132{bottom:554.327229px;}
.y30_c00132{bottom:554.701677px;}
.y2f_c00132{bottom:555.126675px;}
.y2e_c00132{bottom:555.651819px;}
.y2d_c00132{bottom:556.165755px;}
.y2c_c00132{bottom:556.552701px;}
.y2b_c00132{bottom:557.297502px;}
.y2a_c00132{bottom:557.549739px;}
.y29_c00132{bottom:558.426318px;}
.y28_c00132{bottom:575.599542px;}
.y27_c00132{bottom:575.877711px;}
.y26_c00132{bottom:576.148758px;}
.y25_c00132{bottom:576.285957px;}
.y24_c00132{bottom:576.553254px;}
.y23_c00132{bottom:576.838491px;}
.y22_c00132{bottom:577.507428px;}
.y21_c00132{bottom:577.791456px;}
.y20_c00132{bottom:577.971024px;}
.y1f_c00132{bottom:578.390088px;}
.y1e_c00132{bottom:579.075336px;}
.y1d_c00132{bottom:579.397668px;}
.y1c_c00132{bottom:580.501488px;}
.y1b_c00132{bottom:598.745355px;}
.y1a_c00132{bottom:599.481321px;}
.y19_c00132{bottom:599.736282px;}
.y18_c00132{bottom:600.707154px;}
.y17_c00132{bottom:601.572438px;}
.y16_c00132{bottom:601.769082px;}
.y15_c00132{bottom:602.139585px;}
.y14_c00132{bottom:602.646000px;}
.y13_c00132{bottom:653.371500px;}
.y12_c00132{bottom:759.414000px;}
.y11_c00132{bottom:814.800000px;}
.yf_c00132{bottom:877.491284px;}
.y10_c00132{bottom:877.491352px;}
.ye_c00132{bottom:877.491365px;}
.yd_c00132{bottom:877.492105px;}
.yc_c00132{bottom:877.492808px;}
.yb_c00132{bottom:877.493148px;}
.ya_c00132{bottom:877.493799px;}
.y9_c00132{bottom:920.161791px;}
.y8_c00132{bottom:934.407624px;}
.y7_c00132{bottom:935.063351px;}
.y6_c00132{bottom:935.551611px;}
.y5_c00132{bottom:936.348635px;}
.y4_c00132{bottom:937.049152px;}
.y1_c00132{bottom:937.710000px;}
.y3_c00132{bottom:938.020487px;}
.y2_c00132{bottom:938.521500px;}
.h13_c00132{height:52.502625px;}
.h12_c00132{height:54.602730px;}
.h3_c00132{height:57.754880px;}
.he_c00132{height:60.905968px;}
.h11_c00132{height:63.003150px;}
.h14_c00132{height:65.100000px;}
.h10_c00132{height:67.206585px;}
.ha_c00132{height:68.256688px;}
.hd_c00132{height:69.306791px;}
.hf_c00132{height:70.356894px;}
.hc_c00132{height:71.406997px;}
.hb_c00132{height:73.507203px;}
.h9_c00132{height:74.557306px;}
.h5_c00132{height:80.856832px;}
.h2_c00132{height:88.200000px;}
.h4_c00132{height:107.109050px;}
.h8_c00132{height:122.850000px;}
.h7_c00132{height:163.800000px;}
.h6_c00132{height:165.900000px;}
.h1_c00132{height:1005.000000px;}
.h0_c00132{height:1005.150000px;}
.w0_c00132{width:705.450000px;}
.w1_c00132{width:705.750000px;}
.x0_c00132{left:0.000000px;}
.x7a_c00132{left:25.957851px;}
.x6f_c00132{left:60.791772px;}
.x6c_c00132{left:80.551596px;}
.x90_c00132{left:82.363554px;}
.x89_c00132{left:84.562242px;}
.x49_c00132{left:85.950603px;}
.x30_c00132{left:87.334038px;}
.x11_c00132{left:88.830000px;}
.x53_c00132{left:99.456930px;}
.xa1_c00132{left:108.177615px;}
.x70_c00132{left:111.039486px;}
.x38_c00132{left:117.023676px;}
.x7b_c00132{left:120.483174px;}
.x85_c00132{left:127.484643px;}
.xa2_c00132{left:129.237855px;}
.x3f_c00132{left:131.839002px;}
.x71_c00132{left:136.211343px;}
.x18_c00132{left:137.700000px;}
.x8a_c00132{left:144.768402px;}
.x54_c00132{left:147.582774px;}
.x12_c00132{left:148.770000px;}
.x4a_c00132{left:157.828119px;}
.x7c_c00132{left:159.641220px;}
.x64_c00132{left:162.898863px;}
.x31_c00132{left:166.985877px;}
.x5d_c00132{left:169.617747px;}
.x40_c00132{left:173.941590px;}
.x97_c00132{left:175.120500px;}
.x55_c00132{left:178.621635px;}
.x39_c00132{left:180.483843px;}
.x24_c00132{left:188.372379px;}
.x19_c00132{left:190.350000px;}
.x80_c00132{left:195.025236px;}
.x4b_c00132{left:196.397190px;}
.x72_c00132{left:197.479704px;}
.x13_c00132{left:198.720000px;}
.x6d_c00132{left:204.818082px;}
.xa_c00132{left:206.006144px;}
.x65_c00132{left:209.122014px;}
.x7d_c00132{left:211.207434px;}
.x4c_c00132{left:216.350757px;}
.x25_c00132{left:217.611597px;}
.x1a_c00132{left:221.400000px;}
.x81_c00132{left:223.304736px;}
.x73_c00132{left:228.579645px;}
.x8b_c00132{left:231.255684px;}
.x91_c00132{left:235.846749px;}
.xb_c00132{left:238.138565px;}
.x2_c00132{left:239.328000px;}
.x9_c00132{left:240.682593px;}
.x66_c00132{left:243.634497px;}
.xc_c00132{left:247.858703px;}
.x41_c00132{left:249.112140px;}
.x1c_c00132{left:253.222500px;}
.x74_c00132{left:254.711502px;}
.x5e_c00132{left:255.783444px;}
.x32_c00132{left:257.706699px;}
.x86_c00132{left:259.008120px;}
.x8c_c00132{left:260.632764px;}
.x14_c00132{left:261.900000px;}
.x6e_c00132{left:263.360220px;}
.x42_c00132{left:269.290413px;}
.x56_c00132{left:272.333739px;}
.x4d_c00132{left:273.887874px;}
.x3_c00132{left:277.867500px;}
.x26_c00132{left:279.846201px;}
.x92_c00132{left:282.750426px;}
.x98_c00132{left:284.503500px;}
.x1d_c00132{left:289.395000px;}
.x33_c00132{left:292.847169px;}
.x15_c00132{left:300.510000px;}
.x67_c00132{left:303.846837px;}
.x57_c00132{left:305.210163px;}
.x5f_c00132{left:306.553158px;}
.x4e_c00132{left:313.038966px;}
.x1e_c00132{left:315.859500px;}
.x27_c00132{left:317.923797px;}
.x9d_c00132{left:320.916390px;}
.xd_c00132{left:322.925378px;}
.x58_c00132{left:324.119688px;}
.xa3_c00132{left:325.465065px;}
.x68_c00132{left:327.889173px;}
.x1f_c00132{left:329.905500px;}
.x87_c00132{left:331.350075px;}
.x28_c00132{left:334.286490px;}
.x43_c00132{left:335.723337px;}
.x1_c00132{left:338.580000px;}
.x93_c00132{left:340.264809px;}
.x75_c00132{left:343.268241px;}
.x16_c00132{left:346.950000px;}
.x4_c00132{left:352.585500px;}
.x3a_c00132{left:354.161130px;}
.xe_c00132{left:357.488208px;}
.x29_c00132{left:360.039561px;}
.x44_c00132{left:363.058215px;}
.x76_c00132{left:366.767577px;}
.xa4_c00132{left:369.630000px;}
.x88_c00132{left:371.873874px;}
.x4f_c00132{left:374.611188px;}
.x45_c00132{left:381.091467px;}
.x1b_c00132{left:382.860000px;}
.xf_c00132{left:387.730317px;}
.x20_c00132{left:391.711500px;}
.x17_c00132{left:397.170000px;}
.x59_c00132{left:399.999309px;}
.x94_c00132{left:403.705524px;}
.x50_c00132{left:405.174549px;}
.x5_c00132{left:406.471500px;}
.x69_c00132{left:412.455849px;}
.x7e_c00132{left:413.755269px;}
.x9e_c00132{left:416.799810px;}
.x3b_c00132{left:419.178360px;}
.x2a_c00132{left:420.787602px;}
.x34_c00132{left:425.929755px;}
.x10_c00132{left:427.424025px;}
.x8d_c00132{left:431.045391px;}
.x77_c00132{left:433.470501px;}
.x60_c00132{left:436.963485px;}
.x82_c00132{left:438.647736px;}
.x51_c00132{left:441.954078px;}
.x46_c00132{left:443.786349px;}
.x2b_c00132{left:446.734194px;}
.x5a_c00132{left:448.924674px;}
.x52_c00132{left:455.602956px;}
.x3c_c00132{left:456.979956px;}
.x35_c00132{left:459.963183px;}
.x21_c00132{left:461.059500px;}
.x83_c00132{left:462.956736px;}
.x99_c00132{left:465.945000px;}
.x6_c00132{left:467.781000px;}
.x2c_c00132{left:470.970702px;}
.x47_c00132{left:473.371269px;}
.x3d_c00132{left:475.876254px;}
.x22_c00132{left:479.271000px;}
.x7f_c00132{left:481.317714px;}
.x2d_c00132{left:483.449727px;}
.x6a_c00132{left:485.364378px;}
.x9a_c00132{left:487.782000px;}
.x8e_c00132{left:492.262530px;}
.x9f_c00132{left:493.500840px;}
.x95_c00132{left:495.868941px;}
.x61_c00132{left:497.516325px;}
.x78_c00132{left:499.879425px;}
.x7_c00132{left:505.339500px;}
.x5b_c00132{left:506.971791px;}
.x2e_c00132{left:508.061256px;}
.x36_c00132{left:511.308846px;}
.x62_c00132{left:513.922056px;}
.x84_c00132{left:521.213736px;}
.x6b_c00132{left:523.908924px;}
.x37_c00132{left:526.393476px;}
.x79_c00132{left:527.427303px;}
.x96_c00132{left:530.370975px;}
.x23_c00132{left:531.840000px;}
.x2f_c00132{left:533.395827px;}
.x5c_c00132{left:536.351610px;}
.x48_c00132{left:537.735672px;}
.x3e_c00132{left:543.985110px;}
.x8f_c00132{left:548.738232px;}
.x63_c00132{left:550.639560px;}
.x9b_c00132{left:551.812500px;}
.x8_c00132{left:555.780000px;}
.x9c_c00132{left:577.872000px;}
.xa0_c00132{left:601.510500px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
.fs11_c00132{font-size:46.669000pt;}
.fs10_c00132{font-size:48.535760pt;}
.fs1_c00132{font-size:51.337671pt;}
.fsc_c00132{font-size:54.138638pt;}
.fsf_c00132{font-size:56.002800pt;}
.fs12_c00132{font-size:57.866667pt;}
.fse_c00132{font-size:59.739187pt;}
.fs8_c00132{font-size:60.672612pt;}
.fsb_c00132{font-size:61.606037pt;}
.fsd_c00132{font-size:62.539461pt;}
.fsa_c00132{font-size:63.472886pt;}
.fs9_c00132{font-size:65.339736pt;}
.fs7_c00132{font-size:66.273160pt;}
.fs3_c00132{font-size:71.872739pt;}
.fs0_c00132{font-size:78.400000pt;}
.fs2_c00132{font-size:95.208044pt;}
.fs6_c00132{font-size:109.200000pt;}
.fs5_c00132{font-size:145.600000pt;}
.fs4_c00132{font-size:147.466667pt;}
.y0_c00132{bottom:0.000000pt;}
.yff_c00132{bottom:133.384000pt;}
.yfe_c00132{bottom:152.155520pt;}
.yfd_c00132{bottom:152.954720pt;}
.yfc_c00132{bottom:153.178360pt;}
.yfb_c00132{bottom:153.899707pt;}
.yfa_c00132{bottom:154.176520pt;}
.yf9_c00132{bottom:154.289293pt;}
.yf8_c00132{bottom:154.565853pt;}
.yf7_c00132{bottom:154.934773pt;}
.yf6_c00132{bottom:155.556933pt;}
.yf5_c00132{bottom:155.848760pt;}
.yf4_c00132{bottom:157.081640pt;}
.yf3_c00132{bottom:157.380853pt;}
.yf2_c00132{bottom:157.680640pt;}
.yf1_c00132{bottom:165.875627pt;}
.yf0_c00132{bottom:166.443413pt;}
.yef_c00132{bottom:166.643693pt;}
.yee_c00132{bottom:166.783987pt;}
.yed_c00132{bottom:167.068867pt;}
.yec_c00132{bottom:167.189467pt;}
.yeb_c00132{bottom:167.569867pt;}
.yea_c00132{bottom:167.777040pt;}
.ye9_c00132{bottom:167.871080pt;}
.ye8_c00132{bottom:168.161107pt;}
.ye7_c00132{bottom:168.313400pt;}
.ye6_c00132{bottom:168.449187pt;}
.ye5_c00132{bottom:168.911707pt;}
.ye4_c00132{bottom:169.184533pt;}
.ye3_c00132{bottom:169.439747pt;}
.ye2_c00132{bottom:182.354040pt;}
.ye1_c00132{bottom:182.585680pt;}
.ye0_c00132{bottom:183.154840pt;}
.ydf_c00132{bottom:183.348947pt;}
.yde_c00132{bottom:183.819347pt;}
.ydd_c00132{bottom:184.314133pt;}
.ydc_c00132{bottom:184.522587pt;}
.ydb_c00132{bottom:184.961760pt;}
.yda_c00132{bottom:185.247467pt;}
.yd9_c00132{bottom:185.458773pt;}
.yd8_c00132{bottom:185.672680pt;}
.yd7_c00132{bottom:185.934053pt;}
.yd6_c00132{bottom:186.507747pt;}
.yd5_c00132{bottom:186.721333pt;}
.yd4_c00132{bottom:228.810248pt;}
.yd3_c00132{bottom:229.300952pt;}
.yd2_c00132{bottom:230.611907pt;}
.yd1_c00132{bottom:231.514747pt;}
.yd0_c00132{bottom:232.333168pt;}
.ycf_c00132{bottom:233.000875pt;}
.yce_c00132{bottom:233.676328pt;}
.ycd_c00132{bottom:234.050109pt;}
.ycc_c00132{bottom:234.228848pt;}
.ycb_c00132{bottom:234.783515pt;}
.yca_c00132{bottom:235.184275pt;}
.yc9_c00132{bottom:249.141707pt;}
.yc8_c00132{bottom:249.895192pt;}
.yc7_c00132{bottom:250.711683pt;}
.yc6_c00132{bottom:251.032635pt;}
.yc5_c00132{bottom:251.352915pt;}
.yc4_c00132{bottom:252.137507pt;}
.yc3_c00132{bottom:252.445571pt;}
.yc2_c00132{bottom:252.983069pt;}
.yc1_c00132{bottom:253.375323pt;}
.yc0_c00132{bottom:254.287707pt;}
.ybf_c00132{bottom:254.528957pt;}
.ybe_c00132{bottom:255.331533pt;}
.ybd_c00132{bottom:269.703893pt;}
.ybc_c00132{bottom:270.105053pt;}
.ybb_c00132{bottom:271.056045pt;}
.yba_c00132{bottom:271.341707pt;}
.yb9_c00132{bottom:271.634675pt;}
.yb8_c00132{bottom:272.149429pt;}
.yb7_c00132{bottom:272.761747pt;}
.yb6_c00132{bottom:273.229731pt;}
.yb5_c00132{bottom:273.855373pt;}
.yb4_c00132{bottom:274.321080pt;}
.yb3_c00132{bottom:274.765296pt;}
.yb2_c00132{bottom:275.069117pt;}
.yb1_c00132{bottom:275.842845pt;}
.yb0_c00132{bottom:276.455741pt;}
.yaf_c00132{bottom:290.857675pt;}
.yae_c00132{bottom:291.320832pt;}
.yad_c00132{bottom:291.582651pt;}
.yac_c00132{bottom:291.885163pt;}
.yab_c00132{bottom:293.142344pt;}
.yaa_c00132{bottom:293.736728pt;}
.ya9_c00132{bottom:294.564987pt;}
.ya8_c00132{bottom:294.916909pt;}
.ya7_c00132{bottom:295.848339pt;}
.ya6_c00132{bottom:296.271325pt;}
.ya5_c00132{bottom:310.913760pt;}
.ya4_c00132{bottom:311.235179pt;}
.ya3_c00132{bottom:311.515443pt;}
.ya2_c00132{bottom:312.296208pt;}
.ya1_c00132{bottom:313.525661pt;}
.ya0_c00132{bottom:313.913229pt;}
.y9f_c00132{bottom:314.636768pt;}
.y9e_c00132{bottom:315.233139pt;}
.y9d_c00132{bottom:315.685765pt;}
.y9c_c00132{bottom:316.085272pt;}
.y9b_c00132{bottom:316.778064pt;}
.y9a_c00132{bottom:330.824197pt;}
.y99_c00132{bottom:331.143011pt;}
.y98_c00132{bottom:331.910755pt;}
.y97_c00132{bottom:332.301291pt;}
.y96_c00132{bottom:332.682157pt;}
.y95_c00132{bottom:332.953256pt;}
.y94_c00132{bottom:333.698757pt;}
.y93_c00132{bottom:333.976613pt;}
.y92_c00132{bottom:334.279139pt;}
.y91_c00132{bottom:334.638155pt;}
.y90_c00132{bottom:334.915320pt;}
.y8f_c00132{bottom:335.345928pt;}
.y8e_c00132{bottom:335.636507pt;}
.y8d_c00132{bottom:335.926245pt;}
.y8c_c00132{bottom:336.216469pt;}
.y8b_c00132{bottom:351.444992pt;}
.y8a_c00132{bottom:351.732805pt;}
.y89_c00132{bottom:352.041184pt;}
.y88_c00132{bottom:352.447075pt;}
.y87_c00132{bottom:352.882155pt;}
.y86_c00132{bottom:353.382235pt;}
.y85_c00132{bottom:353.950253pt;}
.y84_c00132{bottom:354.408008pt;}
.y83_c00132{bottom:354.574757pt;}
.y82_c00132{bottom:354.759840pt;}
.y81_c00132{bottom:355.292144pt;}
.y80_c00132{bottom:355.899808pt;}
.y7f_c00132{bottom:371.010515pt;}
.y7e_c00132{bottom:371.455507pt;}
.y7d_c00132{bottom:371.942371pt;}
.y7c_c00132{bottom:372.297467pt;}
.y7b_c00132{bottom:373.275171pt;}
.y7a_c00132{bottom:373.553027pt;}
.y79_c00132{bottom:373.852677pt;}
.y78_c00132{bottom:374.248992pt;}
.y77_c00132{bottom:374.647808pt;}
.y76_c00132{bottom:375.181688pt;}
.y75_c00132{bottom:376.061264pt;}
.y74_c00132{bottom:391.103203pt;}
.y73_c00132{bottom:391.528125pt;}
.y72_c00132{bottom:391.717616pt;}
.y71_c00132{bottom:391.958995pt;}
.y70_c00132{bottom:392.417819pt;}
.y6f_c00132{bottom:392.611845pt;}
.y6e_c00132{bottom:393.297469pt;}
.y6d_c00132{bottom:393.924680pt;}
.y6c_c00132{bottom:394.258792pt;}
.y6b_c00132{bottom:394.511139pt;}
.y6a_c00132{bottom:395.507408pt;}
.y69_c00132{bottom:396.465371pt;}
.y68_c00132{bottom:411.351608pt;}
.y67_c00132{bottom:411.665213pt;}
.y66_c00132{bottom:412.173376pt;}
.y65_c00132{bottom:412.284891pt;}
.y64_c00132{bottom:412.807056pt;}
.y63_c00132{bottom:413.017576pt;}
.y62_c00132{bottom:413.616643pt;}
.y61_c00132{bottom:413.818621pt;}
.y60_c00132{bottom:414.169072pt;}
.y5f_c00132{bottom:414.717645pt;}
.y5e_c00132{bottom:415.169901pt;}
.y5d_c00132{bottom:415.501485pt;}
.y5c_c00132{bottom:416.015035pt;}
.y5b_c00132{bottom:416.150232pt;}
.y5a_c00132{bottom:431.311075pt;}
.y59_c00132{bottom:431.884032pt;}
.y58_c00132{bottom:432.128355pt;}
.y57_c00132{bottom:432.274203pt;}
.y56_c00132{bottom:432.666557pt;}
.y55_c00132{bottom:432.992224pt;}
.y54_c00132{bottom:433.213667pt;}
.y53_c00132{bottom:433.649101pt;}
.y52_c00132{bottom:434.066968pt;}
.y51_c00132{bottom:434.680299pt;}
.y50_c00132{bottom:434.892603pt;}
.y4f_c00132{bottom:435.304560pt;}
.y4e_c00132{bottom:436.071011pt;}
.y4d_c00132{bottom:451.504923pt;}
.y4c_c00132{bottom:452.248557pt;}
.y4b_c00132{bottom:452.590053pt;}
.y4a_c00132{bottom:453.135984pt;}
.y49_c00132{bottom:453.314245pt;}
.y48_c00132{bottom:453.522656pt;}
.y47_c00132{bottom:453.838819pt;}
.y46_c00132{bottom:454.606861pt;}
.y45_c00132{bottom:454.840632pt;}
.y44_c00132{bottom:455.709408pt;}
.y43_c00132{bottom:456.196011pt;}
.y42_c00132{bottom:456.713453pt;}
.y41_c00132{bottom:471.935171pt;}
.y40_c00132{bottom:472.318595pt;}
.y3f_c00132{bottom:472.601379pt;}
.y3e_c00132{bottom:472.785856pt;}
.y3d_c00132{bottom:473.154923pt;}
.y3c_c00132{bottom:473.423619pt;}
.y3b_c00132{bottom:473.790659pt;}
.y3a_c00132{bottom:474.095064pt;}
.y39_c00132{bottom:474.324848pt;}
.y38_c00132{bottom:474.836128pt;}
.y37_c00132{bottom:475.093256pt;}
.y36_c00132{bottom:475.489219pt;}
.y35_c00132{bottom:476.109579pt;}
.y34_c00132{bottom:476.395144pt;}
.y33_c00132{bottom:492.085995pt;}
.y32_c00132{bottom:492.233707pt;}
.y31_c00132{bottom:492.735315pt;}
.y30_c00132{bottom:493.068157pt;}
.y2f_c00132{bottom:493.445933pt;}
.y2e_c00132{bottom:493.912728pt;}
.y2d_c00132{bottom:494.369560pt;}
.y2c_c00132{bottom:494.713512pt;}
.y2b_c00132{bottom:495.375557pt;}
.y2a_c00132{bottom:495.599768pt;}
.y29_c00132{bottom:496.378949pt;}
.y28_c00132{bottom:511.644037pt;}
.y27_c00132{bottom:511.891299pt;}
.y26_c00132{bottom:512.132229pt;}
.y25_c00132{bottom:512.254184pt;}
.y24_c00132{bottom:512.491781pt;}
.y23_c00132{bottom:512.745325pt;}
.y22_c00132{bottom:513.339936pt;}
.y21_c00132{bottom:513.592405pt;}
.y20_c00132{bottom:513.752021pt;}
.y1f_c00132{bottom:514.124523pt;}
.y1e_c00132{bottom:514.733632pt;}
.y1d_c00132{bottom:515.020149pt;}
.y1c_c00132{bottom:516.001323pt;}
.y1b_c00132{bottom:532.218093pt;}
.y1a_c00132{bottom:532.872285pt;}
.y19_c00132{bottom:533.098917pt;}
.y18_c00132{bottom:533.961915pt;}
.y17_c00132{bottom:534.731056pt;}
.y16_c00132{bottom:534.905851pt;}
.y15_c00132{bottom:535.235187pt;}
.y14_c00132{bottom:535.685333pt;}
.y13_c00132{bottom:580.774667pt;}
.y12_c00132{bottom:675.034667pt;}
.y11_c00132{bottom:724.266667pt;}
.yf_c00132{bottom:779.992252pt;}
.y10_c00132{bottom:779.992313pt;}
.ye_c00132{bottom:779.992324pt;}
.yd_c00132{bottom:779.992983pt;}
.yc_c00132{bottom:779.993607pt;}
.yb_c00132{bottom:779.993909pt;}
.ya_c00132{bottom:779.994488pt;}
.y9_c00132{bottom:817.921592pt;}
.y8_c00132{bottom:830.584555pt;}
.y7_c00132{bottom:831.167423pt;}
.y6_c00132{bottom:831.601432pt;}
.y5_c00132{bottom:832.309897pt;}
.y4_c00132{bottom:832.932580pt;}
.y1_c00132{bottom:833.520000pt;}
.y3_c00132{bottom:833.795988pt;}
.y2_c00132{bottom:834.241333pt;}
.h13_c00132{height:46.669000pt;}
.h12_c00132{height:48.535760pt;}
.h3_c00132{height:51.337671pt;}
.he_c00132{height:54.138638pt;}
.h11_c00132{height:56.002800pt;}
.h14_c00132{height:57.866667pt;}
.h10_c00132{height:59.739187pt;}
.ha_c00132{height:60.672612pt;}
.hd_c00132{height:61.606037pt;}
.hf_c00132{height:62.539461pt;}
.hc_c00132{height:63.472886pt;}
.hb_c00132{height:65.339736pt;}
.h9_c00132{height:66.273160pt;}
.h5_c00132{height:71.872739pt;}
.h2_c00132{height:78.400000pt;}
.h4_c00132{height:95.208044pt;}
.h8_c00132{height:109.200000pt;}
.h7_c00132{height:145.600000pt;}
.h6_c00132{height:147.466667pt;}
.h1_c00132{height:893.333333pt;}
.h0_c00132{height:893.466667pt;}
.w0_c00132{width:627.066667pt;}
.w1_c00132{width:627.333333pt;}
.x0_c00132{left:0.000000pt;}
.x7a_c00132{left:23.073645pt;}
.x6f_c00132{left:54.037131pt;}
.x6c_c00132{left:71.601419pt;}
.x90_c00132{left:73.212048pt;}
.x89_c00132{left:75.166437pt;}
.x49_c00132{left:76.400536pt;}
.x30_c00132{left:77.630256pt;}
.x11_c00132{left:78.960000pt;}
.x53_c00132{left:88.406160pt;}
.xa1_c00132{left:96.157880pt;}
.x70_c00132{left:98.701765pt;}
.x38_c00132{left:104.021045pt;}
.x7b_c00132{left:107.096155pt;}
.x85_c00132{left:113.319683pt;}
.xa2_c00132{left:114.878093pt;}
.x3f_c00132{left:117.190224pt;}
.x71_c00132{left:121.076749pt;}
.x18_c00132{left:122.400000pt;}
.x8a_c00132{left:128.683024pt;}
.x54_c00132{left:131.184688pt;}
.x12_c00132{left:132.240000pt;}
.x4a_c00132{left:140.291661pt;}
.x7c_c00132{left:141.903307pt;}
.x64_c00132{left:144.798989pt;}
.x31_c00132{left:148.431891pt;}
.x5d_c00132{left:150.771331pt;}
.x40_c00132{left:154.614747pt;}
.x97_c00132{left:155.662667pt;}
.x55_c00132{left:158.774787pt;}
.x39_c00132{left:160.430083pt;}
.x24_c00132{left:167.442115pt;}
.x19_c00132{left:169.200000pt;}
.x80_c00132{left:173.355765pt;}
.x4b_c00132{left:174.575280pt;}
.x72_c00132{left:175.537515pt;}
.x13_c00132{left:176.640000pt;}
.x6d_c00132{left:182.060517pt;}
.xa_c00132{left:183.116572pt;}
.x65_c00132{left:185.886235pt;}
.x7d_c00132{left:187.739941pt;}
.x4c_c00132{left:192.311784pt;}
.x25_c00132{left:193.432531pt;}
.x1a_c00132{left:196.800000pt;}
.x81_c00132{left:198.493099pt;}
.x73_c00132{left:203.181907pt;}
.x8b_c00132{left:205.560608pt;}
.x91_c00132{left:209.641555pt;}
.xb_c00132{left:211.678724pt;}
.x2_c00132{left:212.736000pt;}
.x9_c00132{left:213.940083pt;}
.x66_c00132{left:216.563997pt;}
.xc_c00132{left:220.318847pt;}
.x41_c00132{left:221.433013pt;}
.x1c_c00132{left:225.086667pt;}
.x74_c00132{left:226.410224pt;}
.x5e_c00132{left:227.363061pt;}
.x32_c00132{left:229.072621pt;}
.x86_c00132{left:230.229440pt;}
.x8c_c00132{left:231.673568pt;}
.x14_c00132{left:232.800000pt;}
.x6e_c00132{left:234.097973pt;}
.x42_c00132{left:239.369256pt;}
.x56_c00132{left:242.074435pt;}
.x4d_c00132{left:243.455888pt;}
.x3_c00132{left:246.993333pt;}
.x26_c00132{left:248.752179pt;}
.x92_c00132{left:251.333712pt;}
.x98_c00132{left:252.892000pt;}
.x1d_c00132{left:257.240000pt;}
.x33_c00132{left:260.308595pt;}
.x15_c00132{left:267.120000pt;}
.x67_c00132{left:270.086077pt;}
.x57_c00132{left:271.297923pt;}
.x5f_c00132{left:272.491696pt;}
.x4e_c00132{left:278.256859pt;}
.x1e_c00132{left:280.764000pt;}
.x27_c00132{left:282.598931pt;}
.x9d_c00132{left:285.259013pt;}
.xd_c00132{left:287.044780pt;}
.x58_c00132{left:288.106389pt;}
.xa3_c00132{left:289.302280pt;}
.x68_c00132{left:291.457043pt;}
.x1f_c00132{left:293.249333pt;}
.x87_c00132{left:294.533400pt;}
.x28_c00132{left:297.143547pt;}
.x43_c00132{left:298.420744pt;}
.x1_c00132{left:300.960000pt;}
.x93_c00132{left:302.457608pt;}
.x75_c00132{left:305.127325pt;}
.x16_c00132{left:308.400000pt;}
.x4_c00132{left:313.409333pt;}
.x3a_c00132{left:314.809893pt;}
.xe_c00132{left:317.767296pt;}
.x29_c00132{left:320.035165pt;}
.x44_c00132{left:322.718413pt;}
.x76_c00132{left:326.015624pt;}
.xa4_c00132{left:328.560000pt;}
.x88_c00132{left:330.554555pt;}
.x4f_c00132{left:332.987723pt;}
.x45_c00132{left:338.747971pt;}
.x1b_c00132{left:340.320000pt;}
.xf_c00132{left:344.649171pt;}
.x20_c00132{left:348.188000pt;}
.x17_c00132{left:353.040000pt;}
.x59_c00132{left:355.554941pt;}
.x94_c00132{left:358.849355pt;}
.x50_c00132{left:360.155155pt;}
.x5_c00132{left:361.308000pt;}
.x69_c00132{left:366.627421pt;}
.x7e_c00132{left:367.782461pt;}
.x9e_c00132{left:370.488720pt;}
.x3b_c00132{left:372.602987pt;}
.x2a_c00132{left:374.033424pt;}
.x34_c00132{left:378.604227pt;}
.x10_c00132{left:379.932467pt;}
.x8d_c00132{left:383.151459pt;}
.x77_c00132{left:385.307112pt;}
.x60_c00132{left:388.411987pt;}
.x82_c00132{left:389.909099pt;}
.x51_c00132{left:392.848069pt;}
.x46_c00132{left:394.476755pt;}
.x2b_c00132{left:397.097061pt;}
.x5a_c00132{left:399.044155pt;}
.x52_c00132{left:404.980405pt;}
.x3c_c00132{left:406.204405pt;}
.x35_c00132{left:408.856163pt;}
.x21_c00132{left:409.830667pt;}
.x83_c00132{left:411.517099pt;}
.x99_c00132{left:414.173333pt;}
.x6_c00132{left:415.805333pt;}
.x2c_c00132{left:418.640624pt;}
.x47_c00132{left:420.774461pt;}
.x3d_c00132{left:423.001115pt;}
.x22_c00132{left:426.018667pt;}
.x7f_c00132{left:427.837968pt;}
.x2d_c00132{left:429.733091pt;}
.x6a_c00132{left:431.435003pt;}
.x9a_c00132{left:433.584000pt;}
.x8e_c00132{left:437.566693pt;}
.x9f_c00132{left:438.667413pt;}
.x95_c00132{left:440.772392pt;}
.x61_c00132{left:442.236733pt;}
.x78_c00132{left:444.337267pt;}
.x7_c00132{left:449.190667pt;}
.x5b_c00132{left:450.641592pt;}
.x2e_c00132{left:451.610005pt;}
.x36_c00132{left:454.496752pt;}
.x62_c00132{left:456.819605pt;}
.x84_c00132{left:463.301099pt;}
.x6b_c00132{left:465.696821pt;}
.x37_c00132{left:467.905312pt;}
.x79_c00132{left:468.824269pt;}
.x96_c00132{left:471.440867pt;}
.x23_c00132{left:472.746667pt;}
.x2f_c00132{left:474.129624pt;}
.x5c_c00132{left:476.756987pt;}
.x48_c00132{left:477.987264pt;}
.x3e_c00132{left:483.542320pt;}
.x8f_c00132{left:487.767317pt;}
.x63_c00132{left:489.457387pt;}
.x9b_c00132{left:490.500000pt;}
.x8_c00132{left:494.026667pt;}
.x9c_c00132{left:513.664000pt;}
.xa0_c00132{left:534.676000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mf2_c00133{transform:matrix(0.007419,0.000119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.007419,0.000119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.007419,0.000119,-0.003999,0.249968,0,0);}
.m102_c00133{transform:matrix(0.014518,0.000232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.014518,0.000232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.014518,0.000232,-0.003999,0.249968,0,0);}
.m1b_c00133{transform:matrix(0.029229,0.000263,-0.002250,0.249990,0,0);-ms-transform:matrix(0.029229,0.000263,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.029229,0.000263,-0.002250,0.249990,0,0);}
.mce_c00133{transform:matrix(0.034299,0.000274,-0.002000,0.249992,0,0);-ms-transform:matrix(0.034299,0.000274,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.034299,0.000274,-0.002000,0.249992,0,0);}
.mcd_c00133{transform:matrix(0.038999,0.000312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.038999,0.000312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.038999,0.000312,-0.002000,0.249992,0,0);}
.mb7_c00133{transform:matrix(0.069542,0.000626,-0.002250,0.249990,0,0);-ms-transform:matrix(0.069542,0.000626,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.069542,0.000626,-0.002250,0.249990,0,0);}
.mdc_c00133{transform:matrix(0.104497,0.001672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.104497,0.001672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.104497,0.001672,-0.003999,0.249968,0,0);}
.md1_c00133{transform:matrix(0.109916,0.000879,-0.002000,0.249992,0,0);-ms-transform:matrix(0.109916,0.000879,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.109916,0.000879,-0.002000,0.249992,0,0);}
.m118_c00133{transform:matrix(0.115080,0.001841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.115080,0.001841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.115080,0.001841,-0.003999,0.249968,0,0);}
.m2_c00133{transform:matrix(0.123590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123590,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.134305,0.001209,-0.002250,0.249990,0,0);-ms-transform:matrix(0.134305,0.001209,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.134305,0.001209,-0.002250,0.249990,0,0);}
.m3_c00133{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);}
.m1_c00133{transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.138054,0.001242,-0.002250,0.249990,0,0);-ms-transform:matrix(0.138054,0.001242,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.138054,0.001242,-0.002250,0.249990,0,0);}
.m25_c00133{transform:matrix(0.140919,0.001268,-0.002250,0.249990,0,0);-ms-transform:matrix(0.140919,0.001268,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.140919,0.001268,-0.002250,0.249990,0,0);}
.mb3_c00133{transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144389,0.001300,-0.002250,0.249990,0,0);}
.m20_c00133{transform:matrix(0.145419,0.001309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145419,0.001309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145419,0.001309,-0.002250,0.249990,0,0);}
.m8_c00133{transform:matrix(0.147994,0.001332,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147994,0.001332,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147994,0.001332,-0.002250,0.249990,0,0);}
.mfe_c00133{transform:matrix(0.152176,0.002435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152176,0.002435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152176,0.002435,-0.003999,0.249968,0,0);}
.mb5_c00133{transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);}
.m61_c00133{transform:matrix(0.152994,0.001377,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152994,0.001377,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152994,0.001377,-0.002250,0.249990,0,0);}
.me_c00133{transform:matrix(0.153364,0.001380,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153364,0.001380,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153364,0.001380,-0.002250,0.249990,0,0);}
.m98_c00133{transform:matrix(0.154354,0.001389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154354,0.001389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154354,0.001389,-0.002250,0.249990,0,0);}
.m11c_c00133{transform:matrix(0.154585,0.002473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154585,0.002473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154585,0.002473,-0.003999,0.249968,0,0);}
.mfd_c00133{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);}
.m46_c00133{transform:matrix(0.155629,0.001401,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155629,0.001401,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155629,0.001401,-0.002250,0.249990,0,0);}
.m1e_c00133{transform:matrix(0.156149,0.001405,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156149,0.001405,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156149,0.001405,-0.002250,0.249990,0,0);}
.m40_c00133{transform:matrix(0.156789,0.001411,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156789,0.001411,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156789,0.001411,-0.002250,0.249990,0,0);}
.m107_c00133{transform:matrix(0.158010,0.002528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158010,0.002528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158010,0.002528,-0.003999,0.249968,0,0);}
.md6_c00133{transform:matrix(0.158045,0.001264,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158045,0.001264,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158045,0.001264,-0.002000,0.249992,0,0);}
.m17_c00133{transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158049,0.001422,-0.002250,0.249990,0,0);}
.m56_c00133{transform:matrix(0.159339,0.001434,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159339,0.001434,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159339,0.001434,-0.002250,0.249990,0,0);}
.m43_c00133{transform:matrix(0.159639,0.001437,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159639,0.001437,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159639,0.001437,-0.002250,0.249990,0,0);}
.m10a_c00133{transform:matrix(0.159780,0.002556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159780,0.002556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159780,0.002556,-0.003999,0.249968,0,0);}
.m31_c00133{transform:matrix(0.160798,0.001447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160798,0.001447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160798,0.001447,-0.002250,0.249990,0,0);}
.m18_c00133{transform:matrix(0.162173,0.001460,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162173,0.001460,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162173,0.001460,-0.002250,0.249990,0,0);}
.m8d_c00133{transform:matrix(0.163248,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163248,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163248,0.001469,-0.002250,0.249990,0,0);}
.mc_c00133{transform:matrix(0.163518,0.001472,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163518,0.001472,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163518,0.001472,-0.002250,0.249990,0,0);}
.m5_c00133{transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);}
.m3a_c00133{transform:matrix(0.164713,0.001482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164713,0.001482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164713,0.001482,-0.002250,0.249990,0,0);}
.m6f_c00133{transform:matrix(0.164873,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164873,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164873,0.001484,-0.002250,0.249990,0,0);}
.me4_c00133{transform:matrix(0.166124,0.002658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166124,0.002658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166124,0.002658,-0.003999,0.249968,0,0);}
.mb1_c00133{transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);}
.m7_c00133{transform:matrix(0.166283,0.001497,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166283,0.001497,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166283,0.001497,-0.002250,0.249990,0,0);}
.m48_c00133{transform:matrix(0.166603,0.001499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166603,0.001499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166603,0.001499,-0.002250,0.249990,0,0);}
.m13_c00133{transform:matrix(0.166768,0.001501,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166768,0.001501,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166768,0.001501,-0.002250,0.249990,0,0);}
.mff_c00133{transform:matrix(0.166909,0.002671,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166909,0.002671,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166909,0.002671,-0.003999,0.249968,0,0);}
.m100_c00133{transform:matrix(0.167394,0.002678,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167394,0.002678,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167394,0.002678,-0.003999,0.249968,0,0);}
.m3d_c00133{transform:matrix(0.168868,0.001520,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168868,0.001520,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168868,0.001520,-0.002250,0.249990,0,0);}
.mab_c00133{transform:matrix(0.169393,0.001525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169393,0.001525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169393,0.001525,-0.002250,0.249990,0,0);}
.m121_c00133{transform:matrix(0.169398,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169398,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169398,0.002710,-0.003999,0.249968,0,0);}
.m109_c00133{transform:matrix(0.169703,0.002715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169703,0.002715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169703,0.002715,-0.003999,0.249968,0,0);}
.m15_c00133{transform:matrix(0.169758,0.001528,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169758,0.001528,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169758,0.001528,-0.002250,0.249990,0,0);}
.m82_c00133{transform:matrix(0.169893,0.001529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169893,0.001529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169893,0.001529,-0.002250,0.249990,0,0);}
.m9d_c00133{transform:matrix(0.170258,0.001532,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170258,0.001532,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170258,0.001532,-0.002250,0.249990,0,0);}
.m3e_c00133{transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170353,0.001533,-0.002250,0.249990,0,0);}
.m7b_c00133{transform:matrix(0.170433,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170433,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170433,0.001534,-0.002250,0.249990,0,0);}
.ma4_c00133{transform:matrix(0.171048,0.001539,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171048,0.001539,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171048,0.001539,-0.002250,0.249990,0,0);}
.m29_c00133{transform:matrix(0.171118,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171118,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171118,0.001540,-0.002250,0.249990,0,0);}
.maf_c00133{transform:matrix(0.171173,0.001541,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171173,0.001541,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171173,0.001541,-0.002250,0.249990,0,0);}
.m6_c00133{transform:matrix(0.171558,0.001544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171558,0.001544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171558,0.001544,-0.002250,0.249990,0,0);}
.mbe_c00133{transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);}
.m41_c00133{transform:matrix(0.172603,0.001553,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172603,0.001553,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172603,0.001553,-0.002250,0.249990,0,0);}
.m9e_c00133{transform:matrix(0.173293,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173293,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173293,0.001560,-0.002250,0.249990,0,0);}
.mfc_c00133{transform:matrix(0.173623,0.002778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173623,0.002778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173623,0.002778,-0.003999,0.249968,0,0);}
.mfa_c00133{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);}
.m4_c00133{transform:matrix(0.174243,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174243,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174243,0.001568,-0.002250,0.249990,0,0);}
.m47_c00133{transform:matrix(0.174283,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174283,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174283,0.001569,-0.002250,0.249990,0,0);}
.me1_c00133{transform:matrix(0.174498,0.002792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174498,0.002792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174498,0.002792,-0.003999,0.249968,0,0);}
.m9a_c00133{transform:matrix(0.175078,0.001576,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175078,0.001576,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175078,0.001576,-0.002250,0.249990,0,0);}
.m9f_c00133{transform:matrix(0.175213,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175213,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175213,0.001577,-0.002250,0.249990,0,0);}
.m59_c00133{transform:matrix(0.175708,0.001581,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175708,0.001581,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175708,0.001581,-0.002250,0.249990,0,0);}
.m58_c00133{transform:matrix(0.175998,0.001584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175998,0.001584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175998,0.001584,-0.002250,0.249990,0,0);}
.m114_c00133{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);}
.m3b_c00133{transform:matrix(0.176413,0.001588,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176413,0.001588,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176413,0.001588,-0.002250,0.249990,0,0);}
.mb8_c00133{transform:matrix(0.176698,0.001590,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176698,0.001590,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176698,0.001590,-0.002250,0.249990,0,0);}
.maa_c00133{transform:matrix(0.176788,0.001591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176788,0.001591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176788,0.001591,-0.002250,0.249990,0,0);}
.m72_c00133{transform:matrix(0.177533,0.001598,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177533,0.001598,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177533,0.001598,-0.002250,0.249990,0,0);}
.m62_c00133{transform:matrix(0.177793,0.001600,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177793,0.001600,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177793,0.001600,-0.002250,0.249990,0,0);}
.me0_c00133{transform:matrix(0.177922,0.002847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177922,0.002847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177922,0.002847,-0.003999,0.249968,0,0);}
.m23_c00133{transform:matrix(0.178098,0.001603,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178098,0.001603,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178098,0.001603,-0.002250,0.249990,0,0);}
.m44_c00133{transform:matrix(0.178213,0.001604,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178213,0.001604,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178213,0.001604,-0.002250,0.249990,0,0);}
.m111_c00133{transform:matrix(0.178482,0.002856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178482,0.002856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178482,0.002856,-0.003999,0.249968,0,0);}
.ma2_c00133{transform:matrix(0.178508,0.001607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178508,0.001607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178508,0.001607,-0.002250,0.249990,0,0);}
.m124_c00133{transform:matrix(0.179692,0.002875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179692,0.002875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179692,0.002875,-0.003999,0.249968,0,0);}
.m38_c00133{transform:matrix(0.179773,0.001618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179773,0.001618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179773,0.001618,-0.002250,0.249990,0,0);}
.m66_c00133{transform:matrix(0.179863,0.001619,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179863,0.001619,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179863,0.001619,-0.002250,0.249990,0,0);}
.m83_c00133{transform:matrix(0.180458,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180458,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180458,0.001624,-0.002250,0.249990,0,0);}
.m57_c00133{transform:matrix(0.180548,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180548,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180548,0.001625,-0.002250,0.249990,0,0);}
.m63_c00133{transform:matrix(0.180898,0.001628,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180898,0.001628,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180898,0.001628,-0.002250,0.249990,0,0);}
.m33_c00133{transform:matrix(0.181078,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181078,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181078,0.001630,-0.002250,0.249990,0,0);}
.m3c_c00133{transform:matrix(0.181173,0.001631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181173,0.001631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181173,0.001631,-0.002250,0.249990,0,0);}
.mb2_c00133{transform:matrix(0.181203,0.001631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181203,0.001631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181203,0.001631,-0.002250,0.249990,0,0);}
.m9_c00133{transform:matrix(0.182108,0.001639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182108,0.001639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182108,0.001639,-0.002250,0.249990,0,0);}
.m6e_c00133{transform:matrix(0.182118,0.001639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182118,0.001639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182118,0.001639,-0.002250,0.249990,0,0);}
.m10c_c00133{transform:matrix(0.182827,0.002925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182827,0.002925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182827,0.002925,-0.003999,0.249968,0,0);}
.m11_c00133{transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182948,0.001647,-0.002250,0.249990,0,0);}
.mf0_c00133{transform:matrix(0.183107,0.002930,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183107,0.002930,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183107,0.002930,-0.003999,0.249968,0,0);}
.meb_c00133{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);}
.m7c_c00133{transform:matrix(0.183758,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183758,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183758,0.001654,-0.002250,0.249990,0,0);}
.m78_c00133{transform:matrix(0.184223,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184223,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184223,0.001658,-0.002250,0.249990,0,0);}
.mdf_c00133{transform:matrix(0.184631,0.002954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184631,0.002954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184631,0.002954,-0.003999,0.249968,0,0);}
.m16_c00133{transform:matrix(0.184638,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184638,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184638,0.001662,-0.002250,0.249990,0,0);}
.m1c_c00133{transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);}
.m6c_c00133{transform:matrix(0.185173,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185173,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185173,0.001667,-0.002250,0.249990,0,0);}
.m136_c00133{transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);}
.m1d_c00133{transform:matrix(0.185672,0.001671,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185672,0.001671,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185672,0.001671,-0.002250,0.249990,0,0);}
.m8e_c00133{transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);}
.m7e_c00133{transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);}
.m45_c00133{transform:matrix(0.186062,0.001675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186062,0.001675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186062,0.001675,-0.002250,0.249990,0,0);}
.m104_c00133{transform:matrix(0.186316,0.002981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186316,0.002981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186316,0.002981,-0.003999,0.249968,0,0);}
.m5a_c00133{transform:matrix(0.187092,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187092,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187092,0.001684,-0.002250,0.249990,0,0);}
.md_c00133{transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);}
.m64_c00133{transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);}
.m70_c00133{transform:matrix(0.187972,0.001692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187972,0.001692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187972,0.001692,-0.002250,0.249990,0,0);}
.m34_c00133{transform:matrix(0.188027,0.001692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188027,0.001692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188027,0.001692,-0.002250,0.249990,0,0);}
.m125_c00133{transform:matrix(0.188671,0.003019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188671,0.003019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188671,0.003019,-0.003999,0.249968,0,0);}
.m6b_c00133{transform:matrix(0.188707,0.001698,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188707,0.001698,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188707,0.001698,-0.002250,0.249990,0,0);}
.m10f_c00133{transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);}
.m36_c00133{transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188917,0.001700,-0.002250,0.249990,0,0);}
.m2a_c00133{transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);}
.m32_c00133{transform:matrix(0.189362,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189362,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189362,0.001704,-0.002250,0.249990,0,0);}
.m7f_c00133{transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);}
.mb_c00133{transform:matrix(0.190417,0.001714,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190417,0.001714,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190417,0.001714,-0.002250,0.249990,0,0);}
.m108_c00133{transform:matrix(0.190891,0.003054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190891,0.003054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190891,0.003054,-0.003999,0.249968,0,0);}
.m5e_c00133{transform:matrix(0.191032,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191032,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191032,0.001719,-0.002250,0.249990,0,0);}
.mfb_c00133{transform:matrix(0.191076,0.003057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191076,0.003057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191076,0.003057,-0.003999,0.249968,0,0);}
.mc9_c00133{transform:matrix(0.191404,0.001531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191404,0.001531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191404,0.001531,-0.002000,0.249992,0,0);}
.mee_c00133{transform:matrix(0.191680,0.003067,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191680,0.003067,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191680,0.003067,-0.003999,0.249968,0,0);}
.mad_c00133{transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);}
.m6a_c00133{transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);}
.m11d_c00133{transform:matrix(0.192390,0.003078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192390,0.003078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192390,0.003078,-0.003999,0.249968,0,0);}
.m2d_c00133{transform:matrix(0.192452,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192452,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192452,0.001732,-0.002250,0.249990,0,0);}
.m69_c00133{transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);}
.m1f_c00133{transform:matrix(0.192762,0.001735,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192762,0.001735,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192762,0.001735,-0.002250,0.249990,0,0);}
.m123_c00133{transform:matrix(0.192850,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192850,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192850,0.003086,-0.003999,0.249968,0,0);}
.m101_c00133{transform:matrix(0.192970,0.003088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192970,0.003088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192970,0.003088,-0.003999,0.249968,0,0);}
.m22_c00133{transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);}
.m9c_c00133{transform:matrix(0.194497,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194497,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194497,0.001750,-0.002250,0.249990,0,0);}
.m110_c00133{transform:matrix(0.194890,0.003118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194890,0.003118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194890,0.003118,-0.003999,0.249968,0,0);}
.m5f_c00133{transform:matrix(0.195002,0.001755,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195002,0.001755,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195002,0.001755,-0.002250,0.249990,0,0);}
.m27_c00133{transform:matrix(0.195257,0.001757,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195257,0.001757,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195257,0.001757,-0.002250,0.249990,0,0);}
.m11a_c00133{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);}
.md3_c00133{transform:matrix(0.195974,0.001568,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195974,0.001568,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195974,0.001568,-0.002000,0.249992,0,0);}
.m10_c00133{transform:matrix(0.196112,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196112,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196112,0.001765,-0.002250,0.249990,0,0);}
.mef_c00133{transform:matrix(0.196175,0.003139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196175,0.003139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196175,0.003139,-0.003999,0.249968,0,0);}
.ma6_c00133{transform:matrix(0.196222,0.001766,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196222,0.001766,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196222,0.001766,-0.002250,0.249990,0,0);}
.m133_c00133{transform:matrix(0.196230,0.003140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196230,0.003140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196230,0.003140,-0.003999,0.249968,0,0);}
.m5b_c00133{transform:matrix(0.197107,0.001774,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197107,0.001774,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197107,0.001774,-0.002250,0.249990,0,0);}
.mec_c00133{transform:matrix(0.197870,0.003166,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197870,0.003166,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197870,0.003166,-0.003999,0.249968,0,0);}
.mc8_c00133{transform:matrix(0.197889,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197889,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197889,0.001583,-0.002000,0.249992,0,0);}
.m21_c00133{transform:matrix(0.198722,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198722,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198722,0.001788,-0.002250,0.249990,0,0);}
.me2_c00133{transform:matrix(0.199150,0.003186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199150,0.003186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199150,0.003186,-0.003999,0.249968,0,0);}
.me5_c00133{transform:matrix(0.200019,0.003200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200019,0.003200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200019,0.003200,-0.003999,0.249968,0,0);}
.m105_c00133{transform:matrix(0.200644,0.003210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200644,0.003210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200644,0.003210,-0.003999,0.249968,0,0);}
.m73_c00133{transform:matrix(0.200737,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200737,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200737,0.001807,-0.002250,0.249990,0,0);}
.m19_c00133{transform:matrix(0.200762,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200762,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200762,0.001807,-0.002250,0.249990,0,0);}
.m79_c00133{transform:matrix(0.200887,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200887,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200887,0.001808,-0.002250,0.249990,0,0);}
.m6d_c00133{transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);}
.m81_c00133{transform:matrix(0.201457,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201457,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201457,0.001813,-0.002250,0.249990,0,0);}
.m88_c00133{transform:matrix(0.201482,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201482,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201482,0.001813,-0.002250,0.249990,0,0);}
.m37_c00133{transform:matrix(0.201617,0.001815,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201617,0.001815,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201617,0.001815,-0.002250,0.249990,0,0);}
.m122_c00133{transform:matrix(0.201624,0.003226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201624,0.003226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201624,0.003226,-0.003999,0.249968,0,0);}
.m67_c00133{transform:matrix(0.201662,0.001815,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201662,0.001815,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201662,0.001815,-0.002250,0.249990,0,0);}
.mde_c00133{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);}
.m60_c00133{transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201987,0.001818,-0.002250,0.249990,0,0);}
.m5c_c00133{transform:matrix(0.202667,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202667,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202667,0.001824,-0.002250,0.249990,0,0);}
.m89_c00133{transform:matrix(0.202732,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202732,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202732,0.001825,-0.002250,0.249990,0,0);}
.m11b_c00133{transform:matrix(0.202804,0.003245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202804,0.003245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202804,0.003245,-0.003999,0.249968,0,0);}
.m91_c00133{transform:matrix(0.202932,0.001826,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202932,0.001826,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202932,0.001826,-0.002250,0.249990,0,0);}
.m113_c00133{transform:matrix(0.203119,0.003250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203119,0.003250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203119,0.003250,-0.003999,0.249968,0,0);}
.m12_c00133{transform:matrix(0.203252,0.001829,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203252,0.001829,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203252,0.001829,-0.002250,0.249990,0,0);}
.m65_c00133{transform:matrix(0.203337,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203337,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203337,0.001830,-0.002250,0.249990,0,0);}
.m95_c00133{transform:matrix(0.203362,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203362,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203362,0.001830,-0.002250,0.249990,0,0);}
.med_c00133{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);}
.m49_c00133{transform:matrix(0.203412,0.001831,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203412,0.001831,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203412,0.001831,-0.002250,0.249990,0,0);}
.m128_c00133{transform:matrix(0.203519,0.003256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203519,0.003256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203519,0.003256,-0.003999,0.249968,0,0);}
.m80_c00133{transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);}
.m24_c00133{transform:matrix(0.203727,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203727,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203727,0.001834,-0.002250,0.249990,0,0);}
.m103_c00133{transform:matrix(0.203844,0.003262,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203844,0.003262,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203844,0.003262,-0.003999,0.249968,0,0);}
.m71_c00133{transform:matrix(0.203922,0.001835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203922,0.001835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203922,0.001835,-0.002250,0.249990,0,0);}
.m12c_c00133{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);}
.ma5_c00133{transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);}
.me6_c00133{transform:matrix(0.204444,0.003271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204444,0.003271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204444,0.003271,-0.003999,0.249968,0,0);}
.mac_c00133{transform:matrix(0.204702,0.001842,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204702,0.001842,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204702,0.001842,-0.002250,0.249990,0,0);}
.mbf_c00133{transform:matrix(0.204712,0.001842,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204712,0.001842,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204712,0.001842,-0.002250,0.249990,0,0);}
.mf7_c00133{transform:matrix(0.204989,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204989,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204989,0.003280,-0.003999,0.249968,0,0);}
.m129_c00133{transform:matrix(0.205389,0.003286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205389,0.003286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205389,0.003286,-0.003999,0.249968,0,0);}
.m2c_c00133{transform:matrix(0.205557,0.001850,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205557,0.001850,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205557,0.001850,-0.002250,0.249990,0,0);}
.m117_c00133{transform:matrix(0.205759,0.003292,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205759,0.003292,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205759,0.003292,-0.003999,0.249968,0,0);}
.m42_c00133{transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);}
.ma7_c00133{transform:matrix(0.206072,0.001855,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206072,0.001855,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206072,0.001855,-0.002250,0.249990,0,0);}
.m7a_c00133{transform:matrix(0.206247,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206247,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206247,0.001856,-0.002250,0.249990,0,0);}
.m87_c00133{transform:matrix(0.206517,0.001859,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206517,0.001859,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206517,0.001859,-0.002250,0.249990,0,0);}
.m1a_c00133{transform:matrix(0.206672,0.001860,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206672,0.001860,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206672,0.001860,-0.002250,0.249990,0,0);}
.m116_c00133{transform:matrix(0.208108,0.003330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208108,0.003330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208108,0.003330,-0.003999,0.249968,0,0);}
.mbd_c00133{transform:matrix(0.208562,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208562,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208562,0.001877,-0.002250,0.249990,0,0);}
.m11e_c00133{transform:matrix(0.208953,0.003343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208953,0.003343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208953,0.003343,-0.003999,0.249968,0,0);}
.md0_c00133{transform:matrix(0.209183,0.001673,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209183,0.001673,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209183,0.001673,-0.002000,0.249992,0,0);}
.mcc_c00133{transform:matrix(0.209223,0.001674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209223,0.001674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209223,0.001674,-0.002000,0.249992,0,0);}
.m10b_c00133{transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);}
.mb0_c00133{transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);}
.m8c_c00133{transform:matrix(0.210381,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210381,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210381,0.001893,-0.002250,0.249990,0,0);}
.mf6_c00133{transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);}
.m14_c00133{transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210401,0.001894,-0.002250,0.249990,0,0);}
.m28_c00133{transform:matrix(0.210841,0.001898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210841,0.001898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210841,0.001898,-0.002250,0.249990,0,0);}
.ma8_c00133{transform:matrix(0.211696,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211696,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211696,0.001905,-0.002250,0.249990,0,0);}
.mf9_c00133{transform:matrix(0.211778,0.003388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211778,0.003388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211778,0.003388,-0.003999,0.249968,0,0);}
.m7d_c00133{transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);}
.m10e_c00133{transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);}
.m135_c00133{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);}
.m9b_c00133{transform:matrix(0.212591,0.001913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212591,0.001913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212591,0.001913,-0.002250,0.249990,0,0);}
.mf1_c00133{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);}
.m12f_c00133{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);}
.m2f_c00133{transform:matrix(0.213726,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213726,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213726,0.001924,-0.002250,0.249990,0,0);}
.m39_c00133{transform:matrix(0.214526,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214526,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214526,0.001931,-0.002250,0.249990,0,0);}
.m0_c00133{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);}
.ma3_c00133{transform:matrix(0.216186,0.001946,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216186,0.001946,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216186,0.001946,-0.002250,0.249990,0,0);}
.mea_c00133{transform:matrix(0.217032,0.003473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217032,0.003473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217032,0.003473,-0.003999,0.249968,0,0);}
.me9_c00133{transform:matrix(0.217202,0.003475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217202,0.003475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217202,0.003475,-0.003999,0.249968,0,0);}
.mf5_c00133{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);}
.m130_c00133{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);}
.m93_c00133{transform:matrix(0.218606,0.001967,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218606,0.001967,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218606,0.001967,-0.002250,0.249990,0,0);}
.m2e_c00133{transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);}
.me8_c00133{transform:matrix(0.219812,0.003517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219812,0.003517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219812,0.003517,-0.003999,0.249968,0,0);}
.m11f_c00133{transform:matrix(0.222037,0.003553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222037,0.003553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222037,0.003553,-0.003999,0.249968,0,0);}
.m26_c00133{transform:matrix(0.223071,0.002008,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223071,0.002008,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223071,0.002008,-0.002250,0.249990,0,0);}
.mf4_c00133{transform:matrix(0.224846,0.003598,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224846,0.003598,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224846,0.003598,-0.003999,0.249968,0,0);}
.mc1_c00133{transform:matrix(0.226101,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226101,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226101,0.002035,-0.002250,0.249990,0,0);}
.m134_c00133{transform:matrix(0.226736,0.003628,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226736,0.003628,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226736,0.003628,-0.003999,0.249968,0,0);}
.m115_c00133{transform:matrix(0.229016,0.003664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229016,0.003664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229016,0.003664,-0.003999,0.249968,0,0);}
.m76_c00133{transform:matrix(0.229206,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229206,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229206,0.002063,-0.002250,0.249990,0,0);}
.m12d_c00133{transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);}
.m106_c00133{transform:matrix(0.230525,0.003688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230525,0.003688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230525,0.003688,-0.003999,0.249968,0,0);}
.me7_c00133{transform:matrix(0.230980,0.003696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230980,0.003696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230980,0.003696,-0.003999,0.249968,0,0);}
.mae_c00133{transform:matrix(0.231741,0.002086,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231741,0.002086,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231741,0.002086,-0.002250,0.249990,0,0);}
.m5d_c00133{transform:matrix(0.232081,0.002089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232081,0.002089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232081,0.002089,-0.002250,0.249990,0,0);}
.m12a_c00133{transform:matrix(0.233080,0.003729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233080,0.003729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233080,0.003729,-0.003999,0.249968,0,0);}
.m96_c00133{transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);}
.m55_c00133{transform:matrix(0.235090,0.002116,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235090,0.002116,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235090,0.002116,-0.002250,0.249990,0,0);}
.md2_c00133{transform:matrix(0.236897,0.001895,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236897,0.001895,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236897,0.001895,-0.002000,0.249992,0,0);}
.m99_c00133{transform:matrix(0.238505,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238505,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238505,0.002147,-0.002250,0.249990,0,0);}
.m8a_c00133{transform:matrix(0.242990,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242990,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242990,0.002187,-0.002250,0.249990,0,0);}
.m3f_c00133{transform:matrix(0.245045,0.002205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245045,0.002205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245045,0.002205,-0.002250,0.249990,0,0);}
.md4_c00133{transform:matrix(0.245312,0.001962,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245312,0.001962,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245312,0.001962,-0.002000,0.249992,0,0);}
.m4a_c00133{transform:matrix(0.245410,0.002209,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245410,0.002209,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245410,0.002209,-0.002250,0.249990,0,0);}
.mdd_c00133{transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);}
.m94_c00133{transform:matrix(0.248010,0.002232,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248010,0.002232,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248010,0.002232,-0.002250,0.249990,0,0);}
.m52_c00133{transform:matrix(0.249260,0.002243,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249260,0.002243,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249260,0.002243,-0.002250,0.249990,0,0);}
.m4b_c00133{transform:matrix(0.249995,0.002250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249995,0.002250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249995,0.002250,-0.002250,0.249990,0,0);}
.m35_c00133{transform:matrix(0.250605,0.002255,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250605,0.002255,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250605,0.002255,-0.002250,0.249990,0,0);}
.mf8_c00133{transform:matrix(0.251813,0.004029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251813,0.004029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251813,0.004029,-0.003999,0.249968,0,0);}
.m86_c00133{transform:matrix(0.255130,0.002296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255130,0.002296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255130,0.002296,-0.002250,0.249990,0,0);}
.m126_c00133{transform:matrix(0.255957,0.004095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255957,0.004095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255957,0.004095,-0.003999,0.249968,0,0);}
.m68_c00133{transform:matrix(0.257485,0.002317,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257485,0.002317,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257485,0.002317,-0.002250,0.249990,0,0);}
.ma0_c00133{transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);}
.m119_c00133{transform:matrix(0.259557,0.004153,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259557,0.004153,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259557,0.004153,-0.003999,0.249968,0,0);}
.m10d_c00133{transform:matrix(0.259722,0.004156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259722,0.004156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259722,0.004156,-0.003999,0.249968,0,0);}
.m53_c00133{transform:matrix(0.260314,0.002343,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260314,0.002343,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260314,0.002343,-0.002250,0.249990,0,0);}
.m54_c00133{transform:matrix(0.260764,0.002347,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260764,0.002347,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260764,0.002347,-0.002250,0.249990,0,0);}
.m8b_c00133{transform:matrix(0.262879,0.002366,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262879,0.002366,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262879,0.002366,-0.002250,0.249990,0,0);}
.mf3_c00133{transform:matrix(0.263666,0.004219,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263666,0.004219,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263666,0.004219,-0.003999,0.249968,0,0);}
.m90_c00133{transform:matrix(0.264269,0.002378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264269,0.002378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264269,0.002378,-0.002250,0.249990,0,0);}
.m2b_c00133{transform:matrix(0.264589,0.002381,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264589,0.002381,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264589,0.002381,-0.002250,0.249990,0,0);}
.m12b_c00133{transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);}
.m51_c00133{transform:matrix(0.266169,0.002396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266169,0.002396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266169,0.002396,-0.002250,0.249990,0,0);}
.m74_c00133{transform:matrix(0.266519,0.002399,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266519,0.002399,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266519,0.002399,-0.002250,0.249990,0,0);}
.m139_c00133{transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266610,0.000000,0.000000,0.250000,0,0);}
.md7_c00133{transform:matrix(0.268211,0.002146,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268211,0.002146,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268211,0.002146,-0.002000,0.249992,0,0);}
.m4c_c00133{transform:matrix(0.268304,0.002415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268304,0.002415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268304,0.002415,-0.002250,0.249990,0,0);}
.m97_c00133{transform:matrix(0.269349,0.002424,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269349,0.002424,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269349,0.002424,-0.002250,0.249990,0,0);}
.m4e_c00133{transform:matrix(0.269964,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269964,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269964,0.002430,-0.002250,0.249990,0,0);}
.m4f_c00133{transform:matrix(0.270109,0.002431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270109,0.002431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270109,0.002431,-0.002250,0.249990,0,0);}
.m75_c00133{transform:matrix(0.270404,0.002434,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270404,0.002434,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270404,0.002434,-0.002250,0.249990,0,0);}
.mdb_c00133{transform:matrix(0.271041,0.002168,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271041,0.002168,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271041,0.002168,-0.002000,0.249992,0,0);}
.mc5_c00133{transform:matrix(0.271106,0.002169,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271106,0.002169,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271106,0.002169,-0.002000,0.249992,0,0);}
.mcb_c00133{transform:matrix(0.271626,0.002173,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271626,0.002173,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271626,0.002173,-0.002000,0.249992,0,0);}
.m4d_c00133{transform:matrix(0.282894,0.002546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282894,0.002546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282894,0.002546,-0.002250,0.249990,0,0);}
.mc7_c00133{transform:matrix(0.297650,0.002381,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297650,0.002381,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297650,0.002381,-0.002000,0.249992,0,0);}
.mc0_c00133{transform:matrix(0.298808,0.002689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298808,0.002689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298808,0.002689,-0.002250,0.249990,0,0);}
.mbc_c00133{transform:matrix(0.298968,0.002691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298968,0.002691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298968,0.002691,-0.002250,0.249990,0,0);}
.mbb_c00133{transform:matrix(0.308947,0.002781,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308947,0.002781,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308947,0.002781,-0.002250,0.249990,0,0);}
.m50_c00133{transform:matrix(0.308957,0.002781,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308957,0.002781,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308957,0.002781,-0.002250,0.249990,0,0);}
.mb9_c00133{transform:matrix(0.313747,0.002824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313747,0.002824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313747,0.002824,-0.002250,0.249990,0,0);}
.m8f_c00133{transform:matrix(0.314282,0.002829,-0.002250,0.249990,0,0);-ms-transform:matrix(0.314282,0.002829,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.314282,0.002829,-0.002250,0.249990,0,0);}
.mcf_c00133{transform:matrix(0.315125,0.002521,-0.002000,0.249992,0,0);-ms-transform:matrix(0.315125,0.002521,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.315125,0.002521,-0.002000,0.249992,0,0);}
.m127_c00133{transform:matrix(0.317054,0.005073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317054,0.005073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317054,0.005073,-0.003999,0.249968,0,0);}
.m92_c00133{transform:matrix(0.319432,0.002875,-0.002250,0.249990,0,0);-ms-transform:matrix(0.319432,0.002875,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.319432,0.002875,-0.002250,0.249990,0,0);}
.ma9_c00133{transform:matrix(0.322947,0.002907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.322947,0.002907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.322947,0.002907,-0.002250,0.249990,0,0);}
.md8_c00133{transform:matrix(0.327360,0.002619,-0.002000,0.249992,0,0);-ms-transform:matrix(0.327360,0.002619,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.327360,0.002619,-0.002000,0.249992,0,0);}
.m132_c00133{transform:matrix(0.331183,0.005299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.331183,0.005299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.331183,0.005299,-0.003999,0.249968,0,0);}
.m112_c00133{transform:matrix(0.337332,0.005397,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337332,0.005397,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337332,0.005397,-0.003999,0.249968,0,0);}
.m120_c00133{transform:matrix(0.339122,0.005426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.339122,0.005426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.339122,0.005426,-0.003999,0.249968,0,0);}
.md9_c00133{transform:matrix(0.339574,0.002717,-0.002000,0.249992,0,0);-ms-transform:matrix(0.339574,0.002717,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.339574,0.002717,-0.002000,0.249992,0,0);}
.m84_c00133{transform:matrix(0.341081,0.003070,-0.002250,0.249990,0,0);-ms-transform:matrix(0.341081,0.003070,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.341081,0.003070,-0.002250,0.249990,0,0);}
.m131_c00133{transform:matrix(0.345486,0.005528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.345486,0.005528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.345486,0.005528,-0.003999,0.249968,0,0);}
.m30_c00133{transform:matrix(0.346641,0.003120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.346641,0.003120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.346641,0.003120,-0.002250,0.249990,0,0);}
.mda_c00133{transform:matrix(0.350129,0.002801,-0.002000,0.249992,0,0);-ms-transform:matrix(0.350129,0.002801,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.350129,0.002801,-0.002000,0.249992,0,0);}
.m12e_c00133{transform:matrix(0.352870,0.005646,-0.003999,0.249968,0,0);-ms-transform:matrix(0.352870,0.005646,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.352870,0.005646,-0.003999,0.249968,0,0);}
.ma1_c00133{transform:matrix(0.354361,0.003189,-0.002250,0.249990,0,0);-ms-transform:matrix(0.354361,0.003189,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.354361,0.003189,-0.002250,0.249990,0,0);}
.me3_c00133{transform:matrix(0.365933,0.005855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.365933,0.005855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.365933,0.005855,-0.003999,0.249968,0,0);}
.m85_c00133{transform:matrix(0.383644,0.003453,-0.002250,0.249990,0,0);-ms-transform:matrix(0.383644,0.003453,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.383644,0.003453,-0.002250,0.249990,0,0);}
.mb6_c00133{transform:matrix(0.390084,0.003511,-0.002250,0.249990,0,0);-ms-transform:matrix(0.390084,0.003511,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.390084,0.003511,-0.002250,0.249990,0,0);}
.md5_c00133{transform:matrix(0.400072,0.003201,-0.002000,0.249992,0,0);-ms-transform:matrix(0.400072,0.003201,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.400072,0.003201,-0.002000,0.249992,0,0);}
.m138_c00133{transform:matrix(0.419075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419075,0.000000,0.000000,0.250000,0,0);}
.mc2_c00133{transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);}
.mca_c00133{transform:matrix(0.428416,0.003427,-0.002000,0.249992,0,0);-ms-transform:matrix(0.428416,0.003427,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.428416,0.003427,-0.002000,0.249992,0,0);}
.mc4_c00133{transform:matrix(0.454615,0.003637,-0.002000,0.249992,0,0);-ms-transform:matrix(0.454615,0.003637,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.454615,0.003637,-0.002000,0.249992,0,0);}
.mf_c00133{transform:matrix(0.470006,0.004230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.470006,0.004230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.470006,0.004230,-0.002250,0.249990,0,0);}
.mb4_c00133{transform:matrix(0.471216,0.004241,-0.002250,0.249990,0,0);-ms-transform:matrix(0.471216,0.004241,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.471216,0.004241,-0.002250,0.249990,0,0);}
.mc3_c00133{transform:matrix(0.531375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531375,0.000000,0.000000,0.250000,0,0);}
.mc6_c00133{transform:matrix(0.564482,0.004516,-0.002000,0.249992,0,0);-ms-transform:matrix(0.564482,0.004516,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.564482,0.004516,-0.002000,0.249992,0,0);}
.mba_c00133{transform:matrix(0.631739,0.005686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.631739,0.005686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.631739,0.005686,-0.002250,0.249990,0,0);}
.m137_c00133{transform:matrix(0.673990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673990,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;}
.fsa_c00133{font-size:16.800000px;}
.fsc_c00133{font-size:49.351579px;}
.fsd_c00133{font-size:50.401613px;}
.fs10_c00133{font-size:51.456585px;}
.fse_c00133{font-size:52.501680px;}
.fs6_c00133{font-size:52.502126px;}
.fs13_c00133{font-size:52.506720px;}
.fs12_c00133{font-size:53.556854px;}
.fsf_c00133{font-size:55.657123px;}
.fs11_c00133{font-size:58.807526px;}
.fs15_c00133{font-size:64.050000px;}
.fsb_c00133{font-size:66.150000px;}
.fs5_c00133{font-size:67.202722px;}
.fs8_c00133{font-size:68.252764px;}
.fs4_c00133{font-size:69.302807px;}
.fs1_c00133{font-size:70.350000px;}
.fs3_c00133{font-size:70.352849px;}
.fs9_c00133{font-size:71.402892px;}
.fs7_c00133{font-size:72.452934px;}
.fs2_c00133{font-size:73.502977px;}
.fs0_c00133{font-size:80.850000px;}
.fs14_c00133{font-size:170.100000px;}
.y0_c00133{bottom:0.000000px;}
.y136_c00133{bottom:98.557500px;}
.y135_c00133{bottom:104.818500px;}
.y134_c00133{bottom:155.143260px;}
.y133_c00133{bottom:155.774496px;}
.y132_c00133{bottom:156.503544px;}
.y131_c00133{bottom:157.008564px;}
.y130_c00133{bottom:157.362876px;}
.y12f_c00133{bottom:157.417548px;}
.y12e_c00133{bottom:158.155728px;}
.y12d_c00133{bottom:158.874324px;}
.y12c_c00133{bottom:159.128448px;}
.y12b_c00133{bottom:159.793380px;}
.y12a_c00133{bottom:160.132368px;}
.y129_c00133{bottom:160.876812px;}
.y128_c00133{bottom:161.479824px;}
.y127_c00133{bottom:162.427464px;}
.y126_c00133{bottom:163.341720px;}
.y125_c00133{bottom:173.750592px;}
.y124_c00133{bottom:174.101688px;}
.y123_c00133{bottom:174.769200px;}
.y122_c00133{bottom:175.337208px;}
.y121_c00133{bottom:175.837440px;}
.y120_c00133{bottom:176.562120px;}
.y11f_c00133{bottom:177.231816px;}
.y11e_c00133{bottom:177.438840px;}
.y11d_c00133{bottom:178.325796px;}
.y11c_c00133{bottom:178.839132px;}
.y11b_c00133{bottom:179.748228px;}
.y11a_c00133{bottom:180.202332px;}
.y119_c00133{bottom:180.676320px;}
.y118_c00133{bottom:181.434384px;}
.y117_c00133{bottom:191.562048px;}
.y116_c00133{bottom:191.668992px;}
.y115_c00133{bottom:192.434160px;}
.y114_c00133{bottom:192.814896px;}
.y113_c00133{bottom:194.024136px;}
.y112_c00133{bottom:194.339592px;}
.y111_c00133{bottom:194.741304px;}
.y110_c00133{bottom:194.979072px;}
.y10f_c00133{bottom:195.341352px;}
.y10e_c00133{bottom:195.912552px;}
.y10d_c00133{bottom:196.353336px;}
.y10c_c00133{bottom:196.581984px;}
.y10b_c00133{bottom:196.819560px;}
.y10a_c00133{bottom:197.744208px;}
.y109_c00133{bottom:198.716424px;}
.y108_c00133{bottom:209.893104px;}
.y107_c00133{bottom:210.173928px;}
.y106_c00133{bottom:210.658200px;}
.y105_c00133{bottom:210.904128px;}
.y104_c00133{bottom:211.163232px;}
.y103_c00133{bottom:212.053872px;}
.y102_c00133{bottom:212.577072px;}
.y101_c00133{bottom:213.203328px;}
.y100_c00133{bottom:213.269664px;}
.yff_c00133{bottom:213.747768px;}
.yfe_c00133{bottom:214.050336px;}
.yfd_c00133{bottom:214.655136px;}
.yfc_c00133{bottom:215.428584px;}
.yfb_c00133{bottom:215.817408px;}
.yfa_c00133{bottom:216.231384px;}
.yf9_c00133{bottom:216.416976px;}
.yf8_c00133{bottom:217.078200px;}
.yf7_c00133{bottom:227.272188px;}
.yf6_c00133{bottom:228.041268px;}
.yf5_c00133{bottom:228.360084px;}
.yf4_c00133{bottom:228.861900px;}
.yf3_c00133{bottom:229.964460px;}
.yf2_c00133{bottom:230.378364px;}
.yf1_c00133{bottom:230.663508px;}
.yf0_c00133{bottom:230.867940px;}
.yef_c00133{bottom:231.372252px;}
.yee_c00133{bottom:231.566772px;}
.yed_c00133{bottom:232.093812px;}
.yec_c00133{bottom:232.439580px;}
.yeb_c00133{bottom:232.793916px;}
.yea_c00133{bottom:233.463492px;}
.ye9_c00133{bottom:234.042444px;}
.ye8_c00133{bottom:234.629676px;}
.ye7_c00133{bottom:245.591796px;}
.ye6_c00133{bottom:246.490236px;}
.ye5_c00133{bottom:246.782652px;}
.ye4_c00133{bottom:247.517100px;}
.ye3_c00133{bottom:247.884732px;}
.ye2_c00133{bottom:248.480604px;}
.ye1_c00133{bottom:248.684436px;}
.ye0_c00133{bottom:249.478932px;}
.ydf_c00133{bottom:249.984180px;}
.yde_c00133{bottom:250.939956px;}
.ydd_c00133{bottom:251.755572px;}
.ydc_c00133{bottom:252.040716px;}
.ydb_c00133{bottom:252.226596px;}
.yda_c00133{bottom:252.445500px;}
.yd4_c00133{bottom:310.388556px;}
.yd8_c00133{bottom:310.388736px;}
.yd5_c00133{bottom:310.389036px;}
.yd6_c00133{bottom:310.389096px;}
.yd7_c00133{bottom:310.389216px;}
.yd9_c00133{bottom:310.389408px;}
.ycc_c00133{bottom:329.956164px;}
.yce_c00133{bottom:329.956200px;}
.yd0_c00133{bottom:329.956404px;}
.ycd_c00133{bottom:329.956428px;}
.yd1_c00133{bottom:329.956524px;}
.ycf_c00133{bottom:329.956632px;}
.yd2_c00133{bottom:329.957076px;}
.yd3_c00133{bottom:329.957508px;}
.ycb_c00133{bottom:346.498248px;}
.yca_c00133{bottom:346.742148px;}
.yc9_c00133{bottom:347.204616px;}
.yc8_c00133{bottom:347.207808px;}
.yc7_c00133{bottom:347.394000px;}
.yc6_c00133{bottom:347.740248px;}
.yc5_c00133{bottom:348.059796px;}
.yc4_c00133{bottom:348.870948px;}
.yc3_c00133{bottom:349.111500px;}
.yc2_c00133{bottom:438.948000px;}
.yc1_c00133{bottom:460.080000px;}
.yc0_c00133{bottom:479.051725px;}
.ybf_c00133{bottom:479.441001px;}
.ybe_c00133{bottom:479.943300px;}
.ybd_c00133{bottom:480.459075px;}
.ybc_c00133{bottom:480.871185px;}
.ybb_c00133{bottom:481.136458px;}
.yba_c00133{bottom:481.464807px;}
.yb9_c00133{bottom:482.274766px;}
.yb8_c00133{bottom:482.578944px;}
.yb7_c00133{bottom:482.718366px;}
.yb6_c00133{bottom:482.908737px;}
.yb5_c00133{bottom:482.930545px;}
.yb4_c00133{bottom:483.316107px;}
.yb3_c00133{bottom:483.460890px;}
.yb2_c00133{bottom:483.826615px;}
.yb1_c00133{bottom:501.564826px;}
.yb0_c00133{bottom:501.914563px;}
.yaf_c00133{bottom:502.417267px;}
.yae_c00133{bottom:503.197735px;}
.yad_c00133{bottom:503.599528px;}
.yac_c00133{bottom:504.001821px;}
.yab_c00133{bottom:504.215958px;}
.yaa_c00133{bottom:504.605098px;}
.ya9_c00133{bottom:505.107748px;}
.ya8_c00133{bottom:505.389699px;}
.ya7_c00133{bottom:505.999593px;}
.ya6_c00133{bottom:506.397199px;}
.ya5_c00133{bottom:506.689588px;}
.ya4_c00133{bottom:507.048859px;}
.ya3_c00133{bottom:524.316486px;}
.ya2_c00133{bottom:524.604844px;}
.ya1_c00133{bottom:525.410766px;}
.ya0_c00133{bottom:525.454608px;}
.y9f_c00133{bottom:526.155264px;}
.y9e_c00133{bottom:526.463659px;}
.y9d_c00133{bottom:527.022607px;}
.y9c_c00133{bottom:527.485242px;}
.y9b_c00133{bottom:528.254557px;}
.y9a_c00133{bottom:528.669784px;}
.y99_c00133{bottom:529.460097px;}
.y98_c00133{bottom:547.985175px;}
.y97_c00133{bottom:548.116368px;}
.y96_c00133{bottom:548.451654px;}
.y95_c00133{bottom:548.804031px;}
.y94_c00133{bottom:549.438733px;}
.y93_c00133{bottom:549.834216px;}
.y92_c00133{bottom:550.194369px;}
.y91_c00133{bottom:550.554171px;}
.y90_c00133{bottom:550.753201px;}
.y8f_c00133{bottom:551.287720px;}
.y8e_c00133{bottom:551.559503px;}
.y8d_c00133{bottom:551.742144px;}
.y8c_c00133{bottom:552.140691px;}
.y8b_c00133{bottom:570.901417px;}
.y8a_c00133{bottom:571.119658px;}
.y89_c00133{bottom:571.437760px;}
.y88_c00133{bottom:571.777729px;}
.y87_c00133{bottom:572.220231px;}
.y86_c00133{bottom:572.731722px;}
.y85_c00133{bottom:572.905081px;}
.y84_c00133{bottom:573.034422px;}
.y83_c00133{bottom:573.859128px;}
.y82_c00133{bottom:574.282975px;}
.y81_c00133{bottom:593.865321px;}
.y80_c00133{bottom:594.469101px;}
.y7f_c00133{bottom:594.693696px;}
.y7e_c00133{bottom:594.963291px;}
.y7d_c00133{bottom:595.528566px;}
.y7c_c00133{bottom:595.958193px;}
.y7b_c00133{bottom:596.393220px;}
.y7a_c00133{bottom:596.733954px;}
.y79_c00133{bottom:597.262680px;}
.y78_c00133{bottom:597.626689px;}
.y77_c00133{bottom:597.928525px;}
.y76_c00133{bottom:598.315366px;}
.y75_c00133{bottom:616.827918px;}
.y74_c00133{bottom:617.082364px;}
.y73_c00133{bottom:617.654065px;}
.y72_c00133{bottom:617.985969px;}
.y71_c00133{bottom:618.825712px;}
.y70_c00133{bottom:619.446139px;}
.y6f_c00133{bottom:619.656666px;}
.y6e_c00133{bottom:619.883205px;}
.y6d_c00133{bottom:620.230891px;}
.y6c_c00133{bottom:620.428186px;}
.y6b_c00133{bottom:620.700184px;}
.y6a_c00133{bottom:621.265581px;}
.y69_c00133{bottom:639.029938px;}
.y68_c00133{bottom:639.807765px;}
.y67_c00133{bottom:640.169318px;}
.y66_c00133{bottom:640.858035px;}
.y65_c00133{bottom:641.624668px;}
.y64_c00133{bottom:642.050635px;}
.y63_c00133{bottom:642.366284px;}
.y62_c00133{bottom:643.373254px;}
.y61_c00133{bottom:643.675225px;}
.y60_c00133{bottom:661.402075px;}
.y5f_c00133{bottom:661.998451px;}
.y5e_c00133{bottom:662.242806px;}
.y5d_c00133{bottom:662.685484px;}
.y5c_c00133{bottom:663.096283px;}
.y5b_c00133{bottom:663.511254px;}
.y5a_c00133{bottom:663.971715px;}
.y59_c00133{bottom:664.919628px;}
.y58_c00133{bottom:665.157703px;}
.y57_c00133{bottom:665.650948px;}
.y56_c00133{bottom:665.974143px;}
.y55_c00133{bottom:666.357018px;}
.y54_c00133{bottom:685.620153px;}
.y53_c00133{bottom:685.780270px;}
.y52_c00133{bottom:685.899049px;}
.y51_c00133{bottom:686.084838px;}
.y50_c00133{bottom:686.444335px;}
.y4f_c00133{bottom:686.722086px;}
.y4e_c00133{bottom:686.992927px;}
.y4d_c00133{bottom:687.565744px;}
.y4c_c00133{bottom:687.807798px;}
.y4b_c00133{bottom:688.076857px;}
.y4a_c00133{bottom:688.242171px;}
.y49_c00133{bottom:688.472847px;}
.y48_c00133{bottom:688.768183px;}
.y47_c00133{bottom:708.123162px;}
.y46_c00133{bottom:708.614022px;}
.y45_c00133{bottom:708.791250px;}
.y44_c00133{bottom:709.141237px;}
.y43_c00133{bottom:709.697680px;}
.y42_c00133{bottom:709.959972px;}
.y41_c00133{bottom:710.356575px;}
.y40_c00133{bottom:710.825106px;}
.y3f_c00133{bottom:711.114195px;}
.y3e_c00133{bottom:711.377040px;}
.y3d_c00133{bottom:711.872760px;}
.y3c_c00133{bottom:712.258900px;}
.y3b_c00133{bottom:730.104488px;}
.y3a_c00133{bottom:730.304239px;}
.y39_c00133{bottom:730.803249px;}
.y38_c00133{bottom:731.329572px;}
.y37_c00133{bottom:731.599167px;}
.y36_c00133{bottom:732.121197px;}
.y35_c00133{bottom:732.487664px;}
.y34_c00133{bottom:732.766831px;}
.y33_c00133{bottom:733.587700px;}
.y32_c00133{bottom:734.033556px;}
.y31_c00133{bottom:734.670225px;}
.y30_c00133{bottom:752.682507px;}
.y2f_c00133{bottom:752.980306px;}
.y2e_c00133{bottom:753.960099px;}
.y2d_c00133{bottom:754.227534px;}
.y2c_c00133{bottom:754.497277px;}
.y2b_c00133{bottom:754.921179px;}
.y2a_c00133{bottom:755.250895px;}
.y29_c00133{bottom:755.930675px;}
.y28_c00133{bottom:756.586800px;}
.y27_c00133{bottom:756.788536px;}
.y26_c00133{bottom:757.349544px;}
.y25_c00133{bottom:776.517666px;}
.y24_c00133{bottom:776.731209px;}
.y23_c00133{bottom:777.307992px;}
.y22_c00133{bottom:777.575988px;}
.y21_c00133{bottom:777.813571px;}
.y20_c00133{bottom:778.332083px;}
.y1f_c00133{bottom:778.554210px;}
.y1e_c00133{bottom:778.867276px;}
.y1d_c00133{bottom:779.270970px;}
.y1c_c00133{bottom:779.781491px;}
.y1b_c00133{bottom:780.029454px;}
.y1a_c00133{bottom:797.627104px;}
.y19_c00133{bottom:798.239972px;}
.y18_c00133{bottom:798.558130px;}
.y17_c00133{bottom:799.184890px;}
.y16_c00133{bottom:799.459372px;}
.y15_c00133{bottom:800.232825px;}
.y14_c00133{bottom:800.672104px;}
.y13_c00133{bottom:801.093576px;}
.y12_c00133{bottom:801.720336px;}
.y11_c00133{bottom:802.125363px;}
.y10_c00133{bottom:802.349566px;}
.yf_c00133{bottom:802.981038px;}
.ye_c00133{bottom:820.742127px;}
.yd_c00133{bottom:821.056151px;}
.yc_c00133{bottom:821.571175px;}
.yb_c00133{bottom:821.933232px;}
.ya_c00133{bottom:822.438766px;}
.y9_c00133{bottom:822.642900px;}
.y8_c00133{bottom:823.342780px;}
.y7_c00133{bottom:823.840930px;}
.y6_c00133{bottom:824.348868px;}
.y5_c00133{bottom:824.854335px;}
.y4_c00133{bottom:825.282082px;}
.y3_c00133{bottom:825.391500px;}
.y2_c00133{bottom:854.382000px;}
.y1_c00133{bottom:873.990000px;}
.hc_c00133{height:16.800000px;}
.he_c00133{height:49.351579px;}
.hf_c00133{height:50.401613px;}
.h12_c00133{height:51.456585px;}
.h10_c00133{height:52.501680px;}
.h8_c00133{height:52.502126px;}
.h15_c00133{height:52.506720px;}
.h14_c00133{height:53.556854px;}
.h11_c00133{height:55.657123px;}
.h13_c00133{height:58.807526px;}
.h17_c00133{height:64.050000px;}
.hd_c00133{height:66.150000px;}
.h7_c00133{height:67.202722px;}
.ha_c00133{height:68.252764px;}
.h6_c00133{height:69.302807px;}
.h3_c00133{height:70.350000px;}
.h5_c00133{height:70.352849px;}
.hb_c00133{height:71.402892px;}
.h9_c00133{height:72.452934px;}
.h4_c00133{height:73.502977px;}
.h2_c00133{height:80.850000px;}
.h16_c00133{height:170.100000px;}
.h0_c00133{height:1008.450000px;}
.h1_c00133{height:1008.750000px;}
.w0_c00133{width:676.890000px;}
.w1_c00133{width:677.250000px;}
.x0_c00133{left:0.000000px;}
.x5_c00133{left:120.556500px;}
.xb1_c00133{left:127.830816px;}
.x57_c00133{left:129.211217px;}
.x11_c00133{left:130.573634px;}
.x4b_c00133{left:131.624202px;}
.x6_c00133{left:132.714000px;}
.x1_c00133{left:136.080000px;}
.x97_c00133{left:142.672500px;}
.x98_c00133{left:154.290000px;}
.x1d_c00133{left:161.094827px;}
.x52_c00133{left:162.171339px;}
.x4c_c00133{left:166.498581px;}
.x61_c00133{left:170.844072px;}
.x83_c00133{left:172.859307px;}
.x42_c00133{left:174.345689px;}
.x39_c00133{left:175.399356px;}
.xb5_c00133{left:178.847340px;}
.x7_c00133{left:180.241500px;}
.xa5_c00133{left:181.838748px;}
.x69_c00133{left:183.505991px;}
.x58_c00133{left:185.699204px;}
.x27_c00133{left:186.996005px;}
.xad_c00133{left:189.118392px;}
.x12_c00133{left:193.736567px;}
.x6f_c00133{left:194.875731px;}
.x30_c00133{left:196.456493px;}
.x62_c00133{left:201.047802px;}
.x9c_c00133{left:202.081572px;}
.x84_c00133{left:205.031943px;}
.x28_c00133{left:207.244329px;}
.x59_c00133{left:212.920961px;}
.x13_c00133{left:216.147864px;}
.x7c_c00133{left:218.013099px;}
.x85_c00133{left:222.606957px;}
.x1e_c00133{left:224.819894px;}
.x8c_c00133{left:226.416000px;}
.x3a_c00133{left:230.479356px;}
.xb6_c00133{left:231.510660px;}
.x5a_c00133{left:232.675785px;}
.x86_c00133{left:234.264647px;}
.x8_c00133{left:236.404500px;}
.x63_c00133{left:237.492978px;}
.x31_c00133{left:240.995588px;}
.x9d_c00133{left:243.930072px;}
.xae_c00133{left:246.908892px;}
.x14_c00133{left:256.650500px;}
.x3b_c00133{left:259.684356px;}
.x4d_c00133{left:262.331853px;}
.xb7_c00133{left:264.979080px;}
.x9e_c00133{left:266.076072px;}
.x5b_c00133{left:267.473975px;}
.x43_c00133{left:269.408403px;}
.x29_c00133{left:272.813235px;}
.x1f_c00133{left:275.341853px;}
.xa6_c00133{left:280.354248px;}
.x99_c00133{left:282.823500px;}
.x70_c00133{left:284.464731px;}
.x6a_c00133{left:286.640922px;}
.x9f_c00133{left:287.686572px;}
.x5c_c00133{left:290.144772px;}
.x3c_c00133{left:291.805356px;}
.x9_c00133{left:292.842000px;}
.x53_c00133{left:294.461151px;}
.x6b_c00133{left:302.845571px;}
.x44_c00133{left:303.970524px;}
.x71_c00133{left:306.579231px;}
.x76_c00133{left:308.252763px;}
.x5d_c00133{left:311.203083px;}
.x20_c00133{left:314.460704px;}
.xbb_c00133{left:316.440000px;}
.xa7_c00133{left:318.154248px;}
.x15_c00133{left:319.289933px;}
.xa0_c00133{left:320.626572px;}
.x32_c00133{left:323.035845px;}
.x64_c00133{left:324.432195px;}
.x87_c00133{left:327.055136px;}
.xa1_c00133{left:332.784072px;}
.x7d_c00133{left:334.120454px;}
.x54_c00133{left:337.123773px;}
.xaf_c00133{left:339.296892px;}
.x2a_c00133{left:340.843628px;}
.x21_c00133{left:342.308460px;}
.x3d_c00133{left:343.864356px;}
.x72_c00133{left:346.557231px;}
.xa_c00133{left:348.192000px;}
.x33_c00133{left:350.887589px;}
.x88_c00133{left:354.370893px;}
.x8d_c00133{left:357.879000px;}
.x16_c00133{left:361.453055px;}
.xb2_c00133{left:362.736024px;}
.x9a_c00133{left:364.057500px;}
.x7e_c00133{left:366.524076px;}
.x65_c00133{left:367.934804px;}
.xa8_c00133{left:371.092248px;}
.x2b_c00133{left:373.811831px;}
.xb3_c00133{left:374.924832px;}
.x89_c00133{left:376.511799px;}
.x7f_c00133{left:384.316590px;}
.x45_c00133{left:385.784996px;}
.x34_c00133{left:387.605765px;}
.x4e_c00133{left:390.315545px;}
.xa2_c00133{left:394.902072px;}
.x8e_c00133{left:397.822500px;}
.x77_c00133{left:401.093589px;}
.x17_c00133{left:405.428163px;}
.x22_c00133{left:407.088041px;}
.xa9_c00133{left:410.233248px;}
.x2_c00133{left:411.480000px;}
.x55_c00133{left:413.804585px;}
.x2c_c00133{left:416.244953px;}
.x80_c00133{left:417.848186px;}
.xa3_c00133{left:420.771072px;}
.x46_c00133{left:424.379184px;}
.xb_c00133{left:425.956500px;}
.x4f_c00133{left:428.089370px;}
.x78_c00133{left:429.192590px;}
.x73_c00133{left:430.516731px;}
.x23_c00133{left:436.819811px;}
.x35_c00133{left:439.775292px;}
.x8f_c00133{left:441.103500px;}
.x2d_c00133{left:443.216210px;}
.xc_c00133{left:448.638000px;}
.x81_c00133{left:451.324281px;}
.x8a_c00133{left:453.774707px;}
.x91_c00133{left:455.226912px;}
.x5e_c00133{left:457.276274px;}
.x92_c00133{left:460.087224px;}
.x47_c00133{left:464.074400px;}
.x50_c00133{left:465.399695px;}
.x36_c00133{left:466.730049px;}
.x24_c00133{left:470.264108px;}
.x3e_c00133{left:478.901856px;}
.xb8_c00133{left:479.925216px;}
.x18_c00133{left:482.699961px;}
.x6c_c00133{left:486.216218px;}
.x5f_c00133{left:490.487477px;}
.x79_c00133{left:492.875442px;}
.x66_c00133{left:494.266656px;}
.x8b_c00133{left:495.584573px;}
.x7a_c00133{left:496.913375px;}
.xaa_c00133{left:498.598248px;}
.x74_c00133{left:501.039231px;}
.x93_c00133{left:502.208424px;}
.xd_c00133{left:504.808500px;}
.x94_c00133{left:506.799684px;}
.xb9_c00133{left:508.019328px;}
.x19_c00133{left:510.197718px;}
.x48_c00133{left:515.352818px;}
.x67_c00133{left:516.721454px;}
.x3f_c00133{left:517.789356px;}
.x37_c00133{left:519.376577px;}
.xa4_c00133{left:521.044572px;}
.x90_c00133{left:522.585000px;}
.x6d_c00133{left:525.894569px;}
.x51_c00133{left:527.735561px;}
.xab_c00133{left:530.162748px;}
.x40_c00133{left:537.481356px;}
.x95_c00133{left:538.661724px;}
.x75_c00133{left:540.192231px;}
.x25_c00133{left:542.351756px;}
.xe_c00133{left:545.037000px;}
.x60_c00133{left:547.675964px;}
.x6e_c00133{left:553.143812px;}
.x9b_c00133{left:557.347500px;}
.x49_c00133{left:558.861101px;}
.xac_c00133{left:560.429748px;}
.x2e_c00133{left:567.962589px;}
.x26_c00133{left:569.078999px;}
.x7b_c00133{left:570.125552px;}
.x1a_c00133{left:572.837151px;}
.xb0_c00133{left:575.503392px;}
.x68_c00133{left:577.140914px;}
.xb4_c00133{left:579.748068px;}
.x4a_c00133{left:581.819019px;}
.xba_c00133{left:583.565904px;}
.x82_c00133{left:587.421609px;}
.x38_c00133{left:589.349456px;}
.x41_c00133{left:592.021356px;}
.x96_c00133{left:593.203716px;}
.x56_c00133{left:596.591438px;}
.x2f_c00133{left:597.717819px;}
.xf_c00133{left:602.262000px;}
.x1b_c00133{left:604.687868px;}
.x10_c00133{left:637.153500px;}
.x3_c00133{left:653.130000px;}
.x1c_c00133{left:665.950314px;}
.x4_c00133{left:673.380000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fsa_c00133{font-size:14.933333pt;}
.fsc_c00133{font-size:43.868070pt;}
.fsd_c00133{font-size:44.801434pt;}
.fs10_c00133{font-size:45.739187pt;}
.fse_c00133{font-size:46.668160pt;}
.fs6_c00133{font-size:46.668557pt;}
.fs13_c00133{font-size:46.672640pt;}
.fs12_c00133{font-size:47.606092pt;}
.fsf_c00133{font-size:49.472998pt;}
.fs11_c00133{font-size:52.273356pt;}
.fs15_c00133{font-size:56.933333pt;}
.fsb_c00133{font-size:58.800000pt;}
.fs5_c00133{font-size:59.735752pt;}
.fs8_c00133{font-size:60.669124pt;}
.fs4_c00133{font-size:61.602495pt;}
.fs1_c00133{font-size:62.533333pt;}
.fs3_c00133{font-size:62.535866pt;}
.fs9_c00133{font-size:63.469237pt;}
.fs7_c00133{font-size:64.402608pt;}
.fs2_c00133{font-size:65.335979pt;}
.fs0_c00133{font-size:71.866667pt;}
.fs14_c00133{font-size:151.200000pt;}
.y0_c00133{bottom:0.000000pt;}
.y136_c00133{bottom:87.606667pt;}
.y135_c00133{bottom:93.172000pt;}
.y134_c00133{bottom:137.905120pt;}
.y133_c00133{bottom:138.466219pt;}
.y132_c00133{bottom:139.114261pt;}
.y131_c00133{bottom:139.563168pt;}
.y130_c00133{bottom:139.878112pt;}
.y12f_c00133{bottom:139.926709pt;}
.y12e_c00133{bottom:140.582869pt;}
.y12d_c00133{bottom:141.221621pt;}
.y12c_c00133{bottom:141.447509pt;}
.y12b_c00133{bottom:142.038560pt;}
.y12a_c00133{bottom:142.339883pt;}
.y129_c00133{bottom:143.001611pt;}
.y128_c00133{bottom:143.537621pt;}
.y127_c00133{bottom:144.379968pt;}
.y126_c00133{bottom:145.192640pt;}
.y125_c00133{bottom:154.444971pt;}
.y124_c00133{bottom:154.757056pt;}
.y123_c00133{bottom:155.350400pt;}
.y122_c00133{bottom:155.855296pt;}
.y121_c00133{bottom:156.299947pt;}
.y120_c00133{bottom:156.944107pt;}
.y11f_c00133{bottom:157.539392pt;}
.y11e_c00133{bottom:157.723413pt;}
.y11d_c00133{bottom:158.511819pt;}
.y11c_c00133{bottom:158.968117pt;}
.y11b_c00133{bottom:159.776203pt;}
.y11a_c00133{bottom:160.179851pt;}
.y119_c00133{bottom:160.601173pt;}
.y118_c00133{bottom:161.275008pt;}
.y117_c00133{bottom:170.277376pt;}
.y116_c00133{bottom:170.372437pt;}
.y115_c00133{bottom:171.052587pt;}
.y114_c00133{bottom:171.391019pt;}
.y113_c00133{bottom:172.465899pt;}
.y112_c00133{bottom:172.746304pt;}
.y111_c00133{bottom:173.103381pt;}
.y110_c00133{bottom:173.314731pt;}
.y10f_c00133{bottom:173.636757pt;}
.y10e_c00133{bottom:174.144491pt;}
.y10d_c00133{bottom:174.536299pt;}
.y10c_c00133{bottom:174.739541pt;}
.y10b_c00133{bottom:174.950720pt;}
.y10a_c00133{bottom:175.772629pt;}
.y109_c00133{bottom:176.636821pt;}
.y108_c00133{bottom:186.571648pt;}
.y107_c00133{bottom:186.821269pt;}
.y106_c00133{bottom:187.251733pt;}
.y105_c00133{bottom:187.470336pt;}
.y104_c00133{bottom:187.700651pt;}
.y103_c00133{bottom:188.492331pt;}
.y102_c00133{bottom:188.957397pt;}
.y101_c00133{bottom:189.514069pt;}
.y100_c00133{bottom:189.573035pt;}
.yff_c00133{bottom:189.998016pt;}
.yfe_c00133{bottom:190.266965pt;}
.yfd_c00133{bottom:190.804565pt;}
.yfc_c00133{bottom:191.492075pt;}
.yfb_c00133{bottom:191.837696pt;}
.yfa_c00133{bottom:192.205675pt;}
.yf9_c00133{bottom:192.370645pt;}
.yf8_c00133{bottom:192.958400pt;}
.yf7_c00133{bottom:202.019723pt;}
.yf6_c00133{bottom:202.703349pt;}
.yf5_c00133{bottom:202.986741pt;}
.yf4_c00133{bottom:203.432800pt;}
.yf3_c00133{bottom:204.412853pt;}
.yf2_c00133{bottom:204.780768pt;}
.yf1_c00133{bottom:205.034229pt;}
.yf0_c00133{bottom:205.215947pt;}
.yef_c00133{bottom:205.664224pt;}
.yee_c00133{bottom:205.837131pt;}
.yed_c00133{bottom:206.305611pt;}
.yec_c00133{bottom:206.612960pt;}
.yeb_c00133{bottom:206.927925pt;}
.yea_c00133{bottom:207.523104pt;}
.ye9_c00133{bottom:208.037728pt;}
.ye8_c00133{bottom:208.559712pt;}
.ye7_c00133{bottom:218.303819pt;}
.ye6_c00133{bottom:219.102432pt;}
.ye5_c00133{bottom:219.362357pt;}
.ye4_c00133{bottom:220.015200pt;}
.ye3_c00133{bottom:220.341984pt;}
.ye2_c00133{bottom:220.871648pt;}
.ye1_c00133{bottom:221.052832pt;}
.ye0_c00133{bottom:221.759051pt;}
.ydf_c00133{bottom:222.208160pt;}
.yde_c00133{bottom:223.057739pt;}
.ydd_c00133{bottom:223.782731pt;}
.ydc_c00133{bottom:224.036192pt;}
.ydb_c00133{bottom:224.201419pt;}
.yda_c00133{bottom:224.396000pt;}
.yd4_c00133{bottom:275.900939pt;}
.yd8_c00133{bottom:275.901099pt;}
.yd5_c00133{bottom:275.901365pt;}
.yd6_c00133{bottom:275.901419pt;}
.yd7_c00133{bottom:275.901525pt;}
.yd9_c00133{bottom:275.901696pt;}
.ycc_c00133{bottom:293.294368pt;}
.yce_c00133{bottom:293.294400pt;}
.yd0_c00133{bottom:293.294581pt;}
.ycd_c00133{bottom:293.294603pt;}
.yd1_c00133{bottom:293.294688pt;}
.ycf_c00133{bottom:293.294784pt;}
.yd2_c00133{bottom:293.295179pt;}
.yd3_c00133{bottom:293.295563pt;}
.ycb_c00133{bottom:307.998443pt;}
.yca_c00133{bottom:308.215243pt;}
.yc9_c00133{bottom:308.626325pt;}
.yc8_c00133{bottom:308.629163pt;}
.yc7_c00133{bottom:308.794667pt;}
.yc6_c00133{bottom:309.102443pt;}
.yc5_c00133{bottom:309.386485pt;}
.yc4_c00133{bottom:310.107509pt;}
.yc3_c00133{bottom:310.321333pt;}
.yc2_c00133{bottom:390.176000pt;}
.yc1_c00133{bottom:408.960000pt;}
.yc0_c00133{bottom:425.823756pt;}
.ybf_c00133{bottom:426.169779pt;}
.ybe_c00133{bottom:426.616267pt;}
.ybd_c00133{bottom:427.074733pt;}
.ybc_c00133{bottom:427.441053pt;}
.ybb_c00133{bottom:427.676852pt;}
.yba_c00133{bottom:427.968717pt;}
.yb9_c00133{bottom:428.688681pt;}
.yb8_c00133{bottom:428.959061pt;}
.yb7_c00133{bottom:429.082992pt;}
.yb6_c00133{bottom:429.252211pt;}
.yb5_c00133{bottom:429.271596pt;}
.yb4_c00133{bottom:429.614317pt;}
.yb3_c00133{bottom:429.743013pt;}
.yb2_c00133{bottom:430.068103pt;}
.yb1_c00133{bottom:445.835401pt;}
.yb0_c00133{bottom:446.146279pt;}
.yaf_c00133{bottom:446.593127pt;}
.yae_c00133{bottom:447.286876pt;}
.yad_c00133{bottom:447.644025pt;}
.yac_c00133{bottom:448.001619pt;}
.yab_c00133{bottom:448.191963pt;}
.yaa_c00133{bottom:448.537865pt;}
.ya9_c00133{bottom:448.984665pt;}
.ya8_c00133{bottom:449.235288pt;}
.ya7_c00133{bottom:449.777416pt;}
.ya6_c00133{bottom:450.130844pt;}
.ya5_c00133{bottom:450.390745pt;}
.ya4_c00133{bottom:450.710097pt;}
.ya3_c00133{bottom:466.059099pt;}
.ya2_c00133{bottom:466.315417pt;}
.ya1_c00133{bottom:467.031792pt;}
.ya0_c00133{bottom:467.070763pt;}
.y9f_c00133{bottom:467.693568pt;}
.y9e_c00133{bottom:467.967697pt;}
.y9d_c00133{bottom:468.464540pt;}
.y9c_c00133{bottom:468.875771pt;}
.y9b_c00133{bottom:469.559607pt;}
.y9a_c00133{bottom:469.928697pt;}
.y99_c00133{bottom:470.631197pt;}
.y98_c00133{bottom:487.097933pt;}
.y97_c00133{bottom:487.214549pt;}
.y96_c00133{bottom:487.512581pt;}
.y95_c00133{bottom:487.825805pt;}
.y94_c00133{bottom:488.389985pt;}
.y93_c00133{bottom:488.741525pt;}
.y92_c00133{bottom:489.061661pt;}
.y91_c00133{bottom:489.381485pt;}
.y90_c00133{bottom:489.558401pt;}
.y8f_c00133{bottom:490.033529pt;}
.y8e_c00133{bottom:490.275113pt;}
.y8d_c00133{bottom:490.437461pt;}
.y8c_c00133{bottom:490.791725pt;}
.y8b_c00133{bottom:507.467927pt;}
.y8a_c00133{bottom:507.661919pt;}
.y89_c00133{bottom:507.944676pt;}
.y88_c00133{bottom:508.246871pt;}
.y87_c00133{bottom:508.640205pt;}
.y86_c00133{bottom:509.094864pt;}
.y85_c00133{bottom:509.248961pt;}
.y84_c00133{bottom:509.363931pt;}
.y83_c00133{bottom:510.097003pt;}
.y82_c00133{bottom:510.473756pt;}
.y81_c00133{bottom:527.880285pt;}
.y80_c00133{bottom:528.416979pt;}
.y7f_c00133{bottom:528.616619pt;}
.y7e_c00133{bottom:528.856259pt;}
.y7d_c00133{bottom:529.358725pt;}
.y7c_c00133{bottom:529.740616pt;}
.y7b_c00133{bottom:530.127307pt;}
.y7a_c00133{bottom:530.430181pt;}
.y79_c00133{bottom:530.900160pt;}
.y78_c00133{bottom:531.223724pt;}
.y77_c00133{bottom:531.492023pt;}
.y76_c00133{bottom:531.835881pt;}
.y75_c00133{bottom:548.291483pt;}
.y74_c00133{bottom:548.517657pt;}
.y73_c00133{bottom:549.025836pt;}
.y72_c00133{bottom:549.320861pt;}
.y71_c00133{bottom:550.067300pt;}
.y70_c00133{bottom:550.618791pt;}
.y6f_c00133{bottom:550.805925pt;}
.y6e_c00133{bottom:551.007293pt;}
.y6d_c00133{bottom:551.316348pt;}
.y6c_c00133{bottom:551.491721pt;}
.y6b_c00133{bottom:551.733497pt;}
.y6a_c00133{bottom:552.236072pt;}
.y69_c00133{bottom:568.026612pt;}
.y68_c00133{bottom:568.718013pt;}
.y67_c00133{bottom:569.039393pt;}
.y66_c00133{bottom:569.651587pt;}
.y65_c00133{bottom:570.333039pt;}
.y64_c00133{bottom:570.711676pt;}
.y63_c00133{bottom:570.992252pt;}
.y62_c00133{bottom:571.887337pt;}
.y61_c00133{bottom:572.155756pt;}
.y60_c00133{bottom:587.912956pt;}
.y5f_c00133{bottom:588.443068pt;}
.y5e_c00133{bottom:588.660272pt;}
.y5d_c00133{bottom:589.053764pt;}
.y5c_c00133{bottom:589.418919pt;}
.y5b_c00133{bottom:589.787781pt;}
.y5a_c00133{bottom:590.197080pt;}
.y59_c00133{bottom:591.039669pt;}
.y58_c00133{bottom:591.251292pt;}
.y57_c00133{bottom:591.689732pt;}
.y56_c00133{bottom:591.977016pt;}
.y55_c00133{bottom:592.317349pt;}
.y54_c00133{bottom:609.440136pt;}
.y53_c00133{bottom:609.582463pt;}
.y52_c00133{bottom:609.688044pt;}
.y51_c00133{bottom:609.853189pt;}
.y50_c00133{bottom:610.172743pt;}
.y4f_c00133{bottom:610.419632pt;}
.y4e_c00133{bottom:610.660380pt;}
.y4d_c00133{bottom:611.169551pt;}
.y4c_c00133{bottom:611.384709pt;}
.y4b_c00133{bottom:611.623873pt;}
.y4a_c00133{bottom:611.770819pt;}
.y49_c00133{bottom:611.975864pt;}
.y48_c00133{bottom:612.238385pt;}
.y47_c00133{bottom:629.442811pt;}
.y46_c00133{bottom:629.879131pt;}
.y45_c00133{bottom:630.036667pt;}
.y44_c00133{bottom:630.347767pt;}
.y43_c00133{bottom:630.842383pt;}
.y42_c00133{bottom:631.075531pt;}
.y41_c00133{bottom:631.428067pt;}
.y40_c00133{bottom:631.844539pt;}
.y3f_c00133{bottom:632.101507pt;}
.y3e_c00133{bottom:632.335147pt;}
.y3d_c00133{bottom:632.775787pt;}
.y3c_c00133{bottom:633.119023pt;}
.y3b_c00133{bottom:648.981767pt;}
.y3a_c00133{bottom:649.159324pt;}
.y39_c00133{bottom:649.602888pt;}
.y38_c00133{bottom:650.070731pt;}
.y37_c00133{bottom:650.310371pt;}
.y36_c00133{bottom:650.774397pt;}
.y35_c00133{bottom:651.100145pt;}
.y34_c00133{bottom:651.348295pt;}
.y33_c00133{bottom:652.077956pt;}
.y32_c00133{bottom:652.474272pt;}
.y31_c00133{bottom:653.040200pt;}
.y30_c00133{bottom:669.051117pt;}
.y2f_c00133{bottom:669.315828pt;}
.y2e_c00133{bottom:670.186755pt;}
.y2d_c00133{bottom:670.424475pt;}
.y2c_c00133{bottom:670.664247pt;}
.y2b_c00133{bottom:671.041048pt;}
.y2a_c00133{bottom:671.334129pt;}
.y29_c00133{bottom:671.938377pt;}
.y28_c00133{bottom:672.521600pt;}
.y27_c00133{bottom:672.700921pt;}
.y26_c00133{bottom:673.199595pt;}
.y25_c00133{bottom:690.237925pt;}
.y24_c00133{bottom:690.427741pt;}
.y23_c00133{bottom:690.940437pt;}
.y22_c00133{bottom:691.178656pt;}
.y21_c00133{bottom:691.389841pt;}
.y20_c00133{bottom:691.850740pt;}
.y1f_c00133{bottom:692.048187pt;}
.y1e_c00133{bottom:692.326468pt;}
.y1d_c00133{bottom:692.685307pt;}
.y1c_c00133{bottom:693.139103pt;}
.y1b_c00133{bottom:693.359515pt;}
.y1a_c00133{bottom:709.001871pt;}
.y19_c00133{bottom:709.546641pt;}
.y18_c00133{bottom:709.829449pt;}
.y17_c00133{bottom:710.386569pt;}
.y16_c00133{bottom:710.630553pt;}
.y15_c00133{bottom:711.318067pt;}
.y14_c00133{bottom:711.708537pt;}
.y13_c00133{bottom:712.083179pt;}
.y12_c00133{bottom:712.640299pt;}
.y11_c00133{bottom:713.000323pt;}
.y10_c00133{bottom:713.199615pt;}
.yf_c00133{bottom:713.760923pt;}
.ye_c00133{bottom:729.548557pt;}
.yd_c00133{bottom:729.827689pt;}
.yc_c00133{bottom:730.285489pt;}
.yb_c00133{bottom:730.607317pt;}
.ya_c00133{bottom:731.056681pt;}
.y9_c00133{bottom:731.238133pt;}
.y8_c00133{bottom:731.860249pt;}
.y7_c00133{bottom:732.303049pt;}
.y6_c00133{bottom:732.754549pt;}
.y5_c00133{bottom:733.203853pt;}
.y4_c00133{bottom:733.584073pt;}
.y3_c00133{bottom:733.681333pt;}
.y2_c00133{bottom:759.450667pt;}
.y1_c00133{bottom:776.880000pt;}
.hc_c00133{height:14.933333pt;}
.he_c00133{height:43.868070pt;}
.hf_c00133{height:44.801434pt;}
.h12_c00133{height:45.739187pt;}
.h10_c00133{height:46.668160pt;}
.h8_c00133{height:46.668557pt;}
.h15_c00133{height:46.672640pt;}
.h14_c00133{height:47.606092pt;}
.h11_c00133{height:49.472998pt;}
.h13_c00133{height:52.273356pt;}
.h17_c00133{height:56.933333pt;}
.hd_c00133{height:58.800000pt;}
.h7_c00133{height:59.735752pt;}
.ha_c00133{height:60.669124pt;}
.h6_c00133{height:61.602495pt;}
.h3_c00133{height:62.533333pt;}
.h5_c00133{height:62.535866pt;}
.hb_c00133{height:63.469237pt;}
.h9_c00133{height:64.402608pt;}
.h4_c00133{height:65.335979pt;}
.h2_c00133{height:71.866667pt;}
.h16_c00133{height:151.200000pt;}
.h0_c00133{height:896.400000pt;}
.h1_c00133{height:896.666667pt;}
.w0_c00133{width:601.680000pt;}
.w1_c00133{width:602.000000pt;}
.x0_c00133{left:0.000000pt;}
.x5_c00133{left:107.161333pt;}
.xb1_c00133{left:113.627392pt;}
.x57_c00133{left:114.854415pt;}
.x11_c00133{left:116.065452pt;}
.x4b_c00133{left:116.999291pt;}
.x6_c00133{left:117.968000pt;}
.x1_c00133{left:120.960000pt;}
.x97_c00133{left:126.820000pt;}
.x98_c00133{left:137.146667pt;}
.x1d_c00133{left:143.195401pt;}
.x52_c00133{left:144.152301pt;}
.x4c_c00133{left:147.998739pt;}
.x61_c00133{left:151.861397pt;}
.x83_c00133{left:153.652717pt;}
.x42_c00133{left:154.973945pt;}
.x39_c00133{left:155.910539pt;}
.xb5_c00133{left:158.975413pt;}
.x7_c00133{left:160.214667pt;}
.xa5_c00133{left:161.634443pt;}
.x69_c00133{left:163.116436pt;}
.x58_c00133{left:165.065959pt;}
.x27_c00133{left:166.218671pt;}
.xad_c00133{left:168.105237pt;}
.x12_c00133{left:172.210281pt;}
.x6f_c00133{left:173.222872pt;}
.x30_c00133{left:174.627993pt;}
.x62_c00133{left:178.709157pt;}
.x9c_c00133{left:179.628064pt;}
.x84_c00133{left:182.250616pt;}
.x28_c00133{left:184.217181pt;}
.x59_c00133{left:189.263076pt;}
.x13_c00133{left:192.131435pt;}
.x7c_c00133{left:193.789421pt;}
.x85_c00133{left:197.872851pt;}
.x1e_c00133{left:199.839905pt;}
.x8c_c00133{left:201.258667pt;}
.x3a_c00133{left:204.870539pt;}
.xb6_c00133{left:205.787253pt;}
.x5a_c00133{left:206.822920pt;}
.x86_c00133{left:208.235241pt;}
.x8_c00133{left:210.137333pt;}
.x63_c00133{left:211.104869pt;}
.x31_c00133{left:214.218300pt;}
.x9d_c00133{left:216.826731pt;}
.xae_c00133{left:219.474571pt;}
.x14_c00133{left:228.133777pt;}
.x3b_c00133{left:230.830539pt;}
.x4d_c00133{left:233.183869pt;}
.xb7_c00133{left:235.536960pt;}
.x9e_c00133{left:236.512064pt;}
.x5b_c00133{left:237.754644pt;}
.x43_c00133{left:239.474136pt;}
.x29_c00133{left:242.500653pt;}
.x1f_c00133{left:244.748313pt;}
.xa6_c00133{left:249.203776pt;}
.x99_c00133{left:251.398667pt;}
.x70_c00133{left:252.857539pt;}
.x6a_c00133{left:254.791931pt;}
.x9f_c00133{left:255.721397pt;}
.x5c_c00133{left:257.906464pt;}
.x3c_c00133{left:259.382539pt;}
.x9_c00133{left:260.304000pt;}
.x53_c00133{left:261.743245pt;}
.x6b_c00133{left:269.196063pt;}
.x44_c00133{left:270.196021pt;}
.x71_c00133{left:272.514872pt;}
.x76_c00133{left:274.002456pt;}
.x5d_c00133{left:276.624963pt;}
.x20_c00133{left:279.520625pt;}
.xbb_c00133{left:281.280000pt;}
.xa7_c00133{left:282.803776pt;}
.x15_c00133{left:283.813273pt;}
.xa0_c00133{left:285.001397pt;}
.x32_c00133{left:287.142973pt;}
.x64_c00133{left:288.384173pt;}
.x87_c00133{left:290.715676pt;}
.xa1_c00133{left:295.808064pt;}
.x7d_c00133{left:296.995959pt;}
.x54_c00133{left:299.665576pt;}
.xaf_c00133{left:301.597237pt;}
.x2a_c00133{left:302.972113pt;}
.x21_c00133{left:304.274187pt;}
.x3d_c00133{left:305.657205pt;}
.x72_c00133{left:308.050872pt;}
.xa_c00133{left:309.504000pt;}
.x33_c00133{left:311.900079pt;}
.x88_c00133{left:314.996349pt;}
.x8d_c00133{left:318.114667pt;}
.x16_c00133{left:321.291604pt;}
.xb2_c00133{left:322.432021pt;}
.x9a_c00133{left:323.606667pt;}
.x7e_c00133{left:325.799179pt;}
.x65_c00133{left:327.053159pt;}
.xa8_c00133{left:329.859776pt;}
.x2b_c00133{left:332.277183pt;}
.xb3_c00133{left:333.266517pt;}
.x89_c00133{left:334.677155pt;}
.x7f_c00133{left:341.614747pt;}
.x45_c00133{left:342.919996pt;}
.x34_c00133{left:344.538457pt;}
.x4e_c00133{left:346.947151pt;}
.xa2_c00133{left:351.024064pt;}
.x8e_c00133{left:353.620000pt;}
.x77_c00133{left:356.527635pt;}
.x17_c00133{left:360.380589pt;}
.x22_c00133{left:361.856036pt;}
.xa9_c00133{left:364.651776pt;}
.x2_c00133{left:365.760000pt;}
.x55_c00133{left:367.826297pt;}
.x2c_c00133{left:369.995513pt;}
.x80_c00133{left:371.420609pt;}
.xa3_c00133{left:374.018731pt;}
.x46_c00133{left:377.225941pt;}
.xb_c00133{left:378.628000pt;}
.x4f_c00133{left:380.523884pt;}
.x78_c00133{left:381.504524pt;}
.x73_c00133{left:382.681539pt;}
.x23_c00133{left:388.284276pt;}
.x35_c00133{left:390.911371pt;}
.x8f_c00133{left:392.092000pt;}
.x2d_c00133{left:393.969964pt;}
.xc_c00133{left:398.789333pt;}
.x81_c00133{left:401.177139pt;}
.x8a_c00133{left:403.355295pt;}
.x91_c00133{left:404.646144pt;}
.x5e_c00133{left:406.467799pt;}
.x92_c00133{left:408.966421pt;}
.x47_c00133{left:412.510577pt;}
.x50_c00133{left:413.688617pt;}
.x36_c00133{left:414.871155pt;}
.x24_c00133{left:418.012540pt;}
.x3e_c00133{left:425.690539pt;}
.xb8_c00133{left:426.600192pt;}
.x18_c00133{left:429.066632pt;}
.x6c_c00133{left:432.192193pt;}
.x5f_c00133{left:435.988868pt;}
.x79_c00133{left:438.111504pt;}
.x66_c00133{left:439.348139pt;}
.x8b_c00133{left:440.519620pt;}
.x7a_c00133{left:441.700777pt;}
.xaa_c00133{left:443.198443pt;}
.x74_c00133{left:445.368205pt;}
.x93_c00133{left:446.407488pt;}
.xd_c00133{left:448.718667pt;}
.x94_c00133{left:450.488608pt;}
.xb9_c00133{left:451.572736pt;}
.x19_c00133{left:453.509083pt;}
.x48_c00133{left:458.091393pt;}
.x67_c00133{left:459.307959pt;}
.x3f_c00133{left:460.257205pt;}
.x37_c00133{left:461.668068pt;}
.xa4_c00133{left:463.150731pt;}
.x90_c00133{left:464.520000pt;}
.x6d_c00133{left:467.461839pt;}
.x51_c00133{left:469.098276pt;}
.xab_c00133{left:471.255776pt;}
.x40_c00133{left:477.761205pt;}
.x95_c00133{left:478.810421pt;}
.x75_c00133{left:480.170872pt;}
.x25_c00133{left:482.090449pt;}
.xe_c00133{left:484.477333pt;}
.x60_c00133{left:486.823079pt;}
.x6e_c00133{left:491.683388pt;}
.x9b_c00133{left:495.420000pt;}
.x49_c00133{left:496.765423pt;}
.xac_c00133{left:498.159776pt;}
.x2e_c00133{left:504.855635pt;}
.x26_c00133{left:505.847999pt;}
.x7b_c00133{left:506.778268pt;}
.x1a_c00133{left:509.188579pt;}
.xb0_c00133{left:511.558571pt;}
.x68_c00133{left:513.014145pt;}
.xb4_c00133{left:515.331616pt;}
.x4a_c00133{left:517.172461pt;}
.xba_c00133{left:518.725248pt;}
.x82_c00133{left:522.152541pt;}
.x38_c00133{left:523.866183pt;}
.x41_c00133{left:526.241205pt;}
.x96_c00133{left:527.292192pt;}
.x56_c00133{left:530.303500pt;}
.x2f_c00133{left:531.304728pt;}
.xf_c00133{left:535.344000pt;}
.x1b_c00133{left:537.500327pt;}
.x10_c00133{left:566.358667pt;}
.x3_c00133{left:580.560000pt;}
.x1c_c00133{left:591.955835pt;}
.x4_c00133{left:598.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_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_4ab86c84425994a9e06b01c2.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;}
.m5f_c00134{transform:matrix(0.009363,0.000197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.009363,0.000197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.009363,0.000197,-0.005249,0.249945,0,0);}
.mdf_c00134{transform:matrix(0.011186,0.000313,-0.006997,0.249902,0,0);-ms-transform:matrix(0.011186,0.000313,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.011186,0.000313,-0.006997,0.249902,0,0);}
.m117_c00134{transform:matrix(0.017293,0.000501,-0.007247,0.249895,0,0);-ms-transform:matrix(0.017293,0.000501,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.017293,0.000501,-0.007247,0.249895,0,0);}
.m21_c00134{transform:matrix(0.017421,0.000366,-0.005249,0.249945,0,0);-ms-transform:matrix(0.017421,0.000366,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.017421,0.000366,-0.005249,0.249945,0,0);}
.m61_c00134{transform:matrix(0.049949,0.001049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.049949,0.001049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.049949,0.001049,-0.005249,0.249945,0,0);}
.mcc_c00134{transform:matrix(0.093658,0.002622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.093658,0.002622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.093658,0.002622,-0.006997,0.249902,0,0);}
.m9a_c00134{transform:matrix(0.094405,0.002171,-0.005748,0.249934,0,0);-ms-transform:matrix(0.094405,0.002171,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.094405,0.002171,-0.005748,0.249934,0,0);}
.m58_c00134{transform:matrix(0.122988,0.002583,-0.005249,0.249945,0,0);-ms-transform:matrix(0.122988,0.002583,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.122988,0.002583,-0.005249,0.249945,0,0);}
.m65_c00134{transform:matrix(0.137115,0.002879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.137115,0.002879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.137115,0.002879,-0.005249,0.249945,0,0);}
.m9c_c00134{transform:matrix(0.140278,0.003226,-0.005748,0.249934,0,0);-ms-transform:matrix(0.140278,0.003226,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.140278,0.003226,-0.005748,0.249934,0,0);}
.m75_c00134{transform:matrix(0.140903,0.003241,-0.005748,0.249934,0,0);-ms-transform:matrix(0.140903,0.003241,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.140903,0.003241,-0.005748,0.249934,0,0);}
.m68_c00134{transform:matrix(0.143415,0.003585,-0.006248,0.249922,0,0);-ms-transform:matrix(0.143415,0.003585,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.143415,0.003585,-0.006248,0.249922,0,0);}
.mc8_c00134{transform:matrix(0.144693,0.004051,-0.006997,0.249902,0,0);-ms-transform:matrix(0.144693,0.004051,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.144693,0.004051,-0.006997,0.249902,0,0);}
.med_c00134{transform:matrix(0.145724,0.004372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.145724,0.004372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.145724,0.004372,-0.007497,0.249888,0,0);}
.m79_c00134{transform:matrix(0.152890,0.003516,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152890,0.003516,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152890,0.003516,-0.005748,0.249934,0,0);}
.m78_c00134{transform:matrix(0.154104,0.003544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.154104,0.003544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.154104,0.003544,-0.005748,0.249934,0,0);}
.m22_c00134{transform:matrix(0.154226,0.003239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154226,0.003239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154226,0.003239,-0.005249,0.249945,0,0);}
.ma5_c00134{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);}
.mbf_c00134{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);}
.mce_c00134{transform:matrix(0.156039,0.004369,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156039,0.004369,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156039,0.004369,-0.006997,0.249902,0,0);}
.mf_c00134{transform:matrix(0.156925,0.003295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156925,0.003295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156925,0.003295,-0.005249,0.249945,0,0);}
.m6a_c00134{transform:matrix(0.157411,0.003935,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157411,0.003935,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157411,0.003935,-0.006248,0.249922,0,0);}
.mda_c00134{transform:matrix(0.157458,0.004409,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157458,0.004409,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157458,0.004409,-0.006997,0.249902,0,0);}
.mf8_c00134{transform:matrix(0.157499,0.004567,-0.007247,0.249895,0,0);-ms-transform:matrix(0.157499,0.004567,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.157499,0.004567,-0.007247,0.249895,0,0);}
.m120_c00134{transform:matrix(0.160582,0.004657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160582,0.004657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160582,0.004657,-0.007247,0.249895,0,0);}
.m69_c00134{transform:matrix(0.160800,0.004020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160800,0.004020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160800,0.004020,-0.006248,0.249922,0,0);}
.m35_c00134{transform:matrix(0.161019,0.003381,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161019,0.003381,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161019,0.003381,-0.005249,0.249945,0,0);}
.mcb_c00134{transform:matrix(0.161657,0.004526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161657,0.004526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161657,0.004526,-0.006997,0.249902,0,0);}
.mea_c00134{transform:matrix(0.162357,0.004871,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162357,0.004871,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162357,0.004871,-0.007497,0.249888,0,0);}
.m3a_c00134{transform:matrix(0.163589,0.003435,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163589,0.003435,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163589,0.003435,-0.005249,0.249945,0,0);}
.m57_c00134{transform:matrix(0.163619,0.003436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163619,0.003436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163619,0.003436,-0.005249,0.249945,0,0);}
.m72_c00134{transform:matrix(0.163894,0.004097,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163894,0.004097,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163894,0.004097,-0.006248,0.249922,0,0);}
.m1c_c00134{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);}
.mbd_c00134{transform:matrix(0.164220,0.004434,-0.006748,0.249909,0,0);-ms-transform:matrix(0.164220,0.004434,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.164220,0.004434,-0.006748,0.249909,0,0);}
.ma2_c00134{transform:matrix(0.165791,0.003813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.165791,0.003813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.165791,0.003813,-0.005748,0.249934,0,0);}
.mc3_c00134{transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);}
.m10_c00134{transform:matrix(0.166353,0.003493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166353,0.003493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166353,0.003493,-0.005249,0.249945,0,0);}
.ma0_c00134{transform:matrix(0.166686,0.003834,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166686,0.003834,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166686,0.003834,-0.005748,0.249934,0,0);}
.me4_c00134{transform:matrix(0.166955,0.004675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166955,0.004675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166955,0.004675,-0.006997,0.249902,0,0);}
.md5_c00134{transform:matrix(0.167684,0.004695,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167684,0.004695,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167684,0.004695,-0.006997,0.249902,0,0);}
.mb8_c00134{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);}
.m32_c00134{transform:matrix(0.168808,0.003545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168808,0.003545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168808,0.003545,-0.005249,0.249945,0,0);}
.mbc_c00134{transform:matrix(0.168903,0.004560,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168903,0.004560,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168903,0.004560,-0.006748,0.249909,0,0);}
.m6e_c00134{transform:matrix(0.168987,0.004225,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168987,0.004225,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168987,0.004225,-0.006248,0.249922,0,0);}
.m91_c00134{transform:matrix(0.169400,0.003896,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169400,0.003896,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169400,0.003896,-0.005748,0.249934,0,0);}
.ma1_c00134{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);}
.m80_c00134{transform:matrix(0.171625,0.003947,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171625,0.003947,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171625,0.003947,-0.005748,0.249934,0,0);}
.m6b_c00134{transform:matrix(0.171641,0.004291,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171641,0.004291,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171641,0.004291,-0.006248,0.249922,0,0);}
.m11f_c00134{transform:matrix(0.172987,0.005017,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172987,0.005017,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172987,0.005017,-0.007247,0.249895,0,0);}
.m10f_c00134{transform:matrix(0.173927,0.005044,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173927,0.005044,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173927,0.005044,-0.007247,0.249895,0,0);}
.m48_c00134{transform:matrix(0.174037,0.003655,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174037,0.003655,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174037,0.003655,-0.005249,0.249945,0,0);}
.m10b_c00134{transform:matrix(0.174432,0.005059,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174432,0.005059,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174432,0.005059,-0.007247,0.249895,0,0);}
.m101_c00134{transform:matrix(0.174507,0.005061,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174507,0.005061,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174507,0.005061,-0.007247,0.249895,0,0);}
.m11e_c00134{transform:matrix(0.174587,0.005063,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174587,0.005063,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174587,0.005063,-0.007247,0.249895,0,0);}
.m7d_c00134{transform:matrix(0.174774,0.004020,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174774,0.004020,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174774,0.004020,-0.005748,0.249934,0,0);}
.m67_c00134{transform:matrix(0.175035,0.004376,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175035,0.004376,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175035,0.004376,-0.006248,0.249922,0,0);}
.m46_c00134{transform:matrix(0.175831,0.003692,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175831,0.003692,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175831,0.003692,-0.005249,0.249945,0,0);}
.m76_c00134{transform:matrix(0.175843,0.004044,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175843,0.004044,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175843,0.004044,-0.005748,0.249934,0,0);}
.mfa_c00134{transform:matrix(0.176001,0.005104,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176001,0.005104,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176001,0.005104,-0.007247,0.249895,0,0);}
.mb5_c00134{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);}
.m34_c00134{transform:matrix(0.176531,0.003707,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176531,0.003707,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176531,0.003707,-0.005249,0.249945,0,0);}
.m10c_c00134{transform:matrix(0.177490,0.005147,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177490,0.005147,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177490,0.005147,-0.007247,0.249895,0,0);}
.m23_c00134{transform:matrix(0.177691,0.003732,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177691,0.003732,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177691,0.003732,-0.005249,0.249945,0,0);}
.m20_c00134{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);}
.m51_c00134{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);}
.m7c_c00134{transform:matrix(0.179283,0.004123,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179283,0.004123,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179283,0.004123,-0.005748,0.249934,0,0);}
.m7e_c00134{transform:matrix(0.179967,0.004139,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179967,0.004139,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179967,0.004139,-0.005748,0.249934,0,0);}
.m7b_c00134{transform:matrix(0.180237,0.004145,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180237,0.004145,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180237,0.004145,-0.005748,0.249934,0,0);}
.mbe_c00134{transform:matrix(0.180294,0.004868,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180294,0.004868,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180294,0.004868,-0.006748,0.249909,0,0);}
.mbb_c00134{transform:matrix(0.180524,0.004874,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180524,0.004874,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180524,0.004874,-0.006748,0.249909,0,0);}
.ma8_c00134{transform:matrix(0.180647,0.004155,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180647,0.004155,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180647,0.004155,-0.005748,0.249934,0,0);}
.m27_c00134{transform:matrix(0.181225,0.003806,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181225,0.003806,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181225,0.003806,-0.005249,0.249945,0,0);}
.ma3_c00134{transform:matrix(0.181237,0.004168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181237,0.004168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181237,0.004168,-0.005748,0.249934,0,0);}
.mf0_c00134{transform:matrix(0.181763,0.005453,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181763,0.005453,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181763,0.005453,-0.007497,0.249888,0,0);}
.md1_c00134{transform:matrix(0.181839,0.005091,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181839,0.005091,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181839,0.005091,-0.006997,0.249902,0,0);}
.m8c_c00134{transform:matrix(0.181877,0.004183,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181877,0.004183,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181877,0.004183,-0.005748,0.249934,0,0);}
.mf6_c00134{transform:matrix(0.182493,0.005475,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182493,0.005475,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182493,0.005475,-0.007497,0.249888,0,0);}
.me_c00134{transform:matrix(0.182925,0.003841,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182925,0.003841,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182925,0.003841,-0.005249,0.249945,0,0);}
.m9d_c00134{transform:matrix(0.182927,0.004207,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182927,0.004207,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182927,0.004207,-0.005748,0.249934,0,0);}
.m95_c00134{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);}
.m17_c00134{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);}
.mfd_c00134{transform:matrix(0.184293,0.005344,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184293,0.005344,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184293,0.005344,-0.007247,0.249895,0,0);}
.m1b_c00134{transform:matrix(0.184829,0.003881,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184829,0.003881,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184829,0.003881,-0.005249,0.249945,0,0);}
.m81_c00134{transform:matrix(0.185406,0.004264,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185406,0.004264,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185406,0.004264,-0.005748,0.249934,0,0);}
.me9_c00134{transform:matrix(0.185672,0.005199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185672,0.005199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185672,0.005199,-0.006997,0.249902,0,0);}
.m77_c00134{transform:matrix(0.186141,0.004281,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186141,0.004281,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186141,0.004281,-0.005748,0.249934,0,0);}
.m26_c00134{transform:matrix(0.186154,0.003909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186154,0.003909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186154,0.003909,-0.005249,0.249945,0,0);}
.m7a_c00134{transform:matrix(0.186286,0.004285,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186286,0.004285,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186286,0.004285,-0.005748,0.249934,0,0);}
.m31_c00134{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);}
.m96_c00134{transform:matrix(0.187006,0.004301,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187006,0.004301,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187006,0.004301,-0.005748,0.249934,0,0);}
.md9_c00134{transform:matrix(0.187247,0.005243,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187247,0.005243,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187247,0.005243,-0.006997,0.249902,0,0);}
.m5_c00134{transform:matrix(0.187338,0.003747,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187338,0.003747,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187338,0.003747,-0.004999,0.249950,0,0);}
.mb3_c00134{transform:matrix(0.187650,0.004316,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187650,0.004316,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187650,0.004316,-0.005748,0.249934,0,0);}
.m110_c00134{transform:matrix(0.187836,0.005447,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187836,0.005447,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187836,0.005447,-0.007247,0.249895,0,0);}
.me5_c00134{transform:matrix(0.190165,0.005325,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190165,0.005325,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190165,0.005325,-0.006997,0.249902,0,0);}
.me8_c00134{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);}
.m111_c00134{transform:matrix(0.190755,0.005532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190755,0.005532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190755,0.005532,-0.007247,0.249895,0,0);}
.mc7_c00134{transform:matrix(0.191100,0.005351,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191100,0.005351,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191100,0.005351,-0.006997,0.249902,0,0);}
.mc5_c00134{transform:matrix(0.191460,0.005361,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191460,0.005361,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191460,0.005361,-0.006997,0.249902,0,0);}
.m3f_c00134{transform:matrix(0.192043,0.004033,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192043,0.004033,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192043,0.004033,-0.005249,0.249945,0,0);}
.m39_c00134{transform:matrix(0.192183,0.004036,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192183,0.004036,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192183,0.004036,-0.005249,0.249945,0,0);}
.mb1_c00134{transform:matrix(0.192439,0.004426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192439,0.004426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192439,0.004426,-0.005748,0.249934,0,0);}
.m74_c00134{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);}
.m6_c00134{transform:matrix(0.192696,0.003854,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192696,0.003854,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192696,0.003854,-0.004999,0.249950,0,0);}
.mf7_c00134{transform:matrix(0.192908,0.005787,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192908,0.005787,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192908,0.005787,-0.007497,0.249888,0,0);}
.m102_c00134{transform:matrix(0.193044,0.005598,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193044,0.005598,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193044,0.005598,-0.007247,0.249895,0,0);}
.m73_c00134{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);}
.mdb_c00134{transform:matrix(0.193639,0.005422,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193639,0.005422,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193639,0.005422,-0.006997,0.249902,0,0);}
.mba_c00134{transform:matrix(0.193804,0.005233,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193804,0.005233,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193804,0.005233,-0.006748,0.249909,0,0);}
.m4e_c00134{transform:matrix(0.193862,0.004071,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193862,0.004071,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193862,0.004071,-0.005249,0.249945,0,0);}
.m60_c00134{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);}
.m37_c00134{transform:matrix(0.195077,0.004097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195077,0.004097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195077,0.004097,-0.005249,0.249945,0,0);}
.m4_c00134{transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);}
.ma6_c00134{transform:matrix(0.195308,0.004492,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195308,0.004492,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195308,0.004492,-0.005748,0.249934,0,0);}
.ma_c00134{transform:matrix(0.195581,0.003912,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195581,0.003912,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195581,0.003912,-0.004999,0.249950,0,0);}
.mf5_c00134{transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);}
.m9f_c00134{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);}
.m107_c00134{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);}
.m2b_c00134{transform:matrix(0.197461,0.004147,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197461,0.004147,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197461,0.004147,-0.005249,0.249945,0,0);}
.me3_c00134{transform:matrix(0.197618,0.005533,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197618,0.005533,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197618,0.005533,-0.006997,0.249902,0,0);}
.m7f_c00134{transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);}
.m9e_c00134{transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);}
.m30_c00134{transform:matrix(0.197861,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197861,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197861,0.004155,-0.005249,0.249945,0,0);}
.md4_c00134{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);}
.m10a_c00134{transform:matrix(0.197902,0.005739,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197902,0.005739,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197902,0.005739,-0.007247,0.249895,0,0);}
.m59_c00134{transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);}
.m1d_c00134{transform:matrix(0.198561,0.004170,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198561,0.004170,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198561,0.004170,-0.005249,0.249945,0,0);}
.mf9_c00134{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);}
.m52_c00134{transform:matrix(0.198656,0.004172,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198656,0.004172,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198656,0.004172,-0.005249,0.249945,0,0);}
.m13a_c00134{transform:matrix(0.198706,0.005961,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198706,0.005961,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198706,0.005961,-0.007497,0.249888,0,0);}
.mcf_c00134{transform:matrix(0.198712,0.005564,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198712,0.005564,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198712,0.005564,-0.006997,0.249902,0,0);}
.m116_c00134{transform:matrix(0.198716,0.005763,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198716,0.005763,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198716,0.005763,-0.007247,0.249895,0,0);}
.me7_c00134{transform:matrix(0.199762,0.005593,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199762,0.005593,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199762,0.005593,-0.006997,0.249902,0,0);}
.m98_c00134{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);}
.mde_c00134{transform:matrix(0.200696,0.005619,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200696,0.005619,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200696,0.005619,-0.006997,0.249902,0,0);}
.md0_c00134{transform:matrix(0.201146,0.005632,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201146,0.005632,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201146,0.005632,-0.006997,0.249902,0,0);}
.m38_c00134{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_c00134{transform:matrix(0.202325,0.004046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202325,0.004046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202325,0.004046,-0.004999,0.249950,0,0);}
.ma7_c00134{transform:matrix(0.202786,0.004664,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202786,0.004664,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202786,0.004664,-0.005748,0.249934,0,0);}
.m11_c00134{transform:matrix(0.203245,0.004268,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203245,0.004268,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203245,0.004268,-0.005249,0.249945,0,0);}
.mb0_c00134{transform:matrix(0.203426,0.004679,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203426,0.004679,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203426,0.004679,-0.005748,0.249934,0,0);}
.mfe_c00134{transform:matrix(0.203684,0.005907,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203684,0.005907,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203684,0.005907,-0.007247,0.249895,0,0);}
.mc4_c00134{transform:matrix(0.204250,0.005719,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204250,0.005719,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204250,0.005719,-0.006997,0.249902,0,0);}
.m2e_c00134{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);}
.m33_c00134{transform:matrix(0.205215,0.004310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205215,0.004310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205215,0.004310,-0.005249,0.249945,0,0);}
.m12d_c00134{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);}
.m130_c00134{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);}
.md3_c00134{transform:matrix(0.205494,0.005754,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205494,0.005754,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205494,0.005754,-0.006997,0.249902,0,0);}
.m16_c00134{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);}
.m0_c00134{transform:matrix(0.206009,0.004120,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206009,0.004120,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206009,0.004120,-0.004999,0.249950,0,0);}
.m9b_c00134{transform:matrix(0.206110,0.004741,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206110,0.004741,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206110,0.004741,-0.005748,0.249934,0,0);}
.m71_c00134{transform:matrix(0.206156,0.005154,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206156,0.005154,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206156,0.005154,-0.006248,0.249922,0,0);}
.md7_c00134{transform:matrix(0.206184,0.005773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206184,0.005773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206184,0.005773,-0.006997,0.249902,0,0);}
.m8f_c00134{transform:matrix(0.206265,0.004744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206265,0.004744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206265,0.004744,-0.005748,0.249934,0,0);}
.mc9_c00134{transform:matrix(0.206369,0.005778,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206369,0.005778,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206369,0.005778,-0.006997,0.249902,0,0);}
.m4f_c00134{transform:matrix(0.206379,0.004334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206379,0.004334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206379,0.004334,-0.005249,0.249945,0,0);}
.m44_c00134{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);}
.mfb_c00134{transform:matrix(0.206638,0.005993,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206638,0.005993,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206638,0.005993,-0.007247,0.249895,0,0);}
.m8d_c00134{transform:matrix(0.206865,0.004758,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206865,0.004758,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206865,0.004758,-0.005748,0.249934,0,0);}
.mef_c00134{transform:matrix(0.206987,0.006210,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206987,0.006210,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206987,0.006210,-0.007497,0.249888,0,0);}
.m126_c00134{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);}
.mad_c00134{transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);}
.md8_c00134{transform:matrix(0.207769,0.005818,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207769,0.005818,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207769,0.005818,-0.006997,0.249902,0,0);}
.mb7_c00134{transform:matrix(0.207835,0.004780,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207835,0.004780,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207835,0.004780,-0.005748,0.249934,0,0);}
.m53_c00134{transform:matrix(0.207894,0.004366,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207894,0.004366,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207894,0.004366,-0.005249,0.249945,0,0);}
.m10e_c00134{transform:matrix(0.208217,0.006038,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208217,0.006038,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208217,0.006038,-0.007247,0.249895,0,0);}
.md2_c00134{transform:matrix(0.208813,0.005847,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208813,0.005847,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208813,0.005847,-0.006997,0.249902,0,0);}
.m42_c00134{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);}
.ma4_c00134{transform:matrix(0.209750,0.004824,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209750,0.004824,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209750,0.004824,-0.005748,0.249934,0,0);}
.m92_c00134{transform:matrix(0.209780,0.004825,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209780,0.004825,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209780,0.004825,-0.005748,0.249934,0,0);}
.m43_c00134{transform:matrix(0.210534,0.004421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210534,0.004421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210534,0.004421,-0.005249,0.249945,0,0);}
.mf4_c00134{transform:matrix(0.210645,0.006319,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210645,0.006319,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210645,0.006319,-0.007497,0.249888,0,0);}
.m66_c00134{transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);}
.m94_c00134{transform:matrix(0.211269,0.004859,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211269,0.004859,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211269,0.004859,-0.005748,0.249934,0,0);}
.m124_c00134{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);}
.m13_c00134{transform:matrix(0.212878,0.004470,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212878,0.004470,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212878,0.004470,-0.005249,0.249945,0,0);}
.mc6_c00134{transform:matrix(0.212897,0.005961,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212897,0.005961,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212897,0.005961,-0.006997,0.249902,0,0);}
.m90_c00134{transform:matrix(0.213873,0.004919,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213873,0.004919,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213873,0.004919,-0.005748,0.249934,0,0);}
.m2d_c00134{transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213878,0.004491,-0.005249,0.249945,0,0);}
.m47_c00134{transform:matrix(0.214713,0.004509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214713,0.004509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214713,0.004509,-0.005249,0.249945,0,0);}
.mae_c00134{transform:matrix(0.214738,0.004939,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214738,0.004939,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214738,0.004939,-0.005748,0.249934,0,0);}
.me6_c00134{transform:matrix(0.214876,0.006017,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214876,0.006017,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214876,0.006017,-0.006997,0.249902,0,0);}
.m85_c00134{transform:matrix(0.216318,0.004975,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216318,0.004975,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216318,0.004975,-0.005748,0.249934,0,0);}
.m127_c00134{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);}
.mc0_c00134{transform:matrix(0.217126,0.005862,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217126,0.005862,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217126,0.005862,-0.006748,0.249909,0,0);}
.md6_c00134{transform:matrix(0.217330,0.006085,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217330,0.006085,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217330,0.006085,-0.006997,0.249902,0,0);}
.mb2_c00134{transform:matrix(0.218392,0.005023,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218392,0.005023,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218392,0.005023,-0.005748,0.249934,0,0);}
.m108_c00134{transform:matrix(0.218458,0.006335,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218458,0.006335,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218458,0.006335,-0.007247,0.249895,0,0);}
.maf_c00134{transform:matrix(0.218852,0.005034,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218852,0.005034,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218852,0.005034,-0.005748,0.249934,0,0);}
.m5b_c00134{transform:matrix(0.218857,0.004596,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218857,0.004596,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218857,0.004596,-0.005249,0.249945,0,0);}
.m25_c00134{transform:matrix(0.218917,0.004597,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218917,0.004597,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218917,0.004597,-0.005249,0.249945,0,0);}
.m1a_c00134{transform:matrix(0.219002,0.004599,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219002,0.004599,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219002,0.004599,-0.005249,0.249945,0,0);}
.m55_c00134{transform:matrix(0.219242,0.004604,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219242,0.004604,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219242,0.004604,-0.005249,0.249945,0,0);}
.m100_c00134{transform:matrix(0.219323,0.006360,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219323,0.006360,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219323,0.006360,-0.007247,0.249895,0,0);}
.mac_c00134{transform:matrix(0.220712,0.005076,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220712,0.005076,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220712,0.005076,-0.005748,0.249934,0,0);}
.m54_c00134{transform:matrix(0.220941,0.004640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220941,0.004640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220941,0.004640,-0.005249,0.249945,0,0);}
.m103_c00134{transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);}
.m3c_c00134{transform:matrix(0.221111,0.004643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221111,0.004643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221111,0.004643,-0.005249,0.249945,0,0);}
.m6d_c00134{transform:matrix(0.221271,0.005532,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221271,0.005532,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221271,0.005532,-0.006248,0.249922,0,0);}
.m62_c00134{transform:matrix(0.221281,0.004647,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221281,0.004647,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221281,0.004647,-0.005249,0.249945,0,0);}
.m4a_c00134{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);}
.m8e_c00134{transform:matrix(0.221796,0.005101,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221796,0.005101,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221796,0.005101,-0.005748,0.249934,0,0);}
.m122_c00134{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);}
.maa_c00134{transform:matrix(0.222231,0.005111,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222231,0.005111,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222231,0.005111,-0.005748,0.249934,0,0);}
.m28_c00134{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);}
.m19_c00134{transform:matrix(0.222476,0.004672,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222476,0.004672,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222476,0.004672,-0.005249,0.249945,0,0);}
.m12c_c00134{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);}
.m106_c00134{transform:matrix(0.223166,0.006472,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223166,0.006472,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223166,0.006472,-0.007247,0.249895,0,0);}
.m5e_c00134{transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);}
.m64_c00134{transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);}
.m131_c00134{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);}
.m121_c00134{transform:matrix(0.224491,0.006510,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224491,0.006510,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224491,0.006510,-0.007247,0.249895,0,0);}
.m12_c00134{transform:matrix(0.224905,0.004723,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224905,0.004723,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224905,0.004723,-0.005249,0.249945,0,0);}
.m11a_c00134{transform:matrix(0.225015,0.006525,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225015,0.006525,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225015,0.006525,-0.007247,0.249895,0,0);}
.m3_c00134{transform:matrix(0.225860,0.004517,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225860,0.004517,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225860,0.004517,-0.004999,0.249950,0,0);}
.m132_c00134{transform:matrix(0.226033,0.006781,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226033,0.006781,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226033,0.006781,-0.007497,0.249888,0,0);}
.mb4_c00134{transform:matrix(0.226280,0.005204,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226280,0.005204,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226280,0.005204,-0.005748,0.249934,0,0);}
.m129_c00134{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);}
.mc2_c00134{transform:matrix(0.227292,0.006137,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227292,0.006137,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227292,0.006137,-0.006748,0.249909,0,0);}
.me0_c00134{transform:matrix(0.227721,0.006376,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227721,0.006376,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227721,0.006376,-0.006997,0.249902,0,0);}
.m41_c00134{transform:matrix(0.227735,0.004782,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227735,0.004782,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227735,0.004782,-0.005249,0.249945,0,0);}
.m36_c00134{transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);}
.mff_c00134{transform:matrix(0.229069,0.006643,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229069,0.006643,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229069,0.006643,-0.007247,0.249895,0,0);}
.m5d_c00134{transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);}
.m13b_c00134{transform:matrix(0.229872,0.006896,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229872,0.006896,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229872,0.006896,-0.007497,0.249888,0,0);}
.m86_c00134{transform:matrix(0.231054,0.005314,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231054,0.005314,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231054,0.005314,-0.005748,0.249934,0,0);}
.me1_c00134{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);}
.m8_c00134{transform:matrix(0.232169,0.004643,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232169,0.004643,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232169,0.004643,-0.004999,0.249950,0,0);}
.m97_c00134{transform:matrix(0.232204,0.005341,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232204,0.005341,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232204,0.005341,-0.005748,0.249934,0,0);}
.m2f_c00134{transform:matrix(0.234288,0.004920,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234288,0.004920,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234288,0.004920,-0.005249,0.249945,0,0);}
.m99_c00134{transform:matrix(0.234788,0.005400,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234788,0.005400,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234788,0.005400,-0.005748,0.249934,0,0);}
.mb9_c00134{transform:matrix(0.234819,0.006340,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234819,0.006340,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234819,0.006340,-0.006748,0.249909,0,0);}
.m29_c00134{transform:matrix(0.235428,0.004944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235428,0.004944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235428,0.004944,-0.005249,0.249945,0,0);}
.m123_c00134{transform:matrix(0.236616,0.006862,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236616,0.006862,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236616,0.006862,-0.007247,0.249895,0,0);}
.m1f_c00134{transform:matrix(0.236658,0.004970,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236658,0.004970,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236658,0.004970,-0.005249,0.249945,0,0);}
.m109_c00134{transform:matrix(0.237590,0.006890,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237590,0.006890,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237590,0.006890,-0.007247,0.249895,0,0);}
.m50_c00134{transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);}
.m105_c00134{transform:matrix(0.238475,0.006916,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238475,0.006916,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238475,0.006916,-0.007247,0.249895,0,0);}
.mdd_c00134{transform:matrix(0.238656,0.006682,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238656,0.006682,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238656,0.006682,-0.006997,0.249902,0,0);}
.me2_c00134{transform:matrix(0.238786,0.006686,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238786,0.006686,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238786,0.006686,-0.006997,0.249902,0,0);}
.mf3_c00134{transform:matrix(0.239387,0.007182,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239387,0.007182,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239387,0.007182,-0.007497,0.249888,0,0);}
.mc1_c00134{transform:matrix(0.240737,0.006500,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240737,0.006500,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240737,0.006500,-0.006748,0.249909,0,0);}
.m3d_c00134{transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);}
.m15_c00134{transform:matrix(0.243666,0.005117,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243666,0.005117,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243666,0.005117,-0.005249,0.249945,0,0);}
.m1e_c00134{transform:matrix(0.244226,0.005129,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244226,0.005129,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244226,0.005129,-0.005249,0.249945,0,0);}
.m137_c00134{transform:matrix(0.244780,0.007343,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244780,0.007343,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244780,0.007343,-0.007497,0.249888,0,0);}
.m112_c00134{transform:matrix(0.246396,0.007145,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246396,0.007145,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246396,0.007145,-0.007247,0.249895,0,0);}
.m45_c00134{transform:matrix(0.246806,0.005183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246806,0.005183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246806,0.005183,-0.005249,0.249945,0,0);}
.m4d_c00134{transform:matrix(0.247740,0.005203,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247740,0.005203,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247740,0.005203,-0.005249,0.249945,0,0);}
.mb6_c00134{transform:matrix(0.247974,0.005703,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247974,0.005703,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247974,0.005703,-0.005748,0.249934,0,0);}
.m133_c00134{transform:matrix(0.248883,0.007466,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248883,0.007466,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248883,0.007466,-0.007497,0.249888,0,0);}
.m5a_c00134{transform:matrix(0.249500,0.005239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249500,0.005239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249500,0.005239,-0.005249,0.249945,0,0);}
.ma9_c00134{transform:matrix(0.249679,0.005743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249679,0.005743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249679,0.005743,-0.005748,0.249934,0,0);}
.m2c_c00134{transform:matrix(0.250700,0.005265,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250700,0.005265,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250700,0.005265,-0.005249,0.249945,0,0);}
.m139_c00134{transform:matrix(0.252177,0.007565,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252177,0.007565,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252177,0.007565,-0.007497,0.249888,0,0);}
.m8a_c00134{transform:matrix(0.252878,0.005816,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252878,0.005816,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252878,0.005816,-0.005748,0.249934,0,0);}
.m134_c00134{transform:matrix(0.254291,0.007629,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254291,0.007629,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254291,0.007629,-0.007497,0.249888,0,0);}
.m5c_c00134{transform:matrix(0.254654,0.005348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254654,0.005348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254654,0.005348,-0.005249,0.249945,0,0);}
.m87_c00134{transform:matrix(0.255762,0.005883,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255762,0.005883,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255762,0.005883,-0.005748,0.249934,0,0);}
.meb_c00134{transform:matrix(0.256655,0.007700,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256655,0.007700,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256655,0.007700,-0.007497,0.249888,0,0);}
.m18_c00134{transform:matrix(0.258018,0.005418,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258018,0.005418,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258018,0.005418,-0.005249,0.249945,0,0);}
.mab_c00134{transform:matrix(0.259551,0.005970,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259551,0.005970,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259551,0.005970,-0.005748,0.249934,0,0);}
.mcd_c00134{transform:matrix(0.260208,0.007286,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260208,0.007286,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260208,0.007286,-0.006997,0.249902,0,0);}
.m11d_c00134{transform:matrix(0.260515,0.007555,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260515,0.007555,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260515,0.007555,-0.007247,0.249895,0,0);}
.m12e_c00134{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);}
.m63_c00134{transform:matrix(0.263317,0.005530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263317,0.005530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263317,0.005530,-0.005249,0.249945,0,0);}
.m3e_c00134{transform:matrix(0.264937,0.005564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264937,0.005564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264937,0.005564,-0.005249,0.249945,0,0);}
.mf1_c00134{transform:matrix(0.265116,0.007953,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265116,0.007953,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265116,0.007953,-0.007497,0.249888,0,0);}
.m14_c00134{transform:matrix(0.265307,0.005571,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265307,0.005571,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265307,0.005571,-0.005249,0.249945,0,0);}
.m12f_c00134{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);}
.m83_c00134{transform:matrix(0.269054,0.006188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269054,0.006188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269054,0.006188,-0.005748,0.249934,0,0);}
.m115_c00134{transform:matrix(0.269152,0.007805,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269152,0.007805,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269152,0.007805,-0.007247,0.249895,0,0);}
.m82_c00134{transform:matrix(0.269629,0.006201,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269629,0.006201,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269629,0.006201,-0.005748,0.249934,0,0);}
.m11b_c00134{transform:matrix(0.275144,0.007979,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275144,0.007979,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275144,0.007979,-0.007247,0.249895,0,0);}
.m84_c00134{transform:matrix(0.277232,0.006376,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277232,0.006376,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277232,0.006376,-0.005748,0.249934,0,0);}
.m88_c00134{transform:matrix(0.277282,0.006377,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277282,0.006377,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277282,0.006377,-0.005748,0.249934,0,0);}
.m11c_c00134{transform:matrix(0.278533,0.008077,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278533,0.008077,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278533,0.008077,-0.007247,0.249895,0,0);}
.m40_c00134{transform:matrix(0.279793,0.005876,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279793,0.005876,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279793,0.005876,-0.005249,0.249945,0,0);}
.m89_c00134{transform:matrix(0.280841,0.006459,-0.005748,0.249934,0,0);-ms-transform:matrix(0.280841,0.006459,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.280841,0.006459,-0.005748,0.249934,0,0);}
.m8b_c00134{transform:matrix(0.288509,0.006636,-0.005748,0.249934,0,0);-ms-transform:matrix(0.288509,0.006636,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.288509,0.006636,-0.005748,0.249934,0,0);}
.m3b_c00134{transform:matrix(0.289221,0.006074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289221,0.006074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289221,0.006074,-0.005249,0.249945,0,0);}
.m24_c00134{transform:matrix(0.294420,0.006183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.294420,0.006183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.294420,0.006183,-0.005249,0.249945,0,0);}
.m6c_c00134{transform:matrix(0.305045,0.007626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.305045,0.007626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.305045,0.007626,-0.006248,0.249922,0,0);}
.m104_c00134{transform:matrix(0.305826,0.008869,-0.007247,0.249895,0,0);-ms-transform:matrix(0.305826,0.008869,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.305826,0.008869,-0.007247,0.249895,0,0);}
.m113_c00134{transform:matrix(0.308415,0.008944,-0.007247,0.249895,0,0);-ms-transform:matrix(0.308415,0.008944,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.308415,0.008944,-0.007247,0.249895,0,0);}
.mb_c00134{transform:matrix(0.312887,0.006258,-0.004999,0.249950,0,0);-ms-transform:matrix(0.312887,0.006258,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.312887,0.006258,-0.004999,0.249950,0,0);}
.mdc_c00134{transform:matrix(0.314247,0.008799,-0.006997,0.249902,0,0);-ms-transform:matrix(0.314247,0.008799,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.314247,0.008799,-0.006997,0.249902,0,0);}
.m93_c00134{transform:matrix(0.314642,0.007237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.314642,0.007237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.314642,0.007237,-0.005748,0.249934,0,0);}
.mca_c00134{transform:matrix(0.317316,0.008885,-0.006997,0.249902,0,0);-ms-transform:matrix(0.317316,0.008885,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.317316,0.008885,-0.006997,0.249902,0,0);}
.m56_c00134{transform:matrix(0.318025,0.006679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.318025,0.006679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.318025,0.006679,-0.005249,0.249945,0,0);}
.m114_c00134{transform:matrix(0.323989,0.009396,-0.007247,0.249895,0,0);-ms-transform:matrix(0.323989,0.009396,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.323989,0.009396,-0.007247,0.249895,0,0);}
.m70_c00134{transform:matrix(0.326508,0.008163,-0.006248,0.249922,0,0);-ms-transform:matrix(0.326508,0.008163,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.326508,0.008163,-0.006248,0.249922,0,0);}
.m2a_c00134{transform:matrix(0.332582,0.006984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.332582,0.006984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.332582,0.006984,-0.005249,0.249945,0,0);}
.m136_c00134{transform:matrix(0.342411,0.010272,-0.007497,0.249888,0,0);-ms-transform:matrix(0.342411,0.010272,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.342411,0.010272,-0.007497,0.249888,0,0);}
.m12a_c00134{transform:matrix(0.345140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345140,0.000000,0.000000,0.250000,0,0);}
.m125_c00134{transform:matrix(0.346129,0.010038,-0.007247,0.249895,0,0);-ms-transform:matrix(0.346129,0.010038,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.346129,0.010038,-0.007247,0.249895,0,0);}
.m2_c00134{transform:matrix(0.348635,0.006973,-0.004999,0.249950,0,0);-ms-transform:matrix(0.348635,0.006973,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.348635,0.006973,-0.004999,0.249950,0,0);}
.m10d_c00134{transform:matrix(0.352492,0.010222,-0.007247,0.249895,0,0);-ms-transform:matrix(0.352492,0.010222,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.352492,0.010222,-0.007247,0.249895,0,0);}
.m4b_c00134{transform:matrix(0.352557,0.007404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.352557,0.007404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.352557,0.007404,-0.005249,0.249945,0,0);}
.m135_c00134{transform:matrix(0.356625,0.010699,-0.007497,0.249888,0,0);-ms-transform:matrix(0.356625,0.010699,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.356625,0.010699,-0.007497,0.249888,0,0);}
.m1_c00134{transform:matrix(0.366597,0.007332,-0.004999,0.249950,0,0);-ms-transform:matrix(0.366597,0.007332,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.366597,0.007332,-0.004999,0.249950,0,0);}
.m128_c00134{transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);}
.m118_c00134{transform:matrix(0.407049,0.011804,-0.007247,0.249895,0,0);-ms-transform:matrix(0.407049,0.011804,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.407049,0.011804,-0.007247,0.249895,0,0);}
.m138_c00134{transform:matrix(0.422220,0.012667,-0.007497,0.249888,0,0);-ms-transform:matrix(0.422220,0.012667,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.422220,0.012667,-0.007497,0.249888,0,0);}
.mc_c00134{transform:matrix(0.434778,0.008696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.434778,0.008696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.434778,0.008696,-0.004999,0.249950,0,0);}
.mee_c00134{transform:matrix(0.455840,0.013675,-0.007497,0.249888,0,0);-ms-transform:matrix(0.455840,0.013675,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.455840,0.013675,-0.007497,0.249888,0,0);}
.mf2_c00134{transform:matrix(0.473462,0.014204,-0.007497,0.249888,0,0);-ms-transform:matrix(0.473462,0.014204,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.473462,0.014204,-0.007497,0.249888,0,0);}
.m4c_c00134{transform:matrix(0.504434,0.010593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.504434,0.010593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.504434,0.010593,-0.005249,0.249945,0,0);}
.mec_c00134{transform:matrix(0.509011,0.015270,-0.007497,0.249888,0,0);-ms-transform:matrix(0.509011,0.015270,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.509011,0.015270,-0.007497,0.249888,0,0);}
.m9_c00134{transform:matrix(0.548245,0.010965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.548245,0.010965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.548245,0.010965,-0.004999,0.249950,0,0);}
.mfc_c00134{transform:matrix(0.578352,0.016772,-0.007247,0.249895,0,0);-ms-transform:matrix(0.578352,0.016772,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.578352,0.016772,-0.007247,0.249895,0,0);}
.md_c00134{transform:matrix(0.598583,0.012570,-0.005249,0.249945,0,0);-ms-transform:matrix(0.598583,0.012570,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.598583,0.012570,-0.005249,0.249945,0,0);}
.m49_c00134{transform:matrix(0.718202,0.015082,-0.005249,0.249945,0,0);-ms-transform:matrix(0.718202,0.015082,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.718202,0.015082,-0.005249,0.249945,0,0);}
.m6f_c00134{transform:matrix(0.748721,0.018718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.748721,0.018718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.748721,0.018718,-0.006248,0.249922,0,0);}
.m119_c00134{transform:matrix(0.768532,0.022287,-0.007247,0.249895,0,0);-ms-transform:matrix(0.768532,0.022287,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.768532,0.022287,-0.007247,0.249895,0,0);}
.m13c_c00134{transform:matrix(0.890075,0.026702,-0.007497,0.249888,0,0);-ms-transform:matrix(0.890075,0.026702,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.890075,0.026702,-0.007497,0.249888,0,0);}
.m12b_c00134{transform:matrix(1.197605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.197605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.197605,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;}
._0_c00134{width:14.554693px;}
.fc0_c00134{color:transparent;}
.fs15_c00134{font-size:25.200000px;}
.fs6_c00134{font-size:26.250000px;}
.fs17_c00134{font-size:48.300000px;}
.fs12_c00134{font-size:48.320306px;}
.fs13_c00134{font-size:49.370747px;}
.fs16_c00134{font-size:50.400000px;}
.fs11_c00134{font-size:50.421189px;}
.fs8_c00134{font-size:51.463607px;}
.fs18_c00134{font-size:51.473147px;}
.fs4_c00134{font-size:63.013890px;}
.fsb_c00134{font-size:66.167494px;}
.fse_c00134{font-size:67.226337px;}
.fs9_c00134{font-size:68.268050px;}
.fsf_c00134{font-size:68.276749px;}
.fs10_c00134{font-size:68.280706px;}
.fs0_c00134{font-size:69.313859px;}
.fs2_c00134{font-size:69.315279px;}
.fsa_c00134{font-size:69.318327px;}
.fsc_c00134{font-size:70.375638px;}
.fsd_c00134{font-size:70.377572px;}
.fs1_c00134{font-size:71.415742px;}
.fs7_c00134{font-size:72.469160px;}
.fs3_c00134{font-size:73.516205px;}
.fs5_c00134{font-size:80.875262px;}
.fs14_c00134{font-size:103.950000px;}
.y0_c00134{bottom:0.000000px;}
.y13e_c00134{bottom:162.185160px;}
.y13d_c00134{bottom:162.350580px;}
.y13c_c00134{bottom:163.354755px;}
.y13b_c00134{bottom:164.929800px;}
.y13a_c00134{bottom:165.538965px;}
.y139_c00134{bottom:167.574810px;}
.y138_c00134{bottom:169.133700px;}
.y137_c00134{bottom:169.805280px;}
.y136_c00134{bottom:171.084900px;}
.y135_c00134{bottom:171.866370px;}
.y134_c00134{bottom:173.347500px;}
.y133_c00134{bottom:178.390500px;}
.y132_c00134{bottom:179.487000px;}
.y131_c00134{bottom:180.024000px;}
.y130_c00134{bottom:181.414500px;}
.y12f_c00134{bottom:182.238000px;}
.y12e_c00134{bottom:182.964000px;}
.y12d_c00134{bottom:184.069500px;}
.y12c_c00134{bottom:188.832000px;}
.y12b_c00134{bottom:190.089000px;}
.y127_c00134{bottom:195.339375px;}
.y12a_c00134{bottom:195.750000px;}
.y126_c00134{bottom:196.413843px;}
.y125_c00134{bottom:197.153958px;}
.y124_c00134{bottom:198.307469px;}
.y123_c00134{bottom:198.819330px;}
.y122_c00134{bottom:199.190660px;}
.y121_c00134{bottom:199.963988px;}
.y120_c00134{bottom:200.458557px;}
.y11f_c00134{bottom:201.329916px;}
.y11e_c00134{bottom:201.803539px;}
.y11d_c00134{bottom:202.664784px;}
.y11c_c00134{bottom:203.182367px;}
.y11b_c00134{bottom:204.713319px;}
.y11a_c00134{bottom:205.317992px;}
.y119_c00134{bottom:205.340199px;}
.y118_c00134{bottom:206.544432px;}
.y117_c00134{bottom:207.083135px;}
.y116_c00134{bottom:211.817687px;}
.y129_c00134{bottom:212.220000px;}
.y115_c00134{bottom:212.440944px;}
.y114_c00134{bottom:212.863815px;}
.y113_c00134{bottom:213.647982px;}
.y112_c00134{bottom:214.175495px;}
.y111_c00134{bottom:214.644498px;}
.y110_c00134{bottom:215.590074px;}
.y10f_c00134{bottom:216.183512px;}
.y10e_c00134{bottom:216.883722px;}
.y10d_c00134{bottom:217.541106px;}
.y10c_c00134{bottom:218.387066px;}
.y10b_c00134{bottom:220.726407px;}
.y10a_c00134{bottom:221.653931px;}
.y109_c00134{bottom:222.775098px;}
.y108_c00134{bottom:223.342631px;}
.y107_c00134{bottom:224.469236px;}
.y106_c00134{bottom:225.180800px;}
.y128_c00134{bottom:225.720000px;}
.y105_c00134{bottom:230.791193px;}
.y104_c00134{bottom:232.196243px;}
.y103_c00134{bottom:233.774857px;}
.y102_c00134{bottom:235.444692px;}
.y101_c00134{bottom:236.122988px;}
.y100_c00134{bottom:238.054170px;}
.yff_c00134{bottom:238.538847px;}
.yfe_c00134{bottom:239.461395px;}
.yfd_c00134{bottom:240.528450px;}
.yfc_c00134{bottom:241.186344px;}
.yfb_c00134{bottom:242.118636px;}
.yfa_c00134{bottom:243.282000px;}
.yf9_c00134{bottom:284.370360px;}
.yf8_c00134{bottom:285.366705px;}
.yf7_c00134{bottom:286.099080px;}
.yf6_c00134{bottom:286.775430px;}
.yf5_c00134{bottom:287.827485px;}
.yf4_c00134{bottom:289.341510px;}
.yf3_c00134{bottom:290.102010px;}
.yf2_c00134{bottom:291.215670px;}
.yf1_c00134{bottom:291.930315px;}
.yf0_c00134{bottom:292.886655px;}
.yef_c00134{bottom:293.606250px;}
.yee_c00134{bottom:294.360675px;}
.yed_c00134{bottom:296.398680px;}
.yec_c00134{bottom:297.006000px;}
.yeb_c00134{bottom:306.741756px;}
.yea_c00134{bottom:307.362684px;}
.ye9_c00134{bottom:309.903348px;}
.ye8_c00134{bottom:310.869390px;}
.ye7_c00134{bottom:313.254528px;}
.ye6_c00134{bottom:314.177142px;}
.ye5_c00134{bottom:315.961470px;}
.ye4_c00134{bottom:316.808694px;}
.ye3_c00134{bottom:317.618160px;}
.ye2_c00134{bottom:318.594912px;}
.ye1_c00134{bottom:319.687500px;}
.ye0_c00134{bottom:329.347452px;}
.ydf_c00134{bottom:330.582630px;}
.yde_c00134{bottom:331.124850px;}
.ydd_c00134{bottom:332.680950px;}
.ydc_c00134{bottom:333.087762px;}
.ydb_c00134{bottom:334.551126px;}
.yda_c00134{bottom:335.730864px;}
.yd9_c00134{bottom:336.373632px;}
.yd8_c00134{bottom:337.661100px;}
.yd7_c00134{bottom:338.083032px;}
.yd6_c00134{bottom:339.048234px;}
.yd5_c00134{bottom:339.746442px;}
.yd4_c00134{bottom:340.570566px;}
.yd3_c00134{bottom:341.277762px;}
.yd2_c00134{bottom:350.935104px;}
.yd1_c00134{bottom:351.440574px;}
.yd0_c00134{bottom:353.080464px;}
.ycf_c00134{bottom:353.715882px;}
.yce_c00134{bottom:354.812292px;}
.ycd_c00134{bottom:355.033926px;}
.ycc_c00134{bottom:356.425764px;}
.ycb_c00134{bottom:356.829258px;}
.yca_c00134{bottom:357.665772px;}
.yc9_c00134{bottom:358.429878px;}
.yc8_c00134{bottom:360.123276px;}
.yc7_c00134{bottom:361.457952px;}
.yc6_c00134{bottom:362.240286px;}
.yc5_c00134{bottom:363.700500px;}
.yc4_c00134{bottom:373.636147px;}
.yc3_c00134{bottom:375.018169px;}
.yc2_c00134{bottom:376.160917px;}
.yc1_c00134{bottom:377.614462px;}
.yc0_c00134{bottom:378.322321px;}
.ybf_c00134{bottom:378.811359px;}
.ybe_c00134{bottom:379.860916px;}
.ybd_c00134{bottom:380.544151px;}
.ybc_c00134{bottom:383.044297px;}
.ybb_c00134{bottom:385.017012px;}
.yba_c00134{bottom:386.649000px;}
.yb9_c00134{bottom:396.753298px;}
.yb8_c00134{bottom:397.446042px;}
.yb7_c00134{bottom:398.775350px;}
.yb6_c00134{bottom:399.706746px;}
.yb5_c00134{bottom:401.488608px;}
.yb4_c00134{bottom:402.362014px;}
.yb3_c00134{bottom:402.857622px;}
.yb2_c00134{bottom:404.085369px;}
.yb1_c00134{bottom:404.892402px;}
.yb0_c00134{bottom:405.570052px;}
.yaf_c00134{bottom:407.401194px;}
.yae_c00134{bottom:409.033872px;}
.yad_c00134{bottom:419.417379px;}
.yac_c00134{bottom:420.423376px;}
.yab_c00134{bottom:421.130850px;}
.yaa_c00134{bottom:422.004946px;}
.ya9_c00134{bottom:423.749103px;}
.ya8_c00134{bottom:425.885305px;}
.ya7_c00134{bottom:426.541671px;}
.ya6_c00134{bottom:427.137010px;}
.ya5_c00134{bottom:428.562013px;}
.ya4_c00134{bottom:429.824292px;}
.ya3_c00134{bottom:431.472735px;}
.ya2_c00134{bottom:442.981281px;}
.ya1_c00134{bottom:443.584306px;}
.ya0_c00134{bottom:445.237365px;}
.y9f_c00134{bottom:446.035114px;}
.y9e_c00134{bottom:448.209576px;}
.y9d_c00134{bottom:448.829953px;}
.y9c_c00134{bottom:450.684307px;}
.y9b_c00134{bottom:450.849742px;}
.y9a_c00134{bottom:452.662285px;}
.y99_c00134{bottom:453.271917px;}
.y98_c00134{bottom:454.405435px;}
.y97_c00134{bottom:465.322020px;}
.y96_c00134{bottom:466.080886px;}
.y95_c00134{bottom:467.325907px;}
.y94_c00134{bottom:467.677845px;}
.y93_c00134{bottom:468.639925px;}
.y92_c00134{bottom:469.829835px;}
.y91_c00134{bottom:470.843439px;}
.y90_c00134{bottom:473.279559px;}
.y8f_c00134{bottom:473.723901px;}
.y8e_c00134{bottom:475.651425px;}
.y8d_c00134{bottom:476.549562px;}
.y8c_c00134{bottom:487.809036px;}
.y8b_c00134{bottom:488.579959px;}
.y8a_c00134{bottom:489.788757px;}
.y89_c00134{bottom:490.786750px;}
.y88_c00134{bottom:492.067960px;}
.y87_c00134{bottom:493.515850px;}
.y86_c00134{bottom:494.027862px;}
.y85_c00134{bottom:494.831593px;}
.y84_c00134{bottom:496.633905px;}
.y83_c00134{bottom:498.213045px;}
.y82_c00134{bottom:498.689143px;}
.y81_c00134{bottom:510.085909px;}
.y80_c00134{bottom:510.508086px;}
.y7f_c00134{bottom:511.079958px;}
.y7e_c00134{bottom:512.422663px;}
.y7d_c00134{bottom:512.907354px;}
.y7c_c00134{bottom:514.423318px;}
.y7b_c00134{bottom:514.975560px;}
.y7a_c00134{bottom:515.359062px;}
.y79_c00134{bottom:516.765420px;}
.y78_c00134{bottom:517.733766px;}
.y77_c00134{bottom:518.559765px;}
.y76_c00134{bottom:519.073056px;}
.y75_c00134{bottom:520.099500px;}
.y74_c00134{bottom:525.690000px;}
.y73_c00134{bottom:550.981050px;}
.y72_c00134{bottom:553.000537px;}
.y71_c00134{bottom:553.639238px;}
.y70_c00134{bottom:555.111637px;}
.y6f_c00134{bottom:555.436875px;}
.y6e_c00134{bottom:557.167050px;}
.y6d_c00134{bottom:557.892787px;}
.y6c_c00134{bottom:559.095937px;}
.y6b_c00134{bottom:559.676925px;}
.y6a_c00134{bottom:560.264175px;}
.y69_c00134{bottom:561.344025px;}
.y68_c00134{bottom:561.817725px;}
.y67_c00134{bottom:562.684500px;}
.y66_c00134{bottom:573.471258px;}
.y65_c00134{bottom:574.620455px;}
.y64_c00134{bottom:575.027342px;}
.y63_c00134{bottom:576.260055px;}
.y62_c00134{bottom:577.321620px;}
.y61_c00134{bottom:578.261621px;}
.y60_c00134{bottom:581.824613px;}
.y5f_c00134{bottom:596.084006px;}
.y5e_c00134{bottom:597.750357px;}
.y5d_c00134{bottom:598.029948px;}
.y5c_c00134{bottom:599.182643px;}
.y5b_c00134{bottom:600.108252px;}
.y5a_c00134{bottom:601.006102px;}
.y59_c00134{bottom:603.098267px;}
.y58_c00134{bottom:604.285493px;}
.y57_c00134{bottom:605.603832px;}
.y56_c00134{bottom:606.670119px;}
.y55_c00134{bottom:618.899811px;}
.y54_c00134{bottom:619.406235px;}
.y53_c00134{bottom:619.842683px;}
.y52_c00134{bottom:620.515842px;}
.y51_c00134{bottom:621.355895px;}
.y50_c00134{bottom:622.640270px;}
.y4f_c00134{bottom:623.180186px;}
.y4e_c00134{bottom:624.102468px;}
.y4d_c00134{bottom:625.228695px;}
.y4c_c00134{bottom:625.942340px;}
.y4b_c00134{bottom:626.220261px;}
.y4a_c00134{bottom:627.800142px;}
.y49_c00134{bottom:629.353051px;}
.y48_c00134{bottom:640.907447px;}
.y47_c00134{bottom:641.208477px;}
.y46_c00134{bottom:641.901596px;}
.y45_c00134{bottom:642.983337px;}
.y44_c00134{bottom:643.695942px;}
.y43_c00134{bottom:644.390951px;}
.y42_c00134{bottom:646.098795px;}
.y41_c00134{bottom:647.080312px;}
.y40_c00134{bottom:648.310355px;}
.y3f_c00134{bottom:649.155038px;}
.y3e_c00134{bottom:649.539231px;}
.y3d_c00134{bottom:650.727497px;}
.y3c_c00134{bottom:651.498423px;}
.y3b_c00134{bottom:664.220313px;}
.y3a_c00134{bottom:664.603461px;}
.y39_c00134{bottom:665.077841px;}
.y38_c00134{bottom:665.744771px;}
.y37_c00134{bottom:666.585174px;}
.y36_c00134{bottom:667.113048px;}
.y35_c00134{bottom:668.527166px;}
.y34_c00134{bottom:669.609110px;}
.y33_c00134{bottom:670.406591px;}
.y32_c00134{bottom:670.773182px;}
.y31_c00134{bottom:672.062387px;}
.y30_c00134{bottom:673.310055px;}
.y2f_c00134{bottom:673.909725px;}
.y2e_c00134{bottom:687.441762px;}
.y2d_c00134{bottom:687.884654px;}
.y2c_c00134{bottom:688.610843px;}
.y2b_c00134{bottom:689.016797px;}
.y2a_c00134{bottom:690.281727px;}
.y29_c00134{bottom:691.264860px;}
.y28_c00134{bottom:692.064640px;}
.y27_c00134{bottom:692.988893px;}
.y26_c00134{bottom:693.871010px;}
.y25_c00134{bottom:694.683063px;}
.y24_c00134{bottom:695.633039px;}
.y23_c00134{bottom:696.594732px;}
.y22_c00134{bottom:708.323441px;}
.y21_c00134{bottom:709.600791px;}
.y20_c00134{bottom:710.321196px;}
.y1f_c00134{bottom:710.955792px;}
.y1e_c00134{bottom:712.503158px;}
.y1d_c00134{bottom:712.949768px;}
.y1c_c00134{bottom:713.926655px;}
.y1b_c00134{bottom:714.333787px;}
.y1a_c00134{bottom:716.254711px;}
.y19_c00134{bottom:717.875708px;}
.y18_c00134{bottom:718.472528px;}
.y17_c00134{bottom:732.212583px;}
.y16_c00134{bottom:733.599938px;}
.y15_c00134{bottom:734.101827px;}
.y14_c00134{bottom:734.743230px;}
.y13_c00134{bottom:735.906872px;}
.y12_c00134{bottom:737.079238px;}
.y11_c00134{bottom:737.967791px;}
.y10_c00134{bottom:738.751857px;}
.yf_c00134{bottom:739.776237px;}
.ye_c00134{bottom:741.156000px;}
.yd_c00134{bottom:775.822230px;}
.yc_c00134{bottom:775.993710px;}
.yb_c00134{bottom:776.414820px;}
.ya_c00134{bottom:777.578730px;}
.y9_c00134{bottom:778.090980px;}
.y8_c00134{bottom:779.233080px;}
.y7_c00134{bottom:779.669430px;}
.y6_c00134{bottom:780.159870px;}
.y5_c00134{bottom:780.855570px;}
.y4_c00134{bottom:781.202070px;}
.y3_c00134{bottom:782.353020px;}
.y2_c00134{bottom:783.618420px;}
.y1_c00134{bottom:783.814500px;}
.h17_c00134{height:25.200000px;}
.h8_c00134{height:26.250000px;}
.h19_c00134{height:48.300000px;}
.h14_c00134{height:48.320306px;}
.h15_c00134{height:49.370747px;}
.h18_c00134{height:50.400000px;}
.h13_c00134{height:50.421189px;}
.ha_c00134{height:51.463607px;}
.h1a_c00134{height:51.473147px;}
.h6_c00134{height:63.013890px;}
.hd_c00134{height:66.167494px;}
.h10_c00134{height:67.226337px;}
.hb_c00134{height:68.268050px;}
.h11_c00134{height:68.276749px;}
.h12_c00134{height:68.280706px;}
.h2_c00134{height:69.313859px;}
.h4_c00134{height:69.315279px;}
.hc_c00134{height:69.318327px;}
.he_c00134{height:70.375638px;}
.hf_c00134{height:70.377572px;}
.h3_c00134{height:71.415742px;}
.h9_c00134{height:72.469160px;}
.h5_c00134{height:73.516205px;}
.h7_c00134{height:80.875262px;}
.h16_c00134{height:103.950000px;}
.h1_c00134{height:1005.000000px;}
.h0_c00134{height:1005.150000px;}
.w0_c00134{width:705.450000px;}
.w1_c00134{width:705.750000px;}
.x0_c00134{left:0.000000px;}
.x98_c00134{left:42.133500px;}
.x87_c00134{left:59.626500px;}
.xbc_c00134{left:60.736500px;}
.xac_c00134{left:71.800539px;}
.x46_c00134{left:76.407678px;}
.xa7_c00134{left:79.497000px;}
.x99_c00134{left:81.154500px;}
.x7a_c00134{left:82.556856px;}
.x68_c00134{left:84.563577px;}
.x2b_c00134{left:86.937729px;}
.xe_c00134{left:88.575000px;}
.xad_c00134{left:97.217279px;}
.xb3_c00134{left:99.641433px;}
.x5e_c00134{left:102.049500px;}
.x69_c00134{left:103.632215px;}
.x92_c00134{left:107.125062px;}
.xbd_c00134{left:110.107500px;}
.x1_c00134{left:114.004500px;}
.x9a_c00134{left:116.038500px;}
.x36_c00134{left:119.523981px;}
.x55_c00134{left:120.619500px;}
.x47_c00134{left:122.752725px;}
.x2_c00134{left:123.808500px;}
.xb8_c00134{left:125.565000px;}
.x74_c00134{left:127.247601px;}
.x17_c00134{left:130.139679px;}
.x21_c00134{left:131.469847px;}
.x8c_c00134{left:134.137500px;}
.x93_c00134{left:136.558062px;}
.x56_c00134{left:139.567500px;}
.x7b_c00134{left:143.592233px;}
.x9b_c00134{left:144.948000px;}
.x5f_c00134{left:146.677500px;}
.x75_c00134{left:150.686480px;}
.xa8_c00134{left:151.761000px;}
.xf_c00134{left:154.278000px;}
.x18_c00134{left:156.058577px;}
.xae_c00134{left:157.706519px;}
.x8d_c00134{left:162.078000px;}
.x6a_c00134{left:166.809317px;}
.x60_c00134{left:168.994500px;}
.x2c_c00134{left:170.904465px;}
.x22_c00134{left:174.634434px;}
.xbe_c00134{left:178.810500px;}
.x48_c00134{left:180.099831px;}
.x57_c00134{left:182.761500px;}
.x3_c00134{left:187.078500px;}
.x7c_c00134{left:190.317420px;}
.x88_c00134{left:193.134000px;}
.x9e_c00134{left:194.376000px;}
.x70_c00134{left:196.646441px;}
.xaf_c00134{left:197.765193px;}
.xbf_c00134{left:201.196500px;}
.x10_c00134{left:203.058000px;}
.x61_c00134{left:204.907500px;}
.x58_c00134{left:206.251500px;}
.x8e_c00134{left:209.745000px;}
.x23_c00134{left:211.517147px;}
.x50_c00134{left:214.923711px;}
.x9f_c00134{left:218.362500px;}
.x76_c00134{left:220.422684px;}
.x3b_c00134{left:222.280351px;}
.x37_c00134{left:224.621571px;}
.x19_c00134{left:226.531615px;}
.x2d_c00134{left:229.508236px;}
.x49_c00134{left:231.703657px;}
.x3c_c00134{left:234.371347px;}
.x83_c00134{left:236.998488px;}
.x6b_c00134{left:238.906505px;}
.x11_c00134{left:240.394500px;}
.x7d_c00134{left:243.073556px;}
.x4_c00134{left:244.626000px;}
.x2e_c00134{left:246.178890px;}
.xa0_c00134{left:250.240500px;}
.x24_c00134{left:251.593296px;}
.xc0_c00134{left:253.159500px;}
.x94_c00134{left:257.015562px;}
.xa9_c00134{left:259.767000px;}
.x5_c00134{left:261.951000px;}
.x3d_c00134{left:265.424556px;}
.x84_c00134{left:266.866728px;}
.x6c_c00134{left:271.045521px;}
.xa1_c00134{left:274.062000px;}
.xb4_c00134{left:275.234112px;}
.x38_c00134{left:278.121334px;}
.x95_c00134{left:279.971562px;}
.x12_c00134{left:282.706500px;}
.x89_c00134{left:285.732000px;}
.x7e_c00134{left:289.404278px;}
.x6d_c00134{left:291.545090px;}
.x25_c00134{left:293.604414px;}
.xb9_c00134{left:295.638000px;}
.x6_c00134{left:296.736000px;}
.x77_c00134{left:298.060302px;}
.x59_c00134{left:306.646500px;}
.x62_c00134{left:308.155500px;}
.x1a_c00134{left:310.072119px;}
.xa2_c00134{left:311.184000px;}
.x5d_c00134{left:312.660000px;}
.x3e_c00134{left:314.409508px;}
.x7_c00134{left:321.258000px;}
.x4a_c00134{left:322.683846px;}
.x63_c00134{left:324.829500px;}
.xaa_c00134{left:326.359500px;}
.x1b_c00134{left:327.744363px;}
.x26_c00134{left:329.974158px;}
.x2f_c00134{left:331.602094px;}
.xba_c00134{left:335.110500px;}
.xa3_c00134{left:336.534000px;}
.x13_c00134{left:338.533500px;}
.x8f_c00134{left:341.799000px;}
.x8_c00134{left:343.075500px;}
.xb0_c00134{left:344.659956px;}
.x64_c00134{left:348.840000px;}
.x8a_c00134{left:349.909500px;}
.x71_c00134{left:352.381265px;}
.x3f_c00134{left:354.540339px;}
.x9c_c00134{left:357.066000px;}
.x4b_c00134{left:361.722708px;}
.x51_c00134{left:363.366355px;}
.x7f_c00134{left:368.514498px;}
.x1c_c00134{left:370.189568px;}
.xb5_c00134{left:371.959680px;}
.x27_c00134{left:374.646213px;}
.x5a_c00134{left:375.853500px;}
.x40_c00134{left:378.035362px;}
.xb6_c00134{left:385.695963px;}
.xa4_c00134{left:387.001500px;}
.x1d_c00134{left:389.598749px;}
.x90_c00134{left:391.507500px;}
.x14_c00134{left:393.945000px;}
.x30_c00134{left:395.868240px;}
.x9_c00134{left:400.180500px;}
.x4c_c00134{left:401.940507px;}
.x78_c00134{left:405.545885px;}
.xab_c00134{left:407.329500px;}
.x65_c00134{left:414.751500px;}
.x31_c00134{left:419.861736px;}
.xa5_c00134{left:422.070000px;}
.x15_c00134{left:424.488000px;}
.xa_c00134{left:425.793000px;}
.xc1_c00134{left:427.300500px;}
.x85_c00134{left:429.052824px;}
.x28_c00134{left:432.165516px;}
.x41_c00134{left:433.908031px;}
.x66_c00134{left:435.825000px;}
.x72_c00134{left:438.507332px;}
.x6e_c00134{left:440.672759px;}
.x96_c00134{left:444.472062px;}
.x52_c00134{left:446.816626px;}
.x16_c00134{left:448.387500px;}
.x29_c00134{left:450.639138px;}
.x4d_c00134{left:452.042896px;}
.x1e_c00134{left:456.851414px;}
.x32_c00134{left:458.094448px;}
.xbb_c00134{left:459.274500px;}
.x91_c00134{left:461.274000px;}
.x4e_c00134{left:464.213392px;}
.x80_c00134{left:465.516597px;}
.xa6_c00134{left:469.027500px;}
.x42_c00134{left:470.408988px;}
.x5b_c00134{left:473.307000px;}
.xb7_c00134{left:474.804140px;}
.x9d_c00134{left:482.305500px;}
.xb_c00134{left:483.988500px;}
.x33_c00134{left:488.423818px;}
.x8b_c00134{left:490.398000px;}
.x81_c00134{left:491.708682px;}
.x67_c00134{left:494.203500px;}
.x53_c00134{left:498.156882px;}
.x43_c00134{left:499.677259px;}
.x73_c00134{left:502.393899px;}
.x2a_c00134{left:503.808535px;}
.xc_c00134{left:505.044000px;}
.x97_c00134{left:507.950562px;}
.x34_c00134{left:510.012877px;}
.xb1_c00134{left:511.743828px;}
.xd_c00134{left:513.618000px;}
.x1f_c00134{left:515.729925px;}
.x44_c00134{left:518.673972px;}
.x6f_c00134{left:519.896136px;}
.x79_c00134{left:523.052312px;}
.x35_c00134{left:527.400499px;}
.x82_c00134{left:528.987767px;}
.x39_c00134{left:533.436124px;}
.x4f_c00134{left:536.631837px;}
.x86_c00134{left:538.475285px;}
.x45_c00134{left:540.717058px;}
.x3a_c00134{left:546.556089px;}
.xb2_c00134{left:549.111416px;}
.x5c_c00134{left:554.086500px;}
.x54_c00134{left:562.966287px;}
.x20_c00134{left:571.268094px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
._0_c00134{width:12.937505pt;}
.fs15_c00134{font-size:22.400000pt;}
.fs6_c00134{font-size:23.333333pt;}
.fs17_c00134{font-size:42.933333pt;}
.fs12_c00134{font-size:42.951383pt;}
.fs13_c00134{font-size:43.885109pt;}
.fs16_c00134{font-size:44.800000pt;}
.fs11_c00134{font-size:44.818834pt;}
.fs8_c00134{font-size:45.745428pt;}
.fs18_c00134{font-size:45.753909pt;}
.fs4_c00134{font-size:56.012347pt;}
.fsb_c00134{font-size:58.815551pt;}
.fse_c00134{font-size:59.756744pt;}
.fs9_c00134{font-size:60.682711pt;}
.fsf_c00134{font-size:60.690443pt;}
.fs10_c00134{font-size:60.693961pt;}
.fs0_c00134{font-size:61.612319pt;}
.fs2_c00134{font-size:61.613581pt;}
.fsa_c00134{font-size:61.616291pt;}
.fsc_c00134{font-size:62.556123pt;}
.fsd_c00134{font-size:62.557842pt;}
.fs1_c00134{font-size:63.480660pt;}
.fs7_c00134{font-size:64.417032pt;}
.fs3_c00134{font-size:65.347738pt;}
.fs5_c00134{font-size:71.889121pt;}
.fs14_c00134{font-size:92.400000pt;}
.y0_c00134{bottom:0.000000pt;}
.y13e_c00134{bottom:144.164587pt;}
.y13d_c00134{bottom:144.311627pt;}
.y13c_c00134{bottom:145.204227pt;}
.y13b_c00134{bottom:146.604267pt;}
.y13a_c00134{bottom:147.145747pt;}
.y139_c00134{bottom:148.955387pt;}
.y138_c00134{bottom:150.341067pt;}
.y137_c00134{bottom:150.938027pt;}
.y136_c00134{bottom:152.075467pt;}
.y135_c00134{bottom:152.770107pt;}
.y134_c00134{bottom:154.086667pt;}
.y133_c00134{bottom:158.569333pt;}
.y132_c00134{bottom:159.544000pt;}
.y131_c00134{bottom:160.021333pt;}
.y130_c00134{bottom:161.257333pt;}
.y12f_c00134{bottom:161.989333pt;}
.y12e_c00134{bottom:162.634667pt;}
.y12d_c00134{bottom:163.617333pt;}
.y12c_c00134{bottom:167.850667pt;}
.y12b_c00134{bottom:168.968000pt;}
.y127_c00134{bottom:173.635000pt;}
.y12a_c00134{bottom:174.000000pt;}
.y126_c00134{bottom:174.590083pt;}
.y125_c00134{bottom:175.247963pt;}
.y124_c00134{bottom:176.273305pt;}
.y123_c00134{bottom:176.728293pt;}
.y122_c00134{bottom:177.058364pt;}
.y121_c00134{bottom:177.745767pt;}
.y120_c00134{bottom:178.185384pt;}
.y11f_c00134{bottom:178.959925pt;}
.y11e_c00134{bottom:179.380924pt;}
.y11d_c00134{bottom:180.146475pt;}
.y11c_c00134{bottom:180.606548pt;}
.y11b_c00134{bottom:181.967395pt;}
.y11a_c00134{bottom:182.504881pt;}
.y119_c00134{bottom:182.524621pt;}
.y118_c00134{bottom:183.595051pt;}
.y117_c00134{bottom:184.073897pt;}
.y116_c00134{bottom:188.282388pt;}
.y129_c00134{bottom:188.640000pt;}
.y115_c00134{bottom:188.836395pt;}
.y114_c00134{bottom:189.212280pt;}
.y113_c00134{bottom:189.909317pt;}
.y112_c00134{bottom:190.378217pt;}
.y111_c00134{bottom:190.795109pt;}
.y110_c00134{bottom:191.635621pt;}
.y10f_c00134{bottom:192.163121pt;}
.y10e_c00134{bottom:192.785531pt;}
.y10d_c00134{bottom:193.369872pt;}
.y10c_c00134{bottom:194.121836pt;}
.y10b_c00134{bottom:196.201251pt;}
.y10a_c00134{bottom:197.025716pt;}
.y109_c00134{bottom:198.022309pt;}
.y108_c00134{bottom:198.526783pt;}
.y107_c00134{bottom:199.528209pt;}
.y106_c00134{bottom:200.160711pt;}
.y128_c00134{bottom:200.640000pt;}
.y105_c00134{bottom:205.147727pt;}
.y104_c00134{bottom:206.396660pt;}
.y103_c00134{bottom:207.799873pt;}
.y102_c00134{bottom:209.284171pt;}
.y101_c00134{bottom:209.887100pt;}
.y100_c00134{bottom:211.603707pt;}
.yff_c00134{bottom:212.034531pt;}
.yfe_c00134{bottom:212.854573pt;}
.yfd_c00134{bottom:213.803067pt;}
.yfc_c00134{bottom:214.387861pt;}
.yfb_c00134{bottom:215.216565pt;}
.yfa_c00134{bottom:216.250667pt;}
.yf9_c00134{bottom:252.773653pt;}
.yf8_c00134{bottom:253.659293pt;}
.yf7_c00134{bottom:254.310293pt;}
.yf6_c00134{bottom:254.911493pt;}
.yf5_c00134{bottom:255.846653pt;}
.yf4_c00134{bottom:257.192453pt;}
.yf3_c00134{bottom:257.868453pt;}
.yf2_c00134{bottom:258.858373pt;}
.yf1_c00134{bottom:259.493613pt;}
.yf0_c00134{bottom:260.343693pt;}
.yef_c00134{bottom:260.983333pt;}
.yee_c00134{bottom:261.653933pt;}
.yed_c00134{bottom:263.465493pt;}
.yec_c00134{bottom:264.005333pt;}
.yeb_c00134{bottom:272.659339pt;}
.yea_c00134{bottom:273.211275pt;}
.ye9_c00134{bottom:275.469643pt;}
.ye8_c00134{bottom:276.328347pt;}
.ye7_c00134{bottom:278.448469pt;}
.ye6_c00134{bottom:279.268571pt;}
.ye5_c00134{bottom:280.854640pt;}
.ye4_c00134{bottom:281.607728pt;}
.ye3_c00134{bottom:282.327253pt;}
.ye2_c00134{bottom:283.195477pt;}
.ye1_c00134{bottom:284.166667pt;}
.ye0_c00134{bottom:292.753291pt;}
.ydf_c00134{bottom:293.851227pt;}
.yde_c00134{bottom:294.333200pt;}
.ydd_c00134{bottom:295.716400pt;}
.ydc_c00134{bottom:296.078011pt;}
.ydb_c00134{bottom:297.378779pt;}
.yda_c00134{bottom:298.427435pt;}
.yd9_c00134{bottom:298.998784pt;}
.yd8_c00134{bottom:300.143200pt;}
.yd7_c00134{bottom:300.518251pt;}
.yd6_c00134{bottom:301.376208pt;}
.yd5_c00134{bottom:301.996837pt;}
.yd4_c00134{bottom:302.729392pt;}
.yd3_c00134{bottom:303.358011pt;}
.yd2_c00134{bottom:311.942315pt;}
.yd1_c00134{bottom:312.391621pt;}
.yd0_c00134{bottom:313.849301pt;}
.ycf_c00134{bottom:314.414117pt;}
.yce_c00134{bottom:315.388704pt;}
.ycd_c00134{bottom:315.585712pt;}
.ycc_c00134{bottom:316.822901pt;}
.ycb_c00134{bottom:317.181563pt;}
.yca_c00134{bottom:317.925131pt;}
.yc9_c00134{bottom:318.604336pt;}
.yc8_c00134{bottom:320.109579pt;}
.yc7_c00134{bottom:321.295957pt;}
.yc6_c00134{bottom:321.991365pt;}
.yc5_c00134{bottom:323.289333pt;}
.yc4_c00134{bottom:332.121020pt;}
.yc3_c00134{bottom:333.349484pt;}
.yc2_c00134{bottom:334.365260pt;}
.yc1_c00134{bottom:335.657300pt;}
.yc0_c00134{bottom:336.286508pt;}
.ybf_c00134{bottom:336.721208pt;}
.ybe_c00134{bottom:337.654148pt;}
.ybd_c00134{bottom:338.261468pt;}
.ybc_c00134{bottom:340.483820pt;}
.ybb_c00134{bottom:342.237344pt;}
.yba_c00134{bottom:343.688000pt;}
.yb9_c00134{bottom:352.669599pt;}
.yb8_c00134{bottom:353.285371pt;}
.yb7_c00134{bottom:354.466977pt;}
.yb6_c00134{bottom:355.294885pt;}
.yb5_c00134{bottom:356.878763pt;}
.yb4_c00134{bottom:357.655124pt;}
.yb3_c00134{bottom:358.095664pt;}
.yb2_c00134{bottom:359.186995pt;}
.yb1_c00134{bottom:359.904357pt;}
.yb0_c00134{bottom:360.506713pt;}
.yaf_c00134{bottom:362.134395pt;}
.yae_c00134{bottom:363.585664pt;}
.yad_c00134{bottom:372.815448pt;}
.yac_c00134{bottom:373.709668pt;}
.yab_c00134{bottom:374.338533pt;}
.yaa_c00134{bottom:375.115508pt;}
.ya9_c00134{bottom:376.665869pt;}
.ya8_c00134{bottom:378.564716pt;}
.ya7_c00134{bottom:379.148152pt;}
.ya6_c00134{bottom:379.677343pt;}
.ya5_c00134{bottom:380.944012pt;}
.ya4_c00134{bottom:382.066037pt;}
.ya3_c00134{bottom:383.531320pt;}
.ya2_c00134{bottom:393.761139pt;}
.ya1_c00134{bottom:394.297161pt;}
.ya0_c00134{bottom:395.766547pt;}
.y9f_c00134{bottom:396.475657pt;}
.y9e_c00134{bottom:398.408512pt;}
.y9d_c00134{bottom:398.959959pt;}
.y9c_c00134{bottom:400.608273pt;}
.y9b_c00134{bottom:400.755327pt;}
.y9a_c00134{bottom:402.366476pt;}
.y99_c00134{bottom:402.908371pt;}
.y98_c00134{bottom:403.915943pt;}
.y97_c00134{bottom:413.619573pt;}
.y96_c00134{bottom:414.294121pt;}
.y95_c00134{bottom:415.400807pt;}
.y94_c00134{bottom:415.713640pt;}
.y93_c00134{bottom:416.568823pt;}
.y92_c00134{bottom:417.626520pt;}
.y91_c00134{bottom:418.527501pt;}
.y90_c00134{bottom:420.692941pt;}
.y8f_c00134{bottom:421.087912pt;}
.y8e_c00134{bottom:422.801267pt;}
.y8d_c00134{bottom:423.599611pt;}
.y8c_c00134{bottom:433.608032pt;}
.y8b_c00134{bottom:434.293297pt;}
.y8a_c00134{bottom:435.367784pt;}
.y89_c00134{bottom:436.254889pt;}
.y88_c00134{bottom:437.393743pt;}
.y87_c00134{bottom:438.680756pt;}
.y86_c00134{bottom:439.135877pt;}
.y85_c00134{bottom:439.850305pt;}
.y84_c00134{bottom:441.452360pt;}
.y83_c00134{bottom:442.856040pt;}
.y82_c00134{bottom:443.279239pt;}
.y81_c00134{bottom:453.409697pt;}
.y80_c00134{bottom:453.784965pt;}
.y7f_c00134{bottom:454.293296pt;}
.y7e_c00134{bottom:455.486812pt;}
.y7d_c00134{bottom:455.917648pt;}
.y7c_c00134{bottom:457.265172pt;}
.y7b_c00134{bottom:457.756053pt;}
.y7a_c00134{bottom:458.096944pt;}
.y79_c00134{bottom:459.347040pt;}
.y78_c00134{bottom:460.207792pt;}
.y77_c00134{bottom:460.942013pt;}
.y76_c00134{bottom:461.398272pt;}
.y75_c00134{bottom:462.310667pt;}
.y74_c00134{bottom:467.280000pt;}
.y73_c00134{bottom:489.760933pt;}
.y72_c00134{bottom:491.556033pt;}
.y71_c00134{bottom:492.123767pt;}
.y70_c00134{bottom:493.432567pt;}
.y6f_c00134{bottom:493.721667pt;}
.y6e_c00134{bottom:495.259600pt;}
.y6d_c00134{bottom:495.904700pt;}
.y6c_c00134{bottom:496.974167pt;}
.y6b_c00134{bottom:497.490600pt;}
.y6a_c00134{bottom:498.012600pt;}
.y69_c00134{bottom:498.972467pt;}
.y68_c00134{bottom:499.393533pt;}
.y67_c00134{bottom:500.164000pt;}
.y66_c00134{bottom:509.752229pt;}
.y65_c00134{bottom:510.773737pt;}
.y64_c00134{bottom:511.135415pt;}
.y63_c00134{bottom:512.231160pt;}
.y62_c00134{bottom:513.174773pt;}
.y61_c00134{bottom:514.010329pt;}
.y60_c00134{bottom:517.177433pt;}
.y5f_c00134{bottom:529.852449pt;}
.y5e_c00134{bottom:531.333651pt;}
.y5d_c00134{bottom:531.582176pt;}
.y5c_c00134{bottom:532.606793pt;}
.y5b_c00134{bottom:533.429557pt;}
.y5a_c00134{bottom:534.227647pt;}
.y59_c00134{bottom:536.087348pt;}
.y58_c00134{bottom:537.142660pt;}
.y57_c00134{bottom:538.314517pt;}
.y56_c00134{bottom:539.262328pt;}
.y55_c00134{bottom:550.133165pt;}
.y54_c00134{bottom:550.583320pt;}
.y53_c00134{bottom:550.971273pt;}
.y52_c00134{bottom:551.569637pt;}
.y51_c00134{bottom:552.316351pt;}
.y50_c00134{bottom:553.458017pt;}
.y4f_c00134{bottom:553.937943pt;}
.y4e_c00134{bottom:554.757749pt;}
.y4d_c00134{bottom:555.758840pt;}
.y4c_c00134{bottom:556.393191pt;}
.y4b_c00134{bottom:556.640232pt;}
.y4a_c00134{bottom:558.044571pt;}
.y49_c00134{bottom:559.424935pt;}
.y48_c00134{bottom:569.695508pt;}
.y47_c00134{bottom:569.963091pt;}
.y46_c00134{bottom:570.579196pt;}
.y45_c00134{bottom:571.540744pt;}
.y44_c00134{bottom:572.174171pt;}
.y43_c00134{bottom:572.791956pt;}
.y42_c00134{bottom:574.310040pt;}
.y41_c00134{bottom:575.182500pt;}
.y40_c00134{bottom:576.275871pt;}
.y3f_c00134{bottom:577.026700pt;}
.y3e_c00134{bottom:577.368205pt;}
.y3d_c00134{bottom:578.424441pt;}
.y3c_c00134{bottom:579.109709pt;}
.y3b_c00134{bottom:590.418056pt;}
.y3a_c00134{bottom:590.758632pt;}
.y39_c00134{bottom:591.180303pt;}
.y38_c00134{bottom:591.773129pt;}
.y37_c00134{bottom:592.520155pt;}
.y36_c00134{bottom:592.989376pt;}
.y35_c00134{bottom:594.246369pt;}
.y34_c00134{bottom:595.208097pt;}
.y33_c00134{bottom:595.916969pt;}
.y32_c00134{bottom:596.242828pt;}
.y31_c00134{bottom:597.388788pt;}
.y30_c00134{bottom:598.497827pt;}
.y2f_c00134{bottom:599.030867pt;}
.y2e_c00134{bottom:611.059344pt;}
.y2d_c00134{bottom:611.453025pt;}
.y2c_c00134{bottom:612.098527pt;}
.y2b_c00134{bottom:612.459375pt;}
.y2a_c00134{bottom:613.583757pt;}
.y29_c00134{bottom:614.457653pt;}
.y28_c00134{bottom:615.168569pt;}
.y27_c00134{bottom:615.990127pt;}
.y26_c00134{bottom:616.774231pt;}
.y25_c00134{bottom:617.496056pt;}
.y24_c00134{bottom:618.340479pt;}
.y23_c00134{bottom:619.195317pt;}
.y22_c00134{bottom:629.620836pt;}
.y21_c00134{bottom:630.756259pt;}
.y20_c00134{bottom:631.396619pt;}
.y1f_c00134{bottom:631.960704pt;}
.y1e_c00134{bottom:633.336140pt;}
.y1d_c00134{bottom:633.733127pt;}
.y1c_c00134{bottom:634.601471pt;}
.y1b_c00134{bottom:634.963367pt;}
.y1a_c00134{bottom:636.670855pt;}
.y19_c00134{bottom:638.111740pt;}
.y18_c00134{bottom:638.642247pt;}
.y17_c00134{bottom:650.855629pt;}
.y16_c00134{bottom:652.088833pt;}
.y15_c00134{bottom:652.534957pt;}
.y14_c00134{bottom:653.105093pt;}
.y13_c00134{bottom:654.139441pt;}
.y12_c00134{bottom:655.181545pt;}
.y11_c00134{bottom:655.971369pt;}
.y10_c00134{bottom:656.668317pt;}
.yf_c00134{bottom:657.578877pt;}
.ye_c00134{bottom:658.805333pt;}
.yd_c00134{bottom:689.619760pt;}
.yc_c00134{bottom:689.772187pt;}
.yb_c00134{bottom:690.146507pt;}
.ya_c00134{bottom:691.181093pt;}
.y9_c00134{bottom:691.636427pt;}
.y8_c00134{bottom:692.651627pt;}
.y7_c00134{bottom:693.039493pt;}
.y6_c00134{bottom:693.475440pt;}
.y5_c00134{bottom:694.093840pt;}
.y4_c00134{bottom:694.401840pt;}
.y3_c00134{bottom:695.424907pt;}
.y2_c00134{bottom:696.549707pt;}
.y1_c00134{bottom:696.724000pt;}
.h17_c00134{height:22.400000pt;}
.h8_c00134{height:23.333333pt;}
.h19_c00134{height:42.933333pt;}
.h14_c00134{height:42.951383pt;}
.h15_c00134{height:43.885109pt;}
.h18_c00134{height:44.800000pt;}
.h13_c00134{height:44.818834pt;}
.ha_c00134{height:45.745428pt;}
.h1a_c00134{height:45.753909pt;}
.h6_c00134{height:56.012347pt;}
.hd_c00134{height:58.815551pt;}
.h10_c00134{height:59.756744pt;}
.hb_c00134{height:60.682711pt;}
.h11_c00134{height:60.690443pt;}
.h12_c00134{height:60.693961pt;}
.h2_c00134{height:61.612319pt;}
.h4_c00134{height:61.613581pt;}
.hc_c00134{height:61.616291pt;}
.he_c00134{height:62.556123pt;}
.hf_c00134{height:62.557842pt;}
.h3_c00134{height:63.480660pt;}
.h9_c00134{height:64.417032pt;}
.h5_c00134{height:65.347738pt;}
.h7_c00134{height:71.889121pt;}
.h16_c00134{height:92.400000pt;}
.h1_c00134{height:893.333333pt;}
.h0_c00134{height:893.466667pt;}
.w0_c00134{width:627.066667pt;}
.w1_c00134{width:627.333333pt;}
.x0_c00134{left:0.000000pt;}
.x98_c00134{left:37.452000pt;}
.x87_c00134{left:53.001333pt;}
.xbc_c00134{left:53.988000pt;}
.xac_c00134{left:63.822701pt;}
.x46_c00134{left:67.917936pt;}
.xa7_c00134{left:70.664000pt;}
.x99_c00134{left:72.137333pt;}
.x7a_c00134{left:73.383872pt;}
.x68_c00134{left:75.167624pt;}
.x2b_c00134{left:77.277981pt;}
.xe_c00134{left:78.733333pt;}
.xad_c00134{left:86.415359pt;}
.xb3_c00134{left:88.570163pt;}
.x5e_c00134{left:90.710667pt;}
.x69_c00134{left:92.117524pt;}
.x92_c00134{left:95.222277pt;}
.xbd_c00134{left:97.873333pt;}
.x1_c00134{left:101.337333pt;}
.x9a_c00134{left:103.145333pt;}
.x36_c00134{left:106.243539pt;}
.x55_c00134{left:107.217333pt;}
.x47_c00134{left:109.113533pt;}
.x2_c00134{left:110.052000pt;}
.xb8_c00134{left:111.613333pt;}
.x74_c00134{left:113.108979pt;}
.x17_c00134{left:115.679715pt;}
.x21_c00134{left:116.862087pt;}
.x8c_c00134{left:119.233333pt;}
.x93_c00134{left:121.384944pt;}
.x56_c00134{left:124.060000pt;}
.x7b_c00134{left:127.637540pt;}
.x9b_c00134{left:128.842667pt;}
.x5f_c00134{left:130.380000pt;}
.x75_c00134{left:133.943537pt;}
.xa8_c00134{left:134.898667pt;}
.xf_c00134{left:137.136000pt;}
.x18_c00134{left:138.718735pt;}
.xae_c00134{left:140.183572pt;}
.x8d_c00134{left:144.069333pt;}
.x6a_c00134{left:148.274948pt;}
.x60_c00134{left:150.217333pt;}
.x2c_c00134{left:151.915080pt;}
.x22_c00134{left:155.230608pt;}
.xbe_c00134{left:158.942667pt;}
.x48_c00134{left:160.088739pt;}
.x57_c00134{left:162.454667pt;}
.x3_c00134{left:166.292000pt;}
.x7c_c00134{left:169.171040pt;}
.x88_c00134{left:171.674667pt;}
.x9e_c00134{left:172.778667pt;}
.x70_c00134{left:174.796836pt;}
.xaf_c00134{left:175.791283pt;}
.xbf_c00134{left:178.841333pt;}
.x10_c00134{left:180.496000pt;}
.x61_c00134{left:182.140000pt;}
.x58_c00134{left:183.334667pt;}
.x8e_c00134{left:186.440000pt;}
.x23_c00134{left:188.015241pt;}
.x50_c00134{left:191.043299pt;}
.x9f_c00134{left:194.100000pt;}
.x76_c00134{left:195.931275pt;}
.x3b_c00134{left:197.582535pt;}
.x37_c00134{left:199.663619pt;}
.x19_c00134{left:201.361436pt;}
.x2d_c00134{left:204.007321pt;}
.x49_c00134{left:205.958807pt;}
.x3c_c00134{left:208.330087pt;}
.x83_c00134{left:210.665323pt;}
.x6b_c00134{left:212.361337pt;}
.x11_c00134{left:213.684000pt;}
.x7d_c00134{left:216.065383pt;}
.x4_c00134{left:217.445333pt;}
.x2e_c00134{left:218.825680pt;}
.xa0_c00134{left:222.436000pt;}
.x24_c00134{left:223.638485pt;}
.xc0_c00134{left:225.030667pt;}
.x94_c00134{left:228.458277pt;}
.xa9_c00134{left:230.904000pt;}
.x5_c00134{left:232.845333pt;}
.x3d_c00134{left:235.932939pt;}
.x84_c00134{left:237.214869pt;}
.x6c_c00134{left:240.929352pt;}
.xa1_c00134{left:243.610667pt;}
.xb4_c00134{left:244.652544pt;}
.x38_c00134{left:247.218964pt;}
.x95_c00134{left:248.863611pt;}
.x12_c00134{left:251.294667pt;}
.x89_c00134{left:253.984000pt;}
.x7e_c00134{left:257.248247pt;}
.x6d_c00134{left:259.151191pt;}
.x25_c00134{left:260.981701pt;}
.xb9_c00134{left:262.789333pt;}
.x6_c00134{left:263.765333pt;}
.x77_c00134{left:264.942491pt;}
.x59_c00134{left:272.574667pt;}
.x62_c00134{left:273.916000pt;}
.x1a_c00134{left:275.619661pt;}
.xa2_c00134{left:276.608000pt;}
.x5d_c00134{left:277.920000pt;}
.x3e_c00134{left:279.475119pt;}
.x7_c00134{left:285.562667pt;}
.x4a_c00134{left:286.830085pt;}
.x63_c00134{left:288.737333pt;}
.xaa_c00134{left:290.097333pt;}
.x1b_c00134{left:291.328323pt;}
.x26_c00134{left:293.310363pt;}
.x2f_c00134{left:294.757417pt;}
.xba_c00134{left:297.876000pt;}
.xa3_c00134{left:299.141333pt;}
.x13_c00134{left:300.918667pt;}
.x8f_c00134{left:303.821333pt;}
.x8_c00134{left:304.956000pt;}
.xb0_c00134{left:306.364405pt;}
.x64_c00134{left:310.080000pt;}
.x8a_c00134{left:311.030667pt;}
.x71_c00134{left:313.227791pt;}
.x3f_c00134{left:315.146968pt;}
.x9c_c00134{left:317.392000pt;}
.x4b_c00134{left:321.531296pt;}
.x51_c00134{left:322.992316pt;}
.x7f_c00134{left:327.568443pt;}
.x1c_c00134{left:329.057393pt;}
.xb5_c00134{left:330.630827pt;}
.x27_c00134{left:333.018856pt;}
.x5a_c00134{left:334.092000pt;}
.x40_c00134{left:336.031433pt;}
.xb6_c00134{left:342.840856pt;}
.xa4_c00134{left:344.001333pt;}
.x1d_c00134{left:346.309999pt;}
.x90_c00134{left:348.006667pt;}
.x14_c00134{left:350.173333pt;}
.x30_c00134{left:351.882880pt;}
.x9_c00134{left:355.716000pt;}
.x4c_c00134{left:357.280451pt;}
.x78_c00134{left:360.485231pt;}
.xab_c00134{left:362.070667pt;}
.x65_c00134{left:368.668000pt;}
.x31_c00134{left:373.210432pt;}
.xa5_c00134{left:375.173333pt;}
.x15_c00134{left:377.322667pt;}
.xa_c00134{left:378.482667pt;}
.xc1_c00134{left:379.822667pt;}
.x85_c00134{left:381.380288pt;}
.x28_c00134{left:384.147125pt;}
.x41_c00134{left:385.696028pt;}
.x66_c00134{left:387.400000pt;}
.x72_c00134{left:389.784295pt;}
.x6e_c00134{left:391.709119pt;}
.x96_c00134{left:395.086277pt;}
.x52_c00134{left:397.170335pt;}
.x16_c00134{left:398.566667pt;}
.x29_c00134{left:400.568123pt;}
.x4d_c00134{left:401.815908pt;}
.x1e_c00134{left:406.090145pt;}
.x32_c00134{left:407.195065pt;}
.xbb_c00134{left:408.244000pt;}
.x91_c00134{left:410.021333pt;}
.x4e_c00134{left:412.634127pt;}
.x80_c00134{left:413.792531pt;}
.xa6_c00134{left:416.913333pt;}
.x42_c00134{left:418.141323pt;}
.x5b_c00134{left:420.717333pt;}
.xb7_c00134{left:422.048124pt;}
.x9d_c00134{left:428.716000pt;}
.xb_c00134{left:430.212000pt;}
.x33_c00134{left:434.154505pt;}
.x8b_c00134{left:435.909333pt;}
.x81_c00134{left:437.074384pt;}
.x67_c00134{left:439.292000pt;}
.x53_c00134{left:442.806117pt;}
.x43_c00134{left:444.157564pt;}
.x73_c00134{left:446.572355pt;}
.x2a_c00134{left:447.829809pt;}
.xc_c00134{left:448.928000pt;}
.x97_c00134{left:451.511611pt;}
.x34_c00134{left:453.344780pt;}
.xb1_c00134{left:454.883403pt;}
.xd_c00134{left:456.549333pt;}
.x1f_c00134{left:458.426600pt;}
.x44_c00134{left:461.043531pt;}
.x6f_c00134{left:462.129899pt;}
.x79_c00134{left:464.935388pt;}
.x35_c00134{left:468.800444pt;}
.x82_c00134{left:470.211348pt;}
.x39_c00134{left:474.165444pt;}
.x4f_c00134{left:477.006077pt;}
.x86_c00134{left:478.644697pt;}
.x45_c00134{left:480.637385pt;}
.x3a_c00134{left:485.827635pt;}
.xb2_c00134{left:488.099036pt;}
.x5c_c00134{left:492.521333pt;}
.x54_c00134{left:500.414477pt;}
.x20_c00134{left:507.793861pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m2_c00135{transform:matrix(0.065265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065265,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.071660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071660,0.000000,0.000000,0.250000,0,0);}
.m15f_c00135{transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);}
.m80_c00135{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);}
.m53_c00135{transform:matrix(0.126395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126395,0.000000,0.000000,0.250000,0,0);}
.m125_c00135{transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);}
.mf4_c00135{transform:matrix(0.137830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137830,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{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);}
.m13b_c00135{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m102_c00135{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);}
.m36_c00135{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.mcb_c00135{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);}
.m6a_c00135{transform:matrix(0.141955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141955,0.000000,0.000000,0.250000,0,0);}
.m101_c00135{transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{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);}
.m5a_c00135{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);}
.m32_c00135{transform:matrix(0.145980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145980,0.000000,0.000000,0.250000,0,0);}
.m9f_c00135{transform:matrix(0.146685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146685,0.000000,0.000000,0.250000,0,0);}
.mb0_c00135{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);}
.mb3_c00135{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);}
.m13f_c00135{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m4f_c00135{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);}
.m153_c00135{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);}
.me5_c00135{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);}
.meb_c00135{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);}
.m8f_c00135{transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);}
.mc3_c00135{transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m15a_c00135{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);}
.m10_c00135{transform:matrix(0.153435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153435,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.mfb_c00135{transform:matrix(0.154540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154540,0.000000,0.000000,0.250000,0,0);}
.mc1_c00135{transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{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);}
.m64_c00135{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);}
.mf6_c00135{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);}
.mea_c00135{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);}
.m48_c00135{transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{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);}
.m13_c00135{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);}
.m5d_c00135{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m79_c00135{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);}
.m4a_c00135{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m115_c00135{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);}
.m124_c00135{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);}
.m37_c00135{transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{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);}
.m82_c00135{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);}
.m12b_c00135{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);}
.m118_c00135{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);}
.m62_c00135{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);}
.me0_c00135{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);}
.m5e_c00135{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);}
.m128_c00135{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);}
.m120_c00135{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);}
.m25_c00135{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);}
.m164_c00135{transform:matrix(0.160893,0.001448,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160893,0.001448,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160893,0.001448,-0.002250,0.249990,0,0);}
.m56_c00135{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);}
.m90_c00135{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);}
.m166_c00135{transform:matrix(0.161483,0.001453,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161483,0.001453,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161483,0.001453,-0.002250,0.249990,0,0);}
.m14e_c00135{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);}
.m14f_c00135{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);}
.me2_c00135{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);}
.m14c_c00135{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);}
.mb9_c00135{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00135{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);}
.m16e_c00135{transform:matrix(0.163258,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163258,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163258,0.001469,-0.002250,0.249990,0,0);}
.mda_c00135{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);}
.m26_c00135{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);}
.m45_c00135{transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);}
.m116_c00135{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);}
.m130_c00135{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);}
.m61_c00135{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);}
.m91_c00135{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);}
.m88_c00135{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);}
.mc9_c00135{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);}
.m9_c00135{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);}
.m12a_c00135{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);}
.m145_c00135{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);}
.m35_c00135{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);}
.m119_c00135{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);}
.mc2_c00135{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);}
.m147_c00135{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);}
.m40_c00135{transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);}
.mff_c00135{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);}
.mad_c00135{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);}
.m129_c00135{transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);}
.me3_c00135{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);}
.mfa_c00135{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);}
.mf7_c00135{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);}
.m137_c00135{transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);}
.m9b_c00135{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);}
.m9d_c00135{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m92_c00135{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);}
.m138_c00135{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);}
.m162_c00135{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);}
.m111_c00135{transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);}
.mf5_c00135{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);}
.mee_c00135{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);}
.m123_c00135{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);}
.mc7_c00135{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);}
.m126_c00135{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);}
.m44_c00135{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);}
.m144_c00135{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.mcc_c00135{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);}
.m121_c00135{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);}
.mb1_c00135{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);}
.mbf_c00135{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);}
.m11e_c00135{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);}
.m139_c00135{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);}
.m30_c00135{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);}
.m5c_c00135{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);}
.m14a_c00135{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);}
.mc8_c00135{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);}
.m151_c00135{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);}
.m23_c00135{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);}
.m100_c00135{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);}
.mc0_c00135{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);}
.m163_c00135{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);}
.m15d_c00135{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);}
.m169_c00135{transform:matrix(0.175293,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175293,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175293,0.001578,-0.002250,0.249990,0,0);}
.m6f_c00135{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);}
.mef_c00135{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);}
.m86_c00135{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);}
.m22_c00135{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_c00135{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);}
.mf9_c00135{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);}
.mf1_c00135{transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);}
.m27_c00135{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);}
.me6_c00135{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);}
.m157_c00135{transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);}
.ma6_c00135{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);}
.mc6_c00135{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);}
.m2c_c00135{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.m50_c00135{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);}
.ma7_c00135{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);}
.mab_c00135{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);}
.mdc_c00135{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);}
.mbd_c00135{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);}
.mbe_c00135{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);}
.m15_c00135{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);}
.ma5_c00135{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);}
.m14_c00135{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);}
.m2f_c00135{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);}
.m65_c00135{transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);}
.m142_c00135{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);}
.me1_c00135{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);}
.me_c00135{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);}
.m24_c00135{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);}
.md1_c00135{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);}
.m159_c00135{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);}
.m15e_c00135{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);}
.mc_c00135{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);}
.m17_c00135{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);}
.ma9_c00135{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{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);}
.mba_c00135{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);}
.mac_c00135{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);}
.m109_c00135{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);}
.mfd_c00135{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);}
.mce_c00135{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);}
.mf3_c00135{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);}
.m108_c00135{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);}
.m13d_c00135{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);}
.m154_c00135{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);}
.m127_c00135{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);}
.maf_c00135{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);}
.m7e_c00135{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);}
.me7_c00135{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);}
.m5f_c00135{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);}
.m2a_c00135{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);}
.me4_c00135{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);}
.m7f_c00135{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);}
.m2b_c00135{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);}
.m14b_c00135{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.m160_c00135{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);}
.maa_c00135{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);}
.mb8_c00135{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);}
.m12c_c00135{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);}
.m8a_c00135{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_c00135{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);}
.ma4_c00135{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);}
.m87_c00135{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);}
.m4d_c00135{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);}
.mcf_c00135{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);}
.m12_c00135{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);}
.m33_c00135{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);}
.m13a_c00135{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);}
.m58_c00135{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);}
.m103_c00135{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);}
.m11a_c00135{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);}
.m6c_c00135{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);}
.mfc_c00135{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);}
.mf2_c00135{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);}
.m131_c00135{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);}
.m1d_c00135{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);}
.m39_c00135{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);}
.m7c_c00135{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);}
.mbb_c00135{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);}
.mb2_c00135{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);}
.m38_c00135{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);}
.m2d_c00135{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);}
.mdd_c00135{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);}
.m85_c00135{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);}
.m113_c00135{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);}
.md2_c00135{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);}
.m3c_c00135{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);}
.mc5_c00135{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);}
.m165_c00135{transform:matrix(0.190107,0.001711,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190107,0.001711,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190107,0.001711,-0.002250,0.249990,0,0);}
.m54_c00135{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);}
.mb7_c00135{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);}
.m11c_c00135{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);}
.m6b_c00135{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);}
.m68_c00135{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);}
.m148_c00135{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);}
.m1b_c00135{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);}
.m6d_c00135{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);}
.m114_c00135{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);}
.m146_c00135{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);}
.mb5_c00135{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);}
.me8_c00135{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);}
.m10b_c00135{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);}
.m89_c00135{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);}
.m60_c00135{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);}
.m8c_c00135{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);}
.m3f_c00135{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);}
.mae_c00135{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);}
.mca_c00135{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);}
.m5b_c00135{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);}
.m158_c00135{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);}
.m57_c00135{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);}
.m12f_c00135{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);}
.m96_c00135{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);}
.m11d_c00135{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);}
.me9_c00135{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);}
.m150_c00135{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);}
.md0_c00135{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);}
.m67_c00135{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);}
.mcd_c00135{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);}
.m11f_c00135{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_c00135{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);}
.m10f_c00135{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);}
.m42_c00135{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);}
.m9c_c00135{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);}
.m117_c00135{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);}
.m28_c00135{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);}
.med_c00135{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);}
.m70_c00135{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);}
.m1f_c00135{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);}
.m152_c00135{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);}
.m170_c00135{transform:matrix(0.199052,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199052,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199052,0.001791,-0.002250,0.249990,0,0);}
.m4b_c00135{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);}
.mb6_c00135{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);}
.m105_c00135{transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);}
.m161_c00135{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);}
.m12e_c00135{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);}
.m59_c00135{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);}
.m9e_c00135{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);}
.m93_c00135{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);}
.m55_c00135{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);}
.m107_c00135{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);}
.mb_c00135{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);}
.md7_c00135{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);}
.ma2_c00135{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);}
.m69_c00135{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);}
.mec_c00135{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);}
.m104_c00135{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.m72_c00135{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);}
.m7d_c00135{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);}
.m8b_c00135{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);}
.m4e_c00135{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);}
.m16b_c00135{transform:matrix(0.205232,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205232,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205232,0.001847,-0.002250,0.249990,0,0);}
.m106_c00135{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);}
.m5_c00135{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);}
.m3e_c00135{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);}
.m7a_c00135{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);}
.m155_c00135{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);}
.m7b_c00135{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);}
.m136_c00135{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.mbc_c00135{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);}
.m4c_c00135{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);}
.m31_c00135{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);}
.mdf_c00135{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);}
.m135_c00135{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);}
.ma8_c00135{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);}
.m11b_c00135{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);}
.m20_c00135{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);}
.ma0_c00135{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);}
.m76_c00135{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);}
.md6_c00135{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);}
.m99_c00135{transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);}
.mc4_c00135{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);}
.m3d_c00135{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);}
.m168_c00135{transform:matrix(0.211826,0.001906,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211826,0.001906,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211826,0.001906,-0.002250,0.249990,0,0);}
.m29_c00135{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);}
.m3a_c00135{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);}
.mb4_c00135{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);}
.m46_c00135{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);}
.m49_c00135{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_c00135{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);}
.m8e_c00135{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);}
.md8_c00135{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);}
.m122_c00135{transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);}
.m51_c00135{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);}
.m63_c00135{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);}
.m16a_c00135{transform:matrix(0.214696,0.001932,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214696,0.001932,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214696,0.001932,-0.002250,0.249990,0,0);}
.m133_c00135{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);}
.mf0_c00135{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);}
.m19_c00135{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);}
.md3_c00135{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);}
.ma3_c00135{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);}
.m167_c00135{transform:matrix(0.216976,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216976,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216976,0.001953,-0.002250,0.249990,0,0);}
.m134_c00135{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);}
.m66_c00135{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);}
.mfe_c00135{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);}
.m112_c00135{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);}
.m75_c00135{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);}
.m156_c00135{transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);}
.m9a_c00135{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);}
.m94_c00135{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);}
.mdb_c00135{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);}
.m6e_c00135{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m16c_c00135{transform:matrix(0.228121,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228121,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228121,0.002053,-0.002250,0.249990,0,0);}
.m10e_c00135{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);}
.m143_c00135{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);}
.m15c_c00135{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);}
.m74_c00135{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m16f_c00135{transform:matrix(0.230651,0.002076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230651,0.002076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230651,0.002076,-0.002250,0.249990,0,0);}
.m16d_c00135{transform:matrix(0.231526,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231526,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231526,0.002084,-0.002250,0.249990,0,0);}
.m132_c00135{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);}
.md9_c00135{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);}
.m149_c00135{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);}
.m98_c00135{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);}
.m15b_c00135{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);}
.m10d_c00135{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{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);}
.m41_c00135{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);}
.m8d_c00135{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);}
.ma_c00135{transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);}
.m71_c00135{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);}
.m10c_c00135{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m12d_c00135{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);}
.m140_c00135{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);}
.m97_c00135{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);}
.m14d_c00135{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);}
.m73_c00135{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m141_c00135{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);}
.m4_c00135{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.ma1_c00135{transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);}
.m95_c00135{transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);}
.m13c_c00135{transform:matrix(0.256510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256510,0.000000,0.000000,0.250000,0,0);}
.m81_c00135{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);}
.m172_c00135{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);}
.m52_c00135{transform:matrix(0.285210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285210,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);}
.m10a_c00135{transform:matrix(0.291965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291965,0.000000,0.000000,0.250000,0,0);}
.md5_c00135{transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);}
.m174_c00135{transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319910,0.000000,0.000000,0.250000,0,0);}
.mf8_c00135{transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);}
.m110_c00135{transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);}
.m84_c00135{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);}
.m3b_c00135{transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338095,0.000000,0.000000,0.250000,0,0);}
.md4_c00135{transform:matrix(0.372915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372915,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{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);}
.m171_c00135{transform:matrix(0.436080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436080,0.000000,0.000000,0.250000,0,0);}
.m173_c00135{transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.482315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482315,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(1.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167060,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;}
.fs1_c00135{font-size:43.050000px;}
.fs9_c00135{font-size:61.950000px;}
.fsb_c00135{font-size:64.050000px;}
.fs6_c00135{font-size:67.200000px;}
.fs7_c00135{font-size:68.250000px;}
.fsd_c00135{font-size:68.252764px;}
.fs8_c00135{font-size:70.350000px;}
.fs4_c00135{font-size:71.400000px;}
.fs3_c00135{font-size:72.450000px;}
.fsc_c00135{font-size:72.452934px;}
.fs5_c00135{font-size:73.500000px;}
.fsa_c00135{font-size:74.550000px;}
.fs2_c00135{font-size:81.900000px;}
.fs0_c00135{font-size:107.100000px;}
.y0_c00135{bottom:0.000000px;}
.yab_c00135{bottom:96.679500px;}
.ya8_c00135{bottom:144.015071px;}
.ya9_c00135{bottom:144.015534px;}
.yaa_c00135{bottom:144.015698px;}
.ya7_c00135{bottom:163.683668px;}
.ya6_c00135{bottom:163.980384px;}
.ya5_c00135{bottom:164.108945px;}
.ya4_c00135{bottom:164.440180px;}
.ya3_c00135{bottom:164.750532px;}
.ya2_c00135{bottom:165.572142px;}
.ya1_c00135{bottom:166.279070px;}
.ya0_c00135{bottom:166.789302px;}
.y9f_c00135{bottom:167.127099px;}
.y9e_c00135{bottom:167.671500px;}
.y9d_c00135{bottom:187.344000px;}
.y9c_c00135{bottom:187.626000px;}
.y9b_c00135{bottom:187.938000px;}
.y9a_c00135{bottom:188.194500px;}
.y99_c00135{bottom:188.323500px;}
.y98_c00135{bottom:188.679000px;}
.y97_c00135{bottom:188.857500px;}
.y96_c00135{bottom:189.343500px;}
.y95_c00135{bottom:189.573000px;}
.y94_c00135{bottom:189.921000px;}
.y93_c00135{bottom:190.264500px;}
.y92_c00135{bottom:190.668000px;}
.y91_c00135{bottom:190.890000px;}
.y90_c00135{bottom:209.911500px;}
.y8f_c00135{bottom:210.339000px;}
.y8e_c00135{bottom:210.720000px;}
.y8d_c00135{bottom:210.934500px;}
.y8c_c00135{bottom:211.233000px;}
.y8b_c00135{bottom:211.443000px;}
.y8a_c00135{bottom:212.032500px;}
.y89_c00135{bottom:212.211000px;}
.y88_c00135{bottom:212.536500px;}
.y87_c00135{bottom:212.923500px;}
.y86_c00135{bottom:213.258000px;}
.y85_c00135{bottom:213.571500px;}
.y84_c00135{bottom:232.836000px;}
.y83_c00135{bottom:233.007000px;}
.y82_c00135{bottom:233.482500px;}
.y81_c00135{bottom:233.727000px;}
.y80_c00135{bottom:233.886000px;}
.y7f_c00135{bottom:234.330000px;}
.y7e_c00135{bottom:234.547500px;}
.y7d_c00135{bottom:235.096500px;}
.y7c_c00135{bottom:235.386000px;}
.y7b_c00135{bottom:235.672500px;}
.y7a_c00135{bottom:235.983000px;}
.y79_c00135{bottom:256.254000px;}
.y78_c00135{bottom:256.467000px;}
.y77_c00135{bottom:256.677000px;}
.y76_c00135{bottom:256.908000px;}
.y75_c00135{bottom:257.017500px;}
.y74_c00135{bottom:257.182500px;}
.y73_c00135{bottom:257.559000px;}
.y72_c00135{bottom:257.662500px;}
.y71_c00135{bottom:257.940000px;}
.y70_c00135{bottom:258.252000px;}
.y6f_c00135{bottom:258.700500px;}
.y6e_c00135{bottom:259.203000px;}
.y6d_c00135{bottom:277.795500px;}
.y6c_c00135{bottom:278.200500px;}
.y6b_c00135{bottom:278.884500px;}
.y6a_c00135{bottom:279.178500px;}
.y69_c00135{bottom:279.850500px;}
.y68_c00135{bottom:280.509000px;}
.y67_c00135{bottom:280.749000px;}
.y66_c00135{bottom:281.073000px;}
.y65_c00135{bottom:281.472000px;}
.y64_c00135{bottom:281.710500px;}
.y63_c00135{bottom:282.153000px;}
.y62_c00135{bottom:301.519500px;}
.y61_c00135{bottom:301.774500px;}
.y60_c00135{bottom:302.079000px;}
.y5f_c00135{bottom:302.356500px;}
.y5e_c00135{bottom:302.566500px;}
.y5d_c00135{bottom:303.016500px;}
.y5c_c00135{bottom:303.234000px;}
.y5b_c00135{bottom:303.525000px;}
.y5a_c00135{bottom:303.828000px;}
.y59_c00135{bottom:304.035000px;}
.y58_c00135{bottom:304.438500px;}
.y57_c00135{bottom:304.606500px;}
.y56_c00135{bottom:304.759500px;}
.y55_c00135{bottom:305.103000px;}
.y54_c00135{bottom:324.880500px;}
.y53_c00135{bottom:325.380000px;}
.y52_c00135{bottom:325.585500px;}
.y51_c00135{bottom:326.035500px;}
.y50_c00135{bottom:326.242500px;}
.y4f_c00135{bottom:326.611500px;}
.y4e_c00135{bottom:326.797500px;}
.y4d_c00135{bottom:327.156000px;}
.y4c_c00135{bottom:327.283500px;}
.y4b_c00135{bottom:327.471000px;}
.y4a_c00135{bottom:327.820500px;}
.y49_c00135{bottom:328.324500px;}
.y48_c00135{bottom:347.386500px;}
.y47_c00135{bottom:347.574000px;}
.y46_c00135{bottom:347.781000px;}
.y45_c00135{bottom:348.129000px;}
.y44_c00135{bottom:348.487500px;}
.y43_c00135{bottom:348.798000px;}
.y42_c00135{bottom:348.973500px;}
.y41_c00135{bottom:349.284000px;}
.y40_c00135{bottom:349.519500px;}
.y3f_c00135{bottom:350.100000px;}
.y3e_c00135{bottom:350.499000px;}
.y3d_c00135{bottom:350.808000px;}
.y3c_c00135{bottom:351.003000px;}
.y3b_c00135{bottom:369.658500px;}
.y3a_c00135{bottom:369.987000px;}
.y39_c00135{bottom:370.405500px;}
.y38_c00135{bottom:370.581000px;}
.y37_c00135{bottom:371.058000px;}
.y36_c00135{bottom:371.215500px;}
.y35_c00135{bottom:371.643000px;}
.y34_c00135{bottom:371.953500px;}
.y33_c00135{bottom:372.322500px;}
.y32_c00135{bottom:372.459000px;}
.y31_c00135{bottom:372.703500px;}
.y30_c00135{bottom:372.891000px;}
.y2f_c00135{bottom:373.411500px;}
.y2e_c00135{bottom:393.388500px;}
.y2d_c00135{bottom:393.547500px;}
.y2c_c00135{bottom:393.693000px;}
.y2b_c00135{bottom:394.312500px;}
.y2a_c00135{bottom:394.611000px;}
.y29_c00135{bottom:394.803000px;}
.y28_c00135{bottom:395.088000px;}
.y27_c00135{bottom:395.386500px;}
.y26_c00135{bottom:395.653500px;}
.y25_c00135{bottom:395.818500px;}
.y24_c00135{bottom:396.175500px;}
.y23_c00135{bottom:396.387000px;}
.y22_c00135{bottom:396.631500px;}
.y21_c00135{bottom:417.832500px;}
.y20_c00135{bottom:440.550000px;}
.y1f_c00135{bottom:464.247000px;}
.y1e_c00135{bottom:486.450000px;}
.y1d_c00135{bottom:509.395500px;}
.y1c_c00135{bottom:531.103500px;}
.y1b_c00135{bottom:531.519000px;}
.y1a_c00135{bottom:532.276500px;}
.y19_c00135{bottom:532.465500px;}
.y18_c00135{bottom:532.639500px;}
.y17_c00135{bottom:533.017500px;}
.y16_c00135{bottom:533.490000px;}
.y15_c00135{bottom:533.787000px;}
.y14_c00135{bottom:533.941500px;}
.y13_c00135{bottom:534.159000px;}
.y12_c00135{bottom:534.331500px;}
.y11_c00135{bottom:555.025500px;}
.y10_c00135{bottom:577.951500px;}
.yf_c00135{bottom:600.646500px;}
.ye_c00135{bottom:623.785500px;}
.yd_c00135{bottom:646.761000px;}
.yc_c00135{bottom:669.720000px;}
.yb_c00135{bottom:692.880000px;}
.ya_c00135{bottom:716.193000px;}
.y9_c00135{bottom:739.374000px;}
.y8_c00135{bottom:761.461500px;}
.y7_c00135{bottom:785.191500px;}
.y6_c00135{bottom:807.930000px;}
.y5_c00135{bottom:830.073000px;}
.y4_c00135{bottom:872.772000px;}
.y3_c00135{bottom:901.845000px;}
.y2_c00135{bottom:907.746000px;}
.y1_c00135{bottom:932.835000px;}
.h3_c00135{height:43.050000px;}
.hb_c00135{height:61.950000px;}
.hd_c00135{height:64.050000px;}
.h8_c00135{height:67.200000px;}
.h9_c00135{height:68.250000px;}
.hf_c00135{height:68.252764px;}
.ha_c00135{height:70.350000px;}
.h6_c00135{height:71.400000px;}
.h5_c00135{height:72.450000px;}
.he_c00135{height:72.452934px;}
.h7_c00135{height:73.500000px;}
.hc_c00135{height:74.550000px;}
.h4_c00135{height:81.900000px;}
.h2_c00135{height:107.100000px;}
.h0_c00135{height:1008.450000px;}
.h1_c00135{height:1008.750000px;}
.w0_c00135{width:676.890000px;}
.w1_c00135{width:677.250000px;}
.x0_c00135{left:0.000000px;}
.x7_c00135{left:77.914500px;}
.xa1_c00135{left:128.248500px;}
.x35_c00135{left:129.870000px;}
.x5c_c00135{left:132.030000px;}
.xb_c00135{left:133.380000px;}
.x29_c00135{left:135.540000px;}
.x1_c00135{left:150.390000px;}
.xa2_c00135{left:154.438500px;}
.x36_c00135{left:156.060000px;}
.x2a_c00135{left:157.680000px;}
.x8c_c00135{left:159.838500px;}
.x16_c00135{left:163.620000px;}
.xa7_c00135{left:167.070000px;}
.x80_c00135{left:168.750000px;}
.x4c_c00135{left:169.830000px;}
.xcb_c00135{left:171.990075px;}
.xc3_c00135{left:174.322500px;}
.x42_c00135{left:176.850000px;}
.x1f_c00135{left:178.200000px;}
.x37_c00135{left:180.900000px;}
.x95_c00135{left:184.678500px;}
.x5d_c00135{left:186.300000px;}
.x2b_c00135{left:187.380000px;}
.x86_c00135{left:188.644500px;}
.x66_c00135{left:193.860000px;}
.x43_c00135{left:196.830000px;}
.x77_c00135{left:198.450000px;}
.xc_c00135{left:200.070000px;}
.x17_c00135{left:203.580000px;}
.x54_c00135{left:205.200000px;}
.x81_c00135{left:206.550000px;}
.x8e_c00135{left:207.898500px;}
.x20_c00135{left:209.250000px;}
.x87_c00135{left:210.811500px;}
.xc6_c00135{left:213.502500px;}
.xa3_c00135{left:217.078500px;}
.x2c_c00135{left:218.160000px;}
.xab_c00135{left:220.210500px;}
.x18_c00135{left:221.940000px;}
.xd_c00135{left:224.370000px;}
.x6e_c00135{left:226.530000px;}
.x5e_c00135{left:228.690000px;}
.xc9_c00135{left:233.448000px;}
.x21_c00135{left:237.600000px;}
.xb5_c00135{left:240.777000px;}
.x55_c00135{left:242.730000px;}
.x38_c00135{left:244.890000px;}
.x44_c00135{left:247.050000px;}
.xa8_c00135{left:248.314500px;}
.x6f_c00135{left:249.750000px;}
.xac_c00135{left:250.761000px;}
.x88_c00135{left:253.167000px;}
.x9a_c00135{left:255.418500px;}
.xc7_c00135{left:256.419000px;}
.x67_c00135{left:258.660000px;}
.xbf_c00135{left:260.466000px;}
.x4d_c00135{left:263.250000px;}
.x56_c00135{left:264.600000px;}
.xad_c00135{left:267.738000px;}
.x96_c00135{left:269.458500px;}
.x39_c00135{left:271.620000px;}
.x2d_c00135{left:274.050000px;}
.x82_c00135{left:275.670000px;}
.x78_c00135{left:277.830000px;}
.xb6_c00135{left:280.141500px;}
.x9b_c00135{left:284.038500px;}
.x19_c00135{left:287.010000px;}
.x8f_c00135{left:290.518500px;}
.x45_c00135{left:291.600000px;}
.x3a_c00135{left:293.760000px;}
.x83_c00135{left:296.460000px;}
.x2e_c00135{left:298.890000px;}
.x4e_c00135{left:301.590000px;}
.xe_c00135{left:304.020000px;}
.x22_c00135{left:305.910000px;}
.x1a_c00135{left:310.770000px;}
.xae_c00135{left:313.894500px;}
.x5f_c00135{left:319.410000px;}
.x89_c00135{left:320.667000px;}
.xb7_c00135{left:325.017000px;}
.x46_c00135{left:326.970000px;}
.x90_c00135{left:329.398500px;}
.x3b_c00135{left:331.290000px;}
.x4f_c00135{left:333.450000px;}
.x57_c00135{left:334.530000px;}
.x23_c00135{left:335.610000px;}
.xc0_c00135{left:338.794500px;}
.x60_c00135{left:341.280000px;}
.x2_c00135{left:343.440000px;}
.x84_c00135{left:346.950000px;}
.xb1_c00135{left:348.723000px;}
.xf_c00135{left:350.460000px;}
.xa4_c00135{left:351.808500px;}
.xbc_c00135{left:352.836000px;}
.x58_c00135{left:354.240000px;}
.x68_c00135{left:355.860000px;}
.x79_c00135{left:357.750000px;}
.x9_c00135{left:363.420000px;}
.x61_c00135{left:365.310000px;}
.x2f_c00135{left:366.390000px;}
.xa5_c00135{left:368.548500px;}
.xc1_c00135{left:369.772500px;}
.x70_c00135{left:370.980000px;}
.x1b_c00135{left:373.950000px;}
.x85_c00135{left:376.650000px;}
.x10_c00135{left:382.590000px;}
.x24_c00135{left:384.210000px;}
.x7a_c00135{left:385.560000px;}
.x47_c00135{left:387.720000px;}
.xc8_c00135{left:389.244000px;}
.x71_c00135{left:392.310000px;}
.x97_c00135{left:393.928500px;}
.xb8_c00135{left:395.448000px;}
.x1c_c00135{left:397.710000px;}
.x3c_c00135{left:399.060000px;}
.x91_c00135{left:400.408500px;}
.xa_c00135{left:402.840000px;}
.x3_c00135{left:405.810000px;}
.x30_c00135{left:407.700000px;}
.x50_c00135{left:409.320000px;}
.x72_c00135{left:411.210000px;}
.x25_c00135{left:414.450000px;}
.x7b_c00135{left:417.420000px;}
.xa9_c00135{left:420.801000px;}
.x9c_c00135{left:423.358500px;}
.x62_c00135{left:426.330000px;}
.xc4_c00135{left:427.578000px;}
.x11_c00135{left:429.300000px;}
.x4_c00135{left:431.190000px;}
.x69_c00135{left:432.810000px;}
.x3d_c00135{left:437.940000px;}
.x59_c00135{left:443.610000px;}
.x5_c00135{left:445.500000px;}
.x31_c00135{left:447.120000px;}
.xb2_c00135{left:448.357500px;}
.x12_c00135{left:451.170000px;}
.x73_c00135{left:452.520000px;}
.xc2_c00135{left:455.923500px;}
.x63_c00135{left:457.920000px;}
.x6a_c00135{left:460.080000px;}
.xbb_c00135{left:461.509500px;}
.x48_c00135{left:462.780000px;}
.xc5_c00135{left:464.839500px;}
.x3e_c00135{left:468.180000px;}
.x74_c00135{left:470.610000px;}
.x92_c00135{left:471.958500px;}
.x1d_c00135{left:473.310000px;}
.x7c_c00135{left:475.740000px;}
.xb9_c00135{left:477.769500px;}
.x5a_c00135{left:483.300000px;}
.xaf_c00135{left:485.623500px;}
.x7d_c00135{left:488.700000px;}
.x49_c00135{left:489.780000px;}
.x13_c00135{left:491.940000px;}
.x32_c00135{left:493.830000px;}
.x9d_c00135{left:497.338500px;}
.x8_c00135{left:499.365000px;}
.x6b_c00135{left:503.010000px;}
.x51_c00135{left:504.900000px;}
.x26_c00135{left:506.520000px;}
.x6_c00135{left:507.870000px;}
.x3f_c00135{left:509.760000px;}
.xa6_c00135{left:513.268500px;}
.x98_c00135{left:515.968500px;}
.x4a_c00135{left:517.320000px;}
.x93_c00135{left:520.828500px;}
.x9e_c00135{left:522.178500px;}
.xbd_c00135{left:523.447500px;}
.x14_c00135{left:524.880000px;}
.x64_c00135{left:527.310000px;}
.x33_c00135{left:530.550000px;}
.x27_c00135{left:533.250000px;}
.x8a_c00135{left:534.777000px;}
.xb3_c00135{left:536.647500px;}
.x52_c00135{left:538.650000px;}
.x8d_c00135{left:542.428500px;}
.xca_c00135{left:545.550000px;}
.x9f_c00135{left:546.748500px;}
.xba_c00135{left:550.425000px;}
.x99_c00135{left:552.418500px;}
.xbe_c00135{left:553.947000px;}
.x28_c00135{left:559.170000px;}
.xb4_c00135{left:562.570500px;}
.x7e_c00135{left:564.300000px;}
.x40_c00135{left:566.730000px;}
.x75_c00135{left:567.810000px;}
.x6c_c00135{left:570.780000px;}
.x94_c00135{left:572.938500px;}
.x34_c00135{left:576.990000px;}
.x53_c00135{left:578.070000px;}
.x76_c00135{left:581.310000px;}
.x15_c00135{left:582.660000px;}
.x5b_c00135{left:584.280000px;}
.x7f_c00135{left:585.630000px;}
.x4b_c00135{left:587.250000px;}
.x1e_c00135{left:590.760000px;}
.x41_c00135{left:592.650000px;}
.x8b_c00135{left:594.214500px;}
.xaa_c00135{left:595.510500px;}
.xa0_c00135{left:599.668500px;}
.xb0_c00135{left:600.913500px;}
.x65_c00135{left:606.960000px;}
.x6d_c00135{left:609.660000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.fs1_c00135{font-size:38.266667pt;}
.fs9_c00135{font-size:55.066667pt;}
.fsb_c00135{font-size:56.933333pt;}
.fs6_c00135{font-size:59.733333pt;}
.fs7_c00135{font-size:60.666667pt;}
.fsd_c00135{font-size:60.669124pt;}
.fs8_c00135{font-size:62.533333pt;}
.fs4_c00135{font-size:63.466667pt;}
.fs3_c00135{font-size:64.400000pt;}
.fsc_c00135{font-size:64.402608pt;}
.fs5_c00135{font-size:65.333333pt;}
.fsa_c00135{font-size:66.266667pt;}
.fs2_c00135{font-size:72.800000pt;}
.fs0_c00135{font-size:95.200000pt;}
.y0_c00135{bottom:0.000000pt;}
.yab_c00135{bottom:85.937333pt;}
.ya8_c00135{bottom:128.013396pt;}
.ya9_c00135{bottom:128.013808pt;}
.yaa_c00135{bottom:128.013953pt;}
.ya7_c00135{bottom:145.496593pt;}
.ya6_c00135{bottom:145.760341pt;}
.ya5_c00135{bottom:145.874617pt;}
.ya4_c00135{bottom:146.169049pt;}
.ya3_c00135{bottom:146.444917pt;}
.ya2_c00135{bottom:147.175237pt;}
.ya1_c00135{bottom:147.803617pt;}
.ya0_c00135{bottom:148.257157pt;}
.y9f_c00135{bottom:148.557421pt;}
.y9e_c00135{bottom:149.041333pt;}
.y9d_c00135{bottom:166.528000pt;}
.y9c_c00135{bottom:166.778667pt;}
.y9b_c00135{bottom:167.056000pt;}
.y9a_c00135{bottom:167.284000pt;}
.y99_c00135{bottom:167.398667pt;}
.y98_c00135{bottom:167.714667pt;}
.y97_c00135{bottom:167.873333pt;}
.y96_c00135{bottom:168.305333pt;}
.y95_c00135{bottom:168.509333pt;}
.y94_c00135{bottom:168.818667pt;}
.y93_c00135{bottom:169.124000pt;}
.y92_c00135{bottom:169.482667pt;}
.y91_c00135{bottom:169.680000pt;}
.y90_c00135{bottom:186.588000pt;}
.y8f_c00135{bottom:186.968000pt;}
.y8e_c00135{bottom:187.306667pt;}
.y8d_c00135{bottom:187.497333pt;}
.y8c_c00135{bottom:187.762667pt;}
.y8b_c00135{bottom:187.949333pt;}
.y8a_c00135{bottom:188.473333pt;}
.y89_c00135{bottom:188.632000pt;}
.y88_c00135{bottom:188.921333pt;}
.y87_c00135{bottom:189.265333pt;}
.y86_c00135{bottom:189.562667pt;}
.y85_c00135{bottom:189.841333pt;}
.y84_c00135{bottom:206.965333pt;}
.y83_c00135{bottom:207.117333pt;}
.y82_c00135{bottom:207.540000pt;}
.y81_c00135{bottom:207.757333pt;}
.y80_c00135{bottom:207.898667pt;}
.y7f_c00135{bottom:208.293333pt;}
.y7e_c00135{bottom:208.486667pt;}
.y7d_c00135{bottom:208.974667pt;}
.y7c_c00135{bottom:209.232000pt;}
.y7b_c00135{bottom:209.486667pt;}
.y7a_c00135{bottom:209.762667pt;}
.y79_c00135{bottom:227.781333pt;}
.y78_c00135{bottom:227.970667pt;}
.y77_c00135{bottom:228.157333pt;}
.y76_c00135{bottom:228.362667pt;}
.y75_c00135{bottom:228.460000pt;}
.y74_c00135{bottom:228.606667pt;}
.y73_c00135{bottom:228.941333pt;}
.y72_c00135{bottom:229.033333pt;}
.y71_c00135{bottom:229.280000pt;}
.y70_c00135{bottom:229.557333pt;}
.y6f_c00135{bottom:229.956000pt;}
.y6e_c00135{bottom:230.402667pt;}
.y6d_c00135{bottom:246.929333pt;}
.y6c_c00135{bottom:247.289333pt;}
.y6b_c00135{bottom:247.897333pt;}
.y6a_c00135{bottom:248.158667pt;}
.y69_c00135{bottom:248.756000pt;}
.y68_c00135{bottom:249.341333pt;}
.y67_c00135{bottom:249.554667pt;}
.y66_c00135{bottom:249.842667pt;}
.y65_c00135{bottom:250.197333pt;}
.y64_c00135{bottom:250.409333pt;}
.y63_c00135{bottom:250.802667pt;}
.y62_c00135{bottom:268.017333pt;}
.y61_c00135{bottom:268.244000pt;}
.y60_c00135{bottom:268.514667pt;}
.y5f_c00135{bottom:268.761333pt;}
.y5e_c00135{bottom:268.948000pt;}
.y5d_c00135{bottom:269.348000pt;}
.y5c_c00135{bottom:269.541333pt;}
.y5b_c00135{bottom:269.800000pt;}
.y5a_c00135{bottom:270.069333pt;}
.y59_c00135{bottom:270.253333pt;}
.y58_c00135{bottom:270.612000pt;}
.y57_c00135{bottom:270.761333pt;}
.y56_c00135{bottom:270.897333pt;}
.y55_c00135{bottom:271.202667pt;}
.y54_c00135{bottom:288.782667pt;}
.y53_c00135{bottom:289.226667pt;}
.y52_c00135{bottom:289.409333pt;}
.y51_c00135{bottom:289.809333pt;}
.y50_c00135{bottom:289.993333pt;}
.y4f_c00135{bottom:290.321333pt;}
.y4e_c00135{bottom:290.486667pt;}
.y4d_c00135{bottom:290.805333pt;}
.y4c_c00135{bottom:290.918667pt;}
.y4b_c00135{bottom:291.085333pt;}
.y4a_c00135{bottom:291.396000pt;}
.y49_c00135{bottom:291.844000pt;}
.y48_c00135{bottom:308.788000pt;}
.y47_c00135{bottom:308.954667pt;}
.y46_c00135{bottom:309.138667pt;}
.y45_c00135{bottom:309.448000pt;}
.y44_c00135{bottom:309.766667pt;}
.y43_c00135{bottom:310.042667pt;}
.y42_c00135{bottom:310.198667pt;}
.y41_c00135{bottom:310.474667pt;}
.y40_c00135{bottom:310.684000pt;}
.y3f_c00135{bottom:311.200000pt;}
.y3e_c00135{bottom:311.554667pt;}
.y3d_c00135{bottom:311.829333pt;}
.y3c_c00135{bottom:312.002667pt;}
.y3b_c00135{bottom:328.585333pt;}
.y3a_c00135{bottom:328.877333pt;}
.y39_c00135{bottom:329.249333pt;}
.y38_c00135{bottom:329.405333pt;}
.y37_c00135{bottom:329.829333pt;}
.y36_c00135{bottom:329.969333pt;}
.y35_c00135{bottom:330.349333pt;}
.y34_c00135{bottom:330.625333pt;}
.y33_c00135{bottom:330.953333pt;}
.y32_c00135{bottom:331.074667pt;}
.y31_c00135{bottom:331.292000pt;}
.y30_c00135{bottom:331.458667pt;}
.y2f_c00135{bottom:331.921333pt;}
.y2e_c00135{bottom:349.678667pt;}
.y2d_c00135{bottom:349.820000pt;}
.y2c_c00135{bottom:349.949333pt;}
.y2b_c00135{bottom:350.500000pt;}
.y2a_c00135{bottom:350.765333pt;}
.y29_c00135{bottom:350.936000pt;}
.y28_c00135{bottom:351.189333pt;}
.y27_c00135{bottom:351.454667pt;}
.y26_c00135{bottom:351.692000pt;}
.y25_c00135{bottom:351.838667pt;}
.y24_c00135{bottom:352.156000pt;}
.y23_c00135{bottom:352.344000pt;}
.y22_c00135{bottom:352.561333pt;}
.y21_c00135{bottom:371.406667pt;}
.y20_c00135{bottom:391.600000pt;}
.y1f_c00135{bottom:412.664000pt;}
.y1e_c00135{bottom:432.400000pt;}
.y1d_c00135{bottom:452.796000pt;}
.y1c_c00135{bottom:472.092000pt;}
.y1b_c00135{bottom:472.461333pt;}
.y1a_c00135{bottom:473.134667pt;}
.y19_c00135{bottom:473.302667pt;}
.y18_c00135{bottom:473.457333pt;}
.y17_c00135{bottom:473.793333pt;}
.y16_c00135{bottom:474.213333pt;}
.y15_c00135{bottom:474.477333pt;}
.y14_c00135{bottom:474.614667pt;}
.y13_c00135{bottom:474.808000pt;}
.y12_c00135{bottom:474.961333pt;}
.y11_c00135{bottom:493.356000pt;}
.y10_c00135{bottom:513.734667pt;}
.yf_c00135{bottom:533.908000pt;}
.ye_c00135{bottom:554.476000pt;}
.yd_c00135{bottom:574.898667pt;}
.yc_c00135{bottom:595.306667pt;}
.yb_c00135{bottom:615.893333pt;}
.ya_c00135{bottom:636.616000pt;}
.y9_c00135{bottom:657.221333pt;}
.y8_c00135{bottom:676.854667pt;}
.y7_c00135{bottom:697.948000pt;}
.y6_c00135{bottom:718.160000pt;}
.y5_c00135{bottom:737.842667pt;}
.y4_c00135{bottom:775.797333pt;}
.y3_c00135{bottom:801.640000pt;}
.y2_c00135{bottom:806.885333pt;}
.y1_c00135{bottom:829.186667pt;}
.h3_c00135{height:38.266667pt;}
.hb_c00135{height:55.066667pt;}
.hd_c00135{height:56.933333pt;}
.h8_c00135{height:59.733333pt;}
.h9_c00135{height:60.666667pt;}
.hf_c00135{height:60.669124pt;}
.ha_c00135{height:62.533333pt;}
.h6_c00135{height:63.466667pt;}
.h5_c00135{height:64.400000pt;}
.he_c00135{height:64.402608pt;}
.h7_c00135{height:65.333333pt;}
.hc_c00135{height:66.266667pt;}
.h4_c00135{height:72.800000pt;}
.h2_c00135{height:95.200000pt;}
.h0_c00135{height:896.400000pt;}
.h1_c00135{height:896.666667pt;}
.w0_c00135{width:601.680000pt;}
.w1_c00135{width:602.000000pt;}
.x0_c00135{left:0.000000pt;}
.x7_c00135{left:69.257333pt;}
.xa1_c00135{left:113.998667pt;}
.x35_c00135{left:115.440000pt;}
.x5c_c00135{left:117.360000pt;}
.xb_c00135{left:118.560000pt;}
.x29_c00135{left:120.480000pt;}
.x1_c00135{left:133.680000pt;}
.xa2_c00135{left:137.278667pt;}
.x36_c00135{left:138.720000pt;}
.x2a_c00135{left:140.160000pt;}
.x8c_c00135{left:142.078667pt;}
.x16_c00135{left:145.440000pt;}
.xa7_c00135{left:148.506667pt;}
.x80_c00135{left:150.000000pt;}
.x4c_c00135{left:150.960000pt;}
.xcb_c00135{left:152.880067pt;}
.xc3_c00135{left:154.953333pt;}
.x42_c00135{left:157.200000pt;}
.x1f_c00135{left:158.400000pt;}
.x37_c00135{left:160.800000pt;}
.x95_c00135{left:164.158667pt;}
.x5d_c00135{left:165.600000pt;}
.x2b_c00135{left:166.560000pt;}
.x86_c00135{left:167.684000pt;}
.x66_c00135{left:172.320000pt;}
.x43_c00135{left:174.960000pt;}
.x77_c00135{left:176.400000pt;}
.xc_c00135{left:177.840000pt;}
.x17_c00135{left:180.960000pt;}
.x54_c00135{left:182.400000pt;}
.x81_c00135{left:183.600000pt;}
.x8e_c00135{left:184.798667pt;}
.x20_c00135{left:186.000000pt;}
.x87_c00135{left:187.388000pt;}
.xc6_c00135{left:189.780000pt;}
.xa3_c00135{left:192.958667pt;}
.x2c_c00135{left:193.920000pt;}
.xab_c00135{left:195.742667pt;}
.x18_c00135{left:197.280000pt;}
.xd_c00135{left:199.440000pt;}
.x6e_c00135{left:201.360000pt;}
.x5e_c00135{left:203.280000pt;}
.xc9_c00135{left:207.509333pt;}
.x21_c00135{left:211.200000pt;}
.xb5_c00135{left:214.024000pt;}
.x55_c00135{left:215.760000pt;}
.x38_c00135{left:217.680000pt;}
.x44_c00135{left:219.600000pt;}
.xa8_c00135{left:220.724000pt;}
.x6f_c00135{left:222.000000pt;}
.xac_c00135{left:222.898667pt;}
.x88_c00135{left:225.037333pt;}
.x9a_c00135{left:227.038667pt;}
.xc7_c00135{left:227.928000pt;}
.x67_c00135{left:229.920000pt;}
.xbf_c00135{left:231.525333pt;}
.x4d_c00135{left:234.000000pt;}
.x56_c00135{left:235.200000pt;}
.xad_c00135{left:237.989333pt;}
.x96_c00135{left:239.518667pt;}
.x39_c00135{left:241.440000pt;}
.x2d_c00135{left:243.600000pt;}
.x82_c00135{left:245.040000pt;}
.x78_c00135{left:246.960000pt;}
.xb6_c00135{left:249.014667pt;}
.x9b_c00135{left:252.478667pt;}
.x19_c00135{left:255.120000pt;}
.x8f_c00135{left:258.238667pt;}
.x45_c00135{left:259.200000pt;}
.x3a_c00135{left:261.120000pt;}
.x83_c00135{left:263.520000pt;}
.x2e_c00135{left:265.680000pt;}
.x4e_c00135{left:268.080000pt;}
.xe_c00135{left:270.240000pt;}
.x22_c00135{left:271.920000pt;}
.x1a_c00135{left:276.240000pt;}
.xae_c00135{left:279.017333pt;}
.x5f_c00135{left:283.920000pt;}
.x89_c00135{left:285.037333pt;}
.xb7_c00135{left:288.904000pt;}
.x46_c00135{left:290.640000pt;}
.x90_c00135{left:292.798667pt;}
.x3b_c00135{left:294.480000pt;}
.x4f_c00135{left:296.400000pt;}
.x57_c00135{left:297.360000pt;}
.x23_c00135{left:298.320000pt;}
.xc0_c00135{left:301.150667pt;}
.x60_c00135{left:303.360000pt;}
.x2_c00135{left:305.280000pt;}
.x84_c00135{left:308.400000pt;}
.xb1_c00135{left:309.976000pt;}
.xf_c00135{left:311.520000pt;}
.xa4_c00135{left:312.718667pt;}
.xbc_c00135{left:313.632000pt;}
.x58_c00135{left:314.880000pt;}
.x68_c00135{left:316.320000pt;}
.x79_c00135{left:318.000000pt;}
.x9_c00135{left:323.040000pt;}
.x61_c00135{left:324.720000pt;}
.x2f_c00135{left:325.680000pt;}
.xa5_c00135{left:327.598667pt;}
.xc1_c00135{left:328.686667pt;}
.x70_c00135{left:329.760000pt;}
.x1b_c00135{left:332.400000pt;}
.x85_c00135{left:334.800000pt;}
.x10_c00135{left:340.080000pt;}
.x24_c00135{left:341.520000pt;}
.x7a_c00135{left:342.720000pt;}
.x47_c00135{left:344.640000pt;}
.xc8_c00135{left:345.994667pt;}
.x71_c00135{left:348.720000pt;}
.x97_c00135{left:350.158667pt;}
.xb8_c00135{left:351.509333pt;}
.x1c_c00135{left:353.520000pt;}
.x3c_c00135{left:354.720000pt;}
.x91_c00135{left:355.918667pt;}
.xa_c00135{left:358.080000pt;}
.x3_c00135{left:360.720000pt;}
.x30_c00135{left:362.400000pt;}
.x50_c00135{left:363.840000pt;}
.x72_c00135{left:365.520000pt;}
.x25_c00135{left:368.400000pt;}
.x7b_c00135{left:371.040000pt;}
.xa9_c00135{left:374.045333pt;}
.x9c_c00135{left:376.318667pt;}
.x62_c00135{left:378.960000pt;}
.xc4_c00135{left:380.069333pt;}
.x11_c00135{left:381.600000pt;}
.x4_c00135{left:383.280000pt;}
.x69_c00135{left:384.720000pt;}
.x3d_c00135{left:389.280000pt;}
.x59_c00135{left:394.320000pt;}
.x5_c00135{left:396.000000pt;}
.x31_c00135{left:397.440000pt;}
.xb2_c00135{left:398.540000pt;}
.x12_c00135{left:401.040000pt;}
.x73_c00135{left:402.240000pt;}
.xc2_c00135{left:405.265333pt;}
.x63_c00135{left:407.040000pt;}
.x6a_c00135{left:408.960000pt;}
.xbb_c00135{left:410.230667pt;}
.x48_c00135{left:411.360000pt;}
.xc5_c00135{left:413.190667pt;}
.x3e_c00135{left:416.160000pt;}
.x74_c00135{left:418.320000pt;}
.x92_c00135{left:419.518667pt;}
.x1d_c00135{left:420.720000pt;}
.x7c_c00135{left:422.880000pt;}
.xb9_c00135{left:424.684000pt;}
.x5a_c00135{left:429.600000pt;}
.xaf_c00135{left:431.665333pt;}
.x7d_c00135{left:434.400000pt;}
.x49_c00135{left:435.360000pt;}
.x13_c00135{left:437.280000pt;}
.x32_c00135{left:438.960000pt;}
.x9d_c00135{left:442.078667pt;}
.x8_c00135{left:443.880000pt;}
.x6b_c00135{left:447.120000pt;}
.x51_c00135{left:448.800000pt;}
.x26_c00135{left:450.240000pt;}
.x6_c00135{left:451.440000pt;}
.x3f_c00135{left:453.120000pt;}
.xa6_c00135{left:456.238667pt;}
.x98_c00135{left:458.638667pt;}
.x4a_c00135{left:459.840000pt;}
.x93_c00135{left:462.958667pt;}
.x9e_c00135{left:464.158667pt;}
.xbd_c00135{left:465.286667pt;}
.x14_c00135{left:466.560000pt;}
.x64_c00135{left:468.720000pt;}
.x33_c00135{left:471.600000pt;}
.x27_c00135{left:474.000000pt;}
.x8a_c00135{left:475.357333pt;}
.xb3_c00135{left:477.020000pt;}
.x52_c00135{left:478.800000pt;}
.x8d_c00135{left:482.158667pt;}
.xca_c00135{left:484.933333pt;}
.x9f_c00135{left:485.998667pt;}
.xba_c00135{left:489.266667pt;}
.x99_c00135{left:491.038667pt;}
.xbe_c00135{left:492.397333pt;}
.x28_c00135{left:497.040000pt;}
.xb4_c00135{left:500.062667pt;}
.x7e_c00135{left:501.600000pt;}
.x40_c00135{left:503.760000pt;}
.x75_c00135{left:504.720000pt;}
.x6c_c00135{left:507.360000pt;}
.x94_c00135{left:509.278667pt;}
.x34_c00135{left:512.880000pt;}
.x53_c00135{left:513.840000pt;}
.x76_c00135{left:516.720000pt;}
.x15_c00135{left:517.920000pt;}
.x5b_c00135{left:519.360000pt;}
.x7f_c00135{left:520.560000pt;}
.x4b_c00135{left:522.000000pt;}
.x1e_c00135{left:525.120000pt;}
.x41_c00135{left:526.800000pt;}
.x8b_c00135{left:528.190667pt;}
.xaa_c00135{left:529.342667pt;}
.xa0_c00135{left:533.038667pt;}
.xb0_c00135{left:534.145333pt;}
.x65_c00135{left:539.520000pt;}
.x6d_c00135{left:541.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_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;}
.m6b_c00136{transform:matrix(0.082603,0.002478,-0.007497,0.249888,0,0);-ms-transform:matrix(0.082603,0.002478,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.082603,0.002478,-0.007497,0.249888,0,0);}
.m80_c00136{transform:matrix(0.093653,0.002810,-0.007497,0.249888,0,0);-ms-transform:matrix(0.093653,0.002810,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.093653,0.002810,-0.007497,0.249888,0,0);}
.md1_c00136{transform:matrix(0.095391,0.003056,-0.008004,0.249872,0,0);-ms-transform:matrix(0.095391,0.003056,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.095391,0.003056,-0.008004,0.249872,0,0);}
.m49_c00136{transform:matrix(0.106387,0.003192,-0.007497,0.249888,0,0);-ms-transform:matrix(0.106387,0.003192,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.106387,0.003192,-0.007497,0.249888,0,0);}
.m45_c00136{transform:matrix(0.131571,0.003947,-0.007497,0.249888,0,0);-ms-transform:matrix(0.131571,0.003947,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.131571,0.003947,-0.007497,0.249888,0,0);}
.m40_c00136{transform:matrix(0.135940,0.002583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.135940,0.002583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.135940,0.002583,-0.004749,0.249955,0,0);}
.m30_c00136{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);}
.m84_c00136{transform:matrix(0.141221,0.004237,-0.007497,0.249888,0,0);-ms-transform:matrix(0.141221,0.004237,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.141221,0.004237,-0.007497,0.249888,0,0);}
.m64_c00136{transform:matrix(0.145774,0.004373,-0.007497,0.249888,0,0);-ms-transform:matrix(0.145774,0.004373,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.145774,0.004373,-0.007497,0.249888,0,0);}
.m3c_c00136{transform:matrix(0.149168,0.002834,-0.004749,0.249955,0,0);-ms-transform:matrix(0.149168,0.002834,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.149168,0.002834,-0.004749,0.249955,0,0);}
.m96_c00136{transform:matrix(0.149778,0.004798,-0.008004,0.249872,0,0);-ms-transform:matrix(0.149778,0.004798,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.149778,0.004798,-0.008004,0.249872,0,0);}
.m3f_c00136{transform:matrix(0.150008,0.002850,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150008,0.002850,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150008,0.002850,-0.004749,0.249955,0,0);}
.mc9_c00136{transform:matrix(0.150043,0.004806,-0.008004,0.249872,0,0);-ms-transform:matrix(0.150043,0.004806,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.150043,0.004806,-0.008004,0.249872,0,0);}
.m33_c00136{transform:matrix(0.151118,0.002871,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151118,0.002871,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151118,0.002871,-0.004749,0.249955,0,0);}
.m7b_c00136{transform:matrix(0.151327,0.004540,-0.007497,0.249888,0,0);-ms-transform:matrix(0.151327,0.004540,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.151327,0.004540,-0.007497,0.249888,0,0);}
.md6_c00136{transform:matrix(0.151357,0.004848,-0.008004,0.249872,0,0);-ms-transform:matrix(0.151357,0.004848,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.151357,0.004848,-0.008004,0.249872,0,0);}
.m42_c00136{transform:matrix(0.151603,0.002880,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151603,0.002880,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151603,0.002880,-0.004749,0.249955,0,0);}
.m37_c00136{transform:matrix(0.151613,0.002881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151613,0.002881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151613,0.002881,-0.004749,0.249955,0,0);}
.m9d_c00136{transform:matrix(0.152972,0.004900,-0.008004,0.249872,0,0);-ms-transform:matrix(0.152972,0.004900,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.152972,0.004900,-0.008004,0.249872,0,0);}
.ma5_c00136{transform:matrix(0.154286,0.004942,-0.008004,0.249872,0,0);-ms-transform:matrix(0.154286,0.004942,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.154286,0.004942,-0.008004,0.249872,0,0);}
.m70_c00136{transform:matrix(0.156714,0.004701,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156714,0.004701,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156714,0.004701,-0.007497,0.249888,0,0);}
.m5d_c00136{transform:matrix(0.156969,0.004709,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156969,0.004709,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156969,0.004709,-0.007497,0.249888,0,0);}
.m13_c00136{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);}
.m31_c00136{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);}
.m34_c00136{transform:matrix(0.158086,0.003004,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158086,0.003004,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158086,0.003004,-0.004749,0.249955,0,0);}
.ma7_c00136{transform:matrix(0.161107,0.005161,-0.008004,0.249872,0,0);-ms-transform:matrix(0.161107,0.005161,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.161107,0.005161,-0.008004,0.249872,0,0);}
.m85_c00136{transform:matrix(0.162497,0.004875,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162497,0.004875,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162497,0.004875,-0.007497,0.249888,0,0);}
.m12_c00136{transform:matrix(0.163196,0.003101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163196,0.003101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163196,0.003101,-0.004749,0.249955,0,0);}
.m86_c00136{transform:matrix(0.163751,0.004913,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163751,0.004913,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163751,0.004913,-0.007497,0.249888,0,0);}
.m17_c00136{transform:matrix(0.163905,0.003114,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163905,0.003114,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163905,0.003114,-0.004749,0.249955,0,0);}
.m3_c00136{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);}
.mcb_c00136{transform:matrix(0.166330,0.005328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.166330,0.005328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.166330,0.005328,-0.008004,0.249872,0,0);}
.m10_c00136{transform:matrix(0.166460,0.003163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166460,0.003163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166460,0.003163,-0.004749,0.249955,0,0);}
.m6_c00136{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);}
.m1b_c00136{transform:matrix(0.166925,0.003172,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166925,0.003172,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166925,0.003172,-0.004749,0.249955,0,0);}
.m36_c00136{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);}
.m5a_c00136{transform:matrix(0.167160,0.005015,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167160,0.005015,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167160,0.005015,-0.007497,0.249888,0,0);}
.m8f_c00136{transform:matrix(0.167650,0.005029,-0.007497,0.249888,0,0);-ms-transform:matrix(0.167650,0.005029,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.167650,0.005029,-0.007497,0.249888,0,0);}
.m7f_c00136{transform:matrix(0.168494,0.005055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168494,0.005055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168494,0.005055,-0.007497,0.249888,0,0);}
.m16_c00136{transform:matrix(0.168500,0.003201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168500,0.003201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168500,0.003201,-0.004749,0.249955,0,0);}
.m9a_c00136{transform:matrix(0.168644,0.005402,-0.008004,0.249872,0,0);-ms-transform:matrix(0.168644,0.005402,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.168644,0.005402,-0.008004,0.249872,0,0);}
.m78_c00136{transform:matrix(0.168839,0.005065,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168839,0.005065,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168839,0.005065,-0.007497,0.249888,0,0);}
.mc7_c00136{transform:matrix(0.169338,0.005424,-0.008004,0.249872,0,0);-ms-transform:matrix(0.169338,0.005424,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.169338,0.005424,-0.008004,0.249872,0,0);}
.m67_c00136{transform:matrix(0.169739,0.005092,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169739,0.005092,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169739,0.005092,-0.007497,0.249888,0,0);}
.m3e_c00136{transform:matrix(0.170044,0.003231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170044,0.003231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170044,0.003231,-0.004749,0.249955,0,0);}
.md5_c00136{transform:matrix(0.170573,0.005464,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170573,0.005464,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170573,0.005464,-0.008004,0.249872,0,0);}
.m8_c00136{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);}
.m57_c00136{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);}
.mcc_c00136{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);}
.m3b_c00136{transform:matrix(0.173114,0.003289,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173114,0.003289,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173114,0.003289,-0.004749,0.249955,0,0);}
.m7e_c00136{transform:matrix(0.173162,0.005195,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173162,0.005195,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173162,0.005195,-0.007497,0.249888,0,0);}
.m19_c00136{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);}
.m87_c00136{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);}
.m7c_c00136{transform:matrix(0.174961,0.005249,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174961,0.005249,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174961,0.005249,-0.007497,0.249888,0,0);}
.md0_c00136{transform:matrix(0.175115,0.005609,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175115,0.005609,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175115,0.005609,-0.008004,0.249872,0,0);}
.me_c00136{transform:matrix(0.175453,0.003334,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175453,0.003334,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175453,0.003334,-0.004749,0.249955,0,0);}
.m2b_c00136{transform:matrix(0.175558,0.003336,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175558,0.003336,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175558,0.003336,-0.004749,0.249955,0,0);}
.m60_c00136{transform:matrix(0.176491,0.005295,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176491,0.005295,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176491,0.005295,-0.007497,0.249888,0,0);}
.mc_c00136{transform:matrix(0.177228,0.003367,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177228,0.003367,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177228,0.003367,-0.004749,0.249955,0,0);}
.m68_c00136{transform:matrix(0.178380,0.005351,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178380,0.005351,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178380,0.005351,-0.007497,0.249888,0,0);}
.m18_c00136{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);}
.mc2_c00136{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);}
.m6c_c00136{transform:matrix(0.179644,0.005389,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179644,0.005389,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179644,0.005389,-0.007497,0.249888,0,0);}
.m99_c00136{transform:matrix(0.179733,0.005757,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179733,0.005757,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179733,0.005757,-0.008004,0.249872,0,0);}
.m9c_c00136{transform:matrix(0.180203,0.005772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180203,0.005772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180203,0.005772,-0.008004,0.249872,0,0);}
.mcf_c00136{transform:matrix(0.180512,0.005782,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180512,0.005782,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180512,0.005782,-0.008004,0.249872,0,0);}
.m5f_c00136{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);}
.m89_c00136{transform:matrix(0.181513,0.005445,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181513,0.005445,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181513,0.005445,-0.007497,0.249888,0,0);}
.m9e_c00136{transform:matrix(0.181542,0.005815,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181542,0.005815,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181542,0.005815,-0.008004,0.249872,0,0);}
.m74_c00136{transform:matrix(0.181718,0.005452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181718,0.005452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181718,0.005452,-0.007497,0.249888,0,0);}
.m62_c00136{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);}
.maf_c00136{transform:matrix(0.182361,0.005841,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182361,0.005841,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182361,0.005841,-0.008004,0.249872,0,0);}
.m6d_c00136{transform:matrix(0.182513,0.005475,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182513,0.005475,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182513,0.005475,-0.007497,0.249888,0,0);}
.m59_c00136{transform:matrix(0.183273,0.005498,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183273,0.005498,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183273,0.005498,-0.007497,0.249888,0,0);}
.m2c_c00136{transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183322,0.003483,-0.004749,0.249955,0,0);}
.m2f_c00136{transform:matrix(0.183557,0.003488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183557,0.003488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183557,0.003488,-0.004749,0.249955,0,0);}
.m61_c00136{transform:matrix(0.183647,0.005509,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183647,0.005509,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183647,0.005509,-0.007497,0.249888,0,0);}
.m51_c00136{transform:matrix(0.183882,0.005516,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183882,0.005516,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183882,0.005516,-0.007497,0.249888,0,0);}
.m54_c00136{transform:matrix(0.183907,0.005517,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183907,0.005517,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183907,0.005517,-0.007497,0.249888,0,0);}
.m98_c00136{transform:matrix(0.184161,0.005899,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184161,0.005899,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184161,0.005899,-0.008004,0.249872,0,0);}
.m3a_c00136{transform:matrix(0.184267,0.003501,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184267,0.003501,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184267,0.003501,-0.004749,0.249955,0,0);}
.m7a_c00136{transform:matrix(0.185017,0.005551,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185017,0.005551,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185017,0.005551,-0.007497,0.249888,0,0);}
.m8d_c00136{transform:matrix(0.185227,0.005557,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185227,0.005557,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185227,0.005557,-0.007497,0.249888,0,0);}
.m4f_c00136{transform:matrix(0.185272,0.005558,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185272,0.005558,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185272,0.005558,-0.007497,0.249888,0,0);}
.m73_c00136{transform:matrix(0.185447,0.005563,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185447,0.005563,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185447,0.005563,-0.007497,0.249888,0,0);}
.m32_c00136{transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185696,0.003528,-0.004749,0.249955,0,0);}
.m72_c00136{transform:matrix(0.186321,0.005590,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186321,0.005590,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186321,0.005590,-0.007497,0.249888,0,0);}
.m83_c00136{transform:matrix(0.186431,0.005593,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186431,0.005593,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186431,0.005593,-0.007497,0.249888,0,0);}
.m11_c00136{transform:matrix(0.186481,0.003543,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186481,0.003543,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186481,0.003543,-0.004749,0.249955,0,0);}
.m7d_c00136{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);}
.m94_c00136{transform:matrix(0.186716,0.005601,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186716,0.005601,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186716,0.005601,-0.007497,0.249888,0,0);}
.m77_c00136{transform:matrix(0.186866,0.005606,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186866,0.005606,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186866,0.005606,-0.007497,0.249888,0,0);}
.m92_c00136{transform:matrix(0.187766,0.005633,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187766,0.005633,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187766,0.005633,-0.007497,0.249888,0,0);}
.ma1_c00136{transform:matrix(0.187944,0.006020,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187944,0.006020,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187944,0.006020,-0.008004,0.249872,0,0);}
.m1a_c00136{transform:matrix(0.188471,0.003581,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188471,0.003581,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188471,0.003581,-0.004749,0.249955,0,0);}
.m15_c00136{transform:matrix(0.188866,0.003588,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188866,0.003588,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188866,0.003588,-0.004749,0.249955,0,0);}
.mdb_c00136{transform:matrix(0.189123,0.006058,-0.008004,0.249872,0,0);-ms-transform:matrix(0.189123,0.006058,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.189123,0.006058,-0.008004,0.249872,0,0);}
.m9_c00136{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);}
.mb2_c00136{transform:matrix(0.190212,0.006093,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190212,0.006093,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190212,0.006093,-0.008004,0.249872,0,0);}
.m21_c00136{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);}
.m52_c00136{transform:matrix(0.190429,0.005713,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190429,0.005713,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190429,0.005713,-0.007497,0.249888,0,0);}
.ma6_c00136{transform:matrix(0.191332,0.006129,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191332,0.006129,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191332,0.006129,-0.008004,0.249872,0,0);}
.ma4_c00136{transform:matrix(0.191477,0.006133,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191477,0.006133,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191477,0.006133,-0.008004,0.249872,0,0);}
.md4_c00136{transform:matrix(0.191982,0.006150,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191982,0.006150,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191982,0.006150,-0.008004,0.249872,0,0);}
.m76_c00136{transform:matrix(0.192423,0.005773,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192423,0.005773,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192423,0.005773,-0.007497,0.249888,0,0);}
.ma_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);}
.m56_c00136{transform:matrix(0.193143,0.005794,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193143,0.005794,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193143,0.005794,-0.007497,0.249888,0,0);}
.md8_c00136{transform:matrix(0.193261,0.006191,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193261,0.006191,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193261,0.006191,-0.008004,0.249872,0,0);}
.m1d_c00136{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);}
.mbc_c00136{transform:matrix(0.193326,0.006193,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193326,0.006193,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193326,0.006193,-0.008004,0.249872,0,0);}
.m2a_c00136{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);}
.mc3_c00136{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);}
.m28_c00136{transform:matrix(0.193865,0.003683,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193865,0.003683,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193865,0.003683,-0.004749,0.249955,0,0);}
.m97_c00136{transform:matrix(0.194170,0.006220,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194170,0.006220,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194170,0.006220,-0.008004,0.249872,0,0);}
.ma0_c00136{transform:matrix(0.194430,0.006228,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194430,0.006228,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194430,0.006228,-0.008004,0.249872,0,0);}
.mbb_c00136{transform:matrix(0.194560,0.006232,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194560,0.006232,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194560,0.006232,-0.008004,0.249872,0,0);}
.m9b_c00136{transform:matrix(0.195330,0.006257,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195330,0.006257,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195330,0.006257,-0.008004,0.249872,0,0);}
.m46_c00136{transform:matrix(0.195397,0.005862,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195397,0.005862,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195397,0.005862,-0.007497,0.249888,0,0);}
.mc0_c00136{transform:matrix(0.196094,0.006281,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196094,0.006281,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196094,0.006281,-0.008004,0.249872,0,0);}
.m7_c00136{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);}
.m6a_c00136{transform:matrix(0.197101,0.005913,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197101,0.005913,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197101,0.005913,-0.007497,0.249888,0,0);}
.m35_c00136{transform:matrix(0.198524,0.003772,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198524,0.003772,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198524,0.003772,-0.004749,0.249955,0,0);}
.m26_c00136{transform:matrix(0.198589,0.003773,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198589,0.003773,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198589,0.003773,-0.004749,0.249955,0,0);}
.ma8_c00136{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);}
.m1c_c00136{transform:matrix(0.199259,0.003786,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199259,0.003786,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199259,0.003786,-0.004749,0.249955,0,0);}
.mc1_c00136{transform:matrix(0.199857,0.006402,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199857,0.006402,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199857,0.006402,-0.008004,0.249872,0,0);}
.m91_c00136{transform:matrix(0.200135,0.006004,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200135,0.006004,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200135,0.006004,-0.007497,0.249888,0,0);}
.m82_c00136{transform:matrix(0.200790,0.006024,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200790,0.006024,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200790,0.006024,-0.007497,0.249888,0,0);}
.m9f_c00136{transform:matrix(0.201707,0.006461,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201707,0.006461,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201707,0.006461,-0.008004,0.249872,0,0);}
.m41_c00136{transform:matrix(0.202793,0.003853,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202793,0.003853,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202793,0.003853,-0.004749,0.249955,0,0);}
.mbe_c00136{transform:matrix(0.203001,0.006503,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203001,0.006503,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203001,0.006503,-0.008004,0.249872,0,0);}
.m1_c00136{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);}
.m8e_c00136{transform:matrix(0.205627,0.006169,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205627,0.006169,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205627,0.006169,-0.007497,0.249888,0,0);}
.m90_c00136{transform:matrix(0.205742,0.006172,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205742,0.006172,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205742,0.006172,-0.007497,0.249888,0,0);}
.m20_c00136{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);}
.m65_c00136{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);}
.mab_c00136{transform:matrix(0.208068,0.006665,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208068,0.006665,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208068,0.006665,-0.008004,0.249872,0,0);}
.m66_c00136{transform:matrix(0.208221,0.006247,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208221,0.006247,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208221,0.006247,-0.007497,0.249888,0,0);}
.m29_c00136{transform:matrix(0.208507,0.003962,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208507,0.003962,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208507,0.003962,-0.004749,0.249955,0,0);}
.m14_c00136{transform:matrix(0.209757,0.003985,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209757,0.003985,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209757,0.003985,-0.004749,0.249955,0,0);}
.mae_c00136{transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);}
.mdc_c00136{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);}
.m22_c00136{transform:matrix(0.210647,0.004002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210647,0.004002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210647,0.004002,-0.004749,0.249955,0,0);}
.mdd_c00136{transform:matrix(0.210822,0.006753,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210822,0.006753,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210822,0.006753,-0.008004,0.249872,0,0);}
.m4c_c00136{transform:matrix(0.210940,0.006328,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210940,0.006328,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210940,0.006328,-0.007497,0.249888,0,0);}
.md_c00136{transform:matrix(0.211092,0.004011,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211092,0.004011,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211092,0.004011,-0.004749,0.249955,0,0);}
.m53_c00136{transform:matrix(0.211175,0.006335,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211175,0.006335,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211175,0.006335,-0.007497,0.249888,0,0);}
.mc5_c00136{transform:matrix(0.211357,0.006770,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211357,0.006770,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211357,0.006770,-0.008004,0.249872,0,0);}
.m2d_c00136{transform:matrix(0.211497,0.004018,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211497,0.004018,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211497,0.004018,-0.004749,0.249955,0,0);}
.md9_c00136{transform:matrix(0.211661,0.006780,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211661,0.006780,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211661,0.006780,-0.008004,0.249872,0,0);}
.m1f_c00136{transform:matrix(0.212522,0.004038,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212522,0.004038,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212522,0.004038,-0.004749,0.249955,0,0);}
.m1e_c00136{transform:matrix(0.212652,0.004040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212652,0.004040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212652,0.004040,-0.004749,0.249955,0,0);}
.m39_c00136{transform:matrix(0.213162,0.004050,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213162,0.004050,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213162,0.004050,-0.004749,0.249955,0,0);}
.m63_c00136{transform:matrix(0.213369,0.006401,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213369,0.006401,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213369,0.006401,-0.007497,0.249888,0,0);}
.m50_c00136{transform:matrix(0.213534,0.006406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213534,0.006406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213534,0.006406,-0.007497,0.249888,0,0);}
.m6e_c00136{transform:matrix(0.213969,0.006419,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213969,0.006419,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213969,0.006419,-0.007497,0.249888,0,0);}
.m5b_c00136{transform:matrix(0.214489,0.006435,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214489,0.006435,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214489,0.006435,-0.007497,0.249888,0,0);}
.m4b_c00136{transform:matrix(0.214633,0.006439,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214633,0.006439,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214633,0.006439,-0.007497,0.249888,0,0);}
.m4e_c00136{transform:matrix(0.215458,0.006464,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215458,0.006464,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215458,0.006464,-0.007497,0.249888,0,0);}
.m6f_c00136{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);}
.m38_c00136{transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);}
.mb8_c00136{transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);}
.m5c_c00136{transform:matrix(0.217442,0.006523,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217442,0.006523,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217442,0.006523,-0.007497,0.249888,0,0);}
.m95_c00136{transform:matrix(0.218498,0.006999,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218498,0.006999,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218498,0.006999,-0.008004,0.249872,0,0);}
.mb5_c00136{transform:matrix(0.218728,0.007006,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218728,0.007006,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218728,0.007006,-0.008004,0.249872,0,0);}
.mb_c00136{transform:matrix(0.218756,0.004156,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218756,0.004156,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218756,0.004156,-0.004749,0.249955,0,0);}
.m69_c00136{transform:matrix(0.219006,0.006570,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219006,0.006570,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219006,0.006570,-0.007497,0.249888,0,0);}
.m4d_c00136{transform:matrix(0.220501,0.006615,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220501,0.006615,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220501,0.006615,-0.007497,0.249888,0,0);}
.mac_c00136{transform:matrix(0.221082,0.007082,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221082,0.007082,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221082,0.007082,-0.008004,0.249872,0,0);}
.maa_c00136{transform:matrix(0.221486,0.007095,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221486,0.007095,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221486,0.007095,-0.008004,0.249872,0,0);}
.m75_c00136{transform:matrix(0.221585,0.006648,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221585,0.006648,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221585,0.006648,-0.007497,0.249888,0,0);}
.m48_c00136{transform:matrix(0.221780,0.006653,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221780,0.006653,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221780,0.006653,-0.007497,0.249888,0,0);}
.m8a_c00136{transform:matrix(0.222960,0.006689,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222960,0.006689,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222960,0.006689,-0.007497,0.249888,0,0);}
.mbd_c00136{transform:matrix(0.223275,0.007152,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223275,0.007152,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223275,0.007152,-0.008004,0.249872,0,0);}
.m2_c00136{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);}
.mcd_c00136{transform:matrix(0.224950,0.007206,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224950,0.007206,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224950,0.007206,-0.008004,0.249872,0,0);}
.m58_c00136{transform:matrix(0.225299,0.006759,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225299,0.006759,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225299,0.006759,-0.007497,0.249888,0,0);}
.mad_c00136{transform:matrix(0.226689,0.007261,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226689,0.007261,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226689,0.007261,-0.008004,0.249872,0,0);}
.m88_c00136{transform:matrix(0.228242,0.006847,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228242,0.006847,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228242,0.006847,-0.007497,0.249888,0,0);}
.m25_c00136{transform:matrix(0.228409,0.004340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228409,0.004340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228409,0.004340,-0.004749,0.249955,0,0);}
.m79_c00136{transform:matrix(0.228557,0.006857,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228557,0.006857,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228557,0.006857,-0.007497,0.249888,0,0);}
.m3d_c00136{transform:matrix(0.230613,0.004382,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230613,0.004382,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230613,0.004382,-0.004749,0.249955,0,0);}
.m55_c00136{transform:matrix(0.231001,0.006930,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231001,0.006930,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231001,0.006930,-0.007497,0.249888,0,0);}
.mf_c00136{transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);}
.ma9_c00136{transform:matrix(0.232916,0.007461,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232916,0.007461,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232916,0.007461,-0.008004,0.249872,0,0);}
.mce_c00136{transform:matrix(0.233515,0.007480,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233515,0.007480,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233515,0.007480,-0.008004,0.249872,0,0);}
.ma2_c00136{transform:matrix(0.234785,0.007521,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234785,0.007521,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234785,0.007521,-0.008004,0.249872,0,0);}
.m93_c00136{transform:matrix(0.235049,0.007051,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235049,0.007051,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235049,0.007051,-0.007497,0.249888,0,0);}
.mb4_c00136{transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);}
.mca_c00136{transform:matrix(0.238703,0.007646,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238703,0.007646,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238703,0.007646,-0.008004,0.249872,0,0);}
.mde_c00136{transform:matrix(0.239337,0.007666,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239337,0.007666,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239337,0.007666,-0.008004,0.249872,0,0);}
.m43_c00136{transform:matrix(0.239397,0.007182,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239397,0.007182,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239397,0.007182,-0.007497,0.249888,0,0);}
.mb6_c00136{transform:matrix(0.240087,0.007690,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240087,0.007690,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240087,0.007690,-0.008004,0.249872,0,0);}
.m47_c00136{transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);}
.m4_c00136{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);}
.m24_c00136{transform:matrix(0.243166,0.004620,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243166,0.004620,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243166,0.004620,-0.004749,0.249955,0,0);}
.mc6_c00136{transform:matrix(0.243425,0.007797,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243425,0.007797,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243425,0.007797,-0.008004,0.249872,0,0);}
.m8b_c00136{transform:matrix(0.244645,0.007339,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244645,0.007339,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244645,0.007339,-0.007497,0.249888,0,0);}
.m8c_c00136{transform:matrix(0.246334,0.007390,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246334,0.007390,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246334,0.007390,-0.007497,0.249888,0,0);}
.ma3_c00136{transform:matrix(0.246823,0.007906,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246823,0.007906,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246823,0.007906,-0.008004,0.249872,0,0);}
.mb9_c00136{transform:matrix(0.247338,0.007923,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247338,0.007923,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247338,0.007923,-0.008004,0.249872,0,0);}
.m71_c00136{transform:matrix(0.248258,0.007448,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248258,0.007448,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248258,0.007448,-0.007497,0.249888,0,0);}
.mc4_c00136{transform:matrix(0.248568,0.007962,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248568,0.007962,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248568,0.007962,-0.008004,0.249872,0,0);}
.m4a_c00136{transform:matrix(0.248873,0.007466,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248873,0.007466,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248873,0.007466,-0.007497,0.249888,0,0);}
.md3_c00136{transform:matrix(0.251381,0.008052,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251381,0.008052,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251381,0.008052,-0.008004,0.249872,0,0);}
.mba_c00136{transform:matrix(0.253375,0.008116,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253375,0.008116,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253375,0.008116,-0.008004,0.249872,0,0);}
.m5_c00136{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);}
.md2_c00136{transform:matrix(0.256578,0.008219,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256578,0.008219,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256578,0.008219,-0.008004,0.249872,0,0);}
.mb1_c00136{transform:matrix(0.269307,0.008626,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269307,0.008626,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269307,0.008626,-0.008004,0.249872,0,0);}
.m27_c00136{transform:matrix(0.292647,0.005560,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292647,0.005560,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292647,0.005560,-0.004749,0.249955,0,0);}
.mb0_c00136{transform:matrix(0.301485,0.009657,-0.008004,0.249872,0,0);-ms-transform:matrix(0.301485,0.009657,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.301485,0.009657,-0.008004,0.249872,0,0);}
.mc8_c00136{transform:matrix(0.305303,0.009779,-0.008004,0.249872,0,0);-ms-transform:matrix(0.305303,0.009779,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.305303,0.009779,-0.008004,0.249872,0,0);}
.mb7_c00136{transform:matrix(0.312655,0.010015,-0.008004,0.249872,0,0);-ms-transform:matrix(0.312655,0.010015,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.312655,0.010015,-0.008004,0.249872,0,0);}
.mda_c00136{transform:matrix(0.321650,0.010303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.321650,0.010303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.321650,0.010303,-0.008004,0.249872,0,0);}
.m5e_c00136{transform:matrix(0.330986,0.009930,-0.007497,0.249888,0,0);-ms-transform:matrix(0.330986,0.009930,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.330986,0.009930,-0.007497,0.249888,0,0);}
.m23_c00136{transform:matrix(0.331675,0.006302,-0.004749,0.249955,0,0);-ms-transform:matrix(0.331675,0.006302,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.331675,0.006302,-0.004749,0.249955,0,0);}
.md7_c00136{transform:matrix(0.340535,0.010908,-0.008004,0.249872,0,0);-ms-transform:matrix(0.340535,0.010908,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.340535,0.010908,-0.008004,0.249872,0,0);}
.m2e_c00136{transform:matrix(0.349852,0.006647,-0.004749,0.249955,0,0);-ms-transform:matrix(0.349852,0.006647,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.349852,0.006647,-0.004749,0.249955,0,0);}
.mb3_c00136{transform:matrix(0.353489,0.011323,-0.008004,0.249872,0,0);-ms-transform:matrix(0.353489,0.011323,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.353489,0.011323,-0.008004,0.249872,0,0);}
.m81_c00136{transform:matrix(0.372502,0.011175,-0.007497,0.249888,0,0);-ms-transform:matrix(0.372502,0.011175,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.372502,0.011175,-0.007497,0.249888,0,0);}
.mbf_c00136{transform:matrix(0.396427,0.012698,-0.008004,0.249872,0,0);-ms-transform:matrix(0.396427,0.012698,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.396427,0.012698,-0.008004,0.249872,0,0);}
.m44_c00136{transform:matrix(0.470948,0.014128,-0.007497,0.249888,0,0);-ms-transform:matrix(0.470948,0.014128,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.470948,0.014128,-0.007497,0.249888,0,0);}
.m0_c00136{transform:matrix(0.472070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472070,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;}
.fs12_c00136{font-size:55.622864px;}
.fsf_c00136{font-size:64.078816px;}
.fsd_c00136{font-size:65.129288px;}
.fsa_c00136{font-size:66.179761px;}
.fs11_c00136{font-size:67.167232px;}
.fs6_c00136{font-size:67.212129px;}
.fsb_c00136{font-size:67.230233px;}
.fs1_c00136{font-size:68.250000px;}
.fs4_c00136{font-size:68.262318px;}
.fs0_c00136{font-size:69.300000px;}
.fs7_c00136{font-size:69.312508px;}
.fs10_c00136{font-size:70.315696px;}
.fs2_c00136{font-size:70.350000px;}
.fs3_c00136{font-size:70.362697px;}
.fsc_c00136{font-size:70.381650px;}
.fs13_c00136{font-size:71.365184px;}
.fs14_c00136{font-size:72.414672px;}
.fse_c00136{font-size:72.482595px;}
.fs8_c00136{font-size:73.513266px;}
.fs5_c00136{font-size:74.563455px;}
.fs9_c00136{font-size:76.663834px;}
.y0_c00136{bottom:0.000000px;}
.ydd_c00136{bottom:138.042176px;}
.ydc_c00136{bottom:138.744714px;}
.ydb_c00136{bottom:139.963347px;}
.yda_c00136{bottom:141.713664px;}
.yd9_c00136{bottom:142.661127px;}
.yd8_c00136{bottom:143.616462px;}
.yd7_c00136{bottom:144.889698px;}
.yd6_c00136{bottom:146.700330px;}
.yd5_c00136{bottom:147.319716px;}
.yd4_c00136{bottom:149.000177px;}
.yd3_c00136{bottom:150.213914px;}
.yd2_c00136{bottom:159.103722px;}
.yd1_c00136{bottom:160.075788px;}
.yd0_c00136{bottom:160.253142px;}
.ycf_c00136{bottom:161.728833px;}
.yce_c00136{bottom:163.642715px;}
.ycd_c00136{bottom:165.024017px;}
.ycc_c00136{bottom:165.856563px;}
.ycb_c00136{bottom:167.564616px;}
.yca_c00136{bottom:168.750228px;}
.yc9_c00136{bottom:170.232639px;}
.yc8_c00136{bottom:170.741352px;}
.yc7_c00136{bottom:172.315080px;}
.yc6_c00136{bottom:173.558639px;}
.yc5_c00136{bottom:174.606411px;}
.yc4_c00136{bottom:183.736562px;}
.yc3_c00136{bottom:184.768610px;}
.yc2_c00136{bottom:186.559826px;}
.yc1_c00136{bottom:187.634210px;}
.yc0_c00136{bottom:188.391938px;}
.ybf_c00136{bottom:188.904194px;}
.ybe_c00136{bottom:189.808945px;}
.ybd_c00136{bottom:191.793218px;}
.ybc_c00136{bottom:192.711890px;}
.ybb_c00136{bottom:194.792258px;}
.yba_c00136{bottom:196.122674px;}
.yb9_c00136{bottom:196.878098px;}
.yb8_c00136{bottom:205.755798px;}
.yb7_c00136{bottom:206.911590px;}
.yb6_c00136{bottom:207.153942px;}
.yb5_c00136{bottom:208.177446px;}
.yb4_c00136{bottom:208.916166px;}
.yb3_c00136{bottom:211.231878px;}
.yb2_c00136{bottom:212.103750px;}
.yb1_c00136{bottom:213.957078px;}
.yb0_c00136{bottom:215.069142px;}
.yaf_c00136{bottom:216.196470px;}
.yae_c00136{bottom:216.921030px;}
.yad_c00136{bottom:218.373462px;}
.yac_c00136{bottom:219.394374px;}
.yab_c00136{bottom:228.015768px;}
.yaa_c00136{bottom:229.998293px;}
.ya9_c00136{bottom:230.750717px;}
.ya8_c00136{bottom:231.564810px;}
.ya7_c00136{bottom:233.951219px;}
.ya6_c00136{bottom:235.053335px;}
.ya5_c00136{bottom:237.075219px;}
.ya4_c00136{bottom:238.717267px;}
.ya3_c00136{bottom:239.914307px;}
.ya2_c00136{bottom:240.726240px;}
.ya1_c00136{bottom:241.779887px;}
.ya0_c00136{bottom:250.368672px;}
.y9f_c00136{bottom:251.613312px;}
.y9e_c00136{bottom:252.512256px;}
.y9d_c00136{bottom:254.059152px;}
.y9c_c00136{bottom:254.509584px;}
.y9b_c00136{bottom:256.748400px;}
.y9a_c00136{bottom:257.517264px;}
.y99_c00136{bottom:258.935136px;}
.y98_c00136{bottom:260.067504px;}
.y97_c00136{bottom:260.745552px;}
.y96_c00136{bottom:261.544992px;}
.y95_c00136{bottom:262.616352px;}
.y94_c00136{bottom:263.532000px;}
.y93_c00136{bottom:274.031400px;}
.y92_c00136{bottom:275.430225px;}
.y91_c00136{bottom:276.070065px;}
.y90_c00136{bottom:277.993935px;}
.y8f_c00136{bottom:280.381860px;}
.y8e_c00136{bottom:281.120910px;}
.y8d_c00136{bottom:283.503210px;}
.y8c_c00136{bottom:284.416920px;}
.y8b_c00136{bottom:285.228750px;}
.y8a_c00136{bottom:286.957890px;}
.y89_c00136{bottom:296.044515px;}
.y88_c00136{bottom:298.333200px;}
.y87_c00136{bottom:299.370345px;}
.y86_c00136{bottom:300.603225px;}
.y85_c00136{bottom:301.404960px;}
.y84_c00136{bottom:303.932925px;}
.y83_c00136{bottom:304.665360px;}
.y82_c00136{bottom:306.284835px;}
.y81_c00136{bottom:308.167770px;}
.y80_c00136{bottom:308.862480px;}
.y7f_c00136{bottom:317.719800px;}
.y7e_c00136{bottom:319.316340px;}
.y7d_c00136{bottom:320.608695px;}
.y7c_c00136{bottom:321.354000px;}
.y7b_c00136{bottom:322.942905px;}
.y7a_c00136{bottom:323.599365px;}
.y79_c00136{bottom:325.083315px;}
.y78_c00136{bottom:326.349810px;}
.y77_c00136{bottom:327.872490px;}
.y76_c00136{bottom:330.394230px;}
.y75_c00136{bottom:331.530405px;}
.y74_c00136{bottom:341.919315px;}
.y73_c00136{bottom:342.856935px;}
.y72_c00136{bottom:344.347755px;}
.y71_c00136{bottom:345.584865px;}
.y70_c00136{bottom:346.506885px;}
.y6f_c00136{bottom:347.229390px;}
.y6e_c00136{bottom:347.414475px;}
.y6d_c00136{bottom:349.124880px;}
.y6c_c00136{bottom:350.073570px;}
.y6b_c00136{bottom:351.083145px;}
.y6a_c00136{bottom:351.787800px;}
.y69_c00136{bottom:352.154970px;}
.y68_c00136{bottom:354.490695px;}
.y67_c00136{bottom:363.970740px;}
.y66_c00136{bottom:364.973115px;}
.y65_c00136{bottom:365.683425px;}
.y64_c00136{bottom:367.276995px;}
.y63_c00136{bottom:367.841700px;}
.y62_c00136{bottom:368.668710px;}
.y61_c00136{bottom:370.202160px;}
.y60_c00136{bottom:371.167080px;}
.y5f_c00136{bottom:372.596970px;}
.y5e_c00136{bottom:374.694540px;}
.y5d_c00136{bottom:375.352470px;}
.y5c_c00136{bottom:376.071780px;}
.y5b_c00136{bottom:376.909845px;}
.y5a_c00136{bottom:386.968005px;}
.y59_c00136{bottom:388.770135px;}
.y58_c00136{bottom:389.490525px;}
.y57_c00136{bottom:390.356835px;}
.y56_c00136{bottom:391.103745px;}
.y55_c00136{bottom:393.201990px;}
.y54_c00136{bottom:393.706890px;}
.y53_c00136{bottom:394.440675px;}
.y52_c00136{bottom:395.270190px;}
.y51_c00136{bottom:395.936520px;}
.y50_c00136{bottom:397.655370px;}
.y4f_c00136{bottom:398.265000px;}
.y4e_c00136{bottom:399.891675px;}
.y4d_c00136{bottom:409.301715px;}
.y4c_c00136{bottom:410.449440px;}
.y4b_c00136{bottom:411.834315px;}
.y4a_c00136{bottom:413.720535px;}
.y49_c00136{bottom:414.891525px;}
.y48_c00136{bottom:416.463915px;}
.y47_c00136{bottom:416.944425px;}
.y46_c00136{bottom:419.338920px;}
.y45_c00136{bottom:419.945835px;}
.y44_c00136{bottom:420.537900px;}
.y43_c00136{bottom:420.821040px;}
.y42_c00136{bottom:421.149990px;}
.y41_c00136{bottom:422.413500px;}
.y40_c00136{bottom:463.162980px;}
.y3f_c00136{bottom:463.733688px;}
.y3e_c00136{bottom:464.976441px;}
.y3d_c00136{bottom:465.486051px;}
.y3c_c00136{bottom:466.244566px;}
.y3b_c00136{bottom:485.812328px;}
.y3a_c00136{bottom:486.226755px;}
.y39_c00136{bottom:487.273230px;}
.y38_c00136{bottom:487.983245px;}
.y37_c00136{bottom:489.200652px;}
.y36_c00136{bottom:509.028210px;}
.y35_c00136{bottom:510.187639px;}
.y34_c00136{bottom:510.617934px;}
.y33_c00136{bottom:511.342349px;}
.y32_c00136{bottom:532.174488px;}
.y30_c00136{bottom:532.174707px;}
.y2e_c00136{bottom:532.175106px;}
.y2d_c00136{bottom:532.175111px;}
.y31_c00136{bottom:532.175181px;}
.y2f_c00136{bottom:532.175400px;}
.y2c_c00136{bottom:553.401170px;}
.y2b_c00136{bottom:554.528087px;}
.y2a_c00136{bottom:555.420714px;}
.y29_c00136{bottom:555.860334px;}
.y28_c00136{bottom:556.439879px;}
.y27_c00136{bottom:576.550790px;}
.y26_c00136{bottom:578.121633px;}
.y25_c00136{bottom:578.585336px;}
.y22_c00136{bottom:599.200403px;}
.y21_c00136{bottom:599.200588px;}
.y23_c00136{bottom:599.201022px;}
.y24_c00136{bottom:599.201588px;}
.y20_c00136{bottom:620.893047px;}
.y1f_c00136{bottom:622.068472px;}
.y1e_c00136{bottom:622.872771px;}
.y1d_c00136{bottom:642.780423px;}
.y1c_c00136{bottom:643.369631px;}
.y1b_c00136{bottom:643.929058px;}
.y1a_c00136{bottom:645.828896px;}
.y19_c00136{bottom:664.753077px;}
.y18_c00136{bottom:665.974077px;}
.y17_c00136{bottom:667.307233px;}
.y16_c00136{bottom:668.041773px;}
.y15_c00136{bottom:668.513595px;}
.y14_c00136{bottom:688.177701px;}
.y13_c00136{bottom:688.710833px;}
.y12_c00136{bottom:689.988321px;}
.y11_c00136{bottom:690.371681px;}
.y10_c00136{bottom:690.925617px;}
.yd_c00136{bottom:711.961937px;}
.yf_c00136{bottom:711.962127px;}
.ye_c00136{bottom:711.962462px;}
.yc_c00136{bottom:733.862776px;}
.yb_c00136{bottom:734.528195px;}
.ya_c00136{bottom:735.930480px;}
.y9_c00136{bottom:736.293000px;}
.y8_c00136{bottom:757.459500px;}
.y7_c00136{bottom:777.133500px;}
.y6_c00136{bottom:777.508500px;}
.y5_c00136{bottom:778.131000px;}
.y4_c00136{bottom:779.281500px;}
.y3_c00136{bottom:779.634000px;}
.y2_c00136{bottom:780.330000px;}
.y1_c00136{bottom:800.565000px;}
.h14_c00136{height:55.622864px;}
.h11_c00136{height:64.078816px;}
.hf_c00136{height:65.129288px;}
.hc_c00136{height:66.179761px;}
.h13_c00136{height:67.167232px;}
.h8_c00136{height:67.212129px;}
.hd_c00136{height:67.230233px;}
.h3_c00136{height:68.250000px;}
.h6_c00136{height:68.262318px;}
.h2_c00136{height:69.300000px;}
.h9_c00136{height:69.312508px;}
.h12_c00136{height:70.315696px;}
.h4_c00136{height:70.350000px;}
.h5_c00136{height:70.362697px;}
.he_c00136{height:70.381650px;}
.h15_c00136{height:71.365184px;}
.h16_c00136{height:72.414672px;}
.h10_c00136{height:72.482595px;}
.ha_c00136{height:73.513266px;}
.h7_c00136{height:74.563455px;}
.hb_c00136{height:76.663834px;}
.h1_c00136{height:1005.000000px;}
.h0_c00136{height:1005.150000px;}
.w0_c00136{width:705.450000px;}
.w1_c00136{width:705.750000px;}
.x0_c00136{left:0.000000px;}
.x4e_c00136{left:74.718045px;}
.x66_c00136{left:77.990325px;}
.x76_c00136{left:82.299207px;}
.x58_c00136{left:83.580825px;}
.x60_c00136{left:86.001075px;}
.x3c_c00136{left:87.124005px;}
.x6e_c00136{left:104.119500px;}
.x32_c00136{left:107.640000px;}
.x82_c00136{left:108.681911px;}
.x61_c00136{left:110.809560px;}
.x7a_c00136{left:114.091266px;}
.x46_c00136{left:117.083490px;}
.x59_c00136{left:122.754495px;}
.x6f_c00136{left:132.704886px;}
.x67_c00136{left:133.776660px;}
.x47_c00136{left:142.762020px;}
.x3d_c00136{left:145.199970px;}
.x88_c00136{left:147.284790px;}
.x33_c00136{left:149.757000px;}
.x1e_c00136{left:152.275366px;}
.x4f_c00136{left:158.130540px;}
.x68_c00136{left:159.986895px;}
.x30_c00136{left:160.991259px;}
.x23_c00136{left:162.056736px;}
.x15_c00136{left:163.332329px;}
.x3_c00136{left:165.408000px;}
.x9_c00136{left:167.400000px;}
.x34_c00136{left:170.160000px;}
.x50_c00136{left:171.220305px;}
.x62_c00136{left:178.078110px;}
.x1f_c00136{left:181.980082px;}
.xc_c00136{left:184.705500px;}
.x28_c00136{left:187.382511px;}
.x69_c00136{left:189.442995px;}
.x21_c00136{left:190.623350px;}
.x11_c00136{left:192.253419px;}
.x31_c00136{left:195.463793px;}
.x2b_c00136{left:196.564386px;}
.x24_c00136{left:198.324317px;}
.x1c_c00136{left:204.892687px;}
.x4_c00136{left:206.317500px;}
.x35_c00136{left:210.126000px;}
.x12_c00136{left:211.403548px;}
.x2d_c00136{left:214.361405px;}
.x2c_c00136{left:217.079116px;}
.x16_c00136{left:218.137694px;}
.x8e_c00136{left:219.924476px;}
.x25_c00136{left:225.805884px;}
.x5_c00136{left:227.074500px;}
.x3e_c00136{left:228.370965px;}
.xa_c00136{left:231.120000px;}
.x51_c00136{left:232.414950px;}
.x77_c00136{left:233.902805px;}
.x63_c00136{left:235.914075px;}
.x29_c00136{left:238.421922px;}
.x20_c00136{left:240.310644px;}
.x83_c00136{left:243.842115px;}
.xf_c00136{left:245.983886px;}
.x19_c00136{left:247.029094px;}
.x3f_c00136{left:252.183405px;}
.x89_c00136{left:255.203304px;}
.xd_c00136{left:258.510000px;}
.x5a_c00136{left:262.222680px;}
.xb_c00136{left:264.600000px;}
.x1d_c00136{left:266.757187px;}
.x10_c00136{left:268.667565px;}
.x1a_c00136{left:271.339242px;}
.x2a_c00136{left:272.988405px;}
.x13_c00136{left:275.243823px;}
.x17_c00136{left:278.747745px;}
.x26_c00136{left:281.631576px;}
.x22_c00136{left:283.013355px;}
.x2e_c00136{left:290.776119px;}
.x48_c00136{left:292.233975px;}
.xe_c00136{left:293.532000px;}
.x6_c00136{left:294.724500px;}
.x1b_c00136{left:296.979804px;}
.x78_c00136{left:299.037171px;}
.x8f_c00136{left:300.844164px;}
.x14_c00136{left:301.881810px;}
.x36_c00136{left:305.959500px;}
.x1_c00136{left:306.990000px;}
.x2f_c00136{left:308.797251px;}
.x7b_c00136{left:309.823838px;}
.x70_c00136{left:315.895013px;}
.x40_c00136{left:326.077860px;}
.x52_c00136{left:327.357120px;}
.x7_c00136{left:331.333500px;}
.x18_c00136{left:334.244581px;}
.x7c_c00136{left:337.042591px;}
.x2_c00136{left:343.170000px;}
.x84_c00136{left:350.025825px;}
.x27_c00136{left:352.078595px;}
.x8_c00136{left:353.430000px;}
.x5b_c00136{left:357.057015px;}
.x37_c00136{left:358.372500px;}
.x53_c00136{left:359.762055px;}
.x6a_c00136{left:367.180185px;}
.x85_c00136{left:373.681146px;}
.x90_c00136{left:375.006636px;}
.x5c_c00136{left:379.689690px;}
.x49_c00136{left:381.468330px;}
.x71_c00136{left:385.788050px;}
.x54_c00136{left:392.698035px;}
.x38_c00136{left:397.405500px;}
.x72_c00136{left:399.849973px;}
.x41_c00136{left:401.023860px;}
.x86_c00136{left:407.222072px;}
.x7d_c00136{left:409.336225px;}
.x4a_c00136{left:410.987085px;}
.x64_c00136{left:425.025915px;}
.x42_c00136{left:427.722480px;}
.x6b_c00136{left:429.257340px;}
.x4b_c00136{left:431.161800px;}
.x7e_c00136{left:432.398140px;}
.x5d_c00136{left:434.454810px;}
.x55_c00136{left:436.887690px;}
.x73_c00136{left:448.142133px;}
.x6c_c00136{left:449.884710px;}
.x43_c00136{left:458.651325px;}
.x39_c00136{left:460.279500px;}
.x65_c00136{left:462.049620px;}
.x87_c00136{left:463.141596px;}
.x7f_c00136{left:464.350656px;}
.x8a_c00136{left:467.752719px;}
.x80_c00136{left:471.916583px;}
.x74_c00136{left:476.206041px;}
.x44_c00136{left:484.365855px;}
.x4c_c00136{left:488.084220px;}
.x56_c00136{left:490.134885px;}
.x6d_c00136{left:495.010860px;}
.x5e_c00136{left:504.728925px;}
.x3a_c00136{left:506.442000px;}
.x81_c00136{left:507.998964px;}
.x8b_c00136{left:512.417069px;}
.x4d_c00136{left:513.462750px;}
.x75_c00136{left:515.062146px;}
.x8c_c00136{left:517.766522px;}
.x57_c00136{left:523.640910px;}
.x79_c00136{left:525.812424px;}
.x91_c00136{left:528.804534px;}
.x3b_c00136{left:544.699500px;}
.x8d_c00136{left:547.176621px;}
.x45_c00136{left:548.740725px;}
.x5f_c00136{left:559.798590px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.000000pt;}
.fs12_c00136{font-size:49.442546pt;}
.fsf_c00136{font-size:56.958948pt;}
.fsd_c00136{font-size:57.892701pt;}
.fsa_c00136{font-size:58.826454pt;}
.fs11_c00136{font-size:59.704206pt;}
.fs6_c00136{font-size:59.744114pt;}
.fsb_c00136{font-size:59.760207pt;}
.fs1_c00136{font-size:60.666667pt;}
.fs4_c00136{font-size:60.677616pt;}
.fs0_c00136{font-size:61.600000pt;}
.fs7_c00136{font-size:61.611118pt;}
.fs10_c00136{font-size:62.502841pt;}
.fs2_c00136{font-size:62.533333pt;}
.fs3_c00136{font-size:62.544620pt;}
.fsc_c00136{font-size:62.561467pt;}
.fs13_c00136{font-size:63.435719pt;}
.fs14_c00136{font-size:64.368597pt;}
.fse_c00136{font-size:64.428973pt;}
.fs8_c00136{font-size:65.345125pt;}
.fs5_c00136{font-size:66.278627pt;}
.fs9_c00136{font-size:68.145630pt;}
.y0_c00136{bottom:0.000000pt;}
.ydd_c00136{bottom:122.704156pt;}
.ydc_c00136{bottom:123.328635pt;}
.ydb_c00136{bottom:124.411864pt;}
.yda_c00136{bottom:125.967701pt;}
.yd9_c00136{bottom:126.809891pt;}
.yd8_c00136{bottom:127.659077pt;}
.yd7_c00136{bottom:128.790843pt;}
.yd6_c00136{bottom:130.400293pt;}
.yd5_c00136{bottom:130.950859pt;}
.yd4_c00136{bottom:132.444601pt;}
.yd3_c00136{bottom:133.523479pt;}
.yd2_c00136{bottom:141.425531pt;}
.yd1_c00136{bottom:142.289589pt;}
.yd0_c00136{bottom:142.447237pt;}
.ycf_c00136{bottom:143.758963pt;}
.yce_c00136{bottom:145.460191pt;}
.ycd_c00136{bottom:146.688015pt;}
.ycc_c00136{bottom:147.428056pt;}
.ycb_c00136{bottom:148.946325pt;}
.yca_c00136{bottom:150.000203pt;}
.yc9_c00136{bottom:151.317901pt;}
.yc8_c00136{bottom:151.770091pt;}
.yc7_c00136{bottom:153.168960pt;}
.yc6_c00136{bottom:154.274345pt;}
.yc5_c00136{bottom:155.205699pt;}
.yc4_c00136{bottom:163.321388pt;}
.yc3_c00136{bottom:164.238764pt;}
.yc2_c00136{bottom:165.830956pt;}
.yc1_c00136{bottom:166.785964pt;}
.yc0_c00136{bottom:167.459500pt;}
.ybf_c00136{bottom:167.914839pt;}
.ybe_c00136{bottom:168.719063pt;}
.ybd_c00136{bottom:170.482860pt;}
.ybc_c00136{bottom:171.299457pt;}
.ybb_c00136{bottom:173.148673pt;}
.yba_c00136{bottom:174.331265pt;}
.yb9_c00136{bottom:175.002753pt;}
.yb8_c00136{bottom:182.894043pt;}
.yb7_c00136{bottom:183.921413pt;}
.yb6_c00136{bottom:184.136837pt;}
.yb5_c00136{bottom:185.046619pt;}
.yb4_c00136{bottom:185.703259pt;}
.yb3_c00136{bottom:187.761669pt;}
.yb2_c00136{bottom:188.536667pt;}
.yb1_c00136{bottom:190.184069pt;}
.yb0_c00136{bottom:191.172571pt;}
.yaf_c00136{bottom:192.174640pt;}
.yae_c00136{bottom:192.818693pt;}
.yad_c00136{bottom:194.109744pt;}
.yac_c00136{bottom:195.017221pt;}
.yab_c00136{bottom:202.680683pt;}
.yaa_c00136{bottom:204.442927pt;}
.ya9_c00136{bottom:205.111748pt;}
.ya8_c00136{bottom:205.835387pt;}
.ya7_c00136{bottom:207.956639pt;}
.ya6_c00136{bottom:208.936297pt;}
.ya5_c00136{bottom:210.733528pt;}
.ya4_c00136{bottom:212.193127pt;}
.ya3_c00136{bottom:213.257161pt;}
.ya2_c00136{bottom:213.978880pt;}
.ya1_c00136{bottom:214.915455pt;}
.ya0_c00136{bottom:222.549931pt;}
.y9f_c00136{bottom:223.656277pt;}
.y9e_c00136{bottom:224.455339pt;}
.y9d_c00136{bottom:225.830357pt;}
.y9c_c00136{bottom:226.230741pt;}
.y9b_c00136{bottom:228.220800pt;}
.y9a_c00136{bottom:228.904235pt;}
.y99_c00136{bottom:230.164565pt;}
.y98_c00136{bottom:231.171115pt;}
.y97_c00136{bottom:231.773824pt;}
.y96_c00136{bottom:232.484437pt;}
.y95_c00136{bottom:233.436757pt;}
.y94_c00136{bottom:234.250667pt;}
.y93_c00136{bottom:243.583467pt;}
.y92_c00136{bottom:244.826867pt;}
.y91_c00136{bottom:245.395613pt;}
.y90_c00136{bottom:247.105720pt;}
.y8f_c00136{bottom:249.228320pt;}
.y8e_c00136{bottom:249.885253pt;}
.y8d_c00136{bottom:252.002853pt;}
.y8c_c00136{bottom:252.815040pt;}
.y8b_c00136{bottom:253.536667pt;}
.y8a_c00136{bottom:255.073680pt;}
.y89_c00136{bottom:263.150680pt;}
.y88_c00136{bottom:265.185067pt;}
.y87_c00136{bottom:266.106973pt;}
.y86_c00136{bottom:267.202867pt;}
.y85_c00136{bottom:267.915520pt;}
.y84_c00136{bottom:270.162600pt;}
.y83_c00136{bottom:270.813653pt;}
.y82_c00136{bottom:272.253187pt;}
.y81_c00136{bottom:273.926907pt;}
.y80_c00136{bottom:274.544427pt;}
.y7f_c00136{bottom:282.417600pt;}
.y7e_c00136{bottom:283.836747pt;}
.y7d_c00136{bottom:284.985507pt;}
.y7c_c00136{bottom:285.648000pt;}
.y7b_c00136{bottom:287.060360pt;}
.y7a_c00136{bottom:287.643880pt;}
.y79_c00136{bottom:288.962947pt;}
.y78_c00136{bottom:290.088720pt;}
.y77_c00136{bottom:291.442213pt;}
.y76_c00136{bottom:293.683760pt;}
.y75_c00136{bottom:294.693693pt;}
.y74_c00136{bottom:303.928280pt;}
.y73_c00136{bottom:304.761720pt;}
.y72_c00136{bottom:306.086893pt;}
.y71_c00136{bottom:307.186547pt;}
.y70_c00136{bottom:308.006120pt;}
.y6f_c00136{bottom:308.648347pt;}
.y6e_c00136{bottom:308.812867pt;}
.y6d_c00136{bottom:310.333227pt;}
.y6c_c00136{bottom:311.176507pt;}
.y6b_c00136{bottom:312.073907pt;}
.y6a_c00136{bottom:312.700267pt;}
.y69_c00136{bottom:313.026640pt;}
.y68_c00136{bottom:315.102840pt;}
.y67_c00136{bottom:323.529547pt;}
.y66_c00136{bottom:324.420547pt;}
.y65_c00136{bottom:325.051933pt;}
.y64_c00136{bottom:326.468440pt;}
.y63_c00136{bottom:326.970400pt;}
.y62_c00136{bottom:327.705520pt;}
.y61_c00136{bottom:329.068587pt;}
.y60_c00136{bottom:329.926293pt;}
.y5f_c00136{bottom:331.197307pt;}
.y5e_c00136{bottom:333.061813pt;}
.y5d_c00136{bottom:333.646640pt;}
.y5c_c00136{bottom:334.286027pt;}
.y5b_c00136{bottom:335.030973pt;}
.y5a_c00136{bottom:343.971560pt;}
.y59_c00136{bottom:345.573453pt;}
.y58_c00136{bottom:346.213800pt;}
.y57_c00136{bottom:346.983853pt;}
.y56_c00136{bottom:347.647773pt;}
.y55_c00136{bottom:349.512880pt;}
.y54_c00136{bottom:349.961680pt;}
.y53_c00136{bottom:350.613933pt;}
.y52_c00136{bottom:351.351280pt;}
.y51_c00136{bottom:351.943573pt;}
.y50_c00136{bottom:353.471440pt;}
.y4f_c00136{bottom:354.013333pt;}
.y4e_c00136{bottom:355.459267pt;}
.y4d_c00136{bottom:363.823747pt;}
.y4c_c00136{bottom:364.843947pt;}
.y4b_c00136{bottom:366.074947pt;}
.y4a_c00136{bottom:367.751587pt;}
.y49_c00136{bottom:368.792467pt;}
.y48_c00136{bottom:370.190147pt;}
.y47_c00136{bottom:370.617267pt;}
.y46_c00136{bottom:372.745707pt;}
.y45_c00136{bottom:373.285187pt;}
.y44_c00136{bottom:373.811467pt;}
.y43_c00136{bottom:374.063147pt;}
.y42_c00136{bottom:374.355547pt;}
.y41_c00136{bottom:375.478667pt;}
.y40_c00136{bottom:411.700427pt;}
.y3f_c00136{bottom:412.207723pt;}
.y3e_c00136{bottom:413.312392pt;}
.y3d_c00136{bottom:413.765379pt;}
.y3c_c00136{bottom:414.439615pt;}
.y3b_c00136{bottom:431.833180pt;}
.y3a_c00136{bottom:432.201560pt;}
.y39_c00136{bottom:433.131760pt;}
.y38_c00136{bottom:433.762884pt;}
.y37_c00136{bottom:434.845024pt;}
.y36_c00136{bottom:452.469520pt;}
.y35_c00136{bottom:453.500124pt;}
.y34_c00136{bottom:453.882608pt;}
.y33_c00136{bottom:454.526532pt;}
.y32_c00136{bottom:473.043989pt;}
.y30_c00136{bottom:473.044184pt;}
.y2e_c00136{bottom:473.044539pt;}
.y2d_c00136{bottom:473.044543pt;}
.y31_c00136{bottom:473.044605pt;}
.y2f_c00136{bottom:473.044800pt;}
.y2c_c00136{bottom:491.912151pt;}
.y2b_c00136{bottom:492.913855pt;}
.y2a_c00136{bottom:493.707301pt;}
.y29_c00136{bottom:494.098075pt;}
.y28_c00136{bottom:494.613225pt;}
.y27_c00136{bottom:512.489591pt;}
.y26_c00136{bottom:513.885896pt;}
.y25_c00136{bottom:514.298076pt;}
.y22_c00136{bottom:532.622580pt;}
.y21_c00136{bottom:532.622745pt;}
.y23_c00136{bottom:532.623131pt;}
.y24_c00136{bottom:532.623633pt;}
.y20_c00136{bottom:551.904931pt;}
.y1f_c00136{bottom:552.949753pt;}
.y1e_c00136{bottom:553.664685pt;}
.y1d_c00136{bottom:571.360376pt;}
.y1c_c00136{bottom:571.884116pt;}
.y1b_c00136{bottom:572.381385pt;}
.y1a_c00136{bottom:574.070129pt;}
.y19_c00136{bottom:590.891624pt;}
.y18_c00136{bottom:591.976957pt;}
.y17_c00136{bottom:593.161985pt;}
.y16_c00136{bottom:593.814909pt;}
.y15_c00136{bottom:594.234307pt;}
.y14_c00136{bottom:611.713512pt;}
.y13_c00136{bottom:612.187407pt;}
.y12_c00136{bottom:613.322952pt;}
.y11_c00136{bottom:613.663716pt;}
.y10_c00136{bottom:614.156104pt;}
.yd_c00136{bottom:632.855055pt;}
.yf_c00136{bottom:632.855224pt;}
.ye_c00136{bottom:632.855521pt;}
.yc_c00136{bottom:652.322468pt;}
.yb_c00136{bottom:652.913951pt;}
.ya_c00136{bottom:654.160427pt;}
.y9_c00136{bottom:654.482667pt;}
.y8_c00136{bottom:673.297333pt;}
.y7_c00136{bottom:690.785333pt;}
.y6_c00136{bottom:691.118667pt;}
.y5_c00136{bottom:691.672000pt;}
.y4_c00136{bottom:692.694667pt;}
.y3_c00136{bottom:693.008000pt;}
.y2_c00136{bottom:693.626667pt;}
.y1_c00136{bottom:711.613333pt;}
.h14_c00136{height:49.442546pt;}
.h11_c00136{height:56.958948pt;}
.hf_c00136{height:57.892701pt;}
.hc_c00136{height:58.826454pt;}
.h13_c00136{height:59.704206pt;}
.h8_c00136{height:59.744114pt;}
.hd_c00136{height:59.760207pt;}
.h3_c00136{height:60.666667pt;}
.h6_c00136{height:60.677616pt;}
.h2_c00136{height:61.600000pt;}
.h9_c00136{height:61.611118pt;}
.h12_c00136{height:62.502841pt;}
.h4_c00136{height:62.533333pt;}
.h5_c00136{height:62.544620pt;}
.he_c00136{height:62.561467pt;}
.h15_c00136{height:63.435719pt;}
.h16_c00136{height:64.368597pt;}
.h10_c00136{height:64.428973pt;}
.ha_c00136{height:65.345125pt;}
.h7_c00136{height:66.278627pt;}
.hb_c00136{height:68.145630pt;}
.h1_c00136{height:893.333333pt;}
.h0_c00136{height:893.466667pt;}
.w0_c00136{width:627.066667pt;}
.w1_c00136{width:627.333333pt;}
.x0_c00136{left:0.000000pt;}
.x4e_c00136{left:66.416040pt;}
.x66_c00136{left:69.324733pt;}
.x76_c00136{left:73.154851pt;}
.x58_c00136{left:74.294067pt;}
.x60_c00136{left:76.445400pt;}
.x3c_c00136{left:77.443560pt;}
.x6e_c00136{left:92.550667pt;}
.x32_c00136{left:95.680000pt;}
.x82_c00136{left:96.606143pt;}
.x61_c00136{left:98.497387pt;}
.x7a_c00136{left:101.414459pt;}
.x46_c00136{left:104.074213pt;}
.x59_c00136{left:109.115107pt;}
.x6f_c00136{left:117.959899pt;}
.x67_c00136{left:118.912587pt;}
.x47_c00136{left:126.899573pt;}
.x3d_c00136{left:129.066640pt;}
.x88_c00136{left:130.919813pt;}
.x33_c00136{left:133.117333pt;}
.x1e_c00136{left:135.355881pt;}
.x4f_c00136{left:140.560480pt;}
.x68_c00136{left:142.210573pt;}
.x30_c00136{left:143.103341pt;}
.x23_c00136{left:144.050432pt;}
.x15_c00136{left:145.184292pt;}
.x3_c00136{left:147.029333pt;}
.x9_c00136{left:148.800000pt;}
.x34_c00136{left:151.253333pt;}
.x50_c00136{left:152.195827pt;}
.x62_c00136{left:158.291653pt;}
.x1f_c00136{left:161.760073pt;}
.xc_c00136{left:164.182667pt;}
.x28_c00136{left:166.562232pt;}
.x69_c00136{left:168.393773pt;}
.x21_c00136{left:169.442977pt;}
.x11_c00136{left:170.891928pt;}
.x31_c00136{left:173.745593pt;}
.x2b_c00136{left:174.723899pt;}
.x24_c00136{left:176.288281pt;}
.x1c_c00136{left:182.126833pt;}
.x4_c00136{left:183.393333pt;}
.x35_c00136{left:186.778667pt;}
.x12_c00136{left:187.914265pt;}
.x2d_c00136{left:190.543471pt;}
.x2c_c00136{left:192.959215pt;}
.x16_c00136{left:193.900172pt;}
.x8e_c00136{left:195.488423pt;}
.x25_c00136{left:200.716341pt;}
.x5_c00136{left:201.844000pt;}
.x3e_c00136{left:202.996413pt;}
.xa_c00136{left:205.440000pt;}
.x51_c00136{left:206.591067pt;}
.x77_c00136{left:207.913604pt;}
.x63_c00136{left:209.701400pt;}
.x29_c00136{left:211.930597pt;}
.x20_c00136{left:213.609461pt;}
.x83_c00136{left:216.748547pt;}
.xf_c00136{left:218.652343pt;}
.x19_c00136{left:219.581417pt;}
.x3f_c00136{left:224.163027pt;}
.x89_c00136{left:226.847381pt;}
.xd_c00136{left:229.786667pt;}
.x5a_c00136{left:233.086827pt;}
.xb_c00136{left:235.200000pt;}
.x1d_c00136{left:237.117500pt;}
.x10_c00136{left:238.815613pt;}
.x1a_c00136{left:241.190437pt;}
.x2a_c00136{left:242.656360pt;}
.x13_c00136{left:244.661176pt;}
.x17_c00136{left:247.775773pt;}
.x26_c00136{left:250.339179pt;}
.x22_c00136{left:251.567427pt;}
.x2e_c00136{left:258.467661pt;}
.x48_c00136{left:259.763533pt;}
.xe_c00136{left:260.917333pt;}
.x6_c00136{left:261.977333pt;}
.x1b_c00136{left:263.982048pt;}
.x78_c00136{left:265.810819pt;}
.x8f_c00136{left:267.417035pt;}
.x14_c00136{left:268.339387pt;}
.x36_c00136{left:271.964000pt;}
.x1_c00136{left:272.880000pt;}
.x2f_c00136{left:274.486445pt;}
.x7b_c00136{left:275.398967pt;}
.x70_c00136{left:280.795567pt;}
.x40_c00136{left:289.846987pt;}
.x52_c00136{left:290.984107pt;}
.x7_c00136{left:294.518667pt;}
.x18_c00136{left:297.106295pt;}
.x7c_c00136{left:299.593415pt;}
.x2_c00136{left:305.040000pt;}
.x84_c00136{left:311.134067pt;}
.x27_c00136{left:312.958751pt;}
.x8_c00136{left:314.160000pt;}
.x5b_c00136{left:317.384013pt;}
.x37_c00136{left:318.553333pt;}
.x53_c00136{left:319.788493pt;}
.x6a_c00136{left:326.382387pt;}
.x85_c00136{left:332.161019pt;}
.x90_c00136{left:333.339232pt;}
.x5c_c00136{left:337.501947pt;}
.x49_c00136{left:339.082960pt;}
.x71_c00136{left:342.922711pt;}
.x54_c00136{left:349.064920pt;}
.x38_c00136{left:353.249333pt;}
.x72_c00136{left:355.422199pt;}
.x41_c00136{left:356.465653pt;}
.x86_c00136{left:361.975175pt;}
.x7d_c00136{left:363.854423pt;}
.x4a_c00136{left:365.321853pt;}
.x64_c00136{left:377.800813pt;}
.x42_c00136{left:380.197760pt;}
.x6b_c00136{left:381.562080pt;}
.x4b_c00136{left:383.254933pt;}
.x7e_c00136{left:384.353903pt;}
.x5d_c00136{left:386.182053pt;}
.x55_c00136{left:388.344613pt;}
.x73_c00136{left:398.348563pt;}
.x6c_c00136{left:399.897520pt;}
.x43_c00136{left:407.690067pt;}
.x39_c00136{left:409.137333pt;}
.x65_c00136{left:410.710773pt;}
.x87_c00136{left:411.681419pt;}
.x7f_c00136{left:412.756139pt;}
.x8a_c00136{left:415.780195pt;}
.x80_c00136{left:419.481407pt;}
.x74_c00136{left:423.294259pt;}
.x44_c00136{left:430.547427pt;}
.x4c_c00136{left:433.852640pt;}
.x56_c00136{left:435.675453pt;}
.x6d_c00136{left:440.009653pt;}
.x5e_c00136{left:448.647933pt;}
.x3a_c00136{left:450.170667pt;}
.x81_c00136{left:451.554635pt;}
.x8b_c00136{left:455.481839pt;}
.x4d_c00136{left:456.411333pt;}
.x75_c00136{left:457.833019pt;}
.x8c_c00136{left:460.236908pt;}
.x57_c00136{left:465.458587pt;}
.x79_c00136{left:467.388821pt;}
.x91_c00136{left:470.048475pt;}
.x3b_c00136{left:484.177333pt;}
.x8d_c00136{left:486.379219pt;}
.x45_c00136{left:487.769533pt;}
.x5f_c00136{left:497.598747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m167_c00137{transform:matrix(0.068041,-0.000748,0.002750,0.249985,0,0);-ms-transform:matrix(0.068041,-0.000748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.068041,-0.000748,0.002750,0.249985,0,0);}
.m17e_c00137{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);}
.ma_c00137{transform:matrix(0.091544,-0.001007,0.002750,0.249985,0,0);-ms-transform:matrix(0.091544,-0.001007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.091544,-0.001007,0.002750,0.249985,0,0);}
.m34_c00137{transform:matrix(0.091679,-0.001008,0.002750,0.249985,0,0);-ms-transform:matrix(0.091679,-0.001008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.091679,-0.001008,0.002750,0.249985,0,0);}
.m13e_c00137{transform:matrix(0.115748,-0.001273,0.002750,0.249985,0,0);-ms-transform:matrix(0.115748,-0.001273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.115748,-0.001273,0.002750,0.249985,0,0);}
.m2a_c00137{transform:matrix(0.128227,-0.001410,0.002750,0.249985,0,0);-ms-transform:matrix(0.128227,-0.001410,0.002750,0.249985,0,0);-webkit-transform:matrix(0.128227,-0.001410,0.002750,0.249985,0,0);}
.m91_c00137{transform:matrix(0.130172,-0.001432,0.002750,0.249985,0,0);-ms-transform:matrix(0.130172,-0.001432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.130172,-0.001432,0.002750,0.249985,0,0);}
.m3f_c00137{transform:matrix(0.130747,-0.001438,0.002750,0.249985,0,0);-ms-transform:matrix(0.130747,-0.001438,0.002750,0.249985,0,0);-webkit-transform:matrix(0.130747,-0.001438,0.002750,0.249985,0,0);}
.m7_c00137{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00137{transform:matrix(0.138972,-0.001529,0.002750,0.249985,0,0);-ms-transform:matrix(0.138972,-0.001529,0.002750,0.249985,0,0);-webkit-transform:matrix(0.138972,-0.001529,0.002750,0.249985,0,0);}
.md_c00137{transform:matrix(0.140746,-0.001548,0.002750,0.249985,0,0);-ms-transform:matrix(0.140746,-0.001548,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140746,-0.001548,0.002750,0.249985,0,0);}
.md6_c00137{transform:matrix(0.141526,-0.001557,0.002750,0.249985,0,0);-ms-transform:matrix(0.141526,-0.001557,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141526,-0.001557,0.002750,0.249985,0,0);}
.m25_c00137{transform:matrix(0.142186,-0.001564,0.002750,0.249985,0,0);-ms-transform:matrix(0.142186,-0.001564,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142186,-0.001564,0.002750,0.249985,0,0);}
.m1f_c00137{transform:matrix(0.142411,-0.001567,0.002750,0.249985,0,0);-ms-transform:matrix(0.142411,-0.001567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142411,-0.001567,0.002750,0.249985,0,0);}
.m5f_c00137{transform:matrix(0.142416,-0.001567,0.002750,0.249985,0,0);-ms-transform:matrix(0.142416,-0.001567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142416,-0.001567,0.002750,0.249985,0,0);}
.med_c00137{transform:matrix(0.143256,-0.001576,0.002750,0.249985,0,0);-ms-transform:matrix(0.143256,-0.001576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143256,-0.001576,0.002750,0.249985,0,0);}
.m178_c00137{transform:matrix(0.144946,-0.001594,0.002750,0.249985,0,0);-ms-transform:matrix(0.144946,-0.001594,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144946,-0.001594,0.002750,0.249985,0,0);}
.m22_c00137{transform:matrix(0.145376,-0.001599,0.002750,0.249985,0,0);-ms-transform:matrix(0.145376,-0.001599,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145376,-0.001599,0.002750,0.249985,0,0);}
.m139_c00137{transform:matrix(0.146321,-0.001610,0.002750,0.249985,0,0);-ms-transform:matrix(0.146321,-0.001610,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146321,-0.001610,0.002750,0.249985,0,0);}
.m7c_c00137{transform:matrix(0.146376,-0.001610,0.002750,0.249985,0,0);-ms-transform:matrix(0.146376,-0.001610,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146376,-0.001610,0.002750,0.249985,0,0);}
.m130_c00137{transform:matrix(0.146991,-0.001617,0.002750,0.249985,0,0);-ms-transform:matrix(0.146991,-0.001617,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146991,-0.001617,0.002750,0.249985,0,0);}
.m6d_c00137{transform:matrix(0.147531,-0.001623,0.002750,0.249985,0,0);-ms-transform:matrix(0.147531,-0.001623,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147531,-0.001623,0.002750,0.249985,0,0);}
.m27_c00137{transform:matrix(0.147656,-0.001624,0.002750,0.249985,0,0);-ms-transform:matrix(0.147656,-0.001624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147656,-0.001624,0.002750,0.249985,0,0);}
.m55_c00137{transform:matrix(0.147841,-0.001626,0.002750,0.249985,0,0);-ms-transform:matrix(0.147841,-0.001626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147841,-0.001626,0.002750,0.249985,0,0);}
.m3a_c00137{transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-ms-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);}
.m2e_c00137{transform:matrix(0.148271,-0.001631,0.002750,0.249985,0,0);-ms-transform:matrix(0.148271,-0.001631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148271,-0.001631,0.002750,0.249985,0,0);}
.m93_c00137{transform:matrix(0.148446,-0.001633,0.002750,0.249985,0,0);-ms-transform:matrix(0.148446,-0.001633,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148446,-0.001633,0.002750,0.249985,0,0);}
.m54_c00137{transform:matrix(0.150111,-0.001651,0.002750,0.249985,0,0);-ms-transform:matrix(0.150111,-0.001651,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150111,-0.001651,0.002750,0.249985,0,0);}
.m161_c00137{transform:matrix(0.150226,-0.001652,0.002750,0.249985,0,0);-ms-transform:matrix(0.150226,-0.001652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150226,-0.001652,0.002750,0.249985,0,0);}
.mba_c00137{transform:matrix(0.151336,-0.001665,0.002750,0.249985,0,0);-ms-transform:matrix(0.151336,-0.001665,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151336,-0.001665,0.002750,0.249985,0,0);}
.m163_c00137{transform:matrix(0.151541,-0.001667,0.002750,0.249985,0,0);-ms-transform:matrix(0.151541,-0.001667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151541,-0.001667,0.002750,0.249985,0,0);}
.m8d_c00137{transform:matrix(0.152006,-0.001672,0.002750,0.249985,0,0);-ms-transform:matrix(0.152006,-0.001672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152006,-0.001672,0.002750,0.249985,0,0);}
.m171_c00137{transform:matrix(0.152141,-0.001674,0.002750,0.249985,0,0);-ms-transform:matrix(0.152141,-0.001674,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152141,-0.001674,0.002750,0.249985,0,0);}
.m57_c00137{transform:matrix(0.153511,-0.001689,0.002750,0.249985,0,0);-ms-transform:matrix(0.153511,-0.001689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153511,-0.001689,0.002750,0.249985,0,0);}
.m148_c00137{transform:matrix(0.154781,-0.001703,0.002750,0.249985,0,0);-ms-transform:matrix(0.154781,-0.001703,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154781,-0.001703,0.002750,0.249985,0,0);}
.m8f_c00137{transform:matrix(0.156266,-0.001719,0.002750,0.249985,0,0);-ms-transform:matrix(0.156266,-0.001719,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156266,-0.001719,0.002750,0.249985,0,0);}
.mab_c00137{transform:matrix(0.157235,-0.001730,0.002750,0.249985,0,0);-ms-transform:matrix(0.157235,-0.001730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157235,-0.001730,0.002750,0.249985,0,0);}
.ma3_c00137{transform:matrix(0.157500,-0.001733,0.002750,0.249985,0,0);-ms-transform:matrix(0.157500,-0.001733,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157500,-0.001733,0.002750,0.249985,0,0);}
.mb5_c00137{transform:matrix(0.157580,-0.001733,0.002750,0.249985,0,0);-ms-transform:matrix(0.157580,-0.001733,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157580,-0.001733,0.002750,0.249985,0,0);}
.m78_c00137{transform:matrix(0.157910,-0.001737,0.002750,0.249985,0,0);-ms-transform:matrix(0.157910,-0.001737,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157910,-0.001737,0.002750,0.249985,0,0);}
.m88_c00137{transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);-ms-transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);}
.m124_c00137{transform:matrix(0.158275,-0.001741,0.002750,0.249985,0,0);-ms-transform:matrix(0.158275,-0.001741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158275,-0.001741,0.002750,0.249985,0,0);}
.mc5_c00137{transform:matrix(0.158320,-0.001742,0.002750,0.249985,0,0);-ms-transform:matrix(0.158320,-0.001742,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158320,-0.001742,0.002750,0.249985,0,0);}
.m28_c00137{transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);-ms-transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);}
.m10b_c00137{transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);-ms-transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);}
.m92_c00137{transform:matrix(0.159455,-0.001754,0.002750,0.249985,0,0);-ms-transform:matrix(0.159455,-0.001754,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159455,-0.001754,0.002750,0.249985,0,0);}
.m31_c00137{transform:matrix(0.159945,-0.001759,0.002750,0.249985,0,0);-ms-transform:matrix(0.159945,-0.001759,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159945,-0.001759,0.002750,0.249985,0,0);}
.m100_c00137{transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);-ms-transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);}
.m38_c00137{transform:matrix(0.160855,-0.001769,0.002750,0.249985,0,0);-ms-transform:matrix(0.160855,-0.001769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160855,-0.001769,0.002750,0.249985,0,0);}
.mf1_c00137{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);}
.m131_c00137{transform:matrix(0.161515,-0.001777,0.002750,0.249985,0,0);-ms-transform:matrix(0.161515,-0.001777,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161515,-0.001777,0.002750,0.249985,0,0);}
.mcf_c00137{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);}
.me8_c00137{transform:matrix(0.161840,-0.001780,0.002750,0.249985,0,0);-ms-transform:matrix(0.161840,-0.001780,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161840,-0.001780,0.002750,0.249985,0,0);}
.m86_c00137{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);}
.m47_c00137{transform:matrix(0.162455,-0.001787,0.002750,0.249985,0,0);-ms-transform:matrix(0.162455,-0.001787,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162455,-0.001787,0.002750,0.249985,0,0);}
.mcb_c00137{transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);-ms-transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);}
.mb4_c00137{transform:matrix(0.163755,-0.001801,0.002750,0.249985,0,0);-ms-transform:matrix(0.163755,-0.001801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163755,-0.001801,0.002750,0.249985,0,0);}
.m14f_c00137{transform:matrix(0.164090,-0.001805,0.002750,0.249985,0,0);-ms-transform:matrix(0.164090,-0.001805,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164090,-0.001805,0.002750,0.249985,0,0);}
.m15f_c00137{transform:matrix(0.164195,-0.001806,0.002750,0.249985,0,0);-ms-transform:matrix(0.164195,-0.001806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164195,-0.001806,0.002750,0.249985,0,0);}
.m150_c00137{transform:matrix(0.164365,-0.001808,0.002750,0.249985,0,0);-ms-transform:matrix(0.164365,-0.001808,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164365,-0.001808,0.002750,0.249985,0,0);}
.m94_c00137{transform:matrix(0.165625,-0.001822,0.002750,0.249985,0,0);-ms-transform:matrix(0.165625,-0.001822,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165625,-0.001822,0.002750,0.249985,0,0);}
.m140_c00137{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);}
.m48_c00137{transform:matrix(0.166120,-0.001827,0.002750,0.249985,0,0);-ms-transform:matrix(0.166120,-0.001827,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166120,-0.001827,0.002750,0.249985,0,0);}
.m26_c00137{transform:matrix(0.166255,-0.001829,0.002750,0.249985,0,0);-ms-transform:matrix(0.166255,-0.001829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166255,-0.001829,0.002750,0.249985,0,0);}
.m79_c00137{transform:matrix(0.166625,-0.001833,0.002750,0.249985,0,0);-ms-transform:matrix(0.166625,-0.001833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166625,-0.001833,0.002750,0.249985,0,0);}
.m14a_c00137{transform:matrix(0.166690,-0.001834,0.002750,0.249985,0,0);-ms-transform:matrix(0.166690,-0.001834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166690,-0.001834,0.002750,0.249985,0,0);}
.m12f_c00137{transform:matrix(0.166705,-0.001834,0.002750,0.249985,0,0);-ms-transform:matrix(0.166705,-0.001834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166705,-0.001834,0.002750,0.249985,0,0);}
.m37_c00137{transform:matrix(0.166860,-0.001835,0.002750,0.249985,0,0);-ms-transform:matrix(0.166860,-0.001835,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166860,-0.001835,0.002750,0.249985,0,0);}
.mf8_c00137{transform:matrix(0.166930,-0.001836,0.002750,0.249985,0,0);-ms-transform:matrix(0.166930,-0.001836,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166930,-0.001836,0.002750,0.249985,0,0);}
.m5e_c00137{transform:matrix(0.167035,-0.001837,0.002750,0.249985,0,0);-ms-transform:matrix(0.167035,-0.001837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167035,-0.001837,0.002750,0.249985,0,0);}
.mac_c00137{transform:matrix(0.167060,-0.001838,0.002750,0.249985,0,0);-ms-transform:matrix(0.167060,-0.001838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167060,-0.001838,0.002750,0.249985,0,0);}
.m155_c00137{transform:matrix(0.167120,-0.001838,0.002750,0.249985,0,0);-ms-transform:matrix(0.167120,-0.001838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167120,-0.001838,0.002750,0.249985,0,0);}
.m9e_c00137{transform:matrix(0.167150,-0.001839,0.002750,0.249985,0,0);-ms-transform:matrix(0.167150,-0.001839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167150,-0.001839,0.002750,0.249985,0,0);}
.m36_c00137{transform:matrix(0.167305,-0.001840,0.002750,0.249985,0,0);-ms-transform:matrix(0.167305,-0.001840,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167305,-0.001840,0.002750,0.249985,0,0);}
.m3b_c00137{transform:matrix(0.167400,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167400,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167400,-0.001841,0.002750,0.249985,0,0);}
.m8c_c00137{transform:matrix(0.167635,-0.001844,0.002750,0.249985,0,0);-ms-transform:matrix(0.167635,-0.001844,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167635,-0.001844,0.002750,0.249985,0,0);}
.m39_c00137{transform:matrix(0.167900,-0.001847,0.002750,0.249985,0,0);-ms-transform:matrix(0.167900,-0.001847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167900,-0.001847,0.002750,0.249985,0,0);}
.mbb_c00137{transform:matrix(0.169260,-0.001862,0.002750,0.249985,0,0);-ms-transform:matrix(0.169260,-0.001862,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169260,-0.001862,0.002750,0.249985,0,0);}
.m6e_c00137{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);}
.m60_c00137{transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);-ms-transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);}
.m6c_c00137{transform:matrix(0.169510,-0.001865,0.002750,0.249985,0,0);-ms-transform:matrix(0.169510,-0.001865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169510,-0.001865,0.002750,0.249985,0,0);}
.m9_c00137{transform:matrix(0.169525,-0.001865,0.002750,0.249985,0,0);-ms-transform:matrix(0.169525,-0.001865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169525,-0.001865,0.002750,0.249985,0,0);}
.mb6_c00137{transform:matrix(0.169585,-0.001865,0.002750,0.249985,0,0);-ms-transform:matrix(0.169585,-0.001865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169585,-0.001865,0.002750,0.249985,0,0);}
.mda_c00137{transform:matrix(0.169700,-0.001867,0.002750,0.249985,0,0);-ms-transform:matrix(0.169700,-0.001867,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169700,-0.001867,0.002750,0.249985,0,0);}
.mfe_c00137{transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);}
.me2_c00137{transform:matrix(0.169805,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169805,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169805,-0.001868,0.002750,0.249985,0,0);}
.m59_c00137{transform:matrix(0.170470,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170470,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170470,-0.001875,0.002750,0.249985,0,0);}
.m1b_c00137{transform:matrix(0.170995,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.170995,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170995,-0.001881,0.002750,0.249985,0,0);}
.m5d_c00137{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);}
.md0_c00137{transform:matrix(0.171630,-0.001888,0.002750,0.249985,0,0);-ms-transform:matrix(0.171630,-0.001888,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171630,-0.001888,0.002750,0.249985,0,0);}
.mc8_c00137{transform:matrix(0.172060,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172060,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172060,-0.001893,0.002750,0.249985,0,0);}
.m52_c00137{transform:matrix(0.172320,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172320,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172320,-0.001896,0.002750,0.249985,0,0);}
.m2f_c00137{transform:matrix(0.172405,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172405,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172405,-0.001896,0.002750,0.249985,0,0);}
.m120_c00137{transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);-ms-transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);}
.m85_c00137{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);}
.m11e_c00137{transform:matrix(0.173190,-0.001905,0.002750,0.249985,0,0);-ms-transform:matrix(0.173190,-0.001905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173190,-0.001905,0.002750,0.249985,0,0);}
.m6f_c00137{transform:matrix(0.173395,-0.001907,0.002750,0.249985,0,0);-ms-transform:matrix(0.173395,-0.001907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173395,-0.001907,0.002750,0.249985,0,0);}
.m15d_c00137{transform:matrix(0.173709,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173709,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173709,-0.001911,0.002750,0.249985,0,0);}
.m152_c00137{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);}
.m154_c00137{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);}
.m4e_c00137{transform:matrix(0.174399,-0.001918,0.002750,0.249985,0,0);-ms-transform:matrix(0.174399,-0.001918,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174399,-0.001918,0.002750,0.249985,0,0);}
.m77_c00137{transform:matrix(0.174829,-0.001923,0.002750,0.249985,0,0);-ms-transform:matrix(0.174829,-0.001923,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174829,-0.001923,0.002750,0.249985,0,0);}
.m7d_c00137{transform:matrix(0.174894,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174894,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174894,-0.001924,0.002750,0.249985,0,0);}
.m81_c00137{transform:matrix(0.175189,-0.001927,0.002750,0.249985,0,0);-ms-transform:matrix(0.175189,-0.001927,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175189,-0.001927,0.002750,0.249985,0,0);}
.mce_c00137{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);}
.m10a_c00137{transform:matrix(0.175384,-0.001929,0.002750,0.249985,0,0);-ms-transform:matrix(0.175384,-0.001929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175384,-0.001929,0.002750,0.249985,0,0);}
.m15b_c00137{transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);-ms-transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);}
.m24_c00137{transform:matrix(0.177154,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177154,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177154,-0.001949,0.002750,0.249985,0,0);}
.mfc_c00137{transform:matrix(0.177259,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177259,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177259,-0.001950,0.002750,0.249985,0,0);}
.m16b_c00137{transform:matrix(0.177299,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177299,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177299,-0.001950,0.002750,0.249985,0,0);}
.m11_c00137{transform:matrix(0.177309,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177309,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177309,-0.001950,0.002750,0.249985,0,0);}
.m8b_c00137{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);}
.m46_c00137{transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);-ms-transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);}
.md3_c00137{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);}
.m144_c00137{transform:matrix(0.177654,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177654,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177654,-0.001954,0.002750,0.249985,0,0);}
.mc4_c00137{transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);}
.me_c00137{transform:matrix(0.177809,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177809,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177809,-0.001956,0.002750,0.249985,0,0);}
.m101_c00137{transform:matrix(0.178659,-0.001965,0.002750,0.249985,0,0);-ms-transform:matrix(0.178659,-0.001965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178659,-0.001965,0.002750,0.249985,0,0);}
.m72_c00137{transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);}
.m7b_c00137{transform:matrix(0.178744,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178744,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178744,-0.001966,0.002750,0.249985,0,0);}
.m50_c00137{transform:matrix(0.179454,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179454,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179454,-0.001974,0.002750,0.249985,0,0);}
.m87_c00137{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);}
.md4_c00137{transform:matrix(0.179699,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179699,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179699,-0.001977,0.002750,0.249985,0,0);}
.mf5_c00137{transform:matrix(0.179734,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179734,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179734,-0.001977,0.002750,0.249985,0,0);}
.m2d_c00137{transform:matrix(0.180419,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180419,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180419,-0.001985,0.002750,0.249985,0,0);}
.m7a_c00137{transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);-ms-transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);}
.m1d_c00137{transform:matrix(0.180834,-0.001989,0.002750,0.249985,0,0);-ms-transform:matrix(0.180834,-0.001989,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180834,-0.001989,0.002750,0.249985,0,0);}
.m8a_c00137{transform:matrix(0.180839,-0.001989,0.002750,0.249985,0,0);-ms-transform:matrix(0.180839,-0.001989,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180839,-0.001989,0.002750,0.249985,0,0);}
.m30_c00137{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);}
.m83_c00137{transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);}
.m15a_c00137{transform:matrix(0.181554,-0.001997,0.002750,0.249985,0,0);-ms-transform:matrix(0.181554,-0.001997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181554,-0.001997,0.002750,0.249985,0,0);}
.m16c_c00137{transform:matrix(0.181854,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181854,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181854,-0.002000,0.002750,0.249985,0,0);}
.m40_c00137{transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);}
.m58_c00137{transform:matrix(0.181939,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181939,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181939,-0.002001,0.002750,0.249985,0,0);}
.m13d_c00137{transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);-ms-transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);}
.m70_c00137{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);}
.m8e_c00137{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);}
.m99_c00137{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);}
.m62_c00137{transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);}
.m2b_c00137{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);}
.mb9_c00137{transform:matrix(0.183314,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183314,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183314,-0.002016,0.002750,0.249985,0,0);}
.me7_c00137{transform:matrix(0.183449,-0.002018,0.002750,0.249985,0,0);-ms-transform:matrix(0.183449,-0.002018,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183449,-0.002018,0.002750,0.249985,0,0);}
.m164_c00137{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);}
.mef_c00137{transform:matrix(0.183769,-0.002021,0.002750,0.249985,0,0);-ms-transform:matrix(0.183769,-0.002021,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183769,-0.002021,0.002750,0.249985,0,0);}
.m13c_c00137{transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);}
.mc1_c00137{transform:matrix(0.183854,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183854,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183854,-0.002022,0.002750,0.249985,0,0);}
.maf_c00137{transform:matrix(0.183914,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183914,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183914,-0.002023,0.002750,0.249985,0,0);}
.md8_c00137{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);}
.m129_c00137{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);}
.m9f_c00137{transform:matrix(0.184064,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184064,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184064,-0.002025,0.002750,0.249985,0,0);}
.m4a_c00137{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);}
.mf3_c00137{transform:matrix(0.184414,-0.002029,0.002750,0.249985,0,0);-ms-transform:matrix(0.184414,-0.002029,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184414,-0.002029,0.002750,0.249985,0,0);}
.mf_c00137{transform:matrix(0.184564,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184564,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184564,-0.002030,0.002750,0.249985,0,0);}
.m6a_c00137{transform:matrix(0.184674,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184674,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184674,-0.002031,0.002750,0.249985,0,0);}
.me1_c00137{transform:matrix(0.185159,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185159,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185159,-0.002037,0.002750,0.249985,0,0);}
.m66_c00137{transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);-ms-transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);}
.m13_c00137{transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185644,-0.002042,0.002750,0.249985,0,0);}
.mc6_c00137{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);}
.m45_c00137{transform:matrix(0.185949,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185949,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185949,-0.002045,0.002750,0.249985,0,0);}
.mc3_c00137{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);}
.m1a_c00137{transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);}
.m14d_c00137{transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);}
.mf7_c00137{transform:matrix(0.186274,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186274,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186274,-0.002049,0.002750,0.249985,0,0);}
.m11d_c00137{transform:matrix(0.186359,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186359,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186359,-0.002050,0.002750,0.249985,0,0);}
.me9_c00137{transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);}
.mcd_c00137{transform:matrix(0.186534,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186534,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186534,-0.002052,0.002750,0.249985,0,0);}
.m82_c00137{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);}
.mb2_c00137{transform:matrix(0.186649,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186649,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186649,-0.002053,0.002750,0.249985,0,0);}
.ma8_c00137{transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);}
.mbc_c00137{transform:matrix(0.186784,-0.002055,0.002750,0.249985,0,0);-ms-transform:matrix(0.186784,-0.002055,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186784,-0.002055,0.002750,0.249985,0,0);}
.m80_c00137{transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);}
.m16_c00137{transform:matrix(0.187184,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187184,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187184,-0.002059,0.002750,0.249985,0,0);}
.mae_c00137{transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);}
.m15c_c00137{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);}
.mbf_c00137{transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);}
.m119_c00137{transform:matrix(0.187894,-0.002067,0.002750,0.249985,0,0);-ms-transform:matrix(0.187894,-0.002067,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187894,-0.002067,0.002750,0.249985,0,0);}
.me0_c00137{transform:matrix(0.187964,-0.002068,0.002750,0.249985,0,0);-ms-transform:matrix(0.187964,-0.002068,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187964,-0.002068,0.002750,0.249985,0,0);}
.m35_c00137{transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);}
.mbe_c00137{transform:matrix(0.188584,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188584,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188584,-0.002074,0.002750,0.249985,0,0);}
.m106_c00137{transform:matrix(0.188954,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188954,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188954,-0.002078,0.002750,0.249985,0,0);}
.mb8_c00137{transform:matrix(0.190084,-0.002091,0.002750,0.249985,0,0);-ms-transform:matrix(0.190084,-0.002091,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190084,-0.002091,0.002750,0.249985,0,0);}
.ma9_c00137{transform:matrix(0.190178,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190178,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190178,-0.002092,0.002750,0.249985,0,0);}
.m107_c00137{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);}
.mdc_c00137{transform:matrix(0.190278,-0.002093,0.002750,0.249985,0,0);-ms-transform:matrix(0.190278,-0.002093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190278,-0.002093,0.002750,0.249985,0,0);}
.m138_c00137{transform:matrix(0.190463,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190463,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190463,-0.002095,0.002750,0.249985,0,0);}
.m9d_c00137{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);}
.m74_c00137{transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);}
.m110_c00137{transform:matrix(0.190953,-0.002100,0.002750,0.249985,0,0);-ms-transform:matrix(0.190953,-0.002100,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190953,-0.002100,0.002750,0.249985,0,0);}
.m21_c00137{transform:matrix(0.191018,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.191018,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191018,-0.002101,0.002750,0.249985,0,0);}
.m105_c00137{transform:matrix(0.191123,-0.002102,0.002750,0.249985,0,0);-ms-transform:matrix(0.191123,-0.002102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191123,-0.002102,0.002750,0.249985,0,0);}
.m12c_c00137{transform:matrix(0.191178,-0.002103,0.002750,0.249985,0,0);-ms-transform:matrix(0.191178,-0.002103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191178,-0.002103,0.002750,0.249985,0,0);}
.m53_c00137{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);}
.m14e_c00137{transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);}
.md1_c00137{transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);}
.m142_c00137{transform:matrix(0.192078,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192078,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192078,-0.002113,0.002750,0.249985,0,0);}
.m5a_c00137{transform:matrix(0.192138,-0.002114,0.002750,0.249985,0,0);-ms-transform:matrix(0.192138,-0.002114,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192138,-0.002114,0.002750,0.249985,0,0);}
.m3e_c00137{transform:matrix(0.192273,-0.002115,0.002750,0.249985,0,0);-ms-transform:matrix(0.192273,-0.002115,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192273,-0.002115,0.002750,0.249985,0,0);}
.m9a_c00137{transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);-ms-transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);}
.m121_c00137{transform:matrix(0.192493,-0.002117,0.002750,0.249985,0,0);-ms-transform:matrix(0.192493,-0.002117,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192493,-0.002117,0.002750,0.249985,0,0);}
.m137_c00137{transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);}
.m128_c00137{transform:matrix(0.192853,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192853,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192853,-0.002121,0.002750,0.249985,0,0);}
.m9b_c00137{transform:matrix(0.192938,-0.002122,0.002750,0.249985,0,0);-ms-transform:matrix(0.192938,-0.002122,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192938,-0.002122,0.002750,0.249985,0,0);}
.m65_c00137{transform:matrix(0.193173,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193173,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193173,-0.002125,0.002750,0.249985,0,0);}
.mc0_c00137{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);}
.md2_c00137{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);}
.m51_c00137{transform:matrix(0.194008,-0.002134,0.002750,0.249985,0,0);-ms-transform:matrix(0.194008,-0.002134,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194008,-0.002134,0.002750,0.249985,0,0);}
.m15_c00137{transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);}
.m67_c00137{transform:matrix(0.194313,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194313,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194313,-0.002137,0.002750,0.249985,0,0);}
.m3c_c00137{transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);}
.mf9_c00137{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);}
.m12e_c00137{transform:matrix(0.194518,-0.002140,0.002750,0.249985,0,0);-ms-transform:matrix(0.194518,-0.002140,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194518,-0.002140,0.002750,0.249985,0,0);}
.m176_c00137{transform:matrix(0.194673,-0.002141,0.002750,0.249985,0,0);-ms-transform:matrix(0.194673,-0.002141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194673,-0.002141,0.002750,0.249985,0,0);}
.m147_c00137{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);}
.m16d_c00137{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);}
.m18_c00137{transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);}
.m19_c00137{transform:matrix(0.196363,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196363,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196363,-0.002160,0.002750,0.249985,0,0);}
.mdd_c00137{transform:matrix(0.196623,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196623,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196623,-0.002163,0.002750,0.249985,0,0);}
.ma5_c00137{transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);}
.m49_c00137{transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);-ms-transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);}
.mde_c00137{transform:matrix(0.197453,-0.002172,0.002750,0.249985,0,0);-ms-transform:matrix(0.197453,-0.002172,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197453,-0.002172,0.002750,0.249985,0,0);}
.m116_c00137{transform:matrix(0.197698,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197698,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197698,-0.002175,0.002750,0.249985,0,0);}
.m32_c00137{transform:matrix(0.198293,-0.002181,0.002750,0.249985,0,0);-ms-transform:matrix(0.198293,-0.002181,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198293,-0.002181,0.002750,0.249985,0,0);}
.mdf_c00137{transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);-ms-transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);}
.m13b_c00137{transform:matrix(0.198713,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198713,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198713,-0.002186,0.002750,0.249985,0,0);}
.m89_c00137{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);}
.mec_c00137{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);}
.mf2_c00137{transform:matrix(0.199658,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199658,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199658,-0.002196,0.002750,0.249985,0,0);}
.meb_c00137{transform:matrix(0.199838,-0.002198,0.002750,0.249985,0,0);-ms-transform:matrix(0.199838,-0.002198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199838,-0.002198,0.002750,0.249985,0,0);}
.md7_c00137{transform:matrix(0.200123,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200123,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200123,-0.002201,0.002750,0.249985,0,0);}
.m12d_c00137{transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);}
.m173_c00137{transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);-ms-transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);}
.m9c_c00137{transform:matrix(0.200648,-0.002207,0.002750,0.249985,0,0);-ms-transform:matrix(0.200648,-0.002207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200648,-0.002207,0.002750,0.249985,0,0);}
.m169_c00137{transform:matrix(0.200788,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200788,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200788,-0.002209,0.002750,0.249985,0,0);}
.m7f_c00137{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);}
.m5b_c00137{transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);}
.m71_c00137{transform:matrix(0.200943,-0.002210,0.002750,0.249985,0,0);-ms-transform:matrix(0.200943,-0.002210,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200943,-0.002210,0.002750,0.249985,0,0);}
.m12_c00137{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);}
.ma6_c00137{transform:matrix(0.201173,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201173,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201173,-0.002213,0.002750,0.249985,0,0);}
.m75_c00137{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m69_c00137{transform:matrix(0.201238,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201238,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201238,-0.002214,0.002750,0.249985,0,0);}
.m1c_c00137{transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201718,-0.002219,0.002750,0.249985,0,0);}
.mf6_c00137{transform:matrix(0.201778,-0.002220,0.002750,0.249985,0,0);-ms-transform:matrix(0.201778,-0.002220,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201778,-0.002220,0.002750,0.249985,0,0);}
.mb0_c00137{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);}
.m3d_c00137{transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);}
.mad_c00137{transform:matrix(0.202418,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202418,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202418,-0.002227,0.002750,0.249985,0,0);}
.m14_c00137{transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);}
.m10_c00137{transform:matrix(0.202793,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202793,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202793,-0.002231,0.002750,0.249985,0,0);}
.m23_c00137{transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);}
.m133_c00137{transform:matrix(0.202863,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202863,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202863,-0.002231,0.002750,0.249985,0,0);}
.m11f_c00137{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);}
.m168_c00137{transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);}
.m11b_c00137{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);}
.mbd_c00137{transform:matrix(0.203523,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203523,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203523,-0.002239,0.002750,0.249985,0,0);}
.m175_c00137{transform:matrix(0.203718,-0.002241,0.002750,0.249985,0,0);-ms-transform:matrix(0.203718,-0.002241,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203718,-0.002241,0.002750,0.249985,0,0);}
.m102_c00137{transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);}
.m174_c00137{transform:matrix(0.204213,-0.002246,0.002750,0.249985,0,0);-ms-transform:matrix(0.204213,-0.002246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204213,-0.002246,0.002750,0.249985,0,0);}
.m156_c00137{transform:matrix(0.204593,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204593,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204593,-0.002251,0.002750,0.249985,0,0);}
.m64_c00137{transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);}
.m117_c00137{transform:matrix(0.204858,-0.002253,0.002750,0.249985,0,0);-ms-transform:matrix(0.204858,-0.002253,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204858,-0.002253,0.002750,0.249985,0,0);}
.m126_c00137{transform:matrix(0.205078,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205078,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205078,-0.002256,0.002750,0.249985,0,0);}
.mdb_c00137{transform:matrix(0.205303,-0.002258,0.002750,0.249985,0,0);-ms-transform:matrix(0.205303,-0.002258,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205303,-0.002258,0.002750,0.249985,0,0);}
.ma7_c00137{transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);-ms-transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);}
.m13a_c00137{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);}
.m109_c00137{transform:matrix(0.206038,-0.002266,0.002750,0.249985,0,0);-ms-transform:matrix(0.206038,-0.002266,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206038,-0.002266,0.002750,0.249985,0,0);}
.m33_c00137{transform:matrix(0.206123,-0.002267,0.002750,0.249985,0,0);-ms-transform:matrix(0.206123,-0.002267,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206123,-0.002267,0.002750,0.249985,0,0);}
.m1e_c00137{transform:matrix(0.206483,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206483,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206483,-0.002271,0.002750,0.249985,0,0);}
.m157_c00137{transform:matrix(0.206523,-0.002272,0.002750,0.249985,0,0);-ms-transform:matrix(0.206523,-0.002272,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206523,-0.002272,0.002750,0.249985,0,0);}
.m146_c00137{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);}
.mc7_c00137{transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);-ms-transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);}
.m41_c00137{transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);-ms-transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);}
.mb1_c00137{transform:matrix(0.207472,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207472,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207472,-0.002282,0.002750,0.249985,0,0);}
.m123_c00137{transform:matrix(0.207532,-0.002283,0.002750,0.249985,0,0);-ms-transform:matrix(0.207532,-0.002283,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207532,-0.002283,0.002750,0.249985,0,0);}
.m44_c00137{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);}
.m4b_c00137{transform:matrix(0.208967,-0.002299,0.002750,0.249985,0,0);-ms-transform:matrix(0.208967,-0.002299,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208967,-0.002299,0.002750,0.249985,0,0);}
.m7e_c00137{transform:matrix(0.209657,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209657,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209657,-0.002306,0.002750,0.249985,0,0);}
.m122_c00137{transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);}
.m20_c00137{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);}
.m6b_c00137{transform:matrix(0.210557,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210557,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210557,-0.002316,0.002750,0.249985,0,0);}
.mfa_c00137{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);}
.m132_c00137{transform:matrix(0.210837,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210837,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210837,-0.002319,0.002750,0.249985,0,0);}
.mcc_c00137{transform:matrix(0.210862,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210862,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210862,-0.002319,0.002750,0.249985,0,0);}
.m115_c00137{transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);-ms-transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);}
.m177_c00137{transform:matrix(0.210892,-0.002320,0.002750,0.249985,0,0);-ms-transform:matrix(0.210892,-0.002320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210892,-0.002320,0.002750,0.249985,0,0);}
.m95_c00137{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);}
.m162_c00137{transform:matrix(0.212562,-0.002338,0.002750,0.249985,0,0);-ms-transform:matrix(0.212562,-0.002338,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212562,-0.002338,0.002750,0.249985,0,0);}
.m17b_c00137{transform:matrix(0.212877,-0.002342,0.002750,0.249985,0,0);-ms-transform:matrix(0.212877,-0.002342,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212877,-0.002342,0.002750,0.249985,0,0);}
.m151_c00137{transform:matrix(0.213127,-0.002344,0.002750,0.249985,0,0);-ms-transform:matrix(0.213127,-0.002344,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213127,-0.002344,0.002750,0.249985,0,0);}
.m17a_c00137{transform:matrix(0.213312,-0.002346,0.002750,0.249985,0,0);-ms-transform:matrix(0.213312,-0.002346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213312,-0.002346,0.002750,0.249985,0,0);}
.m136_c00137{transform:matrix(0.213517,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213517,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213517,-0.002349,0.002750,0.249985,0,0);}
.me4_c00137{transform:matrix(0.213742,-0.002351,0.002750,0.249985,0,0);-ms-transform:matrix(0.213742,-0.002351,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213742,-0.002351,0.002750,0.249985,0,0);}
.mca_c00137{transform:matrix(0.213827,-0.002352,0.002750,0.249985,0,0);-ms-transform:matrix(0.213827,-0.002352,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213827,-0.002352,0.002750,0.249985,0,0);}
.m42_c00137{transform:matrix(0.213962,-0.002354,0.002750,0.249985,0,0);-ms-transform:matrix(0.213962,-0.002354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213962,-0.002354,0.002750,0.249985,0,0);}
.m56_c00137{transform:matrix(0.214247,-0.002357,0.002750,0.249985,0,0);-ms-transform:matrix(0.214247,-0.002357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214247,-0.002357,0.002750,0.249985,0,0);}
.m96_c00137{transform:matrix(0.215117,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215117,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215117,-0.002366,0.002750,0.249985,0,0);}
.m179_c00137{transform:matrix(0.215147,-0.002367,0.002750,0.249985,0,0);-ms-transform:matrix(0.215147,-0.002367,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215147,-0.002367,0.002750,0.249985,0,0);}
.mee_c00137{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);}
.m61_c00137{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);}
.m113_c00137{transform:matrix(0.215337,-0.002369,0.002750,0.249985,0,0);-ms-transform:matrix(0.215337,-0.002369,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215337,-0.002369,0.002750,0.249985,0,0);}
.mb7_c00137{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);}
.maa_c00137{transform:matrix(0.215947,-0.002375,0.002750,0.249985,0,0);-ms-transform:matrix(0.215947,-0.002375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215947,-0.002375,0.002750,0.249985,0,0);}
.ma0_c00137{transform:matrix(0.216172,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216172,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216172,-0.002378,0.002750,0.249985,0,0);}
.m13f_c00137{transform:matrix(0.216177,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216177,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216177,-0.002378,0.002750,0.249985,0,0);}
.m5c_c00137{transform:matrix(0.216447,-0.002381,0.002750,0.249985,0,0);-ms-transform:matrix(0.216447,-0.002381,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216447,-0.002381,0.002750,0.249985,0,0);}
.m12b_c00137{transform:matrix(0.217112,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217112,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217112,-0.002388,0.002750,0.249985,0,0);}
.md9_c00137{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);}
.m76_c00137{transform:matrix(0.217497,-0.002392,0.002750,0.249985,0,0);-ms-transform:matrix(0.217497,-0.002392,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217497,-0.002392,0.002750,0.249985,0,0);}
.m108_c00137{transform:matrix(0.217827,-0.002396,0.002750,0.249985,0,0);-ms-transform:matrix(0.217827,-0.002396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217827,-0.002396,0.002750,0.249985,0,0);}
.ma1_c00137{transform:matrix(0.218267,-0.002401,0.002750,0.249985,0,0);-ms-transform:matrix(0.218267,-0.002401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218267,-0.002401,0.002750,0.249985,0,0);}
.m90_c00137{transform:matrix(0.218557,-0.002404,0.002750,0.249985,0,0);-ms-transform:matrix(0.218557,-0.002404,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218557,-0.002404,0.002750,0.249985,0,0);}
.m15e_c00137{transform:matrix(0.218767,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218767,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218767,-0.002406,0.002750,0.249985,0,0);}
.m63_c00137{transform:matrix(0.219497,-0.002414,0.002750,0.249985,0,0);-ms-transform:matrix(0.219497,-0.002414,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219497,-0.002414,0.002750,0.249985,0,0);}
.m1_c00137{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);}
.m14c_c00137{transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);}
.m149_c00137{transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);-ms-transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);}
.m112_c00137{transform:matrix(0.220742,-0.002428,0.002750,0.249985,0,0);-ms-transform:matrix(0.220742,-0.002428,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220742,-0.002428,0.002750,0.249985,0,0);}
.m98_c00137{transform:matrix(0.220767,-0.002428,0.002750,0.249985,0,0);-ms-transform:matrix(0.220767,-0.002428,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220767,-0.002428,0.002750,0.249985,0,0);}
.m125_c00137{transform:matrix(0.221062,-0.002432,0.002750,0.249985,0,0);-ms-transform:matrix(0.221062,-0.002432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221062,-0.002432,0.002750,0.249985,0,0);}
.m97_c00137{transform:matrix(0.221622,-0.002438,0.002750,0.249985,0,0);-ms-transform:matrix(0.221622,-0.002438,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221622,-0.002438,0.002750,0.249985,0,0);}
.mb3_c00137{transform:matrix(0.222592,-0.002449,0.002750,0.249985,0,0);-ms-transform:matrix(0.222592,-0.002449,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222592,-0.002449,0.002750,0.249985,0,0);}
.m84_c00137{transform:matrix(0.222927,-0.002452,0.002750,0.249985,0,0);-ms-transform:matrix(0.222927,-0.002452,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222927,-0.002452,0.002750,0.249985,0,0);}
.m16a_c00137{transform:matrix(0.223776,-0.002462,0.002750,0.249985,0,0);-ms-transform:matrix(0.223776,-0.002462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223776,-0.002462,0.002750,0.249985,0,0);}
.m4c_c00137{transform:matrix(0.224691,-0.002472,0.002750,0.249985,0,0);-ms-transform:matrix(0.224691,-0.002472,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224691,-0.002472,0.002750,0.249985,0,0);}
.m4f_c00137{transform:matrix(0.225291,-0.002478,0.002750,0.249985,0,0);-ms-transform:matrix(0.225291,-0.002478,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225291,-0.002478,0.002750,0.249985,0,0);}
.m141_c00137{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);}
.mf0_c00137{transform:matrix(0.226716,-0.002494,0.002750,0.249985,0,0);-ms-transform:matrix(0.226716,-0.002494,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226716,-0.002494,0.002750,0.249985,0,0);}
.m104_c00137{transform:matrix(0.226771,-0.002494,0.002750,0.249985,0,0);-ms-transform:matrix(0.226771,-0.002494,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226771,-0.002494,0.002750,0.249985,0,0);}
.m10f_c00137{transform:matrix(0.227086,-0.002498,0.002750,0.249985,0,0);-ms-transform:matrix(0.227086,-0.002498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227086,-0.002498,0.002750,0.249985,0,0);}
.m159_c00137{transform:matrix(0.227501,-0.002503,0.002750,0.249985,0,0);-ms-transform:matrix(0.227501,-0.002503,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227501,-0.002503,0.002750,0.249985,0,0);}
.m16f_c00137{transform:matrix(0.227731,-0.002505,0.002750,0.249985,0,0);-ms-transform:matrix(0.227731,-0.002505,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227731,-0.002505,0.002750,0.249985,0,0);}
.m73_c00137{transform:matrix(0.227951,-0.002507,0.002750,0.249985,0,0);-ms-transform:matrix(0.227951,-0.002507,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227951,-0.002507,0.002750,0.249985,0,0);}
.m11c_c00137{transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);-ms-transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);}
.mea_c00137{transform:matrix(0.228621,-0.002515,0.002750,0.249985,0,0);-ms-transform:matrix(0.228621,-0.002515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228621,-0.002515,0.002750,0.249985,0,0);}
.me6_c00137{transform:matrix(0.228741,-0.002516,0.002750,0.249985,0,0);-ms-transform:matrix(0.228741,-0.002516,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228741,-0.002516,0.002750,0.249985,0,0);}
.m4d_c00137{transform:matrix(0.229376,-0.002523,0.002750,0.249985,0,0);-ms-transform:matrix(0.229376,-0.002523,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229376,-0.002523,0.002750,0.249985,0,0);}
.ma4_c00137{transform:matrix(0.229696,-0.002527,0.002750,0.249985,0,0);-ms-transform:matrix(0.229696,-0.002527,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229696,-0.002527,0.002750,0.249985,0,0);}
.m14b_c00137{transform:matrix(0.230006,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.230006,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230006,-0.002530,0.002750,0.249985,0,0);}
.m29_c00137{transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);-ms-transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);}
.me5_c00137{transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-ms-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);}
.m111_c00137{transform:matrix(0.231031,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.231031,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231031,-0.002541,0.002750,0.249985,0,0);}
.m158_c00137{transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);}
.m127_c00137{transform:matrix(0.231926,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231926,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231926,-0.002551,0.002750,0.249985,0,0);}
.m160_c00137{transform:matrix(0.232451,-0.002557,0.002750,0.249985,0,0);-ms-transform:matrix(0.232451,-0.002557,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232451,-0.002557,0.002750,0.249985,0,0);}
.mfb_c00137{transform:matrix(0.232671,-0.002559,0.002750,0.249985,0,0);-ms-transform:matrix(0.232671,-0.002559,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232671,-0.002559,0.002750,0.249985,0,0);}
.m118_c00137{transform:matrix(0.233376,-0.002567,0.002750,0.249985,0,0);-ms-transform:matrix(0.233376,-0.002567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233376,-0.002567,0.002750,0.249985,0,0);}
.m153_c00137{transform:matrix(0.234526,-0.002580,0.002750,0.249985,0,0);-ms-transform:matrix(0.234526,-0.002580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234526,-0.002580,0.002750,0.249985,0,0);}
.m143_c00137{transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);-ms-transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);}
.md5_c00137{transform:matrix(0.238026,-0.002618,0.002750,0.249985,0,0);-ms-transform:matrix(0.238026,-0.002618,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238026,-0.002618,0.002750,0.249985,0,0);}
.m43_c00137{transform:matrix(0.239521,-0.002635,0.002750,0.249985,0,0);-ms-transform:matrix(0.239521,-0.002635,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239521,-0.002635,0.002750,0.249985,0,0);}
.m6_c00137{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);}
.m68_c00137{transform:matrix(0.240340,-0.002644,0.002750,0.249985,0,0);-ms-transform:matrix(0.240340,-0.002644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240340,-0.002644,0.002750,0.249985,0,0);}
.mb_c00137{transform:matrix(0.242895,-0.002672,0.002750,0.249985,0,0);-ms-transform:matrix(0.242895,-0.002672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242895,-0.002672,0.002750,0.249985,0,0);}
.m2_c00137{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);}
.m10c_c00137{transform:matrix(0.246395,-0.002710,0.002750,0.249985,0,0);-ms-transform:matrix(0.246395,-0.002710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246395,-0.002710,0.002750,0.249985,0,0);}
.m135_c00137{transform:matrix(0.246510,-0.002712,0.002750,0.249985,0,0);-ms-transform:matrix(0.246510,-0.002712,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246510,-0.002712,0.002750,0.249985,0,0);}
.ma2_c00137{transform:matrix(0.248025,-0.002728,0.002750,0.249985,0,0);-ms-transform:matrix(0.248025,-0.002728,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248025,-0.002728,0.002750,0.249985,0,0);}
.me3_c00137{transform:matrix(0.248780,-0.002737,0.002750,0.249985,0,0);-ms-transform:matrix(0.248780,-0.002737,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248780,-0.002737,0.002750,0.249985,0,0);}
.mff_c00137{transform:matrix(0.254435,-0.002799,0.002750,0.249985,0,0);-ms-transform:matrix(0.254435,-0.002799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254435,-0.002799,0.002750,0.249985,0,0);}
.m4_c00137{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m172_c00137{transform:matrix(0.255465,-0.002810,0.002750,0.249985,0,0);-ms-transform:matrix(0.255465,-0.002810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255465,-0.002810,0.002750,0.249985,0,0);}
.mc9_c00137{transform:matrix(0.257399,-0.002831,0.002750,0.249985,0,0);-ms-transform:matrix(0.257399,-0.002831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257399,-0.002831,0.002750,0.249985,0,0);}
.m11a_c00137{transform:matrix(0.258199,-0.002840,0.002750,0.249985,0,0);-ms-transform:matrix(0.258199,-0.002840,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258199,-0.002840,0.002750,0.249985,0,0);}
.m145_c00137{transform:matrix(0.265499,-0.002920,0.002750,0.249985,0,0);-ms-transform:matrix(0.265499,-0.002920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265499,-0.002920,0.002750,0.249985,0,0);}
.m165_c00137{transform:matrix(0.289173,-0.003181,0.002750,0.249985,0,0);-ms-transform:matrix(0.289173,-0.003181,0.002750,0.249985,0,0);-webkit-transform:matrix(0.289173,-0.003181,0.002750,0.249985,0,0);}
.m103_c00137{transform:matrix(0.290962,-0.003201,0.002750,0.249985,0,0);-ms-transform:matrix(0.290962,-0.003201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290962,-0.003201,0.002750,0.249985,0,0);}
.mfd_c00137{transform:matrix(0.294642,-0.003241,0.002750,0.249985,0,0);-ms-transform:matrix(0.294642,-0.003241,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294642,-0.003241,0.002750,0.249985,0,0);}
.mc_c00137{transform:matrix(0.300552,-0.003306,0.002750,0.249985,0,0);-ms-transform:matrix(0.300552,-0.003306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300552,-0.003306,0.002750,0.249985,0,0);}
.m114_c00137{transform:matrix(0.301417,-0.003316,0.002750,0.249985,0,0);-ms-transform:matrix(0.301417,-0.003316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.301417,-0.003316,0.002750,0.249985,0,0);}
.m10e_c00137{transform:matrix(0.322096,-0.003543,0.002750,0.249985,0,0);-ms-transform:matrix(0.322096,-0.003543,0.002750,0.249985,0,0);-webkit-transform:matrix(0.322096,-0.003543,0.002750,0.249985,0,0);}
.m17_c00137{transform:matrix(0.336085,-0.003697,0.002750,0.249985,0,0);-ms-transform:matrix(0.336085,-0.003697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.336085,-0.003697,0.002750,0.249985,0,0);}
.m10d_c00137{transform:matrix(0.344104,-0.003785,0.002750,0.249985,0,0);-ms-transform:matrix(0.344104,-0.003785,0.002750,0.249985,0,0);-webkit-transform:matrix(0.344104,-0.003785,0.002750,0.249985,0,0);}
.m16e_c00137{transform:matrix(0.348459,-0.003833,0.002750,0.249985,0,0);-ms-transform:matrix(0.348459,-0.003833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.348459,-0.003833,0.002750,0.249985,0,0);}
.m17f_c00137{transform:matrix(0.375036,0.008626,-0.005748,0.249934,0,0);-ms-transform:matrix(0.375036,0.008626,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.375036,0.008626,-0.005748,0.249934,0,0);}
.mf4_c00137{transform:matrix(0.380012,-0.004180,0.002750,0.249985,0,0);-ms-transform:matrix(0.380012,-0.004180,0.002750,0.249985,0,0);-webkit-transform:matrix(0.380012,-0.004180,0.002750,0.249985,0,0);}
.m166_c00137{transform:matrix(0.385712,-0.004243,0.002750,0.249985,0,0);-ms-transform:matrix(0.385712,-0.004243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.385712,-0.004243,0.002750,0.249985,0,0);}
.m181_c00137{transform:matrix(0.398520,0.009166,-0.005748,0.249934,0,0);-ms-transform:matrix(0.398520,0.009166,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.398520,0.009166,-0.005748,0.249934,0,0);}
.m134_c00137{transform:matrix(0.401636,-0.004418,0.002750,0.249985,0,0);-ms-transform:matrix(0.401636,-0.004418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.401636,-0.004418,0.002750,0.249985,0,0);}
.m8_c00137{transform:matrix(0.402890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402890,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.442968,-0.004873,0.002750,0.249985,0,0);-ms-transform:matrix(0.442968,-0.004873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.442968,-0.004873,0.002750,0.249985,0,0);}
.m12a_c00137{transform:matrix(0.447728,-0.004925,0.002750,0.249985,0,0);-ms-transform:matrix(0.447728,-0.004925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.447728,-0.004925,0.002750,0.249985,0,0);}
.m170_c00137{transform:matrix(0.477956,-0.005258,0.002750,0.249985,0,0);-ms-transform:matrix(0.477956,-0.005258,0.002750,0.249985,0,0);-webkit-transform:matrix(0.477956,-0.005258,0.002750,0.249985,0,0);}
.m0_c00137{transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00137{transform:matrix(0.551435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551435,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.596065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596065,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.603430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603430,0.000000,0.000000,0.250000,0,0);}
.m180_c00137{transform:matrix(0.739384,0.017006,-0.005748,0.249934,0,0);-ms-transform:matrix(0.739384,0.017006,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.739384,0.017006,-0.005748,0.249934,0,0);}
.m17d_c00137{transform:matrix(1.808710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.808710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.808710,0.000000,0.000000,0.250000,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;}
.fc0_c00137{color:transparent;}
.fs1_c00137{font-size:22.050000px;}
.fs0_c00137{font-size:24.150000px;}
.fs12_c00137{font-size:42.011108px;}
.fsc_c00137{font-size:60.903684px;}
.fs11_c00137{font-size:63.000000px;}
.fsd_c00137{font-size:65.103938px;}
.fs10_c00137{font-size:66.150000px;}
.fse_c00137{font-size:67.204065px;}
.fsb_c00137{font-size:68.254129px;}
.fs8_c00137{font-size:69.304193px;}
.fs7_c00137{font-size:70.354256px;}
.fsa_c00137{font-size:71.404320px;}
.fs9_c00137{font-size:72.454383px;}
.fsf_c00137{font-size:73.504447px;}
.fs2_c00137{font-size:82.950000px;}
.fs6_c00137{font-size:152.250000px;}
.fs4_c00137{font-size:193.200000px;}
.fs5_c00137{font-size:218.400000px;}
.fs3_c00137{font-size:488.250000px;}
.y0_c00137{bottom:0.000000px;}
.y182_c00137{bottom:103.966500px;}
.y186_c00137{bottom:109.390995px;}
.y183_c00137{bottom:109.639500px;}
.y185_c00137{bottom:111.391788px;}
.y184_c00137{bottom:113.403000px;}
.y181_c00137{bottom:135.805500px;}
.y17d_c00137{bottom:158.780417px;}
.y17b_c00137{bottom:158.780766px;}
.y17a_c00137{bottom:158.780906px;}
.y17e_c00137{bottom:158.780970px;}
.y180_c00137{bottom:158.781041px;}
.y179_c00137{bottom:158.781059px;}
.y17c_c00137{bottom:158.781140px;}
.y176_c00137{bottom:158.781171px;}
.y17f_c00137{bottom:158.781464px;}
.y178_c00137{bottom:158.781482px;}
.y177_c00137{bottom:158.781605px;}
.y175_c00137{bottom:158.781818px;}
.y16a_c00137{bottom:181.730354px;}
.y169_c00137{bottom:181.730807px;}
.y16b_c00137{bottom:181.731044px;}
.y16c_c00137{bottom:181.731284px;}
.y168_c00137{bottom:181.731513px;}
.y16d_c00137{bottom:181.731837px;}
.y16f_c00137{bottom:181.732118px;}
.y172_c00137{bottom:181.732166px;}
.y174_c00137{bottom:181.732209px;}
.y173_c00137{bottom:181.732316px;}
.y170_c00137{bottom:181.732355px;}
.y16e_c00137{bottom:181.732391px;}
.y171_c00137{bottom:181.732755px;}
.y166_c00137{bottom:204.653148px;}
.y167_c00137{bottom:204.653252px;}
.y165_c00137{bottom:204.653885px;}
.y164_c00137{bottom:204.654111px;}
.y162_c00137{bottom:204.654327px;}
.y163_c00137{bottom:204.654851px;}
.y161_c00137{bottom:204.654974px;}
.y15d_c00137{bottom:204.655046px;}
.y160_c00137{bottom:204.655277px;}
.y15c_c00137{bottom:204.655469px;}
.y15e_c00137{bottom:204.655539px;}
.y15b_c00137{bottom:204.655695px;}
.y15f_c00137{bottom:204.655850px;}
.y151_c00137{bottom:227.845484px;}
.y150_c00137{bottom:227.845637px;}
.y154_c00137{bottom:227.845791px;}
.y152_c00137{bottom:227.845854px;}
.y157_c00137{bottom:227.846159px;}
.y155_c00137{bottom:227.846375px;}
.y153_c00137{bottom:227.846498px;}
.y158_c00137{bottom:227.846799px;}
.y156_c00137{bottom:227.846895px;}
.y159_c00137{bottom:227.846916px;}
.y15a_c00137{bottom:227.847290px;}
.y145_c00137{bottom:250.553693px;}
.y143_c00137{bottom:250.553742px;}
.y148_c00137{bottom:250.553897px;}
.y147_c00137{bottom:250.553943px;}
.y146_c00137{bottom:250.553990px;}
.y149_c00137{bottom:250.554107px;}
.y142_c00137{bottom:250.554209px;}
.y144_c00137{bottom:250.554236px;}
.y14a_c00137{bottom:250.554284px;}
.y14b_c00137{bottom:250.554834px;}
.y14f_c00137{bottom:250.555109px;}
.y14d_c00137{bottom:250.555128px;}
.y14c_c00137{bottom:250.555208px;}
.y14e_c00137{bottom:250.555605px;}
.y13f_c00137{bottom:273.501287px;}
.y13c_c00137{bottom:273.501432px;}
.y13e_c00137{bottom:273.501486px;}
.y141_c00137{bottom:273.501627px;}
.y13d_c00137{bottom:273.501639px;}
.y13a_c00137{bottom:273.501842px;}
.y140_c00137{bottom:273.501900px;}
.y13b_c00137{bottom:273.501945px;}
.y139_c00137{bottom:273.502011px;}
.y137_c00137{bottom:273.502134px;}
.y138_c00137{bottom:273.502328px;}
.y136_c00137{bottom:273.502391px;}
.y133_c00137{bottom:296.454839px;}
.y135_c00137{bottom:296.454866px;}
.y134_c00137{bottom:296.455272px;}
.y132_c00137{bottom:296.455322px;}
.y131_c00137{bottom:296.455418px;}
.y12d_c00137{bottom:296.455530px;}
.y12c_c00137{bottom:296.455637px;}
.y12e_c00137{bottom:296.455887px;}
.y12f_c00137{bottom:296.455931px;}
.y130_c00137{bottom:296.456064px;}
.y12b_c00137{bottom:296.456283px;}
.y12a_c00137{bottom:296.456690px;}
.y129_c00137{bottom:296.457203px;}
.y122_c00137{bottom:319.356137px;}
.y125_c00137{bottom:319.356311px;}
.y120_c00137{bottom:319.356336px;}
.y123_c00137{bottom:319.356434px;}
.y11e_c00137{bottom:319.356462px;}
.y11b_c00137{bottom:319.356588px;}
.y11f_c00137{bottom:319.356639px;}
.y11c_c00137{bottom:319.356722px;}
.y127_c00137{bottom:319.356758px;}
.y121_c00137{bottom:319.356770px;}
.y124_c00137{bottom:319.356897px;}
.y126_c00137{bottom:319.356924px;}
.y11a_c00137{bottom:319.356995px;}
.y11d_c00137{bottom:319.357125px;}
.y128_c00137{bottom:319.357311px;}
.y10d_c00137{bottom:342.002247px;}
.y10f_c00137{bottom:342.002724px;}
.y10e_c00137{bottom:342.002981px;}
.y110_c00137{bottom:342.003081px;}
.y112_c00137{bottom:342.003378px;}
.y111_c00137{bottom:342.003425px;}
.y119_c00137{bottom:342.003617px;}
.y113_c00137{bottom:342.003752px;}
.y118_c00137{bottom:342.004263px;}
.y116_c00137{bottom:342.004343px;}
.y114_c00137{bottom:342.004379px;}
.y117_c00137{bottom:342.004536px;}
.y115_c00137{bottom:342.005052px;}
.y107_c00137{bottom:364.711355px;}
.y109_c00137{bottom:364.711575px;}
.y106_c00137{bottom:364.711581px;}
.yfe_c00137{bottom:364.712033px;}
.y108_c00137{bottom:364.712058px;}
.y104_c00137{bottom:364.712111px;}
.y10a_c00137{bottom:364.712159px;}
.y105_c00137{bottom:364.712198px;}
.yff_c00137{bottom:364.712406px;}
.y103_c00137{bottom:364.712577px;}
.y10b_c00137{bottom:364.712592px;}
.y100_c00137{bottom:364.712900px;}
.y10c_c00137{bottom:364.712919px;}
.y102_c00137{bottom:364.713107px;}
.y101_c00137{bottom:364.713213px;}
.yf3_c00137{bottom:387.573182px;}
.yf2_c00137{bottom:387.573215px;}
.yf4_c00137{bottom:387.573225px;}
.yf7_c00137{bottom:387.573606px;}
.yf5_c00137{bottom:387.573686px;}
.yf6_c00137{bottom:387.573909px;}
.yf8_c00137{bottom:387.574190px;}
.yf9_c00137{bottom:387.574937px;}
.yfa_c00137{bottom:387.575490px;}
.yfb_c00137{bottom:387.575577px;}
.yfc_c00137{bottom:387.575771px;}
.yfd_c00137{bottom:387.576068px;}
.yea_c00137{bottom:410.024072px;}
.yee_c00137{bottom:410.024240px;}
.ye6_c00137{bottom:410.024457px;}
.yeb_c00137{bottom:410.024475px;}
.ye7_c00137{bottom:410.024484px;}
.ye9_c00137{bottom:410.024525px;}
.yed_c00137{bottom:410.024529px;}
.ye8_c00137{bottom:410.024811px;}
.yef_c00137{bottom:410.024973px;}
.yec_c00137{bottom:410.025149px;}
.yf1_c00137{bottom:410.025224px;}
.yf0_c00137{bottom:410.025720px;}
.yd9_c00137{bottom:433.225016px;}
.ydb_c00137{bottom:433.225266px;}
.yda_c00137{bottom:433.225449px;}
.ydc_c00137{bottom:433.225730px;}
.ydd_c00137{bottom:433.226100px;}
.yde_c00137{bottom:433.226444px;}
.ye0_c00137{bottom:433.226858px;}
.ydf_c00137{bottom:433.227147px;}
.ye1_c00137{bottom:433.227441px;}
.ye2_c00137{bottom:433.227528px;}
.ye3_c00137{bottom:433.228142px;}
.ye4_c00137{bottom:433.228875px;}
.ye5_c00137{bottom:433.229249px;}
.yd8_c00137{bottom:456.214440px;}
.yd7_c00137{bottom:456.215027px;}
.yd0_c00137{bottom:456.215028px;}
.yd1_c00137{bottom:456.215372px;}
.yd2_c00137{bottom:456.215475px;}
.yd6_c00137{bottom:456.215600px;}
.ycf_c00137{bottom:456.215648px;}
.yd5_c00137{bottom:456.216006px;}
.yd3_c00137{bottom:456.216102px;}
.yd4_c00137{bottom:456.216429px;}
.ycc_c00137{bottom:479.397902px;}
.yce_c00137{bottom:479.398106px;}
.ycb_c00137{bottom:479.398278px;}
.ycd_c00137{bottom:479.398559px;}
.yc9_c00137{bottom:479.398568px;}
.yca_c00137{bottom:479.398911px;}
.yc2_c00137{bottom:479.399016px;}
.yc4_c00137{bottom:479.399193px;}
.yc8_c00137{bottom:479.399261px;}
.yc7_c00137{bottom:479.399547px;}
.yc3_c00137{bottom:479.399600px;}
.yc5_c00137{bottom:479.399747px;}
.yc6_c00137{bottom:479.399970px;}
.ybc_c00137{bottom:501.827547px;}
.yba_c00137{bottom:501.827597px;}
.ybe_c00137{bottom:501.827694px;}
.yb9_c00137{bottom:501.827853px;}
.yc0_c00137{bottom:501.828108px;}
.ybf_c00137{bottom:501.828171px;}
.ybb_c00137{bottom:501.828240px;}
.ybd_c00137{bottom:501.828251px;}
.yb6_c00137{bottom:501.828282px;}
.yb8_c00137{bottom:501.828396px;}
.yc1_c00137{bottom:501.828482px;}
.yb7_c00137{bottom:501.828743px;}
.yad_c00137{bottom:524.729915px;}
.yb0_c00137{bottom:524.730056px;}
.yab_c00137{bottom:524.730084px;}
.yb3_c00137{bottom:524.730137px;}
.yb1_c00137{bottom:524.730203px;}
.yae_c00137{bottom:524.730255px;}
.yb4_c00137{bottom:524.730330px;}
.yb5_c00137{bottom:524.730357px;}
.yb2_c00137{bottom:524.730486px;}
.yac_c00137{bottom:524.730488px;}
.yaf_c00137{bottom:524.730762px;}
.ya1_c00137{bottom:547.652577px;}
.yaa_c00137{bottom:547.652813px;}
.y9e_c00137{bottom:547.652853px;}
.y9f_c00137{bottom:547.653060px;}
.y9d_c00137{bottom:547.653066px;}
.ya9_c00137{bottom:547.653099px;}
.ya0_c00137{bottom:547.653134px;}
.ya2_c00137{bottom:547.653264px;}
.ya3_c00137{bottom:547.653308px;}
.ya4_c00137{bottom:547.653561px;}
.ya7_c00137{bottom:547.653689px;}
.ya8_c00137{bottom:547.653716px;}
.ya5_c00137{bottom:547.654025px;}
.ya6_c00137{bottom:547.654215px;}
.y98_c00137{bottom:570.692330px;}
.y97_c00137{bottom:570.692423px;}
.y99_c00137{bottom:570.692493px;}
.y9b_c00137{bottom:570.692531px;}
.y90_c00137{bottom:570.692601px;}
.y9a_c00137{bottom:570.692700px;}
.y91_c00137{bottom:570.692765px;}
.y9c_c00137{bottom:570.692858px;}
.y93_c00137{bottom:570.693032px;}
.y96_c00137{bottom:570.693056px;}
.y94_c00137{bottom:570.693059px;}
.y92_c00137{bottom:570.693198px;}
.y95_c00137{bottom:570.693612px;}
.y8f_c00137{bottom:593.615030px;}
.y8e_c00137{bottom:593.615513px;}
.y8d_c00137{bottom:593.615979px;}
.y85_c00137{bottom:593.616467px;}
.y8c_c00137{bottom:593.616716px;}
.y86_c00137{bottom:593.616870px;}
.y84_c00137{bottom:593.616933px;}
.y8a_c00137{bottom:593.616965px;}
.y87_c00137{bottom:593.617017px;}
.y89_c00137{bottom:593.617148px;}
.y8b_c00137{bottom:593.617425px;}
.y88_c00137{bottom:593.617691px;}
.y77_c00137{bottom:617.075211px;}
.y83_c00137{bottom:617.075274px;}
.y78_c00137{bottom:617.075404px;}
.y80_c00137{bottom:617.075640px;}
.y7c_c00137{bottom:617.075772px;}
.y7e_c00137{bottom:617.075886px;}
.y7d_c00137{bottom:617.075906px;}
.y7f_c00137{bottom:617.075913px;}
.y79_c00137{bottom:617.075958px;}
.y82_c00137{bottom:617.075981px;}
.y81_c00137{bottom:617.076117px;}
.y7a_c00137{bottom:617.076135px;}
.y7b_c00137{bottom:617.076268px;}
.y6c_c00137{bottom:639.421947px;}
.y6d_c00137{bottom:639.422301px;}
.y74_c00137{bottom:639.422526px;}
.y6e_c00137{bottom:639.422705px;}
.y75_c00137{bottom:639.422853px;}
.y76_c00137{bottom:639.423043px;}
.y71_c00137{bottom:639.423118px;}
.y72_c00137{bottom:639.423145px;}
.y73_c00137{bottom:639.423203px;}
.y70_c00137{bottom:639.423405px;}
.y6f_c00137{bottom:639.423438px;}
.y6a_c00137{bottom:662.102605px;}
.y65_c00137{bottom:662.102997px;}
.y64_c00137{bottom:662.103103px;}
.y6b_c00137{bottom:662.103159px;}
.y61_c00137{bottom:662.103169px;}
.y5f_c00137{bottom:662.103219px;}
.y66_c00137{bottom:662.103264px;}
.y69_c00137{bottom:662.103345px;}
.y60_c00137{bottom:662.103396px;}
.y68_c00137{bottom:662.103528px;}
.y62_c00137{bottom:662.103723px;}
.y67_c00137{bottom:662.103787px;}
.y63_c00137{bottom:662.103840px;}
.y54_c00137{bottom:683.897544px;}
.y55_c00137{bottom:684.273374px;}
.y56_c00137{bottom:685.123971px;}
.y57_c00137{bottom:685.274459px;}
.y58_c00137{bottom:685.468671px;}
.y59_c00137{bottom:685.862739px;}
.y5a_c00137{bottom:686.350530px;}
.y5b_c00137{bottom:686.641535px;}
.y5c_c00137{bottom:686.798856px;}
.y5d_c00137{bottom:687.191918px;}
.y5e_c00137{bottom:687.482029px;}
.y48_c00137{bottom:706.848703px;}
.y49_c00137{bottom:707.500846px;}
.y4a_c00137{bottom:707.722740px;}
.y4b_c00137{bottom:708.016139px;}
.y4c_c00137{bottom:708.314833px;}
.y4d_c00137{bottom:708.517662px;}
.y4e_c00137{bottom:708.868252px;}
.y4f_c00137{bottom:709.019235px;}
.y50_c00137{bottom:709.371691px;}
.y51_c00137{bottom:709.849661px;}
.y52_c00137{bottom:710.103659px;}
.y53_c00137{bottom:710.425957px;}
.y3c_c00137{bottom:729.261247px;}
.y3d_c00137{bottom:729.703332px;}
.y3e_c00137{bottom:730.079072px;}
.y3f_c00137{bottom:730.272064px;}
.y40_c00137{bottom:730.534176px;}
.y41_c00137{bottom:730.903396px;}
.y42_c00137{bottom:731.090152px;}
.y43_c00137{bottom:731.306499px;}
.y44_c00137{bottom:731.761438px;}
.y45_c00137{bottom:732.297544px;}
.y46_c00137{bottom:732.742302px;}
.y47_c00137{bottom:732.966025px;}
.y31_c00137{bottom:752.484482px;}
.y32_c00137{bottom:753.031281px;}
.y33_c00137{bottom:753.616006px;}
.y34_c00137{bottom:753.786934px;}
.y35_c00137{bottom:754.151467px;}
.y36_c00137{bottom:754.732743px;}
.y37_c00137{bottom:755.196133px;}
.y38_c00137{bottom:755.545335px;}
.y39_c00137{bottom:755.890558px;}
.y3a_c00137{bottom:756.036237px;}
.y3b_c00137{bottom:756.606654px;}
.y23_c00137{bottom:775.707445px;}
.y24_c00137{bottom:776.320037px;}
.y25_c00137{bottom:776.762248px;}
.y26_c00137{bottom:777.172660px;}
.y27_c00137{bottom:777.374938px;}
.y28_c00137{bottom:777.796357px;}
.y29_c00137{bottom:778.171159px;}
.y2a_c00137{bottom:778.347150px;}
.y2b_c00137{bottom:778.840863px;}
.y2c_c00137{bottom:779.170038px;}
.y2d_c00137{bottom:779.466309px;}
.y2e_c00137{bottom:779.661210px;}
.y2f_c00137{bottom:780.028817px;}
.y30_c00137{bottom:780.342233px;}
.y15_c00137{bottom:798.121078px;}
.y16_c00137{bottom:798.652944px;}
.y4_c00137{bottom:798.930000px;}
.y17_c00137{bottom:798.976894px;}
.y18_c00137{bottom:799.187895px;}
.y19_c00137{bottom:799.446445px;}
.y1a_c00137{bottom:799.864158px;}
.y1b_c00137{bottom:800.391669px;}
.y1c_c00137{bottom:800.696679px;}
.y1d_c00137{bottom:801.259415px;}
.y1e_c00137{bottom:801.687966px;}
.y1f_c00137{bottom:801.986821px;}
.y20_c00137{bottom:802.750841px;}
.y21_c00137{bottom:803.184227px;}
.y22_c00137{bottom:803.606047px;}
.y8_c00137{bottom:821.611500px;}
.y9_c00137{bottom:822.052958px;}
.ya_c00137{bottom:822.267474px;}
.yb_c00137{bottom:822.621432px;}
.yc_c00137{bottom:823.108050px;}
.yd_c00137{bottom:823.399754px;}
.ye_c00137{bottom:823.987879px;}
.yf_c00137{bottom:824.240247px;}
.y10_c00137{bottom:824.564093px;}
.y11_c00137{bottom:825.193601px;}
.y12_c00137{bottom:825.873945px;}
.y13_c00137{bottom:826.254154px;}
.y14_c00137{bottom:826.628391px;}
.y5_c00137{bottom:909.090000px;}
.y6_c00137{bottom:909.630000px;}
.y7_c00137{bottom:911.250000px;}
.y3_c00137{bottom:922.320000px;}
.y2_c00137{bottom:924.480000px;}
.y1_c00137{bottom:957.150000px;}
.h3_c00137{height:22.050000px;}
.h2_c00137{height:24.150000px;}
.h14_c00137{height:42.011108px;}
.he_c00137{height:60.903684px;}
.h13_c00137{height:63.000000px;}
.hf_c00137{height:65.103938px;}
.h12_c00137{height:66.150000px;}
.h10_c00137{height:67.204065px;}
.hd_c00137{height:68.254129px;}
.ha_c00137{height:69.304193px;}
.h9_c00137{height:70.354256px;}
.hc_c00137{height:71.404320px;}
.hb_c00137{height:72.454383px;}
.h11_c00137{height:73.504447px;}
.h4_c00137{height:82.950000px;}
.h8_c00137{height:152.250000px;}
.h6_c00137{height:193.200000px;}
.h7_c00137{height:218.400000px;}
.h5_c00137{height:488.250000px;}
.h0_c00137{height:1008.450000px;}
.h1_c00137{height:1008.750000px;}
.w0_c00137{width:676.890000px;}
.w1_c00137{width:677.250000px;}
.x0_c00137{left:0.000000px;}
.x8c_c00137{left:124.737153px;}
.xa5_c00137{left:129.327297px;}
.x80_c00137{left:132.565559px;}
.x3_c00137{left:133.920000px;}
.x7_c00137{left:135.124500px;}
.x2d_c00137{left:136.201435px;}
.xb0_c00137{left:150.929288px;}
.xcb_c00137{left:154.471500px;}
.x95_c00137{left:156.598380px;}
.x72_c00137{left:158.755155px;}
.x59_c00137{left:161.186778px;}
.x2_c00137{left:164.160000px;}
.x5f_c00137{left:166.587449px;}
.xc3_c00137{left:168.479787px;}
.xbe_c00137{left:169.558002px;}
.x87_c00137{left:172.259723px;}
.xb1_c00137{left:173.340494px;}
.x8_c00137{left:175.257000px;}
.x13_c00137{left:177.286114px;}
.x44_c00137{left:182.629284px;}
.x35_c00137{left:185.353444px;}
.x7b_c00137{left:188.457833px;}
.x4b_c00137{left:189.809995px;}
.xc4_c00137{left:191.431059px;}
.x96_c00137{left:192.511220px;}
.x9_c00137{left:194.758500px;}
.x20_c00137{left:196.951626px;}
.x90_c00137{left:200.881299px;}
.x14_c00137{left:204.281317px;}
.xb8_c00137{left:210.059766px;}
.x4c_c00137{left:211.681135px;}
.x9f_c00137{left:213.033056px;}
.x6b_c00137{left:214.107234px;}
.x8d_c00137{left:215.462126px;}
.x3d_c00137{left:217.421022px;}
.xb2_c00137{left:218.432955px;}
.x15_c00137{left:221.826619px;}
.x7c_c00137{left:223.830606px;}
.xa_c00137{left:226.936500px;}
.x60_c00137{left:228.690456px;}
.x97_c00137{left:230.852856px;}
.xc5_c00137{left:232.743059px;}
.x5a_c00137{left:235.171221px;}
.xa6_c00137{left:237.334382px;}
.x21_c00137{left:241.244121px;}
.x16_c00137{left:243.421888px;}
.x3e_c00137{left:245.230446px;}
.x9b_c00137{left:246.784064px;}
.x36_c00137{left:248.512330px;}
.x4d_c00137{left:250.832871px;}
.x81_c00137{left:254.882859px;}
.xa0_c00137{left:259.205649px;}
.x5b_c00137{left:260.822823px;}
.x2e_c00137{left:261.979207px;}
.x54_c00137{left:263.253336px;}
.xa7_c00137{left:265.146248px;}
.x65_c00137{left:266.223630px;}
.xb3_c00137{left:269.466126px;}
.xb_c00137{left:271.174500px;}
.x17_c00137{left:278.259009px;}
.x2f_c00137{left:280.927620px;}
.x22_c00137{left:282.236566px;}
.x4e_c00137{left:284.315430px;}
.x76_c00137{left:287.283104px;}
.x45_c00137{left:289.005298px;}
.xc6_c00137{left:290.257022px;}
.x5c_c00137{left:292.145118px;}
.xb5_c00137{left:295.655555px;}
.xc_c00137{left:297.693000px;}
.xab_c00137{left:300.249455px;}
.x23_c00137{left:302.534797px;}
.x46_c00137{left:307.868425px;}
.xb9_c00137{left:310.235877px;}
.x8e_c00137{left:312.397857px;}
.x82_c00137{left:316.447301px;}
.x37_c00137{left:318.725881px;}
.x66_c00137{left:319.957131px;}
.x18_c00137{left:322.259530px;}
.x77_c00137{left:324.004542px;}
.xac_c00137{left:326.171090px;}
.x88_c00137{left:327.519500px;}
.x73_c00137{left:330.755462px;}
.x47_c00137{left:332.206734px;}
.x98_c00137{left:333.729314px;}
.x9c_c00137{left:334.810206px;}
.x55_c00137{left:337.507812px;}
.x38_c00137{left:339.522343px;}
.xa1_c00137{left:340.749516px;}
.xa8_c00137{left:342.101054px;}
.x24_c00137{left:344.664259px;}
.x6c_c00137{left:346.145706px;}
.x19_c00137{left:347.669250px;}
.x4f_c00137{left:349.928866px;}
.xd_c00137{left:351.159000px;}
.x83_c00137{left:353.708805px;}
.xba_c00137{left:355.598372px;}
.xbf_c00137{left:359.381954px;}
.x39_c00137{left:363.554371px;}
.x67_c00137{left:365.859692px;}
.x56_c00137{left:366.939876px;}
.x6d_c00137{left:370.717176px;}
.x50_c00137{left:372.070039px;}
.xe_c00137{left:374.101500px;}
.x91_c00137{left:380.172480px;}
.x25_c00137{left:382.146672px;}
.xad_c00137{left:384.495152px;}
.x30_c00137{left:386.003430px;}
.x3f_c00137{left:388.372665px;}
.xb6_c00137{left:393.131336px;}
.x1a_c00137{left:394.599238px;}
.x9d_c00137{left:396.374648px;}
.xc0_c00137{left:397.453557px;}
.xbb_c00137{left:398.530569px;}
.x26_c00137{left:399.782370px;}
.xf_c00137{left:403.542000px;}
.x7d_c00137{left:405.822134px;}
.x40_c00137{left:407.280792px;}
.xa2_c00137{left:409.603349px;}
.x84_c00137{left:411.222768px;}
.x61_c00137{left:412.840731px;}
.x3a_c00137{left:414.049977px;}
.x57_c00137{left:420.403344px;}
.xc7_c00137{left:423.644159px;}
.x74_c00137{left:427.151127px;}
.x1b_c00137{left:430.285343px;}
.x68_c00137{left:432.283227px;}
.x99_c00137{left:434.445507px;}
.x78_c00137{left:436.332138px;}
.x31_c00137{left:437.540068px;}
.x92_c00137{left:440.656790px;}
.x48_c00137{left:442.379364px;}
.xcc_c00137{left:445.345500px;}
.xa3_c00137{left:447.134886px;}
.x27_c00137{left:449.165914px;}
.x41_c00137{left:451.323744px;}
.xbc_c00137{left:453.344202px;}
.x1c_c00137{left:455.135562px;}
.x10_c00137{left:460.770000px;}
.x89_c00137{left:463.066884px;}
.xa4_c00137{left:469.816125px;}
.x6e_c00137{left:472.243452px;}
.x3b_c00137{left:473.697297px;}
.x32_c00137{left:476.377426px;}
.x49_c00137{left:478.790068px;}
.x28_c00137{left:482.091277px;}
.x69_c00137{left:484.126497px;}
.x62_c00137{left:486.285125px;}
.xb7_c00137{left:487.906803px;}
.x58_c00137{left:493.037639px;}
.xa9_c00137{left:495.200583px;}
.x51_c00137{left:496.817637px;}
.x4a_c00137{left:498.547228px;}
.x85_c00137{left:500.599092px;}
.x93_c00137{left:501.949698px;}
.x6f_c00137{left:503.835780px;}
.xc8_c00137{left:505.729592px;}
.x8f_c00137{left:509.239667px;}
.x29_c00137{left:511.752607px;}
.x33_c00137{left:514.716768px;}
.x8a_c00137{left:515.990286px;}
.x1d_c00137{left:518.863869px;}
.x9a_c00137{left:521.119985px;}
.x4_c00137{left:523.260000px;}
.x79_c00137{left:526.517045px;}
.xb4_c00137{left:527.600844px;}
.x7e_c00137{left:529.759632px;}
.x2a_c00137{left:531.243822px;}
.x86_c00137{left:532.731486px;}
.x75_c00137{left:535.968294px;}
.x8b_c00137{left:537.321360px;}
.xaa_c00137{left:539.752979px;}
.xc9_c00137{left:541.642431px;}
.x42_c00137{left:542.823763px;}
.xc1_c00137{left:545.422460px;}
.xae_c00137{left:546.774287px;}
.x3c_c00137{left:547.969930px;}
.x63_c00137{left:550.819946px;}
.x6a_c00137{left:552.710297px;}
.x1e_c00137{left:554.989473px;}
.x11_c00137{left:557.184000px;}
.x5d_c00137{left:558.650859px;}
.x7a_c00137{left:563.510016px;}
.x94_c00137{left:564.592772px;}
.x2b_c00137{left:567.935718px;}
.x52_c00137{left:570.532063px;}
.x9e_c00137{left:571.885383px;}
.xc2_c00137{left:573.234326px;}
.x70_c00137{left:576.200041px;}
.x5e_c00137{left:578.361752px;}
.x43_c00137{left:583.034083px;}
.xca_c00137{left:585.654761px;}
.x7f_c00137{left:587.543628px;}
.x1f_c00137{left:590.200093px;}
.x12_c00137{left:591.205500px;}
.x53_c00137{left:592.403204px;}
.x34_c00137{left:594.409033px;}
.x5_c00137{left:596.430000px;}
.x2c_c00137{left:599.292064px;}
.xbd_c00137{left:601.853187px;}
.x71_c00137{left:605.632106px;}
.x64_c00137{left:608.873975px;}
.xaf_c00137{left:610.767525px;}
.x6_c00137{left:617.490000px;}
.xcd_c00137{left:619.780500px;}
.x1_c00137{left:669.060000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
.fs1_c00137{font-size:19.600000pt;}
.fs0_c00137{font-size:21.466667pt;}
.fs12_c00137{font-size:37.343207pt;}
.fsc_c00137{font-size:54.136608pt;}
.fs11_c00137{font-size:56.000000pt;}
.fsd_c00137{font-size:57.870167pt;}
.fs10_c00137{font-size:58.800000pt;}
.fse_c00137{font-size:59.736947pt;}
.fsb_c00137{font-size:60.670337pt;}
.fs8_c00137{font-size:61.603727pt;}
.fs7_c00137{font-size:62.537116pt;}
.fsa_c00137{font-size:63.470506pt;}
.fs9_c00137{font-size:64.403896pt;}
.fsf_c00137{font-size:65.337286pt;}
.fs2_c00137{font-size:73.733333pt;}
.fs6_c00137{font-size:135.333333pt;}
.fs4_c00137{font-size:171.733333pt;}
.fs5_c00137{font-size:194.133333pt;}
.fs3_c00137{font-size:434.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y182_c00137{bottom:92.414667pt;}
.y186_c00137{bottom:97.236440pt;}
.y183_c00137{bottom:97.457333pt;}
.y185_c00137{bottom:99.014923pt;}
.y184_c00137{bottom:100.802667pt;}
.y181_c00137{bottom:120.716000pt;}
.y17d_c00137{bottom:141.138148pt;}
.y17b_c00137{bottom:141.138459pt;}
.y17a_c00137{bottom:141.138583pt;}
.y17e_c00137{bottom:141.138640pt;}
.y180_c00137{bottom:141.138703pt;}
.y179_c00137{bottom:141.138719pt;}
.y17c_c00137{bottom:141.138791pt;}
.y176_c00137{bottom:141.138819pt;}
.y17f_c00137{bottom:141.139079pt;}
.y178_c00137{bottom:141.139095pt;}
.y177_c00137{bottom:141.139204pt;}
.y175_c00137{bottom:141.139393pt;}
.y16a_c00137{bottom:161.538092pt;}
.y169_c00137{bottom:161.538495pt;}
.y16b_c00137{bottom:161.538705pt;}
.y16c_c00137{bottom:161.538919pt;}
.y168_c00137{bottom:161.539123pt;}
.y16d_c00137{bottom:161.539411pt;}
.y16f_c00137{bottom:161.539660pt;}
.y172_c00137{bottom:161.539703pt;}
.y174_c00137{bottom:161.539741pt;}
.y173_c00137{bottom:161.539836pt;}
.y170_c00137{bottom:161.539871pt;}
.y16e_c00137{bottom:161.539903pt;}
.y171_c00137{bottom:161.540227pt;}
.y166_c00137{bottom:181.913909pt;}
.y167_c00137{bottom:181.914001pt;}
.y165_c00137{bottom:181.914564pt;}
.y164_c00137{bottom:181.914765pt;}
.y162_c00137{bottom:181.914957pt;}
.y163_c00137{bottom:181.915423pt;}
.y161_c00137{bottom:181.915532pt;}
.y15d_c00137{bottom:181.915596pt;}
.y160_c00137{bottom:181.915801pt;}
.y15c_c00137{bottom:181.915972pt;}
.y15e_c00137{bottom:181.916035pt;}
.y15b_c00137{bottom:181.916173pt;}
.y15f_c00137{bottom:181.916311pt;}
.y151_c00137{bottom:202.529319pt;}
.y150_c00137{bottom:202.529455pt;}
.y154_c00137{bottom:202.529592pt;}
.y152_c00137{bottom:202.529648pt;}
.y157_c00137{bottom:202.529919pt;}
.y155_c00137{bottom:202.530111pt;}
.y153_c00137{bottom:202.530220pt;}
.y158_c00137{bottom:202.530488pt;}
.y156_c00137{bottom:202.530573pt;}
.y159_c00137{bottom:202.530592pt;}
.y15a_c00137{bottom:202.530924pt;}
.y145_c00137{bottom:222.714393pt;}
.y143_c00137{bottom:222.714437pt;}
.y148_c00137{bottom:222.714575pt;}
.y147_c00137{bottom:222.714616pt;}
.y146_c00137{bottom:222.714657pt;}
.y149_c00137{bottom:222.714761pt;}
.y142_c00137{bottom:222.714852pt;}
.y144_c00137{bottom:222.714876pt;}
.y14a_c00137{bottom:222.714919pt;}
.y14b_c00137{bottom:222.715408pt;}
.y14f_c00137{bottom:222.715652pt;}
.y14d_c00137{bottom:222.715669pt;}
.y14c_c00137{bottom:222.715740pt;}
.y14e_c00137{bottom:222.716093pt;}
.y13f_c00137{bottom:243.112255pt;}
.y13c_c00137{bottom:243.112384pt;}
.y13e_c00137{bottom:243.112432pt;}
.y141_c00137{bottom:243.112557pt;}
.y13d_c00137{bottom:243.112568pt;}
.y13a_c00137{bottom:243.112748pt;}
.y140_c00137{bottom:243.112800pt;}
.y13b_c00137{bottom:243.112840pt;}
.y139_c00137{bottom:243.112899pt;}
.y137_c00137{bottom:243.113008pt;}
.y138_c00137{bottom:243.113180pt;}
.y136_c00137{bottom:243.113236pt;}
.y133_c00137{bottom:263.515412pt;}
.y135_c00137{bottom:263.515436pt;}
.y134_c00137{bottom:263.515797pt;}
.y132_c00137{bottom:263.515841pt;}
.y131_c00137{bottom:263.515927pt;}
.y12d_c00137{bottom:263.516027pt;}
.y12c_c00137{bottom:263.516121pt;}
.y12e_c00137{bottom:263.516344pt;}
.y12f_c00137{bottom:263.516383pt;}
.y130_c00137{bottom:263.516501pt;}
.y12b_c00137{bottom:263.516696pt;}
.y12a_c00137{bottom:263.517057pt;}
.y129_c00137{bottom:263.517513pt;}
.y122_c00137{bottom:283.872121pt;}
.y125_c00137{bottom:283.872276pt;}
.y120_c00137{bottom:283.872299pt;}
.y123_c00137{bottom:283.872385pt;}
.y11e_c00137{bottom:283.872411pt;}
.y11b_c00137{bottom:283.872523pt;}
.y11f_c00137{bottom:283.872568pt;}
.y11c_c00137{bottom:283.872641pt;}
.y127_c00137{bottom:283.872673pt;}
.y121_c00137{bottom:283.872684pt;}
.y124_c00137{bottom:283.872797pt;}
.y126_c00137{bottom:283.872821pt;}
.y11a_c00137{bottom:283.872884pt;}
.y11d_c00137{bottom:283.873000pt;}
.y128_c00137{bottom:283.873165pt;}
.y10d_c00137{bottom:304.001997pt;}
.y10f_c00137{bottom:304.002421pt;}
.y10e_c00137{bottom:304.002649pt;}
.y110_c00137{bottom:304.002739pt;}
.y112_c00137{bottom:304.003003pt;}
.y111_c00137{bottom:304.003044pt;}
.y119_c00137{bottom:304.003215pt;}
.y113_c00137{bottom:304.003335pt;}
.y118_c00137{bottom:304.003789pt;}
.y116_c00137{bottom:304.003860pt;}
.y114_c00137{bottom:304.003892pt;}
.y117_c00137{bottom:304.004032pt;}
.y115_c00137{bottom:304.004491pt;}
.y107_c00137{bottom:324.187871pt;}
.y109_c00137{bottom:324.188067pt;}
.y106_c00137{bottom:324.188072pt;}
.yfe_c00137{bottom:324.188473pt;}
.y108_c00137{bottom:324.188496pt;}
.y104_c00137{bottom:324.188543pt;}
.y10a_c00137{bottom:324.188585pt;}
.y105_c00137{bottom:324.188620pt;}
.yff_c00137{bottom:324.188805pt;}
.y103_c00137{bottom:324.188957pt;}
.y10b_c00137{bottom:324.188971pt;}
.y100_c00137{bottom:324.189244pt;}
.y10c_c00137{bottom:324.189261pt;}
.y102_c00137{bottom:324.189428pt;}
.y101_c00137{bottom:324.189523pt;}
.yf3_c00137{bottom:344.509495pt;}
.yf2_c00137{bottom:344.509524pt;}
.yf4_c00137{bottom:344.509533pt;}
.yf7_c00137{bottom:344.509872pt;}
.yf5_c00137{bottom:344.509943pt;}
.yf6_c00137{bottom:344.510141pt;}
.yf8_c00137{bottom:344.510391pt;}
.yf9_c00137{bottom:344.511055pt;}
.yfa_c00137{bottom:344.511547pt;}
.yfb_c00137{bottom:344.511624pt;}
.yfc_c00137{bottom:344.511796pt;}
.yfd_c00137{bottom:344.512060pt;}
.yea_c00137{bottom:364.465841pt;}
.yee_c00137{bottom:364.465991pt;}
.ye6_c00137{bottom:364.466184pt;}
.yeb_c00137{bottom:364.466200pt;}
.ye7_c00137{bottom:364.466208pt;}
.ye9_c00137{bottom:364.466244pt;}
.yed_c00137{bottom:364.466248pt;}
.ye8_c00137{bottom:364.466499pt;}
.yef_c00137{bottom:364.466643pt;}
.yec_c00137{bottom:364.466799pt;}
.yf1_c00137{bottom:364.466865pt;}
.yf0_c00137{bottom:364.467307pt;}
.yd9_c00137{bottom:385.088903pt;}
.ydb_c00137{bottom:385.089125pt;}
.yda_c00137{bottom:385.089288pt;}
.ydc_c00137{bottom:385.089537pt;}
.ydd_c00137{bottom:385.089867pt;}
.yde_c00137{bottom:385.090172pt;}
.ye0_c00137{bottom:385.090540pt;}
.ydf_c00137{bottom:385.090797pt;}
.ye1_c00137{bottom:385.091059pt;}
.ye2_c00137{bottom:385.091136pt;}
.ye3_c00137{bottom:385.091681pt;}
.ye4_c00137{bottom:385.092333pt;}
.ye5_c00137{bottom:385.092665pt;}
.yd8_c00137{bottom:405.523947pt;}
.yd7_c00137{bottom:405.524468pt;}
.yd0_c00137{bottom:405.524469pt;}
.yd1_c00137{bottom:405.524775pt;}
.yd2_c00137{bottom:405.524867pt;}
.yd6_c00137{bottom:405.524977pt;}
.ycf_c00137{bottom:405.525020pt;}
.yd5_c00137{bottom:405.525339pt;}
.yd3_c00137{bottom:405.525424pt;}
.yd4_c00137{bottom:405.525715pt;}
.ycc_c00137{bottom:426.131468pt;}
.yce_c00137{bottom:426.131649pt;}
.ycb_c00137{bottom:426.131803pt;}
.ycd_c00137{bottom:426.132052pt;}
.yc9_c00137{bottom:426.132060pt;}
.yca_c00137{bottom:426.132365pt;}
.yc2_c00137{bottom:426.132459pt;}
.yc4_c00137{bottom:426.132616pt;}
.yc8_c00137{bottom:426.132676pt;}
.yc7_c00137{bottom:426.132931pt;}
.yc3_c00137{bottom:426.132977pt;}
.yc5_c00137{bottom:426.133108pt;}
.yc6_c00137{bottom:426.133307pt;}
.ybc_c00137{bottom:446.068931pt;}
.yba_c00137{bottom:446.068975pt;}
.ybe_c00137{bottom:446.069061pt;}
.yb9_c00137{bottom:446.069203pt;}
.yc0_c00137{bottom:446.069429pt;}
.ybf_c00137{bottom:446.069485pt;}
.ybb_c00137{bottom:446.069547pt;}
.ybd_c00137{bottom:446.069556pt;}
.yb6_c00137{bottom:446.069584pt;}
.yb8_c00137{bottom:446.069685pt;}
.yc1_c00137{bottom:446.069761pt;}
.yb7_c00137{bottom:446.069993pt;}
.yad_c00137{bottom:466.426591pt;}
.yb0_c00137{bottom:466.426716pt;}
.yab_c00137{bottom:466.426741pt;}
.yb3_c00137{bottom:466.426788pt;}
.yb1_c00137{bottom:466.426847pt;}
.yae_c00137{bottom:466.426893pt;}
.yb4_c00137{bottom:466.426960pt;}
.yb5_c00137{bottom:466.426984pt;}
.yb2_c00137{bottom:466.427099pt;}
.yac_c00137{bottom:466.427100pt;}
.yaf_c00137{bottom:466.427344pt;}
.ya1_c00137{bottom:486.802291pt;}
.yaa_c00137{bottom:486.802500pt;}
.y9e_c00137{bottom:486.802536pt;}
.y9f_c00137{bottom:486.802720pt;}
.y9d_c00137{bottom:486.802725pt;}
.ya9_c00137{bottom:486.802755pt;}
.ya0_c00137{bottom:486.802785pt;}
.ya2_c00137{bottom:486.802901pt;}
.ya3_c00137{bottom:486.802940pt;}
.ya4_c00137{bottom:486.803165pt;}
.ya7_c00137{bottom:486.803279pt;}
.ya8_c00137{bottom:486.803303pt;}
.ya5_c00137{bottom:486.803577pt;}
.ya6_c00137{bottom:486.803747pt;}
.y98_c00137{bottom:507.282071pt;}
.y97_c00137{bottom:507.282153pt;}
.y99_c00137{bottom:507.282216pt;}
.y9b_c00137{bottom:507.282249pt;}
.y90_c00137{bottom:507.282312pt;}
.y9a_c00137{bottom:507.282400pt;}
.y91_c00137{bottom:507.282457pt;}
.y9c_c00137{bottom:507.282540pt;}
.y93_c00137{bottom:507.282695pt;}
.y96_c00137{bottom:507.282716pt;}
.y94_c00137{bottom:507.282719pt;}
.y92_c00137{bottom:507.282843pt;}
.y95_c00137{bottom:507.283211pt;}
.y8f_c00137{bottom:527.657804pt;}
.y8e_c00137{bottom:527.658233pt;}
.y8d_c00137{bottom:527.658648pt;}
.y85_c00137{bottom:527.659081pt;}
.y8c_c00137{bottom:527.659303pt;}
.y86_c00137{bottom:527.659440pt;}
.y84_c00137{bottom:527.659496pt;}
.y8a_c00137{bottom:527.659524pt;}
.y87_c00137{bottom:527.659571pt;}
.y89_c00137{bottom:527.659687pt;}
.y8b_c00137{bottom:527.659933pt;}
.y88_c00137{bottom:527.660169pt;}
.y77_c00137{bottom:548.511299pt;}
.y83_c00137{bottom:548.511355pt;}
.y78_c00137{bottom:548.511471pt;}
.y80_c00137{bottom:548.511680pt;}
.y7c_c00137{bottom:548.511797pt;}
.y7e_c00137{bottom:548.511899pt;}
.y7d_c00137{bottom:548.511916pt;}
.y7f_c00137{bottom:548.511923pt;}
.y79_c00137{bottom:548.511963pt;}
.y82_c00137{bottom:548.511983pt;}
.y81_c00137{bottom:548.512104pt;}
.y7a_c00137{bottom:548.512120pt;}
.y7b_c00137{bottom:548.512239pt;}
.y6c_c00137{bottom:568.375064pt;}
.y6d_c00137{bottom:568.375379pt;}
.y74_c00137{bottom:568.375579pt;}
.y6e_c00137{bottom:568.375737pt;}
.y75_c00137{bottom:568.375869pt;}
.y76_c00137{bottom:568.376039pt;}
.y71_c00137{bottom:568.376105pt;}
.y72_c00137{bottom:568.376129pt;}
.y73_c00137{bottom:568.376180pt;}
.y70_c00137{bottom:568.376360pt;}
.y6f_c00137{bottom:568.376389pt;}
.y6a_c00137{bottom:588.535649pt;}
.y65_c00137{bottom:588.535997pt;}
.y64_c00137{bottom:588.536092pt;}
.y6b_c00137{bottom:588.536141pt;}
.y61_c00137{bottom:588.536151pt;}
.y5f_c00137{bottom:588.536195pt;}
.y66_c00137{bottom:588.536235pt;}
.y69_c00137{bottom:588.536307pt;}
.y60_c00137{bottom:588.536352pt;}
.y68_c00137{bottom:588.536469pt;}
.y62_c00137{bottom:588.536643pt;}
.y67_c00137{bottom:588.536700pt;}
.y63_c00137{bottom:588.536747pt;}
.y54_c00137{bottom:607.908928pt;}
.y55_c00137{bottom:608.242999pt;}
.y56_c00137{bottom:608.999085pt;}
.y57_c00137{bottom:609.132852pt;}
.y58_c00137{bottom:609.305485pt;}
.y59_c00137{bottom:609.655768pt;}
.y5a_c00137{bottom:610.089360pt;}
.y5b_c00137{bottom:610.348031pt;}
.y5c_c00137{bottom:610.487872pt;}
.y5d_c00137{bottom:610.837260pt;}
.y5e_c00137{bottom:611.095137pt;}
.y48_c00137{bottom:628.309959pt;}
.y49_c00137{bottom:628.889641pt;}
.y4a_c00137{bottom:629.086880pt;}
.y4b_c00137{bottom:629.347679pt;}
.y4c_c00137{bottom:629.613185pt;}
.y4d_c00137{bottom:629.793477pt;}
.y4e_c00137{bottom:630.105113pt;}
.y4f_c00137{bottom:630.239320pt;}
.y50_c00137{bottom:630.552615pt;}
.y51_c00137{bottom:630.977476pt;}
.y52_c00137{bottom:631.203252pt;}
.y53_c00137{bottom:631.489740pt;}
.y3c_c00137{bottom:648.232220pt;}
.y3d_c00137{bottom:648.625184pt;}
.y3e_c00137{bottom:648.959175pt;}
.y3f_c00137{bottom:649.130724pt;}
.y40_c00137{bottom:649.363712pt;}
.y41_c00137{bottom:649.691908pt;}
.y42_c00137{bottom:649.857913pt;}
.y43_c00137{bottom:650.050221pt;}
.y44_c00137{bottom:650.454612pt;}
.y45_c00137{bottom:650.931151pt;}
.y46_c00137{bottom:651.326491pt;}
.y47_c00137{bottom:651.525356pt;}
.y31_c00137{bottom:668.875095pt;}
.y32_c00137{bottom:669.361139pt;}
.y33_c00137{bottom:669.880895pt;}
.y34_c00137{bottom:670.032831pt;}
.y35_c00137{bottom:670.356860pt;}
.y36_c00137{bottom:670.873549pt;}
.y37_c00137{bottom:671.285452pt;}
.y38_c00137{bottom:671.595853pt;}
.y39_c00137{bottom:671.902719pt;}
.y3a_c00137{bottom:672.032211pt;}
.y3b_c00137{bottom:672.539248pt;}
.y23_c00137{bottom:689.517729pt;}
.y24_c00137{bottom:690.062255pt;}
.y25_c00137{bottom:690.455332pt;}
.y26_c00137{bottom:690.820143pt;}
.y27_c00137{bottom:690.999945pt;}
.y28_c00137{bottom:691.374540pt;}
.y29_c00137{bottom:691.707697pt;}
.y2a_c00137{bottom:691.864133pt;}
.y2b_c00137{bottom:692.302989pt;}
.y2c_c00137{bottom:692.595589pt;}
.y2d_c00137{bottom:692.858941pt;}
.y2e_c00137{bottom:693.032187pt;}
.y2f_c00137{bottom:693.358948pt;}
.y30_c00137{bottom:693.637540pt;}
.y15_c00137{bottom:709.440959pt;}
.y16_c00137{bottom:709.913728pt;}
.y4_c00137{bottom:710.160000pt;}
.y17_c00137{bottom:710.201684pt;}
.y18_c00137{bottom:710.389240pt;}
.y19_c00137{bottom:710.619063pt;}
.y1a_c00137{bottom:710.990363pt;}
.y1b_c00137{bottom:711.459261pt;}
.y1c_c00137{bottom:711.730381pt;}
.y1d_c00137{bottom:712.230591pt;}
.y1e_c00137{bottom:712.611525pt;}
.y1f_c00137{bottom:712.877175pt;}
.y20_c00137{bottom:713.556303pt;}
.y21_c00137{bottom:713.941535pt;}
.y22_c00137{bottom:714.316487pt;}
.y8_c00137{bottom:730.321333pt;}
.y9_c00137{bottom:730.713740pt;}
.ya_c00137{bottom:730.904421pt;}
.yb_c00137{bottom:731.219051pt;}
.yc_c00137{bottom:731.651600pt;}
.yd_c00137{bottom:731.910892pt;}
.ye_c00137{bottom:732.433671pt;}
.yf_c00137{bottom:732.657997pt;}
.y10_c00137{bottom:732.945860pt;}
.y11_c00137{bottom:733.505423pt;}
.y12_c00137{bottom:734.110173pt;}
.y13_c00137{bottom:734.448137pt;}
.y14_c00137{bottom:734.780792pt;}
.y5_c00137{bottom:808.080000pt;}
.y6_c00137{bottom:808.560000pt;}
.y7_c00137{bottom:810.000000pt;}
.y3_c00137{bottom:819.840000pt;}
.y2_c00137{bottom:821.760000pt;}
.y1_c00137{bottom:850.800000pt;}
.h3_c00137{height:19.600000pt;}
.h2_c00137{height:21.466667pt;}
.h14_c00137{height:37.343207pt;}
.he_c00137{height:54.136608pt;}
.h13_c00137{height:56.000000pt;}
.hf_c00137{height:57.870167pt;}
.h12_c00137{height:58.800000pt;}
.h10_c00137{height:59.736947pt;}
.hd_c00137{height:60.670337pt;}
.ha_c00137{height:61.603727pt;}
.h9_c00137{height:62.537116pt;}
.hc_c00137{height:63.470506pt;}
.hb_c00137{height:64.403896pt;}
.h11_c00137{height:65.337286pt;}
.h4_c00137{height:73.733333pt;}
.h8_c00137{height:135.333333pt;}
.h6_c00137{height:171.733333pt;}
.h7_c00137{height:194.133333pt;}
.h5_c00137{height:434.000000pt;}
.h0_c00137{height:896.400000pt;}
.h1_c00137{height:896.666667pt;}
.w0_c00137{width:601.680000pt;}
.w1_c00137{width:602.000000pt;}
.x0_c00137{left:0.000000pt;}
.x8c_c00137{left:110.877469pt;}
.xa5_c00137{left:114.957597pt;}
.x80_c00137{left:117.836052pt;}
.x3_c00137{left:119.040000pt;}
.x7_c00137{left:120.110667pt;}
.x2d_c00137{left:121.067943pt;}
.xb0_c00137{left:134.159367pt;}
.xcb_c00137{left:137.308000pt;}
.x95_c00137{left:139.198560pt;}
.x72_c00137{left:141.115693pt;}
.x59_c00137{left:143.277136pt;}
.x2_c00137{left:145.920000pt;}
.x5f_c00137{left:148.077732pt;}
.xc3_c00137{left:149.759811pt;}
.xbe_c00137{left:150.718224pt;}
.x87_c00137{left:153.119753pt;}
.xb1_c00137{left:154.080439pt;}
.x8_c00137{left:155.784000pt;}
.x13_c00137{left:157.587657pt;}
.x44_c00137{left:162.337141pt;}
.x35_c00137{left:164.758617pt;}
.x7b_c00137{left:167.518073pt;}
.x4b_c00137{left:168.719996pt;}
.xc4_c00137{left:170.160941pt;}
.x96_c00137{left:171.121084pt;}
.x9_c00137{left:173.118667pt;}
.x20_c00137{left:175.068112pt;}
.x90_c00137{left:178.561155pt;}
.x14_c00137{left:181.583393pt;}
.xb8_c00137{left:186.719792pt;}
.x4c_c00137{left:188.161009pt;}
.x9f_c00137{left:189.362716pt;}
.x6b_c00137{left:190.317541pt;}
.x8d_c00137{left:191.521889pt;}
.x3d_c00137{left:193.263131pt;}
.xb2_c00137{left:194.162627pt;}
.x15_c00137{left:197.179217pt;}
.x7c_c00137{left:198.960539pt;}
.xa_c00137{left:201.721333pt;}
.x60_c00137{left:203.280405pt;}
.x97_c00137{left:205.202539pt;}
.xc5_c00137{left:206.882719pt;}
.x5a_c00137{left:209.041085pt;}
.xa6_c00137{left:210.963895pt;}
.x21_c00137{left:214.439219pt;}
.x16_c00137{left:216.375012pt;}
.x3e_c00137{left:217.982619pt;}
.x9b_c00137{left:219.363612pt;}
.x36_c00137{left:220.899849pt;}
.x4d_c00137{left:222.962552pt;}
.x81_c00137{left:226.562541pt;}
.xa0_c00137{left:230.405021pt;}
.x5b_c00137{left:231.842509pt;}
.x2e_c00137{left:232.870407pt;}
.x54_c00137{left:234.002965pt;}
.xa7_c00137{left:235.685553pt;}
.x65_c00137{left:236.643227pt;}
.xb3_c00137{left:239.525445pt;}
.xb_c00137{left:241.044000pt;}
.x17_c00137{left:247.341341pt;}
.x2f_c00137{left:249.713440pt;}
.x22_c00137{left:250.876948pt;}
.x4e_c00137{left:252.724827pt;}
.x76_c00137{left:255.362759pt;}
.x45_c00137{left:256.893599pt;}
.xc6_c00137{left:258.006241pt;}
.x5c_c00137{left:259.684549pt;}
.xb5_c00137{left:262.804937pt;}
.xc_c00137{left:264.616000pt;}
.xab_c00137{left:266.888404pt;}
.x23_c00137{left:268.919820pt;}
.x46_c00137{left:273.660823pt;}
.xb9_c00137{left:275.765224pt;}
.x8e_c00137{left:277.686984pt;}
.x82_c00137{left:281.286489pt;}
.x37_c00137{left:283.311895pt;}
.x66_c00137{left:284.406339pt;}
.x18_c00137{left:286.452916pt;}
.x77_c00137{left:288.004037pt;}
.xac_c00137{left:289.929857pt;}
.x88_c00137{left:291.128444pt;}
.x73_c00137{left:294.004855pt;}
.x47_c00137{left:295.294875pt;}
.x98_c00137{left:296.648279pt;}
.x9c_c00137{left:297.609072pt;}
.x55_c00137{left:300.006944pt;}
.x38_c00137{left:301.797639pt;}
.xa1_c00137{left:302.888459pt;}
.xa8_c00137{left:304.089825pt;}
.x24_c00137{left:306.368231pt;}
.x6c_c00137{left:307.685072pt;}
.x19_c00137{left:309.039333pt;}
.x4f_c00137{left:311.047881pt;}
.xd_c00137{left:312.141333pt;}
.x83_c00137{left:314.407827pt;}
.xba_c00137{left:316.087441pt;}
.xbf_c00137{left:319.450625pt;}
.x39_c00137{left:323.159441pt;}
.x67_c00137{left:325.208615pt;}
.x56_c00137{left:326.168779pt;}
.x6d_c00137{left:329.526379pt;}
.x50_c00137{left:330.728924pt;}
.xe_c00137{left:332.534667pt;}
.x91_c00137{left:337.931093pt;}
.x25_c00137{left:339.685931pt;}
.xad_c00137{left:341.773468pt;}
.x30_c00137{left:343.114160pt;}
.x3f_c00137{left:345.220147pt;}
.xb6_c00137{left:349.450076pt;}
.x1a_c00137{left:350.754879pt;}
.x9d_c00137{left:352.333020pt;}
.xc0_c00137{left:353.292051pt;}
.xbb_c00137{left:354.249395pt;}
.x26_c00137{left:355.362107pt;}
.xf_c00137{left:358.704000pt;}
.x7d_c00137{left:360.730785pt;}
.x40_c00137{left:362.027371pt;}
.xa2_c00137{left:364.091865pt;}
.x84_c00137{left:365.531349pt;}
.x61_c00137{left:366.969539pt;}
.x3a_c00137{left:368.044424pt;}
.x57_c00137{left:373.691861pt;}
.xc7_c00137{left:376.572585pt;}
.x74_c00137{left:379.689891pt;}
.x1b_c00137{left:382.475860pt;}
.x68_c00137{left:384.251757pt;}
.x99_c00137{left:386.173784pt;}
.x78_c00137{left:387.850789pt;}
.x31_c00137{left:388.924505pt;}
.x92_c00137{left:391.694924pt;}
.x48_c00137{left:393.226101pt;}
.xcc_c00137{left:395.862667pt;}
.xa3_c00137{left:397.453232pt;}
.x27_c00137{left:399.258591pt;}
.x41_c00137{left:401.176661pt;}
.xbc_c00137{left:402.972624pt;}
.x1c_c00137{left:404.564944pt;}
.x10_c00137{left:409.573333pt;}
.x89_c00137{left:411.615008pt;}
.xa4_c00137{left:417.614333pt;}
.x6e_c00137{left:419.771957pt;}
.x3b_c00137{left:421.064264pt;}
.x32_c00137{left:423.446601pt;}
.x49_c00137{left:425.591172pt;}
.x28_c00137{left:428.525580pt;}
.x69_c00137{left:430.334664pt;}
.x62_c00137{left:432.253444pt;}
.xb7_c00137{left:433.694936pt;}
.x58_c00137{left:438.255679pt;}
.xa9_c00137{left:440.178296pt;}
.x51_c00137{left:441.615677pt;}
.x4a_c00137{left:443.153092pt;}
.x85_c00137{left:444.976971pt;}
.x93_c00137{left:446.177509pt;}
.x6f_c00137{left:447.854027pt;}
.xc8_c00137{left:449.537415pt;}
.x8f_c00137{left:452.657481pt;}
.x29_c00137{left:454.891207pt;}
.x33_c00137{left:457.526016pt;}
.x8a_c00137{left:458.658032pt;}
.x1d_c00137{left:461.212328pt;}
.x9a_c00137{left:463.217764pt;}
.x4_c00137{left:465.120000pt;}
.x79_c00137{left:468.015151pt;}
.xb4_c00137{left:468.978528pt;}
.x7e_c00137{left:470.897451pt;}
.x2a_c00137{left:472.216731pt;}
.x86_c00137{left:473.539099pt;}
.x75_c00137{left:476.416261pt;}
.x8b_c00137{left:477.618987pt;}
.xaa_c00137{left:479.780425pt;}
.xc9_c00137{left:481.459939pt;}
.x42_c00137{left:482.510012pt;}
.xc1_c00137{left:484.819964pt;}
.xae_c00137{left:486.021588pt;}
.x3c_c00137{left:487.084383pt;}
.x63_c00137{left:489.617729pt;}
.x6a_c00137{left:491.298041pt;}
.x1e_c00137{left:493.323976pt;}
.x11_c00137{left:495.274667pt;}
.x5d_c00137{left:496.578541pt;}
.x7a_c00137{left:500.897792pt;}
.x94_c00137{left:501.860241pt;}
.x2b_c00137{left:504.831749pt;}
.x52_c00137{left:507.139612pt;}
.x9e_c00137{left:508.342563pt;}
.xc2_c00137{left:509.541623pt;}
.x70_c00137{left:512.177815pt;}
.x5e_c00137{left:514.099335pt;}
.x43_c00137{left:518.252519pt;}
.xca_c00137{left:520.582009pt;}
.x7f_c00137{left:522.261003pt;}
.x1f_c00137{left:524.622305pt;}
.x12_c00137{left:525.516000pt;}
.x53_c00137{left:526.580625pt;}
.x34_c00137{left:528.363585pt;}
.x5_c00137{left:530.160000pt;}
.x2c_c00137{left:532.704057pt;}
.xbd_c00137{left:534.980611pt;}
.x71_c00137{left:538.339649pt;}
.x64_c00137{left:541.221311pt;}
.xaf_c00137{left:542.904467pt;}
.x6_c00137{left:548.880000pt;}
.xcd_c00137{left:550.916000pt;}
.x1_c00137{left:594.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m134_c00138{transform:matrix(0.021417,0.000343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.021417,0.000343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.021417,0.000343,-0.003999,0.249968,0,0);}
.mc4_c00138{transform:matrix(0.023425,0.000492,-0.005249,0.249945,0,0);-ms-transform:matrix(0.023425,0.000492,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.023425,0.000492,-0.005249,0.249945,0,0);}
.m6c_c00138{transform:matrix(0.083954,0.001343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.083954,0.001343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.083954,0.001343,-0.003999,0.249968,0,0);}
.m13d_c00138{transform:matrix(0.088839,0.001421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.088839,0.001421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.088839,0.001421,-0.003999,0.249968,0,0);}
.m160_c00138{transform:matrix(0.091986,0.002300,-0.006248,0.249922,0,0);-ms-transform:matrix(0.091986,0.002300,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.091986,0.002300,-0.006248,0.249922,0,0);}
.m79_c00138{transform:matrix(0.104307,0.001669,-0.003999,0.249968,0,0);-ms-transform:matrix(0.104307,0.001669,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.104307,0.001669,-0.003999,0.249968,0,0);}
.m157_c00138{transform:matrix(0.131766,0.002767,-0.005249,0.249945,0,0);-ms-transform:matrix(0.131766,0.002767,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.131766,0.002767,-0.005249,0.249945,0,0);}
.m100_c00138{transform:matrix(0.133561,0.002805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.133561,0.002805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.133561,0.002805,-0.005249,0.249945,0,0);}
.mec_c00138{transform:matrix(0.136750,0.002872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.136750,0.002872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.136750,0.002872,-0.005249,0.249945,0,0);}
.mf5_c00138{transform:matrix(0.141124,0.002964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.141124,0.002964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.141124,0.002964,-0.005249,0.249945,0,0);}
.m107_c00138{transform:matrix(0.142799,0.002999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142799,0.002999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142799,0.002999,-0.005249,0.249945,0,0);}
.m92_c00138{transform:matrix(0.143547,0.002297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143547,0.002297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143547,0.002297,-0.003999,0.249968,0,0);}
.m59_c00138{transform:matrix(0.144087,0.002305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.144087,0.002305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.144087,0.002305,-0.003999,0.249968,0,0);}
.m10e_c00138{transform:matrix(0.144320,0.004330,-0.007497,0.249888,0,0);-ms-transform:matrix(0.144320,0.004330,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.144320,0.004330,-0.007497,0.249888,0,0);}
.m35_c00138{transform:matrix(0.146706,0.002641,-0.004499,0.249960,0,0);-ms-transform:matrix(0.146706,0.002641,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.146706,0.002641,-0.004499,0.249960,0,0);}
.m55_c00138{transform:matrix(0.147916,0.002367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147916,0.002367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147916,0.002367,-0.003999,0.249968,0,0);}
.m13b_c00138{transform:matrix(0.148061,0.002369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148061,0.002369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148061,0.002369,-0.003999,0.249968,0,0);}
.m5e_c00138{transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);}
.m15b_c00138{transform:matrix(0.150138,0.003753,-0.006248,0.249922,0,0);-ms-transform:matrix(0.150138,0.003753,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.150138,0.003753,-0.006248,0.249922,0,0);}
.mdf_c00138{transform:matrix(0.150262,0.003155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150262,0.003155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150262,0.003155,-0.005249,0.249945,0,0);}
.m27_c00138{transform:matrix(0.150443,0.002257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150443,0.002257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150443,0.002257,-0.003750,0.249972,0,0);}
.m135_c00138{transform:matrix(0.151196,0.002419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151196,0.002419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151196,0.002419,-0.003999,0.249968,0,0);}
.m143_c00138{transform:matrix(0.152111,0.003194,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152111,0.003194,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152111,0.003194,-0.005249,0.249945,0,0);}
.me2_c00138{transform:matrix(0.154021,0.003234,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154021,0.003234,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154021,0.003234,-0.005249,0.249945,0,0);}
.maf_c00138{transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);}
.m6f_c00138{transform:matrix(0.154235,0.002468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154235,0.002468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154235,0.002468,-0.003999,0.249968,0,0);}
.m33_c00138{transform:matrix(0.154365,0.002779,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154365,0.002779,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154365,0.002779,-0.004499,0.249960,0,0);}
.m39_c00138{transform:matrix(0.154825,0.002787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154825,0.002787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154825,0.002787,-0.004499,0.249960,0,0);}
.m5a_c00138{transform:matrix(0.155105,0.002482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155105,0.002482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155105,0.002482,-0.003999,0.249968,0,0);}
.m13a_c00138{transform:matrix(0.156190,0.002499,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156190,0.002499,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156190,0.002499,-0.003999,0.249968,0,0);}
.m89_c00138{transform:matrix(0.157035,0.002513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157035,0.002513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157035,0.002513,-0.003999,0.249968,0,0);}
.m68_c00138{transform:matrix(0.157230,0.002516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157230,0.002516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157230,0.002516,-0.003999,0.249968,0,0);}
.m7c_c00138{transform:matrix(0.157535,0.002521,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157535,0.002521,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157535,0.002521,-0.003999,0.249968,0,0);}
.m54_c00138{transform:matrix(0.157765,0.002524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157765,0.002524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157765,0.002524,-0.003999,0.249968,0,0);}
.mc8_c00138{transform:matrix(0.158090,0.003320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158090,0.003320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158090,0.003320,-0.005249,0.249945,0,0);}
.m5_c00138{transform:matrix(0.158987,0.002385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158987,0.002385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158987,0.002385,-0.003750,0.249972,0,0);}
.m162_c00138{transform:matrix(0.159090,0.003977,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159090,0.003977,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159090,0.003977,-0.006248,0.249922,0,0);}
.maa_c00138{transform:matrix(0.159115,0.002546,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159115,0.002546,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159115,0.002546,-0.003999,0.249968,0,0);}
.m20_c00138{transform:matrix(0.159132,0.002387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159132,0.002387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159132,0.002387,-0.003750,0.249972,0,0);}
.m1d_c00138{transform:matrix(0.159767,0.002397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159767,0.002397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159767,0.002397,-0.003750,0.249972,0,0);}
.mb0_c00138{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);}
.me6_c00138{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);}
.m112_c00138{transform:matrix(0.160003,0.004800,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160003,0.004800,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160003,0.004800,-0.007497,0.249888,0,0);}
.mf9_c00138{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);}
.m8b_c00138{transform:matrix(0.160964,0.002575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160964,0.002575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160964,0.002575,-0.003999,0.249968,0,0);}
.m1a_c00138{transform:matrix(0.161252,0.002419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161252,0.002419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161252,0.002419,-0.003750,0.249972,0,0);}
.mdc_c00138{transform:matrix(0.161284,0.003387,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161284,0.003387,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161284,0.003387,-0.005249,0.249945,0,0);}
.m78_c00138{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);}
.mea_c00138{transform:matrix(0.162154,0.003405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162154,0.003405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162154,0.003405,-0.005249,0.249945,0,0);}
.mc0_c00138{transform:matrix(0.162274,0.003408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162274,0.003408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162274,0.003408,-0.005249,0.249945,0,0);}
.m61_c00138{transform:matrix(0.162329,0.002597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162329,0.002597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162329,0.002597,-0.003999,0.249968,0,0);}
.m21_c00138{transform:matrix(0.162367,0.002436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162367,0.002436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162367,0.002436,-0.003750,0.249972,0,0);}
.m12_c00138{transform:matrix(0.162427,0.002436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162427,0.002436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162427,0.002436,-0.003750,0.249972,0,0);}
.m58_c00138{transform:matrix(0.163094,0.002610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163094,0.002610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163094,0.002610,-0.003999,0.249968,0,0);}
.me8_c00138{transform:matrix(0.163314,0.003430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163314,0.003430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163314,0.003430,-0.005249,0.249945,0,0);}
.m4a_c00138{transform:matrix(0.164044,0.002625,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164044,0.002625,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164044,0.002625,-0.003999,0.249968,0,0);}
.m3a_c00138{transform:matrix(0.164218,0.002956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164218,0.002956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164218,0.002956,-0.004499,0.249960,0,0);}
.ma3_c00138{transform:matrix(0.164439,0.002631,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164439,0.002631,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164439,0.002631,-0.003999,0.249968,0,0);}
.m11e_c00138{transform:matrix(0.164531,0.004936,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164531,0.004936,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164531,0.004936,-0.007497,0.249888,0,0);}
.me5_c00138{transform:matrix(0.164649,0.003458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164649,0.003458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164649,0.003458,-0.005249,0.249945,0,0);}
.m2f_c00138{transform:matrix(0.164651,0.002470,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164651,0.002470,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164651,0.002470,-0.003750,0.249972,0,0);}
.m74_c00138{transform:matrix(0.164864,0.002638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164864,0.002638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164864,0.002638,-0.003999,0.249968,0,0);}
.m34_c00138{transform:matrix(0.164923,0.002969,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164923,0.002969,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164923,0.002969,-0.004499,0.249960,0,0);}
.m8f_c00138{transform:matrix(0.165179,0.002643,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165179,0.002643,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165179,0.002643,-0.003999,0.249968,0,0);}
.meb_c00138{transform:matrix(0.165194,0.003469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165194,0.003469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165194,0.003469,-0.005249,0.249945,0,0);}
.me1_c00138{transform:matrix(0.165499,0.003475,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165499,0.003475,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165499,0.003475,-0.005249,0.249945,0,0);}
.m48_c00138{transform:matrix(0.165524,0.002648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165524,0.002648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165524,0.002648,-0.003999,0.249968,0,0);}
.m13c_c00138{transform:matrix(0.165989,0.002656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165989,0.002656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165989,0.002656,-0.003999,0.249968,0,0);}
.m9a_c00138{transform:matrix(0.166004,0.002656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166004,0.002656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166004,0.002656,-0.003999,0.249968,0,0);}
.m90_c00138{transform:matrix(0.167114,0.002674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167114,0.002674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167114,0.002674,-0.003999,0.249968,0,0);}
.md6_c00138{transform:matrix(0.167678,0.003521,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167678,0.003521,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167678,0.003521,-0.005249,0.249945,0,0);}
.md0_c00138{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);}
.mfd_c00138{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);}
.md7_c00138{transform:matrix(0.167878,0.003525,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167878,0.003525,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167878,0.003525,-0.005249,0.249945,0,0);}
.m14f_c00138{transform:matrix(0.168798,0.003545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168798,0.003545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168798,0.003545,-0.005249,0.249945,0,0);}
.m51_c00138{transform:matrix(0.168838,0.002701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168838,0.002701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168838,0.002701,-0.003999,0.249968,0,0);}
.m36_c00138{transform:matrix(0.168973,0.003042,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168973,0.003042,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168973,0.003042,-0.004499,0.249960,0,0);}
.m8d_c00138{transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);}
.md2_c00138{transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);}
.md3_c00138{transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);}
.m12a_c00138{transform:matrix(0.169309,0.005079,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169309,0.005079,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169309,0.005079,-0.007497,0.249888,0,0);}
.m49_c00138{transform:matrix(0.169403,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169403,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169403,0.002710,-0.003999,0.249968,0,0);}
.m87_c00138{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);}
.mbe_c00138{transform:matrix(0.169718,0.003564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169718,0.003564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169718,0.003564,-0.005249,0.249945,0,0);}
.m43_c00138{transform:matrix(0.169908,0.002719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169908,0.002719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169908,0.002719,-0.003999,0.249968,0,0);}
.m10_c00138{transform:matrix(0.170186,0.002553,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170186,0.002553,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170186,0.002553,-0.003750,0.249972,0,0);}
.m1f_c00138{transform:matrix(0.170236,0.002554,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170236,0.002554,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170236,0.002554,-0.003750,0.249972,0,0);}
.m8_c00138{transform:matrix(0.170331,0.002555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170331,0.002555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170331,0.002555,-0.003750,0.249972,0,0);}
.m142_c00138{transform:matrix(0.170517,0.003581,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170517,0.003581,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170517,0.003581,-0.005249,0.249945,0,0);}
.m76_c00138{transform:matrix(0.170593,0.002729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170593,0.002729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170593,0.002729,-0.003999,0.249968,0,0);}
.m9d_c00138{transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171553,0.002745,-0.003999,0.249968,0,0);}
.mb2_c00138{transform:matrix(0.171858,0.002750,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171858,0.002750,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171858,0.002750,-0.003999,0.249968,0,0);}
.m16_c00138{transform:matrix(0.171916,0.002579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171916,0.002579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171916,0.002579,-0.003750,0.249972,0,0);}
.m154_c00138{transform:matrix(0.171942,0.003611,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171942,0.003611,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171942,0.003611,-0.005249,0.249945,0,0);}
.mf3_c00138{transform:matrix(0.172212,0.003616,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172212,0.003616,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172212,0.003616,-0.005249,0.249945,0,0);}
.m22_c00138{transform:matrix(0.172261,0.002584,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172261,0.002584,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172261,0.002584,-0.003750,0.249972,0,0);}
.m88_c00138{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);}
.m130_c00138{transform:matrix(0.172682,0.005180,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172682,0.005180,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172682,0.005180,-0.007497,0.249888,0,0);}
.mdd_c00138{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);}
.ma_c00138{transform:matrix(0.172776,0.002592,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172776,0.002592,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172776,0.002592,-0.003750,0.249972,0,0);}
.m5d_c00138{transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173003,0.002768,-0.003999,0.249968,0,0);}
.m132_c00138{transform:matrix(0.173082,0.005192,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173082,0.005192,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173082,0.005192,-0.007497,0.249888,0,0);}
.mbd_c00138{transform:matrix(0.173132,0.003636,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173132,0.003636,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173132,0.003636,-0.005249,0.249945,0,0);}
.m66_c00138{transform:matrix(0.173603,0.002778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173603,0.002778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173603,0.002778,-0.003999,0.249968,0,0);}
.m147_c00138{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);}
.m50_c00138{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);}
.mf8_c00138{transform:matrix(0.173922,0.003652,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173922,0.003652,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173922,0.003652,-0.005249,0.249945,0,0);}
.m98_c00138{transform:matrix(0.174223,0.002788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174223,0.002788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174223,0.002788,-0.003999,0.249968,0,0);}
.m12b_c00138{transform:matrix(0.174362,0.005231,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174362,0.005231,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174362,0.005231,-0.007497,0.249888,0,0);}
.m151_c00138{transform:matrix(0.174402,0.003662,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174402,0.003662,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174402,0.003662,-0.005249,0.249945,0,0);}
.ma8_c00138{transform:matrix(0.174513,0.002792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174513,0.002792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174513,0.002792,-0.003999,0.249968,0,0);}
.m99_c00138{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);}
.mfe_c00138{transform:matrix(0.174666,0.003668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174666,0.003668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174666,0.003668,-0.005249,0.249945,0,0);}
.m26_c00138{transform:matrix(0.174845,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174845,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174845,0.002623,-0.003750,0.249972,0,0);}
.m70_c00138{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);}
.m14_c00138{transform:matrix(0.174935,0.002624,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174935,0.002624,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174935,0.002624,-0.003750,0.249972,0,0);}
.m137_c00138{transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175283,0.002805,-0.003999,0.249968,0,0);}
.m8c_c00138{transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);}
.m25_c00138{transform:matrix(0.175585,0.002634,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175585,0.002634,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175585,0.002634,-0.003750,0.249972,0,0);}
.m145_c00138{transform:matrix(0.175636,0.003688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175636,0.003688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175636,0.003688,-0.005249,0.249945,0,0);}
.m108_c00138{transform:matrix(0.175886,0.003694,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175886,0.003694,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175886,0.003694,-0.005249,0.249945,0,0);}
.m30_c00138{transform:matrix(0.176010,0.002640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176010,0.002640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176010,0.002640,-0.003750,0.249972,0,0);}
.m15e_c00138{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);}
.mf2_c00138{transform:matrix(0.176146,0.003699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176146,0.003699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176146,0.003699,-0.005249,0.249945,0,0);}
.m15_c00138{transform:matrix(0.176255,0.002644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176255,0.002644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176255,0.002644,-0.003750,0.249972,0,0);}
.m8e_c00138{transform:matrix(0.176312,0.002821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176312,0.002821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176312,0.002821,-0.003999,0.249968,0,0);}
.m7d_c00138{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);}
.mcf_c00138{transform:matrix(0.176431,0.003705,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176431,0.003705,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176431,0.003705,-0.005249,0.249945,0,0);}
.m9e_c00138{transform:matrix(0.176492,0.002824,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176492,0.002824,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176492,0.002824,-0.003999,0.249968,0,0);}
.m4_c00138{transform:matrix(0.176540,0.002648,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176540,0.002648,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176540,0.002648,-0.003750,0.249972,0,0);}
.m2c_c00138{transform:matrix(0.176555,0.002648,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176555,0.002648,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176555,0.002648,-0.003750,0.249972,0,0);}
.m136_c00138{transform:matrix(0.176687,0.002827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176687,0.002827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176687,0.002827,-0.003999,0.249968,0,0);}
.m32_c00138{transform:matrix(0.176701,0.003181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176701,0.003181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176701,0.003181,-0.004499,0.249960,0,0);}
.m83_c00138{transform:matrix(0.177162,0.002835,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177162,0.002835,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177162,0.002835,-0.003999,0.249968,0,0);}
.m71_c00138{transform:matrix(0.177227,0.002836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177227,0.002836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177227,0.002836,-0.003999,0.249968,0,0);}
.m9b_c00138{transform:matrix(0.177242,0.002836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177242,0.002836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177242,0.002836,-0.003999,0.249968,0,0);}
.m113_c00138{transform:matrix(0.177470,0.005324,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177470,0.005324,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177470,0.005324,-0.007497,0.249888,0,0);}
.m29_c00138{transform:matrix(0.177480,0.002662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177480,0.002662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177480,0.002662,-0.003750,0.249972,0,0);}
.mad_c00138{transform:matrix(0.177482,0.002840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177482,0.002840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177482,0.002840,-0.003999,0.249968,0,0);}
.mc1_c00138{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);}
.md8_c00138{transform:matrix(0.177821,0.003734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177821,0.003734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177821,0.003734,-0.005249,0.249945,0,0);}
.m5c_c00138{transform:matrix(0.178382,0.002854,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178382,0.002854,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178382,0.002854,-0.003999,0.249968,0,0);}
.mca_c00138{transform:matrix(0.178406,0.003747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178406,0.003747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178406,0.003747,-0.005249,0.249945,0,0);}
.m120_c00138{transform:matrix(0.178705,0.005361,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178705,0.005361,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178705,0.005361,-0.007497,0.249888,0,0);}
.m46_c00138{transform:matrix(0.179352,0.002870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179352,0.002870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179352,0.002870,-0.003999,0.249968,0,0);}
.m4e_c00138{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);}
.mf_c00138{transform:matrix(0.179715,0.002696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179715,0.002696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179715,0.002696,-0.003750,0.249972,0,0);}
.m23_c00138{transform:matrix(0.179955,0.002699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179955,0.002699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179955,0.002699,-0.003750,0.249972,0,0);}
.m5f_c00138{transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);}
.m4c_c00138{transform:matrix(0.180242,0.002884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180242,0.002884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180242,0.002884,-0.003999,0.249968,0,0);}
.m28_c00138{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);}
.mf1_c00138{transform:matrix(0.180470,0.003790,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180470,0.003790,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180470,0.003790,-0.005249,0.249945,0,0);}
.m123_c00138{transform:matrix(0.180524,0.005416,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180524,0.005416,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180524,0.005416,-0.007497,0.249888,0,0);}
.mac_c00138{transform:matrix(0.180612,0.002890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180612,0.002890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180612,0.002890,-0.003999,0.249968,0,0);}
.m138_c00138{transform:matrix(0.180732,0.002892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180732,0.002892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180732,0.002892,-0.003999,0.249968,0,0);}
.mb1_c00138{transform:matrix(0.180867,0.002894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180867,0.002894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180867,0.002894,-0.003999,0.249968,0,0);}
.mb6_c00138{transform:matrix(0.180880,0.003798,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180880,0.003798,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180880,0.003798,-0.005249,0.249945,0,0);}
.m47_c00138{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);}
.m62_c00138{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);}
.m1b_c00138{transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);}
.m14d_c00138{transform:matrix(0.181805,0.003818,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181805,0.003818,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181805,0.003818,-0.005249,0.249945,0,0);}
.mc3_c00138{transform:matrix(0.181810,0.003818,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181810,0.003818,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181810,0.003818,-0.005249,0.249945,0,0);}
.m11_c00138{transform:matrix(0.182075,0.002731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182075,0.002731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182075,0.002731,-0.003750,0.249972,0,0);}
.m109_c00138{transform:matrix(0.182295,0.003828,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182295,0.003828,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182295,0.003828,-0.005249,0.249945,0,0);}
.mb8_c00138{transform:matrix(0.182350,0.003829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182350,0.003829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182350,0.003829,-0.005249,0.249945,0,0);}
.me7_c00138{transform:matrix(0.182700,0.003837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182700,0.003837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182700,0.003837,-0.005249,0.249945,0,0);}
.me4_c00138{transform:matrix(0.183005,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183005,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183005,0.003843,-0.005249,0.249945,0,0);}
.m45_c00138{transform:matrix(0.183187,0.002931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183187,0.002931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183187,0.002931,-0.003999,0.249968,0,0);}
.m19_c00138{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);}
.m140_c00138{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);}
.me_c00138{transform:matrix(0.183659,0.002755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183659,0.002755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183659,0.002755,-0.003750,0.249972,0,0);}
.mf4_c00138{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);}
.ma5_c00138{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);}
.m105_c00138{transform:matrix(0.184334,0.003871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184334,0.003871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184334,0.003871,-0.005249,0.249945,0,0);}
.m3b_c00138{transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);}
.ma0_c00138{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);}
.m56_c00138{transform:matrix(0.184966,0.002959,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184966,0.002959,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184966,0.002959,-0.003999,0.249968,0,0);}
.m13f_c00138{transform:matrix(0.185206,0.002963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185206,0.002963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185206,0.002963,-0.003999,0.249968,0,0);}
.mb5_c00138{transform:matrix(0.185269,0.003891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185269,0.003891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185269,0.003891,-0.005249,0.249945,0,0);}
.m166_c00138{transform:matrix(0.185497,0.001669,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185497,0.001669,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185497,0.001669,-0.002250,0.249990,0,0);}
.ma1_c00138{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);}
.m53_c00138{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);}
.m15d_c00138{transform:matrix(0.186082,0.004652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186082,0.004652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186082,0.004652,-0.006248,0.249922,0,0);}
.m3_c00138{transform:matrix(0.186169,0.002793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186169,0.002793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186169,0.002793,-0.003750,0.249972,0,0);}
.me3_c00138{transform:matrix(0.186294,0.003912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186294,0.003912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186294,0.003912,-0.005249,0.249945,0,0);}
.m6_c00138{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);}
.m93_c00138{transform:matrix(0.186501,0.002984,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186501,0.002984,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186501,0.002984,-0.003999,0.249968,0,0);}
.m4f_c00138{transform:matrix(0.186891,0.002990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186891,0.002990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186891,0.002990,-0.003999,0.249968,0,0);}
.m57_c00138{transform:matrix(0.187226,0.002996,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187226,0.002996,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187226,0.002996,-0.003999,0.249968,0,0);}
.me0_c00138{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);}
.m52_c00138{transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187456,0.002999,-0.003999,0.249968,0,0);}
.ma2_c00138{transform:matrix(0.187751,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187751,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187751,0.003004,-0.003999,0.249968,0,0);}
.mef_c00138{transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);}
.m14c_c00138{transform:matrix(0.187974,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187974,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187974,0.003947,-0.005249,0.249945,0,0);}
.m101_c00138{transform:matrix(0.188473,0.003958,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188473,0.003958,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188473,0.003958,-0.005249,0.249945,0,0);}
.m97_c00138{transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188781,0.003020,-0.003999,0.249968,0,0);}
.m156_c00138{transform:matrix(0.189008,0.003969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189008,0.003969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189008,0.003969,-0.005249,0.249945,0,0);}
.m80_c00138{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);}
.m111_c00138{transform:matrix(0.189930,0.005698,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189930,0.005698,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189930,0.005698,-0.007497,0.249888,0,0);}
.m84_c00138{transform:matrix(0.190091,0.003041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190091,0.003041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190091,0.003041,-0.003999,0.249968,0,0);}
.m82_c00138{transform:matrix(0.190131,0.003042,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190131,0.003042,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190131,0.003042,-0.003999,0.249968,0,0);}
.m14b_c00138{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);}
.m161_c00138{transform:matrix(0.191030,0.004776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191030,0.004776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191030,0.004776,-0.006248,0.249922,0,0);}
.m6b_c00138{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);}
.m15a_c00138{transform:matrix(0.191260,0.004782,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191260,0.004782,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191260,0.004782,-0.006248,0.249922,0,0);}
.m38_c00138{transform:matrix(0.191534,0.003448,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191534,0.003448,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191534,0.003448,-0.004499,0.249960,0,0);}
.mf6_c00138{transform:matrix(0.191768,0.004027,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191768,0.004027,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191768,0.004027,-0.005249,0.249945,0,0);}
.m9c_c00138{transform:matrix(0.192135,0.003074,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192135,0.003074,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192135,0.003074,-0.003999,0.249968,0,0);}
.ma6_c00138{transform:matrix(0.192220,0.003076,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192220,0.003076,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192220,0.003076,-0.003999,0.249968,0,0);}
.m1c_c00138{transform:matrix(0.192288,0.002884,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192288,0.002884,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192288,0.002884,-0.003750,0.249972,0,0);}
.m3f_c00138{transform:matrix(0.192295,0.003077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192295,0.003077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192295,0.003077,-0.003999,0.249968,0,0);}
.mff_c00138{transform:matrix(0.192573,0.004044,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192573,0.004044,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192573,0.004044,-0.005249,0.249945,0,0);}
.m7e_c00138{transform:matrix(0.192950,0.003087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192950,0.003087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192950,0.003087,-0.003999,0.249968,0,0);}
.me9_c00138{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);}
.m8a_c00138{transform:matrix(0.194375,0.003110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194375,0.003110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194375,0.003110,-0.003999,0.249968,0,0);}
.m110_c00138{transform:matrix(0.194607,0.005838,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194607,0.005838,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194607,0.005838,-0.007497,0.249888,0,0);}
.m77_c00138{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);}
.mfc_c00138{transform:matrix(0.194657,0.004088,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194657,0.004088,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194657,0.004088,-0.005249,0.249945,0,0);}
.med_c00138{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);}
.m153_c00138{transform:matrix(0.195157,0.004098,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195157,0.004098,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195157,0.004098,-0.005249,0.249945,0,0);}
.md_c00138{transform:matrix(0.195663,0.002935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195663,0.002935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195663,0.002935,-0.003750,0.249972,0,0);}
.m141_c00138{transform:matrix(0.195742,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195742,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195742,0.004111,-0.005249,0.249945,0,0);}
.mbf_c00138{transform:matrix(0.196102,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196102,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196102,0.004118,-0.005249,0.249945,0,0);}
.m6e_c00138{transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);}
.m4d_c00138{transform:matrix(0.196990,0.003152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196990,0.003152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196990,0.003152,-0.003999,0.249968,0,0);}
.m72_c00138{transform:matrix(0.197355,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197355,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197355,0.003158,-0.003999,0.249968,0,0);}
.mb3_c00138{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);}
.m12c_c00138{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);}
.mb7_c00138{transform:matrix(0.198126,0.004161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198126,0.004161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198126,0.004161,-0.005249,0.249945,0,0);}
.mb4_c00138{transform:matrix(0.198340,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198340,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198340,0.003173,-0.003999,0.249968,0,0);}
.m125_c00138{transform:matrix(0.198551,0.005957,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198551,0.005957,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198551,0.005957,-0.007497,0.249888,0,0);}
.mc7_c00138{transform:matrix(0.198791,0.004175,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198791,0.004175,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198791,0.004175,-0.005249,0.249945,0,0);}
.mcd_c00138{transform:matrix(0.198881,0.004177,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198881,0.004177,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198881,0.004177,-0.005249,0.249945,0,0);}
.m15c_c00138{transform:matrix(0.199203,0.004980,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199203,0.004980,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199203,0.004980,-0.006248,0.249922,0,0);}
.mda_c00138{transform:matrix(0.199226,0.004184,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199226,0.004184,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199226,0.004184,-0.005249,0.249945,0,0);}
.m3d_c00138{transform:matrix(0.199704,0.003195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199704,0.003195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199704,0.003195,-0.003999,0.249968,0,0);}
.m102_c00138{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);}
.m2a_c00138{transform:matrix(0.200262,0.003004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200262,0.003004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200262,0.003004,-0.003750,0.249972,0,0);}
.m37_c00138{transform:matrix(0.200952,0.003617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200952,0.003617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200952,0.003617,-0.004499,0.249960,0,0);}
.m144_c00138{transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);}
.m2e_c00138{transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201387,0.003021,-0.003750,0.249972,0,0);}
.m44_c00138{transform:matrix(0.201429,0.003223,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201429,0.003223,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201429,0.003223,-0.003999,0.249968,0,0);}
.mc6_c00138{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);}
.mdb_c00138{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);}
.m3e_c00138{transform:matrix(0.201824,0.003229,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201824,0.003229,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201824,0.003229,-0.003999,0.249968,0,0);}
.m94_c00138{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);}
.m119_c00138{transform:matrix(0.202444,0.006073,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202444,0.006073,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202444,0.006073,-0.007497,0.249888,0,0);}
.m7_c00138{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);}
.m152_c00138{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);}
.md1_c00138{transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);}
.m6a_c00138{transform:matrix(0.203349,0.003254,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203349,0.003254,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203349,0.003254,-0.003999,0.249968,0,0);}
.mae_c00138{transform:matrix(0.203914,0.003263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203914,0.003263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203914,0.003263,-0.003999,0.249968,0,0);}
.mfb_c00138{transform:matrix(0.204205,0.004288,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204205,0.004288,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204205,0.004288,-0.005249,0.249945,0,0);}
.mf7_c00138{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);}
.m150_c00138{transform:matrix(0.204420,0.004293,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204420,0.004293,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204420,0.004293,-0.005249,0.249945,0,0);}
.m148_c00138{transform:matrix(0.204670,0.004298,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204670,0.004298,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204670,0.004298,-0.005249,0.249945,0,0);}
.m9_c00138{transform:matrix(0.205312,0.003080,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205312,0.003080,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205312,0.003080,-0.003750,0.249972,0,0);}
.m3c_c00138{transform:matrix(0.205884,0.003294,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205884,0.003294,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205884,0.003294,-0.003999,0.249968,0,0);}
.mf0_c00138{transform:matrix(0.205885,0.004324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205885,0.004324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205885,0.004324,-0.005249,0.249945,0,0);}
.m15f_c00138{transform:matrix(0.206321,0.005158,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206321,0.005158,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206321,0.005158,-0.006248,0.249922,0,0);}
.mb_c00138{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);}
.m17_c00138{transform:matrix(0.206677,0.003100,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206677,0.003100,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206677,0.003100,-0.003750,0.249972,0,0);}
.m124_c00138{transform:matrix(0.207996,0.006240,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207996,0.006240,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207996,0.006240,-0.007497,0.249888,0,0);}
.mc9_c00138{transform:matrix(0.208349,0.004375,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208349,0.004375,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208349,0.004375,-0.005249,0.249945,0,0);}
.m129_c00138{transform:matrix(0.209336,0.006280,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209336,0.006280,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209336,0.006280,-0.007497,0.249888,0,0);}
.m91_c00138{transform:matrix(0.209953,0.003359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209953,0.003359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209953,0.003359,-0.003999,0.249968,0,0);}
.m13_c00138{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);}
.m10d_c00138{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);}
.md4_c00138{transform:matrix(0.211923,0.004450,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211923,0.004450,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211923,0.004450,-0.005249,0.249945,0,0);}
.m95_c00138{transform:matrix(0.212223,0.003396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212223,0.003396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212223,0.003396,-0.003999,0.249968,0,0);}
.m40_c00138{transform:matrix(0.214683,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214683,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214683,0.003435,-0.003999,0.249968,0,0);}
.m126_c00138{transform:matrix(0.215338,0.006460,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215338,0.006460,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215338,0.006460,-0.007497,0.249888,0,0);}
.m163_c00138{transform:matrix(0.215411,0.001939,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215411,0.001939,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215411,0.001939,-0.002250,0.249990,0,0);}
.m63_c00138{transform:matrix(0.215782,0.003453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215782,0.003453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215782,0.003453,-0.003999,0.249968,0,0);}
.m11b_c00138{transform:matrix(0.216278,0.006488,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216278,0.006488,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216278,0.006488,-0.007497,0.249888,0,0);}
.mc5_c00138{transform:matrix(0.217827,0.004574,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217827,0.004574,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217827,0.004574,-0.005249,0.249945,0,0);}
.m146_c00138{transform:matrix(0.218152,0.004581,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218152,0.004581,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218152,0.004581,-0.005249,0.249945,0,0);}
.mab_c00138{transform:matrix(0.218467,0.003495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218467,0.003495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218467,0.003495,-0.003999,0.249968,0,0);}
.m139_c00138{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);}
.m13e_c00138{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);}
.m85_c00138{transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219622,0.003514,-0.003999,0.249968,0,0);}
.md9_c00138{transform:matrix(0.219632,0.004612,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219632,0.004612,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219632,0.004612,-0.005249,0.249945,0,0);}
.m14e_c00138{transform:matrix(0.219692,0.004614,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219692,0.004614,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219692,0.004614,-0.005249,0.249945,0,0);}
.mce_c00138{transform:matrix(0.220011,0.004620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220011,0.004620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220011,0.004620,-0.005249,0.249945,0,0);}
.m155_c00138{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);}
.m81_c00138{transform:matrix(0.221062,0.003537,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221062,0.003537,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221062,0.003537,-0.003999,0.249968,0,0);}
.m60_c00138{transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);}
.m11a_c00138{transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);}
.m2b_c00138{transform:matrix(0.222315,0.003335,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222315,0.003335,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222315,0.003335,-0.003750,0.249972,0,0);}
.m103_c00138{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);}
.m64_c00138{transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);}
.ma7_c00138{transform:matrix(0.223761,0.003580,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223761,0.003580,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223761,0.003580,-0.003999,0.249968,0,0);}
.m7f_c00138{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);}
.m10f_c00138{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);}
.m122_c00138{transform:matrix(0.224829,0.006745,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224829,0.006745,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224829,0.006745,-0.007497,0.249888,0,0);}
.ma9_c00138{transform:matrix(0.227331,0.003637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227331,0.003637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227331,0.003637,-0.003999,0.249968,0,0);}
.m16e_c00138{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);}
.mfa_c00138{transform:matrix(0.230059,0.004831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230059,0.004831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230059,0.004831,-0.005249,0.249945,0,0);}
.mc_c00138{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);}
.mcc_c00138{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);}
.m11d_c00138{transform:matrix(0.232171,0.006965,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232171,0.006965,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232171,0.006965,-0.007497,0.249888,0,0);}
.m117_c00138{transform:matrix(0.232930,0.006988,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232930,0.006988,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232930,0.006988,-0.007497,0.249888,0,0);}
.m18_c00138{transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);}
.m169_c00138{transform:matrix(0.234151,0.002107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234151,0.002107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234151,0.002107,-0.002250,0.249990,0,0);}
.mde_c00138{transform:matrix(0.234203,0.004918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234203,0.004918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234203,0.004918,-0.005249,0.249945,0,0);}
.m86_c00138{transform:matrix(0.234560,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234560,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234560,0.003753,-0.003999,0.249968,0,0);}
.m41_c00138{transform:matrix(0.235850,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235850,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235850,0.003774,-0.003999,0.249968,0,0);}
.m106_c00138{transform:matrix(0.236443,0.004965,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236443,0.004965,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236443,0.004965,-0.005249,0.249945,0,0);}
.m118_c00138{transform:matrix(0.237443,0.007123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237443,0.007123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237443,0.007123,-0.007497,0.249888,0,0);}
.m10c_c00138{transform:matrix(0.237543,0.007126,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237543,0.007126,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237543,0.007126,-0.007497,0.249888,0,0);}
.md5_c00138{transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);}
.m73_c00138{transform:matrix(0.240874,0.003854,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240874,0.003854,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240874,0.003854,-0.003999,0.249968,0,0);}
.mbc_c00138{transform:matrix(0.240882,0.005059,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240882,0.005059,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240882,0.005059,-0.005249,0.249945,0,0);}
.m128_c00138{transform:matrix(0.242456,0.007274,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242456,0.007274,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242456,0.007274,-0.007497,0.249888,0,0);}
.m9f_c00138{transform:matrix(0.246039,0.003937,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246039,0.003937,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246039,0.003937,-0.003999,0.249968,0,0);}
.m149_c00138{transform:matrix(0.247270,0.005193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247270,0.005193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247270,0.005193,-0.005249,0.249945,0,0);}
.m0_c00138{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);}
.m4b_c00138{transform:matrix(0.250263,0.004004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250263,0.004004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250263,0.004004,-0.003999,0.249968,0,0);}
.m75_c00138{transform:matrix(0.250828,0.004013,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250828,0.004013,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250828,0.004013,-0.003999,0.249968,0,0);}
.m6d_c00138{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);}
.m12e_c00138{transform:matrix(0.251867,0.007556,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251867,0.007556,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251867,0.007556,-0.007497,0.249888,0,0);}
.m16d_c00138{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.mb9_c00138{transform:matrix(0.254439,0.005343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254439,0.005343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254439,0.005343,-0.005249,0.249945,0,0);}
.m2d_c00138{transform:matrix(0.258456,0.003877,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258456,0.003877,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258456,0.003877,-0.003750,0.249972,0,0);}
.m11c_c00138{transform:matrix(0.259143,0.007774,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259143,0.007774,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259143,0.007774,-0.007497,0.249888,0,0);}
.m170_c00138{transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);}
.m127_c00138{transform:matrix(0.259923,0.007798,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259923,0.007798,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259923,0.007798,-0.007497,0.249888,0,0);}
.m158_c00138{transform:matrix(0.260129,0.006503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260129,0.006503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260129,0.006503,-0.006248,0.249922,0,0);}
.mc2_c00138{transform:matrix(0.260638,0.005473,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260638,0.005473,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260638,0.005473,-0.005249,0.249945,0,0);}
.m1e_c00138{transform:matrix(0.263040,0.003946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263040,0.003946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263040,0.003946,-0.003750,0.249972,0,0);}
.m159_c00138{transform:matrix(0.266622,0.006666,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266622,0.006666,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266622,0.006666,-0.006248,0.249922,0,0);}
.m2_c00138{transform:matrix(0.267065,0.004006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267065,0.004006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267065,0.004006,-0.003750,0.249972,0,0);}
.m131_c00138{transform:matrix(0.268799,0.008064,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268799,0.008064,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268799,0.008064,-0.007497,0.249888,0,0);}
.m42_c00138{transform:matrix(0.271920,0.004351,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271920,0.004351,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271920,0.004351,-0.003999,0.249968,0,0);}
.m14a_c00138{transform:matrix(0.274340,0.005761,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274340,0.005761,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274340,0.005761,-0.005249,0.249945,0,0);}
.m67_c00138{transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);}
.m104_c00138{transform:matrix(0.281693,0.005916,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281693,0.005916,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281693,0.005916,-0.005249,0.249945,0,0);}
.m116_c00138{transform:matrix(0.282468,0.008474,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282468,0.008474,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282468,0.008474,-0.007497,0.249888,0,0);}
.m7a_c00138{transform:matrix(0.299332,0.004789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299332,0.004789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299332,0.004789,-0.003999,0.249968,0,0);}
.m133_c00138{transform:matrix(0.301829,0.009055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301829,0.009055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301829,0.009055,-0.007497,0.249888,0,0);}
.m31_c00138{transform:matrix(0.303826,0.005469,-0.004499,0.249960,0,0);-ms-transform:matrix(0.303826,0.005469,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.303826,0.005469,-0.004499,0.249960,0,0);}
.m168_c00138{transform:matrix(0.305023,0.002745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305023,0.002745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305023,0.002745,-0.002250,0.249990,0,0);}
.m96_c00138{transform:matrix(0.321469,0.005144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.321469,0.005144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.321469,0.005144,-0.003999,0.249968,0,0);}
.m12d_c00138{transform:matrix(0.322640,0.009679,-0.007497,0.249888,0,0);-ms-transform:matrix(0.322640,0.009679,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.322640,0.009679,-0.007497,0.249888,0,0);}
.m65_c00138{transform:matrix(0.323009,0.005168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.323009,0.005168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.323009,0.005168,-0.003999,0.249968,0,0);}
.m5b_c00138{transform:matrix(0.323514,0.005176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.323514,0.005176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.323514,0.005176,-0.003999,0.249968,0,0);}
.m24_c00138{transform:matrix(0.323519,0.004853,-0.003750,0.249972,0,0);-ms-transform:matrix(0.323519,0.004853,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.323519,0.004853,-0.003750,0.249972,0,0);}
.m10a_c00138{transform:matrix(0.324344,0.009730,-0.007497,0.249888,0,0);-ms-transform:matrix(0.324344,0.009730,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.324344,0.009730,-0.007497,0.249888,0,0);}
.ma4_c00138{transform:matrix(0.330598,0.005290,-0.003999,0.249968,0,0);-ms-transform:matrix(0.330598,0.005290,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.330598,0.005290,-0.003999,0.249968,0,0);}
.mee_c00138{transform:matrix(0.330707,0.006945,-0.005249,0.249945,0,0);-ms-transform:matrix(0.330707,0.006945,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.330707,0.006945,-0.005249,0.249945,0,0);}
.m10b_c00138{transform:matrix(0.332161,0.009965,-0.007497,0.249888,0,0);-ms-transform:matrix(0.332161,0.009965,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.332161,0.009965,-0.007497,0.249888,0,0);}
.mcb_c00138{transform:matrix(0.341040,0.007162,-0.005249,0.249945,0,0);-ms-transform:matrix(0.341040,0.007162,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.341040,0.007162,-0.005249,0.249945,0,0);}
.mba_c00138{transform:matrix(0.342519,0.007193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.342519,0.007193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.342519,0.007193,-0.005249,0.249945,0,0);}
.m115_c00138{transform:matrix(0.349213,0.010476,-0.007497,0.249888,0,0);-ms-transform:matrix(0.349213,0.010476,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.349213,0.010476,-0.007497,0.249888,0,0);}
.m7b_c00138{transform:matrix(0.353625,0.005658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.353625,0.005658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.353625,0.005658,-0.003999,0.249968,0,0);}
.m121_c00138{transform:matrix(0.354201,0.010626,-0.007497,0.249888,0,0);-ms-transform:matrix(0.354201,0.010626,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.354201,0.010626,-0.007497,0.249888,0,0);}
.m1_c00138{transform:matrix(0.354215,0.005313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.354215,0.005313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.354215,0.005313,-0.003750,0.249972,0,0);}
.m167_c00138{transform:matrix(0.355181,0.003197,-0.002250,0.249990,0,0);-ms-transform:matrix(0.355181,0.003197,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.355181,0.003197,-0.002250,0.249990,0,0);}
.mbb_c00138{transform:matrix(0.366569,0.007698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.366569,0.007698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.366569,0.007698,-0.005249,0.249945,0,0);}
.m164_c00138{transform:matrix(0.402139,0.003619,-0.002250,0.249990,0,0);-ms-transform:matrix(0.402139,0.003619,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.402139,0.003619,-0.002250,0.249990,0,0);}
.m69_c00138{transform:matrix(0.479519,0.007672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.479519,0.007672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.479519,0.007672,-0.003999,0.249968,0,0);}
.m16f_c00138{transform:matrix(0.508350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508350,0.000000,0.000000,0.250000,0,0);}
.m16a_c00138{transform:matrix(0.521704,0.004695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.521704,0.004695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.521704,0.004695,-0.002250,0.249990,0,0);}
.m12f_c00138{transform:matrix(0.534719,0.016042,-0.007497,0.249888,0,0);-ms-transform:matrix(0.534719,0.016042,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.534719,0.016042,-0.007497,0.249888,0,0);}
.m114_c00138{transform:matrix(0.537158,0.016115,-0.007497,0.249888,0,0);-ms-transform:matrix(0.537158,0.016115,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.537158,0.016115,-0.007497,0.249888,0,0);}
.m11f_c00138{transform:matrix(0.544085,0.016323,-0.007497,0.249888,0,0);-ms-transform:matrix(0.544085,0.016323,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.544085,0.016323,-0.007497,0.249888,0,0);}
.m165_c00138{transform:matrix(0.555058,0.004996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.555058,0.004996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.555058,0.004996,-0.002250,0.249990,0,0);}
.m16c_c00138{transform:matrix(0.640320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640320,0.000000,0.000000,0.250000,0,0);}
.m16b_c00138{transform:matrix(0.780313,0.007023,-0.002250,0.249990,0,0);-ms-transform:matrix(0.780313,0.007023,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.780313,0.007023,-0.002250,0.249990,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;}
.fc0_c00138{color:transparent;}
.fs17_c00138{font-size:50.400000px;}
.fse_c00138{font-size:58.826454px;}
.fs10_c00138{font-size:63.028344px;}
.fs3_c00138{font-size:64.058198px;}
.fs8_c00138{font-size:64.064121px;}
.fsf_c00138{font-size:65.129288px;}
.fs5_c00138{font-size:66.158467px;}
.fs9_c00138{font-size:67.214816px;}
.fs7_c00138{font-size:68.258735px;}
.fs12_c00138{font-size:68.265047px;}
.fs13_c00138{font-size:68.271325px;}
.fs6_c00138{font-size:69.308870px;}
.fsa_c00138{font-size:69.315279px;}
.fsd_c00138{font-size:70.381650px;}
.fs1_c00138{font-size:71.408032px;}
.fs4_c00138{font-size:71.409139px;}
.fsc_c00138{font-size:72.465973px;}
.fs11_c00138{font-size:73.509407px;}
.fs2_c00138{font-size:76.662416px;}
.fsb_c00138{font-size:80.867825px;}
.fs0_c00138{font-size:84.000000px;}
.fs16_c00138{font-size:99.750000px;}
.fs15_c00138{font-size:128.105188px;}
.fs14_c00138{font-size:130.205273px;}
.y0_c00138{bottom:0.000000px;}
.y170_c00138{bottom:84.810000px;}
.y16f_c00138{bottom:94.197000px;}
.y135_c00138{bottom:130.890345px;}
.y134_c00138{bottom:134.052210px;}
.y133_c00138{bottom:135.134445px;}
.y132_c00138{bottom:136.619265px;}
.y131_c00138{bottom:137.530125px;}
.y130_c00138{bottom:139.027140px;}
.y12f_c00138{bottom:148.701690px;}
.y12e_c00138{bottom:149.228040px;}
.y12d_c00138{bottom:150.099315px;}
.y12c_c00138{bottom:151.226265px;}
.y12b_c00138{bottom:152.419650px;}
.y12a_c00138{bottom:153.011460px;}
.y129_c00138{bottom:153.639030px;}
.y128_c00138{bottom:156.082455px;}
.y127_c00138{bottom:157.201065px;}
.y126_c00138{bottom:158.069340px;}
.y125_c00138{bottom:158.702745px;}
.y124_c00138{bottom:159.474915px;}
.y123_c00138{bottom:159.820335px;}
.y122_c00138{bottom:160.239945px;}
.y121_c00138{bottom:160.906890px;}
.y120_c00138{bottom:171.787065px;}
.y11f_c00138{bottom:172.834305px;}
.y11e_c00138{bottom:173.695080px;}
.y11d_c00138{bottom:174.184695px;}
.y11c_c00138{bottom:174.895770px;}
.y11b_c00138{bottom:176.214180px;}
.y11a_c00138{bottom:177.496965px;}
.y119_c00138{bottom:178.928640px;}
.y118_c00138{bottom:179.302890px;}
.y117_c00138{bottom:179.890545px;}
.y116_c00138{bottom:180.353985px;}
.y115_c00138{bottom:194.284875px;}
.y114_c00138{bottom:196.520925px;}
.y113_c00138{bottom:197.668425px;}
.y112_c00138{bottom:199.287120px;}
.y111_c00138{bottom:200.817345px;}
.y110_c00138{bottom:201.443295px;}
.y10f_c00138{bottom:203.411595px;}
.y10e_c00138{bottom:204.385080px;}
.y10d_c00138{bottom:204.838455px;}
.y10c_c00138{bottom:206.562000px;}
.y165_c00138{bottom:215.818650px;}
.y164_c00138{bottom:216.689475px;}
.y163_c00138{bottom:216.949087px;}
.y162_c00138{bottom:218.966700px;}
.y161_c00138{bottom:221.012325px;}
.y160_c00138{bottom:223.023712px;}
.y15f_c00138{bottom:224.003512px;}
.y15e_c00138{bottom:224.746275px;}
.y15d_c00138{bottom:225.778200px;}
.y15c_c00138{bottom:226.177162px;}
.y15b_c00138{bottom:227.616000px;}
.y10b_c00138{bottom:238.877823px;}
.y10a_c00138{bottom:239.775989px;}
.y109_c00138{bottom:240.576932px;}
.y108_c00138{bottom:241.395459px;}
.y107_c00138{bottom:245.052746px;}
.y106_c00138{bottom:245.658374px;}
.y105_c00138{bottom:246.459317px;}
.y104_c00138{bottom:247.819919px;}
.y103_c00138{bottom:249.484941px;}
.y102_c00138{bottom:250.262327px;}
.y101_c00138{bottom:261.726213px;}
.y100_c00138{bottom:262.493543px;}
.yff_c00138{bottom:263.461877px;}
.yfe_c00138{bottom:265.287896px;}
.yfd_c00138{bottom:267.098976px;}
.yfc_c00138{bottom:267.982928px;}
.yfb_c00138{bottom:268.811492px;}
.yfa_c00138{bottom:269.702928px;}
.yf9_c00138{bottom:270.728004px;}
.yf8_c00138{bottom:273.009132px;}
.yf7_c00138{bottom:273.483420px;}
.yf6_c00138{bottom:284.849183px;}
.yf5_c00138{bottom:285.967955px;}
.yf4_c00138{bottom:286.913613px;}
.yf3_c00138{bottom:287.666054px;}
.yf2_c00138{bottom:289.267934px;}
.yf1_c00138{bottom:291.291986px;}
.yf0_c00138{bottom:291.830505px;}
.yef_c00138{bottom:293.274695px;}
.yee_c00138{bottom:293.816837px;}
.yed_c00138{bottom:294.957918px;}
.yec_c00138{bottom:295.901309px;}
.yeb_c00138{bottom:307.404126px;}
.yea_c00138{bottom:308.044641px;}
.ye9_c00138{bottom:309.068411px;}
.ye8_c00138{bottom:309.632610px;}
.ye7_c00138{bottom:312.036117px;}
.ye6_c00138{bottom:312.729618px;}
.ye5_c00138{bottom:314.168138px;}
.ye4_c00138{bottom:314.577734px;}
.ye3_c00138{bottom:315.718280px;}
.ye2_c00138{bottom:316.185177px;}
.ye1_c00138{bottom:317.183267px;}
.ye0_c00138{bottom:318.045440px;}
.ydf_c00138{bottom:340.033815px;}
.yde_c00138{bottom:340.727903px;}
.ydd_c00138{bottom:354.150777px;}
.ydc_c00138{bottom:355.397768px;}
.ydb_c00138{bottom:356.304054px;}
.yda_c00138{bottom:356.950056px;}
.yd9_c00138{bottom:357.825410px;}
.yd8_c00138{bottom:358.540145px;}
.yd7_c00138{bottom:359.198558px;}
.yd6_c00138{bottom:359.975064px;}
.yd5_c00138{bottom:361.001933px;}
.yd4_c00138{bottom:361.597377px;}
.yd3_c00138{bottom:362.873096px;}
.yd2_c00138{bottom:375.313164px;}
.yd1_c00138{bottom:376.643307px;}
.yd0_c00138{bottom:377.587865px;}
.ycf_c00138{bottom:378.265587px;}
.yce_c00138{bottom:378.979932px;}
.ycd_c00138{bottom:379.610051px;}
.ycc_c00138{bottom:381.023948px;}
.ycb_c00138{bottom:381.637182px;}
.yca_c00138{bottom:381.975404px;}
.yc9_c00138{bottom:383.455395px;}
.yc8_c00138{bottom:384.813624px;}
.yc7_c00138{bottom:385.660442px;}
.yc6_c00138{bottom:385.826607px;}
.yc5_c00138{bottom:398.851895px;}
.yc4_c00138{bottom:399.409224px;}
.yc3_c00138{bottom:400.281144px;}
.yc2_c00138{bottom:400.842600px;}
.yc1_c00138{bottom:401.526371px;}
.yc0_c00138{bottom:402.520542px;}
.ybf_c00138{bottom:402.918198px;}
.ybe_c00138{bottom:403.837967px;}
.ybd_c00138{bottom:404.279880px;}
.ybc_c00138{bottom:404.610693px;}
.ybb_c00138{bottom:405.612740px;}
.yba_c00138{bottom:406.191080px;}
.yb9_c00138{bottom:406.718516px;}
.yb8_c00138{bottom:407.926446px;}
.yb7_c00138{bottom:408.516000px;}
.y15a_c00138{bottom:422.247039px;}
.y159_c00138{bottom:422.924685px;}
.y158_c00138{bottom:423.254871px;}
.y157_c00138{bottom:423.936687px;}
.y156_c00138{bottom:424.601437px;}
.y155_c00138{bottom:425.869870px;}
.y154_c00138{bottom:426.584829px;}
.y153_c00138{bottom:427.805794px;}
.y152_c00138{bottom:428.088721px;}
.y151_c00138{bottom:428.472592px;}
.y150_c00138{bottom:429.590472px;}
.y14f_c00138{bottom:430.485693px;}
.y14e_c00138{bottom:430.917724px;}
.y14d_c00138{bottom:443.975611px;}
.y14c_c00138{bottom:445.262544px;}
.y14b_c00138{bottom:445.823874px;}
.y14a_c00138{bottom:447.145771px;}
.y149_c00138{bottom:447.759076px;}
.y148_c00138{bottom:448.274101px;}
.y147_c00138{bottom:449.573445px;}
.y146_c00138{bottom:450.253561px;}
.y145_c00138{bottom:451.030887px;}
.y144_c00138{bottom:452.306479px;}
.y143_c00138{bottom:453.604500px;}
.yb6_c00138{bottom:466.993140px;}
.yb5_c00138{bottom:468.183000px;}
.yb4_c00138{bottom:468.888456px;}
.yb3_c00138{bottom:469.718208px;}
.yb2_c00138{bottom:470.134368px;}
.yb1_c00138{bottom:470.656116px;}
.yb0_c00138{bottom:471.117984px;}
.yaf_c00138{bottom:472.275504px;}
.yae_c00138{bottom:473.215764px;}
.yad_c00138{bottom:473.587968px;}
.yac_c00138{bottom:474.049020px;}
.yab_c00138{bottom:474.873504px;}
.yaa_c00138{bottom:476.526384px;}
.ya9_c00138{bottom:489.736704px;}
.ya8_c00138{bottom:491.405292px;}
.ya7_c00138{bottom:492.169608px;}
.ya6_c00138{bottom:492.742416px;}
.ya5_c00138{bottom:494.452932px;}
.ya4_c00138{bottom:495.409548px;}
.ya3_c00138{bottom:496.960716px;}
.ya2_c00138{bottom:497.695932px;}
.ya1_c00138{bottom:498.202836px;}
.ya0_c00138{bottom:499.479684px;}
.y9f_c00138{bottom:515.771844px;}
.y9e_c00138{bottom:516.301764px;}
.y9d_c00138{bottom:517.364544px;}
.y9c_c00138{bottom:518.124888px;}
.y9b_c00138{bottom:518.960472px;}
.y9a_c00138{bottom:519.216816px;}
.y99_c00138{bottom:519.535632px;}
.y98_c00138{bottom:519.676980px;}
.y97_c00138{bottom:520.607172px;}
.y96_c00138{bottom:520.992264px;}
.y95_c00138{bottom:521.305920px;}
.y94_c00138{bottom:521.891520px;}
.y93_c00138{bottom:535.099008px;}
.y92_c00138{bottom:536.173788px;}
.y91_c00138{bottom:536.961096px;}
.y90_c00138{bottom:538.245708px;}
.y8f_c00138{bottom:538.694532px;}
.y8e_c00138{bottom:539.985228px;}
.y8d_c00138{bottom:540.973884px;}
.y8c_c00138{bottom:542.119200px;}
.y8b_c00138{bottom:542.479464px;}
.y8a_c00138{bottom:542.935500px;}
.y89_c00138{bottom:544.036920px;}
.y88_c00138{bottom:558.033024px;}
.y87_c00138{bottom:558.433008px;}
.y86_c00138{bottom:559.430868px;}
.y85_c00138{bottom:559.842216px;}
.y84_c00138{bottom:560.571036px;}
.y83_c00138{bottom:561.417528px;}
.y82_c00138{bottom:561.858216px;}
.y81_c00138{bottom:563.513496px;}
.y80_c00138{bottom:564.129468px;}
.y7f_c00138{bottom:564.930900px;}
.y7e_c00138{bottom:565.484364px;}
.y7d_c00138{bottom:565.814112px;}
.y7c_c00138{bottom:566.177448px;}
.y7b_c00138{bottom:579.438684px;}
.y7a_c00138{bottom:580.603152px;}
.y79_c00138{bottom:581.285076px;}
.y78_c00138{bottom:583.050432px;}
.y77_c00138{bottom:583.942020px;}
.y76_c00138{bottom:584.384424px;}
.y75_c00138{bottom:585.053844px;}
.y74_c00138{bottom:585.967380px;}
.y73_c00138{bottom:586.131852px;}
.y72_c00138{bottom:587.025504px;}
.y71_c00138{bottom:587.731104px;}
.y70_c00138{bottom:588.862188px;}
.y6f_c00138{bottom:602.221464px;}
.y6e_c00138{bottom:602.402412px;}
.y6d_c00138{bottom:603.657084px;}
.y6c_c00138{bottom:604.310856px;}
.y6b_c00138{bottom:604.987644px;}
.y6a_c00138{bottom:606.274344px;}
.y69_c00138{bottom:607.049712px;}
.y68_c00138{bottom:607.799628px;}
.y67_c00138{bottom:608.404380px;}
.y66_c00138{bottom:609.769932px;}
.y65_c00138{bottom:610.072692px;}
.y64_c00138{bottom:610.735596px;}
.y63_c00138{bottom:625.020084px;}
.y62_c00138{bottom:625.452804px;}
.y61_c00138{bottom:626.648688px;}
.y60_c00138{bottom:627.077184px;}
.y5f_c00138{bottom:627.727104px;}
.y5e_c00138{bottom:628.121628px;}
.y5d_c00138{bottom:628.588944px;}
.y5c_c00138{bottom:629.269512px;}
.y5b_c00138{bottom:629.672304px;}
.y5a_c00138{bottom:630.294096px;}
.y59_c00138{bottom:630.683844px;}
.y58_c00138{bottom:631.334796px;}
.y57_c00138{bottom:632.292432px;}
.y56_c00138{bottom:632.616432px;}
.y55_c00138{bottom:633.146748px;}
.y54_c00138{bottom:647.704368px;}
.y53_c00138{bottom:648.320256px;}
.y52_c00138{bottom:649.431480px;}
.y51_c00138{bottom:649.804212px;}
.y50_c00138{bottom:650.367612px;}
.y4f_c00138{bottom:651.760488px;}
.y4e_c00138{bottom:652.095372px;}
.y4d_c00138{bottom:652.449252px;}
.y4c_c00138{bottom:653.592576px;}
.y4b_c00138{bottom:654.187932px;}
.y4a_c00138{bottom:654.756540px;}
.y49_c00138{bottom:655.288944px;}
.y48_c00138{bottom:670.698912px;}
.y47_c00138{bottom:670.997496px;}
.y46_c00138{bottom:671.766768px;}
.y45_c00138{bottom:671.976912px;}
.y44_c00138{bottom:672.881256px;}
.y43_c00138{bottom:673.693248px;}
.y42_c00138{bottom:674.056080px;}
.y41_c00138{bottom:674.752752px;}
.y40_c00138{bottom:675.352536px;}
.y3f_c00138{bottom:676.372416px;}
.y3e_c00138{bottom:676.527912px;}
.y3d_c00138{bottom:677.703000px;}
.y142_c00138{bottom:693.170712px;}
.y141_c00138{bottom:693.679776px;}
.y140_c00138{bottom:694.263720px;}
.y13f_c00138{bottom:694.563936px;}
.y13e_c00138{bottom:695.503872px;}
.y13d_c00138{bottom:695.792040px;}
.y13c_c00138{bottom:696.566952px;}
.y13b_c00138{bottom:697.075344px;}
.y13a_c00138{bottom:697.585176px;}
.y139_c00138{bottom:698.412192px;}
.y138_c00138{bottom:699.272304px;}
.y137_c00138{bottom:699.871800px;}
.y136_c00138{bottom:700.113000px;}
.y3c_c00138{bottom:718.468668px;}
.y3b_c00138{bottom:718.935336px;}
.y3a_c00138{bottom:719.654400px;}
.y39_c00138{bottom:720.092178px;}
.y38_c00138{bottom:721.087452px;}
.y37_c00138{bottom:721.380132px;}
.y36_c00138{bottom:721.993086px;}
.y35_c00138{bottom:722.457999px;}
.y34_c00138{bottom:722.953476px;}
.y33_c00138{bottom:723.334500px;}
.y32_c00138{bottom:738.234105px;}
.y31_c00138{bottom:738.644700px;}
.y30_c00138{bottom:739.338607px;}
.y2f_c00138{bottom:739.705410px;}
.y2e_c00138{bottom:740.620485px;}
.y2d_c00138{bottom:741.067297px;}
.y2c_c00138{bottom:741.708307px;}
.y2b_c00138{bottom:742.320450px;}
.y2a_c00138{bottom:743.031307px;}
.y29_c00138{bottom:743.471040px;}
.y28_c00138{bottom:744.517095px;}
.y27_c00138{bottom:744.822030px;}
.y26_c00138{bottom:745.208032px;}
.y25_c00138{bottom:746.006790px;}
.y24_c00138{bottom:761.800290px;}
.y23_c00138{bottom:762.535402px;}
.y22_c00138{bottom:762.937687px;}
.y21_c00138{bottom:763.615717px;}
.y20_c00138{bottom:764.061255px;}
.y1f_c00138{bottom:764.648122px;}
.y1e_c00138{bottom:765.213885px;}
.y1d_c00138{bottom:766.291140px;}
.y1c_c00138{bottom:766.873485px;}
.y1b_c00138{bottom:767.755522px;}
.y1a_c00138{bottom:768.220658px;}
.y19_c00138{bottom:768.687547px;}
.y18_c00138{bottom:783.152168px;}
.y17_c00138{bottom:784.646415px;}
.y16_c00138{bottom:785.370825px;}
.y15_c00138{bottom:786.304897px;}
.y14_c00138{bottom:786.606037px;}
.y13_c00138{bottom:787.868647px;}
.y12_c00138{bottom:789.320190px;}
.y11_c00138{bottom:790.151430px;}
.y10_c00138{bottom:791.372190px;}
.yf_c00138{bottom:806.293335px;}
.ye_c00138{bottom:806.585137px;}
.yd_c00138{bottom:806.990340px;}
.yc_c00138{bottom:807.913583px;}
.yb_c00138{bottom:808.473157px;}
.ya_c00138{bottom:808.954927px;}
.y9_c00138{bottom:809.845770px;}
.y8_c00138{bottom:810.263122px;}
.y7_c00138{bottom:810.664027px;}
.y6_c00138{bottom:811.104758px;}
.y5_c00138{bottom:811.404187px;}
.y4_c00138{bottom:811.883550px;}
.y3_c00138{bottom:812.276715px;}
.y2_c00138{bottom:812.973000px;}
.y1_c00138{bottom:856.021500px;}
.y16e_c00138{bottom:898.515737px;}
.y16d_c00138{bottom:900.328599px;}
.y16c_c00138{bottom:901.241385px;}
.y16b_c00138{bottom:902.465799px;}
.y16a_c00138{bottom:905.318507px;}
.y169_c00138{bottom:915.346590px;}
.y168_c00138{bottom:916.571459px;}
.y167_c00138{bottom:917.788767px;}
.y166_c00138{bottom:919.081500px;}
.h19_c00138{height:50.400000px;}
.h10_c00138{height:58.826454px;}
.h12_c00138{height:63.028344px;}
.h5_c00138{height:64.058198px;}
.ha_c00138{height:64.064121px;}
.h11_c00138{height:65.129288px;}
.h7_c00138{height:66.158467px;}
.hb_c00138{height:67.214816px;}
.h9_c00138{height:68.258735px;}
.h14_c00138{height:68.265047px;}
.h15_c00138{height:68.271325px;}
.h8_c00138{height:69.308870px;}
.hc_c00138{height:69.315279px;}
.hf_c00138{height:70.381650px;}
.h3_c00138{height:71.408032px;}
.h6_c00138{height:71.409139px;}
.he_c00138{height:72.465973px;}
.h13_c00138{height:73.509407px;}
.h4_c00138{height:76.662416px;}
.hd_c00138{height:80.867825px;}
.h2_c00138{height:84.000000px;}
.h18_c00138{height:99.750000px;}
.h17_c00138{height:128.105188px;}
.h16_c00138{height:130.205273px;}
.h1_c00138{height:1005.000000px;}
.h0_c00138{height:1005.150000px;}
.w0_c00138{width:705.450000px;}
.w1_c00138{width:705.750000px;}
.x0_c00138{left:0.000000px;}
.xbe_c00138{left:35.000415px;}
.xb5_c00138{left:42.638085px;}
.xcd_c00138{left:47.121000px;}
.xb6_c00138{left:70.424580px;}
.xca_c00138{left:73.926000px;}
.x8c_c00138{left:79.594113px;}
.xb1_c00138{left:81.519435px;}
.x8d_c00138{left:87.149456px;}
.xa1_c00138{left:89.987527px;}
.x77_c00138{left:91.795980px;}
.x67_c00138{left:93.463140px;}
.x45_c00138{left:95.118456px;}
.x5c_c00138{left:96.410052px;}
.x18_c00138{left:97.529580px;}
.x30_c00138{left:99.382500px;}
.x2_c00138{left:101.031000px;}
.xb7_c00138{left:102.281295px;}
.xa2_c00138{left:108.213606px;}
.x5d_c00138{left:115.555140px;}
.xc2_c00138{left:117.489575px;}
.xa9_c00138{left:118.995568px;}
.x31_c00138{left:120.550500px;}
.x46_c00138{left:124.606020px;}
.x8e_c00138{left:125.616136px;}
.x19_c00138{left:126.755153px;}
.x3e_c00138{left:129.173340px;}
.x9b_c00138{left:130.218027px;}
.x50_c00138{left:132.324888px;}
.xb8_c00138{left:134.426055px;}
.x70_c00138{left:136.985676px;}
.xb2_c00138{left:139.876905px;}
.x47_c00138{left:142.605444px;}
.x24_c00138{left:144.489030px;}
.x3_c00138{left:147.450000px;}
.x68_c00138{left:148.517112px;}
.x78_c00138{left:149.843412px;}
.x56_c00138{left:151.790496px;}
.x1a_c00138{left:155.863725px;}
.x71_c00138{left:159.402396px;}
.xb3_c00138{left:160.659375px;}
.x3f_c00138{left:162.648312px;}
.x10_c00138{left:165.041153px;}
.xc3_c00138{left:167.193693px;}
.x35_c00138{left:171.790500px;}
.x4_c00138{left:173.661000px;}
.x82_c00138{left:177.937500px;}
.x99_c00138{left:179.006109px;}
.x94_c00138{left:180.101829px;}
.x36_c00138{left:181.509000px;}
.x25_c00138{left:182.849798px;}
.x57_c00138{left:187.075740px;}
.x69_c00138{left:189.314496px;}
.xad_c00138{left:191.572500px;}
.x48_c00138{left:195.799740px;}
.x40_c00138{left:197.701260px;}
.x9c_c00138{left:200.367117px;}
.x83_c00138{left:203.053500px;}
.x5e_c00138{left:204.247392px;}
.x5_c00138{left:205.618500px;}
.x11_c00138{left:208.754520px;}
.x1b_c00138{left:210.965393px;}
.xbf_c00138{left:211.999395px;}
.xc1_c00138{left:216.550500px;}
.xcb_c00138{left:218.425500px;}
.x51_c00138{left:220.090164px;}
.x32_c00138{left:224.218500px;}
.x6_c00138{left:225.580500px;}
.x95_c00138{left:229.000329px;}
.x84_c00138{left:230.593500px;}
.x49_c00138{left:231.983088px;}
.x7f_c00138{left:233.931696px;}
.xa3_c00138{left:235.424281px;}
.x5f_c00138{left:236.650332px;}
.x26_c00138{left:240.984188px;}
.xb9_c00138{left:243.588675px;}
.x37_c00138{left:245.251500px;}
.x1c_c00138{left:247.387853px;}
.xc4_c00138{left:250.639454px;}
.x52_c00138{left:251.885628px;}
.x4a_c00138{left:253.622892px;}
.x7_c00138{left:254.962500px;}
.xae_c00138{left:257.182500px;}
.x9d_c00138{left:260.562837px;}
.x72_c00138{left:263.382708px;}
.x27_c00138{left:265.398585px;}
.x8f_c00138{left:270.015112px;}
.xce_c00138{left:272.713723px;}
.x79_c00138{left:276.786720px;}
.x85_c00138{left:278.310000px;}
.x33_c00138{left:279.511500px;}
.x8_c00138{left:281.689500px;}
.x38_c00138{left:282.738000px;}
.x12_c00138{left:285.119430px;}
.x73_c00138{left:286.121928px;}
.x4b_c00138{left:288.171288px;}
.xaa_c00138{left:289.463176px;}
.x53_c00138{left:291.347232px;}
.xc0_c00138{left:292.846500px;}
.x86_c00138{left:294.063000px;}
.x6a_c00138{left:295.962156px;}
.x90_c00138{left:297.859014px;}
.xa4_c00138{left:301.607851px;}
.x1_c00138{left:303.750000px;}
.x28_c00138{left:304.887308px;}
.x9_c00138{left:309.513000px;}
.x4c_c00138{left:310.532568px;}
.x1d_c00138{left:314.703840px;}
.x58_c00138{left:319.134792px;}
.x7a_c00138{left:320.258544px;}
.x60_c00138{left:323.788656px;}
.x39_c00138{left:326.280000px;}
.xaf_c00138{left:329.055000px;}
.x54_c00138{left:332.118264px;}
.xc5_c00138{left:334.187214px;}
.xa5_c00138{left:335.625792px;}
.x29_c00138{left:338.895278px;}
.x59_c00138{left:341.252376px;}
.x34_c00138{left:343.780500px;}
.xba_c00138{left:345.404490px;}
.x61_c00138{left:347.018052px;}
.x3a_c00138{left:348.957000px;}
.x1e_c00138{left:350.020800px;}
.x13_c00138{left:351.589448px;}
.x87_c00138{left:358.905000px;}
.x6b_c00138{left:360.501528px;}
.x91_c00138{left:362.114659px;}
.x74_c00138{left:364.119924px;}
.x14_c00138{left:367.464502px;}
.xa_c00138{left:368.902500px;}
.xbb_c00138{left:371.578215px;}
.x96_c00138{left:373.048329px;}
.x2a_c00138{left:374.527680px;}
.x88_c00138{left:377.841000px;}
.x6c_c00138{left:382.926588px;}
.xb4_c00138{left:384.668925px;}
.x1f_c00138{left:386.744760px;}
.x62_c00138{left:391.577916px;}
.x4d_c00138{left:396.242832px;}
.x7b_c00138{left:398.002080px;}
.x2b_c00138{left:399.314055px;}
.xb_c00138{left:401.020500px;}
.x97_c00138{left:403.810329px;}
.xa6_c00138{left:405.288984px;}
.x20_c00138{left:414.546832px;}
.x15_c00138{left:416.633055px;}
.x75_c00138{left:418.393152px;}
.x41_c00138{left:420.501684px;}
.x7c_c00138{left:424.050084px;}
.x89_c00138{left:425.182500px;}
.x63_c00138{left:429.908568px;}
.x4e_c00138{left:432.361680px;}
.x9e_c00138{left:434.073406px;}
.x55_c00138{left:435.518820px;}
.xc_c00138{left:438.325500px;}
.x42_c00138{left:442.390824px;}
.xc6_c00138{left:444.355644px;}
.xbc_c00138{left:445.948080px;}
.x6d_c00138{left:447.179484px;}
.xd1_c00138{left:449.010000px;}
.x2c_c00138{left:450.116760px;}
.x64_c00138{left:451.585536px;}
.x16_c00138{left:454.724760px;}
.x21_c00138{left:456.948202px;}
.x7d_c00138{left:458.785248px;}
.xab_c00138{left:461.579095px;}
.x9f_c00138{left:465.401922px;}
.x3b_c00138{left:469.362000px;}
.x2d_c00138{left:470.469338px;}
.x5a_c00138{left:474.115380px;}
.x9a_c00138{left:475.523929px;}
.xcf_c00138{left:477.630000px;}
.x22_c00138{left:482.066820px;}
.x8a_c00138{left:484.479000px;}
.x6e_c00138{left:486.539964px;}
.x80_c00138{left:491.284104px;}
.xac_c00138{left:492.358851px;}
.x76_c00138{left:494.288076px;}
.xb0_c00138{left:495.796500px;}
.x92_c00138{left:496.885293px;}
.xd_c00138{left:499.875000px;}
.x65_c00138{left:504.105516px;}
.x98_c00138{left:506.347329px;}
.x43_c00138{left:507.716268px;}
.x2e_c00138{left:509.028105px;}
.xcc_c00138{left:510.987000px;}
.xa7_c00138{left:512.770707px;}
.x3c_c00138{left:517.441500px;}
.xc7_c00138{left:519.196869px;}
.x4f_c00138{left:522.538776px;}
.x66_c00138{left:525.166008px;}
.xe_c00138{left:526.888500px;}
.x23_c00138{left:527.973623px;}
.xbd_c00138{left:529.220565px;}
.x2f_c00138{left:531.800070px;}
.x17_c00138{left:533.336535px;}
.x7e_c00138{left:534.658476px;}
.x3d_c00138{left:536.103000px;}
.xc8_c00138{left:537.564035px;}
.x6f_c00138{left:540.304032px;}
.xa8_c00138{left:542.307120px;}
.x44_c00138{left:543.958692px;}
.xf_c00138{left:546.342000px;}
.x81_c00138{left:547.927068px;}
.xa0_c00138{left:551.417004px;}
.x8b_c00138{left:552.538500px;}
.x93_c00138{left:557.367033px;}
.x5b_c00138{left:566.446476px;}
.xd0_c00138{left:569.700000px;}
.xd2_c00138{left:573.480000px;}
.xc9_c00138{left:575.192397px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
.fs17_c00138{font-size:44.800000pt;}
.fse_c00138{font-size:52.290181pt;}
.fs10_c00138{font-size:56.025194pt;}
.fs3_c00138{font-size:56.940620pt;}
.fs8_c00138{font-size:56.945886pt;}
.fsf_c00138{font-size:57.892701pt;}
.fs5_c00138{font-size:58.807526pt;}
.fs9_c00138{font-size:59.746503pt;}
.fs7_c00138{font-size:60.674432pt;}
.fs12_c00138{font-size:60.680042pt;}
.fs13_c00138{font-size:60.685622pt;}
.fs6_c00138{font-size:61.607884pt;}
.fsa_c00138{font-size:61.613581pt;}
.fsd_c00138{font-size:62.561467pt;}
.fs1_c00138{font-size:63.473806pt;}
.fs4_c00138{font-size:63.474790pt;}
.fsc_c00138{font-size:64.414199pt;}
.fs11_c00138{font-size:65.341695pt;}
.fs2_c00138{font-size:68.144370pt;}
.fsb_c00138{font-size:71.882512pt;}
.fs0_c00138{font-size:74.666667pt;}
.fs16_c00138{font-size:88.666667pt;}
.fs15_c00138{font-size:113.871278pt;}
.fs14_c00138{font-size:115.738020pt;}
.y0_c00138{bottom:0.000000pt;}
.y170_c00138{bottom:75.386667pt;}
.y16f_c00138{bottom:83.730667pt;}
.y135_c00138{bottom:116.346973pt;}
.y134_c00138{bottom:119.157520pt;}
.y133_c00138{bottom:120.119507pt;}
.y132_c00138{bottom:121.439347pt;}
.y131_c00138{bottom:122.249000pt;}
.y130_c00138{bottom:123.579680pt;}
.y12f_c00138{bottom:132.179280pt;}
.y12e_c00138{bottom:132.647147pt;}
.y12d_c00138{bottom:133.421613pt;}
.y12c_c00138{bottom:134.423347pt;}
.y12b_c00138{bottom:135.484133pt;}
.y12a_c00138{bottom:136.010187pt;}
.y129_c00138{bottom:136.568027pt;}
.y128_c00138{bottom:138.739960pt;}
.y127_c00138{bottom:139.734280pt;}
.y126_c00138{bottom:140.506080pt;}
.y125_c00138{bottom:141.069107pt;}
.y124_c00138{bottom:141.755480pt;}
.y123_c00138{bottom:142.062520pt;}
.y122_c00138{bottom:142.435507pt;}
.y121_c00138{bottom:143.028347pt;}
.y120_c00138{bottom:152.699613pt;}
.y11f_c00138{bottom:153.630493pt;}
.y11e_c00138{bottom:154.395627pt;}
.y11d_c00138{bottom:154.830840pt;}
.y11c_c00138{bottom:155.462907pt;}
.y11b_c00138{bottom:156.634827pt;}
.y11a_c00138{bottom:157.775080pt;}
.y119_c00138{bottom:159.047680pt;}
.y118_c00138{bottom:159.380347pt;}
.y117_c00138{bottom:159.902707pt;}
.y116_c00138{bottom:160.314653pt;}
.y115_c00138{bottom:172.697667pt;}
.y114_c00138{bottom:174.685267pt;}
.y113_c00138{bottom:175.705267pt;}
.y112_c00138{bottom:177.144107pt;}
.y111_c00138{bottom:178.504307pt;}
.y110_c00138{bottom:179.060707pt;}
.y10f_c00138{bottom:180.810307pt;}
.y10e_c00138{bottom:181.675627pt;}
.y10d_c00138{bottom:182.078627pt;}
.y10c_c00138{bottom:183.610667pt;}
.y165_c00138{bottom:191.838800pt;}
.y164_c00138{bottom:192.612867pt;}
.y163_c00138{bottom:192.843633pt;}
.y162_c00138{bottom:194.637067pt;}
.y161_c00138{bottom:196.455400pt;}
.y160_c00138{bottom:198.243300pt;}
.y15f_c00138{bottom:199.114233pt;}
.y15e_c00138{bottom:199.774467pt;}
.y15d_c00138{bottom:200.691733pt;}
.y15c_c00138{bottom:201.046367pt;}
.y15b_c00138{bottom:202.325333pt;}
.y10b_c00138{bottom:212.335843pt;}
.y10a_c00138{bottom:213.134212pt;}
.y109_c00138{bottom:213.846161pt;}
.y108_c00138{bottom:214.573741pt;}
.y107_c00138{bottom:217.824663pt;}
.y106_c00138{bottom:218.362999pt;}
.y105_c00138{bottom:219.074948pt;}
.y104_c00138{bottom:220.284372pt;}
.y103_c00138{bottom:221.764392pt;}
.y102_c00138{bottom:222.455401pt;}
.y101_c00138{bottom:232.645523pt;}
.y100_c00138{bottom:233.327593pt;}
.yff_c00138{bottom:234.188335pt;}
.yfe_c00138{bottom:235.811463pt;}
.yfd_c00138{bottom:237.421312pt;}
.yfc_c00138{bottom:238.207047pt;}
.yfb_c00138{bottom:238.943548pt;}
.yfa_c00138{bottom:239.735936pt;}
.yf9_c00138{bottom:240.647115pt;}
.yf8_c00138{bottom:242.674784pt;}
.yf7_c00138{bottom:243.096373pt;}
.yf6_c00138{bottom:253.199273pt;}
.yf5_c00138{bottom:254.193737pt;}
.yf4_c00138{bottom:255.034323pt;}
.yf3_c00138{bottom:255.703159pt;}
.yf2_c00138{bottom:257.127052pt;}
.yf1_c00138{bottom:258.926209pt;}
.yf0_c00138{bottom:259.404893pt;}
.yef_c00138{bottom:260.688617pt;}
.yee_c00138{bottom:261.170521pt;}
.yed_c00138{bottom:262.184816pt;}
.yec_c00138{bottom:263.023385pt;}
.yeb_c00138{bottom:273.248112pt;}
.yea_c00138{bottom:273.817459pt;}
.ye9_c00138{bottom:274.727476pt;}
.ye8_c00138{bottom:275.228987pt;}
.ye7_c00138{bottom:277.365437pt;}
.ye6_c00138{bottom:277.981883pt;}
.ye5_c00138{bottom:279.260567pt;}
.ye4_c00138{bottom:279.624652pt;}
.ye3_c00138{bottom:280.638471pt;}
.ye2_c00138{bottom:281.053491pt;}
.ye1_c00138{bottom:281.940681pt;}
.ye0_c00138{bottom:282.707057pt;}
.ydf_c00138{bottom:302.252280pt;}
.yde_c00138{bottom:302.869247pt;}
.ydd_c00138{bottom:314.800691pt;}
.ydc_c00138{bottom:315.909127pt;}
.ydb_c00138{bottom:316.714715pt;}
.yda_c00138{bottom:317.288939pt;}
.yd9_c00138{bottom:318.067031pt;}
.yd8_c00138{bottom:318.702351pt;}
.yd7_c00138{bottom:319.287607pt;}
.yd6_c00138{bottom:319.977835pt;}
.yd5_c00138{bottom:320.890607pt;}
.yd4_c00138{bottom:321.419891pt;}
.yd3_c00138{bottom:322.553863pt;}
.yd2_c00138{bottom:333.611701pt;}
.yd1_c00138{bottom:334.794051pt;}
.yd0_c00138{bottom:335.633657pt;}
.ycf_c00138{bottom:336.236077pt;}
.yce_c00138{bottom:336.871051pt;}
.ycd_c00138{bottom:337.431156pt;}
.ycc_c00138{bottom:338.687953pt;}
.ycb_c00138{bottom:339.233051pt;}
.yca_c00138{bottom:339.533692pt;}
.yc9_c00138{bottom:340.849240pt;}
.yc8_c00138{bottom:342.056555pt;}
.yc7_c00138{bottom:342.809281pt;}
.yc6_c00138{bottom:342.956984pt;}
.yc5_c00138{bottom:354.535017pt;}
.yc4_c00138{bottom:355.030421pt;}
.yc3_c00138{bottom:355.805461pt;}
.yc2_c00138{bottom:356.304533pt;}
.yc1_c00138{bottom:356.912329pt;}
.yc0_c00138{bottom:357.796037pt;}
.ybf_c00138{bottom:358.149509pt;}
.ybe_c00138{bottom:358.967081pt;}
.ybd_c00138{bottom:359.359893pt;}
.ybc_c00138{bottom:359.653949pt;}
.ybb_c00138{bottom:360.544657pt;}
.yba_c00138{bottom:361.058737pt;}
.yb9_c00138{bottom:361.527569pt;}
.yb8_c00138{bottom:362.601285pt;}
.yb7_c00138{bottom:363.125333pt;}
.y15a_c00138{bottom:375.330701pt;}
.y159_c00138{bottom:375.933053pt;}
.y158_c00138{bottom:376.226552pt;}
.y157_c00138{bottom:376.832611pt;}
.y156_c00138{bottom:377.423500pt;}
.y155_c00138{bottom:378.550996pt;}
.y154_c00138{bottom:379.186515pt;}
.y153_c00138{bottom:380.271817pt;}
.y152_c00138{bottom:380.523308pt;}
.y151_c00138{bottom:380.864527pt;}
.y150_c00138{bottom:381.858197pt;}
.y14f_c00138{bottom:382.653949pt;}
.y14e_c00138{bottom:383.037977pt;}
.y14d_c00138{bottom:394.644988pt;}
.y14c_c00138{bottom:395.788928pt;}
.y14b_c00138{bottom:396.287888pt;}
.y14a_c00138{bottom:397.462908pt;}
.y149_c00138{bottom:398.008068pt;}
.y148_c00138{bottom:398.465868pt;}
.y147_c00138{bottom:399.620840pt;}
.y146_c00138{bottom:400.225388pt;}
.y145_c00138{bottom:400.916344pt;}
.y144_c00138{bottom:402.050204pt;}
.y143_c00138{bottom:403.204000pt;}
.yb6_c00138{bottom:415.105013pt;}
.yb5_c00138{bottom:416.162667pt;}
.yb4_c00138{bottom:416.789739pt;}
.yb3_c00138{bottom:417.527296pt;}
.yb2_c00138{bottom:417.897216pt;}
.yb1_c00138{bottom:418.360992pt;}
.yb0_c00138{bottom:418.771541pt;}
.yaf_c00138{bottom:419.800448pt;}
.yae_c00138{bottom:420.636235pt;}
.yad_c00138{bottom:420.967083pt;}
.yac_c00138{bottom:421.376907pt;}
.yab_c00138{bottom:422.109781pt;}
.yaa_c00138{bottom:423.579008pt;}
.ya9_c00138{bottom:435.321515pt;}
.ya8_c00138{bottom:436.804704pt;}
.ya7_c00138{bottom:437.484096pt;}
.ya6_c00138{bottom:437.993259pt;}
.ya5_c00138{bottom:439.513717pt;}
.ya4_c00138{bottom:440.364043pt;}
.ya3_c00138{bottom:441.742859pt;}
.ya2_c00138{bottom:442.396384pt;}
.ya1_c00138{bottom:442.846965pt;}
.ya0_c00138{bottom:443.981941pt;}
.y9f_c00138{bottom:458.463861pt;}
.y9e_c00138{bottom:458.934901pt;}
.y9d_c00138{bottom:459.879595pt;}
.y9c_c00138{bottom:460.555456pt;}
.y9b_c00138{bottom:461.298197pt;}
.y9a_c00138{bottom:461.526059pt;}
.y99_c00138{bottom:461.809451pt;}
.y98_c00138{bottom:461.935093pt;}
.y97_c00138{bottom:462.761931pt;}
.y96_c00138{bottom:463.104235pt;}
.y95_c00138{bottom:463.383040pt;}
.y94_c00138{bottom:463.903573pt;}
.y93_c00138{bottom:475.643563pt;}
.y92_c00138{bottom:476.598923pt;}
.y91_c00138{bottom:477.298752pt;}
.y90_c00138{bottom:478.440629pt;}
.y8f_c00138{bottom:478.839584pt;}
.y8e_c00138{bottom:479.986869pt;}
.y8d_c00138{bottom:480.865675pt;}
.y8c_c00138{bottom:481.883733pt;}
.y8b_c00138{bottom:482.203968pt;}
.y8a_c00138{bottom:482.609333pt;}
.y89_c00138{bottom:483.588373pt;}
.y88_c00138{bottom:496.029355pt;}
.y87_c00138{bottom:496.384896pt;}
.y86_c00138{bottom:497.271883pt;}
.y85_c00138{bottom:497.637525pt;}
.y84_c00138{bottom:498.285365pt;}
.y83_c00138{bottom:499.037803pt;}
.y82_c00138{bottom:499.429525pt;}
.y81_c00138{bottom:500.900885pt;}
.y80_c00138{bottom:501.448416pt;}
.y7f_c00138{bottom:502.160800pt;}
.y7e_c00138{bottom:502.652768pt;}
.y7d_c00138{bottom:502.945877pt;}
.y7c_c00138{bottom:503.268843pt;}
.y7b_c00138{bottom:515.056608pt;}
.y7a_c00138{bottom:516.091691pt;}
.y79_c00138{bottom:516.697845pt;}
.y78_c00138{bottom:518.267051pt;}
.y77_c00138{bottom:519.059573pt;}
.y76_c00138{bottom:519.452821pt;}
.y75_c00138{bottom:520.047861pt;}
.y74_c00138{bottom:520.859893pt;}
.y73_c00138{bottom:521.006091pt;}
.y72_c00138{bottom:521.800448pt;}
.y71_c00138{bottom:522.427648pt;}
.y70_c00138{bottom:523.433056pt;}
.y6f_c00138{bottom:535.307968pt;}
.y6e_c00138{bottom:535.468811pt;}
.y6d_c00138{bottom:536.584075pt;}
.y6c_c00138{bottom:537.165205pt;}
.y6b_c00138{bottom:537.766795pt;}
.y6a_c00138{bottom:538.910528pt;}
.y69_c00138{bottom:539.599744pt;}
.y68_c00138{bottom:540.266336pt;}
.y67_c00138{bottom:540.803893pt;}
.y66_c00138{bottom:542.017717pt;}
.y65_c00138{bottom:542.286837pt;}
.y64_c00138{bottom:542.876085pt;}
.y63_c00138{bottom:555.573408pt;}
.y62_c00138{bottom:555.958048pt;}
.y61_c00138{bottom:557.021056pt;}
.y60_c00138{bottom:557.401941pt;}
.y5f_c00138{bottom:557.979648pt;}
.y5e_c00138{bottom:558.330336pt;}
.y5d_c00138{bottom:558.745728pt;}
.y5c_c00138{bottom:559.350677pt;}
.y5b_c00138{bottom:559.708715pt;}
.y5a_c00138{bottom:560.261419pt;}
.y59_c00138{bottom:560.607861pt;}
.y58_c00138{bottom:561.186485pt;}
.y57_c00138{bottom:562.037717pt;}
.y56_c00138{bottom:562.325717pt;}
.y55_c00138{bottom:562.797109pt;}
.y54_c00138{bottom:575.737216pt;}
.y53_c00138{bottom:576.284672pt;}
.y52_c00138{bottom:577.272427pt;}
.y51_c00138{bottom:577.603744pt;}
.y50_c00138{bottom:578.104544pt;}
.y4f_c00138{bottom:579.342656pt;}
.y4e_c00138{bottom:579.640331pt;}
.y4d_c00138{bottom:579.954891pt;}
.y4c_c00138{bottom:580.971179pt;}
.y4b_c00138{bottom:581.500384pt;}
.y4a_c00138{bottom:582.005813pt;}
.y49_c00138{bottom:582.479061pt;}
.y48_c00138{bottom:596.176811pt;}
.y47_c00138{bottom:596.442219pt;}
.y46_c00138{bottom:597.126016pt;}
.y45_c00138{bottom:597.312811pt;}
.y44_c00138{bottom:598.116672pt;}
.y43_c00138{bottom:598.838443pt;}
.y42_c00138{bottom:599.160960pt;}
.y41_c00138{bottom:599.780224pt;}
.y40_c00138{bottom:600.313365pt;}
.y3f_c00138{bottom:601.219925pt;}
.y3e_c00138{bottom:601.358144pt;}
.y3d_c00138{bottom:602.402667pt;}
.y142_c00138{bottom:616.151744pt;}
.y141_c00138{bottom:616.604245pt;}
.y140_c00138{bottom:617.123307pt;}
.y13f_c00138{bottom:617.390165pt;}
.y13e_c00138{bottom:618.225664pt;}
.y13d_c00138{bottom:618.481813pt;}
.y13c_c00138{bottom:619.170624pt;}
.y13b_c00138{bottom:619.622528pt;}
.y13a_c00138{bottom:620.075712pt;}
.y139_c00138{bottom:620.810837pt;}
.y138_c00138{bottom:621.575381pt;}
.y137_c00138{bottom:622.108267pt;}
.y136_c00138{bottom:622.322667pt;}
.y3c_c00138{bottom:638.638816pt;}
.y3b_c00138{bottom:639.053632pt;}
.y3a_c00138{bottom:639.692800pt;}
.y39_c00138{bottom:640.081936pt;}
.y38_c00138{bottom:640.966624pt;}
.y37_c00138{bottom:641.226784pt;}
.y36_c00138{bottom:641.771632pt;}
.y35_c00138{bottom:642.184888pt;}
.y34_c00138{bottom:642.625312pt;}
.y33_c00138{bottom:642.964000pt;}
.y32_c00138{bottom:656.208093pt;}
.y31_c00138{bottom:656.573067pt;}
.y30_c00138{bottom:657.189873pt;}
.y2f_c00138{bottom:657.515920pt;}
.y2e_c00138{bottom:658.329320pt;}
.y2d_c00138{bottom:658.726487pt;}
.y2c_c00138{bottom:659.296273pt;}
.y2b_c00138{bottom:659.840400pt;}
.y2a_c00138{bottom:660.472273pt;}
.y29_c00138{bottom:660.863147pt;}
.y28_c00138{bottom:661.792973pt;}
.y27_c00138{bottom:662.064027pt;}
.y26_c00138{bottom:662.407140pt;}
.y25_c00138{bottom:663.117147pt;}
.y24_c00138{bottom:677.155813pt;}
.y23_c00138{bottom:677.809247pt;}
.y22_c00138{bottom:678.166833pt;}
.y21_c00138{bottom:678.769527pt;}
.y20_c00138{bottom:679.165560pt;}
.y1f_c00138{bottom:679.687220pt;}
.y1e_c00138{bottom:680.190120pt;}
.y1d_c00138{bottom:681.147680pt;}
.y1c_c00138{bottom:681.665320pt;}
.y1b_c00138{bottom:682.449353pt;}
.y1a_c00138{bottom:682.862807pt;}
.y19_c00138{bottom:683.277820pt;}
.y18_c00138{bottom:696.135260pt;}
.y17_c00138{bottom:697.463480pt;}
.y16_c00138{bottom:698.107400pt;}
.y15_c00138{bottom:698.937687pt;}
.y14_c00138{bottom:699.205367pt;}
.y13_c00138{bottom:700.327687pt;}
.y12_c00138{bottom:701.617947pt;}
.y11_c00138{bottom:702.356827pt;}
.y10_c00138{bottom:703.441947pt;}
.yf_c00138{bottom:716.705187pt;}
.ye_c00138{bottom:716.964567pt;}
.yd_c00138{bottom:717.324747pt;}
.yc_c00138{bottom:718.145407pt;}
.yb_c00138{bottom:718.642807pt;}
.ya_c00138{bottom:719.071047pt;}
.y9_c00138{bottom:719.862907pt;}
.y8_c00138{bottom:720.233887pt;}
.y7_c00138{bottom:720.590247pt;}
.y6_c00138{bottom:720.982007pt;}
.y5_c00138{bottom:721.248167pt;}
.y4_c00138{bottom:721.674267pt;}
.y3_c00138{bottom:722.023747pt;}
.y2_c00138{bottom:722.642667pt;}
.y1_c00138{bottom:760.908000pt;}
.y16e_c00138{bottom:798.680655pt;}
.y16d_c00138{bottom:800.292088pt;}
.y16c_c00138{bottom:801.103453pt;}
.y16b_c00138{bottom:802.191821pt;}
.y16a_c00138{bottom:804.727561pt;}
.y169_c00138{bottom:813.641413pt;}
.y168_c00138{bottom:814.730185pt;}
.y167_c00138{bottom:815.812237pt;}
.y166_c00138{bottom:816.961333pt;}
.h19_c00138{height:44.800000pt;}
.h10_c00138{height:52.290181pt;}
.h12_c00138{height:56.025194pt;}
.h5_c00138{height:56.940620pt;}
.ha_c00138{height:56.945886pt;}
.h11_c00138{height:57.892701pt;}
.h7_c00138{height:58.807526pt;}
.hb_c00138{height:59.746503pt;}
.h9_c00138{height:60.674432pt;}
.h14_c00138{height:60.680042pt;}
.h15_c00138{height:60.685622pt;}
.h8_c00138{height:61.607884pt;}
.hc_c00138{height:61.613581pt;}
.hf_c00138{height:62.561467pt;}
.h3_c00138{height:63.473806pt;}
.h6_c00138{height:63.474790pt;}
.he_c00138{height:64.414199pt;}
.h13_c00138{height:65.341695pt;}
.h4_c00138{height:68.144370pt;}
.hd_c00138{height:71.882512pt;}
.h2_c00138{height:74.666667pt;}
.h18_c00138{height:88.666667pt;}
.h17_c00138{height:113.871278pt;}
.h16_c00138{height:115.738020pt;}
.h1_c00138{height:893.333333pt;}
.h0_c00138{height:893.466667pt;}
.w0_c00138{width:627.066667pt;}
.w1_c00138{width:627.333333pt;}
.x0_c00138{left:0.000000pt;}
.xbe_c00138{left:31.111480pt;}
.xb5_c00138{left:37.900520pt;}
.xcd_c00138{left:41.885333pt;}
.xb6_c00138{left:62.599627pt;}
.xca_c00138{left:65.712000pt;}
.x8c_c00138{left:70.750323pt;}
.xb1_c00138{left:72.461720pt;}
.x8d_c00138{left:77.466183pt;}
.xa1_c00138{left:79.988913pt;}
.x77_c00138{left:81.596427pt;}
.x67_c00138{left:83.078347pt;}
.x45_c00138{left:84.549739pt;}
.x5c_c00138{left:85.697824pt;}
.x18_c00138{left:86.692960pt;}
.x30_c00138{left:88.340000pt;}
.x2_c00138{left:89.805333pt;}
.xb7_c00138{left:90.916707pt;}
.xa2_c00138{left:96.189872pt;}
.x5d_c00138{left:102.715680pt;}
.xc2_c00138{left:104.435177pt;}
.xa9_c00138{left:105.773839pt;}
.x31_c00138{left:107.156000pt;}
.x46_c00138{left:110.760907pt;}
.x8e_c00138{left:111.658788pt;}
.x19_c00138{left:112.671247pt;}
.x3e_c00138{left:114.820747pt;}
.x9b_c00138{left:115.749357pt;}
.x50_c00138{left:117.622123pt;}
.xb8_c00138{left:119.489827pt;}
.x70_c00138{left:121.765045pt;}
.xb2_c00138{left:124.335027pt;}
.x47_c00138{left:126.760395pt;}
.x24_c00138{left:128.434693pt;}
.x3_c00138{left:131.066667pt;}
.x68_c00138{left:132.015211pt;}
.x78_c00138{left:133.194144pt;}
.x56_c00138{left:134.924885pt;}
.x1a_c00138{left:138.545533pt;}
.x71_c00138{left:141.691019pt;}
.xb3_c00138{left:142.808333pt;}
.x3f_c00138{left:144.576277pt;}
.x10_c00138{left:146.703247pt;}
.xc3_c00138{left:148.616616pt;}
.x35_c00138{left:152.702667pt;}
.x4_c00138{left:154.365333pt;}
.x82_c00138{left:158.166667pt;}
.x99_c00138{left:159.116541pt;}
.x94_c00138{left:160.090515pt;}
.x36_c00138{left:161.341333pt;}
.x25_c00138{left:162.533153pt;}
.x57_c00138{left:166.289547pt;}
.x69_c00138{left:168.279552pt;}
.xad_c00138{left:170.286667pt;}
.x48_c00138{left:174.044213pt;}
.x40_c00138{left:175.734453pt;}
.x9c_c00138{left:178.104104pt;}
.x83_c00138{left:180.492000pt;}
.x5e_c00138{left:181.553237pt;}
.x5_c00138{left:182.772000pt;}
.x11_c00138{left:185.559573pt;}
.x1b_c00138{left:187.524793pt;}
.xbf_c00138{left:188.443907pt;}
.xc1_c00138{left:192.489333pt;}
.xcb_c00138{left:194.156000pt;}
.x51_c00138{left:195.635701pt;}
.x32_c00138{left:199.305333pt;}
.x6_c00138{left:200.516000pt;}
.x95_c00138{left:203.555848pt;}
.x84_c00138{left:204.972000pt;}
.x49_c00138{left:206.207189pt;}
.x7f_c00138{left:207.939285pt;}
.xa3_c00138{left:209.266028pt;}
.x5f_c00138{left:210.355851pt;}
.x26_c00138{left:214.208167pt;}
.xb9_c00138{left:216.523267pt;}
.x37_c00138{left:218.001333pt;}
.x1c_c00138{left:219.900313pt;}
.xc4_c00138{left:222.790625pt;}
.x52_c00138{left:223.898336pt;}
.x4a_c00138{left:225.442571pt;}
.x7_c00138{left:226.633333pt;}
.xae_c00138{left:228.606667pt;}
.x9d_c00138{left:231.611411pt;}
.x72_c00138{left:234.117963pt;}
.x27_c00138{left:235.909853pt;}
.x8f_c00138{left:240.013433pt;}
.xce_c00138{left:242.412199pt;}
.x79_c00138{left:246.032640pt;}
.x85_c00138{left:247.386667pt;}
.x33_c00138{left:248.454667pt;}
.x8_c00138{left:250.390667pt;}
.x38_c00138{left:251.322667pt;}
.x12_c00138{left:253.439493pt;}
.x73_c00138{left:254.330603pt;}
.x4b_c00138{left:256.152256pt;}
.xaa_c00138{left:257.300601pt;}
.x53_c00138{left:258.975317pt;}
.xc0_c00138{left:260.308000pt;}
.x86_c00138{left:261.389333pt;}
.x6a_c00138{left:263.077472pt;}
.x90_c00138{left:264.763568pt;}
.xa4_c00138{left:268.095868pt;}
.x1_c00138{left:270.000000pt;}
.x28_c00138{left:271.010940pt;}
.x9_c00138{left:275.122667pt;}
.x4c_c00138{left:276.028949pt;}
.x1d_c00138{left:279.736747pt;}
.x58_c00138{left:283.675371pt;}
.x7a_c00138{left:284.674261pt;}
.x60_c00138{left:287.812139pt;}
.x39_c00138{left:290.026667pt;}
.xaf_c00138{left:292.493333pt;}
.x54_c00138{left:295.216235pt;}
.xc5_c00138{left:297.055301pt;}
.xa5_c00138{left:298.334037pt;}
.x29_c00138{left:301.240247pt;}
.x59_c00138{left:303.335445pt;}
.x34_c00138{left:305.582667pt;}
.xba_c00138{left:307.026213pt;}
.x61_c00138{left:308.460491pt;}
.x3a_c00138{left:310.184000pt;}
.x1e_c00138{left:311.129600pt;}
.x13_c00138{left:312.523953pt;}
.x87_c00138{left:319.026667pt;}
.x6b_c00138{left:320.445803pt;}
.x91_c00138{left:321.879697pt;}
.x74_c00138{left:323.662155pt;}
.x14_c00138{left:326.635113pt;}
.xa_c00138{left:327.913333pt;}
.xbb_c00138{left:330.291747pt;}
.x96_c00138{left:331.598515pt;}
.x2a_c00138{left:332.913493pt;}
.x88_c00138{left:335.858667pt;}
.x6c_c00138{left:340.379189pt;}
.xb4_c00138{left:341.927933pt;}
.x1f_c00138{left:343.773120pt;}
.x62_c00138{left:348.069259pt;}
.x4d_c00138{left:352.215851pt;}
.x7b_c00138{left:353.779627pt;}
.x2b_c00138{left:354.945827pt;}
.xb_c00138{left:356.462667pt;}
.x97_c00138{left:358.942515pt;}
.xa6_c00138{left:360.256875pt;}
.x20_c00138{left:368.486073pt;}
.x15_c00138{left:370.340493pt;}
.x75_c00138{left:371.905024pt;}
.x41_c00138{left:373.779275pt;}
.x7c_c00138{left:376.933408pt;}
.x89_c00138{left:377.940000pt;}
.x63_c00138{left:382.140949pt;}
.x4e_c00138{left:384.321493pt;}
.x9e_c00138{left:385.843028pt;}
.x55_c00138{left:387.127840pt;}
.xc_c00138{left:389.622667pt;}
.x42_c00138{left:393.236288pt;}
.xc6_c00138{left:394.982795pt;}
.xbc_c00138{left:396.398293pt;}
.x6d_c00138{left:397.492875pt;}
.xd1_c00138{left:399.120000pt;}
.x2c_c00138{left:400.103787pt;}
.x64_c00138{left:401.409365pt;}
.x16_c00138{left:404.199787pt;}
.x21_c00138{left:406.176180pt;}
.x7d_c00138{left:407.809109pt;}
.xab_c00138{left:410.292529pt;}
.x9f_c00138{left:413.690597pt;}
.x3b_c00138{left:417.210667pt;}
.x2d_c00138{left:418.194967pt;}
.x5a_c00138{left:421.435893pt;}
.x9a_c00138{left:422.687937pt;}
.xcf_c00138{left:424.560000pt;}
.x22_c00138{left:428.503840pt;}
.x8a_c00138{left:430.648000pt;}
.x6e_c00138{left:432.479968pt;}
.x80_c00138{left:436.696981pt;}
.xac_c00138{left:437.652312pt;}
.x76_c00138{left:439.367179pt;}
.xb0_c00138{left:440.708000pt;}
.x92_c00138{left:441.675816pt;}
.xd_c00138{left:444.333333pt;}
.x65_c00138{left:448.093792pt;}
.x98_c00138{left:450.086515pt;}
.x43_c00138{left:451.303349pt;}
.x2e_c00138{left:452.469427pt;}
.xcc_c00138{left:454.210667pt;}
.xa7_c00138{left:455.796184pt;}
.x3c_c00138{left:459.948000pt;}
.xc7_c00138{left:461.508328pt;}
.x4f_c00138{left:464.478912pt;}
.x66_c00138{left:466.814229pt;}
.xe_c00138{left:468.345333pt;}
.x23_c00138{left:469.309887pt;}
.xbd_c00138{left:470.418280pt;}
.x2f_c00138{left:472.711173pt;}
.x17_c00138{left:474.076920pt;}
.x7e_c00138{left:475.251979pt;}
.x3d_c00138{left:476.536000pt;}
.xc8_c00138{left:477.834697pt;}
.x6f_c00138{left:480.270251pt;}
.xa8_c00138{left:482.050773pt;}
.x44_c00138{left:483.518837pt;}
.xf_c00138{left:485.637333pt;}
.x81_c00138{left:487.046283pt;}
.xa0_c00138{left:490.148448pt;}
.x8b_c00138{left:491.145333pt;}
.x93_c00138{left:495.437363pt;}
.x5b_c00138{left:503.507979pt;}
.xd0_c00138{left:506.400000pt;}
.xd2_c00138{left:509.760000pt;}
.xc9_c00138{left:511.282131pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m28_c00139{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);}
.mf_c00139{transform:matrix(0.016108,0.000274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.016108,0.000274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.016108,0.000274,-0.004249,0.249964,0,0);}
.m8a_c00139{transform:matrix(0.048820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048820,0.000000,0.000000,0.250000,0,0);}
.me_c00139{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);}
.mfd_c00139{transform:matrix(0.091071,0.000820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.091071,0.000820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.091071,0.000820,-0.002250,0.249990,0,0);}
.mb0_c00139{transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.106445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106445,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00139{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);}
.md7_c00139{transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);}
.md3_c00139{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);}
.m17_c00139{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);}
.me4_c00139{transform:matrix(0.148654,0.001338,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148654,0.001338,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148654,0.001338,-0.002250,0.249990,0,0);}
.mb1_c00139{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);}
.m92_c00139{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);}
.m8f_c00139{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);}
.m6a_c00139{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);}
.m112_c00139{transform:matrix(0.153099,0.001378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153099,0.001378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153099,0.001378,-0.002250,0.249990,0,0);}
.m25_c00139{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);}
.m16_c00139{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);}
.mdc_c00139{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);}
.maf_c00139{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);}
.m55_c00139{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);}
.m57_c00139{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);}
.m80_c00139{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);}
.m18_c00139{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);}
.m14_c00139{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);}
.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);}
.m66_c00139{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);}
.m11c_c00139{transform:matrix(0.160204,0.001442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160204,0.001442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160204,0.001442,-0.002250,0.249990,0,0);}
.m23_c00139{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);}
.m126_c00139{transform:matrix(0.160459,0.001444,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160459,0.001444,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160459,0.001444,-0.002250,0.249990,0,0);}
.m8d_c00139{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);}
.m3e_c00139{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);}
.m83_c00139{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{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);}
.m12a_c00139{transform:matrix(0.162848,0.001466,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162848,0.001466,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162848,0.001466,-0.002250,0.249990,0,0);}
.m6c_c00139{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.m89_c00139{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);}
.m4d_c00139{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);}
.m7_c00139{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);}
.m15_c00139{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);}
.me0_c00139{transform:matrix(0.168183,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168183,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168183,0.001514,-0.002250,0.249990,0,0);}
.m90_c00139{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);}
.m86_c00139{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);}
.ma0_c00139{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);}
.mc0_c00139{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);}
.me2_c00139{transform:matrix(0.169628,0.001527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169628,0.001527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169628,0.001527,-0.002250,0.249990,0,0);}
.m13f_c00139{transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);}
.m1e_c00139{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);}
.m41_c00139{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);}
.m85_c00139{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);}
.m79_c00139{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);}
.mb6_c00139{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);}
.mb3_c00139{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);}
.m5c_c00139{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);}
.m116_c00139{transform:matrix(0.171728,0.001546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171728,0.001546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171728,0.001546,-0.002250,0.249990,0,0);}
.mba_c00139{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);}
.mca_c00139{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);}
.m146_c00139{transform:matrix(0.175373,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175373,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175373,0.001578,-0.002250,0.249990,0,0);}
.m5e_c00139{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{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);}
.m68_c00139{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);}
.m19_c00139{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);}
.m9b_c00139{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);}
.m88_c00139{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);}
.ma5_c00139{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);}
.m45_c00139{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);}
.m53_c00139{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);}
.m82_c00139{transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{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);}
.m11_c00139{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);}
.m74_c00139{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);}
.mc8_c00139{transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);}
.m4b_c00139{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);}
.m36_c00139{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);}
.m5f_c00139{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);}
.m38_c00139{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);}
.m8e_c00139{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);}
.m1b_c00139{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);}
.m6e_c00139{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);}
.mde_c00139{transform:matrix(0.180778,0.001627,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180778,0.001627,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180778,0.001627,-0.002250,0.249990,0,0);}
.ma8_c00139{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);}
.m7f_c00139{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);}
.m12e_c00139{transform:matrix(0.181348,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181348,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181348,0.001632,-0.002250,0.249990,0,0);}
.m13_c00139{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);}
.m14d_c00139{transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);}
.m47_c00139{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);}
.maa_c00139{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);}
.m13b_c00139{transform:matrix(0.181818,0.001636,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181818,0.001636,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181818,0.001636,-0.002250,0.249990,0,0);}
.ma_c00139{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);}
.m43_c00139{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);}
.m1c_c00139{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);}
.m12_c00139{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);}
.m136_c00139{transform:matrix(0.182498,0.001642,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182498,0.001642,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182498,0.001642,-0.002250,0.249990,0,0);}
.m4e_c00139{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);}
.mfa_c00139{transform:matrix(0.182673,0.001644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182673,0.001644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182673,0.001644,-0.002250,0.249990,0,0);}
.m2b_c00139{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);}
.m11b_c00139{transform:matrix(0.183653,0.001653,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183653,0.001653,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183653,0.001653,-0.002250,0.249990,0,0);}
.m10d_c00139{transform:matrix(0.183943,0.001655,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183943,0.001655,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183943,0.001655,-0.002250,0.249990,0,0);}
.m60_c00139{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);}
.m3f_c00139{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);}
.m61_c00139{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);}
.m9e_c00139{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);}
.m70_c00139{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);}
.m1f_c00139{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);}
.mda_c00139{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);}
.m4a_c00139{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);}
.mdd_c00139{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);}
.m8_c00139{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);}
.m24_c00139{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);}
.m91_c00139{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);}
.meb_c00139{transform:matrix(0.185997,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185997,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185997,0.001674,-0.002250,0.249990,0,0);}
.m56_c00139{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);}
.m11e_c00139{transform:matrix(0.186537,0.001679,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186537,0.001679,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186537,0.001679,-0.002250,0.249990,0,0);}
.m118_c00139{transform:matrix(0.186632,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186632,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186632,0.001680,-0.002250,0.249990,0,0);}
.mf9_c00139{transform:matrix(0.186797,0.001681,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186797,0.001681,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186797,0.001681,-0.002250,0.249990,0,0);}
.m20_c00139{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);}
.m51_c00139{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);}
.m40_c00139{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);}
.m103_c00139{transform:matrix(0.187287,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187287,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187287,0.001686,-0.002250,0.249990,0,0);}
.m37_c00139{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);}
.me1_c00139{transform:matrix(0.187652,0.001689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187652,0.001689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187652,0.001689,-0.002250,0.249990,0,0);}
.m14c_c00139{transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188067,0.001693,-0.002250,0.249990,0,0);}
.m99_c00139{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);}
.m7d_c00139{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);}
.m129_c00139{transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);}
.m10a_c00139{transform:matrix(0.189102,0.001702,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189102,0.001702,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189102,0.001702,-0.002250,0.249990,0,0);}
.m131_c00139{transform:matrix(0.189187,0.001703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189187,0.001703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189187,0.001703,-0.002250,0.249990,0,0);}
.m115_c00139{transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);}
.mc6_c00139{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);}
.m48_c00139{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);}
.m49_c00139{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);}
.m50_c00139{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);}
.me6_c00139{transform:matrix(0.189807,0.001708,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189807,0.001708,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189807,0.001708,-0.002250,0.249990,0,0);}
.m77_c00139{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);}
.md6_c00139{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);}
.m59_c00139{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);}
.m81_c00139{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);}
.m64_c00139{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);}
.m78_c00139{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);}
.me5_c00139{transform:matrix(0.190992,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190992,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190992,0.001719,-0.002250,0.249990,0,0);}
.m63_c00139{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);}
.m26_c00139{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);}
.m114_c00139{transform:matrix(0.191527,0.001724,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191527,0.001724,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191527,0.001724,-0.002250,0.249990,0,0);}
.m67_c00139{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);}
.m13e_c00139{transform:matrix(0.192152,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192152,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192152,0.001729,-0.002250,0.249990,0,0);}
.m3d_c00139{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);}
.m7a_c00139{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);}
.mbf_c00139{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);}
.m87_c00139{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);}
.m2e_c00139{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);}
.m42_c00139{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_c00139{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);}
.m58_c00139{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);}
.mad_c00139{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);}
.m10f_c00139{transform:matrix(0.194457,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194457,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194457,0.001750,-0.002250,0.249990,0,0);}
.m132_c00139{transform:matrix(0.194522,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194522,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194522,0.001751,-0.002250,0.249990,0,0);}
.mbe_c00139{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);}
.m9d_c00139{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);}
.m6d_c00139{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);}
.m84_c00139{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);}
.m6_c00139{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);}
.mdb_c00139{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);}
.m8c_c00139{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);}
.m12b_c00139{transform:matrix(0.196712,0.001770,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196712,0.001770,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196712,0.001770,-0.002250,0.249990,0,0);}
.m108_c00139{transform:matrix(0.197077,0.001774,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197077,0.001774,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197077,0.001774,-0.002250,0.249990,0,0);}
.mcb_c00139{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);}
.m22_c00139{transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);}
.md4_c00139{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);}
.mbc_c00139{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);}
.me3_c00139{transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);}
.m98_c00139{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);}
.m62_c00139{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m107_c00139{transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);}
.ma3_c00139{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);}
.m124_c00139{transform:matrix(0.198972,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198972,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198972,0.001791,-0.002250,0.249990,0,0);}
.mff_c00139{transform:matrix(0.198982,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198982,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198982,0.001791,-0.002250,0.249990,0,0);}
.m1d_c00139{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);}
.m10b_c00139{transform:matrix(0.199772,0.001798,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199772,0.001798,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199772,0.001798,-0.002250,0.249990,0,0);}
.md1_c00139{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);}
.m76_c00139{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);}
.mc2_c00139{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);}
.m3c_c00139{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);}
.m5d_c00139{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);}
.mc4_c00139{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);}
.m122_c00139{transform:matrix(0.201917,0.001817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201917,0.001817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201917,0.001817,-0.002250,0.249990,0,0);}
.mc9_c00139{transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);}
.mb2_c00139{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);}
.m147_c00139{transform:matrix(0.202737,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202737,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202737,0.001825,-0.002250,0.249990,0,0);}
.m3b_c00139{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);}
.m11a_c00139{transform:matrix(0.203142,0.001828,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203142,0.001828,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203142,0.001828,-0.002250,0.249990,0,0);}
.m72_c00139{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);}
.m13a_c00139{transform:matrix(0.203532,0.001832,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203532,0.001832,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203532,0.001832,-0.002250,0.249990,0,0);}
.m106_c00139{transform:matrix(0.203632,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203632,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203632,0.001833,-0.002250,0.249990,0,0);}
.m5b_c00139{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);}
.ma7_c00139{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);}
.m12d_c00139{transform:matrix(0.204037,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204037,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204037,0.001836,-0.002250,0.249990,0,0);}
.m1a_c00139{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);}
.md8_c00139{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);}
.mfe_c00139{transform:matrix(0.204507,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204507,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204507,0.001841,-0.002250,0.249990,0,0);}
.mab_c00139{transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{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);}
.m46_c00139{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);}
.m44_c00139{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);}
.m4c_c00139{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);}
.m93_c00139{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);}
.mc3_c00139{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);}
.m104_c00139{transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);}
.mfc_c00139{transform:matrix(0.206707,0.001860,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206707,0.001860,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206707,0.001860,-0.002250,0.249990,0,0);}
.mb5_c00139{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);}
.m65_c00139{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);}
.m39_c00139{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);}
.mc7_c00139{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);}
.ma9_c00139{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);}
.m117_c00139{transform:matrix(0.208452,0.001876,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208452,0.001876,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208452,0.001876,-0.002250,0.249990,0,0);}
.m4f_c00139{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);}
.m2a_c00139{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);}
.m71_c00139{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);}
.m12f_c00139{transform:matrix(0.211481,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211481,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211481,0.001903,-0.002250,0.249990,0,0);}
.m125_c00139{transform:matrix(0.211606,0.001904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211606,0.001904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211606,0.001904,-0.002250,0.249990,0,0);}
.m31_c00139{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);}
.m148_c00139{transform:matrix(0.211966,0.001908,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211966,0.001908,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211966,0.001908,-0.002250,0.249990,0,0);}
.m14e_c00139{transform:matrix(0.213236,0.001919,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213236,0.001919,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213236,0.001919,-0.002250,0.249990,0,0);}
.md0_c00139{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);}
.mfb_c00139{transform:matrix(0.214186,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214186,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214186,0.001928,-0.002250,0.249990,0,0);}
.m123_c00139{transform:matrix(0.214221,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214221,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214221,0.001928,-0.002250,0.249990,0,0);}
.m6f_c00139{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);}
.mc1_c00139{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);}
.m113_c00139{transform:matrix(0.215671,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215671,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215671,0.001941,-0.002250,0.249990,0,0);}
.me7_c00139{transform:matrix(0.215986,0.001944,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215986,0.001944,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215986,0.001944,-0.002250,0.249990,0,0);}
.m7b_c00139{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);}
.m7c_c00139{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);}
.m73_c00139{transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);}
.md5_c00139{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);}
.mb7_c00139{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);}
.m121_c00139{transform:matrix(0.218661,0.001968,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218661,0.001968,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218661,0.001968,-0.002250,0.249990,0,0);}
.mf2_c00139{transform:matrix(0.219116,0.001972,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219116,0.001972,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219116,0.001972,-0.002250,0.249990,0,0);}
.m69_c00139{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);}
.mcf_c00139{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);}
.m96_c00139{transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);}
.m111_c00139{transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);}
.m109_c00139{transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);}
.m9a_c00139{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);}
.m143_c00139{transform:matrix(0.221761,0.001996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221761,0.001996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221761,0.001996,-0.002250,0.249990,0,0);}
.m128_c00139{transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);}
.m5_c00139{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);}
.mac_c00139{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);}
.m35_c00139{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);}
.m10c_c00139{transform:matrix(0.222811,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222811,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222811,0.002005,-0.002250,0.249990,0,0);}
.m100_c00139{transform:matrix(0.222861,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222861,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222861,0.002006,-0.002250,0.249990,0,0);}
.mef_c00139{transform:matrix(0.223716,0.002013,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223716,0.002013,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223716,0.002013,-0.002250,0.249990,0,0);}
.mdf_c00139{transform:matrix(0.225316,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225316,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225316,0.002028,-0.002250,0.249990,0,0);}
.mce_c00139{transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);}
.m119_c00139{transform:matrix(0.225941,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225941,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225941,0.002033,-0.002250,0.249990,0,0);}
.m34_c00139{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);}
.mf1_c00139{transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);}
.m9f_c00139{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);}
.m8b_c00139{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);}
.md9_c00139{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);}
.ma4_c00139{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.m2d_c00139{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);}
.m2f_c00139{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);}
.m75_c00139{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);}
.m14a_c00139{transform:matrix(0.231516,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231516,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231516,0.002084,-0.002250,0.249990,0,0);}
.m5a_c00139{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);}
.mcc_c00139{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);}
.m120_c00139{transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);}
.ma1_c00139{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);}
.m150_c00139{transform:matrix(0.232446,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232446,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232446,0.002092,-0.002250,0.249990,0,0);}
.m10e_c00139{transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);}
.mc5_c00139{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);}
.m151_c00139{transform:matrix(0.235080,0.002116,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235080,0.002116,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235080,0.002116,-0.002250,0.249990,0,0);}
.m1_c00139{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);}
.mf7_c00139{transform:matrix(0.235820,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235820,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235820,0.002122,-0.002250,0.249990,0,0);}
.mf8_c00139{transform:matrix(0.235830,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235830,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235830,0.002122,-0.002250,0.249990,0,0);}
.m145_c00139{transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);}
.m11d_c00139{transform:matrix(0.241875,0.002177,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241875,0.002177,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241875,0.002177,-0.002250,0.249990,0,0);}
.m127_c00139{transform:matrix(0.241905,0.002177,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241905,0.002177,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241905,0.002177,-0.002250,0.249990,0,0);}
.mee_c00139{transform:matrix(0.243490,0.002191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243490,0.002191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243490,0.002191,-0.002250,0.249990,0,0);}
.mbb_c00139{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);}
.mf5_c00139{transform:matrix(0.244945,0.002205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244945,0.002205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244945,0.002205,-0.002250,0.249990,0,0);}
.m95_c00139{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);}
.m11f_c00139{transform:matrix(0.245165,0.002206,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245165,0.002206,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245165,0.002206,-0.002250,0.249990,0,0);}
.m9c_c00139{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.m110_c00139{transform:matrix(0.246600,0.002219,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246600,0.002219,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246600,0.002219,-0.002250,0.249990,0,0);}
.m105_c00139{transform:matrix(0.247375,0.002226,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247375,0.002226,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247375,0.002226,-0.002250,0.249990,0,0);}
.m101_c00139{transform:matrix(0.247535,0.002228,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247535,0.002228,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247535,0.002228,-0.002250,0.249990,0,0);}
.m137_c00139{transform:matrix(0.248005,0.002232,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248005,0.002232,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248005,0.002232,-0.002250,0.249990,0,0);}
.m10_c00139{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);}
.m12c_c00139{transform:matrix(0.248155,0.002233,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248155,0.002233,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248155,0.002233,-0.002250,0.249990,0,0);}
.m152_c00139{transform:matrix(0.248565,0.002237,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248565,0.002237,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248565,0.002237,-0.002250,0.249990,0,0);}
.m13c_c00139{transform:matrix(0.248610,0.002237,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248610,0.002237,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248610,0.002237,-0.002250,0.249990,0,0);}
.m141_c00139{transform:matrix(0.250935,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250935,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250935,0.002258,-0.002250,0.249990,0,0);}
.me8_c00139{transform:matrix(0.251305,0.002262,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251305,0.002262,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251305,0.002262,-0.002250,0.249990,0,0);}
.m97_c00139{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);}
.m130_c00139{transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);}
.m102_c00139{transform:matrix(0.254055,0.002286,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254055,0.002286,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254055,0.002286,-0.002250,0.249990,0,0);}
.mf6_c00139{transform:matrix(0.255940,0.002303,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255940,0.002303,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255940,0.002303,-0.002250,0.249990,0,0);}
.m135_c00139{transform:matrix(0.255965,0.002304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255965,0.002304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255965,0.002304,-0.002250,0.249990,0,0);}
.m29_c00139{transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.257348,0.004375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257348,0.004375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257348,0.004375,-0.004249,0.249964,0,0);}
.m13d_c00139{transform:matrix(0.257960,0.002322,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257960,0.002322,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257960,0.002322,-0.002250,0.249990,0,0);}
.med_c00139{transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);}
.mec_c00139{transform:matrix(0.263359,0.002370,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263359,0.002370,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263359,0.002370,-0.002250,0.249990,0,0);}
.m94_c00139{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);}
.md_c00139{transform:matrix(0.266367,0.004528,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266367,0.004528,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266367,0.004528,-0.004249,0.249964,0,0);}
.m33_c00139{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);}
.m27_c00139{transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);}
.me9_c00139{transform:matrix(0.271064,0.002440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271064,0.002440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271064,0.002440,-0.002250,0.249990,0,0);}
.m133_c00139{transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);}
.m2c_c00139{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);}
.m134_c00139{transform:matrix(0.272839,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272839,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272839,0.002456,-0.002250,0.249990,0,0);}
.m30_c00139{transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282290,0.000000,0.000000,0.250000,0,0);}
.md2_c00139{transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);}
.m140_c00139{transform:matrix(0.284188,0.002558,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284188,0.002558,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284188,0.002558,-0.002250,0.249990,0,0);}
.m32_c00139{transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);}
.m139_c00139{transform:matrix(0.299783,0.002698,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299783,0.002698,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299783,0.002698,-0.002250,0.249990,0,0);}
.ma2_c00139{transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299975,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309105,0.000000,0.000000,0.250000,0,0);}
.mea_c00139{transform:matrix(0.314427,0.002830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.314427,0.002830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.314427,0.002830,-0.002250,0.249990,0,0);}
.m14f_c00139{transform:matrix(0.318232,0.002864,-0.002250,0.249990,0,0);-ms-transform:matrix(0.318232,0.002864,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.318232,0.002864,-0.002250,0.249990,0,0);}
.mf3_c00139{transform:matrix(0.324712,0.002922,-0.002250,0.249990,0,0);-ms-transform:matrix(0.324712,0.002922,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.324712,0.002922,-0.002250,0.249990,0,0);}
.m54_c00139{transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331135,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{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);}
.mf4_c00139{transform:matrix(0.336161,0.003025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.336161,0.003025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.336161,0.003025,-0.002250,0.249990,0,0);}
.mb8_c00139{transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{transform:matrix(0.353505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353505,0.000000,0.000000,0.250000,0,0);}
.m14b_c00139{transform:matrix(0.401004,0.003609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.401004,0.003609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.401004,0.003609,-0.002250,0.249990,0,0);}
.m138_c00139{transform:matrix(0.413003,0.003717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.413003,0.003717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.413003,0.003717,-0.002250,0.249990,0,0);}
.m149_c00139{transform:matrix(0.442077,0.003979,-0.002250,0.249990,0,0);-ms-transform:matrix(0.442077,0.003979,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.442077,0.003979,-0.002250,0.249990,0,0);}
.m142_c00139{transform:matrix(0.459986,0.004140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.459986,0.004140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.459986,0.004140,-0.002250,0.249990,0,0);}
.m4_c00139{transform:matrix(0.486025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486025,0.000000,0.000000,0.250000,0,0);}
.mbd_c00139{transform:matrix(0.506930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506930,0.000000,0.000000,0.250000,0,0);}
.mf0_c00139{transform:matrix(0.520459,0.004684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.520459,0.004684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.520459,0.004684,-0.002250,0.249990,0,0);}
.m144_c00139{transform:matrix(0.540753,0.004867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.540753,0.004867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.540753,0.004867,-0.002250,0.249990,0,0);}
.mb_c00139{transform:matrix(0.646282,0.010987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.646282,0.010987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.646282,0.010987,-0.004249,0.249964,0,0);}
.m0_c00139{transform:matrix(0.927365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927365,0.000000,0.000000,0.250000,0,0);}
.m153_c00139{transform:matrix(1.000689,0.009006,-0.002250,0.249990,0,0);-ms-transform:matrix(1.000689,0.009006,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.000689,0.009006,-0.002250,0.249990,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;}
.fs0_c00139{font-size:21.000000px;}
.fsf_c00139{font-size:47.251914px;}
.fsb_c00139{font-size:50.400000px;}
.fs1_c00139{font-size:51.450000px;}
.fs7_c00139{font-size:59.850000px;}
.fs12_c00139{font-size:61.952509px;}
.fs11_c00139{font-size:63.002551px;}
.fsc_c00139{font-size:65.100000px;}
.fsa_c00139{font-size:66.150000px;}
.fsd_c00139{font-size:67.200000px;}
.fse_c00139{font-size:67.202722px;}
.fs9_c00139{font-size:68.250000px;}
.fs10_c00139{font-size:68.252764px;}
.fs6_c00139{font-size:69.300000px;}
.fs14_c00139{font-size:69.302807px;}
.fs5_c00139{font-size:70.350000px;}
.fs13_c00139{font-size:70.352849px;}
.fs8_c00139{font-size:71.400000px;}
.fs4_c00139{font-size:84.000000px;}
.fs2_c00139{font-size:189.027309px;}
.fs3_c00139{font-size:191.127612px;}
.y0_c00139{bottom:0.000000px;}
.y99_c00139{bottom:204.640497px;}
.y9d_c00139{bottom:204.640627px;}
.y9a_c00139{bottom:204.640660px;}
.y97_c00139{bottom:204.640710px;}
.y98_c00139{bottom:204.640873px;}
.y9f_c00139{bottom:204.640968px;}
.y9c_c00139{bottom:204.641184px;}
.y9e_c00139{bottom:204.641285px;}
.y9b_c00139{bottom:204.641321px;}
.y96_c00139{bottom:204.641356px;}
.y95_c00139{bottom:224.465709px;}
.y94_c00139{bottom:224.825295px;}
.y93_c00139{bottom:225.270188px;}
.y92_c00139{bottom:225.459538px;}
.y91_c00139{bottom:225.906591px;}
.y90_c00139{bottom:226.210193px;}
.y8f_c00139{bottom:226.526336px;}
.y8e_c00139{bottom:226.718522px;}
.y8d_c00139{bottom:226.966247px;}
.y8c_c00139{bottom:227.318300px;}
.y8b_c00139{bottom:227.636940px;}
.y8a_c00139{bottom:228.416848px;}
.y89_c00139{bottom:248.373235px;}
.y88_c00139{bottom:248.612763px;}
.y87_c00139{bottom:248.738325px;}
.y86_c00139{bottom:249.163724px;}
.y85_c00139{bottom:249.301257px;}
.y84_c00139{bottom:249.575421px;}
.y83_c00139{bottom:249.840852px;}
.y82_c00139{bottom:250.278804px;}
.y81_c00139{bottom:250.534098px;}
.y80_c00139{bottom:250.840131px;}
.y7f_c00139{bottom:251.122434px;}
.y7e_c00139{bottom:251.431046px;}
.y7d_c00139{bottom:251.904675px;}
.y7c_c00139{bottom:270.618364px;}
.y7b_c00139{bottom:271.167522px;}
.y7a_c00139{bottom:271.578075px;}
.y79_c00139{bottom:271.823232px;}
.y78_c00139{bottom:272.080455px;}
.y77_c00139{bottom:272.329242px;}
.y76_c00139{bottom:272.505772px;}
.y75_c00139{bottom:272.860437px;}
.y74_c00139{bottom:273.262756px;}
.y73_c00139{bottom:273.459990px;}
.y72_c00139{bottom:274.044441px;}
.y71_c00139{bottom:294.280756px;}
.y70_c00139{bottom:294.435838px;}
.y6f_c00139{bottom:294.765333px;}
.y6e_c00139{bottom:295.257522px;}
.y6d_c00139{bottom:295.639753px;}
.y6c_c00139{bottom:295.861206px;}
.y6b_c00139{bottom:296.114110px;}
.y6a_c00139{bottom:296.796814px;}
.y69_c00139{bottom:297.105183px;}
.y68_c00139{bottom:297.249817px;}
.y67_c00139{bottom:297.805786px;}
.y66_c00139{bottom:317.764098px;}
.y65_c00139{bottom:318.015004px;}
.y64_c00139{bottom:318.198525px;}
.y63_c00139{bottom:318.473589px;}
.y62_c00139{bottom:318.911497px;}
.y61_c00139{bottom:319.049982px;}
.y60_c00139{bottom:319.347249px;}
.y5f_c00139{bottom:319.498419px;}
.y5e_c00139{bottom:319.787695px;}
.y5d_c00139{bottom:320.094342px;}
.y5c_c00139{bottom:320.404335px;}
.y5b_c00139{bottom:320.554062px;}
.y5a_c00139{bottom:321.026872px;}
.y59_c00139{bottom:342.019309px;}
.y58_c00139{bottom:342.019686px;}
.y55_c00139{bottom:342.019795px;}
.y54_c00139{bottom:342.019872px;}
.y57_c00139{bottom:342.019912px;}
.y53_c00139{bottom:342.020068px;}
.y52_c00139{bottom:342.020131px;}
.y51_c00139{bottom:342.020328px;}
.y56_c00139{bottom:342.020379px;}
.y50_c00139{bottom:342.020734px;}
.y4f_c00139{bottom:342.020947px;}
.y4e_c00139{bottom:342.021444px;}
.y4d_c00139{bottom:342.022000px;}
.y4c_c00139{bottom:362.716882px;}
.y4b_c00139{bottom:362.864827px;}
.y4a_c00139{bottom:363.331200px;}
.y49_c00139{bottom:363.518404px;}
.y48_c00139{bottom:363.935299px;}
.y47_c00139{bottom:364.124043px;}
.y46_c00139{bottom:364.235413px;}
.y45_c00139{bottom:364.942327px;}
.y44_c00139{bottom:365.110300px;}
.y43_c00139{bottom:365.438068px;}
.y42_c00139{bottom:365.594380px;}
.y41_c00139{bottom:365.848903px;}
.y40_c00139{bottom:385.150482px;}
.y3f_c00139{bottom:385.568185px;}
.y3e_c00139{bottom:385.879590px;}
.y3d_c00139{bottom:385.979193px;}
.y3c_c00139{bottom:386.321715px;}
.y3b_c00139{bottom:386.443012px;}
.y3a_c00139{bottom:386.547691px;}
.y39_c00139{bottom:387.053266px;}
.y38_c00139{bottom:387.250002px;}
.y36_c00139{bottom:387.543748px;}
.y37_c00139{bottom:387.544126px;}
.y35_c00139{bottom:387.794011px;}
.y34_c00139{bottom:387.981108px;}
.y33_c00139{bottom:388.306930px;}
.y32_c00139{bottom:388.671673px;}
.y31_c00139{bottom:389.069788px;}
.y30_c00139{bottom:408.816681px;}
.y2f_c00139{bottom:409.178980px;}
.y2e_c00139{bottom:410.100220px;}
.y2d_c00139{bottom:410.440083px;}
.y2c_c00139{bottom:410.933616px;}
.y2b_c00139{bottom:411.264109px;}
.y2a_c00139{bottom:411.677209px;}
.y29_c00139{bottom:412.010133px;}
.y28_c00139{bottom:412.323913px;}
.y27_c00139{bottom:412.831500px;}
.y26_c00139{bottom:433.804500px;}
.y25_c00139{bottom:454.821000px;}
.y24_c00139{bottom:454.905000px;}
.y23_c00139{bottom:455.278500px;}
.y22_c00139{bottom:455.584500px;}
.y21_c00139{bottom:455.736000px;}
.y20_c00139{bottom:455.920500px;}
.y1f_c00139{bottom:456.315000px;}
.y1e_c00139{bottom:456.477000px;}
.y1d_c00139{bottom:456.918000px;}
.y1c_c00139{bottom:457.369500px;}
.y1b_c00139{bottom:457.540500px;}
.y1a_c00139{bottom:457.767000px;}
.y19_c00139{bottom:458.190000px;}
.y18_c00139{bottom:479.455500px;}
.y17_c00139{bottom:502.372500px;}
.y16_c00139{bottom:524.779500px;}
.y15_c00139{bottom:547.966500px;}
.y14_c00139{bottom:570.856500px;}
.y13_c00139{bottom:593.790000px;}
.y12_c00139{bottom:616.525500px;}
.y11_c00139{bottom:639.147000px;}
.y10_c00139{bottom:662.398500px;}
.yf_c00139{bottom:684.660000px;}
.ye_c00139{bottom:708.529500px;}
.yd_c00139{bottom:731.460000px;}
.yc_c00139{bottom:754.141500px;}
.yb_c00139{bottom:777.118500px;}
.ya_c00139{bottom:800.010000px;}
.y9_c00139{bottom:822.930000px;}
.y8_c00139{bottom:865.890000px;}
.y7_c00139{bottom:898.772469px;}
.y2_c00139{bottom:905.850000px;}
.y5_c00139{bottom:906.281439px;}
.y4_c00139{bottom:907.979892px;}
.y1_c00139{bottom:908.280000px;}
.y3_c00139{bottom:910.719000px;}
.y6_c00139{bottom:918.528587px;}
.h2_c00139{height:21.000000px;}
.h11_c00139{height:47.251914px;}
.hd_c00139{height:50.400000px;}
.h3_c00139{height:51.450000px;}
.h9_c00139{height:59.850000px;}
.h14_c00139{height:61.952509px;}
.h13_c00139{height:63.002551px;}
.he_c00139{height:65.100000px;}
.hc_c00139{height:66.150000px;}
.hf_c00139{height:67.200000px;}
.h10_c00139{height:67.202722px;}
.hb_c00139{height:68.250000px;}
.h12_c00139{height:68.252764px;}
.h8_c00139{height:69.300000px;}
.h16_c00139{height:69.302807px;}
.h7_c00139{height:70.350000px;}
.h15_c00139{height:70.352849px;}
.ha_c00139{height:71.400000px;}
.h6_c00139{height:84.000000px;}
.h4_c00139{height:189.027309px;}
.h5_c00139{height:191.127612px;}
.h0_c00139{height:1008.450000px;}
.h1_c00139{height:1008.750000px;}
.w0_c00139{width:676.890000px;}
.w1_c00139{width:677.250000px;}
.x0_c00139{left:0.000000px;}
.x5_c00139{left:72.655500px;}
.x4_c00139{left:76.950000px;}
.x8_c00139{left:96.760689px;}
.xb_c00139{left:126.090000px;}
.x23_c00139{left:127.170000px;}
.x17_c00139{left:128.790000px;}
.x2c_c00139{left:130.140000px;}
.x93_c00139{left:131.220000px;}
.xb3_c00139{left:133.812736px;}
.xb0_c00139{left:134.877157px;}
.x84_c00139{left:147.690000px;}
.x83_c00139{left:152.280000px;}
.x94_c00139{left:158.490000px;}
.x85_c00139{left:163.080000px;}
.x70_c00139{left:166.320000px;}
.xc_c00139{left:167.940000px;}
.x37_c00139{left:169.290000px;}
.x5b_c00139{left:170.910000px;}
.x4f_c00139{left:173.880000px;}
.x62_c00139{left:176.040000px;}
.x2d_c00139{left:180.090000px;}
.x8c_c00139{left:181.110000px;}
.x77_c00139{left:184.410000px;}
.x18_c00139{left:186.030000px;}
.x99_c00139{left:187.509000px;}
.x71_c00139{left:191.160000px;}
.x47_c00139{left:192.240000px;}
.x3e_c00139{left:194.130000px;}
.xab_c00139{left:198.667542px;}
.xa7_c00139{left:201.151429px;}
.x50_c00139{left:204.930000px;}
.x63_c00139{left:207.090000px;}
.x78_c00139{left:208.440000px;}
.x24_c00139{left:210.060000px;}
.x6b_c00139{left:214.110000px;}
.x95_c00139{left:215.730000px;}
.xb4_c00139{left:217.253235px;}
.x2e_c00139{left:218.700000px;}
.x86_c00139{left:219.780000px;}
.x9a_c00139{left:222.373500px;}
.x19_c00139{left:223.560000px;}
.xc0_c00139{left:224.911530px;}
.x7e_c00139{left:229.770000px;}
.xd_c00139{left:232.200000px;}
.x6_c00139{left:233.779500px;}
.x48_c00139{left:235.710000px;}
.x87_c00139{left:237.060000px;}
.x3f_c00139{left:243.270000px;}
.xb5_c00139{left:245.335234px;}
.x51_c00139{left:247.050000px;}
.x64_c00139{left:251.640000px;}
.xbc_c00139{left:257.195728px;}
.x9b_c00139{left:259.365000px;}
.xa3_c00139{left:261.542596px;}
.xe_c00139{left:263.520000px;}
.x25_c00139{left:267.300000px;}
.x96_c00139{left:270.270000px;}
.x65_c00139{left:274.050000px;}
.x88_c00139{left:279.720000px;}
.x49_c00139{left:282.420000px;}
.x2f_c00139{left:283.500000px;}
.xa8_c00139{left:285.393747px;}
.x1a_c00139{left:286.470000px;}
.x72_c00139{left:288.090000px;}
.x26_c00139{left:289.980000px;}
.x40_c00139{left:291.330000px;}
.x52_c00139{left:293.760000px;}
.xbd_c00139{left:296.312728px;}
.xa0_c00139{left:300.980187px;}
.x66_c00139{left:302.670000px;}
.xf_c00139{left:306.180000px;}
.x97_c00139{left:307.260000px;}
.x6c_c00139{left:308.340000px;}
.x1b_c00139{left:313.470000px;}
.x30_c00139{left:316.170000px;}
.x38_c00139{left:317.250000px;}
.x79_c00139{left:324.540000px;}
.x27_c00139{left:329.670000px;}
.x53_c00139{left:332.640000px;}
.x7_c00139{left:333.688500px;}
.x5c_c00139{left:334.800000px;}
.xa_c00139{left:336.690000px;}
.x67_c00139{left:340.470000px;}
.x8d_c00139{left:342.295500px;}
.x73_c00139{left:345.060000px;}
.xb1_c00139{left:346.343061px;}
.x4a_c00139{left:349.920000px;}
.x39_c00139{left:352.890000px;}
.x5d_c00139{left:354.780000px;}
.x41_c00139{left:359.370000px;}
.x54_c00139{left:360.990000px;}
.x8e_c00139{left:362.509500px;}
.x7f_c00139{left:370.440000px;}
.x4b_c00139{left:375.570000px;}
.x31_c00139{left:376.920000px;}
.xa4_c00139{left:378.465202px;}
.xbe_c00139{left:380.318728px;}
.x10_c00139{left:382.320000px;}
.x1c_c00139{left:383.940000px;}
.x80_c00139{left:385.560000px;}
.x7a_c00139{left:388.530000px;}
.x32_c00139{left:390.690000px;}
.x42_c00139{left:391.770000px;}
.x9c_c00139{left:396.823500px;}
.xc1_c00139{left:399.338164px;}
.x28_c00139{left:401.760000px;}
.x68_c00139{left:404.460000px;}
.x11_c00139{left:406.350000px;}
.x6d_c00139{left:407.970000px;}
.x81_c00139{left:411.210000px;}
.x43_c00139{left:412.560000px;}
.x1d_c00139{left:413.640000px;}
.x55_c00139{left:415.530000px;}
.x33_c00139{left:419.850000px;}
.xc2_c00139{left:421.208433px;}
.xa9_c00139{left:422.288830px;}
.x5e_c00139{left:423.360000px;}
.xb9_c00139{left:425.396149px;}
.x12_c00139{left:431.460000px;}
.xac_c00139{left:433.012240px;}
.x9d_c00139{left:434.586000px;}
.x74_c00139{left:435.780000px;}
.x6e_c00139{left:437.670000px;}
.x3a_c00139{left:439.830000px;}
.x56_c00139{left:442.800000px;}
.x1e_c00139{left:446.310000px;}
.x13_c00139{left:448.470000px;}
.xb6_c00139{left:451.119447px;}
.x34_c00139{left:452.790000px;}
.x8f_c00139{left:453.808500px;}
.xba_c00139{left:459.692460px;}
.x57_c00139{left:463.320000px;}
.xa5_c00139{left:465.093268px;}
.x29_c00139{left:469.530000px;}
.xa1_c00139{left:474.819687px;}
.x7b_c00139{left:476.010000px;}
.x75_c00139{left:480.060000px;}
.x14_c00139{left:482.490000px;}
.x1f_c00139{left:483.840000px;}
.xa2_c00139{left:485.886687px;}
.x3b_c00139{left:487.080000px;}
.x5f_c00139{left:489.780000px;}
.x90_c00139{left:492.100500px;}
.x58_c00139{left:494.640000px;}
.xad_c00139{left:495.669874px;}
.x69_c00139{left:497.340000px;}
.x4c_c00139{left:498.960000px;}
.x7c_c00139{left:500.310000px;}
.x44_c00139{left:502.200000px;}
.xaa_c00139{left:503.290891px;}
.x15_c00139{left:504.630000px;}
.x20_c00139{left:510.030000px;}
.x35_c00139{left:514.620000px;}
.x89_c00139{left:520.830000px;}
.x76_c00139{left:523.530000px;}
.x3c_c00139{left:528.660000px;}
.xbb_c00139{left:530.241108px;}
.x45_c00139{left:534.060000px;}
.xae_c00139{left:535.066590px;}
.x9e_c00139{left:536.946000px;}
.x91_c00139{left:538.788000px;}
.x4d_c00139{left:540.000000px;}
.xb7_c00139{left:544.811134px;}
.x59_c00139{left:546.750000px;}
.x92_c00139{left:549.354000px;}
.x2a_c00139{left:550.530000px;}
.x82_c00139{left:551.880000px;}
.x6f_c00139{left:554.040000px;}
.x3d_c00139{left:555.660000px;}
.x36_c00139{left:558.900000px;}
.x60_c00139{left:561.060000px;}
.x8a_c00139{left:564.840000px;}
.x98_c00139{left:566.460000px;}
.x5a_c00139{left:568.890000px;}
.x6a_c00139{left:570.510000px;}
.xbf_c00139{left:574.150228px;}
.xb2_c00139{left:575.551126px;}
.x9f_c00139{left:577.201500px;}
.xa6_c00139{left:579.653334px;}
.x4e_c00139{left:581.040000px;}
.x21_c00139{left:583.200000px;}
.x16_c00139{left:585.090000px;}
.x2b_c00139{left:590.760000px;}
.x22_c00139{left:593.460000px;}
.x46_c00139{left:594.810000px;}
.x7d_c00139{left:596.160000px;}
.xaf_c00139{left:597.170710px;}
.x61_c00139{left:599.400000px;}
.x8b_c00139{left:603.180000px;}
.xb8_c00139{left:623.330052px;}
.x9_c00139{left:645.560990px;}
.x2_c00139{left:670.680000px;}
.x1_c00139{left:671.760000px;}
.x3_c00139{left:673.380000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
.fs0_c00139{font-size:18.666667pt;}
.fsf_c00139{font-size:42.001701pt;}
.fsb_c00139{font-size:44.800000pt;}
.fs1_c00139{font-size:45.733333pt;}
.fs7_c00139{font-size:53.200000pt;}
.fs12_c00139{font-size:55.068897pt;}
.fs11_c00139{font-size:56.002268pt;}
.fsc_c00139{font-size:57.866667pt;}
.fsa_c00139{font-size:58.800000pt;}
.fsd_c00139{font-size:59.733333pt;}
.fse_c00139{font-size:59.735752pt;}
.fs9_c00139{font-size:60.666667pt;}
.fs10_c00139{font-size:60.669124pt;}
.fs6_c00139{font-size:61.600000pt;}
.fs14_c00139{font-size:61.602495pt;}
.fs5_c00139{font-size:62.533333pt;}
.fs13_c00139{font-size:62.535866pt;}
.fs8_c00139{font-size:63.466667pt;}
.fs4_c00139{font-size:74.666667pt;}
.fs2_c00139{font-size:168.024274pt;}
.fs3_c00139{font-size:169.891211pt;}
.y0_c00139{bottom:0.000000pt;}
.y99_c00139{bottom:181.902664pt;}
.y9d_c00139{bottom:181.902780pt;}
.y9a_c00139{bottom:181.902809pt;}
.y97_c00139{bottom:181.902853pt;}
.y98_c00139{bottom:181.902999pt;}
.y9f_c00139{bottom:181.903083pt;}
.y9c_c00139{bottom:181.903275pt;}
.y9e_c00139{bottom:181.903364pt;}
.y9b_c00139{bottom:181.903396pt;}
.y96_c00139{bottom:181.903428pt;}
.y95_c00139{bottom:199.525075pt;}
.y94_c00139{bottom:199.844707pt;}
.y93_c00139{bottom:200.240167pt;}
.y92_c00139{bottom:200.408479pt;}
.y91_c00139{bottom:200.805859pt;}
.y90_c00139{bottom:201.075727pt;}
.y8f_c00139{bottom:201.356743pt;}
.y8e_c00139{bottom:201.527575pt;}
.y8d_c00139{bottom:201.747775pt;}
.y8c_c00139{bottom:202.060711pt;}
.y8b_c00139{bottom:202.343947pt;}
.y8a_c00139{bottom:203.037199pt;}
.y89_c00139{bottom:220.776209pt;}
.y88_c00139{bottom:220.989123pt;}
.y87_c00139{bottom:221.100733pt;}
.y86_c00139{bottom:221.478865pt;}
.y85_c00139{bottom:221.601117pt;}
.y84_c00139{bottom:221.844819pt;}
.y83_c00139{bottom:222.080757pt;}
.y82_c00139{bottom:222.470048pt;}
.y81_c00139{bottom:222.696976pt;}
.y80_c00139{bottom:222.969005pt;}
.y7f_c00139{bottom:223.219941pt;}
.y7e_c00139{bottom:223.494263pt;}
.y7d_c00139{bottom:223.915267pt;}
.y7c_c00139{bottom:240.549657pt;}
.y7b_c00139{bottom:241.037797pt;}
.y7a_c00139{bottom:241.402733pt;}
.y79_c00139{bottom:241.620651pt;}
.y78_c00139{bottom:241.849293pt;}
.y77_c00139{bottom:242.070437pt;}
.y76_c00139{bottom:242.227353pt;}
.y75_c00139{bottom:242.542611pt;}
.y74_c00139{bottom:242.900228pt;}
.y73_c00139{bottom:243.075547pt;}
.y72_c00139{bottom:243.595059pt;}
.y71_c00139{bottom:261.582895pt;}
.y70_c00139{bottom:261.720745pt;}
.y6f_c00139{bottom:262.013629pt;}
.y6e_c00139{bottom:262.451131pt;}
.y6d_c00139{bottom:262.790892pt;}
.y6c_c00139{bottom:262.987739pt;}
.y6b_c00139{bottom:263.212543pt;}
.y6a_c00139{bottom:263.819391pt;}
.y69_c00139{bottom:264.093496pt;}
.y68_c00139{bottom:264.222060pt;}
.y67_c00139{bottom:264.716255pt;}
.y66_c00139{bottom:282.456976pt;}
.y65_c00139{bottom:282.680004pt;}
.y64_c00139{bottom:282.843133pt;}
.y63_c00139{bottom:283.087635pt;}
.y62_c00139{bottom:283.476887pt;}
.y61_c00139{bottom:283.599984pt;}
.y60_c00139{bottom:283.864221pt;}
.y5f_c00139{bottom:283.998595pt;}
.y5e_c00139{bottom:284.255729pt;}
.y5d_c00139{bottom:284.528304pt;}
.y5c_c00139{bottom:284.803853pt;}
.y5b_c00139{bottom:284.936944pt;}
.y5a_c00139{bottom:285.357220pt;}
.y59_c00139{bottom:304.017164pt;}
.y58_c00139{bottom:304.017499pt;}
.y55_c00139{bottom:304.017596pt;}
.y54_c00139{bottom:304.017664pt;}
.y57_c00139{bottom:304.017700pt;}
.y53_c00139{bottom:304.017839pt;}
.y52_c00139{bottom:304.017895pt;}
.y51_c00139{bottom:304.018069pt;}
.y56_c00139{bottom:304.018115pt;}
.y50_c00139{bottom:304.018431pt;}
.y4f_c00139{bottom:304.018620pt;}
.y4e_c00139{bottom:304.019061pt;}
.y4d_c00139{bottom:304.019556pt;}
.y4c_c00139{bottom:322.415007pt;}
.y4b_c00139{bottom:322.546513pt;}
.y4a_c00139{bottom:322.961067pt;}
.y49_c00139{bottom:323.127471pt;}
.y48_c00139{bottom:323.498044pt;}
.y47_c00139{bottom:323.665816pt;}
.y46_c00139{bottom:323.764812pt;}
.y45_c00139{bottom:324.393180pt;}
.y44_c00139{bottom:324.542489pt;}
.y43_c00139{bottom:324.833839pt;}
.y42_c00139{bottom:324.972783pt;}
.y41_c00139{bottom:325.199025pt;}
.y40_c00139{bottom:342.355984pt;}
.y3f_c00139{bottom:342.727276pt;}
.y3e_c00139{bottom:343.004080pt;}
.y3d_c00139{bottom:343.092616pt;}
.y3c_c00139{bottom:343.397080pt;}
.y3b_c00139{bottom:343.504900pt;}
.y3a_c00139{bottom:343.597948pt;}
.y39_c00139{bottom:344.047348pt;}
.y38_c00139{bottom:344.222224pt;}
.y36_c00139{bottom:344.483332pt;}
.y37_c00139{bottom:344.483668pt;}
.y35_c00139{bottom:344.705788pt;}
.y34_c00139{bottom:344.872096pt;}
.y33_c00139{bottom:345.161716pt;}
.y32_c00139{bottom:345.485932pt;}
.y31_c00139{bottom:345.839812pt;}
.y30_c00139{bottom:363.392605pt;}
.y2f_c00139{bottom:363.714649pt;}
.y2e_c00139{bottom:364.533529pt;}
.y2d_c00139{bottom:364.835629pt;}
.y2c_c00139{bottom:365.274325pt;}
.y2b_c00139{bottom:365.568097pt;}
.y2a_c00139{bottom:365.935297pt;}
.y29_c00139{bottom:366.231229pt;}
.y28_c00139{bottom:366.510145pt;}
.y27_c00139{bottom:366.961333pt;}
.y26_c00139{bottom:385.604000pt;}
.y25_c00139{bottom:404.285333pt;}
.y24_c00139{bottom:404.360000pt;}
.y23_c00139{bottom:404.692000pt;}
.y22_c00139{bottom:404.964000pt;}
.y21_c00139{bottom:405.098667pt;}
.y20_c00139{bottom:405.262667pt;}
.y1f_c00139{bottom:405.613333pt;}
.y1e_c00139{bottom:405.757333pt;}
.y1d_c00139{bottom:406.149333pt;}
.y1c_c00139{bottom:406.550667pt;}
.y1b_c00139{bottom:406.702667pt;}
.y1a_c00139{bottom:406.904000pt;}
.y19_c00139{bottom:407.280000pt;}
.y18_c00139{bottom:426.182667pt;}
.y17_c00139{bottom:446.553333pt;}
.y16_c00139{bottom:466.470667pt;}
.y15_c00139{bottom:487.081333pt;}
.y14_c00139{bottom:507.428000pt;}
.y13_c00139{bottom:527.813333pt;}
.y12_c00139{bottom:548.022667pt;}
.y11_c00139{bottom:568.130667pt;}
.y10_c00139{bottom:588.798667pt;}
.yf_c00139{bottom:608.586667pt;}
.ye_c00139{bottom:629.804000pt;}
.yd_c00139{bottom:650.186667pt;}
.yc_c00139{bottom:670.348000pt;}
.yb_c00139{bottom:690.772000pt;}
.ya_c00139{bottom:711.120000pt;}
.y9_c00139{bottom:731.493333pt;}
.y8_c00139{bottom:769.680000pt;}
.y7_c00139{bottom:798.908861pt;}
.y2_c00139{bottom:805.200000pt;}
.y5_c00139{bottom:805.583501pt;}
.y4_c00139{bottom:807.093237pt;}
.y1_c00139{bottom:807.360000pt;}
.y3_c00139{bottom:809.528000pt;}
.y6_c00139{bottom:816.469855pt;}
.h2_c00139{height:18.666667pt;}
.h11_c00139{height:42.001701pt;}
.hd_c00139{height:44.800000pt;}
.h3_c00139{height:45.733333pt;}
.h9_c00139{height:53.200000pt;}
.h14_c00139{height:55.068897pt;}
.h13_c00139{height:56.002268pt;}
.he_c00139{height:57.866667pt;}
.hc_c00139{height:58.800000pt;}
.hf_c00139{height:59.733333pt;}
.h10_c00139{height:59.735752pt;}
.hb_c00139{height:60.666667pt;}
.h12_c00139{height:60.669124pt;}
.h8_c00139{height:61.600000pt;}
.h16_c00139{height:61.602495pt;}
.h7_c00139{height:62.533333pt;}
.h15_c00139{height:62.535866pt;}
.ha_c00139{height:63.466667pt;}
.h6_c00139{height:74.666667pt;}
.h4_c00139{height:168.024274pt;}
.h5_c00139{height:169.891211pt;}
.h0_c00139{height:896.400000pt;}
.h1_c00139{height:896.666667pt;}
.w0_c00139{width:601.680000pt;}
.w1_c00139{width:602.000000pt;}
.x0_c00139{left:0.000000pt;}
.x5_c00139{left:64.582667pt;}
.x4_c00139{left:68.400000pt;}
.x8_c00139{left:86.009501pt;}
.xb_c00139{left:112.080000pt;}
.x23_c00139{left:113.040000pt;}
.x17_c00139{left:114.480000pt;}
.x2c_c00139{left:115.680000pt;}
.x93_c00139{left:116.640000pt;}
.xb3_c00139{left:118.944655pt;}
.xb0_c00139{left:119.890807pt;}
.x84_c00139{left:131.280000pt;}
.x83_c00139{left:135.360000pt;}
.x94_c00139{left:140.880000pt;}
.x85_c00139{left:144.960000pt;}
.x70_c00139{left:147.840000pt;}
.xc_c00139{left:149.280000pt;}
.x37_c00139{left:150.480000pt;}
.x5b_c00139{left:151.920000pt;}
.x4f_c00139{left:154.560000pt;}
.x62_c00139{left:156.480000pt;}
.x2d_c00139{left:160.080000pt;}
.x8c_c00139{left:160.986667pt;}
.x77_c00139{left:163.920000pt;}
.x18_c00139{left:165.360000pt;}
.x99_c00139{left:166.674667pt;}
.x71_c00139{left:169.920000pt;}
.x47_c00139{left:170.880000pt;}
.x3e_c00139{left:172.560000pt;}
.xab_c00139{left:176.593371pt;}
.xa7_c00139{left:178.801271pt;}
.x50_c00139{left:182.160000pt;}
.x63_c00139{left:184.080000pt;}
.x78_c00139{left:185.280000pt;}
.x24_c00139{left:186.720000pt;}
.x6b_c00139{left:190.320000pt;}
.x95_c00139{left:191.760000pt;}
.xb4_c00139{left:193.113987pt;}
.x2e_c00139{left:194.400000pt;}
.x86_c00139{left:195.360000pt;}
.x9a_c00139{left:197.665333pt;}
.x19_c00139{left:198.720000pt;}
.xc0_c00139{left:199.921360pt;}
.x7e_c00139{left:204.240000pt;}
.xd_c00139{left:206.400000pt;}
.x6_c00139{left:207.804000pt;}
.x48_c00139{left:209.520000pt;}
.x87_c00139{left:210.720000pt;}
.x3f_c00139{left:216.240000pt;}
.xb5_c00139{left:218.075764pt;}
.x51_c00139{left:219.600000pt;}
.x64_c00139{left:223.680000pt;}
.xbc_c00139{left:228.618425pt;}
.x9b_c00139{left:230.546667pt;}
.xa3_c00139{left:232.482308pt;}
.xe_c00139{left:234.240000pt;}
.x25_c00139{left:237.600000pt;}
.x96_c00139{left:240.240000pt;}
.x65_c00139{left:243.600000pt;}
.x88_c00139{left:248.640000pt;}
.x49_c00139{left:251.040000pt;}
.x2f_c00139{left:252.000000pt;}
.xa8_c00139{left:253.683331pt;}
.x1a_c00139{left:254.640000pt;}
.x72_c00139{left:256.080000pt;}
.x26_c00139{left:257.760000pt;}
.x40_c00139{left:258.960000pt;}
.x52_c00139{left:261.120000pt;}
.xbd_c00139{left:263.389092pt;}
.xa0_c00139{left:267.537944pt;}
.x66_c00139{left:269.040000pt;}
.xf_c00139{left:272.160000pt;}
.x97_c00139{left:273.120000pt;}
.x6c_c00139{left:274.080000pt;}
.x1b_c00139{left:278.640000pt;}
.x30_c00139{left:281.040000pt;}
.x38_c00139{left:282.000000pt;}
.x79_c00139{left:288.480000pt;}
.x27_c00139{left:293.040000pt;}
.x53_c00139{left:295.680000pt;}
.x7_c00139{left:296.612000pt;}
.x5c_c00139{left:297.600000pt;}
.xa_c00139{left:299.280000pt;}
.x67_c00139{left:302.640000pt;}
.x8d_c00139{left:304.262667pt;}
.x73_c00139{left:306.720000pt;}
.xb1_c00139{left:307.860499pt;}
.x4a_c00139{left:311.040000pt;}
.x39_c00139{left:313.680000pt;}
.x5d_c00139{left:315.360000pt;}
.x41_c00139{left:319.440000pt;}
.x54_c00139{left:320.880000pt;}
.x8e_c00139{left:322.230667pt;}
.x7f_c00139{left:329.280000pt;}
.x4b_c00139{left:333.840000pt;}
.x31_c00139{left:335.040000pt;}
.xa4_c00139{left:336.413513pt;}
.xbe_c00139{left:338.061092pt;}
.x10_c00139{left:339.840000pt;}
.x1c_c00139{left:341.280000pt;}
.x80_c00139{left:342.720000pt;}
.x7a_c00139{left:345.360000pt;}
.x32_c00139{left:347.280000pt;}
.x42_c00139{left:348.240000pt;}
.x9c_c00139{left:352.732000pt;}
.xc1_c00139{left:354.967257pt;}
.x28_c00139{left:357.120000pt;}
.x68_c00139{left:359.520000pt;}
.x11_c00139{left:361.200000pt;}
.x6d_c00139{left:362.640000pt;}
.x81_c00139{left:365.520000pt;}
.x43_c00139{left:366.720000pt;}
.x1d_c00139{left:367.680000pt;}
.x55_c00139{left:369.360000pt;}
.x33_c00139{left:373.200000pt;}
.xc2_c00139{left:374.407496pt;}
.xa9_c00139{left:375.367849pt;}
.x5e_c00139{left:376.320000pt;}
.xb9_c00139{left:378.129911pt;}
.x12_c00139{left:383.520000pt;}
.xac_c00139{left:384.899769pt;}
.x9d_c00139{left:386.298667pt;}
.x74_c00139{left:387.360000pt;}
.x6e_c00139{left:389.040000pt;}
.x3a_c00139{left:390.960000pt;}
.x56_c00139{left:393.600000pt;}
.x1e_c00139{left:396.720000pt;}
.x13_c00139{left:398.640000pt;}
.xb6_c00139{left:400.995064pt;}
.x34_c00139{left:402.480000pt;}
.x8f_c00139{left:403.385333pt;}
.xba_c00139{left:408.615520pt;}
.x57_c00139{left:411.840000pt;}
.xa5_c00139{left:413.416239pt;}
.x29_c00139{left:417.360000pt;}
.xa1_c00139{left:422.061944pt;}
.x7b_c00139{left:423.120000pt;}
.x75_c00139{left:426.720000pt;}
.x14_c00139{left:428.880000pt;}
.x1f_c00139{left:430.080000pt;}
.xa2_c00139{left:431.899277pt;}
.x3b_c00139{left:432.960000pt;}
.x5f_c00139{left:435.360000pt;}
.x90_c00139{left:437.422667pt;}
.x58_c00139{left:439.680000pt;}
.xad_c00139{left:440.595444pt;}
.x69_c00139{left:442.080000pt;}
.x4c_c00139{left:443.520000pt;}
.x7c_c00139{left:444.720000pt;}
.x44_c00139{left:446.400000pt;}
.xaa_c00139{left:447.369681pt;}
.x15_c00139{left:448.560000pt;}
.x20_c00139{left:453.360000pt;}
.x35_c00139{left:457.440000pt;}
.x89_c00139{left:462.960000pt;}
.x76_c00139{left:465.360000pt;}
.x3c_c00139{left:469.920000pt;}
.xbb_c00139{left:471.325429pt;}
.x45_c00139{left:474.720000pt;}
.xae_c00139{left:475.614747pt;}
.x9e_c00139{left:477.285333pt;}
.x91_c00139{left:478.922667pt;}
.x4d_c00139{left:480.000000pt;}
.xb7_c00139{left:484.276564pt;}
.x59_c00139{left:486.000000pt;}
.x92_c00139{left:488.314667pt;}
.x2a_c00139{left:489.360000pt;}
.x82_c00139{left:490.560000pt;}
.x6f_c00139{left:492.480000pt;}
.x3d_c00139{left:493.920000pt;}
.x36_c00139{left:496.800000pt;}
.x60_c00139{left:498.720000pt;}
.x8a_c00139{left:502.080000pt;}
.x98_c00139{left:503.520000pt;}
.x5a_c00139{left:505.680000pt;}
.x6a_c00139{left:507.120000pt;}
.xbf_c00139{left:510.355759pt;}
.xb2_c00139{left:511.601001pt;}
.x9f_c00139{left:513.068000pt;}
.xa6_c00139{left:515.247408pt;}
.x4e_c00139{left:516.480000pt;}
.x21_c00139{left:518.400000pt;}
.x16_c00139{left:520.080000pt;}
.x2b_c00139{left:525.120000pt;}
.x22_c00139{left:527.520000pt;}
.x46_c00139{left:528.720000pt;}
.x7d_c00139{left:529.920000pt;}
.xaf_c00139{left:530.818409pt;}
.x61_c00139{left:532.800000pt;}
.x8b_c00139{left:536.160000pt;}
.xb8_c00139{left:554.071157pt;}
.x9_c00139{left:573.831991pt;}
.x2_c00139{left:596.160000pt;}
.x1_c00139{left:597.120000pt;}
.x3_c00139{left:598.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_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_ef4e99a7aa2876b3106553d3.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;}
.m57_c00140{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{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);}
.m50_c00140{transform:matrix(0.027550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027550,0.000000,0.000000,0.250000,0,0);}
.m3c_c00140{transform:matrix(0.059790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059790,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.065585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065585,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{transform:matrix(0.076180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00140{transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.m78_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);}
.m3f_c00140{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);}
.m6c_c00140{transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{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);}
.mb_c00140{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);}
.m53_c00140{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);}
.m5_c00140{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);}
.m1a_c00140{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);}
.m6a_c00140{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);}
.m8d_c00140{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);}
.m66_c00140{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);}
.m92_c00140{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);}
.m62_c00140{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);}
.ma_c00140{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);}
.m8c_c00140{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);}
.m45_c00140{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);}
.m3e_c00140{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);}
.m73_c00140{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);}
.m52_c00140{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);}
.m6f_c00140{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);}
.m20_c00140{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);}
.m18_c00140{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);}
.m87_c00140{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);}
.m39_c00140{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_c00140{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);}
.m54_c00140{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);}
.m40_c00140{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);}
.m83_c00140{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);}
.m85_c00140{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);}
.m61_c00140{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);}
.m1c_c00140{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);}
.m31_c00140{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);}
.md_c00140{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);}
.m93_c00140{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);}
.m80_c00140{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);}
.m4e_c00140{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);}
.m70_c00140{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);}
.m6e_c00140{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);}
.m1b_c00140{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);}
.m29_c00140{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);}
.m4c_c00140{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);}
.m46_c00140{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);}
.m7b_c00140{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);}
.m55_c00140{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);}
.m77_c00140{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);}
.m94_c00140{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);}
.mc_c00140{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);}
.m17_c00140{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);}
.m84_c00140{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);}
.m68_c00140{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);}
.m74_c00140{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);}
.m69_c00140{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);}
.m6d_c00140{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);}
.m42_c00140{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);}
.m16_c00140{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);}
.m4d_c00140{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);}
.m15_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);}
.m59_c00140{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);}
.m7d_c00140{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);}
.m7a_c00140{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);}
.m4b_c00140{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);}
.m5f_c00140{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);}
.m86_c00140{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);}
.m64_c00140{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);}
.m8a_c00140{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);}
.m72_c00140{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);}
.m5b_c00140{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);}
.m6b_c00140{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);}
.m1f_c00140{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);}
.m23_c00140{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);}
.m27_c00140{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);}
.m95_c00140{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);}
.m2f_c00140{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);}
.m19_c00140{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);}
.m4a_c00140{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);}
.m49_c00140{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);}
.m41_c00140{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);}
.m43_c00140{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);}
.m24_c00140{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);}
.m1d_c00140{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);}
.m44_c00140{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);}
.m1e_c00140{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);}
.m14_c00140{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);}
.m36_c00140{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);}
.m3d_c00140{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);}
.m22_c00140{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);}
.m47_c00140{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);}
.me_c00140{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);}
.m4f_c00140{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);}
.m32_c00140{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);}
.m90_c00140{transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212765,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{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);}
.m30_c00140{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);}
.m65_c00140{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);}
.m35_c00140{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);}
.m5c_c00140{transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{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);}
.m5d_c00140{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);}
.m12_c00140{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);}
.m60_c00140{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);}
.m7c_c00140{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);}
.m58_c00140{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);}
.m79_c00140{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);}
.m7e_c00140{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);}
.m37_c00140{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);}
.m33_c00140{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);}
.m75_c00140{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);}
.m6_c00140{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);}
.m10_c00140{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{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);}
.m56_c00140{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);}
.m8f_c00140{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{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);}
.m5a_c00140{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{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);}
.m91_c00140{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);}
.m8e_c00140{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{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);}
.m2b_c00140{transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{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);}
.m0_c00140{transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);}
.m51_c00140{transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00140{transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.283495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283495,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284865,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303445,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.313840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313840,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.319830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319830,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.367621,0.008088,-0.005499,0.249940,0,0);-ms-transform:matrix(0.367621,0.008088,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.367621,0.008088,-0.005499,0.249940,0,0);}
.m8_c00140{transform:matrix(0.368176,0.008100,-0.005499,0.249940,0,0);-ms-transform:matrix(0.368176,0.008100,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.368176,0.008100,-0.005499,0.249940,0,0);}
.m13_c00140{transform:matrix(0.386470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386470,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.401815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401815,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.451995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451995,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.467360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467360,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.724325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724325,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:55.650000px;}
.fs8_c00140{font-size:57.750000px;}
.fsd_c00140{font-size:59.850000px;}
.fs4_c00140{font-size:64.050000px;}
.fsc_c00140{font-size:65.100000px;}
.fsa_c00140{font-size:66.150000px;}
.fsb_c00140{font-size:67.200000px;}
.fs9_c00140{font-size:68.250000px;}
.fs7_c00140{font-size:69.300000px;}
.fs6_c00140{font-size:70.350000px;}
.fs5_c00140{font-size:71.400000px;}
.fs3_c00140{font-size:72.450000px;}
.fs1_c00140{font-size:123.900000px;}
.fs0_c00140{font-size:124.950000px;}
.fs2_c00140{font-size:127.080742px;}
.y0_c00140{bottom:0.000000px;}
.y1f_c00140{bottom:164.892000px;}
.y1e_c00140{bottom:187.485000px;}
.y1d_c00140{bottom:210.633000px;}
.y1c_c00140{bottom:233.820000px;}
.y1b_c00140{bottom:256.335000px;}
.y1a_c00140{bottom:278.208000px;}
.y19_c00140{bottom:301.590000px;}
.y18_c00140{bottom:323.893500px;}
.y17_c00140{bottom:346.545000px;}
.y16_c00140{bottom:369.279000px;}
.y15_c00140{bottom:392.214000px;}
.y14_c00140{bottom:415.288500px;}
.y13_c00140{bottom:437.847000px;}
.y12_c00140{bottom:460.171500px;}
.y11_c00140{bottom:483.139500px;}
.y10_c00140{bottom:505.978500px;}
.yf_c00140{bottom:528.420000px;}
.ye_c00140{bottom:551.703000px;}
.yd_c00140{bottom:573.088500px;}
.yc_c00140{bottom:595.923000px;}
.yb_c00140{bottom:617.758500px;}
.ya_c00140{bottom:639.598500px;}
.y9_c00140{bottom:662.946000px;}
.y8_c00140{bottom:685.702500px;}
.y7_c00140{bottom:708.447000px;}
.y6_c00140{bottom:734.646000px;}
.y5_c00140{bottom:788.940270px;}
.y4_c00140{bottom:793.537500px;}
.y2_c00140{bottom:859.686000px;}
.y3_c00140{bottom:864.174000px;}
.y1_c00140{bottom:906.202500px;}
.h10_c00140{height:55.650000px;}
.ha_c00140{height:57.750000px;}
.hf_c00140{height:59.850000px;}
.h6_c00140{height:64.050000px;}
.he_c00140{height:65.100000px;}
.hc_c00140{height:66.150000px;}
.hd_c00140{height:67.200000px;}
.hb_c00140{height:68.250000px;}
.h9_c00140{height:69.300000px;}
.h8_c00140{height:70.350000px;}
.h7_c00140{height:71.400000px;}
.h5_c00140{height:72.450000px;}
.h3_c00140{height:123.900000px;}
.h2_c00140{height:124.950000px;}
.h4_c00140{height:127.080742px;}
.h1_c00140{height:1005.000000px;}
.h0_c00140{height:1005.150000px;}
.w0_c00140{width:705.450000px;}
.w1_c00140{width:705.750000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:50.760000px;}
.x2_c00140{left:99.630000px;}
.x8_c00140{left:143.841000px;}
.x21_c00140{left:149.580000px;}
.x51_c00140{left:151.200000px;}
.x24_c00140{left:164.430000px;}
.x31_c00140{left:174.690000px;}
.x22_c00140{left:184.410000px;}
.x53_c00140{left:185.490000px;}
.x13_c00140{left:186.570000px;}
.x26_c00140{left:187.650000px;}
.xa_c00140{left:189.000000px;}
.x1d_c00140{left:190.350000px;}
.x3f_c00140{left:191.700000px;}
.x14_c00140{left:208.440000px;}
.x2b_c00140{left:212.760000px;}
.x34_c00140{left:214.380000px;}
.x37_c00140{left:216.000000px;}
.x3d_c00140{left:221.670000px;}
.x18_c00140{left:223.020000px;}
.xb_c00140{left:224.910000px;}
.x4e_c00140{left:226.260000px;}
.x1e_c00140{left:233.550000px;}
.x27_c00140{left:234.900000px;}
.x10_c00140{left:236.520000px;}
.x46_c00140{left:244.350000px;}
.x19_c00140{left:245.430000px;}
.x15_c00140{left:248.400000px;}
.x52_c00140{left:251.370000px;}
.x28_c00140{left:254.070000px;}
.x2c_c00140{left:256.500000px;}
.x3c_c00140{left:258.660000px;}
.x16_c00140{left:262.980000px;}
.x39_c00140{left:264.060000px;}
.x47_c00140{left:267.840000px;}
.x3e_c00140{left:269.190000px;}
.x40_c00140{left:272.160000px;}
.x43_c00140{left:273.510000px;}
.x38_c00140{left:275.130000px;}
.xc_c00140{left:276.210000px;}
.x23_c00140{left:281.880000px;}
.x1f_c00140{left:285.120000px;}
.x54_c00140{left:286.470000px;}
.x4f_c00140{left:289.170000px;}
.x4a_c00140{left:290.250000px;}
.x32_c00140{left:294.030000px;}
.xd_c00140{left:298.080000px;}
.x1a_c00140{left:299.430000px;}
.x2d_c00140{left:301.320000px;}
.x20_c00140{left:304.290000px;}
.x35_c00140{left:306.450000px;}
.x17_c00140{left:307.530000px;}
.x29_c00140{left:309.960000px;}
.x6_c00140{left:311.388000px;}
.x41_c00140{left:312.930000px;}
.x2e_c00140{left:316.170000px;}
.x44_c00140{left:318.600000px;}
.x1b_c00140{left:321.840000px;}
.xe_c00140{left:326.700000px;}
.x36_c00140{left:328.320000px;}
.x11_c00140{left:329.400000px;}
.x3_c00140{left:331.020000px;}
.x2f_c00140{left:332.910000px;}
.x1c_c00140{left:338.040000px;}
.x48_c00140{left:339.660000px;}
.x4c_c00140{left:343.980000px;}
.x45_c00140{left:345.060000px;}
.x4b_c00140{left:347.220000px;}
.x2a_c00140{left:348.840000px;}
.xf_c00140{left:351.000000px;}
.x9_c00140{left:352.806000px;}
.x3a_c00140{left:361.530000px;}
.x30_c00140{left:362.880000px;}
.x4d_c00140{left:364.770000px;}
.x33_c00140{left:368.550000px;}
.x12_c00140{left:371.790000px;}
.x3b_c00140{left:379.620000px;}
.x42_c00140{left:387.450000px;}
.x4_c00140{left:393.660000px;}
.x25_c00140{left:397.980000px;}
.x49_c00140{left:400.680000px;}
.x50_c00140{left:408.510000px;}
.x5_c00140{left:511.650000px;}
.x7_c00140{left:610.635000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
.fse_c00140{font-size:49.466667pt;}
.fs8_c00140{font-size:51.333333pt;}
.fsd_c00140{font-size:53.200000pt;}
.fs4_c00140{font-size:56.933333pt;}
.fsc_c00140{font-size:57.866667pt;}
.fsa_c00140{font-size:58.800000pt;}
.fsb_c00140{font-size:59.733333pt;}
.fs9_c00140{font-size:60.666667pt;}
.fs7_c00140{font-size:61.600000pt;}
.fs6_c00140{font-size:62.533333pt;}
.fs5_c00140{font-size:63.466667pt;}
.fs3_c00140{font-size:64.400000pt;}
.fs1_c00140{font-size:110.133333pt;}
.fs0_c00140{font-size:111.066667pt;}
.fs2_c00140{font-size:112.960660pt;}
.y0_c00140{bottom:0.000000pt;}
.y1f_c00140{bottom:146.570667pt;}
.y1e_c00140{bottom:166.653333pt;}
.y1d_c00140{bottom:187.229333pt;}
.y1c_c00140{bottom:207.840000pt;}
.y1b_c00140{bottom:227.853333pt;}
.y1a_c00140{bottom:247.296000pt;}
.y19_c00140{bottom:268.080000pt;}
.y18_c00140{bottom:287.905333pt;}
.y17_c00140{bottom:308.040000pt;}
.y16_c00140{bottom:328.248000pt;}
.y15_c00140{bottom:348.634667pt;}
.y14_c00140{bottom:369.145333pt;}
.y13_c00140{bottom:389.197333pt;}
.y12_c00140{bottom:409.041333pt;}
.y11_c00140{bottom:429.457333pt;}
.y10_c00140{bottom:449.758667pt;}
.yf_c00140{bottom:469.706667pt;}
.ye_c00140{bottom:490.402667pt;}
.yd_c00140{bottom:509.412000pt;}
.yc_c00140{bottom:529.709333pt;}
.yb_c00140{bottom:549.118667pt;}
.ya_c00140{bottom:568.532000pt;}
.y9_c00140{bottom:589.285333pt;}
.y8_c00140{bottom:609.513333pt;}
.y7_c00140{bottom:629.730667pt;}
.y6_c00140{bottom:653.018667pt;}
.y5_c00140{bottom:701.280240pt;}
.y4_c00140{bottom:705.366667pt;}
.y2_c00140{bottom:764.165333pt;}
.y3_c00140{bottom:768.154667pt;}
.y1_c00140{bottom:805.513333pt;}
.h10_c00140{height:49.466667pt;}
.ha_c00140{height:51.333333pt;}
.hf_c00140{height:53.200000pt;}
.h6_c00140{height:56.933333pt;}
.he_c00140{height:57.866667pt;}
.hc_c00140{height:58.800000pt;}
.hd_c00140{height:59.733333pt;}
.hb_c00140{height:60.666667pt;}
.h9_c00140{height:61.600000pt;}
.h8_c00140{height:62.533333pt;}
.h7_c00140{height:63.466667pt;}
.h5_c00140{height:64.400000pt;}
.h3_c00140{height:110.133333pt;}
.h2_c00140{height:111.066667pt;}
.h4_c00140{height:112.960660pt;}
.h1_c00140{height:893.333333pt;}
.h0_c00140{height:893.466667pt;}
.w0_c00140{width:627.066667pt;}
.w1_c00140{width:627.333333pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:45.120000pt;}
.x2_c00140{left:88.560000pt;}
.x8_c00140{left:127.858667pt;}
.x21_c00140{left:132.960000pt;}
.x51_c00140{left:134.400000pt;}
.x24_c00140{left:146.160000pt;}
.x31_c00140{left:155.280000pt;}
.x22_c00140{left:163.920000pt;}
.x53_c00140{left:164.880000pt;}
.x13_c00140{left:165.840000pt;}
.x26_c00140{left:166.800000pt;}
.xa_c00140{left:168.000000pt;}
.x1d_c00140{left:169.200000pt;}
.x3f_c00140{left:170.400000pt;}
.x14_c00140{left:185.280000pt;}
.x2b_c00140{left:189.120000pt;}
.x34_c00140{left:190.560000pt;}
.x37_c00140{left:192.000000pt;}
.x3d_c00140{left:197.040000pt;}
.x18_c00140{left:198.240000pt;}
.xb_c00140{left:199.920000pt;}
.x4e_c00140{left:201.120000pt;}
.x1e_c00140{left:207.600000pt;}
.x27_c00140{left:208.800000pt;}
.x10_c00140{left:210.240000pt;}
.x46_c00140{left:217.200000pt;}
.x19_c00140{left:218.160000pt;}
.x15_c00140{left:220.800000pt;}
.x52_c00140{left:223.440000pt;}
.x28_c00140{left:225.840000pt;}
.x2c_c00140{left:228.000000pt;}
.x3c_c00140{left:229.920000pt;}
.x16_c00140{left:233.760000pt;}
.x39_c00140{left:234.720000pt;}
.x47_c00140{left:238.080000pt;}
.x3e_c00140{left:239.280000pt;}
.x40_c00140{left:241.920000pt;}
.x43_c00140{left:243.120000pt;}
.x38_c00140{left:244.560000pt;}
.xc_c00140{left:245.520000pt;}
.x23_c00140{left:250.560000pt;}
.x1f_c00140{left:253.440000pt;}
.x54_c00140{left:254.640000pt;}
.x4f_c00140{left:257.040000pt;}
.x4a_c00140{left:258.000000pt;}
.x32_c00140{left:261.360000pt;}
.xd_c00140{left:264.960000pt;}
.x1a_c00140{left:266.160000pt;}
.x2d_c00140{left:267.840000pt;}
.x20_c00140{left:270.480000pt;}
.x35_c00140{left:272.400000pt;}
.x17_c00140{left:273.360000pt;}
.x29_c00140{left:275.520000pt;}
.x6_c00140{left:276.789333pt;}
.x41_c00140{left:278.160000pt;}
.x2e_c00140{left:281.040000pt;}
.x44_c00140{left:283.200000pt;}
.x1b_c00140{left:286.080000pt;}
.xe_c00140{left:290.400000pt;}
.x36_c00140{left:291.840000pt;}
.x11_c00140{left:292.800000pt;}
.x3_c00140{left:294.240000pt;}
.x2f_c00140{left:295.920000pt;}
.x1c_c00140{left:300.480000pt;}
.x48_c00140{left:301.920000pt;}
.x4c_c00140{left:305.760000pt;}
.x45_c00140{left:306.720000pt;}
.x4b_c00140{left:308.640000pt;}
.x2a_c00140{left:310.080000pt;}
.xf_c00140{left:312.000000pt;}
.x9_c00140{left:313.605333pt;}
.x3a_c00140{left:321.360000pt;}
.x30_c00140{left:322.560000pt;}
.x4d_c00140{left:324.240000pt;}
.x33_c00140{left:327.600000pt;}
.x12_c00140{left:330.480000pt;}
.x3b_c00140{left:337.440000pt;}
.x42_c00140{left:344.400000pt;}
.x4_c00140{left:349.920000pt;}
.x25_c00140{left:353.760000pt;}
.x49_c00140{left:356.160000pt;}
.x50_c00140{left:363.120000pt;}
.x5_c00140{left:454.800000pt;}
.x7_c00140{left:542.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m3c_c00141{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);}
.m69_c00141{transform:matrix(0.024275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024275,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00141{transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);}
.ma5_c00141{transform:matrix(0.081190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081190,0.000000,0.000000,0.250000,0,0);}
.m92_c00141{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.m93_c00141{transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103960,0.000000,0.000000,0.250000,0,0);}
.m5d_c00141{transform:matrix(0.104945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104945,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.m99_c00141{transform:matrix(0.116135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116135,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.117595,-0.001882,0.003999,0.249968,0,0);-ms-transform:matrix(0.117595,-0.001882,0.003999,0.249968,0,0);-webkit-transform:matrix(0.117595,-0.001882,0.003999,0.249968,0,0);}
.m9c_c00141{transform:matrix(0.122365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122365,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{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);}
.m62_c00141{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);}
.m2c_c00141{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);}
.m20_c00141{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);}
.ma1_c00141{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);}
.m9d_c00141{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);}
.m48_c00141{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);}
.m91_c00141{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);}
.m2a_c00141{transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);}
.m87_c00141{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);}
.m4a_c00141{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);}
.m94_c00141{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);}
.m6a_c00141{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);}
.m33_c00141{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);}
.m2f_c00141{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);}
.m78_c00141{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);}
.m5a_c00141{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);}
.m4e_c00141{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);}
.m8b_c00141{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);}
.m6b_c00141{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);}
.m7a_c00141{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);}
.m16_c00141{transform:matrix(0.169318,-0.002709,0.003999,0.249968,0,0);-ms-transform:matrix(0.169318,-0.002709,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169318,-0.002709,0.003999,0.249968,0,0);}
.m8a_c00141{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);}
.m5b_c00141{transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);}
.m89_c00141{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);}
.m4d_c00141{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);}
.m34_c00141{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);}
.m2b_c00141{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);}
.m36_c00141{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);}
.m67_c00141{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);}
.m43_c00141{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);}
.m3f_c00141{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);}
.m6_c00141{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);}
.m82_c00141{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_c00141{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);}
.m31_c00141{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);}
.m49_c00141{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);}
.m60_c00141{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);}
.m57_c00141{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);}
.m3d_c00141{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);}
.m85_c00141{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);}
.m6c_c00141{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);}
.m55_c00141{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);}
.m5c_c00141{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);}
.m76_c00141{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);}
.m45_c00141{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);}
.m59_c00141{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);}
.m61_c00141{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);}
.m6e_c00141{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);}
.m47_c00141{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);}
.m2d_c00141{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);}
.m5f_c00141{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);}
.m4f_c00141{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);}
.m86_c00141{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);}
.m7b_c00141{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);}
.m7e_c00141{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);}
.m71_c00141{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);}
.m54_c00141{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);}
.m72_c00141{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);}
.m68_c00141{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);}
.m84_c00141{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);}
.m66_c00141{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);}
.m73_c00141{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);}
.m29_c00141{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);}
.m56_c00141{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);}
.m28_c00141{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);}
.m35_c00141{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);}
.m50_c00141{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);}
.m4c_c00141{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);}
.m46_c00141{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);}
.m77_c00141{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);}
.m7f_c00141{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);}
.m40_c00141{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m2e_c00141{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);}
.m8c_c00141{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);}
.m38_c00141{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);}
.m81_c00141{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);}
.m1d_c00141{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);}
.m75_c00141{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);}
.m6d_c00141{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);}
.m79_c00141{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);}
.m51_c00141{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);}
.m63_c00141{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);}
.m7c_c00141{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);}
.m64_c00141{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);}
.m41_c00141{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);}
.m3e_c00141{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);}
.m80_c00141{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);}
.m65_c00141{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);}
.m58_c00141{transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.218322,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218322,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218322,-0.003493,0.003999,0.249968,0,0);}
.m5e_c00141{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);}
.m4b_c00141{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);}
.m7d_c00141{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m74_c00141{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);}
.m15_c00141{transform:matrix(0.224171,-0.003587,0.003999,0.249968,0,0);-ms-transform:matrix(0.224171,-0.003587,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224171,-0.003587,0.003999,0.249968,0,0);}
.m96_c00141{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);}
.m98_c00141{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);}
.m88_c00141{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);}
.m39_c00141{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);}
.mf_c00141{transform:matrix(0.238050,-0.003809,0.003999,0.249968,0,0);-ms-transform:matrix(0.238050,-0.003809,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238050,-0.003809,0.003999,0.249968,0,0);}
.m83_c00141{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);}
.m97_c00141{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);}
.m9f_c00141{transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);-ms-transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);}
.m3a_c00141{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{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);}
.m52_c00141{transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.255797,-0.004093,0.003999,0.249968,0,0);-ms-transform:matrix(0.255797,-0.004093,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255797,-0.004093,0.003999,0.249968,0,0);}
.m37_c00141{transform:matrix(0.257400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257400,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{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);}
.ma3_c00141{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);}
.m9a_c00141{transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277940,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.282024,-0.004512,0.003999,0.249968,0,0);-ms-transform:matrix(0.282024,-0.004512,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282024,-0.004512,0.003999,0.249968,0,0);}
.m1e_c00141{transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283820,0.000000,0.000000,0.250000,0,0);}
.m9e_c00141{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297395,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.314380,-0.005030,0.003999,0.249968,0,0);-ms-transform:matrix(0.314380,-0.005030,0.003999,0.249968,0,0);-webkit-transform:matrix(0.314380,-0.005030,0.003999,0.249968,0,0);}
.ma_c00141{transform:matrix(0.324628,-0.005194,0.003999,0.249968,0,0);-ms-transform:matrix(0.324628,-0.005194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324628,-0.005194,0.003999,0.249968,0,0);}
.ma2_c00141{transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.331050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331050,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.341191,-0.005459,0.003999,0.249968,0,0);-ms-transform:matrix(0.341191,-0.005459,0.003999,0.249968,0,0);-webkit-transform:matrix(0.341191,-0.005459,0.003999,0.249968,0,0);}
.m6f_c00141{transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);}
.m70_c00141{transform:matrix(0.362095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362095,0.000000,0.000000,0.250000,0,0);}
.ma0_c00141{transform:matrix(0.366315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366315,0.000000,0.000000,0.250000,0,0);}
.m30_c00141{transform:matrix(0.367510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367510,0.000000,0.000000,0.250000,0,0);}
.m95_c00141{transform:matrix(0.380545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380545,0.000000,0.000000,0.250000,0,0);}
.m9b_c00141{transform:matrix(0.395025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395025,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.395764,-0.006332,0.003999,0.249968,0,0);-ms-transform:matrix(0.395764,-0.006332,0.003999,0.249968,0,0);-webkit-transform:matrix(0.395764,-0.006332,0.003999,0.249968,0,0);}
.m8d_c00141{transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404770,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.405513,-0.006488,0.003999,0.249968,0,0);-ms-transform:matrix(0.405513,-0.006488,0.003999,0.249968,0,0);-webkit-transform:matrix(0.405513,-0.006488,0.003999,0.249968,0,0);}
.m8e_c00141{transform:matrix(0.442580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442580,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.443865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443865,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.500851,-0.008014,0.003999,0.249968,0,0);-ms-transform:matrix(0.500851,-0.008014,0.003999,0.249968,0,0);-webkit-transform:matrix(0.500851,-0.008014,0.003999,0.249968,0,0);}
.m11_c00141{transform:matrix(0.556319,-0.008901,0.003999,0.249968,0,0);-ms-transform:matrix(0.556319,-0.008901,0.003999,0.249968,0,0);-webkit-transform:matrix(0.556319,-0.008901,0.003999,0.249968,0,0);}
.m12_c00141{transform:matrix(0.594399,-0.009510,0.003999,0.249968,0,0);-ms-transform:matrix(0.594399,-0.009510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.594399,-0.009510,0.003999,0.249968,0,0);}
.m19_c00141{transform:matrix(0.599613,-0.009594,0.003999,0.249968,0,0);-ms-transform:matrix(0.599613,-0.009594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.599613,-0.009594,0.003999,0.249968,0,0);}
.m25_c00141{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);}
.m1a_c00141{transform:matrix(0.602418,-0.009639,0.003999,0.249968,0,0);-ms-transform:matrix(0.602418,-0.009639,0.003999,0.249968,0,0);-webkit-transform:matrix(0.602418,-0.009639,0.003999,0.249968,0,0);}
.m1b_c00141{transform:matrix(0.622120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622120,0.000000,0.000000,0.250000,0,0);}
.ma4_c00141{transform:matrix(0.660180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660180,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.699200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00141{transform:matrix(0.735365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735365,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.820175,-0.013123,0.003999,0.249968,0,0);-ms-transform:matrix(0.820175,-0.013123,0.003999,0.249968,0,0);-webkit-transform:matrix(0.820175,-0.013123,0.003999,0.249968,0,0);}
.m3_c00141{transform:matrix(0.854455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.854455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.854455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.939670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939670,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.978225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978225,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.978365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978365,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.978665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978665,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(1.003095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.003095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.003095,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(1.526270,-0.024420,0.003999,0.249968,0,0);-ms-transform:matrix(1.526270,-0.024420,0.003999,0.249968,0,0);-webkit-transform:matrix(1.526270,-0.024420,0.003999,0.249968,0,0);}
.m90_c00141{transform:matrix(4.318915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.318915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.318915,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;}
.fs4_c00141{font-size:14.700000px;}
.fs2_c00141{font-size:14.701881px;}
.fsd_c00141{font-size:23.100000px;}
.fs0_c00141{font-size:27.300000px;}
.fs3_c00141{font-size:46.200000px;}
.fs1_c00141{font-size:51.456585px;}
.fs6_c00141{font-size:61.950000px;}
.fs9_c00141{font-size:66.150000px;}
.fsc_c00141{font-size:69.300000px;}
.fsb_c00141{font-size:70.350000px;}
.fs7_c00141{font-size:71.400000px;}
.fs5_c00141{font-size:72.450000px;}
.fsa_c00141{font-size:73.500000px;}
.fs8_c00141{font-size:75.600000px;}
.y0_c00141{bottom:0.000000px;}
.y2e_c00141{bottom:105.030000px;}
.y2d_c00141{bottom:423.216000px;}
.y2c_c00141{bottom:447.223500px;}
.y2b_c00141{bottom:470.104500px;}
.y2a_c00141{bottom:492.921000px;}
.y29_c00141{bottom:515.701500px;}
.y28_c00141{bottom:538.348500px;}
.y27_c00141{bottom:560.632500px;}
.y26_c00141{bottom:583.701000px;}
.y25_c00141{bottom:606.586500px;}
.y24_c00141{bottom:629.518500px;}
.y23_c00141{bottom:652.687500px;}
.y22_c00141{bottom:674.833500px;}
.y21_c00141{bottom:698.092500px;}
.y20_c00141{bottom:721.116000px;}
.y1f_c00141{bottom:743.616000px;}
.y1e_c00141{bottom:765.585000px;}
.y1d_c00141{bottom:789.235500px;}
.y1c_c00141{bottom:811.998000px;}
.y1_c00141{bottom:875.340000px;}
.y1a_c00141{bottom:877.773000px;}
.y1b_c00141{bottom:886.782000px;}
.y18_c00141{bottom:886.953000px;}
.y19_c00141{bottom:896.139000px;}
.y17_c00141{bottom:909.021000px;}
.ye_c00141{bottom:916.921500px;}
.yf_c00141{bottom:917.041956px;}
.y10_c00141{bottom:917.116020px;}
.y11_c00141{bottom:917.508756px;}
.y12_c00141{bottom:917.901828px;}
.y13_c00141{bottom:918.368676px;}
.y2_c00141{bottom:923.401500px;}
.y3_c00141{bottom:924.236052px;}
.y4_c00141{bottom:924.662844px;}
.y5_c00141{bottom:925.061052px;}
.y14_c00141{bottom:925.089540px;}
.y15_c00141{bottom:925.547820px;}
.y6_c00141{bottom:925.579596px;}
.y16_c00141{bottom:926.018628px;}
.y7_c00141{bottom:926.326308px;}
.y8_c00141{bottom:926.970324px;}
.y9_c00141{bottom:927.268092px;}
.ya_c00141{bottom:929.574132px;}
.yb_c00141{bottom:930.365076px;}
.yc_c00141{bottom:931.461660px;}
.yd_c00141{bottom:932.070972px;}
.h6_c00141{height:14.700000px;}
.h4_c00141{height:14.701881px;}
.hf_c00141{height:23.100000px;}
.h2_c00141{height:27.300000px;}
.h5_c00141{height:46.200000px;}
.h3_c00141{height:51.456585px;}
.h8_c00141{height:61.950000px;}
.hb_c00141{height:66.150000px;}
.he_c00141{height:69.300000px;}
.hd_c00141{height:70.350000px;}
.h9_c00141{height:71.400000px;}
.h7_c00141{height:72.450000px;}
.hc_c00141{height:73.500000px;}
.ha_c00141{height:75.600000px;}
.h0_c00141{height:1008.450000px;}
.h1_c00141{height:1008.750000px;}
.w0_c00141{width:676.890000px;}
.w1_c00141{width:677.250000px;}
.x0_c00141{left:0.000000px;}
.x31_c00141{left:68.040000px;}
.x3_c00141{left:69.528000px;}
.xf_c00141{left:71.332500px;}
.x1e_c00141{left:76.012500px;}
.x10_c00141{left:78.861000px;}
.x17_c00141{left:80.460000px;}
.x11_c00141{left:83.490000px;}
.x28_c00141{left:92.880000px;}
.x12_c00141{left:108.036000px;}
.x4_c00141{left:121.687500px;}
.x13_c00141{left:132.603000px;}
.x18_c00141{left:142.290000px;}
.x5_c00141{left:148.362000px;}
.x14_c00141{left:161.781000px;}
.x19_c00141{left:168.480000px;}
.x6_c00141{left:173.250000px;}
.x32_c00141{left:188.460000px;}
.x3f_c00141{left:190.890000px;}
.x1a_c00141{left:193.320000px;}
.x29_c00141{left:194.400000px;}
.x21_c00141{left:200.340000px;}
.x36_c00141{left:202.230000px;}
.x2e_c00141{left:203.580000px;}
.x7_c00141{left:205.659000px;}
.x2a_c00141{left:221.130000px;}
.x48_c00141{left:222.750000px;}
.x37_c00141{left:230.580000px;}
.x40_c00141{left:234.360000px;}
.x22_c00141{left:236.790000px;}
.x2b_c00141{left:243.000000px;}
.x4a_c00141{left:244.080000px;}
.x39_c00141{left:245.160000px;}
.x44_c00141{left:247.860000px;}
.x8_c00141{left:252.328500px;}
.x41_c00141{left:255.150000px;}
.x23_c00141{left:256.230000px;}
.x54_c00141{left:257.580000px;}
.x3b_c00141{left:258.930000px;}
.x59_c00141{left:261.090000px;}
.x33_c00141{left:264.870000px;}
.x4b_c00141{left:268.650000px;}
.x49_c00141{left:271.350000px;}
.x52_c00141{left:275.400000px;}
.x2f_c00141{left:277.020000px;}
.x57_c00141{left:278.640000px;}
.x3c_c00141{left:282.150000px;}
.x51_c00141{left:286.740000px;}
.x24_c00141{left:288.630000px;}
.x9_c00141{left:292.579500px;}
.x2c_c00141{left:295.650000px;}
.x4e_c00141{left:297.270000px;}
.x3d_c00141{left:301.590000px;}
.x25_c00141{left:304.830000px;}
.x45_c00141{left:306.450000px;}
.x34_c00141{left:308.340000px;}
.xa_c00141{left:311.190000px;}
.x55_c00141{left:313.740000px;}
.x2d_c00141{left:315.090000px;}
.x4f_c00141{left:320.760000px;}
.x30_c00141{left:322.110000px;}
.x53_c00141{left:324.000000px;}
.x26_c00141{left:325.890000px;}
.x4c_c00141{left:328.860000px;}
.x38_c00141{left:331.290000px;}
.x5a_c00141{left:335.610000px;}
.x46_c00141{left:339.930000px;}
.x42_c00141{left:341.550000px;}
.x27_c00141{left:344.520000px;}
.x3a_c00141{left:346.410000px;}
.x35_c00141{left:347.490000px;}
.x3e_c00141{left:351.000000px;}
.x56_c00141{left:359.640000px;}
.x58_c00141{left:364.230000px;}
.x50_c00141{left:372.600000px;}
.x1b_c00141{left:382.320000px;}
.x43_c00141{left:391.770000px;}
.x4d_c00141{left:396.360000px;}
.xb_c00141{left:455.317500px;}
.x1c_c00141{left:477.900000px;}
.x47_c00141{left:492.750000px;}
.xc_c00141{left:504.751500px;}
.xd_c00141{left:573.288000px;}
.x15_c00141{left:581.835000px;}
.xe_c00141{left:611.370000px;}
.x16_c00141{left:639.903000px;}
.x20_c00141{left:642.898500px;}
.x1d_c00141{left:645.840000px;}
.x1f_c00141{left:650.164500px;}
.x2_c00141{left:667.440000px;}
.x1_c00141{left:670.680000px;}
.x5c_c00141{left:672.300000px;}
.x5d_c00141{left:673.380000px;}
.x5b_c00141{left:675.270000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.fs4_c00141{font-size:13.066667pt;}
.fs2_c00141{font-size:13.068339pt;}
.fsd_c00141{font-size:20.533333pt;}
.fs0_c00141{font-size:24.266667pt;}
.fs3_c00141{font-size:41.066667pt;}
.fs1_c00141{font-size:45.739187pt;}
.fs6_c00141{font-size:55.066667pt;}
.fs9_c00141{font-size:58.800000pt;}
.fsc_c00141{font-size:61.600000pt;}
.fsb_c00141{font-size:62.533333pt;}
.fs7_c00141{font-size:63.466667pt;}
.fs5_c00141{font-size:64.400000pt;}
.fsa_c00141{font-size:65.333333pt;}
.fs8_c00141{font-size:67.200000pt;}
.y0_c00141{bottom:0.000000pt;}
.y2e_c00141{bottom:93.360000pt;}
.y2d_c00141{bottom:376.192000pt;}
.y2c_c00141{bottom:397.532000pt;}
.y2b_c00141{bottom:417.870667pt;}
.y2a_c00141{bottom:438.152000pt;}
.y29_c00141{bottom:458.401333pt;}
.y28_c00141{bottom:478.532000pt;}
.y27_c00141{bottom:498.340000pt;}
.y26_c00141{bottom:518.845333pt;}
.y25_c00141{bottom:539.188000pt;}
.y24_c00141{bottom:559.572000pt;}
.y23_c00141{bottom:580.166667pt;}
.y22_c00141{bottom:599.852000pt;}
.y21_c00141{bottom:620.526667pt;}
.y20_c00141{bottom:640.992000pt;}
.y1f_c00141{bottom:660.992000pt;}
.y1e_c00141{bottom:680.520000pt;}
.y1d_c00141{bottom:701.542667pt;}
.y1c_c00141{bottom:721.776000pt;}
.y1_c00141{bottom:778.080000pt;}
.y1a_c00141{bottom:780.242667pt;}
.y1b_c00141{bottom:788.250667pt;}
.y18_c00141{bottom:788.402667pt;}
.y19_c00141{bottom:796.568000pt;}
.y17_c00141{bottom:808.018667pt;}
.ye_c00141{bottom:815.041333pt;}
.yf_c00141{bottom:815.148405pt;}
.y10_c00141{bottom:815.214240pt;}
.y11_c00141{bottom:815.563339pt;}
.y12_c00141{bottom:815.912736pt;}
.y13_c00141{bottom:816.327712pt;}
.y2_c00141{bottom:820.801333pt;}
.y3_c00141{bottom:821.543157pt;}
.y4_c00141{bottom:821.922528pt;}
.y5_c00141{bottom:822.276491pt;}
.y14_c00141{bottom:822.301813pt;}
.y15_c00141{bottom:822.709173pt;}
.y6_c00141{bottom:822.737419pt;}
.y16_c00141{bottom:823.127669pt;}
.y7_c00141{bottom:823.401163pt;}
.y8_c00141{bottom:823.973621pt;}
.y9_c00141{bottom:824.238304pt;}
.ya_c00141{bottom:826.288117pt;}
.yb_c00141{bottom:826.991179pt;}
.yc_c00141{bottom:827.965920pt;}
.yd_c00141{bottom:828.507531pt;}
.h6_c00141{height:13.066667pt;}
.h4_c00141{height:13.068339pt;}
.hf_c00141{height:20.533333pt;}
.h2_c00141{height:24.266667pt;}
.h5_c00141{height:41.066667pt;}
.h3_c00141{height:45.739187pt;}
.h8_c00141{height:55.066667pt;}
.hb_c00141{height:58.800000pt;}
.he_c00141{height:61.600000pt;}
.hd_c00141{height:62.533333pt;}
.h9_c00141{height:63.466667pt;}
.h7_c00141{height:64.400000pt;}
.hc_c00141{height:65.333333pt;}
.ha_c00141{height:67.200000pt;}
.h0_c00141{height:896.400000pt;}
.h1_c00141{height:896.666667pt;}
.w0_c00141{width:601.680000pt;}
.w1_c00141{width:602.000000pt;}
.x0_c00141{left:0.000000pt;}
.x31_c00141{left:60.480000pt;}
.x3_c00141{left:61.802667pt;}
.xf_c00141{left:63.406667pt;}
.x1e_c00141{left:67.566667pt;}
.x10_c00141{left:70.098667pt;}
.x17_c00141{left:71.520000pt;}
.x11_c00141{left:74.213333pt;}
.x28_c00141{left:82.560000pt;}
.x12_c00141{left:96.032000pt;}
.x4_c00141{left:108.166667pt;}
.x13_c00141{left:117.869333pt;}
.x18_c00141{left:126.480000pt;}
.x5_c00141{left:131.877333pt;}
.x14_c00141{left:143.805333pt;}
.x19_c00141{left:149.760000pt;}
.x6_c00141{left:154.000000pt;}
.x32_c00141{left:167.520000pt;}
.x3f_c00141{left:169.680000pt;}
.x1a_c00141{left:171.840000pt;}
.x29_c00141{left:172.800000pt;}
.x21_c00141{left:178.080000pt;}
.x36_c00141{left:179.760000pt;}
.x2e_c00141{left:180.960000pt;}
.x7_c00141{left:182.808000pt;}
.x2a_c00141{left:196.560000pt;}
.x48_c00141{left:198.000000pt;}
.x37_c00141{left:204.960000pt;}
.x40_c00141{left:208.320000pt;}
.x22_c00141{left:210.480000pt;}
.x2b_c00141{left:216.000000pt;}
.x4a_c00141{left:216.960000pt;}
.x39_c00141{left:217.920000pt;}
.x44_c00141{left:220.320000pt;}
.x8_c00141{left:224.292000pt;}
.x41_c00141{left:226.800000pt;}
.x23_c00141{left:227.760000pt;}
.x54_c00141{left:228.960000pt;}
.x3b_c00141{left:230.160000pt;}
.x59_c00141{left:232.080000pt;}
.x33_c00141{left:235.440000pt;}
.x4b_c00141{left:238.800000pt;}
.x49_c00141{left:241.200000pt;}
.x52_c00141{left:244.800000pt;}
.x2f_c00141{left:246.240000pt;}
.x57_c00141{left:247.680000pt;}
.x3c_c00141{left:250.800000pt;}
.x51_c00141{left:254.880000pt;}
.x24_c00141{left:256.560000pt;}
.x9_c00141{left:260.070667pt;}
.x2c_c00141{left:262.800000pt;}
.x4e_c00141{left:264.240000pt;}
.x3d_c00141{left:268.080000pt;}
.x25_c00141{left:270.960000pt;}
.x45_c00141{left:272.400000pt;}
.x34_c00141{left:274.080000pt;}
.xa_c00141{left:276.613333pt;}
.x55_c00141{left:278.880000pt;}
.x2d_c00141{left:280.080000pt;}
.x4f_c00141{left:285.120000pt;}
.x30_c00141{left:286.320000pt;}
.x53_c00141{left:288.000000pt;}
.x26_c00141{left:289.680000pt;}
.x4c_c00141{left:292.320000pt;}
.x38_c00141{left:294.480000pt;}
.x5a_c00141{left:298.320000pt;}
.x46_c00141{left:302.160000pt;}
.x42_c00141{left:303.600000pt;}
.x27_c00141{left:306.240000pt;}
.x3a_c00141{left:307.920000pt;}
.x35_c00141{left:308.880000pt;}
.x3e_c00141{left:312.000000pt;}
.x56_c00141{left:319.680000pt;}
.x58_c00141{left:323.760000pt;}
.x50_c00141{left:331.200000pt;}
.x1b_c00141{left:339.840000pt;}
.x43_c00141{left:348.240000pt;}
.x4d_c00141{left:352.320000pt;}
.xb_c00141{left:404.726667pt;}
.x1c_c00141{left:424.800000pt;}
.x47_c00141{left:438.000000pt;}
.xc_c00141{left:448.668000pt;}
.xd_c00141{left:509.589333pt;}
.x15_c00141{left:517.186667pt;}
.xe_c00141{left:543.440000pt;}
.x16_c00141{left:568.802667pt;}
.x20_c00141{left:571.465333pt;}
.x1d_c00141{left:574.080000pt;}
.x1f_c00141{left:577.924000pt;}
.x2_c00141{left:593.280000pt;}
.x1_c00141{left:596.160000pt;}
.x5c_c00141{left:597.600000pt;}
.x5d_c00141{left:598.560000pt;}
.x5b_c00141{left:600.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_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_ef4e99a7aa2876b3106553d3.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;}
.m1d_c00142{transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);-ms-transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);-webkit-transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);}
.m1_c00142{transform:matrix(0.011014,-0.000375,0.008504,0.249855,0,0);-ms-transform:matrix(0.011014,-0.000375,0.008504,0.249855,0,0);-webkit-transform:matrix(0.011014,-0.000375,0.008504,0.249855,0,0);}
.m69_c00142{transform:matrix(0.011544,-0.000173,0.003750,0.249972,0,0);-ms-transform:matrix(0.011544,-0.000173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011544,-0.000173,0.003750,0.249972,0,0);}
.m1b_c00142{transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-ms-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);}
.m40_c00142{transform:matrix(0.013328,-0.000253,0.004749,0.249955,0,0);-ms-transform:matrix(0.013328,-0.000253,0.004749,0.249955,0,0);-webkit-transform:matrix(0.013328,-0.000253,0.004749,0.249955,0,0);}
.m62_c00142{transform:matrix(0.017163,-0.000257,0.003750,0.249972,0,0);-ms-transform:matrix(0.017163,-0.000257,0.003750,0.249972,0,0);-webkit-transform:matrix(0.017163,-0.000257,0.003750,0.249972,0,0);}
.m90_c00142{transform:matrix(0.019778,-0.000297,0.003750,0.249972,0,0);-ms-transform:matrix(0.019778,-0.000297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.019778,-0.000297,0.003750,0.249972,0,0);}
.m5_c00142{transform:matrix(0.020363,-0.000693,0.008504,0.249855,0,0);-ms-transform:matrix(0.020363,-0.000693,0.008504,0.249855,0,0);-webkit-transform:matrix(0.020363,-0.000693,0.008504,0.249855,0,0);}
.m63_c00142{transform:matrix(0.027672,-0.000415,0.003750,0.249972,0,0);-ms-transform:matrix(0.027672,-0.000415,0.003750,0.249972,0,0);-webkit-transform:matrix(0.027672,-0.000415,0.003750,0.249972,0,0);}
.m81_c00142{transform:matrix(0.033511,-0.000503,0.003750,0.249972,0,0);-ms-transform:matrix(0.033511,-0.000503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.033511,-0.000503,0.003750,0.249972,0,0);}
.m19_c00142{transform:matrix(0.053166,-0.000638,0.003000,0.249982,0,0);-ms-transform:matrix(0.053166,-0.000638,0.003000,0.249982,0,0);-webkit-transform:matrix(0.053166,-0.000638,0.003000,0.249982,0,0);}
.m23_c00142{transform:matrix(0.062336,-0.000748,0.003000,0.249982,0,0);-ms-transform:matrix(0.062336,-0.000748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.062336,-0.000748,0.003000,0.249982,0,0);}
.m16_c00142{transform:matrix(0.093163,-0.001118,0.003000,0.249982,0,0);-ms-transform:matrix(0.093163,-0.001118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.093163,-0.001118,0.003000,0.249982,0,0);}
.m24_c00142{transform:matrix(0.108777,-0.001305,0.003000,0.249982,0,0);-ms-transform:matrix(0.108777,-0.001305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.108777,-0.001305,0.003000,0.249982,0,0);}
.m45_c00142{transform:matrix(0.128462,-0.002441,0.004749,0.249955,0,0);-ms-transform:matrix(0.128462,-0.002441,0.004749,0.249955,0,0);-webkit-transform:matrix(0.128462,-0.002441,0.004749,0.249955,0,0);}
.m46_c00142{transform:matrix(0.145653,-0.003059,0.005249,0.249945,0,0);-ms-transform:matrix(0.145653,-0.003059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.145653,-0.003059,0.005249,0.249945,0,0);}
.m21_c00142{transform:matrix(0.148249,-0.001779,0.003000,0.249982,0,0);-ms-transform:matrix(0.148249,-0.001779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148249,-0.001779,0.003000,0.249982,0,0);}
.m75_c00142{transform:matrix(0.149468,-0.002242,0.003750,0.249972,0,0);-ms-transform:matrix(0.149468,-0.002242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149468,-0.002242,0.003750,0.249972,0,0);}
.m3a_c00142{transform:matrix(0.151165,-0.008785,0.014505,0.249579,0,0);-ms-transform:matrix(0.151165,-0.008785,0.014505,0.249579,0,0);-webkit-transform:matrix(0.151165,-0.008785,0.014505,0.249579,0,0);}
.m3_c00142{transform:matrix(0.151302,-0.005149,0.008504,0.249855,0,0);-ms-transform:matrix(0.151302,-0.005149,0.008504,0.249855,0,0);-webkit-transform:matrix(0.151302,-0.005149,0.008504,0.249855,0,0);}
.m26_c00142{transform:matrix(0.152609,-0.001831,0.003000,0.249982,0,0);-ms-transform:matrix(0.152609,-0.001831,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152609,-0.001831,0.003000,0.249982,0,0);}
.m76_c00142{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);}
.m6c_c00142{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);}
.m13_c00142{transform:matrix(0.158724,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158724,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158724,-0.001905,0.003000,0.249982,0,0);}
.m94_c00142{transform:matrix(0.158967,-0.002385,0.003750,0.249972,0,0);-ms-transform:matrix(0.158967,-0.002385,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158967,-0.002385,0.003750,0.249972,0,0);}
.m55_c00142{transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);-ms-transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);}
.m47_c00142{transform:matrix(0.161519,-0.003392,0.005249,0.249945,0,0);-ms-transform:matrix(0.161519,-0.003392,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161519,-0.003392,0.005249,0.249945,0,0);}
.m5f_c00142{transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);-ms-transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);}
.m3b_c00142{transform:matrix(0.166215,-0.009660,0.014505,0.249579,0,0);-ms-transform:matrix(0.166215,-0.009660,0.014505,0.249579,0,0);-webkit-transform:matrix(0.166215,-0.009660,0.014505,0.249579,0,0);}
.m56_c00142{transform:matrix(0.167066,-0.002506,0.003750,0.249972,0,0);-ms-transform:matrix(0.167066,-0.002506,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167066,-0.002506,0.003750,0.249972,0,0);}
.m74_c00142{transform:matrix(0.169376,-0.002541,0.003750,0.249972,0,0);-ms-transform:matrix(0.169376,-0.002541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169376,-0.002541,0.003750,0.249972,0,0);}
.m85_c00142{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);}
.m1f_c00142{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);}
.m57_c00142{transform:matrix(0.171146,-0.002567,0.003750,0.249972,0,0);-ms-transform:matrix(0.171146,-0.002567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171146,-0.002567,0.003750,0.249972,0,0);}
.m50_c00142{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_c00142{transform:matrix(0.171986,-0.002580,0.003750,0.249972,0,0);-ms-transform:matrix(0.171986,-0.002580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171986,-0.002580,0.003750,0.249972,0,0);}
.m27_c00142{transform:matrix(0.173273,-0.002079,0.003000,0.249982,0,0);-ms-transform:matrix(0.173273,-0.002079,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173273,-0.002079,0.003000,0.249982,0,0);}
.m88_c00142{transform:matrix(0.173455,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173455,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173455,-0.002602,0.003750,0.249972,0,0);}
.m83_c00142{transform:matrix(0.175095,-0.002626,0.003750,0.249972,0,0);-ms-transform:matrix(0.175095,-0.002626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175095,-0.002626,0.003750,0.249972,0,0);}
.m2c_c00142{transform:matrix(0.176582,-0.002119,0.003000,0.249982,0,0);-ms-transform:matrix(0.176582,-0.002119,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176582,-0.002119,0.003000,0.249982,0,0);}
.m1e_c00142{transform:matrix(0.178427,-0.002141,0.003000,0.249982,0,0);-ms-transform:matrix(0.178427,-0.002141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178427,-0.002141,0.003000,0.249982,0,0);}
.m7d_c00142{transform:matrix(0.178540,-0.002678,0.003750,0.249972,0,0);-ms-transform:matrix(0.178540,-0.002678,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178540,-0.002678,0.003750,0.249972,0,0);}
.m22_c00142{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);}
.m7e_c00142{transform:matrix(0.179500,-0.002692,0.003750,0.249972,0,0);-ms-transform:matrix(0.179500,-0.002692,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179500,-0.002692,0.003750,0.249972,0,0);}
.m12_c00142{transform:matrix(0.180302,-0.002164,0.003000,0.249982,0,0);-ms-transform:matrix(0.180302,-0.002164,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180302,-0.002164,0.003000,0.249982,0,0);}
.m28_c00142{transform:matrix(0.181952,-0.002183,0.003000,0.249982,0,0);-ms-transform:matrix(0.181952,-0.002183,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181952,-0.002183,0.003000,0.249982,0,0);}
.m58_c00142{transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);-ms-transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);}
.m3e_c00142{transform:matrix(0.183595,-0.010670,0.014505,0.249579,0,0);-ms-transform:matrix(0.183595,-0.010670,0.014505,0.249579,0,0);-webkit-transform:matrix(0.183595,-0.010670,0.014505,0.249579,0,0);}
.m5b_c00142{transform:matrix(0.185404,-0.002781,0.003750,0.249972,0,0);-ms-transform:matrix(0.185404,-0.002781,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185404,-0.002781,0.003750,0.249972,0,0);}
.m7c_c00142{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);}
.m43_c00142{transform:matrix(0.186271,-0.003539,0.004749,0.249955,0,0);-ms-transform:matrix(0.186271,-0.003539,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186271,-0.003539,0.004749,0.249955,0,0);}
.m54_c00142{transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);}
.m3c_c00142{transform:matrix(0.187693,-0.010908,0.014505,0.249579,0,0);-ms-transform:matrix(0.187693,-0.010908,0.014505,0.249579,0,0);-webkit-transform:matrix(0.187693,-0.010908,0.014505,0.249579,0,0);}
.m89_c00142{transform:matrix(0.188154,-0.002822,0.003750,0.249972,0,0);-ms-transform:matrix(0.188154,-0.002822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188154,-0.002822,0.003750,0.249972,0,0);}
.m92_c00142{transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);}
.m15_c00142{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);}
.me_c00142{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);}
.m6b_c00142{transform:matrix(0.190659,-0.002860,0.003750,0.249972,0,0);-ms-transform:matrix(0.190659,-0.002860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190659,-0.002860,0.003750,0.249972,0,0);}
.m53_c00142{transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);}
.m14_c00142{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);}
.m7b_c00142{transform:matrix(0.191653,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191653,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191653,-0.002875,0.003750,0.249972,0,0);}
.m20_c00142{transform:matrix(0.192156,-0.002306,0.003000,0.249982,0,0);-ms-transform:matrix(0.192156,-0.002306,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192156,-0.002306,0.003000,0.249982,0,0);}
.mc_c00142{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);}
.m1a_c00142{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);}
.m91_c00142{transform:matrix(0.192828,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192828,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192828,-0.002892,0.003750,0.249972,0,0);}
.m79_c00142{transform:matrix(0.192888,-0.002893,0.003750,0.249972,0,0);-ms-transform:matrix(0.192888,-0.002893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192888,-0.002893,0.003750,0.249972,0,0);}
.m65_c00142{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);}
.m6f_c00142{transform:matrix(0.194668,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194668,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194668,-0.002920,0.003750,0.249972,0,0);}
.m6d_c00142{transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);}
.m2a_c00142{transform:matrix(0.196956,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196956,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196956,-0.002363,0.003000,0.249982,0,0);}
.m49_c00142{transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);-ms-transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);}
.m71_c00142{transform:matrix(0.198638,-0.002980,0.003750,0.249972,0,0);-ms-transform:matrix(0.198638,-0.002980,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198638,-0.002980,0.003750,0.249972,0,0);}
.m8c_c00142{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);}
.m36_c00142{transform:matrix(0.200587,-0.011657,0.014505,0.249579,0,0);-ms-transform:matrix(0.200587,-0.011657,0.014505,0.249579,0,0);-webkit-transform:matrix(0.200587,-0.011657,0.014505,0.249579,0,0);}
.m3d_c00142{transform:matrix(0.200721,-0.011665,0.014505,0.249579,0,0);-ms-transform:matrix(0.200721,-0.011665,0.014505,0.249579,0,0);-webkit-transform:matrix(0.200721,-0.011665,0.014505,0.249579,0,0);}
.m37_c00142{transform:matrix(0.201320,-0.011700,0.014505,0.249579,0,0);-ms-transform:matrix(0.201320,-0.011700,0.014505,0.249579,0,0);-webkit-transform:matrix(0.201320,-0.011700,0.014505,0.249579,0,0);}
.m80_c00142{transform:matrix(0.203882,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203882,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203882,-0.003058,0.003750,0.249972,0,0);}
.m73_c00142{transform:matrix(0.204162,-0.003062,0.003750,0.249972,0,0);-ms-transform:matrix(0.204162,-0.003062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204162,-0.003062,0.003750,0.249972,0,0);}
.m93_c00142{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);}
.m44_c00142{transform:matrix(0.205353,-0.003902,0.004749,0.249955,0,0);-ms-transform:matrix(0.205353,-0.003902,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205353,-0.003902,0.004749,0.249955,0,0);}
.m42_c00142{transform:matrix(0.206318,-0.003920,0.004749,0.249955,0,0);-ms-transform:matrix(0.206318,-0.003920,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206318,-0.003920,0.004749,0.249955,0,0);}
.m6e_c00142{transform:matrix(0.208707,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208707,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208707,-0.003131,0.003750,0.249972,0,0);}
.m66_c00142{transform:matrix(0.208862,-0.003133,0.003750,0.249972,0,0);-ms-transform:matrix(0.208862,-0.003133,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208862,-0.003133,0.003750,0.249972,0,0);}
.m8e_c00142{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);}
.m64_c00142{transform:matrix(0.209321,-0.003140,0.003750,0.249972,0,0);-ms-transform:matrix(0.209321,-0.003140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209321,-0.003140,0.003750,0.249972,0,0);}
.m5c_c00142{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);}
.m41_c00142{transform:matrix(0.209572,-0.003982,0.004749,0.249955,0,0);-ms-transform:matrix(0.209572,-0.003982,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209572,-0.003982,0.004749,0.249955,0,0);}
.m7a_c00142{transform:matrix(0.209636,-0.003145,0.003750,0.249972,0,0);-ms-transform:matrix(0.209636,-0.003145,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209636,-0.003145,0.003750,0.249972,0,0);}
.m61_c00142{transform:matrix(0.209956,-0.003149,0.003750,0.249972,0,0);-ms-transform:matrix(0.209956,-0.003149,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209956,-0.003149,0.003750,0.249972,0,0);}
.m72_c00142{transform:matrix(0.211121,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211121,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211121,-0.003167,0.003750,0.249972,0,0);}
.m7f_c00142{transform:matrix(0.213161,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213161,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213161,-0.003197,0.003750,0.249972,0,0);}
.m8f_c00142{transform:matrix(0.215361,-0.003230,0.003750,0.249972,0,0);-ms-transform:matrix(0.215361,-0.003230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215361,-0.003230,0.003750,0.249972,0,0);}
.m4b_c00142{transform:matrix(0.215527,-0.004526,0.005249,0.249945,0,0);-ms-transform:matrix(0.215527,-0.004526,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215527,-0.004526,0.005249,0.249945,0,0);}
.m8b_c00142{transform:matrix(0.218240,-0.003274,0.003750,0.249972,0,0);-ms-transform:matrix(0.218240,-0.003274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218240,-0.003274,0.003750,0.249972,0,0);}
.m6a_c00142{transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);}
.m86_c00142{transform:matrix(0.219275,-0.003289,0.003750,0.249972,0,0);-ms-transform:matrix(0.219275,-0.003289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219275,-0.003289,0.003750,0.249972,0,0);}
.m77_c00142{transform:matrix(0.221625,-0.003324,0.003750,0.249972,0,0);-ms-transform:matrix(0.221625,-0.003324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221625,-0.003324,0.003750,0.249972,0,0);}
.m87_c00142{transform:matrix(0.222575,-0.003339,0.003750,0.249972,0,0);-ms-transform:matrix(0.222575,-0.003339,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222575,-0.003339,0.003750,0.249972,0,0);}
.m32_c00142{transform:matrix(0.222589,-0.002671,0.003000,0.249982,0,0);-ms-transform:matrix(0.222589,-0.002671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222589,-0.002671,0.003000,0.249982,0,0);}
.m68_c00142{transform:matrix(0.224240,-0.003364,0.003750,0.249972,0,0);-ms-transform:matrix(0.224240,-0.003364,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224240,-0.003364,0.003750,0.249972,0,0);}
.m70_c00142{transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);}
.m51_c00142{transform:matrix(0.224690,-0.003370,0.003750,0.249972,0,0);-ms-transform:matrix(0.224690,-0.003370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224690,-0.003370,0.003750,0.249972,0,0);}
.m4a_c00142{transform:matrix(0.225885,-0.004744,0.005249,0.249945,0,0);-ms-transform:matrix(0.225885,-0.004744,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225885,-0.004744,0.005249,0.249945,0,0);}
.m5d_c00142{transform:matrix(0.227259,-0.003409,0.003750,0.249972,0,0);-ms-transform:matrix(0.227259,-0.003409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227259,-0.003409,0.003750,0.249972,0,0);}
.m35_c00142{transform:matrix(0.229293,-0.013326,0.014505,0.249579,0,0);-ms-transform:matrix(0.229293,-0.013326,0.014505,0.249579,0,0);-webkit-transform:matrix(0.229293,-0.013326,0.014505,0.249579,0,0);}
.m60_c00142{transform:matrix(0.231434,-0.003472,0.003750,0.249972,0,0);-ms-transform:matrix(0.231434,-0.003472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231434,-0.003472,0.003750,0.249972,0,0);}
.m4c_c00142{transform:matrix(0.232494,-0.004882,0.005249,0.249945,0,0);-ms-transform:matrix(0.232494,-0.004882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232494,-0.004882,0.005249,0.249945,0,0);}
.m52_c00142{transform:matrix(0.232619,-0.003489,0.003750,0.249972,0,0);-ms-transform:matrix(0.232619,-0.003489,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232619,-0.003489,0.003750,0.249972,0,0);}
.m5a_c00142{transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);-ms-transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);}
.m59_c00142{transform:matrix(0.233449,-0.003502,0.003750,0.249972,0,0);-ms-transform:matrix(0.233449,-0.003502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233449,-0.003502,0.003750,0.249972,0,0);}
.m2d_c00142{transform:matrix(0.234713,-0.002817,0.003000,0.249982,0,0);-ms-transform:matrix(0.234713,-0.002817,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234713,-0.002817,0.003000,0.249982,0,0);}
.m67_c00142{transform:matrix(0.237763,-0.003566,0.003750,0.249972,0,0);-ms-transform:matrix(0.237763,-0.003566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237763,-0.003566,0.003750,0.249972,0,0);}
.m8a_c00142{transform:matrix(0.241643,-0.003625,0.003750,0.249972,0,0);-ms-transform:matrix(0.241643,-0.003625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241643,-0.003625,0.003750,0.249972,0,0);}
.m82_c00142{transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);-ms-transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244278,-0.003664,0.003750,0.249972,0,0);}
.m31_c00142{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);}
.m48_c00142{transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);-ms-transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);}
.m25_c00142{transform:matrix(0.254112,-0.003049,0.003000,0.249982,0,0);-ms-transform:matrix(0.254112,-0.003049,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254112,-0.003049,0.003000,0.249982,0,0);}
.m8d_c00142{transform:matrix(0.254816,-0.003822,0.003750,0.249972,0,0);-ms-transform:matrix(0.254816,-0.003822,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254816,-0.003822,0.003750,0.249972,0,0);}
.m29_c00142{transform:matrix(0.255032,-0.003060,0.003000,0.249982,0,0);-ms-transform:matrix(0.255032,-0.003060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255032,-0.003060,0.003000,0.249982,0,0);}
.m18_c00142{transform:matrix(0.256991,-0.003084,0.003000,0.249982,0,0);-ms-transform:matrix(0.256991,-0.003084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256991,-0.003084,0.003000,0.249982,0,0);}
.m10_c00142{transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{transform:matrix(0.259036,-0.003886,0.003750,0.249972,0,0);-ms-transform:matrix(0.259036,-0.003886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259036,-0.003886,0.003750,0.249972,0,0);}
.m4e_c00142{transform:matrix(0.263277,-0.005529,0.005249,0.249945,0,0);-ms-transform:matrix(0.263277,-0.005529,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263277,-0.005529,0.005249,0.249945,0,0);}
.m2f_c00142{transform:matrix(0.268321,-0.003220,0.003000,0.249982,0,0);-ms-transform:matrix(0.268321,-0.003220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268321,-0.003220,0.003000,0.249982,0,0);}
.m4d_c00142{transform:matrix(0.268576,-0.005640,0.005249,0.249945,0,0);-ms-transform:matrix(0.268576,-0.005640,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268576,-0.005640,0.005249,0.249945,0,0);}
.m30_c00142{transform:matrix(0.283615,-0.003403,0.003000,0.249982,0,0);-ms-transform:matrix(0.283615,-0.003403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283615,-0.003403,0.003000,0.249982,0,0);}
.m4_c00142{transform:matrix(0.293545,-0.009991,0.008504,0.249855,0,0);-ms-transform:matrix(0.293545,-0.009991,0.008504,0.249855,0,0);-webkit-transform:matrix(0.293545,-0.009991,0.008504,0.249855,0,0);}
.m17_c00142{transform:matrix(0.295354,-0.003544,0.003000,0.249982,0,0);-ms-transform:matrix(0.295354,-0.003544,0.003000,0.249982,0,0);-webkit-transform:matrix(0.295354,-0.003544,0.003000,0.249982,0,0);}
.m78_c00142{transform:matrix(0.307305,-0.004610,0.003750,0.249972,0,0);-ms-transform:matrix(0.307305,-0.004610,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307305,-0.004610,0.003750,0.249972,0,0);}
.md_c00142{transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.314998,-0.010721,0.008504,0.249855,0,0);-ms-transform:matrix(0.314998,-0.010721,0.008504,0.249855,0,0);-webkit-transform:matrix(0.314998,-0.010721,0.008504,0.249855,0,0);}
.m33_c00142{transform:matrix(0.315553,-0.018339,0.014505,0.249579,0,0);-ms-transform:matrix(0.315553,-0.018339,0.014505,0.249579,0,0);-webkit-transform:matrix(0.315553,-0.018339,0.014505,0.249579,0,0);}
.m11_c00142{transform:matrix(0.316365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316365,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.335266,-0.004023,0.003000,0.249982,0,0);-ms-transform:matrix(0.335266,-0.004023,0.003000,0.249982,0,0);-webkit-transform:matrix(0.335266,-0.004023,0.003000,0.249982,0,0);}
.m1c_c00142{transform:matrix(0.338311,-0.004060,0.003000,0.249982,0,0);-ms-transform:matrix(0.338311,-0.004060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.338311,-0.004060,0.003000,0.249982,0,0);}
.m3f_c00142{transform:matrix(0.342313,-0.006504,0.004749,0.249955,0,0);-ms-transform:matrix(0.342313,-0.006504,0.004749,0.249955,0,0);-webkit-transform:matrix(0.342313,-0.006504,0.004749,0.249955,0,0);}
.m4f_c00142{transform:matrix(0.353332,-0.007420,0.005249,0.249945,0,0);-ms-transform:matrix(0.353332,-0.007420,0.005249,0.249945,0,0);-webkit-transform:matrix(0.353332,-0.007420,0.005249,0.249945,0,0);}
.mf_c00142{transform:matrix(0.359265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.401636,-0.004820,0.003000,0.249982,0,0);-ms-transform:matrix(0.401636,-0.004820,0.003000,0.249982,0,0);-webkit-transform:matrix(0.401636,-0.004820,0.003000,0.249982,0,0);}
.m7_c00142{transform:matrix(0.421786,-0.014355,0.008504,0.249855,0,0);-ms-transform:matrix(0.421786,-0.014355,0.008504,0.249855,0,0);-webkit-transform:matrix(0.421786,-0.014355,0.008504,0.249855,0,0);}
.m6_c00142{transform:matrix(0.473811,-0.016126,0.008504,0.249855,0,0);-ms-transform:matrix(0.473811,-0.016126,0.008504,0.249855,0,0);-webkit-transform:matrix(0.473811,-0.016126,0.008504,0.249855,0,0);}
.m38_c00142{transform:matrix(0.520342,-0.030240,0.014505,0.249579,0,0);-ms-transform:matrix(0.520342,-0.030240,0.014505,0.249579,0,0);-webkit-transform:matrix(0.520342,-0.030240,0.014505,0.249579,0,0);}
.mb_c00142{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);}
.m8_c00142{transform:matrix(0.615139,-0.020936,0.008504,0.249855,0,0);-ms-transform:matrix(0.615139,-0.020936,0.008504,0.249855,0,0);-webkit-transform:matrix(0.615139,-0.020936,0.008504,0.249855,0,0);}
.m34_c00142{transform:matrix(0.621541,-0.036122,0.014505,0.249579,0,0);-ms-transform:matrix(0.621541,-0.036122,0.014505,0.249579,0,0);-webkit-transform:matrix(0.621541,-0.036122,0.014505,0.249579,0,0);}
.ma_c00142{transform:matrix(0.837195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837195,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.851977,-0.049514,0.014505,0.249579,0,0);-ms-transform:matrix(0.851977,-0.049514,0.014505,0.249579,0,0);-webkit-transform:matrix(0.851977,-0.049514,0.014505,0.249579,0,0);}
.m9_c00142{transform:matrix(0.958260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958260,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(1.005718,-0.034229,0.008504,0.249855,0,0);-ms-transform:matrix(1.005718,-0.034229,0.008504,0.249855,0,0);-webkit-transform:matrix(1.005718,-0.034229,0.008504,0.249855,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;}
.fs2_c00142{font-size:36.750000px;}
.fsb_c00142{font-size:63.013890px;}
.fsa_c00142{font-size:64.061560px;}
.fs7_c00142{font-size:66.154763px;}
.fse_c00142{font-size:66.157441px;}
.fs8_c00142{font-size:67.178761px;}
.fs9_c00142{font-size:68.228430px;}
.fsf_c00142{font-size:69.307796px;}
.fsd_c00142{font-size:70.357914px;}
.fs6_c00142{font-size:71.405141px;}
.fsc_c00142{font-size:71.408032px;}
.fs4_c00142{font-size:72.455216px;}
.fs5_c00142{font-size:73.505292px;}
.fs10_c00142{font-size:73.508268px;}
.fs3_c00142{font-size:78.750000px;}
.fs1_c00142{font-size:95.509717px;}
.fs0_c00142{font-size:138.541568px;}
.y0_c00142{bottom:0.000000px;}
.y92_c00142{bottom:200.849108px;}
.y93_c00142{bottom:200.849213px;}
.y95_c00142{bottom:200.849378px;}
.y91_c00142{bottom:200.849430px;}
.y94_c00142{bottom:200.849550px;}
.y8b_c00142{bottom:224.056005px;}
.y8f_c00142{bottom:224.056425px;}
.y8c_c00142{bottom:224.056433px;}
.y90_c00142{bottom:224.056530px;}
.y8e_c00142{bottom:224.056965px;}
.y8d_c00142{bottom:224.056988px;}
.y89_c00142{bottom:247.414425px;}
.y8a_c00142{bottom:247.414762px;}
.y88_c00142{bottom:247.414920px;}
.y87_c00142{bottom:247.414942px;}
.y86_c00142{bottom:269.706263px;}
.y84_c00142{bottom:269.706420px;}
.y83_c00142{bottom:269.706465px;}
.y85_c00142{bottom:269.706502px;}
.y81_c00142{bottom:292.761765px;}
.y82_c00142{bottom:292.762103px;}
.y7e_c00142{bottom:292.762140px;}
.y80_c00142{bottom:292.762155px;}
.y7f_c00142{bottom:292.762500px;}
.y7c_c00142{bottom:315.785985px;}
.y7d_c00142{bottom:315.786345px;}
.y7a_c00142{bottom:315.786398px;}
.y7b_c00142{bottom:315.786480px;}
.y79_c00142{bottom:315.786938px;}
.y74_c00142{bottom:339.012907px;}
.y75_c00142{bottom:339.013590px;}
.y78_c00142{bottom:339.013755px;}
.y77_c00142{bottom:339.013950px;}
.y76_c00142{bottom:339.014122px;}
.y6f_c00142{bottom:360.170580px;}
.y70_c00142{bottom:360.810705px;}
.y71_c00142{bottom:361.737323px;}
.y72_c00142{bottom:362.022668px;}
.y73_c00142{bottom:362.896590px;}
.y6b_c00142{bottom:384.643268px;}
.y6c_c00142{bottom:384.643950px;}
.y6d_c00142{bottom:384.644310px;}
.y6e_c00142{bottom:384.644542px;}
.y66_c00142{bottom:407.564730px;}
.y65_c00142{bottom:407.564820px;}
.y67_c00142{bottom:407.565435px;}
.y69_c00142{bottom:407.565772px;}
.y68_c00142{bottom:407.565945px;}
.y6a_c00142{bottom:407.566088px;}
.y64_c00142{bottom:430.156223px;}
.y63_c00142{bottom:430.156268px;}
.y62_c00142{bottom:430.156920px;}
.y61_c00142{bottom:430.156943px;}
.y60_c00142{bottom:430.157587px;}
.y5f_c00142{bottom:430.157805px;}
.y5c_c00142{bottom:451.976520px;}
.y5b_c00142{bottom:451.976543px;}
.y5a_c00142{bottom:451.976610px;}
.y5d_c00142{bottom:451.976925px;}
.y5e_c00142{bottom:451.976963px;}
.y56_c00142{bottom:475.252702px;}
.y59_c00142{bottom:475.253145px;}
.y57_c00142{bottom:475.253280px;}
.y58_c00142{bottom:475.253512px;}
.y51_c00142{bottom:497.073000px;}
.y52_c00142{bottom:497.392860px;}
.y53_c00142{bottom:497.858790px;}
.y54_c00142{bottom:499.049422px;}
.y55_c00142{bottom:499.312695px;}
.y47_c00142{bottom:515.971500px;}
.y48_c00142{bottom:516.849562px;}
.y49_c00142{bottom:518.497800px;}
.y4a_c00142{bottom:518.930515px;}
.y4b_c00142{bottom:519.413788px;}
.y4c_c00142{bottom:520.105843px;}
.y4d_c00142{bottom:520.590849px;}
.y4e_c00142{bottom:521.645248px;}
.y4f_c00142{bottom:522.049645px;}
.y50_c00142{bottom:523.059157px;}
.y40_c00142{bottom:539.466000px;}
.y41_c00142{bottom:541.643771px;}
.y42_c00142{bottom:542.015354px;}
.y43_c00142{bottom:543.226005px;}
.y44_c00142{bottom:544.205949px;}
.y45_c00142{bottom:544.749530px;}
.y46_c00142{bottom:545.644572px;}
.y3a_c00142{bottom:563.254224px;}
.y3b_c00142{bottom:563.893998px;}
.y3c_c00142{bottom:564.961191px;}
.y3d_c00142{bottom:565.298028px;}
.y3e_c00142{bottom:566.086524px;}
.y3f_c00142{bottom:566.844804px;}
.y34_c00142{bottom:569.787000px;}
.y35_c00142{bottom:575.261301px;}
.y36_c00142{bottom:578.640729px;}
.y37_c00142{bottom:581.375748px;}
.y38_c00142{bottom:584.316000px;}
.y39_c00142{bottom:585.815532px;}
.y2f_c00142{bottom:610.290516px;}
.y30_c00142{bottom:610.290738px;}
.y31_c00142{bottom:610.290840px;}
.y32_c00142{bottom:610.291284px;}
.y33_c00142{bottom:610.291566px;}
.y2e_c00142{bottom:632.879868px;}
.y2d_c00142{bottom:632.879940px;}
.y2c_c00142{bottom:632.880474px;}
.y2b_c00142{bottom:656.061660px;}
.y2a_c00142{bottom:656.061936px;}
.y28_c00142{bottom:656.062008px;}
.y27_c00142{bottom:656.062566px;}
.y29_c00142{bottom:656.062614px;}
.y1f_c00142{bottom:677.161116px;}
.y20_c00142{bottom:677.444634px;}
.y21_c00142{bottom:678.403464px;}
.y22_c00142{bottom:678.992814px;}
.y23_c00142{bottom:679.284402px;}
.y24_c00142{bottom:680.646630px;}
.y25_c00142{bottom:682.077420px;}
.y26_c00142{bottom:683.108022px;}
.y13_c00142{bottom:699.841500px;}
.y14_c00142{bottom:700.515366px;}
.y15_c00142{bottom:700.742454px;}
.y16_c00142{bottom:701.092194px;}
.y17_c00142{bottom:701.790738px;}
.y18_c00142{bottom:701.908998px;}
.y19_c00142{bottom:702.122586px;}
.y1a_c00142{bottom:702.712842px;}
.y1b_c00142{bottom:704.063940px;}
.y1c_c00142{bottom:704.632164px;}
.y1d_c00142{bottom:704.946336px;}
.y1e_c00142{bottom:705.333012px;}
.yb_c00142{bottom:721.746000px;}
.yc_c00142{bottom:725.341500px;}
.yd_c00142{bottom:726.220500px;}
.ye_c00142{bottom:727.704000px;}
.yf_c00142{bottom:728.667000px;}
.y10_c00142{bottom:730.218000px;}
.y11_c00142{bottom:733.875000px;}
.y12_c00142{bottom:736.768500px;}
.ya_c00142{bottom:768.286500px;}
.y5_c00142{bottom:777.369109px;}
.y6_c00142{bottom:778.632694px;}
.y7_c00142{bottom:779.391455px;}
.y8_c00142{bottom:783.441817px;}
.y9_c00142{bottom:788.508701px;}
.y1_c00142{bottom:848.166000px;}
.y2_c00142{bottom:850.629708px;}
.y3_c00142{bottom:853.158696px;}
.y4_c00142{bottom:856.928769px;}
.h4_c00142{height:36.750000px;}
.hd_c00142{height:63.013890px;}
.hc_c00142{height:64.061560px;}
.h9_c00142{height:66.154763px;}
.h10_c00142{height:66.157441px;}
.ha_c00142{height:67.178761px;}
.hb_c00142{height:68.228430px;}
.h11_c00142{height:69.307796px;}
.hf_c00142{height:70.357914px;}
.h8_c00142{height:71.405141px;}
.he_c00142{height:71.408032px;}
.h6_c00142{height:72.455216px;}
.h7_c00142{height:73.505292px;}
.h12_c00142{height:73.508268px;}
.h5_c00142{height:78.750000px;}
.h3_c00142{height:95.509717px;}
.h2_c00142{height:138.541568px;}
.h1_c00142{height:1005.000000px;}
.h0_c00142{height:1005.150000px;}
.w0_c00142{width:705.450000px;}
.w1_c00142{width:705.750000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:40.876500px;}
.xa_c00142{left:42.898500px;}
.x31_c00142{left:45.757698px;}
.x9_c00142{left:48.870000px;}
.x2c_c00142{left:56.308500px;}
.x32_c00142{left:94.526826px;}
.x3c_c00142{left:98.058000px;}
.x5_c00142{left:103.679995px;}
.x2_c00142{left:113.266038px;}
.x6_c00142{left:141.578631px;}
.x28_c00142{left:148.496856px;}
.x2d_c00142{left:150.504231px;}
.x26_c00142{left:156.598482px;}
.x36_c00142{left:160.272000px;}
.x54_c00142{left:166.856340px;}
.x11_c00142{left:173.508000px;}
.xb_c00142{left:176.086500px;}
.x37_c00142{left:179.829000px;}
.x4f_c00142{left:182.249190px;}
.x57_c00142{left:185.220022px;}
.x3_c00142{left:187.573656px;}
.x1c_c00142{left:196.749570px;}
.x44_c00142{left:199.261672px;}
.x33_c00142{left:201.598908px;}
.x59_c00142{left:202.773067px;}
.x29_c00142{left:206.282172px;}
.xc_c00142{left:208.660500px;}
.x27_c00142{left:210.061686px;}
.x48_c00142{left:218.162707px;}
.x3d_c00142{left:220.164000px;}
.x50_c00142{left:221.403487px;}
.x51_c00142{left:224.578620px;}
.x47_c00142{left:226.534380px;}
.x12_c00142{left:229.663500px;}
.x42_c00142{left:231.864000px;}
.x4c_c00142{left:233.014365px;}
.x45_c00142{left:235.985430px;}
.x49_c00142{left:241.925062px;}
.x38_c00142{left:243.547500px;}
.x2a_c00142{left:247.325076px;}
.x13_c00142{left:248.587500px;}
.x5a_c00142{left:251.919615px;}
.x3e_c00142{left:253.119000px;}
.x2e_c00142{left:255.714888px;}
.x34_c00142{left:261.740472px;}
.xd_c00142{left:263.620500px;}
.x1d_c00142{left:265.275432px;}
.x23_c00142{left:267.306276px;}
.x53_c00142{left:269.198535px;}
.x2b_c00142{left:272.977266px;}
.x46_c00142{left:274.869682px;}
.x3f_c00142{left:276.214500px;}
.x14_c00142{left:277.732500px;}
.x58_c00142{left:279.462022px;}
.x52_c00142{left:286.353120px;}
.x5b_c00142{left:290.803897px;}
.x24_c00142{left:291.878322px;}
.x39_c00142{left:295.123500px;}
.x4_c00142{left:298.347272px;}
.x2f_c00142{left:306.307500px;}
.x1e_c00142{left:307.386924px;}
.x43_c00142{left:311.239500px;}
.x4d_c00142{left:313.213387px;}
.x35_c00142{left:319.527066px;}
.x55_c00142{left:322.125067px;}
.x3a_c00142{left:323.733000px;}
.x40_c00142{left:326.424000px;}
.x1f_c00142{left:328.185420px;}
.x30_c00142{left:332.109792px;}
.x15_c00142{left:335.944500px;}
.x25_c00142{left:338.862090px;}
.x7_c00142{left:343.723566px;}
.x16_c00142{left:345.799500px;}
.xe_c00142{left:356.775000px;}
.x17_c00142{left:363.598500px;}
.x3b_c00142{left:370.840500px;}
.x4a_c00142{left:379.911112px;}
.x41_c00142{left:393.753000px;}
.x56_c00142{left:394.763902px;}
.x4e_c00142{left:406.643902px;}
.x4b_c00142{left:409.614795px;}
.x18_c00142{left:412.786500px;}
.x20_c00142{left:425.452080px;}
.xf_c00142{left:492.216000px;}
.x19_c00142{left:525.378000px;}
.x21_c00142{left:527.682132px;}
.x1a_c00142{left:572.730000px;}
.x8_c00142{left:596.630386px;}
.x10_c00142{left:599.394000px;}
.x22_c00142{left:601.313868px;}
.x1b_c00142{left:631.134000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
.fs2_c00142{font-size:32.666667pt;}
.fsb_c00142{font-size:56.012347pt;}
.fsa_c00142{font-size:56.943609pt;}
.fs7_c00142{font-size:58.804233pt;}
.fse_c00142{font-size:58.806615pt;}
.fs8_c00142{font-size:59.714455pt;}
.fs9_c00142{font-size:60.647493pt;}
.fsf_c00142{font-size:61.606930pt;}
.fsd_c00142{font-size:62.540368pt;}
.fs6_c00142{font-size:63.471236pt;}
.fsc_c00142{font-size:63.473806pt;}
.fs4_c00142{font-size:64.404637pt;}
.fs5_c00142{font-size:65.338037pt;}
.fs10_c00142{font-size:65.340683pt;}
.fs3_c00142{font-size:70.000000pt;}
.fs1_c00142{font-size:84.897526pt;}
.fs0_c00142{font-size:123.148060pt;}
.y0_c00142{bottom:0.000000pt;}
.y92_c00142{bottom:178.532540pt;}
.y93_c00142{bottom:178.532633pt;}
.y95_c00142{bottom:178.532780pt;}
.y91_c00142{bottom:178.532827pt;}
.y94_c00142{bottom:178.532933pt;}
.y8b_c00142{bottom:199.160893pt;}
.y8f_c00142{bottom:199.161267pt;}
.y8c_c00142{bottom:199.161273pt;}
.y90_c00142{bottom:199.161360pt;}
.y8e_c00142{bottom:199.161747pt;}
.y8d_c00142{bottom:199.161767pt;}
.y89_c00142{bottom:219.923933pt;}
.y8a_c00142{bottom:219.924233pt;}
.y88_c00142{bottom:219.924373pt;}
.y87_c00142{bottom:219.924393pt;}
.y86_c00142{bottom:239.738900pt;}
.y84_c00142{bottom:239.739040pt;}
.y83_c00142{bottom:239.739080pt;}
.y85_c00142{bottom:239.739113pt;}
.y81_c00142{bottom:260.232680pt;}
.y82_c00142{bottom:260.232980pt;}
.y7e_c00142{bottom:260.233013pt;}
.y80_c00142{bottom:260.233027pt;}
.y7f_c00142{bottom:260.233333pt;}
.y7c_c00142{bottom:280.698653pt;}
.y7d_c00142{bottom:280.698973pt;}
.y7a_c00142{bottom:280.699020pt;}
.y7b_c00142{bottom:280.699093pt;}
.y79_c00142{bottom:280.699500pt;}
.y74_c00142{bottom:301.344807pt;}
.y75_c00142{bottom:301.345413pt;}
.y78_c00142{bottom:301.345560pt;}
.y77_c00142{bottom:301.345733pt;}
.y76_c00142{bottom:301.345887pt;}
.y6f_c00142{bottom:320.151627pt;}
.y70_c00142{bottom:320.720627pt;}
.y71_c00142{bottom:321.544287pt;}
.y72_c00142{bottom:321.797927pt;}
.y73_c00142{bottom:322.574747pt;}
.y6b_c00142{bottom:341.905127pt;}
.y6c_c00142{bottom:341.905733pt;}
.y6d_c00142{bottom:341.906053pt;}
.y6e_c00142{bottom:341.906260pt;}
.y66_c00142{bottom:362.279760pt;}
.y65_c00142{bottom:362.279840pt;}
.y67_c00142{bottom:362.280387pt;}
.y69_c00142{bottom:362.280687pt;}
.y68_c00142{bottom:362.280840pt;}
.y6a_c00142{bottom:362.280967pt;}
.y64_c00142{bottom:382.361087pt;}
.y63_c00142{bottom:382.361127pt;}
.y62_c00142{bottom:382.361707pt;}
.y61_c00142{bottom:382.361727pt;}
.y60_c00142{bottom:382.362300pt;}
.y5f_c00142{bottom:382.362493pt;}
.y5c_c00142{bottom:401.756907pt;}
.y5b_c00142{bottom:401.756927pt;}
.y5a_c00142{bottom:401.756987pt;}
.y5d_c00142{bottom:401.757267pt;}
.y5e_c00142{bottom:401.757300pt;}
.y56_c00142{bottom:422.446847pt;}
.y59_c00142{bottom:422.447240pt;}
.y57_c00142{bottom:422.447360pt;}
.y58_c00142{bottom:422.447567pt;}
.y51_c00142{bottom:441.842667pt;}
.y52_c00142{bottom:442.126987pt;}
.y53_c00142{bottom:442.541147pt;}
.y54_c00142{bottom:443.599487pt;}
.y55_c00142{bottom:443.833507pt;}
.y47_c00142{bottom:458.641333pt;}
.y48_c00142{bottom:459.421833pt;}
.y49_c00142{bottom:460.886933pt;}
.y4a_c00142{bottom:461.271569pt;}
.y4b_c00142{bottom:461.701145pt;}
.y4c_c00142{bottom:462.316305pt;}
.y4d_c00142{bottom:462.747421pt;}
.y4e_c00142{bottom:463.684665pt;}
.y4f_c00142{bottom:464.044129pt;}
.y50_c00142{bottom:464.941473pt;}
.y40_c00142{bottom:479.525333pt;}
.y41_c00142{bottom:481.461129pt;}
.y42_c00142{bottom:481.791425pt;}
.y43_c00142{bottom:482.867560pt;}
.y44_c00142{bottom:483.738621pt;}
.y45_c00142{bottom:484.221804pt;}
.y46_c00142{bottom:485.017397pt;}
.y3a_c00142{bottom:500.670421pt;}
.y3b_c00142{bottom:501.239109pt;}
.y3c_c00142{bottom:502.187725pt;}
.y3d_c00142{bottom:502.487136pt;}
.y3e_c00142{bottom:503.188021pt;}
.y3f_c00142{bottom:503.862048pt;}
.y34_c00142{bottom:506.477333pt;}
.y35_c00142{bottom:511.343379pt;}
.y36_c00142{bottom:514.347315pt;}
.y37_c00142{bottom:516.778443pt;}
.y38_c00142{bottom:519.392000pt;}
.y39_c00142{bottom:520.724917pt;}
.y2f_c00142{bottom:542.480459pt;}
.y30_c00142{bottom:542.480656pt;}
.y31_c00142{bottom:542.480747pt;}
.y32_c00142{bottom:542.481141pt;}
.y33_c00142{bottom:542.481392pt;}
.y2e_c00142{bottom:562.559883pt;}
.y2d_c00142{bottom:562.559947pt;}
.y2c_c00142{bottom:562.560421pt;}
.y2b_c00142{bottom:583.165920pt;}
.y2a_c00142{bottom:583.166165pt;}
.y28_c00142{bottom:583.166229pt;}
.y27_c00142{bottom:583.166725pt;}
.y29_c00142{bottom:583.166768pt;}
.y1f_c00142{bottom:601.920992pt;}
.y20_c00142{bottom:602.173008pt;}
.y21_c00142{bottom:603.025301pt;}
.y22_c00142{bottom:603.549168pt;}
.y23_c00142{bottom:603.808357pt;}
.y24_c00142{bottom:605.019227pt;}
.y25_c00142{bottom:606.291040pt;}
.y26_c00142{bottom:607.207131pt;}
.y13_c00142{bottom:622.081333pt;}
.y14_c00142{bottom:622.680325pt;}
.y15_c00142{bottom:622.882181pt;}
.y16_c00142{bottom:623.193061pt;}
.y17_c00142{bottom:623.813989pt;}
.y18_c00142{bottom:623.919109pt;}
.y19_c00142{bottom:624.108965pt;}
.y1a_c00142{bottom:624.633637pt;}
.y1b_c00142{bottom:625.834613pt;}
.y1c_c00142{bottom:626.339701pt;}
.y1d_c00142{bottom:626.618965pt;}
.y1e_c00142{bottom:626.962677pt;}
.yb_c00142{bottom:641.552000pt;}
.yc_c00142{bottom:644.748000pt;}
.yd_c00142{bottom:645.529333pt;}
.ye_c00142{bottom:646.848000pt;}
.yf_c00142{bottom:647.704000pt;}
.y10_c00142{bottom:649.082667pt;}
.y11_c00142{bottom:652.333333pt;}
.y12_c00142{bottom:654.905333pt;}
.ya_c00142{bottom:682.921333pt;}
.y5_c00142{bottom:690.994764pt;}
.y6_c00142{bottom:692.117951pt;}
.y7_c00142{bottom:692.792404pt;}
.y8_c00142{bottom:696.392727pt;}
.y9_c00142{bottom:700.896623pt;}
.y1_c00142{bottom:753.925333pt;}
.y2_c00142{bottom:756.115296pt;}
.y3_c00142{bottom:758.363285pt;}
.y4_c00142{bottom:761.714461pt;}
.h4_c00142{height:32.666667pt;}
.hd_c00142{height:56.012347pt;}
.hc_c00142{height:56.943609pt;}
.h9_c00142{height:58.804233pt;}
.h10_c00142{height:58.806615pt;}
.ha_c00142{height:59.714455pt;}
.hb_c00142{height:60.647493pt;}
.h11_c00142{height:61.606930pt;}
.hf_c00142{height:62.540368pt;}
.h8_c00142{height:63.471236pt;}
.he_c00142{height:63.473806pt;}
.h6_c00142{height:64.404637pt;}
.h7_c00142{height:65.338037pt;}
.h12_c00142{height:65.340683pt;}
.h5_c00142{height:70.000000pt;}
.h3_c00142{height:84.897526pt;}
.h2_c00142{height:123.148060pt;}
.h1_c00142{height:893.333333pt;}
.h0_c00142{height:893.466667pt;}
.w0_c00142{width:627.066667pt;}
.w1_c00142{width:627.333333pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:36.334667pt;}
.xa_c00142{left:38.132000pt;}
.x31_c00142{left:40.673509pt;}
.x9_c00142{left:43.440000pt;}
.x2c_c00142{left:50.052000pt;}
.x32_c00142{left:84.023845pt;}
.x3c_c00142{left:87.162667pt;}
.x5_c00142{left:92.159996pt;}
.x2_c00142{left:100.680923pt;}
.x6_c00142{left:125.847672pt;}
.x28_c00142{left:131.997205pt;}
.x2d_c00142{left:133.781539pt;}
.x26_c00142{left:139.198651pt;}
.x36_c00142{left:142.464000pt;}
.x54_c00142{left:148.316747pt;}
.x11_c00142{left:154.229333pt;}
.xb_c00142{left:156.521333pt;}
.x37_c00142{left:159.848000pt;}
.x4f_c00142{left:161.999280pt;}
.x57_c00142{left:164.640020pt;}
.x3_c00142{left:166.732139pt;}
.x1c_c00142{left:174.888507pt;}
.x44_c00142{left:177.121487pt;}
.x33_c00142{left:179.199029pt;}
.x59_c00142{left:180.242727pt;}
.x29_c00142{left:183.361931pt;}
.xc_c00142{left:185.476000pt;}
.x27_c00142{left:186.721499pt;}
.x48_c00142{left:193.922407pt;}
.x3d_c00142{left:195.701333pt;}
.x50_c00142{left:196.803100pt;}
.x51_c00142{left:199.625440pt;}
.x47_c00142{left:201.363893pt;}
.x12_c00142{left:204.145333pt;}
.x42_c00142{left:206.101333pt;}
.x4c_c00142{left:207.123880pt;}
.x45_c00142{left:209.764827pt;}
.x49_c00142{left:215.044500pt;}
.x38_c00142{left:216.486667pt;}
.x2a_c00142{left:219.844512pt;}
.x13_c00142{left:220.966667pt;}
.x5a_c00142{left:223.928547pt;}
.x3e_c00142{left:224.994667pt;}
.x2e_c00142{left:227.302123pt;}
.x34_c00142{left:232.658197pt;}
.xd_c00142{left:234.329333pt;}
.x1d_c00142{left:235.800384pt;}
.x23_c00142{left:237.605579pt;}
.x53_c00142{left:239.287587pt;}
.x2b_c00142{left:242.646459pt;}
.x46_c00142{left:244.328607pt;}
.x3f_c00142{left:245.524000pt;}
.x14_c00142{left:246.873333pt;}
.x58_c00142{left:248.410687pt;}
.x52_c00142{left:254.536107pt;}
.x5b_c00142{left:258.492353pt;}
.x24_c00142{left:259.447397pt;}
.x39_c00142{left:262.332000pt;}
.x4_c00142{left:265.197575pt;}
.x2f_c00142{left:272.273333pt;}
.x1e_c00142{left:273.232821pt;}
.x43_c00142{left:276.657333pt;}
.x4d_c00142{left:278.411900pt;}
.x35_c00142{left:284.024059pt;}
.x55_c00142{left:286.333393pt;}
.x3a_c00142{left:287.762667pt;}
.x40_c00142{left:290.154667pt;}
.x1f_c00142{left:291.720373pt;}
.x30_c00142{left:295.208704pt;}
.x15_c00142{left:298.617333pt;}
.x25_c00142{left:301.210747pt;}
.x7_c00142{left:305.532059pt;}
.x16_c00142{left:307.377333pt;}
.xe_c00142{left:317.133333pt;}
.x17_c00142{left:323.198667pt;}
.x3b_c00142{left:329.636000pt;}
.x4a_c00142{left:337.698767pt;}
.x41_c00142{left:350.002667pt;}
.x56_c00142{left:350.901247pt;}
.x4e_c00142{left:361.461247pt;}
.x4b_c00142{left:364.102040pt;}
.x18_c00142{left:366.921333pt;}
.x20_c00142{left:378.179627pt;}
.xf_c00142{left:437.525333pt;}
.x19_c00142{left:467.002667pt;}
.x21_c00142{left:469.050784pt;}
.x1a_c00142{left:509.093333pt;}
.x8_c00142{left:530.338121pt;}
.x10_c00142{left:532.794667pt;}
.x22_c00142{left:534.501216pt;}
.x1b_c00142{left:561.008000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m19_c00143{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);}
.m8_c00143{transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);}
.m54_c00143{transform:matrix(0.108173,-0.003029,0.006997,0.249902,0,0);-ms-transform:matrix(0.108173,-0.003029,0.006997,0.249902,0,0);-webkit-transform:matrix(0.108173,-0.003029,0.006997,0.249902,0,0);}
.m9_c00143{transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);}
.ma2_c00143{transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{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);}
.ma_c00143{transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.128765,-0.003605,0.006997,0.249902,0,0);-ms-transform:matrix(0.128765,-0.003605,0.006997,0.249902,0,0);-webkit-transform:matrix(0.128765,-0.003605,0.006997,0.249902,0,0);}
.mb7_c00143{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);}
.m33_c00143{transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{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);}
.m5_c00143{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{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);}
.m63_c00143{transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.149370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149370,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{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);}
.m4_c00143{transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);}
.ma8_c00143{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);}
.m55_c00143{transform:matrix(0.166860,-0.004672,0.006997,0.249902,0,0);-ms-transform:matrix(0.166860,-0.004672,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166860,-0.004672,0.006997,0.249902,0,0);}
.m80_c00143{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);}
.m50_c00143{transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);-ms-transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);}
.mb6_c00143{transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{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);}
.m8c_c00143{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);}
.m6d_c00143{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);}
.m4f_c00143{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);}
.m77_c00143{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);}
.m7c_c00143{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);}
.m81_c00143{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);}
.m86_c00143{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);}
.m7a_c00143{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);}
.m24_c00143{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);}
.m82_c00143{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);}
.maa_c00143{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);}
.m9a_c00143{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);}
.m76_c00143{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);}
.m7d_c00143{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);}
.m52_c00143{transform:matrix(0.181609,-0.005085,0.006997,0.249902,0,0);-ms-transform:matrix(0.181609,-0.005085,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181609,-0.005085,0.006997,0.249902,0,0);}
.m97_c00143{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);}
.m60_c00143{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);}
.m87_c00143{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);}
.m49_c00143{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);}
.mab_c00143{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);}
.m17_c00143{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);}
.m68_c00143{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);}
.m99_c00143{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);}
.m5c_c00143{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);}
.m8d_c00143{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);}
.m79_c00143{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);}
.mb1_c00143{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);}
.m88_c00143{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);}
.m3d_c00143{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);}
.m37_c00143{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);}
.m70_c00143{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);}
.m4d_c00143{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);}
.m6b_c00143{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);}
.m61_c00143{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);}
.m6a_c00143{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);}
.mb3_c00143{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);}
.m5e_c00143{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);}
.m6c_c00143{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);}
.m2b_c00143{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);}
.m58_c00143{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);}
.m20_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);}
.m5d_c00143{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);}
.m8b_c00143{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);}
.ma9_c00143{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);}
.m72_c00143{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);}
.m10_c00143{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);}
.m26_c00143{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);}
.mb2_c00143{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);}
.m85_c00143{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);}
.m74_c00143{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);}
.mb4_c00143{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);}
.m2d_c00143{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);}
.m3c_c00143{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);}
.m5a_c00143{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);}
.m66_c00143{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);}
.m73_c00143{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);}
.m64_c00143{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);}
.m65_c00143{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);}
.m7b_c00143{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);}
.mbb_c00143{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);}
.m98_c00143{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);}
.m9b_c00143{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);}
.m42_c00143{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);}
.m67_c00143{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);}
.m1a_c00143{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);}
.m15_c00143{transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{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);}
.m84_c00143{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);}
.m8e_c00143{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);}
.m62_c00143{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);}
.m21_c00143{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);}
.m11_c00143{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);}
.mba_c00143{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);}
.ma6_c00143{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);}
.mad_c00143{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);}
.mae_c00143{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.ma0_c00143{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);}
.m75_c00143{transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);}
.m93_c00143{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);}
.m78_c00143{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.maf_c00143{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);}
.m31_c00143{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);}
.ma5_c00143{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);}
.m4b_c00143{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);}
.m89_c00143{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);}
.m9c_c00143{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);}
.m69_c00143{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00143{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);}
.m7f_c00143{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);}
.m4e_c00143{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);}
.m2a_c00143{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);}
.ma7_c00143{transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{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);}
.m92_c00143{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);}
.m94_c00143{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);}
.m71_c00143{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);}
.m3e_c00143{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);}
.m53_c00143{transform:matrix(0.231654,-0.006486,0.006997,0.249902,0,0);-ms-transform:matrix(0.231654,-0.006486,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231654,-0.006486,0.006997,0.249902,0,0);}
.m22_c00143{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);}
.m95_c00143{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);}
.mac_c00143{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m90_c00143{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);}
.m59_c00143{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);}
.ma4_c00143{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_c00143{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.mb5_c00143{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);}
.m9f_c00143{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);}
.m28_c00143{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m91_c00143{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);}
.m30_c00143{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);}
.m2e_c00143{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);}
.m32_c00143{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);}
.md_c00143{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.ma3_c00143{transform:matrix(0.260370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260370,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{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);}
.ma1_c00143{transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.266495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266495,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{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);}
.me_c00143{transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{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);}
.mb0_c00143{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{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);}
.m46_c00143{transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282200,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292145,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m9d_c00143{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);}
.mf_c00143{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);}
.m96_c00143{transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);}
.mb9_c00143{transform:matrix(0.321155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321155,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.333020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333020,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{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);}
.m48_c00143{transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337385,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.346465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346465,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.347520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347520,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353045,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.356415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356415,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);}
.m57_c00143{transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360955,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.369140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369140,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.377805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377805,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.384285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384285,0.000000,0.000000,0.250000,0,0);}
.m9e_c00143{transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.401005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401005,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.406830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406830,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.430470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430470,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.437750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437750,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.441245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441245,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.441400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.444930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444930,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.461800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461800,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.487029,-0.019013,0.009752,0.249810,0,0);-ms-transform:matrix(0.487029,-0.019013,0.009752,0.249810,0,0);-webkit-transform:matrix(0.487029,-0.019013,0.009752,0.249810,0,0);}
.m43_c00143{transform:matrix(0.503070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503070,0.000000,0.000000,0.250000,0,0);}
.mb8_c00143{transform:matrix(0.695165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695165,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.702055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702055,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(1.139615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.139615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.139615,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(4.717595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.717595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.717595,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;}
._0_c00143{margin-left:-34.627114px;}
.fc0_c00143{color:transparent;}
.fsf_c00143{font-size:27.300000px;}
.fsc_c00143{font-size:29.400000px;}
.fsb_c00143{font-size:35.700000px;}
.fs12_c00143{font-size:51.450000px;}
.fs10_c00143{font-size:52.500000px;}
.fs13_c00143{font-size:54.600000px;}
.fs11_c00143{font-size:57.750000px;}
.fs5_c00143{font-size:64.050000px;}
.fs8_c00143{font-size:66.150000px;}
.fs3_c00143{font-size:68.250000px;}
.fsd_c00143{font-size:70.350000px;}
.fs4_c00143{font-size:71.400000px;}
.fsa_c00143{font-size:72.450000px;}
.fs9_c00143{font-size:74.550000px;}
.fs6_c00143{font-size:76.650000px;}
.fse_c00143{font-size:101.889917px;}
.fs7_c00143{font-size:110.250000px;}
.fs0_c00143{font-size:116.522141px;}
.fs2_c00143{font-size:120.750000px;}
.fs1_c00143{font-size:140.700000px;}
.y0_c00143{bottom:0.000000px;}
.y1e_c00143{bottom:187.225500px;}
.y1d_c00143{bottom:206.283000px;}
.y1c_c00143{bottom:224.164500px;}
.y1b_c00143{bottom:240.967500px;}
.y1a_c00143{bottom:260.011500px;}
.y19_c00143{bottom:277.651500px;}
.y18_c00143{bottom:295.882500px;}
.y17_c00143{bottom:338.040000px;}
.y11_c00143{bottom:361.815000px;}
.y12_c00143{bottom:362.647524px;}
.y13_c00143{bottom:363.820332px;}
.y14_c00143{bottom:364.537398px;}
.y15_c00143{bottom:365.104608px;}
.y16_c00143{bottom:366.645630px;}
.y10_c00143{bottom:414.180000px;}
.ye_c00143{bottom:438.210000px;}
.yf_c00143{bottom:450.163500px;}
.yd_c00143{bottom:457.920000px;}
.yc_c00143{bottom:486.189000px;}
.yb_c00143{bottom:522.652500px;}
.ya_c00143{bottom:576.498000px;}
.y9_c00143{bottom:595.423500px;}
.y8_c00143{bottom:631.213500px;}
.y7_c00143{bottom:668.472000px;}
.y6_c00143{bottom:705.337500px;}
.y5_c00143{bottom:740.436000px;}
.y4_c00143{bottom:777.178500px;}
.y3_c00143{bottom:813.709500px;}
.y2_c00143{bottom:860.311500px;}
.y1_c00143{bottom:913.983000px;}
.h11_c00143{height:27.300000px;}
.he_c00143{height:29.400000px;}
.hd_c00143{height:35.700000px;}
.h14_c00143{height:51.450000px;}
.h12_c00143{height:52.500000px;}
.h15_c00143{height:54.600000px;}
.h13_c00143{height:57.750000px;}
.h7_c00143{height:64.050000px;}
.ha_c00143{height:66.150000px;}
.h5_c00143{height:68.250000px;}
.hf_c00143{height:70.350000px;}
.h6_c00143{height:71.400000px;}
.hc_c00143{height:72.450000px;}
.hb_c00143{height:74.550000px;}
.h8_c00143{height:76.650000px;}
.h10_c00143{height:101.889917px;}
.h9_c00143{height:110.250000px;}
.h2_c00143{height:116.522141px;}
.h4_c00143{height:120.750000px;}
.h3_c00143{height:140.700000px;}
.h0_c00143{height:1008.450000px;}
.h1_c00143{height:1008.750000px;}
.w0_c00143{width:676.890000px;}
.w1_c00143{width:677.250000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:88.051500px;}
.x51_c00143{left:141.750000px;}
.x6b_c00143{left:142.830000px;}
.x5d_c00143{left:143.910000px;}
.x48_c00143{left:156.870000px;}
.x52_c00143{left:164.430000px;}
.x6_c00143{left:167.400000px;}
.x49_c00143{left:170.100000px;}
.x78_c00143{left:173.880000px;}
.x31_c00143{left:176.850000px;}
.xc_c00143{left:178.740000px;}
.x1a_c00143{left:180.090000px;}
.x6c_c00143{left:186.570000px;}
.x5e_c00143{left:189.270000px;}
.x65_c00143{left:192.510000px;}
.x3d_c00143{left:200.880000px;}
.x53_c00143{left:204.660000px;}
.xd_c00143{left:207.900000px;}
.x22_c00143{left:209.250000px;}
.x7_c00143{left:211.680000px;}
.x2b_c00143{left:213.030000px;}
.x14_c00143{left:214.650000px;}
.x54_c00143{left:226.530000px;}
.x2_c00143{left:229.230000px;}
.x1b_c00143{left:231.120000px;}
.x79_c00143{left:237.060000px;}
.x71_c00143{left:238.410000px;}
.x4a_c00143{left:239.760000px;}
.xe_c00143{left:252.990000px;}
.x32_c00143{left:254.880000px;}
.x3e_c00143{left:257.040000px;}
.x4b_c00143{left:266.220000px;}
.x72_c00143{left:270.540000px;}
.xf_c00143{left:272.970000px;}
.x33_c00143{left:276.750000px;}
.x42_c00143{left:283.230000px;}
.x43_c00143{left:285.409500px;}
.x10_c00143{left:291.600000px;}
.x34_c00143{left:296.190000px;}
.x55_c00143{left:298.620000px;}
.x7a_c00143{left:299.700000px;}
.x5f_c00143{left:304.830000px;}
.x1c_c00143{left:309.960000px;}
.x3f_c00143{left:313.470000px;}
.x44_c00143{left:315.142500px;}
.x39_c00143{left:318.330000px;}
.x2e_c00143{left:319.410000px;}
.x3_c00143{left:320.760000px;}
.x73_c00143{left:321.840000px;}
.x66_c00143{left:324.270000px;}
.x35_c00143{left:328.320000px;}
.x11_c00143{left:337.230000px;}
.x2c_c00143{left:338.310000px;}
.x23_c00143{left:339.660000px;}
.x6d_c00143{left:343.440000px;}
.x56_c00143{left:347.490000px;}
.x15_c00143{left:352.620000px;}
.x45_c00143{left:357.028500px;}
.x47_c00143{left:362.070000px;}
.x24_c00143{left:364.770000px;}
.x12_c00143{left:366.930000px;}
.x8_c00143{left:370.170000px;}
.x36_c00143{left:374.220000px;}
.x1d_c00143{left:375.300000px;}
.x57_c00143{left:378.270000px;}
.x4c_c00143{left:379.350000px;}
.x40_c00143{left:382.590000px;}
.x25_c00143{left:386.100000px;}
.x60_c00143{left:387.720000px;}
.x16_c00143{left:391.770000px;}
.x2f_c00143{left:392.850000px;}
.x1e_c00143{left:396.630000px;}
.x37_c00143{left:401.220000px;}
.x26_c00143{left:402.300000px;}
.x41_c00143{left:406.620000px;}
.x2d_c00143{left:412.020000px;}
.x17_c00143{left:419.310000px;}
.x6e_c00143{left:420.390000px;}
.x7b_c00143{left:422.550000px;}
.x38_c00143{left:428.490000px;}
.x58_c00143{left:432.270000px;}
.x9_c00143{left:433.350000px;}
.x74_c00143{left:441.450000px;}
.x3a_c00143{left:445.770000px;}
.x18_c00143{left:447.930000px;}
.x59_c00143{left:450.630000px;}
.x61_c00143{left:454.410000px;}
.x13_c00143{left:456.570000px;}
.x46_c00143{left:457.932000px;}
.x4_c00143{left:459.270000px;}
.xa_c00143{left:464.940000px;}
.x27_c00143{left:471.420000px;}
.x1f_c00143{left:475.470000px;}
.xb_c00143{left:484.380000px;}
.x28_c00143{left:488.430000px;}
.x4d_c00143{left:493.560000px;}
.x5a_c00143{left:498.420000px;}
.x6f_c00143{left:500.310000px;}
.x5_c00143{left:502.470000px;}
.x30_c00143{left:506.520000px;}
.x4e_c00143{left:510.300000px;}
.x75_c00143{left:512.460000px;}
.x20_c00143{left:513.540000px;}
.x67_c00143{left:519.210000px;}
.x5b_c00143{left:520.560000px;}
.x19_c00143{left:526.770000px;}
.x21_c00143{left:534.330000px;}
.x4f_c00143{left:537.030000px;}
.x29_c00143{left:538.110000px;}
.x76_c00143{left:544.320000px;}
.x68_c00143{left:551.880000px;}
.x62_c00143{left:553.500000px;}
.x2a_c00143{left:556.470000px;}
.x70_c00143{left:571.590000px;}
.x69_c00143{left:574.560000px;}
.x63_c00143{left:578.610000px;}
.x5c_c00143{left:580.500000px;}
.x77_c00143{left:581.580000px;}
.x64_c00143{left:588.600000px;}
.x50_c00143{left:601.830000px;}
.x6a_c00143{left:615.060000px;}
.x3b_c00143{left:668.520000px;}
.x3c_c00143{left:672.300000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._0_c00143{margin-left:-30.779657pt;}
.fsf_c00143{font-size:24.266667pt;}
.fsc_c00143{font-size:26.133333pt;}
.fsb_c00143{font-size:31.733333pt;}
.fs12_c00143{font-size:45.733333pt;}
.fs10_c00143{font-size:46.666667pt;}
.fs13_c00143{font-size:48.533333pt;}
.fs11_c00143{font-size:51.333333pt;}
.fs5_c00143{font-size:56.933333pt;}
.fs8_c00143{font-size:58.800000pt;}
.fs3_c00143{font-size:60.666667pt;}
.fsd_c00143{font-size:62.533333pt;}
.fs4_c00143{font-size:63.466667pt;}
.fsa_c00143{font-size:64.400000pt;}
.fs9_c00143{font-size:66.266667pt;}
.fs6_c00143{font-size:68.133333pt;}
.fse_c00143{font-size:90.568815pt;}
.fs7_c00143{font-size:98.000000pt;}
.fs0_c00143{font-size:103.575237pt;}
.fs2_c00143{font-size:107.333333pt;}
.fs1_c00143{font-size:125.066667pt;}
.y0_c00143{bottom:0.000000pt;}
.y1e_c00143{bottom:166.422667pt;}
.y1d_c00143{bottom:183.362667pt;}
.y1c_c00143{bottom:199.257333pt;}
.y1b_c00143{bottom:214.193333pt;}
.y1a_c00143{bottom:231.121333pt;}
.y19_c00143{bottom:246.801333pt;}
.y18_c00143{bottom:263.006667pt;}
.y17_c00143{bottom:300.480000pt;}
.y11_c00143{bottom:321.613333pt;}
.y12_c00143{bottom:322.353355pt;}
.y13_c00143{bottom:323.395851pt;}
.y14_c00143{bottom:324.033243pt;}
.y15_c00143{bottom:324.537429pt;}
.y16_c00143{bottom:325.907227pt;}
.y10_c00143{bottom:368.160000pt;}
.ye_c00143{bottom:389.520000pt;}
.yf_c00143{bottom:400.145333pt;}
.yd_c00143{bottom:407.040000pt;}
.yc_c00143{bottom:432.168000pt;}
.yb_c00143{bottom:464.580000pt;}
.ya_c00143{bottom:512.442667pt;}
.y9_c00143{bottom:529.265333pt;}
.y8_c00143{bottom:561.078667pt;}
.y7_c00143{bottom:594.197333pt;}
.y6_c00143{bottom:626.966667pt;}
.y5_c00143{bottom:658.165333pt;}
.y4_c00143{bottom:690.825333pt;}
.y3_c00143{bottom:723.297333pt;}
.y2_c00143{bottom:764.721333pt;}
.y1_c00143{bottom:812.429333pt;}
.h11_c00143{height:24.266667pt;}
.he_c00143{height:26.133333pt;}
.hd_c00143{height:31.733333pt;}
.h14_c00143{height:45.733333pt;}
.h12_c00143{height:46.666667pt;}
.h15_c00143{height:48.533333pt;}
.h13_c00143{height:51.333333pt;}
.h7_c00143{height:56.933333pt;}
.ha_c00143{height:58.800000pt;}
.h5_c00143{height:60.666667pt;}
.hf_c00143{height:62.533333pt;}
.h6_c00143{height:63.466667pt;}
.hc_c00143{height:64.400000pt;}
.hb_c00143{height:66.266667pt;}
.h8_c00143{height:68.133333pt;}
.h10_c00143{height:90.568815pt;}
.h9_c00143{height:98.000000pt;}
.h2_c00143{height:103.575237pt;}
.h4_c00143{height:107.333333pt;}
.h3_c00143{height:125.066667pt;}
.h0_c00143{height:896.400000pt;}
.h1_c00143{height:896.666667pt;}
.w0_c00143{width:601.680000pt;}
.w1_c00143{width:602.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:78.268000pt;}
.x51_c00143{left:126.000000pt;}
.x6b_c00143{left:126.960000pt;}
.x5d_c00143{left:127.920000pt;}
.x48_c00143{left:139.440000pt;}
.x52_c00143{left:146.160000pt;}
.x6_c00143{left:148.800000pt;}
.x49_c00143{left:151.200000pt;}
.x78_c00143{left:154.560000pt;}
.x31_c00143{left:157.200000pt;}
.xc_c00143{left:158.880000pt;}
.x1a_c00143{left:160.080000pt;}
.x6c_c00143{left:165.840000pt;}
.x5e_c00143{left:168.240000pt;}
.x65_c00143{left:171.120000pt;}
.x3d_c00143{left:178.560000pt;}
.x53_c00143{left:181.920000pt;}
.xd_c00143{left:184.800000pt;}
.x22_c00143{left:186.000000pt;}
.x7_c00143{left:188.160000pt;}
.x2b_c00143{left:189.360000pt;}
.x14_c00143{left:190.800000pt;}
.x54_c00143{left:201.360000pt;}
.x2_c00143{left:203.760000pt;}
.x1b_c00143{left:205.440000pt;}
.x79_c00143{left:210.720000pt;}
.x71_c00143{left:211.920000pt;}
.x4a_c00143{left:213.120000pt;}
.xe_c00143{left:224.880000pt;}
.x32_c00143{left:226.560000pt;}
.x3e_c00143{left:228.480000pt;}
.x4b_c00143{left:236.640000pt;}
.x72_c00143{left:240.480000pt;}
.xf_c00143{left:242.640000pt;}
.x33_c00143{left:246.000000pt;}
.x42_c00143{left:251.760000pt;}
.x43_c00143{left:253.697333pt;}
.x10_c00143{left:259.200000pt;}
.x34_c00143{left:263.280000pt;}
.x55_c00143{left:265.440000pt;}
.x7a_c00143{left:266.400000pt;}
.x5f_c00143{left:270.960000pt;}
.x1c_c00143{left:275.520000pt;}
.x3f_c00143{left:278.640000pt;}
.x44_c00143{left:280.126667pt;}
.x39_c00143{left:282.960000pt;}
.x2e_c00143{left:283.920000pt;}
.x3_c00143{left:285.120000pt;}
.x73_c00143{left:286.080000pt;}
.x66_c00143{left:288.240000pt;}
.x35_c00143{left:291.840000pt;}
.x11_c00143{left:299.760000pt;}
.x2c_c00143{left:300.720000pt;}
.x23_c00143{left:301.920000pt;}
.x6d_c00143{left:305.280000pt;}
.x56_c00143{left:308.880000pt;}
.x15_c00143{left:313.440000pt;}
.x45_c00143{left:317.358667pt;}
.x47_c00143{left:321.840000pt;}
.x24_c00143{left:324.240000pt;}
.x12_c00143{left:326.160000pt;}
.x8_c00143{left:329.040000pt;}
.x36_c00143{left:332.640000pt;}
.x1d_c00143{left:333.600000pt;}
.x57_c00143{left:336.240000pt;}
.x4c_c00143{left:337.200000pt;}
.x40_c00143{left:340.080000pt;}
.x25_c00143{left:343.200000pt;}
.x60_c00143{left:344.640000pt;}
.x16_c00143{left:348.240000pt;}
.x2f_c00143{left:349.200000pt;}
.x1e_c00143{left:352.560000pt;}
.x37_c00143{left:356.640000pt;}
.x26_c00143{left:357.600000pt;}
.x41_c00143{left:361.440000pt;}
.x2d_c00143{left:366.240000pt;}
.x17_c00143{left:372.720000pt;}
.x6e_c00143{left:373.680000pt;}
.x7b_c00143{left:375.600000pt;}
.x38_c00143{left:380.880000pt;}
.x58_c00143{left:384.240000pt;}
.x9_c00143{left:385.200000pt;}
.x74_c00143{left:392.400000pt;}
.x3a_c00143{left:396.240000pt;}
.x18_c00143{left:398.160000pt;}
.x59_c00143{left:400.560000pt;}
.x61_c00143{left:403.920000pt;}
.x13_c00143{left:405.840000pt;}
.x46_c00143{left:407.050667pt;}
.x4_c00143{left:408.240000pt;}
.xa_c00143{left:413.280000pt;}
.x27_c00143{left:419.040000pt;}
.x1f_c00143{left:422.640000pt;}
.xb_c00143{left:430.560000pt;}
.x28_c00143{left:434.160000pt;}
.x4d_c00143{left:438.720000pt;}
.x5a_c00143{left:443.040000pt;}
.x6f_c00143{left:444.720000pt;}
.x5_c00143{left:446.640000pt;}
.x30_c00143{left:450.240000pt;}
.x4e_c00143{left:453.600000pt;}
.x75_c00143{left:455.520000pt;}
.x20_c00143{left:456.480000pt;}
.x67_c00143{left:461.520000pt;}
.x5b_c00143{left:462.720000pt;}
.x19_c00143{left:468.240000pt;}
.x21_c00143{left:474.960000pt;}
.x4f_c00143{left:477.360000pt;}
.x29_c00143{left:478.320000pt;}
.x76_c00143{left:483.840000pt;}
.x68_c00143{left:490.560000pt;}
.x62_c00143{left:492.000000pt;}
.x2a_c00143{left:494.640000pt;}
.x70_c00143{left:508.080000pt;}
.x69_c00143{left:510.720000pt;}
.x63_c00143{left:514.320000pt;}
.x5c_c00143{left:516.000000pt;}
.x77_c00143{left:516.960000pt;}
.x64_c00143{left:523.200000pt;}
.x50_c00143{left:534.960000pt;}
.x6a_c00143{left:546.720000pt;}
.x3b_c00143{left:594.240000pt;}
.x3c_c00143{left:597.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_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_31cbb8ad81f4c1d1a4b2c7cb.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;}
.m3_c00144{transform:matrix(0.079130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079130,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{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);}
.m2_c00144{transform:matrix(0.279495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279495,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307280,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326045,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.354730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354730,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;}
.fs1_c00144{font-size:22.050000px;}
.fs3_c00144{font-size:26.250000px;}
.fs0_c00144{font-size:30.450000px;}
.fs2_c00144{font-size:73.500000px;}
.y0_c00144{bottom:0.000000px;}
.y5_c00144{bottom:237.870000px;}
.y3_c00144{bottom:241.380000px;}
.y6_c00144{bottom:242.460000px;}
.y2_c00144{bottom:243.000000px;}
.y7_c00144{bottom:243.540000px;}
.y4_c00144{bottom:245.025000px;}
.y1_c00144{bottom:719.551500px;}
.h3_c00144{height:22.050000px;}
.h5_c00144{height:26.250000px;}
.h2_c00144{height:30.450000px;}
.h4_c00144{height:73.500000px;}
.h1_c00144{height:1005.000000px;}
.h0_c00144{height:1005.150000px;}
.w0_c00144{width:705.450000px;}
.w1_c00144{width:705.750000px;}
.x0_c00144{left:0.000000px;}
.x7_c00144{left:106.380000px;}
.x6_c00144{left:110.970000px;}
.x5_c00144{left:127.710000px;}
.x4_c00144{left:142.830000px;}
.x3_c00144{left:146.880000px;}
.x2_c00144{left:149.850000px;}
.x1_c00144{left:227.880000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.fs1_c00144{font-size:19.600000pt;}
.fs3_c00144{font-size:23.333333pt;}
.fs0_c00144{font-size:27.066667pt;}
.fs2_c00144{font-size:65.333333pt;}
.y0_c00144{bottom:0.000000pt;}
.y5_c00144{bottom:211.440000pt;}
.y3_c00144{bottom:214.560000pt;}
.y6_c00144{bottom:215.520000pt;}
.y2_c00144{bottom:216.000000pt;}
.y7_c00144{bottom:216.480000pt;}
.y4_c00144{bottom:217.800000pt;}
.y1_c00144{bottom:639.601333pt;}
.h3_c00144{height:19.600000pt;}
.h5_c00144{height:23.333333pt;}
.h2_c00144{height:27.066667pt;}
.h4_c00144{height:65.333333pt;}
.h1_c00144{height:893.333333pt;}
.h0_c00144{height:893.466667pt;}
.w0_c00144{width:627.066667pt;}
.w1_c00144{width:627.333333pt;}
.x0_c00144{left:0.000000pt;}
.x7_c00144{left:94.560000pt;}
.x6_c00144{left:98.640000pt;}
.x5_c00144{left:113.520000pt;}
.x4_c00144{left:126.960000pt;}
.x3_c00144{left:130.560000pt;}
.x2_c00144{left:133.200000pt;}
.x1_c00144{left:202.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_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_c491a4f24633757469414bfc.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;}
.mc_c00145{transform:matrix(0.000955,0.190908,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000955,0.190908,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000955,0.190908,-0.249997,0.001250,0,0);}
.m9_c00145{transform:matrix(0.001147,0.229357,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001147,0.229357,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001147,0.229357,-0.249997,0.001250,0,0);}
.m8_c00145{transform:matrix(0.001339,0.267777,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001339,0.267777,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001339,0.267777,-0.249997,0.001250,0,0);}
.mb_c00145{transform:matrix(0.002137,0.427450,-0.249997,0.001250,0,0);-ms-transform:matrix(0.002137,0.427450,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.002137,0.427450,-0.249997,0.001250,0,0);}
.ma_c00145{transform:matrix(0.002435,0.487059,-0.249997,0.001250,0,0);-ms-transform:matrix(0.002435,0.487059,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.002435,0.487059,-0.249997,0.001250,0,0);}
.m7_c00145{transform:matrix(0.003611,0.722211,-0.249997,0.001250,0,0);-ms-transform:matrix(0.003611,0.722211,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.003611,0.722211,-0.249997,0.001250,0,0);}
.m13_c00145{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);}
.m10_c00145{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);}
.m19_c00145{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);}
.m0_c00145{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);}
.m6_c00145{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);}
.m16_c00145{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);}
.m14_c00145{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);}
.m18_c00145{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);}
.m17_c00145{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);}
.md_c00145{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);}
.m3_c00145{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);}
.m2_c00145{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);}
.me_c00145{transform:matrix(0.292680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292680,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305475,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.396925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.407435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407435,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.437845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437845,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.516485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516485,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.533270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533270,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.600320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600320,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;}
.fs3_c00145{font-size:18.900000px;}
.fs4_c00145{font-size:22.050000px;}
.fs1_c00145{font-size:26.250328px;}
.fs2_c00145{font-size:27.300000px;}
.fs0_c00145{font-size:28.350000px;}
.fs8_c00145{font-size:35.700000px;}
.fs7_c00145{font-size:36.750000px;}
.fs6_c00145{font-size:70.350000px;}
.fs5_c00145{font-size:74.550000px;}
.y0_c00145{bottom:0.000000px;}
.ye_c00145{bottom:63.180000px;}
.y7_c00145{bottom:293.758500px;}
.y6_c00145{bottom:351.808500px;}
.y5_c00145{bottom:399.615000px;}
.y4_c00145{bottom:413.925000px;}
.y3_c00145{bottom:425.265000px;}
.y2_c00145{bottom:444.421500px;}
.y1_c00145{bottom:456.300000px;}
.yb_c00145{bottom:523.828500px;}
.ya_c00145{bottom:541.362000px;}
.y8_c00145{bottom:571.050000px;}
.y9_c00145{bottom:573.765000px;}
.y12_c00145{bottom:856.170000px;}
.y13_c00145{bottom:856.305000px;}
.y10_c00145{bottom:860.220000px;}
.yf_c00145{bottom:860.760000px;}
.y11_c00145{bottom:861.030000px;}
.yd_c00145{bottom:861.301500px;}
.yc_c00145{bottom:868.320000px;}
.h5_c00145{height:18.900000px;}
.h6_c00145{height:22.050000px;}
.h3_c00145{height:26.250328px;}
.h4_c00145{height:27.300000px;}
.h2_c00145{height:28.350000px;}
.ha_c00145{height:35.700000px;}
.h9_c00145{height:36.750000px;}
.h8_c00145{height:70.350000px;}
.h7_c00145{height:74.550000px;}
.h0_c00145{height:1008.450000px;}
.h1_c00145{height:1008.750000px;}
.w0_c00145{width:676.890000px;}
.w1_c00145{width:677.250000px;}
.x0_c00145{left:0.000000px;}
.xd_c00145{left:185.220000px;}
.xc_c00145{left:206.550000px;}
.xb_c00145{left:212.760000px;}
.xa_c00145{left:226.530000px;}
.x7_c00145{left:234.360000px;}
.x9_c00145{left:239.220000px;}
.x6_c00145{left:244.890000px;}
.x8_c00145{left:251.100000px;}
.x5_c00145{left:612.630000px;}
.x4_c00145{left:616.950000px;}
.x2_c00145{left:668.250000px;}
.x1_c00145{left:671.490000px;}
.x3_c00145{left:672.513315px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs3_c00145{font-size:16.800000pt;}
.fs4_c00145{font-size:19.600000pt;}
.fs1_c00145{font-size:23.333625pt;}
.fs2_c00145{font-size:24.266667pt;}
.fs0_c00145{font-size:25.200000pt;}
.fs8_c00145{font-size:31.733333pt;}
.fs7_c00145{font-size:32.666667pt;}
.fs6_c00145{font-size:62.533333pt;}
.fs5_c00145{font-size:66.266667pt;}
.y0_c00145{bottom:0.000000pt;}
.ye_c00145{bottom:56.160000pt;}
.y7_c00145{bottom:261.118667pt;}
.y6_c00145{bottom:312.718667pt;}
.y5_c00145{bottom:355.213333pt;}
.y4_c00145{bottom:367.933333pt;}
.y3_c00145{bottom:378.013333pt;}
.y2_c00145{bottom:395.041333pt;}
.y1_c00145{bottom:405.600000pt;}
.yb_c00145{bottom:465.625333pt;}
.ya_c00145{bottom:481.210667pt;}
.y8_c00145{bottom:507.600000pt;}
.y9_c00145{bottom:510.013333pt;}
.y12_c00145{bottom:761.040000pt;}
.y13_c00145{bottom:761.160000pt;}
.y10_c00145{bottom:764.640000pt;}
.yf_c00145{bottom:765.120000pt;}
.y11_c00145{bottom:765.360000pt;}
.yd_c00145{bottom:765.601333pt;}
.yc_c00145{bottom:771.840000pt;}
.h5_c00145{height:16.800000pt;}
.h6_c00145{height:19.600000pt;}
.h3_c00145{height:23.333625pt;}
.h4_c00145{height:24.266667pt;}
.h2_c00145{height:25.200000pt;}
.ha_c00145{height:31.733333pt;}
.h9_c00145{height:32.666667pt;}
.h8_c00145{height:62.533333pt;}
.h7_c00145{height:66.266667pt;}
.h0_c00145{height:896.400000pt;}
.h1_c00145{height:896.666667pt;}
.w0_c00145{width:601.680000pt;}
.w1_c00145{width:602.000000pt;}
.x0_c00145{left:0.000000pt;}
.xd_c00145{left:164.640000pt;}
.xc_c00145{left:183.600000pt;}
.xb_c00145{left:189.120000pt;}
.xa_c00145{left:201.360000pt;}
.x7_c00145{left:208.320000pt;}
.x9_c00145{left:212.640000pt;}
.x6_c00145{left:217.680000pt;}
.x8_c00145{left:223.200000pt;}
.x5_c00145{left:544.560000pt;}
.x4_c00145{left:548.400000pt;}
.x2_c00145{left:594.000000pt;}
.x1_c00145{left:596.880000pt;}
.x3_c00145{left:597.789613pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m5d_c00146{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);}
.mcf_c00146{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);}
.me2_c00146{transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.133660,-0.001604,0.003000,0.249982,0,0);-ms-transform:matrix(0.133660,-0.001604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.133660,-0.001604,0.003000,0.249982,0,0);}
.m66_c00146{transform:matrix(0.146926,-0.002351,0.003999,0.249968,0,0);-ms-transform:matrix(0.146926,-0.002351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146926,-0.002351,0.003999,0.249968,0,0);}
.m14_c00146{transform:matrix(0.147808,-0.002217,0.003750,0.249972,0,0);-ms-transform:matrix(0.147808,-0.002217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147808,-0.002217,0.003750,0.249972,0,0);}
.me_c00146{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);}
.mda_c00146{transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.152507,-0.001525,0.002500,0.249988,0,0);-ms-transform:matrix(0.152507,-0.001525,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152507,-0.001525,0.002500,0.249988,0,0);}
.mab_c00146{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);}
.m5f_c00146{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);}
.m2e_c00146{transform:matrix(0.155173,-0.002328,0.003750,0.249972,0,0);-ms-transform:matrix(0.155173,-0.002328,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155173,-0.002328,0.003750,0.249972,0,0);}
.m6c_c00146{transform:matrix(0.158030,-0.002528,0.003999,0.249968,0,0);-ms-transform:matrix(0.158030,-0.002528,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158030,-0.002528,0.003999,0.249968,0,0);}
.m8f_c00146{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);}
.m28_c00146{transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);-ms-transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);}
.m61_c00146{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);}
.m46_c00146{transform:matrix(0.164078,-0.001969,0.003000,0.249982,0,0);-ms-transform:matrix(0.164078,-0.001969,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164078,-0.001969,0.003000,0.249982,0,0);}
.m2b_c00146{transform:matrix(0.166089,-0.002325,0.003500,0.249976,0,0);-ms-transform:matrix(0.166089,-0.002325,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166089,-0.002325,0.003500,0.249976,0,0);}
.m9b_c00146{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);}
.m7d_c00146{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);}
.m6a_c00146{transform:matrix(0.170268,-0.002724,0.003999,0.249968,0,0);-ms-transform:matrix(0.170268,-0.002724,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170268,-0.002724,0.003999,0.249968,0,0);}
.m20_c00146{transform:matrix(0.170451,-0.002557,0.003750,0.249972,0,0);-ms-transform:matrix(0.170451,-0.002557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170451,-0.002557,0.003750,0.249972,0,0);}
.m51_c00146{transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);}
.m21_c00146{transform:matrix(0.170626,-0.002559,0.003750,0.249972,0,0);-ms-transform:matrix(0.170626,-0.002559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170626,-0.002559,0.003750,0.249972,0,0);}
.m2f_c00146{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);}
.m57_c00146{transform:matrix(0.172751,-0.001728,0.002500,0.249988,0,0);-ms-transform:matrix(0.172751,-0.001728,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172751,-0.001728,0.002500,0.249988,0,0);}
.m4d_c00146{transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);-ms-transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);}
.me7_c00146{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);}
.m1_c00146{transform:matrix(0.174442,-0.003140,0.004499,0.249960,0,0);-ms-transform:matrix(0.174442,-0.003140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174442,-0.003140,0.004499,0.249960,0,0);}
.m13_c00146{transform:matrix(0.174970,-0.002625,0.003750,0.249972,0,0);-ms-transform:matrix(0.174970,-0.002625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174970,-0.002625,0.003750,0.249972,0,0);}
.m3a_c00146{transform:matrix(0.175190,-0.002628,0.003750,0.249972,0,0);-ms-transform:matrix(0.175190,-0.002628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175190,-0.002628,0.003750,0.249972,0,0);}
.m9_c00146{transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);-ms-transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);}
.m8c_c00146{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);}
.md7_c00146{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);}
.m86_c00146{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);}
.m24_c00146{transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);-ms-transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);}
.mc3_c00146{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);}
.m9d_c00146{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);}
.m60_c00146{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);}
.mcd_c00146{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);}
.m78_c00146{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);}
.m4b_c00146{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);}
.m55_c00146{transform:matrix(0.183521,-0.001835,0.002500,0.249988,0,0);-ms-transform:matrix(0.183521,-0.001835,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183521,-0.001835,0.002500,0.249988,0,0);}
.m37_c00146{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);}
.md6_c00146{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);}
.md2_c00146{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);}
.m26_c00146{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);}
.m1f_c00146{transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);}
.m69_c00146{transform:matrix(0.186151,-0.002978,0.003999,0.249968,0,0);-ms-transform:matrix(0.186151,-0.002978,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186151,-0.002978,0.003999,0.249968,0,0);}
.m44_c00146{transform:matrix(0.186396,-0.001864,0.002500,0.249988,0,0);-ms-transform:matrix(0.186396,-0.001864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186396,-0.001864,0.002500,0.249988,0,0);}
.mc1_c00146{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);}
.m62_c00146{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);}
.m75_c00146{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);}
.m9e_c00146{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);}
.m89_c00146{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);}
.m67_c00146{transform:matrix(0.189506,-0.003032,0.003999,0.249968,0,0);-ms-transform:matrix(0.189506,-0.003032,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189506,-0.003032,0.003999,0.249968,0,0);}
.m32_c00146{transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);-ms-transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);}
.m6e_c00146{transform:matrix(0.190726,-0.003052,0.003999,0.249968,0,0);-ms-transform:matrix(0.190726,-0.003052,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190726,-0.003052,0.003999,0.249968,0,0);}
.mca_c00146{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);}
.mce_c00146{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);}
.m79_c00146{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);}
.mae_c00146{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);}
.m3_c00146{transform:matrix(0.192419,-0.003464,0.004499,0.249960,0,0);-ms-transform:matrix(0.192419,-0.003464,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192419,-0.003464,0.004499,0.249960,0,0);}
.m7f_c00146{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);}
.m30_c00146{transform:matrix(0.193723,-0.002906,0.003750,0.249972,0,0);-ms-transform:matrix(0.193723,-0.002906,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193723,-0.002906,0.003750,0.249972,0,0);}
.mbb_c00146{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);}
.m50_c00146{transform:matrix(0.194835,-0.001948,0.002500,0.249988,0,0);-ms-transform:matrix(0.194835,-0.001948,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194835,-0.001948,0.002500,0.249988,0,0);}
.m6d_c00146{transform:matrix(0.195690,-0.003131,0.003999,0.249968,0,0);-ms-transform:matrix(0.195690,-0.003131,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195690,-0.003131,0.003999,0.249968,0,0);}
.m16_c00146{transform:matrix(0.195808,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195808,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195808,-0.002937,0.003750,0.249972,0,0);}
.mb3_c00146{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);}
.m5b_c00146{transform:matrix(0.196170,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196170,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196170,-0.001962,0.002500,0.249988,0,0);}
.me6_c00146{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);}
.m71_c00146{transform:matrix(0.198150,-0.003170,0.003999,0.249968,0,0);-ms-transform:matrix(0.198150,-0.003170,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198150,-0.003170,0.003999,0.249968,0,0);}
.m42_c00146{transform:matrix(0.198430,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198430,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198430,-0.001984,0.002500,0.249988,0,0);}
.m80_c00146{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);}
.m23_c00146{transform:matrix(0.199040,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199040,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199040,-0.002787,0.003500,0.249976,0,0);}
.m94_c00146{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);}
.m90_c00146{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);}
.m88_c00146{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);}
.m85_c00146{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_c00146{transform:matrix(0.201047,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201047,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201047,-0.003016,0.003750,0.249972,0,0);}
.m96_c00146{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);}
.m3f_c00146{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);}
.m3b_c00146{transform:matrix(0.201797,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201797,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201797,-0.003027,0.003750,0.249972,0,0);}
.m38_c00146{transform:matrix(0.202157,-0.003032,0.003750,0.249972,0,0);-ms-transform:matrix(0.202157,-0.003032,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202157,-0.003032,0.003750,0.249972,0,0);}
.m6b_c00146{transform:matrix(0.202984,-0.003248,0.003999,0.249968,0,0);-ms-transform:matrix(0.202984,-0.003248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202984,-0.003248,0.003999,0.249968,0,0);}
.m76_c00146{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);}
.m2c_c00146{transform:matrix(0.204160,-0.002858,0.003500,0.249976,0,0);-ms-transform:matrix(0.204160,-0.002858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204160,-0.002858,0.003500,0.249976,0,0);}
.mcb_c00146{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);}
.mdd_c00146{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);}
.me0_c00146{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);}
.md4_c00146{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);}
.m6f_c00146{transform:matrix(0.205804,-0.003293,0.003999,0.249968,0,0);-ms-transform:matrix(0.205804,-0.003293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205804,-0.003293,0.003999,0.249968,0,0);}
.m7a_c00146{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);}
.m47_c00146{transform:matrix(0.205970,-0.002472,0.003000,0.249982,0,0);-ms-transform:matrix(0.205970,-0.002472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205970,-0.002472,0.003000,0.249982,0,0);}
.m53_c00146{transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);}
.m81_c00146{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_c00146{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);}
.m36_c00146{transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);}
.m7b_c00146{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);}
.m17_c00146{transform:matrix(0.207142,-0.003107,0.003750,0.249972,0,0);-ms-transform:matrix(0.207142,-0.003107,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207142,-0.003107,0.003750,0.249972,0,0);}
.mb4_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);}
.m93_c00146{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);}
.m22_c00146{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);}
.md9_c00146{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);}
.m49_c00146{transform:matrix(0.208870,-0.002506,0.003000,0.249982,0,0);-ms-transform:matrix(0.208870,-0.002506,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208870,-0.002506,0.003000,0.249982,0,0);}
.ma3_c00146{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);}
.m9c_c00146{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);}
.m7c_c00146{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);}
.m2d_c00146{transform:matrix(0.209991,-0.003150,0.003750,0.249972,0,0);-ms-transform:matrix(0.209991,-0.003150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209991,-0.003150,0.003750,0.249972,0,0);}
.m7e_c00146{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);}
.m8_c00146{transform:matrix(0.211439,-0.003594,0.004249,0.249964,0,0);-ms-transform:matrix(0.211439,-0.003594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211439,-0.003594,0.004249,0.249964,0,0);}
.mbd_c00146{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);}
.m99_c00146{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);}
.m84_c00146{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);}
.mdc_c00146{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);}
.m27_c00146{transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);-ms-transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);}
.me9_c00146{transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.213586,-0.003204,0.003750,0.249972,0,0);-ms-transform:matrix(0.213586,-0.003204,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213586,-0.003204,0.003750,0.249972,0,0);}
.mbc_c00146{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);}
.mea_c00146{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);}
.maf_c00146{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);}
.m12_c00146{transform:matrix(0.215151,-0.003227,0.003750,0.249972,0,0);-ms-transform:matrix(0.215151,-0.003227,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215151,-0.003227,0.003750,0.249972,0,0);}
.mb2_c00146{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);}
.ma5_c00146{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);}
.md5_c00146{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);}
.m1c_c00146{transform:matrix(0.217421,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217421,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217421,-0.003261,0.003750,0.249972,0,0);}
.m56_c00146{transform:matrix(0.218214,-0.002182,0.002500,0.249988,0,0);-ms-transform:matrix(0.218214,-0.002182,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218214,-0.002182,0.002500,0.249988,0,0);}
.mbf_c00146{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);}
.mbe_c00146{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{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);}
.m64_c00146{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);}
.m29_c00146{transform:matrix(0.220213,-0.003083,0.003500,0.249976,0,0);-ms-transform:matrix(0.220213,-0.003083,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220213,-0.003083,0.003500,0.249976,0,0);}
.me8_c00146{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);}
.m25_c00146{transform:matrix(0.220573,-0.003088,0.003500,0.249976,0,0);-ms-transform:matrix(0.220573,-0.003088,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220573,-0.003088,0.003500,0.249976,0,0);}
.mad_c00146{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);}
.mde_c00146{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);}
.mf0_c00146{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);}
.m83_c00146{transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.222074,-0.002221,0.002500,0.249988,0,0);-ms-transform:matrix(0.222074,-0.002221,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222074,-0.002221,0.002500,0.249988,0,0);}
.m19_c00146{transform:matrix(0.222675,-0.003340,0.003750,0.249972,0,0);-ms-transform:matrix(0.222675,-0.003340,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222675,-0.003340,0.003750,0.249972,0,0);}
.m4e_c00146{transform:matrix(0.222924,-0.002675,0.003000,0.249982,0,0);-ms-transform:matrix(0.222924,-0.002675,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222924,-0.002675,0.003000,0.249982,0,0);}
.mc2_c00146{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);}
.mc0_c00146{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);}
.m73_c00146{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);}
.mc6_c00146{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_c00146{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);}
.mcc_c00146{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);}
.m77_c00146{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);}
.mf2_c00146{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);}
.md0_c00146{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);}
.mb_c00146{transform:matrix(0.226452,-0.003850,0.004249,0.249964,0,0);-ms-transform:matrix(0.226452,-0.003850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226452,-0.003850,0.004249,0.249964,0,0);}
.md1_c00146{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.mf1_c00146{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);}
.mb5_c00146{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);}
.md3_c00146{transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.233375,-0.003734,0.003999,0.249968,0,0);-ms-transform:matrix(0.233375,-0.003734,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233375,-0.003734,0.003999,0.249968,0,0);}
.mb9_c00146{transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{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);}
.mb7_c00146{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);}
.m1b_c00146{transform:matrix(0.235524,-0.003533,0.003750,0.249972,0,0);-ms-transform:matrix(0.235524,-0.003533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235524,-0.003533,0.003750,0.249972,0,0);}
.mb6_c00146{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);}
.m31_c00146{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);}
.m4a_c00146{transform:matrix(0.237553,-0.002851,0.003000,0.249982,0,0);-ms-transform:matrix(0.237553,-0.002851,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237553,-0.002851,0.003000,0.249982,0,0);}
.mc8_c00146{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);}
.m4c_c00146{transform:matrix(0.237848,-0.002854,0.003000,0.249982,0,0);-ms-transform:matrix(0.237848,-0.002854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237848,-0.002854,0.003000,0.249982,0,0);}
.mc4_c00146{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);}
.mba_c00146{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);}
.m43_c00146{transform:matrix(0.239263,-0.002393,0.002500,0.249988,0,0);-ms-transform:matrix(0.239263,-0.002393,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239263,-0.002393,0.002500,0.249988,0,0);}
.m5e_c00146{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);}
.mb8_c00146{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);}
.m39_c00146{transform:matrix(0.241253,-0.003619,0.003750,0.249972,0,0);-ms-transform:matrix(0.241253,-0.003619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241253,-0.003619,0.003750,0.249972,0,0);}
.m87_c00146{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);}
.m0_c00146{transform:matrix(0.241501,-0.004347,0.004499,0.249960,0,0);-ms-transform:matrix(0.241501,-0.004347,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241501,-0.004347,0.004499,0.249960,0,0);}
.m72_c00146{transform:matrix(0.241739,-0.003868,0.003999,0.249968,0,0);-ms-transform:matrix(0.241739,-0.003868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241739,-0.003868,0.003999,0.249968,0,0);}
.m1d_c00146{transform:matrix(0.243493,-0.003652,0.003750,0.249972,0,0);-ms-transform:matrix(0.243493,-0.003652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243493,-0.003652,0.003750,0.249972,0,0);}
.m2_c00146{transform:matrix(0.244115,-0.004394,0.004499,0.249960,0,0);-ms-transform:matrix(0.244115,-0.004394,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244115,-0.004394,0.004499,0.249960,0,0);}
.me5_c00146{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.me1_c00146{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.248737,-0.002985,0.003000,0.249982,0,0);-ms-transform:matrix(0.248737,-0.002985,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248737,-0.002985,0.003000,0.249982,0,0);}
.m41_c00146{transform:matrix(0.249433,-0.002494,0.002500,0.249988,0,0);-ms-transform:matrix(0.249433,-0.002494,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249433,-0.002494,0.002500,0.249988,0,0);}
.m58_c00146{transform:matrix(0.256522,-0.002565,0.002500,0.249988,0,0);-ms-transform:matrix(0.256522,-0.002565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256522,-0.002565,0.002500,0.249988,0,0);}
.m9a_c00146{transform:matrix(0.257635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257635,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.258537,-0.002585,0.002500,0.249988,0,0);-ms-transform:matrix(0.258537,-0.002585,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258537,-0.002585,0.002500,0.249988,0,0);}
.mdf_c00146{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.mc5_c00146{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.263602,-0.004481,0.004249,0.249964,0,0);-ms-transform:matrix(0.263602,-0.004481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263602,-0.004481,0.004249,0.249964,0,0);}
.m54_c00146{transform:matrix(0.265307,-0.002653,0.002500,0.249988,0,0);-ms-transform:matrix(0.265307,-0.002653,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265307,-0.002653,0.002500,0.249988,0,0);}
.mec_c00146{transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265345,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.266302,-0.002663,0.002500,0.249988,0,0);-ms-transform:matrix(0.266302,-0.002663,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266302,-0.002663,0.002500,0.249988,0,0);}
.m59_c00146{transform:matrix(0.267417,-0.002674,0.002500,0.249988,0,0);-ms-transform:matrix(0.267417,-0.002674,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267417,-0.002674,0.002500,0.249988,0,0);}
.m2a_c00146{transform:matrix(0.268324,-0.003757,0.003500,0.249976,0,0);-ms-transform:matrix(0.268324,-0.003757,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268324,-0.003757,0.003500,0.249976,0,0);}
.mb0_c00146{transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.273100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273100,0.000000,0.000000,0.250000,0,0);}
.md8_c00146{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);}
.md_c00146{transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278630,0.000000,0.000000,0.250000,0,0);}
.me3_c00146{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);}
.mc7_c00146{transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.285243,-0.004279,0.003750,0.249972,0,0);-ms-transform:matrix(0.285243,-0.004279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.285243,-0.004279,0.003750,0.249972,0,0);}
.m34_c00146{transform:matrix(0.288433,-0.004326,0.003750,0.249972,0,0);-ms-transform:matrix(0.288433,-0.004326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288433,-0.004326,0.003750,0.249972,0,0);}
.mee_c00146{transform:matrix(0.289330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289330,0.000000,0.000000,0.250000,0,0);}
.med_c00146{transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290660,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.296907,-0.004454,0.003750,0.249972,0,0);-ms-transform:matrix(0.296907,-0.004454,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296907,-0.004454,0.003750,0.249972,0,0);}
.m68_c00146{transform:matrix(0.297057,-0.004753,0.003999,0.249968,0,0);-ms-transform:matrix(0.297057,-0.004753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297057,-0.004753,0.003999,0.249968,0,0);}
.m40_c00146{transform:matrix(0.301925,-0.003019,0.002500,0.249988,0,0);-ms-transform:matrix(0.301925,-0.003019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.301925,-0.003019,0.002500,0.249988,0,0);}
.mc9_c00146{transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);}
.m97_c00146{transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{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);}
.mac_c00146{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);}
.m3e_c00146{transform:matrix(0.319684,-0.003197,0.002500,0.249988,0,0);-ms-transform:matrix(0.319684,-0.003197,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319684,-0.003197,0.002500,0.249988,0,0);}
.m98_c00146{transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322140,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.344391,-0.005166,0.003750,0.249972,0,0);-ms-transform:matrix(0.344391,-0.005166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344391,-0.005166,0.003750,0.249972,0,0);}
.m5c_c00146{transform:matrix(0.344523,-0.003445,0.002500,0.249988,0,0);-ms-transform:matrix(0.344523,-0.003445,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344523,-0.003445,0.002500,0.249988,0,0);}
.me4_c00146{transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{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);}
.ma4_c00146{transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);}
.meb_c00146{transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360630,0.000000,0.000000,0.250000,0,0);}
.ma8_c00146{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);}
.ma6_c00146{transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364530,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.365912,-0.006221,0.004249,0.249964,0,0);-ms-transform:matrix(0.365912,-0.006221,0.004249,0.249964,0,0);-webkit-transform:matrix(0.365912,-0.006221,0.004249,0.249964,0,0);}
.mb1_c00146{transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);}
.mdb_c00146{transform:matrix(0.391225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391225,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.450280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450280,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.472758,-0.008510,0.004499,0.249960,0,0);-ms-transform:matrix(0.472758,-0.008510,0.004499,0.249960,0,0);-webkit-transform:matrix(0.472758,-0.008510,0.004499,0.249960,0,0);}
.m65_c00146{transform:matrix(0.479444,-0.007671,0.003999,0.249968,0,0);-ms-transform:matrix(0.479444,-0.007671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.479444,-0.007671,0.003999,0.249968,0,0);}
.ma1_c00146{transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.515165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515165,0.000000,0.000000,0.250000,0,0);}
.mf3_c00146{transform:matrix(0.533580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533580,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{transform:matrix(0.538085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538085,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.541775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541775,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.548983,-0.008235,0.003750,0.249972,0,0);-ms-transform:matrix(0.548983,-0.008235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.548983,-0.008235,0.003750,0.249972,0,0);}
.mef_c00146{transform:matrix(0.560440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560440,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.566860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566860,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{transform:matrix(0.626915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626915,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.639676,-0.011514,0.004499,0.249960,0,0);-ms-transform:matrix(0.639676,-0.011514,0.004499,0.249960,0,0);-webkit-transform:matrix(0.639676,-0.011514,0.004499,0.249960,0,0);}
.m11_c00146{transform:matrix(0.677015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677015,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.766825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766825,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;}
.fs4_c00146{font-size:22.050000px;}
.fs16_c00146{font-size:33.600000px;}
.fs14_c00146{font-size:38.850000px;}
.fs1a_c00146{font-size:45.150000px;}
.fs1b_c00146{font-size:47.250000px;}
.fs19_c00146{font-size:48.300000px;}
.fs10_c00146{font-size:49.350000px;}
.fs12_c00146{font-size:50.400000px;}
.fs1c_c00146{font-size:51.450000px;}
.fse_c00146{font-size:51.456585px;}
.fs11_c00146{font-size:52.500000px;}
.fsf_c00146{font-size:52.506720px;}
.fs1d_c00146{font-size:55.650000px;}
.fs3_c00146{font-size:58.808496px;}
.fs13_c00146{font-size:63.000000px;}
.fsa_c00146{font-size:65.103255px;}
.fs8_c00146{font-size:67.206585px;}
.fs2_c00146{font-size:67.210886px;}
.fs1_c00146{font-size:68.250000px;}
.fsc_c00146{font-size:68.253412px;}
.fs6_c00146{font-size:68.257678px;}
.fs5_c00146{font-size:70.350000px;}
.fsb_c00146{font-size:70.355065px;}
.fs9_c00146{font-size:70.357914px;}
.fsd_c00146{font-size:71.400000px;}
.fs7_c00146{font-size:71.408032px;}
.fs15_c00146{font-size:72.450000px;}
.fs18_c00146{font-size:99.750000px;}
.fs0_c00146{font-size:139.672621px;}
.fs17_c00146{font-size:290.850000px;}
.y0_c00146{bottom:0.000000px;}
.y75_c00146{bottom:162.270000px;}
.y83_c00146{bottom:164.295000px;}
.y70_c00146{bottom:180.769500px;}
.y74_c00146{bottom:181.170000px;}
.y82_c00146{bottom:182.577000px;}
.y6f_c00146{bottom:198.672000px;}
.y80_c00146{bottom:199.882500px;}
.y71_c00146{bottom:215.325000px;}
.y7f_c00146{bottom:218.352000px;}
.y6e_c00146{bottom:233.946000px;}
.y7e_c00146{bottom:236.023500px;}
.y6d_c00146{bottom:251.694000px;}
.y7d_c00146{bottom:254.127000px;}
.y6c_c00146{bottom:269.284500px;}
.y7c_c00146{bottom:272.146500px;}
.y6b_c00146{bottom:287.397000px;}
.y7b_c00146{bottom:289.056000px;}
.y81_c00146{bottom:289.732500px;}
.y64_c00146{bottom:303.480036px;}
.y65_c00146{bottom:303.898068px;}
.y66_c00146{bottom:304.455996px;}
.y67_c00146{bottom:305.162076px;}
.y68_c00146{bottom:305.422116px;}
.y69_c00146{bottom:306.246720px;}
.y6a_c00146{bottom:306.504228px;}
.y7a_c00146{bottom:307.254000px;}
.y5c_c00146{bottom:321.033000px;}
.y5d_c00146{bottom:321.633336px;}
.y5e_c00146{bottom:322.164696px;}
.y5f_c00146{bottom:322.907976px;}
.y60_c00146{bottom:323.145624px;}
.y61_c00146{bottom:323.819448px;}
.y62_c00146{bottom:324.147024px;}
.y63_c00146{bottom:324.565728px;}
.y73_c00146{bottom:324.810000px;}
.y79_c00146{bottom:325.209000px;}
.y5b_c00146{bottom:347.220000px;}
.y76_c00146{bottom:348.699000px;}
.y5a_c00146{bottom:373.548000px;}
.y72_c00146{bottom:375.483000px;}
.y4d_c00146{bottom:394.741500px;}
.y4e_c00146{bottom:394.992675px;}
.y4f_c00146{bottom:395.354370px;}
.y50_c00146{bottom:395.635290px;}
.y51_c00146{bottom:396.016020px;}
.y52_c00146{bottom:396.434550px;}
.y53_c00146{bottom:396.736770px;}
.y54_c00146{bottom:397.131435px;}
.y55_c00146{bottom:397.563390px;}
.y56_c00146{bottom:397.724700px;}
.y57_c00146{bottom:398.014530px;}
.y58_c00146{bottom:398.408280px;}
.y59_c00146{bottom:398.772660px;}
.y43_c00146{bottom:417.421500px;}
.y44_c00146{bottom:417.865938px;}
.y45_c00146{bottom:418.397100px;}
.y46_c00146{bottom:418.575372px;}
.y47_c00146{bottom:418.914762px;}
.y48_c00146{bottom:419.232912px;}
.y49_c00146{bottom:419.489250px;}
.y4a_c00146{bottom:420.124164px;}
.y4b_c00146{bottom:421.043910px;}
.y4c_c00146{bottom:421.065456px;}
.y3a_c00146{bottom:440.101500px;}
.y3b_c00146{bottom:440.396130px;}
.y3c_c00146{bottom:440.669010px;}
.y3d_c00146{bottom:441.311445px;}
.y3e_c00146{bottom:441.459480px;}
.y3f_c00146{bottom:441.915945px;}
.y40_c00146{bottom:442.280670px;}
.y41_c00146{bottom:442.844970px;}
.y42_c00146{bottom:443.188575px;}
.y32_c00146{bottom:461.973000px;}
.y33_c00146{bottom:462.402502px;}
.y34_c00146{bottom:462.985950px;}
.y35_c00146{bottom:463.751917px;}
.y36_c00146{bottom:464.691225px;}
.y37_c00146{bottom:465.428122px;}
.y38_c00146{bottom:466.076347px;}
.y39_c00146{bottom:466.724527px;}
.y2a_c00146{bottom:484.923000px;}
.y2b_c00146{bottom:485.348565px;}
.y2c_c00146{bottom:485.914598px;}
.y2d_c00146{bottom:486.356182px;}
.y2e_c00146{bottom:486.847447px;}
.y2f_c00146{bottom:487.856280px;}
.y30_c00146{bottom:488.637660px;}
.y31_c00146{bottom:490.030590px;}
.y1f_c00146{bottom:507.603000px;}
.y20_c00146{bottom:508.000173px;}
.y21_c00146{bottom:508.597623px;}
.y22_c00146{bottom:508.983141px;}
.y23_c00146{bottom:509.679165px;}
.y24_c00146{bottom:510.294507px;}
.y25_c00146{bottom:510.998049px;}
.y26_c00146{bottom:511.353600px;}
.y27_c00146{bottom:512.264286px;}
.y28_c00146{bottom:512.691594px;}
.y29_c00146{bottom:513.096012px;}
.y16_c00146{bottom:529.740893px;}
.y17_c00146{bottom:530.389365px;}
.y18_c00146{bottom:531.515310px;}
.y19_c00146{bottom:531.819758px;}
.y1a_c00146{bottom:532.325535px;}
.y1b_c00146{bottom:533.148270px;}
.y1c_c00146{bottom:533.418990px;}
.y1d_c00146{bottom:534.119798px;}
.y1e_c00146{bottom:534.641955px;}
.yf_c00146{bottom:552.963000px;}
.y10_c00146{bottom:553.764563px;}
.y11_c00146{bottom:554.437830px;}
.y12_c00146{bottom:555.159675px;}
.y13_c00146{bottom:555.499043px;}
.y14_c00146{bottom:556.320000px;}
.y15_c00146{bottom:556.718070px;}
.y8_c00146{bottom:575.914500px;}
.y9_c00146{bottom:577.037571px;}
.ya_c00146{bottom:577.707609px;}
.yb_c00146{bottom:578.231328px;}
.yc_c00146{bottom:579.136119px;}
.ye_c00146{bottom:580.627500px;}
.yd_c00146{bottom:589.681500px;}
.y6_c00146{bottom:677.040000px;}
.y7_c00146{bottom:677.097000px;}
.y1_c00146{bottom:713.886000px;}
.y2_c00146{bottom:714.741927px;}
.y3_c00146{bottom:715.843095px;}
.y4_c00146{bottom:716.420733px;}
.y5_c00146{bottom:716.600310px;}
.y78_c00146{bottom:945.540000px;}
.y77_c00146{bottom:946.890000px;}
.h6_c00146{height:22.050000px;}
.h18_c00146{height:33.600000px;}
.h16_c00146{height:38.850000px;}
.h1c_c00146{height:45.150000px;}
.h1d_c00146{height:47.250000px;}
.h1b_c00146{height:48.300000px;}
.h12_c00146{height:49.350000px;}
.h14_c00146{height:50.400000px;}
.h1e_c00146{height:51.450000px;}
.h10_c00146{height:51.456585px;}
.h13_c00146{height:52.500000px;}
.h11_c00146{height:52.506720px;}
.h1f_c00146{height:55.650000px;}
.h5_c00146{height:58.808496px;}
.h15_c00146{height:63.000000px;}
.hc_c00146{height:65.103255px;}
.ha_c00146{height:67.206585px;}
.h4_c00146{height:67.210886px;}
.h3_c00146{height:68.250000px;}
.he_c00146{height:68.253412px;}
.h8_c00146{height:68.257678px;}
.h7_c00146{height:70.350000px;}
.hd_c00146{height:70.355065px;}
.hb_c00146{height:70.357914px;}
.hf_c00146{height:71.400000px;}
.h9_c00146{height:71.408032px;}
.h17_c00146{height:72.450000px;}
.h1a_c00146{height:99.750000px;}
.h2_c00146{height:139.672621px;}
.h19_c00146{height:290.850000px;}
.h1_c00146{height:1005.000000px;}
.h0_c00146{height:1005.150000px;}
.w0_c00146{width:705.450000px;}
.w1_c00146{width:705.750000px;}
.x0_c00146{left:0.000000px;}
.x61_c00146{left:96.120000px;}
.x55_c00146{left:101.919156px;}
.x58_c00146{left:103.140000px;}
.x67_c00146{left:105.300000px;}
.x64_c00146{left:109.620000px;}
.x50_c00146{left:114.108000px;}
.x4b_c00146{left:116.100000px;}
.x1_c00146{left:122.650500px;}
.x69_c00146{left:125.550000px;}
.x68_c00146{left:129.870000px;}
.x13_c00146{left:131.131500px;}
.x1f_c00146{left:133.009500px;}
.x2d_c00146{left:134.110500px;}
.x38_c00146{left:136.233000px;}
.x65_c00146{left:140.130000px;}
.x59_c00146{left:144.450000px;}
.x51_c00146{left:151.629000px;}
.x66_c00146{left:157.680000px;}
.x5a_c00146{left:159.570000px;}
.x20_c00146{left:161.379000px;}
.x2e_c00146{left:162.744000px;}
.x8_c00146{left:164.166000px;}
.x6_c00146{left:167.670000px;}
.x2_c00146{left:170.202000px;}
.x39_c00146{left:173.269500px;}
.x18_c00146{left:174.370755px;}
.x56_c00146{left:176.982756px;}
.x4c_c00146{left:181.170000px;}
.x14_c00146{left:184.569000px;}
.x34_c00146{left:190.795500px;}
.x42_c00146{left:197.766000px;}
.x28_c00146{left:199.672500px;}
.x2f_c00146{left:201.640500px;}
.x21_c00146{left:204.054000px;}
.x4d_c00146{left:208.440000px;}
.x3a_c00146{left:217.533000px;}
.x5d_c00146{left:219.510000px;}
.x5b_c00146{left:222.210000px;}
.x43_c00146{left:225.858000px;}
.x62_c00146{left:227.340000px;}
.x29_c00146{left:229.111500px;}
.x9_c00146{left:230.229000px;}
.x3_c00146{left:231.378000px;}
.x3b_c00146{left:232.389000px;}
.x52_c00146{left:246.147000px;}
.x5c_c00146{left:247.590000px;}
.x19_c00146{left:249.433755px;}
.x57_c00146{left:251.243808px;}
.x30_c00146{left:252.705000px;}
.x35_c00146{left:255.039000px;}
.x3c_c00146{left:260.671500px;}
.x2a_c00146{left:261.862500px;}
.x4_c00146{left:263.469000px;}
.x5e_c00146{left:265.410000px;}
.xa_c00146{left:269.643000px;}
.x5_c00146{left:273.445500px;}
.x15_c00146{left:277.576500px;}
.x63_c00146{left:278.640000px;}
.x22_c00146{left:281.307000px;}
.x3d_c00146{left:287.184000px;}
.x53_c00146{left:288.261000px;}
.x4e_c00146{left:290.520000px;}
.x4f_c00146{left:295.110000px;}
.xb_c00146{left:300.450000px;}
.x7_c00146{left:301.821000px;}
.x1a_c00146{left:303.448755px;}
.x44_c00146{left:305.784000px;}
.x3e_c00146{left:308.545500px;}
.x5f_c00146{left:311.850000px;}
.x31_c00146{left:315.325500px;}
.x60_c00146{left:319.680000px;}
.x6d_c00146{left:322.920000px;}
.x23_c00146{left:325.260000px;}
.x2b_c00146{left:329.118000px;}
.x54_c00146{left:334.903500px;}
.x45_c00146{left:336.006000px;}
.x6a_c00146{left:337.770000px;}
.x76_c00146{left:346.950000px;}
.x87_c00146{left:349.380000px;}
.x80_c00146{left:350.460000px;}
.x36_c00146{left:351.961500px;}
.xc_c00146{left:353.673000px;}
.x16_c00146{left:354.931500px;}
.x8b_c00146{left:356.400000px;}
.x1b_c00146{left:358.297755px;}
.x3f_c00146{left:361.455000px;}
.x32_c00146{left:364.452000px;}
.x88_c00146{left:367.470000px;}
.x81_c00146{left:373.950000px;}
.x1c_c00146{left:376.345755px;}
.x8c_c00146{left:378.270000px;}
.x17_c00146{left:381.469500px;}
.x77_c00146{left:383.670000px;}
.x7c_c00146{left:386.100000px;}
.x82_c00146{left:387.450000px;}
.x6b_c00146{left:388.800000px;}
.x92_c00146{left:393.390000px;}
.xf_c00146{left:395.280000px;}
.x8d_c00146{left:396.900000px;}
.x24_c00146{left:400.909500px;}
.x78_c00146{left:403.110000px;}
.x6e_c00146{left:406.890000px;}
.x10_c00146{left:408.510000px;}
.x93_c00146{left:410.130000px;}
.x89_c00146{left:413.370000px;}
.x6f_c00146{left:415.260000px;}
.x46_c00146{left:418.668000px;}
.x1d_c00146{left:423.066255px;}
.x8a_c00146{left:430.920000px;}
.x47_c00146{left:434.799000px;}
.x7d_c00146{left:436.590000px;}
.x40_c00146{left:438.100500px;}
.x41_c00146{left:439.896000px;}
.x6c_c00146{left:441.180000px;}
.x37_c00146{left:442.752000px;}
.x70_c00146{left:445.230000px;}
.x83_c00146{left:448.470000px;}
.x33_c00146{left:450.879000px;}
.x8e_c00146{left:451.980000px;}
.x11_c00146{left:454.680000px;}
.x1e_c00146{left:457.876755px;}
.x94_c00146{left:460.080000px;}
.x48_c00146{left:463.782000px;}
.x25_c00146{left:465.958500px;}
.x7e_c00146{left:468.180000px;}
.x99_c00146{left:471.420000px;}
.x2c_c00146{left:474.072000px;}
.x97_c00146{left:476.010000px;}
.xd_c00146{left:479.520000px;}
.x8f_c00146{left:480.600000px;}
.x9d_c00146{left:483.300000px;}
.x84_c00146{left:485.190000px;}
.x85_c00146{left:486.540000px;}
.xe_c00146{left:490.590000px;}
.x79_c00146{left:494.370000px;}
.x26_c00146{left:496.480500px;}
.x49_c00146{left:503.157000px;}
.x90_c00146{left:508.140000px;}
.x95_c00146{left:509.220000px;}
.x71_c00146{left:510.570000px;}
.x12_c00146{left:512.730000px;}
.x7a_c00146{left:522.720000px;}
.x27_c00146{left:525.367500px;}
.x72_c00146{left:532.710000px;}
.x86_c00146{left:534.600000px;}
.x98_c00146{left:536.490000px;}
.x73_c00146{left:537.840000px;}
.x4a_c00146{left:539.595000px;}
.x91_c00146{left:547.560000px;}
.x7f_c00146{left:549.180000px;}
.x74_c00146{left:551.880000px;}
.x7b_c00146{left:553.770000px;}
.x9e_c00146{left:555.120000px;}
.x9a_c00146{left:556.740000px;}
.x96_c00146{left:560.250000px;}
.x9b_c00146{left:568.080000px;}
.x75_c00146{left:574.290000px;}
.x9c_c00146{left:591.300000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.fs4_c00146{font-size:19.600000pt;}
.fs16_c00146{font-size:29.866667pt;}
.fs14_c00146{font-size:34.533333pt;}
.fs1a_c00146{font-size:40.133333pt;}
.fs1b_c00146{font-size:42.000000pt;}
.fs19_c00146{font-size:42.933333pt;}
.fs10_c00146{font-size:43.866667pt;}
.fs12_c00146{font-size:44.800000pt;}
.fs1c_c00146{font-size:45.733333pt;}
.fse_c00146{font-size:45.739187pt;}
.fs11_c00146{font-size:46.666667pt;}
.fsf_c00146{font-size:46.672640pt;}
.fs1d_c00146{font-size:49.466667pt;}
.fs3_c00146{font-size:52.274219pt;}
.fs13_c00146{font-size:56.000000pt;}
.fsa_c00146{font-size:57.869560pt;}
.fs8_c00146{font-size:59.739187pt;}
.fs2_c00146{font-size:59.743009pt;}
.fs1_c00146{font-size:60.666667pt;}
.fsc_c00146{font-size:60.669700pt;}
.fs6_c00146{font-size:60.673491pt;}
.fs5_c00146{font-size:62.533333pt;}
.fsb_c00146{font-size:62.537836pt;}
.fs9_c00146{font-size:62.540368pt;}
.fsd_c00146{font-size:63.466667pt;}
.fs7_c00146{font-size:63.473806pt;}
.fs15_c00146{font-size:64.400000pt;}
.fs18_c00146{font-size:88.666667pt;}
.fs0_c00146{font-size:124.153441pt;}
.fs17_c00146{font-size:258.533333pt;}
.y0_c00146{bottom:0.000000pt;}
.y75_c00146{bottom:144.240000pt;}
.y83_c00146{bottom:146.040000pt;}
.y70_c00146{bottom:160.684000pt;}
.y74_c00146{bottom:161.040000pt;}
.y82_c00146{bottom:162.290667pt;}
.y6f_c00146{bottom:176.597333pt;}
.y80_c00146{bottom:177.673333pt;}
.y71_c00146{bottom:191.400000pt;}
.y7f_c00146{bottom:194.090667pt;}
.y6e_c00146{bottom:207.952000pt;}
.y7e_c00146{bottom:209.798667pt;}
.y6d_c00146{bottom:223.728000pt;}
.y7d_c00146{bottom:225.890667pt;}
.y6c_c00146{bottom:239.364000pt;}
.y7c_c00146{bottom:241.908000pt;}
.y6b_c00146{bottom:255.464000pt;}
.y7b_c00146{bottom:256.938667pt;}
.y81_c00146{bottom:257.540000pt;}
.y64_c00146{bottom:269.760032pt;}
.y65_c00146{bottom:270.131616pt;}
.y66_c00146{bottom:270.627552pt;}
.y67_c00146{bottom:271.255179pt;}
.y68_c00146{bottom:271.486325pt;}
.y69_c00146{bottom:272.219307pt;}
.y6a_c00146{bottom:272.448203pt;}
.y7a_c00146{bottom:273.114667pt;}
.y5c_c00146{bottom:285.362667pt;}
.y5d_c00146{bottom:285.896299pt;}
.y5e_c00146{bottom:286.368619pt;}
.y5f_c00146{bottom:287.029312pt;}
.y60_c00146{bottom:287.240555pt;}
.y61_c00146{bottom:287.839509pt;}
.y62_c00146{bottom:288.130688pt;}
.y63_c00146{bottom:288.502869pt;}
.y73_c00146{bottom:288.720000pt;}
.y79_c00146{bottom:289.074667pt;}
.y5b_c00146{bottom:308.640000pt;}
.y76_c00146{bottom:309.954667pt;}
.y5a_c00146{bottom:332.042667pt;}
.y72_c00146{bottom:333.762667pt;}
.y4d_c00146{bottom:350.881333pt;}
.y4e_c00146{bottom:351.104600pt;}
.y4f_c00146{bottom:351.426107pt;}
.y50_c00146{bottom:351.675813pt;}
.y51_c00146{bottom:352.014240pt;}
.y52_c00146{bottom:352.386267pt;}
.y53_c00146{bottom:352.654907pt;}
.y54_c00146{bottom:353.005720pt;}
.y55_c00146{bottom:353.389680pt;}
.y56_c00146{bottom:353.533067pt;}
.y57_c00146{bottom:353.790693pt;}
.y58_c00146{bottom:354.140693pt;}
.y59_c00146{bottom:354.464587pt;}
.y43_c00146{bottom:371.041333pt;}
.y44_c00146{bottom:371.436389pt;}
.y45_c00146{bottom:371.908533pt;}
.y46_c00146{bottom:372.066997pt;}
.y47_c00146{bottom:372.368677pt;}
.y48_c00146{bottom:372.651477pt;}
.y49_c00146{bottom:372.879333pt;}
.y4a_c00146{bottom:373.443701pt;}
.y4b_c00146{bottom:374.261253pt;}
.y4c_c00146{bottom:374.280405pt;}
.y3a_c00146{bottom:391.201333pt;}
.y3b_c00146{bottom:391.463227pt;}
.y3c_c00146{bottom:391.705787pt;}
.y3d_c00146{bottom:392.276840pt;}
.y3e_c00146{bottom:392.408427pt;}
.y3f_c00146{bottom:392.814173pt;}
.y40_c00146{bottom:393.138373pt;}
.y41_c00146{bottom:393.639973pt;}
.y42_c00146{bottom:393.945400pt;}
.y32_c00146{bottom:410.642667pt;}
.y33_c00146{bottom:411.024447pt;}
.y34_c00146{bottom:411.543067pt;}
.y35_c00146{bottom:412.223927pt;}
.y36_c00146{bottom:413.058867pt;}
.y37_c00146{bottom:413.713887pt;}
.y38_c00146{bottom:414.290087pt;}
.y39_c00146{bottom:414.866247pt;}
.y2a_c00146{bottom:431.042667pt;}
.y2b_c00146{bottom:431.420947pt;}
.y2c_c00146{bottom:431.924087pt;}
.y2d_c00146{bottom:432.316607pt;}
.y2e_c00146{bottom:432.753287pt;}
.y2f_c00146{bottom:433.650027pt;}
.y30_c00146{bottom:434.344587pt;}
.y31_c00146{bottom:435.582747pt;}
.y1f_c00146{bottom:451.202667pt;}
.y20_c00146{bottom:451.555709pt;}
.y21_c00146{bottom:452.086776pt;}
.y22_c00146{bottom:452.429459pt;}
.y23_c00146{bottom:453.048147pt;}
.y24_c00146{bottom:453.595117pt;}
.y25_c00146{bottom:454.220488pt;}
.y26_c00146{bottom:454.536533pt;}
.y27_c00146{bottom:455.346032pt;}
.y28_c00146{bottom:455.725861pt;}
.y29_c00146{bottom:456.085344pt;}
.y16_c00146{bottom:470.880793pt;}
.y17_c00146{bottom:471.457213pt;}
.y18_c00146{bottom:472.458053pt;}
.y19_c00146{bottom:472.728673pt;}
.y1a_c00146{bottom:473.178253pt;}
.y1b_c00146{bottom:473.909573pt;}
.y1c_c00146{bottom:474.150213pt;}
.y1d_c00146{bottom:474.773153pt;}
.y1e_c00146{bottom:475.237293pt;}
.yf_c00146{bottom:491.522667pt;}
.y10_c00146{bottom:492.235167pt;}
.y11_c00146{bottom:492.833627pt;}
.y12_c00146{bottom:493.475267pt;}
.y13_c00146{bottom:493.776927pt;}
.y14_c00146{bottom:494.506667pt;}
.y15_c00146{bottom:494.860507pt;}
.y8_c00146{bottom:511.924000pt;}
.y9_c00146{bottom:512.922285pt;}
.ya_c00146{bottom:513.517875pt;}
.yb_c00146{bottom:513.983403pt;}
.yc_c00146{bottom:514.787661pt;}
.ye_c00146{bottom:516.113333pt;}
.yd_c00146{bottom:524.161333pt;}
.y6_c00146{bottom:601.813333pt;}
.y7_c00146{bottom:601.864000pt;}
.y1_c00146{bottom:634.565333pt;}
.y2_c00146{bottom:635.326157pt;}
.y3_c00146{bottom:636.304973pt;}
.y4_c00146{bottom:636.818429pt;}
.y5_c00146{bottom:636.978053pt;}
.y78_c00146{bottom:840.480000pt;}
.y77_c00146{bottom:841.680000pt;}
.h6_c00146{height:19.600000pt;}
.h18_c00146{height:29.866667pt;}
.h16_c00146{height:34.533333pt;}
.h1c_c00146{height:40.133333pt;}
.h1d_c00146{height:42.000000pt;}
.h1b_c00146{height:42.933333pt;}
.h12_c00146{height:43.866667pt;}
.h14_c00146{height:44.800000pt;}
.h1e_c00146{height:45.733333pt;}
.h10_c00146{height:45.739187pt;}
.h13_c00146{height:46.666667pt;}
.h11_c00146{height:46.672640pt;}
.h1f_c00146{height:49.466667pt;}
.h5_c00146{height:52.274219pt;}
.h15_c00146{height:56.000000pt;}
.hc_c00146{height:57.869560pt;}
.ha_c00146{height:59.739187pt;}
.h4_c00146{height:59.743009pt;}
.h3_c00146{height:60.666667pt;}
.he_c00146{height:60.669700pt;}
.h8_c00146{height:60.673491pt;}
.h7_c00146{height:62.533333pt;}
.hd_c00146{height:62.537836pt;}
.hb_c00146{height:62.540368pt;}
.hf_c00146{height:63.466667pt;}
.h9_c00146{height:63.473806pt;}
.h17_c00146{height:64.400000pt;}
.h1a_c00146{height:88.666667pt;}
.h2_c00146{height:124.153441pt;}
.h19_c00146{height:258.533333pt;}
.h1_c00146{height:893.333333pt;}
.h0_c00146{height:893.466667pt;}
.w0_c00146{width:627.066667pt;}
.w1_c00146{width:627.333333pt;}
.x0_c00146{left:0.000000pt;}
.x61_c00146{left:85.440000pt;}
.x55_c00146{left:90.594805pt;}
.x58_c00146{left:91.680000pt;}
.x67_c00146{left:93.600000pt;}
.x64_c00146{left:97.440000pt;}
.x50_c00146{left:101.429333pt;}
.x4b_c00146{left:103.200000pt;}
.x1_c00146{left:109.022667pt;}
.x69_c00146{left:111.600000pt;}
.x68_c00146{left:115.440000pt;}
.x13_c00146{left:116.561333pt;}
.x1f_c00146{left:118.230667pt;}
.x2d_c00146{left:119.209333pt;}
.x38_c00146{left:121.096000pt;}
.x65_c00146{left:124.560000pt;}
.x59_c00146{left:128.400000pt;}
.x51_c00146{left:134.781333pt;}
.x66_c00146{left:140.160000pt;}
.x5a_c00146{left:141.840000pt;}
.x20_c00146{left:143.448000pt;}
.x2e_c00146{left:144.661333pt;}
.x8_c00146{left:145.925333pt;}
.x6_c00146{left:149.040000pt;}
.x2_c00146{left:151.290667pt;}
.x39_c00146{left:154.017333pt;}
.x18_c00146{left:154.996227pt;}
.x56_c00146{left:157.318005pt;}
.x4c_c00146{left:161.040000pt;}
.x14_c00146{left:164.061333pt;}
.x34_c00146{left:169.596000pt;}
.x42_c00146{left:175.792000pt;}
.x28_c00146{left:177.486667pt;}
.x2f_c00146{left:179.236000pt;}
.x21_c00146{left:181.381333pt;}
.x4d_c00146{left:185.280000pt;}
.x3a_c00146{left:193.362667pt;}
.x5d_c00146{left:195.120000pt;}
.x5b_c00146{left:197.520000pt;}
.x43_c00146{left:200.762667pt;}
.x62_c00146{left:202.080000pt;}
.x29_c00146{left:203.654667pt;}
.x9_c00146{left:204.648000pt;}
.x3_c00146{left:205.669333pt;}
.x3b_c00146{left:206.568000pt;}
.x52_c00146{left:218.797333pt;}
.x5c_c00146{left:220.080000pt;}
.x19_c00146{left:221.718893pt;}
.x57_c00146{left:223.327829pt;}
.x30_c00146{left:224.626667pt;}
.x35_c00146{left:226.701333pt;}
.x3c_c00146{left:231.708000pt;}
.x2a_c00146{left:232.766667pt;}
.x4_c00146{left:234.194667pt;}
.x5e_c00146{left:235.920000pt;}
.xa_c00146{left:239.682667pt;}
.x5_c00146{left:243.062667pt;}
.x15_c00146{left:246.734667pt;}
.x63_c00146{left:247.680000pt;}
.x22_c00146{left:250.050667pt;}
.x3d_c00146{left:255.274667pt;}
.x53_c00146{left:256.232000pt;}
.x4e_c00146{left:258.240000pt;}
.x4f_c00146{left:262.320000pt;}
.xb_c00146{left:267.066667pt;}
.x7_c00146{left:268.285333pt;}
.x1a_c00146{left:269.732227pt;}
.x44_c00146{left:271.808000pt;}
.x3e_c00146{left:274.262667pt;}
.x5f_c00146{left:277.200000pt;}
.x31_c00146{left:280.289333pt;}
.x60_c00146{left:284.160000pt;}
.x6d_c00146{left:287.040000pt;}
.x23_c00146{left:289.120000pt;}
.x2b_c00146{left:292.549333pt;}
.x54_c00146{left:297.692000pt;}
.x45_c00146{left:298.672000pt;}
.x6a_c00146{left:300.240000pt;}
.x76_c00146{left:308.400000pt;}
.x87_c00146{left:310.560000pt;}
.x80_c00146{left:311.520000pt;}
.x36_c00146{left:312.854667pt;}
.xc_c00146{left:314.376000pt;}
.x16_c00146{left:315.494667pt;}
.x8b_c00146{left:316.800000pt;}
.x1b_c00146{left:318.486893pt;}
.x3f_c00146{left:321.293333pt;}
.x32_c00146{left:323.957333pt;}
.x88_c00146{left:326.640000pt;}
.x81_c00146{left:332.400000pt;}
.x1c_c00146{left:334.529560pt;}
.x8c_c00146{left:336.240000pt;}
.x17_c00146{left:339.084000pt;}
.x77_c00146{left:341.040000pt;}
.x7c_c00146{left:343.200000pt;}
.x82_c00146{left:344.400000pt;}
.x6b_c00146{left:345.600000pt;}
.x92_c00146{left:349.680000pt;}
.xf_c00146{left:351.360000pt;}
.x8d_c00146{left:352.800000pt;}
.x24_c00146{left:356.364000pt;}
.x78_c00146{left:358.320000pt;}
.x6e_c00146{left:361.680000pt;}
.x10_c00146{left:363.120000pt;}
.x93_c00146{left:364.560000pt;}
.x89_c00146{left:367.440000pt;}
.x6f_c00146{left:369.120000pt;}
.x46_c00146{left:372.149333pt;}
.x1d_c00146{left:376.058893pt;}
.x8a_c00146{left:383.040000pt;}
.x47_c00146{left:386.488000pt;}
.x7d_c00146{left:388.080000pt;}
.x40_c00146{left:389.422667pt;}
.x41_c00146{left:391.018667pt;}
.x6c_c00146{left:392.160000pt;}
.x37_c00146{left:393.557333pt;}
.x70_c00146{left:395.760000pt;}
.x83_c00146{left:398.640000pt;}
.x33_c00146{left:400.781333pt;}
.x8e_c00146{left:401.760000pt;}
.x11_c00146{left:404.160000pt;}
.x1e_c00146{left:407.001560pt;}
.x94_c00146{left:408.960000pt;}
.x48_c00146{left:412.250667pt;}
.x25_c00146{left:414.185333pt;}
.x7e_c00146{left:416.160000pt;}
.x99_c00146{left:419.040000pt;}
.x2c_c00146{left:421.397333pt;}
.x97_c00146{left:423.120000pt;}
.xd_c00146{left:426.240000pt;}
.x8f_c00146{left:427.200000pt;}
.x9d_c00146{left:429.600000pt;}
.x84_c00146{left:431.280000pt;}
.x85_c00146{left:432.480000pt;}
.xe_c00146{left:436.080000pt;}
.x79_c00146{left:439.440000pt;}
.x26_c00146{left:441.316000pt;}
.x49_c00146{left:447.250667pt;}
.x90_c00146{left:451.680000pt;}
.x95_c00146{left:452.640000pt;}
.x71_c00146{left:453.840000pt;}
.x12_c00146{left:455.760000pt;}
.x7a_c00146{left:464.640000pt;}
.x27_c00146{left:466.993333pt;}
.x72_c00146{left:473.520000pt;}
.x86_c00146{left:475.200000pt;}
.x98_c00146{left:476.880000pt;}
.x73_c00146{left:478.080000pt;}
.x4a_c00146{left:479.640000pt;}
.x91_c00146{left:486.720000pt;}
.x7f_c00146{left:488.160000pt;}
.x74_c00146{left:490.560000pt;}
.x7b_c00146{left:492.240000pt;}
.x9e_c00146{left:493.440000pt;}
.x9a_c00146{left:494.880000pt;}
.x96_c00146{left:498.000000pt;}
.x9b_c00146{left:504.960000pt;}
.x75_c00146{left:510.480000pt;}
.x9c_c00146{left:525.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_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;}
.mae_c00147{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m139_c00147{transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{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);}
.m50_c00147{transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{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);}
.m138_c00147{transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);}
.m118_c00147{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.md8_c00147{transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);}
.m12d_c00147{transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);}
.m11c_c00147{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.mc2_c00147{transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);}
.md4_c00147{transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118360,0.000000,0.000000,0.250000,0,0);}
.m11f_c00147{transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);}
.maa_c00147{transform:matrix(0.138165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138165,0.000000,0.000000,0.250000,0,0);}
.m57_c00147{transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);}
.mb3_c00147{transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140645,0.000000,0.000000,0.250000,0,0);}
.m65_c00147{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);}
.mc3_c00147{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);}
.m103_c00147{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);}
.mc6_c00147{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.ma6_c00147{transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147455,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{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);}
.m89_c00147{transform:matrix(0.150680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150680,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{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);}
.m13e_c00147{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);}
.m33_c00147{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);}
.m75_c00147{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);}
.m37_c00147{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);}
.m73_c00147{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);}
.mc1_c00147{transform:matrix(0.157960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157960,0.000000,0.000000,0.250000,0,0);}
.mb9_c00147{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.mef_c00147{transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158345,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{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);}
.mba_c00147{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);}
.m12f_c00147{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);}
.mbd_c00147{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);}
.m3c_c00147{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);}
.m29_c00147{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);}
.m6b_c00147{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);}
.m32_c00147{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);}
.m7b_c00147{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);}
.ma1_c00147{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);}
.mab_c00147{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);}
.m31_c00147{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);}
.mb0_c00147{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);}
.m6d_c00147{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);}
.m13a_c00147{transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165310,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{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);}
.m4b_c00147{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);}
.mc5_c00147{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);}
.m8a_c00147{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);}
.m56_c00147{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);}
.m58_c00147{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);}
.mc9_c00147{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);}
.m98_c00147{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);}
.m2_c00147{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);}
.m21_c00147{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);}
.m84_c00147{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);}
.mca_c00147{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);}
.mbb_c00147{transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);}
.mbc_c00147{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);}
.mb_c00147{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m114_c00147{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);}
.mf4_c00147{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);}
.m2d_c00147{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);}
.m53_c00147{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);}
.m5e_c00147{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);}
.m124_c00147{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);}
.m3a_c00147{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.m88_c00147{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);}
.m3d_c00147{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);}
.m2f_c00147{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);}
.m87_c00147{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);}
.m9e_c00147{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);}
.m136_c00147{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);}
.ma_c00147{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);}
.m38_c00147{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{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);}
.m26_c00147{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);}
.m135_c00147{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);}
.m106_c00147{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);}
.m9f_c00147{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);}
.m5f_c00147{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);}
.ma7_c00147{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);}
.m2a_c00147{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);}
.m54_c00147{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);}
.m64_c00147{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);}
.mac_c00147{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);}
.m12c_c00147{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);}
.m3b_c00147{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);}
.m4f_c00147{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);}
.m4a_c00147{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);}
.m13b_c00147{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);}
.md1_c00147{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);}
.m5d_c00147{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);}
.m69_c00147{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);}
.m45_c00147{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);}
.mb6_c00147{transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);}
.ma0_c00147{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);}
.m86_c00147{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);}
.m117_c00147{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);}
.m7_c00147{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);}
.m27_c00147{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);}
.m128_c00147{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);}
.m1e_c00147{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);}
.mc4_c00147{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);}
.m18_c00147{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);}
.m11b_c00147{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);}
.m78_c00147{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);}
.md0_c00147{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);}
.m85_c00147{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);}
.m63_c00147{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);}
.m19_c00147{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);}
.m41_c00147{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);}
.m2b_c00147{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);}
.mbf_c00147{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);}
.m9_c00147{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_c00147{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);}
.m59_c00147{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);}
.m100_c00147{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);}
.m13d_c00147{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);}
.m6_c00147{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);}
.m4_c00147{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);}
.me7_c00147{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);}
.mbe_c00147{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);}
.m94_c00147{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);}
.m30_c00147{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);}
.m13c_c00147{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);}
.m137_c00147{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);}
.m4d_c00147{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);}
.m48_c00147{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);}
.m47_c00147{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_c00147{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);}
.m111_c00147{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);}
.m11d_c00147{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);}
.m121_c00147{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);}
.m113_c00147{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);}
.m1f_c00147{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);}
.m129_c00147{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);}
.m23_c00147{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);}
.m55_c00147{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);}
.m131_c00147{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);}
.m104_c00147{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_c00147{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);}
.ma2_c00147{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);}
.ma9_c00147{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);}
.m39_c00147{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);}
.m43_c00147{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);}
.m3e_c00147{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);}
.m119_c00147{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);}
.m107_c00147{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);}
.m44_c00147{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);}
.md6_c00147{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);}
.mfe_c00147{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);}
.m96_c00147{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);}
.m66_c00147{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);}
.m122_c00147{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m120_c00147{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);}
.m112_c00147{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);}
.m35_c00147{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);}
.m11a_c00147{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);}
.m52_c00147{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);}
.m132_c00147{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);}
.m4e_c00147{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);}
.m67_c00147{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);}
.m42_c00147{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);}
.m22_c00147{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);}
.m9d_c00147{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);}
.mb7_c00147{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);}
.m11e_c00147{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_c00147{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);}
.m108_c00147{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);}
.mb5_c00147{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);}
.m68_c00147{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);}
.m9a_c00147{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);}
.mb4_c00147{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);}
.m60_c00147{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);}
.m10b_c00147{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);}
.m130_c00147{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);}
.m12_c00147{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);}
.m97_c00147{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);}
.m93_c00147{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);}
.m116_c00147{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);}
.mf_c00147{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);}
.m1c_c00147{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);}
.ma5_c00147{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);}
.m13_c00147{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.mdd_c00147{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);}
.m8_c00147{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);}
.mc0_c00147{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);}
.m127_c00147{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);}
.md7_c00147{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);}
.m2c_c00147{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);}
.m99_c00147{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);}
.mf6_c00147{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);}
.m1b_c00147{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);}
.m10d_c00147{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);}
.mad_c00147{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{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);}
.m61_c00147{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);}
.m123_c00147{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);}
.mee_c00147{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);}
.me0_c00147{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);}
.m6c_c00147{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);}
.mf9_c00147{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);}
.m105_c00147{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);}
.m110_c00147{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);}
.m11_c00147{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);}
.mb8_c00147{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);}
.m9c_c00147{transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{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);}
.mea_c00147{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);}
.m6e_c00147{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);}
.m6f_c00147{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);}
.m14c_c00147{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);}
.m7f_c00147{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);}
.m74_c00147{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);}
.m4c_c00147{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);}
.m71_c00147{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);}
.mb1_c00147{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);}
.me_c00147{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);}
.m10_c00147{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);}
.mf2_c00147{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);}
.m8d_c00147{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);}
.mfa_c00147{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);}
.me6_c00147{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);}
.m49_c00147{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);}
.m115_c00147{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);}
.m92_c00147{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_c00147{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);}
.mf8_c00147{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);}
.m25_c00147{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);}
.m140_c00147{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);}
.me3_c00147{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);}
.m36_c00147{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);}
.ma3_c00147{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);}
.m7c_c00147{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);}
.mcf_c00147{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);}
.m15_c00147{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);}
.m70_c00147{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);}
.m10a_c00147{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);}
.m6a_c00147{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);}
.m62_c00147{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);}
.m16_c00147{transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);}
.m144_c00147{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.m10e_c00147{transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{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);}
.md_c00147{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.me4_c00147{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);}
.m7e_c00147{transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233515,0.000000,0.000000,0.250000,0,0);}
.m7d_c00147{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);}
.m80_c00147{transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);}
.mc7_c00147{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{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);}
.m40_c00147{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m125_c00147{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);}
.mcb_c00147{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);}
.mf3_c00147{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.m17_c00147{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);}
.m14b_c00147{transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{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);}
.m102_c00147{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);}
.mde_c00147{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);}
.me8_c00147{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);}
.m34_c00147{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m10c_c00147{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);}
.m134_c00147{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.mfb_c00147{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);}
.m2e_c00147{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m12b_c00147{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);}
.m14d_c00147{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{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);}
.mce_c00147{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.md9_c00147{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md2_c00147{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.ma8_c00147{transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);}
.me9_c00147{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);}
.mff_c00147{transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);}
.mdc_c00147{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);}
.mec_c00147{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);}
.m7a_c00147{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);}
.mf0_c00147{transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);}
.m8c_c00147{transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264220,0.000000,0.000000,0.250000,0,0);}
.m90_c00147{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);}
.m82_c00147{transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);}
.m149_c00147{transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);}
.maf_c00147{transform:matrix(0.271905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271905,0.000000,0.000000,0.250000,0,0);}
.md3_c00147{transform:matrix(0.273570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273570,0.000000,0.000000,0.250000,0,0);}
.m9b_c00147{transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);}
.m81_c00147{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m109_c00147{transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{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);}
.mf1_c00147{transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279515,0.000000,0.000000,0.250000,0,0);}
.mda_c00147{transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);}
.mcd_c00147{transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281440,0.000000,0.000000,0.250000,0,0);}
.m14a_c00147{transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);}
.m79_c00147{transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);}
.m126_c00147{transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);}
.m133_c00147{transform:matrix(0.286420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);}
.m14e_c00147{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);}
.me1_c00147{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00147{transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);}
.mfc_c00147{transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);}
.m13f_c00147{transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303330,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);}
.mb2_c00147{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);}
.meb_c00147{transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314140,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{transform:matrix(0.316575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316575,0.000000,0.000000,0.250000,0,0);}
.mdb_c00147{transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317725,0.000000,0.000000,0.250000,0,0);}
.m12a_c00147{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);}
.mc8_c00147{transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);}
.mf5_c00147{transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);}
.mcc_c00147{transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);}
.med_c00147{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.mf7_c00147{transform:matrix(0.347650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00147{transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.357830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357830,0.000000,0.000000,0.250000,0,0);}
.m147_c00147{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);}
.m143_c00147{transform:matrix(0.369525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369525,0.000000,0.000000,0.250000,0,0);}
.m101_c00147{transform:matrix(0.370825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370825,0.000000,0.000000,0.250000,0,0);}
.me5_c00147{transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371430,0.000000,0.000000,0.250000,0,0);}
.m10f_c00147{transform:matrix(0.379965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379965,0.000000,0.000000,0.250000,0,0);}
.md5_c00147{transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);}
.m141_c00147{transform:matrix(0.398130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398130,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);}
.m148_c00147{transform:matrix(0.447240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447240,0.000000,0.000000,0.250000,0,0);}
.m145_c00147{transform:matrix(0.474760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474760,0.000000,0.000000,0.250000,0,0);}
.m142_c00147{transform:matrix(0.541890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541890,0.000000,0.000000,0.250000,0,0);}
.m146_c00147{transform:matrix(0.672315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672315,0.000000,0.000000,0.250000,0,0);}
.m12e_c00147{transform:matrix(0.755985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755985,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;}
.fse_c00147{font-size:47.250000px;}
.fs16_c00147{font-size:48.300000px;}
.fsf_c00147{font-size:49.350000px;}
.fs12_c00147{font-size:50.400000px;}
.fs11_c00147{font-size:51.450000px;}
.fs13_c00147{font-size:53.550000px;}
.fs10_c00147{font-size:54.600000px;}
.fsd_c00147{font-size:55.650000px;}
.fs15_c00147{font-size:57.750000px;}
.fs14_c00147{font-size:58.800000px;}
.fs8_c00147{font-size:60.900000px;}
.fsc_c00147{font-size:61.950000px;}
.fs0_c00147{font-size:63.000000px;}
.fs2_c00147{font-size:64.050000px;}
.fsa_c00147{font-size:66.150000px;}
.fs6_c00147{font-size:67.200000px;}
.fs3_c00147{font-size:69.300000px;}
.fsb_c00147{font-size:70.350000px;}
.fs7_c00147{font-size:71.400000px;}
.fs4_c00147{font-size:72.450000px;}
.fs1_c00147{font-size:73.500000px;}
.fs5_c00147{font-size:74.550000px;}
.fs9_c00147{font-size:75.600000px;}
.y0_c00147{bottom:0.000000px;}
.y28_c00147{bottom:142.797000px;}
.y1f_c00147{bottom:144.820500px;}
.y27_c00147{bottom:161.082000px;}
.y1e_c00147{bottom:162.757500px;}
.y2a_c00147{bottom:179.152500px;}
.y1d_c00147{bottom:180.894000px;}
.y29_c00147{bottom:196.816500px;}
.y1c_c00147{bottom:198.609000px;}
.y26_c00147{bottom:215.710500px;}
.y1b_c00147{bottom:216.438000px;}
.y25_c00147{bottom:233.094000px;}
.y1a_c00147{bottom:234.247500px;}
.y24_c00147{bottom:250.911000px;}
.y19_c00147{bottom:252.313500px;}
.y23_c00147{bottom:269.046000px;}
.y18_c00147{bottom:270.435000px;}
.y22_c00147{bottom:286.978500px;}
.y17_c00147{bottom:288.642000px;}
.y21_c00147{bottom:304.920000px;}
.y16_c00147{bottom:306.801000px;}
.y20_c00147{bottom:341.550000px;}
.y15_c00147{bottom:360.669000px;}
.y14_c00147{bottom:383.151000px;}
.y13_c00147{bottom:406.152000px;}
.y12_c00147{bottom:429.435000px;}
.y11_c00147{bottom:451.570500px;}
.y10_c00147{bottom:474.552000px;}
.yf_c00147{bottom:497.424000px;}
.ye_c00147{bottom:520.929000px;}
.yd_c00147{bottom:543.510000px;}
.yc_c00147{bottom:566.808000px;}
.yb_c00147{bottom:589.338000px;}
.ya_c00147{bottom:612.813000px;}
.y9_c00147{bottom:635.655000px;}
.y8_c00147{bottom:657.990000px;}
.y7_c00147{bottom:681.634500px;}
.y6_c00147{bottom:704.337000px;}
.y5_c00147{bottom:727.380000px;}
.y4_c00147{bottom:749.917500px;}
.y3_c00147{bottom:772.870500px;}
.y2_c00147{bottom:795.894000px;}
.y1_c00147{bottom:819.603000px;}
.h10_c00147{height:47.250000px;}
.h18_c00147{height:48.300000px;}
.h11_c00147{height:49.350000px;}
.h14_c00147{height:50.400000px;}
.h13_c00147{height:51.450000px;}
.h15_c00147{height:53.550000px;}
.h12_c00147{height:54.600000px;}
.hf_c00147{height:55.650000px;}
.h17_c00147{height:57.750000px;}
.h16_c00147{height:58.800000px;}
.ha_c00147{height:60.900000px;}
.he_c00147{height:61.950000px;}
.h2_c00147{height:63.000000px;}
.h4_c00147{height:64.050000px;}
.hc_c00147{height:66.150000px;}
.h8_c00147{height:67.200000px;}
.h5_c00147{height:69.300000px;}
.hd_c00147{height:70.350000px;}
.h9_c00147{height:71.400000px;}
.h6_c00147{height:72.450000px;}
.h3_c00147{height:73.500000px;}
.h7_c00147{height:74.550000px;}
.hb_c00147{height:75.600000px;}
.h0_c00147{height:1008.450000px;}
.h1_c00147{height:1008.750000px;}
.w0_c00147{width:676.890000px;}
.w1_c00147{width:677.250000px;}
.x0_c00147{left:0.000000px;}
.x95_c00147{left:141.480000px;}
.x7f_c00147{left:144.450000px;}
.x83_c00147{left:145.800000px;}
.x8a_c00147{left:157.410000px;}
.x96_c00147{left:164.430000px;}
.x84_c00147{left:166.320000px;}
.x8d_c00147{left:170.100000px;}
.x15_c00147{left:173.070000px;}
.x8b_c00147{left:174.150000px;}
.x70_c00147{left:176.040000px;}
.x3b_c00147{left:177.930000px;}
.x65_c00147{left:180.360000px;}
.x35_c00147{left:181.710000px;}
.x3_c00147{left:183.330000px;}
.xd_c00147{left:184.950000px;}
.x91_c00147{left:195.210000px;}
.x9c_c00147{left:201.960000px;}
.x80_c00147{left:203.580000px;}
.x99_c00147{left:205.740000px;}
.x55_c00147{left:207.630000px;}
.x2e_c00147{left:209.250000px;}
.x5c_c00147{left:210.870000px;}
.x44_c00147{left:211.950000px;}
.x7b_c00147{left:214.380000px;}
.x4d_c00147{left:215.730000px;}
.x4_c00147{left:221.130000px;}
.x92_c00147{left:224.100000px;}
.x21_c00147{left:226.800000px;}
.x8e_c00147{left:228.420000px;}
.xe_c00147{left:230.850000px;}
.x85_c00147{left:233.280000px;}
.x66_c00147{left:234.360000px;}
.x36_c00147{left:236.790000px;}
.x5d_c00147{left:238.950000px;}
.x61_c00147{left:240.030000px;}
.x76_c00147{left:241.380000px;}
.x71_c00147{left:243.810000px;}
.x2f_c00147{left:244.890000px;}
.x86_c00147{left:246.780000px;}
.x5_c00147{left:248.130000px;}
.x16_c00147{left:249.750000px;}
.x6a_c00147{left:251.910000px;}
.x45_c00147{left:254.610000px;}
.x37_c00147{left:257.040000px;}
.x72_c00147{left:258.930000px;}
.x87_c00147{left:261.900000px;}
.x3c_c00147{left:263.250000px;}
.x97_c00147{left:264.330000px;}
.x7c_c00147{left:265.410000px;}
.x26_c00147{left:268.380000px;}
.x1c_c00147{left:269.460000px;}
.xf_c00147{left:270.540000px;}
.x93_c00147{left:271.620000px;}
.x5e_c00147{left:273.240000px;}
.x81_c00147{left:274.320000px;}
.x67_c00147{left:276.750000px;}
.x77_c00147{left:278.370000px;}
.x88_c00147{left:279.990000px;}
.x9b_c00147{left:282.150000px;}
.x3d_c00147{left:283.770000px;}
.x6b_c00147{left:287.010000px;}
.x6_c00147{left:288.900000px;}
.x46_c00147{left:290.520000px;}
.x30_c00147{left:291.870000px;}
.x17_c00147{left:293.760000px;}
.x78_c00147{left:294.840000px;}
.x56_c00147{left:299.700000px;}
.x22_c00147{left:301.860000px;}
.x53_c00147{left:304.020000px;}
.x7_c00147{left:306.720000px;}
.x89_c00147{left:308.340000px;}
.x8f_c00147{left:310.500000px;}
.x1_c00147{left:312.930000px;}
.x3e_c00147{left:314.280000px;}
.x4e_c00147{left:315.900000px;}
.x1d_c00147{left:317.250000px;}
.x57_c00147{left:320.220000px;}
.x94_c00147{left:322.380000px;}
.x6c_c00147{left:324.000000px;}
.x79_c00147{left:326.430000px;}
.x10_c00147{left:328.320000px;}
.x27_c00147{left:330.480000px;}
.x7d_c00147{left:332.640000px;}
.x62_c00147{left:336.420000px;}
.x82_c00147{left:341.820000px;}
.x1e_c00147{left:343.170000px;}
.x9a_c00147{left:345.060000px;}
.x4f_c00147{left:347.490000px;}
.x90_c00147{left:349.380000px;}
.x31_c00147{left:351.000000px;}
.x47_c00147{left:352.350000px;}
.x28_c00147{left:355.050000px;}
.x98_c00147{left:356.670000px;}
.x8c_c00147{left:358.830000px;}
.x2_c00147{left:361.800000px;}
.x23_c00147{left:363.960000px;}
.x5f_c00147{left:365.580000px;}
.x11_c00147{left:367.470000px;}
.x58_c00147{left:369.630000px;}
.x32_c00147{left:370.710000px;}
.x8_c00147{left:372.600000px;}
.x3f_c00147{left:374.490000px;}
.x6d_c00147{left:376.380000px;}
.x63_c00147{left:377.730000px;}
.x68_c00147{left:384.210000px;}
.x1f_c00147{left:385.560000px;}
.x50_c00147{left:390.420000px;}
.xb1_c00147{left:392.040000px;}
.xaa_c00147{left:393.120000px;}
.x18_c00147{left:394.740000px;}
.x24_c00147{left:396.630000px;}
.x29_c00147{left:399.060000px;}
.x59_c00147{left:401.490000px;}
.x48_c00147{left:402.840000px;}
.x40_c00147{left:405.540000px;}
.x12_c00147{left:406.890000px;}
.x73_c00147{left:409.590000px;}
.x9_c00147{left:410.940000px;}
.x49_c00147{left:417.690000px;}
.x6e_c00147{left:418.770000px;}
.xb8_c00147{left:421.740000px;}
.x38_c00147{left:424.710000px;}
.x2a_c00147{left:426.060000px;}
.xa0_c00147{left:428.490000px;}
.x5a_c00147{left:430.650000px;}
.x33_c00147{left:432.270000px;}
.x25_c00147{left:435.510000px;}
.xab_c00147{left:437.400000px;}
.x20_c00147{left:439.830000px;}
.x54_c00147{left:441.990000px;}
.x64_c00147{left:443.880000px;}
.x41_c00147{left:446.310000px;}
.xb2_c00147{left:447.660000px;}
.x7e_c00147{left:449.280000px;}
.xbf_c00147{left:450.360000px;}
.xac_c00147{left:452.250000px;}
.xa_c00147{left:453.600000px;}
.xa4_c00147{left:454.680000px;}
.x2b_c00147{left:456.840000px;}
.x34_c00147{left:458.190000px;}
.x4a_c00147{left:459.270000px;}
.x13_c00147{left:461.970000px;}
.x74_c00147{left:463.590000px;}
.x19_c00147{left:468.450000px;}
.xa5_c00147{left:470.610000px;}
.xad_c00147{left:472.230000px;}
.x2c_c00147{left:474.120000px;}
.xba_c00147{left:476.550000px;}
.x39_c00147{left:479.250000px;}
.x69_c00147{left:480.870000px;}
.xb5_c00147{left:483.300000px;}
.x42_c00147{left:485.190000px;}
.x5b_c00147{left:488.970000px;}
.xb9_c00147{left:490.860000px;}
.xb_c00147{left:493.560000px;}
.xa6_c00147{left:495.720000px;}
.x51_c00147{left:497.880000px;}
.xbb_c00147{left:499.230000px;}
.x4b_c00147{left:501.120000px;}
.x1a_c00147{left:506.250000px;}
.x60_c00147{left:511.110000px;}
.x3a_c00147{left:512.460000px;}
.x2d_c00147{left:521.640000px;}
.xa1_c00147{left:529.470000px;}
.x14_c00147{left:535.410000px;}
.x43_c00147{left:540.810000px;}
.xae_c00147{left:543.780000px;}
.xc_c00147{left:548.100000px;}
.xa7_c00147{left:549.450000px;}
.xc0_c00147{left:550.530000px;}
.x1b_c00147{left:551.610000px;}
.xa2_c00147{left:553.230000px;}
.xb3_c00147{left:554.850000px;}
.x52_c00147{left:556.740000px;}
.xbc_c00147{left:558.090000px;}
.x75_c00147{left:561.330000px;}
.xbd_c00147{left:567.270000px;}
.x6f_c00147{left:569.700000px;}
.xa8_c00147{left:575.100000px;}
.x7a_c00147{left:576.450000px;}
.x4c_c00147{left:582.930000px;}
.xaf_c00147{left:585.090000px;}
.x9e_c00147{left:590.490000px;}
.xc1_c00147{left:591.570000px;}
.x9f_c00147{left:597.240000px;}
.x9d_c00147{left:603.180000px;}
.xb4_c00147{left:608.040000px;}
.xa3_c00147{left:610.740000px;}
.xb0_c00147{left:611.820000px;}
.xa9_c00147{left:618.570000px;}
.xbe_c00147{left:630.450000px;}
.xb6_c00147{left:633.150000px;}
.xb7_c00147{left:653.130000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
.fse_c00147{font-size:42.000000pt;}
.fs16_c00147{font-size:42.933333pt;}
.fsf_c00147{font-size:43.866667pt;}
.fs12_c00147{font-size:44.800000pt;}
.fs11_c00147{font-size:45.733333pt;}
.fs13_c00147{font-size:47.600000pt;}
.fs10_c00147{font-size:48.533333pt;}
.fsd_c00147{font-size:49.466667pt;}
.fs15_c00147{font-size:51.333333pt;}
.fs14_c00147{font-size:52.266667pt;}
.fs8_c00147{font-size:54.133333pt;}
.fsc_c00147{font-size:55.066667pt;}
.fs0_c00147{font-size:56.000000pt;}
.fs2_c00147{font-size:56.933333pt;}
.fsa_c00147{font-size:58.800000pt;}
.fs6_c00147{font-size:59.733333pt;}
.fs3_c00147{font-size:61.600000pt;}
.fsb_c00147{font-size:62.533333pt;}
.fs7_c00147{font-size:63.466667pt;}
.fs4_c00147{font-size:64.400000pt;}
.fs1_c00147{font-size:65.333333pt;}
.fs5_c00147{font-size:66.266667pt;}
.fs9_c00147{font-size:67.200000pt;}
.y0_c00147{bottom:0.000000pt;}
.y28_c00147{bottom:126.930667pt;}
.y1f_c00147{bottom:128.729333pt;}
.y27_c00147{bottom:143.184000pt;}
.y1e_c00147{bottom:144.673333pt;}
.y2a_c00147{bottom:159.246667pt;}
.y1d_c00147{bottom:160.794667pt;}
.y29_c00147{bottom:174.948000pt;}
.y1c_c00147{bottom:176.541333pt;}
.y26_c00147{bottom:191.742667pt;}
.y1b_c00147{bottom:192.389333pt;}
.y25_c00147{bottom:207.194667pt;}
.y1a_c00147{bottom:208.220000pt;}
.y24_c00147{bottom:223.032000pt;}
.y19_c00147{bottom:224.278667pt;}
.y23_c00147{bottom:239.152000pt;}
.y18_c00147{bottom:240.386667pt;}
.y22_c00147{bottom:255.092000pt;}
.y17_c00147{bottom:256.570667pt;}
.y21_c00147{bottom:271.040000pt;}
.y16_c00147{bottom:272.712000pt;}
.y20_c00147{bottom:303.600000pt;}
.y15_c00147{bottom:320.594667pt;}
.y14_c00147{bottom:340.578667pt;}
.y13_c00147{bottom:361.024000pt;}
.y12_c00147{bottom:381.720000pt;}
.y11_c00147{bottom:401.396000pt;}
.y10_c00147{bottom:421.824000pt;}
.yf_c00147{bottom:442.154667pt;}
.ye_c00147{bottom:463.048000pt;}
.yd_c00147{bottom:483.120000pt;}
.yc_c00147{bottom:503.829333pt;}
.yb_c00147{bottom:523.856000pt;}
.ya_c00147{bottom:544.722667pt;}
.y9_c00147{bottom:565.026667pt;}
.y8_c00147{bottom:584.880000pt;}
.y7_c00147{bottom:605.897333pt;}
.y6_c00147{bottom:626.077333pt;}
.y5_c00147{bottom:646.560000pt;}
.y4_c00147{bottom:666.593333pt;}
.y3_c00147{bottom:686.996000pt;}
.y2_c00147{bottom:707.461333pt;}
.y1_c00147{bottom:728.536000pt;}
.h10_c00147{height:42.000000pt;}
.h18_c00147{height:42.933333pt;}
.h11_c00147{height:43.866667pt;}
.h14_c00147{height:44.800000pt;}
.h13_c00147{height:45.733333pt;}
.h15_c00147{height:47.600000pt;}
.h12_c00147{height:48.533333pt;}
.hf_c00147{height:49.466667pt;}
.h17_c00147{height:51.333333pt;}
.h16_c00147{height:52.266667pt;}
.ha_c00147{height:54.133333pt;}
.he_c00147{height:55.066667pt;}
.h2_c00147{height:56.000000pt;}
.h4_c00147{height:56.933333pt;}
.hc_c00147{height:58.800000pt;}
.h8_c00147{height:59.733333pt;}
.h5_c00147{height:61.600000pt;}
.hd_c00147{height:62.533333pt;}
.h9_c00147{height:63.466667pt;}
.h6_c00147{height:64.400000pt;}
.h3_c00147{height:65.333333pt;}
.h7_c00147{height:66.266667pt;}
.hb_c00147{height:67.200000pt;}
.h0_c00147{height:896.400000pt;}
.h1_c00147{height:896.666667pt;}
.w0_c00147{width:601.680000pt;}
.w1_c00147{width:602.000000pt;}
.x0_c00147{left:0.000000pt;}
.x95_c00147{left:125.760000pt;}
.x7f_c00147{left:128.400000pt;}
.x83_c00147{left:129.600000pt;}
.x8a_c00147{left:139.920000pt;}
.x96_c00147{left:146.160000pt;}
.x84_c00147{left:147.840000pt;}
.x8d_c00147{left:151.200000pt;}
.x15_c00147{left:153.840000pt;}
.x8b_c00147{left:154.800000pt;}
.x70_c00147{left:156.480000pt;}
.x3b_c00147{left:158.160000pt;}
.x65_c00147{left:160.320000pt;}
.x35_c00147{left:161.520000pt;}
.x3_c00147{left:162.960000pt;}
.xd_c00147{left:164.400000pt;}
.x91_c00147{left:173.520000pt;}
.x9c_c00147{left:179.520000pt;}
.x80_c00147{left:180.960000pt;}
.x99_c00147{left:182.880000pt;}
.x55_c00147{left:184.560000pt;}
.x2e_c00147{left:186.000000pt;}
.x5c_c00147{left:187.440000pt;}
.x44_c00147{left:188.400000pt;}
.x7b_c00147{left:190.560000pt;}
.x4d_c00147{left:191.760000pt;}
.x4_c00147{left:196.560000pt;}
.x92_c00147{left:199.200000pt;}
.x21_c00147{left:201.600000pt;}
.x8e_c00147{left:203.040000pt;}
.xe_c00147{left:205.200000pt;}
.x85_c00147{left:207.360000pt;}
.x66_c00147{left:208.320000pt;}
.x36_c00147{left:210.480000pt;}
.x5d_c00147{left:212.400000pt;}
.x61_c00147{left:213.360000pt;}
.x76_c00147{left:214.560000pt;}
.x71_c00147{left:216.720000pt;}
.x2f_c00147{left:217.680000pt;}
.x86_c00147{left:219.360000pt;}
.x5_c00147{left:220.560000pt;}
.x16_c00147{left:222.000000pt;}
.x6a_c00147{left:223.920000pt;}
.x45_c00147{left:226.320000pt;}
.x37_c00147{left:228.480000pt;}
.x72_c00147{left:230.160000pt;}
.x87_c00147{left:232.800000pt;}
.x3c_c00147{left:234.000000pt;}
.x97_c00147{left:234.960000pt;}
.x7c_c00147{left:235.920000pt;}
.x26_c00147{left:238.560000pt;}
.x1c_c00147{left:239.520000pt;}
.xf_c00147{left:240.480000pt;}
.x93_c00147{left:241.440000pt;}
.x5e_c00147{left:242.880000pt;}
.x81_c00147{left:243.840000pt;}
.x67_c00147{left:246.000000pt;}
.x77_c00147{left:247.440000pt;}
.x88_c00147{left:248.880000pt;}
.x9b_c00147{left:250.800000pt;}
.x3d_c00147{left:252.240000pt;}
.x6b_c00147{left:255.120000pt;}
.x6_c00147{left:256.800000pt;}
.x46_c00147{left:258.240000pt;}
.x30_c00147{left:259.440000pt;}
.x17_c00147{left:261.120000pt;}
.x78_c00147{left:262.080000pt;}
.x56_c00147{left:266.400000pt;}
.x22_c00147{left:268.320000pt;}
.x53_c00147{left:270.240000pt;}
.x7_c00147{left:272.640000pt;}
.x89_c00147{left:274.080000pt;}
.x8f_c00147{left:276.000000pt;}
.x1_c00147{left:278.160000pt;}
.x3e_c00147{left:279.360000pt;}
.x4e_c00147{left:280.800000pt;}
.x1d_c00147{left:282.000000pt;}
.x57_c00147{left:284.640000pt;}
.x94_c00147{left:286.560000pt;}
.x6c_c00147{left:288.000000pt;}
.x79_c00147{left:290.160000pt;}
.x10_c00147{left:291.840000pt;}
.x27_c00147{left:293.760000pt;}
.x7d_c00147{left:295.680000pt;}
.x62_c00147{left:299.040000pt;}
.x82_c00147{left:303.840000pt;}
.x1e_c00147{left:305.040000pt;}
.x9a_c00147{left:306.720000pt;}
.x4f_c00147{left:308.880000pt;}
.x90_c00147{left:310.560000pt;}
.x31_c00147{left:312.000000pt;}
.x47_c00147{left:313.200000pt;}
.x28_c00147{left:315.600000pt;}
.x98_c00147{left:317.040000pt;}
.x8c_c00147{left:318.960000pt;}
.x2_c00147{left:321.600000pt;}
.x23_c00147{left:323.520000pt;}
.x5f_c00147{left:324.960000pt;}
.x11_c00147{left:326.640000pt;}
.x58_c00147{left:328.560000pt;}
.x32_c00147{left:329.520000pt;}
.x8_c00147{left:331.200000pt;}
.x3f_c00147{left:332.880000pt;}
.x6d_c00147{left:334.560000pt;}
.x63_c00147{left:335.760000pt;}
.x68_c00147{left:341.520000pt;}
.x1f_c00147{left:342.720000pt;}
.x50_c00147{left:347.040000pt;}
.xb1_c00147{left:348.480000pt;}
.xaa_c00147{left:349.440000pt;}
.x18_c00147{left:350.880000pt;}
.x24_c00147{left:352.560000pt;}
.x29_c00147{left:354.720000pt;}
.x59_c00147{left:356.880000pt;}
.x48_c00147{left:358.080000pt;}
.x40_c00147{left:360.480000pt;}
.x12_c00147{left:361.680000pt;}
.x73_c00147{left:364.080000pt;}
.x9_c00147{left:365.280000pt;}
.x49_c00147{left:371.280000pt;}
.x6e_c00147{left:372.240000pt;}
.xb8_c00147{left:374.880000pt;}
.x38_c00147{left:377.520000pt;}
.x2a_c00147{left:378.720000pt;}
.xa0_c00147{left:380.880000pt;}
.x5a_c00147{left:382.800000pt;}
.x33_c00147{left:384.240000pt;}
.x25_c00147{left:387.120000pt;}
.xab_c00147{left:388.800000pt;}
.x20_c00147{left:390.960000pt;}
.x54_c00147{left:392.880000pt;}
.x64_c00147{left:394.560000pt;}
.x41_c00147{left:396.720000pt;}
.xb2_c00147{left:397.920000pt;}
.x7e_c00147{left:399.360000pt;}
.xbf_c00147{left:400.320000pt;}
.xac_c00147{left:402.000000pt;}
.xa_c00147{left:403.200000pt;}
.xa4_c00147{left:404.160000pt;}
.x2b_c00147{left:406.080000pt;}
.x34_c00147{left:407.280000pt;}
.x4a_c00147{left:408.240000pt;}
.x13_c00147{left:410.640000pt;}
.x74_c00147{left:412.080000pt;}
.x19_c00147{left:416.400000pt;}
.xa5_c00147{left:418.320000pt;}
.xad_c00147{left:419.760000pt;}
.x2c_c00147{left:421.440000pt;}
.xba_c00147{left:423.600000pt;}
.x39_c00147{left:426.000000pt;}
.x69_c00147{left:427.440000pt;}
.xb5_c00147{left:429.600000pt;}
.x42_c00147{left:431.280000pt;}
.x5b_c00147{left:434.640000pt;}
.xb9_c00147{left:436.320000pt;}
.xb_c00147{left:438.720000pt;}
.xa6_c00147{left:440.640000pt;}
.x51_c00147{left:442.560000pt;}
.xbb_c00147{left:443.760000pt;}
.x4b_c00147{left:445.440000pt;}
.x1a_c00147{left:450.000000pt;}
.x60_c00147{left:454.320000pt;}
.x3a_c00147{left:455.520000pt;}
.x2d_c00147{left:463.680000pt;}
.xa1_c00147{left:470.640000pt;}
.x14_c00147{left:475.920000pt;}
.x43_c00147{left:480.720000pt;}
.xae_c00147{left:483.360000pt;}
.xc_c00147{left:487.200000pt;}
.xa7_c00147{left:488.400000pt;}
.xc0_c00147{left:489.360000pt;}
.x1b_c00147{left:490.320000pt;}
.xa2_c00147{left:491.760000pt;}
.xb3_c00147{left:493.200000pt;}
.x52_c00147{left:494.880000pt;}
.xbc_c00147{left:496.080000pt;}
.x75_c00147{left:498.960000pt;}
.xbd_c00147{left:504.240000pt;}
.x6f_c00147{left:506.400000pt;}
.xa8_c00147{left:511.200000pt;}
.x7a_c00147{left:512.400000pt;}
.x4c_c00147{left:518.160000pt;}
.xaf_c00147{left:520.080000pt;}
.x9e_c00147{left:524.880000pt;}
.xc1_c00147{left:525.840000pt;}
.x9f_c00147{left:530.880000pt;}
.x9d_c00147{left:536.160000pt;}
.xb4_c00147{left:540.480000pt;}
.xa3_c00147{left:542.880000pt;}
.xb0_c00147{left:543.840000pt;}
.xa9_c00147{left:549.840000pt;}
.xbe_c00147{left:560.400000pt;}
.xb6_c00147{left:562.800000pt;}
.xb7_c00147{left:580.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_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_ef4e99a7aa2876b3106553d3.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;}
.m11_c00148{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);}
.m8_c00148{transform:matrix(0.023244,-0.000256,0.002750,0.249985,0,0);-ms-transform:matrix(0.023244,-0.000256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.023244,-0.000256,0.002750,0.249985,0,0);}
.m63_c00148{transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);}
.me4_c00148{transform:matrix(0.040975,-0.000901,0.005499,0.249940,0,0);-ms-transform:matrix(0.040975,-0.000901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.040975,-0.000901,0.005499,0.249940,0,0);}
.m2e_c00148{transform:matrix(0.043190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043190,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.090285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090285,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.102045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102045,0.000000,0.000000,0.250000,0,0);}
.mea_c00148{transform:matrix(0.110678,-0.002435,0.005499,0.249940,0,0);-ms-transform:matrix(0.110678,-0.002435,0.005499,0.249940,0,0);-webkit-transform:matrix(0.110678,-0.002435,0.005499,0.249940,0,0);}
.m15_c00148{transform:matrix(0.115015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115015,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.118845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118845,0.000000,0.000000,0.250000,0,0);}
.mda_c00148{transform:matrix(0.121329,-0.003155,0.006498,0.249916,0,0);-ms-transform:matrix(0.121329,-0.003155,0.006498,0.249916,0,0);-webkit-transform:matrix(0.121329,-0.003155,0.006498,0.249916,0,0);}
.mc4_c00148{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);}
.mdc_c00148{transform:matrix(0.139996,-0.003080,0.005499,0.249940,0,0);-ms-transform:matrix(0.139996,-0.003080,0.005499,0.249940,0,0);-webkit-transform:matrix(0.139996,-0.003080,0.005499,0.249940,0,0);}
.m62_c00148{transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00148{transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143830,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{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);}
.mf6_c00148{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);}
.mdb_c00148{transform:matrix(0.146311,-0.003804,0.006498,0.249916,0,0);-ms-transform:matrix(0.146311,-0.003804,0.006498,0.249916,0,0);-webkit-transform:matrix(0.146311,-0.003804,0.006498,0.249916,0,0);}
.m18_c00148{transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);}
.md6_c00148{transform:matrix(0.148050,-0.003849,0.006498,0.249916,0,0);-ms-transform:matrix(0.148050,-0.003849,0.006498,0.249916,0,0);-webkit-transform:matrix(0.148050,-0.003849,0.006498,0.249916,0,0);}
.m5b_c00148{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);}
.m57_c00148{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);}
.mc0_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);}
.mf4_c00148{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m14_c00148{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);}
.m6d_c00148{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);}
.m84_c00148{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);}
.m68_c00148{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);}
.ma2_c00148{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);}
.m12_c00148{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);}
.ma5_c00148{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);}
.m7a_c00148{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);}
.m61_c00148{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);}
.mb5_c00148{transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{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);}
.m56_c00148{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);}
.mc1_c00148{transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{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);}
.mc3_c00148{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);}
.mc2_c00148{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);}
.m60_c00148{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);}
.mdf_c00148{transform:matrix(0.168854,-0.003715,0.005499,0.249940,0,0);-ms-transform:matrix(0.168854,-0.003715,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168854,-0.003715,0.005499,0.249940,0,0);}
.mca_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);}
.m13_c00148{transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);}
.me3_c00148{transform:matrix(0.170514,-0.003751,0.005499,0.249940,0,0);-ms-transform:matrix(0.170514,-0.003751,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170514,-0.003751,0.005499,0.249940,0,0);}
.m47_c00148{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);}
.ma0_c00148{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);}
.m9f_c00148{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);}
.md8_c00148{transform:matrix(0.173256,-0.004505,0.006498,0.249916,0,0);-ms-transform:matrix(0.173256,-0.004505,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173256,-0.004505,0.006498,0.249916,0,0);}
.mf5_c00148{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);}
.m7b_c00148{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);}
.md9_c00148{transform:matrix(0.174111,-0.004527,0.006498,0.249916,0,0);-ms-transform:matrix(0.174111,-0.004527,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174111,-0.004527,0.006498,0.249916,0,0);}
.m6f_c00148{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);}
.mcc_c00148{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);}
.m59_c00148{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);}
.m9e_c00148{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);}
.md7_c00148{transform:matrix(0.175901,-0.004573,0.006498,0.249916,0,0);-ms-transform:matrix(0.175901,-0.004573,0.006498,0.249916,0,0);-webkit-transform:matrix(0.175901,-0.004573,0.006498,0.249916,0,0);}
.m40_c00148{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);}
.mb7_c00148{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);}
.me2_c00148{transform:matrix(0.176762,-0.003889,0.005499,0.249940,0,0);-ms-transform:matrix(0.176762,-0.003889,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176762,-0.003889,0.005499,0.249940,0,0);}
.m64_c00148{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);}
.m34_c00148{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);}
.m96_c00148{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);}
.mc7_c00148{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);}
.m5e_c00148{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);}
.m54_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);}
.mb4_c00148{transform:matrix(0.178561,-0.001786,0.002500,0.249988,0,0);-ms-transform:matrix(0.178561,-0.001786,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178561,-0.001786,0.002500,0.249988,0,0);}
.mae_c00148{transform:matrix(0.178736,-0.001787,0.002500,0.249988,0,0);-ms-transform:matrix(0.178736,-0.001787,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178736,-0.001787,0.002500,0.249988,0,0);}
.m1a_c00148{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);}
.m39_c00148{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);}
.ma6_c00148{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);}
.m5c_c00148{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);}
.m5d_c00148{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);}
.mbb_c00148{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);}
.m32_c00148{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);}
.m22_c00148{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);}
.mb3_c00148{transform:matrix(0.182951,-0.001830,0.002500,0.249988,0,0);-ms-transform:matrix(0.182951,-0.001830,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182951,-0.001830,0.002500,0.249988,0,0);}
.mcf_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);}
.mb2_c00148{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);}
.m65_c00148{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);}
.m33_c00148{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);}
.m20_c00148{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);}
.mcb_c00148{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);}
.mfb_c00148{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);}
.m72_c00148{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);}
.m75_c00148{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);}
.m8b_c00148{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);}
.m77_c00148{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);}
.mc5_c00148{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);}
.m71_c00148{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);}
.ma1_c00148{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);}
.ma8_c00148{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);}
.m6b_c00148{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);}
.m67_c00148{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);}
.m4b_c00148{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);}
.m87_c00148{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);}
.mb9_c00148{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);}
.mba_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);}
.mad_c00148{transform:matrix(0.190360,-0.001904,0.002500,0.249988,0,0);-ms-transform:matrix(0.190360,-0.001904,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190360,-0.001904,0.002500,0.249988,0,0);}
.m48_c00148{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);}
.m9d_c00148{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);}
.m89_c00148{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);}
.mab_c00148{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);}
.mb1_c00148{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);}
.m85_c00148{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);}
.m91_c00148{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);}
.m29_c00148{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);}
.m76_c00148{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);}
.mef_c00148{transform:matrix(0.194238,-0.004273,0.005499,0.249940,0,0);-ms-transform:matrix(0.194238,-0.004273,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194238,-0.004273,0.005499,0.249940,0,0);}
.m1b_c00148{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);}
.mdd_c00148{transform:matrix(0.194923,-0.004288,0.005499,0.249940,0,0);-ms-transform:matrix(0.194923,-0.004288,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194923,-0.004288,0.005499,0.249940,0,0);}
.m2b_c00148{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);}
.m3d_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);}
.m31_c00148{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);}
.m88_c00148{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);}
.m58_c00148{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);}
.m81_c00148{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);}
.m41_c00148{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);}
.ma9_c00148{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);}
.mec_c00148{transform:matrix(0.199147,-0.004381,0.005499,0.249940,0,0);-ms-transform:matrix(0.199147,-0.004381,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199147,-0.004381,0.005499,0.249940,0,0);}
.mb6_c00148{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);}
.m42_c00148{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);}
.md4_c00148{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);}
.me6_c00148{transform:matrix(0.200172,-0.004404,0.005499,0.249940,0,0);-ms-transform:matrix(0.200172,-0.004404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200172,-0.004404,0.005499,0.249940,0,0);}
.m7d_c00148{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);}
.maa_c00148{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);}
.m17_c00148{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);}
.m53_c00148{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);}
.m6c_c00148{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);}
.m70_c00148{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);}
.m9c_c00148{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);}
.me_c00148{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);}
.mcd_c00148{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);}
.maf_c00148{transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);-ms-transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);}
.me5_c00148{transform:matrix(0.202416,-0.004453,0.005499,0.249940,0,0);-ms-transform:matrix(0.202416,-0.004453,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202416,-0.004453,0.005499,0.249940,0,0);}
.m21_c00148{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);}
.m7_c00148{transform:matrix(0.202763,-0.002230,0.002750,0.249985,0,0);-ms-transform:matrix(0.202763,-0.002230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202763,-0.002230,0.002750,0.249985,0,0);}
.m78_c00148{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);}
.m2d_c00148{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);}
.m6a_c00148{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);}
.me0_c00148{transform:matrix(0.203741,-0.004482,0.005499,0.249940,0,0);-ms-transform:matrix(0.203741,-0.004482,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203741,-0.004482,0.005499,0.249940,0,0);}
.m79_c00148{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);}
.mc_c00148{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);}
.m3c_c00148{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);}
.md2_c00148{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);}
.m27_c00148{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);}
.m1f_c00148{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);}
.m38_c00148{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);}
.m1d_c00148{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);}
.m3f_c00148{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);}
.md0_c00148{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);}
.mf3_c00148{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);}
.m8a_c00148{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);}
.m1c_c00148{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);}
.mfc_c00148{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);}
.mde_c00148{transform:matrix(0.209469,-0.004608,0.005499,0.249940,0,0);-ms-transform:matrix(0.209469,-0.004608,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209469,-0.004608,0.005499,0.249940,0,0);}
.me8_c00148{transform:matrix(0.209864,-0.004617,0.005499,0.249940,0,0);-ms-transform:matrix(0.209864,-0.004617,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209864,-0.004617,0.005499,0.249940,0,0);}
.mbc_c00148{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);}
.m43_c00148{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);}
.m44_c00148{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);}
.me7_c00148{transform:matrix(0.211494,-0.004653,0.005499,0.249940,0,0);-ms-transform:matrix(0.211494,-0.004653,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211494,-0.004653,0.005499,0.249940,0,0);}
.m83_c00148{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);}
.mf7_c00148{transform:matrix(0.212602,-0.005953,0.006997,0.249902,0,0);-ms-transform:matrix(0.212602,-0.005953,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212602,-0.005953,0.006997,0.249902,0,0);}
.ma7_c00148{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);}
.m8d_c00148{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);}
.m86_c00148{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);}
.mfa_c00148{transform:matrix(0.213396,-0.005975,0.006997,0.249902,0,0);-ms-transform:matrix(0.213396,-0.005975,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213396,-0.005975,0.006997,0.249902,0,0);}
.m51_c00148{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);}
.m2f_c00148{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);}
.me9_c00148{transform:matrix(0.215753,-0.004747,0.005499,0.249940,0,0);-ms-transform:matrix(0.215753,-0.004747,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215753,-0.004747,0.005499,0.249940,0,0);}
.mb0_c00148{transform:matrix(0.215759,-0.002158,0.002500,0.249988,0,0);-ms-transform:matrix(0.215759,-0.002158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215759,-0.002158,0.002500,0.249988,0,0);}
.m28_c00148{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);}
.m92_c00148{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);}
.m94_c00148{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);}
.m82_c00148{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);}
.m1e_c00148{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);}
.m6e_c00148{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);}
.mce_c00148{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);}
.m24_c00148{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);}
.m46_c00148{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);}
.m36_c00148{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);}
.mbf_c00148{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);}
.meb_c00148{transform:matrix(0.222321,-0.004891,0.005499,0.249940,0,0);-ms-transform:matrix(0.222321,-0.004891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222321,-0.004891,0.005499,0.249940,0,0);}
.m9b_c00148{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);}
.m45_c00148{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);}
.m23_c00148{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);}
.m3b_c00148{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);}
.m73_c00148{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);}
.m2_c00148{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);}
.md3_c00148{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);}
.m10_c00148{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);}
.m5f_c00148{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);}
.me1_c00148{transform:matrix(0.229589,-0.005051,0.005499,0.249940,0,0);-ms-transform:matrix(0.229589,-0.005051,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229589,-0.005051,0.005499,0.249940,0,0);}
.m26_c00148{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);}
.m66_c00148{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);}
.m4a_c00148{transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);}
.md5_c00148{transform:matrix(0.234581,-0.006099,0.006498,0.249916,0,0);-ms-transform:matrix(0.234581,-0.006099,0.006498,0.249916,0,0);-webkit-transform:matrix(0.234581,-0.006099,0.006498,0.249916,0,0);}
.m2c_c00148{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);}
.mf8_c00148{transform:matrix(0.236262,-0.006615,0.006997,0.249902,0,0);-ms-transform:matrix(0.236262,-0.006615,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236262,-0.006615,0.006997,0.249902,0,0);}
.ma3_c00148{transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);}
.mf2_c00148{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);}
.m30_c00148{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);}
.m55_c00148{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);}
.ma_c00148{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);}
.m74_c00148{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);}
.m4_c00148{transform:matrix(0.239496,-0.002634,0.002750,0.249985,0,0);-ms-transform:matrix(0.239496,-0.002634,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239496,-0.002634,0.002750,0.249985,0,0);}
.m4e_c00148{transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);}
.md1_c00148{transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.240770,-0.002648,0.002750,0.249985,0,0);-ms-transform:matrix(0.240770,-0.002648,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240770,-0.002648,0.002750,0.249985,0,0);}
.m9_c00148{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);}
.m2a_c00148{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);}
.m8c_c00148{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);}
.m25_c00148{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);}
.m3_c00148{transform:matrix(0.252975,-0.002783,0.002750,0.249985,0,0);-ms-transform:matrix(0.252975,-0.002783,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252975,-0.002783,0.002750,0.249985,0,0);}
.m97_c00148{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);}
.m3a_c00148{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.mf9_c00148{transform:matrix(0.253990,-0.007112,0.006997,0.249902,0,0);-ms-transform:matrix(0.253990,-0.007112,0.006997,0.249902,0,0);-webkit-transform:matrix(0.253990,-0.007112,0.006997,0.249902,0,0);}
.m50_c00148{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);}
.mf_c00148{transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);}
.m90_c00148{transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260235,0.000000,0.000000,0.250000,0,0);}
.mfd_c00148{transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{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);}
.mee_c00148{transform:matrix(0.273739,-0.006022,0.005499,0.249940,0,0);-ms-transform:matrix(0.273739,-0.006022,0.005499,0.249940,0,0);-webkit-transform:matrix(0.273739,-0.006022,0.005499,0.249940,0,0);}
.m5_c00148{transform:matrix(0.278468,-0.003063,0.002750,0.249985,0,0);-ms-transform:matrix(0.278468,-0.003063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278468,-0.003063,0.002750,0.249985,0,0);}
.m8e_c00148{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292460,0.000000,0.000000,0.250000,0,0);}
.md_c00148{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);}
.med_c00148{transform:matrix(0.301097,-0.006624,0.005499,0.249940,0,0);-ms-transform:matrix(0.301097,-0.006624,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301097,-0.006624,0.005499,0.249940,0,0);}
.mf0_c00148{transform:matrix(0.303142,-0.006669,0.005499,0.249940,0,0);-ms-transform:matrix(0.303142,-0.006669,0.005499,0.249940,0,0);-webkit-transform:matrix(0.303142,-0.006669,0.005499,0.249940,0,0);}
.m6_c00148{transform:matrix(0.305497,-0.003360,0.002750,0.249985,0,0);-ms-transform:matrix(0.305497,-0.003360,0.002750,0.249985,0,0);-webkit-transform:matrix(0.305497,-0.003360,0.002750,0.249985,0,0);}
.mbe_c00148{transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);}
.mf1_c00148{transform:matrix(0.313559,-0.006898,0.005499,0.249940,0,0);-ms-transform:matrix(0.313559,-0.006898,0.005499,0.249940,0,0);-webkit-transform:matrix(0.313559,-0.006898,0.005499,0.249940,0,0);}
.ma4_c00148{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);}
.mbd_c00148{transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320840,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{transform:matrix(0.344286,-0.005164,0.003750,0.249972,0,0);-ms-transform:matrix(0.344286,-0.005164,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344286,-0.005164,0.003750,0.249972,0,0);}
.m35_c00148{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);}
.m0_c00148{transform:matrix(0.364343,-0.004008,0.002750,0.249985,0,0);-ms-transform:matrix(0.364343,-0.004008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.364343,-0.004008,0.002750,0.249985,0,0);}
.m4d_c00148{transform:matrix(0.365065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365065,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{transform:matrix(0.365115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365115,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(0.392705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00148{transform:matrix(0.450120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450120,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{transform:matrix(0.459043,-0.006886,0.003750,0.249972,0,0);-ms-transform:matrix(0.459043,-0.006886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.459043,-0.006886,0.003750,0.249972,0,0);}
.m52_c00148{transform:matrix(0.476040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476040,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.485880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485880,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.521345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521345,0.000000,0.000000,0.250000,0,0);}
.mc9_c00148{transform:matrix(1.035255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035255,0.000000,0.000000,0.250000,0,0);}
.m69_c00148{transform:matrix(1.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.239805,0.000000,0.000000,0.250000,0,0);}
.mc8_c00148{transform:matrix(10.744225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.744225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.744225,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;}
._0_c00148{width:41.893362px;}
.fc0_c00148{color:transparent;}
.fsf_c00148{font-size:22.050000px;}
.fsb_c00148{font-size:24.150000px;}
.fs1b_c00148{font-size:28.350000px;}
.fsa_c00148{font-size:43.050000px;}
.fs6_c00148{font-size:45.150000px;}
.fs20_c00148{font-size:47.261433px;}
.fs1d_c00148{font-size:48.300000px;}
.fs5_c00148{font-size:49.350000px;}
.fs7_c00148{font-size:50.400000px;}
.fsc_c00148{font-size:51.450000px;}
.fs1f_c00148{font-size:51.462449px;}
.fs21_c00148{font-size:52.520576px;}
.fs8_c00148{font-size:53.550000px;}
.fs1c_c00148{font-size:54.600000px;}
.fse_c00148{font-size:57.750000px;}
.fs1e_c00148{font-size:57.769516px;}
.fsd_c00148{font-size:58.800000px;}
.fs4_c00148{font-size:59.850000px;}
.fs3_c00148{font-size:60.900000px;}
.fs9_c00148{font-size:61.950000px;}
.fs16_c00148{font-size:64.050000px;}
.fs2_c00148{font-size:65.100000px;}
.fs15_c00148{font-size:67.200000px;}
.fs17_c00148{font-size:68.250000px;}
.fs14_c00148{font-size:69.300000px;}
.fs11_c00148{font-size:70.350000px;}
.fs10_c00148{font-size:71.400000px;}
.fs22_c00148{font-size:73.500000px;}
.fs18_c00148{font-size:75.603780px;}
.fs19_c00148{font-size:76.650000px;}
.fs1a_c00148{font-size:89.250000px;}
.fs12_c00148{font-size:92.410394px;}
.fs1_c00148{font-size:107.106479px;}
.fs13_c00148{font-size:118.663347px;}
.fs0_c00148{font-size:140.708512px;}
.y0_c00148{bottom:0.000000px;}
.y13_c00148{bottom:143.274000px;}
.y18_c00148{bottom:164.457000px;}
.y63_c00148{bottom:172.926000px;}
.y17_c00148{bottom:182.271000px;}
.y5f_c00148{bottom:190.087500px;}
.y60_c00148{bottom:191.502984px;}
.y61_c00148{bottom:192.742992px;}
.y62_c00148{bottom:195.018930px;}
.y12_c00148{bottom:199.978500px;}
.y5e_c00148{bottom:212.089500px;}
.y11_c00148{bottom:217.524000px;}
.y58_c00148{bottom:229.499220px;}
.y59_c00148{bottom:230.333025px;}
.y5a_c00148{bottom:232.896486px;}
.y5b_c00148{bottom:233.416965px;}
.y5c_c00148{bottom:234.561342px;}
.y10_c00148{bottom:234.732000px;}
.y5d_c00148{bottom:235.121892px;}
.y4f_c00148{bottom:247.323198px;}
.y50_c00148{bottom:247.560861px;}
.y51_c00148{bottom:248.345832px;}
.y52_c00148{bottom:249.026367px;}
.y53_c00148{bottom:249.273582px;}
.y54_c00148{bottom:249.806949px;}
.y55_c00148{bottom:251.065794px;}
.y56_c00148{bottom:251.335596px;}
.y57_c00148{bottom:252.450408px;}
.yf_c00148{bottom:252.963000px;}
.y47_c00148{bottom:265.681500px;}
.y48_c00148{bottom:265.872306px;}
.y49_c00148{bottom:266.775219px;}
.y4a_c00148{bottom:267.667176px;}
.y4b_c00148{bottom:268.581573px;}
.y4c_c00148{bottom:269.081061px;}
.y4d_c00148{bottom:270.124950px;}
.y4e_c00148{bottom:270.572034px;}
.ye_c00148{bottom:270.787500px;}
.y40_c00148{bottom:282.967500px;}
.y41_c00148{bottom:283.591890px;}
.y42_c00148{bottom:284.842854px;}
.y43_c00148{bottom:286.042338px;}
.y44_c00148{bottom:286.519737px;}
.y45_c00148{bottom:287.587713px;}
.y46_c00148{bottom:288.127902px;}
.yd_c00148{bottom:288.718500px;}
.y3c_c00148{bottom:305.377500px;}
.yc_c00148{bottom:306.138000px;}
.y3d_c00148{bottom:306.456000px;}
.y3e_c00148{bottom:307.083000px;}
.y3f_c00148{bottom:308.418000px;}
.y35_c00148{bottom:323.196000px;}
.y16_c00148{bottom:323.617500px;}
.y36_c00148{bottom:324.105000px;}
.y37_c00148{bottom:324.721500px;}
.y38_c00148{bottom:325.098000px;}
.y39_c00148{bottom:326.325000px;}
.y3a_c00148{bottom:327.691500px;}
.y3b_c00148{bottom:328.146000px;}
.y33_c00148{bottom:341.823000px;}
.y34_c00148{bottom:346.795500px;}
.y32_c00148{bottom:364.834500px;}
.y31_c00148{bottom:387.027000px;}
.y30_c00148{bottom:409.957500px;}
.y28_c00148{bottom:431.191500px;}
.y29_c00148{bottom:431.863770px;}
.y2a_c00148{bottom:432.117390px;}
.y2b_c00148{bottom:432.328305px;}
.y2c_c00148{bottom:433.094445px;}
.y2d_c00148{bottom:433.396995px;}
.y2e_c00148{bottom:433.747950px;}
.y2f_c00148{bottom:433.986105px;}
.y27_c00148{bottom:455.049000px;}
.y26_c00148{bottom:478.188000px;}
.y25_c00148{bottom:501.048000px;}
.y24_c00148{bottom:523.285500px;}
.y23_c00148{bottom:545.763000px;}
.yb_c00148{bottom:567.406500px;}
.y22_c00148{bottom:568.840500px;}
.y15_c00148{bottom:593.190000px;}
.ya_c00148{bottom:611.515500px;}
.y20_c00148{bottom:634.072500px;}
.y14_c00148{bottom:634.770000px;}
.y21_c00148{bottom:635.853000px;}
.y1f_c00148{bottom:658.264500px;}
.y1e_c00148{bottom:693.358792px;}
.y1c_c00148{bottom:731.703000px;}
.y1d_c00148{bottom:733.995660px;}
.y1b_c00148{bottom:798.156000px;}
.y1a_c00148{bottom:820.741500px;}
.y19_c00148{bottom:846.316500px;}
.y8_c00148{bottom:888.570615px;}
.y9_c00148{bottom:895.135533px;}
.y1_c00148{bottom:903.423000px;}
.y2_c00148{bottom:904.533912px;}
.y3_c00148{bottom:905.166456px;}
.y4_c00148{bottom:905.763657px;}
.y5_c00148{bottom:907.135681px;}
.y6_c00148{bottom:907.732718px;}
.y7_c00148{bottom:908.505000px;}
.y64_c00148{bottom:909.090000px;}
.h11_c00148{height:22.050000px;}
.hd_c00148{height:24.150000px;}
.h1d_c00148{height:28.350000px;}
.hc_c00148{height:43.050000px;}
.h8_c00148{height:45.150000px;}
.h22_c00148{height:47.261433px;}
.h1f_c00148{height:48.300000px;}
.h7_c00148{height:49.350000px;}
.h9_c00148{height:50.400000px;}
.he_c00148{height:51.450000px;}
.h21_c00148{height:51.462449px;}
.h23_c00148{height:52.520576px;}
.ha_c00148{height:53.550000px;}
.h1e_c00148{height:54.600000px;}
.h10_c00148{height:57.750000px;}
.h20_c00148{height:57.769516px;}
.hf_c00148{height:58.800000px;}
.h6_c00148{height:59.850000px;}
.h5_c00148{height:60.900000px;}
.hb_c00148{height:61.950000px;}
.h18_c00148{height:64.050000px;}
.h4_c00148{height:65.100000px;}
.h17_c00148{height:67.200000px;}
.h19_c00148{height:68.250000px;}
.h16_c00148{height:69.300000px;}
.h13_c00148{height:70.350000px;}
.h12_c00148{height:71.400000px;}
.h24_c00148{height:73.500000px;}
.h1a_c00148{height:75.603780px;}
.h1b_c00148{height:76.650000px;}
.h1c_c00148{height:89.250000px;}
.h14_c00148{height:92.410394px;}
.h3_c00148{height:107.106479px;}
.h15_c00148{height:118.663347px;}
.h2_c00148{height:140.708512px;}
.h1_c00148{height:1005.000000px;}
.h0_c00148{height:1005.150000px;}
.w0_c00148{width:705.450000px;}
.w1_c00148{width:705.750000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:43.806000px;}
.x8_c00148{left:47.434796px;}
.x3c_c00148{left:60.480000px;}
.x28_c00148{left:89.640000px;}
.x11_c00148{left:91.800000px;}
.x12_c00148{left:99.090000px;}
.x22_c00148{left:100.170000px;}
.x37_c00148{left:101.250000px;}
.x82_c00148{left:102.795000px;}
.xa_c00148{left:111.240000px;}
.x29_c00148{left:113.130000px;}
.x3d_c00148{left:116.640000px;}
.x1d_c00148{left:120.150000px;}
.x7f_c00148{left:123.660000px;}
.x2a_c00148{left:128.520000px;}
.x30_c00148{left:130.680000px;}
.x4a_c00148{left:132.570000px;}
.xb_c00148{left:133.650000px;}
.x66_c00148{left:134.730000px;}
.x23_c00148{left:136.620000px;}
.x1e_c00148{left:139.590000px;}
.x31_c00148{left:142.020000px;}
.x2_c00148{left:144.798000px;}
.x2b_c00148{left:147.960000px;}
.x42_c00148{left:153.630000px;}
.x19_c00148{left:154.710000px;}
.xc_c00148{left:156.330000px;}
.x51_c00148{left:161.190000px;}
.x38_c00148{left:162.540000px;}
.x10_c00148{left:163.890000px;}
.x43_c00148{left:168.210000px;}
.x4f_c00148{left:172.530000px;}
.x67_c00148{left:173.880000px;}
.x32_c00148{left:177.660000px;}
.x4b_c00148{left:179.550000px;}
.x2c_c00148{left:182.250000px;}
.x24_c00148{left:183.330000px;}
.x1f_c00148{left:185.490000px;}
.x39_c00148{left:191.970000px;}
.xd_c00148{left:193.050000px;}
.x25_c00148{left:196.290000px;}
.x75_c00148{left:197.502000px;}
.x3_c00148{left:202.302000px;}
.x72_c00148{left:206.010000px;}
.x13_c00148{left:207.360000px;}
.x44_c00148{left:211.680000px;}
.x3e_c00148{left:213.300000px;}
.x14_c00148{left:217.350000px;}
.x33_c00148{left:218.430000px;}
.x1a_c00148{left:219.780000px;}
.x76_c00148{left:222.864000px;}
.xe_c00148{left:225.990000px;}
.x4c_c00148{left:227.070000px;}
.x5a_c00148{left:229.452000px;}
.x15_c00148{left:231.120000px;}
.x45_c00148{left:232.470000px;}
.x7a_c00148{left:233.820000px;}
.x80_c00148{left:236.790000px;}
.x1b_c00148{left:241.380000px;}
.x16_c00148{left:243.810000px;}
.x34_c00148{left:244.890000px;}
.x26_c00148{left:246.240000px;}
.x46_c00148{left:250.560000px;}
.xf_c00148{left:251.640000px;}
.x5b_c00148{left:253.530000px;}
.x3f_c00148{left:254.610000px;}
.x4_c00148{left:256.593000px;}
.x7b_c00148{left:259.740000px;}
.x27_c00148{left:263.790000px;}
.x17_c00148{left:265.680000px;}
.x5d_c00148{left:268.650000px;}
.x35_c00148{left:270.270000px;}
.x81_c00148{left:273.510000px;}
.x1c_c00148{left:275.670000px;}
.x2d_c00148{left:278.640000px;}
.x61_c00148{left:279.720000px;}
.x7e_c00148{left:281.070000px;}
.x47_c00148{left:283.770000px;}
.x20_c00148{left:285.930000px;}
.x3a_c00148{left:288.630000px;}
.x4d_c00148{left:289.980000px;}
.x18_c00148{left:293.760000px;}
.x2e_c00148{left:297.540000px;}
.x21_c00148{left:301.860000px;}
.x3b_c00148{left:302.940000px;}
.x36_c00148{left:304.290000px;}
.x52_c00148{left:305.370000px;}
.x4e_c00148{left:307.260000px;}
.x2f_c00148{left:308.340000px;}
.x48_c00148{left:314.820000px;}
.x41_c00148{left:316.170000px;}
.x77_c00148{left:320.569500px;}
.x68_c00148{left:325.620000px;}
.x56_c00148{left:331.830000px;}
.x49_c00148{left:333.990000px;}
.x40_c00148{left:335.880000px;}
.x87_c00148{left:338.850000px;}
.x6d_c00148{left:341.280000px;}
.x53_c00148{left:345.600000px;}
.x90_c00148{left:347.695500px;}
.x95_c00148{left:349.351458px;}
.x78_c00148{left:350.824500px;}
.x5e_c00148{left:354.510000px;}
.x8a_c00148{left:358.030500px;}
.x69_c00148{left:360.180000px;}
.x62_c00148{left:366.390000px;}
.x73_c00148{left:369.630000px;}
.x9d_c00148{left:376.119000px;}
.x5c_c00148{left:377.190000px;}
.x6e_c00148{left:378.540000px;}
.x5_c00148{left:381.322500px;}
.x6a_c00148{left:385.290000px;}
.x5f_c00148{left:386.910000px;}
.x91_c00148{left:388.737000px;}
.x7c_c00148{left:392.580000px;}
.x88_c00148{left:402.012000px;}
.x54_c00148{left:405.270000px;}
.x57_c00148{left:406.620000px;}
.x50_c00148{left:407.700000px;}
.x79_c00148{left:409.735500px;}
.x74_c00148{left:413.910000px;}
.x6b_c00148{left:414.990000px;}
.x63_c00148{left:417.690000px;}
.x83_c00148{left:421.375500px;}
.x9b_c00148{left:422.550000px;}
.x9e_c00148{left:426.672000px;}
.x8b_c00148{left:430.159500px;}
.x6_c00148{left:435.598500px;}
.x58_c00148{left:438.480000px;}
.x6f_c00148{left:440.640000px;}
.x96_c00148{left:442.851300px;}
.x55_c00148{left:446.040000px;}
.x64_c00148{left:449.280000px;}
.x89_c00148{left:451.467000px;}
.x59_c00148{left:456.570000px;}
.x9c_c00148{left:461.160000px;}
.x97_c00148{left:465.417567px;}
.x84_c00148{left:470.464500px;}
.x70_c00148{left:472.770000px;}
.x8c_c00148{left:476.293500px;}
.x98_c00148{left:484.709955px;}
.x60_c00148{left:487.620000px;}
.x6c_c00148{left:488.700000px;}
.x92_c00148{left:493.548000px;}
.x8d_c00148{left:494.655000px;}
.x7_c00148{left:505.806000px;}
.x65_c00148{left:517.320000px;}
.x7d_c00148{left:519.480000px;}
.x85_c00148{left:525.105000px;}
.x99_c00148{left:527.108802px;}
.x71_c00148{left:531.360000px;}
.x8e_c00148{left:535.731000px;}
.x93_c00148{left:540.997500px;}
.x86_c00148{left:543.312000px;}
.x9a_c00148{left:547.881525px;}
.x9_c00148{left:552.461691px;}
.x8f_c00148{left:556.507500px;}
.x9f_c00148{left:558.090000px;}
.x94_c00148{left:561.319500px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
._0_c00148{width:37.238544pt;}
.fsf_c00148{font-size:19.600000pt;}
.fsb_c00148{font-size:21.466667pt;}
.fs1b_c00148{font-size:25.200000pt;}
.fsa_c00148{font-size:38.266667pt;}
.fs6_c00148{font-size:40.133333pt;}
.fs20_c00148{font-size:42.010163pt;}
.fs1d_c00148{font-size:42.933333pt;}
.fs5_c00148{font-size:43.866667pt;}
.fs7_c00148{font-size:44.800000pt;}
.fsc_c00148{font-size:45.733333pt;}
.fs1f_c00148{font-size:45.744399pt;}
.fs21_c00148{font-size:46.684956pt;}
.fs8_c00148{font-size:47.600000pt;}
.fs1c_c00148{font-size:48.533333pt;}
.fse_c00148{font-size:51.333333pt;}
.fs1e_c00148{font-size:51.350681pt;}
.fsd_c00148{font-size:52.266667pt;}
.fs4_c00148{font-size:53.200000pt;}
.fs3_c00148{font-size:54.133333pt;}
.fs9_c00148{font-size:55.066667pt;}
.fs16_c00148{font-size:56.933333pt;}
.fs2_c00148{font-size:57.866667pt;}
.fs15_c00148{font-size:59.733333pt;}
.fs17_c00148{font-size:60.666667pt;}
.fs14_c00148{font-size:61.600000pt;}
.fs11_c00148{font-size:62.533333pt;}
.fs10_c00148{font-size:63.466667pt;}
.fs22_c00148{font-size:65.333333pt;}
.fs18_c00148{font-size:67.203360pt;}
.fs19_c00148{font-size:68.133333pt;}
.fs1a_c00148{font-size:79.333333pt;}
.fs12_c00148{font-size:82.142573pt;}
.fs1_c00148{font-size:95.205759pt;}
.fs13_c00148{font-size:105.478531pt;}
.fs0_c00148{font-size:125.074233pt;}
.y0_c00148{bottom:0.000000pt;}
.y13_c00148{bottom:127.354667pt;}
.y18_c00148{bottom:146.184000pt;}
.y63_c00148{bottom:153.712000pt;}
.y17_c00148{bottom:162.018667pt;}
.y5f_c00148{bottom:168.966667pt;}
.y60_c00148{bottom:170.224875pt;}
.y61_c00148{bottom:171.327104pt;}
.y62_c00148{bottom:173.350160pt;}
.y12_c00148{bottom:177.758667pt;}
.y5e_c00148{bottom:188.524000pt;}
.y11_c00148{bottom:193.354667pt;}
.y58_c00148{bottom:203.999307pt;}
.y59_c00148{bottom:204.740467pt;}
.y5a_c00148{bottom:207.019099pt;}
.y5b_c00148{bottom:207.481747pt;}
.y5c_c00148{bottom:208.498971pt;}
.y10_c00148{bottom:208.650667pt;}
.y5d_c00148{bottom:208.997237pt;}
.y4f_c00148{bottom:219.842843pt;}
.y50_c00148{bottom:220.054099pt;}
.y51_c00148{bottom:220.751851pt;}
.y52_c00148{bottom:221.356771pt;}
.y53_c00148{bottom:221.576517pt;}
.y54_c00148{bottom:222.050621pt;}
.y55_c00148{bottom:223.169595pt;}
.y56_c00148{bottom:223.409419pt;}
.y57_c00148{bottom:224.400363pt;}
.yf_c00148{bottom:224.856000pt;}
.y47_c00148{bottom:236.161333pt;}
.y48_c00148{bottom:236.330939pt;}
.y49_c00148{bottom:237.133528pt;}
.y4a_c00148{bottom:237.926379pt;}
.y4b_c00148{bottom:238.739176pt;}
.y4c_c00148{bottom:239.183165pt;}
.y4d_c00148{bottom:240.111067pt;}
.y4e_c00148{bottom:240.508475pt;}
.ye_c00148{bottom:240.700000pt;}
.y40_c00148{bottom:251.526667pt;}
.y41_c00148{bottom:252.081680pt;}
.y42_c00148{bottom:253.193648pt;}
.y43_c00148{bottom:254.259856pt;}
.y44_c00148{bottom:254.684211pt;}
.y45_c00148{bottom:255.633523pt;}
.y46_c00148{bottom:256.113691pt;}
.yd_c00148{bottom:256.638667pt;}
.y3c_c00148{bottom:271.446667pt;}
.yc_c00148{bottom:272.122667pt;}
.y3d_c00148{bottom:272.405333pt;}
.y3e_c00148{bottom:272.962667pt;}
.y3f_c00148{bottom:274.149333pt;}
.y35_c00148{bottom:287.285333pt;}
.y16_c00148{bottom:287.660000pt;}
.y36_c00148{bottom:288.093333pt;}
.y37_c00148{bottom:288.641333pt;}
.y38_c00148{bottom:288.976000pt;}
.y39_c00148{bottom:290.066667pt;}
.y3a_c00148{bottom:291.281333pt;}
.y3b_c00148{bottom:291.685333pt;}
.y33_c00148{bottom:303.842667pt;}
.y34_c00148{bottom:308.262667pt;}
.y32_c00148{bottom:324.297333pt;}
.y31_c00148{bottom:344.024000pt;}
.y30_c00148{bottom:364.406667pt;}
.y28_c00148{bottom:383.281333pt;}
.y29_c00148{bottom:383.878907pt;}
.y2a_c00148{bottom:384.104347pt;}
.y2b_c00148{bottom:384.291827pt;}
.y2c_c00148{bottom:384.972840pt;}
.y2d_c00148{bottom:385.241773pt;}
.y2e_c00148{bottom:385.553733pt;}
.y2f_c00148{bottom:385.765427pt;}
.y27_c00148{bottom:404.488000pt;}
.y26_c00148{bottom:425.056000pt;}
.y25_c00148{bottom:445.376000pt;}
.y24_c00148{bottom:465.142667pt;}
.y23_c00148{bottom:485.122667pt;}
.yb_c00148{bottom:504.361333pt;}
.y22_c00148{bottom:505.636000pt;}
.y15_c00148{bottom:527.280000pt;}
.ya_c00148{bottom:543.569333pt;}
.y20_c00148{bottom:563.620000pt;}
.y14_c00148{bottom:564.240000pt;}
.y21_c00148{bottom:565.202667pt;}
.y1f_c00148{bottom:585.124000pt;}
.y1e_c00148{bottom:616.318927pt;}
.y1c_c00148{bottom:650.402667pt;}
.y1d_c00148{bottom:652.440587pt;}
.y1b_c00148{bottom:709.472000pt;}
.y1a_c00148{bottom:729.548000pt;}
.y19_c00148{bottom:752.281333pt;}
.y8_c00148{bottom:789.840547pt;}
.y9_c00148{bottom:795.676029pt;}
.y1_c00148{bottom:803.042667pt;}
.y2_c00148{bottom:804.030144pt;}
.y3_c00148{bottom:804.592405pt;}
.y4_c00148{bottom:805.123251pt;}
.y5_c00148{bottom:806.342828pt;}
.y6_c00148{bottom:806.873527pt;}
.y7_c00148{bottom:807.560000pt;}
.y64_c00148{bottom:808.080000pt;}
.h11_c00148{height:19.600000pt;}
.hd_c00148{height:21.466667pt;}
.h1d_c00148{height:25.200000pt;}
.hc_c00148{height:38.266667pt;}
.h8_c00148{height:40.133333pt;}
.h22_c00148{height:42.010163pt;}
.h1f_c00148{height:42.933333pt;}
.h7_c00148{height:43.866667pt;}
.h9_c00148{height:44.800000pt;}
.he_c00148{height:45.733333pt;}
.h21_c00148{height:45.744399pt;}
.h23_c00148{height:46.684956pt;}
.ha_c00148{height:47.600000pt;}
.h1e_c00148{height:48.533333pt;}
.h10_c00148{height:51.333333pt;}
.h20_c00148{height:51.350681pt;}
.hf_c00148{height:52.266667pt;}
.h6_c00148{height:53.200000pt;}
.h5_c00148{height:54.133333pt;}
.hb_c00148{height:55.066667pt;}
.h18_c00148{height:56.933333pt;}
.h4_c00148{height:57.866667pt;}
.h17_c00148{height:59.733333pt;}
.h19_c00148{height:60.666667pt;}
.h16_c00148{height:61.600000pt;}
.h13_c00148{height:62.533333pt;}
.h12_c00148{height:63.466667pt;}
.h24_c00148{height:65.333333pt;}
.h1a_c00148{height:67.203360pt;}
.h1b_c00148{height:68.133333pt;}
.h1c_c00148{height:79.333333pt;}
.h14_c00148{height:82.142573pt;}
.h3_c00148{height:95.205759pt;}
.h15_c00148{height:105.478531pt;}
.h2_c00148{height:125.074233pt;}
.h1_c00148{height:893.333333pt;}
.h0_c00148{height:893.466667pt;}
.w0_c00148{width:627.066667pt;}
.w1_c00148{width:627.333333pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:38.938667pt;}
.x8_c00148{left:42.164263pt;}
.x3c_c00148{left:53.760000pt;}
.x28_c00148{left:79.680000pt;}
.x11_c00148{left:81.600000pt;}
.x12_c00148{left:88.080000pt;}
.x22_c00148{left:89.040000pt;}
.x37_c00148{left:90.000000pt;}
.x82_c00148{left:91.373333pt;}
.xa_c00148{left:98.880000pt;}
.x29_c00148{left:100.560000pt;}
.x3d_c00148{left:103.680000pt;}
.x1d_c00148{left:106.800000pt;}
.x7f_c00148{left:109.920000pt;}
.x2a_c00148{left:114.240000pt;}
.x30_c00148{left:116.160000pt;}
.x4a_c00148{left:117.840000pt;}
.xb_c00148{left:118.800000pt;}
.x66_c00148{left:119.760000pt;}
.x23_c00148{left:121.440000pt;}
.x1e_c00148{left:124.080000pt;}
.x31_c00148{left:126.240000pt;}
.x2_c00148{left:128.709333pt;}
.x2b_c00148{left:131.520000pt;}
.x42_c00148{left:136.560000pt;}
.x19_c00148{left:137.520000pt;}
.xc_c00148{left:138.960000pt;}
.x51_c00148{left:143.280000pt;}
.x38_c00148{left:144.480000pt;}
.x10_c00148{left:145.680000pt;}
.x43_c00148{left:149.520000pt;}
.x4f_c00148{left:153.360000pt;}
.x67_c00148{left:154.560000pt;}
.x32_c00148{left:157.920000pt;}
.x4b_c00148{left:159.600000pt;}
.x2c_c00148{left:162.000000pt;}
.x24_c00148{left:162.960000pt;}
.x1f_c00148{left:164.880000pt;}
.x39_c00148{left:170.640000pt;}
.xd_c00148{left:171.600000pt;}
.x25_c00148{left:174.480000pt;}
.x75_c00148{left:175.557333pt;}
.x3_c00148{left:179.824000pt;}
.x72_c00148{left:183.120000pt;}
.x13_c00148{left:184.320000pt;}
.x44_c00148{left:188.160000pt;}
.x3e_c00148{left:189.600000pt;}
.x14_c00148{left:193.200000pt;}
.x33_c00148{left:194.160000pt;}
.x1a_c00148{left:195.360000pt;}
.x76_c00148{left:198.101333pt;}
.xe_c00148{left:200.880000pt;}
.x4c_c00148{left:201.840000pt;}
.x5a_c00148{left:203.957333pt;}
.x15_c00148{left:205.440000pt;}
.x45_c00148{left:206.640000pt;}
.x7a_c00148{left:207.840000pt;}
.x80_c00148{left:210.480000pt;}
.x1b_c00148{left:214.560000pt;}
.x16_c00148{left:216.720000pt;}
.x34_c00148{left:217.680000pt;}
.x26_c00148{left:218.880000pt;}
.x46_c00148{left:222.720000pt;}
.xf_c00148{left:223.680000pt;}
.x5b_c00148{left:225.360000pt;}
.x3f_c00148{left:226.320000pt;}
.x4_c00148{left:228.082667pt;}
.x7b_c00148{left:230.880000pt;}
.x27_c00148{left:234.480000pt;}
.x17_c00148{left:236.160000pt;}
.x5d_c00148{left:238.800000pt;}
.x35_c00148{left:240.240000pt;}
.x81_c00148{left:243.120000pt;}
.x1c_c00148{left:245.040000pt;}
.x2d_c00148{left:247.680000pt;}
.x61_c00148{left:248.640000pt;}
.x7e_c00148{left:249.840000pt;}
.x47_c00148{left:252.240000pt;}
.x20_c00148{left:254.160000pt;}
.x3a_c00148{left:256.560000pt;}
.x4d_c00148{left:257.760000pt;}
.x18_c00148{left:261.120000pt;}
.x2e_c00148{left:264.480000pt;}
.x21_c00148{left:268.320000pt;}
.x3b_c00148{left:269.280000pt;}
.x36_c00148{left:270.480000pt;}
.x52_c00148{left:271.440000pt;}
.x4e_c00148{left:273.120000pt;}
.x2f_c00148{left:274.080000pt;}
.x48_c00148{left:279.840000pt;}
.x41_c00148{left:281.040000pt;}
.x77_c00148{left:284.950667pt;}
.x68_c00148{left:289.440000pt;}
.x56_c00148{left:294.960000pt;}
.x49_c00148{left:296.880000pt;}
.x40_c00148{left:298.560000pt;}
.x87_c00148{left:301.200000pt;}
.x6d_c00148{left:303.360000pt;}
.x53_c00148{left:307.200000pt;}
.x90_c00148{left:309.062667pt;}
.x95_c00148{left:310.534629pt;}
.x78_c00148{left:311.844000pt;}
.x5e_c00148{left:315.120000pt;}
.x8a_c00148{left:318.249333pt;}
.x69_c00148{left:320.160000pt;}
.x62_c00148{left:325.680000pt;}
.x73_c00148{left:328.560000pt;}
.x9d_c00148{left:334.328000pt;}
.x5c_c00148{left:335.280000pt;}
.x6e_c00148{left:336.480000pt;}
.x5_c00148{left:338.953333pt;}
.x6a_c00148{left:342.480000pt;}
.x5f_c00148{left:343.920000pt;}
.x91_c00148{left:345.544000pt;}
.x7c_c00148{left:348.960000pt;}
.x88_c00148{left:357.344000pt;}
.x54_c00148{left:360.240000pt;}
.x57_c00148{left:361.440000pt;}
.x50_c00148{left:362.400000pt;}
.x79_c00148{left:364.209333pt;}
.x74_c00148{left:367.920000pt;}
.x6b_c00148{left:368.880000pt;}
.x63_c00148{left:371.280000pt;}
.x83_c00148{left:374.556000pt;}
.x9b_c00148{left:375.600000pt;}
.x9e_c00148{left:379.264000pt;}
.x8b_c00148{left:382.364000pt;}
.x6_c00148{left:387.198667pt;}
.x58_c00148{left:389.760000pt;}
.x6f_c00148{left:391.680000pt;}
.x96_c00148{left:393.645600pt;}
.x55_c00148{left:396.480000pt;}
.x64_c00148{left:399.360000pt;}
.x89_c00148{left:401.304000pt;}
.x59_c00148{left:405.840000pt;}
.x9c_c00148{left:409.920000pt;}
.x97_c00148{left:413.704504pt;}
.x84_c00148{left:418.190667pt;}
.x70_c00148{left:420.240000pt;}
.x8c_c00148{left:423.372000pt;}
.x98_c00148{left:430.853293pt;}
.x60_c00148{left:433.440000pt;}
.x6c_c00148{left:434.400000pt;}
.x92_c00148{left:438.709333pt;}
.x8d_c00148{left:439.693333pt;}
.x7_c00148{left:449.605333pt;}
.x65_c00148{left:459.840000pt;}
.x7d_c00148{left:461.760000pt;}
.x85_c00148{left:466.760000pt;}
.x99_c00148{left:468.541157pt;}
.x71_c00148{left:472.320000pt;}
.x8e_c00148{left:476.205333pt;}
.x93_c00148{left:480.886667pt;}
.x86_c00148{left:482.944000pt;}
.x9a_c00148{left:487.005800pt;}
.x9_c00148{left:491.077059pt;}
.x8f_c00148{left:494.673333pt;}
.x9f_c00148{left:496.080000pt;}
.x94_c00148{left:498.950667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mbf_c00149{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);}
.m138_c00149{transform:matrix(0.035030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035030,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{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);}
.m13e_c00149{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);}
.m11f_c00149{transform:matrix(0.065740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065740,0.000000,0.000000,0.250000,0,0);}
.m148_c00149{transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{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);}
.mab_c00149{transform:matrix(0.075940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075940,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.085090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085090,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089015,0.000000,0.000000,0.250000,0,0);}
.mdc_c00149{transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);}
.mfb_c00149{transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.124015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124015,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.134320,-0.001612,0.003000,0.249982,0,0);-ms-transform:matrix(0.134320,-0.001612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.134320,-0.001612,0.003000,0.249982,0,0);}
.m13d_c00149{transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.145705,-0.001748,0.003000,0.249982,0,0);-ms-transform:matrix(0.145705,-0.001748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145705,-0.001748,0.003000,0.249982,0,0);}
.md8_c00149{transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{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);}
.md4_c00149{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);}
.m7e_c00149{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);}
.m33_c00149{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);}
.m11_c00149{transform:matrix(0.155799,-0.001870,0.003000,0.249982,0,0);-ms-transform:matrix(0.155799,-0.001870,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155799,-0.001870,0.003000,0.249982,0,0);}
.m2b_c00149{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);}
.m22_c00149{transform:matrix(0.156149,-0.001874,0.003000,0.249982,0,0);-ms-transform:matrix(0.156149,-0.001874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156149,-0.001874,0.003000,0.249982,0,0);}
.mb8_c00149{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);}
.m58_c00149{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);}
.mc1_c00149{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);}
.m3e_c00149{transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.163153,-0.001958,0.003000,0.249982,0,0);-ms-transform:matrix(0.163153,-0.001958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163153,-0.001958,0.003000,0.249982,0,0);}
.md6_c00149{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);}
.m59_c00149{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);}
.m8f_c00149{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{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);}
.m5b_c00149{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);}
.m105_c00149{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);}
.m3c_c00149{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);}
.m36_c00149{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);}
.m13_c00149{transform:matrix(0.166613,-0.001999,0.003000,0.249982,0,0);-ms-transform:matrix(0.166613,-0.001999,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166613,-0.001999,0.003000,0.249982,0,0);}
.m5a_c00149{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);}
.m77_c00149{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);}
.m14_c00149{transform:matrix(0.168193,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168193,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168193,-0.002018,0.003000,0.249982,0,0);}
.m38_c00149{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);}
.m23_c00149{transform:matrix(0.169903,-0.002039,0.003000,0.249982,0,0);-ms-transform:matrix(0.169903,-0.002039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169903,-0.002039,0.003000,0.249982,0,0);}
.m1c_c00149{transform:matrix(0.170438,-0.002045,0.003000,0.249982,0,0);-ms-transform:matrix(0.170438,-0.002045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170438,-0.002045,0.003000,0.249982,0,0);}
.m123_c00149{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{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);}
.m14c_c00149{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);}
.m81_c00149{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);}
.m24_c00149{transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);}
.mc0_c00149{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);}
.m8d_c00149{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);}
.m48_c00149{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);}
.mfa_c00149{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);}
.mb6_c00149{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);}
.md2_c00149{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);}
.me5_c00149{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);}
.m67_c00149{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);}
.m7_c00149{transform:matrix(0.174514,-0.001396,0.002000,0.249992,0,0);-ms-transform:matrix(0.174514,-0.001396,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174514,-0.001396,0.002000,0.249992,0,0);}
.m9d_c00149{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);}
.m2a_c00149{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);}
.m10c_c00149{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);}
.m4b_c00149{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{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);}
.m26_c00149{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);}
.md5_c00149{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);}
.m87_c00149{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);}
.m74_c00149{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);}
.m149_c00149{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);}
.m12d_c00149{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);}
.mc7_c00149{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);}
.m10a_c00149{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);}
.mc6_c00149{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);}
.m40_c00149{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);}
.m19_c00149{transform:matrix(0.178437,-0.002141,0.003000,0.249982,0,0);-ms-transform:matrix(0.178437,-0.002141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178437,-0.002141,0.003000,0.249982,0,0);}
.m106_c00149{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);}
.m145_c00149{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);}
.m50_c00149{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);}
.mbb_c00149{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.md7_c00149{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);}
.mc5_c00149{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);}
.me3_c00149{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);}
.m2d_c00149{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);}
.m28_c00149{transform:matrix(0.181637,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181637,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181637,-0.002180,0.003000,0.249982,0,0);}
.m102_c00149{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);}
.m5c_c00149{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.182687,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182687,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182687,-0.002192,0.003000,0.249982,0,0);}
.m9c_c00149{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);}
.m108_c00149{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);}
.mcd_c00149{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);}
.mb_c00149{transform:matrix(0.183179,-0.001465,0.002000,0.249992,0,0);-ms-transform:matrix(0.183179,-0.001465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183179,-0.001465,0.002000,0.249992,0,0);}
.m66_c00149{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);}
.m1e_c00149{transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);-ms-transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);}
.m146_c00149{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);}
.m92_c00149{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);}
.m2_c00149{transform:matrix(0.185504,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185504,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185504,-0.001484,0.002000,0.249992,0,0);}
.m93_c00149{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);}
.mbc_c00149{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);}
.m25_c00149{transform:matrix(0.187761,-0.002253,0.003000,0.249982,0,0);-ms-transform:matrix(0.187761,-0.002253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187761,-0.002253,0.003000,0.249982,0,0);}
.m11b_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);}
.m31_c00149{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);}
.m6d_c00149{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);}
.mde_c00149{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);}
.m43_c00149{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);}
.mcc_c00149{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);}
.m20_c00149{transform:matrix(0.190331,-0.002284,0.003000,0.249982,0,0);-ms-transform:matrix(0.190331,-0.002284,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190331,-0.002284,0.003000,0.249982,0,0);}
.m84_c00149{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{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);}
.m7b_c00149{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);}
.md_c00149{transform:matrix(0.190924,-0.001527,0.002000,0.249992,0,0);-ms-transform:matrix(0.190924,-0.001527,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190924,-0.001527,0.002000,0.249992,0,0);}
.m8e_c00149{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);}
.m75_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);}
.m71_c00149{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);}
.m15_c00149{transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);}
.m2e_c00149{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);}
.ma4_c00149{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);}
.m10f_c00149{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);}
.mc4_c00149{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);}
.m64_c00149{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);}
.m7c_c00149{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);}
.mc9_c00149{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);}
.m57_c00149{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);}
.m9a_c00149{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);}
.m34_c00149{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);}
.m9e_c00149{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);}
.m6b_c00149{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);}
.m54_c00149{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);}
.ma_c00149{transform:matrix(0.195984,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.195984,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195984,-0.001568,0.002000,0.249992,0,0);}
.mef_c00149{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);}
.m3b_c00149{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);}
.me4_c00149{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);}
.mb5_c00149{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);}
.m1d_c00149{transform:matrix(0.198056,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198056,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198056,-0.002377,0.003000,0.249982,0,0);}
.m12f_c00149{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);}
.m21_c00149{transform:matrix(0.198196,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198196,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198196,-0.002378,0.003000,0.249982,0,0);}
.m2c_c00149{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);}
.m80_c00149{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);}
.mad_c00149{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);}
.me0_c00149{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);}
.m42_c00149{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);}
.m47_c00149{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);}
.mf2_c00149{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);}
.m90_c00149{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);}
.m133_c00149{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);}
.mdf_c00149{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);}
.m103_c00149{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);}
.mb4_c00149{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);}
.m11e_c00149{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);}
.m12_c00149{transform:matrix(0.201096,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201096,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201096,-0.002413,0.003000,0.249982,0,0);}
.m8b_c00149{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);}
.m6e_c00149{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);}
.m37_c00149{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);}
.m96_c00149{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);}
.me_c00149{transform:matrix(0.202709,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202709,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202709,-0.001622,0.002000,0.249992,0,0);}
.m65_c00149{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);}
.m6c_c00149{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);}
.m99_c00149{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);}
.m7f_c00149{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);}
.m63_c00149{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);}
.mf3_c00149{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);}
.mb0_c00149{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);}
.m134_c00149{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);}
.ma8_c00149{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);}
.ma3_c00149{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);}
.mfd_c00149{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);}
.m4_c00149{transform:matrix(0.205143,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205143,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205143,-0.001641,0.002000,0.249992,0,0);}
.m4a_c00149{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);}
.mf_c00149{transform:matrix(0.205413,-0.001643,0.002000,0.249992,0,0);-ms-transform:matrix(0.205413,-0.001643,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205413,-0.001643,0.002000,0.249992,0,0);}
.m113_c00149{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);}
.m122_c00149{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);}
.m137_c00149{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);}
.m12c_c00149{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);}
.m140_c00149{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);}
.m45_c00149{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);}
.m12b_c00149{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.mb7_c00149{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);}
.m1_c00149{transform:matrix(0.206598,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206598,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206598,-0.001653,0.002000,0.249992,0,0);}
.mc_c00149{transform:matrix(0.206933,-0.001655,0.002000,0.249992,0,0);-ms-transform:matrix(0.206933,-0.001655,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206933,-0.001655,0.002000,0.249992,0,0);}
.m95_c00149{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);}
.md1_c00149{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);}
.m69_c00149{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);}
.mbe_c00149{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);}
.m78_c00149{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);}
.mc8_c00149{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);}
.meb_c00149{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);}
.m132_c00149{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);}
.m139_c00149{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);}
.m101_c00149{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);}
.mdd_c00149{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);}
.m79_c00149{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);}
.m130_c00149{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);}
.m86_c00149{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_c00149{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);}
.mf9_c00149{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);}
.m11c_c00149{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);}
.mda_c00149{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);}
.m68_c00149{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);}
.m1f_c00149{transform:matrix(0.213265,-0.002559,0.003000,0.249982,0,0);-ms-transform:matrix(0.213265,-0.002559,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213265,-0.002559,0.003000,0.249982,0,0);}
.m46_c00149{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);}
.m53_c00149{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);}
.md9_c00149{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);}
.mc3_c00149{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);}
.m4c_c00149{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);}
.mf0_c00149{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);}
.m7d_c00149{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);}
.mfe_c00149{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);}
.mc2_c00149{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);}
.m91_c00149{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);}
.maa_c00149{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);}
.m6_c00149{transform:matrix(0.218708,-0.001750,0.002000,0.249992,0,0);-ms-transform:matrix(0.218708,-0.001750,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218708,-0.001750,0.002000,0.249992,0,0);}
.mcf_c00149{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);}
.m98_c00149{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.219113,-0.001753,0.002000,0.249992,0,0);-ms-transform:matrix(0.219113,-0.001753,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219113,-0.001753,0.002000,0.249992,0,0);}
.m10b_c00149{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);}
.m51_c00149{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);}
.m125_c00149{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);}
.mf4_c00149{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);}
.m112_c00149{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);}
.m5_c00149{transform:matrix(0.221578,-0.001773,0.002000,0.249992,0,0);-ms-transform:matrix(0.221578,-0.001773,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221578,-0.001773,0.002000,0.249992,0,0);}
.m70_c00149{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);}
.m143_c00149{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);}
.m52_c00149{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_c00149{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);}
.m13b_c00149{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);}
.me9_c00149{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);}
.mce_c00149{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);}
.ma2_c00149{transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);}
.m135_c00149{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);}
.maf_c00149{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);}
.me1_c00149{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);}
.m0_c00149{transform:matrix(0.226513,-0.001812,0.002000,0.249992,0,0);-ms-transform:matrix(0.226513,-0.001812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226513,-0.001812,0.002000,0.249992,0,0);}
.m115_c00149{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);}
.me7_c00149{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);}
.m10_c00149{transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);-ms-transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);}
.m131_c00149{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_c00149{transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{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);}
.m35_c00149{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);}
.m6f_c00149{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.md3_c00149{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);}
.m147_c00149{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);}
.mae_c00149{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.m12a_c00149{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);}
.m76_c00149{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);}
.mf7_c00149{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);}
.m110_c00149{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);}
.m85_c00149{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);}
.m8_c00149{transform:matrix(0.233183,-0.001865,0.002000,0.249992,0,0);-ms-transform:matrix(0.233183,-0.001865,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233183,-0.001865,0.002000,0.249992,0,0);}
.m4f_c00149{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);}
.mcb_c00149{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);}
.m129_c00149{transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{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);}
.m3a_c00149{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m14f_c00149{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);}
.me2_c00149{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);}
.m94_c00149{transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{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);}
.m121_c00149{transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);}
.m104_c00149{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);}
.mbd_c00149{transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239395,0.000000,0.000000,0.250000,0,0);}
.mfc_c00149{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);}
.m100_c00149{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);}
.m12e_c00149{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);}
.m128_c00149{transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{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);}
.m6a_c00149{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);}
.m14e_c00149{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{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);}
.mdb_c00149{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);}
.m118_c00149{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{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);}
.mf1_c00149{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);}
.mf8_c00149{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.251707,-0.002014,0.002000,0.249992,0,0);-ms-transform:matrix(0.251707,-0.002014,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251707,-0.002014,0.002000,0.249992,0,0);}
.ma6_c00149{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{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);}
.m114_c00149{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);}
.m17_c00149{transform:matrix(0.253687,-0.003044,0.003000,0.249982,0,0);-ms-transform:matrix(0.253687,-0.003044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253687,-0.003044,0.003000,0.249982,0,0);}
.mff_c00149{transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);}
.m107_c00149{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);}
.m88_c00149{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);}
.m10d_c00149{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);}
.m11d_c00149{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);}
.ma0_c00149{transform:matrix(0.262040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262040,0.000000,0.000000,0.250000,0,0);}
.m117_c00149{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);}
.m109_c00149{transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);}
.m141_c00149{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);}
.mec_c00149{transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);}
.m10e_c00149{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.m116_c00149{transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);}
.mf5_c00149{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);}
.m13f_c00149{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);}
.ma7_c00149{transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273900,0.000000,0.000000,0.250000,0,0);}
.ma1_c00149{transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);}
.m119_c00149{transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{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);}
.m111_c00149{transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284080,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);}
.mf6_c00149{transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292895,0.000000,0.000000,0.250000,0,0);}
.m14d_c00149{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);}
.me6_c00149{transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296880,0.000000,0.000000,0.250000,0,0);}
.m136_c00149{transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{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);}
.m39_c00149{transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300680,0.000000,0.000000,0.250000,0,0);}
.me8_c00149{transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304380,0.000000,0.000000,0.250000,0,0);}
.m124_c00149{transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00149{transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312995,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m14a_c00149{transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331220,0.000000,0.000000,0.250000,0,0);}
.m126_c00149{transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341315,0.000000,0.000000,0.250000,0,0);}
.m142_c00149{transform:matrix(0.343835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343835,0.000000,0.000000,0.250000,0,0);}
.m14b_c00149{transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(0.356200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356200,0.000000,0.000000,0.250000,0,0);}
.m120_c00149{transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);}
.mee_c00149{transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.med_c00149{transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374425,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.377665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377665,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.385680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385680,0.000000,0.000000,0.250000,0,0);}
.m13c_c00149{transform:matrix(0.398765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398765,0.000000,0.000000,0.250000,0,0);}
.m11a_c00149{transform:matrix(0.405875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405875,0.000000,0.000000,0.250000,0,0);}
.m13a_c00149{transform:matrix(0.411625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411625,0.000000,0.000000,0.250000,0,0);}
.m144_c00149{transform:matrix(0.418285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418285,0.000000,0.000000,0.250000,0,0);}
.mba_c00149{transform:matrix(0.545875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545875,0.000000,0.000000,0.250000,0,0);}
.m32_c00149{transform:matrix(0.588025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588025,0.000000,0.000000,0.250000,0,0);}
.m127_c00149{transform:matrix(0.642560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642560,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.687625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687625,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.697590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697590,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;}
.fs16_c00149{font-size:13.650000px;}
.fsa_c00149{font-size:23.100000px;}
.fs1a_c00149{font-size:30.450000px;}
.fs18_c00149{font-size:31.500000px;}
.fs17_c00149{font-size:36.750000px;}
.fs14_c00149{font-size:38.850000px;}
.fs15_c00149{font-size:39.900000px;}
.fs13_c00149{font-size:47.250000px;}
.fsc_c00149{font-size:49.350000px;}
.fsd_c00149{font-size:50.400000px;}
.fs10_c00149{font-size:51.450000px;}
.fsf_c00149{font-size:52.500000px;}
.fse_c00149{font-size:53.550000px;}
.fs12_c00149{font-size:54.600000px;}
.fs11_c00149{font-size:55.650000px;}
.fsb_c00149{font-size:57.750000px;}
.fs0_c00149{font-size:64.052050px;}
.fs1_c00149{font-size:65.102083px;}
.fs19_c00149{font-size:67.200000px;}
.fs5_c00149{font-size:69.300000px;}
.fs6_c00149{font-size:70.350000px;}
.fs2_c00149{font-size:70.355065px;}
.fs8_c00149{font-size:71.400000px;}
.fs4_c00149{font-size:73.500000px;}
.fs7_c00149{font-size:74.550000px;}
.fs3_c00149{font-size:75.605443px;}
.fs9_c00149{font-size:96.600000px;}
.y0_c00149{bottom:0.000000px;}
.y7b_c00149{bottom:10.800000px;}
.y7a_c00149{bottom:16.740000px;}
.y79_c00149{bottom:33.072000px;}
.y78_c00149{bottom:36.588000px;}
.y77_c00149{bottom:45.360000px;}
.y76_c00149{bottom:61.560000px;}
.y73_c00149{bottom:146.877000px;}
.y61_c00149{bottom:161.197500px;}
.y72_c00149{bottom:165.387000px;}
.y60_c00149{bottom:179.782500px;}
.y71_c00149{bottom:182.908500px;}
.y5f_c00149{bottom:197.464500px;}
.y70_c00149{bottom:200.722500px;}
.y5e_c00149{bottom:215.506500px;}
.y6f_c00149{bottom:218.769000px;}
.y5d_c00149{bottom:232.608000px;}
.y6e_c00149{bottom:236.248500px;}
.y5c_c00149{bottom:250.731000px;}
.y6d_c00149{bottom:254.025000px;}
.y5b_c00149{bottom:268.521000px;}
.y6c_c00149{bottom:272.385000px;}
.y5a_c00149{bottom:286.606500px;}
.y6b_c00149{bottom:290.161500px;}
.y6a_c00149{bottom:308.094000px;}
.y59_c00149{bottom:310.075500px;}
.y69_c00149{bottom:326.281500px;}
.y58_c00149{bottom:328.077000px;}
.y68_c00149{bottom:344.391000px;}
.y57_c00149{bottom:346.158000px;}
.y67_c00149{bottom:361.939500px;}
.y56_c00149{bottom:364.101000px;}
.y66_c00149{bottom:379.857000px;}
.y55_c00149{bottom:381.922500px;}
.y65_c00149{bottom:398.032500px;}
.y54_c00149{bottom:400.014000px;}
.y64_c00149{bottom:415.623000px;}
.y53_c00149{bottom:417.832500px;}
.y63_c00149{bottom:433.348500px;}
.y52_c00149{bottom:435.613500px;}
.y62_c00149{bottom:451.446000px;}
.y51_c00149{bottom:453.864000px;}
.y50_c00149{bottom:481.785000px;}
.y4f_c00149{bottom:503.062500px;}
.y4e_c00149{bottom:524.578500px;}
.y75_c00149{bottom:549.450000px;}
.y4d_c00149{bottom:553.045500px;}
.y4c_c00149{bottom:582.409500px;}
.y42_c00149{bottom:606.963000px;}
.y43_c00149{bottom:607.209000px;}
.y44_c00149{bottom:607.587000px;}
.y45_c00149{bottom:607.779000px;}
.y46_c00149{bottom:608.226000px;}
.y47_c00149{bottom:608.836500px;}
.y48_c00149{bottom:609.045000px;}
.y49_c00149{bottom:609.496500px;}
.y4a_c00149{bottom:609.762000px;}
.y4b_c00149{bottom:610.213500px;}
.y39_c00149{bottom:630.181500px;}
.y3a_c00149{bottom:630.445500px;}
.y3b_c00149{bottom:631.072500px;}
.y3c_c00149{bottom:631.539000px;}
.y3d_c00149{bottom:631.737000px;}
.y3e_c00149{bottom:632.109000px;}
.y3f_c00149{bottom:632.413500px;}
.y40_c00149{bottom:632.902500px;}
.y41_c00149{bottom:633.418500px;}
.y32_c00149{bottom:652.866000px;}
.y33_c00149{bottom:653.523000px;}
.y34_c00149{bottom:654.019500px;}
.y35_c00149{bottom:654.615000px;}
.y36_c00149{bottom:654.880500px;}
.y37_c00149{bottom:655.291500px;}
.y38_c00149{bottom:655.939500px;}
.y2b_c00149{bottom:676.120500px;}
.y2c_c00149{bottom:676.356000px;}
.y2d_c00149{bottom:676.977000px;}
.y2e_c00149{bottom:677.748000px;}
.y2f_c00149{bottom:678.139500px;}
.y30_c00149{bottom:678.553500px;}
.y31_c00149{bottom:679.014000px;}
.y2a_c00149{bottom:701.616000px;}
.y22_c00149{bottom:725.757282px;}
.y23_c00149{bottom:726.046188px;}
.y24_c00149{bottom:726.269166px;}
.y25_c00149{bottom:726.740898px;}
.y26_c00149{bottom:727.115322px;}
.y27_c00149{bottom:727.652262px;}
.y28_c00149{bottom:728.225010px;}
.y29_c00149{bottom:728.893686px;}
.y19_c00149{bottom:749.519352px;}
.y1a_c00149{bottom:749.878518px;}
.y1b_c00149{bottom:750.555864px;}
.y1c_c00149{bottom:751.022544px;}
.y1d_c00149{bottom:751.394562px;}
.y1e_c00149{bottom:751.637760px;}
.y1f_c00149{bottom:752.196024px;}
.y20_c00149{bottom:752.830776px;}
.y21_c00149{bottom:753.231618px;}
.y74_c00149{bottom:769.770000px;}
.y11_c00149{bottom:772.201500px;}
.y12_c00149{bottom:772.580832px;}
.y13_c00149{bottom:773.134908px;}
.y14_c00149{bottom:773.468790px;}
.y15_c00149{bottom:774.142692px;}
.y16_c00149{bottom:774.602808px;}
.y17_c00149{bottom:775.409748px;}
.y18_c00149{bottom:776.242104px;}
.ya_c00149{bottom:794.881812px;}
.yb_c00149{bottom:795.528348px;}
.yc_c00149{bottom:796.139796px;}
.yd_c00149{bottom:796.719828px;}
.ye_c00149{bottom:797.543688px;}
.yf_c00149{bottom:798.190284px;}
.y10_c00149{bottom:798.646560px;}
.y1_c00149{bottom:818.101500px;}
.y2_c00149{bottom:818.325876px;}
.y3_c00149{bottom:818.671848px;}
.y4_c00149{bottom:818.959188px;}
.y5_c00149{bottom:819.678468px;}
.y6_c00149{bottom:819.883644px;}
.y7_c00149{bottom:820.473324px;}
.y8_c00149{bottom:820.602936px;}
.y9_c00149{bottom:820.848888px;}
.h18_c00149{height:13.650000px;}
.hc_c00149{height:23.100000px;}
.h1c_c00149{height:30.450000px;}
.h1a_c00149{height:31.500000px;}
.h19_c00149{height:36.750000px;}
.h16_c00149{height:38.850000px;}
.h17_c00149{height:39.900000px;}
.h15_c00149{height:47.250000px;}
.he_c00149{height:49.350000px;}
.hf_c00149{height:50.400000px;}
.h12_c00149{height:51.450000px;}
.h11_c00149{height:52.500000px;}
.h10_c00149{height:53.550000px;}
.h14_c00149{height:54.600000px;}
.h13_c00149{height:55.650000px;}
.hd_c00149{height:57.750000px;}
.h2_c00149{height:64.052050px;}
.h3_c00149{height:65.102083px;}
.h1b_c00149{height:67.200000px;}
.h7_c00149{height:69.300000px;}
.h8_c00149{height:70.350000px;}
.h4_c00149{height:70.355065px;}
.ha_c00149{height:71.400000px;}
.h6_c00149{height:73.500000px;}
.h9_c00149{height:74.550000px;}
.h5_c00149{height:75.605443px;}
.hb_c00149{height:96.600000px;}
.h0_c00149{height:1008.450000px;}
.h1_c00149{height:1008.750000px;}
.w0_c00149{width:676.890000px;}
.w1_c00149{width:677.250000px;}
.x0_c00149{left:0.000000px;}
.x4e_c00149{left:120.150000px;}
.x93_c00149{left:126.360000px;}
.x97_c00149{left:130.680000px;}
.x8b_c00149{left:133.380000px;}
.xa0_c00149{left:134.460000px;}
.xa9_c00149{left:135.540000px;}
.xaf_c00149{left:146.880000px;}
.x8c_c00149{left:149.040000px;}
.xa5_c00149{left:150.930000px;}
.x90_c00149{left:157.950000px;}
.x84_c00149{left:159.030000px;}
.x9b_c00149{left:160.110000px;}
.x1_c00149{left:162.916500px;}
.x16_c00149{left:165.108840px;}
.x31_c00149{left:166.197000px;}
.x44_c00149{left:167.940000px;}
.x4a_c00149{left:169.020000px;}
.x8d_c00149{left:170.370000px;}
.xac_c00149{left:172.260000px;}
.xa1_c00149{left:173.340000px;}
.xb3_c00149{left:177.660000px;}
.x85_c00149{left:181.170000px;}
.x98_c00149{left:183.060000px;}
.x8a_c00149{left:185.490000px;}
.x26_c00149{left:187.294500px;}
.x94_c00149{left:188.460000px;}
.x4f_c00149{left:189.810000px;}
.x2_c00149{left:190.963500px;}
.x39_c00149{left:193.702500px;}
.x10_c00149{left:195.376500px;}
.xa8_c00149{left:196.560000px;}
.x17_c00149{left:197.789736px;}
.xaa_c00149{left:199.530000px;}
.x99_c00149{left:200.880000px;}
.xa6_c00149{left:201.960000px;}
.x86_c00149{left:203.040000px;}
.x1e_c00149{left:211.253946px;}
.xa_c00149{left:213.206292px;}
.xa2_c00149{left:216.270000px;}
.xae_c00149{left:218.160000px;}
.x2c_c00149{left:219.901500px;}
.xb0_c00149{left:222.210000px;}
.xad_c00149{left:223.290000px;}
.x4b_c00149{left:227.340000px;}
.x9e_c00149{left:229.230000px;}
.xb2_c00149{left:230.310000px;}
.x3_c00149{left:234.210000px;}
.x3a_c00149{left:235.785000px;}
.x11_c00149{left:241.549500px;}
.x27_c00149{left:243.753000px;}
.x91_c00149{left:245.970000px;}
.x95_c00149{left:248.130000px;}
.x87_c00149{left:250.020000px;}
.xa3_c00149{left:252.990000px;}
.x1f_c00149{left:254.190468px;}
.x3b_c00149{left:257.164500px;}
.xb_c00149{left:260.197908px;}
.x2d_c00149{left:261.247500px;}
.x32_c00149{left:265.258500px;}
.x45_c00149{left:266.490000px;}
.x92_c00149{left:267.570000px;}
.x96_c00149{left:268.650000px;}
.x4_c00149{left:270.127500px;}
.xb4_c00149{left:276.210000px;}
.x9a_c00149{left:277.290000px;}
.x88_c00149{left:279.450000px;}
.x9c_c00149{left:281.070000px;}
.xab_c00149{left:284.310000px;}
.x8e_c00149{left:286.740000px;}
.x20_c00149{left:288.267882px;}
.x49_c00149{left:290.341500px;}
.xa4_c00149{left:295.380000px;}
.x89_c00149{left:297.540000px;}
.x24_c00149{left:299.160000px;}
.x18_c00149{left:301.751478px;}
.xc_c00149{left:304.762620px;}
.x3c_c00149{left:306.840000px;}
.xb5_c00149{left:309.690000px;}
.x2e_c00149{left:310.923000px;}
.x50_c00149{left:312.120000px;}
.x28_c00149{left:313.837500px;}
.x42_c00149{left:315.360000px;}
.x33_c00149{left:317.067000px;}
.x8f_c00149{left:318.600000px;}
.x9d_c00149{left:322.920000px;}
.x12_c00149{left:325.531500px;}
.x9f_c00149{left:328.050000px;}
.xb6_c00149{left:331.020000px;}
.x2f_c00149{left:333.060000px;}
.x19_c00149{left:335.503374px;}
.x21_c00149{left:337.138476px;}
.x34_c00149{left:338.983500px;}
.x51_c00149{left:343.710000px;}
.xa7_c00149{left:345.060000px;}
.x29_c00149{left:349.479000px;}
.x1a_c00149{left:357.645144px;}
.x5_c00149{left:360.037500px;}
.x46_c00149{left:361.800000px;}
.x13_c00149{left:363.874500px;}
.xd_c00149{left:368.180088px;}
.xb1_c00149{left:370.440000px;}
.x3d_c00149{left:374.607000px;}
.x6a_c00149{left:376.920000px;}
.x43_c00149{left:378.000000px;}
.x35_c00149{left:380.272500px;}
.x52_c00149{left:381.510000px;}
.x4c_c00149{left:382.860000px;}
.x72_c00149{left:383.940000px;}
.x6_c00149{left:385.684500px;}
.x2a_c00149{left:387.096000px;}
.x22_c00149{left:389.243106px;}
.x53_c00149{left:393.390000px;}
.x79_c00149{left:395.550000px;}
.x3e_c00149{left:397.830000px;}
.x74_c00149{left:401.220000px;}
.x7a_c00149{left:402.300000px;}
.x6b_c00149{left:404.190000px;}
.x1b_c00149{left:408.417756px;}
.x81_c00149{left:409.860000px;}
.x6e_c00149{left:411.210000px;}
.x54_c00149{left:412.290000px;}
.x36_c00149{left:414.031500px;}
.xe_c00149{left:417.877596px;}
.x64_c00149{left:419.580000px;}
.x30_c00149{left:421.369500px;}
.x25_c00149{left:424.440000px;}
.x7e_c00149{left:427.680000px;}
.x2b_c00149{left:428.914500px;}
.x14_c00149{left:431.119500px;}
.x5c_c00149{left:434.160000px;}
.x55_c00149{left:435.240000px;}
.x82_c00149{left:440.910000px;}
.x75_c00149{left:443.880000px;}
.x3f_c00149{left:448.012500px;}
.x23_c00149{left:449.966826px;}
.x6f_c00149{left:451.440000px;}
.xf_c00149{left:452.973192px;}
.x65_c00149{left:455.760000px;}
.x6c_c00149{left:457.920000px;}
.x7_c00149{left:459.394500px;}
.x61_c00149{left:462.510000px;}
.x1c_c00149{left:466.189458px;}
.x37_c00149{left:468.309000px;}
.x66_c00149{left:470.340000px;}
.x47_c00149{left:471.690000px;}
.x4d_c00149{left:472.770000px;}
.x8_c00149{left:475.596000px;}
.x40_c00149{left:477.481500px;}
.x5d_c00149{left:478.980000px;}
.x7f_c00149{left:484.380000px;}
.x7c_c00149{left:488.700000px;}
.x67_c00149{left:489.780000px;}
.x76_c00149{left:490.860000px;}
.x83_c00149{left:495.450000px;}
.x58_c00149{left:496.800000px;}
.x5e_c00149{left:498.690000px;}
.x15_c00149{left:500.482500px;}
.x1d_c00149{left:502.593390px;}
.x9_c00149{left:506.340000px;}
.x80_c00149{left:513.810000px;}
.x56_c00149{left:518.130000px;}
.x48_c00149{left:521.370000px;}
.x38_c00149{left:525.603000px;}
.x41_c00149{left:527.697000px;}
.x62_c00149{left:531.360000px;}
.x7b_c00149{left:532.710000px;}
.x77_c00149{left:533.790000px;}
.x59_c00149{left:538.110000px;}
.x78_c00149{left:544.590000px;}
.x70_c00149{left:549.450000px;}
.x6d_c00149{left:551.610000px;}
.x5f_c00149{left:564.300000px;}
.x7d_c00149{left:569.160000px;}
.x5a_c00149{left:570.240000px;}
.x68_c00149{left:574.020000px;}
.x71_c00149{left:575.100000px;}
.x60_c00149{left:576.450000px;}
.x57_c00149{left:581.040000px;}
.x73_c00149{left:585.900000px;}
.x5b_c00149{left:587.250000px;}
.x63_c00149{left:589.950000px;}
.x69_c00149{left:600.750000px;}
.xbd_c00149{left:659.340000px;}
.xbe_c00149{left:660.420000px;}
.xbc_c00149{left:662.310000px;}
.xba_c00149{left:664.470000px;}
.xb9_c00149{left:667.710000px;}
.xb7_c00149{left:668.790000px;}
.xb8_c00149{left:669.870000px;}
.xbb_c00149{left:674.460000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.fs16_c00149{font-size:12.133333pt;}
.fsa_c00149{font-size:20.533333pt;}
.fs1a_c00149{font-size:27.066667pt;}
.fs18_c00149{font-size:28.000000pt;}
.fs17_c00149{font-size:32.666667pt;}
.fs14_c00149{font-size:34.533333pt;}
.fs15_c00149{font-size:35.466667pt;}
.fs13_c00149{font-size:42.000000pt;}
.fsc_c00149{font-size:43.866667pt;}
.fsd_c00149{font-size:44.800000pt;}
.fs10_c00149{font-size:45.733333pt;}
.fsf_c00149{font-size:46.666667pt;}
.fse_c00149{font-size:47.600000pt;}
.fs12_c00149{font-size:48.533333pt;}
.fs11_c00149{font-size:49.466667pt;}
.fsb_c00149{font-size:51.333333pt;}
.fs0_c00149{font-size:56.935155pt;}
.fs1_c00149{font-size:57.868518pt;}
.fs19_c00149{font-size:59.733333pt;}
.fs5_c00149{font-size:61.600000pt;}
.fs6_c00149{font-size:62.533333pt;}
.fs2_c00149{font-size:62.537836pt;}
.fs8_c00149{font-size:63.466667pt;}
.fs4_c00149{font-size:65.333333pt;}
.fs7_c00149{font-size:66.266667pt;}
.fs3_c00149{font-size:67.204838pt;}
.fs9_c00149{font-size:85.866667pt;}
.y0_c00149{bottom:0.000000pt;}
.y7b_c00149{bottom:9.600000pt;}
.y7a_c00149{bottom:14.880000pt;}
.y79_c00149{bottom:29.397333pt;}
.y78_c00149{bottom:32.522667pt;}
.y77_c00149{bottom:40.320000pt;}
.y76_c00149{bottom:54.720000pt;}
.y73_c00149{bottom:130.557333pt;}
.y61_c00149{bottom:143.286667pt;}
.y72_c00149{bottom:147.010667pt;}
.y60_c00149{bottom:159.806667pt;}
.y71_c00149{bottom:162.585333pt;}
.y5f_c00149{bottom:175.524000pt;}
.y70_c00149{bottom:178.420000pt;}
.y5e_c00149{bottom:191.561333pt;}
.y6f_c00149{bottom:194.461333pt;}
.y5d_c00149{bottom:206.762667pt;}
.y6e_c00149{bottom:209.998667pt;}
.y5c_c00149{bottom:222.872000pt;}
.y6d_c00149{bottom:225.800000pt;}
.y5b_c00149{bottom:238.685333pt;}
.y6c_c00149{bottom:242.120000pt;}
.y5a_c00149{bottom:254.761333pt;}
.y6b_c00149{bottom:257.921333pt;}
.y6a_c00149{bottom:273.861333pt;}
.y59_c00149{bottom:275.622667pt;}
.y69_c00149{bottom:290.028000pt;}
.y58_c00149{bottom:291.624000pt;}
.y68_c00149{bottom:306.125333pt;}
.y57_c00149{bottom:307.696000pt;}
.y67_c00149{bottom:321.724000pt;}
.y56_c00149{bottom:323.645333pt;}
.y66_c00149{bottom:337.650667pt;}
.y55_c00149{bottom:339.486667pt;}
.y65_c00149{bottom:353.806667pt;}
.y54_c00149{bottom:355.568000pt;}
.y64_c00149{bottom:369.442667pt;}
.y53_c00149{bottom:371.406667pt;}
.y63_c00149{bottom:385.198667pt;}
.y52_c00149{bottom:387.212000pt;}
.y62_c00149{bottom:401.285333pt;}
.y51_c00149{bottom:403.434667pt;}
.y50_c00149{bottom:428.253333pt;}
.y4f_c00149{bottom:447.166667pt;}
.y4e_c00149{bottom:466.292000pt;}
.y75_c00149{bottom:488.400000pt;}
.y4d_c00149{bottom:491.596000pt;}
.y4c_c00149{bottom:517.697333pt;}
.y42_c00149{bottom:539.522667pt;}
.y43_c00149{bottom:539.741333pt;}
.y44_c00149{bottom:540.077333pt;}
.y45_c00149{bottom:540.248000pt;}
.y46_c00149{bottom:540.645333pt;}
.y47_c00149{bottom:541.188000pt;}
.y48_c00149{bottom:541.373333pt;}
.y49_c00149{bottom:541.774667pt;}
.y4a_c00149{bottom:542.010667pt;}
.y4b_c00149{bottom:542.412000pt;}
.y39_c00149{bottom:560.161333pt;}
.y3a_c00149{bottom:560.396000pt;}
.y3b_c00149{bottom:560.953333pt;}
.y3c_c00149{bottom:561.368000pt;}
.y3d_c00149{bottom:561.544000pt;}
.y3e_c00149{bottom:561.874667pt;}
.y3f_c00149{bottom:562.145333pt;}
.y40_c00149{bottom:562.580000pt;}
.y41_c00149{bottom:563.038667pt;}
.y32_c00149{bottom:580.325333pt;}
.y33_c00149{bottom:580.909333pt;}
.y34_c00149{bottom:581.350667pt;}
.y35_c00149{bottom:581.880000pt;}
.y36_c00149{bottom:582.116000pt;}
.y37_c00149{bottom:582.481333pt;}
.y38_c00149{bottom:583.057333pt;}
.y2b_c00149{bottom:600.996000pt;}
.y2c_c00149{bottom:601.205333pt;}
.y2d_c00149{bottom:601.757333pt;}
.y2e_c00149{bottom:602.442667pt;}
.y2f_c00149{bottom:602.790667pt;}
.y30_c00149{bottom:603.158667pt;}
.y31_c00149{bottom:603.568000pt;}
.y2a_c00149{bottom:623.658667pt;}
.y22_c00149{bottom:645.117584pt;}
.y23_c00149{bottom:645.374389pt;}
.y24_c00149{bottom:645.572592pt;}
.y25_c00149{bottom:645.991909pt;}
.y26_c00149{bottom:646.324731pt;}
.y27_c00149{bottom:646.802011pt;}
.y28_c00149{bottom:647.311120pt;}
.y29_c00149{bottom:647.905499pt;}
.y19_c00149{bottom:666.239424pt;}
.y1a_c00149{bottom:666.558683pt;}
.y1b_c00149{bottom:667.160768pt;}
.y1c_c00149{bottom:667.575595pt;}
.y1d_c00149{bottom:667.906277pt;}
.y1e_c00149{bottom:668.122453pt;}
.y1f_c00149{bottom:668.618688pt;}
.y20_c00149{bottom:669.182912pt;}
.y21_c00149{bottom:669.539216pt;}
.y74_c00149{bottom:684.240000pt;}
.y11_c00149{bottom:686.401333pt;}
.y12_c00149{bottom:686.738517pt;}
.y13_c00149{bottom:687.231029pt;}
.y14_c00149{bottom:687.527813pt;}
.y15_c00149{bottom:688.126837pt;}
.y16_c00149{bottom:688.535829pt;}
.y17_c00149{bottom:689.253109pt;}
.y18_c00149{bottom:689.992981pt;}
.ya_c00149{bottom:706.561611pt;}
.yb_c00149{bottom:707.136309pt;}
.yc_c00149{bottom:707.679819pt;}
.yd_c00149{bottom:708.195403pt;}
.ye_c00149{bottom:708.927723pt;}
.yf_c00149{bottom:709.502475pt;}
.y10_c00149{bottom:709.908053pt;}
.y1_c00149{bottom:727.201333pt;}
.y2_c00149{bottom:727.400779pt;}
.y3_c00149{bottom:727.708309pt;}
.y4_c00149{bottom:727.963723pt;}
.y5_c00149{bottom:728.603083pt;}
.y6_c00149{bottom:728.785461pt;}
.y7_c00149{bottom:729.309621pt;}
.y8_c00149{bottom:729.424832pt;}
.y9_c00149{bottom:729.643456pt;}
.h18_c00149{height:12.133333pt;}
.hc_c00149{height:20.533333pt;}
.h1c_c00149{height:27.066667pt;}
.h1a_c00149{height:28.000000pt;}
.h19_c00149{height:32.666667pt;}
.h16_c00149{height:34.533333pt;}
.h17_c00149{height:35.466667pt;}
.h15_c00149{height:42.000000pt;}
.he_c00149{height:43.866667pt;}
.hf_c00149{height:44.800000pt;}
.h12_c00149{height:45.733333pt;}
.h11_c00149{height:46.666667pt;}
.h10_c00149{height:47.600000pt;}
.h14_c00149{height:48.533333pt;}
.h13_c00149{height:49.466667pt;}
.hd_c00149{height:51.333333pt;}
.h2_c00149{height:56.935155pt;}
.h3_c00149{height:57.868518pt;}
.h1b_c00149{height:59.733333pt;}
.h7_c00149{height:61.600000pt;}
.h8_c00149{height:62.533333pt;}
.h4_c00149{height:62.537836pt;}
.ha_c00149{height:63.466667pt;}
.h6_c00149{height:65.333333pt;}
.h9_c00149{height:66.266667pt;}
.h5_c00149{height:67.204838pt;}
.hb_c00149{height:85.866667pt;}
.h0_c00149{height:896.400000pt;}
.h1_c00149{height:896.666667pt;}
.w0_c00149{width:601.680000pt;}
.w1_c00149{width:602.000000pt;}
.x0_c00149{left:0.000000pt;}
.x4e_c00149{left:106.800000pt;}
.x93_c00149{left:112.320000pt;}
.x97_c00149{left:116.160000pt;}
.x8b_c00149{left:118.560000pt;}
.xa0_c00149{left:119.520000pt;}
.xa9_c00149{left:120.480000pt;}
.xaf_c00149{left:130.560000pt;}
.x8c_c00149{left:132.480000pt;}
.xa5_c00149{left:134.160000pt;}
.x90_c00149{left:140.400000pt;}
.x84_c00149{left:141.360000pt;}
.x9b_c00149{left:142.320000pt;}
.x1_c00149{left:144.814667pt;}
.x16_c00149{left:146.763413pt;}
.x31_c00149{left:147.730667pt;}
.x44_c00149{left:149.280000pt;}
.x4a_c00149{left:150.240000pt;}
.x8d_c00149{left:151.440000pt;}
.xac_c00149{left:153.120000pt;}
.xa1_c00149{left:154.080000pt;}
.xb3_c00149{left:157.920000pt;}
.x85_c00149{left:161.040000pt;}
.x98_c00149{left:162.720000pt;}
.x8a_c00149{left:164.880000pt;}
.x26_c00149{left:166.484000pt;}
.x94_c00149{left:167.520000pt;}
.x4f_c00149{left:168.720000pt;}
.x2_c00149{left:169.745333pt;}
.x39_c00149{left:172.180000pt;}
.x10_c00149{left:173.668000pt;}
.xa8_c00149{left:174.720000pt;}
.x17_c00149{left:175.813099pt;}
.xaa_c00149{left:177.360000pt;}
.x99_c00149{left:178.560000pt;}
.xa6_c00149{left:179.520000pt;}
.x86_c00149{left:180.480000pt;}
.x1e_c00149{left:187.781285pt;}
.xa_c00149{left:189.516704pt;}
.xa2_c00149{left:192.240000pt;}
.xae_c00149{left:193.920000pt;}
.x2c_c00149{left:195.468000pt;}
.xb0_c00149{left:197.520000pt;}
.xad_c00149{left:198.480000pt;}
.x4b_c00149{left:202.080000pt;}
.x9e_c00149{left:203.760000pt;}
.xb2_c00149{left:204.720000pt;}
.x3_c00149{left:208.186667pt;}
.x3a_c00149{left:209.586667pt;}
.x11_c00149{left:214.710667pt;}
.x27_c00149{left:216.669333pt;}
.x91_c00149{left:218.640000pt;}
.x95_c00149{left:220.560000pt;}
.x87_c00149{left:222.240000pt;}
.xa3_c00149{left:224.880000pt;}
.x1f_c00149{left:225.947083pt;}
.x3b_c00149{left:228.590667pt;}
.xb_c00149{left:231.287029pt;}
.x2d_c00149{left:232.220000pt;}
.x32_c00149{left:235.785333pt;}
.x45_c00149{left:236.880000pt;}
.x92_c00149{left:237.840000pt;}
.x96_c00149{left:238.800000pt;}
.x4_c00149{left:240.113333pt;}
.xb4_c00149{left:245.520000pt;}
.x9a_c00149{left:246.480000pt;}
.x88_c00149{left:248.400000pt;}
.x9c_c00149{left:249.840000pt;}
.xab_c00149{left:252.720000pt;}
.x8e_c00149{left:254.880000pt;}
.x20_c00149{left:256.238117pt;}
.x49_c00149{left:258.081333pt;}
.xa4_c00149{left:262.560000pt;}
.x89_c00149{left:264.480000pt;}
.x24_c00149{left:265.920000pt;}
.x18_c00149{left:268.223536pt;}
.xc_c00149{left:270.900107pt;}
.x3c_c00149{left:272.746667pt;}
.xb5_c00149{left:275.280000pt;}
.x2e_c00149{left:276.376000pt;}
.x50_c00149{left:277.440000pt;}
.x28_c00149{left:278.966667pt;}
.x42_c00149{left:280.320000pt;}
.x33_c00149{left:281.837333pt;}
.x8f_c00149{left:283.200000pt;}
.x9d_c00149{left:287.040000pt;}
.x12_c00149{left:289.361333pt;}
.x9f_c00149{left:291.600000pt;}
.xb6_c00149{left:294.240000pt;}
.x2f_c00149{left:296.053333pt;}
.x19_c00149{left:298.225221pt;}
.x21_c00149{left:299.678645pt;}
.x34_c00149{left:301.318667pt;}
.x51_c00149{left:305.520000pt;}
.xa7_c00149{left:306.720000pt;}
.x29_c00149{left:310.648000pt;}
.x1a_c00149{left:317.906795pt;}
.x5_c00149{left:320.033333pt;}
.x46_c00149{left:321.600000pt;}
.x13_c00149{left:323.444000pt;}
.xd_c00149{left:327.271189pt;}
.xb1_c00149{left:329.280000pt;}
.x3d_c00149{left:332.984000pt;}
.x6a_c00149{left:335.040000pt;}
.x43_c00149{left:336.000000pt;}
.x35_c00149{left:338.020000pt;}
.x52_c00149{left:339.120000pt;}
.x4c_c00149{left:340.320000pt;}
.x72_c00149{left:341.280000pt;}
.x6_c00149{left:342.830667pt;}
.x2a_c00149{left:344.085333pt;}
.x22_c00149{left:345.993872pt;}
.x53_c00149{left:349.680000pt;}
.x79_c00149{left:351.600000pt;}
.x3e_c00149{left:353.626667pt;}
.x74_c00149{left:356.640000pt;}
.x7a_c00149{left:357.600000pt;}
.x6b_c00149{left:359.280000pt;}
.x1b_c00149{left:363.038005pt;}
.x81_c00149{left:364.320000pt;}
.x6e_c00149{left:365.520000pt;}
.x54_c00149{left:366.480000pt;}
.x36_c00149{left:368.028000pt;}
.xe_c00149{left:371.446752pt;}
.x64_c00149{left:372.960000pt;}
.x30_c00149{left:374.550667pt;}
.x25_c00149{left:377.280000pt;}
.x7e_c00149{left:380.160000pt;}
.x2b_c00149{left:381.257333pt;}
.x14_c00149{left:383.217333pt;}
.x5c_c00149{left:385.920000pt;}
.x55_c00149{left:386.880000pt;}
.x82_c00149{left:391.920000pt;}
.x75_c00149{left:394.560000pt;}
.x3f_c00149{left:398.233333pt;}
.x23_c00149{left:399.970512pt;}
.x6f_c00149{left:401.280000pt;}
.xf_c00149{left:402.642837pt;}
.x65_c00149{left:405.120000pt;}
.x6c_c00149{left:407.040000pt;}
.x7_c00149{left:408.350667pt;}
.x61_c00149{left:411.120000pt;}
.x1c_c00149{left:414.390629pt;}
.x37_c00149{left:416.274667pt;}
.x66_c00149{left:418.080000pt;}
.x47_c00149{left:419.280000pt;}
.x4d_c00149{left:420.240000pt;}
.x8_c00149{left:422.752000pt;}
.x40_c00149{left:424.428000pt;}
.x5d_c00149{left:425.760000pt;}
.x7f_c00149{left:430.560000pt;}
.x7c_c00149{left:434.400000pt;}
.x67_c00149{left:435.360000pt;}
.x76_c00149{left:436.320000pt;}
.x83_c00149{left:440.400000pt;}
.x58_c00149{left:441.600000pt;}
.x5e_c00149{left:443.280000pt;}
.x15_c00149{left:444.873333pt;}
.x1d_c00149{left:446.749680pt;}
.x9_c00149{left:450.080000pt;}
.x80_c00149{left:456.720000pt;}
.x56_c00149{left:460.560000pt;}
.x48_c00149{left:463.440000pt;}
.x38_c00149{left:467.202667pt;}
.x41_c00149{left:469.064000pt;}
.x62_c00149{left:472.320000pt;}
.x7b_c00149{left:473.520000pt;}
.x77_c00149{left:474.480000pt;}
.x59_c00149{left:478.320000pt;}
.x78_c00149{left:484.080000pt;}
.x70_c00149{left:488.400000pt;}
.x6d_c00149{left:490.320000pt;}
.x5f_c00149{left:501.600000pt;}
.x7d_c00149{left:505.920000pt;}
.x5a_c00149{left:506.880000pt;}
.x68_c00149{left:510.240000pt;}
.x71_c00149{left:511.200000pt;}
.x60_c00149{left:512.400000pt;}
.x57_c00149{left:516.480000pt;}
.x73_c00149{left:520.800000pt;}
.x5b_c00149{left:522.000000pt;}
.x63_c00149{left:524.400000pt;}
.x69_c00149{left:534.000000pt;}
.xbd_c00149{left:586.080000pt;}
.xbe_c00149{left:587.040000pt;}
.xbc_c00149{left:588.720000pt;}
.xba_c00149{left:590.640000pt;}
.xb9_c00149{left:593.520000pt;}
.xb7_c00149{left:594.480000pt;}
.xb8_c00149{left:595.440000pt;}
.xbb_c00149{left:599.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_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;}
.m19_c00150{transform:matrix(0.011543,-0.000231,0.004999,0.249950,0,0);-ms-transform:matrix(0.011543,-0.000231,0.004999,0.249950,0,0);-webkit-transform:matrix(0.011543,-0.000231,0.004999,0.249950,0,0);}
.m40_c00150{transform:matrix(0.018649,-0.000224,0.003000,0.249982,0,0);-ms-transform:matrix(0.018649,-0.000224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.018649,-0.000224,0.003000,0.249982,0,0);}
.m11a_c00150{transform:matrix(0.029465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029465,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.040343,-0.000726,0.004499,0.249960,0,0);-ms-transform:matrix(0.040343,-0.000726,0.004499,0.249960,0,0);-webkit-transform:matrix(0.040343,-0.000726,0.004499,0.249960,0,0);}
.m1a_c00150{transform:matrix(0.069496,-0.001390,0.004999,0.249950,0,0);-ms-transform:matrix(0.069496,-0.001390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.069496,-0.001390,0.004999,0.249950,0,0);}
.md8_c00150{transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093255,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.101645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101645,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.109520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109520,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122305,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.133970,-0.001608,0.003000,0.249982,0,0);-ms-transform:matrix(0.133970,-0.001608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.133970,-0.001608,0.003000,0.249982,0,0);}
.m41_c00150{transform:matrix(0.137145,-0.001646,0.003000,0.249982,0,0);-ms-transform:matrix(0.137145,-0.001646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137145,-0.001646,0.003000,0.249982,0,0);}
.m27_c00150{transform:matrix(0.144461,-0.002889,0.004999,0.249950,0,0);-ms-transform:matrix(0.144461,-0.002889,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144461,-0.002889,0.004999,0.249950,0,0);}
.m48_c00150{transform:matrix(0.151744,-0.001821,0.003000,0.249982,0,0);-ms-transform:matrix(0.151744,-0.001821,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151744,-0.001821,0.003000,0.249982,0,0);}
.mab_c00150{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);}
.mac_c00150{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);}
.maa_c00150{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);}
.mf9_c00150{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_c00150{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);}
.mae_c00150{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);}
.mf7_c00150{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);}
.mef_c00150{transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);}
.m75_c00150{transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);}
.mb0_c00150{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);}
.m33_c00150{transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);-ms-transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);}
.mb3_c00150{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);}
.m31_c00150{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);}
.mfb_c00150{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);}
.m128_c00150{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);}
.m117_c00150{transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);}
.mdb_c00150{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{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);}
.m30_c00150{transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);-ms-transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);}
.mb2_c00150{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m140_c00150{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);}
.md0_c00150{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);}
.m8a_c00150{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);}
.mf6_c00150{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);}
.ma3_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);}
.m11c_c00150{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);}
.m5a_c00150{transform:matrix(0.171278,-0.001542,0.002250,0.249990,0,0);-ms-transform:matrix(0.171278,-0.001542,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171278,-0.001542,0.002250,0.249990,0,0);}
.m2f_c00150{transform:matrix(0.171896,-0.003438,0.004999,0.249950,0,0);-ms-transform:matrix(0.171896,-0.003438,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171896,-0.003438,0.004999,0.249950,0,0);}
.m7c_c00150{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);}
.m45_c00150{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);}
.m26_c00150{transform:matrix(0.174540,-0.003491,0.004999,0.249950,0,0);-ms-transform:matrix(0.174540,-0.003491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174540,-0.003491,0.004999,0.249950,0,0);}
.mde_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);}
.m28_c00150{transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);}
.mf8_c00150{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);}
.m5_c00150{transform:matrix(0.177108,-0.002480,0.003500,0.249976,0,0);-ms-transform:matrix(0.177108,-0.002480,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177108,-0.002480,0.003500,0.249976,0,0);}
.m4f_c00150{transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);}
.m88_c00150{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);}
.m101_c00150{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);}
.m78_c00150{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_c00150{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);}
.md9_c00150{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);}
.m72_c00150{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);}
.m38_c00150{transform:matrix(0.180099,-0.003602,0.004999,0.249950,0,0);-ms-transform:matrix(0.180099,-0.003602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180099,-0.003602,0.004999,0.249950,0,0);}
.m15_c00150{transform:matrix(0.181326,-0.003264,0.004499,0.249960,0,0);-ms-transform:matrix(0.181326,-0.003264,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181326,-0.003264,0.004499,0.249960,0,0);}
.m6f_c00150{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);}
.m55_c00150{transform:matrix(0.181763,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181763,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181763,-0.001636,0.002250,0.249990,0,0);}
.m4c_c00150{transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);-ms-transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);}
.m12f_c00150{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);}
.m32_c00150{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);}
.m92_c00150{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);}
.m2b_c00150{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);}
.m64_c00150{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);}
.ma5_c00150{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);}
.m18_c00150{transform:matrix(0.183753,-0.003675,0.004999,0.249950,0,0);-ms-transform:matrix(0.183753,-0.003675,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183753,-0.003675,0.004999,0.249950,0,0);}
.ma6_c00150{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);}
.m2d_c00150{transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);}
.m1f_c00150{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);}
.m4d_c00150{transform:matrix(0.184148,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184148,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184148,-0.001657,0.002250,0.249990,0,0);}
.m3d_c00150{transform:matrix(0.184247,-0.002211,0.003000,0.249982,0,0);-ms-transform:matrix(0.184247,-0.002211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184247,-0.002211,0.003000,0.249982,0,0);}
.mc9_c00150{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);}
.m9d_c00150{transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185285,0.000000,0.000000,0.250000,0,0);}
.mf4_c00150{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);}
.m8c_c00150{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);}
.maf_c00150{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);}
.mbe_c00150{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);}
.mf2_c00150{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);}
.m5c_c00150{transform:matrix(0.187392,-0.001687,0.002250,0.249990,0,0);-ms-transform:matrix(0.187392,-0.001687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187392,-0.001687,0.002250,0.249990,0,0);}
.mad_c00150{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);}
.m65_c00150{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);}
.m73_c00150{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);}
.m97_c00150{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);}
.mc4_c00150{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);}
.mfc_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);}
.mf0_c00150{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);}
.ma8_c00150{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);}
.m34_c00150{transform:matrix(0.189317,-0.003786,0.004999,0.249950,0,0);-ms-transform:matrix(0.189317,-0.003786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189317,-0.003786,0.004999,0.249950,0,0);}
.m29_c00150{transform:matrix(0.189422,-0.003788,0.004999,0.249950,0,0);-ms-transform:matrix(0.189422,-0.003788,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189422,-0.003788,0.004999,0.249950,0,0);}
.m79_c00150{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);}
.mf3_c00150{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);}
.mcc_c00150{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);}
.me9_c00150{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);}
.me0_c00150{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);}
.me7_c00150{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);}
.m44_c00150{transform:matrix(0.190401,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190401,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190401,-0.002285,0.003000,0.249982,0,0);}
.ma7_c00150{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);}
.m139_c00150{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m138_c00150{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);}
.m20_c00150{transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-ms-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);}
.m24_c00150{transform:matrix(0.192087,-0.003842,0.004999,0.249950,0,0);-ms-transform:matrix(0.192087,-0.003842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192087,-0.003842,0.004999,0.249950,0,0);}
.m123_c00150{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);}
.m10c_c00150{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);}
.m6a_c00150{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);}
.m13a_c00150{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);}
.mbb_c00150{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);}
.m12d_c00150{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);}
.m2c_c00150{transform:matrix(0.193491,-0.003870,0.004999,0.249950,0,0);-ms-transform:matrix(0.193491,-0.003870,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193491,-0.003870,0.004999,0.249950,0,0);}
.mc7_c00150{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);}
.m94_c00150{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);}
.m134_c00150{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);}
.m50_c00150{transform:matrix(0.193987,-0.001746,0.002250,0.249990,0,0);-ms-transform:matrix(0.193987,-0.001746,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193987,-0.001746,0.002250,0.249990,0,0);}
.m1c_c00150{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);}
.m126_c00150{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);}
.m3c_c00150{transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);}
.m99_c00150{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);}
.m46_c00150{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);}
.mfe_c00150{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);}
.mcb_c00150{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);}
.m69_c00150{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);}
.m61_c00150{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);}
.ma0_c00150{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);}
.ma4_c00150{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);}
.m12c_c00150{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);}
.m112_c00150{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);}
.ma9_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);}
.m56_c00150{transform:matrix(0.197577,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197577,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197577,-0.001778,0.002250,0.249990,0,0);}
.m43_c00150{transform:matrix(0.198351,-0.002380,0.003000,0.249982,0,0);-ms-transform:matrix(0.198351,-0.002380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198351,-0.002380,0.003000,0.249982,0,0);}
.mfd_c00150{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);}
.m66_c00150{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);}
.mc3_c00150{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);}
.m74_c00150{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);}
.m118_c00150{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.200145,-0.004003,0.004999,0.249950,0,0);-ms-transform:matrix(0.200145,-0.004003,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200145,-0.004003,0.004999,0.249950,0,0);}
.m77_c00150{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);}
.mdc_c00150{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);}
.m113_c00150{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);}
.m114_c00150{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);}
.m70_c00150{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);}
.mb4_c00150{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);}
.mb5_c00150{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);}
.m127_c00150{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);}
.m12a_c00150{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);}
.m7d_c00150{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.meb_c00150{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);}
.m5d_c00150{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);}
.mfa_c00150{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);}
.m51_c00150{transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);}
.m62_c00150{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);}
.mbc_c00150{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);}
.m83_c00150{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);}
.m10f_c00150{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_c00150{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);}
.m58_c00150{transform:matrix(0.206652,-0.001860,0.002250,0.249990,0,0);-ms-transform:matrix(0.206652,-0.001860,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206652,-0.001860,0.002250,0.249990,0,0);}
.m135_c00150{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);}
.m60_c00150{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);}
.mec_c00150{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);}
.m105_c00150{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);}
.m68_c00150{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);}
.mb1_c00150{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);}
.mcf_c00150{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);}
.m9a_c00150{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);}
.m95_c00150{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);}
.m96_c00150{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);}
.m5b_c00150{transform:matrix(0.210066,-0.001891,0.002250,0.249990,0,0);-ms-transform:matrix(0.210066,-0.001891,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210066,-0.001891,0.002250,0.249990,0,0);}
.m86_c00150{transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);}
.mdf_c00150{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);}
.m13b_c00150{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);}
.me4_c00150{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);}
.m67_c00150{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_c00150{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);}
.m59_c00150{transform:matrix(0.210891,-0.001898,0.002250,0.249990,0,0);-ms-transform:matrix(0.210891,-0.001898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210891,-0.001898,0.002250,0.249990,0,0);}
.m11d_c00150{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);}
.m136_c00150{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);}
.m57_c00150{transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);}
.med_c00150{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);}
.m9f_c00150{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);}
.m102_c00150{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);}
.mf1_c00150{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);}
.m71_c00150{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);}
.m110_c00150{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);}
.m42_c00150{transform:matrix(0.214650,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214650,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214650,-0.002576,0.003000,0.249982,0,0);}
.m5e_c00150{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);}
.md1_c00150{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);}
.m121_c00150{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);}
.me1_c00150{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);}
.m129_c00150{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);}
.m10a_c00150{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);}
.m100_c00150{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);}
.mb9_c00150{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);}
.m108_c00150{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);}
.mff_c00150{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);}
.m8f_c00150{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);}
.m80_c00150{transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{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);}
.m2e_c00150{transform:matrix(0.220126,-0.004403,0.004999,0.249950,0,0);-ms-transform:matrix(0.220126,-0.004403,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220126,-0.004403,0.004999,0.249950,0,0);}
.m107_c00150{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);}
.mc1_c00150{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);}
.m10e_c00150{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);}
.m142_c00150{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);}
.mbd_c00150{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);}
.m120_c00150{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);}
.m2a_c00150{transform:matrix(0.221721,-0.004434,0.004999,0.249950,0,0);-ms-transform:matrix(0.221721,-0.004434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221721,-0.004434,0.004999,0.249950,0,0);}
.me2_c00150{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);}
.mee_c00150{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);}
.m91_c00150{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);}
.m5f_c00150{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);}
.m17_c00150{transform:matrix(0.224010,-0.004480,0.004999,0.249950,0,0);-ms-transform:matrix(0.224010,-0.004480,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224010,-0.004480,0.004999,0.249950,0,0);}
.mc8_c00150{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m12e_c00150{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);}
.m7b_c00150{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);}
.mda_c00150{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);}
.m39_c00150{transform:matrix(0.226570,-0.004531,0.004999,0.249950,0,0);-ms-transform:matrix(0.226570,-0.004531,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226570,-0.004531,0.004999,0.249950,0,0);}
.md5_c00150{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);}
.m37_c00150{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);}
.m111_c00150{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);}
.m13d_c00150{transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);}
.mc5_c00150{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);}
.m7_c00150{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);}
.m137_c00150{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);}
.m141_c00150{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);}
.m9b_c00150{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);}
.mea_c00150{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.m125_c00150{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);}
.m1d_c00150{transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);-ms-transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);}
.m49_c00150{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);}
.m13c_c00150{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);}
.m25_c00150{transform:matrix(0.233903,-0.004678,0.004999,0.249950,0,0);-ms-transform:matrix(0.233903,-0.004678,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233903,-0.004678,0.004999,0.249950,0,0);}
.m13_c00150{transform:matrix(0.233907,-0.004210,0.004499,0.249960,0,0);-ms-transform:matrix(0.233907,-0.004210,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233907,-0.004210,0.004499,0.249960,0,0);}
.m11b_c00150{transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{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);}
.m119_c00150{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);}
.m11e_c00150{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);}
.mb8_c00150{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);}
.mba_c00150{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.mb7_c00150{transform:matrix(0.239840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239840,0.000000,0.000000,0.250000,0,0);}
.m6e_c00150{transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.240618,-0.002887,0.003000,0.249982,0,0);-ms-transform:matrix(0.240618,-0.002887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240618,-0.002887,0.003000,0.249982,0,0);}
.mc2_c00150{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);}
.mca_c00150{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);}
.md3_c00150{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);}
.m6d_c00150{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);}
.m131_c00150{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);}
.m52_c00150{transform:matrix(0.242545,-0.002183,0.002250,0.249990,0,0);-ms-transform:matrix(0.242545,-0.002183,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242545,-0.002183,0.002250,0.249990,0,0);}
.m6_c00150{transform:matrix(0.243016,-0.003402,0.003500,0.249976,0,0);-ms-transform:matrix(0.243016,-0.003402,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243016,-0.003402,0.003500,0.249976,0,0);}
.m4e_c00150{transform:matrix(0.243760,-0.002194,0.002250,0.249990,0,0);-ms-transform:matrix(0.243760,-0.002194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243760,-0.002194,0.002250,0.249990,0,0);}
.m12b_c00150{transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.245792,-0.002950,0.003000,0.249982,0,0);-ms-transform:matrix(0.245792,-0.002950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245792,-0.002950,0.003000,0.249982,0,0);}
.m54_c00150{transform:matrix(0.246195,-0.002216,0.002250,0.249990,0,0);-ms-transform:matrix(0.246195,-0.002216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246195,-0.002216,0.002250,0.249990,0,0);}
.m4b_c00150{transform:matrix(0.247955,-0.002232,0.002250,0.249990,0,0);-ms-transform:matrix(0.247955,-0.002232,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247955,-0.002232,0.002250,0.249990,0,0);}
.m93_c00150{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);}
.m10b_c00150{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.ma1_c00150{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m124_c00150{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);}
.m76_c00150{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);}
.mf5_c00150{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{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);}
.m8d_c00150{transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.258138,-0.005163,0.004999,0.249950,0,0);-ms-transform:matrix(0.258138,-0.005163,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258138,-0.005163,0.004999,0.249950,0,0);}
.md7_c00150{transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.259593,-0.005192,0.004999,0.249950,0,0);-ms-transform:matrix(0.259593,-0.005192,0.004999,0.249950,0,0);-webkit-transform:matrix(0.259593,-0.005192,0.004999,0.249950,0,0);}
.me8_c00150{transform:matrix(0.259950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{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);}
.m13e_c00150{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);}
.m1_c00150{transform:matrix(0.261229,-0.003657,0.003500,0.249976,0,0);-ms-transform:matrix(0.261229,-0.003657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261229,-0.003657,0.003500,0.249976,0,0);}
.mbf_c00150{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);}
.m1e_c00150{transform:matrix(0.262842,-0.005257,0.004999,0.249950,0,0);-ms-transform:matrix(0.262842,-0.005257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262842,-0.005257,0.004999,0.249950,0,0);}
.m6b_c00150{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);}
.m106_c00150{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);}
.ma2_c00150{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m130_c00150{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);}
.mcd_c00150{transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);}
.m116_c00150{transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);}
.m10d_c00150{transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270450,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.270846,-0.004875,0.004499,0.249960,0,0);-ms-transform:matrix(0.270846,-0.004875,0.004499,0.249960,0,0);-webkit-transform:matrix(0.270846,-0.004875,0.004499,0.249960,0,0);}
.m104_c00150{transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{transform:matrix(0.273360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273360,0.000000,0.000000,0.250000,0,0);}
.m103_c00150{transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275905,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.278960,-0.005021,0.004499,0.249960,0,0);-ms-transform:matrix(0.278960,-0.005021,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278960,-0.005021,0.004499,0.249960,0,0);}
.m81_c00150{transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);}
.m122_c00150{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);}
.mc6_c00150{transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);}
.me6_c00150{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.303423,-0.003641,0.003000,0.249982,0,0);-ms-transform:matrix(0.303423,-0.003641,0.003000,0.249982,0,0);-webkit-transform:matrix(0.303423,-0.003641,0.003000,0.249982,0,0);}
.m109_c00150{transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);}
.mdd_c00150{transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);}
.md4_c00150{transform:matrix(0.319890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319890,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.321991,-0.006440,0.004999,0.249950,0,0);-ms-transform:matrix(0.321991,-0.006440,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321991,-0.006440,0.004999,0.249950,0,0);}
.m90_c00150{transform:matrix(0.324355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324355,0.000000,0.000000,0.250000,0,0);}
.m13f_c00150{transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);}
.mb6_c00150{transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);}
.mce_c00150{transform:matrix(0.336630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336630,0.000000,0.000000,0.250000,0,0);}
.md6_c00150{transform:matrix(0.352015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352015,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.353233,-0.006358,0.004499,0.249960,0,0);-ms-transform:matrix(0.353233,-0.006358,0.004499,0.249960,0,0);-webkit-transform:matrix(0.353233,-0.006358,0.004499,0.249960,0,0);}
.m82_c00150{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);}
.mb_c00150{transform:matrix(0.357047,-0.006427,0.004499,0.249960,0,0);-ms-transform:matrix(0.357047,-0.006427,0.004499,0.249960,0,0);-webkit-transform:matrix(0.357047,-0.006427,0.004499,0.249960,0,0);}
.m11f_c00150{transform:matrix(0.362295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362295,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.365014,-0.005110,0.003500,0.249976,0,0);-ms-transform:matrix(0.365014,-0.005110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.365014,-0.005110,0.003500,0.249976,0,0);}
.mc_c00150{transform:matrix(0.365911,-0.006586,0.004499,0.249960,0,0);-ms-transform:matrix(0.365911,-0.006586,0.004499,0.249960,0,0);-webkit-transform:matrix(0.365911,-0.006586,0.004499,0.249960,0,0);}
.me5_c00150{transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.377579,-0.006796,0.004499,0.249960,0,0);-ms-transform:matrix(0.377579,-0.006796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.377579,-0.006796,0.004499,0.249960,0,0);}
.m3_c00150{transform:matrix(0.380688,-0.005330,0.003500,0.249976,0,0);-ms-transform:matrix(0.380688,-0.005330,0.003500,0.249976,0,0);-webkit-transform:matrix(0.380688,-0.005330,0.003500,0.249976,0,0);}
.ma_c00150{transform:matrix(0.380753,-0.006854,0.004499,0.249960,0,0);-ms-transform:matrix(0.380753,-0.006854,0.004499,0.249960,0,0);-webkit-transform:matrix(0.380753,-0.006854,0.004499,0.249960,0,0);}
.m132_c00150{transform:matrix(0.382670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382670,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.384828,-0.007697,0.004999,0.249950,0,0);-ms-transform:matrix(0.384828,-0.007697,0.004999,0.249950,0,0);-webkit-transform:matrix(0.384828,-0.007697,0.004999,0.249950,0,0);}
.m2_c00150{transform:matrix(0.430308,-0.006024,0.003500,0.249976,0,0);-ms-transform:matrix(0.430308,-0.006024,0.003500,0.249976,0,0);-webkit-transform:matrix(0.430308,-0.006024,0.003500,0.249976,0,0);}
.m10_c00150{transform:matrix(0.433105,-0.007796,0.004499,0.249960,0,0);-ms-transform:matrix(0.433105,-0.007796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.433105,-0.007796,0.004499,0.249960,0,0);}
.m143_c00150{transform:matrix(0.442930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442930,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{transform:matrix(0.468916,-0.004220,0.002250,0.249990,0,0);-ms-transform:matrix(0.468916,-0.004220,0.002250,0.249990,0,0);-webkit-transform:matrix(0.468916,-0.004220,0.002250,0.249990,0,0);}
.mc0_c00150{transform:matrix(0.477505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477505,0.000000,0.000000,0.250000,0,0);}
.m133_c00150{transform:matrix(0.479455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.493611,-0.009872,0.004999,0.249950,0,0);-ms-transform:matrix(0.493611,-0.009872,0.004999,0.249950,0,0);-webkit-transform:matrix(0.493611,-0.009872,0.004999,0.249950,0,0);}
.m16_c00150{transform:matrix(0.530444,-0.010609,0.004999,0.249950,0,0);-ms-transform:matrix(0.530444,-0.010609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.530444,-0.010609,0.004999,0.249950,0,0);}
.mf_c00150{transform:matrix(0.561704,-0.010111,0.004499,0.249960,0,0);-ms-transform:matrix(0.561704,-0.010111,0.004499,0.249960,0,0);-webkit-transform:matrix(0.561704,-0.010111,0.004499,0.249960,0,0);}
.md2_c00150{transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);}
.m115_c00150{transform:matrix(0.747575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747575,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(1.654280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.654280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.654280,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(2.988870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.988870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.988870,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;}
.fc0_c00150{color:transparent;}
.fs1d_c00150{font-size:16.800000px;}
.fs2_c00150{font-size:22.050000px;}
.fs10_c00150{font-size:37.800000px;}
.fs1e_c00150{font-size:40.950000px;}
.fs18_c00150{font-size:44.100000px;}
.fs17_c00150{font-size:45.150000px;}
.fs14_c00150{font-size:46.200000px;}
.fs15_c00150{font-size:48.300000px;}
.fs1a_c00150{font-size:49.350000px;}
.fs13_c00150{font-size:50.400000px;}
.fs16_c00150{font-size:51.450000px;}
.fs1b_c00150{font-size:52.500000px;}
.fs1c_c00150{font-size:53.550000px;}
.fs12_c00150{font-size:54.600000px;}
.fs11_c00150{font-size:55.650000px;}
.fs19_c00150{font-size:57.750000px;}
.fs3_c00150{font-size:59.859695px;}
.fsa_c00150{font-size:60.900000px;}
.fsf_c00150{font-size:65.102636px;}
.fs5_c00150{font-size:66.163229px;}
.fsd_c00150{font-size:67.202722px;}
.fs9_c00150{font-size:67.213439px;}
.fsc_c00150{font-size:68.254914px;}
.fse_c00150{font-size:69.302807px;}
.fs6_c00150{font-size:69.313859px;}
.fs7_c00150{font-size:71.414279px;}
.fsb_c00150{font-size:73.505292px;}
.fs8_c00150{font-size:73.514699px;}
.fs0_c00150{font-size:75.600000px;}
.fs4_c00150{font-size:88.214287px;}
.fs1_c00150{font-size:91.358952px;}
.y0_c00150{bottom:0.000000px;}
.y73_c00150{bottom:48.600000px;}
.y72_c00150{bottom:51.840000px;}
.y71_c00150{bottom:145.929000px;}
.y89_c00150{bottom:146.247000px;}
.y70_c00150{bottom:164.002500px;}
.y88_c00150{bottom:165.691500px;}
.y6f_c00150{bottom:182.128500px;}
.y87_c00150{bottom:183.108000px;}
.y6e_c00150{bottom:199.687500px;}
.y75_c00150{bottom:200.214000px;}
.y85_c00150{bottom:201.184500px;}
.y86_c00150{bottom:206.820000px;}
.y6d_c00150{bottom:217.197000px;}
.y84_c00150{bottom:218.680500px;}
.y6c_c00150{bottom:235.125000px;}
.y81_c00150{bottom:236.658000px;}
.y6b_c00150{bottom:252.943500px;}
.y80_c00150{bottom:254.383500px;}
.y6a_c00150{bottom:271.102500px;}
.y7f_c00150{bottom:271.759500px;}
.y69_c00150{bottom:288.724500px;}
.y7e_c00150{bottom:290.077500px;}
.y68_c00150{bottom:306.561000px;}
.y7d_c00150{bottom:307.846500px;}
.y67_c00150{bottom:324.520500px;}
.y83_c00150{bottom:325.767000px;}
.y7c_c00150{bottom:326.968500px;}
.y66_c00150{bottom:342.226500px;}
.y82_c00150{bottom:343.173000px;}
.y7b_c00150{bottom:344.523000px;}
.y65_c00150{bottom:359.994000px;}
.y7a_c00150{bottom:361.632000px;}
.y64_c00150{bottom:377.190000px;}
.y62_c00150{bottom:377.878500px;}
.y79_c00150{bottom:379.650000px;}
.y63_c00150{bottom:395.167500px;}
.y61_c00150{bottom:395.422500px;}
.y78_c00150{bottom:396.865500px;}
.y60_c00150{bottom:412.830000px;}
.y5f_c00150{bottom:412.936500px;}
.y77_c00150{bottom:415.132500px;}
.y74_c00150{bottom:418.500000px;}
.y5e_c00150{bottom:430.117500px;}
.y76_c00150{bottom:432.525000px;}
.y5d_c00150{bottom:467.640000px;}
.y54_c00150{bottom:486.861730px;}
.y55_c00150{bottom:486.861987px;}
.y56_c00150{bottom:486.862453px;}
.y57_c00150{bottom:486.862770px;}
.y58_c00150{bottom:486.862907px;}
.y59_c00150{bottom:486.862923px;}
.y5b_c00150{bottom:486.862969px;}
.y5c_c00150{bottom:486.863122px;}
.y5a_c00150{bottom:486.863223px;}
.y53_c00150{bottom:508.920522px;}
.y4b_c00150{bottom:530.551500px;}
.y4c_c00150{bottom:531.270429px;}
.y4d_c00150{bottom:531.616137px;}
.y4e_c00150{bottom:531.950896px;}
.y4f_c00150{bottom:532.451477px;}
.y50_c00150{bottom:532.673079px;}
.y51_c00150{bottom:532.959387px;}
.y52_c00150{bottom:533.470065px;}
.y42_c00150{bottom:552.419460px;}
.y43_c00150{bottom:552.640818px;}
.y44_c00150{bottom:552.831864px;}
.y45_c00150{bottom:553.216734px;}
.y46_c00150{bottom:553.547964px;}
.y47_c00150{bottom:554.118774px;}
.y48_c00150{bottom:554.325300px;}
.y49_c00150{bottom:554.728410px;}
.y4a_c00150{bottom:555.235050px;}
.y3b_c00150{bottom:574.969500px;}
.y3c_c00150{bottom:575.101500px;}
.y3d_c00150{bottom:575.801250px;}
.y3e_c00150{bottom:576.277566px;}
.y3f_c00150{bottom:576.890196px;}
.y40_c00150{bottom:577.551984px;}
.y41_c00150{bottom:578.326488px;}
.y36_c00150{bottom:618.033000px;}
.y37_c00150{bottom:619.192590px;}
.y38_c00150{bottom:620.318790px;}
.y39_c00150{bottom:621.090390px;}
.y3a_c00150{bottom:622.085730px;}
.y2d_c00150{bottom:641.241390px;}
.y2e_c00150{bottom:641.588940px;}
.y2f_c00150{bottom:642.038700px;}
.y30_c00150{bottom:642.576570px;}
.y31_c00150{bottom:643.250460px;}
.y32_c00150{bottom:643.528290px;}
.y33_c00150{bottom:644.142030px;}
.y34_c00150{bottom:644.464980px;}
.y35_c00150{bottom:644.755830px;}
.y24_c00150{bottom:664.465440px;}
.y25_c00150{bottom:665.893050px;}
.y26_c00150{bottom:666.412140px;}
.y27_c00150{bottom:666.752190px;}
.y28_c00150{bottom:667.225830px;}
.y29_c00150{bottom:667.653750px;}
.y2a_c00150{bottom:668.281770px;}
.y2b_c00150{bottom:668.607450px;}
.y2c_c00150{bottom:668.989140px;}
.y1c_c00150{bottom:686.613120px;}
.y1d_c00150{bottom:687.938640px;}
.y1e_c00150{bottom:688.890660px;}
.y1f_c00150{bottom:690.150570px;}
.y20_c00150{bottom:690.503220px;}
.y21_c00150{bottom:691.297740px;}
.y22_c00150{bottom:691.637400px;}
.y23_c00150{bottom:692.041320px;}
.y17_c00150{bottom:709.807500px;}
.y18_c00150{bottom:713.283000px;}
.y19_c00150{bottom:713.848710px;}
.y1a_c00150{bottom:715.095870px;}
.y1b_c00150{bottom:716.096400px;}
.y12_c00150{bottom:747.088782px;}
.y13_c00150{bottom:749.208261px;}
.y14_c00150{bottom:750.944574px;}
.y15_c00150{bottom:751.343961px;}
.y16_c00150{bottom:752.098287px;}
.yb_c00150{bottom:786.298500px;}
.yc_c00150{bottom:787.020777px;}
.yd_c00150{bottom:787.502106px;}
.ye_c00150{bottom:788.014998px;}
.yf_c00150{bottom:788.509233px;}
.y10_c00150{bottom:788.514741px;}
.y11_c00150{bottom:789.030333px;}
.ya_c00150{bottom:818.910000px;}
.y9_c00150{bottom:822.286500px;}
.y2_c00150{bottom:844.563000px;}
.y3_c00150{bottom:844.948665px;}
.y4_c00150{bottom:845.317320px;}
.y5_c00150{bottom:846.343506px;}
.y6_c00150{bottom:847.005489px;}
.y7_c00150{bottom:847.579671px;}
.y8_c00150{bottom:848.622909px;}
.y1_c00150{bottom:848.928000px;}
.h1f_c00150{height:16.800000px;}
.h4_c00150{height:22.050000px;}
.h12_c00150{height:37.800000px;}
.h20_c00150{height:40.950000px;}
.h1a_c00150{height:44.100000px;}
.h19_c00150{height:45.150000px;}
.h16_c00150{height:46.200000px;}
.h17_c00150{height:48.300000px;}
.h1c_c00150{height:49.350000px;}
.h15_c00150{height:50.400000px;}
.h18_c00150{height:51.450000px;}
.h1d_c00150{height:52.500000px;}
.h1e_c00150{height:53.550000px;}
.h14_c00150{height:54.600000px;}
.h13_c00150{height:55.650000px;}
.h1b_c00150{height:57.750000px;}
.h5_c00150{height:59.859695px;}
.hc_c00150{height:60.900000px;}
.h11_c00150{height:65.102636px;}
.h7_c00150{height:66.163229px;}
.hf_c00150{height:67.202722px;}
.hb_c00150{height:67.213439px;}
.he_c00150{height:68.254914px;}
.h10_c00150{height:69.302807px;}
.h8_c00150{height:69.313859px;}
.h9_c00150{height:71.414279px;}
.hd_c00150{height:73.505292px;}
.ha_c00150{height:73.514699px;}
.h2_c00150{height:75.600000px;}
.h6_c00150{height:88.214287px;}
.h3_c00150{height:91.358952px;}
.h1_c00150{height:1005.000000px;}
.h0_c00150{height:1005.150000px;}
.w0_c00150{width:705.450000px;}
.w1_c00150{width:705.750000px;}
.x0_c00150{left:0.000000px;}
.x7d_c00150{left:84.240000px;}
.x85_c00150{left:92.610000px;}
.x72_c00150{left:93.690000px;}
.x4f_c00150{left:100.440000px;}
.x67_c00150{left:102.060000px;}
.x7e_c00150{left:103.140000px;}
.x49_c00150{left:113.130000px;}
.x76_c00150{left:117.180000px;}
.x81_c00150{left:118.800000px;}
.x10_c00150{left:120.289128px;}
.x55_c00150{left:122.310000px;}
.x68_c00150{left:124.740000px;}
.x60_c00150{left:127.440000px;}
.x58_c00150{left:130.410000px;}
.x29_c00150{left:133.804650px;}
.x1a_c00150{left:134.909520px;}
.x39_c00150{left:136.189284px;}
.x4b_c00150{left:137.430000px;}
.x6e_c00150{left:140.130000px;}
.x5d_c00150{left:143.100000px;}
.x7f_c00150{left:146.340000px;}
.x65_c00150{left:147.690000px;}
.x73_c00150{left:149.850000px;}
.x56_c00150{left:150.930000px;}
.x4c_c00150{left:156.870000px;}
.x53_c00150{left:159.030000px;}
.x2a_c00150{left:160.485870px;}
.x86_c00150{left:162.810000px;}
.x77_c00150{left:169.020000px;}
.x43_c00150{left:171.993117px;}
.x80_c00150{left:173.070000px;}
.x70_c00150{left:174.420000px;}
.x61_c00150{left:177.390000px;}
.x74_c00150{left:180.630000px;}
.x2_c00150{left:182.491500px;}
.x57_c00150{left:186.030000px;}
.x2f_c00150{left:188.632500px;}
.x6f_c00150{left:189.810000px;}
.x4d_c00150{left:191.160000px;}
.x82_c00150{left:192.780000px;}
.x2b_c00150{left:195.053700px;}
.x34_c00150{left:196.290000px;}
.x66_c00150{left:198.450000px;}
.x69_c00150{left:200.070000px;}
.x78_c00150{left:202.230000px;}
.x59_c00150{left:203.580000px;}
.x62_c00150{left:205.740000px;}
.x44_c00150{left:208.714587px;}
.x3_c00150{left:210.039000px;}
.x35_c00150{left:215.098500px;}
.x79_c00150{left:216.540000px;}
.x5a_c00150{left:217.620000px;}
.x15_c00150{left:219.148500px;}
.x50_c00150{left:221.400000px;}
.x1b_c00150{left:223.244340px;}
.x3a_c00150{left:224.756970px;}
.x6b_c00150{left:225.990000px;}
.x83_c00150{left:229.230000px;}
.x4a_c00150{left:232.470000px;}
.xb_c00150{left:234.271500px;}
.x4_c00150{left:236.371500px;}
.x6c_c00150{left:238.410000px;}
.x5e_c00150{left:239.490000px;}
.x45_c00150{left:244.085949px;}
.x63_c00150{left:245.430000px;}
.x30_c00150{left:246.612000px;}
.x5f_c00150{left:248.940000px;}
.x42_c00150{left:251.916079px;}
.x22_c00150{left:254.443050px;}
.x64_c00150{left:260.280000px;}
.x3b_c00150{left:261.485784px;}
.x7a_c00150{left:264.600000px;}
.x4e_c00150{left:267.030000px;}
.x71_c00150{left:268.920000px;}
.x6d_c00150{left:272.700000px;}
.xc_c00150{left:274.398000px;}
.x5b_c00150{left:275.400000px;}
.x51_c00150{left:277.020000px;}
.x6a_c00150{left:280.530000px;}
.x1c_c00150{left:286.676670px;}
.x2c_c00150{left:288.279750px;}
.x7b_c00150{left:289.980000px;}
.x3f_c00150{left:291.142500px;}
.x54_c00150{left:292.950000px;}
.x52_c00150{left:295.380000px;}
.x11_c00150{left:296.973717px;}
.xd_c00150{left:301.138500px;}
.x31_c00150{left:302.922000px;}
.x7c_c00150{left:306.450000px;}
.x5_c00150{left:309.670500px;}
.x36_c00150{left:313.104000px;}
.x84_c00150{left:315.630000px;}
.x75_c00150{left:320.220000px;}
.x3c_c00150{left:324.930570px;}
.x23_c00150{left:326.061510px;}
.xe_c00150{left:329.632500px;}
.x87_c00150{left:331.020000px;}
.x46_c00150{left:332.110077px;}
.x88_c00150{left:334.530000px;}
.x5c_c00150{left:335.610000px;}
.x32_c00150{left:341.502000px;}
.x91_c00150{left:343.170000px;}
.x40_c00150{left:346.762500px;}
.x3d_c00150{left:347.891898px;}
.x89_c00150{left:349.650000px;}
.x6_c00150{left:356.955000px;}
.xa8_c00150{left:361.800000px;}
.x37_c00150{left:364.156500px;}
.x24_c00150{left:365.499810px;}
.xad_c00150{left:368.550000px;}
.x1d_c00150{left:370.680570px;}
.x9a_c00150{left:374.490000px;}
.x92_c00150{left:378.000000px;}
.xa9_c00150{left:379.080000px;}
.x2d_c00150{left:381.718830px;}
.x47_c00150{left:383.952775px;}
.xf_c00150{left:386.040000px;}
.xb7_c00150{left:389.880000px;}
.x33_c00150{left:391.269000px;}
.x16_c00150{left:392.923500px;}
.x1e_c00150{left:394.165410px;}
.x7_c00150{left:397.968000px;}
.xa3_c00150{left:399.060000px;}
.x25_c00150{left:401.151510px;}
.x2e_c00150{left:404.139480px;}
.x9_c00150{left:406.620000px;}
.xa0_c00150{left:409.860000px;}
.x8a_c00150{left:413.100000px;}
.x93_c00150{left:415.530000px;}
.x9b_c00150{left:416.610000px;}
.x38_c00150{left:419.305500px;}
.x17_c00150{left:421.209000px;}
.xb8_c00150{left:425.250000px;}
.xa_c00150{left:430.110000px;}
.xb4_c00150{left:433.350000px;}
.xb0_c00150{left:434.970000px;}
.xba_c00150{left:436.860000px;}
.xb1_c00150{left:437.940000px;}
.xaa_c00150{left:439.020000px;}
.x98_c00150{left:440.100000px;}
.x12_c00150{left:441.617823px;}
.x48_c00150{left:444.974716px;}
.x1f_c00150{left:447.096690px;}
.x3e_c00150{left:448.958034px;}
.xa4_c00150{left:450.900000px;}
.x26_c00150{left:453.485880px;}
.xae_c00150{left:455.490000px;}
.xbb_c00150{left:458.190000px;}
.x41_c00150{left:459.939000px;}
.xb5_c00150{left:461.700000px;}
.x8b_c00150{left:463.050000px;}
.xa5_c00150{left:464.670000px;}
.x20_c00150{left:469.706940px;}
.x8_c00150{left:472.485000px;}
.x13_c00150{left:474.892914px;}
.x1_c00150{left:478.440000px;}
.x27_c00150{left:480.574200px;}
.x9c_c00150{left:482.220000px;}
.x18_c00150{left:483.567000px;}
.x8e_c00150{left:487.350000px;}
.xab_c00150{left:491.670000px;}
.x94_c00150{left:492.750000px;}
.x21_c00150{left:496.655640px;}
.xa6_c00150{left:499.770000px;}
.x9d_c00150{left:501.930000px;}
.xa1_c00150{left:503.820000px;}
.x8f_c00150{left:508.680000px;}
.x28_c00150{left:512.413800px;}
.x8c_c00150{left:516.240000px;}
.x90_c00150{left:517.320000px;}
.xb9_c00150{left:518.670000px;}
.x95_c00150{left:526.770000px;}
.xac_c00150{left:532.170000px;}
.x19_c00150{left:533.593500px;}
.x9e_c00150{left:534.870000px;}
.xa2_c00150{left:536.220000px;}
.x14_c00150{left:537.806718px;}
.x8d_c00150{left:539.730000px;}
.xb2_c00150{left:541.350000px;}
.x96_c00150{left:545.940000px;}
.x9f_c00150{left:549.990000px;}
.xa7_c00150{left:552.960000px;}
.x99_c00150{left:555.390000px;}
.xb3_c00150{left:557.010000px;}
.x97_c00150{left:559.710000px;}
.xb6_c00150{left:563.220000px;}
.xaf_c00150{left:570.780000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.fs1d_c00150{font-size:14.933333pt;}
.fs2_c00150{font-size:19.600000pt;}
.fs10_c00150{font-size:33.600000pt;}
.fs1e_c00150{font-size:36.400000pt;}
.fs18_c00150{font-size:39.200000pt;}
.fs17_c00150{font-size:40.133333pt;}
.fs14_c00150{font-size:41.066667pt;}
.fs15_c00150{font-size:42.933333pt;}
.fs1a_c00150{font-size:43.866667pt;}
.fs13_c00150{font-size:44.800000pt;}
.fs16_c00150{font-size:45.733333pt;}
.fs1b_c00150{font-size:46.666667pt;}
.fs1c_c00150{font-size:47.600000pt;}
.fs12_c00150{font-size:48.533333pt;}
.fs11_c00150{font-size:49.466667pt;}
.fs19_c00150{font-size:51.333333pt;}
.fs3_c00150{font-size:53.208618pt;}
.fsa_c00150{font-size:54.133333pt;}
.fsf_c00150{font-size:57.869010pt;}
.fs5_c00150{font-size:58.811759pt;}
.fsd_c00150{font-size:59.735752pt;}
.fs9_c00150{font-size:59.745279pt;}
.fsc_c00150{font-size:60.671035pt;}
.fse_c00150{font-size:61.602495pt;}
.fs6_c00150{font-size:61.612319pt;}
.fs7_c00150{font-size:63.479359pt;}
.fsb_c00150{font-size:65.338037pt;}
.fs8_c00150{font-size:65.346399pt;}
.fs0_c00150{font-size:67.200000pt;}
.fs4_c00150{font-size:78.412700pt;}
.fs1_c00150{font-size:81.207957pt;}
.y0_c00150{bottom:0.000000pt;}
.y73_c00150{bottom:43.200000pt;}
.y72_c00150{bottom:46.080000pt;}
.y71_c00150{bottom:129.714667pt;}
.y89_c00150{bottom:129.997333pt;}
.y70_c00150{bottom:145.780000pt;}
.y88_c00150{bottom:147.281333pt;}
.y6f_c00150{bottom:161.892000pt;}
.y87_c00150{bottom:162.762667pt;}
.y6e_c00150{bottom:177.500000pt;}
.y75_c00150{bottom:177.968000pt;}
.y85_c00150{bottom:178.830667pt;}
.y86_c00150{bottom:183.840000pt;}
.y6d_c00150{bottom:193.064000pt;}
.y84_c00150{bottom:194.382667pt;}
.y6c_c00150{bottom:209.000000pt;}
.y81_c00150{bottom:210.362667pt;}
.y6b_c00150{bottom:224.838667pt;}
.y80_c00150{bottom:226.118667pt;}
.y6a_c00150{bottom:240.980000pt;}
.y7f_c00150{bottom:241.564000pt;}
.y69_c00150{bottom:256.644000pt;}
.y7e_c00150{bottom:257.846667pt;}
.y68_c00150{bottom:272.498667pt;}
.y7d_c00150{bottom:273.641333pt;}
.y67_c00150{bottom:288.462667pt;}
.y83_c00150{bottom:289.570667pt;}
.y7c_c00150{bottom:290.638667pt;}
.y66_c00150{bottom:304.201333pt;}
.y82_c00150{bottom:305.042667pt;}
.y7b_c00150{bottom:306.242667pt;}
.y65_c00150{bottom:319.994667pt;}
.y7a_c00150{bottom:321.450667pt;}
.y64_c00150{bottom:335.280000pt;}
.y62_c00150{bottom:335.892000pt;}
.y79_c00150{bottom:337.466667pt;}
.y63_c00150{bottom:351.260000pt;}
.y61_c00150{bottom:351.486667pt;}
.y78_c00150{bottom:352.769333pt;}
.y60_c00150{bottom:366.960000pt;}
.y5f_c00150{bottom:367.054667pt;}
.y77_c00150{bottom:369.006667pt;}
.y74_c00150{bottom:372.000000pt;}
.y5e_c00150{bottom:382.326667pt;}
.y76_c00150{bottom:384.466667pt;}
.y5d_c00150{bottom:415.680000pt;}
.y54_c00150{bottom:432.765983pt;}
.y55_c00150{bottom:432.766211pt;}
.y56_c00150{bottom:432.766625pt;}
.y57_c00150{bottom:432.766907pt;}
.y58_c00150{bottom:432.767028pt;}
.y59_c00150{bottom:432.767043pt;}
.y5b_c00150{bottom:432.767084pt;}
.y5c_c00150{bottom:432.767220pt;}
.y5a_c00150{bottom:432.767309pt;}
.y53_c00150{bottom:452.373797pt;}
.y4b_c00150{bottom:471.601333pt;}
.y4c_c00150{bottom:472.240381pt;}
.y4d_c00150{bottom:472.547677pt;}
.y4e_c00150{bottom:472.845241pt;}
.y4f_c00150{bottom:473.290201pt;}
.y50_c00150{bottom:473.487181pt;}
.y51_c00150{bottom:473.741677pt;}
.y52_c00150{bottom:474.195613pt;}
.y42_c00150{bottom:491.039520pt;}
.y43_c00150{bottom:491.236283pt;}
.y44_c00150{bottom:491.406101pt;}
.y45_c00150{bottom:491.748208pt;}
.y46_c00150{bottom:492.042635pt;}
.y47_c00150{bottom:492.550021pt;}
.y48_c00150{bottom:492.733600pt;}
.y49_c00150{bottom:493.091920pt;}
.y4a_c00150{bottom:493.542267pt;}
.y3b_c00150{bottom:511.084000pt;}
.y3c_c00150{bottom:511.201333pt;}
.y3d_c00150{bottom:511.823333pt;}
.y3e_c00150{bottom:512.246725pt;}
.y3f_c00150{bottom:512.791285pt;}
.y40_c00150{bottom:513.379541pt;}
.y41_c00150{bottom:514.067989pt;}
.y36_c00150{bottom:549.362667pt;}
.y37_c00150{bottom:550.393413pt;}
.y38_c00150{bottom:551.394480pt;}
.y39_c00150{bottom:552.080347pt;}
.y3a_c00150{bottom:552.965093pt;}
.y2d_c00150{bottom:569.992347pt;}
.y2e_c00150{bottom:570.301280pt;}
.y2f_c00150{bottom:570.701067pt;}
.y30_c00150{bottom:571.179173pt;}
.y31_c00150{bottom:571.778187pt;}
.y32_c00150{bottom:572.025147pt;}
.y33_c00150{bottom:572.570693pt;}
.y34_c00150{bottom:572.857760pt;}
.y35_c00150{bottom:573.116293pt;}
.y24_c00150{bottom:590.635947pt;}
.y25_c00150{bottom:591.904933pt;}
.y26_c00150{bottom:592.366347pt;}
.y27_c00150{bottom:592.668613pt;}
.y28_c00150{bottom:593.089627pt;}
.y29_c00150{bottom:593.470000pt;}
.y2a_c00150{bottom:594.028240pt;}
.y2b_c00150{bottom:594.317733pt;}
.y2c_c00150{bottom:594.657013pt;}
.y1c_c00150{bottom:610.322773pt;}
.y1d_c00150{bottom:611.501013pt;}
.y1e_c00150{bottom:612.347253pt;}
.y1f_c00150{bottom:613.467173pt;}
.y20_c00150{bottom:613.780640pt;}
.y21_c00150{bottom:614.486880pt;}
.y22_c00150{bottom:614.788800pt;}
.y23_c00150{bottom:615.147840pt;}
.y17_c00150{bottom:630.940000pt;}
.y18_c00150{bottom:634.029333pt;}
.y19_c00150{bottom:634.532187pt;}
.y1a_c00150{bottom:635.640773pt;}
.y1b_c00150{bottom:636.530133pt;}
.y12_c00150{bottom:664.078917pt;}
.y13_c00150{bottom:665.962899pt;}
.y14_c00150{bottom:667.506288pt;}
.y15_c00150{bottom:667.861299pt;}
.y16_c00150{bottom:668.531811pt;}
.yb_c00150{bottom:698.932000pt;}
.yc_c00150{bottom:699.574024pt;}
.yd_c00150{bottom:700.001872pt;}
.ye_c00150{bottom:700.457776pt;}
.yf_c00150{bottom:700.897096pt;}
.y10_c00150{bottom:700.901992pt;}
.y11_c00150{bottom:701.360296pt;}
.ya_c00150{bottom:727.920000pt;}
.y9_c00150{bottom:730.921333pt;}
.y2_c00150{bottom:750.722667pt;}
.y3_c00150{bottom:751.065480pt;}
.y4_c00150{bottom:751.393173pt;}
.y5_c00150{bottom:752.305339pt;}
.y6_c00150{bottom:752.893768pt;}
.y7_c00150{bottom:753.404152pt;}
.y8_c00150{bottom:754.331475pt;}
.y1_c00150{bottom:754.602667pt;}
.h1f_c00150{height:14.933333pt;}
.h4_c00150{height:19.600000pt;}
.h12_c00150{height:33.600000pt;}
.h20_c00150{height:36.400000pt;}
.h1a_c00150{height:39.200000pt;}
.h19_c00150{height:40.133333pt;}
.h16_c00150{height:41.066667pt;}
.h17_c00150{height:42.933333pt;}
.h1c_c00150{height:43.866667pt;}
.h15_c00150{height:44.800000pt;}
.h18_c00150{height:45.733333pt;}
.h1d_c00150{height:46.666667pt;}
.h1e_c00150{height:47.600000pt;}
.h14_c00150{height:48.533333pt;}
.h13_c00150{height:49.466667pt;}
.h1b_c00150{height:51.333333pt;}
.h5_c00150{height:53.208618pt;}
.hc_c00150{height:54.133333pt;}
.h11_c00150{height:57.869010pt;}
.h7_c00150{height:58.811759pt;}
.hf_c00150{height:59.735752pt;}
.hb_c00150{height:59.745279pt;}
.he_c00150{height:60.671035pt;}
.h10_c00150{height:61.602495pt;}
.h8_c00150{height:61.612319pt;}
.h9_c00150{height:63.479359pt;}
.hd_c00150{height:65.338037pt;}
.ha_c00150{height:65.346399pt;}
.h2_c00150{height:67.200000pt;}
.h6_c00150{height:78.412700pt;}
.h3_c00150{height:81.207957pt;}
.h1_c00150{height:893.333333pt;}
.h0_c00150{height:893.466667pt;}
.w0_c00150{width:627.066667pt;}
.w1_c00150{width:627.333333pt;}
.x0_c00150{left:0.000000pt;}
.x7d_c00150{left:74.880000pt;}
.x85_c00150{left:82.320000pt;}
.x72_c00150{left:83.280000pt;}
.x4f_c00150{left:89.280000pt;}
.x67_c00150{left:90.720000pt;}
.x7e_c00150{left:91.680000pt;}
.x49_c00150{left:100.560000pt;}
.x76_c00150{left:104.160000pt;}
.x81_c00150{left:105.600000pt;}
.x10_c00150{left:106.923669pt;}
.x55_c00150{left:108.720000pt;}
.x68_c00150{left:110.880000pt;}
.x60_c00150{left:113.280000pt;}
.x58_c00150{left:115.920000pt;}
.x29_c00150{left:118.937467pt;}
.x1a_c00150{left:119.919573pt;}
.x39_c00150{left:121.057141pt;}
.x4b_c00150{left:122.160000pt;}
.x6e_c00150{left:124.560000pt;}
.x5d_c00150{left:127.200000pt;}
.x7f_c00150{left:130.080000pt;}
.x65_c00150{left:131.280000pt;}
.x73_c00150{left:133.200000pt;}
.x56_c00150{left:134.160000pt;}
.x4c_c00150{left:139.440000pt;}
.x53_c00150{left:141.360000pt;}
.x2a_c00150{left:142.654107pt;}
.x86_c00150{left:144.720000pt;}
.x77_c00150{left:150.240000pt;}
.x43_c00150{left:152.882771pt;}
.x80_c00150{left:153.840000pt;}
.x70_c00150{left:155.040000pt;}
.x61_c00150{left:157.680000pt;}
.x74_c00150{left:160.560000pt;}
.x2_c00150{left:162.214667pt;}
.x57_c00150{left:165.360000pt;}
.x2f_c00150{left:167.673333pt;}
.x6f_c00150{left:168.720000pt;}
.x4d_c00150{left:169.920000pt;}
.x82_c00150{left:171.360000pt;}
.x2b_c00150{left:173.381067pt;}
.x34_c00150{left:174.480000pt;}
.x66_c00150{left:176.400000pt;}
.x69_c00150{left:177.840000pt;}
.x78_c00150{left:179.760000pt;}
.x59_c00150{left:180.960000pt;}
.x62_c00150{left:182.880000pt;}
.x44_c00150{left:185.524077pt;}
.x3_c00150{left:186.701333pt;}
.x35_c00150{left:191.198667pt;}
.x79_c00150{left:192.480000pt;}
.x5a_c00150{left:193.440000pt;}
.x15_c00150{left:194.798667pt;}
.x50_c00150{left:196.800000pt;}
.x1b_c00150{left:198.439413pt;}
.x3a_c00150{left:199.783973pt;}
.x6b_c00150{left:200.880000pt;}
.x83_c00150{left:203.760000pt;}
.x4a_c00150{left:206.640000pt;}
.xb_c00150{left:208.241333pt;}
.x4_c00150{left:210.108000pt;}
.x6c_c00150{left:211.920000pt;}
.x5e_c00150{left:212.880000pt;}
.x45_c00150{left:216.965288pt;}
.x63_c00150{left:218.160000pt;}
.x30_c00150{left:219.210667pt;}
.x5f_c00150{left:221.280000pt;}
.x42_c00150{left:223.925404pt;}
.x22_c00150{left:226.171600pt;}
.x64_c00150{left:231.360000pt;}
.x3b_c00150{left:232.431808pt;}
.x7a_c00150{left:235.200000pt;}
.x4e_c00150{left:237.360000pt;}
.x71_c00150{left:239.040000pt;}
.x6d_c00150{left:242.400000pt;}
.xc_c00150{left:243.909333pt;}
.x5b_c00150{left:244.800000pt;}
.x51_c00150{left:246.240000pt;}
.x6a_c00150{left:249.360000pt;}
.x1c_c00150{left:254.823707pt;}
.x2c_c00150{left:256.248667pt;}
.x7b_c00150{left:257.760000pt;}
.x3f_c00150{left:258.793333pt;}
.x54_c00150{left:260.400000pt;}
.x52_c00150{left:262.560000pt;}
.x11_c00150{left:263.976637pt;}
.xd_c00150{left:267.678667pt;}
.x31_c00150{left:269.264000pt;}
.x7c_c00150{left:272.400000pt;}
.x5_c00150{left:275.262667pt;}
.x36_c00150{left:278.314667pt;}
.x84_c00150{left:280.560000pt;}
.x75_c00150{left:284.640000pt;}
.x3c_c00150{left:288.827173pt;}
.x23_c00150{left:289.832453pt;}
.xe_c00150{left:293.006667pt;}
.x87_c00150{left:294.240000pt;}
.x46_c00150{left:295.208957pt;}
.x88_c00150{left:297.360000pt;}
.x5c_c00150{left:298.320000pt;}
.x32_c00150{left:303.557333pt;}
.x91_c00150{left:305.040000pt;}
.x40_c00150{left:308.233333pt;}
.x3d_c00150{left:309.237243pt;}
.x89_c00150{left:310.800000pt;}
.x6_c00150{left:317.293333pt;}
.xa8_c00150{left:321.600000pt;}
.x37_c00150{left:323.694667pt;}
.x24_c00150{left:324.888720pt;}
.xad_c00150{left:327.600000pt;}
.x1d_c00150{left:329.493840pt;}
.x9a_c00150{left:332.880000pt;}
.x92_c00150{left:336.000000pt;}
.xa9_c00150{left:336.960000pt;}
.x2d_c00150{left:339.305627pt;}
.x47_c00150{left:341.291356pt;}
.xf_c00150{left:343.146667pt;}
.xb7_c00150{left:346.560000pt;}
.x33_c00150{left:347.794667pt;}
.x16_c00150{left:349.265333pt;}
.x1e_c00150{left:350.369253pt;}
.x7_c00150{left:353.749333pt;}
.xa3_c00150{left:354.720000pt;}
.x25_c00150{left:356.579120pt;}
.x2e_c00150{left:359.235093pt;}
.x9_c00150{left:361.440000pt;}
.xa0_c00150{left:364.320000pt;}
.x8a_c00150{left:367.200000pt;}
.x93_c00150{left:369.360000pt;}
.x9b_c00150{left:370.320000pt;}
.x38_c00150{left:372.716000pt;}
.x17_c00150{left:374.408000pt;}
.xb8_c00150{left:378.000000pt;}
.xa_c00150{left:382.320000pt;}
.xb4_c00150{left:385.200000pt;}
.xb0_c00150{left:386.640000pt;}
.xba_c00150{left:388.320000pt;}
.xb1_c00150{left:389.280000pt;}
.xaa_c00150{left:390.240000pt;}
.x98_c00150{left:391.200000pt;}
.x12_c00150{left:392.549176pt;}
.x48_c00150{left:395.533081pt;}
.x1f_c00150{left:397.419280pt;}
.x3e_c00150{left:399.073808pt;}
.xa4_c00150{left:400.800000pt;}
.x26_c00150{left:403.098560pt;}
.xae_c00150{left:404.880000pt;}
.xbb_c00150{left:407.280000pt;}
.x41_c00150{left:408.834667pt;}
.xb5_c00150{left:410.400000pt;}
.x8b_c00150{left:411.600000pt;}
.xa5_c00150{left:413.040000pt;}
.x20_c00150{left:417.517280pt;}
.x8_c00150{left:419.986667pt;}
.x13_c00150{left:422.127035pt;}
.x1_c00150{left:425.280000pt;}
.x27_c00150{left:427.177067pt;}
.x9c_c00150{left:428.640000pt;}
.x18_c00150{left:429.837333pt;}
.x8e_c00150{left:433.200000pt;}
.xab_c00150{left:437.040000pt;}
.x94_c00150{left:438.000000pt;}
.x21_c00150{left:441.471680pt;}
.xa6_c00150{left:444.240000pt;}
.x9d_c00150{left:446.160000pt;}
.xa1_c00150{left:447.840000pt;}
.x8f_c00150{left:452.160000pt;}
.x28_c00150{left:455.478933pt;}
.x8c_c00150{left:458.880000pt;}
.x90_c00150{left:459.840000pt;}
.xb9_c00150{left:461.040000pt;}
.x95_c00150{left:468.240000pt;}
.xac_c00150{left:473.040000pt;}
.x19_c00150{left:474.305333pt;}
.x9e_c00150{left:475.440000pt;}
.xa2_c00150{left:476.640000pt;}
.x14_c00150{left:478.050416pt;}
.x8d_c00150{left:479.760000pt;}
.xb2_c00150{left:481.200000pt;}
.x96_c00150{left:485.280000pt;}
.x9f_c00150{left:488.880000pt;}
.xa7_c00150{left:491.520000pt;}
.x99_c00150{left:493.680000pt;}
.xb3_c00150{left:495.120000pt;}
.x97_c00150{left:497.520000pt;}
.xb6_c00150{left:500.640000pt;}
.xaf_c00150{left:507.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mb6_c00151{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{transform:matrix(0.030900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030900,0.000000,0.000000,0.250000,0,0);}
.mb2_c00151{transform:matrix(0.049700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049700,0.000000,0.000000,0.250000,0,0);}
.mcd_c00151{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);}
.md_c00151{transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{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);}
.ma5_c00151{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m9c_c00151{transform:matrix(0.145605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145605,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{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);}
.m2_c00151{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{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);}
.m19_c00151{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);}
.m8a_c00151{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);}
.m9d_c00151{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{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);}
.m71_c00151{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);}
.m4d_c00151{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);}
.mae_c00151{transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{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);}
.m70_c00151{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);}
.m1f_c00151{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);}
.m90_c00151{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);}
.mb4_c00151{transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{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);}
.m47_c00151{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);}
.m3e_c00151{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);}
.m33_c00151{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);}
.mc8_c00151{transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);}
.ma8_c00151{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);}
.m7b_c00151{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);}
.ma6_c00151{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);}
.mc9_c00151{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);}
.m2d_c00151{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);}
.m31_c00151{transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{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);}
.m4f_c00151{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);}
.m26_c00151{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);}
.m15_c00151{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);}
.m69_c00151{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);}
.mc2_c00151{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);}
.m74_c00151{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);}
.m54_c00151{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);}
.m7e_c00151{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);}
.m43_c00151{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);}
.m23_c00151{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);}
.m2a_c00151{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);}
.ma3_c00151{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);}
.m28_c00151{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);}
.m38_c00151{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{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);}
.m35_c00151{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);}
.mc4_c00151{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);}
.m53_c00151{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);}
.m1_c00151{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);}
.mbd_c00151{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);}
.m2e_c00151{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);}
.m89_c00151{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);}
.mc7_c00151{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);}
.ma0_c00151{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);}
.m73_c00151{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);}
.mbb_c00151{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);}
.mc6_c00151{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);}
.mf_c00151{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);}
.mab_c00151{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);}
.m83_c00151{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);}
.m3_c00151{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);}
.m9b_c00151{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);}
.mc0_c00151{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);}
.m5_c00151{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);}
.m49_c00151{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);}
.maf_c00151{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);}
.m6d_c00151{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);}
.m86_c00151{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);}
.m10_c00151{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);}
.m1b_c00151{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);}
.m3d_c00151{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);}
.mc1_c00151{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);}
.m84_c00151{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);}
.m40_c00151{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);}
.mc3_c00151{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);}
.m5b_c00151{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);}
.ma2_c00151{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);}
.m85_c00151{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);}
.m4_c00151{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);}
.m2c_c00151{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);}
.m68_c00151{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);}
.m79_c00151{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);}
.m39_c00151{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);}
.m1d_c00151{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);}
.m34_c00151{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);}
.m16_c00151{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);}
.m42_c00151{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);}
.m88_c00151{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);}
.m37_c00151{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);}
.m55_c00151{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);}
.m8_c00151{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);}
.m9_c00151{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);}
.m8c_c00151{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);}
.ma7_c00151{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);}
.m51_c00151{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);}
.mc5_c00151{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);}
.mbf_c00151{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);}
.m1c_c00151{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);}
.mb0_c00151{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);}
.m44_c00151{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);}
.m58_c00151{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);}
.m4c_c00151{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);}
.m27_c00151{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_c00151{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);}
.m78_c00151{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);}
.m56_c00151{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);}
.m3b_c00151{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);}
.m8d_c00151{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);}
.m1e_c00151{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);}
.m4b_c00151{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);}
.m18_c00151{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);}
.m17_c00151{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);}
.m7c_c00151{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_c00151{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);}
.m65_c00151{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);}
.m32_c00151{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);}
.m46_c00151{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);}
.m87_c00151{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);}
.m7d_c00151{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);}
.m63_c00151{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);}
.m3a_c00151{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);}
.m95_c00151{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);}
.m59_c00151{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);}
.m29_c00151{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);}
.m7a_c00151{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);}
.m72_c00151{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);}
.m80_c00151{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);}
.mbe_c00151{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);}
.m8b_c00151{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);}
.m64_c00151{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);}
.m6e_c00151{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);}
.m5e_c00151{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);}
.mb9_c00151{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);}
.mb7_c00151{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);}
.m97_c00151{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);}
.m1a_c00151{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);}
.m41_c00151{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);}
.m9f_c00151{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);}
.m11_c00151{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);}
.m77_c00151{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);}
.ma9_c00151{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);}
.mac_c00151{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);}
.m8e_c00151{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);}
.m25_c00151{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);}
.m57_c00151{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);}
.mbc_c00151{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);}
.m5d_c00151{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);}
.m3c_c00151{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);}
.ma_c00151{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);}
.m14_c00151{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);}
.maa_c00151{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);}
.ma4_c00151{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);}
.m22_c00151{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);}
.ma1_c00151{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);}
.m5f_c00151{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);}
.m8f_c00151{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);}
.mb_c00151{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);}
.m94_c00151{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{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);}
.m6_c00151{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{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);}
.m75_c00151{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);}
.m30_c00151{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);}
.m60_c00151{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);}
.m12_c00151{transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{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);}
.m6b_c00151{transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{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);}
.m5c_c00151{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);}
.mb1_c00151{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);}
.m5a_c00151{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.mba_c00151{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);}
.m0_c00151{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{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);}
.m67_c00151{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);}
.m36_c00151{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);}
.m61_c00151{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);}
.mad_c00151{transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);}
.m50_c00151{transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00151{transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);}
.mb5_c00151{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);}
.m9a_c00151{transform:matrix(0.365565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365565,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{transform:matrix(0.418605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.430115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430115,0.000000,0.000000,0.250000,0,0);}
.mcb_c00151{transform:matrix(0.452665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452665,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.472250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00151{transform:matrix(0.720205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720205,0.000000,0.000000,0.250000,0,0);}
.mce_c00151{transform:matrix(0.795170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795170,0.000000,0.000000,0.250000,0,0);}
.mca_c00151{transform:matrix(0.944300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944300,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;}
.fsc_c00151{font-size:21.000000px;}
.fs1_c00151{font-size:61.950000px;}
.fs3_c00151{font-size:63.000000px;}
.fsa_c00151{font-size:67.200000px;}
.fs5_c00151{font-size:68.250000px;}
.fs4_c00151{font-size:69.300000px;}
.fs6_c00151{font-size:70.350000px;}
.fs0_c00151{font-size:71.400000px;}
.fs2_c00151{font-size:72.450000px;}
.fs8_c00151{font-size:73.500000px;}
.fs9_c00151{font-size:78.750000px;}
.fs7_c00151{font-size:91.350000px;}
.fsb_c00151{font-size:102.900000px;}
.y0_c00151{bottom:0.000000px;}
.y25_c00151{bottom:95.359500px;}
.y24_c00151{bottom:155.907000px;}
.y23_c00151{bottom:156.385500px;}
.y22_c00151{bottom:156.637500px;}
.y21_c00151{bottom:157.096500px;}
.y20_c00151{bottom:157.492500px;}
.y1f_c00151{bottom:157.872000px;}
.y1e_c00151{bottom:158.491500px;}
.y1d_c00151{bottom:179.883000px;}
.y1c_c00151{bottom:202.197000px;}
.y1b_c00151{bottom:225.049500px;}
.y1a_c00151{bottom:248.371500px;}
.y19_c00151{bottom:270.976500px;}
.y18_c00151{bottom:293.400000px;}
.y17_c00151{bottom:316.980000px;}
.y16_c00151{bottom:340.699500px;}
.y15_c00151{bottom:362.475000px;}
.y14_c00151{bottom:386.709000px;}
.y13_c00151{bottom:409.492500px;}
.y12_c00151{bottom:432.000000px;}
.y11_c00151{bottom:454.827000px;}
.y10_c00151{bottom:478.212000px;}
.yf_c00151{bottom:500.553000px;}
.ye_c00151{bottom:522.915000px;}
.yd_c00151{bottom:545.907000px;}
.yc_c00151{bottom:568.755000px;}
.yb_c00151{bottom:591.751500px;}
.ya_c00151{bottom:614.251500px;}
.y9_c00151{bottom:637.294500px;}
.y8_c00151{bottom:659.503500px;}
.y7_c00151{bottom:682.393500px;}
.y6_c00151{bottom:704.970000px;}
.y5_c00151{bottom:733.510500px;}
.y4_c00151{bottom:755.635500px;}
.y3_c00151{bottom:778.768500px;}
.y2_c00151{bottom:801.283500px;}
.y1_c00151{bottom:824.310000px;}
.he_c00151{height:21.000000px;}
.h3_c00151{height:61.950000px;}
.h5_c00151{height:63.000000px;}
.hc_c00151{height:67.200000px;}
.h7_c00151{height:68.250000px;}
.h6_c00151{height:69.300000px;}
.h8_c00151{height:70.350000px;}
.h2_c00151{height:71.400000px;}
.h4_c00151{height:72.450000px;}
.ha_c00151{height:73.500000px;}
.hb_c00151{height:78.750000px;}
.h9_c00151{height:91.350000px;}
.hd_c00151{height:102.900000px;}
.h0_c00151{height:1008.450000px;}
.h1_c00151{height:1008.750000px;}
.w0_c00151{width:676.890000px;}
.w1_c00151{width:677.250000px;}
.x0_c00151{left:0.000000px;}
.x82_c00151{left:83.160000px;}
.x83_c00151{left:142.020000px;}
.x5b_c00151{left:157.140000px;}
.x80_c00151{left:163.498500px;}
.x4e_c00151{left:165.240000px;}
.x6c_c00151{left:169.020000px;}
.x66_c00151{left:170.370000px;}
.x1_c00151{left:171.450000px;}
.x14_c00151{left:173.340000px;}
.x84_c00151{left:179.010000px;}
.x2_c00151{left:191.700000px;}
.x6d_c00151{left:195.210000px;}
.x23_c00151{left:196.830000px;}
.x61_c00151{left:198.180000px;}
.x15_c00151{left:199.530000px;}
.x2e_c00151{left:205.200000px;}
.x4f_c00151{left:208.980000px;}
.xa_c00151{left:212.220000px;}
.x49_c00151{left:216.540000px;}
.x7a_c00151{left:217.620000px;}
.x1c_c00151{left:218.970000px;}
.x43_c00151{left:220.320000px;}
.x3b_c00151{left:222.210000px;}
.x6e_c00151{left:225.180000px;}
.x16_c00151{left:230.850000px;}
.x73_c00151{left:231.930000px;}
.x5c_c00151{left:239.760000px;}
.x56_c00151{left:240.840000px;}
.x1d_c00151{left:242.460000px;}
.x62_c00151{left:243.810000px;}
.x3c_c00151{left:246.780000px;}
.x2a_c00151{left:248.130000px;}
.x74_c00151{left:251.640000px;}
.xb_c00151{left:253.530000px;}
.x7b_c00151{left:254.610000px;}
.x3_c00151{left:257.310000px;}
.x36_c00151{left:258.930000px;}
.x5d_c00151{left:264.060000px;}
.x17_c00151{left:265.410000px;}
.x3d_c00151{left:268.110000px;}
.x44_c00151{left:270.270000px;}
.x1e_c00151{left:273.780000px;}
.x7c_c00151{left:280.260000px;}
.x52_c00151{left:281.340000px;}
.x2f_c00151{left:282.690000px;}
.xc_c00151{left:283.770000px;}
.x4_c00151{left:285.120000px;}
.x37_c00151{left:288.090000px;}
.x5e_c00151{left:291.870000px;}
.x24_c00151{left:292.950000px;}
.x57_c00151{left:294.030000px;}
.x50_c00151{left:298.350000px;}
.x18_c00151{left:300.240000px;}
.x59_c00151{left:304.560000px;}
.x77_c00151{left:305.640000px;}
.x30_c00151{left:308.610000px;}
.x29_c00151{left:312.390000px;}
.x6f_c00151{left:314.010000px;}
.x63_c00151{left:315.090000px;}
.x3e_c00151{left:316.710000px;}
.x2b_c00151{left:317.790000px;}
.x1f_c00151{left:326.970000px;}
.x78_c00151{left:329.400000px;}
.x5_c00151{left:333.720000px;}
.x53_c00151{left:336.690000px;}
.x58_c00151{left:340.200000px;}
.x5f_c00151{left:341.820000px;}
.x67_c00151{left:344.520000px;}
.x25_c00151{left:348.030000px;}
.x75_c00151{left:350.460000px;}
.xd_c00151{left:355.050000px;}
.x3f_c00151{left:358.830000px;}
.x45_c00151{left:360.180000px;}
.x26_c00151{left:362.070000px;}
.x2c_c00151{left:365.580000px;}
.x38_c00151{left:368.280000px;}
.x81_c00151{left:369.561000px;}
.x31_c00151{left:371.250000px;}
.xe_c00151{left:372.870000px;}
.x4a_c00151{left:374.220000px;}
.x6_c00151{left:375.300000px;}
.x20_c00151{left:376.380000px;}
.x54_c00151{left:377.460000px;}
.x40_c00151{left:378.540000px;}
.x7d_c00151{left:381.510000px;}
.x19_c00151{left:383.940000px;}
.x64_c00151{left:390.150000px;}
.x39_c00151{left:395.010000px;}
.xf_c00151{left:397.170000px;}
.x46_c00151{left:398.520000px;}
.x32_c00151{left:404.190000px;}
.x7_c00151{left:408.780000px;}
.x27_c00151{left:410.670000px;}
.x10_c00151{left:419.850000px;}
.x55_c00151{left:420.930000px;}
.x21_c00151{left:426.600000px;}
.x33_c00151{left:429.570000px;}
.x51_c00151{left:433.080000px;}
.x28_c00151{left:434.160000px;}
.x7e_c00151{left:437.130000px;}
.x65_c00151{left:440.910000px;}
.x8_c00151{left:443.610000px;}
.x1a_c00151{left:446.040000px;}
.x70_c00151{left:447.120000px;}
.x60_c00151{left:449.010000px;}
.x41_c00151{left:450.630000px;}
.x2d_c00151{left:451.710000px;}
.x3a_c00151{left:452.790000px;}
.x47_c00151{left:456.030000px;}
.x22_c00151{left:457.110000px;}
.x11_c00151{left:459.810000px;}
.x5a_c00151{left:463.050000px;}
.x4b_c00151{left:464.940000px;}
.x9_c00151{left:467.640000px;}
.x71_c00151{left:471.150000px;}
.x1b_c00151{left:475.740000px;}
.x7f_c00151{left:480.870000px;}
.x12_c00151{left:485.190000px;}
.x34_c00151{left:486.810000px;}
.x68_c00151{left:494.640000px;}
.x48_c00151{left:497.070000px;}
.x72_c00151{left:499.230000px;}
.x42_c00151{left:501.930000px;}
.x4c_c00151{left:507.330000px;}
.x13_c00151{left:514.890000px;}
.x69_c00151{left:523.800000px;}
.x79_c00151{left:541.350000px;}
.x35_c00151{left:547.290000px;}
.x6a_c00151{left:565.380000px;}
.x4d_c00151{left:569.700000px;}
.x76_c00151{left:585.090000px;}
.x6b_c00151{left:605.610000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.fsc_c00151{font-size:18.666667pt;}
.fs1_c00151{font-size:55.066667pt;}
.fs3_c00151{font-size:56.000000pt;}
.fsa_c00151{font-size:59.733333pt;}
.fs5_c00151{font-size:60.666667pt;}
.fs4_c00151{font-size:61.600000pt;}
.fs6_c00151{font-size:62.533333pt;}
.fs0_c00151{font-size:63.466667pt;}
.fs2_c00151{font-size:64.400000pt;}
.fs8_c00151{font-size:65.333333pt;}
.fs9_c00151{font-size:70.000000pt;}
.fs7_c00151{font-size:81.200000pt;}
.fsb_c00151{font-size:91.466667pt;}
.y0_c00151{bottom:0.000000pt;}
.y25_c00151{bottom:84.764000pt;}
.y24_c00151{bottom:138.584000pt;}
.y23_c00151{bottom:139.009333pt;}
.y22_c00151{bottom:139.233333pt;}
.y21_c00151{bottom:139.641333pt;}
.y20_c00151{bottom:139.993333pt;}
.y1f_c00151{bottom:140.330667pt;}
.y1e_c00151{bottom:140.881333pt;}
.y1d_c00151{bottom:159.896000pt;}
.y1c_c00151{bottom:179.730667pt;}
.y1b_c00151{bottom:200.044000pt;}
.y1a_c00151{bottom:220.774667pt;}
.y19_c00151{bottom:240.868000pt;}
.y18_c00151{bottom:260.800000pt;}
.y17_c00151{bottom:281.760000pt;}
.y16_c00151{bottom:302.844000pt;}
.y15_c00151{bottom:322.200000pt;}
.y14_c00151{bottom:343.741333pt;}
.y13_c00151{bottom:363.993333pt;}
.y12_c00151{bottom:384.000000pt;}
.y11_c00151{bottom:404.290667pt;}
.y10_c00151{bottom:425.077333pt;}
.yf_c00151{bottom:444.936000pt;}
.ye_c00151{bottom:464.813333pt;}
.yd_c00151{bottom:485.250667pt;}
.yc_c00151{bottom:505.560000pt;}
.yb_c00151{bottom:526.001333pt;}
.ya_c00151{bottom:546.001333pt;}
.y9_c00151{bottom:566.484000pt;}
.y8_c00151{bottom:586.225333pt;}
.y7_c00151{bottom:606.572000pt;}
.y6_c00151{bottom:626.640000pt;}
.y5_c00151{bottom:652.009333pt;}
.y4_c00151{bottom:671.676000pt;}
.y3_c00151{bottom:692.238667pt;}
.y2_c00151{bottom:712.252000pt;}
.y1_c00151{bottom:732.720000pt;}
.he_c00151{height:18.666667pt;}
.h3_c00151{height:55.066667pt;}
.h5_c00151{height:56.000000pt;}
.hc_c00151{height:59.733333pt;}
.h7_c00151{height:60.666667pt;}
.h6_c00151{height:61.600000pt;}
.h8_c00151{height:62.533333pt;}
.h2_c00151{height:63.466667pt;}
.h4_c00151{height:64.400000pt;}
.ha_c00151{height:65.333333pt;}
.hb_c00151{height:70.000000pt;}
.h9_c00151{height:81.200000pt;}
.hd_c00151{height:91.466667pt;}
.h0_c00151{height:896.400000pt;}
.h1_c00151{height:896.666667pt;}
.w0_c00151{width:601.680000pt;}
.w1_c00151{width:602.000000pt;}
.x0_c00151{left:0.000000pt;}
.x82_c00151{left:73.920000pt;}
.x83_c00151{left:126.240000pt;}
.x5b_c00151{left:139.680000pt;}
.x80_c00151{left:145.332000pt;}
.x4e_c00151{left:146.880000pt;}
.x6c_c00151{left:150.240000pt;}
.x66_c00151{left:151.440000pt;}
.x1_c00151{left:152.400000pt;}
.x14_c00151{left:154.080000pt;}
.x84_c00151{left:159.120000pt;}
.x2_c00151{left:170.400000pt;}
.x6d_c00151{left:173.520000pt;}
.x23_c00151{left:174.960000pt;}
.x61_c00151{left:176.160000pt;}
.x15_c00151{left:177.360000pt;}
.x2e_c00151{left:182.400000pt;}
.x4f_c00151{left:185.760000pt;}
.xa_c00151{left:188.640000pt;}
.x49_c00151{left:192.480000pt;}
.x7a_c00151{left:193.440000pt;}
.x1c_c00151{left:194.640000pt;}
.x43_c00151{left:195.840000pt;}
.x3b_c00151{left:197.520000pt;}
.x6e_c00151{left:200.160000pt;}
.x16_c00151{left:205.200000pt;}
.x73_c00151{left:206.160000pt;}
.x5c_c00151{left:213.120000pt;}
.x56_c00151{left:214.080000pt;}
.x1d_c00151{left:215.520000pt;}
.x62_c00151{left:216.720000pt;}
.x3c_c00151{left:219.360000pt;}
.x2a_c00151{left:220.560000pt;}
.x74_c00151{left:223.680000pt;}
.xb_c00151{left:225.360000pt;}
.x7b_c00151{left:226.320000pt;}
.x3_c00151{left:228.720000pt;}
.x36_c00151{left:230.160000pt;}
.x5d_c00151{left:234.720000pt;}
.x17_c00151{left:235.920000pt;}
.x3d_c00151{left:238.320000pt;}
.x44_c00151{left:240.240000pt;}
.x1e_c00151{left:243.360000pt;}
.x7c_c00151{left:249.120000pt;}
.x52_c00151{left:250.080000pt;}
.x2f_c00151{left:251.280000pt;}
.xc_c00151{left:252.240000pt;}
.x4_c00151{left:253.440000pt;}
.x37_c00151{left:256.080000pt;}
.x5e_c00151{left:259.440000pt;}
.x24_c00151{left:260.400000pt;}
.x57_c00151{left:261.360000pt;}
.x50_c00151{left:265.200000pt;}
.x18_c00151{left:266.880000pt;}
.x59_c00151{left:270.720000pt;}
.x77_c00151{left:271.680000pt;}
.x30_c00151{left:274.320000pt;}
.x29_c00151{left:277.680000pt;}
.x6f_c00151{left:279.120000pt;}
.x63_c00151{left:280.080000pt;}
.x3e_c00151{left:281.520000pt;}
.x2b_c00151{left:282.480000pt;}
.x1f_c00151{left:290.640000pt;}
.x78_c00151{left:292.800000pt;}
.x5_c00151{left:296.640000pt;}
.x53_c00151{left:299.280000pt;}
.x58_c00151{left:302.400000pt;}
.x5f_c00151{left:303.840000pt;}
.x67_c00151{left:306.240000pt;}
.x25_c00151{left:309.360000pt;}
.x75_c00151{left:311.520000pt;}
.xd_c00151{left:315.600000pt;}
.x3f_c00151{left:318.960000pt;}
.x45_c00151{left:320.160000pt;}
.x26_c00151{left:321.840000pt;}
.x2c_c00151{left:324.960000pt;}
.x38_c00151{left:327.360000pt;}
.x81_c00151{left:328.498667pt;}
.x31_c00151{left:330.000000pt;}
.xe_c00151{left:331.440000pt;}
.x4a_c00151{left:332.640000pt;}
.x6_c00151{left:333.600000pt;}
.x20_c00151{left:334.560000pt;}
.x54_c00151{left:335.520000pt;}
.x40_c00151{left:336.480000pt;}
.x7d_c00151{left:339.120000pt;}
.x19_c00151{left:341.280000pt;}
.x64_c00151{left:346.800000pt;}
.x39_c00151{left:351.120000pt;}
.xf_c00151{left:353.040000pt;}
.x46_c00151{left:354.240000pt;}
.x32_c00151{left:359.280000pt;}
.x7_c00151{left:363.360000pt;}
.x27_c00151{left:365.040000pt;}
.x10_c00151{left:373.200000pt;}
.x55_c00151{left:374.160000pt;}
.x21_c00151{left:379.200000pt;}
.x33_c00151{left:381.840000pt;}
.x51_c00151{left:384.960000pt;}
.x28_c00151{left:385.920000pt;}
.x7e_c00151{left:388.560000pt;}
.x65_c00151{left:391.920000pt;}
.x8_c00151{left:394.320000pt;}
.x1a_c00151{left:396.480000pt;}
.x70_c00151{left:397.440000pt;}
.x60_c00151{left:399.120000pt;}
.x41_c00151{left:400.560000pt;}
.x2d_c00151{left:401.520000pt;}
.x3a_c00151{left:402.480000pt;}
.x47_c00151{left:405.360000pt;}
.x22_c00151{left:406.320000pt;}
.x11_c00151{left:408.720000pt;}
.x5a_c00151{left:411.600000pt;}
.x4b_c00151{left:413.280000pt;}
.x9_c00151{left:415.680000pt;}
.x71_c00151{left:418.800000pt;}
.x1b_c00151{left:422.880000pt;}
.x7f_c00151{left:427.440000pt;}
.x12_c00151{left:431.280000pt;}
.x34_c00151{left:432.720000pt;}
.x68_c00151{left:439.680000pt;}
.x48_c00151{left:441.840000pt;}
.x72_c00151{left:443.760000pt;}
.x42_c00151{left:446.160000pt;}
.x4c_c00151{left:450.960000pt;}
.x13_c00151{left:457.680000pt;}
.x69_c00151{left:465.600000pt;}
.x79_c00151{left:481.200000pt;}
.x35_c00151{left:486.480000pt;}
.x6a_c00151{left:502.560000pt;}
.x4d_c00151{left:506.400000pt;}
.x76_c00151{left:520.080000pt;}
.x6b_c00151{left:538.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc0_c00152{transform:matrix(0.014714,-0.000162,0.002750,0.249985,0,0);-ms-transform:matrix(0.014714,-0.000162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014714,-0.000162,0.002750,0.249985,0,0);}
.mfb_c00152{transform:matrix(0.016044,0.000160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.016044,0.000160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.016044,0.000160,-0.002500,0.249988,0,0);}
.m53_c00152{transform:matrix(0.094359,-0.001038,0.002750,0.249985,0,0);-ms-transform:matrix(0.094359,-0.001038,0.002750,0.249985,0,0);-webkit-transform:matrix(0.094359,-0.001038,0.002750,0.249985,0,0);}
.me6_c00152{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);}
.m6f_c00152{transform:matrix(0.133687,-0.001471,0.002750,0.249985,0,0);-ms-transform:matrix(0.133687,-0.001471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.133687,-0.001471,0.002750,0.249985,0,0);}
.mb6_c00152{transform:matrix(0.140636,-0.001547,0.002750,0.249985,0,0);-ms-transform:matrix(0.140636,-0.001547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140636,-0.001547,0.002750,0.249985,0,0);}
.mfa_c00152{transform:matrix(0.142853,0.001429,-0.002500,0.249988,0,0);-ms-transform:matrix(0.142853,0.001429,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.142853,0.001429,-0.002500,0.249988,0,0);}
.m9b_c00152{transform:matrix(0.145466,-0.001600,0.002750,0.249985,0,0);-ms-transform:matrix(0.145466,-0.001600,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145466,-0.001600,0.002750,0.249985,0,0);}
.md2_c00152{transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);-ms-transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);}
.m35_c00152{transform:matrix(0.147831,-0.001626,0.002750,0.249985,0,0);-ms-transform:matrix(0.147831,-0.001626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147831,-0.001626,0.002750,0.249985,0,0);}
.mcb_c00152{transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-ms-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);}
.m2_c00152{transform:matrix(0.151317,0.000908,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151317,0.000908,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151317,0.000908,-0.001500,0.249996,0,0);}
.m46_c00152{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);}
.mb4_c00152{transform:matrix(0.152836,-0.001681,0.002750,0.249985,0,0);-ms-transform:matrix(0.152836,-0.001681,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152836,-0.001681,0.002750,0.249985,0,0);}
.m0_c00152{transform:matrix(0.153517,0.000921,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153517,0.000921,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153517,0.000921,-0.001500,0.249996,0,0);}
.mc7_c00152{transform:matrix(0.153966,-0.001694,0.002750,0.249985,0,0);-ms-transform:matrix(0.153966,-0.001694,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153966,-0.001694,0.002750,0.249985,0,0);}
.m86_c00152{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);}
.ma1_c00152{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);}
.mb8_c00152{transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);-ms-transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);}
.m40_c00152{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);}
.m76_c00152{transform:matrix(0.156696,-0.001724,0.002750,0.249985,0,0);-ms-transform:matrix(0.156696,-0.001724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156696,-0.001724,0.002750,0.249985,0,0);}
.m7c_c00152{transform:matrix(0.157685,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157685,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157685,-0.001735,0.002750,0.249985,0,0);}
.m65_c00152{transform:matrix(0.158080,-0.001739,0.002750,0.249985,0,0);-ms-transform:matrix(0.158080,-0.001739,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158080,-0.001739,0.002750,0.249985,0,0);}
.md6_c00152{transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);-ms-transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);}
.m3b_c00152{transform:matrix(0.160415,-0.001765,0.002750,0.249985,0,0);-ms-transform:matrix(0.160415,-0.001765,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160415,-0.001765,0.002750,0.249985,0,0);}
.mbc_c00152{transform:matrix(0.161280,-0.001774,0.002750,0.249985,0,0);-ms-transform:matrix(0.161280,-0.001774,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161280,-0.001774,0.002750,0.249985,0,0);}
.m19_c00152{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);}
.m41_c00152{transform:matrix(0.163385,-0.001797,0.002750,0.249985,0,0);-ms-transform:matrix(0.163385,-0.001797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163385,-0.001797,0.002750,0.249985,0,0);}
.m80_c00152{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);}
.mf9_c00152{transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);}
.mb5_c00152{transform:matrix(0.166530,-0.001832,0.002750,0.249985,0,0);-ms-transform:matrix(0.166530,-0.001832,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166530,-0.001832,0.002750,0.249985,0,0);}
.m34_c00152{transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);-ms-transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);}
.me1_c00152{transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.167340,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167340,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167340,-0.001841,0.002750,0.249985,0,0);}
.m97_c00152{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);}
.m18_c00152{transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);-ms-transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);}
.m57_c00152{transform:matrix(0.168135,-0.001849,0.002750,0.249985,0,0);-ms-transform:matrix(0.168135,-0.001849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168135,-0.001849,0.002750,0.249985,0,0);}
.md9_c00152{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);}
.m1d_c00152{transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-ms-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);}
.m39_c00152{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);}
.m25_c00152{transform:matrix(0.168660,-0.001855,0.002750,0.249985,0,0);-ms-transform:matrix(0.168660,-0.001855,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168660,-0.001855,0.002750,0.249985,0,0);}
.ma8_c00152{transform:matrix(0.168705,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168705,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168705,-0.001856,0.002750,0.249985,0,0);}
.m26_c00152{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);}
.maf_c00152{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);}
.mac_c00152{transform:matrix(0.170055,-0.001871,0.002750,0.249985,0,0);-ms-transform:matrix(0.170055,-0.001871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170055,-0.001871,0.002750,0.249985,0,0);}
.me4_c00152{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);}
.mc9_c00152{transform:matrix(0.170405,-0.001874,0.002750,0.249985,0,0);-ms-transform:matrix(0.170405,-0.001874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170405,-0.001874,0.002750,0.249985,0,0);}
.m71_c00152{transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);}
.m1c_c00152{transform:matrix(0.171250,-0.001884,0.002750,0.249985,0,0);-ms-transform:matrix(0.171250,-0.001884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171250,-0.001884,0.002750,0.249985,0,0);}
.m96_c00152{transform:matrix(0.171795,-0.001890,0.002750,0.249985,0,0);-ms-transform:matrix(0.171795,-0.001890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171795,-0.001890,0.002750,0.249985,0,0);}
.me8_c00152{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);}
.m10_c00152{transform:matrix(0.173240,-0.001906,0.002750,0.249985,0,0);-ms-transform:matrix(0.173240,-0.001906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173240,-0.001906,0.002750,0.249985,0,0);}
.m5f_c00152{transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);}
.mba_c00152{transform:matrix(0.173515,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173515,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173515,-0.001909,0.002750,0.249985,0,0);}
.mbd_c00152{transform:matrix(0.174049,-0.001915,0.002750,0.249985,0,0);-ms-transform:matrix(0.174049,-0.001915,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174049,-0.001915,0.002750,0.249985,0,0);}
.m47_c00152{transform:matrix(0.174514,-0.001920,0.002750,0.249985,0,0);-ms-transform:matrix(0.174514,-0.001920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174514,-0.001920,0.002750,0.249985,0,0);}
.m9a_c00152{transform:matrix(0.174559,-0.001920,0.002750,0.249985,0,0);-ms-transform:matrix(0.174559,-0.001920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174559,-0.001920,0.002750,0.249985,0,0);}
.m92_c00152{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);}
.m4a_c00152{transform:matrix(0.175134,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175134,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175134,-0.001926,0.002750,0.249985,0,0);}
.m6c_c00152{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);}
.mf2_c00152{transform:matrix(0.175301,0.001753,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175301,0.001753,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175301,0.001753,-0.002500,0.249988,0,0);}
.mf7_c00152{transform:matrix(0.175511,0.001755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175511,0.001755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175511,0.001755,-0.002500,0.249988,0,0);}
.mf1_c00152{transform:matrix(0.176286,0.001763,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176286,0.001763,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176286,0.001763,-0.002500,0.249988,0,0);}
.m73_c00152{transform:matrix(0.176609,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176609,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176609,-0.001943,0.002750,0.249985,0,0);}
.m5a_c00152{transform:matrix(0.177174,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177174,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177174,-0.001949,0.002750,0.249985,0,0);}
.m89_c00152{transform:matrix(0.177189,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177189,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177189,-0.001949,0.002750,0.249985,0,0);}
.m33_c00152{transform:matrix(0.177849,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177849,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177849,-0.001956,0.002750,0.249985,0,0);}
.m31_c00152{transform:matrix(0.177854,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177854,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177854,-0.001956,0.002750,0.249985,0,0);}
.md_c00152{transform:matrix(0.178177,0.001069,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178177,0.001069,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178177,0.001069,-0.001500,0.249996,0,0);}
.m9e_c00152{transform:matrix(0.178299,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178299,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178299,-0.001961,0.002750,0.249985,0,0);}
.mb9_c00152{transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);}
.m1e_c00152{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);}
.m61_c00152{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);}
.mae_c00152{transform:matrix(0.179079,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179079,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179079,-0.001970,0.002750,0.249985,0,0);}
.mcc_c00152{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);}
.md1_c00152{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);}
.mb3_c00152{transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);}
.m6b_c00152{transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);-ms-transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);}
.mbe_c00152{transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);}
.m70_c00152{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);}
.m37_c00152{transform:matrix(0.182999,-0.002013,0.002750,0.249985,0,0);-ms-transform:matrix(0.182999,-0.002013,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182999,-0.002013,0.002750,0.249985,0,0);}
.m6e_c00152{transform:matrix(0.183114,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183114,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183114,-0.002014,0.002750,0.249985,0,0);}
.m60_c00152{transform:matrix(0.183119,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183119,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183119,-0.002014,0.002750,0.249985,0,0);}
.m48_c00152{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);}
.m98_c00152{transform:matrix(0.183194,-0.002015,0.002750,0.249985,0,0);-ms-transform:matrix(0.183194,-0.002015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183194,-0.002015,0.002750,0.249985,0,0);}
.m78_c00152{transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);}
.m45_c00152{transform:matrix(0.184134,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184134,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184134,-0.002025,0.002750,0.249985,0,0);}
.m62_c00152{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);}
.m32_c00152{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);}
.mb7_c00152{transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);-ms-transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);}
.m9c_c00152{transform:matrix(0.185529,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185529,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185529,-0.002041,0.002750,0.249985,0,0);}
.m81_c00152{transform:matrix(0.186234,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186234,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186234,-0.002049,0.002750,0.249985,0,0);}
.m66_c00152{transform:matrix(0.186319,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186319,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186319,-0.002050,0.002750,0.249985,0,0);}
.m59_c00152{transform:matrix(0.186514,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186514,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186514,-0.002052,0.002750,0.249985,0,0);}
.mf6_c00152{transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187861,0.001879,-0.002500,0.249988,0,0);}
.mce_c00152{transform:matrix(0.188244,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188244,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188244,-0.002071,0.002750,0.249985,0,0);}
.m82_c00152{transform:matrix(0.188544,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188544,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188544,-0.002074,0.002750,0.249985,0,0);}
.m95_c00152{transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);}
.m7b_c00152{transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);}
.m77_c00152{transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);}
.mdd_c00152{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);}
.mf0_c00152{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);}
.mbf_c00152{transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);}
.mb1_c00152{transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);}
.m49_c00152{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);}
.m8a_c00152{transform:matrix(0.191558,-0.002107,0.002750,0.249985,0,0);-ms-transform:matrix(0.191558,-0.002107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191558,-0.002107,0.002750,0.249985,0,0);}
.m13_c00152{transform:matrix(0.191673,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191673,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191673,-0.002108,0.002750,0.249985,0,0);}
.mea_c00152{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);}
.m3f_c00152{transform:matrix(0.191988,-0.002112,0.002750,0.249985,0,0);-ms-transform:matrix(0.191988,-0.002112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191988,-0.002112,0.002750,0.249985,0,0);}
.m3_c00152{transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);}
.mdf_c00152{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);}
.meb_c00152{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);}
.m7e_c00152{transform:matrix(0.193778,-0.002132,0.002750,0.249985,0,0);-ms-transform:matrix(0.193778,-0.002132,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193778,-0.002132,0.002750,0.249985,0,0);}
.m3d_c00152{transform:matrix(0.193973,-0.002134,0.002750,0.249985,0,0);-ms-transform:matrix(0.193973,-0.002134,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193973,-0.002134,0.002750,0.249985,0,0);}
.m36_c00152{transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194148,-0.002136,0.002750,0.249985,0,0);}
.m8e_c00152{transform:matrix(0.194178,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194178,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194178,-0.002136,0.002750,0.249985,0,0);}
.me5_c00152{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);}
.m2e_c00152{transform:matrix(0.194778,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194778,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194778,-0.002143,0.002750,0.249985,0,0);}
.m67_c00152{transform:matrix(0.194868,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194868,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194868,-0.002144,0.002750,0.249985,0,0);}
.m1a_c00152{transform:matrix(0.194888,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194888,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194888,-0.002144,0.002750,0.249985,0,0);}
.m21_c00152{transform:matrix(0.195103,-0.002146,0.002750,0.249985,0,0);-ms-transform:matrix(0.195103,-0.002146,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195103,-0.002146,0.002750,0.249985,0,0);}
.m3c_c00152{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);}
.m8f_c00152{transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);}
.m17_c00152{transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);-ms-transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);}
.m5_c00152{transform:matrix(0.195701,0.001174,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195701,0.001174,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195701,0.001174,-0.001500,0.249996,0,0);}
.mda_c00152{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);}
.m7f_c00152{transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);}
.ma6_c00152{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);}
.m5b_c00152{transform:matrix(0.196568,-0.002162,0.002750,0.249985,0,0);-ms-transform:matrix(0.196568,-0.002162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196568,-0.002162,0.002750,0.249985,0,0);}
.m68_c00152{transform:matrix(0.196583,-0.002162,0.002750,0.249985,0,0);-ms-transform:matrix(0.196583,-0.002162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196583,-0.002162,0.002750,0.249985,0,0);}
.m79_c00152{transform:matrix(0.196888,-0.002166,0.002750,0.249985,0,0);-ms-transform:matrix(0.196888,-0.002166,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196888,-0.002166,0.002750,0.249985,0,0);}
.m14_c00152{transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);}
.m74_c00152{transform:matrix(0.197793,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197793,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197793,-0.002176,0.002750,0.249985,0,0);}
.ma7_c00152{transform:matrix(0.198033,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.198033,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198033,-0.002178,0.002750,0.249985,0,0);}
.m1b_c00152{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);}
.m93_c00152{transform:matrix(0.198458,-0.002183,0.002750,0.249985,0,0);-ms-transform:matrix(0.198458,-0.002183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198458,-0.002183,0.002750,0.249985,0,0);}
.m22_c00152{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);}
.me9_c00152{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);}
.m42_c00152{transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);}
.m24_c00152{transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);}
.m44_c00152{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);}
.mdb_c00152{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);}
.mc5_c00152{transform:matrix(0.200243,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200243,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200243,-0.002203,0.002750,0.249985,0,0);}
.mc4_c00152{transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);-ms-transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);}
.mef_c00152{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);}
.ma4_c00152{transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);}
.mfd_c00152{transform:matrix(0.200890,0.002009,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200890,0.002009,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200890,0.002009,-0.002500,0.249988,0,0);}
.m87_c00152{transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);}
.m88_c00152{transform:matrix(0.202093,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202093,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202093,-0.002223,0.002750,0.249985,0,0);}
.mdc_c00152{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);}
.m16_c00152{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);}
.ma5_c00152{transform:matrix(0.203738,-0.002241,0.002750,0.249985,0,0);-ms-transform:matrix(0.203738,-0.002241,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203738,-0.002241,0.002750,0.249985,0,0);}
.m85_c00152{transform:matrix(0.204188,-0.002246,0.002750,0.249985,0,0);-ms-transform:matrix(0.204188,-0.002246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204188,-0.002246,0.002750,0.249985,0,0);}
.me0_c00152{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);}
.m84_c00152{transform:matrix(0.204298,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204298,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204298,-0.002247,0.002750,0.249985,0,0);}
.m43_c00152{transform:matrix(0.205223,-0.002257,0.002750,0.249985,0,0);-ms-transform:matrix(0.205223,-0.002257,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205223,-0.002257,0.002750,0.249985,0,0);}
.mee_c00152{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);}
.m29_c00152{transform:matrix(0.205503,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205503,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205503,-0.002261,0.002750,0.249985,0,0);}
.m2a_c00152{transform:matrix(0.205508,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205508,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205508,-0.002261,0.002750,0.249985,0,0);}
.m4b_c00152{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);}
.m4c_c00152{transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);}
.md8_c00152{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);}
.m23_c00152{transform:matrix(0.207802,-0.002286,0.002750,0.249985,0,0);-ms-transform:matrix(0.207802,-0.002286,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207802,-0.002286,0.002750,0.249985,0,0);}
.mb0_c00152{transform:matrix(0.208077,-0.002289,0.002750,0.249985,0,0);-ms-transform:matrix(0.208077,-0.002289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208077,-0.002289,0.002750,0.249985,0,0);}
.me3_c00152{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);}
.mc8_c00152{transform:matrix(0.208812,-0.002297,0.002750,0.249985,0,0);-ms-transform:matrix(0.208812,-0.002297,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208812,-0.002297,0.002750,0.249985,0,0);}
.mc1_c00152{transform:matrix(0.209067,-0.002300,0.002750,0.249985,0,0);-ms-transform:matrix(0.209067,-0.002300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209067,-0.002300,0.002750,0.249985,0,0);}
.m11_c00152{transform:matrix(0.209072,-0.002300,0.002750,0.249985,0,0);-ms-transform:matrix(0.209072,-0.002300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209072,-0.002300,0.002750,0.249985,0,0);}
.mcd_c00152{transform:matrix(0.210022,-0.002310,0.002750,0.249985,0,0);-ms-transform:matrix(0.210022,-0.002310,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210022,-0.002310,0.002750,0.249985,0,0);}
.mc3_c00152{transform:matrix(0.210057,-0.002311,0.002750,0.249985,0,0);-ms-transform:matrix(0.210057,-0.002311,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210057,-0.002311,0.002750,0.249985,0,0);}
.m99_c00152{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);}
.m50_c00152{transform:matrix(0.210292,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210292,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210292,-0.002313,0.002750,0.249985,0,0);}
.m5d_c00152{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);}
.m5c_c00152{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);}
.mc2_c00152{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);}
.m52_c00152{transform:matrix(0.211587,-0.002327,0.002750,0.249985,0,0);-ms-transform:matrix(0.211587,-0.002327,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211587,-0.002327,0.002750,0.249985,0,0);}
.md5_c00152{transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);}
.m94_c00152{transform:matrix(0.211737,-0.002329,0.002750,0.249985,0,0);-ms-transform:matrix(0.211737,-0.002329,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211737,-0.002329,0.002750,0.249985,0,0);}
.m20_c00152{transform:matrix(0.211912,-0.002331,0.002750,0.249985,0,0);-ms-transform:matrix(0.211912,-0.002331,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211912,-0.002331,0.002750,0.249985,0,0);}
.m2c_c00152{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);}
.mf_c00152{transform:matrix(0.212497,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212497,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212497,-0.002337,0.002750,0.249985,0,0);}
.mca_c00152{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);}
.mcf_c00152{transform:matrix(0.213362,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213362,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213362,-0.002347,0.002750,0.249985,0,0);}
.m4d_c00152{transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);-ms-transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);}
.m69_c00152{transform:matrix(0.214362,-0.002358,0.002750,0.249985,0,0);-ms-transform:matrix(0.214362,-0.002358,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214362,-0.002358,0.002750,0.249985,0,0);}
.md3_c00152{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);}
.m38_c00152{transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);-ms-transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);}
.m75_c00152{transform:matrix(0.217057,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217057,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217057,-0.002388,0.002750,0.249985,0,0);}
.mff_c00152{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);}
.m64_c00152{transform:matrix(0.217407,-0.002391,0.002750,0.249985,0,0);-ms-transform:matrix(0.217407,-0.002391,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217407,-0.002391,0.002750,0.249985,0,0);}
.md7_c00152{transform:matrix(0.217977,-0.002398,0.002750,0.249985,0,0);-ms-transform:matrix(0.217977,-0.002398,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217977,-0.002398,0.002750,0.249985,0,0);}
.m7d_c00152{transform:matrix(0.218327,-0.002402,0.002750,0.249985,0,0);-ms-transform:matrix(0.218327,-0.002402,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218327,-0.002402,0.002750,0.249985,0,0);}
.m30_c00152{transform:matrix(0.218407,-0.002402,0.002750,0.249985,0,0);-ms-transform:matrix(0.218407,-0.002402,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218407,-0.002402,0.002750,0.249985,0,0);}
.m63_c00152{transform:matrix(0.218872,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218872,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218872,-0.002408,0.002750,0.249985,0,0);}
.mbb_c00152{transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219802,-0.002418,0.002750,0.249985,0,0);}
.m8c_c00152{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);}
.m3a_c00152{transform:matrix(0.222542,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222542,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222542,-0.002448,0.002750,0.249985,0,0);}
.m8d_c00152{transform:matrix(0.222952,-0.002452,0.002750,0.249985,0,0);-ms-transform:matrix(0.222952,-0.002452,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222952,-0.002452,0.002750,0.249985,0,0);}
.m2b_c00152{transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);-ms-transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);}
.m6d_c00152{transform:matrix(0.224381,-0.002468,0.002750,0.249985,0,0);-ms-transform:matrix(0.224381,-0.002468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224381,-0.002468,0.002750,0.249985,0,0);}
.ma2_c00152{transform:matrix(0.224596,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224596,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224596,-0.002471,0.002750,0.249985,0,0);}
.mad_c00152{transform:matrix(0.225026,-0.002475,0.002750,0.249985,0,0);-ms-transform:matrix(0.225026,-0.002475,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225026,-0.002475,0.002750,0.249985,0,0);}
.mc_c00152{transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);}
.m9f_c00152{transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);-ms-transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);}
.me_c00152{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);}
.m90_c00152{transform:matrix(0.228116,-0.002509,0.002750,0.249985,0,0);-ms-transform:matrix(0.228116,-0.002509,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228116,-0.002509,0.002750,0.249985,0,0);}
.m3e_c00152{transform:matrix(0.228696,-0.002516,0.002750,0.249985,0,0);-ms-transform:matrix(0.228696,-0.002516,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228696,-0.002516,0.002750,0.249985,0,0);}
.m12_c00152{transform:matrix(0.229161,-0.002521,0.002750,0.249985,0,0);-ms-transform:matrix(0.229161,-0.002521,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229161,-0.002521,0.002750,0.249985,0,0);}
.m8b_c00152{transform:matrix(0.229546,-0.002525,0.002750,0.249985,0,0);-ms-transform:matrix(0.229546,-0.002525,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229546,-0.002525,0.002750,0.249985,0,0);}
.m72_c00152{transform:matrix(0.230601,-0.002537,0.002750,0.249985,0,0);-ms-transform:matrix(0.230601,-0.002537,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230601,-0.002537,0.002750,0.249985,0,0);}
.me7_c00152{transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.230961,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.230961,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230961,-0.002541,0.002750,0.249985,0,0);}
.mec_c00152{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);}
.ma3_c00152{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);}
.med_c00152{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);}
.m28_c00152{transform:matrix(0.232636,-0.002559,0.002750,0.249985,0,0);-ms-transform:matrix(0.232636,-0.002559,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232636,-0.002559,0.002750,0.249985,0,0);}
.m9d_c00152{transform:matrix(0.232751,-0.002560,0.002750,0.249985,0,0);-ms-transform:matrix(0.232751,-0.002560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232751,-0.002560,0.002750,0.249985,0,0);}
.m1f_c00152{transform:matrix(0.232931,-0.002562,0.002750,0.249985,0,0);-ms-transform:matrix(0.232931,-0.002562,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232931,-0.002562,0.002750,0.249985,0,0);}
.mab_c00152{transform:matrix(0.232956,-0.002563,0.002750,0.249985,0,0);-ms-transform:matrix(0.232956,-0.002563,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232956,-0.002563,0.002750,0.249985,0,0);}
.md4_c00152{transform:matrix(0.234651,-0.002581,0.002750,0.249985,0,0);-ms-transform:matrix(0.234651,-0.002581,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234651,-0.002581,0.002750,0.249985,0,0);}
.m56_c00152{transform:matrix(0.235901,-0.002595,0.002750,0.249985,0,0);-ms-transform:matrix(0.235901,-0.002595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235901,-0.002595,0.002750,0.249985,0,0);}
.m91_c00152{transform:matrix(0.235921,-0.002595,0.002750,0.249985,0,0);-ms-transform:matrix(0.235921,-0.002595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235921,-0.002595,0.002750,0.249985,0,0);}
.m55_c00152{transform:matrix(0.236751,-0.002604,0.002750,0.249985,0,0);-ms-transform:matrix(0.236751,-0.002604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236751,-0.002604,0.002750,0.249985,0,0);}
.m4f_c00152{transform:matrix(0.237686,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237686,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237686,-0.002615,0.002750,0.249985,0,0);}
.md0_c00152{transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);-ms-transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);}
.m54_c00152{transform:matrix(0.238216,-0.002620,0.002750,0.249985,0,0);-ms-transform:matrix(0.238216,-0.002620,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238216,-0.002620,0.002750,0.249985,0,0);}
.m6a_c00152{transform:matrix(0.239216,-0.002631,0.002750,0.249985,0,0);-ms-transform:matrix(0.239216,-0.002631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239216,-0.002631,0.002750,0.249985,0,0);}
.m7a_c00152{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);}
.me2_c00152{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);}
.m83_c00152{transform:matrix(0.246035,-0.002706,0.002750,0.249985,0,0);-ms-transform:matrix(0.246035,-0.002706,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246035,-0.002706,0.002750,0.249985,0,0);}
.mc6_c00152{transform:matrix(0.246090,-0.002707,0.002750,0.249985,0,0);-ms-transform:matrix(0.246090,-0.002707,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246090,-0.002707,0.002750,0.249985,0,0);}
.m5e_c00152{transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);-ms-transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);}
.m2f_c00152{transform:matrix(0.248090,-0.002729,0.002750,0.249985,0,0);-ms-transform:matrix(0.248090,-0.002729,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248090,-0.002729,0.002750,0.249985,0,0);}
.mf3_c00152{transform:matrix(0.254242,0.002542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254242,0.002542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254242,0.002542,-0.002500,0.249988,0,0);}
.m4e_c00152{transform:matrix(0.258739,-0.002846,0.002750,0.249985,0,0);-ms-transform:matrix(0.258739,-0.002846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258739,-0.002846,0.002750,0.249985,0,0);}
.mf8_c00152{transform:matrix(0.259297,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259297,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259297,0.002593,-0.002500,0.249988,0,0);}
.m2d_c00152{transform:matrix(0.261404,-0.002875,0.002750,0.249985,0,0);-ms-transform:matrix(0.261404,-0.002875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261404,-0.002875,0.002750,0.249985,0,0);}
.ma9_c00152{transform:matrix(0.264094,-0.002905,0.002750,0.249985,0,0);-ms-transform:matrix(0.264094,-0.002905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264094,-0.002905,0.002750,0.249985,0,0);}
.mde_c00152{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);}
.mfc_c00152{transform:matrix(0.278281,0.002783,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278281,0.002783,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278281,0.002783,-0.002500,0.249988,0,0);}
.mf4_c00152{transform:matrix(0.286721,0.002867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.286721,0.002867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.286721,0.002867,-0.002500,0.249988,0,0);}
.m4_c00152{transform:matrix(0.312974,0.001878,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312974,0.001878,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312974,0.001878,-0.001500,0.249996,0,0);}
.mb_c00152{transform:matrix(0.316409,0.001898,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316409,0.001898,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316409,0.001898,-0.001500,0.249996,0,0);}
.m58_c00152{transform:matrix(0.316806,-0.003485,0.002750,0.249985,0,0);-ms-transform:matrix(0.316806,-0.003485,0.002750,0.249985,0,0);-webkit-transform:matrix(0.316806,-0.003485,0.002750,0.249985,0,0);}
.maa_c00152{transform:matrix(0.321571,-0.003537,0.002750,0.249985,0,0);-ms-transform:matrix(0.321571,-0.003537,0.002750,0.249985,0,0);-webkit-transform:matrix(0.321571,-0.003537,0.002750,0.249985,0,0);}
.m51_c00152{transform:matrix(0.323750,-0.003561,0.002750,0.249985,0,0);-ms-transform:matrix(0.323750,-0.003561,0.002750,0.249985,0,0);-webkit-transform:matrix(0.323750,-0.003561,0.002750,0.249985,0,0);}
.mf5_c00152{transform:matrix(0.338768,0.003388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.338768,0.003388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.338768,0.003388,-0.002500,0.249988,0,0);}
.m8_c00152{transform:matrix(0.339519,0.002037,-0.001500,0.249996,0,0);-ms-transform:matrix(0.339519,0.002037,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.339519,0.002037,-0.001500,0.249996,0,0);}
.m15_c00152{transform:matrix(0.344954,-0.003794,0.002750,0.249985,0,0);-ms-transform:matrix(0.344954,-0.003794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.344954,-0.003794,0.002750,0.249985,0,0);}
.m9_c00152{transform:matrix(0.375188,0.002251,-0.001500,0.249996,0,0);-ms-transform:matrix(0.375188,0.002251,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.375188,0.002251,-0.001500,0.249996,0,0);}
.m27_c00152{transform:matrix(0.395961,-0.004356,0.002750,0.249985,0,0);-ms-transform:matrix(0.395961,-0.004356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.395961,-0.004356,0.002750,0.249985,0,0);}
.mfe_c00152{transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.493581,0.002961,-0.001500,0.249996,0,0);-ms-transform:matrix(0.493581,0.002961,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.493581,0.002961,-0.001500,0.249996,0,0);}
.m1_c00152{transform:matrix(0.537065,0.003222,-0.001500,0.249996,0,0);-ms-transform:matrix(0.537065,0.003222,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.537065,0.003222,-0.001500,0.249996,0,0);}
.m7_c00152{transform:matrix(0.561040,0.003366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.561040,0.003366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.561040,0.003366,-0.001500,0.249996,0,0);}
.m6_c00152{transform:matrix(0.731017,0.004386,-0.001500,0.249996,0,0);-ms-transform:matrix(0.731017,0.004386,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.731017,0.004386,-0.001500,0.249996,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;}
.fs8_c00152{font-size:61.953748px;}
.fs13_c00152{font-size:65.100000px;}
.fs6_c00152{font-size:65.103938px;}
.fs4_c00152{font-size:66.154002px;}
.fs0_c00152{font-size:67.201210px;}
.fsb_c00152{font-size:67.204065px;}
.fs3_c00152{font-size:68.254129px;}
.fs10_c00152{font-size:69.300000px;}
.fs2_c00152{font-size:69.304193px;}
.fsf_c00152{font-size:70.350000px;}
.fs7_c00152{font-size:70.354256px;}
.fse_c00152{font-size:71.400000px;}
.fs12_c00152{font-size:71.403570px;}
.fsa_c00152{font-size:71.404320px;}
.fs5_c00152{font-size:72.454383px;}
.fsc_c00152{font-size:73.504447px;}
.fsd_c00152{font-size:74.554510px;}
.fs11_c00152{font-size:76.653832px;}
.fs9_c00152{font-size:76.654637px;}
.fs1_c00152{font-size:91.351644px;}
.y0_c00152{bottom:0.000000px;}
.yed_c00152{bottom:114.207000px;}
.yeb_c00152{bottom:146.175900px;}
.yea_c00152{bottom:146.176365px;}
.yec_c00152{bottom:146.176515px;}
.ye9_c00152{bottom:168.308370px;}
.ye8_c00152{bottom:168.948510px;}
.ye7_c00152{bottom:169.347465px;}
.ye6_c00152{bottom:169.817325px;}
.ye5_c00152{bottom:170.114850px;}
.ye4_c00152{bottom:170.627985px;}
.ye3_c00152{bottom:170.771355px;}
.ye2_c00152{bottom:170.994990px;}
.ye1_c00152{bottom:171.289200px;}
.ye0_c00152{bottom:171.721500px;}
.ydf_c00152{bottom:192.741000px;}
.yde_c00152{bottom:214.452000px;}
.ydd_c00152{bottom:236.941500px;}
.yd8_c00152{bottom:259.104157px;}
.yd7_c00152{bottom:259.104294px;}
.yd9_c00152{bottom:259.104784px;}
.yd6_c00152{bottom:259.104913px;}
.yd5_c00152{bottom:259.105096px;}
.ydc_c00152{bottom:259.105302px;}
.yda_c00152{bottom:259.105458px;}
.ydb_c00152{bottom:259.105545px;}
.yd4_c00152{bottom:281.913791px;}
.yd3_c00152{bottom:281.914213px;}
.yd1_c00152{bottom:281.914386px;}
.yd2_c00152{bottom:281.914533px;}
.yd0_c00152{bottom:281.914942px;}
.yce_c00152{bottom:281.914948px;}
.ycf_c00152{bottom:281.915202px;}
.ycd_c00152{bottom:305.492581px;}
.ycc_c00152{bottom:305.492944px;}
.yca_c00152{bottom:305.493517px;}
.ycb_c00152{bottom:305.493561px;}
.yc9_c00152{bottom:305.494211px;}
.yc8_c00152{bottom:305.494797px;}
.yc5_c00152{bottom:305.494816px;}
.yc7_c00152{bottom:305.494950px;}
.yc6_c00152{bottom:305.494966px;}
.yc3_c00152{bottom:326.648439px;}
.yc2_c00152{bottom:326.648592px;}
.yc4_c00152{bottom:326.648722px;}
.yc1_c00152{bottom:326.649105px;}
.yc0_c00152{bottom:326.649751px;}
.ybf_c00152{bottom:326.649888px;}
.ybe_c00152{bottom:326.650084px;}
.ybd_c00152{bottom:326.650657px;}
.yba_c00152{bottom:349.292418px;}
.yb5_c00152{bottom:349.292670px;}
.ybb_c00152{bottom:349.292895px;}
.yb9_c00152{bottom:349.293125px;}
.yb6_c00152{bottom:349.293224px;}
.ybc_c00152{bottom:349.293522px;}
.yb8_c00152{bottom:349.293624px;}
.yb7_c00152{bottom:349.293881px;}
.yae_c00152{bottom:371.981063px;}
.yad_c00152{bottom:371.981469px;}
.yaf_c00152{bottom:371.981586px;}
.yb4_c00152{bottom:371.981934px;}
.yb2_c00152{bottom:371.981954px;}
.yb3_c00152{bottom:371.982177px;}
.yb0_c00152{bottom:371.982260px;}
.yb1_c00152{bottom:371.982497px;}
.ya7_c00152{bottom:395.406851px;}
.ya8_c00152{bottom:395.407538px;}
.yaa_c00152{bottom:395.407665px;}
.ya9_c00152{bottom:395.407758px;}
.yab_c00152{bottom:395.408159px;}
.yac_c00152{bottom:395.408529px;}
.ya3_c00152{bottom:417.467838px;}
.ya2_c00152{bottom:417.467901px;}
.ya1_c00152{bottom:417.467964px;}
.ya0_c00152{bottom:417.468074px;}
.ya4_c00152{bottom:417.468482px;}
.y9f_c00152{bottom:417.468540px;}
.ya6_c00152{bottom:417.468882px;}
.ya5_c00152{bottom:417.468975px;}
.y9a_c00152{bottom:439.276704px;}
.y97_c00152{bottom:439.276713px;}
.y9c_c00152{bottom:439.276818px;}
.y9b_c00152{bottom:439.276821px;}
.y98_c00152{bottom:439.276906px;}
.y99_c00152{bottom:439.276947px;}
.y9e_c00152{bottom:439.277082px;}
.y9d_c00152{bottom:439.277099px;}
.y90_c00152{bottom:461.921659px;}
.y8f_c00152{bottom:461.921706px;}
.y94_c00152{bottom:461.921814px;}
.y96_c00152{bottom:461.921841px;}
.y8d_c00152{bottom:461.921876px;}
.y92_c00152{bottom:461.922017px;}
.y91_c00152{bottom:461.922033px;}
.y95_c00152{bottom:461.922038px;}
.y8e_c00152{bottom:461.922039px;}
.y93_c00152{bottom:461.922403px;}
.y86_c00152{bottom:484.614735px;}
.y88_c00152{bottom:484.614836px;}
.y87_c00152{bottom:484.615049px;}
.y85_c00152{bottom:484.615234px;}
.y89_c00152{bottom:484.615299px;}
.y8a_c00152{bottom:484.616033px;}
.y8c_c00152{bottom:484.616643px;}
.y8b_c00152{bottom:484.616646px;}
.y7c_c00152{bottom:506.987138px;}
.y7b_c00152{bottom:506.987320px;}
.y82_c00152{bottom:506.987366px;}
.y7e_c00152{bottom:506.987464px;}
.y84_c00152{bottom:506.987496px;}
.y81_c00152{bottom:506.987712px;}
.y7d_c00152{bottom:506.987781px;}
.y80_c00152{bottom:506.988045px;}
.y83_c00152{bottom:506.988069px;}
.y7f_c00152{bottom:506.988198px;}
.y73_c00152{bottom:529.370087px;}
.y75_c00152{bottom:529.370201px;}
.y77_c00152{bottom:529.370328px;}
.y78_c00152{bottom:529.370671px;}
.y76_c00152{bottom:529.370677px;}
.y74_c00152{bottom:529.370683px;}
.y79_c00152{bottom:529.371269px;}
.y7a_c00152{bottom:529.371912px;}
.y70_c00152{bottom:551.949861px;}
.y6f_c00152{bottom:551.950121px;}
.y6c_c00152{bottom:551.950146px;}
.y71_c00152{bottom:551.950355px;}
.y6e_c00152{bottom:551.950440px;}
.y72_c00152{bottom:551.950698px;}
.y6b_c00152{bottom:551.950822px;}
.y6d_c00152{bottom:551.950833px;}
.y62_c00152{bottom:574.351469px;}
.y64_c00152{bottom:574.351585px;}
.y63_c00152{bottom:574.351992px;}
.y65_c00152{bottom:574.352196px;}
.y67_c00152{bottom:574.352370px;}
.y68_c00152{bottom:574.352397px;}
.y66_c00152{bottom:574.352867px;}
.y69_c00152{bottom:574.352891px;}
.y6a_c00152{bottom:574.353114px;}
.y5d_c00152{bottom:596.149582px;}
.y5c_c00152{bottom:596.149735px;}
.y5e_c00152{bottom:596.150226px;}
.y5b_c00152{bottom:596.150262px;}
.y60_c00152{bottom:596.150411px;}
.y5f_c00152{bottom:596.150517px;}
.y5a_c00152{bottom:596.150685px;}
.y61_c00152{bottom:596.151157px;}
.y58_c00152{bottom:618.571798px;}
.y56_c00152{bottom:618.572164px;}
.y59_c00152{bottom:618.572206px;}
.y57_c00152{bottom:618.572265px;}
.y55_c00152{bottom:618.572558px;}
.y54_c00152{bottom:641.179828px;}
.y4d_c00152{bottom:641.180386px;}
.y53_c00152{bottom:641.180568px;}
.y52_c00152{bottom:641.180675px;}
.y51_c00152{bottom:641.180694px;}
.y4e_c00152{bottom:641.180880px;}
.y50_c00152{bottom:641.181207px;}
.y4f_c00152{bottom:641.181614px;}
.y4c_c00152{bottom:663.296912px;}
.y49_c00152{bottom:663.297114px;}
.y4b_c00152{bottom:663.297168px;}
.y45_c00152{bottom:663.297303px;}
.y4a_c00152{bottom:663.297307px;}
.y48_c00152{bottom:663.297417px;}
.y44_c00152{bottom:663.297470px;}
.y46_c00152{bottom:663.297826px;}
.y47_c00152{bottom:663.297943px;}
.y3b_c00152{bottom:686.308758px;}
.y3c_c00152{bottom:686.309101px;}
.y3e_c00152{bottom:686.309515px;}
.y3d_c00152{bottom:686.309685px;}
.y3f_c00152{bottom:686.309752px;}
.y43_c00152{bottom:686.310163px;}
.y40_c00152{bottom:686.310426px;}
.y41_c00152{bottom:686.310453px;}
.y42_c00152{bottom:686.310766px;}
.y33_c00152{bottom:708.631371px;}
.y32_c00152{bottom:708.631404px;}
.y34_c00152{bottom:708.631984px;}
.y35_c00152{bottom:708.632358px;}
.y36_c00152{bottom:708.632881px;}
.y37_c00152{bottom:708.632908px;}
.y38_c00152{bottom:708.633219px;}
.y39_c00152{bottom:708.633713px;}
.y3a_c00152{bottom:708.633769px;}
.y2f_c00152{bottom:730.545219px;}
.y2b_c00152{bottom:730.545424px;}
.y2a_c00152{bottom:730.545668px;}
.y2d_c00152{bottom:730.545705px;}
.y30_c00152{bottom:730.545889px;}
.y2e_c00152{bottom:730.545896px;}
.y2c_c00152{bottom:730.546038px;}
.y29_c00152{bottom:730.546150px;}
.y31_c00152{bottom:730.546263px;}
.y28_c00152{bottom:754.544592px;}
.y26_c00152{bottom:775.450971px;}
.y25_c00152{bottom:775.451304px;}
.y27_c00152{bottom:775.451435px;}
.y22_c00152{bottom:775.451520px;}
.y23_c00152{bottom:775.451547px;}
.y24_c00152{bottom:775.451680px;}
.y21_c00152{bottom:775.451946px;}
.y20_c00152{bottom:775.452609px;}
.y17_c00152{bottom:798.724957px;}
.y18_c00152{bottom:798.724971px;}
.y19_c00152{bottom:798.725584px;}
.y1a_c00152{bottom:798.726198px;}
.y1c_c00152{bottom:798.726448px;}
.y1b_c00152{bottom:798.726931px;}
.y1d_c00152{bottom:798.727062px;}
.y1e_c00152{bottom:798.727465px;}
.y1f_c00152{bottom:798.727929px;}
.yf_c00152{bottom:819.181500px;}
.y10_c00152{bottom:819.591558px;}
.y11_c00152{bottom:820.230240px;}
.y12_c00152{bottom:820.960777px;}
.y13_c00152{bottom:821.144389px;}
.y14_c00152{bottom:821.394480px;}
.y15_c00152{bottom:821.890437px;}
.y16_c00152{bottom:822.558770px;}
.ye_c00152{bottom:868.587792px;}
.yd_c00152{bottom:868.588263px;}
.y9_c00152{bottom:868.588467px;}
.ya_c00152{bottom:868.588716px;}
.yc_c00152{bottom:868.588734px;}
.yb_c00152{bottom:868.589025px;}
.y8_c00152{bottom:926.083485px;}
.y7_c00152{bottom:926.454897px;}
.y6_c00152{bottom:926.750934px;}
.y5_c00152{bottom:927.149445px;}
.y4_c00152{bottom:927.484812px;}
.y3_c00152{bottom:927.812007px;}
.y2_c00152{bottom:928.536093px;}
.y1_c00152{bottom:928.800000px;}
.ha_c00152{height:61.953748px;}
.h15_c00152{height:65.100000px;}
.h8_c00152{height:65.103938px;}
.h6_c00152{height:66.154002px;}
.h2_c00152{height:67.201210px;}
.hd_c00152{height:67.204065px;}
.h5_c00152{height:68.254129px;}
.h12_c00152{height:69.300000px;}
.h4_c00152{height:69.304193px;}
.h11_c00152{height:70.350000px;}
.h9_c00152{height:70.354256px;}
.h10_c00152{height:71.400000px;}
.h14_c00152{height:71.403570px;}
.hc_c00152{height:71.404320px;}
.h7_c00152{height:72.454383px;}
.he_c00152{height:73.504447px;}
.hf_c00152{height:74.554510px;}
.h13_c00152{height:76.653832px;}
.hb_c00152{height:76.654637px;}
.h3_c00152{height:91.351644px;}
.h1_c00152{height:1005.000000px;}
.h0_c00152{height:1005.150000px;}
.w0_c00152{width:705.450000px;}
.w1_c00152{width:705.750000px;}
.x0_c00152{left:0.000000px;}
.x89_c00152{left:78.030000px;}
.x8e_c00152{left:89.761500px;}
.x85_c00152{left:116.910000px;}
.x7c_c00152{left:119.612775px;}
.x1_c00152{left:122.554500px;}
.x92_c00152{left:127.173315px;}
.xf_c00152{left:128.662500px;}
.x2a_c00152{left:130.142583px;}
.x4b_c00152{left:131.489146px;}
.x7f_c00152{left:133.385788px;}
.x84_c00152{left:150.120000px;}
.x3e_c00152{left:151.202997px;}
.x32_c00152{left:153.363408px;}
.x16_c00152{left:155.251711px;}
.x67_c00152{left:156.335793px;}
.x37_c00152{left:157.953562px;}
.x6c_c00152{left:162.273379px;}
.x51_c00152{left:163.891951px;}
.x2_c00152{left:166.539000px;}
.x3f_c00152{left:171.453939px;}
.x23_c00152{left:173.885347px;}
.x1c_c00152{left:175.235101px;}
.x9_c00152{left:178.200747px;}
.x56_c00152{left:179.554690px;}
.x2b_c00152{left:184.146117px;}
.x5b_c00152{left:187.115794px;}
.x17_c00152{left:190.084419px;}
.x38_c00152{left:193.596369px;}
.x71_c00152{left:197.915482px;}
.x8f_c00152{left:199.113000px;}
.x63_c00152{left:200.346555px;}
.x40_c00152{left:201.966135px;}
.x79_c00152{left:204.396855px;}
.x5c_c00152{left:208.176835px;}
.x52_c00152{left:211.414693px;}
.x86_c00152{left:212.490000px;}
.x7d_c00152{left:213.849676px;}
.x24_c00152{left:216.277479px;}
.x2c_c00152{left:218.978824px;}
.x10_c00152{left:224.002500px;}
.x64_c00152{left:227.618355px;}
.x6d_c00152{left:230.317113px;}
.xa_c00152{left:231.661173px;}
.x46_c00152{left:234.635875px;}
.x8a_c00152{left:236.520000px;}
.x25_c00152{left:237.608553px;}
.x44_c00152{left:239.497344px;}
.x2d_c00152{left:242.470162px;}
.x82_c00152{left:244.090569px;}
.x18_c00152{left:245.168068px;}
.x39_c00152{left:246.249738px;}
.x22_c00152{left:249.760071px;}
.x33_c00152{left:257.049948px;}
.x4c_c00152{left:259.207090px;}
.x41_c00152{left:260.290197px;}
.x3a_c00152{left:264.340432px;}
.x68_c00152{left:265.421493px;}
.x47_c00152{left:269.198550px;}
.x72_c00152{left:270.279727px;}
.x5d_c00152{left:271.631508px;}
.x57_c00152{left:273.520059px;}
.x2e_c00152{left:278.112969px;}
.x90_c00152{left:280.179000px;}
.xb_c00152{left:281.611473px;}
.x3_c00152{left:287.220000px;}
.x11_c00152{left:290.415000px;}
.x65_c00152{left:291.613093px;}
.x34_c00152{left:295.121551px;}
.x80_c00152{left:298.095220px;}
.x87_c00152{left:301.590000px;}
.x69_c00152{left:304.573228px;}
.x12_c00152{left:307.107000px;}
.x6e_c00152{left:311.860980px;}
.x5e_c00152{left:313.213540px;}
.x73_c00152{left:315.372189px;}
.x2f_c00152{left:318.074803px;}
.x8b_c00152{left:319.140000px;}
.x7a_c00152{left:323.475276px;}
.x19_c00152{left:324.553171px;}
.x1d_c00152{left:326.444400px;}
.x42_c00152{left:327.523831px;}
.x13_c00152{left:329.842500px;}
.x3b_c00152{left:332.384166px;}
.x4d_c00152{left:333.731599px;}
.x76_c00152{left:335.893726px;}
.x74_c00152{left:340.213692px;}
.x4_c00152{left:341.752500px;}
.x6a_c00152{left:344.805096px;}
.x93_c00152{left:345.870000px;}
.x6f_c00152{left:347.773452px;}
.x1e_c00152{left:352.096002px;}
.x83_c00152{left:354.527917px;}
.x58_c00152{left:357.225690px;}
.x26_c00152{left:359.655820px;}
.x1a_c00152{left:361.276110px;}
.x4e_c00152{left:365.053894px;}
.x81_c00152{left:368.029185px;}
.x35_c00152{left:369.376027px;}
.x61_c00152{left:373.157848px;}
.x14_c00152{left:374.929500px;}
.x27_c00152{left:379.096680px;}
.x59_c00152{left:380.987061px;}
.x1f_c00152{left:382.338165px;}
.x1b_c00152{left:383.957349px;}
.x77_c00152{left:385.306699px;}
.x5f_c00152{left:386.387901px;}
.x7b_c00152{left:389.358745px;}
.xc_c00152{left:393.664005px;}
.x7e_c00152{left:394.761088px;}
.x75_c00152{left:396.107457px;}
.x5_c00152{left:397.647000px;}
.x3c_c00152{left:400.697932px;}
.x30_c00152{left:404.749281px;}
.x60_c00152{left:406.908876px;}
.x6b_c00152{left:409.338400px;}
.x70_c00152{left:411.496657px;}
.x8c_c00152{left:412.560000px;}
.x48_c00152{left:414.197089px;}
.x43_c00152{left:415.548490px;}
.x53_c00152{left:421.488120px;}
.x88_c00152{left:422.550000px;}
.x8d_c00152{left:424.440000px;}
.x20_c00152{left:425.540395px;}
.x62_c00152{left:426.891349px;}
.x49_c00152{left:428.507322px;}
.x3d_c00152{left:429.859963px;}
.x91_c00152{left:431.074500px;}
.x15_c00152{left:435.687000px;}
.x36_c00152{left:439.039959px;}
.x4f_c00152{left:440.928568px;}
.x5a_c00152{left:442.821535px;}
.x31_c00152{left:444.441082px;}
.x78_c00152{left:446.871141px;}
.x28_c00152{left:453.621189px;}
.x45_c00152{left:454.699881px;}
.x54_c00152{left:457.400959px;}
.x21_c00152{left:461.723268px;}
.x6_c00152{left:464.065500px;}
.x50_c00152{left:465.770071px;}
.x66_c00152{left:467.663895px;}
.xd_c00152{left:468.995214px;}
.x4a_c00152{left:475.489998px;}
.x55_c00152{left:481.162330px;}
.x29_c00152{left:490.614160px;}
.x7_c00152{left:513.405000px;}
.xe_c00152{left:537.576180px;}
.x8_c00152{left:575.307000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:0.000000pt;}
.fs8_c00152{font-size:55.069998pt;}
.fs13_c00152{font-size:57.866667pt;}
.fs6_c00152{font-size:57.870167pt;}
.fs4_c00152{font-size:58.803557pt;}
.fs0_c00152{font-size:59.734409pt;}
.fsb_c00152{font-size:59.736947pt;}
.fs3_c00152{font-size:60.670337pt;}
.fs10_c00152{font-size:61.600000pt;}
.fs2_c00152{font-size:61.603727pt;}
.fsf_c00152{font-size:62.533333pt;}
.fs7_c00152{font-size:62.537116pt;}
.fse_c00152{font-size:63.466667pt;}
.fs12_c00152{font-size:63.469840pt;}
.fsa_c00152{font-size:63.470506pt;}
.fs5_c00152{font-size:64.403896pt;}
.fsc_c00152{font-size:65.337286pt;}
.fsd_c00152{font-size:66.270676pt;}
.fs11_c00152{font-size:68.136740pt;}
.fs9_c00152{font-size:68.137455pt;}
.fs1_c00152{font-size:81.201462pt;}
.y0_c00152{bottom:0.000000pt;}
.yed_c00152{bottom:101.517333pt;}
.yeb_c00152{bottom:129.934133pt;}
.yea_c00152{bottom:129.934547pt;}
.yec_c00152{bottom:129.934680pt;}
.ye9_c00152{bottom:149.607440pt;}
.ye8_c00152{bottom:150.176453pt;}
.ye7_c00152{bottom:150.531080pt;}
.ye6_c00152{bottom:150.948733pt;}
.ye5_c00152{bottom:151.213200pt;}
.ye4_c00152{bottom:151.669320pt;}
.ye3_c00152{bottom:151.796760pt;}
.ye2_c00152{bottom:151.995547pt;}
.ye1_c00152{bottom:152.257067pt;}
.ye0_c00152{bottom:152.641333pt;}
.ydf_c00152{bottom:171.325333pt;}
.yde_c00152{bottom:190.624000pt;}
.ydd_c00152{bottom:210.614667pt;}
.yd8_c00152{bottom:230.314807pt;}
.yd7_c00152{bottom:230.314928pt;}
.yd9_c00152{bottom:230.315364pt;}
.yd6_c00152{bottom:230.315479pt;}
.yd5_c00152{bottom:230.315641pt;}
.ydc_c00152{bottom:230.315824pt;}
.yda_c00152{bottom:230.315963pt;}
.ydb_c00152{bottom:230.316040pt;}
.yd4_c00152{bottom:250.590036pt;}
.yd3_c00152{bottom:250.590412pt;}
.yd1_c00152{bottom:250.590565pt;}
.yd2_c00152{bottom:250.590696pt;}
.yd0_c00152{bottom:250.591060pt;}
.yce_c00152{bottom:250.591065pt;}
.ycf_c00152{bottom:250.591291pt;}
.ycd_c00152{bottom:271.548961pt;}
.ycc_c00152{bottom:271.549284pt;}
.yca_c00152{bottom:271.549793pt;}
.ycb_c00152{bottom:271.549832pt;}
.yc9_c00152{bottom:271.550409pt;}
.yc8_c00152{bottom:271.550931pt;}
.yc5_c00152{bottom:271.550948pt;}
.yc7_c00152{bottom:271.551067pt;}
.yc6_c00152{bottom:271.551081pt;}
.yc3_c00152{bottom:290.354168pt;}
.yc2_c00152{bottom:290.354304pt;}
.yc4_c00152{bottom:290.354420pt;}
.yc1_c00152{bottom:290.354760pt;}
.yc0_c00152{bottom:290.355335pt;}
.ybf_c00152{bottom:290.355456pt;}
.ybe_c00152{bottom:290.355631pt;}
.ybd_c00152{bottom:290.356140pt;}
.yba_c00152{bottom:310.482149pt;}
.yb5_c00152{bottom:310.482373pt;}
.ybb_c00152{bottom:310.482573pt;}
.yb9_c00152{bottom:310.482777pt;}
.yb6_c00152{bottom:310.482865pt;}
.ybc_c00152{bottom:310.483131pt;}
.yb8_c00152{bottom:310.483221pt;}
.yb7_c00152{bottom:310.483449pt;}
.yae_c00152{bottom:330.649833pt;}
.yad_c00152{bottom:330.650195pt;}
.yaf_c00152{bottom:330.650299pt;}
.yb4_c00152{bottom:330.650608pt;}
.yb2_c00152{bottom:330.650625pt;}
.yb3_c00152{bottom:330.650824pt;}
.yb0_c00152{bottom:330.650897pt;}
.yb1_c00152{bottom:330.651108pt;}
.ya7_c00152{bottom:351.472756pt;}
.ya8_c00152{bottom:351.473367pt;}
.yaa_c00152{bottom:351.473480pt;}
.ya9_c00152{bottom:351.473563pt;}
.yab_c00152{bottom:351.473919pt;}
.yac_c00152{bottom:351.474248pt;}
.ya3_c00152{bottom:371.082523pt;}
.ya2_c00152{bottom:371.082579pt;}
.ya1_c00152{bottom:371.082635pt;}
.ya0_c00152{bottom:371.082732pt;}
.ya4_c00152{bottom:371.083095pt;}
.y9f_c00152{bottom:371.083147pt;}
.ya6_c00152{bottom:371.083451pt;}
.ya5_c00152{bottom:371.083533pt;}
.y9a_c00152{bottom:390.468181pt;}
.y97_c00152{bottom:390.468189pt;}
.y9c_c00152{bottom:390.468283pt;}
.y9b_c00152{bottom:390.468285pt;}
.y98_c00152{bottom:390.468361pt;}
.y99_c00152{bottom:390.468397pt;}
.y9e_c00152{bottom:390.468517pt;}
.y9d_c00152{bottom:390.468532pt;}
.y90_c00152{bottom:410.597031pt;}
.y8f_c00152{bottom:410.597072pt;}
.y94_c00152{bottom:410.597168pt;}
.y96_c00152{bottom:410.597192pt;}
.y8d_c00152{bottom:410.597223pt;}
.y92_c00152{bottom:410.597348pt;}
.y91_c00152{bottom:410.597363pt;}
.y95_c00152{bottom:410.597367pt;}
.y8e_c00152{bottom:410.597368pt;}
.y93_c00152{bottom:410.597692pt;}
.y86_c00152{bottom:430.768653pt;}
.y88_c00152{bottom:430.768743pt;}
.y87_c00152{bottom:430.768932pt;}
.y85_c00152{bottom:430.769097pt;}
.y89_c00152{bottom:430.769155pt;}
.y8a_c00152{bottom:430.769807pt;}
.y8c_c00152{bottom:430.770349pt;}
.y8b_c00152{bottom:430.770352pt;}
.y7c_c00152{bottom:450.655233pt;}
.y7b_c00152{bottom:450.655396pt;}
.y82_c00152{bottom:450.655436pt;}
.y7e_c00152{bottom:450.655524pt;}
.y84_c00152{bottom:450.655552pt;}
.y81_c00152{bottom:450.655744pt;}
.y7d_c00152{bottom:450.655805pt;}
.y80_c00152{bottom:450.656040pt;}
.y83_c00152{bottom:450.656061pt;}
.y7f_c00152{bottom:450.656176pt;}
.y73_c00152{bottom:470.551188pt;}
.y75_c00152{bottom:470.551289pt;}
.y77_c00152{bottom:470.551403pt;}
.y78_c00152{bottom:470.551708pt;}
.y76_c00152{bottom:470.551713pt;}
.y74_c00152{bottom:470.551719pt;}
.y79_c00152{bottom:470.552239pt;}
.y7a_c00152{bottom:470.552811pt;}
.y70_c00152{bottom:490.622099pt;}
.y6f_c00152{bottom:490.622329pt;}
.y6c_c00152{bottom:490.622352pt;}
.y71_c00152{bottom:490.622537pt;}
.y6e_c00152{bottom:490.622613pt;}
.y72_c00152{bottom:490.622843pt;}
.y6b_c00152{bottom:490.622953pt;}
.y6d_c00152{bottom:490.622963pt;}
.y62_c00152{bottom:510.534639pt;}
.y64_c00152{bottom:510.534743pt;}
.y63_c00152{bottom:510.535104pt;}
.y65_c00152{bottom:510.535285pt;}
.y67_c00152{bottom:510.535440pt;}
.y68_c00152{bottom:510.535464pt;}
.y66_c00152{bottom:510.535881pt;}
.y69_c00152{bottom:510.535903pt;}
.y6a_c00152{bottom:510.536101pt;}
.y5d_c00152{bottom:529.910740pt;}
.y5c_c00152{bottom:529.910876pt;}
.y5e_c00152{bottom:529.911312pt;}
.y5b_c00152{bottom:529.911344pt;}
.y60_c00152{bottom:529.911476pt;}
.y5f_c00152{bottom:529.911571pt;}
.y5a_c00152{bottom:529.911720pt;}
.y61_c00152{bottom:529.912140pt;}
.y58_c00152{bottom:549.841599pt;}
.y56_c00152{bottom:549.841924pt;}
.y59_c00152{bottom:549.841961pt;}
.y57_c00152{bottom:549.842013pt;}
.y55_c00152{bottom:549.842273pt;}
.y54_c00152{bottom:569.937625pt;}
.y4d_c00152{bottom:569.938121pt;}
.y53_c00152{bottom:569.938283pt;}
.y52_c00152{bottom:569.938377pt;}
.y51_c00152{bottom:569.938395pt;}
.y4e_c00152{bottom:569.938560pt;}
.y50_c00152{bottom:569.938851pt;}
.y4f_c00152{bottom:569.939212pt;}
.y4c_c00152{bottom:589.597255pt;}
.y49_c00152{bottom:589.597435pt;}
.y4b_c00152{bottom:589.597483pt;}
.y45_c00152{bottom:589.597603pt;}
.y4a_c00152{bottom:589.597607pt;}
.y48_c00152{bottom:589.597704pt;}
.y44_c00152{bottom:589.597751pt;}
.y46_c00152{bottom:589.598068pt;}
.y47_c00152{bottom:589.598172pt;}
.y3b_c00152{bottom:610.052229pt;}
.y3c_c00152{bottom:610.052535pt;}
.y3e_c00152{bottom:610.052903pt;}
.y3d_c00152{bottom:610.053053pt;}
.y3f_c00152{bottom:610.053113pt;}
.y43_c00152{bottom:610.053479pt;}
.y40_c00152{bottom:610.053712pt;}
.y41_c00152{bottom:610.053736pt;}
.y42_c00152{bottom:610.054015pt;}
.y33_c00152{bottom:629.894552pt;}
.y32_c00152{bottom:629.894581pt;}
.y34_c00152{bottom:629.895097pt;}
.y35_c00152{bottom:629.895429pt;}
.y36_c00152{bottom:629.895895pt;}
.y37_c00152{bottom:629.895919pt;}
.y38_c00152{bottom:629.896195pt;}
.y39_c00152{bottom:629.896633pt;}
.y3a_c00152{bottom:629.896684pt;}
.y2f_c00152{bottom:649.373528pt;}
.y2b_c00152{bottom:649.373711pt;}
.y2a_c00152{bottom:649.373927pt;}
.y2d_c00152{bottom:649.373960pt;}
.y30_c00152{bottom:649.374124pt;}
.y2e_c00152{bottom:649.374129pt;}
.y2c_c00152{bottom:649.374256pt;}
.y29_c00152{bottom:649.374356pt;}
.y31_c00152{bottom:649.374456pt;}
.y28_c00152{bottom:670.706304pt;}
.y26_c00152{bottom:689.289752pt;}
.y25_c00152{bottom:689.290048pt;}
.y27_c00152{bottom:689.290164pt;}
.y22_c00152{bottom:689.290240pt;}
.y23_c00152{bottom:689.290264pt;}
.y24_c00152{bottom:689.290383pt;}
.y21_c00152{bottom:689.290619pt;}
.y20_c00152{bottom:689.291208pt;}
.y17_c00152{bottom:709.977740pt;}
.y18_c00152{bottom:709.977752pt;}
.y19_c00152{bottom:709.978297pt;}
.y1a_c00152{bottom:709.978843pt;}
.y1c_c00152{bottom:709.979065pt;}
.y1b_c00152{bottom:709.979495pt;}
.y1d_c00152{bottom:709.979611pt;}
.y1e_c00152{bottom:709.979969pt;}
.y1f_c00152{bottom:709.980381pt;}
.yf_c00152{bottom:728.161333pt;}
.y10_c00152{bottom:728.525829pt;}
.y11_c00152{bottom:729.093547pt;}
.y12_c00152{bottom:729.742913pt;}
.y13_c00152{bottom:729.906124pt;}
.y14_c00152{bottom:730.128427pt;}
.y15_c00152{bottom:730.569277pt;}
.y16_c00152{bottom:731.163351pt;}
.ye_c00152{bottom:772.078037pt;}
.yd_c00152{bottom:772.078456pt;}
.y9_c00152{bottom:772.078637pt;}
.ya_c00152{bottom:772.078859pt;}
.yc_c00152{bottom:772.078875pt;}
.yb_c00152{bottom:772.079133pt;}
.y8_c00152{bottom:823.185320pt;}
.y7_c00152{bottom:823.515464pt;}
.y6_c00152{bottom:823.778608pt;}
.y5_c00152{bottom:824.132840pt;}
.y4_c00152{bottom:824.430944pt;}
.y3_c00152{bottom:824.721784pt;}
.y2_c00152{bottom:825.365416pt;}
.y1_c00152{bottom:825.600000pt;}
.ha_c00152{height:55.069998pt;}
.h15_c00152{height:57.866667pt;}
.h8_c00152{height:57.870167pt;}
.h6_c00152{height:58.803557pt;}
.h2_c00152{height:59.734409pt;}
.hd_c00152{height:59.736947pt;}
.h5_c00152{height:60.670337pt;}
.h12_c00152{height:61.600000pt;}
.h4_c00152{height:61.603727pt;}
.h11_c00152{height:62.533333pt;}
.h9_c00152{height:62.537116pt;}
.h10_c00152{height:63.466667pt;}
.h14_c00152{height:63.469840pt;}
.hc_c00152{height:63.470506pt;}
.h7_c00152{height:64.403896pt;}
.he_c00152{height:65.337286pt;}
.hf_c00152{height:66.270676pt;}
.h13_c00152{height:68.136740pt;}
.hb_c00152{height:68.137455pt;}
.h3_c00152{height:81.201462pt;}
.h1_c00152{height:893.333333pt;}
.h0_c00152{height:893.466667pt;}
.w0_c00152{width:627.066667pt;}
.w1_c00152{width:627.333333pt;}
.x0_c00152{left:0.000000pt;}
.x89_c00152{left:69.360000pt;}
.x8e_c00152{left:79.788000pt;}
.x85_c00152{left:103.920000pt;}
.x7c_c00152{left:106.322467pt;}
.x1_c00152{left:108.937333pt;}
.x92_c00152{left:113.042947pt;}
.xf_c00152{left:114.366667pt;}
.x2a_c00152{left:115.682296pt;}
.x4b_c00152{left:116.879241pt;}
.x7f_c00152{left:118.565145pt;}
.x84_c00152{left:133.440000pt;}
.x3e_c00152{left:134.402664pt;}
.x32_c00152{left:136.323029pt;}
.x16_c00152{left:138.001521pt;}
.x67_c00152{left:138.965149pt;}
.x37_c00152{left:140.403167pt;}
.x6c_c00152{left:144.243004pt;}
.x51_c00152{left:145.681735pt;}
.x2_c00152{left:148.034667pt;}
.x3f_c00152{left:152.403501pt;}
.x23_c00152{left:154.564753pt;}
.x1c_c00152{left:155.764535pt;}
.x9_c00152{left:158.400664pt;}
.x56_c00152{left:159.604169pt;}
.x2b_c00152{left:163.685437pt;}
.x5b_c00152{left:166.325151pt;}
.x17_c00152{left:168.963928pt;}
.x38_c00152{left:172.085661pt;}
.x71_c00152{left:175.924873pt;}
.x8f_c00152{left:176.989333pt;}
.x63_c00152{left:178.085827pt;}
.x40_c00152{left:179.525453pt;}
.x79_c00152{left:181.686093pt;}
.x5c_c00152{left:185.046076pt;}
.x52_c00152{left:187.924172pt;}
.x86_c00152{left:188.880000pt;}
.x7d_c00152{left:190.088601pt;}
.x24_c00152{left:192.246648pt;}
.x2c_c00152{left:194.647844pt;}
.x10_c00152{left:199.113333pt;}
.x64_c00152{left:202.327427pt;}
.x6d_c00152{left:204.726323pt;}
.xa_c00152{left:205.921043pt;}
.x46_c00152{left:208.565223pt;}
.x8a_c00152{left:210.240000pt;}
.x25_c00152{left:211.207603pt;}
.x44_c00152{left:212.886528pt;}
.x2d_c00152{left:215.529033pt;}
.x82_c00152{left:216.969395pt;}
.x18_c00152{left:217.927172pt;}
.x39_c00152{left:218.888656pt;}
.x22_c00152{left:222.008952pt;}
.x33_c00152{left:228.488843pt;}
.x4c_c00152{left:230.406303pt;}
.x41_c00152{left:231.369064pt;}
.x3a_c00152{left:234.969273pt;}
.x68_c00152{left:235.930216pt;}
.x47_c00152{left:239.287600pt;}
.x72_c00152{left:240.248647pt;}
.x5d_c00152{left:241.450229pt;}
.x57_c00152{left:243.128941pt;}
.x2e_c00152{left:247.211528pt;}
.x90_c00152{left:249.048000pt;}
.xb_c00152{left:250.321309pt;}
.x3_c00152{left:255.306667pt;}
.x11_c00152{left:258.146667pt;}
.x65_c00152{left:259.211639pt;}
.x34_c00152{left:262.330268pt;}
.x80_c00152{left:264.973529pt;}
.x87_c00152{left:268.080000pt;}
.x69_c00152{left:270.731759pt;}
.x12_c00152{left:272.984000pt;}
.x6e_c00152{left:277.209760pt;}
.x5e_c00152{left:278.412036pt;}
.x73_c00152{left:280.330835pt;}
.x2f_c00152{left:282.733159pt;}
.x8b_c00152{left:283.680000pt;}
.x7a_c00152{left:287.533579pt;}
.x19_c00152{left:288.491708pt;}
.x1d_c00152{left:290.172800pt;}
.x42_c00152{left:291.132295pt;}
.x13_c00152{left:293.193333pt;}
.x3b_c00152{left:295.452592pt;}
.x4d_c00152{left:296.650311pt;}
.x76_c00152{left:298.572201pt;}
.x74_c00152{left:302.412171pt;}
.x4_c00152{left:303.780000pt;}
.x6a_c00152{left:306.493419pt;}
.x93_c00152{left:307.440000pt;}
.x6f_c00152{left:309.131957pt;}
.x1e_c00152{left:312.974224pt;}
.x83_c00152{left:315.135927pt;}
.x58_c00152{left:317.533947pt;}
.x26_c00152{left:319.694063pt;}
.x1a_c00152{left:321.134320pt;}
.x4e_c00152{left:324.492351pt;}
.x81_c00152{left:327.137053pt;}
.x35_c00152{left:328.334247pt;}
.x61_c00152{left:331.695865pt;}
.x14_c00152{left:333.270667pt;}
.x27_c00152{left:336.974827pt;}
.x59_c00152{left:338.655165pt;}
.x1f_c00152{left:339.856147pt;}
.x1b_c00152{left:341.295421pt;}
.x77_c00152{left:342.494844pt;}
.x5f_c00152{left:343.455912pt;}
.x7b_c00152{left:346.096663pt;}
.xc_c00152{left:349.923560pt;}
.x7e_c00152{left:350.898745pt;}
.x75_c00152{left:352.095517pt;}
.x5_c00152{left:353.464000pt;}
.x3c_c00152{left:356.175940pt;}
.x30_c00152{left:359.777139pt;}
.x60_c00152{left:361.696779pt;}
.x6b_c00152{left:363.856356pt;}
.x70_c00152{left:365.774807pt;}
.x8c_c00152{left:366.720000pt;}
.x48_c00152{left:368.175191pt;}
.x43_c00152{left:369.376436pt;}
.x53_c00152{left:374.656107pt;}
.x88_c00152{left:375.600000pt;}
.x8d_c00152{left:377.280000pt;}
.x20_c00152{left:378.258129pt;}
.x62_c00152{left:379.458977pt;}
.x49_c00152{left:380.895397pt;}
.x3d_c00152{left:382.097745pt;}
.x91_c00152{left:383.177333pt;}
.x15_c00152{left:387.277333pt;}
.x36_c00152{left:390.257741pt;}
.x4f_c00152{left:391.936505pt;}
.x5a_c00152{left:393.619143pt;}
.x31_c00152{left:395.058740pt;}
.x78_c00152{left:397.218792pt;}
.x28_c00152{left:403.218835pt;}
.x45_c00152{left:404.177672pt;}
.x54_c00152{left:406.578631pt;}
.x21_c00152{left:410.420683pt;}
.x6_c00152{left:412.502667pt;}
.x50_c00152{left:414.017841pt;}
.x66_c00152{left:415.701240pt;}
.xd_c00152{left:416.884635pt;}
.x4a_c00152{left:422.657776pt;}
.x55_c00152{left:427.699849pt;}
.x29_c00152{left:436.101476pt;}
.x7_c00152{left:456.360000pt;}
.xe_c00152{left:477.845493pt;}
.x8_c00152{left:511.384000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mac_c00153{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);}
.ma2_c00153{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.mae_c00153{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);}
.m10e_c00153{transform:matrix(0.016265,0.000114,-0.001750,0.249994,0,0);-ms-transform:matrix(0.016265,0.000114,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.016265,0.000114,-0.001750,0.249994,0,0);}
.m100_c00153{transform:matrix(0.018545,0.000130,-0.001750,0.249994,0,0);-ms-transform:matrix(0.018545,0.000130,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.018545,0.000130,-0.001750,0.249994,0,0);}
.mb7_c00153{transform:matrix(0.046135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046135,0.000000,0.000000,0.250000,0,0);}
.me3_c00153{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.065855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065855,0.000000,0.000000,0.250000,0,0);}
.mf7_c00153{transform:matrix(0.104132,0.000729,-0.001750,0.249994,0,0);-ms-transform:matrix(0.104132,0.000729,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.104132,0.000729,-0.001750,0.249994,0,0);}
.m108_c00153{transform:matrix(0.130102,0.000911,-0.001750,0.249994,0,0);-ms-transform:matrix(0.130102,0.000911,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.130102,0.000911,-0.001750,0.249994,0,0);}
.m8_c00153{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);}
.m9d_c00153{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);}
.m29_c00153{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00153{transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);}
.md7_c00153{transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{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);}
.m1a_c00153{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);}
.ma6_c00153{transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);}
.me8_c00153{transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);}
.m10f_c00153{transform:matrix(0.150486,0.001053,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150486,0.001053,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150486,0.001053,-0.001750,0.249994,0,0);}
.mc2_c00153{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);}
.m74_c00153{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);}
.mab_c00153{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);}
.m32_c00153{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);}
.mda_c00153{transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);}
.ma5_c00153{transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);}
.ma1_c00153{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);}
.mde_c00153{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);}
.m57_c00153{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);}
.m9a_c00153{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);}
.m25_c00153{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);}
.m26_c00153{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);}
.m10c_c00153{transform:matrix(0.159446,0.001116,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159446,0.001116,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159446,0.001116,-0.001750,0.249994,0,0);}
.mca_c00153{transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{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);}
.m55_c00153{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);}
.m20_c00153{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);}
.me_c00153{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);}
.mbd_c00153{transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{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);}
.m92_c00153{transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);}
.ma7_c00153{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);}
.m7f_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);}
.m31_c00153{transform:matrix(0.163165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163165,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{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);}
.m22_c00153{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);}
.m58_c00153{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);}
.m9f_c00153{transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164195,0.000000,0.000000,0.250000,0,0);}
.mc6_c00153{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);}
.m1f_c00153{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);}
.m85_c00153{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);}
.m34_c00153{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);}
.m3f_c00153{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);}
.m91_c00153{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);}
.m89_c00153{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);}
.mc1_c00153{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);}
.m4b_c00153{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);}
.m4e_c00153{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);}
.m3a_c00153{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{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);}
.m44_c00153{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);}
.me6_c00153{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);}
.ma0_c00153{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);}
.m46_c00153{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);}
.m8d_c00153{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);}
.m79_c00153{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);}
.m5f_c00153{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);}
.m2f_c00153{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);}
.mf4_c00153{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);}
.m8e_c00153{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);}
.m37_c00153{transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);}
.m104_c00153{transform:matrix(0.174851,0.001224,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174851,0.001224,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174851,0.001224,-0.001750,0.249994,0,0);}
.m43_c00153{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);}
.m10_c00153{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);}
.m67_c00153{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);}
.mc0_c00153{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);}
.mf2_c00153{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);}
.mf_c00153{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);}
.m10b_c00153{transform:matrix(0.176326,0.001234,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176326,0.001234,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176326,0.001234,-0.001750,0.249994,0,0);}
.mf6_c00153{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);}
.m18_c00153{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);}
.m87_c00153{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);}
.m33_c00153{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);}
.m5b_c00153{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{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);}
.m7c_c00153{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);}
.m47_c00153{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);}
.m8c_c00153{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);}
.mfe_c00153{transform:matrix(0.178906,0.001252,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178906,0.001252,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178906,0.001252,-0.001750,0.249994,0,0);}
.m2e_c00153{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);}
.m99_c00153{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);}
.m111_c00153{transform:matrix(0.179401,0.001256,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179401,0.001256,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179401,0.001256,-0.001750,0.249994,0,0);}
.m107_c00153{transform:matrix(0.179451,0.001256,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179451,0.001256,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179451,0.001256,-0.001750,0.249994,0,0);}
.m80_c00153{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);}
.mf3_c00153{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);}
.m6c_c00153{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);}
.m28_c00153{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);}
.m77_c00153{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);}
.m6e_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);}
.m72_c00153{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);}
.mdc_c00153{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);}
.mfd_c00153{transform:matrix(0.181841,0.001273,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181841,0.001273,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181841,0.001273,-0.001750,0.249994,0,0);}
.mbc_c00153{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);}
.mdd_c00153{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);}
.mc8_c00153{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);}
.m54_c00153{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);}
.me0_c00153{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);}
.mff_c00153{transform:matrix(0.184635,0.001292,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184635,0.001292,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184635,0.001292,-0.001750,0.249994,0,0);}
.m117_c00153{transform:matrix(0.185655,0.001300,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185655,0.001300,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185655,0.001300,-0.001750,0.249994,0,0);}
.m5a_c00153{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);}
.mc9_c00153{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);}
.mfb_c00153{transform:matrix(0.186790,0.001308,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186790,0.001308,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186790,0.001308,-0.001750,0.249994,0,0);}
.mf8_c00153{transform:matrix(0.187040,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187040,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187040,0.001309,-0.001750,0.249994,0,0);}
.m68_c00153{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);}
.m4c_c00153{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);}
.mc7_c00153{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);}
.ma9_c00153{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);}
.m62_c00153{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);}
.m9b_c00153{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);}
.m2c_c00153{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);}
.m19_c00153{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);}
.mb6_c00153{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);}
.m90_c00153{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);}
.m5e_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);}
.m61_c00153{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);}
.ma4_c00153{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);}
.m56_c00153{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);}
.m14_c00153{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);}
.m50_c00153{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);}
.mec_c00153{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);}
.m1b_c00153{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);}
.med_c00153{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.m116_c00153{transform:matrix(0.191905,0.001343,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191905,0.001343,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191905,0.001343,-0.001750,0.249994,0,0);}
.m6b_c00153{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);}
.m11_c00153{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);}
.mc4_c00153{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);}
.m12_c00153{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_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);}
.m78_c00153{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);}
.m112_c00153{transform:matrix(0.193870,0.001357,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193870,0.001357,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193870,0.001357,-0.001750,0.249994,0,0);}
.m106_c00153{transform:matrix(0.193965,0.001358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193965,0.001358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193965,0.001358,-0.001750,0.249994,0,0);}
.m10d_c00153{transform:matrix(0.194800,0.001364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194800,0.001364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194800,0.001364,-0.001750,0.249994,0,0);}
.m4f_c00153{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);}
.mdf_c00153{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);}
.m1c_c00153{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);}
.m21_c00153{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);}
.m45_c00153{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);}
.m95_c00153{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);}
.mb3_c00153{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);}
.m70_c00153{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);}
.m8a_c00153{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);}
.mf5_c00153{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);}
.m59_c00153{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);}
.m109_c00153{transform:matrix(0.197490,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197490,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197490,0.001382,-0.001750,0.249994,0,0);}
.m101_c00153{transform:matrix(0.197610,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197610,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197610,0.001383,-0.001750,0.249994,0,0);}
.m7d_c00153{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);}
.m102_c00153{transform:matrix(0.198210,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198210,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198210,0.001387,-0.001750,0.249994,0,0);}
.m71_c00153{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);}
.m36_c00153{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);}
.m24_c00153{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);}
.m6f_c00153{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);}
.m7a_c00153{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);}
.m39_c00153{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);}
.m1d_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);}
.m63_c00153{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);}
.m49_c00153{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);}
.m3b_c00153{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);}
.m96_c00153{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);}
.m88_c00153{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);}
.m66_c00153{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);}
.m2a_c00153{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);}
.m13_c00153{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);}
.m69_c00153{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);}
.mf9_c00153{transform:matrix(0.203670,0.001426,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203670,0.001426,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203670,0.001426,-0.001750,0.249994,0,0);}
.mdb_c00153{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);}
.md0_c00153{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);}
.m86_c00153{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);}
.m16_c00153{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);}
.m38_c00153{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);}
.me7_c00153{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);}
.mbf_c00153{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);}
.m27_c00153{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);}
.me5_c00153{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);}
.m82_c00153{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);}
.me9_c00153{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);}
.mfa_c00153{transform:matrix(0.207485,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207485,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207485,0.001452,-0.001750,0.249994,0,0);}
.m6d_c00153{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);}
.m10a_c00153{transform:matrix(0.208265,0.001458,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208265,0.001458,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208265,0.001458,-0.001750,0.249994,0,0);}
.m1e_c00153{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);}
.m42_c00153{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);}
.m75_c00153{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);}
.me4_c00153{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);}
.mf1_c00153{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);}
.m84_c00153{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);}
.mb4_c00153{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);}
.m8b_c00153{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);}
.meb_c00153{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);}
.mb0_c00153{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);}
.mb2_c00153{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);}
.md_c00153{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);}
.m94_c00153{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);}
.m110_c00153{transform:matrix(0.216300,0.001514,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216300,0.001514,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216300,0.001514,-0.001750,0.249994,0,0);}
.md9_c00153{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);}
.m105_c00153{transform:matrix(0.217600,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217600,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217600,0.001523,-0.001750,0.249994,0,0);}
.mea_c00153{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);}
.m5c_c00153{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);}
.m41_c00153{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{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);}
.mfc_c00153{transform:matrix(0.220840,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220840,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220840,0.001546,-0.001750,0.249994,0,0);}
.md1_c00153{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);}
.m4a_c00153{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);}
.m114_c00153{transform:matrix(0.222325,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222325,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222325,0.001556,-0.001750,0.249994,0,0);}
.mb1_c00153{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);}
.mbe_c00153{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{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);}
.m2b_c00153{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);}
.m23_c00153{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);}
.mb5_c00153{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);}
.m103_c00153{transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);}
.m60_c00153{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);}
.m48_c00153{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);}
.m35_c00153{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);}
.m81_c00153{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);}
.mee_c00153{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);}
.m76_c00153{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);}
.m7b_c00153{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);}
.mcf_c00153{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{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);}
.md6_c00153{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);}
.m93_c00153{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);}
.m40_c00153{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);}
.md5_c00153{transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);}
.m4d_c00153{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);}
.mc_c00153{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);}
.m53_c00153{transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.mf0_c00153{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);}
.m8f_c00153{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);}
.m97_c00153{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);}
.m3e_c00153{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.md8_c00153{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);}
.m6a_c00153{transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);}
.me1_c00153{transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264970,0.000000,0.000000,0.250000,0,0);}
.m113_c00153{transform:matrix(0.267773,0.001874,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267773,0.001874,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267773,0.001874,-0.001750,0.249994,0,0);}
.m7e_c00153{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);}
.mc5_c00153{transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{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);}
.m115_c00153{transform:matrix(0.305508,0.002139,-0.001750,0.249994,0,0);-ms-transform:matrix(0.305508,0.002139,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.305508,0.002139,-0.001750,0.249994,0,0);}
.m98_c00153{transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{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);}
.mcc_c00153{transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.321590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321590,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325655,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.331605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331605,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.334410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334410,0.000000,0.000000,0.250000,0,0);}
.md4_c00153{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.md2_c00153{transform:matrix(0.359205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359205,0.000000,0.000000,0.250000,0,0);}
.mef_c00153{transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);}
.mcb_c00153{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);}
.me2_c00153{transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);}
.md3_c00153{transform:matrix(0.386595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386595,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.393640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393640,0.000000,0.000000,0.250000,0,0);}
.mcd_c00153{transform:matrix(0.394530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394530,0.000000,0.000000,0.250000,0,0);}
.mba_c00153{transform:matrix(0.402195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402195,0.000000,0.000000,0.250000,0,0);}
.m118_c00153{transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00153{transform:matrix(0.419820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419820,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.436880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436880,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.441935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441935,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.471935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471935,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.485200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485200,0.000000,0.000000,0.250000,0,0);}
.mce_c00153{transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.673120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673120,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;}
.fs0_c00153{font-size:22.050000px;}
.fs1_c00153{font-size:36.750000px;}
.fsc_c00153{font-size:49.350000px;}
.fse_c00153{font-size:51.450000px;}
.fsd_c00153{font-size:52.500000px;}
.fsf_c00153{font-size:52.501286px;}
.fsa_c00153{font-size:68.250000px;}
.fs8_c00153{font-size:69.300000px;}
.fs3_c00153{font-size:70.350000px;}
.fs4_c00153{font-size:71.400000px;}
.fs7_c00153{font-size:72.450000px;}
.fs9_c00153{font-size:73.500000px;}
.fs5_c00153{font-size:74.550000px;}
.fs6_c00153{font-size:75.600000px;}
.fs2_c00153{font-size:88.200000px;}
.fsb_c00153{font-size:93.450000px;}
.y0_c00153{bottom:0.000000px;}
.y43_c00153{bottom:91.530000px;}
.y33_c00153{bottom:150.853650px;}
.y32_c00153{bottom:150.853770px;}
.y34_c00153{bottom:150.854220px;}
.y37_c00153{bottom:150.854271px;}
.y41_c00153{bottom:150.854523px;}
.y42_c00153{bottom:150.854613px;}
.y40_c00153{bottom:150.854643px;}
.y38_c00153{bottom:150.854691px;}
.y35_c00153{bottom:150.854820px;}
.y36_c00153{bottom:150.854891px;}
.y3d_c00153{bottom:150.855072px;}
.y39_c00153{bottom:150.855121px;}
.y3f_c00153{bottom:150.855232px;}
.y3e_c00153{bottom:150.855263px;}
.y3b_c00153{bottom:150.855582px;}
.y3c_c00153{bottom:150.855702px;}
.y3a_c00153{bottom:150.855722px;}
.y31_c00153{bottom:167.448431px;}
.y30_c00153{bottom:167.786741px;}
.y2f_c00153{bottom:167.947191px;}
.y2e_c00153{bottom:168.206131px;}
.y2d_c00153{bottom:168.625817px;}
.y2c_c00153{bottom:168.801492px;}
.y2b_c00153{bottom:168.892033px;}
.y2a_c00153{bottom:169.279757px;}
.y29_c00153{bottom:169.548158px;}
.y28_c00153{bottom:169.642626px;}
.y27_c00153{bottom:169.710687px;}
.y26_c00153{bottom:169.912928px;}
.y25_c00153{bottom:170.179333px;}
.y24_c00153{bottom:170.311728px;}
.y23_c00153{bottom:170.544219px;}
.y22_c00153{bottom:170.640000px;}
.y21_c00153{bottom:187.306500px;}
.y20_c00153{bottom:205.092000px;}
.y1f_c00153{bottom:222.802500px;}
.y1d_c00153{bottom:273.334500px;}
.y1c_c00153{bottom:296.527500px;}
.y1b_c00153{bottom:318.951000px;}
.y1a_c00153{bottom:341.623500px;}
.y1e_c00153{bottom:356.400000px;}
.y19_c00153{bottom:365.040000px;}
.y18_c00153{bottom:387.222000px;}
.y17_c00153{bottom:410.860500px;}
.y16_c00153{bottom:433.620000px;}
.y15_c00153{bottom:455.842500px;}
.y14_c00153{bottom:479.190000px;}
.y13_c00153{bottom:501.969000px;}
.y12_c00153{bottom:525.325500px;}
.y11_c00153{bottom:547.918500px;}
.y10_c00153{bottom:570.969000px;}
.yf_c00153{bottom:593.815500px;}
.ye_c00153{bottom:616.338000px;}
.yd_c00153{bottom:638.533500px;}
.yc_c00153{bottom:661.771500px;}
.yb_c00153{bottom:684.645000px;}
.ya_c00153{bottom:708.123000px;}
.y9_c00153{bottom:730.540500px;}
.y8_c00153{bottom:753.030000px;}
.y7_c00153{bottom:775.929000px;}
.y6_c00153{bottom:799.006500px;}
.y5_c00153{bottom:821.962500px;}
.y4_c00153{bottom:848.475000px;}
.y3_c00153{bottom:910.741500px;}
.y2_c00153{bottom:926.521500px;}
.y1_c00153{bottom:945.810000px;}
.h2_c00153{height:22.050000px;}
.h3_c00153{height:36.750000px;}
.he_c00153{height:49.350000px;}
.h10_c00153{height:51.450000px;}
.hf_c00153{height:52.500000px;}
.h11_c00153{height:52.501286px;}
.hc_c00153{height:68.250000px;}
.ha_c00153{height:69.300000px;}
.h5_c00153{height:70.350000px;}
.h6_c00153{height:71.400000px;}
.h9_c00153{height:72.450000px;}
.hb_c00153{height:73.500000px;}
.h7_c00153{height:74.550000px;}
.h8_c00153{height:75.600000px;}
.h4_c00153{height:88.200000px;}
.hd_c00153{height:93.450000px;}
.h0_c00153{height:1008.450000px;}
.h1_c00153{height:1008.750000px;}
.w0_c00153{width:676.890000px;}
.w1_c00153{width:677.250000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:94.770000px;}
.x7_c00153{left:96.930000px;}
.x42_c00153{left:123.390000px;}
.xa0_c00153{left:129.889500px;}
.x87_c00153{left:132.840000px;}
.x8_c00153{left:141.750000px;}
.xa1_c00153{left:143.572500px;}
.x8e_c00153{left:144.720000px;}
.x3_c00153{left:163.620000px;}
.x99_c00153{left:165.240000px;}
.x79_c00153{left:168.750000px;}
.xa8_c00153{left:172.803105px;}
.x8f_c00153{left:174.960000px;}
.xa2_c00153{left:176.785500px;}
.x49_c00153{left:178.200000px;}
.x78_c00153{left:179.550000px;}
.x6c_c00153{left:181.170000px;}
.x43_c00153{left:182.250000px;}
.x2e_c00153{left:183.870000px;}
.xe_c00153{left:185.760000px;}
.x7e_c00153{left:188.460000px;}
.x90_c00153{left:192.510000px;}
.xa3_c00153{left:195.699000px;}
.x4f_c00153{left:205.200000px;}
.x2f_c00153{left:208.170000px;}
.x15_c00153{left:209.250000px;}
.xf_c00153{left:211.140000px;}
.xa9_c00153{left:212.495058px;}
.x61_c00153{left:214.380000px;}
.x35_c00153{left:215.460000px;}
.x4_c00153{left:218.160000px;}
.x28_c00153{left:220.050000px;}
.x83_c00153{left:221.670000px;}
.x54_c00153{left:224.100000px;}
.x1_c00153{left:225.180000px;}
.x88_c00153{left:230.310000px;}
.x30_c00153{left:232.740000px;}
.x4a_c00153{left:234.090000px;}
.x91_c00153{left:239.220000px;}
.x3b_c00153{left:241.380000px;}
.x6d_c00153{left:242.460000px;}
.x68_c00153{left:244.350000px;}
.x5_c00153{left:245.970000px;}
.x10_c00153{left:248.940000px;}
.x22_c00153{left:252.450000px;}
.x80_c00153{left:253.800000px;}
.x82_c00153{left:257.040000px;}
.x92_c00153{left:260.820000px;}
.x44_c00153{left:262.170000px;}
.x36_c00153{left:264.600000px;}
.x16_c00153{left:266.760000px;}
.x4b_c00153{left:268.650000px;}
.x6_c00153{left:269.730000px;}
.xa4_c00153{left:272.371500px;}
.x11_c00153{left:273.510000px;}
.x1d_c00153{left:276.480000px;}
.x31_c00153{left:277.560000px;}
.x6e_c00153{left:280.800000px;}
.xaa_c00153{left:283.505533px;}
.x75_c00153{left:284.580000px;}
.x37_c00153{left:285.660000px;}
.x62_c00153{left:286.740000px;}
.x41_c00153{left:290.250000px;}
.x7a_c00153{left:291.330000px;}
.x9a_c00153{left:292.950000px;}
.x17_c00153{left:294.840000px;}
.x93_c00153{left:296.730000px;}
.x7f_c00153{left:298.080000px;}
.x3c_c00153{left:299.970000px;}
.x50_c00153{left:301.860000px;}
.xab_c00153{left:302.946489px;}
.x6f_c00153{left:305.100000px;}
.x45_c00153{left:306.990000px;}
.x84_c00153{left:310.230000px;}
.x23_c00153{left:315.090000px;}
.x9_c00153{left:318.870000px;}
.x1e_c00153{left:320.490000px;}
.x29_c00153{left:321.570000px;}
.xa5_c00153{left:324.210000px;}
.x38_c00153{left:326.970000px;}
.x55_c00153{left:328.050000px;}
.x3d_c00153{left:329.400000px;}
.x63_c00153{left:331.560000px;}
.xa_c00153{left:335.340000px;}
.x59_c00153{left:338.850000px;}
.x5e_c00153{left:340.740000px;}
.x12_c00153{left:343.170000px;}
.xb_c00153{left:344.790000px;}
.x64_c00153{left:349.110000px;}
.x18_c00153{left:351.000000px;}
.x56_c00153{left:352.620000px;}
.x5a_c00153{left:358.290000px;}
.xc_c00153{left:359.370000px;}
.x46_c00153{left:361.530000px;}
.x70_c00153{left:364.230000px;}
.x7b_c00153{left:367.470000px;}
.x5f_c00153{left:368.820000px;}
.x2a_c00153{left:370.170000px;}
.x1f_c00153{left:371.250000px;}
.x76_c00153{left:372.330000px;}
.xd_c00153{left:373.680000px;}
.xac_c00153{left:376.388590px;}
.x4c_c00153{left:377.460000px;}
.x9b_c00153{left:378.810000px;}
.x65_c00153{left:380.430000px;}
.x32_c00153{left:381.510000px;}
.x71_c00153{left:382.590000px;}
.x57_c00153{left:385.830000px;}
.x5b_c00153{left:387.990000px;}
.x94_c00153{left:390.690000px;}
.x24_c00153{left:392.040000px;}
.x19_c00153{left:394.200000px;}
.x69_c00153{left:399.600000px;}
.x58_c00153{left:402.300000px;}
.x89_c00153{left:403.920000px;}
.x20_c00153{left:408.240000px;}
.x2b_c00153{left:409.860000px;}
.x39_c00153{left:413.910000px;}
.x4d_c00153{left:415.800000px;}
.x1a_c00153{left:417.690000px;}
.x72_c00153{left:420.390000px;}
.x60_c00153{left:423.090000px;}
.x95_c00153{left:427.410000px;}
.x3e_c00153{left:428.490000px;}
.x66_c00153{left:431.730000px;}
.x51_c00153{left:433.620000px;}
.x25_c00153{left:434.970000px;}
.x13_c00153{left:436.590000px;}
.x33_c00153{left:439.020000px;}
.x81_c00153{left:440.370000px;}
.x5c_c00153{left:443.340000px;}
.x8a_c00153{left:444.690000px;}
.x47_c00153{left:446.310000px;}
.x1b_c00153{left:451.710000px;}
.x3f_c00153{left:453.870000px;}
.xad_c00153{left:458.471112px;}
.x21_c00153{left:463.320000px;}
.x14_c00153{left:465.750000px;}
.x7c_c00153{left:467.640000px;}
.x9c_c00153{left:468.990000px;}
.x2c_c00153{left:470.070000px;}
.x1c_c00153{left:472.230000px;}
.x77_c00153{left:473.310000px;}
.x34_c00153{left:474.660000px;}
.x26_c00153{left:478.440000px;}
.x52_c00153{left:484.110000px;}
.x48_c00153{left:485.190000px;}
.x5d_c00153{left:488.430000px;}
.x67_c00153{left:490.050000px;}
.x2d_c00153{left:492.750000px;}
.x73_c00153{left:498.150000px;}
.x9d_c00153{left:499.770000px;}
.x53_c00153{left:501.390000px;}
.x27_c00153{left:506.520000px;}
.x85_c00153{left:507.870000px;}
.xae_c00153{left:509.232101px;}
.xa6_c00153{left:514.576500px;}
.x6a_c00153{left:515.970000px;}
.x40_c00153{left:518.400000px;}
.x8b_c00153{left:524.070000px;}
.x4e_c00153{left:526.230000px;}
.x3a_c00153{left:528.660000px;}
.xaf_c00153{left:530.023119px;}
.x96_c00153{left:534.330000px;}
.x7d_c00153{left:535.680000px;}
.xa7_c00153{left:537.498000px;}
.x9e_c00153{left:538.650000px;}
.x6b_c00153{left:550.260000px;}
.x86_c00153{left:552.960000px;}
.x74_c00153{left:561.330000px;}
.x8c_c00153{left:566.190000px;}
.xb0_c00153{left:567.823467px;}
.x97_c00153{left:577.260000px;}
.xb1_c00153{left:583.484233px;}
.x8d_c00153{left:585.360000px;}
.x9f_c00153{left:590.220000px;}
.x98_c00153{left:593.730000px;}
.xb2_c00153{left:602.115147px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
.fs0_c00153{font-size:19.600000pt;}
.fs1_c00153{font-size:32.666667pt;}
.fsc_c00153{font-size:43.866667pt;}
.fse_c00153{font-size:45.733333pt;}
.fsd_c00153{font-size:46.666667pt;}
.fsf_c00153{font-size:46.667810pt;}
.fsa_c00153{font-size:60.666667pt;}
.fs8_c00153{font-size:61.600000pt;}
.fs3_c00153{font-size:62.533333pt;}
.fs4_c00153{font-size:63.466667pt;}
.fs7_c00153{font-size:64.400000pt;}
.fs9_c00153{font-size:65.333333pt;}
.fs5_c00153{font-size:66.266667pt;}
.fs6_c00153{font-size:67.200000pt;}
.fs2_c00153{font-size:78.400000pt;}
.fsb_c00153{font-size:83.066667pt;}
.y0_c00153{bottom:0.000000pt;}
.y43_c00153{bottom:81.360000pt;}
.y33_c00153{bottom:134.092133pt;}
.y32_c00153{bottom:134.092240pt;}
.y34_c00153{bottom:134.092640pt;}
.y37_c00153{bottom:134.092685pt;}
.y41_c00153{bottom:134.092909pt;}
.y42_c00153{bottom:134.092989pt;}
.y40_c00153{bottom:134.093016pt;}
.y38_c00153{bottom:134.093059pt;}
.y35_c00153{bottom:134.093173pt;}
.y36_c00153{bottom:134.093236pt;}
.y3d_c00153{bottom:134.093397pt;}
.y39_c00153{bottom:134.093441pt;}
.y3f_c00153{bottom:134.093540pt;}
.y3e_c00153{bottom:134.093567pt;}
.y3b_c00153{bottom:134.093851pt;}
.y3c_c00153{bottom:134.093957pt;}
.y3a_c00153{bottom:134.093975pt;}
.y31_c00153{bottom:148.843049pt;}
.y30_c00153{bottom:149.143769pt;}
.y2f_c00153{bottom:149.286392pt;}
.y2e_c00153{bottom:149.516561pt;}
.y2d_c00153{bottom:149.889615pt;}
.y2c_c00153{bottom:150.045771pt;}
.y2b_c00153{bottom:150.126252pt;}
.y2a_c00153{bottom:150.470895pt;}
.y29_c00153{bottom:150.709473pt;}
.y28_c00153{bottom:150.793445pt;}
.y27_c00153{bottom:150.853944pt;}
.y26_c00153{bottom:151.033713pt;}
.y25_c00153{bottom:151.270519pt;}
.y24_c00153{bottom:151.388203pt;}
.y23_c00153{bottom:151.594861pt;}
.y22_c00153{bottom:151.680000pt;}
.y21_c00153{bottom:166.494667pt;}
.y20_c00153{bottom:182.304000pt;}
.y1f_c00153{bottom:198.046667pt;}
.y1d_c00153{bottom:242.964000pt;}
.y1c_c00153{bottom:263.580000pt;}
.y1b_c00153{bottom:283.512000pt;}
.y1a_c00153{bottom:303.665333pt;}
.y1e_c00153{bottom:316.800000pt;}
.y19_c00153{bottom:324.480000pt;}
.y18_c00153{bottom:344.197333pt;}
.y17_c00153{bottom:365.209333pt;}
.y16_c00153{bottom:385.440000pt;}
.y15_c00153{bottom:405.193333pt;}
.y14_c00153{bottom:425.946667pt;}
.y13_c00153{bottom:446.194667pt;}
.y12_c00153{bottom:466.956000pt;}
.y11_c00153{bottom:487.038667pt;}
.y10_c00153{bottom:507.528000pt;}
.yf_c00153{bottom:527.836000pt;}
.ye_c00153{bottom:547.856000pt;}
.yd_c00153{bottom:567.585333pt;}
.yc_c00153{bottom:588.241333pt;}
.yb_c00153{bottom:608.573333pt;}
.ya_c00153{bottom:629.442667pt;}
.y9_c00153{bottom:649.369333pt;}
.y8_c00153{bottom:669.360000pt;}
.y7_c00153{bottom:689.714667pt;}
.y6_c00153{bottom:710.228000pt;}
.y5_c00153{bottom:730.633333pt;}
.y4_c00153{bottom:754.200000pt;}
.y3_c00153{bottom:809.548000pt;}
.y2_c00153{bottom:823.574667pt;}
.y1_c00153{bottom:840.720000pt;}
.h2_c00153{height:19.600000pt;}
.h3_c00153{height:32.666667pt;}
.he_c00153{height:43.866667pt;}
.h10_c00153{height:45.733333pt;}
.hf_c00153{height:46.666667pt;}
.h11_c00153{height:46.667810pt;}
.hc_c00153{height:60.666667pt;}
.ha_c00153{height:61.600000pt;}
.h5_c00153{height:62.533333pt;}
.h6_c00153{height:63.466667pt;}
.h9_c00153{height:64.400000pt;}
.hb_c00153{height:65.333333pt;}
.h7_c00153{height:66.266667pt;}
.h8_c00153{height:67.200000pt;}
.h4_c00153{height:78.400000pt;}
.hd_c00153{height:83.066667pt;}
.h0_c00153{height:896.400000pt;}
.h1_c00153{height:896.666667pt;}
.w0_c00153{width:601.680000pt;}
.w1_c00153{width:602.000000pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:84.240000pt;}
.x7_c00153{left:86.160000pt;}
.x42_c00153{left:109.680000pt;}
.xa0_c00153{left:115.457333pt;}
.x87_c00153{left:118.080000pt;}
.x8_c00153{left:126.000000pt;}
.xa1_c00153{left:127.620000pt;}
.x8e_c00153{left:128.640000pt;}
.x3_c00153{left:145.440000pt;}
.x99_c00153{left:146.880000pt;}
.x79_c00153{left:150.000000pt;}
.xa8_c00153{left:153.602760pt;}
.x8f_c00153{left:155.520000pt;}
.xa2_c00153{left:157.142667pt;}
.x49_c00153{left:158.400000pt;}
.x78_c00153{left:159.600000pt;}
.x6c_c00153{left:161.040000pt;}
.x43_c00153{left:162.000000pt;}
.x2e_c00153{left:163.440000pt;}
.xe_c00153{left:165.120000pt;}
.x7e_c00153{left:167.520000pt;}
.x90_c00153{left:171.120000pt;}
.xa3_c00153{left:173.954667pt;}
.x4f_c00153{left:182.400000pt;}
.x2f_c00153{left:185.040000pt;}
.x15_c00153{left:186.000000pt;}
.xf_c00153{left:187.680000pt;}
.xa9_c00153{left:188.884496pt;}
.x61_c00153{left:190.560000pt;}
.x35_c00153{left:191.520000pt;}
.x4_c00153{left:193.920000pt;}
.x28_c00153{left:195.600000pt;}
.x83_c00153{left:197.040000pt;}
.x54_c00153{left:199.200000pt;}
.x1_c00153{left:200.160000pt;}
.x88_c00153{left:204.720000pt;}
.x30_c00153{left:206.880000pt;}
.x4a_c00153{left:208.080000pt;}
.x91_c00153{left:212.640000pt;}
.x3b_c00153{left:214.560000pt;}
.x6d_c00153{left:215.520000pt;}
.x68_c00153{left:217.200000pt;}
.x5_c00153{left:218.640000pt;}
.x10_c00153{left:221.280000pt;}
.x22_c00153{left:224.400000pt;}
.x80_c00153{left:225.600000pt;}
.x82_c00153{left:228.480000pt;}
.x92_c00153{left:231.840000pt;}
.x44_c00153{left:233.040000pt;}
.x36_c00153{left:235.200000pt;}
.x16_c00153{left:237.120000pt;}
.x4b_c00153{left:238.800000pt;}
.x6_c00153{left:239.760000pt;}
.xa4_c00153{left:242.108000pt;}
.x11_c00153{left:243.120000pt;}
.x1d_c00153{left:245.760000pt;}
.x31_c00153{left:246.720000pt;}
.x6e_c00153{left:249.600000pt;}
.xaa_c00153{left:252.004919pt;}
.x75_c00153{left:252.960000pt;}
.x37_c00153{left:253.920000pt;}
.x62_c00153{left:254.880000pt;}
.x41_c00153{left:258.000000pt;}
.x7a_c00153{left:258.960000pt;}
.x9a_c00153{left:260.400000pt;}
.x17_c00153{left:262.080000pt;}
.x93_c00153{left:263.760000pt;}
.x7f_c00153{left:264.960000pt;}
.x3c_c00153{left:266.640000pt;}
.x50_c00153{left:268.320000pt;}
.xab_c00153{left:269.285768pt;}
.x6f_c00153{left:271.200000pt;}
.x45_c00153{left:272.880000pt;}
.x84_c00153{left:275.760000pt;}
.x23_c00153{left:280.080000pt;}
.x9_c00153{left:283.440000pt;}
.x1e_c00153{left:284.880000pt;}
.x29_c00153{left:285.840000pt;}
.xa5_c00153{left:288.186667pt;}
.x38_c00153{left:290.640000pt;}
.x55_c00153{left:291.600000pt;}
.x3d_c00153{left:292.800000pt;}
.x63_c00153{left:294.720000pt;}
.xa_c00153{left:298.080000pt;}
.x59_c00153{left:301.200000pt;}
.x5e_c00153{left:302.880000pt;}
.x12_c00153{left:305.040000pt;}
.xb_c00153{left:306.480000pt;}
.x64_c00153{left:310.320000pt;}
.x18_c00153{left:312.000000pt;}
.x56_c00153{left:313.440000pt;}
.x5a_c00153{left:318.480000pt;}
.xc_c00153{left:319.440000pt;}
.x46_c00153{left:321.360000pt;}
.x70_c00153{left:323.760000pt;}
.x7b_c00153{left:326.640000pt;}
.x5f_c00153{left:327.840000pt;}
.x2a_c00153{left:329.040000pt;}
.x1f_c00153{left:330.000000pt;}
.x76_c00153{left:330.960000pt;}
.xd_c00153{left:332.160000pt;}
.xac_c00153{left:334.567636pt;}
.x4c_c00153{left:335.520000pt;}
.x9b_c00153{left:336.720000pt;}
.x65_c00153{left:338.160000pt;}
.x32_c00153{left:339.120000pt;}
.x71_c00153{left:340.080000pt;}
.x57_c00153{left:342.960000pt;}
.x5b_c00153{left:344.880000pt;}
.x94_c00153{left:347.280000pt;}
.x24_c00153{left:348.480000pt;}
.x19_c00153{left:350.400000pt;}
.x69_c00153{left:355.200000pt;}
.x58_c00153{left:357.600000pt;}
.x89_c00153{left:359.040000pt;}
.x20_c00153{left:362.880000pt;}
.x2b_c00153{left:364.320000pt;}
.x39_c00153{left:367.920000pt;}
.x4d_c00153{left:369.600000pt;}
.x1a_c00153{left:371.280000pt;}
.x72_c00153{left:373.680000pt;}
.x60_c00153{left:376.080000pt;}
.x95_c00153{left:379.920000pt;}
.x3e_c00153{left:380.880000pt;}
.x66_c00153{left:383.760000pt;}
.x51_c00153{left:385.440000pt;}
.x25_c00153{left:386.640000pt;}
.x13_c00153{left:388.080000pt;}
.x33_c00153{left:390.240000pt;}
.x81_c00153{left:391.440000pt;}
.x5c_c00153{left:394.080000pt;}
.x8a_c00153{left:395.280000pt;}
.x47_c00153{left:396.720000pt;}
.x1b_c00153{left:401.520000pt;}
.x3f_c00153{left:403.440000pt;}
.xad_c00153{left:407.529877pt;}
.x21_c00153{left:411.840000pt;}
.x14_c00153{left:414.000000pt;}
.x7c_c00153{left:415.680000pt;}
.x9c_c00153{left:416.880000pt;}
.x2c_c00153{left:417.840000pt;}
.x1c_c00153{left:419.760000pt;}
.x77_c00153{left:420.720000pt;}
.x34_c00153{left:421.920000pt;}
.x26_c00153{left:425.280000pt;}
.x52_c00153{left:430.320000pt;}
.x48_c00153{left:431.280000pt;}
.x5d_c00153{left:434.160000pt;}
.x67_c00153{left:435.600000pt;}
.x2d_c00153{left:438.000000pt;}
.x73_c00153{left:442.800000pt;}
.x9d_c00153{left:444.240000pt;}
.x53_c00153{left:445.680000pt;}
.x27_c00153{left:450.240000pt;}
.x85_c00153{left:451.440000pt;}
.xae_c00153{left:452.650756pt;}
.xa6_c00153{left:457.401333pt;}
.x6a_c00153{left:458.640000pt;}
.x40_c00153{left:460.800000pt;}
.x8b_c00153{left:465.840000pt;}
.x4e_c00153{left:467.760000pt;}
.x3a_c00153{left:469.920000pt;}
.xaf_c00153{left:471.131661pt;}
.x96_c00153{left:474.960000pt;}
.x7d_c00153{left:476.160000pt;}
.xa7_c00153{left:477.776000pt;}
.x9e_c00153{left:478.800000pt;}
.x6b_c00153{left:489.120000pt;}
.x86_c00153{left:491.520000pt;}
.x74_c00153{left:498.960000pt;}
.x8c_c00153{left:503.280000pt;}
.xb0_c00153{left:504.731971pt;}
.x97_c00153{left:513.120000pt;}
.xb1_c00153{left:518.652652pt;}
.x8d_c00153{left:520.320000pt;}
.x9f_c00153{left:524.640000pt;}
.x98_c00153{left:527.760000pt;}
.xb2_c00153{left:535.213464pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m41_c00154{transform:matrix(0.002970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002970,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008090,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{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);}
.m56_c00154{transform:matrix(0.080055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080055,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);}
.me6_c00154{transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);}
.mb3_c00154{transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);}
.me1_c00154{transform:matrix(0.115445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115445,0.000000,0.000000,0.250000,0,0);}
.mb9_c00154{transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140265,0.000000,0.000000,0.250000,0,0);}
.m5d_c00154{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m91_c00154{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);}
.m80_c00154{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);}
.m4a_c00154{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);}
.m1f_c00154{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);}
.m52_c00154{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);}
.m5_c00154{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);}
.m21_c00154{transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{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);}
.m37_c00154{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);}
.m4f_c00154{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);}
.m32_c00154{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);}
.m23_c00154{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);}
.m83_c00154{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);}
.m96_c00154{transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{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);}
.m57_c00154{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);}
.m5b_c00154{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{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);}
.mbe_c00154{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);}
.m2a_c00154{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);}
.m86_c00154{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);}
.m42_c00154{transform:matrix(0.167420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167420,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{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);}
.m9d_c00154{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);}
.m59_c00154{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);}
.m65_c00154{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);}
.m27_c00154{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);}
.ma3_c00154{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{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);}
.m17_c00154{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);}
.m2f_c00154{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);}
.md7_c00154{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);}
.m4d_c00154{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);}
.ma6_c00154{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);}
.m81_c00154{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);}
.m62_c00154{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);}
.m85_c00154{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);}
.m55_c00154{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);}
.m1a_c00154{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);}
.m61_c00154{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);}
.m6b_c00154{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);}
.m9f_c00154{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);}
.m4b_c00154{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);}
.mde_c00154{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);}
.m1e_c00154{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);}
.mad_c00154{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);}
.m66_c00154{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);}
.m20_c00154{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);}
.mae_c00154{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);}
.m6c_c00154{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);}
.m31_c00154{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);}
.m6a_c00154{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);}
.m5a_c00154{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);}
.m28_c00154{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_c00154{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);}
.m7b_c00154{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);}
.ma0_c00154{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);}
.m8d_c00154{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);}
.m29_c00154{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);}
.m2b_c00154{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);}
.m2c_c00154{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);}
.m51_c00154{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);}
.m19_c00154{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);}
.m6e_c00154{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);}
.mb5_c00154{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);}
.mca_c00154{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);}
.m49_c00154{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);}
.m63_c00154{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);}
.m39_c00154{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);}
.m94_c00154{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);}
.mc9_c00154{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);}
.m5e_c00154{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);}
.mb1_c00154{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_c00154{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);}
.m9c_c00154{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);}
.md5_c00154{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);}
.m50_c00154{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);}
.maa_c00154{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);}
.ma7_c00154{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);}
.m22_c00154{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);}
.m34_c00154{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);}
.m64_c00154{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);}
.ma8_c00154{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);}
.m14_c00154{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);}
.m60_c00154{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);}
.m4c_c00154{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);}
.md4_c00154{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);}
.m26_c00154{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);}
.m5f_c00154{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);}
.m10_c00154{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);}
.m15_c00154{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);}
.mb_c00154{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);}
.mf_c00154{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.mc1_c00154{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_c00154{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);}
.m68_c00154{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);}
.m7c_c00154{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);}
.m25_c00154{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);}
.m1b_c00154{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);}
.mb8_c00154{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);}
.m11_c00154{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);}
.mbf_c00154{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);}
.mce_c00154{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);}
.m7e_c00154{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);}
.mab_c00154{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);}
.ma4_c00154{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_c00154{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);}
.ma5_c00154{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);}
.mc5_c00154{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);}
.md1_c00154{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);}
.m1d_c00154{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);}
.m8c_c00154{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);}
.m12_c00154{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);}
.mb7_c00154{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);}
.mc2_c00154{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);}
.m8b_c00154{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);}
.m89_c00154{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);}
.m93_c00154{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);}
.md0_c00154{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);}
.mb6_c00154{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);}
.m87_c00154{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);}
.m43_c00154{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);}
.m90_c00154{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);}
.m95_c00154{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);}
.m5c_c00154{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);}
.ma_c00154{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);}
.m45_c00154{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);}
.m92_c00154{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);}
.m88_c00154{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);}
.m48_c00154{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);}
.md9_c00154{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);}
.m4e_c00154{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);}
.mdf_c00154{transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);}
.mb2_c00154{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);}
.m2d_c00154{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);}
.maf_c00154{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);}
.m18_c00154{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);}
.mb4_c00154{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);}
.m16_c00154{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);}
.m24_c00154{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);}
.md2_c00154{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);}
.mbd_c00154{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);}
.m33_c00154{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);}
.mac_c00154{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_c00154{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);}
.m9_c00154{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);}
.m38_c00154{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.mc8_c00154{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);}
.m8e_c00154{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);}
.m40_c00154{transform:matrix(0.228210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228210,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228785,0.000000,0.000000,0.250000,0,0);}
.me0_c00154{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);}
.mc7_c00154{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);}
.md6_c00154{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);}
.m84_c00154{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);}
.ma9_c00154{transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);}
.mcd_c00154{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);}
.m13_c00154{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);}
.m7_c00154{transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);}
.mcc_c00154{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);}
.m3d_c00154{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);}
.md8_c00154{transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{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);}
.mc6_c00154{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.mc0_c00154{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);}
.m3f_c00154{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{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);}
.m3c_c00154{transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257890,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259010,0.000000,0.000000,0.250000,0,0);}
.mcb_c00154{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);}
.mba_c00154{transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00154{transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);}
.m76_c00154{transform:matrix(0.276215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276215,0.000000,0.000000,0.250000,0,0);}
.mbc_c00154{transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);}
.mcf_c00154{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m98_c00154{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.mdc_c00154{transform:matrix(0.286830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286830,0.000000,0.000000,0.250000,0,0);}
.me5_c00154{transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294135,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297795,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300455,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329070,0.000000,0.000000,0.250000,0,0);}
.mb0_c00154{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.ma2_c00154{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);}
.mbb_c00154{transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362790,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371700,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{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);}
.md3_c00154{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(0.405910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405910,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{transform:matrix(0.408385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408385,0.000000,0.000000,0.250000,0,0);}
.m71_c00154{transform:matrix(0.415645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415645,0.000000,0.000000,0.250000,0,0);}
.m77_c00154{transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);}
.m73_c00154{transform:matrix(0.428930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428930,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.479670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479670,0.000000,0.000000,0.250000,0,0);}
.m97_c00154{transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480055,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{transform:matrix(0.483750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483750,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.495850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495850,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.506200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506200,0.000000,0.000000,0.250000,0,0);}
.me3_c00154{transform:matrix(0.525840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525840,0.000000,0.000000,0.250000,0,0);}
.m74_c00154{transform:matrix(0.543400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543400,0.000000,0.000000,0.250000,0,0);}
.mdd_c00154{transform:matrix(0.584105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584105,0.000000,0.000000,0.250000,0,0);}
.me4_c00154{transform:matrix(0.598760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598760,0.000000,0.000000,0.250000,0,0);}
.mdb_c00154{transform:matrix(0.635540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635540,0.000000,0.000000,0.250000,0,0);}
.mda_c00154{transform:matrix(0.685290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685290,0.000000,0.000000,0.250000,0,0);}
.me2_c00154{transform:matrix(0.687305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.731785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731785,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.926515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.926515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.926515,0.000000,0.000000,0.250000,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;}
.fsd_c00154{font-size:22.050000px;}
.fs10_c00154{font-size:49.350000px;}
.fse_c00154{font-size:50.400000px;}
.fsf_c00154{font-size:51.450000px;}
.fs11_c00154{font-size:54.600000px;}
.fs3_c00154{font-size:61.950000px;}
.fs2_c00154{font-size:63.000000px;}
.fs9_c00154{font-size:64.050000px;}
.fsb_c00154{font-size:66.150000px;}
.fs4_c00154{font-size:67.200000px;}
.fsa_c00154{font-size:69.300000px;}
.fs5_c00154{font-size:70.350000px;}
.fs6_c00154{font-size:71.400000px;}
.fs7_c00154{font-size:72.450000px;}
.fs8_c00154{font-size:73.500000px;}
.fsc_c00154{font-size:87.150000px;}
.fs1_c00154{font-size:89.250000px;}
.fs0_c00154{font-size:225.750000px;}
.y0_c00154{bottom:0.000000px;}
.y1f_c00154{bottom:176.842500px;}
.y1e_c00154{bottom:196.302000px;}
.y1d_c00154{bottom:213.840000px;}
.y1c_c00154{bottom:231.120000px;}
.y1b_c00154{bottom:248.874000px;}
.y1a_c00154{bottom:274.204500px;}
.y19_c00154{bottom:297.792000px;}
.y18_c00154{bottom:320.766000px;}
.y17_c00154{bottom:343.594500px;}
.y16_c00154{bottom:365.698500px;}
.y15_c00154{bottom:403.545000px;}
.y14_c00154{bottom:446.217000px;}
.y13_c00154{bottom:508.774500px;}
.y12_c00154{bottom:531.834000px;}
.y11_c00154{bottom:554.439000px;}
.y10_c00154{bottom:576.928500px;}
.yf_c00154{bottom:598.519500px;}
.ye_c00154{bottom:620.947500px;}
.yd_c00154{bottom:643.483500px;}
.yc_c00154{bottom:666.270000px;}
.yb_c00154{bottom:689.155500px;}
.ya_c00154{bottom:712.221000px;}
.y9_c00154{bottom:734.599500px;}
.y8_c00154{bottom:757.263000px;}
.y7_c00154{bottom:784.779000px;}
.y6_c00154{bottom:811.998000px;}
.y5_c00154{bottom:839.985000px;}
.y2_c00154{bottom:885.333000px;}
.y3_c00154{bottom:887.670000px;}
.y4_c00154{bottom:888.531000px;}
.y1_c00154{bottom:927.724500px;}
.hf_c00154{height:22.050000px;}
.h12_c00154{height:49.350000px;}
.h10_c00154{height:50.400000px;}
.h11_c00154{height:51.450000px;}
.h13_c00154{height:54.600000px;}
.h5_c00154{height:61.950000px;}
.h4_c00154{height:63.000000px;}
.hb_c00154{height:64.050000px;}
.hd_c00154{height:66.150000px;}
.h6_c00154{height:67.200000px;}
.hc_c00154{height:69.300000px;}
.h7_c00154{height:70.350000px;}
.h8_c00154{height:71.400000px;}
.h9_c00154{height:72.450000px;}
.ha_c00154{height:73.500000px;}
.he_c00154{height:87.150000px;}
.h3_c00154{height:89.250000px;}
.h2_c00154{height:225.750000px;}
.h1_c00154{height:1005.000000px;}
.h0_c00154{height:1005.150000px;}
.w0_c00154{width:705.450000px;}
.w1_c00154{width:705.750000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:37.260000px;}
.x88_c00154{left:59.670000px;}
.x90_c00154{left:66.960000px;}
.x7f_c00154{left:72.360000px;}
.x71_c00154{left:93.150000px;}
.x30_c00154{left:104.220000px;}
.x39_c00154{left:107.460000px;}
.x7a_c00154{left:111.510000px;}
.x5b_c00154{left:113.940000px;}
.x80_c00154{left:117.450000px;}
.x31_c00154{left:121.500000px;}
.x23_c00154{left:125.010000px;}
.x8_c00154{left:126.360000px;}
.x3e_c00154{left:127.440000px;}
.x89_c00154{left:132.300000px;}
.x91_c00154{left:142.830000px;}
.x6b_c00154{left:146.070000px;}
.x72_c00154{left:150.120000px;}
.x1b_c00154{left:151.470000px;}
.x55_c00154{left:153.090000px;}
.x3a_c00154{left:156.060000px;}
.x61_c00154{left:162.000000px;}
.x3f_c00154{left:166.050000px;}
.x24_c00154{left:167.400000px;}
.x32_c00154{left:171.450000px;}
.x45_c00154{left:172.800000px;}
.x4_c00154{left:173.835000px;}
.x66_c00154{left:174.960000px;}
.x2b_c00154{left:176.310000px;}
.xf_c00154{left:178.470000px;}
.x5c_c00154{left:182.790000px;}
.x51_c00154{left:186.300000px;}
.x8a_c00154{left:187.380000px;}
.x33_c00154{left:189.000000px;}
.x6c_c00154{left:190.080000px;}
.x1c_c00154{left:192.240000px;}
.x73_c00154{left:193.320000px;}
.x40_c00154{left:195.750000px;}
.x15_c00154{left:197.910000px;}
.x10_c00154{left:200.340000px;}
.x46_c00154{left:206.550000px;}
.x25_c00154{left:208.710000px;}
.x81_c00154{left:209.790000px;}
.x74_c00154{left:214.110000px;}
.x58_c00154{left:215.730000px;}
.x2c_c00154{left:217.080000px;}
.x4a_c00154{left:219.240000px;}
.x56_c00154{left:220.590000px;}
.x9_c00154{left:222.210000px;}
.x3b_c00154{left:223.560000px;}
.x82_c00154{left:227.610000px;}
.x41_c00154{left:229.500000px;}
.x1d_c00154{left:232.740000px;}
.x16_c00154{left:234.900000px;}
.x67_c00154{left:241.380000px;}
.x11_c00154{left:243.540000px;}
.x62_c00154{left:248.400000px;}
.xe_c00154{left:249.480000px;}
.x3c_c00154{left:251.910000px;}
.x5f_c00154{left:254.880000px;}
.x34_c00154{left:256.230000px;}
.x75_c00154{left:258.390000px;}
.x4b_c00154{left:259.470000px;}
.x7_c00154{left:262.440000px;}
.x42_c00154{left:267.300000px;}
.x26_c00154{left:269.190000px;}
.x2d_c00154{left:273.780000px;}
.x1e_c00154{left:275.400000px;}
.x2_c00154{left:278.640000px;}
.x7b_c00154{left:280.800000px;}
.x17_c00154{left:287.010000px;}
.x59_c00154{left:290.250000px;}
.x57_c00154{left:291.870000px;}
.x4c_c00154{left:294.030000px;}
.xa_c00154{left:295.380000px;}
.x60_c00154{left:303.750000px;}
.x43_c00154{left:310.500000px;}
.x18_c00154{left:314.820000px;}
.x1f_c00154{left:318.060000px;}
.x35_c00154{left:323.460000px;}
.x2e_c00154{left:324.540000px;}
.x76_c00154{left:327.240000px;}
.x12_c00154{left:328.860000px;}
.x47_c00154{left:335.610000px;}
.x92_c00154{left:337.770000px;}
.x4d_c00154{left:339.390000px;}
.x5d_c00154{left:340.470000px;}
.x68_c00154{left:341.550000px;}
.x36_c00154{left:342.900000px;}
.x27_c00154{left:344.520000px;}
.x52_c00154{left:347.220000px;}
.x19_c00154{left:351.000000px;}
.xb_c00154{left:352.350000px;}
.x3_c00154{left:353.430000px;}
.x20_c00154{left:358.830000px;}
.x83_c00154{left:360.990000px;}
.x4e_c00154{left:362.340000px;}
.x2f_c00154{left:363.690000px;}
.x63_c00154{left:365.850000px;}
.x77_c00154{left:371.250000px;}
.xc_c00154{left:373.140000px;}
.x8b_c00154{left:374.220000px;}
.x28_c00154{left:378.540000px;}
.x13_c00154{left:383.940000px;}
.x5_c00154{left:386.281500px;}
.x5e_c00154{left:388.800000px;}
.x5a_c00154{left:390.420000px;}
.x69_c00154{left:394.470000px;}
.x53_c00154{left:396.900000px;}
.x4f_c00154{left:399.330000px;}
.x1a_c00154{left:401.760000px;}
.x78_c00154{left:407.160000px;}
.x29_c00154{left:408.510000px;}
.x37_c00154{left:409.860000px;}
.x21_c00154{left:417.150000px;}
.x7c_c00154{left:418.230000px;}
.x14_c00154{left:423.630000px;}
.xd_c00154{left:425.250000px;}
.x50_c00154{left:434.160000px;}
.x2a_c00154{left:437.400000px;}
.x38_c00154{left:443.340000px;}
.x6d_c00154{left:445.230000px;}
.x84_c00154{left:448.470000px;}
.x48_c00154{left:453.330000px;}
.x22_c00154{left:454.950000px;}
.x3d_c00154{left:458.730000px;}
.x64_c00154{left:460.620000px;}
.x6_c00154{left:464.575500px;}
.x6e_c00154{left:466.560000px;}
.x8c_c00154{left:476.280000px;}
.x6f_c00154{left:480.600000px;}
.x7d_c00154{left:483.300000px;}
.x6a_c00154{left:486.540000px;}
.x65_c00154{left:490.320000px;}
.x49_c00154{left:495.180000px;}
.x70_c00154{left:503.820000px;}
.x85_c00154{left:509.220000px;}
.x44_c00154{left:516.240000px;}
.x79_c00154{left:524.340000px;}
.x54_c00154{left:525.690000px;}
.x86_c00154{left:535.950000px;}
.x8d_c00154{left:537.030000px;}
.x7e_c00154{left:538.380000px;}
.x8e_c00154{left:550.800000px;}
.x93_c00154{left:567.810000px;}
.x8f_c00154{left:581.580000px;}
.x87_c00154{left:608.040000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
.fsd_c00154{font-size:19.600000pt;}
.fs10_c00154{font-size:43.866667pt;}
.fse_c00154{font-size:44.800000pt;}
.fsf_c00154{font-size:45.733333pt;}
.fs11_c00154{font-size:48.533333pt;}
.fs3_c00154{font-size:55.066667pt;}
.fs2_c00154{font-size:56.000000pt;}
.fs9_c00154{font-size:56.933333pt;}
.fsb_c00154{font-size:58.800000pt;}
.fs4_c00154{font-size:59.733333pt;}
.fsa_c00154{font-size:61.600000pt;}
.fs5_c00154{font-size:62.533333pt;}
.fs6_c00154{font-size:63.466667pt;}
.fs7_c00154{font-size:64.400000pt;}
.fs8_c00154{font-size:65.333333pt;}
.fsc_c00154{font-size:77.466667pt;}
.fs1_c00154{font-size:79.333333pt;}
.fs0_c00154{font-size:200.666667pt;}
.y0_c00154{bottom:0.000000pt;}
.y1f_c00154{bottom:157.193333pt;}
.y1e_c00154{bottom:174.490667pt;}
.y1d_c00154{bottom:190.080000pt;}
.y1c_c00154{bottom:205.440000pt;}
.y1b_c00154{bottom:221.221333pt;}
.y1a_c00154{bottom:243.737333pt;}
.y19_c00154{bottom:264.704000pt;}
.y18_c00154{bottom:285.125333pt;}
.y17_c00154{bottom:305.417333pt;}
.y16_c00154{bottom:325.065333pt;}
.y15_c00154{bottom:358.706667pt;}
.y14_c00154{bottom:396.637333pt;}
.y13_c00154{bottom:452.244000pt;}
.y12_c00154{bottom:472.741333pt;}
.y11_c00154{bottom:492.834667pt;}
.y10_c00154{bottom:512.825333pt;}
.yf_c00154{bottom:532.017333pt;}
.ye_c00154{bottom:551.953333pt;}
.yd_c00154{bottom:571.985333pt;}
.yc_c00154{bottom:592.240000pt;}
.yb_c00154{bottom:612.582667pt;}
.ya_c00154{bottom:633.085333pt;}
.y9_c00154{bottom:652.977333pt;}
.y8_c00154{bottom:673.122667pt;}
.y7_c00154{bottom:697.581333pt;}
.y6_c00154{bottom:721.776000pt;}
.y5_c00154{bottom:746.653333pt;}
.y2_c00154{bottom:786.962667pt;}
.y3_c00154{bottom:789.040000pt;}
.y4_c00154{bottom:789.805333pt;}
.y1_c00154{bottom:824.644000pt;}
.hf_c00154{height:19.600000pt;}
.h12_c00154{height:43.866667pt;}
.h10_c00154{height:44.800000pt;}
.h11_c00154{height:45.733333pt;}
.h13_c00154{height:48.533333pt;}
.h5_c00154{height:55.066667pt;}
.h4_c00154{height:56.000000pt;}
.hb_c00154{height:56.933333pt;}
.hd_c00154{height:58.800000pt;}
.h6_c00154{height:59.733333pt;}
.hc_c00154{height:61.600000pt;}
.h7_c00154{height:62.533333pt;}
.h8_c00154{height:63.466667pt;}
.h9_c00154{height:64.400000pt;}
.ha_c00154{height:65.333333pt;}
.he_c00154{height:77.466667pt;}
.h3_c00154{height:79.333333pt;}
.h2_c00154{height:200.666667pt;}
.h1_c00154{height:893.333333pt;}
.h0_c00154{height:893.466667pt;}
.w0_c00154{width:627.066667pt;}
.w1_c00154{width:627.333333pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:33.120000pt;}
.x88_c00154{left:53.040000pt;}
.x90_c00154{left:59.520000pt;}
.x7f_c00154{left:64.320000pt;}
.x71_c00154{left:82.800000pt;}
.x30_c00154{left:92.640000pt;}
.x39_c00154{left:95.520000pt;}
.x7a_c00154{left:99.120000pt;}
.x5b_c00154{left:101.280000pt;}
.x80_c00154{left:104.400000pt;}
.x31_c00154{left:108.000000pt;}
.x23_c00154{left:111.120000pt;}
.x8_c00154{left:112.320000pt;}
.x3e_c00154{left:113.280000pt;}
.x89_c00154{left:117.600000pt;}
.x91_c00154{left:126.960000pt;}
.x6b_c00154{left:129.840000pt;}
.x72_c00154{left:133.440000pt;}
.x1b_c00154{left:134.640000pt;}
.x55_c00154{left:136.080000pt;}
.x3a_c00154{left:138.720000pt;}
.x61_c00154{left:144.000000pt;}
.x3f_c00154{left:147.600000pt;}
.x24_c00154{left:148.800000pt;}
.x32_c00154{left:152.400000pt;}
.x45_c00154{left:153.600000pt;}
.x4_c00154{left:154.520000pt;}
.x66_c00154{left:155.520000pt;}
.x2b_c00154{left:156.720000pt;}
.xf_c00154{left:158.640000pt;}
.x5c_c00154{left:162.480000pt;}
.x51_c00154{left:165.600000pt;}
.x8a_c00154{left:166.560000pt;}
.x33_c00154{left:168.000000pt;}
.x6c_c00154{left:168.960000pt;}
.x1c_c00154{left:170.880000pt;}
.x73_c00154{left:171.840000pt;}
.x40_c00154{left:174.000000pt;}
.x15_c00154{left:175.920000pt;}
.x10_c00154{left:178.080000pt;}
.x46_c00154{left:183.600000pt;}
.x25_c00154{left:185.520000pt;}
.x81_c00154{left:186.480000pt;}
.x74_c00154{left:190.320000pt;}
.x58_c00154{left:191.760000pt;}
.x2c_c00154{left:192.960000pt;}
.x4a_c00154{left:194.880000pt;}
.x56_c00154{left:196.080000pt;}
.x9_c00154{left:197.520000pt;}
.x3b_c00154{left:198.720000pt;}
.x82_c00154{left:202.320000pt;}
.x41_c00154{left:204.000000pt;}
.x1d_c00154{left:206.880000pt;}
.x16_c00154{left:208.800000pt;}
.x67_c00154{left:214.560000pt;}
.x11_c00154{left:216.480000pt;}
.x62_c00154{left:220.800000pt;}
.xe_c00154{left:221.760000pt;}
.x3c_c00154{left:223.920000pt;}
.x5f_c00154{left:226.560000pt;}
.x34_c00154{left:227.760000pt;}
.x75_c00154{left:229.680000pt;}
.x4b_c00154{left:230.640000pt;}
.x7_c00154{left:233.280000pt;}
.x42_c00154{left:237.600000pt;}
.x26_c00154{left:239.280000pt;}
.x2d_c00154{left:243.360000pt;}
.x1e_c00154{left:244.800000pt;}
.x2_c00154{left:247.680000pt;}
.x7b_c00154{left:249.600000pt;}
.x17_c00154{left:255.120000pt;}
.x59_c00154{left:258.000000pt;}
.x57_c00154{left:259.440000pt;}
.x4c_c00154{left:261.360000pt;}
.xa_c00154{left:262.560000pt;}
.x60_c00154{left:270.000000pt;}
.x43_c00154{left:276.000000pt;}
.x18_c00154{left:279.840000pt;}
.x1f_c00154{left:282.720000pt;}
.x35_c00154{left:287.520000pt;}
.x2e_c00154{left:288.480000pt;}
.x76_c00154{left:290.880000pt;}
.x12_c00154{left:292.320000pt;}
.x47_c00154{left:298.320000pt;}
.x92_c00154{left:300.240000pt;}
.x4d_c00154{left:301.680000pt;}
.x5d_c00154{left:302.640000pt;}
.x68_c00154{left:303.600000pt;}
.x36_c00154{left:304.800000pt;}
.x27_c00154{left:306.240000pt;}
.x52_c00154{left:308.640000pt;}
.x19_c00154{left:312.000000pt;}
.xb_c00154{left:313.200000pt;}
.x3_c00154{left:314.160000pt;}
.x20_c00154{left:318.960000pt;}
.x83_c00154{left:320.880000pt;}
.x4e_c00154{left:322.080000pt;}
.x2f_c00154{left:323.280000pt;}
.x63_c00154{left:325.200000pt;}
.x77_c00154{left:330.000000pt;}
.xc_c00154{left:331.680000pt;}
.x8b_c00154{left:332.640000pt;}
.x28_c00154{left:336.480000pt;}
.x13_c00154{left:341.280000pt;}
.x5_c00154{left:343.361333pt;}
.x5e_c00154{left:345.600000pt;}
.x5a_c00154{left:347.040000pt;}
.x69_c00154{left:350.640000pt;}
.x53_c00154{left:352.800000pt;}
.x4f_c00154{left:354.960000pt;}
.x1a_c00154{left:357.120000pt;}
.x78_c00154{left:361.920000pt;}
.x29_c00154{left:363.120000pt;}
.x37_c00154{left:364.320000pt;}
.x21_c00154{left:370.800000pt;}
.x7c_c00154{left:371.760000pt;}
.x14_c00154{left:376.560000pt;}
.xd_c00154{left:378.000000pt;}
.x50_c00154{left:385.920000pt;}
.x2a_c00154{left:388.800000pt;}
.x38_c00154{left:394.080000pt;}
.x6d_c00154{left:395.760000pt;}
.x84_c00154{left:398.640000pt;}
.x48_c00154{left:402.960000pt;}
.x22_c00154{left:404.400000pt;}
.x3d_c00154{left:407.760000pt;}
.x64_c00154{left:409.440000pt;}
.x6_c00154{left:412.956000pt;}
.x6e_c00154{left:414.720000pt;}
.x8c_c00154{left:423.360000pt;}
.x6f_c00154{left:427.200000pt;}
.x7d_c00154{left:429.600000pt;}
.x6a_c00154{left:432.480000pt;}
.x65_c00154{left:435.840000pt;}
.x49_c00154{left:440.160000pt;}
.x70_c00154{left:447.840000pt;}
.x85_c00154{left:452.640000pt;}
.x44_c00154{left:458.880000pt;}
.x79_c00154{left:466.080000pt;}
.x54_c00154{left:467.280000pt;}
.x86_c00154{left:476.400000pt;}
.x8d_c00154{left:477.360000pt;}
.x7e_c00154{left:478.560000pt;}
.x8e_c00154{left:489.600000pt;}
.x93_c00154{left:504.720000pt;}
.x8f_c00154{left:516.960000pt;}
.x87_c00154{left:540.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m47_c00155{transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{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);}
.m105_c00155{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.070180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070180,0.000000,0.000000,0.250000,0,0);}
.md5_c00155{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.m76_c00155{transform:matrix(0.128310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128310,0.000000,0.000000,0.250000,0,0);}
.m70_c00155{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);}
.mce_c00155{transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.138385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138385,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.138885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138885,0.000000,0.000000,0.250000,0,0);}
.m72_c00155{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);}
.me1_c00155{transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141585,0.000000,0.000000,0.250000,0,0);}
.mc7_c00155{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);}
.m99_c00155{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);}
.m6e_c00155{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);}
.me_c00155{transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);}
.mcc_c00155{transform:matrix(0.145515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145515,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{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);}
.m77_c00155{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);}
.m1c_c00155{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);}
.m11b_c00155{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);}
.m8a_c00155{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);}
.m11c_c00155{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.mee_c00155{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);}
.m6f_c00155{transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00155{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);}
.m7c_c00155{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);}
.m60_c00155{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);}
.mc1_c00155{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);}
.m65_c00155{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.md2_c00155{transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.157470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157470,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{transform:matrix(0.157590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157590,0.000000,0.000000,0.250000,0,0);}
.ma7_c00155{transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);}
.ma1_c00155{transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);}
.m96_c00155{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);}
.m1b_c00155{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);}
.m5a_c00155{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);}
.m6d_c00155{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);}
.me6_c00155{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);}
.m9a_c00155{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);}
.mbc_c00155{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);}
.mb6_c00155{transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{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);}
.me3_c00155{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.mc2_c00155{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);}
.m18_c00155{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);}
.m23_c00155{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.mfd_c00155{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);}
.m103_c00155{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.mbf_c00155{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);}
.md0_c00155{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);}
.m71_c00155{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);}
.mf0_c00155{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);}
.m4b_c00155{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);}
.me0_c00155{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);}
.m3f_c00155{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);}
.m66_c00155{transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{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);}
.m79_c00155{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);}
.md7_c00155{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);}
.mff_c00155{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);}
.m10e_c00155{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);}
.ma9_c00155{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);}
.m1a_c00155{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);}
.m8b_c00155{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);}
.m61_c00155{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);}
.mbb_c00155{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);}
.m122_c00155{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);}
.m7d_c00155{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);}
.me8_c00155{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);}
.m94_c00155{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);}
.m120_c00155{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);}
.md1_c00155{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);}
.m14_c00155{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);}
.m5c_c00155{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);}
.m17_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);}
.m15_c00155{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);}
.m1d_c00155{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);}
.m37_c00155{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);}
.m80_c00155{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);}
.mb4_c00155{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);}
.m1_c00155{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);}
.m59_c00155{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);}
.m4f_c00155{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);}
.m11a_c00155{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);}
.m2_c00155{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);}
.m2a_c00155{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);}
.mfb_c00155{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);}
.m8_c00155{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);}
.m44_c00155{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);}
.mad_c00155{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_c00155{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);}
.mf_c00155{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);}
.m26_c00155{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);}
.m54_c00155{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);}
.m6c_c00155{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);}
.m9f_c00155{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);}
.mdb_c00155{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);}
.mea_c00155{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);}
.med_c00155{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);}
.m74_c00155{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);}
.m2c_c00155{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);}
.mdf_c00155{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);}
.m10_c00155{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);}
.m124_c00155{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);}
.mf3_c00155{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);}
.m112_c00155{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);}
.mae_c00155{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);}
.m91_c00155{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);}
.m92_c00155{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);}
.m73_c00155{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);}
.mb9_c00155{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);}
.m89_c00155{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);}
.me7_c00155{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);}
.m5f_c00155{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);}
.m86_c00155{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);}
.mf9_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);}
.mb1_c00155{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);}
.maa_c00155{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);}
.m6b_c00155{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);}
.mb0_c00155{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);}
.mf1_c00155{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);}
.m8c_c00155{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);}
.m93_c00155{transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{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);}
.m98_c00155{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);}
.m82_c00155{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);}
.m104_c00155{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);}
.md9_c00155{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);}
.m24_c00155{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);}
.m53_c00155{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);}
.mc_c00155{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);}
.m6_c00155{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);}
.me2_c00155{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);}
.m6a_c00155{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);}
.m83_c00155{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);}
.m81_c00155{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);}
.m19_c00155{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);}
.m63_c00155{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);}
.mba_c00155{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);}
.mb7_c00155{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);}
.m121_c00155{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);}
.me5_c00155{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);}
.mc4_c00155{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);}
.mf7_c00155{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);}
.m48_c00155{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);}
.m1f_c00155{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);}
.meb_c00155{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);}
.mbe_c00155{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);}
.m9_c00155{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);}
.mc8_c00155{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.md_c00155{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);}
.m51_c00155{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);}
.ma4_c00155{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);}
.mb8_c00155{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);}
.mf4_c00155{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);}
.m41_c00155{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);}
.m16_c00155{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);}
.mfa_c00155{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);}
.m45_c00155{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);}
.m106_c00155{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);}
.m58_c00155{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);}
.ma0_c00155{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);}
.mc0_c00155{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);}
.me9_c00155{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);}
.mf2_c00155{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);}
.mf6_c00155{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);}
.mda_c00155{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);}
.m116_c00155{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);}
.mf8_c00155{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);}
.m90_c00155{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);}
.m110_c00155{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_c00155{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);}
.m5b_c00155{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);}
.m55_c00155{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);}
.m11e_c00155{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);}
.mf5_c00155{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);}
.md8_c00155{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);}
.m87_c00155{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);}
.m11_c00155{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);}
.m113_c00155{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);}
.m34_c00155{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);}
.m101_c00155{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);}
.m119_c00155{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);}
.m39_c00155{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);}
.m2f_c00155{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);}
.maf_c00155{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);}
.m42_c00155{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);}
.mc3_c00155{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);}
.mcb_c00155{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);}
.m107_c00155{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);}
.m50_c00155{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);}
.m46_c00155{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);}
.m22_c00155{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);}
.m78_c00155{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);}
.md3_c00155{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);}
.m7a_c00155{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);}
.m2d_c00155{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);}
.mcf_c00155{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);}
.ma8_c00155{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);}
.m43_c00155{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);}
.m97_c00155{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);}
.m49_c00155{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);}
.m7f_c00155{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);}
.m123_c00155{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);}
.m75_c00155{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);}
.mde_c00155{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);}
.m4a_c00155{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);}
.m21_c00155{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);}
.mab_c00155{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);}
.m102_c00155{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);}
.md4_c00155{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.mfe_c00155{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);}
.m11f_c00155{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);}
.m10f_c00155{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);}
.m29_c00155{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);}
.m2b_c00155{transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);}
.mac_c00155{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);}
.m36_c00155{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);}
.m12_c00155{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{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);}
.mfc_c00155{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);}
.m10b_c00155{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);}
.m5_c00155{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);}
.m38_c00155{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);}
.m57_c00155{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);}
.ma5_c00155{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);}
.mb_c00155{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);}
.mc5_c00155{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);}
.m10a_c00155{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);}
.mbd_c00155{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);}
.mec_c00155{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);}
.m25_c00155{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);}
.m88_c00155{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);}
.m27_c00155{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);}
.m111_c00155{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);}
.m0_c00155{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);}
.m3c_c00155{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);}
.m30_c00155{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);}
.m3a_c00155{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);}
.mdc_c00155{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);}
.m3_c00155{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);}
.mb3_c00155{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);}
.m28_c00155{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);}
.ma6_c00155{transform:matrix(0.230410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230410,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{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);}
.ma_c00155{transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232790,0.000000,0.000000,0.250000,0,0);}
.m4c_c00155{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);}
.m32_c00155{transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);}
.m10d_c00155{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);}
.m7_c00155{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);}
.ma2_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);}
.me4_c00155{transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);}
.m108_c00155{transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);}
.m114_c00155{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);}
.m109_c00155{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);}
.m5d_c00155{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);}
.mc6_c00155{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);}
.m7b_c00155{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);}
.m115_c00155{transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{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);}
.m20_c00155{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.md6_c00155{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);}
.m100_c00155{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{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);}
.m35_c00155{transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253765,0.000000,0.000000,0.250000,0,0);}
.m118_c00155{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);}
.m11d_c00155{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);}
.m9e_c00155{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);}
.m3b_c00155{transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00155{transform:matrix(0.259550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00155{transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.mdd_c00155{transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m4d_c00155{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.mca_c00155{transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292815,0.000000,0.000000,0.250000,0,0);}
.m117_c00155{transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300375,0.000000,0.000000,0.250000,0,0);}
.mc9_c00155{transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301005,0.000000,0.000000,0.250000,0,0);}
.mb2_c00155{transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302940,0.000000,0.000000,0.250000,0,0);}
.m10c_c00155{transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);}
.m68_c00155{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);}
.m9d_c00155{transform:matrix(0.346015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346015,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{transform:matrix(0.349820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349820,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.443930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443930,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.448150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448150,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;}
.fc0_c00155{color:transparent;}
.fs3_c00155{font-size:49.350000px;}
.fs4_c00155{font-size:50.400000px;}
.fs0_c00155{font-size:51.450000px;}
.fs1_c00155{font-size:52.500000px;}
.fs5_c00155{font-size:53.550000px;}
.fs11_c00155{font-size:57.750000px;}
.fs2_c00155{font-size:58.800000px;}
.fs10_c00155{font-size:59.850000px;}
.fsb_c00155{font-size:68.250000px;}
.fs8_c00155{font-size:69.300000px;}
.fsc_c00155{font-size:70.350000px;}
.fse_c00155{font-size:71.400000px;}
.fs7_c00155{font-size:72.450000px;}
.fs6_c00155{font-size:73.500000px;}
.fs9_c00155{font-size:74.550000px;}
.fsf_c00155{font-size:76.650000px;}
.fsd_c00155{font-size:77.700000px;}
.fsa_c00155{font-size:89.250000px;}
.y0_c00155{bottom:0.000000px;}
.yc_c00155{bottom:167.373000px;}
.y2d_c00155{bottom:169.965000px;}
.yb_c00155{bottom:186.438000px;}
.y2c_c00155{bottom:188.556000px;}
.yd_c00155{bottom:204.145500px;}
.ya_c00155{bottom:204.639000px;}
.y2b_c00155{bottom:220.320000px;}
.y9_c00155{bottom:222.972000px;}
.y2a_c00155{bottom:238.290000px;}
.y8_c00155{bottom:240.466500px;}
.y29_c00155{bottom:256.119000px;}
.y7_c00155{bottom:258.351000px;}
.y28_c00155{bottom:273.780000px;}
.y6_c00155{bottom:276.121500px;}
.y27_c00155{bottom:292.027500px;}
.y5_c00155{bottom:293.445000px;}
.y26_c00155{bottom:310.230000px;}
.y4_c00155{bottom:311.556000px;}
.y25_c00155{bottom:327.966000px;}
.y3_c00155{bottom:329.217000px;}
.y24_c00155{bottom:345.712500px;}
.y2_c00155{bottom:347.620500px;}
.y23_c00155{bottom:364.003500px;}
.y1_c00155{bottom:365.355000px;}
.y22_c00155{bottom:414.051000px;}
.y20_c00155{bottom:433.737000px;}
.y1f_c00155{bottom:456.649500px;}
.y1e_c00155{bottom:479.004000px;}
.y1d_c00155{bottom:502.275000px;}
.y1c_c00155{bottom:524.880000px;}
.y1b_c00155{bottom:547.644000px;}
.y1a_c00155{bottom:570.589500px;}
.y19_c00155{bottom:593.568000px;}
.y18_c00155{bottom:615.937500px;}
.y17_c00155{bottom:639.352500px;}
.y16_c00155{bottom:661.369500px;}
.y21_c00155{bottom:683.935500px;}
.y15_c00155{bottom:684.358500px;}
.y14_c00155{bottom:706.626000px;}
.y13_c00155{bottom:729.594000px;}
.y12_c00155{bottom:752.880000px;}
.y11_c00155{bottom:775.710000px;}
.y10_c00155{bottom:798.582000px;}
.yf_c00155{bottom:820.992000px;}
.ye_c00155{bottom:844.509000px;}
.h5_c00155{height:49.350000px;}
.h6_c00155{height:50.400000px;}
.h2_c00155{height:51.450000px;}
.h3_c00155{height:52.500000px;}
.h7_c00155{height:53.550000px;}
.h13_c00155{height:57.750000px;}
.h4_c00155{height:58.800000px;}
.h12_c00155{height:59.850000px;}
.hd_c00155{height:68.250000px;}
.ha_c00155{height:69.300000px;}
.he_c00155{height:70.350000px;}
.h10_c00155{height:71.400000px;}
.h9_c00155{height:72.450000px;}
.h8_c00155{height:73.500000px;}
.hb_c00155{height:74.550000px;}
.h11_c00155{height:76.650000px;}
.hf_c00155{height:77.700000px;}
.hc_c00155{height:89.250000px;}
.h0_c00155{height:1008.450000px;}
.h1_c00155{height:1008.750000px;}
.w0_c00155{width:676.890000px;}
.w1_c00155{width:677.250000px;}
.x0_c00155{left:0.000000px;}
.x1d_c00155{left:125.820000px;}
.x2f_c00155{left:133.380000px;}
.x9_c00155{left:134.730000px;}
.x25_c00155{left:135.810000px;}
.x1_c00155{left:147.690000px;}
.xa_c00155{left:153.360000px;}
.x17_c00155{left:164.430000px;}
.x30_c00155{left:166.590000px;}
.x26_c00155{left:167.940000px;}
.x48_c00155{left:170.100000px;}
.x74_c00155{left:171.180000px;}
.x31_c00155{left:172.260000px;}
.x2e_c00155{left:175.770000px;}
.x1e_c00155{left:177.390000px;}
.x2_c00155{left:180.900000px;}
.x34_c00155{left:184.680000px;}
.xb_c00155{left:189.000000px;}
.x11_c00155{left:190.080000px;}
.x1f_c00155{left:191.430000px;}
.x35_c00155{left:193.050000px;}
.x3_c00155{left:195.480000px;}
.x63_c00155{left:196.830000px;}
.x51_c00155{left:198.450000px;}
.x32_c00155{left:203.310000px;}
.x29_c00155{left:205.740000px;}
.xc_c00155{left:207.900000px;}
.x12_c00155{left:209.790000px;}
.x6c_c00155{left:213.300000px;}
.x4_c00155{left:215.460000px;}
.x23_c00155{left:217.350000px;}
.x38_c00155{left:219.510000px;}
.x56_c00155{left:221.130000px;}
.x18_c00155{left:223.290000px;}
.x58_c00155{left:224.370000px;}
.x49_c00155{left:229.770000px;}
.x6d_c00155{left:230.850000px;}
.x5_c00155{left:231.930000px;}
.x20_c00155{left:234.360000px;}
.x2a_c00155{left:237.870000px;}
.x27_c00155{left:239.220000px;}
.x19_c00155{left:241.650000px;}
.x2b_c00155{left:244.350000px;}
.x64_c00155{left:247.320000px;}
.x3e_c00155{left:250.290000px;}
.x36_c00155{left:252.180000px;}
.x13_c00155{left:256.500000px;}
.x28_c00155{left:257.580000px;}
.x21_c00155{left:260.820000px;}
.x2c_c00155{left:264.060000px;}
.x52_c00155{left:265.410000px;}
.x70_c00155{left:270.810000px;}
.x14_c00155{left:274.050000px;}
.x7a_c00155{left:276.480000px;}
.x4a_c00155{left:278.640000px;}
.xd_c00155{left:279.720000px;}
.x75_c00155{left:282.420000px;}
.x1a_c00155{left:285.390000px;}
.x3f_c00155{left:289.170000px;}
.x6_c00155{left:291.870000px;}
.x68_c00155{left:293.220000px;}
.x47_c00155{left:297.270000px;}
.xe_c00155{left:299.160000px;}
.x5d_c00155{left:301.320000px;}
.x1b_c00155{left:303.210000px;}
.x15_c00155{left:304.560000px;}
.x4b_c00155{left:305.910000px;}
.x2d_c00155{left:307.800000px;}
.x7_c00155{left:309.150000px;}
.x71_c00155{left:311.850000px;}
.x59_c00155{left:316.170000px;}
.xf_c00155{left:325.350000px;}
.x16_c00155{left:326.430000px;}
.x8_c00155{left:328.320000px;}
.x1c_c00155{left:331.830000px;}
.x37_c00155{left:334.800000px;}
.x24_c00155{left:336.150000px;}
.x65_c00155{left:338.580000px;}
.x5e_c00155{left:340.200000px;}
.x33_c00155{left:343.980000px;}
.x22_c00155{left:346.680000px;}
.x10_c00155{left:348.570000px;}
.x79_c00155{left:350.730000px;}
.x53_c00155{left:352.890000px;}
.x40_c00155{left:354.240000px;}
.x39_c00155{left:360.180000px;}
.x69_c00155{left:363.960000px;}
.x7b_c00155{left:365.580000px;}
.x5a_c00155{left:366.660000px;}
.x45_c00155{left:371.250000px;}
.x76_c00155{left:373.950000px;}
.x9b_c00155{left:378.000000px;}
.x57_c00155{left:381.240000px;}
.x88_c00155{left:382.320000px;}
.x80_c00155{left:385.020000px;}
.x5f_c00155{left:387.990000px;}
.x6a_c00155{left:389.880000px;}
.x5b_c00155{left:393.120000px;}
.x6e_c00155{left:396.900000px;}
.x3a_c00155{left:400.950000px;}
.x77_c00155{left:402.570000px;}
.x41_c00155{left:404.730000px;}
.x4c_c00155{left:407.970000px;}
.x54_c00155{left:412.020000px;}
.x84_c00155{left:416.880000px;}
.x94_c00155{left:420.660000px;}
.x66_c00155{left:421.740000px;}
.xa2_c00155{left:423.900000px;}
.x42_c00155{left:426.060000px;}
.xa0_c00155{left:427.140000px;}
.x60_c00155{left:428.220000px;}
.x46_c00155{left:432.540000px;}
.x95_c00155{left:434.970000px;}
.x3b_c00155{left:438.750000px;}
.xa1_c00155{left:445.500000px;}
.x67_c00155{left:447.660000px;}
.x90_c00155{left:450.090000px;}
.x5c_c00155{left:452.520000px;}
.x43_c00155{left:454.680000px;}
.x89_c00155{left:457.110000px;}
.x4d_c00155{left:459.270000px;}
.x7c_c00155{left:462.780000px;}
.x91_c00155{left:464.400000px;}
.x7e_c00155{left:466.830000px;}
.x72_c00155{left:469.800000px;}
.x6f_c00155{left:470.880000px;}
.x9c_c00155{left:472.230000px;}
.x61_c00155{left:475.200000px;}
.x3c_c00155{left:477.630000px;}
.xa6_c00155{left:478.710000px;}
.x97_c00155{left:486.000000px;}
.x55_c00155{left:491.670000px;}
.x78_c00155{left:495.450000px;}
.x73_c00155{left:497.070000px;}
.x6b_c00155{left:498.420000px;}
.x81_c00155{left:500.850000px;}
.x4e_c00155{left:504.630000px;}
.x3d_c00155{left:505.980000px;}
.x7d_c00155{left:507.600000px;}
.x8d_c00155{left:508.950000px;}
.x8a_c00155{left:510.300000px;}
.x9d_c00155{left:513.000000px;}
.x98_c00155{left:514.620000px;}
.xa3_c00155{left:518.130000px;}
.x62_c00155{left:522.450000px;}
.x44_c00155{left:527.850000px;}
.xa7_c00155{left:530.820000px;}
.x85_c00155{left:533.790000px;}
.x9e_c00155{left:535.950000px;}
.x8e_c00155{left:538.650000px;}
.x4f_c00155{left:541.890000px;}
.x92_c00155{left:543.510000px;}
.x99_c00155{left:554.310000px;}
.x86_c00155{left:555.930000px;}
.xa8_c00155{left:557.010000px;}
.x82_c00155{left:559.440000px;}
.x8f_c00155{left:561.060000px;}
.x8b_c00155{left:564.570000px;}
.xa4_c00155{left:576.180000px;}
.x96_c00155{left:578.880000px;}
.x8c_c00155{left:580.770000px;}
.x87_c00155{left:582.120000px;}
.x7f_c00155{left:586.710000px;}
.xa9_c00155{left:589.410000px;}
.x93_c00155{left:594.000000px;}
.x50_c00155{left:598.320000px;}
.x83_c00155{left:601.560000px;}
.xa5_c00155{left:604.800000px;}
.x9f_c00155{left:632.610000px;}
.x9a_c00155{left:646.380000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
.fs3_c00155{font-size:43.866667pt;}
.fs4_c00155{font-size:44.800000pt;}
.fs0_c00155{font-size:45.733333pt;}
.fs1_c00155{font-size:46.666667pt;}
.fs5_c00155{font-size:47.600000pt;}
.fs11_c00155{font-size:51.333333pt;}
.fs2_c00155{font-size:52.266667pt;}
.fs10_c00155{font-size:53.200000pt;}
.fsb_c00155{font-size:60.666667pt;}
.fs8_c00155{font-size:61.600000pt;}
.fsc_c00155{font-size:62.533333pt;}
.fse_c00155{font-size:63.466667pt;}
.fs7_c00155{font-size:64.400000pt;}
.fs6_c00155{font-size:65.333333pt;}
.fs9_c00155{font-size:66.266667pt;}
.fsf_c00155{font-size:68.133333pt;}
.fsd_c00155{font-size:69.066667pt;}
.fsa_c00155{font-size:79.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.yc_c00155{bottom:148.776000pt;}
.y2d_c00155{bottom:151.080000pt;}
.yb_c00155{bottom:165.722667pt;}
.y2c_c00155{bottom:167.605333pt;}
.yd_c00155{bottom:181.462667pt;}
.ya_c00155{bottom:181.901333pt;}
.y2b_c00155{bottom:195.840000pt;}
.y9_c00155{bottom:198.197333pt;}
.y2a_c00155{bottom:211.813333pt;}
.y8_c00155{bottom:213.748000pt;}
.y29_c00155{bottom:227.661333pt;}
.y7_c00155{bottom:229.645333pt;}
.y28_c00155{bottom:243.360000pt;}
.y6_c00155{bottom:245.441333pt;}
.y27_c00155{bottom:259.580000pt;}
.y5_c00155{bottom:260.840000pt;}
.y26_c00155{bottom:275.760000pt;}
.y4_c00155{bottom:276.938667pt;}
.y25_c00155{bottom:291.525333pt;}
.y3_c00155{bottom:292.637333pt;}
.y24_c00155{bottom:307.300000pt;}
.y2_c00155{bottom:308.996000pt;}
.y23_c00155{bottom:323.558667pt;}
.y1_c00155{bottom:324.760000pt;}
.y22_c00155{bottom:368.045333pt;}
.y20_c00155{bottom:385.544000pt;}
.y1f_c00155{bottom:405.910667pt;}
.y1e_c00155{bottom:425.781333pt;}
.y1d_c00155{bottom:446.466667pt;}
.y1c_c00155{bottom:466.560000pt;}
.y1b_c00155{bottom:486.794667pt;}
.y1a_c00155{bottom:507.190667pt;}
.y19_c00155{bottom:527.616000pt;}
.y18_c00155{bottom:547.500000pt;}
.y17_c00155{bottom:568.313333pt;}
.y16_c00155{bottom:587.884000pt;}
.y21_c00155{bottom:607.942667pt;}
.y15_c00155{bottom:608.318667pt;}
.y14_c00155{bottom:628.112000pt;}
.y13_c00155{bottom:648.528000pt;}
.y12_c00155{bottom:669.226667pt;}
.y11_c00155{bottom:689.520000pt;}
.y10_c00155{bottom:709.850667pt;}
.yf_c00155{bottom:729.770667pt;}
.ye_c00155{bottom:750.674667pt;}
.h5_c00155{height:43.866667pt;}
.h6_c00155{height:44.800000pt;}
.h2_c00155{height:45.733333pt;}
.h3_c00155{height:46.666667pt;}
.h7_c00155{height:47.600000pt;}
.h13_c00155{height:51.333333pt;}
.h4_c00155{height:52.266667pt;}
.h12_c00155{height:53.200000pt;}
.hd_c00155{height:60.666667pt;}
.ha_c00155{height:61.600000pt;}
.he_c00155{height:62.533333pt;}
.h10_c00155{height:63.466667pt;}
.h9_c00155{height:64.400000pt;}
.h8_c00155{height:65.333333pt;}
.hb_c00155{height:66.266667pt;}
.h11_c00155{height:68.133333pt;}
.hf_c00155{height:69.066667pt;}
.hc_c00155{height:79.333333pt;}
.h0_c00155{height:896.400000pt;}
.h1_c00155{height:896.666667pt;}
.w0_c00155{width:601.680000pt;}
.w1_c00155{width:602.000000pt;}
.x0_c00155{left:0.000000pt;}
.x1d_c00155{left:111.840000pt;}
.x2f_c00155{left:118.560000pt;}
.x9_c00155{left:119.760000pt;}
.x25_c00155{left:120.720000pt;}
.x1_c00155{left:131.280000pt;}
.xa_c00155{left:136.320000pt;}
.x17_c00155{left:146.160000pt;}
.x30_c00155{left:148.080000pt;}
.x26_c00155{left:149.280000pt;}
.x48_c00155{left:151.200000pt;}
.x74_c00155{left:152.160000pt;}
.x31_c00155{left:153.120000pt;}
.x2e_c00155{left:156.240000pt;}
.x1e_c00155{left:157.680000pt;}
.x2_c00155{left:160.800000pt;}
.x34_c00155{left:164.160000pt;}
.xb_c00155{left:168.000000pt;}
.x11_c00155{left:168.960000pt;}
.x1f_c00155{left:170.160000pt;}
.x35_c00155{left:171.600000pt;}
.x3_c00155{left:173.760000pt;}
.x63_c00155{left:174.960000pt;}
.x51_c00155{left:176.400000pt;}
.x32_c00155{left:180.720000pt;}
.x29_c00155{left:182.880000pt;}
.xc_c00155{left:184.800000pt;}
.x12_c00155{left:186.480000pt;}
.x6c_c00155{left:189.600000pt;}
.x4_c00155{left:191.520000pt;}
.x23_c00155{left:193.200000pt;}
.x38_c00155{left:195.120000pt;}
.x56_c00155{left:196.560000pt;}
.x18_c00155{left:198.480000pt;}
.x58_c00155{left:199.440000pt;}
.x49_c00155{left:204.240000pt;}
.x6d_c00155{left:205.200000pt;}
.x5_c00155{left:206.160000pt;}
.x20_c00155{left:208.320000pt;}
.x2a_c00155{left:211.440000pt;}
.x27_c00155{left:212.640000pt;}
.x19_c00155{left:214.800000pt;}
.x2b_c00155{left:217.200000pt;}
.x64_c00155{left:219.840000pt;}
.x3e_c00155{left:222.480000pt;}
.x36_c00155{left:224.160000pt;}
.x13_c00155{left:228.000000pt;}
.x28_c00155{left:228.960000pt;}
.x21_c00155{left:231.840000pt;}
.x2c_c00155{left:234.720000pt;}
.x52_c00155{left:235.920000pt;}
.x70_c00155{left:240.720000pt;}
.x14_c00155{left:243.600000pt;}
.x7a_c00155{left:245.760000pt;}
.x4a_c00155{left:247.680000pt;}
.xd_c00155{left:248.640000pt;}
.x75_c00155{left:251.040000pt;}
.x1a_c00155{left:253.680000pt;}
.x3f_c00155{left:257.040000pt;}
.x6_c00155{left:259.440000pt;}
.x68_c00155{left:260.640000pt;}
.x47_c00155{left:264.240000pt;}
.xe_c00155{left:265.920000pt;}
.x5d_c00155{left:267.840000pt;}
.x1b_c00155{left:269.520000pt;}
.x15_c00155{left:270.720000pt;}
.x4b_c00155{left:271.920000pt;}
.x2d_c00155{left:273.600000pt;}
.x7_c00155{left:274.800000pt;}
.x71_c00155{left:277.200000pt;}
.x59_c00155{left:281.040000pt;}
.xf_c00155{left:289.200000pt;}
.x16_c00155{left:290.160000pt;}
.x8_c00155{left:291.840000pt;}
.x1c_c00155{left:294.960000pt;}
.x37_c00155{left:297.600000pt;}
.x24_c00155{left:298.800000pt;}
.x65_c00155{left:300.960000pt;}
.x5e_c00155{left:302.400000pt;}
.x33_c00155{left:305.760000pt;}
.x22_c00155{left:308.160000pt;}
.x10_c00155{left:309.840000pt;}
.x79_c00155{left:311.760000pt;}
.x53_c00155{left:313.680000pt;}
.x40_c00155{left:314.880000pt;}
.x39_c00155{left:320.160000pt;}
.x69_c00155{left:323.520000pt;}
.x7b_c00155{left:324.960000pt;}
.x5a_c00155{left:325.920000pt;}
.x45_c00155{left:330.000000pt;}
.x76_c00155{left:332.400000pt;}
.x9b_c00155{left:336.000000pt;}
.x57_c00155{left:338.880000pt;}
.x88_c00155{left:339.840000pt;}
.x80_c00155{left:342.240000pt;}
.x5f_c00155{left:344.880000pt;}
.x6a_c00155{left:346.560000pt;}
.x5b_c00155{left:349.440000pt;}
.x6e_c00155{left:352.800000pt;}
.x3a_c00155{left:356.400000pt;}
.x77_c00155{left:357.840000pt;}
.x41_c00155{left:359.760000pt;}
.x4c_c00155{left:362.640000pt;}
.x54_c00155{left:366.240000pt;}
.x84_c00155{left:370.560000pt;}
.x94_c00155{left:373.920000pt;}
.x66_c00155{left:374.880000pt;}
.xa2_c00155{left:376.800000pt;}
.x42_c00155{left:378.720000pt;}
.xa0_c00155{left:379.680000pt;}
.x60_c00155{left:380.640000pt;}
.x46_c00155{left:384.480000pt;}
.x95_c00155{left:386.640000pt;}
.x3b_c00155{left:390.000000pt;}
.xa1_c00155{left:396.000000pt;}
.x67_c00155{left:397.920000pt;}
.x90_c00155{left:400.080000pt;}
.x5c_c00155{left:402.240000pt;}
.x43_c00155{left:404.160000pt;}
.x89_c00155{left:406.320000pt;}
.x4d_c00155{left:408.240000pt;}
.x7c_c00155{left:411.360000pt;}
.x91_c00155{left:412.800000pt;}
.x7e_c00155{left:414.960000pt;}
.x72_c00155{left:417.600000pt;}
.x6f_c00155{left:418.560000pt;}
.x9c_c00155{left:419.760000pt;}
.x61_c00155{left:422.400000pt;}
.x3c_c00155{left:424.560000pt;}
.xa6_c00155{left:425.520000pt;}
.x97_c00155{left:432.000000pt;}
.x55_c00155{left:437.040000pt;}
.x78_c00155{left:440.400000pt;}
.x73_c00155{left:441.840000pt;}
.x6b_c00155{left:443.040000pt;}
.x81_c00155{left:445.200000pt;}
.x4e_c00155{left:448.560000pt;}
.x3d_c00155{left:449.760000pt;}
.x7d_c00155{left:451.200000pt;}
.x8d_c00155{left:452.400000pt;}
.x8a_c00155{left:453.600000pt;}
.x9d_c00155{left:456.000000pt;}
.x98_c00155{left:457.440000pt;}
.xa3_c00155{left:460.560000pt;}
.x62_c00155{left:464.400000pt;}
.x44_c00155{left:469.200000pt;}
.xa7_c00155{left:471.840000pt;}
.x85_c00155{left:474.480000pt;}
.x9e_c00155{left:476.400000pt;}
.x8e_c00155{left:478.800000pt;}
.x4f_c00155{left:481.680000pt;}
.x92_c00155{left:483.120000pt;}
.x99_c00155{left:492.720000pt;}
.x86_c00155{left:494.160000pt;}
.xa8_c00155{left:495.120000pt;}
.x82_c00155{left:497.280000pt;}
.x8f_c00155{left:498.720000pt;}
.x8b_c00155{left:501.840000pt;}
.xa4_c00155{left:512.160000pt;}
.x96_c00155{left:514.560000pt;}
.x8c_c00155{left:516.240000pt;}
.x87_c00155{left:517.440000pt;}
.x7f_c00155{left:521.520000pt;}
.xa9_c00155{left:523.920000pt;}
.x93_c00155{left:528.000000pt;}
.x50_c00155{left:531.840000pt;}
.x83_c00155{left:534.720000pt;}
.xa5_c00155{left:537.600000pt;}
.x9f_c00155{left:562.320000pt;}
.x9a_c00155{left:574.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_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_ef4e99a7aa2876b3106553d3.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;}
.m69_c00156{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);}
.md5_c00156{transform:matrix(0.035349,-0.000636,0.004499,0.249960,0,0);-ms-transform:matrix(0.035349,-0.000636,0.004499,0.249960,0,0);-webkit-transform:matrix(0.035349,-0.000636,0.004499,0.249960,0,0);}
.ma3_c00156{transform:matrix(0.060995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060995,0.000000,0.000000,0.250000,0,0);}
.m97_c00156{transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00156{transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.109995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109995,0.000000,0.000000,0.250000,0,0);}
.m112_c00156{transform:matrix(0.120196,-0.002164,0.004499,0.249960,0,0);-ms-transform:matrix(0.120196,-0.002164,0.004499,0.249960,0,0);-webkit-transform:matrix(0.120196,-0.002164,0.004499,0.249960,0,0);}
.mdf_c00156{transform:matrix(0.130024,-0.002340,0.004499,0.249960,0,0);-ms-transform:matrix(0.130024,-0.002340,0.004499,0.249960,0,0);-webkit-transform:matrix(0.130024,-0.002340,0.004499,0.249960,0,0);}
.m114_c00156{transform:matrix(0.131809,-0.002373,0.004499,0.249960,0,0);-ms-transform:matrix(0.131809,-0.002373,0.004499,0.249960,0,0);-webkit-transform:matrix(0.131809,-0.002373,0.004499,0.249960,0,0);}
.m116_c00156{transform:matrix(0.133328,-0.002400,0.004499,0.249960,0,0);-ms-transform:matrix(0.133328,-0.002400,0.004499,0.249960,0,0);-webkit-transform:matrix(0.133328,-0.002400,0.004499,0.249960,0,0);}
.m92_c00156{transform:matrix(0.133368,-0.002401,0.004499,0.249960,0,0);-ms-transform:matrix(0.133368,-0.002401,0.004499,0.249960,0,0);-webkit-transform:matrix(0.133368,-0.002401,0.004499,0.249960,0,0);}
.m55_c00156{transform:matrix(0.140635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00156{transform:matrix(0.142520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142520,0.000000,0.000000,0.250000,0,0);}
.mbf_c00156{transform:matrix(0.142658,-0.001427,0.002500,0.249988,0,0);-ms-transform:matrix(0.142658,-0.001427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142658,-0.001427,0.002500,0.249988,0,0);}
.m9_c00156{transform:matrix(0.143829,-0.002733,0.004749,0.249955,0,0);-ms-transform:matrix(0.143829,-0.002733,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143829,-0.002733,0.004749,0.249955,0,0);}
.m19_c00156{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);}
.m63_c00156{transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.146509,-0.002784,0.004749,0.249955,0,0);-ms-transform:matrix(0.146509,-0.002784,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146509,-0.002784,0.004749,0.249955,0,0);}
.me5_c00156{transform:matrix(0.146691,-0.002640,0.004499,0.249960,0,0);-ms-transform:matrix(0.146691,-0.002640,0.004499,0.249960,0,0);-webkit-transform:matrix(0.146691,-0.002640,0.004499,0.249960,0,0);}
.ma7_c00156{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);}
.m58_c00156{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.149813,-0.002846,0.004749,0.249955,0,0);-ms-transform:matrix(0.149813,-0.002846,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149813,-0.002846,0.004749,0.249955,0,0);}
.m7f_c00156{transform:matrix(0.150396,-0.002707,0.004499,0.249960,0,0);-ms-transform:matrix(0.150396,-0.002707,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150396,-0.002707,0.004499,0.249960,0,0);}
.mb1_c00156{transform:matrix(0.150608,-0.002259,0.003750,0.249972,0,0);-ms-transform:matrix(0.150608,-0.002259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150608,-0.002259,0.003750,0.249972,0,0);}
.m11f_c00156{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);}
.m41_c00156{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00156{transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);}
.m81_c00156{transform:matrix(0.152915,-0.002752,0.004499,0.249960,0,0);-ms-transform:matrix(0.152915,-0.002752,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152915,-0.002752,0.004499,0.249960,0,0);}
.m70_c00156{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.mb2_c00156{transform:matrix(0.154193,-0.002313,0.003750,0.249972,0,0);-ms-transform:matrix(0.154193,-0.002313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154193,-0.002313,0.003750,0.249972,0,0);}
.m1c_c00156{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);}
.m3f_c00156{transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00156{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);}
.me7_c00156{transform:matrix(0.155830,-0.002805,0.004499,0.249960,0,0);-ms-transform:matrix(0.155830,-0.002805,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155830,-0.002805,0.004499,0.249960,0,0);}
.m17_c00156{transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);}
.m10d_c00156{transform:matrix(0.158069,-0.002845,0.004499,0.249960,0,0);-ms-transform:matrix(0.158069,-0.002845,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158069,-0.002845,0.004499,0.249960,0,0);}
.m9f_c00156{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);}
.m6d_c00156{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);}
.m9d_c00156{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);}
.md4_c00156{transform:matrix(0.160059,-0.002881,0.004499,0.249960,0,0);-ms-transform:matrix(0.160059,-0.002881,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160059,-0.002881,0.004499,0.249960,0,0);}
.mcc_c00156{transform:matrix(0.161312,-0.001613,0.002500,0.249988,0,0);-ms-transform:matrix(0.161312,-0.001613,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161312,-0.001613,0.002500,0.249988,0,0);}
.m106_c00156{transform:matrix(0.162889,-0.002932,0.004499,0.249960,0,0);-ms-transform:matrix(0.162889,-0.002932,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162889,-0.002932,0.004499,0.249960,0,0);}
.m59_c00156{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m89_c00156{transform:matrix(0.164798,-0.002966,0.004499,0.249960,0,0);-ms-transform:matrix(0.164798,-0.002966,0.004499,0.249960,0,0);-webkit-transform:matrix(0.164798,-0.002966,0.004499,0.249960,0,0);}
.m52_c00156{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);}
.m6a_c00156{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);}
.m109_c00156{transform:matrix(0.166418,-0.002996,0.004499,0.249960,0,0);-ms-transform:matrix(0.166418,-0.002996,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166418,-0.002996,0.004499,0.249960,0,0);}
.me8_c00156{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);}
.m40_c00156{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);}
.mbb_c00156{transform:matrix(0.167627,-0.001676,0.002500,0.249988,0,0);-ms-transform:matrix(0.167627,-0.001676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167627,-0.001676,0.002500,0.249988,0,0);}
.md_c00156{transform:matrix(0.167951,-0.002855,0.004249,0.249964,0,0);-ms-transform:matrix(0.167951,-0.002855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167951,-0.002855,0.004249,0.249964,0,0);}
.m87_c00156{transform:matrix(0.167953,-0.003023,0.004499,0.249960,0,0);-ms-transform:matrix(0.167953,-0.003023,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167953,-0.003023,0.004499,0.249960,0,0);}
.m7a_c00156{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);}
.m122_c00156{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);}
.mc7_c00156{transform:matrix(0.169172,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169172,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169172,-0.001692,0.002500,0.249988,0,0);}
.mca_c00156{transform:matrix(0.169807,-0.001698,0.002500,0.249988,0,0);-ms-transform:matrix(0.169807,-0.001698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169807,-0.001698,0.002500,0.249988,0,0);}
.m3_c00156{transform:matrix(0.170039,-0.003231,0.004749,0.249955,0,0);-ms-transform:matrix(0.170039,-0.003231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170039,-0.003231,0.004749,0.249955,0,0);}
.m83_c00156{transform:matrix(0.170347,-0.003066,0.004499,0.249960,0,0);-ms-transform:matrix(0.170347,-0.003066,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170347,-0.003066,0.004499,0.249960,0,0);}
.m23_c00156{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.md2_c00156{transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);-ms-transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);}
.m4_c00156{transform:matrix(0.171244,-0.003254,0.004749,0.249955,0,0);-ms-transform:matrix(0.171244,-0.003254,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171244,-0.003254,0.004749,0.249955,0,0);}
.m11c_c00156{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);}
.m118_c00156{transform:matrix(0.171992,-0.003096,0.004499,0.249960,0,0);-ms-transform:matrix(0.171992,-0.003096,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171992,-0.003096,0.004499,0.249960,0,0);}
.m24_c00156{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);}
.mf_c00156{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);}
.maf_c00156{transform:matrix(0.172601,-0.002589,0.003750,0.249972,0,0);-ms-transform:matrix(0.172601,-0.002589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172601,-0.002589,0.003750,0.249972,0,0);}
.m6b_c00156{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);}
.md1_c00156{transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);-ms-transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);}
.m6c_c00156{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);}
.ma5_c00156{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);}
.mef_c00156{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);}
.m88_c00156{transform:matrix(0.173717,-0.003127,0.004499,0.249960,0,0);-ms-transform:matrix(0.173717,-0.003127,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173717,-0.003127,0.004499,0.249960,0,0);}
.mc5_c00156{transform:matrix(0.173816,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173816,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173816,-0.001738,0.002500,0.249988,0,0);}
.mf4_c00156{transform:matrix(0.174092,-0.003134,0.004499,0.249960,0,0);-ms-transform:matrix(0.174092,-0.003134,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174092,-0.003134,0.004499,0.249960,0,0);}
.m9a_c00156{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);}
.m7c_c00156{transform:matrix(0.174577,-0.003142,0.004499,0.249960,0,0);-ms-transform:matrix(0.174577,-0.003142,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174577,-0.003142,0.004499,0.249960,0,0);}
.mcf_c00156{transform:matrix(0.174797,-0.003146,0.004499,0.249960,0,0);-ms-transform:matrix(0.174797,-0.003146,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174797,-0.003146,0.004499,0.249960,0,0);}
.m29_c00156{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);}
.m47_c00156{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);}
.m25_c00156{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);}
.m66_c00156{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);}
.me4_c00156{transform:matrix(0.175892,-0.003166,0.004499,0.249960,0,0);-ms-transform:matrix(0.175892,-0.003166,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175892,-0.003166,0.004499,0.249960,0,0);}
.m8c_c00156{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);}
.m50_c00156{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.m31_c00156{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);}
.m10_c00156{transform:matrix(0.176360,-0.002998,0.004249,0.249964,0,0);-ms-transform:matrix(0.176360,-0.002998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176360,-0.002998,0.004249,0.249964,0,0);}
.md0_c00156{transform:matrix(0.176381,-0.003175,0.004499,0.249960,0,0);-ms-transform:matrix(0.176381,-0.003175,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176381,-0.003175,0.004499,0.249960,0,0);}
.m119_c00156{transform:matrix(0.176676,-0.003180,0.004499,0.249960,0,0);-ms-transform:matrix(0.176676,-0.003180,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176676,-0.003180,0.004499,0.249960,0,0);}
.m8b_c00156{transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);-ms-transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);}
.mf5_c00156{transform:matrix(0.177071,-0.003187,0.004499,0.249960,0,0);-ms-transform:matrix(0.177071,-0.003187,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177071,-0.003187,0.004499,0.249960,0,0);}
.mb3_c00156{transform:matrix(0.177890,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177890,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177890,-0.002668,0.003750,0.249972,0,0);}
.m5_c00156{transform:matrix(0.178003,-0.003382,0.004749,0.249955,0,0);-ms-transform:matrix(0.178003,-0.003382,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178003,-0.003382,0.004749,0.249955,0,0);}
.mb4_c00156{transform:matrix(0.178140,-0.002672,0.003750,0.249972,0,0);-ms-transform:matrix(0.178140,-0.002672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178140,-0.002672,0.003750,0.249972,0,0);}
.m102_c00156{transform:matrix(0.178496,-0.003213,0.004499,0.249960,0,0);-ms-transform:matrix(0.178496,-0.003213,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178496,-0.003213,0.004499,0.249960,0,0);}
.m82_c00156{transform:matrix(0.178556,-0.003214,0.004499,0.249960,0,0);-ms-transform:matrix(0.178556,-0.003214,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178556,-0.003214,0.004499,0.249960,0,0);}
.mf8_c00156{transform:matrix(0.179001,-0.003222,0.004499,0.249960,0,0);-ms-transform:matrix(0.179001,-0.003222,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179001,-0.003222,0.004499,0.249960,0,0);}
.m73_c00156{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);}
.mb0_c00156{transform:matrix(0.179300,-0.002689,0.003750,0.249972,0,0);-ms-transform:matrix(0.179300,-0.002689,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179300,-0.002689,0.003750,0.249972,0,0);}
.m65_c00156{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);}
.m61_c00156{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);}
.m115_c00156{transform:matrix(0.179841,-0.003237,0.004499,0.249960,0,0);-ms-transform:matrix(0.179841,-0.003237,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179841,-0.003237,0.004499,0.249960,0,0);}
.m78_c00156{transform:matrix(0.180026,-0.003240,0.004499,0.249960,0,0);-ms-transform:matrix(0.180026,-0.003240,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180026,-0.003240,0.004499,0.249960,0,0);}
.m86_c00156{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);}
.m6_c00156{transform:matrix(0.180137,-0.003423,0.004749,0.249955,0,0);-ms-transform:matrix(0.180137,-0.003423,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180137,-0.003423,0.004749,0.249955,0,0);}
.m43_c00156{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);}
.mae_c00156{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);}
.mc2_c00156{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);}
.m11e_c00156{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);}
.m105_c00156{transform:matrix(0.181831,-0.003273,0.004499,0.249960,0,0);-ms-transform:matrix(0.181831,-0.003273,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181831,-0.003273,0.004499,0.249960,0,0);}
.m64_c00156{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);}
.m9b_c00156{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);}
.m56_c00156{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);}
.mb5_c00156{transform:matrix(0.183174,-0.002748,0.003750,0.249972,0,0);-ms-transform:matrix(0.183174,-0.002748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183174,-0.002748,0.003750,0.249972,0,0);}
.me1_c00156{transform:matrix(0.183250,-0.003299,0.004499,0.249960,0,0);-ms-transform:matrix(0.183250,-0.003299,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183250,-0.003299,0.004499,0.249960,0,0);}
.mf7_c00156{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);}
.me3_c00156{transform:matrix(0.183375,-0.003301,0.004499,0.249960,0,0);-ms-transform:matrix(0.183375,-0.003301,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183375,-0.003301,0.004499,0.249960,0,0);}
.mc8_c00156{transform:matrix(0.183926,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183926,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183926,-0.001839,0.002500,0.249988,0,0);}
.mfd_c00156{transform:matrix(0.184090,-0.003314,0.004499,0.249960,0,0);-ms-transform:matrix(0.184090,-0.003314,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184090,-0.003314,0.004499,0.249960,0,0);}
.mfb_c00156{transform:matrix(0.184230,-0.003316,0.004499,0.249960,0,0);-ms-transform:matrix(0.184230,-0.003316,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184230,-0.003316,0.004499,0.249960,0,0);}
.m30_c00156{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);}
.m99_c00156{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);}
.m85_c00156{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);}
.mad_c00156{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);}
.mf0_c00156{transform:matrix(0.185375,-0.003337,0.004499,0.249960,0,0);-ms-transform:matrix(0.185375,-0.003337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185375,-0.003337,0.004499,0.249960,0,0);}
.m101_c00156{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);}
.m39_c00156{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.me2_c00156{transform:matrix(0.186500,-0.003357,0.004499,0.249960,0,0);-ms-transform:matrix(0.186500,-0.003357,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186500,-0.003357,0.004499,0.249960,0,0);}
.m8a_c00156{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);}
.mc1_c00156{transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);}
.ma8_c00156{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);}
.m100_c00156{transform:matrix(0.186845,-0.003363,0.004499,0.249960,0,0);-ms-transform:matrix(0.186845,-0.003363,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186845,-0.003363,0.004499,0.249960,0,0);}
.m3b_c00156{transform:matrix(0.187082,-0.011247,0.015003,0.249549,0,0);-ms-transform:matrix(0.187082,-0.011247,0.015003,0.249549,0,0);-webkit-transform:matrix(0.187082,-0.011247,0.015003,0.249549,0,0);}
.mf2_c00156{transform:matrix(0.187400,-0.003373,0.004499,0.249960,0,0);-ms-transform:matrix(0.187400,-0.003373,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187400,-0.003373,0.004499,0.249960,0,0);}
.m62_c00156{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);}
.ma_c00156{transform:matrix(0.187921,-0.003571,0.004749,0.249955,0,0);-ms-transform:matrix(0.187921,-0.003571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187921,-0.003571,0.004749,0.249955,0,0);}
.m107_c00156{transform:matrix(0.187990,-0.003384,0.004499,0.249960,0,0);-ms-transform:matrix(0.187990,-0.003384,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187990,-0.003384,0.004499,0.249960,0,0);}
.m67_c00156{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.m79_c00156{transform:matrix(0.188394,-0.003391,0.004499,0.249960,0,0);-ms-transform:matrix(0.188394,-0.003391,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188394,-0.003391,0.004499,0.249960,0,0);}
.m28_c00156{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);}
.m5e_c00156{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);}
.mf1_c00156{transform:matrix(0.189019,-0.003402,0.004499,0.249960,0,0);-ms-transform:matrix(0.189019,-0.003402,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189019,-0.003402,0.004499,0.249960,0,0);}
.m95_c00156{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);}
.m7d_c00156{transform:matrix(0.189514,-0.003411,0.004499,0.249960,0,0);-ms-transform:matrix(0.189514,-0.003411,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189514,-0.003411,0.004499,0.249960,0,0);}
.m7e_c00156{transform:matrix(0.190134,-0.003422,0.004499,0.249960,0,0);-ms-transform:matrix(0.190134,-0.003422,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190134,-0.003422,0.004499,0.249960,0,0);}
.m1b_c00156{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);}
.m32_c00156{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m2f_c00156{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);}
.m11d_c00156{transform:matrix(0.191384,-0.003445,0.004499,0.249960,0,0);-ms-transform:matrix(0.191384,-0.003445,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191384,-0.003445,0.004499,0.249960,0,0);}
.m10e_c00156{transform:matrix(0.191754,-0.003452,0.004499,0.249960,0,0);-ms-transform:matrix(0.191754,-0.003452,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191754,-0.003452,0.004499,0.249960,0,0);}
.m53_c00156{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);}
.m6e_c00156{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);}
.me9_c00156{transform:matrix(0.192379,-0.003463,0.004499,0.249960,0,0);-ms-transform:matrix(0.192379,-0.003463,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192379,-0.003463,0.004499,0.249960,0,0);}
.m6f_c00156{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);}
.m5d_c00156{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_c00156{transform:matrix(0.192970,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192970,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192970,-0.001930,0.002500,0.249988,0,0);}
.m8d_c00156{transform:matrix(0.192979,-0.003474,0.004499,0.249960,0,0);-ms-transform:matrix(0.192979,-0.003474,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192979,-0.003474,0.004499,0.249960,0,0);}
.m80_c00156{transform:matrix(0.193199,-0.003478,0.004499,0.249960,0,0);-ms-transform:matrix(0.193199,-0.003478,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193199,-0.003478,0.004499,0.249960,0,0);}
.m37_c00156{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);}
.ma0_c00156{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);}
.mff_c00156{transform:matrix(0.194339,-0.003498,0.004499,0.249960,0,0);-ms-transform:matrix(0.194339,-0.003498,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194339,-0.003498,0.004499,0.249960,0,0);}
.mfc_c00156{transform:matrix(0.194973,-0.003510,0.004499,0.249960,0,0);-ms-transform:matrix(0.194973,-0.003510,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194973,-0.003510,0.004499,0.249960,0,0);}
.md3_c00156{transform:matrix(0.195658,-0.003522,0.004499,0.249960,0,0);-ms-transform:matrix(0.195658,-0.003522,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195658,-0.003522,0.004499,0.249960,0,0);}
.m96_c00156{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);}
.m33_c00156{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);}
.mc_c00156{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);}
.m46_c00156{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);}
.m98_c00156{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);}
.md6_c00156{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);}
.ma1_c00156{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);}
.m108_c00156{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);}
.m38_c00156{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);}
.m117_c00156{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);}
.m8_c00156{transform:matrix(0.197719,-0.003757,0.004749,0.249955,0,0);-ms-transform:matrix(0.197719,-0.003757,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197719,-0.003757,0.004749,0.249955,0,0);}
.m57_c00156{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.m110_c00156{transform:matrix(0.197918,-0.003563,0.004499,0.249960,0,0);-ms-transform:matrix(0.197918,-0.003563,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197918,-0.003563,0.004499,0.249960,0,0);}
.m0_c00156{transform:matrix(0.198014,-0.003762,0.004749,0.249955,0,0);-ms-transform:matrix(0.198014,-0.003762,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198014,-0.003762,0.004749,0.249955,0,0);}
.mee_c00156{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);}
.mb_c00156{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);}
.m11b_c00156{transform:matrix(0.198553,-0.003574,0.004499,0.249960,0,0);-ms-transform:matrix(0.198553,-0.003574,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198553,-0.003574,0.004499,0.249960,0,0);}
.m16_c00156{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);}
.md9_c00156{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);}
.med_c00156{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);}
.m113_c00156{transform:matrix(0.200952,-0.003617,0.004499,0.249960,0,0);-ms-transform:matrix(0.200952,-0.003617,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200952,-0.003617,0.004499,0.249960,0,0);}
.mbe_c00156{transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);}
.m9e_c00156{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);}
.m13_c00156{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);}
.maa_c00156{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);}
.m68_c00156{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);}
.mc0_c00156{transform:matrix(0.202795,-0.002028,0.002500,0.249988,0,0);-ms-transform:matrix(0.202795,-0.002028,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202795,-0.002028,0.002500,0.249988,0,0);}
.m22_c00156{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);}
.m34_c00156{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);}
.mc9_c00156{transform:matrix(0.204085,-0.002041,0.002500,0.249988,0,0);-ms-transform:matrix(0.204085,-0.002041,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204085,-0.002041,0.002500,0.249988,0,0);}
.mda_c00156{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);}
.m94_c00156{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);}
.m1a_c00156{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);}
.mde_c00156{transform:matrix(0.205917,-0.003706,0.004499,0.249960,0,0);-ms-transform:matrix(0.205917,-0.003706,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205917,-0.003706,0.004499,0.249960,0,0);}
.mec_c00156{transform:matrix(0.206012,-0.003708,0.004499,0.249960,0,0);-ms-transform:matrix(0.206012,-0.003708,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206012,-0.003708,0.004499,0.249960,0,0);}
.me6_c00156{transform:matrix(0.206017,-0.003708,0.004499,0.249960,0,0);-ms-transform:matrix(0.206017,-0.003708,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206017,-0.003708,0.004499,0.249960,0,0);}
.m45_c00156{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);}
.mcd_c00156{transform:matrix(0.207756,-0.003740,0.004499,0.249960,0,0);-ms-transform:matrix(0.207756,-0.003740,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207756,-0.003740,0.004499,0.249960,0,0);}
.m54_c00156{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);}
.m26_c00156{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);}
.me_c00156{transform:matrix(0.208405,-0.003543,0.004249,0.249964,0,0);-ms-transform:matrix(0.208405,-0.003543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208405,-0.003543,0.004249,0.249964,0,0);}
.m10f_c00156{transform:matrix(0.208556,-0.003754,0.004499,0.249960,0,0);-ms-transform:matrix(0.208556,-0.003754,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208556,-0.003754,0.004499,0.249960,0,0);}
.m36_c00156{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);}
.mf6_c00156{transform:matrix(0.208836,-0.003759,0.004499,0.249960,0,0);-ms-transform:matrix(0.208836,-0.003759,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208836,-0.003759,0.004499,0.249960,0,0);}
.m111_c00156{transform:matrix(0.208986,-0.003762,0.004499,0.249960,0,0);-ms-transform:matrix(0.208986,-0.003762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208986,-0.003762,0.004499,0.249960,0,0);}
.meb_c00156{transform:matrix(0.209021,-0.003762,0.004499,0.249960,0,0);-ms-transform:matrix(0.209021,-0.003762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209021,-0.003762,0.004499,0.249960,0,0);}
.mcb_c00156{transform:matrix(0.211289,-0.002113,0.002500,0.249988,0,0);-ms-transform:matrix(0.211289,-0.002113,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211289,-0.002113,0.002500,0.249988,0,0);}
.m4b_c00156{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);}
.ma9_c00156{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);}
.m7b_c00156{transform:matrix(0.213570,-0.003844,0.004499,0.249960,0,0);-ms-transform:matrix(0.213570,-0.003844,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213570,-0.003844,0.004499,0.249960,0,0);}
.m10c_c00156{transform:matrix(0.213880,-0.003850,0.004499,0.249960,0,0);-ms-transform:matrix(0.213880,-0.003850,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213880,-0.003850,0.004499,0.249960,0,0);}
.mdb_c00156{transform:matrix(0.214185,-0.003855,0.004499,0.249960,0,0);-ms-transform:matrix(0.214185,-0.003855,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214185,-0.003855,0.004499,0.249960,0,0);}
.m72_c00156{transform:matrix(0.214394,-0.003645,0.004249,0.249964,0,0);-ms-transform:matrix(0.214394,-0.003645,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214394,-0.003645,0.004249,0.249964,0,0);}
.m3a_c00156{transform:matrix(0.214598,-0.012902,0.015003,0.249549,0,0);-ms-transform:matrix(0.214598,-0.012902,0.015003,0.249549,0,0);-webkit-transform:matrix(0.214598,-0.012902,0.015003,0.249549,0,0);}
.m11_c00156{transform:matrix(0.214809,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214809,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214809,-0.003652,0.004249,0.249964,0,0);}
.m35_c00156{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.m2a_c00156{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);}
.m2b_c00156{transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{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);}
.m75_c00156{transform:matrix(0.219229,-0.003946,0.004499,0.249960,0,0);-ms-transform:matrix(0.219229,-0.003946,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219229,-0.003946,0.004499,0.249960,0,0);}
.m11a_c00156{transform:matrix(0.219234,-0.003946,0.004499,0.249960,0,0);-ms-transform:matrix(0.219234,-0.003946,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219234,-0.003946,0.004499,0.249960,0,0);}
.m2d_c00156{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);}
.mb9_c00156{transform:matrix(0.220554,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220554,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220554,-0.002206,0.002500,0.249988,0,0);}
.m1f_c00156{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);}
.m5c_c00156{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);}
.m51_c00156{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);}
.mb8_c00156{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);}
.m10a_c00156{transform:matrix(0.225254,-0.004055,0.004499,0.249960,0,0);-ms-transform:matrix(0.225254,-0.004055,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225254,-0.004055,0.004499,0.249960,0,0);}
.mba_c00156{transform:matrix(0.225824,-0.002258,0.002500,0.249988,0,0);-ms-transform:matrix(0.225824,-0.002258,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225824,-0.002258,0.002500,0.249988,0,0);}
.m9c_c00156{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);}
.m76_c00156{transform:matrix(0.226158,-0.004071,0.004499,0.249960,0,0);-ms-transform:matrix(0.226158,-0.004071,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226158,-0.004071,0.004499,0.249960,0,0);}
.m44_c00156{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);}
.mab_c00156{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);}
.m8e_c00156{transform:matrix(0.228668,-0.004116,0.004499,0.249960,0,0);-ms-transform:matrix(0.228668,-0.004116,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228668,-0.004116,0.004499,0.249960,0,0);}
.m20_c00156{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);}
.m5b_c00156{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);}
.mfa_c00156{transform:matrix(0.231188,-0.004161,0.004499,0.249960,0,0);-ms-transform:matrix(0.231188,-0.004161,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231188,-0.004161,0.004499,0.249960,0,0);}
.m104_c00156{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);}
.mea_c00156{transform:matrix(0.232067,-0.004177,0.004499,0.249960,0,0);-ms-transform:matrix(0.232067,-0.004177,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232067,-0.004177,0.004499,0.249960,0,0);}
.mdc_c00156{transform:matrix(0.232637,-0.004187,0.004499,0.249960,0,0);-ms-transform:matrix(0.232637,-0.004187,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232637,-0.004187,0.004499,0.249960,0,0);}
.m18_c00156{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);}
.mb7_c00156{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);}
.md8_c00156{transform:matrix(0.234017,-0.004212,0.004499,0.249960,0,0);-ms-transform:matrix(0.234017,-0.004212,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234017,-0.004212,0.004499,0.249960,0,0);}
.m27_c00156{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.mac_c00156{transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);}
.m4f_c00156{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);}
.mbc_c00156{transform:matrix(0.238063,-0.002381,0.002500,0.249988,0,0);-ms-transform:matrix(0.238063,-0.002381,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238063,-0.002381,0.002500,0.249988,0,0);}
.ma6_c00156{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);}
.m77_c00156{transform:matrix(0.238831,-0.004299,0.004499,0.249960,0,0);-ms-transform:matrix(0.238831,-0.004299,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238831,-0.004299,0.004499,0.249960,0,0);}
.mdd_c00156{transform:matrix(0.239226,-0.004306,0.004499,0.249960,0,0);-ms-transform:matrix(0.239226,-0.004306,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239226,-0.004306,0.004499,0.249960,0,0);}
.m3e_c00156{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.mf9_c00156{transform:matrix(0.240951,-0.004337,0.004499,0.249960,0,0);-ms-transform:matrix(0.240951,-0.004337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240951,-0.004337,0.004499,0.249960,0,0);}
.m84_c00156{transform:matrix(0.242336,-0.004362,0.004499,0.249960,0,0);-ms-transform:matrix(0.242336,-0.004362,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242336,-0.004362,0.004499,0.249960,0,0);}
.m91_c00156{transform:matrix(0.242386,-0.004363,0.004499,0.249960,0,0);-ms-transform:matrix(0.242386,-0.004363,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242386,-0.004363,0.004499,0.249960,0,0);}
.mce_c00156{transform:matrix(0.244285,-0.004397,0.004499,0.249960,0,0);-ms-transform:matrix(0.244285,-0.004397,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244285,-0.004397,0.004499,0.249960,0,0);}
.m1_c00156{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);}
.m1e_c00156{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);}
.m93_c00156{transform:matrix(0.249605,-0.004493,0.004499,0.249960,0,0);-ms-transform:matrix(0.249605,-0.004493,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249605,-0.004493,0.004499,0.249960,0,0);}
.m8f_c00156{transform:matrix(0.250759,-0.004514,0.004499,0.249960,0,0);-ms-transform:matrix(0.250759,-0.004514,0.004499,0.249960,0,0);-webkit-transform:matrix(0.250759,-0.004514,0.004499,0.249960,0,0);}
.m12_c00156{transform:matrix(0.251209,-0.004271,0.004249,0.249964,0,0);-ms-transform:matrix(0.251209,-0.004271,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251209,-0.004271,0.004249,0.249964,0,0);}
.m1d_c00156{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);}
.m2c_c00156{transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);}
.m60_c00156{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.mbd_c00156{transform:matrix(0.255467,-0.002555,0.002500,0.249988,0,0);-ms-transform:matrix(0.255467,-0.002555,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255467,-0.002555,0.002500,0.249988,0,0);}
.m10b_c00156{transform:matrix(0.255974,-0.004608,0.004499,0.249960,0,0);-ms-transform:matrix(0.255974,-0.004608,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255974,-0.004608,0.004499,0.249960,0,0);}
.m4e_c00156{transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{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);}
.m3d_c00156{transform:matrix(0.260980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260980,0.000000,0.000000,0.250000,0,0);}
.mc3_c00156{transform:matrix(0.262522,-0.002625,0.002500,0.249988,0,0);-ms-transform:matrix(0.262522,-0.002625,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262522,-0.002625,0.002500,0.249988,0,0);}
.md7_c00156{transform:matrix(0.263642,-0.004746,0.004499,0.249960,0,0);-ms-transform:matrix(0.263642,-0.004746,0.004499,0.249960,0,0);-webkit-transform:matrix(0.263642,-0.004746,0.004499,0.249960,0,0);}
.m4c_c00156{transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);}
.m49_c00156{transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276735,0.000000,0.000000,0.250000,0,0);}
.mf3_c00156{transform:matrix(0.277045,-0.004987,0.004499,0.249960,0,0);-ms-transform:matrix(0.277045,-0.004987,0.004499,0.249960,0,0);-webkit-transform:matrix(0.277045,-0.004987,0.004499,0.249960,0,0);}
.m4a_c00156{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);}
.mfe_c00156{transform:matrix(0.281629,-0.005069,0.004499,0.249960,0,0);-ms-transform:matrix(0.281629,-0.005069,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281629,-0.005069,0.004499,0.249960,0,0);}
.m103_c00156{transform:matrix(0.297607,-0.005357,0.004499,0.249960,0,0);-ms-transform:matrix(0.297607,-0.005357,0.004499,0.249960,0,0);-webkit-transform:matrix(0.297607,-0.005357,0.004499,0.249960,0,0);}
.m4d_c00156{transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304360,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me0_c00156{transform:matrix(0.320138,-0.005762,0.004499,0.249960,0,0);-ms-transform:matrix(0.320138,-0.005762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.320138,-0.005762,0.004499,0.249960,0,0);}
.mb6_c00156{transform:matrix(0.322939,-0.004844,0.003750,0.249972,0,0);-ms-transform:matrix(0.322939,-0.004844,0.003750,0.249972,0,0);-webkit-transform:matrix(0.322939,-0.004844,0.003750,0.249972,0,0);}
.m90_c00156{transform:matrix(0.350853,-0.006315,0.004499,0.249960,0,0);-ms-transform:matrix(0.350853,-0.006315,0.004499,0.249960,0,0);-webkit-transform:matrix(0.350853,-0.006315,0.004499,0.249960,0,0);}
.m3c_c00156{transform:matrix(0.350911,-0.021097,0.015003,0.249549,0,0);-ms-transform:matrix(0.350911,-0.021097,0.015003,0.249549,0,0);-webkit-transform:matrix(0.350911,-0.021097,0.015003,0.249549,0,0);}
.m42_c00156{transform:matrix(0.391200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391200,0.000000,0.000000,0.250000,0,0);}
.m71_c00156{transform:matrix(0.394493,-0.006706,0.004249,0.249964,0,0);-ms-transform:matrix(0.394493,-0.006706,0.004249,0.249964,0,0);-webkit-transform:matrix(0.394493,-0.006706,0.004249,0.249964,0,0);}
.m74_c00156{transform:matrix(0.402019,-0.009648,0.005998,0.249928,0,0);-ms-transform:matrix(0.402019,-0.009648,0.005998,0.249928,0,0);-webkit-transform:matrix(0.402019,-0.009648,0.005998,0.249928,0,0);}
.mc4_c00156{transform:matrix(0.448408,-0.004484,0.002500,0.249988,0,0);-ms-transform:matrix(0.448408,-0.004484,0.002500,0.249988,0,0);-webkit-transform:matrix(0.448408,-0.004484,0.002500,0.249988,0,0);}
.m48_c00156{transform:matrix(0.462820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462820,0.000000,0.000000,0.250000,0,0);}
.m121_c00156{transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525280,0.000000,0.000000,0.250000,0,0);}
.m120_c00156{transform:matrix(0.828000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828000,0.000000,0.000000,0.250000,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;}
.fs1a_c00156{font-size:27.300000px;}
.fs27_c00156{font-size:31.500000px;}
.fs26_c00156{font-size:36.750000px;}
.fs8_c00156{font-size:44.100000px;}
.fs9_c00156{font-size:48.300000px;}
.fs20_c00156{font-size:48.307824px;}
.fs21_c00156{font-size:49.357994px;}
.fs7_c00156{font-size:50.400000px;}
.fsf_c00156{font-size:51.450000px;}
.fs23_c00156{font-size:51.458334px;}
.fs1f_c00156{font-size:52.508504px;}
.fsa_c00156{font-size:53.550000px;}
.fs24_c00156{font-size:53.558674px;}
.fsb_c00156{font-size:54.589188px;}
.fs22_c00156{font-size:54.608844px;}
.fs6_c00156{font-size:55.650000px;}
.fs1c_c00156{font-size:58.800000px;}
.fs15_c00156{font-size:58.809525px;}
.fs10_c00156{font-size:59.850000px;}
.fse_c00156{font-size:64.050000px;}
.fs5_c00156{font-size:66.150000px;}
.fs4_c00156{font-size:66.159558px;}
.fs17_c00156{font-size:67.200000px;}
.fsd_c00156{font-size:68.250000px;}
.fs16_c00156{font-size:69.300000px;}
.fs0_c00156{font-size:69.312508px;}
.fsc_c00156{font-size:70.350000px;}
.fs1d_c00156{font-size:70.353517px;}
.fs3_c00156{font-size:70.360165px;}
.fs1e_c00156{font-size:71.403570px;}
.fs13_c00156{font-size:71.411566px;}
.fs12_c00156{font-size:71.420560px;}
.fs2_c00156{font-size:72.463076px;}
.fs18_c00156{font-size:73.500000px;}
.fs1b_c00156{font-size:73.508268px;}
.fs14_c00156{font-size:74.562076px;}
.fs1_c00156{font-size:74.563455px;}
.fs28_c00156{font-size:75.600000px;}
.fs19_c00156{font-size:79.800000px;}
.fs25_c00156{font-size:91.364798px;}
.fs11_c00156{font-size:107.115475px;}
.y0_c00156{bottom:0.000000px;}
.y1e_c00156{bottom:149.196000px;}
.y1b_c00156{bottom:167.439000px;}
.y1c_c00156{bottom:169.486230px;}
.y1d_c00156{bottom:170.594580px;}
.y26_c00156{bottom:189.271500px;}
.ybd_c00156{bottom:190.054437px;}
.ybe_c00156{bottom:190.395204px;}
.ybf_c00156{bottom:191.269788px;}
.yc0_c00156{bottom:191.716476px;}
.yc1_c00156{bottom:192.101064px;}
.yc2_c00156{bottom:192.504390px;}
.yc3_c00156{bottom:192.796287px;}
.yb6_c00156{bottom:205.018866px;}
.yb7_c00156{bottom:205.019037px;}
.yb8_c00156{bottom:205.019223px;}
.yb9_c00156{bottom:205.019568px;}
.ybb_c00156{bottom:205.019907px;}
.yba_c00156{bottom:205.020234px;}
.ybc_c00156{bottom:205.020585px;}
.y1a_c00156{bottom:207.604500px;}
.y19_c00156{bottom:225.223500px;}
.yb0_c00156{bottom:225.698670px;}
.yb1_c00156{bottom:226.515129px;}
.yb2_c00156{bottom:226.978746px;}
.yb3_c00156{bottom:227.297598px;}
.yb4_c00156{bottom:227.906898px;}
.yb5_c00156{bottom:228.824682px;}
.y18_c00156{bottom:242.619000px;}
.ya9_c00156{bottom:243.250341px;}
.yaa_c00156{bottom:244.057998px;}
.yab_c00156{bottom:244.590258px;}
.yac_c00156{bottom:245.296833px;}
.yad_c00156{bottom:245.715201px;}
.yae_c00156{bottom:245.954880px;}
.yaf_c00156{bottom:246.804183px;}
.y25_c00156{bottom:260.502000px;}
.ya3_c00156{bottom:261.612033px;}
.ya4_c00156{bottom:262.312650px;}
.ya5_c00156{bottom:263.289213px;}
.ya6_c00156{bottom:263.774640px;}
.ya7_c00156{bottom:264.119805px;}
.ya8_c00156{bottom:264.975855px;}
.y17_c00156{bottom:277.020000px;}
.y9c_c00156{bottom:279.703731px;}
.y9d_c00156{bottom:280.132248px;}
.y9e_c00156{bottom:280.423305px;}
.y9f_c00156{bottom:281.155362px;}
.ya0_c00156{bottom:281.393745px;}
.ya1_c00156{bottom:281.987724px;}
.ya2_c00156{bottom:282.705921px;}
.y24_c00156{bottom:296.173500px;}
.y94_c00156{bottom:297.262203px;}
.y95_c00156{bottom:297.811323px;}
.y96_c00156{bottom:298.059141px;}
.y97_c00156{bottom:298.659882px;}
.y98_c00156{bottom:299.040870px;}
.y99_c00156{bottom:299.600628px;}
.y9a_c00156{bottom:300.155445px;}
.y9b_c00156{bottom:300.761289px;}
.y23_c00156{bottom:313.593000px;}
.y8d_c00156{bottom:315.354567px;}
.y8e_c00156{bottom:316.321734px;}
.y8f_c00156{bottom:316.913649px;}
.y90_c00156{bottom:317.570382px;}
.y91_c00156{bottom:318.132141px;}
.y92_c00156{bottom:318.516006px;}
.y93_c00156{bottom:318.750540px;}
.y22_c00156{bottom:331.261500px;}
.y82_c00156{bottom:332.907708px;}
.y83_c00156{bottom:333.140502px;}
.y84_c00156{bottom:333.317703px;}
.y85_c00156{bottom:333.598314px;}
.y86_c00156{bottom:333.894720px;}
.y87_c00156{bottom:334.337088px;}
.y88_c00156{bottom:334.881489px;}
.y89_c00156{bottom:335.512479px;}
.y8a_c00156{bottom:335.756586px;}
.y8b_c00156{bottom:336.252063px;}
.y8c_c00156{bottom:336.640971px;}
.y16_c00156{bottom:349.206000px;}
.y79_c00156{bottom:350.186853px;}
.y7a_c00156{bottom:350.296737px;}
.y7b_c00156{bottom:351.218544px;}
.y7c_c00156{bottom:351.430077px;}
.y7d_c00156{bottom:351.986460px;}
.y7e_c00156{bottom:352.865946px;}
.y7f_c00156{bottom:353.183907px;}
.y80_c00156{bottom:353.826456px;}
.y81_c00156{bottom:354.059952px;}
.y15_c00156{bottom:366.898500px;}
.y71_c00156{bottom:368.553000px;}
.y72_c00156{bottom:368.873544px;}
.y73_c00156{bottom:369.150510px;}
.y74_c00156{bottom:369.432336px;}
.y75_c00156{bottom:369.908805px;}
.y76_c00156{bottom:370.462764px;}
.y77_c00156{bottom:371.143407px;}
.y78_c00156{bottom:372.071856px;}
.y21_c00156{bottom:425.502000px;}
.y69_c00156{bottom:450.630225px;}
.y6a_c00156{bottom:450.849675px;}
.y6b_c00156{bottom:451.326660px;}
.y6c_c00156{bottom:452.188650px;}
.y6d_c00156{bottom:453.121545px;}
.y6e_c00156{bottom:453.448845px;}
.y6f_c00156{bottom:453.918375px;}
.y70_c00156{bottom:454.223160px;}
.y68_c00156{bottom:476.130450px;}
.y67_c00156{bottom:476.130495px;}
.y14_c00156{bottom:476.404500px;}
.y5d_c00156{bottom:496.801500px;}
.y5e_c00156{bottom:497.344275px;}
.y5f_c00156{bottom:497.708790px;}
.y60_c00156{bottom:498.132720px;}
.y61_c00156{bottom:498.227265px;}
.y62_c00156{bottom:498.572385px;}
.y63_c00156{bottom:499.004370px;}
.y64_c00156{bottom:499.245090px;}
.y65_c00156{bottom:499.576845px;}
.y66_c00156{bottom:500.006685px;}
.y11_c00156{bottom:518.667892px;}
.y12_c00156{bottom:520.271271px;}
.y13_c00156{bottom:521.909346px;}
.y5c_c00156{bottom:522.421500px;}
.y52_c00156{bottom:541.083000px;}
.y53_c00156{bottom:541.475085px;}
.y54_c00156{bottom:541.869172px;}
.y55_c00156{bottom:542.655210px;}
.y56_c00156{bottom:543.242325px;}
.y57_c00156{bottom:543.626850px;}
.y58_c00156{bottom:543.930758px;}
.y59_c00156{bottom:544.497757px;}
.y5a_c00156{bottom:545.165985px;}
.y5b_c00156{bottom:545.939692px;}
.yd_c00156{bottom:564.304500px;}
.ye_c00156{bottom:565.331665px;}
.yf_c00156{bottom:565.989336px;}
.y10_c00156{bottom:566.870565px;}
.y51_c00156{bottom:567.954000px;}
.y50_c00156{bottom:590.616000px;}
.y4e_c00156{bottom:634.120500px;}
.y4f_c00156{bottom:640.980000px;}
.y1f_c00156{bottom:655.569000px;}
.y4d_c00156{bottom:657.187500px;}
.y20_c00156{bottom:669.736500px;}
.y9_c00156{bottom:674.726353px;}
.ya_c00156{bottom:676.187520px;}
.yb_c00156{bottom:676.734708px;}
.yc_c00156{bottom:677.637724px;}
.y4c_c00156{bottom:680.553000px;}
.y5_c00156{bottom:697.411899px;}
.y6_c00156{bottom:698.422683px;}
.y7_c00156{bottom:699.911473px;}
.y8_c00156{bottom:701.378910px;}
.y4b_c00156{bottom:703.195500px;}
.yc7_c00156{bottom:709.420500px;}
.y1_c00156{bottom:720.364500px;}
.y2_c00156{bottom:722.089234px;}
.yc6_c00156{bottom:722.790000px;}
.y3_c00156{bottom:723.211907px;}
.y4_c00156{bottom:723.576279px;}
.y4a_c00156{bottom:725.751000px;}
.y44_c00156{bottom:743.034171px;}
.y45_c00156{bottom:744.860688px;}
.yc5_c00156{bottom:746.010000px;}
.y46_c00156{bottom:746.453685px;}
.y47_c00156{bottom:746.932281px;}
.y48_c00156{bottom:748.558302px;}
.y49_c00156{bottom:748.996461px;}
.y3b_c00156{bottom:766.255965px;}
.y3c_c00156{bottom:766.819995px;}
.y3d_c00156{bottom:767.553990px;}
.y3e_c00156{bottom:768.233499px;}
.y3f_c00156{bottom:769.215057px;}
.y40_c00156{bottom:769.647516px;}
.y41_c00156{bottom:770.435052px;}
.y42_c00156{bottom:771.067446px;}
.y43_c00156{bottom:771.861327px;}
.yc4_c00156{bottom:776.790000px;}
.y34_c00156{bottom:788.402802px;}
.y35_c00156{bottom:789.017523px;}
.y36_c00156{bottom:789.478014px;}
.y37_c00156{bottom:790.801572px;}
.y38_c00156{bottom:791.763507px;}
.y39_c00156{bottom:792.276780px;}
.y3a_c00156{bottom:793.272054px;}
.y2b_c00156{bottom:811.624500px;}
.y2c_c00156{bottom:812.309571px;}
.y2d_c00156{bottom:812.578923px;}
.y2e_c00156{bottom:813.073077px;}
.y2f_c00156{bottom:813.700179px;}
.y30_c00156{bottom:814.512879px;}
.y31_c00156{bottom:815.328792px;}
.y32_c00156{bottom:816.655626px;}
.y33_c00156{bottom:817.287939px;}
.y2a_c00156{bottom:835.650000px;}
.y27_c00156{bottom:880.746000px;}
.y28_c00156{bottom:884.343795px;}
.y29_c00156{bottom:885.688537px;}
.h1c_c00156{height:27.300000px;}
.h29_c00156{height:31.500000px;}
.h28_c00156{height:36.750000px;}
.ha_c00156{height:44.100000px;}
.hb_c00156{height:48.300000px;}
.h22_c00156{height:48.307824px;}
.h23_c00156{height:49.357994px;}
.h9_c00156{height:50.400000px;}
.h11_c00156{height:51.450000px;}
.h25_c00156{height:51.458334px;}
.h21_c00156{height:52.508504px;}
.hc_c00156{height:53.550000px;}
.h26_c00156{height:53.558674px;}
.hd_c00156{height:54.589188px;}
.h24_c00156{height:54.608844px;}
.h8_c00156{height:55.650000px;}
.h1e_c00156{height:58.800000px;}
.h17_c00156{height:58.809525px;}
.h12_c00156{height:59.850000px;}
.h10_c00156{height:64.050000px;}
.h7_c00156{height:66.150000px;}
.h6_c00156{height:66.159558px;}
.h19_c00156{height:67.200000px;}
.hf_c00156{height:68.250000px;}
.h18_c00156{height:69.300000px;}
.h2_c00156{height:69.312508px;}
.he_c00156{height:70.350000px;}
.h1f_c00156{height:70.353517px;}
.h5_c00156{height:70.360165px;}
.h20_c00156{height:71.403570px;}
.h15_c00156{height:71.411566px;}
.h14_c00156{height:71.420560px;}
.h4_c00156{height:72.463076px;}
.h1a_c00156{height:73.500000px;}
.h1d_c00156{height:73.508268px;}
.h16_c00156{height:74.562076px;}
.h3_c00156{height:74.563455px;}
.h2a_c00156{height:75.600000px;}
.h1b_c00156{height:79.800000px;}
.h27_c00156{height:91.364798px;}
.h13_c00156{height:107.115475px;}
.h1_c00156{height:1005.000000px;}
.h0_c00156{height:1005.150000px;}
.w0_c00156{width:705.450000px;}
.w1_c00156{width:705.750000px;}
.x0_c00156{left:0.000000px;}
.x13_c00156{left:92.610000px;}
.x1b_c00156{left:97.470000px;}
.x31_c00156{left:102.435000px;}
.x14_c00156{left:106.380000px;}
.x21_c00156{left:107.730000px;}
.x4e_c00156{left:109.080000px;}
.x2b_c00156{left:110.160000px;}
.x48_c00156{left:120.690000px;}
.x56_c00156{left:124.963500px;}
.x41_c00156{left:126.900000px;}
.x22_c00156{left:128.250000px;}
.x1c_c00156{left:132.030000px;}
.x28_c00156{left:133.650000px;}
.x5_c00156{left:135.308066px;}
.x1_c00156{left:136.351500px;}
.x63_c00156{left:137.711355px;}
.xb_c00156{left:139.014000px;}
.x84_c00156{left:141.102480px;}
.x49_c00156{left:143.370000px;}
.x15_c00156{left:145.260000px;}
.x3e_c00156{left:146.880000px;}
.x4f_c00156{left:147.960000px;}
.x42_c00156{left:149.580000px;}
.x33_c00156{left:153.900000px;}
.x32_c00156{left:154.922814px;}
.x4a_c00156{left:160.380000px;}
.x57_c00156{left:163.023000px;}
.x2c_c00156{left:164.430000px;}
.x3a_c00156{left:166.590000px;}
.x23_c00156{left:169.290000px;}
.x1d_c00156{left:178.740000px;}
.x6_c00156{left:181.241444px;}
.x16_c00156{left:183.870000px;}
.x3b_c00156{left:186.300000px;}
.x43_c00156{left:190.350000px;}
.x7b_c00156{left:191.652000px;}
.x2d_c00156{left:195.210000px;}
.x4b_c00156{left:196.560000px;}
.x44_c00156{left:197.910000px;}
.xc_c00156{left:199.435500px;}
.x24_c00156{left:201.150000px;}
.x9_c00156{left:202.794537px;}
.x58_c00156{left:205.440000px;}
.x17_c00156{left:206.550000px;}
.x36_c00156{left:209.520000px;}
.x1e_c00156{left:217.350000px;}
.x2e_c00156{left:220.860000px;}
.x4c_c00156{left:222.480000px;}
.x80_c00156{left:223.696500px;}
.x18_c00156{left:225.990000px;}
.x2_c00156{left:227.127000px;}
.xf_c00156{left:228.951333px;}
.x25_c00156{left:232.740000px;}
.x50_c00156{left:235.440000px;}
.xd_c00156{left:238.122000px;}
.x59_c00156{left:240.279000px;}
.x3c_c00156{left:241.380000px;}
.x37_c00156{left:242.460000px;}
.x7c_c00156{left:244.054500px;}
.x5e_c00156{left:245.088693px;}
.x7_c00156{left:248.937096px;}
.x29_c00156{left:250.020000px;}
.x4d_c00156{left:254.070000px;}
.x1f_c00156{left:255.150000px;}
.x55_c00156{left:260.128500px;}
.x51_c00156{left:262.710000px;}
.x34_c00156{left:263.790000px;}
.x11_c00156{left:264.870000px;}
.x81_c00156{left:266.089500px;}
.x38_c00156{left:267.300000px;}
.xa_c00156{left:268.696275px;}
.x26_c00156{left:270.000000px;}
.x3f_c00156{left:272.970000px;}
.x82_c00156{left:275.544000px;}
.x2f_c00156{left:277.020000px;}
.x19_c00156{left:278.640000px;}
.x2a_c00156{left:282.150000px;}
.x45_c00156{left:283.500000px;}
.x3_c00156{left:286.215000px;}
.xe_c00156{left:289.959000px;}
.x27_c00156{left:294.030000px;}
.x12_c00156{left:299.430000px;}
.x46_c00156{left:304.290000px;}
.x4_c00156{left:305.392500px;}
.x64_c00156{left:308.678199px;}
.x1a_c00156{left:310.230000px;}
.x39_c00156{left:312.120000px;}
.x20_c00156{left:313.470000px;}
.x8_c00156{left:315.666806px;}
.x30_c00156{left:316.710000px;}
.x3d_c00156{left:317.790000px;}
.x52_c00156{left:318.870000px;}
.x10_c00156{left:319.924777px;}
.x5f_c00156{left:323.645193px;}
.x7d_c00156{left:329.091000px;}
.x5a_c00156{left:330.757500px;}
.x65_c00156{left:332.599335px;}
.x35_c00156{left:335.610000px;}
.x40_c00156{left:338.040000px;}
.x47_c00156{left:340.200000px;}
.x68_c00156{left:341.280000px;}
.x6c_c00156{left:343.440000px;}
.x6f_c00156{left:345.060000px;}
.x5d_c00156{left:348.119016px;}
.x73_c00156{left:352.620000px;}
.x9c_c00156{left:353.646369px;}
.x92_c00156{left:355.728132px;}
.xac_c00156{left:356.839518px;}
.x75_c00156{left:360.180000px;}
.x70_c00156{left:366.390000px;}
.x60_c00156{left:367.397193px;}
.x93_c00156{left:368.661132px;}
.x7a_c00156{left:370.710000px;}
.x85_c00156{left:376.009785px;}
.x74_c00156{left:378.000000px;}
.x7f_c00156{left:383.400000px;}
.x87_c00156{left:385.192500px;}
.x69_c00156{left:386.370000px;}
.x71_c00156{left:393.660000px;}
.x53_c00156{left:396.133500px;}
.xa2_c00156{left:399.231522px;}
.x6d_c00156{left:401.490000px;}
.x61_c00156{left:402.530193px;}
.x5b_c00156{left:404.470500px;}
.x8c_c00156{left:406.517094px;}
.x98_c00156{left:407.850465px;}
.x7e_c00156{left:411.439500px;}
.x66_c00156{left:413.930919px;}
.x86_c00156{left:415.162005px;}
.x88_c00156{left:416.236500px;}
.x79_c00156{left:419.850000px;}
.x6a_c00156{left:423.360000px;}
.x76_c00156{left:426.870000px;}
.xa8_c00156{left:431.471412px;}
.xa4_c00156{left:434.067705px;}
.x67_c00156{left:435.855636px;}
.x5c_c00156{left:439.599000px;}
.x77_c00156{left:443.340000px;}
.x99_c00156{left:444.819288px;}
.x62_c00156{left:446.634693px;}
.xad_c00156{left:449.175018px;}
.x8d_c00156{left:451.679904px;}
.x83_c00156{left:453.486000px;}
.x78_c00156{left:454.680000px;}
.x9d_c00156{left:458.379786px;}
.x72_c00156{left:460.080000px;}
.x6e_c00156{left:462.780000px;}
.x94_c00156{left:465.382632px;}
.xae_c00156{left:470.541018px;}
.x89_c00156{left:473.482500px;}
.x54_c00156{left:475.236000px;}
.xa9_c00156{left:476.838600px;}
.xa6_c00156{left:478.362255px;}
.x6b_c00156{left:486.810000px;}
.x9e_c00156{left:491.311380px;}
.xaf_c00156{left:492.948018px;}
.xaa_c00156{left:497.632323px;}
.x95_c00156{left:500.437632px;}
.x8e_c00156{left:503.457849px;}
.xab_c00156{left:509.784765px;}
.x8a_c00156{left:511.296000px;}
.x96_c00156{left:513.999132px;}
.xa0_c00156{left:518.559135px;}
.x9a_c00156{left:521.016042px;}
.x8f_c00156{left:522.122673px;}
.x9f_c00156{left:523.968474px;}
.xa7_c00156{left:532.351227px;}
.x97_c00156{left:541.525632px;}
.x9b_c00156{left:545.009406px;}
.x90_c00156{left:559.903848px;}
.x8b_c00156{left:562.876500px;}
.xa5_c00156{left:564.232527px;}
.xa3_c00156{left:565.609989px;}
.xa1_c00156{left:569.879334px;}
.x91_c00156{left:573.626091px;}
.xb3_c00156{left:605.070000px;}
.xb2_c00156{left:607.770000px;}
.xb0_c00156{left:610.470000px;}
.xb1_c00156{left:620.460000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.fs1a_c00156{font-size:24.266667pt;}
.fs27_c00156{font-size:28.000000pt;}
.fs26_c00156{font-size:32.666667pt;}
.fs8_c00156{font-size:39.200000pt;}
.fs9_c00156{font-size:42.933333pt;}
.fs20_c00156{font-size:42.940288pt;}
.fs21_c00156{font-size:43.873772pt;}
.fs7_c00156{font-size:44.800000pt;}
.fsf_c00156{font-size:45.733333pt;}
.fs23_c00156{font-size:45.740742pt;}
.fs1f_c00156{font-size:46.674226pt;}
.fsa_c00156{font-size:47.600000pt;}
.fs24_c00156{font-size:47.607711pt;}
.fsb_c00156{font-size:48.523723pt;}
.fs22_c00156{font-size:48.541195pt;}
.fs6_c00156{font-size:49.466667pt;}
.fs1c_c00156{font-size:52.266667pt;}
.fs15_c00156{font-size:52.275133pt;}
.fs10_c00156{font-size:53.200000pt;}
.fse_c00156{font-size:56.933333pt;}
.fs5_c00156{font-size:58.800000pt;}
.fs4_c00156{font-size:58.808496pt;}
.fs17_c00156{font-size:59.733333pt;}
.fsd_c00156{font-size:60.666667pt;}
.fs16_c00156{font-size:61.600000pt;}
.fs0_c00156{font-size:61.611118pt;}
.fsc_c00156{font-size:62.533333pt;}
.fs1d_c00156{font-size:62.536460pt;}
.fs3_c00156{font-size:62.542369pt;}
.fs1e_c00156{font-size:63.469840pt;}
.fs13_c00156{font-size:63.476947pt;}
.fs12_c00156{font-size:63.484942pt;}
.fs2_c00156{font-size:64.411623pt;}
.fs18_c00156{font-size:65.333333pt;}
.fs1b_c00156{font-size:65.340683pt;}
.fs14_c00156{font-size:66.277401pt;}
.fs1_c00156{font-size:66.278627pt;}
.fs28_c00156{font-size:67.200000pt;}
.fs19_c00156{font-size:70.933333pt;}
.fs25_c00156{font-size:81.213153pt;}
.fs11_c00156{font-size:95.213755pt;}
.y0_c00156{bottom:0.000000pt;}
.y1e_c00156{bottom:132.618667pt;}
.y1b_c00156{bottom:148.834667pt;}
.y1c_c00156{bottom:150.654427pt;}
.y1d_c00156{bottom:151.639627pt;}
.y26_c00156{bottom:168.241333pt;}
.ybd_c00156{bottom:168.937277pt;}
.ybe_c00156{bottom:169.240181pt;}
.ybf_c00156{bottom:170.017589pt;}
.yc0_c00156{bottom:170.414645pt;}
.yc1_c00156{bottom:170.756501pt;}
.yc2_c00156{bottom:171.115013pt;}
.yc3_c00156{bottom:171.374477pt;}
.yb6_c00156{bottom:182.238992pt;}
.yb7_c00156{bottom:182.239144pt;}
.yb8_c00156{bottom:182.239309pt;}
.yb9_c00156{bottom:182.239616pt;}
.ybb_c00156{bottom:182.239917pt;}
.yba_c00156{bottom:182.240208pt;}
.ybc_c00156{bottom:182.240520pt;}
.y1a_c00156{bottom:184.537333pt;}
.y19_c00156{bottom:200.198667pt;}
.yb0_c00156{bottom:200.621040pt;}
.yb1_c00156{bottom:201.346781pt;}
.yb2_c00156{bottom:201.758885pt;}
.yb3_c00156{bottom:202.042309pt;}
.yb4_c00156{bottom:202.583909pt;}
.yb5_c00156{bottom:203.399717pt;}
.y18_c00156{bottom:215.661333pt;}
.ya9_c00156{bottom:216.222525pt;}
.yaa_c00156{bottom:216.940443pt;}
.yab_c00156{bottom:217.413563pt;}
.yac_c00156{bottom:218.041629pt;}
.yad_c00156{bottom:218.413512pt;}
.yae_c00156{bottom:218.626560pt;}
.yaf_c00156{bottom:219.381496pt;}
.y25_c00156{bottom:231.557333pt;}
.ya3_c00156{bottom:232.544029pt;}
.ya4_c00156{bottom:233.166800pt;}
.ya5_c00156{bottom:234.034856pt;}
.ya6_c00156{bottom:234.466347pt;}
.ya7_c00156{bottom:234.773160pt;}
.ya8_c00156{bottom:235.534093pt;}
.y17_c00156{bottom:246.240000pt;}
.y9c_c00156{bottom:248.625539pt;}
.y9d_c00156{bottom:249.006443pt;}
.y9e_c00156{bottom:249.265160pt;}
.y9f_c00156{bottom:249.915877pt;}
.ya0_c00156{bottom:250.127773pt;}
.ya1_c00156{bottom:250.655755pt;}
.ya2_c00156{bottom:251.294152pt;}
.y24_c00156{bottom:263.265333pt;}
.y94_c00156{bottom:264.233069pt;}
.y95_c00156{bottom:264.721176pt;}
.y96_c00156{bottom:264.941459pt;}
.y97_c00156{bottom:265.475451pt;}
.y98_c00156{bottom:265.814107pt;}
.y99_c00156{bottom:266.311669pt;}
.y9a_c00156{bottom:266.804840pt;}
.y9b_c00156{bottom:267.343368pt;}
.y23_c00156{bottom:278.749333pt;}
.y8d_c00156{bottom:280.315171pt;}
.y8e_c00156{bottom:281.174875pt;}
.y8f_c00156{bottom:281.701021pt;}
.y90_c00156{bottom:282.284784pt;}
.y91_c00156{bottom:282.784125pt;}
.y92_c00156{bottom:283.125339pt;}
.y93_c00156{bottom:283.333813pt;}
.y22_c00156{bottom:294.454667pt;}
.y82_c00156{bottom:295.917963pt;}
.y83_c00156{bottom:296.124891pt;}
.y84_c00156{bottom:296.282403pt;}
.y85_c00156{bottom:296.531835pt;}
.y86_c00156{bottom:296.795307pt;}
.y87_c00156{bottom:297.188523pt;}
.y88_c00156{bottom:297.672435pt;}
.y89_c00156{bottom:298.233315pt;}
.y8a_c00156{bottom:298.450299pt;}
.y8b_c00156{bottom:298.890723pt;}
.y8c_c00156{bottom:299.236419pt;}
.y16_c00156{bottom:310.405333pt;}
.y79_c00156{bottom:311.277203pt;}
.y7a_c00156{bottom:311.374877pt;}
.y7b_c00156{bottom:312.194261pt;}
.y7c_c00156{bottom:312.382291pt;}
.y7d_c00156{bottom:312.876853pt;}
.y7e_c00156{bottom:313.658619pt;}
.y7f_c00156{bottom:313.941251pt;}
.y80_c00156{bottom:314.512405pt;}
.y81_c00156{bottom:314.719957pt;}
.y15_c00156{bottom:326.132000pt;}
.y71_c00156{bottom:327.602667pt;}
.y72_c00156{bottom:327.887595pt;}
.y73_c00156{bottom:328.133787pt;}
.y74_c00156{bottom:328.384299pt;}
.y75_c00156{bottom:328.807827pt;}
.y76_c00156{bottom:329.300235pt;}
.y77_c00156{bottom:329.905251pt;}
.y78_c00156{bottom:330.730539pt;}
.y21_c00156{bottom:378.224000pt;}
.y69_c00156{bottom:400.560200pt;}
.y6a_c00156{bottom:400.755267pt;}
.y6b_c00156{bottom:401.179253pt;}
.y6c_c00156{bottom:401.945467pt;}
.y6d_c00156{bottom:402.774707pt;}
.y6e_c00156{bottom:403.065640pt;}
.y6f_c00156{bottom:403.483000pt;}
.y70_c00156{bottom:403.753920pt;}
.y68_c00156{bottom:423.227067pt;}
.y67_c00156{bottom:423.227107pt;}
.y14_c00156{bottom:423.470667pt;}
.y5d_c00156{bottom:441.601333pt;}
.y5e_c00156{bottom:442.083800pt;}
.y5f_c00156{bottom:442.407813pt;}
.y60_c00156{bottom:442.784640pt;}
.y61_c00156{bottom:442.868680pt;}
.y62_c00156{bottom:443.175453pt;}
.y63_c00156{bottom:443.559440pt;}
.y64_c00156{bottom:443.773413pt;}
.y65_c00156{bottom:444.068307pt;}
.y66_c00156{bottom:444.450387pt;}
.y11_c00156{bottom:461.038127pt;}
.y12_c00156{bottom:462.463352pt;}
.y13_c00156{bottom:463.919419pt;}
.y5c_c00156{bottom:464.374667pt;}
.y52_c00156{bottom:480.962667pt;}
.y53_c00156{bottom:481.311187pt;}
.y54_c00156{bottom:481.661487pt;}
.y55_c00156{bottom:482.360187pt;}
.y56_c00156{bottom:482.882067pt;}
.y57_c00156{bottom:483.223867pt;}
.y58_c00156{bottom:483.494007pt;}
.y59_c00156{bottom:483.998007pt;}
.y5a_c00156{bottom:484.591987pt;}
.y5b_c00156{bottom:485.279727pt;}
.yd_c00156{bottom:501.604000pt;}
.ye_c00156{bottom:502.517036pt;}
.yf_c00156{bottom:503.101632pt;}
.y10_c00156{bottom:503.884947pt;}
.y51_c00156{bottom:504.848000pt;}
.y50_c00156{bottom:524.992000pt;}
.y4e_c00156{bottom:563.662667pt;}
.y4f_c00156{bottom:569.760000pt;}
.y1f_c00156{bottom:582.728000pt;}
.y4d_c00156{bottom:584.166667pt;}
.y20_c00156{bottom:595.321333pt;}
.y9_c00156{bottom:599.756759pt;}
.ya_c00156{bottom:601.055573pt;}
.yb_c00156{bottom:601.541963pt;}
.yc_c00156{bottom:602.344644pt;}
.y4c_c00156{bottom:604.936000pt;}
.y5_c00156{bottom:619.921688pt;}
.y6_c00156{bottom:620.820163pt;}
.y7_c00156{bottom:622.143532pt;}
.y8_c00156{bottom:623.447920pt;}
.y4b_c00156{bottom:625.062667pt;}
.yc7_c00156{bottom:630.596000pt;}
.y1_c00156{bottom:640.324000pt;}
.y2_c00156{bottom:641.857097pt;}
.yc6_c00156{bottom:642.480000pt;}
.y3_c00156{bottom:642.855028pt;}
.y4_c00156{bottom:643.178915pt;}
.y4a_c00156{bottom:645.112000pt;}
.y44_c00156{bottom:660.474819pt;}
.y45_c00156{bottom:662.098389pt;}
.yc5_c00156{bottom:663.120000pt;}
.y46_c00156{bottom:663.514387pt;}
.y47_c00156{bottom:663.939805pt;}
.y48_c00156{bottom:665.385157pt;}
.y49_c00156{bottom:665.774632pt;}
.y3b_c00156{bottom:681.116413pt;}
.y3c_c00156{bottom:681.617773pt;}
.y3d_c00156{bottom:682.270213pt;}
.y3e_c00156{bottom:682.874221pt;}
.y3f_c00156{bottom:683.746717pt;}
.y40_c00156{bottom:684.131125pt;}
.y41_c00156{bottom:684.831157pt;}
.y42_c00156{bottom:685.393285pt;}
.y43_c00156{bottom:686.098957pt;}
.yc4_c00156{bottom:690.480000pt;}
.y34_c00156{bottom:700.802491pt;}
.y35_c00156{bottom:701.348909pt;}
.y36_c00156{bottom:701.758235pt;}
.y37_c00156{bottom:702.934731pt;}
.y38_c00156{bottom:703.789784pt;}
.y39_c00156{bottom:704.246027pt;}
.y3a_c00156{bottom:705.130715pt;}
.y2b_c00156{bottom:721.444000pt;}
.y2c_c00156{bottom:722.052952pt;}
.y2d_c00156{bottom:722.292376pt;}
.y2e_c00156{bottom:722.731624pt;}
.y2f_c00156{bottom:723.289048pt;}
.y30_c00156{bottom:724.011448pt;}
.y31_c00156{bottom:724.736704pt;}
.y32_c00156{bottom:725.916112pt;}
.y33_c00156{bottom:726.478168pt;}
.y2a_c00156{bottom:742.800000pt;}
.y27_c00156{bottom:782.885333pt;}
.y28_c00156{bottom:786.083373pt;}
.y29_c00156{bottom:787.278700pt;}
.h1c_c00156{height:24.266667pt;}
.h29_c00156{height:28.000000pt;}
.h28_c00156{height:32.666667pt;}
.ha_c00156{height:39.200000pt;}
.hb_c00156{height:42.933333pt;}
.h22_c00156{height:42.940288pt;}
.h23_c00156{height:43.873772pt;}
.h9_c00156{height:44.800000pt;}
.h11_c00156{height:45.733333pt;}
.h25_c00156{height:45.740742pt;}
.h21_c00156{height:46.674226pt;}
.hc_c00156{height:47.600000pt;}
.h26_c00156{height:47.607711pt;}
.hd_c00156{height:48.523723pt;}
.h24_c00156{height:48.541195pt;}
.h8_c00156{height:49.466667pt;}
.h1e_c00156{height:52.266667pt;}
.h17_c00156{height:52.275133pt;}
.h12_c00156{height:53.200000pt;}
.h10_c00156{height:56.933333pt;}
.h7_c00156{height:58.800000pt;}
.h6_c00156{height:58.808496pt;}
.h19_c00156{height:59.733333pt;}
.hf_c00156{height:60.666667pt;}
.h18_c00156{height:61.600000pt;}
.h2_c00156{height:61.611118pt;}
.he_c00156{height:62.533333pt;}
.h1f_c00156{height:62.536460pt;}
.h5_c00156{height:62.542369pt;}
.h20_c00156{height:63.469840pt;}
.h15_c00156{height:63.476947pt;}
.h14_c00156{height:63.484942pt;}
.h4_c00156{height:64.411623pt;}
.h1a_c00156{height:65.333333pt;}
.h1d_c00156{height:65.340683pt;}
.h16_c00156{height:66.277401pt;}
.h3_c00156{height:66.278627pt;}
.h2a_c00156{height:67.200000pt;}
.h1b_c00156{height:70.933333pt;}
.h27_c00156{height:81.213153pt;}
.h13_c00156{height:95.213755pt;}
.h1_c00156{height:893.333333pt;}
.h0_c00156{height:893.466667pt;}
.w0_c00156{width:627.066667pt;}
.w1_c00156{width:627.333333pt;}
.x0_c00156{left:0.000000pt;}
.x13_c00156{left:82.320000pt;}
.x1b_c00156{left:86.640000pt;}
.x31_c00156{left:91.053333pt;}
.x14_c00156{left:94.560000pt;}
.x21_c00156{left:95.760000pt;}
.x4e_c00156{left:96.960000pt;}
.x2b_c00156{left:97.920000pt;}
.x48_c00156{left:107.280000pt;}
.x56_c00156{left:111.078667pt;}
.x41_c00156{left:112.800000pt;}
.x22_c00156{left:114.000000pt;}
.x1c_c00156{left:117.360000pt;}
.x28_c00156{left:118.800000pt;}
.x5_c00156{left:120.273836pt;}
.x1_c00156{left:121.201333pt;}
.x63_c00156{left:122.410093pt;}
.xb_c00156{left:123.568000pt;}
.x84_c00156{left:125.424427pt;}
.x49_c00156{left:127.440000pt;}
.x15_c00156{left:129.120000pt;}
.x3e_c00156{left:130.560000pt;}
.x4f_c00156{left:131.520000pt;}
.x42_c00156{left:132.960000pt;}
.x33_c00156{left:136.800000pt;}
.x32_c00156{left:137.709168pt;}
.x4a_c00156{left:142.560000pt;}
.x57_c00156{left:144.909333pt;}
.x2c_c00156{left:146.160000pt;}
.x3a_c00156{left:148.080000pt;}
.x23_c00156{left:150.480000pt;}
.x1d_c00156{left:158.880000pt;}
.x6_c00156{left:161.103505pt;}
.x16_c00156{left:163.440000pt;}
.x3b_c00156{left:165.600000pt;}
.x43_c00156{left:169.200000pt;}
.x7b_c00156{left:170.357333pt;}
.x2d_c00156{left:173.520000pt;}
.x4b_c00156{left:174.720000pt;}
.x44_c00156{left:175.920000pt;}
.xc_c00156{left:177.276000pt;}
.x24_c00156{left:178.800000pt;}
.x9_c00156{left:180.261811pt;}
.x58_c00156{left:182.613333pt;}
.x17_c00156{left:183.600000pt;}
.x36_c00156{left:186.240000pt;}
.x1e_c00156{left:193.200000pt;}
.x2e_c00156{left:196.320000pt;}
.x4c_c00156{left:197.760000pt;}
.x80_c00156{left:198.841333pt;}
.x18_c00156{left:200.880000pt;}
.x2_c00156{left:201.890667pt;}
.xf_c00156{left:203.512296pt;}
.x25_c00156{left:206.880000pt;}
.x50_c00156{left:209.280000pt;}
.xd_c00156{left:211.664000pt;}
.x59_c00156{left:213.581333pt;}
.x3c_c00156{left:214.560000pt;}
.x37_c00156{left:215.520000pt;}
.x7c_c00156{left:216.937333pt;}
.x5e_c00156{left:217.856616pt;}
.x7_c00156{left:221.277419pt;}
.x29_c00156{left:222.240000pt;}
.x4d_c00156{left:225.840000pt;}
.x1f_c00156{left:226.800000pt;}
.x55_c00156{left:231.225333pt;}
.x51_c00156{left:233.520000pt;}
.x34_c00156{left:234.480000pt;}
.x11_c00156{left:235.440000pt;}
.x81_c00156{left:236.524000pt;}
.x38_c00156{left:237.600000pt;}
.xa_c00156{left:238.841133pt;}
.x26_c00156{left:240.000000pt;}
.x3f_c00156{left:242.640000pt;}
.x82_c00156{left:244.928000pt;}
.x2f_c00156{left:246.240000pt;}
.x19_c00156{left:247.680000pt;}
.x2a_c00156{left:250.800000pt;}
.x45_c00156{left:252.000000pt;}
.x3_c00156{left:254.413333pt;}
.xe_c00156{left:257.741333pt;}
.x27_c00156{left:261.360000pt;}
.x12_c00156{left:266.160000pt;}
.x46_c00156{left:270.480000pt;}
.x4_c00156{left:271.460000pt;}
.x64_c00156{left:274.380621pt;}
.x1a_c00156{left:275.760000pt;}
.x39_c00156{left:277.440000pt;}
.x20_c00156{left:278.640000pt;}
.x8_c00156{left:280.592716pt;}
.x30_c00156{left:281.520000pt;}
.x3d_c00156{left:282.480000pt;}
.x52_c00156{left:283.440000pt;}
.x10_c00156{left:284.377580pt;}
.x5f_c00156{left:287.684616pt;}
.x7d_c00156{left:292.525333pt;}
.x5a_c00156{left:294.006667pt;}
.x65_c00156{left:295.643853pt;}
.x35_c00156{left:298.320000pt;}
.x40_c00156{left:300.480000pt;}
.x47_c00156{left:302.400000pt;}
.x68_c00156{left:303.360000pt;}
.x6c_c00156{left:305.280000pt;}
.x6f_c00156{left:306.720000pt;}
.x5d_c00156{left:309.439125pt;}
.x73_c00156{left:313.440000pt;}
.x9c_c00156{left:314.352328pt;}
.x92_c00156{left:316.202784pt;}
.xac_c00156{left:317.190683pt;}
.x75_c00156{left:320.160000pt;}
.x70_c00156{left:325.680000pt;}
.x60_c00156{left:326.575283pt;}
.x93_c00156{left:327.698784pt;}
.x7a_c00156{left:329.520000pt;}
.x85_c00156{left:334.230920pt;}
.x74_c00156{left:336.000000pt;}
.x7f_c00156{left:340.800000pt;}
.x87_c00156{left:342.393333pt;}
.x69_c00156{left:343.440000pt;}
.x71_c00156{left:349.920000pt;}
.x53_c00156{left:352.118667pt;}
.xa2_c00156{left:354.872464pt;}
.x6d_c00156{left:356.880000pt;}
.x61_c00156{left:357.804616pt;}
.x5b_c00156{left:359.529333pt;}
.x8c_c00156{left:361.348528pt;}
.x98_c00156{left:362.533747pt;}
.x7e_c00156{left:365.724000pt;}
.x66_c00156{left:367.938595pt;}
.x86_c00156{left:369.032893pt;}
.x88_c00156{left:369.988000pt;}
.x79_c00156{left:373.200000pt;}
.x6a_c00156{left:376.320000pt;}
.x76_c00156{left:379.440000pt;}
.xa8_c00156{left:383.530144pt;}
.xa4_c00156{left:385.837960pt;}
.x67_c00156{left:387.427232pt;}
.x5c_c00156{left:390.754667pt;}
.x77_c00156{left:394.080000pt;}
.x99_c00156{left:395.394923pt;}
.x62_c00156{left:397.008616pt;}
.xad_c00156{left:399.266683pt;}
.x8d_c00156{left:401.493248pt;}
.x83_c00156{left:403.098667pt;}
.x78_c00156{left:404.160000pt;}
.x9d_c00156{left:407.448699pt;}
.x72_c00156{left:408.960000pt;}
.x6e_c00156{left:411.360000pt;}
.x94_c00156{left:413.673451pt;}
.xae_c00156{left:418.258683pt;}
.x89_c00156{left:420.873333pt;}
.x54_c00156{left:422.432000pt;}
.xa9_c00156{left:423.856533pt;}
.xa6_c00156{left:425.210893pt;}
.x6b_c00156{left:432.720000pt;}
.x9e_c00156{left:436.721227pt;}
.xaf_c00156{left:438.176016pt;}
.xaa_c00156{left:442.339843pt;}
.x95_c00156{left:444.833451pt;}
.x8e_c00156{left:447.518088pt;}
.xab_c00156{left:453.142013pt;}
.x8a_c00156{left:454.485333pt;}
.x96_c00156{left:456.888117pt;}
.xa0_c00156{left:460.941453pt;}
.x9a_c00156{left:463.125371pt;}
.x8f_c00156{left:464.109043pt;}
.x9f_c00156{left:465.749755pt;}
.xa7_c00156{left:473.201091pt;}
.x97_c00156{left:481.356117pt;}
.x9b_c00156{left:484.452805pt;}
.x90_c00156{left:497.692309pt;}
.x8b_c00156{left:500.334667pt;}
.xa5_c00156{left:501.540024pt;}
.xa3_c00156{left:502.764435pt;}
.xa1_c00156{left:506.559408pt;}
.x91_c00156{left:509.889859pt;}
.xb3_c00156{left:537.840000pt;}
.xb2_c00156{left:540.240000pt;}
.xb0_c00156{left:542.640000pt;}
.xb1_c00156{left:551.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_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_ef4e99a7aa2876b3106553d3.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;}
.me3_c00157{transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{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);}
.mc9_c00157{transform:matrix(0.028530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028530,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.032105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032105,0.000000,0.000000,0.250000,0,0);}
.mc2_c00157{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.mb9_c00157{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);}
.mcc_c00157{transform:matrix(0.136170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136170,0.000000,0.000000,0.250000,0,0);}
.mb0_c00157{transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);}
.md2_c00157{transform:matrix(0.139740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139740,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{transform:matrix(0.140170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140170,0.000000,0.000000,0.250000,0,0);}
.mb1_c00157{transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);}
.mf7_c00157{transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{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);}
.me1_c00157{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{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);}
.m65_c00157{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);}
.m37_c00157{transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);}
.md0_c00157{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);}
.mc1_c00157{transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);}
.mb6_c00157{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);}
.mbe_c00157{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);}
.m41_c00157{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);}
.m70_c00157{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);}
.me_c00157{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);}
.mb5_c00157{transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{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);}
.m6_c00157{transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{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);}
.m54_c00157{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);}
.m9a_c00157{transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{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);}
.m66_c00157{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);}
.mc6_c00157{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);}
.m84_c00157{transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);}
.m8d_c00157{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);}
.mcd_c00157{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);}
.ma9_c00157{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);}
.m9b_c00157{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);}
.m50_c00157{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);}
.m22_c00157{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);}
.mcb_c00157{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);}
.mde_c00157{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);}
.mb8_c00157{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);}
.m48_c00157{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);}
.mac_c00157{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);}
.m27_c00157{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);}
.m4d_c00157{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);}
.m16_c00157{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);}
.m25_c00157{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);}
.m89_c00157{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);}
.m8b_c00157{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);}
.ma4_c00157{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);}
.m3b_c00157{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);}
.ma2_c00157{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);}
.m9c_c00157{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);}
.m9d_c00157{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);}
.m34_c00157{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);}
.mba_c00157{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);}
.mea_c00157{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);}
.m58_c00157{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);}
.m95_c00157{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);}
.mbc_c00157{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);}
.m8a_c00157{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);}
.m7d_c00157{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);}
.m10_c00157{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);}
.mb7_c00157{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);}
.m51_c00157{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);}
.m4e_c00157{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);}
.mcf_c00157{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);}
.m87_c00157{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);}
.m77_c00157{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);}
.mbb_c00157{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);}
.m35_c00157{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);}
.m47_c00157{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);}
.mbf_c00157{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);}
.m8c_c00157{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);}
.m40_c00157{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);}
.m5f_c00157{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);}
.m49_c00157{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.med_c00157{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);}
.m23_c00157{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);}
.m6a_c00157{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);}
.m3_c00157{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);}
.m1d_c00157{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);}
.m9f_c00157{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);}
.mf2_c00157{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);}
.mb4_c00157{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);}
.m2e_c00157{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);}
.mf1_c00157{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);}
.me0_c00157{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);}
.mdd_c00157{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);}
.m1c_c00157{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);}
.ma5_c00157{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);}
.m9e_c00157{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);}
.me2_c00157{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);}
.m6e_c00157{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);}
.me6_c00157{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);}
.m3a_c00157{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);}
.m1f_c00157{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);}
.me5_c00157{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);}
.m75_c00157{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);}
.mca_c00157{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);}
.ma8_c00157{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);}
.m93_c00157{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);}
.m78_c00157{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);}
.mce_c00157{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);}
.m76_c00157{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);}
.m7_c00157{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);}
.m74_c00157{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);}
.m88_c00157{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);}
.m6b_c00157{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);}
.m92_c00157{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);}
.m3f_c00157{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);}
.m2f_c00157{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);}
.me9_c00157{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);}
.m17_c00157{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);}
.m4b_c00157{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);}
.m30_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);}
.m8f_c00157{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);}
.m24_c00157{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);}
.me8_c00157{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);}
.m71_c00157{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);}
.m94_c00157{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);}
.m5_c00157{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);}
.m38_c00157{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);}
.mf5_c00157{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);}
.mdc_c00157{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_c00157{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);}
.m73_c00157{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);}
.m1b_c00157{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);}
.m7c_c00157{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);}
.m4c_c00157{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);}
.m3d_c00157{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);}
.mb3_c00157{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);}
.mdf_c00157{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);}
.m85_c00157{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);}
.mc7_c00157{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);}
.m2d_c00157{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{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);}
.m7b_c00157{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);}
.m56_c00157{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);}
.md7_c00157{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);}
.m19_c00157{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);}
.mc5_c00157{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);}
.m14_c00157{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);}
.m4a_c00157{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);}
.m90_c00157{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);}
.md1_c00157{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);}
.m32_c00157{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);}
.m96_c00157{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);}
.m6d_c00157{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);}
.m83_c00157{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);}
.mab_c00157{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);}
.m6c_c00157{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);}
.maa_c00157{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);}
.mdb_c00157{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);}
.md3_c00157{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);}
.mfa_c00157{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);}
.md9_c00157{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);}
.mc0_c00157{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);}
.m63_c00157{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);}
.mec_c00157{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);}
.mc4_c00157{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);}
.m2b_c00157{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);}
.m44_c00157{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);}
.m1e_c00157{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);}
.m67_c00157{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);}
.md8_c00157{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);}
.m82_c00157{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);}
.m97_c00157{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);}
.m59_c00157{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);}
.m3c_c00157{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);}
.m8_c00157{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);}
.m7f_c00157{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);}
.md4_c00157{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);}
.m11_c00157{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);}
.m52_c00157{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);}
.mb_c00157{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);}
.m5d_c00157{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);}
.m13_c00157{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);}
.m20_c00157{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);}
.mf_c00157{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);}
.m8e_c00157{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);}
.m55_c00157{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);}
.m5b_c00157{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);}
.m42_c00157{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);}
.mf0_c00157{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);}
.m79_c00157{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);}
.m86_c00157{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);}
.mc_c00157{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);}
.md_c00157{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);}
.m72_c00157{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);}
.ma7_c00157{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);}
.m28_c00157{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);}
.m60_c00157{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);}
.md6_c00157{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);}
.m2c_c00157{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);}
.mf4_c00157{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);}
.m1a_c00157{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);}
.m36_c00157{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);}
.m7a_c00157{transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{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);}
.meb_c00157{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);}
.mf9_c00157{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.ma6_c00157{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);}
.m7e_c00157{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);}
.m81_c00157{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);}
.md5_c00157{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);}
.ma3_c00157{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);}
.m64_c00157{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);}
.mf8_c00157{transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{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);}
.mef_c00157{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);}
.m43_c00157{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);}
.m18_c00157{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);}
.m99_c00157{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);}
.m46_c00157{transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{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);}
.m69_c00157{transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{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);}
.mbd_c00157{transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238690,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{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);}
.me4_c00157{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);}
.m62_c00157{transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);}
.mb2_c00157{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_c00157{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);}
.m98_c00157{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);}
.m21_c00157{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.mee_c00157{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);}
.m4_c00157{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);}
.mda_c00157{transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);}
.mc8_c00157{transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);}
.m61_c00157{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);}
.me7_c00157{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);}
.ma0_c00157{transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);}
.mf6_c00157{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);}
.m68_c00157{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);}
.maf_c00157{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);}
.mad_c00157{transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);}
.ma1_c00157{transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324660,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.325365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325365,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.352925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352925,0.000000,0.000000,0.250000,0,0);}
.mae_c00157{transform:matrix(0.352950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00157{transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);}
.m29_c00157{transform:matrix(0.389325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389325,0.000000,0.000000,0.250000,0,0);}
.mc3_c00157{transform:matrix(0.408305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408305,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.476945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476945,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.530400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530400,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;}
.fs11_c00157{font-size:16.800000px;}
.fs10_c00157{font-size:49.350000px;}
.fsd_c00157{font-size:50.400000px;}
.fs12_c00157{font-size:52.500000px;}
.fsf_c00157{font-size:55.650000px;}
.fsc_c00157{font-size:57.750000px;}
.fse_c00157{font-size:59.850000px;}
.fs3_c00157{font-size:63.000000px;}
.fs2_c00157{font-size:64.050000px;}
.fs9_c00157{font-size:67.200000px;}
.fs6_c00157{font-size:68.250000px;}
.fs8_c00157{font-size:69.300000px;}
.fs1_c00157{font-size:70.350000px;}
.fs4_c00157{font-size:71.400000px;}
.fsa_c00157{font-size:72.450000px;}
.fs5_c00157{font-size:73.500000px;}
.fs7_c00157{font-size:74.550000px;}
.fs0_c00157{font-size:75.600000px;}
.fsb_c00157{font-size:79.800000px;}
.y0_c00157{bottom:0.000000px;}
.y2f_c00157{bottom:152.877000px;}
.y2e_c00157{bottom:152.991000px;}
.y2d_c00157{bottom:153.507000px;}
.y2c_c00157{bottom:153.670500px;}
.y2b_c00157{bottom:153.907500px;}
.y2a_c00157{bottom:154.116000px;}
.y29_c00157{bottom:154.309500px;}
.y28_c00157{bottom:154.402500px;}
.y27_c00157{bottom:154.671000px;}
.y26_c00157{bottom:154.947000px;}
.y25_c00157{bottom:155.425500px;}
.y24_c00157{bottom:155.575500px;}
.y23_c00157{bottom:155.668500px;}
.y22_c00157{bottom:155.946000px;}
.y21_c00157{bottom:156.060000px;}
.y20_c00157{bottom:171.667500px;}
.y1f_c00157{bottom:201.420000px;}
.y1e_c00157{bottom:212.199000px;}
.y1d_c00157{bottom:230.065500px;}
.y1c_c00157{bottom:247.954500px;}
.y1b_c00157{bottom:265.776000px;}
.y1a_c00157{bottom:283.401000px;}
.y19_c00157{bottom:308.421000px;}
.y18_c00157{bottom:331.402500px;}
.y17_c00157{bottom:354.993000px;}
.y16_c00157{bottom:377.259000px;}
.y15_c00157{bottom:400.893000px;}
.y14_c00157{bottom:423.493500px;}
.y13_c00157{bottom:445.981500px;}
.y12_c00157{bottom:468.384000px;}
.y11_c00157{bottom:491.308500px;}
.y10_c00157{bottom:514.159500px;}
.yf_c00157{bottom:536.758500px;}
.ye_c00157{bottom:559.249500px;}
.yd_c00157{bottom:582.039000px;}
.yc_c00157{bottom:604.357500px;}
.yb_c00157{bottom:627.148500px;}
.ya_c00157{bottom:650.656500px;}
.y9_c00157{bottom:673.125000px;}
.y8_c00157{bottom:695.679000px;}
.y7_c00157{bottom:718.650000px;}
.y6_c00157{bottom:740.932500px;}
.y5_c00157{bottom:763.824000px;}
.y4_c00157{bottom:787.012500px;}
.y3_c00157{bottom:810.081000px;}
.y2_c00157{bottom:832.234500px;}
.y1_c00157{bottom:879.811500px;}
.h13_c00157{height:16.800000px;}
.h12_c00157{height:49.350000px;}
.hf_c00157{height:50.400000px;}
.h14_c00157{height:52.500000px;}
.h11_c00157{height:55.650000px;}
.he_c00157{height:57.750000px;}
.h10_c00157{height:59.850000px;}
.h5_c00157{height:63.000000px;}
.h4_c00157{height:64.050000px;}
.hb_c00157{height:67.200000px;}
.h8_c00157{height:68.250000px;}
.ha_c00157{height:69.300000px;}
.h3_c00157{height:70.350000px;}
.h6_c00157{height:71.400000px;}
.hc_c00157{height:72.450000px;}
.h7_c00157{height:73.500000px;}
.h9_c00157{height:74.550000px;}
.h2_c00157{height:75.600000px;}
.hd_c00157{height:79.800000px;}
.h0_c00157{height:1008.450000px;}
.h1_c00157{height:1008.750000px;}
.w0_c00157{width:676.890000px;}
.w1_c00157{width:677.250000px;}
.x0_c00157{left:0.000000px;}
.x89_c00157{left:130.887000px;}
.x7d_c00157{left:144.720000px;}
.x8a_c00157{left:147.090000px;}
.x4_c00157{left:162.270000px;}
.x1c_c00157{left:163.350000px;}
.x4f_c00157{left:164.430000px;}
.x62_c00157{left:165.510000px;}
.x7e_c00157{left:173.610000px;}
.xb_c00157{left:179.550000px;}
.x68_c00157{left:180.900000px;}
.x5_c00157{left:184.950000px;}
.x38_c00157{left:187.380000px;}
.x1d_c00157{left:189.540000px;}
.x2d_c00157{left:191.700000px;}
.x60_c00157{left:193.050000px;}
.x24_c00157{left:196.290000px;}
.x70_c00157{left:200.340000px;}
.x34_c00157{left:201.960000px;}
.x47_c00157{left:203.040000px;}
.x7f_c00157{left:205.200000px;}
.x50_c00157{left:207.360000px;}
.x3c_c00157{left:211.410000px;}
.x6_c00157{left:213.840000px;}
.xc_c00157{left:217.890000px;}
.x1e_c00157{left:219.240000px;}
.x64_c00157{left:221.940000px;}
.x80_c00157{left:224.370000px;}
.x2e_c00157{left:227.070000px;}
.x13_c00157{left:230.040000px;}
.x55_c00157{left:234.900000px;}
.x74_c00157{left:237.060000px;}
.x51_c00157{left:241.110000px;}
.x48_c00157{left:242.190000px;}
.x1f_c00157{left:243.270000px;}
.x65_c00157{left:245.970000px;}
.x7b_c00157{left:247.050000px;}
.x29_c00157{left:248.400000px;}
.x42_c00157{left:252.990000px;}
.xd_c00157{left:256.500000px;}
.x2f_c00157{left:258.930000px;}
.x81_c00157{left:262.170000px;}
.x18_c00157{left:263.520000px;}
.x69_c00157{left:265.140000px;}
.x25_c00157{left:266.760000px;}
.x1_c00157{left:270.270000px;}
.x35_c00157{left:271.350000px;}
.x49_c00157{left:273.780000px;}
.x3d_c00157{left:275.940000px;}
.x6a_c00157{left:278.100000px;}
.x82_c00157{left:281.880000px;}
.x52_c00157{left:283.230000px;}
.x7_c00157{left:285.120000px;}
.x14_c00157{left:287.280000px;}
.x22_c00157{left:289.710000px;}
.x6d_c00157{left:291.330000px;}
.x4a_c00157{left:297.540000px;}
.x66_c00157{left:300.240000px;}
.x2_c00157{left:301.320000px;}
.x15_c00157{left:305.100000px;}
.x7c_c00157{left:309.420000px;}
.x75_c00157{left:313.740000px;}
.x19_c00157{left:315.900000px;}
.x26_c00157{left:318.870000px;}
.x43_c00157{left:320.490000px;}
.x78_c00157{left:321.570000px;}
.xe_c00157{left:322.650000px;}
.x6e_c00157{left:326.430000px;}
.x83_c00157{left:327.510000px;}
.x23_c00157{left:328.860000px;}
.x59_c00157{left:332.100000px;}
.x30_c00157{left:335.610000px;}
.x79_c00157{left:336.690000px;}
.x61_c00157{left:338.310000px;}
.x39_c00157{left:340.470000px;}
.x16_c00157{left:343.440000px;}
.x5d_c00157{left:345.060000px;}
.x56_c00157{left:346.410000px;}
.x8_c00157{left:348.300000px;}
.x76_c00157{left:350.460000px;}
.x7a_c00157{left:352.890000px;}
.x3_c00157{left:356.400000px;}
.xf_c00157{left:358.290000px;}
.x4b_c00157{left:359.640000px;}
.x2a_c00157{left:361.530000px;}
.x3a_c00157{left:363.150000px;}
.x20_c00157{left:364.230000px;}
.x3e_c00157{left:368.280000px;}
.x9_c00157{left:372.060000px;}
.x77_c00157{left:375.300000px;}
.x57_c00157{left:376.380000px;}
.x4c_c00157{left:377.460000px;}
.x10_c00157{left:380.970000px;}
.x3b_c00157{left:382.050000px;}
.x6b_c00157{left:383.400000px;}
.x71_c00157{left:387.720000px;}
.x1a_c00157{left:388.800000px;}
.x3f_c00157{left:392.580000px;}
.x5a_c00157{left:397.710000px;}
.x44_c00157{left:400.680000px;}
.xa_c00157{left:402.030000px;}
.x5e_c00157{left:405.270000px;}
.x31_c00157{left:406.890000px;}
.x8b_c00157{left:408.201000px;}
.x21_c00157{left:409.590000px;}
.x72_c00157{left:410.940000px;}
.x36_c00157{left:414.450000px;}
.x1b_c00157{left:419.850000px;}
.x4d_c00157{left:423.090000px;}
.x27_c00157{left:425.520000px;}
.x11_c00157{left:427.680000px;}
.x40_c00157{left:428.760000px;}
.x17_c00157{left:432.000000px;}
.x5f_c00157{left:434.700000px;}
.x8c_c00157{left:437.887500px;}
.x84_c00157{left:439.830000px;}
.x4e_c00157{left:443.070000px;}
.x53_c00157{left:446.040000px;}
.x2b_c00157{left:451.980000px;}
.x28_c00157{left:453.870000px;}
.x6c_c00157{left:454.950000px;}
.x63_c00157{left:459.000000px;}
.x32_c00157{left:468.450000px;}
.x8d_c00157{left:471.637500px;}
.x45_c00157{left:472.770000px;}
.x41_c00157{left:477.360000px;}
.x67_c00157{left:480.060000px;}
.x37_c00157{left:481.410000px;}
.x2c_c00157{left:484.380000px;}
.x58_c00157{left:486.270000px;}
.x73_c00157{left:490.050000px;}
.x5b_c00157{left:491.940000px;}
.x8e_c00157{left:495.102000px;}
.x12_c00157{left:496.800000px;}
.x46_c00157{left:501.120000px;}
.x85_c00157{left:504.630000px;}
.x54_c00157{left:506.250000px;}
.x6f_c00157{left:509.490000px;}
.x5c_c00157{left:521.640000px;}
.x86_c00157{left:539.460000px;}
.x33_c00157{left:545.670000px;}
.x87_c00157{left:554.040000px;}
.x8f_c00157{left:568.816500px;}
.x90_c00157{left:585.027000px;}
.x88_c00157{left:591.840000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.fs11_c00157{font-size:14.933333pt;}
.fs10_c00157{font-size:43.866667pt;}
.fsd_c00157{font-size:44.800000pt;}
.fs12_c00157{font-size:46.666667pt;}
.fsf_c00157{font-size:49.466667pt;}
.fsc_c00157{font-size:51.333333pt;}
.fse_c00157{font-size:53.200000pt;}
.fs3_c00157{font-size:56.000000pt;}
.fs2_c00157{font-size:56.933333pt;}
.fs9_c00157{font-size:59.733333pt;}
.fs6_c00157{font-size:60.666667pt;}
.fs8_c00157{font-size:61.600000pt;}
.fs1_c00157{font-size:62.533333pt;}
.fs4_c00157{font-size:63.466667pt;}
.fsa_c00157{font-size:64.400000pt;}
.fs5_c00157{font-size:65.333333pt;}
.fs7_c00157{font-size:66.266667pt;}
.fs0_c00157{font-size:67.200000pt;}
.fsb_c00157{font-size:70.933333pt;}
.y0_c00157{bottom:0.000000pt;}
.y2f_c00157{bottom:135.890667pt;}
.y2e_c00157{bottom:135.992000pt;}
.y2d_c00157{bottom:136.450667pt;}
.y2c_c00157{bottom:136.596000pt;}
.y2b_c00157{bottom:136.806667pt;}
.y2a_c00157{bottom:136.992000pt;}
.y29_c00157{bottom:137.164000pt;}
.y28_c00157{bottom:137.246667pt;}
.y27_c00157{bottom:137.485333pt;}
.y26_c00157{bottom:137.730667pt;}
.y25_c00157{bottom:138.156000pt;}
.y24_c00157{bottom:138.289333pt;}
.y23_c00157{bottom:138.372000pt;}
.y22_c00157{bottom:138.618667pt;}
.y21_c00157{bottom:138.720000pt;}
.y20_c00157{bottom:152.593333pt;}
.y1f_c00157{bottom:179.040000pt;}
.y1e_c00157{bottom:188.621333pt;}
.y1d_c00157{bottom:204.502667pt;}
.y1c_c00157{bottom:220.404000pt;}
.y1b_c00157{bottom:236.245333pt;}
.y1a_c00157{bottom:251.912000pt;}
.y19_c00157{bottom:274.152000pt;}
.y18_c00157{bottom:294.580000pt;}
.y17_c00157{bottom:315.549333pt;}
.y16_c00157{bottom:335.341333pt;}
.y15_c00157{bottom:356.349333pt;}
.y14_c00157{bottom:376.438667pt;}
.y13_c00157{bottom:396.428000pt;}
.y12_c00157{bottom:416.341333pt;}
.y11_c00157{bottom:436.718667pt;}
.y10_c00157{bottom:457.030667pt;}
.yf_c00157{bottom:477.118667pt;}
.ye_c00157{bottom:497.110667pt;}
.yd_c00157{bottom:517.368000pt;}
.yc_c00157{bottom:537.206667pt;}
.yb_c00157{bottom:557.465333pt;}
.ya_c00157{bottom:578.361333pt;}
.y9_c00157{bottom:598.333333pt;}
.y8_c00157{bottom:618.381333pt;}
.y7_c00157{bottom:638.800000pt;}
.y6_c00157{bottom:658.606667pt;}
.y5_c00157{bottom:678.954667pt;}
.y4_c00157{bottom:699.566667pt;}
.y3_c00157{bottom:720.072000pt;}
.y2_c00157{bottom:739.764000pt;}
.y1_c00157{bottom:782.054667pt;}
.h13_c00157{height:14.933333pt;}
.h12_c00157{height:43.866667pt;}
.hf_c00157{height:44.800000pt;}
.h14_c00157{height:46.666667pt;}
.h11_c00157{height:49.466667pt;}
.he_c00157{height:51.333333pt;}
.h10_c00157{height:53.200000pt;}
.h5_c00157{height:56.000000pt;}
.h4_c00157{height:56.933333pt;}
.hb_c00157{height:59.733333pt;}
.h8_c00157{height:60.666667pt;}
.ha_c00157{height:61.600000pt;}
.h3_c00157{height:62.533333pt;}
.h6_c00157{height:63.466667pt;}
.hc_c00157{height:64.400000pt;}
.h7_c00157{height:65.333333pt;}
.h9_c00157{height:66.266667pt;}
.h2_c00157{height:67.200000pt;}
.hd_c00157{height:70.933333pt;}
.h0_c00157{height:896.400000pt;}
.h1_c00157{height:896.666667pt;}
.w0_c00157{width:601.680000pt;}
.w1_c00157{width:602.000000pt;}
.x0_c00157{left:0.000000pt;}
.x89_c00157{left:116.344000pt;}
.x7d_c00157{left:128.640000pt;}
.x8a_c00157{left:130.746667pt;}
.x4_c00157{left:144.240000pt;}
.x1c_c00157{left:145.200000pt;}
.x4f_c00157{left:146.160000pt;}
.x62_c00157{left:147.120000pt;}
.x7e_c00157{left:154.320000pt;}
.xb_c00157{left:159.600000pt;}
.x68_c00157{left:160.800000pt;}
.x5_c00157{left:164.400000pt;}
.x38_c00157{left:166.560000pt;}
.x1d_c00157{left:168.480000pt;}
.x2d_c00157{left:170.400000pt;}
.x60_c00157{left:171.600000pt;}
.x24_c00157{left:174.480000pt;}
.x70_c00157{left:178.080000pt;}
.x34_c00157{left:179.520000pt;}
.x47_c00157{left:180.480000pt;}
.x7f_c00157{left:182.400000pt;}
.x50_c00157{left:184.320000pt;}
.x3c_c00157{left:187.920000pt;}
.x6_c00157{left:190.080000pt;}
.xc_c00157{left:193.680000pt;}
.x1e_c00157{left:194.880000pt;}
.x64_c00157{left:197.280000pt;}
.x80_c00157{left:199.440000pt;}
.x2e_c00157{left:201.840000pt;}
.x13_c00157{left:204.480000pt;}
.x55_c00157{left:208.800000pt;}
.x74_c00157{left:210.720000pt;}
.x51_c00157{left:214.320000pt;}
.x48_c00157{left:215.280000pt;}
.x1f_c00157{left:216.240000pt;}
.x65_c00157{left:218.640000pt;}
.x7b_c00157{left:219.600000pt;}
.x29_c00157{left:220.800000pt;}
.x42_c00157{left:224.880000pt;}
.xd_c00157{left:228.000000pt;}
.x2f_c00157{left:230.160000pt;}
.x81_c00157{left:233.040000pt;}
.x18_c00157{left:234.240000pt;}
.x69_c00157{left:235.680000pt;}
.x25_c00157{left:237.120000pt;}
.x1_c00157{left:240.240000pt;}
.x35_c00157{left:241.200000pt;}
.x49_c00157{left:243.360000pt;}
.x3d_c00157{left:245.280000pt;}
.x6a_c00157{left:247.200000pt;}
.x82_c00157{left:250.560000pt;}
.x52_c00157{left:251.760000pt;}
.x7_c00157{left:253.440000pt;}
.x14_c00157{left:255.360000pt;}
.x22_c00157{left:257.520000pt;}
.x6d_c00157{left:258.960000pt;}
.x4a_c00157{left:264.480000pt;}
.x66_c00157{left:266.880000pt;}
.x2_c00157{left:267.840000pt;}
.x15_c00157{left:271.200000pt;}
.x7c_c00157{left:275.040000pt;}
.x75_c00157{left:278.880000pt;}
.x19_c00157{left:280.800000pt;}
.x26_c00157{left:283.440000pt;}
.x43_c00157{left:284.880000pt;}
.x78_c00157{left:285.840000pt;}
.xe_c00157{left:286.800000pt;}
.x6e_c00157{left:290.160000pt;}
.x83_c00157{left:291.120000pt;}
.x23_c00157{left:292.320000pt;}
.x59_c00157{left:295.200000pt;}
.x30_c00157{left:298.320000pt;}
.x79_c00157{left:299.280000pt;}
.x61_c00157{left:300.720000pt;}
.x39_c00157{left:302.640000pt;}
.x16_c00157{left:305.280000pt;}
.x5d_c00157{left:306.720000pt;}
.x56_c00157{left:307.920000pt;}
.x8_c00157{left:309.600000pt;}
.x76_c00157{left:311.520000pt;}
.x7a_c00157{left:313.680000pt;}
.x3_c00157{left:316.800000pt;}
.xf_c00157{left:318.480000pt;}
.x4b_c00157{left:319.680000pt;}
.x2a_c00157{left:321.360000pt;}
.x3a_c00157{left:322.800000pt;}
.x20_c00157{left:323.760000pt;}
.x3e_c00157{left:327.360000pt;}
.x9_c00157{left:330.720000pt;}
.x77_c00157{left:333.600000pt;}
.x57_c00157{left:334.560000pt;}
.x4c_c00157{left:335.520000pt;}
.x10_c00157{left:338.640000pt;}
.x3b_c00157{left:339.600000pt;}
.x6b_c00157{left:340.800000pt;}
.x71_c00157{left:344.640000pt;}
.x1a_c00157{left:345.600000pt;}
.x3f_c00157{left:348.960000pt;}
.x5a_c00157{left:353.520000pt;}
.x44_c00157{left:356.160000pt;}
.xa_c00157{left:357.360000pt;}
.x5e_c00157{left:360.240000pt;}
.x31_c00157{left:361.680000pt;}
.x8b_c00157{left:362.845333pt;}
.x21_c00157{left:364.080000pt;}
.x72_c00157{left:365.280000pt;}
.x36_c00157{left:368.400000pt;}
.x1b_c00157{left:373.200000pt;}
.x4d_c00157{left:376.080000pt;}
.x27_c00157{left:378.240000pt;}
.x11_c00157{left:380.160000pt;}
.x40_c00157{left:381.120000pt;}
.x17_c00157{left:384.000000pt;}
.x5f_c00157{left:386.400000pt;}
.x8c_c00157{left:389.233333pt;}
.x84_c00157{left:390.960000pt;}
.x4e_c00157{left:393.840000pt;}
.x53_c00157{left:396.480000pt;}
.x2b_c00157{left:401.760000pt;}
.x28_c00157{left:403.440000pt;}
.x6c_c00157{left:404.400000pt;}
.x63_c00157{left:408.000000pt;}
.x32_c00157{left:416.400000pt;}
.x8d_c00157{left:419.233333pt;}
.x45_c00157{left:420.240000pt;}
.x41_c00157{left:424.320000pt;}
.x67_c00157{left:426.720000pt;}
.x37_c00157{left:427.920000pt;}
.x2c_c00157{left:430.560000pt;}
.x58_c00157{left:432.240000pt;}
.x73_c00157{left:435.600000pt;}
.x5b_c00157{left:437.280000pt;}
.x8e_c00157{left:440.090667pt;}
.x12_c00157{left:441.600000pt;}
.x46_c00157{left:445.440000pt;}
.x85_c00157{left:448.560000pt;}
.x54_c00157{left:450.000000pt;}
.x6f_c00157{left:452.880000pt;}
.x5c_c00157{left:463.680000pt;}
.x86_c00157{left:479.520000pt;}
.x33_c00157{left:485.040000pt;}
.x87_c00157{left:492.480000pt;}
.x8f_c00157{left:505.614667pt;}
.x90_c00157{left:520.024000pt;}
.x88_c00157{left:526.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m7a_c00158{transform:matrix(0.010387,-0.000229,0.005499,0.249940,0,0);-ms-transform:matrix(0.010387,-0.000229,0.005499,0.249940,0,0);-webkit-transform:matrix(0.010387,-0.000229,0.005499,0.249940,0,0);}
.m66_c00158{transform:matrix(0.013057,-0.000287,0.005499,0.249940,0,0);-ms-transform:matrix(0.013057,-0.000287,0.005499,0.249940,0,0);-webkit-transform:matrix(0.013057,-0.000287,0.005499,0.249940,0,0);}
.m9e_c00158{transform:matrix(0.013242,-0.000291,0.005499,0.249940,0,0);-ms-transform:matrix(0.013242,-0.000291,0.005499,0.249940,0,0);-webkit-transform:matrix(0.013242,-0.000291,0.005499,0.249940,0,0);}
.mcd_c00158{transform:matrix(0.020569,-0.000803,0.009752,0.249810,0,0);-ms-transform:matrix(0.020569,-0.000803,0.009752,0.249810,0,0);-webkit-transform:matrix(0.020569,-0.000803,0.009752,0.249810,0,0);}
.mc4_c00158{transform:matrix(0.021816,-0.000436,0.004999,0.249950,0,0);-ms-transform:matrix(0.021816,-0.000436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.021816,-0.000436,0.004999,0.249950,0,0);}
.mbb_c00158{transform:matrix(0.076035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076035,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.107299,-0.002361,0.005499,0.249940,0,0);-ms-transform:matrix(0.107299,-0.002361,0.005499,0.249940,0,0);-webkit-transform:matrix(0.107299,-0.002361,0.005499,0.249940,0,0);}
.m50_c00158{transform:matrix(0.110528,-0.002432,0.005499,0.249940,0,0);-ms-transform:matrix(0.110528,-0.002432,0.005499,0.249940,0,0);-webkit-transform:matrix(0.110528,-0.002432,0.005499,0.249940,0,0);}
.mc3_c00158{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);}
.m97_c00158{transform:matrix(0.133738,-0.002942,0.005499,0.249940,0,0);-ms-transform:matrix(0.133738,-0.002942,0.005499,0.249940,0,0);-webkit-transform:matrix(0.133738,-0.002942,0.005499,0.249940,0,0);}
.ma5_c00158{transform:matrix(0.139196,-0.003062,0.005499,0.249940,0,0);-ms-transform:matrix(0.139196,-0.003062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.139196,-0.003062,0.005499,0.249940,0,0);}
.m9a_c00158{transform:matrix(0.140811,-0.003098,0.005499,0.249940,0,0);-ms-transform:matrix(0.140811,-0.003098,0.005499,0.249940,0,0);-webkit-transform:matrix(0.140811,-0.003098,0.005499,0.249940,0,0);}
.m6b_c00158{transform:matrix(0.141956,-0.003123,0.005499,0.249940,0,0);-ms-transform:matrix(0.141956,-0.003123,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141956,-0.003123,0.005499,0.249940,0,0);}
.m1a_c00158{transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00158{transform:matrix(0.146100,-0.003214,0.005499,0.249940,0,0);-ms-transform:matrix(0.146100,-0.003214,0.005499,0.249940,0,0);-webkit-transform:matrix(0.146100,-0.003214,0.005499,0.249940,0,0);}
.m21_c00158{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);}
.m68_c00158{transform:matrix(0.147034,-0.003235,0.005499,0.249940,0,0);-ms-transform:matrix(0.147034,-0.003235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147034,-0.003235,0.005499,0.249940,0,0);}
.m2a_c00158{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);}
.m31_c00158{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.149279,-0.003284,0.005499,0.249940,0,0);-ms-transform:matrix(0.149279,-0.003284,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149279,-0.003284,0.005499,0.249940,0,0);}
.m98_c00158{transform:matrix(0.149379,-0.003286,0.005499,0.249940,0,0);-ms-transform:matrix(0.149379,-0.003286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149379,-0.003286,0.005499,0.249940,0,0);}
.m19_c00158{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);}
.m2f_c00158{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);}
.m34_c00158{transform:matrix(0.152355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152355,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.154483,-0.003399,0.005499,0.249940,0,0);-ms-transform:matrix(0.154483,-0.003399,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154483,-0.003399,0.005499,0.249940,0,0);}
.m7_c00158{transform:matrix(0.155067,-0.003877,0.006248,0.249922,0,0);-ms-transform:matrix(0.155067,-0.003877,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155067,-0.003877,0.006248,0.249922,0,0);}
.m26_c00158{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);}
.m60_c00158{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);}
.m6f_c00158{transform:matrix(0.156432,-0.003442,0.005499,0.249940,0,0);-ms-transform:matrix(0.156432,-0.003442,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156432,-0.003442,0.005499,0.249940,0,0);}
.m99_c00158{transform:matrix(0.156872,-0.003451,0.005499,0.249940,0,0);-ms-transform:matrix(0.156872,-0.003451,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156872,-0.003451,0.005499,0.249940,0,0);}
.ma4_c00158{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);}
.m8b_c00158{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);}
.m8_c00158{transform:matrix(0.161055,-0.004026,0.006248,0.249922,0,0);-ms-transform:matrix(0.161055,-0.004026,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161055,-0.004026,0.006248,0.249922,0,0);}
.m69_c00158{transform:matrix(0.161181,-0.003546,0.005499,0.249940,0,0);-ms-transform:matrix(0.161181,-0.003546,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161181,-0.003546,0.005499,0.249940,0,0);}
.m8c_c00158{transform:matrix(0.161256,-0.003548,0.005499,0.249940,0,0);-ms-transform:matrix(0.161256,-0.003548,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161256,-0.003548,0.005499,0.249940,0,0);}
.md_c00158{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.m6c_c00158{transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);-ms-transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);}
.m82_c00158{transform:matrix(0.162296,-0.003571,0.005499,0.249940,0,0);-ms-transform:matrix(0.162296,-0.003571,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162296,-0.003571,0.005499,0.249940,0,0);}
.m9d_c00158{transform:matrix(0.164085,-0.003610,0.005499,0.249940,0,0);-ms-transform:matrix(0.164085,-0.003610,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164085,-0.003610,0.005499,0.249940,0,0);}
.m56_c00158{transform:matrix(0.164375,-0.003616,0.005499,0.249940,0,0);-ms-transform:matrix(0.164375,-0.003616,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164375,-0.003616,0.005499,0.249940,0,0);}
.m62_c00158{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);}
.m37_c00158{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);}
.m41_c00158{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);}
.m74_c00158{transform:matrix(0.166000,-0.003652,0.005499,0.249940,0,0);-ms-transform:matrix(0.166000,-0.003652,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166000,-0.003652,0.005499,0.249940,0,0);}
.mac_c00158{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);}
.mae_c00158{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);}
.m1c_c00158{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);}
.m12_c00158{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);}
.m18_c00158{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);}
.m51_c00158{transform:matrix(0.169899,-0.003738,0.005499,0.249940,0,0);-ms-transform:matrix(0.169899,-0.003738,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169899,-0.003738,0.005499,0.249940,0,0);}
.m5f_c00158{transform:matrix(0.170129,-0.003743,0.005499,0.249940,0,0);-ms-transform:matrix(0.170129,-0.003743,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170129,-0.003743,0.005499,0.249940,0,0);}
.m1f_c00158{transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{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);}
.m3d_c00158{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);}
.m2b_c00158{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);}
.ma1_c00158{transform:matrix(0.174013,-0.003828,0.005499,0.249940,0,0);-ms-transform:matrix(0.174013,-0.003828,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174013,-0.003828,0.005499,0.249940,0,0);}
.m91_c00158{transform:matrix(0.174253,-0.003834,0.005499,0.249940,0,0);-ms-transform:matrix(0.174253,-0.003834,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174253,-0.003834,0.005499,0.249940,0,0);}
.m5e_c00158{transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);-ms-transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);}
.m90_c00158{transform:matrix(0.175897,-0.003870,0.005499,0.249940,0,0);-ms-transform:matrix(0.175897,-0.003870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175897,-0.003870,0.005499,0.249940,0,0);}
.m1b_c00158{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);}
.m6d_c00158{transform:matrix(0.176017,-0.003872,0.005499,0.249940,0,0);-ms-transform:matrix(0.176017,-0.003872,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176017,-0.003872,0.005499,0.249940,0,0);}
.m32_c00158{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);}
.mcc_c00158{transform:matrix(0.176820,-0.006903,0.009752,0.249810,0,0);-ms-transform:matrix(0.176820,-0.006903,0.009752,0.249810,0,0);-webkit-transform:matrix(0.176820,-0.006903,0.009752,0.249810,0,0);}
.m48_c00158{transform:matrix(0.176984,-0.003009,0.004249,0.249964,0,0);-ms-transform:matrix(0.176984,-0.003009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176984,-0.003009,0.004249,0.249964,0,0);}
.m77_c00158{transform:matrix(0.177547,-0.003906,0.005499,0.249940,0,0);-ms-transform:matrix(0.177547,-0.003906,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177547,-0.003906,0.005499,0.249940,0,0);}
.ma9_c00158{transform:matrix(0.178627,-0.003930,0.005499,0.249940,0,0);-ms-transform:matrix(0.178627,-0.003930,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178627,-0.003930,0.005499,0.249940,0,0);}
.m1d_c00158{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);}
.m79_c00158{transform:matrix(0.179557,-0.003950,0.005499,0.249940,0,0);-ms-transform:matrix(0.179557,-0.003950,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179557,-0.003950,0.005499,0.249940,0,0);}
.mcf_c00158{transform:matrix(0.179603,-0.007012,0.009752,0.249810,0,0);-ms-transform:matrix(0.179603,-0.007012,0.009752,0.249810,0,0);-webkit-transform:matrix(0.179603,-0.007012,0.009752,0.249810,0,0);}
.m53_c00158{transform:matrix(0.180721,-0.003976,0.005499,0.249940,0,0);-ms-transform:matrix(0.180721,-0.003976,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180721,-0.003976,0.005499,0.249940,0,0);}
.mab_c00158{transform:matrix(0.181186,-0.003986,0.005499,0.249940,0,0);-ms-transform:matrix(0.181186,-0.003986,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181186,-0.003986,0.005499,0.249940,0,0);}
.m20_c00158{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);}
.ma2_c00158{transform:matrix(0.182781,-0.004021,0.005499,0.249940,0,0);-ms-transform:matrix(0.182781,-0.004021,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182781,-0.004021,0.005499,0.249940,0,0);}
.mc_c00158{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);}
.m75_c00158{transform:matrix(0.184145,-0.004051,0.005499,0.249940,0,0);-ms-transform:matrix(0.184145,-0.004051,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184145,-0.004051,0.005499,0.249940,0,0);}
.m54_c00158{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);}
.m38_c00158{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);}
.m78_c00158{transform:matrix(0.185320,-0.004077,0.005499,0.249940,0,0);-ms-transform:matrix(0.185320,-0.004077,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185320,-0.004077,0.005499,0.249940,0,0);}
.m22_c00158{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);}
.m83_c00158{transform:matrix(0.186580,-0.004105,0.005499,0.249940,0,0);-ms-transform:matrix(0.186580,-0.004105,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186580,-0.004105,0.005499,0.249940,0,0);}
.md1_c00158{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);}
.mc2_c00158{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);}
.m9_c00158{transform:matrix(0.187276,-0.004682,0.006248,0.249922,0,0);-ms-transform:matrix(0.187276,-0.004682,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187276,-0.004682,0.006248,0.249922,0,0);}
.ma6_c00158{transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);-ms-transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);}
.m3a_c00158{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);}
.m6a_c00158{transform:matrix(0.189134,-0.004161,0.005499,0.249940,0,0);-ms-transform:matrix(0.189134,-0.004161,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189134,-0.004161,0.005499,0.249940,0,0);}
.m61_c00158{transform:matrix(0.189249,-0.004163,0.005499,0.249940,0,0);-ms-transform:matrix(0.189249,-0.004163,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189249,-0.004163,0.005499,0.249940,0,0);}
.m40_c00158{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);}
.m36_c00158{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);}
.m16_c00158{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);}
.m17_c00158{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m33_c00158{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);}
.m89_c00158{transform:matrix(0.190324,-0.004187,0.005499,0.249940,0,0);-ms-transform:matrix(0.190324,-0.004187,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190324,-0.004187,0.005499,0.249940,0,0);}
.m28_c00158{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);}
.m7e_c00158{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);}
.m9b_c00158{transform:matrix(0.191464,-0.004212,0.005499,0.249940,0,0);-ms-transform:matrix(0.191464,-0.004212,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191464,-0.004212,0.005499,0.249940,0,0);}
.m29_c00158{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);}
.m30_c00158{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);}
.m92_c00158{transform:matrix(0.192443,-0.004234,0.005499,0.249940,0,0);-ms-transform:matrix(0.192443,-0.004234,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192443,-0.004234,0.005499,0.249940,0,0);}
.m3e_c00158{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);}
.m76_c00158{transform:matrix(0.192483,-0.004235,0.005499,0.249940,0,0);-ms-transform:matrix(0.192483,-0.004235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192483,-0.004235,0.005499,0.249940,0,0);}
.m63_c00158{transform:matrix(0.192628,-0.004238,0.005499,0.249940,0,0);-ms-transform:matrix(0.192628,-0.004238,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192628,-0.004238,0.005499,0.249940,0,0);}
.m47_c00158{transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);-ms-transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);}
.m15_c00158{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);}
.m2c_c00158{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);}
.m73_c00158{transform:matrix(0.193768,-0.004263,0.005499,0.249940,0,0);-ms-transform:matrix(0.193768,-0.004263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193768,-0.004263,0.005499,0.249940,0,0);}
.m23_c00158{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);}
.m25_c00158{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);}
.mc8_c00158{transform:matrix(0.194876,-0.003898,0.004999,0.249950,0,0);-ms-transform:matrix(0.194876,-0.003898,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194876,-0.003898,0.004999,0.249950,0,0);}
.mb1_c00158{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);}
.m5c_c00158{transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);-ms-transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);}
.maa_c00158{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);}
.m6e_c00158{transform:matrix(0.195938,-0.004311,0.005499,0.249940,0,0);-ms-transform:matrix(0.195938,-0.004311,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195938,-0.004311,0.005499,0.249940,0,0);}
.m13_c00158{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);}
.ma8_c00158{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);}
.m27_c00158{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);}
.m4c_c00158{transform:matrix(0.197806,-0.003363,0.004249,0.249964,0,0);-ms-transform:matrix(0.197806,-0.003363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197806,-0.003363,0.004249,0.249964,0,0);}
.mf_c00158{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);}
.m4b_c00158{transform:matrix(0.199976,-0.003400,0.004249,0.249964,0,0);-ms-transform:matrix(0.199976,-0.003400,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199976,-0.003400,0.004249,0.249964,0,0);}
.mb2_c00158{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);}
.maf_c00158{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);}
.mbd_c00158{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);}
.mb4_c00158{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);}
.mbf_c00158{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);}
.m86_c00158{transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);-ms-transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);}
.mbe_c00158{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);}
.m1e_c00158{transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{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);}
.m85_c00158{transform:matrix(0.203256,-0.004472,0.005499,0.249940,0,0);-ms-transform:matrix(0.203256,-0.004472,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203256,-0.004472,0.005499,0.249940,0,0);}
.m8a_c00158{transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);-ms-transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);}
.me_c00158{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);}
.mb_c00158{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);}
.m8f_c00158{transform:matrix(0.205915,-0.004530,0.005499,0.249940,0,0);-ms-transform:matrix(0.205915,-0.004530,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205915,-0.004530,0.005499,0.249940,0,0);}
.m24_c00158{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);}
.mc5_c00158{transform:matrix(0.206444,-0.004129,0.004999,0.249950,0,0);-ms-transform:matrix(0.206444,-0.004129,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206444,-0.004129,0.004999,0.249950,0,0);}
.m64_c00158{transform:matrix(0.208829,-0.004594,0.005499,0.249940,0,0);-ms-transform:matrix(0.208829,-0.004594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208829,-0.004594,0.005499,0.249940,0,0);}
.m35_c00158{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);}
.m3_c00158{transform:matrix(0.209465,-0.005237,0.006248,0.249922,0,0);-ms-transform:matrix(0.209465,-0.005237,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209465,-0.005237,0.006248,0.249922,0,0);}
.m7f_c00158{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);}
.m67_c00158{transform:matrix(0.210894,-0.004640,0.005499,0.249940,0,0);-ms-transform:matrix(0.210894,-0.004640,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210894,-0.004640,0.005499,0.249940,0,0);}
.ma3_c00158{transform:matrix(0.211134,-0.004645,0.005499,0.249940,0,0);-ms-transform:matrix(0.211134,-0.004645,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211134,-0.004645,0.005499,0.249940,0,0);}
.m8e_c00158{transform:matrix(0.211319,-0.004649,0.005499,0.249940,0,0);-ms-transform:matrix(0.211319,-0.004649,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211319,-0.004649,0.005499,0.249940,0,0);}
.m4f_c00158{transform:matrix(0.212374,-0.004672,0.005499,0.249940,0,0);-ms-transform:matrix(0.212374,-0.004672,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212374,-0.004672,0.005499,0.249940,0,0);}
.mce_c00158{transform:matrix(0.212513,-0.008296,0.009752,0.249810,0,0);-ms-transform:matrix(0.212513,-0.008296,0.009752,0.249810,0,0);-webkit-transform:matrix(0.212513,-0.008296,0.009752,0.249810,0,0);}
.m2e_c00158{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);}
.m95_c00158{transform:matrix(0.213908,-0.004706,0.005499,0.249940,0,0);-ms-transform:matrix(0.213908,-0.004706,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213908,-0.004706,0.005499,0.249940,0,0);}
.m5a_c00158{transform:matrix(0.216623,-0.004766,0.005499,0.249940,0,0);-ms-transform:matrix(0.216623,-0.004766,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216623,-0.004766,0.005499,0.249940,0,0);}
.mb6_c00158{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);}
.m80_c00158{transform:matrix(0.217477,-0.004785,0.005499,0.249940,0,0);-ms-transform:matrix(0.217477,-0.004785,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217477,-0.004785,0.005499,0.249940,0,0);}
.md0_c00158{transform:matrix(0.218084,-0.008514,0.009752,0.249810,0,0);-ms-transform:matrix(0.218084,-0.008514,0.009752,0.249810,0,0);-webkit-transform:matrix(0.218084,-0.008514,0.009752,0.249810,0,0);}
.m72_c00158{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);}
.mc9_c00158{transform:matrix(0.218541,-0.004371,0.004999,0.249950,0,0);-ms-transform:matrix(0.218541,-0.004371,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218541,-0.004371,0.004999,0.249950,0,0);}
.m6_c00158{transform:matrix(0.220521,-0.005513,0.006248,0.249922,0,0);-ms-transform:matrix(0.220521,-0.005513,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220521,-0.005513,0.006248,0.249922,0,0);}
.mb5_c00158{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{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);}
.m4a_c00158{transform:matrix(0.222678,-0.003786,0.004249,0.249964,0,0);-ms-transform:matrix(0.222678,-0.003786,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222678,-0.003786,0.004249,0.249964,0,0);}
.mb0_c00158{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);}
.m7b_c00158{transform:matrix(0.223501,-0.004917,0.005499,0.249940,0,0);-ms-transform:matrix(0.223501,-0.004917,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223501,-0.004917,0.005499,0.249940,0,0);}
.mc6_c00158{transform:matrix(0.224585,-0.004492,0.004999,0.249950,0,0);-ms-transform:matrix(0.224585,-0.004492,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224585,-0.004492,0.004999,0.249950,0,0);}
.m5d_c00158{transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);-ms-transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);}
.mb8_c00158{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);}
.mb3_c00158{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);}
.mad_c00158{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);}
.m5b_c00158{transform:matrix(0.229075,-0.005040,0.005499,0.249940,0,0);-ms-transform:matrix(0.229075,-0.005040,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229075,-0.005040,0.005499,0.249940,0,0);}
.m49_c00158{transform:matrix(0.230692,-0.003922,0.004249,0.249964,0,0);-ms-transform:matrix(0.230692,-0.003922,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230692,-0.003922,0.004249,0.249964,0,0);}
.m10_c00158{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);}
.m14_c00158{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);}
.m0_c00158{transform:matrix(0.235526,-0.005888,0.006248,0.249922,0,0);-ms-transform:matrix(0.235526,-0.005888,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235526,-0.005888,0.006248,0.249922,0,0);}
.m94_c00158{transform:matrix(0.235773,-0.005187,0.005499,0.249940,0,0);-ms-transform:matrix(0.235773,-0.005187,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235773,-0.005187,0.005499,0.249940,0,0);}
.m46_c00158{transform:matrix(0.235846,-0.004009,0.004249,0.249964,0,0);-ms-transform:matrix(0.235846,-0.004009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235846,-0.004009,0.004249,0.249964,0,0);}
.mbc_c00158{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);}
.m11_c00158{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.mb9_c00158{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);}
.md3_c00158{transform:matrix(0.242061,-0.009450,0.009752,0.249810,0,0);-ms-transform:matrix(0.242061,-0.009450,0.009752,0.249810,0,0);-webkit-transform:matrix(0.242061,-0.009450,0.009752,0.249810,0,0);}
.m70_c00158{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);}
.m3b_c00158{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00158{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.249745,-0.005494,0.005499,0.249940,0,0);-ms-transform:matrix(0.249745,-0.005494,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249745,-0.005494,0.005499,0.249940,0,0);}
.m96_c00158{transform:matrix(0.251589,-0.005535,0.005499,0.249940,0,0);-ms-transform:matrix(0.251589,-0.005535,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251589,-0.005535,0.005499,0.249940,0,0);}
.m2d_c00158{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);}
.mc7_c00158{transform:matrix(0.265442,-0.005309,0.004999,0.249950,0,0);-ms-transform:matrix(0.265442,-0.005309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.265442,-0.005309,0.004999,0.249950,0,0);}
.mba_c00158{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.269330,-0.005925,0.005499,0.249940,0,0);-ms-transform:matrix(0.269330,-0.005925,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269330,-0.005925,0.005499,0.249940,0,0);}
.m45_c00158{transform:matrix(0.291023,-0.004947,0.004249,0.249964,0,0);-ms-transform:matrix(0.291023,-0.004947,0.004249,0.249964,0,0);-webkit-transform:matrix(0.291023,-0.004947,0.004249,0.249964,0,0);}
.m5_c00158{transform:matrix(0.293643,-0.007341,0.006248,0.249922,0,0);-ms-transform:matrix(0.293643,-0.007341,0.006248,0.249922,0,0);-webkit-transform:matrix(0.293643,-0.007341,0.006248,0.249922,0,0);}
.m58_c00158{transform:matrix(0.293729,-0.006462,0.005499,0.249940,0,0);-ms-transform:matrix(0.293729,-0.006462,0.005499,0.249940,0,0);-webkit-transform:matrix(0.293729,-0.006462,0.005499,0.249940,0,0);}
.m4d_c00158{transform:matrix(0.294134,-0.006471,0.005499,0.249940,0,0);-ms-transform:matrix(0.294134,-0.006471,0.005499,0.249940,0,0);-webkit-transform:matrix(0.294134,-0.006471,0.005499,0.249940,0,0);}
.m43_c00158{transform:matrix(0.294905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294905,0.000000,0.000000,0.250000,0,0);}
.m87_c00158{transform:matrix(0.301557,-0.006634,0.005499,0.249940,0,0);-ms-transform:matrix(0.301557,-0.006634,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301557,-0.006634,0.005499,0.249940,0,0);}
.mca_c00158{transform:matrix(0.303909,-0.006078,0.004999,0.249950,0,0);-ms-transform:matrix(0.303909,-0.006078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.303909,-0.006078,0.004999,0.249950,0,0);}
.m4e_c00158{transform:matrix(0.309525,-0.006810,0.005499,0.249940,0,0);-ms-transform:matrix(0.309525,-0.006810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.309525,-0.006810,0.005499,0.249940,0,0);}
.mb7_c00158{transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);}
.m7d_c00158{transform:matrix(0.325371,-0.007158,0.005499,0.249940,0,0);-ms-transform:matrix(0.325371,-0.007158,0.005499,0.249940,0,0);-webkit-transform:matrix(0.325371,-0.007158,0.005499,0.249940,0,0);}
.m55_c00158{transform:matrix(0.328126,-0.007219,0.005499,0.249940,0,0);-ms-transform:matrix(0.328126,-0.007219,0.005499,0.249940,0,0);-webkit-transform:matrix(0.328126,-0.007219,0.005499,0.249940,0,0);}
.mcb_c00158{transform:matrix(0.346271,-0.006925,0.004999,0.249950,0,0);-ms-transform:matrix(0.346271,-0.006925,0.004999,0.249950,0,0);-webkit-transform:matrix(0.346271,-0.006925,0.004999,0.249950,0,0);}
.md4_c00158{transform:matrix(0.355639,-0.013884,0.009752,0.249810,0,0);-ms-transform:matrix(0.355639,-0.013884,0.009752,0.249810,0,0);-webkit-transform:matrix(0.355639,-0.013884,0.009752,0.249810,0,0);}
.m7c_c00158{transform:matrix(0.376079,-0.008274,0.005499,0.249940,0,0);-ms-transform:matrix(0.376079,-0.008274,0.005499,0.249940,0,0);-webkit-transform:matrix(0.376079,-0.008274,0.005499,0.249940,0,0);}
.m9f_c00158{transform:matrix(0.377799,-0.008312,0.005499,0.249940,0,0);-ms-transform:matrix(0.377799,-0.008312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.377799,-0.008312,0.005499,0.249940,0,0);}
.m59_c00158{transform:matrix(0.381948,-0.008403,0.005499,0.249940,0,0);-ms-transform:matrix(0.381948,-0.008403,0.005499,0.249940,0,0);-webkit-transform:matrix(0.381948,-0.008403,0.005499,0.249940,0,0);}
.m71_c00158{transform:matrix(0.394784,-0.008685,0.005499,0.249940,0,0);-ms-transform:matrix(0.394784,-0.008685,0.005499,0.249940,0,0);-webkit-transform:matrix(0.394784,-0.008685,0.005499,0.249940,0,0);}
.m93_c00158{transform:matrix(0.400093,-0.008802,0.005499,0.249940,0,0);-ms-transform:matrix(0.400093,-0.008802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.400093,-0.008802,0.005499,0.249940,0,0);}
.md2_c00158{transform:matrix(0.403503,-0.015752,0.009752,0.249810,0,0);-ms-transform:matrix(0.403503,-0.015752,0.009752,0.249810,0,0);-webkit-transform:matrix(0.403503,-0.015752,0.009752,0.249810,0,0);}
.m44_c00158{transform:matrix(0.407145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{transform:matrix(0.419883,-0.009237,0.005499,0.249940,0,0);-ms-transform:matrix(0.419883,-0.009237,0.005499,0.249940,0,0);-webkit-transform:matrix(0.419883,-0.009237,0.005499,0.249940,0,0);}
.mc0_c00158{transform:matrix(0.433790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433790,0.000000,0.000000,0.250000,0,0);}
.m65_c00158{transform:matrix(0.450951,-0.009921,0.005499,0.249940,0,0);-ms-transform:matrix(0.450951,-0.009921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.450951,-0.009921,0.005499,0.249940,0,0);}
.m2_c00158{transform:matrix(0.459526,-0.011488,0.006248,0.249922,0,0);-ms-transform:matrix(0.459526,-0.011488,0.006248,0.249922,0,0);-webkit-transform:matrix(0.459526,-0.011488,0.006248,0.249922,0,0);}
.m88_c00158{transform:matrix(0.473006,-0.010406,0.005499,0.249940,0,0);-ms-transform:matrix(0.473006,-0.010406,0.005499,0.249940,0,0);-webkit-transform:matrix(0.473006,-0.010406,0.005499,0.249940,0,0);}
.ma_c00158{transform:matrix(0.500200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500200,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{transform:matrix(0.517530,-0.011386,0.005499,0.249940,0,0);-ms-transform:matrix(0.517530,-0.011386,0.005499,0.249940,0,0);-webkit-transform:matrix(0.517530,-0.011386,0.005499,0.249940,0,0);}
.m4_c00158{transform:matrix(0.547224,-0.013681,0.006248,0.249922,0,0);-ms-transform:matrix(0.547224,-0.013681,0.006248,0.249922,0,0);-webkit-transform:matrix(0.547224,-0.013681,0.006248,0.249922,0,0);}
.m1_c00158{transform:matrix(1.042439,-0.026061,0.006248,0.249922,0,0);-ms-transform:matrix(1.042439,-0.026061,0.006248,0.249922,0,0);-webkit-transform:matrix(1.042439,-0.026061,0.006248,0.249922,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;}
.fs16_c00158{font-size:44.108819px;}
.fs11_c00158{font-size:48.300000px;}
.fs12_c00158{font-size:49.350000px;}
.fs14_c00158{font-size:50.400000px;}
.fs15_c00158{font-size:52.510499px;}
.fs13_c00158{font-size:54.600000px;}
.fs17_c00158{font-size:55.636698px;}
.fs2_c00158{font-size:59.868700px;}
.fse_c00158{font-size:63.015244px;}
.fs8_c00158{font-size:65.115752px;}
.fs9_c00158{font-size:67.216260px;}
.fs5_c00158{font-size:69.300000px;}
.fsf_c00158{font-size:70.367023px;}
.fs4_c00158{font-size:71.400000px;}
.fsd_c00158{font-size:71.417277px;}
.fs6_c00158{font-size:72.460468px;}
.fs3_c00158{font-size:73.500000px;}
.fsa_c00158{font-size:73.517785px;}
.fsb_c00158{font-size:74.568039px;}
.fs7_c00158{font-size:77.718801px;}
.fs10_c00158{font-size:78.769055px;}
.fsc_c00158{font-size:93.472612px;}
.fs1_c00158{font-size:133.391665px;}
.fs0_c00158{font-size:134.441993px;}
.y0_c00158{bottom:0.000000px;}
.yb8_c00158{bottom:146.227650px;}
.yb9_c00158{bottom:146.228220px;}
.yb1_c00158{bottom:152.550000px;}
.yb0_c00158{bottom:158.316000px;}
.yb2_c00158{bottom:159.916500px;}
.yb3_c00158{bottom:160.132560px;}
.yb4_c00158{bottom:161.897460px;}
.yb5_c00158{bottom:162.745200px;}
.yb6_c00158{bottom:163.096230px;}
.yb7_c00158{bottom:163.507830px;}
.yba_c00158{bottom:173.058000px;}
.ybb_c00158{bottom:173.320782px;}
.ybc_c00158{bottom:173.757543px;}
.yaf_c00158{bottom:176.088000px;}
.ybd_c00158{bottom:176.920404px;}
.ybe_c00158{bottom:177.716530px;}
.ybf_c00158{bottom:178.330078px;}
.yc0_c00158{bottom:179.446785px;}
.yc1_c00158{bottom:180.442104px;}
.yc2_c00158{bottom:182.221966px;}
.yae_c00158{bottom:231.493500px;}
.yad_c00158{bottom:249.202500px;}
.ya2_c00158{bottom:286.937301px;}
.ya3_c00158{bottom:287.178864px;}
.ya4_c00158{bottom:287.470290px;}
.ya5_c00158{bottom:287.898960px;}
.ya6_c00158{bottom:288.129741px;}
.ya7_c00158{bottom:288.461307px;}
.ya8_c00158{bottom:289.236699px;}
.ya9_c00158{bottom:289.910778px;}
.yaa_c00158{bottom:290.248386px;}
.yab_c00158{bottom:290.727912px;}
.yac_c00158{bottom:291.175140px;}
.ya0_c00158{bottom:312.109938px;}
.ya1_c00158{bottom:312.110067px;}
.y9f_c00158{bottom:312.110556px;}
.y95_c00158{bottom:332.576994px;}
.y96_c00158{bottom:332.948631px;}
.y97_c00158{bottom:333.300168px;}
.y98_c00158{bottom:333.973629px;}
.y99_c00158{bottom:334.184346px;}
.y9a_c00158{bottom:334.458948px;}
.y9b_c00158{bottom:334.913037px;}
.y9c_c00158{bottom:335.132295px;}
.y9d_c00158{bottom:335.785341px;}
.y9e_c00158{bottom:336.073587px;}
.y94_c00158{bottom:358.381047px;}
.y93_c00158{bottom:358.381785px;}
.y8a_c00158{bottom:378.220068px;}
.y8b_c00158{bottom:379.108227px;}
.y8c_c00158{bottom:379.777194px;}
.y8d_c00158{bottom:379.981554px;}
.y8e_c00158{bottom:380.258106px;}
.y8f_c00158{bottom:380.590320px;}
.y90_c00158{bottom:381.353334px;}
.y91_c00158{bottom:381.549417px;}
.y92_c00158{bottom:382.045491px;}
.y89_c00158{bottom:403.875345px;}
.y88_c00158{bottom:403.875909px;}
.y7f_c00158{bottom:423.322914px;}
.y80_c00158{bottom:424.057374px;}
.y81_c00158{bottom:424.351179px;}
.y82_c00158{bottom:424.770669px;}
.y83_c00158{bottom:425.376012px;}
.y84_c00158{bottom:425.856924px;}
.y85_c00158{bottom:426.280344px;}
.y86_c00158{bottom:426.785991px;}
.y87_c00158{bottom:427.236009px;}
.y7d_c00158{bottom:448.636119px;}
.y7b_c00158{bottom:448.636518px;}
.y7e_c00158{bottom:448.636542px;}
.y7c_c00158{bottom:448.636737px;}
.y73_c00158{bottom:468.422268px;}
.y74_c00158{bottom:469.034247px;}
.y75_c00158{bottom:469.679265px;}
.y76_c00158{bottom:469.966944px;}
.y77_c00158{bottom:470.382750px;}
.y78_c00158{bottom:471.242682px;}
.y79_c00158{bottom:471.811764px;}
.y7a_c00158{bottom:472.455114px;}
.y71_c00158{bottom:494.643819px;}
.y72_c00158{bottom:494.644488px;}
.y67_c00158{bottom:513.249699px;}
.y68_c00158{bottom:513.452262px;}
.y69_c00158{bottom:513.884262px;}
.y6a_c00158{bottom:514.438803px;}
.y6b_c00158{bottom:515.198913px;}
.y6c_c00158{bottom:515.876559px;}
.y6d_c00158{bottom:516.333483px;}
.y6e_c00158{bottom:516.873483px;}
.y6f_c00158{bottom:517.316079px;}
.y70_c00158{bottom:517.908024px;}
.y66_c00158{bottom:540.113757px;}
.y5c_c00158{bottom:559.162185px;}
.y5d_c00158{bottom:559.628979px;}
.y5e_c00158{bottom:560.146116px;}
.y5f_c00158{bottom:560.830416px;}
.y60_c00158{bottom:561.731940px;}
.y61_c00158{bottom:562.094580px;}
.y62_c00158{bottom:562.427814px;}
.y63_c00158{bottom:562.936581px;}
.y64_c00158{bottom:563.183046px;}
.y65_c00158{bottom:563.664603px;}
.y5a_c00158{bottom:585.102396px;}
.y57_c00158{bottom:585.102519px;}
.y58_c00158{bottom:585.102720px;}
.y5b_c00158{bottom:585.102837px;}
.y59_c00158{bottom:585.103008px;}
.y56_c00158{bottom:585.103023px;}
.y4e_c00158{bottom:603.463500px;}
.y4f_c00158{bottom:604.223259px;}
.y50_c00158{bottom:604.868937px;}
.y51_c00158{bottom:606.074856px;}
.y52_c00158{bottom:606.526461px;}
.y53_c00158{bottom:607.681593px;}
.y54_c00158{bottom:608.716077px;}
.y55_c00158{bottom:609.696540px;}
.y46_c00158{bottom:648.223500px;}
.y47_c00158{bottom:648.759663px;}
.y48_c00158{bottom:649.339253px;}
.y49_c00158{bottom:649.642550px;}
.y4a_c00158{bottom:650.658801px;}
.y4b_c00158{bottom:650.862291px;}
.y4c_c00158{bottom:651.634635px;}
.y4d_c00158{bottom:652.502885px;}
.y44_c00158{bottom:672.841500px;}
.y45_c00158{bottom:673.954500px;}
.y3c_c00158{bottom:692.553000px;}
.y3d_c00158{bottom:693.265500px;}
.y3e_c00158{bottom:695.010000px;}
.y3f_c00158{bottom:695.965500px;}
.y40_c00158{bottom:696.934500px;}
.y41_c00158{bottom:697.737000px;}
.y42_c00158{bottom:698.259000px;}
.y43_c00158{bottom:698.694000px;}
.y36_c00158{bottom:715.233000px;}
.y37_c00158{bottom:716.299500px;}
.y38_c00158{bottom:717.382500px;}
.y39_c00158{bottom:718.984500px;}
.y3a_c00158{bottom:720.045000px;}
.y3b_c00158{bottom:721.026000px;}
.y2f_c00158{bottom:737.914500px;}
.y30_c00158{bottom:739.015500px;}
.y31_c00158{bottom:739.794000px;}
.y32_c00158{bottom:741.948000px;}
.y33_c00158{bottom:742.431000px;}
.y34_c00158{bottom:744.600000px;}
.y35_c00158{bottom:745.138500px;}
.y28_c00158{bottom:760.866000px;}
.y29_c00158{bottom:762.334500px;}
.y2a_c00158{bottom:763.315500px;}
.y2b_c00158{bottom:765.006000px;}
.y2c_c00158{bottom:765.673500px;}
.y2d_c00158{bottom:767.203500px;}
.y2e_c00158{bottom:768.745500px;}
.y1f_c00158{bottom:783.276000px;}
.y20_c00158{bottom:784.663500px;}
.y21_c00158{bottom:785.643000px;}
.y22_c00158{bottom:786.981000px;}
.y23_c00158{bottom:787.371000px;}
.y24_c00158{bottom:788.424000px;}
.y25_c00158{bottom:789.817500px;}
.y26_c00158{bottom:790.507500px;}
.y27_c00158{bottom:791.563500px;}
.y15_c00158{bottom:805.689000px;}
.y16_c00158{bottom:807.190500px;}
.y17_c00158{bottom:808.327500px;}
.y18_c00158{bottom:809.395500px;}
.y19_c00158{bottom:810.405000px;}
.y1a_c00158{bottom:811.501500px;}
.y1b_c00158{bottom:811.942500px;}
.y1c_c00158{bottom:812.817000px;}
.y1d_c00158{bottom:814.216500px;}
.y1e_c00158{bottom:814.777500px;}
.yc_c00158{bottom:827.829000px;}
.yd_c00158{bottom:828.520500px;}
.ye_c00158{bottom:829.674000px;}
.yf_c00158{bottom:830.235000px;}
.y10_c00158{bottom:830.908500px;}
.y11_c00158{bottom:832.983000px;}
.y12_c00158{bottom:833.596500px;}
.y13_c00158{bottom:836.074500px;}
.y14_c00158{bottom:837.087000px;}
.ya_c00158{bottom:856.288425px;}
.yb_c00158{bottom:857.661000px;}
.y5_c00158{bottom:869.673675px;}
.y6_c00158{bottom:873.235312px;}
.y7_c00158{bottom:878.443237px;}
.y8_c00158{bottom:880.302900px;}
.y9_c00158{bottom:881.959987px;}
.y1_c00158{bottom:910.996500px;}
.y2_c00158{bottom:911.299650px;}
.y3_c00158{bottom:917.478375px;}
.y4_c00158{bottom:924.145950px;}
.h18_c00158{height:44.108819px;}
.h13_c00158{height:48.300000px;}
.h14_c00158{height:49.350000px;}
.h16_c00158{height:50.400000px;}
.h17_c00158{height:52.510499px;}
.h15_c00158{height:54.600000px;}
.h19_c00158{height:55.636698px;}
.h4_c00158{height:59.868700px;}
.h10_c00158{height:63.015244px;}
.ha_c00158{height:65.115752px;}
.hb_c00158{height:67.216260px;}
.h7_c00158{height:69.300000px;}
.h11_c00158{height:70.367023px;}
.h6_c00158{height:71.400000px;}
.hf_c00158{height:71.417277px;}
.h8_c00158{height:72.460468px;}
.h5_c00158{height:73.500000px;}
.hc_c00158{height:73.517785px;}
.hd_c00158{height:74.568039px;}
.h9_c00158{height:77.718801px;}
.h12_c00158{height:78.769055px;}
.he_c00158{height:93.472612px;}
.h3_c00158{height:133.391665px;}
.h2_c00158{height:134.441993px;}
.h1_c00158{height:1005.000000px;}
.h0_c00158{height:1005.150000px;}
.w0_c00158{width:705.450000px;}
.w1_c00158{width:705.750000px;}
.x0_c00158{left:0.000000px;}
.x5_c00158{left:37.398938px;}
.x1_c00158{left:38.980500px;}
.x2_c00158{left:51.106500px;}
.x7c_c00158{left:83.160000px;}
.x7d_c00158{left:112.050000px;}
.x78_c00158{left:116.640000px;}
.x54_c00158{left:135.813906px;}
.xb_c00158{left:141.289500px;}
.x14_c00158{left:142.662000px;}
.x30_c00158{left:144.481500px;}
.x69_c00158{left:145.964193px;}
.x5e_c00158{left:147.329409px;}
.x4b_c00158{left:148.673541px;}
.x64_c00158{left:151.080006px;}
.x6e_c00158{left:152.189292px;}
.x79_c00158{left:159.030000px;}
.xc_c00158{left:166.914000px;}
.x6f_c00158{left:170.809488px;}
.x5d_c00158{left:172.266843px;}
.x36_c00158{left:174.663000px;}
.x42_c00158{left:179.314500px;}
.x4c_c00158{left:184.557636px;}
.x6_c00158{left:185.808150px;}
.x2b_c00158{left:189.306000px;}
.x31_c00158{left:190.848000px;}
.x70_c00158{left:193.196910px;}
.x1e_c00158{left:195.711000px;}
.x15_c00158{left:198.264000px;}
.x26_c00158{left:203.527500px;}
.xd_c00158{left:209.623500px;}
.x6a_c00158{left:211.647066px;}
.x7e_c00158{left:218.430000px;}
.x2c_c00158{left:221.772000px;}
.x4d_c00158{left:224.298990px;}
.x7a_c00158{left:225.450000px;}
.x3e_c00158{left:226.780500px;}
.xe_c00158{left:230.383500px;}
.x65_c00158{left:231.834042px;}
.x1f_c00158{left:233.356500px;}
.x74_c00158{left:235.440000px;}
.x32_c00158{left:237.946500px;}
.x16_c00158{left:240.390000px;}
.x27_c00158{left:244.410000px;}
.x5b_c00158{left:245.578092px;}
.x37_c00158{left:250.536000px;}
.xf_c00158{left:255.343500px;}
.x55_c00158{left:257.566944px;}
.x5f_c00158{left:258.703953px;}
.x43_c00158{left:263.478000px;}
.x3d_c00158{left:267.345000px;}
.x71_c00158{left:269.485524px;}
.x47_c00158{left:273.542526px;}
.x53_c00158{left:275.429724px;}
.x4e_c00158{left:276.959418px;}
.x17_c00158{left:279.970500px;}
.x75_c00158{left:281.880000px;}
.x20_c00158{left:284.800500px;}
.x3f_c00158{left:286.560000px;}
.x38_c00158{left:292.087500px;}
.x3_c00158{left:298.255500px;}
.x21_c00158{left:299.773500px;}
.x7f_c00158{left:301.320000px;}
.x60_c00158{left:305.319693px;}
.x33_c00158{left:307.576500px;}
.x2d_c00158{left:311.526000px;}
.x28_c00158{left:314.859000px;}
.x5a_c00158{left:316.209792px;}
.x18_c00158{left:317.377500px;}
.x48_c00158{left:321.883923px;}
.x63_c00158{left:326.204082px;}
.x56_c00158{left:328.511316px;}
.x10_c00158{left:332.193000px;}
.x39_c00158{left:334.216500px;}
.x7b_c00158{left:335.340000px;}
.x44_c00158{left:336.511500px;}
.x76_c00158{left:338.850000px;}
.x22_c00158{left:340.294500px;}
.x29_c00158{left:342.699000px;}
.x40_c00158{left:343.962000px;}
.x4f_c00158{left:346.315146px;}
.x77_c00158{left:352.080000px;}
.x34_c00158{left:353.679000px;}
.x11_c00158{left:354.930000px;}
.x19_c00158{left:357.994500px;}
.xa_c00158{left:359.370000px;}
.x57_c00158{left:362.265771px;}
.x49_c00158{left:365.904708px;}
.x3a_c00158{left:369.133500px;}
.x80_c00158{left:370.155000px;}
.x1a_c00158{left:374.335500px;}
.x6b_c00158{left:378.215859px;}
.x72_c00158{left:380.938068px;}
.x45_c00158{left:383.533500px;}
.x4a_c00158{left:388.319565px;}
.x58_c00158{left:389.887401px;}
.x3b_c00158{left:391.807500px;}
.x23_c00158{left:393.889500px;}
.x41_c00158{left:395.035500px;}
.x35_c00158{left:396.334500px;}
.x50_c00158{left:399.842739px;}
.x7_c00158{left:402.830588px;}
.x1b_c00158{left:406.726500px;}
.x5c_c00158{left:409.565031px;}
.x3c_c00158{left:410.722500px;}
.x61_c00158{left:413.885709px;}
.x24_c00158{left:420.451500px;}
.x2e_c00158{left:422.055000px;}
.x59_c00158{left:426.889785px;}
.x46_c00158{left:428.100000px;}
.x66_c00158{left:436.001943px;}
.x6c_c00158{left:437.573214px;}
.x51_c00158{left:438.998994px;}
.x2f_c00158{left:444.478500px;}
.x12_c00158{left:446.692500px;}
.x62_c00158{left:448.461540px;}
.x86_c00158{left:451.273464px;}
.x67_c00158{left:453.782733px;}
.x84_c00158{left:457.397370px;}
.x1c_c00158{left:458.557500px;}
.x25_c00158{left:461.067000px;}
.x6d_c00158{left:463.772550px;}
.x85_c00158{left:466.579530px;}
.x2a_c00158{left:470.713500px;}
.x73_c00158{left:478.178307px;}
.x1d_c00158{left:479.325000px;}
.x8_c00158{left:480.339038px;}
.x13_c00158{left:484.203000px;}
.x87_c00158{left:487.382818px;}
.x52_c00158{left:495.011082px;}
.x68_c00158{left:498.910656px;}
.x81_c00158{left:500.787000px;}
.x88_c00158{left:515.987685px;}
.x82_c00158{left:518.338500px;}
.x83_c00158{left:538.918500px;}
.x89_c00158{left:541.483164px;}
.x9_c00158{left:549.384263px;}
.x4_c00158{left:564.958500px;}
.x8a_c00158{left:587.075027px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.fs16_c00158{font-size:39.207839pt;}
.fs11_c00158{font-size:42.933333pt;}
.fs12_c00158{font-size:43.866667pt;}
.fs14_c00158{font-size:44.800000pt;}
.fs15_c00158{font-size:46.675999pt;}
.fs13_c00158{font-size:48.533333pt;}
.fs17_c00158{font-size:49.454843pt;}
.fs2_c00158{font-size:53.216622pt;}
.fse_c00158{font-size:56.013550pt;}
.fs8_c00158{font-size:57.880669pt;}
.fs9_c00158{font-size:59.747787pt;}
.fs5_c00158{font-size:61.600000pt;}
.fsf_c00158{font-size:62.548465pt;}
.fs4_c00158{font-size:63.466667pt;}
.fsd_c00158{font-size:63.482024pt;}
.fs6_c00158{font-size:64.409305pt;}
.fs3_c00158{font-size:65.333333pt;}
.fsa_c00158{font-size:65.349142pt;}
.fsb_c00158{font-size:66.282701pt;}
.fs7_c00158{font-size:69.083379pt;}
.fs10_c00158{font-size:70.016938pt;}
.fsc_c00158{font-size:83.086766pt;}
.fs1_c00158{font-size:118.570369pt;}
.fs0_c00158{font-size:119.503994pt;}
.y0_c00158{bottom:0.000000pt;}
.yb8_c00158{bottom:129.980133pt;}
.yb9_c00158{bottom:129.980640pt;}
.yb1_c00158{bottom:135.600000pt;}
.yb0_c00158{bottom:140.725333pt;}
.yb2_c00158{bottom:142.148000pt;}
.yb3_c00158{bottom:142.340053pt;}
.yb4_c00158{bottom:143.908853pt;}
.yb5_c00158{bottom:144.662400pt;}
.yb6_c00158{bottom:144.974427pt;}
.yb7_c00158{bottom:145.340293pt;}
.yba_c00158{bottom:153.829333pt;}
.ybb_c00158{bottom:154.062917pt;}
.ybc_c00158{bottom:154.451149pt;}
.yaf_c00158{bottom:156.522667pt;}
.ybd_c00158{bottom:157.262581pt;}
.ybe_c00158{bottom:157.970249pt;}
.ybf_c00158{bottom:158.515625pt;}
.yc0_c00158{bottom:159.508253pt;}
.yc1_c00158{bottom:160.392981pt;}
.yc2_c00158{bottom:161.975081pt;}
.yae_c00158{bottom:205.772000pt;}
.yad_c00158{bottom:221.513333pt;}
.ya2_c00158{bottom:255.055379pt;}
.ya3_c00158{bottom:255.270101pt;}
.ya4_c00158{bottom:255.529147pt;}
.ya5_c00158{bottom:255.910187pt;}
.ya6_c00158{bottom:256.115325pt;}
.ya7_c00158{bottom:256.410051pt;}
.ya8_c00158{bottom:257.099288pt;}
.ya9_c00158{bottom:257.698469pt;}
.yaa_c00158{bottom:257.998565pt;}
.yab_c00158{bottom:258.424811pt;}
.yac_c00158{bottom:258.822347pt;}
.ya0_c00158{bottom:277.431056pt;}
.ya1_c00158{bottom:277.431171pt;}
.y9f_c00158{bottom:277.431605pt;}
.y95_c00158{bottom:295.623995pt;}
.y96_c00158{bottom:295.954339pt;}
.y97_c00158{bottom:296.266816pt;}
.y98_c00158{bottom:296.865448pt;}
.y99_c00158{bottom:297.052752pt;}
.y9a_c00158{bottom:297.296843pt;}
.y9b_c00158{bottom:297.700477pt;}
.y9c_c00158{bottom:297.895373pt;}
.y9d_c00158{bottom:298.475859pt;}
.y9e_c00158{bottom:298.732077pt;}
.y94_c00158{bottom:318.560931pt;}
.y93_c00158{bottom:318.561587pt;}
.y8a_c00158{bottom:336.195616pt;}
.y8b_c00158{bottom:336.985091pt;}
.y8c_c00158{bottom:337.579728pt;}
.y8d_c00158{bottom:337.761381pt;}
.y8e_c00158{bottom:338.007205pt;}
.y8f_c00158{bottom:338.302507pt;}
.y90_c00158{bottom:338.980741pt;}
.y91_c00158{bottom:339.155037pt;}
.y92_c00158{bottom:339.595992pt;}
.y89_c00158{bottom:359.000307pt;}
.y88_c00158{bottom:359.000808pt;}
.y7f_c00158{bottom:376.287035pt;}
.y80_c00158{bottom:376.939888pt;}
.y81_c00158{bottom:377.201048pt;}
.y82_c00158{bottom:377.573928pt;}
.y83_c00158{bottom:378.112011pt;}
.y84_c00158{bottom:378.539488pt;}
.y85_c00158{bottom:378.915861pt;}
.y86_c00158{bottom:379.365325pt;}
.y87_c00158{bottom:379.765341pt;}
.y7d_c00158{bottom:398.787661pt;}
.y7b_c00158{bottom:398.788016pt;}
.y7e_c00158{bottom:398.788037pt;}
.y7c_c00158{bottom:398.788211pt;}
.y73_c00158{bottom:416.375349pt;}
.y74_c00158{bottom:416.919331pt;}
.y75_c00158{bottom:417.492680pt;}
.y76_c00158{bottom:417.748395pt;}
.y77_c00158{bottom:418.118000pt;}
.y78_c00158{bottom:418.882384pt;}
.y79_c00158{bottom:419.388235pt;}
.y7a_c00158{bottom:419.960101pt;}
.y71_c00158{bottom:439.683395pt;}
.y72_c00158{bottom:439.683989pt;}
.y67_c00158{bottom:456.221955pt;}
.y68_c00158{bottom:456.402011pt;}
.y69_c00158{bottom:456.786011pt;}
.y6a_c00158{bottom:457.278936pt;}
.y6b_c00158{bottom:457.954589pt;}
.y6c_c00158{bottom:458.556941pt;}
.y6d_c00158{bottom:458.963096pt;}
.y6e_c00158{bottom:459.443096pt;}
.y6f_c00158{bottom:459.836515pt;}
.y70_c00158{bottom:460.362688pt;}
.y66_c00158{bottom:480.101117pt;}
.y5c_c00158{bottom:497.033053pt;}
.y5d_c00158{bottom:497.447981pt;}
.y5e_c00158{bottom:497.907659pt;}
.y5f_c00158{bottom:498.515925pt;}
.y60_c00158{bottom:499.317280pt;}
.y61_c00158{bottom:499.639627pt;}
.y62_c00158{bottom:499.935835pt;}
.y63_c00158{bottom:500.388072pt;}
.y64_c00158{bottom:500.607152pt;}
.y65_c00158{bottom:501.035203pt;}
.y5a_c00158{bottom:520.091019pt;}
.y57_c00158{bottom:520.091128pt;}
.y58_c00158{bottom:520.091307pt;}
.y5b_c00158{bottom:520.091411pt;}
.y59_c00158{bottom:520.091563pt;}
.y56_c00158{bottom:520.091576pt;}
.y4e_c00158{bottom:536.412000pt;}
.y4f_c00158{bottom:537.087341pt;}
.y50_c00158{bottom:537.661277pt;}
.y51_c00158{bottom:538.733205pt;}
.y52_c00158{bottom:539.134632pt;}
.y53_c00158{bottom:540.161416pt;}
.y54_c00158{bottom:541.080957pt;}
.y55_c00158{bottom:541.952480pt;}
.y46_c00158{bottom:576.198667pt;}
.y47_c00158{bottom:576.675256pt;}
.y48_c00158{bottom:577.190447pt;}
.y49_c00158{bottom:577.460044pt;}
.y4a_c00158{bottom:578.363379pt;}
.y4b_c00158{bottom:578.544259pt;}
.y4c_c00158{bottom:579.230787pt;}
.y4d_c00158{bottom:580.002564pt;}
.y44_c00158{bottom:598.081333pt;}
.y45_c00158{bottom:599.070667pt;}
.y3c_c00158{bottom:615.602667pt;}
.y3d_c00158{bottom:616.236000pt;}
.y3e_c00158{bottom:617.786667pt;}
.y3f_c00158{bottom:618.636000pt;}
.y40_c00158{bottom:619.497333pt;}
.y41_c00158{bottom:620.210667pt;}
.y42_c00158{bottom:620.674667pt;}
.y43_c00158{bottom:621.061333pt;}
.y36_c00158{bottom:635.762667pt;}
.y37_c00158{bottom:636.710667pt;}
.y38_c00158{bottom:637.673333pt;}
.y39_c00158{bottom:639.097333pt;}
.y3a_c00158{bottom:640.040000pt;}
.y3b_c00158{bottom:640.912000pt;}
.y2f_c00158{bottom:655.924000pt;}
.y30_c00158{bottom:656.902667pt;}
.y31_c00158{bottom:657.594667pt;}
.y32_c00158{bottom:659.509333pt;}
.y33_c00158{bottom:659.938667pt;}
.y34_c00158{bottom:661.866667pt;}
.y35_c00158{bottom:662.345333pt;}
.y28_c00158{bottom:676.325333pt;}
.y29_c00158{bottom:677.630667pt;}
.y2a_c00158{bottom:678.502667pt;}
.y2b_c00158{bottom:680.005333pt;}
.y2c_c00158{bottom:680.598667pt;}
.y2d_c00158{bottom:681.958667pt;}
.y2e_c00158{bottom:683.329333pt;}
.y1f_c00158{bottom:696.245333pt;}
.y20_c00158{bottom:697.478667pt;}
.y21_c00158{bottom:698.349333pt;}
.y22_c00158{bottom:699.538667pt;}
.y23_c00158{bottom:699.885333pt;}
.y24_c00158{bottom:700.821333pt;}
.y25_c00158{bottom:702.060000pt;}
.y26_c00158{bottom:702.673333pt;}
.y27_c00158{bottom:703.612000pt;}
.y15_c00158{bottom:716.168000pt;}
.y16_c00158{bottom:717.502667pt;}
.y17_c00158{bottom:718.513333pt;}
.y18_c00158{bottom:719.462667pt;}
.y19_c00158{bottom:720.360000pt;}
.y1a_c00158{bottom:721.334667pt;}
.y1b_c00158{bottom:721.726667pt;}
.y1c_c00158{bottom:722.504000pt;}
.y1d_c00158{bottom:723.748000pt;}
.y1e_c00158{bottom:724.246667pt;}
.yc_c00158{bottom:735.848000pt;}
.yd_c00158{bottom:736.462667pt;}
.ye_c00158{bottom:737.488000pt;}
.yf_c00158{bottom:737.986667pt;}
.y10_c00158{bottom:738.585333pt;}
.y11_c00158{bottom:740.429333pt;}
.y12_c00158{bottom:740.974667pt;}
.y13_c00158{bottom:743.177333pt;}
.y14_c00158{bottom:744.077333pt;}
.ya_c00158{bottom:761.145267pt;}
.yb_c00158{bottom:762.365333pt;}
.y5_c00158{bottom:773.043267pt;}
.y6_c00158{bottom:776.209167pt;}
.y7_c00158{bottom:780.838433pt;}
.y8_c00158{bottom:782.491467pt;}
.y9_c00158{bottom:783.964433pt;}
.y1_c00158{bottom:809.774667pt;}
.y2_c00158{bottom:810.044133pt;}
.y3_c00158{bottom:815.536333pt;}
.y4_c00158{bottom:821.463067pt;}
.h18_c00158{height:39.207839pt;}
.h13_c00158{height:42.933333pt;}
.h14_c00158{height:43.866667pt;}
.h16_c00158{height:44.800000pt;}
.h17_c00158{height:46.675999pt;}
.h15_c00158{height:48.533333pt;}
.h19_c00158{height:49.454843pt;}
.h4_c00158{height:53.216622pt;}
.h10_c00158{height:56.013550pt;}
.ha_c00158{height:57.880669pt;}
.hb_c00158{height:59.747787pt;}
.h7_c00158{height:61.600000pt;}
.h11_c00158{height:62.548465pt;}
.h6_c00158{height:63.466667pt;}
.hf_c00158{height:63.482024pt;}
.h8_c00158{height:64.409305pt;}
.h5_c00158{height:65.333333pt;}
.hc_c00158{height:65.349142pt;}
.hd_c00158{height:66.282701pt;}
.h9_c00158{height:69.083379pt;}
.h12_c00158{height:70.016938pt;}
.he_c00158{height:83.086766pt;}
.h3_c00158{height:118.570369pt;}
.h2_c00158{height:119.503994pt;}
.h1_c00158{height:893.333333pt;}
.h0_c00158{height:893.466667pt;}
.w0_c00158{width:627.066667pt;}
.w1_c00158{width:627.333333pt;}
.x0_c00158{left:0.000000pt;}
.x5_c00158{left:33.243500pt;}
.x1_c00158{left:34.649333pt;}
.x2_c00158{left:45.428000pt;}
.x7c_c00158{left:73.920000pt;}
.x7d_c00158{left:99.600000pt;}
.x78_c00158{left:103.680000pt;}
.x54_c00158{left:120.723472pt;}
.xb_c00158{left:125.590667pt;}
.x14_c00158{left:126.810667pt;}
.x30_c00158{left:128.428000pt;}
.x69_c00158{left:129.745949pt;}
.x5e_c00158{left:130.959475pt;}
.x4b_c00158{left:132.154259pt;}
.x64_c00158{left:134.293339pt;}
.x6e_c00158{left:135.279371pt;}
.x79_c00158{left:141.360000pt;}
.xc_c00158{left:148.368000pt;}
.x6f_c00158{left:151.830656pt;}
.x5d_c00158{left:153.126083pt;}
.x36_c00158{left:155.256000pt;}
.x42_c00158{left:159.390667pt;}
.x4c_c00158{left:164.051232pt;}
.x6_c00158{left:165.162800pt;}
.x2b_c00158{left:168.272000pt;}
.x31_c00158{left:169.642667pt;}
.x70_c00158{left:171.730587pt;}
.x1e_c00158{left:173.965333pt;}
.x15_c00158{left:176.234667pt;}
.x26_c00158{left:180.913333pt;}
.xd_c00158{left:186.332000pt;}
.x6a_c00158{left:188.130725pt;}
.x7e_c00158{left:194.160000pt;}
.x2c_c00158{left:197.130667pt;}
.x4d_c00158{left:199.376880pt;}
.x7a_c00158{left:200.400000pt;}
.x3e_c00158{left:201.582667pt;}
.xe_c00158{left:204.785333pt;}
.x65_c00158{left:206.074704pt;}
.x1f_c00158{left:207.428000pt;}
.x74_c00158{left:209.280000pt;}
.x32_c00158{left:211.508000pt;}
.x16_c00158{left:213.680000pt;}
.x27_c00158{left:217.253333pt;}
.x5b_c00158{left:218.291637pt;}
.x37_c00158{left:222.698667pt;}
.xf_c00158{left:226.972000pt;}
.x55_c00158{left:228.948395pt;}
.x5f_c00158{left:229.959069pt;}
.x43_c00158{left:234.202667pt;}
.x3d_c00158{left:237.640000pt;}
.x71_c00158{left:239.542688pt;}
.x47_c00158{left:243.148912pt;}
.x53_c00158{left:244.826421pt;}
.x4e_c00158{left:246.186149pt;}
.x17_c00158{left:248.862667pt;}
.x75_c00158{left:250.560000pt;}
.x20_c00158{left:253.156000pt;}
.x3f_c00158{left:254.720000pt;}
.x38_c00158{left:259.633333pt;}
.x3_c00158{left:265.116000pt;}
.x21_c00158{left:266.465333pt;}
.x7f_c00158{left:267.840000pt;}
.x60_c00158{left:271.395283pt;}
.x33_c00158{left:273.401333pt;}
.x2d_c00158{left:276.912000pt;}
.x28_c00158{left:279.874667pt;}
.x5a_c00158{left:281.075371pt;}
.x18_c00158{left:282.113333pt;}
.x48_c00158{left:286.119043pt;}
.x63_c00158{left:289.959184pt;}
.x56_c00158{left:292.010059pt;}
.x10_c00158{left:295.282667pt;}
.x39_c00158{left:297.081333pt;}
.x7b_c00158{left:298.080000pt;}
.x44_c00158{left:299.121333pt;}
.x76_c00158{left:301.200000pt;}
.x22_c00158{left:302.484000pt;}
.x29_c00158{left:304.621333pt;}
.x40_c00158{left:305.744000pt;}
.x4f_c00158{left:307.835685pt;}
.x77_c00158{left:312.960000pt;}
.x34_c00158{left:314.381333pt;}
.x11_c00158{left:315.493333pt;}
.x19_c00158{left:318.217333pt;}
.xa_c00158{left:319.440000pt;}
.x57_c00158{left:322.014019pt;}
.x49_c00158{left:325.248629pt;}
.x3a_c00158{left:328.118667pt;}
.x80_c00158{left:329.026667pt;}
.x1a_c00158{left:332.742667pt;}
.x6b_c00158{left:336.191875pt;}
.x72_c00158{left:338.611616pt;}
.x45_c00158{left:340.918667pt;}
.x4a_c00158{left:345.172947pt;}
.x58_c00158{left:346.566579pt;}
.x3b_c00158{left:348.273333pt;}
.x23_c00158{left:350.124000pt;}
.x41_c00158{left:351.142667pt;}
.x35_c00158{left:352.297333pt;}
.x50_c00158{left:355.415768pt;}
.x7_c00158{left:358.071633pt;}
.x1b_c00158{left:361.534667pt;}
.x5c_c00158{left:364.057805pt;}
.x3c_c00158{left:365.086667pt;}
.x61_c00158{left:367.898408pt;}
.x24_c00158{left:373.734667pt;}
.x2e_c00158{left:375.160000pt;}
.x59_c00158{left:379.457587pt;}
.x46_c00158{left:380.533333pt;}
.x66_c00158{left:387.557283pt;}
.x6c_c00158{left:388.953968pt;}
.x51_c00158{left:390.221328pt;}
.x2f_c00158{left:395.092000pt;}
.x12_c00158{left:397.060000pt;}
.x62_c00158{left:398.632480pt;}
.x86_c00158{left:401.131968pt;}
.x67_c00158{left:403.362429pt;}
.x84_c00158{left:406.575440pt;}
.x1c_c00158{left:407.606667pt;}
.x25_c00158{left:409.837333pt;}
.x6d_c00158{left:412.242267pt;}
.x85_c00158{left:414.737360pt;}
.x2a_c00158{left:418.412000pt;}
.x73_c00158{left:425.047384pt;}
.x1d_c00158{left:426.066667pt;}
.x8_c00158{left:426.968033pt;}
.x13_c00158{left:430.402667pt;}
.x87_c00158{left:433.229172pt;}
.x52_c00158{left:440.009851pt;}
.x68_c00158{left:443.476139pt;}
.x81_c00158{left:445.144000pt;}
.x88_c00158{left:458.655720pt;}
.x82_c00158{left:460.745333pt;}
.x83_c00158{left:479.038667pt;}
.x89_c00158{left:481.318368pt;}
.x9_c00158{left:488.341567pt;}
.x4_c00158{left:502.185333pt;}
.x8a_c00158{left:521.844468pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m3a_c00159{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);}
.m3e_c00159{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);}
.m9b_c00159{transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);}
.m75_c00159{transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.115010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115010,0.000000,0.000000,0.250000,0,0);}
.mfc_c00159{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.mc9_c00159{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);}
.m62_c00159{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{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);}
.mda_c00159{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.mde_c00159{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.m58_c00159{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);}
.m22_c00159{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);}
.m5d_c00159{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);}
.mb_c00159{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);}
.m42_c00159{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);}
.m5c_c00159{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);}
.m1f_c00159{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);}
.m4_c00159{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);}
.m38_c00159{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);}
.m3_c00159{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m61_c00159{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);}
.m4f_c00159{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);}
.m9a_c00159{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);}
.m4e_c00159{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);}
.m77_c00159{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);}
.m7a_c00159{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);}
.m6_c00159{transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);}
.m4c_c00159{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);}
.m79_c00159{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);}
.m8d_c00159{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);}
.mb4_c00159{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);}
.m9d_c00159{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);}
.m73_c00159{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);}
.ma6_c00159{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);}
.m8f_c00159{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);}
.mb1_c00159{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);}
.m50_c00159{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);}
.m21_c00159{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);}
.mcd_c00159{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);}
.m33_c00159{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);}
.mca_c00159{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);}
.m18_c00159{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);}
.md0_c00159{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);}
.mc_c00159{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);}
.mb2_c00159{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);}
.me3_c00159{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);}
.mdb_c00159{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);}
.md_c00159{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);}
.m36_c00159{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);}
.m40_c00159{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);}
.me1_c00159{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);}
.m83_c00159{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);}
.mb5_c00159{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);}
.maa_c00159{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);}
.m43_c00159{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);}
.m5b_c00159{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);}
.m20_c00159{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);}
.m74_c00159{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);}
.mbe_c00159{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);}
.m4a_c00159{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);}
.ma9_c00159{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);}
.m2f_c00159{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);}
.m41_c00159{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);}
.m88_c00159{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);}
.m68_c00159{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);}
.mf3_c00159{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);}
.mec_c00159{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);}
.m5f_c00159{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);}
.m86_c00159{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);}
.mf0_c00159{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);}
.mc6_c00159{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);}
.mab_c00159{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);}
.m5e_c00159{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);}
.m65_c00159{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);}
.m10_c00159{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);}
.m9f_c00159{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);}
.mb6_c00159{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);}
.m82_c00159{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m104_c00159{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);}
.m34_c00159{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);}
.m37_c00159{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);}
.m69_c00159{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);}
.m3d_c00159{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);}
.m96_c00159{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);}
.mb0_c00159{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);}
.m4d_c00159{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);}
.mf4_c00159{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);}
.m90_c00159{transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);}
.m4b_c00159{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);}
.m64_c00159{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);}
.md3_c00159{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);}
.mfb_c00159{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);}
.m63_c00159{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);}
.m30_c00159{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);}
.m94_c00159{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);}
.m2b_c00159{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.mb7_c00159{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);}
.ma2_c00159{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);}
.me0_c00159{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);}
.m95_c00159{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);}
.m71_c00159{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);}
.mfe_c00159{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{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);}
.m97_c00159{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);}
.mc8_c00159{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);}
.m5a_c00159{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);}
.m78_c00159{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);}
.ma0_c00159{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);}
.m57_c00159{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);}
.mb9_c00159{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);}
.ma8_c00159{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);}
.mb3_c00159{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);}
.meb_c00159{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);}
.m0_c00159{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);}
.mc7_c00159{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);}
.m8b_c00159{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);}
.mbd_c00159{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);}
.mdf_c00159{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);}
.m2d_c00159{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);}
.ma3_c00159{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);}
.mac_c00159{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);}
.m9e_c00159{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);}
.m3f_c00159{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);}
.md2_c00159{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);}
.mbf_c00159{transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226260,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{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);}
.m101_c00159{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);}
.m91_c00159{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);}
.m59_c00159{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);}
.mdc_c00159{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.mf6_c00159{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);}
.mae_c00159{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);}
.m67_c00159{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);}
.mc4_c00159{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);}
.ma_c00159{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);}
.md1_c00159{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);}
.m7b_c00159{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);}
.m25_c00159{transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{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);}
.m72_c00159{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);}
.m35_c00159{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);}
.m7f_c00159{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);}
.maf_c00159{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);}
.mef_c00159{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);}
.m51_c00159{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);}
.md7_c00159{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);}
.m6b_c00159{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.mea_c00159{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);}
.m3c_c00159{transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);}
.me8_c00159{transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);}
.mbc_c00159{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);}
.m26_c00159{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);}
.mbb_c00159{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);}
.mce_c00159{transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);}
.mc2_c00159{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);}
.m12_c00159{transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);}
.md5_c00159{transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);}
.mf5_c00159{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);}
.m7c_c00159{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.mba_c00159{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);}
.med_c00159{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);}
.m76_c00159{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m81_c00159{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.254210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254210,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.md4_c00159{transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);}
.mf8_c00159{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);}
.mcc_c00159{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);}
.m6f_c00159{transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{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);}
.m31_c00159{transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);}
.md9_c00159{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);}
.m52_c00159{transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{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);}
.m23_c00159{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);}
.m9_c00159{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);}
.m49_c00159{transform:matrix(0.265475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{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);}
.m92_c00159{transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);}
.me6_c00159{transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);}
.m48_c00159{transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);}
.mdd_c00159{transform:matrix(0.269955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269955,0.000000,0.000000,0.250000,0,0);}
.m100_c00159{transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);}
.mff_c00159{transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);}
.m103_c00159{transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);}
.m84_c00159{transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275820,0.000000,0.000000,0.250000,0,0);}
.mf1_c00159{transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);}
.mcb_c00159{transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277105,0.000000,0.000000,0.250000,0,0);}
.mc0_c00159{transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);}
.mcf_c00159{transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);}
.m53_c00159{transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);}
.md6_c00159{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00159{transform:matrix(0.284710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284710,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285020,0.000000,0.000000,0.250000,0,0);}
.md8_c00159{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);}
.me2_c00159{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.me9_c00159{transform:matrix(0.290330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290330,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.290695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290695,0.000000,0.000000,0.250000,0,0);}
.mfd_c00159{transform:matrix(0.291285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291285,0.000000,0.000000,0.250000,0,0);}
.m6c_c00159{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);}
.m8c_c00159{transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.296150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.297165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297165,0.000000,0.000000,0.250000,0,0);}
.mc1_c00159{transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297520,0.000000,0.000000,0.250000,0,0);}
.mf2_c00159{transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);}
.me4_c00159{transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301475,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301620,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.304415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304415,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);}
.mc5_c00159{transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318840,0.000000,0.000000,0.250000,0,0);}
.m9c_c00159{transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320100,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.320830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320830,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.322690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322690,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);}
.mfa_c00159{transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329795,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.330975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330975,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340910,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.341690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342085,0.000000,0.000000,0.250000,0,0);}
.m2c_c00159{transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.354625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354625,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.355525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355525,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);}
.mc3_c00159{transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);}
.m46_c00159{transform:matrix(0.367585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367585,0.000000,0.000000,0.250000,0,0);}
.m87_c00159{transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369740,0.000000,0.000000,0.250000,0,0);}
.m105_c00159{transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369895,0.000000,0.000000,0.250000,0,0);}
.mf9_c00159{transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.370465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00159{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.372010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372010,0.000000,0.000000,0.250000,0,0);}
.m102_c00159{transform:matrix(0.383190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383190,0.000000,0.000000,0.250000,0,0);}
.me7_c00159{transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.387460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387460,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{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);}
.me5_c00159{transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);}
.mee_c00159{transform:matrix(0.418265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418265,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);}
.mf7_c00159{transform:matrix(0.427675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427675,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{transform:matrix(0.434190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434190,0.000000,0.000000,0.250000,0,0);}
.m2a_c00159{transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.457330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457330,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.459810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459810,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.460130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460130,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{transform:matrix(0.525700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525700,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.629670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629670,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.696620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696620,0.000000,0.000000,0.250000,0,0);}
.m6d_c00159{transform:matrix(0.697140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697140,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(1.140115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.140115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.140115,0.000000,0.000000,0.250000,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:33.600000px;}
.fse_c00159{font-size:44.100000px;}
.fs11_c00159{font-size:45.150000px;}
.fsf_c00159{font-size:46.200000px;}
.fs8_c00159{font-size:48.300000px;}
.fsc_c00159{font-size:50.400000px;}
.fs7_c00159{font-size:51.450000px;}
.fsb_c00159{font-size:52.500000px;}
.fsd_c00159{font-size:53.550000px;}
.fs9_c00159{font-size:54.600000px;}
.fs2_c00159{font-size:57.750000px;}
.fs10_c00159{font-size:58.800000px;}
.fs5_c00159{font-size:67.200000px;}
.fs3_c00159{font-size:68.250000px;}
.fs1_c00159{font-size:69.300000px;}
.fs0_c00159{font-size:70.350000px;}
.fs4_c00159{font-size:71.400000px;}
.fs6_c00159{font-size:73.500000px;}
.y0_c00159{bottom:0.000000px;}
.y2d_c00159{bottom:164.008500px;}
.y1e_c00159{bottom:164.607000px;}
.y21_c00159{bottom:181.440000px;}
.y2c_c00159{bottom:181.861500px;}
.y1d_c00159{bottom:182.098500px;}
.y2b_c00159{bottom:199.237500px;}
.y29_c00159{bottom:199.765500px;}
.y20_c00159{bottom:217.080000px;}
.y28_c00159{bottom:217.524000px;}
.y2f_c00159{bottom:217.768500px;}
.y1c_c00159{bottom:217.980000px;}
.y2a_c00159{bottom:234.532500px;}
.y2e_c00159{bottom:234.804000px;}
.y27_c00159{bottom:234.807000px;}
.y1b_c00159{bottom:252.427500px;}
.y26_c00159{bottom:252.550500px;}
.y25_c00159{bottom:270.069000px;}
.y1a_c00159{bottom:270.865500px;}
.y19_c00159{bottom:288.219000px;}
.y24_c00159{bottom:288.460500px;}
.y18_c00159{bottom:306.225000px;}
.y23_c00159{bottom:306.363000px;}
.y1f_c00159{bottom:323.725500px;}
.y22_c00159{bottom:324.255000px;}
.y17_c00159{bottom:324.270000px;}
.y16_c00159{bottom:371.166000px;}
.y15_c00159{bottom:393.829500px;}
.y14_c00159{bottom:416.157000px;}
.y13_c00159{bottom:438.750000px;}
.y12_c00159{bottom:461.605500px;}
.y11_c00159{bottom:484.242000px;}
.y10_c00159{bottom:507.157500px;}
.yf_c00159{bottom:529.753500px;}
.ye_c00159{bottom:552.321000px;}
.yd_c00159{bottom:575.509500px;}
.yc_c00159{bottom:597.984000px;}
.yb_c00159{bottom:620.908500px;}
.y8_c00159{bottom:643.018500px;}
.y9_c00159{bottom:643.281000px;}
.ya_c00159{bottom:665.794500px;}
.y7_c00159{bottom:688.953000px;}
.y6_c00159{bottom:711.720000px;}
.y5_c00159{bottom:734.631000px;}
.y3_c00159{bottom:757.459500px;}
.y4_c00159{bottom:758.517000px;}
.y2_c00159{bottom:780.840000px;}
.y1_c00159{bottom:803.790000px;}
.hc_c00159{height:33.600000px;}
.h10_c00159{height:44.100000px;}
.h13_c00159{height:45.150000px;}
.h11_c00159{height:46.200000px;}
.ha_c00159{height:48.300000px;}
.he_c00159{height:50.400000px;}
.h9_c00159{height:51.450000px;}
.hd_c00159{height:52.500000px;}
.hf_c00159{height:53.550000px;}
.hb_c00159{height:54.600000px;}
.h4_c00159{height:57.750000px;}
.h12_c00159{height:58.800000px;}
.h7_c00159{height:67.200000px;}
.h5_c00159{height:68.250000px;}
.h3_c00159{height:69.300000px;}
.h2_c00159{height:70.350000px;}
.h6_c00159{height:71.400000px;}
.h8_c00159{height:73.500000px;}
.h0_c00159{height:1008.450000px;}
.h1_c00159{height:1008.750000px;}
.w0_c00159{width:676.890000px;}
.w1_c00159{width:677.250000px;}
.x0_c00159{left:0.000000px;}
.x52_c00159{left:129.330000px;}
.x56_c00159{left:130.680000px;}
.x8d_c00159{left:145.530000px;}
.x5a_c00159{left:149.850000px;}
.x32_c00159{left:152.820000px;}
.x66_c00159{left:154.170000px;}
.x63_c00159{left:160.110000px;}
.x27_c00159{left:163.080000px;}
.x1_c00159{left:164.700000px;}
.x57_c00159{left:167.400000px;}
.x53_c00159{left:177.120000px;}
.x5b_c00159{left:181.440000px;}
.x64_c00159{left:183.600000px;}
.x3c_c00159{left:185.490000px;}
.x4a_c00159{left:186.570000px;}
.x33_c00159{left:188.460000px;}
.x2a_c00159{left:190.350000px;}
.x5c_c00159{left:194.130000px;}
.xb_c00159{left:195.750000px;}
.x20_c00159{left:197.370000px;}
.x2_c00159{left:199.260000px;}
.x44_c00159{left:201.420000px;}
.x68_c00159{left:206.010000px;}
.x8a_c00159{left:207.090000px;}
.x4b_c00159{left:208.170000px;}
.x67_c00159{left:210.870000px;}
.x4e_c00159{left:213.840000px;}
.xc_c00159{left:216.000000px;}
.x58_c00159{left:222.480000px;}
.x5d_c00159{left:223.560000px;}
.x3d_c00159{left:225.990000px;}
.x34_c00159{left:227.070000px;}
.x28_c00159{left:228.690000px;}
.x61_c00159{left:230.310000px;}
.x3_c00159{left:232.740000px;}
.x8b_c00159{left:236.250000px;}
.x5e_c00159{left:238.950000px;}
.x13_c00159{left:242.460000px;}
.x3e_c00159{left:245.160000px;}
.x2b_c00159{left:246.240000px;}
.x54_c00159{left:250.560000px;}
.x29_c00159{left:254.070000px;}
.x4_c00159{left:259.200000px;}
.x8e_c00159{left:261.360000px;}
.x14_c00159{left:263.250000px;}
.x65_c00159{left:265.950000px;}
.x45_c00159{left:268.110000px;}
.x1a_c00159{left:271.890000px;}
.x35_c00159{left:275.400000px;}
.x4c_c00159{left:277.020000px;}
.x59_c00159{left:278.100000px;}
.xd_c00159{left:280.260000px;}
.x11_c00159{left:282.150000px;}
.x39_c00159{left:287.550000px;}
.x46_c00159{left:288.630000px;}
.x10_c00159{left:289.980000px;}
.x9_c00159{left:291.060000px;}
.x4f_c00159{left:293.220000px;}
.x36_c00159{left:295.380000px;}
.x69_c00159{left:297.540000px;}
.x1b_c00159{left:303.480000px;}
.x8c_c00159{left:305.640000px;}
.x55_c00159{left:306.990000px;}
.x5f_c00159{left:311.040000px;}
.x3f_c00159{left:313.200000px;}
.x62_c00159{left:315.090000px;}
.x87_c00159{left:317.790000px;}
.x15_c00159{left:321.030000px;}
.x2c_c00159{left:322.650000px;}
.xe_c00159{left:324.270000px;}
.x3a_c00159{left:325.620000px;}
.x5_c00159{left:326.970000px;}
.x1c_c00159{left:329.130000px;}
.x88_c00159{left:331.020000px;}
.x21_c00159{left:332.910000px;}
.x47_c00159{left:333.990000px;}
.xa_c00159{left:336.420000px;}
.x43_c00159{left:337.770000px;}
.x12_c00159{left:339.120000px;}
.x6_c00159{left:352.620000px;}
.x22_c00159{left:353.970000px;}
.x2d_c00159{left:355.590000px;}
.xf_c00159{left:358.290000px;}
.x50_c00159{left:362.340000px;}
.x60_c00159{left:364.770000px;}
.x6a_c00159{left:365.850000px;}
.x89_c00159{left:367.740000px;}
.x6c_c00159{left:371.790000px;}
.x1d_c00159{left:372.870000px;}
.x7_c00159{left:374.760000px;}
.x40_c00159{left:375.840000px;}
.x16_c00159{left:380.160000px;}
.x3b_c00159{left:382.050000px;}
.x2e_c00159{left:385.290000px;}
.x51_c00159{left:387.450000px;}
.x6d_c00159{left:391.500000px;}
.x1e_c00159{left:397.170000px;}
.x74_c00159{left:400.140000px;}
.x23_c00159{left:401.220000px;}
.x7e_c00159{left:402.300000px;}
.x96_c00159{left:404.190000px;}
.x37_c00159{left:409.320000px;}
.x8f_c00159{left:411.210000px;}
.x2f_c00159{left:413.640000px;}
.x6b_c00159{left:421.470000px;}
.x6e_c00159{left:422.550000px;}
.x7f_c00159{left:423.630000px;}
.x97_c00159{left:429.300000px;}
.x38_c00159{left:430.650000px;}
.x78_c00159{left:433.080000px;}
.x90_c00159{left:434.700000px;}
.x4d_c00159{left:435.780000px;}
.x8_c00159{left:436.860000px;}
.x75_c00159{left:440.100000px;}
.x48_c00159{left:441.450000px;}
.x41_c00159{left:444.960000px;}
.x1f_c00159{left:449.550000px;}
.x6f_c00159{left:452.250000px;}
.x76_c00159{left:453.600000px;}
.x91_c00159{left:457.380000px;}
.x24_c00159{left:458.730000px;}
.x30_c00159{left:463.590000px;}
.x9f_c00159{left:466.290000px;}
.x25_c00159{left:467.370000px;}
.x85_c00159{left:470.610000px;}
.x79_c00159{left:472.500000px;}
.x42_c00159{left:477.090000px;}
.x49_c00159{left:478.440000px;}
.x80_c00159{left:480.060000px;}
.x17_c00159{left:481.140000px;}
.xa0_c00159{left:488.160000px;}
.x9c_c00159{left:489.780000px;}
.x26_c00159{left:492.210000px;}
.x31_c00159{left:494.370000px;}
.x77_c00159{left:495.720000px;}
.x70_c00159{left:497.070000px;}
.x98_c00159{left:499.230000px;}
.x7a_c00159{left:504.360000px;}
.x99_c00159{left:512.460000px;}
.x18_c00159{left:515.160000px;}
.x71_c00159{left:518.670000px;}
.x81_c00159{left:521.370000px;}
.x95_c00159{left:523.800000px;}
.x7b_c00159{left:525.960000px;}
.x9d_c00159{left:538.920000px;}
.x82_c00159{left:543.510000px;}
.x92_c00159{left:544.590000px;}
.x7c_c00159{left:549.450000px;}
.xa1_c00159{left:550.800000px;}
.x9a_c00159{left:556.200000px;}
.xa2_c00159{left:564.030000px;}
.x86_c00159{left:565.650000px;}
.x7d_c00159{left:567.540000px;}
.x72_c00159{left:570.780000px;}
.x9b_c00159{left:573.480000px;}
.x83_c00159{left:575.100000px;}
.x9e_c00159{left:582.930000px;}
.x93_c00159{left:584.820000px;}
.x73_c00159{left:589.680000px;}
.x19_c00159{left:599.940000px;}
.x94_c00159{left:612.090000px;}
.x84_c00159{left:622.080000px;}
.xa3_c00159{left:624.510000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:0.000000pt;}
.fsa_c00159{font-size:29.866667pt;}
.fse_c00159{font-size:39.200000pt;}
.fs11_c00159{font-size:40.133333pt;}
.fsf_c00159{font-size:41.066667pt;}
.fs8_c00159{font-size:42.933333pt;}
.fsc_c00159{font-size:44.800000pt;}
.fs7_c00159{font-size:45.733333pt;}
.fsb_c00159{font-size:46.666667pt;}
.fsd_c00159{font-size:47.600000pt;}
.fs9_c00159{font-size:48.533333pt;}
.fs2_c00159{font-size:51.333333pt;}
.fs10_c00159{font-size:52.266667pt;}
.fs5_c00159{font-size:59.733333pt;}
.fs3_c00159{font-size:60.666667pt;}
.fs1_c00159{font-size:61.600000pt;}
.fs0_c00159{font-size:62.533333pt;}
.fs4_c00159{font-size:63.466667pt;}
.fs6_c00159{font-size:65.333333pt;}
.y0_c00159{bottom:0.000000pt;}
.y2d_c00159{bottom:145.785333pt;}
.y1e_c00159{bottom:146.317333pt;}
.y21_c00159{bottom:161.280000pt;}
.y2c_c00159{bottom:161.654667pt;}
.y1d_c00159{bottom:161.865333pt;}
.y2b_c00159{bottom:177.100000pt;}
.y29_c00159{bottom:177.569333pt;}
.y20_c00159{bottom:192.960000pt;}
.y28_c00159{bottom:193.354667pt;}
.y2f_c00159{bottom:193.572000pt;}
.y1c_c00159{bottom:193.760000pt;}
.y2a_c00159{bottom:208.473333pt;}
.y2e_c00159{bottom:208.714667pt;}
.y27_c00159{bottom:208.717333pt;}
.y1b_c00159{bottom:224.380000pt;}
.y26_c00159{bottom:224.489333pt;}
.y25_c00159{bottom:240.061333pt;}
.y1a_c00159{bottom:240.769333pt;}
.y19_c00159{bottom:256.194667pt;}
.y24_c00159{bottom:256.409333pt;}
.y18_c00159{bottom:272.200000pt;}
.y23_c00159{bottom:272.322667pt;}
.y1f_c00159{bottom:287.756000pt;}
.y22_c00159{bottom:288.226667pt;}
.y17_c00159{bottom:288.240000pt;}
.y16_c00159{bottom:329.925333pt;}
.y15_c00159{bottom:350.070667pt;}
.y14_c00159{bottom:369.917333pt;}
.y13_c00159{bottom:390.000000pt;}
.y12_c00159{bottom:410.316000pt;}
.y11_c00159{bottom:430.437333pt;}
.y10_c00159{bottom:450.806667pt;}
.yf_c00159{bottom:470.892000pt;}
.ye_c00159{bottom:490.952000pt;}
.yd_c00159{bottom:511.564000pt;}
.yc_c00159{bottom:531.541333pt;}
.yb_c00159{bottom:551.918667pt;}
.y8_c00159{bottom:571.572000pt;}
.y9_c00159{bottom:571.805333pt;}
.ya_c00159{bottom:591.817333pt;}
.y7_c00159{bottom:612.402667pt;}
.y6_c00159{bottom:632.640000pt;}
.y5_c00159{bottom:653.005333pt;}
.y3_c00159{bottom:673.297333pt;}
.y4_c00159{bottom:674.237333pt;}
.y2_c00159{bottom:694.080000pt;}
.y1_c00159{bottom:714.480000pt;}
.hc_c00159{height:29.866667pt;}
.h10_c00159{height:39.200000pt;}
.h13_c00159{height:40.133333pt;}
.h11_c00159{height:41.066667pt;}
.ha_c00159{height:42.933333pt;}
.he_c00159{height:44.800000pt;}
.h9_c00159{height:45.733333pt;}
.hd_c00159{height:46.666667pt;}
.hf_c00159{height:47.600000pt;}
.hb_c00159{height:48.533333pt;}
.h4_c00159{height:51.333333pt;}
.h12_c00159{height:52.266667pt;}
.h7_c00159{height:59.733333pt;}
.h5_c00159{height:60.666667pt;}
.h3_c00159{height:61.600000pt;}
.h2_c00159{height:62.533333pt;}
.h6_c00159{height:63.466667pt;}
.h8_c00159{height:65.333333pt;}
.h0_c00159{height:896.400000pt;}
.h1_c00159{height:896.666667pt;}
.w0_c00159{width:601.680000pt;}
.w1_c00159{width:602.000000pt;}
.x0_c00159{left:0.000000pt;}
.x52_c00159{left:114.960000pt;}
.x56_c00159{left:116.160000pt;}
.x8d_c00159{left:129.360000pt;}
.x5a_c00159{left:133.200000pt;}
.x32_c00159{left:135.840000pt;}
.x66_c00159{left:137.040000pt;}
.x63_c00159{left:142.320000pt;}
.x27_c00159{left:144.960000pt;}
.x1_c00159{left:146.400000pt;}
.x57_c00159{left:148.800000pt;}
.x53_c00159{left:157.440000pt;}
.x5b_c00159{left:161.280000pt;}
.x64_c00159{left:163.200000pt;}
.x3c_c00159{left:164.880000pt;}
.x4a_c00159{left:165.840000pt;}
.x33_c00159{left:167.520000pt;}
.x2a_c00159{left:169.200000pt;}
.x5c_c00159{left:172.560000pt;}
.xb_c00159{left:174.000000pt;}
.x20_c00159{left:175.440000pt;}
.x2_c00159{left:177.120000pt;}
.x44_c00159{left:179.040000pt;}
.x68_c00159{left:183.120000pt;}
.x8a_c00159{left:184.080000pt;}
.x4b_c00159{left:185.040000pt;}
.x67_c00159{left:187.440000pt;}
.x4e_c00159{left:190.080000pt;}
.xc_c00159{left:192.000000pt;}
.x58_c00159{left:197.760000pt;}
.x5d_c00159{left:198.720000pt;}
.x3d_c00159{left:200.880000pt;}
.x34_c00159{left:201.840000pt;}
.x28_c00159{left:203.280000pt;}
.x61_c00159{left:204.720000pt;}
.x3_c00159{left:206.880000pt;}
.x8b_c00159{left:210.000000pt;}
.x5e_c00159{left:212.400000pt;}
.x13_c00159{left:215.520000pt;}
.x3e_c00159{left:217.920000pt;}
.x2b_c00159{left:218.880000pt;}
.x54_c00159{left:222.720000pt;}
.x29_c00159{left:225.840000pt;}
.x4_c00159{left:230.400000pt;}
.x8e_c00159{left:232.320000pt;}
.x14_c00159{left:234.000000pt;}
.x65_c00159{left:236.400000pt;}
.x45_c00159{left:238.320000pt;}
.x1a_c00159{left:241.680000pt;}
.x35_c00159{left:244.800000pt;}
.x4c_c00159{left:246.240000pt;}
.x59_c00159{left:247.200000pt;}
.xd_c00159{left:249.120000pt;}
.x11_c00159{left:250.800000pt;}
.x39_c00159{left:255.600000pt;}
.x46_c00159{left:256.560000pt;}
.x10_c00159{left:257.760000pt;}
.x9_c00159{left:258.720000pt;}
.x4f_c00159{left:260.640000pt;}
.x36_c00159{left:262.560000pt;}
.x69_c00159{left:264.480000pt;}
.x1b_c00159{left:269.760000pt;}
.x8c_c00159{left:271.680000pt;}
.x55_c00159{left:272.880000pt;}
.x5f_c00159{left:276.480000pt;}
.x3f_c00159{left:278.400000pt;}
.x62_c00159{left:280.080000pt;}
.x87_c00159{left:282.480000pt;}
.x15_c00159{left:285.360000pt;}
.x2c_c00159{left:286.800000pt;}
.xe_c00159{left:288.240000pt;}
.x3a_c00159{left:289.440000pt;}
.x5_c00159{left:290.640000pt;}
.x1c_c00159{left:292.560000pt;}
.x88_c00159{left:294.240000pt;}
.x21_c00159{left:295.920000pt;}
.x47_c00159{left:296.880000pt;}
.xa_c00159{left:299.040000pt;}
.x43_c00159{left:300.240000pt;}
.x12_c00159{left:301.440000pt;}
.x6_c00159{left:313.440000pt;}
.x22_c00159{left:314.640000pt;}
.x2d_c00159{left:316.080000pt;}
.xf_c00159{left:318.480000pt;}
.x50_c00159{left:322.080000pt;}
.x60_c00159{left:324.240000pt;}
.x6a_c00159{left:325.200000pt;}
.x89_c00159{left:326.880000pt;}
.x6c_c00159{left:330.480000pt;}
.x1d_c00159{left:331.440000pt;}
.x7_c00159{left:333.120000pt;}
.x40_c00159{left:334.080000pt;}
.x16_c00159{left:337.920000pt;}
.x3b_c00159{left:339.600000pt;}
.x2e_c00159{left:342.480000pt;}
.x51_c00159{left:344.400000pt;}
.x6d_c00159{left:348.000000pt;}
.x1e_c00159{left:353.040000pt;}
.x74_c00159{left:355.680000pt;}
.x23_c00159{left:356.640000pt;}
.x7e_c00159{left:357.600000pt;}
.x96_c00159{left:359.280000pt;}
.x37_c00159{left:363.840000pt;}
.x8f_c00159{left:365.520000pt;}
.x2f_c00159{left:367.680000pt;}
.x6b_c00159{left:374.640000pt;}
.x6e_c00159{left:375.600000pt;}
.x7f_c00159{left:376.560000pt;}
.x97_c00159{left:381.600000pt;}
.x38_c00159{left:382.800000pt;}
.x78_c00159{left:384.960000pt;}
.x90_c00159{left:386.400000pt;}
.x4d_c00159{left:387.360000pt;}
.x8_c00159{left:388.320000pt;}
.x75_c00159{left:391.200000pt;}
.x48_c00159{left:392.400000pt;}
.x41_c00159{left:395.520000pt;}
.x1f_c00159{left:399.600000pt;}
.x6f_c00159{left:402.000000pt;}
.x76_c00159{left:403.200000pt;}
.x91_c00159{left:406.560000pt;}
.x24_c00159{left:407.760000pt;}
.x30_c00159{left:412.080000pt;}
.x9f_c00159{left:414.480000pt;}
.x25_c00159{left:415.440000pt;}
.x85_c00159{left:418.320000pt;}
.x79_c00159{left:420.000000pt;}
.x42_c00159{left:424.080000pt;}
.x49_c00159{left:425.280000pt;}
.x80_c00159{left:426.720000pt;}
.x17_c00159{left:427.680000pt;}
.xa0_c00159{left:433.920000pt;}
.x9c_c00159{left:435.360000pt;}
.x26_c00159{left:437.520000pt;}
.x31_c00159{left:439.440000pt;}
.x77_c00159{left:440.640000pt;}
.x70_c00159{left:441.840000pt;}
.x98_c00159{left:443.760000pt;}
.x7a_c00159{left:448.320000pt;}
.x99_c00159{left:455.520000pt;}
.x18_c00159{left:457.920000pt;}
.x71_c00159{left:461.040000pt;}
.x81_c00159{left:463.440000pt;}
.x95_c00159{left:465.600000pt;}
.x7b_c00159{left:467.520000pt;}
.x9d_c00159{left:479.040000pt;}
.x82_c00159{left:483.120000pt;}
.x92_c00159{left:484.080000pt;}
.x7c_c00159{left:488.400000pt;}
.xa1_c00159{left:489.600000pt;}
.x9a_c00159{left:494.400000pt;}
.xa2_c00159{left:501.360000pt;}
.x86_c00159{left:502.800000pt;}
.x7d_c00159{left:504.480000pt;}
.x72_c00159{left:507.360000pt;}
.x9b_c00159{left:509.760000pt;}
.x83_c00159{left:511.200000pt;}
.x9e_c00159{left:518.160000pt;}
.x93_c00159{left:519.840000pt;}
.x73_c00159{left:524.160000pt;}
.x19_c00159{left:533.280000pt;}
.x94_c00159{left:544.080000pt;}
.x84_c00159{left:552.960000pt;}
.xa3_c00159{left:555.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_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_ef4e99a7aa2876b3106553d3.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;}
.m8d_c00160{transform:matrix(0.018478,-0.000240,0.003250,0.249979,0,0);-ms-transform:matrix(0.018478,-0.000240,0.003250,0.249979,0,0);-webkit-transform:matrix(0.018478,-0.000240,0.003250,0.249979,0,0);}
.mba_c00160{transform:matrix(0.060360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060360,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{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);}
.ma1_c00160{transform:matrix(0.062665,-0.001128,0.004499,0.249960,0,0);-ms-transform:matrix(0.062665,-0.001128,0.004499,0.249960,0,0);-webkit-transform:matrix(0.062665,-0.001128,0.004499,0.249960,0,0);}
.mf1_c00160{transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);}
.m78_c00160{transform:matrix(0.087963,-0.001144,0.003250,0.249979,0,0);-ms-transform:matrix(0.087963,-0.001144,0.003250,0.249979,0,0);-webkit-transform:matrix(0.087963,-0.001144,0.003250,0.249979,0,0);}
.ma5_c00160{transform:matrix(0.088705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088705,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(0.095757,-0.001245,0.003250,0.249979,0,0);-ms-transform:matrix(0.095757,-0.001245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.095757,-0.001245,0.003250,0.249979,0,0);}
.mea_c00160{transform:matrix(0.119785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119785,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{transform:matrix(0.131096,-0.001573,0.003000,0.249982,0,0);-ms-transform:matrix(0.131096,-0.001573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.131096,-0.001573,0.003000,0.249982,0,0);}
.m0_c00160{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);}
.ma6_c00160{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.me4_c00160{transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{transform:matrix(0.141808,-0.001844,0.003250,0.249979,0,0);-ms-transform:matrix(0.141808,-0.001844,0.003250,0.249979,0,0);-webkit-transform:matrix(0.141808,-0.001844,0.003250,0.249979,0,0);}
.mc9_c00160{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);}
.m38_c00160{transform:matrix(0.147572,-0.003099,0.005249,0.249945,0,0);-ms-transform:matrix(0.147572,-0.003099,0.005249,0.249945,0,0);-webkit-transform:matrix(0.147572,-0.003099,0.005249,0.249945,0,0);}
.m56_c00160{transform:matrix(0.149148,-0.002237,0.003750,0.249972,0,0);-ms-transform:matrix(0.149148,-0.002237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149148,-0.002237,0.003750,0.249972,0,0);}
.m5b_c00160{transform:matrix(0.150264,-0.001803,0.003000,0.249982,0,0);-ms-transform:matrix(0.150264,-0.001803,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150264,-0.001803,0.003000,0.249982,0,0);}
.m2d_c00160{transform:matrix(0.150888,-0.002565,0.004249,0.249964,0,0);-ms-transform:matrix(0.150888,-0.002565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150888,-0.002565,0.004249,0.249964,0,0);}
.m15_c00160{transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.153026,-0.003214,0.005249,0.249945,0,0);-ms-transform:matrix(0.153026,-0.003214,0.005249,0.249945,0,0);-webkit-transform:matrix(0.153026,-0.003214,0.005249,0.249945,0,0);}
.md_c00160{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_c00160{transform:matrix(0.156745,-0.003292,0.005249,0.249945,0,0);-ms-transform:matrix(0.156745,-0.003292,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156745,-0.003292,0.005249,0.249945,0,0);}
.m33_c00160{transform:matrix(0.157065,-0.003298,0.005249,0.249945,0,0);-ms-transform:matrix(0.157065,-0.003298,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157065,-0.003298,0.005249,0.249945,0,0);}
.m5e_c00160{transform:matrix(0.158894,-0.001907,0.003000,0.249982,0,0);-ms-transform:matrix(0.158894,-0.001907,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158894,-0.001907,0.003000,0.249982,0,0);}
.md3_c00160{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);}
.mce_c00160{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);}
.m9_c00160{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);}
.m3e_c00160{transform:matrix(0.163324,-0.003430,0.005249,0.249945,0,0);-ms-transform:matrix(0.163324,-0.003430,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163324,-0.003430,0.005249,0.249945,0,0);}
.ma9_c00160{transform:matrix(0.165396,-0.002812,0.004249,0.249964,0,0);-ms-transform:matrix(0.165396,-0.002812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165396,-0.002812,0.004249,0.249964,0,0);}
.mad_c00160{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);}
.m61_c00160{transform:matrix(0.168393,-0.002021,0.003000,0.249982,0,0);-ms-transform:matrix(0.168393,-0.002021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168393,-0.002021,0.003000,0.249982,0,0);}
.m44_c00160{transform:matrix(0.168773,-0.003544,0.005249,0.249945,0,0);-ms-transform:matrix(0.168773,-0.003544,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168773,-0.003544,0.005249,0.249945,0,0);}
.m57_c00160{transform:matrix(0.169576,-0.002544,0.003750,0.249972,0,0);-ms-transform:matrix(0.169576,-0.002544,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169576,-0.002544,0.003750,0.249972,0,0);}
.m39_c00160{transform:matrix(0.170572,-0.003582,0.005249,0.249945,0,0);-ms-transform:matrix(0.170572,-0.003582,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170572,-0.003582,0.005249,0.249945,0,0);}
.m20_c00160{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);}
.m34_c00160{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);}
.m5d_c00160{transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);-ms-transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172973,-0.002076,0.003000,0.249982,0,0);}
.m71_c00160{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);}
.mcd_c00160{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.176326,-0.003703,0.005249,0.249945,0,0);-ms-transform:matrix(0.176326,-0.003703,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176326,-0.003703,0.005249,0.249945,0,0);}
.m31_c00160{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);}
.maf_c00160{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_c00160{transform:matrix(0.177482,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177482,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177482,-0.002130,0.003000,0.249982,0,0);}
.m3c_c00160{transform:matrix(0.177756,-0.003733,0.005249,0.249945,0,0);-ms-transform:matrix(0.177756,-0.003733,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177756,-0.003733,0.005249,0.249945,0,0);}
.m37_c00160{transform:matrix(0.178066,-0.003739,0.005249,0.249945,0,0);-ms-transform:matrix(0.178066,-0.003739,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178066,-0.003739,0.005249,0.249945,0,0);}
.m1d_c00160{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);}
.m3d_c00160{transform:matrix(0.179565,-0.003771,0.005249,0.249945,0,0);-ms-transform:matrix(0.179565,-0.003771,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179565,-0.003771,0.005249,0.249945,0,0);}
.m36_c00160{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);}
.m14_c00160{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);}
.m68_c00160{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);}
.m32_c00160{transform:matrix(0.184819,-0.003881,0.005249,0.249945,0,0);-ms-transform:matrix(0.184819,-0.003881,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184819,-0.003881,0.005249,0.249945,0,0);}
.mb8_c00160{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);}
.m72_c00160{transform:matrix(0.185449,-0.002411,0.003250,0.249979,0,0);-ms-transform:matrix(0.185449,-0.002411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185449,-0.002411,0.003250,0.249979,0,0);}
.m60_c00160{transform:matrix(0.185927,-0.002231,0.003000,0.249982,0,0);-ms-transform:matrix(0.185927,-0.002231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185927,-0.002231,0.003000,0.249982,0,0);}
.ma_c00160{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);}
.mb0_c00160{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);}
.m6b_c00160{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);}
.mb5_c00160{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);}
.m21_c00160{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);}
.maa_c00160{transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);}
.m2f_c00160{transform:matrix(0.189198,-0.003973,0.005249,0.249945,0,0);-ms-transform:matrix(0.189198,-0.003973,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189198,-0.003973,0.005249,0.249945,0,0);}
.mf0_c00160{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);}
.m7e_c00160{transform:matrix(0.190369,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190369,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190369,-0.002475,0.003250,0.249979,0,0);}
.m4f_c00160{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);}
.m7d_c00160{transform:matrix(0.191539,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191539,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191539,-0.002490,0.003250,0.249979,0,0);}
.me_c00160{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);}
.m9e_c00160{transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);-ms-transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);}
.mc0_c00160{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);}
.m5f_c00160{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);}
.m41_c00160{transform:matrix(0.195357,-0.004102,0.005249,0.249945,0,0);-ms-transform:matrix(0.195357,-0.004102,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195357,-0.004102,0.005249,0.249945,0,0);}
.m2a_c00160{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);}
.m94_c00160{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);}
.m7_c00160{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);}
.m29_c00160{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);}
.m3a_c00160{transform:matrix(0.197696,-0.004152,0.005249,0.249945,0,0);-ms-transform:matrix(0.197696,-0.004152,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197696,-0.004152,0.005249,0.249945,0,0);}
.md0_c00160{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);}
.mbf_c00160{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);}
.mbd_c00160{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);}
.m22_c00160{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);}
.m1c_c00160{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);}
.mbe_c00160{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);}
.m55_c00160{transform:matrix(0.201212,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201212,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201212,-0.003018,0.003750,0.249972,0,0);}
.m84_c00160{transform:matrix(0.201493,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201493,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201493,-0.002619,0.003250,0.249979,0,0);}
.mb9_c00160{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);}
.m8_c00160{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);}
.m70_c00160{transform:matrix(0.202553,-0.002633,0.003250,0.249979,0,0);-ms-transform:matrix(0.202553,-0.002633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202553,-0.002633,0.003250,0.249979,0,0);}
.m18_c00160{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);}
.m19_c00160{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);}
.m7b_c00160{transform:matrix(0.203133,-0.002641,0.003250,0.249979,0,0);-ms-transform:matrix(0.203133,-0.002641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203133,-0.002641,0.003250,0.249979,0,0);}
.mc_c00160{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);}
.m50_c00160{transform:matrix(0.203617,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203617,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203617,-0.003054,0.003750,0.249972,0,0);}
.m30_c00160{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);}
.m7f_c00160{transform:matrix(0.204983,-0.002665,0.003250,0.249979,0,0);-ms-transform:matrix(0.204983,-0.002665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204983,-0.002665,0.003250,0.249979,0,0);}
.m5c_c00160{transform:matrix(0.207255,-0.002487,0.003000,0.249982,0,0);-ms-transform:matrix(0.207255,-0.002487,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207255,-0.002487,0.003000,0.249982,0,0);}
.m6f_c00160{transform:matrix(0.207707,-0.002700,0.003250,0.249979,0,0);-ms-transform:matrix(0.207707,-0.002700,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207707,-0.002700,0.003250,0.249979,0,0);}
.m35_c00160{transform:matrix(0.208204,-0.004372,0.005249,0.249945,0,0);-ms-transform:matrix(0.208204,-0.004372,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208204,-0.004372,0.005249,0.249945,0,0);}
.m53_c00160{transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);}
.m54_c00160{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);}
.m52_c00160{transform:matrix(0.209061,-0.003136,0.003750,0.249972,0,0);-ms-transform:matrix(0.209061,-0.003136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209061,-0.003136,0.003750,0.249972,0,0);}
.mda_c00160{transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);}
.m88_c00160{transform:matrix(0.210002,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.210002,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210002,-0.002730,0.003250,0.249979,0,0);}
.m2e_c00160{transform:matrix(0.210044,-0.004411,0.005249,0.249945,0,0);-ms-transform:matrix(0.210044,-0.004411,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210044,-0.004411,0.005249,0.249945,0,0);}
.m1b_c00160{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);}
.m83_c00160{transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);}
.m66_c00160{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);}
.m73_c00160{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);}
.md2_c00160{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);}
.mc4_c00160{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);}
.m6c_c00160{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);}
.mcf_c00160{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);}
.m27_c00160{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_c00160{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);}
.ma8_c00160{transform:matrix(0.216814,-0.003686,0.004249,0.249964,0,0);-ms-transform:matrix(0.216814,-0.003686,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216814,-0.003686,0.004249,0.249964,0,0);}
.m13_c00160{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);}
.mca_c00160{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);}
.me1_c00160{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);}
.mdf_c00160{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);}
.mc8_c00160{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.219028,-0.003723,0.004249,0.249964,0,0);-ms-transform:matrix(0.219028,-0.003723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219028,-0.003723,0.004249,0.249964,0,0);}
.m85_c00160{transform:matrix(0.219876,-0.002858,0.003250,0.249979,0,0);-ms-transform:matrix(0.219876,-0.002858,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219876,-0.002858,0.003250,0.249979,0,0);}
.md9_c00160{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);}
.m86_c00160{transform:matrix(0.221301,-0.002877,0.003250,0.249979,0,0);-ms-transform:matrix(0.221301,-0.002877,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221301,-0.002877,0.003250,0.249979,0,0);}
.m5a_c00160{transform:matrix(0.222349,-0.002668,0.003000,0.249982,0,0);-ms-transform:matrix(0.222349,-0.002668,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222349,-0.002668,0.003000,0.249982,0,0);}
.m6d_c00160{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);}
.mbb_c00160{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);}
.mdb_c00160{transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{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);}
.mac_c00160{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);}
.m6a_c00160{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);}
.m8c_c00160{transform:matrix(0.225991,-0.002938,0.003250,0.249979,0,0);-ms-transform:matrix(0.225991,-0.002938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225991,-0.002938,0.003250,0.249979,0,0);}
.m26_c00160{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);}
.m91_c00160{transform:matrix(0.226491,-0.002944,0.003250,0.249979,0,0);-ms-transform:matrix(0.226491,-0.002944,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226491,-0.002944,0.003250,0.249979,0,0);}
.mc2_c00160{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);}
.m7c_c00160{transform:matrix(0.227056,-0.002952,0.003250,0.249979,0,0);-ms-transform:matrix(0.227056,-0.002952,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227056,-0.002952,0.003250,0.249979,0,0);}
.m24_c00160{transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);}
.md4_c00160{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);}
.mf_c00160{transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);}
.md1_c00160{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);}
.m89_c00160{transform:matrix(0.230091,-0.002991,0.003250,0.249979,0,0);-ms-transform:matrix(0.230091,-0.002991,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230091,-0.002991,0.003250,0.249979,0,0);}
.m5_c00160{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);}
.mcb_c00160{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);}
.me7_c00160{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);}
.m90_c00160{transform:matrix(0.233030,-0.003029,0.003250,0.249979,0,0);-ms-transform:matrix(0.233030,-0.003029,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233030,-0.003029,0.003250,0.249979,0,0);}
.mc3_c00160{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);}
.mf5_c00160{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);}
.mb6_c00160{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00160{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);}
.m28_c00160{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);}
.m1e_c00160{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.mc6_c00160{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);}
.mb4_c00160{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);}
.mdc_c00160{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);}
.m46_c00160{transform:matrix(0.240121,-0.005523,0.005748,0.249934,0,0);-ms-transform:matrix(0.240121,-0.005523,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240121,-0.005523,0.005748,0.249934,0,0);}
.m93_c00160{transform:matrix(0.240450,-0.003126,0.003250,0.249979,0,0);-ms-transform:matrix(0.240450,-0.003126,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240450,-0.003126,0.003250,0.249979,0,0);}
.m80_c00160{transform:matrix(0.241455,-0.003139,0.003250,0.249979,0,0);-ms-transform:matrix(0.241455,-0.003139,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241455,-0.003139,0.003250,0.249979,0,0);}
.m25_c00160{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);}
.m75_c00160{transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);}
.mf3_c00160{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);}
.m8e_c00160{transform:matrix(0.242674,-0.003155,0.003250,0.249979,0,0);-ms-transform:matrix(0.242674,-0.003155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242674,-0.003155,0.003250,0.249979,0,0);}
.m4_c00160{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);}
.mb7_c00160{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);}
.me2_c00160{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);}
.m23_c00160{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.med_c00160{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);}
.me5_c00160{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.247169,-0.003213,0.003250,0.249979,0,0);-ms-transform:matrix(0.247169,-0.003213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247169,-0.003213,0.003250,0.249979,0,0);}
.m64_c00160{transform:matrix(0.247517,-0.002970,0.003000,0.249982,0,0);-ms-transform:matrix(0.247517,-0.002970,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247517,-0.002970,0.003000,0.249982,0,0);}
.mf4_c00160{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);}
.mae_c00160{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);}
.mc1_c00160{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);}
.m1a_c00160{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);-ms-transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);}
.md5_c00160{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);}
.m47_c00160{transform:matrix(0.253813,-0.005838,0.005748,0.249934,0,0);-ms-transform:matrix(0.253813,-0.005838,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253813,-0.005838,0.005748,0.249934,0,0);}
.md6_c00160{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);}
.m98_c00160{transform:matrix(0.256538,-0.003335,0.003250,0.249979,0,0);-ms-transform:matrix(0.256538,-0.003335,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256538,-0.003335,0.003250,0.249979,0,0);}
.me6_c00160{transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);}
.mef_c00160{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);}
.ma4_c00160{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00160{transform:matrix(0.265972,-0.004787,0.004499,0.249960,0,0);-ms-transform:matrix(0.265972,-0.004787,0.004499,0.249960,0,0);-webkit-transform:matrix(0.265972,-0.004787,0.004499,0.249960,0,0);}
.m6e_c00160{transform:matrix(0.265993,-0.003458,0.003250,0.249979,0,0);-ms-transform:matrix(0.265993,-0.003458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265993,-0.003458,0.003250,0.249979,0,0);}
.ma7_c00160{transform:matrix(0.266382,-0.004528,0.004249,0.249964,0,0);-ms-transform:matrix(0.266382,-0.004528,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266382,-0.004528,0.004249,0.249964,0,0);}
.m81_c00160{transform:matrix(0.266512,-0.003465,0.003250,0.249979,0,0);-ms-transform:matrix(0.266512,-0.003465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266512,-0.003465,0.003250,0.249979,0,0);}
.m17_c00160{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);}
.m1f_c00160{transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278830,0.000000,0.000000,0.250000,0,0);}
.mde_c00160{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.279738,-0.005875,0.005249,0.249945,0,0);-ms-transform:matrix(0.279738,-0.005875,0.005249,0.249945,0,0);-webkit-transform:matrix(0.279738,-0.005875,0.005249,0.249945,0,0);}
.m48_c00160{transform:matrix(0.281431,-0.006473,0.005748,0.249934,0,0);-ms-transform:matrix(0.281431,-0.006473,0.005748,0.249934,0,0);-webkit-transform:matrix(0.281431,-0.006473,0.005748,0.249934,0,0);}
.m9a_c00160{transform:matrix(0.282861,-0.003677,0.003250,0.249979,0,0);-ms-transform:matrix(0.282861,-0.003677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282861,-0.003677,0.003250,0.249979,0,0);}
.m8a_c00160{transform:matrix(0.284821,-0.003703,0.003250,0.249979,0,0);-ms-transform:matrix(0.284821,-0.003703,0.003250,0.249979,0,0);-webkit-transform:matrix(0.284821,-0.003703,0.003250,0.249979,0,0);}
.mc7_c00160{transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285045,0.000000,0.000000,0.250000,0,0);}
.m9b_c00160{transform:matrix(0.287756,-0.003741,0.003250,0.249979,0,0);-ms-transform:matrix(0.287756,-0.003741,0.003250,0.249979,0,0);-webkit-transform:matrix(0.287756,-0.003741,0.003250,0.249979,0,0);}
.mee_c00160{transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288660,0.000000,0.000000,0.250000,0,0);}
.md8_c00160{transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);}
.m9f_c00160{transform:matrix(0.297257,-0.005351,0.004499,0.249960,0,0);-ms-transform:matrix(0.297257,-0.005351,0.004499,0.249960,0,0);-webkit-transform:matrix(0.297257,-0.005351,0.004499,0.249960,0,0);}
.mec_c00160{transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297275,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297385,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.mf2_c00160{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);}
.mc5_c00160{transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);-ms-transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);}
.m8b_c00160{transform:matrix(0.306644,-0.003986,0.003250,0.249979,0,0);-ms-transform:matrix(0.306644,-0.003986,0.003250,0.249979,0,0);-webkit-transform:matrix(0.306644,-0.003986,0.003250,0.249979,0,0);}
.m97_c00160{transform:matrix(0.308524,-0.004011,0.003250,0.249979,0,0);-ms-transform:matrix(0.308524,-0.004011,0.003250,0.249979,0,0);-webkit-transform:matrix(0.308524,-0.004011,0.003250,0.249979,0,0);}
.m4a_c00160{transform:matrix(0.309188,-0.007111,0.005748,0.249934,0,0);-ms-transform:matrix(0.309188,-0.007111,0.005748,0.249934,0,0);-webkit-transform:matrix(0.309188,-0.007111,0.005748,0.249934,0,0);}
.mdd_c00160{transform:matrix(0.310830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310830,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.314325,-0.005344,0.004249,0.249964,0,0);-ms-transform:matrix(0.314325,-0.005344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.314325,-0.005344,0.004249,0.249964,0,0);}
.md7_c00160{transform:matrix(0.314325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314325,0.000000,0.000000,0.250000,0,0);}
.me9_c00160{transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.314904,-0.005353,0.004249,0.249964,0,0);-ms-transform:matrix(0.314904,-0.005353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.314904,-0.005353,0.004249,0.249964,0,0);}
.m87_c00160{transform:matrix(0.316588,-0.004116,0.003250,0.249979,0,0);-ms-transform:matrix(0.316588,-0.004116,0.003250,0.249979,0,0);-webkit-transform:matrix(0.316588,-0.004116,0.003250,0.249979,0,0);}
.m9d_c00160{transform:matrix(0.321703,-0.004182,0.003250,0.249979,0,0);-ms-transform:matrix(0.321703,-0.004182,0.003250,0.249979,0,0);-webkit-transform:matrix(0.321703,-0.004182,0.003250,0.249979,0,0);}
.m49_c00160{transform:matrix(0.327148,-0.007524,0.005748,0.249934,0,0);-ms-transform:matrix(0.327148,-0.007524,0.005748,0.249934,0,0);-webkit-transform:matrix(0.327148,-0.007524,0.005748,0.249934,0,0);}
.ma0_c00160{transform:matrix(0.332681,-0.005988,0.004499,0.249960,0,0);-ms-transform:matrix(0.332681,-0.005988,0.004499,0.249960,0,0);-webkit-transform:matrix(0.332681,-0.005988,0.004499,0.249960,0,0);}
.mb3_c00160{transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);}
.mbc_c00160{transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343360,0.000000,0.000000,0.250000,0,0);}
.meb_c00160{transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.346351,-0.005195,0.003750,0.249972,0,0);-ms-transform:matrix(0.346351,-0.005195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.346351,-0.005195,0.003750,0.249972,0,0);}
.m3_c00160{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);}
.m16_c00160{transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);}
.mb2_c00160{transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{transform:matrix(0.369299,-0.004801,0.003250,0.249979,0,0);-ms-transform:matrix(0.369299,-0.004801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.369299,-0.004801,0.003250,0.249979,0,0);}
.m4c_c00160{transform:matrix(0.370517,-0.008522,0.005748,0.249934,0,0);-ms-transform:matrix(0.370517,-0.008522,0.005748,0.249934,0,0);-webkit-transform:matrix(0.370517,-0.008522,0.005748,0.249934,0,0);}
.m45_c00160{transform:matrix(0.371357,-0.008541,0.005748,0.249934,0,0);-ms-transform:matrix(0.371357,-0.008541,0.005748,0.249934,0,0);-webkit-transform:matrix(0.371357,-0.008541,0.005748,0.249934,0,0);}
.m9c_c00160{transform:matrix(0.371674,-0.004832,0.003250,0.249979,0,0);-ms-transform:matrix(0.371674,-0.004832,0.003250,0.249979,0,0);-webkit-transform:matrix(0.371674,-0.004832,0.003250,0.249979,0,0);}
.m2_c00160{transform:matrix(0.390900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390900,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{transform:matrix(0.400537,-0.008411,0.005249,0.249945,0,0);-ms-transform:matrix(0.400537,-0.008411,0.005249,0.249945,0,0);-webkit-transform:matrix(0.400537,-0.008411,0.005249,0.249945,0,0);}
.m51_c00160{transform:matrix(0.446390,-0.006696,0.003750,0.249972,0,0);-ms-transform:matrix(0.446390,-0.006696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.446390,-0.006696,0.003750,0.249972,0,0);}
.m59_c00160{transform:matrix(0.463325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463325,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);}
.me8_c00160{transform:matrix(0.479395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479395,0.000000,0.000000,0.250000,0,0);}
.m74_c00160{transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00160{transform:matrix(0.488414,-0.006349,0.003250,0.249979,0,0);-ms-transform:matrix(0.488414,-0.006349,0.003250,0.249979,0,0);-webkit-transform:matrix(0.488414,-0.006349,0.003250,0.249979,0,0);}
.me3_c00160{transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);}
.m65_c00160{transform:matrix(0.494960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494960,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.497133,-0.006463,0.003250,0.249979,0,0);-ms-transform:matrix(0.497133,-0.006463,0.003250,0.249979,0,0);-webkit-transform:matrix(0.497133,-0.006463,0.003250,0.249979,0,0);}
.m4d_c00160{transform:matrix(0.520932,-0.011981,0.005748,0.249934,0,0);-ms-transform:matrix(0.520932,-0.011981,0.005748,0.249934,0,0);-webkit-transform:matrix(0.520932,-0.011981,0.005748,0.249934,0,0);}
.m11_c00160{transform:matrix(0.535663,-0.009106,0.004249,0.249964,0,0);-ms-transform:matrix(0.535663,-0.009106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.535663,-0.009106,0.004249,0.249964,0,0);}
.me0_c00160{transform:matrix(0.554585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554585,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.586920,-0.009978,0.004249,0.249964,0,0);-ms-transform:matrix(0.586920,-0.009978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.586920,-0.009978,0.004249,0.249964,0,0);}
.ma3_c00160{transform:matrix(0.597888,-0.010762,0.004499,0.249960,0,0);-ms-transform:matrix(0.597888,-0.010762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.597888,-0.010762,0.004499,0.249960,0,0);}
.m4b_c00160{transform:matrix(0.610604,-0.014044,0.005748,0.249934,0,0);-ms-transform:matrix(0.610604,-0.014044,0.005748,0.249934,0,0);-webkit-transform:matrix(0.610604,-0.014044,0.005748,0.249934,0,0);}
.m58_c00160{transform:matrix(0.664130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664130,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.730140,-0.012412,0.004249,0.249964,0,0);-ms-transform:matrix(0.730140,-0.012412,0.004249,0.249964,0,0);-webkit-transform:matrix(0.730140,-0.012412,0.004249,0.249964,0,0);}
.m77_c00160{transform:matrix(1.660790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.660790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.660790,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;}
.fs0_c00160{font-size:22.050000px;}
.fs4_c00160{font-size:24.150000px;}
.fs1d_c00160{font-size:30.450000px;}
.fs17_c00160{font-size:33.600000px;}
.fs16_c00160{font-size:34.650000px;}
.fs1c_c00160{font-size:40.950000px;}
.fs13_c00160{font-size:45.150000px;}
.fs18_c00160{font-size:46.203904px;}
.fs7_c00160{font-size:47.250000px;}
.fs1a_c00160{font-size:47.253992px;}
.fs20_c00160{font-size:48.300000px;}
.fs19_c00160{font-size:48.304081px;}
.fs14_c00160{font-size:49.350000px;}
.fs1f_c00160{font-size:50.400000px;}
.fs6_c00160{font-size:51.450000px;}
.fs15_c00160{font-size:51.454347px;}
.fs5_c00160{font-size:52.500000px;}
.fs1e_c00160{font-size:54.600000px;}
.fs1b_c00160{font-size:59.859695px;}
.fs10_c00160{font-size:63.000000px;}
.fs12_c00160{font-size:65.100000px;}
.fs1_c00160{font-size:66.150000px;}
.fs3_c00160{font-size:66.159558px;}
.fse_c00160{font-size:69.307796px;}
.fsc_c00160{font-size:69.318327px;}
.fs2_c00160{font-size:70.350000px;}
.fs9_c00160{font-size:70.365510px;}
.fsd_c00160{font-size:70.368605px;}
.fsf_c00160{font-size:71.400000px;}
.fs11_c00160{font-size:71.405141px;}
.fsa_c00160{font-size:74.566436px;}
.fsb_c00160{font-size:88.219446px;}
.fs8_c00160{font-size:138.620026px;}
.y0_c00160{bottom:0.000000px;}
.y57_c00160{bottom:107.406000px;}
.y59_c00160{bottom:109.620000px;}
.y58_c00160{bottom:116.796000px;}
.y5a_c00160{bottom:117.615000px;}
.y77_c00160{bottom:170.904564px;}
.y78_c00160{bottom:171.101144px;}
.y79_c00160{bottom:171.384888px;}
.y7a_c00160{bottom:171.536267px;}
.y7b_c00160{bottom:172.189302px;}
.y7c_c00160{bottom:172.754510px;}
.y7d_c00160{bottom:173.080725px;}
.y7e_c00160{bottom:173.719545px;}
.y7f_c00160{bottom:174.108804px;}
.yb0_c00160{bottom:174.153000px;}
.yb1_c00160{bottom:174.667500px;}
.yb2_c00160{bottom:175.098000px;}
.yb3_c00160{bottom:175.851000px;}
.yb4_c00160{bottom:176.394000px;}
.yb5_c00160{bottom:177.117000px;}
.yb6_c00160{bottom:178.470000px;}
.y76_c00160{bottom:190.725074px;}
.y71_c00160{bottom:190.725500px;}
.y74_c00160{bottom:190.725501px;}
.y75_c00160{bottom:190.725652px;}
.y72_c00160{bottom:190.725720px;}
.y73_c00160{bottom:190.725881px;}
.y70_c00160{bottom:190.726079px;}
.y6e_c00160{bottom:190.726418px;}
.y6d_c00160{bottom:190.726697px;}
.y6f_c00160{bottom:190.726758px;}
.ya8_c00160{bottom:192.244500px;}
.ya9_c00160{bottom:192.702000px;}
.yaa_c00160{bottom:192.873000px;}
.yab_c00160{bottom:193.335000px;}
.yac_c00160{bottom:193.582500px;}
.yad_c00160{bottom:194.385000px;}
.yae_c00160{bottom:194.514000px;}
.yaf_c00160{bottom:194.683500px;}
.y69_c00160{bottom:208.896002px;}
.y68_c00160{bottom:208.896450px;}
.y6a_c00160{bottom:208.896672px;}
.y6b_c00160{bottom:208.896753px;}
.y6c_c00160{bottom:208.897003px;}
.ya7_c00160{bottom:210.999000px;}
.y65_c00160{bottom:225.396320px;}
.y63_c00160{bottom:225.396547px;}
.y64_c00160{bottom:225.396819px;}
.y67_c00160{bottom:225.396872px;}
.y66_c00160{bottom:225.396900px;}
.y62_c00160{bottom:225.396996px;}
.y9f_c00160{bottom:227.071500px;}
.ya0_c00160{bottom:227.788500px;}
.ya1_c00160{bottom:228.129000px;}
.ya2_c00160{bottom:228.700500px;}
.ya3_c00160{bottom:229.041000px;}
.ya4_c00160{bottom:229.572000px;}
.ya5_c00160{bottom:229.843500px;}
.ya6_c00160{bottom:230.632500px;}
.y5c_c00160{bottom:241.905276px;}
.y5b_c00160{bottom:241.921500px;}
.y5d_c00160{bottom:242.153472px;}
.y5e_c00160{bottom:242.648246px;}
.y5f_c00160{bottom:243.739817px;}
.y60_c00160{bottom:244.417286px;}
.y61_c00160{bottom:244.912157px;}
.y96_c00160{bottom:245.047500px;}
.y97_c00160{bottom:245.367000px;}
.y98_c00160{bottom:246.208500px;}
.y99_c00160{bottom:246.439500px;}
.y9a_c00160{bottom:246.853500px;}
.y9b_c00160{bottom:247.323000px;}
.y9c_c00160{bottom:247.539000px;}
.y9d_c00160{bottom:247.849500px;}
.y9e_c00160{bottom:248.004000px;}
.y51_c00160{bottom:259.201500px;}
.y52_c00160{bottom:259.453928px;}
.y53_c00160{bottom:260.240460px;}
.y54_c00160{bottom:261.079233px;}
.y55_c00160{bottom:261.381074px;}
.y56_c00160{bottom:261.840942px;}
.y95_c00160{bottom:264.190500px;}
.y13_c00160{bottom:278.613000px;}
.y50_c00160{bottom:280.147500px;}
.y94_c00160{bottom:282.610500px;}
.y12_c00160{bottom:296.188500px;}
.y93_c00160{bottom:300.172500px;}
.y11_c00160{bottom:314.037000px;}
.y92_c00160{bottom:317.244000px;}
.y10_c00160{bottom:331.257000px;}
.y4f_c00160{bottom:332.916000px;}
.y91_c00160{bottom:334.891500px;}
.y3_c00160{bottom:378.007500px;}
.y4_c00160{bottom:379.248000px;}
.y5_c00160{bottom:380.113500px;}
.y6_c00160{bottom:380.908500px;}
.y7_c00160{bottom:381.756000px;}
.y8_c00160{bottom:382.503000px;}
.y9_c00160{bottom:383.464500px;}
.ya_c00160{bottom:384.405000px;}
.y88_c00160{bottom:390.420000px;}
.y87_c00160{bottom:400.410000px;}
.y2_c00160{bottom:402.942000px;}
.y80_c00160{bottom:404.196000px;}
.y81_c00160{bottom:404.217897px;}
.y86_c00160{bottom:404.323500px;}
.y82_c00160{bottom:405.016962px;}
.y83_c00160{bottom:405.207339px;}
.y84_c00160{bottom:405.409191px;}
.y85_c00160{bottom:406.487679px;}
.yf_c00160{bottom:413.100000px;}
.yc_c00160{bottom:443.961000px;}
.yd_c00160{bottom:444.592074px;}
.ye_c00160{bottom:446.877868px;}
.yb_c00160{bottom:485.190000px;}
.y4e_c00160{bottom:485.893500px;}
.y90_c00160{bottom:487.090500px;}
.y1_c00160{bottom:536.896500px;}
.y8f_c00160{bottom:543.240000px;}
.y43_c00160{bottom:549.181500px;}
.y44_c00160{bottom:549.567186px;}
.y45_c00160{bottom:550.140594px;}
.y46_c00160{bottom:550.532724px;}
.y47_c00160{bottom:551.067216px;}
.y48_c00160{bottom:551.310198px;}
.y49_c00160{bottom:551.984298px;}
.y4a_c00160{bottom:552.298704px;}
.y4b_c00160{bottom:552.771744px;}
.y4c_c00160{bottom:553.399566px;}
.y4d_c00160{bottom:553.536366px;}
.y8e_c00160{bottom:575.877000px;}
.y41_c00160{bottom:641.638500px;}
.y42_c00160{bottom:654.349500px;}
.y37_c00160{bottom:665.824500px;}
.y38_c00160{bottom:666.243405px;}
.y39_c00160{bottom:666.769972px;}
.y3a_c00160{bottom:667.327005px;}
.y3b_c00160{bottom:667.386585px;}
.y3c_c00160{bottom:667.648777px;}
.y3d_c00160{bottom:668.111827px;}
.y3e_c00160{bottom:668.784847px;}
.y3f_c00160{bottom:670.030830px;}
.y40_c00160{bottom:670.380120px;}
.y89_c00160{bottom:692.554500px;}
.y8a_c00160{bottom:693.283264px;}
.y8b_c00160{bottom:693.941012px;}
.y8c_c00160{bottom:694.400266px;}
.y8d_c00160{bottom:695.437759px;}
.y34_c00160{bottom:711.718883px;}
.y35_c00160{bottom:712.725477px;}
.y36_c00160{bottom:713.737506px;}
.y2e_c00160{bottom:733.420500px;}
.y2f_c00160{bottom:734.152935px;}
.y30_c00160{bottom:735.816352px;}
.y31_c00160{bottom:736.358037px;}
.y32_c00160{bottom:737.240340px;}
.y33_c00160{bottom:738.116295px;}
.y2b_c00160{bottom:758.961627px;}
.y2c_c00160{bottom:759.629928px;}
.y2d_c00160{bottom:762.246069px;}
.y24_c00160{bottom:784.078053px;}
.y25_c00160{bottom:784.801455px;}
.y26_c00160{bottom:785.476934px;}
.y27_c00160{bottom:786.613563px;}
.y28_c00160{bottom:787.259156px;}
.y29_c00160{bottom:788.084603px;}
.y2a_c00160{bottom:788.906447px;}
.y1e_c00160{bottom:806.761076px;}
.y1f_c00160{bottom:807.615786px;}
.y20_c00160{bottom:808.950434px;}
.y21_c00160{bottom:810.283160px;}
.y22_c00160{bottom:810.765837px;}
.y23_c00160{bottom:811.537836px;}
.y17_c00160{bottom:829.177500px;}
.y18_c00160{bottom:830.078369px;}
.y19_c00160{bottom:830.742452px;}
.y1a_c00160{bottom:832.495395px;}
.y1b_c00160{bottom:833.963138px;}
.y1c_c00160{bottom:834.460680px;}
.y1d_c00160{bottom:834.938630px;}
.y14_c00160{bottom:873.189000px;}
.y15_c00160{bottom:876.853860px;}
.y16_c00160{bottom:878.189040px;}
.h2_c00160{height:22.050000px;}
.h6_c00160{height:24.150000px;}
.h1f_c00160{height:30.450000px;}
.h19_c00160{height:33.600000px;}
.h18_c00160{height:34.650000px;}
.h1e_c00160{height:40.950000px;}
.h15_c00160{height:45.150000px;}
.h1a_c00160{height:46.203904px;}
.h9_c00160{height:47.250000px;}
.h1c_c00160{height:47.253992px;}
.h22_c00160{height:48.300000px;}
.h1b_c00160{height:48.304081px;}
.h16_c00160{height:49.350000px;}
.h21_c00160{height:50.400000px;}
.h8_c00160{height:51.450000px;}
.h17_c00160{height:51.454347px;}
.h7_c00160{height:52.500000px;}
.h20_c00160{height:54.600000px;}
.h1d_c00160{height:59.859695px;}
.h12_c00160{height:63.000000px;}
.h14_c00160{height:65.100000px;}
.h3_c00160{height:66.150000px;}
.h5_c00160{height:66.159558px;}
.h10_c00160{height:69.307796px;}
.he_c00160{height:69.318327px;}
.h4_c00160{height:70.350000px;}
.hb_c00160{height:70.365510px;}
.hf_c00160{height:70.368605px;}
.h11_c00160{height:71.400000px;}
.h13_c00160{height:71.405141px;}
.hc_c00160{height:74.566436px;}
.hd_c00160{height:88.219446px;}
.ha_c00160{height:138.620026px;}
.h1_c00160{height:1005.000000px;}
.h0_c00160{height:1005.150000px;}
.w0_c00160{width:705.450000px;}
.w1_c00160{width:705.750000px;}
.x0_c00160{left:0.000000px;}
.x51_c00160{left:72.514500px;}
.x57_c00160{left:76.105500px;}
.x56_c00160{left:77.353500px;}
.x52_c00160{left:91.932000px;}
.x26_c00160{left:93.420000px;}
.x15_c00160{left:95.850000px;}
.x1e_c00160{left:96.930000px;}
.x1f_c00160{left:110.430000px;}
.x27_c00160{left:111.780000px;}
.x65_c00160{left:115.152708px;}
.x34_c00160{left:121.246248px;}
.x2c_c00160{left:125.608500px;}
.x66_c00160{left:126.797208px;}
.x3f_c00160{left:127.993500px;}
.x16_c00160{left:129.060000px;}
.x8_c00160{left:130.971000px;}
.x58_c00160{left:133.257000px;}
.x5f_c00160{left:136.894980px;}
.x20_c00160{left:138.780000px;}
.x3_c00160{left:140.400000px;}
.x60_c00160{left:146.075040px;}
.x5a_c00160{left:148.237766px;}
.x17_c00160{left:151.200000px;}
.x21_c00160{left:153.090000px;}
.x28_c00160{left:156.330000px;}
.x4_c00160{left:157.680000px;}
.x45_c00160{left:161.356500px;}
.x29_c00160{left:165.199500px;}
.x1a_c00160{left:168.750000px;}
.x5_c00160{left:171.990000px;}
.x67_c00160{left:177.030708px;}
.x22_c00160{left:179.550000px;}
.x18_c00160{left:180.630000px;}
.x3d_c00160{left:182.780318px;}
.x61_c00160{left:185.498709px;}
.x9_c00160{left:187.386000px;}
.x35_c00160{left:191.218229px;}
.x5b_c00160{left:197.651612px;}
.x19_c00160{left:198.990000px;}
.x1_c00160{left:200.340000px;}
.x62_c00160{left:205.480583px;}
.x2_c00160{left:207.090000px;}
.x46_c00160{left:209.140500px;}
.x5c_c00160{left:211.692491px;}
.x1b_c00160{left:216.810000px;}
.x68_c00160{left:220.508208px;}
.x11_c00160{left:222.328500px;}
.x63_c00160{left:223.842183px;}
.x6_c00160{left:224.910000px;}
.xa_c00160{left:226.746000px;}
.x40_c00160{left:228.160500px;}
.x55_c00160{left:230.850000px;}
.x23_c00160{left:231.930000px;}
.x4f_c00160{left:233.550000px;}
.x31_c00160{left:235.745130px;}
.x53_c00160{left:240.174000px;}
.x3e_c00160{left:242.009994px;}
.x5d_c00160{left:243.554834px;}
.x7_c00160{left:244.620000px;}
.x36_c00160{left:248.058925px;}
.x10_c00160{left:249.750000px;}
.x1c_c00160{left:252.720000px;}
.x14_c00160{left:255.150000px;}
.x12_c00160{left:259.450500px;}
.xb_c00160{left:262.908000px;}
.x4d_c00160{left:265.410000px;}
.x1d_c00160{left:266.760000px;}
.x59_c00160{left:269.337000px;}
.x44_c00160{left:273.510000px;}
.x54_c00160{left:275.548500px;}
.x4c_c00160{left:277.020000px;}
.x6d_c00160{left:278.100000px;}
.x37_c00160{left:280.302087px;}
.x2d_c00160{left:283.603500px;}
.x24_c00160{left:285.930000px;}
.x64_c00160{left:287.296908px;}
.x3a_c00160{left:288.708251px;}
.x5e_c00160{left:294.588953px;}
.x4e_c00160{left:296.460000px;}
.xc_c00160{left:301.401000px;}
.x50_c00160{left:302.670000px;}
.x25_c00160{left:303.750000px;}
.x47_c00160{left:306.607500px;}
.x69_c00160{left:319.699500px;}
.x38_c00160{left:321.609969px;}
.x43_c00160{left:322.920000px;}
.x3c_c00160{left:324.636000px;}
.x32_c00160{left:326.480520px;}
.x6a_c00160{left:330.276000px;}
.x77_c00160{left:332.370000px;}
.xd_c00160{left:335.350500px;}
.x79_c00160{left:336.420000px;}
.x86_c00160{left:339.660000px;}
.x6b_c00160{left:341.490000px;}
.x83_c00160{left:342.630000px;}
.x2e_c00160{left:353.496000px;}
.x8d_c00160{left:356.016000px;}
.x39_c00160{left:362.674820px;}
.x33_c00160{left:365.100339px;}
.x7a_c00160{left:371.790000px;}
.x8b_c00160{left:375.300000px;}
.x2f_c00160{left:377.188500px;}
.xe_c00160{left:379.027500px;}
.x2a_c00160{left:380.779500px;}
.x48_c00160{left:388.983000px;}
.x94_c00160{left:390.828000px;}
.x84_c00160{left:392.580000px;}
.x13_c00160{left:393.909000px;}
.x78_c00160{left:396.630000px;}
.x30_c00160{left:399.948000px;}
.x6c_c00160{left:401.406000px;}
.x9a_c00160{left:402.771000px;}
.x87_c00160{left:404.190000px;}
.x41_c00160{left:408.415500px;}
.x95_c00160{left:413.503500px;}
.x85_c00160{left:415.260000px;}
.xf_c00160{left:421.797000px;}
.x88_c00160{left:423.360000px;}
.x72_c00160{left:424.710000px;}
.x3b_c00160{left:426.435046px;}
.x49_c00160{left:428.403000px;}
.x42_c00160{left:431.701500px;}
.x8e_c00160{left:433.464000px;}
.x6e_c00160{left:436.213500px;}
.x7f_c00160{left:440.640000px;}
.x7b_c00160{left:442.800000px;}
.x9b_c00160{left:444.937500px;}
.x80_c00160{left:447.660000px;}
.x8f_c00160{left:448.903500px;}
.x96_c00160{left:451.602000px;}
.x89_c00160{left:453.870000px;}
.x73_c00160{left:456.300000px;}
.x2b_c00160{left:459.319500px;}
.x7c_c00160{left:462.240000px;}
.x8a_c00160{left:473.580000px;}
.x6f_c00160{left:474.904500px;}
.x90_c00160{left:476.473500px;}
.x4a_c00160{left:480.721500px;}
.x81_c00160{left:487.080000px;}
.x4b_c00160{left:492.121500px;}
.x7d_c00160{left:494.910000px;}
.x8c_c00160{left:498.150000px;}
.x70_c00160{left:501.919500px;}
.x91_c00160{left:507.745500px;}
.x74_c00160{left:510.570000px;}
.x7e_c00160{left:514.080000px;}
.x9d_c00160{left:515.281500px;}
.x92_c00160{left:522.112500px;}
.x9c_c00160{left:523.495500px;}
.x97_c00160{left:527.788500px;}
.x75_c00160{left:533.250000px;}
.x76_c00160{left:534.870000px;}
.x82_c00160{left:543.510000px;}
.x93_c00160{left:553.159500px;}
.x71_c00160{left:562.948500px;}
.x99_c00160{left:570.778500px;}
.x98_c00160{left:580.422000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.fs0_c00160{font-size:19.600000pt;}
.fs4_c00160{font-size:21.466667pt;}
.fs1d_c00160{font-size:27.066667pt;}
.fs17_c00160{font-size:29.866667pt;}
.fs16_c00160{font-size:30.800000pt;}
.fs1c_c00160{font-size:36.400000pt;}
.fs13_c00160{font-size:40.133333pt;}
.fs18_c00160{font-size:41.070137pt;}
.fs7_c00160{font-size:42.000000pt;}
.fs1a_c00160{font-size:42.003549pt;}
.fs20_c00160{font-size:42.933333pt;}
.fs19_c00160{font-size:42.936961pt;}
.fs14_c00160{font-size:43.866667pt;}
.fs1f_c00160{font-size:44.800000pt;}
.fs6_c00160{font-size:45.733333pt;}
.fs15_c00160{font-size:45.737198pt;}
.fs5_c00160{font-size:46.666667pt;}
.fs1e_c00160{font-size:48.533333pt;}
.fs1b_c00160{font-size:53.208618pt;}
.fs10_c00160{font-size:56.000000pt;}
.fs12_c00160{font-size:57.866667pt;}
.fs1_c00160{font-size:58.800000pt;}
.fs3_c00160{font-size:58.808496pt;}
.fse_c00160{font-size:61.606930pt;}
.fsc_c00160{font-size:61.616291pt;}
.fs2_c00160{font-size:62.533333pt;}
.fs9_c00160{font-size:62.547120pt;}
.fsd_c00160{font-size:62.549871pt;}
.fsf_c00160{font-size:63.466667pt;}
.fs11_c00160{font-size:63.471236pt;}
.fsa_c00160{font-size:66.281277pt;}
.fsb_c00160{font-size:78.417285pt;}
.fs8_c00160{font-size:123.217801pt;}
.y0_c00160{bottom:0.000000pt;}
.y57_c00160{bottom:95.472000pt;}
.y59_c00160{bottom:97.440000pt;}
.y58_c00160{bottom:103.818667pt;}
.y5a_c00160{bottom:104.546667pt;}
.y77_c00160{bottom:151.915168pt;}
.y78_c00160{bottom:152.089905pt;}
.y79_c00160{bottom:152.342123pt;}
.y7a_c00160{bottom:152.476681pt;}
.y7b_c00160{bottom:153.057157pt;}
.y7c_c00160{bottom:153.559564pt;}
.y7d_c00160{bottom:153.849533pt;}
.y7e_c00160{bottom:154.417373pt;}
.y7f_c00160{bottom:154.763381pt;}
.yb0_c00160{bottom:154.802667pt;}
.yb1_c00160{bottom:155.260000pt;}
.yb2_c00160{bottom:155.642667pt;}
.yb3_c00160{bottom:156.312000pt;}
.yb4_c00160{bottom:156.794667pt;}
.yb5_c00160{bottom:157.437333pt;}
.yb6_c00160{bottom:158.640000pt;}
.y76_c00160{bottom:169.533399pt;}
.y71_c00160{bottom:169.533777pt;}
.y74_c00160{bottom:169.533779pt;}
.y75_c00160{bottom:169.533913pt;}
.y72_c00160{bottom:169.533973pt;}
.y73_c00160{bottom:169.534116pt;}
.y70_c00160{bottom:169.534292pt;}
.y6e_c00160{bottom:169.534593pt;}
.y6d_c00160{bottom:169.534841pt;}
.y6f_c00160{bottom:169.534896pt;}
.ya8_c00160{bottom:170.884000pt;}
.ya9_c00160{bottom:171.290667pt;}
.yaa_c00160{bottom:171.442667pt;}
.yab_c00160{bottom:171.853333pt;}
.yac_c00160{bottom:172.073333pt;}
.yad_c00160{bottom:172.786667pt;}
.yae_c00160{bottom:172.901333pt;}
.yaf_c00160{bottom:173.052000pt;}
.y69_c00160{bottom:185.685335pt;}
.y68_c00160{bottom:185.685733pt;}
.y6a_c00160{bottom:185.685931pt;}
.y6b_c00160{bottom:185.686003pt;}
.y6c_c00160{bottom:185.686225pt;}
.ya7_c00160{bottom:187.554667pt;}
.y65_c00160{bottom:200.352284pt;}
.y63_c00160{bottom:200.352487pt;}
.y64_c00160{bottom:200.352728pt;}
.y67_c00160{bottom:200.352775pt;}
.y66_c00160{bottom:200.352800pt;}
.y62_c00160{bottom:200.352885pt;}
.y9f_c00160{bottom:201.841333pt;}
.ya0_c00160{bottom:202.478667pt;}
.ya1_c00160{bottom:202.781333pt;}
.ya2_c00160{bottom:203.289333pt;}
.ya3_c00160{bottom:203.592000pt;}
.ya4_c00160{bottom:204.064000pt;}
.ya5_c00160{bottom:204.305333pt;}
.ya6_c00160{bottom:205.006667pt;}
.y5c_c00160{bottom:215.026912pt;}
.y5b_c00160{bottom:215.041333pt;}
.y5d_c00160{bottom:215.247531pt;}
.y5e_c00160{bottom:215.687329pt;}
.y5f_c00160{bottom:216.657615pt;}
.y60_c00160{bottom:217.259809pt;}
.y61_c00160{bottom:217.699695pt;}
.y96_c00160{bottom:217.820000pt;}
.y97_c00160{bottom:218.104000pt;}
.y98_c00160{bottom:218.852000pt;}
.y99_c00160{bottom:219.057333pt;}
.y9a_c00160{bottom:219.425333pt;}
.y9b_c00160{bottom:219.842667pt;}
.y9c_c00160{bottom:220.034667pt;}
.y9d_c00160{bottom:220.310667pt;}
.y9e_c00160{bottom:220.448000pt;}
.y51_c00160{bottom:230.401333pt;}
.y52_c00160{bottom:230.625713pt;}
.y53_c00160{bottom:231.324853pt;}
.y54_c00160{bottom:232.070429pt;}
.y55_c00160{bottom:232.338732pt;}
.y56_c00160{bottom:232.747504pt;}
.y95_c00160{bottom:234.836000pt;}
.y13_c00160{bottom:247.656000pt;}
.y50_c00160{bottom:249.020000pt;}
.y94_c00160{bottom:251.209333pt;}
.y12_c00160{bottom:263.278667pt;}
.y93_c00160{bottom:266.820000pt;}
.y11_c00160{bottom:279.144000pt;}
.y92_c00160{bottom:281.994667pt;}
.y10_c00160{bottom:294.450667pt;}
.y4f_c00160{bottom:295.925333pt;}
.y91_c00160{bottom:297.681333pt;}
.y3_c00160{bottom:336.006667pt;}
.y4_c00160{bottom:337.109333pt;}
.y5_c00160{bottom:337.878667pt;}
.y6_c00160{bottom:338.585333pt;}
.y7_c00160{bottom:339.338667pt;}
.y8_c00160{bottom:340.002667pt;}
.y9_c00160{bottom:340.857333pt;}
.ya_c00160{bottom:341.693333pt;}
.y88_c00160{bottom:347.040000pt;}
.y87_c00160{bottom:355.920000pt;}
.y2_c00160{bottom:358.170667pt;}
.y80_c00160{bottom:359.285333pt;}
.y81_c00160{bottom:359.304797pt;}
.y86_c00160{bottom:359.398667pt;}
.y82_c00160{bottom:360.015077pt;}
.y83_c00160{bottom:360.184301pt;}
.y84_c00160{bottom:360.363725pt;}
.y85_c00160{bottom:361.322381pt;}
.yf_c00160{bottom:367.200000pt;}
.yc_c00160{bottom:394.632000pt;}
.yd_c00160{bottom:395.192955pt;}
.ye_c00160{bottom:397.224772pt;}
.yb_c00160{bottom:431.280000pt;}
.y4e_c00160{bottom:431.905333pt;}
.y90_c00160{bottom:432.969333pt;}
.y1_c00160{bottom:477.241333pt;}
.y8f_c00160{bottom:482.880000pt;}
.y43_c00160{bottom:488.161333pt;}
.y44_c00160{bottom:488.504165pt;}
.y45_c00160{bottom:489.013861pt;}
.y46_c00160{bottom:489.362421pt;}
.y47_c00160{bottom:489.837525pt;}
.y48_c00160{bottom:490.053509pt;}
.y49_c00160{bottom:490.652709pt;}
.y4a_c00160{bottom:490.932181pt;}
.y4b_c00160{bottom:491.352661pt;}
.y4c_c00160{bottom:491.910725pt;}
.y4d_c00160{bottom:492.032325pt;}
.y8e_c00160{bottom:511.890667pt;}
.y41_c00160{bottom:570.345333pt;}
.y42_c00160{bottom:581.644000pt;}
.y37_c00160{bottom:591.844000pt;}
.y38_c00160{bottom:592.216360pt;}
.y39_c00160{bottom:592.684420pt;}
.y3a_c00160{bottom:593.179560pt;}
.y3b_c00160{bottom:593.232520pt;}
.y3c_c00160{bottom:593.465580pt;}
.y3d_c00160{bottom:593.877180pt;}
.y3e_c00160{bottom:594.475420pt;}
.y3f_c00160{bottom:595.582960pt;}
.y40_c00160{bottom:595.893440pt;}
.y89_c00160{bottom:615.604000pt;}
.y8a_c00160{bottom:616.251791pt;}
.y8b_c00160{bottom:616.836455pt;}
.y8c_c00160{bottom:617.244681pt;}
.y8d_c00160{bottom:618.166897pt;}
.y34_c00160{bottom:632.639007pt;}
.y35_c00160{bottom:633.533757pt;}
.y36_c00160{bottom:634.433339pt;}
.y2e_c00160{bottom:651.929333pt;}
.y2f_c00160{bottom:652.580387pt;}
.y30_c00160{bottom:654.058980pt;}
.y31_c00160{bottom:654.540477pt;}
.y32_c00160{bottom:655.324747pt;}
.y33_c00160{bottom:656.103373pt;}
.y2b_c00160{bottom:674.632557pt;}
.y2c_c00160{bottom:675.226603pt;}
.y2d_c00160{bottom:677.552061pt;}
.y24_c00160{bottom:696.958269pt;}
.y25_c00160{bottom:697.601293pt;}
.y26_c00160{bottom:698.201719pt;}
.y27_c00160{bottom:699.212056pt;}
.y28_c00160{bottom:699.785916pt;}
.y29_c00160{bottom:700.519647pt;}
.y2a_c00160{bottom:701.250175pt;}
.y1e_c00160{bottom:717.120956pt;}
.y1f_c00160{bottom:717.880699pt;}
.y20_c00160{bottom:719.067052pt;}
.y21_c00160{bottom:720.251697pt;}
.y22_c00160{bottom:720.680744pt;}
.y23_c00160{bottom:721.366965pt;}
.y17_c00160{bottom:737.046667pt;}
.y18_c00160{bottom:737.847439pt;}
.y19_c00160{bottom:738.437735pt;}
.y1a_c00160{bottom:739.995907pt;}
.y1b_c00160{bottom:741.300567pt;}
.y1c_c00160{bottom:741.742827pt;}
.y1d_c00160{bottom:742.167671pt;}
.y14_c00160{bottom:776.168000pt;}
.y15_c00160{bottom:779.425653pt;}
.y16_c00160{bottom:780.612480pt;}
.h2_c00160{height:19.600000pt;}
.h6_c00160{height:21.466667pt;}
.h1f_c00160{height:27.066667pt;}
.h19_c00160{height:29.866667pt;}
.h18_c00160{height:30.800000pt;}
.h1e_c00160{height:36.400000pt;}
.h15_c00160{height:40.133333pt;}
.h1a_c00160{height:41.070137pt;}
.h9_c00160{height:42.000000pt;}
.h1c_c00160{height:42.003549pt;}
.h22_c00160{height:42.933333pt;}
.h1b_c00160{height:42.936961pt;}
.h16_c00160{height:43.866667pt;}
.h21_c00160{height:44.800000pt;}
.h8_c00160{height:45.733333pt;}
.h17_c00160{height:45.737198pt;}
.h7_c00160{height:46.666667pt;}
.h20_c00160{height:48.533333pt;}
.h1d_c00160{height:53.208618pt;}
.h12_c00160{height:56.000000pt;}
.h14_c00160{height:57.866667pt;}
.h3_c00160{height:58.800000pt;}
.h5_c00160{height:58.808496pt;}
.h10_c00160{height:61.606930pt;}
.he_c00160{height:61.616291pt;}
.h4_c00160{height:62.533333pt;}
.hb_c00160{height:62.547120pt;}
.hf_c00160{height:62.549871pt;}
.h11_c00160{height:63.466667pt;}
.h13_c00160{height:63.471236pt;}
.hc_c00160{height:66.281277pt;}
.hd_c00160{height:78.417285pt;}
.ha_c00160{height:123.217801pt;}
.h1_c00160{height:893.333333pt;}
.h0_c00160{height:893.466667pt;}
.w0_c00160{width:627.066667pt;}
.w1_c00160{width:627.333333pt;}
.x0_c00160{left:0.000000pt;}
.x51_c00160{left:64.457333pt;}
.x57_c00160{left:67.649333pt;}
.x56_c00160{left:68.758667pt;}
.x52_c00160{left:81.717333pt;}
.x26_c00160{left:83.040000pt;}
.x15_c00160{left:85.200000pt;}
.x1e_c00160{left:86.160000pt;}
.x1f_c00160{left:98.160000pt;}
.x27_c00160{left:99.360000pt;}
.x65_c00160{left:102.357963pt;}
.x34_c00160{left:107.774443pt;}
.x2c_c00160{left:111.652000pt;}
.x66_c00160{left:112.708629pt;}
.x3f_c00160{left:113.772000pt;}
.x16_c00160{left:114.720000pt;}
.x8_c00160{left:116.418667pt;}
.x58_c00160{left:118.450667pt;}
.x5f_c00160{left:121.684427pt;}
.x20_c00160{left:123.360000pt;}
.x3_c00160{left:124.800000pt;}
.x60_c00160{left:129.844480pt;}
.x5a_c00160{left:131.766903pt;}
.x17_c00160{left:134.400000pt;}
.x21_c00160{left:136.080000pt;}
.x28_c00160{left:138.960000pt;}
.x4_c00160{left:140.160000pt;}
.x45_c00160{left:143.428000pt;}
.x29_c00160{left:146.844000pt;}
.x1a_c00160{left:150.000000pt;}
.x5_c00160{left:152.880000pt;}
.x67_c00160{left:157.360629pt;}
.x22_c00160{left:159.600000pt;}
.x18_c00160{left:160.560000pt;}
.x3d_c00160{left:162.471393pt;}
.x61_c00160{left:164.887741pt;}
.x9_c00160{left:166.565333pt;}
.x35_c00160{left:169.971759pt;}
.x5b_c00160{left:175.690321pt;}
.x19_c00160{left:176.880000pt;}
.x1_c00160{left:178.080000pt;}
.x62_c00160{left:182.649407pt;}
.x2_c00160{left:184.080000pt;}
.x46_c00160{left:185.902667pt;}
.x5c_c00160{left:188.171103pt;}
.x1b_c00160{left:192.720000pt;}
.x68_c00160{left:196.007296pt;}
.x11_c00160{left:197.625333pt;}
.x63_c00160{left:198.970829pt;}
.x6_c00160{left:199.920000pt;}
.xa_c00160{left:201.552000pt;}
.x40_c00160{left:202.809333pt;}
.x55_c00160{left:205.200000pt;}
.x23_c00160{left:206.160000pt;}
.x4f_c00160{left:207.600000pt;}
.x31_c00160{left:209.551227pt;}
.x53_c00160{left:213.488000pt;}
.x3e_c00160{left:215.119995pt;}
.x5d_c00160{left:216.493185pt;}
.x7_c00160{left:217.440000pt;}
.x36_c00160{left:220.496823pt;}
.x10_c00160{left:222.000000pt;}
.x1c_c00160{left:224.640000pt;}
.x14_c00160{left:226.800000pt;}
.x12_c00160{left:230.622667pt;}
.xb_c00160{left:233.696000pt;}
.x4d_c00160{left:235.920000pt;}
.x1d_c00160{left:237.120000pt;}
.x59_c00160{left:239.410667pt;}
.x44_c00160{left:243.120000pt;}
.x54_c00160{left:244.932000pt;}
.x4c_c00160{left:246.240000pt;}
.x6d_c00160{left:247.200000pt;}
.x37_c00160{left:249.157411pt;}
.x2d_c00160{left:252.092000pt;}
.x24_c00160{left:254.160000pt;}
.x64_c00160{left:255.375029pt;}
.x3a_c00160{left:256.629556pt;}
.x5e_c00160{left:261.856847pt;}
.x4e_c00160{left:263.520000pt;}
.xc_c00160{left:267.912000pt;}
.x50_c00160{left:269.040000pt;}
.x25_c00160{left:270.000000pt;}
.x47_c00160{left:272.540000pt;}
.x69_c00160{left:284.177333pt;}
.x38_c00160{left:285.875528pt;}
.x43_c00160{left:287.040000pt;}
.x3c_c00160{left:288.565333pt;}
.x32_c00160{left:290.204907pt;}
.x6a_c00160{left:293.578667pt;}
.x77_c00160{left:295.440000pt;}
.xd_c00160{left:298.089333pt;}
.x79_c00160{left:299.040000pt;}
.x86_c00160{left:301.920000pt;}
.x6b_c00160{left:303.546667pt;}
.x83_c00160{left:304.560000pt;}
.x2e_c00160{left:314.218667pt;}
.x8d_c00160{left:316.458667pt;}
.x39_c00160{left:322.377617pt;}
.x33_c00160{left:324.533635pt;}
.x7a_c00160{left:330.480000pt;}
.x8b_c00160{left:333.600000pt;}
.x2f_c00160{left:335.278667pt;}
.xe_c00160{left:336.913333pt;}
.x2a_c00160{left:338.470667pt;}
.x48_c00160{left:345.762667pt;}
.x94_c00160{left:347.402667pt;}
.x84_c00160{left:348.960000pt;}
.x13_c00160{left:350.141333pt;}
.x78_c00160{left:352.560000pt;}
.x30_c00160{left:355.509333pt;}
.x6c_c00160{left:356.805333pt;}
.x9a_c00160{left:358.018667pt;}
.x87_c00160{left:359.280000pt;}
.x41_c00160{left:363.036000pt;}
.x95_c00160{left:367.558667pt;}
.x85_c00160{left:369.120000pt;}
.xf_c00160{left:374.930667pt;}
.x88_c00160{left:376.320000pt;}
.x72_c00160{left:377.520000pt;}
.x3b_c00160{left:379.053375pt;}
.x49_c00160{left:380.802667pt;}
.x42_c00160{left:383.734667pt;}
.x8e_c00160{left:385.301333pt;}
.x6e_c00160{left:387.745333pt;}
.x7f_c00160{left:391.680000pt;}
.x7b_c00160{left:393.600000pt;}
.x9b_c00160{left:395.500000pt;}
.x80_c00160{left:397.920000pt;}
.x8f_c00160{left:399.025333pt;}
.x96_c00160{left:401.424000pt;}
.x89_c00160{left:403.440000pt;}
.x73_c00160{left:405.600000pt;}
.x2b_c00160{left:408.284000pt;}
.x7c_c00160{left:410.880000pt;}
.x8a_c00160{left:420.960000pt;}
.x6f_c00160{left:422.137333pt;}
.x90_c00160{left:423.532000pt;}
.x4a_c00160{left:427.308000pt;}
.x81_c00160{left:432.960000pt;}
.x4b_c00160{left:437.441333pt;}
.x7d_c00160{left:439.920000pt;}
.x8c_c00160{left:442.800000pt;}
.x70_c00160{left:446.150667pt;}
.x91_c00160{left:451.329333pt;}
.x74_c00160{left:453.840000pt;}
.x7e_c00160{left:456.960000pt;}
.x9d_c00160{left:458.028000pt;}
.x92_c00160{left:464.100000pt;}
.x9c_c00160{left:465.329333pt;}
.x97_c00160{left:469.145333pt;}
.x75_c00160{left:474.000000pt;}
.x76_c00160{left:475.440000pt;}
.x82_c00160{left:483.120000pt;}
.x93_c00160{left:491.697333pt;}
.x71_c00160{left:500.398667pt;}
.x99_c00160{left:507.358667pt;}
.x98_c00160{left:515.930667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mf5_c00161{transform:matrix(0.022729,-0.000250,0.002750,0.249985,0,0);-ms-transform:matrix(0.022729,-0.000250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.022729,-0.000250,0.002750,0.249985,0,0);}
.mde_c00161{transform:matrix(0.077140,-0.000849,0.002750,0.249985,0,0);-ms-transform:matrix(0.077140,-0.000849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.077140,-0.000849,0.002750,0.249985,0,0);}
.me3_c00161{transform:matrix(0.108483,-0.001193,0.002750,0.249985,0,0);-ms-transform:matrix(0.108483,-0.001193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.108483,-0.001193,0.002750,0.249985,0,0);}
.mbf_c00161{transform:matrix(0.115730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115730,0.000000,0.000000,0.250000,0,0);}
.mb9_c00161{transform:matrix(0.131330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131330,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.139328,-0.001393,0.002500,0.249988,0,0);-ms-transform:matrix(0.139328,-0.001393,0.002500,0.249988,0,0);-webkit-transform:matrix(0.139328,-0.001393,0.002500,0.249988,0,0);}
.m33_c00161{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);}
.m6_c00161{transform:matrix(0.145468,-0.001455,0.002500,0.249988,0,0);-ms-transform:matrix(0.145468,-0.001455,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145468,-0.001455,0.002500,0.249988,0,0);}
.ma5_c00161{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);}
.m27_c00161{transform:matrix(0.149931,-0.001649,0.002750,0.249985,0,0);-ms-transform:matrix(0.149931,-0.001649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149931,-0.001649,0.002750,0.249985,0,0);}
.m20_c00161{transform:matrix(0.150062,-0.001501,0.002500,0.249988,0,0);-ms-transform:matrix(0.150062,-0.001501,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150062,-0.001501,0.002500,0.249988,0,0);}
.m23_c00161{transform:matrix(0.151932,-0.001519,0.002500,0.249988,0,0);-ms-transform:matrix(0.151932,-0.001519,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151932,-0.001519,0.002500,0.249988,0,0);}
.m3_c00161{transform:matrix(0.153647,-0.001536,0.002500,0.249988,0,0);-ms-transform:matrix(0.153647,-0.001536,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153647,-0.001536,0.002500,0.249988,0,0);}
.m46_c00161{transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);}
.m9f_c00161{transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);}
.m106_c00161{transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);-ms-transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);}
.mcf_c00161{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);}
.m10_c00161{transform:matrix(0.158822,-0.001588,0.002500,0.249988,0,0);-ms-transform:matrix(0.158822,-0.001588,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158822,-0.001588,0.002500,0.249988,0,0);}
.m7d_c00161{transform:matrix(0.158995,-0.001749,0.002750,0.249985,0,0);-ms-transform:matrix(0.158995,-0.001749,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158995,-0.001749,0.002750,0.249985,0,0);}
.m9e_c00161{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);}
.mbe_c00161{transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{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);}
.ma7_c00161{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);}
.m39_c00161{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);}
.m1e_c00161{transform:matrix(0.162262,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162262,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162262,-0.001623,0.002500,0.249988,0,0);}
.mf8_c00161{transform:matrix(0.163640,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163640,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163640,-0.001800,0.002750,0.249985,0,0);}
.m34_c00161{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);}
.mb_c00161{transform:matrix(0.164372,-0.001644,0.002500,0.249988,0,0);-ms-transform:matrix(0.164372,-0.001644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164372,-0.001644,0.002500,0.249988,0,0);}
.m3d_c00161{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);}
.m50_c00161{transform:matrix(0.165225,-0.001817,0.002750,0.249985,0,0);-ms-transform:matrix(0.165225,-0.001817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165225,-0.001817,0.002750,0.249985,0,0);}
.me6_c00161{transform:matrix(0.165485,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165485,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165485,-0.001820,0.002750,0.249985,0,0);}
.m7b_c00161{transform:matrix(0.165745,-0.001823,0.002750,0.249985,0,0);-ms-transform:matrix(0.165745,-0.001823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165745,-0.001823,0.002750,0.249985,0,0);}
.m65_c00161{transform:matrix(0.166060,-0.001827,0.002750,0.249985,0,0);-ms-transform:matrix(0.166060,-0.001827,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166060,-0.001827,0.002750,0.249985,0,0);}
.ma6_c00161{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);}
.m82_c00161{transform:matrix(0.167300,-0.001840,0.002750,0.249985,0,0);-ms-transform:matrix(0.167300,-0.001840,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167300,-0.001840,0.002750,0.249985,0,0);}
.mba_c00161{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);}
.m114_c00161{transform:matrix(0.167800,-0.001846,0.002750,0.249985,0,0);-ms-transform:matrix(0.167800,-0.001846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167800,-0.001846,0.002750,0.249985,0,0);}
.mfa_c00161{transform:matrix(0.167840,-0.001846,0.002750,0.249985,0,0);-ms-transform:matrix(0.167840,-0.001846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167840,-0.001846,0.002750,0.249985,0,0);}
.m32_c00161{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);}
.m7f_c00161{transform:matrix(0.169065,-0.001860,0.002750,0.249985,0,0);-ms-transform:matrix(0.169065,-0.001860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169065,-0.001860,0.002750,0.249985,0,0);}
.m2_c00161{transform:matrix(0.169132,-0.001691,0.002500,0.249988,0,0);-ms-transform:matrix(0.169132,-0.001691,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169132,-0.001691,0.002500,0.249988,0,0);}
.m1c_c00161{transform:matrix(0.169622,-0.001696,0.002500,0.249988,0,0);-ms-transform:matrix(0.169622,-0.001696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169622,-0.001696,0.002500,0.249988,0,0);}
.md9_c00161{transform:matrix(0.170325,-0.001874,0.002750,0.249985,0,0);-ms-transform:matrix(0.170325,-0.001874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170325,-0.001874,0.002750,0.249985,0,0);}
.m12c_c00161{transform:matrix(0.170836,-0.001196,0.001750,0.249994,0,0);-ms-transform:matrix(0.170836,-0.001196,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170836,-0.001196,0.001750,0.249994,0,0);}
.m15_c00161{transform:matrix(0.171666,-0.001717,0.002500,0.249988,0,0);-ms-transform:matrix(0.171666,-0.001717,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171666,-0.001717,0.002500,0.249988,0,0);}
.m18_c00161{transform:matrix(0.172036,-0.001720,0.002500,0.249988,0,0);-ms-transform:matrix(0.172036,-0.001720,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172036,-0.001720,0.002500,0.249988,0,0);}
.maa_c00161{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);}
.m56_c00161{transform:matrix(0.172403,-0.001552,0.002250,0.249990,0,0);-ms-transform:matrix(0.172403,-0.001552,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172403,-0.001552,0.002250,0.249990,0,0);}
.m108_c00161{transform:matrix(0.172650,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172650,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172650,-0.001899,0.002750,0.249985,0,0);}
.mc_c00161{transform:matrix(0.172931,-0.001729,0.002500,0.249988,0,0);-ms-transform:matrix(0.172931,-0.001729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172931,-0.001729,0.002500,0.249988,0,0);}
.m85_c00161{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);}
.m4f_c00161{transform:matrix(0.173425,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173425,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173425,-0.001908,0.002750,0.249985,0,0);}
.mf2_c00161{transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173510,-0.001909,0.002750,0.249985,0,0);}
.m9b_c00161{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);}
.m17_c00161{transform:matrix(0.174281,-0.001743,0.002500,0.249988,0,0);-ms-transform:matrix(0.174281,-0.001743,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174281,-0.001743,0.002500,0.249988,0,0);}
.mbd_c00161{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);}
.m5c_c00161{transform:matrix(0.174638,-0.001572,0.002250,0.249990,0,0);-ms-transform:matrix(0.174638,-0.001572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174638,-0.001572,0.002250,0.249990,0,0);}
.m8_c00161{transform:matrix(0.174941,-0.001749,0.002500,0.249988,0,0);-ms-transform:matrix(0.174941,-0.001749,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174941,-0.001749,0.002500,0.249988,0,0);}
.m109_c00161{transform:matrix(0.175924,-0.001935,0.002750,0.249985,0,0);-ms-transform:matrix(0.175924,-0.001935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175924,-0.001935,0.002750,0.249985,0,0);}
.m88_c00161{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);}
.mc1_c00161{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);}
.m59_c00161{transform:matrix(0.176288,-0.001587,0.002250,0.249990,0,0);-ms-transform:matrix(0.176288,-0.001587,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176288,-0.001587,0.002250,0.249990,0,0);}
.ma4_c00161{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);}
.m58_c00161{transform:matrix(0.176603,-0.001589,0.002250,0.249990,0,0);-ms-transform:matrix(0.176603,-0.001589,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176603,-0.001589,0.002250,0.249990,0,0);}
.ma1_c00161{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);}
.md_c00161{transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177001,-0.001770,0.002500,0.249988,0,0);}
.m10c_c00161{transform:matrix(0.177289,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177289,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177289,-0.001950,0.002750,0.249985,0,0);}
.m51_c00161{transform:matrix(0.177529,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177529,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177529,-0.001953,0.002750,0.249985,0,0);}
.m5_c00161{transform:matrix(0.177536,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177536,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177536,-0.001775,0.002500,0.249988,0,0);}
.m30_c00161{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);}
.mce_c00161{transform:matrix(0.178389,-0.001962,0.002750,0.249985,0,0);-ms-transform:matrix(0.178389,-0.001962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178389,-0.001962,0.002750,0.249985,0,0);}
.m83_c00161{transform:matrix(0.178569,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178569,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178569,-0.001964,0.002750,0.249985,0,0);}
.m68_c00161{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);}
.m2b_c00161{transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);}
.m9d_c00161{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);}
.mc0_c00161{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);}
.m119_c00161{transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);-ms-transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);}
.m98_c00161{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);}
.mc5_c00161{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);}
.m77_c00161{transform:matrix(0.181229,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181229,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181229,-0.001994,0.002750,0.249985,0,0);}
.m8f_c00161{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);}
.m92_c00161{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);}
.m4_c00161{transform:matrix(0.181321,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181321,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181321,-0.001813,0.002500,0.249988,0,0);}
.m2c_c00161{transform:matrix(0.181324,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181324,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181324,-0.001995,0.002750,0.249985,0,0);}
.m7_c00161{transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);}
.mbc_c00161{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);}
.m128_c00161{transform:matrix(0.181896,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181896,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181896,-0.001273,0.001750,0.249994,0,0);}
.m11_c00161{transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);}
.m10e_c00161{transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);-ms-transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);}
.m100_c00161{transform:matrix(0.182509,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182509,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182509,-0.002008,0.002750,0.249985,0,0);}
.m2d_c00161{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);}
.m7e_c00161{transform:matrix(0.183369,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183369,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183369,-0.002017,0.002750,0.249985,0,0);}
.me1_c00161{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);}
.m76_c00161{transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);}
.m3e_c00161{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);}
.m26_c00161{transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183814,-0.002022,0.002750,0.249985,0,0);}
.m9a_c00161{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);}
.m21_c00161{transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);-ms-transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);}
.m118_c00161{transform:matrix(0.184359,-0.002028,0.002750,0.249985,0,0);-ms-transform:matrix(0.184359,-0.002028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184359,-0.002028,0.002750,0.249985,0,0);}
.m6d_c00161{transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);-ms-transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);}
.m45_c00161{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);}
.mb8_c00161{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);}
.m110_c00161{transform:matrix(0.185289,-0.002038,0.002750,0.249985,0,0);-ms-transform:matrix(0.185289,-0.002038,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185289,-0.002038,0.002750,0.249985,0,0);}
.me9_c00161{transform:matrix(0.185579,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185579,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185579,-0.002041,0.002750,0.249985,0,0);}
.ma3_c00161{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);}
.m6f_c00161{transform:matrix(0.186109,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186109,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186109,-0.002047,0.002750,0.249985,0,0);}
.m1_c00161{transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);}
.me_c00161{transform:matrix(0.187046,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.187046,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187046,-0.001870,0.002500,0.249988,0,0);}
.m4a_c00161{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);}
.mc4_c00161{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);}
.m40_c00161{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);}
.m7c_c00161{transform:matrix(0.188594,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188594,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188594,-0.002075,0.002750,0.249985,0,0);}
.m57_c00161{transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);-ms-transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);}
.m2a_c00161{transform:matrix(0.188854,-0.002077,0.002750,0.249985,0,0);-ms-transform:matrix(0.188854,-0.002077,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188854,-0.002077,0.002750,0.249985,0,0);}
.mbb_c00161{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);}
.m35_c00161{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);}
.m107_c00161{transform:matrix(0.190733,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190733,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190733,-0.002098,0.002750,0.249985,0,0);}
.ma0_c00161{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);}
.m8d_c00161{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);}
.m64_c00161{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);}
.m90_c00161{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);}
.m7a_c00161{transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);}
.m79_c00161{transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);}
.m126_c00161{transform:matrix(0.193125,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193125,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193125,-0.001352,0.001750,0.249994,0,0);}
.m1d_c00161{transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);-ms-transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193605,-0.001936,0.002500,0.249988,0,0);}
.m2e_c00161{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);}
.m3a_c00161{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);}
.m121_c00161{transform:matrix(0.193955,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.193955,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193955,-0.001358,0.001750,0.249994,0,0);}
.mfc_c00161{transform:matrix(0.194058,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194058,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194058,-0.002135,0.002750,0.249985,0,0);}
.m97_c00161{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.194193,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194193,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194193,-0.002136,0.002750,0.249985,0,0);}
.m105_c00161{transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);}
.m48_c00161{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_c00161{transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);}
.m73_c00161{transform:matrix(0.194843,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194843,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194843,-0.002143,0.002750,0.249985,0,0);}
.m127_c00161{transform:matrix(0.195195,-0.001366,0.001750,0.249994,0,0);-ms-transform:matrix(0.195195,-0.001366,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195195,-0.001366,0.001750,0.249994,0,0);}
.m96_c00161{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);}
.m113_c00161{transform:matrix(0.195243,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195243,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195243,-0.002148,0.002750,0.249985,0,0);}
.m80_c00161{transform:matrix(0.195578,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195578,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195578,-0.002151,0.002750,0.249985,0,0);}
.mf9_c00161{transform:matrix(0.195633,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195633,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195633,-0.002152,0.002750,0.249985,0,0);}
.m22_c00161{transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);-ms-transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);}
.m75_c00161{transform:matrix(0.195828,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195828,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195828,-0.002154,0.002750,0.249985,0,0);}
.m103_c00161{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);}
.m1a_c00161{transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);}
.m72_c00161{transform:matrix(0.196518,-0.002162,0.002750,0.249985,0,0);-ms-transform:matrix(0.196518,-0.002162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196518,-0.002162,0.002750,0.249985,0,0);}
.m101_c00161{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);}
.m111_c00161{transform:matrix(0.197868,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197868,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197868,-0.002177,0.002750,0.249985,0,0);}
.m129_c00161{transform:matrix(0.198060,-0.001386,0.001750,0.249994,0,0);-ms-transform:matrix(0.198060,-0.001386,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198060,-0.001386,0.001750,0.249994,0,0);}
.m41_c00161{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);}
.m25_c00161{transform:matrix(0.199158,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199158,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199158,-0.002191,0.002750,0.249985,0,0);}
.m104_c00161{transform:matrix(0.199293,-0.002192,0.002750,0.249985,0,0);-ms-transform:matrix(0.199293,-0.002192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199293,-0.002192,0.002750,0.249985,0,0);}
.m10d_c00161{transform:matrix(0.199593,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199593,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199593,-0.002196,0.002750,0.249985,0,0);}
.me8_c00161{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);}
.m122_c00161{transform:matrix(0.199900,-0.001399,0.001750,0.249994,0,0);-ms-transform:matrix(0.199900,-0.001399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199900,-0.001399,0.001750,0.249994,0,0);}
.m5a_c00161{transform:matrix(0.200337,-0.001803,0.002250,0.249990,0,0);-ms-transform:matrix(0.200337,-0.001803,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200337,-0.001803,0.002250,0.249990,0,0);}
.m12_c00161{transform:matrix(0.200605,-0.002006,0.002500,0.249988,0,0);-ms-transform:matrix(0.200605,-0.002006,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200605,-0.002006,0.002500,0.249988,0,0);}
.mb0_c00161{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);}
.md6_c00161{transform:matrix(0.200873,-0.002210,0.002750,0.249985,0,0);-ms-transform:matrix(0.200873,-0.002210,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200873,-0.002210,0.002750,0.249985,0,0);}
.ma_c00161{transform:matrix(0.201460,-0.002015,0.002500,0.249988,0,0);-ms-transform:matrix(0.201460,-0.002015,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201460,-0.002015,0.002500,0.249988,0,0);}
.md8_c00161{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);}
.m93_c00161{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);}
.m6e_c00161{transform:matrix(0.202473,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202473,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202473,-0.002227,0.002750,0.249985,0,0);}
.m44_c00161{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);}
.m52_c00161{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);}
.mda_c00161{transform:matrix(0.203193,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203193,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203193,-0.002235,0.002750,0.249985,0,0);}
.mf0_c00161{transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);}
.mdb_c00161{transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);}
.mf1_c00161{transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203338,-0.002237,0.002750,0.249985,0,0);}
.m10b_c00161{transform:matrix(0.204173,-0.002246,0.002750,0.249985,0,0);-ms-transform:matrix(0.204173,-0.002246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204173,-0.002246,0.002750,0.249985,0,0);}
.mf7_c00161{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);}
.m5e_c00161{transform:matrix(0.204703,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204703,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204703,-0.002252,0.002750,0.249985,0,0);}
.m16_c00161{transform:matrix(0.204935,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204935,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204935,-0.002049,0.002500,0.249988,0,0);}
.m69_c00161{transform:matrix(0.205468,-0.002260,0.002750,0.249985,0,0);-ms-transform:matrix(0.205468,-0.002260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205468,-0.002260,0.002750,0.249985,0,0);}
.mab_c00161{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_c00161{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);}
.m8e_c00161{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);}
.m4b_c00161{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);}
.mea_c00161{transform:matrix(0.207067,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207067,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207067,-0.002278,0.002750,0.249985,0,0);}
.m24_c00161{transform:matrix(0.207500,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207500,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207500,-0.002075,0.002500,0.249988,0,0);}
.m115_c00161{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);}
.mfd_c00161{transform:matrix(0.207757,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207757,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207757,-0.002285,0.002750,0.249985,0,0);}
.m49_c00161{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);}
.m3c_c00161{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);}
.m123_c00161{transform:matrix(0.208665,-0.001461,0.001750,0.249994,0,0);-ms-transform:matrix(0.208665,-0.001461,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208665,-0.001461,0.001750,0.249994,0,0);}
.m95_c00161{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);}
.m2f_c00161{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);}
.mf3_c00161{transform:matrix(0.209462,-0.002304,0.002750,0.249985,0,0);-ms-transform:matrix(0.209462,-0.002304,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209462,-0.002304,0.002750,0.249985,0,0);}
.m11d_c00161{transform:matrix(0.209560,-0.001467,0.001750,0.249994,0,0);-ms-transform:matrix(0.209560,-0.001467,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209560,-0.001467,0.001750,0.249994,0,0);}
.m12a_c00161{transform:matrix(0.210075,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210075,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210075,-0.001471,0.001750,0.249994,0,0);}
.mdf_c00161{transform:matrix(0.210482,-0.002315,0.002750,0.249985,0,0);-ms-transform:matrix(0.210482,-0.002315,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210482,-0.002315,0.002750,0.249985,0,0);}
.me7_c00161{transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);}
.mf4_c00161{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);}
.m19_c00161{transform:matrix(0.211229,-0.002112,0.002500,0.249988,0,0);-ms-transform:matrix(0.211229,-0.002112,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211229,-0.002112,0.002500,0.249988,0,0);}
.m11a_c00161{transform:matrix(0.211427,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211427,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211427,-0.002326,0.002750,0.249985,0,0);}
.mfe_c00161{transform:matrix(0.212312,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212312,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212312,-0.002335,0.002750,0.249985,0,0);}
.ma8_c00161{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);}
.mb6_c00161{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);}
.mff_c00161{transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);-ms-transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);}
.m5d_c00161{transform:matrix(0.213271,-0.001919,0.002250,0.249990,0,0);-ms-transform:matrix(0.213271,-0.001919,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213271,-0.001919,0.002250,0.249990,0,0);}
.m6c_c00161{transform:matrix(0.213832,-0.002352,0.002750,0.249985,0,0);-ms-transform:matrix(0.213832,-0.002352,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213832,-0.002352,0.002750,0.249985,0,0);}
.mfb_c00161{transform:matrix(0.214082,-0.002355,0.002750,0.249985,0,0);-ms-transform:matrix(0.214082,-0.002355,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214082,-0.002355,0.002750,0.249985,0,0);}
.m47_c00161{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);}
.m4e_c00161{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);}
.m5f_c00161{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);}
.m10f_c00161{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);}
.m53_c00161{transform:matrix(0.217842,-0.002396,0.002750,0.249985,0,0);-ms-transform:matrix(0.217842,-0.002396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217842,-0.002396,0.002750,0.249985,0,0);}
.m63_c00161{transform:matrix(0.218082,-0.002399,0.002750,0.249985,0,0);-ms-transform:matrix(0.218082,-0.002399,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218082,-0.002399,0.002750,0.249985,0,0);}
.mee_c00161{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);}
.m94_c00161{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);}
.m78_c00161{transform:matrix(0.219792,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219792,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219792,-0.002418,0.002750,0.249985,0,0);}
.mdd_c00161{transform:matrix(0.220887,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220887,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220887,-0.002430,0.002750,0.249985,0,0);}
.m99_c00161{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);}
.m102_c00161{transform:matrix(0.222512,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222512,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222512,-0.002448,0.002750,0.249985,0,0);}
.md7_c00161{transform:matrix(0.224041,-0.002464,0.002750,0.249985,0,0);-ms-transform:matrix(0.224041,-0.002464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224041,-0.002464,0.002750,0.249985,0,0);}
.m112_c00161{transform:matrix(0.224236,-0.002467,0.002750,0.249985,0,0);-ms-transform:matrix(0.224236,-0.002467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224236,-0.002467,0.002750,0.249985,0,0);}
.m60_c00161{transform:matrix(0.224411,-0.002469,0.002750,0.249985,0,0);-ms-transform:matrix(0.224411,-0.002469,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224411,-0.002469,0.002750,0.249985,0,0);}
.me0_c00161{transform:matrix(0.225806,-0.002484,0.002750,0.249985,0,0);-ms-transform:matrix(0.225806,-0.002484,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225806,-0.002484,0.002750,0.249985,0,0);}
.m70_c00161{transform:matrix(0.226281,-0.002489,0.002750,0.249985,0,0);-ms-transform:matrix(0.226281,-0.002489,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226281,-0.002489,0.002750,0.249985,0,0);}
.m84_c00161{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);}
.md0_c00161{transform:matrix(0.226706,-0.002494,0.002750,0.249985,0,0);-ms-transform:matrix(0.226706,-0.002494,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226706,-0.002494,0.002750,0.249985,0,0);}
.m1f_c00161{transform:matrix(0.227364,-0.002274,0.002500,0.249988,0,0);-ms-transform:matrix(0.227364,-0.002274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227364,-0.002274,0.002500,0.249988,0,0);}
.m5b_c00161{transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);-ms-transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);}
.m11b_c00161{transform:matrix(0.227961,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.227961,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227961,-0.002508,0.002750,0.249985,0,0);}
.ma2_c00161{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);}
.mad_c00161{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{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);}
.m12b_c00161{transform:matrix(0.228849,-0.001602,0.001750,0.249994,0,0);-ms-transform:matrix(0.228849,-0.001602,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228849,-0.001602,0.001750,0.249994,0,0);}
.m9c_c00161{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);}
.m4d_c00161{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);}
.m9_c00161{transform:matrix(0.229144,-0.002291,0.002500,0.249988,0,0);-ms-transform:matrix(0.229144,-0.002291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229144,-0.002291,0.002500,0.249988,0,0);}
.m54_c00161{transform:matrix(0.229846,-0.002528,0.002750,0.249985,0,0);-ms-transform:matrix(0.229846,-0.002528,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229846,-0.002528,0.002750,0.249985,0,0);}
.m8a_c00161{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);}
.m91_c00161{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.mb1_c00161{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);}
.maf_c00161{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.m8c_c00161{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);}
.m61_c00161{transform:matrix(0.233356,-0.002567,0.002750,0.249985,0,0);-ms-transform:matrix(0.233356,-0.002567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233356,-0.002567,0.002750,0.249985,0,0);}
.md2_c00161{transform:matrix(0.234001,-0.002574,0.002750,0.249985,0,0);-ms-transform:matrix(0.234001,-0.002574,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234001,-0.002574,0.002750,0.249985,0,0);}
.m125_c00161{transform:matrix(0.234014,-0.001638,0.001750,0.249994,0,0);-ms-transform:matrix(0.234014,-0.001638,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234014,-0.001638,0.001750,0.249994,0,0);}
.m6a_c00161{transform:matrix(0.234401,-0.002578,0.002750,0.249985,0,0);-ms-transform:matrix(0.234401,-0.002578,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234401,-0.002578,0.002750,0.249985,0,0);}
.m31_c00161{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);}
.m117_c00161{transform:matrix(0.236691,-0.002604,0.002750,0.249985,0,0);-ms-transform:matrix(0.236691,-0.002604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236691,-0.002604,0.002750,0.249985,0,0);}
.me5_c00161{transform:matrix(0.240690,-0.002648,0.002750,0.249985,0,0);-ms-transform:matrix(0.240690,-0.002648,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240690,-0.002648,0.002750,0.249985,0,0);}
.m3b_c00161{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);}
.m14_c00161{transform:matrix(0.242668,-0.002427,0.002500,0.249988,0,0);-ms-transform:matrix(0.242668,-0.002427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242668,-0.002427,0.002500,0.249988,0,0);}
.mb4_c00161{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);}
.mae_c00161{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);}
.m28_c00161{transform:matrix(0.244165,-0.002686,0.002750,0.249985,0,0);-ms-transform:matrix(0.244165,-0.002686,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244165,-0.002686,0.002750,0.249985,0,0);}
.mac_c00161{transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{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);}
.m29_c00161{transform:matrix(0.245405,-0.002699,0.002750,0.249985,0,0);-ms-transform:matrix(0.245405,-0.002699,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245405,-0.002699,0.002750,0.249985,0,0);}
.mef_c00161{transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);-ms-transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);}
.md5_c00161{transform:matrix(0.249725,-0.002747,0.002750,0.249985,0,0);-ms-transform:matrix(0.249725,-0.002747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249725,-0.002747,0.002750,0.249985,0,0);}
.mdc_c00161{transform:matrix(0.251470,-0.002766,0.002750,0.249985,0,0);-ms-transform:matrix(0.251470,-0.002766,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251470,-0.002766,0.002750,0.249985,0,0);}
.m6b_c00161{transform:matrix(0.255125,-0.002806,0.002750,0.249985,0,0);-ms-transform:matrix(0.255125,-0.002806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255125,-0.002806,0.002750,0.249985,0,0);}
.m38_c00161{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.260042,-0.002600,0.002500,0.249988,0,0);-ms-transform:matrix(0.260042,-0.002600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260042,-0.002600,0.002500,0.249988,0,0);}
.me2_c00161{transform:matrix(0.260044,-0.002860,0.002750,0.249985,0,0);-ms-transform:matrix(0.260044,-0.002860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260044,-0.002860,0.002750,0.249985,0,0);}
.m11e_c00161{transform:matrix(0.262109,-0.001835,0.001750,0.249994,0,0);-ms-transform:matrix(0.262109,-0.001835,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262109,-0.001835,0.001750,0.249994,0,0);}
.mcc_c00161{transform:matrix(0.264424,-0.002909,0.002750,0.249985,0,0);-ms-transform:matrix(0.264424,-0.002909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264424,-0.002909,0.002750,0.249985,0,0);}
.m66_c00161{transform:matrix(0.265534,-0.002921,0.002750,0.249985,0,0);-ms-transform:matrix(0.265534,-0.002921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265534,-0.002921,0.002750,0.249985,0,0);}
.md4_c00161{transform:matrix(0.266789,-0.002935,0.002750,0.249985,0,0);-ms-transform:matrix(0.266789,-0.002935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266789,-0.002935,0.002750,0.249985,0,0);}
.m62_c00161{transform:matrix(0.269564,-0.002965,0.002750,0.249985,0,0);-ms-transform:matrix(0.269564,-0.002965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269564,-0.002965,0.002750,0.249985,0,0);}
.mec_c00161{transform:matrix(0.270364,-0.002974,0.002750,0.249985,0,0);-ms-transform:matrix(0.270364,-0.002974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270364,-0.002974,0.002750,0.249985,0,0);}
.mb2_c00161{transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);}
.m89_c00161{transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272975,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{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);}
.ma9_c00161{transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);}
.mc2_c00161{transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);}
.md1_c00161{transform:matrix(0.281468,-0.003096,0.002750,0.249985,0,0);-ms-transform:matrix(0.281468,-0.003096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281468,-0.003096,0.002750,0.249985,0,0);}
.m42_c00161{transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);}
.mc7_c00161{transform:matrix(0.286168,-0.003148,0.002750,0.249985,0,0);-ms-transform:matrix(0.286168,-0.003148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286168,-0.003148,0.002750,0.249985,0,0);}
.mca_c00161{transform:matrix(0.292867,-0.003222,0.002750,0.249985,0,0);-ms-transform:matrix(0.292867,-0.003222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.292867,-0.003222,0.002750,0.249985,0,0);}
.m36_c00161{transform:matrix(0.294680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294680,0.000000,0.000000,0.250000,0,0);}
.mc9_c00161{transform:matrix(0.303552,-0.003339,0.002750,0.249985,0,0);-ms-transform:matrix(0.303552,-0.003339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303552,-0.003339,0.002750,0.249985,0,0);}
.m43_c00161{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.311111,-0.003422,0.002750,0.249985,0,0);-ms-transform:matrix(0.311111,-0.003422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.311111,-0.003422,0.002750,0.249985,0,0);}
.mb5_c00161{transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.317135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317135,0.000000,0.000000,0.250000,0,0);}
.md3_c00161{transform:matrix(0.320136,-0.003521,0.002750,0.249985,0,0);-ms-transform:matrix(0.320136,-0.003521,0.002750,0.249985,0,0);-webkit-transform:matrix(0.320136,-0.003521,0.002750,0.249985,0,0);}
.mcd_c00161{transform:matrix(0.320716,-0.003528,0.002750,0.249985,0,0);-ms-transform:matrix(0.320716,-0.003528,0.002750,0.249985,0,0);-webkit-transform:matrix(0.320716,-0.003528,0.002750,0.249985,0,0);}
.m4c_c00161{transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322580,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.323945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323945,0.000000,0.000000,0.250000,0,0);}
.m11c_c00161{transform:matrix(0.324920,-0.003574,0.002750,0.249985,0,0);-ms-transform:matrix(0.324920,-0.003574,0.002750,0.249985,0,0);-webkit-transform:matrix(0.324920,-0.003574,0.002750,0.249985,0,0);}
.med_c00161{transform:matrix(0.331645,-0.003648,0.002750,0.249985,0,0);-ms-transform:matrix(0.331645,-0.003648,0.002750,0.249985,0,0);-webkit-transform:matrix(0.331645,-0.003648,0.002750,0.249985,0,0);}
.m67_c00161{transform:matrix(0.332595,-0.003659,0.002750,0.249985,0,0);-ms-transform:matrix(0.332595,-0.003659,0.002750,0.249985,0,0);-webkit-transform:matrix(0.332595,-0.003659,0.002750,0.249985,0,0);}
.m13_c00161{transform:matrix(0.334813,-0.003348,0.002500,0.249988,0,0);-ms-transform:matrix(0.334813,-0.003348,0.002500,0.249988,0,0);-webkit-transform:matrix(0.334813,-0.003348,0.002500,0.249988,0,0);}
.mb3_c00161{transform:matrix(0.341195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341195,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.341259,-0.003754,0.002750,0.249985,0,0);-ms-transform:matrix(0.341259,-0.003754,0.002750,0.249985,0,0);-webkit-transform:matrix(0.341259,-0.003754,0.002750,0.249985,0,0);}
.m120_c00161{transform:matrix(0.345257,-0.002417,0.001750,0.249994,0,0);-ms-transform:matrix(0.345257,-0.002417,0.001750,0.249994,0,0);-webkit-transform:matrix(0.345257,-0.002417,0.001750,0.249994,0,0);}
.m10a_c00161{transform:matrix(0.347624,-0.003824,0.002750,0.249985,0,0);-ms-transform:matrix(0.347624,-0.003824,0.002750,0.249985,0,0);-webkit-transform:matrix(0.347624,-0.003824,0.002750,0.249985,0,0);}
.m124_c00161{transform:matrix(0.350671,-0.002455,0.001750,0.249994,0,0);-ms-transform:matrix(0.350671,-0.002455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.350671,-0.002455,0.001750,0.249994,0,0);}
.m116_c00161{transform:matrix(0.371218,-0.004083,0.002750,0.249985,0,0);-ms-transform:matrix(0.371218,-0.004083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.371218,-0.004083,0.002750,0.249985,0,0);}
.mf6_c00161{transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);-ms-transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);}
.me4_c00161{transform:matrix(0.383902,-0.004223,0.002750,0.249985,0,0);-ms-transform:matrix(0.383902,-0.004223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.383902,-0.004223,0.002750,0.249985,0,0);}
.m11f_c00161{transform:matrix(0.390510,-0.002734,0.001750,0.249994,0,0);-ms-transform:matrix(0.390510,-0.002734,0.001750,0.249994,0,0);-webkit-transform:matrix(0.390510,-0.002734,0.001750,0.249994,0,0);}
.mcb_c00161{transform:matrix(0.451783,-0.004970,0.002750,0.249985,0,0);-ms-transform:matrix(0.451783,-0.004970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.451783,-0.004970,0.002750,0.249985,0,0);}
.mc6_c00161{transform:matrix(0.518259,-0.005701,0.002750,0.249985,0,0);-ms-transform:matrix(0.518259,-0.005701,0.002750,0.249985,0,0);-webkit-transform:matrix(0.518259,-0.005701,0.002750,0.249985,0,0);}
.m0_c00161{transform:matrix(0.561260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561260,0.000000,0.000000,0.250000,0,0);}
.mc3_c00161{transform:matrix(0.669285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669285,0.000000,0.000000,0.250000,0,0);}
.mc8_c00161{transform:matrix(0.763549,-0.008399,0.002750,0.249985,0,0);-ms-transform:matrix(0.763549,-0.008399,0.002750,0.249985,0,0);-webkit-transform:matrix(0.763549,-0.008399,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;}
.fs10_c00161{font-size:46.200000px;}
.fsf_c00161{font-size:47.250000px;}
.fs15_c00161{font-size:50.401235px;}
.fs12_c00161{font-size:50.403049px;}
.fse_c00161{font-size:52.500000px;}
.fs13_c00161{font-size:52.503176px;}
.fs14_c00161{font-size:53.553240px;}
.fs11_c00161{font-size:55.650000px;}
.fsb_c00161{font-size:63.000000px;}
.fsc_c00161{font-size:67.200000px;}
.fs6_c00161{font-size:68.250000px;}
.fs8_c00161{font-size:68.252764px;}
.fs9_c00161{font-size:68.254129px;}
.fsa_c00161{font-size:69.304193px;}
.fs3_c00161{font-size:70.353517px;}
.fs2_c00161{font-size:71.403570px;}
.fs4_c00161{font-size:71.404320px;}
.fs5_c00161{font-size:72.450000px;}
.fs7_c00161{font-size:72.454383px;}
.fs1_c00161{font-size:73.503675px;}
.fsd_c00161{font-size:74.550000px;}
.fs0_c00161{font-size:136.500000px;}
.y0_c00161{bottom:0.000000px;}
.yd1_c00161{bottom:146.880000px;}
.yd2_c00161{bottom:147.054006px;}
.yd3_c00161{bottom:147.496308px;}
.yd4_c00161{bottom:147.554856px;}
.yd5_c00161{bottom:147.707820px;}
.yd6_c00161{bottom:148.034790px;}
.yd7_c00161{bottom:148.140704px;}
.yd8_c00161{bottom:148.520635px;}
.yd9_c00161{bottom:148.607481px;}
.yda_c00161{bottom:148.777591px;}
.ydb_c00161{bottom:149.049573px;}
.ydc_c00161{bottom:149.268981px;}
.ydd_c00161{bottom:149.386014px;}
.yde_c00161{bottom:149.652777px;}
.ydf_c00161{bottom:150.002353px;}
.ye0_c00161{bottom:150.157197px;}
.yc3_c00161{bottom:164.963409px;}
.yc4_c00161{bottom:165.307136px;}
.yc5_c00161{bottom:165.438981px;}
.yc6_c00161{bottom:165.708778px;}
.yc7_c00161{bottom:166.008723px;}
.yc8_c00161{bottom:166.123695px;}
.yc9_c00161{bottom:166.256859px;}
.yca_c00161{bottom:166.756022px;}
.ycb_c00161{bottom:166.946376px;}
.ycc_c00161{bottom:167.188520px;}
.ycd_c00161{bottom:167.322906px;}
.yce_c00161{bottom:167.464673px;}
.ycf_c00161{bottom:167.601950px;}
.yd0_c00161{bottom:168.017411px;}
.yc0_c00161{bottom:183.892376px;}
.ybf_c00161{bottom:183.892752px;}
.ybe_c00161{bottom:183.892859px;}
.yc1_c00161{bottom:183.892973px;}
.ybd_c00161{bottom:183.893055px;}
.yc2_c00161{bottom:183.893106px;}
.yb7_c00161{bottom:183.893457px;}
.ybb_c00161{bottom:183.893598px;}
.ybc_c00161{bottom:183.893732px;}
.yb8_c00161{bottom:183.893994px;}
.yb9_c00161{bottom:183.894201px;}
.yba_c00161{bottom:183.894245px;}
.yab_c00161{bottom:200.336477px;}
.yac_c00161{bottom:200.666255px;}
.yad_c00161{bottom:200.908878px;}
.yae_c00161{bottom:201.170831px;}
.yaf_c00161{bottom:201.456470px;}
.yb0_c00161{bottom:201.718521px;}
.yb1_c00161{bottom:201.916613px;}
.yb2_c00161{bottom:202.292541px;}
.yb3_c00161{bottom:202.823513px;}
.yb4_c00161{bottom:203.343919px;}
.yb5_c00161{bottom:203.495117px;}
.yb6_c00161{bottom:203.928785px;}
.y9b_c00161{bottom:218.429834px;}
.y9c_c00161{bottom:218.645867px;}
.y9d_c00161{bottom:218.963940px;}
.y9e_c00161{bottom:219.177251px;}
.y9f_c00161{bottom:219.412448px;}
.ya0_c00161{bottom:219.646241px;}
.ya1_c00161{bottom:219.903737px;}
.ya2_c00161{bottom:220.266329px;}
.ya3_c00161{bottom:220.645013px;}
.ya4_c00161{bottom:220.903451px;}
.ya5_c00161{bottom:221.149394px;}
.ya6_c00161{bottom:221.383121px;}
.ya7_c00161{bottom:221.600558px;}
.ya8_c00161{bottom:221.817995px;}
.ya9_c00161{bottom:222.147443px;}
.yaa_c00161{bottom:222.229529px;}
.y8c_c00161{bottom:235.981008px;}
.y8d_c00161{bottom:236.528006px;}
.y8e_c00161{bottom:236.716835px;}
.y8f_c00161{bottom:237.078881px;}
.y90_c00161{bottom:237.338451px;}
.y91_c00161{bottom:237.720035px;}
.y92_c00161{bottom:238.374639px;}
.y93_c00161{bottom:238.487114px;}
.y94_c00161{bottom:238.908417px;}
.y95_c00161{bottom:239.254110px;}
.y96_c00161{bottom:239.831075px;}
.y97_c00161{bottom:239.862758px;}
.y98_c00161{bottom:239.945397px;}
.y99_c00161{bottom:240.102822px;}
.y9a_c00161{bottom:240.642377px;}
.y7a_c00161{bottom:254.343000px;}
.y7b_c00161{bottom:254.529995px;}
.y7c_c00161{bottom:254.637129px;}
.y7d_c00161{bottom:255.262941px;}
.y7e_c00161{bottom:255.458945px;}
.y7f_c00161{bottom:255.747183px;}
.y80_c00161{bottom:256.053539px;}
.y81_c00161{bottom:256.397943px;}
.y82_c00161{bottom:256.631352px;}
.y83_c00161{bottom:256.750862px;}
.y84_c00161{bottom:256.896441px;}
.y85_c00161{bottom:257.187452px;}
.y86_c00161{bottom:257.357220px;}
.y87_c00161{bottom:257.936106px;}
.y88_c00161{bottom:258.119999px;}
.y89_c00161{bottom:258.518078px;}
.y8a_c00161{bottom:258.767343px;}
.y8b_c00161{bottom:259.197680px;}
.y79_c00161{bottom:299.268000px;}
.y78_c00161{bottom:317.257500px;}
.y77_c00161{bottom:334.435500px;}
.y76_c00161{bottom:353.260500px;}
.y75_c00161{bottom:370.720500px;}
.y6b_c00161{bottom:403.650000px;}
.y6c_c00161{bottom:404.022000px;}
.y6d_c00161{bottom:404.383500px;}
.y6e_c00161{bottom:404.713500px;}
.y6f_c00161{bottom:404.842500px;}
.y70_c00161{bottom:405.525000px;}
.y71_c00161{bottom:405.693000px;}
.y72_c00161{bottom:405.979500px;}
.y73_c00161{bottom:406.339500px;}
.y74_c00161{bottom:406.680000px;}
.y6a_c00161{bottom:428.278500px;}
.y69_c00161{bottom:450.280500px;}
.y68_c00161{bottom:473.274000px;}
.y66_c00161{bottom:496.028049px;}
.y60_c00161{bottom:496.028151px;}
.y62_c00161{bottom:496.028298px;}
.y61_c00161{bottom:496.028404px;}
.y67_c00161{bottom:496.028436px;}
.y63_c00161{bottom:496.028475px;}
.y65_c00161{bottom:496.028516px;}
.y64_c00161{bottom:496.028832px;}
.y5b_c00161{bottom:518.930541px;}
.y5a_c00161{bottom:518.930664px;}
.y5c_c00161{bottom:518.930824px;}
.y5f_c00161{bottom:518.930995px;}
.y5d_c00161{bottom:518.931181px;}
.y5e_c00161{bottom:518.931358px;}
.y59_c00161{bottom:518.931387px;}
.y56_c00161{bottom:518.931409px;}
.y58_c00161{bottom:518.931510px;}
.y57_c00161{bottom:518.931543px;}
.y54_c00161{bottom:542.205753px;}
.y51_c00161{bottom:542.205895px;}
.y53_c00161{bottom:542.206146px;}
.y55_c00161{bottom:542.206183px;}
.y52_c00161{bottom:542.206282px;}
.y50_c00161{bottom:542.206572px;}
.y4f_c00161{bottom:542.206768px;}
.y4c_c00161{bottom:542.206865px;}
.y4e_c00161{bottom:542.207505px;}
.y4d_c00161{bottom:542.207508px;}
.y42_c00161{bottom:562.951500px;}
.y43_c00161{bottom:563.233831px;}
.y44_c00161{bottom:563.872414px;}
.y45_c00161{bottom:564.205401px;}
.y46_c00161{bottom:565.217907px;}
.y47_c00161{bottom:565.538617px;}
.y48_c00161{bottom:566.037479px;}
.y49_c00161{bottom:566.476907px;}
.y4a_c00161{bottom:566.679180px;}
.y4b_c00161{bottom:567.154479px;}
.y3a_c00161{bottom:585.901500px;}
.y3b_c00161{bottom:586.394817px;}
.y3c_c00161{bottom:586.589015px;}
.y3d_c00161{bottom:586.992705px;}
.y3e_c00161{bottom:587.364509px;}
.y3f_c00161{bottom:587.643972px;}
.y40_c00161{bottom:588.368058px;}
.y41_c00161{bottom:588.574406px;}
.y33_c00161{bottom:608.581500px;}
.y34_c00161{bottom:609.336028px;}
.y35_c00161{bottom:609.808192px;}
.y36_c00161{bottom:610.244782px;}
.y37_c00161{bottom:610.820368px;}
.y38_c00161{bottom:611.242702px;}
.y39_c00161{bottom:611.893231px;}
.y32_c00161{bottom:632.491500px;}
.y31_c00161{bottom:655.845000px;}
.y30_c00161{bottom:679.380000px;}
.y2f_c00161{bottom:702.607500px;}
.y26_c00161{bottom:724.411500px;}
.y27_c00161{bottom:724.916598px;}
.y28_c00161{bottom:725.186885px;}
.y29_c00161{bottom:725.561187px;}
.y2a_c00161{bottom:726.164262px;}
.y2b_c00161{bottom:726.407390px;}
.y2c_c00161{bottom:726.882754px;}
.y2d_c00161{bottom:727.117401px;}
.y2e_c00161{bottom:727.470847px;}
.y1c_c00161{bottom:747.630570px;}
.y1d_c00161{bottom:748.039275px;}
.y1e_c00161{bottom:748.374435px;}
.y1f_c00161{bottom:748.646535px;}
.y20_c00161{bottom:748.978035px;}
.y21_c00161{bottom:749.197095px;}
.y22_c00161{bottom:749.460975px;}
.y23_c00161{bottom:749.592255px;}
.y24_c00161{bottom:750.009795px;}
.y25_c00161{bottom:750.273630px;}
.y15_c00161{bottom:769.771275px;}
.y16_c00161{bottom:770.231925px;}
.y17_c00161{bottom:770.644665px;}
.y18_c00161{bottom:771.313890px;}
.y19_c00161{bottom:771.945600px;}
.y1a_c00161{bottom:772.451490px;}
.y1b_c00161{bottom:773.289375px;}
.ya_c00161{bottom:792.989280px;}
.yb_c00161{bottom:793.315710px;}
.yc_c00161{bottom:793.642830px;}
.yd_c00161{bottom:793.916415px;}
.ye_c00161{bottom:794.121945px;}
.yf_c00161{bottom:794.331705px;}
.y10_c00161{bottom:794.638635px;}
.y11_c00161{bottom:795.016335px;}
.y12_c00161{bottom:795.323520px;}
.y13_c00161{bottom:795.535650px;}
.y14_c00161{bottom:795.977025px;}
.y2_c00161{bottom:815.401500px;}
.y3_c00161{bottom:815.673855px;}
.y4_c00161{bottom:815.941605px;}
.y5_c00161{bottom:816.447135px;}
.y6_c00161{bottom:817.038030px;}
.y7_c00161{bottom:817.442985px;}
.y8_c00161{bottom:817.691100px;}
.y9_c00161{bottom:818.293500px;}
.y1_c00161{bottom:883.344000px;}
.h12_c00161{height:46.200000px;}
.h11_c00161{height:47.250000px;}
.h17_c00161{height:50.401235px;}
.h14_c00161{height:50.403049px;}
.h10_c00161{height:52.500000px;}
.h15_c00161{height:52.503176px;}
.h16_c00161{height:53.553240px;}
.h13_c00161{height:55.650000px;}
.hd_c00161{height:63.000000px;}
.he_c00161{height:67.200000px;}
.h8_c00161{height:68.250000px;}
.ha_c00161{height:68.252764px;}
.hb_c00161{height:68.254129px;}
.hc_c00161{height:69.304193px;}
.h5_c00161{height:70.353517px;}
.h4_c00161{height:71.403570px;}
.h6_c00161{height:71.404320px;}
.h7_c00161{height:72.450000px;}
.h9_c00161{height:72.454383px;}
.h3_c00161{height:73.503675px;}
.hf_c00161{height:74.550000px;}
.h2_c00161{height:136.500000px;}
.h0_c00161{height:1008.450000px;}
.h1_c00161{height:1008.750000px;}
.w0_c00161{width:676.890000px;}
.w1_c00161{width:677.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:70.740000px;}
.x6c_c00161{left:135.810000px;}
.x7c_c00161{left:136.995876px;}
.x73_c00161{left:150.067500px;}
.x84_c00161{left:151.811208px;}
.x97_c00161{left:162.084000px;}
.x2_c00161{left:167.257500px;}
.xa_c00161{left:168.309705px;}
.x22_c00161{left:169.429500px;}
.x41_c00161{left:171.331500px;}
.x74_c00161{left:176.806500px;}
.x85_c00161{left:178.815099px;}
.x91_c00161{left:186.300729px;}
.x4e_c00161{left:190.081253px;}
.x34_c00161{left:191.970000px;}
.x3_c00161{left:194.493000px;}
.x55_c00161{left:196.022976px;}
.x92_c00161{left:205.823072px;}
.xb_c00161{left:209.053515px;}
.x15_c00161{left:210.756000px;}
.x1a_c00161{left:213.963225px;}
.x23_c00161{left:215.347500px;}
.x86_c00161{left:218.504903px;}
.x4_c00161{left:221.268000px;}
.x5a_c00161{left:222.483083px;}
.x2b_c00161{left:224.100000px;}
.x5d_c00161{left:226.260000px;}
.x35_c00161{left:231.120000px;}
.x5f_c00161{left:233.550000px;}
.x56_c00161{left:236.524877px;}
.x68_c00161{left:238.410000px;}
.x24_c00161{left:239.919000px;}
.x3f_c00161{left:242.190000px;}
.x4f_c00161{left:243.814754px;}
.x45_c00161{left:246.069000px;}
.x16_c00161{left:248.279625px;}
.xc_c00161{left:249.866325px;}
.x1b_c00161{left:251.229600px;}
.x49_c00161{left:252.342000px;}
.x63_c00161{left:253.363500px;}
.x98_c00161{left:255.486000px;}
.x60_c00161{left:256.770000px;}
.x2c_c00161{left:267.300000px;}
.x6d_c00161{left:269.460000px;}
.x5_c00161{left:271.821000px;}
.x25_c00161{left:273.946500px;}
.x6e_c00161{left:275.130000px;}
.x50_c00161{left:277.297313px;}
.x71_c00161{left:279.720000px;}
.x1c_c00161{left:281.439900px;}
.x42_c00161{left:282.849000px;}
.xd_c00161{left:284.125515px;}
.x5e_c00161{left:286.740000px;}
.x64_c00161{left:290.109000px;}
.x39_c00161{left:291.600000px;}
.x2d_c00161{left:298.890000px;}
.x72_c00161{left:300.510000px;}
.x99_c00161{left:302.196000px;}
.x36_c00161{left:303.210000px;}
.x62_c00161{left:304.290000px;}
.x51_c00161{left:305.919278px;}
.xe_c00161{left:309.779025px;}
.x3a_c00161{left:311.310000px;}
.x3b_c00161{left:312.930000px;}
.x1d_c00161{left:318.190260px;}
.x43_c00161{left:322.539000px;}
.x5b_c00161{left:325.089491px;}
.x26_c00161{left:328.771500px;}
.x6_c00161{left:330.910500px;}
.x46_c00161{left:332.235000px;}
.x8d_c00161{left:334.903983px;}
.xf_c00161{left:336.005550px;}
.x52_c00161{left:338.861771px;}
.x1e_c00161{left:342.496500px;}
.x27_c00161{left:350.874000px;}
.x40_c00161{left:355.320000px;}
.x75_c00161{left:358.099500px;}
.x37_c00161{left:359.640000px;}
.x6f_c00161{left:361.530000px;}
.x47_c00161{left:363.286500px;}
.x69_c00161{left:365.310000px;}
.x17_c00161{left:366.521940px;}
.x76_c00161{left:368.964000px;}
.x7_c00161{left:371.406000px;}
.x10_c00161{left:374.349315px;}
.x2e_c00161{left:376.380000px;}
.x57_c00161{left:379.363169px;}
.x6b_c00161{left:380.700000px;}
.x77_c00161{left:382.198500px;}
.x9a_c00161{left:384.009000px;}
.x3c_c00161{left:385.290000px;}
.x1f_c00161{left:386.512950px;}
.x7d_c00161{left:387.599132px;}
.x53_c00161{left:389.084843px;}
.x28_c00161{left:394.089000px;}
.x8_c00161{left:396.217500px;}
.x2f_c00161{left:399.060000px;}
.x6a_c00161{left:400.680000px;}
.x4a_c00161{left:403.815000px;}
.x70_c00161{left:405.810000px;}
.x38_c00161{left:407.970000px;}
.x3d_c00161{left:410.400000px;}
.x18_c00161{left:412.460475px;}
.x29_c00161{left:415.420500px;}
.x61_c00161{left:417.960000px;}
.x11_c00161{left:421.570260px;}
.x30_c00161{left:423.900000px;}
.x87_c00161{left:428.609333px;}
.x7e_c00161{left:429.718094px;}
.x65_c00161{left:430.764000px;}
.x20_c00161{left:432.917415px;}
.x5c_c00161{left:436.066922px;}
.x3e_c00161{left:444.690000px;}
.x2a_c00161{left:447.552000px;}
.x4b_c00161{left:449.166000px;}
.x58_c00161{left:454.157711px;}
.x9_c00161{left:456.457500px;}
.x12_c00161{left:459.939525px;}
.x88_c00161{left:460.968405px;}
.x21_c00161{left:462.151200px;}
.x7f_c00161{left:464.281473px;}
.x48_c00161{left:466.668000px;}
.x66_c00161{left:470.694000px;}
.x44_c00161{left:472.398000px;}
.x93_c00161{left:475.009919px;}
.x78_c00161{left:476.713500px;}
.x9b_c00161{left:478.509000px;}
.x13_c00161{left:486.403050px;}
.x19_c00161{left:488.598210px;}
.x59_c00161{left:492.769380px;}
.x31_c00161{left:493.830000px;}
.x94_c00161{left:495.262310px;}
.x4c_c00161{left:507.502500px;}
.x67_c00161{left:508.537500px;}
.x8e_c00161{left:513.346874px;}
.x95_c00161{left:514.970184px;}
.x89_c00161{left:520.940385px;}
.x80_c00161{left:522.051617px;}
.x81_c00161{left:525.204650px;}
.x79_c00161{left:529.620000px;}
.x8f_c00161{left:532.274501px;}
.x32_c00161{left:534.060000px;}
.x54_c00161{left:537.593811px;}
.x14_c00161{left:541.491645px;}
.x82_c00161{left:549.074397px;}
.x4d_c00161{left:550.711500px;}
.x7a_c00161{left:552.280500px;}
.x33_c00161{left:565.920000px;}
.x96_c00161{left:574.423808px;}
.x8a_c00161{left:575.476200px;}
.x9c_c00161{left:583.276500px;}
.x90_c00161{left:586.564299px;}
.x7b_c00161{left:591.402000px;}
.x83_c00161{left:603.034491px;}
.x9d_c00161{left:605.397000px;}
.x8b_c00161{left:616.745570px;}
.x8c_c00161{left:627.071916px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.fs10_c00161{font-size:41.066667pt;}
.fsf_c00161{font-size:42.000000pt;}
.fs15_c00161{font-size:44.801098pt;}
.fs12_c00161{font-size:44.802710pt;}
.fse_c00161{font-size:46.666667pt;}
.fs13_c00161{font-size:46.669490pt;}
.fs14_c00161{font-size:47.602880pt;}
.fs11_c00161{font-size:49.466667pt;}
.fsb_c00161{font-size:56.000000pt;}
.fsc_c00161{font-size:59.733333pt;}
.fs6_c00161{font-size:60.666667pt;}
.fs8_c00161{font-size:60.669124pt;}
.fs9_c00161{font-size:60.670337pt;}
.fsa_c00161{font-size:61.603727pt;}
.fs3_c00161{font-size:62.536460pt;}
.fs2_c00161{font-size:63.469840pt;}
.fs4_c00161{font-size:63.470506pt;}
.fs5_c00161{font-size:64.400000pt;}
.fs7_c00161{font-size:64.403896pt;}
.fs1_c00161{font-size:65.336600pt;}
.fsd_c00161{font-size:66.266667pt;}
.fs0_c00161{font-size:121.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.yd1_c00161{bottom:130.560000pt;}
.yd2_c00161{bottom:130.714672pt;}
.yd3_c00161{bottom:131.107829pt;}
.yd4_c00161{bottom:131.159872pt;}
.yd5_c00161{bottom:131.295840pt;}
.yd6_c00161{bottom:131.586480pt;}
.yd7_c00161{bottom:131.680625pt;}
.yd8_c00161{bottom:132.018343pt;}
.yd9_c00161{bottom:132.095539pt;}
.yda_c00161{bottom:132.246748pt;}
.ydb_c00161{bottom:132.488509pt;}
.ydc_c00161{bottom:132.683539pt;}
.ydd_c00161{bottom:132.787568pt;}
.yde_c00161{bottom:133.024691pt;}
.ydf_c00161{bottom:133.335425pt;}
.ye0_c00161{bottom:133.473064pt;}
.yc3_c00161{bottom:146.634141pt;}
.yc4_c00161{bottom:146.939676pt;}
.yc5_c00161{bottom:147.056872pt;}
.yc6_c00161{bottom:147.296692pt;}
.yc7_c00161{bottom:147.563309pt;}
.yc8_c00161{bottom:147.665507pt;}
.yc9_c00161{bottom:147.783875pt;}
.yca_c00161{bottom:148.227575pt;}
.ycb_c00161{bottom:148.396779pt;}
.ycc_c00161{bottom:148.612017pt;}
.ycd_c00161{bottom:148.731472pt;}
.yce_c00161{bottom:148.857487pt;}
.ycf_c00161{bottom:148.979511pt;}
.yd0_c00161{bottom:149.348809pt;}
.yc0_c00161{bottom:163.459889pt;}
.ybf_c00161{bottom:163.460224pt;}
.ybe_c00161{bottom:163.460319pt;}
.yc1_c00161{bottom:163.460420pt;}
.ybd_c00161{bottom:163.460493pt;}
.yc2_c00161{bottom:163.460539pt;}
.yb7_c00161{bottom:163.460851pt;}
.ybb_c00161{bottom:163.460976pt;}
.ybc_c00161{bottom:163.461095pt;}
.yb8_c00161{bottom:163.461328pt;}
.yb9_c00161{bottom:163.461512pt;}
.yba_c00161{bottom:163.461551pt;}
.yab_c00161{bottom:178.076868pt;}
.yac_c00161{bottom:178.370004pt;}
.yad_c00161{bottom:178.585669pt;}
.yae_c00161{bottom:178.818516pt;}
.yaf_c00161{bottom:179.072417pt;}
.yb0_c00161{bottom:179.305352pt;}
.yb1_c00161{bottom:179.481433pt;}
.yb2_c00161{bottom:179.815592pt;}
.yb3_c00161{bottom:180.287567pt;}
.yb4_c00161{bottom:180.750151pt;}
.yb5_c00161{bottom:180.884548pt;}
.yb6_c00161{bottom:181.270031pt;}
.y9b_c00161{bottom:194.159852pt;}
.y9c_c00161{bottom:194.351881pt;}
.y9d_c00161{bottom:194.634613pt;}
.y9e_c00161{bottom:194.824223pt;}
.y9f_c00161{bottom:195.033287pt;}
.ya0_c00161{bottom:195.241103pt;}
.ya1_c00161{bottom:195.469988pt;}
.ya2_c00161{bottom:195.792292pt;}
.ya3_c00161{bottom:196.128900pt;}
.ya4_c00161{bottom:196.358623pt;}
.ya5_c00161{bottom:196.577239pt;}
.ya6_c00161{bottom:196.784996pt;}
.ya7_c00161{bottom:196.978273pt;}
.ya8_c00161{bottom:197.171551pt;}
.ya9_c00161{bottom:197.464393pt;}
.yaa_c00161{bottom:197.537359pt;}
.y8c_c00161{bottom:209.760896pt;}
.y8d_c00161{bottom:210.247116pt;}
.y8e_c00161{bottom:210.414964pt;}
.y8f_c00161{bottom:210.736783pt;}
.y90_c00161{bottom:210.967512pt;}
.y91_c00161{bottom:211.306697pt;}
.y92_c00161{bottom:211.888568pt;}
.y93_c00161{bottom:211.988545pt;}
.y94_c00161{bottom:212.363037pt;}
.y95_c00161{bottom:212.670320pt;}
.y96_c00161{bottom:213.183177pt;}
.y97_c00161{bottom:213.211340pt;}
.y98_c00161{bottom:213.284797pt;}
.y99_c00161{bottom:213.424731pt;}
.y9a_c00161{bottom:213.904335pt;}
.y7a_c00161{bottom:226.082667pt;}
.y7b_c00161{bottom:226.248884pt;}
.y7c_c00161{bottom:226.344115pt;}
.y7d_c00161{bottom:226.900392pt;}
.y7e_c00161{bottom:227.074617pt;}
.y7f_c00161{bottom:227.330829pt;}
.y80_c00161{bottom:227.603145pt;}
.y81_c00161{bottom:227.909283pt;}
.y82_c00161{bottom:228.116757pt;}
.y83_c00161{bottom:228.222988pt;}
.y84_c00161{bottom:228.352392pt;}
.y85_c00161{bottom:228.611068pt;}
.y86_c00161{bottom:228.761973pt;}
.y87_c00161{bottom:229.276539pt;}
.y88_c00161{bottom:229.439999pt;}
.y89_c00161{bottom:229.793847pt;}
.y8a_c00161{bottom:230.015416pt;}
.y8b_c00161{bottom:230.397937pt;}
.y79_c00161{bottom:266.016000pt;}
.y78_c00161{bottom:282.006667pt;}
.y77_c00161{bottom:297.276000pt;}
.y76_c00161{bottom:314.009333pt;}
.y75_c00161{bottom:329.529333pt;}
.y6b_c00161{bottom:358.800000pt;}
.y6c_c00161{bottom:359.130667pt;}
.y6d_c00161{bottom:359.452000pt;}
.y6e_c00161{bottom:359.745333pt;}
.y6f_c00161{bottom:359.860000pt;}
.y70_c00161{bottom:360.466667pt;}
.y71_c00161{bottom:360.616000pt;}
.y72_c00161{bottom:360.870667pt;}
.y73_c00161{bottom:361.190667pt;}
.y74_c00161{bottom:361.493333pt;}
.y6a_c00161{bottom:380.692000pt;}
.y69_c00161{bottom:400.249333pt;}
.y68_c00161{bottom:420.688000pt;}
.y66_c00161{bottom:440.913821pt;}
.y60_c00161{bottom:440.913912pt;}
.y62_c00161{bottom:440.914043pt;}
.y61_c00161{bottom:440.914137pt;}
.y67_c00161{bottom:440.914165pt;}
.y63_c00161{bottom:440.914200pt;}
.y65_c00161{bottom:440.914236pt;}
.y64_c00161{bottom:440.914517pt;}
.y5b_c00161{bottom:461.271592pt;}
.y5a_c00161{bottom:461.271701pt;}
.y5c_c00161{bottom:461.271844pt;}
.y5f_c00161{bottom:461.271996pt;}
.y5d_c00161{bottom:461.272161pt;}
.y5e_c00161{bottom:461.272319pt;}
.y59_c00161{bottom:461.272344pt;}
.y56_c00161{bottom:461.272364pt;}
.y58_c00161{bottom:461.272453pt;}
.y57_c00161{bottom:461.272483pt;}
.y54_c00161{bottom:481.960669pt;}
.y51_c00161{bottom:481.960796pt;}
.y53_c00161{bottom:481.961019pt;}
.y55_c00161{bottom:481.961052pt;}
.y52_c00161{bottom:481.961140pt;}
.y50_c00161{bottom:481.961397pt;}
.y4f_c00161{bottom:481.961572pt;}
.y4c_c00161{bottom:481.961657pt;}
.y4e_c00161{bottom:481.962227pt;}
.y4d_c00161{bottom:481.962229pt;}
.y42_c00161{bottom:500.401333pt;}
.y43_c00161{bottom:500.652295pt;}
.y44_c00161{bottom:501.219924pt;}
.y45_c00161{bottom:501.515912pt;}
.y46_c00161{bottom:502.415917pt;}
.y47_c00161{bottom:502.700993pt;}
.y48_c00161{bottom:503.144425pt;}
.y49_c00161{bottom:503.535028pt;}
.y4a_c00161{bottom:503.714827pt;}
.y4b_c00161{bottom:504.137315pt;}
.y3a_c00161{bottom:520.801333pt;}
.y3b_c00161{bottom:521.239837pt;}
.y3c_c00161{bottom:521.412457pt;}
.y3d_c00161{bottom:521.771293pt;}
.y3e_c00161{bottom:522.101785pt;}
.y3f_c00161{bottom:522.350197pt;}
.y40_c00161{bottom:522.993829pt;}
.y41_c00161{bottom:523.177249pt;}
.y33_c00161{bottom:540.961333pt;}
.y34_c00161{bottom:541.632025pt;}
.y35_c00161{bottom:542.051727pt;}
.y36_c00161{bottom:542.439807pt;}
.y37_c00161{bottom:542.951439pt;}
.y38_c00161{bottom:543.326847pt;}
.y39_c00161{bottom:543.905095pt;}
.y32_c00161{bottom:562.214667pt;}
.y31_c00161{bottom:582.973333pt;}
.y30_c00161{bottom:603.893333pt;}
.y2f_c00161{bottom:624.540000pt;}
.y26_c00161{bottom:643.921333pt;}
.y27_c00161{bottom:644.370309pt;}
.y28_c00161{bottom:644.610564pt;}
.y29_c00161{bottom:644.943277pt;}
.y2a_c00161{bottom:645.479344pt;}
.y2b_c00161{bottom:645.695457pt;}
.y2c_c00161{bottom:646.118004pt;}
.y2d_c00161{bottom:646.326579pt;}
.y2e_c00161{bottom:646.640753pt;}
.y1c_c00161{bottom:664.560507pt;}
.y1d_c00161{bottom:664.923800pt;}
.y1e_c00161{bottom:665.221720pt;}
.y1f_c00161{bottom:665.463587pt;}
.y20_c00161{bottom:665.758253pt;}
.y21_c00161{bottom:665.952973pt;}
.y22_c00161{bottom:666.187533pt;}
.y23_c00161{bottom:666.304227pt;}
.y24_c00161{bottom:666.675373pt;}
.y25_c00161{bottom:666.909893pt;}
.y15_c00161{bottom:684.241133pt;}
.y16_c00161{bottom:684.650600pt;}
.y17_c00161{bottom:685.017480pt;}
.y18_c00161{bottom:685.612347pt;}
.y19_c00161{bottom:686.173867pt;}
.y1a_c00161{bottom:686.623547pt;}
.y1b_c00161{bottom:687.368333pt;}
.ya_c00161{bottom:704.879360pt;}
.yb_c00161{bottom:705.169520pt;}
.yc_c00161{bottom:705.460293pt;}
.yd_c00161{bottom:705.703480pt;}
.ye_c00161{bottom:705.886173pt;}
.yf_c00161{bottom:706.072627pt;}
.y10_c00161{bottom:706.345453pt;}
.y11_c00161{bottom:706.681187pt;}
.y12_c00161{bottom:706.954240pt;}
.y13_c00161{bottom:707.142800pt;}
.y14_c00161{bottom:707.535133pt;}
.y2_c00161{bottom:724.801333pt;}
.y3_c00161{bottom:725.043427pt;}
.y4_c00161{bottom:725.281427pt;}
.y5_c00161{bottom:725.730787pt;}
.y6_c00161{bottom:726.256027pt;}
.y7_c00161{bottom:726.615987pt;}
.y8_c00161{bottom:726.836533pt;}
.y9_c00161{bottom:727.372000pt;}
.y1_c00161{bottom:785.194667pt;}
.h12_c00161{height:41.066667pt;}
.h11_c00161{height:42.000000pt;}
.h17_c00161{height:44.801098pt;}
.h14_c00161{height:44.802710pt;}
.h10_c00161{height:46.666667pt;}
.h15_c00161{height:46.669490pt;}
.h16_c00161{height:47.602880pt;}
.h13_c00161{height:49.466667pt;}
.hd_c00161{height:56.000000pt;}
.he_c00161{height:59.733333pt;}
.h8_c00161{height:60.666667pt;}
.ha_c00161{height:60.669124pt;}
.hb_c00161{height:60.670337pt;}
.hc_c00161{height:61.603727pt;}
.h5_c00161{height:62.536460pt;}
.h4_c00161{height:63.469840pt;}
.h6_c00161{height:63.470506pt;}
.h7_c00161{height:64.400000pt;}
.h9_c00161{height:64.403896pt;}
.h3_c00161{height:65.336600pt;}
.hf_c00161{height:66.266667pt;}
.h2_c00161{height:121.333333pt;}
.h0_c00161{height:896.400000pt;}
.h1_c00161{height:896.666667pt;}
.w0_c00161{width:601.680000pt;}
.w1_c00161{width:602.000000pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:62.880000pt;}
.x6c_c00161{left:120.720000pt;}
.x7c_c00161{left:121.774112pt;}
.x73_c00161{left:133.393333pt;}
.x84_c00161{left:134.943296pt;}
.x97_c00161{left:144.074667pt;}
.x2_c00161{left:148.673333pt;}
.xa_c00161{left:149.608627pt;}
.x22_c00161{left:150.604000pt;}
.x41_c00161{left:152.294667pt;}
.x74_c00161{left:157.161333pt;}
.x85_c00161{left:158.946755pt;}
.x91_c00161{left:165.600648pt;}
.x4e_c00161{left:168.961113pt;}
.x34_c00161{left:170.640000pt;}
.x3_c00161{left:172.882667pt;}
.x55_c00161{left:174.242645pt;}
.x92_c00161{left:182.953841pt;}
.xb_c00161{left:185.825347pt;}
.x15_c00161{left:187.338667pt;}
.x1a_c00161{left:190.189533pt;}
.x23_c00161{left:191.420000pt;}
.x86_c00161{left:194.226580pt;}
.x4_c00161{left:196.682667pt;}
.x5a_c00161{left:197.762740pt;}
.x2b_c00161{left:199.200000pt;}
.x5d_c00161{left:201.120000pt;}
.x35_c00161{left:205.440000pt;}
.x5f_c00161{left:207.600000pt;}
.x56_c00161{left:210.244335pt;}
.x68_c00161{left:211.920000pt;}
.x24_c00161{left:213.261333pt;}
.x3f_c00161{left:215.280000pt;}
.x4f_c00161{left:216.724225pt;}
.x45_c00161{left:218.728000pt;}
.x16_c00161{left:220.693000pt;}
.xc_c00161{left:222.103400pt;}
.x1b_c00161{left:223.315200pt;}
.x49_c00161{left:224.304000pt;}
.x63_c00161{left:225.212000pt;}
.x98_c00161{left:227.098667pt;}
.x60_c00161{left:228.240000pt;}
.x2c_c00161{left:237.600000pt;}
.x6d_c00161{left:239.520000pt;}
.x5_c00161{left:241.618667pt;}
.x25_c00161{left:243.508000pt;}
.x6e_c00161{left:244.560000pt;}
.x50_c00161{left:246.486500pt;}
.x71_c00161{left:248.640000pt;}
.x1c_c00161{left:250.168800pt;}
.x42_c00161{left:251.421333pt;}
.xd_c00161{left:252.556013pt;}
.x5e_c00161{left:254.880000pt;}
.x64_c00161{left:257.874667pt;}
.x39_c00161{left:259.200000pt;}
.x2d_c00161{left:265.680000pt;}
.x72_c00161{left:267.120000pt;}
.x99_c00161{left:268.618667pt;}
.x36_c00161{left:269.520000pt;}
.x62_c00161{left:270.480000pt;}
.x51_c00161{left:271.928247pt;}
.xe_c00161{left:275.359133pt;}
.x3a_c00161{left:276.720000pt;}
.x3b_c00161{left:278.160000pt;}
.x1d_c00161{left:282.835787pt;}
.x43_c00161{left:286.701333pt;}
.x5b_c00161{left:288.968436pt;}
.x26_c00161{left:292.241333pt;}
.x6_c00161{left:294.142667pt;}
.x46_c00161{left:295.320000pt;}
.x8d_c00161{left:297.692429pt;}
.xf_c00161{left:298.671600pt;}
.x52_c00161{left:301.210463pt;}
.x1e_c00161{left:304.441333pt;}
.x27_c00161{left:311.888000pt;}
.x40_c00161{left:315.840000pt;}
.x75_c00161{left:318.310667pt;}
.x37_c00161{left:319.680000pt;}
.x6f_c00161{left:321.360000pt;}
.x47_c00161{left:322.921333pt;}
.x69_c00161{left:324.720000pt;}
.x17_c00161{left:325.797280pt;}
.x76_c00161{left:327.968000pt;}
.x7_c00161{left:330.138667pt;}
.x10_c00161{left:332.754947pt;}
.x2e_c00161{left:334.560000pt;}
.x57_c00161{left:337.211705pt;}
.x6b_c00161{left:338.400000pt;}
.x77_c00161{left:339.732000pt;}
.x9a_c00161{left:341.341333pt;}
.x3c_c00161{left:342.480000pt;}
.x1f_c00161{left:343.567067pt;}
.x7d_c00161{left:344.532561pt;}
.x53_c00161{left:345.853193pt;}
.x28_c00161{left:350.301333pt;}
.x8_c00161{left:352.193333pt;}
.x2f_c00161{left:354.720000pt;}
.x6a_c00161{left:356.160000pt;}
.x4a_c00161{left:358.946667pt;}
.x70_c00161{left:360.720000pt;}
.x38_c00161{left:362.640000pt;}
.x3d_c00161{left:364.800000pt;}
.x18_c00161{left:366.631533pt;}
.x29_c00161{left:369.262667pt;}
.x61_c00161{left:371.520000pt;}
.x11_c00161{left:374.729120pt;}
.x30_c00161{left:376.800000pt;}
.x87_c00161{left:380.986073pt;}
.x7e_c00161{left:381.971639pt;}
.x65_c00161{left:382.901333pt;}
.x20_c00161{left:384.815480pt;}
.x5c_c00161{left:387.615041pt;}
.x3e_c00161{left:395.280000pt;}
.x2a_c00161{left:397.824000pt;}
.x4b_c00161{left:399.258667pt;}
.x58_c00161{left:403.695743pt;}
.x9_c00161{left:405.740000pt;}
.x12_c00161{left:408.835133pt;}
.x88_c00161{left:409.749693pt;}
.x21_c00161{left:410.801067pt;}
.x7f_c00161{left:412.694643pt;}
.x48_c00161{left:414.816000pt;}
.x66_c00161{left:418.394667pt;}
.x44_c00161{left:419.909333pt;}
.x93_c00161{left:422.231039pt;}
.x78_c00161{left:423.745333pt;}
.x9b_c00161{left:425.341333pt;}
.x13_c00161{left:432.358267pt;}
.x19_c00161{left:434.309520pt;}
.x59_c00161{left:438.017227pt;}
.x31_c00161{left:438.960000pt;}
.x94_c00161{left:440.233164pt;}
.x4c_c00161{left:451.113333pt;}
.x67_c00161{left:452.033333pt;}
.x8e_c00161{left:456.308332pt;}
.x95_c00161{left:457.751275pt;}
.x89_c00161{left:463.058120pt;}
.x80_c00161{left:464.045881pt;}
.x81_c00161{left:466.848577pt;}
.x79_c00161{left:470.773333pt;}
.x8f_c00161{left:473.132889pt;}
.x32_c00161{left:474.720000pt;}
.x54_c00161{left:477.861165pt;}
.x14_c00161{left:481.325907pt;}
.x82_c00161{left:488.066131pt;}
.x4d_c00161{left:489.521333pt;}
.x7a_c00161{left:490.916000pt;}
.x33_c00161{left:503.040000pt;}
.x96_c00161{left:510.598940pt;}
.x8a_c00161{left:511.534400pt;}
.x9c_c00161{left:518.468000pt;}
.x90_c00161{left:521.390488pt;}
.x7b_c00161{left:525.690667pt;}
.x83_c00161{left:536.030659pt;}
.x9d_c00161{left:538.130667pt;}
.x8b_c00161{left:548.218284pt;}
.x8c_c00161{left:557.397259pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mde_c00162{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);}
.m5c_c00162{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{transform:matrix(0.012698,-0.000203,0.003999,0.249968,0,0);-ms-transform:matrix(0.012698,-0.000203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.012698,-0.000203,0.003999,0.249968,0,0);}
.m51_c00162{transform:matrix(0.012833,-0.000205,0.003999,0.249968,0,0);-ms-transform:matrix(0.012833,-0.000205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.012833,-0.000205,0.003999,0.249968,0,0);}
.md5_c00162{transform:matrix(0.014725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014725,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.014943,-0.000239,0.003999,0.249968,0,0);-ms-transform:matrix(0.014943,-0.000239,0.003999,0.249968,0,0);-webkit-transform:matrix(0.014943,-0.000239,0.003999,0.249968,0,0);}
.m62_c00162{transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00162{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.m8d_c00162{transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110695,0.000000,0.000000,0.250000,0,0);}
.mef_c00162{transform:matrix(0.116060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116060,0.000000,0.000000,0.250000,0,0);}
.mb8_c00162{transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{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);}
.mc6_c00162{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);}
.m90_c00162{transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{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);}
.m4a_c00162{transform:matrix(0.154370,-0.002470,0.003999,0.249968,0,0);-ms-transform:matrix(0.154370,-0.002470,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154370,-0.002470,0.003999,0.249968,0,0);}
.m8e_c00162{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);}
.m7e_c00162{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);}
.m24_c00162{transform:matrix(0.158465,-0.003328,0.005249,0.249945,0,0);-ms-transform:matrix(0.158465,-0.003328,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158465,-0.003328,0.005249,0.249945,0,0);}
.mc2_c00162{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);}
.m7_c00162{transform:matrix(0.158985,-0.003339,0.005249,0.249945,0,0);-ms-transform:matrix(0.158985,-0.003339,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158985,-0.003339,0.005249,0.249945,0,0);}
.m21_c00162{transform:matrix(0.159645,-0.003353,0.005249,0.249945,0,0);-ms-transform:matrix(0.159645,-0.003353,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159645,-0.003353,0.005249,0.249945,0,0);}
.mb6_c00162{transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.164238,-0.001478,0.002250,0.249990,0,0);-ms-transform:matrix(0.164238,-0.001478,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164238,-0.001478,0.002250,0.249990,0,0);}
.m78_c00162{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);}
.m68_c00162{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);}
.m38_c00162{transform:matrix(0.165648,-0.003479,0.005249,0.249945,0,0);-ms-transform:matrix(0.165648,-0.003479,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165648,-0.003479,0.005249,0.249945,0,0);}
.m6c_c00162{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);}
.mb3_c00162{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);}
.m36_c00162{transform:matrix(0.168723,-0.003543,0.005249,0.249945,0,0);-ms-transform:matrix(0.168723,-0.003543,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168723,-0.003543,0.005249,0.249945,0,0);}
.m9e_c00162{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);}
.mcb_c00162{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);}
.mdb_c00162{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);}
.mc1_c00162{transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{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);}
.m9a_c00162{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);}
.ma9_c00162{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);}
.m5a_c00162{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);}
.m1a_c00162{transform:matrix(0.173287,-0.003639,0.005249,0.249945,0,0);-ms-transform:matrix(0.173287,-0.003639,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173287,-0.003639,0.005249,0.249945,0,0);}
.m10_c00162{transform:matrix(0.173977,-0.003654,0.005249,0.249945,0,0);-ms-transform:matrix(0.173977,-0.003654,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173977,-0.003654,0.005249,0.249945,0,0);}
.m7c_c00162{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);}
.m13_c00162{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);}
.m5_c00162{transform:matrix(0.175039,-0.001925,0.002750,0.249985,0,0);-ms-transform:matrix(0.175039,-0.001925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175039,-0.001925,0.002750,0.249985,0,0);}
.m7f_c00162{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);}
.m71_c00162{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);}
.m7b_c00162{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);}
.m86_c00162{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);}
.m6a_c00162{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);}
.m39_c00162{transform:matrix(0.176216,-0.003701,0.005249,0.249945,0,0);-ms-transform:matrix(0.176216,-0.003701,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176216,-0.003701,0.005249,0.249945,0,0);}
.md0_c00162{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);}
.m2f_c00162{transform:matrix(0.176471,-0.003706,0.005249,0.249945,0,0);-ms-transform:matrix(0.176471,-0.003706,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176471,-0.003706,0.005249,0.249945,0,0);}
.mee_c00162{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);}
.m8_c00162{transform:matrix(0.177136,-0.003720,0.005249,0.249945,0,0);-ms-transform:matrix(0.177136,-0.003720,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177136,-0.003720,0.005249,0.249945,0,0);}
.m76_c00162{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);}
.m16_c00162{transform:matrix(0.178266,-0.003744,0.005249,0.249945,0,0);-ms-transform:matrix(0.178266,-0.003744,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178266,-0.003744,0.005249,0.249945,0,0);}
.mdd_c00162{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.mc0_c00162{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_c00162{transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);}
.me_c00162{transform:matrix(0.180330,-0.003787,0.005249,0.249945,0,0);-ms-transform:matrix(0.180330,-0.003787,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180330,-0.003787,0.005249,0.249945,0,0);}
.m82_c00162{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);}
.m31_c00162{transform:matrix(0.180945,-0.003800,0.005249,0.249945,0,0);-ms-transform:matrix(0.180945,-0.003800,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180945,-0.003800,0.005249,0.249945,0,0);}
.m46_c00162{transform:matrix(0.181272,-0.002900,0.003999,0.249968,0,0);-ms-transform:matrix(0.181272,-0.002900,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181272,-0.002900,0.003999,0.249968,0,0);}
.m89_c00162{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);}
.m96_c00162{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);}
.md1_c00162{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);}
.mc9_c00162{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);}
.m79_c00162{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);}
.m93_c00162{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);}
.m67_c00162{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);}
.me6_c00162{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);}
.mce_c00162{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);}
.mcc_c00162{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);}
.ma1_c00162{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);}
.mdc_c00162{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);}
.m1f_c00162{transform:matrix(0.184834,-0.003882,0.005249,0.249945,0,0);-ms-transform:matrix(0.184834,-0.003882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184834,-0.003882,0.005249,0.249945,0,0);}
.mc8_c00162{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);}
.mbb_c00162{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);}
.m2c_c00162{transform:matrix(0.186304,-0.003912,0.005249,0.249945,0,0);-ms-transform:matrix(0.186304,-0.003912,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186304,-0.003912,0.005249,0.249945,0,0);}
.m9_c00162{transform:matrix(0.186414,-0.003915,0.005249,0.249945,0,0);-ms-transform:matrix(0.186414,-0.003915,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186414,-0.003915,0.005249,0.249945,0,0);}
.m9b_c00162{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);}
.ma0_c00162{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);}
.m1c_c00162{transform:matrix(0.187414,-0.003936,0.005249,0.249945,0,0);-ms-transform:matrix(0.187414,-0.003936,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187414,-0.003936,0.005249,0.249945,0,0);}
.md2_c00162{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);}
.m87_c00162{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);}
.m88_c00162{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);}
.mbe_c00162{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);}
.ma2_c00162{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);}
.m75_c00162{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);}
.m69_c00162{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);}
.m1d_c00162{transform:matrix(0.190413,-0.003999,0.005249,0.249945,0,0);-ms-transform:matrix(0.190413,-0.003999,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190413,-0.003999,0.005249,0.249945,0,0);}
.me4_c00162{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_c00162{transform:matrix(0.192498,-0.004042,0.005249,0.249945,0,0);-ms-transform:matrix(0.192498,-0.004042,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192498,-0.004042,0.005249,0.249945,0,0);}
.m42_c00162{transform:matrix(0.192902,-0.001736,0.002250,0.249990,0,0);-ms-transform:matrix(0.192902,-0.001736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192902,-0.001736,0.002250,0.249990,0,0);}
.mbc_c00162{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);}
.m9d_c00162{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);}
.m97_c00162{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);}
.m3a_c00162{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);}
.m59_c00162{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);}
.m74_c00162{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);}
.m2d_c00162{transform:matrix(0.195302,-0.004101,0.005249,0.249945,0,0);-ms-transform:matrix(0.195302,-0.004101,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195302,-0.004101,0.005249,0.249945,0,0);}
.mb2_c00162{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);}
.mb9_c00162{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);}
.m55_c00162{transform:matrix(0.196395,-0.003142,0.003999,0.249968,0,0);-ms-transform:matrix(0.196395,-0.003142,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196395,-0.003142,0.003999,0.249968,0,0);}
.m19_c00162{transform:matrix(0.196597,-0.004129,0.005249,0.249945,0,0);-ms-transform:matrix(0.196597,-0.004129,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196597,-0.004129,0.005249,0.249945,0,0);}
.m2b_c00162{transform:matrix(0.196962,-0.004136,0.005249,0.249945,0,0);-ms-transform:matrix(0.196962,-0.004136,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196962,-0.004136,0.005249,0.249945,0,0);}
.m11_c00162{transform:matrix(0.197142,-0.004140,0.005249,0.249945,0,0);-ms-transform:matrix(0.197142,-0.004140,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197142,-0.004140,0.005249,0.249945,0,0);}
.m23_c00162{transform:matrix(0.198576,-0.004170,0.005249,0.249945,0,0);-ms-transform:matrix(0.198576,-0.004170,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198576,-0.004170,0.005249,0.249945,0,0);}
.md7_c00162{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);}
.m33_c00162{transform:matrix(0.198731,-0.004173,0.005249,0.249945,0,0);-ms-transform:matrix(0.198731,-0.004173,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198731,-0.004173,0.005249,0.249945,0,0);}
.m8a_c00162{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);}
.m52_c00162{transform:matrix(0.199649,-0.003194,0.003999,0.249968,0,0);-ms-transform:matrix(0.199649,-0.003194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199649,-0.003194,0.003999,0.249968,0,0);}
.m29_c00162{transform:matrix(0.201166,-0.004224,0.005249,0.249945,0,0);-ms-transform:matrix(0.201166,-0.004224,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201166,-0.004224,0.005249,0.249945,0,0);}
.m7a_c00162{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);}
.m2a_c00162{transform:matrix(0.202815,-0.004259,0.005249,0.249945,0,0);-ms-transform:matrix(0.202815,-0.004259,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202815,-0.004259,0.005249,0.249945,0,0);}
.m85_c00162{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);}
.mb4_c00162{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);}
.mbd_c00162{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);}
.m6e_c00162{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);}
.m4c_c00162{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);}
.m4_c00162{transform:matrix(0.204268,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204268,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204268,-0.002247,0.002750,0.249985,0,0);}
.m30_c00162{transform:matrix(0.204540,-0.004295,0.005249,0.249945,0,0);-ms-transform:matrix(0.204540,-0.004295,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204540,-0.004295,0.005249,0.249945,0,0);}
.m14_c00162{transform:matrix(0.204595,-0.004296,0.005249,0.249945,0,0);-ms-transform:matrix(0.204595,-0.004296,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204595,-0.004296,0.005249,0.249945,0,0);}
.ma4_c00162{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);}
.m6d_c00162{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);}
.m43_c00162{transform:matrix(0.207117,-0.001864,0.002250,0.249990,0,0);-ms-transform:matrix(0.207117,-0.001864,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207117,-0.001864,0.002250,0.249990,0,0);}
.ma_c00162{transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);-ms-transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);}
.m2e_c00162{transform:matrix(0.207364,-0.004355,0.005249,0.249945,0,0);-ms-transform:matrix(0.207364,-0.004355,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207364,-0.004355,0.005249,0.249945,0,0);}
.m34_c00162{transform:matrix(0.207389,-0.004355,0.005249,0.249945,0,0);-ms-transform:matrix(0.207389,-0.004355,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207389,-0.004355,0.005249,0.249945,0,0);}
.mb0_c00162{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);}
.maa_c00162{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);}
.md_c00162{transform:matrix(0.208479,-0.004378,0.005249,0.249945,0,0);-ms-transform:matrix(0.208479,-0.004378,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208479,-0.004378,0.005249,0.249945,0,0);}
.m72_c00162{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);}
.m7d_c00162{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);}
.m98_c00162{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);}
.m17_c00162{transform:matrix(0.209904,-0.004408,0.005249,0.249945,0,0);-ms-transform:matrix(0.209904,-0.004408,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209904,-0.004408,0.005249,0.249945,0,0);}
.m18_c00162{transform:matrix(0.210744,-0.004426,0.005249,0.249945,0,0);-ms-transform:matrix(0.210744,-0.004426,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210744,-0.004426,0.005249,0.249945,0,0);}
.m8c_c00162{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);}
.m58_c00162{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);}
.mb_c00162{transform:matrix(0.211973,-0.004451,0.005249,0.249945,0,0);-ms-transform:matrix(0.211973,-0.004451,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211973,-0.004451,0.005249,0.249945,0,0);}
.m1_c00162{transform:matrix(0.212802,-0.002341,0.002750,0.249985,0,0);-ms-transform:matrix(0.212802,-0.002341,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212802,-0.002341,0.002750,0.249985,0,0);}
.m6f_c00162{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);}
.mab_c00162{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);}
.m56_c00162{transform:matrix(0.213978,-0.003424,0.003999,0.249968,0,0);-ms-transform:matrix(0.213978,-0.003424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213978,-0.003424,0.003999,0.249968,0,0);}
.me7_c00162{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);}
.m28_c00162{transform:matrix(0.214843,-0.004512,0.005249,0.249945,0,0);-ms-transform:matrix(0.214843,-0.004512,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214843,-0.004512,0.005249,0.249945,0,0);}
.mdf_c00162{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m73_c00162{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);}
.m92_c00162{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);}
.md8_c00162{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);}
.mcd_c00162{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);}
.m20_c00162{transform:matrix(0.218642,-0.004591,0.005249,0.249945,0,0);-ms-transform:matrix(0.218642,-0.004591,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218642,-0.004591,0.005249,0.249945,0,0);}
.m15_c00162{transform:matrix(0.218992,-0.004599,0.005249,0.249945,0,0);-ms-transform:matrix(0.218992,-0.004599,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218992,-0.004599,0.005249,0.249945,0,0);}
.maf_c00162{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);}
.m3e_c00162{transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);-ms-transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);}
.mad_c00162{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);}
.m40_c00162{transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);-ms-transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);}
.md6_c00162{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);}
.m1b_c00162{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);}
.md4_c00162{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);}
.mb5_c00162{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);}
.m5f_c00162{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);}
.m4d_c00162{transform:matrix(0.226006,-0.003616,0.003999,0.249968,0,0);-ms-transform:matrix(0.226006,-0.003616,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226006,-0.003616,0.003999,0.249968,0,0);}
.mf_c00162{transform:matrix(0.226565,-0.004758,0.005249,0.249945,0,0);-ms-transform:matrix(0.226565,-0.004758,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226565,-0.004758,0.005249,0.249945,0,0);}
.me0_c00162{transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);}
.mc4_c00162{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);}
.m95_c00162{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);}
.m60_c00162{transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{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);}
.m25_c00162{transform:matrix(0.231499,-0.004861,0.005249,0.249945,0,0);-ms-transform:matrix(0.231499,-0.004861,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231499,-0.004861,0.005249,0.249945,0,0);}
.mca_c00162{transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.234950,-0.003759,0.003999,0.249968,0,0);-ms-transform:matrix(0.234950,-0.003759,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234950,-0.003759,0.003999,0.249968,0,0);}
.ma7_c00162{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);}
.m3d_c00162{transform:matrix(0.235170,-0.002117,0.002250,0.249990,0,0);-ms-transform:matrix(0.235170,-0.002117,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235170,-0.002117,0.002250,0.249990,0,0);}
.m3_c00162{transform:matrix(0.236621,-0.002603,0.002750,0.249985,0,0);-ms-transform:matrix(0.236621,-0.002603,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236621,-0.002603,0.002750,0.249985,0,0);}
.m65_c00162{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);}
.m32_c00162{transform:matrix(0.237033,-0.004978,0.005249,0.249945,0,0);-ms-transform:matrix(0.237033,-0.004978,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237033,-0.004978,0.005249,0.249945,0,0);}
.ma3_c00162{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);}
.m9f_c00162{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);}
.m1e_c00162{transform:matrix(0.239032,-0.005020,0.005249,0.249945,0,0);-ms-transform:matrix(0.239032,-0.005020,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239032,-0.005020,0.005249,0.249945,0,0);}
.mac_c00162{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);}
.mc_c00162{transform:matrix(0.240417,-0.005049,0.005249,0.249945,0,0);-ms-transform:matrix(0.240417,-0.005049,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240417,-0.005049,0.005249,0.249945,0,0);}
.m27_c00162{transform:matrix(0.240882,-0.005059,0.005249,0.249945,0,0);-ms-transform:matrix(0.240882,-0.005059,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240882,-0.005059,0.005249,0.249945,0,0);}
.m61_c00162{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);}
.m26_c00162{transform:matrix(0.241292,-0.005067,0.005249,0.249945,0,0);-ms-transform:matrix(0.241292,-0.005067,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241292,-0.005067,0.005249,0.249945,0,0);}
.m5b_c00162{transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.242152,-0.005085,0.005249,0.249945,0,0);-ms-transform:matrix(0.242152,-0.005085,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242152,-0.005085,0.005249,0.249945,0,0);}
.med_c00162{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);}
.m3c_c00162{transform:matrix(0.242900,-0.002186,0.002250,0.249990,0,0);-ms-transform:matrix(0.242900,-0.002186,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242900,-0.002186,0.002250,0.249990,0,0);}
.mda_c00162{transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);}
.mc3_c00162{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.me1_c00162{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.md9_c00162{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);}
.mae_c00162{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.252645,-0.002274,0.002250,0.249990,0,0);-ms-transform:matrix(0.252645,-0.002274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252645,-0.002274,0.002250,0.249990,0,0);}
.m81_c00162{transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{transform:matrix(0.254592,-0.004073,0.003999,0.249968,0,0);-ms-transform:matrix(0.254592,-0.004073,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254592,-0.004073,0.003999,0.249968,0,0);}
.mb7_c00162{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);}
.m50_c00162{transform:matrix(0.264626,-0.004234,0.003999,0.249968,0,0);-ms-transform:matrix(0.264626,-0.004234,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264626,-0.004234,0.003999,0.249968,0,0);}
.me5_c00162{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);}
.ma8_c00162{transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.mc7_c00162{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mba_c00162{transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.289503,-0.004632,0.003999,0.249968,0,0);-ms-transform:matrix(0.289503,-0.004632,0.003999,0.249968,0,0);-webkit-transform:matrix(0.289503,-0.004632,0.003999,0.249968,0,0);}
.m54_c00162{transform:matrix(0.311905,-0.004990,0.003999,0.249968,0,0);-ms-transform:matrix(0.311905,-0.004990,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311905,-0.004990,0.003999,0.249968,0,0);}
.ma6_c00162{transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.316131,-0.003477,0.002750,0.249985,0,0);-ms-transform:matrix(0.316131,-0.003477,0.002750,0.249985,0,0);-webkit-transform:matrix(0.316131,-0.003477,0.002750,0.249985,0,0);}
.me8_c00162{transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321125,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.324878,-0.005198,0.003999,0.249968,0,0);-ms-transform:matrix(0.324878,-0.005198,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324878,-0.005198,0.003999,0.249968,0,0);}
.mea_c00162{transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325335,0.000000,0.000000,0.250000,0,0);}
.m3b_c00162{transform:matrix(0.329347,-0.006916,0.005249,0.249945,0,0);-ms-transform:matrix(0.329347,-0.006916,0.005249,0.249945,0,0);-webkit-transform:matrix(0.329347,-0.006916,0.005249,0.249945,0,0);}
.md3_c00162{transform:matrix(0.337335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337335,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.339895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339895,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(0.343635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343635,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.348270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00162{transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350260,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{transform:matrix(0.354667,-0.007448,0.005249,0.249945,0,0);-ms-transform:matrix(0.354667,-0.007448,0.005249,0.249945,0,0);-webkit-transform:matrix(0.354667,-0.007448,0.005249,0.249945,0,0);}
.mb1_c00162{transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);}
.mcf_c00162{transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);}
.mbf_c00162{transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.373277,-0.005972,0.003999,0.249968,0,0);-ms-transform:matrix(0.373277,-0.005972,0.003999,0.249968,0,0);-webkit-transform:matrix(0.373277,-0.005972,0.003999,0.249968,0,0);}
.m47_c00162{transform:matrix(0.376242,-0.006020,0.003999,0.249968,0,0);-ms-transform:matrix(0.376242,-0.006020,0.003999,0.249968,0,0);-webkit-transform:matrix(0.376242,-0.006020,0.003999,0.249968,0,0);}
.me3_c00162{transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);}
.mec_c00162{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.460335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460335,0.000000,0.000000,0.250000,0,0);}
.m66_c00162{transform:matrix(0.502455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502455,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.556697,-0.011691,0.005249,0.249945,0,0);-ms-transform:matrix(0.556697,-0.011691,0.005249,0.249945,0,0);-webkit-transform:matrix(0.556697,-0.011691,0.005249,0.249945,0,0);}
.m45_c00162{transform:matrix(0.573152,-0.009170,0.003999,0.249968,0,0);-ms-transform:matrix(0.573152,-0.009170,0.003999,0.249968,0,0);-webkit-transform:matrix(0.573152,-0.009170,0.003999,0.249968,0,0);}
.me2_c00162{transform:matrix(0.585695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585695,0.000000,0.000000,0.250000,0,0);}
.me9_c00162{transform:matrix(0.630160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630160,0.000000,0.000000,0.250000,0,0);}
.meb_c00162{transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.682780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682780,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.783423,-0.008618,0.002750,0.249985,0,0);-ms-transform:matrix(0.783423,-0.008618,0.002750,0.249985,0,0);-webkit-transform:matrix(0.783423,-0.008618,0.002750,0.249985,0,0);}
.m94_c00162{transform:matrix(0.808660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808660,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;}
.fse_c00162{font-size:48.300000px;}
.fs11_c00162{font-size:49.350000px;}
.fs10_c00162{font-size:50.400000px;}
.fsf_c00162{font-size:53.550000px;}
.fs12_c00162{font-size:54.600000px;}
.fs13_c00162{font-size:55.650000px;}
.fs6_c00162{font-size:64.052594px;}
.fs8_c00162{font-size:64.058198px;}
.fsc_c00162{font-size:66.150000px;}
.fs4_c00162{font-size:66.164584px;}
.fs3_c00162{font-size:69.315279px;}
.fsa_c00162{font-size:70.350000px;}
.fsb_c00162{font-size:71.400000px;}
.fs2_c00162{font-size:71.415742px;}
.fsd_c00162{font-size:72.450000px;}
.fs1_c00162{font-size:73.516205px;}
.fs5_c00162{font-size:74.566436px;}
.fs7_c00162{font-size:76.659811px;}
.fs9_c00162{font-size:89.261423px;}
.fs0_c00162{font-size:114.456924px;}
.y0_c00162{bottom:0.000000px;}
.y69_c00162{bottom:161.709000px;}
.y68_c00162{bottom:179.791500px;}
.y67_c00162{bottom:197.863500px;}
.y66_c00162{bottom:215.599500px;}
.y65_c00162{bottom:233.791500px;}
.y64_c00162{bottom:251.592000px;}
.y63_c00162{bottom:269.695500px;}
.y62_c00162{bottom:306.714000px;}
.y61_c00162{bottom:324.694500px;}
.y60_c00162{bottom:342.252000px;}
.y5f_c00162{bottom:359.904000px;}
.y5e_c00162{bottom:377.425500px;}
.y5d_c00162{bottom:408.880500px;}
.y5c_c00162{bottom:432.673500px;}
.y5b_c00162{bottom:455.074500px;}
.y5a_c00162{bottom:477.726000px;}
.y58_c00162{bottom:496.784124px;}
.y57_c00162{bottom:496.784376px;}
.y56_c00162{bottom:496.784412px;}
.y55_c00162{bottom:496.784532px;}
.y59_c00162{bottom:496.784772px;}
.y54_c00162{bottom:518.791968px;}
.y53_c00162{bottom:518.792340px;}
.y52_c00162{bottom:518.792496px;}
.y4c_c00162{bottom:540.003096px;}
.y4d_c00162{bottom:541.487160px;}
.y4e_c00162{bottom:542.367876px;}
.y4f_c00162{bottom:542.826768px;}
.y50_c00162{bottom:543.571812px;}
.y51_c00162{bottom:543.911064px;}
.y46_c00162{bottom:562.143000px;}
.y47_c00162{bottom:564.160944px;}
.y48_c00162{bottom:564.727488px;}
.y49_c00162{bottom:567.328344px;}
.y4a_c00162{bottom:568.101936px;}
.y4b_c00162{bottom:568.855968px;}
.y3d_c00162{bottom:693.361500px;}
.y3e_c00162{bottom:693.684879px;}
.y3f_c00162{bottom:694.149360px;}
.y40_c00162{bottom:694.425759px;}
.y41_c00162{bottom:694.790529px;}
.y42_c00162{bottom:695.257157px;}
.y43_c00162{bottom:695.796589px;}
.y44_c00162{bottom:696.073596px;}
.y45_c00162{bottom:696.384622px;}
.y33_c00162{bottom:714.393180px;}
.y34_c00162{bottom:715.009335px;}
.y35_c00162{bottom:715.979229px;}
.y36_c00162{bottom:716.416329px;}
.y37_c00162{bottom:716.757589px;}
.y38_c00162{bottom:717.340278px;}
.y39_c00162{bottom:717.684417px;}
.y3a_c00162{bottom:718.044732px;}
.y3b_c00162{bottom:718.864206px;}
.y3c_c00162{bottom:719.589856px;}
.y2a_c00162{bottom:737.078162px;}
.y2b_c00162{bottom:737.408799px;}
.y2c_c00162{bottom:738.142707px;}
.y2d_c00162{bottom:738.855811px;}
.y2e_c00162{bottom:739.322142px;}
.y2f_c00162{bottom:739.918637px;}
.y30_c00162{bottom:740.125698px;}
.y31_c00162{bottom:740.512240px;}
.y32_c00162{bottom:741.337072px;}
.y1f_c00162{bottom:758.690388px;}
.y20_c00162{bottom:759.134741px;}
.y21_c00162{bottom:759.501663px;}
.y22_c00162{bottom:760.641795px;}
.y23_c00162{bottom:761.080875px;}
.y24_c00162{bottom:761.708131px;}
.y25_c00162{bottom:762.364345px;}
.y26_c00162{bottom:762.606941px;}
.y27_c00162{bottom:763.218883px;}
.y28_c00162{bottom:763.705964px;}
.y29_c00162{bottom:764.712514px;}
.y17_c00162{bottom:782.454242px;}
.y18_c00162{bottom:783.050940px;}
.y19_c00162{bottom:783.613979px;}
.y1a_c00162{bottom:784.018484px;}
.y1b_c00162{bottom:784.820023px;}
.y1c_c00162{bottom:785.161718px;}
.y1d_c00162{bottom:785.505742px;}
.y1e_c00162{bottom:786.557034px;}
.y10_c00162{bottom:804.870278px;}
.y11_c00162{bottom:805.650436px;}
.y12_c00162{bottom:806.569618px;}
.y13_c00162{bottom:808.055115px;}
.y14_c00162{bottom:808.452666px;}
.y15_c00162{bottom:809.618772px;}
.y16_c00162{bottom:810.170679px;}
.y7_c00162{bottom:827.286000px;}
.y8_c00162{bottom:828.210588px;}
.y9_c00162{bottom:829.089469px;}
.ya_c00162{bottom:829.639806px;}
.yb_c00162{bottom:830.943622px;}
.yc_c00162{bottom:831.376118px;}
.yd_c00162{bottom:832.152750px;}
.ye_c00162{bottom:832.803823px;}
.yf_c00162{bottom:833.360082px;}
.y1_c00162{bottom:872.644500px;}
.y2_c00162{bottom:873.227462px;}
.y3_c00162{bottom:873.282753px;}
.y4_c00162{bottom:874.056174px;}
.y5_c00162{bottom:874.997681px;}
.y6_c00162{bottom:875.760954px;}
.h10_c00162{height:48.300000px;}
.h13_c00162{height:49.350000px;}
.h12_c00162{height:50.400000px;}
.h11_c00162{height:53.550000px;}
.h14_c00162{height:54.600000px;}
.h15_c00162{height:55.650000px;}
.h8_c00162{height:64.052594px;}
.ha_c00162{height:64.058198px;}
.he_c00162{height:66.150000px;}
.h6_c00162{height:66.164584px;}
.h5_c00162{height:69.315279px;}
.hc_c00162{height:70.350000px;}
.hd_c00162{height:71.400000px;}
.h4_c00162{height:71.415742px;}
.hf_c00162{height:72.450000px;}
.h3_c00162{height:73.516205px;}
.h7_c00162{height:74.566436px;}
.h9_c00162{height:76.659811px;}
.hb_c00162{height:89.261423px;}
.h2_c00162{height:114.456924px;}
.h1_c00162{height:1005.000000px;}
.h0_c00162{height:1005.150000px;}
.w0_c00162{width:705.450000px;}
.w1_c00162{width:705.750000px;}
.x0_c00162{left:0.000000px;}
.x7b_c00162{left:29.430000px;}
.x61_c00162{left:31.590000px;}
.x6f_c00162{left:34.830000px;}
.x7c_c00162{left:43.200000px;}
.x62_c00162{left:57.510000px;}
.x97_c00162{left:62.910000px;}
.x9c_c00162{left:65.340000px;}
.x63_c00162{left:79.920000px;}
.x87_c00162{left:81.270000px;}
.x98_c00162{left:82.350000px;}
.x7d_c00162{left:97.470000px;}
.x88_c00162{left:101.250000px;}
.x9d_c00162{left:102.330000px;}
.x4f_c00162{left:103.680000px;}
.x7_c00162{left:107.467500px;}
.x33_c00162{left:109.734000px;}
.x3a_c00162{left:111.156000px;}
.x4b_c00162{left:113.670000px;}
.x64_c00162{left:115.290000px;}
.x7e_c00162{left:119.610000px;}
.x70_c00162{left:122.580000px;}
.x65_c00162{left:131.220000px;}
.x25_c00162{left:133.284469px;}
.x1b_c00162{left:136.041141px;}
.x71_c00162{left:137.970000px;}
.x34_c00162{left:145.665000px;}
.xf_c00162{left:148.246122px;}
.x14_c00162{left:150.054800px;}
.x8_c00162{left:151.495500px;}
.x92_c00162{left:154.980000px;}
.x89_c00162{left:156.060000px;}
.x1c_c00162{left:159.016067px;}
.x9e_c00162{left:160.650000px;}
.x50_c00162{left:161.730000px;}
.x43_c00162{left:164.706636px;}
.x1_c00162{left:167.239500px;}
.x9f_c00162{left:177.660000px;}
.x57_c00162{left:180.630000px;}
.x66_c00162{left:181.710000px;}
.x72_c00162{left:188.190000px;}
.x15_c00162{left:190.229190px;}
.x9_c00162{left:193.347000px;}
.x5a_c00162{left:194.670000px;}
.x10_c00162{left:196.590138px;}
.x7f_c00162{left:200.340000px;}
.x8a_c00162{left:202.500000px;}
.x67_c00162{left:203.580000px;}
.x5f_c00162{left:208.440000px;}
.x99_c00162{left:210.060000px;}
.x5c_c00162{left:211.950000px;}
.x2c_c00162{left:213.599695px;}
.x93_c00162{left:214.650000px;}
.x44_c00162{left:216.553908px;}
.x16_c00162{left:219.138442px;}
.x2_c00162{left:220.236000px;}
.x58_c00162{left:221.940000px;}
.x60_c00162{left:223.830000px;}
.x3_c00162{left:225.262500px;}
.x35_c00162{left:227.985000px;}
.x1d_c00162{left:230.315564px;}
.x8b_c00162{left:232.470000px;}
.x4d_c00162{left:233.550000px;}
.x3b_c00162{left:237.277500px;}
.x2d_c00162{left:242.703350px;}
.x26_c00162{left:244.565649px;}
.x45_c00162{left:246.257016px;}
.x4c_c00162{left:248.400000px;}
.x51_c00162{left:249.480000px;}
.x94_c00162{left:251.640000px;}
.x5b_c00162{left:253.530000px;}
.x52_c00162{left:255.150000px;}
.x1e_c00162{left:257.798462px;}
.x68_c00162{left:261.090000px;}
.x3f_c00162{left:263.534820px;}
.x2e_c00162{left:265.456716px;}
.x9a_c00162{left:267.300000px;}
.x36_c00162{left:268.515000px;}
.x5d_c00162{left:270.540000px;}
.x3c_c00162{left:272.686500px;}
.x11_c00162{left:274.759914px;}
.x17_c00162{left:276.386853px;}
.x80_c00162{left:278.910000px;}
.x27_c00162{left:280.492197px;}
.xa_c00162{left:281.640000px;}
.x40_c00162{left:286.495356px;}
.x59_c00162{left:287.550000px;}
.x95_c00162{left:288.630000px;}
.x8c_c00162{left:289.980000px;}
.xa0_c00162{left:291.060000px;}
.x5e_c00162{left:292.410000px;}
.x73_c00162{left:294.300000px;}
.x4_c00162{left:295.573500px;}
.x1f_c00162{left:297.029088px;}
.x18_c00162{left:300.804444px;}
.xb_c00162{left:302.235000px;}
.x2f_c00162{left:304.280098px;}
.x74_c00162{left:313.740000px;}
.x69_c00162{left:314.820000px;}
.x9b_c00162{left:317.250000px;}
.x37_c00162{left:320.362500px;}
.x41_c00162{left:323.776980px;}
.x19_c00162{left:325.333035px;}
.x28_c00162{left:326.404414px;}
.x75_c00162{left:328.320000px;}
.x96_c00162{left:329.400000px;}
.x20_c00162{left:338.067404px;}
.xc_c00162{left:339.217500px;}
.x42_c00162{left:340.760400px;}
.x29_c00162{left:342.338592px;}
.x30_c00162{left:351.260020px;}
.x21_c00162{left:353.264010px;}
.x46_c00162{left:355.891104px;}
.x12_c00162{left:357.080379px;}
.x53_c00162{left:359.100000px;}
.x81_c00162{left:362.070000px;}
.xa1_c00162{left:366.390000px;}
.xd_c00162{left:370.221000px;}
.x2a_c00162{left:372.036069px;}
.x76_c00162{left:376.380000px;}
.x5_c00162{left:381.165000px;}
.x82_c00162{left:383.940000px;}
.x6a_c00162{left:385.020000px;}
.x13_c00162{left:386.148608px;}
.x22_c00162{left:391.551042px;}
.x4e_c00162{left:392.580000px;}
.x54_c00162{left:395.550000px;}
.xe_c00162{left:396.709500px;}
.x1a_c00162{left:400.405560px;}
.x31_c00162{left:405.860888px;}
.x47_c00162{left:409.897428px;}
.x38_c00162{left:411.078000px;}
.x8d_c00162{left:416.070000px;}
.x6b_c00162{left:417.960000px;}
.x23_c00162{left:422.034255px;}
.x77_c00162{left:431.730000px;}
.x55_c00162{left:432.810000px;}
.x2b_c00162{left:435.538747px;}
.x56_c00162{left:439.560000px;}
.x6c_c00162{left:440.910000px;}
.x83_c00162{left:441.990000px;}
.x39_c00162{left:445.636500px;}
.x6_c00162{left:450.553500px;}
.x48_c00162{left:452.562348px;}
.x32_c00162{left:454.207467px;}
.x84_c00162{left:460.620000px;}
.x8e_c00162{left:465.210000px;}
.x78_c00162{left:468.180000px;}
.x3d_c00162{left:483.589500px;}
.x24_c00162{left:484.971870px;}
.x49_c00162{left:486.586560px;}
.x8f_c00162{left:491.130000px;}
.x6d_c00162{left:493.020000px;}
.x85_c00162{left:496.260000px;}
.x79_c00162{left:510.030000px;}
.x4a_c00162{left:526.012140px;}
.xa2_c00162{left:528.120000px;}
.x3e_c00162{left:530.716500px;}
.x90_c00162{left:532.440000px;}
.x91_c00162{left:537.300000px;}
.x6e_c00162{left:549.450000px;}
.x7a_c00162{left:550.530000px;}
.x86_c00162{left:551.610000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.fse_c00162{font-size:42.933333pt;}
.fs11_c00162{font-size:43.866667pt;}
.fs10_c00162{font-size:44.800000pt;}
.fsf_c00162{font-size:47.600000pt;}
.fs12_c00162{font-size:48.533333pt;}
.fs13_c00162{font-size:49.466667pt;}
.fs6_c00162{font-size:56.935639pt;}
.fs8_c00162{font-size:56.940620pt;}
.fsc_c00162{font-size:58.800000pt;}
.fs4_c00162{font-size:58.812964pt;}
.fs3_c00162{font-size:61.613581pt;}
.fsa_c00162{font-size:62.533333pt;}
.fsb_c00162{font-size:63.466667pt;}
.fs2_c00162{font-size:63.480660pt;}
.fsd_c00162{font-size:64.400000pt;}
.fs1_c00162{font-size:65.347738pt;}
.fs5_c00162{font-size:66.281277pt;}
.fs7_c00162{font-size:68.142054pt;}
.fs9_c00162{font-size:79.343487pt;}
.fs0_c00162{font-size:101.739488pt;}
.y0_c00162{bottom:0.000000pt;}
.y69_c00162{bottom:143.741333pt;}
.y68_c00162{bottom:159.814667pt;}
.y67_c00162{bottom:175.878667pt;}
.y66_c00162{bottom:191.644000pt;}
.y65_c00162{bottom:207.814667pt;}
.y64_c00162{bottom:223.637333pt;}
.y63_c00162{bottom:239.729333pt;}
.y62_c00162{bottom:272.634667pt;}
.y61_c00162{bottom:288.617333pt;}
.y60_c00162{bottom:304.224000pt;}
.y5f_c00162{bottom:319.914667pt;}
.y5e_c00162{bottom:335.489333pt;}
.y5d_c00162{bottom:363.449333pt;}
.y5c_c00162{bottom:384.598667pt;}
.y5b_c00162{bottom:404.510667pt;}
.y5a_c00162{bottom:424.645333pt;}
.y58_c00162{bottom:441.585888pt;}
.y57_c00162{bottom:441.586112pt;}
.y56_c00162{bottom:441.586144pt;}
.y55_c00162{bottom:441.586251pt;}
.y59_c00162{bottom:441.586464pt;}
.y54_c00162{bottom:461.148416pt;}
.y53_c00162{bottom:461.148747pt;}
.y52_c00162{bottom:461.148885pt;}
.y4c_c00162{bottom:480.002752pt;}
.y4d_c00162{bottom:481.321920pt;}
.y4e_c00162{bottom:482.104779pt;}
.y4f_c00162{bottom:482.512683pt;}
.y50_c00162{bottom:483.174944pt;}
.y51_c00162{bottom:483.476501pt;}
.y46_c00162{bottom:499.682667pt;}
.y47_c00162{bottom:501.476395pt;}
.y48_c00162{bottom:501.979989pt;}
.y49_c00162{bottom:504.291861pt;}
.y4a_c00162{bottom:504.979499pt;}
.y4b_c00162{bottom:505.649749pt;}
.y3d_c00162{bottom:616.321333pt;}
.y3e_c00162{bottom:616.608781pt;}
.y3f_c00162{bottom:617.021653pt;}
.y40_c00162{bottom:617.267341pt;}
.y41_c00162{bottom:617.591581pt;}
.y42_c00162{bottom:618.006361pt;}
.y43_c00162{bottom:618.485857pt;}
.y44_c00162{bottom:618.732085pt;}
.y45_c00162{bottom:619.008553pt;}
.y33_c00162{bottom:635.016160pt;}
.y34_c00162{bottom:635.563853pt;}
.y35_c00162{bottom:636.425981pt;}
.y36_c00162{bottom:636.814515pt;}
.y37_c00162{bottom:637.117857pt;}
.y38_c00162{bottom:637.635803pt;}
.y39_c00162{bottom:637.941704pt;}
.y3a_c00162{bottom:638.261984pt;}
.y3b_c00162{bottom:638.990405pt;}
.y3c_c00162{bottom:639.635428pt;}
.y2a_c00162{bottom:655.180588pt;}
.y2b_c00162{bottom:655.474488pt;}
.y2c_c00162{bottom:656.126851pt;}
.y2d_c00162{bottom:656.760721pt;}
.y2e_c00162{bottom:657.175237pt;}
.y2f_c00162{bottom:657.705455pt;}
.y30_c00162{bottom:657.889509pt;}
.y31_c00162{bottom:658.233103pt;}
.y32_c00162{bottom:658.966287pt;}
.y1f_c00162{bottom:674.391456pt;}
.y20_c00162{bottom:674.786436pt;}
.y21_c00162{bottom:675.112589pt;}
.y22_c00162{bottom:676.126040pt;}
.y23_c00162{bottom:676.516333pt;}
.y24_c00162{bottom:677.073895pt;}
.y25_c00162{bottom:677.657196pt;}
.y26_c00162{bottom:677.872836pt;}
.y27_c00162{bottom:678.416785pt;}
.y28_c00162{bottom:678.849745pt;}
.y29_c00162{bottom:679.744457pt;}
.y17_c00162{bottom:695.514881pt;}
.y18_c00162{bottom:696.045280pt;}
.y19_c00162{bottom:696.545759pt;}
.y1a_c00162{bottom:696.905319pt;}
.y1b_c00162{bottom:697.617799pt;}
.y1c_c00162{bottom:697.921527pt;}
.y1d_c00162{bottom:698.227327pt;}
.y1e_c00162{bottom:699.161808pt;}
.y10_c00162{bottom:715.440247pt;}
.y11_c00162{bottom:716.133721pt;}
.y12_c00162{bottom:716.950772pt;}
.y13_c00162{bottom:718.271213pt;}
.y14_c00162{bottom:718.624592pt;}
.y15_c00162{bottom:719.661131pt;}
.y16_c00162{bottom:720.151715pt;}
.y7_c00162{bottom:735.365333pt;}
.y8_c00162{bottom:736.187189pt;}
.y9_c00162{bottom:736.968417pt;}
.ya_c00162{bottom:737.457605pt;}
.yb_c00162{bottom:738.616553pt;}
.yc_c00162{bottom:739.000993pt;}
.yd_c00162{bottom:739.691333pt;}
.ye_c00162{bottom:740.270065pt;}
.yf_c00162{bottom:740.764517pt;}
.y1_c00162{bottom:775.684000pt;}
.y2_c00162{bottom:776.202188pt;}
.y3_c00162{bottom:776.251336pt;}
.y4_c00162{bottom:776.938821pt;}
.y5_c00162{bottom:777.775716pt;}
.y6_c00162{bottom:778.454181pt;}
.h10_c00162{height:42.933333pt;}
.h13_c00162{height:43.866667pt;}
.h12_c00162{height:44.800000pt;}
.h11_c00162{height:47.600000pt;}
.h14_c00162{height:48.533333pt;}
.h15_c00162{height:49.466667pt;}
.h8_c00162{height:56.935639pt;}
.ha_c00162{height:56.940620pt;}
.he_c00162{height:58.800000pt;}
.h6_c00162{height:58.812964pt;}
.h5_c00162{height:61.613581pt;}
.hc_c00162{height:62.533333pt;}
.hd_c00162{height:63.466667pt;}
.h4_c00162{height:63.480660pt;}
.hf_c00162{height:64.400000pt;}
.h3_c00162{height:65.347738pt;}
.h7_c00162{height:66.281277pt;}
.h9_c00162{height:68.142054pt;}
.hb_c00162{height:79.343487pt;}
.h2_c00162{height:101.739488pt;}
.h1_c00162{height:893.333333pt;}
.h0_c00162{height:893.466667pt;}
.w0_c00162{width:627.066667pt;}
.w1_c00162{width:627.333333pt;}
.x0_c00162{left:0.000000pt;}
.x7b_c00162{left:26.160000pt;}
.x61_c00162{left:28.080000pt;}
.x6f_c00162{left:30.960000pt;}
.x7c_c00162{left:38.400000pt;}
.x62_c00162{left:51.120000pt;}
.x97_c00162{left:55.920000pt;}
.x9c_c00162{left:58.080000pt;}
.x63_c00162{left:71.040000pt;}
.x87_c00162{left:72.240000pt;}
.x98_c00162{left:73.200000pt;}
.x7d_c00162{left:86.640000pt;}
.x88_c00162{left:90.000000pt;}
.x9d_c00162{left:90.960000pt;}
.x4f_c00162{left:92.160000pt;}
.x7_c00162{left:95.526667pt;}
.x33_c00162{left:97.541333pt;}
.x3a_c00162{left:98.805333pt;}
.x4b_c00162{left:101.040000pt;}
.x64_c00162{left:102.480000pt;}
.x7e_c00162{left:106.320000pt;}
.x70_c00162{left:108.960000pt;}
.x65_c00162{left:116.640000pt;}
.x25_c00162{left:118.475084pt;}
.x1b_c00162{left:120.925459pt;}
.x71_c00162{left:122.640000pt;}
.x34_c00162{left:129.480000pt;}
.xf_c00162{left:131.774331pt;}
.x14_c00162{left:133.382044pt;}
.x8_c00162{left:134.662667pt;}
.x92_c00162{left:137.760000pt;}
.x89_c00162{left:138.720000pt;}
.x1c_c00162{left:141.347615pt;}
.x9e_c00162{left:142.800000pt;}
.x50_c00162{left:143.760000pt;}
.x43_c00162{left:146.405899pt;}
.x1_c00162{left:148.657333pt;}
.x9f_c00162{left:157.920000pt;}
.x57_c00162{left:160.560000pt;}
.x66_c00162{left:161.520000pt;}
.x72_c00162{left:167.280000pt;}
.x15_c00162{left:169.092613pt;}
.x9_c00162{left:171.864000pt;}
.x5a_c00162{left:173.040000pt;}
.x10_c00162{left:174.746789pt;}
.x7f_c00162{left:178.080000pt;}
.x8a_c00162{left:180.000000pt;}
.x67_c00162{left:180.960000pt;}
.x5f_c00162{left:185.280000pt;}
.x99_c00162{left:186.720000pt;}
.x5c_c00162{left:188.400000pt;}
.x2c_c00162{left:189.866396pt;}
.x93_c00162{left:190.800000pt;}
.x44_c00162{left:192.492363pt;}
.x16_c00162{left:194.789727pt;}
.x2_c00162{left:195.765333pt;}
.x58_c00162{left:197.280000pt;}
.x60_c00162{left:198.960000pt;}
.x3_c00162{left:200.233333pt;}
.x35_c00162{left:202.653333pt;}
.x1d_c00162{left:204.724945pt;}
.x8b_c00162{left:206.640000pt;}
.x4d_c00162{left:207.600000pt;}
.x3b_c00162{left:210.913333pt;}
.x2d_c00162{left:215.736311pt;}
.x26_c00162{left:217.391688pt;}
.x45_c00162{left:218.895125pt;}
.x4c_c00162{left:220.800000pt;}
.x51_c00162{left:221.760000pt;}
.x94_c00162{left:223.680000pt;}
.x5b_c00162{left:225.360000pt;}
.x52_c00162{left:226.800000pt;}
.x1e_c00162{left:229.154188pt;}
.x68_c00162{left:232.080000pt;}
.x3f_c00162{left:234.253173pt;}
.x2e_c00162{left:235.961525pt;}
.x9a_c00162{left:237.600000pt;}
.x36_c00162{left:238.680000pt;}
.x5d_c00162{left:240.480000pt;}
.x3c_c00162{left:242.388000pt;}
.x11_c00162{left:244.231035pt;}
.x17_c00162{left:245.677203pt;}
.x80_c00162{left:247.920000pt;}
.x27_c00162{left:249.326397pt;}
.xa_c00162{left:250.346667pt;}
.x40_c00162{left:254.662539pt;}
.x59_c00162{left:255.600000pt;}
.x95_c00162{left:256.560000pt;}
.x8c_c00162{left:257.760000pt;}
.xa0_c00162{left:258.720000pt;}
.x5e_c00162{left:259.920000pt;}
.x73_c00162{left:261.600000pt;}
.x4_c00162{left:262.732000pt;}
.x1f_c00162{left:264.025856pt;}
.x18_c00162{left:267.381728pt;}
.xb_c00162{left:268.653333pt;}
.x2f_c00162{left:270.471199pt;}
.x74_c00162{left:278.880000pt;}
.x69_c00162{left:279.840000pt;}
.x9b_c00162{left:282.000000pt;}
.x37_c00162{left:284.766667pt;}
.x41_c00162{left:287.801760pt;}
.x19_c00162{left:289.184920pt;}
.x28_c00162{left:290.137257pt;}
.x75_c00162{left:291.840000pt;}
.x96_c00162{left:292.800000pt;}
.x20_c00162{left:300.504359pt;}
.xc_c00162{left:301.526667pt;}
.x42_c00162{left:302.898133pt;}
.x29_c00162{left:304.300971pt;}
.x30_c00162{left:312.231129pt;}
.x21_c00162{left:314.012453pt;}
.x46_c00162{left:316.347648pt;}
.x12_c00162{left:317.404781pt;}
.x53_c00162{left:319.200000pt;}
.x81_c00162{left:321.840000pt;}
.xa1_c00162{left:325.680000pt;}
.xd_c00162{left:329.085333pt;}
.x2a_c00162{left:330.698728pt;}
.x76_c00162{left:334.560000pt;}
.x5_c00162{left:338.813333pt;}
.x82_c00162{left:341.280000pt;}
.x6a_c00162{left:342.240000pt;}
.x13_c00162{left:343.243207pt;}
.x22_c00162{left:348.045371pt;}
.x4e_c00162{left:348.960000pt;}
.x54_c00162{left:351.600000pt;}
.xe_c00162{left:352.630667pt;}
.x1a_c00162{left:355.916053pt;}
.x31_c00162{left:360.765233pt;}
.x47_c00162{left:364.353269pt;}
.x38_c00162{left:365.402667pt;}
.x8d_c00162{left:369.840000pt;}
.x6b_c00162{left:371.520000pt;}
.x23_c00162{left:375.141560pt;}
.x77_c00162{left:383.760000pt;}
.x55_c00162{left:384.720000pt;}
.x2b_c00162{left:387.145553pt;}
.x56_c00162{left:390.720000pt;}
.x6c_c00162{left:391.920000pt;}
.x83_c00162{left:392.880000pt;}
.x39_c00162{left:396.121333pt;}
.x6_c00162{left:400.492000pt;}
.x48_c00162{left:402.277643pt;}
.x32_c00162{left:403.739971pt;}
.x84_c00162{left:409.440000pt;}
.x8e_c00162{left:413.520000pt;}
.x78_c00162{left:416.160000pt;}
.x3d_c00162{left:429.857333pt;}
.x24_c00162{left:431.086107pt;}
.x49_c00162{left:432.521387pt;}
.x8f_c00162{left:436.560000pt;}
.x6d_c00162{left:438.240000pt;}
.x85_c00162{left:441.120000pt;}
.x79_c00162{left:453.360000pt;}
.x4a_c00162{left:467.566347pt;}
.xa2_c00162{left:469.440000pt;}
.x3e_c00162{left:471.748000pt;}
.x90_c00162{left:473.280000pt;}
.x91_c00162{left:477.600000pt;}
.x6e_c00162{left:488.400000pt;}
.x7a_c00162{left:489.360000pt;}
.x86_c00162{left:490.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_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_2f6c0d3825a5d54c0b922384.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;}
.m29_c00163{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);}
.m1d_c00163{transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{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);}
.mc0_c00163{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);}
.m30_c00163{transform:matrix(0.037045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037045,0.000000,0.000000,0.250000,0,0);}
.md0_c00163{transform:matrix(0.067820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067820,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.085805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085805,0.000000,0.000000,0.250000,0,0);}
.mee_c00163{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);}
.m9c_c00163{transform:matrix(0.107445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107445,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{transform:matrix(0.109740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109740,0.000000,0.000000,0.250000,0,0);}
.mc3_c00163{transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.128995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128995,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.133985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133985,0.000000,0.000000,0.250000,0,0);}
.mc8_c00163{transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);}
.mca_c00163{transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.141470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141470,0.000000,0.000000,0.250000,0,0);}
.m81_c00163{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);}
.mdd_c00163{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);}
.m47_c00163{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.mc9_c00163{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);}
.mb_c00163{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);}
.m42_c00163{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);}
.me5_c00163{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);}
.mb5_c00163{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);}
.m93_c00163{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);}
.m4f_c00163{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);}
.me1_c00163{transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{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);}
.m3d_c00163{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);}
.mab_c00163{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_c00163{transform:matrix(0.160740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160740,0.000000,0.000000,0.250000,0,0);}
.mac_c00163{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);}
.m3f_c00163{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);}
.mdc_c00163{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);}
.m91_c00163{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);}
.md3_c00163{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);}
.mc_c00163{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{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);}
.m40_c00163{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);}
.m90_c00163{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);}
.m67_c00163{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);}
.m43_c00163{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);}
.m6_c00163{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);}
.m8f_c00163{transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);}
.m97_c00163{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);}
.ma_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);}
.mad_c00163{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);}
.m73_c00163{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);}
.m8e_c00163{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);}
.m87_c00163{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);}
.m2b_c00163{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);}
.m8d_c00163{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);}
.m8c_c00163{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);}
.m98_c00163{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);}
.m1_c00163{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);}
.m7e_c00163{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);}
.m92_c00163{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);}
.md5_c00163{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);}
.m99_c00163{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);}
.mde_c00163{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);}
.md_c00163{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);}
.me4_c00163{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);}
.m65_c00163{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);}
.m70_c00163{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);}
.m9e_c00163{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);}
.m74_c00163{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);}
.m95_c00163{transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188895,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{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);}
.m63_c00163{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);}
.maf_c00163{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);}
.m9d_c00163{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);}
.m8b_c00163{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);}
.m75_c00163{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);}
.m7f_c00163{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);}
.m46_c00163{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);}
.m48_c00163{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);}
.md6_c00163{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);}
.m64_c00163{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);}
.me_c00163{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);}
.m82_c00163{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);}
.m39_c00163{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);}
.m4d_c00163{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);}
.mcc_c00163{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);}
.mc7_c00163{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);}
.m96_c00163{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);}
.mae_c00163{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);}
.m6d_c00163{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);}
.m12_c00163{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);}
.m68_c00163{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);}
.m36_c00163{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);}
.m7_c00163{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);}
.m2f_c00163{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);}
.m5c_c00163{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);}
.me7_c00163{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);}
.m59_c00163{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);}
.m84_c00163{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);}
.m41_c00163{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);}
.m4a_c00163{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);}
.m56_c00163{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);}
.m1a_c00163{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);}
.m2d_c00163{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);}
.m89_c00163{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);}
.m44_c00163{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);}
.mb2_c00163{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);}
.m80_c00163{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);}
.m2_c00163{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);}
.m0_c00163{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);}
.m78_c00163{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);}
.m3_c00163{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);}
.m54_c00163{transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{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);}
.md4_c00163{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);}
.m7a_c00163{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);}
.mb1_c00163{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);}
.m37_c00163{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);}
.m3a_c00163{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);}
.m5f_c00163{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);}
.m77_c00163{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);}
.m52_c00163{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);}
.m1c_c00163{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);}
.m4_c00163{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);}
.m1b_c00163{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);}
.m34_c00163{transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);}
.m94_c00163{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.mcf_c00163{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);}
.m3c_c00163{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);}
.m66_c00163{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);}
.m71_c00163{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);}
.md7_c00163{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);}
.m76_c00163{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);}
.m50_c00163{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);}
.ma7_c00163{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);}
.m23_c00163{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);}
.m7d_c00163{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);}
.mcb_c00163{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);}
.m19_c00163{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);}
.m10_c00163{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);}
.ma3_c00163{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);}
.m18_c00163{transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{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);}
.m9a_c00163{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);}
.m55_c00163{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);}
.m7b_c00163{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);}
.m5d_c00163{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);}
.m11_c00163{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.mc5_c00163{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);}
.mcd_c00163{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);}
.m88_c00163{transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{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);}
.mb7_c00163{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.mda_c00163{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);}
.mb4_c00163{transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);}
.mb0_c00163{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);}
.m6e_c00163{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);}
.m49_c00163{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.mb6_c00163{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{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);}
.m45_c00163{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);}
.m17_c00163{transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257385,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.mbb_c00163{transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.258980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258980,0.000000,0.000000,0.250000,0,0);}
.m58_c00163{transform:matrix(0.260320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260320,0.000000,0.000000,0.250000,0,0);}
.mc1_c00163{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);}
.m6c_c00163{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);}
.m24_c00163{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);}
.ma1_c00163{transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);}
.m38_c00163{transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{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);}
.m5b_c00163{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{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);}
.m28_c00163{transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.m6b_c00163{transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269540,0.000000,0.000000,0.250000,0,0);}
.mc6_c00163{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);}
.m60_c00163{transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00163{transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);}
.ma9_c00163{transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);}
.m62_c00163{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);}
.m7c_c00163{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.mdb_c00163{transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);}
.me0_c00163{transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282785,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.283995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283995,0.000000,0.000000,0.250000,0,0);}
.m79_c00163{transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293965,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.mbf_c00163{transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);}
.mbe_c00163{transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);}
.me6_c00163{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308835,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315095,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.317545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323555,0.000000,0.000000,0.250000,0,0);}
.mc4_c00163{transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);}
.mef_c00163{transform:matrix(0.328075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00163{transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);}
.me8_c00163{transform:matrix(0.333515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333515,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{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);}
.m3b_c00163{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);}
.md8_c00163{transform:matrix(0.342450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342450,0.000000,0.000000,0.250000,0,0);}
.ma8_c00163{transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);}
.me3_c00163{transform:matrix(0.349895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349895,0.000000,0.000000,0.250000,0,0);}
.ma6_c00163{transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);}
.md2_c00163{transform:matrix(0.355815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355815,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.359750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00163{transform:matrix(0.362110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362110,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.366310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366310,0.000000,0.000000,0.250000,0,0);}
.mdf_c00163{transform:matrix(0.367690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367690,0.000000,0.000000,0.250000,0,0);}
.md1_c00163{transform:matrix(0.373240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373240,0.000000,0.000000,0.250000,0,0);}
.ma5_c00163{transform:matrix(0.377280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377280,0.000000,0.000000,0.250000,0,0);}
.ma2_c00163{transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384060,0.000000,0.000000,0.250000,0,0);}
.m31_c00163{transform:matrix(0.385300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385300,0.000000,0.000000,0.250000,0,0);}
.mba_c00163{transform:matrix(0.387320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387320,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{transform:matrix(0.394865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394865,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.394980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394980,0.000000,0.000000,0.250000,0,0);}
.mb9_c00163{transform:matrix(0.396210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396210,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.420975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420975,0.000000,0.000000,0.250000,0,0);}
.maa_c00163{transform:matrix(0.425975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425975,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.427215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427215,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.435960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.439490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439490,0.000000,0.000000,0.250000,0,0);}
.ma4_c00163{transform:matrix(0.444500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444500,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.447005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447005,0.000000,0.000000,0.250000,0,0);}
.mbc_c00163{transform:matrix(0.474970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474970,0.000000,0.000000,0.250000,0,0);}
.me9_c00163{transform:matrix(0.509260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509260,0.000000,0.000000,0.250000,0,0);}
.me2_c00163{transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);}
.md9_c00163{transform:matrix(0.551725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551725,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.553965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553965,0.000000,0.000000,0.250000,0,0);}
.mf1_c00163{transform:matrix(0.562345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562345,0.000000,0.000000,0.250000,0,0);}
.mea_c00163{transform:matrix(0.627765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00163{transform:matrix(0.648365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648365,0.000000,0.000000,0.250000,0,0);}
.meb_c00163{transform:matrix(0.654860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654860,0.000000,0.000000,0.250000,0,0);}
.mec_c00163{transform:matrix(0.760555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760555,0.000000,0.000000,0.250000,0,0);}
.mb8_c00163{transform:matrix(0.783190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.783190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.783190,0.000000,0.000000,0.250000,0,0);}
.med_c00163{transform:matrix(0.798800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798800,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.821055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821055,0.000000,0.000000,0.250000,0,0);}
.mf0_c00163{transform:matrix(0.958440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958440,0.000000,0.000000,0.250000,0,0);}
.mc2_c00163{transform:matrix(1.041180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041180,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;}
.fs11_c00163{font-size:21.000000px;}
.fsa_c00163{font-size:27.300000px;}
.fsd_c00163{font-size:45.150000px;}
.fsb_c00163{font-size:46.200000px;}
.fs9_c00163{font-size:47.250000px;}
.fse_c00163{font-size:51.450000px;}
.fsc_c00163{font-size:52.500000px;}
.fs10_c00163{font-size:57.750000px;}
.fsf_c00163{font-size:59.850000px;}
.fs2_c00163{font-size:64.050000px;}
.fs5_c00163{font-size:67.200000px;}
.fs0_c00163{font-size:68.250000px;}
.fs7_c00163{font-size:69.300000px;}
.fs1_c00163{font-size:70.350000px;}
.fs4_c00163{font-size:71.400000px;}
.fs8_c00163{font-size:72.450000px;}
.fs6_c00163{font-size:73.500000px;}
.fs3_c00163{font-size:74.550000px;}
.y0_c00163{bottom:0.000000px;}
.y23_c00163{bottom:101.898000px;}
.y22_c00163{bottom:176.206500px;}
.y21_c00163{bottom:192.427500px;}
.y20_c00163{bottom:211.809000px;}
.y1f_c00163{bottom:271.644000px;}
.y1e_c00163{bottom:294.385500px;}
.y1d_c00163{bottom:312.219000px;}
.y1c_c00163{bottom:329.904000px;}
.y1b_c00163{bottom:353.008500px;}
.y1a_c00163{bottom:370.773000px;}
.y19_c00163{bottom:383.670000px;}
.y18_c00163{bottom:390.150000px;}
.y17_c00163{bottom:413.844000px;}
.y16_c00163{bottom:437.304000px;}
.y15_c00163{bottom:459.967500px;}
.y14_c00163{bottom:482.874000px;}
.y13_c00163{bottom:505.713000px;}
.y12_c00163{bottom:528.850500px;}
.y11_c00163{bottom:552.034500px;}
.y10_c00163{bottom:574.398000px;}
.yf_c00163{bottom:597.165000px;}
.ye_c00163{bottom:620.019000px;}
.yd_c00163{bottom:642.234000px;}
.yc_c00163{bottom:664.680000px;}
.yb_c00163{bottom:683.239500px;}
.ya_c00163{bottom:686.790000px;}
.y9_c00163{bottom:687.106500px;}
.y8_c00163{bottom:688.042500px;}
.y7_c00163{bottom:688.684500px;}
.y6_c00163{bottom:710.641500px;}
.y5_c00163{bottom:733.485000px;}
.y4_c00163{bottom:756.906000px;}
.y3_c00163{bottom:780.031500px;}
.y2_c00163{bottom:801.790500px;}
.y1_c00163{bottom:824.365500px;}
.h13_c00163{height:21.000000px;}
.hc_c00163{height:27.300000px;}
.hf_c00163{height:45.150000px;}
.hd_c00163{height:46.200000px;}
.hb_c00163{height:47.250000px;}
.h10_c00163{height:51.450000px;}
.he_c00163{height:52.500000px;}
.h12_c00163{height:57.750000px;}
.h11_c00163{height:59.850000px;}
.h4_c00163{height:64.050000px;}
.h7_c00163{height:67.200000px;}
.h2_c00163{height:68.250000px;}
.h9_c00163{height:69.300000px;}
.h3_c00163{height:70.350000px;}
.h6_c00163{height:71.400000px;}
.ha_c00163{height:72.450000px;}
.h8_c00163{height:73.500000px;}
.h5_c00163{height:74.550000px;}
.h0_c00163{height:1008.450000px;}
.h1_c00163{height:1008.750000px;}
.w0_c00163{width:676.890000px;}
.w1_c00163{width:677.250000px;}
.x0_c00163{left:0.000000px;}
.x8c_c00163{left:77.220000px;}
.x8d_c00163{left:92.340000px;}
.x8e_c00163{left:100.980000px;}
.x8f_c00163{left:117.450000px;}
.x7b_c00163{left:130.410000px;}
.x4e_c00163{left:132.841500px;}
.x72_c00163{left:134.730000px;}
.x2a_c00163{left:150.661500px;}
.x55_c00163{left:152.551500px;}
.x7c_c00163{left:157.680000px;}
.x4b_c00163{left:160.111500px;}
.x9_c00163{left:162.000000px;}
.x18_c00163{left:166.050000px;}
.x1_c00163{left:167.670000px;}
.x85_c00163{left:173.610000px;}
.x7d_c00163{left:180.900000px;}
.x73_c00163{left:187.650000px;}
.x47_c00163{left:190.891500px;}
.x3f_c00163{left:192.241500px;}
.x4f_c00163{left:193.321500px;}
.x2_c00163{left:194.670000px;}
.x66_c00163{left:198.450000px;}
.xa_c00163{left:201.150000px;}
.x90_c00163{left:202.500000px;}
.x61_c00163{left:204.121500px;}
.x2b_c00163{left:207.901500px;}
.x19_c00163{left:209.250000px;}
.x40_c00163{left:211.141500px;}
.x32_c00163{left:213.301500px;}
.x74_c00163{left:216.270000px;}
.x50_c00163{left:217.621500px;}
.xf_c00163{left:220.860000px;}
.x5d_c00163{left:224.371500px;}
.x56_c00163{left:227.881500px;}
.x64_c00163{left:230.581500px;}
.x7e_c00163{left:232.740000px;}
.x6a_c00163{left:235.440000px;}
.x41_c00163{left:237.331500px;}
.x1a_c00163{left:239.760000px;}
.x91_c00163{left:242.730000px;}
.x6b_c00163{left:243.810000px;}
.x5e_c00163{left:245.431500px;}
.x38_c00163{left:247.321500px;}
.x4c_c00163{left:248.941500px;}
.x51_c00163{left:255.961500px;}
.x10_c00163{left:257.580000px;}
.x48_c00163{left:259.201500px;}
.xb_c00163{left:261.630000px;}
.x86_c00163{left:263.520000px;}
.x1c_c00163{left:265.680000px;}
.x3_c00163{left:268.110000px;}
.x67_c00163{left:272.700000px;}
.x6d_c00163{left:273.780000px;}
.x33_c00163{left:276.751500px;}
.x39_c00163{left:278.371500px;}
.x2c_c00163{left:280.261500px;}
.x22_c00163{left:282.937500px;}
.x49_c00163{left:284.041500px;}
.x62_c00163{left:286.471500px;}
.x57_c00163{left:292.951500px;}
.x3a_c00163{left:295.111500px;}
.x71_c00163{left:297.540000px;}
.x11_c00163{left:300.240000px;}
.x1d_c00163{left:301.590000px;}
.x4_c00163{left:304.560000px;}
.x2d_c00163{left:305.911500px;}
.x42_c00163{left:306.991500px;}
.x5f_c00163{left:308.071500px;}
.x92_c00163{left:310.770000px;}
.x87_c00163{left:314.820000px;}
.x58_c00163{left:316.171500px;}
.x75_c00163{left:319.140000px;}
.x1e_c00163{left:322.920000px;}
.x52_c00163{left:325.081500px;}
.xc_c00163{left:326.430000px;}
.x68_c00163{left:328.590000px;}
.x70_c00163{left:333.450000px;}
.x76_c00163{left:335.880000px;}
.x6e_c00163{left:337.770000px;}
.x21_c00163{left:339.930000px;}
.x12_c00163{left:343.710000px;}
.x69_c00163{left:346.140000px;}
.x5_c00163{left:347.490000px;}
.x1f_c00163{left:348.840000px;}
.x43_c00163{left:351.271500px;}
.x93_c00163{left:353.700000px;}
.x3b_c00163{left:356.131500px;}
.x34_c00163{left:357.751500px;}
.x4a_c00163{left:360.721500px;}
.x65_c00163{left:364.231500px;}
.x6_c00163{left:366.120000px;}
.x44_c00163{left:367.471500px;}
.x13_c00163{left:369.090000px;}
.x6c_c00163{left:371.250000px;}
.x6f_c00163{left:376.380000px;}
.x2e_c00163{left:379.081500px;}
.x35_c00163{left:382.321500px;}
.x3c_c00163{left:384.481500px;}
.x59_c00163{left:386.911500px;}
.x7_c00163{left:388.530000px;}
.x7f_c00163{left:394.740000px;}
.x2f_c00163{left:396.901500px;}
.x45_c00163{left:404.461500px;}
.x23_c00163{left:409.117500px;}
.x36_c00163{left:414.451500px;}
.x88_c00163{left:417.150000px;}
.xd_c00163{left:419.040000px;}
.x4d_c00163{left:420.391500px;}
.x53_c00163{left:422.281500px;}
.x25_c00163{left:426.871500px;}
.x8_c00163{left:430.920000px;}
.x14_c00163{left:433.620000px;}
.xe_c00163{left:439.560000px;}
.x46_c00163{left:441.181500px;}
.x20_c00163{left:443.340000px;}
.x89_c00163{left:448.200000px;}
.x26_c00163{left:449.281500px;}
.x5a_c00163{left:452.791500px;}
.x3d_c00163{left:459.001500px;}
.x60_c00163{left:460.891500px;}
.x15_c00163{left:464.130000px;}
.x30_c00163{left:466.831500px;}
.x5b_c00163{left:477.091500px;}
.x77_c00163{left:480.330000px;}
.x37_c00163{left:484.921500px;}
.x27_c00163{left:490.591500px;}
.x63_c00163{left:495.451500px;}
.x80_c00163{left:499.230000px;}
.x31_c00163{left:501.661500px;}
.x8a_c00163{left:503.550000px;}
.x3e_c00163{left:507.601500px;}
.x54_c00163{left:509.761500px;}
.x5c_c00163{left:522.181500px;}
.x16_c00163{left:531.900000px;}
.x81_c00163{left:545.670000px;}
.x28_c00163{left:547.831500px;}
.x78_c00163{left:549.990000px;}
.x17_c00163{left:559.440000px;}
.x79_c00163{left:563.220000px;}
.x82_c00163{left:565.110000px;}
.x29_c00163{left:568.081500px;}
.x8b_c00163{left:588.060000px;}
.x83_c00163{left:594.270000px;}
.x1b_c00163{left:614.520000px;}
.x7a_c00163{left:626.940000px;}
.x84_c00163{left:635.850000px;}
.x24_c00163{left:645.831000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
.fs11_c00163{font-size:18.666667pt;}
.fsa_c00163{font-size:24.266667pt;}
.fsd_c00163{font-size:40.133333pt;}
.fsb_c00163{font-size:41.066667pt;}
.fs9_c00163{font-size:42.000000pt;}
.fse_c00163{font-size:45.733333pt;}
.fsc_c00163{font-size:46.666667pt;}
.fs10_c00163{font-size:51.333333pt;}
.fsf_c00163{font-size:53.200000pt;}
.fs2_c00163{font-size:56.933333pt;}
.fs5_c00163{font-size:59.733333pt;}
.fs0_c00163{font-size:60.666667pt;}
.fs7_c00163{font-size:61.600000pt;}
.fs1_c00163{font-size:62.533333pt;}
.fs4_c00163{font-size:63.466667pt;}
.fs8_c00163{font-size:64.400000pt;}
.fs6_c00163{font-size:65.333333pt;}
.fs3_c00163{font-size:66.266667pt;}
.y0_c00163{bottom:0.000000pt;}
.y23_c00163{bottom:90.576000pt;}
.y22_c00163{bottom:156.628000pt;}
.y21_c00163{bottom:171.046667pt;}
.y20_c00163{bottom:188.274667pt;}
.y1f_c00163{bottom:241.461333pt;}
.y1e_c00163{bottom:261.676000pt;}
.y1d_c00163{bottom:277.528000pt;}
.y1c_c00163{bottom:293.248000pt;}
.y1b_c00163{bottom:313.785333pt;}
.y1a_c00163{bottom:329.576000pt;}
.y19_c00163{bottom:341.040000pt;}
.y18_c00163{bottom:346.800000pt;}
.y17_c00163{bottom:367.861333pt;}
.y16_c00163{bottom:388.714667pt;}
.y15_c00163{bottom:408.860000pt;}
.y14_c00163{bottom:429.221333pt;}
.y13_c00163{bottom:449.522667pt;}
.y12_c00163{bottom:470.089333pt;}
.y11_c00163{bottom:490.697333pt;}
.y10_c00163{bottom:510.576000pt;}
.yf_c00163{bottom:530.813333pt;}
.ye_c00163{bottom:551.128000pt;}
.yd_c00163{bottom:570.874667pt;}
.yc_c00163{bottom:590.826667pt;}
.yb_c00163{bottom:607.324000pt;}
.ya_c00163{bottom:610.480000pt;}
.y9_c00163{bottom:610.761333pt;}
.y8_c00163{bottom:611.593333pt;}
.y7_c00163{bottom:612.164000pt;}
.y6_c00163{bottom:631.681333pt;}
.y5_c00163{bottom:651.986667pt;}
.y4_c00163{bottom:672.805333pt;}
.y3_c00163{bottom:693.361333pt;}
.y2_c00163{bottom:712.702667pt;}
.y1_c00163{bottom:732.769333pt;}
.h13_c00163{height:18.666667pt;}
.hc_c00163{height:24.266667pt;}
.hf_c00163{height:40.133333pt;}
.hd_c00163{height:41.066667pt;}
.hb_c00163{height:42.000000pt;}
.h10_c00163{height:45.733333pt;}
.he_c00163{height:46.666667pt;}
.h12_c00163{height:51.333333pt;}
.h11_c00163{height:53.200000pt;}
.h4_c00163{height:56.933333pt;}
.h7_c00163{height:59.733333pt;}
.h2_c00163{height:60.666667pt;}
.h9_c00163{height:61.600000pt;}
.h3_c00163{height:62.533333pt;}
.h6_c00163{height:63.466667pt;}
.ha_c00163{height:64.400000pt;}
.h8_c00163{height:65.333333pt;}
.h5_c00163{height:66.266667pt;}
.h0_c00163{height:896.400000pt;}
.h1_c00163{height:896.666667pt;}
.w0_c00163{width:601.680000pt;}
.w1_c00163{width:602.000000pt;}
.x0_c00163{left:0.000000pt;}
.x8c_c00163{left:68.640000pt;}
.x8d_c00163{left:82.080000pt;}
.x8e_c00163{left:89.760000pt;}
.x8f_c00163{left:104.400000pt;}
.x7b_c00163{left:115.920000pt;}
.x4e_c00163{left:118.081333pt;}
.x72_c00163{left:119.760000pt;}
.x2a_c00163{left:133.921333pt;}
.x55_c00163{left:135.601333pt;}
.x7c_c00163{left:140.160000pt;}
.x4b_c00163{left:142.321333pt;}
.x9_c00163{left:144.000000pt;}
.x18_c00163{left:147.600000pt;}
.x1_c00163{left:149.040000pt;}
.x85_c00163{left:154.320000pt;}
.x7d_c00163{left:160.800000pt;}
.x73_c00163{left:166.800000pt;}
.x47_c00163{left:169.681333pt;}
.x3f_c00163{left:170.881333pt;}
.x4f_c00163{left:171.841333pt;}
.x2_c00163{left:173.040000pt;}
.x66_c00163{left:176.400000pt;}
.xa_c00163{left:178.800000pt;}
.x90_c00163{left:180.000000pt;}
.x61_c00163{left:181.441333pt;}
.x2b_c00163{left:184.801333pt;}
.x19_c00163{left:186.000000pt;}
.x40_c00163{left:187.681333pt;}
.x32_c00163{left:189.601333pt;}
.x74_c00163{left:192.240000pt;}
.x50_c00163{left:193.441333pt;}
.xf_c00163{left:196.320000pt;}
.x5d_c00163{left:199.441333pt;}
.x56_c00163{left:202.561333pt;}
.x64_c00163{left:204.961333pt;}
.x7e_c00163{left:206.880000pt;}
.x6a_c00163{left:209.280000pt;}
.x41_c00163{left:210.961333pt;}
.x1a_c00163{left:213.120000pt;}
.x91_c00163{left:215.760000pt;}
.x6b_c00163{left:216.720000pt;}
.x5e_c00163{left:218.161333pt;}
.x38_c00163{left:219.841333pt;}
.x4c_c00163{left:221.281333pt;}
.x51_c00163{left:227.521333pt;}
.x10_c00163{left:228.960000pt;}
.x48_c00163{left:230.401333pt;}
.xb_c00163{left:232.560000pt;}
.x86_c00163{left:234.240000pt;}
.x1c_c00163{left:236.160000pt;}
.x3_c00163{left:238.320000pt;}
.x67_c00163{left:242.400000pt;}
.x6d_c00163{left:243.360000pt;}
.x33_c00163{left:246.001333pt;}
.x39_c00163{left:247.441333pt;}
.x2c_c00163{left:249.121333pt;}
.x22_c00163{left:251.500000pt;}
.x49_c00163{left:252.481333pt;}
.x62_c00163{left:254.641333pt;}
.x57_c00163{left:260.401333pt;}
.x3a_c00163{left:262.321333pt;}
.x71_c00163{left:264.480000pt;}
.x11_c00163{left:266.880000pt;}
.x1d_c00163{left:268.080000pt;}
.x4_c00163{left:270.720000pt;}
.x2d_c00163{left:271.921333pt;}
.x42_c00163{left:272.881333pt;}
.x5f_c00163{left:273.841333pt;}
.x92_c00163{left:276.240000pt;}
.x87_c00163{left:279.840000pt;}
.x58_c00163{left:281.041333pt;}
.x75_c00163{left:283.680000pt;}
.x1e_c00163{left:287.040000pt;}
.x52_c00163{left:288.961333pt;}
.xc_c00163{left:290.160000pt;}
.x68_c00163{left:292.080000pt;}
.x70_c00163{left:296.400000pt;}
.x76_c00163{left:298.560000pt;}
.x6e_c00163{left:300.240000pt;}
.x21_c00163{left:302.160000pt;}
.x12_c00163{left:305.520000pt;}
.x69_c00163{left:307.680000pt;}
.x5_c00163{left:308.880000pt;}
.x1f_c00163{left:310.080000pt;}
.x43_c00163{left:312.241333pt;}
.x93_c00163{left:314.400000pt;}
.x3b_c00163{left:316.561333pt;}
.x34_c00163{left:318.001333pt;}
.x4a_c00163{left:320.641333pt;}
.x65_c00163{left:323.761333pt;}
.x6_c00163{left:325.440000pt;}
.x44_c00163{left:326.641333pt;}
.x13_c00163{left:328.080000pt;}
.x6c_c00163{left:330.000000pt;}
.x6f_c00163{left:334.560000pt;}
.x2e_c00163{left:336.961333pt;}
.x35_c00163{left:339.841333pt;}
.x3c_c00163{left:341.761333pt;}
.x59_c00163{left:343.921333pt;}
.x7_c00163{left:345.360000pt;}
.x7f_c00163{left:350.880000pt;}
.x2f_c00163{left:352.801333pt;}
.x45_c00163{left:359.521333pt;}
.x23_c00163{left:363.660000pt;}
.x36_c00163{left:368.401333pt;}
.x88_c00163{left:370.800000pt;}
.xd_c00163{left:372.480000pt;}
.x4d_c00163{left:373.681333pt;}
.x53_c00163{left:375.361333pt;}
.x25_c00163{left:379.441333pt;}
.x8_c00163{left:383.040000pt;}
.x14_c00163{left:385.440000pt;}
.xe_c00163{left:390.720000pt;}
.x46_c00163{left:392.161333pt;}
.x20_c00163{left:394.080000pt;}
.x89_c00163{left:398.400000pt;}
.x26_c00163{left:399.361333pt;}
.x5a_c00163{left:402.481333pt;}
.x3d_c00163{left:408.001333pt;}
.x60_c00163{left:409.681333pt;}
.x15_c00163{left:412.560000pt;}
.x30_c00163{left:414.961333pt;}
.x5b_c00163{left:424.081333pt;}
.x77_c00163{left:426.960000pt;}
.x37_c00163{left:431.041333pt;}
.x27_c00163{left:436.081333pt;}
.x63_c00163{left:440.401333pt;}
.x80_c00163{left:443.760000pt;}
.x31_c00163{left:445.921333pt;}
.x8a_c00163{left:447.600000pt;}
.x3e_c00163{left:451.201333pt;}
.x54_c00163{left:453.121333pt;}
.x5c_c00163{left:464.161333pt;}
.x16_c00163{left:472.800000pt;}
.x81_c00163{left:485.040000pt;}
.x28_c00163{left:486.961333pt;}
.x78_c00163{left:488.880000pt;}
.x17_c00163{left:497.280000pt;}
.x79_c00163{left:500.640000pt;}
.x82_c00163{left:502.320000pt;}
.x29_c00163{left:504.961333pt;}
.x8b_c00163{left:522.720000pt;}
.x83_c00163{left:528.240000pt;}
.x1b_c00163{left:546.240000pt;}
.x7a_c00163{left:557.280000pt;}
.x84_c00163{left:565.200000pt;}
.x24_c00163{left:574.072000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m15_c00164{transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);-ms-transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);}
.m38_c00164{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);}
.m37_c00164{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);}
.m34_c00164{transform:matrix(0.024215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024215,0.000000,0.000000,0.250000,0,0);}
.mb7_c00164{transform:matrix(0.049743,-0.000398,0.002000,0.249992,0,0);-ms-transform:matrix(0.049743,-0.000398,0.002000,0.249992,0,0);-webkit-transform:matrix(0.049743,-0.000398,0.002000,0.249992,0,0);}
.ma6_c00164{transform:matrix(0.060168,-0.000481,0.002000,0.249992,0,0);-ms-transform:matrix(0.060168,-0.000481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.060168,-0.000481,0.002000,0.249992,0,0);}
.mb1_c00164{transform:matrix(0.090722,-0.000726,0.002000,0.249992,0,0);-ms-transform:matrix(0.090722,-0.000726,0.002000,0.249992,0,0);-webkit-transform:matrix(0.090722,-0.000726,0.002000,0.249992,0,0);}
.m33_c00164{transform:matrix(0.094765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094765,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{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);}
.mcb_c00164{transform:matrix(0.113001,-0.000904,0.002000,0.249992,0,0);-ms-transform:matrix(0.113001,-0.000904,0.002000,0.249992,0,0);-webkit-transform:matrix(0.113001,-0.000904,0.002000,0.249992,0,0);}
.mc6_c00164{transform:matrix(0.115011,-0.000920,0.002000,0.249992,0,0);-ms-transform:matrix(0.115011,-0.000920,0.002000,0.249992,0,0);-webkit-transform:matrix(0.115011,-0.000920,0.002000,0.249992,0,0);}
.mb8_c00164{transform:matrix(0.123676,-0.000989,0.002000,0.249992,0,0);-ms-transform:matrix(0.123676,-0.000989,0.002000,0.249992,0,0);-webkit-transform:matrix(0.123676,-0.000989,0.002000,0.249992,0,0);}
.m19_c00164{transform:matrix(0.134371,-0.002284,0.004249,0.249964,0,0);-ms-transform:matrix(0.134371,-0.002284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.134371,-0.002284,0.004249,0.249964,0,0);}
.m52_c00164{transform:matrix(0.140015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140015,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);-ms-transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146574,-0.002492,0.004249,0.249964,0,0);}
.m47_c00164{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);}
.m91_c00164{transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00164{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);}
.m78_c00164{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);}
.mb5_c00164{transform:matrix(0.155720,-0.001246,0.002000,0.249992,0,0);-ms-transform:matrix(0.155720,-0.001246,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155720,-0.001246,0.002000,0.249992,0,0);}
.mcc_c00164{transform:matrix(0.158920,-0.001271,0.002000,0.249992,0,0);-ms-transform:matrix(0.158920,-0.001271,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158920,-0.001271,0.002000,0.249992,0,0);}
.m4c_c00164{transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{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);}
.m5d_c00164{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);}
.mc9_c00164{transform:matrix(0.165170,-0.001321,0.002000,0.249992,0,0);-ms-transform:matrix(0.165170,-0.001321,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165170,-0.001321,0.002000,0.249992,0,0);}
.m5e_c00164{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);}
.m59_c00164{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);}
.m8e_c00164{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);}
.m69_c00164{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);}
.m1b_c00164{transform:matrix(0.168921,-0.002872,0.004249,0.249964,0,0);-ms-transform:matrix(0.168921,-0.002872,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168921,-0.002872,0.004249,0.249964,0,0);}
.m80_c00164{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);}
.m4b_c00164{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);}
.m18_c00164{transform:matrix(0.170875,-0.002905,0.004249,0.249964,0,0);-ms-transform:matrix(0.170875,-0.002905,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170875,-0.002905,0.004249,0.249964,0,0);}
.m76_c00164{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);}
.m45_c00164{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);}
.mcf_c00164{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);}
.m2b_c00164{transform:matrix(0.174000,-0.002958,0.004249,0.249964,0,0);-ms-transform:matrix(0.174000,-0.002958,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174000,-0.002958,0.004249,0.249964,0,0);}
.m4d_c00164{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);}
.m1e_c00164{transform:matrix(0.174560,-0.002968,0.004249,0.249964,0,0);-ms-transform:matrix(0.174560,-0.002968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174560,-0.002968,0.004249,0.249964,0,0);}
.m54_c00164{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);}
.m1d_c00164{transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);-ms-transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);}
.m95_c00164{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);}
.m7f_c00164{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);}
.m53_c00164{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);}
.mf_c00164{transform:matrix(0.182554,-0.003103,0.004249,0.249964,0,0);-ms-transform:matrix(0.182554,-0.003103,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182554,-0.003103,0.004249,0.249964,0,0);}
.m1c_c00164{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);}
.m44_c00164{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);}
.m9b_c00164{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);}
.m66_c00164{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);}
.m5f_c00164{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);}
.m75_c00164{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);}
.m35_c00164{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);}
.m7b_c00164{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_c00164{transform:matrix(0.186939,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.186939,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186939,-0.001496,0.002000,0.249992,0,0);}
.m8b_c00164{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);}
.m17_c00164{transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);}
.m3c_c00164{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);}
.m4e_c00164{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);}
.mc8_c00164{transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);-ms-transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);}
.m48_c00164{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);}
.m43_c00164{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);}
.m5c_c00164{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);}
.m27_c00164{transform:matrix(0.192157,-0.003267,0.004249,0.249964,0,0);-ms-transform:matrix(0.192157,-0.003267,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192157,-0.003267,0.004249,0.249964,0,0);}
.m7a_c00164{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);}
.m93_c00164{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);}
.m77_c00164{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);}
.m5a_c00164{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);}
.maa_c00164{transform:matrix(0.193549,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193549,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193549,-0.001548,0.002000,0.249992,0,0);}
.m9f_c00164{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);}
.m4a_c00164{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{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);}
.mc4_c00164{transform:matrix(0.195289,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195289,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195289,-0.001562,0.002000,0.249992,0,0);}
.m14_c00164{transform:matrix(0.195882,-0.003330,0.004249,0.249964,0,0);-ms-transform:matrix(0.195882,-0.003330,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195882,-0.003330,0.004249,0.249964,0,0);}
.m49_c00164{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);}
.m32_c00164{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);}
.m3e_c00164{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);}
.m9a_c00164{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);}
.m42_c00164{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);}
.m31_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);}
.m81_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);}
.m1f_c00164{transform:matrix(0.201271,-0.003422,0.004249,0.249964,0,0);-ms-transform:matrix(0.201271,-0.003422,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201271,-0.003422,0.004249,0.249964,0,0);}
.m88_c00164{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);}
.m61_c00164{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);}
.m6f_c00164{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);}
.m8c_c00164{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);}
.m21_c00164{transform:matrix(0.202221,-0.003438,0.004249,0.249964,0,0);-ms-transform:matrix(0.202221,-0.003438,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202221,-0.003438,0.004249,0.249964,0,0);}
.m6c_c00164{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);}
.m3f_c00164{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);}
.m6d_c00164{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);}
.m84_c00164{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);}
.m51_c00164{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);}
.m63_c00164{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);}
.mca_c00164{transform:matrix(0.205788,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205788,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205788,-0.001646,0.002000,0.249992,0,0);}
.m23_c00164{transform:matrix(0.205860,-0.003500,0.004249,0.249964,0,0);-ms-transform:matrix(0.205860,-0.003500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205860,-0.003500,0.004249,0.249964,0,0);}
.m57_c00164{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);}
.maf_c00164{transform:matrix(0.208038,-0.001664,0.002000,0.249992,0,0);-ms-transform:matrix(0.208038,-0.001664,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208038,-0.001664,0.002000,0.249992,0,0);}
.m10_c00164{transform:matrix(0.209005,-0.003553,0.004249,0.249964,0,0);-ms-transform:matrix(0.209005,-0.003553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209005,-0.003553,0.004249,0.249964,0,0);}
.m70_c00164{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);}
.m25_c00164{transform:matrix(0.209910,-0.003568,0.004249,0.249964,0,0);-ms-transform:matrix(0.209910,-0.003568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209910,-0.003568,0.004249,0.249964,0,0);}
.m13_c00164{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);}
.m46_c00164{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);}
.m22_c00164{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);}
.m3d_c00164{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);}
.m40_c00164{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);}
.mbe_c00164{transform:matrix(0.215698,-0.001726,0.002000,0.249992,0,0);-ms-transform:matrix(0.215698,-0.001726,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215698,-0.001726,0.002000,0.249992,0,0);}
.m74_c00164{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{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);}
.m7d_c00164{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);}
.m89_c00164{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);}
.mc7_c00164{transform:matrix(0.222208,-0.001778,0.002000,0.249992,0,0);-ms-transform:matrix(0.222208,-0.001778,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222208,-0.001778,0.002000,0.249992,0,0);}
.m2_c00164{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{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);}
.m58_c00164{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);}
.m41_c00164{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);}
.mad_c00164{transform:matrix(0.225918,-0.001807,0.002000,0.249992,0,0);-ms-transform:matrix(0.225918,-0.001807,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225918,-0.001807,0.002000,0.249992,0,0);}
.mc2_c00164{transform:matrix(0.226003,-0.001808,0.002000,0.249992,0,0);-ms-transform:matrix(0.226003,-0.001808,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226003,-0.001808,0.002000,0.249992,0,0);}
.mb4_c00164{transform:matrix(0.226168,-0.001809,0.002000,0.249992,0,0);-ms-transform:matrix(0.226168,-0.001809,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226168,-0.001809,0.002000,0.249992,0,0);}
.mc1_c00164{transform:matrix(0.226213,-0.001810,0.002000,0.249992,0,0);-ms-transform:matrix(0.226213,-0.001810,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226213,-0.001810,0.002000,0.249992,0,0);}
.m20_c00164{transform:matrix(0.228027,-0.003876,0.004249,0.249964,0,0);-ms-transform:matrix(0.228027,-0.003876,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228027,-0.003876,0.004249,0.249964,0,0);}
.ma9_c00164{transform:matrix(0.228953,-0.001832,0.002000,0.249992,0,0);-ms-transform:matrix(0.228953,-0.001832,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228953,-0.001832,0.002000,0.249992,0,0);}
.m36_c00164{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);}
.mc3_c00164{transform:matrix(0.231338,-0.001851,0.002000,0.249992,0,0);-ms-transform:matrix(0.231338,-0.001851,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231338,-0.001851,0.002000,0.249992,0,0);}
.m6a_c00164{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);}
.m71_c00164{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);}
.mbd_c00164{transform:matrix(0.234387,-0.001875,0.002000,0.249992,0,0);-ms-transform:matrix(0.234387,-0.001875,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234387,-0.001875,0.002000,0.249992,0,0);}
.m3b_c00164{transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{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);}
.m6b_c00164{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);}
.m9d_c00164{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);}
.m11_c00164{transform:matrix(0.240575,-0.004090,0.004249,0.249964,0,0);-ms-transform:matrix(0.240575,-0.004090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240575,-0.004090,0.004249,0.249964,0,0);}
.m29_c00164{transform:matrix(0.241605,-0.004107,0.004249,0.249964,0,0);-ms-transform:matrix(0.241605,-0.004107,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241605,-0.004107,0.004249,0.249964,0,0);}
.m97_c00164{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);}
.mce_c00164{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);}
.mbc_c00164{transform:matrix(0.243072,-0.001945,0.002000,0.249992,0,0);-ms-transform:matrix(0.243072,-0.001945,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243072,-0.001945,0.002000,0.249992,0,0);}
.m68_c00164{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);}
.m9c_c00164{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m60_c00164{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);}
.m56_c00164{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);}
.m67_c00164{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);}
.m92_c00164{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.ma7_c00164{transform:matrix(0.248182,-0.001985,0.002000,0.249992,0,0);-ms-transform:matrix(0.248182,-0.001985,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248182,-0.001985,0.002000,0.249992,0,0);}
.m2d_c00164{transform:matrix(0.248769,-0.004229,0.004249,0.249964,0,0);-ms-transform:matrix(0.248769,-0.004229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248769,-0.004229,0.004249,0.249964,0,0);}
.m9e_c00164{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.249609,-0.004243,0.004249,0.249964,0,0);-ms-transform:matrix(0.249609,-0.004243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249609,-0.004243,0.004249,0.249964,0,0);}
.ma5_c00164{transform:matrix(0.249872,-0.001999,0.002000,0.249992,0,0);-ms-transform:matrix(0.249872,-0.001999,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249872,-0.001999,0.002000,0.249992,0,0);}
.m64_c00164{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);}
.m72_c00164{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);}
.m39_c00164{transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);}
.ma3_c00164{transform:matrix(0.256197,-0.002050,0.002000,0.249992,0,0);-ms-transform:matrix(0.256197,-0.002050,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256197,-0.002050,0.002000,0.249992,0,0);}
.mbb_c00164{transform:matrix(0.257247,-0.002058,0.002000,0.249992,0,0);-ms-transform:matrix(0.257247,-0.002058,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257247,-0.002058,0.002000,0.249992,0,0);}
.mab_c00164{transform:matrix(0.257282,-0.002058,0.002000,0.249992,0,0);-ms-transform:matrix(0.257282,-0.002058,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257282,-0.002058,0.002000,0.249992,0,0);}
.m24_c00164{transform:matrix(0.258793,-0.004399,0.004249,0.249964,0,0);-ms-transform:matrix(0.258793,-0.004399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258793,-0.004399,0.004249,0.249964,0,0);}
.m12_c00164{transform:matrix(0.261152,-0.004440,0.004249,0.249964,0,0);-ms-transform:matrix(0.261152,-0.004440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261152,-0.004440,0.004249,0.249964,0,0);}
.mc_c00164{transform:matrix(0.264187,-0.004491,0.004249,0.249964,0,0);-ms-transform:matrix(0.264187,-0.004491,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264187,-0.004491,0.004249,0.249964,0,0);}
.md1_c00164{transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);}
.mae_c00164{transform:matrix(0.266226,-0.002130,0.002000,0.249992,0,0);-ms-transform:matrix(0.266226,-0.002130,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266226,-0.002130,0.002000,0.249992,0,0);}
.m55_c00164{transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);}
.m94_c00164{transform:matrix(0.272200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272200,0.000000,0.000000,0.250000,0,0);}
.md0_c00164{transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275575,0.000000,0.000000,0.250000,0,0);}
.m7e_c00164{transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279705,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.280489,-0.004768,0.004249,0.249964,0,0);-ms-transform:matrix(0.280489,-0.004768,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280489,-0.004768,0.004249,0.249964,0,0);}
.m5b_c00164{transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{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);}
.ma1_c00164{transform:matrix(0.289931,-0.002319,0.002000,0.249992,0,0);-ms-transform:matrix(0.289931,-0.002319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.289931,-0.002319,0.002000,0.249992,0,0);}
.m2a_c00164{transform:matrix(0.295602,-0.005025,0.004249,0.249964,0,0);-ms-transform:matrix(0.295602,-0.005025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.295602,-0.005025,0.004249,0.249964,0,0);}
.ma0_c00164{transform:matrix(0.299245,-0.002394,0.002000,0.249992,0,0);-ms-transform:matrix(0.299245,-0.002394,0.002000,0.249992,0,0);-webkit-transform:matrix(0.299245,-0.002394,0.002000,0.249992,0,0);}
.m8a_c00164{transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302510,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303735,0.000000,0.000000,0.250000,0,0);}
.mba_c00164{transform:matrix(0.304265,-0.002434,0.002000,0.249992,0,0);-ms-transform:matrix(0.304265,-0.002434,0.002000,0.249992,0,0);-webkit-transform:matrix(0.304265,-0.002434,0.002000,0.249992,0,0);}
.m4_c00164{transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);}
.mac_c00164{transform:matrix(0.305365,-0.002443,0.002000,0.249992,0,0);-ms-transform:matrix(0.305365,-0.002443,0.002000,0.249992,0,0);-webkit-transform:matrix(0.305365,-0.002443,0.002000,0.249992,0,0);}
.m8d_c00164{transform:matrix(0.307585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307585,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.311625,-0.005298,0.004249,0.249964,0,0);-ms-transform:matrix(0.311625,-0.005298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311625,-0.005298,0.004249,0.249964,0,0);}
.m26_c00164{transform:matrix(0.317449,-0.005397,0.004249,0.249964,0,0);-ms-transform:matrix(0.317449,-0.005397,0.004249,0.249964,0,0);-webkit-transform:matrix(0.317449,-0.005397,0.004249,0.249964,0,0);}
.m98_c00164{transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325235,0.000000,0.000000,0.250000,0,0);}
.ma8_c00164{transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);-ms-transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);}
.md2_c00164{transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326580,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329870,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.330552,-0.005619,0.004249,0.249964,0,0);-ms-transform:matrix(0.330552,-0.005619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.330552,-0.005619,0.004249,0.249964,0,0);}
.m3a_c00164{transform:matrix(0.331110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331110,0.000000,0.000000,0.250000,0,0);}
.mb6_c00164{transform:matrix(0.336279,-0.002690,0.002000,0.249992,0,0);-ms-transform:matrix(0.336279,-0.002690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.336279,-0.002690,0.002000,0.249992,0,0);}
.m96_c00164{transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(0.341171,-0.005800,0.004249,0.249964,0,0);-ms-transform:matrix(0.341171,-0.005800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.341171,-0.005800,0.004249,0.249964,0,0);}
.ma_c00164{transform:matrix(0.342111,-0.005816,0.004249,0.249964,0,0);-ms-transform:matrix(0.342111,-0.005816,0.004249,0.249964,0,0);-webkit-transform:matrix(0.342111,-0.005816,0.004249,0.249964,0,0);}
.m8f_c00164{transform:matrix(0.345920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345920,0.000000,0.000000,0.250000,0,0);}
.mb9_c00164{transform:matrix(0.349809,-0.002798,0.002000,0.249992,0,0);-ms-transform:matrix(0.349809,-0.002798,0.002000,0.249992,0,0);-webkit-transform:matrix(0.349809,-0.002798,0.002000,0.249992,0,0);}
.m2c_c00164{transform:matrix(0.354704,-0.006030,0.004249,0.249964,0,0);-ms-transform:matrix(0.354704,-0.006030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.354704,-0.006030,0.004249,0.249964,0,0);}
.m99_c00164{transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378310,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.382175,-0.006497,0.004249,0.249964,0,0);-ms-transform:matrix(0.382175,-0.006497,0.004249,0.249964,0,0);-webkit-transform:matrix(0.382175,-0.006497,0.004249,0.249964,0,0);}
.mb0_c00164{transform:matrix(0.383728,-0.003070,0.002000,0.249992,0,0);-ms-transform:matrix(0.383728,-0.003070,0.002000,0.249992,0,0);-webkit-transform:matrix(0.383728,-0.003070,0.002000,0.249992,0,0);}
.ma2_c00164{transform:matrix(0.392587,-0.003141,0.002000,0.249992,0,0);-ms-transform:matrix(0.392587,-0.003141,0.002000,0.249992,0,0);-webkit-transform:matrix(0.392587,-0.003141,0.002000,0.249992,0,0);}
.m9_c00164{transform:matrix(0.439716,-0.007475,0.004249,0.249964,0,0);-ms-transform:matrix(0.439716,-0.007475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.439716,-0.007475,0.004249,0.249964,0,0);}
.mcd_c00164{transform:matrix(0.443350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443350,0.000000,0.000000,0.250000,0,0);}
.mc5_c00164{transform:matrix(0.453140,-0.003625,0.002000,0.249992,0,0);-ms-transform:matrix(0.453140,-0.003625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.453140,-0.003625,0.002000,0.249992,0,0);}
.m90_c00164{transform:matrix(0.460245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460245,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.463080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463080,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.492064,-0.008365,0.004249,0.249964,0,0);-ms-transform:matrix(0.492064,-0.008365,0.004249,0.249964,0,0);-webkit-transform:matrix(0.492064,-0.008365,0.004249,0.249964,0,0);}
.m30_c00164{transform:matrix(0.498583,-0.008476,0.004249,0.249964,0,0);-ms-transform:matrix(0.498583,-0.008476,0.004249,0.249964,0,0);-webkit-transform:matrix(0.498583,-0.008476,0.004249,0.249964,0,0);}
.m87_c00164{transform:matrix(0.500515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500515,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.503997,-0.008568,0.004249,0.249964,0,0);-ms-transform:matrix(0.503997,-0.008568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.503997,-0.008568,0.004249,0.249964,0,0);}
.m82_c00164{transform:matrix(0.532480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532480,0.000000,0.000000,0.250000,0,0);}
.m28_c00164{transform:matrix(0.544706,-0.009260,0.004249,0.249964,0,0);-ms-transform:matrix(0.544706,-0.009260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.544706,-0.009260,0.004249,0.249964,0,0);}
.mb2_c00164{transform:matrix(0.545718,-0.004366,0.002000,0.249992,0,0);-ms-transform:matrix(0.545718,-0.004366,0.002000,0.249992,0,0);-webkit-transform:matrix(0.545718,-0.004366,0.002000,0.249992,0,0);}
.m5_c00164{transform:matrix(0.580480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580480,0.000000,0.000000,0.250000,0,0);}
.mb3_c00164{transform:matrix(0.587311,-0.004698,0.002000,0.249992,0,0);-ms-transform:matrix(0.587311,-0.004698,0.002000,0.249992,0,0);-webkit-transform:matrix(0.587311,-0.004698,0.002000,0.249992,0,0);}
.m1_c00164{transform:matrix(0.589780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589780,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.621570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621570,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.638785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638785,0.000000,0.000000,0.250000,0,0);}
.mc0_c00164{transform:matrix(0.714707,-0.005718,0.002000,0.249992,0,0);-ms-transform:matrix(0.714707,-0.005718,0.002000,0.249992,0,0);-webkit-transform:matrix(0.714707,-0.005718,0.002000,0.249992,0,0);}
.ma4_c00164{transform:matrix(0.828813,-0.006631,0.002000,0.249992,0,0);-ms-transform:matrix(0.828813,-0.006631,0.002000,0.249992,0,0);-webkit-transform:matrix(0.828813,-0.006631,0.002000,0.249992,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;}
.fs0_c00164{font-size:26.250000px;}
.fs1_c00164{font-size:42.000000px;}
.fs12_c00164{font-size:46.201478px;}
.fs11_c00164{font-size:48.300000px;}
.fs13_c00164{font-size:50.401613px;}
.fs10_c00164{font-size:52.500000px;}
.fs14_c00164{font-size:59.851915px;}
.fsf_c00164{font-size:60.900000px;}
.fse_c00164{font-size:65.100000px;}
.fs7_c00164{font-size:67.209710px;}
.fsb_c00164{font-size:68.250000px;}
.fs4_c00164{font-size:68.259861px;}
.fs9_c00164{font-size:69.300000px;}
.fsd_c00164{font-size:70.350000px;}
.fs6_c00164{font-size:70.360165px;}
.fs8_c00164{font-size:71.400000px;}
.fs3_c00164{font-size:71.410317px;}
.fsc_c00164{font-size:75.600000px;}
.fs5_c00164{font-size:78.761379px;}
.fs2_c00164{font-size:87.150000px;}
.fsa_c00164{font-size:88.200000px;}
.y0_c00164{bottom:0.000000px;}
.ya0_c00164{bottom:136.570500px;}
.y97_c00164{bottom:165.417792px;}
.y96_c00164{bottom:165.417804px;}
.y9a_c00164{bottom:165.418080px;}
.y98_c00164{bottom:165.418140px;}
.y99_c00164{bottom:165.418320px;}
.y9b_c00164{bottom:165.418488px;}
.y95_c00164{bottom:165.418536px;}
.y94_c00164{bottom:165.418740px;}
.y9c_c00164{bottom:165.418956px;}
.y9d_c00164{bottom:165.419544px;}
.y9e_c00164{bottom:165.420084px;}
.y9f_c00164{bottom:165.420552px;}
.y87_c00164{bottom:184.025760px;}
.y88_c00164{bottom:184.026228px;}
.y8a_c00164{bottom:184.026636px;}
.y89_c00164{bottom:184.026828px;}
.y8b_c00164{bottom:184.026996px;}
.y8e_c00164{bottom:184.027068px;}
.y8c_c00164{bottom:184.027092px;}
.y8d_c00164{bottom:184.027140px;}
.y8f_c00164{bottom:184.027176px;}
.y92_c00164{bottom:184.027320px;}
.y91_c00164{bottom:184.027452px;}
.y93_c00164{bottom:184.027488px;}
.y90_c00164{bottom:184.027884px;}
.y73_c00164{bottom:201.873000px;}
.y74_c00164{bottom:202.270356px;}
.y75_c00164{bottom:202.661316px;}
.y76_c00164{bottom:202.829112px;}
.y77_c00164{bottom:203.123532px;}
.y78_c00164{bottom:203.358204px;}
.y79_c00164{bottom:203.611140px;}
.y7a_c00164{bottom:203.701824px;}
.y7b_c00164{bottom:203.846856px;}
.y7c_c00164{bottom:203.959236px;}
.y7d_c00164{bottom:204.192324px;}
.y7e_c00164{bottom:204.283008px;}
.y7f_c00164{bottom:204.402024px;}
.y80_c00164{bottom:204.659052px;}
.y81_c00164{bottom:204.914256px;}
.y82_c00164{bottom:205.347792px;}
.y83_c00164{bottom:205.454508px;}
.y84_c00164{bottom:205.598136px;}
.y85_c00164{bottom:205.641924px;}
.y86_c00164{bottom:205.715124px;}
.y72_c00164{bottom:261.798000px;}
.y71_c00164{bottom:279.192000px;}
.y70_c00164{bottom:297.123000px;}
.y6f_c00164{bottom:314.640000px;}
.y62_c00164{bottom:355.051500px;}
.y63_c00164{bottom:355.317000px;}
.y64_c00164{bottom:355.674000px;}
.y65_c00164{bottom:355.905000px;}
.y66_c00164{bottom:356.112000px;}
.y67_c00164{bottom:356.664000px;}
.y68_c00164{bottom:356.899500px;}
.y69_c00164{bottom:357.040500px;}
.y6a_c00164{bottom:357.393000px;}
.y6b_c00164{bottom:357.412500px;}
.y6c_c00164{bottom:357.937500px;}
.y6d_c00164{bottom:358.170000px;}
.y6e_c00164{bottom:358.518000px;}
.y59_c00164{bottom:377.463000px;}
.y5a_c00164{bottom:377.754000px;}
.y5b_c00164{bottom:378.334500px;}
.y5c_c00164{bottom:378.604500px;}
.y5d_c00164{bottom:379.273500px;}
.y5e_c00164{bottom:379.497000px;}
.y5f_c00164{bottom:379.719000px;}
.y60_c00164{bottom:380.206500px;}
.y61_c00164{bottom:380.439000px;}
.y51_c00164{bottom:400.404000px;}
.y52_c00164{bottom:401.196000px;}
.y53_c00164{bottom:401.614500px;}
.y54_c00164{bottom:401.895000px;}
.y55_c00164{bottom:402.193500px;}
.y56_c00164{bottom:402.510000px;}
.y57_c00164{bottom:402.804000px;}
.y58_c00164{bottom:403.098000px;}
.y50_c00164{bottom:425.025000px;}
.y44_c00164{bottom:445.771500px;}
.y45_c00164{bottom:445.936500px;}
.y46_c00164{bottom:446.302500px;}
.y47_c00164{bottom:446.467500px;}
.y48_c00164{bottom:446.779500px;}
.y49_c00164{bottom:446.838000px;}
.y4a_c00164{bottom:447.313500px;}
.y4b_c00164{bottom:447.433500px;}
.y4c_c00164{bottom:447.711000px;}
.y4d_c00164{bottom:447.907500px;}
.y4e_c00164{bottom:448.230000px;}
.y4f_c00164{bottom:448.407000px;}
.y3b_c00164{bottom:468.991500px;}
.y3c_c00164{bottom:469.287000px;}
.y3d_c00164{bottom:469.875000px;}
.y3e_c00164{bottom:470.082000px;}
.y3f_c00164{bottom:470.476500px;}
.y40_c00164{bottom:470.608500px;}
.y41_c00164{bottom:470.902500px;}
.y42_c00164{bottom:471.387000px;}
.y43_c00164{bottom:471.574500px;}
.y32_c00164{bottom:491.671500px;}
.y33_c00164{bottom:492.064500px;}
.y34_c00164{bottom:492.348000px;}
.y35_c00164{bottom:492.708000px;}
.y36_c00164{bottom:493.114500px;}
.y37_c00164{bottom:493.644000px;}
.y38_c00164{bottom:493.890000px;}
.y39_c00164{bottom:494.473500px;}
.y3a_c00164{bottom:494.712000px;}
.y1_c00164{bottom:507.330000px;}
.y31_c00164{bottom:515.797500px;}
.y30_c00164{bottom:538.486500px;}
.y2f_c00164{bottom:559.999500px;}
.y2e_c00164{bottom:650.971500px;}
.y27_c00164{bottom:673.025386px;}
.y28_c00164{bottom:673.656654px;}
.y29_c00164{bottom:674.000431px;}
.y2a_c00164{bottom:674.356657px;}
.y2b_c00164{bottom:674.631418px;}
.y2c_c00164{bottom:674.997105px;}
.y2d_c00164{bottom:675.546937px;}
.y26_c00164{bottom:695.926689px;}
.y25_c00164{bottom:695.926870px;}
.y1d_c00164{bottom:718.731075px;}
.y1e_c00164{bottom:719.335429px;}
.y1f_c00164{bottom:719.797455px;}
.y20_c00164{bottom:720.388770px;}
.y21_c00164{bottom:721.140762px;}
.y22_c00164{bottom:721.721949px;}
.y23_c00164{bottom:722.208417px;}
.y24_c00164{bottom:722.895751px;}
.y14_c00164{bottom:741.412920px;}
.y15_c00164{bottom:742.085874px;}
.y16_c00164{bottom:742.601910px;}
.y17_c00164{bottom:742.887439px;}
.y18_c00164{bottom:743.368428px;}
.y19_c00164{bottom:743.975890px;}
.y1a_c00164{bottom:744.825976px;}
.y1b_c00164{bottom:745.418788px;}
.y1c_c00164{bottom:745.679382px;}
.y13_c00164{bottom:766.667130px;}
.y12_c00164{bottom:766.667682px;}
.ya_c00164{bottom:786.240691px;}
.yb_c00164{bottom:786.880563px;}
.yc_c00164{bottom:787.810726px;}
.yd_c00164{bottom:788.409441px;}
.ye_c00164{bottom:789.339987px;}
.yf_c00164{bottom:790.089075px;}
.y10_c00164{bottom:790.533540px;}
.y11_c00164{bottom:791.510751px;}
.y4_c00164{bottom:810.459000px;}
.y5_c00164{bottom:810.978129px;}
.y6_c00164{bottom:812.570859px;}
.y7_c00164{bottom:812.763690px;}
.y8_c00164{bottom:813.229549px;}
.y9_c00164{bottom:813.600141px;}
.y3_c00164{bottom:909.193500px;}
.y2_c00164{bottom:928.275000px;}
.h2_c00164{height:26.250000px;}
.h3_c00164{height:42.000000px;}
.h14_c00164{height:46.201478px;}
.h13_c00164{height:48.300000px;}
.h15_c00164{height:50.401613px;}
.h12_c00164{height:52.500000px;}
.h16_c00164{height:59.851915px;}
.h11_c00164{height:60.900000px;}
.h10_c00164{height:65.100000px;}
.h9_c00164{height:67.209710px;}
.hd_c00164{height:68.250000px;}
.h6_c00164{height:68.259861px;}
.hb_c00164{height:69.300000px;}
.hf_c00164{height:70.350000px;}
.h8_c00164{height:70.360165px;}
.ha_c00164{height:71.400000px;}
.h5_c00164{height:71.410317px;}
.he_c00164{height:75.600000px;}
.h7_c00164{height:78.761379px;}
.h4_c00164{height:87.150000px;}
.hc_c00164{height:88.200000px;}
.h1_c00164{height:1005.000000px;}
.h0_c00164{height:1005.150000px;}
.w0_c00164{width:705.450000px;}
.w1_c00164{width:705.750000px;}
.x0_c00164{left:0.000000px;}
.x7f_c00164{left:83.424516px;}
.x6c_c00164{left:108.417000px;}
.x87_c00164{left:112.320000px;}
.xd_c00164{left:120.374817px;}
.x1f_c00164{left:121.397945px;}
.x55_c00164{left:124.063500px;}
.x3d_c00164{left:125.920500px;}
.x39_c00164{left:127.017000px;}
.x33_c00164{left:144.450000px;}
.x88_c00164{left:145.530000px;}
.x4a_c00164{left:150.927000px;}
.x56_c00164{left:153.217500px;}
.x2e_c00164{left:156.060000px;}
.xe_c00164{left:158.014317px;}
.x3e_c00164{left:162.916500px;}
.x20_c00164{left:164.538638px;}
.x89_c00164{left:168.480000px;}
.x17_c00164{left:171.562521px;}
.x34_c00164{left:176.040000px;}
.x78_c00164{left:179.280300px;}
.x79_c00164{left:181.980468px;}
.x66_c00164{left:184.410000px;}
.x45_c00164{left:185.607000px;}
.x2f_c00164{left:189.540000px;}
.x59_c00164{left:192.574500px;}
.x80_c00164{left:194.127108px;}
.x4b_c00164{left:195.747000px;}
.x21_c00164{left:197.541821px;}
.x65_c00164{left:199.800000px;}
.x3a_c00164{left:202.315500px;}
.x46_c00164{left:203.962500px;}
.x6a_c00164{left:206.550000px;}
.x60_c00164{left:207.630000px;}
.x18_c00164{left:211.273224px;}
.xf_c00164{left:212.729817px;}
.x15_c00164{left:214.381122px;}
.x4c_c00164{left:218.427000px;}
.x28_c00164{left:225.664341px;}
.x7_c00164{left:226.894500px;}
.x6d_c00164{left:227.931000px;}
.x19_c00164{left:233.188203px;}
.x61_c00164{left:234.900000px;}
.x3f_c00164{left:236.361000px;}
.x35_c00164{left:237.870000px;}
.x22_c00164{left:239.738963px;}
.x5a_c00164{left:241.230000px;}
.x31_c00164{left:242.460000px;}
.x30_c00164{left:245.160000px;}
.x10_c00164{left:247.948317px;}
.x27_c00164{left:250.564826px;}
.x16_c00164{left:253.536444px;}
.x67_c00164{left:254.880000px;}
.x8_c00164{left:257.431500px;}
.x4d_c00164{left:259.737000px;}
.x8a_c00164{left:260.820000px;}
.x40_c00164{left:262.279500px;}
.x29_c00164{left:265.092504px;}
.x68_c00164{left:266.490000px;}
.x1a_c00164{left:270.131202px;}
.x62_c00164{left:277.290000px;}
.x6b_c00164{left:278.640000px;}
.x32_c00164{left:281.070000px;}
.x2a_c00164{left:286.550361px;}
.x63_c00164{left:289.170000px;}
.x51_c00164{left:291.504000px;}
.x23_c00164{left:293.417691px;}
.x36_c00164{left:298.350000px;}
.x69_c00164{left:299.700000px;}
.x11_c00164{left:302.686317px;}
.x57_c00164{left:305.218500px;}
.x4e_c00164{left:306.717000px;}
.x2b_c00164{left:308.828743px;}
.x41_c00164{left:311.682000px;}
.x81_c00164{left:314.551812px;}
.x1b_c00164{left:316.896889px;}
.x52_c00164{left:324.651000px;}
.x2c_c00164{left:325.962024px;}
.x42_c00164{left:328.161000px;}
.x24_c00164{left:334.930808px;}
.x6e_c00164{left:337.020000px;}
.x7a_c00164{left:338.585988px;}
.x64_c00164{left:340.200000px;}
.x47_c00164{left:341.944500px;}
.x5b_c00164{left:344.316000px;}
.x12_c00164{left:346.750317px;}
.x2d_c00164{left:348.796906px;}
.x9_c00164{left:351.121500px;}
.x6f_c00164{left:355.149000px;}
.x53_c00164{left:359.797500px;}
.xa_c00164{left:362.464500px;}
.x48_c00164{left:363.793500px;}
.x43_c00164{left:364.870500px;}
.x25_c00164{left:369.636567px;}
.x13_c00164{left:372.895317px;}
.x37_c00164{left:377.460000px;}
.x82_c00164{left:380.974560px;}
.x1c_c00164{left:382.259326px;}
.x5c_c00164{left:383.421000px;}
.x4f_c00164{left:386.367000px;}
.xb_c00164{left:389.868000px;}
.x54_c00164{left:392.418000px;}
.x50_c00164{left:398.247000px;}
.x49_c00164{left:399.696000px;}
.x70_c00164{left:409.668000px;}
.xc_c00164{left:411.667500px;}
.x38_c00164{left:413.370000px;}
.x26_c00164{left:418.717566px;}
.x58_c00164{left:421.819500px;}
.x44_c00164{left:425.350500px;}
.x1d_c00164{left:427.898438px;}
.x14_c00164{left:430.378317px;}
.x4_c00164{left:434.430000px;}
.x3b_c00164{left:438.321000px;}
.x5d_c00164{left:444.001500px;}
.x1e_c00164{left:447.905289px;}
.x83_c00164{left:449.287428px;}
.x1_c00164{left:454.950000px;}
.x71_c00164{left:456.673500px;}
.x3c_c00164{left:464.793000px;}
.x7b_c00164{left:466.568172px;}
.x5e_c00164{left:469.875000px;}
.x5_c00164{left:485.460000px;}
.x72_c00164{left:488.574000px;}
.x84_c00164{left:492.488688px;}
.x7c_c00164{left:497.078628px;}
.x85_c00164{left:504.369444px;}
.x5f_c00164{left:508.564500px;}
.x7d_c00164{left:522.188736px;}
.x2_c00164{left:533.250000px;}
.x73_c00164{left:542.766000px;}
.x86_c00164{left:552.431016px;}
.x74_c00164{left:556.105500px;}
.x3_c00164{left:572.400000px;}
.x75_c00164{left:574.059000px;}
.x7e_c00164{left:575.650656px;}
.x6_c00164{left:577.260000px;}
.x76_c00164{left:579.532500px;}
.x77_c00164{left:588.682500px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
.fs0_c00164{font-size:23.333333pt;}
.fs1_c00164{font-size:37.333333pt;}
.fs12_c00164{font-size:41.067981pt;}
.fs11_c00164{font-size:42.933333pt;}
.fs13_c00164{font-size:44.801434pt;}
.fs10_c00164{font-size:46.666667pt;}
.fs14_c00164{font-size:53.201702pt;}
.fsf_c00164{font-size:54.133333pt;}
.fse_c00164{font-size:57.866667pt;}
.fs7_c00164{font-size:59.741964pt;}
.fsb_c00164{font-size:60.666667pt;}
.fs4_c00164{font-size:60.675432pt;}
.fs9_c00164{font-size:61.600000pt;}
.fsd_c00164{font-size:62.533333pt;}
.fs6_c00164{font-size:62.542369pt;}
.fs8_c00164{font-size:63.466667pt;}
.fs3_c00164{font-size:63.475837pt;}
.fsc_c00164{font-size:67.200000pt;}
.fs5_c00164{font-size:70.010114pt;}
.fs2_c00164{font-size:77.466667pt;}
.fsa_c00164{font-size:78.400000pt;}
.y0_c00164{bottom:0.000000pt;}
.ya0_c00164{bottom:121.396000pt;}
.y97_c00164{bottom:147.038037pt;}
.y96_c00164{bottom:147.038048pt;}
.y9a_c00164{bottom:147.038293pt;}
.y98_c00164{bottom:147.038347pt;}
.y99_c00164{bottom:147.038507pt;}
.y9b_c00164{bottom:147.038656pt;}
.y95_c00164{bottom:147.038699pt;}
.y94_c00164{bottom:147.038880pt;}
.y9c_c00164{bottom:147.039072pt;}
.y9d_c00164{bottom:147.039595pt;}
.y9e_c00164{bottom:147.040075pt;}
.y9f_c00164{bottom:147.040491pt;}
.y87_c00164{bottom:163.578453pt;}
.y88_c00164{bottom:163.578869pt;}
.y8a_c00164{bottom:163.579232pt;}
.y89_c00164{bottom:163.579403pt;}
.y8b_c00164{bottom:163.579552pt;}
.y8e_c00164{bottom:163.579616pt;}
.y8c_c00164{bottom:163.579637pt;}
.y8d_c00164{bottom:163.579680pt;}
.y8f_c00164{bottom:163.579712pt;}
.y92_c00164{bottom:163.579840pt;}
.y91_c00164{bottom:163.579957pt;}
.y93_c00164{bottom:163.579989pt;}
.y90_c00164{bottom:163.580341pt;}
.y73_c00164{bottom:179.442667pt;}
.y74_c00164{bottom:179.795872pt;}
.y75_c00164{bottom:180.143392pt;}
.y76_c00164{bottom:180.292544pt;}
.y77_c00164{bottom:180.554251pt;}
.y78_c00164{bottom:180.762848pt;}
.y79_c00164{bottom:180.987680pt;}
.y7a_c00164{bottom:181.068288pt;}
.y7b_c00164{bottom:181.197205pt;}
.y7c_c00164{bottom:181.297099pt;}
.y7d_c00164{bottom:181.504288pt;}
.y7e_c00164{bottom:181.584896pt;}
.y7f_c00164{bottom:181.690688pt;}
.y80_c00164{bottom:181.919157pt;}
.y81_c00164{bottom:182.146005pt;}
.y82_c00164{bottom:182.531371pt;}
.y83_c00164{bottom:182.626229pt;}
.y84_c00164{bottom:182.753899pt;}
.y85_c00164{bottom:182.792821pt;}
.y86_c00164{bottom:182.857888pt;}
.y72_c00164{bottom:232.709333pt;}
.y71_c00164{bottom:248.170667pt;}
.y70_c00164{bottom:264.109333pt;}
.y6f_c00164{bottom:279.680000pt;}
.y62_c00164{bottom:315.601333pt;}
.y63_c00164{bottom:315.837333pt;}
.y64_c00164{bottom:316.154667pt;}
.y65_c00164{bottom:316.360000pt;}
.y66_c00164{bottom:316.544000pt;}
.y67_c00164{bottom:317.034667pt;}
.y68_c00164{bottom:317.244000pt;}
.y69_c00164{bottom:317.369333pt;}
.y6a_c00164{bottom:317.682667pt;}
.y6b_c00164{bottom:317.700000pt;}
.y6c_c00164{bottom:318.166667pt;}
.y6d_c00164{bottom:318.373333pt;}
.y6e_c00164{bottom:318.682667pt;}
.y59_c00164{bottom:335.522667pt;}
.y5a_c00164{bottom:335.781333pt;}
.y5b_c00164{bottom:336.297333pt;}
.y5c_c00164{bottom:336.537333pt;}
.y5d_c00164{bottom:337.132000pt;}
.y5e_c00164{bottom:337.330667pt;}
.y5f_c00164{bottom:337.528000pt;}
.y60_c00164{bottom:337.961333pt;}
.y61_c00164{bottom:338.168000pt;}
.y51_c00164{bottom:355.914667pt;}
.y52_c00164{bottom:356.618667pt;}
.y53_c00164{bottom:356.990667pt;}
.y54_c00164{bottom:357.240000pt;}
.y55_c00164{bottom:357.505333pt;}
.y56_c00164{bottom:357.786667pt;}
.y57_c00164{bottom:358.048000pt;}
.y58_c00164{bottom:358.309333pt;}
.y50_c00164{bottom:377.800000pt;}
.y44_c00164{bottom:396.241333pt;}
.y45_c00164{bottom:396.388000pt;}
.y46_c00164{bottom:396.713333pt;}
.y47_c00164{bottom:396.860000pt;}
.y48_c00164{bottom:397.137333pt;}
.y49_c00164{bottom:397.189333pt;}
.y4a_c00164{bottom:397.612000pt;}
.y4b_c00164{bottom:397.718667pt;}
.y4c_c00164{bottom:397.965333pt;}
.y4d_c00164{bottom:398.140000pt;}
.y4e_c00164{bottom:398.426667pt;}
.y4f_c00164{bottom:398.584000pt;}
.y3b_c00164{bottom:416.881333pt;}
.y3c_c00164{bottom:417.144000pt;}
.y3d_c00164{bottom:417.666667pt;}
.y3e_c00164{bottom:417.850667pt;}
.y3f_c00164{bottom:418.201333pt;}
.y40_c00164{bottom:418.318667pt;}
.y41_c00164{bottom:418.580000pt;}
.y42_c00164{bottom:419.010667pt;}
.y43_c00164{bottom:419.177333pt;}
.y32_c00164{bottom:437.041333pt;}
.y33_c00164{bottom:437.390667pt;}
.y34_c00164{bottom:437.642667pt;}
.y35_c00164{bottom:437.962667pt;}
.y36_c00164{bottom:438.324000pt;}
.y37_c00164{bottom:438.794667pt;}
.y38_c00164{bottom:439.013333pt;}
.y39_c00164{bottom:439.532000pt;}
.y3a_c00164{bottom:439.744000pt;}
.y1_c00164{bottom:450.960000pt;}
.y31_c00164{bottom:458.486667pt;}
.y30_c00164{bottom:478.654667pt;}
.y2f_c00164{bottom:497.777333pt;}
.y2e_c00164{bottom:578.641333pt;}
.y27_c00164{bottom:598.244788pt;}
.y28_c00164{bottom:598.805915pt;}
.y29_c00164{bottom:599.111495pt;}
.y2a_c00164{bottom:599.428140pt;}
.y2b_c00164{bottom:599.672372pt;}
.y2c_c00164{bottom:599.997427pt;}
.y2d_c00164{bottom:600.486167pt;}
.y26_c00164{bottom:618.601501pt;}
.y25_c00164{bottom:618.601663pt;}
.y1d_c00164{bottom:638.872067pt;}
.y1e_c00164{bottom:639.409271pt;}
.y1f_c00164{bottom:639.819960pt;}
.y20_c00164{bottom:640.345573pt;}
.y21_c00164{bottom:641.014011pt;}
.y22_c00164{bottom:641.530621pt;}
.y23_c00164{bottom:641.963037pt;}
.y24_c00164{bottom:642.574001pt;}
.y14_c00164{bottom:659.033707pt;}
.y15_c00164{bottom:659.631888pt;}
.y16_c00164{bottom:660.090587pt;}
.y17_c00164{bottom:660.344391pt;}
.y18_c00164{bottom:660.771936pt;}
.y19_c00164{bottom:661.311903pt;}
.y1a_c00164{bottom:662.067535pt;}
.y1b_c00164{bottom:662.594479pt;}
.y1c_c00164{bottom:662.826117pt;}
.y13_c00164{bottom:681.481893pt;}
.y12_c00164{bottom:681.482384pt;}
.ya_c00164{bottom:698.880615pt;}
.yb_c00164{bottom:699.449389pt;}
.yc_c00164{bottom:700.276201pt;}
.yd_c00164{bottom:700.808392pt;}
.ye_c00164{bottom:701.635544pt;}
.yf_c00164{bottom:702.301400pt;}
.y10_c00164{bottom:702.696480pt;}
.y11_c00164{bottom:703.565112pt;}
.y4_c00164{bottom:720.408000pt;}
.y5_c00164{bottom:720.869448pt;}
.y6_c00164{bottom:722.285208pt;}
.y7_c00164{bottom:722.456613pt;}
.y8_c00164{bottom:722.870711pt;}
.y9_c00164{bottom:723.200125pt;}
.y3_c00164{bottom:808.172000pt;}
.y2_c00164{bottom:825.133333pt;}
.h2_c00164{height:23.333333pt;}
.h3_c00164{height:37.333333pt;}
.h14_c00164{height:41.067981pt;}
.h13_c00164{height:42.933333pt;}
.h15_c00164{height:44.801434pt;}
.h12_c00164{height:46.666667pt;}
.h16_c00164{height:53.201702pt;}
.h11_c00164{height:54.133333pt;}
.h10_c00164{height:57.866667pt;}
.h9_c00164{height:59.741964pt;}
.hd_c00164{height:60.666667pt;}
.h6_c00164{height:60.675432pt;}
.hb_c00164{height:61.600000pt;}
.hf_c00164{height:62.533333pt;}
.h8_c00164{height:62.542369pt;}
.ha_c00164{height:63.466667pt;}
.h5_c00164{height:63.475837pt;}
.he_c00164{height:67.200000pt;}
.h7_c00164{height:70.010114pt;}
.h4_c00164{height:77.466667pt;}
.hc_c00164{height:78.400000pt;}
.h1_c00164{height:893.333333pt;}
.h0_c00164{height:893.466667pt;}
.w0_c00164{width:627.066667pt;}
.w1_c00164{width:627.333333pt;}
.x0_c00164{left:0.000000pt;}
.x7f_c00164{left:74.155125pt;}
.x6c_c00164{left:96.370667pt;}
.x87_c00164{left:99.840000pt;}
.xd_c00164{left:106.999837pt;}
.x1f_c00164{left:107.909284pt;}
.x55_c00164{left:110.278667pt;}
.x3d_c00164{left:111.929333pt;}
.x39_c00164{left:112.904000pt;}
.x33_c00164{left:128.400000pt;}
.x88_c00164{left:129.360000pt;}
.x4a_c00164{left:134.157333pt;}
.x56_c00164{left:136.193333pt;}
.x2e_c00164{left:138.720000pt;}
.xe_c00164{left:140.457171pt;}
.x3e_c00164{left:144.814667pt;}
.x20_c00164{left:146.256567pt;}
.x89_c00164{left:149.760000pt;}
.x17_c00164{left:152.500019pt;}
.x34_c00164{left:156.480000pt;}
.x78_c00164{left:159.360267pt;}
.x79_c00164{left:161.760416pt;}
.x66_c00164{left:163.920000pt;}
.x45_c00164{left:164.984000pt;}
.x2f_c00164{left:168.480000pt;}
.x59_c00164{left:171.177333pt;}
.x80_c00164{left:172.557429pt;}
.x4b_c00164{left:173.997333pt;}
.x21_c00164{left:175.592729pt;}
.x65_c00164{left:177.600000pt;}
.x3a_c00164{left:179.836000pt;}
.x46_c00164{left:181.300000pt;}
.x6a_c00164{left:183.600000pt;}
.x60_c00164{left:184.560000pt;}
.x18_c00164{left:187.798421pt;}
.xf_c00164{left:189.093171pt;}
.x15_c00164{left:190.560997pt;}
.x4c_c00164{left:194.157333pt;}
.x28_c00164{left:200.590525pt;}
.x7_c00164{left:201.684000pt;}
.x6d_c00164{left:202.605333pt;}
.x19_c00164{left:207.278403pt;}
.x61_c00164{left:208.800000pt;}
.x3f_c00164{left:210.098667pt;}
.x35_c00164{left:211.440000pt;}
.x22_c00164{left:213.101300pt;}
.x5a_c00164{left:214.426667pt;}
.x31_c00164{left:215.520000pt;}
.x30_c00164{left:217.920000pt;}
.x10_c00164{left:220.398504pt;}
.x27_c00164{left:222.724289pt;}
.x16_c00164{left:225.365728pt;}
.x67_c00164{left:226.560000pt;}
.x8_c00164{left:228.828000pt;}
.x4d_c00164{left:230.877333pt;}
.x8a_c00164{left:231.840000pt;}
.x40_c00164{left:233.137333pt;}
.x29_c00164{left:235.637781pt;}
.x68_c00164{left:236.880000pt;}
.x1a_c00164{left:240.116624pt;}
.x62_c00164{left:246.480000pt;}
.x6b_c00164{left:247.680000pt;}
.x32_c00164{left:249.840000pt;}
.x2a_c00164{left:254.711432pt;}
.x63_c00164{left:257.040000pt;}
.x51_c00164{left:259.114667pt;}
.x23_c00164{left:260.815725pt;}
.x36_c00164{left:265.200000pt;}
.x69_c00164{left:266.400000pt;}
.x11_c00164{left:269.054504pt;}
.x57_c00164{left:271.305333pt;}
.x4e_c00164{left:272.637333pt;}
.x2b_c00164{left:274.514439pt;}
.x41_c00164{left:277.050667pt;}
.x81_c00164{left:279.601611pt;}
.x1b_c00164{left:281.686124pt;}
.x52_c00164{left:288.578667pt;}
.x2c_c00164{left:289.744021pt;}
.x42_c00164{left:291.698667pt;}
.x24_c00164{left:297.716273pt;}
.x6e_c00164{left:299.573333pt;}
.x7a_c00164{left:300.965323pt;}
.x64_c00164{left:302.400000pt;}
.x47_c00164{left:303.950667pt;}
.x5b_c00164{left:306.058667pt;}
.x12_c00164{left:308.222504pt;}
.x2d_c00164{left:310.041695pt;}
.x9_c00164{left:312.108000pt;}
.x6f_c00164{left:315.688000pt;}
.x53_c00164{left:319.820000pt;}
.xa_c00164{left:322.190667pt;}
.x48_c00164{left:323.372000pt;}
.x43_c00164{left:324.329333pt;}
.x25_c00164{left:328.565837pt;}
.x13_c00164{left:331.462504pt;}
.x37_c00164{left:335.520000pt;}
.x82_c00164{left:338.644053pt;}
.x1c_c00164{left:339.786068pt;}
.x5c_c00164{left:340.818667pt;}
.x4f_c00164{left:343.437333pt;}
.xb_c00164{left:346.549333pt;}
.x54_c00164{left:348.816000pt;}
.x50_c00164{left:353.997333pt;}
.x49_c00164{left:355.285333pt;}
.x70_c00164{left:364.149333pt;}
.xc_c00164{left:365.926667pt;}
.x38_c00164{left:367.440000pt;}
.x26_c00164{left:372.193392pt;}
.x58_c00164{left:374.950667pt;}
.x44_c00164{left:378.089333pt;}
.x1d_c00164{left:380.354167pt;}
.x14_c00164{left:382.558504pt;}
.x4_c00164{left:386.160000pt;}
.x3b_c00164{left:389.618667pt;}
.x5d_c00164{left:394.668000pt;}
.x1e_c00164{left:398.138035pt;}
.x83_c00164{left:399.366603pt;}
.x1_c00164{left:404.400000pt;}
.x71_c00164{left:405.932000pt;}
.x3c_c00164{left:413.149333pt;}
.x7b_c00164{left:414.727264pt;}
.x5e_c00164{left:417.666667pt;}
.x5_c00164{left:431.520000pt;}
.x72_c00164{left:434.288000pt;}
.x84_c00164{left:437.767723pt;}
.x7c_c00164{left:441.847669pt;}
.x85_c00164{left:448.328395pt;}
.x5f_c00164{left:452.057333pt;}
.x7d_c00164{left:464.167765pt;}
.x2_c00164{left:474.000000pt;}
.x73_c00164{left:482.458667pt;}
.x86_c00164{left:491.049792pt;}
.x74_c00164{left:494.316000pt;}
.x3_c00164{left:508.800000pt;}
.x75_c00164{left:510.274667pt;}
.x7e_c00164{left:511.689472pt;}
.x6_c00164{left:513.120000pt;}
.x76_c00164{left:515.140000pt;}
.x77_c00164{left:523.273333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m9a_c00165{transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.014844,0.000178,-0.003000,0.249982,0,0);}
.m34_c00165{transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);}
.mcf_c00165{transform:matrix(0.044507,0.000534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.044507,0.000534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.044507,0.000534,-0.003000,0.249982,0,0);}
.m56_c00165{transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104135,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);}
.md6_c00165{transform:matrix(0.147009,0.001764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147009,0.001764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147009,0.001764,-0.003000,0.249982,0,0);}
.md2_c00165{transform:matrix(0.151089,0.001813,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151089,0.001813,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151089,0.001813,-0.003000,0.249982,0,0);}
.m3b_c00165{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);}
.mbb_c00165{transform:matrix(0.159119,0.001909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159119,0.001909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159119,0.001909,-0.003000,0.249982,0,0);}
.m71_c00165{transform:matrix(0.159345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159345,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{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);}
.m2f_c00165{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);}
.m40_c00165{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);}
.m6c_c00165{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.167518,0.002010,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167518,0.002010,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167518,0.002010,-0.003000,0.249982,0,0);}
.mbe_c00165{transform:matrix(0.167588,0.002011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167588,0.002011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167588,0.002011,-0.003000,0.249982,0,0);}
.m57_c00165{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);}
.m62_c00165{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);}
.m46_c00165{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);}
.m4a_c00165{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);}
.m2c_c00165{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);}
.m9_c00165{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);}
.mf5_c00165{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);}
.m65_c00165{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);}
.mfd_c00165{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);}
.m17_c00165{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);}
.m9f_c00165{transform:matrix(0.171748,0.002061,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171748,0.002061,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171748,0.002061,-0.003000,0.249982,0,0);}
.m8d_c00165{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);}
.mdb_c00165{transform:matrix(0.173013,0.002076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173013,0.002076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173013,0.002076,-0.003000,0.249982,0,0);}
.m72_c00165{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);}
.m2e_c00165{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);}
.m1d_c00165{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);}
.me_c00165{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);}
.m77_c00165{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);}
.m108_c00165{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);}
.m70_c00165{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);}
.m67_c00165{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);}
.m2d_c00165{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);}
.m10a_c00165{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);}
.mbd_c00165{transform:matrix(0.178672,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178672,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178672,0.002144,-0.003000,0.249982,0,0);}
.m43_c00165{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);}
.mac_c00165{transform:matrix(0.179847,0.002158,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179847,0.002158,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179847,0.002158,-0.003000,0.249982,0,0);}
.m10b_c00165{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);}
.mb1_c00165{transform:matrix(0.180767,0.002169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180767,0.002169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180767,0.002169,-0.003000,0.249982,0,0);}
.m2b_c00165{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_c00165{transform:matrix(0.181207,0.002174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181207,0.002174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181207,0.002174,-0.003000,0.249982,0,0);}
.m42_c00165{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);}
.mbc_c00165{transform:matrix(0.182282,0.002187,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182282,0.002187,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182282,0.002187,-0.003000,0.249982,0,0);}
.m68_c00165{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);}
.m45_c00165{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);}
.m6e_c00165{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_c00165{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);}
.m94_c00165{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);}
.mfb_c00165{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);}
.m6a_c00165{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);}
.m60_c00165{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);}
.m1c_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);}
.m4c_c00165{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{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);}
.m18_c00165{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);}
.m102_c00165{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);}
.m2_c00165{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{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);}
.m44_c00165{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);}
.m31_c00165{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);}
.md7_c00165{transform:matrix(0.188956,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188956,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188956,0.002267,-0.003000,0.249982,0,0);}
.ma5_c00165{transform:matrix(0.189786,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189786,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189786,0.002277,-0.003000,0.249982,0,0);}
.mff_c00165{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);}
.m6f_c00165{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);}
.md4_c00165{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);}
.m8c_c00165{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);}
.md9_c00165{transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);}
.m5c_c00165{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);}
.m25_c00165{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);}
.ma7_c00165{transform:matrix(0.191776,0.002301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191776,0.002301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191776,0.002301,-0.003000,0.249982,0,0);}
.m104_c00165{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);}
.m7b_c00165{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);}
.m4b_c00165{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);}
.mab_c00165{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);}
.m3c_c00165{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);}
.m16_c00165{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{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);}
.mad_c00165{transform:matrix(0.194101,0.002329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194101,0.002329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194101,0.002329,-0.003000,0.249982,0,0);}
.m93_c00165{transform:matrix(0.194156,0.002330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194156,0.002330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194156,0.002330,-0.003000,0.249982,0,0);}
.me8_c00165{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);}
.mb0_c00165{transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);}
.m75_c00165{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);}
.m3_c00165{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);}
.maf_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);}
.m52_c00165{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);}
.m10_c00165{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);}
.md0_c00165{transform:matrix(0.196241,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196241,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196241,0.002355,-0.003000,0.249982,0,0);}
.m15_c00165{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);}
.mc1_c00165{transform:matrix(0.198011,0.002376,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198011,0.002376,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198011,0.002376,-0.003000,0.249982,0,0);}
.mb6_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);}
.ma3_c00165{transform:matrix(0.198211,0.002379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198211,0.002379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198211,0.002379,-0.003000,0.249982,0,0);}
.m8_c00165{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);}
.m97_c00165{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);}
.m76_c00165{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);}
.mb_c00165{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);}
.m8f_c00165{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);}
.md3_c00165{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);}
.ma4_c00165{transform:matrix(0.199816,0.002398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199816,0.002398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199816,0.002398,-0.003000,0.249982,0,0);}
.m24_c00165{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);}
.m0_c00165{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);}
.mf4_c00165{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);}
.m50_c00165{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);}
.m9c_c00165{transform:matrix(0.201870,0.002422,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201870,0.002422,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201870,0.002422,-0.003000,0.249982,0,0);}
.mc3_c00165{transform:matrix(0.202130,0.002426,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202130,0.002426,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202130,0.002426,-0.003000,0.249982,0,0);}
.mce_c00165{transform:matrix(0.202855,0.002434,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202855,0.002434,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202855,0.002434,-0.003000,0.249982,0,0);}
.md1_c00165{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);}
.med_c00165{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);}
.mc_c00165{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);}
.mef_c00165{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);}
.m1b_c00165{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);}
.m29_c00165{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);}
.m37_c00165{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);}
.ma8_c00165{transform:matrix(0.205580,0.002467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205580,0.002467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205580,0.002467,-0.003000,0.249982,0,0);}
.m2a_c00165{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);}
.maa_c00165{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);}
.mf7_c00165{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);}
.m98_c00165{transform:matrix(0.207670,0.002492,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207670,0.002492,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207670,0.002492,-0.003000,0.249982,0,0);}
.mfa_c00165{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);}
.m5b_c00165{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);}
.mf8_c00165{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);}
.md5_c00165{transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208955,0.002507,-0.003000,0.249982,0,0);}
.mb3_c00165{transform:matrix(0.209670,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209670,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209670,0.002516,-0.003000,0.249982,0,0);}
.m3f_c00165{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);}
.mc0_c00165{transform:matrix(0.210170,0.002522,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210170,0.002522,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210170,0.002522,-0.003000,0.249982,0,0);}
.mba_c00165{transform:matrix(0.210585,0.002527,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210585,0.002527,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210585,0.002527,-0.003000,0.249982,0,0);}
.m8e_c00165{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);}
.m3d_c00165{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);}
.m27_c00165{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);}
.m6b_c00165{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);}
.m1f_c00165{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);}
.m21_c00165{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);}
.m19_c00165{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);}
.md_c00165{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);}
.m4d_c00165{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);}
.m26_c00165{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{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);}
.mdd_c00165{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);}
.mf_c00165{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);}
.ma_c00165{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);}
.mda_c00165{transform:matrix(0.215489,0.002586,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215489,0.002586,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215489,0.002586,-0.003000,0.249982,0,0);}
.m106_c00165{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);}
.m96_c00165{transform:matrix(0.215949,0.002591,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215949,0.002591,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215949,0.002591,-0.003000,0.249982,0,0);}
.mf9_c00165{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);}
.m87_c00165{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.216434,0.002597,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216434,0.002597,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216434,0.002597,-0.003000,0.249982,0,0);}
.mb2_c00165{transform:matrix(0.216499,0.002598,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216499,0.002598,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216499,0.002598,-0.003000,0.249982,0,0);}
.mca_c00165{transform:matrix(0.216539,0.002598,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216539,0.002598,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216539,0.002598,-0.003000,0.249982,0,0);}
.m1a_c00165{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);}
.meb_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);}
.mc4_c00165{transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);}
.m61_c00165{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);}
.mfe_c00165{transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);}
.m10c_c00165{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);}
.m20_c00165{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_c00165{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);}
.m1e_c00165{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);}
.me5_c00165{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);}
.m9e_c00165{transform:matrix(0.218384,0.002621,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218384,0.002621,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218384,0.002621,-0.003000,0.249982,0,0);}
.me7_c00165{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);}
.m23_c00165{transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);}
.m83_c00165{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);}
.m7e_c00165{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);}
.m3a_c00165{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);}
.mf2_c00165{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);}
.m12_c00165{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);}
.m9d_c00165{transform:matrix(0.222834,0.002674,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222834,0.002674,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222834,0.002674,-0.003000,0.249982,0,0);}
.mf3_c00165{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);}
.me2_c00165{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);}
.m101_c00165{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);}
.m54_c00165{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);}
.m100_c00165{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{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);}
.ma0_c00165{transform:matrix(0.226474,0.002718,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226474,0.002718,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226474,0.002718,-0.003000,0.249982,0,0);}
.m64_c00165{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);}
.m107_c00165{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);}
.mf0_c00165{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);}
.mee_c00165{transform:matrix(0.229170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229170,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{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);}
.mcc_c00165{transform:matrix(0.229533,0.002754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229533,0.002754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229533,0.002754,-0.003000,0.249982,0,0);}
.m78_c00165{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);}
.mb9_c00165{transform:matrix(0.230373,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230373,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230373,0.002764,-0.003000,0.249982,0,0);}
.me4_c00165{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);}
.m59_c00165{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);}
.m103_c00165{transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);}
.m109_c00165{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);}
.mec_c00165{transform:matrix(0.232120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232120,0.000000,0.000000,0.250000,0,0);}
.m105_c00165{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);}
.m92_c00165{transform:matrix(0.233363,0.002800,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233363,0.002800,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233363,0.002800,-0.003000,0.249982,0,0);}
.m84_c00165{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{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);}
.m22_c00165{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{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);}
.mb7_c00165{transform:matrix(0.236938,0.002843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236938,0.002843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236938,0.002843,-0.003000,0.249982,0,0);}
.m73_c00165{transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{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);}
.m7d_c00165{transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);}
.me9_c00165{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);}
.m9b_c00165{transform:matrix(0.240748,0.002889,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240748,0.002889,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240748,0.002889,-0.003000,0.249982,0,0);}
.mc7_c00165{transform:matrix(0.240888,0.002891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240888,0.002891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240888,0.002891,-0.003000,0.249982,0,0);}
.m69_c00165{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);}
.m5f_c00165{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.mc2_c00165{transform:matrix(0.244722,0.002937,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244722,0.002937,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244722,0.002937,-0.003000,0.249982,0,0);}
.mc5_c00165{transform:matrix(0.244992,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244992,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244992,0.002940,-0.003000,0.249982,0,0);}
.m79_c00165{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);}
.m99_c00165{transform:matrix(0.246027,0.002952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246027,0.002952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246027,0.002952,-0.003000,0.249982,0,0);}
.m48_c00165{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);}
.mcb_c00165{transform:matrix(0.246432,0.002957,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246432,0.002957,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246432,0.002957,-0.003000,0.249982,0,0);}
.mc8_c00165{transform:matrix(0.247997,0.002976,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247997,0.002976,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247997,0.002976,-0.003000,0.249982,0,0);}
.m35_c00165{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);}
.me1_c00165{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);}
.m7a_c00165{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.mcd_c00165{transform:matrix(0.250347,0.003004,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250347,0.003004,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250347,0.003004,-0.003000,0.249982,0,0);}
.mc6_c00165{transform:matrix(0.252932,0.003035,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252932,0.003035,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252932,0.003035,-0.003000,0.249982,0,0);}
.m49_c00165{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{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);}
.mc9_c00165{transform:matrix(0.257766,0.003093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257766,0.003093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257766,0.003093,-0.003000,0.249982,0,0);}
.m38_c00165{transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);}
.m74_c00165{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);}
.m51_c00165{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);}
.m63_c00165{transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);}
.mf1_c00165{transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);}
.m80_c00165{transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);}
.m47_c00165{transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);}
.mea_c00165{transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274785,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.ma9_c00165{transform:matrix(0.278155,0.003338,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278155,0.003338,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278155,0.003338,-0.003000,0.249982,0,0);}
.m58_c00165{transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);}
.me6_c00165{transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284490,0.000000,0.000000,0.250000,0,0);}
.mb8_c00165{transform:matrix(0.286329,0.003436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286329,0.003436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286329,0.003436,-0.003000,0.249982,0,0);}
.m82_c00165{transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);}
.mfc_c00165{transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);}
.mb5_c00165{transform:matrix(0.294139,0.003530,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294139,0.003530,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294139,0.003530,-0.003000,0.249982,0,0);}
.m4e_c00165{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.mf6_c00165{transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302580,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{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);}
.m5a_c00165{transform:matrix(0.316935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316935,0.000000,0.000000,0.250000,0,0);}
.m90_c00165{transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317330,0.000000,0.000000,0.250000,0,0);}
.m7f_c00165{transform:matrix(0.320915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320915,0.000000,0.000000,0.250000,0,0);}
.mbf_c00165{transform:matrix(0.324887,0.003899,-0.003000,0.249982,0,0);-ms-transform:matrix(0.324887,0.003899,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.324887,0.003899,-0.003000,0.249982,0,0);}
.mb4_c00165{transform:matrix(0.325597,0.003907,-0.003000,0.249982,0,0);-ms-transform:matrix(0.325597,0.003907,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.325597,0.003907,-0.003000,0.249982,0,0);}
.m86_c00165{transform:matrix(0.329460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329460,0.000000,0.000000,0.250000,0,0);}
.mdc_c00165{transform:matrix(0.338906,0.004067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.338906,0.004067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.338906,0.004067,-0.003000,0.249982,0,0);}
.me3_c00165{transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345530,0.000000,0.000000,0.250000,0,0);}
.mae_c00165{transform:matrix(0.345970,0.004152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.345970,0.004152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.345970,0.004152,-0.003000,0.249982,0,0);}
.m39_c00165{transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{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);}
.m41_c00165{transform:matrix(0.369240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369240,0.000000,0.000000,0.250000,0,0);}
.m91_c00165{transform:matrix(0.381190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381190,0.000000,0.000000,0.250000,0,0);}
.mdf_c00165{transform:matrix(0.421850,0.005062,-0.003000,0.249982,0,0);-ms-transform:matrix(0.421850,0.005062,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.421850,0.005062,-0.003000,0.249982,0,0);}
.m8a_c00165{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);}
.md8_c00165{transform:matrix(0.465391,0.005585,-0.003000,0.249982,0,0);-ms-transform:matrix(0.465391,0.005585,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.465391,0.005585,-0.003000,0.249982,0,0);}
.m4f_c00165{transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493070,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.501420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501420,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.520545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520545,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.538465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538465,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.545760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545760,0.000000,0.000000,0.250000,0,0);}
.me0_c00165{transform:matrix(0.586423,0.007037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.586423,0.007037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.586423,0.007037,-0.003000,0.249982,0,0);}
.mde_c00165{transform:matrix(0.672057,0.008065,-0.003000,0.249982,0,0);-ms-transform:matrix(0.672057,0.008065,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.672057,0.008065,-0.003000,0.249982,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;}
.fse_c00165{font-size:46.203326px;}
.fs9_c00165{font-size:47.250000px;}
.fsc_c00165{font-size:47.253402px;}
.fs11_c00165{font-size:49.350000px;}
.fs12_c00165{font-size:51.450000px;}
.fsa_c00165{font-size:51.453704px;}
.fs8_c00165{font-size:52.500000px;}
.fsf_c00165{font-size:52.503780px;}
.fsb_c00165{font-size:53.553855px;}
.fs10_c00165{font-size:55.654007px;}
.fsd_c00165{font-size:58.804233px;}
.fs13_c00165{font-size:60.900000px;}
.fs6_c00165{font-size:64.050000px;}
.fs7_c00165{font-size:66.150000px;}
.fs3_c00165{font-size:68.250000px;}
.fs4_c00165{font-size:69.300000px;}
.fs1_c00165{font-size:70.350000px;}
.fs2_c00165{font-size:71.400000px;}
.fs5_c00165{font-size:73.500000px;}
.fs0_c00165{font-size:99.750000px;}
.y0_c00165{bottom:0.000000px;}
.y77_c00165{bottom:133.515000px;}
.y7d_c00165{bottom:133.515384px;}
.y78_c00165{bottom:133.515498px;}
.y76_c00165{bottom:133.515546px;}
.y75_c00165{bottom:133.515552px;}
.y7b_c00165{bottom:133.515792px;}
.y79_c00165{bottom:133.515876px;}
.y7c_c00165{bottom:133.515966px;}
.y7a_c00165{bottom:133.515996px;}
.y73_c00165{bottom:133.516020px;}
.y74_c00165{bottom:133.516098px;}
.y71_c00165{bottom:152.254044px;}
.y72_c00165{bottom:152.254422px;}
.y70_c00165{bottom:152.254692px;}
.y6e_c00165{bottom:152.254896px;}
.y6d_c00165{bottom:152.254980px;}
.y6f_c00165{bottom:152.255154px;}
.y83_c00165{bottom:157.326000px;}
.y65_c00165{bottom:169.978536px;}
.y66_c00165{bottom:169.978674px;}
.y68_c00165{bottom:169.979226px;}
.y67_c00165{bottom:169.979310px;}
.y6a_c00165{bottom:169.979340px;}
.y69_c00165{bottom:169.979742px;}
.y6b_c00165{bottom:169.980036px;}
.y6c_c00165{bottom:169.980234px;}
.y82_c00165{bottom:176.050500px;}
.y5f_c00165{bottom:187.924944px;}
.y5e_c00165{bottom:187.924968px;}
.y62_c00165{bottom:187.925196px;}
.y63_c00165{bottom:187.925472px;}
.y61_c00165{bottom:187.925658px;}
.y60_c00165{bottom:187.925682px;}
.y64_c00165{bottom:187.925706px;}
.y81_c00165{bottom:196.479000px;}
.y56_c00165{bottom:205.439166px;}
.y57_c00165{bottom:205.439664px;}
.y58_c00165{bottom:205.440024px;}
.y5a_c00165{bottom:205.440618px;}
.y59_c00165{bottom:205.440660px;}
.y5b_c00165{bottom:205.441176px;}
.y5d_c00165{bottom:205.441428px;}
.y5c_c00165{bottom:205.441590px;}
.y80_c00165{bottom:215.467500px;}
.y52_c00165{bottom:223.495830px;}
.y53_c00165{bottom:223.495848px;}
.y55_c00165{bottom:223.495920px;}
.y50_c00165{bottom:223.495974px;}
.y51_c00165{bottom:223.495992px;}
.y54_c00165{bottom:223.496082px;}
.y4f_c00165{bottom:223.496238px;}
.y7f_c00165{bottom:234.876000px;}
.y4d_c00165{bottom:241.394034px;}
.y4c_c00165{bottom:241.394376px;}
.y4e_c00165{bottom:241.394412px;}
.y4b_c00165{bottom:241.394598px;}
.y48_c00165{bottom:241.395228px;}
.y4a_c00165{bottom:241.395240px;}
.y47_c00165{bottom:241.395570px;}
.y49_c00165{bottom:241.395846px;}
.y7e_c00165{bottom:254.389500px;}
.y41_c00165{bottom:258.941664px;}
.y42_c00165{bottom:258.942042px;}
.y43_c00165{bottom:258.942300px;}
.y45_c00165{bottom:258.942312px;}
.y40_c00165{bottom:258.942348px;}
.y46_c00165{bottom:258.942390px;}
.y44_c00165{bottom:258.942816px;}
.y3f_c00165{bottom:272.874930px;}
.y3e_c00165{bottom:273.166620px;}
.y3d_c00165{bottom:273.386850px;}
.y3c_c00165{bottom:273.763014px;}
.y3b_c00165{bottom:274.009074px;}
.y3a_c00165{bottom:274.229376px;}
.y39_c00165{bottom:274.793208px;}
.y38_c00165{bottom:275.016372px;}
.y37_c00165{bottom:275.269506px;}
.y36_c00165{bottom:275.447418px;}
.y35_c00165{bottom:275.719902px;}
.y34_c00165{bottom:276.244818px;}
.y33_c00165{bottom:276.461952px;}
.y32_c00165{bottom:276.834570px;}
.y31_c00165{bottom:277.012284px;}
.y30_c00165{bottom:277.508472px;}
.y2f_c00165{bottom:277.893996px;}
.y2e_c00165{bottom:278.101500px;}
.y2d_c00165{bottom:322.279500px;}
.y2c_c00165{bottom:340.207500px;}
.y2b_c00165{bottom:366.630000px;}
.y2a_c00165{bottom:388.665000px;}
.y29_c00165{bottom:411.327000px;}
.y28_c00165{bottom:433.167000px;}
.y27_c00165{bottom:433.612500px;}
.y26_c00165{bottom:434.245500px;}
.y25_c00165{bottom:434.824500px;}
.y24_c00165{bottom:435.409500px;}
.y23_c00165{bottom:435.639000px;}
.y22_c00165{bottom:436.366500px;}
.y21_c00165{bottom:436.860000px;}
.y20_c00165{bottom:456.391500px;}
.y1f_c00165{bottom:456.879000px;}
.y1e_c00165{bottom:457.570500px;}
.y1d_c00165{bottom:457.861500px;}
.y1c_c00165{bottom:458.121000px;}
.y1b_c00165{bottom:458.547000px;}
.y1a_c00165{bottom:458.859000px;}
.y19_c00165{bottom:459.607500px;}
.y18_c00165{bottom:460.128000px;}
.y17_c00165{bottom:460.351500px;}
.y16_c00165{bottom:479.322000px;}
.y15_c00165{bottom:479.937000px;}
.y14_c00165{bottom:480.012000px;}
.y13_c00165{bottom:480.423000px;}
.y12_c00165{bottom:480.784500px;}
.y11_c00165{bottom:481.395000px;}
.y10_c00165{bottom:481.866000px;}
.yf_c00165{bottom:482.265000px;}
.ye_c00165{bottom:482.761500px;}
.yd_c00165{bottom:503.928000px;}
.yc_c00165{bottom:527.038500px;}
.yb_c00165{bottom:549.861000px;}
.ya_c00165{bottom:573.088500px;}
.y9_c00165{bottom:595.197000px;}
.y8_c00165{bottom:617.745000px;}
.y7_c00165{bottom:641.043000px;}
.y6_c00165{bottom:663.864000px;}
.y5_c00165{bottom:687.184500px;}
.y4_c00165{bottom:709.476000px;}
.y3_c00165{bottom:732.471000px;}
.y2_c00165{bottom:768.751500px;}
.y1_c00165{bottom:801.190500px;}
.h10_c00165{height:46.203326px;}
.hb_c00165{height:47.250000px;}
.he_c00165{height:47.253402px;}
.h13_c00165{height:49.350000px;}
.h14_c00165{height:51.450000px;}
.hc_c00165{height:51.453704px;}
.ha_c00165{height:52.500000px;}
.h11_c00165{height:52.503780px;}
.hd_c00165{height:53.553855px;}
.h12_c00165{height:55.654007px;}
.hf_c00165{height:58.804233px;}
.h15_c00165{height:60.900000px;}
.h8_c00165{height:64.050000px;}
.h9_c00165{height:66.150000px;}
.h5_c00165{height:68.250000px;}
.h6_c00165{height:69.300000px;}
.h3_c00165{height:70.350000px;}
.h4_c00165{height:71.400000px;}
.h7_c00165{height:73.500000px;}
.h2_c00165{height:99.750000px;}
.h0_c00165{height:1008.450000px;}
.h1_c00165{height:1008.750000px;}
.w0_c00165{width:676.890000px;}
.w1_c00165{width:677.250000px;}
.x0_c00165{left:0.000000px;}
.x80_c00165{left:128.518878px;}
.x6f_c00165{left:131.756430px;}
.x7c_c00165{left:132.838140px;}
.x66_c00165{left:143.517000px;}
.x83_c00165{left:149.581086px;}
.x7d_c00165{left:152.549484px;}
.x87_c00165{left:154.442298px;}
.x67_c00165{left:160.809000px;}
.x74_c00165{left:162.810366px;}
.xe_c00165{left:166.590000px;}
.x1b_c00165{left:167.670000px;}
.x85_c00165{left:170.102886px;}
.x7_c00165{left:174.420000px;}
.x79_c00165{left:178.202322px;}
.x70_c00165{left:179.820342px;}
.x48_c00165{left:183.381000px;}
.x75_c00165{left:185.762178px;}
.x18_c00165{left:192.780000px;}
.x1c_c00165{left:196.560000px;}
.x33_c00165{left:199.260000px;}
.x28_c00165{left:201.150000px;}
.x8_c00165{left:204.390000px;}
.x71_c00165{left:209.793162px;}
.x4f_c00165{left:211.548000px;}
.xf_c00165{left:218.430000px;}
.x40_c00165{left:222.142500px;}
.x29_c00165{left:223.830000px;}
.x39_c00165{left:224.910000px;}
.x34_c00165{left:227.340000px;}
.x3c_c00165{left:231.930000px;}
.x5b_c00165{left:233.280000px;}
.x60_c00165{left:235.170000px;}
.x63_c00165{left:236.520000px;}
.x2f_c00165{left:239.220000px;}
.x7a_c00165{left:240.846840px;}
.x15_c00165{left:241.920000px;}
.x7e_c00165{left:245.436876px;}
.x81_c00165{left:246.516870px;}
.x52_c00165{left:248.131500px;}
.x4_c00165{left:250.560000px;}
.x35_c00165{left:252.720000px;}
.x1_c00165{left:259.740000px;}
.x64_c00165{left:261.090000px;}
.x1d_c00165{left:262.440000px;}
.x76_c00165{left:264.877554px;}
.x41_c00165{left:266.419500px;}
.x9_c00165{left:270.540000px;}
.x58_c00165{left:272.700000px;}
.x22_c00165{left:275.130000px;}
.x10_c00165{left:277.020000px;}
.x5c_c00165{left:279.180000px;}
.x49_c00165{left:280.971000px;}
.x72_c00165{left:283.239246px;}
.x5_c00165{left:285.390000px;}
.x53_c00165{left:288.631500px;}
.x2a_c00165{left:291.330000px;}
.x2_c00165{left:293.490000px;}
.x50_c00165{left:298.531500px;}
.x77_c00165{left:302.679990px;}
.x4a_c00165{left:304.920000px;}
.x16_c00165{left:306.720000px;}
.x36_c00165{left:308.610000px;}
.x3a_c00165{left:313.200000px;}
.x7b_c00165{left:315.101532px;}
.x23_c00165{left:316.710000px;}
.x42_c00165{left:318.715500px;}
.x86_c00165{left:322.664346px;}
.x2b_c00165{left:326.700000px;}
.xa_c00165{left:328.590000px;}
.x65_c00165{left:329.670000px;}
.x73_c00165{left:331.031622px;}
.x78_c00165{left:332.652810px;}
.x24_c00165{left:336.690000px;}
.x7f_c00165{left:338.054214px;}
.x37_c00165{left:341.280000px;}
.x1e_c00165{left:346.680000px;}
.x30_c00165{left:348.300000px;}
.x11_c00165{left:351.000000px;}
.x17_c00165{left:353.430000px;}
.xb_c00165{left:354.780000px;}
.x4b_c00165{left:357.589500px;}
.x5d_c00165{left:360.450000px;}
.x84_c00165{left:362.356740px;}
.x2c_c00165{left:363.960000px;}
.x82_c00165{left:365.866560px;}
.x1f_c00165{left:367.470000px;}
.x59_c00165{left:369.630000px;}
.x9b_c00165{left:371.250000px;}
.x3b_c00165{left:372.870000px;}
.x54_c00165{left:376.111500px;}
.x19_c00165{left:377.190000px;}
.x4c_c00165{left:379.978500px;}
.x25_c00165{left:382.050000px;}
.x43_c00165{left:386.509500px;}
.x2d_c00165{left:390.690000px;}
.x5a_c00165{left:393.930000px;}
.xc_c00165{left:396.090000px;}
.x55_c00165{left:397.441500px;}
.x68_c00165{left:400.611000px;}
.x3d_c00165{left:402.570000px;}
.x38_c00165{left:404.460000px;}
.x20_c00165{left:408.510000px;}
.x88_c00165{left:409.879572px;}
.x26_c00165{left:412.020000px;}
.x96_c00165{left:413.910000px;}
.x61_c00165{left:417.150000px;}
.x5e_c00165{left:418.500000px;}
.x8f_c00165{left:420.390000px;}
.xd_c00165{left:421.470000px;}
.x31_c00165{left:422.550000px;}
.x8d_c00165{left:424.170000px;}
.x12_c00165{left:425.250000px;}
.x44_c00165{left:426.706500px;}
.x1a_c00165{left:429.300000px;}
.x3_c00165{left:432.000000px;}
.x4d_c00165{left:433.141500px;}
.x93_c00165{left:435.240000px;}
.x27_c00165{left:437.130000px;}
.x62_c00165{left:441.450000px;}
.x21_c00165{left:443.610000px;}
.x90_c00165{left:444.960000px;}
.x56_c00165{left:447.121500px;}
.x9c_c00165{left:449.820000px;}
.x6_c00165{left:451.710000px;}
.x97_c00165{left:457.920000px;}
.x13_c00165{left:459.270000px;}
.x3e_c00165{left:462.510000px;}
.x32_c00165{left:464.400000px;}
.x69_c00165{left:466.194000px;}
.x57_c00165{left:468.181500px;}
.x4e_c00165{left:470.689500px;}
.x45_c00165{left:472.318500px;}
.x2e_c00165{left:474.930000px;}
.x3f_c00165{left:476.550000px;}
.x89_c00165{left:477.923364px;}
.x46_c00165{left:480.702000px;}
.x6a_c00165{left:484.552500px;}
.x8a_c00165{left:489.240000px;}
.x5f_c00165{left:492.210000px;}
.x91_c00165{left:494.100000px;}
.x51_c00165{left:502.321500px;}
.x6b_c00165{left:505.057500px;}
.x94_c00165{left:509.490000px;}
.x14_c00165{left:518.940000px;}
.x9d_c00165{left:525.150000px;}
.x8b_c00165{left:528.660000px;}
.x6c_c00165{left:536.404500px;}
.x98_c00165{left:540.000000px;}
.x8c_c00165{left:545.940000px;}
.x47_c00165{left:549.033000px;}
.x6d_c00165{left:554.757000px;}
.x99_c00165{left:559.170000px;}
.x9a_c00165{left:575.100000px;}
.x92_c00165{left:577.800000px;}
.x6e_c00165{left:579.064500px;}
.x8e_c00165{left:584.010000px;}
.x95_c00165{left:585.900000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fse_c00165{font-size:41.069623pt;}
.fs9_c00165{font-size:42.000000pt;}
.fsc_c00165{font-size:42.003024pt;}
.fs11_c00165{font-size:43.866667pt;}
.fs12_c00165{font-size:45.733333pt;}
.fsa_c00165{font-size:45.736626pt;}
.fs8_c00165{font-size:46.666667pt;}
.fsf_c00165{font-size:46.670027pt;}
.fsb_c00165{font-size:47.603427pt;}
.fs10_c00165{font-size:49.470228pt;}
.fsd_c00165{font-size:52.270430pt;}
.fs13_c00165{font-size:54.133333pt;}
.fs6_c00165{font-size:56.933333pt;}
.fs7_c00165{font-size:58.800000pt;}
.fs3_c00165{font-size:60.666667pt;}
.fs4_c00165{font-size:61.600000pt;}
.fs1_c00165{font-size:62.533333pt;}
.fs2_c00165{font-size:63.466667pt;}
.fs5_c00165{font-size:65.333333pt;}
.fs0_c00165{font-size:88.666667pt;}
.y0_c00165{bottom:0.000000pt;}
.y77_c00165{bottom:118.680000pt;}
.y7d_c00165{bottom:118.680341pt;}
.y78_c00165{bottom:118.680443pt;}
.y76_c00165{bottom:118.680485pt;}
.y75_c00165{bottom:118.680491pt;}
.y7b_c00165{bottom:118.680704pt;}
.y79_c00165{bottom:118.680779pt;}
.y7c_c00165{bottom:118.680859pt;}
.y7a_c00165{bottom:118.680885pt;}
.y73_c00165{bottom:118.680907pt;}
.y74_c00165{bottom:118.680976pt;}
.y71_c00165{bottom:135.336928pt;}
.y72_c00165{bottom:135.337264pt;}
.y70_c00165{bottom:135.337504pt;}
.y6e_c00165{bottom:135.337685pt;}
.y6d_c00165{bottom:135.337760pt;}
.y6f_c00165{bottom:135.337915pt;}
.y83_c00165{bottom:139.845333pt;}
.y65_c00165{bottom:151.092032pt;}
.y66_c00165{bottom:151.092155pt;}
.y68_c00165{bottom:151.092645pt;}
.y67_c00165{bottom:151.092720pt;}
.y6a_c00165{bottom:151.092747pt;}
.y69_c00165{bottom:151.093104pt;}
.y6b_c00165{bottom:151.093365pt;}
.y6c_c00165{bottom:151.093541pt;}
.y82_c00165{bottom:156.489333pt;}
.y5f_c00165{bottom:167.044395pt;}
.y5e_c00165{bottom:167.044416pt;}
.y62_c00165{bottom:167.044619pt;}
.y63_c00165{bottom:167.044864pt;}
.y61_c00165{bottom:167.045029pt;}
.y60_c00165{bottom:167.045051pt;}
.y64_c00165{bottom:167.045072pt;}
.y81_c00165{bottom:174.648000pt;}
.y56_c00165{bottom:182.612592pt;}
.y57_c00165{bottom:182.613035pt;}
.y58_c00165{bottom:182.613355pt;}
.y5a_c00165{bottom:182.613883pt;}
.y59_c00165{bottom:182.613920pt;}
.y5b_c00165{bottom:182.614379pt;}
.y5d_c00165{bottom:182.614603pt;}
.y5c_c00165{bottom:182.614747pt;}
.y80_c00165{bottom:191.526667pt;}
.y52_c00165{bottom:198.662960pt;}
.y53_c00165{bottom:198.662976pt;}
.y55_c00165{bottom:198.663040pt;}
.y50_c00165{bottom:198.663088pt;}
.y51_c00165{bottom:198.663104pt;}
.y54_c00165{bottom:198.663184pt;}
.y4f_c00165{bottom:198.663323pt;}
.y7f_c00165{bottom:208.778667pt;}
.y4d_c00165{bottom:214.572475pt;}
.y4c_c00165{bottom:214.572779pt;}
.y4e_c00165{bottom:214.572811pt;}
.y4b_c00165{bottom:214.572976pt;}
.y48_c00165{bottom:214.573536pt;}
.y4a_c00165{bottom:214.573547pt;}
.y47_c00165{bottom:214.573840pt;}
.y49_c00165{bottom:214.574085pt;}
.y7e_c00165{bottom:226.124000pt;}
.y41_c00165{bottom:230.170368pt;}
.y42_c00165{bottom:230.170704pt;}
.y43_c00165{bottom:230.170933pt;}
.y45_c00165{bottom:230.170944pt;}
.y40_c00165{bottom:230.170976pt;}
.y46_c00165{bottom:230.171013pt;}
.y44_c00165{bottom:230.171392pt;}
.y3f_c00165{bottom:242.555493pt;}
.y3e_c00165{bottom:242.814773pt;}
.y3d_c00165{bottom:243.010533pt;}
.y3c_c00165{bottom:243.344901pt;}
.y3b_c00165{bottom:243.563621pt;}
.y3a_c00165{bottom:243.759445pt;}
.y39_c00165{bottom:244.260629pt;}
.y38_c00165{bottom:244.458997pt;}
.y37_c00165{bottom:244.684005pt;}
.y36_c00165{bottom:244.842149pt;}
.y35_c00165{bottom:245.084357pt;}
.y34_c00165{bottom:245.550949pt;}
.y33_c00165{bottom:245.743957pt;}
.y32_c00165{bottom:246.075173pt;}
.y31_c00165{bottom:246.233141pt;}
.y30_c00165{bottom:246.674197pt;}
.y2f_c00165{bottom:247.016885pt;}
.y2e_c00165{bottom:247.201333pt;}
.y2d_c00165{bottom:286.470667pt;}
.y2c_c00165{bottom:302.406667pt;}
.y2b_c00165{bottom:325.893333pt;}
.y2a_c00165{bottom:345.480000pt;}
.y29_c00165{bottom:365.624000pt;}
.y28_c00165{bottom:385.037333pt;}
.y27_c00165{bottom:385.433333pt;}
.y26_c00165{bottom:385.996000pt;}
.y25_c00165{bottom:386.510667pt;}
.y24_c00165{bottom:387.030667pt;}
.y23_c00165{bottom:387.234667pt;}
.y22_c00165{bottom:387.881333pt;}
.y21_c00165{bottom:388.320000pt;}
.y20_c00165{bottom:405.681333pt;}
.y1f_c00165{bottom:406.114667pt;}
.y1e_c00165{bottom:406.729333pt;}
.y1d_c00165{bottom:406.988000pt;}
.y1c_c00165{bottom:407.218667pt;}
.y1b_c00165{bottom:407.597333pt;}
.y1a_c00165{bottom:407.874667pt;}
.y19_c00165{bottom:408.540000pt;}
.y18_c00165{bottom:409.002667pt;}
.y17_c00165{bottom:409.201333pt;}
.y16_c00165{bottom:426.064000pt;}
.y15_c00165{bottom:426.610667pt;}
.y14_c00165{bottom:426.677333pt;}
.y13_c00165{bottom:427.042667pt;}
.y12_c00165{bottom:427.364000pt;}
.y11_c00165{bottom:427.906667pt;}
.y10_c00165{bottom:428.325333pt;}
.yf_c00165{bottom:428.680000pt;}
.ye_c00165{bottom:429.121333pt;}
.yd_c00165{bottom:447.936000pt;}
.yc_c00165{bottom:468.478667pt;}
.yb_c00165{bottom:488.765333pt;}
.ya_c00165{bottom:509.412000pt;}
.y9_c00165{bottom:529.064000pt;}
.y8_c00165{bottom:549.106667pt;}
.y7_c00165{bottom:569.816000pt;}
.y6_c00165{bottom:590.101333pt;}
.y5_c00165{bottom:610.830667pt;}
.y4_c00165{bottom:630.645333pt;}
.y3_c00165{bottom:651.085333pt;}
.y2_c00165{bottom:683.334667pt;}
.y1_c00165{bottom:712.169333pt;}
.h10_c00165{height:41.069623pt;}
.hb_c00165{height:42.000000pt;}
.he_c00165{height:42.003024pt;}
.h13_c00165{height:43.866667pt;}
.h14_c00165{height:45.733333pt;}
.hc_c00165{height:45.736626pt;}
.ha_c00165{height:46.666667pt;}
.h11_c00165{height:46.670027pt;}
.hd_c00165{height:47.603427pt;}
.h12_c00165{height:49.470228pt;}
.hf_c00165{height:52.270430pt;}
.h15_c00165{height:54.133333pt;}
.h8_c00165{height:56.933333pt;}
.h9_c00165{height:58.800000pt;}
.h5_c00165{height:60.666667pt;}
.h6_c00165{height:61.600000pt;}
.h3_c00165{height:62.533333pt;}
.h4_c00165{height:63.466667pt;}
.h7_c00165{height:65.333333pt;}
.h2_c00165{height:88.666667pt;}
.h0_c00165{height:896.400000pt;}
.h1_c00165{height:896.666667pt;}
.w0_c00165{width:601.680000pt;}
.w1_c00165{width:602.000000pt;}
.x0_c00165{left:0.000000pt;}
.x80_c00165{left:114.239003pt;}
.x6f_c00165{left:117.116827pt;}
.x7c_c00165{left:118.078347pt;}
.x66_c00165{left:127.570667pt;}
.x83_c00165{left:132.960965pt;}
.x7d_c00165{left:135.599541pt;}
.x87_c00165{left:137.282043pt;}
.x67_c00165{left:142.941333pt;}
.x74_c00165{left:144.720325pt;}
.xe_c00165{left:148.080000pt;}
.x1b_c00165{left:149.040000pt;}
.x85_c00165{left:151.202565pt;}
.x7_c00165{left:155.040000pt;}
.x79_c00165{left:158.402064pt;}
.x70_c00165{left:159.840304pt;}
.x48_c00165{left:163.005333pt;}
.x75_c00165{left:165.121936pt;}
.x18_c00165{left:171.360000pt;}
.x1c_c00165{left:174.720000pt;}
.x33_c00165{left:177.120000pt;}
.x28_c00165{left:178.800000pt;}
.x8_c00165{left:181.680000pt;}
.x71_c00165{left:186.482811pt;}
.x4f_c00165{left:188.042667pt;}
.xf_c00165{left:194.160000pt;}
.x40_c00165{left:197.460000pt;}
.x29_c00165{left:198.960000pt;}
.x39_c00165{left:199.920000pt;}
.x34_c00165{left:202.080000pt;}
.x3c_c00165{left:206.160000pt;}
.x5b_c00165{left:207.360000pt;}
.x60_c00165{left:209.040000pt;}
.x63_c00165{left:210.240000pt;}
.x2f_c00165{left:212.640000pt;}
.x7a_c00165{left:214.086080pt;}
.x15_c00165{left:215.040000pt;}
.x7e_c00165{left:218.166112pt;}
.x81_c00165{left:219.126107pt;}
.x52_c00165{left:220.561333pt;}
.x4_c00165{left:222.720000pt;}
.x35_c00165{left:224.640000pt;}
.x1_c00165{left:230.880000pt;}
.x64_c00165{left:232.080000pt;}
.x1d_c00165{left:233.280000pt;}
.x76_c00165{left:235.446715pt;}
.x41_c00165{left:236.817333pt;}
.x9_c00165{left:240.480000pt;}
.x58_c00165{left:242.400000pt;}
.x22_c00165{left:244.560000pt;}
.x10_c00165{left:246.240000pt;}
.x5c_c00165{left:248.160000pt;}
.x49_c00165{left:249.752000pt;}
.x72_c00165{left:251.768219pt;}
.x5_c00165{left:253.680000pt;}
.x53_c00165{left:256.561333pt;}
.x2a_c00165{left:258.960000pt;}
.x2_c00165{left:260.880000pt;}
.x50_c00165{left:265.361333pt;}
.x77_c00165{left:269.048880pt;}
.x4a_c00165{left:271.040000pt;}
.x16_c00165{left:272.640000pt;}
.x36_c00165{left:274.320000pt;}
.x3a_c00165{left:278.400000pt;}
.x7b_c00165{left:280.090251pt;}
.x23_c00165{left:281.520000pt;}
.x42_c00165{left:283.302667pt;}
.x86_c00165{left:286.812752pt;}
.x2b_c00165{left:290.400000pt;}
.xa_c00165{left:292.080000pt;}
.x65_c00165{left:293.040000pt;}
.x73_c00165{left:294.250331pt;}
.x78_c00165{left:295.691387pt;}
.x24_c00165{left:299.280000pt;}
.x7f_c00165{left:300.492635pt;}
.x37_c00165{left:303.360000pt;}
.x1e_c00165{left:308.160000pt;}
.x30_c00165{left:309.600000pt;}
.x11_c00165{left:312.000000pt;}
.x17_c00165{left:314.160000pt;}
.xb_c00165{left:315.360000pt;}
.x4b_c00165{left:317.857333pt;}
.x5d_c00165{left:320.400000pt;}
.x84_c00165{left:322.094880pt;}
.x2c_c00165{left:323.520000pt;}
.x82_c00165{left:325.214720pt;}
.x1f_c00165{left:326.640000pt;}
.x59_c00165{left:328.560000pt;}
.x9b_c00165{left:330.000000pt;}
.x3b_c00165{left:331.440000pt;}
.x54_c00165{left:334.321333pt;}
.x19_c00165{left:335.280000pt;}
.x4c_c00165{left:337.758667pt;}
.x25_c00165{left:339.600000pt;}
.x43_c00165{left:343.564000pt;}
.x2d_c00165{left:347.280000pt;}
.x5a_c00165{left:350.160000pt;}
.xc_c00165{left:352.080000pt;}
.x55_c00165{left:353.281333pt;}
.x68_c00165{left:356.098667pt;}
.x3d_c00165{left:357.840000pt;}
.x38_c00165{left:359.520000pt;}
.x20_c00165{left:363.120000pt;}
.x88_c00165{left:364.337397pt;}
.x26_c00165{left:366.240000pt;}
.x96_c00165{left:367.920000pt;}
.x61_c00165{left:370.800000pt;}
.x5e_c00165{left:372.000000pt;}
.x8f_c00165{left:373.680000pt;}
.xd_c00165{left:374.640000pt;}
.x31_c00165{left:375.600000pt;}
.x8d_c00165{left:377.040000pt;}
.x12_c00165{left:378.000000pt;}
.x44_c00165{left:379.294667pt;}
.x1a_c00165{left:381.600000pt;}
.x3_c00165{left:384.000000pt;}
.x4d_c00165{left:385.014667pt;}
.x93_c00165{left:386.880000pt;}
.x27_c00165{left:388.560000pt;}
.x62_c00165{left:392.400000pt;}
.x21_c00165{left:394.320000pt;}
.x90_c00165{left:395.520000pt;}
.x56_c00165{left:397.441333pt;}
.x9c_c00165{left:399.840000pt;}
.x6_c00165{left:401.520000pt;}
.x97_c00165{left:407.040000pt;}
.x13_c00165{left:408.240000pt;}
.x3e_c00165{left:411.120000pt;}
.x32_c00165{left:412.800000pt;}
.x69_c00165{left:414.394667pt;}
.x57_c00165{left:416.161333pt;}
.x4e_c00165{left:418.390667pt;}
.x45_c00165{left:419.838667pt;}
.x2e_c00165{left:422.160000pt;}
.x3f_c00165{left:423.600000pt;}
.x89_c00165{left:424.820768pt;}
.x46_c00165{left:427.290667pt;}
.x6a_c00165{left:430.713333pt;}
.x8a_c00165{left:434.880000pt;}
.x5f_c00165{left:437.520000pt;}
.x91_c00165{left:439.200000pt;}
.x51_c00165{left:446.508000pt;}
.x6b_c00165{left:448.940000pt;}
.x94_c00165{left:452.880000pt;}
.x14_c00165{left:461.280000pt;}
.x9d_c00165{left:466.800000pt;}
.x8b_c00165{left:469.920000pt;}
.x6c_c00165{left:476.804000pt;}
.x98_c00165{left:480.000000pt;}
.x8c_c00165{left:485.280000pt;}
.x47_c00165{left:488.029333pt;}
.x6d_c00165{left:493.117333pt;}
.x99_c00165{left:497.040000pt;}
.x9a_c00165{left:511.200000pt;}
.x92_c00165{left:513.600000pt;}
.x6e_c00165{left:514.724000pt;}
.x8e_c00165{left:519.120000pt;}
.x95_c00165{left:520.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m83_c00166{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{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);}
.md2_c00166{transform:matrix(0.015940,0.000399,-0.006248,0.249922,0,0);-ms-transform:matrix(0.015940,0.000399,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.015940,0.000399,-0.006248,0.249922,0,0);}
.ma4_c00166{transform:matrix(0.015942,0.000303,-0.004749,0.249955,0,0);-ms-transform:matrix(0.015942,0.000303,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.015942,0.000303,-0.004749,0.249955,0,0);}
.m8f_c00166{transform:matrix(0.016192,0.000324,-0.004999,0.249950,0,0);-ms-transform:matrix(0.016192,0.000324,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.016192,0.000324,-0.004999,0.249950,0,0);}
.m9d_c00166{transform:matrix(0.021386,0.000406,-0.004749,0.249955,0,0);-ms-transform:matrix(0.021386,0.000406,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.021386,0.000406,-0.004749,0.249955,0,0);}
.m1a_c00166{transform:matrix(0.024990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024990,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.076740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076740,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.113137,0.002263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.113137,0.002263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.113137,0.002263,-0.004999,0.249950,0,0);}
.m3e_c00166{transform:matrix(0.121245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121245,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);}
.m8_c00166{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);}
.m86_c00166{transform:matrix(0.148735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148735,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.149365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149365,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{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);}
.m76_c00166{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);}
.m8b_c00166{transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{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);}
.m6d_c00166{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);}
.m61_c00166{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);}
.mb0_c00166{transform:matrix(0.160101,0.003042,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160101,0.003042,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160101,0.003042,-0.004749,0.249955,0,0);}
.m89_c00166{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.161858,0.003885,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161858,0.003885,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161858,0.003885,-0.005998,0.249928,0,0);}
.m2e_c00166{transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{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);}
.m78_c00166{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);}
.m9f_c00166{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);}
.m6f_c00166{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);}
.mc8_c00166{transform:matrix(0.166942,0.003339,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166942,0.003339,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166942,0.003339,-0.004999,0.249950,0,0);}
.m52_c00166{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);}
.m6a_c00166{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);}
.m34_c00166{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);}
.m8d_c00166{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);}
.ma2_c00166{transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170579,0.003241,-0.004749,0.249955,0,0);}
.mf_c00166{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);}
.ma_c00166{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{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);}
.m24_c00166{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);}
.m65_c00166{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{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);}
.m87_c00166{transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{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);}
.mbb_c00166{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);}
.m75_c00166{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);}
.m28_c00166{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);}
.m70_c00166{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);}
.m97_c00166{transform:matrix(0.175899,0.004222,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175899,0.004222,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175899,0.004222,-0.005998,0.249928,0,0);}
.m91_c00166{transform:matrix(0.176340,0.003527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176340,0.003527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176340,0.003527,-0.004999,0.249950,0,0);}
.m31_c00166{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);}
.m82_c00166{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);}
.m13_c00166{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);}
.md1_c00166{transform:matrix(0.178074,0.004452,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178074,0.004452,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178074,0.004452,-0.006248,0.249922,0,0);}
.m15_c00166{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);}
.m8e_c00166{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);}
.m94_c00166{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);}
.m7d_c00166{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);}
.m23_c00166{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);}
.med_c00166{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);}
.m96_c00166{transform:matrix(0.180838,0.004340,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180838,0.004340,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180838,0.004340,-0.005998,0.249928,0,0);}
.m93_c00166{transform:matrix(0.180979,0.003620,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180979,0.003620,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180979,0.003620,-0.004999,0.249950,0,0);}
.m7f_c00166{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);}
.mb1_c00166{transform:matrix(0.181812,0.003454,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181812,0.003454,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181812,0.003454,-0.004749,0.249955,0,0);}
.m36_c00166{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);}
.mb5_c00166{transform:matrix(0.182487,0.003467,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182487,0.003467,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182487,0.003467,-0.004749,0.249955,0,0);}
.ma9_c00166{transform:matrix(0.182942,0.003476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182942,0.003476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182942,0.003476,-0.004749,0.249955,0,0);}
.mb9_c00166{transform:matrix(0.183572,0.003488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183572,0.003488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183572,0.003488,-0.004749,0.249955,0,0);}
.m12_c00166{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);}
.m5f_c00166{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);}
.m77_c00166{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);}
.mc0_c00166{transform:matrix(0.185318,0.003706,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185318,0.003706,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185318,0.003706,-0.004999,0.249950,0,0);}
.me3_c00166{transform:matrix(0.185393,0.003708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185393,0.003708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185393,0.003708,-0.004999,0.249950,0,0);}
.mca_c00166{transform:matrix(0.186308,0.003726,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186308,0.003726,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186308,0.003726,-0.004999,0.249950,0,0);}
.m5b_c00166{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);}
.mb4_c00166{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);}
.m74_c00166{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);}
.m8c_c00166{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);}
.m2f_c00166{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);}
.m9_c00166{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);}
.m1e_c00166{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);}
.m85_c00166{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);}
.m6e_c00166{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);}
.m35_c00166{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);}
.mc3_c00166{transform:matrix(0.188692,0.003774,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188692,0.003774,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188692,0.003774,-0.004999,0.249950,0,0);}
.m4f_c00166{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);}
.m64_c00166{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);}
.mc9_c00166{transform:matrix(0.189107,0.003782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189107,0.003782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189107,0.003782,-0.004999,0.249950,0,0);}
.m4e_c00166{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);}
.m62_c00166{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);}
.m11_c00166{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);}
.ma0_c00166{transform:matrix(0.191425,0.003637,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191425,0.003637,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191425,0.003637,-0.004749,0.249955,0,0);}
.maa_c00166{transform:matrix(0.191435,0.003637,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191435,0.003637,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191435,0.003637,-0.004749,0.249955,0,0);}
.m38_c00166{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);}
.m66_c00166{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);}
.m63_c00166{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);}
.m81_c00166{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);}
.m9b_c00166{transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192600,0.004622,-0.005998,0.249928,0,0);}
.m48_c00166{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);}
.m22_c00166{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);}
.ma3_c00166{transform:matrix(0.193155,0.003670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193155,0.003670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193155,0.003670,-0.004749,0.249955,0,0);}
.m9a_c00166{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);}
.m1d_c00166{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);}
.m10_c00166{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);}
.m56_c00166{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);}
.m7e_c00166{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);}
.m3b_c00166{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);}
.ma7_c00166{transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195085,0.003707,-0.004749,0.249955,0,0);}
.m5e_c00166{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);}
.me2_c00166{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);}
.mb_c00166{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);}
.m98_c00166{transform:matrix(0.197243,0.004734,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197243,0.004734,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197243,0.004734,-0.005998,0.249928,0,0);}
.m27_c00166{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);}
.mc5_c00166{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);}
.m88_c00166{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);}
.ma1_c00166{transform:matrix(0.198754,0.003776,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198754,0.003776,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198754,0.003776,-0.004749,0.249955,0,0);}
.me5_c00166{transform:matrix(0.198860,0.003977,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198860,0.003977,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198860,0.003977,-0.004999,0.249950,0,0);}
.m2b_c00166{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);}
.m53_c00166{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);}
.m30_c00166{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);}
.m20_c00166{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);}
.me0_c00166{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);}
.m2a_c00166{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);}
.mac_c00166{transform:matrix(0.199639,0.003793,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199639,0.003793,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199639,0.003793,-0.004749,0.249955,0,0);}
.me6_c00166{transform:matrix(0.199765,0.003995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199765,0.003995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199765,0.003995,-0.004999,0.249950,0,0);}
.m55_c00166{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);}
.m90_c00166{transform:matrix(0.199880,0.003998,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199880,0.003998,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199880,0.003998,-0.004999,0.249950,0,0);}
.m4d_c00166{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);}
.mc2_c00166{transform:matrix(0.200030,0.004001,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200030,0.004001,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200030,0.004001,-0.004999,0.249950,0,0);}
.m2c_c00166{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);}
.m1f_c00166{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);}
.mb2_c00166{transform:matrix(0.201279,0.003824,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201279,0.003824,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201279,0.003824,-0.004749,0.249955,0,0);}
.mbe_c00166{transform:matrix(0.201515,0.004030,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201515,0.004030,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201515,0.004030,-0.004999,0.249950,0,0);}
.m5_c00166{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);}
.m7a_c00166{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);}
.m7b_c00166{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_c00166{transform:matrix(0.203759,0.004075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203759,0.004075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203759,0.004075,-0.004999,0.249950,0,0);}
.mef_c00166{transform:matrix(0.204239,0.004085,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204239,0.004085,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204239,0.004085,-0.004999,0.249950,0,0);}
.m41_c00166{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);}
.m21_c00166{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);}
.m2d_c00166{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);}
.mbf_c00166{transform:matrix(0.208348,0.004167,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208348,0.004167,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208348,0.004167,-0.004999,0.249950,0,0);}
.m7c_c00166{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);}
.m3c_c00166{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);}
.mab_c00166{transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);}
.m57_c00166{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);}
.m73_c00166{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);}
.m17_c00166{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);}
.m32_c00166{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);}
.mb8_c00166{transform:matrix(0.213222,0.004051,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213222,0.004051,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213222,0.004051,-0.004749,0.249955,0,0);}
.m25_c00166{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);}
.m4_c00166{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_c00166{transform:matrix(0.214561,0.004077,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214561,0.004077,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214561,0.004077,-0.004749,0.249955,0,0);}
.m54_c00166{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);}
.m84_c00166{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);}
.m95_c00166{transform:matrix(0.217207,0.005213,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217207,0.005213,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217207,0.005213,-0.005998,0.249928,0,0);}
.m6_c00166{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);}
.m71_c00166{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);}
.m9e_c00166{transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);}
.mdb_c00166{transform:matrix(0.219146,0.004383,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219146,0.004383,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219146,0.004383,-0.004999,0.249950,0,0);}
.m50_c00166{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);}
.m5d_c00166{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);}
.m43_c00166{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);}
.meb_c00166{transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);}
.md0_c00166{transform:matrix(0.221424,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221424,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221424,0.002657,-0.003000,0.249982,0,0);}
.mdc_c00166{transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);}
.md3_c00166{transform:matrix(0.222326,0.005558,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222326,0.005558,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222326,0.005558,-0.006248,0.249922,0,0);}
.m5c_c00166{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);}
.m14_c00166{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{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);}
.m16_c00166{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);}
.md8_c00166{transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);}
.m51_c00166{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);}
.mee_c00166{transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);}
.mb3_c00166{transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);}
.mb6_c00166{transform:matrix(0.226249,0.004299,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226249,0.004299,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226249,0.004299,-0.004749,0.249955,0,0);}
.m1b_c00166{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);}
.m67_c00166{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.mce_c00166{transform:matrix(0.228819,0.002746,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228819,0.002746,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228819,0.002746,-0.003000,0.249982,0,0);}
.m44_c00166{transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{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);}
.mda_c00166{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);}
.m6c_c00166{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.md9_c00166{transform:matrix(0.231124,0.004622,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231124,0.004622,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231124,0.004622,-0.004999,0.249950,0,0);}
.m37_c00166{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_c00166{transform:matrix(0.235148,0.002822,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235148,0.002822,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235148,0.002822,-0.003000,0.249982,0,0);}
.mcc_c00166{transform:matrix(0.235693,0.002828,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235693,0.002828,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235693,0.002828,-0.003000,0.249982,0,0);}
.m9c_c00166{transform:matrix(0.237177,0.005692,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237177,0.005692,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237177,0.005692,-0.005998,0.249928,0,0);}
.m33_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);}
.mde_c00166{transform:matrix(0.237338,0.004747,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237338,0.004747,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237338,0.004747,-0.004999,0.249950,0,0);}
.me9_c00166{transform:matrix(0.240372,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240372,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240372,0.004807,-0.004999,0.249950,0,0);}
.m4a_c00166{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);}
.m49_c00166{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);}
.m6b_c00166{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);}
.me7_c00166{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);}
.ma6_c00166{transform:matrix(0.244701,0.004649,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244701,0.004649,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244701,0.004649,-0.004749,0.249955,0,0);}
.m60_c00166{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);}
.m40_c00166{transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);}
.mec_c00166{transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);}
.m47_c00166{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{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);}
.me8_c00166{transform:matrix(0.247640,0.004953,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247640,0.004953,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247640,0.004953,-0.004999,0.249950,0,0);}
.m92_c00166{transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);}
.mc6_c00166{transform:matrix(0.248110,0.004962,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248110,0.004962,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248110,0.004962,-0.004999,0.249950,0,0);}
.me1_c00166{transform:matrix(0.248350,0.004967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248350,0.004967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248350,0.004967,-0.004999,0.249950,0,0);}
.m45_c00166{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.mcd_c00166{transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);}
.m19_c00166{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);}
.mc4_c00166{transform:matrix(0.252669,0.005053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252669,0.005053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252669,0.005053,-0.004999,0.249950,0,0);}
.m18_c00166{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);}
.me_c00166{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);}
.md6_c00166{transform:matrix(0.259368,0.005187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259368,0.005187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259368,0.005187,-0.004999,0.249950,0,0);}
.m46_c00166{transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);}
.mf0_c00166{transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);}
.mdd_c00166{transform:matrix(0.263317,0.005266,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263317,0.005266,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263317,0.005266,-0.004999,0.249950,0,0);}
.mea_c00166{transform:matrix(0.265257,0.005305,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265257,0.005305,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265257,0.005305,-0.004999,0.249950,0,0);}
.m58_c00166{transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);}
.mcb_c00166{transform:matrix(0.268526,0.003222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268526,0.003222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268526,0.003222,-0.003000,0.249982,0,0);}
.md7_c00166{transform:matrix(0.270541,0.005411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270541,0.005411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270541,0.005411,-0.004999,0.249950,0,0);}
.m68_c00166{transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{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);}
.m4b_c00166{transform:matrix(0.277945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277945,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.296167,0.005627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296167,0.005627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296167,0.005627,-0.004749,0.249955,0,0);}
.m69_c00166{transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.318128,0.006044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.318128,0.006044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.318128,0.006044,-0.004749,0.249955,0,0);}
.mc_c00166{transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320170,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);}
.mc7_c00166{transform:matrix(0.355299,0.007106,-0.004999,0.249950,0,0);-ms-transform:matrix(0.355299,0.007106,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.355299,0.007106,-0.004999,0.249950,0,0);}
.mdf_c00166{transform:matrix(0.358048,0.007161,-0.004999,0.249950,0,0);-ms-transform:matrix(0.358048,0.007161,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.358048,0.007161,-0.004999,0.249950,0,0);}
.mba_c00166{transform:matrix(0.362415,0.006886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.362415,0.006886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.362415,0.006886,-0.004749,0.249955,0,0);}
.mb7_c00166{transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);}
.m72_c00166{transform:matrix(0.367485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367485,0.000000,0.000000,0.250000,0,0);}
.md4_c00166{transform:matrix(0.381779,0.007636,-0.004999,0.249950,0,0);-ms-transform:matrix(0.381779,0.007636,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.381779,0.007636,-0.004999,0.249950,0,0);}
.m2_c00166{transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.459907,0.008738,-0.004749,0.249955,0,0);-ms-transform:matrix(0.459907,0.008738,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.459907,0.008738,-0.004749,0.249955,0,0);}
.mf1_c00166{transform:matrix(0.483768,0.009675,-0.004999,0.249950,0,0);-ms-transform:matrix(0.483768,0.009675,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.483768,0.009675,-0.004999,0.249950,0,0);}
.md5_c00166{transform:matrix(0.518201,0.010364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.518201,0.010364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.518201,0.010364,-0.004999,0.249950,0,0);}
.m0_c00166{transform:matrix(0.574500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.654009,0.013080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.654009,0.013080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.654009,0.013080,-0.004999,0.249950,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;}
.fsf_c00166{font-size:49.353553px;}
.fsd_c00166{font-size:52.509475px;}
.fs11_c00166{font-size:52.510499px;}
.fsb_c00166{font-size:53.559665px;}
.fsa_c00166{font-size:53.565420px;}
.fs10_c00166{font-size:53.566732px;}
.fse_c00166{font-size:55.661129px;}
.fs12_c00166{font-size:60.912179px;}
.fs3_c00166{font-size:63.000000px;}
.fsc_c00166{font-size:63.011370px;}
.fs6_c00166{font-size:67.200000px;}
.fs1_c00166{font-size:68.250000px;}
.fs4_c00166{font-size:70.350000px;}
.fs0_c00166{font-size:71.400000px;}
.fs2_c00166{font-size:72.450000px;}
.fs5_c00166{font-size:73.500000px;}
.fs7_c00166{font-size:74.550000px;}
.fs9_c00166{font-size:74.564909px;}
.fs8_c00166{font-size:76.650000px;}
.y0_c00166{bottom:0.000000px;}
.ycc_c00166{bottom:141.971175px;}
.ycb_c00166{bottom:147.732188px;}
.yca_c00166{bottom:148.504500px;}
.yea_c00166{bottom:156.836010px;}
.ye9_c00166{bottom:157.607610px;}
.ye8_c00166{bottom:158.210190px;}
.ye7_c00166{bottom:159.035370px;}
.ye6_c00166{bottom:159.446640px;}
.ye5_c00166{bottom:160.527090px;}
.ye4_c00166{bottom:162.287550px;}
.ye3_c00166{bottom:162.655050px;}
.ye2_c00166{bottom:162.971580px;}
.ye1_c00166{bottom:163.283220px;}
.ye0_c00166{bottom:164.053980px;}
.ydf_c00166{bottom:164.378070px;}
.yde_c00166{bottom:165.452340px;}
.ydd_c00166{bottom:177.570210px;}
.ydc_c00166{bottom:182.251110px;}
.ydb_c00166{bottom:193.966830px;}
.yda_c00166{bottom:194.242290px;}
.yd9_c00166{bottom:195.031710px;}
.yd8_c00166{bottom:195.307500px;}
.yd7_c00166{bottom:196.003320px;}
.yd6_c00166{bottom:196.606170px;}
.yd5_c00166{bottom:197.596020px;}
.yd4_c00166{bottom:199.010970px;}
.yd3_c00166{bottom:199.691760px;}
.yd2_c00166{bottom:200.015790px;}
.yd1_c00166{bottom:201.096210px;}
.yd0_c00166{bottom:201.532320px;}
.ycf_c00166{bottom:201.879690px;}
.yce_c00166{bottom:202.558020px;}
.ycd_c00166{bottom:202.857000px;}
.yc9_c00166{bottom:211.843080px;}
.yc8_c00166{bottom:212.091642px;}
.yc7_c00166{bottom:212.733630px;}
.yc6_c00166{bottom:213.141996px;}
.yc5_c00166{bottom:215.948754px;}
.yc4_c00166{bottom:216.346500px;}
.yc3_c00166{bottom:229.674660px;}
.yc2_c00166{bottom:230.538480px;}
.yc1_c00166{bottom:230.797620px;}
.yc0_c00166{bottom:230.960880px;}
.ybf_c00166{bottom:232.088160px;}
.ybe_c00166{bottom:232.579890px;}
.ybd_c00166{bottom:233.173980px;}
.ybc_c00166{bottom:234.319080px;}
.ybb_c00166{bottom:235.442370px;}
.yba_c00166{bottom:235.634040px;}
.yb9_c00166{bottom:236.711760px;}
.yb8_c00166{bottom:237.267960px;}
.yb7_c00166{bottom:237.813570px;}
.yb6_c00166{bottom:237.969270px;}
.yb5_c00166{bottom:238.377000px;}
.yb4_c00166{bottom:248.236421px;}
.yb3_c00166{bottom:249.118723px;}
.yb2_c00166{bottom:249.837294px;}
.yb1_c00166{bottom:250.165557px;}
.yb0_c00166{bottom:251.942560px;}
.yaf_c00166{bottom:252.597719px;}
.yae_c00166{bottom:252.904293px;}
.yad_c00166{bottom:253.613373px;}
.yac_c00166{bottom:254.337074px;}
.yab_c00166{bottom:254.885698px;}
.yaa_c00166{bottom:255.153000px;}
.ya9_c00166{bottom:267.814578px;}
.ya8_c00166{bottom:273.023406px;}
.ya7_c00166{bottom:273.561867px;}
.ya6_c00166{bottom:274.291614px;}
.ya5_c00166{bottom:283.384905px;}
.ya4_c00166{bottom:283.773844px;}
.ya3_c00166{bottom:284.334269px;}
.ya2_c00166{bottom:285.026790px;}
.ya1_c00166{bottom:285.627000px;}
.ya0_c00166{bottom:286.160606px;}
.y9f_c00166{bottom:286.733997px;}
.y9e_c00166{bottom:287.027718px;}
.y9d_c00166{bottom:287.415974px;}
.y9c_c00166{bottom:288.274479px;}
.y9b_c00166{bottom:288.833165px;}
.y9a_c00166{bottom:289.593146px;}
.y99_c00166{bottom:290.501384px;}
.y98_c00166{bottom:291.430027px;}
.y97_c00166{bottom:291.727995px;}
.y96_c00166{bottom:292.951500px;}
.y95_c00166{bottom:335.423400px;}
.y94_c00166{bottom:335.740812px;}
.y93_c00166{bottom:336.498432px;}
.y92_c00166{bottom:336.809544px;}
.y91_c00166{bottom:337.677288px;}
.y90_c00166{bottom:338.086644px;}
.y8f_c00166{bottom:338.546904px;}
.y8e_c00166{bottom:339.033228px;}
.y8d_c00166{bottom:339.396000px;}
.y8c_c00166{bottom:368.867430px;}
.y8b_c00166{bottom:369.462180px;}
.y8a_c00166{bottom:370.752840px;}
.y89_c00166{bottom:371.341200px;}
.y88_c00166{bottom:371.794500px;}
.y87_c00166{bottom:391.039500px;}
.y86_c00166{bottom:391.804500px;}
.y85_c00166{bottom:392.334000px;}
.y84_c00166{bottom:392.793000px;}
.y83_c00166{bottom:393.448500px;}
.y82_c00166{bottom:394.410000px;}
.y81_c00166{bottom:395.220000px;}
.y80_c00166{bottom:396.100500px;}
.y7f_c00166{bottom:414.399000px;}
.y7e_c00166{bottom:415.651500px;}
.y7d_c00166{bottom:416.838000px;}
.y7c_c00166{bottom:417.778500px;}
.y7b_c00166{bottom:420.670500px;}
.y7a_c00166{bottom:435.762000px;}
.y79_c00166{bottom:436.851000px;}
.y78_c00166{bottom:437.671500px;}
.y77_c00166{bottom:438.810000px;}
.y76_c00166{bottom:440.113500px;}
.y75_c00166{bottom:440.578500px;}
.y74_c00166{bottom:442.269000px;}
.y73_c00166{bottom:460.296000px;}
.y72_c00166{bottom:461.217000px;}
.y71_c00166{bottom:461.472000px;}
.y70_c00166{bottom:461.881500px;}
.y6f_c00166{bottom:463.032000px;}
.y6e_c00166{bottom:463.342500px;}
.y6d_c00166{bottom:463.977000px;}
.y6c_c00166{bottom:464.518500px;}
.y6b_c00166{bottom:464.946000px;}
.y6a_c00166{bottom:482.244000px;}
.y69_c00166{bottom:483.069000px;}
.y68_c00166{bottom:483.436500px;}
.y67_c00166{bottom:484.261500px;}
.y66_c00166{bottom:485.535000px;}
.y65_c00166{bottom:486.045000px;}
.y64_c00166{bottom:486.916500px;}
.y63_c00166{bottom:487.672500px;}
.y62_c00166{bottom:503.244000px;}
.y61_c00166{bottom:503.412000px;}
.y60_c00166{bottom:504.052500px;}
.y5f_c00166{bottom:504.871500px;}
.y5e_c00166{bottom:505.587000px;}
.y5d_c00166{bottom:506.473500px;}
.y5c_c00166{bottom:508.075500px;}
.y5b_c00166{bottom:508.608000px;}
.y5a_c00166{bottom:508.983000px;}
.y59_c00166{bottom:509.695500px;}
.y58_c00166{bottom:510.306000px;}
.y57_c00166{bottom:529.185000px;}
.y56_c00166{bottom:529.581000px;}
.y55_c00166{bottom:530.403000px;}
.y54_c00166{bottom:531.228000px;}
.y53_c00166{bottom:531.853500px;}
.y52_c00166{bottom:532.174500px;}
.y51_c00166{bottom:550.120500px;}
.y50_c00166{bottom:550.959000px;}
.y4f_c00166{bottom:551.341500px;}
.y4e_c00166{bottom:552.001500px;}
.y4d_c00166{bottom:552.534000px;}
.y4c_c00166{bottom:553.198500px;}
.y4b_c00166{bottom:554.044500px;}
.y4a_c00166{bottom:572.716500px;}
.y49_c00166{bottom:573.763500px;}
.y48_c00166{bottom:574.416000px;}
.y47_c00166{bottom:575.310000px;}
.y46_c00166{bottom:576.006000px;}
.y45_c00166{bottom:576.832500px;}
.y44_c00166{bottom:577.216500px;}
.y43_c00166{bottom:577.816500px;}
.y42_c00166{bottom:597.792000px;}
.y41_c00166{bottom:598.260000px;}
.y40_c00166{bottom:599.058000px;}
.y3f_c00166{bottom:599.577000px;}
.y3e_c00166{bottom:600.216000px;}
.y3d_c00166{bottom:617.976000px;}
.y3c_c00166{bottom:618.814500px;}
.y3b_c00166{bottom:619.327500px;}
.y3a_c00166{bottom:619.918500px;}
.y39_c00166{bottom:620.299500px;}
.y38_c00166{bottom:621.232500px;}
.y37_c00166{bottom:622.086000px;}
.y36_c00166{bottom:639.865500px;}
.y35_c00166{bottom:640.735500px;}
.y34_c00166{bottom:642.354000px;}
.y33_c00166{bottom:643.404000px;}
.y32_c00166{bottom:643.948500px;}
.y31_c00166{bottom:644.082000px;}
.y30_c00166{bottom:662.866500px;}
.y2f_c00166{bottom:663.975000px;}
.y2e_c00166{bottom:664.596000px;}
.y2d_c00166{bottom:665.335500px;}
.y2c_c00166{bottom:666.139500px;}
.y2b_c00166{bottom:666.865500px;}
.y2a_c00166{bottom:667.228500px;}
.y29_c00166{bottom:667.984500px;}
.y28_c00166{bottom:685.330500px;}
.y27_c00166{bottom:685.711500px;}
.y26_c00166{bottom:686.655000px;}
.y25_c00166{bottom:687.448500px;}
.y24_c00166{bottom:688.951500px;}
.y23_c00166{bottom:689.587500px;}
.y22_c00166{bottom:689.991000px;}
.y21_c00166{bottom:690.664500px;}
.y20_c00166{bottom:708.529500px;}
.y1f_c00166{bottom:709.380000px;}
.y1e_c00166{bottom:709.767000px;}
.y1d_c00166{bottom:710.178000px;}
.y1c_c00166{bottom:711.123000px;}
.y1b_c00166{bottom:711.690000px;}
.y1a_c00166{bottom:712.627500px;}
.y19_c00166{bottom:713.154000px;}
.y18_c00166{bottom:713.886000px;}
.y17_c00166{bottom:732.801000px;}
.y16_c00166{bottom:733.552500px;}
.y15_c00166{bottom:734.628000px;}
.y14_c00166{bottom:735.139500px;}
.y13_c00166{bottom:735.391500px;}
.y12_c00166{bottom:736.027500px;}
.y11_c00166{bottom:753.072000px;}
.y10_c00166{bottom:754.224000px;}
.yf_c00166{bottom:755.664000px;}
.ye_c00166{bottom:757.126500px;}
.yd_c00166{bottom:758.083500px;}
.yc_c00166{bottom:779.074500px;}
.yb_c00166{bottom:779.917500px;}
.ya_c00166{bottom:780.246000px;}
.y9_c00166{bottom:780.745500px;}
.y8_c00166{bottom:780.979500px;}
.y7_c00166{bottom:781.666500px;}
.y6_c00166{bottom:782.419500px;}
.y5_c00166{bottom:782.680500px;}
.y4_c00166{bottom:783.541500px;}
.y3_c00166{bottom:802.897500px;}
.y2_c00166{bottom:825.532500px;}
.y1_c00166{bottom:868.312500px;}
.h11_c00166{height:49.353553px;}
.hf_c00166{height:52.509475px;}
.h13_c00166{height:52.510499px;}
.hd_c00166{height:53.559665px;}
.hc_c00166{height:53.565420px;}
.h12_c00166{height:53.566732px;}
.h10_c00166{height:55.661129px;}
.h14_c00166{height:60.912179px;}
.h5_c00166{height:63.000000px;}
.he_c00166{height:63.011370px;}
.h8_c00166{height:67.200000px;}
.h3_c00166{height:68.250000px;}
.h6_c00166{height:70.350000px;}
.h2_c00166{height:71.400000px;}
.h4_c00166{height:72.450000px;}
.h7_c00166{height:73.500000px;}
.h9_c00166{height:74.550000px;}
.hb_c00166{height:74.564909px;}
.ha_c00166{height:76.650000px;}
.h1_c00166{height:1005.000000px;}
.h0_c00166{height:1005.150000px;}
.w0_c00166{width:705.450000px;}
.w1_c00166{width:705.750000px;}
.x0_c00166{left:0.000000px;}
.x63_c00166{left:29.383500px;}
.x6e_c00166{left:44.028375px;}
.x6f_c00166{left:80.540691px;}
.x86_c00166{left:89.178000px;}
.x64_c00166{left:93.778500px;}
.xe_c00166{left:96.592500px;}
.x78_c00166{left:101.656500px;}
.x87_c00166{left:104.127000px;}
.x70_c00166{left:107.459178px;}
.x65_c00166{left:109.461000px;}
.x4b_c00166{left:113.413500px;}
.x53_c00166{left:117.486000px;}
.x43_c00166{left:118.891500px;}
.x27_c00166{left:120.226500px;}
.x1b_c00166{left:122.028000px;}
.x71_c00166{left:132.954000px;}
.x79_c00166{left:136.722000px;}
.x88_c00166{left:138.043500px;}
.x90_c00166{left:139.925520px;}
.x4c_c00166{left:143.922000px;}
.x33_c00166{left:147.144000px;}
.x85_c00166{left:149.247000px;}
.x47_c00166{left:155.587500px;}
.x8_c00166{left:156.870000px;}
.xf_c00166{left:158.041500px;}
.x3c_c00166{left:160.633500px;}
.x72_c00166{left:161.829000px;}
.x28_c00166{left:165.114000px;}
.x2e_c00166{left:166.938000px;}
.x20_c00166{left:168.352500px;}
.x37_c00166{left:172.590000px;}
.x1_c00166{left:174.690000px;}
.x10_c00166{left:176.679000px;}
.x4d_c00166{left:179.569500px;}
.x3f_c00166{left:181.771500px;}
.x44_c00166{left:183.951000px;}
.x5f_c00166{left:184.993500px;}
.x2f_c00166{left:189.612000px;}
.x29_c00166{left:192.019500px;}
.x1c_c00166{left:196.126500px;}
.x3d_c00166{left:198.231000px;}
.x60_c00166{left:200.109000px;}
.x21_c00166{left:201.214500px;}
.x54_c00166{left:203.148000px;}
.x66_c00166{left:206.139000px;}
.x48_c00166{left:214.711500px;}
.x9_c00166{left:216.810000px;}
.x7a_c00166{left:218.418000px;}
.x5a_c00166{left:221.131500px;}
.x4e_c00166{left:224.911500px;}
.x7b_c00166{left:228.001500px;}
.x16_c00166{left:229.800000px;}
.x4_c00166{left:230.850000px;}
.x40_c00166{left:233.415000px;}
.x2a_c00166{left:234.436500px;}
.x57_c00166{left:236.580000px;}
.x1d_c00166{left:238.794000px;}
.x67_c00166{left:246.138000px;}
.x89_c00166{left:247.440000px;}
.x5e_c00166{left:250.011000px;}
.x5_c00166{left:251.910000px;}
.x73_c00166{left:253.374000px;}
.x38_c00166{left:254.674500px;}
.x61_c00166{left:256.606500px;}
.x22_c00166{left:259.794000px;}
.xa_c00166{left:267.030000px;}
.x34_c00166{left:270.547500px;}
.x3e_c00166{left:275.776500px;}
.x41_c00166{left:276.877500px;}
.x11_c00166{left:279.541500px;}
.x8a_c00166{left:281.479500px;}
.x17_c00166{left:282.987000px;}
.x7c_c00166{left:284.166000px;}
.x30_c00166{left:285.180000px;}
.x74_c00166{left:287.856000px;}
.x39_c00166{left:291.607500px;}
.x62_c00166{left:292.762500px;}
.xb_c00166{left:294.570000px;}
.x12_c00166{left:296.289000px;}
.x6_c00166{left:303.480000px;}
.x4f_c00166{left:305.037000px;}
.x58_c00166{left:308.490000px;}
.x49_c00166{left:317.659500px;}
.x68_c00166{left:320.727000px;}
.x3a_c00166{left:323.691000px;}
.x45_c00166{left:326.847000px;}
.x1e_c00166{left:328.428000px;}
.x13_c00166{left:331.921500px;}
.x2b_c00166{left:334.603500px;}
.x5b_c00166{left:337.473000px;}
.x55_c00166{left:340.483500px;}
.x4a_c00166{left:342.402000px;}
.xc_c00166{left:347.220000px;}
.x50_c00166{left:349.375500px;}
.x5d_c00166{left:350.857500px;}
.x8b_c00166{left:352.227000px;}
.x23_c00166{left:354.325500px;}
.x14_c00166{left:355.402500px;}
.x69_c00166{left:356.620500px;}
.x56_c00166{left:359.829000px;}
.x18_c00166{left:364.245000px;}
.x7_c00166{left:366.930000px;}
.x31_c00166{left:370.198500px;}
.x42_c00166{left:373.597500px;}
.x3b_c00166{left:376.078500px;}
.x24_c00166{left:380.016000px;}
.x75_c00166{left:381.382500px;}
.x35_c00166{left:386.136000px;}
.x2_c00166{left:387.990000px;}
.x1f_c00166{left:391.078500px;}
.x7d_c00166{left:395.712000px;}
.x76_c00166{left:398.659500px;}
.xd_c00166{left:400.410000px;}
.x8c_c00166{left:401.719500px;}
.x25_c00166{left:404.245500px;}
.x59_c00166{left:407.581500px;}
.x82_c00166{left:414.354000px;}
.x15_c00166{left:415.620000px;}
.x46_c00166{left:420.685500px;}
.x51_c00166{left:426.142500px;}
.x5c_c00166{left:428.451000px;}
.x8d_c00166{left:431.862000px;}
.x77_c00166{left:436.479000px;}
.x32_c00166{left:439.500000px;}
.x19_c00166{left:444.241500px;}
.x6a_c00166{left:446.473500px;}
.x36_c00166{left:448.254000px;}
.x2c_c00166{left:450.432000px;}
.x7e_c00166{left:452.076000px;}
.x26_c00166{left:457.392000px;}
.x7f_c00166{left:460.239000px;}
.x3_c00166{left:463.860000px;}
.x52_c00166{left:466.545000px;}
.x83_c00166{left:467.853000px;}
.x80_c00166{left:473.196000px;}
.x2d_c00166{left:475.798500px;}
.x8e_c00166{left:480.442500px;}
.x6b_c00166{left:482.922000px;}
.x84_c00166{left:488.566500px;}
.x1a_c00166{left:508.269000px;}
.x6c_c00166{left:512.418000px;}
.x81_c00166{left:516.387000px;}
.x8f_c00166{left:519.913500px;}
.x6d_c00166{left:532.888500px;}
.x91_c00166{left:558.895260px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.fsf_c00166{font-size:43.869825pt;}
.fsd_c00166{font-size:46.675089pt;}
.fs11_c00166{font-size:46.675999pt;}
.fsb_c00166{font-size:47.608591pt;}
.fsa_c00166{font-size:47.613707pt;}
.fs10_c00166{font-size:47.614873pt;}
.fse_c00166{font-size:49.476559pt;}
.fs12_c00166{font-size:54.144159pt;}
.fs3_c00166{font-size:56.000000pt;}
.fsc_c00166{font-size:56.010107pt;}
.fs6_c00166{font-size:59.733333pt;}
.fs1_c00166{font-size:60.666667pt;}
.fs4_c00166{font-size:62.533333pt;}
.fs0_c00166{font-size:63.466667pt;}
.fs2_c00166{font-size:64.400000pt;}
.fs5_c00166{font-size:65.333333pt;}
.fs7_c00166{font-size:66.266667pt;}
.fs9_c00166{font-size:66.279919pt;}
.fs8_c00166{font-size:68.133333pt;}
.y0_c00166{bottom:0.000000pt;}
.ycc_c00166{bottom:126.196600pt;}
.ycb_c00166{bottom:131.317500pt;}
.yca_c00166{bottom:132.004000pt;}
.yea_c00166{bottom:139.409787pt;}
.ye9_c00166{bottom:140.095653pt;}
.ye8_c00166{bottom:140.631280pt;}
.ye7_c00166{bottom:141.364773pt;}
.ye6_c00166{bottom:141.730347pt;}
.ye5_c00166{bottom:142.690747pt;}
.ye4_c00166{bottom:144.255600pt;}
.ye3_c00166{bottom:144.582267pt;}
.ye2_c00166{bottom:144.863627pt;}
.ye1_c00166{bottom:145.140640pt;}
.ye0_c00166{bottom:145.825760pt;}
.ydf_c00166{bottom:146.113840pt;}
.yde_c00166{bottom:147.068747pt;}
.ydd_c00166{bottom:157.840187pt;}
.ydc_c00166{bottom:162.000987pt;}
.ydb_c00166{bottom:172.414960pt;}
.yda_c00166{bottom:172.659813pt;}
.yd9_c00166{bottom:173.361520pt;}
.yd8_c00166{bottom:173.606667pt;}
.yd7_c00166{bottom:174.225173pt;}
.yd6_c00166{bottom:174.761040pt;}
.yd5_c00166{bottom:175.640907pt;}
.yd4_c00166{bottom:176.898640pt;}
.yd3_c00166{bottom:177.503787pt;}
.yd2_c00166{bottom:177.791813pt;}
.yd1_c00166{bottom:178.752187pt;}
.yd0_c00166{bottom:179.139840pt;}
.ycf_c00166{bottom:179.448613pt;}
.yce_c00166{bottom:180.051573pt;}
.ycd_c00166{bottom:180.317333pt;}
.yc9_c00166{bottom:188.304960pt;}
.yc8_c00166{bottom:188.525904pt;}
.yc7_c00166{bottom:189.096560pt;}
.yc6_c00166{bottom:189.459552pt;}
.yc5_c00166{bottom:191.954448pt;}
.yc4_c00166{bottom:192.308000pt;}
.yc3_c00166{bottom:204.155253pt;}
.yc2_c00166{bottom:204.923093pt;}
.yc1_c00166{bottom:205.153440pt;}
.yc0_c00166{bottom:205.298560pt;}
.ybf_c00166{bottom:206.300587pt;}
.ybe_c00166{bottom:206.737680pt;}
.ybd_c00166{bottom:207.265760pt;}
.ybc_c00166{bottom:208.283627pt;}
.ybb_c00166{bottom:209.282107pt;}
.yba_c00166{bottom:209.452480pt;}
.yb9_c00166{bottom:210.410453pt;}
.yb8_c00166{bottom:210.904853pt;}
.yb7_c00166{bottom:211.389840pt;}
.yb6_c00166{bottom:211.528240pt;}
.yb5_c00166{bottom:211.890667pt;}
.yb4_c00166{bottom:220.654596pt;}
.yb3_c00166{bottom:221.438865pt;}
.yb2_c00166{bottom:222.077595pt;}
.yb1_c00166{bottom:222.369384pt;}
.yb0_c00166{bottom:223.948943pt;}
.yaf_c00166{bottom:224.531305pt;}
.yae_c00166{bottom:224.803816pt;}
.yad_c00166{bottom:225.434109pt;}
.yac_c00166{bottom:226.077399pt;}
.yab_c00166{bottom:226.565065pt;}
.yaa_c00166{bottom:226.802667pt;}
.ya9_c00166{bottom:238.057403pt;}
.ya8_c00166{bottom:242.687472pt;}
.ya7_c00166{bottom:243.166104pt;}
.ya6_c00166{bottom:243.814768pt;}
.ya5_c00166{bottom:251.897693pt;}
.ya4_c00166{bottom:252.243417pt;}
.ya3_c00166{bottom:252.741572pt;}
.ya2_c00166{bottom:253.357147pt;}
.ya1_c00166{bottom:253.890667pt;}
.ya0_c00166{bottom:254.364983pt;}
.y9f_c00166{bottom:254.874664pt;}
.y9e_c00166{bottom:255.135749pt;}
.y9d_c00166{bottom:255.480865pt;}
.y9c_c00166{bottom:256.243981pt;}
.y9b_c00166{bottom:256.740591pt;}
.y9a_c00166{bottom:257.416129pt;}
.y99_c00166{bottom:258.223452pt;}
.y98_c00166{bottom:259.048913pt;}
.y97_c00166{bottom:259.313773pt;}
.y96_c00166{bottom:260.401333pt;}
.y95_c00166{bottom:298.154133pt;}
.y94_c00166{bottom:298.436277pt;}
.y93_c00166{bottom:299.109717pt;}
.y92_c00166{bottom:299.386261pt;}
.y91_c00166{bottom:300.157589pt;}
.y90_c00166{bottom:300.521461pt;}
.y8f_c00166{bottom:300.930581pt;}
.y8e_c00166{bottom:301.362869pt;}
.y8d_c00166{bottom:301.685333pt;}
.y8c_c00166{bottom:327.882160pt;}
.y8b_c00166{bottom:328.410827pt;}
.y8a_c00166{bottom:329.558080pt;}
.y89_c00166{bottom:330.081067pt;}
.y88_c00166{bottom:330.484000pt;}
.y87_c00166{bottom:347.590667pt;}
.y86_c00166{bottom:348.270667pt;}
.y85_c00166{bottom:348.741333pt;}
.y84_c00166{bottom:349.149333pt;}
.y83_c00166{bottom:349.732000pt;}
.y82_c00166{bottom:350.586667pt;}
.y81_c00166{bottom:351.306667pt;}
.y80_c00166{bottom:352.089333pt;}
.y7f_c00166{bottom:368.354667pt;}
.y7e_c00166{bottom:369.468000pt;}
.y7d_c00166{bottom:370.522667pt;}
.y7c_c00166{bottom:371.358667pt;}
.y7b_c00166{bottom:373.929333pt;}
.y7a_c00166{bottom:387.344000pt;}
.y79_c00166{bottom:388.312000pt;}
.y78_c00166{bottom:389.041333pt;}
.y77_c00166{bottom:390.053333pt;}
.y76_c00166{bottom:391.212000pt;}
.y75_c00166{bottom:391.625333pt;}
.y74_c00166{bottom:393.128000pt;}
.y73_c00166{bottom:409.152000pt;}
.y72_c00166{bottom:409.970667pt;}
.y71_c00166{bottom:410.197333pt;}
.y70_c00166{bottom:410.561333pt;}
.y6f_c00166{bottom:411.584000pt;}
.y6e_c00166{bottom:411.860000pt;}
.y6d_c00166{bottom:412.424000pt;}
.y6c_c00166{bottom:412.905333pt;}
.y6b_c00166{bottom:413.285333pt;}
.y6a_c00166{bottom:428.661333pt;}
.y69_c00166{bottom:429.394667pt;}
.y68_c00166{bottom:429.721333pt;}
.y67_c00166{bottom:430.454667pt;}
.y66_c00166{bottom:431.586667pt;}
.y65_c00166{bottom:432.040000pt;}
.y64_c00166{bottom:432.814667pt;}
.y63_c00166{bottom:433.486667pt;}
.y62_c00166{bottom:447.328000pt;}
.y61_c00166{bottom:447.477333pt;}
.y60_c00166{bottom:448.046667pt;}
.y5f_c00166{bottom:448.774667pt;}
.y5e_c00166{bottom:449.410667pt;}
.y5d_c00166{bottom:450.198667pt;}
.y5c_c00166{bottom:451.622667pt;}
.y5b_c00166{bottom:452.096000pt;}
.y5a_c00166{bottom:452.429333pt;}
.y59_c00166{bottom:453.062667pt;}
.y58_c00166{bottom:453.605333pt;}
.y57_c00166{bottom:470.386667pt;}
.y56_c00166{bottom:470.738667pt;}
.y55_c00166{bottom:471.469333pt;}
.y54_c00166{bottom:472.202667pt;}
.y53_c00166{bottom:472.758667pt;}
.y52_c00166{bottom:473.044000pt;}
.y51_c00166{bottom:488.996000pt;}
.y50_c00166{bottom:489.741333pt;}
.y4f_c00166{bottom:490.081333pt;}
.y4e_c00166{bottom:490.668000pt;}
.y4d_c00166{bottom:491.141333pt;}
.y4c_c00166{bottom:491.732000pt;}
.y4b_c00166{bottom:492.484000pt;}
.y4a_c00166{bottom:509.081333pt;}
.y49_c00166{bottom:510.012000pt;}
.y48_c00166{bottom:510.592000pt;}
.y47_c00166{bottom:511.386667pt;}
.y46_c00166{bottom:512.005333pt;}
.y45_c00166{bottom:512.740000pt;}
.y44_c00166{bottom:513.081333pt;}
.y43_c00166{bottom:513.614667pt;}
.y42_c00166{bottom:531.370667pt;}
.y41_c00166{bottom:531.786667pt;}
.y40_c00166{bottom:532.496000pt;}
.y3f_c00166{bottom:532.957333pt;}
.y3e_c00166{bottom:533.525333pt;}
.y3d_c00166{bottom:549.312000pt;}
.y3c_c00166{bottom:550.057333pt;}
.y3b_c00166{bottom:550.513333pt;}
.y3a_c00166{bottom:551.038667pt;}
.y39_c00166{bottom:551.377333pt;}
.y38_c00166{bottom:552.206667pt;}
.y37_c00166{bottom:552.965333pt;}
.y36_c00166{bottom:568.769333pt;}
.y35_c00166{bottom:569.542667pt;}
.y34_c00166{bottom:570.981333pt;}
.y33_c00166{bottom:571.914667pt;}
.y32_c00166{bottom:572.398667pt;}
.y31_c00166{bottom:572.517333pt;}
.y30_c00166{bottom:589.214667pt;}
.y2f_c00166{bottom:590.200000pt;}
.y2e_c00166{bottom:590.752000pt;}
.y2d_c00166{bottom:591.409333pt;}
.y2c_c00166{bottom:592.124000pt;}
.y2b_c00166{bottom:592.769333pt;}
.y2a_c00166{bottom:593.092000pt;}
.y29_c00166{bottom:593.764000pt;}
.y28_c00166{bottom:609.182667pt;}
.y27_c00166{bottom:609.521333pt;}
.y26_c00166{bottom:610.360000pt;}
.y25_c00166{bottom:611.065333pt;}
.y24_c00166{bottom:612.401333pt;}
.y23_c00166{bottom:612.966667pt;}
.y22_c00166{bottom:613.325333pt;}
.y21_c00166{bottom:613.924000pt;}
.y20_c00166{bottom:629.804000pt;}
.y1f_c00166{bottom:630.560000pt;}
.y1e_c00166{bottom:630.904000pt;}
.y1d_c00166{bottom:631.269333pt;}
.y1c_c00166{bottom:632.109333pt;}
.y1b_c00166{bottom:632.613333pt;}
.y1a_c00166{bottom:633.446667pt;}
.y19_c00166{bottom:633.914667pt;}
.y18_c00166{bottom:634.565333pt;}
.y17_c00166{bottom:651.378667pt;}
.y16_c00166{bottom:652.046667pt;}
.y15_c00166{bottom:653.002667pt;}
.y14_c00166{bottom:653.457333pt;}
.y13_c00166{bottom:653.681333pt;}
.y12_c00166{bottom:654.246667pt;}
.y11_c00166{bottom:669.397333pt;}
.y10_c00166{bottom:670.421333pt;}
.yf_c00166{bottom:671.701333pt;}
.ye_c00166{bottom:673.001333pt;}
.yd_c00166{bottom:673.852000pt;}
.yc_c00166{bottom:692.510667pt;}
.yb_c00166{bottom:693.260000pt;}
.ya_c00166{bottom:693.552000pt;}
.y9_c00166{bottom:693.996000pt;}
.y8_c00166{bottom:694.204000pt;}
.y7_c00166{bottom:694.814667pt;}
.y6_c00166{bottom:695.484000pt;}
.y5_c00166{bottom:695.716000pt;}
.y4_c00166{bottom:696.481333pt;}
.y3_c00166{bottom:713.686667pt;}
.y2_c00166{bottom:733.806667pt;}
.y1_c00166{bottom:771.833333pt;}
.h11_c00166{height:43.869825pt;}
.hf_c00166{height:46.675089pt;}
.h13_c00166{height:46.675999pt;}
.hd_c00166{height:47.608591pt;}
.hc_c00166{height:47.613707pt;}
.h12_c00166{height:47.614873pt;}
.h10_c00166{height:49.476559pt;}
.h14_c00166{height:54.144159pt;}
.h5_c00166{height:56.000000pt;}
.he_c00166{height:56.010107pt;}
.h8_c00166{height:59.733333pt;}
.h3_c00166{height:60.666667pt;}
.h6_c00166{height:62.533333pt;}
.h2_c00166{height:63.466667pt;}
.h4_c00166{height:64.400000pt;}
.h7_c00166{height:65.333333pt;}
.h9_c00166{height:66.266667pt;}
.hb_c00166{height:66.279919pt;}
.ha_c00166{height:68.133333pt;}
.h1_c00166{height:893.333333pt;}
.h0_c00166{height:893.466667pt;}
.w0_c00166{width:627.066667pt;}
.w1_c00166{width:627.333333pt;}
.x0_c00166{left:0.000000pt;}
.x63_c00166{left:26.118667pt;}
.x6e_c00166{left:39.136333pt;}
.x6f_c00166{left:71.591725pt;}
.x86_c00166{left:79.269333pt;}
.x64_c00166{left:83.358667pt;}
.xe_c00166{left:85.860000pt;}
.x78_c00166{left:90.361333pt;}
.x87_c00166{left:92.557333pt;}
.x70_c00166{left:95.519269pt;}
.x65_c00166{left:97.298667pt;}
.x4b_c00166{left:100.812000pt;}
.x53_c00166{left:104.432000pt;}
.x43_c00166{left:105.681333pt;}
.x27_c00166{left:106.868000pt;}
.x1b_c00166{left:108.469333pt;}
.x71_c00166{left:118.181333pt;}
.x79_c00166{left:121.530667pt;}
.x88_c00166{left:122.705333pt;}
.x90_c00166{left:124.378240pt;}
.x4c_c00166{left:127.930667pt;}
.x33_c00166{left:130.794667pt;}
.x85_c00166{left:132.664000pt;}
.x47_c00166{left:138.300000pt;}
.x8_c00166{left:139.440000pt;}
.xf_c00166{left:140.481333pt;}
.x3c_c00166{left:142.785333pt;}
.x72_c00166{left:143.848000pt;}
.x28_c00166{left:146.768000pt;}
.x2e_c00166{left:148.389333pt;}
.x20_c00166{left:149.646667pt;}
.x37_c00166{left:153.413333pt;}
.x1_c00166{left:155.280000pt;}
.x10_c00166{left:157.048000pt;}
.x4d_c00166{left:159.617333pt;}
.x3f_c00166{left:161.574667pt;}
.x44_c00166{left:163.512000pt;}
.x5f_c00166{left:164.438667pt;}
.x2f_c00166{left:168.544000pt;}
.x29_c00166{left:170.684000pt;}
.x1c_c00166{left:174.334667pt;}
.x3d_c00166{left:176.205333pt;}
.x60_c00166{left:177.874667pt;}
.x21_c00166{left:178.857333pt;}
.x54_c00166{left:180.576000pt;}
.x66_c00166{left:183.234667pt;}
.x48_c00166{left:190.854667pt;}
.x9_c00166{left:192.720000pt;}
.x7a_c00166{left:194.149333pt;}
.x5a_c00166{left:196.561333pt;}
.x4e_c00166{left:199.921333pt;}
.x7b_c00166{left:202.668000pt;}
.x16_c00166{left:204.266667pt;}
.x4_c00166{left:205.200000pt;}
.x40_c00166{left:207.480000pt;}
.x2a_c00166{left:208.388000pt;}
.x57_c00166{left:210.293333pt;}
.x1d_c00166{left:212.261333pt;}
.x67_c00166{left:218.789333pt;}
.x89_c00166{left:219.946667pt;}
.x5e_c00166{left:222.232000pt;}
.x5_c00166{left:223.920000pt;}
.x73_c00166{left:225.221333pt;}
.x38_c00166{left:226.377333pt;}
.x61_c00166{left:228.094667pt;}
.x22_c00166{left:230.928000pt;}
.xa_c00166{left:237.360000pt;}
.x34_c00166{left:240.486667pt;}
.x3e_c00166{left:245.134667pt;}
.x41_c00166{left:246.113333pt;}
.x11_c00166{left:248.481333pt;}
.x8a_c00166{left:250.204000pt;}
.x17_c00166{left:251.544000pt;}
.x7c_c00166{left:252.592000pt;}
.x30_c00166{left:253.493333pt;}
.x74_c00166{left:255.872000pt;}
.x39_c00166{left:259.206667pt;}
.x62_c00166{left:260.233333pt;}
.xb_c00166{left:261.840000pt;}
.x12_c00166{left:263.368000pt;}
.x6_c00166{left:269.760000pt;}
.x4f_c00166{left:271.144000pt;}
.x58_c00166{left:274.213333pt;}
.x49_c00166{left:282.364000pt;}
.x68_c00166{left:285.090667pt;}
.x3a_c00166{left:287.725333pt;}
.x45_c00166{left:290.530667pt;}
.x1e_c00166{left:291.936000pt;}
.x13_c00166{left:295.041333pt;}
.x2b_c00166{left:297.425333pt;}
.x5b_c00166{left:299.976000pt;}
.x55_c00166{left:302.652000pt;}
.x4a_c00166{left:304.357333pt;}
.xc_c00166{left:308.640000pt;}
.x50_c00166{left:310.556000pt;}
.x5d_c00166{left:311.873333pt;}
.x8b_c00166{left:313.090667pt;}
.x23_c00166{left:314.956000pt;}
.x14_c00166{left:315.913333pt;}
.x69_c00166{left:316.996000pt;}
.x56_c00166{left:319.848000pt;}
.x18_c00166{left:323.773333pt;}
.x7_c00166{left:326.160000pt;}
.x31_c00166{left:329.065333pt;}
.x42_c00166{left:332.086667pt;}
.x3b_c00166{left:334.292000pt;}
.x24_c00166{left:337.792000pt;}
.x75_c00166{left:339.006667pt;}
.x35_c00166{left:343.232000pt;}
.x2_c00166{left:344.880000pt;}
.x1f_c00166{left:347.625333pt;}
.x7d_c00166{left:351.744000pt;}
.x76_c00166{left:354.364000pt;}
.xd_c00166{left:355.920000pt;}
.x8c_c00166{left:357.084000pt;}
.x25_c00166{left:359.329333pt;}
.x59_c00166{left:362.294667pt;}
.x82_c00166{left:368.314667pt;}
.x15_c00166{left:369.440000pt;}
.x46_c00166{left:373.942667pt;}
.x51_c00166{left:378.793333pt;}
.x5c_c00166{left:380.845333pt;}
.x8d_c00166{left:383.877333pt;}
.x77_c00166{left:387.981333pt;}
.x32_c00166{left:390.666667pt;}
.x19_c00166{left:394.881333pt;}
.x6a_c00166{left:396.865333pt;}
.x36_c00166{left:398.448000pt;}
.x2c_c00166{left:400.384000pt;}
.x7e_c00166{left:401.845333pt;}
.x26_c00166{left:406.570667pt;}
.x7f_c00166{left:409.101333pt;}
.x3_c00166{left:412.320000pt;}
.x52_c00166{left:414.706667pt;}
.x83_c00166{left:415.869333pt;}
.x80_c00166{left:420.618667pt;}
.x2d_c00166{left:422.932000pt;}
.x8e_c00166{left:427.060000pt;}
.x6b_c00166{left:429.264000pt;}
.x84_c00166{left:434.281333pt;}
.x1a_c00166{left:451.794667pt;}
.x6c_c00166{left:455.482667pt;}
.x81_c00166{left:459.010667pt;}
.x8f_c00166{left:462.145333pt;}
.x6d_c00166{left:473.678667pt;}
.x91_c00166{left:496.795787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.me9_c00167{transform:matrix(0.036585,-0.000622,0.004249,0.249964,0,0);-ms-transform:matrix(0.036585,-0.000622,0.004249,0.249964,0,0);-webkit-transform:matrix(0.036585,-0.000622,0.004249,0.249964,0,0);}
.md1_c00167{transform:matrix(0.046078,-0.000783,0.004249,0.249964,0,0);-ms-transform:matrix(0.046078,-0.000783,0.004249,0.249964,0,0);-webkit-transform:matrix(0.046078,-0.000783,0.004249,0.249964,0,0);}
.mc3_c00167{transform:matrix(0.059361,-0.001009,0.004249,0.249964,0,0);-ms-transform:matrix(0.059361,-0.001009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.059361,-0.001009,0.004249,0.249964,0,0);}
.me0_c00167{transform:matrix(0.097006,-0.001649,0.004249,0.249964,0,0);-ms-transform:matrix(0.097006,-0.001649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.097006,-0.001649,0.004249,0.249964,0,0);}
.m23_c00167{transform:matrix(0.103728,-0.001556,0.003750,0.249972,0,0);-ms-transform:matrix(0.103728,-0.001556,0.003750,0.249972,0,0);-webkit-transform:matrix(0.103728,-0.001556,0.003750,0.249972,0,0);}
.mb1_c00167{transform:matrix(0.106245,-0.001806,0.004249,0.249964,0,0);-ms-transform:matrix(0.106245,-0.001806,0.004249,0.249964,0,0);-webkit-transform:matrix(0.106245,-0.001806,0.004249,0.249964,0,0);}
.m11c_c00167{transform:matrix(0.109168,-0.003384,0.007746,0.249880,0,0);-ms-transform:matrix(0.109168,-0.003384,0.007746,0.249880,0,0);-webkit-transform:matrix(0.109168,-0.003384,0.007746,0.249880,0,0);}
.m9e_c00167{transform:matrix(0.109758,-0.001646,0.003750,0.249972,0,0);-ms-transform:matrix(0.109758,-0.001646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.109758,-0.001646,0.003750,0.249972,0,0);}
.m39_c00167{transform:matrix(0.138869,-0.002083,0.003750,0.249972,0,0);-ms-transform:matrix(0.138869,-0.002083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.138869,-0.002083,0.003750,0.249972,0,0);}
.m55_c00167{transform:matrix(0.141644,-0.002125,0.003750,0.249972,0,0);-ms-transform:matrix(0.141644,-0.002125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141644,-0.002125,0.003750,0.249972,0,0);}
.m4a_c00167{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);}
.m65_c00167{transform:matrix(0.146853,-0.002203,0.003750,0.249972,0,0);-ms-transform:matrix(0.146853,-0.002203,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146853,-0.002203,0.003750,0.249972,0,0);}
.m82_c00167{transform:matrix(0.147963,-0.002219,0.003750,0.249972,0,0);-ms-transform:matrix(0.147963,-0.002219,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147963,-0.002219,0.003750,0.249972,0,0);}
.mdb_c00167{transform:matrix(0.150933,-0.002566,0.004249,0.249964,0,0);-ms-transform:matrix(0.150933,-0.002566,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150933,-0.002566,0.004249,0.249964,0,0);}
.m10_c00167{transform:matrix(0.151218,-0.002268,0.003750,0.249972,0,0);-ms-transform:matrix(0.151218,-0.002268,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151218,-0.002268,0.003750,0.249972,0,0);}
.ma4_c00167{transform:matrix(0.151843,-0.002278,0.003750,0.249972,0,0);-ms-transform:matrix(0.151843,-0.002278,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151843,-0.002278,0.003750,0.249972,0,0);}
.m10d_c00167{transform:matrix(0.153403,-0.002608,0.004249,0.249964,0,0);-ms-transform:matrix(0.153403,-0.002608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153403,-0.002608,0.004249,0.249964,0,0);}
.m2a_c00167{transform:matrix(0.156122,-0.002342,0.003750,0.249972,0,0);-ms-transform:matrix(0.156122,-0.002342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156122,-0.002342,0.003750,0.249972,0,0);}
.mac_c00167{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);}
.m8b_c00167{transform:matrix(0.156427,-0.002346,0.003750,0.249972,0,0);-ms-transform:matrix(0.156427,-0.002346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156427,-0.002346,0.003750,0.249972,0,0);}
.m3d_c00167{transform:matrix(0.160282,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160282,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160282,-0.002404,0.003750,0.249972,0,0);}
.m96_c00167{transform:matrix(0.161832,-0.002427,0.003750,0.249972,0,0);-ms-transform:matrix(0.161832,-0.002427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161832,-0.002427,0.003750,0.249972,0,0);}
.m42_c00167{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);}
.mb4_c00167{transform:matrix(0.165926,-0.002821,0.004249,0.249964,0,0);-ms-transform:matrix(0.165926,-0.002821,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165926,-0.002821,0.004249,0.249964,0,0);}
.m95_c00167{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);}
.mc5_c00167{transform:matrix(0.168441,-0.002863,0.004249,0.249964,0,0);-ms-transform:matrix(0.168441,-0.002863,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168441,-0.002863,0.004249,0.249964,0,0);}
.m54_c00167{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);}
.m8d_c00167{transform:matrix(0.173126,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173126,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173126,-0.002597,0.003750,0.249972,0,0);}
.mad_c00167{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);}
.m101_c00167{transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);-ms-transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);}
.m41_c00167{transform:matrix(0.173490,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173490,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173490,-0.002602,0.003750,0.249972,0,0);}
.mc4_c00167{transform:matrix(0.177814,-0.003023,0.004249,0.249964,0,0);-ms-transform:matrix(0.177814,-0.003023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177814,-0.003023,0.004249,0.249964,0,0);}
.m45_c00167{transform:matrix(0.178485,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178485,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178485,-0.002677,0.003750,0.249972,0,0);}
.m35_c00167{transform:matrix(0.178920,-0.002684,0.003750,0.249972,0,0);-ms-transform:matrix(0.178920,-0.002684,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178920,-0.002684,0.003750,0.249972,0,0);}
.ma0_c00167{transform:matrix(0.179065,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179065,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179065,-0.002686,0.003750,0.249972,0,0);}
.m2b_c00167{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);}
.m84_c00167{transform:matrix(0.180560,-0.002708,0.003750,0.249972,0,0);-ms-transform:matrix(0.180560,-0.002708,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180560,-0.002708,0.003750,0.249972,0,0);}
.md7_c00167{transform:matrix(0.180629,-0.003071,0.004249,0.249964,0,0);-ms-transform:matrix(0.180629,-0.003071,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180629,-0.003071,0.004249,0.249964,0,0);}
.m7b_c00167{transform:matrix(0.181420,-0.002721,0.003750,0.249972,0,0);-ms-transform:matrix(0.181420,-0.002721,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181420,-0.002721,0.003750,0.249972,0,0);}
.md0_c00167{transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);}
.m79_c00167{transform:matrix(0.182639,-0.002740,0.003750,0.249972,0,0);-ms-transform:matrix(0.182639,-0.002740,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182639,-0.002740,0.003750,0.249972,0,0);}
.m3e_c00167{transform:matrix(0.182789,-0.002742,0.003750,0.249972,0,0);-ms-transform:matrix(0.182789,-0.002742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182789,-0.002742,0.003750,0.249972,0,0);}
.mc_c00167{transform:matrix(0.182839,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182839,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182839,-0.002743,0.003750,0.249972,0,0);}
.m3f_c00167{transform:matrix(0.183224,-0.002748,0.003750,0.249972,0,0);-ms-transform:matrix(0.183224,-0.002748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183224,-0.002748,0.003750,0.249972,0,0);}
.m12_c00167{transform:matrix(0.183549,-0.002753,0.003750,0.249972,0,0);-ms-transform:matrix(0.183549,-0.002753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183549,-0.002753,0.003750,0.249972,0,0);}
.ma8_c00167{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);}
.m87_c00167{transform:matrix(0.185989,-0.002790,0.003750,0.249972,0,0);-ms-transform:matrix(0.185989,-0.002790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185989,-0.002790,0.003750,0.249972,0,0);}
.m92_c00167{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);}
.m5d_c00167{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);}
.m2c_c00167{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);}
.ma1_c00167{transform:matrix(0.186309,-0.002795,0.003750,0.249972,0,0);-ms-transform:matrix(0.186309,-0.002795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186309,-0.002795,0.003750,0.249972,0,0);}
.m67_c00167{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);}
.m34_c00167{transform:matrix(0.186744,-0.002801,0.003750,0.249972,0,0);-ms-transform:matrix(0.186744,-0.002801,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186744,-0.002801,0.003750,0.249972,0,0);}
.m71_c00167{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);}
.m56_c00167{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);}
.m10e_c00167{transform:matrix(0.187848,-0.003193,0.004249,0.249964,0,0);-ms-transform:matrix(0.187848,-0.003193,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187848,-0.003193,0.004249,0.249964,0,0);}
.md9_c00167{transform:matrix(0.188973,-0.003213,0.004249,0.249964,0,0);-ms-transform:matrix(0.188973,-0.003213,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188973,-0.003213,0.004249,0.249964,0,0);}
.m86_c00167{transform:matrix(0.189299,-0.002839,0.003750,0.249972,0,0);-ms-transform:matrix(0.189299,-0.002839,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189299,-0.002839,0.003750,0.249972,0,0);}
.m5_c00167{transform:matrix(0.189369,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189369,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189369,-0.002841,0.003750,0.249972,0,0);}
.m6e_c00167{transform:matrix(0.189389,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189389,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189389,-0.002841,0.003750,0.249972,0,0);}
.mdd_c00167{transform:matrix(0.189798,-0.003227,0.004249,0.249964,0,0);-ms-transform:matrix(0.189798,-0.003227,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189798,-0.003227,0.004249,0.249964,0,0);}
.me7_c00167{transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);-ms-transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);}
.m75_c00167{transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);-ms-transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);}
.m2e_c00167{transform:matrix(0.190439,-0.002857,0.003750,0.249972,0,0);-ms-transform:matrix(0.190439,-0.002857,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190439,-0.002857,0.003750,0.249972,0,0);}
.m28_c00167{transform:matrix(0.190529,-0.002858,0.003750,0.249972,0,0);-ms-transform:matrix(0.190529,-0.002858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190529,-0.002858,0.003750,0.249972,0,0);}
.m16_c00167{transform:matrix(0.190789,-0.002862,0.003750,0.249972,0,0);-ms-transform:matrix(0.190789,-0.002862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190789,-0.002862,0.003750,0.249972,0,0);}
.mf6_c00167{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);}
.m4_c00167{transform:matrix(0.192188,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192188,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192188,-0.002883,0.003750,0.249972,0,0);}
.m0_c00167{transform:matrix(0.192428,-0.002886,0.003750,0.249972,0,0);-ms-transform:matrix(0.192428,-0.002886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192428,-0.002886,0.003750,0.249972,0,0);}
.mb8_c00167{transform:matrix(0.192537,-0.003273,0.004249,0.249964,0,0);-ms-transform:matrix(0.192537,-0.003273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192537,-0.003273,0.004249,0.249964,0,0);}
.ma5_c00167{transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);}
.m1d_c00167{transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);}
.ma9_c00167{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);}
.m14_c00167{transform:matrix(0.192793,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192793,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192793,-0.002892,0.003750,0.249972,0,0);}
.m7_c00167{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);}
.mf1_c00167{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);}
.m30_c00167{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);}
.m61_c00167{transform:matrix(0.195288,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195288,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195288,-0.002929,0.003750,0.249972,0,0);}
.m9_c00167{transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);}
.ma3_c00167{transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);}
.m9f_c00167{transform:matrix(0.196153,-0.002942,0.003750,0.249972,0,0);-ms-transform:matrix(0.196153,-0.002942,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196153,-0.002942,0.003750,0.249972,0,0);}
.mf3_c00167{transform:matrix(0.196782,-0.003345,0.004249,0.249964,0,0);-ms-transform:matrix(0.196782,-0.003345,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196782,-0.003345,0.004249,0.249964,0,0);}
.mb_c00167{transform:matrix(0.196933,-0.002954,0.003750,0.249972,0,0);-ms-transform:matrix(0.196933,-0.002954,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196933,-0.002954,0.003750,0.249972,0,0);}
.m102_c00167{transform:matrix(0.197182,-0.003352,0.004249,0.249964,0,0);-ms-transform:matrix(0.197182,-0.003352,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197182,-0.003352,0.004249,0.249964,0,0);}
.m3a_c00167{transform:matrix(0.197278,-0.002959,0.003750,0.249972,0,0);-ms-transform:matrix(0.197278,-0.002959,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197278,-0.002959,0.003750,0.249972,0,0);}
.ma_c00167{transform:matrix(0.198088,-0.002971,0.003750,0.249972,0,0);-ms-transform:matrix(0.198088,-0.002971,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198088,-0.002971,0.003750,0.249972,0,0);}
.m94_c00167{transform:matrix(0.198398,-0.002976,0.003750,0.249972,0,0);-ms-transform:matrix(0.198398,-0.002976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198398,-0.002976,0.003750,0.249972,0,0);}
.m5a_c00167{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);}
.m1b_c00167{transform:matrix(0.199143,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199143,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199143,-0.002987,0.003750,0.249972,0,0);}
.m48_c00167{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);}
.m98_c00167{transform:matrix(0.199998,-0.003000,0.003750,0.249972,0,0);-ms-transform:matrix(0.199998,-0.003000,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199998,-0.003000,0.003750,0.249972,0,0);}
.m58_c00167{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);}
.mc7_c00167{transform:matrix(0.200676,-0.003411,0.004249,0.249964,0,0);-ms-transform:matrix(0.200676,-0.003411,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200676,-0.003411,0.004249,0.249964,0,0);}
.m5b_c00167{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);}
.m31_c00167{transform:matrix(0.201607,-0.003024,0.003750,0.249972,0,0);-ms-transform:matrix(0.201607,-0.003024,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201607,-0.003024,0.003750,0.249972,0,0);}
.m66_c00167{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);}
.m91_c00167{transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);}
.mde_c00167{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);}
.m107_c00167{transform:matrix(0.202836,-0.003448,0.004249,0.249964,0,0);-ms-transform:matrix(0.202836,-0.003448,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202836,-0.003448,0.004249,0.249964,0,0);}
.ma6_c00167{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);}
.m49_c00167{transform:matrix(0.202947,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202947,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202947,-0.003044,0.003750,0.249972,0,0);}
.m37_c00167{transform:matrix(0.203152,-0.003047,0.003750,0.249972,0,0);-ms-transform:matrix(0.203152,-0.003047,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203152,-0.003047,0.003750,0.249972,0,0);}
.m18_c00167{transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);}
.m27_c00167{transform:matrix(0.203642,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203642,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203642,-0.003055,0.003750,0.249972,0,0);}
.m99_c00167{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);}
.m33_c00167{transform:matrix(0.204057,-0.003061,0.003750,0.249972,0,0);-ms-transform:matrix(0.204057,-0.003061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204057,-0.003061,0.003750,0.249972,0,0);}
.m57_c00167{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);}
.m76_c00167{transform:matrix(0.205012,-0.003075,0.003750,0.249972,0,0);-ms-transform:matrix(0.205012,-0.003075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205012,-0.003075,0.003750,0.249972,0,0);}
.m5e_c00167{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);}
.m7a_c00167{transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);}
.mff_c00167{transform:matrix(0.206360,-0.003508,0.004249,0.249964,0,0);-ms-transform:matrix(0.206360,-0.003508,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206360,-0.003508,0.004249,0.249964,0,0);}
.m10b_c00167{transform:matrix(0.206515,-0.003511,0.004249,0.249964,0,0);-ms-transform:matrix(0.206515,-0.003511,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206515,-0.003511,0.004249,0.249964,0,0);}
.m26_c00167{transform:matrix(0.207082,-0.003106,0.003750,0.249972,0,0);-ms-transform:matrix(0.207082,-0.003106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207082,-0.003106,0.003750,0.249972,0,0);}
.m106_c00167{transform:matrix(0.207210,-0.003523,0.004249,0.249964,0,0);-ms-transform:matrix(0.207210,-0.003523,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207210,-0.003523,0.004249,0.249964,0,0);}
.m8c_c00167{transform:matrix(0.207222,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207222,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207222,-0.003108,0.003750,0.249972,0,0);}
.m29_c00167{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);}
.m21_c00167{transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208367,-0.003125,0.003750,0.249972,0,0);}
.m4c_c00167{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);}
.m1f_c00167{transform:matrix(0.208522,-0.003128,0.003750,0.249972,0,0);-ms-transform:matrix(0.208522,-0.003128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208522,-0.003128,0.003750,0.249972,0,0);}
.mcc_c00167{transform:matrix(0.208605,-0.003546,0.004249,0.249964,0,0);-ms-transform:matrix(0.208605,-0.003546,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208605,-0.003546,0.004249,0.249964,0,0);}
.m50_c00167{transform:matrix(0.209916,-0.003149,0.003750,0.249972,0,0);-ms-transform:matrix(0.209916,-0.003149,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209916,-0.003149,0.003750,0.249972,0,0);}
.m104_c00167{transform:matrix(0.209970,-0.003569,0.004249,0.249964,0,0);-ms-transform:matrix(0.209970,-0.003569,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209970,-0.003569,0.004249,0.249964,0,0);}
.m78_c00167{transform:matrix(0.210611,-0.003159,0.003750,0.249972,0,0);-ms-transform:matrix(0.210611,-0.003159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210611,-0.003159,0.003750,0.249972,0,0);}
.m77_c00167{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);}
.m83_c00167{transform:matrix(0.210906,-0.003164,0.003750,0.249972,0,0);-ms-transform:matrix(0.210906,-0.003164,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210906,-0.003164,0.003750,0.249972,0,0);}
.m3b_c00167{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);}
.mcf_c00167{transform:matrix(0.212039,-0.003605,0.004249,0.249964,0,0);-ms-transform:matrix(0.212039,-0.003605,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212039,-0.003605,0.004249,0.249964,0,0);}
.ma2_c00167{transform:matrix(0.212136,-0.003182,0.003750,0.249972,0,0);-ms-transform:matrix(0.212136,-0.003182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212136,-0.003182,0.003750,0.249972,0,0);}
.m6d_c00167{transform:matrix(0.212591,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212591,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212591,-0.003189,0.003750,0.249972,0,0);}
.m6a_c00167{transform:matrix(0.213206,-0.003198,0.003750,0.249972,0,0);-ms-transform:matrix(0.213206,-0.003198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213206,-0.003198,0.003750,0.249972,0,0);}
.m25_c00167{transform:matrix(0.213401,-0.003201,0.003750,0.249972,0,0);-ms-transform:matrix(0.213401,-0.003201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213401,-0.003201,0.003750,0.249972,0,0);}
.mf9_c00167{transform:matrix(0.213474,-0.003629,0.004249,0.249964,0,0);-ms-transform:matrix(0.213474,-0.003629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213474,-0.003629,0.004249,0.249964,0,0);}
.m6f_c00167{transform:matrix(0.213751,-0.003206,0.003750,0.249972,0,0);-ms-transform:matrix(0.213751,-0.003206,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213751,-0.003206,0.003750,0.249972,0,0);}
.m36_c00167{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);}
.md_c00167{transform:matrix(0.213996,-0.003210,0.003750,0.249972,0,0);-ms-transform:matrix(0.213996,-0.003210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213996,-0.003210,0.003750,0.249972,0,0);}
.m1c_c00167{transform:matrix(0.214366,-0.003215,0.003750,0.249972,0,0);-ms-transform:matrix(0.214366,-0.003215,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214366,-0.003215,0.003750,0.249972,0,0);}
.m20_c00167{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);}
.mf0_c00167{transform:matrix(0.214829,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214829,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214829,-0.003652,0.004249,0.249964,0,0);}
.m8e_c00167{transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);-ms-transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);}
.m47_c00167{transform:matrix(0.215466,-0.003232,0.003750,0.249972,0,0);-ms-transform:matrix(0.215466,-0.003232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215466,-0.003232,0.003750,0.249972,0,0);}
.m4b_c00167{transform:matrix(0.215506,-0.003233,0.003750,0.249972,0,0);-ms-transform:matrix(0.215506,-0.003233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215506,-0.003233,0.003750,0.249972,0,0);}
.m85_c00167{transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);-ms-transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);}
.m112_c00167{transform:matrix(0.215981,-0.006695,0.007746,0.249880,0,0);-ms-transform:matrix(0.215981,-0.006695,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215981,-0.006695,0.007746,0.249880,0,0);}
.m2d_c00167{transform:matrix(0.216241,-0.003244,0.003750,0.249972,0,0);-ms-transform:matrix(0.216241,-0.003244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216241,-0.003244,0.003750,0.249972,0,0);}
.m109_c00167{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);}
.m13_c00167{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);}
.m24_c00167{transform:matrix(0.216716,-0.003251,0.003750,0.249972,0,0);-ms-transform:matrix(0.216716,-0.003251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216716,-0.003251,0.003750,0.249972,0,0);}
.med_c00167{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);}
.mda_c00167{transform:matrix(0.217214,-0.003693,0.004249,0.249964,0,0);-ms-transform:matrix(0.217214,-0.003693,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217214,-0.003693,0.004249,0.249964,0,0);}
.m15_c00167{transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);-ms-transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);}
.md2_c00167{transform:matrix(0.217449,-0.003697,0.004249,0.249964,0,0);-ms-transform:matrix(0.217449,-0.003697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217449,-0.003697,0.004249,0.249964,0,0);}
.m51_c00167{transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);-ms-transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);}
.m7d_c00167{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);}
.m10c_c00167{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);}
.m9d_c00167{transform:matrix(0.219100,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219100,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219100,-0.003287,0.003750,0.249972,0,0);}
.md3_c00167{transform:matrix(0.219233,-0.003727,0.004249,0.249964,0,0);-ms-transform:matrix(0.219233,-0.003727,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219233,-0.003727,0.004249,0.249964,0,0);}
.m17_c00167{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);}
.m8a_c00167{transform:matrix(0.220115,-0.003302,0.003750,0.249972,0,0);-ms-transform:matrix(0.220115,-0.003302,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220115,-0.003302,0.003750,0.249972,0,0);}
.meb_c00167{transform:matrix(0.220163,-0.003743,0.004249,0.249964,0,0);-ms-transform:matrix(0.220163,-0.003743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220163,-0.003743,0.004249,0.249964,0,0);}
.m44_c00167{transform:matrix(0.220895,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220895,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220895,-0.003313,0.003750,0.249972,0,0);}
.m6_c00167{transform:matrix(0.221740,-0.003326,0.003750,0.249972,0,0);-ms-transform:matrix(0.221740,-0.003326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221740,-0.003326,0.003750,0.249972,0,0);}
.m88_c00167{transform:matrix(0.221835,-0.003328,0.003750,0.249972,0,0);-ms-transform:matrix(0.221835,-0.003328,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221835,-0.003328,0.003750,0.249972,0,0);}
.m111_c00167{transform:matrix(0.222273,-0.006890,0.007746,0.249880,0,0);-ms-transform:matrix(0.222273,-0.006890,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222273,-0.006890,0.007746,0.249880,0,0);}
.m8_c00167{transform:matrix(0.222490,-0.003337,0.003750,0.249972,0,0);-ms-transform:matrix(0.222490,-0.003337,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222490,-0.003337,0.003750,0.249972,0,0);}
.mcd_c00167{transform:matrix(0.223043,-0.003792,0.004249,0.249964,0,0);-ms-transform:matrix(0.223043,-0.003792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223043,-0.003792,0.004249,0.249964,0,0);}
.m4f_c00167{transform:matrix(0.223400,-0.003351,0.003750,0.249972,0,0);-ms-transform:matrix(0.223400,-0.003351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223400,-0.003351,0.003750,0.249972,0,0);}
.m1e_c00167{transform:matrix(0.223520,-0.003353,0.003750,0.249972,0,0);-ms-transform:matrix(0.223520,-0.003353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223520,-0.003353,0.003750,0.249972,0,0);}
.m5f_c00167{transform:matrix(0.223665,-0.003355,0.003750,0.249972,0,0);-ms-transform:matrix(0.223665,-0.003355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223665,-0.003355,0.003750,0.249972,0,0);}
.m62_c00167{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);}
.m9b_c00167{transform:matrix(0.224415,-0.003366,0.003750,0.249972,0,0);-ms-transform:matrix(0.224415,-0.003366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224415,-0.003366,0.003750,0.249972,0,0);}
.m11_c00167{transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224460,-0.003367,0.003750,0.249972,0,0);}
.m22_c00167{transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);-ms-transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);}
.m9a_c00167{transform:matrix(0.225230,-0.003378,0.003750,0.249972,0,0);-ms-transform:matrix(0.225230,-0.003378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225230,-0.003378,0.003750,0.249972,0,0);}
.m40_c00167{transform:matrix(0.225730,-0.003386,0.003750,0.249972,0,0);-ms-transform:matrix(0.225730,-0.003386,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225730,-0.003386,0.003750,0.249972,0,0);}
.mb6_c00167{transform:matrix(0.226102,-0.003844,0.004249,0.249964,0,0);-ms-transform:matrix(0.226102,-0.003844,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226102,-0.003844,0.004249,0.249964,0,0);}
.mf8_c00167{transform:matrix(0.226542,-0.003851,0.004249,0.249964,0,0);-ms-transform:matrix(0.226542,-0.003851,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226542,-0.003851,0.004249,0.249964,0,0);}
.mfa_c00167{transform:matrix(0.226787,-0.003855,0.004249,0.249964,0,0);-ms-transform:matrix(0.226787,-0.003855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226787,-0.003855,0.004249,0.249964,0,0);}
.me4_c00167{transform:matrix(0.226837,-0.003856,0.004249,0.249964,0,0);-ms-transform:matrix(0.226837,-0.003856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226837,-0.003856,0.004249,0.249964,0,0);}
.m4e_c00167{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);}
.m10a_c00167{transform:matrix(0.227797,-0.003873,0.004249,0.249964,0,0);-ms-transform:matrix(0.227797,-0.003873,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227797,-0.003873,0.004249,0.249964,0,0);}
.md6_c00167{transform:matrix(0.228347,-0.003882,0.004249,0.249964,0,0);-ms-transform:matrix(0.228347,-0.003882,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228347,-0.003882,0.004249,0.249964,0,0);}
.m3c_c00167{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);}
.ma7_c00167{transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.230924,-0.003464,0.003750,0.249972,0,0);-ms-transform:matrix(0.230924,-0.003464,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230924,-0.003464,0.003750,0.249972,0,0);}
.m100_c00167{transform:matrix(0.232756,-0.003957,0.004249,0.249964,0,0);-ms-transform:matrix(0.232756,-0.003957,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232756,-0.003957,0.004249,0.249964,0,0);}
.mc2_c00167{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);}
.me_c00167{transform:matrix(0.233674,-0.003505,0.003750,0.249972,0,0);-ms-transform:matrix(0.233674,-0.003505,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233674,-0.003505,0.003750,0.249972,0,0);}
.mc8_c00167{transform:matrix(0.234401,-0.003985,0.004249,0.249964,0,0);-ms-transform:matrix(0.234401,-0.003985,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234401,-0.003985,0.004249,0.249964,0,0);}
.mca_c00167{transform:matrix(0.234831,-0.003992,0.004249,0.249964,0,0);-ms-transform:matrix(0.234831,-0.003992,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234831,-0.003992,0.004249,0.249964,0,0);}
.m103_c00167{transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);-ms-transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);}
.mf_c00167{transform:matrix(0.235029,-0.003525,0.003750,0.249972,0,0);-ms-transform:matrix(0.235029,-0.003525,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235029,-0.003525,0.003750,0.249972,0,0);}
.md4_c00167{transform:matrix(0.235106,-0.003997,0.004249,0.249964,0,0);-ms-transform:matrix(0.235106,-0.003997,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235106,-0.003997,0.004249,0.249964,0,0);}
.m7f_c00167{transform:matrix(0.236028,-0.003540,0.003750,0.249972,0,0);-ms-transform:matrix(0.236028,-0.003540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236028,-0.003540,0.003750,0.249972,0,0);}
.m68_c00167{transform:matrix(0.236168,-0.003543,0.003750,0.249972,0,0);-ms-transform:matrix(0.236168,-0.003543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236168,-0.003543,0.003750,0.249972,0,0);}
.m5c_c00167{transform:matrix(0.238013,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.238013,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238013,-0.003570,0.003750,0.249972,0,0);}
.mc6_c00167{transform:matrix(0.238656,-0.004057,0.004249,0.249964,0,0);-ms-transform:matrix(0.238656,-0.004057,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238656,-0.004057,0.004249,0.249964,0,0);}
.m19_c00167{transform:matrix(0.240483,-0.003607,0.003750,0.249972,0,0);-ms-transform:matrix(0.240483,-0.003607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240483,-0.003607,0.003750,0.249972,0,0);}
.m113_c00167{transform:matrix(0.240489,-0.007455,0.007746,0.249880,0,0);-ms-transform:matrix(0.240489,-0.007455,0.007746,0.249880,0,0);-webkit-transform:matrix(0.240489,-0.007455,0.007746,0.249880,0,0);}
.m70_c00167{transform:matrix(0.240648,-0.003610,0.003750,0.249972,0,0);-ms-transform:matrix(0.240648,-0.003610,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240648,-0.003610,0.003750,0.249972,0,0);}
.me1_c00167{transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);-ms-transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);}
.m89_c00167{transform:matrix(0.244398,-0.003666,0.003750,0.249972,0,0);-ms-transform:matrix(0.244398,-0.003666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244398,-0.003666,0.003750,0.249972,0,0);}
.m2f_c00167{transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);-ms-transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);}
.mce_c00167{transform:matrix(0.245565,-0.004175,0.004249,0.249964,0,0);-ms-transform:matrix(0.245565,-0.004175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245565,-0.004175,0.004249,0.249964,0,0);}
.m93_c00167{transform:matrix(0.245667,-0.003685,0.003750,0.249972,0,0);-ms-transform:matrix(0.245667,-0.003685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245667,-0.003685,0.003750,0.249972,0,0);}
.m53_c00167{transform:matrix(0.245707,-0.003686,0.003750,0.249972,0,0);-ms-transform:matrix(0.245707,-0.003686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245707,-0.003686,0.003750,0.249972,0,0);}
.m4d_c00167{transform:matrix(0.246832,-0.003702,0.003750,0.249972,0,0);-ms-transform:matrix(0.246832,-0.003702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246832,-0.003702,0.003750,0.249972,0,0);}
.mbf_c00167{transform:matrix(0.248739,-0.004229,0.004249,0.249964,0,0);-ms-transform:matrix(0.248739,-0.004229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248739,-0.004229,0.004249,0.249964,0,0);}
.m43_c00167{transform:matrix(0.249452,-0.003742,0.003750,0.249972,0,0);-ms-transform:matrix(0.249452,-0.003742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249452,-0.003742,0.003750,0.249972,0,0);}
.m9c_c00167{transform:matrix(0.249462,-0.003742,0.003750,0.249972,0,0);-ms-transform:matrix(0.249462,-0.003742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249462,-0.003742,0.003750,0.249972,0,0);}
.me2_c00167{transform:matrix(0.250674,-0.004261,0.004249,0.249964,0,0);-ms-transform:matrix(0.250674,-0.004261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250674,-0.004261,0.004249,0.249964,0,0);}
.m32_c00167{transform:matrix(0.251117,-0.003767,0.003750,0.249972,0,0);-ms-transform:matrix(0.251117,-0.003767,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251117,-0.003767,0.003750,0.249972,0,0);}
.m80_c00167{transform:matrix(0.251492,-0.003772,0.003750,0.249972,0,0);-ms-transform:matrix(0.251492,-0.003772,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251492,-0.003772,0.003750,0.249972,0,0);}
.m46_c00167{transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);-ms-transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);}
.m7e_c00167{transform:matrix(0.253292,-0.003799,0.003750,0.249972,0,0);-ms-transform:matrix(0.253292,-0.003799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253292,-0.003799,0.003750,0.249972,0,0);}
.m59_c00167{transform:matrix(0.254891,-0.003823,0.003750,0.249972,0,0);-ms-transform:matrix(0.254891,-0.003823,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254891,-0.003823,0.003750,0.249972,0,0);}
.mf4_c00167{transform:matrix(0.255563,-0.004345,0.004249,0.249964,0,0);-ms-transform:matrix(0.255563,-0.004345,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255563,-0.004345,0.004249,0.249964,0,0);}
.me6_c00167{transform:matrix(0.256038,-0.004353,0.004249,0.249964,0,0);-ms-transform:matrix(0.256038,-0.004353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256038,-0.004353,0.004249,0.249964,0,0);}
.m10f_c00167{transform:matrix(0.257303,-0.004374,0.004249,0.249964,0,0);-ms-transform:matrix(0.257303,-0.004374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257303,-0.004374,0.004249,0.249964,0,0);}
.m74_c00167{transform:matrix(0.259946,-0.003899,0.003750,0.249972,0,0);-ms-transform:matrix(0.259946,-0.003899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259946,-0.003899,0.003750,0.249972,0,0);}
.m8f_c00167{transform:matrix(0.260016,-0.003900,0.003750,0.249972,0,0);-ms-transform:matrix(0.260016,-0.003900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260016,-0.003900,0.003750,0.249972,0,0);}
.m105_c00167{transform:matrix(0.260287,-0.004425,0.004249,0.249964,0,0);-ms-transform:matrix(0.260287,-0.004425,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260287,-0.004425,0.004249,0.249964,0,0);}
.md5_c00167{transform:matrix(0.261367,-0.004443,0.004249,0.249964,0,0);-ms-transform:matrix(0.261367,-0.004443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261367,-0.004443,0.004249,0.249964,0,0);}
.mbe_c00167{transform:matrix(0.263532,-0.004480,0.004249,0.249964,0,0);-ms-transform:matrix(0.263532,-0.004480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263532,-0.004480,0.004249,0.249964,0,0);}
.mf5_c00167{transform:matrix(0.264442,-0.004496,0.004249,0.249964,0,0);-ms-transform:matrix(0.264442,-0.004496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264442,-0.004496,0.004249,0.249964,0,0);}
.mec_c00167{transform:matrix(0.266367,-0.004528,0.004249,0.249964,0,0);-ms-transform:matrix(0.266367,-0.004528,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266367,-0.004528,0.004249,0.249964,0,0);}
.mf2_c00167{transform:matrix(0.266881,-0.004537,0.004249,0.249964,0,0);-ms-transform:matrix(0.266881,-0.004537,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266881,-0.004537,0.004249,0.249964,0,0);}
.m72_c00167{transform:matrix(0.269835,-0.004048,0.003750,0.249972,0,0);-ms-transform:matrix(0.269835,-0.004048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269835,-0.004048,0.003750,0.249972,0,0);}
.m7c_c00167{transform:matrix(0.270680,-0.004060,0.003750,0.249972,0,0);-ms-transform:matrix(0.270680,-0.004060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270680,-0.004060,0.003750,0.249972,0,0);}
.m81_c00167{transform:matrix(0.271559,-0.004073,0.003750,0.249972,0,0);-ms-transform:matrix(0.271559,-0.004073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271559,-0.004073,0.003750,0.249972,0,0);}
.mea_c00167{transform:matrix(0.273590,-0.004651,0.004249,0.249964,0,0);-ms-transform:matrix(0.273590,-0.004651,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273590,-0.004651,0.004249,0.249964,0,0);}
.m2_c00167{transform:matrix(0.273609,-0.004104,0.003750,0.249972,0,0);-ms-transform:matrix(0.273609,-0.004104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273609,-0.004104,0.003750,0.249972,0,0);}
.mee_c00167{transform:matrix(0.273940,-0.004657,0.004249,0.249964,0,0);-ms-transform:matrix(0.273940,-0.004657,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273940,-0.004657,0.004249,0.249964,0,0);}
.mdf_c00167{transform:matrix(0.276725,-0.004704,0.004249,0.249964,0,0);-ms-transform:matrix(0.276725,-0.004704,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276725,-0.004704,0.004249,0.249964,0,0);}
.mfd_c00167{transform:matrix(0.280614,-0.004770,0.004249,0.249964,0,0);-ms-transform:matrix(0.280614,-0.004770,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280614,-0.004770,0.004249,0.249964,0,0);}
.me3_c00167{transform:matrix(0.282804,-0.004808,0.004249,0.249964,0,0);-ms-transform:matrix(0.282804,-0.004808,0.004249,0.249964,0,0);-webkit-transform:matrix(0.282804,-0.004808,0.004249,0.249964,0,0);}
.mf7_c00167{transform:matrix(0.284339,-0.004834,0.004249,0.249964,0,0);-ms-transform:matrix(0.284339,-0.004834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.284339,-0.004834,0.004249,0.249964,0,0);}
.m1_c00167{transform:matrix(0.284903,-0.004274,0.003750,0.249972,0,0);-ms-transform:matrix(0.284903,-0.004274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.284903,-0.004274,0.003750,0.249972,0,0);}
.mcb_c00167{transform:matrix(0.285604,-0.004855,0.004249,0.249964,0,0);-ms-transform:matrix(0.285604,-0.004855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285604,-0.004855,0.004249,0.249964,0,0);}
.m1a_c00167{transform:matrix(0.286803,-0.004302,0.003750,0.249972,0,0);-ms-transform:matrix(0.286803,-0.004302,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286803,-0.004302,0.003750,0.249972,0,0);}
.m69_c00167{transform:matrix(0.292502,-0.004388,0.003750,0.249972,0,0);-ms-transform:matrix(0.292502,-0.004388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292502,-0.004388,0.003750,0.249972,0,0);}
.mfb_c00167{transform:matrix(0.297362,-0.005055,0.004249,0.249964,0,0);-ms-transform:matrix(0.297362,-0.005055,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297362,-0.005055,0.004249,0.249964,0,0);}
.m117_c00167{transform:matrix(0.298162,-0.009243,0.007746,0.249880,0,0);-ms-transform:matrix(0.298162,-0.009243,0.007746,0.249880,0,0);-webkit-transform:matrix(0.298162,-0.009243,0.007746,0.249880,0,0);}
.m52_c00167{transform:matrix(0.303856,-0.004558,0.003750,0.249972,0,0);-ms-transform:matrix(0.303856,-0.004558,0.003750,0.249972,0,0);-webkit-transform:matrix(0.303856,-0.004558,0.003750,0.249972,0,0);}
.maf_c00167{transform:matrix(0.303901,-0.005166,0.004249,0.249964,0,0);-ms-transform:matrix(0.303901,-0.005166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303901,-0.005166,0.004249,0.249964,0,0);}
.md8_c00167{transform:matrix(0.304701,-0.005180,0.004249,0.249964,0,0);-ms-transform:matrix(0.304701,-0.005180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.304701,-0.005180,0.004249,0.249964,0,0);}
.m90_c00167{transform:matrix(0.306281,-0.004594,0.003750,0.249972,0,0);-ms-transform:matrix(0.306281,-0.004594,0.003750,0.249972,0,0);-webkit-transform:matrix(0.306281,-0.004594,0.003750,0.249972,0,0);}
.mb2_c00167{transform:matrix(0.306651,-0.005213,0.004249,0.249964,0,0);-ms-transform:matrix(0.306651,-0.005213,0.004249,0.249964,0,0);-webkit-transform:matrix(0.306651,-0.005213,0.004249,0.249964,0,0);}
.m3_c00167{transform:matrix(0.307850,-0.004618,0.003750,0.249972,0,0);-ms-transform:matrix(0.307850,-0.004618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307850,-0.004618,0.003750,0.249972,0,0);}
.m115_c00167{transform:matrix(0.309401,-0.009591,0.007746,0.249880,0,0);-ms-transform:matrix(0.309401,-0.009591,0.007746,0.249880,0,0);-webkit-transform:matrix(0.309401,-0.009591,0.007746,0.249880,0,0);}
.me8_c00167{transform:matrix(0.311730,-0.005299,0.004249,0.249964,0,0);-ms-transform:matrix(0.311730,-0.005299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311730,-0.005299,0.004249,0.249964,0,0);}
.m64_c00167{transform:matrix(0.313680,-0.004705,0.003750,0.249972,0,0);-ms-transform:matrix(0.313680,-0.004705,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313680,-0.004705,0.003750,0.249972,0,0);}
.m6b_c00167{transform:matrix(0.316179,-0.004743,0.003750,0.249972,0,0);-ms-transform:matrix(0.316179,-0.004743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.316179,-0.004743,0.003750,0.249972,0,0);}
.m6c_c00167{transform:matrix(0.326188,-0.004893,0.003750,0.249972,0,0);-ms-transform:matrix(0.326188,-0.004893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.326188,-0.004893,0.003750,0.249972,0,0);}
.mfc_c00167{transform:matrix(0.328633,-0.005587,0.004249,0.249964,0,0);-ms-transform:matrix(0.328633,-0.005587,0.004249,0.249964,0,0);-webkit-transform:matrix(0.328633,-0.005587,0.004249,0.249964,0,0);}
.me5_c00167{transform:matrix(0.329007,-0.005593,0.004249,0.249964,0,0);-ms-transform:matrix(0.329007,-0.005593,0.004249,0.249964,0,0);-webkit-transform:matrix(0.329007,-0.005593,0.004249,0.249964,0,0);}
.mc9_c00167{transform:matrix(0.332787,-0.005657,0.004249,0.249964,0,0);-ms-transform:matrix(0.332787,-0.005657,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332787,-0.005657,0.004249,0.249964,0,0);}
.m63_c00167{transform:matrix(0.334792,-0.005022,0.003750,0.249972,0,0);-ms-transform:matrix(0.334792,-0.005022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.334792,-0.005022,0.003750,0.249972,0,0);}
.m97_c00167{transform:matrix(0.345376,-0.005181,0.003750,0.249972,0,0);-ms-transform:matrix(0.345376,-0.005181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.345376,-0.005181,0.003750,0.249972,0,0);}
.m73_c00167{transform:matrix(0.349046,-0.005236,0.003750,0.249972,0,0);-ms-transform:matrix(0.349046,-0.005236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.349046,-0.005236,0.003750,0.249972,0,0);}
.mef_c00167{transform:matrix(0.357903,-0.006084,0.004249,0.249964,0,0);-ms-transform:matrix(0.357903,-0.006084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.357903,-0.006084,0.004249,0.249964,0,0);}
.mbb_c00167{transform:matrix(0.361438,-0.006144,0.004249,0.249964,0,0);-ms-transform:matrix(0.361438,-0.006144,0.004249,0.249964,0,0);-webkit-transform:matrix(0.361438,-0.006144,0.004249,0.249964,0,0);}
.mb7_c00167{transform:matrix(0.371911,-0.006322,0.004249,0.249964,0,0);-ms-transform:matrix(0.371911,-0.006322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.371911,-0.006322,0.004249,0.249964,0,0);}
.m108_c00167{transform:matrix(0.373996,-0.006358,0.004249,0.249964,0,0);-ms-transform:matrix(0.373996,-0.006358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.373996,-0.006358,0.004249,0.249964,0,0);}
.mdc_c00167{transform:matrix(0.379395,-0.006450,0.004249,0.249964,0,0);-ms-transform:matrix(0.379395,-0.006450,0.004249,0.249964,0,0);-webkit-transform:matrix(0.379395,-0.006450,0.004249,0.249964,0,0);}
.mbc_c00167{transform:matrix(0.385179,-0.006548,0.004249,0.249964,0,0);-ms-transform:matrix(0.385179,-0.006548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.385179,-0.006548,0.004249,0.249964,0,0);}
.mc0_c00167{transform:matrix(0.394623,-0.006709,0.004249,0.249964,0,0);-ms-transform:matrix(0.394623,-0.006709,0.004249,0.249964,0,0);-webkit-transform:matrix(0.394623,-0.006709,0.004249,0.249964,0,0);}
.maa_c00167{transform:matrix(0.397190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397190,0.000000,0.000000,0.250000,0,0);}
.mfe_c00167{transform:matrix(0.397538,-0.006758,0.004249,0.249964,0,0);-ms-transform:matrix(0.397538,-0.006758,0.004249,0.249964,0,0);-webkit-transform:matrix(0.397538,-0.006758,0.004249,0.249964,0,0);}
.mb5_c00167{transform:matrix(0.397733,-0.006761,0.004249,0.249964,0,0);-ms-transform:matrix(0.397733,-0.006761,0.004249,0.249964,0,0);-webkit-transform:matrix(0.397733,-0.006761,0.004249,0.249964,0,0);}
.m119_c00167{transform:matrix(0.419843,-0.013015,0.007746,0.249880,0,0);-ms-transform:matrix(0.419843,-0.013015,0.007746,0.249880,0,0);-webkit-transform:matrix(0.419843,-0.013015,0.007746,0.249880,0,0);}
.mbd_c00167{transform:matrix(0.439407,-0.007470,0.004249,0.249964,0,0);-ms-transform:matrix(0.439407,-0.007470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.439407,-0.007470,0.004249,0.249964,0,0);}
.m116_c00167{transform:matrix(0.488520,-0.015144,0.007746,0.249880,0,0);-ms-transform:matrix(0.488520,-0.015144,0.007746,0.249880,0,0);-webkit-transform:matrix(0.488520,-0.015144,0.007746,0.249880,0,0);}
.mb0_c00167{transform:matrix(0.491634,-0.008358,0.004249,0.249964,0,0);-ms-transform:matrix(0.491634,-0.008358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.491634,-0.008358,0.004249,0.249964,0,0);}
.m38_c00167{transform:matrix(0.542724,-0.008141,0.003750,0.249972,0,0);-ms-transform:matrix(0.542724,-0.008141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.542724,-0.008141,0.003750,0.249972,0,0);}
.mb9_c00167{transform:matrix(0.575957,-0.009791,0.004249,0.249964,0,0);-ms-transform:matrix(0.575957,-0.009791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.575957,-0.009791,0.004249,0.249964,0,0);}
.m11b_c00167{transform:matrix(0.657274,-0.020376,0.007746,0.249880,0,0);-ms-transform:matrix(0.657274,-0.020376,0.007746,0.249880,0,0);-webkit-transform:matrix(0.657274,-0.020376,0.007746,0.249880,0,0);}
.m114_c00167{transform:matrix(0.666815,-0.020671,0.007746,0.249880,0,0);-ms-transform:matrix(0.666815,-0.020671,0.007746,0.249880,0,0);-webkit-transform:matrix(0.666815,-0.020671,0.007746,0.249880,0,0);}
.mae_c00167{transform:matrix(0.669870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669870,0.000000,0.000000,0.250000,0,0);}
.m110_c00167{transform:matrix(0.689764,-0.021383,0.007746,0.249880,0,0);-ms-transform:matrix(0.689764,-0.021383,0.007746,0.249880,0,0);-webkit-transform:matrix(0.689764,-0.021383,0.007746,0.249880,0,0);}
.m11a_c00167{transform:matrix(0.727690,-0.022558,0.007746,0.249880,0,0);-ms-transform:matrix(0.727690,-0.022558,0.007746,0.249880,0,0);-webkit-transform:matrix(0.727690,-0.022558,0.007746,0.249880,0,0);}
.mb3_c00167{transform:matrix(0.729510,-0.012402,0.004249,0.249964,0,0);-ms-transform:matrix(0.729510,-0.012402,0.004249,0.249964,0,0);-webkit-transform:matrix(0.729510,-0.012402,0.004249,0.249964,0,0);}
.mba_c00167{transform:matrix(0.739973,-0.012580,0.004249,0.249964,0,0);-ms-transform:matrix(0.739973,-0.012580,0.004249,0.249964,0,0);-webkit-transform:matrix(0.739973,-0.012580,0.004249,0.249964,0,0);}
.mc1_c00167{transform:matrix(0.783202,-0.013314,0.004249,0.249964,0,0);-ms-transform:matrix(0.783202,-0.013314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.783202,-0.013314,0.004249,0.249964,0,0);}
.m118_c00167{transform:matrix(0.940748,-0.029163,0.007746,0.249880,0,0);-ms-transform:matrix(0.940748,-0.029163,0.007746,0.249880,0,0);-webkit-transform:matrix(0.940748,-0.029163,0.007746,0.249880,0,0);}
.mab_c00167{transform:matrix(0.977125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977125,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;}
.fse_c00167{font-size:47.256827px;}
.fsa_c00167{font-size:49.350000px;}
.fs9_c00167{font-size:50.405670px;}
.fsd_c00167{font-size:50.407282px;}
.fsb_c00167{font-size:51.450000px;}
.fsc_c00167{font-size:51.457434px;}
.fsf_c00167{font-size:52.507586px;}
.fs7_c00167{font-size:59.856733px;}
.fs13_c00167{font-size:61.979760px;}
.fs0_c00167{font-size:63.007087px;}
.fs8_c00167{font-size:67.207560px;}
.fs4_c00167{font-size:68.257678px;}
.fs3_c00167{font-size:69.307796px;}
.fs10_c00167{font-size:69.333291px;}
.fs6_c00167{font-size:70.357914px;}
.fs1_c00167{font-size:71.408032px;}
.fs2_c00167{font-size:72.458150px;}
.fs5_c00167{font-size:73.508268px;}
.fs12_c00167{font-size:85.090857px;}
.fs11_c00167{font-size:86.141361px;}
.y0_c00167{bottom:0.000000px;}
.y114_c00167{bottom:88.312144px;}
.y115_c00167{bottom:90.844129px;}
.y116_c00167{bottom:93.472804px;}
.y117_c00167{bottom:95.865480px;}
.y113_c00167{bottom:100.709073px;}
.y111_c00167{bottom:105.588904px;}
.y112_c00167{bottom:119.032659px;}
.y10b_c00167{bottom:123.132000px;}
.y10c_c00167{bottom:127.948981px;}
.y10d_c00167{bottom:130.043760px;}
.y10e_c00167{bottom:131.190915px;}
.y10f_c00167{bottom:131.968441px;}
.y110_c00167{bottom:133.702519px;}
.yfb_c00167{bottom:150.644783px;}
.yfc_c00167{bottom:150.984774px;}
.yfd_c00167{bottom:151.502347px;}
.yfe_c00167{bottom:152.067224px;}
.yff_c00167{bottom:152.467982px;}
.y100_c00167{bottom:152.930246px;}
.y101_c00167{bottom:153.311471px;}
.y102_c00167{bottom:154.059615px;}
.y103_c00167{bottom:154.601541px;}
.y104_c00167{bottom:154.844454px;}
.y105_c00167{bottom:154.988045px;}
.y106_c00167{bottom:155.419607px;}
.y107_c00167{bottom:155.913924px;}
.y108_c00167{bottom:156.105735px;}
.y109_c00167{bottom:156.258353px;}
.y10a_c00167{bottom:156.639883px;}
.yeb_c00167{bottom:168.468249px;}
.yec_c00167{bottom:168.814583px;}
.yed_c00167{bottom:169.383521px;}
.yee_c00167{bottom:170.714731px;}
.yef_c00167{bottom:171.016016px;}
.yf0_c00167{bottom:171.501939px;}
.yf1_c00167{bottom:171.807558px;}
.yf2_c00167{bottom:172.916139px;}
.yf3_c00167{bottom:173.776186px;}
.yf4_c00167{bottom:174.295663px;}
.yf5_c00167{bottom:174.839004px;}
.yf6_c00167{bottom:175.200663px;}
.yf7_c00167{bottom:175.685337px;}
.yf8_c00167{bottom:176.041182px;}
.yf9_c00167{bottom:176.493475px;}
.yfa_c00167{bottom:177.287287px;}
.ydc_c00167{bottom:186.832281px;}
.ydd_c00167{bottom:187.058022px;}
.yde_c00167{bottom:188.011902px;}
.ydf_c00167{bottom:188.276029px;}
.ye0_c00167{bottom:188.643271px;}
.ye1_c00167{bottom:189.351439px;}
.ye2_c00167{bottom:189.732201px;}
.ye3_c00167{bottom:190.190113px;}
.ye4_c00167{bottom:190.656466px;}
.ye5_c00167{bottom:190.790776px;}
.ye6_c00167{bottom:191.260296px;}
.ye7_c00167{bottom:191.576988px;}
.ye8_c00167{bottom:192.730798px;}
.ye9_c00167{bottom:193.679145px;}
.yea_c00167{bottom:194.170828px;}
.ycd_c00167{bottom:204.656580px;}
.yce_c00167{bottom:205.393989px;}
.ycf_c00167{bottom:205.825704px;}
.yd0_c00167{bottom:206.432425px;}
.yd1_c00167{bottom:206.732051px;}
.yd2_c00167{bottom:207.797236px;}
.yd3_c00167{bottom:208.714395px;}
.yd4_c00167{bottom:208.839396px;}
.yd5_c00167{bottom:209.600061px;}
.yd6_c00167{bottom:210.502379px;}
.yd7_c00167{bottom:210.692481px;}
.yd8_c00167{bottom:210.935879px;}
.yd9_c00167{bottom:211.238002px;}
.yda_c00167{bottom:211.610838px;}
.ydb_c00167{bottom:213.406370px;}
.ybf_c00167{bottom:222.748903px;}
.yc0_c00167{bottom:223.583673px;}
.yc1_c00167{bottom:223.881018px;}
.yc2_c00167{bottom:224.933341px;}
.yc3_c00167{bottom:225.479491px;}
.yc4_c00167{bottom:226.378217px;}
.yc5_c00167{bottom:226.722504px;}
.yc6_c00167{bottom:227.135541px;}
.yc7_c00167{bottom:227.402303px;}
.yc8_c00167{bottom:227.961003px;}
.yc9_c00167{bottom:228.402762px;}
.yca_c00167{bottom:228.617149px;}
.ycb_c00167{bottom:229.411076px;}
.ycc_c00167{bottom:230.369416px;}
.yaa_c00167{bottom:240.303000px;}
.yab_c00167{bottom:240.814046px;}
.yac_c00167{bottom:241.365228px;}
.yad_c00167{bottom:241.546151px;}
.yae_c00167{bottom:241.861356px;}
.yaf_c00167{bottom:242.329383px;}
.yb0_c00167{bottom:242.392878px;}
.yb1_c00167{bottom:242.828953px;}
.yb2_c00167{bottom:243.151605px;}
.yb3_c00167{bottom:243.402525px;}
.yb4_c00167{bottom:244.211742px;}
.yb5_c00167{bottom:244.368414px;}
.yb6_c00167{bottom:245.183369px;}
.yb7_c00167{bottom:245.332339px;}
.yb9_c00167{bottom:245.762167px;}
.yb8_c00167{bottom:245.767701px;}
.yba_c00167{bottom:246.055800px;}
.ybb_c00167{bottom:246.314829px;}
.ybc_c00167{bottom:246.741011px;}
.ybd_c00167{bottom:247.743900px;}
.ybe_c00167{bottom:248.482482px;}
.ya9_c00167{bottom:284.947500px;}
.ya8_c00167{bottom:297.843000px;}
.ya5_c00167{bottom:310.979827px;}
.ya4_c00167{bottom:310.980450px;}
.ya6_c00167{bottom:310.980510px;}
.ya7_c00167{bottom:310.981237px;}
.ya1_c00167{bottom:323.957947px;}
.ya2_c00167{bottom:323.958075px;}
.ya3_c00167{bottom:323.958285px;}
.y9a_c00167{bottom:342.576142px;}
.y9b_c00167{bottom:342.842602px;}
.y9c_c00167{bottom:343.626090px;}
.y9d_c00167{bottom:343.965997px;}
.y9e_c00167{bottom:344.374207px;}
.y9f_c00167{bottom:344.670337px;}
.ya0_c00167{bottom:345.423832px;}
.y92_c00167{bottom:365.205277px;}
.y93_c00167{bottom:365.480767px;}
.y94_c00167{bottom:366.206302px;}
.y95_c00167{bottom:367.496902px;}
.y96_c00167{bottom:368.028735px;}
.y97_c00167{bottom:368.559465px;}
.y98_c00167{bottom:368.863552px;}
.y99_c00167{bottom:369.608415px;}
.y8b_c00167{bottom:388.688775px;}
.y8c_c00167{bottom:389.017350px;}
.y8d_c00167{bottom:389.471572px;}
.y8e_c00167{bottom:390.240382px;}
.y8f_c00167{bottom:390.899542px;}
.y90_c00167{bottom:391.216672px;}
.y91_c00167{bottom:392.105595px;}
.y85_c00167{bottom:409.814482px;}
.y86_c00167{bottom:410.280697px;}
.y87_c00167{bottom:410.962552px;}
.y88_c00167{bottom:412.085737px;}
.y89_c00167{bottom:413.056725px;}
.y8a_c00167{bottom:413.720032px;}
.y80_c00167{bottom:436.164375px;}
.y81_c00167{bottom:436.164562px;}
.y82_c00167{bottom:436.164840px;}
.y83_c00167{bottom:436.164967px;}
.y84_c00167{bottom:436.165132px;}
.y79_c00167{bottom:455.716492px;}
.y7a_c00167{bottom:456.008010px;}
.y7b_c00167{bottom:456.795682px;}
.y7c_c00167{bottom:457.223692px;}
.y7d_c00167{bottom:457.511917px;}
.y7e_c00167{bottom:457.910557px;}
.y7f_c00167{bottom:458.205472px;}
.y6f_c00167{bottom:478.399792px;}
.y70_c00167{bottom:478.861560px;}
.y71_c00167{bottom:479.914740px;}
.y72_c00167{bottom:480.553950px;}
.y73_c00167{bottom:481.300147px;}
.y74_c00167{bottom:481.818630px;}
.y75_c00167{bottom:482.708437px;}
.y76_c00167{bottom:482.867827px;}
.y77_c00167{bottom:483.238545px;}
.y78_c00167{bottom:483.669487px;}
.y66_c00167{bottom:501.620580px;}
.y67_c00167{bottom:502.160947px;}
.y68_c00167{bottom:502.326787px;}
.y69_c00167{bottom:502.995210px;}
.y6a_c00167{bottom:503.306895px;}
.y6b_c00167{bottom:504.177592px;}
.y6c_c00167{bottom:504.552465px;}
.y6d_c00167{bottom:505.206570px;}
.y6e_c00167{bottom:505.504230px;}
.y5a_c00167{bottom:524.303332px;}
.y5b_c00167{bottom:524.752590px;}
.y5c_c00167{bottom:525.093337px;}
.y5d_c00167{bottom:525.494092px;}
.y5e_c00167{bottom:525.692932px;}
.y5f_c00167{bottom:526.219350px;}
.y60_c00167{bottom:526.880857px;}
.y61_c00167{bottom:527.538877px;}
.y62_c00167{bottom:527.785117px;}
.y63_c00167{bottom:528.075022px;}
.y64_c00167{bottom:528.454687px;}
.y65_c00167{bottom:529.331422px;}
.y57_c00167{bottom:550.720035px;}
.y56_c00167{bottom:550.720102px;}
.y58_c00167{bottom:550.720185px;}
.y55_c00167{bottom:550.720770px;}
.y54_c00167{bottom:550.720860px;}
.y59_c00167{bottom:550.720867px;}
.y4d_c00167{bottom:569.401957px;}
.y4e_c00167{bottom:570.366262px;}
.y4f_c00167{bottom:571.727115px;}
.y50_c00167{bottom:572.049630px;}
.y51_c00167{bottom:572.712255px;}
.y52_c00167{bottom:573.704925px;}
.y53_c00167{bottom:576.542767px;}
.y44_c00167{bottom:593.703255px;}
.y45_c00167{bottom:594.009952px;}
.y46_c00167{bottom:594.217680px;}
.y47_c00167{bottom:595.578427px;}
.y48_c00167{bottom:596.178922px;}
.y49_c00167{bottom:596.658840px;}
.y4a_c00167{bottom:597.392242px;}
.y4b_c00167{bottom:598.269157px;}
.y4c_c00167{bottom:599.299215px;}
.y43_c00167{bottom:619.049557px;}
.y42_c00167{bottom:619.050202px;}
.y40_c00167{bottom:619.050487px;}
.y41_c00167{bottom:619.050720px;}
.y3f_c00167{bottom:619.051132px;}
.y3e_c00167{bottom:619.051650px;}
.y39_c00167{bottom:637.725165px;}
.y3a_c00167{bottom:639.052215px;}
.y3b_c00167{bottom:640.116877px;}
.y3c_c00167{bottom:640.544512px;}
.y3d_c00167{bottom:641.469997px;}
.y36_c00167{bottom:663.934867px;}
.y35_c00167{bottom:663.935430px;}
.y37_c00167{bottom:663.935550px;}
.y34_c00167{bottom:663.935602px;}
.y38_c00167{bottom:663.935910px;}
.y2d_c00167{bottom:683.357227px;}
.y2e_c00167{bottom:684.701587px;}
.y2f_c00167{bottom:685.150582px;}
.y30_c00167{bottom:686.112847px;}
.y31_c00167{bottom:686.822760px;}
.y32_c00167{bottom:687.497017px;}
.y33_c00167{bottom:688.145107px;}
.y25_c00167{bottom:706.313782px;}
.y26_c00167{bottom:707.455695px;}
.y27_c00167{bottom:708.035070px;}
.y28_c00167{bottom:709.220295px;}
.y29_c00167{bottom:710.660737px;}
.y2a_c00167{bottom:711.157350px;}
.y2b_c00167{bottom:711.672960px;}
.y2c_c00167{bottom:712.630005px;}
.y1d_c00167{bottom:728.994825px;}
.y1e_c00167{bottom:730.174440px;}
.y1f_c00167{bottom:730.731840px;}
.y20_c00167{bottom:731.981302px;}
.y21_c00167{bottom:733.082415px;}
.y22_c00167{bottom:733.391400px;}
.y23_c00167{bottom:733.923825px;}
.y24_c00167{bottom:735.100875px;}
.y15_c00167{bottom:751.677300px;}
.y16_c00167{bottom:753.266062px;}
.y17_c00167{bottom:753.776542px;}
.y18_c00167{bottom:754.719832px;}
.y19_c00167{bottom:755.069992px;}
.y1a_c00167{bottom:756.104287px;}
.y1b_c00167{bottom:756.324825px;}
.y1c_c00167{bottom:756.942855px;}
.yf_c00167{bottom:777.059947px;}
.y10_c00167{bottom:778.010955px;}
.y11_c00167{bottom:778.708560px;}
.y12_c00167{bottom:779.386695px;}
.y13_c00167{bottom:779.769442px;}
.y14_c00167{bottom:780.666757px;}
.y9_c00167{bottom:797.582235px;}
.ya_c00167{bottom:799.046122px;}
.yb_c00167{bottom:799.521270px;}
.yc_c00167{bottom:800.456010px;}
.yd_c00167{bottom:801.136102px;}
.ye_c00167{bottom:802.227180px;}
.y1_c00167{bottom:821.343000px;}
.y2_c00167{bottom:822.275670px;}
.y3_c00167{bottom:822.867217px;}
.y4_c00167{bottom:823.542330px;}
.y5_c00167{bottom:823.878930px;}
.y6_c00167{bottom:824.911747px;}
.y7_c00167{bottom:825.467632px;}
.y8_c00167{bottom:826.222822px;}
.h10_c00167{height:47.256827px;}
.hc_c00167{height:49.350000px;}
.hb_c00167{height:50.405670px;}
.hf_c00167{height:50.407282px;}
.hd_c00167{height:51.450000px;}
.he_c00167{height:51.457434px;}
.h11_c00167{height:52.507586px;}
.h9_c00167{height:59.856733px;}
.h15_c00167{height:61.979760px;}
.h2_c00167{height:63.007087px;}
.ha_c00167{height:67.207560px;}
.h6_c00167{height:68.257678px;}
.h5_c00167{height:69.307796px;}
.h12_c00167{height:69.333291px;}
.h8_c00167{height:70.357914px;}
.h3_c00167{height:71.408032px;}
.h4_c00167{height:72.458150px;}
.h7_c00167{height:73.508268px;}
.h14_c00167{height:85.090857px;}
.h13_c00167{height:86.141361px;}
.h0_c00167{height:1008.450000px;}
.h1_c00167{height:1008.750000px;}
.w0_c00167{width:676.890000px;}
.w1_c00167{width:677.250000px;}
.x0_c00167{left:0.000000px;}
.x9a_c00167{left:82.177500px;}
.x9d_c00167{left:93.551234px;}
.x9e_c00167{left:94.627332px;}
.x76_c00167{left:146.205534px;}
.x87_c00167{left:147.573835px;}
.x6c_c00167{left:148.972500px;}
.x9f_c00167{left:159.546243px;}
.x88_c00167{left:161.647065px;}
.x1_c00167{left:167.055000px;}
.x14_c00167{left:168.220012px;}
.x26_c00167{left:169.273320px;}
.x3d_c00167{left:173.066445px;}
.x46_c00167{left:174.323393px;}
.x6d_c00167{left:179.034000px;}
.x2d_c00167{left:188.524478px;}
.x80_c00167{left:190.194691px;}
.x50_c00167{left:199.175018px;}
.x4b_c00167{left:200.602613px;}
.x77_c00167{left:201.840921px;}
.x3e_c00167{left:205.117418px;}
.x56_c00167{left:206.800980px;}
.x31_c00167{left:210.237443px;}
.x6e_c00167{left:211.456500px;}
.x60_c00167{left:214.255005px;}
.x47_c00167{left:215.849130px;}
.x6f_c00167{left:222.099000px;}
.x32_c00167{left:225.086168px;}
.xa0_c00167{left:226.954550px;}
.x5d_c00167{left:228.089625px;}
.x2_c00167{left:229.233000px;}
.x57_c00167{left:232.680810px;}
.x1c_c00167{left:234.533400px;}
.x61_c00167{left:236.419995px;}
.x89_c00167{left:237.795865px;}
.x6a_c00167{left:239.760000px;}
.x9_c00167{left:240.847477px;}
.x27_c00167{left:243.993968px;}
.x64_c00167{left:247.328655px;}
.x15_c00167{left:251.832495px;}
.x2a_c00167{left:253.808595px;}
.x96_c00167{left:255.965676px;}
.x3f_c00167{left:258.051705px;}
.x20_c00167{left:259.212967px;}
.x66_c00167{left:260.559750px;}
.xa_c00167{left:264.622200px;}
.x3_c00167{left:268.669500px;}
.x58_c00167{left:270.536100px;}
.x40_c00167{left:272.307930px;}
.xe_c00167{left:273.839617px;}
.x5e_c00167{left:276.458625px;}
.x16_c00167{left:278.662875px;}
.x48_c00167{left:279.968543px;}
.x53_c00167{left:281.082030px;}
.x97_c00167{left:283.157676px;}
.x68_c00167{left:288.090000px;}
.x8e_c00167{left:289.662186px;}
.x78_c00167{left:291.824481px;}
.x4c_c00167{left:294.624383px;}
.x70_c00167{left:297.558000px;}
.x5a_c00167{left:299.358188px;}
.x51_c00167{left:300.425063px;}
.x62_c00167{left:301.755443px;}
.x49_c00167{left:303.948263px;}
.x8a_c00167{left:305.027013px;}
.x65_c00167{left:306.464453px;}
.x41_c00167{left:309.902993px;}
.xb_c00167{left:311.334690px;}
.x67_c00167{left:312.675473px;}
.x4_c00167{left:313.677000px;}
.x6b_c00167{left:316.440000px;}
.x21_c00167{left:321.624233px;}
.x3a_c00167{left:325.367033px;}
.x17_c00167{left:328.345905px;}
.xf_c00167{left:329.738430px;}
.x71_c00167{left:331.297500px;}
.x2f_c00167{left:332.658458px;}
.x8f_c00167{left:333.663946px;}
.x1d_c00167{left:334.886377px;}
.x5_c00167{left:336.117000px;}
.x9b_c00167{left:342.142500px;}
.xc_c00167{left:345.371647px;}
.x18_c00167{left:346.788802px;}
.x98_c00167{left:349.591176px;}
.x69_c00167{left:353.160000px;}
.x42_c00167{left:357.104190px;}
.x28_c00167{left:361.800158px;}
.x37_c00167{left:363.544823px;}
.x33_c00167{left:365.237783px;}
.x9c_c00167{left:367.224000px;}
.x30_c00167{left:369.382215px;}
.x10_c00167{left:370.744193px;}
.x5b_c00167{left:375.792540px;}
.x54_c00167{left:376.943085px;}
.x2b_c00167{left:378.833220px;}
.x52_c00167{left:382.280753px;}
.x2e_c00167{left:385.668165px;}
.x59_c00167{left:386.842358px;}
.x63_c00167{left:388.775858px;}
.x81_c00167{left:392.865691px;}
.x8b_c00167{left:394.989543px;}
.x1e_c00167{left:396.091132px;}
.x22_c00167{left:397.449188px;}
.xd_c00167{left:399.906052px;}
.x19_c00167{left:401.238540px;}
.x6_c00167{left:404.971500px;}
.x11_c00167{left:410.652000px;}
.x1a_c00167{left:412.840342px;}
.x4d_c00167{left:414.251483px;}
.x38_c00167{left:415.819695px;}
.x3b_c00167{left:417.448755px;}
.x43_c00167{left:421.689158px;}
.x23_c00167{left:423.555113px;}
.x2c_c00167{left:429.868695px;}
.x12_c00167{left:433.167825px;}
.x29_c00167{left:435.253350px;}
.x5c_c00167{left:436.877640px;}
.x79_c00167{left:438.753004px;}
.x7_c00167{left:442.030500px;}
.x4e_c00167{left:443.690655px;}
.x1b_c00167{left:445.340385px;}
.x24_c00167{left:450.727493px;}
.x34_c00167{left:451.927088px;}
.x55_c00167{left:454.171455px;}
.x7a_c00167{left:456.563116px;}
.x3c_c00167{left:459.303660px;}
.x4f_c00167{left:467.619075px;}
.x44_c00167{left:469.527878px;}
.x90_c00167{left:471.903100px;}
.x4a_c00167{left:473.042348px;}
.x99_c00167{left:478.928676px;}
.x13_c00167{left:485.987250px;}
.x72_c00167{left:487.372500px;}
.x82_c00167{left:490.688191px;}
.x8_c00167{left:492.376500px;}
.x7b_c00167{left:493.840891px;}
.x25_c00167{left:501.127478px;}
.x5f_c00167{left:503.266125px;}
.x1f_c00167{left:508.250092px;}
.x35_c00167{left:514.589033px;}
.x83_c00167{left:516.188191px;}
.x91_c00167{left:522.225759px;}
.x7c_c00167{left:523.268886px;}
.x73_c00167{left:527.679000px;}
.x45_c00167{left:532.177823px;}
.x84_c00167{left:533.960191px;}
.x7d_c00167{left:537.556870px;}
.x92_c00167{left:549.147300px;}
.x85_c00167{left:555.891691px;}
.x39_c00167{left:565.200240px;}
.x93_c00167{left:568.931968px;}
.x8c_c00167{left:575.573128px;}
.x74_c00167{left:586.672500px;}
.x36_c00167{left:588.160635px;}
.x7e_c00167{left:590.436655px;}
.x94_c00167{left:594.037035px;}
.x8d_c00167{left:606.349164px;}
.x75_c00167{left:630.118500px;}
.x95_c00167{left:638.172295px;}
.x7f_c00167{left:654.311823px;}
.x86_c00167{left:661.511191px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fse_c00167{font-size:42.006069pt;}
.fsa_c00167{font-size:43.866667pt;}
.fs9_c00167{font-size:44.805040pt;}
.fsd_c00167{font-size:44.806473pt;}
.fsb_c00167{font-size:45.733333pt;}
.fsc_c00167{font-size:45.739941pt;}
.fsf_c00167{font-size:46.673410pt;}
.fs7_c00167{font-size:53.205985pt;}
.fs13_c00167{font-size:55.093120pt;}
.fs0_c00167{font-size:56.006300pt;}
.fs8_c00167{font-size:59.740053pt;}
.fs4_c00167{font-size:60.673491pt;}
.fs3_c00167{font-size:61.606930pt;}
.fs10_c00167{font-size:61.629592pt;}
.fs6_c00167{font-size:62.540368pt;}
.fs1_c00167{font-size:63.473806pt;}
.fs2_c00167{font-size:64.407245pt;}
.fs5_c00167{font-size:65.340683pt;}
.fs12_c00167{font-size:75.636317pt;}
.fs11_c00167{font-size:76.570099pt;}
.y0_c00167{bottom:0.000000pt;}
.y114_c00167{bottom:78.499684pt;}
.y115_c00167{bottom:80.750337pt;}
.y116_c00167{bottom:83.086937pt;}
.y117_c00167{bottom:85.213760pt;}
.y113_c00167{bottom:89.519176pt;}
.y111_c00167{bottom:93.856804pt;}
.y112_c00167{bottom:105.806808pt;}
.y10b_c00167{bottom:109.450667pt;}
.y10c_c00167{bottom:113.732428pt;}
.y10d_c00167{bottom:115.594453pt;}
.y10e_c00167{bottom:116.614147pt;}
.y10f_c00167{bottom:117.305281pt;}
.y110_c00167{bottom:118.846684pt;}
.yfb_c00167{bottom:133.906473pt;}
.yfc_c00167{bottom:134.208688pt;}
.yfd_c00167{bottom:134.668753pt;}
.yfe_c00167{bottom:135.170865pt;}
.yff_c00167{bottom:135.527095pt;}
.y100_c00167{bottom:135.937996pt;}
.y101_c00167{bottom:136.276863pt;}
.y102_c00167{bottom:136.941880pt;}
.y103_c00167{bottom:137.423592pt;}
.y104_c00167{bottom:137.639515pt;}
.y105_c00167{bottom:137.767151pt;}
.y106_c00167{bottom:138.150761pt;}
.y107_c00167{bottom:138.590155pt;}
.y108_c00167{bottom:138.760653pt;}
.y109_c00167{bottom:138.896313pt;}
.y10a_c00167{bottom:139.235452pt;}
.yeb_c00167{bottom:149.749555pt;}
.yec_c00167{bottom:150.057407pt;}
.yed_c00167{bottom:150.563129pt;}
.yee_c00167{bottom:151.746428pt;}
.yef_c00167{bottom:152.014236pt;}
.yf0_c00167{bottom:152.446168pt;}
.yf1_c00167{bottom:152.717829pt;}
.yf2_c00167{bottom:153.703235pt;}
.yf3_c00167{bottom:154.467721pt;}
.yf4_c00167{bottom:154.929479pt;}
.yf5_c00167{bottom:155.412448pt;}
.yf6_c00167{bottom:155.733923pt;}
.yf7_c00167{bottom:156.164744pt;}
.yf8_c00167{bottom:156.481051pt;}
.yf9_c00167{bottom:156.883089pt;}
.yfa_c00167{bottom:157.588700pt;}
.ydc_c00167{bottom:166.073139pt;}
.ydd_c00167{bottom:166.273797pt;}
.yde_c00167{bottom:167.121691pt;}
.ydf_c00167{bottom:167.356471pt;}
.ye0_c00167{bottom:167.682908pt;}
.ye1_c00167{bottom:168.312391pt;}
.ye2_c00167{bottom:168.650845pt;}
.ye3_c00167{bottom:169.057879pt;}
.ye4_c00167{bottom:169.472415pt;}
.ye5_c00167{bottom:169.591801pt;}
.ye6_c00167{bottom:170.009152pt;}
.ye7_c00167{bottom:170.290656pt;}
.ye8_c00167{bottom:171.316265pt;}
.ye9_c00167{bottom:172.159240pt;}
.yea_c00167{bottom:172.596292pt;}
.ycd_c00167{bottom:181.916960pt;}
.yce_c00167{bottom:182.572435pt;}
.ycf_c00167{bottom:182.956181pt;}
.yd0_c00167{bottom:183.495489pt;}
.yd1_c00167{bottom:183.761823pt;}
.yd2_c00167{bottom:184.708655pt;}
.yd3_c00167{bottom:185.523907pt;}
.yd4_c00167{bottom:185.635019pt;}
.yd5_c00167{bottom:186.311165pt;}
.yd6_c00167{bottom:187.113225pt;}
.yd7_c00167{bottom:187.282205pt;}
.yd8_c00167{bottom:187.498559pt;}
.yd9_c00167{bottom:187.767113pt;}
.yda_c00167{bottom:188.098523pt;}
.ydb_c00167{bottom:189.694551pt;}
.ybf_c00167{bottom:197.999025pt;}
.yc0_c00167{bottom:198.741043pt;}
.yc1_c00167{bottom:199.005349pt;}
.yc2_c00167{bottom:199.940748pt;}
.yc3_c00167{bottom:200.426215pt;}
.yc4_c00167{bottom:201.225081pt;}
.yc5_c00167{bottom:201.531115pt;}
.yc6_c00167{bottom:201.898259pt;}
.yc7_c00167{bottom:202.135380pt;}
.yc8_c00167{bottom:202.632003pt;}
.yc9_c00167{bottom:203.024677pt;}
.yca_c00167{bottom:203.215244pt;}
.ycb_c00167{bottom:203.920956pt;}
.ycc_c00167{bottom:204.772815pt;}
.yaa_c00167{bottom:213.602667pt;}
.yab_c00167{bottom:214.056929pt;}
.yac_c00167{bottom:214.546869pt;}
.yad_c00167{bottom:214.707689pt;}
.yae_c00167{bottom:214.987872pt;}
.yaf_c00167{bottom:215.403896pt;}
.yb0_c00167{bottom:215.460336pt;}
.yb1_c00167{bottom:215.847959pt;}
.yb2_c00167{bottom:216.134760pt;}
.yb3_c00167{bottom:216.357800pt;}
.yb4_c00167{bottom:217.077104pt;}
.yb5_c00167{bottom:217.216368pt;}
.yb6_c00167{bottom:217.940772pt;}
.yb7_c00167{bottom:218.073191pt;}
.yb9_c00167{bottom:218.455260pt;}
.yb8_c00167{bottom:218.460179pt;}
.yba_c00167{bottom:218.716267pt;}
.ybb_c00167{bottom:218.946515pt;}
.ybc_c00167{bottom:219.325343pt;}
.ybd_c00167{bottom:220.216800pt;}
.ybe_c00167{bottom:220.873317pt;}
.ya9_c00167{bottom:253.286667pt;}
.ya8_c00167{bottom:264.749333pt;}
.ya5_c00167{bottom:276.426513pt;}
.ya4_c00167{bottom:276.427067pt;}
.ya6_c00167{bottom:276.427120pt;}
.ya7_c00167{bottom:276.427767pt;}
.ya1_c00167{bottom:287.962620pt;}
.ya2_c00167{bottom:287.962733pt;}
.ya3_c00167{bottom:287.962920pt;}
.y9a_c00167{bottom:304.512127pt;}
.y9b_c00167{bottom:304.748980pt;}
.y9c_c00167{bottom:305.445413pt;}
.y9d_c00167{bottom:305.747553pt;}
.y9e_c00167{bottom:306.110407pt;}
.y9f_c00167{bottom:306.373633pt;}
.ya0_c00167{bottom:307.043407pt;}
.y92_c00167{bottom:324.626913pt;}
.y93_c00167{bottom:324.871793pt;}
.y94_c00167{bottom:325.516713pt;}
.y95_c00167{bottom:326.663913pt;}
.y96_c00167{bottom:327.136653pt;}
.y97_c00167{bottom:327.608413pt;}
.y98_c00167{bottom:327.878713pt;}
.y99_c00167{bottom:328.540813pt;}
.y8b_c00167{bottom:345.501133pt;}
.y8c_c00167{bottom:345.793200pt;}
.y8d_c00167{bottom:346.196953pt;}
.y8e_c00167{bottom:346.880340pt;}
.y8f_c00167{bottom:347.466260pt;}
.y90_c00167{bottom:347.748153pt;}
.y91_c00167{bottom:348.538307pt;}
.y85_c00167{bottom:364.279540pt;}
.y86_c00167{bottom:364.693953pt;}
.y87_c00167{bottom:365.300047pt;}
.y88_c00167{bottom:366.298433pt;}
.y89_c00167{bottom:367.161533pt;}
.y8a_c00167{bottom:367.751140pt;}
.y80_c00167{bottom:387.701667pt;}
.y81_c00167{bottom:387.701833pt;}
.y82_c00167{bottom:387.702080pt;}
.y83_c00167{bottom:387.702193pt;}
.y84_c00167{bottom:387.702340pt;}
.y79_c00167{bottom:405.081327pt;}
.y7a_c00167{bottom:405.340453pt;}
.y7b_c00167{bottom:406.040607pt;}
.y7c_c00167{bottom:406.421060pt;}
.y7d_c00167{bottom:406.677260pt;}
.y7e_c00167{bottom:407.031607pt;}
.y7f_c00167{bottom:407.293753pt;}
.y6f_c00167{bottom:425.244260pt;}
.y70_c00167{bottom:425.654720pt;}
.y71_c00167{bottom:426.590880pt;}
.y72_c00167{bottom:427.159067pt;}
.y73_c00167{bottom:427.822353pt;}
.y74_c00167{bottom:428.283227pt;}
.y75_c00167{bottom:429.074167pt;}
.y76_c00167{bottom:429.215847pt;}
.y77_c00167{bottom:429.545373pt;}
.y78_c00167{bottom:429.928433pt;}
.y66_c00167{bottom:445.884960pt;}
.y67_c00167{bottom:446.365287pt;}
.y68_c00167{bottom:446.512700pt;}
.y69_c00167{bottom:447.106853pt;}
.y6a_c00167{bottom:447.383907pt;}
.y6b_c00167{bottom:448.157860pt;}
.y6c_c00167{bottom:448.491080pt;}
.y6d_c00167{bottom:449.072507pt;}
.y6e_c00167{bottom:449.337093pt;}
.y5a_c00167{bottom:466.047407pt;}
.y5b_c00167{bottom:466.446747pt;}
.y5c_c00167{bottom:466.749633pt;}
.y5d_c00167{bottom:467.105860pt;}
.y5e_c00167{bottom:467.282607pt;}
.y5f_c00167{bottom:467.750533pt;}
.y60_c00167{bottom:468.338540pt;}
.y61_c00167{bottom:468.923447pt;}
.y62_c00167{bottom:469.142327pt;}
.y63_c00167{bottom:469.400020pt;}
.y64_c00167{bottom:469.737500pt;}
.y65_c00167{bottom:470.516820pt;}
.y57_c00167{bottom:489.528920pt;}
.y56_c00167{bottom:489.528980pt;}
.y58_c00167{bottom:489.529053pt;}
.y55_c00167{bottom:489.529573pt;}
.y54_c00167{bottom:489.529653pt;}
.y59_c00167{bottom:489.529660pt;}
.y4d_c00167{bottom:506.135073pt;}
.y4e_c00167{bottom:506.992233pt;}
.y4f_c00167{bottom:508.201880pt;}
.y50_c00167{bottom:508.488560pt;}
.y51_c00167{bottom:509.077560pt;}
.y52_c00167{bottom:509.959933pt;}
.y53_c00167{bottom:512.482460pt;}
.y44_c00167{bottom:527.736227pt;}
.y45_c00167{bottom:528.008847pt;}
.y46_c00167{bottom:528.193493pt;}
.y47_c00167{bottom:529.403047pt;}
.y48_c00167{bottom:529.936820pt;}
.y49_c00167{bottom:530.363413pt;}
.y4a_c00167{bottom:531.015327pt;}
.y4b_c00167{bottom:531.794807pt;}
.y4c_c00167{bottom:532.710413pt;}
.y43_c00167{bottom:550.266273pt;}
.y42_c00167{bottom:550.266847pt;}
.y40_c00167{bottom:550.267100pt;}
.y41_c00167{bottom:550.267307pt;}
.y3f_c00167{bottom:550.267673pt;}
.y3e_c00167{bottom:550.268133pt;}
.y39_c00167{bottom:566.866813pt;}
.y3a_c00167{bottom:568.046413pt;}
.y3b_c00167{bottom:568.992780pt;}
.y3c_c00167{bottom:569.372900pt;}
.y3d_c00167{bottom:570.195553pt;}
.y36_c00167{bottom:590.164327pt;}
.y35_c00167{bottom:590.164827pt;}
.y37_c00167{bottom:590.164933pt;}
.y34_c00167{bottom:590.164980pt;}
.y38_c00167{bottom:590.165253pt;}
.y2d_c00167{bottom:607.428647pt;}
.y2e_c00167{bottom:608.623633pt;}
.y2f_c00167{bottom:609.022740pt;}
.y30_c00167{bottom:609.878087pt;}
.y31_c00167{bottom:610.509120pt;}
.y32_c00167{bottom:611.108460pt;}
.y33_c00167{bottom:611.684540pt;}
.y25_c00167{bottom:627.834473pt;}
.y26_c00167{bottom:628.849507pt;}
.y27_c00167{bottom:629.364507pt;}
.y28_c00167{bottom:630.418040pt;}
.y29_c00167{bottom:631.698433pt;}
.y2a_c00167{bottom:632.139867pt;}
.y2b_c00167{bottom:632.598187pt;}
.y2c_c00167{bottom:633.448893pt;}
.y1d_c00167{bottom:647.995400pt;}
.y1e_c00167{bottom:649.043947pt;}
.y1f_c00167{bottom:649.539413pt;}
.y20_c00167{bottom:650.650047pt;}
.y21_c00167{bottom:651.628813pt;}
.y22_c00167{bottom:651.903467pt;}
.y23_c00167{bottom:652.376733pt;}
.y24_c00167{bottom:653.423000pt;}
.y15_c00167{bottom:668.157600pt;}
.y16_c00167{bottom:669.569833pt;}
.y17_c00167{bottom:670.023593pt;}
.y18_c00167{bottom:670.862073pt;}
.y19_c00167{bottom:671.173327pt;}
.y1a_c00167{bottom:672.092700pt;}
.y1b_c00167{bottom:672.288733pt;}
.y1c_c00167{bottom:672.838093pt;}
.yf_c00167{bottom:690.719953pt;}
.y10_c00167{bottom:691.565293pt;}
.y11_c00167{bottom:692.185387pt;}
.y12_c00167{bottom:692.788173pt;}
.y13_c00167{bottom:693.128393pt;}
.y14_c00167{bottom:693.926007pt;}
.y9_c00167{bottom:708.961987pt;}
.ya_c00167{bottom:710.263220pt;}
.yb_c00167{bottom:710.685573pt;}
.yc_c00167{bottom:711.516453pt;}
.yd_c00167{bottom:712.120980pt;}
.ye_c00167{bottom:713.090827pt;}
.y1_c00167{bottom:730.082667pt;}
.y2_c00167{bottom:730.911707pt;}
.y3_c00167{bottom:731.437527pt;}
.y4_c00167{bottom:732.037627pt;}
.y5_c00167{bottom:732.336827pt;}
.y6_c00167{bottom:733.254887pt;}
.y7_c00167{bottom:733.749007pt;}
.y8_c00167{bottom:734.420287pt;}
.h10_c00167{height:42.006069pt;}
.hc_c00167{height:43.866667pt;}
.hb_c00167{height:44.805040pt;}
.hf_c00167{height:44.806473pt;}
.hd_c00167{height:45.733333pt;}
.he_c00167{height:45.739941pt;}
.h11_c00167{height:46.673410pt;}
.h9_c00167{height:53.205985pt;}
.h15_c00167{height:55.093120pt;}
.h2_c00167{height:56.006300pt;}
.ha_c00167{height:59.740053pt;}
.h6_c00167{height:60.673491pt;}
.h5_c00167{height:61.606930pt;}
.h12_c00167{height:61.629592pt;}
.h8_c00167{height:62.540368pt;}
.h3_c00167{height:63.473806pt;}
.h4_c00167{height:64.407245pt;}
.h7_c00167{height:65.340683pt;}
.h14_c00167{height:75.636317pt;}
.h13_c00167{height:76.570099pt;}
.h0_c00167{height:896.400000pt;}
.h1_c00167{height:896.666667pt;}
.w0_c00167{width:601.680000pt;}
.w1_c00167{width:602.000000pt;}
.x0_c00167{left:0.000000pt;}
.x9a_c00167{left:73.046667pt;}
.x9d_c00167{left:83.156652pt;}
.x9e_c00167{left:84.113184pt;}
.x76_c00167{left:129.960475pt;}
.x87_c00167{left:131.176743pt;}
.x6c_c00167{left:132.420000pt;}
.x9f_c00167{left:141.818883pt;}
.x88_c00167{left:143.686280pt;}
.x1_c00167{left:148.493333pt;}
.x14_c00167{left:149.528900pt;}
.x26_c00167{left:150.465173pt;}
.x3d_c00167{left:153.836840pt;}
.x46_c00167{left:154.954127pt;}
.x6d_c00167{left:159.141333pt;}
.x2d_c00167{left:167.577313pt;}
.x80_c00167{left:169.061948pt;}
.x50_c00167{left:177.044460pt;}
.x4b_c00167{left:178.313433pt;}
.x77_c00167{left:179.414152pt;}
.x3e_c00167{left:182.326593pt;}
.x56_c00167{left:183.823093pt;}
.x31_c00167{left:186.877727pt;}
.x6e_c00167{left:187.961333pt;}
.x60_c00167{left:190.448893pt;}
.x47_c00167{left:191.865893pt;}
.x6f_c00167{left:197.421333pt;}
.x32_c00167{left:200.076593pt;}
.xa0_c00167{left:201.737377pt;}
.x5d_c00167{left:202.746333pt;}
.x2_c00167{left:203.762667pt;}
.x57_c00167{left:206.827387pt;}
.x1c_c00167{left:208.474133pt;}
.x61_c00167{left:210.151107pt;}
.x89_c00167{left:211.374103pt;}
.x6a_c00167{left:213.120000pt;}
.x9_c00167{left:214.086647pt;}
.x27_c00167{left:216.883527pt;}
.x64_c00167{left:219.847693pt;}
.x15_c00167{left:223.851107pt;}
.x2a_c00167{left:225.607640pt;}
.x96_c00167{left:227.525045pt;}
.x3f_c00167{left:229.379293pt;}
.x20_c00167{left:230.411527pt;}
.x66_c00167{left:231.608667pt;}
.xa_c00167{left:235.219733pt;}
.x3_c00167{left:238.817333pt;}
.x58_c00167{left:240.476533pt;}
.x40_c00167{left:242.051493pt;}
.xe_c00167{left:243.412993pt;}
.x5e_c00167{left:245.741000pt;}
.x16_c00167{left:247.700333pt;}
.x48_c00167{left:248.860927pt;}
.x53_c00167{left:249.850693pt;}
.x97_c00167{left:251.695712pt;}
.x68_c00167{left:256.080000pt;}
.x8e_c00167{left:257.477499pt;}
.x78_c00167{left:259.399539pt;}
.x4c_c00167{left:261.888340pt;}
.x70_c00167{left:264.496000pt;}
.x5a_c00167{left:266.096167pt;}
.x51_c00167{left:267.044500pt;}
.x62_c00167{left:268.227060pt;}
.x49_c00167{left:270.176233pt;}
.x8a_c00167{left:271.135123pt;}
.x65_c00167{left:272.412847pt;}
.x41_c00167{left:275.469327pt;}
.xb_c00167{left:276.741947pt;}
.x67_c00167{left:277.933753pt;}
.x4_c00167{left:278.824000pt;}
.x6b_c00167{left:281.280000pt;}
.x21_c00167{left:285.888207pt;}
.x3a_c00167{left:289.215140pt;}
.x17_c00167{left:291.863027pt;}
.xf_c00167{left:293.100827pt;}
.x71_c00167{left:294.486667pt;}
.x2f_c00167{left:295.696407pt;}
.x8f_c00167{left:296.590175pt;}
.x1d_c00167{left:297.676780pt;}
.x5_c00167{left:298.770667pt;}
.x9b_c00167{left:304.126667pt;}
.xc_c00167{left:306.997020pt;}
.x18_c00167{left:308.256713pt;}
.x98_c00167{left:310.747712pt;}
.x69_c00167{left:313.920000pt;}
.x42_c00167{left:317.425947pt;}
.x28_c00167{left:321.600140pt;}
.x37_c00167{left:323.150953pt;}
.x33_c00167{left:324.655807pt;}
.x9c_c00167{left:326.421333pt;}
.x30_c00167{left:328.339747pt;}
.x10_c00167{left:329.550393pt;}
.x5b_c00167{left:334.037813pt;}
.x54_c00167{left:335.060520pt;}
.x2b_c00167{left:336.740640pt;}
.x52_c00167{left:339.805113pt;}
.x2e_c00167{left:342.816147pt;}
.x59_c00167{left:343.859873pt;}
.x63_c00167{left:345.578540pt;}
.x81_c00167{left:349.213948pt;}
.x8b_c00167{left:351.101816pt;}
.x1e_c00167{left:352.081007pt;}
.x22_c00167{left:353.288167pt;}
.xd_c00167{left:355.472047pt;}
.x19_c00167{left:356.656480pt;}
.x6_c00167{left:359.974667pt;}
.x11_c00167{left:365.024000pt;}
.x1a_c00167{left:366.969193pt;}
.x4d_c00167{left:368.223540pt;}
.x38_c00167{left:369.617507pt;}
.x3b_c00167{left:371.065560pt;}
.x43_c00167{left:374.834807pt;}
.x23_c00167{left:376.493433pt;}
.x2c_c00167{left:382.105507pt;}
.x12_c00167{left:385.038067pt;}
.x29_c00167{left:386.891867pt;}
.x5c_c00167{left:388.335680pt;}
.x79_c00167{left:390.002671pt;}
.x7_c00167{left:392.916000pt;}
.x4e_c00167{left:394.391693pt;}
.x1b_c00167{left:395.858120pt;}
.x24_c00167{left:400.646660pt;}
.x34_c00167{left:401.712967pt;}
.x55_c00167{left:403.707960pt;}
.x7a_c00167{left:405.833881pt;}
.x3c_c00167{left:408.269920pt;}
.x4f_c00167{left:415.661400pt;}
.x44_c00167{left:417.358113pt;}
.x90_c00167{left:419.469423pt;}
.x4a_c00167{left:420.482087pt;}
.x99_c00167{left:425.714379pt;}
.x13_c00167{left:431.988667pt;}
.x72_c00167{left:433.220000pt;}
.x82_c00167{left:436.167281pt;}
.x8_c00167{left:437.668000pt;}
.x7b_c00167{left:438.969681pt;}
.x25_c00167{left:445.446647pt;}
.x5f_c00167{left:447.347667pt;}
.x1f_c00167{left:451.777860pt;}
.x35_c00167{left:457.412473pt;}
.x83_c00167{left:458.833948pt;}
.x91_c00167{left:464.200675pt;}
.x7c_c00167{left:465.127899pt;}
.x73_c00167{left:469.048000pt;}
.x45_c00167{left:473.046953pt;}
.x84_c00167{left:474.631281pt;}
.x7d_c00167{left:477.828329pt;}
.x92_c00167{left:488.130933pt;}
.x85_c00167{left:494.125948pt;}
.x39_c00167{left:502.400213pt;}
.x93_c00167{left:505.717305pt;}
.x8c_c00167{left:511.620559pt;}
.x74_c00167{left:521.486667pt;}
.x36_c00167{left:522.809453pt;}
.x7e_c00167{left:524.832583pt;}
.x94_c00167{left:528.032920pt;}
.x8d_c00167{left:538.977035pt;}
.x75_c00167{left:560.105333pt;}
.x95_c00167{left:567.264263pt;}
.x7f_c00167{left:581.610509pt;}
.x86_c00167{left:588.009948pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m64_c00168{transform:matrix(0.011781,-0.000306,0.006498,0.249916,0,0);-ms-transform:matrix(0.011781,-0.000306,0.006498,0.249916,0,0);-webkit-transform:matrix(0.011781,-0.000306,0.006498,0.249916,0,0);}
.m3a_c00168{transform:matrix(0.012318,-0.000209,0.004249,0.249964,0,0);-ms-transform:matrix(0.012318,-0.000209,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012318,-0.000209,0.004249,0.249964,0,0);}
.mcc_c00168{transform:matrix(0.012539,-0.000125,0.002500,0.249988,0,0);-ms-transform:matrix(0.012539,-0.000125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012539,-0.000125,0.002500,0.249988,0,0);}
.mc5_c00168{transform:matrix(0.015344,-0.000153,0.002500,0.249988,0,0);-ms-transform:matrix(0.015344,-0.000153,0.002500,0.249988,0,0);-webkit-transform:matrix(0.015344,-0.000153,0.002500,0.249988,0,0);}
.mac_c00168{transform:matrix(0.018919,-0.000208,0.002750,0.249985,0,0);-ms-transform:matrix(0.018919,-0.000208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.018919,-0.000208,0.002750,0.249985,0,0);}
.m9c_c00168{transform:matrix(0.045452,-0.000500,0.002750,0.249985,0,0);-ms-transform:matrix(0.045452,-0.000500,0.002750,0.249985,0,0);-webkit-transform:matrix(0.045452,-0.000500,0.002750,0.249985,0,0);}
.mcb_c00168{transform:matrix(0.095700,-0.000957,0.002500,0.249988,0,0);-ms-transform:matrix(0.095700,-0.000957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.095700,-0.000957,0.002500,0.249988,0,0);}
.m78_c00168{transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.111058,-0.001222,0.002750,0.249985,0,0);-ms-transform:matrix(0.111058,-0.001222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.111058,-0.001222,0.002750,0.249985,0,0);}
.m27_c00168{transform:matrix(0.111753,-0.002459,0.005499,0.249940,0,0);-ms-transform:matrix(0.111753,-0.002459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.111753,-0.002459,0.005499,0.249940,0,0);}
.m29_c00168{transform:matrix(0.118431,-0.002605,0.005499,0.249940,0,0);-ms-transform:matrix(0.118431,-0.002605,0.005499,0.249940,0,0);-webkit-transform:matrix(0.118431,-0.002605,0.005499,0.249940,0,0);}
.m26_c00168{transform:matrix(0.119871,-0.002637,0.005499,0.249940,0,0);-ms-transform:matrix(0.119871,-0.002637,0.005499,0.249940,0,0);-webkit-transform:matrix(0.119871,-0.002637,0.005499,0.249940,0,0);}
.mce_c00168{transform:matrix(0.122208,-0.001711,0.003500,0.249976,0,0);-ms-transform:matrix(0.122208,-0.001711,0.003500,0.249976,0,0);-webkit-transform:matrix(0.122208,-0.001711,0.003500,0.249976,0,0);}
.maf_c00168{transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);-ms-transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);-webkit-transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);}
.m17_c00168{transform:matrix(0.142620,-0.003138,0.005499,0.249940,0,0);-ms-transform:matrix(0.142620,-0.003138,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142620,-0.003138,0.005499,0.249940,0,0);}
.m43_c00168{transform:matrix(0.149538,-0.002542,0.004249,0.249964,0,0);-ms-transform:matrix(0.149538,-0.002542,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149538,-0.002542,0.004249,0.249964,0,0);}
.m54_c00168{transform:matrix(0.156577,-0.002662,0.004249,0.249964,0,0);-ms-transform:matrix(0.156577,-0.002662,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156577,-0.002662,0.004249,0.249964,0,0);}
.m18_c00168{transform:matrix(0.160301,-0.003527,0.005499,0.249940,0,0);-ms-transform:matrix(0.160301,-0.003527,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160301,-0.003527,0.005499,0.249940,0,0);}
.m71_c00168{transform:matrix(0.160676,-0.004178,0.006498,0.249916,0,0);-ms-transform:matrix(0.160676,-0.004178,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160676,-0.004178,0.006498,0.249916,0,0);}
.m3b_c00168{transform:matrix(0.161437,-0.002744,0.004249,0.249964,0,0);-ms-transform:matrix(0.161437,-0.002744,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161437,-0.002744,0.004249,0.249964,0,0);}
.m74_c00168{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);}
.m7b_c00168{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.164035,-0.004265,0.006498,0.249916,0,0);-ms-transform:matrix(0.164035,-0.004265,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164035,-0.004265,0.006498,0.249916,0,0);}
.m6e_c00168{transform:matrix(0.164309,-0.004272,0.006498,0.249916,0,0);-ms-transform:matrix(0.164309,-0.004272,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164309,-0.004272,0.006498,0.249916,0,0);}
.m77_c00168{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);}
.m50_c00168{transform:matrix(0.171135,-0.002909,0.004249,0.249964,0,0);-ms-transform:matrix(0.171135,-0.002909,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171135,-0.002909,0.004249,0.249964,0,0);}
.m57_c00168{transform:matrix(0.171385,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171385,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171385,-0.002914,0.004249,0.249964,0,0);}
.m4f_c00168{transform:matrix(0.173510,-0.002950,0.004249,0.249964,0,0);-ms-transform:matrix(0.173510,-0.002950,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173510,-0.002950,0.004249,0.249964,0,0);}
.m31_c00168{transform:matrix(0.174086,-0.004526,0.006498,0.249916,0,0);-ms-transform:matrix(0.174086,-0.004526,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174086,-0.004526,0.006498,0.249916,0,0);}
.m79_c00168{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);}
.m1e_c00168{transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);-ms-transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);}
.m2b_c00168{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);}
.me_c00168{transform:matrix(0.175922,-0.003870,0.005499,0.249940,0,0);-ms-transform:matrix(0.175922,-0.003870,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175922,-0.003870,0.005499,0.249940,0,0);}
.mb3_c00168{transform:matrix(0.176084,-0.001937,0.002750,0.249985,0,0);-ms-transform:matrix(0.176084,-0.001937,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176084,-0.001937,0.002750,0.249985,0,0);}
.m63_c00168{transform:matrix(0.176275,-0.002997,0.004249,0.249964,0,0);-ms-transform:matrix(0.176275,-0.002997,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176275,-0.002997,0.004249,0.249964,0,0);}
.m81_c00168{transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);}
.m12_c00168{transform:matrix(0.177117,-0.003897,0.005499,0.249940,0,0);-ms-transform:matrix(0.177117,-0.003897,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177117,-0.003897,0.005499,0.249940,0,0);}
.m56_c00168{transform:matrix(0.177834,-0.003023,0.004249,0.249964,0,0);-ms-transform:matrix(0.177834,-0.003023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177834,-0.003023,0.004249,0.249964,0,0);}
.m7c_c00168{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.179062,-0.003939,0.005499,0.249940,0,0);-ms-transform:matrix(0.179062,-0.003939,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179062,-0.003939,0.005499,0.249940,0,0);}
.m75_c00168{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);}
.mb4_c00168{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);}
.m4c_c00168{transform:matrix(0.180709,-0.003072,0.004249,0.249964,0,0);-ms-transform:matrix(0.180709,-0.003072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180709,-0.003072,0.004249,0.249964,0,0);}
.mb5_c00168{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);}
.m44_c00168{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);}
.mc9_c00168{transform:matrix(0.181886,-0.001819,0.002500,0.249988,0,0);-ms-transform:matrix(0.181886,-0.001819,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181886,-0.001819,0.002500,0.249988,0,0);}
.m1a_c00168{transform:matrix(0.181936,-0.004003,0.005499,0.249940,0,0);-ms-transform:matrix(0.181936,-0.004003,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181936,-0.004003,0.005499,0.249940,0,0);}
.m3f_c00168{transform:matrix(0.182164,-0.003097,0.004249,0.249964,0,0);-ms-transform:matrix(0.182164,-0.003097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182164,-0.003097,0.004249,0.249964,0,0);}
.m9d_c00168{transform:matrix(0.184054,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184054,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184054,-0.002025,0.002750,0.249985,0,0);}
.m52_c00168{transform:matrix(0.184058,-0.003129,0.004249,0.249964,0,0);-ms-transform:matrix(0.184058,-0.003129,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184058,-0.003129,0.004249,0.249964,0,0);}
.mc8_c00168{transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);}
.mba_c00168{transform:matrix(0.184889,-0.002034,0.002750,0.249985,0,0);-ms-transform:matrix(0.184889,-0.002034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184889,-0.002034,0.002750,0.249985,0,0);}
.m2c_c00168{transform:matrix(0.187347,-0.004871,0.006498,0.249916,0,0);-ms-transform:matrix(0.187347,-0.004871,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187347,-0.004871,0.006498,0.249916,0,0);}
.m4b_c00168{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);}
.m45_c00168{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);}
.m4d_c00168{transform:matrix(0.189323,-0.003218,0.004249,0.249964,0,0);-ms-transform:matrix(0.189323,-0.003218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189323,-0.003218,0.004249,0.249964,0,0);}
.m5c_c00168{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);}
.m20_c00168{transform:matrix(0.190169,-0.004184,0.005499,0.249940,0,0);-ms-transform:matrix(0.190169,-0.004184,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190169,-0.004184,0.005499,0.249940,0,0);}
.mc2_c00168{transform:matrix(0.190255,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190255,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190255,-0.001903,0.002500,0.249988,0,0);}
.m41_c00168{transform:matrix(0.190622,-0.003241,0.004249,0.249964,0,0);-ms-transform:matrix(0.190622,-0.003241,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190622,-0.003241,0.004249,0.249964,0,0);}
.m23_c00168{transform:matrix(0.191459,-0.004212,0.005499,0.249940,0,0);-ms-transform:matrix(0.191459,-0.004212,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191459,-0.004212,0.005499,0.249940,0,0);}
.m9e_c00168{transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191653,-0.002108,0.002750,0.249985,0,0);}
.m46_c00168{transform:matrix(0.191707,-0.003259,0.004249,0.249964,0,0);-ms-transform:matrix(0.191707,-0.003259,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191707,-0.003259,0.004249,0.249964,0,0);}
.m38_c00168{transform:matrix(0.192052,-0.003265,0.004249,0.249964,0,0);-ms-transform:matrix(0.192052,-0.003265,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192052,-0.003265,0.004249,0.249964,0,0);}
.m53_c00168{transform:matrix(0.192382,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192382,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192382,-0.003270,0.004249,0.249964,0,0);}
.m6d_c00168{transform:matrix(0.192585,-0.005007,0.006498,0.249916,0,0);-ms-transform:matrix(0.192585,-0.005007,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192585,-0.005007,0.006498,0.249916,0,0);}
.m25_c00168{transform:matrix(0.193008,-0.004246,0.005499,0.249940,0,0);-ms-transform:matrix(0.193008,-0.004246,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193008,-0.004246,0.005499,0.249940,0,0);}
.m49_c00168{transform:matrix(0.193132,-0.003283,0.004249,0.249964,0,0);-ms-transform:matrix(0.193132,-0.003283,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193132,-0.003283,0.004249,0.249964,0,0);}
.mcd_c00168{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);}
.m7a_c00168{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);}
.m8e_c00168{transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194378,-0.002138,0.002750,0.249985,0,0);}
.m55_c00168{transform:matrix(0.194497,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194497,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194497,-0.003306,0.004249,0.249964,0,0);}
.m36_c00168{transform:matrix(0.195057,-0.003316,0.004249,0.249964,0,0);-ms-transform:matrix(0.195057,-0.003316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195057,-0.003316,0.004249,0.249964,0,0);}
.m98_c00168{transform:matrix(0.195388,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195388,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195388,-0.002149,0.002750,0.249985,0,0);}
.m24_c00168{transform:matrix(0.196073,-0.004314,0.005499,0.249940,0,0);-ms-transform:matrix(0.196073,-0.004314,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196073,-0.004314,0.005499,0.249940,0,0);}
.m80_c00168{transform:matrix(0.196098,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196098,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196098,-0.002157,0.002750,0.249985,0,0);}
.m34_c00168{transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);-ms-transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);}
.m5b_c00168{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);}
.m59_c00168{transform:matrix(0.197032,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197032,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197032,-0.003350,0.004249,0.249964,0,0);}
.m8c_c00168{transform:matrix(0.197808,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197808,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197808,-0.002176,0.002750,0.249985,0,0);}
.md_c00168{transform:matrix(0.198587,-0.004369,0.005499,0.249940,0,0);-ms-transform:matrix(0.198587,-0.004369,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198587,-0.004369,0.005499,0.249940,0,0);}
.ma9_c00168{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);}
.m5a_c00168{transform:matrix(0.199161,-0.003386,0.004249,0.249964,0,0);-ms-transform:matrix(0.199161,-0.003386,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199161,-0.003386,0.004249,0.249964,0,0);}
.mbe_c00168{transform:matrix(0.200463,-0.002205,0.002750,0.249985,0,0);-ms-transform:matrix(0.200463,-0.002205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200463,-0.002205,0.002750,0.249985,0,0);}
.m48_c00168{transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);-ms-transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);}
.m7d_c00168{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);}
.mab_c00168{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);}
.mc7_c00168{transform:matrix(0.203840,-0.002038,0.002500,0.249988,0,0);-ms-transform:matrix(0.203840,-0.002038,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203840,-0.002038,0.002500,0.249988,0,0);}
.m73_c00168{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);}
.m42_c00168{transform:matrix(0.204550,-0.003477,0.004249,0.249964,0,0);-ms-transform:matrix(0.204550,-0.003477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204550,-0.003477,0.004249,0.249964,0,0);}
.m76_c00168{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);}
.m82_c00168{transform:matrix(0.204873,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204873,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204873,-0.002254,0.002750,0.249985,0,0);}
.m69_c00168{transform:matrix(0.205021,-0.005331,0.006498,0.249916,0,0);-ms-transform:matrix(0.205021,-0.005331,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205021,-0.005331,0.006498,0.249916,0,0);}
.m85_c00168{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);}
.mb2_c00168{transform:matrix(0.206717,-0.002274,0.002750,0.249985,0,0);-ms-transform:matrix(0.206717,-0.002274,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206717,-0.002274,0.002750,0.249985,0,0);}
.m9a_c00168{transform:matrix(0.207072,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207072,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207072,-0.002278,0.002750,0.249985,0,0);}
.mb6_c00168{transform:matrix(0.207447,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207447,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207447,-0.002282,0.002750,0.249985,0,0);}
.m3e_c00168{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);}
.m47_c00168{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);}
.mbc_c00168{transform:matrix(0.209202,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209202,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209202,-0.002301,0.002750,0.249985,0,0);}
.m95_c00168{transform:matrix(0.209607,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209607,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209607,-0.002306,0.002750,0.249985,0,0);}
.m72_c00168{transform:matrix(0.209709,-0.005452,0.006498,0.249916,0,0);-ms-transform:matrix(0.209709,-0.005452,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209709,-0.005452,0.006498,0.249916,0,0);}
.m96_c00168{transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);}
.mca_c00168{transform:matrix(0.210624,-0.002106,0.002500,0.249988,0,0);-ms-transform:matrix(0.210624,-0.002106,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210624,-0.002106,0.002500,0.249988,0,0);}
.m99_c00168{transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);-ms-transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210847,-0.002319,0.002750,0.249985,0,0);}
.m21_c00168{transform:matrix(0.211004,-0.004642,0.005499,0.249940,0,0);-ms-transform:matrix(0.211004,-0.004642,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211004,-0.004642,0.005499,0.249940,0,0);}
.m60_c00168{transform:matrix(0.211159,-0.003590,0.004249,0.249964,0,0);-ms-transform:matrix(0.211159,-0.003590,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211159,-0.003590,0.004249,0.249964,0,0);}
.mbb_c00168{transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);-ms-transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);}
.m6a_c00168{transform:matrix(0.211858,-0.005508,0.006498,0.249916,0,0);-ms-transform:matrix(0.211858,-0.005508,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211858,-0.005508,0.006498,0.249916,0,0);}
.m70_c00168{transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);-ms-transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);}
.m1b_c00168{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);}
.m37_c00168{transform:matrix(0.212769,-0.003617,0.004249,0.249964,0,0);-ms-transform:matrix(0.212769,-0.003617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212769,-0.003617,0.004249,0.249964,0,0);}
.m84_c00168{transform:matrix(0.213217,-0.002345,0.002750,0.249985,0,0);-ms-transform:matrix(0.213217,-0.002345,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213217,-0.002345,0.002750,0.249985,0,0);}
.ma8_c00168{transform:matrix(0.213607,-0.002350,0.002750,0.249985,0,0);-ms-transform:matrix(0.213607,-0.002350,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213607,-0.002350,0.002750,0.249985,0,0);}
.maa_c00168{transform:matrix(0.214322,-0.002358,0.002750,0.249985,0,0);-ms-transform:matrix(0.214322,-0.002358,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214322,-0.002358,0.002750,0.249985,0,0);}
.m3d_c00168{transform:matrix(0.214639,-0.003649,0.004249,0.249964,0,0);-ms-transform:matrix(0.214639,-0.003649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214639,-0.003649,0.004249,0.249964,0,0);}
.mc6_c00168{transform:matrix(0.214794,-0.002148,0.002500,0.249988,0,0);-ms-transform:matrix(0.214794,-0.002148,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214794,-0.002148,0.002500,0.249988,0,0);}
.mbf_c00168{transform:matrix(0.215122,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215122,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215122,-0.002366,0.002750,0.249985,0,0);}
.ma0_c00168{transform:matrix(0.216457,-0.002381,0.002750,0.249985,0,0);-ms-transform:matrix(0.216457,-0.002381,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216457,-0.002381,0.002750,0.249985,0,0);}
.m1c_c00168{transform:matrix(0.217912,-0.004794,0.005499,0.249940,0,0);-ms-transform:matrix(0.217912,-0.004794,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217912,-0.004794,0.005499,0.249940,0,0);}
.m35_c00168{transform:matrix(0.218723,-0.003718,0.004249,0.249964,0,0);-ms-transform:matrix(0.218723,-0.003718,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218723,-0.003718,0.004249,0.249964,0,0);}
.mf_c00168{transform:matrix(0.218742,-0.004812,0.005499,0.249940,0,0);-ms-transform:matrix(0.218742,-0.004812,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218742,-0.004812,0.005499,0.249940,0,0);}
.m8f_c00168{transform:matrix(0.219142,-0.002411,0.002750,0.249985,0,0);-ms-transform:matrix(0.219142,-0.002411,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219142,-0.002411,0.002750,0.249985,0,0);}
.m5d_c00168{transform:matrix(0.219158,-0.003726,0.004249,0.249964,0,0);-ms-transform:matrix(0.219158,-0.003726,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219158,-0.003726,0.004249,0.249964,0,0);}
.ma4_c00168{transform:matrix(0.219942,-0.002419,0.002750,0.249985,0,0);-ms-transform:matrix(0.219942,-0.002419,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219942,-0.002419,0.002750,0.249985,0,0);}
.m3c_c00168{transform:matrix(0.220728,-0.003752,0.004249,0.249964,0,0);-ms-transform:matrix(0.220728,-0.003752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220728,-0.003752,0.004249,0.249964,0,0);}
.mae_c00168{transform:matrix(0.221877,-0.002441,0.002750,0.249985,0,0);-ms-transform:matrix(0.221877,-0.002441,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221877,-0.002441,0.002750,0.249985,0,0);}
.mb1_c00168{transform:matrix(0.221962,-0.002442,0.002750,0.249985,0,0);-ms-transform:matrix(0.221962,-0.002442,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221962,-0.002442,0.002750,0.249985,0,0);}
.m51_c00168{transform:matrix(0.221978,-0.003774,0.004249,0.249964,0,0);-ms-transform:matrix(0.221978,-0.003774,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221978,-0.003774,0.004249,0.249964,0,0);}
.mb9_c00168{transform:matrix(0.224876,-0.002474,0.002750,0.249985,0,0);-ms-transform:matrix(0.224876,-0.002474,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224876,-0.002474,0.002750,0.249985,0,0);}
.m93_c00168{transform:matrix(0.225626,-0.002482,0.002750,0.249985,0,0);-ms-transform:matrix(0.225626,-0.002482,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225626,-0.002482,0.002750,0.249985,0,0);}
.m6_c00168{transform:matrix(0.225748,-0.008135,0.009003,0.249838,0,0);-ms-transform:matrix(0.225748,-0.008135,0.009003,0.249838,0,0);-webkit-transform:matrix(0.225748,-0.008135,0.009003,0.249838,0,0);}
.m91_c00168{transform:matrix(0.225756,-0.002483,0.002750,0.249985,0,0);-ms-transform:matrix(0.225756,-0.002483,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225756,-0.002483,0.002750,0.249985,0,0);}
.m19_c00168{transform:matrix(0.225940,-0.004971,0.005499,0.249940,0,0);-ms-transform:matrix(0.225940,-0.004971,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225940,-0.004971,0.005499,0.249940,0,0);}
.mbd_c00168{transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);-ms-transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);}
.m6c_c00168{transform:matrix(0.226523,-0.005890,0.006498,0.249916,0,0);-ms-transform:matrix(0.226523,-0.005890,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226523,-0.005890,0.006498,0.249916,0,0);}
.m83_c00168{transform:matrix(0.227091,-0.002498,0.002750,0.249985,0,0);-ms-transform:matrix(0.227091,-0.002498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227091,-0.002498,0.002750,0.249985,0,0);}
.m6b_c00168{transform:matrix(0.227618,-0.005918,0.006498,0.249916,0,0);-ms-transform:matrix(0.227618,-0.005918,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227618,-0.005918,0.006498,0.249916,0,0);}
.m33_c00168{transform:matrix(0.228887,-0.003891,0.004249,0.249964,0,0);-ms-transform:matrix(0.228887,-0.003891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228887,-0.003891,0.004249,0.249964,0,0);}
.m5f_c00168{transform:matrix(0.228977,-0.003893,0.004249,0.249964,0,0);-ms-transform:matrix(0.228977,-0.003893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228977,-0.003893,0.004249,0.249964,0,0);}
.ma3_c00168{transform:matrix(0.232541,-0.002558,0.002750,0.249985,0,0);-ms-transform:matrix(0.232541,-0.002558,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232541,-0.002558,0.002750,0.249985,0,0);}
.m4e_c00168{transform:matrix(0.232661,-0.003955,0.004249,0.249964,0,0);-ms-transform:matrix(0.232661,-0.003955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232661,-0.003955,0.004249,0.249964,0,0);}
.m7_c00168{transform:matrix(0.233443,-0.008412,0.009003,0.249838,0,0);-ms-transform:matrix(0.233443,-0.008412,0.009003,0.249838,0,0);-webkit-transform:matrix(0.233443,-0.008412,0.009003,0.249838,0,0);}
.ma6_c00168{transform:matrix(0.233996,-0.002574,0.002750,0.249985,0,0);-ms-transform:matrix(0.233996,-0.002574,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233996,-0.002574,0.002750,0.249985,0,0);}
.m9b_c00168{transform:matrix(0.234191,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234191,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234191,-0.002576,0.002750,0.249985,0,0);}
.m14_c00168{transform:matrix(0.234433,-0.005158,0.005499,0.249940,0,0);-ms-transform:matrix(0.234433,-0.005158,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234433,-0.005158,0.005499,0.249940,0,0);}
.m8_c00168{transform:matrix(0.234603,-0.008454,0.009003,0.249838,0,0);-ms-transform:matrix(0.234603,-0.008454,0.009003,0.249838,0,0);-webkit-transform:matrix(0.234603,-0.008454,0.009003,0.249838,0,0);}
.m28_c00168{transform:matrix(0.235353,-0.005178,0.005499,0.249940,0,0);-ms-transform:matrix(0.235353,-0.005178,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235353,-0.005178,0.005499,0.249940,0,0);}
.m88_c00168{transform:matrix(0.236546,-0.002602,0.002750,0.249985,0,0);-ms-transform:matrix(0.236546,-0.002602,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236546,-0.002602,0.002750,0.249985,0,0);}
.m10_c00168{transform:matrix(0.240652,-0.005294,0.005499,0.249940,0,0);-ms-transform:matrix(0.240652,-0.005294,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240652,-0.005294,0.005499,0.249940,0,0);}
.m39_c00168{transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);-ms-transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241920,-0.004113,0.004249,0.249964,0,0);}
.m9f_c00168{transform:matrix(0.242065,-0.002663,0.002750,0.249985,0,0);-ms-transform:matrix(0.242065,-0.002663,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242065,-0.002663,0.002750,0.249985,0,0);}
.m22_c00168{transform:matrix(0.242266,-0.005330,0.005499,0.249940,0,0);-ms-transform:matrix(0.242266,-0.005330,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242266,-0.005330,0.005499,0.249940,0,0);}
.m5e_c00168{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);}
.mb0_c00168{transform:matrix(0.243235,-0.002676,0.002750,0.249985,0,0);-ms-transform:matrix(0.243235,-0.002676,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243235,-0.002676,0.002750,0.249985,0,0);}
.ma1_c00168{transform:matrix(0.243415,-0.002678,0.002750,0.249985,0,0);-ms-transform:matrix(0.243415,-0.002678,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243415,-0.002678,0.002750,0.249985,0,0);}
.m40_c00168{transform:matrix(0.243735,-0.004143,0.004249,0.249964,0,0);-ms-transform:matrix(0.243735,-0.004143,0.004249,0.249964,0,0);-webkit-transform:matrix(0.243735,-0.004143,0.004249,0.249964,0,0);}
.mb8_c00168{transform:matrix(0.244415,-0.002689,0.002750,0.249985,0,0);-ms-transform:matrix(0.244415,-0.002689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244415,-0.002689,0.002750,0.249985,0,0);}
.m90_c00168{transform:matrix(0.244885,-0.002694,0.002750,0.249985,0,0);-ms-transform:matrix(0.244885,-0.002694,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244885,-0.002694,0.002750,0.249985,0,0);}
.m7f_c00168{transform:matrix(0.245485,-0.002700,0.002750,0.249985,0,0);-ms-transform:matrix(0.245485,-0.002700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245485,-0.002700,0.002750,0.249985,0,0);}
.mad_c00168{transform:matrix(0.251125,-0.002762,0.002750,0.249985,0,0);-ms-transform:matrix(0.251125,-0.002762,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251125,-0.002762,0.002750,0.249985,0,0);}
.mc_c00168{transform:matrix(0.251459,-0.005532,0.005499,0.249940,0,0);-ms-transform:matrix(0.251459,-0.005532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251459,-0.005532,0.005499,0.249940,0,0);}
.m58_c00168{transform:matrix(0.253338,-0.004307,0.004249,0.249964,0,0);-ms-transform:matrix(0.253338,-0.004307,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253338,-0.004307,0.004249,0.249964,0,0);}
.m65_c00168{transform:matrix(0.255304,-0.006638,0.006498,0.249916,0,0);-ms-transform:matrix(0.255304,-0.006638,0.006498,0.249916,0,0);-webkit-transform:matrix(0.255304,-0.006638,0.006498,0.249916,0,0);}
.m94_c00168{transform:matrix(0.255665,-0.002812,0.002750,0.249985,0,0);-ms-transform:matrix(0.255665,-0.002812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255665,-0.002812,0.002750,0.249985,0,0);}
.m92_c00168{transform:matrix(0.256709,-0.002824,0.002750,0.249985,0,0);-ms-transform:matrix(0.256709,-0.002824,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256709,-0.002824,0.002750,0.249985,0,0);}
.m89_c00168{transform:matrix(0.257094,-0.002828,0.002750,0.249985,0,0);-ms-transform:matrix(0.257094,-0.002828,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257094,-0.002828,0.002750,0.249985,0,0);}
.m66_c00168{transform:matrix(0.258213,-0.006714,0.006498,0.249916,0,0);-ms-transform:matrix(0.258213,-0.006714,0.006498,0.249916,0,0);-webkit-transform:matrix(0.258213,-0.006714,0.006498,0.249916,0,0);}
.mb7_c00168{transform:matrix(0.261709,-0.002879,0.002750,0.249985,0,0);-ms-transform:matrix(0.261709,-0.002879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261709,-0.002879,0.002750,0.249985,0,0);}
.mc4_c00168{transform:matrix(0.263257,-0.002633,0.002500,0.249988,0,0);-ms-transform:matrix(0.263257,-0.002633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263257,-0.002633,0.002500,0.249988,0,0);}
.m8a_c00168{transform:matrix(0.263954,-0.002903,0.002750,0.249985,0,0);-ms-transform:matrix(0.263954,-0.002903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263954,-0.002903,0.002750,0.249985,0,0);}
.m62_c00168{transform:matrix(0.265212,-0.004509,0.004249,0.249964,0,0);-ms-transform:matrix(0.265212,-0.004509,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265212,-0.004509,0.004249,0.249964,0,0);}
.m4a_c00168{transform:matrix(0.265497,-0.004513,0.004249,0.249964,0,0);-ms-transform:matrix(0.265497,-0.004513,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265497,-0.004513,0.004249,0.249964,0,0);}
.m61_c00168{transform:matrix(0.267696,-0.004551,0.004249,0.249964,0,0);-ms-transform:matrix(0.267696,-0.004551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267696,-0.004551,0.004249,0.249964,0,0);}
.m87_c00168{transform:matrix(0.268794,-0.002957,0.002750,0.249985,0,0);-ms-transform:matrix(0.268794,-0.002957,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268794,-0.002957,0.002750,0.249985,0,0);}
.m11_c00168{transform:matrix(0.269445,-0.005928,0.005499,0.249940,0,0);-ms-transform:matrix(0.269445,-0.005928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269445,-0.005928,0.005499,0.249940,0,0);}
.m3_c00168{transform:matrix(0.272268,-0.009811,0.009003,0.249838,0,0);-ms-transform:matrix(0.272268,-0.009811,0.009003,0.249838,0,0);-webkit-transform:matrix(0.272268,-0.009811,0.009003,0.249838,0,0);}
.m13_c00168{transform:matrix(0.279157,-0.006141,0.005499,0.249940,0,0);-ms-transform:matrix(0.279157,-0.006141,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279157,-0.006141,0.005499,0.249940,0,0);}
.ma7_c00168{transform:matrix(0.285418,-0.003140,0.002750,0.249985,0,0);-ms-transform:matrix(0.285418,-0.003140,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285418,-0.003140,0.002750,0.249985,0,0);}
.m8d_c00168{transform:matrix(0.291042,-0.003201,0.002750,0.249985,0,0);-ms-transform:matrix(0.291042,-0.003201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291042,-0.003201,0.002750,0.249985,0,0);}
.m15_c00168{transform:matrix(0.293994,-0.006468,0.005499,0.249940,0,0);-ms-transform:matrix(0.293994,-0.006468,0.005499,0.249940,0,0);-webkit-transform:matrix(0.293994,-0.006468,0.005499,0.249940,0,0);}
.ma5_c00168{transform:matrix(0.308701,-0.003396,0.002750,0.249985,0,0);-ms-transform:matrix(0.308701,-0.003396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.308701,-0.003396,0.002750,0.249985,0,0);}
.m0_c00168{transform:matrix(0.316694,-0.011412,0.009003,0.249838,0,0);-ms-transform:matrix(0.316694,-0.011412,0.009003,0.249838,0,0);-webkit-transform:matrix(0.316694,-0.011412,0.009003,0.249838,0,0);}
.m7e_c00168{transform:matrix(0.319276,-0.003512,0.002750,0.249985,0,0);-ms-transform:matrix(0.319276,-0.003512,0.002750,0.249985,0,0);-webkit-transform:matrix(0.319276,-0.003512,0.002750,0.249985,0,0);}
.m4_c00168{transform:matrix(0.321142,-0.011573,0.009003,0.249838,0,0);-ms-transform:matrix(0.321142,-0.011573,0.009003,0.249838,0,0);-webkit-transform:matrix(0.321142,-0.011573,0.009003,0.249838,0,0);}
.m8b_c00168{transform:matrix(0.323280,-0.003556,0.002750,0.249985,0,0);-ms-transform:matrix(0.323280,-0.003556,0.002750,0.249985,0,0);-webkit-transform:matrix(0.323280,-0.003556,0.002750,0.249985,0,0);}
.mc3_c00168{transform:matrix(0.323744,-0.003237,0.002500,0.249988,0,0);-ms-transform:matrix(0.323744,-0.003237,0.002500,0.249988,0,0);-webkit-transform:matrix(0.323744,-0.003237,0.002500,0.249988,0,0);}
.m67_c00168{transform:matrix(0.329299,-0.008562,0.006498,0.249916,0,0);-ms-transform:matrix(0.329299,-0.008562,0.006498,0.249916,0,0);-webkit-transform:matrix(0.329299,-0.008562,0.006498,0.249916,0,0);}
.m97_c00168{transform:matrix(0.330755,-0.003638,0.002750,0.249985,0,0);-ms-transform:matrix(0.330755,-0.003638,0.002750,0.249985,0,0);-webkit-transform:matrix(0.330755,-0.003638,0.002750,0.249985,0,0);}
.m1_c00168{transform:matrix(0.331010,-0.011928,0.009003,0.249838,0,0);-ms-transform:matrix(0.331010,-0.011928,0.009003,0.249838,0,0);-webkit-transform:matrix(0.331010,-0.011928,0.009003,0.249838,0,0);}
.m9_c00168{transform:matrix(0.340059,-0.012254,0.009003,0.249838,0,0);-ms-transform:matrix(0.340059,-0.012254,0.009003,0.249838,0,0);-webkit-transform:matrix(0.340059,-0.012254,0.009003,0.249838,0,0);}
.m5_c00168{transform:matrix(0.341483,-0.012306,0.009003,0.249838,0,0);-ms-transform:matrix(0.341483,-0.012306,0.009003,0.249838,0,0);-webkit-transform:matrix(0.341483,-0.012306,0.009003,0.249838,0,0);}
.m2d_c00168{transform:matrix(0.351576,-0.009141,0.006498,0.249916,0,0);-ms-transform:matrix(0.351576,-0.009141,0.006498,0.249916,0,0);-webkit-transform:matrix(0.351576,-0.009141,0.006498,0.249916,0,0);}
.m30_c00168{transform:matrix(0.366916,-0.009540,0.006498,0.249916,0,0);-ms-transform:matrix(0.366916,-0.009540,0.006498,0.249916,0,0);-webkit-transform:matrix(0.366916,-0.009540,0.006498,0.249916,0,0);}
.mc0_c00168{transform:matrix(0.367633,-0.004044,0.002750,0.249985,0,0);-ms-transform:matrix(0.367633,-0.004044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.367633,-0.004044,0.002750,0.249985,0,0);}
.m2e_c00168{transform:matrix(0.398360,-0.010357,0.006498,0.249916,0,0);-ms-transform:matrix(0.398360,-0.010357,0.006498,0.249916,0,0);-webkit-transform:matrix(0.398360,-0.010357,0.006498,0.249916,0,0);}
.mb_c00168{transform:matrix(0.409885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409885,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.420158,-0.009243,0.005499,0.249940,0,0);-ms-transform:matrix(0.420158,-0.009243,0.005499,0.249940,0,0);-webkit-transform:matrix(0.420158,-0.009243,0.005499,0.249940,0,0);}
.ma_c00168{transform:matrix(0.422600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422600,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.436053,-0.011337,0.006498,0.249916,0,0);-ms-transform:matrix(0.436053,-0.011337,0.006498,0.249916,0,0);-webkit-transform:matrix(0.436053,-0.011337,0.006498,0.249916,0,0);}
.ma2_c00168{transform:matrix(0.439193,-0.004831,0.002750,0.249985,0,0);-ms-transform:matrix(0.439193,-0.004831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.439193,-0.004831,0.002750,0.249985,0,0);}
.m2_c00168{transform:matrix(0.446740,-0.016099,0.009003,0.249838,0,0);-ms-transform:matrix(0.446740,-0.016099,0.009003,0.249838,0,0);-webkit-transform:matrix(0.446740,-0.016099,0.009003,0.249838,0,0);}
.m16_c00168{transform:matrix(0.524598,-0.011541,0.005499,0.249940,0,0);-ms-transform:matrix(0.524598,-0.011541,0.005499,0.249940,0,0);-webkit-transform:matrix(0.524598,-0.011541,0.005499,0.249940,0,0);}
.mc1_c00168{transform:matrix(0.550962,-0.005510,0.002500,0.249988,0,0);-ms-transform:matrix(0.550962,-0.005510,0.002500,0.249988,0,0);-webkit-transform:matrix(0.550962,-0.005510,0.002500,0.249988,0,0);}
.m2a_c00168{transform:matrix(0.572107,-0.012586,0.005499,0.249940,0,0);-ms-transform:matrix(0.572107,-0.012586,0.005499,0.249940,0,0);-webkit-transform:matrix(0.572107,-0.012586,0.005499,0.249940,0,0);}
.m68_c00168{transform:matrix(0.589431,-0.015325,0.006498,0.249916,0,0);-ms-transform:matrix(0.589431,-0.015325,0.006498,0.249916,0,0);-webkit-transform:matrix(0.589431,-0.015325,0.006498,0.249916,0,0);}
.m32_c00168{transform:matrix(0.959111,-0.024937,0.006498,0.249916,0,0);-ms-transform:matrix(0.959111,-0.024937,0.006498,0.249916,0,0);-webkit-transform:matrix(0.959111,-0.024937,0.006498,0.249916,0,0);}
.mcf_c00168{transform:matrix(1.288694,-0.018042,0.003500,0.249976,0,0);-ms-transform:matrix(1.288694,-0.018042,0.003500,0.249976,0,0);-webkit-transform:matrix(1.288694,-0.018042,0.003500,0.249976,0,0);}
.md0_c00168{transform:matrix(1.297783,-0.018169,0.003500,0.249976,0,0);-ms-transform:matrix(1.297783,-0.018169,0.003500,0.249976,0,0);-webkit-transform:matrix(1.297783,-0.018169,0.003500,0.249976,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;}
.fs11_c00168{font-size:44.102668px;}
.fs10_c00168{font-size:47.252859px;}
.fs12_c00168{font-size:50.403049px;}
.fsf_c00168{font-size:51.450000px;}
.fs13_c00168{font-size:51.453113px;}
.fse_c00168{font-size:52.500000px;}
.fs14_c00168{font-size:53.553240px;}
.fs15_c00168{font-size:55.652782px;}
.fs17_c00168{font-size:58.805762px;}
.fs16_c00168{font-size:60.903045px;}
.fsd_c00168{font-size:63.021290px;}
.fsb_c00168{font-size:64.059255px;}
.fs4_c00168{font-size:64.065498px;}
.fsc_c00168{font-size:65.109406px;}
.fs9_c00168{font-size:68.259861px;}
.fs8_c00168{font-size:69.310013px;}
.fs6_c00168{font-size:70.367023px;}
.fs3_c00168{font-size:72.450000px;}
.fsa_c00168{font-size:72.460468px;}
.fs5_c00168{font-size:72.467531px;}
.fs7_c00168{font-size:72.474484px;}
.fs0_c00168{font-size:104.963086px;}
.fs1_c00168{font-size:112.310502px;}
.fs2_c00168{font-size:134.352750px;}
.y0_c00168{bottom:0.000000px;}
.yc5_c00168{bottom:110.703000px;}
.yc6_c00168{bottom:110.818542px;}
.yc7_c00168{bottom:111.926229px;}
.yc2_c00168{bottom:161.243475px;}
.yc3_c00168{bottom:162.414870px;}
.yc4_c00168{bottom:162.525915px;}
.yb8_c00168{bottom:177.937500px;}
.yb9_c00168{bottom:178.601940px;}
.yba_c00168{bottom:178.931055px;}
.ybb_c00168{bottom:180.088545px;}
.ybc_c00168{bottom:180.554025px;}
.ybd_c00168{bottom:180.751245px;}
.ybe_c00168{bottom:181.439340px;}
.ybf_c00168{bottom:181.866075px;}
.yc0_c00168{bottom:182.206155px;}
.yc1_c00168{bottom:182.611485px;}
.ya7_c00168{bottom:196.017576px;}
.ya8_c00168{bottom:196.426290px;}
.ya9_c00168{bottom:196.616181px;}
.yaa_c00168{bottom:196.946552px;}
.yab_c00168{bottom:197.349357px;}
.yac_c00168{bottom:197.771703px;}
.yad_c00168{bottom:198.167297px;}
.yae_c00168{bottom:198.216197px;}
.yaf_c00168{bottom:198.656349px;}
.yb0_c00168{bottom:198.822491px;}
.yb1_c00168{bottom:199.084387px;}
.yb2_c00168{bottom:199.320176px;}
.yb3_c00168{bottom:199.655102px;}
.yb4_c00168{bottom:199.959528px;}
.yb5_c00168{bottom:200.240240px;}
.yb6_c00168{bottom:200.479773px;}
.yb7_c00168{bottom:200.821433px;}
.y9d_c00168{bottom:214.378748px;}
.y9e_c00168{bottom:214.510649px;}
.y9f_c00168{bottom:214.890522px;}
.ya0_c00168{bottom:215.093482px;}
.ya1_c00168{bottom:215.376085px;}
.ya2_c00168{bottom:215.862819px;}
.ya3_c00168{bottom:216.324283px;}
.ya4_c00168{bottom:216.783039px;}
.ya5_c00168{bottom:217.003660px;}
.ya6_c00168{bottom:218.236854px;}
.y8c_c00168{bottom:231.120056px;}
.y8d_c00168{bottom:231.245175px;}
.y8e_c00168{bottom:231.447118px;}
.y8f_c00168{bottom:231.666849px;}
.y90_c00168{bottom:232.212735px;}
.y91_c00168{bottom:232.465664px;}
.y92_c00168{bottom:233.131026px;}
.y93_c00168{bottom:233.815512px;}
.y94_c00168{bottom:234.173430px;}
.y95_c00168{bottom:234.482096px;}
.y96_c00168{bottom:234.767496px;}
.y97_c00168{bottom:235.055602px;}
.y98_c00168{bottom:235.352850px;}
.y99_c00168{bottom:235.739066px;}
.y9a_c00168{bottom:235.884546px;}
.y9b_c00168{bottom:236.065634px;}
.y9c_c00168{bottom:236.481797px;}
.y82_c00168{bottom:248.940920px;}
.y83_c00168{bottom:249.142797px;}
.y84_c00168{bottom:249.650766px;}
.y85_c00168{bottom:249.811129px;}
.y86_c00168{bottom:250.321970px;}
.y87_c00168{bottom:250.770506px;}
.y88_c00168{bottom:250.981326px;}
.y89_c00168{bottom:252.275999px;}
.y8a_c00168{bottom:252.531633px;}
.y8b_c00168{bottom:252.825845px;}
.y75_c00168{bottom:266.761500px;}
.y76_c00168{bottom:266.990042px;}
.y77_c00168{bottom:267.218682px;}
.y78_c00168{bottom:267.669990px;}
.y79_c00168{bottom:268.002482px;}
.y7a_c00168{bottom:268.397920px;}
.y7b_c00168{bottom:268.795884px;}
.y7c_c00168{bottom:268.968161px;}
.y7d_c00168{bottom:269.246186px;}
.y7e_c00168{bottom:269.633573px;}
.y7f_c00168{bottom:270.643010px;}
.y80_c00168{bottom:271.082537px;}
.y81_c00168{bottom:271.409682px;}
.y74_c00168{bottom:331.276500px;}
.y73_c00168{bottom:348.850500px;}
.y69_c00168{bottom:380.153970px;}
.y6a_c00168{bottom:380.711058px;}
.y6b_c00168{bottom:381.476868px;}
.y6c_c00168{bottom:381.987909px;}
.y6d_c00168{bottom:382.364148px;}
.y6e_c00168{bottom:382.866735px;}
.y6f_c00168{bottom:383.253747px;}
.y70_c00168{bottom:383.632503px;}
.y71_c00168{bottom:383.934744px;}
.y72_c00168{bottom:384.169584px;}
.y64_c00168{bottom:402.300000px;}
.y65_c00168{bottom:404.141463px;}
.y66_c00168{bottom:405.390984px;}
.y67_c00168{bottom:405.919122px;}
.y68_c00168{bottom:406.521555px;}
.y5e_c00168{bottom:424.964387px;}
.y5f_c00168{bottom:425.552907px;}
.y60_c00168{bottom:426.399920px;}
.y61_c00168{bottom:426.693555px;}
.y62_c00168{bottom:427.779037px;}
.y63_c00168{bottom:428.390104px;}
.y58_c00168{bottom:447.377782px;}
.y59_c00168{bottom:448.878891px;}
.y5a_c00168{bottom:449.365584px;}
.y5b_c00168{bottom:450.430311px;}
.y5c_c00168{bottom:450.839153px;}
.y5d_c00168{bottom:451.258424px;}
.y51_c00168{bottom:470.062528px;}
.y52_c00168{bottom:470.567241px;}
.y53_c00168{bottom:471.308456px;}
.y54_c00168{bottom:472.992860px;}
.y55_c00168{bottom:473.416368px;}
.y56_c00168{bottom:474.743066px;}
.y57_c00168{bottom:475.151406px;}
.y4a_c00168{bottom:492.206616px;}
.y4b_c00168{bottom:493.068486px;}
.y4c_c00168{bottom:493.886004px;}
.y4d_c00168{bottom:494.955885px;}
.y4e_c00168{bottom:495.842272px;}
.y4f_c00168{bottom:496.322885px;}
.y50_c00168{bottom:497.435180px;}
.y44_c00168{bottom:514.618810px;}
.y45_c00168{bottom:515.620874px;}
.y46_c00168{bottom:516.760938px;}
.y47_c00168{bottom:517.625199px;}
.y48_c00168{bottom:518.189343px;}
.y49_c00168{bottom:519.259986px;}
.y3b_c00168{bottom:538.109496px;}
.y3c_c00168{bottom:538.536192px;}
.y3d_c00168{bottom:538.878752px;}
.y3e_c00168{bottom:539.748718px;}
.y3f_c00168{bottom:540.744276px;}
.y40_c00168{bottom:541.605471px;}
.y41_c00168{bottom:541.940538px;}
.y42_c00168{bottom:542.503152px;}
.y43_c00168{bottom:543.262722px;}
.y33_c00168{bottom:560.253000px;}
.y34_c00168{bottom:561.314234px;}
.y35_c00168{bottom:562.439319px;}
.y36_c00168{bottom:562.893194px;}
.y37_c00168{bottom:563.707001px;}
.y38_c00168{bottom:564.498546px;}
.y39_c00168{bottom:565.472901px;}
.y3a_c00168{bottom:566.633304px;}
.y2c_c00168{bottom:585.639000px;}
.y2d_c00168{bottom:586.572621px;}
.y2e_c00168{bottom:587.059224px;}
.y2f_c00168{bottom:587.602299px;}
.y30_c00168{bottom:588.004779px;}
.y31_c00168{bottom:588.462288px;}
.y32_c00168{bottom:590.006181px;}
.y22_c00168{bottom:605.870406px;}
.y23_c00168{bottom:606.510549px;}
.y24_c00168{bottom:607.469229px;}
.y25_c00168{bottom:607.956690px;}
.y26_c00168{bottom:608.270109px;}
.y27_c00168{bottom:608.495055px;}
.y28_c00168{bottom:608.950989px;}
.y29_c00168{bottom:609.389031px;}
.y2a_c00168{bottom:609.939348px;}
.y2b_c00168{bottom:610.881768px;}
.y16_c00168{bottom:627.098658px;}
.y17_c00168{bottom:627.507717px;}
.y18_c00168{bottom:628.056033px;}
.y19_c00168{bottom:628.380555px;}
.y1a_c00168{bottom:629.172288px;}
.y1b_c00168{bottom:629.570919px;}
.y1c_c00168{bottom:630.168477px;}
.y1d_c00168{bottom:631.710705px;}
.y1e_c00168{bottom:632.093478px;}
.y1f_c00168{bottom:632.836251px;}
.y20_c00168{bottom:633.317406px;}
.y21_c00168{bottom:633.976548px;}
.yc_c00168{bottom:649.053000px;}
.yd_c00168{bottom:649.433853px;}
.ye_c00168{bottom:650.650728px;}
.yf_c00168{bottom:651.481602px;}
.y10_c00168{bottom:652.553541px;}
.y11_c00168{bottom:653.551362px;}
.y12_c00168{bottom:654.050322px;}
.y13_c00168{bottom:654.555222px;}
.y14_c00168{bottom:655.078470px;}
.y15_c00168{bottom:656.688210px;}
.yb_c00168{bottom:676.378500px;}
.y7_c00168{bottom:710.406461px;}
.y8_c00168{bottom:711.406473px;}
.y9_c00168{bottom:714.152198px;}
.ya_c00168{bottom:715.396722px;}
.y5_c00168{bottom:753.590153px;}
.y6_c00168{bottom:756.173675px;}
.y1_c00168{bottom:796.794000px;}
.y2_c00168{bottom:798.352818px;}
.y3_c00168{bottom:799.966608px;}
.y4_c00168{bottom:803.590170px;}
.h13_c00168{height:44.102668px;}
.h12_c00168{height:47.252859px;}
.h14_c00168{height:50.403049px;}
.h11_c00168{height:51.450000px;}
.h15_c00168{height:51.453113px;}
.h10_c00168{height:52.500000px;}
.h16_c00168{height:53.553240px;}
.h17_c00168{height:55.652782px;}
.h19_c00168{height:58.805762px;}
.h18_c00168{height:60.903045px;}
.hf_c00168{height:63.021290px;}
.hd_c00168{height:64.059255px;}
.h6_c00168{height:64.065498px;}
.he_c00168{height:65.109406px;}
.hb_c00168{height:68.259861px;}
.ha_c00168{height:69.310013px;}
.h8_c00168{height:70.367023px;}
.h5_c00168{height:72.450000px;}
.hc_c00168{height:72.460468px;}
.h7_c00168{height:72.467531px;}
.h9_c00168{height:72.474484px;}
.h2_c00168{height:104.963086px;}
.h3_c00168{height:112.310502px;}
.h4_c00168{height:134.352750px;}
.h1_c00168{height:1005.000000px;}
.h0_c00168{height:1005.150000px;}
.w0_c00168{width:756.540000px;}
.w1_c00168{width:756.750000px;}
.x0_c00168{left:0.000000px;}
.x83_c00168{left:71.245776px;}
.x8d_c00168{left:80.298000px;}
.x6a_c00168{left:112.427172px;}
.x6f_c00168{left:113.499307px;}
.x7d_c00168{left:116.155761px;}
.x70_c00168{left:124.873807px;}
.x60_c00168{left:127.558500px;}
.x6b_c00168{left:130.779672px;}
.x7e_c00168{left:132.647305px;}
.x15_c00168{left:134.432793px;}
.x84_c00168{left:137.802245px;}
.x21_c00168{left:141.436977px;}
.x2e_c00168{left:143.586000px;}
.x41_c00168{left:144.679611px;}
.x4a_c00168{left:146.820677px;}
.x51_c00168{left:148.115019px;}
.x16_c00168{left:154.868184px;}
.x7_c00168{left:161.635820px;}
.x71_c00168{left:163.207807px;}
.x34_c00168{left:166.737768px;}
.x61_c00168{left:169.120500px;}
.x42_c00168{left:172.691627px;}
.x85_c00168{left:174.518553px;}
.x6c_c00168{left:176.958672px;}
.xc_c00168{left:179.586000px;}
.x17_c00168{left:182.247372px;}
.x4b_c00168{left:183.557789px;}
.x35_c00168{left:185.740937px;}
.x3b_c00168{left:187.298436px;}
.x52_c00168{left:191.017527px;}
.x39_c00168{left:192.204074px;}
.x5_c00168{left:193.637124px;}
.x18_c00168{left:198.499098px;}
.x92_c00168{left:200.959500px;}
.x4f_c00168{left:201.981000px;}
.x7f_c00168{left:205.543714px;}
.x8_c00168{left:206.998776px;}
.x62_c00168{left:210.148500px;}
.x72_c00168{left:212.833808px;}
.x43_c00168{left:213.909438px;}
.x59_c00168{left:216.270000px;}
.x1_c00168{left:219.910500px;}
.x3c_c00168{left:228.150345px;}
.x5a_c00168{left:230.310000px;}
.x45_c00168{left:233.527799px;}
.xd_c00168{left:234.898500px;}
.x4c_c00168{left:236.471181px;}
.x19_c00168{left:238.102347px;}
.x63_c00168{left:240.375000px;}
.x22_c00168{left:241.396677px;}
.x3a_c00168{left:246.468876px;}
.x53_c00168{left:249.972456px;}
.x4d_c00168{left:254.802987px;}
.x5d_c00168{left:255.960000px;}
.x1a_c00168{left:258.063738px;}
.x46_c00168{left:262.156799px;}
.x2_c00168{left:263.167700px;}
.x86_c00168{left:266.307083px;}
.x5b_c00168{left:271.620000px;}
.xe_c00168{left:272.665500px;}
.x5e_c00168{left:273.780000px;}
.x64_c00168{left:276.324000px;}
.x6d_c00168{left:278.753172px;}
.x29_c00168{left:280.596000px;}
.x3d_c00168{left:281.640617px;}
.x1b_c00168{left:287.954058px;}
.x36_c00168{left:289.387677px;}
.x23_c00168{left:291.443277px;}
.x73_c00168{left:296.314808px;}
.x2f_c00168{left:298.891500px;}
.x80_c00168{left:301.668382px;}
.x24_c00168{left:305.488125px;}
.x3_c00168{left:307.950372px;}
.x87_c00168{left:310.316556px;}
.x65_c00168{left:312.502500px;}
.xb_c00168{left:313.740000px;}
.x5c_c00168{left:315.360000px;}
.x6_c00168{left:316.460556px;}
.x54_c00168{left:318.275544px;}
.xf_c00168{left:321.390000px;}
.x4e_c00168{left:322.626635px;}
.x47_c00168{left:324.787799px;}
.x3e_c00168{left:325.925847px;}
.x5f_c00168{left:328.320000px;}
.x9_c00168{left:331.616898px;}
.x25_c00168{left:333.988887px;}
.x2a_c00168{left:335.220000px;}
.x37_c00168{left:337.221861px;}
.x50_c00168{left:341.178000px;}
.x30_c00168{left:346.762500px;}
.x48_c00168{left:348.837299px;}
.x3f_c00168{left:349.960623px;}
.x66_c00168{left:353.439000px;}
.x2b_c00168{left:356.107500px;}
.x74_c00168{left:358.540807px;}
.x26_c00168{left:361.403517px;}
.x1c_c00168{left:365.081457px;}
.x10_c00168{left:366.745500px;}
.x2c_c00168{left:371.587500px;}
.x49_c00168{left:373.500299px;}
.x88_c00168{left:382.972140px;}
.x1d_c00168{left:384.253815px;}
.x55_c00168{left:386.610093px;}
.xa_c00168{left:388.095349px;}
.x11_c00168{left:389.425500px;}
.x75_c00168{left:391.078807px;}
.x31_c00168{left:393.324000px;}
.x27_c00168{left:395.831571px;}
.x40_c00168{left:405.592793px;}
.x4_c00168{left:408.504217px;}
.x12_c00168{left:412.375500px;}
.x56_c00168{left:415.725921px;}
.x76_c00168{left:419.139307px;}
.x1e_c00168{left:421.426965px;}
.x44_c00168{left:427.432317px;}
.x38_c00168{left:429.323306px;}
.x8e_c00168{left:430.482000px;}
.x13_c00168{left:436.159500px;}
.x57_c00168{left:439.012299px;}
.x81_c00168{left:444.249585px;}
.x1f_c00168{left:445.480521px;}
.x2d_c00168{left:448.564500px;}
.x32_c00168{left:450.639000px;}
.x28_c00168{left:454.699326px;}
.x58_c00168{left:457.108422px;}
.x6e_c00168{left:465.602172px;}
.x77_c00168{left:471.276308px;}
.x8f_c00168{left:473.155500px;}
.x89_c00168{left:475.575186px;}
.x20_c00168{left:478.442973px;}
.x67_c00168{left:480.423000px;}
.x78_c00168{left:498.298808px;}
.x90_c00168{left:507.163500px;}
.x14_c00168{left:509.329500px;}
.x33_c00168{left:518.898000px;}
.x68_c00168{left:520.380000px;}
.x79_c00168{left:533.409307px;}
.x8a_c00168{left:540.634621px;}
.x7a_c00168{left:546.634807px;}
.x91_c00168{left:547.696500px;}
.x69_c00168{left:550.120500px;}
.x7b_c00168{left:563.097307px;}
.x8b_c00168{left:567.183699px;}
.x82_c00168{left:598.363167px;}
.x7c_c00168{left:600.930307px;}
.x8c_c00168{left:605.199041px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.000000pt;}
.fs11_c00168{font-size:39.202372pt;}
.fs10_c00168{font-size:42.002541pt;}
.fs12_c00168{font-size:44.802710pt;}
.fsf_c00168{font-size:45.733333pt;}
.fs13_c00168{font-size:45.736100pt;}
.fse_c00168{font-size:46.666667pt;}
.fs14_c00168{font-size:47.602880pt;}
.fs15_c00168{font-size:49.469140pt;}
.fs17_c00168{font-size:52.271789pt;}
.fs16_c00168{font-size:54.136040pt;}
.fsd_c00168{font-size:56.018925pt;}
.fsb_c00168{font-size:56.941560pt;}
.fs4_c00168{font-size:56.947110pt;}
.fsc_c00168{font-size:57.875028pt;}
.fs9_c00168{font-size:60.675432pt;}
.fs8_c00168{font-size:61.608901pt;}
.fs6_c00168{font-size:62.548465pt;}
.fs3_c00168{font-size:64.400000pt;}
.fsa_c00168{font-size:64.409305pt;}
.fs5_c00168{font-size:64.415583pt;}
.fs7_c00168{font-size:64.421764pt;}
.fs0_c00168{font-size:93.300521pt;}
.fs1_c00168{font-size:99.831557pt;}
.fs2_c00168{font-size:119.424667pt;}
.y0_c00168{bottom:0.000000pt;}
.yc5_c00168{bottom:98.402667pt;}
.yc6_c00168{bottom:98.505371pt;}
.yc7_c00168{bottom:99.489981pt;}
.yc2_c00168{bottom:143.327533pt;}
.yc3_c00168{bottom:144.368773pt;}
.yc4_c00168{bottom:144.467480pt;}
.yb8_c00168{bottom:158.166667pt;}
.yb9_c00168{bottom:158.757280pt;}
.yba_c00168{bottom:159.049827pt;}
.ybb_c00168{bottom:160.078707pt;}
.ybc_c00168{bottom:160.492467pt;}
.ybd_c00168{bottom:160.667773pt;}
.ybe_c00168{bottom:161.279413pt;}
.ybf_c00168{bottom:161.658733pt;}
.yc0_c00168{bottom:161.961027pt;}
.yc1_c00168{bottom:162.321320pt;}
.ya7_c00168{bottom:174.237845pt;}
.ya8_c00168{bottom:174.601147pt;}
.ya9_c00168{bottom:174.769939pt;}
.yaa_c00168{bottom:175.063601pt;}
.yab_c00168{bottom:175.421651pt;}
.yac_c00168{bottom:175.797069pt;}
.yad_c00168{bottom:176.148708pt;}
.yae_c00168{bottom:176.192175pt;}
.yaf_c00168{bottom:176.583421pt;}
.yb0_c00168{bottom:176.731103pt;}
.yb1_c00168{bottom:176.963900pt;}
.yb2_c00168{bottom:177.173489pt;}
.yb3_c00168{bottom:177.471201pt;}
.yb4_c00168{bottom:177.741803pt;}
.yb5_c00168{bottom:177.991324pt;}
.yb6_c00168{bottom:178.204243pt;}
.yb7_c00168{bottom:178.507940pt;}
.y9d_c00168{bottom:190.558887pt;}
.y9e_c00168{bottom:190.676132pt;}
.y9f_c00168{bottom:191.013797pt;}
.ya0_c00168{bottom:191.194207pt;}
.ya1_c00168{bottom:191.445409pt;}
.ya2_c00168{bottom:191.878061pt;}
.ya3_c00168{bottom:192.288252pt;}
.ya4_c00168{bottom:192.696035pt;}
.ya5_c00168{bottom:192.892143pt;}
.ya6_c00168{bottom:193.988315pt;}
.y8c_c00168{bottom:205.440049pt;}
.y8d_c00168{bottom:205.551267pt;}
.y8e_c00168{bottom:205.730772pt;}
.y8f_c00168{bottom:205.926088pt;}
.y90_c00168{bottom:206.411320pt;}
.y91_c00168{bottom:206.636145pt;}
.y92_c00168{bottom:207.227579pt;}
.y93_c00168{bottom:207.836011pt;}
.y94_c00168{bottom:208.154160pt;}
.y95_c00168{bottom:208.428529pt;}
.y96_c00168{bottom:208.682219pt;}
.y97_c00168{bottom:208.938313pt;}
.y98_c00168{bottom:209.202533pt;}
.y99_c00168{bottom:209.545836pt;}
.y9a_c00168{bottom:209.675152pt;}
.y9b_c00168{bottom:209.836119pt;}
.y9c_c00168{bottom:210.206041pt;}
.y82_c00168{bottom:221.280817pt;}
.y83_c00168{bottom:221.460264pt;}
.y84_c00168{bottom:221.911792pt;}
.y85_c00168{bottom:222.054337pt;}
.y86_c00168{bottom:222.508417pt;}
.y87_c00168{bottom:222.907116pt;}
.y88_c00168{bottom:223.094512pt;}
.y89_c00168{bottom:224.245332pt;}
.y8a_c00168{bottom:224.472563pt;}
.y8b_c00168{bottom:224.734084pt;}
.y75_c00168{bottom:237.121333pt;}
.y76_c00168{bottom:237.324481pt;}
.y77_c00168{bottom:237.527717pt;}
.y78_c00168{bottom:237.928880pt;}
.y79_c00168{bottom:238.224428pt;}
.y7a_c00168{bottom:238.575929pt;}
.y7b_c00168{bottom:238.929675pt;}
.y7c_c00168{bottom:239.082809pt;}
.y7d_c00168{bottom:239.329943pt;}
.y7e_c00168{bottom:239.674287pt;}
.y7f_c00168{bottom:240.571564pt;}
.y80_c00168{bottom:240.962255pt;}
.y81_c00168{bottom:241.253051pt;}
.y74_c00168{bottom:294.468000pt;}
.y73_c00168{bottom:310.089333pt;}
.y69_c00168{bottom:337.914640pt;}
.y6a_c00168{bottom:338.409829pt;}
.y6b_c00168{bottom:339.090549pt;}
.y6c_c00168{bottom:339.544808pt;}
.y6d_c00168{bottom:339.879243pt;}
.y6e_c00168{bottom:340.325987pt;}
.y6f_c00168{bottom:340.669997pt;}
.y70_c00168{bottom:341.006669pt;}
.y71_c00168{bottom:341.275328pt;}
.y72_c00168{bottom:341.484075pt;}
.y64_c00168{bottom:357.600000pt;}
.y65_c00168{bottom:359.236856pt;}
.y66_c00168{bottom:360.347541pt;}
.y67_c00168{bottom:360.816997pt;}
.y68_c00168{bottom:361.352493pt;}
.y5e_c00168{bottom:377.746121pt;}
.y5f_c00168{bottom:378.269251pt;}
.y60_c00168{bottom:379.022151pt;}
.y61_c00168{bottom:379.283160pt;}
.y62_c00168{bottom:380.248033pt;}
.y63_c00168{bottom:380.791204pt;}
.y58_c00168{bottom:397.669140pt;}
.y59_c00168{bottom:399.003459pt;}
.y5a_c00168{bottom:399.436075pt;}
.y5b_c00168{bottom:400.382499pt;}
.y5c_c00168{bottom:400.745913pt;}
.y5d_c00168{bottom:401.118599pt;}
.y51_c00168{bottom:417.833359pt;}
.y52_c00168{bottom:418.281992pt;}
.y53_c00168{bottom:418.940849pt;}
.y54_c00168{bottom:420.438097pt;}
.y55_c00168{bottom:420.814549pt;}
.y56_c00168{bottom:421.993836pt;}
.y57_c00168{bottom:422.356805pt;}
.y4a_c00168{bottom:437.516992pt;}
.y4b_c00168{bottom:438.283099pt;}
.y4c_c00168{bottom:439.009781pt;}
.y4d_c00168{bottom:439.960787pt;}
.y4e_c00168{bottom:440.748687pt;}
.y4f_c00168{bottom:441.175897pt;}
.y50_c00168{bottom:442.164604pt;}
.y44_c00168{bottom:457.438943pt;}
.y45_c00168{bottom:458.329665pt;}
.y46_c00168{bottom:459.343056pt;}
.y47_c00168{bottom:460.111288pt;}
.y48_c00168{bottom:460.612749pt;}
.y49_c00168{bottom:461.564432pt;}
.y3b_c00168{bottom:478.319552pt;}
.y3c_c00168{bottom:478.698837pt;}
.y3d_c00168{bottom:479.003335pt;}
.y3e_c00168{bottom:479.776639pt;}
.y3f_c00168{bottom:480.661579pt;}
.y40_c00168{bottom:481.427085pt;}
.y41_c00168{bottom:481.724923pt;}
.y42_c00168{bottom:482.225024pt;}
.y43_c00168{bottom:482.900197pt;}
.y33_c00168{bottom:498.002667pt;}
.y34_c00168{bottom:498.945985pt;}
.y35_c00168{bottom:499.946061pt;}
.y36_c00168{bottom:500.349505pt;}
.y37_c00168{bottom:501.072889pt;}
.y38_c00168{bottom:501.776485pt;}
.y39_c00168{bottom:502.642579pt;}
.y3a_c00168{bottom:503.674048pt;}
.y2c_c00168{bottom:520.568000pt;}
.y2d_c00168{bottom:521.397885pt;}
.y2e_c00168{bottom:521.830421pt;}
.y2f_c00168{bottom:522.313155pt;}
.y30_c00168{bottom:522.670915pt;}
.y31_c00168{bottom:523.077589pt;}
.y32_c00168{bottom:524.449939pt;}
.y22_c00168{bottom:538.551472pt;}
.y23_c00168{bottom:539.120488pt;}
.y24_c00168{bottom:539.972648pt;}
.y25_c00168{bottom:540.405947pt;}
.y26_c00168{bottom:540.684541pt;}
.y27_c00168{bottom:540.884493pt;}
.y28_c00168{bottom:541.289768pt;}
.y29_c00168{bottom:541.679139pt;}
.y2a_c00168{bottom:542.168309pt;}
.y2b_c00168{bottom:543.006016pt;}
.y16_c00168{bottom:557.421029pt;}
.y17_c00168{bottom:557.784637pt;}
.y18_c00168{bottom:558.272029pt;}
.y19_c00168{bottom:558.560493pt;}
.y1a_c00168{bottom:559.264256pt;}
.y1b_c00168{bottom:559.618595pt;}
.y1c_c00168{bottom:560.149757pt;}
.y1d_c00168{bottom:561.520627pt;}
.y1e_c00168{bottom:561.860869pt;}
.y1f_c00168{bottom:562.521112pt;}
.y20_c00168{bottom:562.948805pt;}
.y21_c00168{bottom:563.534709pt;}
.yc_c00168{bottom:576.936000pt;}
.yd_c00168{bottom:577.274536pt;}
.ye_c00168{bottom:578.356203pt;}
.yf_c00168{bottom:579.094757pt;}
.y10_c00168{bottom:580.047592pt;}
.y11_c00168{bottom:580.934544pt;}
.y12_c00168{bottom:581.378064pt;}
.y13_c00168{bottom:581.826864pt;}
.y14_c00168{bottom:582.291973pt;}
.y15_c00168{bottom:583.722853pt;}
.yb_c00168{bottom:601.225333pt;}
.y7_c00168{bottom:631.472409pt;}
.y8_c00168{bottom:632.361309pt;}
.y9_c00168{bottom:634.801953pt;}
.ya_c00168{bottom:635.908197pt;}
.y5_c00168{bottom:669.857913pt;}
.y6_c00168{bottom:672.154377pt;}
.y1_c00168{bottom:708.261333pt;}
.y2_c00168{bottom:709.646949pt;}
.y3_c00168{bottom:711.081429pt;}
.y4_c00168{bottom:714.302373pt;}
.h13_c00168{height:39.202372pt;}
.h12_c00168{height:42.002541pt;}
.h14_c00168{height:44.802710pt;}
.h11_c00168{height:45.733333pt;}
.h15_c00168{height:45.736100pt;}
.h10_c00168{height:46.666667pt;}
.h16_c00168{height:47.602880pt;}
.h17_c00168{height:49.469140pt;}
.h19_c00168{height:52.271789pt;}
.h18_c00168{height:54.136040pt;}
.hf_c00168{height:56.018925pt;}
.hd_c00168{height:56.941560pt;}
.h6_c00168{height:56.947110pt;}
.he_c00168{height:57.875028pt;}
.hb_c00168{height:60.675432pt;}
.ha_c00168{height:61.608901pt;}
.h8_c00168{height:62.548465pt;}
.h5_c00168{height:64.400000pt;}
.hc_c00168{height:64.409305pt;}
.h7_c00168{height:64.415583pt;}
.h9_c00168{height:64.421764pt;}
.h2_c00168{height:93.300521pt;}
.h3_c00168{height:99.831557pt;}
.h4_c00168{height:119.424667pt;}
.h1_c00168{height:893.333333pt;}
.h0_c00168{height:893.466667pt;}
.w0_c00168{width:672.480000pt;}
.w1_c00168{width:672.666667pt;}
.x0_c00168{left:0.000000pt;}
.x83_c00168{left:63.329579pt;}
.x8d_c00168{left:71.376000pt;}
.x6a_c00168{left:99.935264pt;}
.x6f_c00168{left:100.888273pt;}
.x7d_c00168{left:103.249565pt;}
.x70_c00168{left:110.998940pt;}
.x60_c00168{left:113.385333pt;}
.x6b_c00168{left:116.248597pt;}
.x7e_c00168{left:117.908716pt;}
.x15_c00168{left:119.495816pt;}
.x84_c00168{left:122.490884pt;}
.x21_c00168{left:125.721757pt;}
.x2e_c00168{left:127.632000pt;}
.x41_c00168{left:128.604099pt;}
.x4a_c00168{left:130.507268pt;}
.x51_c00168{left:131.657795pt;}
.x16_c00168{left:137.660608pt;}
.x7_c00168{left:143.676284pt;}
.x71_c00168{left:145.073607pt;}
.x34_c00168{left:148.211349pt;}
.x61_c00168{left:150.329333pt;}
.x42_c00168{left:153.503668pt;}
.x85_c00168{left:155.127603pt;}
.x6c_c00168{left:157.296597pt;}
.xc_c00168{left:159.632000pt;}
.x17_c00168{left:161.997664pt;}
.x4b_c00168{left:163.162479pt;}
.x35_c00168{left:165.103055pt;}
.x3b_c00168{left:166.487499pt;}
.x52_c00168{left:169.793357pt;}
.x39_c00168{left:170.848065pt;}
.x5_c00168{left:172.121888pt;}
.x18_c00168{left:176.443643pt;}
.x92_c00168{left:178.630667pt;}
.x4f_c00168{left:179.538667pt;}
.x7f_c00168{left:182.705524pt;}
.x8_c00168{left:183.998912pt;}
.x62_c00168{left:186.798667pt;}
.x72_c00168{left:189.185607pt;}
.x43_c00168{left:190.141723pt;}
.x59_c00168{left:192.240000pt;}
.x1_c00168{left:195.476000pt;}
.x3c_c00168{left:202.800307pt;}
.x5a_c00168{left:204.720000pt;}
.x45_c00168{left:207.580265pt;}
.xd_c00168{left:208.798667pt;}
.x4c_c00168{left:210.196605pt;}
.x19_c00168{left:211.646531pt;}
.x63_c00168{left:213.666667pt;}
.x22_c00168{left:214.574824pt;}
.x3a_c00168{left:219.083445pt;}
.x53_c00168{left:222.197739pt;}
.x4d_c00168{left:226.491544pt;}
.x5d_c00168{left:227.520000pt;}
.x1a_c00168{left:229.389989pt;}
.x46_c00168{left:233.028265pt;}
.x2_c00168{left:233.926844pt;}
.x86_c00168{left:236.717407pt;}
.x5b_c00168{left:241.440000pt;}
.xe_c00168{left:242.369333pt;}
.x5e_c00168{left:243.360000pt;}
.x64_c00168{left:245.621333pt;}
.x6d_c00168{left:247.780597pt;}
.x29_c00168{left:249.418667pt;}
.x3d_c00168{left:250.347215pt;}
.x1b_c00168{left:255.959163pt;}
.x36_c00168{left:257.233491pt;}
.x23_c00168{left:259.060691pt;}
.x73_c00168{left:263.390940pt;}
.x2f_c00168{left:265.681333pt;}
.x80_c00168{left:268.149673pt;}
.x24_c00168{left:271.545000pt;}
.x3_c00168{left:273.733664pt;}
.x87_c00168{left:275.836939pt;}
.x65_c00168{left:277.780000pt;}
.xb_c00168{left:278.880000pt;}
.x5c_c00168{left:280.320000pt;}
.x6_c00168{left:281.298272pt;}
.x54_c00168{left:282.911595pt;}
.xf_c00168{left:285.680000pt;}
.x4e_c00168{left:286.779231pt;}
.x47_c00168{left:288.700265pt;}
.x3e_c00168{left:289.711864pt;}
.x5f_c00168{left:291.840000pt;}
.x9_c00168{left:294.770576pt;}
.x25_c00168{left:296.879011pt;}
.x2a_c00168{left:297.973333pt;}
.x37_c00168{left:299.752765pt;}
.x50_c00168{left:303.269333pt;}
.x30_c00168{left:308.233333pt;}
.x48_c00168{left:310.077599pt;}
.x3f_c00168{left:311.076109pt;}
.x66_c00168{left:314.168000pt;}
.x2b_c00168{left:316.540000pt;}
.x74_c00168{left:318.702940pt;}
.x26_c00168{left:321.247571pt;}
.x1c_c00168{left:324.516851pt;}
.x10_c00168{left:325.996000pt;}
.x2c_c00168{left:330.300000pt;}
.x49_c00168{left:332.000265pt;}
.x88_c00168{left:340.419680pt;}
.x1d_c00168{left:341.558947pt;}
.x55_c00168{left:343.653416pt;}
.xa_c00168{left:344.973644pt;}
.x11_c00168{left:346.156000pt;}
.x75_c00168{left:347.625607pt;}
.x31_c00168{left:349.621333pt;}
.x27_c00168{left:351.850285pt;}
.x40_c00168{left:360.526927pt;}
.x4_c00168{left:363.114860pt;}
.x12_c00168{left:366.556000pt;}
.x56_c00168{left:369.534152pt;}
.x76_c00168{left:372.568273pt;}
.x1e_c00168{left:374.601747pt;}
.x44_c00168{left:379.939837pt;}
.x38_c00168{left:381.620716pt;}
.x8e_c00168{left:382.650667pt;}
.x13_c00168{left:387.697333pt;}
.x57_c00168{left:390.233155pt;}
.x81_c00168{left:394.888520pt;}
.x1f_c00168{left:395.982685pt;}
.x2d_c00168{left:398.724000pt;}
.x32_c00168{left:400.568000pt;}
.x28_c00168{left:404.177179pt;}
.x58_c00168{left:406.318597pt;}
.x6e_c00168{left:413.868597pt;}
.x77_c00168{left:418.912273pt;}
.x8f_c00168{left:420.582667pt;}
.x89_c00168{left:422.733499pt;}
.x20_c00168{left:425.282643pt;}
.x67_c00168{left:427.042667pt;}
.x78_c00168{left:442.932273pt;}
.x90_c00168{left:450.812000pt;}
.x14_c00168{left:452.737333pt;}
.x33_c00168{left:461.242667pt;}
.x68_c00168{left:462.560000pt;}
.x79_c00168{left:474.141607pt;}
.x8a_c00168{left:480.564108pt;}
.x7a_c00168{left:485.897607pt;}
.x91_c00168{left:486.841333pt;}
.x69_c00168{left:488.996000pt;}
.x7b_c00168{left:500.530940pt;}
.x8b_c00168{left:504.163288pt;}
.x82_c00168{left:531.878371pt;}
.x7c_c00168{left:534.160273pt;}
.x8c_c00168{left:537.954703pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m51_c00169{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);}
.mcc_c00169{transform:matrix(0.022999,0.000207,-0.002250,0.249990,0,0);-ms-transform:matrix(0.022999,0.000207,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.022999,0.000207,-0.002250,0.249990,0,0);}
.m6_c00169{transform:matrix(0.041515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041515,0.000000,0.000000,0.250000,0,0);}
.me0_c00169{transform:matrix(0.111121,0.000889,-0.002000,0.249992,0,0);-ms-transform:matrix(0.111121,0.000889,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.111121,0.000889,-0.002000,0.249992,0,0);}
.m72_c00169{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);}
.m5a_c00169{transform:matrix(0.133265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133265,0.000000,0.000000,0.250000,0,0);}
.m3d_c00169{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);}
.m6d_c00169{transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);}
.m70_c00169{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);}
.ma8_c00169{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{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);}
.m71_c00169{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.150190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150190,0.000000,0.000000,0.250000,0,0);}
.m8f_c00169{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);}
.m92_c00169{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m75_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);}
.m54_c00169{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);}
.me1_c00169{transform:matrix(0.154030,0.001232,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154030,0.001232,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154030,0.001232,-0.002000,0.249992,0,0);}
.m13_c00169{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);}
.m96_c00169{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);}
.m1b_c00169{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{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);}
.m84_c00169{transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);}
.md0_c00169{transform:matrix(0.159444,0.001435,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159444,0.001435,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159444,0.001435,-0.002250,0.249990,0,0);}
.m27_c00169{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);}
.mb5_c00169{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{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);}
.m7d_c00169{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);}
.mb4_c00169{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);}
.m5e_c00169{transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{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);}
.m38_c00169{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);}
.m4a_c00169{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);}
.m99_c00169{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);}
.m18_c00169{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);}
.m49_c00169{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.m73_c00169{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);}
.m81_c00169{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);}
.m7c_c00169{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);}
.m1a_c00169{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);}
.mc8_c00169{transform:matrix(0.171058,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171058,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171058,0.001540,-0.002250,0.249990,0,0);}
.m4b_c00169{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);}
.m44_c00169{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);}
.m6c_c00169{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);}
.m95_c00169{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_c00169{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);}
.m86_c00169{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);}
.m78_c00169{transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);}
.mde_c00169{transform:matrix(0.177484,0.001420,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177484,0.001420,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177484,0.001420,-0.002000,0.249992,0,0);}
.m39_c00169{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);}
.maa_c00169{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);}
.m15_c00169{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);}
.m26_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);}
.m8c_c00169{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);}
.m61_c00169{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);}
.mab_c00169{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);}
.md8_c00169{transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181819,0.001455,-0.002000,0.249992,0,0);}
.mc4_c00169{transform:matrix(0.181858,0.001637,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181858,0.001637,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181858,0.001637,-0.002250,0.249990,0,0);}
.m5d_c00169{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);}
.m5f_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);}
.m85_c00169{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);}
.m24_c00169{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);}
.m35_c00169{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);}
.m3c_c00169{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);}
.m98_c00169{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);}
.m8e_c00169{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);}
.m62_c00169{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);}
.mbd_c00169{transform:matrix(0.184678,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184678,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184678,0.001662,-0.002250,0.249990,0,0);}
.m65_c00169{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);}
.m42_c00169{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);}
.mc7_c00169{transform:matrix(0.185252,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185252,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185252,0.001667,-0.002250,0.249990,0,0);}
.m34_c00169{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{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);}
.m83_c00169{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);}
.m16_c00169{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);}
.m5c_c00169{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);}
.m82_c00169{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);}
.mdd_c00169{transform:matrix(0.186719,0.001494,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186719,0.001494,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186719,0.001494,-0.002000,0.249992,0,0);}
.m9f_c00169{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);}
.m94_c00169{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);}
.mc5_c00169{transform:matrix(0.188112,0.001693,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188112,0.001693,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188112,0.001693,-0.002250,0.249990,0,0);}
.m8b_c00169{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);}
.m7a_c00169{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);}
.md9_c00169{transform:matrix(0.188609,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188609,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188609,0.001509,-0.002000,0.249992,0,0);}
.m45_c00169{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);}
.m4f_c00169{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);}
.m74_c00169{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);}
.m6a_c00169{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);}
.m36_c00169{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);}
.mdf_c00169{transform:matrix(0.191044,0.001528,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191044,0.001528,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191044,0.001528,-0.002000,0.249992,0,0);}
.m5b_c00169{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);}
.m8a_c00169{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);}
.m69_c00169{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);}
.m30_c00169{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);}
.m1d_c00169{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);}
.m6f_c00169{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);}
.md3_c00169{transform:matrix(0.193327,0.001740,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193327,0.001740,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193327,0.001740,-0.002250,0.249990,0,0);}
.m57_c00169{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);}
.m4d_c00169{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);}
.ma7_c00169{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);}
.m4e_c00169{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);}
.me2_c00169{transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195169,0.001561,-0.002000,0.249992,0,0);}
.m8d_c00169{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);}
.mbc_c00169{transform:matrix(0.195292,0.001758,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195292,0.001758,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195292,0.001758,-0.002250,0.249990,0,0);}
.m64_c00169{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);}
.m43_c00169{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);}
.m60_c00169{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);}
.m68_c00169{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);}
.m21_c00169{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);}
.mb3_c00169{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);}
.m1e_c00169{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);}
.m59_c00169{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);}
.ma5_c00169{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);}
.m3f_c00169{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);}
.m79_c00169{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);}
.m97_c00169{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);}
.m9b_c00169{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);}
.ma9_c00169{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);}
.m3b_c00169{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);}
.m28_c00169{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);}
.m6e_c00169{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);}
.m23_c00169{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);}
.m9a_c00169{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);}
.mcd_c00169{transform:matrix(0.203992,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203992,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203992,0.001836,-0.002250,0.249990,0,0);}
.ma2_c00169{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);}
.mc_c00169{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);}
.m40_c00169{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);}
.m7b_c00169{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);}
.ma0_c00169{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);}
.md4_c00169{transform:matrix(0.207217,0.001865,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207217,0.001865,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207217,0.001865,-0.002250,0.249990,0,0);}
.m29_c00169{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);}
.mae_c00169{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{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);}
.mcb_c00169{transform:matrix(0.208542,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208542,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208542,0.001877,-0.002250,0.249990,0,0);}
.mc9_c00169{transform:matrix(0.208737,0.001879,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208737,0.001879,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208737,0.001879,-0.002250,0.249990,0,0);}
.m20_c00169{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);}
.m1f_c00169{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);}
.m33_c00169{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);}
.m77_c00169{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);}
.m80_c00169{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);}
.maf_c00169{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);}
.m41_c00169{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.m9d_c00169{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);}
.m2d_c00169{transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);}
.m87_c00169{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);}
.mca_c00169{transform:matrix(0.216506,0.001949,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216506,0.001949,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216506,0.001949,-0.002250,0.249990,0,0);}
.mb0_c00169{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);}
.ma1_c00169{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);}
.mda_c00169{transform:matrix(0.217358,0.001739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217358,0.001739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217358,0.001739,-0.002000,0.249992,0,0);}
.m2e_c00169{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);}
.m63_c00169{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);}
.mc6_c00169{transform:matrix(0.218026,0.001962,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218026,0.001962,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218026,0.001962,-0.002250,0.249990,0,0);}
.m53_c00169{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);}
.m9c_c00169{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);}
.m46_c00169{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);}
.m58_c00169{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);}
.mb_c00169{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);}
.mb9_c00169{transform:matrix(0.221721,0.001995,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221721,0.001995,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221721,0.001995,-0.002250,0.249990,0,0);}
.mba_c00169{transform:matrix(0.222181,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222181,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222181,0.002000,-0.002250,0.249990,0,0);}
.mac_c00169{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);}
.md6_c00169{transform:matrix(0.222588,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222588,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222588,0.001781,-0.002000,0.249992,0,0);}
.mbb_c00169{transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);}
.m2f_c00169{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);}
.m66_c00169{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);}
.m93_c00169{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.mdc_c00169{transform:matrix(0.227563,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227563,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227563,0.001821,-0.002000,0.249992,0,0);}
.m6b_c00169{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);}
.ma6_c00169{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);}
.mb1_c00169{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);}
.m89_c00169{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);}
.m14_c00169{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);}
.m2c_c00169{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);}
.md1_c00169{transform:matrix(0.233016,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233016,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233016,0.002097,-0.002250,0.249990,0,0);}
.m47_c00169{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);}
.m19_c00169{transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234610,0.000000,0.000000,0.250000,0,0);}
.me4_c00169{transform:matrix(0.236977,0.001896,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236977,0.001896,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236977,0.001896,-0.002000,0.249992,0,0);}
.m8_c00169{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);}
.mce_c00169{transform:matrix(0.238565,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238565,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238565,0.002147,-0.002250,0.249990,0,0);}
.m1c_c00169{transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);}
.mb2_c00169{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);}
.ma4_c00169{transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{transform:matrix(0.243525,0.002192,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243525,0.002192,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243525,0.002192,-0.002250,0.249990,0,0);}
.m52_c00169{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);}
.m56_c00169{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);}
.m90_c00169{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);}
.mcf_c00169{transform:matrix(0.252425,0.002272,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252425,0.002272,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252425,0.002272,-0.002250,0.249990,0,0);}
.ma3_c00169{transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{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);}
.m31_c00169{transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271265,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m2a_c00169{transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282005,0.000000,0.000000,0.250000,0,0);}
.md5_c00169{transform:matrix(0.289653,0.002607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289653,0.002607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289653,0.002607,-0.002250,0.249990,0,0);}
.m9e_c00169{transform:matrix(0.296115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296115,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);}
.m7e_c00169{transform:matrix(0.312235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312235,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.312295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312295,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.318565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318565,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.319920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319920,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);}
.mdb_c00169{transform:matrix(0.343484,0.002748,-0.002000,0.249992,0,0);-ms-transform:matrix(0.343484,0.002748,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.343484,0.002748,-0.002000,0.249992,0,0);}
.m91_c00169{transform:matrix(0.345040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345040,0.000000,0.000000,0.250000,0,0);}
.mad_c00169{transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);}
.m67_c00169{transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359255,0.000000,0.000000,0.250000,0,0);}
.md2_c00169{transform:matrix(0.359435,0.003235,-0.002250,0.249990,0,0);-ms-transform:matrix(0.359435,0.003235,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.359435,0.003235,-0.002250,0.249990,0,0);}
.md7_c00169{transform:matrix(0.360188,0.002882,-0.002000,0.249992,0,0);-ms-transform:matrix(0.360188,0.002882,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.360188,0.002882,-0.002000,0.249992,0,0);}
.m88_c00169{transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00169{transform:matrix(0.366085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366085,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.396044,0.003564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.396044,0.003564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.396044,0.003564,-0.002250,0.249990,0,0);}
.mb7_c00169{transform:matrix(0.407080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407080,0.000000,0.000000,0.250000,0,0);}
.mc1_c00169{transform:matrix(0.407808,0.003670,-0.002250,0.249990,0,0);-ms-transform:matrix(0.407808,0.003670,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.407808,0.003670,-0.002250,0.249990,0,0);}
.m4_c00169{transform:matrix(0.416525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416525,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.416740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416740,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.425035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425035,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.427303,0.003846,-0.002250,0.249990,0,0);-ms-transform:matrix(0.427303,0.003846,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.427303,0.003846,-0.002250,0.249990,0,0);}
.m11_c00169{transform:matrix(0.434045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434045,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.478775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478775,0.000000,0.000000,0.250000,0,0);}
.mc0_c00169{transform:matrix(0.482790,0.004345,-0.002250,0.249990,0,0);-ms-transform:matrix(0.482790,0.004345,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.482790,0.004345,-0.002250,0.249990,0,0);}
.mc3_c00169{transform:matrix(0.511354,0.004602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.511354,0.004602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.511354,0.004602,-0.002250,0.249990,0,0);}
.mc2_c00169{transform:matrix(0.569772,0.005128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.569772,0.005128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.569772,0.005128,-0.002250,0.249990,0,0);}
.m0_c00169{transform:matrix(0.581215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581215,0.000000,0.000000,0.250000,0,0);}
.mb6_c00169{transform:matrix(0.628730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628730,0.000000,0.000000,0.250000,0,0);}
.me3_c00169{transform:matrix(0.721517,0.005772,-0.002000,0.249992,0,0);-ms-transform:matrix(0.721517,0.005772,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.721517,0.005772,-0.002000,0.249992,0,0);}
.m5_c00169{transform:matrix(1.058065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058065,0.000000,0.000000,0.250000,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;}
.fs10_c00169{font-size:46.200000px;}
.fsf_c00169{font-size:50.400000px;}
.fs12_c00169{font-size:51.452084px;}
.fse_c00169{font-size:52.500000px;}
.fs13_c00169{font-size:52.502126px;}
.fs14_c00169{font-size:54.601747px;}
.fs15_c00169{font-size:56.701814px;}
.fs11_c00169{font-size:57.750000px;}
.fs0_c00169{font-size:64.050000px;}
.fsa_c00169{font-size:66.150000px;}
.fs6_c00169{font-size:67.200000px;}
.fs5_c00169{font-size:68.250000px;}
.fs9_c00169{font-size:70.350000px;}
.fsb_c00169{font-size:71.400000px;}
.fs3_c00169{font-size:72.450000px;}
.fs8_c00169{font-size:73.500000px;}
.fs4_c00169{font-size:76.650000px;}
.fsd_c00169{font-size:77.700000px;}
.fs7_c00169{font-size:79.800000px;}
.fsc_c00169{font-size:87.150000px;}
.fs2_c00169{font-size:111.300000px;}
.fs1_c00169{font-size:141.750000px;}
.y0_c00169{bottom:0.000000px;}
.y4b_c00169{bottom:151.059876px;}
.y4a_c00169{bottom:169.141572px;}
.y49_c00169{bottom:169.248720px;}
.y48_c00169{bottom:169.529532px;}
.y47_c00169{bottom:169.598184px;}
.y46_c00169{bottom:169.959336px;}
.y45_c00169{bottom:170.283324px;}
.y44_c00169{bottom:170.402160px;}
.y43_c00169{bottom:170.557740px;}
.y42_c00169{bottom:170.860248px;}
.y41_c00169{bottom:171.346164px;}
.y40_c00169{bottom:171.752496px;}
.y3f_c00169{bottom:171.810336px;}
.y3e_c00169{bottom:172.352760px;}
.y3d_c00169{bottom:172.530000px;}
.y3c_c00169{bottom:186.734135px;}
.y3b_c00169{bottom:187.326834px;}
.y3a_c00169{bottom:189.309324px;}
.y39_c00169{bottom:189.497765px;}
.y38_c00169{bottom:189.969758px;}
.y37_c00169{bottom:190.259240px;}
.y36_c00169{bottom:190.746360px;}
.y35_c00169{bottom:190.911908px;}
.y34_c00169{bottom:191.521463px;}
.y33_c00169{bottom:191.700381px;}
.y32_c00169{bottom:192.274414px;}
.y31_c00169{bottom:193.590704px;}
.y30_c00169{bottom:204.337799px;}
.y2f_c00169{bottom:204.554109px;}
.y2e_c00169{bottom:204.719363px;}
.y2d_c00169{bottom:204.908889px;}
.y2c_c00169{bottom:205.212558px;}
.y2b_c00169{bottom:205.312012px;}
.y2a_c00169{bottom:205.653225px;}
.y29_c00169{bottom:205.828198px;}
.y28_c00169{bottom:206.330425px;}
.y27_c00169{bottom:206.666643px;}
.y26_c00169{bottom:206.880280px;}
.y25_c00169{bottom:207.329466px;}
.y24_c00169{bottom:207.594525px;}
.y23_c00169{bottom:207.866415px;}
.y22_c00169{bottom:207.973618px;}
.y21_c00169{bottom:208.259927px;}
.y20_c00169{bottom:208.400920px;}
.y1f_c00169{bottom:208.929000px;}
.y1e_c00169{bottom:256.230000px;}
.y1d_c00169{bottom:273.796500px;}
.y1c_c00169{bottom:292.341000px;}
.y1b_c00169{bottom:309.928500px;}
.y1a_c00169{bottom:350.191500px;}
.y19_c00169{bottom:372.139500px;}
.y18_c00169{bottom:395.554500px;}
.y17_c00169{bottom:418.960500px;}
.y16_c00169{bottom:441.568500px;}
.y15_c00169{bottom:464.943000px;}
.y14_c00169{bottom:487.122000px;}
.y13_c00169{bottom:509.560500px;}
.y12_c00169{bottom:533.305500px;}
.y11_c00169{bottom:555.973500px;}
.y10_c00169{bottom:579.889500px;}
.yf_c00169{bottom:602.614500px;}
.ye_c00169{bottom:623.941500px;}
.yd_c00169{bottom:648.225000px;}
.yc_c00169{bottom:670.341000px;}
.yb_c00169{bottom:693.580500px;}
.ya_c00169{bottom:715.803000px;}
.y9_c00169{bottom:739.534500px;}
.y8_c00169{bottom:762.982500px;}
.y7_c00169{bottom:785.446500px;}
.y6_c00169{bottom:808.294500px;}
.y5_c00169{bottom:831.876000px;}
.y4_c00169{bottom:875.071500px;}
.y2_c00169{bottom:920.433000px;}
.y3_c00169{bottom:925.416000px;}
.y1_c00169{bottom:938.799000px;}
.h12_c00169{height:46.200000px;}
.h11_c00169{height:50.400000px;}
.h14_c00169{height:51.452084px;}
.h10_c00169{height:52.500000px;}
.h15_c00169{height:52.502126px;}
.h16_c00169{height:54.601747px;}
.h17_c00169{height:56.701814px;}
.h13_c00169{height:57.750000px;}
.h2_c00169{height:64.050000px;}
.hc_c00169{height:66.150000px;}
.h8_c00169{height:67.200000px;}
.h7_c00169{height:68.250000px;}
.hb_c00169{height:70.350000px;}
.hd_c00169{height:71.400000px;}
.h5_c00169{height:72.450000px;}
.ha_c00169{height:73.500000px;}
.h6_c00169{height:76.650000px;}
.hf_c00169{height:77.700000px;}
.h9_c00169{height:79.800000px;}
.he_c00169{height:87.150000px;}
.h4_c00169{height:111.300000px;}
.h3_c00169{height:141.750000px;}
.h0_c00169{height:1008.450000px;}
.h1_c00169{height:1008.750000px;}
.w1_c00169{width:737.250000px;}
.w0_c00169{width:737.370000px;}
.x0_c00169{left:0.000000px;}
.x81_c00169{left:43.901280px;}
.x82_c00169{left:121.316705px;}
.x75_c00169{left:126.457500px;}
.x8_c00169{left:134.655000px;}
.x83_c00169{left:155.095775px;}
.x84_c00169{left:165.641519px;}
.xa_c00169{left:175.230000px;}
.x76_c00169{left:185.133000px;}
.x89_c00169{left:198.087000px;}
.x77_c00169{left:200.799000px;}
.x3c_c00169{left:205.470000px;}
.x57_c00169{left:207.090000px;}
.x14_c00169{left:208.170000px;}
.x85_c00169{left:211.260738px;}
.x8a_c00169{left:220.242000px;}
.x58_c00169{left:223.020000px;}
.x22_c00169{left:227.070000px;}
.x36_c00169{left:231.660000px;}
.x3d_c00169{left:234.090000px;}
.x15_c00169{left:238.140000px;}
.x1_c00169{left:240.840000px;}
.x23_c00169{left:244.620000px;}
.x51_c00169{left:246.240000px;}
.x62_c00169{left:252.720000px;}
.x4c_c00169{left:254.070000px;}
.x1b_c00169{left:257.040000px;}
.x47_c00169{left:262.710000px;}
.x59_c00169{left:264.330000px;}
.x16_c00169{left:269.190000px;}
.x78_c00169{left:274.732500px;}
.x48_c00169{left:276.210000px;}
.x2f_c00169{left:278.370000px;}
.x3e_c00169{left:279.720000px;}
.x24_c00169{left:281.070000px;}
.x86_c00169{left:284.654946px;}
.x6f_c00169{left:286.740000px;}
.x6b_c00169{left:288.900000px;}
.x29_c00169{left:292.680000px;}
.x87_c00169{left:295.758650px;}
.x63_c00169{left:297.000000px;}
.x4d_c00169{left:298.890000px;}
.x3f_c00169{left:300.240000px;}
.x5a_c00169{left:301.860000px;}
.x25_c00169{left:303.210000px;}
.x44_c00169{left:304.290000px;}
.x30_c00169{left:305.640000px;}
.x1c_c00169{left:308.610000px;}
.x6c_c00169{left:309.690000px;}
.xb_c00169{left:318.060000px;}
.x17_c00169{left:321.840000px;}
.x60_c00169{left:324.810000px;}
.x67_c00169{left:326.160000px;}
.x72_c00169{left:328.860000px;}
.x5f_c00169{left:331.290000px;}
.x2a_c00169{left:333.180000px;}
.x27_c00169{left:334.260000px;}
.x31_c00169{left:337.230000px;}
.x1d_c00169{left:338.310000px;}
.x37_c00169{left:339.390000px;}
.x4e_c00169{left:342.360000px;}
.x52_c00169{left:345.060000px;}
.xc_c00169{left:346.140000px;}
.x41_c00169{left:348.570000px;}
.x70_c00169{left:350.460000px;}
.x79_c00169{left:354.093000px;}
.x64_c00169{left:362.610000px;}
.x2_c00169{left:364.770000px;}
.x71_c00169{left:368.820000px;}
.x5b_c00169{left:372.330000px;}
.x26_c00169{left:373.410000px;}
.x49_c00169{left:375.030000px;}
.x10_c00169{left:377.190000px;}
.x1e_c00169{left:378.810000px;}
.x38_c00169{left:379.890000px;}
.x42_c00169{left:381.240000px;}
.x65_c00169{left:382.320000px;}
.x28_c00169{left:383.940000px;}
.x40_c00169{left:385.020000px;}
.x74_c00169{left:391.500000px;}
.xd_c00169{left:400.410000px;}
.x73_c00169{left:402.840000px;}
.x4a_c00169{left:403.920000px;}
.x11_c00169{left:405.270000px;}
.x45_c00169{left:407.700000px;}
.x2b_c00169{left:408.780000px;}
.x88_c00169{left:412.360253px;}
.x68_c00169{left:414.180000px;}
.x7a_c00169{left:415.188000px;}
.x39_c00169{left:418.500000px;}
.x1f_c00169{left:419.850000px;}
.x12_c00169{left:422.280000px;}
.x3_c00169{left:423.360000px;}
.x18_c00169{left:427.410000px;}
.x4f_c00169{left:429.030000px;}
.xe_c00169{left:430.380000px;}
.x6d_c00169{left:432.270000px;}
.x53_c00169{left:434.160000px;}
.x32_c00169{left:436.050000px;}
.x2c_c00169{left:437.940000px;}
.x69_c00169{left:439.290000px;}
.x61_c00169{left:441.990000px;}
.x4b_c00169{left:443.070000px;}
.x8b_c00169{left:444.619500px;}
.x5c_c00169{left:447.390000px;}
.x19_c00169{left:448.740000px;}
.x66_c00169{left:450.090000px;}
.x3a_c00169{left:451.170000px;}
.x33_c00169{left:453.870000px;}
.xf_c00169{left:459.000000px;}
.x13_c00169{left:461.970000px;}
.x8c_c00169{left:464.067000px;}
.x54_c00169{left:468.990000px;}
.x6e_c00169{left:471.960000px;}
.x20_c00169{left:477.630000px;}
.x5d_c00169{left:479.520000px;}
.x1a_c00169{left:483.030000px;}
.x4_c00169{left:485.730000px;}
.x7b_c00169{left:490.432500px;}
.x50_c00169{left:491.670000px;}
.x21_c00169{left:496.260000px;}
.x55_c00169{left:499.770000px;}
.x34_c00169{left:503.280000px;}
.x2d_c00169{left:508.410000px;}
.x3b_c00169{left:510.570000px;}
.x5e_c00169{left:515.700000px;}
.x6a_c00169{left:517.050000px;}
.x8d_c00169{left:519.420000px;}
.x5_c00169{left:528.390000px;}
.x56_c00169{left:529.470000px;}
.x46_c00169{left:537.840000px;}
.x7c_c00169{left:539.395500px;}
.x2e_c00169{left:545.130000px;}
.x35_c00169{left:546.750000px;}
.x8e_c00169{left:564.564000px;}
.x7d_c00169{left:573.136500px;}
.x7e_c00169{left:594.195000px;}
.x6_c00169{left:604.800000px;}
.x8f_c00169{left:608.247000px;}
.x7f_c00169{left:612.556500px;}
.x90_c00169{left:621.640500px;}
.x43_c00169{left:632.340000px;}
.x80_c00169{left:636.591000px;}
.x9_c00169{left:688.348500px;}
.x7_c00169{left:723.060000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fs10_c00169{font-size:41.066667pt;}
.fsf_c00169{font-size:44.800000pt;}
.fs12_c00169{font-size:45.735185pt;}
.fse_c00169{font-size:46.666667pt;}
.fs13_c00169{font-size:46.668557pt;}
.fs14_c00169{font-size:48.534886pt;}
.fs15_c00169{font-size:50.401613pt;}
.fs11_c00169{font-size:51.333333pt;}
.fs0_c00169{font-size:56.933333pt;}
.fsa_c00169{font-size:58.800000pt;}
.fs6_c00169{font-size:59.733333pt;}
.fs5_c00169{font-size:60.666667pt;}
.fs9_c00169{font-size:62.533333pt;}
.fsb_c00169{font-size:63.466667pt;}
.fs3_c00169{font-size:64.400000pt;}
.fs8_c00169{font-size:65.333333pt;}
.fs4_c00169{font-size:68.133333pt;}
.fsd_c00169{font-size:69.066667pt;}
.fs7_c00169{font-size:70.933333pt;}
.fsc_c00169{font-size:77.466667pt;}
.fs2_c00169{font-size:98.933333pt;}
.fs1_c00169{font-size:126.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y4b_c00169{bottom:134.275445pt;}
.y4a_c00169{bottom:150.348064pt;}
.y49_c00169{bottom:150.443307pt;}
.y48_c00169{bottom:150.692917pt;}
.y47_c00169{bottom:150.753941pt;}
.y46_c00169{bottom:151.074965pt;}
.y45_c00169{bottom:151.362955pt;}
.y44_c00169{bottom:151.468587pt;}
.y43_c00169{bottom:151.606880pt;}
.y42_c00169{bottom:151.875776pt;}
.y41_c00169{bottom:152.307701pt;}
.y40_c00169{bottom:152.668885pt;}
.y3f_c00169{bottom:152.720299pt;}
.y3e_c00169{bottom:153.202453pt;}
.y3d_c00169{bottom:153.360000pt;}
.y3c_c00169{bottom:165.985897pt;}
.y3b_c00169{bottom:166.512741pt;}
.y3a_c00169{bottom:168.274955pt;}
.y39_c00169{bottom:168.442457pt;}
.y38_c00169{bottom:168.862007pt;}
.y37_c00169{bottom:169.119324pt;}
.y36_c00169{bottom:169.552320pt;}
.y35_c00169{bottom:169.699473pt;}
.y34_c00169{bottom:170.241300pt;}
.y33_c00169{bottom:170.400339pt;}
.y32_c00169{bottom:170.910591pt;}
.y31_c00169{bottom:172.080625pt;}
.y30_c00169{bottom:181.633599pt;}
.y2f_c00169{bottom:181.825875pt;}
.y2e_c00169{bottom:181.972767pt;}
.y2d_c00169{bottom:182.141235pt;}
.y2c_c00169{bottom:182.411163pt;}
.y2b_c00169{bottom:182.499567pt;}
.y2a_c00169{bottom:182.802867pt;}
.y29_c00169{bottom:182.958399pt;}
.y28_c00169{bottom:183.404823pt;}
.y27_c00169{bottom:183.703683pt;}
.y26_c00169{bottom:183.893583pt;}
.y25_c00169{bottom:184.292859pt;}
.y24_c00169{bottom:184.528467pt;}
.y23_c00169{bottom:184.770147pt;}
.y22_c00169{bottom:184.865439pt;}
.y21_c00169{bottom:185.119935pt;}
.y20_c00169{bottom:185.245263pt;}
.y1f_c00169{bottom:185.714667pt;}
.y1e_c00169{bottom:227.760000pt;}
.y1d_c00169{bottom:243.374667pt;}
.y1c_c00169{bottom:259.858667pt;}
.y1b_c00169{bottom:275.492000pt;}
.y1a_c00169{bottom:311.281333pt;}
.y19_c00169{bottom:330.790667pt;}
.y18_c00169{bottom:351.604000pt;}
.y17_c00169{bottom:372.409333pt;}
.y16_c00169{bottom:392.505333pt;}
.y15_c00169{bottom:413.282667pt;}
.y14_c00169{bottom:432.997333pt;}
.y13_c00169{bottom:452.942667pt;}
.y12_c00169{bottom:474.049333pt;}
.y11_c00169{bottom:494.198667pt;}
.y10_c00169{bottom:515.457333pt;}
.yf_c00169{bottom:535.657333pt;}
.ye_c00169{bottom:554.614667pt;}
.yd_c00169{bottom:576.200000pt;}
.yc_c00169{bottom:595.858667pt;}
.yb_c00169{bottom:616.516000pt;}
.ya_c00169{bottom:636.269333pt;}
.y9_c00169{bottom:657.364000pt;}
.y8_c00169{bottom:678.206667pt;}
.y7_c00169{bottom:698.174667pt;}
.y6_c00169{bottom:718.484000pt;}
.y5_c00169{bottom:739.445333pt;}
.y4_c00169{bottom:777.841333pt;}
.y2_c00169{bottom:818.162667pt;}
.y3_c00169{bottom:822.592000pt;}
.y1_c00169{bottom:834.488000pt;}
.h12_c00169{height:41.066667pt;}
.h11_c00169{height:44.800000pt;}
.h14_c00169{height:45.735185pt;}
.h10_c00169{height:46.666667pt;}
.h15_c00169{height:46.668557pt;}
.h16_c00169{height:48.534886pt;}
.h17_c00169{height:50.401613pt;}
.h13_c00169{height:51.333333pt;}
.h2_c00169{height:56.933333pt;}
.hc_c00169{height:58.800000pt;}
.h8_c00169{height:59.733333pt;}
.h7_c00169{height:60.666667pt;}
.hb_c00169{height:62.533333pt;}
.hd_c00169{height:63.466667pt;}
.h5_c00169{height:64.400000pt;}
.ha_c00169{height:65.333333pt;}
.h6_c00169{height:68.133333pt;}
.hf_c00169{height:69.066667pt;}
.h9_c00169{height:70.933333pt;}
.he_c00169{height:77.466667pt;}
.h4_c00169{height:98.933333pt;}
.h3_c00169{height:126.000000pt;}
.h0_c00169{height:896.400000pt;}
.h1_c00169{height:896.666667pt;}
.w1_c00169{width:655.333333pt;}
.w0_c00169{width:655.440000pt;}
.x0_c00169{left:0.000000pt;}
.x81_c00169{left:39.023360pt;}
.x82_c00169{left:107.837071pt;}
.x75_c00169{left:112.406667pt;}
.x8_c00169{left:119.693333pt;}
.x83_c00169{left:137.862911pt;}
.x84_c00169{left:147.236905pt;}
.xa_c00169{left:155.760000pt;}
.x76_c00169{left:164.562667pt;}
.x89_c00169{left:176.077333pt;}
.x77_c00169{left:178.488000pt;}
.x3c_c00169{left:182.640000pt;}
.x57_c00169{left:184.080000pt;}
.x14_c00169{left:185.040000pt;}
.x85_c00169{left:187.787323pt;}
.x8a_c00169{left:195.770667pt;}
.x58_c00169{left:198.240000pt;}
.x22_c00169{left:201.840000pt;}
.x36_c00169{left:205.920000pt;}
.x3d_c00169{left:208.080000pt;}
.x15_c00169{left:211.680000pt;}
.x1_c00169{left:214.080000pt;}
.x23_c00169{left:217.440000pt;}
.x51_c00169{left:218.880000pt;}
.x62_c00169{left:224.640000pt;}
.x4c_c00169{left:225.840000pt;}
.x1b_c00169{left:228.480000pt;}
.x47_c00169{left:233.520000pt;}
.x59_c00169{left:234.960000pt;}
.x16_c00169{left:239.280000pt;}
.x78_c00169{left:244.206667pt;}
.x48_c00169{left:245.520000pt;}
.x2f_c00169{left:247.440000pt;}
.x3e_c00169{left:248.640000pt;}
.x24_c00169{left:249.840000pt;}
.x86_c00169{left:253.026619pt;}
.x6f_c00169{left:254.880000pt;}
.x6b_c00169{left:256.800000pt;}
.x29_c00169{left:260.160000pt;}
.x87_c00169{left:262.896577pt;}
.x63_c00169{left:264.000000pt;}
.x4d_c00169{left:265.680000pt;}
.x3f_c00169{left:266.880000pt;}
.x5a_c00169{left:268.320000pt;}
.x25_c00169{left:269.520000pt;}
.x44_c00169{left:270.480000pt;}
.x30_c00169{left:271.680000pt;}
.x1c_c00169{left:274.320000pt;}
.x6c_c00169{left:275.280000pt;}
.xb_c00169{left:282.720000pt;}
.x17_c00169{left:286.080000pt;}
.x60_c00169{left:288.720000pt;}
.x67_c00169{left:289.920000pt;}
.x72_c00169{left:292.320000pt;}
.x5f_c00169{left:294.480000pt;}
.x2a_c00169{left:296.160000pt;}
.x27_c00169{left:297.120000pt;}
.x31_c00169{left:299.760000pt;}
.x1d_c00169{left:300.720000pt;}
.x37_c00169{left:301.680000pt;}
.x4e_c00169{left:304.320000pt;}
.x52_c00169{left:306.720000pt;}
.xc_c00169{left:307.680000pt;}
.x41_c00169{left:309.840000pt;}
.x70_c00169{left:311.520000pt;}
.x79_c00169{left:314.749333pt;}
.x64_c00169{left:322.320000pt;}
.x2_c00169{left:324.240000pt;}
.x71_c00169{left:327.840000pt;}
.x5b_c00169{left:330.960000pt;}
.x26_c00169{left:331.920000pt;}
.x49_c00169{left:333.360000pt;}
.x10_c00169{left:335.280000pt;}
.x1e_c00169{left:336.720000pt;}
.x38_c00169{left:337.680000pt;}
.x42_c00169{left:338.880000pt;}
.x65_c00169{left:339.840000pt;}
.x28_c00169{left:341.280000pt;}
.x40_c00169{left:342.240000pt;}
.x74_c00169{left:348.000000pt;}
.xd_c00169{left:355.920000pt;}
.x73_c00169{left:358.080000pt;}
.x4a_c00169{left:359.040000pt;}
.x11_c00169{left:360.240000pt;}
.x45_c00169{left:362.400000pt;}
.x2b_c00169{left:363.360000pt;}
.x88_c00169{left:366.542447pt;}
.x68_c00169{left:368.160000pt;}
.x7a_c00169{left:369.056000pt;}
.x39_c00169{left:372.000000pt;}
.x1f_c00169{left:373.200000pt;}
.x12_c00169{left:375.360000pt;}
.x3_c00169{left:376.320000pt;}
.x18_c00169{left:379.920000pt;}
.x4f_c00169{left:381.360000pt;}
.xe_c00169{left:382.560000pt;}
.x6d_c00169{left:384.240000pt;}
.x53_c00169{left:385.920000pt;}
.x32_c00169{left:387.600000pt;}
.x2c_c00169{left:389.280000pt;}
.x69_c00169{left:390.480000pt;}
.x61_c00169{left:392.880000pt;}
.x4b_c00169{left:393.840000pt;}
.x8b_c00169{left:395.217333pt;}
.x5c_c00169{left:397.680000pt;}
.x19_c00169{left:398.880000pt;}
.x66_c00169{left:400.080000pt;}
.x3a_c00169{left:401.040000pt;}
.x33_c00169{left:403.440000pt;}
.xf_c00169{left:408.000000pt;}
.x13_c00169{left:410.640000pt;}
.x8c_c00169{left:412.504000pt;}
.x54_c00169{left:416.880000pt;}
.x6e_c00169{left:419.520000pt;}
.x20_c00169{left:424.560000pt;}
.x5d_c00169{left:426.240000pt;}
.x1a_c00169{left:429.360000pt;}
.x4_c00169{left:431.760000pt;}
.x7b_c00169{left:435.940000pt;}
.x50_c00169{left:437.040000pt;}
.x21_c00169{left:441.120000pt;}
.x55_c00169{left:444.240000pt;}
.x34_c00169{left:447.360000pt;}
.x2d_c00169{left:451.920000pt;}
.x3b_c00169{left:453.840000pt;}
.x5e_c00169{left:458.400000pt;}
.x6a_c00169{left:459.600000pt;}
.x8d_c00169{left:461.706667pt;}
.x5_c00169{left:469.680000pt;}
.x56_c00169{left:470.640000pt;}
.x46_c00169{left:478.080000pt;}
.x7c_c00169{left:479.462667pt;}
.x2e_c00169{left:484.560000pt;}
.x35_c00169{left:486.000000pt;}
.x8e_c00169{left:501.834667pt;}
.x7d_c00169{left:509.454667pt;}
.x7e_c00169{left:528.173333pt;}
.x6_c00169{left:537.600000pt;}
.x8f_c00169{left:540.664000pt;}
.x7f_c00169{left:544.494667pt;}
.x90_c00169{left:552.569333pt;}
.x43_c00169{left:562.080000pt;}
.x80_c00169{left:565.858667pt;}
.x9_c00169{left:611.865333pt;}
.x7_c00169{left:642.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m44_c00170{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m9a_c00170{transform:matrix(0.012325,0.000086,-0.001750,0.249994,0,0);-ms-transform:matrix(0.012325,0.000086,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.012325,0.000086,-0.001750,0.249994,0,0);}
.m33_c00170{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);}
.mab_c00170{transform:matrix(0.017495,0.000122,-0.001750,0.249994,0,0);-ms-transform:matrix(0.017495,0.000122,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.017495,0.000122,-0.001750,0.249994,0,0);}
.m6c_c00170{transform:matrix(0.038910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038910,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.052595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052595,0.000000,0.000000,0.250000,0,0);}
.m87_c00170{transform:matrix(0.106400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106400,0.000000,0.000000,0.250000,0,0);}
.maa_c00170{transform:matrix(0.107127,0.000750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.107127,0.000750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.107127,0.000750,-0.001750,0.249994,0,0);}
.mbd_c00170{transform:matrix(0.117542,0.000823,-0.001750,0.249994,0,0);-ms-transform:matrix(0.117542,0.000823,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.117542,0.000823,-0.001750,0.249994,0,0);}
.ma_c00170{transform:matrix(0.135845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135845,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{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);}
.m7_c00170{transform:matrix(0.144570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144570,0.000000,0.000000,0.250000,0,0);}
.m72_c00170{transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);}
.m40_c00170{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.ma5_c00170{transform:matrix(0.148926,0.001042,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148926,0.001042,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148926,0.001042,-0.001750,0.249994,0,0);}
.m92_c00170{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);}
.ma7_c00170{transform:matrix(0.150611,0.001054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150611,0.001054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150611,0.001054,-0.001750,0.249994,0,0);}
.m10_c00170{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);}
.m4e_c00170{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);}
.m48_c00170{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);}
.m70_c00170{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);}
.me_c00170{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);}
.m6a_c00170{transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);}
.m2c_c00170{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);}
.m96_c00170{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);}
.m4_c00170{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);}
.m5c_c00170{transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);}
.m73_c00170{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);}
.m0_c00170{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);}
.m53_c00170{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);}
.m37_c00170{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);}
.m1f_c00170{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);}
.m91_c00170{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);}
.ma6_c00170{transform:matrix(0.167041,0.001169,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167041,0.001169,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167041,0.001169,-0.001750,0.249994,0,0);}
.m6b_c00170{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);}
.m77_c00170{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.m29_c00170{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);}
.m1d_c00170{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);}
.mb3_c00170{transform:matrix(0.170116,0.001191,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170116,0.001191,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170116,0.001191,-0.001750,0.249994,0,0);}
.m17_c00170{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);}
.m46_c00170{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);}
.m39_c00170{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);}
.ma2_c00170{transform:matrix(0.171521,0.001201,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171521,0.001201,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171521,0.001201,-0.001750,0.249994,0,0);}
.ma8_c00170{transform:matrix(0.171576,0.001201,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171576,0.001201,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171576,0.001201,-0.001750,0.249994,0,0);}
.m5d_c00170{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);}
.m2a_c00170{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);}
.ma4_c00170{transform:matrix(0.176091,0.001233,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176091,0.001233,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176091,0.001233,-0.001750,0.249994,0,0);}
.ma1_c00170{transform:matrix(0.176281,0.001234,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176281,0.001234,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176281,0.001234,-0.001750,0.249994,0,0);}
.m94_c00170{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);}
.m34_c00170{transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00170{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);}
.ma3_c00170{transform:matrix(0.178131,0.001247,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178131,0.001247,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178131,0.001247,-0.001750,0.249994,0,0);}
.m49_c00170{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);}
.m47_c00170{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);}
.m12_c00170{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);}
.m68_c00170{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);}
.m95_c00170{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);}
.m8f_c00170{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);}
.m54_c00170{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);}
.m22_c00170{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);}
.mc_c00170{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);}
.md_c00170{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);}
.m36_c00170{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);}
.m75_c00170{transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182435,0.000000,0.000000,0.250000,0,0);}
.m2e_c00170{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_c00170{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);}
.m60_c00170{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);}
.m90_c00170{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);}
.maf_c00170{transform:matrix(0.185155,0.001296,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185155,0.001296,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185155,0.001296,-0.001750,0.249994,0,0);}
.m21_c00170{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);}
.m66_c00170{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);}
.mf_c00170{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);}
.m1b_c00170{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);}
.m69_c00170{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);}
.m6_c00170{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);}
.m76_c00170{transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);}
.m86_c00170{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);}
.m7f_c00170{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);}
.m71_c00170{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);}
.mb1_c00170{transform:matrix(0.188540,0.001320,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188540,0.001320,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188540,0.001320,-0.001750,0.249994,0,0);}
.mba_c00170{transform:matrix(0.188665,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188665,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188665,0.001321,-0.001750,0.249994,0,0);}
.m9e_c00170{transform:matrix(0.188745,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188745,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188745,0.001321,-0.001750,0.249994,0,0);}
.m4b_c00170{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);}
.m58_c00170{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);}
.m5_c00170{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);}
.m55_c00170{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);}
.m3_c00170{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);}
.m1e_c00170{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);}
.m38_c00170{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);}
.m97_c00170{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);}
.m82_c00170{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);}
.m8a_c00170{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);}
.m5e_c00170{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);}
.m7d_c00170{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);}
.m99_c00170{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);}
.m78_c00170{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);}
.mbf_c00170{transform:matrix(0.195935,0.001372,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195935,0.001372,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195935,0.001372,-0.001750,0.249994,0,0);}
.mb4_c00170{transform:matrix(0.196625,0.001376,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196625,0.001376,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196625,0.001376,-0.001750,0.249994,0,0);}
.m27_c00170{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);}
.m2d_c00170{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);}
.m7c_c00170{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);}
.mbc_c00170{transform:matrix(0.198430,0.001389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198430,0.001389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198430,0.001389,-0.001750,0.249994,0,0);}
.m7e_c00170{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);}
.m64_c00170{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);}
.m5b_c00170{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);}
.m6f_c00170{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);}
.m74_c00170{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);}
.m2f_c00170{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);}
.m11_c00170{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);}
.m16_c00170{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);}
.m5f_c00170{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);}
.m50_c00170{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);}
.m7a_c00170{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);}
.m65_c00170{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);}
.m30_c00170{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);}
.mb9_c00170{transform:matrix(0.206080,0.001443,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206080,0.001443,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206080,0.001443,-0.001750,0.249994,0,0);}
.m81_c00170{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);}
.m45_c00170{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);}
.m7b_c00170{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m59_c00170{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);}
.ma0_c00170{transform:matrix(0.209520,0.001467,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209520,0.001467,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209520,0.001467,-0.001750,0.249994,0,0);}
.m26_c00170{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);}
.m89_c00170{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);}
.m88_c00170{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);}
.m8b_c00170{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);}
.m2b_c00170{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);}
.m8e_c00170{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);}
.m80_c00170{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);}
.ma9_c00170{transform:matrix(0.215980,0.001512,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215980,0.001512,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215980,0.001512,-0.001750,0.249994,0,0);}
.m19_c00170{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);}
.m24_c00170{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);}
.m3f_c00170{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);}
.mbb_c00170{transform:matrix(0.219860,0.001539,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219860,0.001539,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219860,0.001539,-0.001750,0.249994,0,0);}
.mb8_c00170{transform:matrix(0.222015,0.001554,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222015,0.001554,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222015,0.001554,-0.001750,0.249994,0,0);}
.m18_c00170{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);}
.m98_c00170{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);}
.m4d_c00170{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.mb0_c00170{transform:matrix(0.227449,0.001592,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227449,0.001592,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227449,0.001592,-0.001750,0.249994,0,0);}
.m1_c00170{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);}
.mbe_c00170{transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);}
.m1a_c00170{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);}
.m9f_c00170{transform:matrix(0.230289,0.001612,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230289,0.001612,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230289,0.001612,-0.001750,0.249994,0,0);}
.m85_c00170{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);}
.mad_c00170{transform:matrix(0.232929,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232929,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232929,0.001631,-0.001750,0.249994,0,0);}
.m23_c00170{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);}
.m9b_c00170{transform:matrix(0.235364,0.001648,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235364,0.001648,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235364,0.001648,-0.001750,0.249994,0,0);}
.m20_c00170{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);}
.m3c_c00170{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);}
.m93_c00170{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);}
.m84_c00170{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);}
.m83_c00170{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m35_c00170{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);}
.m52_c00170{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m67_c00170{transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);}
.m3b_c00170{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);}
.m9c_c00170{transform:matrix(0.256869,0.001798,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256869,0.001798,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256869,0.001798,-0.001750,0.249994,0,0);}
.mb5_c00170{transform:matrix(0.262684,0.001839,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262684,0.001839,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262684,0.001839,-0.001750,0.249994,0,0);}
.m25_c00170{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);}
.m32_c00170{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);}
.m42_c00170{transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);}
.m56_c00170{transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);}
.m28_c00170{transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);}
.m4c_c00170{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00170{transform:matrix(0.309835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309835,0.000000,0.000000,0.250000,0,0);}
.m3d_c00170{transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310360,0.000000,0.000000,0.250000,0,0);}
.m31_c00170{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);}
.m51_c00170{transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);}
.m6d_c00170{transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);}
.m41_c00170{transform:matrix(0.329410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329410,0.000000,0.000000,0.250000,0,0);}
.m79_c00170{transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350125,0.000000,0.000000,0.250000,0,0);}
.mb2_c00170{transform:matrix(0.350291,0.002452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.350291,0.002452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.350291,0.002452,-0.001750,0.249994,0,0);}
.mc1_c00170{transform:matrix(0.359035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359035,0.000000,0.000000,0.250000,0,0);}
.m61_c00170{transform:matrix(0.362435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362435,0.000000,0.000000,0.250000,0,0);}
.mc0_c00170{transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);-ms-transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);}
.mb7_c00170{transform:matrix(0.367561,0.002573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.367561,0.002573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.367561,0.002573,-0.001750,0.249994,0,0);}
.m13_c00170{transform:matrix(0.376495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376495,0.000000,0.000000,0.250000,0,0);}
.m8c_c00170{transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);}
.m4a_c00170{transform:matrix(0.401590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401590,0.000000,0.000000,0.250000,0,0);}
.m62_c00170{transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);}
.mb6_c00170{transform:matrix(0.402715,0.002819,-0.001750,0.249994,0,0);-ms-transform:matrix(0.402715,0.002819,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.402715,0.002819,-0.001750,0.249994,0,0);}
.m57_c00170{transform:matrix(0.408035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408035,0.000000,0.000000,0.250000,0,0);}
.m43_c00170{transform:matrix(0.415790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415790,0.000000,0.000000,0.250000,0,0);}
.mae_c00170{transform:matrix(0.438799,0.003072,-0.001750,0.249994,0,0);-ms-transform:matrix(0.438799,0.003072,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.438799,0.003072,-0.001750,0.249994,0,0);}
.m8_c00170{transform:matrix(0.439350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439350,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.440850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440850,0.000000,0.000000,0.250000,0,0);}
.m8d_c00170{transform:matrix(0.477990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477990,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{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);}
.m63_c00170{transform:matrix(0.519950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00170{transform:matrix(0.553520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553520,0.000000,0.000000,0.250000,0,0);}
.m6e_c00170{transform:matrix(0.586945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586945,0.000000,0.000000,0.250000,0,0);}
.mac_c00170{transform:matrix(0.589531,0.004127,-0.001750,0.249994,0,0);-ms-transform:matrix(0.589531,0.004127,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.589531,0.004127,-0.001750,0.249994,0,0);}
.m5a_c00170{transform:matrix(0.669525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669525,0.000000,0.000000,0.250000,0,0);}
.m9d_c00170{transform:matrix(0.717892,0.005025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.717892,0.005025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.717892,0.005025,-0.001750,0.249994,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;}
.fsb_c00170{font-size:38.850000px;}
.fs7_c00170{font-size:45.150000px;}
.fs6_c00170{font-size:52.500000px;}
.fsa_c00170{font-size:54.601338px;}
.fs9_c00170{font-size:55.651363px;}
.fs5_c00170{font-size:61.950000px;}
.fs8_c00170{font-size:61.951518px;}
.fs4_c00170{font-size:66.150000px;}
.fs3_c00170{font-size:68.250000px;}
.fs2_c00170{font-size:72.450000px;}
.fs1_c00170{font-size:73.500000px;}
.fs0_c00170{font-size:75.600000px;}
.y0_c00170{bottom:0.000000px;}
.y4a_c00170{bottom:116.776500px;}
.y49_c00170{bottom:145.737187px;}
.y48_c00170{bottom:146.279157px;}
.y47_c00170{bottom:149.048388px;}
.y46_c00170{bottom:149.155806px;}
.y45_c00170{bottom:149.595175px;}
.y44_c00170{bottom:150.424062px;}
.y43_c00170{bottom:150.805036px;}
.y42_c00170{bottom:151.513806px;}
.y41_c00170{bottom:152.231317px;}
.y40_c00170{bottom:152.546729px;}
.y3e_c00170{bottom:167.557623px;}
.y3c_c00170{bottom:167.557852px;}
.y3d_c00170{bottom:167.558043px;}
.y3f_c00170{bottom:167.558234px;}
.y3b_c00170{bottom:167.558482px;}
.y3a_c00170{bottom:167.559132px;}
.y39_c00170{bottom:167.559212px;}
.y38_c00170{bottom:167.559961px;}
.y36_c00170{bottom:167.560041px;}
.y35_c00170{bottom:167.560410px;}
.y37_c00170{bottom:167.560621px;}
.y34_c00170{bottom:167.560789px;}
.y33_c00170{bottom:167.561319px;}
.y32_c00170{bottom:184.599782px;}
.y31_c00170{bottom:184.839675px;}
.y30_c00170{bottom:184.994655px;}
.y2f_c00170{bottom:185.361546px;}
.y2e_c00170{bottom:185.529515px;}
.y2d_c00170{bottom:185.642925px;}
.y2c_c00170{bottom:185.852683px;}
.y2b_c00170{bottom:185.986789px;}
.y2a_c00170{bottom:186.075872px;}
.y29_c00170{bottom:186.221296px;}
.y28_c00170{bottom:186.554262px;}
.y27_c00170{bottom:186.784527px;}
.y26_c00170{bottom:187.270750px;}
.y25_c00170{bottom:187.387930px;}
.y24_c00170{bottom:187.538731px;}
.y23_c00170{bottom:187.650000px;}
.y22_c00170{bottom:231.660000px;}
.y21_c00170{bottom:248.805000px;}
.y20_c00170{bottom:268.932000px;}
.y1f_c00170{bottom:290.385000px;}
.y1e_c00170{bottom:312.873000px;}
.y1d_c00170{bottom:336.564000px;}
.y1c_c00170{bottom:359.469000px;}
.y1b_c00170{bottom:381.760500px;}
.y18_c00170{bottom:404.193000px;}
.y19_c00170{bottom:405.562500px;}
.y1a_c00170{bottom:406.003500px;}
.y17_c00170{bottom:427.411500px;}
.y16_c00170{bottom:451.375500px;}
.y15_c00170{bottom:473.313000px;}
.y14_c00170{bottom:497.071500px;}
.y13_c00170{bottom:518.854500px;}
.y12_c00170{bottom:542.272500px;}
.y11_c00170{bottom:563.725500px;}
.y10_c00170{bottom:586.728000px;}
.yf_c00170{bottom:588.520500px;}
.ye_c00170{bottom:589.051500px;}
.yd_c00170{bottom:589.417500px;}
.yc_c00170{bottom:610.314000px;}
.yb_c00170{bottom:632.104500px;}
.ya_c00170{bottom:654.609000px;}
.y9_c00170{bottom:677.782500px;}
.y8_c00170{bottom:700.504500px;}
.y7_c00170{bottom:722.878500px;}
.y6_c00170{bottom:745.893000px;}
.y5_c00170{bottom:768.406500px;}
.y4_c00170{bottom:790.605000px;}
.y3_c00170{bottom:792.553500px;}
.y2_c00170{bottom:793.533000px;}
.y1_c00170{bottom:815.250000px;}
.hd_c00170{height:38.850000px;}
.h9_c00170{height:45.150000px;}
.h8_c00170{height:52.500000px;}
.hc_c00170{height:54.601338px;}
.hb_c00170{height:55.651363px;}
.h7_c00170{height:61.950000px;}
.ha_c00170{height:61.951518px;}
.h6_c00170{height:66.150000px;}
.h5_c00170{height:68.250000px;}
.h4_c00170{height:72.450000px;}
.h3_c00170{height:73.500000px;}
.h2_c00170{height:75.600000px;}
.h1_c00170{height:1005.000000px;}
.h0_c00170{height:1005.150000px;}
.w0_c00170{width:735.750000px;}
.x0_c00170{left:0.000000px;}
.x70_c00170{left:50.222374px;}
.x2c_c00170{left:67.230000px;}
.x31_c00170{left:78.300000px;}
.x71_c00170{left:86.942670px;}
.x77_c00170{left:90.831559px;}
.x66_c00170{left:101.482500px;}
.x53_c00170{left:117.012000px;}
.x15_c00170{left:118.800000px;}
.x4d_c00170{left:120.151500px;}
.x21_c00170{left:125.280000px;}
.x46_c00170{left:127.711500px;}
.x1_c00170{left:129.600000px;}
.xc_c00170{left:130.950000px;}
.x67_c00170{left:138.921000px;}
.x72_c00170{left:141.213826px;}
.x2_c00170{left:142.830000px;}
.x78_c00170{left:145.973739px;}
.x1b_c00170{left:149.580000px;}
.x62_c00170{left:152.551500px;}
.x22_c00170{left:154.980000px;}
.x1c_c00170{left:167.670000px;}
.x3d_c00170{left:168.751500px;}
.x16_c00170{left:172.800000px;}
.x5c_c00170{left:179.551500px;}
.x32_c00170{left:181.440000px;}
.x23_c00170{left:185.490000px;}
.x47_c00170{left:187.921500px;}
.xd_c00170{left:189.810000px;}
.x3_c00170{left:191.430000px;}
.x3e_c00170{left:194.131500px;}
.x79_c00170{left:200.509950px;}
.x1d_c00170{left:206.280000px;}
.x33_c00170{left:208.710000px;}
.x64_c00170{left:210.331500px;}
.x55_c00170{left:213.031500px;}
.x48_c00170{left:215.461500px;}
.x24_c00170{left:216.810000px;}
.x36_c00170{left:222.328500px;}
.x65_c00170{left:224.911500px;}
.x17_c00170{left:228.960000px;}
.xe_c00170{left:230.580000px;}
.x60_c00170{left:233.011500px;}
.x4_c00170{left:235.710000px;}
.x56_c00170{left:238.681500px;}
.x25_c00170{left:239.760000px;}
.x9_c00170{left:241.452000px;}
.x34_c00170{left:243.810000px;}
.x2d_c00170{left:245.160000px;}
.x3f_c00170{left:249.481500px;}
.x49_c00170{left:251.101500px;}
.x54_c00170{left:253.945500px;}
.x14_c00170{left:256.500000px;}
.x68_c00170{left:258.016500px;}
.x4e_c00170{left:260.281500px;}
.x5a_c00170{left:265.411500px;}
.x29_c00170{left:266.760000px;}
.x63_c00170{left:268.651500px;}
.x1e_c00170{left:275.400000px;}
.x4a_c00170{left:277.291500px;}
.x4f_c00170{left:279.721500px;}
.x5_c00170{left:286.200000px;}
.x40_c00170{left:288.631500px;}
.x2e_c00170{left:293.220000px;}
.xf_c00170{left:295.380000px;}
.x7e_c00170{left:296.730000px;}
.x18_c00170{left:297.810000px;}
.x5b_c00170{left:300.781500px;}
.x2a_c00170{left:301.860000px;}
.x37_c00170{left:303.796500px;}
.x45_c00170{left:304.831500px;}
.xa_c00170{left:306.789000px;}
.x10_c00170{left:312.390000px;}
.x4b_c00170{left:314.281500px;}
.x50_c00170{left:317.791500px;}
.x41_c00170{left:324.271500px;}
.x69_c00170{left:326.358000px;}
.x7a_c00170{left:327.466126px;}
.x61_c00170{left:328.861500px;}
.x39_c00170{left:331.291500px;}
.x6_c00170{left:334.260000px;}
.x7b_c00170{left:335.739780px;}
.x6a_c00170{left:339.084000px;}
.x2b_c00170{left:341.820000px;}
.x11_c00170{left:344.790000px;}
.x5d_c00170{left:346.951500px;}
.x1f_c00170{left:348.300000px;}
.x42_c00170{left:349.381500px;}
.x26_c00170{left:353.430000px;}
.x6b_c00170{left:358.242000px;}
.x2f_c00170{left:359.640000px;}
.x7_c00170{left:363.420000px;}
.x12_c00170{left:364.500000px;}
.x57_c00170{left:369.901500px;}
.x51_c00170{left:376.381500px;}
.x35_c00170{left:379.890000px;}
.x43_c00170{left:382.591500px;}
.x8_c00170{left:386.100000px;}
.x6c_c00170{left:388.207500px;}
.x30_c00170{left:389.340000px;}
.x20_c00170{left:392.040000px;}
.x27_c00170{left:398.250000px;}
.x4c_c00170{left:405.271500px;}
.x58_c00170{left:407.701500px;}
.x52_c00170{left:410.131500px;}
.x19_c00170{left:412.020000px;}
.x5e_c00170{left:413.911500px;}
.x28_c00170{left:420.120000px;}
.x13_c00170{left:426.330000px;}
.x5f_c00170{left:429.301500px;}
.x44_c00170{left:434.161500px;}
.xb_c00170{left:436.707000px;}
.x3a_c00170{left:439.831500px;}
.x1a_c00170{left:460.080000px;}
.x3b_c00170{left:462.781500px;}
.x38_c00170{left:466.780500px;}
.x59_c00170{left:470.071500px;}
.x73_c00170{left:478.452832px;}
.x6d_c00170{left:480.817500px;}
.x3c_c00170{left:496.801500px;}
.x6e_c00170{left:502.957500px;}
.x74_c00170{left:529.213821px;}
.x6f_c00170{left:537.228000px;}
.x7c_c00170{left:548.763834px;}
.x75_c00170{left:550.274850px;}
.x7d_c00170{left:590.400580px;}
.x76_c00170{left:606.976132px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.fsb_c00170{font-size:34.533333pt;}
.fs7_c00170{font-size:40.133333pt;}
.fs6_c00170{font-size:46.666667pt;}
.fsa_c00170{font-size:48.534522pt;}
.fs9_c00170{font-size:49.467879pt;}
.fs5_c00170{font-size:55.066667pt;}
.fs8_c00170{font-size:55.068016pt;}
.fs4_c00170{font-size:58.800000pt;}
.fs3_c00170{font-size:60.666667pt;}
.fs2_c00170{font-size:64.400000pt;}
.fs1_c00170{font-size:65.333333pt;}
.fs0_c00170{font-size:67.200000pt;}
.y0_c00170{bottom:0.000000pt;}
.y4a_c00170{bottom:103.801333pt;}
.y49_c00170{bottom:129.544167pt;}
.y48_c00170{bottom:130.025917pt;}
.y47_c00170{bottom:132.487456pt;}
.y46_c00170{bottom:132.582939pt;}
.y45_c00170{bottom:132.973489pt;}
.y44_c00170{bottom:133.710277pt;}
.y43_c00170{bottom:134.048921pt;}
.y42_c00170{bottom:134.678939pt;}
.y41_c00170{bottom:135.316727pt;}
.y40_c00170{bottom:135.597092pt;}
.y3e_c00170{bottom:148.940109pt;}
.y3c_c00170{bottom:148.940313pt;}
.y3d_c00170{bottom:148.940483pt;}
.y3f_c00170{bottom:148.940652pt;}
.y3b_c00170{bottom:148.940873pt;}
.y3a_c00170{bottom:148.941451pt;}
.y39_c00170{bottom:148.941521pt;}
.y38_c00170{bottom:148.942188pt;}
.y36_c00170{bottom:148.942259pt;}
.y35_c00170{bottom:148.942587pt;}
.y37_c00170{bottom:148.942775pt;}
.y34_c00170{bottom:148.942924pt;}
.y33_c00170{bottom:148.943395pt;}
.y32_c00170{bottom:164.088695pt;}
.y31_c00170{bottom:164.301933pt;}
.y30_c00170{bottom:164.439693pt;}
.y2f_c00170{bottom:164.765819pt;}
.y2e_c00170{bottom:164.915124pt;}
.y2d_c00170{bottom:165.015933pt;}
.y2c_c00170{bottom:165.202385pt;}
.y2b_c00170{bottom:165.321591pt;}
.y2a_c00170{bottom:165.400775pt;}
.y29_c00170{bottom:165.530041pt;}
.y28_c00170{bottom:165.826011pt;}
.y27_c00170{bottom:166.030691pt;}
.y26_c00170{bottom:166.462889pt;}
.y25_c00170{bottom:166.567049pt;}
.y24_c00170{bottom:166.701095pt;}
.y23_c00170{bottom:166.800000pt;}
.y22_c00170{bottom:205.920000pt;}
.y21_c00170{bottom:221.160000pt;}
.y20_c00170{bottom:239.050667pt;}
.y1f_c00170{bottom:258.120000pt;}
.y1e_c00170{bottom:278.109333pt;}
.y1d_c00170{bottom:299.168000pt;}
.y1c_c00170{bottom:319.528000pt;}
.y1b_c00170{bottom:339.342667pt;}
.y18_c00170{bottom:359.282667pt;}
.y19_c00170{bottom:360.500000pt;}
.y1a_c00170{bottom:360.892000pt;}
.y17_c00170{bottom:379.921333pt;}
.y16_c00170{bottom:401.222667pt;}
.y15_c00170{bottom:420.722667pt;}
.y14_c00170{bottom:441.841333pt;}
.y13_c00170{bottom:461.204000pt;}
.y12_c00170{bottom:482.020000pt;}
.y11_c00170{bottom:501.089333pt;}
.y10_c00170{bottom:521.536000pt;}
.yf_c00170{bottom:523.129333pt;}
.ye_c00170{bottom:523.601333pt;}
.yd_c00170{bottom:523.926667pt;}
.yc_c00170{bottom:542.501333pt;}
.yb_c00170{bottom:561.870667pt;}
.ya_c00170{bottom:581.874667pt;}
.y9_c00170{bottom:602.473333pt;}
.y8_c00170{bottom:622.670667pt;}
.y7_c00170{bottom:642.558667pt;}
.y6_c00170{bottom:663.016000pt;}
.y5_c00170{bottom:683.028000pt;}
.y4_c00170{bottom:702.760000pt;}
.y3_c00170{bottom:704.492000pt;}
.y2_c00170{bottom:705.362667pt;}
.y1_c00170{bottom:724.666667pt;}
.hd_c00170{height:34.533333pt;}
.h9_c00170{height:40.133333pt;}
.h8_c00170{height:46.666667pt;}
.hc_c00170{height:48.534522pt;}
.hb_c00170{height:49.467879pt;}
.h7_c00170{height:55.066667pt;}
.ha_c00170{height:55.068016pt;}
.h6_c00170{height:58.800000pt;}
.h5_c00170{height:60.666667pt;}
.h4_c00170{height:64.400000pt;}
.h3_c00170{height:65.333333pt;}
.h2_c00170{height:67.200000pt;}
.h1_c00170{height:893.333333pt;}
.h0_c00170{height:893.466667pt;}
.w0_c00170{width:654.000000pt;}
.x0_c00170{left:0.000000pt;}
.x70_c00170{left:44.642111pt;}
.x2c_c00170{left:59.760000pt;}
.x31_c00170{left:69.600000pt;}
.x71_c00170{left:77.282373pt;}
.x77_c00170{left:80.739164pt;}
.x66_c00170{left:90.206667pt;}
.x53_c00170{left:104.010667pt;}
.x15_c00170{left:105.600000pt;}
.x4d_c00170{left:106.801333pt;}
.x21_c00170{left:111.360000pt;}
.x46_c00170{left:113.521333pt;}
.x1_c00170{left:115.200000pt;}
.xc_c00170{left:116.400000pt;}
.x67_c00170{left:123.485333pt;}
.x72_c00170{left:125.523401pt;}
.x2_c00170{left:126.960000pt;}
.x78_c00170{left:129.754435pt;}
.x1b_c00170{left:132.960000pt;}
.x62_c00170{left:135.601333pt;}
.x22_c00170{left:137.760000pt;}
.x1c_c00170{left:149.040000pt;}
.x3d_c00170{left:150.001333pt;}
.x16_c00170{left:153.600000pt;}
.x5c_c00170{left:159.601333pt;}
.x32_c00170{left:161.280000pt;}
.x23_c00170{left:164.880000pt;}
.x47_c00170{left:167.041333pt;}
.xd_c00170{left:168.720000pt;}
.x3_c00170{left:170.160000pt;}
.x3e_c00170{left:172.561333pt;}
.x79_c00170{left:178.231067pt;}
.x1d_c00170{left:183.360000pt;}
.x33_c00170{left:185.520000pt;}
.x64_c00170{left:186.961333pt;}
.x55_c00170{left:189.361333pt;}
.x48_c00170{left:191.521333pt;}
.x24_c00170{left:192.720000pt;}
.x36_c00170{left:197.625333pt;}
.x65_c00170{left:199.921333pt;}
.x17_c00170{left:203.520000pt;}
.xe_c00170{left:204.960000pt;}
.x60_c00170{left:207.121333pt;}
.x4_c00170{left:209.520000pt;}
.x56_c00170{left:212.161333pt;}
.x25_c00170{left:213.120000pt;}
.x9_c00170{left:214.624000pt;}
.x34_c00170{left:216.720000pt;}
.x2d_c00170{left:217.920000pt;}
.x3f_c00170{left:221.761333pt;}
.x49_c00170{left:223.201333pt;}
.x54_c00170{left:225.729333pt;}
.x14_c00170{left:228.000000pt;}
.x68_c00170{left:229.348000pt;}
.x4e_c00170{left:231.361333pt;}
.x5a_c00170{left:235.921333pt;}
.x29_c00170{left:237.120000pt;}
.x63_c00170{left:238.801333pt;}
.x1e_c00170{left:244.800000pt;}
.x4a_c00170{left:246.481333pt;}
.x4f_c00170{left:248.641333pt;}
.x5_c00170{left:254.400000pt;}
.x40_c00170{left:256.561333pt;}
.x2e_c00170{left:260.640000pt;}
.xf_c00170{left:262.560000pt;}
.x7e_c00170{left:263.760000pt;}
.x18_c00170{left:264.720000pt;}
.x5b_c00170{left:267.361333pt;}
.x2a_c00170{left:268.320000pt;}
.x37_c00170{left:270.041333pt;}
.x45_c00170{left:270.961333pt;}
.xa_c00170{left:272.701333pt;}
.x10_c00170{left:277.680000pt;}
.x4b_c00170{left:279.361333pt;}
.x50_c00170{left:282.481333pt;}
.x41_c00170{left:288.241333pt;}
.x69_c00170{left:290.096000pt;}
.x7a_c00170{left:291.081001pt;}
.x61_c00170{left:292.321333pt;}
.x39_c00170{left:294.481333pt;}
.x6_c00170{left:297.120000pt;}
.x7b_c00170{left:298.435360pt;}
.x6a_c00170{left:301.408000pt;}
.x2b_c00170{left:303.840000pt;}
.x11_c00170{left:306.480000pt;}
.x5d_c00170{left:308.401333pt;}
.x1f_c00170{left:309.600000pt;}
.x42_c00170{left:310.561333pt;}
.x26_c00170{left:314.160000pt;}
.x6b_c00170{left:318.437333pt;}
.x2f_c00170{left:319.680000pt;}
.x7_c00170{left:323.040000pt;}
.x12_c00170{left:324.000000pt;}
.x57_c00170{left:328.801333pt;}
.x51_c00170{left:334.561333pt;}
.x35_c00170{left:337.680000pt;}
.x43_c00170{left:340.081333pt;}
.x8_c00170{left:343.200000pt;}
.x6c_c00170{left:345.073333pt;}
.x30_c00170{left:346.080000pt;}
.x20_c00170{left:348.480000pt;}
.x27_c00170{left:354.000000pt;}
.x4c_c00170{left:360.241333pt;}
.x58_c00170{left:362.401333pt;}
.x52_c00170{left:364.561333pt;}
.x19_c00170{left:366.240000pt;}
.x5e_c00170{left:367.921333pt;}
.x28_c00170{left:373.440000pt;}
.x13_c00170{left:378.960000pt;}
.x5f_c00170{left:381.601333pt;}
.x44_c00170{left:385.921333pt;}
.xb_c00170{left:388.184000pt;}
.x3a_c00170{left:390.961333pt;}
.x1a_c00170{left:408.960000pt;}
.x3b_c00170{left:411.361333pt;}
.x38_c00170{left:414.916000pt;}
.x59_c00170{left:417.841333pt;}
.x73_c00170{left:425.291407pt;}
.x6d_c00170{left:427.393333pt;}
.x3c_c00170{left:441.601333pt;}
.x6e_c00170{left:447.073333pt;}
.x74_c00170{left:470.412285pt;}
.x6f_c00170{left:477.536000pt;}
.x7c_c00170{left:487.790075pt;}
.x75_c00170{left:489.133200pt;}
.x7d_c00170{left:524.800516pt;}
.x76_c00170{left:539.534340pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m70_c00171{transform:matrix(0.010244,-0.000164,0.003999,0.249968,0,0);-ms-transform:matrix(0.010244,-0.000164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.010244,-0.000164,0.003999,0.249968,0,0);}
.m13_c00171{transform:matrix(0.011612,-0.000267,0.005748,0.249934,0,0);-ms-transform:matrix(0.011612,-0.000267,0.005748,0.249934,0,0);-webkit-transform:matrix(0.011612,-0.000267,0.005748,0.249934,0,0);}
.m5f_c00171{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);}
.m1b_c00171{transform:matrix(0.013433,-0.000228,0.004249,0.249964,0,0);-ms-transform:matrix(0.013433,-0.000228,0.004249,0.249964,0,0);-webkit-transform:matrix(0.013433,-0.000228,0.004249,0.249964,0,0);}
.mb6_c00171{transform:matrix(0.013975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013975,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.018105,-0.000416,0.005748,0.249934,0,0);-ms-transform:matrix(0.018105,-0.000416,0.005748,0.249934,0,0);-webkit-transform:matrix(0.018105,-0.000416,0.005748,0.249934,0,0);}
.m78_c00171{transform:matrix(0.026222,-0.000420,0.003999,0.249968,0,0);-ms-transform:matrix(0.026222,-0.000420,0.003999,0.249968,0,0);-webkit-transform:matrix(0.026222,-0.000420,0.003999,0.249968,0,0);}
.mb5_c00171{transform:matrix(0.031185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031185,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.032926,-0.000527,0.003999,0.249968,0,0);-ms-transform:matrix(0.032926,-0.000527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.032926,-0.000527,0.003999,0.249968,0,0);}
.m5d_c00171{transform:matrix(0.062555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062555,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.062762,-0.001004,0.003999,0.249968,0,0);-ms-transform:matrix(0.062762,-0.001004,0.003999,0.249968,0,0);-webkit-transform:matrix(0.062762,-0.001004,0.003999,0.249968,0,0);}
.m7_c00171{transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{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);}
.ma3_c00171{transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.126036,-0.003151,0.006248,0.249922,0,0);-ms-transform:matrix(0.126036,-0.003151,0.006248,0.249922,0,0);-webkit-transform:matrix(0.126036,-0.003151,0.006248,0.249922,0,0);}
.md_c00171{transform:matrix(0.138378,-0.003183,0.005748,0.249934,0,0);-ms-transform:matrix(0.138378,-0.003183,0.005748,0.249934,0,0);-webkit-transform:matrix(0.138378,-0.003183,0.005748,0.249934,0,0);}
.m58_c00171{transform:matrix(0.151288,-0.003782,0.006248,0.249922,0,0);-ms-transform:matrix(0.151288,-0.003782,0.006248,0.249922,0,0);-webkit-transform:matrix(0.151288,-0.003782,0.006248,0.249922,0,0);}
.m2c_c00171{transform:matrix(0.155940,-0.002495,0.003999,0.249968,0,0);-ms-transform:matrix(0.155940,-0.002495,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155940,-0.002495,0.003999,0.249968,0,0);}
.m21_c00171{transform:matrix(0.160425,-0.001765,0.002750,0.249985,0,0);-ms-transform:matrix(0.160425,-0.001765,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160425,-0.001765,0.002750,0.249985,0,0);}
.mb1_c00171{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);}
.mb_c00171{transform:matrix(0.164866,-0.003792,0.005748,0.249934,0,0);-ms-transform:matrix(0.164866,-0.003792,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164866,-0.003792,0.005748,0.249934,0,0);}
.m25_c00171{transform:matrix(0.166020,-0.001826,0.002750,0.249985,0,0);-ms-transform:matrix(0.166020,-0.001826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166020,-0.001826,0.002750,0.249985,0,0);}
.m6f_c00171{transform:matrix(0.166939,-0.002671,0.003999,0.249968,0,0);-ms-transform:matrix(0.166939,-0.002671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166939,-0.002671,0.003999,0.249968,0,0);}
.m3f_c00171{transform:matrix(0.166993,-0.002004,0.003000,0.249982,0,0);-ms-transform:matrix(0.166993,-0.002004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166993,-0.002004,0.003000,0.249982,0,0);}
.m71_c00171{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);}
.m2a_c00171{transform:matrix(0.169088,-0.002705,0.003999,0.249968,0,0);-ms-transform:matrix(0.169088,-0.002705,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169088,-0.002705,0.003999,0.249968,0,0);}
.m37_c00171{transform:matrix(0.170353,-0.002726,0.003999,0.249968,0,0);-ms-transform:matrix(0.170353,-0.002726,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170353,-0.002726,0.003999,0.249968,0,0);}
.m46_c00171{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);}
.m53_c00171{transform:matrix(0.173246,-0.004331,0.006248,0.249922,0,0);-ms-transform:matrix(0.173246,-0.004331,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173246,-0.004331,0.006248,0.249922,0,0);}
.m73_c00171{transform:matrix(0.173258,-0.002772,0.003999,0.249968,0,0);-ms-transform:matrix(0.173258,-0.002772,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173258,-0.002772,0.003999,0.249968,0,0);}
.mc_c00171{transform:matrix(0.174744,-0.004019,0.005748,0.249934,0,0);-ms-transform:matrix(0.174744,-0.004019,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174744,-0.004019,0.005748,0.249934,0,0);}
.m1e_c00171{transform:matrix(0.175235,-0.002979,0.004249,0.249964,0,0);-ms-transform:matrix(0.175235,-0.002979,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175235,-0.002979,0.004249,0.249964,0,0);}
.m95_c00171{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);}
.m6e_c00171{transform:matrix(0.178847,-0.002862,0.003999,0.249968,0,0);-ms-transform:matrix(0.178847,-0.002862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178847,-0.002862,0.003999,0.249968,0,0);}
.m9a_c00171{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);}
.m2d_c00171{transform:matrix(0.179477,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179477,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179477,-0.002872,0.003999,0.249968,0,0);}
.m23_c00171{transform:matrix(0.180254,-0.001983,0.002750,0.249985,0,0);-ms-transform:matrix(0.180254,-0.001983,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180254,-0.001983,0.002750,0.249985,0,0);}
.m8b_c00171{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);}
.m39_c00171{transform:matrix(0.180987,-0.002172,0.003000,0.249982,0,0);-ms-transform:matrix(0.180987,-0.002172,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180987,-0.002172,0.003000,0.249982,0,0);}
.m28_c00171{transform:matrix(0.181237,-0.002900,0.003999,0.249968,0,0);-ms-transform:matrix(0.181237,-0.002900,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181237,-0.002900,0.003999,0.249968,0,0);}
.m88_c00171{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);}
.m17_c00171{transform:matrix(0.183217,-0.002931,0.003999,0.249968,0,0);-ms-transform:matrix(0.183217,-0.002931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183217,-0.002931,0.003999,0.249968,0,0);}
.m2f_c00171{transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);}
.m27_c00171{transform:matrix(0.184516,-0.002952,0.003999,0.249968,0,0);-ms-transform:matrix(0.184516,-0.002952,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184516,-0.002952,0.003999,0.249968,0,0);}
.m38_c00171{transform:matrix(0.184781,-0.002957,0.003999,0.249968,0,0);-ms-transform:matrix(0.184781,-0.002957,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184781,-0.002957,0.003999,0.249968,0,0);}
.m3d_c00171{transform:matrix(0.185237,-0.002223,0.003000,0.249982,0,0);-ms-transform:matrix(0.185237,-0.002223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185237,-0.002223,0.003000,0.249982,0,0);}
.m35_c00171{transform:matrix(0.185451,-0.002967,0.003999,0.249968,0,0);-ms-transform:matrix(0.185451,-0.002967,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185451,-0.002967,0.003999,0.249968,0,0);}
.m2b_c00171{transform:matrix(0.186031,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.186031,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186031,-0.002976,0.003999,0.249968,0,0);}
.m5c_c00171{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);}
.m9f_c00171{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);}
.m15_c00171{transform:matrix(0.187076,-0.002993,0.003999,0.249968,0,0);-ms-transform:matrix(0.187076,-0.002993,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187076,-0.002993,0.003999,0.249968,0,0);}
.m74_c00171{transform:matrix(0.187181,-0.002995,0.003999,0.249968,0,0);-ms-transform:matrix(0.187181,-0.002995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187181,-0.002995,0.003999,0.249968,0,0);}
.m89_c00171{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);}
.m18_c00171{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);}
.ma_c00171{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);}
.m8e_c00171{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);}
.m3b_c00171{transform:matrix(0.191161,-0.002294,0.003000,0.249982,0,0);-ms-transform:matrix(0.191161,-0.002294,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191161,-0.002294,0.003000,0.249982,0,0);}
.m9_c00171{transform:matrix(0.191184,-0.004397,0.005748,0.249934,0,0);-ms-transform:matrix(0.191184,-0.004397,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191184,-0.004397,0.005748,0.249934,0,0);}
.m67_c00171{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);}
.ma1_c00171{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);}
.m1d_c00171{transform:matrix(0.192197,-0.003267,0.004249,0.249964,0,0);-ms-transform:matrix(0.192197,-0.003267,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192197,-0.003267,0.004249,0.249964,0,0);}
.m91_c00171{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);}
.ma2_c00171{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);}
.m93_c00171{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);}
.m96_c00171{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);}
.m5a_c00171{transform:matrix(0.194909,-0.004873,0.006248,0.249922,0,0);-ms-transform:matrix(0.194909,-0.004873,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194909,-0.004873,0.006248,0.249922,0,0);}
.mb8_c00171{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);}
.m36_c00171{transform:matrix(0.195105,-0.003122,0.003999,0.249968,0,0);-ms-transform:matrix(0.195105,-0.003122,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195105,-0.003122,0.003999,0.249968,0,0);}
.m24_c00171{transform:matrix(0.196283,-0.002159,0.002750,0.249985,0,0);-ms-transform:matrix(0.196283,-0.002159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196283,-0.002159,0.002750,0.249985,0,0);}
.m99_c00171{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);}
.m3e_c00171{transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);}
.m72_c00171{transform:matrix(0.198965,-0.003183,0.003999,0.249968,0,0);-ms-transform:matrix(0.198965,-0.003183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198965,-0.003183,0.003999,0.249968,0,0);}
.ma6_c00171{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);}
.m62_c00171{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);}
.ma9_c00171{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);}
.ma4_c00171{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);}
.m8f_c00171{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);}
.m87_c00171{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);}
.m19_c00171{transform:matrix(0.202299,-0.003237,0.003999,0.249968,0,0);-ms-transform:matrix(0.202299,-0.003237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202299,-0.003237,0.003999,0.249968,0,0);}
.m22_c00171{transform:matrix(0.202933,-0.002232,0.002750,0.249985,0,0);-ms-transform:matrix(0.202933,-0.002232,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202933,-0.002232,0.002750,0.249985,0,0);}
.m8a_c00171{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);}
.m29_c00171{transform:matrix(0.204334,-0.003269,0.003999,0.249968,0,0);-ms-transform:matrix(0.204334,-0.003269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204334,-0.003269,0.003999,0.249968,0,0);}
.m60_c00171{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);}
.m41_c00171{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);}
.m34_c00171{transform:matrix(0.206919,-0.003311,0.003999,0.249968,0,0);-ms-transform:matrix(0.206919,-0.003311,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206919,-0.003311,0.003999,0.249968,0,0);}
.m20_c00171{transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);-ms-transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206997,-0.002277,0.002750,0.249985,0,0);}
.m5_c00171{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);}
.m98_c00171{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);}
.m59_c00171{transform:matrix(0.208640,-0.005216,0.006248,0.249922,0,0);-ms-transform:matrix(0.208640,-0.005216,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208640,-0.005216,0.006248,0.249922,0,0);}
.ma5_c00171{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);}
.mb9_c00171{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);}
.m3c_c00171{transform:matrix(0.211685,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211685,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211685,-0.002540,0.003000,0.249982,0,0);}
.m82_c00171{transform:matrix(0.212003,-0.003392,0.003999,0.249968,0,0);-ms-transform:matrix(0.212003,-0.003392,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212003,-0.003392,0.003999,0.249968,0,0);}
.m1f_c00171{transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);-ms-transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);}
.m50_c00171{transform:matrix(0.213255,-0.002559,0.003000,0.249982,0,0);-ms-transform:matrix(0.213255,-0.002559,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213255,-0.002559,0.003000,0.249982,0,0);}
.m6d_c00171{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);}
.m8d_c00171{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);}
.maa_c00171{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);}
.m90_c00171{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);}
.m31_c00171{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);}
.m16_c00171{transform:matrix(0.217762,-0.003484,0.003999,0.249968,0,0);-ms-transform:matrix(0.217762,-0.003484,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217762,-0.003484,0.003999,0.249968,0,0);}
.m32_c00171{transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);-ms-transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);}
.m33_c00171{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);}
.mbb_c00171{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);}
.m1c_c00171{transform:matrix(0.221198,-0.003760,0.004249,0.249964,0,0);-ms-transform:matrix(0.221198,-0.003760,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221198,-0.003760,0.004249,0.249964,0,0);}
.mbc_c00171{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);}
.ma7_c00171{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);}
.m5e_c00171{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);}
.ma8_c00171{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);}
.m3a_c00171{transform:matrix(0.224889,-0.002699,0.003000,0.249982,0,0);-ms-transform:matrix(0.224889,-0.002699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224889,-0.002699,0.003000,0.249982,0,0);}
.m51_c00171{transform:matrix(0.225751,-0.002935,0.003250,0.249979,0,0);-ms-transform:matrix(0.225751,-0.002935,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225751,-0.002935,0.003250,0.249979,0,0);}
.m4f_c00171{transform:matrix(0.226204,-0.002714,0.003000,0.249982,0,0);-ms-transform:matrix(0.226204,-0.002714,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226204,-0.002714,0.003000,0.249982,0,0);}
.m8c_c00171{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);}
.ma0_c00171{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);}
.m76_c00171{transform:matrix(0.226871,-0.003630,0.003999,0.249968,0,0);-ms-transform:matrix(0.226871,-0.003630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226871,-0.003630,0.003999,0.249968,0,0);}
.m94_c00171{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);}
.mf_c00171{transform:matrix(0.228630,-0.005258,0.005748,0.249934,0,0);-ms-transform:matrix(0.228630,-0.005258,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228630,-0.005258,0.005748,0.249934,0,0);}
.m61_c00171{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);}
.m7c_c00171{transform:matrix(0.232785,-0.003725,0.003999,0.249968,0,0);-ms-transform:matrix(0.232785,-0.003725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232785,-0.003725,0.003999,0.249968,0,0);}
.m86_c00171{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.234638,-0.005397,0.005748,0.249934,0,0);-ms-transform:matrix(0.234638,-0.005397,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234638,-0.005397,0.005748,0.249934,0,0);}
.m63_c00171{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.mba_c00171{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);}
.m30_c00171{transform:matrix(0.241134,-0.003858,0.003999,0.249968,0,0);-ms-transform:matrix(0.241134,-0.003858,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241134,-0.003858,0.003999,0.249968,0,0);}
.m6a_c00171{transform:matrix(0.241220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241220,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{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);}
.m68_c00171{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.242853,-0.002914,0.003000,0.249982,0,0);-ms-transform:matrix(0.242853,-0.002914,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242853,-0.002914,0.003000,0.249982,0,0);}
.mc0_c00171{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);}
.m9b_c00171{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);}
.m4d_c00171{transform:matrix(0.248972,-0.002988,0.003000,0.249982,0,0);-ms-transform:matrix(0.248972,-0.002988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248972,-0.002988,0.003000,0.249982,0,0);}
.m2e_c00171{transform:matrix(0.249273,-0.003988,0.003999,0.249968,0,0);-ms-transform:matrix(0.249273,-0.003988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249273,-0.003988,0.003999,0.249968,0,0);}
.m55_c00171{transform:matrix(0.249532,-0.006238,0.006248,0.249922,0,0);-ms-transform:matrix(0.249532,-0.006238,0.006248,0.249922,0,0);-webkit-transform:matrix(0.249532,-0.006238,0.006248,0.249922,0,0);}
.m44_c00171{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);}
.m5b_c00171{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);}
.m7d_c00171{transform:matrix(0.262876,-0.004206,0.003999,0.249968,0,0);-ms-transform:matrix(0.262876,-0.004206,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262876,-0.004206,0.003999,0.249968,0,0);}
.m6c_c00171{transform:matrix(0.263841,-0.004221,0.003999,0.249968,0,0);-ms-transform:matrix(0.263841,-0.004221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263841,-0.004221,0.003999,0.249968,0,0);}
.m26_c00171{transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);-ms-transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);}
.mad_c00171{transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);}
.mc1_c00171{transform:matrix(0.275280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275280,0.000000,0.000000,0.250000,0,0);}
.m54_c00171{transform:matrix(0.280167,-0.007004,0.006248,0.249922,0,0);-ms-transform:matrix(0.280167,-0.007004,0.006248,0.249922,0,0);-webkit-transform:matrix(0.280167,-0.007004,0.006248,0.249922,0,0);}
.m9c_c00171{transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286425,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.288264,-0.003459,0.003000,0.249982,0,0);-ms-transform:matrix(0.288264,-0.003459,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288264,-0.003459,0.003000,0.249982,0,0);}
.m56_c00171{transform:matrix(0.291334,-0.007283,0.006248,0.249922,0,0);-ms-transform:matrix(0.291334,-0.007283,0.006248,0.249922,0,0);-webkit-transform:matrix(0.291334,-0.007283,0.006248,0.249922,0,0);}
.m52_c00171{transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);-ms-transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);-webkit-transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);}
.m6_c00171{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);}
.m85_c00171{transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{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);}
.m45_c00171{transform:matrix(0.309975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{transform:matrix(0.317485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317485,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.318354,-0.005094,0.003999,0.249968,0,0);-ms-transform:matrix(0.318354,-0.005094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.318354,-0.005094,0.003999,0.249968,0,0);}
.mac_c00171{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{transform:matrix(0.320950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320950,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.322184,-0.005155,0.003999,0.249968,0,0);-ms-transform:matrix(0.322184,-0.005155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.322184,-0.005155,0.003999,0.249968,0,0);}
.m12_c00171{transform:matrix(0.322390,-0.007415,0.005748,0.249934,0,0);-ms-transform:matrix(0.322390,-0.007415,0.005748,0.249934,0,0);-webkit-transform:matrix(0.322390,-0.007415,0.005748,0.249934,0,0);}
.mc2_c00171{transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.343765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343765,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.343996,-0.005504,0.003999,0.249968,0,0);-ms-transform:matrix(0.343996,-0.005504,0.003999,0.249968,0,0);-webkit-transform:matrix(0.343996,-0.005504,0.003999,0.249968,0,0);}
.m84_c00171{transform:matrix(0.345811,-0.005533,0.003999,0.249968,0,0);-ms-transform:matrix(0.345811,-0.005533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.345811,-0.005533,0.003999,0.249968,0,0);}
.m7a_c00171{transform:matrix(0.349235,-0.005588,0.003999,0.249968,0,0);-ms-transform:matrix(0.349235,-0.005588,0.003999,0.249968,0,0);-webkit-transform:matrix(0.349235,-0.005588,0.003999,0.249968,0,0);}
.mb4_c00171{transform:matrix(0.355230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355230,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);}
.m92_c00171{transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);}
.m6b_c00171{transform:matrix(0.366470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366470,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.371717,-0.005947,0.003999,0.249968,0,0);-ms-transform:matrix(0.371717,-0.005947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.371717,-0.005947,0.003999,0.249968,0,0);}
.mb7_c00171{transform:matrix(0.372030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372030,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.376480,-0.008659,0.005748,0.249934,0,0);-ms-transform:matrix(0.376480,-0.008659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.376480,-0.008659,0.005748,0.249934,0,0);}
.m7e_c00171{transform:matrix(0.383016,-0.006128,0.003999,0.249968,0,0);-ms-transform:matrix(0.383016,-0.006128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.383016,-0.006128,0.003999,0.249968,0,0);}
.m66_c00171{transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.428817,-0.009863,0.005748,0.249934,0,0);-ms-transform:matrix(0.428817,-0.009863,0.005748,0.249934,0,0);-webkit-transform:matrix(0.428817,-0.009863,0.005748,0.249934,0,0);}
.mb0_c00171{transform:matrix(0.453260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453260,0.000000,0.000000,0.250000,0,0);}
.m40_c00171{transform:matrix(0.460900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460900,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{transform:matrix(0.470270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470270,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.485113,-0.007762,0.003999,0.249968,0,0);-ms-transform:matrix(0.485113,-0.007762,0.003999,0.249968,0,0);-webkit-transform:matrix(0.485113,-0.007762,0.003999,0.249968,0,0);}
.m77_c00171{transform:matrix(0.492807,-0.007885,0.003999,0.249968,0,0);-ms-transform:matrix(0.492807,-0.007885,0.003999,0.249968,0,0);-webkit-transform:matrix(0.492807,-0.007885,0.003999,0.249968,0,0);}
.mbe_c00171{transform:matrix(0.542580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542580,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.574484,-0.006894,0.003000,0.249982,0,0);-ms-transform:matrix(0.574484,-0.006894,0.003000,0.249982,0,0);-webkit-transform:matrix(0.574484,-0.006894,0.003000,0.249982,0,0);}
.m81_c00171{transform:matrix(0.582145,-0.009314,0.003999,0.249968,0,0);-ms-transform:matrix(0.582145,-0.009314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.582145,-0.009314,0.003999,0.249968,0,0);}
.m1a_c00171{transform:matrix(0.603493,-0.009656,0.003999,0.249968,0,0);-ms-transform:matrix(0.603493,-0.009656,0.003999,0.249968,0,0);-webkit-transform:matrix(0.603493,-0.009656,0.003999,0.249968,0,0);}
.mbf_c00171{transform:matrix(0.655745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655745,0.000000,0.000000,0.250000,0,0);}
.mb3_c00171{transform:matrix(0.659930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659930,0.000000,0.000000,0.250000,0,0);}
.maf_c00171{transform:matrix(0.695400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695400,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.711764,-0.008541,0.003000,0.249982,0,0);-ms-transform:matrix(0.711764,-0.008541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.711764,-0.008541,0.003000,0.249982,0,0);}
.m0_c00171{transform:matrix(0.743070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743070,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.796860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796860,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.890056,-0.010681,0.003000,0.249982,0,0);-ms-transform:matrix(0.890056,-0.010681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.890056,-0.010681,0.003000,0.249982,0,0);}
.mbd_c00171{transform:matrix(0.924795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.924795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.924795,0.000000,0.000000,0.250000,0,0);}
.mb2_c00171{transform:matrix(0.934355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.934355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.934355,0.000000,0.000000,0.250000,0,0);}
.m43_c00171{transform:matrix(1.111445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.111445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.111445,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(2.028135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.028135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.028135,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(2.143125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.143125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.143125,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(2.577790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.577790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.577790,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;}
.fsa_c00171{font-size:25.200000px;}
.fs17_c00171{font-size:36.754704px;}
.fs1c_c00171{font-size:48.300000px;}
.fs19_c00171{font-size:50.400000px;}
.fs18_c00171{font-size:52.500000px;}
.fs16_c00171{font-size:52.506720px;}
.fs0_c00171{font-size:53.550000px;}
.fsd_c00171{font-size:60.904385px;}
.fsc_c00171{font-size:61.954460px;}
.fs13_c00171{font-size:69.300000px;}
.fs8_c00171{font-size:69.308870px;}
.fsf_c00171{font-size:69.321653px;}
.fs9_c00171{font-size:70.355065px;}
.fs1b_c00171{font-size:71.400000px;}
.fs6_c00171{font-size:71.404320px;}
.fs7_c00171{font-size:72.459273px;}
.fs5_c00171{font-size:72.460468px;}
.fs11_c00171{font-size:72.472637px;}
.fs1_c00171{font-size:73.500000px;}
.fs4_c00171{font-size:73.509407px;}
.fs3_c00171{font-size:73.519438px;}
.fs14_c00171{font-size:74.550000px;}
.fs15_c00171{font-size:74.559542px;}
.fs2_c00171{font-size:74.569716px;}
.fs1a_c00171{font-size:78.750000px;}
.fs12_c00171{font-size:92.400000px;}
.fse_c00171{font-size:107.109050px;}
.fs10_c00171{font-size:107.133464px;}
.fsb_c00171{font-size:123.900000px;}
.y0_c00171{bottom:0.000000px;}
.y74_c00171{bottom:89.302500px;}
.y75_c00171{bottom:90.496500px;}
.y76_c00171{bottom:91.746000px;}
.y77_c00171{bottom:92.880000px;}
.y73_c00171{bottom:104.787000px;}
.y72_c00171{bottom:150.331500px;}
.y71_c00171{bottom:168.460500px;}
.y78_c00171{bottom:191.664000px;}
.y70_c00171{bottom:225.052500px;}
.y67_c00171{bottom:243.251544px;}
.y68_c00171{bottom:243.786888px;}
.y69_c00171{bottom:244.266768px;}
.y6a_c00171{bottom:244.728120px;}
.y6b_c00171{bottom:245.535792px;}
.y6c_c00171{bottom:245.661816px;}
.y6d_c00171{bottom:246.001872px;}
.y6e_c00171{bottom:248.499768px;}
.y6f_c00171{bottom:249.056712px;}
.y5c_c00171{bottom:261.359796px;}
.y5d_c00171{bottom:261.508944px;}
.y5e_c00171{bottom:261.921036px;}
.y5f_c00171{bottom:262.279788px;}
.y61_c00171{bottom:262.562088px;}
.y60_c00171{bottom:262.578840px;}
.y62_c00171{bottom:262.805520px;}
.y63_c00171{bottom:263.849184px;}
.y64_c00171{bottom:264.337248px;}
.y65_c00171{bottom:265.310328px;}
.y66_c00171{bottom:265.883172px;}
.y57_c00171{bottom:277.294500px;}
.y58_c00171{bottom:277.651980px;}
.y59_c00171{bottom:278.688780px;}
.y5a_c00171{bottom:279.345060px;}
.y5b_c00171{bottom:280.524924px;}
.y56_c00171{bottom:300.129000px;}
.y55_c00171{bottom:323.598000px;}
.y54_c00171{bottom:345.187500px;}
.y53_c00171{bottom:368.508000px;}
.y51_c00171{bottom:389.053575px;}
.y50_c00171{bottom:389.053688px;}
.y52_c00171{bottom:389.053837px;}
.y4d_c00171{bottom:409.315538px;}
.y4e_c00171{bottom:409.778887px;}
.y4f_c00171{bottom:413.147475px;}
.y4b_c00171{bottom:432.819000px;}
.y4c_c00171{bottom:437.132587px;}
.y49_c00171{bottom:455.491500px;}
.y4a_c00171{bottom:456.205375px;}
.y47_c00171{bottom:478.790076px;}
.y48_c00171{bottom:478.790226px;}
.y46_c00171{bottom:478.790532px;}
.y45_c00171{bottom:478.791186px;}
.y44_c00171{bottom:478.791222px;}
.y43_c00171{bottom:478.791918px;}
.y40_c00171{bottom:499.501500px;}
.y41_c00171{bottom:500.856198px;}
.y42_c00171{bottom:501.295038px;}
.y3c_c00171{bottom:538.375500px;}
.y3d_c00171{bottom:539.263500px;}
.y3e_c00171{bottom:541.218000px;}
.y3f_c00171{bottom:541.815000px;}
.y3b_c00171{bottom:570.780000px;}
.y34_c00171{bottom:630.991500px;}
.y35_c00171{bottom:631.846716px;}
.y36_c00171{bottom:632.053356px;}
.y37_c00171{bottom:632.438970px;}
.y38_c00171{bottom:632.941206px;}
.y39_c00171{bottom:633.217524px;}
.y3a_c00171{bottom:634.636032px;}
.y2b_c00171{bottom:652.863000px;}
.y2c_c00171{bottom:653.312424px;}
.y2d_c00171{bottom:654.137496px;}
.y2e_c00171{bottom:655.367352px;}
.y2f_c00171{bottom:655.587792px;}
.y30_c00171{bottom:656.150640px;}
.y31_c00171{bottom:656.609472px;}
.y32_c00171{bottom:657.196440px;}
.y33_c00171{bottom:657.944040px;}
.y21_c00171{bottom:676.354500px;}
.y22_c00171{bottom:677.119932px;}
.y23_c00171{bottom:677.515740px;}
.y24_c00171{bottom:678.121836px;}
.y25_c00171{bottom:679.019460px;}
.y26_c00171{bottom:679.736292px;}
.y27_c00171{bottom:680.100228px;}
.y28_c00171{bottom:680.613540px;}
.y29_c00171{bottom:681.166644px;}
.y2a_c00171{bottom:681.625116px;}
.y1a_c00171{bottom:699.841500px;}
.y1b_c00171{bottom:700.094132px;}
.y1c_c00171{bottom:700.910766px;}
.y1d_c00171{bottom:701.308201px;}
.y1e_c00171{bottom:701.650312px;}
.y1f_c00171{bottom:701.929014px;}
.y20_c00171{bottom:702.615728px;}
.y16_c00171{bottom:720.636000px;}
.y17_c00171{bottom:722.948161px;}
.y18_c00171{bottom:723.619602px;}
.y19_c00171{bottom:724.426932px;}
.yf_c00171{bottom:744.666000px;}
.y10_c00171{bottom:745.426944px;}
.y11_c00171{bottom:746.431536px;}
.y12_c00171{bottom:747.046872px;}
.y13_c00171{bottom:747.566520px;}
.y14_c00171{bottom:748.422264px;}
.y15_c00171{bottom:749.311896px;}
.y9_c00171{bottom:769.136715px;}
.ya_c00171{bottom:769.473801px;}
.yb_c00171{bottom:769.959777px;}
.yc_c00171{bottom:770.267427px;}
.yd_c00171{bottom:770.959819px;}
.ye_c00171{bottom:774.082695px;}
.y3_c00171{bottom:792.460500px;}
.y4_c00171{bottom:795.233368px;}
.y5_c00171{bottom:796.237249px;}
.y6_c00171{bottom:797.038408px;}
.y7_c00171{bottom:797.755353px;}
.y8_c00171{bottom:798.576004px;}
.y2_c00171{bottom:816.544500px;}
.y1_c00171{bottom:926.215500px;}
.hc_c00171{height:25.200000px;}
.h19_c00171{height:36.754704px;}
.h1e_c00171{height:48.300000px;}
.h1b_c00171{height:50.400000px;}
.h1a_c00171{height:52.500000px;}
.h18_c00171{height:52.506720px;}
.h2_c00171{height:53.550000px;}
.hf_c00171{height:60.904385px;}
.he_c00171{height:61.954460px;}
.h15_c00171{height:69.300000px;}
.ha_c00171{height:69.308870px;}
.h11_c00171{height:69.321653px;}
.hb_c00171{height:70.355065px;}
.h1d_c00171{height:71.400000px;}
.h8_c00171{height:71.404320px;}
.h9_c00171{height:72.459273px;}
.h7_c00171{height:72.460468px;}
.h13_c00171{height:72.472637px;}
.h3_c00171{height:73.500000px;}
.h6_c00171{height:73.509407px;}
.h5_c00171{height:73.519438px;}
.h16_c00171{height:74.550000px;}
.h17_c00171{height:74.559542px;}
.h4_c00171{height:74.569716px;}
.h1c_c00171{height:78.750000px;}
.h14_c00171{height:92.400000px;}
.h10_c00171{height:107.109050px;}
.h12_c00171{height:107.133464px;}
.hd_c00171{height:123.900000px;}
.h0_c00171{height:1008.450000px;}
.h1_c00171{height:1008.750000px;}
.w0_c00171{width:678.450000px;}
.w1_c00171{width:678.750000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:76.680000px;}
.x2_c00171{left:140.940000px;}
.x64_c00171{left:142.560000px;}
.x73_c00171{left:144.990000px;}
.x80_c00171{left:150.660000px;}
.x81_c00171{left:157.950000px;}
.x38_c00171{left:162.231000px;}
.x3a_c00171{left:166.729500px;}
.x65_c00171{left:167.940000px;}
.x14_c00171{left:172.914000px;}
.x1d_c00171{left:175.639500px;}
.x31_c00171{left:177.828000px;}
.x1e_c00171{left:198.606000px;}
.x2a_c00171{left:201.915000px;}
.x74_c00171{left:204.120000px;}
.x82_c00171{left:206.280000px;}
.x66_c00171{left:214.650000px;}
.x36_c00171{left:216.270000px;}
.x15_c00171{left:220.473000px;}
.x75_c00171{left:221.670000px;}
.x3c_c00171{left:222.754554px;}
.x39_c00171{left:225.663000px;}
.x67_c00171{left:233.280000px;}
.x63_c00171{left:243.810000px;}
.x23_c00171{left:244.822500px;}
.x76_c00171{left:247.860000px;}
.x32_c00171{left:249.096000px;}
.x46_c00171{left:251.640000px;}
.x2b_c00171{left:253.482000px;}
.x3_c00171{left:257.310000px;}
.x53_c00171{left:258.487608px;}
.x47_c00171{left:260.550000px;}
.x3d_c00171{left:263.257386px;}
.x33_c00171{left:266.316000px;}
.x5c_c00171{left:268.795404px;}
.x54_c00171{left:270.903900px;}
.x1f_c00171{left:272.845500px;}
.x3b_c00171{left:279.621000px;}
.x16_c00171{left:283.260000px;}
.x48_c00171{left:285.390000px;}
.x68_c00171{left:291.330000px;}
.x77_c00171{left:292.410000px;}
.xf_c00171{left:293.877624px;}
.x34_c00171{left:298.450500px;}
.x4d_c00171{left:299.970000px;}
.x6_c00171{left:301.050000px;}
.x4_c00171{left:303.210000px;}
.x55_c00171{left:305.193084px;}
.x1b_c00171{left:308.055000px;}
.x9_c00171{left:316.648500px;}
.x49_c00171{left:319.140000px;}
.x17_c00171{left:321.718500px;}
.x3e_c00171{left:326.712030px;}
.x2c_c00171{left:330.348000px;}
.x5d_c00171{left:332.246904px;}
.x56_c00171{left:335.117004px;}
.x24_c00171{left:338.805000px;}
.x20_c00171{left:340.077000px;}
.x2d_c00171{left:344.125500px;}
.x7_c00171{left:347.490000px;}
.x10_c00171{left:348.781732px;}
.x4e_c00171{left:352.080000px;}
.x4a_c00171{left:353.160000px;}
.x18_c00171{left:354.196500px;}
.x58_c00171{left:358.668516px;}
.x57_c00171{left:360.090612px;}
.x35_c00171{left:363.330000px;}
.x21_c00171{left:365.413500px;}
.x11_c00171{left:369.335528px;}
.x69_c00171{left:376.920000px;}
.x83_c00171{left:378.000000px;}
.x2e_c00171{left:379.303500px;}
.x25_c00171{left:383.607000px;}
.x37_c00171{left:385.830000px;}
.x40_c00171{left:392.661000px;}
.x1c_c00171{left:395.041500px;}
.x4c_c00171{left:400.140000px;}
.x4b_c00171{left:403.920000px;}
.x26_c00171{left:406.353000px;}
.x19_c00171{left:407.680500px;}
.x5e_c00171{left:411.560904px;}
.x12_c00171{left:415.491514px;}
.x5f_c00171{left:419.437404px;}
.x22_c00171{left:427.842000px;}
.xa_c00171{left:437.208000px;}
.x27_c00171{left:438.435000px;}
.x60_c00171{left:440.690904px;}
.x2f_c00171{left:444.666000px;}
.x6a_c00171{left:449.010000px;}
.x5_c00171{left:452.250000px;}
.x43_c00171{left:454.160362px;}
.x78_c00171{left:457.920000px;}
.x3f_c00171{left:459.830700px;}
.x4f_c00171{left:461.665500px;}
.x1a_c00171{left:463.282500px;}
.x59_c00171{left:465.931380px;}
.x6b_c00171{left:468.720000px;}
.x44_c00171{left:470.906325px;}
.x28_c00171{left:473.004000px;}
.x7d_c00171{left:478.428000px;}
.xb_c00171{left:480.855000px;}
.x30_c00171{left:491.391000px;}
.x6c_c00171{left:495.180000px;}
.x79_c00171{left:497.610000px;}
.x29_c00171{left:501.658500px;}
.x5a_c00171{left:506.562972px;}
.xc_c00171{left:515.688000px;}
.x50_c00171{left:526.465500px;}
.x45_c00171{left:533.836125px;}
.x84_c00171{left:535.410000px;}
.x7b_c00171{left:540.270000px;}
.x6d_c00171{left:543.510000px;}
.x7e_c00171{left:544.780500px;}
.xd_c00171{left:546.859500px;}
.x7c_c00171{left:551.340000px;}
.x6e_c00171{left:554.310000px;}
.x41_c00171{left:565.204500px;}
.x51_c00171{left:567.483000px;}
.xe_c00171{left:582.540000px;}
.x85_c00171{left:585.090000px;}
.x5b_c00171{left:587.635656px;}
.x6f_c00171{left:594.540000px;}
.x61_c00171{left:596.809404px;}
.x7a_c00171{left:604.800000px;}
.x70_c00171{left:614.250000px;}
.x13_c00171{left:623.698309px;}
.x71_c00171{left:625.050000px;}
.x42_c00171{left:627.518175px;}
.x62_c00171{left:631.618404px;}
.x8_c00171{left:635.040000px;}
.x52_c00171{left:641.224500px;}
.x72_c00171{left:650.430000px;}
.x7f_c00171{left:677.197500px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
.fsa_c00171{font-size:22.400000pt;}
.fs17_c00171{font-size:32.670848pt;}
.fs1c_c00171{font-size:42.933333pt;}
.fs19_c00171{font-size:44.800000pt;}
.fs18_c00171{font-size:46.666667pt;}
.fs16_c00171{font-size:46.672640pt;}
.fs0_c00171{font-size:47.600000pt;}
.fsd_c00171{font-size:54.137231pt;}
.fsc_c00171{font-size:55.070631pt;}
.fs13_c00171{font-size:61.600000pt;}
.fs8_c00171{font-size:61.607884pt;}
.fsf_c00171{font-size:61.619247pt;}
.fs9_c00171{font-size:62.537836pt;}
.fs1b_c00171{font-size:63.466667pt;}
.fs6_c00171{font-size:63.470506pt;}
.fs7_c00171{font-size:64.408243pt;}
.fs5_c00171{font-size:64.409305pt;}
.fs11_c00171{font-size:64.420122pt;}
.fs1_c00171{font-size:65.333333pt;}
.fs4_c00171{font-size:65.341695pt;}
.fs3_c00171{font-size:65.350612pt;}
.fs14_c00171{font-size:66.266667pt;}
.fs15_c00171{font-size:66.275148pt;}
.fs2_c00171{font-size:66.284192pt;}
.fs1a_c00171{font-size:70.000000pt;}
.fs12_c00171{font-size:82.133333pt;}
.fse_c00171{font-size:95.208044pt;}
.fs10_c00171{font-size:95.229745pt;}
.fsb_c00171{font-size:110.133333pt;}
.y0_c00171{bottom:0.000000pt;}
.y74_c00171{bottom:79.380000pt;}
.y75_c00171{bottom:80.441333pt;}
.y76_c00171{bottom:81.552000pt;}
.y77_c00171{bottom:82.560000pt;}
.y73_c00171{bottom:93.144000pt;}
.y72_c00171{bottom:133.628000pt;}
.y71_c00171{bottom:149.742667pt;}
.y78_c00171{bottom:170.368000pt;}
.y70_c00171{bottom:200.046667pt;}
.y67_c00171{bottom:216.223595pt;}
.y68_c00171{bottom:216.699456pt;}
.y69_c00171{bottom:217.126016pt;}
.y6a_c00171{bottom:217.536107pt;}
.y6b_c00171{bottom:218.254037pt;}
.y6c_c00171{bottom:218.366059pt;}
.y6d_c00171{bottom:218.668331pt;}
.y6e_c00171{bottom:220.888683pt;}
.y6f_c00171{bottom:221.383744pt;}
.y5c_c00171{bottom:232.319819pt;}
.y5d_c00171{bottom:232.452395pt;}
.y5e_c00171{bottom:232.818699pt;}
.y5f_c00171{bottom:233.137589pt;}
.y61_c00171{bottom:233.388523pt;}
.y60_c00171{bottom:233.403413pt;}
.y62_c00171{bottom:233.604907pt;}
.y63_c00171{bottom:234.532608pt;}
.y64_c00171{bottom:234.966443pt;}
.y65_c00171{bottom:235.831403pt;}
.y66_c00171{bottom:236.340597pt;}
.y57_c00171{bottom:246.484000pt;}
.y58_c00171{bottom:246.801760pt;}
.y59_c00171{bottom:247.723360pt;}
.y5a_c00171{bottom:248.306720pt;}
.y5b_c00171{bottom:249.355488pt;}
.y56_c00171{bottom:266.781333pt;}
.y55_c00171{bottom:287.642667pt;}
.y54_c00171{bottom:306.833333pt;}
.y53_c00171{bottom:327.562667pt;}
.y51_c00171{bottom:345.825400pt;}
.y50_c00171{bottom:345.825500pt;}
.y52_c00171{bottom:345.825633pt;}
.y4d_c00171{bottom:363.836033pt;}
.y4e_c00171{bottom:364.247900pt;}
.y4f_c00171{bottom:367.242200pt;}
.y4b_c00171{bottom:384.728000pt;}
.y4c_c00171{bottom:388.562300pt;}
.y49_c00171{bottom:404.881333pt;}
.y4a_c00171{bottom:405.515889pt;}
.y47_c00171{bottom:425.591179pt;}
.y48_c00171{bottom:425.591312pt;}
.y46_c00171{bottom:425.591584pt;}
.y45_c00171{bottom:425.592165pt;}
.y44_c00171{bottom:425.592197pt;}
.y43_c00171{bottom:425.592816pt;}
.y40_c00171{bottom:444.001333pt;}
.y41_c00171{bottom:445.205509pt;}
.y42_c00171{bottom:445.595589pt;}
.y3c_c00171{bottom:478.556000pt;}
.y3d_c00171{bottom:479.345333pt;}
.y3e_c00171{bottom:481.082667pt;}
.y3f_c00171{bottom:481.613333pt;}
.y3b_c00171{bottom:507.360000pt;}
.y34_c00171{bottom:560.881333pt;}
.y35_c00171{bottom:561.641525pt;}
.y36_c00171{bottom:561.825205pt;}
.y37_c00171{bottom:562.167973pt;}
.y38_c00171{bottom:562.614405pt;}
.y39_c00171{bottom:562.860021pt;}
.y3a_c00171{bottom:564.120917pt;}
.y2b_c00171{bottom:580.322667pt;}
.y2c_c00171{bottom:580.722155pt;}
.y2d_c00171{bottom:581.455552pt;}
.y2e_c00171{bottom:582.548757pt;}
.y2f_c00171{bottom:582.744704pt;}
.y30_c00171{bottom:583.245013pt;}
.y31_c00171{bottom:583.652864pt;}
.y32_c00171{bottom:584.174613pt;}
.y33_c00171{bottom:584.839147pt;}
.y21_c00171{bottom:601.204000pt;}
.y22_c00171{bottom:601.884384pt;}
.y23_c00171{bottom:602.236213pt;}
.y24_c00171{bottom:602.774965pt;}
.y25_c00171{bottom:603.572853pt;}
.y26_c00171{bottom:604.210037pt;}
.y27_c00171{bottom:604.533536pt;}
.y28_c00171{bottom:604.989813pt;}
.y29_c00171{bottom:605.481461pt;}
.y2a_c00171{bottom:605.888992pt;}
.y1a_c00171{bottom:622.081333pt;}
.y1b_c00171{bottom:622.305895pt;}
.y1c_c00171{bottom:623.031792pt;}
.y1d_c00171{bottom:623.385068pt;}
.y1e_c00171{bottom:623.689167pt;}
.y1f_c00171{bottom:623.936901pt;}
.y20_c00171{bottom:624.547313pt;}
.y16_c00171{bottom:640.565333pt;}
.y17_c00171{bottom:642.620588pt;}
.y18_c00171{bottom:643.217424pt;}
.y19_c00171{bottom:643.935051pt;}
.yf_c00171{bottom:661.925333pt;}
.y10_c00171{bottom:662.601728pt;}
.y11_c00171{bottom:663.494699pt;}
.y12_c00171{bottom:664.041664pt;}
.y13_c00171{bottom:664.503573pt;}
.y14_c00171{bottom:665.264235pt;}
.y15_c00171{bottom:666.055019pt;}
.y9_c00171{bottom:683.677080pt;}
.ya_c00171{bottom:683.976712pt;}
.yb_c00171{bottom:684.408691pt;}
.yc_c00171{bottom:684.682157pt;}
.yd_c00171{bottom:685.297617pt;}
.ye_c00171{bottom:688.073507pt;}
.y3_c00171{bottom:704.409333pt;}
.y4_c00171{bottom:706.874105pt;}
.y5_c00171{bottom:707.766444pt;}
.y6_c00171{bottom:708.478585pt;}
.y7_c00171{bottom:709.115869pt;}
.y8_c00171{bottom:709.845337pt;}
.y2_c00171{bottom:725.817333pt;}
.y1_c00171{bottom:823.302667pt;}
.hc_c00171{height:22.400000pt;}
.h19_c00171{height:32.670848pt;}
.h1e_c00171{height:42.933333pt;}
.h1b_c00171{height:44.800000pt;}
.h1a_c00171{height:46.666667pt;}
.h18_c00171{height:46.672640pt;}
.h2_c00171{height:47.600000pt;}
.hf_c00171{height:54.137231pt;}
.he_c00171{height:55.070631pt;}
.h15_c00171{height:61.600000pt;}
.ha_c00171{height:61.607884pt;}
.h11_c00171{height:61.619247pt;}
.hb_c00171{height:62.537836pt;}
.h1d_c00171{height:63.466667pt;}
.h8_c00171{height:63.470506pt;}
.h9_c00171{height:64.408243pt;}
.h7_c00171{height:64.409305pt;}
.h13_c00171{height:64.420122pt;}
.h3_c00171{height:65.333333pt;}
.h6_c00171{height:65.341695pt;}
.h5_c00171{height:65.350612pt;}
.h16_c00171{height:66.266667pt;}
.h17_c00171{height:66.275148pt;}
.h4_c00171{height:66.284192pt;}
.h1c_c00171{height:70.000000pt;}
.h14_c00171{height:82.133333pt;}
.h10_c00171{height:95.208044pt;}
.h12_c00171{height:95.229745pt;}
.hd_c00171{height:110.133333pt;}
.h0_c00171{height:896.400000pt;}
.h1_c00171{height:896.666667pt;}
.w0_c00171{width:603.066667pt;}
.w1_c00171{width:603.333333pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:68.160000pt;}
.x2_c00171{left:125.280000pt;}
.x64_c00171{left:126.720000pt;}
.x73_c00171{left:128.880000pt;}
.x80_c00171{left:133.920000pt;}
.x81_c00171{left:140.400000pt;}
.x38_c00171{left:144.205333pt;}
.x3a_c00171{left:148.204000pt;}
.x65_c00171{left:149.280000pt;}
.x14_c00171{left:153.701333pt;}
.x1d_c00171{left:156.124000pt;}
.x31_c00171{left:158.069333pt;}
.x1e_c00171{left:176.538667pt;}
.x2a_c00171{left:179.480000pt;}
.x74_c00171{left:181.440000pt;}
.x82_c00171{left:183.360000pt;}
.x66_c00171{left:190.800000pt;}
.x36_c00171{left:192.240000pt;}
.x15_c00171{left:195.976000pt;}
.x75_c00171{left:197.040000pt;}
.x3c_c00171{left:198.004048pt;}
.x39_c00171{left:200.589333pt;}
.x67_c00171{left:207.360000pt;}
.x63_c00171{left:216.720000pt;}
.x23_c00171{left:217.620000pt;}
.x76_c00171{left:220.320000pt;}
.x32_c00171{left:221.418667pt;}
.x46_c00171{left:223.680000pt;}
.x2b_c00171{left:225.317333pt;}
.x3_c00171{left:228.720000pt;}
.x53_c00171{left:229.766763pt;}
.x47_c00171{left:231.600000pt;}
.x3d_c00171{left:234.006565pt;}
.x33_c00171{left:236.725333pt;}
.x5c_c00171{left:238.929248pt;}
.x54_c00171{left:240.803467pt;}
.x1f_c00171{left:242.529333pt;}
.x3b_c00171{left:248.552000pt;}
.x16_c00171{left:251.786667pt;}
.x48_c00171{left:253.680000pt;}
.x68_c00171{left:258.960000pt;}
.x77_c00171{left:259.920000pt;}
.xf_c00171{left:261.224555pt;}
.x34_c00171{left:265.289333pt;}
.x4d_c00171{left:266.640000pt;}
.x6_c00171{left:267.600000pt;}
.x4_c00171{left:269.520000pt;}
.x55_c00171{left:271.282741pt;}
.x1b_c00171{left:273.826667pt;}
.x9_c00171{left:281.465333pt;}
.x49_c00171{left:283.680000pt;}
.x17_c00171{left:285.972000pt;}
.x3e_c00171{left:290.410693pt;}
.x2c_c00171{left:293.642667pt;}
.x5d_c00171{left:295.330581pt;}
.x56_c00171{left:297.881781pt;}
.x24_c00171{left:301.160000pt;}
.x20_c00171{left:302.290667pt;}
.x2d_c00171{left:305.889333pt;}
.x7_c00171{left:308.880000pt;}
.x10_c00171{left:310.028207pt;}
.x4e_c00171{left:312.960000pt;}
.x4a_c00171{left:313.920000pt;}
.x18_c00171{left:314.841333pt;}
.x58_c00171{left:318.816459pt;}
.x57_c00171{left:320.080544pt;}
.x35_c00171{left:322.960000pt;}
.x21_c00171{left:324.812000pt;}
.x11_c00171{left:328.298247pt;}
.x69_c00171{left:335.040000pt;}
.x83_c00171{left:336.000000pt;}
.x2e_c00171{left:337.158667pt;}
.x25_c00171{left:340.984000pt;}
.x37_c00171{left:342.960000pt;}
.x40_c00171{left:349.032000pt;}
.x1c_c00171{left:351.148000pt;}
.x4c_c00171{left:355.680000pt;}
.x4b_c00171{left:359.040000pt;}
.x26_c00171{left:361.202667pt;}
.x19_c00171{left:362.382667pt;}
.x5e_c00171{left:365.831915pt;}
.x12_c00171{left:369.325791pt;}
.x5f_c00171{left:372.833248pt;}
.x22_c00171{left:380.304000pt;}
.xa_c00171{left:388.629333pt;}
.x27_c00171{left:389.720000pt;}
.x60_c00171{left:391.725248pt;}
.x2f_c00171{left:395.258667pt;}
.x6a_c00171{left:399.120000pt;}
.x5_c00171{left:402.000000pt;}
.x43_c00171{left:403.698100pt;}
.x78_c00171{left:407.040000pt;}
.x3f_c00171{left:408.738400pt;}
.x4f_c00171{left:410.369333pt;}
.x1a_c00171{left:411.806667pt;}
.x59_c00171{left:414.161227pt;}
.x6b_c00171{left:416.640000pt;}
.x44_c00171{left:418.583400pt;}
.x28_c00171{left:420.448000pt;}
.x7d_c00171{left:425.269333pt;}
.xb_c00171{left:427.426667pt;}
.x30_c00171{left:436.792000pt;}
.x6c_c00171{left:440.160000pt;}
.x79_c00171{left:442.320000pt;}
.x29_c00171{left:445.918667pt;}
.x5a_c00171{left:450.278197pt;}
.xc_c00171{left:458.389333pt;}
.x50_c00171{left:467.969333pt;}
.x45_c00171{left:474.521000pt;}
.x84_c00171{left:475.920000pt;}
.x7b_c00171{left:480.240000pt;}
.x6d_c00171{left:483.120000pt;}
.x7e_c00171{left:484.249333pt;}
.xd_c00171{left:486.097333pt;}
.x7c_c00171{left:490.080000pt;}
.x6e_c00171{left:492.720000pt;}
.x41_c00171{left:502.404000pt;}
.x51_c00171{left:504.429333pt;}
.xe_c00171{left:517.813333pt;}
.x85_c00171{left:520.080000pt;}
.x5b_c00171{left:522.342805pt;}
.x6f_c00171{left:528.480000pt;}
.x61_c00171{left:530.497248pt;}
.x7a_c00171{left:537.600000pt;}
.x70_c00171{left:546.000000pt;}
.x13_c00171{left:554.398497pt;}
.x71_c00171{left:555.600000pt;}
.x42_c00171{left:557.793933pt;}
.x62_c00171{left:561.438581pt;}
.x8_c00171{left:564.480000pt;}
.x52_c00171{left:569.977333pt;}
.x72_c00171{left:578.160000pt;}
.x7f_c00171{left:601.953333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m40_c00172{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mb6_c00172{transform:matrix(0.018479,0.000148,-0.002000,0.249992,0,0);-ms-transform:matrix(0.018479,0.000148,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.018479,0.000148,-0.002000,0.249992,0,0);}
.m7f_c00172{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);}
.m90_c00172{transform:matrix(0.031505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031505,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.105010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105010,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{transform:matrix(0.122210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122210,0.000000,0.000000,0.250000,0,0);}
.m83_c00172{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_c00172{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);}
.me_c00172{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);}
.m30_c00172{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);}
.m74_c00172{transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146120,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.150970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150970,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{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);}
.m75_c00172{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);}
.ma0_c00172{transform:matrix(0.154857,0.002942,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154857,0.002942,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154857,0.002942,-0.004749,0.249955,0,0);}
.m37_c00172{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);}
.m62_c00172{transform:matrix(0.159648,0.003193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159648,0.003193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159648,0.003193,-0.004999,0.249950,0,0);}
.mb9_c00172{transform:matrix(0.161635,0.001293,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161635,0.001293,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161635,0.001293,-0.002000,0.249992,0,0);}
.m61_c00172{transform:matrix(0.162253,0.003245,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162253,0.003245,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162253,0.003245,-0.004999,0.249950,0,0);}
.m8a_c00172{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);}
.m9d_c00172{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);}
.m9f_c00172{transform:matrix(0.167960,0.003191,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167960,0.003191,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167960,0.003191,-0.004749,0.249955,0,0);}
.mb_c00172{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);}
.mf_c00172{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);}
.m8b_c00172{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);}
.ma3_c00172{transform:matrix(0.169774,0.003226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169774,0.003226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169774,0.003226,-0.004749,0.249955,0,0);}
.m2c_c00172{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);}
.m11_c00172{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);}
.m72_c00172{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);}
.m5f_c00172{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);}
.m4d_c00172{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);}
.mc2_c00172{transform:matrix(0.172446,0.002587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172446,0.002587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172446,0.002587,-0.003750,0.249972,0,0);}
.m6d_c00172{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);}
.m82_c00172{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);}
.mba_c00172{transform:matrix(0.176679,0.001413,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176679,0.001413,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176679,0.001413,-0.002000,0.249992,0,0);}
.m21_c00172{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);}
.md_c00172{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);}
.mb8_c00172{transform:matrix(0.178034,0.001424,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178034,0.001424,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178034,0.001424,-0.002000,0.249992,0,0);}
.ma2_c00172{transform:matrix(0.178413,0.003390,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178413,0.003390,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178413,0.003390,-0.004749,0.249955,0,0);}
.m9a_c00172{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);}
.m33_c00172{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);}
.m8c_c00172{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);}
.ma1_c00172{transform:matrix(0.181862,0.003455,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181862,0.003455,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181862,0.003455,-0.004749,0.249955,0,0);}
.m6b_c00172{transform:matrix(0.182958,0.003659,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182958,0.003659,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182958,0.003659,-0.004999,0.249950,0,0);}
.mb1_c00172{transform:matrix(0.183324,0.001467,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183324,0.001467,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183324,0.001467,-0.002000,0.249992,0,0);}
.m3_c00172{transform:matrix(0.183861,0.001839,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183861,0.001839,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183861,0.001839,-0.002500,0.249988,0,0);}
.m7a_c00172{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);}
.m89_c00172{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);}
.m13_c00172{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);}
.mb7_c00172{transform:matrix(0.184804,0.001478,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184804,0.001478,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184804,0.001478,-0.002000,0.249992,0,0);}
.m4f_c00172{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_c00172{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);}
.m38_c00172{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);}
.mc8_c00172{transform:matrix(0.188669,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188669,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188669,0.002830,-0.003750,0.249972,0,0);}
.m84_c00172{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);}
.mc_c00172{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);}
.m79_c00172{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);}
.m5c_c00172{transform:matrix(0.189967,0.003799,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189967,0.003799,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189967,0.003799,-0.004999,0.249950,0,0);}
.m8_c00172{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);}
.m70_c00172{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);}
.m96_c00172{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);}
.m51_c00172{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);}
.m15_c00172{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);}
.m7e_c00172{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);}
.m6f_c00172{transform:matrix(0.193206,0.003864,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193206,0.003864,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193206,0.003864,-0.004999,0.249950,0,0);}
.m6c_c00172{transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193246,0.003865,-0.004999,0.249950,0,0);}
.mb2_c00172{transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);}
.ma6_c00172{transform:matrix(0.194779,0.001558,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194779,0.001558,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194779,0.001558,-0.002000,0.249992,0,0);}
.mc0_c00172{transform:matrix(0.194878,0.002923,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194878,0.002923,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194878,0.002923,-0.003750,0.249972,0,0);}
.m85_c00172{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);}
.m49_c00172{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);}
.m6a_c00172{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);}
.m95_c00172{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);}
.m94_c00172{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);}
.m86_c00172{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);}
.m67_c00172{transform:matrix(0.198560,0.003971,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198560,0.003971,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198560,0.003971,-0.004999,0.249950,0,0);}
.m56_c00172{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);}
.m88_c00172{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);}
.mbf_c00172{transform:matrix(0.199498,0.002992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199498,0.002992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199498,0.002992,-0.003750,0.249972,0,0);}
.m64_c00172{transform:matrix(0.199550,0.003991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199550,0.003991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199550,0.003991,-0.004999,0.249950,0,0);}
.m9b_c00172{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);}
.m1b_c00172{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);}
.mc9_c00172{transform:matrix(0.200662,0.003010,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200662,0.003010,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200662,0.003010,-0.003750,0.249972,0,0);}
.m2_c00172{transform:matrix(0.200690,0.002007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200690,0.002007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200690,0.002007,-0.002500,0.249988,0,0);}
.mc7_c00172{transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200772,0.003012,-0.003750,0.249972,0,0);}
.m63_c00172{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);}
.m97_c00172{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);}
.m9c_c00172{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_c00172{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);}
.m65_c00172{transform:matrix(0.204539,0.004091,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204539,0.004091,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204539,0.004091,-0.004999,0.249950,0,0);}
.m4e_c00172{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);}
.m5d_c00172{transform:matrix(0.206289,0.004126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206289,0.004126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206289,0.004126,-0.004999,0.249950,0,0);}
.mbd_c00172{transform:matrix(0.206558,0.001652,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206558,0.001652,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206558,0.001652,-0.002000,0.249992,0,0);}
.mbb_c00172{transform:matrix(0.206778,0.001654,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206778,0.001654,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206778,0.001654,-0.002000,0.249992,0,0);}
.m66_c00172{transform:matrix(0.209038,0.004181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209038,0.004181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209038,0.004181,-0.004999,0.249950,0,0);}
.m34_c00172{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);}
.m55_c00172{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{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);}
.m5b_c00172{transform:matrix(0.211558,0.004231,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211558,0.004231,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211558,0.004231,-0.004999,0.249950,0,0);}
.m18_c00172{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);}
.m41_c00172{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);}
.m29_c00172{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);}
.m60_c00172{transform:matrix(0.212078,0.004242,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212078,0.004242,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212078,0.004242,-0.004999,0.249950,0,0);}
.m7_c00172{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);}
.mb0_c00172{transform:matrix(0.214048,0.001712,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214048,0.001712,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214048,0.001712,-0.002000,0.249992,0,0);}
.m1c_c00172{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);}
.m57_c00172{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);}
.m4b_c00172{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);}
.m12_c00172{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);}
.m8e_c00172{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);}
.m2a_c00172{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);}
.ma9_c00172{transform:matrix(0.219563,0.001757,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219563,0.001757,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219563,0.001757,-0.002000,0.249992,0,0);}
.mac_c00172{transform:matrix(0.219778,0.001758,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219778,0.001758,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219778,0.001758,-0.002000,0.249992,0,0);}
.m50_c00172{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);}
.m6e_c00172{transform:matrix(0.220976,0.004420,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220976,0.004420,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220976,0.004420,-0.004999,0.249950,0,0);}
.m10_c00172{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);}
.m20_c00172{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);}
.m7b_c00172{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);}
.m36_c00172{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);}
.m69_c00172{transform:matrix(0.226345,0.004527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226345,0.004527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226345,0.004527,-0.004999,0.249950,0,0);}
.m1a_c00172{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);}
.m91_c00172{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);}
.m28_c00172{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{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);}
.m7c_c00172{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);}
.m31_c00172{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);}
.m68_c00172{transform:matrix(0.232464,0.004649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232464,0.004649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232464,0.004649,-0.004999,0.249950,0,0);}
.m4c_c00172{transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{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);}
.m3d_c00172{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{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);}
.mbc_c00172{transform:matrix(0.238667,0.001909,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238667,0.001909,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238667,0.001909,-0.002000,0.249992,0,0);}
.m39_c00172{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);}
.m4a_c00172{transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.240747,0.004815,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240747,0.004815,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240747,0.004815,-0.004999,0.249950,0,0);}
.mad_c00172{transform:matrix(0.240757,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240757,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240757,0.001926,-0.002000,0.249992,0,0);}
.m2e_c00172{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);}
.m24_c00172{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);}
.mc1_c00172{transform:matrix(0.243573,0.003654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243573,0.003654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243573,0.003654,-0.003750,0.249972,0,0);}
.m80_c00172{transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);}
.mb5_c00172{transform:matrix(0.247047,0.001976,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247047,0.001976,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247047,0.001976,-0.002000,0.249992,0,0);}
.m3e_c00172{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);}
.m5e_c00172{transform:matrix(0.248165,0.004963,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248165,0.004963,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248165,0.004963,-0.004999,0.249950,0,0);}
.m8d_c00172{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.mae_c00172{transform:matrix(0.255672,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255672,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255672,0.002045,-0.002000,0.249992,0,0);}
.m17_c00172{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.260007,0.002600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260007,0.002600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260007,0.002600,-0.002500,0.249988,0,0);}
.m2d_c00172{transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);}
.m3c_c00172{transform:matrix(0.262555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{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);}
.m9e_c00172{transform:matrix(0.271740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271740,0.000000,0.000000,0.250000,0,0);}
.mab_c00172{transform:matrix(0.272421,0.002179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272421,0.002179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272421,0.002179,-0.002000,0.249992,0,0);}
.ma7_c00172{transform:matrix(0.274556,0.002196,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274556,0.002196,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274556,0.002196,-0.002000,0.249992,0,0);}
.mbe_c00172{transform:matrix(0.290562,0.004358,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290562,0.004358,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290562,0.004358,-0.003750,0.249972,0,0);}
.m2f_c00172{transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00172{transform:matrix(0.294056,0.002352,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294056,0.002352,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294056,0.002352,-0.002000,0.249992,0,0);}
.m52_c00172{transform:matrix(0.301770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301770,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00172{transform:matrix(0.310215,0.004653,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310215,0.004653,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310215,0.004653,-0.003750,0.249972,0,0);}
.m43_c00172{transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311790,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316095,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.326134,0.003261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.326134,0.003261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.326134,0.003261,-0.002500,0.249988,0,0);}
.m9_c00172{transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);}
.m59_c00172{transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329875,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.333015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333015,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337470,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{transform:matrix(0.342255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342255,0.000000,0.000000,0.250000,0,0);}
.mcc_c00172{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);}
.m42_c00172{transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345945,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.352775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352775,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{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_c00172{transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356105,0.000000,0.000000,0.250000,0,0);}
.maf_c00172{transform:matrix(0.362733,0.002902,-0.002000,0.249992,0,0);-ms-transform:matrix(0.362733,0.002902,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.362733,0.002902,-0.002000,0.249992,0,0);}
.m25_c00172{transform:matrix(0.375085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375085,0.000000,0.000000,0.250000,0,0);}
.ma8_c00172{transform:matrix(0.378413,0.003027,-0.002000,0.249992,0,0);-ms-transform:matrix(0.378413,0.003027,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.378413,0.003027,-0.002000,0.249992,0,0);}
.m99_c00172{transform:matrix(0.378895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378895,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.385180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385180,0.000000,0.000000,0.250000,0,0);}
.m58_c00172{transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);}
.maa_c00172{transform:matrix(0.394517,0.003156,-0.002000,0.249992,0,0);-ms-transform:matrix(0.394517,0.003156,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.394517,0.003156,-0.002000,0.249992,0,0);}
.m45_c00172{transform:matrix(0.396335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396335,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.404875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404875,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.417490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00172{transform:matrix(0.420658,0.006310,-0.003750,0.249972,0,0);-ms-transform:matrix(0.420658,0.006310,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.420658,0.006310,-0.003750,0.249972,0,0);}
.m47_c00172{transform:matrix(0.436970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436970,0.000000,0.000000,0.250000,0,0);}
.mc3_c00172{transform:matrix(0.446760,0.006701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.446760,0.006701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.446760,0.006701,-0.003750,0.249972,0,0);}
.mcb_c00172{transform:matrix(0.452275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452275,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.452522,0.004525,-0.002500,0.249988,0,0);-ms-transform:matrix(0.452522,0.004525,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.452522,0.004525,-0.002500,0.249988,0,0);}
.mb4_c00172{transform:matrix(0.456510,0.003652,-0.002000,0.249992,0,0);-ms-transform:matrix(0.456510,0.003652,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.456510,0.003652,-0.002000,0.249992,0,0);}
.mca_c00172{transform:matrix(0.461795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461795,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);}
.m3b_c00172{transform:matrix(0.489620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489620,0.000000,0.000000,0.250000,0,0);}
.ma4_c00172{transform:matrix(0.521525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00172{transform:matrix(0.525528,0.004204,-0.002000,0.249992,0,0);-ms-transform:matrix(0.525528,0.004204,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.525528,0.004204,-0.002000,0.249992,0,0);}
.mc5_c00172{transform:matrix(0.559962,0.008399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.559962,0.008399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.559962,0.008399,-0.003750,0.249972,0,0);}
.mcd_c00172{transform:matrix(0.592420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592420,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;}
.fs0_c00172{font-size:22.050000px;}
.fs16_c00172{font-size:24.150000px;}
.fs4_c00172{font-size:39.900000px;}
.fs10_c00172{font-size:44.100000px;}
.fs18_c00172{font-size:46.201478px;}
.fs13_c00172{font-size:49.350000px;}
.fs12_c00172{font-size:50.400000px;}
.fs17_c00172{font-size:51.451646px;}
.fs11_c00172{font-size:53.550000px;}
.fs19_c00172{font-size:53.556024px;}
.fsf_c00172{font-size:54.600000px;}
.fs1a_c00172{font-size:58.800000px;}
.fs15_c00172{font-size:60.910991px;}
.fs7_c00172{font-size:61.950000px;}
.fsb_c00172{font-size:65.113019px;}
.fsc_c00172{font-size:66.163229px;}
.fs8_c00172{font-size:67.200000px;}
.fs9_c00172{font-size:70.350000px;}
.fsd_c00172{font-size:70.364069px;}
.fs6_c00172{font-size:72.450000px;}
.fse_c00172{font-size:73.500000px;}
.fsa_c00172{font-size:74.550000px;}
.fs14_c00172{font-size:80.850000px;}
.fs2_c00172{font-size:112.350000px;}
.fs1_c00172{font-size:118.655932px;}
.fs3_c00172{font-size:135.450000px;}
.fs5_c00172{font-size:150.150000px;}
.y0_c00172{bottom:0.000000px;}
.y80_c00172{bottom:153.979500px;}
.y7f_c00172{bottom:170.767268px;}
.y7e_c00172{bottom:171.086768px;}
.y7d_c00172{bottom:171.236550px;}
.y7c_c00172{bottom:171.674445px;}
.y7b_c00172{bottom:172.585718px;}
.y7a_c00172{bottom:173.176455px;}
.y79_c00172{bottom:173.608005px;}
.y78_c00172{bottom:174.886500px;}
.y77_c00172{bottom:175.108373px;}
.y76_c00172{bottom:175.246612px;}
.y75_c00172{bottom:176.008530px;}
.y74_c00172{bottom:176.349000px;}
.y6d_c00172{bottom:192.161268px;}
.y69_c00172{bottom:192.161316px;}
.y6a_c00172{bottom:192.161340px;}
.y6b_c00172{bottom:192.161592px;}
.y6c_c00172{bottom:192.161676px;}
.y71_c00172{bottom:192.161880px;}
.y6e_c00172{bottom:192.161988px;}
.y70_c00172{bottom:192.162180px;}
.y72_c00172{bottom:192.162480px;}
.y73_c00172{bottom:192.162492px;}
.y6f_c00172{bottom:192.162600px;}
.y68_c00172{bottom:208.789728px;}
.y67_c00172{bottom:208.891332px;}
.y66_c00172{bottom:209.217528px;}
.y65_c00172{bottom:209.299680px;}
.y64_c00172{bottom:209.563104px;}
.y63_c00172{bottom:209.729352px;}
.y62_c00172{bottom:209.893416px;}
.y61_c00172{bottom:210.412368px;}
.y60_c00172{bottom:210.593736px;}
.y5f_c00172{bottom:210.930372px;}
.y5e_c00172{bottom:211.032240px;}
.y5d_c00172{bottom:211.375308px;}
.y5c_c00172{bottom:211.768704px;}
.y5b_c00172{bottom:211.950000px;}
.y5a_c00172{bottom:229.635000px;}
.y59_c00172{bottom:269.183712px;}
.y58_c00172{bottom:269.674653px;}
.y57_c00172{bottom:270.368257px;}
.y56_c00172{bottom:270.624900px;}
.y55_c00172{bottom:271.354500px;}
.y54_c00172{bottom:287.922000px;}
.y53_c00172{bottom:305.908500px;}
.y52_c00172{bottom:324.001500px;}
.y51_c00172{bottom:342.225000px;}
.y50_c00172{bottom:359.472000px;}
.y4f_c00172{bottom:377.316000px;}
.y4e_c00172{bottom:395.442000px;}
.y4d_c00172{bottom:413.065500px;}
.y4c_c00172{bottom:428.524500px;}
.y4b_c00172{bottom:467.673240px;}
.y4a_c00172{bottom:468.413910px;}
.y49_c00172{bottom:468.826980px;}
.y48_c00172{bottom:469.733580px;}
.y47_c00172{bottom:470.029290px;}
.y46_c00172{bottom:470.526780px;}
.y45_c00172{bottom:471.459510px;}
.y44_c00172{bottom:472.176210px;}
.y43_c00172{bottom:472.525290px;}
.y42_c00172{bottom:490.097190px;}
.y41_c00172{bottom:490.811370px;}
.y40_c00172{bottom:491.636070px;}
.y3f_c00172{bottom:492.311730px;}
.y3e_c00172{bottom:493.033350px;}
.y3d_c00172{bottom:493.889280px;}
.y3c_c00172{bottom:494.346180px;}
.y3b_c00172{bottom:494.690430px;}
.y3a_c00172{bottom:495.700650px;}
.y39_c00172{bottom:496.288140px;}
.y38_c00172{bottom:496.797840px;}
.y37_c00172{bottom:515.078010px;}
.y36_c00172{bottom:515.888400px;}
.y35_c00172{bottom:516.784500px;}
.y34_c00172{bottom:537.670500px;}
.y33_c00172{bottom:538.018500px;}
.y32_c00172{bottom:539.112000px;}
.y31_c00172{bottom:539.731500px;}
.y30_c00172{bottom:562.294500px;}
.y2f_c00172{bottom:582.759000px;}
.y2e_c00172{bottom:603.238500px;}
.y2d_c00172{bottom:604.026000px;}
.y2c_c00172{bottom:604.387500px;}
.y2b_c00172{bottom:604.671000px;}
.y2a_c00172{bottom:604.888500px;}
.y29_c00172{bottom:605.142000px;}
.y28_c00172{bottom:605.634000px;}
.y27_c00172{bottom:606.037500px;}
.y26_c00172{bottom:606.673500px;}
.y25_c00172{bottom:606.922500px;}
.y24_c00172{bottom:607.134000px;}
.y23_c00172{bottom:607.621500px;}
.y22_c00172{bottom:627.864000px;}
.y21_c00172{bottom:628.156500px;}
.y20_c00172{bottom:628.500000px;}
.y1f_c00172{bottom:628.878000px;}
.y1e_c00172{bottom:629.379000px;}
.y1d_c00172{bottom:630.178500px;}
.y1c_c00172{bottom:648.123000px;}
.y1b_c00172{bottom:672.838500px;}
.y1a_c00172{bottom:695.713500px;}
.ya_c00172{bottom:697.140000px;}
.y19_c00172{bottom:715.936500px;}
.y18_c00172{bottom:716.458500px;}
.y17_c00172{bottom:716.748000px;}
.y16_c00172{bottom:717.261000px;}
.y15_c00172{bottom:717.565500px;}
.y14_c00172{bottom:718.086000px;}
.y13_c00172{bottom:718.512000px;}
.y12_c00172{bottom:719.229000px;}
.y11_c00172{bottom:719.868000px;}
.y10_c00172{bottom:720.360000px;}
.yf_c00172{bottom:741.505500px;}
.ye_c00172{bottom:764.376000px;}
.yd_c00172{bottom:787.327500px;}
.yc_c00172{bottom:810.084000px;}
.yb_c00172{bottom:833.278500px;}
.y9_c00172{bottom:862.380000px;}
.y6_c00172{bottom:874.982580px;}
.y5_c00172{bottom:875.424660px;}
.y4_c00172{bottom:876.205455px;}
.y3_c00172{bottom:876.982935px;}
.y2_c00172{bottom:879.121500px;}
.y8_c00172{bottom:879.660000px;}
.y7_c00172{bottom:916.110000px;}
.y1_c00172{bottom:944.460000px;}
.h2_c00172{height:22.050000px;}
.h18_c00172{height:24.150000px;}
.h6_c00172{height:39.900000px;}
.h12_c00172{height:44.100000px;}
.h1a_c00172{height:46.201478px;}
.h15_c00172{height:49.350000px;}
.h14_c00172{height:50.400000px;}
.h19_c00172{height:51.451646px;}
.h13_c00172{height:53.550000px;}
.h1b_c00172{height:53.556024px;}
.h11_c00172{height:54.600000px;}
.h1c_c00172{height:58.800000px;}
.h17_c00172{height:60.910991px;}
.h9_c00172{height:61.950000px;}
.hd_c00172{height:65.113019px;}
.he_c00172{height:66.163229px;}
.ha_c00172{height:67.200000px;}
.hb_c00172{height:70.350000px;}
.hf_c00172{height:70.364069px;}
.h8_c00172{height:72.450000px;}
.h10_c00172{height:73.500000px;}
.hc_c00172{height:74.550000px;}
.h16_c00172{height:80.850000px;}
.h4_c00172{height:112.350000px;}
.h3_c00172{height:118.655932px;}
.h5_c00172{height:135.450000px;}
.h7_c00172{height:150.150000px;}
.h1_c00172{height:1005.000000px;}
.h0_c00172{height:1005.150000px;}
.w0_c00172{width:735.750000px;}
.x0_c00172{left:0.000000px;}
.x6b_c00172{left:93.960000px;}
.x7d_c00172{left:109.890000px;}
.x9_c00172{left:117.720000px;}
.x77_c00172{left:121.039500px;}
.x4d_c00172{left:131.547120px;}
.x2c_c00172{left:132.841500px;}
.xc_c00172{left:134.190000px;}
.x15_c00172{left:135.540000px;}
.x7e_c00172{left:136.890000px;}
.x78_c00172{left:143.737500px;}
.x71_c00172{left:145.530972px;}
.x3f_c00172{left:151.449000px;}
.xd_c00172{left:154.440000px;}
.x4e_c00172{left:159.883260px;}
.x16_c00172{left:162.270000px;}
.x6c_c00172{left:166.249500px;}
.x2d_c00172{left:171.721500px;}
.x3a_c00172{left:172.797000px;}
.x2_c00172{left:177.481500px;}
.x47_c00172{left:182.251500px;}
.x40_c00172{left:188.965500px;}
.x4f_c00172{left:192.559080px;}
.x79_c00172{left:194.532000px;}
.x64_c00172{left:198.990000px;}
.x2e_c00172{left:200.881500px;}
.x23_c00172{left:203.142000px;}
.x41_c00172{left:205.251000px;}
.x54_c00172{left:207.360000px;}
.x59_c00172{left:209.520000px;}
.x7f_c00172{left:213.300000px;}
.xe_c00172{left:217.350000px;}
.x7a_c00172{left:218.539500px;}
.x6d_c00172{left:221.866500px;}
.x17_c00172{left:224.910000px;}
.x60_c00172{left:227.340000px;}
.x55_c00172{left:228.420000px;}
.x3b_c00172{left:229.875000px;}
.x2f_c00172{left:233.011500px;}
.x1f_c00172{left:238.140000px;}
.x24_c00172{left:240.952500px;}
.x5b_c00172{left:243.810000px;}
.x5a_c00172{left:245.160000px;}
.xf_c00172{left:248.670000px;}
.x65_c00172{left:253.530000px;}
.x72_c00172{left:256.503576px;}
.x35_c00172{left:258.931500px;}
.x63_c00172{left:260.550000px;}
.x1d_c00172{left:261.630000px;}
.x30_c00172{left:264.871500px;}
.x10_c00172{left:267.030000px;}
.x20_c00172{left:269.190000px;}
.x5d_c00172{left:272.160000px;}
.x42_c00172{left:273.346500px;}
.x48_c00172{left:274.626000px;}
.x68_c00172{left:277.672500px;}
.x56_c00172{left:279.990000px;}
.x5e_c00172{left:284.580000px;}
.x61_c00172{left:285.660000px;}
.x67_c00172{left:287.280000px;}
.x66_c00172{left:288.900000px;}
.x25_c00172{left:290.073000px;}
.x3c_c00172{left:292.644000px;}
.x31_c00172{left:293.761500px;}
.x4a_c00172{left:298.630500px;}
.x57_c00172{left:300.510000px;}
.x43_c00172{left:304.359000px;}
.x36_c00172{left:308.071500px;}
.x1e_c00172{left:311.310000px;}
.x69_c00172{left:314.178000px;}
.x3d_c00172{left:317.232000px;}
.x21_c00172{left:318.870000px;}
.x18_c00172{left:320.490000px;}
.x5f_c00172{left:321.840000px;}
.x58_c00172{left:325.350000px;}
.x11_c00172{left:332.370000px;}
.x5c_c00172{left:334.530000px;}
.x3e_c00172{left:338.101500px;}
.x6a_c00172{left:340.017000px;}
.x19_c00172{left:341.550000px;}
.x4b_c00172{left:343.435500px;}
.x26_c00172{left:345.193500px;}
.x32_c00172{left:348.571500px;}
.x6e_c00172{left:351.486000px;}
.x73_c00172{left:356.675484px;}
.x49_c00172{left:359.409000px;}
.x22_c00172{left:361.260000px;}
.x33_c00172{left:362.341500px;}
.x12_c00172{left:363.960000px;}
.x62_c00172{left:366.660000px;}
.x6f_c00172{left:371.994000px;}
.x1a_c00172{left:378.540000px;}
.x50_c00172{left:380.837610px;}
.x4c_c00172{left:383.955000px;}
.x13_c00172{left:386.100000px;}
.x3_c00172{left:391.338000px;}
.x37_c00172{left:392.581500px;}
.x44_c00172{left:400.225500px;}
.x34_c00172{left:402.571500px;}
.x52_c00172{left:406.160970px;}
.x74_c00172{left:413.377620px;}
.x27_c00172{left:418.057500px;}
.x75_c00172{left:421.478136px;}
.x1_c00172{left:426.330000px;}
.x45_c00172{left:427.984500px;}
.x14_c00172{left:432.810000px;}
.x38_c00172{left:436.051500px;}
.x28_c00172{left:441.505500px;}
.x1b_c00172{left:444.150000px;}
.x53_c00172{left:455.574420px;}
.x7b_c00172{left:461.869500px;}
.x51_c00172{left:464.183940px;}
.x4_c00172{left:469.086000px;}
.x39_c00172{left:471.421500px;}
.x76_c00172{left:472.779924px;}
.x70_c00172{left:476.746500px;}
.x29_c00172{left:480.964500px;}
.x46_c00172{left:488.580000px;}
.x7c_c00172{left:493.155000px;}
.x1c_c00172{left:498.960000px;}
.x2a_c00172{left:503.259000px;}
.x2b_c00172{left:543.454500px;}
.x5_c00172{left:547.165500px;}
.x7_c00172{left:556.470000px;}
.x8_c00172{left:588.870000px;}
.x6_c00172{left:591.373500px;}
.xb_c00172{left:603.720000px;}
.xa_c00172{left:623.700000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:0.000000pt;}
.fs0_c00172{font-size:19.600000pt;}
.fs16_c00172{font-size:21.466667pt;}
.fs4_c00172{font-size:35.466667pt;}
.fs10_c00172{font-size:39.200000pt;}
.fs18_c00172{font-size:41.067981pt;}
.fs13_c00172{font-size:43.866667pt;}
.fs12_c00172{font-size:44.800000pt;}
.fs17_c00172{font-size:45.734797pt;}
.fs11_c00172{font-size:47.600000pt;}
.fs19_c00172{font-size:47.605355pt;}
.fsf_c00172{font-size:48.533333pt;}
.fs1a_c00172{font-size:52.266667pt;}
.fs15_c00172{font-size:54.143104pt;}
.fs7_c00172{font-size:55.066667pt;}
.fsb_c00172{font-size:57.878239pt;}
.fsc_c00172{font-size:58.811759pt;}
.fs8_c00172{font-size:59.733333pt;}
.fs9_c00172{font-size:62.533333pt;}
.fsd_c00172{font-size:62.545839pt;}
.fs6_c00172{font-size:64.400000pt;}
.fse_c00172{font-size:65.333333pt;}
.fsa_c00172{font-size:66.266667pt;}
.fs14_c00172{font-size:71.866667pt;}
.fs2_c00172{font-size:99.866667pt;}
.fs1_c00172{font-size:105.471940pt;}
.fs3_c00172{font-size:120.400000pt;}
.fs5_c00172{font-size:133.466667pt;}
.y0_c00172{bottom:0.000000pt;}
.y80_c00172{bottom:136.870667pt;}
.y7f_c00172{bottom:151.793127pt;}
.y7e_c00172{bottom:152.077127pt;}
.y7d_c00172{bottom:152.210267pt;}
.y7c_c00172{bottom:152.599507pt;}
.y7b_c00172{bottom:153.409527pt;}
.y7a_c00172{bottom:153.934627pt;}
.y79_c00172{bottom:154.318227pt;}
.y78_c00172{bottom:155.454667pt;}
.y77_c00172{bottom:155.651887pt;}
.y76_c00172{bottom:155.774767pt;}
.y75_c00172{bottom:156.452027pt;}
.y74_c00172{bottom:156.754667pt;}
.y6d_c00172{bottom:170.810016pt;}
.y69_c00172{bottom:170.810059pt;}
.y6a_c00172{bottom:170.810080pt;}
.y6b_c00172{bottom:170.810304pt;}
.y6c_c00172{bottom:170.810379pt;}
.y71_c00172{bottom:170.810560pt;}
.y6e_c00172{bottom:170.810656pt;}
.y70_c00172{bottom:170.810827pt;}
.y72_c00172{bottom:170.811093pt;}
.y73_c00172{bottom:170.811104pt;}
.y6f_c00172{bottom:170.811200pt;}
.y68_c00172{bottom:185.590869pt;}
.y67_c00172{bottom:185.681184pt;}
.y66_c00172{bottom:185.971136pt;}
.y65_c00172{bottom:186.044160pt;}
.y64_c00172{bottom:186.278315pt;}
.y63_c00172{bottom:186.426091pt;}
.y62_c00172{bottom:186.571925pt;}
.y61_c00172{bottom:187.033216pt;}
.y60_c00172{bottom:187.194432pt;}
.y5f_c00172{bottom:187.493664pt;}
.y5e_c00172{bottom:187.584213pt;}
.y5d_c00172{bottom:187.889163pt;}
.y5c_c00172{bottom:188.238848pt;}
.y5b_c00172{bottom:188.400000pt;}
.y5a_c00172{bottom:204.120000pt;}
.y59_c00172{bottom:239.274411pt;}
.y58_c00172{bottom:239.710803pt;}
.y57_c00172{bottom:240.327340pt;}
.y56_c00172{bottom:240.555467pt;}
.y55_c00172{bottom:241.204000pt;}
.y54_c00172{bottom:255.930667pt;}
.y53_c00172{bottom:271.918667pt;}
.y52_c00172{bottom:288.001333pt;}
.y51_c00172{bottom:304.200000pt;}
.y50_c00172{bottom:319.530667pt;}
.y4f_c00172{bottom:335.392000pt;}
.y4e_c00172{bottom:351.504000pt;}
.y4d_c00172{bottom:367.169333pt;}
.y4c_c00172{bottom:380.910667pt;}
.y4b_c00172{bottom:415.709547pt;}
.y4a_c00172{bottom:416.367920pt;}
.y49_c00172{bottom:416.735093pt;}
.y48_c00172{bottom:417.540960pt;}
.y47_c00172{bottom:417.803813pt;}
.y46_c00172{bottom:418.246027pt;}
.y45_c00172{bottom:419.075120pt;}
.y44_c00172{bottom:419.712187pt;}
.y43_c00172{bottom:420.022480pt;}
.y42_c00172{bottom:435.641947pt;}
.y41_c00172{bottom:436.276773pt;}
.y40_c00172{bottom:437.009840pt;}
.y3f_c00172{bottom:437.610427pt;}
.y3e_c00172{bottom:438.251867pt;}
.y3d_c00172{bottom:439.012693pt;}
.y3c_c00172{bottom:439.418827pt;}
.y3b_c00172{bottom:439.724827pt;}
.y3a_c00172{bottom:440.622800pt;}
.y39_c00172{bottom:441.145013pt;}
.y38_c00172{bottom:441.598080pt;}
.y37_c00172{bottom:457.847120pt;}
.y36_c00172{bottom:458.567467pt;}
.y35_c00172{bottom:459.364000pt;}
.y34_c00172{bottom:477.929333pt;}
.y33_c00172{bottom:478.238667pt;}
.y32_c00172{bottom:479.210667pt;}
.y31_c00172{bottom:479.761333pt;}
.y30_c00172{bottom:499.817333pt;}
.y2f_c00172{bottom:518.008000pt;}
.y2e_c00172{bottom:536.212000pt;}
.y2d_c00172{bottom:536.912000pt;}
.y2c_c00172{bottom:537.233333pt;}
.y2b_c00172{bottom:537.485333pt;}
.y2a_c00172{bottom:537.678667pt;}
.y29_c00172{bottom:537.904000pt;}
.y28_c00172{bottom:538.341333pt;}
.y27_c00172{bottom:538.700000pt;}
.y26_c00172{bottom:539.265333pt;}
.y25_c00172{bottom:539.486667pt;}
.y24_c00172{bottom:539.674667pt;}
.y23_c00172{bottom:540.108000pt;}
.y22_c00172{bottom:558.101333pt;}
.y21_c00172{bottom:558.361333pt;}
.y20_c00172{bottom:558.666667pt;}
.y1f_c00172{bottom:559.002667pt;}
.y1e_c00172{bottom:559.448000pt;}
.y1d_c00172{bottom:560.158667pt;}
.y1c_c00172{bottom:576.109333pt;}
.y1b_c00172{bottom:598.078667pt;}
.y1a_c00172{bottom:618.412000pt;}
.ya_c00172{bottom:619.680000pt;}
.y19_c00172{bottom:636.388000pt;}
.y18_c00172{bottom:636.852000pt;}
.y17_c00172{bottom:637.109333pt;}
.y16_c00172{bottom:637.565333pt;}
.y15_c00172{bottom:637.836000pt;}
.y14_c00172{bottom:638.298667pt;}
.y13_c00172{bottom:638.677333pt;}
.y12_c00172{bottom:639.314667pt;}
.y11_c00172{bottom:639.882667pt;}
.y10_c00172{bottom:640.320000pt;}
.yf_c00172{bottom:659.116000pt;}
.ye_c00172{bottom:679.445333pt;}
.yd_c00172{bottom:699.846667pt;}
.yc_c00172{bottom:720.074667pt;}
.yb_c00172{bottom:740.692000pt;}
.y9_c00172{bottom:766.560000pt;}
.y6_c00172{bottom:777.762293pt;}
.y5_c00172{bottom:778.155253pt;}
.y4_c00172{bottom:778.849293pt;}
.y3_c00172{bottom:779.540387pt;}
.y2_c00172{bottom:781.441333pt;}
.y8_c00172{bottom:781.920000pt;}
.y7_c00172{bottom:814.320000pt;}
.y1_c00172{bottom:839.520000pt;}
.h2_c00172{height:19.600000pt;}
.h18_c00172{height:21.466667pt;}
.h6_c00172{height:35.466667pt;}
.h12_c00172{height:39.200000pt;}
.h1a_c00172{height:41.067981pt;}
.h15_c00172{height:43.866667pt;}
.h14_c00172{height:44.800000pt;}
.h19_c00172{height:45.734797pt;}
.h13_c00172{height:47.600000pt;}
.h1b_c00172{height:47.605355pt;}
.h11_c00172{height:48.533333pt;}
.h1c_c00172{height:52.266667pt;}
.h17_c00172{height:54.143104pt;}
.h9_c00172{height:55.066667pt;}
.hd_c00172{height:57.878239pt;}
.he_c00172{height:58.811759pt;}
.ha_c00172{height:59.733333pt;}
.hb_c00172{height:62.533333pt;}
.hf_c00172{height:62.545839pt;}
.h8_c00172{height:64.400000pt;}
.h10_c00172{height:65.333333pt;}
.hc_c00172{height:66.266667pt;}
.h16_c00172{height:71.866667pt;}
.h4_c00172{height:99.866667pt;}
.h3_c00172{height:105.471940pt;}
.h5_c00172{height:120.400000pt;}
.h7_c00172{height:133.466667pt;}
.h1_c00172{height:893.333333pt;}
.h0_c00172{height:893.466667pt;}
.w0_c00172{width:654.000000pt;}
.x0_c00172{left:0.000000pt;}
.x6b_c00172{left:83.520000pt;}
.x7d_c00172{left:97.680000pt;}
.x9_c00172{left:104.640000pt;}
.x77_c00172{left:107.590667pt;}
.x4d_c00172{left:116.930773pt;}
.x2c_c00172{left:118.081333pt;}
.xc_c00172{left:119.280000pt;}
.x15_c00172{left:120.480000pt;}
.x7e_c00172{left:121.680000pt;}
.x78_c00172{left:127.766667pt;}
.x71_c00172{left:129.360864pt;}
.x3f_c00172{left:134.621333pt;}
.xd_c00172{left:137.280000pt;}
.x4e_c00172{left:142.118453pt;}
.x16_c00172{left:144.240000pt;}
.x6c_c00172{left:147.777333pt;}
.x2d_c00172{left:152.641333pt;}
.x3a_c00172{left:153.597333pt;}
.x2_c00172{left:157.761333pt;}
.x47_c00172{left:162.001333pt;}
.x40_c00172{left:167.969333pt;}
.x4f_c00172{left:171.163627pt;}
.x79_c00172{left:172.917333pt;}
.x64_c00172{left:176.880000pt;}
.x2e_c00172{left:178.561333pt;}
.x23_c00172{left:180.570667pt;}
.x41_c00172{left:182.445333pt;}
.x54_c00172{left:184.320000pt;}
.x59_c00172{left:186.240000pt;}
.x7f_c00172{left:189.600000pt;}
.xe_c00172{left:193.200000pt;}
.x7a_c00172{left:194.257333pt;}
.x6d_c00172{left:197.214667pt;}
.x17_c00172{left:199.920000pt;}
.x60_c00172{left:202.080000pt;}
.x55_c00172{left:203.040000pt;}
.x3b_c00172{left:204.333333pt;}
.x2f_c00172{left:207.121333pt;}
.x1f_c00172{left:211.680000pt;}
.x24_c00172{left:214.180000pt;}
.x5b_c00172{left:216.720000pt;}
.x5a_c00172{left:217.920000pt;}
.xf_c00172{left:221.040000pt;}
.x65_c00172{left:225.360000pt;}
.x72_c00172{left:228.003179pt;}
.x35_c00172{left:230.161333pt;}
.x63_c00172{left:231.600000pt;}
.x1d_c00172{left:232.560000pt;}
.x30_c00172{left:235.441333pt;}
.x10_c00172{left:237.360000pt;}
.x20_c00172{left:239.280000pt;}
.x5d_c00172{left:241.920000pt;}
.x42_c00172{left:242.974667pt;}
.x48_c00172{left:244.112000pt;}
.x68_c00172{left:246.820000pt;}
.x56_c00172{left:248.880000pt;}
.x5e_c00172{left:252.960000pt;}
.x61_c00172{left:253.920000pt;}
.x67_c00172{left:255.360000pt;}
.x66_c00172{left:256.800000pt;}
.x25_c00172{left:257.842667pt;}
.x3c_c00172{left:260.128000pt;}
.x31_c00172{left:261.121333pt;}
.x4a_c00172{left:265.449333pt;}
.x57_c00172{left:267.120000pt;}
.x43_c00172{left:270.541333pt;}
.x36_c00172{left:273.841333pt;}
.x1e_c00172{left:276.720000pt;}
.x69_c00172{left:279.269333pt;}
.x3d_c00172{left:281.984000pt;}
.x21_c00172{left:283.440000pt;}
.x18_c00172{left:284.880000pt;}
.x5f_c00172{left:286.080000pt;}
.x58_c00172{left:289.200000pt;}
.x11_c00172{left:295.440000pt;}
.x5c_c00172{left:297.360000pt;}
.x3e_c00172{left:300.534667pt;}
.x6a_c00172{left:302.237333pt;}
.x19_c00172{left:303.600000pt;}
.x4b_c00172{left:305.276000pt;}
.x26_c00172{left:306.838667pt;}
.x32_c00172{left:309.841333pt;}
.x6e_c00172{left:312.432000pt;}
.x73_c00172{left:317.044875pt;}
.x49_c00172{left:319.474667pt;}
.x22_c00172{left:321.120000pt;}
.x33_c00172{left:322.081333pt;}
.x12_c00172{left:323.520000pt;}
.x62_c00172{left:325.920000pt;}
.x6f_c00172{left:330.661333pt;}
.x1a_c00172{left:336.480000pt;}
.x50_c00172{left:338.522320pt;}
.x4c_c00172{left:341.293333pt;}
.x13_c00172{left:343.200000pt;}
.x3_c00172{left:347.856000pt;}
.x37_c00172{left:348.961333pt;}
.x44_c00172{left:355.756000pt;}
.x34_c00172{left:357.841333pt;}
.x52_c00172{left:361.031973pt;}
.x74_c00172{left:367.446773pt;}
.x27_c00172{left:371.606667pt;}
.x75_c00172{left:374.647232pt;}
.x1_c00172{left:378.960000pt;}
.x45_c00172{left:380.430667pt;}
.x14_c00172{left:384.720000pt;}
.x38_c00172{left:387.601333pt;}
.x28_c00172{left:392.449333pt;}
.x1b_c00172{left:394.800000pt;}
.x53_c00172{left:404.955040pt;}
.x7b_c00172{left:410.550667pt;}
.x51_c00172{left:412.607947pt;}
.x4_c00172{left:416.965333pt;}
.x39_c00172{left:419.041333pt;}
.x76_c00172{left:420.248821pt;}
.x70_c00172{left:423.774667pt;}
.x29_c00172{left:427.524000pt;}
.x46_c00172{left:434.293333pt;}
.x7c_c00172{left:438.360000pt;}
.x1c_c00172{left:443.520000pt;}
.x2a_c00172{left:447.341333pt;}
.x2b_c00172{left:483.070667pt;}
.x5_c00172{left:486.369333pt;}
.x7_c00172{left:494.640000pt;}
.x8_c00172{left:523.440000pt;}
.x6_c00172{left:525.665333pt;}
.xb_c00172{left:536.640000pt;}
.xa_c00172{left:554.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_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_ef4e99a7aa2876b3106553d3.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;}
.m44_c00173{transform:matrix(0.009963,-0.000199,0.004999,0.249950,0,0);-ms-transform:matrix(0.009963,-0.000199,0.004999,0.249950,0,0);-webkit-transform:matrix(0.009963,-0.000199,0.004999,0.249950,0,0);}
.m76_c00173{transform:matrix(0.012507,-0.000250,0.004999,0.249950,0,0);-ms-transform:matrix(0.012507,-0.000250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.012507,-0.000250,0.004999,0.249950,0,0);}
.mc5_c00173{transform:matrix(0.012539,-0.000150,0.003000,0.249982,0,0);-ms-transform:matrix(0.012539,-0.000150,0.003000,0.249982,0,0);-webkit-transform:matrix(0.012539,-0.000150,0.003000,0.249982,0,0);}
.mb8_c00173{transform:matrix(0.036357,-0.000763,0.005249,0.249945,0,0);-ms-transform:matrix(0.036357,-0.000763,0.005249,0.249945,0,0);-webkit-transform:matrix(0.036357,-0.000763,0.005249,0.249945,0,0);}
.m43_c00173{transform:matrix(0.099675,-0.001994,0.004999,0.249950,0,0);-ms-transform:matrix(0.099675,-0.001994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.099675,-0.001994,0.004999,0.249950,0,0);}
.mba_c00173{transform:matrix(0.101413,-0.002130,0.005249,0.249945,0,0);-ms-transform:matrix(0.101413,-0.002130,0.005249,0.249945,0,0);-webkit-transform:matrix(0.101413,-0.002130,0.005249,0.249945,0,0);}
.mf9_c00173{transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.117327,-0.002347,0.004999,0.249950,0,0);-ms-transform:matrix(0.117327,-0.002347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.117327,-0.002347,0.004999,0.249950,0,0);}
.m10_c00173{transform:matrix(0.119381,-0.002388,0.004999,0.249950,0,0);-ms-transform:matrix(0.119381,-0.002388,0.004999,0.249950,0,0);-webkit-transform:matrix(0.119381,-0.002388,0.004999,0.249950,0,0);}
.m37_c00173{transform:matrix(0.131734,-0.002635,0.004999,0.249950,0,0);-ms-transform:matrix(0.131734,-0.002635,0.004999,0.249950,0,0);-webkit-transform:matrix(0.131734,-0.002635,0.004999,0.249950,0,0);}
.mac_c00173{transform:matrix(0.136495,-0.002866,0.005249,0.249945,0,0);-ms-transform:matrix(0.136495,-0.002866,0.005249,0.249945,0,0);-webkit-transform:matrix(0.136495,-0.002866,0.005249,0.249945,0,0);}
.m96_c00173{transform:matrix(0.136703,-0.002734,0.004999,0.249950,0,0);-ms-transform:matrix(0.136703,-0.002734,0.004999,0.249950,0,0);-webkit-transform:matrix(0.136703,-0.002734,0.004999,0.249950,0,0);}
.mab_c00173{transform:matrix(0.140829,-0.002957,0.005249,0.249945,0,0);-ms-transform:matrix(0.140829,-0.002957,0.005249,0.249945,0,0);-webkit-transform:matrix(0.140829,-0.002957,0.005249,0.249945,0,0);}
.md0_c00173{transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.148825,-0.002977,0.004999,0.249950,0,0);-ms-transform:matrix(0.148825,-0.002977,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148825,-0.002977,0.004999,0.249950,0,0);}
.m4b_c00173{transform:matrix(0.152539,-0.003051,0.004999,0.249950,0,0);-ms-transform:matrix(0.152539,-0.003051,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152539,-0.003051,0.004999,0.249950,0,0);}
.m73_c00173{transform:matrix(0.155159,-0.003103,0.004999,0.249950,0,0);-ms-transform:matrix(0.155159,-0.003103,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155159,-0.003103,0.004999,0.249950,0,0);}
.m80_c00173{transform:matrix(0.155464,-0.003109,0.004999,0.249950,0,0);-ms-transform:matrix(0.155464,-0.003109,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155464,-0.003109,0.004999,0.249950,0,0);}
.m16_c00173{transform:matrix(0.162278,-0.003246,0.004999,0.249950,0,0);-ms-transform:matrix(0.162278,-0.003246,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162278,-0.003246,0.004999,0.249950,0,0);}
.m2e_c00173{transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);-ms-transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);}
.m32_c00173{transform:matrix(0.162717,-0.003254,0.004999,0.249950,0,0);-ms-transform:matrix(0.162717,-0.003254,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162717,-0.003254,0.004999,0.249950,0,0);}
.m4c_c00173{transform:matrix(0.163227,-0.003265,0.004999,0.249950,0,0);-ms-transform:matrix(0.163227,-0.003265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163227,-0.003265,0.004999,0.249950,0,0);}
.m47_c00173{transform:matrix(0.163837,-0.003277,0.004999,0.249950,0,0);-ms-transform:matrix(0.163837,-0.003277,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163837,-0.003277,0.004999,0.249950,0,0);}
.mae_c00173{transform:matrix(0.164374,-0.003452,0.005249,0.249945,0,0);-ms-transform:matrix(0.164374,-0.003452,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164374,-0.003452,0.005249,0.249945,0,0);}
.mb3_c00173{transform:matrix(0.165524,-0.003476,0.005249,0.249945,0,0);-ms-transform:matrix(0.165524,-0.003476,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165524,-0.003476,0.005249,0.249945,0,0);}
.m7d_c00173{transform:matrix(0.165667,-0.003313,0.004999,0.249950,0,0);-ms-transform:matrix(0.165667,-0.003313,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165667,-0.003313,0.004999,0.249950,0,0);}
.m7e_c00173{transform:matrix(0.165967,-0.003319,0.004999,0.249950,0,0);-ms-transform:matrix(0.165967,-0.003319,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165967,-0.003319,0.004999,0.249950,0,0);}
.m82_c00173{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);}
.m5c_c00173{transform:matrix(0.167911,-0.003358,0.004999,0.249950,0,0);-ms-transform:matrix(0.167911,-0.003358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167911,-0.003358,0.004999,0.249950,0,0);}
.m46_c00173{transform:matrix(0.168306,-0.003366,0.004999,0.249950,0,0);-ms-transform:matrix(0.168306,-0.003366,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168306,-0.003366,0.004999,0.249950,0,0);}
.m7c_c00173{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);}
.ma7_c00173{transform:matrix(0.169121,-0.003382,0.004999,0.249950,0,0);-ms-transform:matrix(0.169121,-0.003382,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169121,-0.003382,0.004999,0.249950,0,0);}
.m25_c00173{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);}
.ma6_c00173{transform:matrix(0.172980,-0.003460,0.004999,0.249950,0,0);-ms-transform:matrix(0.172980,-0.003460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172980,-0.003460,0.004999,0.249950,0,0);}
.m9c_c00173{transform:matrix(0.174060,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174060,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174060,-0.003481,0.004999,0.249950,0,0);}
.mf7_c00173{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);}
.m9a_c00173{transform:matrix(0.174610,-0.003492,0.004999,0.249950,0,0);-ms-transform:matrix(0.174610,-0.003492,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174610,-0.003492,0.004999,0.249950,0,0);}
.m83_c00173{transform:matrix(0.174745,-0.003495,0.004999,0.249950,0,0);-ms-transform:matrix(0.174745,-0.003495,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174745,-0.003495,0.004999,0.249950,0,0);}
.m3e_c00173{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);}
.mbc_c00173{transform:matrix(0.175267,-0.002103,0.003000,0.249982,0,0);-ms-transform:matrix(0.175267,-0.002103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175267,-0.002103,0.003000,0.249982,0,0);}
.m8f_c00173{transform:matrix(0.176165,-0.003523,0.004999,0.249950,0,0);-ms-transform:matrix(0.176165,-0.003523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176165,-0.003523,0.004999,0.249950,0,0);}
.m90_c00173{transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);-ms-transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);}
.m93_c00173{transform:matrix(0.177674,-0.003553,0.004999,0.249950,0,0);-ms-transform:matrix(0.177674,-0.003553,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177674,-0.003553,0.004999,0.249950,0,0);}
.m49_c00173{transform:matrix(0.177944,-0.003559,0.004999,0.249950,0,0);-ms-transform:matrix(0.177944,-0.003559,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177944,-0.003559,0.004999,0.249950,0,0);}
.m8_c00173{transform:matrix(0.178199,-0.003564,0.004999,0.249950,0,0);-ms-transform:matrix(0.178199,-0.003564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178199,-0.003564,0.004999,0.249950,0,0);}
.m21_c00173{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);}
.mb4_c00173{transform:matrix(0.179640,-0.003772,0.005249,0.249945,0,0);-ms-transform:matrix(0.179640,-0.003772,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179640,-0.003772,0.005249,0.249945,0,0);}
.m3a_c00173{transform:matrix(0.180359,-0.003607,0.004999,0.249950,0,0);-ms-transform:matrix(0.180359,-0.003607,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180359,-0.003607,0.004999,0.249950,0,0);}
.mad_c00173{transform:matrix(0.180705,-0.003795,0.005249,0.249945,0,0);-ms-transform:matrix(0.180705,-0.003795,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180705,-0.003795,0.005249,0.249945,0,0);}
.mb2_c00173{transform:matrix(0.180850,-0.003798,0.005249,0.249945,0,0);-ms-transform:matrix(0.180850,-0.003798,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180850,-0.003798,0.005249,0.249945,0,0);}
.me5_c00173{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);}
.m6b_c00173{transform:matrix(0.181129,-0.003623,0.004999,0.249950,0,0);-ms-transform:matrix(0.181129,-0.003623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181129,-0.003623,0.004999,0.249950,0,0);}
.m6e_c00173{transform:matrix(0.182738,-0.003655,0.004999,0.249950,0,0);-ms-transform:matrix(0.182738,-0.003655,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182738,-0.003655,0.004999,0.249950,0,0);}
.m5e_c00173{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);}
.m7a_c00173{transform:matrix(0.183453,-0.003669,0.004999,0.249950,0,0);-ms-transform:matrix(0.183453,-0.003669,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183453,-0.003669,0.004999,0.249950,0,0);}
.m1b_c00173{transform:matrix(0.183863,-0.003677,0.004999,0.249950,0,0);-ms-transform:matrix(0.183863,-0.003677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183863,-0.003677,0.004999,0.249950,0,0);}
.m27_c00173{transform:matrix(0.184208,-0.003684,0.004999,0.249950,0,0);-ms-transform:matrix(0.184208,-0.003684,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184208,-0.003684,0.004999,0.249950,0,0);}
.ma1_c00173{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);}
.mfb_c00173{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);}
.mf4_c00173{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);}
.m2f_c00173{transform:matrix(0.184763,-0.003695,0.004999,0.249950,0,0);-ms-transform:matrix(0.184763,-0.003695,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184763,-0.003695,0.004999,0.249950,0,0);}
.m2c_c00173{transform:matrix(0.185078,-0.003702,0.004999,0.249950,0,0);-ms-transform:matrix(0.185078,-0.003702,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185078,-0.003702,0.004999,0.249950,0,0);}
.mce_c00173{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m68_c00173{transform:matrix(0.185223,-0.003704,0.004999,0.249950,0,0);-ms-transform:matrix(0.185223,-0.003704,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185223,-0.003704,0.004999,0.249950,0,0);}
.m13_c00173{transform:matrix(0.185873,-0.003717,0.004999,0.249950,0,0);-ms-transform:matrix(0.185873,-0.003717,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185873,-0.003717,0.004999,0.249950,0,0);}
.m61_c00173{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);}
.m7b_c00173{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);}
.m51_c00173{transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);-ms-transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);}
.m65_c00173{transform:matrix(0.187078,-0.003742,0.004999,0.249950,0,0);-ms-transform:matrix(0.187078,-0.003742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187078,-0.003742,0.004999,0.249950,0,0);}
.m8c_c00173{transform:matrix(0.187762,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187762,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187762,-0.003755,0.004999,0.249950,0,0);}
.mc3_c00173{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);}
.m85_c00173{transform:matrix(0.188457,-0.003769,0.004999,0.249950,0,0);-ms-transform:matrix(0.188457,-0.003769,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188457,-0.003769,0.004999,0.249950,0,0);}
.m86_c00173{transform:matrix(0.188677,-0.003774,0.004999,0.249950,0,0);-ms-transform:matrix(0.188677,-0.003774,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188677,-0.003774,0.004999,0.249950,0,0);}
.m97_c00173{transform:matrix(0.188867,-0.003777,0.004999,0.249950,0,0);-ms-transform:matrix(0.188867,-0.003777,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188867,-0.003777,0.004999,0.249950,0,0);}
.m6a_c00173{transform:matrix(0.189457,-0.003789,0.004999,0.249950,0,0);-ms-transform:matrix(0.189457,-0.003789,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189457,-0.003789,0.004999,0.249950,0,0);}
.m95_c00173{transform:matrix(0.189617,-0.003792,0.004999,0.249950,0,0);-ms-transform:matrix(0.189617,-0.003792,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189617,-0.003792,0.004999,0.249950,0,0);}
.m5_c00173{transform:matrix(0.189827,-0.003797,0.004999,0.249950,0,0);-ms-transform:matrix(0.189827,-0.003797,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189827,-0.003797,0.004999,0.249950,0,0);}
.m50_c00173{transform:matrix(0.189907,-0.003798,0.004999,0.249950,0,0);-ms-transform:matrix(0.189907,-0.003798,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189907,-0.003798,0.004999,0.249950,0,0);}
.m91_c00173{transform:matrix(0.190377,-0.003808,0.004999,0.249950,0,0);-ms-transform:matrix(0.190377,-0.003808,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190377,-0.003808,0.004999,0.249950,0,0);}
.m74_c00173{transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);-ms-transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);}
.m2b_c00173{transform:matrix(0.191472,-0.003829,0.004999,0.249950,0,0);-ms-transform:matrix(0.191472,-0.003829,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191472,-0.003829,0.004999,0.249950,0,0);}
.maf_c00173{transform:matrix(0.191828,-0.004028,0.005249,0.249945,0,0);-ms-transform:matrix(0.191828,-0.004028,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191828,-0.004028,0.005249,0.249945,0,0);}
.mf_c00173{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);}
.mc8_c00173{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);}
.m4d_c00173{transform:matrix(0.192452,-0.003849,0.004999,0.249950,0,0);-ms-transform:matrix(0.192452,-0.003849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192452,-0.003849,0.004999,0.249950,0,0);}
.m92_c00173{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);}
.m8d_c00173{transform:matrix(0.193241,-0.003865,0.004999,0.249950,0,0);-ms-transform:matrix(0.193241,-0.003865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193241,-0.003865,0.004999,0.249950,0,0);}
.m33_c00173{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);}
.m101_c00173{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);}
.m55_c00173{transform:matrix(0.193971,-0.003879,0.004999,0.249950,0,0);-ms-transform:matrix(0.193971,-0.003879,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193971,-0.003879,0.004999,0.249950,0,0);}
.mf0_c00173{transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195070,0.000000,0.000000,0.250000,0,0);}
.m94_c00173{transform:matrix(0.195396,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195396,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195396,-0.003908,0.004999,0.249950,0,0);}
.m71_c00173{transform:matrix(0.196131,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196131,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196131,-0.003923,0.004999,0.249950,0,0);}
.m19_c00173{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);}
.m38_c00173{transform:matrix(0.197426,-0.003949,0.004999,0.249950,0,0);-ms-transform:matrix(0.197426,-0.003949,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197426,-0.003949,0.004999,0.249950,0,0);}
.mdc_c00173{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);}
.m100_c00173{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);}
.m24_c00173{transform:matrix(0.198350,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198350,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198350,-0.003967,0.004999,0.249950,0,0);}
.m69_c00173{transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);}
.m84_c00173{transform:matrix(0.198890,-0.003978,0.004999,0.249950,0,0);-ms-transform:matrix(0.198890,-0.003978,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198890,-0.003978,0.004999,0.249950,0,0);}
.m99_c00173{transform:matrix(0.199180,-0.003984,0.004999,0.249950,0,0);-ms-transform:matrix(0.199180,-0.003984,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199180,-0.003984,0.004999,0.249950,0,0);}
.mf8_c00173{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);}
.m9f_c00173{transform:matrix(0.199390,-0.003988,0.004999,0.249950,0,0);-ms-transform:matrix(0.199390,-0.003988,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199390,-0.003988,0.004999,0.249950,0,0);}
.m67_c00173{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);}
.m66_c00173{transform:matrix(0.200525,-0.004010,0.004999,0.249950,0,0);-ms-transform:matrix(0.200525,-0.004010,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200525,-0.004010,0.004999,0.249950,0,0);}
.mb0_c00173{transform:matrix(0.200691,-0.004215,0.005249,0.249945,0,0);-ms-transform:matrix(0.200691,-0.004215,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200691,-0.004215,0.005249,0.249945,0,0);}
.mff_c00173{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);}
.mfe_c00173{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);}
.m53_c00173{transform:matrix(0.201485,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201485,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201485,-0.004030,0.004999,0.249950,0,0);}
.mc0_c00173{transform:matrix(0.201560,-0.002419,0.003000,0.249982,0,0);-ms-transform:matrix(0.201560,-0.002419,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201560,-0.002419,0.003000,0.249982,0,0);}
.m45_c00173{transform:matrix(0.203569,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203569,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203569,-0.004071,0.004999,0.249950,0,0);}
.m31_c00173{transform:matrix(0.203674,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203674,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203674,-0.004073,0.004999,0.249950,0,0);}
.m6c_c00173{transform:matrix(0.203939,-0.004079,0.004999,0.249950,0,0);-ms-transform:matrix(0.203939,-0.004079,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203939,-0.004079,0.004999,0.249950,0,0);}
.mc6_c00173{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);}
.m5f_c00173{transform:matrix(0.205134,-0.004103,0.004999,0.249950,0,0);-ms-transform:matrix(0.205134,-0.004103,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205134,-0.004103,0.004999,0.249950,0,0);}
.m5d_c00173{transform:matrix(0.205164,-0.004103,0.004999,0.249950,0,0);-ms-transform:matrix(0.205164,-0.004103,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205164,-0.004103,0.004999,0.249950,0,0);}
.mbb_c00173{transform:matrix(0.205395,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205395,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205395,-0.002465,0.003000,0.249982,0,0);}
.mcb_c00173{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);}
.ma8_c00173{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);}
.me4_c00173{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);}
.m56_c00173{transform:matrix(0.208418,-0.004168,0.004999,0.249950,0,0);-ms-transform:matrix(0.208418,-0.004168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208418,-0.004168,0.004999,0.249950,0,0);}
.m4e_c00173{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);}
.m79_c00173{transform:matrix(0.210518,-0.004210,0.004999,0.249950,0,0);-ms-transform:matrix(0.210518,-0.004210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210518,-0.004210,0.004999,0.249950,0,0);}
.m9d_c00173{transform:matrix(0.210663,-0.004213,0.004999,0.249950,0,0);-ms-transform:matrix(0.210663,-0.004213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210663,-0.004213,0.004999,0.249950,0,0);}
.mdb_c00173{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);}
.m26_c00173{transform:matrix(0.211228,-0.004225,0.004999,0.249950,0,0);-ms-transform:matrix(0.211228,-0.004225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211228,-0.004225,0.004999,0.249950,0,0);}
.mfc_c00173{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);}
.m72_c00173{transform:matrix(0.211673,-0.004233,0.004999,0.249950,0,0);-ms-transform:matrix(0.211673,-0.004233,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211673,-0.004233,0.004999,0.249950,0,0);}
.m8e_c00173{transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);-ms-transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);}
.mc_c00173{transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);-ms-transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);}
.md_c00173{transform:matrix(0.212428,-0.004249,0.004999,0.249950,0,0);-ms-transform:matrix(0.212428,-0.004249,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212428,-0.004249,0.004999,0.249950,0,0);}
.m7f_c00173{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);}
.mb_c00173{transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);}
.m4a_c00173{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);}
.m9e_c00173{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);}
.m48_c00173{transform:matrix(0.213657,-0.004273,0.004999,0.249950,0,0);-ms-transform:matrix(0.213657,-0.004273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213657,-0.004273,0.004999,0.249950,0,0);}
.m58_c00173{transform:matrix(0.213742,-0.004275,0.004999,0.249950,0,0);-ms-transform:matrix(0.213742,-0.004275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213742,-0.004275,0.004999,0.249950,0,0);}
.m8b_c00173{transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);-ms-transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);}
.m98_c00173{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);}
.m60_c00173{transform:matrix(0.214942,-0.004299,0.004999,0.249950,0,0);-ms-transform:matrix(0.214942,-0.004299,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214942,-0.004299,0.004999,0.249950,0,0);}
.mb9_c00173{transform:matrix(0.215722,-0.004530,0.005249,0.249945,0,0);-ms-transform:matrix(0.215722,-0.004530,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215722,-0.004530,0.005249,0.249945,0,0);}
.m9b_c00173{transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);-ms-transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);}
.m9_c00173{transform:matrix(0.216977,-0.004340,0.004999,0.249950,0,0);-ms-transform:matrix(0.216977,-0.004340,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216977,-0.004340,0.004999,0.249950,0,0);}
.ma0_c00173{transform:matrix(0.217207,-0.004344,0.004999,0.249950,0,0);-ms-transform:matrix(0.217207,-0.004344,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217207,-0.004344,0.004999,0.249950,0,0);}
.m57_c00173{transform:matrix(0.217472,-0.004349,0.004999,0.249950,0,0);-ms-transform:matrix(0.217472,-0.004349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217472,-0.004349,0.004999,0.249950,0,0);}
.mc1_c00173{transform:matrix(0.218234,-0.002619,0.003000,0.249982,0,0);-ms-transform:matrix(0.218234,-0.002619,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218234,-0.002619,0.003000,0.249982,0,0);}
.m81_c00173{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);}
.mc9_c00173{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);}
.m87_c00173{transform:matrix(0.219356,-0.004387,0.004999,0.249950,0,0);-ms-transform:matrix(0.219356,-0.004387,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219356,-0.004387,0.004999,0.249950,0,0);}
.mf6_c00173{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);}
.m3f_c00173{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);}
.mdd_c00173{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);}
.m2d_c00173{transform:matrix(0.220226,-0.004405,0.004999,0.249950,0,0);-ms-transform:matrix(0.220226,-0.004405,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220226,-0.004405,0.004999,0.249950,0,0);}
.me6_c00173{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);}
.m2a_c00173{transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);-ms-transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);}
.m29_c00173{transform:matrix(0.221471,-0.004429,0.004999,0.249950,0,0);-ms-transform:matrix(0.221471,-0.004429,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221471,-0.004429,0.004999,0.249950,0,0);}
.m7_c00173{transform:matrix(0.221796,-0.004436,0.004999,0.249950,0,0);-ms-transform:matrix(0.221796,-0.004436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221796,-0.004436,0.004999,0.249950,0,0);}
.m17_c00173{transform:matrix(0.222595,-0.004452,0.004999,0.249950,0,0);-ms-transform:matrix(0.222595,-0.004452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222595,-0.004452,0.004999,0.249950,0,0);}
.m64_c00173{transform:matrix(0.224045,-0.004481,0.004999,0.249950,0,0);-ms-transform:matrix(0.224045,-0.004481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224045,-0.004481,0.004999,0.249950,0,0);}
.me8_c00173{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);}
.ma5_c00173{transform:matrix(0.224690,-0.004494,0.004999,0.249950,0,0);-ms-transform:matrix(0.224690,-0.004494,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224690,-0.004494,0.004999,0.249950,0,0);}
.m1a_c00173{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);}
.md3_c00173{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);}
.m30_c00173{transform:matrix(0.225030,-0.004501,0.004999,0.249950,0,0);-ms-transform:matrix(0.225030,-0.004501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225030,-0.004501,0.004999,0.249950,0,0);}
.m88_c00173{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);}
.m14_c00173{transform:matrix(0.225835,-0.004517,0.004999,0.249950,0,0);-ms-transform:matrix(0.225835,-0.004517,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225835,-0.004517,0.004999,0.249950,0,0);}
.me7_c00173{transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);}
.mc7_c00173{transform:matrix(0.226484,-0.002718,0.003000,0.249982,0,0);-ms-transform:matrix(0.226484,-0.002718,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226484,-0.002718,0.003000,0.249982,0,0);}
.mca_c00173{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);}
.m5a_c00173{transform:matrix(0.227185,-0.004544,0.004999,0.249950,0,0);-ms-transform:matrix(0.227185,-0.004544,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227185,-0.004544,0.004999,0.249950,0,0);}
.m15_c00173{transform:matrix(0.227365,-0.004547,0.004999,0.249950,0,0);-ms-transform:matrix(0.227365,-0.004547,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227365,-0.004547,0.004999,0.249950,0,0);}
.mcc_c00173{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);}
.m62_c00173{transform:matrix(0.229404,-0.004588,0.004999,0.249950,0,0);-ms-transform:matrix(0.229404,-0.004588,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229404,-0.004588,0.004999,0.249950,0,0);}
.m75_c00173{transform:matrix(0.229834,-0.004597,0.004999,0.249950,0,0);-ms-transform:matrix(0.229834,-0.004597,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229834,-0.004597,0.004999,0.249950,0,0);}
.ma2_c00173{transform:matrix(0.230094,-0.004602,0.004999,0.249950,0,0);-ms-transform:matrix(0.230094,-0.004602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230094,-0.004602,0.004999,0.249950,0,0);}
.mef_c00173{transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);}
.md4_c00173{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.232054,-0.004641,0.004999,0.249950,0,0);-ms-transform:matrix(0.232054,-0.004641,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232054,-0.004641,0.004999,0.249950,0,0);}
.m6d_c00173{transform:matrix(0.234158,-0.004683,0.004999,0.249950,0,0);-ms-transform:matrix(0.234158,-0.004683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234158,-0.004683,0.004999,0.249950,0,0);}
.m3d_c00173{transform:matrix(0.234463,-0.004689,0.004999,0.249950,0,0);-ms-transform:matrix(0.234463,-0.004689,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234463,-0.004689,0.004999,0.249950,0,0);}
.m12_c00173{transform:matrix(0.234653,-0.004693,0.004999,0.249950,0,0);-ms-transform:matrix(0.234653,-0.004693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234653,-0.004693,0.004999,0.249950,0,0);}
.mec_c00173{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);}
.mcf_c00173{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);}
.m77_c00173{transform:matrix(0.236973,-0.004739,0.004999,0.249950,0,0);-ms-transform:matrix(0.236973,-0.004739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236973,-0.004739,0.004999,0.249950,0,0);}
.m11_c00173{transform:matrix(0.237088,-0.004742,0.004999,0.249950,0,0);-ms-transform:matrix(0.237088,-0.004742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237088,-0.004742,0.004999,0.249950,0,0);}
.meb_c00173{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);}
.m22_c00173{transform:matrix(0.237902,-0.004758,0.004999,0.249950,0,0);-ms-transform:matrix(0.237902,-0.004758,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237902,-0.004758,0.004999,0.249950,0,0);}
.m59_c00173{transform:matrix(0.239197,-0.004784,0.004999,0.249950,0,0);-ms-transform:matrix(0.239197,-0.004784,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239197,-0.004784,0.004999,0.249950,0,0);}
.mde_c00173{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);}
.mc4_c00173{transform:matrix(0.242403,-0.002909,0.003000,0.249982,0,0);-ms-transform:matrix(0.242403,-0.002909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242403,-0.002909,0.003000,0.249982,0,0);}
.m3c_c00173{transform:matrix(0.242452,-0.004849,0.004999,0.249950,0,0);-ms-transform:matrix(0.242452,-0.004849,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242452,-0.004849,0.004999,0.249950,0,0);}
.mf1_c00173{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);}
.mea_c00173{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);}
.m20_c00173{transform:matrix(0.243171,-0.004863,0.004999,0.249950,0,0);-ms-transform:matrix(0.243171,-0.004863,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243171,-0.004863,0.004999,0.249950,0,0);}
.mb5_c00173{transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);-ms-transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);}
.m1e_c00173{transform:matrix(0.244951,-0.004899,0.004999,0.249950,0,0);-ms-transform:matrix(0.244951,-0.004899,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244951,-0.004899,0.004999,0.249950,0,0);}
.mf5_c00173{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);}
.m28_c00173{transform:matrix(0.251555,-0.005031,0.004999,0.249950,0,0);-ms-transform:matrix(0.251555,-0.005031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251555,-0.005031,0.004999,0.249950,0,0);}
.m3_c00173{transform:matrix(0.252924,-0.005058,0.004999,0.249950,0,0);-ms-transform:matrix(0.252924,-0.005058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252924,-0.005058,0.004999,0.249950,0,0);}
.m4f_c00173{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);}
.mc2_c00173{transform:matrix(0.256492,-0.003078,0.003000,0.249982,0,0);-ms-transform:matrix(0.256492,-0.003078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256492,-0.003078,0.003000,0.249982,0,0);}
.md6_c00173{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.258358,-0.005167,0.004999,0.249950,0,0);-ms-transform:matrix(0.258358,-0.005167,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258358,-0.005167,0.004999,0.249950,0,0);}
.m39_c00173{transform:matrix(0.262128,-0.005243,0.004999,0.249950,0,0);-ms-transform:matrix(0.262128,-0.005243,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262128,-0.005243,0.004999,0.249950,0,0);}
.mcd_c00173{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.mee_c00173{transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263940,0.000000,0.000000,0.250000,0,0);}
.me3_c00173{transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{transform:matrix(0.273520,-0.005470,0.004999,0.249950,0,0);-ms-transform:matrix(0.273520,-0.005470,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273520,-0.005470,0.004999,0.249950,0,0);}
.md8_c00173{transform:matrix(0.273735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273735,0.000000,0.000000,0.250000,0,0);}
.mf3_c00173{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);}
.mfd_c00173{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);}
.mdf_c00173{transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284935,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.292512,-0.005850,0.004999,0.249950,0,0);-ms-transform:matrix(0.292512,-0.005850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.292512,-0.005850,0.004999,0.249950,0,0);}
.me9_c00173{transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);}
.md9_c00173{transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295060,0.000000,0.000000,0.250000,0,0);}
.m40_c00173{transform:matrix(0.295611,-0.005912,0.004999,0.249950,0,0);-ms-transform:matrix(0.295611,-0.005912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.295611,-0.005912,0.004999,0.249950,0,0);}
.m4_c00173{transform:matrix(0.297620,-0.005952,0.004999,0.249950,0,0);-ms-transform:matrix(0.297620,-0.005952,0.004999,0.249950,0,0);-webkit-transform:matrix(0.297620,-0.005952,0.004999,0.249950,0,0);}
.me1_c00173{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);}
.m54_c00173{transform:matrix(0.299655,-0.005993,0.004999,0.249950,0,0);-ms-transform:matrix(0.299655,-0.005993,0.004999,0.249950,0,0);-webkit-transform:matrix(0.299655,-0.005993,0.004999,0.249950,0,0);}
.m6_c00173{transform:matrix(0.301065,-0.006021,0.004999,0.249950,0,0);-ms-transform:matrix(0.301065,-0.006021,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301065,-0.006021,0.004999,0.249950,0,0);}
.ma9_c00173{transform:matrix(0.304953,-0.006404,0.005249,0.249945,0,0);-ms-transform:matrix(0.304953,-0.006404,0.005249,0.249945,0,0);-webkit-transform:matrix(0.304953,-0.006404,0.005249,0.249945,0,0);}
.ma4_c00173{transform:matrix(0.309758,-0.006195,0.004999,0.249950,0,0);-ms-transform:matrix(0.309758,-0.006195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.309758,-0.006195,0.004999,0.249950,0,0);}
.me0_c00173{transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310575,0.000000,0.000000,0.250000,0,0);}
.maa_c00173{transform:matrix(0.312656,-0.006566,0.005249,0.249945,0,0);-ms-transform:matrix(0.312656,-0.006566,0.005249,0.249945,0,0);-webkit-transform:matrix(0.312656,-0.006566,0.005249,0.249945,0,0);}
.md5_c00173{transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.322421,-0.006448,0.004999,0.249950,0,0);-ms-transform:matrix(0.322421,-0.006448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.322421,-0.006448,0.004999,0.249950,0,0);}
.m6f_c00173{transform:matrix(0.324645,-0.006493,0.004999,0.249950,0,0);-ms-transform:matrix(0.324645,-0.006493,0.004999,0.249950,0,0);-webkit-transform:matrix(0.324645,-0.006493,0.004999,0.249950,0,0);}
.m63_c00173{transform:matrix(0.326050,-0.006521,0.004999,0.249950,0,0);-ms-transform:matrix(0.326050,-0.006521,0.004999,0.249950,0,0);-webkit-transform:matrix(0.326050,-0.006521,0.004999,0.249950,0,0);}
.mbf_c00173{transform:matrix(0.334026,-0.004008,0.003000,0.249982,0,0);-ms-transform:matrix(0.334026,-0.004008,0.003000,0.249982,0,0);-webkit-transform:matrix(0.334026,-0.004008,0.003000,0.249982,0,0);}
.m1f_c00173{transform:matrix(0.344771,-0.006895,0.004999,0.249950,0,0);-ms-transform:matrix(0.344771,-0.006895,0.004999,0.249950,0,0);-webkit-transform:matrix(0.344771,-0.006895,0.004999,0.249950,0,0);}
.m89_c00173{transform:matrix(0.349190,-0.006984,0.004999,0.249950,0,0);-ms-transform:matrix(0.349190,-0.006984,0.004999,0.249950,0,0);-webkit-transform:matrix(0.349190,-0.006984,0.004999,0.249950,0,0);}
.mbe_c00173{transform:matrix(0.363684,-0.004364,0.003000,0.249982,0,0);-ms-transform:matrix(0.363684,-0.004364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.363684,-0.004364,0.003000,0.249982,0,0);}
.mfa_c00173{transform:matrix(0.377865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377865,0.000000,0.000000,0.250000,0,0);}
.mb6_c00173{transform:matrix(0.411864,-0.008649,0.005249,0.249945,0,0);-ms-transform:matrix(0.411864,-0.008649,0.005249,0.249945,0,0);-webkit-transform:matrix(0.411864,-0.008649,0.005249,0.249945,0,0);}
.md1_c00173{transform:matrix(0.421060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421060,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(0.428079,-0.008562,0.004999,0.249950,0,0);-ms-transform:matrix(0.428079,-0.008562,0.004999,0.249950,0,0);-webkit-transform:matrix(0.428079,-0.008562,0.004999,0.249950,0,0);}
.me_c00173{transform:matrix(0.434133,-0.008683,0.004999,0.249950,0,0);-ms-transform:matrix(0.434133,-0.008683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.434133,-0.008683,0.004999,0.249950,0,0);}
.md2_c00173{transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{transform:matrix(0.437582,-0.008752,0.004999,0.249950,0,0);-ms-transform:matrix(0.437582,-0.008752,0.004999,0.249950,0,0);-webkit-transform:matrix(0.437582,-0.008752,0.004999,0.249950,0,0);}
.m1_c00173{transform:matrix(0.458308,-0.009166,0.004999,0.249950,0,0);-ms-transform:matrix(0.458308,-0.009166,0.004999,0.249950,0,0);-webkit-transform:matrix(0.458308,-0.009166,0.004999,0.249950,0,0);}
.ma_c00173{transform:matrix(0.458603,-0.009172,0.004999,0.249950,0,0);-ms-transform:matrix(0.458603,-0.009172,0.004999,0.249950,0,0);-webkit-transform:matrix(0.458603,-0.009172,0.004999,0.249950,0,0);}
.mb7_c00173{transform:matrix(0.459769,-0.009655,0.005249,0.249945,0,0);-ms-transform:matrix(0.459769,-0.009655,0.005249,0.249945,0,0);-webkit-transform:matrix(0.459769,-0.009655,0.005249,0.249945,0,0);}
.med_c00173{transform:matrix(0.462260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462260,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.466682,-0.009334,0.004999,0.249950,0,0);-ms-transform:matrix(0.466682,-0.009334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.466682,-0.009334,0.004999,0.249950,0,0);}
.m35_c00173{transform:matrix(0.474385,-0.009488,0.004999,0.249950,0,0);-ms-transform:matrix(0.474385,-0.009488,0.004999,0.249950,0,0);-webkit-transform:matrix(0.474385,-0.009488,0.004999,0.249950,0,0);}
.m1d_c00173{transform:matrix(0.491117,-0.009822,0.004999,0.249950,0,0);-ms-transform:matrix(0.491117,-0.009822,0.004999,0.249950,0,0);-webkit-transform:matrix(0.491117,-0.009822,0.004999,0.249950,0,0);}
.md7_c00173{transform:matrix(0.497990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497990,0.000000,0.000000,0.250000,0,0);}
.me2_c00173{transform:matrix(0.500945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500945,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.509533,-0.010191,0.004999,0.249950,0,0);-ms-transform:matrix(0.509533,-0.010191,0.004999,0.249950,0,0);-webkit-transform:matrix(0.509533,-0.010191,0.004999,0.249950,0,0);}
.m2_c00173{transform:matrix(0.512667,-0.010253,0.004999,0.249950,0,0);-ms-transform:matrix(0.512667,-0.010253,0.004999,0.249950,0,0);-webkit-transform:matrix(0.512667,-0.010253,0.004999,0.249950,0,0);}
.mbd_c00173{transform:matrix(0.535511,-0.006426,0.003000,0.249982,0,0);-ms-transform:matrix(0.535511,-0.006426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.535511,-0.006426,0.003000,0.249982,0,0);}
.m42_c00173{transform:matrix(0.535603,-0.010712,0.004999,0.249950,0,0);-ms-transform:matrix(0.535603,-0.010712,0.004999,0.249950,0,0);-webkit-transform:matrix(0.535603,-0.010712,0.004999,0.249950,0,0);}
.ma3_c00173{transform:matrix(0.590407,-0.011808,0.004999,0.249950,0,0);-ms-transform:matrix(0.590407,-0.011808,0.004999,0.249950,0,0);-webkit-transform:matrix(0.590407,-0.011808,0.004999,0.249950,0,0);}
.m3b_c00173{transform:matrix(0.609883,-0.012198,0.004999,0.249950,0,0);-ms-transform:matrix(0.609883,-0.012198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.609883,-0.012198,0.004999,0.249950,0,0);}
.mf2_c00173{transform:matrix(0.642855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642855,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.657314,-0.013146,0.004999,0.249950,0,0);-ms-transform:matrix(0.657314,-0.013146,0.004999,0.249950,0,0);-webkit-transform:matrix(0.657314,-0.013146,0.004999,0.249950,0,0);}
.mda_c00173{transform:matrix(0.703095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703095,0.000000,0.000000,0.250000,0,0);}
.mb1_c00173{transform:matrix(0.841135,-0.017664,0.005249,0.249945,0,0);-ms-transform:matrix(0.841135,-0.017664,0.005249,0.249945,0,0);-webkit-transform:matrix(0.841135,-0.017664,0.005249,0.249945,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;}
.fsb_c00173{font-size:38.850000px;}
.fs10_c00173{font-size:49.350000px;}
.fs12_c00173{font-size:50.400000px;}
.fs11_c00173{font-size:51.450000px;}
.fs13_c00173{font-size:52.500000px;}
.fsd_c00173{font-size:52.511575px;}
.fsc_c00173{font-size:58.812964px;}
.fse_c00173{font-size:59.854309px;}
.fsf_c00173{font-size:60.904385px;}
.fs8_c00173{font-size:61.962389px;}
.fs2_c00173{font-size:64.062809px;}
.fs1_c00173{font-size:65.113019px;}
.fs9_c00173{font-size:68.263649px;}
.fs3_c00173{font-size:69.313859px;}
.fs4_c00173{font-size:70.364069px;}
.fsa_c00173{font-size:71.414279px;}
.fs0_c00173{font-size:72.464489px;}
.fs7_c00173{font-size:73.514699px;}
.fs5_c00173{font-size:75.615118px;}
.fs6_c00173{font-size:76.665328px;}
.y0_c00173{bottom:0.000000px;}
.ycb_c00173{bottom:174.091500px;}
.yca_c00173{bottom:192.181500px;}
.yc9_c00173{bottom:210.616500px;}
.yc8_c00173{bottom:237.018000px;}
.yc7_c00173{bottom:250.747500px;}
.yc3_c00173{bottom:258.837828px;}
.yc4_c00173{bottom:258.838296px;}
.yc5_c00173{bottom:258.838536px;}
.yc6_c00173{bottom:258.839238px;}
.yb9_c00173{bottom:272.431500px;}
.yba_c00173{bottom:272.719878px;}
.ybb_c00173{bottom:274.071138px;}
.ybc_c00173{bottom:274.541298px;}
.ybd_c00173{bottom:275.046738px;}
.ybe_c00173{bottom:275.305956px;}
.ybf_c00173{bottom:275.825400px;}
.yc0_c00173{bottom:276.491274px;}
.yc1_c00173{bottom:276.796320px;}
.yc2_c00173{bottom:276.974430px;}
.yb4_c00173{bottom:294.843575px;}
.yb5_c00173{bottom:295.966038px;}
.yb6_c00173{bottom:299.718513px;}
.yb7_c00173{bottom:300.026630px;}
.yb8_c00173{bottom:302.214039px;}
.ya7_c00173{bottom:311.047500px;}
.ya8_c00173{bottom:311.560414px;}
.ya9_c00173{bottom:311.827976px;}
.yaa_c00173{bottom:312.049043px;}
.yab_c00173{bottom:312.228813px;}
.yac_c00173{bottom:312.996059px;}
.yad_c00173{bottom:313.309389px;}
.yae_c00173{bottom:315.662628px;}
.yaf_c00173{bottom:316.235897px;}
.yb0_c00173{bottom:317.166406px;}
.yb1_c00173{bottom:318.394749px;}
.yb2_c00173{bottom:319.182595px;}
.yb3_c00173{bottom:319.891188px;}
.ya6_c00173{bottom:358.152000px;}
.ya0_c00173{bottom:374.764830px;}
.ya5_c00173{bottom:374.764950px;}
.y9f_c00173{bottom:374.765220px;}
.ya1_c00173{bottom:374.765340px;}
.y9e_c00173{bottom:374.765370px;}
.ya4_c00173{bottom:374.765460px;}
.y9d_c00173{bottom:374.765610px;}
.ya2_c00173{bottom:374.765940px;}
.ya3_c00173{bottom:374.766150px;}
.y9c_c00173{bottom:374.766300px;}
.y9a_c00173{bottom:397.430160px;}
.y9b_c00173{bottom:397.430610px;}
.y96_c00173{bottom:397.430670px;}
.y97_c00173{bottom:397.430730px;}
.y99_c00173{bottom:397.430790px;}
.y98_c00173{bottom:397.430880px;}
.y93_c00173{bottom:397.431060px;}
.y95_c00173{bottom:397.431150px;}
.y94_c00173{bottom:397.431240px;}
.y89_c00173{bottom:418.961940px;}
.y8a_c00173{bottom:419.185080px;}
.y8b_c00173{bottom:419.575410px;}
.y8c_c00173{bottom:419.908080px;}
.y8d_c00173{bottom:420.170010px;}
.y8e_c00173{bottom:420.554370px;}
.y8f_c00173{bottom:420.744390px;}
.y90_c00173{bottom:421.258710px;}
.y91_c00173{bottom:421.526490px;}
.y92_c00173{bottom:421.699470px;}
.y87_c00173{bottom:442.577340px;}
.y88_c00173{bottom:442.577430px;}
.y81_c00173{bottom:465.879510px;}
.y80_c00173{bottom:465.879660px;}
.y83_c00173{bottom:465.879810px;}
.y82_c00173{bottom:465.879840px;}
.y86_c00173{bottom:465.880020px;}
.y85_c00173{bottom:465.880110px;}
.y84_c00173{bottom:465.880230px;}
.y7f_c00173{bottom:465.880380px;}
.y76_c00173{bottom:485.935290px;}
.y77_c00173{bottom:486.058890px;}
.y78_c00173{bottom:486.501960px;}
.y79_c00173{bottom:487.131720px;}
.y7a_c00173{bottom:487.524060px;}
.y7b_c00173{bottom:487.961970px;}
.y7c_c00173{bottom:488.176020px;}
.y7d_c00173{bottom:488.694870px;}
.y7e_c00173{bottom:489.022050px;}
.y6c_c00173{bottom:509.699250px;}
.y6d_c00173{bottom:510.166260px;}
.y6e_c00173{bottom:510.760860px;}
.y6f_c00173{bottom:511.156770px;}
.y70_c00173{bottom:511.435620px;}
.y71_c00173{bottom:511.907610px;}
.y72_c00173{bottom:512.414940px;}
.y73_c00173{bottom:512.842890px;}
.y74_c00173{bottom:513.015060px;}
.y75_c00173{bottom:513.960420px;}
.y65_c00173{bottom:532.112820px;}
.y66_c00173{bottom:532.837050px;}
.y67_c00173{bottom:533.114790px;}
.y68_c00173{bottom:533.873250px;}
.y69_c00173{bottom:534.197190px;}
.y6a_c00173{bottom:534.608040px;}
.y6b_c00173{bottom:535.307730px;}
.y5c_c00173{bottom:554.259720px;}
.y5d_c00173{bottom:555.262020px;}
.y5e_c00173{bottom:555.957900px;}
.y5f_c00173{bottom:556.547220px;}
.y60_c00173{bottom:556.769940px;}
.y61_c00173{bottom:557.454060px;}
.y62_c00173{bottom:557.804910px;}
.y63_c00173{bottom:558.255210px;}
.y64_c00173{bottom:559.139310px;}
.y52_c00173{bottom:577.485720px;}
.y53_c00173{bottom:578.086230px;}
.y54_c00173{bottom:578.391870px;}
.y55_c00173{bottom:578.977680px;}
.y56_c00173{bottom:579.820170px;}
.y57_c00173{bottom:580.304430px;}
.y58_c00173{bottom:581.166870px;}
.y59_c00173{bottom:581.525520px;}
.y5b_c00173{bottom:582.488190px;}
.y5a_c00173{bottom:582.490350px;}
.y49_c00173{bottom:599.629230px;}
.y4a_c00173{bottom:600.044970px;}
.y4b_c00173{bottom:600.495570px;}
.y4c_c00173{bottom:601.086030px;}
.y4d_c00173{bottom:601.403670px;}
.y4e_c00173{bottom:601.876230px;}
.y4f_c00173{bottom:602.466240px;}
.y50_c00173{bottom:603.290880px;}
.y51_c00173{bottom:604.311630px;}
.y45_c00173{bottom:626.788170px;}
.y48_c00173{bottom:626.788410px;}
.y47_c00173{bottom:626.788740px;}
.y44_c00173{bottom:626.788830px;}
.y46_c00173{bottom:626.788890px;}
.y43_c00173{bottom:626.789190px;}
.y40_c00173{bottom:644.190720px;}
.y41_c00173{bottom:644.883090px;}
.y42_c00173{bottom:645.931380px;}
.y38_c00173{bottom:666.877920px;}
.y39_c00173{bottom:667.406520px;}
.y3a_c00173{bottom:667.563660px;}
.y3b_c00173{bottom:668.030760px;}
.y3c_c00173{bottom:668.877000px;}
.y3d_c00173{bottom:669.471780px;}
.y3e_c00173{bottom:669.877710px;}
.y3f_c00173{bottom:670.509420px;}
.y36_c00173{bottom:692.659050px;}
.y35_c00173{bottom:692.659290px;}
.y37_c00173{bottom:692.659650px;}
.y2a_c00173{bottom:713.590260px;}
.y2b_c00173{bottom:714.104160px;}
.y2c_c00173{bottom:714.444060px;}
.y2d_c00173{bottom:715.012020px;}
.y2e_c00173{bottom:715.580130px;}
.y2f_c00173{bottom:716.263920px;}
.y30_c00173{bottom:716.913690px;}
.y31_c00173{bottom:717.726570px;}
.y32_c00173{bottom:718.105350px;}
.y33_c00173{bottom:718.748430px;}
.y34_c00173{bottom:719.048010px;}
.y21_c00173{bottom:736.814610px;}
.y22_c00173{bottom:737.267910px;}
.y23_c00173{bottom:737.883600px;}
.y24_c00173{bottom:738.075060px;}
.y25_c00173{bottom:738.606900px;}
.y26_c00173{bottom:739.270890px;}
.y27_c00173{bottom:739.462470px;}
.y28_c00173{bottom:739.967610px;}
.y29_c00173{bottom:740.325120px;}
.y1d_c00173{bottom:761.663310px;}
.y1e_c00173{bottom:762.412620px;}
.y1f_c00173{bottom:766.107000px;}
.y20_c00173{bottom:766.648560px;}
.y12_c00173{bottom:787.314780px;}
.y13_c00173{bottom:787.756740px;}
.y14_c00173{bottom:788.357550px;}
.y15_c00173{bottom:788.715210px;}
.y16_c00173{bottom:789.410640px;}
.y17_c00173{bottom:789.771990px;}
.y18_c00173{bottom:790.136550px;}
.y19_c00173{bottom:790.806960px;}
.y1a_c00173{bottom:790.996740px;}
.y1b_c00173{bottom:791.238930px;}
.y1c_c00173{bottom:791.745090px;}
.y8_c00173{bottom:810.539880px;}
.y9_c00173{bottom:811.188540px;}
.ya_c00173{bottom:812.398500px;}
.yb_c00173{bottom:812.634660px;}
.yc_c00173{bottom:813.349500px;}
.yd_c00173{bottom:813.845910px;}
.ye_c00173{bottom:814.264980px;}
.yf_c00173{bottom:815.037120px;}
.y10_c00173{bottom:815.379510px;}
.y11_c00173{bottom:815.905380px;}
.y1_c00173{bottom:834.894000px;}
.y2_c00173{bottom:835.466490px;}
.y3_c00173{bottom:835.914480px;}
.y4_c00173{bottom:836.465610px;}
.y5_c00173{bottom:836.924640px;}
.y6_c00173{bottom:837.335400px;}
.y7_c00173{bottom:837.805440px;}
.hd_c00173{height:38.850000px;}
.h12_c00173{height:49.350000px;}
.h14_c00173{height:50.400000px;}
.h13_c00173{height:51.450000px;}
.h15_c00173{height:52.500000px;}
.hf_c00173{height:52.511575px;}
.he_c00173{height:58.812964px;}
.h10_c00173{height:59.854309px;}
.h11_c00173{height:60.904385px;}
.ha_c00173{height:61.962389px;}
.h4_c00173{height:64.062809px;}
.h3_c00173{height:65.113019px;}
.hb_c00173{height:68.263649px;}
.h5_c00173{height:69.313859px;}
.h6_c00173{height:70.364069px;}
.hc_c00173{height:71.414279px;}
.h2_c00173{height:72.464489px;}
.h9_c00173{height:73.514699px;}
.h7_c00173{height:75.615118px;}
.h8_c00173{height:76.665328px;}
.h0_c00173{height:1008.450000px;}
.h1_c00173{height:1008.750000px;}
.w0_c00173{width:678.450000px;}
.w1_c00173{width:678.750000px;}
.x0_c00173{left:0.000000px;}
.x89_c00173{left:130.680000px;}
.x83_c00173{left:140.670000px;}
.x24_c00173{left:154.597440px;}
.x72_c00173{left:157.215000px;}
.x8_c00173{left:160.842720px;}
.x62_c00173{left:162.074640px;}
.x4f_c00173{left:163.181970px;}
.x6d_c00173{left:164.402130px;}
.x84_c00173{left:166.320000px;}
.x59_c00173{left:172.985100px;}
.x8f_c00173{left:174.150000px;}
.x38_c00173{left:177.341970px;}
.x73_c00173{left:181.639500px;}
.x7e_c00173{left:184.140000px;}
.x33_c00173{left:188.597340px;}
.x63_c00173{left:189.888300px;}
.x25_c00173{left:191.321850px;}
.x11_c00173{left:194.554680px;}
.x34_c00173{left:196.829490px;}
.x1d_c00173{left:198.098970px;}
.x9_c00173{left:201.378960px;}
.x90_c00173{left:202.770000px;}
.x44_c00173{left:204.274800px;}
.x7a_c00173{left:205.588500px;}
.x5a_c00173{left:209.919510px;}
.x8a_c00173{left:211.410000px;}
.x74_c00173{left:213.468000px;}
.x26_c00173{left:215.594760px;}
.x6a_c00173{left:219.763650px;}
.x35_c00173{left:221.384970px;}
.x39_c00173{left:223.515090px;}
.x45_c00173{left:226.159440px;}
.x5e_c00173{left:230.567550px;}
.x47_c00173{left:232.932060px;}
.x50_c00173{left:235.557930px;}
.x85_c00173{left:236.790000px;}
.x64_c00173{left:238.741530px;}
.x12_c00173{left:240.726630px;}
.x7f_c00173{left:246.510000px;}
.x1e_c00173{left:249.366660px;}
.x27_c00173{left:256.147620px;}
.x55_c00173{left:258.023760px;}
.x5b_c00173{left:262.340880px;}
.x1a_c00173{left:264.057630px;}
.x1f_c00173{left:265.317210px;}
.x13_c00173{left:268.288500px;}
.x86_c00173{left:270.810000px;}
.x2f_c00173{left:274.315260px;}
.x1_c00173{left:277.558500px;}
.x65_c00173{left:280.360020px;}
.x48_c00173{left:282.657030px;}
.x60_c00173{left:284.846610px;}
.x42_c00173{left:287.764020px;}
.xa_c00173{left:291.692160px;}
.x3a_c00173{left:293.411580px;}
.x5c_c00173{left:295.013100px;}
.x28_c00173{left:296.707980px;}
.x1b_c00173{left:299.722410px;}
.x2_c00173{left:306.183000px;}
.x20_c00173{left:309.616290px;}
.x66_c00173{left:313.039350px;}
.x36_c00173{left:318.609420px;}
.x14_c00173{left:321.742470px;}
.x6b_c00173{left:323.734230px;}
.x49_c00173{left:324.803100px;}
.x3_c00173{left:328.582500px;}
.x87_c00173{left:329.670000px;}
.x30_c00173{left:332.376480px;}
.x61_c00173{left:333.995760px;}
.x91_c00173{left:335.340000px;}
.xb_c00173{left:336.362730px;}
.x51_c00173{left:339.288690px;}
.x4a_c00173{left:340.741020px;}
.x92_c00173{left:343.440000px;}
.x29_c00173{left:345.528330px;}
.x15_c00173{left:349.563870px;}
.x37_c00173{left:351.845580px;}
.x3b_c00173{left:355.059420px;}
.x4_c00173{left:356.139000px;}
.x7b_c00173{left:357.373500px;}
.x67_c00173{left:361.068870px;}
.x56_c00173{left:362.255010px;}
.x43_c00173{left:363.626610px;}
.x21_c00173{left:364.949640px;}
.xc_c00173{left:367.410720px;}
.x80_c00173{left:369.090000px;}
.x52_c00173{left:371.692170px;}
.x3c_c00173{left:373.423770px;}
.x16_c00173{left:377.620800px;}
.x5_c00173{left:379.090500px;}
.x22_c00173{left:380.906190px;}
.x6c_c00173{left:382.335660px;}
.x68_c00173{left:384.900600px;}
.x3d_c00173{left:387.196290px;}
.x4b_c00173{left:389.577870px;}
.x2a_c00173{left:391.972410px;}
.xd_c00173{left:393.616320px;}
.x88_c00173{left:397.440000px;}
.x6_c00173{left:399.628500px;}
.x75_c00173{left:404.281500px;}
.x8b_c00173{left:406.080000px;}
.x57_c00173{left:408.404820px;}
.x6e_c00173{left:411.232830px;}
.x53_c00173{left:412.717860px;}
.x4c_c00173{left:414.623370px;}
.x5d_c00173{left:419.807550px;}
.x31_c00173{left:421.224000px;}
.x7_c00173{left:423.130500px;}
.x46_c00173{left:424.408230px;}
.x17_c00173{left:429.223530px;}
.x3e_c00173{left:434.726280px;}
.x6f_c00173{left:436.078260px;}
.xe_c00173{left:441.902190px;}
.x18_c00173{left:443.814570px;}
.x4d_c00173{left:446.817240px;}
.x76_c00173{left:448.591500px;}
.x2b_c00173{left:450.023370px;}
.x23_c00173{left:452.775180px;}
.x79_c00173{left:454.390418px;}
.x70_c00173{left:462.004140px;}
.xf_c00173{left:463.298400px;}
.x7c_c00173{left:464.382000px;}
.x93_c00173{left:466.830000px;}
.x3f_c00173{left:469.832820px;}
.x5f_c00173{left:472.264680px;}
.x1c_c00173{left:475.662900px;}
.x2c_c00173{left:477.065610px;}
.x54_c00173{left:482.666340px;}
.x94_c00173{left:491.400000px;}
.x10_c00173{left:496.119510px;}
.x19_c00173{left:501.340110px;}
.x69_c00173{left:504.233220px;}
.x77_c00173{left:507.084000px;}
.x4e_c00173{left:509.929800px;}
.x71_c00173{left:515.475030px;}
.x40_c00173{left:518.981970px;}
.x2d_c00173{left:522.950100px;}
.x8c_c00173{left:527.310000px;}
.x8d_c00173{left:537.030000px;}
.x95_c00173{left:538.380000px;}
.x2e_c00173{left:544.306650px;}
.x58_c00173{left:548.854080px;}
.x41_c00173{left:552.199260px;}
.x32_c00173{left:556.521090px;}
.x96_c00173{left:558.900000px;}
.x7d_c00173{left:560.134500px;}
.x8e_c00173{left:562.680000px;}
.x81_c00173{left:573.750000px;}
.x78_c00173{left:578.343000px;}
.x82_c00173{left:589.140000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.fsb_c00173{font-size:34.533333pt;}
.fs10_c00173{font-size:43.866667pt;}
.fs12_c00173{font-size:44.800000pt;}
.fs11_c00173{font-size:45.733333pt;}
.fs13_c00173{font-size:46.666667pt;}
.fsd_c00173{font-size:46.676956pt;}
.fsc_c00173{font-size:52.278190pt;}
.fse_c00173{font-size:53.203830pt;}
.fsf_c00173{font-size:54.137231pt;}
.fs8_c00173{font-size:55.077679pt;}
.fs2_c00173{font-size:56.944719pt;}
.fs1_c00173{font-size:57.878239pt;}
.fs9_c00173{font-size:60.678799pt;}
.fs3_c00173{font-size:61.612319pt;}
.fs4_c00173{font-size:62.545839pt;}
.fsa_c00173{font-size:63.479359pt;}
.fs0_c00173{font-size:64.412879pt;}
.fs7_c00173{font-size:65.346399pt;}
.fs5_c00173{font-size:67.213439pt;}
.fs6_c00173{font-size:68.146959pt;}
.y0_c00173{bottom:0.000000pt;}
.ycb_c00173{bottom:154.748000pt;}
.yca_c00173{bottom:170.828000pt;}
.yc9_c00173{bottom:187.214667pt;}
.yc8_c00173{bottom:210.682667pt;}
.yc7_c00173{bottom:222.886667pt;}
.yc3_c00173{bottom:230.078069pt;}
.yc4_c00173{bottom:230.078485pt;}
.yc5_c00173{bottom:230.078699pt;}
.yc6_c00173{bottom:230.079323pt;}
.yb9_c00173{bottom:242.161333pt;}
.yba_c00173{bottom:242.417669pt;}
.ybb_c00173{bottom:243.618789pt;}
.ybc_c00173{bottom:244.036709pt;}
.ybd_c00173{bottom:244.485989pt;}
.ybe_c00173{bottom:244.716405pt;}
.ybf_c00173{bottom:245.178133pt;}
.yc0_c00173{bottom:245.770021pt;}
.yc1_c00173{bottom:246.041173pt;}
.yc2_c00173{bottom:246.199493pt;}
.yb4_c00173{bottom:262.083177pt;}
.yb5_c00173{bottom:263.080923pt;}
.yb6_c00173{bottom:266.416456pt;}
.yb7_c00173{bottom:266.690337pt;}
.yb8_c00173{bottom:268.634701pt;}
.ya7_c00173{bottom:276.486667pt;}
.ya8_c00173{bottom:276.942591pt;}
.ya9_c00173{bottom:277.180423pt;}
.yaa_c00173{bottom:277.376927pt;}
.yab_c00173{bottom:277.536723pt;}
.yac_c00173{bottom:278.218719pt;}
.yad_c00173{bottom:278.497235pt;}
.yae_c00173{bottom:280.589003pt;}
.yaf_c00173{bottom:281.098575pt;}
.yb0_c00173{bottom:281.925695pt;}
.yb1_c00173{bottom:283.017555pt;}
.yb2_c00173{bottom:283.717863pt;}
.yb3_c00173{bottom:284.347723pt;}
.ya6_c00173{bottom:318.357333pt;}
.ya0_c00173{bottom:333.124293pt;}
.ya5_c00173{bottom:333.124400pt;}
.y9f_c00173{bottom:333.124640pt;}
.ya1_c00173{bottom:333.124747pt;}
.y9e_c00173{bottom:333.124773pt;}
.ya4_c00173{bottom:333.124853pt;}
.y9d_c00173{bottom:333.124987pt;}
.ya2_c00173{bottom:333.125280pt;}
.ya3_c00173{bottom:333.125467pt;}
.y9c_c00173{bottom:333.125600pt;}
.y9a_c00173{bottom:353.271253pt;}
.y9b_c00173{bottom:353.271653pt;}
.y96_c00173{bottom:353.271707pt;}
.y97_c00173{bottom:353.271760pt;}
.y99_c00173{bottom:353.271813pt;}
.y98_c00173{bottom:353.271893pt;}
.y93_c00173{bottom:353.272053pt;}
.y95_c00173{bottom:353.272133pt;}
.y94_c00173{bottom:353.272213pt;}
.y89_c00173{bottom:372.410613pt;}
.y8a_c00173{bottom:372.608960pt;}
.y8b_c00173{bottom:372.955920pt;}
.y8c_c00173{bottom:373.251627pt;}
.y8d_c00173{bottom:373.484453pt;}
.y8e_c00173{bottom:373.826107pt;}
.y8f_c00173{bottom:373.995013pt;}
.y90_c00173{bottom:374.452187pt;}
.y91_c00173{bottom:374.690213pt;}
.y92_c00173{bottom:374.843973pt;}
.y87_c00173{bottom:393.402080pt;}
.y88_c00173{bottom:393.402160pt;}
.y81_c00173{bottom:414.115120pt;}
.y80_c00173{bottom:414.115253pt;}
.y83_c00173{bottom:414.115387pt;}
.y82_c00173{bottom:414.115413pt;}
.y86_c00173{bottom:414.115573pt;}
.y85_c00173{bottom:414.115653pt;}
.y84_c00173{bottom:414.115760pt;}
.y7f_c00173{bottom:414.115893pt;}
.y76_c00173{bottom:431.942480pt;}
.y77_c00173{bottom:432.052347pt;}
.y78_c00173{bottom:432.446187pt;}
.y79_c00173{bottom:433.005973pt;}
.y7a_c00173{bottom:433.354720pt;}
.y7b_c00173{bottom:433.743973pt;}
.y7c_c00173{bottom:433.934240pt;}
.y7d_c00173{bottom:434.395440pt;}
.y7e_c00173{bottom:434.686267pt;}
.y6c_c00173{bottom:453.066000pt;}
.y6d_c00173{bottom:453.481120pt;}
.y6e_c00173{bottom:454.009653pt;}
.y6f_c00173{bottom:454.361573pt;}
.y70_c00173{bottom:454.609440pt;}
.y71_c00173{bottom:455.028987pt;}
.y72_c00173{bottom:455.479947pt;}
.y73_c00173{bottom:455.860347pt;}
.y74_c00173{bottom:456.013387pt;}
.y75_c00173{bottom:456.853707pt;}
.y65_c00173{bottom:472.989173pt;}
.y66_c00173{bottom:473.632933pt;}
.y67_c00173{bottom:473.879813pt;}
.y68_c00173{bottom:474.554000pt;}
.y69_c00173{bottom:474.841947pt;}
.y6a_c00173{bottom:475.207147pt;}
.y6b_c00173{bottom:475.829093pt;}
.y5c_c00173{bottom:492.675307pt;}
.y5d_c00173{bottom:493.566240pt;}
.y5e_c00173{bottom:494.184800pt;}
.y5f_c00173{bottom:494.708640pt;}
.y60_c00173{bottom:494.906613pt;}
.y61_c00173{bottom:495.514720pt;}
.y62_c00173{bottom:495.826587pt;}
.y63_c00173{bottom:496.226853pt;}
.y64_c00173{bottom:497.012720pt;}
.y52_c00173{bottom:513.320640pt;}
.y53_c00173{bottom:513.854427pt;}
.y54_c00173{bottom:514.126107pt;}
.y55_c00173{bottom:514.646827pt;}
.y56_c00173{bottom:515.395707pt;}
.y57_c00173{bottom:515.826160pt;}
.y58_c00173{bottom:516.592773pt;}
.y59_c00173{bottom:516.911573pt;}
.y5b_c00173{bottom:517.767280pt;}
.y5a_c00173{bottom:517.769200pt;}
.y49_c00173{bottom:533.003760pt;}
.y4a_c00173{bottom:533.373307pt;}
.y4b_c00173{bottom:533.773840pt;}
.y4c_c00173{bottom:534.298693pt;}
.y4d_c00173{bottom:534.581040pt;}
.y4e_c00173{bottom:535.001093pt;}
.y4f_c00173{bottom:535.525547pt;}
.y50_c00173{bottom:536.258560pt;}
.y51_c00173{bottom:537.165893pt;}
.y45_c00173{bottom:557.145040pt;}
.y48_c00173{bottom:557.145253pt;}
.y47_c00173{bottom:557.145547pt;}
.y44_c00173{bottom:557.145627pt;}
.y46_c00173{bottom:557.145680pt;}
.y43_c00173{bottom:557.145947pt;}
.y40_c00173{bottom:572.613973pt;}
.y41_c00173{bottom:573.229413pt;}
.y42_c00173{bottom:574.161227pt;}
.y38_c00173{bottom:592.780373pt;}
.y39_c00173{bottom:593.250240pt;}
.y3a_c00173{bottom:593.389920pt;}
.y3b_c00173{bottom:593.805120pt;}
.y3c_c00173{bottom:594.557333pt;}
.y3d_c00173{bottom:595.086027pt;}
.y3e_c00173{bottom:595.446853pt;}
.y3f_c00173{bottom:596.008373pt;}
.y36_c00173{bottom:615.696933pt;}
.y35_c00173{bottom:615.697147pt;}
.y37_c00173{bottom:615.697467pt;}
.y2a_c00173{bottom:634.302453pt;}
.y2b_c00173{bottom:634.759253pt;}
.y2c_c00173{bottom:635.061387pt;}
.y2d_c00173{bottom:635.566240pt;}
.y2e_c00173{bottom:636.071227pt;}
.y2f_c00173{bottom:636.679040pt;}
.y30_c00173{bottom:637.256613pt;}
.y31_c00173{bottom:637.979173pt;}
.y32_c00173{bottom:638.315867pt;}
.y33_c00173{bottom:638.887493pt;}
.y34_c00173{bottom:639.153787pt;}
.y21_c00173{bottom:654.946320pt;}
.y22_c00173{bottom:655.349253pt;}
.y23_c00173{bottom:655.896533pt;}
.y24_c00173{bottom:656.066720pt;}
.y25_c00173{bottom:656.539467pt;}
.y26_c00173{bottom:657.129680pt;}
.y27_c00173{bottom:657.299973pt;}
.y28_c00173{bottom:657.748987pt;}
.y29_c00173{bottom:658.066773pt;}
.y1d_c00173{bottom:677.034053pt;}
.y1e_c00173{bottom:677.700107pt;}
.y1f_c00173{bottom:680.984000pt;}
.y20_c00173{bottom:681.465387pt;}
.y12_c00173{bottom:699.835360pt;}
.y13_c00173{bottom:700.228213pt;}
.y14_c00173{bottom:700.762267pt;}
.y15_c00173{bottom:701.080187pt;}
.y16_c00173{bottom:701.698347pt;}
.y17_c00173{bottom:702.019547pt;}
.y18_c00173{bottom:702.343600pt;}
.y19_c00173{bottom:702.939520pt;}
.y1a_c00173{bottom:703.108213pt;}
.y1b_c00173{bottom:703.323493pt;}
.y1c_c00173{bottom:703.773413pt;}
.y8_c00173{bottom:720.479893pt;}
.y9_c00173{bottom:721.056480pt;}
.ya_c00173{bottom:722.132000pt;}
.yb_c00173{bottom:722.341920pt;}
.yc_c00173{bottom:722.977333pt;}
.yd_c00173{bottom:723.418587pt;}
.ye_c00173{bottom:723.791093pt;}
.yf_c00173{bottom:724.477440pt;}
.y10_c00173{bottom:724.781787pt;}
.y11_c00173{bottom:725.249227pt;}
.y1_c00173{bottom:742.128000pt;}
.y2_c00173{bottom:742.636880pt;}
.y3_c00173{bottom:743.035093pt;}
.y4_c00173{bottom:743.524987pt;}
.y5_c00173{bottom:743.933013pt;}
.y6_c00173{bottom:744.298133pt;}
.y7_c00173{bottom:744.715947pt;}
.hd_c00173{height:34.533333pt;}
.h12_c00173{height:43.866667pt;}
.h14_c00173{height:44.800000pt;}
.h13_c00173{height:45.733333pt;}
.h15_c00173{height:46.666667pt;}
.hf_c00173{height:46.676956pt;}
.he_c00173{height:52.278190pt;}
.h10_c00173{height:53.203830pt;}
.h11_c00173{height:54.137231pt;}
.ha_c00173{height:55.077679pt;}
.h4_c00173{height:56.944719pt;}
.h3_c00173{height:57.878239pt;}
.hb_c00173{height:60.678799pt;}
.h5_c00173{height:61.612319pt;}
.h6_c00173{height:62.545839pt;}
.hc_c00173{height:63.479359pt;}
.h2_c00173{height:64.412879pt;}
.h9_c00173{height:65.346399pt;}
.h7_c00173{height:67.213439pt;}
.h8_c00173{height:68.146959pt;}
.h0_c00173{height:896.400000pt;}
.h1_c00173{height:896.666667pt;}
.w0_c00173{width:603.066667pt;}
.w1_c00173{width:603.333333pt;}
.x0_c00173{left:0.000000pt;}
.x89_c00173{left:116.160000pt;}
.x83_c00173{left:125.040000pt;}
.x24_c00173{left:137.419947pt;}
.x72_c00173{left:139.746667pt;}
.x8_c00173{left:142.971307pt;}
.x62_c00173{left:144.066347pt;}
.x4f_c00173{left:145.050640pt;}
.x6d_c00173{left:146.135227pt;}
.x84_c00173{left:147.840000pt;}
.x59_c00173{left:153.764533pt;}
.x8f_c00173{left:154.800000pt;}
.x38_c00173{left:157.637307pt;}
.x73_c00173{left:161.457333pt;}
.x7e_c00173{left:163.680000pt;}
.x33_c00173{left:167.642080pt;}
.x63_c00173{left:168.789600pt;}
.x25_c00173{left:170.063867pt;}
.x11_c00173{left:172.937493pt;}
.x34_c00173{left:174.959547pt;}
.x1d_c00173{left:176.087973pt;}
.x9_c00173{left:179.003520pt;}
.x90_c00173{left:180.240000pt;}
.x44_c00173{left:181.577600pt;}
.x7a_c00173{left:182.745333pt;}
.x5a_c00173{left:186.595120pt;}
.x8a_c00173{left:187.920000pt;}
.x74_c00173{left:189.749333pt;}
.x26_c00173{left:191.639787pt;}
.x6a_c00173{left:195.345467pt;}
.x35_c00173{left:196.786640pt;}
.x39_c00173{left:198.680080pt;}
.x45_c00173{left:201.030613pt;}
.x5e_c00173{left:204.948933pt;}
.x47_c00173{left:207.050720pt;}
.x50_c00173{left:209.384827pt;}
.x85_c00173{left:210.480000pt;}
.x64_c00173{left:212.214693pt;}
.x12_c00173{left:213.979227pt;}
.x7f_c00173{left:219.120000pt;}
.x1e_c00173{left:221.659253pt;}
.x27_c00173{left:227.686773pt;}
.x55_c00173{left:229.354453pt;}
.x5b_c00173{left:233.191893pt;}
.x1a_c00173{left:234.717893pt;}
.x1f_c00173{left:235.837520pt;}
.x13_c00173{left:238.478667pt;}
.x86_c00173{left:240.720000pt;}
.x2f_c00173{left:243.835787pt;}
.x1_c00173{left:246.718667pt;}
.x65_c00173{left:249.208907pt;}
.x48_c00173{left:251.250693pt;}
.x60_c00173{left:253.196987pt;}
.x42_c00173{left:255.790240pt;}
.xa_c00173{left:259.281920pt;}
.x3a_c00173{left:260.810293pt;}
.x5c_c00173{left:262.233867pt;}
.x28_c00173{left:263.740427pt;}
.x1b_c00173{left:266.419920pt;}
.x2_c00173{left:272.162667pt;}
.x20_c00173{left:275.214480pt;}
.x66_c00173{left:278.257200pt;}
.x36_c00173{left:283.208373pt;}
.x14_c00173{left:285.993307pt;}
.x6b_c00173{left:287.763760pt;}
.x49_c00173{left:288.713867pt;}
.x3_c00173{left:292.073333pt;}
.x87_c00173{left:293.040000pt;}
.x30_c00173{left:295.445760pt;}
.x61_c00173{left:296.885120pt;}
.x91_c00173{left:298.080000pt;}
.xb_c00173{left:298.989093pt;}
.x51_c00173{left:301.589947pt;}
.x4a_c00173{left:302.880907pt;}
.x92_c00173{left:305.280000pt;}
.x29_c00173{left:307.136293pt;}
.x15_c00173{left:310.723440pt;}
.x37_c00173{left:312.751627pt;}
.x3b_c00173{left:315.608373pt;}
.x4_c00173{left:316.568000pt;}
.x7b_c00173{left:317.665333pt;}
.x67_c00173{left:320.950107pt;}
.x56_c00173{left:322.004453pt;}
.x43_c00173{left:323.223653pt;}
.x21_c00173{left:324.399680pt;}
.xc_c00173{left:326.587307pt;}
.x80_c00173{left:328.080000pt;}
.x52_c00173{left:330.393040pt;}
.x3c_c00173{left:331.932240pt;}
.x16_c00173{left:335.662933pt;}
.x5_c00173{left:336.969333pt;}
.x22_c00173{left:338.583280pt;}
.x6c_c00173{left:339.853920pt;}
.x68_c00173{left:342.133867pt;}
.x3d_c00173{left:344.174480pt;}
.x4b_c00173{left:346.291440pt;}
.x2a_c00173{left:348.419920pt;}
.xd_c00173{left:349.881173pt;}
.x88_c00173{left:353.280000pt;}
.x6_c00173{left:355.225333pt;}
.x75_c00173{left:359.361333pt;}
.x8b_c00173{left:360.960000pt;}
.x57_c00173{left:363.026507pt;}
.x6e_c00173{left:365.540293pt;}
.x53_c00173{left:366.860320pt;}
.x4c_c00173{left:368.554107pt;}
.x5d_c00173{left:373.162267pt;}
.x31_c00173{left:374.421333pt;}
.x7_c00173{left:376.116000pt;}
.x46_c00173{left:377.251760pt;}
.x17_c00173{left:381.532027pt;}
.x3e_c00173{left:386.423360pt;}
.x6f_c00173{left:387.625120pt;}
.xe_c00173{left:392.801947pt;}
.x18_c00173{left:394.501840pt;}
.x4d_c00173{left:397.170880pt;}
.x76_c00173{left:398.748000pt;}
.x2b_c00173{left:400.020773pt;}
.x23_c00173{left:402.466827pt;}
.x79_c00173{left:403.902593pt;}
.x70_c00173{left:410.670347pt;}
.xf_c00173{left:411.820800pt;}
.x7c_c00173{left:412.784000pt;}
.x93_c00173{left:414.960000pt;}
.x3f_c00173{left:417.629173pt;}
.x5f_c00173{left:419.790827pt;}
.x1c_c00173{left:422.811467pt;}
.x2c_c00173{left:424.058320pt;}
.x54_c00173{left:429.036747pt;}
.x94_c00173{left:436.800000pt;}
.x10_c00173{left:440.995120pt;}
.x19_c00173{left:445.635653pt;}
.x69_c00173{left:448.207307pt;}
.x77_c00173{left:450.741333pt;}
.x4e_c00173{left:453.270933pt;}
.x71_c00173{left:458.200027pt;}
.x40_c00173{left:461.317307pt;}
.x2d_c00173{left:464.844533pt;}
.x8c_c00173{left:468.720000pt;}
.x8d_c00173{left:477.360000pt;}
.x95_c00173{left:478.560000pt;}
.x2e_c00173{left:483.828133pt;}
.x58_c00173{left:487.870293pt;}
.x41_c00173{left:490.843787pt;}
.x32_c00173{left:494.685413pt;}
.x96_c00173{left:496.800000pt;}
.x7d_c00173{left:497.897333pt;}
.x8e_c00173{left:500.160000pt;}
.x81_c00173{left:510.000000pt;}
.x78_c00173{left:514.082667pt;}
.x82_c00173{left:523.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_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_2f6c0d3825a5d54c0b922384.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;}
.mc3_c00174{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);}
.md3_c00174{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);}
.mcb_c00174{transform:matrix(0.046775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00174{transform:matrix(0.078375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078375,0.000000,0.000000,0.250000,0,0);}
.me1_c00174{transform:matrix(0.102620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102620,0.000000,0.000000,0.250000,0,0);}
.me7_c00174{transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);}
.m103_c00174{transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00174{transform:matrix(0.133415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133415,0.000000,0.000000,0.250000,0,0);}
.mee_c00174{transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);}
.m10d_c00174{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);}
.me5_c00174{transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);}
.ma7_c00174{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);}
.m108_c00174{transform:matrix(0.140555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140555,0.000000,0.000000,0.250000,0,0);}
.mc0_c00174{transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);}
.m67_c00174{transform:matrix(0.143720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143720,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.m47_c00174{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);}
.ma9_c00174{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);}
.mf_c00174{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);}
.mde_c00174{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);}
.m20_c00174{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);}
.m3d_c00174{transform:matrix(0.150940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150940,0.000000,0.000000,0.250000,0,0);}
.mbf_c00174{transform:matrix(0.151585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151585,0.000000,0.000000,0.250000,0,0);}
.m7c_c00174{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);}
.m21_c00174{transform:matrix(0.154260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154260,0.000000,0.000000,0.250000,0,0);}
.m9b_c00174{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);}
.m32_c00174{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);}
.mcf_c00174{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);}
.m79_c00174{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);}
.m5a_c00174{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);}
.m68_c00174{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);}
.mcd_c00174{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);}
.m5c_c00174{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.mb8_c00174{transform:matrix(0.161190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161190,0.000000,0.000000,0.250000,0,0);}
.m70_c00174{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);}
.m12_c00174{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);}
.m10c_c00174{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);}
.m33_c00174{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);}
.md8_c00174{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);}
.mdc_c00174{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);}
.m52_c00174{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);}
.mf8_c00174{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);}
.m9_c00174{transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);}
.mb7_c00174{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);}
.mcc_c00174{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);}
.m46_c00174{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);}
.m6e_c00174{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.mb6_c00174{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);}
.mb2_c00174{transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166920,0.000000,0.000000,0.250000,0,0);}
.m6c_c00174{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);}
.m9c_c00174{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m2d_c00174{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);}
.md0_c00174{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);}
.mf6_c00174{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);}
.maf_c00174{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);}
.m65_c00174{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{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);}
.m3c_c00174{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);}
.ma6_c00174{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);}
.m45_c00174{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);}
.m98_c00174{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);}
.m115_c00174{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);}
.mce_c00174{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);}
.mf7_c00174{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{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);}
.mc8_c00174{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);}
.md7_c00174{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);}
.m2e_c00174{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);}
.m113_c00174{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);}
.med_c00174{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);}
.mb3_c00174{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);}
.meb_c00174{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);}
.m8_c00174{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);}
.m13_c00174{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);}
.mb9_c00174{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);}
.mad_c00174{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);}
.m30_c00174{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);}
.mbd_c00174{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);}
.mab_c00174{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);}
.m58_c00174{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);}
.m18_c00174{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);}
.mec_c00174{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);}
.m110_c00174{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);}
.m14_c00174{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);}
.ma8_c00174{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);}
.m7d_c00174{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);}
.md1_c00174{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);}
.m60_c00174{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);}
.m2b_c00174{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);}
.mba_c00174{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);}
.m40_c00174{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);}
.m9a_c00174{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);}
.m80_c00174{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);}
.m6a_c00174{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.m78_c00174{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);}
.m1f_c00174{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);}
.mfe_c00174{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);}
.mae_c00174{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);}
.mfd_c00174{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);}
.m15_c00174{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);}
.m5f_c00174{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);}
.m1d_c00174{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);}
.m55_c00174{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);}
.m74_c00174{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);}
.maa_c00174{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);}
.m116_c00174{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);}
.m28_c00174{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);}
.mf3_c00174{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);}
.m10e_c00174{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);}
.mc5_c00174{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);}
.m27_c00174{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);}
.mef_c00174{transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189390,0.000000,0.000000,0.250000,0,0);}
.mc7_c00174{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);}
.m69_c00174{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_c00174{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);}
.m17_c00174{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);}
.m97_c00174{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);}
.m94_c00174{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);}
.m6b_c00174{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);}
.m62_c00174{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);}
.m7b_c00174{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);}
.m1e_c00174{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);}
.m9d_c00174{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);}
.mb4_c00174{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);}
.m4e_c00174{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);}
.mf4_c00174{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);}
.m6f_c00174{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);}
.mf2_c00174{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);}
.m9e_c00174{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);}
.mea_c00174{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);}
.m10f_c00174{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);}
.m31_c00174{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);}
.m64_c00174{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);}
.m86_c00174{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);}
.m22_c00174{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.m96_c00174{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);}
.m57_c00174{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);}
.me0_c00174{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);}
.m8b_c00174{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);}
.m7f_c00174{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);}
.mb1_c00174{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);}
.m7a_c00174{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);}
.m105_c00174{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);}
.md4_c00174{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);}
.m73_c00174{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);}
.ma3_c00174{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);}
.m43_c00174{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);}
.ma0_c00174{transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);}
.m10a_c00174{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);}
.m106_c00174{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);}
.m3f_c00174{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{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);}
.me9_c00174{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);}
.m112_c00174{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);}
.m10b_c00174{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);}
.md5_c00174{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);}
.m41_c00174{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);}
.m92_c00174{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);}
.m114_c00174{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);}
.mdd_c00174{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);}
.m71_c00174{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);}
.ma2_c00174{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);}
.m100_c00174{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);}
.m81_c00174{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);}
.m2f_c00174{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);}
.m3b_c00174{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);}
.me3_c00174{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);}
.mf9_c00174{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);}
.m101_c00174{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);}
.mc1_c00174{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_c00174{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);}
.m8f_c00174{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);}
.mbc_c00174{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);}
.me6_c00174{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);}
.md_c00174{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);}
.m7e_c00174{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);}
.m99_c00174{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);}
.me2_c00174{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);}
.mfb_c00174{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);}
.m95_c00174{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m66_c00174{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);}
.m39_c00174{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);}
.m4f_c00174{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);}
.md9_c00174{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);}
.me4_c00174{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);}
.m59_c00174{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);}
.mac_c00174{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);}
.m102_c00174{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);}
.m82_c00174{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);}
.m75_c00174{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);}
.m9f_c00174{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);}
.md2_c00174{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);}
.m8c_c00174{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);}
.m38_c00174{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);}
.m77_c00174{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);}
.m91_c00174{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);}
.m37_c00174{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);}
.mfc_c00174{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);}
.m61_c00174{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);}
.m6d_c00174{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);}
.mf1_c00174{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);}
.mbe_c00174{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);}
.mdb_c00174{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);}
.m109_c00174{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);}
.mf5_c00174{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);}
.mbb_c00174{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);}
.m63_c00174{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);}
.md6_c00174{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);}
.m8a_c00174{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);}
.m7_c00174{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);}
.m3e_c00174{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);}
.m44_c00174{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m83_c00174{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);}
.me8_c00174{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);}
.ma5_c00174{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);}
.ma4_c00174{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);}
.m29_c00174{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);}
.mc4_c00174{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);}
.m42_c00174{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.mca_c00174{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);}
.mdf_c00174{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);}
.mda_c00174{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);}
.m16_c00174{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);}
.mc9_c00174{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);}
.m56_c00174{transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231145,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{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);}
.mb0_c00174{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);}
.m25_c00174{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);}
.mfa_c00174{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);}
.m5_c00174{transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242635,0.000000,0.000000,0.250000,0,0);}
.m85_c00174{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);}
.ma_c00174{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);}
.m111_c00174{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m54_c00174{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);}
.m104_c00174{transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{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);}
.m84_c00174{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);}
.mb5_c00174{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.mff_c00174{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m107_c00174{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);}
.m34_c00174{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);}
.m1a_c00174{transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263565,0.000000,0.000000,0.250000,0,0);}
.m4a_c00174{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.m8e_c00174{transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273130,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{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);}
.m5e_c00174{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);}
.m72_c00174{transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285710,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293040,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{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);}
.m4d_c00174{transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{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);}
.m51_c00174{transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301125,0.000000,0.000000,0.250000,0,0);}
.m36_c00174{transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302140,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.310620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310620,0.000000,0.000000,0.250000,0,0);}
.m89_c00174{transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);}
.mc6_c00174{transform:matrix(0.316890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316890,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{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);}
.m1b_c00174{transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.346850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346850,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.390580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390580,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.400485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400485,0.000000,0.000000,0.250000,0,0);}
.m76_c00174{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.462240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462240,0.000000,0.000000,0.250000,0,0);}
.m88_c00174{transform:matrix(0.462535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462535,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{transform:matrix(0.509790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00174{transform:matrix(0.547455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547455,0.000000,0.000000,0.250000,0,0);}
.m53_c00174{transform:matrix(0.551555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551555,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.585085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585085,0.000000,0.000000,0.250000,0,0);}
.m90_c00174{transform:matrix(0.586920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586920,0.000000,0.000000,0.250000,0,0);}
.m49_c00174{transform:matrix(0.610070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610070,0.000000,0.000000,0.250000,0,0);}
.m87_c00174{transform:matrix(1.030290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030290,0.000000,0.000000,0.250000,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;}
.fs0_c00174{font-size:33.600000px;}
.fs16_c00174{font-size:47.250000px;}
.fs14_c00174{font-size:48.300000px;}
.fs15_c00174{font-size:51.450000px;}
.fsf_c00174{font-size:52.500000px;}
.fs10_c00174{font-size:53.550000px;}
.fs12_c00174{font-size:54.600000px;}
.fse_c00174{font-size:57.750000px;}
.fs11_c00174{font-size:58.800000px;}
.fsd_c00174{font-size:59.850000px;}
.fs6_c00174{font-size:63.000000px;}
.fs13_c00174{font-size:64.050000px;}
.fsa_c00174{font-size:66.150000px;}
.fsb_c00174{font-size:67.200000px;}
.fs4_c00174{font-size:69.300000px;}
.fsc_c00174{font-size:70.350000px;}
.fs7_c00174{font-size:71.400000px;}
.fs8_c00174{font-size:72.450000px;}
.fs5_c00174{font-size:73.500000px;}
.fs9_c00174{font-size:78.750000px;}
.fs3_c00174{font-size:130.200000px;}
.fs1_c00174{font-size:149.100000px;}
.fs2_c00174{font-size:364.350000px;}
.y0_c00174{bottom:0.000000px;}
.y2b_c00174{bottom:171.819000px;}
.y22_c00174{bottom:173.211000px;}
.y1_c00174{bottom:189.810000px;}
.y2a_c00174{bottom:190.000500px;}
.y21_c00174{bottom:190.605000px;}
.y29_c00174{bottom:207.504000px;}
.y20_c00174{bottom:208.687500px;}
.y28_c00174{bottom:225.463500px;}
.y1f_c00174{bottom:226.419000px;}
.y27_c00174{bottom:243.270000px;}
.y1e_c00174{bottom:244.201500px;}
.y26_c00174{bottom:260.820000px;}
.y1d_c00174{bottom:261.769500px;}
.y25_c00174{bottom:278.671500px;}
.y1c_c00174{bottom:279.724500px;}
.y24_c00174{bottom:296.419500px;}
.y1b_c00174{bottom:296.691000px;}
.y23_c00174{bottom:313.575000px;}
.y1a_c00174{bottom:314.554500px;}
.y19_c00174{bottom:362.257500px;}
.y18_c00174{bottom:385.002000px;}
.y17_c00174{bottom:408.780000px;}
.y16_c00174{bottom:425.635500px;}
.y15_c00174{bottom:448.173000px;}
.y14_c00174{bottom:471.420000px;}
.y13_c00174{bottom:493.996500px;}
.y12_c00174{bottom:516.799500px;}
.y11_c00174{bottom:539.610000px;}
.y10_c00174{bottom:561.402000px;}
.yf_c00174{bottom:583.071000px;}
.ye_c00174{bottom:627.684000px;}
.yd_c00174{bottom:650.947500px;}
.yc_c00174{bottom:672.942000px;}
.yb_c00174{bottom:695.566500px;}
.ya_c00174{bottom:718.720500px;}
.y9_c00174{bottom:741.864000px;}
.y8_c00174{bottom:763.638000px;}
.y7_c00174{bottom:786.532500px;}
.y6_c00174{bottom:809.406000px;}
.y5_c00174{bottom:831.547500px;}
.y3_c00174{bottom:858.060000px;}
.y4_c00174{bottom:875.880000px;}
.y2_c00174{bottom:920.430000px;}
.h2_c00174{height:33.600000px;}
.h18_c00174{height:47.250000px;}
.h16_c00174{height:48.300000px;}
.h17_c00174{height:51.450000px;}
.h11_c00174{height:52.500000px;}
.h12_c00174{height:53.550000px;}
.h14_c00174{height:54.600000px;}
.h10_c00174{height:57.750000px;}
.h13_c00174{height:58.800000px;}
.hf_c00174{height:59.850000px;}
.h8_c00174{height:63.000000px;}
.h15_c00174{height:64.050000px;}
.hc_c00174{height:66.150000px;}
.hd_c00174{height:67.200000px;}
.h6_c00174{height:69.300000px;}
.he_c00174{height:70.350000px;}
.h9_c00174{height:71.400000px;}
.ha_c00174{height:72.450000px;}
.h7_c00174{height:73.500000px;}
.hb_c00174{height:78.750000px;}
.h5_c00174{height:130.200000px;}
.h3_c00174{height:149.100000px;}
.h4_c00174{height:364.350000px;}
.h1_c00174{height:1005.000000px;}
.h0_c00174{height:1005.150000px;}
.w0_c00174{width:735.750000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:4.590000px;}
.x7b_c00174{left:45.090000px;}
.x7f_c00174{left:56.970000px;}
.x7c_c00174{left:75.600000px;}
.x68_c00174{left:95.580000px;}
.x79_c00174{left:96.930000px;}
.x72_c00174{left:99.630000px;}
.x3c_c00174{left:113.940000px;}
.x6d_c00174{left:125.010000px;}
.x47_c00174{left:126.090000px;}
.x54_c00174{left:130.410000px;}
.x27_c00174{left:132.300000px;}
.x16_c00174{left:133.650000px;}
.x7_c00174{left:136.350000px;}
.x7a_c00174{left:139.320000px;}
.x78_c00174{left:144.450000px;}
.x3d_c00174{left:147.150000px;}
.x69_c00174{left:149.310000px;}
.x73_c00174{left:151.200000px;}
.x80_c00174{left:152.820000px;}
.x4f_c00174{left:155.790000px;}
.x2f_c00174{left:158.760000px;}
.xe_c00174{left:160.650000px;}
.x28_c00174{left:162.270000px;}
.x55_c00174{left:167.940000px;}
.x5e_c00174{left:170.370000px;}
.x21_c00174{left:174.960000px;}
.x6f_c00174{left:176.310000px;}
.x4_c00174{left:177.390000px;}
.x8_c00174{left:179.820000px;}
.x1b_c00174{left:184.140000px;}
.x30_c00174{left:185.760000px;}
.x7d_c00174{left:187.110000px;}
.x56_c00174{left:188.460000px;}
.x6a_c00174{left:191.430000px;}
.xf_c00174{left:192.780000px;}
.x29_c00174{left:195.750000px;}
.x22_c00174{left:197.370000px;}
.x3e_c00174{left:203.310000px;}
.x48_c00174{left:205.200000px;}
.x64_c00174{left:207.360000px;}
.x50_c00174{left:209.790000px;}
.x31_c00174{left:213.570000px;}
.x5a_c00174{left:214.650000px;}
.x9_c00174{left:216.000000px;}
.x10_c00174{left:217.350000px;}
.x5f_c00174{left:218.970000px;}
.x49_c00174{left:225.450000px;}
.x74_c00174{left:227.610000px;}
.x1c_c00174{left:230.580000px;}
.x5b_c00174{left:234.900000px;}
.x36_c00174{left:236.250000px;}
.x3f_c00174{left:237.870000px;}
.x70_c00174{left:239.760000px;}
.x65_c00174{left:241.110000px;}
.x17_c00174{left:244.890000px;}
.x23_c00174{left:246.240000px;}
.x51_c00174{left:248.670000px;}
.x76_c00174{left:250.290000px;}
.x2a_c00174{left:254.610000px;}
.xa_c00174{left:255.960000px;}
.x71_c00174{left:257.850000px;}
.x7e_c00174{left:262.170000px;}
.x77_c00174{left:263.520000px;}
.x37_c00174{left:267.570000px;}
.x6e_c00174{left:269.460000px;}
.x5c_c00174{left:273.240000px;}
.x1d_c00174{left:275.940000px;}
.x32_c00174{left:280.800000px;}
.x6b_c00174{left:282.150000px;}
.x11_c00174{left:285.390000px;}
.x6c_c00174{left:288.900000px;}
.x24_c00174{left:290.250000px;}
.x2_c00174{left:293.760000px;}
.x75_c00174{left:296.460000px;}
.x52_c00174{left:298.890000px;}
.x2b_c00174{left:301.320000px;}
.x40_c00174{left:302.670000px;}
.x12_c00174{left:305.370000px;}
.x62_c00174{left:307.800000px;}
.x66_c00174{left:312.120000px;}
.x38_c00174{left:313.740000px;}
.x57_c00174{left:315.630000px;}
.xb_c00174{left:322.110000px;}
.x4a_c00174{left:330.210000px;}
.x41_c00174{left:331.290000px;}
.x18_c00174{left:332.910000px;}
.x9f_c00174{left:336.960000px;}
.x13_c00174{left:341.280000px;}
.x33_c00174{left:345.870000px;}
.x83_c00174{left:346.950000px;}
.x3_c00174{left:351.270000px;}
.x42_c00174{left:353.970000px;}
.x2c_c00174{left:358.290000px;}
.x8f_c00174{left:363.960000px;}
.x58_c00174{left:365.040000px;}
.x4b_c00174{left:366.930000px;}
.x25_c00174{left:369.630000px;}
.x63_c00174{left:370.710000px;}
.x39_c00174{left:372.330000px;}
.x1e_c00174{left:375.300000px;}
.x84_c00174{left:376.650000px;}
.x14_c00174{left:379.350000px;}
.x60_c00174{left:380.430000px;}
.x19_c00174{left:383.940000px;}
.x2d_c00174{left:385.560000px;}
.x5_c00174{left:388.260000px;}
.x96_c00174{left:390.420000px;}
.xc_c00174{left:391.770000px;}
.x5d_c00174{left:397.710000px;}
.x1a_c00174{left:399.600000px;}
.x15_c00174{left:401.220000px;}
.x43_c00174{left:404.460000px;}
.x59_c00174{left:406.620000px;}
.x26_c00174{left:408.240000px;}
.xd_c00174{left:410.130000px;}
.x3a_c00174{left:414.990000px;}
.x85_c00174{left:419.850000px;}
.xa0_c00174{left:421.740000px;}
.x9b_c00174{left:423.090000px;}
.x4c_c00174{left:424.440000px;}
.x1f_c00174{left:427.140000px;}
.x44_c00174{left:429.840000px;}
.x53_c00174{left:430.920000px;}
.x34_c00174{left:433.350000px;}
.x8b_c00174{left:434.970000px;}
.xa1_c00174{left:437.400000px;}
.x67_c00174{left:440.640000px;}
.x8c_c00174{left:442.530000px;}
.x46_c00174{left:445.770000px;}
.x94_c00174{left:447.390000px;}
.x2e_c00174{left:450.090000px;}
.x9c_c00174{left:456.030000px;}
.x61_c00174{left:462.510000px;}
.x6_c00174{left:465.480000px;}
.x86_c00174{left:466.560000px;}
.x90_c00174{left:468.180000px;}
.x4d_c00174{left:471.150000px;}
.x87_c00174{left:474.390000px;}
.x91_c00174{left:480.870000px;}
.x9d_c00174{left:483.300000px;}
.x3b_c00174{left:485.190000px;}
.x35_c00174{left:486.810000px;}
.x88_c00174{left:490.050000px;}
.x45_c00174{left:495.990000px;}
.x20_c00174{left:508.140000px;}
.x97_c00174{left:510.570000px;}
.x81_c00174{left:512.190000px;}
.x95_c00174{left:515.430000px;}
.x92_c00174{left:517.590000px;}
.x82_c00174{left:524.610000px;}
.x8d_c00174{left:526.770000px;}
.x99_c00174{left:528.660000px;}
.x89_c00174{left:530.010000px;}
.x4e_c00174{left:534.060000px;}
.x8a_c00174{left:536.760000px;}
.x93_c00174{left:540.000000px;}
.x9a_c00174{left:553.770000px;}
.x98_c00174{left:557.550000px;}
.x9e_c00174{left:558.630000px;}
.x8e_c00174{left:565.380000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.fs0_c00174{font-size:29.866667pt;}
.fs16_c00174{font-size:42.000000pt;}
.fs14_c00174{font-size:42.933333pt;}
.fs15_c00174{font-size:45.733333pt;}
.fsf_c00174{font-size:46.666667pt;}
.fs10_c00174{font-size:47.600000pt;}
.fs12_c00174{font-size:48.533333pt;}
.fse_c00174{font-size:51.333333pt;}
.fs11_c00174{font-size:52.266667pt;}
.fsd_c00174{font-size:53.200000pt;}
.fs6_c00174{font-size:56.000000pt;}
.fs13_c00174{font-size:56.933333pt;}
.fsa_c00174{font-size:58.800000pt;}
.fsb_c00174{font-size:59.733333pt;}
.fs4_c00174{font-size:61.600000pt;}
.fsc_c00174{font-size:62.533333pt;}
.fs7_c00174{font-size:63.466667pt;}
.fs8_c00174{font-size:64.400000pt;}
.fs5_c00174{font-size:65.333333pt;}
.fs9_c00174{font-size:70.000000pt;}
.fs3_c00174{font-size:115.733333pt;}
.fs1_c00174{font-size:132.533333pt;}
.fs2_c00174{font-size:323.866667pt;}
.y0_c00174{bottom:0.000000pt;}
.y2b_c00174{bottom:152.728000pt;}
.y22_c00174{bottom:153.965333pt;}
.y1_c00174{bottom:168.720000pt;}
.y2a_c00174{bottom:168.889333pt;}
.y21_c00174{bottom:169.426667pt;}
.y29_c00174{bottom:184.448000pt;}
.y20_c00174{bottom:185.500000pt;}
.y28_c00174{bottom:200.412000pt;}
.y1f_c00174{bottom:201.261333pt;}
.y27_c00174{bottom:216.240000pt;}
.y1e_c00174{bottom:217.068000pt;}
.y26_c00174{bottom:231.840000pt;}
.y1d_c00174{bottom:232.684000pt;}
.y25_c00174{bottom:247.708000pt;}
.y1c_c00174{bottom:248.644000pt;}
.y24_c00174{bottom:263.484000pt;}
.y1b_c00174{bottom:263.725333pt;}
.y23_c00174{bottom:278.733333pt;}
.y1a_c00174{bottom:279.604000pt;}
.y19_c00174{bottom:322.006667pt;}
.y18_c00174{bottom:342.224000pt;}
.y17_c00174{bottom:363.360000pt;}
.y16_c00174{bottom:378.342667pt;}
.y15_c00174{bottom:398.376000pt;}
.y14_c00174{bottom:419.040000pt;}
.y13_c00174{bottom:439.108000pt;}
.y12_c00174{bottom:459.377333pt;}
.y11_c00174{bottom:479.653333pt;}
.y10_c00174{bottom:499.024000pt;}
.yf_c00174{bottom:518.285333pt;}
.ye_c00174{bottom:557.941333pt;}
.yd_c00174{bottom:578.620000pt;}
.yc_c00174{bottom:598.170667pt;}
.yb_c00174{bottom:618.281333pt;}
.ya_c00174{bottom:638.862667pt;}
.y9_c00174{bottom:659.434667pt;}
.y8_c00174{bottom:678.789333pt;}
.y7_c00174{bottom:699.140000pt;}
.y6_c00174{bottom:719.472000pt;}
.y5_c00174{bottom:739.153333pt;}
.y3_c00174{bottom:762.720000pt;}
.y4_c00174{bottom:778.560000pt;}
.y2_c00174{bottom:818.160000pt;}
.h2_c00174{height:29.866667pt;}
.h18_c00174{height:42.000000pt;}
.h16_c00174{height:42.933333pt;}
.h17_c00174{height:45.733333pt;}
.h11_c00174{height:46.666667pt;}
.h12_c00174{height:47.600000pt;}
.h14_c00174{height:48.533333pt;}
.h10_c00174{height:51.333333pt;}
.h13_c00174{height:52.266667pt;}
.hf_c00174{height:53.200000pt;}
.h8_c00174{height:56.000000pt;}
.h15_c00174{height:56.933333pt;}
.hc_c00174{height:58.800000pt;}
.hd_c00174{height:59.733333pt;}
.h6_c00174{height:61.600000pt;}
.he_c00174{height:62.533333pt;}
.h9_c00174{height:63.466667pt;}
.ha_c00174{height:64.400000pt;}
.h7_c00174{height:65.333333pt;}
.hb_c00174{height:70.000000pt;}
.h5_c00174{height:115.733333pt;}
.h3_c00174{height:132.533333pt;}
.h4_c00174{height:323.866667pt;}
.h1_c00174{height:893.333333pt;}
.h0_c00174{height:893.466667pt;}
.w0_c00174{width:654.000000pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:4.080000pt;}
.x7b_c00174{left:40.080000pt;}
.x7f_c00174{left:50.640000pt;}
.x7c_c00174{left:67.200000pt;}
.x68_c00174{left:84.960000pt;}
.x79_c00174{left:86.160000pt;}
.x72_c00174{left:88.560000pt;}
.x3c_c00174{left:101.280000pt;}
.x6d_c00174{left:111.120000pt;}
.x47_c00174{left:112.080000pt;}
.x54_c00174{left:115.920000pt;}
.x27_c00174{left:117.600000pt;}
.x16_c00174{left:118.800000pt;}
.x7_c00174{left:121.200000pt;}
.x7a_c00174{left:123.840000pt;}
.x78_c00174{left:128.400000pt;}
.x3d_c00174{left:130.800000pt;}
.x69_c00174{left:132.720000pt;}
.x73_c00174{left:134.400000pt;}
.x80_c00174{left:135.840000pt;}
.x4f_c00174{left:138.480000pt;}
.x2f_c00174{left:141.120000pt;}
.xe_c00174{left:142.800000pt;}
.x28_c00174{left:144.240000pt;}
.x55_c00174{left:149.280000pt;}
.x5e_c00174{left:151.440000pt;}
.x21_c00174{left:155.520000pt;}
.x6f_c00174{left:156.720000pt;}
.x4_c00174{left:157.680000pt;}
.x8_c00174{left:159.840000pt;}
.x1b_c00174{left:163.680000pt;}
.x30_c00174{left:165.120000pt;}
.x7d_c00174{left:166.320000pt;}
.x56_c00174{left:167.520000pt;}
.x6a_c00174{left:170.160000pt;}
.xf_c00174{left:171.360000pt;}
.x29_c00174{left:174.000000pt;}
.x22_c00174{left:175.440000pt;}
.x3e_c00174{left:180.720000pt;}
.x48_c00174{left:182.400000pt;}
.x64_c00174{left:184.320000pt;}
.x50_c00174{left:186.480000pt;}
.x31_c00174{left:189.840000pt;}
.x5a_c00174{left:190.800000pt;}
.x9_c00174{left:192.000000pt;}
.x10_c00174{left:193.200000pt;}
.x5f_c00174{left:194.640000pt;}
.x49_c00174{left:200.400000pt;}
.x74_c00174{left:202.320000pt;}
.x1c_c00174{left:204.960000pt;}
.x5b_c00174{left:208.800000pt;}
.x36_c00174{left:210.000000pt;}
.x3f_c00174{left:211.440000pt;}
.x70_c00174{left:213.120000pt;}
.x65_c00174{left:214.320000pt;}
.x17_c00174{left:217.680000pt;}
.x23_c00174{left:218.880000pt;}
.x51_c00174{left:221.040000pt;}
.x76_c00174{left:222.480000pt;}
.x2a_c00174{left:226.320000pt;}
.xa_c00174{left:227.520000pt;}
.x71_c00174{left:229.200000pt;}
.x7e_c00174{left:233.040000pt;}
.x77_c00174{left:234.240000pt;}
.x37_c00174{left:237.840000pt;}
.x6e_c00174{left:239.520000pt;}
.x5c_c00174{left:242.880000pt;}
.x1d_c00174{left:245.280000pt;}
.x32_c00174{left:249.600000pt;}
.x6b_c00174{left:250.800000pt;}
.x11_c00174{left:253.680000pt;}
.x6c_c00174{left:256.800000pt;}
.x24_c00174{left:258.000000pt;}
.x2_c00174{left:261.120000pt;}
.x75_c00174{left:263.520000pt;}
.x52_c00174{left:265.680000pt;}
.x2b_c00174{left:267.840000pt;}
.x40_c00174{left:269.040000pt;}
.x12_c00174{left:271.440000pt;}
.x62_c00174{left:273.600000pt;}
.x66_c00174{left:277.440000pt;}
.x38_c00174{left:278.880000pt;}
.x57_c00174{left:280.560000pt;}
.xb_c00174{left:286.320000pt;}
.x4a_c00174{left:293.520000pt;}
.x41_c00174{left:294.480000pt;}
.x18_c00174{left:295.920000pt;}
.x9f_c00174{left:299.520000pt;}
.x13_c00174{left:303.360000pt;}
.x33_c00174{left:307.440000pt;}
.x83_c00174{left:308.400000pt;}
.x3_c00174{left:312.240000pt;}
.x42_c00174{left:314.640000pt;}
.x2c_c00174{left:318.480000pt;}
.x8f_c00174{left:323.520000pt;}
.x58_c00174{left:324.480000pt;}
.x4b_c00174{left:326.160000pt;}
.x25_c00174{left:328.560000pt;}
.x63_c00174{left:329.520000pt;}
.x39_c00174{left:330.960000pt;}
.x1e_c00174{left:333.600000pt;}
.x84_c00174{left:334.800000pt;}
.x14_c00174{left:337.200000pt;}
.x60_c00174{left:338.160000pt;}
.x19_c00174{left:341.280000pt;}
.x2d_c00174{left:342.720000pt;}
.x5_c00174{left:345.120000pt;}
.x96_c00174{left:347.040000pt;}
.xc_c00174{left:348.240000pt;}
.x5d_c00174{left:353.520000pt;}
.x1a_c00174{left:355.200000pt;}
.x15_c00174{left:356.640000pt;}
.x43_c00174{left:359.520000pt;}
.x59_c00174{left:361.440000pt;}
.x26_c00174{left:362.880000pt;}
.xd_c00174{left:364.560000pt;}
.x3a_c00174{left:368.880000pt;}
.x85_c00174{left:373.200000pt;}
.xa0_c00174{left:374.880000pt;}
.x9b_c00174{left:376.080000pt;}
.x4c_c00174{left:377.280000pt;}
.x1f_c00174{left:379.680000pt;}
.x44_c00174{left:382.080000pt;}
.x53_c00174{left:383.040000pt;}
.x34_c00174{left:385.200000pt;}
.x8b_c00174{left:386.640000pt;}
.xa1_c00174{left:388.800000pt;}
.x67_c00174{left:391.680000pt;}
.x8c_c00174{left:393.360000pt;}
.x46_c00174{left:396.240000pt;}
.x94_c00174{left:397.680000pt;}
.x2e_c00174{left:400.080000pt;}
.x9c_c00174{left:405.360000pt;}
.x61_c00174{left:411.120000pt;}
.x6_c00174{left:413.760000pt;}
.x86_c00174{left:414.720000pt;}
.x90_c00174{left:416.160000pt;}
.x4d_c00174{left:418.800000pt;}
.x87_c00174{left:421.680000pt;}
.x91_c00174{left:427.440000pt;}
.x9d_c00174{left:429.600000pt;}
.x3b_c00174{left:431.280000pt;}
.x35_c00174{left:432.720000pt;}
.x88_c00174{left:435.600000pt;}
.x45_c00174{left:440.880000pt;}
.x20_c00174{left:451.680000pt;}
.x97_c00174{left:453.840000pt;}
.x81_c00174{left:455.280000pt;}
.x95_c00174{left:458.160000pt;}
.x92_c00174{left:460.080000pt;}
.x82_c00174{left:466.320000pt;}
.x8d_c00174{left:468.240000pt;}
.x99_c00174{left:469.920000pt;}
.x89_c00174{left:471.120000pt;}
.x4e_c00174{left:474.720000pt;}
.x8a_c00174{left:477.120000pt;}
.x93_c00174{left:480.000000pt;}
.x9a_c00174{left:492.240000pt;}
.x98_c00174{left:495.600000pt;}
.x9e_c00174{left:496.560000pt;}
.x8e_c00174{left:502.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m2d_c00175{transform:matrix(0.008660,-0.000087,0.002500,0.249988,0,0);-ms-transform:matrix(0.008660,-0.000087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.008660,-0.000087,0.002500,0.249988,0,0);}
.m5c_c00175{transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);}
.ma3_c00175{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.015304,-0.000153,0.002500,0.249988,0,0);-ms-transform:matrix(0.015304,-0.000153,0.002500,0.249988,0,0);-webkit-transform:matrix(0.015304,-0.000153,0.002500,0.249988,0,0);}
.ma_c00175{transform:matrix(0.025410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025410,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.034851,-0.000976,0.006997,0.249902,0,0);-ms-transform:matrix(0.034851,-0.000976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.034851,-0.000976,0.006997,0.249902,0,0);}
.m2f_c00175{transform:matrix(0.070587,-0.001976,0.006997,0.249902,0,0);-ms-transform:matrix(0.070587,-0.001976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.070587,-0.001976,0.006997,0.249902,0,0);}
.m3c_c00175{transform:matrix(0.126912,-0.001396,0.002750,0.249985,0,0);-ms-transform:matrix(0.126912,-0.001396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.126912,-0.001396,0.002750,0.249985,0,0);}
.m3e_c00175{transform:matrix(0.129212,-0.001421,0.002750,0.249985,0,0);-ms-transform:matrix(0.129212,-0.001421,0.002750,0.249985,0,0);-webkit-transform:matrix(0.129212,-0.001421,0.002750,0.249985,0,0);}
.m3f_c00175{transform:matrix(0.130287,-0.001433,0.002750,0.249985,0,0);-ms-transform:matrix(0.130287,-0.001433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.130287,-0.001433,0.002750,0.249985,0,0);}
.m19_c00175{transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);}
.mb6_c00175{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);}
.m45_c00175{transform:matrix(0.135642,-0.001492,0.002750,0.249985,0,0);-ms-transform:matrix(0.135642,-0.001492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.135642,-0.001492,0.002750,0.249985,0,0);}
.m54_c00175{transform:matrix(0.135967,-0.001496,0.002750,0.249985,0,0);-ms-transform:matrix(0.135967,-0.001496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.135967,-0.001496,0.002750,0.249985,0,0);}
.m59_c00175{transform:matrix(0.141211,-0.001553,0.002750,0.249985,0,0);-ms-transform:matrix(0.141211,-0.001553,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141211,-0.001553,0.002750,0.249985,0,0);}
.m56_c00175{transform:matrix(0.145401,-0.001599,0.002750,0.249985,0,0);-ms-transform:matrix(0.145401,-0.001599,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145401,-0.001599,0.002750,0.249985,0,0);}
.mb8_c00175{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);}
.m4_c00175{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);}
.m55_c00175{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);}
.m89_c00175{transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{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);}
.m3b_c00175{transform:matrix(0.153376,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153376,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153376,-0.001687,0.002750,0.249985,0,0);}
.mb1_c00175{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);}
.m5b_c00175{transform:matrix(0.158655,-0.001745,0.002750,0.249985,0,0);-ms-transform:matrix(0.158655,-0.001745,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158655,-0.001745,0.002750,0.249985,0,0);}
.mab_c00175{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);}
.m25_c00175{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);}
.ma9_c00175{transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);}
.ma0_c00175{transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163160,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{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);}
.ma8_c00175{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);}
.m3d_c00175{transform:matrix(0.164250,-0.001807,0.002750,0.249985,0,0);-ms-transform:matrix(0.164250,-0.001807,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164250,-0.001807,0.002750,0.249985,0,0);}
.m5a_c00175{transform:matrix(0.165185,-0.001817,0.002750,0.249985,0,0);-ms-transform:matrix(0.165185,-0.001817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165185,-0.001817,0.002750,0.249985,0,0);}
.m4d_c00175{transform:matrix(0.165355,-0.001819,0.002750,0.249985,0,0);-ms-transform:matrix(0.165355,-0.001819,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165355,-0.001819,0.002750,0.249985,0,0);}
.m18_c00175{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);}
.m3_c00175{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);}
.m23_c00175{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);}
.m38_c00175{transform:matrix(0.169144,-0.004736,0.006997,0.249902,0,0);-ms-transform:matrix(0.169144,-0.004736,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169144,-0.004736,0.006997,0.249902,0,0);}
.m87_c00175{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);}
.m1c_c00175{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);}
.m37_c00175{transform:matrix(0.170633,-0.004778,0.006997,0.249902,0,0);-ms-transform:matrix(0.170633,-0.004778,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170633,-0.004778,0.006997,0.249902,0,0);}
.m12_c00175{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);}
.m64_c00175{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);}
.md_c00175{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);}
.m92_c00175{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);}
.m65_c00175{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);}
.ma2_c00175{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);}
.m58_c00175{transform:matrix(0.174229,-0.001917,0.002750,0.249985,0,0);-ms-transform:matrix(0.174229,-0.001917,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174229,-0.001917,0.002750,0.249985,0,0);}
.m75_c00175{transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);-ms-transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);}
.m15_c00175{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);}
.m34_c00175{transform:matrix(0.176886,-0.004953,0.006997,0.249902,0,0);-ms-transform:matrix(0.176886,-0.004953,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176886,-0.004953,0.006997,0.249902,0,0);}
.ma7_c00175{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);}
.m53_c00175{transform:matrix(0.178909,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178909,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178909,-0.001968,0.002750,0.249985,0,0);}
.m35_c00175{transform:matrix(0.179405,-0.005023,0.006997,0.249902,0,0);-ms-transform:matrix(0.179405,-0.005023,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179405,-0.005023,0.006997,0.249902,0,0);}
.m48_c00175{transform:matrix(0.179999,-0.001980,0.002750,0.249985,0,0);-ms-transform:matrix(0.179999,-0.001980,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179999,-0.001980,0.002750,0.249985,0,0);}
.mb7_c00175{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);}
.maf_c00175{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);}
.m44_c00175{transform:matrix(0.184894,-0.002034,0.002750,0.249985,0,0);-ms-transform:matrix(0.184894,-0.002034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184894,-0.002034,0.002750,0.249985,0,0);}
.m3a_c00175{transform:matrix(0.185569,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185569,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185569,-0.002041,0.002750,0.249985,0,0);}
.m49_c00175{transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);}
.m94_c00175{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);}
.m57_c00175{transform:matrix(0.186544,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186544,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186544,-0.002052,0.002750,0.249985,0,0);}
.m70_c00175{transform:matrix(0.187911,-0.001879,0.002500,0.249988,0,0);-ms-transform:matrix(0.187911,-0.001879,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187911,-0.001879,0.002500,0.249988,0,0);}
.m6_c00175{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);}
.m7d_c00175{transform:matrix(0.188572,-0.001697,0.002250,0.249990,0,0);-ms-transform:matrix(0.188572,-0.001697,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188572,-0.001697,0.002250,0.249990,0,0);}
.m6f_c00175{transform:matrix(0.188741,-0.001887,0.002500,0.249988,0,0);-ms-transform:matrix(0.188741,-0.001887,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188741,-0.001887,0.002500,0.249988,0,0);}
.ma5_c00175{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);}
.m1a_c00175{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);}
.m51_c00175{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);}
.mb5_c00175{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);}
.mb4_c00175{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);}
.m7c_c00175{transform:matrix(0.190447,-0.001714,0.002250,0.249990,0,0);-ms-transform:matrix(0.190447,-0.001714,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190447,-0.001714,0.002250,0.249990,0,0);}
.m47_c00175{transform:matrix(0.190448,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190448,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190448,-0.002095,0.002750,0.249985,0,0);}
.m62_c00175{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);}
.m63_c00175{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);}
.m8d_c00175{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);}
.m77_c00175{transform:matrix(0.192617,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192617,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192617,-0.001734,0.002250,0.249990,0,0);}
.m42_c00175{transform:matrix(0.192688,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192688,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192688,-0.002120,0.002750,0.249985,0,0);}
.m83_c00175{transform:matrix(0.195212,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195212,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195212,-0.001757,0.002250,0.249990,0,0);}
.mb2_c00175{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);}
.m76_c00175{transform:matrix(0.198037,-0.001782,0.002250,0.249990,0,0);-ms-transform:matrix(0.198037,-0.001782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198037,-0.001782,0.002250,0.249990,0,0);}
.m6b_c00175{transform:matrix(0.199090,-0.001991,0.002500,0.249988,0,0);-ms-transform:matrix(0.199090,-0.001991,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199090,-0.001991,0.002500,0.249988,0,0);}
.m96_c00175{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);}
.m39_c00175{transform:matrix(0.199797,-0.005594,0.006997,0.249902,0,0);-ms-transform:matrix(0.199797,-0.005594,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199797,-0.005594,0.006997,0.249902,0,0);}
.m6d_c00175{transform:matrix(0.200500,-0.002005,0.002500,0.249988,0,0);-ms-transform:matrix(0.200500,-0.002005,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200500,-0.002005,0.002500,0.249988,0,0);}
.mf_c00175{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);}
.m46_c00175{transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);}
.m95_c00175{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);}
.m61_c00175{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);}
.m9d_c00175{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);}
.m8_c00175{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);}
.m74_c00175{transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);-ms-transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);}
.mac_c00175{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);}
.m24_c00175{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);}
.m6e_c00175{transform:matrix(0.204055,-0.002041,0.002500,0.249988,0,0);-ms-transform:matrix(0.204055,-0.002041,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204055,-0.002041,0.002500,0.249988,0,0);}
.ma1_c00175{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);}
.m78_c00175{transform:matrix(0.208282,-0.001875,0.002250,0.249990,0,0);-ms-transform:matrix(0.208282,-0.001875,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208282,-0.001875,0.002250,0.249990,0,0);}
.m66_c00175{transform:matrix(0.208435,-0.002084,0.002500,0.249988,0,0);-ms-transform:matrix(0.208435,-0.002084,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208435,-0.002084,0.002500,0.249988,0,0);}
.mbb_c00175{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);}
.ma6_c00175{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);}
.m1d_c00175{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);}
.m2_c00175{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{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);}
.m88_c00175{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);}
.m73_c00175{transform:matrix(0.213111,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213111,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213111,-0.001918,0.002250,0.249990,0,0);}
.m7a_c00175{transform:matrix(0.213996,-0.001926,0.002250,0.249990,0,0);-ms-transform:matrix(0.213996,-0.001926,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213996,-0.001926,0.002250,0.249990,0,0);}
.m8b_c00175{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);}
.m4e_c00175{transform:matrix(0.215812,-0.002374,0.002750,0.249985,0,0);-ms-transform:matrix(0.215812,-0.002374,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215812,-0.002374,0.002750,0.249985,0,0);}
.m85_c00175{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);}
.m80_c00175{transform:matrix(0.217481,-0.001957,0.002250,0.249990,0,0);-ms-transform:matrix(0.217481,-0.001957,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217481,-0.001957,0.002250,0.249990,0,0);}
.m6c_c00175{transform:matrix(0.217739,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217739,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217739,-0.002177,0.002500,0.249988,0,0);}
.m16_c00175{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);}
.mae_c00175{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);}
.m8e_c00175{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);}
.mc_c00175{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);}
.mad_c00175{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);}
.m41_c00175{transform:matrix(0.224746,-0.002472,0.002750,0.249985,0,0);-ms-transform:matrix(0.224746,-0.002472,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224746,-0.002472,0.002750,0.249985,0,0);}
.m86_c00175{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);}
.m28_c00175{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);}
.mba_c00175{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);}
.m6a_c00175{transform:matrix(0.226819,-0.002268,0.002500,0.249988,0,0);-ms-transform:matrix(0.226819,-0.002268,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226819,-0.002268,0.002500,0.249988,0,0);}
.m98_c00175{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);}
.me_c00175{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);}
.mb9_c00175{transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.230981,-0.002079,0.002250,0.249990,0,0);-ms-transform:matrix(0.230981,-0.002079,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230981,-0.002079,0.002250,0.249990,0,0);}
.m7e_c00175{transform:matrix(0.231746,-0.002086,0.002250,0.249990,0,0);-ms-transform:matrix(0.231746,-0.002086,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231746,-0.002086,0.002250,0.249990,0,0);}
.m33_c00175{transform:matrix(0.232169,-0.006501,0.006997,0.249902,0,0);-ms-transform:matrix(0.232169,-0.006501,0.006997,0.249902,0,0);-webkit-transform:matrix(0.232169,-0.006501,0.006997,0.249902,0,0);}
.m60_c00175{transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.233096,-0.002564,0.002750,0.249985,0,0);-ms-transform:matrix(0.233096,-0.002564,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233096,-0.002564,0.002750,0.249985,0,0);}
.m81_c00175{transform:matrix(0.233146,-0.002098,0.002250,0.249990,0,0);-ms-transform:matrix(0.233146,-0.002098,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233146,-0.002098,0.002250,0.249990,0,0);}
.m20_c00175{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);}
.m1b_c00175{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);}
.m4f_c00175{transform:matrix(0.236931,-0.002606,0.002750,0.249985,0,0);-ms-transform:matrix(0.236931,-0.002606,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236931,-0.002606,0.002750,0.249985,0,0);}
.m1e_c00175{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);}
.m9e_c00175{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);}
.mb_c00175{transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.243325,-0.002190,0.002250,0.249990,0,0);-ms-transform:matrix(0.243325,-0.002190,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243325,-0.002190,0.002250,0.249990,0,0);}
.mb3_c00175{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);}
.m97_c00175{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00175{transform:matrix(0.245475,-0.002700,0.002750,0.249985,0,0);-ms-transform:matrix(0.245475,-0.002700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245475,-0.002700,0.002750,0.249985,0,0);}
.mbd_c00175{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);}
.m43_c00175{transform:matrix(0.248335,-0.002732,0.002750,0.249985,0,0);-ms-transform:matrix(0.248335,-0.002732,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248335,-0.002732,0.002750,0.249985,0,0);}
.m4a_c00175{transform:matrix(0.249100,-0.002740,0.002750,0.249985,0,0);-ms-transform:matrix(0.249100,-0.002740,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249100,-0.002740,0.002750,0.249985,0,0);}
.m93_c00175{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{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);}
.m8c_c00175{transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.256509,-0.007182,0.006997,0.249902,0,0);-ms-transform:matrix(0.256509,-0.007182,0.006997,0.249902,0,0);-webkit-transform:matrix(0.256509,-0.007182,0.006997,0.249902,0,0);}
.maa_c00175{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);}
.m9f_c00175{transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);}
.m4b_c00175{transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);-ms-transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);}
.m1f_c00175{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);}
.m14_c00175{transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);}
.m7f_c00175{transform:matrix(0.269669,-0.002427,0.002250,0.249990,0,0);-ms-transform:matrix(0.269669,-0.002427,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269669,-0.002427,0.002250,0.249990,0,0);}
.m17_c00175{transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);}
.m9c_c00175{transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271970,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{transform:matrix(0.272121,-0.002721,0.002500,0.249988,0,0);-ms-transform:matrix(0.272121,-0.002721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272121,-0.002721,0.002500,0.249988,0,0);}
.m9b_c00175{transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);}
.m84_c00175{transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283010,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.295685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295685,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.297010,-0.002970,0.002500,0.249988,0,0);-ms-transform:matrix(0.297010,-0.002970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.297010,-0.002970,0.002500,0.249988,0,0);}
.m40_c00175{transform:matrix(0.300747,-0.003308,0.002750,0.249985,0,0);-ms-transform:matrix(0.300747,-0.003308,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300747,-0.003308,0.002750,0.249985,0,0);}
.m27_c00175{transform:matrix(0.307555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307555,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315760,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321290,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.323235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);}
.m71_c00175{transform:matrix(0.329207,-0.002963,0.002250,0.249990,0,0);-ms-transform:matrix(0.329207,-0.002963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.329207,-0.002963,0.002250,0.249990,0,0);}
.m9a_c00175{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);}
.m72_c00175{transform:matrix(0.339871,-0.003059,0.002250,0.249990,0,0);-ms-transform:matrix(0.339871,-0.003059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.339871,-0.003059,0.002250,0.249990,0,0);}
.mb0_c00175{transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);}
.m67_c00175{transform:matrix(0.348798,-0.003488,0.002500,0.249988,0,0);-ms-transform:matrix(0.348798,-0.003488,0.002500,0.249988,0,0);-webkit-transform:matrix(0.348798,-0.003488,0.002500,0.249988,0,0);}
.m10_c00175{transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366390,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.373770,-0.003364,0.002250,0.249990,0,0);-ms-transform:matrix(0.373770,-0.003364,0.002250,0.249990,0,0);-webkit-transform:matrix(0.373770,-0.003364,0.002250,0.249990,0,0);}
.m22_c00175{transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.436680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436680,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.440190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440190,0.000000,0.000000,0.250000,0,0);}
.ma4_c00175{transform:matrix(0.468780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468780,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.470591,-0.013177,0.006997,0.249902,0,0);-ms-transform:matrix(0.470591,-0.013177,0.006997,0.249902,0,0);-webkit-transform:matrix(0.470591,-0.013177,0.006997,0.249902,0,0);}
.m29_c00175{transform:matrix(0.475121,-0.004751,0.002500,0.249988,0,0);-ms-transform:matrix(0.475121,-0.004751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.475121,-0.004751,0.002500,0.249988,0,0);}
.m2a_c00175{transform:matrix(0.476286,-0.004763,0.002500,0.249988,0,0);-ms-transform:matrix(0.476286,-0.004763,0.002500,0.249988,0,0);-webkit-transform:matrix(0.476286,-0.004763,0.002500,0.249988,0,0);}
.m11_c00175{transform:matrix(0.498710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498710,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.506080,-0.005061,0.002500,0.249988,0,0);-ms-transform:matrix(0.506080,-0.005061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.506080,-0.005061,0.002500,0.249988,0,0);}
.m31_c00175{transform:matrix(0.509370,-0.014262,0.006997,0.249902,0,0);-ms-transform:matrix(0.509370,-0.014262,0.006997,0.249902,0,0);-webkit-transform:matrix(0.509370,-0.014262,0.006997,0.249902,0,0);}
.m5d_c00175{transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);}
.m99_c00175{transform:matrix(0.548875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.727725,-0.020376,0.006997,0.249902,0,0);-ms-transform:matrix(0.727725,-0.020376,0.006997,0.249902,0,0);-webkit-transform:matrix(0.727725,-0.020376,0.006997,0.249902,0,0);}
.mbc_c00175{transform:matrix(0.748585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748585,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{transform:matrix(1.101795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.101795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.101795,0.000000,0.000000,0.250000,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;}
.fs5_c00175{font-size:22.050000px;}
.fs8_c00175{font-size:59.873457px;}
.fs12_c00175{font-size:60.902466px;}
.fsc_c00175{font-size:60.903684px;}
.fs14_c00175{font-size:61.950000px;}
.fs13_c00175{font-size:65.100000px;}
.fs17_c00175{font-size:66.150000px;}
.fsb_c00175{font-size:66.154002px;}
.fs2_c00175{font-size:67.200000px;}
.fs11_c00175{font-size:67.202722px;}
.fs10_c00175{font-size:67.203360px;}
.fsf_c00175{font-size:69.300000px;}
.fs4_c00175{font-size:71.400000px;}
.fs9_c00175{font-size:71.427983px;}
.fs0_c00175{font-size:72.450000px;}
.fs15_c00175{font-size:73.500000px;}
.fs16_c00175{font-size:74.550000px;}
.fs3_c00175{font-size:75.600000px;}
.fs1_c00175{font-size:77.700000px;}
.fsd_c00175{font-size:77.704701px;}
.fse_c00175{font-size:79.800000px;}
.fsa_c00175{font-size:80.854891px;}
.fs7_c00175{font-size:88.204410px;}
.fs6_c00175{font-size:103.950000px;}
.y0_c00175{bottom:0.000000px;}
.y89_c00175{bottom:151.339500px;}
.y88_c00175{bottom:174.343500px;}
.y87_c00175{bottom:196.699500px;}
.y7e_c00175{bottom:218.163000px;}
.y7f_c00175{bottom:218.409000px;}
.y80_c00175{bottom:218.875500px;}
.y81_c00175{bottom:219.112500px;}
.y82_c00175{bottom:219.844500px;}
.y83_c00175{bottom:220.350000px;}
.y84_c00175{bottom:220.654500px;}
.y85_c00175{bottom:221.082000px;}
.y86_c00175{bottom:221.391000px;}
.y74_c00175{bottom:241.651500px;}
.y75_c00175{bottom:242.281500px;}
.y76_c00175{bottom:242.469000px;}
.y77_c00175{bottom:242.583000px;}
.y78_c00175{bottom:242.887500px;}
.y79_c00175{bottom:243.045000px;}
.y7a_c00175{bottom:243.427500px;}
.y7b_c00175{bottom:243.549000px;}
.y7c_c00175{bottom:244.042500px;}
.y7d_c00175{bottom:244.495500px;}
.y73_c00175{bottom:266.266500px;}
.y68_c00175{bottom:286.855995px;}
.y69_c00175{bottom:287.102637px;}
.y6a_c00175{bottom:287.571258px;}
.y6b_c00175{bottom:287.742228px;}
.y6c_c00175{bottom:288.053216px;}
.y6d_c00175{bottom:288.474512px;}
.y6e_c00175{bottom:288.984978px;}
.y6f_c00175{bottom:289.145325px;}
.y70_c00175{bottom:289.488222px;}
.y71_c00175{bottom:289.820685px;}
.y72_c00175{bottom:290.017397px;}
.y60_c00175{bottom:309.691500px;}
.y61_c00175{bottom:309.937078px;}
.y62_c00175{bottom:310.459286px;}
.y63_c00175{bottom:310.843279px;}
.y64_c00175{bottom:311.477456px;}
.y65_c00175{bottom:311.970381px;}
.y66_c00175{bottom:312.357386px;}
.y67_c00175{bottom:312.978952px;}
.y55_c00175{bottom:332.361000px;}
.y56_c00175{bottom:332.574615px;}
.y57_c00175{bottom:332.841690px;}
.y58_c00175{bottom:333.200640px;}
.y59_c00175{bottom:333.483690px;}
.y5a_c00175{bottom:333.975600px;}
.y5b_c00175{bottom:334.164270px;}
.y5c_c00175{bottom:334.669395px;}
.y5d_c00175{bottom:334.996155px;}
.y5e_c00175{bottom:335.589690px;}
.y5f_c00175{bottom:335.949285px;}
.y54_c00175{bottom:355.516500px;}
.y53_c00175{bottom:379.417500px;}
.y4a_c00175{bottom:402.112321px;}
.y4b_c00175{bottom:402.112605px;}
.y4c_c00175{bottom:402.112798px;}
.y4d_c00175{bottom:402.113262px;}
.y4e_c00175{bottom:402.113695px;}
.y50_c00175{bottom:402.114109px;}
.y4f_c00175{bottom:402.114352px;}
.y51_c00175{bottom:402.114603px;}
.y52_c00175{bottom:402.114660px;}
.y42_c00175{bottom:424.167706px;}
.y43_c00175{bottom:424.487316px;}
.y44_c00175{bottom:425.027266px;}
.y45_c00175{bottom:425.333308px;}
.y46_c00175{bottom:425.839074px;}
.y47_c00175{bottom:426.125010px;}
.y48_c00175{bottom:426.478689px;}
.y49_c00175{bottom:426.808252px;}
.y41_c00175{bottom:446.902089px;}
.y3d_c00175{bottom:446.902657px;}
.y40_c00175{bottom:446.902662px;}
.y3f_c00175{bottom:446.902741px;}
.y3b_c00175{bottom:446.902873px;}
.y3c_c00175{bottom:446.903154px;}
.y3e_c00175{bottom:446.903254px;}
.y3a_c00175{bottom:446.903280px;}
.y31_c00175{bottom:468.721500px;}
.y32_c00175{bottom:469.223496px;}
.y33_c00175{bottom:469.618060px;}
.y34_c00175{bottom:469.853136px;}
.y35_c00175{bottom:470.681122px;}
.y36_c00175{bottom:470.948439px;}
.y37_c00175{bottom:471.169027px;}
.y38_c00175{bottom:471.620566px;}
.y39_c00175{bottom:471.849042px;}
.y29_c00175{bottom:487.347486px;}
.y2a_c00175{bottom:487.620576px;}
.y2b_c00175{bottom:487.992000px;}
.y2c_c00175{bottom:489.274182px;}
.y2d_c00175{bottom:489.910200px;}
.y2e_c00175{bottom:491.890668px;}
.y2f_c00175{bottom:492.999594px;}
.y30_c00175{bottom:493.585506px;}
.y25_c00175{bottom:509.770500px;}
.y26_c00175{bottom:512.351190px;}
.y27_c00175{bottom:513.464316px;}
.y28_c00175{bottom:515.865540px;}
.y22_c00175{bottom:553.872150px;}
.y23_c00175{bottom:555.902130px;}
.y24_c00175{bottom:557.008260px;}
.y20_c00175{bottom:578.302500px;}
.y21_c00175{bottom:580.497330px;}
.y1f_c00175{bottom:623.010000px;}
.y1e_c00175{bottom:676.620000px;}
.y15_c00175{bottom:687.691500px;}
.y16_c00175{bottom:688.206000px;}
.y17_c00175{bottom:688.843500px;}
.y18_c00175{bottom:689.214000px;}
.y19_c00175{bottom:690.106500px;}
.y1a_c00175{bottom:690.280500px;}
.y1b_c00175{bottom:691.407000px;}
.y1c_c00175{bottom:691.705500px;}
.y1d_c00175{bottom:692.188500px;}
.yc_c00175{bottom:709.833000px;}
.yd_c00175{bottom:710.661000px;}
.ye_c00175{bottom:711.169500px;}
.yf_c00175{bottom:711.729000px;}
.y10_c00175{bottom:712.189500px;}
.y11_c00175{bottom:713.409000px;}
.y12_c00175{bottom:713.754000px;}
.y13_c00175{bottom:714.157500px;}
.y14_c00175{bottom:714.625500px;}
.yb_c00175{bottom:736.440000px;}
.ya_c00175{bottom:760.305000px;}
.y8_c00175{bottom:780.201000px;}
.y9_c00175{bottom:780.754500px;}
.y2_c00175{bottom:800.559000px;}
.y3_c00175{bottom:802.011000px;}
.y4_c00175{bottom:802.497000px;}
.y5_c00175{bottom:803.179500px;}
.y6_c00175{bottom:803.826000px;}
.y7_c00175{bottom:806.485500px;}
.y1_c00175{bottom:827.833500px;}
.h7_c00175{height:22.050000px;}
.ha_c00175{height:59.873457px;}
.h14_c00175{height:60.902466px;}
.he_c00175{height:60.903684px;}
.h16_c00175{height:61.950000px;}
.h15_c00175{height:65.100000px;}
.h19_c00175{height:66.150000px;}
.hd_c00175{height:66.154002px;}
.h4_c00175{height:67.200000px;}
.h13_c00175{height:67.202722px;}
.h12_c00175{height:67.203360px;}
.h11_c00175{height:69.300000px;}
.h6_c00175{height:71.400000px;}
.hb_c00175{height:71.427983px;}
.h2_c00175{height:72.450000px;}
.h17_c00175{height:73.500000px;}
.h18_c00175{height:74.550000px;}
.h5_c00175{height:75.600000px;}
.h3_c00175{height:77.700000px;}
.hf_c00175{height:77.704701px;}
.h10_c00175{height:79.800000px;}
.hc_c00175{height:80.854891px;}
.h9_c00175{height:88.204410px;}
.h8_c00175{height:103.950000px;}
.h0_c00175{height:1008.450000px;}
.h1_c00175{height:1008.750000px;}
.w0_c00175{width:678.450000px;}
.w1_c00175{width:678.750000px;}
.x0_c00175{left:0.000000px;}
.x5a_c00175{left:73.339200px;}
.x55_c00175{left:77.079000px;}
.x4d_c00175{left:78.981000px;}
.x61_c00175{left:81.810000px;}
.x6e_c00175{left:84.240000px;}
.x4e_c00175{left:100.342500px;}
.x56_c00175{left:104.365500px;}
.x4f_c00175{left:127.050000px;}
.x6f_c00175{left:130.680000px;}
.x32_c00175{left:154.048500px;}
.x3_c00175{left:158.037000px;}
.x13_c00175{left:160.072500px;}
.x3c_c00175{left:161.830974px;}
.x25_c00175{left:163.116000px;}
.x2d_c00175{left:170.621322px;}
.x2e_c00175{left:182.465460px;}
.x5b_c00175{left:183.977186px;}
.x42_c00175{left:186.840077px;}
.x67_c00175{left:189.868500px;}
.x50_c00175{left:191.250000px;}
.x39_c00175{left:192.781662px;}
.x1b_c00175{left:197.064000px;}
.x2f_c00175{left:198.625728px;}
.x33_c00175{left:199.684500px;}
.x3d_c00175{left:201.796794px;}
.x57_c00175{left:205.054500px;}
.x68_c00175{left:206.073000px;}
.x14_c00175{left:208.741500px;}
.x43_c00175{left:211.951613px;}
.x4_c00175{left:216.111000px;}
.x5c_c00175{left:222.865037px;}
.x70_c00175{left:227.610000px;}
.x75_c00175{left:231.120000px;}
.x5_c00175{left:235.531500px;}
.x15_c00175{left:238.662000px;}
.x51_c00175{left:240.441000px;}
.x1c_c00175{left:242.578500px;}
.x48_c00175{left:247.050000px;}
.x44_c00175{left:248.134485px;}
.x69_c00175{left:249.535500px;}
.x2a_c00175{left:254.530500px;}
.x34_c00175{left:256.924500px;}
.x52_c00175{left:259.308000px;}
.x6_c00175{left:262.845000px;}
.x9_c00175{left:264.555000px;}
.x71_c00175{left:265.680000px;}
.x27_c00175{left:266.735640px;}
.x1d_c00175{left:269.067000px;}
.x16_c00175{left:271.546500px;}
.x76_c00175{left:274.050000px;}
.x3a_c00175{left:275.135628px;}
.x11_c00175{left:281.878500px;}
.x6c_c00175{left:284.134500px;}
.x1_c00175{left:285.390000px;}
.x62_c00175{left:286.740000px;}
.x7_c00175{left:288.729000px;}
.x2b_c00175{left:294.285000px;}
.x49_c00175{left:295.920000px;}
.x77_c00175{left:297.810000px;}
.xa_c00175{left:299.140500px;}
.x3e_c00175{left:307.617792px;}
.x53_c00175{left:309.820500px;}
.x72_c00175{left:314.280000px;}
.x3b_c00175{left:323.468469px;}
.x6a_c00175{left:326.539500px;}
.x63_c00175{left:328.590000px;}
.x58_c00175{left:330.288000px;}
.x2_c00175{left:332.910000px;}
.x12_c00175{left:333.988500px;}
.x5d_c00175{left:339.228576px;}
.x54_c00175{left:342.496500px;}
.x6b_c00175{left:343.816500px;}
.x1e_c00175{left:345.252000px;}
.x64_c00175{left:346.950000px;}
.x23_c00175{left:353.430000px;}
.x35_c00175{left:356.497500px;}
.x5e_c00175{left:359.211752px;}
.x4a_c00175{left:360.990000px;}
.xb_c00175{left:366.658500px;}
.x30_c00175{left:368.155458px;}
.x17_c00175{left:370.383000px;}
.x59_c00175{left:373.288500px;}
.x45_c00175{left:374.772297px;}
.x36_c00175{left:376.551000px;}
.x2c_c00175{left:380.043000px;}
.xc_c00175{left:381.238500px;}
.x26_c00175{left:382.599000px;}
.x6d_c00175{left:385.410000px;}
.x78_c00175{left:387.720000px;}
.x18_c00175{left:390.645000px;}
.x8_c00175{left:395.130000px;}
.x46_c00175{left:397.183503px;}
.x4b_c00175{left:402.030000px;}
.x3f_c00175{left:406.457543px;}
.x19_c00175{left:414.412500px;}
.x31_c00175{left:416.391720px;}
.x37_c00175{left:417.600000px;}
.x24_c00175{left:422.820000px;}
.x1f_c00175{left:425.712000px;}
.xd_c00175{left:436.858500px;}
.x38_c00175{left:438.370500px;}
.x4c_c00175{left:440.100000px;}
.x1a_c00175{left:441.963000px;}
.x5f_c00175{left:443.752521px;}
.x20_c00175{left:447.042000px;}
.x47_c00175{left:448.740000px;}
.x40_c00175{left:450.748011px;}
.x73_c00175{left:462.240000px;}
.x65_c00175{left:463.320000px;}
.x60_c00175{left:468.276237px;}
.x28_c00175{left:469.733640px;}
.xe_c00175{left:477.088500px;}
.x22_c00175{left:478.440000px;}
.x21_c00175{left:481.584000px;}
.x74_c00175{left:489.780000px;}
.x41_c00175{left:492.027881px;}
.xf_c00175{left:498.958500px;}
.x66_c00175{left:510.300000px;}
.x10_c00175{left:553.498500px;}
.x29_c00175{left:580.346640px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
.fs5_c00175{font-size:19.600000pt;}
.fs8_c00175{font-size:53.220850pt;}
.fs12_c00175{font-size:54.135526pt;}
.fsc_c00175{font-size:54.136608pt;}
.fs14_c00175{font-size:55.066667pt;}
.fs13_c00175{font-size:57.866667pt;}
.fs17_c00175{font-size:58.800000pt;}
.fsb_c00175{font-size:58.803557pt;}
.fs2_c00175{font-size:59.733333pt;}
.fs11_c00175{font-size:59.735752pt;}
.fs10_c00175{font-size:59.736320pt;}
.fsf_c00175{font-size:61.600000pt;}
.fs4_c00175{font-size:63.466667pt;}
.fs9_c00175{font-size:63.491541pt;}
.fs0_c00175{font-size:64.400000pt;}
.fs15_c00175{font-size:65.333333pt;}
.fs16_c00175{font-size:66.266667pt;}
.fs3_c00175{font-size:67.200000pt;}
.fs1_c00175{font-size:69.066667pt;}
.fsd_c00175{font-size:69.070845pt;}
.fse_c00175{font-size:70.933333pt;}
.fsa_c00175{font-size:71.871014pt;}
.fs7_c00175{font-size:78.403920pt;}
.fs6_c00175{font-size:92.400000pt;}
.y0_c00175{bottom:0.000000pt;}
.y89_c00175{bottom:134.524000pt;}
.y88_c00175{bottom:154.972000pt;}
.y87_c00175{bottom:174.844000pt;}
.y7e_c00175{bottom:193.922667pt;}
.y7f_c00175{bottom:194.141333pt;}
.y80_c00175{bottom:194.556000pt;}
.y81_c00175{bottom:194.766667pt;}
.y82_c00175{bottom:195.417333pt;}
.y83_c00175{bottom:195.866667pt;}
.y84_c00175{bottom:196.137333pt;}
.y85_c00175{bottom:196.517333pt;}
.y86_c00175{bottom:196.792000pt;}
.y74_c00175{bottom:214.801333pt;}
.y75_c00175{bottom:215.361333pt;}
.y76_c00175{bottom:215.528000pt;}
.y77_c00175{bottom:215.629333pt;}
.y78_c00175{bottom:215.900000pt;}
.y79_c00175{bottom:216.040000pt;}
.y7a_c00175{bottom:216.380000pt;}
.y7b_c00175{bottom:216.488000pt;}
.y7c_c00175{bottom:216.926667pt;}
.y7d_c00175{bottom:217.329333pt;}
.y73_c00175{bottom:236.681333pt;}
.y68_c00175{bottom:254.983107pt;}
.y69_c00175{bottom:255.202344pt;}
.y6a_c00175{bottom:255.618896pt;}
.y6b_c00175{bottom:255.770869pt;}
.y6c_c00175{bottom:256.047303pt;}
.y6d_c00175{bottom:256.421788pt;}
.y6e_c00175{bottom:256.875536pt;}
.y6f_c00175{bottom:257.018067pt;}
.y70_c00175{bottom:257.322864pt;}
.y71_c00175{bottom:257.618387pt;}
.y72_c00175{bottom:257.793241pt;}
.y60_c00175{bottom:275.281333pt;}
.y61_c00175{bottom:275.499625pt;}
.y62_c00175{bottom:275.963809pt;}
.y63_c00175{bottom:276.305137pt;}
.y64_c00175{bottom:276.868849pt;}
.y65_c00175{bottom:277.307005pt;}
.y66_c00175{bottom:277.651009pt;}
.y67_c00175{bottom:278.203513pt;}
.y55_c00175{bottom:295.432000pt;}
.y56_c00175{bottom:295.621880pt;}
.y57_c00175{bottom:295.859280pt;}
.y58_c00175{bottom:296.178347pt;}
.y59_c00175{bottom:296.429947pt;}
.y5a_c00175{bottom:296.867200pt;}
.y5b_c00175{bottom:297.034907pt;}
.y5c_c00175{bottom:297.483907pt;}
.y5d_c00175{bottom:297.774360pt;}
.y5e_c00175{bottom:298.301947pt;}
.y5f_c00175{bottom:298.621587pt;}
.y54_c00175{bottom:316.014667pt;}
.y53_c00175{bottom:337.260000pt;}
.y4a_c00175{bottom:357.433175pt;}
.y4b_c00175{bottom:357.433427pt;}
.y4c_c00175{bottom:357.433599pt;}
.y4d_c00175{bottom:357.434011pt;}
.y4e_c00175{bottom:357.434396pt;}
.y50_c00175{bottom:357.434764pt;}
.y4f_c00175{bottom:357.434980pt;}
.y51_c00175{bottom:357.435203pt;}
.y52_c00175{bottom:357.435253pt;}
.y42_c00175{bottom:377.037961pt;}
.y43_c00175{bottom:377.322059pt;}
.y44_c00175{bottom:377.802015pt;}
.y45_c00175{bottom:378.074052pt;}
.y46_c00175{bottom:378.523621pt;}
.y47_c00175{bottom:378.777787pt;}
.y48_c00175{bottom:379.092168pt;}
.y49_c00175{bottom:379.385113pt;}
.y41_c00175{bottom:397.246301pt;}
.y3d_c00175{bottom:397.246807pt;}
.y40_c00175{bottom:397.246811pt;}
.y3f_c00175{bottom:397.246881pt;}
.y3b_c00175{bottom:397.246999pt;}
.y3c_c00175{bottom:397.247248pt;}
.y3e_c00175{bottom:397.247337pt;}
.y3a_c00175{bottom:397.247360pt;}
.y31_c00175{bottom:416.641333pt;}
.y32_c00175{bottom:417.087552pt;}
.y33_c00175{bottom:417.438276pt;}
.y34_c00175{bottom:417.647232pt;}
.y35_c00175{bottom:418.383220pt;}
.y36_c00175{bottom:418.620835pt;}
.y37_c00175{bottom:418.816913pt;}
.y38_c00175{bottom:419.218281pt;}
.y39_c00175{bottom:419.421371pt;}
.y29_c00175{bottom:433.197765pt;}
.y2a_c00175{bottom:433.440512pt;}
.y2b_c00175{bottom:433.770667pt;}
.y2c_c00175{bottom:434.910384pt;}
.y2d_c00175{bottom:435.475733pt;}
.y2e_c00175{bottom:437.236149pt;}
.y2f_c00175{bottom:438.221861pt;}
.y30_c00175{bottom:438.742672pt;}
.y25_c00175{bottom:453.129333pt;}
.y26_c00175{bottom:455.423280pt;}
.y27_c00175{bottom:456.412725pt;}
.y28_c00175{bottom:458.547147pt;}
.y22_c00175{bottom:492.330800pt;}
.y23_c00175{bottom:494.135227pt;}
.y24_c00175{bottom:495.118453pt;}
.y20_c00175{bottom:514.046667pt;}
.y21_c00175{bottom:515.997627pt;}
.y1f_c00175{bottom:553.786667pt;}
.y1e_c00175{bottom:601.440000pt;}
.y15_c00175{bottom:611.281333pt;}
.y16_c00175{bottom:611.738667pt;}
.y17_c00175{bottom:612.305333pt;}
.y18_c00175{bottom:612.634667pt;}
.y19_c00175{bottom:613.428000pt;}
.y1a_c00175{bottom:613.582667pt;}
.y1b_c00175{bottom:614.584000pt;}
.y1c_c00175{bottom:614.849333pt;}
.y1d_c00175{bottom:615.278667pt;}
.yc_c00175{bottom:630.962667pt;}
.yd_c00175{bottom:631.698667pt;}
.ye_c00175{bottom:632.150667pt;}
.yf_c00175{bottom:632.648000pt;}
.y10_c00175{bottom:633.057333pt;}
.y11_c00175{bottom:634.141333pt;}
.y12_c00175{bottom:634.448000pt;}
.y13_c00175{bottom:634.806667pt;}
.y14_c00175{bottom:635.222667pt;}
.yb_c00175{bottom:654.613333pt;}
.ya_c00175{bottom:675.826667pt;}
.y8_c00175{bottom:693.512000pt;}
.y9_c00175{bottom:694.004000pt;}
.y2_c00175{bottom:711.608000pt;}
.y3_c00175{bottom:712.898667pt;}
.y4_c00175{bottom:713.330667pt;}
.y5_c00175{bottom:713.937333pt;}
.y6_c00175{bottom:714.512000pt;}
.y7_c00175{bottom:716.876000pt;}
.y1_c00175{bottom:735.852000pt;}
.h7_c00175{height:19.600000pt;}
.ha_c00175{height:53.220850pt;}
.h14_c00175{height:54.135526pt;}
.he_c00175{height:54.136608pt;}
.h16_c00175{height:55.066667pt;}
.h15_c00175{height:57.866667pt;}
.h19_c00175{height:58.800000pt;}
.hd_c00175{height:58.803557pt;}
.h4_c00175{height:59.733333pt;}
.h13_c00175{height:59.735752pt;}
.h12_c00175{height:59.736320pt;}
.h11_c00175{height:61.600000pt;}
.h6_c00175{height:63.466667pt;}
.hb_c00175{height:63.491541pt;}
.h2_c00175{height:64.400000pt;}
.h17_c00175{height:65.333333pt;}
.h18_c00175{height:66.266667pt;}
.h5_c00175{height:67.200000pt;}
.h3_c00175{height:69.066667pt;}
.hf_c00175{height:69.070845pt;}
.h10_c00175{height:70.933333pt;}
.hc_c00175{height:71.871014pt;}
.h9_c00175{height:78.403920pt;}
.h8_c00175{height:92.400000pt;}
.h0_c00175{height:896.400000pt;}
.h1_c00175{height:896.666667pt;}
.w0_c00175{width:603.066667pt;}
.w1_c00175{width:603.333333pt;}
.x0_c00175{left:0.000000pt;}
.x5a_c00175{left:65.190400pt;}
.x55_c00175{left:68.514667pt;}
.x4d_c00175{left:70.205333pt;}
.x61_c00175{left:72.720000pt;}
.x6e_c00175{left:74.880000pt;}
.x4e_c00175{left:89.193333pt;}
.x56_c00175{left:92.769333pt;}
.x4f_c00175{left:112.933333pt;}
.x6f_c00175{left:116.160000pt;}
.x32_c00175{left:136.932000pt;}
.x3_c00175{left:140.477333pt;}
.x13_c00175{left:142.286667pt;}
.x3c_c00175{left:143.849755pt;}
.x25_c00175{left:144.992000pt;}
.x2d_c00175{left:151.663397pt;}
.x2e_c00175{left:162.191520pt;}
.x5b_c00175{left:163.535276pt;}
.x42_c00175{left:166.080068pt;}
.x67_c00175{left:168.772000pt;}
.x50_c00175{left:170.000000pt;}
.x39_c00175{left:171.361477pt;}
.x1b_c00175{left:175.168000pt;}
.x2f_c00175{left:176.556203pt;}
.x33_c00175{left:177.497333pt;}
.x3d_c00175{left:179.374928pt;}
.x57_c00175{left:182.270667pt;}
.x68_c00175{left:183.176000pt;}
.x14_c00175{left:185.548000pt;}
.x43_c00175{left:188.401433pt;}
.x4_c00175{left:192.098667pt;}
.x5c_c00175{left:198.102255pt;}
.x70_c00175{left:202.320000pt;}
.x75_c00175{left:205.440000pt;}
.x5_c00175{left:209.361333pt;}
.x15_c00175{left:212.144000pt;}
.x51_c00175{left:213.725333pt;}
.x1c_c00175{left:215.625333pt;}
.x48_c00175{left:219.600000pt;}
.x44_c00175{left:220.563987pt;}
.x69_c00175{left:221.809333pt;}
.x2a_c00175{left:226.249333pt;}
.x34_c00175{left:228.377333pt;}
.x52_c00175{left:230.496000pt;}
.x6_c00175{left:233.640000pt;}
.x9_c00175{left:235.160000pt;}
.x71_c00175{left:236.160000pt;}
.x27_c00175{left:237.098347pt;}
.x1d_c00175{left:239.170667pt;}
.x16_c00175{left:241.374667pt;}
.x76_c00175{left:243.600000pt;}
.x3a_c00175{left:244.565003pt;}
.x11_c00175{left:250.558667pt;}
.x6c_c00175{left:252.564000pt;}
.x1_c00175{left:253.680000pt;}
.x62_c00175{left:254.880000pt;}
.x7_c00175{left:256.648000pt;}
.x2b_c00175{left:261.586667pt;}
.x49_c00175{left:263.040000pt;}
.x77_c00175{left:264.720000pt;}
.xa_c00175{left:265.902667pt;}
.x3e_c00175{left:273.438037pt;}
.x53_c00175{left:275.396000pt;}
.x72_c00175{left:279.360000pt;}
.x3b_c00175{left:287.527528pt;}
.x6a_c00175{left:290.257333pt;}
.x63_c00175{left:292.080000pt;}
.x58_c00175{left:293.589333pt;}
.x2_c00175{left:295.920000pt;}
.x12_c00175{left:296.878667pt;}
.x5d_c00175{left:301.536512pt;}
.x54_c00175{left:304.441333pt;}
.x6b_c00175{left:305.614667pt;}
.x1e_c00175{left:306.890667pt;}
.x64_c00175{left:308.400000pt;}
.x23_c00175{left:314.160000pt;}
.x35_c00175{left:316.886667pt;}
.x5e_c00175{left:319.299335pt;}
.x4a_c00175{left:320.880000pt;}
.xb_c00175{left:325.918667pt;}
.x30_c00175{left:327.249296pt;}
.x17_c00175{left:329.229333pt;}
.x59_c00175{left:331.812000pt;}
.x45_c00175{left:333.130931pt;}
.x36_c00175{left:334.712000pt;}
.x2c_c00175{left:337.816000pt;}
.xc_c00175{left:338.878667pt;}
.x26_c00175{left:340.088000pt;}
.x6d_c00175{left:342.586667pt;}
.x78_c00175{left:344.640000pt;}
.x18_c00175{left:347.240000pt;}
.x8_c00175{left:351.226667pt;}
.x46_c00175{left:353.052003pt;}
.x4b_c00175{left:357.360000pt;}
.x3f_c00175{left:361.295593pt;}
.x19_c00175{left:368.366667pt;}
.x31_c00175{left:370.125973pt;}
.x37_c00175{left:371.200000pt;}
.x24_c00175{left:375.840000pt;}
.x1f_c00175{left:378.410667pt;}
.xd_c00175{left:388.318667pt;}
.x38_c00175{left:389.662667pt;}
.x4c_c00175{left:391.200000pt;}
.x1a_c00175{left:392.856000pt;}
.x5f_c00175{left:394.446685pt;}
.x20_c00175{left:397.370667pt;}
.x47_c00175{left:398.880000pt;}
.x40_c00175{left:400.664899pt;}
.x73_c00175{left:410.880000pt;}
.x65_c00175{left:411.840000pt;}
.x60_c00175{left:416.245544pt;}
.x28_c00175{left:417.541013pt;}
.xe_c00175{left:424.078667pt;}
.x22_c00175{left:425.280000pt;}
.x21_c00175{left:428.074667pt;}
.x74_c00175{left:435.360000pt;}
.x41_c00175{left:437.358116pt;}
.xf_c00175{left:443.518667pt;}
.x66_c00175{left:453.600000pt;}
.x10_c00175{left:491.998667pt;}
.x29_c00175{left:515.863680pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m60_c00176{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);}
.m7b_c00176{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);}
.m34_c00176{transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{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);}
.mc3_c00176{transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147410,0.000000,0.000000,0.250000,0,0);}
.m2b_c00176{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);}
.m6d_c00176{transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);}
.m76_c00176{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);}
.m6b_c00176{transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{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);}
.m39_c00176{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);}
.m24_c00176{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);}
.m1_c00176{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);}
.m6f_c00176{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);}
.m37_c00176{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);}
.mc2_c00176{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);}
.mbb_c00176{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);}
.md2_c00176{transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);}
.mcb_c00176{transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{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);}
.me_c00176{transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.mbd_c00176{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.ma3_c00176{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);}
.m66_c00176{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);}
.m9c_c00176{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{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);}
.mcf_c00176{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);}
.m70_c00176{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);}
.m6a_c00176{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);}
.m10_c00176{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);}
.ma7_c00176{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);}
.m31_c00176{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{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);}
.ma1_c00176{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);}
.m19_c00176{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);}
.m6c_c00176{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.mbe_c00176{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);}
.m2d_c00176{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);}
.mb2_c00176{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);}
.maf_c00176{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);}
.mad_c00176{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);}
.mb3_c00176{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);}
.m67_c00176{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);}
.m86_c00176{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);}
.m9a_c00176{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);}
.m45_c00176{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);}
.mca_c00176{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);}
.mbc_c00176{transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{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);}
.m1e_c00176{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);}
.m79_c00176{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);}
.m9e_c00176{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);}
.m4_c00176{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{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);}
.m68_c00176{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);}
.m65_c00176{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);}
.mce_c00176{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);}
.m7d_c00176{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);}
.m5d_c00176{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);}
.m49_c00176{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);}
.m63_c00176{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);}
.m5c_c00176{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);}
.m3a_c00176{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);}
.ma8_c00176{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);}
.m7a_c00176{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);}
.m11_c00176{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);}
.mc1_c00176{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);}
.mc_c00176{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{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);}
.mc0_c00176{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);}
.maa_c00176{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);}
.m29_c00176{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);}
.md4_c00176{transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{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);}
.m13_c00176{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);}
.m1b_c00176{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);}
.m9d_c00176{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);}
.m98_c00176{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);}
.mc9_c00176{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);}
.m89_c00176{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);}
.m2e_c00176{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);}
.m71_c00176{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);}
.m30_c00176{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);}
.md3_c00176{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);}
.m6_c00176{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);}
.m15_c00176{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);}
.m74_c00176{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);}
.m5_c00176{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);}
.m28_c00176{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_c00176{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);}
.m1a_c00176{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);}
.m3f_c00176{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);}
.m91_c00176{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);}
.m3d_c00176{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);}
.mae_c00176{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);}
.m9_c00176{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);}
.m33_c00176{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);}
.m51_c00176{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);}
.mb7_c00176{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);}
.m88_c00176{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);}
.m75_c00176{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);}
.m92_c00176{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);}
.mac_c00176{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);}
.m97_c00176{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);}
.m9b_c00176{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);}
.m96_c00176{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);}
.m53_c00176{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);}
.ma_c00176{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);}
.m78_c00176{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);}
.m16_c00176{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);}
.m32_c00176{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_c00176{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);}
.m1c_c00176{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);}
.mb_c00176{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);}
.m26_c00176{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);}
.m95_c00176{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);}
.m35_c00176{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);}
.m5b_c00176{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);}
.mb9_c00176{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);}
.m3_c00176{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);}
.m5e_c00176{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);}
.mbf_c00176{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);}
.m54_c00176{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);}
.m5f_c00176{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);}
.m6e_c00176{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);}
.m1d_c00176{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);}
.m7_c00176{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);}
.mab_c00176{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);}
.ma9_c00176{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);}
.mc6_c00176{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);}
.m3c_c00176{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);}
.mf_c00176{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);}
.m23_c00176{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);}
.m8f_c00176{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);}
.m44_c00176{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);}
.m9f_c00176{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);}
.m81_c00176{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);}
.m73_c00176{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);}
.md1_c00176{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);}
.m69_c00176{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);}
.m55_c00176{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);}
.m94_c00176{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);}
.m0_c00176{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);}
.m20_c00176{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);}
.mdb_c00176{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);}
.m82_c00176{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);}
.m7f_c00176{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);}
.m8b_c00176{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);}
.mb6_c00176{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);}
.m12_c00176{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);}
.m4e_c00176{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);}
.m36_c00176{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);}
.m4f_c00176{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);}
.ma6_c00176{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);}
.md6_c00176{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);}
.m8_c00176{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);}
.m7c_c00176{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);}
.mb1_c00176{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);}
.m77_c00176{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);}
.m61_c00176{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);}
.m80_c00176{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m83_c00176{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);}
.m52_c00176{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);}
.mc7_c00176{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);}
.m59_c00176{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);}
.m99_c00176{transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{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);}
.m3b_c00176{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);}
.m8d_c00176{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.mb8_c00176{transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);}
.md8_c00176{transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{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);}
.m1f_c00176{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);}
.m87_c00176{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);}
.m90_c00176{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);}
.m7e_c00176{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);}
.m40_c00176{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);}
.m8a_c00176{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);}
.mb0_c00176{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);}
.m4b_c00176{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{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);}
.mc8_c00176{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);}
.m93_c00176{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);}
.m21_c00176{transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);}
.mdc_c00176{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{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);}
.md_c00176{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);}
.m85_c00176{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);}
.m27_c00176{transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{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);}
.mba_c00176{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.262350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262350,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{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);}
.mb5_c00176{transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{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);}
.mcd_c00176{transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309635,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309855,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);}
.md9_c00176{transform:matrix(0.335600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349110,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354675,0.000000,0.000000,0.250000,0,0);}
.md7_c00176{transform:matrix(0.360430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360430,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{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);}
.m56_c00176{transform:matrix(0.371195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371195,0.000000,0.000000,0.250000,0,0);}
.md0_c00176{transform:matrix(0.380290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380290,0.000000,0.000000,0.250000,0,0);}
.mda_c00176{transform:matrix(0.384165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384165,0.000000,0.000000,0.250000,0,0);}
.md5_c00176{transform:matrix(0.403190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00176{transform:matrix(0.436710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436710,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.444755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00176{transform:matrix(0.462165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462165,0.000000,0.000000,0.250000,0,0);}
.mc5_c00176{transform:matrix(0.462690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462690,0.000000,0.000000,0.250000,0,0);}
.m84_c00176{transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.718235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00176{transform:matrix(0.790820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790820,0.000000,0.000000,0.250000,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;}
._0_c00176{width:27.630439px;}
.fc0_c00176{color:transparent;}
.fs6_c00176{font-size:60.900000px;}
.fs9_c00176{font-size:64.050000px;}
.fs7_c00176{font-size:66.150000px;}
.fs4_c00176{font-size:67.200000px;}
.fs3_c00176{font-size:68.250000px;}
.fs1_c00176{font-size:69.300000px;}
.fs5_c00176{font-size:70.350000px;}
.fs2_c00176{font-size:71.400000px;}
.fs0_c00176{font-size:72.450000px;}
.fsa_c00176{font-size:73.500000px;}
.fs8_c00176{font-size:74.550000px;}
.fsb_c00176{font-size:75.600000px;}
.fsc_c00176{font-size:99.750000px;}
.y0_c00176{bottom:0.000000px;}
.y26_c00176{bottom:181.626000px;}
.y25_c00176{bottom:181.632000px;}
.y24_c00176{bottom:182.076000px;}
.y23_c00176{bottom:182.845500px;}
.y22_c00176{bottom:183.357000px;}
.y21_c00176{bottom:183.660000px;}
.y20_c00176{bottom:183.808500px;}
.y1f_c00176{bottom:183.961500px;}
.y1e_c00176{bottom:184.050000px;}
.y1d_c00176{bottom:184.390500px;}
.y1c_c00176{bottom:184.690500px;}
.y1b_c00176{bottom:205.183500px;}
.y1a_c00176{bottom:228.115500px;}
.y19_c00176{bottom:251.370000px;}
.y18_c00176{bottom:273.585000px;}
.y17_c00176{bottom:296.931000px;}
.y16_c00176{bottom:319.047000px;}
.y15_c00176{bottom:342.567000px;}
.y14_c00176{bottom:364.918500px;}
.y13_c00176{bottom:388.132500px;}
.y12_c00176{bottom:410.182500px;}
.y11_c00176{bottom:432.690000px;}
.y10_c00176{bottom:460.213500px;}
.yf_c00176{bottom:483.570000px;}
.ye_c00176{bottom:505.621500px;}
.yd_c00176{bottom:528.390000px;}
.yc_c00176{bottom:550.609500px;}
.yb_c00176{bottom:572.940000px;}
.ya_c00176{bottom:621.181500px;}
.y9_c00176{bottom:643.854000px;}
.y8_c00176{bottom:666.406500px;}
.y7_c00176{bottom:689.224500px;}
.y6_c00176{bottom:712.071000px;}
.y5_c00176{bottom:734.259000px;}
.y4_c00176{bottom:757.620000px;}
.y3_c00176{bottom:785.430000px;}
.y2_c00176{bottom:807.417000px;}
.y1_c00176{bottom:830.568000px;}
.y27_c00176{bottom:877.891500px;}
.h8_c00176{height:60.900000px;}
.hb_c00176{height:64.050000px;}
.h9_c00176{height:66.150000px;}
.h6_c00176{height:67.200000px;}
.h5_c00176{height:68.250000px;}
.h3_c00176{height:69.300000px;}
.h7_c00176{height:70.350000px;}
.h4_c00176{height:71.400000px;}
.h2_c00176{height:72.450000px;}
.hc_c00176{height:73.500000px;}
.ha_c00176{height:74.550000px;}
.hd_c00176{height:75.600000px;}
.he_c00176{height:99.750000px;}
.h1_c00176{height:1005.000000px;}
.h0_c00176{height:1005.150000px;}
.w0_c00176{width:735.750000px;}
.x0_c00176{left:0.000000px;}
.x44_c00176{left:117.720000px;}
.x52_c00176{left:119.340000px;}
.x72_c00176{left:123.120000px;}
.x59_c00176{left:125.010000px;}
.x69_c00176{left:127.980000px;}
.x53_c00176{left:129.060000px;}
.x1_c00176{left:130.680000px;}
.x78_c00176{left:145.260000px;}
.x49_c00176{left:152.010000px;}
.x5a_c00176{left:155.250000px;}
.x31_c00176{left:156.600000px;}
.x45_c00176{left:159.570000px;}
.x16_c00176{left:161.190000px;}
.x3d_c00176{left:164.160000px;}
.x5e_c00176{left:165.240000px;}
.xd_c00176{left:168.210000px;}
.x37_c00176{left:169.290000px;}
.x6a_c00176{left:171.720000px;}
.x2_c00176{left:174.690000px;}
.x32_c00176{left:177.930000px;}
.x81_c00176{left:179.550000px;}
.x25_c00176{left:184.410000px;}
.x54_c00176{left:186.030000px;}
.x4a_c00176{left:190.080000px;}
.xe_c00176{left:192.510000px;}
.x17_c00176{left:196.290000px;}
.x2c_c00176{left:197.640000px;}
.x62_c00176{left:198.720000px;}
.x46_c00176{left:200.070000px;}
.x3_c00176{left:204.390000px;}
.x33_c00176{left:208.440000px;}
.x26_c00176{left:217.080000px;}
.x79_c00176{left:218.160000px;}
.xf_c00176{left:220.050000px;}
.x6d_c00176{left:223.020000px;}
.x8_c00176{left:225.180000px;}
.x38_c00176{left:227.880000px;}
.x1e_c00176{left:230.310000px;}
.x2d_c00176{left:233.550000px;}
.x18_c00176{left:235.440000px;}
.x4b_c00176{left:238.680000px;}
.x40_c00176{left:240.030000px;}
.x4_c00176{left:244.080000px;}
.x39_c00176{left:248.400000px;}
.x10_c00176{left:251.100000px;}
.x1f_c00176{left:252.990000px;}
.x15_c00176{left:256.230000px;}
.x7d_c00176{left:257.430000px;}
.x68_c00176{left:258.660000px;}
.x47_c00176{left:261.090000px;}
.x4c_c00176{left:262.170000px;}
.x19_c00176{left:270.000000px;}
.x73_c00176{left:271.080000px;}
.x5f_c00176{left:275.940000px;}
.x27_c00176{left:277.290000px;}
.x34_c00176{left:283.230000px;}
.x2e_c00176{left:286.470000px;}
.x20_c00176{left:288.900000px;}
.x6e_c00176{left:290.520000px;}
.x9_c00176{left:294.570000px;}
.x48_c00176{left:295.650000px;}
.x11_c00176{left:302.130000px;}
.x3a_c00176{left:304.020000px;}
.x4d_c00176{left:305.640000px;}
.x3e_c00176{left:310.230000px;}
.x7a_c00176{left:311.850000px;}
.x50_c00176{left:312.930000px;}
.x2f_c00176{left:314.550000px;}
.x5_c00176{left:318.330000px;}
.x55_c00176{left:319.680000px;}
.x28_c00176{left:321.300000px;}
.x74_c00176{left:323.730000px;}
.x63_c00176{left:324.810000px;}
.x12_c00176{left:327.240000px;}
.x4e_c00176{left:329.400000px;}
.x35_c00176{left:334.260000px;}
.x1a_c00176{left:337.230000px;}
.x5b_c00176{left:338.850000px;}
.x60_c00176{left:342.090000px;}
.x6f_c00176{left:343.170000px;}
.x41_c00176{left:347.490000px;}
.x21_c00176{left:349.110000px;}
.xa_c00176{left:351.000000px;}
.x30_c00176{left:353.700000px;}
.x7b_c00176{left:356.400000px;}
.x75_c00176{left:357.480000px;}
.x7e_c00176{left:359.268000px;}
.x56_c00176{left:360.720000px;}
.x29_c00176{left:362.610000px;}
.x61_c00176{left:363.960000px;}
.xb_c00176{left:365.850000px;}
.x64_c00176{left:368.550000px;}
.x6b_c00176{left:369.900000px;}
.x42_c00176{left:371.520000px;}
.x5c_c00176{left:374.220000px;}
.x22_c00176{left:375.300000px;}
.x76_c00176{left:379.350000px;}
.x13_c00176{left:380.430000px;}
.x3b_c00176{left:383.130000px;}
.x6_c00176{left:385.830000px;}
.x1b_c00176{left:389.610000px;}
.x51_c00176{left:394.200000px;}
.xc_c00176{left:405.270000px;}
.x7c_c00176{left:406.620000px;}
.x7_c00176{left:407.970000px;}
.x2a_c00176{left:415.260000px;}
.x4f_c00176{left:419.310000px;}
.x57_c00176{left:421.470000px;}
.x65_c00176{left:424.170000px;}
.x14_c00176{left:429.570000px;}
.x1c_c00176{left:430.650000px;}
.x43_c00176{left:438.750000px;}
.x23_c00176{left:441.180000px;}
.x66_c00176{left:446.310000px;}
.x5d_c00176{left:447.390000px;}
.x6c_c00176{left:448.740000px;}
.x70_c00176{left:453.330000px;}
.x7f_c00176{left:455.377500px;}
.x1d_c00176{left:457.650000px;}
.x58_c00176{left:464.670000px;}
.x3c_c00176{left:466.290000px;}
.x82_c00176{left:470.070000px;}
.x24_c00176{left:471.150000px;}
.x36_c00176{left:472.230000px;}
.x77_c00176{left:474.660000px;}
.x3f_c00176{left:476.550000px;}
.x67_c00176{left:482.490000px;}
.x71_c00176{left:493.560000px;}
.x2b_c00176{left:496.530000px;}
.x80_c00176{left:510.883500px;}
.x83_c00176{left:539.190000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:0.000000pt;}
._0_c00176{width:24.560390pt;}
.fs6_c00176{font-size:54.133333pt;}
.fs9_c00176{font-size:56.933333pt;}
.fs7_c00176{font-size:58.800000pt;}
.fs4_c00176{font-size:59.733333pt;}
.fs3_c00176{font-size:60.666667pt;}
.fs1_c00176{font-size:61.600000pt;}
.fs5_c00176{font-size:62.533333pt;}
.fs2_c00176{font-size:63.466667pt;}
.fs0_c00176{font-size:64.400000pt;}
.fsa_c00176{font-size:65.333333pt;}
.fs8_c00176{font-size:66.266667pt;}
.fsb_c00176{font-size:67.200000pt;}
.fsc_c00176{font-size:88.666667pt;}
.y0_c00176{bottom:0.000000pt;}
.y26_c00176{bottom:161.445333pt;}
.y25_c00176{bottom:161.450667pt;}
.y24_c00176{bottom:161.845333pt;}
.y23_c00176{bottom:162.529333pt;}
.y22_c00176{bottom:162.984000pt;}
.y21_c00176{bottom:163.253333pt;}
.y20_c00176{bottom:163.385333pt;}
.y1f_c00176{bottom:163.521333pt;}
.y1e_c00176{bottom:163.600000pt;}
.y1d_c00176{bottom:163.902667pt;}
.y1c_c00176{bottom:164.169333pt;}
.y1b_c00176{bottom:182.385333pt;}
.y1a_c00176{bottom:202.769333pt;}
.y19_c00176{bottom:223.440000pt;}
.y18_c00176{bottom:243.186667pt;}
.y17_c00176{bottom:263.938667pt;}
.y16_c00176{bottom:283.597333pt;}
.y15_c00176{bottom:304.504000pt;}
.y14_c00176{bottom:324.372000pt;}
.y13_c00176{bottom:345.006667pt;}
.y12_c00176{bottom:364.606667pt;}
.y11_c00176{bottom:384.613333pt;}
.y10_c00176{bottom:409.078667pt;}
.yf_c00176{bottom:429.840000pt;}
.ye_c00176{bottom:449.441333pt;}
.yd_c00176{bottom:469.680000pt;}
.yc_c00176{bottom:489.430667pt;}
.yb_c00176{bottom:509.280000pt;}
.ya_c00176{bottom:552.161333pt;}
.y9_c00176{bottom:572.314667pt;}
.y8_c00176{bottom:592.361333pt;}
.y7_c00176{bottom:612.644000pt;}
.y6_c00176{bottom:632.952000pt;}
.y5_c00176{bottom:652.674667pt;}
.y4_c00176{bottom:673.440000pt;}
.y3_c00176{bottom:698.160000pt;}
.y2_c00176{bottom:717.704000pt;}
.y1_c00176{bottom:738.282667pt;}
.y27_c00176{bottom:780.348000pt;}
.h8_c00176{height:54.133333pt;}
.hb_c00176{height:56.933333pt;}
.h9_c00176{height:58.800000pt;}
.h6_c00176{height:59.733333pt;}
.h5_c00176{height:60.666667pt;}
.h3_c00176{height:61.600000pt;}
.h7_c00176{height:62.533333pt;}
.h4_c00176{height:63.466667pt;}
.h2_c00176{height:64.400000pt;}
.hc_c00176{height:65.333333pt;}
.ha_c00176{height:66.266667pt;}
.hd_c00176{height:67.200000pt;}
.he_c00176{height:88.666667pt;}
.h1_c00176{height:893.333333pt;}
.h0_c00176{height:893.466667pt;}
.w0_c00176{width:654.000000pt;}
.x0_c00176{left:0.000000pt;}
.x44_c00176{left:104.640000pt;}
.x52_c00176{left:106.080000pt;}
.x72_c00176{left:109.440000pt;}
.x59_c00176{left:111.120000pt;}
.x69_c00176{left:113.760000pt;}
.x53_c00176{left:114.720000pt;}
.x1_c00176{left:116.160000pt;}
.x78_c00176{left:129.120000pt;}
.x49_c00176{left:135.120000pt;}
.x5a_c00176{left:138.000000pt;}
.x31_c00176{left:139.200000pt;}
.x45_c00176{left:141.840000pt;}
.x16_c00176{left:143.280000pt;}
.x3d_c00176{left:145.920000pt;}
.x5e_c00176{left:146.880000pt;}
.xd_c00176{left:149.520000pt;}
.x37_c00176{left:150.480000pt;}
.x6a_c00176{left:152.640000pt;}
.x2_c00176{left:155.280000pt;}
.x32_c00176{left:158.160000pt;}
.x81_c00176{left:159.600000pt;}
.x25_c00176{left:163.920000pt;}
.x54_c00176{left:165.360000pt;}
.x4a_c00176{left:168.960000pt;}
.xe_c00176{left:171.120000pt;}
.x17_c00176{left:174.480000pt;}
.x2c_c00176{left:175.680000pt;}
.x62_c00176{left:176.640000pt;}
.x46_c00176{left:177.840000pt;}
.x3_c00176{left:181.680000pt;}
.x33_c00176{left:185.280000pt;}
.x26_c00176{left:192.960000pt;}
.x79_c00176{left:193.920000pt;}
.xf_c00176{left:195.600000pt;}
.x6d_c00176{left:198.240000pt;}
.x8_c00176{left:200.160000pt;}
.x38_c00176{left:202.560000pt;}
.x1e_c00176{left:204.720000pt;}
.x2d_c00176{left:207.600000pt;}
.x18_c00176{left:209.280000pt;}
.x4b_c00176{left:212.160000pt;}
.x40_c00176{left:213.360000pt;}
.x4_c00176{left:216.960000pt;}
.x39_c00176{left:220.800000pt;}
.x10_c00176{left:223.200000pt;}
.x1f_c00176{left:224.880000pt;}
.x15_c00176{left:227.760000pt;}
.x7d_c00176{left:228.826667pt;}
.x68_c00176{left:229.920000pt;}
.x47_c00176{left:232.080000pt;}
.x4c_c00176{left:233.040000pt;}
.x19_c00176{left:240.000000pt;}
.x73_c00176{left:240.960000pt;}
.x5f_c00176{left:245.280000pt;}
.x27_c00176{left:246.480000pt;}
.x34_c00176{left:251.760000pt;}
.x2e_c00176{left:254.640000pt;}
.x20_c00176{left:256.800000pt;}
.x6e_c00176{left:258.240000pt;}
.x9_c00176{left:261.840000pt;}
.x48_c00176{left:262.800000pt;}
.x11_c00176{left:268.560000pt;}
.x3a_c00176{left:270.240000pt;}
.x4d_c00176{left:271.680000pt;}
.x3e_c00176{left:275.760000pt;}
.x7a_c00176{left:277.200000pt;}
.x50_c00176{left:278.160000pt;}
.x2f_c00176{left:279.600000pt;}
.x5_c00176{left:282.960000pt;}
.x55_c00176{left:284.160000pt;}
.x28_c00176{left:285.600000pt;}
.x74_c00176{left:287.760000pt;}
.x63_c00176{left:288.720000pt;}
.x12_c00176{left:290.880000pt;}
.x4e_c00176{left:292.800000pt;}
.x35_c00176{left:297.120000pt;}
.x1a_c00176{left:299.760000pt;}
.x5b_c00176{left:301.200000pt;}
.x60_c00176{left:304.080000pt;}
.x6f_c00176{left:305.040000pt;}
.x41_c00176{left:308.880000pt;}
.x21_c00176{left:310.320000pt;}
.xa_c00176{left:312.000000pt;}
.x30_c00176{left:314.400000pt;}
.x7b_c00176{left:316.800000pt;}
.x75_c00176{left:317.760000pt;}
.x7e_c00176{left:319.349333pt;}
.x56_c00176{left:320.640000pt;}
.x29_c00176{left:322.320000pt;}
.x61_c00176{left:323.520000pt;}
.xb_c00176{left:325.200000pt;}
.x64_c00176{left:327.600000pt;}
.x6b_c00176{left:328.800000pt;}
.x42_c00176{left:330.240000pt;}
.x5c_c00176{left:332.640000pt;}
.x22_c00176{left:333.600000pt;}
.x76_c00176{left:337.200000pt;}
.x13_c00176{left:338.160000pt;}
.x3b_c00176{left:340.560000pt;}
.x6_c00176{left:342.960000pt;}
.x1b_c00176{left:346.320000pt;}
.x51_c00176{left:350.400000pt;}
.xc_c00176{left:360.240000pt;}
.x7c_c00176{left:361.440000pt;}
.x7_c00176{left:362.640000pt;}
.x2a_c00176{left:369.120000pt;}
.x4f_c00176{left:372.720000pt;}
.x57_c00176{left:374.640000pt;}
.x65_c00176{left:377.040000pt;}
.x14_c00176{left:381.840000pt;}
.x1c_c00176{left:382.800000pt;}
.x43_c00176{left:390.000000pt;}
.x23_c00176{left:392.160000pt;}
.x66_c00176{left:396.720000pt;}
.x5d_c00176{left:397.680000pt;}
.x6c_c00176{left:398.880000pt;}
.x70_c00176{left:402.960000pt;}
.x7f_c00176{left:404.780000pt;}
.x1d_c00176{left:406.800000pt;}
.x58_c00176{left:413.040000pt;}
.x3c_c00176{left:414.480000pt;}
.x82_c00176{left:417.840000pt;}
.x24_c00176{left:418.800000pt;}
.x36_c00176{left:419.760000pt;}
.x77_c00176{left:421.920000pt;}
.x3f_c00176{left:423.600000pt;}
.x67_c00176{left:428.880000pt;}
.x71_c00176{left:438.720000pt;}
.x2b_c00176{left:441.360000pt;}
.x80_c00176{left:454.118667pt;}
.x83_c00176{left:479.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m11_c00177{transform:matrix(0.010384,-0.000364,0.008753,0.249847,0,0);-ms-transform:matrix(0.010384,-0.000364,0.008753,0.249847,0,0);-webkit-transform:matrix(0.010384,-0.000364,0.008753,0.249847,0,0);}
.me_c00177{transform:matrix(0.011608,-0.000407,0.008753,0.249847,0,0);-ms-transform:matrix(0.011608,-0.000407,0.008753,0.249847,0,0);-webkit-transform:matrix(0.011608,-0.000407,0.008753,0.249847,0,0);}
.m3b_c00177{transform:matrix(0.105935,-0.003711,0.008753,0.249847,0,0);-ms-transform:matrix(0.105935,-0.003711,0.008753,0.249847,0,0);-webkit-transform:matrix(0.105935,-0.003711,0.008753,0.249847,0,0);}
.ma1_c00177{transform:matrix(0.106035,-0.003715,0.008753,0.249847,0,0);-ms-transform:matrix(0.106035,-0.003715,0.008753,0.249847,0,0);-webkit-transform:matrix(0.106035,-0.003715,0.008753,0.249847,0,0);}
.m94_c00177{transform:matrix(0.136536,-0.004784,0.008753,0.249847,0,0);-ms-transform:matrix(0.136536,-0.004784,0.008753,0.249847,0,0);-webkit-transform:matrix(0.136536,-0.004784,0.008753,0.249847,0,0);}
.m52_c00177{transform:matrix(0.142143,-0.004980,0.008753,0.249847,0,0);-ms-transform:matrix(0.142143,-0.004980,0.008753,0.249847,0,0);-webkit-transform:matrix(0.142143,-0.004980,0.008753,0.249847,0,0);}
.m31_c00177{transform:matrix(0.146240,-0.005124,0.008753,0.249847,0,0);-ms-transform:matrix(0.146240,-0.005124,0.008753,0.249847,0,0);-webkit-transform:matrix(0.146240,-0.005124,0.008753,0.249847,0,0);}
.m25_c00177{transform:matrix(0.146880,-0.005146,0.008753,0.249847,0,0);-ms-transform:matrix(0.146880,-0.005146,0.008753,0.249847,0,0);-webkit-transform:matrix(0.146880,-0.005146,0.008753,0.249847,0,0);}
.m2_c00177{transform:matrix(0.149813,-0.005249,0.008753,0.249847,0,0);-ms-transform:matrix(0.149813,-0.005249,0.008753,0.249847,0,0);-webkit-transform:matrix(0.149813,-0.005249,0.008753,0.249847,0,0);}
.m4d_c00177{transform:matrix(0.150887,-0.005286,0.008753,0.249847,0,0);-ms-transform:matrix(0.150887,-0.005286,0.008753,0.249847,0,0);-webkit-transform:matrix(0.150887,-0.005286,0.008753,0.249847,0,0);}
.m8c_c00177{transform:matrix(0.151797,-0.005318,0.008753,0.249847,0,0);-ms-transform:matrix(0.151797,-0.005318,0.008753,0.249847,0,0);-webkit-transform:matrix(0.151797,-0.005318,0.008753,0.249847,0,0);}
.m7c_c00177{transform:matrix(0.152127,-0.005330,0.008753,0.249847,0,0);-ms-transform:matrix(0.152127,-0.005330,0.008753,0.249847,0,0);-webkit-transform:matrix(0.152127,-0.005330,0.008753,0.249847,0,0);}
.m50_c00177{transform:matrix(0.155240,-0.005439,0.008753,0.249847,0,0);-ms-transform:matrix(0.155240,-0.005439,0.008753,0.249847,0,0);-webkit-transform:matrix(0.155240,-0.005439,0.008753,0.249847,0,0);}
.m7a_c00177{transform:matrix(0.155395,-0.005444,0.008753,0.249847,0,0);-ms-transform:matrix(0.155395,-0.005444,0.008753,0.249847,0,0);-webkit-transform:matrix(0.155395,-0.005444,0.008753,0.249847,0,0);}
.m42_c00177{transform:matrix(0.156184,-0.005472,0.008753,0.249847,0,0);-ms-transform:matrix(0.156184,-0.005472,0.008753,0.249847,0,0);-webkit-transform:matrix(0.156184,-0.005472,0.008753,0.249847,0,0);}
.m7e_c00177{transform:matrix(0.156499,-0.005483,0.008753,0.249847,0,0);-ms-transform:matrix(0.156499,-0.005483,0.008753,0.249847,0,0);-webkit-transform:matrix(0.156499,-0.005483,0.008753,0.249847,0,0);}
.m60_c00177{transform:matrix(0.157623,-0.005522,0.008753,0.249847,0,0);-ms-transform:matrix(0.157623,-0.005522,0.008753,0.249847,0,0);-webkit-transform:matrix(0.157623,-0.005522,0.008753,0.249847,0,0);}
.m35_c00177{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);}
.m9b_c00177{transform:matrix(0.160576,-0.005626,0.008753,0.249847,0,0);-ms-transform:matrix(0.160576,-0.005626,0.008753,0.249847,0,0);-webkit-transform:matrix(0.160576,-0.005626,0.008753,0.249847,0,0);}
.ma3_c00177{transform:matrix(0.160596,-0.005627,0.008753,0.249847,0,0);-ms-transform:matrix(0.160596,-0.005627,0.008753,0.249847,0,0);-webkit-transform:matrix(0.160596,-0.005627,0.008753,0.249847,0,0);}
.m20_c00177{transform:matrix(0.160691,-0.005630,0.008753,0.249847,0,0);-ms-transform:matrix(0.160691,-0.005630,0.008753,0.249847,0,0);-webkit-transform:matrix(0.160691,-0.005630,0.008753,0.249847,0,0);}
.m79_c00177{transform:matrix(0.162265,-0.005685,0.008753,0.249847,0,0);-ms-transform:matrix(0.162265,-0.005685,0.008753,0.249847,0,0);-webkit-transform:matrix(0.162265,-0.005685,0.008753,0.249847,0,0);}
.ma4_c00177{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);}
.m74_c00177{transform:matrix(0.163055,-0.005713,0.008753,0.249847,0,0);-ms-transform:matrix(0.163055,-0.005713,0.008753,0.249847,0,0);-webkit-transform:matrix(0.163055,-0.005713,0.008753,0.249847,0,0);}
.m61_c00177{transform:matrix(0.163320,-0.005722,0.008753,0.249847,0,0);-ms-transform:matrix(0.163320,-0.005722,0.008753,0.249847,0,0);-webkit-transform:matrix(0.163320,-0.005722,0.008753,0.249847,0,0);}
.m37_c00177{transform:matrix(0.164834,-0.005775,0.008753,0.249847,0,0);-ms-transform:matrix(0.164834,-0.005775,0.008753,0.249847,0,0);-webkit-transform:matrix(0.164834,-0.005775,0.008753,0.249847,0,0);}
.ma6_c00177{transform:matrix(0.165269,-0.005790,0.008753,0.249847,0,0);-ms-transform:matrix(0.165269,-0.005790,0.008753,0.249847,0,0);-webkit-transform:matrix(0.165269,-0.005790,0.008753,0.249847,0,0);}
.m93_c00177{transform:matrix(0.165673,-0.005804,0.008753,0.249847,0,0);-ms-transform:matrix(0.165673,-0.005804,0.008753,0.249847,0,0);-webkit-transform:matrix(0.165673,-0.005804,0.008753,0.249847,0,0);}
.m1d_c00177{transform:matrix(0.166983,-0.005850,0.008753,0.249847,0,0);-ms-transform:matrix(0.166983,-0.005850,0.008753,0.249847,0,0);-webkit-transform:matrix(0.166983,-0.005850,0.008753,0.249847,0,0);}
.m99_c00177{transform:matrix(0.167702,-0.005875,0.008753,0.249847,0,0);-ms-transform:matrix(0.167702,-0.005875,0.008753,0.249847,0,0);-webkit-transform:matrix(0.167702,-0.005875,0.008753,0.249847,0,0);}
.m1c_c00177{transform:matrix(0.168127,-0.005890,0.008753,0.249847,0,0);-ms-transform:matrix(0.168127,-0.005890,0.008753,0.249847,0,0);-webkit-transform:matrix(0.168127,-0.005890,0.008753,0.249847,0,0);}
.m24_c00177{transform:matrix(0.169131,-0.005926,0.008753,0.249847,0,0);-ms-transform:matrix(0.169131,-0.005926,0.008753,0.249847,0,0);-webkit-transform:matrix(0.169131,-0.005926,0.008753,0.249847,0,0);}
.m7b_c00177{transform:matrix(0.169596,-0.005942,0.008753,0.249847,0,0);-ms-transform:matrix(0.169596,-0.005942,0.008753,0.249847,0,0);-webkit-transform:matrix(0.169596,-0.005942,0.008753,0.249847,0,0);}
.m88_c00177{transform:matrix(0.170330,-0.005968,0.008753,0.249847,0,0);-ms-transform:matrix(0.170330,-0.005968,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170330,-0.005968,0.008753,0.249847,0,0);}
.m34_c00177{transform:matrix(0.170530,-0.005975,0.008753,0.249847,0,0);-ms-transform:matrix(0.170530,-0.005975,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170530,-0.005975,0.008753,0.249847,0,0);}
.m70_c00177{transform:matrix(0.170635,-0.005978,0.008753,0.249847,0,0);-ms-transform:matrix(0.170635,-0.005978,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170635,-0.005978,0.008753,0.249847,0,0);}
.m33_c00177{transform:matrix(0.170660,-0.005979,0.008753,0.249847,0,0);-ms-transform:matrix(0.170660,-0.005979,0.008753,0.249847,0,0);-webkit-transform:matrix(0.170660,-0.005979,0.008753,0.249847,0,0);}
.m38_c00177{transform:matrix(0.172524,-0.006044,0.008753,0.249847,0,0);-ms-transform:matrix(0.172524,-0.006044,0.008753,0.249847,0,0);-webkit-transform:matrix(0.172524,-0.006044,0.008753,0.249847,0,0);}
.m4f_c00177{transform:matrix(0.174183,-0.006103,0.008753,0.249847,0,0);-ms-transform:matrix(0.174183,-0.006103,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174183,-0.006103,0.008753,0.249847,0,0);}
.m7d_c00177{transform:matrix(0.174443,-0.006112,0.008753,0.249847,0,0);-ms-transform:matrix(0.174443,-0.006112,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174443,-0.006112,0.008753,0.249847,0,0);}
.m51_c00177{transform:matrix(0.174533,-0.006115,0.008753,0.249847,0,0);-ms-transform:matrix(0.174533,-0.006115,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174533,-0.006115,0.008753,0.249847,0,0);}
.m4_c00177{transform:matrix(0.174878,-0.006127,0.008753,0.249847,0,0);-ms-transform:matrix(0.174878,-0.006127,0.008753,0.249847,0,0);-webkit-transform:matrix(0.174878,-0.006127,0.008753,0.249847,0,0);}
.m16_c00177{transform:matrix(0.175662,-0.006154,0.008753,0.249847,0,0);-ms-transform:matrix(0.175662,-0.006154,0.008753,0.249847,0,0);-webkit-transform:matrix(0.175662,-0.006154,0.008753,0.249847,0,0);}
.m15_c00177{transform:matrix(0.176142,-0.006171,0.008753,0.249847,0,0);-ms-transform:matrix(0.176142,-0.006171,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176142,-0.006171,0.008753,0.249847,0,0);}
.m26_c00177{transform:matrix(0.176557,-0.006186,0.008753,0.249847,0,0);-ms-transform:matrix(0.176557,-0.006186,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176557,-0.006186,0.008753,0.249847,0,0);}
.m58_c00177{transform:matrix(0.176692,-0.006190,0.008753,0.249847,0,0);-ms-transform:matrix(0.176692,-0.006190,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176692,-0.006190,0.008753,0.249847,0,0);}
.m63_c00177{transform:matrix(0.177851,-0.006231,0.008753,0.249847,0,0);-ms-transform:matrix(0.177851,-0.006231,0.008753,0.249847,0,0);-webkit-transform:matrix(0.177851,-0.006231,0.008753,0.249847,0,0);}
.m2a_c00177{transform:matrix(0.178291,-0.006246,0.008753,0.249847,0,0);-ms-transform:matrix(0.178291,-0.006246,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178291,-0.006246,0.008753,0.249847,0,0);}
.m6b_c00177{transform:matrix(0.178396,-0.006250,0.008753,0.249847,0,0);-ms-transform:matrix(0.178396,-0.006250,0.008753,0.249847,0,0);-webkit-transform:matrix(0.178396,-0.006250,0.008753,0.249847,0,0);}
.m6e_c00177{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);}
.m95_c00177{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);}
.m4e_c00177{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);}
.m30_c00177{transform:matrix(0.179390,-0.006285,0.008753,0.249847,0,0);-ms-transform:matrix(0.179390,-0.006285,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179390,-0.006285,0.008753,0.249847,0,0);}
.m4b_c00177{transform:matrix(0.179465,-0.006288,0.008753,0.249847,0,0);-ms-transform:matrix(0.179465,-0.006288,0.008753,0.249847,0,0);-webkit-transform:matrix(0.179465,-0.006288,0.008753,0.249847,0,0);}
.m62_c00177{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);}
.m7f_c00177{transform:matrix(0.182863,-0.006407,0.008753,0.249847,0,0);-ms-transform:matrix(0.182863,-0.006407,0.008753,0.249847,0,0);-webkit-transform:matrix(0.182863,-0.006407,0.008753,0.249847,0,0);}
.m8d_c00177{transform:matrix(0.183273,-0.006421,0.008753,0.249847,0,0);-ms-transform:matrix(0.183273,-0.006421,0.008753,0.249847,0,0);-webkit-transform:matrix(0.183273,-0.006421,0.008753,0.249847,0,0);}
.m55_c00177{transform:matrix(0.186106,-0.006520,0.008753,0.249847,0,0);-ms-transform:matrix(0.186106,-0.006520,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186106,-0.006520,0.008753,0.249847,0,0);}
.m21_c00177{transform:matrix(0.186196,-0.006523,0.008753,0.249847,0,0);-ms-transform:matrix(0.186196,-0.006523,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186196,-0.006523,0.008753,0.249847,0,0);}
.m53_c00177{transform:matrix(0.186361,-0.006529,0.008753,0.249847,0,0);-ms-transform:matrix(0.186361,-0.006529,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186361,-0.006529,0.008753,0.249847,0,0);}
.m71_c00177{transform:matrix(0.186765,-0.006543,0.008753,0.249847,0,0);-ms-transform:matrix(0.186765,-0.006543,0.008753,0.249847,0,0);-webkit-transform:matrix(0.186765,-0.006543,0.008753,0.249847,0,0);}
.m4c_c00177{transform:matrix(0.187680,-0.006575,0.008753,0.249847,0,0);-ms-transform:matrix(0.187680,-0.006575,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187680,-0.006575,0.008753,0.249847,0,0);}
.m19_c00177{transform:matrix(0.187715,-0.006577,0.008753,0.249847,0,0);-ms-transform:matrix(0.187715,-0.006577,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187715,-0.006577,0.008753,0.249847,0,0);}
.m39_c00177{transform:matrix(0.187935,-0.006584,0.008753,0.249847,0,0);-ms-transform:matrix(0.187935,-0.006584,0.008753,0.249847,0,0);-webkit-transform:matrix(0.187935,-0.006584,0.008753,0.249847,0,0);}
.m57_c00177{transform:matrix(0.188120,-0.006591,0.008753,0.249847,0,0);-ms-transform:matrix(0.188120,-0.006591,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188120,-0.006591,0.008753,0.249847,0,0);}
.m2f_c00177{transform:matrix(0.188499,-0.006604,0.008753,0.249847,0,0);-ms-transform:matrix(0.188499,-0.006604,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188499,-0.006604,0.008753,0.249847,0,0);}
.m82_c00177{transform:matrix(0.188784,-0.006614,0.008753,0.249847,0,0);-ms-transform:matrix(0.188784,-0.006614,0.008753,0.249847,0,0);-webkit-transform:matrix(0.188784,-0.006614,0.008753,0.249847,0,0);}
.m67_c00177{transform:matrix(0.189194,-0.006628,0.008753,0.249847,0,0);-ms-transform:matrix(0.189194,-0.006628,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189194,-0.006628,0.008753,0.249847,0,0);}
.m92_c00177{transform:matrix(0.189479,-0.006638,0.008753,0.249847,0,0);-ms-transform:matrix(0.189479,-0.006638,0.008753,0.249847,0,0);-webkit-transform:matrix(0.189479,-0.006638,0.008753,0.249847,0,0);}
.m8a_c00177{transform:matrix(0.190248,-0.006665,0.008753,0.249847,0,0);-ms-transform:matrix(0.190248,-0.006665,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190248,-0.006665,0.008753,0.249847,0,0);}
.m1e_c00177{transform:matrix(0.190473,-0.006673,0.008753,0.249847,0,0);-ms-transform:matrix(0.190473,-0.006673,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190473,-0.006673,0.008753,0.249847,0,0);}
.m28_c00177{transform:matrix(0.190923,-0.006689,0.008753,0.249847,0,0);-ms-transform:matrix(0.190923,-0.006689,0.008753,0.249847,0,0);-webkit-transform:matrix(0.190923,-0.006689,0.008753,0.249847,0,0);}
.m1f_c00177{transform:matrix(0.191468,-0.006708,0.008753,0.249847,0,0);-ms-transform:matrix(0.191468,-0.006708,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191468,-0.006708,0.008753,0.249847,0,0);}
.m8f_c00177{transform:matrix(0.191512,-0.006710,0.008753,0.249847,0,0);-ms-transform:matrix(0.191512,-0.006710,0.008753,0.249847,0,0);-webkit-transform:matrix(0.191512,-0.006710,0.008753,0.249847,0,0);}
.m2e_c00177{transform:matrix(0.192297,-0.006737,0.008753,0.249847,0,0);-ms-transform:matrix(0.192297,-0.006737,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192297,-0.006737,0.008753,0.249847,0,0);}
.m5a_c00177{transform:matrix(0.192987,-0.006761,0.008753,0.249847,0,0);-ms-transform:matrix(0.192987,-0.006761,0.008753,0.249847,0,0);-webkit-transform:matrix(0.192987,-0.006761,0.008753,0.249847,0,0);}
.m6a_c00177{transform:matrix(0.193097,-0.006765,0.008753,0.249847,0,0);-ms-transform:matrix(0.193097,-0.006765,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193097,-0.006765,0.008753,0.249847,0,0);}
.m84_c00177{transform:matrix(0.194186,-0.006803,0.008753,0.249847,0,0);-ms-transform:matrix(0.194186,-0.006803,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194186,-0.006803,0.008753,0.249847,0,0);}
.m6f_c00177{transform:matrix(0.194221,-0.006805,0.008753,0.249847,0,0);-ms-transform:matrix(0.194221,-0.006805,0.008753,0.249847,0,0);-webkit-transform:matrix(0.194221,-0.006805,0.008753,0.249847,0,0);}
.mb_c00177{transform:matrix(0.195240,-0.006840,0.008753,0.249847,0,0);-ms-transform:matrix(0.195240,-0.006840,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195240,-0.006840,0.008753,0.249847,0,0);}
.m77_c00177{transform:matrix(0.195915,-0.006864,0.008753,0.249847,0,0);-ms-transform:matrix(0.195915,-0.006864,0.008753,0.249847,0,0);-webkit-transform:matrix(0.195915,-0.006864,0.008753,0.249847,0,0);}
.m29_c00177{transform:matrix(0.198403,-0.006951,0.008753,0.249847,0,0);-ms-transform:matrix(0.198403,-0.006951,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198403,-0.006951,0.008753,0.249847,0,0);}
.m2b_c00177{transform:matrix(0.198678,-0.006961,0.008753,0.249847,0,0);-ms-transform:matrix(0.198678,-0.006961,0.008753,0.249847,0,0);-webkit-transform:matrix(0.198678,-0.006961,0.008753,0.249847,0,0);}
.m97_c00177{transform:matrix(0.199488,-0.006989,0.008753,0.249847,0,0);-ms-transform:matrix(0.199488,-0.006989,0.008753,0.249847,0,0);-webkit-transform:matrix(0.199488,-0.006989,0.008753,0.249847,0,0);}
.m32_c00177{transform:matrix(0.200692,-0.007031,0.008753,0.249847,0,0);-ms-transform:matrix(0.200692,-0.007031,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200692,-0.007031,0.008753,0.249847,0,0);}
.m8b_c00177{transform:matrix(0.200907,-0.007039,0.008753,0.249847,0,0);-ms-transform:matrix(0.200907,-0.007039,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200907,-0.007039,0.008753,0.249847,0,0);}
.m90_c00177{transform:matrix(0.201721,-0.007067,0.008753,0.249847,0,0);-ms-transform:matrix(0.201721,-0.007067,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201721,-0.007067,0.008753,0.249847,0,0);}
.m40_c00177{transform:matrix(0.201846,-0.007072,0.008753,0.249847,0,0);-ms-transform:matrix(0.201846,-0.007072,0.008753,0.249847,0,0);-webkit-transform:matrix(0.201846,-0.007072,0.008753,0.249847,0,0);}
.m96_c00177{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);}
.m80_c00177{transform:matrix(0.203495,-0.007129,0.008753,0.249847,0,0);-ms-transform:matrix(0.203495,-0.007129,0.008753,0.249847,0,0);-webkit-transform:matrix(0.203495,-0.007129,0.008753,0.249847,0,0);}
.m5b_c00177{transform:matrix(0.204050,-0.007149,0.008753,0.249847,0,0);-ms-transform:matrix(0.204050,-0.007149,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204050,-0.007149,0.008753,0.249847,0,0);}
.m6c_c00177{transform:matrix(0.204390,-0.007161,0.008753,0.249847,0,0);-ms-transform:matrix(0.204390,-0.007161,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204390,-0.007161,0.008753,0.249847,0,0);}
.m91_c00177{transform:matrix(0.205229,-0.007190,0.008753,0.249847,0,0);-ms-transform:matrix(0.205229,-0.007190,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205229,-0.007190,0.008753,0.249847,0,0);}
.m87_c00177{transform:matrix(0.205529,-0.007201,0.008753,0.249847,0,0);-ms-transform:matrix(0.205529,-0.007201,0.008753,0.249847,0,0);-webkit-transform:matrix(0.205529,-0.007201,0.008753,0.249847,0,0);}
.m75_c00177{transform:matrix(0.207528,-0.007271,0.008753,0.249847,0,0);-ms-transform:matrix(0.207528,-0.007271,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207528,-0.007271,0.008753,0.249847,0,0);}
.m3_c00177{transform:matrix(0.207573,-0.007272,0.008753,0.249847,0,0);-ms-transform:matrix(0.207573,-0.007272,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207573,-0.007272,0.008753,0.249847,0,0);}
.m9a_c00177{transform:matrix(0.207867,-0.007283,0.008753,0.249847,0,0);-ms-transform:matrix(0.207867,-0.007283,0.008753,0.249847,0,0);-webkit-transform:matrix(0.207867,-0.007283,0.008753,0.249847,0,0);}
.m4a_c00177{transform:matrix(0.208937,-0.007320,0.008753,0.249847,0,0);-ms-transform:matrix(0.208937,-0.007320,0.008753,0.249847,0,0);-webkit-transform:matrix(0.208937,-0.007320,0.008753,0.249847,0,0);}
.m2d_c00177{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);}
.m6d_c00177{transform:matrix(0.209876,-0.007353,0.008753,0.249847,0,0);-ms-transform:matrix(0.209876,-0.007353,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209876,-0.007353,0.008753,0.249847,0,0);}
.m64_c00177{transform:matrix(0.209886,-0.007353,0.008753,0.249847,0,0);-ms-transform:matrix(0.209886,-0.007353,0.008753,0.249847,0,0);-webkit-transform:matrix(0.209886,-0.007353,0.008753,0.249847,0,0);}
.m17_c00177{transform:matrix(0.210861,-0.007388,0.008753,0.249847,0,0);-ms-transform:matrix(0.210861,-0.007388,0.008753,0.249847,0,0);-webkit-transform:matrix(0.210861,-0.007388,0.008753,0.249847,0,0);}
.m3a_c00177{transform:matrix(0.211280,-0.007402,0.008753,0.249847,0,0);-ms-transform:matrix(0.211280,-0.007402,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211280,-0.007402,0.008753,0.249847,0,0);}
.m5c_c00177{transform:matrix(0.211665,-0.007416,0.008753,0.249847,0,0);-ms-transform:matrix(0.211665,-0.007416,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211665,-0.007416,0.008753,0.249847,0,0);}
.mc_c00177{transform:matrix(0.211860,-0.007423,0.008753,0.249847,0,0);-ms-transform:matrix(0.211860,-0.007423,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211860,-0.007423,0.008753,0.249847,0,0);}
.m49_c00177{transform:matrix(0.211975,-0.007427,0.008753,0.249847,0,0);-ms-transform:matrix(0.211975,-0.007427,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211975,-0.007427,0.008753,0.249847,0,0);}
.m54_c00177{transform:matrix(0.212075,-0.007430,0.008753,0.249847,0,0);-ms-transform:matrix(0.212075,-0.007430,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212075,-0.007430,0.008753,0.249847,0,0);}
.m1_c00177{transform:matrix(0.212560,-0.007447,0.008753,0.249847,0,0);-ms-transform:matrix(0.212560,-0.007447,0.008753,0.249847,0,0);-webkit-transform:matrix(0.212560,-0.007447,0.008753,0.249847,0,0);}
.m59_c00177{transform:matrix(0.213204,-0.007470,0.008753,0.249847,0,0);-ms-transform:matrix(0.213204,-0.007470,0.008753,0.249847,0,0);-webkit-transform:matrix(0.213204,-0.007470,0.008753,0.249847,0,0);}
.m83_c00177{transform:matrix(0.214523,-0.007516,0.008753,0.249847,0,0);-ms-transform:matrix(0.214523,-0.007516,0.008753,0.249847,0,0);-webkit-transform:matrix(0.214523,-0.007516,0.008753,0.249847,0,0);}
.m56_c00177{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);}
.m3e_c00177{transform:matrix(0.217132,-0.007607,0.008753,0.249847,0,0);-ms-transform:matrix(0.217132,-0.007607,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217132,-0.007607,0.008753,0.249847,0,0);}
.m73_c00177{transform:matrix(0.217287,-0.007613,0.008753,0.249847,0,0);-ms-transform:matrix(0.217287,-0.007613,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217287,-0.007613,0.008753,0.249847,0,0);}
.m46_c00177{transform:matrix(0.217332,-0.007614,0.008753,0.249847,0,0);-ms-transform:matrix(0.217332,-0.007614,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217332,-0.007614,0.008753,0.249847,0,0);}
.m27_c00177{transform:matrix(0.217432,-0.007618,0.008753,0.249847,0,0);-ms-transform:matrix(0.217432,-0.007618,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217432,-0.007618,0.008753,0.249847,0,0);}
.m98_c00177{transform:matrix(0.217931,-0.007635,0.008753,0.249847,0,0);-ms-transform:matrix(0.217931,-0.007635,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217931,-0.007635,0.008753,0.249847,0,0);}
.m86_c00177{transform:matrix(0.219016,-0.007673,0.008753,0.249847,0,0);-ms-transform:matrix(0.219016,-0.007673,0.008753,0.249847,0,0);-webkit-transform:matrix(0.219016,-0.007673,0.008753,0.249847,0,0);}
.m43_c00177{transform:matrix(0.222369,-0.007791,0.008753,0.249847,0,0);-ms-transform:matrix(0.222369,-0.007791,0.008753,0.249847,0,0);-webkit-transform:matrix(0.222369,-0.007791,0.008753,0.249847,0,0);}
.m8e_c00177{transform:matrix(0.223158,-0.007818,0.008753,0.249847,0,0);-ms-transform:matrix(0.223158,-0.007818,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223158,-0.007818,0.008753,0.249847,0,0);}
.m9d_c00177{transform:matrix(0.223388,-0.007826,0.008753,0.249847,0,0);-ms-transform:matrix(0.223388,-0.007826,0.008753,0.249847,0,0);-webkit-transform:matrix(0.223388,-0.007826,0.008753,0.249847,0,0);}
.m65_c00177{transform:matrix(0.225821,-0.007912,0.008753,0.249847,0,0);-ms-transform:matrix(0.225821,-0.007912,0.008753,0.249847,0,0);-webkit-transform:matrix(0.225821,-0.007912,0.008753,0.249847,0,0);}
.m18_c00177{transform:matrix(0.226951,-0.007951,0.008753,0.249847,0,0);-ms-transform:matrix(0.226951,-0.007951,0.008753,0.249847,0,0);-webkit-transform:matrix(0.226951,-0.007951,0.008753,0.249847,0,0);}
.m14_c00177{transform:matrix(0.227361,-0.007966,0.008753,0.249847,0,0);-ms-transform:matrix(0.227361,-0.007966,0.008753,0.249847,0,0);-webkit-transform:matrix(0.227361,-0.007966,0.008753,0.249847,0,0);}
.m41_c00177{transform:matrix(0.229474,-0.008040,0.008753,0.249847,0,0);-ms-transform:matrix(0.229474,-0.008040,0.008753,0.249847,0,0);-webkit-transform:matrix(0.229474,-0.008040,0.008753,0.249847,0,0);}
.ma0_c00177{transform:matrix(0.229569,-0.008043,0.008753,0.249847,0,0);-ms-transform:matrix(0.229569,-0.008043,0.008753,0.249847,0,0);-webkit-transform:matrix(0.229569,-0.008043,0.008753,0.249847,0,0);}
.m89_c00177{transform:matrix(0.232697,-0.008153,0.008753,0.249847,0,0);-ms-transform:matrix(0.232697,-0.008153,0.008753,0.249847,0,0);-webkit-transform:matrix(0.232697,-0.008153,0.008753,0.249847,0,0);}
.ma_c00177{transform:matrix(0.233642,-0.008186,0.008753,0.249847,0,0);-ms-transform:matrix(0.233642,-0.008186,0.008753,0.249847,0,0);-webkit-transform:matrix(0.233642,-0.008186,0.008753,0.249847,0,0);}
.m1b_c00177{transform:matrix(0.234216,-0.008206,0.008753,0.249847,0,0);-ms-transform:matrix(0.234216,-0.008206,0.008753,0.249847,0,0);-webkit-transform:matrix(0.234216,-0.008206,0.008753,0.249847,0,0);}
.m22_c00177{transform:matrix(0.236385,-0.008282,0.008753,0.249847,0,0);-ms-transform:matrix(0.236385,-0.008282,0.008753,0.249847,0,0);-webkit-transform:matrix(0.236385,-0.008282,0.008753,0.249847,0,0);}
.m3f_c00177{transform:matrix(0.236500,-0.008286,0.008753,0.249847,0,0);-ms-transform:matrix(0.236500,-0.008286,0.008753,0.249847,0,0);-webkit-transform:matrix(0.236500,-0.008286,0.008753,0.249847,0,0);}
.m78_c00177{transform:matrix(0.238838,-0.008368,0.008753,0.249847,0,0);-ms-transform:matrix(0.238838,-0.008368,0.008753,0.249847,0,0);-webkit-transform:matrix(0.238838,-0.008368,0.008753,0.249847,0,0);}
.m47_c00177{transform:matrix(0.239603,-0.008394,0.008753,0.249847,0,0);-ms-transform:matrix(0.239603,-0.008394,0.008753,0.249847,0,0);-webkit-transform:matrix(0.239603,-0.008394,0.008753,0.249847,0,0);}
.m9f_c00177{transform:matrix(0.241092,-0.008447,0.008753,0.249847,0,0);-ms-transform:matrix(0.241092,-0.008447,0.008753,0.249847,0,0);-webkit-transform:matrix(0.241092,-0.008447,0.008753,0.249847,0,0);}
.m5d_c00177{transform:matrix(0.244190,-0.008555,0.008753,0.249847,0,0);-ms-transform:matrix(0.244190,-0.008555,0.008753,0.249847,0,0);-webkit-transform:matrix(0.244190,-0.008555,0.008753,0.249847,0,0);}
.m5f_c00177{transform:matrix(0.244745,-0.008575,0.008753,0.249847,0,0);-ms-transform:matrix(0.244745,-0.008575,0.008753,0.249847,0,0);-webkit-transform:matrix(0.244745,-0.008575,0.008753,0.249847,0,0);}
.m81_c00177{transform:matrix(0.244950,-0.008582,0.008753,0.249847,0,0);-ms-transform:matrix(0.244950,-0.008582,0.008753,0.249847,0,0);-webkit-transform:matrix(0.244950,-0.008582,0.008753,0.249847,0,0);}
.m85_c00177{transform:matrix(0.246919,-0.008651,0.008753,0.249847,0,0);-ms-transform:matrix(0.246919,-0.008651,0.008753,0.249847,0,0);-webkit-transform:matrix(0.246919,-0.008651,0.008753,0.249847,0,0);}
.mf_c00177{transform:matrix(0.247283,-0.008664,0.008753,0.249847,0,0);-ms-transform:matrix(0.247283,-0.008664,0.008753,0.249847,0,0);-webkit-transform:matrix(0.247283,-0.008664,0.008753,0.249847,0,0);}
.m13_c00177{transform:matrix(0.248782,-0.008716,0.008753,0.249847,0,0);-ms-transform:matrix(0.248782,-0.008716,0.008753,0.249847,0,0);-webkit-transform:matrix(0.248782,-0.008716,0.008753,0.249847,0,0);}
.m66_c00177{transform:matrix(0.250611,-0.008780,0.008753,0.249847,0,0);-ms-transform:matrix(0.250611,-0.008780,0.008753,0.249847,0,0);-webkit-transform:matrix(0.250611,-0.008780,0.008753,0.249847,0,0);}
.m3d_c00177{transform:matrix(0.251436,-0.008809,0.008753,0.249847,0,0);-ms-transform:matrix(0.251436,-0.008809,0.008753,0.249847,0,0);-webkit-transform:matrix(0.251436,-0.008809,0.008753,0.249847,0,0);}
.m3c_c00177{transform:matrix(0.252235,-0.008837,0.008753,0.249847,0,0);-ms-transform:matrix(0.252235,-0.008837,0.008753,0.249847,0,0);-webkit-transform:matrix(0.252235,-0.008837,0.008753,0.249847,0,0);}
.m12_c00177{transform:matrix(0.254959,-0.008932,0.008753,0.249847,0,0);-ms-transform:matrix(0.254959,-0.008932,0.008753,0.249847,0,0);-webkit-transform:matrix(0.254959,-0.008932,0.008753,0.249847,0,0);}
.m45_c00177{transform:matrix(0.256817,-0.008998,0.008753,0.249847,0,0);-ms-transform:matrix(0.256817,-0.008998,0.008753,0.249847,0,0);-webkit-transform:matrix(0.256817,-0.008998,0.008753,0.249847,0,0);}
.m76_c00177{transform:matrix(0.258516,-0.009057,0.008753,0.249847,0,0);-ms-transform:matrix(0.258516,-0.009057,0.008753,0.249847,0,0);-webkit-transform:matrix(0.258516,-0.009057,0.008753,0.249847,0,0);}
.m9c_c00177{transform:matrix(0.262564,-0.009199,0.008753,0.249847,0,0);-ms-transform:matrix(0.262564,-0.009199,0.008753,0.249847,0,0);-webkit-transform:matrix(0.262564,-0.009199,0.008753,0.249847,0,0);}
.m69_c00177{transform:matrix(0.265247,-0.009293,0.008753,0.249847,0,0);-ms-transform:matrix(0.265247,-0.009293,0.008753,0.249847,0,0);-webkit-transform:matrix(0.265247,-0.009293,0.008753,0.249847,0,0);}
.m48_c00177{transform:matrix(0.274402,-0.009614,0.008753,0.249847,0,0);-ms-transform:matrix(0.274402,-0.009614,0.008753,0.249847,0,0);-webkit-transform:matrix(0.274402,-0.009614,0.008753,0.249847,0,0);}
.m68_c00177{transform:matrix(0.280988,-0.009844,0.008753,0.249847,0,0);-ms-transform:matrix(0.280988,-0.009844,0.008753,0.249847,0,0);-webkit-transform:matrix(0.280988,-0.009844,0.008753,0.249847,0,0);}
.ma2_c00177{transform:matrix(0.285130,-0.009990,0.008753,0.249847,0,0);-ms-transform:matrix(0.285130,-0.009990,0.008753,0.249847,0,0);-webkit-transform:matrix(0.285130,-0.009990,0.008753,0.249847,0,0);}
.ma5_c00177{transform:matrix(0.291666,-0.010219,0.008753,0.249847,0,0);-ms-transform:matrix(0.291666,-0.010219,0.008753,0.249847,0,0);-webkit-transform:matrix(0.291666,-0.010219,0.008753,0.249847,0,0);}
.m2c_c00177{transform:matrix(0.315676,-0.011060,0.008753,0.249847,0,0);-ms-transform:matrix(0.315676,-0.011060,0.008753,0.249847,0,0);-webkit-transform:matrix(0.315676,-0.011060,0.008753,0.249847,0,0);}
.ma8_c00177{transform:matrix(0.322787,-0.011309,0.008753,0.249847,0,0);-ms-transform:matrix(0.322787,-0.011309,0.008753,0.249847,0,0);-webkit-transform:matrix(0.322787,-0.011309,0.008753,0.249847,0,0);}
.m44_c00177{transform:matrix(0.334210,-0.011709,0.008753,0.249847,0,0);-ms-transform:matrix(0.334210,-0.011709,0.008753,0.249847,0,0);-webkit-transform:matrix(0.334210,-0.011709,0.008753,0.249847,0,0);}
.m6_c00177{transform:matrix(0.334595,-0.011723,0.008753,0.249847,0,0);-ms-transform:matrix(0.334595,-0.011723,0.008753,0.249847,0,0);-webkit-transform:matrix(0.334595,-0.011723,0.008753,0.249847,0,0);}
.m8_c00177{transform:matrix(0.336873,-0.011802,0.008753,0.249847,0,0);-ms-transform:matrix(0.336873,-0.011802,0.008753,0.249847,0,0);-webkit-transform:matrix(0.336873,-0.011802,0.008753,0.249847,0,0);}
.m23_c00177{transform:matrix(0.342990,-0.012017,0.008753,0.249847,0,0);-ms-transform:matrix(0.342990,-0.012017,0.008753,0.249847,0,0);-webkit-transform:matrix(0.342990,-0.012017,0.008753,0.249847,0,0);}
.m5e_c00177{transform:matrix(0.350390,-0.012276,0.008753,0.249847,0,0);-ms-transform:matrix(0.350390,-0.012276,0.008753,0.249847,0,0);-webkit-transform:matrix(0.350390,-0.012276,0.008753,0.249847,0,0);}
.m0_c00177{transform:matrix(0.373816,-0.013097,0.008753,0.249847,0,0);-ms-transform:matrix(0.373816,-0.013097,0.008753,0.249847,0,0);-webkit-transform:matrix(0.373816,-0.013097,0.008753,0.249847,0,0);}
.m5_c00177{transform:matrix(0.410783,-0.014392,0.008753,0.249847,0,0);-ms-transform:matrix(0.410783,-0.014392,0.008753,0.249847,0,0);-webkit-transform:matrix(0.410783,-0.014392,0.008753,0.249847,0,0);}
.m7_c00177{transform:matrix(0.418983,-0.014679,0.008753,0.249847,0,0);-ms-transform:matrix(0.418983,-0.014679,0.008753,0.249847,0,0);-webkit-transform:matrix(0.418983,-0.014679,0.008753,0.249847,0,0);}
.m9e_c00177{transform:matrix(0.422221,-0.014793,0.008753,0.249847,0,0);-ms-transform:matrix(0.422221,-0.014793,0.008753,0.249847,0,0);-webkit-transform:matrix(0.422221,-0.014793,0.008753,0.249847,0,0);}
.m36_c00177{transform:matrix(0.427633,-0.014982,0.008753,0.249847,0,0);-ms-transform:matrix(0.427633,-0.014982,0.008753,0.249847,0,0);-webkit-transform:matrix(0.427633,-0.014982,0.008753,0.249847,0,0);}
.m72_c00177{transform:matrix(0.429521,-0.015048,0.008753,0.249847,0,0);-ms-transform:matrix(0.429521,-0.015048,0.008753,0.249847,0,0);-webkit-transform:matrix(0.429521,-0.015048,0.008753,0.249847,0,0);}
.m1a_c00177{transform:matrix(0.430066,-0.015067,0.008753,0.249847,0,0);-ms-transform:matrix(0.430066,-0.015067,0.008753,0.249847,0,0);-webkit-transform:matrix(0.430066,-0.015067,0.008753,0.249847,0,0);}
.m10_c00177{transform:matrix(0.452357,-0.015848,0.008753,0.249847,0,0);-ms-transform:matrix(0.452357,-0.015848,0.008753,0.249847,0,0);-webkit-transform:matrix(0.452357,-0.015848,0.008753,0.249847,0,0);}
.ma7_c00177{transform:matrix(0.477582,-0.016732,0.008753,0.249847,0,0);-ms-transform:matrix(0.477582,-0.016732,0.008753,0.249847,0,0);-webkit-transform:matrix(0.477582,-0.016732,0.008753,0.249847,0,0);}
.m9_c00177{transform:matrix(0.491184,-0.017209,0.008753,0.249847,0,0);-ms-transform:matrix(0.491184,-0.017209,0.008753,0.249847,0,0);-webkit-transform:matrix(0.491184,-0.017209,0.008753,0.249847,0,0);}
.ma9_c00177{transform:matrix(0.521040,-0.018255,0.008753,0.249847,0,0);-ms-transform:matrix(0.521040,-0.018255,0.008753,0.249847,0,0);-webkit-transform:matrix(0.521040,-0.018255,0.008753,0.249847,0,0);}
.md_c00177{transform:matrix(0.527866,-0.018494,0.008753,0.249847,0,0);-ms-transform:matrix(0.527866,-0.018494,0.008753,0.249847,0,0);-webkit-transform:matrix(0.527866,-0.018494,0.008753,0.249847,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;}
.fs6_c00177{font-size:61.926021px;}
.fs8_c00177{font-size:67.173989px;}
.fs7_c00177{font-size:69.273176px;}
.fs4_c00177{font-size:70.322769px;}
.fs5_c00177{font-size:71.372363px;}
.fs1_c00177{font-size:72.421956px;}
.fs2_c00177{font-size:73.471550px;}
.fsa_c00177{font-size:74.521144px;}
.fs3_c00177{font-size:75.570737px;}
.fs9_c00177{font-size:77.669924px;}
.fsb_c00177{font-size:85.017079px;}
.fs0_c00177{font-size:95.513015px;}
.y0_c00177{bottom:0.000000px;}
.ya1_c00177{bottom:253.212077px;}
.ya2_c00177{bottom:253.874006px;}
.ya3_c00177{bottom:254.923308px;}
.ya4_c00177{bottom:255.160691px;}
.ya5_c00177{bottom:255.692943px;}
.ya6_c00177{bottom:256.086713px;}
.ya7_c00177{bottom:256.361450px;}
.ya8_c00177{bottom:257.003222px;}
.ya9_c00177{bottom:257.436942px;}
.yaa_c00177{bottom:258.276203px;}
.yab_c00177{bottom:258.753488px;}
.y9f_c00177{bottom:278.314188px;}
.ya0_c00177{bottom:282.378399px;}
.y99_c00177{bottom:300.167883px;}
.y9a_c00177{bottom:300.653750px;}
.y9b_c00177{bottom:301.247702px;}
.y9c_c00177{bottom:302.243178px;}
.y9d_c00177{bottom:303.225752px;}
.y9e_c00177{bottom:304.109534px;}
.y91_c00177{bottom:322.810832px;}
.y92_c00177{bottom:323.155063px;}
.y93_c00177{bottom:323.644841px;}
.y94_c00177{bottom:324.728688px;}
.y95_c00177{bottom:325.308458px;}
.y96_c00177{bottom:325.986497px;}
.y97_c00177{bottom:326.324313px;}
.y98_c00177{bottom:326.804816px;}
.y88_c00177{bottom:346.046357px;}
.y89_c00177{bottom:346.453274px;}
.y8a_c00177{bottom:346.842891px;}
.y8b_c00177{bottom:347.282712px;}
.y8c_c00177{bottom:348.273831px;}
.y8d_c00177{bottom:348.588614px;}
.y8e_c00177{bottom:348.865098px;}
.y8f_c00177{bottom:349.518164px;}
.y90_c00177{bottom:350.081133px;}
.y81_c00177{bottom:367.910376px;}
.y82_c00177{bottom:368.580186px;}
.y83_c00177{bottom:368.875239px;}
.y84_c00177{bottom:369.809157px;}
.y85_c00177{bottom:370.165288px;}
.y86_c00177{bottom:370.784187px;}
.y87_c00177{bottom:371.214185px;}
.y7a_c00177{bottom:391.653481px;}
.y7b_c00177{bottom:392.148390px;}
.y7c_c00177{bottom:392.463156px;}
.y7d_c00177{bottom:393.009373px;}
.y7e_c00177{bottom:393.849721px;}
.y7f_c00177{bottom:394.349866px;}
.y80_c00177{bottom:394.940529px;}
.y74_c00177{bottom:414.863321px;}
.y75_c00177{bottom:415.648938px;}
.y76_c00177{bottom:415.937717px;}
.y77_c00177{bottom:416.935533px;}
.y78_c00177{bottom:417.188805px;}
.y79_c00177{bottom:418.489292px;}
.y73_c00177{bottom:437.283804px;}
.y6a_c00177{bottom:458.598372px;}
.y6b_c00177{bottom:459.143607px;}
.y6c_c00177{bottom:459.732807px;}
.y6d_c00177{bottom:460.447191px;}
.y6e_c00177{bottom:460.859219px;}
.y6f_c00177{bottom:462.125654px;}
.y70_c00177{bottom:462.589536px;}
.y71_c00177{bottom:463.381473px;}
.y72_c00177{bottom:464.176136px;}
.y60_c00177{bottom:482.077112px;}
.y61_c00177{bottom:482.827196px;}
.y62_c00177{bottom:483.672065px;}
.y63_c00177{bottom:484.101513px;}
.y64_c00177{bottom:484.832829px;}
.y65_c00177{bottom:486.010157px;}
.y66_c00177{bottom:486.498582px;}
.y67_c00177{bottom:487.835600px;}
.y68_c00177{bottom:488.431473px;}
.y69_c00177{bottom:489.311496px;}
.y55_c00177{bottom:504.751056px;}
.y56_c00177{bottom:505.438883px;}
.y57_c00177{bottom:506.244738px;}
.y58_c00177{bottom:507.187629px;}
.y59_c00177{bottom:507.656991px;}
.y5a_c00177{bottom:508.610922px;}
.y5b_c00177{bottom:509.126321px;}
.y5c_c00177{bottom:509.773223px;}
.y5d_c00177{bottom:510.362423px;}
.y5e_c00177{bottom:510.949814px;}
.y5f_c00177{bottom:512.079920px;}
.y4c_c00177{bottom:527.961171px;}
.y4d_c00177{bottom:528.761816px;}
.y4e_c00177{bottom:529.219598px;}
.y4f_c00177{bottom:529.602345px;}
.y50_c00177{bottom:530.329841px;}
.y51_c00177{bottom:530.937563px;}
.y52_c00177{bottom:531.922949px;}
.y53_c00177{bottom:532.365557px;}
.y54_c00177{bottom:532.830522px;}
.y42_c00177{bottom:550.633394px;}
.y43_c00177{bottom:551.047568px;}
.y44_c00177{bottom:551.516648px;}
.y45_c00177{bottom:552.156527px;}
.y46_c00177{bottom:553.428920px;}
.y47_c00177{bottom:554.004614px;}
.y48_c00177{bottom:554.484882px;}
.y49_c00177{bottom:554.697590px;}
.y4a_c00177{bottom:555.510473px;}
.y4b_c00177{bottom:555.947052px;}
.y38_c00177{bottom:573.306512px;}
.y39_c00177{bottom:573.869198px;}
.y3a_c00177{bottom:574.347189px;}
.y3b_c00177{bottom:575.394501px;}
.y3c_c00177{bottom:576.203118px;}
.y3d_c00177{bottom:576.425246px;}
.y3e_c00177{bottom:577.128357px;}
.y3f_c00177{bottom:578.212026px;}
.y40_c00177{bottom:578.497799px;}
.y41_c00177{bottom:579.224184px;}
.y37_c00177{bottom:596.494166px;}
.y2e_c00177{bottom:618.917679px;}
.y2f_c00177{bottom:619.316445px;}
.y30_c00177{bottom:619.985916px;}
.y31_c00177{bottom:620.657668px;}
.y32_c00177{bottom:621.098568px;}
.y33_c00177{bottom:621.476790px;}
.y34_c00177{bottom:622.432770px;}
.y35_c00177{bottom:623.419537px;}
.y36_c00177{bottom:623.786777px;}
.y25_c00177{bottom:641.316821px;}
.y26_c00177{bottom:641.693225px;}
.y27_c00177{bottom:642.115337px;}
.y28_c00177{bottom:642.703794px;}
.y29_c00177{bottom:644.058720px;}
.y2a_c00177{bottom:644.736498px;}
.y2b_c00177{bottom:645.135494px;}
.y2c_c00177{bottom:646.193871px;}
.y2d_c00177{bottom:647.154489px;}
.y1c_c00177{bottom:663.724901px;}
.y1d_c00177{bottom:664.268084px;}
.y1e_c00177{bottom:664.770165px;}
.y1f_c00177{bottom:665.416548px;}
.y20_c00177{bottom:665.990007px;}
.y21_c00177{bottom:667.227285px;}
.y22_c00177{bottom:667.626324px;}
.y23_c00177{bottom:668.842577px;}
.y24_c00177{bottom:670.050261px;}
.y1b_c00177{bottom:689.508083px;}
.y13_c00177{bottom:708.529703px;}
.y14_c00177{bottom:709.203401px;}
.y15_c00177{bottom:710.473296px;}
.y16_c00177{bottom:712.018499px;}
.y17_c00177{bottom:712.418594px;}
.y18_c00177{bottom:713.148080px;}
.y19_c00177{bottom:713.649923px;}
.y1a_c00177{bottom:714.857028px;}
.yf_c00177{bottom:732.277385px;}
.y10_c00177{bottom:734.062443px;}
.y11_c00177{bottom:734.389673px;}
.y12_c00177{bottom:737.607954px;}
.ya_c00177{bottom:758.492072px;}
.yb_c00177{bottom:759.172179px;}
.yc_c00177{bottom:759.628392px;}
.yd_c00177{bottom:760.294553px;}
.ye_c00177{bottom:760.858794px;}
.y6_c00177{bottom:781.035350px;}
.y7_c00177{bottom:781.036430px;}
.y8_c00177{bottom:781.038959px;}
.y9_c00177{bottom:781.039865px;}
.y2_c00177{bottom:799.759011px;}
.y3_c00177{bottom:801.864681px;}
.y4_c00177{bottom:802.337240px;}
.y5_c00177{bottom:803.204846px;}
.y1_c00177{bottom:822.717000px;}
.h8_c00177{height:61.926021px;}
.ha_c00177{height:67.173989px;}
.h9_c00177{height:69.273176px;}
.h6_c00177{height:70.322769px;}
.h7_c00177{height:71.372363px;}
.h3_c00177{height:72.421956px;}
.h4_c00177{height:73.471550px;}
.hc_c00177{height:74.521144px;}
.h5_c00177{height:75.570737px;}
.hb_c00177{height:77.669924px;}
.hd_c00177{height:85.017079px;}
.h2_c00177{height:95.513015px;}
.h0_c00177{height:1008.450000px;}
.h1_c00177{height:1008.750000px;}
.w0_c00177{width:678.450000px;}
.w1_c00177{width:678.750000px;}
.x0_c00177{left:0.000000px;}
.x13_c00177{left:164.455430px;}
.x2_c00177{left:166.801461px;}
.x41_c00177{left:169.050246px;}
.x66_c00177{left:172.478979px;}
.xf_c00177{left:186.989713px;}
.x21_c00177{left:189.525689px;}
.x28_c00177{left:192.203088px;}
.x62_c00177{left:194.033180px;}
.x4e_c00177{left:196.068354px;}
.x1a_c00177{left:197.555273px;}
.x14_c00177{left:199.829333px;}
.x59_c00177{left:203.717733px;}
.x42_c00177{left:205.212833px;}
.x48_c00177{left:210.606575px;}
.x5c_c00177{left:211.658055px;}
.x22_c00177{left:214.335515px;}
.x36_c00177{left:219.197525px;}
.x1b_c00177{left:225.418488px;}
.x4f_c00177{left:227.017716px;}
.x63_c00177{left:228.910913px;}
.x5d_c00177{left:230.014872px;}
.x29_c00177{left:233.965584px;}
.x3_c00177{left:241.891689px;}
.x43_c00177{left:247.570686px;}
.x23_c00177{left:248.903721px;}
.x67_c00177{left:255.288386px;}
.x37_c00177{left:256.775111px;}
.x4_c00177{left:258.762952px;}
.x1_c00177{left:260.494500px;}
.x3d_c00177{left:263.467632px;}
.x50_c00177{left:264.580689px;}
.x15_c00177{left:266.566446px;}
.x6a_c00177{left:267.923853px;}
.x2a_c00177{left:275.836025px;}
.x49_c00177{left:281.238414px;}
.x30_c00177{left:282.961074px;}
.x51_c00177{left:286.190645px;}
.x6_c00177{left:287.538604px;}
.x5_c00177{left:289.693558px;}
.x1c_c00177{left:293.125074px;}
.x2f_c00177{left:296.290529px;}
.x10_c00177{left:298.279359px;}
.x2b_c00177{left:303.323298px;}
.x3e_c00177{left:306.158306px;}
.x7_c00177{left:310.480255px;}
.x11_c00177{left:318.668008px;}
.x44_c00177{left:321.797007px;}
.x5a_c00177{left:324.908051px;}
.x2c_c00177{left:326.880378px;}
.x24_c00177{left:328.431249px;}
.x38_c00177{left:331.505945px;}
.x6b_c00177{left:332.520713px;}
.x31_c00177{left:340.131401px;}
.x3f_c00177{left:341.833088px;}
.x16_c00177{left:347.713676px;}
.x5e_c00177{left:349.037427px;}
.x52_c00177{left:352.743338px;}
.x56_c00177{left:357.585312px;}
.x5b_c00177{left:360.595604px;}
.x1d_c00177{left:361.714749px;}
.x8_c00177{left:362.840509px;}
.x39_c00177{left:365.324429px;}
.xa_c00177{left:368.799109px;}
.x45_c00177{left:371.892924px;}
.x60_c00177{left:374.830208px;}
.x5f_c00177{left:375.870935px;}
.x53_c00177{left:377.118102px;}
.x32_c00177{left:379.085583px;}
.x57_c00177{left:380.573640px;}
.x1e_c00177{left:383.853279px;}
.x9_c00177{left:386.590849px;}
.x25_c00177{left:391.668836px;}
.x3a_c00177{left:393.549990px;}
.x64_c00177{left:395.699615px;}
.x61_c00177{left:397.838727px;}
.x40_c00177{left:399.678656px;}
.xb_c00177{left:402.771471px;}
.x3b_c00177{left:406.044866px;}
.x17_c00177{left:407.105543px;}
.x4a_c00177{left:414.150513px;}
.x54_c00177{left:418.693266px;}
.x65_c00177{left:419.730717px;}
.xc_c00177{left:425.514135px;}
.x18_c00177{left:433.505936px;}
.x33_c00177{left:439.179717px;}
.x2d_c00177{left:448.066739px;}
.x1f_c00177{left:451.328939px;}
.x26_c00177{left:453.781812px;}
.x34_c00177{left:455.044796px;}
.xd_c00177{left:458.745817px;}
.x55_c00177{left:460.431872px;}
.x46_c00177{left:463.938893px;}
.x2e_c00177{left:471.010565px;}
.x68_c00177{left:474.780788px;}
.x3c_c00177{left:479.393190px;}
.xe_c00177{left:486.884418px;}
.x4b_c00177{left:488.284949px;}
.x35_c00177{left:495.348468px;}
.x19_c00177{left:496.952004px;}
.x58_c00177{left:498.459251px;}
.x27_c00177{left:510.192423px;}
.x20_c00177{left:518.260275px;}
.x12_c00177{left:519.342669px;}
.x4c_c00177{left:521.309046px;}
.x69_c00177{left:528.861198px;}
.x47_c00177{left:554.200649px;}
.x4d_c00177{left:570.066249px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs6_c00177{font-size:55.045352pt;}
.fs8_c00177{font-size:59.710212pt;}
.fs7_c00177{font-size:61.576156pt;}
.fs4_c00177{font-size:62.509128pt;}
.fs5_c00177{font-size:63.442100pt;}
.fs1_c00177{font-size:64.375072pt;}
.fs2_c00177{font-size:65.308044pt;}
.fsa_c00177{font-size:66.241017pt;}
.fs3_c00177{font-size:67.173989pt;}
.fs9_c00177{font-size:69.039933pt;}
.fsb_c00177{font-size:75.570737pt;}
.fs0_c00177{font-size:84.900458pt;}
.y0_c00177{bottom:0.000000pt;}
.ya1_c00177{bottom:225.077401pt;}
.ya2_c00177{bottom:225.665783pt;}
.ya3_c00177{bottom:226.598496pt;}
.ya4_c00177{bottom:226.809503pt;}
.ya5_c00177{bottom:227.282616pt;}
.ya6_c00177{bottom:227.632633pt;}
.ya7_c00177{bottom:227.876844pt;}
.ya8_c00177{bottom:228.447308pt;}
.ya9_c00177{bottom:228.832837pt;}
.yaa_c00177{bottom:229.578847pt;}
.yab_c00177{bottom:230.003100pt;}
.y9f_c00177{bottom:247.390389pt;}
.ya0_c00177{bottom:251.003021pt;}
.y99_c00177{bottom:266.815896pt;}
.y9a_c00177{bottom:267.247777pt;}
.y9b_c00177{bottom:267.775735pt;}
.y9c_c00177{bottom:268.660603pt;}
.y9d_c00177{bottom:269.534001pt;}
.y9e_c00177{bottom:270.319585pt;}
.y91_c00177{bottom:286.942961pt;}
.y92_c00177{bottom:287.248945pt;}
.y93_c00177{bottom:287.684303pt;}
.y94_c00177{bottom:288.647723pt;}
.y95_c00177{bottom:289.163073pt;}
.y96_c00177{bottom:289.765775pt;}
.y97_c00177{bottom:290.066056pt;}
.y98_c00177{bottom:290.493169pt;}
.y88_c00177{bottom:307.596761pt;}
.y89_c00177{bottom:307.958465pt;}
.y8a_c00177{bottom:308.304792pt;}
.y8b_c00177{bottom:308.695744pt;}
.y8c_c00177{bottom:309.576739pt;}
.y8d_c00177{bottom:309.856545pt;}
.y8e_c00177{bottom:310.102309pt;}
.y8f_c00177{bottom:310.682812pt;}
.y90_c00177{bottom:311.183229pt;}
.y81_c00177{bottom:327.031445pt;}
.y82_c00177{bottom:327.626832pt;}
.y83_c00177{bottom:327.889101pt;}
.y84_c00177{bottom:328.719251pt;}
.y85_c00177{bottom:329.035812pt;}
.y86_c00177{bottom:329.585944pt;}
.y87_c00177{bottom:329.968164pt;}
.y7a_c00177{bottom:348.136428pt;}
.y7b_c00177{bottom:348.576347pt;}
.y7c_c00177{bottom:348.856139pt;}
.y7d_c00177{bottom:349.341665pt;}
.y7e_c00177{bottom:350.088641pt;}
.y7f_c00177{bottom:350.533215pt;}
.y80_c00177{bottom:351.058248pt;}
.y74_c00177{bottom:368.767396pt;}
.y75_c00177{bottom:369.465723pt;}
.y76_c00177{bottom:369.722415pt;}
.y77_c00177{bottom:370.609363pt;}
.y78_c00177{bottom:370.834493pt;}
.y79_c00177{bottom:371.990481pt;}
.y73_c00177{bottom:388.696715pt;}
.y6a_c00177{bottom:407.642997pt;}
.y6b_c00177{bottom:408.127651pt;}
.y6c_c00177{bottom:408.651384pt;}
.y6d_c00177{bottom:409.286392pt;}
.y6e_c00177{bottom:409.652639pt;}
.y6f_c00177{bottom:410.778359pt;}
.y70_c00177{bottom:411.190699pt;}
.y71_c00177{bottom:411.894643pt;}
.y72_c00177{bottom:412.601009pt;}
.y60_c00177{bottom:428.512988pt;}
.y61_c00177{bottom:429.179729pt;}
.y62_c00177{bottom:429.930724pt;}
.y63_c00177{bottom:430.312456pt;}
.y64_c00177{bottom:430.962515pt;}
.y65_c00177{bottom:432.009028pt;}
.y66_c00177{bottom:432.443184pt;}
.y67_c00177{bottom:433.631644pt;}
.y68_c00177{bottom:434.161309pt;}
.y69_c00177{bottom:434.943552pt;}
.y55_c00177{bottom:448.667605pt;}
.y56_c00177{bottom:449.279007pt;}
.y57_c00177{bottom:449.995323pt;}
.y58_c00177{bottom:450.833448pt;}
.y59_c00177{bottom:451.250659pt;}
.y5a_c00177{bottom:452.098597pt;}
.y5b_c00177{bottom:452.556729pt;}
.y5c_c00177{bottom:453.131753pt;}
.y5d_c00177{bottom:453.655487pt;}
.y5e_c00177{bottom:454.177612pt;}
.y5f_c00177{bottom:455.182151pt;}
.y4c_c00177{bottom:469.298819pt;}
.y4d_c00177{bottom:470.010503pt;}
.y4e_c00177{bottom:470.417420pt;}
.y4f_c00177{bottom:470.757640pt;}
.y50_c00177{bottom:471.404303pt;}
.y51_c00177{bottom:471.944500pt;}
.y52_c00177{bottom:472.820399pt;}
.y53_c00177{bottom:473.213828pt;}
.y54_c00177{bottom:473.627131pt;}
.y42_c00177{bottom:489.451905pt;}
.y43_c00177{bottom:489.820060pt;}
.y44_c00177{bottom:490.237020pt;}
.y45_c00177{bottom:490.805801pt;}
.y46_c00177{bottom:491.936817pt;}
.y47_c00177{bottom:492.448545pt;}
.y48_c00177{bottom:492.875451pt;}
.y49_c00177{bottom:493.064524pt;}
.y4a_c00177{bottom:493.787087pt;}
.y4b_c00177{bottom:494.175157pt;}
.y38_c00177{bottom:509.605788pt;}
.y39_c00177{bottom:510.105953pt;}
.y3a_c00177{bottom:510.530835pt;}
.y3b_c00177{bottom:511.461779pt;}
.y3c_c00177{bottom:512.180549pt;}
.y3d_c00177{bottom:512.377996pt;}
.y3e_c00177{bottom:513.002984pt;}
.y3f_c00177{bottom:513.966245pt;}
.y40_c00177{bottom:514.220265pt;}
.y41_c00177{bottom:514.865941pt;}
.y37_c00177{bottom:530.217036pt;}
.y2e_c00177{bottom:550.149048pt;}
.y2f_c00177{bottom:550.503507pt;}
.y30_c00177{bottom:551.098592pt;}
.y31_c00177{bottom:551.695705pt;}
.y32_c00177{bottom:552.087616pt;}
.y33_c00177{bottom:552.423813pt;}
.y34_c00177{bottom:553.273573pt;}
.y35_c00177{bottom:554.150700pt;}
.y36_c00177{bottom:554.477135pt;}
.y25_c00177{bottom:570.059396pt;}
.y26_c00177{bottom:570.393977pt;}
.y27_c00177{bottom:570.769188pt;}
.y28_c00177{bottom:571.292261pt;}
.y29_c00177{bottom:572.496640pt;}
.y2a_c00177{bottom:573.099109pt;}
.y2b_c00177{bottom:573.453772pt;}
.y2c_c00177{bottom:574.394552pt;}
.y2d_c00177{bottom:575.248435pt;}
.y1c_c00177{bottom:589.977689pt;}
.y1d_c00177{bottom:590.460519pt;}
.y1e_c00177{bottom:590.906813pt;}
.y1f_c00177{bottom:591.481376pt;}
.y20_c00177{bottom:591.991117pt;}
.y21_c00177{bottom:593.090920pt;}
.y22_c00177{bottom:593.445621pt;}
.y23_c00177{bottom:594.526735pt;}
.y24_c00177{bottom:595.600232pt;}
.y1b_c00177{bottom:612.896073pt;}
.y13_c00177{bottom:629.804180pt;}
.y14_c00177{bottom:630.403023pt;}
.y15_c00177{bottom:631.531819pt;}
.y16_c00177{bottom:632.905332pt;}
.y17_c00177{bottom:633.260972pt;}
.y18_c00177{bottom:633.909404pt;}
.y19_c00177{bottom:634.355487pt;}
.y1a_c00177{bottom:635.428469pt;}
.yf_c00177{bottom:650.913231pt;}
.y10_c00177{bottom:652.499949pt;}
.y11_c00177{bottom:652.790820pt;}
.y12_c00177{bottom:655.651515pt;}
.ya_c00177{bottom:674.215175pt;}
.yb_c00177{bottom:674.819715pt;}
.yc_c00177{bottom:675.225237pt;}
.yd_c00177{bottom:675.817380pt;}
.ye_c00177{bottom:676.318928pt;}
.y6_c00177{bottom:694.253644pt;}
.y7_c00177{bottom:694.254604pt;}
.y8_c00177{bottom:694.256852pt;}
.y9_c00177{bottom:694.257657pt;}
.y2_c00177{bottom:710.896899pt;}
.y3_c00177{bottom:712.768605pt;}
.y4_c00177{bottom:713.188657pt;}
.y5_c00177{bottom:713.959863pt;}
.y1_c00177{bottom:731.304000pt;}
.h8_c00177{height:55.045352pt;}
.ha_c00177{height:59.710212pt;}
.h9_c00177{height:61.576156pt;}
.h6_c00177{height:62.509128pt;}
.h7_c00177{height:63.442100pt;}
.h3_c00177{height:64.375072pt;}
.h4_c00177{height:65.308044pt;}
.hc_c00177{height:66.241017pt;}
.h5_c00177{height:67.173989pt;}
.hb_c00177{height:69.039933pt;}
.hd_c00177{height:75.570737pt;}
.h2_c00177{height:84.900458pt;}
.h0_c00177{height:896.400000pt;}
.h1_c00177{height:896.666667pt;}
.w0_c00177{width:603.066667pt;}
.w1_c00177{width:603.333333pt;}
.x0_c00177{left:0.000000pt;}
.x13_c00177{left:146.182604pt;}
.x2_c00177{left:148.267965pt;}
.x41_c00177{left:150.266885pt;}
.x66_c00177{left:153.314648pt;}
.xf_c00177{left:166.213079pt;}
.x21_c00177{left:168.467279pt;}
.x28_c00177{left:170.847189pt;}
.x62_c00177{left:172.473937pt;}
.x4e_c00177{left:174.282981pt;}
.x1a_c00177{left:175.604687pt;}
.x14_c00177{left:177.626073pt;}
.x59_c00177{left:181.082429pt;}
.x42_c00177{left:182.411407pt;}
.x48_c00177{left:187.205844pt;}
.x5c_c00177{left:188.140493pt;}
.x22_c00177{left:190.520457pt;}
.x36_c00177{left:194.842244pt;}
.x1b_c00177{left:200.371989pt;}
.x4f_c00177{left:201.793525pt;}
.x63_c00177{left:203.476367pt;}
.x5d_c00177{left:204.457664pt;}
.x29_c00177{left:207.969408pt;}
.x3_c00177{left:215.014835pt;}
.x43_c00177{left:220.062832pt;}
.x23_c00177{left:221.247752pt;}
.x67_c00177{left:226.923009pt;}
.x37_c00177{left:228.244543pt;}
.x4_c00177{left:230.011513pt;}
.x1_c00177{left:231.550667pt;}
.x3d_c00177{left:234.193451pt;}
.x50_c00177{left:235.182835pt;}
.x15_c00177{left:236.947952pt;}
.x6a_c00177{left:238.154536pt;}
.x2a_c00177{left:245.187577pt;}
.x49_c00177{left:249.989701pt;}
.x30_c00177{left:251.520955pt;}
.x51_c00177{left:254.391684pt;}
.x6_c00177{left:255.589871pt;}
.x5_c00177{left:257.505385pt;}
.x1c_c00177{left:260.555621pt;}
.x2f_c00177{left:263.369359pt;}
.x10_c00177{left:265.137208pt;}
.x2b_c00177{left:269.620709pt;}
.x3e_c00177{left:272.140716pt;}
.x7_c00177{left:275.982449pt;}
.x11_c00177{left:283.260452pt;}
.x44_c00177{left:286.041784pt;}
.x5a_c00177{left:288.807156pt;}
.x2c_c00177{left:290.560336pt;}
.x24_c00177{left:291.938888pt;}
.x38_c00177{left:294.671951pt;}
.x6b_c00177{left:295.573967pt;}
.x31_c00177{left:302.339023pt;}
.x3f_c00177{left:303.851633pt;}
.x16_c00177{left:309.078823pt;}
.x5e_c00177{left:310.255491pt;}
.x52_c00177{left:313.549633pt;}
.x56_c00177{left:317.853611pt;}
.x5b_c00177{left:320.529425pt;}
.x1d_c00177{left:321.524221pt;}
.x8_c00177{left:322.524897pt;}
.x39_c00177{left:324.732825pt;}
.xa_c00177{left:327.821431pt;}
.x45_c00177{left:330.571488pt;}
.x60_c00177{left:333.182407pt;}
.x5f_c00177{left:334.107497pt;}
.x53_c00177{left:335.216091pt;}
.x32_c00177{left:336.964963pt;}
.x57_c00177{left:338.287680pt;}
.x1e_c00177{left:341.202915pt;}
.x9_c00177{left:343.636311pt;}
.x25_c00177{left:348.150076pt;}
.x3a_c00177{left:349.822213pt;}
.x64_c00177{left:351.732991pt;}
.x61_c00177{left:353.634424pt;}
.x40_c00177{left:355.269916pt;}
.xb_c00177{left:358.019085pt;}
.x3b_c00177{left:360.928769pt;}
.x17_c00177{left:361.871593pt;}
.x4a_c00177{left:368.133789pt;}
.x54_c00177{left:372.171792pt;}
.x65_c00177{left:373.093971pt;}
.xc_c00177{left:378.234787pt;}
.x18_c00177{left:385.338609pt;}
.x33_c00177{left:390.381971pt;}
.x2d_c00177{left:398.281545pt;}
.x1f_c00177{left:401.181279pt;}
.x26_c00177{left:403.361611pt;}
.x34_c00177{left:404.484263pt;}
.xd_c00177{left:407.774060pt;}
.x55_c00177{left:409.272775pt;}
.x46_c00177{left:412.390127pt;}
.x2e_c00177{left:418.676057pt;}
.x68_c00177{left:422.027367pt;}
.x3c_c00177{left:426.127280pt;}
.xe_c00177{left:432.786149pt;}
.x4b_c00177{left:434.031065pt;}
.x35_c00177{left:440.309749pt;}
.x19_c00177{left:441.735115pt;}
.x58_c00177{left:443.074889pt;}
.x27_c00177{left:453.504376pt;}
.x20_c00177{left:460.675800pt;}
.x12_c00177{left:461.637928pt;}
.x4c_c00177{left:463.385819pt;}
.x69_c00177{left:470.098843pt;}
.x47_c00177{left:492.622799pt;}
.x4d_c00177{left:506.725555pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31cbb8ad81f4c1d1a4b2c7cb.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;}
.mf_c00178{transform:matrix(0.008553,0.000180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.008553,0.000180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.008553,0.000180,-0.005249,0.249945,0,0);}
.m1f_c00178{transform:matrix(0.009459,0.000151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.009459,0.000151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.009459,0.000151,-0.003999,0.249968,0,0);}
.me_c00178{transform:matrix(0.010908,0.000229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.010908,0.000229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.010908,0.000229,-0.005249,0.249945,0,0);}
.m41_c00178{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);}
.m27_c00178{transform:matrix(0.011923,0.000191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011923,0.000191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011923,0.000191,-0.003999,0.249968,0,0);}
.m4d_c00178{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);}
.m25_c00178{transform:matrix(0.014483,0.000232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.014483,0.000232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.014483,0.000232,-0.003999,0.249968,0,0);}
.m9_c00178{transform:matrix(0.023175,0.000464,-0.004999,0.249950,0,0);-ms-transform:matrix(0.023175,0.000464,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.023175,0.000464,-0.004999,0.249950,0,0);}
.m1e_c00178{transform:matrix(0.046005,0.000966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.046005,0.000966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.046005,0.000966,-0.005249,0.249945,0,0);}
.m6_c00178{transform:matrix(0.123630,0.002473,-0.004999,0.249950,0,0);-ms-transform:matrix(0.123630,0.002473,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.123630,0.002473,-0.004999,0.249950,0,0);}
.m35_c00178{transform:matrix(0.127199,-0.012784,0.025000,0.248747,0,0);-ms-transform:matrix(0.127199,-0.012784,0.025000,0.248747,0,0);-webkit-transform:matrix(0.127199,-0.012784,0.025000,0.248747,0,0);}
.mb_c00178{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);}
.m21_c00178{transform:matrix(0.129078,0.002065,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129078,0.002065,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129078,0.002065,-0.003999,0.249968,0,0);}
.m48_c00178{transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.145896,0.002334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145896,0.002334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145896,0.002334,-0.003999,0.249968,0,0);}
.m30_c00178{transform:matrix(0.148961,0.002383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148961,0.002383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148961,0.002383,-0.003999,0.249968,0,0);}
.m2f_c00178{transform:matrix(0.158795,0.002541,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158795,0.002541,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158795,0.002541,-0.003999,0.249968,0,0);}
.m2e_c00178{transform:matrix(0.162014,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162014,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162014,0.002592,-0.003999,0.249968,0,0);}
.m3f_c00178{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m44_c00178{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);}
.m32_c00178{transform:matrix(0.168273,0.002692,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168273,0.002692,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168273,0.002692,-0.003999,0.249968,0,0);}
.m4b_c00178{transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);}
.m3c_c00178{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);}
.m22_c00178{transform:matrix(0.175957,0.002815,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175957,0.002815,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175957,0.002815,-0.003999,0.249968,0,0);}
.m1a_c00178{transform:matrix(0.178391,0.003746,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178391,0.003746,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178391,0.003746,-0.005249,0.249945,0,0);}
.m46_c00178{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);}
.m1_c00178{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);}
.m4c_c00178{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);}
.m4a_c00178{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);}
.m38_c00178{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);}
.m45_c00178{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);}
.m42_c00178{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);}
.m3a_c00178{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);}
.m12_c00178{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);}
.m31_c00178{transform:matrix(0.193465,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193465,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193465,0.003095,-0.003999,0.249968,0,0);}
.m51_c00178{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);}
.m3b_c00178{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);}
.m49_c00178{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);}
.m2d_c00178{transform:matrix(0.196835,0.003149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196835,0.003149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196835,0.003149,-0.003999,0.249968,0,0);}
.m17_c00178{transform:matrix(0.198196,0.004162,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198196,0.004162,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198196,0.004162,-0.005249,0.249945,0,0);}
.m47_c00178{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);}
.m4f_c00178{transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);}
.m52_c00178{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);}
.m43_c00178{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);}
.m3e_c00178{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.208733,0.004175,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208733,0.004175,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208733,0.004175,-0.004999,0.249950,0,0);}
.m26_c00178{transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);}
.m18_c00178{transform:matrix(0.211028,0.004432,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211028,0.004432,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211028,0.004432,-0.005249,0.249945,0,0);}
.m13_c00178{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);}
.m50_c00178{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);}
.m3d_c00178{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);}
.m2c_c00178{transform:matrix(0.217062,0.003473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217062,0.003473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217062,0.003473,-0.003999,0.249968,0,0);}
.m33_c00178{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);}
.m29_c00178{transform:matrix(0.217512,0.003480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217512,0.003480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217512,0.003480,-0.003999,0.249968,0,0);}
.m2b_c00178{transform:matrix(0.221387,0.003542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221387,0.003542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221387,0.003542,-0.003999,0.249968,0,0);}
.m4_c00178{transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223360,0.004467,-0.004999,0.249950,0,0);}
.m5_c00178{transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);}
.m1c_c00178{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);}
.m15_c00178{transform:matrix(0.226270,0.004752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226270,0.004752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226270,0.004752,-0.005249,0.249945,0,0);}
.m39_c00178{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);}
.m14_c00178{transform:matrix(0.234848,0.004932,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234848,0.004932,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234848,0.004932,-0.005249,0.249945,0,0);}
.m2_c00178{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);}
.m20_c00178{transform:matrix(0.242384,0.003878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242384,0.003878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242384,0.003878,-0.003999,0.249968,0,0);}
.m19_c00178{transform:matrix(0.245631,0.005158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245631,0.005158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245631,0.005158,-0.005249,0.249945,0,0);}
.m1b_c00178{transform:matrix(0.251874,0.005289,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251874,0.005289,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251874,0.005289,-0.005249,0.249945,0,0);}
.m37_c00178{transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{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);}
.m16_c00178{transform:matrix(0.255169,0.005359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255169,0.005359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255169,0.005359,-0.005249,0.249945,0,0);}
.m2a_c00178{transform:matrix(0.264841,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264841,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264841,0.004237,-0.003999,0.249968,0,0);}
.md_c00178{transform:matrix(0.292142,0.005843,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292142,0.005843,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292142,0.005843,-0.004999,0.249950,0,0);}
.m36_c00178{transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300480,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.352377,0.007400,-0.005249,0.249945,0,0);-ms-transform:matrix(0.352377,0.007400,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.352377,0.007400,-0.005249,0.249945,0,0);}
.m40_c00178{transform:matrix(0.368440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368440,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.391025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391025,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.405784,0.008116,-0.004999,0.249950,0,0);-ms-transform:matrix(0.405784,0.008116,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.405784,0.008116,-0.004999,0.249950,0,0);}
.m11_c00178{transform:matrix(0.410899,0.008629,-0.005249,0.249945,0,0);-ms-transform:matrix(0.410899,0.008629,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.410899,0.008629,-0.005249,0.249945,0,0);}
.m24_c00178{transform:matrix(0.431250,0.006900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.431250,0.006900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.431250,0.006900,-0.003999,0.249968,0,0);}
.m8_c00178{transform:matrix(0.456114,0.009122,-0.004999,0.249950,0,0);-ms-transform:matrix(0.456114,0.009122,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.456114,0.009122,-0.004999,0.249950,0,0);}
.m34_c00178{transform:matrix(0.461711,0.007387,-0.003999,0.249968,0,0);-ms-transform:matrix(0.461711,0.007387,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.461711,0.007387,-0.003999,0.249968,0,0);}
.m28_c00178{transform:matrix(0.464316,0.007429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.464316,0.007429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.464316,0.007429,-0.003999,0.249968,0,0);}
.m7_c00178{transform:matrix(0.481984,0.009640,-0.004999,0.249950,0,0);-ms-transform:matrix(0.481984,0.009640,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.481984,0.009640,-0.004999,0.249950,0,0);}
.mc_c00178{transform:matrix(0.506414,0.010128,-0.004999,0.249950,0,0);-ms-transform:matrix(0.506414,0.010128,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.506414,0.010128,-0.004999,0.249950,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;}
.fsb_c00178{font-size:22.050276px;}
.fs2_c00178{font-size:42.008399px;}
.fs9_c00178{font-size:64.058198px;}
.fsa_c00178{font-size:66.158467px;}
.fs8_c00178{font-size:67.208601px;}
.fsd_c00178{font-size:70.350000px;}
.fsf_c00178{font-size:72.450000px;}
.fs4_c00178{font-size:72.465973px;}
.fs10_c00178{font-size:73.500000px;}
.fse_c00178{font-size:74.550000px;}
.fs3_c00178{font-size:89.269677px;}
.fs6_c00178{font-size:93.470603px;}
.fs0_c00178{font-size:96.600000px;}
.fs5_c00178{font-size:99.771992px;}
.fs7_c00178{font-size:102.913170px;}
.fsc_c00178{font-size:110.250000px;}
.fs1_c00178{font-size:145.979187px;}
.y0_c00178{bottom:0.000000px;}
.y41_c00178{bottom:318.306000px;}
.y40_c00178{bottom:340.360500px;}
.y3f_c00178{bottom:367.896000px;}
.y3e_c00178{bottom:393.943500px;}
.y3d_c00178{bottom:394.132500px;}
.y3c_c00178{bottom:394.446000px;}
.y3b_c00178{bottom:394.786500px;}
.y3a_c00178{bottom:395.530500px;}
.y39_c00178{bottom:395.788500px;}
.y38_c00178{bottom:395.958000px;}
.y37_c00178{bottom:396.483000px;}
.y36_c00178{bottom:418.125000px;}
.y34_c00178{bottom:465.211176px;}
.y35_c00178{bottom:467.107500px;}
.y30_c00178{bottom:491.930796px;}
.y31_c00178{bottom:491.931324px;}
.y2f_c00178{bottom:491.931444px;}
.y32_c00178{bottom:491.931636px;}
.y33_c00178{bottom:491.931732px;}
.y2c_c00178{bottom:491.931852px;}
.y2e_c00178{bottom:491.931996px;}
.y2d_c00178{bottom:491.932068px;}
.y28_c00178{bottom:515.961828px;}
.y2b_c00178{bottom:515.961852px;}
.y29_c00178{bottom:515.962188px;}
.y2a_c00178{bottom:515.962356px;}
.y26_c00178{bottom:539.001528px;}
.y27_c00178{bottom:539.001684px;}
.y25_c00178{bottom:560.933496px;}
.y24_c00178{bottom:560.933544px;}
.y23_c00178{bottom:579.761688px;}
.y22_c00178{bottom:580.033824px;}
.y21_c00178{bottom:580.867536px;}
.y20_c00178{bottom:581.644680px;}
.y1f_c00178{bottom:583.740000px;}
.y1a_c00178{bottom:624.611251px;}
.y1b_c00178{bottom:624.611707px;}
.y1c_c00178{bottom:624.611808px;}
.y1e_c00178{bottom:624.612106px;}
.y1d_c00178{bottom:624.612443px;}
.y17_c00178{bottom:650.197109px;}
.y16_c00178{bottom:650.197421px;}
.y19_c00178{bottom:650.197424px;}
.y18_c00178{bottom:650.197569px;}
.y15_c00178{bottom:682.236321px;}
.y14_c00178{bottom:682.236874px;}
.y10_c00178{bottom:682.236999px;}
.y13_c00178{bottom:682.237200px;}
.y12_c00178{bottom:682.237210px;}
.y11_c00178{bottom:682.237406px;}
.yf_c00178{bottom:703.763767px;}
.ye_c00178{bottom:704.949648px;}
.yd_c00178{bottom:706.317000px;}
.yc_c00178{bottom:748.055970px;}
.yb_c00178{bottom:748.940100px;}
.ya_c00178{bottom:749.266080px;}
.y9_c00178{bottom:750.037350px;}
.y8_c00178{bottom:751.333680px;}
.y7_c00178{bottom:754.238160px;}
.y6_c00178{bottom:755.261580px;}
.y5_c00178{bottom:755.632980px;}
.y4_c00178{bottom:761.961930px;}
.y3_c00178{bottom:765.131430px;}
.y2_c00178{bottom:768.696000px;}
.y1_c00178{bottom:809.187000px;}
.hd_c00178{height:22.050276px;}
.h4_c00178{height:42.008399px;}
.hb_c00178{height:64.058198px;}
.hc_c00178{height:66.158467px;}
.ha_c00178{height:67.208601px;}
.hf_c00178{height:70.350000px;}
.h11_c00178{height:72.450000px;}
.h6_c00178{height:72.465973px;}
.h12_c00178{height:73.500000px;}
.h10_c00178{height:74.550000px;}
.h5_c00178{height:89.269677px;}
.h8_c00178{height:93.470603px;}
.h2_c00178{height:96.600000px;}
.h7_c00178{height:99.771992px;}
.h9_c00178{height:102.913170px;}
.he_c00178{height:110.250000px;}
.h3_c00178{height:145.979187px;}
.h1_c00178{height:1005.000000px;}
.h0_c00178{height:1005.150000px;}
.w0_c00178{width:735.750000px;}
.x0_c00178{left:0.000000px;}
.x4_c00178{left:106.315500px;}
.x44_c00178{left:118.260000px;}
.x12_c00178{left:125.277211px;}
.x1b_c00178{left:129.867128px;}
.x3c_c00178{left:131.490000px;}
.xf_c00178{left:141.909000px;}
.x1c_c00178{left:157.143161px;}
.x3d_c00178{left:175.770000px;}
.x18_c00178{left:186.039962px;}
.x13_c00178{left:201.434290px;}
.x10_c00178{left:207.021000px;}
.x45_c00178{left:210.600000px;}
.x34_c00178{left:211.827000px;}
.x2a_c00178{left:217.884516px;}
.x3e_c00178{left:220.320000px;}
.x1d_c00178{left:231.140795px;}
.x31_c00178{left:237.598140px;}
.x1_c00178{left:240.840000px;}
.x33_c00178{left:242.460000px;}
.x3f_c00178{left:245.160000px;}
.x1f_c00178{left:250.821000px;}
.x26_c00178{left:253.529520px;}
.x24_c00178{left:254.610660px;}
.x3a_c00178{left:257.040000px;}
.x2b_c00178{left:260.819508px;}
.x11_c00178{left:263.491500px;}
.x14_c00178{left:269.759405px;}
.x7_c00178{left:279.349530px;}
.x5_c00178{left:284.544000px;}
.x35_c00178{left:289.053000px;}
.x8_c00178{left:292.592400px;}
.x46_c00178{left:298.890000px;}
.x2c_c00178{left:306.995316px;}
.x40_c00178{left:311.310000px;}
.x27_c00178{left:312.397092px;}
.x19_c00178{left:317.019201px;}
.x9_c00178{left:329.132550px;}
.x28_c00178{left:335.079900px;}
.x1a_c00178{left:336.463269px;}
.x1e_c00178{left:339.704643px;}
.x2d_c00178{left:346.420896px;}
.x25_c00178{left:349.931736px;}
.x2_c00178{left:352.350000px;}
.x15_c00178{left:357.798713px;}
.x2e_c00178{left:369.643848px;}
.x41_c00178{left:372.330000px;}
.x29_c00178{left:376.934604px;}
.x16_c00178{left:378.323253px;}
.x20_c00178{left:381.778500px;}
.x42_c00178{left:385.290000px;}
.x3_c00178{left:390.420000px;}
.x36_c00178{left:400.311000px;}
.x2f_c00178{left:408.259236px;}
.x32_c00178{left:422.359500px;}
.x21_c00178{left:430.350000px;}
.xa_c00178{left:432.864960px;}
.x37_c00178{left:438.081000px;}
.x6_c00178{left:443.019000px;}
.x17_c00178{left:451.238883px;}
.x30_c00178{left:455.515332px;}
.x43_c00178{left:463.320000px;}
.x38_c00178{left:472.903500px;}
.xb_c00178{left:479.149050px;}
.x22_c00178{left:482.457000px;}
.x3b_c00178{left:487.080000px;}
.x39_c00178{left:493.983000px;}
.x23_c00178{left:499.465500px;}
.xc_c00178{left:506.683140px;}
.xd_c00178{left:518.330280px;}
.xe_c00178{left:549.931740px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
.fsb_c00178{font-size:19.600245pt;}
.fs2_c00178{font-size:37.340799pt;}
.fs9_c00178{font-size:56.940620pt;}
.fsa_c00178{font-size:58.807526pt;}
.fs8_c00178{font-size:59.740979pt;}
.fsd_c00178{font-size:62.533333pt;}
.fsf_c00178{font-size:64.400000pt;}
.fs4_c00178{font-size:64.414199pt;}
.fs10_c00178{font-size:65.333333pt;}
.fse_c00178{font-size:66.266667pt;}
.fs3_c00178{font-size:79.350824pt;}
.fs6_c00178{font-size:83.084981pt;}
.fs0_c00178{font-size:85.866667pt;}
.fs5_c00178{font-size:88.686216pt;}
.fs7_c00178{font-size:91.478374pt;}
.fsc_c00178{font-size:98.000000pt;}
.fs1_c00178{font-size:129.759277pt;}
.y0_c00178{bottom:0.000000pt;}
.y41_c00178{bottom:282.938667pt;}
.y40_c00178{bottom:302.542667pt;}
.y3f_c00178{bottom:327.018667pt;}
.y3e_c00178{bottom:350.172000pt;}
.y3d_c00178{bottom:350.340000pt;}
.y3c_c00178{bottom:350.618667pt;}
.y3b_c00178{bottom:350.921333pt;}
.y3a_c00178{bottom:351.582667pt;}
.y39_c00178{bottom:351.812000pt;}
.y38_c00178{bottom:351.962667pt;}
.y37_c00178{bottom:352.429333pt;}
.y36_c00178{bottom:371.666667pt;}
.y34_c00178{bottom:413.521045pt;}
.y35_c00178{bottom:415.206667pt;}
.y30_c00178{bottom:437.271819pt;}
.y31_c00178{bottom:437.272288pt;}
.y2f_c00178{bottom:437.272395pt;}
.y32_c00178{bottom:437.272565pt;}
.y33_c00178{bottom:437.272651pt;}
.y2c_c00178{bottom:437.272757pt;}
.y2e_c00178{bottom:437.272885pt;}
.y2d_c00178{bottom:437.272949pt;}
.y28_c00178{bottom:458.632736pt;}
.y2b_c00178{bottom:458.632757pt;}
.y29_c00178{bottom:458.633056pt;}
.y2a_c00178{bottom:458.633205pt;}
.y26_c00178{bottom:479.112469pt;}
.y27_c00178{bottom:479.112608pt;}
.y25_c00178{bottom:498.607552pt;}
.y24_c00178{bottom:498.607595pt;}
.y23_c00178{bottom:515.343723pt;}
.y22_c00178{bottom:515.585621pt;}
.y21_c00178{bottom:516.326699pt;}
.y20_c00178{bottom:517.017493pt;}
.y1f_c00178{bottom:518.880000pt;}
.y1a_c00178{bottom:555.210001pt;}
.y1b_c00178{bottom:555.210407pt;}
.y1c_c00178{bottom:555.210496pt;}
.y1e_c00178{bottom:555.210761pt;}
.y1d_c00178{bottom:555.211060pt;}
.y17_c00178{bottom:577.952985pt;}
.y16_c00178{bottom:577.953263pt;}
.y19_c00178{bottom:577.953265pt;}
.y18_c00178{bottom:577.953395pt;}
.y15_c00178{bottom:606.432285pt;}
.y14_c00178{bottom:606.432777pt;}
.y10_c00178{bottom:606.432888pt;}
.y13_c00178{bottom:606.433067pt;}
.y12_c00178{bottom:606.433076pt;}
.y11_c00178{bottom:606.433249pt;}
.yf_c00178{bottom:625.567793pt;}
.ye_c00178{bottom:626.621909pt;}
.yd_c00178{bottom:627.837333pt;}
.yc_c00178{bottom:664.938640pt;}
.yb_c00178{bottom:665.724533pt;}
.ya_c00178{bottom:666.014293pt;}
.y9_c00178{bottom:666.699867pt;}
.y8_c00178{bottom:667.852160pt;}
.y7_c00178{bottom:670.433920pt;}
.y6_c00178{bottom:671.343627pt;}
.y5_c00178{bottom:671.673760pt;}
.y4_c00178{bottom:677.299493pt;}
.y3_c00178{bottom:680.116827pt;}
.y2_c00178{bottom:683.285333pt;}
.y1_c00178{bottom:719.277333pt;}
.hd_c00178{height:19.600245pt;}
.h4_c00178{height:37.340799pt;}
.hb_c00178{height:56.940620pt;}
.hc_c00178{height:58.807526pt;}
.ha_c00178{height:59.740979pt;}
.hf_c00178{height:62.533333pt;}
.h11_c00178{height:64.400000pt;}
.h6_c00178{height:64.414199pt;}
.h12_c00178{height:65.333333pt;}
.h10_c00178{height:66.266667pt;}
.h5_c00178{height:79.350824pt;}
.h8_c00178{height:83.084981pt;}
.h2_c00178{height:85.866667pt;}
.h7_c00178{height:88.686216pt;}
.h9_c00178{height:91.478374pt;}
.he_c00178{height:98.000000pt;}
.h3_c00178{height:129.759277pt;}
.h1_c00178{height:893.333333pt;}
.h0_c00178{height:893.466667pt;}
.w0_c00178{width:654.000000pt;}
.x0_c00178{left:0.000000pt;}
.x4_c00178{left:94.502667pt;}
.x44_c00178{left:105.120000pt;}
.x12_c00178{left:111.357521pt;}
.x1b_c00178{left:115.437447pt;}
.x3c_c00178{left:116.880000pt;}
.xf_c00178{left:126.141333pt;}
.x1c_c00178{left:139.682809pt;}
.x3d_c00178{left:156.240000pt;}
.x18_c00178{left:165.368855pt;}
.x13_c00178{left:179.052703pt;}
.x10_c00178{left:184.018667pt;}
.x45_c00178{left:187.200000pt;}
.x34_c00178{left:188.290667pt;}
.x2a_c00178{left:193.675125pt;}
.x3e_c00178{left:195.840000pt;}
.x1d_c00178{left:205.458484pt;}
.x31_c00178{left:211.198347pt;}
.x1_c00178{left:214.080000pt;}
.x33_c00178{left:215.520000pt;}
.x3f_c00178{left:217.920000pt;}
.x1f_c00178{left:222.952000pt;}
.x26_c00178{left:225.359573pt;}
.x24_c00178{left:226.320587pt;}
.x3a_c00178{left:228.480000pt;}
.x2b_c00178{left:231.839563pt;}
.x11_c00178{left:234.214667pt;}
.x14_c00178{left:239.786137pt;}
.x7_c00178{left:248.310693pt;}
.x5_c00178{left:252.928000pt;}
.x35_c00178{left:256.936000pt;}
.x8_c00178{left:260.082133pt;}
.x46_c00178{left:265.680000pt;}
.x2c_c00178{left:272.884725pt;}
.x40_c00178{left:276.720000pt;}
.x27_c00178{left:277.686304pt;}
.x19_c00178{left:281.794845pt;}
.x9_c00178{left:292.562267pt;}
.x28_c00178{left:297.848800pt;}
.x1a_c00178{left:299.078461pt;}
.x1e_c00178{left:301.959683pt;}
.x2d_c00178{left:307.929685pt;}
.x25_c00178{left:311.050432pt;}
.x2_c00178{left:313.200000pt;}
.x15_c00178{left:318.043300pt;}
.x2e_c00178{left:328.572309pt;}
.x41_c00178{left:330.960000pt;}
.x29_c00178{left:335.052981pt;}
.x16_c00178{left:336.287336pt;}
.x20_c00178{left:339.358667pt;}
.x42_c00178{left:342.480000pt;}
.x3_c00178{left:347.040000pt;}
.x36_c00178{left:355.832000pt;}
.x2f_c00178{left:362.897099pt;}
.x32_c00178{left:375.430667pt;}
.x21_c00178{left:382.533333pt;}
.xa_c00178{left:384.768853pt;}
.x37_c00178{left:389.405333pt;}
.x6_c00178{left:393.794667pt;}
.x17_c00178{left:401.101229pt;}
.x30_c00178{left:404.902517pt;}
.x43_c00178{left:411.840000pt;}
.x38_c00178{left:420.358667pt;}
.xb_c00178{left:425.910267pt;}
.x22_c00178{left:428.850667pt;}
.x3b_c00178{left:432.960000pt;}
.x39_c00178{left:439.096000pt;}
.x23_c00178{left:443.969333pt;}
.xc_c00178{left:450.385013pt;}
.xd_c00178{left:460.738027pt;}
.xe_c00178{left:488.828213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma9_c00179{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);}
.m44_c00179{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m4d_c00179{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{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);}
.m5f_c00179{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);}
.m3_c00179{transform:matrix(0.083669,-0.001004,0.003000,0.249982,0,0);-ms-transform:matrix(0.083669,-0.001004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.083669,-0.001004,0.003000,0.249982,0,0);}
.m66_c00179{transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.130941,-0.001571,0.003000,0.249982,0,0);-ms-transform:matrix(0.130941,-0.001571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.130941,-0.001571,0.003000,0.249982,0,0);}
.m25_c00179{transform:matrix(0.139455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139455,0.000000,0.000000,0.250000,0,0);}
.mc2_c00179{transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.143475,-0.001722,0.003000,0.249982,0,0);-ms-transform:matrix(0.143475,-0.001722,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143475,-0.001722,0.003000,0.249982,0,0);}
.m96_c00179{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);}
.mb5_c00179{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{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);}
.m72_c00179{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);}
.m73_c00179{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{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);}
.m7_c00179{transform:matrix(0.152594,-0.001831,0.003000,0.249982,0,0);-ms-transform:matrix(0.152594,-0.001831,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152594,-0.001831,0.003000,0.249982,0,0);}
.m75_c00179{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{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);}
.m7a_c00179{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);}
.m86_c00179{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);}
.m58_c00179{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);}
.m7e_c00179{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);}
.m2c_c00179{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{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);}
.m4a_c00179{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);}
.mb0_c00179{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);}
.mb8_c00179{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);}
.m5b_c00179{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);}
.m7b_c00179{transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{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);}
.m65_c00179{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);}
.m2d_c00179{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);}
.mbd_c00179{transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{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);}
.m70_c00179{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);}
.m5c_c00179{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);}
.mad_c00179{transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{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);}
.m29_c00179{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);}
.m6f_c00179{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);}
.m36_c00179{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);}
.m3a_c00179{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);}
.m35_c00179{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);}
.m9e_c00179{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);}
.m23_c00179{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{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);}
.m97_c00179{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);}
.m53_c00179{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);}
.m78_c00179{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);}
.m59_c00179{transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{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);}
.ma3_c00179{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);}
.mb1_c00179{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);}
.m45_c00179{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);}
.m19_c00179{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);}
.mc1_c00179{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);}
.m6a_c00179{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);}
.m14_c00179{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);}
.m47_c00179{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);}
.m8e_c00179{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);}
.m52_c00179{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);}
.m79_c00179{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);}
.m9a_c00179{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);}
.m64_c00179{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);}
.mbc_c00179{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);}
.m7d_c00179{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);}
.m4c_c00179{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);}
.m91_c00179{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);}
.ma4_c00179{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);}
.m2b_c00179{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);}
.m3c_c00179{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);}
.mab_c00179{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);}
.ma2_c00179{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);}
.m87_c00179{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);}
.m3b_c00179{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);}
.m50_c00179{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);}
.m67_c00179{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);}
.ma1_c00179{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);}
.m69_c00179{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);}
.m43_c00179{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);}
.m15_c00179{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);}
.m55_c00179{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);}
.m51_c00179{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);}
.m88_c00179{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);}
.m83_c00179{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);}
.m34_c00179{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);}
.m21_c00179{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);}
.m4f_c00179{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);}
.m1_c00179{transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);}
.mac_c00179{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);}
.m77_c00179{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);}
.mbf_c00179{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);}
.m8f_c00179{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);}
.ma5_c00179{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);}
.m81_c00179{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);}
.m93_c00179{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);}
.m2e_c00179{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);}
.m38_c00179{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);}
.m6e_c00179{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);}
.maf_c00179{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);}
.m5a_c00179{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);}
.mb7_c00179{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);}
.m85_c00179{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);}
.m84_c00179{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);}
.m74_c00179{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);}
.m2f_c00179{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);}
.m1c_c00179{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);}
.m28_c00179{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);}
.mb9_c00179{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);}
.m3d_c00179{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);}
.m8c_c00179{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{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);}
.ma0_c00179{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);}
.m8a_c00179{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);}
.mbe_c00179{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);}
.mb3_c00179{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);}
.m8_c00179{transform:matrix(0.213830,-0.002566,0.003000,0.249982,0,0);-ms-transform:matrix(0.213830,-0.002566,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213830,-0.002566,0.003000,0.249982,0,0);}
.m6b_c00179{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);}
.m24_c00179{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);}
.m2a_c00179{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);}
.m27_c00179{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);}
.m5_c00179{transform:matrix(0.217734,-0.002613,0.003000,0.249982,0,0);-ms-transform:matrix(0.217734,-0.002613,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217734,-0.002613,0.003000,0.249982,0,0);}
.m6c_c00179{transform:matrix(0.218445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218445,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{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);}
.m46_c00179{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);}
.ma8_c00179{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);}
.m9b_c00179{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);}
.m30_c00179{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);}
.m7f_c00179{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);}
.m40_c00179{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);}
.m32_c00179{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);}
.m8d_c00179{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);}
.m1d_c00179{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);}
.mc0_c00179{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);}
.m95_c00179{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);}
.m1b_c00179{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{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);}
.m1f_c00179{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{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);}
.m90_c00179{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{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);}
.m37_c00179{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);}
.ma_c00179{transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);-ms-transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);}
.mba_c00179{transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{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);}
.m1a_c00179{transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{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);}
.m16_c00179{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{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);}
.m82_c00179{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{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);}
.m33_c00179{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);}
.mb2_c00179{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{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);}
.maa_c00179{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{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);}
.m20_c00179{transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.266635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266635,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{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);}
.m8b_c00179{transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{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);}
.m56_c00179{transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.283685,-0.003404,0.003000,0.249982,0,0);-ms-transform:matrix(0.283685,-0.003404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283685,-0.003404,0.003000,0.249982,0,0);}
.mf_c00179{transform:matrix(0.284130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284130,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.291599,-0.003499,0.003000,0.249982,0,0);-ms-transform:matrix(0.291599,-0.003499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291599,-0.003499,0.003000,0.249982,0,0);}
.m89_c00179{transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294805,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{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);}
.m5e_c00179{transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330090,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.331925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331925,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337160,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{transform:matrix(0.343470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343470,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{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);}
.mbb_c00179{transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.386712,-0.004641,0.003000,0.249982,0,0);-ms-transform:matrix(0.386712,-0.004641,0.003000,0.249982,0,0);-webkit-transform:matrix(0.386712,-0.004641,0.003000,0.249982,0,0);}
.md_c00179{transform:matrix(0.398110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398110,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.409156,-0.004910,0.003000,0.249982,0,0);-ms-transform:matrix(0.409156,-0.004910,0.003000,0.249982,0,0);-webkit-transform:matrix(0.409156,-0.004910,0.003000,0.249982,0,0);}
.m13_c00179{transform:matrix(0.419480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419480,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.424985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424985,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.433015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433015,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.449010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449010,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.451090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451090,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{transform:matrix(0.479790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479790,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;}
.fs6_c00179{font-size:64.050000px;}
.fs0_c00179{font-size:64.054611px;}
.fs2_c00179{font-size:67.200000px;}
.fs7_c00179{font-size:68.250000px;}
.fs8_c00179{font-size:69.300000px;}
.fs9_c00179{font-size:70.350000px;}
.fs4_c00179{font-size:71.400000px;}
.fs5_c00179{font-size:72.450000px;}
.fsa_c00179{font-size:75.600000px;}
.fs1_c00179{font-size:94.506804px;}
.fs3_c00179{font-size:137.550000px;}
.y0_c00179{bottom:0.000000px;}
.y27_c00179{bottom:174.085500px;}
.y26_c00179{bottom:197.419500px;}
.y25_c00179{bottom:219.979500px;}
.y24_c00179{bottom:242.094000px;}
.y23_c00179{bottom:265.780500px;}
.y22_c00179{bottom:289.384500px;}
.y21_c00179{bottom:311.040000px;}
.y20_c00179{bottom:334.638000px;}
.y1f_c00179{bottom:357.010500px;}
.y1e_c00179{bottom:379.708500px;}
.y1d_c00179{bottom:402.117000px;}
.y1c_c00179{bottom:425.043000px;}
.y1b_c00179{bottom:448.422000px;}
.y1a_c00179{bottom:470.764500px;}
.y19_c00179{bottom:492.951000px;}
.y18_c00179{bottom:516.168000px;}
.y17_c00179{bottom:543.387000px;}
.y16_c00179{bottom:570.592500px;}
.y15_c00179{bottom:593.460000px;}
.y14_c00179{bottom:616.179000px;}
.y13_c00179{bottom:638.865000px;}
.y12_c00179{bottom:661.117500px;}
.y11_c00179{bottom:684.229500px;}
.y10_c00179{bottom:706.942500px;}
.yf_c00179{bottom:729.270000px;}
.ye_c00179{bottom:766.803000px;}
.yd_c00179{bottom:809.703000px;}
.y9_c00179{bottom:873.989268px;}
.ya_c00179{bottom:876.004656px;}
.yb_c00179{bottom:877.177092px;}
.yc_c00179{bottom:879.283452px;}
.y1_c00179{bottom:934.471500px;}
.y2_c00179{bottom:935.112930px;}
.y3_c00179{bottom:935.511972px;}
.y4_c00179{bottom:936.587652px;}
.y5_c00179{bottom:937.125528px;}
.y6_c00179{bottom:937.861116px;}
.y7_c00179{bottom:938.606334px;}
.y8_c00179{bottom:939.344928px;}
.h8_c00179{height:64.050000px;}
.h2_c00179{height:64.054611px;}
.h4_c00179{height:67.200000px;}
.h9_c00179{height:68.250000px;}
.ha_c00179{height:69.300000px;}
.hb_c00179{height:70.350000px;}
.h6_c00179{height:71.400000px;}
.h7_c00179{height:72.450000px;}
.hc_c00179{height:75.600000px;}
.h3_c00179{height:94.506804px;}
.h5_c00179{height:137.550000px;}
.h0_c00179{height:1008.450000px;}
.h1_c00179{height:1008.750000px;}
.w0_c00179{width:678.450000px;}
.w1_c00179{width:678.750000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:109.737000px;}
.x9_c00179{left:144.406674px;}
.x2a_c00179{left:161.730000px;}
.x2_c00179{left:163.189500px;}
.x30_c00179{left:172.800000px;}
.x24_c00179{left:174.690000px;}
.x13_c00179{left:176.310000px;}
.x4c_c00179{left:177.390000px;}
.x63_c00179{left:178.740000px;}
.x75_c00179{left:179.820000px;}
.x62_c00179{left:184.140000px;}
.x3_c00179{left:196.443000px;}
.x19_c00179{left:198.450000px;}
.x31_c00179{left:201.960000px;}
.x5c_c00179{left:204.660000px;}
.x25_c00179{left:207.090000px;}
.x56_c00179{left:210.870000px;}
.x36_c00179{left:217.620000px;}
.x1f_c00179{left:219.510000px;}
.x46_c00179{left:223.020000px;}
.x6a_c00179{left:224.370000px;}
.x64_c00179{left:227.340000px;}
.x53_c00179{left:228.690000px;}
.x26_c00179{left:235.710000px;}
.x76_c00179{left:238.140000px;}
.x7b_c00179{left:240.300000px;}
.x2b_c00179{left:244.620000px;}
.x1a_c00179{left:248.400000px;}
.x37_c00179{left:250.020000px;}
.x4d_c00179{left:253.800000px;}
.x77_c00179{left:255.960000px;}
.x14_c00179{left:257.580000px;}
.x57_c00179{left:260.280000px;}
.x27_c00179{left:262.170000px;}
.x5f_c00179{left:263.250000px;}
.x20_c00179{left:264.870000px;}
.x3e_c00179{left:265.950000px;}
.x6b_c00179{left:269.730000px;}
.x65_c00179{left:271.080000px;}
.x7c_c00179{left:274.050000px;}
.x4e_c00179{left:275.940000px;}
.x58_c00179{left:278.910000px;}
.x1b_c00179{left:279.990000px;}
.x72_c00179{left:282.150000px;}
.x47_c00179{left:284.040000px;}
.x4_c00179{left:286.083000px;}
.xa_c00179{left:288.352218px;}
.x60_c00179{left:290.790000px;}
.xd_c00179{left:292.410000px;}
.x7d_c00179{left:296.460000px;}
.x70_c00179{left:299.160000px;}
.x32_c00179{left:302.670000px;}
.x12_c00179{left:304.830000px;}
.x38_c00179{left:307.530000px;}
.x3f_c00179{left:314.550000px;}
.x3d_c00179{left:315.900000px;}
.x28_c00179{left:318.330000px;}
.xe_c00179{left:320.490000px;}
.x15_c00179{left:329.400000px;}
.x5_c00179{left:330.906000px;}
.x2c_c00179{left:332.640000px;}
.x54_c00179{left:336.420000px;}
.x5d_c00179{left:341.280000px;}
.x40_c00179{left:345.060000px;}
.x59_c00179{left:350.730000px;}
.x66_c00179{left:353.430000px;}
.x33_c00179{left:356.130000px;}
.x6c_c00179{left:357.210000px;}
.x1c_c00179{left:360.180000px;}
.x2d_c00179{left:365.580000px;}
.x39_c00179{left:367.200000px;}
.x48_c00179{left:369.630000px;}
.xb_c00179{left:372.053202px;}
.x67_c00179{left:373.140000px;}
.xf_c00179{left:376.380000px;}
.x21_c00179{left:379.350000px;}
.x16_c00179{left:383.400000px;}
.x43_c00179{left:386.370000px;}
.x5a_c00179{left:390.960000px;}
.x6_c00179{left:392.205000px;}
.x34_c00179{left:393.930000px;}
.x73_c00179{left:395.010000px;}
.x6d_c00179{left:396.090000px;}
.x49_c00179{left:398.250000px;}
.x17_c00179{left:401.760000px;}
.x4f_c00179{left:403.110000px;}
.x3a_c00179{left:406.890000px;}
.x35_c00179{left:409.320000px;}
.x11_c00179{left:416.070000px;}
.x7e_c00179{left:418.770000px;}
.x29_c00179{left:419.850000px;}
.x2e_c00179{left:423.900000px;}
.x44_c00179{left:427.410000px;}
.x41_c00179{left:429.300000px;}
.x22_c00179{left:430.650000px;}
.x3b_c00179{left:436.860000px;}
.x68_c00179{left:439.290000px;}
.x18_c00179{left:441.720000px;}
.x10_c00179{left:442.800000px;}
.x78_c00179{left:444.420000px;}
.x1d_c00179{left:447.660000px;}
.x74_c00179{left:452.250000px;}
.x7_c00179{left:454.306500px;}
.x2f_c00179{left:455.760000px;}
.x61_c00179{left:460.620000px;}
.x50_c00179{left:463.590000px;}
.x5e_c00179{left:465.210000px;}
.x6e_c00179{left:470.070000px;}
.x55_c00179{left:472.500000px;}
.x42_c00179{left:475.200000px;}
.x5b_c00179{left:476.550000px;}
.x1e_c00179{left:478.170000px;}
.x45_c00179{left:479.520000px;}
.x51_c00179{left:481.680000px;}
.x23_c00179{left:483.840000px;}
.x3c_c00179{left:485.730000px;}
.x4a_c00179{left:491.670000px;}
.x69_c00179{left:494.910000px;}
.x71_c00179{left:497.880000px;}
.x52_c00179{left:506.250000px;}
.x6f_c00179{left:511.110000px;}
.x8_c00179{left:515.856000px;}
.x79_c00179{left:518.400000px;}
.xc_c00179{left:522.454584px;}
.x4b_c00179{left:531.090000px;}
.x7a_c00179{left:565.110000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.fs6_c00179{font-size:56.933333pt;}
.fs0_c00179{font-size:56.937432pt;}
.fs2_c00179{font-size:59.733333pt;}
.fs7_c00179{font-size:60.666667pt;}
.fs8_c00179{font-size:61.600000pt;}
.fs9_c00179{font-size:62.533333pt;}
.fs4_c00179{font-size:63.466667pt;}
.fs5_c00179{font-size:64.400000pt;}
.fsa_c00179{font-size:67.200000pt;}
.fs1_c00179{font-size:84.006048pt;}
.fs3_c00179{font-size:122.266667pt;}
.y0_c00179{bottom:0.000000pt;}
.y27_c00179{bottom:154.742667pt;}
.y26_c00179{bottom:175.484000pt;}
.y25_c00179{bottom:195.537333pt;}
.y24_c00179{bottom:215.194667pt;}
.y23_c00179{bottom:236.249333pt;}
.y22_c00179{bottom:257.230667pt;}
.y21_c00179{bottom:276.480000pt;}
.y20_c00179{bottom:297.456000pt;}
.y1f_c00179{bottom:317.342667pt;}
.y1e_c00179{bottom:337.518667pt;}
.y1d_c00179{bottom:357.437333pt;}
.y1c_c00179{bottom:377.816000pt;}
.y1b_c00179{bottom:398.597333pt;}
.y1a_c00179{bottom:418.457333pt;}
.y19_c00179{bottom:438.178667pt;}
.y18_c00179{bottom:458.816000pt;}
.y17_c00179{bottom:483.010667pt;}
.y16_c00179{bottom:507.193333pt;}
.y15_c00179{bottom:527.520000pt;}
.y14_c00179{bottom:547.714667pt;}
.y13_c00179{bottom:567.880000pt;}
.y12_c00179{bottom:587.660000pt;}
.y11_c00179{bottom:608.204000pt;}
.y10_c00179{bottom:628.393333pt;}
.yf_c00179{bottom:648.240000pt;}
.ye_c00179{bottom:681.602667pt;}
.yd_c00179{bottom:719.736000pt;}
.y9_c00179{bottom:776.879349pt;}
.ya_c00179{bottom:778.670805pt;}
.yb_c00179{bottom:779.712971pt;}
.yc_c00179{bottom:781.585291pt;}
.y1_c00179{bottom:830.641333pt;}
.y2_c00179{bottom:831.211493pt;}
.y3_c00179{bottom:831.566197pt;}
.y4_c00179{bottom:832.522357pt;}
.y5_c00179{bottom:833.000469pt;}
.y6_c00179{bottom:833.654325pt;}
.y7_c00179{bottom:834.316741pt;}
.y8_c00179{bottom:834.973269pt;}
.h8_c00179{height:56.933333pt;}
.h2_c00179{height:56.937432pt;}
.h4_c00179{height:59.733333pt;}
.h9_c00179{height:60.666667pt;}
.ha_c00179{height:61.600000pt;}
.hb_c00179{height:62.533333pt;}
.h6_c00179{height:63.466667pt;}
.h7_c00179{height:64.400000pt;}
.hc_c00179{height:67.200000pt;}
.h3_c00179{height:84.006048pt;}
.h5_c00179{height:122.266667pt;}
.h0_c00179{height:896.400000pt;}
.h1_c00179{height:896.666667pt;}
.w0_c00179{width:603.066667pt;}
.w1_c00179{width:603.333333pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:97.544000pt;}
.x9_c00179{left:128.361488pt;}
.x2a_c00179{left:143.760000pt;}
.x2_c00179{left:145.057333pt;}
.x30_c00179{left:153.600000pt;}
.x24_c00179{left:155.280000pt;}
.x13_c00179{left:156.720000pt;}
.x4c_c00179{left:157.680000pt;}
.x63_c00179{left:158.880000pt;}
.x75_c00179{left:159.840000pt;}
.x62_c00179{left:163.680000pt;}
.x3_c00179{left:174.616000pt;}
.x19_c00179{left:176.400000pt;}
.x31_c00179{left:179.520000pt;}
.x5c_c00179{left:181.920000pt;}
.x25_c00179{left:184.080000pt;}
.x56_c00179{left:187.440000pt;}
.x36_c00179{left:193.440000pt;}
.x1f_c00179{left:195.120000pt;}
.x46_c00179{left:198.240000pt;}
.x6a_c00179{left:199.440000pt;}
.x64_c00179{left:202.080000pt;}
.x53_c00179{left:203.280000pt;}
.x26_c00179{left:209.520000pt;}
.x76_c00179{left:211.680000pt;}
.x7b_c00179{left:213.600000pt;}
.x2b_c00179{left:217.440000pt;}
.x1a_c00179{left:220.800000pt;}
.x37_c00179{left:222.240000pt;}
.x4d_c00179{left:225.600000pt;}
.x77_c00179{left:227.520000pt;}
.x14_c00179{left:228.960000pt;}
.x57_c00179{left:231.360000pt;}
.x27_c00179{left:233.040000pt;}
.x5f_c00179{left:234.000000pt;}
.x20_c00179{left:235.440000pt;}
.x3e_c00179{left:236.400000pt;}
.x6b_c00179{left:239.760000pt;}
.x65_c00179{left:240.960000pt;}
.x7c_c00179{left:243.600000pt;}
.x4e_c00179{left:245.280000pt;}
.x58_c00179{left:247.920000pt;}
.x1b_c00179{left:248.880000pt;}
.x72_c00179{left:250.800000pt;}
.x47_c00179{left:252.480000pt;}
.x4_c00179{left:254.296000pt;}
.xa_c00179{left:256.313083pt;}
.x60_c00179{left:258.480000pt;}
.xd_c00179{left:259.920000pt;}
.x7d_c00179{left:263.520000pt;}
.x70_c00179{left:265.920000pt;}
.x32_c00179{left:269.040000pt;}
.x12_c00179{left:270.960000pt;}
.x38_c00179{left:273.360000pt;}
.x3f_c00179{left:279.600000pt;}
.x3d_c00179{left:280.800000pt;}
.x28_c00179{left:282.960000pt;}
.xe_c00179{left:284.880000pt;}
.x15_c00179{left:292.800000pt;}
.x5_c00179{left:294.138667pt;}
.x2c_c00179{left:295.680000pt;}
.x54_c00179{left:299.040000pt;}
.x5d_c00179{left:303.360000pt;}
.x40_c00179{left:306.720000pt;}
.x59_c00179{left:311.760000pt;}
.x66_c00179{left:314.160000pt;}
.x33_c00179{left:316.560000pt;}
.x6c_c00179{left:317.520000pt;}
.x1c_c00179{left:320.160000pt;}
.x2d_c00179{left:324.960000pt;}
.x39_c00179{left:326.400000pt;}
.x48_c00179{left:328.560000pt;}
.xb_c00179{left:330.713957pt;}
.x67_c00179{left:331.680000pt;}
.xf_c00179{left:334.560000pt;}
.x21_c00179{left:337.200000pt;}
.x16_c00179{left:340.800000pt;}
.x43_c00179{left:343.440000pt;}
.x5a_c00179{left:347.520000pt;}
.x6_c00179{left:348.626667pt;}
.x34_c00179{left:350.160000pt;}
.x73_c00179{left:351.120000pt;}
.x6d_c00179{left:352.080000pt;}
.x49_c00179{left:354.000000pt;}
.x17_c00179{left:357.120000pt;}
.x4f_c00179{left:358.320000pt;}
.x3a_c00179{left:361.680000pt;}
.x35_c00179{left:363.840000pt;}
.x11_c00179{left:369.840000pt;}
.x7e_c00179{left:372.240000pt;}
.x29_c00179{left:373.200000pt;}
.x2e_c00179{left:376.800000pt;}
.x44_c00179{left:379.920000pt;}
.x41_c00179{left:381.600000pt;}
.x22_c00179{left:382.800000pt;}
.x3b_c00179{left:388.320000pt;}
.x68_c00179{left:390.480000pt;}
.x18_c00179{left:392.640000pt;}
.x10_c00179{left:393.600000pt;}
.x78_c00179{left:395.040000pt;}
.x1d_c00179{left:397.920000pt;}
.x74_c00179{left:402.000000pt;}
.x7_c00179{left:403.828000pt;}
.x2f_c00179{left:405.120000pt;}
.x61_c00179{left:409.440000pt;}
.x50_c00179{left:412.080000pt;}
.x5e_c00179{left:413.520000pt;}
.x6e_c00179{left:417.840000pt;}
.x55_c00179{left:420.000000pt;}
.x42_c00179{left:422.400000pt;}
.x5b_c00179{left:423.600000pt;}
.x1e_c00179{left:425.040000pt;}
.x45_c00179{left:426.240000pt;}
.x51_c00179{left:428.160000pt;}
.x23_c00179{left:430.080000pt;}
.x3c_c00179{left:431.760000pt;}
.x4a_c00179{left:437.040000pt;}
.x69_c00179{left:439.920000pt;}
.x71_c00179{left:442.560000pt;}
.x52_c00179{left:450.000000pt;}
.x6f_c00179{left:454.320000pt;}
.x8_c00179{left:458.538667pt;}
.x79_c00179{left:460.800000pt;}
.xc_c00179{left:464.404075pt;}
.x4b_c00179{left:472.080000pt;}
.x7a_c00179{left:502.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m2_c00180{transform:matrix(0.008866,0.000275,-0.007746,0.249880,0,0);-ms-transform:matrix(0.008866,0.000275,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.008866,0.000275,-0.007746,0.249880,0,0);}
.m8b_c00180{transform:matrix(0.010539,0.000116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010539,0.000116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010539,0.000116,-0.002750,0.249985,0,0);}
.md0_c00180{transform:matrix(0.014444,0.000159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.014444,0.000159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.014444,0.000159,-0.002750,0.249985,0,0);}
.m29_c00180{transform:matrix(0.016344,0.000180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016344,0.000180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016344,0.000180,-0.002750,0.249985,0,0);}
.m9b_c00180{transform:matrix(0.037813,0.000416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.037813,0.000416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.037813,0.000416,-0.002750,0.249985,0,0);}
.m3_c00180{transform:matrix(0.060621,0.001879,-0.007746,0.249880,0,0);-ms-transform:matrix(0.060621,0.001879,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.060621,0.001879,-0.007746,0.249880,0,0);}
.mce_c00180{transform:matrix(0.084970,0.000935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.084970,0.000935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.084970,0.000935,-0.002750,0.249985,0,0);}
.m5c_c00180{transform:matrix(0.093359,0.001027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.093359,0.001027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.093359,0.001027,-0.002750,0.249985,0,0);}
.m5d_c00180{transform:matrix(0.133412,0.001468,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133412,0.001468,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133412,0.001468,-0.002750,0.249985,0,0);}
.m28_c00180{transform:matrix(0.133862,0.001472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133862,0.001472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133862,0.001472,-0.002750,0.249985,0,0);}
.mb5_c00180{transform:matrix(0.136542,0.001502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136542,0.001502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136542,0.001502,-0.002750,0.249985,0,0);}
.m22_c00180{transform:matrix(0.140062,0.001541,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140062,0.001541,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140062,0.001541,-0.002750,0.249985,0,0);}
.m24_c00180{transform:matrix(0.143616,0.001580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143616,0.001580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143616,0.001580,-0.002750,0.249985,0,0);}
.m2e_c00180{transform:matrix(0.147261,0.001620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147261,0.001620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147261,0.001620,-0.002750,0.249985,0,0);}
.m88_c00180{transform:matrix(0.147476,0.001622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147476,0.001622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147476,0.001622,-0.002750,0.249985,0,0);}
.m39_c00180{transform:matrix(0.147776,0.001626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147776,0.001626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147776,0.001626,-0.002750,0.249985,0,0);}
.md6_c00180{transform:matrix(0.150486,0.001655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150486,0.001655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150486,0.001655,-0.002750,0.249985,0,0);}
.m41_c00180{transform:matrix(0.151081,0.001662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151081,0.001662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151081,0.001662,-0.002750,0.249985,0,0);}
.m32_c00180{transform:matrix(0.151626,0.001668,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151626,0.001668,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151626,0.001668,-0.002750,0.249985,0,0);}
.mae_c00180{transform:matrix(0.151686,0.001669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151686,0.001669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151686,0.001669,-0.002750,0.249985,0,0);}
.m7b_c00180{transform:matrix(0.152161,0.001674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152161,0.001674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152161,0.001674,-0.002750,0.249985,0,0);}
.m4a_c00180{transform:matrix(0.152476,0.001677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152476,0.001677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152476,0.001677,-0.002750,0.249985,0,0);}
.ma6_c00180{transform:matrix(0.155596,0.001712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155596,0.001712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155596,0.001712,-0.002750,0.249985,0,0);}
.m51_c00180{transform:matrix(0.156506,0.001722,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156506,0.001722,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156506,0.001722,-0.002750,0.249985,0,0);}
.m96_c00180{transform:matrix(0.156936,0.001726,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156936,0.001726,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156936,0.001726,-0.002750,0.249985,0,0);}
.md5_c00180{transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157625,0.001734,-0.002750,0.249985,0,0);}
.mcc_c00180{transform:matrix(0.157930,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157930,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157930,0.001737,-0.002750,0.249985,0,0);}
.ma1_c00180{transform:matrix(0.158535,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158535,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158535,0.001744,-0.002750,0.249985,0,0);}
.m66_c00180{transform:matrix(0.158860,0.001747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158860,0.001747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158860,0.001747,-0.002750,0.249985,0,0);}
.mf_c00180{transform:matrix(0.159265,0.001752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159265,0.001752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159265,0.001752,-0.002750,0.249985,0,0);}
.m3c_c00180{transform:matrix(0.159620,0.001756,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159620,0.001756,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159620,0.001756,-0.002750,0.249985,0,0);}
.mb2_c00180{transform:matrix(0.160515,0.001766,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160515,0.001766,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160515,0.001766,-0.002750,0.249985,0,0);}
.m73_c00180{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);}
.mbd_c00180{transform:matrix(0.161870,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161870,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161870,0.001781,-0.002750,0.249985,0,0);}
.m52_c00180{transform:matrix(0.161880,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161880,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161880,0.001781,-0.002750,0.249985,0,0);}
.m2d_c00180{transform:matrix(0.162225,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162225,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162225,0.001784,-0.002750,0.249985,0,0);}
.m95_c00180{transform:matrix(0.162340,0.001786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162340,0.001786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162340,0.001786,-0.002750,0.249985,0,0);}
.m98_c00180{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);}
.md8_c00180{transform:matrix(0.163865,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163865,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163865,0.001803,-0.002750,0.249985,0,0);}
.m9_c00180{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);}
.mc_c00180{transform:matrix(0.164365,0.001808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164365,0.001808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164365,0.001808,-0.002750,0.249985,0,0);}
.m91_c00180{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);}
.mba_c00180{transform:matrix(0.164720,0.001812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164720,0.001812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164720,0.001812,-0.002750,0.249985,0,0);}
.ma8_c00180{transform:matrix(0.165575,0.001821,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165575,0.001821,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165575,0.001821,-0.002750,0.249985,0,0);}
.m3e_c00180{transform:matrix(0.166970,0.001837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166970,0.001837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166970,0.001837,-0.002750,0.249985,0,0);}
.m84_c00180{transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);}
.md4_c00180{transform:matrix(0.167620,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167620,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167620,0.001844,-0.002750,0.249985,0,0);}
.mcd_c00180{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);}
.mb9_c00180{transform:matrix(0.169690,0.001867,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169690,0.001867,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169690,0.001867,-0.002750,0.249985,0,0);}
.m60_c00180{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);}
.m8e_c00180{transform:matrix(0.170405,0.001874,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170405,0.001874,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170405,0.001874,-0.002750,0.249985,0,0);}
.md2_c00180{transform:matrix(0.170755,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170755,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170755,0.001878,-0.002750,0.249985,0,0);}
.mb7_c00180{transform:matrix(0.170810,0.001879,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170810,0.001879,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170810,0.001879,-0.002750,0.249985,0,0);}
.m4d_c00180{transform:matrix(0.171635,0.001888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171635,0.001888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171635,0.001888,-0.002750,0.249985,0,0);}
.m27_c00180{transform:matrix(0.171790,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171790,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171790,0.001890,-0.002750,0.249985,0,0);}
.mbb_c00180{transform:matrix(0.171800,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171800,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171800,0.001890,-0.002750,0.249985,0,0);}
.m68_c00180{transform:matrix(0.173290,0.001906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173290,0.001906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173290,0.001906,-0.002750,0.249985,0,0);}
.m47_c00180{transform:matrix(0.173949,0.001913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173949,0.001913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173949,0.001913,-0.002750,0.249985,0,0);}
.mc4_c00180{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);}
.m21_c00180{transform:matrix(0.175214,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175214,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175214,0.001927,-0.002750,0.249985,0,0);}
.me0_c00180{transform:matrix(0.175276,0.003681,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175276,0.003681,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175276,0.003681,-0.005249,0.249945,0,0);}
.m42_c00180{transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);}
.mb1_c00180{transform:matrix(0.176004,0.001936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176004,0.001936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176004,0.001936,-0.002750,0.249985,0,0);}
.me_c00180{transform:matrix(0.176149,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176149,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176149,0.001938,-0.002750,0.249985,0,0);}
.m7a_c00180{transform:matrix(0.176944,0.001946,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176944,0.001946,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176944,0.001946,-0.002750,0.249985,0,0);}
.m7c_c00180{transform:matrix(0.177009,0.001947,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177009,0.001947,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177009,0.001947,-0.002750,0.249985,0,0);}
.m26_c00180{transform:matrix(0.177159,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177159,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177159,0.001949,-0.002750,0.249985,0,0);}
.m34_c00180{transform:matrix(0.177279,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177279,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177279,0.001950,-0.002750,0.249985,0,0);}
.ma5_c00180{transform:matrix(0.177474,0.001952,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177474,0.001952,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177474,0.001952,-0.002750,0.249985,0,0);}
.m74_c00180{transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177779,0.001956,-0.002750,0.249985,0,0);}
.m9a_c00180{transform:matrix(0.177934,0.001957,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177934,0.001957,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177934,0.001957,-0.002750,0.249985,0,0);}
.m57_c00180{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);}
.m25_c00180{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);}
.m9d_c00180{transform:matrix(0.179294,0.001972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179294,0.001972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179294,0.001972,-0.002750,0.249985,0,0);}
.md_c00180{transform:matrix(0.179484,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179484,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179484,0.001974,-0.002750,0.249985,0,0);}
.m87_c00180{transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);}
.maf_c00180{transform:matrix(0.179654,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179654,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179654,0.001976,-0.002750,0.249985,0,0);}
.m4f_c00180{transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);}
.m4c_c00180{transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180299,0.001983,-0.002750,0.249985,0,0);}
.m49_c00180{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);}
.m94_c00180{transform:matrix(0.180729,0.001988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180729,0.001988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180729,0.001988,-0.002750,0.249985,0,0);}
.mb4_c00180{transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181729,0.001999,-0.002750,0.249985,0,0);}
.ma9_c00180{transform:matrix(0.181734,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181734,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181734,0.001999,-0.002750,0.249985,0,0);}
.mc3_c00180{transform:matrix(0.181844,0.002000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181844,0.002000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181844,0.002000,-0.002750,0.249985,0,0);}
.m40_c00180{transform:matrix(0.182114,0.002003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182114,0.002003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182114,0.002003,-0.002750,0.249985,0,0);}
.ma0_c00180{transform:matrix(0.182939,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182939,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182939,0.002012,-0.002750,0.249985,0,0);}
.m10_c00180{transform:matrix(0.184004,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184004,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184004,0.002024,-0.002750,0.249985,0,0);}
.m13_c00180{transform:matrix(0.184119,0.002025,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184119,0.002025,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184119,0.002025,-0.002750,0.249985,0,0);}
.m6b_c00180{transform:matrix(0.184334,0.002028,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184334,0.002028,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184334,0.002028,-0.002750,0.249985,0,0);}
.m3a_c00180{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);}
.mda_c00180{transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184944,0.002034,-0.002750,0.249985,0,0);}
.mc5_c00180{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);}
.m65_c00180{transform:matrix(0.184979,0.002035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184979,0.002035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184979,0.002035,-0.002750,0.249985,0,0);}
.m6f_c00180{transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185494,0.002040,-0.002750,0.249985,0,0);}
.mc8_c00180{transform:matrix(0.185514,0.002041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185514,0.002041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185514,0.002041,-0.002750,0.249985,0,0);}
.m4e_c00180{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);}
.m54_c00180{transform:matrix(0.186029,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186029,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186029,0.002046,-0.002750,0.249985,0,0);}
.m76_c00180{transform:matrix(0.186094,0.002047,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186094,0.002047,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186094,0.002047,-0.002750,0.249985,0,0);}
.mc7_c00180{transform:matrix(0.186469,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186469,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186469,0.002051,-0.002750,0.249985,0,0);}
.m6e_c00180{transform:matrix(0.186499,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186499,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186499,0.002051,-0.002750,0.249985,0,0);}
.m5f_c00180{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);}
.mbc_c00180{transform:matrix(0.187279,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187279,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187279,0.002060,-0.002750,0.249985,0,0);}
.m79_c00180{transform:matrix(0.187314,0.002060,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187314,0.002060,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187314,0.002060,-0.002750,0.249985,0,0);}
.maa_c00180{transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187344,0.002061,-0.002750,0.249985,0,0);}
.m31_c00180{transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187519,0.002063,-0.002750,0.249985,0,0);}
.mb3_c00180{transform:matrix(0.187824,0.002066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187824,0.002066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187824,0.002066,-0.002750,0.249985,0,0);}
.m97_c00180{transform:matrix(0.188239,0.002071,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188239,0.002071,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188239,0.002071,-0.002750,0.249985,0,0);}
.m7d_c00180{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);}
.m83_c00180{transform:matrix(0.189084,0.002080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189084,0.002080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189084,0.002080,-0.002750,0.249985,0,0);}
.m5e_c00180{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);}
.mb6_c00180{transform:matrix(0.189649,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189649,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189649,0.002086,-0.002750,0.249985,0,0);}
.m92_c00180{transform:matrix(0.189809,0.002088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189809,0.002088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189809,0.002088,-0.002750,0.249985,0,0);}
.m99_c00180{transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);}
.md3_c00180{transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);}
.mc1_c00180{transform:matrix(0.190503,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190503,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190503,0.002096,-0.002750,0.249985,0,0);}
.m80_c00180{transform:matrix(0.190883,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190883,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190883,0.002100,-0.002750,0.249985,0,0);}
.m3d_c00180{transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190908,0.002100,-0.002750,0.249985,0,0);}
.mac_c00180{transform:matrix(0.191898,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191898,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191898,0.002111,-0.002750,0.249985,0,0);}
.mdc_c00180{transform:matrix(0.192048,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192048,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192048,0.002113,-0.002750,0.249985,0,0);}
.m46_c00180{transform:matrix(0.192213,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192213,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192213,0.002114,-0.002750,0.249985,0,0);}
.m20_c00180{transform:matrix(0.192633,0.002119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192633,0.002119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192633,0.002119,-0.002750,0.249985,0,0);}
.m1a_c00180{transform:matrix(0.192693,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192693,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192693,0.002120,-0.002750,0.249985,0,0);}
.m8d_c00180{transform:matrix(0.192943,0.002122,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192943,0.002122,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192943,0.002122,-0.002750,0.249985,0,0);}
.mcb_c00180{transform:matrix(0.194083,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194083,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194083,0.002135,-0.002750,0.249985,0,0);}
.m11_c00180{transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194693,0.002142,-0.002750,0.249985,0,0);}
.m17_c00180{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);}
.m93_c00180{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);}
.m9e_c00180{transform:matrix(0.195688,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195688,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195688,0.002153,-0.002750,0.249985,0,0);}
.m5b_c00180{transform:matrix(0.195778,0.002154,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195778,0.002154,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195778,0.002154,-0.002750,0.249985,0,0);}
.m3b_c00180{transform:matrix(0.195973,0.002156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195973,0.002156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195973,0.002156,-0.002750,0.249985,0,0);}
.ma2_c00180{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.mb0_c00180{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);}
.m19_c00180{transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196528,0.002162,-0.002750,0.249985,0,0);}
.md9_c00180{transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);}
.m78_c00180{transform:matrix(0.196823,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196823,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196823,0.002165,-0.002750,0.249985,0,0);}
.m1d_c00180{transform:matrix(0.197063,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197063,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197063,0.002168,-0.002750,0.249985,0,0);}
.m23_c00180{transform:matrix(0.197198,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197198,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197198,0.002169,-0.002750,0.249985,0,0);}
.m44_c00180{transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197263,0.002170,-0.002750,0.249985,0,0);}
.mc2_c00180{transform:matrix(0.197383,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197383,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197383,0.002171,-0.002750,0.249985,0,0);}
.m5a_c00180{transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197688,0.002175,-0.002750,0.249985,0,0);}
.mdd_c00180{transform:matrix(0.197823,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197823,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197823,0.002176,-0.002750,0.249985,0,0);}
.m9f_c00180{transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);}
.m56_c00180{transform:matrix(0.199058,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199058,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199058,0.002190,-0.002750,0.249985,0,0);}
.m67_c00180{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);}
.m82_c00180{transform:matrix(0.199598,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199598,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199598,0.002196,-0.002750,0.249985,0,0);}
.m8f_c00180{transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);}
.m43_c00180{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);}
.mb8_c00180{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);}
.m75_c00180{transform:matrix(0.200293,0.002203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200293,0.002203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200293,0.002203,-0.002750,0.249985,0,0);}
.m64_c00180{transform:matrix(0.200668,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200668,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200668,0.002207,-0.002750,0.249985,0,0);}
.m2f_c00180{transform:matrix(0.200833,0.002209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200833,0.002209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200833,0.002209,-0.002750,0.249985,0,0);}
.m3f_c00180{transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);}
.ma4_c00180{transform:matrix(0.201738,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201738,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201738,0.002219,-0.002750,0.249985,0,0);}
.m15_c00180{transform:matrix(0.202093,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202093,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202093,0.002223,-0.002750,0.249985,0,0);}
.m70_c00180{transform:matrix(0.202943,0.002232,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202943,0.002232,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202943,0.002232,-0.002750,0.249985,0,0);}
.mbf_c00180{transform:matrix(0.203783,0.002242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203783,0.002242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203783,0.002242,-0.002750,0.249985,0,0);}
.m8a_c00180{transform:matrix(0.204023,0.002244,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204023,0.002244,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204023,0.002244,-0.002750,0.249985,0,0);}
.m81_c00180{transform:matrix(0.204083,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204083,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204083,0.002245,-0.002750,0.249985,0,0);}
.m8_c00180{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);}
.mad_c00180{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);}
.ma7_c00180{transform:matrix(0.205988,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205988,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205988,0.002266,-0.002750,0.249985,0,0);}
.m69_c00180{transform:matrix(0.206038,0.002266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206038,0.002266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206038,0.002266,-0.002750,0.249985,0,0);}
.m50_c00180{transform:matrix(0.206173,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206173,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206173,0.002268,-0.002750,0.249985,0,0);}
.m8c_c00180{transform:matrix(0.206223,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206223,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206223,0.002268,-0.002750,0.249985,0,0);}
.m36_c00180{transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);}
.m72_c00180{transform:matrix(0.206578,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206578,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206578,0.002272,-0.002750,0.249985,0,0);}
.m1f_c00180{transform:matrix(0.207302,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207302,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207302,0.002280,-0.002750,0.249985,0,0);}
.mc9_c00180{transform:matrix(0.207322,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207322,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207322,0.002281,-0.002750,0.249985,0,0);}
.mc6_c00180{transform:matrix(0.207817,0.002286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207817,0.002286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207817,0.002286,-0.002750,0.249985,0,0);}
.m89_c00180{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);}
.m85_c00180{transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);}
.m18_c00180{transform:matrix(0.210032,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210032,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210032,0.002310,-0.002750,0.249985,0,0);}
.m61_c00180{transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);}
.m30_c00180{transform:matrix(0.210587,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210587,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210587,0.002316,-0.002750,0.249985,0,0);}
.m6d_c00180{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);}
.m53_c00180{transform:matrix(0.211812,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211812,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211812,0.002330,-0.002750,0.249985,0,0);}
.m38_c00180{transform:matrix(0.213302,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213302,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213302,0.002346,-0.002750,0.249985,0,0);}
.m12_c00180{transform:matrix(0.214562,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214562,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214562,0.002360,-0.002750,0.249985,0,0);}
.m71_c00180{transform:matrix(0.215242,0.002368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215242,0.002368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215242,0.002368,-0.002750,0.249985,0,0);}
.m1c_c00180{transform:matrix(0.215447,0.002370,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215447,0.002370,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215447,0.002370,-0.002750,0.249985,0,0);}
.m2c_c00180{transform:matrix(0.216252,0.002379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216252,0.002379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216252,0.002379,-0.002750,0.249985,0,0);}
.md1_c00180{transform:matrix(0.216832,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216832,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216832,0.002385,-0.002750,0.249985,0,0);}
.m2b_c00180{transform:matrix(0.216932,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216932,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216932,0.002386,-0.002750,0.249985,0,0);}
.m45_c00180{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);}
.m7e_c00180{transform:matrix(0.217887,0.002397,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217887,0.002397,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217887,0.002397,-0.002750,0.249985,0,0);}
.mb_c00180{transform:matrix(0.218617,0.002405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218617,0.002405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218617,0.002405,-0.002750,0.249985,0,0);}
.md7_c00180{transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);}
.m86_c00180{transform:matrix(0.219882,0.002419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219882,0.002419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219882,0.002419,-0.002750,0.249985,0,0);}
.m1b_c00180{transform:matrix(0.220452,0.002425,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220452,0.002425,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220452,0.002425,-0.002750,0.249985,0,0);}
.m7f_c00180{transform:matrix(0.220912,0.002430,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220912,0.002430,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220912,0.002430,-0.002750,0.249985,0,0);}
.mab_c00180{transform:matrix(0.221057,0.002432,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221057,0.002432,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221057,0.002432,-0.002750,0.249985,0,0);}
.m9c_c00180{transform:matrix(0.222822,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222822,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222822,0.002451,-0.002750,0.249985,0,0);}
.m33_c00180{transform:matrix(0.223536,0.002459,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223536,0.002459,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223536,0.002459,-0.002750,0.249985,0,0);}
.m48_c00180{transform:matrix(0.223701,0.002461,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223701,0.002461,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223701,0.002461,-0.002750,0.249985,0,0);}
.m4b_c00180{transform:matrix(0.223961,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223961,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223961,0.002464,-0.002750,0.249985,0,0);}
.mdb_c00180{transform:matrix(0.224931,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224931,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224931,0.002474,-0.002750,0.249985,0,0);}
.m16_c00180{transform:matrix(0.225906,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225906,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225906,0.002485,-0.002750,0.249985,0,0);}
.m37_c00180{transform:matrix(0.226321,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226321,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226321,0.002490,-0.002750,0.249985,0,0);}
.m7_c00180{transform:matrix(0.227056,0.007039,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227056,0.007039,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227056,0.007039,-0.007746,0.249880,0,0);}
.m6a_c00180{transform:matrix(0.228276,0.002511,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228276,0.002511,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228276,0.002511,-0.002750,0.249985,0,0);}
.mc0_c00180{transform:matrix(0.232311,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232311,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232311,0.002555,-0.002750,0.249985,0,0);}
.mca_c00180{transform:matrix(0.232336,0.002556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232336,0.002556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232336,0.002556,-0.002750,0.249985,0,0);}
.m59_c00180{transform:matrix(0.233286,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233286,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233286,0.002566,-0.002750,0.249985,0,0);}
.mde_c00180{transform:matrix(0.234321,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234321,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234321,0.002578,-0.002750,0.249985,0,0);}
.m1e_c00180{transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);}
.m6c_c00180{transform:matrix(0.238611,0.002625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238611,0.002625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238611,0.002625,-0.002750,0.249985,0,0);}
.m77_c00180{transform:matrix(0.238991,0.002629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238991,0.002629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238991,0.002629,-0.002750,0.249985,0,0);}
.m58_c00180{transform:matrix(0.239790,0.002638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239790,0.002638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239790,0.002638,-0.002750,0.249985,0,0);}
.m35_c00180{transform:matrix(0.243150,0.002675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243150,0.002675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243150,0.002675,-0.002750,0.249985,0,0);}
.m0_c00180{transform:matrix(0.252039,0.003277,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252039,0.003277,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252039,0.003277,-0.003250,0.249979,0,0);}
.m63_c00180{transform:matrix(0.269639,0.002966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269639,0.002966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269639,0.002966,-0.002750,0.249985,0,0);}
.m6_c00180{transform:matrix(0.272579,0.008450,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272579,0.008450,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272579,0.008450,-0.007746,0.249880,0,0);}
.ma_c00180{transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);}
.me6_c00180{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);}
.mdf_c00180{transform:matrix(0.280308,0.005886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280308,0.005886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280308,0.005886,-0.005249,0.249945,0,0);}
.me1_c00180{transform:matrix(0.289476,0.006079,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289476,0.006079,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289476,0.006079,-0.005249,0.249945,0,0);}
.m90_c00180{transform:matrix(0.304127,0.003345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304127,0.003345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304127,0.003345,-0.002750,0.249985,0,0);}
.mbe_c00180{transform:matrix(0.308961,0.003399,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308961,0.003399,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308961,0.003399,-0.002750,0.249985,0,0);}
.m5_c00180{transform:matrix(0.314674,0.009755,-0.007746,0.249880,0,0);-ms-transform:matrix(0.314674,0.009755,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.314674,0.009755,-0.007746,0.249880,0,0);}
.m62_c00180{transform:matrix(0.316166,0.003478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316166,0.003478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316166,0.003478,-0.002750,0.249985,0,0);}
.me3_c00180{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.327670,0.003604,-0.002750,0.249985,0,0);-ms-transform:matrix(0.327670,0.003604,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.327670,0.003604,-0.002750,0.249985,0,0);}
.me7_c00180{transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329865,0.000000,0.000000,0.250000,0,0);}
.mcf_c00180{transform:matrix(0.336175,0.003698,-0.002750,0.249985,0,0);-ms-transform:matrix(0.336175,0.003698,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.336175,0.003698,-0.002750,0.249985,0,0);}
.m2a_c00180{transform:matrix(0.337230,0.003710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337230,0.003710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337230,0.003710,-0.002750,0.249985,0,0);}
.me4_c00180{transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);}
.me2_c00180{transform:matrix(0.387829,0.008144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.387829,0.008144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.387829,0.008144,-0.005249,0.249945,0,0);}
.m14_c00180{transform:matrix(0.421604,0.004638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.421604,0.004638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.421604,0.004638,-0.002750,0.249985,0,0);}
.m1_c00180{transform:matrix(0.428324,0.013278,-0.007746,0.249880,0,0);-ms-transform:matrix(0.428324,0.013278,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.428324,0.013278,-0.007746,0.249880,0,0);}
.me5_c00180{transform:matrix(0.444745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444745,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.445063,0.004896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.445063,0.004896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.445063,0.004896,-0.002750,0.249985,0,0);}
.m4_c00180{transform:matrix(0.445866,0.013822,-0.007746,0.249880,0,0);-ms-transform:matrix(0.445866,0.013822,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.445866,0.013822,-0.007746,0.249880,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;}
.fs3_c00180{font-size:32.550000px;}
.fs15_c00180{font-size:36.750000px;}
.fs14_c00180{font-size:63.000000px;}
.fs7_c00180{font-size:63.003811px;}
.fs13_c00180{font-size:64.064121px;}
.fsd_c00180{font-size:65.103938px;}
.fsb_c00180{font-size:68.254129px;}
.fsf_c00180{font-size:69.304193px;}
.fs4_c00180{font-size:70.350000px;}
.fse_c00180{font-size:70.354256px;}
.fsc_c00180{font-size:71.404320px;}
.fs6_c00180{font-size:72.454383px;}
.fs5_c00180{font-size:73.504447px;}
.fs10_c00180{font-size:74.554510px;}
.fs8_c00180{font-size:75.604574px;}
.fs11_c00180{font-size:78.754764px;}
.fsa_c00180{font-size:82.955018px;}
.fs2_c00180{font-size:85.090857px;}
.fs1_c00180{font-size:86.141361px;}
.fs9_c00180{font-size:93.455654px;}
.fs12_c00180{font-size:100.806098px;}
.fs16_c00180{font-size:124.950000px;}
.fs0_c00180{font-size:205.817389px;}
.y0_c00180{bottom:0.000000px;}
.ye5_c00180{bottom:97.980000px;}
.ye4_c00180{bottom:139.459187px;}
.ye3_c00180{bottom:140.461958px;}
.ye2_c00180{bottom:142.073308px;}
.ye1_c00180{bottom:142.566000px;}
.ye0_c00180{bottom:167.455678px;}
.ydf_c00180{bottom:168.638691px;}
.yde_c00180{bottom:169.165678px;}
.ydd_c00180{bottom:170.819587px;}
.ydc_c00180{bottom:171.808828px;}
.ydb_c00180{bottom:172.538476px;}
.yda_c00180{bottom:173.035084px;}
.yd9_c00180{bottom:190.584567px;}
.yd8_c00180{bottom:191.137645px;}
.yd7_c00180{bottom:191.469090px;}
.yd6_c00180{bottom:192.419370px;}
.yd5_c00180{bottom:192.882346px;}
.yd4_c00180{bottom:194.098215px;}
.yd3_c00180{bottom:194.642419px;}
.yd2_c00180{bottom:195.986340px;}
.yd1_c00180{bottom:212.027979px;}
.yd0_c00180{bottom:215.239854px;}
.ycf_c00180{bottom:217.041949px;}
.yce_c00180{bottom:235.481041px;}
.ycd_c00180{bottom:236.119861px;}
.ycc_c00180{bottom:237.427965px;}
.ycb_c00180{bottom:238.019842px;}
.yca_c00180{bottom:239.048221px;}
.yc9_c00180{bottom:239.745744px;}
.yc8_c00180{bottom:240.805462px;}
.yc7_c00180{bottom:258.161124px;}
.yc6_c00180{bottom:258.651126px;}
.yc5_c00180{bottom:259.467955px;}
.yc4_c00180{bottom:260.087085px;}
.yc3_c00180{bottom:260.509273px;}
.yc2_c00180{bottom:261.245670px;}
.yc1_c00180{bottom:262.413855px;}
.yc0_c00180{bottom:263.216530px;}
.ybf_c00180{bottom:282.997965px;}
.ybe_c00180{bottom:304.520634px;}
.ybd_c00180{bottom:304.948266px;}
.ybc_c00180{bottom:305.313874px;}
.ybb_c00180{bottom:305.909547px;}
.yba_c00180{bottom:306.297424px;}
.yb9_c00180{bottom:307.133866px;}
.yb8_c00180{bottom:307.619052px;}
.yb7_c00180{bottom:307.967670px;}
.yb6_c00180{bottom:308.445547px;}
.yb5_c00180{bottom:308.850514px;}
.yb4_c00180{bottom:327.826819px;}
.yb3_c00180{bottom:328.528857px;}
.yb2_c00180{bottom:329.204221px;}
.yb1_c00180{bottom:330.366234px;}
.yb0_c00180{bottom:330.720791px;}
.yaf_c00180{bottom:331.680180px;}
.yae_c00180{bottom:332.073549px;}
.yad_c00180{bottom:349.850485px;}
.yac_c00180{bottom:350.910643px;}
.yab_c00180{bottom:351.644080px;}
.yaa_c00180{bottom:352.231434px;}
.ya9_c00180{bottom:352.732443px;}
.ya8_c00180{bottom:353.601424px;}
.ya7_c00180{bottom:353.988282px;}
.ya6_c00180{bottom:354.698249px;}
.ya5_c00180{bottom:355.565118px;}
.ya4_c00180{bottom:373.131360px;}
.ya3_c00180{bottom:373.976490px;}
.ya2_c00180{bottom:374.417628px;}
.ya1_c00180{bottom:375.376869px;}
.ya0_c00180{bottom:376.495863px;}
.y9f_c00180{bottom:376.953084px;}
.y9e_c00180{bottom:377.791781px;}
.y9d_c00180{bottom:378.244631px;}
.y9c_c00180{bottom:396.444225px;}
.y9b_c00180{bottom:397.554667px;}
.y9a_c00180{bottom:398.323271px;}
.y99_c00180{bottom:398.735006px;}
.y98_c00180{bottom:399.289337px;}
.y97_c00180{bottom:399.679956px;}
.y96_c00180{bottom:400.163616px;}
.y95_c00180{bottom:400.927155px;}
.y94_c00180{bottom:419.215346px;}
.y93_c00180{bottom:420.001987px;}
.y92_c00180{bottom:420.430511px;}
.y91_c00180{bottom:420.783681px;}
.y90_c00180{bottom:421.702338px;}
.y8f_c00180{bottom:422.010393px;}
.y8e_c00180{bottom:422.978190px;}
.y8d_c00180{bottom:423.338570px;}
.y8c_c00180{bottom:441.455331px;}
.y8b_c00180{bottom:442.923357px;}
.y8a_c00180{bottom:443.996181px;}
.y89_c00180{bottom:444.352091px;}
.y88_c00180{bottom:445.389203px;}
.y87_c00180{bottom:446.559879px;}
.y86_c00180{bottom:465.543065px;}
.y85_c00180{bottom:465.956426px;}
.y84_c00180{bottom:467.084838px;}
.y83_c00180{bottom:468.342752px;}
.y82_c00180{bottom:469.274892px;}
.y81_c00180{bottom:469.779882px;}
.y80_c00180{bottom:488.692481px;}
.y7f_c00180{bottom:489.115640px;}
.y7e_c00180{bottom:489.849924px;}
.y7d_c00180{bottom:490.285784px;}
.y7c_c00180{bottom:490.857165px;}
.y7b_c00180{bottom:491.448539px;}
.y7a_c00180{bottom:491.773355px;}
.y79_c00180{bottom:492.109982px;}
.y78_c00180{bottom:492.732596px;}
.y77_c00180{bottom:511.576667px;}
.y76_c00180{bottom:511.941531px;}
.y75_c00180{bottom:512.381685px;}
.y74_c00180{bottom:512.970207px;}
.y73_c00180{bottom:513.566220px;}
.y72_c00180{bottom:514.014723px;}
.y71_c00180{bottom:514.333107px;}
.y70_c00180{bottom:533.367116px;}
.y6f_c00180{bottom:533.829054px;}
.y6e_c00180{bottom:534.454737px;}
.y6d_c00180{bottom:535.811883px;}
.y6c_c00180{bottom:536.662539px;}
.y6b_c00180{bottom:537.866943px;}
.y6a_c00180{bottom:538.365203px;}
.y69_c00180{bottom:557.406722px;}
.y68_c00180{bottom:558.555374px;}
.y67_c00180{bottom:558.987671px;}
.y66_c00180{bottom:559.587902px;}
.y65_c00180{bottom:560.974788px;}
.y64_c00180{bottom:561.856866px;}
.y63_c00180{bottom:577.000427px;}
.y62_c00180{bottom:577.820966px;}
.y61_c00180{bottom:578.206091px;}
.y60_c00180{bottom:579.260113px;}
.y5f_c00180{bottom:579.958683px;}
.y5e_c00180{bottom:580.464806px;}
.y5d_c00180{bottom:580.777557px;}
.y5c_c00180{bottom:581.529599px;}
.y5b_c00180{bottom:582.861522px;}
.y5a_c00180{bottom:583.323721px;}
.y59_c00180{bottom:583.998128px;}
.y58_c00180{bottom:599.040182px;}
.y57_c00180{bottom:599.987429px;}
.y56_c00180{bottom:601.436103px;}
.y55_c00180{bottom:602.206467px;}
.y54_c00180{bottom:602.763437px;}
.y53_c00180{bottom:603.649964px;}
.y52_c00180{bottom:604.622013px;}
.y51_c00180{bottom:605.270260px;}
.y50_c00180{bottom:606.241947px;}
.y4f_c00180{bottom:606.681763px;}
.y4e_c00180{bottom:623.507019px;}
.y4d_c00180{bottom:624.648837px;}
.y4c_c00180{bottom:625.617440px;}
.y4b_c00180{bottom:625.960225px;}
.y4a_c00180{bottom:626.939152px;}
.y49_c00180{bottom:627.328417px;}
.y48_c00180{bottom:628.373352px;}
.y47_c00180{bottom:628.820757px;}
.y46_c00180{bottom:646.297573px;}
.y45_c00180{bottom:646.729524px;}
.y44_c00180{bottom:648.007809px;}
.y43_c00180{bottom:648.565170px;}
.y42_c00180{bottom:649.101500px;}
.y41_c00180{bottom:649.639891px;}
.y40_c00180{bottom:650.833904px;}
.y3f_c00180{bottom:651.231742px;}
.y3e_c00180{bottom:668.937708px;}
.y3d_c00180{bottom:669.628793px;}
.y3c_c00180{bottom:670.323736px;}
.y3b_c00180{bottom:670.816916px;}
.y3a_c00180{bottom:671.427175px;}
.y39_c00180{bottom:672.411736px;}
.y38_c00180{bottom:673.322697px;}
.y37_c00180{bottom:674.182953px;}
.ye6_c00180{bottom:674.730000px;}
.y36_c00180{bottom:691.736445px;}
.y35_c00180{bottom:692.556932px;}
.y34_c00180{bottom:693.014876px;}
.y33_c00180{bottom:693.325147px;}
.y32_c00180{bottom:694.040501px;}
.y31_c00180{bottom:694.895196px;}
.y30_c00180{bottom:695.480772px;}
.y2f_c00180{bottom:695.986978px;}
.y2e_c00180{bottom:696.326725px;}
.y2d_c00180{bottom:696.704475px;}
.ye7_c00180{bottom:696.870000px;}
.y2c_c00180{bottom:697.134709px;}
.y2b_c00180{bottom:722.681337px;}
.y2a_c00180{bottom:724.402561px;}
.y29_c00180{bottom:746.561856px;}
.y28_c00180{bottom:747.317767px;}
.y27_c00180{bottom:747.764166px;}
.y26_c00180{bottom:748.779036px;}
.y25_c00180{bottom:749.233566px;}
.y24_c00180{bottom:750.491511px;}
.y23_c00180{bottom:750.874885px;}
.y22_c00180{bottom:751.996555px;}
.y21_c00180{bottom:752.758307px;}
.y20_c00180{bottom:769.408662px;}
.y1f_c00180{bottom:770.003152px;}
.y1e_c00180{bottom:770.448084px;}
.y1d_c00180{bottom:771.163531px;}
.y1c_c00180{bottom:771.734830px;}
.y1b_c00180{bottom:772.437297px;}
.y1a_c00180{bottom:773.410905px;}
.y19_c00180{bottom:774.096711px;}
.y18_c00180{bottom:774.866344px;}
.y17_c00180{bottom:775.709610px;}
.y16_c00180{bottom:792.819041px;}
.y15_c00180{bottom:795.960924px;}
.y14_c00180{bottom:818.032514px;}
.y13_c00180{bottom:818.227840px;}
.y12_c00180{bottom:818.626415px;}
.y11_c00180{bottom:819.014940px;}
.y10_c00180{bottom:819.698914px;}
.yf_c00180{bottom:820.096647px;}
.ye_c00180{bottom:820.547741px;}
.yd_c00180{bottom:820.814925px;}
.yc_c00180{bottom:821.071500px;}
.y8_c00180{bottom:862.698880px;}
.y7_c00180{bottom:863.845416px;}
.y6_c00180{bottom:865.109856px;}
.y5_c00180{bottom:866.917481px;}
.y4_c00180{bottom:867.224833px;}
.yb_c00180{bottom:868.590000px;}
.ya_c00180{bottom:885.600000px;}
.y9_c00180{bottom:890.730000px;}
.y3_c00180{bottom:899.512207px;}
.y2_c00180{bottom:909.363000px;}
.y1_c00180{bottom:910.444500px;}
.h5_c00180{height:32.550000px;}
.h17_c00180{height:36.750000px;}
.h16_c00180{height:63.000000px;}
.h9_c00180{height:63.003811px;}
.h15_c00180{height:64.064121px;}
.hf_c00180{height:65.103938px;}
.hd_c00180{height:68.254129px;}
.h11_c00180{height:69.304193px;}
.h6_c00180{height:70.350000px;}
.h10_c00180{height:70.354256px;}
.he_c00180{height:71.404320px;}
.h8_c00180{height:72.454383px;}
.h7_c00180{height:73.504447px;}
.h12_c00180{height:74.554510px;}
.ha_c00180{height:75.604574px;}
.h13_c00180{height:78.754764px;}
.hc_c00180{height:82.955018px;}
.h4_c00180{height:85.090857px;}
.h3_c00180{height:86.141361px;}
.hb_c00180{height:93.455654px;}
.h14_c00180{height:100.806098px;}
.h18_c00180{height:124.950000px;}
.h2_c00180{height:205.817389px;}
.h1_c00180{height:1005.000000px;}
.h0_c00180{height:1005.150000px;}
.w0_c00180{width:735.750000px;}
.x0_c00180{left:0.000000px;}
.x86_c00180{left:48.060000px;}
.x87_c00180{left:50.760000px;}
.x1_c00180{left:52.011000px;}
.x8_c00180{left:62.370000px;}
.x88_c00180{left:64.800000px;}
.x9_c00180{left:69.120000px;}
.x84_c00180{left:112.296000px;}
.x4c_c00180{left:125.615013px;}
.x72_c00180{left:131.819531px;}
.x5d_c00180{left:133.164813px;}
.x65_c00180{left:134.547081px;}
.x54_c00180{left:135.662531px;}
.xa_c00180{left:137.773500px;}
.x1f_c00180{left:139.630871px;}
.x15_c00180{left:141.265002px;}
.x3d_c00180{left:156.235895px;}
.x6e_c00180{left:158.013296px;}
.x61_c00180{left:159.107585px;}
.xb_c00180{left:161.098500px;}
.x39_c00180{left:163.125144px;}
.x27_c00180{left:164.683884px;}
.x51_c00180{left:168.349326px;}
.x3_c00180{left:172.373519px;}
.x44_c00180{left:176.006717px;}
.x4d_c00180{left:180.709977px;}
.xc_c00180{left:185.388000px;}
.x28_c00180{left:186.886916px;}
.x66_c00180{left:189.094283px;}
.x73_c00180{left:190.666440px;}
.x4_c00180{left:192.846655px;}
.x16_c00180{left:193.922598px;}
.x3e_c00180{left:196.701603px;}
.x45_c00180{left:201.659237px;}
.x55_c00180{left:205.379531px;}
.x29_c00180{left:206.862596px;}
.x5e_c00180{left:211.222881px;}
.x85_c00180{left:212.488500px;}
.x74_c00180{left:213.903417px;}
.x6a_c00180{left:215.254163px;}
.x59_c00180{left:217.154190px;}
.x3a_c00180{left:221.160173px;}
.x3f_c00180{left:223.720242px;}
.xd_c00180{left:226.396500px;}
.x80_c00180{left:230.323826px;}
.x7a_c00180{left:235.227309px;}
.x2a_c00180{left:236.652132px;}
.x34_c00180{left:238.273640px;}
.x6f_c00180{left:240.094775px;}
.x17_c00180{left:242.068458px;}
.x52_c00180{left:243.609185px;}
.x75_c00180{left:246.282498px;}
.x20_c00180{left:250.434561px;}
.x67_c00180{left:251.526720px;}
.x5a_c00180{left:254.140661px;}
.x56_c00180{left:259.562531px;}
.xe_c00180{left:262.554000px;}
.x40_c00180{left:264.218951px;}
.x4e_c00180{left:267.376709px;}
.x2b_c00180{left:271.065855px;}
.x21_c00180{left:273.012576px;}
.x78_c00180{left:274.056896px;}
.x46_c00180{left:275.692044px;}
.x13_c00180{left:278.430335px;}
.x5f_c00180{left:280.411845px;}
.x18_c00180{left:284.912098px;}
.x5b_c00180{left:289.855197px;}
.x68_c00180{left:291.146417px;}
.x81_c00180{left:294.351699px;}
.x7b_c00180{left:295.712316px;}
.x3b_c00180{left:297.126315px;}
.x41_c00180{left:301.170671px;}
.x60_c00180{left:304.175306px;}
.x35_c00180{left:305.426444px;}
.x31_c00180{left:312.178212px;}
.x5_c00180{left:313.345862px;}
.x3c_c00180{left:316.150847px;}
.x47_c00180{left:317.465327px;}
.x6b_c00180{left:318.644766px;}
.x2c_c00180{left:321.353039px;}
.xf_c00180{left:324.733500px;}
.x76_c00180{left:327.853401px;}
.x62_c00180{left:328.934610px;}
.x7c_c00180{left:330.562523px;}
.x4f_c00180{left:331.921161px;}
.x48_c00180{left:334.850490px;}
.x36_c00180{left:340.275530px;}
.x19_c00180{left:345.736749px;}
.x22_c00180{left:347.002692px;}
.x32_c00180{left:350.336117px;}
.x57_c00180{left:353.078531px;}
.x70_c00180{left:354.895455px;}
.x42_c00180{left:356.511267px;}
.x63_c00180{left:357.526356px;}
.x10_c00180{left:360.054000px;}
.x2d_c00180{left:363.473267px;}
.x77_c00180{left:367.549152px;}
.x82_c00180{left:368.686649px;}
.x2_c00180{left:370.309500px;}
.x23_c00180{left:373.730927px;}
.x5c_c00180{left:375.175929px;}
.x2e_c00180{left:381.724062px;}
.x58_c00180{left:386.248031px;}
.x1a_c00180{left:389.685840px;}
.x6c_c00180{left:392.074623px;}
.x11_c00180{left:396.288000px;}
.x6_c00180{left:397.627619px;}
.x71_c00180{left:398.805546px;}
.x49_c00180{left:401.817342px;}
.x50_c00180{left:403.749218px;}
.x7d_c00180{left:407.475941px;}
.x2f_c00180{left:408.626280px;}
.x64_c00180{left:409.946046px;}
.x12_c00180{left:414.045000px;}
.x83_c00180{left:415.275557px;}
.x43_c00180{left:416.882138px;}
.x37_c00180{left:420.206141px;}
.x1b_c00180{left:425.392877px;}
.x24_c00180{left:433.396983px;}
.x79_c00180{left:436.657785px;}
.x7e_c00180{left:445.093466px;}
.x38_c00180{left:447.200156px;}
.x53_c00180{left:449.636366px;}
.x6d_c00180{left:450.948086px;}
.x69_c00180{left:454.666505px;}
.x30_c00180{left:456.894596px;}
.x25_c00180{left:459.658751px;}
.x33_c00180{left:467.712149px;}
.x7f_c00180{left:469.025909px;}
.x1c_c00180{left:470.112918px;}
.x7_c00180{left:474.086016px;}
.x4a_c00180{left:481.779188px;}
.x1d_c00180{left:497.877883px;}
.x14_c00180{left:502.821426px;}
.x26_c00180{left:504.102314px;}
.x4b_c00180{left:527.324673px;}
.x1e_c00180{left:535.011338px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:0.000000pt;}
.fs3_c00180{font-size:28.933333pt;}
.fs15_c00180{font-size:32.666667pt;}
.fs14_c00180{font-size:56.000000pt;}
.fs7_c00180{font-size:56.003388pt;}
.fs13_c00180{font-size:56.945886pt;}
.fsd_c00180{font-size:57.870167pt;}
.fsb_c00180{font-size:60.670337pt;}
.fsf_c00180{font-size:61.603727pt;}
.fs4_c00180{font-size:62.533333pt;}
.fse_c00180{font-size:62.537116pt;}
.fsc_c00180{font-size:63.470506pt;}
.fs6_c00180{font-size:64.403896pt;}
.fs5_c00180{font-size:65.337286pt;}
.fs10_c00180{font-size:66.270676pt;}
.fs8_c00180{font-size:67.204065pt;}
.fs11_c00180{font-size:70.004235pt;}
.fsa_c00180{font-size:73.737794pt;}
.fs2_c00180{font-size:75.636317pt;}
.fs1_c00180{font-size:76.570099pt;}
.fs9_c00180{font-size:83.071692pt;}
.fs12_c00180{font-size:89.605421pt;}
.fs16_c00180{font-size:111.066667pt;}
.fs0_c00180{font-size:182.948791pt;}
.y0_c00180{bottom:0.000000pt;}
.ye5_c00180{bottom:87.093333pt;}
.ye4_c00180{bottom:123.963721pt;}
.ye3_c00180{bottom:124.855073pt;}
.ye2_c00180{bottom:126.287385pt;}
.ye1_c00180{bottom:126.725333pt;}
.ye0_c00180{bottom:148.849492pt;}
.ydf_c00180{bottom:149.901059pt;}
.yde_c00180{bottom:150.369492pt;}
.ydd_c00180{bottom:151.839633pt;}
.ydc_c00180{bottom:152.718959pt;}
.ydb_c00180{bottom:153.367535pt;}
.yda_c00180{bottom:153.808964pt;}
.yd9_c00180{bottom:169.408504pt;}
.yd8_c00180{bottom:169.900129pt;}
.yd7_c00180{bottom:170.194747pt;}
.yd6_c00180{bottom:171.039440pt;}
.yd5_c00180{bottom:171.450975pt;}
.yd4_c00180{bottom:172.531747pt;}
.yd3_c00180{bottom:173.015484pt;}
.yd2_c00180{bottom:174.210080pt;}
.yd1_c00180{bottom:188.469315pt;}
.yd0_c00180{bottom:191.324315pt;}
.ycf_c00180{bottom:192.926177pt;}
.yce_c00180{bottom:209.316481pt;}
.ycd_c00180{bottom:209.884321pt;}
.ycc_c00180{bottom:211.047080pt;}
.ycb_c00180{bottom:211.573193pt;}
.yca_c00180{bottom:212.487308pt;}
.yc9_c00180{bottom:213.107328pt;}
.yc8_c00180{bottom:214.049300pt;}
.yc7_c00180{bottom:229.476555pt;}
.yc6_c00180{bottom:229.912112pt;}
.yc5_c00180{bottom:230.638183pt;}
.yc4_c00180{bottom:231.188520pt;}
.yc3_c00180{bottom:231.563799pt;}
.yc2_c00180{bottom:232.218373pt;}
.yc1_c00180{bottom:233.256760pt;}
.yc0_c00180{bottom:233.970249pt;}
.ybf_c00180{bottom:251.553747pt;}
.ybe_c00180{bottom:270.685008pt;}
.ybd_c00180{bottom:271.065125pt;}
.ybc_c00180{bottom:271.390111pt;}
.ybb_c00180{bottom:271.919597pt;}
.yba_c00180{bottom:272.264377pt;}
.yb9_c00180{bottom:273.007881pt;}
.yb8_c00180{bottom:273.439157pt;}
.yb7_c00180{bottom:273.749040pt;}
.yb6_c00180{bottom:274.173820pt;}
.yb5_c00180{bottom:274.533791pt;}
.yb4_c00180{bottom:291.401617pt;}
.yb3_c00180{bottom:292.025651pt;}
.yb2_c00180{bottom:292.625975pt;}
.yb1_c00180{bottom:293.658875pt;}
.yb0_c00180{bottom:293.974036pt;}
.yaf_c00180{bottom:294.826827pt;}
.yae_c00180{bottom:295.176488pt;}
.yad_c00180{bottom:310.978209pt;}
.yac_c00180{bottom:311.920572pt;}
.yab_c00180{bottom:312.572516pt;}
.yaa_c00180{bottom:313.094608pt;}
.ya9_c00180{bottom:313.539949pt;}
.ya8_c00180{bottom:314.312377pt;}
.ya7_c00180{bottom:314.656251pt;}
.ya6_c00180{bottom:315.287332pt;}
.ya5_c00180{bottom:316.057883pt;}
.ya4_c00180{bottom:331.672320pt;}
.ya3_c00180{bottom:332.423547pt;}
.ya2_c00180{bottom:332.815669pt;}
.ya1_c00180{bottom:333.668328pt;}
.ya0_c00180{bottom:334.662989pt;}
.y9f_c00180{bottom:335.069408pt;}
.y9e_c00180{bottom:335.814916pt;}
.y9d_c00180{bottom:336.217449pt;}
.y9c_c00180{bottom:352.394867pt;}
.y9b_c00180{bottom:353.381927pt;}
.y9a_c00180{bottom:354.065129pt;}
.y99_c00180{bottom:354.431116pt;}
.y98_c00180{bottom:354.923855pt;}
.y97_c00180{bottom:355.271072pt;}
.y96_c00180{bottom:355.700992pt;}
.y95_c00180{bottom:356.379693pt;}
.y94_c00180{bottom:372.635863pt;}
.y93_c00180{bottom:373.335100pt;}
.y92_c00180{bottom:373.716009pt;}
.y91_c00180{bottom:374.029939pt;}
.y90_c00180{bottom:374.846523pt;}
.y8f_c00180{bottom:375.120349pt;}
.y8e_c00180{bottom:375.980613pt;}
.y8d_c00180{bottom:376.300951pt;}
.y8c_c00180{bottom:392.404739pt;}
.y8b_c00180{bottom:393.709651pt;}
.y8a_c00180{bottom:394.663272pt;}
.y89_c00180{bottom:394.979636pt;}
.y88_c00180{bottom:395.901513pt;}
.y87_c00180{bottom:396.942115pt;}
.y86_c00180{bottom:413.816057pt;}
.y85_c00180{bottom:414.183489pt;}
.y84_c00180{bottom:415.186523pt;}
.y83_c00180{bottom:416.304668pt;}
.y82_c00180{bottom:417.133237pt;}
.y81_c00180{bottom:417.582117pt;}
.y80_c00180{bottom:434.393316pt;}
.y7f_c00180{bottom:434.769457pt;}
.y7e_c00180{bottom:435.422155pt;}
.y7d_c00180{bottom:435.809585pt;}
.y7c_c00180{bottom:436.317480pt;}
.y7b_c00180{bottom:436.843145pt;}
.y7a_c00180{bottom:437.131871pt;}
.y79_c00180{bottom:437.431095pt;}
.y78_c00180{bottom:437.984529pt;}
.y77_c00180{bottom:454.734815pt;}
.y76_c00180{bottom:455.059139pt;}
.y75_c00180{bottom:455.450387pt;}
.y74_c00180{bottom:455.973517pt;}
.y73_c00180{bottom:456.503307pt;}
.y72_c00180{bottom:456.901976pt;}
.y71_c00180{bottom:457.184984pt;}
.y70_c00180{bottom:474.104103pt;}
.y6f_c00180{bottom:474.514715pt;}
.y6e_c00180{bottom:475.070877pt;}
.y6d_c00180{bottom:476.277229pt;}
.y6c_c00180{bottom:477.033368pt;}
.y6b_c00180{bottom:478.103949pt;}
.y6a_c00180{bottom:478.546847pt;}
.y69_c00180{bottom:495.472641pt;}
.y68_c00180{bottom:496.493665pt;}
.y67_c00180{bottom:496.877929pt;}
.y66_c00180{bottom:497.411468pt;}
.y65_c00180{bottom:498.644256pt;}
.y64_c00180{bottom:499.428325pt;}
.y63_c00180{bottom:512.889268pt;}
.y62_c00180{bottom:513.618636pt;}
.y61_c00180{bottom:513.960969pt;}
.y60_c00180{bottom:514.897879pt;}
.y5f_c00180{bottom:515.518829pt;}
.y5e_c00180{bottom:515.968716pt;}
.y5d_c00180{bottom:516.246717pt;}
.y5c_c00180{bottom:516.915199pt;}
.y5b_c00180{bottom:518.099131pt;}
.y5a_c00180{bottom:518.509975pt;}
.y59_c00180{bottom:519.109447pt;}
.y58_c00180{bottom:532.480161pt;}
.y57_c00180{bottom:533.322159pt;}
.y56_c00180{bottom:534.609869pt;}
.y55_c00180{bottom:535.294637pt;}
.y54_c00180{bottom:535.789721pt;}
.y53_c00180{bottom:536.577745pt;}
.y52_c00180{bottom:537.441789pt;}
.y51_c00180{bottom:538.018009pt;}
.y50_c00180{bottom:538.881731pt;}
.y4f_c00180{bottom:539.272679pt;}
.y4e_c00180{bottom:554.228461pt;}
.y4d_c00180{bottom:555.243411pt;}
.y4c_c00180{bottom:556.104391pt;}
.y4b_c00180{bottom:556.409089pt;}
.y4a_c00180{bottom:557.279247pt;}
.y49_c00180{bottom:557.625260pt;}
.y48_c00180{bottom:558.554091pt;}
.y47_c00180{bottom:558.951784pt;}
.y46_c00180{bottom:574.486732pt;}
.y45_c00180{bottom:574.870688pt;}
.y44_c00180{bottom:576.006941pt;}
.y43_c00180{bottom:576.502373pt;}
.y42_c00180{bottom:576.979111pt;}
.y41_c00180{bottom:577.457681pt;}
.y40_c00180{bottom:578.519025pt;}
.y3f_c00180{bottom:578.872660pt;}
.y3e_c00180{bottom:594.611296pt;}
.y3d_c00180{bottom:595.225593pt;}
.y3c_c00180{bottom:595.843321pt;}
.y3b_c00180{bottom:596.281703pt;}
.y3a_c00180{bottom:596.824156pt;}
.y39_c00180{bottom:597.699321pt;}
.y38_c00180{bottom:598.509064pt;}
.y37_c00180{bottom:599.273736pt;}
.ye6_c00180{bottom:599.760000pt;}
.y36_c00180{bottom:614.876840pt;}
.y35_c00180{bottom:615.606161pt;}
.y34_c00180{bottom:616.013223pt;}
.y33_c00180{bottom:616.289020pt;}
.y32_c00180{bottom:616.924889pt;}
.y31_c00180{bottom:617.684619pt;}
.y30_c00180{bottom:618.205131pt;}
.y2f_c00180{bottom:618.655092pt;}
.y2e_c00180{bottom:618.957089pt;}
.y2d_c00180{bottom:619.292867pt;}
.ye7_c00180{bottom:619.440000pt;}
.y2c_c00180{bottom:619.675297pt;}
.y2b_c00180{bottom:642.383411pt;}
.y2a_c00180{bottom:643.913388pt;}
.y29_c00180{bottom:663.610539pt;}
.y28_c00180{bottom:664.282460pt;}
.y27_c00180{bottom:664.679259pt;}
.y26_c00180{bottom:665.581365pt;}
.y25_c00180{bottom:665.985392pt;}
.y24_c00180{bottom:667.103565pt;}
.y23_c00180{bottom:667.444343pt;}
.y22_c00180{bottom:668.441383pt;}
.y21_c00180{bottom:669.118495pt;}
.y20_c00180{bottom:683.918811pt;}
.y1f_c00180{bottom:684.447247pt;}
.y1e_c00180{bottom:684.842741pt;}
.y1d_c00180{bottom:685.478695pt;}
.y1c_c00180{bottom:685.986516pt;}
.y1b_c00180{bottom:686.610931pt;}
.y1a_c00180{bottom:687.476360pt;}
.y19_c00180{bottom:688.085965pt;}
.y18_c00180{bottom:688.770084pt;}
.y17_c00180{bottom:689.519653pt;}
.y16_c00180{bottom:704.728036pt;}
.y15_c00180{bottom:707.520821pt;}
.y14_c00180{bottom:727.140012pt;}
.y13_c00180{bottom:727.313636pt;}
.y12_c00180{bottom:727.667924pt;}
.y11_c00180{bottom:728.013280pt;}
.y10_c00180{bottom:728.621257pt;}
.yf_c00180{bottom:728.974797pt;}
.ye_c00180{bottom:729.375769pt;}
.yd_c00180{bottom:729.613267pt;}
.yc_c00180{bottom:729.841333pt;}
.y8_c00180{bottom:766.843449pt;}
.y7_c00180{bottom:767.862592pt;}
.y6_c00180{bottom:768.986539pt;}
.y5_c00180{bottom:770.593316pt;}
.y4_c00180{bottom:770.866519pt;}
.yb_c00180{bottom:772.080000pt;}
.ya_c00180{bottom:787.200000pt;}
.y9_c00180{bottom:791.760000pt;}
.y3_c00180{bottom:799.566407pt;}
.y2_c00180{bottom:808.322667pt;}
.y1_c00180{bottom:809.284000pt;}
.h5_c00180{height:28.933333pt;}
.h17_c00180{height:32.666667pt;}
.h16_c00180{height:56.000000pt;}
.h9_c00180{height:56.003388pt;}
.h15_c00180{height:56.945886pt;}
.hf_c00180{height:57.870167pt;}
.hd_c00180{height:60.670337pt;}
.h11_c00180{height:61.603727pt;}
.h6_c00180{height:62.533333pt;}
.h10_c00180{height:62.537116pt;}
.he_c00180{height:63.470506pt;}
.h8_c00180{height:64.403896pt;}
.h7_c00180{height:65.337286pt;}
.h12_c00180{height:66.270676pt;}
.ha_c00180{height:67.204065pt;}
.h13_c00180{height:70.004235pt;}
.hc_c00180{height:73.737794pt;}
.h4_c00180{height:75.636317pt;}
.h3_c00180{height:76.570099pt;}
.hb_c00180{height:83.071692pt;}
.h14_c00180{height:89.605421pt;}
.h18_c00180{height:111.066667pt;}
.h2_c00180{height:182.948791pt;}
.h1_c00180{height:893.333333pt;}
.h0_c00180{height:893.466667pt;}
.w0_c00180{width:654.000000pt;}
.x0_c00180{left:0.000000pt;}
.x86_c00180{left:42.720000pt;}
.x87_c00180{left:45.120000pt;}
.x1_c00180{left:46.232000pt;}
.x8_c00180{left:55.440000pt;}
.x88_c00180{left:57.600000pt;}
.x9_c00180{left:61.440000pt;}
.x84_c00180{left:99.818667pt;}
.x4c_c00180{left:111.657789pt;}
.x72_c00180{left:117.172916pt;}
.x5d_c00180{left:118.368723pt;}
.x65_c00180{left:119.597405pt;}
.x54_c00180{left:120.588916pt;}
.xa_c00180{left:122.465333pt;}
.x1f_c00180{left:124.116329pt;}
.x15_c00180{left:125.568891pt;}
.x3d_c00180{left:138.876351pt;}
.x6e_c00180{left:140.456263pt;}
.x61_c00180{left:141.428964pt;}
.xb_c00180{left:143.198667pt;}
.x39_c00180{left:145.000128pt;}
.x27_c00180{left:146.385675pt;}
.x51_c00180{left:149.643845pt;}
.x3_c00180{left:153.220905pt;}
.x44_c00180{left:156.450415pt;}
.x4d_c00180{left:160.631091pt;}
.xc_c00180{left:164.789333pt;}
.x28_c00180{left:166.121703pt;}
.x66_c00180{left:168.083807pt;}
.x73_c00180{left:169.481280pt;}
.x4_c00180{left:171.419249pt;}
.x16_c00180{left:172.375643pt;}
.x3e_c00180{left:174.845869pt;}
.x45_c00180{left:179.252655pt;}
.x55_c00180{left:182.559583pt;}
.x29_c00180{left:183.877863pt;}
.x5e_c00180{left:187.753672pt;}
.x85_c00180{left:188.878667pt;}
.x74_c00180{left:190.136371pt;}
.x6a_c00180{left:191.337033pt;}
.x59_c00180{left:193.025947pt;}
.x3a_c00180{left:196.586820pt;}
.x3f_c00180{left:198.862437pt;}
.xd_c00180{left:201.241333pt;}
.x80_c00180{left:204.732289pt;}
.x7a_c00180{left:209.090941pt;}
.x2a_c00180{left:210.357451pt;}
.x34_c00180{left:211.798791pt;}
.x6f_c00180{left:213.417577pt;}
.x17_c00180{left:215.171963pt;}
.x52_c00180{left:216.541497pt;}
.x75_c00180{left:218.917776pt;}
.x20_c00180{left:222.608499pt;}
.x67_c00180{left:223.579307pt;}
.x5a_c00180{left:225.902809pt;}
.x56_c00180{left:230.722249pt;}
.xe_c00180{left:233.381333pt;}
.x40_c00180{left:234.861289pt;}
.x4e_c00180{left:237.668185pt;}
.x2b_c00180{left:240.947427pt;}
.x21_c00180{left:242.677845pt;}
.x78_c00180{left:243.606129pt;}
.x46_c00180{left:245.059595pt;}
.x13_c00180{left:247.493631pt;}
.x5f_c00180{left:249.254973pt;}
.x18_c00180{left:253.255199pt;}
.x5b_c00180{left:257.649064pt;}
.x68_c00180{left:258.796815pt;}
.x81_c00180{left:261.645955pt;}
.x7b_c00180{left:262.855392pt;}
.x3b_c00180{left:264.112280pt;}
.x41_c00180{left:267.707263pt;}
.x60_c00180{left:270.378049pt;}
.x35_c00180{left:271.490172pt;}
.x31_c00180{left:277.491744pt;}
.x5_c00180{left:278.529655pt;}
.x3c_c00180{left:281.022975pt;}
.x47_c00180{left:282.191401pt;}
.x6b_c00180{left:283.239792pt;}
.x2c_c00180{left:285.647145pt;}
.xf_c00180{left:288.652000pt;}
.x76_c00180{left:291.425245pt;}
.x62_c00180{left:292.386320pt;}
.x7c_c00180{left:293.833353pt;}
.x4f_c00180{left:295.041032pt;}
.x48_c00180{left:297.644880pt;}
.x36_c00180{left:302.467137pt;}
.x19_c00180{left:307.321555pt;}
.x22_c00180{left:308.446837pt;}
.x32_c00180{left:311.409881pt;}
.x57_c00180{left:313.847583pt;}
.x70_c00180{left:315.462627pt;}
.x42_c00180{left:316.898904pt;}
.x63_c00180{left:317.801205pt;}
.x10_c00180{left:320.048000pt;}
.x2d_c00180{left:323.087348pt;}
.x77_c00180{left:326.710357pt;}
.x82_c00180{left:327.721465pt;}
.x2_c00180{left:329.164000pt;}
.x23_c00180{left:332.205268pt;}
.x5c_c00180{left:333.489715pt;}
.x2e_c00180{left:339.310277pt;}
.x58_c00180{left:343.331583pt;}
.x1a_c00180{left:346.387413pt;}
.x6c_c00180{left:348.510776pt;}
.x11_c00180{left:352.256000pt;}
.x6_c00180{left:353.446772pt;}
.x71_c00180{left:354.493819pt;}
.x49_c00180{left:357.170971pt;}
.x50_c00180{left:358.888193pt;}
.x7d_c00180{left:362.200836pt;}
.x2f_c00180{left:363.223360pt;}
.x64_c00180{left:364.396485pt;}
.x12_c00180{left:368.040000pt;}
.x83_c00180{left:369.133828pt;}
.x43_c00180{left:370.561900pt;}
.x37_c00180{left:373.516569pt;}
.x1b_c00180{left:378.127001pt;}
.x24_c00180{left:385.241763pt;}
.x79_c00180{left:388.140253pt;}
.x7e_c00180{left:395.638636pt;}
.x38_c00180{left:397.511249pt;}
.x53_c00180{left:399.676769pt;}
.x6d_c00180{left:400.842743pt;}
.x69_c00180{left:404.148004pt;}
.x30_c00180{left:406.128529pt;}
.x25_c00180{left:408.585556pt;}
.x33_c00180{left:415.744132pt;}
.x7f_c00180{left:416.911919pt;}
.x1c_c00180{left:417.878149pt;}
.x7_c00180{left:421.409792pt;}
.x4a_c00180{left:428.248167pt;}
.x1d_c00180{left:442.558119pt;}
.x14_c00180{left:446.952379pt;}
.x26_c00180{left:448.090945pt;}
.x4b_c00180{left:468.733043pt;}
.x1e_c00180{left:475.565633pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m4_c00181{transform:matrix(0.002024,-0.000055,0.006748,0.249909,0,0);-ms-transform:matrix(0.002024,-0.000055,0.006748,0.249909,0,0);-webkit-transform:matrix(0.002024,-0.000055,0.006748,0.249909,0,0);}
.m5_c00181{transform:matrix(0.008745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008745,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.010694,-0.000171,0.003999,0.249968,0,0);-ms-transform:matrix(0.010694,-0.000171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.010694,-0.000171,0.003999,0.249968,0,0);}
.m2_c00181{transform:matrix(0.114778,-0.003099,0.006748,0.249909,0,0);-ms-transform:matrix(0.114778,-0.003099,0.006748,0.249909,0,0);-webkit-transform:matrix(0.114778,-0.003099,0.006748,0.249909,0,0);}
.m1d_c00181{transform:matrix(0.129572,-0.001814,0.003500,0.249976,0,0);-ms-transform:matrix(0.129572,-0.001814,0.003500,0.249976,0,0);-webkit-transform:matrix(0.129572,-0.001814,0.003500,0.249976,0,0);}
.m3_c00181{transform:matrix(0.141833,-0.003829,0.006748,0.249909,0,0);-ms-transform:matrix(0.141833,-0.003829,0.006748,0.249909,0,0);-webkit-transform:matrix(0.141833,-0.003829,0.006748,0.249909,0,0);}
.m54_c00181{transform:matrix(0.143616,-0.001580,0.002750,0.249985,0,0);-ms-transform:matrix(0.143616,-0.001580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143616,-0.001580,0.002750,0.249985,0,0);}
.m60_c00181{transform:matrix(0.145938,-0.001459,0.002500,0.249988,0,0);-ms-transform:matrix(0.145938,-0.001459,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145938,-0.001459,0.002500,0.249988,0,0);}
.mc4_c00181{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);}
.ma_c00181{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);}
.m53_c00181{transform:matrix(0.148831,-0.001637,0.002750,0.249985,0,0);-ms-transform:matrix(0.148831,-0.001637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148831,-0.001637,0.002750,0.249985,0,0);}
.m11_c00181{transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);}
.mbb_c00181{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);}
.m80_c00181{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);}
.m14_c00181{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);}
.m21_c00181{transform:matrix(0.160024,-0.002240,0.003500,0.249976,0,0);-ms-transform:matrix(0.160024,-0.002240,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160024,-0.002240,0.003500,0.249976,0,0);}
.mb7_c00181{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);}
.m25_c00181{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);}
.ma4_c00181{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);}
.m8b_c00181{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);}
.m66_c00181{transform:matrix(0.168047,-0.001680,0.002500,0.249988,0,0);-ms-transform:matrix(0.168047,-0.001680,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168047,-0.001680,0.002500,0.249988,0,0);}
.m7e_c00181{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);}
.mb0_c00181{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);}
.ma7_c00181{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);}
.m16_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);}
.mc9_c00181{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);}
.m5a_c00181{transform:matrix(0.172086,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172086,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172086,-0.001721,0.002500,0.249988,0,0);}
.m91_c00181{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);}
.m78_c00181{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);}
.m10_c00181{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);}
.m22_c00181{transform:matrix(0.175718,-0.002460,0.003500,0.249976,0,0);-ms-transform:matrix(0.175718,-0.002460,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175718,-0.002460,0.003500,0.249976,0,0);}
.m6d_c00181{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);}
.m93_c00181{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);}
.mb9_c00181{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);}
.m13_c00181{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_c00181{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00181{transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);}
.m3e_c00181{transform:matrix(0.180647,-0.002529,0.003500,0.249976,0,0);-ms-transform:matrix(0.180647,-0.002529,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180647,-0.002529,0.003500,0.249976,0,0);}
.m68_c00181{transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);}
.m97_c00181{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);}
.ma0_c00181{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);}
.m89_c00181{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);}
.m69_c00181{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);}
.mac_c00181{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);}
.m9b_c00181{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);}
.me_c00181{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);}
.mc1_c00181{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);}
.m94_c00181{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);}
.m95_c00181{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);}
.m9a_c00181{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);}
.ma5_c00181{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);}
.m31_c00181{transform:matrix(0.187622,-0.002627,0.003500,0.249976,0,0);-ms-transform:matrix(0.187622,-0.002627,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187622,-0.002627,0.003500,0.249976,0,0);}
.m58_c00181{transform:matrix(0.188714,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188714,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188714,-0.002076,0.002750,0.249985,0,0);}
.m24_c00181{transform:matrix(0.188831,-0.002644,0.003500,0.249976,0,0);-ms-transform:matrix(0.188831,-0.002644,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188831,-0.002644,0.003500,0.249976,0,0);}
.m5b_c00181{transform:matrix(0.189316,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189316,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189316,-0.001893,0.002500,0.249988,0,0);}
.m67_c00181{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);}
.m38_c00181{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);}
.ma2_c00181{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);}
.m15_c00181{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);}
.m5c_c00181{transform:matrix(0.191400,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191400,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191400,-0.001914,0.002500,0.249988,0,0);}
.m85_c00181{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);}
.m1e_c00181{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);}
.m5d_c00181{transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);}
.mc8_c00181{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);}
.m57_c00181{transform:matrix(0.193208,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193208,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193208,-0.002125,0.002750,0.249985,0,0);}
.m51_c00181{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);}
.m3c_c00181{transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);-ms-transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);}
.m5e_c00181{transform:matrix(0.195155,-0.001952,0.002500,0.249988,0,0);-ms-transform:matrix(0.195155,-0.001952,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195155,-0.001952,0.002500,0.249988,0,0);}
.m9_c00181{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);}
.m8c_c00181{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);}
.m59_c00181{transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);}
.md_c00181{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);}
.m87_c00181{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);}
.m30_c00181{transform:matrix(0.197491,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197491,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197491,-0.002765,0.003500,0.249976,0,0);}
.m81_c00181{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);}
.mc7_c00181{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);}
.m35_c00181{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);}
.mbc_c00181{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{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);}
.m6b_c00181{transform:matrix(0.199770,-0.001998,0.002500,0.249988,0,0);-ms-transform:matrix(0.199770,-0.001998,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199770,-0.001998,0.002500,0.249988,0,0);}
.m3a_c00181{transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);-ms-transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);}
.m1b_c00181{transform:matrix(0.200745,-0.002810,0.003500,0.249976,0,0);-ms-transform:matrix(0.200745,-0.002810,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200745,-0.002810,0.003500,0.249976,0,0);}
.mc5_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);}
.m2d_c00181{transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);-ms-transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);}
.m52_c00181{transform:matrix(0.201688,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201688,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201688,-0.002219,0.002750,0.249985,0,0);}
.mf_c00181{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);}
.m7c_c00181{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);}
.mad_c00181{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);}
.m3d_c00181{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);}
.m1c_c00181{transform:matrix(0.204750,-0.002866,0.003500,0.249976,0,0);-ms-transform:matrix(0.204750,-0.002866,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204750,-0.002866,0.003500,0.249976,0,0);}
.m23_c00181{transform:matrix(0.205090,-0.002871,0.003500,0.249976,0,0);-ms-transform:matrix(0.205090,-0.002871,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205090,-0.002871,0.003500,0.249976,0,0);}
.m9d_c00181{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);}
.m6a_c00181{transform:matrix(0.205815,-0.002058,0.002500,0.249988,0,0);-ms-transform:matrix(0.205815,-0.002058,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205815,-0.002058,0.002500,0.249988,0,0);}
.mb8_c00181{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);}
.m79_c00181{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);}
.m1_c00181{transform:matrix(0.206540,-0.005577,0.006748,0.249909,0,0);-ms-transform:matrix(0.206540,-0.005577,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206540,-0.005577,0.006748,0.249909,0,0);}
.m99_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);}
.m7b_c00181{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);}
.m2b_c00181{transform:matrix(0.208165,-0.002914,0.003500,0.249976,0,0);-ms-transform:matrix(0.208165,-0.002914,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208165,-0.002914,0.003500,0.249976,0,0);}
.mb_c00181{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m8e_c00181{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);}
.m5f_c00181{transform:matrix(0.212704,-0.002127,0.002500,0.249988,0,0);-ms-transform:matrix(0.212704,-0.002127,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212704,-0.002127,0.002500,0.249988,0,0);}
.m8f_c00181{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);}
.mc_c00181{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);}
.m47_c00181{transform:matrix(0.214806,-0.001933,0.002250,0.249990,0,0);-ms-transform:matrix(0.214806,-0.001933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214806,-0.001933,0.002250,0.249990,0,0);}
.m86_c00181{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);}
.m20_c00181{transform:matrix(0.215234,-0.003013,0.003500,0.249976,0,0);-ms-transform:matrix(0.215234,-0.003013,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215234,-0.003013,0.003500,0.249976,0,0);}
.m7d_c00181{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);}
.m92_c00181{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);}
.m17_c00181{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);}
.mbe_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);}
.mb2_c00181{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);}
.m65_c00181{transform:matrix(0.219174,-0.002192,0.002500,0.249988,0,0);-ms-transform:matrix(0.219174,-0.002192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219174,-0.002192,0.002500,0.249988,0,0);}
.mc3_c00181{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);}
.m49_c00181{transform:matrix(0.220656,-0.001986,0.002250,0.249990,0,0);-ms-transform:matrix(0.220656,-0.001986,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220656,-0.001986,0.002250,0.249990,0,0);}
.m1a_c00181{transform:matrix(0.220848,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220848,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220848,-0.003092,0.003500,0.249976,0,0);}
.ma3_c00181{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);}
.m12_c00181{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);}
.mae_c00181{transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);}
.m32_c00181{transform:matrix(0.224413,-0.003142,0.003500,0.249976,0,0);-ms-transform:matrix(0.224413,-0.003142,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224413,-0.003142,0.003500,0.249976,0,0);}
.mc6_c00181{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m27_c00181{transform:matrix(0.225508,-0.003157,0.003500,0.249976,0,0);-ms-transform:matrix(0.225508,-0.003157,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225508,-0.003157,0.003500,0.249976,0,0);}
.m6c_c00181{transform:matrix(0.225634,-0.002256,0.002500,0.249988,0,0);-ms-transform:matrix(0.225634,-0.002256,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225634,-0.002256,0.002500,0.249988,0,0);}
.m50_c00181{transform:matrix(0.228136,-0.002509,0.002750,0.249985,0,0);-ms-transform:matrix(0.228136,-0.002509,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228136,-0.002509,0.002750,0.249985,0,0);}
.m33_c00181{transform:matrix(0.228258,-0.003196,0.003500,0.249976,0,0);-ms-transform:matrix(0.228258,-0.003196,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228258,-0.003196,0.003500,0.249976,0,0);}
.ma1_c00181{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);}
.m6f_c00181{transform:matrix(0.229154,-0.002292,0.002500,0.249988,0,0);-ms-transform:matrix(0.229154,-0.002292,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229154,-0.002292,0.002500,0.249988,0,0);}
.m2a_c00181{transform:matrix(0.229173,-0.003208,0.003500,0.249976,0,0);-ms-transform:matrix(0.229173,-0.003208,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229173,-0.003208,0.003500,0.249976,0,0);}
.m1f_c00181{transform:matrix(0.229617,-0.003215,0.003500,0.249976,0,0);-ms-transform:matrix(0.229617,-0.003215,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229617,-0.003215,0.003500,0.249976,0,0);}
.m73_c00181{transform:matrix(0.229679,-0.002297,0.002500,0.249988,0,0);-ms-transform:matrix(0.229679,-0.002297,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229679,-0.002297,0.002500,0.249988,0,0);}
.m83_c00181{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);}
.m98_c00181{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m74_c00181{transform:matrix(0.234788,-0.002348,0.002500,0.249988,0,0);-ms-transform:matrix(0.234788,-0.002348,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234788,-0.002348,0.002500,0.249988,0,0);}
.m8d_c00181{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);}
.m2e_c00181{transform:matrix(0.235092,-0.003291,0.003500,0.249976,0,0);-ms-transform:matrix(0.235092,-0.003291,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235092,-0.003291,0.003500,0.249976,0,0);}
.m29_c00181{transform:matrix(0.235222,-0.003293,0.003500,0.249976,0,0);-ms-transform:matrix(0.235222,-0.003293,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235222,-0.003293,0.003500,0.249976,0,0);}
.m61_c00181{transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);-ms-transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);}
.mb4_c00181{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);}
.m9c_c00181{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);}
.m39_c00181{transform:matrix(0.236652,-0.003313,0.003500,0.249976,0,0);-ms-transform:matrix(0.236652,-0.003313,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236652,-0.003313,0.003500,0.249976,0,0);}
.mb3_c00181{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.m82_c00181{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);}
.m2f_c00181{transform:matrix(0.242681,-0.003398,0.003500,0.249976,0,0);-ms-transform:matrix(0.242681,-0.003398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242681,-0.003398,0.003500,0.249976,0,0);}
.m26_c00181{transform:matrix(0.242696,-0.003398,0.003500,0.249976,0,0);-ms-transform:matrix(0.242696,-0.003398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242696,-0.003398,0.003500,0.249976,0,0);}
.m70_c00181{transform:matrix(0.242713,-0.002427,0.002500,0.249988,0,0);-ms-transform:matrix(0.242713,-0.002427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242713,-0.002427,0.002500,0.249988,0,0);}
.maa_c00181{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.m96_c00181{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);}
.m88_c00181{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);}
.mba_c00181{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.maf_c00181{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{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);}
.ma6_c00181{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_c00181{transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);}
.m48_c00181{transform:matrix(0.267109,-0.002404,0.002250,0.249990,0,0);-ms-transform:matrix(0.267109,-0.002404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267109,-0.002404,0.002250,0.249990,0,0);}
.m28_c00181{transform:matrix(0.267189,-0.003741,0.003500,0.249976,0,0);-ms-transform:matrix(0.267189,-0.003741,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267189,-0.003741,0.003500,0.249976,0,0);}
.mbd_c00181{transform:matrix(0.267295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267295,0.000000,0.000000,0.250000,0,0);}
.m62_c00181{transform:matrix(0.268317,-0.002683,0.002500,0.249988,0,0);-ms-transform:matrix(0.268317,-0.002683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268317,-0.002683,0.002500,0.249988,0,0);}
.mb5_c00181{transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);}
.m6e_c00181{transform:matrix(0.271106,-0.002711,0.002500,0.249988,0,0);-ms-transform:matrix(0.271106,-0.002711,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271106,-0.002711,0.002500,0.249988,0,0);}
.m63_c00181{transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);-ms-transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);}
.m36_c00181{transform:matrix(0.274263,-0.003840,0.003500,0.249976,0,0);-ms-transform:matrix(0.274263,-0.003840,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274263,-0.003840,0.003500,0.249976,0,0);}
.m3b_c00181{transform:matrix(0.274608,-0.003845,0.003500,0.249976,0,0);-ms-transform:matrix(0.274608,-0.003845,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274608,-0.003845,0.003500,0.249976,0,0);}
.m7_c00181{transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);}
.m71_c00181{transform:matrix(0.277066,-0.002771,0.002500,0.249988,0,0);-ms-transform:matrix(0.277066,-0.002771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277066,-0.002771,0.002500,0.249988,0,0);}
.m4a_c00181{transform:matrix(0.278819,-0.002509,0.002250,0.249990,0,0);-ms-transform:matrix(0.278819,-0.002509,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278819,-0.002509,0.002250,0.249990,0,0);}
.m0_c00181{transform:matrix(0.280423,-0.007571,0.006748,0.249909,0,0);-ms-transform:matrix(0.280423,-0.007571,0.006748,0.249909,0,0);-webkit-transform:matrix(0.280423,-0.007571,0.006748,0.249909,0,0);}
.m45_c00181{transform:matrix(0.282219,-0.002540,0.002250,0.249990,0,0);-ms-transform:matrix(0.282219,-0.002540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282219,-0.002540,0.002250,0.249990,0,0);}
.m90_c00181{transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);}
.m9e_c00181{transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283560,0.000000,0.000000,0.250000,0,0);}
.m8a_c00181{transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);}
.m75_c00181{transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);}
.m46_c00181{transform:matrix(0.291753,-0.002626,0.002250,0.249990,0,0);-ms-transform:matrix(0.291753,-0.002626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291753,-0.002626,0.002250,0.249990,0,0);}
.m72_c00181{transform:matrix(0.294545,-0.002945,0.002500,0.249988,0,0);-ms-transform:matrix(0.294545,-0.002945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294545,-0.002945,0.002500,0.249988,0,0);}
.m7f_c00181{transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299945,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);}
.m84_c00181{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);}
.m2c_c00181{transform:matrix(0.323348,-0.004527,0.003500,0.249976,0,0);-ms-transform:matrix(0.323348,-0.004527,0.003500,0.249976,0,0);-webkit-transform:matrix(0.323348,-0.004527,0.003500,0.249976,0,0);}
.m34_c00181{transform:matrix(0.327633,-0.004587,0.003500,0.249976,0,0);-ms-transform:matrix(0.327633,-0.004587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.327633,-0.004587,0.003500,0.249976,0,0);}
.m64_c00181{transform:matrix(0.328769,-0.003288,0.002500,0.249988,0,0);-ms-transform:matrix(0.328769,-0.003288,0.002500,0.249988,0,0);-webkit-transform:matrix(0.328769,-0.003288,0.002500,0.249988,0,0);}
.m76_c00181{transform:matrix(0.336575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336575,0.000000,0.000000,0.250000,0,0);}
.mab_c00181{transform:matrix(0.343880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343880,0.000000,0.000000,0.250000,0,0);}
.m77_c00181{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);}
.m44_c00181{transform:matrix(0.350415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350415,0.000000,0.000000,0.250000,0,0);}
.m4c_c00181{transform:matrix(0.358205,-0.003224,0.002250,0.249990,0,0);-ms-transform:matrix(0.358205,-0.003224,0.002250,0.249990,0,0);-webkit-transform:matrix(0.358205,-0.003224,0.002250,0.249990,0,0);}
.mb6_c00181{transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);}
.m42_c00181{transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);}
.mb1_c00181{transform:matrix(0.372760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372760,0.000000,0.000000,0.250000,0,0);}
.m4f_c00181{transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{transform:matrix(0.380885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380885,0.000000,0.000000,0.250000,0,0);}
.m4d_c00181{transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.392431,-0.004317,0.002750,0.249985,0,0);-ms-transform:matrix(0.392431,-0.004317,0.002750,0.249985,0,0);-webkit-transform:matrix(0.392431,-0.004317,0.002750,0.249985,0,0);}
.m56_c00181{transform:matrix(0.394816,-0.004343,0.002750,0.249985,0,0);-ms-transform:matrix(0.394816,-0.004343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.394816,-0.004343,0.002750,0.249985,0,0);}
.mc2_c00181{transform:matrix(0.405150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405150,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.405963,-0.006495,0.003999,0.249968,0,0);-ms-transform:matrix(0.405963,-0.006495,0.003999,0.249968,0,0);-webkit-transform:matrix(0.405963,-0.006495,0.003999,0.249968,0,0);}
.m4b_c00181{transform:matrix(0.422793,-0.003805,0.002250,0.249990,0,0);-ms-transform:matrix(0.422793,-0.003805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.422793,-0.003805,0.002250,0.249990,0,0);}
.mc0_c00181{transform:matrix(0.426090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426090,0.000000,0.000000,0.250000,0,0);}
.m9f_c00181{transform:matrix(0.434515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434515,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{transform:matrix(0.476490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476490,0.000000,0.000000,0.250000,0,0);}
.m7a_c00181{transform:matrix(0.479510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479510,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.573815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573815,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.782770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782770,0.000000,0.000000,0.250000,0,0);}
.m43_c00181{transform:matrix(0.829005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829005,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:14.700000px;}
.fs16_c00181{font-size:63.000000px;}
.fs11_c00181{font-size:65.103255px;}
.fsa_c00181{font-size:66.150000px;}
.fs13_c00181{font-size:67.200000px;}
.fs15_c00181{font-size:68.250000px;}
.fse_c00181{font-size:68.253412px;}
.fs6_c00181{font-size:68.256688px;}
.fs2_c00181{font-size:69.300000px;}
.fs10_c00181{font-size:69.303465px;}
.fs17_c00181{font-size:70.350000px;}
.fs8_c00181{font-size:70.356894px;}
.fs3_c00181{font-size:71.400000px;}
.fsf_c00181{font-size:71.403570px;}
.fs7_c00181{font-size:71.406997px;}
.fs4_c00181{font-size:71.409139px;}
.fs12_c00181{font-size:72.450000px;}
.fsd_c00181{font-size:72.454383px;}
.fs5_c00181{font-size:72.457100px;}
.fs14_c00181{font-size:73.500000px;}
.fs18_c00181{font-size:74.550000px;}
.fs1_c00181{font-size:97.650000px;}
.fsb_c00181{font-size:118.654805px;}
.fsc_c00181{font-size:119.704848px;}
.fs0_c00181{font-size:238.436863px;}
.y0_c00181{bottom:0.000000px;}
.ya9_c00181{bottom:148.645500px;}
.ya8_c00181{bottom:171.370500px;}
.y9d_c00181{bottom:193.047000px;}
.y9e_c00181{bottom:193.462500px;}
.y9f_c00181{bottom:193.696500px;}
.ya0_c00181{bottom:194.140500px;}
.ya1_c00181{bottom:194.593500px;}
.ya2_c00181{bottom:194.652000px;}
.ya3_c00181{bottom:194.890500px;}
.ya4_c00181{bottom:195.070500px;}
.ya5_c00181{bottom:195.457500px;}
.ya6_c00181{bottom:195.754500px;}
.ya7_c00181{bottom:196.275000px;}
.y9c_c00181{bottom:217.378500px;}
.y93_c00181{bottom:238.948500px;}
.y94_c00181{bottom:239.322000px;}
.y95_c00181{bottom:239.542500px;}
.y96_c00181{bottom:239.941500px;}
.y97_c00181{bottom:240.537000px;}
.y98_c00181{bottom:240.703500px;}
.y99_c00181{bottom:240.880500px;}
.y9a_c00181{bottom:241.126500px;}
.y9b_c00181{bottom:241.548000px;}
.y89_c00181{bottom:261.360000px;}
.y8a_c00181{bottom:261.778500px;}
.y8b_c00181{bottom:262.354500px;}
.y8c_c00181{bottom:262.687500px;}
.y8d_c00181{bottom:263.035500px;}
.y8e_c00181{bottom:263.796000px;}
.y8f_c00181{bottom:264.117000px;}
.y90_c00181{bottom:264.781500px;}
.y91_c00181{bottom:265.053000px;}
.y92_c00181{bottom:265.455000px;}
.y83_c00181{bottom:284.310000px;}
.y84_c00181{bottom:284.611500px;}
.y85_c00181{bottom:285.223500px;}
.y86_c00181{bottom:285.651000px;}
.y87_c00181{bottom:287.478000px;}
.y88_c00181{bottom:287.880000px;}
.y78_c00181{bottom:307.260000px;}
.y79_c00181{bottom:307.456500px;}
.y7a_c00181{bottom:307.660500px;}
.y7b_c00181{bottom:307.977000px;}
.y7c_c00181{bottom:308.253000px;}
.y7d_c00181{bottom:308.811000px;}
.y7e_c00181{bottom:309.057000px;}
.y7f_c00181{bottom:309.283500px;}
.y80_c00181{bottom:309.651000px;}
.y81_c00181{bottom:309.907500px;}
.y82_c00181{bottom:310.210500px;}
.y71_c00181{bottom:330.751500px;}
.y72_c00181{bottom:331.287000px;}
.y73_c00181{bottom:331.843500px;}
.y74_c00181{bottom:332.433000px;}
.y75_c00181{bottom:332.856000px;}
.y76_c00181{bottom:333.156000px;}
.y77_c00181{bottom:333.670500px;}
.y70_c00181{bottom:354.790500px;}
.y67_c00181{bottom:376.110135px;}
.y68_c00181{bottom:376.444950px;}
.y69_c00181{bottom:376.776570px;}
.y6a_c00181{bottom:377.136135px;}
.y6b_c00181{bottom:377.886750px;}
.y6c_c00181{bottom:378.329580px;}
.y6d_c00181{bottom:378.578130px;}
.y6e_c00181{bottom:378.945345px;}
.y6f_c00181{bottom:379.266705px;}
.y60_c00181{bottom:399.601500px;}
.y61_c00181{bottom:399.841785px;}
.y62_c00181{bottom:400.109070px;}
.y63_c00181{bottom:400.338240px;}
.y64_c00181{bottom:400.778370px;}
.y65_c00181{bottom:401.175660px;}
.y66_c00181{bottom:401.980110px;}
.y5d_c00181{bottom:424.033905px;}
.y5f_c00181{bottom:424.034175px;}
.y5e_c00181{bottom:424.034190px;}
.y55_c00181{bottom:444.691500px;}
.y56_c00181{bottom:445.296300px;}
.y57_c00181{bottom:445.773795px;}
.y58_c00181{bottom:446.254905px;}
.y59_c00181{bottom:446.559930px;}
.y5a_c00181{bottom:447.046770px;}
.y5c_c00181{bottom:447.820740px;}
.y5b_c00181{bottom:447.942510px;}
.y4b_c00181{bottom:467.641500px;}
.y4c_c00181{bottom:467.872879px;}
.y4d_c00181{bottom:468.379017px;}
.y4e_c00181{bottom:469.209874px;}
.y4f_c00181{bottom:469.435512px;}
.y50_c00181{bottom:469.875072px;}
.y51_c00181{bottom:470.223453px;}
.y52_c00181{bottom:470.406273px;}
.y53_c00181{bottom:470.824003px;}
.y54_c00181{bottom:471.719524px;}
.y4a_c00181{bottom:492.772500px;}
.y49_c00181{bottom:530.549239px;}
.y48_c00181{bottom:530.549806px;}
.y42_c00181{bottom:553.231500px;}
.y43_c00181{bottom:553.705728px;}
.y44_c00181{bottom:554.456503px;}
.y45_c00181{bottom:554.777317px;}
.y46_c00181{bottom:555.819963px;}
.y47_c00181{bottom:556.191820px;}
.y41_c00181{bottom:597.685500px;}
.y40_c00181{bottom:634.770000px;}
.y35_c00181{bottom:656.908605px;}
.y36_c00181{bottom:657.235149px;}
.y37_c00181{bottom:657.518892px;}
.y38_c00181{bottom:658.002885px;}
.y39_c00181{bottom:658.656990px;}
.y3a_c00181{bottom:659.267706px;}
.y3b_c00181{bottom:659.751762px;}
.y3c_c00181{bottom:660.068760px;}
.y3d_c00181{bottom:660.839709px;}
.y3e_c00181{bottom:661.105905px;}
.y3f_c00181{bottom:661.443453px;}
.y2d_c00181{bottom:679.591197px;}
.y2e_c00181{bottom:680.224221px;}
.y2f_c00181{bottom:680.799288px;}
.y30_c00181{bottom:681.419670px;}
.y31_c00181{bottom:682.278723px;}
.y32_c00181{bottom:683.192487px;}
.y33_c00181{bottom:683.821458px;}
.y34_c00181{bottom:684.550131px;}
.y23_c00181{bottom:702.272226px;}
.y24_c00181{bottom:703.002414px;}
.y25_c00181{bottom:703.672647px;}
.y26_c00181{bottom:703.959645px;}
.y27_c00181{bottom:705.189912px;}
.y28_c00181{bottom:705.813471px;}
.y29_c00181{bottom:706.382040px;}
.y2a_c00181{bottom:707.390796px;}
.y2b_c00181{bottom:707.979354px;}
.y2c_c00181{bottom:708.929961px;}
.y1a_c00181{bottom:725.493000px;}
.y1b_c00181{bottom:726.022683px;}
.y1c_c00181{bottom:727.077261px;}
.y1d_c00181{bottom:727.455492px;}
.y1e_c00181{bottom:727.943070px;}
.y1f_c00181{bottom:728.664987px;}
.y20_c00181{bottom:728.970495px;}
.y21_c00181{bottom:729.534723px;}
.y22_c00181{bottom:730.215207px;}
.y18_c00181{bottom:748.710000px;}
.y19_c00181{bottom:749.664288px;}
.yf_c00181{bottom:770.313000px;}
.y10_c00181{bottom:771.126000px;}
.y11_c00181{bottom:771.868500px;}
.y12_c00181{bottom:772.680000px;}
.y13_c00181{bottom:773.440500px;}
.y14_c00181{bottom:774.019500px;}
.y15_c00181{bottom:774.601500px;}
.y16_c00181{bottom:775.281000px;}
.y17_c00181{bottom:775.623000px;}
.y7_c00181{bottom:793.264500px;}
.y8_c00181{bottom:793.704000px;}
.y9_c00181{bottom:794.437500px;}
.ya_c00181{bottom:794.974500px;}
.yb_c00181{bottom:795.352500px;}
.yc_c00181{bottom:796.321500px;}
.yd_c00181{bottom:797.476500px;}
.ye_c00181{bottom:798.189000px;}
.y6_c00181{bottom:818.944500px;}
.y4_c00181{bottom:883.706677px;}
.y5_c00181{bottom:895.573161px;}
.y1_c00181{bottom:897.504000px;}
.y2_c00181{bottom:903.433929px;}
.y3_c00181{bottom:912.509047px;}
.hb_c00181{height:14.700000px;}
.h18_c00181{height:63.000000px;}
.h13_c00181{height:65.103255px;}
.hc_c00181{height:66.150000px;}
.h15_c00181{height:67.200000px;}
.h17_c00181{height:68.250000px;}
.h10_c00181{height:68.253412px;}
.h8_c00181{height:68.256688px;}
.h4_c00181{height:69.300000px;}
.h12_c00181{height:69.303465px;}
.h19_c00181{height:70.350000px;}
.ha_c00181{height:70.356894px;}
.h5_c00181{height:71.400000px;}
.h11_c00181{height:71.403570px;}
.h9_c00181{height:71.406997px;}
.h6_c00181{height:71.409139px;}
.h14_c00181{height:72.450000px;}
.hf_c00181{height:72.454383px;}
.h7_c00181{height:72.457100px;}
.h16_c00181{height:73.500000px;}
.h1a_c00181{height:74.550000px;}
.h3_c00181{height:97.650000px;}
.hd_c00181{height:118.654805px;}
.he_c00181{height:119.704848px;}
.h2_c00181{height:238.436863px;}
.h0_c00181{height:1008.450000px;}
.h1_c00181{height:1008.750000px;}
.w0_c00181{width:678.450000px;}
.w1_c00181{width:678.750000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:73.255500px;}
.x3e_c00181{left:142.533000px;}
.x8_c00181{left:164.416500px;}
.x22_c00181{left:165.735828px;}
.x1a_c00181{left:166.752000px;}
.x4b_c00181{left:170.235000px;}
.x60_c00181{left:171.309000px;}
.x6c_c00181{left:172.902000px;}
.x6_c00181{left:177.120000px;}
.x59_c00181{left:186.030000px;}
.x9_c00181{left:190.242000px;}
.x2e_c00181{left:191.365746px;}
.x52_c00181{left:193.713000px;}
.x3f_c00181{left:195.225000px;}
.x70_c00181{left:196.287000px;}
.x7d_c00181{left:198.987000px;}
.x68_c00181{left:201.846000px;}
.x1b_c00181{left:204.586500px;}
.x23_c00181{left:208.676022px;}
.x61_c00181{left:211.497000px;}
.x2f_c00181{left:213.240561px;}
.x10_c00181{left:215.959500px;}
.x5b_c00181{left:218.866500px;}
.x53_c00181{left:220.441500px;}
.x71_c00181{left:223.017000px;}
.x7e_c00181{left:227.877000px;}
.x4c_c00181{left:230.715000px;}
.xa_c00181{left:233.430000px;}
.x18_c00181{left:235.719000px;}
.x55_c00181{left:236.876445px;}
.x79_c00181{left:238.947000px;}
.x65_c00181{left:241.800000px;}
.x54_c00181{left:243.358500px;}
.x74_c00181{left:245.055000px;}
.x2b_c00181{left:246.485214px;}
.x24_c00181{left:248.083863px;}
.x30_c00181{left:250.490586px;}
.x4_c00181{left:261.197166px;}
.x11_c00181{left:262.396500px;}
.xb_c00181{left:265.020000px;}
.x43_c00181{left:266.225637px;}
.x5c_c00181{left:269.469000px;}
.x62_c00181{left:270.757500px;}
.x56_c00181{left:272.832945px;}
.x66_c00181{left:277.461000px;}
.x40_c00181{left:278.644500px;}
.x1c_c00181{left:279.913500px;}
.x3c_c00181{left:283.770000px;}
.xc_c00181{left:287.250000px;}
.x2_c00181{left:292.882500px;}
.x19_c00181{left:295.362000px;}
.x50_c00181{left:297.544785px;}
.x31_c00181{left:300.748779px;}
.x7_c00181{left:306.450000px;}
.x12_c00181{left:313.156500px;}
.x41_c00181{left:314.290500px;}
.x5d_c00181{left:323.118000px;}
.x44_c00181{left:326.167497px;}
.x7f_c00181{left:328.317000px;}
.x45_c00181{left:330.480000px;}
.x7a_c00181{left:333.177000px;}
.x25_c00181{left:337.277604px;}
.x46_c00181{left:338.469000px;}
.x1d_c00181{left:341.757000px;}
.xd_c00181{left:344.212500px;}
.x32_c00181{left:347.693430px;}
.x63_c00181{left:351.129000px;}
.x4d_c00181{left:357.078000px;}
.x47_c00181{left:358.981500px;}
.x13_c00181{left:360.678000px;}
.x51_c00181{left:363.428370px;}
.x5a_c00181{left:367.470000px;}
.x69_c00181{left:369.993000px;}
.x6d_c00181{left:371.616000px;}
.x26_c00181{left:373.994571px;}
.x75_c00181{left:377.844000px;}
.x80_c00181{left:382.317000px;}
.x33_c00181{left:384.947955px;}
.x5e_c00181{left:388.948500px;}
.x57_c00181{left:392.177445px;}
.x1e_c00181{left:393.322500px;}
.x14_c00181{left:396.858000px;}
.x48_c00181{left:398.941500px;}
.x7b_c00181{left:402.027000px;}
.x2c_c00181{left:405.961467px;}
.x27_c00181{left:407.426664px;}
.x34_c00181{left:409.305291px;}
.x64_c00181{left:410.533500px;}
.xe_c00181{left:412.182000px;}
.x1f_c00181{left:415.144500px;}
.x58_c00181{left:417.032445px;}
.x72_c00181{left:424.707000px;}
.x3d_c00181{left:429.840000px;}
.x15_c00181{left:433.237500px;}
.x5f_c00181{left:435.670500px;}
.x81_c00181{left:438.477000px;}
.x76_c00181{left:440.808000px;}
.x6e_c00181{left:445.378500px;}
.x2d_c00181{left:447.887379px;}
.x7c_c00181{left:450.627000px;}
.x6a_c00181{left:452.134500px;}
.xf_c00181{left:454.107000px;}
.x20_c00181{left:455.446500px;}
.x67_c00181{left:463.207500px;}
.x28_c00181{left:466.728165px;}
.x35_c00181{left:468.659631px;}
.x42_c00181{left:471.457500px;}
.x77_c00181{left:473.725500px;}
.x16_c00181{left:475.695000px;}
.x4f_c00181{left:483.159000px;}
.x49_c00181{left:485.208000px;}
.x82_c00181{left:487.077000px;}
.x36_c00181{left:489.173925px;}
.x4e_c00181{left:495.336000px;}
.x17_c00181{left:497.028000px;}
.x6f_c00181{left:498.046500px;}
.x29_c00181{left:501.373716px;}
.x21_c00181{left:504.052500px;}
.x6b_c00181{left:508.290000px;}
.x73_c00181{left:510.027000px;}
.x5_c00181{left:513.671424px;}
.x37_c00181{left:515.106282px;}
.x78_c00181{left:531.510000px;}
.x38_c00181{left:533.250000px;}
.x2a_c00181{left:557.271864px;}
.x39_c00181{left:560.250000px;}
.x4a_c00181{left:566.619000px;}
.x3a_c00181{left:571.590000px;}
.x3b_c00181{left:589.950000px;}
.x3_c00181{left:628.998000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs9_c00181{font-size:13.066667pt;}
.fs16_c00181{font-size:56.000000pt;}
.fs11_c00181{font-size:57.869560pt;}
.fsa_c00181{font-size:58.800000pt;}
.fs13_c00181{font-size:59.733333pt;}
.fs15_c00181{font-size:60.666667pt;}
.fse_c00181{font-size:60.669700pt;}
.fs6_c00181{font-size:60.672612pt;}
.fs2_c00181{font-size:61.600000pt;}
.fs10_c00181{font-size:61.603080pt;}
.fs17_c00181{font-size:62.533333pt;}
.fs8_c00181{font-size:62.539461pt;}
.fs3_c00181{font-size:63.466667pt;}
.fsf_c00181{font-size:63.469840pt;}
.fs7_c00181{font-size:63.472886pt;}
.fs4_c00181{font-size:63.474790pt;}
.fs12_c00181{font-size:64.400000pt;}
.fsd_c00181{font-size:64.403896pt;}
.fs5_c00181{font-size:64.406311pt;}
.fs14_c00181{font-size:65.333333pt;}
.fs18_c00181{font-size:66.266667pt;}
.fs1_c00181{font-size:86.800000pt;}
.fsb_c00181{font-size:105.470938pt;}
.fsc_c00181{font-size:106.404309pt;}
.fs0_c00181{font-size:211.943878pt;}
.y0_c00181{bottom:0.000000pt;}
.ya9_c00181{bottom:132.129333pt;}
.ya8_c00181{bottom:152.329333pt;}
.y9d_c00181{bottom:171.597333pt;}
.y9e_c00181{bottom:171.966667pt;}
.y9f_c00181{bottom:172.174667pt;}
.ya0_c00181{bottom:172.569333pt;}
.ya1_c00181{bottom:172.972000pt;}
.ya2_c00181{bottom:173.024000pt;}
.ya3_c00181{bottom:173.236000pt;}
.ya4_c00181{bottom:173.396000pt;}
.ya5_c00181{bottom:173.740000pt;}
.ya6_c00181{bottom:174.004000pt;}
.ya7_c00181{bottom:174.466667pt;}
.y9c_c00181{bottom:193.225333pt;}
.y93_c00181{bottom:212.398667pt;}
.y94_c00181{bottom:212.730667pt;}
.y95_c00181{bottom:212.926667pt;}
.y96_c00181{bottom:213.281333pt;}
.y97_c00181{bottom:213.810667pt;}
.y98_c00181{bottom:213.958667pt;}
.y99_c00181{bottom:214.116000pt;}
.y9a_c00181{bottom:214.334667pt;}
.y9b_c00181{bottom:214.709333pt;}
.y89_c00181{bottom:232.320000pt;}
.y8a_c00181{bottom:232.692000pt;}
.y8b_c00181{bottom:233.204000pt;}
.y8c_c00181{bottom:233.500000pt;}
.y8d_c00181{bottom:233.809333pt;}
.y8e_c00181{bottom:234.485333pt;}
.y8f_c00181{bottom:234.770667pt;}
.y90_c00181{bottom:235.361333pt;}
.y91_c00181{bottom:235.602667pt;}
.y92_c00181{bottom:235.960000pt;}
.y83_c00181{bottom:252.720000pt;}
.y84_c00181{bottom:252.988000pt;}
.y85_c00181{bottom:253.532000pt;}
.y86_c00181{bottom:253.912000pt;}
.y87_c00181{bottom:255.536000pt;}
.y88_c00181{bottom:255.893333pt;}
.y78_c00181{bottom:273.120000pt;}
.y79_c00181{bottom:273.294667pt;}
.y7a_c00181{bottom:273.476000pt;}
.y7b_c00181{bottom:273.757333pt;}
.y7c_c00181{bottom:274.002667pt;}
.y7d_c00181{bottom:274.498667pt;}
.y7e_c00181{bottom:274.717333pt;}
.y7f_c00181{bottom:274.918667pt;}
.y80_c00181{bottom:275.245333pt;}
.y81_c00181{bottom:275.473333pt;}
.y82_c00181{bottom:275.742667pt;}
.y71_c00181{bottom:294.001333pt;}
.y72_c00181{bottom:294.477333pt;}
.y73_c00181{bottom:294.972000pt;}
.y74_c00181{bottom:295.496000pt;}
.y75_c00181{bottom:295.872000pt;}
.y76_c00181{bottom:296.138667pt;}
.y77_c00181{bottom:296.596000pt;}
.y70_c00181{bottom:315.369333pt;}
.y67_c00181{bottom:334.320120pt;}
.y68_c00181{bottom:334.617733pt;}
.y69_c00181{bottom:334.912507pt;}
.y6a_c00181{bottom:335.232120pt;}
.y6b_c00181{bottom:335.899333pt;}
.y6c_c00181{bottom:336.292960pt;}
.y6d_c00181{bottom:336.513893pt;}
.y6e_c00181{bottom:336.840307pt;}
.y6f_c00181{bottom:337.125960pt;}
.y60_c00181{bottom:355.201333pt;}
.y61_c00181{bottom:355.414920pt;}
.y62_c00181{bottom:355.652507pt;}
.y63_c00181{bottom:355.856213pt;}
.y64_c00181{bottom:356.247440pt;}
.y65_c00181{bottom:356.600587pt;}
.y66_c00181{bottom:357.315653pt;}
.y5d_c00181{bottom:376.919027pt;}
.y5f_c00181{bottom:376.919267pt;}
.y5e_c00181{bottom:376.919280pt;}
.y55_c00181{bottom:395.281333pt;}
.y56_c00181{bottom:395.818933pt;}
.y57_c00181{bottom:396.243373pt;}
.y58_c00181{bottom:396.671027pt;}
.y59_c00181{bottom:396.942160pt;}
.y5a_c00181{bottom:397.374907pt;}
.y5c_c00181{bottom:398.062880pt;}
.y5b_c00181{bottom:398.171120pt;}
.y4b_c00181{bottom:415.681333pt;}
.y4c_c00181{bottom:415.887004pt;}
.y4d_c00181{bottom:416.336904pt;}
.y4e_c00181{bottom:417.075444pt;}
.y4f_c00181{bottom:417.276011pt;}
.y50_c00181{bottom:417.666731pt;}
.y51_c00181{bottom:417.976403pt;}
.y52_c00181{bottom:418.138909pt;}
.y53_c00181{bottom:418.510225pt;}
.y54_c00181{bottom:419.306244pt;}
.y4a_c00181{bottom:438.020000pt;}
.y49_c00181{bottom:471.599324pt;}
.y48_c00181{bottom:471.599828pt;}
.y42_c00181{bottom:491.761333pt;}
.y43_c00181{bottom:492.182869pt;}
.y44_c00181{bottom:492.850225pt;}
.y45_c00181{bottom:493.135393pt;}
.y46_c00181{bottom:494.062189pt;}
.y47_c00181{bottom:494.392729pt;}
.y41_c00181{bottom:531.276000pt;}
.y40_c00181{bottom:564.240000pt;}
.y35_c00181{bottom:583.918760pt;}
.y36_c00181{bottom:584.209021pt;}
.y37_c00181{bottom:584.461237pt;}
.y38_c00181{bottom:584.891453pt;}
.y39_c00181{bottom:585.472880pt;}
.y3a_c00181{bottom:586.015739pt;}
.y3b_c00181{bottom:586.446011pt;}
.y3c_c00181{bottom:586.727787pt;}
.y3d_c00181{bottom:587.413075pt;}
.y3e_c00181{bottom:587.649693pt;}
.y3f_c00181{bottom:587.949736pt;}
.y2d_c00181{bottom:604.081064pt;}
.y2e_c00181{bottom:604.643752pt;}
.y2f_c00181{bottom:605.154923pt;}
.y30_c00181{bottom:605.706373pt;}
.y31_c00181{bottom:606.469976pt;}
.y32_c00181{bottom:607.282211pt;}
.y33_c00181{bottom:607.841296pt;}
.y34_c00181{bottom:608.489005pt;}
.y23_c00181{bottom:624.241979pt;}
.y24_c00181{bottom:624.891035pt;}
.y25_c00181{bottom:625.486797pt;}
.y26_c00181{bottom:625.741907pt;}
.y27_c00181{bottom:626.835477pt;}
.y28_c00181{bottom:627.389752pt;}
.y29_c00181{bottom:627.895147pt;}
.y2a_c00181{bottom:628.791819pt;}
.y2b_c00181{bottom:629.314981pt;}
.y2c_c00181{bottom:630.159965pt;}
.y1a_c00181{bottom:644.882667pt;}
.y1b_c00181{bottom:645.353496pt;}
.y1c_c00181{bottom:646.290899pt;}
.y1d_c00181{bottom:646.627104pt;}
.y1e_c00181{bottom:647.060507pt;}
.y1f_c00181{bottom:647.702211pt;}
.y20_c00181{bottom:647.973773pt;}
.y21_c00181{bottom:648.475309pt;}
.y22_c00181{bottom:649.080184pt;}
.y18_c00181{bottom:665.520000pt;}
.y19_c00181{bottom:666.368256pt;}
.yf_c00181{bottom:684.722667pt;}
.y10_c00181{bottom:685.445333pt;}
.y11_c00181{bottom:686.105333pt;}
.y12_c00181{bottom:686.826667pt;}
.y13_c00181{bottom:687.502667pt;}
.y14_c00181{bottom:688.017333pt;}
.y15_c00181{bottom:688.534667pt;}
.y16_c00181{bottom:689.138667pt;}
.y17_c00181{bottom:689.442667pt;}
.y7_c00181{bottom:705.124000pt;}
.y8_c00181{bottom:705.514667pt;}
.y9_c00181{bottom:706.166667pt;}
.ya_c00181{bottom:706.644000pt;}
.yb_c00181{bottom:706.980000pt;}
.yc_c00181{bottom:707.841333pt;}
.yd_c00181{bottom:708.868000pt;}
.ye_c00181{bottom:709.501333pt;}
.y6_c00181{bottom:727.950667pt;}
.y4_c00181{bottom:785.517047pt;}
.y5_c00181{bottom:796.065032pt;}
.y1_c00181{bottom:797.781333pt;}
.y2_c00181{bottom:803.052381pt;}
.y3_c00181{bottom:811.119153pt;}
.hb_c00181{height:13.066667pt;}
.h18_c00181{height:56.000000pt;}
.h13_c00181{height:57.869560pt;}
.hc_c00181{height:58.800000pt;}
.h15_c00181{height:59.733333pt;}
.h17_c00181{height:60.666667pt;}
.h10_c00181{height:60.669700pt;}
.h8_c00181{height:60.672612pt;}
.h4_c00181{height:61.600000pt;}
.h12_c00181{height:61.603080pt;}
.h19_c00181{height:62.533333pt;}
.ha_c00181{height:62.539461pt;}
.h5_c00181{height:63.466667pt;}
.h11_c00181{height:63.469840pt;}
.h9_c00181{height:63.472886pt;}
.h6_c00181{height:63.474790pt;}
.h14_c00181{height:64.400000pt;}
.hf_c00181{height:64.403896pt;}
.h7_c00181{height:64.406311pt;}
.h16_c00181{height:65.333333pt;}
.h1a_c00181{height:66.266667pt;}
.h3_c00181{height:86.800000pt;}
.hd_c00181{height:105.470938pt;}
.he_c00181{height:106.404309pt;}
.h2_c00181{height:211.943878pt;}
.h0_c00181{height:896.400000pt;}
.h1_c00181{height:896.666667pt;}
.w0_c00181{width:603.066667pt;}
.w1_c00181{width:603.333333pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:65.116000pt;}
.x3e_c00181{left:126.696000pt;}
.x8_c00181{left:146.148000pt;}
.x22_c00181{left:147.320736pt;}
.x1a_c00181{left:148.224000pt;}
.x4b_c00181{left:151.320000pt;}
.x60_c00181{left:152.274667pt;}
.x6c_c00181{left:153.690667pt;}
.x6_c00181{left:157.440000pt;}
.x59_c00181{left:165.360000pt;}
.x9_c00181{left:169.104000pt;}
.x2e_c00181{left:170.102885pt;}
.x52_c00181{left:172.189333pt;}
.x3f_c00181{left:173.533333pt;}
.x70_c00181{left:174.477333pt;}
.x7d_c00181{left:176.877333pt;}
.x68_c00181{left:179.418667pt;}
.x1b_c00181{left:181.854667pt;}
.x23_c00181{left:185.489797pt;}
.x61_c00181{left:187.997333pt;}
.x2f_c00181{left:189.547165pt;}
.x10_c00181{left:191.964000pt;}
.x5b_c00181{left:194.548000pt;}
.x53_c00181{left:195.948000pt;}
.x71_c00181{left:198.237333pt;}
.x7e_c00181{left:202.557333pt;}
.x4c_c00181{left:205.080000pt;}
.xa_c00181{left:207.493333pt;}
.x18_c00181{left:209.528000pt;}
.x55_c00181{left:210.556840pt;}
.x79_c00181{left:212.397333pt;}
.x65_c00181{left:214.933333pt;}
.x54_c00181{left:216.318667pt;}
.x74_c00181{left:217.826667pt;}
.x2b_c00181{left:219.097968pt;}
.x24_c00181{left:220.518989pt;}
.x30_c00181{left:222.658299pt;}
.x4_c00181{left:232.175259pt;}
.x11_c00181{left:233.241333pt;}
.xb_c00181{left:235.573333pt;}
.x43_c00181{left:236.645011pt;}
.x5c_c00181{left:239.528000pt;}
.x62_c00181{left:240.673333pt;}
.x56_c00181{left:242.518173pt;}
.x66_c00181{left:246.632000pt;}
.x40_c00181{left:247.684000pt;}
.x1c_c00181{left:248.812000pt;}
.x3c_c00181{left:252.240000pt;}
.xc_c00181{left:255.333333pt;}
.x2_c00181{left:260.340000pt;}
.x19_c00181{left:262.544000pt;}
.x50_c00181{left:264.484253pt;}
.x31_c00181{left:267.332248pt;}
.x7_c00181{left:272.400000pt;}
.x12_c00181{left:278.361333pt;}
.x41_c00181{left:279.369333pt;}
.x5d_c00181{left:287.216000pt;}
.x44_c00181{left:289.926664pt;}
.x7f_c00181{left:291.837333pt;}
.x45_c00181{left:293.760000pt;}
.x7a_c00181{left:296.157333pt;}
.x25_c00181{left:299.802315pt;}
.x46_c00181{left:300.861333pt;}
.x1d_c00181{left:303.784000pt;}
.xd_c00181{left:305.966667pt;}
.x32_c00181{left:309.060827pt;}
.x63_c00181{left:312.114667pt;}
.x4d_c00181{left:317.402667pt;}
.x47_c00181{left:319.094667pt;}
.x13_c00181{left:320.602667pt;}
.x51_c00181{left:323.047440pt;}
.x5a_c00181{left:326.640000pt;}
.x69_c00181{left:328.882667pt;}
.x6d_c00181{left:330.325333pt;}
.x26_c00181{left:332.439619pt;}
.x75_c00181{left:335.861333pt;}
.x80_c00181{left:339.837333pt;}
.x33_c00181{left:342.175960pt;}
.x5e_c00181{left:345.732000pt;}
.x57_c00181{left:348.602173pt;}
.x1e_c00181{left:349.620000pt;}
.x14_c00181{left:352.762667pt;}
.x48_c00181{left:354.614667pt;}
.x7b_c00181{left:357.357333pt;}
.x2c_c00181{left:360.854637pt;}
.x27_c00181{left:362.157035pt;}
.x34_c00181{left:363.826925pt;}
.x64_c00181{left:364.918667pt;}
.xe_c00181{left:366.384000pt;}
.x1f_c00181{left:369.017333pt;}
.x58_c00181{left:370.695507pt;}
.x72_c00181{left:377.517333pt;}
.x3d_c00181{left:382.080000pt;}
.x15_c00181{left:385.100000pt;}
.x5f_c00181{left:387.262667pt;}
.x81_c00181{left:389.757333pt;}
.x76_c00181{left:391.829333pt;}
.x6e_c00181{left:395.892000pt;}
.x2d_c00181{left:398.122115pt;}
.x7c_c00181{left:400.557333pt;}
.x6a_c00181{left:401.897333pt;}
.xf_c00181{left:403.650667pt;}
.x20_c00181{left:404.841333pt;}
.x67_c00181{left:411.740000pt;}
.x28_c00181{left:414.869480pt;}
.x35_c00181{left:416.586339pt;}
.x42_c00181{left:419.073333pt;}
.x77_c00181{left:421.089333pt;}
.x16_c00181{left:422.840000pt;}
.x4f_c00181{left:429.474667pt;}
.x49_c00181{left:431.296000pt;}
.x82_c00181{left:432.957333pt;}
.x36_c00181{left:434.821267pt;}
.x4e_c00181{left:440.298667pt;}
.x17_c00181{left:441.802667pt;}
.x6f_c00181{left:442.708000pt;}
.x29_c00181{left:445.665525pt;}
.x21_c00181{left:448.046667pt;}
.x6b_c00181{left:451.813333pt;}
.x73_c00181{left:453.357333pt;}
.x5_c00181{left:456.596821pt;}
.x37_c00181{left:457.872251pt;}
.x78_c00181{left:472.453333pt;}
.x38_c00181{left:474.000000pt;}
.x2a_c00181{left:495.352768pt;}
.x39_c00181{left:498.000000pt;}
.x4a_c00181{left:503.661333pt;}
.x3a_c00181{left:508.080000pt;}
.x3b_c00181{left:524.400000pt;}
.x3_c00181{left:559.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m69_c00182{transform:matrix(0.009680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009680,0.000000,0.000000,0.250000,0,0);}
.m7b_c00182{transform:matrix(0.010990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010990,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m78_c00182{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.m49_c00182{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);}
.md9_c00182{transform:matrix(0.013725,0.000096,-0.001750,0.249994,0,0);-ms-transform:matrix(0.013725,0.000096,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.013725,0.000096,-0.001750,0.249994,0,0);}
.m55_c00182{transform:matrix(0.014130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014130,0.000000,0.000000,0.250000,0,0);}
.mc3_c00182{transform:matrix(0.019835,0.000139,-0.001750,0.249994,0,0);-ms-transform:matrix(0.019835,0.000139,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.019835,0.000139,-0.001750,0.249994,0,0);}
.m6_c00182{transform:matrix(0.026423,-0.000291,0.002750,0.249985,0,0);-ms-transform:matrix(0.026423,-0.000291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.026423,-0.000291,0.002750,0.249985,0,0);}
.me9_c00182{transform:matrix(0.028289,0.000198,-0.001750,0.249994,0,0);-ms-transform:matrix(0.028289,0.000198,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.028289,0.000198,-0.001750,0.249994,0,0);}
.md2_c00182{transform:matrix(0.037894,0.000265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.037894,0.000265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.037894,0.000265,-0.001750,0.249994,0,0);}
.m3b_c00182{transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);}
.maa_c00182{transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);}
.m8e_c00182{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);}
.mae_c00182{transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127140,0.000000,0.000000,0.250000,0,0);}
.me4_c00182{transform:matrix(0.130257,0.000912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.130257,0.000912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.130257,0.000912,-0.001750,0.249994,0,0);}
.m8_c00182{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);}
.m98_c00182{transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134215,0.000000,0.000000,0.250000,0,0);}
.m54_c00182{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{transform:matrix(0.137415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00182{transform:matrix(0.137985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137985,0.000000,0.000000,0.250000,0,0);}
.m51_c00182{transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{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);}
.m3d_c00182{transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{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);}
.m53_c00182{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);}
.m9e_c00182{transform:matrix(0.149505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149505,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{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);}
.m9d_c00182{transform:matrix(0.150835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150835,0.000000,0.000000,0.250000,0,0);}
.mcd_c00182{transform:matrix(0.151156,0.001058,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151156,0.001058,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151156,0.001058,-0.001750,0.249994,0,0);}
.m50_c00182{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);}
.m1a_c00182{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m66_c00182{transform:matrix(0.155610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155610,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{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);}
.m8b_c00182{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);}
.mc4_c00182{transform:matrix(0.158931,0.001113,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158931,0.001113,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158931,0.001113,-0.001750,0.249994,0,0);}
.mb6_c00182{transform:matrix(0.159676,0.001118,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159676,0.001118,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159676,0.001118,-0.001750,0.249994,0,0);}
.m2b_c00182{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);}
.m3e_c00182{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);}
.m3c_c00182{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{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);}
.mbd_c00182{transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163091,0.001142,-0.001750,0.249994,0,0);}
.m8f_c00182{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);}
.m1e_c00182{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);}
.m39_c00182{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);}
.m34_c00182{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);}
.md8_c00182{transform:matrix(0.165516,0.001159,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165516,0.001159,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165516,0.001159,-0.001750,0.249994,0,0);}
.m60_c00182{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);}
.m87_c00182{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);}
.maf_c00182{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);}
.m52_c00182{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);}
.m18_c00182{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);}
.mc1_c00182{transform:matrix(0.167761,0.001174,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167761,0.001174,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167761,0.001174,-0.001750,0.249994,0,0);}
.m38_c00182{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);}
.m99_c00182{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.me2_c00182{transform:matrix(0.169371,0.001186,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169371,0.001186,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169371,0.001186,-0.001750,0.249994,0,0);}
.md_c00182{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);}
.mde_c00182{transform:matrix(0.169986,0.001190,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169986,0.001190,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169986,0.001190,-0.001750,0.249994,0,0);}
.m9c_c00182{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);}
.ma2_c00182{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);}
.m65_c00182{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);}
.mad_c00182{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);}
.mc8_c00182{transform:matrix(0.171666,0.001202,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171666,0.001202,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171666,0.001202,-0.001750,0.249994,0,0);}
.m89_c00182{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);}
.m15_c00182{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);}
.mc_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);}
.mdc_c00182{transform:matrix(0.173631,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173631,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173631,0.001215,-0.001750,0.249994,0,0);}
.m33_c00182{transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);}
.m70_c00182{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);}
.mb9_c00182{transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);}
.mdb_c00182{transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);}
.m85_c00182{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);}
.m2c_c00182{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);}
.m6d_c00182{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);}
.m35_c00182{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);}
.m40_c00182{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);}
.ma_c00182{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);}
.m9f_c00182{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);}
.m9a_c00182{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);}
.md3_c00182{transform:matrix(0.175676,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175676,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175676,0.001230,-0.001750,0.249994,0,0);}
.m29_c00182{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);}
.m23_c00182{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);}
.me3_c00182{transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176476,0.001235,-0.001750,0.249994,0,0);}
.md6_c00182{transform:matrix(0.177146,0.001240,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177146,0.001240,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177146,0.001240,-0.001750,0.249994,0,0);}
.m3f_c00182{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);}
.m90_c00182{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);}
.md7_c00182{transform:matrix(0.177971,0.001246,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177971,0.001246,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177971,0.001246,-0.001750,0.249994,0,0);}
.m7f_c00182{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);}
.m26_c00182{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);}
.m32_c00182{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);}
.m77_c00182{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);}
.mcf_c00182{transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);}
.mb7_c00182{transform:matrix(0.179136,0.001254,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179136,0.001254,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179136,0.001254,-0.001750,0.249994,0,0);}
.md0_c00182{transform:matrix(0.179631,0.001257,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179631,0.001257,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179631,0.001257,-0.001750,0.249994,0,0);}
.m94_c00182{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);}
.m22_c00182{transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);}
.m97_c00182{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);}
.m62_c00182{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);}
.mb5_c00182{transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);}
.m11_c00182{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);}
.m1b_c00182{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);}
.mc7_c00182{transform:matrix(0.183316,0.001283,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183316,0.001283,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183316,0.001283,-0.001750,0.249994,0,0);}
.me8_c00182{transform:matrix(0.183346,0.001283,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183346,0.001283,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183346,0.001283,-0.001750,0.249994,0,0);}
.m92_c00182{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);}
.m74_c00182{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);}
.m36_c00182{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);}
.mac_c00182{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);}
.mb2_c00182{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);}
.m86_c00182{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);}
.m7e_c00182{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);}
.me6_c00182{transform:matrix(0.185385,0.001298,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185385,0.001298,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185385,0.001298,-0.001750,0.249994,0,0);}
.m8a_c00182{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);}
.m6f_c00182{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);}
.mbc_c00182{transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);}
.m6e_c00182{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);}
.mc0_c00182{transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);}
.mc2_c00182{transform:matrix(0.187250,0.001311,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187250,0.001311,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187250,0.001311,-0.001750,0.249994,0,0);}
.m61_c00182{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);}
.mcc_c00182{transform:matrix(0.187455,0.001312,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187455,0.001312,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187455,0.001312,-0.001750,0.249994,0,0);}
.m9_c00182{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.m8d_c00182{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);}
.mdd_c00182{transform:matrix(0.188040,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188040,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188040,0.001316,-0.001750,0.249994,0,0);}
.m75_c00182{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);}
.mc9_c00182{transform:matrix(0.188885,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188885,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188885,0.001322,-0.001750,0.249994,0,0);}
.mc6_c00182{transform:matrix(0.189550,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189550,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189550,0.001327,-0.001750,0.249994,0,0);}
.ma4_c00182{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);}
.ma3_c00182{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);}
.mb1_c00182{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);}
.m12_c00182{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);}
.ma8_c00182{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);}
.m1d_c00182{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);}
.m48_c00182{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);}
.mda_c00182{transform:matrix(0.193570,0.001355,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193570,0.001355,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193570,0.001355,-0.001750,0.249994,0,0);}
.m47_c00182{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);}
.m5e_c00182{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);}
.m8c_c00182{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);}
.mbb_c00182{transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);}
.mdf_c00182{transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196400,0.001375,-0.001750,0.249994,0,0);}
.ma6_c00182{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);}
.m2e_c00182{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);}
.m1f_c00182{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);}
.m16_c00182{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);}
.m84_c00182{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);}
.m91_c00182{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);}
.m9b_c00182{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);}
.m7_c00182{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);}
.m5b_c00182{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);}
.m64_c00182{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);}
.me7_c00182{transform:matrix(0.200595,0.001404,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200595,0.001404,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200595,0.001404,-0.001750,0.249994,0,0);}
.m83_c00182{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);}
.m95_c00182{transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{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);}
.m6c_c00182{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);}
.mb4_c00182{transform:matrix(0.202280,0.001416,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202280,0.001416,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202280,0.001416,-0.001750,0.249994,0,0);}
.ma9_c00182{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);}
.mb3_c00182{transform:matrix(0.203385,0.001424,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203385,0.001424,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203385,0.001424,-0.001750,0.249994,0,0);}
.m10_c00182{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);}
.m41_c00182{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);}
.m96_c00182{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);}
.m45_c00182{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);}
.m37_c00182{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);}
.m43_c00182{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);}
.m6a_c00182{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);}
.ma1_c00182{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);}
.mb0_c00182{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);}
.m82_c00182{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);}
.m71_c00182{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);}
.m5d_c00182{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);}
.m72_c00182{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{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);}
.m76_c00182{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);}
.m63_c00182{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);}
.mc5_c00182{transform:matrix(0.212245,0.001486,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212245,0.001486,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212245,0.001486,-0.001750,0.249994,0,0);}
.m73_c00182{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);}
.me5_c00182{transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);}
.m28_c00182{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);}
.m93_c00182{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);}
.m2a_c00182{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);}
.mce_c00182{transform:matrix(0.220575,0.001544,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220575,0.001544,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220575,0.001544,-0.001750,0.249994,0,0);}
.m13_c00182{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);}
.m17_c00182{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);}
.m1c_c00182{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);}
.m5a_c00182{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);}
.m56_c00182{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);}
.m7d_c00182{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);}
.m88_c00182{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);}
.m67_c00182{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);}
.ma7_c00182{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);}
.mca_c00182{transform:matrix(0.237344,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237344,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237344,0.001661,-0.001750,0.249994,0,0);}
.m7c_c00182{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);}
.m42_c00182{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);}
.m5f_c00182{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);}
.md4_c00182{transform:matrix(0.240299,0.001682,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240299,0.001682,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240299,0.001682,-0.001750,0.249994,0,0);}
.m6b_c00182{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);}
.m21_c00182{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{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);}
.ma0_c00182{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);}
.mf_c00182{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);}
.m5_c00182{transform:matrix(0.251255,-0.002764,0.002750,0.249985,0,0);-ms-transform:matrix(0.251255,-0.002764,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251255,-0.002764,0.002750,0.249985,0,0);}
.m59_c00182{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);}
.m4_c00182{transform:matrix(0.256544,-0.002822,0.002750,0.249985,0,0);-ms-transform:matrix(0.256544,-0.002822,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256544,-0.002822,0.002750,0.249985,0,0);}
.m79_c00182{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);}
.ma5_c00182{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);}
.mbe_c00182{transform:matrix(0.264189,0.001849,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264189,0.001849,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264189,0.001849,-0.001750,0.249994,0,0);}
.m46_c00182{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);}
.mab_c00182{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{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);}
.m5c_c00182{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.me1_c00182{transform:matrix(0.268378,0.001879,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268378,0.001879,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268378,0.001879,-0.001750,0.249994,0,0);}
.md5_c00182{transform:matrix(0.269603,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269603,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269603,0.001887,-0.001750,0.249994,0,0);}
.m4d_c00182{transform:matrix(0.275165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275165,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{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);}
.md1_c00182{transform:matrix(0.289183,0.002024,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289183,0.002024,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289183,0.002024,-0.001750,0.249994,0,0);}
.m4e_c00182{transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297835,0.000000,0.000000,0.250000,0,0);}
.me0_c00182{transform:matrix(0.298198,0.002087,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298198,0.002087,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298198,0.002087,-0.001750,0.249994,0,0);}
.m31_c00182{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);}
.m24_c00182{transform:matrix(0.315485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315485,0.000000,0.000000,0.250000,0,0);}
.mb8_c00182{transform:matrix(0.317432,0.002222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.317432,0.002222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.317432,0.002222,-0.001750,0.249994,0,0);}
.m2f_c00182{transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322680,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.333575,-0.003669,0.002750,0.249985,0,0);-ms-transform:matrix(0.333575,-0.003669,0.002750,0.249985,0,0);-webkit-transform:matrix(0.333575,-0.003669,0.002750,0.249985,0,0);}
.m81_c00182{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mba_c00182{transform:matrix(0.350391,0.002453,-0.001750,0.249994,0,0);-ms-transform:matrix(0.350391,0.002453,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.350391,0.002453,-0.001750,0.249994,0,0);}
.mbf_c00182{transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);-ms-transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);}
.m68_c00182{transform:matrix(0.353610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353610,0.000000,0.000000,0.250000,0,0);}
.mcb_c00182{transform:matrix(0.366701,0.002567,-0.001750,0.249994,0,0);-ms-transform:matrix(0.366701,0.002567,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.366701,0.002567,-0.001750,0.249994,0,0);}
.m25_c00182{transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377140,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.385047,-0.004236,0.002750,0.249985,0,0);-ms-transform:matrix(0.385047,-0.004236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.385047,-0.004236,0.002750,0.249985,0,0);}
.m80_c00182{transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.472560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472560,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.484931,-0.005334,0.002750,0.249985,0,0);-ms-transform:matrix(0.484931,-0.005334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.484931,-0.005334,0.002750,0.249985,0,0);}
.m7a_c00182{transform:matrix(0.550035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550035,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.561016,-0.006171,0.002750,0.249985,0,0);-ms-transform:matrix(0.561016,-0.006171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.561016,-0.006171,0.002750,0.249985,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;}
.fs11_c00182{font-size:55.651363px;}
.fs10_c00182{font-size:57.751415px;}
.fs2_c00182{font-size:63.000000px;}
.fsa_c00182{font-size:64.050000px;}
.fsf_c00182{font-size:68.250000px;}
.fs3_c00182{font-size:70.350000px;}
.fs8_c00182{font-size:71.400000px;}
.fs6_c00182{font-size:72.450000px;}
.fs4_c00182{font-size:73.500000px;}
.fse_c00182{font-size:74.550000px;}
.fs1_c00182{font-size:75.600000px;}
.fsd_c00182{font-size:77.700000px;}
.fs0_c00182{font-size:79.804828px;}
.fs7_c00182{font-size:80.850000px;}
.fsb_c00182{font-size:88.200000px;}
.fs5_c00182{font-size:95.550000px;}
.fs9_c00182{font-size:102.900000px;}
.fsc_c00182{font-size:126.000000px;}
.y0_c00182{bottom:0.000000px;}
.y7e_c00182{bottom:153.311261px;}
.y7d_c00182{bottom:159.359449px;}
.y7c_c00182{bottom:160.113162px;}
.y7b_c00182{bottom:160.772070px;}
.y7a_c00182{bottom:161.309868px;}
.y79_c00182{bottom:161.977958px;}
.y78_c00182{bottom:162.329295px;}
.y77_c00182{bottom:163.542087px;}
.y76_c00182{bottom:164.165655px;}
.y75_c00182{bottom:173.792832px;}
.y74_c00182{bottom:174.178204px;}
.y73_c00182{bottom:174.356031px;}
.y72_c00182{bottom:174.458653px;}
.y71_c00182{bottom:174.610814px;}
.y70_c00182{bottom:174.865575px;}
.y6f_c00182{bottom:175.041205px;}
.y6e_c00182{bottom:175.089901px;}
.y6d_c00182{bottom:175.345114px;}
.y6c_c00182{bottom:175.516997px;}
.y6b_c00182{bottom:175.864878px;}
.y6a_c00182{bottom:175.955844px;}
.y69_c00182{bottom:176.275590px;}
.y68_c00182{bottom:176.530351px;}
.y67_c00182{bottom:176.581390px;}
.y66_c00182{bottom:192.302617px;}
.y65_c00182{bottom:192.758528px;}
.y64_c00182{bottom:193.260109px;}
.y63_c00182{bottom:193.745662px;}
.y62_c00182{bottom:193.877378px;}
.y61_c00182{bottom:194.196607px;}
.y60_c00182{bottom:194.475057px;}
.y5f_c00182{bottom:194.634924px;}
.y5e_c00182{bottom:194.939847px;}
.y5d_c00182{bottom:195.404312px;}
.y5c_c00182{bottom:195.805943px;}
.y5b_c00182{bottom:196.151426px;}
.y5a_c00182{bottom:196.512675px;}
.y59_c00182{bottom:196.563616px;}
.y58_c00182{bottom:196.968564px;}
.y57_c00182{bottom:197.099754px;}
.y56_c00182{bottom:209.433650px;}
.y55_c00182{bottom:209.904406px;}
.y54_c00182{bottom:210.100841px;}
.y53_c00182{bottom:210.172954px;}
.y52_c00182{bottom:210.316489px;}
.y51_c00182{bottom:210.418402px;}
.y50_c00182{bottom:210.575115px;}
.y4f_c00182{bottom:210.820993px;}
.y4e_c00182{bottom:210.921384px;}
.y4d_c00182{bottom:211.159282px;}
.y4c_c00182{bottom:211.278353px;}
.y4b_c00182{bottom:211.552413px;}
.y4a_c00182{bottom:211.820835px;}
.y49_c00182{bottom:212.162599px;}
.y48_c00182{bottom:212.331187px;}
.y47_c00182{bottom:212.490000px;}
.y46_c00182{bottom:259.170000px;}
.y45_c00182{bottom:259.533000px;}
.y44_c00182{bottom:260.266500px;}
.y43_c00182{bottom:260.881500px;}
.y42_c00182{bottom:261.289500px;}
.y41_c00182{bottom:262.132500px;}
.y40_c00182{bottom:262.747500px;}
.y3f_c00182{bottom:263.247000px;}
.y3e_c00182{bottom:281.419500px;}
.y3d_c00182{bottom:282.057000px;}
.y3c_c00182{bottom:282.339000px;}
.y3b_c00182{bottom:282.793500px;}
.y3a_c00182{bottom:283.173000px;}
.y39_c00182{bottom:283.494000px;}
.y38_c00182{bottom:284.088000px;}
.y37_c00182{bottom:284.436000px;}
.y36_c00182{bottom:284.718000px;}
.y35_c00182{bottom:285.327000px;}
.y34_c00182{bottom:285.657000px;}
.y33_c00182{bottom:305.514000px;}
.y32_c00182{bottom:305.695500px;}
.y31_c00182{bottom:306.238500px;}
.y30_c00182{bottom:306.597000px;}
.y2f_c00182{bottom:306.948000px;}
.y2e_c00182{bottom:307.176000px;}
.y2d_c00182{bottom:307.699500px;}
.y2c_c00182{bottom:308.068500px;}
.y2b_c00182{bottom:308.335500px;}
.y2a_c00182{bottom:329.721000px;}
.y29_c00182{bottom:352.839000px;}
.y28_c00182{bottom:375.222000px;}
.y27_c00182{bottom:397.395000px;}
.y26_c00182{bottom:420.472500px;}
.y25_c00182{bottom:439.876500px;}
.y24_c00182{bottom:465.711000px;}
.y23_c00182{bottom:466.899000px;}
.y22_c00182{bottom:467.230500px;}
.y21_c00182{bottom:467.605500px;}
.y20_c00182{bottom:468.246000px;}
.y1f_c00182{bottom:468.988500px;}
.y1e_c00182{bottom:489.202500px;}
.y1d_c00182{bottom:489.708000px;}
.y1c_c00182{bottom:490.054500px;}
.y1b_c00182{bottom:490.270500px;}
.y1a_c00182{bottom:490.594500px;}
.y19_c00182{bottom:490.953000px;}
.y18_c00182{bottom:491.193000px;}
.y17_c00182{bottom:491.374500px;}
.y16_c00182{bottom:491.938500px;}
.y15_c00182{bottom:512.410500px;}
.y14_c00182{bottom:536.223000px;}
.y13_c00182{bottom:559.114500px;}
.y12_c00182{bottom:581.340000px;}
.y11_c00182{bottom:621.904500px;}
.y10_c00182{bottom:649.525500px;}
.yf_c00182{bottom:672.751500px;}
.ye_c00182{bottom:695.436000px;}
.yd_c00182{bottom:718.468500px;}
.yc_c00182{bottom:741.280500px;}
.yb_c00182{bottom:764.145000px;}
.ya_c00182{bottom:787.491000px;}
.y9_c00182{bottom:810.270000px;}
.y8_c00182{bottom:833.698500px;}
.y1_c00182{bottom:869.680500px;}
.y2_c00182{bottom:870.208665px;}
.y3_c00182{bottom:871.063184px;}
.y4_c00182{bottom:873.441593px;}
.y5_c00182{bottom:874.391877px;}
.y6_c00182{bottom:875.113257px;}
.y7_c00182{bottom:875.812049px;}
.h13_c00182{height:55.651363px;}
.h12_c00182{height:57.751415px;}
.h4_c00182{height:63.000000px;}
.hc_c00182{height:64.050000px;}
.h11_c00182{height:68.250000px;}
.h5_c00182{height:70.350000px;}
.ha_c00182{height:71.400000px;}
.h8_c00182{height:72.450000px;}
.h6_c00182{height:73.500000px;}
.h10_c00182{height:74.550000px;}
.h3_c00182{height:75.600000px;}
.hf_c00182{height:77.700000px;}
.h2_c00182{height:79.804828px;}
.h9_c00182{height:80.850000px;}
.hd_c00182{height:88.200000px;}
.h7_c00182{height:95.550000px;}
.hb_c00182{height:102.900000px;}
.he_c00182{height:126.000000px;}
.h1_c00182{height:1005.000000px;}
.h0_c00182{height:1005.150000px;}
.w0_c00182{width:735.750000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:57.127500px;}
.x95_c00182{left:82.177811px;}
.x83_c00182{left:98.252125px;}
.x8f_c00182{left:102.589217px;}
.x2_c00182{left:105.142500px;}
.x84_c00182{left:111.421852px;}
.x79_c00182{left:121.683000px;}
.x40_c00182{left:128.790000px;}
.x75_c00182{left:136.978500px;}
.x71_c00182{left:138.892500px;}
.x4f_c00182{left:140.670000px;}
.x4a_c00182{left:143.370000px;}
.x38_c00182{left:144.990000px;}
.x8_c00182{left:146.070000px;}
.x85_c00182{left:151.913502px;}
.x90_c00182{left:153.561074px;}
.x86_c00182{left:157.047897px;}
.x41_c00182{left:164.700000px;}
.x72_c00182{left:168.903000px;}
.x9_c00182{left:171.450000px;}
.x76_c00182{left:172.687500px;}
.x39_c00182{left:174.960000px;}
.x64_c00182{left:176.851500px;}
.x2d_c00182{left:179.010000px;}
.x18_c00182{left:180.360000px;}
.x68_c00182{left:181.711500px;}
.x3_c00182{left:182.826000px;}
.x96_c00182{left:186.410105px;}
.x10_c00182{left:187.920000px;}
.x33_c00182{left:191.160000px;}
.x87_c00182{left:193.225641px;}
.x5c_c00182{left:194.530500px;}
.x65_c00182{left:196.291500px;}
.x50_c00182{left:197.640000px;}
.x42_c00182{left:201.960000px;}
.xa_c00182{left:203.040000px;}
.x2e_c00182{left:204.390000px;}
.x63_c00182{left:206.821500px;}
.x6d_c00182{left:209.103000px;}
.x4b_c00182{left:211.950000px;}
.x3a_c00182{left:215.190000px;}
.x25_c00182{left:216.270000px;}
.x7a_c00182{left:217.278000px;}
.x69_c00182{left:218.971500px;}
.x19_c00182{left:220.050000px;}
.x91_c00182{left:221.877546px;}
.x73_c00182{left:224.284500px;}
.x11_c00182{left:225.990000px;}
.x88_c00182{left:227.793916px;}
.x34_c00182{left:229.770000px;}
.x3b_c00182{left:235.710000px;}
.x2f_c00182{left:238.140000px;}
.x43_c00182{left:240.570000px;}
.x97_c00182{left:243.816977px;}
.x26_c00182{left:245.970000px;}
.x35_c00182{left:249.210000px;}
.xb_c00182{left:254.880000px;}
.x23_c00182{left:260.010000px;}
.x51_c00182{left:262.440000px;}
.x12_c00182{left:265.410000px;}
.x56_c00182{left:268.012500px;}
.x61_c00182{left:271.621500px;}
.x20_c00182{left:273.240000px;}
.x98_c00182{left:275.157900px;}
.x1a_c00182{left:277.020000px;}
.x44_c00182{left:278.640000px;}
.x27_c00182{left:279.990000px;}
.x4c_c00182{left:281.610000px;}
.x5d_c00182{left:284.319000px;}
.x13_c00182{left:290.250000px;}
.x45_c00182{left:293.490000px;}
.x7b_c00182{left:294.775500px;}
.x5e_c00182{left:296.191500px;}
.x24_c00182{left:298.350000px;}
.x49_c00182{left:301.050000px;}
.x1b_c00182{left:302.940000px;}
.x3c_c00182{left:305.910000px;}
.x54_c00182{left:307.530000px;}
.x66_c00182{left:309.151500px;}
.x36_c00182{left:311.310000px;}
.x57_c00182{left:312.834000px;}
.x21_c00182{left:315.360000px;}
.xc_c00182{left:317.250000px;}
.x6e_c00182{left:319.303500px;}
.x62_c00182{left:325.891500px;}
.x52_c00182{left:326.970000px;}
.x3d_c00182{left:330.210000px;}
.x14_c00182{left:332.910000px;}
.x74_c00182{left:335.530500px;}
.x67_c00182{left:341.281500px;}
.x28_c00182{left:343.170000px;}
.x7c_c00182{left:345.771000px;}
.x30_c00182{left:347.760000px;}
.x1c_c00182{left:348.840000px;}
.x77_c00182{left:349.969500px;}
.x15_c00182{left:351.270000px;}
.x58_c00182{left:353.334000px;}
.x6f_c00182{left:355.188000px;}
.x6a_c00182{left:359.911500px;}
.x89_c00182{left:360.917623px;}
.x29_c00182{left:363.690000px;}
.x22_c00182{left:366.930000px;}
.xd_c00182{left:369.630000px;}
.x3e_c00182{left:371.790000px;}
.x4d_c00182{left:375.300000px;}
.x59_c00182{left:380.371500px;}
.x46_c00182{left:385.020000px;}
.x8a_c00182{left:388.695536px;}
.x1d_c00182{left:390.150000px;}
.x16_c00182{left:392.850000px;}
.x7d_c00182{left:395.238000px;}
.x4_c00182{left:399.045000px;}
.x78_c00182{left:402.384000px;}
.x53_c00182{left:407.430000px;}
.x70_c00182{left:409.464000px;}
.xe_c00182{left:411.480000px;}
.x37_c00182{left:413.100000px;}
.x47_c00182{left:416.610000px;}
.x7e_c00182{left:417.625500px;}
.x31_c00182{left:418.770000px;}
.x8b_c00182{left:420.584863px;}
.x5a_c00182{left:423.607500px;}
.x17_c00182{left:426.870000px;}
.x5f_c00182{left:428.761500px;}
.x2a_c00182{left:431.190000px;}
.x8c_c00182{left:433.829591px;}
.x32_c00182{left:440.910000px;}
.x1e_c00182{left:443.340000px;}
.x4e_c00182{left:448.740000px;}
.x48_c00182{left:450.630000px;}
.x7f_c00182{left:452.689500px;}
.x6b_c00182{left:454.411500px;}
.x92_c00182{left:455.982674px;}
.x80_c00182{left:462.991500px;}
.x1f_c00182{left:467.100000px;}
.xf_c00182{left:473.580000px;}
.x8d_c00182{left:482.407572px;}
.x5_c00182{left:485.434500px;}
.x5b_c00182{left:486.703500px;}
.x55_c00182{left:488.160000px;}
.x81_c00182{left:491.053500px;}
.x6c_c00182{left:492.211500px;}
.x93_c00182{left:502.689999px;}
.x3f_c00182{left:506.520000px;}
.x60_c00182{left:524.611500px;}
.x2b_c00182{left:531.900000px;}
.x2c_c00182{left:548.100000px;}
.x6_c00182{left:551.014500px;}
.x82_c00182{left:558.304500px;}
.x94_c00182{left:566.957951px;}
.x8e_c00182{left:578.261566px;}
.x99_c00182{left:599.040659px;}
.x7_c00182{left:614.541000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.000000pt;}
.fs11_c00182{font-size:49.467879pt;}
.fs10_c00182{font-size:51.334591pt;}
.fs2_c00182{font-size:56.000000pt;}
.fsa_c00182{font-size:56.933333pt;}
.fsf_c00182{font-size:60.666667pt;}
.fs3_c00182{font-size:62.533333pt;}
.fs8_c00182{font-size:63.466667pt;}
.fs6_c00182{font-size:64.400000pt;}
.fs4_c00182{font-size:65.333333pt;}
.fse_c00182{font-size:66.266667pt;}
.fs1_c00182{font-size:67.200000pt;}
.fsd_c00182{font-size:69.066667pt;}
.fs0_c00182{font-size:70.937625pt;}
.fs7_c00182{font-size:71.866667pt;}
.fsb_c00182{font-size:78.400000pt;}
.fs5_c00182{font-size:84.933333pt;}
.fs9_c00182{font-size:91.466667pt;}
.fsc_c00182{font-size:112.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y7e_c00182{bottom:136.276676pt;}
.y7d_c00182{bottom:141.652844pt;}
.y7c_c00182{bottom:142.322811pt;}
.y7b_c00182{bottom:142.908507pt;}
.y7a_c00182{bottom:143.386549pt;}
.y79_c00182{bottom:143.980407pt;}
.y78_c00182{bottom:144.292707pt;}
.y77_c00182{bottom:145.370744pt;}
.y76_c00182{bottom:145.925027pt;}
.y75_c00182{bottom:154.482517pt;}
.y74_c00182{bottom:154.825071pt;}
.y73_c00182{bottom:154.983139pt;}
.y72_c00182{bottom:155.074359pt;}
.y71_c00182{bottom:155.209612pt;}
.y70_c00182{bottom:155.436067pt;}
.y6f_c00182{bottom:155.592183pt;}
.y6e_c00182{bottom:155.635468pt;}
.y6d_c00182{bottom:155.862324pt;}
.y6c_c00182{bottom:156.015108pt;}
.y6b_c00182{bottom:156.324336pt;}
.y6a_c00182{bottom:156.405195pt;}
.y69_c00182{bottom:156.689413pt;}
.y68_c00182{bottom:156.915868pt;}
.y67_c00182{bottom:156.961236pt;}
.y66_c00182{bottom:170.935660pt;}
.y65_c00182{bottom:171.340913pt;}
.y64_c00182{bottom:171.786764pt;}
.y63_c00182{bottom:172.218367pt;}
.y62_c00182{bottom:172.335447pt;}
.y61_c00182{bottom:172.619207pt;}
.y60_c00182{bottom:172.866717pt;}
.y5f_c00182{bottom:173.008821pt;}
.y5e_c00182{bottom:173.279864pt;}
.y5d_c00182{bottom:173.692721pt;}
.y5c_c00182{bottom:174.049727pt;}
.y5b_c00182{bottom:174.356823pt;}
.y5a_c00182{bottom:174.677933pt;}
.y59_c00182{bottom:174.723215pt;}
.y58_c00182{bottom:175.083168pt;}
.y57_c00182{bottom:175.199781pt;}
.y56_c00182{bottom:186.163244pt;}
.y55_c00182{bottom:186.581695pt;}
.y54_c00182{bottom:186.756303pt;}
.y53_c00182{bottom:186.820404pt;}
.y52_c00182{bottom:186.947991pt;}
.y51_c00182{bottom:187.038580pt;}
.y50_c00182{bottom:187.177880pt;}
.y4f_c00182{bottom:187.396439pt;}
.y4e_c00182{bottom:187.485675pt;}
.y4d_c00182{bottom:187.697140pt;}
.y4c_c00182{bottom:187.802980pt;}
.y4b_c00182{bottom:188.046589pt;}
.y4a_c00182{bottom:188.285187pt;}
.y49_c00182{bottom:188.588977pt;}
.y48_c00182{bottom:188.738833pt;}
.y47_c00182{bottom:188.880000pt;}
.y46_c00182{bottom:230.373333pt;}
.y45_c00182{bottom:230.696000pt;}
.y44_c00182{bottom:231.348000pt;}
.y43_c00182{bottom:231.894667pt;}
.y42_c00182{bottom:232.257333pt;}
.y41_c00182{bottom:233.006667pt;}
.y40_c00182{bottom:233.553333pt;}
.y3f_c00182{bottom:233.997333pt;}
.y3e_c00182{bottom:250.150667pt;}
.y3d_c00182{bottom:250.717333pt;}
.y3c_c00182{bottom:250.968000pt;}
.y3b_c00182{bottom:251.372000pt;}
.y3a_c00182{bottom:251.709333pt;}
.y39_c00182{bottom:251.994667pt;}
.y38_c00182{bottom:252.522667pt;}
.y37_c00182{bottom:252.832000pt;}
.y36_c00182{bottom:253.082667pt;}
.y35_c00182{bottom:253.624000pt;}
.y34_c00182{bottom:253.917333pt;}
.y33_c00182{bottom:271.568000pt;}
.y32_c00182{bottom:271.729333pt;}
.y31_c00182{bottom:272.212000pt;}
.y30_c00182{bottom:272.530667pt;}
.y2f_c00182{bottom:272.842667pt;}
.y2e_c00182{bottom:273.045333pt;}
.y2d_c00182{bottom:273.510667pt;}
.y2c_c00182{bottom:273.838667pt;}
.y2b_c00182{bottom:274.076000pt;}
.y2a_c00182{bottom:293.085333pt;}
.y29_c00182{bottom:313.634667pt;}
.y28_c00182{bottom:333.530667pt;}
.y27_c00182{bottom:353.240000pt;}
.y26_c00182{bottom:373.753333pt;}
.y25_c00182{bottom:391.001333pt;}
.y24_c00182{bottom:413.965333pt;}
.y23_c00182{bottom:415.021333pt;}
.y22_c00182{bottom:415.316000pt;}
.y21_c00182{bottom:415.649333pt;}
.y20_c00182{bottom:416.218667pt;}
.y1f_c00182{bottom:416.878667pt;}
.y1e_c00182{bottom:434.846667pt;}
.y1d_c00182{bottom:435.296000pt;}
.y1c_c00182{bottom:435.604000pt;}
.y1b_c00182{bottom:435.796000pt;}
.y1a_c00182{bottom:436.084000pt;}
.y19_c00182{bottom:436.402667pt;}
.y18_c00182{bottom:436.616000pt;}
.y17_c00182{bottom:436.777333pt;}
.y16_c00182{bottom:437.278667pt;}
.y15_c00182{bottom:455.476000pt;}
.y14_c00182{bottom:476.642667pt;}
.y13_c00182{bottom:496.990667pt;}
.y12_c00182{bottom:516.746667pt;}
.y11_c00182{bottom:552.804000pt;}
.y10_c00182{bottom:577.356000pt;}
.yf_c00182{bottom:598.001333pt;}
.ye_c00182{bottom:618.165333pt;}
.yd_c00182{bottom:638.638667pt;}
.yc_c00182{bottom:658.916000pt;}
.yb_c00182{bottom:679.240000pt;}
.ya_c00182{bottom:699.992000pt;}
.y9_c00182{bottom:720.240000pt;}
.y8_c00182{bottom:741.065333pt;}
.y1_c00182{bottom:773.049333pt;}
.y2_c00182{bottom:773.518813pt;}
.y3_c00182{bottom:774.278385pt;}
.y4_c00182{bottom:776.392527pt;}
.y5_c00182{bottom:777.237224pt;}
.y6_c00182{bottom:777.878451pt;}
.y7_c00182{bottom:778.499599pt;}
.h13_c00182{height:49.467879pt;}
.h12_c00182{height:51.334591pt;}
.h4_c00182{height:56.000000pt;}
.hc_c00182{height:56.933333pt;}
.h11_c00182{height:60.666667pt;}
.h5_c00182{height:62.533333pt;}
.ha_c00182{height:63.466667pt;}
.h8_c00182{height:64.400000pt;}
.h6_c00182{height:65.333333pt;}
.h10_c00182{height:66.266667pt;}
.h3_c00182{height:67.200000pt;}
.hf_c00182{height:69.066667pt;}
.h2_c00182{height:70.937625pt;}
.h9_c00182{height:71.866667pt;}
.hd_c00182{height:78.400000pt;}
.h7_c00182{height:84.933333pt;}
.hb_c00182{height:91.466667pt;}
.he_c00182{height:112.000000pt;}
.h1_c00182{height:893.333333pt;}
.h0_c00182{height:893.466667pt;}
.w0_c00182{width:654.000000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:50.780000pt;}
.x95_c00182{left:73.046943pt;}
.x83_c00182{left:87.335223pt;}
.x8f_c00182{left:91.190415pt;}
.x2_c00182{left:93.460000pt;}
.x84_c00182{left:99.041647pt;}
.x79_c00182{left:108.162667pt;}
.x40_c00182{left:114.480000pt;}
.x75_c00182{left:121.758667pt;}
.x71_c00182{left:123.460000pt;}
.x4f_c00182{left:125.040000pt;}
.x4a_c00182{left:127.440000pt;}
.x38_c00182{left:128.880000pt;}
.x8_c00182{left:129.840000pt;}
.x85_c00182{left:135.034224pt;}
.x90_c00182{left:136.498732pt;}
.x86_c00182{left:139.598131pt;}
.x41_c00182{left:146.400000pt;}
.x72_c00182{left:150.136000pt;}
.x9_c00182{left:152.400000pt;}
.x76_c00182{left:153.500000pt;}
.x39_c00182{left:155.520000pt;}
.x64_c00182{left:157.201333pt;}
.x2d_c00182{left:159.120000pt;}
.x18_c00182{left:160.320000pt;}
.x68_c00182{left:161.521333pt;}
.x3_c00182{left:162.512000pt;}
.x96_c00182{left:165.697871pt;}
.x10_c00182{left:167.040000pt;}
.x33_c00182{left:169.920000pt;}
.x87_c00182{left:171.756125pt;}
.x5c_c00182{left:172.916000pt;}
.x65_c00182{left:174.481333pt;}
.x50_c00182{left:175.680000pt;}
.x42_c00182{left:179.520000pt;}
.xa_c00182{left:180.480000pt;}
.x2e_c00182{left:181.680000pt;}
.x63_c00182{left:183.841333pt;}
.x6d_c00182{left:185.869333pt;}
.x4b_c00182{left:188.400000pt;}
.x3a_c00182{left:191.280000pt;}
.x25_c00182{left:192.240000pt;}
.x7a_c00182{left:193.136000pt;}
.x69_c00182{left:194.641333pt;}
.x19_c00182{left:195.600000pt;}
.x91_c00182{left:197.224485pt;}
.x73_c00182{left:199.364000pt;}
.x11_c00182{left:200.880000pt;}
.x88_c00182{left:202.483481pt;}
.x34_c00182{left:204.240000pt;}
.x3b_c00182{left:209.520000pt;}
.x2f_c00182{left:211.680000pt;}
.x43_c00182{left:213.840000pt;}
.x97_c00182{left:216.726201pt;}
.x26_c00182{left:218.640000pt;}
.x35_c00182{left:221.520000pt;}
.xb_c00182{left:226.560000pt;}
.x23_c00182{left:231.120000pt;}
.x51_c00182{left:233.280000pt;}
.x12_c00182{left:235.920000pt;}
.x56_c00182{left:238.233333pt;}
.x61_c00182{left:241.441333pt;}
.x20_c00182{left:242.880000pt;}
.x98_c00182{left:244.584800pt;}
.x1a_c00182{left:246.240000pt;}
.x44_c00182{left:247.680000pt;}
.x27_c00182{left:248.880000pt;}
.x4c_c00182{left:250.320000pt;}
.x5d_c00182{left:252.728000pt;}
.x13_c00182{left:258.000000pt;}
.x45_c00182{left:260.880000pt;}
.x7b_c00182{left:262.022667pt;}
.x5e_c00182{left:263.281333pt;}
.x24_c00182{left:265.200000pt;}
.x49_c00182{left:267.600000pt;}
.x1b_c00182{left:269.280000pt;}
.x3c_c00182{left:271.920000pt;}
.x54_c00182{left:273.360000pt;}
.x66_c00182{left:274.801333pt;}
.x36_c00182{left:276.720000pt;}
.x57_c00182{left:278.074667pt;}
.x21_c00182{left:280.320000pt;}
.xc_c00182{left:282.000000pt;}
.x6e_c00182{left:283.825333pt;}
.x62_c00182{left:289.681333pt;}
.x52_c00182{left:290.640000pt;}
.x3d_c00182{left:293.520000pt;}
.x14_c00182{left:295.920000pt;}
.x74_c00182{left:298.249333pt;}
.x67_c00182{left:303.361333pt;}
.x28_c00182{left:305.040000pt;}
.x7c_c00182{left:307.352000pt;}
.x30_c00182{left:309.120000pt;}
.x1c_c00182{left:310.080000pt;}
.x77_c00182{left:311.084000pt;}
.x15_c00182{left:312.240000pt;}
.x58_c00182{left:314.074667pt;}
.x6f_c00182{left:315.722667pt;}
.x6a_c00182{left:319.921333pt;}
.x89_c00182{left:320.815665pt;}
.x29_c00182{left:323.280000pt;}
.x22_c00182{left:326.160000pt;}
.xd_c00182{left:328.560000pt;}
.x3e_c00182{left:330.480000pt;}
.x4d_c00182{left:333.600000pt;}
.x59_c00182{left:338.108000pt;}
.x46_c00182{left:342.240000pt;}
.x8a_c00182{left:345.507143pt;}
.x1d_c00182{left:346.800000pt;}
.x16_c00182{left:349.200000pt;}
.x7d_c00182{left:351.322667pt;}
.x4_c00182{left:354.706667pt;}
.x78_c00182{left:357.674667pt;}
.x53_c00182{left:362.160000pt;}
.x70_c00182{left:363.968000pt;}
.xe_c00182{left:365.760000pt;}
.x37_c00182{left:367.200000pt;}
.x47_c00182{left:370.320000pt;}
.x7e_c00182{left:371.222667pt;}
.x31_c00182{left:372.240000pt;}
.x8b_c00182{left:373.853212pt;}
.x5a_c00182{left:376.540000pt;}
.x17_c00182{left:379.440000pt;}
.x5f_c00182{left:381.121333pt;}
.x2a_c00182{left:383.280000pt;}
.x8c_c00182{left:385.626303pt;}
.x32_c00182{left:391.920000pt;}
.x1e_c00182{left:394.080000pt;}
.x4e_c00182{left:398.880000pt;}
.x48_c00182{left:400.560000pt;}
.x7f_c00182{left:402.390667pt;}
.x6b_c00182{left:403.921333pt;}
.x92_c00182{left:405.317932pt;}
.x80_c00182{left:411.548000pt;}
.x1f_c00182{left:415.200000pt;}
.xf_c00182{left:420.960000pt;}
.x8d_c00182{left:428.806731pt;}
.x5_c00182{left:431.497333pt;}
.x5b_c00182{left:432.625333pt;}
.x55_c00182{left:433.920000pt;}
.x81_c00182{left:436.492000pt;}
.x6c_c00182{left:437.521333pt;}
.x93_c00182{left:446.835555pt;}
.x3f_c00182{left:450.240000pt;}
.x60_c00182{left:466.321333pt;}
.x2b_c00182{left:472.800000pt;}
.x2c_c00182{left:487.200000pt;}
.x6_c00182{left:489.790667pt;}
.x82_c00182{left:496.270667pt;}
.x94_c00182{left:503.962623pt;}
.x8e_c00182{left:514.010281pt;}
.x99_c00182{left:532.480585pt;}
.x7_c00182{left:546.258667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m82_c00183{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);}
.m38_c00183{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);}
.m142_c00183{transform:matrix(0.011294,0.000124,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011294,0.000124,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011294,0.000124,-0.002750,0.249985,0,0);}
.m13e_c00183{transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);}
.m13c_c00183{transform:matrix(0.019314,0.000212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.019314,0.000212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.019314,0.000212,-0.002750,0.249985,0,0);}
.mce_c00183{transform:matrix(0.067653,0.000947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.067653,0.000947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.067653,0.000947,-0.003500,0.249976,0,0);}
.m1a_c00183{transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);}
.m8f_c00183{transform:matrix(0.132230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132230,0.000000,0.000000,0.250000,0,0);}
.m13d_c00183{transform:matrix(0.138242,0.001521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138242,0.001521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138242,0.001521,-0.002750,0.249985,0,0);}
.m57_c00183{transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);}
.m9e_c00183{transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143030,0.000000,0.000000,0.250000,0,0);}
.mcd_c00183{transform:matrix(0.143251,0.002006,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143251,0.002006,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143251,0.002006,-0.003500,0.249976,0,0);}
.ma2_c00183{transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145920,0.000000,0.000000,0.250000,0,0);}
.mac_c00183{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00183{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);}
.m91_c00183{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);}
.m3e_c00183{transform:matrix(0.147145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147145,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);}
.m125_c00183{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);}
.m55_c00183{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);}
.mad_c00183{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);}
.m52_c00183{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);}
.m90_c00183{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);}
.m5c_c00183{transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);}
.m98_c00183{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);}
.m4c_c00183{transform:matrix(0.152505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152505,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.mb3_c00183{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);}
.m48_c00183{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);}
.m14_c00183{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);}
.m127_c00183{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00183{transform:matrix(0.155245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155245,0.000000,0.000000,0.250000,0,0);}
.m6b_c00183{transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{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);}
.m92_c00183{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);}
.m11e_c00183{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);}
.mca_c00183{transform:matrix(0.157595,0.002206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157595,0.002206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157595,0.002206,-0.003500,0.249976,0,0);}
.m30_c00183{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);}
.m49_c00183{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);}
.mb7_c00183{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);}
.m22_c00183{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{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);}
.mc9_c00183{transform:matrix(0.159309,0.002230,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159309,0.002230,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159309,0.002230,-0.003500,0.249976,0,0);}
.m6c_c00183{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.m84_c00183{transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);}
.m72_c00183{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);}
.m24_c00183{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);}
.m4_c00183{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);}
.mba_c00183{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);}
.ma8_c00183{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);}
.mb_c00183{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);}
.m100_c00183{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);}
.m3a_c00183{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);}
.mcc_c00183{transform:matrix(0.165014,0.002310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165014,0.002310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165014,0.002310,-0.003500,0.249976,0,0);}
.m77_c00183{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);}
.mf5_c00183{transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{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);}
.m67_c00183{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);}
.m16_c00183{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);}
.m58_c00183{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);}
.m4e_c00183{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00183{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);}
.m40_c00183{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);}
.m9f_c00183{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);}
.m5e_c00183{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);}
.mc7_c00183{transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);}
.m51_c00183{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);}
.m42_c00183{transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{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);}
.m12_c00183{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);}
.m29_c00183{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);}
.m43_c00183{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);}
.m121_c00183{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);}
.ma3_c00183{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);}
.m5d_c00183{transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171810,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{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);}
.mbf_c00183{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);}
.m81_c00183{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);}
.m32_c00183{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);}
.m116_c00183{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);}
.m78_c00183{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);}
.m83_c00183{transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{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);}
.md_c00183{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);}
.mbd_c00183{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);}
.m112_c00183{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);}
.m118_c00183{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);}
.m3f_c00183{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);}
.md8_c00183{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);}
.mf_c00183{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);}
.m41_c00183{transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{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);}
.m7d_c00183{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00183{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);}
.mc_c00183{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);}
.m115_c00183{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);}
.m69_c00183{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);}
.m120_c00183{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);}
.m3b_c00183{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);}
.m80_c00183{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);}
.m15_c00183{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);}
.m47_c00183{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);}
.mfa_c00183{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);}
.m104_c00183{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);}
.m33_c00183{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);}
.m23_c00183{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);}
.m60_c00183{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);}
.m8b_c00183{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);}
.m99_c00183{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);}
.me4_c00183{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);}
.mcb_c00183{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);}
.mb0_c00183{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);}
.m19_c00183{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);}
.m2c_c00183{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);}
.m2d_c00183{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);}
.mf6_c00183{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);}
.m126_c00183{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);}
.m122_c00183{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);}
.m6_c00183{transform:matrix(0.181338,0.004352,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181338,0.004352,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181338,0.004352,-0.005998,0.249928,0,0);}
.mb4_c00183{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);}
.m8d_c00183{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);}
.m11b_c00183{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);}
.m9b_c00183{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);}
.mc1_c00183{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);}
.m96_c00183{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);}
.mf1_c00183{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);}
.m136_c00183{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);}
.m102_c00183{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);}
.m18_c00183{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);}
.mf7_c00183{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);}
.m12d_c00183{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);}
.maf_c00183{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);}
.m6e_c00183{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);}
.m137_c00183{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);}
.m2b_c00183{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);}
.m11c_c00183{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);}
.mbb_c00183{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);}
.mc8_c00183{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);}
.mfd_c00183{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);}
.m2_c00183{transform:matrix(0.186211,0.004469,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186211,0.004469,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186211,0.004469,-0.005998,0.249928,0,0);}
.mda_c00183{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);}
.m46_c00183{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);}
.m3d_c00183{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);}
.m6d_c00183{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);}
.mb5_c00183{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);}
.m131_c00183{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);}
.m119_c00183{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);}
.m12c_c00183{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);}
.m70_c00183{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);}
.m5b_c00183{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_c00183{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);}
.m12a_c00183{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);}
.ma1_c00183{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);}
.ma_c00183{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);}
.m128_c00183{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);}
.m9a_c00183{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);}
.m11a_c00183{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);}
.m7c_c00183{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);}
.m124_c00183{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);}
.m101_c00183{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);}
.md9_c00183{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);}
.me8_c00183{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);}
.m6f_c00183{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);}
.md7_c00183{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);}
.m8c_c00183{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);}
.m132_c00183{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);}
.m63_c00183{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);}
.md2_c00183{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);}
.m11f_c00183{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);}
.m75_c00183{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);}
.m20_c00183{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);}
.m103_c00183{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);}
.m11d_c00183{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m25_c00183{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);}
.m4d_c00183{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);}
.m26_c00183{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);}
.m108_c00183{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);}
.m71_c00183{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);}
.m50_c00183{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);}
.mff_c00183{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);}
.m86_c00183{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);}
.me6_c00183{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);}
.m9_c00183{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);}
.m2f_c00183{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);}
.mc2_c00183{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);}
.md1_c00183{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);}
.mc6_c00183{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);}
.mc0_c00183{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);}
.m17_c00183{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);}
.m53_c00183{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);}
.m28_c00183{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);}
.m13_c00183{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);}
.m36_c00183{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);}
.mc5_c00183{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);}
.m66_c00183{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);}
.mec_c00183{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);}
.m117_c00183{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);}
.m109_c00183{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);}
.m4f_c00183{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);}
.m35_c00183{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);}
.mf2_c00183{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);}
.mf9_c00183{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);}
.m7a_c00183{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);}
.mbc_c00183{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);}
.mf3_c00183{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);}
.m138_c00183{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);}
.m10_c00183{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);}
.mf4_c00183{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);}
.m111_c00183{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);}
.md3_c00183{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);}
.mae_c00183{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);}
.mab_c00183{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);}
.me0_c00183{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);}
.m44_c00183{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);}
.me7_c00183{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);}
.md4_c00183{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);}
.m95_c00183{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);}
.m7f_c00183{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);}
.maa_c00183{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);}
.m9c_c00183{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);}
.mdf_c00183{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);}
.ma7_c00183{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);}
.mb6_c00183{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);}
.m110_c00183{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);}
.m34_c00183{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);}
.mc3_c00183{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);}
.m10b_c00183{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);}
.m7b_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);}
.m68_c00183{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);}
.me5_c00183{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);}
.m10c_c00183{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m8a_c00183{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);}
.m85_c00183{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);}
.mb9_c00183{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);}
.md5_c00183{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);}
.mea_c00183{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);}
.mdc_c00183{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);}
.mdd_c00183{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);}
.m31_c00183{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);}
.m129_c00183{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);}
.m37_c00183{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);}
.m130_c00183{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);}
.m10e_c00183{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);}
.m10d_c00183{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);}
.m10f_c00183{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);}
.m134_c00183{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);}
.m135_c00183{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);}
.m7e_c00183{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);}
.m105_c00183{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);}
.md6_c00183{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_c00183{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);}
.mf8_c00183{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);}
.mfb_c00183{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);}
.m4b_c00183{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);}
.m12e_c00183{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);}
.mdb_c00183{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);}
.m141_c00183{transform:matrix(0.213872,0.002353,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213872,0.002353,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213872,0.002353,-0.002750,0.249985,0,0);}
.mfc_c00183{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);}
.me9_c00183{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);}
.m6a_c00183{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);}
.m133_c00183{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);}
.m139_c00183{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);}
.mcf_c00183{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);}
.m89_c00183{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);}
.mef_c00183{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);}
.m1d_c00183{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);}
.mf0_c00183{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);}
.m45_c00183{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);}
.m114_c00183{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);}
.m65_c00183{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);}
.ma0_c00183{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);}
.md0_c00183{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);}
.m113_c00183{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);}
.m39_c00183{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);}
.m79_c00183{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);}
.m64_c00183{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);}
.m1b_c00183{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);}
.m13a_c00183{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);}
.m123_c00183{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);}
.m88_c00183{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);}
.ma5_c00183{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);}
.m62_c00183{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);}
.m12f_c00183{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);}
.mb8_c00183{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);}
.m74_c00183{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);}
.m106_c00183{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);}
.m1e_c00183{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);}
.meb_c00183{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);}
.m93_c00183{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);}
.med_c00183{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);}
.m54_c00183{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.me2_c00183{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);}
.m8e_c00183{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);}
.m9d_c00183{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);}
.mbe_c00183{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);}
.m1f_c00183{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.mb1_c00183{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);}
.m12b_c00183{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);}
.me3_c00183{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m10a_c00183{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);}
.mfe_c00183{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.251698,0.006041,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251698,0.006041,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251698,0.006041,-0.005998,0.249928,0,0);}
.m147_c00183{transform:matrix(0.251925,0.002771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251925,0.002771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251925,0.002771,-0.002750,0.249985,0,0);}
.me1_c00183{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);}
.mde_c00183{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);}
.m144_c00183{transform:matrix(0.263504,0.002899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263504,0.002899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263504,0.002899,-0.002750,0.249985,0,0);}
.m145_c00183{transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);}
.ma4_c00183{transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);}
.m146_c00183{transform:matrix(0.275158,0.003027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275158,0.003027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275158,0.003027,-0.002750,0.249985,0,0);}
.mb2_c00183{transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);}
.mee_c00183{transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);}
.m107_c00183{transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.290771,0.006979,-0.005998,0.249928,0,0);-ms-transform:matrix(0.290771,0.006979,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.290771,0.006979,-0.005998,0.249928,0,0);}
.m7_c00183{transform:matrix(0.311100,0.007466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.311100,0.007466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.311100,0.007466,-0.005998,0.249928,0,0);}
.m94_c00183{transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355160,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.363740,0.008730,-0.005998,0.249928,0,0);-ms-transform:matrix(0.363740,0.008730,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.363740,0.008730,-0.005998,0.249928,0,0);}
.m140_c00183{transform:matrix(0.368998,0.004059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.368998,0.004059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.368998,0.004059,-0.002750,0.249985,0,0);}
.m3_c00183{transform:matrix(0.375777,0.009019,-0.005998,0.249928,0,0);-ms-transform:matrix(0.375777,0.009019,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.375777,0.009019,-0.005998,0.249928,0,0);}
.m27_c00183{transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);}
.m61_c00183{transform:matrix(0.540645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540645,0.000000,0.000000,0.250000,0,0);}
.m13b_c00183{transform:matrix(0.564216,0.006206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.564216,0.006206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.564216,0.006206,-0.002750,0.249985,0,0);}
.m13f_c00183{transform:matrix(0.636651,0.007003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.636651,0.007003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.636651,0.007003,-0.002750,0.249985,0,0);}
.m143_c00183{transform:matrix(0.967581,0.010643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.967581,0.010643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.967581,0.010643,-0.002750,0.249985,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;}
.fs11_c00183{font-size:48.300000px;}
.fs13_c00183{font-size:50.400000px;}
.fs15_c00183{font-size:50.403049px;}
.fsd_c00183{font-size:51.450000px;}
.fsf_c00183{font-size:52.500000px;}
.fs14_c00183{font-size:53.550000px;}
.fs10_c00183{font-size:54.600000px;}
.fs12_c00183{font-size:55.650000px;}
.fs4_c00183{font-size:61.950000px;}
.fse_c00183{font-size:61.956071px;}
.fs7_c00183{font-size:69.300000px;}
.fsb_c00183{font-size:70.350000px;}
.fsa_c00183{font-size:71.400000px;}
.fsc_c00183{font-size:72.450000px;}
.fs3_c00183{font-size:73.500000px;}
.fs9_c00183{font-size:74.550000px;}
.fs2_c00183{font-size:75.600000px;}
.fs8_c00183{font-size:76.650000px;}
.fs6_c00183{font-size:77.700000px;}
.fs5_c00183{font-size:94.500000px;}
.fs1_c00183{font-size:101.879329px;}
.fs16_c00183{font-size:144.908766px;}
.fs0_c00183{font-size:179.601703px;}
.y0_c00183{bottom:0.000000px;}
.y44_c00183{bottom:99.674262px;}
.y43_c00183{bottom:100.402463px;}
.y42_c00183{bottom:101.092023px;}
.y41_c00183{bottom:101.778614px;}
.y40_c00183{bottom:103.142753px;}
.y3f_c00183{bottom:115.705356px;}
.y3e_c00183{bottom:115.987028px;}
.y3d_c00183{bottom:116.584542px;}
.y3c_c00183{bottom:117.266652px;}
.y3b_c00183{bottom:117.961599px;}
.y3a_c00183{bottom:118.346429px;}
.y39_c00183{bottom:118.546838px;}
.y38_c00183{bottom:119.010554px;}
.y37_c00183{bottom:119.611500px;}
.y36_c00183{bottom:170.371500px;}
.y2d_c00183{bottom:171.666000px;}
.y35_c00183{bottom:188.773500px;}
.y2c_c00183{bottom:189.613500px;}
.y34_c00183{bottom:206.098500px;}
.y2b_c00183{bottom:207.403500px;}
.y33_c00183{bottom:224.313000px;}
.y2a_c00183{bottom:225.484500px;}
.y32_c00183{bottom:242.233500px;}
.y29_c00183{bottom:243.246000px;}
.y31_c00183{bottom:259.896000px;}
.y28_c00183{bottom:261.087000px;}
.y27_c00183{bottom:277.215726px;}
.y30_c00183{bottom:277.674000px;}
.y26_c00183{bottom:277.715211px;}
.y25_c00183{bottom:278.005599px;}
.y24_c00183{bottom:278.490447px;}
.y23_c00183{bottom:278.970717px;}
.y22_c00183{bottom:279.382107px;}
.y21_c00183{bottom:279.798033px;}
.y20_c00183{bottom:280.531500px;}
.y2f_c00183{bottom:295.494000px;}
.y1f_c00183{bottom:296.455500px;}
.y2e_c00183{bottom:313.428000px;}
.y1e_c00183{bottom:314.184000px;}
.y1d_c00183{bottom:365.125500px;}
.y1c_c00183{bottom:388.359000px;}
.y1b_c00183{bottom:411.268500px;}
.y1a_c00183{bottom:434.080500px;}
.y19_c00183{bottom:457.137000px;}
.y18_c00183{bottom:479.758500px;}
.y17_c00183{bottom:502.858500px;}
.y16_c00183{bottom:525.690000px;}
.y15_c00183{bottom:548.038500px;}
.y14_c00183{bottom:571.249500px;}
.y13_c00183{bottom:594.169500px;}
.y12_c00183{bottom:616.950000px;}
.y11_c00183{bottom:639.900000px;}
.y10_c00183{bottom:662.310000px;}
.yf_c00183{bottom:684.904500px;}
.ye_c00183{bottom:708.049500px;}
.yd_c00183{bottom:735.480000px;}
.yc_c00183{bottom:763.402500px;}
.yb_c00183{bottom:786.042000px;}
.ya_c00183{bottom:809.080500px;}
.y9_c00183{bottom:832.587000px;}
.y8_c00183{bottom:870.569400px;}
.y7_c00183{bottom:871.137276px;}
.y6_c00183{bottom:872.669964px;}
.y5_c00183{bottom:873.390672px;}
.y4_c00183{bottom:874.731420px;}
.y3_c00183{bottom:875.867136px;}
.y2_c00183{bottom:923.948616px;}
.y1_c00183{bottom:927.732000px;}
.h13_c00183{height:48.300000px;}
.h15_c00183{height:50.400000px;}
.h17_c00183{height:50.403049px;}
.hf_c00183{height:51.450000px;}
.h11_c00183{height:52.500000px;}
.h16_c00183{height:53.550000px;}
.h12_c00183{height:54.600000px;}
.h14_c00183{height:55.650000px;}
.h6_c00183{height:61.950000px;}
.h10_c00183{height:61.956071px;}
.h9_c00183{height:69.300000px;}
.hd_c00183{height:70.350000px;}
.hc_c00183{height:71.400000px;}
.he_c00183{height:72.450000px;}
.h5_c00183{height:73.500000px;}
.hb_c00183{height:74.550000px;}
.h4_c00183{height:75.600000px;}
.ha_c00183{height:76.650000px;}
.h8_c00183{height:77.700000px;}
.h7_c00183{height:94.500000px;}
.h3_c00183{height:101.879329px;}
.h18_c00183{height:144.908766px;}
.h2_c00183{height:179.601703px;}
.h0_c00183{height:1008.450000px;}
.h1_c00183{height:1008.750000px;}
.w0_c00183{width:678.450000px;}
.w1_c00183{width:678.750000px;}
.x0_c00183{left:0.000000px;}
.xb4_c00183{left:94.042500px;}
.x8b_c00183{left:119.610000px;}
.x86_c00183{left:120.690000px;}
.x7a_c00183{left:122.040000px;}
.x1_c00183{left:130.747500px;}
.x77_c00183{left:133.920000px;}
.x8c_c00183{left:136.620000px;}
.x84_c00183{left:139.590000px;}
.x7b_c00183{left:141.480000px;}
.x78_c00183{left:149.580000px;}
.x87_c00183{left:152.280000px;}
.x8d_c00183{left:155.250000px;}
.x81_c00183{left:157.140000px;}
.x4b_c00183{left:158.220000px;}
.x9_c00183{left:159.300000px;}
.x8a_c00183{left:162.810000px;}
.x7c_c00183{left:174.150000px;}
.x6d_c00183{left:176.040000px;}
.x82_c00183{left:178.200000px;}
.x17_c00183{left:179.820000px;}
.x67_c00183{left:182.250000px;}
.x4f_c00183{left:183.600000px;}
.x27_c00183{left:184.950000px;}
.x55_c00183{left:188.190000px;}
.x2d_c00183{left:190.350000px;}
.x33_c00183{left:193.050000px;}
.x3_c00183{left:197.828076px;}
.x73_c00183{left:199.800000px;}
.x45_c00183{left:202.770000px;}
.x4c_c00183{left:204.660000px;}
.x60_c00183{left:205.740000px;}
.x22_c00183{left:207.630000px;}
.x6e_c00183{left:209.520000px;}
.x8e_c00183{left:211.680000px;}
.x68_c00183{left:213.570000px;}
.x7d_c00183{left:215.190000px;}
.x10_c00183{left:216.540000px;}
.x83_c00183{left:218.700000px;}
.x3f_c00183{left:221.940000px;}
.x50_c00183{left:223.290000px;}
.x3a_c00183{left:230.580000px;}
.x7e_c00183{left:232.578000px;}
.x5b_c00183{left:233.820000px;}
.x8f_c00183{left:235.710000px;}
.x1b_c00183{left:236.790000px;}
.x56_c00183{left:238.680000px;}
.x69_c00183{left:239.760000px;}
.x4_c00183{left:241.522488px;}
.x85_c00183{left:243.540000px;}
.x28_c00183{left:246.240000px;}
.x18_c00183{left:248.670000px;}
.xa_c00183{left:249.750000px;}
.x57_c00183{left:256.500000px;}
.x2e_c00183{left:257.850000px;}
.x11_c00183{left:260.010000px;}
.x61_c00183{left:262.980000px;}
.xb7_c00183{left:264.766465px;}
.x7f_c00183{left:266.883000px;}
.x3b_c00183{left:271.620000px;}
.x51_c00183{left:273.510000px;}
.x1c_c00183{left:275.400000px;}
.x40_c00183{left:276.750000px;}
.x2f_c00183{left:279.180000px;}
.xb_c00183{left:281.070000px;}
.x21_c00183{left:283.230000px;}
.x2_c00183{left:288.388500px;}
.x41_c00183{left:291.870000px;}
.x5_c00183{left:293.072004px;}
.x3c_c00183{left:295.920000px;}
.x5c_c00183{left:297.000000px;}
.x46_c00183{left:299.160000px;}
.x88_c00183{left:300.780000px;}
.x19_c00183{left:301.860000px;}
.xb5_c00183{left:307.210500px;}
.x12_c00183{left:308.880000px;}
.x1d_c00183{left:310.770000px;}
.x58_c00183{left:314.550000px;}
.xc_c00183{left:316.170000px;}
.x89_c00183{left:319.410000px;}
.x6_c00183{left:320.787672px;}
.x79_c00183{left:323.190000px;}
.x13_c00183{left:324.810000px;}
.x6a_c00183{left:325.890000px;}
.x34_c00183{left:326.970000px;}
.x62_c00183{left:331.830000px;}
.x1e_c00183{left:334.260000px;}
.x29_c00183{left:336.150000px;}
.x47_c00183{left:340.470000px;}
.x14_c00183{left:348.300000px;}
.x35_c00183{left:353.430000px;}
.xd_c00183{left:355.050000px;}
.x3d_c00183{left:356.670000px;}
.x80_c00183{left:357.934500px;}
.x63_c00183{left:359.910000px;}
.x2a_c00183{left:363.420000px;}
.x70_c00183{left:367.200000px;}
.x9f_c00183{left:369.360000px;}
.x48_c00183{left:370.710000px;}
.x30_c00183{left:373.410000px;}
.x6b_c00183{left:374.760000px;}
.x1f_c00183{left:377.730000px;}
.x7_c00183{left:379.709328px;}
.xb8_c00183{left:383.016178px;}
.xa0_c00183{left:386.910000px;}
.x5d_c00183{left:387.990000px;}
.x23_c00183{left:389.880000px;}
.x64_c00183{left:391.770000px;}
.x3e_c00183{left:393.120000px;}
.x36_c00183{left:394.470000px;}
.x52_c00183{left:396.090000px;}
.x74_c00183{left:397.710000px;}
.x31_c00183{left:399.060000px;}
.x15_c00183{left:400.410000px;}
.x8_c00183{left:401.557284px;}
.x90_c00183{left:403.920000px;}
.x20_c00183{left:405.000000px;}
.x65_c00183{left:408.780000px;}
.x24_c00183{left:409.860000px;}
.x2b_c00183{left:411.750000px;}
.x1a_c00183{left:413.370000px;}
.x96_c00183{left:415.800000px;}
.x37_c00183{left:417.690000px;}
.x49_c00183{left:419.850000px;}
.x5e_c00183{left:421.740000px;}
.xb6_c00183{left:423.540000px;}
.x75_c00183{left:425.520000px;}
.xa5_c00183{left:426.600000px;}
.x42_c00183{left:427.680000px;}
.xa8_c00183{left:430.380000px;}
.x16_c00183{left:431.460000px;}
.x9a_c00183{left:432.540000px;}
.x71_c00183{left:433.620000px;}
.x97_c00183{left:436.320000px;}
.x4d_c00183{left:437.670000px;}
.xe_c00183{left:440.910000px;}
.x38_c00183{left:442.800000px;}
.x6c_c00183{left:445.500000px;}
.xb1_c00183{left:447.120000px;}
.xac_c00183{left:449.010000px;}
.x59_c00183{left:451.170000px;}
.x6f_c00183{left:453.870000px;}
.x72_c00183{left:456.030000px;}
.x43_c00183{left:457.650000px;}
.x4e_c00183{left:459.270000px;}
.x4a_c00183{left:463.320000px;}
.xad_c00183{left:465.480000px;}
.xa9_c00183{left:468.180000px;}
.x5f_c00183{left:469.260000px;}
.x32_c00183{left:470.340000px;}
.xf_c00183{left:471.690000px;}
.x44_c00183{left:474.390000px;}
.x91_c00183{left:480.060000px;}
.x25_c00183{left:481.410000px;}
.x53_c00183{left:482.490000px;}
.x39_c00183{left:487.080000px;}
.xb2_c00183{left:493.020000px;}
.x66_c00183{left:494.370000px;}
.x92_c00183{left:495.450000px;}
.x26_c00183{left:499.230000px;}
.xa1_c00183{left:500.310000px;}
.x9b_c00183{left:503.820000px;}
.xae_c00183{left:506.790000px;}
.xa6_c00183{left:510.300000px;}
.x54_c00183{left:513.540000px;}
.x98_c00183{left:516.510000px;}
.x93_c00183{left:523.530000px;}
.x76_c00183{left:524.880000px;}
.x2c_c00183{left:526.770000px;}
.xa7_c00183{left:529.200000px;}
.xaf_c00183{left:530.280000px;}
.x9c_c00183{left:537.030000px;}
.x5a_c00183{left:542.970000px;}
.x99_c00183{left:544.320000px;}
.xa2_c00183{left:547.290000px;}
.x9d_c00183{left:554.040000px;}
.xb0_c00183{left:558.360000px;}
.xb3_c00183{left:559.440000px;}
.x94_c00183{left:561.870000px;}
.xaa_c00183{left:563.490000px;}
.xa3_c00183{left:566.730000px;}
.x9e_c00183{left:572.400000px;}
.xa4_c00183{left:582.930000px;}
.x95_c00183{left:589.410000px;}
.xab_c00183{left:592.920000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:0.000000pt;}
.fs11_c00183{font-size:42.933333pt;}
.fs13_c00183{font-size:44.800000pt;}
.fs15_c00183{font-size:44.802710pt;}
.fsd_c00183{font-size:45.733333pt;}
.fsf_c00183{font-size:46.666667pt;}
.fs14_c00183{font-size:47.600000pt;}
.fs10_c00183{font-size:48.533333pt;}
.fs12_c00183{font-size:49.466667pt;}
.fs4_c00183{font-size:55.066667pt;}
.fse_c00183{font-size:55.072063pt;}
.fs7_c00183{font-size:61.600000pt;}
.fsb_c00183{font-size:62.533333pt;}
.fsa_c00183{font-size:63.466667pt;}
.fsc_c00183{font-size:64.400000pt;}
.fs3_c00183{font-size:65.333333pt;}
.fs9_c00183{font-size:66.266667pt;}
.fs2_c00183{font-size:67.200000pt;}
.fs8_c00183{font-size:68.133333pt;}
.fs6_c00183{font-size:69.066667pt;}
.fs5_c00183{font-size:84.000000pt;}
.fs1_c00183{font-size:90.559403pt;}
.fs16_c00183{font-size:128.807792pt;}
.fs0_c00183{font-size:159.645958pt;}
.y0_c00183{bottom:0.000000pt;}
.y44_c00183{bottom:88.599344pt;}
.y43_c00183{bottom:89.246633pt;}
.y42_c00183{bottom:89.859576pt;}
.y41_c00183{bottom:90.469879pt;}
.y40_c00183{bottom:91.682447pt;}
.y3f_c00183{bottom:102.849205pt;}
.y3e_c00183{bottom:103.099580pt;}
.y3d_c00183{bottom:103.630704pt;}
.y3c_c00183{bottom:104.237024pt;}
.y3b_c00183{bottom:104.854755pt;}
.y3a_c00183{bottom:105.196825pt;}
.y39_c00183{bottom:105.374967pt;}
.y38_c00183{bottom:105.787159pt;}
.y37_c00183{bottom:106.321333pt;}
.y36_c00183{bottom:151.441333pt;}
.y2d_c00183{bottom:152.592000pt;}
.y35_c00183{bottom:167.798667pt;}
.y2c_c00183{bottom:168.545333pt;}
.y34_c00183{bottom:183.198667pt;}
.y2b_c00183{bottom:184.358667pt;}
.y33_c00183{bottom:199.389333pt;}
.y2a_c00183{bottom:200.430667pt;}
.y32_c00183{bottom:215.318667pt;}
.y29_c00183{bottom:216.218667pt;}
.y31_c00183{bottom:231.018667pt;}
.y28_c00183{bottom:232.077333pt;}
.y27_c00183{bottom:246.413979pt;}
.y30_c00183{bottom:246.821333pt;}
.y26_c00183{bottom:246.857965pt;}
.y25_c00183{bottom:247.116088pt;}
.y24_c00183{bottom:247.547064pt;}
.y23_c00183{bottom:247.973971pt;}
.y22_c00183{bottom:248.339651pt;}
.y21_c00183{bottom:248.709363pt;}
.y20_c00183{bottom:249.361333pt;}
.y2f_c00183{bottom:262.661333pt;}
.y1f_c00183{bottom:263.516000pt;}
.y2e_c00183{bottom:278.602667pt;}
.y1e_c00183{bottom:279.274667pt;}
.y1d_c00183{bottom:324.556000pt;}
.y1c_c00183{bottom:345.208000pt;}
.y1b_c00183{bottom:365.572000pt;}
.y1a_c00183{bottom:385.849333pt;}
.y19_c00183{bottom:406.344000pt;}
.y18_c00183{bottom:426.452000pt;}
.y17_c00183{bottom:446.985333pt;}
.y16_c00183{bottom:467.280000pt;}
.y15_c00183{bottom:487.145333pt;}
.y14_c00183{bottom:507.777333pt;}
.y13_c00183{bottom:528.150667pt;}
.y12_c00183{bottom:548.400000pt;}
.y11_c00183{bottom:568.800000pt;}
.y10_c00183{bottom:588.720000pt;}
.yf_c00183{bottom:608.804000pt;}
.ye_c00183{bottom:629.377333pt;}
.yd_c00183{bottom:653.760000pt;}
.yc_c00183{bottom:678.580000pt;}
.yb_c00183{bottom:698.704000pt;}
.ya_c00183{bottom:719.182667pt;}
.y9_c00183{bottom:740.077333pt;}
.y8_c00183{bottom:773.839467pt;}
.y7_c00183{bottom:774.344245pt;}
.y6_c00183{bottom:775.706635pt;}
.y5_c00183{bottom:776.347264pt;}
.y4_c00183{bottom:777.539040pt;}
.y3_c00183{bottom:778.548565pt;}
.y2_c00183{bottom:821.287659pt;}
.y1_c00183{bottom:824.650667pt;}
.h13_c00183{height:42.933333pt;}
.h15_c00183{height:44.800000pt;}
.h17_c00183{height:44.802710pt;}
.hf_c00183{height:45.733333pt;}
.h11_c00183{height:46.666667pt;}
.h16_c00183{height:47.600000pt;}
.h12_c00183{height:48.533333pt;}
.h14_c00183{height:49.466667pt;}
.h6_c00183{height:55.066667pt;}
.h10_c00183{height:55.072063pt;}
.h9_c00183{height:61.600000pt;}
.hd_c00183{height:62.533333pt;}
.hc_c00183{height:63.466667pt;}
.he_c00183{height:64.400000pt;}
.h5_c00183{height:65.333333pt;}
.hb_c00183{height:66.266667pt;}
.h4_c00183{height:67.200000pt;}
.ha_c00183{height:68.133333pt;}
.h8_c00183{height:69.066667pt;}
.h7_c00183{height:84.000000pt;}
.h3_c00183{height:90.559403pt;}
.h18_c00183{height:128.807792pt;}
.h2_c00183{height:159.645958pt;}
.h0_c00183{height:896.400000pt;}
.h1_c00183{height:896.666667pt;}
.w0_c00183{width:603.066667pt;}
.w1_c00183{width:603.333333pt;}
.x0_c00183{left:0.000000pt;}
.xb4_c00183{left:83.593333pt;}
.x8b_c00183{left:106.320000pt;}
.x86_c00183{left:107.280000pt;}
.x7a_c00183{left:108.480000pt;}
.x1_c00183{left:116.220000pt;}
.x77_c00183{left:119.040000pt;}
.x8c_c00183{left:121.440000pt;}
.x84_c00183{left:124.080000pt;}
.x7b_c00183{left:125.760000pt;}
.x78_c00183{left:132.960000pt;}
.x87_c00183{left:135.360000pt;}
.x8d_c00183{left:138.000000pt;}
.x81_c00183{left:139.680000pt;}
.x4b_c00183{left:140.640000pt;}
.x9_c00183{left:141.600000pt;}
.x8a_c00183{left:144.720000pt;}
.x7c_c00183{left:154.800000pt;}
.x6d_c00183{left:156.480000pt;}
.x82_c00183{left:158.400000pt;}
.x17_c00183{left:159.840000pt;}
.x67_c00183{left:162.000000pt;}
.x4f_c00183{left:163.200000pt;}
.x27_c00183{left:164.400000pt;}
.x55_c00183{left:167.280000pt;}
.x2d_c00183{left:169.200000pt;}
.x33_c00183{left:171.600000pt;}
.x3_c00183{left:175.847179pt;}
.x73_c00183{left:177.600000pt;}
.x45_c00183{left:180.240000pt;}
.x4c_c00183{left:181.920000pt;}
.x60_c00183{left:182.880000pt;}
.x22_c00183{left:184.560000pt;}
.x6e_c00183{left:186.240000pt;}
.x8e_c00183{left:188.160000pt;}
.x68_c00183{left:189.840000pt;}
.x7d_c00183{left:191.280000pt;}
.x10_c00183{left:192.480000pt;}
.x83_c00183{left:194.400000pt;}
.x3f_c00183{left:197.280000pt;}
.x50_c00183{left:198.480000pt;}
.x3a_c00183{left:204.960000pt;}
.x7e_c00183{left:206.736000pt;}
.x5b_c00183{left:207.840000pt;}
.x8f_c00183{left:209.520000pt;}
.x1b_c00183{left:210.480000pt;}
.x56_c00183{left:212.160000pt;}
.x69_c00183{left:213.120000pt;}
.x4_c00183{left:214.686656pt;}
.x85_c00183{left:216.480000pt;}
.x28_c00183{left:218.880000pt;}
.x18_c00183{left:221.040000pt;}
.xa_c00183{left:222.000000pt;}
.x57_c00183{left:228.000000pt;}
.x2e_c00183{left:229.200000pt;}
.x11_c00183{left:231.120000pt;}
.x61_c00183{left:233.760000pt;}
.xb7_c00183{left:235.347969pt;}
.x7f_c00183{left:237.229333pt;}
.x3b_c00183{left:241.440000pt;}
.x51_c00183{left:243.120000pt;}
.x1c_c00183{left:244.800000pt;}
.x40_c00183{left:246.000000pt;}
.x2f_c00183{left:248.160000pt;}
.xb_c00183{left:249.840000pt;}
.x21_c00183{left:251.760000pt;}
.x2_c00183{left:256.345333pt;}
.x41_c00183{left:259.440000pt;}
.x5_c00183{left:260.508448pt;}
.x3c_c00183{left:263.040000pt;}
.x5c_c00183{left:264.000000pt;}
.x46_c00183{left:265.920000pt;}
.x88_c00183{left:267.360000pt;}
.x19_c00183{left:268.320000pt;}
.xb5_c00183{left:273.076000pt;}
.x12_c00183{left:274.560000pt;}
.x1d_c00183{left:276.240000pt;}
.x58_c00183{left:279.600000pt;}
.xc_c00183{left:281.040000pt;}
.x89_c00183{left:283.920000pt;}
.x6_c00183{left:285.144597pt;}
.x79_c00183{left:287.280000pt;}
.x13_c00183{left:288.720000pt;}
.x6a_c00183{left:289.680000pt;}
.x34_c00183{left:290.640000pt;}
.x62_c00183{left:294.960000pt;}
.x1e_c00183{left:297.120000pt;}
.x29_c00183{left:298.800000pt;}
.x47_c00183{left:302.640000pt;}
.x14_c00183{left:309.600000pt;}
.x35_c00183{left:314.160000pt;}
.xd_c00183{left:315.600000pt;}
.x3d_c00183{left:317.040000pt;}
.x80_c00183{left:318.164000pt;}
.x63_c00183{left:319.920000pt;}
.x2a_c00183{left:323.040000pt;}
.x70_c00183{left:326.400000pt;}
.x9f_c00183{left:328.320000pt;}
.x48_c00183{left:329.520000pt;}
.x30_c00183{left:331.920000pt;}
.x6b_c00183{left:333.120000pt;}
.x1f_c00183{left:335.760000pt;}
.x7_c00183{left:337.519403pt;}
.xb8_c00183{left:340.458825pt;}
.xa0_c00183{left:343.920000pt;}
.x5d_c00183{left:344.880000pt;}
.x23_c00183{left:346.560000pt;}
.x64_c00183{left:348.240000pt;}
.x3e_c00183{left:349.440000pt;}
.x36_c00183{left:350.640000pt;}
.x52_c00183{left:352.080000pt;}
.x74_c00183{left:353.520000pt;}
.x31_c00183{left:354.720000pt;}
.x15_c00183{left:355.920000pt;}
.x8_c00183{left:356.939808pt;}
.x90_c00183{left:359.040000pt;}
.x20_c00183{left:360.000000pt;}
.x65_c00183{left:363.360000pt;}
.x24_c00183{left:364.320000pt;}
.x2b_c00183{left:366.000000pt;}
.x1a_c00183{left:367.440000pt;}
.x96_c00183{left:369.600000pt;}
.x37_c00183{left:371.280000pt;}
.x49_c00183{left:373.200000pt;}
.x5e_c00183{left:374.880000pt;}
.xb6_c00183{left:376.480000pt;}
.x75_c00183{left:378.240000pt;}
.xa5_c00183{left:379.200000pt;}
.x42_c00183{left:380.160000pt;}
.xa8_c00183{left:382.560000pt;}
.x16_c00183{left:383.520000pt;}
.x9a_c00183{left:384.480000pt;}
.x71_c00183{left:385.440000pt;}
.x97_c00183{left:387.840000pt;}
.x4d_c00183{left:389.040000pt;}
.xe_c00183{left:391.920000pt;}
.x38_c00183{left:393.600000pt;}
.x6c_c00183{left:396.000000pt;}
.xb1_c00183{left:397.440000pt;}
.xac_c00183{left:399.120000pt;}
.x59_c00183{left:401.040000pt;}
.x6f_c00183{left:403.440000pt;}
.x72_c00183{left:405.360000pt;}
.x43_c00183{left:406.800000pt;}
.x4e_c00183{left:408.240000pt;}
.x4a_c00183{left:411.840000pt;}
.xad_c00183{left:413.760000pt;}
.xa9_c00183{left:416.160000pt;}
.x5f_c00183{left:417.120000pt;}
.x32_c00183{left:418.080000pt;}
.xf_c00183{left:419.280000pt;}
.x44_c00183{left:421.680000pt;}
.x91_c00183{left:426.720000pt;}
.x25_c00183{left:427.920000pt;}
.x53_c00183{left:428.880000pt;}
.x39_c00183{left:432.960000pt;}
.xb2_c00183{left:438.240000pt;}
.x66_c00183{left:439.440000pt;}
.x92_c00183{left:440.400000pt;}
.x26_c00183{left:443.760000pt;}
.xa1_c00183{left:444.720000pt;}
.x9b_c00183{left:447.840000pt;}
.xae_c00183{left:450.480000pt;}
.xa6_c00183{left:453.600000pt;}
.x54_c00183{left:456.480000pt;}
.x98_c00183{left:459.120000pt;}
.x93_c00183{left:465.360000pt;}
.x76_c00183{left:466.560000pt;}
.x2c_c00183{left:468.240000pt;}
.xa7_c00183{left:470.400000pt;}
.xaf_c00183{left:471.360000pt;}
.x9c_c00183{left:477.360000pt;}
.x5a_c00183{left:482.640000pt;}
.x99_c00183{left:483.840000pt;}
.xa2_c00183{left:486.480000pt;}
.x9d_c00183{left:492.480000pt;}
.xb0_c00183{left:496.320000pt;}
.xb3_c00183{left:497.280000pt;}
.x94_c00183{left:499.440000pt;}
.xaa_c00183{left:500.880000pt;}
.xa3_c00183{left:503.760000pt;}
.x9e_c00183{left:508.800000pt;}
.xa4_c00183{left:518.160000pt;}
.x95_c00183{left:523.920000pt;}
.xab_c00183{left:527.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mb9_c00184{transform:matrix(0.016262,0.000293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.016262,0.000293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.016262,0.000293,-0.004499,0.249960,0,0);}
.mb8_c00184{transform:matrix(0.040216,0.000563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.040216,0.000563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.040216,0.000563,-0.003500,0.249976,0,0);}
.m93_c00184{transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.130824,0.001701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.130824,0.001701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.130824,0.001701,-0.003250,0.249979,0,0);}
.m9_c00184{transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);}
.m4e_c00184{transform:matrix(0.137118,0.001783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.137118,0.001783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.137118,0.001783,-0.003250,0.249979,0,0);}
.mad_c00184{transform:matrix(0.139421,0.001952,-0.003500,0.249976,0,0);-ms-transform:matrix(0.139421,0.001952,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.139421,0.001952,-0.003500,0.249976,0,0);}
.m4a_c00184{transform:matrix(0.142039,0.002131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142039,0.002131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142039,0.002131,-0.003750,0.249972,0,0);}
.mdc_c00184{transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);}
.mbd_c00184{transform:matrix(0.142857,0.002571,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142857,0.002571,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142857,0.002571,-0.004499,0.249960,0,0);}
.m72_c00184{transform:matrix(0.143378,0.001864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143378,0.001864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143378,0.001864,-0.003250,0.249979,0,0);}
.m36_c00184{transform:matrix(0.144599,0.002169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.144599,0.002169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.144599,0.002169,-0.003750,0.249972,0,0);}
.md6_c00184{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);}
.mb2_c00184{transform:matrix(0.146046,0.002045,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146046,0.002045,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146046,0.002045,-0.003500,0.249976,0,0);}
.m5b_c00184{transform:matrix(0.146186,0.002047,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146186,0.002047,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146186,0.002047,-0.003500,0.249976,0,0);}
.m89_c00184{transform:matrix(0.147523,0.002213,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147523,0.002213,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147523,0.002213,-0.003750,0.249972,0,0);}
.mda_c00184{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);}
.m47_c00184{transform:matrix(0.150488,0.002257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150488,0.002257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150488,0.002257,-0.003750,0.249972,0,0);}
.mc3_c00184{transform:matrix(0.151575,0.002728,-0.004499,0.249960,0,0);-ms-transform:matrix(0.151575,0.002728,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.151575,0.002728,-0.004499,0.249960,0,0);}
.m7_c00184{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);}
.m6d_c00184{transform:matrix(0.153322,0.001993,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153322,0.001993,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153322,0.001993,-0.003250,0.249979,0,0);}
.mbe_c00184{transform:matrix(0.153360,0.002760,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153360,0.002760,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153360,0.002760,-0.004499,0.249960,0,0);}
.m60_c00184{transform:matrix(0.153695,0.002152,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153695,0.002152,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153695,0.002152,-0.003500,0.249976,0,0);}
.m5d_c00184{transform:matrix(0.154695,0.002166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154695,0.002166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154695,0.002166,-0.003500,0.249976,0,0);}
.m13_c00184{transform:matrix(0.155378,0.002331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155378,0.002331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155378,0.002331,-0.003750,0.249972,0,0);}
.mae_c00184{transform:matrix(0.156705,0.002194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156705,0.002194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156705,0.002194,-0.003500,0.249976,0,0);}
.m90_c00184{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);}
.m2_c00184{transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.157300,0.002517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157300,0.002517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157300,0.002517,-0.003999,0.249968,0,0);}
.m5_c00184{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);}
.mbc_c00184{transform:matrix(0.158094,0.002846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158094,0.002846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158094,0.002846,-0.004499,0.249960,0,0);}
.m68_c00184{transform:matrix(0.159830,0.002557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159830,0.002557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159830,0.002557,-0.003999,0.249968,0,0);}
.mf_c00184{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);}
.m8a_c00184{transform:matrix(0.160487,0.002407,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160487,0.002407,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160487,0.002407,-0.003750,0.249972,0,0);}
.m17_c00184{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);}
.mdd_c00184{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);}
.m6c_c00184{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);}
.mc6_c00184{transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161729,0.002911,-0.004499,0.249960,0,0);}
.m7d_c00184{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);}
.m9e_c00184{transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);}
.mc2_c00184{transform:matrix(0.163379,0.002941,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163379,0.002941,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163379,0.002941,-0.004499,0.249960,0,0);}
.m71_c00184{transform:matrix(0.163826,0.002130,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163826,0.002130,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163826,0.002130,-0.003250,0.249979,0,0);}
.m8c_c00184{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.mbb_c00184{transform:matrix(0.164188,0.002955,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164188,0.002955,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164188,0.002955,-0.004499,0.249960,0,0);}
.m66_c00184{transform:matrix(0.165439,0.002647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165439,0.002647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165439,0.002647,-0.003999,0.249968,0,0);}
.m32_c00184{transform:matrix(0.165746,0.002486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165746,0.002486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165746,0.002486,-0.003750,0.249972,0,0);}
.m4f_c00184{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);}
.m16_c00184{transform:matrix(0.168611,0.002529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168611,0.002529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168611,0.002529,-0.003750,0.249972,0,0);}
.m6f_c00184{transform:matrix(0.168756,0.002194,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168756,0.002194,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168756,0.002194,-0.003250,0.249979,0,0);}
.m3_c00184{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);}
.mc7_c00184{transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169932,0.003059,-0.004499,0.249960,0,0);}
.m64_c00184{transform:matrix(0.170458,0.002727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170458,0.002727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170458,0.002727,-0.003999,0.249968,0,0);}
.maf_c00184{transform:matrix(0.171078,0.002395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171078,0.002395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171078,0.002395,-0.003500,0.249976,0,0);}
.m6b_c00184{transform:matrix(0.171176,0.002225,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171176,0.002225,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171176,0.002225,-0.003250,0.249979,0,0);}
.m6_c00184{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);}
.m0_c00184{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);}
.m2d_c00184{transform:matrix(0.173940,0.002609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173940,0.002609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173940,0.002609,-0.003750,0.249972,0,0);}
.mb1_c00184{transform:matrix(0.173943,0.002435,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173943,0.002435,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173943,0.002435,-0.003500,0.249976,0,0);}
.m48_c00184{transform:matrix(0.173985,0.002610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173985,0.002610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173985,0.002610,-0.003750,0.249972,0,0);}
.m62_c00184{transform:matrix(0.174028,0.002436,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174028,0.002436,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174028,0.002436,-0.003500,0.249976,0,0);}
.m50_c00184{transform:matrix(0.174455,0.002268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174455,0.002268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174455,0.002268,-0.003250,0.249979,0,0);}
.mcf_c00184{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);}
.m27_c00184{transform:matrix(0.175465,0.002632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175465,0.002632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175465,0.002632,-0.003750,0.249972,0,0);}
.m91_c00184{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.mc9_c00184{transform:matrix(0.175642,0.003162,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175642,0.003162,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175642,0.003162,-0.004499,0.249960,0,0);}
.mb5_c00184{transform:matrix(0.175888,0.002462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175888,0.002462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175888,0.002462,-0.003500,0.249976,0,0);}
.mc4_c00184{transform:matrix(0.176741,0.003181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176741,0.003181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176741,0.003181,-0.004499,0.249960,0,0);}
.md9_c00184{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);}
.m55_c00184{transform:matrix(0.177640,0.002665,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177640,0.002665,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177640,0.002665,-0.003750,0.249972,0,0);}
.m6e_c00184{transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);}
.m9c_c00184{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);}
.m57_c00184{transform:matrix(0.178665,0.002680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178665,0.002680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178665,0.002680,-0.003750,0.249972,0,0);}
.meb_c00184{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);}
.mc5_c00184{transform:matrix(0.179071,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179071,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179071,0.003223,-0.004499,0.249960,0,0);}
.mc1_c00184{transform:matrix(0.179746,0.003235,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179746,0.003235,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179746,0.003235,-0.004499,0.249960,0,0);}
.me9_c00184{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);}
.m14_c00184{transform:matrix(0.179920,0.002699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179920,0.002699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179920,0.002699,-0.003750,0.249972,0,0);}
.m4_c00184{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);}
.maa_c00184{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);}
.md_c00184{transform:matrix(0.181705,0.002726,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181705,0.002726,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181705,0.002726,-0.003750,0.249972,0,0);}
.m46_c00184{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);}
.mb4_c00184{transform:matrix(0.182082,0.002549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182082,0.002549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182082,0.002549,-0.003500,0.249976,0,0);}
.m7a_c00184{transform:matrix(0.182567,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182567,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182567,0.002556,-0.003500,0.249976,0,0);}
.mac_c00184{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);}
.mb3_c00184{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);}
.md8_c00184{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);}
.m7e_c00184{transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);}
.mbf_c00184{transform:matrix(0.184050,0.003313,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184050,0.003313,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184050,0.003313,-0.004499,0.249960,0,0);}
.mde_c00184{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);}
.m5c_c00184{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);}
.me4_c00184{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);}
.m52_c00184{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);}
.m2b_c00184{transform:matrix(0.184784,0.002772,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184784,0.002772,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184784,0.002772,-0.003750,0.249972,0,0);}
.m7b_c00184{transform:matrix(0.184972,0.002590,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184972,0.002590,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184972,0.002590,-0.003500,0.249976,0,0);}
.mba_c00184{transform:matrix(0.185590,0.003341,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185590,0.003341,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185590,0.003341,-0.004499,0.249960,0,0);}
.m24_c00184{transform:matrix(0.185784,0.002787,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185784,0.002787,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185784,0.002787,-0.003750,0.249972,0,0);}
.m99_c00184{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);}
.m40_c00184{transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);}
.m1_c00184{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);}
.m77_c00184{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);}
.m95_c00184{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);}
.mab_c00184{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);}
.mf6_c00184{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);}
.m65_c00184{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);}
.me_c00184{transform:matrix(0.189429,0.002841,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189429,0.002841,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189429,0.002841,-0.003750,0.249972,0,0);}
.mf0_c00184{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);}
.m45_c00184{transform:matrix(0.190139,0.002852,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190139,0.002852,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190139,0.002852,-0.003750,0.249972,0,0);}
.m8b_c00184{transform:matrix(0.190844,0.002863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190844,0.002863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190844,0.002863,-0.003750,0.249972,0,0);}
.m20_c00184{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);}
.me0_c00184{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);}
.m80_c00184{transform:matrix(0.191221,0.003060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191221,0.003060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191221,0.003060,-0.003999,0.249968,0,0);}
.m92_c00184{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);}
.mce_c00184{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);}
.m44_c00184{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);}
.m9d_c00184{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);}
.m5f_c00184{transform:matrix(0.193121,0.002704,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193121,0.002704,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193121,0.002704,-0.003500,0.249976,0,0);}
.mf1_c00184{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);}
.m84_c00184{transform:matrix(0.193630,0.003098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193630,0.003098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193630,0.003098,-0.003999,0.249968,0,0);}
.mc8_c00184{transform:matrix(0.193829,0.003489,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193829,0.003489,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193829,0.003489,-0.004499,0.249960,0,0);}
.m61_c00184{transform:matrix(0.194481,0.002723,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194481,0.002723,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194481,0.002723,-0.003500,0.249976,0,0);}
.me6_c00184{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);}
.md7_c00184{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);}
.m5e_c00184{transform:matrix(0.194711,0.002726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194711,0.002726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194711,0.002726,-0.003500,0.249976,0,0);}
.m56_c00184{transform:matrix(0.194808,0.002922,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194808,0.002922,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194808,0.002922,-0.003750,0.249972,0,0);}
.md4_c00184{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);}
.m51_c00184{transform:matrix(0.194909,0.002534,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194909,0.002534,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194909,0.002534,-0.003250,0.249979,0,0);}
.m5a_c00184{transform:matrix(0.194991,0.002730,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194991,0.002730,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194991,0.002730,-0.003500,0.249976,0,0);}
.m8_c00184{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);}
.mb_c00184{transform:matrix(0.196188,0.002943,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196188,0.002943,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196188,0.002943,-0.003750,0.249972,0,0);}
.m49_c00184{transform:matrix(0.196848,0.002953,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196848,0.002953,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196848,0.002953,-0.003750,0.249972,0,0);}
.me7_c00184{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);}
.m76_c00184{transform:matrix(0.197171,0.002760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197171,0.002760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197171,0.002760,-0.003500,0.249976,0,0);}
.m2a_c00184{transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);}
.m6a_c00184{transform:matrix(0.198125,0.003170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198125,0.003170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198125,0.003170,-0.003999,0.249968,0,0);}
.m53_c00184{transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198133,0.002972,-0.003750,0.249972,0,0);}
.ma0_c00184{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);}
.mf7_c00184{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);}
.m38_c00184{transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198568,0.002979,-0.003750,0.249972,0,0);}
.m7f_c00184{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);}
.m2f_c00184{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);}
.m85_c00184{transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);}
.m96_c00184{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);}
.m8e_c00184{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);}
.m83_c00184{transform:matrix(0.200419,0.003207,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200419,0.003207,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200419,0.003207,-0.003999,0.249968,0,0);}
.m63_c00184{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);}
.m30_c00184{transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200792,0.003012,-0.003750,0.249972,0,0);}
.mc0_c00184{transform:matrix(0.201072,0.003619,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201072,0.003619,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201072,0.003619,-0.004499,0.249960,0,0);}
.m11_c00184{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);}
.mc_c00184{transform:matrix(0.201917,0.003029,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201917,0.003029,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201917,0.003029,-0.003750,0.249972,0,0);}
.m9a_c00184{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);}
.m4d_c00184{transform:matrix(0.202533,0.002633,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202533,0.002633,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202533,0.002633,-0.003250,0.249979,0,0);}
.me1_c00184{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);}
.m10_c00184{transform:matrix(0.202657,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202657,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202657,0.003040,-0.003750,0.249972,0,0);}
.m2c_c00184{transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);}
.m15_c00184{transform:matrix(0.203747,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203747,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203747,0.003056,-0.003750,0.249972,0,0);}
.me2_c00184{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);}
.m75_c00184{transform:matrix(0.204175,0.002858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204175,0.002858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204175,0.002858,-0.003500,0.249976,0,0);}
.m81_c00184{transform:matrix(0.204189,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204189,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204189,0.003267,-0.003999,0.249968,0,0);}
.m2e_c00184{transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);}
.mec_c00184{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);}
.m73_c00184{transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);}
.m8f_c00184{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);}
.med_c00184{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);}
.m8d_c00184{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.me5_c00184{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);}
.md3_c00184{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);}
.md2_c00184{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);}
.mf5_c00184{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);}
.md0_c00184{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);}
.md5_c00184{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);}
.m28_c00184{transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);}
.m78_c00184{transform:matrix(0.211679,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211679,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211679,0.002964,-0.003500,0.249976,0,0);}
.me3_c00184{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_c00184{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);}
.mea_c00184{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);}
.me8_c00184{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);}
.ma1_c00184{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);}
.m23_c00184{transform:matrix(0.215271,0.003229,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215271,0.003229,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215271,0.003229,-0.003750,0.249972,0,0);}
.m97_c00184{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);}
.mb0_c00184{transform:matrix(0.216309,0.003028,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216309,0.003028,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216309,0.003028,-0.003500,0.249976,0,0);}
.m74_c00184{transform:matrix(0.216619,0.003033,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216619,0.003033,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216619,0.003033,-0.003500,0.249976,0,0);}
.mb7_c00184{transform:matrix(0.217044,0.003039,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217044,0.003039,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217044,0.003039,-0.003500,0.249976,0,0);}
.m29_c00184{transform:matrix(0.218365,0.003275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218365,0.003275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218365,0.003275,-0.003750,0.249972,0,0);}
.m7c_c00184{transform:matrix(0.219777,0.003516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219777,0.003516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219777,0.003516,-0.003999,0.249968,0,0);}
.m1f_c00184{transform:matrix(0.221635,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221635,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221635,0.003325,-0.003750,0.249972,0,0);}
.m67_c00184{transform:matrix(0.222047,0.003553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222047,0.003553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222047,0.003553,-0.003999,0.249968,0,0);}
.md1_c00184{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);}
.m35_c00184{transform:matrix(0.222555,0.003338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222555,0.003338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222555,0.003338,-0.003750,0.249972,0,0);}
.ma7_c00184{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);}
.m25_c00184{transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);}
.m54_c00184{transform:matrix(0.223500,0.003352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223500,0.003352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223500,0.003352,-0.003750,0.249972,0,0);}
.m58_c00184{transform:matrix(0.224080,0.003361,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224080,0.003361,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224080,0.003361,-0.003750,0.249972,0,0);}
.m3f_c00184{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);}
.m86_c00184{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);}
.mee_c00184{transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.226864,0.003403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226864,0.003403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226864,0.003403,-0.003750,0.249972,0,0);}
.mef_c00184{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);}
.ma8_c00184{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);}
.m43_c00184{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);}
.m9f_c00184{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);}
.ma6_c00184{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);}
.ma4_c00184{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);}
.m1e_c00184{transform:matrix(0.234834,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234834,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234834,0.003523,-0.003750,0.249972,0,0);}
.m21_c00184{transform:matrix(0.236658,0.003550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236658,0.003550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236658,0.003550,-0.003750,0.249972,0,0);}
.m3a_c00184{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);}
.m18_c00184{transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237718,0.003566,-0.003750,0.249972,0,0);}
.m79_c00184{transform:matrix(0.238802,0.003343,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238802,0.003343,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238802,0.003343,-0.003500,0.249976,0,0);}
.m31_c00184{transform:matrix(0.239148,0.003587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239148,0.003587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239148,0.003587,-0.003750,0.249972,0,0);}
.mf2_c00184{transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.241398,0.003621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241398,0.003621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241398,0.003621,-0.003750,0.249972,0,0);}
.ma5_c00184{transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);}
.mdf_c00184{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);}
.m98_c00184{transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{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);}
.mf3_c00184{transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);}
.m9b_c00184{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);}
.ma3_c00184{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);}
.m3b_c00184{transform:matrix(0.253910,0.003555,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253910,0.003555,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253910,0.003555,-0.003500,0.249976,0,0);}
.m82_c00184{transform:matrix(0.259977,0.004160,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259977,0.004160,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259977,0.004160,-0.003999,0.249968,0,0);}
.m94_c00184{transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);}
.m3c_c00184{transform:matrix(0.273408,0.003828,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273408,0.003828,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273408,0.003828,-0.003500,0.249976,0,0);}
.ma2_c00184{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.281078,0.004216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281078,0.004216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281078,0.004216,-0.003750,0.249972,0,0);}
.m41_c00184{transform:matrix(0.283197,0.003965,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283197,0.003965,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283197,0.003965,-0.003500,0.249976,0,0);}
.m37_c00184{transform:matrix(0.295272,0.004429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295272,0.004429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295272,0.004429,-0.003750,0.249972,0,0);}
.m42_c00184{transform:matrix(0.295306,0.004134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295306,0.004134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295306,0.004134,-0.003500,0.249976,0,0);}
.mca_c00184{transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299005,0.000000,0.000000,0.250000,0,0);}
.m4b_c00184{transform:matrix(0.310470,0.004657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310470,0.004657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310470,0.004657,-0.003750,0.249972,0,0);}
.mf4_c00184{transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);}
.mcb_c00184{transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.325940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325940,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.337397,0.005061,-0.003750,0.249972,0,0);-ms-transform:matrix(0.337397,0.005061,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.337397,0.005061,-0.003750,0.249972,0,0);}
.ma9_c00184{transform:matrix(0.337427,0.004724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.337427,0.004724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.337427,0.004724,-0.003500,0.249976,0,0);}
.m26_c00184{transform:matrix(0.343696,0.005155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.343696,0.005155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.343696,0.005155,-0.003750,0.249972,0,0);}
.m88_c00184{transform:matrix(0.349056,0.005236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349056,0.005236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349056,0.005236,-0.003750,0.249972,0,0);}
.m12_c00184{transform:matrix(0.349876,0.005248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349876,0.005248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349876,0.005248,-0.003750,0.249972,0,0);}
.m19_c00184{transform:matrix(0.361249,0.005419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.361249,0.005419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.361249,0.005419,-0.003750,0.249972,0,0);}
.mcc_c00184{transform:matrix(0.375930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375930,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{transform:matrix(0.383367,0.005751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.383367,0.005751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.383367,0.005751,-0.003750,0.249972,0,0);}
.m1b_c00184{transform:matrix(0.399560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399560,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.412970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412970,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.414698,0.006220,-0.003750,0.249972,0,0);-ms-transform:matrix(0.414698,0.006220,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.414698,0.006220,-0.003750,0.249972,0,0);}
.mb6_c00184{transform:matrix(0.434867,0.006088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.434867,0.006088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.434867,0.006088,-0.003500,0.249976,0,0);}
.m87_c00184{transform:matrix(0.511627,0.007674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.511627,0.007674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.511627,0.007674,-0.003750,0.249972,0,0);}
.m3e_c00184{transform:matrix(0.569164,0.007968,-0.003500,0.249976,0,0);-ms-transform:matrix(0.569164,0.007968,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.569164,0.007968,-0.003500,0.249976,0,0);}
.m34_c00184{transform:matrix(0.578175,0.008673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.578175,0.008673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.578175,0.008673,-0.003750,0.249972,0,0);}
.m3d_c00184{transform:matrix(0.648156,0.009074,-0.003500,0.249976,0,0);-ms-transform:matrix(0.648156,0.009074,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.648156,0.009074,-0.003500,0.249976,0,0);}
.mcd_c00184{transform:matrix(0.665405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665405,0.000000,0.000000,0.250000,0,0);}
.mf8_c00184{transform:matrix(0.665765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665765,0.000000,0.000000,0.250000,0,0);}
.mfa_c00184{transform:matrix(0.857810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857810,0.000000,0.000000,0.250000,0,0);}
.mf9_c00184{transform:matrix(1.313175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.313175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.313175,0.000000,0.000000,0.250000,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;}
.fsa_c00184{font-size:22.050000px;}
.fs1_c00184{font-size:23.100000px;}
.fs9_c00184{font-size:35.700000px;}
.fs17_c00184{font-size:46.200000px;}
.fs14_c00184{font-size:47.250000px;}
.fs18_c00184{font-size:48.300000px;}
.fs16_c00184{font-size:49.350000px;}
.fs1c_c00184{font-size:50.400000px;}
.fs1e_c00184{font-size:53.550000px;}
.fs13_c00184{font-size:54.600000px;}
.fs19_c00184{font-size:57.755659px;}
.fs1b_c00184{font-size:58.809525px;}
.fs1a_c00184{font-size:59.859695px;}
.fs1d_c00184{font-size:60.900000px;}
.fs11_c00184{font-size:60.905968px;}
.fs6_c00184{font-size:64.057205px;}
.fs7_c00184{font-size:66.157441px;}
.fs12_c00184{font-size:66.158467px;}
.fsb_c00184{font-size:67.206585px;}
.fs3_c00184{font-size:69.307796px;}
.fs5_c00184{font-size:70.350000px;}
.fse_c00184{font-size:70.356894px;}
.fsc_c00184{font-size:70.357914px;}
.fs2_c00184{font-size:71.400000px;}
.fs8_c00184{font-size:71.408032px;}
.fs1f_c00184{font-size:72.450000px;}
.fsd_c00184{font-size:72.456122px;}
.fs15_c00184{font-size:73.500000px;}
.fs4_c00184{font-size:73.508268px;}
.fsf_c00184{font-size:73.509407px;}
.fs0_c00184{font-size:77.700000px;}
.fs10_c00184{font-size:80.856832px;}
.fs20_c00184{font-size:161.700000px;}
.y0_c00184{bottom:0.000000px;}
.yb6_c00184{bottom:98.779500px;}
.yb5_c00184{bottom:148.230000px;}
.yad_c00184{bottom:162.270000px;}
.yac_c00184{bottom:171.594000px;}
.yab_c00184{bottom:172.740114px;}
.yaa_c00184{bottom:173.417259px;}
.ya9_c00184{bottom:173.651886px;}
.ya8_c00184{bottom:174.005109px;}
.ya7_c00184{bottom:174.715296px;}
.ya6_c00184{bottom:175.640112px;}
.ya5_c00184{bottom:176.100495px;}
.yb4_c00184{bottom:187.609500px;}
.ya4_c00184{bottom:189.218472px;}
.ya3_c00184{bottom:189.863259px;}
.ya2_c00184{bottom:190.334679px;}
.ya1_c00184{bottom:191.395293px;}
.ya0_c00184{bottom:191.724855px;}
.y9f_c00184{bottom:191.969043px;}
.y9e_c00184{bottom:192.587559px;}
.y9d_c00184{bottom:192.979761px;}
.y9c_c00184{bottom:193.466112px;}
.y9b_c00184{bottom:193.591500px;}
.y9a_c00184{bottom:204.340500px;}
.y99_c00184{bottom:204.722343px;}
.y98_c00184{bottom:205.429917px;}
.y97_c00184{bottom:205.667301px;}
.y96_c00184{bottom:206.552325px;}
.y95_c00184{bottom:207.036438px;}
.y94_c00184{bottom:207.240537px;}
.y93_c00184{bottom:207.686430px;}
.y92_c00184{bottom:207.837462px;}
.y91_c00184{bottom:208.374159px;}
.y90_c00184{bottom:208.975851px;}
.y8f_c00184{bottom:209.353767px;}
.y8e_c00184{bottom:209.848842px;}
.y8d_c00184{bottom:210.560364px;}
.y8c_c00184{bottom:210.949725px;}
.y8b_c00184{bottom:211.144500px;}
.yb3_c00184{bottom:223.728000px;}
.y8a_c00184{bottom:227.208000px;}
.yb2_c00184{bottom:241.213500px;}
.y89_c00184{bottom:245.337000px;}
.yb1_c00184{bottom:259.102500px;}
.y88_c00184{bottom:262.539000px;}
.yb0_c00184{bottom:277.075500px;}
.y87_c00184{bottom:281.734500px;}
.yaf_c00184{bottom:294.738000px;}
.y86_c00184{bottom:298.519500px;}
.yae_c00184{bottom:312.831000px;}
.y85_c00184{bottom:316.668000px;}
.y84_c00184{bottom:365.529743px;}
.y83_c00184{bottom:366.271050px;}
.y82_c00184{bottom:366.663000px;}
.y81_c00184{bottom:367.664520px;}
.y80_c00184{bottom:368.823000px;}
.y7f_c00184{bottom:385.639224px;}
.y7e_c00184{bottom:386.210424px;}
.y7d_c00184{bottom:386.957688px;}
.y7c_c00184{bottom:387.614592px;}
.y7b_c00184{bottom:387.968712px;}
.y7a_c00184{bottom:388.807104px;}
.y79_c00184{bottom:389.433360px;}
.y78_c00184{bottom:389.822256px;}
.y77_c00184{bottom:390.370824px;}
.y76_c00184{bottom:390.794328px;}
.y75_c00184{bottom:391.503000px;}
.y74_c00184{bottom:409.766112px;}
.y73_c00184{bottom:410.538639px;}
.y72_c00184{bottom:410.894127px;}
.y71_c00184{bottom:411.547899px;}
.y70_c00184{bottom:411.831630px;}
.y6f_c00184{bottom:412.307133px;}
.y6e_c00184{bottom:412.757814px;}
.y6d_c00184{bottom:413.494956px;}
.y6c_c00184{bottom:414.183000px;}
.y6b_c00184{bottom:432.696471px;}
.y6a_c00184{bottom:433.251149px;}
.y69_c00184{bottom:433.690093px;}
.y68_c00184{bottom:434.142669px;}
.y67_c00184{bottom:434.571045px;}
.y66_c00184{bottom:435.227727px;}
.y65_c00184{bottom:436.070185px;}
.y64_c00184{bottom:436.593000px;}
.y63_c00184{bottom:455.442816px;}
.y62_c00184{bottom:456.423672px;}
.y61_c00184{bottom:457.136304px;}
.y60_c00184{bottom:458.241192px;}
.y5f_c00184{bottom:458.859288px;}
.y5e_c00184{bottom:459.089040px;}
.y5d_c00184{bottom:460.083000px;}
.y5c_c00184{bottom:478.475178px;}
.y5b_c00184{bottom:478.918509px;}
.y5a_c00184{bottom:479.768925px;}
.y59_c00184{bottom:480.256713px;}
.y58_c00184{bottom:480.724656px;}
.y57_c00184{bottom:481.277439px;}
.y56_c00184{bottom:481.534458px;}
.y55_c00184{bottom:482.100555px;}
.y54_c00184{bottom:482.414316px;}
.y53_c00184{bottom:482.763000px;}
.y52_c00184{bottom:500.057355px;}
.y51_c00184{bottom:501.331868px;}
.y50_c00184{bottom:501.984277px;}
.y4f_c00184{bottom:503.340937px;}
.y4e_c00184{bottom:504.175440px;}
.y4d_c00184{bottom:504.810120px;}
.y4c_c00184{bottom:505.443000px;}
.y4b_c00184{bottom:524.081428px;}
.y4a_c00184{bottom:525.155586px;}
.y49_c00184{bottom:526.054438px;}
.y48_c00184{bottom:526.373049px;}
.y47_c00184{bottom:526.679160px;}
.y46_c00184{bottom:527.851500px;}
.y45_c00184{bottom:548.366550px;}
.y44_c00184{bottom:548.366910px;}
.y43_c00184{bottom:567.327337px;}
.y42_c00184{bottom:569.517645px;}
.y41_c00184{bottom:570.429165px;}
.y40_c00184{bottom:570.745267px;}
.y3f_c00184{bottom:571.161337px;}
.y3e_c00184{bottom:572.284403px;}
.y3d_c00184{bottom:573.483000px;}
.y3c_c00184{bottom:591.175878px;}
.y3b_c00184{bottom:591.509547px;}
.y3a_c00184{bottom:591.936057px;}
.y39_c00184{bottom:592.347132px;}
.y38_c00184{bottom:592.826940px;}
.y37_c00184{bottom:593.597640px;}
.y36_c00184{bottom:594.471009px;}
.y35_c00184{bottom:594.768285px;}
.y34_c00184{bottom:595.354500px;}
.y33_c00184{bottom:620.053500px;}
.y32_c00184{bottom:632.880000px;}
.y31_c00184{bottom:645.876982px;}
.y30_c00184{bottom:646.312823px;}
.y2f_c00184{bottom:646.735080px;}
.y2e_c00184{bottom:648.027623px;}
.y2d_c00184{bottom:649.061610px;}
.y2c_c00184{bottom:649.318658px;}
.y2b_c00184{bottom:649.906058px;}
.y2a_c00184{bottom:650.429122px;}
.y29_c00184{bottom:668.087790px;}
.y28_c00184{bottom:668.529180px;}
.y27_c00184{bottom:669.129195px;}
.y26_c00184{bottom:669.704318px;}
.y25_c00184{bottom:670.764097px;}
.y24_c00184{bottom:671.327348px;}
.y23_c00184{bottom:672.517013px;}
.y22_c00184{bottom:673.229843px;}
.y21_c00184{bottom:673.650930px;}
.y20_c00184{bottom:690.267023px;}
.y1f_c00184{bottom:690.326198px;}
.y1e_c00184{bottom:691.260735px;}
.y1d_c00184{bottom:691.908713px;}
.y1c_c00184{bottom:692.301338px;}
.y1b_c00184{bottom:692.543640px;}
.y1a_c00184{bottom:692.924408px;}
.y19_c00184{bottom:693.654668px;}
.y18_c00184{bottom:694.027155px;}
.y17_c00184{bottom:694.895340px;}
.y16_c00184{bottom:695.177828px;}
.y15_c00184{bottom:695.793000px;}
.y14_c00184{bottom:720.363000px;}
.y13_c00184{bottom:746.820592px;}
.y12_c00184{bottom:747.658778px;}
.y11_c00184{bottom:748.297763px;}
.y10_c00184{bottom:748.686172px;}
.yf_c00184{bottom:748.877213px;}
.ye_c00184{bottom:749.671530px;}
.yd_c00184{bottom:750.598830px;}
.yc_c00184{bottom:767.920305px;}
.yb_c00184{bottom:769.045102px;}
.ya_c00184{bottom:769.964408px;}
.y9_c00184{bottom:770.827328px;}
.y8_c00184{bottom:771.474225px;}
.y7_c00184{bottom:772.215600px;}
.y6_c00184{bottom:773.053927px;}
.y5_c00184{bottom:773.553000px;}
.y4_c00184{bottom:799.068000px;}
.y1_c00184{bottom:826.900500px;}
.y3_c00184{bottom:972.270000px;}
.y2_c00184{bottom:975.510000px;}
.hc_c00184{height:22.050000px;}
.h3_c00184{height:23.100000px;}
.hb_c00184{height:35.700000px;}
.h19_c00184{height:46.200000px;}
.h16_c00184{height:47.250000px;}
.h1a_c00184{height:48.300000px;}
.h18_c00184{height:49.350000px;}
.h1e_c00184{height:50.400000px;}
.h20_c00184{height:53.550000px;}
.h15_c00184{height:54.600000px;}
.h1b_c00184{height:57.755659px;}
.h1d_c00184{height:58.809525px;}
.h1c_c00184{height:59.859695px;}
.h1f_c00184{height:60.900000px;}
.h13_c00184{height:60.905968px;}
.h8_c00184{height:64.057205px;}
.h9_c00184{height:66.157441px;}
.h14_c00184{height:66.158467px;}
.hd_c00184{height:67.206585px;}
.h5_c00184{height:69.307796px;}
.h7_c00184{height:70.350000px;}
.h10_c00184{height:70.356894px;}
.he_c00184{height:70.357914px;}
.h4_c00184{height:71.400000px;}
.ha_c00184{height:71.408032px;}
.h21_c00184{height:72.450000px;}
.hf_c00184{height:72.456122px;}
.h17_c00184{height:73.500000px;}
.h6_c00184{height:73.508268px;}
.h11_c00184{height:73.509407px;}
.h2_c00184{height:77.700000px;}
.h12_c00184{height:80.856832px;}
.h22_c00184{height:161.700000px;}
.h1_c00184{height:1005.000000px;}
.h0_c00184{height:1005.150000px;}
.w0_c00184{width:735.750000px;}
.x0_c00184{left:0.000000px;}
.x68_c00184{left:80.730000px;}
.x79_c00184{left:82.773000px;}
.x62_c00184{left:86.130000px;}
.x6f_c00184{left:89.596500px;}
.x70_c00184{left:103.509000px;}
.x7e_c00184{left:109.674693px;}
.x63_c00184{left:115.560000px;}
.x7a_c00184{left:116.758500px;}
.x55_c00184{left:126.988500px;}
.x4e_c00184{left:128.034000px;}
.x24_c00184{left:129.117697px;}
.x1a_c00184{left:130.212000px;}
.x1_c00184{left:131.760000px;}
.x64_c00184{left:133.650000px;}
.x6c_c00184{left:137.970000px;}
.x66_c00184{left:143.100000px;}
.x7f_c00184{left:149.883075px;}
.x25_c00184{left:153.889455px;}
.x6e_c00184{left:156.330000px;}
.x2d_c00184{left:160.960267px;}
.x69_c00184{left:163.080000px;}
.x2_c00184{left:164.160000px;}
.x51_c00184{left:169.101000px;}
.x1b_c00184{left:171.223500px;}
.x31_c00184{left:172.800000px;}
.x47_c00184{left:176.200500px;}
.x65_c00184{left:181.170000px;}
.x7b_c00184{left:186.475500px;}
.x3_c00184{left:190.350000px;}
.x33_c00184{left:193.161000px;}
.x26_c00184{left:195.810195px;}
.x5b_c00184{left:197.719500px;}
.x4f_c00184{left:204.516000px;}
.x6a_c00184{left:206.550000px;}
.x12_c00184{left:208.822237px;}
.x2e_c00184{left:210.655282px;}
.x44_c00184{left:214.179000px;}
.x48_c00184{left:216.636000px;}
.x40_c00184{left:218.797500px;}
.xc_c00184{left:220.725000px;}
.x4_c00184{left:227.340000px;}
.x56_c00184{left:228.787500px;}
.x5c_c00184{left:232.005000px;}
.x52_c00184{left:233.905500px;}
.x49_c00184{left:234.994500px;}
.x41_c00184{left:242.344500px;}
.x71_c00184{left:244.500000px;}
.x1c_c00184{left:247.935000px;}
.x6b_c00184{left:252.450000px;}
.x34_c00184{left:255.544500px;}
.xb_c00184{left:261.900000px;}
.x7c_c00184{left:263.707500px;}
.x27_c00184{left:265.819102px;}
.x5_c00184{left:267.570000px;}
.xd_c00184{left:270.150000px;}
.x2f_c00184{left:271.485960px;}
.x1d_c00184{left:272.767500px;}
.x13_c00184{left:274.979707px;}
.x80_c00184{left:276.480000px;}
.x67_c00184{left:278.910000px;}
.x18_c00184{left:280.800000px;}
.x3a_c00184{left:284.191500px;}
.x6_c00184{left:288.090000px;}
.x7d_c00184{left:289.897500px;}
.x14_c00184{left:290.916427px;}
.x57_c00184{left:294.943500px;}
.x61_c00184{left:297.102000px;}
.x28_c00184{left:298.968112px;}
.x6d_c00184{left:301.320000px;}
.x4a_c00184{left:307.903500px;}
.x35_c00184{left:310.594500px;}
.x3b_c00184{left:311.929500px;}
.xe_c00184{left:313.276500px;}
.x58_c00184{left:315.210000px;}
.x53_c00184{left:317.371500px;}
.x1e_c00184{left:321.451500px;}
.x15_c00184{left:323.311890px;}
.x72_c00184{left:325.813500px;}
.x3f_c00184{left:328.612147px;}
.x19_c00184{left:329.670000px;}
.x3c_c00184{left:333.003000px;}
.x42_c00184{left:335.995500px;}
.x7_c00184{left:337.230000px;}
.x8b_c00184{left:339.120000px;}
.x81_c00184{left:340.470000px;}
.x4b_c00184{left:342.745500px;}
.x36_c00184{left:344.866500px;}
.x1f_c00184{left:346.836000px;}
.x5d_c00184{left:347.851500px;}
.x9_c00184{left:351.000000px;}
.xa_c00184{left:352.080000px;}
.x50_c00184{left:356.742000px;}
.x9a_c00184{left:358.020000px;}
.x82_c00184{left:359.100000px;}
.x45_c00184{left:360.256500px;}
.x29_c00184{left:361.318245px;}
.x20_c00184{left:362.989500px;}
.x73_c00184{left:368.451000px;}
.xf_c00184{left:370.804500px;}
.x8_c00184{left:372.870000px;}
.x37_c00184{left:374.229000px;}
.x16_c00184{left:376.513275px;}
.x74_c00184{left:383.029500px;}
.x54_c00184{left:385.950000px;}
.x59_c00184{left:387.300000px;}
.x21_c00184{left:389.164500px;}
.x3d_c00184{left:393.771000px;}
.x2a_c00184{left:395.158733px;}
.x30_c00184{left:398.058180px;}
.x4c_c00184{left:403.489500px;}
.x38_c00184{left:404.694000px;}
.x32_c00184{left:406.350000px;}
.x8c_c00184{left:408.240000px;}
.x86_c00184{left:409.860000px;}
.x5e_c00184{left:411.040500px;}
.x75_c00184{left:417.609000px;}
.x43_c00184{left:418.623000px;}
.x90_c00184{left:424.710000px;}
.x94_c00184{left:427.410000px;}
.x39_c00184{left:428.527500px;}
.x2b_c00184{left:430.458675px;}
.x10_c00184{left:432.091500px;}
.x8d_c00184{left:433.350000px;}
.x4d_c00184{left:435.156000px;}
.x9b_c00184{left:437.400000px;}
.x5a_c00184{left:442.480500px;}
.x17_c00184{left:446.395425px;}
.x83_c00184{left:452.520000px;}
.x2c_c00184{left:456.383888px;}
.x5f_c00184{left:457.744500px;}
.x96_c00184{left:459.270000px;}
.x91_c00184{left:463.860000px;}
.x87_c00184{left:467.640000px;}
.x8e_c00184{left:472.230000px;}
.x88_c00184{left:478.980000px;}
.x76_c00184{left:480.825000px;}
.x92_c00184{left:483.570000px;}
.x97_c00184{left:487.620000px;}
.x46_c00184{left:488.718000px;}
.x8f_c00184{left:491.130000px;}
.x60_c00184{left:493.444500px;}
.x22_c00184{left:494.665500px;}
.x23_c00184{left:498.610500px;}
.x11_c00184{left:507.078000px;}
.x95_c00184{left:511.380000px;}
.x98_c00184{left:519.750000px;}
.x84_c00184{left:522.180000px;}
.x89_c00184{left:523.530000px;}
.x99_c00184{left:529.740000px;}
.x3e_c00184{left:539.791500px;}
.x85_c00184{left:542.700000px;}
.x77_c00184{left:548.322000px;}
.x93_c00184{left:551.340000px;}
.x8a_c00184{left:552.690000px;}
.x78_c00184{left:575.596500px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
.fsa_c00184{font-size:19.600000pt;}
.fs1_c00184{font-size:20.533333pt;}
.fs9_c00184{font-size:31.733333pt;}
.fs17_c00184{font-size:41.066667pt;}
.fs14_c00184{font-size:42.000000pt;}
.fs18_c00184{font-size:42.933333pt;}
.fs16_c00184{font-size:43.866667pt;}
.fs1c_c00184{font-size:44.800000pt;}
.fs1e_c00184{font-size:47.600000pt;}
.fs13_c00184{font-size:48.533333pt;}
.fs19_c00184{font-size:51.338364pt;}
.fs1b_c00184{font-size:52.275133pt;}
.fs1a_c00184{font-size:53.208618pt;}
.fs1d_c00184{font-size:54.133333pt;}
.fs11_c00184{font-size:54.138638pt;}
.fs6_c00184{font-size:56.939738pt;}
.fs7_c00184{font-size:58.806615pt;}
.fs12_c00184{font-size:58.807526pt;}
.fsb_c00184{font-size:59.739187pt;}
.fs3_c00184{font-size:61.606930pt;}
.fs5_c00184{font-size:62.533333pt;}
.fse_c00184{font-size:62.539461pt;}
.fsc_c00184{font-size:62.540368pt;}
.fs2_c00184{font-size:63.466667pt;}
.fs8_c00184{font-size:63.473806pt;}
.fs1f_c00184{font-size:64.400000pt;}
.fsd_c00184{font-size:64.405442pt;}
.fs15_c00184{font-size:65.333333pt;}
.fs4_c00184{font-size:65.340683pt;}
.fsf_c00184{font-size:65.341695pt;}
.fs0_c00184{font-size:69.066667pt;}
.fs10_c00184{font-size:71.872739pt;}
.fs20_c00184{font-size:143.733333pt;}
.y0_c00184{bottom:0.000000pt;}
.yb6_c00184{bottom:87.804000pt;}
.yb5_c00184{bottom:131.760000pt;}
.yad_c00184{bottom:144.240000pt;}
.yac_c00184{bottom:152.528000pt;}
.yab_c00184{bottom:153.546768pt;}
.yaa_c00184{bottom:154.148675pt;}
.ya9_c00184{bottom:154.357232pt;}
.ya8_c00184{bottom:154.671208pt;}
.ya7_c00184{bottom:155.302485pt;}
.ya6_c00184{bottom:156.124544pt;}
.ya5_c00184{bottom:156.533773pt;}
.yb4_c00184{bottom:166.764000pt;}
.ya4_c00184{bottom:168.194197pt;}
.ya3_c00184{bottom:168.767341pt;}
.ya2_c00184{bottom:169.186381pt;}
.ya1_c00184{bottom:170.129149pt;}
.ya0_c00184{bottom:170.422093pt;}
.y9f_c00184{bottom:170.639149pt;}
.y9e_c00184{bottom:171.188941pt;}
.y9d_c00184{bottom:171.537565pt;}
.y9c_c00184{bottom:171.969877pt;}
.y9b_c00184{bottom:172.081333pt;}
.y9a_c00184{bottom:181.636000pt;}
.y99_c00184{bottom:181.975416pt;}
.y98_c00184{bottom:182.604371pt;}
.y97_c00184{bottom:182.815379pt;}
.y96_c00184{bottom:183.602067pt;}
.y95_c00184{bottom:184.032389pt;}
.y94_c00184{bottom:184.213811pt;}
.y93_c00184{bottom:184.610160pt;}
.y92_c00184{bottom:184.744411pt;}
.y91_c00184{bottom:185.221475pt;}
.y90_c00184{bottom:185.756312pt;}
.y8f_c00184{bottom:186.092237pt;}
.y8e_c00184{bottom:186.532304pt;}
.y8d_c00184{bottom:187.164768pt;}
.y8c_c00184{bottom:187.510867pt;}
.y8b_c00184{bottom:187.684000pt;}
.yb3_c00184{bottom:198.869333pt;}
.y8a_c00184{bottom:201.962667pt;}
.yb2_c00184{bottom:214.412000pt;}
.y89_c00184{bottom:218.077333pt;}
.yb1_c00184{bottom:230.313333pt;}
.y88_c00184{bottom:233.368000pt;}
.yb0_c00184{bottom:246.289333pt;}
.y87_c00184{bottom:250.430667pt;}
.yaf_c00184{bottom:261.989333pt;}
.y86_c00184{bottom:265.350667pt;}
.yae_c00184{bottom:278.072000pt;}
.y85_c00184{bottom:281.482667pt;}
.y84_c00184{bottom:324.915327pt;}
.y83_c00184{bottom:325.574267pt;}
.y82_c00184{bottom:325.922667pt;}
.y81_c00184{bottom:326.812907pt;}
.y80_c00184{bottom:327.842667pt;}
.y7f_c00184{bottom:342.790421pt;}
.y7e_c00184{bottom:343.298155pt;}
.y7d_c00184{bottom:343.962389pt;}
.y7c_c00184{bottom:344.546304pt;}
.y7b_c00184{bottom:344.861077pt;}
.y7a_c00184{bottom:345.606315pt;}
.y79_c00184{bottom:346.162987pt;}
.y78_c00184{bottom:346.508672pt;}
.y77_c00184{bottom:346.996288pt;}
.y76_c00184{bottom:347.372736pt;}
.y75_c00184{bottom:348.002667pt;}
.y74_c00184{bottom:364.236544pt;}
.y73_c00184{bottom:364.923235pt;}
.y72_c00184{bottom:365.239224pt;}
.y71_c00184{bottom:365.820355pt;}
.y70_c00184{bottom:366.072560pt;}
.y6f_c00184{bottom:366.495229pt;}
.y6e_c00184{bottom:366.895835pt;}
.y6d_c00184{bottom:367.551072pt;}
.y6c_c00184{bottom:368.162667pt;}
.y6b_c00184{bottom:384.619085pt;}
.y6a_c00184{bottom:385.112132pt;}
.y69_c00184{bottom:385.502305pt;}
.y68_c00184{bottom:385.904595pt;}
.y67_c00184{bottom:386.285373pt;}
.y66_c00184{bottom:386.869091pt;}
.y65_c00184{bottom:387.617943pt;}
.y64_c00184{bottom:388.082667pt;}
.y63_c00184{bottom:404.838059pt;}
.y62_c00184{bottom:405.709931pt;}
.y61_c00184{bottom:406.343381pt;}
.y60_c00184{bottom:407.325504pt;}
.y5f_c00184{bottom:407.874923pt;}
.y5e_c00184{bottom:408.079147pt;}
.y5d_c00184{bottom:408.962667pt;}
.y5c_c00184{bottom:425.311269pt;}
.y5b_c00184{bottom:425.705341pt;}
.y5a_c00184{bottom:426.461267pt;}
.y59_c00184{bottom:426.894856pt;}
.y58_c00184{bottom:427.310805pt;}
.y57_c00184{bottom:427.802168pt;}
.y56_c00184{bottom:428.030629pt;}
.y55_c00184{bottom:428.533827pt;}
.y54_c00184{bottom:428.812725pt;}
.y53_c00184{bottom:429.122667pt;}
.y52_c00184{bottom:444.495427pt;}
.y51_c00184{bottom:445.628327pt;}
.y50_c00184{bottom:446.208247pt;}
.y4f_c00184{bottom:447.414167pt;}
.y4e_c00184{bottom:448.155947pt;}
.y4d_c00184{bottom:448.720107pt;}
.y4c_c00184{bottom:449.282667pt;}
.y4b_c00184{bottom:465.850159pt;}
.y4a_c00184{bottom:466.804965pt;}
.y49_c00184{bottom:467.603945pt;}
.y48_c00184{bottom:467.887155pt;}
.y47_c00184{bottom:468.159253pt;}
.y46_c00184{bottom:469.201333pt;}
.y45_c00184{bottom:487.436933pt;}
.y44_c00184{bottom:487.437253pt;}
.y43_c00184{bottom:504.290967pt;}
.y42_c00184{bottom:506.237907pt;}
.y41_c00184{bottom:507.048147pt;}
.y40_c00184{bottom:507.329127pt;}
.y3f_c00184{bottom:507.698967pt;}
.y3e_c00184{bottom:508.697247pt;}
.y3d_c00184{bottom:509.762667pt;}
.y3c_c00184{bottom:525.489669pt;}
.y3b_c00184{bottom:525.786264pt;}
.y3a_c00184{bottom:526.165384pt;}
.y39_c00184{bottom:526.530784pt;}
.y38_c00184{bottom:526.957280pt;}
.y37_c00184{bottom:527.642347pt;}
.y36_c00184{bottom:528.418675pt;}
.y35_c00184{bottom:528.682920pt;}
.y34_c00184{bottom:529.204000pt;}
.y33_c00184{bottom:551.158667pt;}
.y32_c00184{bottom:562.560000pt;}
.y31_c00184{bottom:574.112873pt;}
.y30_c00184{bottom:574.500287pt;}
.y2f_c00184{bottom:574.875627pt;}
.y2e_c00184{bottom:576.024553pt;}
.y2d_c00184{bottom:576.943653pt;}
.y2c_c00184{bottom:577.172140pt;}
.y2b_c00184{bottom:577.694273pt;}
.y2a_c00184{bottom:578.159220pt;}
.y29_c00184{bottom:593.855813pt;}
.y28_c00184{bottom:594.248160pt;}
.y27_c00184{bottom:594.781507pt;}
.y26_c00184{bottom:595.292727pt;}
.y25_c00184{bottom:596.234753pt;}
.y24_c00184{bottom:596.735420pt;}
.y23_c00184{bottom:597.792900pt;}
.y22_c00184{bottom:598.426527pt;}
.y21_c00184{bottom:598.800827pt;}
.y20_c00184{bottom:613.570687pt;}
.y1f_c00184{bottom:613.623287pt;}
.y1e_c00184{bottom:614.453987pt;}
.y1d_c00184{bottom:615.029967pt;}
.y1c_c00184{bottom:615.378967pt;}
.y1b_c00184{bottom:615.594347pt;}
.y1a_c00184{bottom:615.932807pt;}
.y19_c00184{bottom:616.581927pt;}
.y18_c00184{bottom:616.913027pt;}
.y17_c00184{bottom:617.684747pt;}
.y16_c00184{bottom:617.935847pt;}
.y15_c00184{bottom:618.482667pt;}
.y14_c00184{bottom:640.322667pt;}
.y13_c00184{bottom:663.840527pt;}
.y12_c00184{bottom:664.585580pt;}
.y11_c00184{bottom:665.153567pt;}
.y10_c00184{bottom:665.498820pt;}
.yf_c00184{bottom:665.668633pt;}
.ye_c00184{bottom:666.374693pt;}
.yd_c00184{bottom:667.198960pt;}
.yc_c00184{bottom:682.595827pt;}
.yb_c00184{bottom:683.595647pt;}
.ya_c00184{bottom:684.412807pt;}
.y9_c00184{bottom:685.179847pt;}
.y8_c00184{bottom:685.754867pt;}
.y7_c00184{bottom:686.413867pt;}
.y6_c00184{bottom:687.159047pt;}
.y5_c00184{bottom:687.602667pt;}
.y4_c00184{bottom:710.282667pt;}
.y1_c00184{bottom:735.022667pt;}
.y3_c00184{bottom:864.240000pt;}
.y2_c00184{bottom:867.120000pt;}
.hc_c00184{height:19.600000pt;}
.h3_c00184{height:20.533333pt;}
.hb_c00184{height:31.733333pt;}
.h19_c00184{height:41.066667pt;}
.h16_c00184{height:42.000000pt;}
.h1a_c00184{height:42.933333pt;}
.h18_c00184{height:43.866667pt;}
.h1e_c00184{height:44.800000pt;}
.h20_c00184{height:47.600000pt;}
.h15_c00184{height:48.533333pt;}
.h1b_c00184{height:51.338364pt;}
.h1d_c00184{height:52.275133pt;}
.h1c_c00184{height:53.208618pt;}
.h1f_c00184{height:54.133333pt;}
.h13_c00184{height:54.138638pt;}
.h8_c00184{height:56.939738pt;}
.h9_c00184{height:58.806615pt;}
.h14_c00184{height:58.807526pt;}
.hd_c00184{height:59.739187pt;}
.h5_c00184{height:61.606930pt;}
.h7_c00184{height:62.533333pt;}
.h10_c00184{height:62.539461pt;}
.he_c00184{height:62.540368pt;}
.h4_c00184{height:63.466667pt;}
.ha_c00184{height:63.473806pt;}
.h21_c00184{height:64.400000pt;}
.hf_c00184{height:64.405442pt;}
.h17_c00184{height:65.333333pt;}
.h6_c00184{height:65.340683pt;}
.h11_c00184{height:65.341695pt;}
.h2_c00184{height:69.066667pt;}
.h12_c00184{height:71.872739pt;}
.h22_c00184{height:143.733333pt;}
.h1_c00184{height:893.333333pt;}
.h0_c00184{height:893.466667pt;}
.w0_c00184{width:654.000000pt;}
.x0_c00184{left:0.000000pt;}
.x68_c00184{left:71.760000pt;}
.x79_c00184{left:73.576000pt;}
.x62_c00184{left:76.560000pt;}
.x6f_c00184{left:79.641333pt;}
.x70_c00184{left:92.008000pt;}
.x7e_c00184{left:97.488616pt;}
.x63_c00184{left:102.720000pt;}
.x7a_c00184{left:103.785333pt;}
.x55_c00184{left:112.878667pt;}
.x4e_c00184{left:113.808000pt;}
.x24_c00184{left:114.771287pt;}
.x1a_c00184{left:115.744000pt;}
.x1_c00184{left:117.120000pt;}
.x64_c00184{left:118.800000pt;}
.x6c_c00184{left:122.640000pt;}
.x66_c00184{left:127.200000pt;}
.x7f_c00184{left:133.229400pt;}
.x25_c00184{left:136.790627pt;}
.x6e_c00184{left:138.960000pt;}
.x2d_c00184{left:143.075793pt;}
.x69_c00184{left:144.960000pt;}
.x2_c00184{left:145.920000pt;}
.x51_c00184{left:150.312000pt;}
.x1b_c00184{left:152.198667pt;}
.x31_c00184{left:153.600000pt;}
.x47_c00184{left:156.622667pt;}
.x65_c00184{left:161.040000pt;}
.x7b_c00184{left:165.756000pt;}
.x3_c00184{left:169.200000pt;}
.x33_c00184{left:171.698667pt;}
.x26_c00184{left:174.053507pt;}
.x5b_c00184{left:175.750667pt;}
.x4f_c00184{left:181.792000pt;}
.x6a_c00184{left:183.600000pt;}
.x12_c00184{left:185.619767pt;}
.x2e_c00184{left:187.249140pt;}
.x44_c00184{left:190.381333pt;}
.x48_c00184{left:192.565333pt;}
.x40_c00184{left:194.486667pt;}
.xc_c00184{left:196.200000pt;}
.x4_c00184{left:202.080000pt;}
.x56_c00184{left:203.366667pt;}
.x5c_c00184{left:206.226667pt;}
.x52_c00184{left:207.916000pt;}
.x49_c00184{left:208.884000pt;}
.x41_c00184{left:215.417333pt;}
.x71_c00184{left:217.333333pt;}
.x1c_c00184{left:220.386667pt;}
.x6b_c00184{left:224.400000pt;}
.x34_c00184{left:227.150667pt;}
.xb_c00184{left:232.800000pt;}
.x7c_c00184{left:234.406667pt;}
.x27_c00184{left:236.283647pt;}
.x5_c00184{left:237.840000pt;}
.xd_c00184{left:240.133333pt;}
.x2f_c00184{left:241.320853pt;}
.x1d_c00184{left:242.460000pt;}
.x13_c00184{left:244.426407pt;}
.x80_c00184{left:245.760000pt;}
.x67_c00184{left:247.920000pt;}
.x18_c00184{left:249.600000pt;}
.x3a_c00184{left:252.614667pt;}
.x6_c00184{left:256.080000pt;}
.x7d_c00184{left:257.686667pt;}
.x14_c00184{left:258.592380pt;}
.x57_c00184{left:262.172000pt;}
.x61_c00184{left:264.090667pt;}
.x28_c00184{left:265.749433pt;}
.x6d_c00184{left:267.840000pt;}
.x4a_c00184{left:273.692000pt;}
.x35_c00184{left:276.084000pt;}
.x3b_c00184{left:277.270667pt;}
.xe_c00184{left:278.468000pt;}
.x58_c00184{left:280.186667pt;}
.x53_c00184{left:282.108000pt;}
.x1e_c00184{left:285.734667pt;}
.x15_c00184{left:287.388347pt;}
.x72_c00184{left:289.612000pt;}
.x3f_c00184{left:292.099687pt;}
.x19_c00184{left:293.040000pt;}
.x3c_c00184{left:296.002667pt;}
.x42_c00184{left:298.662667pt;}
.x7_c00184{left:299.760000pt;}
.x8b_c00184{left:301.440000pt;}
.x81_c00184{left:302.640000pt;}
.x4b_c00184{left:304.662667pt;}
.x36_c00184{left:306.548000pt;}
.x1f_c00184{left:308.298667pt;}
.x5d_c00184{left:309.201333pt;}
.x9_c00184{left:312.000000pt;}
.xa_c00184{left:312.960000pt;}
.x50_c00184{left:317.104000pt;}
.x9a_c00184{left:318.240000pt;}
.x82_c00184{left:319.200000pt;}
.x45_c00184{left:320.228000pt;}
.x29_c00184{left:321.171773pt;}
.x20_c00184{left:322.657333pt;}
.x73_c00184{left:327.512000pt;}
.xf_c00184{left:329.604000pt;}
.x8_c00184{left:331.440000pt;}
.x37_c00184{left:332.648000pt;}
.x16_c00184{left:334.678467pt;}
.x74_c00184{left:340.470667pt;}
.x54_c00184{left:343.066667pt;}
.x59_c00184{left:344.266667pt;}
.x21_c00184{left:345.924000pt;}
.x3d_c00184{left:350.018667pt;}
.x2a_c00184{left:351.252207pt;}
.x30_c00184{left:353.829493pt;}
.x4c_c00184{left:358.657333pt;}
.x38_c00184{left:359.728000pt;}
.x32_c00184{left:361.200000pt;}
.x8c_c00184{left:362.880000pt;}
.x86_c00184{left:364.320000pt;}
.x5e_c00184{left:365.369333pt;}
.x75_c00184{left:371.208000pt;}
.x43_c00184{left:372.109333pt;}
.x90_c00184{left:377.520000pt;}
.x94_c00184{left:379.920000pt;}
.x39_c00184{left:380.913333pt;}
.x2b_c00184{left:382.629933pt;}
.x10_c00184{left:384.081333pt;}
.x8d_c00184{left:385.200000pt;}
.x4d_c00184{left:386.805333pt;}
.x9b_c00184{left:388.800000pt;}
.x5a_c00184{left:393.316000pt;}
.x17_c00184{left:396.795933pt;}
.x83_c00184{left:402.240000pt;}
.x2c_c00184{left:405.674567pt;}
.x5f_c00184{left:406.884000pt;}
.x96_c00184{left:408.240000pt;}
.x91_c00184{left:412.320000pt;}
.x87_c00184{left:415.680000pt;}
.x8e_c00184{left:419.760000pt;}
.x88_c00184{left:425.760000pt;}
.x76_c00184{left:427.400000pt;}
.x92_c00184{left:429.840000pt;}
.x97_c00184{left:433.440000pt;}
.x46_c00184{left:434.416000pt;}
.x8f_c00184{left:436.560000pt;}
.x60_c00184{left:438.617333pt;}
.x22_c00184{left:439.702667pt;}
.x23_c00184{left:443.209333pt;}
.x11_c00184{left:450.736000pt;}
.x95_c00184{left:454.560000pt;}
.x98_c00184{left:462.000000pt;}
.x84_c00184{left:464.160000pt;}
.x89_c00184{left:465.360000pt;}
.x99_c00184{left:470.880000pt;}
.x3e_c00184{left:479.814667pt;}
.x85_c00184{left:482.400000pt;}
.x77_c00184{left:487.397333pt;}
.x93_c00184{left:490.080000pt;}
.x8a_c00184{left:491.280000pt;}
.x78_c00184{left:511.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8b_c00185{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);}
.m1f_c00185{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m101_c00185{transform:matrix(0.012039,-0.000120,0.002500,0.249988,0,0);-ms-transform:matrix(0.012039,-0.000120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012039,-0.000120,0.002500,0.249988,0,0);}
.m20_c00185{transform:matrix(0.015755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015755,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.015809,-0.000190,0.003000,0.249982,0,0);-ms-transform:matrix(0.015809,-0.000190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015809,-0.000190,0.003000,0.249982,0,0);}
.m1c_c00185{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);}
.mc5_c00185{transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.054540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054540,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);}
.m50_c00185{transform:matrix(0.117747,-0.001413,0.003000,0.249982,0,0);-ms-transform:matrix(0.117747,-0.001413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.117747,-0.001413,0.003000,0.249982,0,0);}
.mfd_c00185{transform:matrix(0.125639,-0.001256,0.002500,0.249988,0,0);-ms-transform:matrix(0.125639,-0.001256,0.002500,0.249988,0,0);-webkit-transform:matrix(0.125639,-0.001256,0.002500,0.249988,0,0);}
.m87_c00185{transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);}
.mc1_c00185{transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138170,0.000000,0.000000,0.250000,0,0);}
.mc0_c00185{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);}
.m6_c00185{transform:matrix(0.141945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141945,0.000000,0.000000,0.250000,0,0);}
.mcd_c00185{transform:matrix(0.144009,-0.002160,0.003750,0.249972,0,0);-ms-transform:matrix(0.144009,-0.002160,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144009,-0.002160,0.003750,0.249972,0,0);}
.m79_c00185{transform:matrix(0.144048,-0.001440,0.002500,0.249988,0,0);-ms-transform:matrix(0.144048,-0.001440,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144048,-0.001440,0.002500,0.249988,0,0);}
.m9b_c00185{transform:matrix(0.146840,-0.001175,0.002000,0.249992,0,0);-ms-transform:matrix(0.146840,-0.001175,0.002000,0.249992,0,0);-webkit-transform:matrix(0.146840,-0.001175,0.002000,0.249992,0,0);}
.m36_c00185{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);}
.m3a_c00185{transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.148925,-0.001191,0.002000,0.249992,0,0);-ms-transform:matrix(0.148925,-0.001191,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148925,-0.001191,0.002000,0.249992,0,0);}
.m29_c00185{transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151465,0.000000,0.000000,0.250000,0,0);}
.mde_c00185{transform:matrix(0.151953,-0.002279,0.003750,0.249972,0,0);-ms-transform:matrix(0.151953,-0.002279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151953,-0.002279,0.003750,0.249972,0,0);}
.m5d_c00185{transform:matrix(0.152424,-0.001829,0.003000,0.249982,0,0);-ms-transform:matrix(0.152424,-0.001829,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152424,-0.001829,0.003000,0.249982,0,0);}
.mf8_c00185{transform:matrix(0.152768,-0.002292,0.003750,0.249972,0,0);-ms-transform:matrix(0.152768,-0.002292,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152768,-0.002292,0.003750,0.249972,0,0);}
.m42_c00185{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);}
.mbc_c00185{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);}
.mdc_c00185{transform:matrix(0.156152,-0.002342,0.003750,0.249972,0,0);-ms-transform:matrix(0.156152,-0.002342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156152,-0.002342,0.003750,0.249972,0,0);}
.m73_c00185{transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-ms-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);}
.ma3_c00185{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);}
.m2d_c00185{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);}
.m6c_c00185{transform:matrix(0.157392,-0.001574,0.002500,0.249988,0,0);-ms-transform:matrix(0.157392,-0.001574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157392,-0.001574,0.002500,0.249988,0,0);}
.me_c00185{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);}
.m9e_c00185{transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);-ms-transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);}
.m22_c00185{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.159843,-0.001918,0.003000,0.249982,0,0);-ms-transform:matrix(0.159843,-0.001918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159843,-0.001918,0.003000,0.249982,0,0);}
.me3_c00185{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);}
.mbd_c00185{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);}
.m2a_c00185{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{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);}
.m8a_c00185{transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{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);}
.maa_c00185{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);}
.md_c00185{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);}
.ma5_c00185{transform:matrix(0.164430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164430,0.000000,0.000000,0.250000,0,0);}
.mfb_c00185{transform:matrix(0.164442,-0.001644,0.002500,0.249988,0,0);-ms-transform:matrix(0.164442,-0.001644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164442,-0.001644,0.002500,0.249988,0,0);}
.mec_c00185{transform:matrix(0.164601,-0.002469,0.003750,0.249972,0,0);-ms-transform:matrix(0.164601,-0.002469,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164601,-0.002469,0.003750,0.249972,0,0);}
.med_c00185{transform:matrix(0.165006,-0.002475,0.003750,0.249972,0,0);-ms-transform:matrix(0.165006,-0.002475,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165006,-0.002475,0.003750,0.249972,0,0);}
.m1_c00185{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);}
.m31_c00185{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);}
.m19_c00185{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);}
.m3d_c00185{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);}
.meb_c00185{transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);}
.me5_c00185{transform:matrix(0.167311,-0.002510,0.003750,0.249972,0,0);-ms-transform:matrix(0.167311,-0.002510,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167311,-0.002510,0.003750,0.249972,0,0);}
.md4_c00185{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);}
.m13_c00185{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);}
.mea_c00185{transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);}
.mb7_c00185{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);}
.m81_c00185{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);}
.mab_c00185{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);}
.m5a_c00185{transform:matrix(0.168383,-0.002021,0.003000,0.249982,0,0);-ms-transform:matrix(0.168383,-0.002021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168383,-0.002021,0.003000,0.249982,0,0);}
.m49_c00185{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);}
.m26_c00185{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);}
.m5f_c00185{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);}
.m9_c00185{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);}
.ma6_c00185{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);}
.md3_c00185{transform:matrix(0.169971,-0.002550,0.003750,0.249972,0,0);-ms-transform:matrix(0.169971,-0.002550,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169971,-0.002550,0.003750,0.249972,0,0);}
.m1b_c00185{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);}
.m8_c00185{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);}
.me9_c00185{transform:matrix(0.171316,-0.002570,0.003750,0.249972,0,0);-ms-transform:matrix(0.171316,-0.002570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171316,-0.002570,0.003750,0.249972,0,0);}
.m7f_c00185{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);}
.m18_c00185{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);}
.m5_c00185{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);}
.m7_c00185{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);}
.m85_c00185{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);}
.m9d_c00185{transform:matrix(0.174159,-0.001393,0.002000,0.249992,0,0);-ms-transform:matrix(0.174159,-0.001393,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174159,-0.001393,0.002000,0.249992,0,0);}
.m66_c00185{transform:matrix(0.174492,-0.002094,0.003000,0.249982,0,0);-ms-transform:matrix(0.174492,-0.002094,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174492,-0.002094,0.003000,0.249982,0,0);}
.mbb_c00185{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);}
.m11_c00185{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);}
.ma8_c00185{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);}
.m72_c00185{transform:matrix(0.175711,-0.001757,0.002500,0.249988,0,0);-ms-transform:matrix(0.175711,-0.001757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175711,-0.001757,0.002500,0.249988,0,0);}
.m14_c00185{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);}
.mdf_c00185{transform:matrix(0.176240,-0.002644,0.003750,0.249972,0,0);-ms-transform:matrix(0.176240,-0.002644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176240,-0.002644,0.003750,0.249972,0,0);}
.m28_c00185{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);}
.mfc_c00185{transform:matrix(0.176561,-0.001766,0.002500,0.249988,0,0);-ms-transform:matrix(0.176561,-0.001766,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176561,-0.001766,0.002500,0.249988,0,0);}
.m3b_c00185{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);}
.ma9_c00185{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);}
.m90_c00185{transform:matrix(0.178019,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.178019,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178019,-0.001424,0.002000,0.249992,0,0);}
.mf5_c00185{transform:matrix(0.178260,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178260,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178260,-0.002674,0.003750,0.249972,0,0);}
.m41_c00185{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);}
.m46_c00185{transform:matrix(0.178612,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178612,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178612,-0.002143,0.003000,0.249982,0,0);}
.m38_c00185{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);}
.mb4_c00185{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);}
.ma7_c00185{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);}
.m63_c00185{transform:matrix(0.179912,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179912,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179912,-0.002159,0.003000,0.249982,0,0);}
.mb5_c00185{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);}
.md7_c00185{transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);}
.m32_c00185{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);}
.mb8_c00185{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);}
.m34_c00185{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);}
.m74_c00185{transform:matrix(0.182696,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182696,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182696,-0.001827,0.002500,0.249988,0,0);}
.mb2_c00185{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);}
.mc_c00185{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);}
.md5_c00185{transform:matrix(0.184039,-0.002761,0.003750,0.249972,0,0);-ms-transform:matrix(0.184039,-0.002761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184039,-0.002761,0.003750,0.249972,0,0);}
.m65_c00185{transform:matrix(0.184292,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184292,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184292,-0.002212,0.003000,0.249982,0,0);}
.m3_c00185{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);}
.mef_c00185{transform:matrix(0.185099,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185099,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185099,-0.002776,0.003750,0.249972,0,0);}
.md8_c00185{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);}
.m5c_c00185{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);}
.m27_c00185{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);}
.m0_c00185{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);}
.m33_c00185{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);}
.m99_c00185{transform:matrix(0.187824,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187824,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187824,-0.001503,0.002000,0.249992,0,0);}
.m6e_c00185{transform:matrix(0.187831,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187831,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187831,-0.001878,0.002500,0.249988,0,0);}
.mb6_c00185{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);}
.m94_c00185{transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187909,-0.001503,0.002000,0.249992,0,0);}
.m9f_c00185{transform:matrix(0.188434,-0.001507,0.002000,0.249992,0,0);-ms-transform:matrix(0.188434,-0.001507,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188434,-0.001507,0.002000,0.249992,0,0);}
.m89_c00185{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);}
.ma_c00185{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);}
.mce_c00185{transform:matrix(0.188979,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.188979,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188979,-0.002835,0.003750,0.249972,0,0);}
.me8_c00185{transform:matrix(0.189504,-0.002843,0.003750,0.249972,0,0);-ms-transform:matrix(0.189504,-0.002843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189504,-0.002843,0.003750,0.249972,0,0);}
.m39_c00185{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);}
.mcc_c00185{transform:matrix(0.190079,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190079,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190079,-0.002851,0.003750,0.249972,0,0);}
.m37_c00185{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);}
.md2_c00185{transform:matrix(0.190569,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190569,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190569,-0.002859,0.003750,0.249972,0,0);}
.m7e_c00185{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);}
.mad_c00185{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);}
.m67_c00185{transform:matrix(0.191091,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191091,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191091,-0.002293,0.003000,0.249982,0,0);}
.m5e_c00185{transform:matrix(0.191241,-0.002295,0.003000,0.249982,0,0);-ms-transform:matrix(0.191241,-0.002295,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191241,-0.002295,0.003000,0.249982,0,0);}
.m100_c00185{transform:matrix(0.191570,-0.001916,0.002500,0.249988,0,0);-ms-transform:matrix(0.191570,-0.001916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191570,-0.001916,0.002500,0.249988,0,0);}
.m5b_c00185{transform:matrix(0.191651,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191651,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191651,-0.002300,0.003000,0.249982,0,0);}
.m6f_c00185{transform:matrix(0.191700,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191700,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191700,-0.001917,0.002500,0.249988,0,0);}
.mda_c00185{transform:matrix(0.191958,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191958,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191958,-0.002879,0.003750,0.249972,0,0);}
.m78_c00185{transform:matrix(0.192105,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192105,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192105,-0.001921,0.002500,0.249988,0,0);}
.m12_c00185{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);}
.m8f_c00185{transform:matrix(0.193009,-0.001544,0.002000,0.249992,0,0);-ms-transform:matrix(0.193009,-0.001544,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193009,-0.001544,0.002000,0.249992,0,0);}
.m4a_c00185{transform:matrix(0.193436,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193436,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193436,-0.002321,0.003000,0.249982,0,0);}
.me0_c00185{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);}
.m69_c00185{transform:matrix(0.194216,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194216,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194216,-0.002331,0.003000,0.249982,0,0);}
.m48_c00185{transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194256,-0.002331,0.003000,0.249982,0,0);}
.mb_c00185{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);}
.m92_c00185{transform:matrix(0.194959,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.194959,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194959,-0.001560,0.002000,0.249992,0,0);}
.ma1_c00185{transform:matrix(0.195189,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195189,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195189,-0.001562,0.002000,0.249992,0,0);}
.m23_c00185{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);}
.mc2_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);}
.m6b_c00185{transform:matrix(0.195595,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195595,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195595,-0.001956,0.002500,0.249988,0,0);}
.mf1_c00185{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);}
.m7b_c00185{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);}
.m45_c00185{transform:matrix(0.196341,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196341,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196341,-0.002356,0.003000,0.249982,0,0);}
.mba_c00185{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);}
.md6_c00185{transform:matrix(0.197228,-0.002958,0.003750,0.249972,0,0);-ms-transform:matrix(0.197228,-0.002958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197228,-0.002958,0.003750,0.249972,0,0);}
.mf4_c00185{transform:matrix(0.197348,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197348,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197348,-0.002960,0.003750,0.249972,0,0);}
.m52_c00185{transform:matrix(0.197461,-0.002370,0.003000,0.249982,0,0);-ms-transform:matrix(0.197461,-0.002370,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197461,-0.002370,0.003000,0.249982,0,0);}
.mac_c00185{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);}
.m25_c00185{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);}
.m82_c00185{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);}
.m1a_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);}
.m2c_c00185{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);}
.m2b_c00185{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);}
.m15_c00185{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);}
.mf0_c00185{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);}
.m40_c00185{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);}
.m51_c00185{transform:matrix(0.200031,-0.002400,0.003000,0.249982,0,0);-ms-transform:matrix(0.200031,-0.002400,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200031,-0.002400,0.003000,0.249982,0,0);}
.m62_c00185{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);}
.mcf_c00185{transform:matrix(0.202037,-0.003031,0.003750,0.249972,0,0);-ms-transform:matrix(0.202037,-0.003031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202037,-0.003031,0.003750,0.249972,0,0);}
.m43_c00185{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);}
.m4c_c00185{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);}
.m30_c00185{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);}
.mb9_c00185{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);}
.m97_c00185{transform:matrix(0.205558,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205558,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205558,-0.001644,0.002000,0.249992,0,0);}
.ma4_c00185{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);}
.mf9_c00185{transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);}
.m6d_c00185{transform:matrix(0.206015,-0.002060,0.002500,0.249988,0,0);-ms-transform:matrix(0.206015,-0.002060,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206015,-0.002060,0.002500,0.249988,0,0);}
.me4_c00185{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);}
.m9c_c00185{transform:matrix(0.206878,-0.001655,0.002000,0.249992,0,0);-ms-transform:matrix(0.206878,-0.001655,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206878,-0.001655,0.002000,0.249992,0,0);}
.m3c_c00185{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);}
.m2f_c00185{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);}
.mdd_c00185{transform:matrix(0.207587,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207587,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207587,-0.003114,0.003750,0.249972,0,0);}
.mc8_c00185{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);}
.mae_c00185{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);}
.m68_c00185{transform:matrix(0.209760,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209760,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209760,-0.002517,0.003000,0.249982,0,0);}
.m70_c00185{transform:matrix(0.210409,-0.002104,0.002500,0.249988,0,0);-ms-transform:matrix(0.210409,-0.002104,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210409,-0.002104,0.002500,0.249988,0,0);}
.mbf_c00185{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);}
.m57_c00185{transform:matrix(0.211215,-0.002535,0.003000,0.249982,0,0);-ms-transform:matrix(0.211215,-0.002535,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211215,-0.002535,0.003000,0.249982,0,0);}
.m17_c00185{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);}
.m64_c00185{transform:matrix(0.211820,-0.002542,0.003000,0.249982,0,0);-ms-transform:matrix(0.211820,-0.002542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211820,-0.002542,0.003000,0.249982,0,0);}
.m98_c00185{transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);}
.m84_c00185{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);}
.m61_c00185{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);}
.me2_c00185{transform:matrix(0.214706,-0.003221,0.003750,0.249972,0,0);-ms-transform:matrix(0.214706,-0.003221,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214706,-0.003221,0.003750,0.249972,0,0);}
.mfa_c00185{transform:matrix(0.216351,-0.003245,0.003750,0.249972,0,0);-ms-transform:matrix(0.216351,-0.003245,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216351,-0.003245,0.003750,0.249972,0,0);}
.m96_c00185{transform:matrix(0.217173,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217173,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217173,-0.001737,0.002000,0.249992,0,0);}
.m80_c00185{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);}
.mb3_c00185{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);}
.md9_c00185{transform:matrix(0.219545,-0.003293,0.003750,0.249972,0,0);-ms-transform:matrix(0.219545,-0.003293,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219545,-0.003293,0.003750,0.249972,0,0);}
.mf2_c00185{transform:matrix(0.221135,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221135,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221135,-0.003317,0.003750,0.249972,0,0);}
.mfe_c00185{transform:matrix(0.221434,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221434,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221434,-0.002214,0.002500,0.249988,0,0);}
.mdb_c00185{transform:matrix(0.221620,-0.003324,0.003750,0.249972,0,0);-ms-transform:matrix(0.221620,-0.003324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221620,-0.003324,0.003750,0.249972,0,0);}
.md1_c00185{transform:matrix(0.222345,-0.003335,0.003750,0.249972,0,0);-ms-transform:matrix(0.222345,-0.003335,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222345,-0.003335,0.003750,0.249972,0,0);}
.m83_c00185{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);}
.mca_c00185{transform:matrix(0.223205,-0.003348,0.003750,0.249972,0,0);-ms-transform:matrix(0.223205,-0.003348,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223205,-0.003348,0.003750,0.249972,0,0);}
.m86_c00185{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);}
.m4f_c00185{transform:matrix(0.226114,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226114,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226114,-0.002713,0.003000,0.249982,0,0);}
.m88_c00185{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);}
.m54_c00185{transform:matrix(0.227509,-0.002730,0.003000,0.249982,0,0);-ms-transform:matrix(0.227509,-0.002730,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227509,-0.002730,0.003000,0.249982,0,0);}
.m10_c00185{transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.228859,-0.002746,0.003000,0.249982,0,0);-ms-transform:matrix(0.228859,-0.002746,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228859,-0.002746,0.003000,0.249982,0,0);}
.m4d_c00185{transform:matrix(0.233623,-0.002803,0.003000,0.249982,0,0);-ms-transform:matrix(0.233623,-0.002803,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233623,-0.002803,0.003000,0.249982,0,0);}
.mb1_c00185{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.235503,-0.002355,0.002500,0.249988,0,0);-ms-transform:matrix(0.235503,-0.002355,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235503,-0.002355,0.002500,0.249988,0,0);}
.mee_c00185{transform:matrix(0.236903,-0.003554,0.003750,0.249972,0,0);-ms-transform:matrix(0.236903,-0.003554,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236903,-0.003554,0.003750,0.249972,0,0);}
.m71_c00185{transform:matrix(0.237683,-0.002377,0.002500,0.249988,0,0);-ms-transform:matrix(0.237683,-0.002377,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237683,-0.002377,0.002500,0.249988,0,0);}
.me6_c00185{transform:matrix(0.239758,-0.003596,0.003750,0.249972,0,0);-ms-transform:matrix(0.239758,-0.003596,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239758,-0.003596,0.003750,0.249972,0,0);}
.mcb_c00185{transform:matrix(0.241023,-0.003615,0.003750,0.249972,0,0);-ms-transform:matrix(0.241023,-0.003615,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241023,-0.003615,0.003750,0.249972,0,0);}
.mbe_c00185{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);}
.maf_c00185{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{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);}
.m53_c00185{transform:matrix(0.246237,-0.002955,0.003000,0.249982,0,0);-ms-transform:matrix(0.246237,-0.002955,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246237,-0.002955,0.003000,0.249982,0,0);}
.m55_c00185{transform:matrix(0.247382,-0.002969,0.003000,0.249982,0,0);-ms-transform:matrix(0.247382,-0.002969,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247382,-0.002969,0.003000,0.249982,0,0);}
.mb0_c00185{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.254697,-0.002547,0.002500,0.249988,0,0);-ms-transform:matrix(0.254697,-0.002547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254697,-0.002547,0.002500,0.249988,0,0);}
.m95_c00185{transform:matrix(0.258077,-0.002065,0.002000,0.249992,0,0);-ms-transform:matrix(0.258077,-0.002065,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258077,-0.002065,0.002000,0.249992,0,0);}
.m2e_c00185{transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);}
.m103_c00185{transform:matrix(0.268417,-0.002684,0.002500,0.249988,0,0);-ms-transform:matrix(0.268417,-0.002684,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268417,-0.002684,0.002500,0.249988,0,0);}
.m76_c00185{transform:matrix(0.268977,-0.002690,0.002500,0.249988,0,0);-ms-transform:matrix(0.268977,-0.002690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268977,-0.002690,0.002500,0.249988,0,0);}
.m9a_c00185{transform:matrix(0.270631,-0.002165,0.002000,0.249992,0,0);-ms-transform:matrix(0.270631,-0.002165,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270631,-0.002165,0.002000,0.249992,0,0);}
.mc9_c00185{transform:matrix(0.271319,-0.004070,0.003750,0.249972,0,0);-ms-transform:matrix(0.271319,-0.004070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271319,-0.004070,0.003750,0.249972,0,0);}
.mf6_c00185{transform:matrix(0.277689,-0.004165,0.003750,0.249972,0,0);-ms-transform:matrix(0.277689,-0.004165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277689,-0.004165,0.003750,0.249972,0,0);}
.m7d_c00185{transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);}
.mf7_c00185{transform:matrix(0.283378,-0.004251,0.003750,0.249972,0,0);-ms-transform:matrix(0.283378,-0.004251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283378,-0.004251,0.003750,0.249972,0,0);}
.m4_c00185{transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.308700,-0.003087,0.002500,0.249988,0,0);-ms-transform:matrix(0.308700,-0.003087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.308700,-0.003087,0.002500,0.249988,0,0);}
.me7_c00185{transform:matrix(0.311815,-0.004677,0.003750,0.249972,0,0);-ms-transform:matrix(0.311815,-0.004677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311815,-0.004677,0.003750,0.249972,0,0);}
.m104_c00185{transform:matrix(0.313434,-0.003134,0.002500,0.249988,0,0);-ms-transform:matrix(0.313434,-0.003134,0.002500,0.249988,0,0);-webkit-transform:matrix(0.313434,-0.003134,0.002500,0.249988,0,0);}
.m93_c00185{transform:matrix(0.315520,-0.002524,0.002000,0.249992,0,0);-ms-transform:matrix(0.315520,-0.002524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.315520,-0.002524,0.002000,0.249992,0,0);}
.md0_c00185{transform:matrix(0.316369,-0.004746,0.003750,0.249972,0,0);-ms-transform:matrix(0.316369,-0.004746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.316369,-0.004746,0.003750,0.249972,0,0);}
.m8c_c00185{transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);}
.m102_c00185{transform:matrix(0.338833,-0.003388,0.002500,0.249988,0,0);-ms-transform:matrix(0.338833,-0.003388,0.002500,0.249988,0,0);-webkit-transform:matrix(0.338833,-0.003388,0.002500,0.249988,0,0);}
.mc6_c00185{transform:matrix(0.339525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339525,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.362955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362955,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363585,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.363643,-0.002909,0.002000,0.249992,0,0);-ms-transform:matrix(0.363643,-0.002909,0.002000,0.249992,0,0);-webkit-transform:matrix(0.363643,-0.002909,0.002000,0.249992,0,0);}
.mc7_c00185{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.me1_c00185{transform:matrix(0.372188,-0.005583,0.003750,0.249972,0,0);-ms-transform:matrix(0.372188,-0.005583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.372188,-0.005583,0.003750,0.249972,0,0);}
.m6a_c00185{transform:matrix(0.372573,-0.004471,0.003000,0.249982,0,0);-ms-transform:matrix(0.372573,-0.004471,0.003000,0.249982,0,0);-webkit-transform:matrix(0.372573,-0.004471,0.003000,0.249982,0,0);}
.mf3_c00185{transform:matrix(0.374733,-0.005621,0.003750,0.249972,0,0);-ms-transform:matrix(0.374733,-0.005621,0.003750,0.249972,0,0);-webkit-transform:matrix(0.374733,-0.005621,0.003750,0.249972,0,0);}
.mc3_c00185{transform:matrix(0.376660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376660,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.377118,-0.003017,0.002000,0.249992,0,0);-ms-transform:matrix(0.377118,-0.003017,0.002000,0.249992,0,0);-webkit-transform:matrix(0.377118,-0.003017,0.002000,0.249992,0,0);}
.m4e_c00185{transform:matrix(0.388862,-0.004666,0.003000,0.249982,0,0);-ms-transform:matrix(0.388862,-0.004666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.388862,-0.004666,0.003000,0.249982,0,0);}
.m1d_c00185{transform:matrix(0.393400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393400,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.405210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405210,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.410450,-0.004925,0.003000,0.249982,0,0);-ms-transform:matrix(0.410450,-0.004925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.410450,-0.004925,0.003000,0.249982,0,0);}
.m7c_c00185{transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440235,0.000000,0.000000,0.250000,0,0);}
.mff_c00185{transform:matrix(0.484371,-0.004844,0.002500,0.249988,0,0);-ms-transform:matrix(0.484371,-0.004844,0.002500,0.249988,0,0);-webkit-transform:matrix(0.484371,-0.004844,0.002500,0.249988,0,0);}
.m105_c00185{transform:matrix(0.552392,-0.005524,0.002500,0.249988,0,0);-ms-transform:matrix(0.552392,-0.005524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.552392,-0.005524,0.002500,0.249988,0,0);}
.mc4_c00185{transform:matrix(0.552470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552470,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.585925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585925,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.615336,-0.007384,0.003000,0.249982,0,0);-ms-transform:matrix(0.615336,-0.007384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.615336,-0.007384,0.003000,0.249982,0,0);}
.m60_c00185{transform:matrix(0.748346,-0.008980,0.003000,0.249982,0,0);-ms-transform:matrix(0.748346,-0.008980,0.003000,0.249982,0,0);-webkit-transform:matrix(0.748346,-0.008980,0.003000,0.249982,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;}
.fs13_c00185{font-size:22.050000px;}
.fs11_c00185{font-size:26.250000px;}
.fse_c00185{font-size:51.450000px;}
.fsd_c00185{font-size:53.550000px;}
.fs16_c00185{font-size:53.556024px;}
.fs15_c00185{font-size:54.606142px;}
.fs10_c00185{font-size:57.750000px;}
.fs14_c00185{font-size:57.756497px;}
.fsf_c00185{font-size:58.800000px;}
.fs7_c00185{font-size:61.954460px;}
.fsb_c00185{font-size:66.150000px;}
.fs6_c00185{font-size:68.254914px;}
.fs3_c00185{font-size:69.300000px;}
.fs9_c00185{font-size:70.355065px;}
.fs2_c00185{font-size:71.400000px;}
.fsc_c00185{font-size:71.402285px;}
.fs4_c00185{font-size:72.450000px;}
.fsa_c00185{font-size:72.453622px;}
.fs8_c00185{font-size:72.455216px;}
.fs1_c00185{font-size:73.500000px;}
.fs5_c00185{font-size:76.650000px;}
.fs17_c00185{font-size:80.854042px;}
.fs12_c00185{font-size:132.300000px;}
.fs0_c00185{font-size:138.600000px;}
.fs18_c00185{font-size:234.161707px;}
.y0_c00185{bottom:0.000000px;}
.y9d_c00185{bottom:82.350000px;}
.y9c_c00185{bottom:95.580000px;}
.y9b_c00185{bottom:118.800000px;}
.y9a_c00185{bottom:120.150000px;}
.y99_c00185{bottom:155.206500px;}
.y98_c00185{bottom:174.321000px;}
.yc2_c00185{bottom:190.883138px;}
.yc3_c00185{bottom:191.094968px;}
.yc4_c00185{bottom:191.223030px;}
.yc5_c00185{bottom:191.584373px;}
.yc6_c00185{bottom:191.809890px;}
.yc7_c00185{bottom:192.032790px;}
.yc8_c00185{bottom:192.400973px;}
.yc9_c00185{bottom:192.527138px;}
.yca_c00185{bottom:192.628230px;}
.ycb_c00185{bottom:192.851445px;}
.ycc_c00185{bottom:192.965490px;}
.ycd_c00185{bottom:193.233248px;}
.yce_c00185{bottom:193.388213px;}
.ycf_c00185{bottom:193.523745px;}
.yd0_c00185{bottom:193.779585px;}
.yaf_c00185{bottom:208.166633px;}
.yb0_c00185{bottom:208.348005px;}
.yb1_c00185{bottom:208.709093px;}
.yb2_c00185{bottom:208.817408px;}
.yb3_c00185{bottom:209.118923px;}
.yb4_c00185{bottom:209.435160px;}
.yb5_c00185{bottom:209.568128px;}
.yb6_c00185{bottom:209.902373px;}
.yb7_c00185{bottom:210.528810px;}
.yb8_c00185{bottom:210.663630px;}
.yb9_c00185{bottom:211.041473px;}
.yba_c00185{bottom:211.186740px;}
.ybb_c00185{bottom:211.429808px;}
.ybc_c00185{bottom:211.645830px;}
.ybd_c00185{bottom:212.117828px;}
.ybe_c00185{bottom:212.215245px;}
.ybf_c00185{bottom:212.352458px;}
.yc0_c00185{bottom:212.527635px;}
.yc1_c00185{bottom:212.675453px;}
.y9e_c00185{bottom:224.373000px;}
.y9f_c00185{bottom:224.611793px;}
.ya0_c00185{bottom:225.203948px;}
.ya1_c00185{bottom:225.677978px;}
.ya2_c00185{bottom:225.932070px;}
.ya3_c00185{bottom:226.206705px;}
.ya4_c00185{bottom:226.334010px;}
.ya5_c00185{bottom:227.241053px;}
.ya6_c00185{bottom:227.719133px;}
.ya7_c00185{bottom:227.859780px;}
.ya8_c00185{bottom:228.216878px;}
.ya9_c00185{bottom:228.904928px;}
.yaa_c00185{bottom:229.257368px;}
.yab_c00185{bottom:229.516590px;}
.yac_c00185{bottom:230.107215px;}
.yad_c00185{bottom:230.444063px;}
.yae_c00185{bottom:231.075908px;}
.y97_c00185{bottom:242.730000px;}
.y96_c00185{bottom:291.601500px;}
.y95_c00185{bottom:309.960000px;}
.y8e_c00185{bottom:342.873984px;}
.y8d_c00185{bottom:342.874044px;}
.y91_c00185{bottom:342.874128px;}
.y8f_c00185{bottom:342.874452px;}
.y90_c00185{bottom:342.874680px;}
.y92_c00185{bottom:342.874776px;}
.y94_c00185{bottom:342.874872px;}
.y93_c00185{bottom:342.875484px;}
.y81_c00185{bottom:364.420500px;}
.y82_c00185{bottom:364.629420px;}
.y83_c00185{bottom:364.894836px;}
.y84_c00185{bottom:365.120244px;}
.y85_c00185{bottom:365.193192px;}
.y86_c00185{bottom:365.314440px;}
.y87_c00185{bottom:365.560932px;}
.y88_c00185{bottom:366.048768px;}
.y89_c00185{bottom:366.182496px;}
.y8a_c00185{bottom:366.420048px;}
.y8b_c00185{bottom:366.826188px;}
.y8c_c00185{bottom:367.016076px;}
.y80_c00185{bottom:389.251500px;}
.y77_c00185{bottom:410.670000px;}
.y78_c00185{bottom:411.025500px;}
.y79_c00185{bottom:411.543000px;}
.y7a_c00185{bottom:411.816000px;}
.y7b_c00185{bottom:412.126500px;}
.y7c_c00185{bottom:412.402500px;}
.y7d_c00185{bottom:412.515000px;}
.y7e_c00185{bottom:413.044500px;}
.y7f_c00185{bottom:413.343000px;}
.y76_c00185{bottom:436.483500px;}
.y75_c00185{bottom:458.490000px;}
.y6f_c00185{bottom:479.789295px;}
.y70_c00185{bottom:480.032400px;}
.y71_c00185{bottom:480.192570px;}
.y72_c00185{bottom:480.577920px;}
.y73_c00185{bottom:480.951675px;}
.y74_c00185{bottom:481.159125px;}
.y65_c00185{bottom:503.011500px;}
.y66_c00185{bottom:503.762085px;}
.y67_c00185{bottom:504.086340px;}
.y68_c00185{bottom:504.599040px;}
.y69_c00185{bottom:505.076535px;}
.y6a_c00185{bottom:505.414050px;}
.y6b_c00185{bottom:505.876125px;}
.y6c_c00185{bottom:506.078775px;}
.y6d_c00185{bottom:506.394630px;}
.y6e_c00185{bottom:506.621235px;}
.y5a_c00185{bottom:524.610912px;}
.y5b_c00185{bottom:525.615672px;}
.y5c_c00185{bottom:526.109016px;}
.y5d_c00185{bottom:526.383768px;}
.y5e_c00185{bottom:526.821168px;}
.y5f_c00185{bottom:527.148462px;}
.y60_c00185{bottom:528.087990px;}
.y61_c00185{bottom:529.046526px;}
.y62_c00185{bottom:529.533930px;}
.y63_c00185{bottom:529.772970px;}
.y64_c00185{bottom:530.165838px;}
.y52_c00185{bottom:548.924946px;}
.y53_c00185{bottom:549.207126px;}
.y54_c00185{bottom:549.534090px;}
.y55_c00185{bottom:550.031286px;}
.y56_c00185{bottom:550.293870px;}
.y57_c00185{bottom:550.932546px;}
.y58_c00185{bottom:551.261850px;}
.y59_c00185{bottom:551.709084px;}
.y48_c00185{bottom:569.970654px;}
.y49_c00185{bottom:570.227964px;}
.y4a_c00185{bottom:570.935058px;}
.y4b_c00185{bottom:571.052148px;}
.y4c_c00185{bottom:571.648416px;}
.y4d_c00185{bottom:572.147340px;}
.y4e_c00185{bottom:572.529750px;}
.y4f_c00185{bottom:573.035118px;}
.y50_c00185{bottom:573.310932px;}
.y51_c00185{bottom:574.108062px;}
.y3e_c00185{bottom:593.193000px;}
.y3f_c00185{bottom:594.193548px;}
.y40_c00185{bottom:595.084530px;}
.y41_c00185{bottom:595.764498px;}
.y42_c00185{bottom:596.173170px;}
.y43_c00185{bottom:596.468028px;}
.y44_c00185{bottom:597.028584px;}
.y45_c00185{bottom:597.524304px;}
.y46_c00185{bottom:597.864054px;}
.y47_c00185{bottom:598.405566px;}
.y3d_c00185{bottom:623.301000px;}
.y33_c00185{bottom:644.221500px;}
.y34_c00185{bottom:644.634000px;}
.y35_c00185{bottom:645.084000px;}
.y36_c00185{bottom:645.969000px;}
.y37_c00185{bottom:646.402500px;}
.y38_c00185{bottom:647.121000px;}
.y39_c00185{bottom:647.461500px;}
.y3a_c00185{bottom:648.232500px;}
.y3b_c00185{bottom:648.640500px;}
.y3c_c00185{bottom:649.353000px;}
.y2a_c00185{bottom:667.170000px;}
.y2b_c00185{bottom:667.479000px;}
.y2c_c00185{bottom:667.749000px;}
.y2d_c00185{bottom:668.440500px;}
.y2e_c00185{bottom:669.202500px;}
.y2f_c00185{bottom:669.585000px;}
.y30_c00185{bottom:670.024500px;}
.y31_c00185{bottom:670.614000px;}
.y32_c00185{bottom:670.912500px;}
.y23_c00185{bottom:689.850000px;}
.y24_c00185{bottom:690.201000px;}
.y25_c00185{bottom:690.690000px;}
.y26_c00185{bottom:691.006500px;}
.y27_c00185{bottom:691.971000px;}
.y28_c00185{bottom:692.568000px;}
.y29_c00185{bottom:692.848500px;}
.y1e_c00185{bottom:712.255500px;}
.y1f_c00185{bottom:715.362000px;}
.y20_c00185{bottom:716.467500px;}
.y21_c00185{bottom:717.015000px;}
.y22_c00185{bottom:717.279000px;}
.y1b_c00185{bottom:737.638500px;}
.y1c_c00185{bottom:738.424500px;}
.y1d_c00185{bottom:741.268500px;}
.y15_c00185{bottom:758.161500px;}
.y16_c00185{bottom:758.982000px;}
.y17_c00185{bottom:759.895500px;}
.y18_c00185{bottom:760.542000px;}
.y19_c00185{bottom:760.815000px;}
.y1a_c00185{bottom:763.312500px;}
.ye_c00185{bottom:781.110000px;}
.yf_c00185{bottom:782.289000px;}
.y10_c00185{bottom:783.043500px;}
.y11_c00185{bottom:784.195500px;}
.y12_c00185{bottom:785.029500px;}
.y13_c00185{bottom:785.568000px;}
.y14_c00185{bottom:786.838500px;}
.y3_c00185{bottom:803.523000px;}
.y4_c00185{bottom:804.294000px;}
.y5_c00185{bottom:804.756000px;}
.y6_c00185{bottom:805.302000px;}
.y7_c00185{bottom:805.974000px;}
.y8_c00185{bottom:806.674500px;}
.y9_c00185{bottom:807.253500px;}
.ya_c00185{bottom:808.185000px;}
.yb_c00185{bottom:808.606500px;}
.yc_c00185{bottom:809.317500px;}
.yd_c00185{bottom:809.985000px;}
.y2_c00185{bottom:830.095500px;}
.y1_c00185{bottom:876.387000px;}
.ydb_c00185{bottom:916.922370px;}
.yd1_c00185{bottom:933.391500px;}
.yd2_c00185{bottom:934.001880px;}
.yd3_c00185{bottom:934.581780px;}
.yd4_c00185{bottom:935.011815px;}
.yd5_c00185{bottom:935.538390px;}
.yd6_c00185{bottom:936.343005px;}
.yd7_c00185{bottom:936.693960px;}
.yd8_c00185{bottom:936.766935px;}
.yd9_c00185{bottom:937.387905px;}
.yda_c00185{bottom:938.115975px;}
.h15_c00185{height:22.050000px;}
.h13_c00185{height:26.250000px;}
.h10_c00185{height:51.450000px;}
.hf_c00185{height:53.550000px;}
.h18_c00185{height:53.556024px;}
.h17_c00185{height:54.606142px;}
.h12_c00185{height:57.750000px;}
.h16_c00185{height:57.756497px;}
.h11_c00185{height:58.800000px;}
.h9_c00185{height:61.954460px;}
.hd_c00185{height:66.150000px;}
.h8_c00185{height:68.254914px;}
.h5_c00185{height:69.300000px;}
.hb_c00185{height:70.355065px;}
.h4_c00185{height:71.400000px;}
.he_c00185{height:71.402285px;}
.h6_c00185{height:72.450000px;}
.hc_c00185{height:72.453622px;}
.ha_c00185{height:72.455216px;}
.h3_c00185{height:73.500000px;}
.h7_c00185{height:76.650000px;}
.h19_c00185{height:80.854042px;}
.h14_c00185{height:132.300000px;}
.h2_c00185{height:138.600000px;}
.h1a_c00185{height:234.161707px;}
.h0_c00185{height:1008.450000px;}
.h1_c00185{height:1008.750000px;}
.w0_c00185{width:678.450000px;}
.w1_c00185{width:678.750000px;}
.x0_c00185{left:0.000000px;}
.x3c_c00185{left:84.736578px;}
.x72_c00185{left:89.370000px;}
.x35_c00185{left:92.029500px;}
.x43_c00185{left:98.932134px;}
.x3d_c00185{left:106.179078px;}
.x7f_c00185{left:118.800000px;}
.x80_c00185{left:120.960000px;}
.x73_c00185{left:131.490000px;}
.x44_c00185{left:134.198826px;}
.x7c_c00185{left:143.370000px;}
.x97_c00185{left:148.271250px;}
.x81_c00185{left:155.980500px;}
.x8a_c00185{left:161.289015px;}
.x3e_c00185{left:165.103578px;}
.x60_c00185{left:167.044500px;}
.x74_c00185{left:168.750000px;}
.x7d_c00185{left:171.990000px;}
.x6_c00185{left:173.574000px;}
.x2b_c00185{left:175.146000px;}
.x54_c00185{left:176.702805px;}
.x1d_c00185{left:192.993000px;}
.x25_c00185{left:198.075000px;}
.x21_c00185{left:200.206500px;}
.x2c_c00185{left:204.585000px;}
.x8b_c00185{left:208.286047px;}
.x82_c00185{left:211.377000px;}
.x75_c00185{left:212.760000px;}
.x47_c00185{left:216.770352px;}
.x7_c00185{left:218.934000px;}
.x55_c00185{left:221.530755px;}
.x3f_c00185{left:224.550078px;}
.x61_c00185{left:226.336500px;}
.x68_c00185{left:228.152268px;}
.x76_c00185{left:230.310000px;}
.x2d_c00185{left:236.709000px;}
.x22_c00185{left:237.790500px;}
.x48_c00185{left:239.666352px;}
.x11_c00185{left:242.355000px;}
.x90_c00185{left:243.883493px;}
.x8_c00185{left:246.145500px;}
.x36_c00185{left:249.657000px;}
.x4e_c00185{left:250.699500px;}
.x62_c00185{left:254.512500px;}
.x6c_c00185{left:256.230000px;}
.x77_c00185{left:258.930000px;}
.x1_c00185{left:261.630000px;}
.x56_c00185{left:264.416190px;}
.x40_c00185{left:266.127078px;}
.x6f_c00185{left:267.300000px;}
.x6d_c00185{left:268.650000px;}
.x17_c00185{left:270.507000px;}
.x26_c00185{left:272.064000px;}
.x5c_c00185{left:273.594000px;}
.x49_c00185{left:276.116352px;}
.x9_c00185{left:278.262000px;}
.x4f_c00185{left:283.125000px;}
.x12_c00185{left:286.746000px;}
.x78_c00185{left:290.520000px;}
.x6e_c00185{left:297.000000px;}
.x32_c00185{left:298.081500px;}
.x2e_c00185{left:299.887500px;}
.x4a_c00185{left:303.390852px;}
.x18_c00185{left:306.424500px;}
.x69_c00185{left:307.804368px;}
.x63_c00185{left:309.598500px;}
.x2_c00185{left:311.310000px;}
.x7e_c00185{left:312.930000px;}
.x4_c00185{left:315.090000px;}
.xa_c00185{left:317.767500px;}
.x19_c00185{left:321.553500px;}
.x57_c00185{left:328.987335px;}
.x27_c00185{left:330.630000px;}
.x50_c00185{left:334.395000px;}
.x23_c00185{left:336.327000px;}
.x70_c00185{left:337.770000px;}
.x58_c00185{left:339.390000px;}
.x33_c00185{left:340.741500px;}
.x6a_c00185{left:341.825040px;}
.x79_c00185{left:345.870000px;}
.x3_c00185{left:347.760000px;}
.x5_c00185{left:349.920000px;}
.x71_c00185{left:352.890000px;}
.x13_c00185{left:354.483000px;}
.xb_c00185{left:358.992000px;}
.x28_c00185{left:360.079500px;}
.x41_c00185{left:363.093078px;}
.x37_c00185{left:364.948500px;}
.x5d_c00185{left:369.166500px;}
.x64_c00185{left:370.578000px;}
.x1b_c00185{left:375.205500px;}
.x5f_c00185{left:376.648500px;}
.x83_c00185{left:379.056000px;}
.x24_c00185{left:382.230000px;}
.x65_c00185{left:387.294000px;}
.x84_c00185{left:388.432500px;}
.x45_c00185{left:390.813120px;}
.xc_c00185{left:393.090000px;}
.x1e_c00185{left:400.135500px;}
.x14_c00185{left:403.521000px;}
.x2f_c00185{left:406.536000px;}
.x38_c00185{left:411.661500px;}
.x51_c00185{left:415.896000px;}
.x66_c00185{left:416.988000px;}
.x7a_c00185{left:424.980000px;}
.x42_c00185{left:429.520578px;}
.x6b_c00185{left:431.467776px;}
.x15_c00185{left:435.193500px;}
.x29_c00185{left:439.194000px;}
.x5e_c00185{left:440.488500px;}
.x59_c00185{left:442.260000px;}
.x8c_c00185{left:445.359345px;}
.x46_c00185{left:446.710302px;}
.xd_c00185{left:447.894000px;}
.x34_c00185{left:449.551500px;}
.x39_c00185{left:452.971500px;}
.x85_c00185{left:458.109000px;}
.x1a_c00185{left:460.332000px;}
.x2a_c00185{left:462.157500px;}
.x67_c00185{left:467.755500px;}
.x8d_c00185{left:469.665667px;}
.xe_c00185{left:472.731000px;}
.x1f_c00185{left:473.793000px;}
.x91_c00185{left:479.636798px;}
.x3a_c00185{left:481.284000px;}
.x52_c00185{left:482.368500px;}
.x30_c00185{left:490.774500px;}
.x93_c00185{left:497.767500px;}
.x86_c00185{left:498.886500px;}
.x4b_c00185{left:502.179852px;}
.x94_c00185{left:505.065000px;}
.x16_c00185{left:509.902500px;}
.x7b_c00185{left:513.540000px;}
.xf_c00185{left:514.573500px;}
.x4c_c00185{left:522.099852px;}
.x3b_c00185{left:526.410000px;}
.x20_c00185{left:527.797500px;}
.x5a_c00185{left:532.710000px;}
.x53_c00185{left:536.614500px;}
.x87_c00185{left:538.261500px;}
.x31_c00185{left:541.704000px;}
.x8e_c00185{left:548.234063px;}
.x10_c00185{left:553.836000px;}
.x4d_c00185{left:554.838852px;}
.x92_c00185{left:557.668657px;}
.x88_c00185{left:560.718000px;}
.x5b_c00185{left:562.950000px;}
.x95_c00185{left:567.162000px;}
.x8f_c00185{left:579.562425px;}
.x1c_c00185{left:593.952000px;}
.x89_c00185{left:602.841000px;}
.x96_c00185{left:639.969000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.fs13_c00185{font-size:19.600000pt;}
.fs11_c00185{font-size:23.333333pt;}
.fse_c00185{font-size:45.733333pt;}
.fsd_c00185{font-size:47.600000pt;}
.fs16_c00185{font-size:47.605355pt;}
.fs15_c00185{font-size:48.538793pt;}
.fs10_c00185{font-size:51.333333pt;}
.fs14_c00185{font-size:51.339108pt;}
.fsf_c00185{font-size:52.266667pt;}
.fs7_c00185{font-size:55.070631pt;}
.fsb_c00185{font-size:58.800000pt;}
.fs6_c00185{font-size:60.671035pt;}
.fs3_c00185{font-size:61.600000pt;}
.fs9_c00185{font-size:62.537836pt;}
.fs2_c00185{font-size:63.466667pt;}
.fsc_c00185{font-size:63.468698pt;}
.fs4_c00185{font-size:64.400000pt;}
.fsa_c00185{font-size:64.403220pt;}
.fs8_c00185{font-size:64.404637pt;}
.fs1_c00185{font-size:65.333333pt;}
.fs5_c00185{font-size:68.133333pt;}
.fs17_c00185{font-size:71.870260pt;}
.fs12_c00185{font-size:117.600000pt;}
.fs0_c00185{font-size:123.200000pt;}
.fs18_c00185{font-size:208.143740pt;}
.y0_c00185{bottom:0.000000pt;}
.y9d_c00185{bottom:73.200000pt;}
.y9c_c00185{bottom:84.960000pt;}
.y9b_c00185{bottom:105.600000pt;}
.y9a_c00185{bottom:106.800000pt;}
.y99_c00185{bottom:137.961333pt;}
.y98_c00185{bottom:154.952000pt;}
.yc2_c00185{bottom:169.673900pt;}
.yc3_c00185{bottom:169.862193pt;}
.yc4_c00185{bottom:169.976027pt;}
.yc5_c00185{bottom:170.297220pt;}
.yc6_c00185{bottom:170.497680pt;}
.yc7_c00185{bottom:170.695813pt;}
.yc8_c00185{bottom:171.023087pt;}
.yc9_c00185{bottom:171.135233pt;}
.yca_c00185{bottom:171.225093pt;}
.ycb_c00185{bottom:171.423507pt;}
.ycc_c00185{bottom:171.524880pt;}
.ycd_c00185{bottom:171.762887pt;}
.yce_c00185{bottom:171.900633pt;}
.ycf_c00185{bottom:172.021107pt;}
.yd0_c00185{bottom:172.248520pt;}
.yaf_c00185{bottom:185.037007pt;}
.yb0_c00185{bottom:185.198227pt;}
.yb1_c00185{bottom:185.519193pt;}
.yb2_c00185{bottom:185.615473pt;}
.yb3_c00185{bottom:185.883487pt;}
.yb4_c00185{bottom:186.164587pt;}
.yb5_c00185{bottom:186.282780pt;}
.yb6_c00185{bottom:186.579887pt;}
.yb7_c00185{bottom:187.136720pt;}
.yb8_c00185{bottom:187.256560pt;}
.yb9_c00185{bottom:187.592420pt;}
.yba_c00185{bottom:187.721547pt;}
.ybb_c00185{bottom:187.937607pt;}
.ybc_c00185{bottom:188.129627pt;}
.ybd_c00185{bottom:188.549180pt;}
.ybe_c00185{bottom:188.635773pt;}
.ybf_c00185{bottom:188.757740pt;}
.yc0_c00185{bottom:188.913453pt;}
.yc1_c00185{bottom:189.044847pt;}
.y9e_c00185{bottom:199.442667pt;}
.y9f_c00185{bottom:199.654927pt;}
.ya0_c00185{bottom:200.181287pt;}
.ya1_c00185{bottom:200.602647pt;}
.ya2_c00185{bottom:200.828507pt;}
.ya3_c00185{bottom:201.072627pt;}
.ya4_c00185{bottom:201.185787pt;}
.ya5_c00185{bottom:201.992047pt;}
.ya6_c00185{bottom:202.417007pt;}
.ya7_c00185{bottom:202.542027pt;}
.ya8_c00185{bottom:202.859447pt;}
.ya9_c00185{bottom:203.471047pt;}
.yaa_c00185{bottom:203.784327pt;}
.yab_c00185{bottom:204.014747pt;}
.yac_c00185{bottom:204.539747pt;}
.yad_c00185{bottom:204.839167pt;}
.yae_c00185{bottom:205.400807pt;}
.y97_c00185{bottom:215.760000pt;}
.y96_c00185{bottom:259.201333pt;}
.y95_c00185{bottom:275.520000pt;}
.y8e_c00185{bottom:304.776875pt;}
.y8d_c00185{bottom:304.776928pt;}
.y91_c00185{bottom:304.777003pt;}
.y8f_c00185{bottom:304.777291pt;}
.y90_c00185{bottom:304.777493pt;}
.y92_c00185{bottom:304.777579pt;}
.y94_c00185{bottom:304.777664pt;}
.y93_c00185{bottom:304.778208pt;}
.y81_c00185{bottom:323.929333pt;}
.y82_c00185{bottom:324.115040pt;}
.y83_c00185{bottom:324.350965pt;}
.y84_c00185{bottom:324.551328pt;}
.y85_c00185{bottom:324.616171pt;}
.y86_c00185{bottom:324.723947pt;}
.y87_c00185{bottom:324.943051pt;}
.y88_c00185{bottom:325.376683pt;}
.y89_c00185{bottom:325.495552pt;}
.y8a_c00185{bottom:325.706709pt;}
.y8b_c00185{bottom:326.067723pt;}
.y8c_c00185{bottom:326.236512pt;}
.y80_c00185{bottom:346.001333pt;}
.y77_c00185{bottom:365.040000pt;}
.y78_c00185{bottom:365.356000pt;}
.y79_c00185{bottom:365.816000pt;}
.y7a_c00185{bottom:366.058667pt;}
.y7b_c00185{bottom:366.334667pt;}
.y7c_c00185{bottom:366.580000pt;}
.y7d_c00185{bottom:366.680000pt;}
.y7e_c00185{bottom:367.150667pt;}
.y7f_c00185{bottom:367.416000pt;}
.y76_c00185{bottom:387.985333pt;}
.y75_c00185{bottom:407.546667pt;}
.y6f_c00185{bottom:426.479373pt;}
.y70_c00185{bottom:426.695467pt;}
.y71_c00185{bottom:426.837840pt;}
.y72_c00185{bottom:427.180373pt;}
.y73_c00185{bottom:427.512600pt;}
.y74_c00185{bottom:427.697000pt;}
.y65_c00185{bottom:447.121333pt;}
.y66_c00185{bottom:447.788520pt;}
.y67_c00185{bottom:448.076747pt;}
.y68_c00185{bottom:448.532480pt;}
.y69_c00185{bottom:448.956920pt;}
.y6a_c00185{bottom:449.256933pt;}
.y6b_c00185{bottom:449.667667pt;}
.y6c_c00185{bottom:449.847800pt;}
.y6d_c00185{bottom:450.128560pt;}
.y6e_c00185{bottom:450.329987pt;}
.y5a_c00185{bottom:466.320811pt;}
.y5b_c00185{bottom:467.213931pt;}
.y5c_c00185{bottom:467.652459pt;}
.y5d_c00185{bottom:467.896683pt;}
.y5e_c00185{bottom:468.285483pt;}
.y5f_c00185{bottom:468.576411pt;}
.y60_c00185{bottom:469.411547pt;}
.y61_c00185{bottom:470.263579pt;}
.y62_c00185{bottom:470.696827pt;}
.y63_c00185{bottom:470.909307pt;}
.y64_c00185{bottom:471.258523pt;}
.y52_c00185{bottom:487.933285pt;}
.y53_c00185{bottom:488.184112pt;}
.y54_c00185{bottom:488.474747pt;}
.y55_c00185{bottom:488.916699pt;}
.y56_c00185{bottom:489.150107pt;}
.y57_c00185{bottom:489.717819pt;}
.y58_c00185{bottom:490.010533pt;}
.y59_c00185{bottom:490.408075pt;}
.y48_c00185{bottom:506.640581pt;}
.y49_c00185{bottom:506.869301pt;}
.y4a_c00185{bottom:507.497829pt;}
.y4b_c00185{bottom:507.601909pt;}
.y4c_c00185{bottom:508.131925pt;}
.y4d_c00185{bottom:508.575413pt;}
.y4e_c00185{bottom:508.915333pt;}
.y4f_c00185{bottom:509.364549pt;}
.y50_c00185{bottom:509.609717pt;}
.y51_c00185{bottom:510.318277pt;}
.y3e_c00185{bottom:527.282667pt;}
.y3f_c00185{bottom:528.172043pt;}
.y40_c00185{bottom:528.964027pt;}
.y41_c00185{bottom:529.568443pt;}
.y42_c00185{bottom:529.931707pt;}
.y43_c00185{bottom:530.193803pt;}
.y44_c00185{bottom:530.692075pt;}
.y45_c00185{bottom:531.132715pt;}
.y46_c00185{bottom:531.434715pt;}
.y47_c00185{bottom:531.916059pt;}
.y3d_c00185{bottom:554.045333pt;}
.y33_c00185{bottom:572.641333pt;}
.y34_c00185{bottom:573.008000pt;}
.y35_c00185{bottom:573.408000pt;}
.y36_c00185{bottom:574.194667pt;}
.y37_c00185{bottom:574.580000pt;}
.y38_c00185{bottom:575.218667pt;}
.y39_c00185{bottom:575.521333pt;}
.y3a_c00185{bottom:576.206667pt;}
.y3b_c00185{bottom:576.569333pt;}
.y3c_c00185{bottom:577.202667pt;}
.y2a_c00185{bottom:593.040000pt;}
.y2b_c00185{bottom:593.314667pt;}
.y2c_c00185{bottom:593.554667pt;}
.y2d_c00185{bottom:594.169333pt;}
.y2e_c00185{bottom:594.846667pt;}
.y2f_c00185{bottom:595.186667pt;}
.y30_c00185{bottom:595.577333pt;}
.y31_c00185{bottom:596.101333pt;}
.y32_c00185{bottom:596.366667pt;}
.y23_c00185{bottom:613.200000pt;}
.y24_c00185{bottom:613.512000pt;}
.y25_c00185{bottom:613.946667pt;}
.y26_c00185{bottom:614.228000pt;}
.y27_c00185{bottom:615.085333pt;}
.y28_c00185{bottom:615.616000pt;}
.y29_c00185{bottom:615.865333pt;}
.y1e_c00185{bottom:633.116000pt;}
.y1f_c00185{bottom:635.877333pt;}
.y20_c00185{bottom:636.860000pt;}
.y21_c00185{bottom:637.346667pt;}
.y22_c00185{bottom:637.581333pt;}
.y1b_c00185{bottom:655.678667pt;}
.y1c_c00185{bottom:656.377333pt;}
.y1d_c00185{bottom:658.905333pt;}
.y15_c00185{bottom:673.921333pt;}
.y16_c00185{bottom:674.650667pt;}
.y17_c00185{bottom:675.462667pt;}
.y18_c00185{bottom:676.037333pt;}
.y19_c00185{bottom:676.280000pt;}
.y1a_c00185{bottom:678.500000pt;}
.ye_c00185{bottom:694.320000pt;}
.yf_c00185{bottom:695.368000pt;}
.y10_c00185{bottom:696.038667pt;}
.y11_c00185{bottom:697.062667pt;}
.y12_c00185{bottom:697.804000pt;}
.y13_c00185{bottom:698.282667pt;}
.y14_c00185{bottom:699.412000pt;}
.y3_c00185{bottom:714.242667pt;}
.y4_c00185{bottom:714.928000pt;}
.y5_c00185{bottom:715.338667pt;}
.y6_c00185{bottom:715.824000pt;}
.y7_c00185{bottom:716.421333pt;}
.y8_c00185{bottom:717.044000pt;}
.y9_c00185{bottom:717.558667pt;}
.ya_c00185{bottom:718.386667pt;}
.yb_c00185{bottom:718.761333pt;}
.yc_c00185{bottom:719.393333pt;}
.yd_c00185{bottom:719.986667pt;}
.y2_c00185{bottom:737.862667pt;}
.y1_c00185{bottom:779.010667pt;}
.ydb_c00185{bottom:815.042107pt;}
.yd1_c00185{bottom:829.681333pt;}
.yd2_c00185{bottom:830.223893pt;}
.yd3_c00185{bottom:830.739360pt;}
.yd4_c00185{bottom:831.121613pt;}
.yd5_c00185{bottom:831.589680pt;}
.yd6_c00185{bottom:832.304893pt;}
.yd7_c00185{bottom:832.616853pt;}
.yd8_c00185{bottom:832.681720pt;}
.yd9_c00185{bottom:833.233693pt;}
.yda_c00185{bottom:833.880867pt;}
.h15_c00185{height:19.600000pt;}
.h13_c00185{height:23.333333pt;}
.h10_c00185{height:45.733333pt;}
.hf_c00185{height:47.600000pt;}
.h18_c00185{height:47.605355pt;}
.h17_c00185{height:48.538793pt;}
.h12_c00185{height:51.333333pt;}
.h16_c00185{height:51.339108pt;}
.h11_c00185{height:52.266667pt;}
.h9_c00185{height:55.070631pt;}
.hd_c00185{height:58.800000pt;}
.h8_c00185{height:60.671035pt;}
.h5_c00185{height:61.600000pt;}
.hb_c00185{height:62.537836pt;}
.h4_c00185{height:63.466667pt;}
.he_c00185{height:63.468698pt;}
.h6_c00185{height:64.400000pt;}
.hc_c00185{height:64.403220pt;}
.ha_c00185{height:64.404637pt;}
.h3_c00185{height:65.333333pt;}
.h7_c00185{height:68.133333pt;}
.h19_c00185{height:71.870260pt;}
.h14_c00185{height:117.600000pt;}
.h2_c00185{height:123.200000pt;}
.h1a_c00185{height:208.143740pt;}
.h0_c00185{height:896.400000pt;}
.h1_c00185{height:896.666667pt;}
.w0_c00185{width:603.066667pt;}
.w1_c00185{width:603.333333pt;}
.x0_c00185{left:0.000000pt;}
.x3c_c00185{left:75.321403pt;}
.x72_c00185{left:79.440000pt;}
.x35_c00185{left:81.804000pt;}
.x43_c00185{left:87.939675pt;}
.x3d_c00185{left:94.381403pt;}
.x7f_c00185{left:105.600000pt;}
.x80_c00185{left:107.520000pt;}
.x73_c00185{left:116.880000pt;}
.x44_c00185{left:119.287845pt;}
.x7c_c00185{left:127.440000pt;}
.x97_c00185{left:131.796667pt;}
.x81_c00185{left:138.649333pt;}
.x8a_c00185{left:143.368013pt;}
.x3e_c00185{left:146.758736pt;}
.x60_c00185{left:148.484000pt;}
.x74_c00185{left:150.000000pt;}
.x7d_c00185{left:152.880000pt;}
.x6_c00185{left:154.288000pt;}
.x2b_c00185{left:155.685333pt;}
.x54_c00185{left:157.069160pt;}
.x1d_c00185{left:171.549333pt;}
.x25_c00185{left:176.066667pt;}
.x21_c00185{left:177.961333pt;}
.x2c_c00185{left:181.853333pt;}
.x8b_c00185{left:185.143153pt;}
.x82_c00185{left:187.890667pt;}
.x75_c00185{left:189.120000pt;}
.x47_c00185{left:192.684757pt;}
.x7_c00185{left:194.608000pt;}
.x55_c00185{left:196.916227pt;}
.x3f_c00185{left:199.600069pt;}
.x61_c00185{left:201.188000pt;}
.x68_c00185{left:202.802016pt;}
.x76_c00185{left:204.720000pt;}
.x2d_c00185{left:210.408000pt;}
.x22_c00185{left:211.369333pt;}
.x48_c00185{left:213.036757pt;}
.x11_c00185{left:215.426667pt;}
.x90_c00185{left:216.785327pt;}
.x8_c00185{left:218.796000pt;}
.x36_c00185{left:221.917333pt;}
.x4e_c00185{left:222.844000pt;}
.x62_c00185{left:226.233333pt;}
.x6c_c00185{left:227.760000pt;}
.x77_c00185{left:230.160000pt;}
.x1_c00185{left:232.560000pt;}
.x56_c00185{left:235.036613pt;}
.x40_c00185{left:236.557403pt;}
.x6f_c00185{left:237.600000pt;}
.x6d_c00185{left:238.800000pt;}
.x17_c00185{left:240.450667pt;}
.x26_c00185{left:241.834667pt;}
.x5c_c00185{left:243.194667pt;}
.x49_c00185{left:245.436757pt;}
.x9_c00185{left:247.344000pt;}
.x4f_c00185{left:251.666667pt;}
.x12_c00185{left:254.885333pt;}
.x78_c00185{left:258.240000pt;}
.x6e_c00185{left:264.000000pt;}
.x32_c00185{left:264.961333pt;}
.x2e_c00185{left:266.566667pt;}
.x4a_c00185{left:269.680757pt;}
.x18_c00185{left:272.377333pt;}
.x69_c00185{left:273.603883pt;}
.x63_c00185{left:275.198667pt;}
.x2_c00185{left:276.720000pt;}
.x7e_c00185{left:278.160000pt;}
.x4_c00185{left:280.080000pt;}
.xa_c00185{left:282.460000pt;}
.x19_c00185{left:285.825333pt;}
.x57_c00185{left:292.433187pt;}
.x27_c00185{left:293.893333pt;}
.x50_c00185{left:297.240000pt;}
.x23_c00185{left:298.957333pt;}
.x70_c00185{left:300.240000pt;}
.x58_c00185{left:301.680000pt;}
.x33_c00185{left:302.881333pt;}
.x6a_c00185{left:303.844480pt;}
.x79_c00185{left:307.440000pt;}
.x3_c00185{left:309.120000pt;}
.x5_c00185{left:311.040000pt;}
.x71_c00185{left:313.680000pt;}
.x13_c00185{left:315.096000pt;}
.xb_c00185{left:319.104000pt;}
.x28_c00185{left:320.070667pt;}
.x41_c00185{left:322.749403pt;}
.x37_c00185{left:324.398667pt;}
.x5d_c00185{left:328.148000pt;}
.x64_c00185{left:329.402667pt;}
.x1b_c00185{left:333.516000pt;}
.x5f_c00185{left:334.798667pt;}
.x83_c00185{left:336.938667pt;}
.x24_c00185{left:339.760000pt;}
.x65_c00185{left:344.261333pt;}
.x84_c00185{left:345.273333pt;}
.x45_c00185{left:347.389440pt;}
.xc_c00185{left:349.413333pt;}
.x1e_c00185{left:355.676000pt;}
.x14_c00185{left:358.685333pt;}
.x2f_c00185{left:361.365333pt;}
.x38_c00185{left:365.921333pt;}
.x51_c00185{left:369.685333pt;}
.x66_c00185{left:370.656000pt;}
.x7a_c00185{left:377.760000pt;}
.x42_c00185{left:381.796069pt;}
.x6b_c00185{left:383.526912pt;}
.x15_c00185{left:386.838667pt;}
.x29_c00185{left:390.394667pt;}
.x5e_c00185{left:391.545333pt;}
.x59_c00185{left:393.120000pt;}
.x8c_c00185{left:395.874973pt;}
.x46_c00185{left:397.075824pt;}
.xd_c00185{left:398.128000pt;}
.x34_c00185{left:399.601333pt;}
.x39_c00185{left:402.641333pt;}
.x85_c00185{left:407.208000pt;}
.x1a_c00185{left:409.184000pt;}
.x2a_c00185{left:410.806667pt;}
.x67_c00185{left:415.782667pt;}
.x8d_c00185{left:417.480593pt;}
.xe_c00185{left:420.205333pt;}
.x1f_c00185{left:421.149333pt;}
.x91_c00185{left:426.343820pt;}
.x3a_c00185{left:427.808000pt;}
.x52_c00185{left:428.772000pt;}
.x30_c00185{left:436.244000pt;}
.x93_c00185{left:442.460000pt;}
.x86_c00185{left:443.454667pt;}
.x4b_c00185{left:446.382091pt;}
.x94_c00185{left:448.946667pt;}
.x16_c00185{left:453.246667pt;}
.x7b_c00185{left:456.480000pt;}
.xf_c00185{left:457.398667pt;}
.x4c_c00185{left:464.088757pt;}
.x3b_c00185{left:467.920000pt;}
.x20_c00185{left:469.153333pt;}
.x5a_c00185{left:473.520000pt;}
.x53_c00185{left:476.990667pt;}
.x87_c00185{left:478.454667pt;}
.x31_c00185{left:481.514667pt;}
.x8e_c00185{left:487.319167pt;}
.x10_c00185{left:492.298667pt;}
.x4d_c00185{left:493.190091pt;}
.x92_c00185{left:495.705473pt;}
.x88_c00185{left:498.416000pt;}
.x5b_c00185{left:500.400000pt;}
.x95_c00185{left:504.144000pt;}
.x8f_c00185{left:515.166600pt;}
.x1c_c00185{left:527.957333pt;}
.x89_c00185{left:535.858667pt;}
.x96_c00185{left:568.861333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m19_c00186{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);}
.md5_c00186{transform:matrix(0.019370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019370,0.000000,0.000000,0.250000,0,0);}
.m5d_c00186{transform:matrix(0.020365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020365,0.000000,0.000000,0.250000,0,0);}
.m93_c00186{transform:matrix(0.074497,0.001117,-0.003750,0.249972,0,0);-ms-transform:matrix(0.074497,0.001117,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.074497,0.001117,-0.003750,0.249972,0,0);}
.m32_c00186{transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);}
.md7_c00186{transform:matrix(0.095560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095560,0.000000,0.000000,0.250000,0,0);}
.ma4_c00186{transform:matrix(0.097319,0.001460,-0.003750,0.249972,0,0);-ms-transform:matrix(0.097319,0.001460,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.097319,0.001460,-0.003750,0.249972,0,0);}
.m5e_c00186{transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102870,0.000000,0.000000,0.250000,0,0);}
.mbd_c00186{transform:matrix(0.127711,0.001916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.127711,0.001916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.127711,0.001916,-0.003750,0.249972,0,0);}
.m72_c00186{transform:matrix(0.130310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130310,0.000000,0.000000,0.250000,0,0);}
.mdc_c00186{transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130590,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139870,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{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);}
.mc0_c00186{transform:matrix(0.148608,0.002229,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148608,0.002229,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148608,0.002229,-0.003750,0.249972,0,0);}
.mf_c00186{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);}
.m10_c00186{transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);}
.m78_c00186{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);}
.m42_c00186{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);}
.m6e_c00186{transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{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);}
.m65_c00186{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);}
.m34_c00186{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);}
.m80_c00186{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);}
.m2c_c00186{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);}
.m14_c00186{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);}
.m61_c00186{transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);}
.m60_c00186{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);}
.m38_c00186{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);}
.m3e_c00186{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);}
.m29_c00186{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);}
.m9d_c00186{transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170561,0.002558,-0.003750,0.249972,0,0);}
.m66_c00186{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);}
.m2f_c00186{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);}
.m96_c00186{transform:matrix(0.172006,0.002580,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172006,0.002580,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172006,0.002580,-0.003750,0.249972,0,0);}
.m13_c00186{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);}
.mc_c00186{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);}
.m3f_c00186{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);}
.m9_c00186{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);}
.m30_c00186{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);}
.m64_c00186{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);}
.m12_c00186{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);}
.m5b_c00186{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);}
.m6a_c00186{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);}
.m2a_c00186{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);}
.m4c_c00186{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);}
.m6c_c00186{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);}
.m82_c00186{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{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);}
.m43_c00186{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);}
.m4_c00186{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);}
.m3c_c00186{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);}
.m5a_c00186{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);}
.m77_c00186{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);}
.m3d_c00186{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);}
.m2e_c00186{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);}
.mb_c00186{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);}
.m5f_c00186{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);}
.m83_c00186{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);}
.m63_c00186{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);}
.m9b_c00186{transform:matrix(0.184044,0.002761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184044,0.002761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184044,0.002761,-0.003750,0.249972,0,0);}
.m7d_c00186{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);}
.m28_c00186{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);}
.m24_c00186{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);}
.m71_c00186{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);}
.m59_c00186{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);}
.md1_c00186{transform:matrix(0.188454,0.002827,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188454,0.002827,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188454,0.002827,-0.003750,0.249972,0,0);}
.m15_c00186{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);}
.m58_c00186{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);}
.m57_c00186{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);}
.m37_c00186{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);}
.m8a_c00186{transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192093,0.002881,-0.003750,0.249972,0,0);}
.m36_c00186{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);}
.m35_c00186{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);}
.m20_c00186{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);}
.m53_c00186{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);}
.m5c_c00186{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);}
.m81_c00186{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);}
.m2d_c00186{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);}
.m51_c00186{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);}
.m89_c00186{transform:matrix(0.196643,0.002950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196643,0.002950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196643,0.002950,-0.003750,0.249972,0,0);}
.mae_c00186{transform:matrix(0.196948,0.002954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196948,0.002954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196948,0.002954,-0.003750,0.249972,0,0);}
.m4a_c00186{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);}
.m4f_c00186{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);}
.m39_c00186{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);}
.m98_c00186{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);}
.m54_c00186{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);}
.m41_c00186{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);}
.m73_c00186{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);}
.m22_c00186{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);}
.mc8_c00186{transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);}
.m6b_c00186{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);}
.mb7_c00186{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);}
.m4e_c00186{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);}
.m8e_c00186{transform:matrix(0.203192,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203192,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203192,0.003048,-0.003750,0.249972,0,0);}
.m50_c00186{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);}
.m95_c00186{transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204437,0.003067,-0.003750,0.249972,0,0);}
.mb0_c00186{transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204622,0.003069,-0.003750,0.249972,0,0);}
.mce_c00186{transform:matrix(0.205107,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205107,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205107,0.003077,-0.003750,0.249972,0,0);}
.mc7_c00186{transform:matrix(0.205297,0.003079,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205297,0.003079,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205297,0.003079,-0.003750,0.249972,0,0);}
.m2b_c00186{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);}
.ma9_c00186{transform:matrix(0.205787,0.003087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205787,0.003087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205787,0.003087,-0.003750,0.249972,0,0);}
.ma3_c00186{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);}
.m25_c00186{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);}
.mbe_c00186{transform:matrix(0.205872,0.003088,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205872,0.003088,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205872,0.003088,-0.003750,0.249972,0,0);}
.ma1_c00186{transform:matrix(0.206332,0.003095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206332,0.003095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206332,0.003095,-0.003750,0.249972,0,0);}
.m40_c00186{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);}
.m23_c00186{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);}
.m91_c00186{transform:matrix(0.207382,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207382,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207382,0.003111,-0.003750,0.249972,0,0);}
.mc2_c00186{transform:matrix(0.208662,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208662,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208662,0.003130,-0.003750,0.249972,0,0);}
.maf_c00186{transform:matrix(0.208702,0.003131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208702,0.003131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208702,0.003131,-0.003750,0.249972,0,0);}
.m47_c00186{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);}
.m99_c00186{transform:matrix(0.210726,0.003161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210726,0.003161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210726,0.003161,-0.003750,0.249972,0,0);}
.m1c_c00186{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);}
.mc5_c00186{transform:matrix(0.210811,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210811,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210811,0.003162,-0.003750,0.249972,0,0);}
.mbf_c00186{transform:matrix(0.213606,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213606,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213606,0.003204,-0.003750,0.249972,0,0);}
.m33_c00186{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);}
.ma_c00186{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);}
.m3b_c00186{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);}
.m1e_c00186{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);}
.m52_c00186{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);}
.m7_c00186{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);}
.m3_c00186{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);}
.m92_c00186{transform:matrix(0.218000,0.003270,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218000,0.003270,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218000,0.003270,-0.003750,0.249972,0,0);}
.mbb_c00186{transform:matrix(0.218615,0.003279,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218615,0.003279,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218615,0.003279,-0.003750,0.249972,0,0);}
.m79_c00186{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);}
.m7e_c00186{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);}
.mba_c00186{transform:matrix(0.219225,0.003288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219225,0.003288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219225,0.003288,-0.003750,0.249972,0,0);}
.ma2_c00186{transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);}
.m88_c00186{transform:matrix(0.220785,0.003312,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220785,0.003312,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220785,0.003312,-0.003750,0.249972,0,0);}
.mb8_c00186{transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);}
.m9f_c00186{transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);}
.m3a_c00186{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{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);}
.m9e_c00186{transform:matrix(0.223390,0.003351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223390,0.003351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223390,0.003351,-0.003750,0.249972,0,0);}
.mbc_c00186{transform:matrix(0.223780,0.003357,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223780,0.003357,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223780,0.003357,-0.003750,0.249972,0,0);}
.md_c00186{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);}
.m31_c00186{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);}
.mcf_c00186{transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);}
.mb2_c00186{transform:matrix(0.226620,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226620,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226620,0.003399,-0.003750,0.249972,0,0);}
.m16_c00186{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);}
.mb6_c00186{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);}
.ma0_c00186{transform:matrix(0.229469,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229469,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229469,0.003442,-0.003750,0.249972,0,0);}
.mb1_c00186{transform:matrix(0.229974,0.003450,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229974,0.003450,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229974,0.003450,-0.003750,0.249972,0,0);}
.m8d_c00186{transform:matrix(0.230024,0.003450,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230024,0.003450,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230024,0.003450,-0.003750,0.249972,0,0);}
.md6_c00186{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);}
.mac_c00186{transform:matrix(0.233179,0.003498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233179,0.003498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233179,0.003498,-0.003750,0.249972,0,0);}
.mb4_c00186{transform:matrix(0.233944,0.003509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233944,0.003509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233944,0.003509,-0.003750,0.249972,0,0);}
.ma7_c00186{transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);}
.md2_c00186{transform:matrix(0.234014,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234014,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234014,0.003510,-0.003750,0.249972,0,0);}
.m9a_c00186{transform:matrix(0.236753,0.003551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236753,0.003551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236753,0.003551,-0.003750,0.249972,0,0);}
.mad_c00186{transform:matrix(0.239323,0.003590,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239323,0.003590,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239323,0.003590,-0.003750,0.249972,0,0);}
.m7c_c00186{transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);}
.maa_c00186{transform:matrix(0.242473,0.003637,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242473,0.003637,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242473,0.003637,-0.003750,0.249972,0,0);}
.m8b_c00186{transform:matrix(0.243128,0.003647,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243128,0.003647,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243128,0.003647,-0.003750,0.249972,0,0);}
.mca_c00186{transform:matrix(0.243248,0.003649,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243248,0.003649,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243248,0.003649,-0.003750,0.249972,0,0);}
.m8f_c00186{transform:matrix(0.243803,0.003657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243803,0.003657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243803,0.003657,-0.003750,0.249972,0,0);}
.m62_c00186{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);}
.ma8_c00186{transform:matrix(0.246537,0.003698,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246537,0.003698,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246537,0.003698,-0.003750,0.249972,0,0);}
.ma5_c00186{transform:matrix(0.247172,0.003708,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247172,0.003708,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247172,0.003708,-0.003750,0.249972,0,0);}
.m6f_c00186{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);}
.mc1_c00186{transform:matrix(0.251657,0.003775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251657,0.003775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251657,0.003775,-0.003750,0.249972,0,0);}
.m70_c00186{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{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);}
.m8c_c00186{transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);}
.md3_c00186{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);}
.mc6_c00186{transform:matrix(0.259336,0.003890,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259336,0.003890,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259336,0.003890,-0.003750,0.249972,0,0);}
.m4d_c00186{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);}
.m6d_c00186{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);}
.m44_c00186{transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);}
.m46_c00186{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);}
.mcb_c00186{transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);}
.ma6_c00186{transform:matrix(0.275074,0.004126,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275074,0.004126,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275074,0.004126,-0.003750,0.249972,0,0);}
.mab_c00186{transform:matrix(0.276074,0.004141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276074,0.004141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276074,0.004141,-0.003750,0.249972,0,0);}
.m68_c00186{transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);}
.m90_c00186{transform:matrix(0.277949,0.004169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277949,0.004169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277949,0.004169,-0.003750,0.249972,0,0);}
.m97_c00186{transform:matrix(0.281643,0.004225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281643,0.004225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281643,0.004225,-0.003750,0.249972,0,0);}
.mcd_c00186{transform:matrix(0.282638,0.004240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282638,0.004240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282638,0.004240,-0.003750,0.249972,0,0);}
.m49_c00186{transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);}
.m55_c00186{transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00186{transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.304790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00186{transform:matrix(0.305001,0.004575,-0.003750,0.249972,0,0);-ms-transform:matrix(0.305001,0.004575,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.305001,0.004575,-0.003750,0.249972,0,0);}
.m87_c00186{transform:matrix(0.305391,0.004581,-0.003750,0.249972,0,0);-ms-transform:matrix(0.305391,0.004581,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.305391,0.004581,-0.003750,0.249972,0,0);}
.m17_c00186{transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);}
.mb5_c00186{transform:matrix(0.315255,0.004729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315255,0.004729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315255,0.004729,-0.003750,0.249972,0,0);}
.m1b_c00186{transform:matrix(0.315570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315570,0.000000,0.000000,0.250000,0,0);}
.mc9_c00186{transform:matrix(0.318164,0.004772,-0.003750,0.249972,0,0);-ms-transform:matrix(0.318164,0.004772,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.318164,0.004772,-0.003750,0.249972,0,0);}
.mdb_c00186{transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327865,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);}
.m9c_c00186{transform:matrix(0.337877,0.005068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.337877,0.005068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.337877,0.005068,-0.003750,0.249972,0,0);}
.m85_c00186{transform:matrix(0.343381,0.005151,-0.003750,0.249972,0,0);-ms-transform:matrix(0.343381,0.005151,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.343381,0.005151,-0.003750,0.249972,0,0);}
.m86_c00186{transform:matrix(0.344686,0.005170,-0.003750,0.249972,0,0);-ms-transform:matrix(0.344686,0.005170,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.344686,0.005170,-0.003750,0.249972,0,0);}
.mcc_c00186{transform:matrix(0.362509,0.005438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.362509,0.005438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.362509,0.005438,-0.003750,0.249972,0,0);}
.m48_c00186{transform:matrix(0.366575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366575,0.000000,0.000000,0.250000,0,0);}
.mc3_c00186{transform:matrix(0.379402,0.005691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.379402,0.005691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.379402,0.005691,-0.003750,0.249972,0,0);}
.m74_c00186{transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);}
.m67_c00186{transform:matrix(0.403110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403110,0.000000,0.000000,0.250000,0,0);}
.mb3_c00186{transform:matrix(0.419218,0.006288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.419218,0.006288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.419218,0.006288,-0.003750,0.249972,0,0);}
.md0_c00186{transform:matrix(0.424822,0.006372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.424822,0.006372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.424822,0.006372,-0.003750,0.249972,0,0);}
.m84_c00186{transform:matrix(0.432396,0.006486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.432396,0.006486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.432396,0.006486,-0.003750,0.249972,0,0);}
.m7a_c00186{transform:matrix(0.437695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437695,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.438920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00186{transform:matrix(0.488030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488030,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.511125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511125,0.000000,0.000000,0.250000,0,0);}
.md4_c00186{transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);}
.m75_c00186{transform:matrix(0.520335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520335,0.000000,0.000000,0.250000,0,0);}
.m76_c00186{transform:matrix(0.546080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546080,0.000000,0.000000,0.250000,0,0);}
.m69_c00186{transform:matrix(0.546805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546805,0.000000,0.000000,0.250000,0,0);}
.m94_c00186{transform:matrix(0.600612,0.009009,-0.003750,0.249972,0,0);-ms-transform:matrix(0.600612,0.009009,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.600612,0.009009,-0.003750,0.249972,0,0);}
.m0_c00186{transform:matrix(0.710510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710510,0.000000,0.000000,0.250000,0,0);}
.mda_c00186{transform:matrix(0.743545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743545,0.000000,0.000000,0.250000,0,0);}
.md9_c00186{transform:matrix(0.860450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860450,0.000000,0.000000,0.250000,0,0);}
.md8_c00186{transform:matrix(0.865595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865595,0.000000,0.000000,0.250000,0,0);}
.mc4_c00186{transform:matrix(1.026695,0.015400,-0.003750,0.249972,0,0);-ms-transform:matrix(1.026695,0.015400,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.026695,0.015400,-0.003750,0.249972,0,0);}
.m1_c00186{transform:matrix(1.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.263785,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;}
.fsd_c00186{font-size:22.050000px;}
.fs11_c00186{font-size:45.155079px;}
.fs10_c00186{font-size:47.255315px;}
.fsf_c00186{font-size:49.355552px;}
.fse_c00186{font-size:50.400000px;}
.fs12_c00186{font-size:50.405670px;}
.fs7_c00186{font-size:66.150000px;}
.fsb_c00186{font-size:68.250000px;}
.fsc_c00186{font-size:69.300000px;}
.fs2_c00186{font-size:70.350000px;}
.fs6_c00186{font-size:71.400000px;}
.fs1_c00186{font-size:72.450000px;}
.fs5_c00186{font-size:73.500000px;}
.fs4_c00186{font-size:74.550000px;}
.fs3_c00186{font-size:80.850000px;}
.fs0_c00186{font-size:87.150000px;}
.fs13_c00186{font-size:89.250000px;}
.fs8_c00186{font-size:107.100000px;}
.fs9_c00186{font-size:142.800000px;}
.fsa_c00186{font-size:143.850000px;}
.y0_c00186{bottom:0.000000px;}
.y65_c00186{bottom:94.758000px;}
.y66_c00186{bottom:95.551500px;}
.y67_c00186{bottom:96.526500px;}
.y68_c00186{bottom:97.753500px;}
.y69_c00186{bottom:98.233500px;}
.y64_c00186{bottom:113.470500px;}
.y5f_c00186{bottom:154.708440px;}
.y5e_c00186{bottom:154.708568px;}
.y59_c00186{bottom:154.708575px;}
.y5c_c00186{bottom:154.708583px;}
.y5b_c00186{bottom:154.708688px;}
.y5a_c00186{bottom:154.708920px;}
.y5d_c00186{bottom:154.709055px;}
.y57_c00186{bottom:154.709063px;}
.y56_c00186{bottom:154.709123px;}
.y58_c00186{bottom:154.709130px;}
.y60_c00186{bottom:154.709415px;}
.y63_c00186{bottom:154.709978px;}
.y61_c00186{bottom:154.710083px;}
.y62_c00186{bottom:154.710105px;}
.y54_c00186{bottom:172.250070px;}
.y53_c00186{bottom:172.250625px;}
.y55_c00186{bottom:172.250760px;}
.y52_c00186{bottom:172.251330px;}
.y4f_c00186{bottom:172.251705px;}
.y4b_c00186{bottom:172.251780px;}
.y4d_c00186{bottom:172.251788px;}
.y51_c00186{bottom:172.252013px;}
.y4a_c00186{bottom:172.252185px;}
.y4c_c00186{bottom:172.252193px;}
.y50_c00186{bottom:172.252245px;}
.y49_c00186{bottom:172.252290px;}
.y4e_c00186{bottom:172.252433px;}
.y46_c00186{bottom:172.252560px;}
.y48_c00186{bottom:172.252718px;}
.y47_c00186{bottom:172.253228px;}
.y40_c00186{bottom:189.841928px;}
.y3b_c00186{bottom:189.841958px;}
.y3d_c00186{bottom:189.842025px;}
.y3f_c00186{bottom:189.842183px;}
.y42_c00186{bottom:189.842190px;}
.y39_c00186{bottom:189.842273px;}
.y44_c00186{bottom:189.842280px;}
.y3e_c00186{bottom:189.842415px;}
.y41_c00186{bottom:189.842468px;}
.y3a_c00186{bottom:189.842490px;}
.y3c_c00186{bottom:189.842603px;}
.y43_c00186{bottom:189.842663px;}
.y38_c00186{bottom:189.842888px;}
.y45_c00186{bottom:189.842925px;}
.y37_c00186{bottom:189.843593px;}
.y32_c00186{bottom:208.192463px;}
.y33_c00186{bottom:208.192785px;}
.y29_c00186{bottom:208.192823px;}
.y34_c00186{bottom:208.192980px;}
.y2c_c00186{bottom:208.193280px;}
.y2a_c00186{bottom:208.193318px;}
.y35_c00186{bottom:208.193325px;}
.y2b_c00186{bottom:208.193340px;}
.y28_c00186{bottom:208.193505px;}
.y2e_c00186{bottom:208.193520px;}
.y31_c00186{bottom:208.193528px;}
.y27_c00186{bottom:208.193633px;}
.y36_c00186{bottom:208.193798px;}
.y2d_c00186{bottom:208.193903px;}
.y30_c00186{bottom:208.194105px;}
.y2f_c00186{bottom:208.194210px;}
.y26_c00186{bottom:225.060225px;}
.y25_c00186{bottom:225.692745px;}
.y24_c00186{bottom:226.368420px;}
.y23_c00186{bottom:226.663485px;}
.y22_c00186{bottom:227.291460px;}
.y21_c00186{bottom:227.980905px;}
.y20_c00186{bottom:228.826163px;}
.y1f_c00186{bottom:229.438253px;}
.y1e_c00186{bottom:230.179448px;}
.y1d_c00186{bottom:230.661105px;}
.y1c_c00186{bottom:231.191655px;}
.y1b_c00186{bottom:231.475358px;}
.y1a_c00186{bottom:231.795578px;}
.y19_c00186{bottom:232.021748px;}
.y18_c00186{bottom:232.471500px;}
.y17_c00186{bottom:287.155500px;}
.y16_c00186{bottom:303.346500px;}
.y15_c00186{bottom:313.245000px;}
.y14_c00186{bottom:337.368000px;}
.y13_c00186{bottom:360.546000px;}
.y12_c00186{bottom:384.957000px;}
.y11_c00186{bottom:421.948500px;}
.y10_c00186{bottom:447.594000px;}
.yf_c00186{bottom:486.930000px;}
.ye_c00186{bottom:550.236000px;}
.yd_c00186{bottom:572.940000px;}
.yc_c00186{bottom:595.711500px;}
.yb_c00186{bottom:617.341500px;}
.ya_c00186{bottom:640.906500px;}
.y9_c00186{bottom:663.916500px;}
.y8_c00186{bottom:686.748000px;}
.y7_c00186{bottom:709.668000px;}
.y6_c00186{bottom:732.616500px;}
.y5_c00186{bottom:755.451000px;}
.y4_c00186{bottom:778.495500px;}
.y3_c00186{bottom:802.108500px;}
.y2_c00186{bottom:825.423000px;}
.y1_c00186{bottom:871.908000px;}
.hf_c00186{height:22.050000px;}
.h13_c00186{height:45.155079px;}
.h12_c00186{height:47.255315px;}
.h11_c00186{height:49.355552px;}
.h10_c00186{height:50.400000px;}
.h14_c00186{height:50.405670px;}
.h9_c00186{height:66.150000px;}
.hd_c00186{height:68.250000px;}
.he_c00186{height:69.300000px;}
.h4_c00186{height:70.350000px;}
.h8_c00186{height:71.400000px;}
.h3_c00186{height:72.450000px;}
.h7_c00186{height:73.500000px;}
.h6_c00186{height:74.550000px;}
.h5_c00186{height:80.850000px;}
.h2_c00186{height:87.150000px;}
.h15_c00186{height:89.250000px;}
.ha_c00186{height:107.100000px;}
.hb_c00186{height:142.800000px;}
.hc_c00186{height:143.850000px;}
.h1_c00186{height:1005.000000px;}
.h0_c00186{height:1005.150000px;}
.w0_c00186{width:735.750000px;}
.x0_c00186{left:0.000000px;}
.x93_c00186{left:41.580000px;}
.x64_c00186{left:43.140000px;}
.x8d_c00186{left:45.632888px;}
.x80_c00186{left:56.435910px;}
.x77_c00186{left:58.864763px;}
.x6f_c00186{left:60.212753px;}
.x65_c00186{left:73.123500px;}
.x78_c00186{left:81.816915px;}
.x94_c00186{left:85.050000px;}
.x66_c00186{left:88.201500px;}
.x8e_c00186{left:92.347395px;}
.x81_c00186{left:93.699803px;}
.x54_c00186{left:97.200000px;}
.x67_c00186{left:109.549500px;}
.x97_c00186{left:113.967000px;}
.x58_c00186{left:117.450000px;}
.x70_c00186{left:118.538370px;}
.x3b_c00186{left:124.740000px;}
.x8_c00186{left:126.630000px;}
.x68_c00186{left:128.463000px;}
.x8f_c00186{left:130.151400px;}
.xf_c00186{left:134.460000px;}
.x55_c00186{left:143.640000px;}
.x82_c00186{left:148.246065px;}
.x59_c00186{left:154.980000px;}
.x34_c00186{left:156.600000px;}
.x90_c00186{left:157.694588px;}
.x4c_c00186{left:160.110000px;}
.x29_c00186{left:161.460000px;}
.x21_c00186{left:162.810000px;}
.x69_c00186{left:163.833000px;}
.x83_c00186{left:166.878750px;}
.x10_c00186{left:170.640000px;}
.x1a_c00186{left:173.340000px;}
.x95_c00186{left:175.770000px;}
.x1_c00186{left:177.930000px;}
.x3c_c00186{left:180.630000px;}
.x35_c00186{left:183.330000px;}
.x45_c00186{left:186.030000px;}
.x22_c00186{left:193.860000px;}
.x5d_c00186{left:195.480000px;}
.x2a_c00186{left:201.150000px;}
.x9_c00186{left:203.040000px;}
.x4d_c00186{left:204.390000px;}
.x79_c00186{left:206.571473px;}
.x3d_c00186{left:207.900000px;}
.x1b_c00186{left:208.980000px;}
.x62_c00186{left:213.030000px;}
.x11_c00186{left:214.110000px;}
.x84_c00186{left:216.023798px;}
.x23_c00186{left:217.350000px;}
.x36_c00186{left:218.430000px;}
.xa_c00186{left:224.910000px;}
.x56_c00186{left:230.040000px;}
.x1c_c00186{left:239.490000px;}
.x30_c00186{left:241.650000px;}
.x5e_c00186{left:244.350000px;}
.x6a_c00186{left:245.356500px;}
.x3e_c00186{left:248.130000px;}
.x7a_c00186{left:250.316805px;}
.x37_c00186{left:255.690000px;}
.x12_c00186{left:257.850000px;}
.x6_c00186{left:260.280000px;}
.x5c_c00186{left:264.870000px;}
.x24_c00186{left:271.080000px;}
.x57_c00186{left:277.290000px;}
.x85_c00186{left:279.210518px;}
.x2b_c00186{left:280.260000px;}
.x13_c00186{left:282.960000px;}
.x17_c00186{left:285.930000px;}
.x25_c00186{left:288.900000px;}
.x5f_c00186{left:289.980000px;}
.x7_c00186{left:291.870000px;}
.x7b_c00186{left:293.522025px;}
.x4e_c00186{left:295.110000px;}
.x86_c00186{left:300.542310px;}
.x3f_c00186{left:301.590000px;}
.x71_c00186{left:304.320675px;}
.x2c_c00186{left:305.370000px;}
.x1d_c00186{left:306.720000px;}
.x63_c00186{left:309.420000px;}
.x31_c00186{left:310.770000px;}
.x5a_c00186{left:311.850000px;}
.x98_c00186{left:314.188500px;}
.x40_c00186{left:316.170000px;}
.x26_c00186{left:317.520000px;}
.x96_c00186{left:322.110000px;}
.xb_c00186{left:323.730000px;}
.x2d_c00186{left:325.350000px;}
.x2_c00186{left:328.590000px;}
.x87_c00186{left:329.705880px;}
.x72_c00186{left:332.133930px;}
.x18_c00186{left:333.990000px;}
.x14_c00186{left:335.610000px;}
.x46_c00186{left:338.580000px;}
.x1e_c00186{left:341.280000px;}
.x61_c00186{left:342.900000px;}
.x32_c00186{left:345.600000px;}
.x4f_c00186{left:352.080000px;}
.x60_c00186{left:355.590000px;}
.x38_c00186{left:358.560000px;}
.x41_c00186{left:360.990000px;}
.x48_c00186{left:369.090000px;}
.x73_c00186{left:371.828340px;}
.x27_c00186{left:374.490000px;}
.xc_c00186{left:376.380000px;}
.x15_c00186{left:379.890000px;}
.x1f_c00186{left:382.590000px;}
.x39_c00186{left:385.830000px;}
.x6b_c00186{left:388.476000px;}
.x88_c00186{left:390.732105px;}
.x2e_c00186{left:392.850000px;}
.x52_c00186{left:395.010000px;}
.x42_c00186{left:396.090000px;}
.xd_c00186{left:397.170000px;}
.x3_c00186{left:398.790000px;}
.x50_c00186{left:402.030000px;}
.x2f_c00186{left:406.080000px;}
.x5b_c00186{left:411.480000px;}
.x3a_c00186{left:412.560000px;}
.x47_c00186{left:415.800000px;}
.x28_c00186{left:416.880000px;}
.x7c_c00186{left:419.356830px;}
.x74_c00186{left:425.564423px;}
.x33_c00186{left:427.140000px;}
.x49_c00186{left:430.110000px;}
.x43_c00186{left:440.910000px;}
.x44_c00186{left:444.420000px;}
.x6c_c00186{left:450.012000px;}
.xe_c00186{left:451.440000px;}
.x16_c00186{left:456.030000px;}
.x20_c00186{left:457.380000px;}
.x4_c00186{left:466.020000px;}
.x19_c00186{left:467.910000px;}
.x89_c00186{left:472.011375px;}
.x7d_c00186{left:483.353730px;}
.x6d_c00186{left:495.057000px;}
.x75_c00186{left:497.123033px;}
.x8a_c00186{left:500.364743px;}
.x7e_c00186{left:502.526550px;}
.x91_c00186{left:509.273198px;}
.x4a_c00186{left:510.840000px;}
.x76_c00186{left:516.295853px;}
.x8b_c00186{left:522.506715px;}
.x6e_c00186{left:537.225000px;}
.x5_c00186{left:541.080000px;}
.x92_c00186{left:542.487668px;}
.x7f_c00186{left:561.122235px;}
.x8c_c00186{left:573.272145px;}
.x53_c00186{left:603.450000px;}
.x51_c00186{left:618.570000px;}
.x4b_c00186{left:623.430000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.000000pt;}
.fsd_c00186{font-size:19.600000pt;}
.fs11_c00186{font-size:40.137848pt;}
.fs10_c00186{font-size:42.004725pt;}
.fsf_c00186{font-size:43.871601pt;}
.fse_c00186{font-size:44.800000pt;}
.fs12_c00186{font-size:44.805040pt;}
.fs7_c00186{font-size:58.800000pt;}
.fsb_c00186{font-size:60.666667pt;}
.fsc_c00186{font-size:61.600000pt;}
.fs2_c00186{font-size:62.533333pt;}
.fs6_c00186{font-size:63.466667pt;}
.fs1_c00186{font-size:64.400000pt;}
.fs5_c00186{font-size:65.333333pt;}
.fs4_c00186{font-size:66.266667pt;}
.fs3_c00186{font-size:71.866667pt;}
.fs0_c00186{font-size:77.466667pt;}
.fs13_c00186{font-size:79.333333pt;}
.fs8_c00186{font-size:95.200000pt;}
.fs9_c00186{font-size:126.933333pt;}
.fsa_c00186{font-size:127.866667pt;}
.y0_c00186{bottom:0.000000pt;}
.y65_c00186{bottom:84.229333pt;}
.y66_c00186{bottom:84.934667pt;}
.y67_c00186{bottom:85.801333pt;}
.y68_c00186{bottom:86.892000pt;}
.y69_c00186{bottom:87.318667pt;}
.y64_c00186{bottom:100.862667pt;}
.y5f_c00186{bottom:137.518613pt;}
.y5e_c00186{bottom:137.518727pt;}
.y59_c00186{bottom:137.518733pt;}
.y5c_c00186{bottom:137.518740pt;}
.y5b_c00186{bottom:137.518833pt;}
.y5a_c00186{bottom:137.519040pt;}
.y5d_c00186{bottom:137.519160pt;}
.y57_c00186{bottom:137.519167pt;}
.y56_c00186{bottom:137.519220pt;}
.y58_c00186{bottom:137.519227pt;}
.y60_c00186{bottom:137.519480pt;}
.y63_c00186{bottom:137.519980pt;}
.y61_c00186{bottom:137.520073pt;}
.y62_c00186{bottom:137.520093pt;}
.y54_c00186{bottom:153.111173pt;}
.y53_c00186{bottom:153.111667pt;}
.y55_c00186{bottom:153.111787pt;}
.y52_c00186{bottom:153.112293pt;}
.y4f_c00186{bottom:153.112627pt;}
.y4b_c00186{bottom:153.112693pt;}
.y4d_c00186{bottom:153.112700pt;}
.y51_c00186{bottom:153.112900pt;}
.y4a_c00186{bottom:153.113053pt;}
.y4c_c00186{bottom:153.113060pt;}
.y50_c00186{bottom:153.113107pt;}
.y49_c00186{bottom:153.113147pt;}
.y4e_c00186{bottom:153.113273pt;}
.y46_c00186{bottom:153.113387pt;}
.y48_c00186{bottom:153.113527pt;}
.y47_c00186{bottom:153.113980pt;}
.y40_c00186{bottom:168.748380pt;}
.y3b_c00186{bottom:168.748407pt;}
.y3d_c00186{bottom:168.748467pt;}
.y3f_c00186{bottom:168.748607pt;}
.y42_c00186{bottom:168.748613pt;}
.y39_c00186{bottom:168.748687pt;}
.y44_c00186{bottom:168.748693pt;}
.y3e_c00186{bottom:168.748813pt;}
.y41_c00186{bottom:168.748860pt;}
.y3a_c00186{bottom:168.748880pt;}
.y3c_c00186{bottom:168.748980pt;}
.y43_c00186{bottom:168.749033pt;}
.y38_c00186{bottom:168.749233pt;}
.y45_c00186{bottom:168.749267pt;}
.y37_c00186{bottom:168.749860pt;}
.y32_c00186{bottom:185.059967pt;}
.y33_c00186{bottom:185.060253pt;}
.y29_c00186{bottom:185.060287pt;}
.y34_c00186{bottom:185.060427pt;}
.y2c_c00186{bottom:185.060693pt;}
.y2a_c00186{bottom:185.060727pt;}
.y35_c00186{bottom:185.060733pt;}
.y2b_c00186{bottom:185.060747pt;}
.y28_c00186{bottom:185.060893pt;}
.y2e_c00186{bottom:185.060907pt;}
.y31_c00186{bottom:185.060913pt;}
.y27_c00186{bottom:185.061007pt;}
.y36_c00186{bottom:185.061153pt;}
.y2d_c00186{bottom:185.061247pt;}
.y30_c00186{bottom:185.061427pt;}
.y2f_c00186{bottom:185.061520pt;}
.y26_c00186{bottom:200.053533pt;}
.y25_c00186{bottom:200.615773pt;}
.y24_c00186{bottom:201.216373pt;}
.y23_c00186{bottom:201.478653pt;}
.y22_c00186{bottom:202.036853pt;}
.y21_c00186{bottom:202.649693pt;}
.y20_c00186{bottom:203.401033pt;}
.y1f_c00186{bottom:203.945113pt;}
.y1e_c00186{bottom:204.603953pt;}
.y1d_c00186{bottom:205.032093pt;}
.y1c_c00186{bottom:205.503693pt;}
.y1b_c00186{bottom:205.755873pt;}
.y1a_c00186{bottom:206.040513pt;}
.y19_c00186{bottom:206.241553pt;}
.y18_c00186{bottom:206.641333pt;}
.y17_c00186{bottom:255.249333pt;}
.y16_c00186{bottom:269.641333pt;}
.y15_c00186{bottom:278.440000pt;}
.y14_c00186{bottom:299.882667pt;}
.y13_c00186{bottom:320.485333pt;}
.y12_c00186{bottom:342.184000pt;}
.y11_c00186{bottom:375.065333pt;}
.y10_c00186{bottom:397.861333pt;}
.yf_c00186{bottom:432.826667pt;}
.ye_c00186{bottom:489.098667pt;}
.yd_c00186{bottom:509.280000pt;}
.yc_c00186{bottom:529.521333pt;}
.yb_c00186{bottom:548.748000pt;}
.ya_c00186{bottom:569.694667pt;}
.y9_c00186{bottom:590.148000pt;}
.y8_c00186{bottom:610.442667pt;}
.y7_c00186{bottom:630.816000pt;}
.y6_c00186{bottom:651.214667pt;}
.y5_c00186{bottom:671.512000pt;}
.y4_c00186{bottom:691.996000pt;}
.y3_c00186{bottom:712.985333pt;}
.y2_c00186{bottom:733.709333pt;}
.y1_c00186{bottom:775.029333pt;}
.hf_c00186{height:19.600000pt;}
.h13_c00186{height:40.137848pt;}
.h12_c00186{height:42.004725pt;}
.h11_c00186{height:43.871601pt;}
.h10_c00186{height:44.800000pt;}
.h14_c00186{height:44.805040pt;}
.h9_c00186{height:58.800000pt;}
.hd_c00186{height:60.666667pt;}
.he_c00186{height:61.600000pt;}
.h4_c00186{height:62.533333pt;}
.h8_c00186{height:63.466667pt;}
.h3_c00186{height:64.400000pt;}
.h7_c00186{height:65.333333pt;}
.h6_c00186{height:66.266667pt;}
.h5_c00186{height:71.866667pt;}
.h2_c00186{height:77.466667pt;}
.h15_c00186{height:79.333333pt;}
.ha_c00186{height:95.200000pt;}
.hb_c00186{height:126.933333pt;}
.hc_c00186{height:127.866667pt;}
.h1_c00186{height:893.333333pt;}
.h0_c00186{height:893.466667pt;}
.w0_c00186{width:654.000000pt;}
.x0_c00186{left:0.000000pt;}
.x93_c00186{left:36.960000pt;}
.x64_c00186{left:38.346667pt;}
.x8d_c00186{left:40.562567pt;}
.x80_c00186{left:50.165253pt;}
.x77_c00186{left:52.324233pt;}
.x6f_c00186{left:53.522447pt;}
.x65_c00186{left:64.998667pt;}
.x78_c00186{left:72.726147pt;}
.x94_c00186{left:75.600000pt;}
.x66_c00186{left:78.401333pt;}
.x8e_c00186{left:82.086573pt;}
.x81_c00186{left:83.288713pt;}
.x54_c00186{left:86.400000pt;}
.x67_c00186{left:97.377333pt;}
.x97_c00186{left:101.304000pt;}
.x58_c00186{left:104.400000pt;}
.x70_c00186{left:105.367440pt;}
.x3b_c00186{left:110.880000pt;}
.x8_c00186{left:112.560000pt;}
.x68_c00186{left:114.189333pt;}
.x8f_c00186{left:115.690133pt;}
.xf_c00186{left:119.520000pt;}
.x55_c00186{left:127.680000pt;}
.x82_c00186{left:131.774280pt;}
.x59_c00186{left:137.760000pt;}
.x34_c00186{left:139.200000pt;}
.x90_c00186{left:140.172967pt;}
.x4c_c00186{left:142.320000pt;}
.x29_c00186{left:143.520000pt;}
.x21_c00186{left:144.720000pt;}
.x69_c00186{left:145.629333pt;}
.x83_c00186{left:148.336667pt;}
.x10_c00186{left:151.680000pt;}
.x1a_c00186{left:154.080000pt;}
.x95_c00186{left:156.240000pt;}
.x1_c00186{left:158.160000pt;}
.x3c_c00186{left:160.560000pt;}
.x35_c00186{left:162.960000pt;}
.x45_c00186{left:165.360000pt;}
.x22_c00186{left:172.320000pt;}
.x5d_c00186{left:173.760000pt;}
.x2a_c00186{left:178.800000pt;}
.x9_c00186{left:180.480000pt;}
.x4d_c00186{left:181.680000pt;}
.x79_c00186{left:183.619087pt;}
.x3d_c00186{left:184.800000pt;}
.x1b_c00186{left:185.760000pt;}
.x62_c00186{left:189.360000pt;}
.x11_c00186{left:190.320000pt;}
.x84_c00186{left:192.021153pt;}
.x23_c00186{left:193.200000pt;}
.x36_c00186{left:194.160000pt;}
.xa_c00186{left:199.920000pt;}
.x56_c00186{left:204.480000pt;}
.x1c_c00186{left:212.880000pt;}
.x30_c00186{left:214.800000pt;}
.x5e_c00186{left:217.200000pt;}
.x6a_c00186{left:218.094667pt;}
.x3e_c00186{left:220.560000pt;}
.x7a_c00186{left:222.503827pt;}
.x37_c00186{left:227.280000pt;}
.x12_c00186{left:229.200000pt;}
.x6_c00186{left:231.360000pt;}
.x5c_c00186{left:235.440000pt;}
.x24_c00186{left:240.960000pt;}
.x57_c00186{left:246.480000pt;}
.x85_c00186{left:248.187127pt;}
.x2b_c00186{left:249.120000pt;}
.x13_c00186{left:251.520000pt;}
.x17_c00186{left:254.160000pt;}
.x25_c00186{left:256.800000pt;}
.x5f_c00186{left:257.760000pt;}
.x7_c00186{left:259.440000pt;}
.x7b_c00186{left:260.908467pt;}
.x4e_c00186{left:262.320000pt;}
.x86_c00186{left:267.148720pt;}
.x3f_c00186{left:268.080000pt;}
.x71_c00186{left:270.507267pt;}
.x2c_c00186{left:271.440000pt;}
.x1d_c00186{left:272.640000pt;}
.x63_c00186{left:275.040000pt;}
.x31_c00186{left:276.240000pt;}
.x5a_c00186{left:277.200000pt;}
.x98_c00186{left:279.278667pt;}
.x40_c00186{left:281.040000pt;}
.x26_c00186{left:282.240000pt;}
.x96_c00186{left:286.320000pt;}
.xb_c00186{left:287.760000pt;}
.x2d_c00186{left:289.200000pt;}
.x2_c00186{left:292.080000pt;}
.x87_c00186{left:293.071893pt;}
.x72_c00186{left:295.230160pt;}
.x18_c00186{left:296.880000pt;}
.x14_c00186{left:298.320000pt;}
.x46_c00186{left:300.960000pt;}
.x1e_c00186{left:303.360000pt;}
.x61_c00186{left:304.800000pt;}
.x32_c00186{left:307.200000pt;}
.x4f_c00186{left:312.960000pt;}
.x60_c00186{left:316.080000pt;}
.x38_c00186{left:318.720000pt;}
.x41_c00186{left:320.880000pt;}
.x48_c00186{left:328.080000pt;}
.x73_c00186{left:330.514080pt;}
.x27_c00186{left:332.880000pt;}
.xc_c00186{left:334.560000pt;}
.x15_c00186{left:337.680000pt;}
.x1f_c00186{left:340.080000pt;}
.x39_c00186{left:342.960000pt;}
.x6b_c00186{left:345.312000pt;}
.x88_c00186{left:347.317427pt;}
.x2e_c00186{left:349.200000pt;}
.x52_c00186{left:351.120000pt;}
.x42_c00186{left:352.080000pt;}
.xd_c00186{left:353.040000pt;}
.x3_c00186{left:354.480000pt;}
.x50_c00186{left:357.360000pt;}
.x2f_c00186{left:360.960000pt;}
.x5b_c00186{left:365.760000pt;}
.x3a_c00186{left:366.720000pt;}
.x47_c00186{left:369.600000pt;}
.x28_c00186{left:370.560000pt;}
.x7c_c00186{left:372.761627pt;}
.x74_c00186{left:378.279487pt;}
.x33_c00186{left:379.680000pt;}
.x49_c00186{left:382.320000pt;}
.x43_c00186{left:391.920000pt;}
.x44_c00186{left:395.040000pt;}
.x6c_c00186{left:400.010667pt;}
.xe_c00186{left:401.280000pt;}
.x16_c00186{left:405.360000pt;}
.x20_c00186{left:406.560000pt;}
.x4_c00186{left:414.240000pt;}
.x19_c00186{left:415.920000pt;}
.x89_c00186{left:419.565667pt;}
.x7d_c00186{left:429.647760pt;}
.x6d_c00186{left:440.050667pt;}
.x75_c00186{left:441.887140pt;}
.x8a_c00186{left:444.768660pt;}
.x7e_c00186{left:446.690267pt;}
.x91_c00186{left:452.687287pt;}
.x4a_c00186{left:454.080000pt;}
.x76_c00186{left:458.929647pt;}
.x8b_c00186{left:464.450413pt;}
.x6e_c00186{left:477.533333pt;}
.x5_c00186{left:480.960000pt;}
.x92_c00186{left:482.211260pt;}
.x7f_c00186{left:498.775320pt;}
.x8c_c00186{left:509.575240pt;}
.x53_c00186{left:536.400000pt;}
.x51_c00186{left:549.840000pt;}
.x4b_c00186{left:554.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m19_c00187{transform:matrix(0.009961,-0.000289,0.007247,0.249895,0,0);-ms-transform:matrix(0.009961,-0.000289,0.007247,0.249895,0,0);-webkit-transform:matrix(0.009961,-0.000289,0.007247,0.249895,0,0);}
.m1b_c00187{transform:matrix(0.011440,-0.000332,0.007247,0.249895,0,0);-ms-transform:matrix(0.011440,-0.000332,0.007247,0.249895,0,0);-webkit-transform:matrix(0.011440,-0.000332,0.007247,0.249895,0,0);}
.m45_c00187{transform:matrix(0.011884,-0.000178,0.003750,0.249972,0,0);-ms-transform:matrix(0.011884,-0.000178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011884,-0.000178,0.003750,0.249972,0,0);}
.m1e_c00187{transform:matrix(0.017375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.023627,-0.000354,0.003750,0.249972,0,0);-ms-transform:matrix(0.023627,-0.000354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.023627,-0.000354,0.003750,0.249972,0,0);}
.m98_c00187{transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.107890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107890,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.108420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108420,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.132420,-0.001986,0.003750,0.249972,0,0);-ms-transform:matrix(0.132420,-0.001986,0.003750,0.249972,0,0);-webkit-transform:matrix(0.132420,-0.001986,0.003750,0.249972,0,0);}
.m88_c00187{transform:matrix(0.134540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134540,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.137290,-0.002059,0.003750,0.249972,0,0);-ms-transform:matrix(0.137290,-0.002059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137290,-0.002059,0.003750,0.249972,0,0);}
.m6e_c00187{transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.140164,-0.002102,0.003750,0.249972,0,0);-ms-transform:matrix(0.140164,-0.002102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.140164,-0.002102,0.003750,0.249972,0,0);}
.mb_c00187{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);}
.m7c_c00187{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);}
.m44_c00187{transform:matrix(0.148558,-0.002228,0.003750,0.249972,0,0);-ms-transform:matrix(0.148558,-0.002228,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148558,-0.002228,0.003750,0.249972,0,0);}
.m5a_c00187{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);}
.m7f_c00187{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);}
.m42_c00187{transform:matrix(0.150848,-0.002263,0.003750,0.249972,0,0);-ms-transform:matrix(0.150848,-0.002263,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150848,-0.002263,0.003750,0.249972,0,0);}
.m18_c00187{transform:matrix(0.152216,-0.004414,0.007247,0.249895,0,0);-ms-transform:matrix(0.152216,-0.004414,0.007247,0.249895,0,0);-webkit-transform:matrix(0.152216,-0.004414,0.007247,0.249895,0,0);}
.m40_c00187{transform:matrix(0.155513,-0.002333,0.003750,0.249972,0,0);-ms-transform:matrix(0.155513,-0.002333,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155513,-0.002333,0.003750,0.249972,0,0);}
.m3d_c00187{transform:matrix(0.160022,-0.002400,0.003750,0.249972,0,0);-ms-transform:matrix(0.160022,-0.002400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160022,-0.002400,0.003750,0.249972,0,0);}
.m8a_c00187{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);}
.m21_c00187{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);}
.m84_c00187{transform:matrix(0.161305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161305,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{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);}
.m87_c00187{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);}
.m7d_c00187{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);}
.m57_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);}
.m53_c00187{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{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);}
.m5b_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);}
.m8d_c00187{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);}
.m11_c00187{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);}
.m50_c00187{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);}
.m89_c00187{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);}
.m8b_c00187{transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{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);}
.m9_c00187{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);}
.m65_c00187{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);}
.m39_c00187{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);}
.m93_c00187{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);}
.ma7_c00187{transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{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);}
.m8_c00187{transform:matrix(0.171090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171090,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{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);}
.ma5_c00187{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);}
.m7e_c00187{transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{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);}
.m3f_c00187{transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);}
.m5c_c00187{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);}
.m43_c00187{transform:matrix(0.174620,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174620,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174620,-0.002619,0.003750,0.249972,0,0);}
.m83_c00187{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);}
.m24_c00187{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);}
.m5d_c00187{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);}
.m81_c00187{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);}
.m64_c00187{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);}
.m3a_c00187{transform:matrix(0.177745,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177745,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177745,-0.002666,0.003750,0.249972,0,0);}
.m63_c00187{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);}
.m8c_c00187{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);}
.m1c_c00187{transform:matrix(0.182498,-0.005292,0.007247,0.249895,0,0);-ms-transform:matrix(0.182498,-0.005292,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182498,-0.005292,0.007247,0.249895,0,0);}
.m5f_c00187{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);}
.m54_c00187{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);}
.m4b_c00187{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{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);}
.me_c00187{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);}
.m33_c00187{transform:matrix(0.186664,-0.002800,0.003750,0.249972,0,0);-ms-transform:matrix(0.186664,-0.002800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186664,-0.002800,0.003750,0.249972,0,0);}
.m46_c00187{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);}
.m85_c00187{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);}
.m9c_c00187{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);}
.m5_c00187{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);}
.m68_c00187{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);}
.m94_c00187{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);}
.m62_c00187{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);}
.m82_c00187{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);}
.ma4_c00187{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);}
.m55_c00187{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);}
.ma6_c00187{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);}
.m9a_c00187{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);}
.m90_c00187{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);}
.m67_c00187{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);}
.m10_c00187{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);}
.m9d_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);}
.m20_c00187{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);}
.m3c_c00187{transform:matrix(0.195243,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195243,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195243,-0.002929,0.003750,0.249972,0,0);}
.m61_c00187{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);}
.m2b_c00187{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);}
.m75_c00187{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);}
.m5e_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);}
.m4c_c00187{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);}
.m49_c00187{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);}
.m59_c00187{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);}
.m32_c00187{transform:matrix(0.201112,-0.003017,0.003750,0.249972,0,0);-ms-transform:matrix(0.201112,-0.003017,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201112,-0.003017,0.003750,0.249972,0,0);}
.m9b_c00187{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);}
.m9e_c00187{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);}
.m6a_c00187{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);}
.m4d_c00187{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);}
.m6d_c00187{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);}
.m72_c00187{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);}
.m97_c00187{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);}
.m16_c00187{transform:matrix(0.205294,-0.005954,0.007247,0.249895,0,0);-ms-transform:matrix(0.205294,-0.005954,0.007247,0.249895,0,0);-webkit-transform:matrix(0.205294,-0.005954,0.007247,0.249895,0,0);}
.m96_c00187{transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{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);}
.m91_c00187{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);}
.m1f_c00187{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);}
.m8f_c00187{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);}
.m77_c00187{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);}
.m92_c00187{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);}
.m6_c00187{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);}
.m4_c00187{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);}
.m3b_c00187{transform:matrix(0.208607,-0.003129,0.003750,0.249972,0,0);-ms-transform:matrix(0.208607,-0.003129,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208607,-0.003129,0.003750,0.249972,0,0);}
.m6c_c00187{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);}
.m25_c00187{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);}
.ma2_c00187{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);}
.m99_c00187{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);}
.m80_c00187{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);}
.m70_c00187{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);}
.m71_c00187{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);}
.m69_c00187{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);}
.m9f_c00187{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);}
.m23_c00187{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);}
.m76_c00187{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);}
.m2a_c00187{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);}
.m2e_c00187{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);}
.m56_c00187{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);}
.m58_c00187{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);}
.m17_c00187{transform:matrix(0.231233,-0.006706,0.007247,0.249895,0,0);-ms-transform:matrix(0.231233,-0.006706,0.007247,0.249895,0,0);-webkit-transform:matrix(0.231233,-0.006706,0.007247,0.249895,0,0);}
.m52_c00187{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);}
.m8e_c00187{transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{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);}
.m1a_c00187{transform:matrix(0.239869,-0.006956,0.007247,0.249895,0,0);-ms-transform:matrix(0.239869,-0.006956,0.007247,0.249895,0,0);-webkit-transform:matrix(0.239869,-0.006956,0.007247,0.249895,0,0);}
.m51_c00187{transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240440,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{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);}
.m37_c00187{transform:matrix(0.252317,-0.003785,0.003750,0.249972,0,0);-ms-transform:matrix(0.252317,-0.003785,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252317,-0.003785,0.003750,0.249972,0,0);}
.m78_c00187{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);}
.m2_c00187{transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267985,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296965,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.301615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301615,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.305860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305860,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.310140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310140,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.310155,-0.004652,0.003750,0.249972,0,0);-ms-transform:matrix(0.310155,-0.004652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.310155,-0.004652,0.003750,0.249972,0,0);}
.m2d_c00187{transform:matrix(0.315965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.325465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325465,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.330771,-0.009592,0.007247,0.249895,0,0);-ms-transform:matrix(0.330771,-0.009592,0.007247,0.249895,0,0);-webkit-transform:matrix(0.330771,-0.009592,0.007247,0.249895,0,0);}
.ma_c00187{transform:matrix(0.335990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335990,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.341450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341450,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347675,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{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);}
.m95_c00187{transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.369168,-0.005538,0.003750,0.249972,0,0);-ms-transform:matrix(0.369168,-0.005538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.369168,-0.005538,0.003750,0.249972,0,0);}
.m15_c00187{transform:matrix(0.389561,-0.011297,0.007247,0.249895,0,0);-ms-transform:matrix(0.389561,-0.011297,0.007247,0.249895,0,0);-webkit-transform:matrix(0.389561,-0.011297,0.007247,0.249895,0,0);}
.m22_c00187{transform:matrix(0.395420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395420,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.411580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411580,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.434310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434310,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.443445,-0.006652,0.003750,0.249972,0,0);-ms-transform:matrix(0.443445,-0.006652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.443445,-0.006652,0.003750,0.249972,0,0);}
.m3e_c00187{transform:matrix(0.449814,-0.006747,0.003750,0.249972,0,0);-ms-transform:matrix(0.449814,-0.006747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.449814,-0.006747,0.003750,0.249972,0,0);}
.ma8_c00187{transform:matrix(0.522145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522145,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.552605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00187{transform:matrix(0.585090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585090,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.765005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765005,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.974760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.974760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.974760,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;}
.fsf_c00187{font-size:46.200000px;}
.fs10_c00187{font-size:51.450000px;}
.fs13_c00187{font-size:52.500000px;}
.fs11_c00187{font-size:53.550000px;}
.fs15_c00187{font-size:54.600000px;}
.fs12_c00187{font-size:57.750000px;}
.fs14_c00187{font-size:58.800000px;}
.fs1_c00187{font-size:70.350000px;}
.fs2_c00187{font-size:71.400000px;}
.fse_c00187{font-size:73.500000px;}
.fsd_c00187{font-size:74.550000px;}
.fs6_c00187{font-size:75.600000px;}
.fs9_c00187{font-size:76.658623px;}
.fs3_c00187{font-size:76.682225px;}
.fs5_c00187{font-size:77.700000px;}
.fsa_c00187{font-size:77.708741px;}
.fsb_c00187{font-size:78.758859px;}
.fsc_c00187{font-size:81.909213px;}
.fs4_c00187{font-size:85.085756px;}
.fs7_c00187{font-size:91.350000px;}
.fs0_c00187{font-size:96.600000px;}
.fs8_c00187{font-size:98.700000px;}
.y0_c00187{bottom:0.000000px;}
.y39_c00187{bottom:161.365500px;}
.y38_c00187{bottom:178.950000px;}
.y37_c00187{bottom:197.038500px;}
.y36_c00187{bottom:214.860000px;}
.y35_c00187{bottom:233.245500px;}
.y34_c00187{bottom:290.265000px;}
.y33_c00187{bottom:308.340000px;}
.y32_c00187{bottom:326.160000px;}
.y31_c00187{bottom:354.160500px;}
.y30_c00187{bottom:378.918000px;}
.y2f_c00187{bottom:401.623500px;}
.y28_c00187{bottom:426.596182px;}
.y29_c00187{bottom:427.152030px;}
.y2a_c00187{bottom:427.475797px;}
.y2b_c00187{bottom:427.747372px;}
.y2c_c00187{bottom:428.236485px;}
.y2d_c00187{bottom:428.801805px;}
.y2e_c00187{bottom:431.441955px;}
.y27_c00187{bottom:452.375437px;}
.y25_c00187{bottom:476.636400px;}
.y26_c00187{bottom:476.636655px;}
.y20_c00187{bottom:476.636715px;}
.y24_c00187{bottom:476.637112px;}
.y21_c00187{bottom:476.637420px;}
.y23_c00187{bottom:476.637630px;}
.y22_c00187{bottom:476.637975px;}
.y1d_c00187{bottom:497.608747px;}
.y1e_c00187{bottom:498.945997px;}
.y1f_c00187{bottom:499.155015px;}
.y19_c00187{bottom:518.137500px;}
.y1a_c00187{bottom:519.233205px;}
.y1b_c00187{bottom:519.559477px;}
.y1c_c00187{bottom:520.883850px;}
.y18_c00187{bottom:544.600500px;}
.y13_c00187{bottom:564.021000px;}
.y14_c00187{bottom:565.912500px;}
.y15_c00187{bottom:567.763500px;}
.y16_c00187{bottom:568.203000px;}
.y17_c00187{bottom:568.680000px;}
.y12_c00187{bottom:590.676000px;}
.y11_c00187{bottom:612.403500px;}
.y10_c00187{bottom:635.997000px;}
.yf_c00187{bottom:659.445000px;}
.yb_c00187{bottom:672.571148px;}
.yc_c00187{bottom:674.519106px;}
.yd_c00187{bottom:678.681753px;}
.ye_c00187{bottom:679.757483px;}
.y6_c00187{bottom:700.668000px;}
.y7_c00187{bottom:702.831908px;}
.y8_c00187{bottom:703.592114px;}
.y9_c00187{bottom:705.599247px;}
.ya_c00187{bottom:708.106978px;}
.y5_c00187{bottom:728.910000px;}
.y4_c00187{bottom:753.319500px;}
.y3_c00187{bottom:775.789500px;}
.y2_c00187{bottom:802.455000px;}
.y1_c00187{bottom:826.827000px;}
.h11_c00187{height:46.200000px;}
.h12_c00187{height:51.450000px;}
.h15_c00187{height:52.500000px;}
.h13_c00187{height:53.550000px;}
.h17_c00187{height:54.600000px;}
.h14_c00187{height:57.750000px;}
.h16_c00187{height:58.800000px;}
.h3_c00187{height:70.350000px;}
.h4_c00187{height:71.400000px;}
.h10_c00187{height:73.500000px;}
.hf_c00187{height:74.550000px;}
.h8_c00187{height:75.600000px;}
.hb_c00187{height:76.658623px;}
.h5_c00187{height:76.682225px;}
.h7_c00187{height:77.700000px;}
.hc_c00187{height:77.708741px;}
.hd_c00187{height:78.758859px;}
.he_c00187{height:81.909213px;}
.h6_c00187{height:85.085756px;}
.h9_c00187{height:91.350000px;}
.h2_c00187{height:96.600000px;}
.ha_c00187{height:98.700000px;}
.h0_c00187{height:1008.450000px;}
.h1_c00187{height:1008.750000px;}
.w0_c00187{width:678.450000px;}
.w1_c00187{width:678.750000px;}
.x0_c00187{left:0.000000px;}
.xd_c00187{left:79.650000px;}
.x1_c00187{left:82.620000px;}
.x19_c00187{left:85.003638px;}
.x13_c00187{left:88.290000px;}
.x3_c00187{left:89.370000px;}
.x4f_c00187{left:96.120000px;}
.x15_c00187{left:104.028000px;}
.x59_c00187{left:143.640000px;}
.x50_c00187{left:145.800000px;}
.x1a_c00187{left:157.144314px;}
.x29_c00187{left:158.832000px;}
.x3e_c00187{left:163.080000px;}
.x76_c00187{left:165.510000px;}
.x6f_c00187{left:177.930000px;}
.x4_c00187{left:179.550000px;}
.x22_c00187{left:181.170000px;}
.x5a_c00187{left:182.520000px;}
.x77_c00187{left:187.920000px;}
.x64_c00187{left:190.080000px;}
.x5_c00187{left:196.560000px;}
.x70_c00187{left:198.990000px;}
.x16_c00187{left:204.859500px;}
.x5b_c00187{left:210.870000px;}
.x34_c00187{left:213.580223px;}
.x6_c00187{left:220.320000px;}
.x65_c00187{left:221.670000px;}
.x28_c00187{left:229.503000px;}
.x35_c00187{left:232.664160px;}
.x51_c00187{left:237.060000px;}
.x5c_c00187{left:242.460000px;}
.x7_c00187{left:245.700000px;}
.x36_c00187{left:248.668688px;}
.x41_c00187{left:252.450000px;}
.x71_c00187{left:254.070000px;}
.x46_c00187{left:255.420000px;}
.x27_c00187{left:259.590000px;}
.x42_c00187{left:261.630000px;}
.x66_c00187{left:264.870000px;}
.x2a_c00187{left:268.875000px;}
.x49_c00187{left:272.430000px;}
.x17_c00187{left:274.071000px;}
.x37_c00187{left:277.475333px;}
.x23_c00187{left:283.230000px;}
.x8_c00187{left:289.440000px;}
.x78_c00187{left:293.760000px;}
.x2_c00187{left:300.780000px;}
.x9_c00187{left:302.670000px;}
.xb_c00187{left:303.750000px;}
.x25_c00187{left:305.370000px;}
.x2b_c00187{left:307.089090px;}
.x39_c00187{left:308.340000px;}
.x14_c00187{left:309.690000px;}
.x1b_c00187{left:311.296231px;}
.x33_c00187{left:312.684750px;}
.x21_c00187{left:313.740000px;}
.x4a_c00187{left:314.820000px;}
.x47_c00187{left:320.490000px;}
.x43_c00187{left:321.570000px;}
.x67_c00187{left:324.810000px;}
.x4b_c00187{left:326.970000px;}
.xa_c00187{left:329.670000px;}
.x24_c00187{left:332.640000px;}
.x79_c00187{left:334.530000px;}
.x1d_c00187{left:337.500000px;}
.xc_c00187{left:339.390000px;}
.x26_c00187{left:341.010000px;}
.x4c_c00187{left:347.490000px;}
.x2c_c00187{left:349.947795px;}
.x1c_c00187{left:351.134037px;}
.x18_c00187{left:360.544500px;}
.x48_c00187{left:365.040000px;}
.x44_c00187{left:366.660000px;}
.x2d_c00187{left:370.199340px;}
.x3a_c00187{left:375.030000px;}
.x4d_c00187{left:378.540000px;}
.x68_c00187{left:380.430000px;}
.x45_c00187{left:382.320000px;}
.x52_c00187{left:383.400000px;}
.x1e_c00187{left:386.910000px;}
.x53_c00187{left:396.360000px;}
.x7a_c00187{left:397.440000px;}
.x4e_c00187{left:401.490000px;}
.x2e_c00187{left:403.143743px;}
.x5d_c00187{left:405.270000px;}
.xe_c00187{left:406.890000px;}
.x3b_c00187{left:409.860000px;}
.x3f_c00187{left:412.560000px;}
.xf_c00187{left:428.490000px;}
.x2f_c00187{left:431.227065px;}
.x7b_c00187{left:443.340000px;}
.x10_c00187{left:444.960000px;}
.x69_c00187{left:446.040000px;}
.x54_c00187{left:454.140000px;}
.x3c_c00187{left:459.810000px;}
.x72_c00187{left:460.890000px;}
.x6a_c00187{left:461.970000px;}
.x38_c00187{left:466.067685px;}
.x1f_c00187{left:467.370000px;}
.x30_c00187{left:472.001745px;}
.x5e_c00187{left:476.280000px;}
.x3d_c00187{left:483.570000px;}
.x55_c00187{left:486.540000px;}
.x20_c00187{left:495.450000px;}
.x5f_c00187{left:498.690000px;}
.x6b_c00187{left:506.250000px;}
.x11_c00187{left:511.650000px;}
.x56_c00187{left:513.270000px;}
.x73_c00187{left:517.320000px;}
.x60_c00187{left:524.340000px;}
.x74_c00187{left:527.850000px;}
.x6c_c00187{left:528.930000px;}
.x12_c00187{left:541.620000px;}
.x31_c00187{left:544.370535px;}
.x7c_c00187{left:547.560000px;}
.x61_c00187{left:552.690000px;}
.x57_c00187{left:557.010000px;}
.x7d_c00187{left:565.650000px;}
.x32_c00187{left:567.592755px;}
.x6d_c00187{left:569.430000px;}
.x40_c00187{left:574.290000px;}
.x62_c00187{left:581.040000px;}
.x58_c00187{left:591.300000px;}
.x75_c00187{left:595.350000px;}
.x6e_c00187{left:607.230000px;}
.x63_c00187{left:613.440000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:0.000000pt;}
.fsf_c00187{font-size:41.066667pt;}
.fs10_c00187{font-size:45.733333pt;}
.fs13_c00187{font-size:46.666667pt;}
.fs11_c00187{font-size:47.600000pt;}
.fs15_c00187{font-size:48.533333pt;}
.fs12_c00187{font-size:51.333333pt;}
.fs14_c00187{font-size:52.266667pt;}
.fs1_c00187{font-size:62.533333pt;}
.fs2_c00187{font-size:63.466667pt;}
.fse_c00187{font-size:65.333333pt;}
.fsd_c00187{font-size:66.266667pt;}
.fs6_c00187{font-size:67.200000pt;}
.fs9_c00187{font-size:68.140998pt;}
.fs3_c00187{font-size:68.161977pt;}
.fs5_c00187{font-size:69.066667pt;}
.fsa_c00187{font-size:69.074436pt;}
.fsb_c00187{font-size:70.007875pt;}
.fsc_c00187{font-size:72.808190pt;}
.fs4_c00187{font-size:75.631783pt;}
.fs7_c00187{font-size:81.200000pt;}
.fs0_c00187{font-size:85.866667pt;}
.fs8_c00187{font-size:87.733333pt;}
.y0_c00187{bottom:0.000000pt;}
.y39_c00187{bottom:143.436000pt;}
.y38_c00187{bottom:159.066667pt;}
.y37_c00187{bottom:175.145333pt;}
.y36_c00187{bottom:190.986667pt;}
.y35_c00187{bottom:207.329333pt;}
.y34_c00187{bottom:258.013333pt;}
.y33_c00187{bottom:274.080000pt;}
.y32_c00187{bottom:289.920000pt;}
.y31_c00187{bottom:314.809333pt;}
.y30_c00187{bottom:336.816000pt;}
.y2f_c00187{bottom:356.998667pt;}
.y28_c00187{bottom:379.196607pt;}
.y29_c00187{bottom:379.690693pt;}
.y2a_c00187{bottom:379.978487pt;}
.y2b_c00187{bottom:380.219887pt;}
.y2c_c00187{bottom:380.654653pt;}
.y2d_c00187{bottom:381.157160pt;}
.y2e_c00187{bottom:383.503960pt;}
.y27_c00187{bottom:402.111500pt;}
.y25_c00187{bottom:423.676800pt;}
.y26_c00187{bottom:423.677027pt;}
.y20_c00187{bottom:423.677080pt;}
.y24_c00187{bottom:423.677433pt;}
.y21_c00187{bottom:423.677707pt;}
.y23_c00187{bottom:423.677893pt;}
.y22_c00187{bottom:423.678200pt;}
.y1d_c00187{bottom:442.318887pt;}
.y1e_c00187{bottom:443.507553pt;}
.y1f_c00187{bottom:443.693347pt;}
.y19_c00187{bottom:460.566667pt;}
.y1a_c00187{bottom:461.540627pt;}
.y1b_c00187{bottom:461.830647pt;}
.y1c_c00187{bottom:463.007867pt;}
.y18_c00187{bottom:484.089333pt;}
.y13_c00187{bottom:501.352000pt;}
.y14_c00187{bottom:503.033333pt;}
.y15_c00187{bottom:504.678667pt;}
.y16_c00187{bottom:505.069333pt;}
.y17_c00187{bottom:505.493333pt;}
.y12_c00187{bottom:525.045333pt;}
.y11_c00187{bottom:544.358667pt;}
.y10_c00187{bottom:565.330667pt;}
.yf_c00187{bottom:586.173333pt;}
.yb_c00187{bottom:597.841020pt;}
.yc_c00187{bottom:599.572539pt;}
.yd_c00187{bottom:603.272669pt;}
.ye_c00187{bottom:604.228873pt;}
.y6_c00187{bottom:622.816000pt;}
.y7_c00187{bottom:624.739473pt;}
.y8_c00187{bottom:625.415212pt;}
.y9_c00187{bottom:627.199331pt;}
.ya_c00187{bottom:629.428425pt;}
.y5_c00187{bottom:647.920000pt;}
.y4_c00187{bottom:669.617333pt;}
.y3_c00187{bottom:689.590667pt;}
.y2_c00187{bottom:713.293333pt;}
.y1_c00187{bottom:734.957333pt;}
.h11_c00187{height:41.066667pt;}
.h12_c00187{height:45.733333pt;}
.h15_c00187{height:46.666667pt;}
.h13_c00187{height:47.600000pt;}
.h17_c00187{height:48.533333pt;}
.h14_c00187{height:51.333333pt;}
.h16_c00187{height:52.266667pt;}
.h3_c00187{height:62.533333pt;}
.h4_c00187{height:63.466667pt;}
.h10_c00187{height:65.333333pt;}
.hf_c00187{height:66.266667pt;}
.h8_c00187{height:67.200000pt;}
.hb_c00187{height:68.140998pt;}
.h5_c00187{height:68.161977pt;}
.h7_c00187{height:69.066667pt;}
.hc_c00187{height:69.074436pt;}
.hd_c00187{height:70.007875pt;}
.he_c00187{height:72.808190pt;}
.h6_c00187{height:75.631783pt;}
.h9_c00187{height:81.200000pt;}
.h2_c00187{height:85.866667pt;}
.ha_c00187{height:87.733333pt;}
.h0_c00187{height:896.400000pt;}
.h1_c00187{height:896.666667pt;}
.w0_c00187{width:603.066667pt;}
.w1_c00187{width:603.333333pt;}
.x0_c00187{left:0.000000pt;}
.xd_c00187{left:70.800000pt;}
.x1_c00187{left:73.440000pt;}
.x19_c00187{left:75.558789pt;}
.x13_c00187{left:78.480000pt;}
.x3_c00187{left:79.440000pt;}
.x4f_c00187{left:85.440000pt;}
.x15_c00187{left:92.469333pt;}
.x59_c00187{left:127.680000pt;}
.x50_c00187{left:129.600000pt;}
.x1a_c00187{left:139.683835pt;}
.x29_c00187{left:141.184000pt;}
.x3e_c00187{left:144.960000pt;}
.x76_c00187{left:147.120000pt;}
.x6f_c00187{left:158.160000pt;}
.x4_c00187{left:159.600000pt;}
.x22_c00187{left:161.040000pt;}
.x5a_c00187{left:162.240000pt;}
.x77_c00187{left:167.040000pt;}
.x64_c00187{left:168.960000pt;}
.x5_c00187{left:174.720000pt;}
.x70_c00187{left:176.880000pt;}
.x16_c00187{left:182.097333pt;}
.x5b_c00187{left:187.440000pt;}
.x34_c00187{left:189.849087pt;}
.x6_c00187{left:195.840000pt;}
.x65_c00187{left:197.040000pt;}
.x28_c00187{left:204.002667pt;}
.x35_c00187{left:206.812587pt;}
.x51_c00187{left:210.720000pt;}
.x5c_c00187{left:215.520000pt;}
.x7_c00187{left:218.400000pt;}
.x36_c00187{left:221.038833pt;}
.x41_c00187{left:224.400000pt;}
.x71_c00187{left:225.840000pt;}
.x46_c00187{left:227.040000pt;}
.x27_c00187{left:230.746667pt;}
.x42_c00187{left:232.560000pt;}
.x66_c00187{left:235.440000pt;}
.x2a_c00187{left:239.000000pt;}
.x49_c00187{left:242.160000pt;}
.x17_c00187{left:243.618667pt;}
.x37_c00187{left:246.644740pt;}
.x23_c00187{left:251.760000pt;}
.x8_c00187{left:257.280000pt;}
.x78_c00187{left:261.120000pt;}
.x2_c00187{left:267.360000pt;}
.x9_c00187{left:269.040000pt;}
.xb_c00187{left:270.000000pt;}
.x25_c00187{left:271.440000pt;}
.x2b_c00187{left:272.968080pt;}
.x39_c00187{left:274.080000pt;}
.x14_c00187{left:275.280000pt;}
.x1b_c00187{left:276.707761pt;}
.x33_c00187{left:277.942000pt;}
.x21_c00187{left:278.880000pt;}
.x4a_c00187{left:279.840000pt;}
.x47_c00187{left:284.880000pt;}
.x43_c00187{left:285.840000pt;}
.x67_c00187{left:288.720000pt;}
.x4b_c00187{left:290.640000pt;}
.xa_c00187{left:293.040000pt;}
.x24_c00187{left:295.680000pt;}
.x79_c00187{left:297.360000pt;}
.x1d_c00187{left:300.000000pt;}
.xc_c00187{left:301.680000pt;}
.x26_c00187{left:303.120000pt;}
.x4c_c00187{left:308.880000pt;}
.x2c_c00187{left:311.064707pt;}
.x1c_c00187{left:312.119144pt;}
.x18_c00187{left:320.484000pt;}
.x48_c00187{left:324.480000pt;}
.x44_c00187{left:325.920000pt;}
.x2d_c00187{left:329.066080pt;}
.x3a_c00187{left:333.360000pt;}
.x4d_c00187{left:336.480000pt;}
.x68_c00187{left:338.160000pt;}
.x45_c00187{left:339.840000pt;}
.x52_c00187{left:340.800000pt;}
.x1e_c00187{left:343.920000pt;}
.x53_c00187{left:352.320000pt;}
.x7a_c00187{left:353.280000pt;}
.x4e_c00187{left:356.880000pt;}
.x2e_c00187{left:358.349993pt;}
.x5d_c00187{left:360.240000pt;}
.xe_c00187{left:361.680000pt;}
.x3b_c00187{left:364.320000pt;}
.x3f_c00187{left:366.720000pt;}
.xf_c00187{left:380.880000pt;}
.x2f_c00187{left:383.312947pt;}
.x7b_c00187{left:394.080000pt;}
.x10_c00187{left:395.520000pt;}
.x69_c00187{left:396.480000pt;}
.x54_c00187{left:403.680000pt;}
.x3c_c00187{left:408.720000pt;}
.x72_c00187{left:409.680000pt;}
.x6a_c00187{left:410.640000pt;}
.x38_c00187{left:414.282387pt;}
.x1f_c00187{left:415.440000pt;}
.x30_c00187{left:419.557107pt;}
.x5e_c00187{left:423.360000pt;}
.x3d_c00187{left:429.840000pt;}
.x55_c00187{left:432.480000pt;}
.x20_c00187{left:440.400000pt;}
.x5f_c00187{left:443.280000pt;}
.x6b_c00187{left:450.000000pt;}
.x11_c00187{left:454.800000pt;}
.x56_c00187{left:456.240000pt;}
.x73_c00187{left:459.840000pt;}
.x60_c00187{left:466.080000pt;}
.x74_c00187{left:469.200000pt;}
.x6c_c00187{left:470.160000pt;}
.x12_c00187{left:481.440000pt;}
.x31_c00187{left:483.884920pt;}
.x7c_c00187{left:486.720000pt;}
.x61_c00187{left:491.280000pt;}
.x57_c00187{left:495.120000pt;}
.x7d_c00187{left:502.800000pt;}
.x32_c00187{left:504.526893pt;}
.x6d_c00187{left:506.160000pt;}
.x40_c00187{left:510.480000pt;}
.x62_c00187{left:516.480000pt;}
.x58_c00187{left:525.600000pt;}
.x75_c00187{left:529.200000pt;}
.x6e_c00187{left:539.760000pt;}
.x63_c00187{left:545.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mf_c00188{transform:matrix(0.007740,0.000287,-0.009253,0.249829,0,0);-ms-transform:matrix(0.007740,0.000287,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.007740,0.000287,-0.009253,0.249829,0,0);}
.m1e_c00188{transform:matrix(0.010079,0.000131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010079,0.000131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010079,0.000131,-0.003250,0.249979,0,0);}
.m2d_c00188{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);}
.m32_c00188{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);}
.md1_c00188{transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.018919,0.000189,-0.002500,0.249988,0,0);}
.mde_c00188{transform:matrix(0.042308,0.000423,-0.002500,0.249988,0,0);-ms-transform:matrix(0.042308,0.000423,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.042308,0.000423,-0.002500,0.249988,0,0);}
.m111_c00188{transform:matrix(0.044508,0.000401,-0.002250,0.249990,0,0);-ms-transform:matrix(0.044508,0.000401,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.044508,0.000401,-0.002250,0.249990,0,0);}
.mc_c00188{transform:matrix(0.095516,0.001337,-0.003500,0.249976,0,0);-ms-transform:matrix(0.095516,0.001337,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.095516,0.001337,-0.003500,0.249976,0,0);}
.m7b_c00188{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);}
.m5d_c00188{transform:matrix(0.125465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125465,0.000000,0.000000,0.250000,0,0);}
.mce_c00188{transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142040,0.000000,0.000000,0.250000,0,0);}
.me5_c00188{transform:matrix(0.142848,0.001428,-0.002500,0.249988,0,0);-ms-transform:matrix(0.142848,0.001428,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.142848,0.001428,-0.002500,0.249988,0,0);}
.me6_c00188{transform:matrix(0.144138,0.001441,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144138,0.001441,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144138,0.001441,-0.002500,0.249988,0,0);}
.m5e_c00188{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00188{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);}
.m77_c00188{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);}
.mb3_c00188{transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);}
.ma7_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);}
.m28_c00188{transform:matrix(0.154377,0.002007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154377,0.002007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154377,0.002007,-0.003250,0.249979,0,0);}
.m26_c00188{transform:matrix(0.154497,0.002008,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154497,0.002008,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154497,0.002008,-0.003250,0.249979,0,0);}
.m4b_c00188{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);}
.m75_c00188{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);}
.m8a_c00188{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);}
.m27_c00188{transform:matrix(0.161731,0.002103,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161731,0.002103,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161731,0.002103,-0.003250,0.249979,0,0);}
.m7f_c00188{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);}
.mf5_c00188{transform:matrix(0.162477,0.001625,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162477,0.001625,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162477,0.001625,-0.002500,0.249988,0,0);}
.mcb_c00188{transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162670,0.000000,0.000000,0.250000,0,0);}
.mad_c00188{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);}
.m53_c00188{transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);}
.m81_c00188{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.164681,0.002141,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164681,0.002141,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164681,0.002141,-0.003250,0.249979,0,0);}
.m21_c00188{transform:matrix(0.166886,0.002170,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166886,0.002170,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166886,0.002170,-0.003250,0.249979,0,0);}
.mbd_c00188{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);}
.me0_c00188{transform:matrix(0.167352,0.001674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167352,0.001674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167352,0.001674,-0.002500,0.249988,0,0);}
.m24_c00188{transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);}
.m91_c00188{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);}
.m48_c00188{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);}
.m79_c00188{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);}
.m50_c00188{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);}
.m8e_c00188{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);}
.m6d_c00188{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);}
.m84_c00188{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);}
.m12_c00188{transform:matrix(0.171692,0.006359,-0.009253,0.249829,0,0);-ms-transform:matrix(0.171692,0.006359,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.171692,0.006359,-0.009253,0.249829,0,0);}
.m42_c00188{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);}
.m85_c00188{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);}
.m9c_c00188{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);}
.m4d_c00188{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);}
.m78_c00188{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);}
.m56_c00188{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);}
.mb8_c00188{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);}
.ma1_c00188{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);}
.m47_c00188{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);}
.mbf_c00188{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);}
.mbc_c00188{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);}
.m40_c00188{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);}
.m80_c00188{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);}
.ma5_c00188{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);}
.m7a_c00188{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);}
.m89_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);}
.m17_c00188{transform:matrix(0.180416,0.006682,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180416,0.006682,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180416,0.006682,-0.009253,0.249829,0,0);}
.m6c_c00188{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);}
.mb5_c00188{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);}
.m4a_c00188{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);}
.m11f_c00188{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);}
.ma8_c00188{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);}
.m37_c00188{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);}
.mcc_c00188{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);}
.m6e_c00188{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);}
.m94_c00188{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);}
.m46_c00188{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);}
.m60_c00188{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);}
.m87_c00188{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);}
.mc9_c00188{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);}
.ma_c00188{transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);}
.mc3_c00188{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);}
.m43_c00188{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);}
.m82_c00188{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);}
.m4e_c00188{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);}
.m8c_c00188{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);}
.ma3_c00188{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);}
.m74_c00188{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);}
.m71_c00188{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);}
.m65_c00188{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);}
.m73_c00188{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);}
.m4f_c00188{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_c00188{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);}
.mb4_c00188{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);}
.m93_c00188{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);}
.m10e_c00188{transform:matrix(0.193547,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193547,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193547,0.001742,-0.002250,0.249990,0,0);}
.mb1_c00188{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);}
.m96_c00188{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);}
.m7e_c00188{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);}
.m6a_c00188{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);}
.m9d_c00188{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);}
.m5a_c00188{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);}
.mf6_c00188{transform:matrix(0.196010,0.001960,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196010,0.001960,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196010,0.001960,-0.002500,0.249988,0,0);}
.m9a_c00188{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);}
.m9b_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);}
.ma4_c00188{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);}
.md0_c00188{transform:matrix(0.197895,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197895,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197895,0.001979,-0.002500,0.249988,0,0);}
.m49_c00188{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);}
.m1b_c00188{transform:matrix(0.198593,0.002582,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198593,0.002582,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198593,0.002582,-0.003250,0.249979,0,0);}
.m109_c00188{transform:matrix(0.198752,0.001789,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198752,0.001789,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198752,0.001789,-0.002250,0.249990,0,0);}
.mc4_c00188{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);}
.mb9_c00188{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);}
.m11a_c00188{transform:matrix(0.201122,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201122,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201122,0.001810,-0.002250,0.249990,0,0);}
.m66_c00188{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);}
.m8d_c00188{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);}
.mec_c00188{transform:matrix(0.202180,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202180,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202180,0.002022,-0.002500,0.249988,0,0);}
.m52_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);}
.m23_c00188{transform:matrix(0.203548,0.002646,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203548,0.002646,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203548,0.002646,-0.003250,0.249979,0,0);}
.m99_c00188{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);}
.mf1_c00188{transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204560,0.002046,-0.002500,0.249988,0,0);}
.m70_c00188{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);}
.m6f_c00188{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);}
.m7d_c00188{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);}
.m76_c00188{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);}
.md7_c00188{transform:matrix(0.205945,0.002059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205945,0.002059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205945,0.002059,-0.002500,0.249988,0,0);}
.m1a_c00188{transform:matrix(0.206223,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206223,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206223,0.002681,-0.003250,0.249979,0,0);}
.m72_c00188{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_c00188{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);}
.m9f_c00188{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);}
.m6b_c00188{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_c00188{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);}
.mc8_c00188{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);}
.me9_c00188{transform:matrix(0.208385,0.002084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208385,0.002084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208385,0.002084,-0.002500,0.249988,0,0);}
.mfa_c00188{transform:matrix(0.209085,0.002091,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209085,0.002091,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209085,0.002091,-0.002500,0.249988,0,0);}
.mab_c00188{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);}
.m0_c00188{transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);}
.m22_c00188{transform:matrix(0.209827,0.002728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209827,0.002728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209827,0.002728,-0.003250,0.249979,0,0);}
.m10a_c00188{transform:matrix(0.210621,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210621,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210621,0.001896,-0.002250,0.249990,0,0);}
.me3_c00188{transform:matrix(0.211259,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211259,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211259,0.002113,-0.002500,0.249988,0,0);}
.me4_c00188{transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);}
.m57_c00188{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);}
.mea_c00188{transform:matrix(0.212139,0.002121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212139,0.002121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212139,0.002121,-0.002500,0.249988,0,0);}
.m92_c00188{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);}
.m58_c00188{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);}
.mf9_c00188{transform:matrix(0.212939,0.002129,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212939,0.002129,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212939,0.002129,-0.002500,0.249988,0,0);}
.m114_c00188{transform:matrix(0.213351,0.001920,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213351,0.001920,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213351,0.001920,-0.002250,0.249990,0,0);}
.m7c_c00188{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);}
.m95_c00188{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);}
.m9e_c00188{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);}
.m11e_c00188{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);}
.maa_c00188{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);}
.md2_c00188{transform:matrix(0.214939,0.002149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214939,0.002149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214939,0.002149,-0.002500,0.249988,0,0);}
.mb2_c00188{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);}
.m4c_c00188{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);}
.m2e_c00188{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);}
.m39_c00188{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);}
.mc2_c00188{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);}
.md9_c00188{transform:matrix(0.217394,0.002174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217394,0.002174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217394,0.002174,-0.002500,0.249988,0,0);}
.m38_c00188{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);}
.ma6_c00188{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);}
.mdf_c00188{transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);}
.m51_c00188{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.mcf_c00188{transform:matrix(0.220709,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220709,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220709,0.002207,-0.002500,0.249988,0,0);}
.m98_c00188{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);}
.mdb_c00188{transform:matrix(0.221639,0.002216,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221639,0.002216,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221639,0.002216,-0.002500,0.249988,0,0);}
.mca_c00188{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);}
.mef_c00188{transform:matrix(0.222799,0.002228,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222799,0.002228,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222799,0.002228,-0.002500,0.249988,0,0);}
.ma9_c00188{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);}
.ma0_c00188{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);}
.mc7_c00188{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);}
.m45_c00188{transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.226156,0.002940,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226156,0.002940,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226156,0.002940,-0.003250,0.249979,0,0);}
.mfd_c00188{transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);}
.mb7_c00188{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);}
.m104_c00188{transform:matrix(0.227991,0.002052,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227991,0.002052,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227991,0.002052,-0.002250,0.249990,0,0);}
.m44_c00188{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);}
.m97_c00188{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m118_c00188{transform:matrix(0.228771,0.002059,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228771,0.002059,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228771,0.002059,-0.002250,0.249990,0,0);}
.m83_c00188{transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m107_c00188{transform:matrix(0.230921,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230921,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230921,0.002078,-0.002250,0.249990,0,0);}
.mbe_c00188{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);}
.md8_c00188{transform:matrix(0.232743,0.002327,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232743,0.002327,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232743,0.002327,-0.002500,0.249988,0,0);}
.m18_c00188{transform:matrix(0.232875,0.008625,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232875,0.008625,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232875,0.008625,-0.009253,0.249829,0,0);}
.mc6_c00188{transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.234780,0.003052,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234780,0.003052,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234780,0.003052,-0.003250,0.249979,0,0);}
.m1d_c00188{transform:matrix(0.236240,0.003071,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236240,0.003071,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236240,0.003071,-0.003250,0.249979,0,0);}
.mae_c00188{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.me2_c00188{transform:matrix(0.237433,0.002374,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237433,0.002374,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237433,0.002374,-0.002500,0.249988,0,0);}
.md6_c00188{transform:matrix(0.238693,0.002387,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238693,0.002387,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238693,0.002387,-0.002500,0.249988,0,0);}
.ma2_c00188{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);}
.m10_c00188{transform:matrix(0.240390,0.008903,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240390,0.008903,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240390,0.008903,-0.009253,0.249829,0,0);}
.m55_c00188{transform:matrix(0.241880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241880,0.000000,0.000000,0.250000,0,0);}
.mb6_c00188{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);}
.mc1_c00188{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.md4_c00188{transform:matrix(0.242423,0.002424,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242423,0.002424,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242423,0.002424,-0.002500,0.249988,0,0);}
.m10c_c00188{transform:matrix(0.242455,0.002182,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242455,0.002182,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242455,0.002182,-0.002250,0.249990,0,0);}
.mee_c00188{transform:matrix(0.242623,0.002426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242623,0.002426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242623,0.002426,-0.002500,0.249988,0,0);}
.md5_c00188{transform:matrix(0.242783,0.002428,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242783,0.002428,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242783,0.002428,-0.002500,0.249988,0,0);}
.mdd_c00188{transform:matrix(0.243563,0.002436,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243563,0.002436,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243563,0.002436,-0.002500,0.249988,0,0);}
.m61_c00188{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);}
.m108_c00188{transform:matrix(0.245610,0.002210,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245610,0.002210,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245610,0.002210,-0.002250,0.249990,0,0);}
.mfc_c00188{transform:matrix(0.247268,0.002473,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247268,0.002473,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247268,0.002473,-0.002500,0.249988,0,0);}
.me_c00188{transform:matrix(0.247505,0.009167,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247505,0.009167,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247505,0.009167,-0.009253,0.249829,0,0);}
.mac_c00188{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{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);}
.m3a_c00188{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);}
.m64_c00188{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);}
.mc0_c00188{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);}
.m34_c00188{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);}
.mf4_c00188{transform:matrix(0.253807,0.002538,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253807,0.002538,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253807,0.002538,-0.002500,0.249988,0,0);}
.me8_c00188{transform:matrix(0.254492,0.002545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254492,0.002545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254492,0.002545,-0.002500,0.249988,0,0);}
.m10d_c00188{transform:matrix(0.254930,0.002294,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254930,0.002294,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254930,0.002294,-0.002250,0.249990,0,0);}
.mbb_c00188{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m62_c00188{transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);}
.m112_c00188{transform:matrix(0.261729,0.002356,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261729,0.002356,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261729,0.002356,-0.002250,0.249990,0,0);}
.m10b_c00188{transform:matrix(0.262479,0.002362,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262479,0.002362,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262479,0.002362,-0.002250,0.249990,0,0);}
.m15_c00188{transform:matrix(0.263150,0.009746,-0.009253,0.249829,0,0);-ms-transform:matrix(0.263150,0.009746,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.263150,0.009746,-0.009253,0.249829,0,0);}
.m16_c00188{transform:matrix(0.264124,0.009782,-0.009253,0.249829,0,0);-ms-transform:matrix(0.264124,0.009782,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.264124,0.009782,-0.009253,0.249829,0,0);}
.m29_c00188{transform:matrix(0.265828,0.003456,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265828,0.003456,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265828,0.003456,-0.003250,0.249979,0,0);}
.me1_c00188{transform:matrix(0.267052,0.002671,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267052,0.002671,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267052,0.002671,-0.002500,0.249988,0,0);}
.mfe_c00188{transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);}
.m110_c00188{transform:matrix(0.269469,0.002425,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269469,0.002425,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269469,0.002425,-0.002250,0.249990,0,0);}
.meb_c00188{transform:matrix(0.270436,0.002704,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270436,0.002704,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270436,0.002704,-0.002500,0.249988,0,0);}
.m86_c00188{transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.276778,0.003875,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276778,0.003875,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276778,0.003875,-0.003500,0.249976,0,0);}
.m41_c00188{transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.286292,0.004008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286292,0.004008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286292,0.004008,-0.003500,0.249976,0,0);}
.m63_c00188{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.mf7_c00188{transform:matrix(0.291385,0.002914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291385,0.002914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291385,0.002914,-0.002500,0.249988,0,0);}
.mfb_c00188{transform:matrix(0.291390,0.002914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291390,0.002914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291390,0.002914,-0.002500,0.249988,0,0);}
.mf3_c00188{transform:matrix(0.293675,0.002937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293675,0.002937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293675,0.002937,-0.002500,0.249988,0,0);}
.m11b_c00188{transform:matrix(0.294963,0.002655,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294963,0.002655,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294963,0.002655,-0.002250,0.249990,0,0);}
.maf_c00188{transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);}
.m121_c00188{transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300385,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{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);}
.m2c_c00188{transform:matrix(0.302194,0.003929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302194,0.003929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302194,0.003929,-0.003250,0.249979,0,0);}
.m3d_c00188{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.me7_c00188{transform:matrix(0.305815,0.003058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.305815,0.003058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.305815,0.003058,-0.002500,0.249988,0,0);}
.mdc_c00188{transform:matrix(0.311729,0.003117,-0.002500,0.249988,0,0);-ms-transform:matrix(0.311729,0.003117,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.311729,0.003117,-0.002500,0.249988,0,0);}
.m10f_c00188{transform:matrix(0.313207,0.002819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313207,0.002819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313207,0.002819,-0.002250,0.249990,0,0);}
.m2_c00188{transform:matrix(0.314234,0.004399,-0.003500,0.249976,0,0);-ms-transform:matrix(0.314234,0.004399,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.314234,0.004399,-0.003500,0.249976,0,0);}
.m105_c00188{transform:matrix(0.314422,0.002830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.314422,0.002830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.314422,0.002830,-0.002250,0.249990,0,0);}
.m117_c00188{transform:matrix(0.315192,0.002837,-0.002250,0.249990,0,0);-ms-transform:matrix(0.315192,0.002837,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.315192,0.002837,-0.002250,0.249990,0,0);}
.m33_c00188{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);}
.mf0_c00188{transform:matrix(0.320719,0.003207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.320719,0.003207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.320719,0.003207,-0.002500,0.249988,0,0);}
.m9_c00188{transform:matrix(0.324673,0.004545,-0.003500,0.249976,0,0);-ms-transform:matrix(0.324673,0.004545,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.324673,0.004545,-0.003500,0.249976,0,0);}
.m102_c00188{transform:matrix(0.327464,0.003275,-0.002500,0.249988,0,0);-ms-transform:matrix(0.327464,0.003275,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.327464,0.003275,-0.002500,0.249988,0,0);}
.m113_c00188{transform:matrix(0.328472,0.002956,-0.002250,0.249990,0,0);-ms-transform:matrix(0.328472,0.002956,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.328472,0.002956,-0.002250,0.249990,0,0);}
.mcd_c00188{transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);}
.m120_c00188{transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331595,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333660,0.000000,0.000000,0.250000,0,0);}
.m100_c00188{transform:matrix(0.336088,0.003361,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336088,0.003361,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336088,0.003361,-0.002500,0.249988,0,0);}
.m106_c00188{transform:matrix(0.336601,0.003029,-0.002250,0.249990,0,0);-ms-transform:matrix(0.336601,0.003029,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.336601,0.003029,-0.002250,0.249990,0,0);}
.m115_c00188{transform:matrix(0.340356,0.003063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.340356,0.003063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.340356,0.003063,-0.002250,0.249990,0,0);}
.mff_c00188{transform:matrix(0.355927,0.003559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.355927,0.003559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.355927,0.003559,-0.002500,0.249988,0,0);}
.m69_c00188{transform:matrix(0.355950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00188{transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363080,0.000000,0.000000,0.250000,0,0);}
.mf8_c00188{transform:matrix(0.364677,0.003647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.364677,0.003647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.364677,0.003647,-0.002500,0.249988,0,0);}
.mf2_c00188{transform:matrix(0.378556,0.003786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.378556,0.003786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.378556,0.003786,-0.002500,0.249988,0,0);}
.m19_c00188{transform:matrix(0.382828,0.014179,-0.009253,0.249829,0,0);-ms-transform:matrix(0.382828,0.014179,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.382828,0.014179,-0.009253,0.249829,0,0);}
.mc5_c00188{transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.388557,0.005440,-0.003500,0.249976,0,0);-ms-transform:matrix(0.388557,0.005440,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.388557,0.005440,-0.003500,0.249976,0,0);}
.md3_c00188{transform:matrix(0.389631,0.003896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.389631,0.003896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.389631,0.003896,-0.002500,0.249988,0,0);}
.m116_c00188{transform:matrix(0.395514,0.003560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.395514,0.003560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.395514,0.003560,-0.002250,0.249990,0,0);}
.m14_c00188{transform:matrix(0.402069,0.014891,-0.009253,0.249829,0,0);-ms-transform:matrix(0.402069,0.014891,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.402069,0.014891,-0.009253,0.249829,0,0);}
.m5_c00188{transform:matrix(0.409900,0.005739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.409900,0.005739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.409900,0.005739,-0.003500,0.249976,0,0);}
.mda_c00188{transform:matrix(0.410854,0.004109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.410854,0.004109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.410854,0.004109,-0.002500,0.249988,0,0);}
.m36_c00188{transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);}
.m11d_c00188{transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);}
.m5b_c00188{transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);}
.mba_c00188{transform:matrix(0.445570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445570,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.456752,0.016917,-0.009253,0.249829,0,0);-ms-transform:matrix(0.456752,0.016917,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.456752,0.016917,-0.009253,0.249829,0,0);}
.m2f_c00188{transform:matrix(0.460305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460305,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.470520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470520,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.472035,0.006136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.472035,0.006136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.472035,0.006136,-0.003250,0.249979,0,0);}
.m119_c00188{transform:matrix(0.475231,0.004277,-0.002250,0.249990,0,0);-ms-transform:matrix(0.475231,0.004277,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.475231,0.004277,-0.002250,0.249990,0,0);}
.m11_c00188{transform:matrix(0.488645,0.018098,-0.009253,0.249829,0,0);-ms-transform:matrix(0.488645,0.018098,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.488645,0.018098,-0.009253,0.249829,0,0);}
.m59_c00188{transform:matrix(0.492705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492705,0.000000,0.000000,0.250000,0,0);}
.m103_c00188{transform:matrix(0.503825,0.005038,-0.002500,0.249988,0,0);-ms-transform:matrix(0.503825,0.005038,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.503825,0.005038,-0.002500,0.249988,0,0);}
.m20_c00188{transform:matrix(0.532115,0.006917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.532115,0.006917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.532115,0.006917,-0.003250,0.249979,0,0);}
.m6_c00188{transform:matrix(0.538207,0.007535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.538207,0.007535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.538207,0.007535,-0.003500,0.249976,0,0);}
.m1f_c00188{transform:matrix(0.552248,0.007179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.552248,0.007179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.552248,0.007179,-0.003250,0.249979,0,0);}
.mb_c00188{transform:matrix(0.568019,0.007952,-0.003500,0.249976,0,0);-ms-transform:matrix(0.568019,0.007952,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.568019,0.007952,-0.003500,0.249976,0,0);}
.m3_c00188{transform:matrix(0.581593,0.008142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.581593,0.008142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.581593,0.008142,-0.003500,0.249976,0,0);}
.m4_c00188{transform:matrix(0.594717,0.008326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.594717,0.008326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.594717,0.008326,-0.003500,0.249976,0,0);}
.m101_c00188{transform:matrix(0.595960,0.005960,-0.002500,0.249988,0,0);-ms-transform:matrix(0.595960,0.005960,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.595960,0.005960,-0.002500,0.249988,0,0);}
.med_c00188{transform:matrix(0.597625,0.005976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.597625,0.005976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.597625,0.005976,-0.002500,0.249988,0,0);}
.m5c_c00188{transform:matrix(0.601795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601795,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.617925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617925,0.000000,0.000000,0.250000,0,0);}
.m11c_c00188{transform:matrix(0.659040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659040,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.675200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.681430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681430,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.702845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702845,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.721894,0.010107,-0.003500,0.249976,0,0);-ms-transform:matrix(0.721894,0.010107,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.721894,0.010107,-0.003500,0.249976,0,0);}
.m3c_c00188{transform:matrix(0.733160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733160,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;}
.fs2_c00188{font-size:24.152367px;}
.fs18_c00188{font-size:46.201871px;}
.fs16_c00188{font-size:46.202310px;}
.fs12_c00188{font-size:49.350000px;}
.fs5_c00188{font-size:49.354170px;}
.fs13_c00188{font-size:50.400000px;}
.fs17_c00188{font-size:50.402041px;}
.fs15_c00188{font-size:50.402520px;}
.fs11_c00188{font-size:51.450000px;}
.fs14_c00188{font-size:51.452572px;}
.fs10_c00188{font-size:63.000000px;}
.fs19_c00188{font-size:64.050000px;}
.fs8_c00188{font-size:65.100000px;}
.fse_c00188{font-size:66.150000px;}
.fsf_c00188{font-size:67.200000px;}
.fs1_c00188{font-size:67.206585px;}
.fsd_c00188{font-size:69.300000px;}
.fs9_c00188{font-size:70.350000px;}
.fsc_c00188{font-size:71.400000px;}
.fsa_c00188{font-size:72.450000px;}
.fsb_c00188{font-size:75.600000px;}
.fs7_c00188{font-size:76.656477px;}
.fs4_c00188{font-size:85.023205px;}
.fs6_c00188{font-size:96.608162px;}
.fs3_c00188{font-size:110.215266px;}
.fs0_c00188{font-size:134.413171px;}
.y0_c00188{bottom:0.000000px;}
.y8f_c00188{bottom:147.321000px;}
.y8e_c00188{bottom:169.800052px;}
.y8d_c00188{bottom:170.187982px;}
.y8c_c00188{bottom:171.466925px;}
.y8b_c00188{bottom:171.871926px;}
.y8a_c00188{bottom:172.049934px;}
.y88_c00188{bottom:172.598342px;}
.y89_c00188{bottom:172.619492px;}
.y87_c00188{bottom:173.410803px;}
.y86_c00188{bottom:173.812185px;}
.y84_c00188{bottom:174.823575px;}
.y85_c00188{bottom:174.823845px;}
.y83_c00188{bottom:175.286544px;}
.y82_c00188{bottom:175.855791px;}
.y81_c00188{bottom:176.040728px;}
.y80_c00188{bottom:190.155922px;}
.y7f_c00188{bottom:190.413408px;}
.y7e_c00188{bottom:190.619890px;}
.y7d_c00188{bottom:190.853211px;}
.y7c_c00188{bottom:191.278285px;}
.y7b_c00188{bottom:191.643096px;}
.y7a_c00188{bottom:192.138910px;}
.y79_c00188{bottom:192.401405px;}
.y78_c00188{bottom:192.620118px;}
.y77_c00188{bottom:192.882464px;}
.y76_c00188{bottom:193.089000px;}
.y75_c00188{bottom:209.419410px;}
.y74_c00188{bottom:209.419710px;}
.y6e_c00188{bottom:209.419965px;}
.y6d_c00188{bottom:209.420250px;}
.y6f_c00188{bottom:209.420280px;}
.y71_c00188{bottom:209.420295px;}
.y73_c00188{bottom:209.420310px;}
.y67_c00188{bottom:209.420475px;}
.y68_c00188{bottom:209.420775px;}
.y6b_c00188{bottom:209.420805px;}
.y6c_c00188{bottom:209.420835px;}
.y70_c00188{bottom:209.420880px;}
.y72_c00188{bottom:209.420910px;}
.y66_c00188{bottom:209.421045px;}
.y65_c00188{bottom:209.421315px;}
.y69_c00188{bottom:209.421375px;}
.y6a_c00188{bottom:209.421390px;}
.y64_c00188{bottom:209.421900px;}
.y63_c00188{bottom:227.173710px;}
.y61_c00188{bottom:227.173980px;}
.y60_c00188{bottom:227.174265px;}
.y62_c00188{bottom:227.174295px;}
.y5c_c00188{bottom:227.174490px;}
.y5d_c00188{bottom:227.174505px;}
.y5f_c00188{bottom:227.174535px;}
.y5e_c00188{bottom:227.174820px;}
.y5a_c00188{bottom:227.175060px;}
.y5b_c00188{bottom:227.175075px;}
.y59_c00188{bottom:227.175360px;}
.y54_c00188{bottom:227.175570px;}
.y53_c00188{bottom:227.175855px;}
.y55_c00188{bottom:227.175885px;}
.y56_c00188{bottom:227.175900px;}
.y58_c00188{bottom:227.175930px;}
.y57_c00188{bottom:227.176515px;}
.y52_c00188{bottom:240.466470px;}
.y51_c00188{bottom:241.202880px;}
.y50_c00188{bottom:241.432020px;}
.y4f_c00188{bottom:241.966830px;}
.y4e_c00188{bottom:242.115510px;}
.y4d_c00188{bottom:242.541930px;}
.y4c_c00188{bottom:242.963055px;}
.y4b_c00188{bottom:243.316545px;}
.y4a_c00188{bottom:243.564420px;}
.y49_c00188{bottom:243.945315px;}
.y48_c00188{bottom:244.185660px;}
.y47_c00188{bottom:244.536810px;}
.y46_c00188{bottom:245.087985px;}
.y45_c00188{bottom:245.182350px;}
.y44_c00188{bottom:245.254980px;}
.y43_c00188{bottom:245.473500px;}
.y42_c00188{bottom:297.256500px;}
.y41_c00188{bottom:315.153000px;}
.y40_c00188{bottom:333.075000px;}
.y3f_c00188{bottom:350.571000px;}
.y3e_c00188{bottom:393.381000px;}
.y3d_c00188{bottom:415.887000px;}
.y3c_c00188{bottom:438.102000px;}
.y3b_c00188{bottom:460.941000px;}
.y3a_c00188{bottom:483.184500px;}
.y39_c00188{bottom:506.076000px;}
.y38_c00188{bottom:528.505500px;}
.y37_c00188{bottom:550.978500px;}
.y36_c00188{bottom:573.501000px;}
.y35_c00188{bottom:596.008500px;}
.y34_c00188{bottom:641.061000px;}
.y33_c00188{bottom:663.211500px;}
.y32_c00188{bottom:685.414500px;}
.y31_c00188{bottom:708.123000px;}
.y30_c00188{bottom:731.178000px;}
.y2f_c00188{bottom:753.216000px;}
.y2e_c00188{bottom:777.108000px;}
.y24_c00188{bottom:792.500751px;}
.y26_c00188{bottom:792.500989px;}
.y27_c00188{bottom:792.501039px;}
.y23_c00188{bottom:792.501211px;}
.y25_c00188{bottom:792.501240px;}
.y28_c00188{bottom:792.501397px;}
.y2d_c00188{bottom:792.501628px;}
.y22_c00188{bottom:792.501882px;}
.y29_c00188{bottom:792.501916px;}
.y2c_c00188{bottom:792.501984px;}
.y2b_c00188{bottom:792.502114px;}
.y2a_c00188{bottom:792.502345px;}
.y21_c00188{bottom:819.432517px;}
.y20_c00188{bottom:822.030274px;}
.y1f_c00188{bottom:822.507015px;}
.y1e_c00188{bottom:824.039250px;}
.y1d_c00188{bottom:840.823398px;}
.y1c_c00188{bottom:842.514028px;}
.y1b_c00188{bottom:848.881500px;}
.y1a_c00188{bottom:863.077544px;}
.y19_c00188{bottom:864.788220px;}
.y18_c00188{bottom:867.146360px;}
.y17_c00188{bottom:869.082366px;}
.y16_c00188{bottom:870.258078px;}
.y15_c00188{bottom:872.372628px;}
.y14_c00188{bottom:875.483015px;}
.y11_c00188{bottom:876.503826px;}
.y13_c00188{bottom:877.876119px;}
.y12_c00188{bottom:879.941218px;}
.ye_c00188{bottom:881.010087px;}
.y10_c00188{bottom:882.301467px;}
.yd_c00188{bottom:882.917466px;}
.yf_c00188{bottom:894.256500px;}
.yc_c00188{bottom:900.177159px;}
.ya_c00188{bottom:903.372798px;}
.yb_c00188{bottom:903.372822px;}
.y9_c00188{bottom:903.373068px;}
.y7_c00188{bottom:903.373224px;}
.y8_c00188{bottom:903.373506px;}
.y6_c00188{bottom:916.628922px;}
.y5_c00188{bottom:918.558780px;}
.y3_c00188{bottom:921.427527px;}
.y4_c00188{bottom:921.448590px;}
.y2_c00188{bottom:922.515306px;}
.y1_c00188{bottom:923.133000px;}
.h4_c00188{height:24.152367px;}
.h1a_c00188{height:46.201871px;}
.h18_c00188{height:46.202310px;}
.h14_c00188{height:49.350000px;}
.h7_c00188{height:49.354170px;}
.h15_c00188{height:50.400000px;}
.h19_c00188{height:50.402041px;}
.h17_c00188{height:50.402520px;}
.h13_c00188{height:51.450000px;}
.h16_c00188{height:51.452572px;}
.h12_c00188{height:63.000000px;}
.h1b_c00188{height:64.050000px;}
.ha_c00188{height:65.100000px;}
.h10_c00188{height:66.150000px;}
.h11_c00188{height:67.200000px;}
.h3_c00188{height:67.206585px;}
.hf_c00188{height:69.300000px;}
.hb_c00188{height:70.350000px;}
.he_c00188{height:71.400000px;}
.hc_c00188{height:72.450000px;}
.hd_c00188{height:75.600000px;}
.h9_c00188{height:76.656477px;}
.h6_c00188{height:85.023205px;}
.h8_c00188{height:96.608162px;}
.h5_c00188{height:110.215266px;}
.h2_c00188{height:134.413171px;}
.h1_c00188{height:1005.000000px;}
.h0_c00188{height:1005.150000px;}
.w0_c00188{width:735.750000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:2.979000px;}
.xf_c00188{left:43.300500px;}
.x2_c00188{left:47.100000px;}
.x7_c00188{left:53.196258px;}
.xc_c00188{left:55.049385px;}
.xa1_c00188{left:84.694573px;}
.xa2_c00188{left:96.242344px;}
.x84_c00188{left:97.648500px;}
.x12_c00188{left:111.212187px;}
.xa8_c00188{left:116.100000px;}
.x85_c00188{left:119.500500px;}
.x4_c00188{left:123.294000px;}
.x3_c00188{left:124.798500px;}
.x86_c00188{left:126.763500px;}
.x38_c00188{left:130.950000px;}
.x60_c00188{left:132.840000px;}
.x67_c00188{left:135.270000px;}
.x54_c00188{left:137.970000px;}
.x1d_c00188{left:139.333571px;}
.x2e_c00188{left:140.400000px;}
.x8d_c00188{left:144.181695px;}
.x9c_c00188{left:149.194500px;}
.x1e_c00188{left:157.965210px;}
.xa3_c00188{left:160.762281px;}
.x5c_c00188{left:164.700000px;}
.x57_c00188{left:167.130000px;}
.x2f_c00188{left:169.020000px;}
.x4d_c00188{left:172.800000px;}
.x8e_c00188{left:173.883165px;}
.xa9_c00188{left:182.790000px;}
.x1f_c00188{left:184.428176px;}
.x68_c00188{left:185.760000px;}
.x49_c00188{left:187.110000px;}
.x13_c00188{left:190.897589px;}
.x61_c00188{left:196.830000px;}
.x7b_c00188{left:199.260000px;}
.x30_c00188{left:203.310000px;}
.x28_c00188{left:206.010000px;}
.x74_c00188{left:208.710000px;}
.x70_c00188{left:210.870000px;}
.x7e_c00188{left:218.970000px;}
.x69_c00188{left:221.400000px;}
.x3d_c00188{left:223.560000px;}
.xaa_c00188{left:224.640000px;}
.x20_c00188{left:226.282254px;}
.x8f_c00188{left:229.235700px;}
.x43_c00188{left:233.280000px;}
.x58_c00188{left:236.250000px;}
.x5d_c00188{left:237.330000px;}
.x75_c00188{left:240.300000px;}
.x36_c00188{left:243.000000px;}
.x3e_c00188{left:244.080000px;}
.x21_c00188{left:247.074264px;}
.x78_c00188{left:249.210000px;}
.x1b_c00188{left:251.013746px;}
.x96_c00188{left:254.616210px;}
.x7f_c00188{left:256.230000px;}
.x9d_c00188{left:257.752500px;}
.x39_c00188{left:259.470000px;}
.x4e_c00188{left:261.360000px;}
.x7c_c00188{left:263.790000px;}
.x29_c00188{left:267.030000px;}
.x62_c00188{left:269.460000px;}
.x31_c00188{left:272.160000px;}
.x22_c00188{left:273.267191px;}
.x6d_c00188{left:274.590000px;}
.x82_c00188{left:276.210000px;}
.x7d_c00188{left:279.990000px;}
.x90_c00188{left:281.077875px;}
.x76_c00188{left:282.690000px;}
.x71_c00188{left:285.120000px;}
.x3a_c00188{left:287.280000px;}
.x87_c00188{left:288.556500px;}
.x4f_c00188{left:289.710000px;}
.x3f_c00188{left:291.870000px;}
.x14_c00188{left:294.446769px;}
.x44_c00188{left:296.460000px;}
.x9e_c00188{left:298.287000px;}
.xa4_c00188{left:299.835020px;}
.x2a_c00188{left:303.210000px;}
.x55_c00188{left:307.260000px;}
.x79_c00188{left:308.340000px;}
.x91_c00188{left:312.129480px;}
.x88_c00188{left:313.344000px;}
.x32_c00188{left:315.090000px;}
.x23_c00188{left:319.170452px;}
.x83_c00188{left:321.030000px;}
.x80_c00188{left:322.380000px;}
.x72_c00188{left:324.000000px;}
.x40_c00188{left:326.430000px;}
.x5_c00188{left:329.709000px;}
.x59_c00188{left:331.020000px;}
.x6a_c00188{left:334.530000px;}
.x33_c00188{left:336.960000px;}
.x37_c00188{left:339.390000px;}
.x41_c00188{left:340.740000px;}
.x50_c00188{left:342.630000px;}
.x9f_c00188{left:345.517500px;}
.x24_c00188{left:346.712112px;}
.x63_c00188{left:347.760000px;}
.x81_c00188{left:356.940000px;}
.x45_c00188{left:358.290000px;}
.x56_c00188{left:359.910000px;}
.x15_c00188{left:364.828539px;}
.x10_c00188{left:366.086391px;}
.xa5_c00188{left:370.543565px;}
.x5e_c00188{left:372.330000px;}
.x34_c00188{left:375.030000px;}
.x25_c00188{left:376.684182px;}
.x2b_c00188{left:380.700000px;}
.x42_c00188{left:387.720000px;}
.x64_c00188{left:389.880000px;}
.x8_c00188{left:392.349723px;}
.x51_c00188{left:394.200000px;}
.x5a_c00188{left:396.090000px;}
.x46_c00188{left:397.170000px;}
.x4a_c00188{left:399.330000px;}
.x2c_c00188{left:402.570000px;}
.x16_c00188{left:403.946493px;}
.x73_c00188{left:405.540000px;}
.x26_c00188{left:410.976974px;}
.x7a_c00188{left:412.020000px;}
.x9_c00188{left:416.921532px;}
.xa0_c00188{left:422.994000px;}
.x3b_c00188{left:426.600000px;}
.x27_c00188{left:428.528438px;}
.x6b_c00188{left:430.650000px;}
.x92_c00188{left:431.745435px;}
.x47_c00188{left:433.350000px;}
.x77_c00188{left:436.590000px;}
.x35_c00188{left:439.020000px;}
.x65_c00188{left:441.180000px;}
.x3c_c00188{left:442.800000px;}
.x6e_c00188{left:444.150000px;}
.x89_c00188{left:448.315500px;}
.xa6_c00188{left:450.476529px;}
.x4b_c00188{left:451.710000px;}
.x97_c00188{left:453.885630px;}
.x2d_c00188{left:456.840000px;}
.x5f_c00188{left:459.540000px;}
.x6f_c00188{left:465.750000px;}
.x6_c00188{left:467.556000px;}
.x66_c00188{left:468.990000px;}
.x52_c00188{left:471.150000px;}
.x6c_c00188{left:472.230000px;}
.xa7_c00188{left:474.745003px;}
.x98_c00188{left:476.296365px;}
.x93_c00188{left:478.727130px;}
.x53_c00188{left:486.000000px;}
.x19_c00188{left:490.762500px;}
.x48_c00188{left:494.640000px;}
.x5b_c00188{left:495.990000px;}
.x8a_c00188{left:501.796500px;}
.x94_c00188{left:505.458300px;}
.x99_c00188{left:510.588300px;}
.x4c_c00188{left:515.430000px;}
.x11_c00188{left:522.622698px;}
.x8b_c00188{left:524.710500px;}
.x9a_c00188{left:537.861015px;}
.x17_c00188{left:546.911940px;}
.x9b_c00188{left:548.392065px;}
.xd_c00188{left:562.706778px;}
.x95_c00188{left:564.591210px;}
.xa_c00188{left:569.756478px;}
.x1c_c00188{left:575.823864px;}
.x8c_c00188{left:598.351500px;}
.x18_c00188{left:603.877195px;}
.xe_c00188{left:618.789570px;}
.x1a_c00188{left:620.811000px;}
.xb_c00188{left:631.052490px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws0_c00188{word-spacing:0.000000pt;}
.fs2_c00188{font-size:21.468770pt;}
.fs18_c00188{font-size:41.068330pt;}
.fs16_c00188{font-size:41.068720pt;}
.fs12_c00188{font-size:43.866667pt;}
.fs5_c00188{font-size:43.870373pt;}
.fs13_c00188{font-size:44.800000pt;}
.fs17_c00188{font-size:44.801814pt;}
.fs15_c00188{font-size:44.802240pt;}
.fs11_c00188{font-size:45.733333pt;}
.fs14_c00188{font-size:45.735620pt;}
.fs10_c00188{font-size:56.000000pt;}
.fs19_c00188{font-size:56.933333pt;}
.fs8_c00188{font-size:57.866667pt;}
.fse_c00188{font-size:58.800000pt;}
.fsf_c00188{font-size:59.733333pt;}
.fs1_c00188{font-size:59.739187pt;}
.fsd_c00188{font-size:61.600000pt;}
.fs9_c00188{font-size:62.533333pt;}
.fsc_c00188{font-size:63.466667pt;}
.fsa_c00188{font-size:64.400000pt;}
.fsb_c00188{font-size:67.200000pt;}
.fs7_c00188{font-size:68.139090pt;}
.fs4_c00188{font-size:75.576182pt;}
.fs6_c00188{font-size:85.873922pt;}
.fs3_c00188{font-size:97.969125pt;}
.fs0_c00188{font-size:119.478374pt;}
.y0_c00188{bottom:0.000000pt;}
.y8f_c00188{bottom:130.952000pt;}
.y8e_c00188{bottom:150.933380pt;}
.y8d_c00188{bottom:151.278207pt;}
.y8c_c00188{bottom:152.415044pt;}
.y8b_c00188{bottom:152.775045pt;}
.y8a_c00188{bottom:152.933275pt;}
.y88_c00188{bottom:153.420748pt;}
.y89_c00188{bottom:153.439548pt;}
.y87_c00188{bottom:154.142936pt;}
.y86_c00188{bottom:154.499720pt;}
.y84_c00188{bottom:155.398733pt;}
.y85_c00188{bottom:155.398973pt;}
.y83_c00188{bottom:155.810261pt;}
.y82_c00188{bottom:156.316259pt;}
.y81_c00188{bottom:156.480647pt;}
.y80_c00188{bottom:169.027487pt;}
.y7f_c00188{bottom:169.256363pt;}
.y7e_c00188{bottom:169.439903pt;}
.y7d_c00188{bottom:169.647299pt;}
.y7c_c00188{bottom:170.025143pt;}
.y7b_c00188{bottom:170.349419pt;}
.y7a_c00188{bottom:170.790143pt;}
.y79_c00188{bottom:171.023471pt;}
.y78_c00188{bottom:171.217883pt;}
.y77_c00188{bottom:171.451079pt;}
.y76_c00188{bottom:171.634667pt;}
.y75_c00188{bottom:186.150587pt;}
.y74_c00188{bottom:186.150853pt;}
.y6e_c00188{bottom:186.151080pt;}
.y6d_c00188{bottom:186.151333pt;}
.y6f_c00188{bottom:186.151360pt;}
.y71_c00188{bottom:186.151373pt;}
.y73_c00188{bottom:186.151387pt;}
.y67_c00188{bottom:186.151533pt;}
.y68_c00188{bottom:186.151800pt;}
.y6b_c00188{bottom:186.151827pt;}
.y6c_c00188{bottom:186.151853pt;}
.y70_c00188{bottom:186.151893pt;}
.y72_c00188{bottom:186.151920pt;}
.y66_c00188{bottom:186.152040pt;}
.y65_c00188{bottom:186.152280pt;}
.y69_c00188{bottom:186.152333pt;}
.y6a_c00188{bottom:186.152347pt;}
.y64_c00188{bottom:186.152800pt;}
.y63_c00188{bottom:201.932187pt;}
.y61_c00188{bottom:201.932427pt;}
.y60_c00188{bottom:201.932680pt;}
.y62_c00188{bottom:201.932707pt;}
.y5c_c00188{bottom:201.932880pt;}
.y5d_c00188{bottom:201.932893pt;}
.y5f_c00188{bottom:201.932920pt;}
.y5e_c00188{bottom:201.933173pt;}
.y5a_c00188{bottom:201.933387pt;}
.y5b_c00188{bottom:201.933400pt;}
.y59_c00188{bottom:201.933653pt;}
.y54_c00188{bottom:201.933840pt;}
.y53_c00188{bottom:201.934093pt;}
.y55_c00188{bottom:201.934120pt;}
.y56_c00188{bottom:201.934133pt;}
.y58_c00188{bottom:201.934160pt;}
.y57_c00188{bottom:201.934680pt;}
.y52_c00188{bottom:213.747973pt;}
.y51_c00188{bottom:214.402560pt;}
.y50_c00188{bottom:214.606240pt;}
.y4f_c00188{bottom:215.081627pt;}
.y4e_c00188{bottom:215.213787pt;}
.y4d_c00188{bottom:215.592827pt;}
.y4c_c00188{bottom:215.967160pt;}
.y4b_c00188{bottom:216.281373pt;}
.y4a_c00188{bottom:216.501707pt;}
.y49_c00188{bottom:216.840280pt;}
.y48_c00188{bottom:217.053920pt;}
.y47_c00188{bottom:217.366053pt;}
.y46_c00188{bottom:217.855987pt;}
.y45_c00188{bottom:217.939867pt;}
.y44_c00188{bottom:218.004427pt;}
.y43_c00188{bottom:218.198667pt;}
.y42_c00188{bottom:264.228000pt;}
.y41_c00188{bottom:280.136000pt;}
.y40_c00188{bottom:296.066667pt;}
.y3f_c00188{bottom:311.618667pt;}
.y3e_c00188{bottom:349.672000pt;}
.y3d_c00188{bottom:369.677333pt;}
.y3c_c00188{bottom:389.424000pt;}
.y3b_c00188{bottom:409.725333pt;}
.y3a_c00188{bottom:429.497333pt;}
.y39_c00188{bottom:449.845333pt;}
.y38_c00188{bottom:469.782667pt;}
.y37_c00188{bottom:489.758667pt;}
.y36_c00188{bottom:509.778667pt;}
.y35_c00188{bottom:529.785333pt;}
.y34_c00188{bottom:569.832000pt;}
.y33_c00188{bottom:589.521333pt;}
.y32_c00188{bottom:609.257333pt;}
.y31_c00188{bottom:629.442667pt;}
.y30_c00188{bottom:649.936000pt;}
.y2f_c00188{bottom:669.525333pt;}
.y2e_c00188{bottom:690.762667pt;}
.y24_c00188{bottom:704.445112pt;}
.y26_c00188{bottom:704.445324pt;}
.y27_c00188{bottom:704.445368pt;}
.y23_c00188{bottom:704.445521pt;}
.y25_c00188{bottom:704.445547pt;}
.y28_c00188{bottom:704.445687pt;}
.y2d_c00188{bottom:704.445892pt;}
.y22_c00188{bottom:704.446117pt;}
.y29_c00188{bottom:704.446148pt;}
.y2c_c00188{bottom:704.446208pt;}
.y2b_c00188{bottom:704.446324pt;}
.y2a_c00188{bottom:704.446529pt;}
.y21_c00188{bottom:728.384460pt;}
.y20_c00188{bottom:730.693577pt;}
.y1f_c00188{bottom:731.117347pt;}
.y1e_c00188{bottom:732.479333pt;}
.y1d_c00188{bottom:747.398576pt;}
.y1c_c00188{bottom:748.901359pt;}
.y1b_c00188{bottom:754.561333pt;}
.y1a_c00188{bottom:767.180039pt;}
.y19_c00188{bottom:768.700640pt;}
.y18_c00188{bottom:770.796764pt;}
.y17_c00188{bottom:772.517659pt;}
.y16_c00188{bottom:773.562736pt;}
.y15_c00188{bottom:775.442336pt;}
.y14_c00188{bottom:778.207124pt;}
.y11_c00188{bottom:779.114512pt;}
.y13_c00188{bottom:780.334328pt;}
.y12_c00188{bottom:782.169972pt;}
.ye_c00188{bottom:783.120077pt;}
.y10_c00188{bottom:784.267971pt;}
.yd_c00188{bottom:784.815525pt;}
.yf_c00188{bottom:794.894667pt;}
.yc_c00188{bottom:800.157475pt;}
.ya_c00188{bottom:802.998043pt;}
.yb_c00188{bottom:802.998064pt;}
.y9_c00188{bottom:802.998283pt;}
.y7_c00188{bottom:802.998421pt;}
.y8_c00188{bottom:802.998672pt;}
.y6_c00188{bottom:814.781264pt;}
.y5_c00188{bottom:816.496693pt;}
.y3_c00188{bottom:819.046691pt;}
.y4_c00188{bottom:819.065413pt;}
.y2_c00188{bottom:820.013605pt;}
.y1_c00188{bottom:820.562667pt;}
.h4_c00188{height:21.468770pt;}
.h1a_c00188{height:41.068330pt;}
.h18_c00188{height:41.068720pt;}
.h14_c00188{height:43.866667pt;}
.h7_c00188{height:43.870373pt;}
.h15_c00188{height:44.800000pt;}
.h19_c00188{height:44.801814pt;}
.h17_c00188{height:44.802240pt;}
.h13_c00188{height:45.733333pt;}
.h16_c00188{height:45.735620pt;}
.h12_c00188{height:56.000000pt;}
.h1b_c00188{height:56.933333pt;}
.ha_c00188{height:57.866667pt;}
.h10_c00188{height:58.800000pt;}
.h11_c00188{height:59.733333pt;}
.h3_c00188{height:59.739187pt;}
.hf_c00188{height:61.600000pt;}
.hb_c00188{height:62.533333pt;}
.he_c00188{height:63.466667pt;}
.hc_c00188{height:64.400000pt;}
.hd_c00188{height:67.200000pt;}
.h9_c00188{height:68.139090pt;}
.h6_c00188{height:75.576182pt;}
.h8_c00188{height:85.873922pt;}
.h5_c00188{height:97.969125pt;}
.h2_c00188{height:119.478374pt;}
.h1_c00188{height:893.333333pt;}
.h0_c00188{height:893.466667pt;}
.w0_c00188{width:654.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:2.648000pt;}
.xf_c00188{left:38.489333pt;}
.x2_c00188{left:41.866667pt;}
.x7_c00188{left:47.285563pt;}
.xc_c00188{left:48.932787pt;}
.xa1_c00188{left:75.284065pt;}
.xa2_c00188{left:85.548751pt;}
.x84_c00188{left:86.798667pt;}
.x12_c00188{left:98.855277pt;}
.xa8_c00188{left:103.200000pt;}
.x85_c00188{left:106.222667pt;}
.x4_c00188{left:109.594667pt;}
.x3_c00188{left:110.932000pt;}
.x86_c00188{left:112.678667pt;}
.x38_c00188{left:116.400000pt;}
.x60_c00188{left:118.080000pt;}
.x67_c00188{left:120.240000pt;}
.x54_c00188{left:122.640000pt;}
.x1d_c00188{left:123.852063pt;}
.x2e_c00188{left:124.800000pt;}
.x8d_c00188{left:128.161507pt;}
.x9c_c00188{left:132.617333pt;}
.x1e_c00188{left:140.413520pt;}
.xa3_c00188{left:142.899805pt;}
.x5c_c00188{left:146.400000pt;}
.x57_c00188{left:148.560000pt;}
.x2f_c00188{left:150.240000pt;}
.x4d_c00188{left:153.600000pt;}
.x8e_c00188{left:154.562813pt;}
.xa9_c00188{left:162.480000pt;}
.x1f_c00188{left:163.936156pt;}
.x68_c00188{left:165.120000pt;}
.x49_c00188{left:166.320000pt;}
.x13_c00188{left:169.686745pt;}
.x61_c00188{left:174.960000pt;}
.x7b_c00188{left:177.120000pt;}
.x30_c00188{left:180.720000pt;}
.x28_c00188{left:183.120000pt;}
.x74_c00188{left:185.520000pt;}
.x70_c00188{left:187.440000pt;}
.x7e_c00188{left:194.640000pt;}
.x69_c00188{left:196.800000pt;}
.x3d_c00188{left:198.720000pt;}
.xaa_c00188{left:199.680000pt;}
.x20_c00188{left:201.139781pt;}
.x8f_c00188{left:203.765067pt;}
.x43_c00188{left:207.360000pt;}
.x58_c00188{left:210.000000pt;}
.x5d_c00188{left:210.960000pt;}
.x75_c00188{left:213.600000pt;}
.x36_c00188{left:216.000000pt;}
.x3e_c00188{left:216.960000pt;}
.x21_c00188{left:219.621568pt;}
.x78_c00188{left:221.520000pt;}
.x1b_c00188{left:223.123329pt;}
.x96_c00188{left:226.325520pt;}
.x7f_c00188{left:227.760000pt;}
.x9d_c00188{left:229.113333pt;}
.x39_c00188{left:230.640000pt;}
.x4e_c00188{left:232.320000pt;}
.x7c_c00188{left:234.480000pt;}
.x29_c00188{left:237.360000pt;}
.x62_c00188{left:239.520000pt;}
.x31_c00188{left:241.920000pt;}
.x22_c00188{left:242.904169pt;}
.x6d_c00188{left:244.080000pt;}
.x82_c00188{left:245.520000pt;}
.x7d_c00188{left:248.880000pt;}
.x90_c00188{left:249.847000pt;}
.x76_c00188{left:251.280000pt;}
.x71_c00188{left:253.440000pt;}
.x3a_c00188{left:255.360000pt;}
.x87_c00188{left:256.494667pt;}
.x4f_c00188{left:257.520000pt;}
.x3f_c00188{left:259.440000pt;}
.x14_c00188{left:261.730461pt;}
.x44_c00188{left:263.520000pt;}
.x9e_c00188{left:265.144000pt;}
.xa4_c00188{left:266.520017pt;}
.x2a_c00188{left:269.520000pt;}
.x55_c00188{left:273.120000pt;}
.x79_c00188{left:274.080000pt;}
.x91_c00188{left:277.448427pt;}
.x88_c00188{left:278.528000pt;}
.x32_c00188{left:280.080000pt;}
.x23_c00188{left:283.707068pt;}
.x83_c00188{left:285.360000pt;}
.x80_c00188{left:286.560000pt;}
.x72_c00188{left:288.000000pt;}
.x40_c00188{left:290.160000pt;}
.x5_c00188{left:293.074667pt;}
.x59_c00188{left:294.240000pt;}
.x6a_c00188{left:297.360000pt;}
.x33_c00188{left:299.520000pt;}
.x37_c00188{left:301.680000pt;}
.x41_c00188{left:302.880000pt;}
.x50_c00188{left:304.560000pt;}
.x9f_c00188{left:307.126667pt;}
.x24_c00188{left:308.188544pt;}
.x63_c00188{left:309.120000pt;}
.x81_c00188{left:317.280000pt;}
.x45_c00188{left:318.480000pt;}
.x56_c00188{left:319.920000pt;}
.x15_c00188{left:324.292035pt;}
.x10_c00188{left:325.410125pt;}
.xa5_c00188{left:329.372057pt;}
.x5e_c00188{left:330.960000pt;}
.x34_c00188{left:333.360000pt;}
.x25_c00188{left:334.830384pt;}
.x2b_c00188{left:338.400000pt;}
.x42_c00188{left:344.640000pt;}
.x64_c00188{left:346.560000pt;}
.x8_c00188{left:348.755309pt;}
.x51_c00188{left:350.400000pt;}
.x5a_c00188{left:352.080000pt;}
.x46_c00188{left:353.040000pt;}
.x4a_c00188{left:354.960000pt;}
.x2c_c00188{left:357.840000pt;}
.x16_c00188{left:359.063549pt;}
.x73_c00188{left:360.480000pt;}
.x26_c00188{left:365.312865pt;}
.x7a_c00188{left:366.240000pt;}
.x9_c00188{left:370.596917pt;}
.xa0_c00188{left:375.994667pt;}
.x3b_c00188{left:379.200000pt;}
.x27_c00188{left:380.914167pt;}
.x6b_c00188{left:382.800000pt;}
.x92_c00188{left:383.773720pt;}
.x47_c00188{left:385.200000pt;}
.x77_c00188{left:388.080000pt;}
.x35_c00188{left:390.240000pt;}
.x65_c00188{left:392.160000pt;}
.x3c_c00188{left:393.600000pt;}
.x6e_c00188{left:394.800000pt;}
.x89_c00188{left:398.502667pt;}
.xa6_c00188{left:400.423581pt;}
.x4b_c00188{left:401.520000pt;}
.x97_c00188{left:403.453893pt;}
.x2d_c00188{left:406.080000pt;}
.x5f_c00188{left:408.480000pt;}
.x6f_c00188{left:414.000000pt;}
.x6_c00188{left:415.605333pt;}
.x66_c00188{left:416.880000pt;}
.x52_c00188{left:418.800000pt;}
.x6c_c00188{left:419.760000pt;}
.xa7_c00188{left:421.995559pt;}
.x98_c00188{left:423.374547pt;}
.x93_c00188{left:425.535227pt;}
.x53_c00188{left:432.000000pt;}
.x19_c00188{left:436.233333pt;}
.x48_c00188{left:439.680000pt;}
.x5b_c00188{left:440.880000pt;}
.x8a_c00188{left:446.041333pt;}
.x94_c00188{left:449.296267pt;}
.x99_c00188{left:453.856267pt;}
.x4c_c00188{left:458.160000pt;}
.x11_c00188{left:464.553509pt;}
.x8b_c00188{left:466.409333pt;}
.x9a_c00188{left:478.098680pt;}
.x17_c00188{left:486.143947pt;}
.x9b_c00188{left:487.459613pt;}
.xd_c00188{left:500.183803pt;}
.x95_c00188{left:501.858853pt;}
.xa_c00188{left:506.450203pt;}
.x1c_c00188{left:511.843435pt;}
.x8c_c00188{left:531.868000pt;}
.x18_c00188{left:536.779729pt;}
.xe_c00188{left:550.035173pt;}
.x1a_c00188{left:551.832000pt;}
.xb_c00188{left:560.935547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m44_c00189{transform:matrix(0.012133,-0.000231,0.004749,0.249955,0,0);-ms-transform:matrix(0.012133,-0.000231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.012133,-0.000231,0.004749,0.249955,0,0);}
.m7e_c00189{transform:matrix(0.024084,-0.000723,0.007497,0.249888,0,0);-ms-transform:matrix(0.024084,-0.000723,0.007497,0.249888,0,0);-webkit-transform:matrix(0.024084,-0.000723,0.007497,0.249888,0,0);}
.m3_c00189{transform:matrix(0.026924,-0.000781,0.007247,0.249895,0,0);-ms-transform:matrix(0.026924,-0.000781,0.007247,0.249895,0,0);-webkit-transform:matrix(0.026924,-0.000781,0.007247,0.249895,0,0);}
.m51_c00189{transform:matrix(0.033464,-0.000636,0.004749,0.249955,0,0);-ms-transform:matrix(0.033464,-0.000636,0.004749,0.249955,0,0);-webkit-transform:matrix(0.033464,-0.000636,0.004749,0.249955,0,0);}
.m26_c00189{transform:matrix(0.041349,-0.001158,0.006997,0.249902,0,0);-ms-transform:matrix(0.041349,-0.001158,0.006997,0.249902,0,0);-webkit-transform:matrix(0.041349,-0.001158,0.006997,0.249902,0,0);}
.mb9_c00189{transform:matrix(0.048030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048030,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{transform:matrix(0.092699,-0.003062,0.008254,0.249864,0,0);-ms-transform:matrix(0.092699,-0.003062,0.008254,0.249864,0,0);-webkit-transform:matrix(0.092699,-0.003062,0.008254,0.249864,0,0);}
.m6_c00189{transform:matrix(0.107705,-0.003123,0.007247,0.249895,0,0);-ms-transform:matrix(0.107705,-0.003123,0.007247,0.249895,0,0);-webkit-transform:matrix(0.107705,-0.003123,0.007247,0.249895,0,0);}
.m6b_c00189{transform:matrix(0.119388,-0.003701,0.007746,0.249880,0,0);-ms-transform:matrix(0.119388,-0.003701,0.007746,0.249880,0,0);-webkit-transform:matrix(0.119388,-0.003701,0.007746,0.249880,0,0);}
.m8a_c00189{transform:matrix(0.126842,-0.004317,0.008504,0.249855,0,0);-ms-transform:matrix(0.126842,-0.004317,0.008504,0.249855,0,0);-webkit-transform:matrix(0.126842,-0.004317,0.008504,0.249855,0,0);}
.m8d_c00189{transform:matrix(0.126956,-0.004321,0.008504,0.249855,0,0);-ms-transform:matrix(0.126956,-0.004321,0.008504,0.249855,0,0);-webkit-transform:matrix(0.126956,-0.004321,0.008504,0.249855,0,0);}
.ma3_c00189{transform:matrix(0.127382,-0.003312,0.006498,0.249916,0,0);-ms-transform:matrix(0.127382,-0.003312,0.006498,0.249916,0,0);-webkit-transform:matrix(0.127382,-0.003312,0.006498,0.249916,0,0);}
.m8e_c00189{transform:matrix(0.133078,-0.004529,0.008504,0.249855,0,0);-ms-transform:matrix(0.133078,-0.004529,0.008504,0.249855,0,0);-webkit-transform:matrix(0.133078,-0.004529,0.008504,0.249855,0,0);}
.m76_c00189{transform:matrix(0.133755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133755,0.000000,0.000000,0.250000,0,0);}
.ma1_c00189{transform:matrix(0.134889,-0.003507,0.006498,0.249916,0,0);-ms-transform:matrix(0.134889,-0.003507,0.006498,0.249916,0,0);-webkit-transform:matrix(0.134889,-0.003507,0.006498,0.249916,0,0);}
.m8c_c00189{transform:matrix(0.136346,-0.004640,0.008504,0.249855,0,0);-ms-transform:matrix(0.136346,-0.004640,0.008504,0.249855,0,0);-webkit-transform:matrix(0.136346,-0.004640,0.008504,0.249855,0,0);}
.m71_c00189{transform:matrix(0.136365,-0.005733,0.010501,0.249779,0,0);-ms-transform:matrix(0.136365,-0.005733,0.010501,0.249779,0,0);-webkit-transform:matrix(0.136365,-0.005733,0.010501,0.249779,0,0);}
.m74_c00189{transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);}
.m9e_c00189{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);}
.m88_c00189{transform:matrix(0.141323,-0.004951,0.008753,0.249847,0,0);-ms-transform:matrix(0.141323,-0.004951,0.008753,0.249847,0,0);-webkit-transform:matrix(0.141323,-0.004951,0.008753,0.249847,0,0);}
.ma4_c00189{transform:matrix(0.143207,-0.003723,0.006498,0.249916,0,0);-ms-transform:matrix(0.143207,-0.003723,0.006498,0.249916,0,0);-webkit-transform:matrix(0.143207,-0.003723,0.006498,0.249916,0,0);}
.m8b_c00189{transform:matrix(0.145246,-0.004943,0.008504,0.249855,0,0);-ms-transform:matrix(0.145246,-0.004943,0.008504,0.249855,0,0);-webkit-transform:matrix(0.145246,-0.004943,0.008504,0.249855,0,0);}
.m2e_c00189{transform:matrix(0.146448,-0.004101,0.006997,0.249902,0,0);-ms-transform:matrix(0.146448,-0.004101,0.006997,0.249902,0,0);-webkit-transform:matrix(0.146448,-0.004101,0.006997,0.249902,0,0);}
.ma0_c00189{transform:matrix(0.147825,-0.003843,0.006498,0.249916,0,0);-ms-transform:matrix(0.147825,-0.003843,0.006498,0.249916,0,0);-webkit-transform:matrix(0.147825,-0.003843,0.006498,0.249916,0,0);}
.m28_c00189{transform:matrix(0.148442,-0.004156,0.006997,0.249902,0,0);-ms-transform:matrix(0.148442,-0.004156,0.006997,0.249902,0,0);-webkit-transform:matrix(0.148442,-0.004156,0.006997,0.249902,0,0);}
.m4c_c00189{transform:matrix(0.152592,-0.002899,0.004749,0.249955,0,0);-ms-transform:matrix(0.152592,-0.002899,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152592,-0.002899,0.004749,0.249955,0,0);}
.m17_c00189{transform:matrix(0.152990,-0.004284,0.006997,0.249902,0,0);-ms-transform:matrix(0.152990,-0.004284,0.006997,0.249902,0,0);-webkit-transform:matrix(0.152990,-0.004284,0.006997,0.249902,0,0);}
.m18_c00189{transform:matrix(0.153230,-0.004290,0.006997,0.249902,0,0);-ms-transform:matrix(0.153230,-0.004290,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153230,-0.004290,0.006997,0.249902,0,0);}
.m1f_c00189{transform:matrix(0.153650,-0.004302,0.006997,0.249902,0,0);-ms-transform:matrix(0.153650,-0.004302,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153650,-0.004302,0.006997,0.249902,0,0);}
.m85_c00189{transform:matrix(0.155319,-0.004349,0.006997,0.249902,0,0);-ms-transform:matrix(0.155319,-0.004349,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155319,-0.004349,0.006997,0.249902,0,0);}
.mca_c00189{transform:matrix(0.155826,-0.003896,0.006248,0.249922,0,0);-ms-transform:matrix(0.155826,-0.003896,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155826,-0.003896,0.006248,0.249922,0,0);}
.m96_c00189{transform:matrix(0.157010,-0.002826,0.004499,0.249960,0,0);-ms-transform:matrix(0.157010,-0.002826,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157010,-0.002826,0.004499,0.249960,0,0);}
.m27_c00189{transform:matrix(0.158003,-0.004424,0.006997,0.249902,0,0);-ms-transform:matrix(0.158003,-0.004424,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158003,-0.004424,0.006997,0.249902,0,0);}
.m94_c00189{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);}
.m4d_c00189{transform:matrix(0.160291,-0.003046,0.004749,0.249955,0,0);-ms-transform:matrix(0.160291,-0.003046,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160291,-0.003046,0.004749,0.249955,0,0);}
.m5e_c00189{transform:matrix(0.162752,-0.005045,0.007746,0.249880,0,0);-ms-transform:matrix(0.162752,-0.005045,0.007746,0.249880,0,0);-webkit-transform:matrix(0.162752,-0.005045,0.007746,0.249880,0,0);}
.m49_c00189{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);}
.m4f_c00189{transform:matrix(0.163031,-0.003098,0.004749,0.249955,0,0);-ms-transform:matrix(0.163031,-0.003098,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163031,-0.003098,0.004749,0.249955,0,0);}
.mb2_c00189{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);}
.m10_c00189{transform:matrix(0.163876,-0.005080,0.007746,0.249880,0,0);-ms-transform:matrix(0.163876,-0.005080,0.007746,0.249880,0,0);-webkit-transform:matrix(0.163876,-0.005080,0.007746,0.249880,0,0);}
.mc0_c00189{transform:matrix(0.164656,-0.004940,0.007497,0.249888,0,0);-ms-transform:matrix(0.164656,-0.004940,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164656,-0.004940,0.007497,0.249888,0,0);}
.m3c_c00189{transform:matrix(0.166980,-0.003173,0.004749,0.249955,0,0);-ms-transform:matrix(0.166980,-0.003173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166980,-0.003173,0.004749,0.249955,0,0);}
.m69_c00189{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_c00189{transform:matrix(0.167649,-0.005197,0.007746,0.249880,0,0);-ms-transform:matrix(0.167649,-0.005197,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167649,-0.005197,0.007746,0.249880,0,0);}
.m83_c00189{transform:matrix(0.167684,-0.004695,0.006997,0.249902,0,0);-ms-transform:matrix(0.167684,-0.004695,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167684,-0.004695,0.006997,0.249902,0,0);}
.ma2_c00189{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);}
.mb_c00189{transform:matrix(0.168623,-0.005570,0.008254,0.249864,0,0);-ms-transform:matrix(0.168623,-0.005570,0.008254,0.249864,0,0);-webkit-transform:matrix(0.168623,-0.005570,0.008254,0.249864,0,0);}
.md9_c00189{transform:matrix(0.169018,-0.002366,0.003500,0.249976,0,0);-ms-transform:matrix(0.169018,-0.002366,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169018,-0.002366,0.003500,0.249976,0,0);}
.m29_c00189{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);}
.mb7_c00189{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);}
.m47_c00189{transform:matrix(0.170074,-0.003231,0.004749,0.249955,0,0);-ms-transform:matrix(0.170074,-0.003231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170074,-0.003231,0.004749,0.249955,0,0);}
.m9c_c00189{transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);-ms-transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);}
.m12_c00189{transform:matrix(0.170998,-0.005301,0.007746,0.249880,0,0);-ms-transform:matrix(0.170998,-0.005301,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170998,-0.005301,0.007746,0.249880,0,0);}
.m86_c00189{transform:matrix(0.171048,-0.004789,0.006997,0.249902,0,0);-ms-transform:matrix(0.171048,-0.004789,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171048,-0.004789,0.006997,0.249902,0,0);}
.m75_c00189{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);}
.m6d_c00189{transform:matrix(0.171319,-0.007203,0.010501,0.249779,0,0);-ms-transform:matrix(0.171319,-0.007203,0.010501,0.249779,0,0);-webkit-transform:matrix(0.171319,-0.007203,0.010501,0.249779,0,0);}
.mae_c00189{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);}
.ma_c00189{transform:matrix(0.175864,-0.005809,0.008254,0.249864,0,0);-ms-transform:matrix(0.175864,-0.005809,0.008254,0.249864,0,0);-webkit-transform:matrix(0.175864,-0.005809,0.008254,0.249864,0,0);}
.m2f_c00189{transform:matrix(0.175866,-0.004924,0.006997,0.249902,0,0);-ms-transform:matrix(0.175866,-0.004924,0.006997,0.249902,0,0);-webkit-transform:matrix(0.175866,-0.004924,0.006997,0.249902,0,0);}
.m9f_c00189{transform:matrix(0.176120,-0.004579,0.006498,0.249916,0,0);-ms-transform:matrix(0.176120,-0.004579,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176120,-0.004579,0.006498,0.249916,0,0);}
.m53_c00189{transform:matrix(0.177488,-0.005863,0.008254,0.249864,0,0);-ms-transform:matrix(0.177488,-0.005863,0.008254,0.249864,0,0);-webkit-transform:matrix(0.177488,-0.005863,0.008254,0.249864,0,0);}
.m4a_c00189{transform:matrix(0.178553,-0.003393,0.004749,0.249955,0,0);-ms-transform:matrix(0.178553,-0.003393,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178553,-0.003393,0.004749,0.249955,0,0);}
.md1_c00189{transform:matrix(0.179557,-0.002514,0.003500,0.249976,0,0);-ms-transform:matrix(0.179557,-0.002514,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179557,-0.002514,0.003500,0.249976,0,0);}
.m31_c00189{transform:matrix(0.179759,-0.005393,0.007497,0.249888,0,0);-ms-transform:matrix(0.179759,-0.005393,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179759,-0.005393,0.007497,0.249888,0,0);}
.m79_c00189{transform:matrix(0.179849,-0.005395,0.007497,0.249888,0,0);-ms-transform:matrix(0.179849,-0.005395,0.007497,0.249888,0,0);-webkit-transform:matrix(0.179849,-0.005395,0.007497,0.249888,0,0);}
.m4b_c00189{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);}
.m67_c00189{transform:matrix(0.181948,-0.005640,0.007746,0.249880,0,0);-ms-transform:matrix(0.181948,-0.005640,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181948,-0.005640,0.007746,0.249880,0,0);}
.mbf_c00189{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_c00189{transform:matrix(0.182482,-0.003467,0.004749,0.249955,0,0);-ms-transform:matrix(0.182482,-0.003467,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182482,-0.003467,0.004749,0.249955,0,0);}
.m21_c00189{transform:matrix(0.182558,-0.005112,0.006997,0.249902,0,0);-ms-transform:matrix(0.182558,-0.005112,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182558,-0.005112,0.006997,0.249902,0,0);}
.md6_c00189{transform:matrix(0.182967,-0.002562,0.003500,0.249976,0,0);-ms-transform:matrix(0.182967,-0.002562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182967,-0.002562,0.003500,0.249976,0,0);}
.m1d_c00189{transform:matrix(0.183598,-0.005141,0.006997,0.249902,0,0);-ms-transform:matrix(0.183598,-0.005141,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183598,-0.005141,0.006997,0.249902,0,0);}
.m40_c00189{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);}
.m9b_c00189{transform:matrix(0.184458,-0.003136,0.004249,0.249964,0,0);-ms-transform:matrix(0.184458,-0.003136,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184458,-0.003136,0.004249,0.249964,0,0);}
.m52_c00189{transform:matrix(0.184649,-0.006100,0.008254,0.249864,0,0);-ms-transform:matrix(0.184649,-0.006100,0.008254,0.249864,0,0);-webkit-transform:matrix(0.184649,-0.006100,0.008254,0.249864,0,0);}
.m93_c00189{transform:matrix(0.185170,-0.003333,0.004499,0.249960,0,0);-ms-transform:matrix(0.185170,-0.003333,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185170,-0.003333,0.004499,0.249960,0,0);}
.m65_c00189{transform:matrix(0.185231,-0.005742,0.007746,0.249880,0,0);-ms-transform:matrix(0.185231,-0.005742,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185231,-0.005742,0.007746,0.249880,0,0);}
.m89_c00189{transform:matrix(0.185283,-0.006306,0.008504,0.249855,0,0);-ms-transform:matrix(0.185283,-0.006306,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185283,-0.006306,0.008504,0.249855,0,0);}
.m2a_c00189{transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);-ms-transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);}
.m98_c00189{transform:matrix(0.185743,-0.003158,0.004249,0.249964,0,0);-ms-transform:matrix(0.185743,-0.003158,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185743,-0.003158,0.004249,0.249964,0,0);}
.md_c00189{transform:matrix(0.186673,-0.006166,0.008254,0.249864,0,0);-ms-transform:matrix(0.186673,-0.006166,0.008254,0.249864,0,0);-webkit-transform:matrix(0.186673,-0.006166,0.008254,0.249864,0,0);}
.mcb_c00189{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);}
.md7_c00189{transform:matrix(0.187187,-0.002621,0.003500,0.249976,0,0);-ms-transform:matrix(0.187187,-0.002621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187187,-0.002621,0.003500,0.249976,0,0);}
.md0_c00189{transform:matrix(0.187197,-0.002621,0.003500,0.249976,0,0);-ms-transform:matrix(0.187197,-0.002621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187197,-0.002621,0.003500,0.249976,0,0);}
.m22_c00189{transform:matrix(0.187352,-0.005246,0.006997,0.249902,0,0);-ms-transform:matrix(0.187352,-0.005246,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187352,-0.005246,0.006997,0.249902,0,0);}
.m1a_c00189{transform:matrix(0.187616,-0.005253,0.006997,0.249902,0,0);-ms-transform:matrix(0.187616,-0.005253,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187616,-0.005253,0.006997,0.249902,0,0);}
.mcd_c00189{transform:matrix(0.188021,-0.004701,0.006248,0.249922,0,0);-ms-transform:matrix(0.188021,-0.004701,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188021,-0.004701,0.006248,0.249922,0,0);}
.m20_c00189{transform:matrix(0.188276,-0.005272,0.006997,0.249902,0,0);-ms-transform:matrix(0.188276,-0.005272,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188276,-0.005272,0.006997,0.249902,0,0);}
.m13_c00189{transform:matrix(0.188544,-0.005845,0.007746,0.249880,0,0);-ms-transform:matrix(0.188544,-0.005845,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188544,-0.005845,0.007746,0.249880,0,0);}
.md8_c00189{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);}
.m90_c00189{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);}
.m6f_c00189{transform:matrix(0.190791,-0.008021,0.010501,0.249779,0,0);-ms-transform:matrix(0.190791,-0.008021,0.010501,0.249779,0,0);-webkit-transform:matrix(0.190791,-0.008021,0.010501,0.249779,0,0);}
.m34_c00189{transform:matrix(0.192638,-0.005779,0.007497,0.249888,0,0);-ms-transform:matrix(0.192638,-0.005779,0.007497,0.249888,0,0);-webkit-transform:matrix(0.192638,-0.005779,0.007497,0.249888,0,0);}
.mc_c00189{transform:matrix(0.193929,-0.006406,0.008254,0.249864,0,0);-ms-transform:matrix(0.193929,-0.006406,0.008254,0.249864,0,0);-webkit-transform:matrix(0.193929,-0.006406,0.008254,0.249864,0,0);}
.m60_c00189{transform:matrix(0.194731,-0.006037,0.007746,0.249880,0,0);-ms-transform:matrix(0.194731,-0.006037,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194731,-0.006037,0.007746,0.249880,0,0);}
.m48_c00189{transform:matrix(0.195300,-0.003711,0.004749,0.249955,0,0);-ms-transform:matrix(0.195300,-0.003711,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195300,-0.003711,0.004749,0.249955,0,0);}
.m3d_c00189{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);}
.m70_c00189{transform:matrix(0.196516,-0.008262,0.010501,0.249779,0,0);-ms-transform:matrix(0.196516,-0.008262,0.010501,0.249779,0,0);-webkit-transform:matrix(0.196516,-0.008262,0.010501,0.249779,0,0);}
.m59_c00189{transform:matrix(0.196820,-0.006101,0.007746,0.249880,0,0);-ms-transform:matrix(0.196820,-0.006101,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196820,-0.006101,0.007746,0.249880,0,0);}
.mad_c00189{transform:matrix(0.197073,-0.005518,0.006997,0.249902,0,0);-ms-transform:matrix(0.197073,-0.005518,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197073,-0.005518,0.006997,0.249902,0,0);}
.m4e_c00189{transform:matrix(0.197844,-0.003759,0.004749,0.249955,0,0);-ms-transform:matrix(0.197844,-0.003759,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197844,-0.003759,0.004749,0.249955,0,0);}
.mbe_c00189{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);}
.m62_c00189{transform:matrix(0.198185,-0.006144,0.007746,0.249880,0,0);-ms-transform:matrix(0.198185,-0.006144,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198185,-0.006144,0.007746,0.249880,0,0);}
.m5b_c00189{transform:matrix(0.198710,-0.006160,0.007746,0.249880,0,0);-ms-transform:matrix(0.198710,-0.006160,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198710,-0.006160,0.007746,0.249880,0,0);}
.mb0_c00189{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);}
.m99_c00189{transform:matrix(0.198936,-0.003382,0.004249,0.249964,0,0);-ms-transform:matrix(0.198936,-0.003382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198936,-0.003382,0.004249,0.249964,0,0);}
.m16_c00189{transform:matrix(0.199137,-0.005576,0.006997,0.249902,0,0);-ms-transform:matrix(0.199137,-0.005576,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199137,-0.005576,0.006997,0.249902,0,0);}
.m66_c00189{transform:matrix(0.199214,-0.006176,0.007746,0.249880,0,0);-ms-transform:matrix(0.199214,-0.006176,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199214,-0.006176,0.007746,0.249880,0,0);}
.m5a_c00189{transform:matrix(0.199249,-0.006177,0.007746,0.249880,0,0);-ms-transform:matrix(0.199249,-0.006177,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199249,-0.006177,0.007746,0.249880,0,0);}
.m15_c00189{transform:matrix(0.199352,-0.005582,0.006997,0.249902,0,0);-ms-transform:matrix(0.199352,-0.005582,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199352,-0.005582,0.006997,0.249902,0,0);}
.m84_c00189{transform:matrix(0.199737,-0.005593,0.006997,0.249902,0,0);-ms-transform:matrix(0.199737,-0.005593,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199737,-0.005593,0.006997,0.249902,0,0);}
.m6a_c00189{transform:matrix(0.200014,-0.006200,0.007746,0.249880,0,0);-ms-transform:matrix(0.200014,-0.006200,0.007746,0.249880,0,0);-webkit-transform:matrix(0.200014,-0.006200,0.007746,0.249880,0,0);}
.m1c_c00189{transform:matrix(0.200042,-0.005601,0.006997,0.249902,0,0);-ms-transform:matrix(0.200042,-0.005601,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200042,-0.005601,0.006997,0.249902,0,0);}
.mc1_c00189{transform:matrix(0.201080,-0.006032,0.007497,0.249888,0,0);-ms-transform:matrix(0.201080,-0.006032,0.007497,0.249888,0,0);-webkit-transform:matrix(0.201080,-0.006032,0.007497,0.249888,0,0);}
.m55_c00189{transform:matrix(0.201150,-0.006645,0.008254,0.249864,0,0);-ms-transform:matrix(0.201150,-0.006645,0.008254,0.249864,0,0);-webkit-transform:matrix(0.201150,-0.006645,0.008254,0.249864,0,0);}
.m64_c00189{transform:matrix(0.201543,-0.006248,0.007746,0.249880,0,0);-ms-transform:matrix(0.201543,-0.006248,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201543,-0.006248,0.007746,0.249880,0,0);}
.m11_c00189{transform:matrix(0.201818,-0.006256,0.007746,0.249880,0,0);-ms-transform:matrix(0.201818,-0.006256,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201818,-0.006256,0.007746,0.249880,0,0);}
.mc8_c00189{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);}
.m19_c00189{transform:matrix(0.202296,-0.005664,0.006997,0.249902,0,0);-ms-transform:matrix(0.202296,-0.005664,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202296,-0.005664,0.006997,0.249902,0,0);}
.m7b_c00189{transform:matrix(0.204123,-0.006124,0.007497,0.249888,0,0);-ms-transform:matrix(0.204123,-0.006124,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204123,-0.006124,0.007497,0.249888,0,0);}
.m33_c00189{transform:matrix(0.204188,-0.006126,0.007497,0.249888,0,0);-ms-transform:matrix(0.204188,-0.006126,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204188,-0.006126,0.007497,0.249888,0,0);}
.m9d_c00189{transform:matrix(0.204675,-0.003479,0.004249,0.249964,0,0);-ms-transform:matrix(0.204675,-0.003479,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204675,-0.003479,0.004249,0.249964,0,0);}
.mc6_c00189{transform:matrix(0.204693,-0.006141,0.007497,0.249888,0,0);-ms-transform:matrix(0.204693,-0.006141,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204693,-0.006141,0.007497,0.249888,0,0);}
.m95_c00189{transform:matrix(0.205877,-0.003706,0.004499,0.249960,0,0);-ms-transform:matrix(0.205877,-0.003706,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205877,-0.003706,0.004499,0.249960,0,0);}
.mbb_c00189{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);}
.mb8_c00189{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_c00189{transform:matrix(0.208776,-0.006263,0.007497,0.249888,0,0);-ms-transform:matrix(0.208776,-0.006263,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208776,-0.006263,0.007497,0.249888,0,0);}
.mcc_c00189{transform:matrix(0.209220,-0.005230,0.006248,0.249922,0,0);-ms-transform:matrix(0.209220,-0.005230,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209220,-0.005230,0.006248,0.249922,0,0);}
.m58_c00189{transform:matrix(0.210639,-0.006530,0.007746,0.249880,0,0);-ms-transform:matrix(0.210639,-0.006530,0.007746,0.249880,0,0);-webkit-transform:matrix(0.210639,-0.006530,0.007746,0.249880,0,0);}
.m91_c00189{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);}
.m39_c00189{transform:matrix(0.211399,-0.005496,0.006498,0.249916,0,0);-ms-transform:matrix(0.211399,-0.005496,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211399,-0.005496,0.006498,0.249916,0,0);}
.m8f_c00189{transform:matrix(0.212416,-0.003823,0.004499,0.249960,0,0);-ms-transform:matrix(0.212416,-0.003823,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212416,-0.003823,0.004499,0.249960,0,0);}
.maf_c00189{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);}
.md2_c00189{transform:matrix(0.212814,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212814,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212814,-0.002979,0.003500,0.249976,0,0);}
.m25_c00189{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);}
.m80_c00189{transform:matrix(0.215073,-0.006452,0.007497,0.249888,0,0);-ms-transform:matrix(0.215073,-0.006452,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215073,-0.006452,0.007497,0.249888,0,0);}
.mb3_c00189{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);}
.mf_c00189{transform:matrix(0.215626,-0.006684,0.007746,0.249880,0,0);-ms-transform:matrix(0.215626,-0.006684,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215626,-0.006684,0.007746,0.249880,0,0);}
.m5c_c00189{transform:matrix(0.215856,-0.006692,0.007746,0.249880,0,0);-ms-transform:matrix(0.215856,-0.006692,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215856,-0.006692,0.007746,0.249880,0,0);}
.m43_c00189{transform:matrix(0.216741,-0.004118,0.004749,0.249955,0,0);-ms-transform:matrix(0.216741,-0.004118,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216741,-0.004118,0.004749,0.249955,0,0);}
.m82_c00189{transform:matrix(0.216942,-0.006508,0.007497,0.249888,0,0);-ms-transform:matrix(0.216942,-0.006508,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216942,-0.006508,0.007497,0.249888,0,0);}
.me_c00189{transform:matrix(0.217001,-0.006727,0.007746,0.249880,0,0);-ms-transform:matrix(0.217001,-0.006727,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217001,-0.006727,0.007746,0.249880,0,0);}
.m30_c00189{transform:matrix(0.217892,-0.006537,0.007497,0.249888,0,0);-ms-transform:matrix(0.217892,-0.006537,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217892,-0.006537,0.007497,0.249888,0,0);}
.mdb_c00189{transform:matrix(0.218044,-0.003053,0.003500,0.249976,0,0);-ms-transform:matrix(0.218044,-0.003053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218044,-0.003053,0.003500,0.249976,0,0);}
.m9a_c00189{transform:matrix(0.218888,-0.003721,0.004249,0.249964,0,0);-ms-transform:matrix(0.218888,-0.003721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218888,-0.003721,0.004249,0.249964,0,0);}
.m7f_c00189{transform:matrix(0.219331,-0.006580,0.007497,0.249888,0,0);-ms-transform:matrix(0.219331,-0.006580,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219331,-0.006580,0.007497,0.249888,0,0);}
.mcf_c00189{transform:matrix(0.219476,-0.005487,0.006248,0.249922,0,0);-ms-transform:matrix(0.219476,-0.005487,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219476,-0.005487,0.006248,0.249922,0,0);}
.mbd_c00189{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);}
.mba_c00189{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);}
.md4_c00189{transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);}
.m68_c00189{transform:matrix(0.221184,-0.006857,0.007746,0.249880,0,0);-ms-transform:matrix(0.221184,-0.006857,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221184,-0.006857,0.007746,0.249880,0,0);}
.m35_c00189{transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);-ms-transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);}
.m8_c00189{transform:matrix(0.221529,-0.007318,0.008254,0.249864,0,0);-ms-transform:matrix(0.221529,-0.007318,0.008254,0.249864,0,0);-webkit-transform:matrix(0.221529,-0.007318,0.008254,0.249864,0,0);}
.m14_c00189{transform:matrix(0.222448,-0.006229,0.006997,0.249902,0,0);-ms-transform:matrix(0.222448,-0.006229,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222448,-0.006229,0.006997,0.249902,0,0);}
.m7c_c00189{transform:matrix(0.223584,-0.006708,0.007497,0.249888,0,0);-ms-transform:matrix(0.223584,-0.006708,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223584,-0.006708,0.007497,0.249888,0,0);}
.m1e_c00189{transform:matrix(0.223922,-0.006270,0.006997,0.249902,0,0);-ms-transform:matrix(0.223922,-0.006270,0.006997,0.249902,0,0);-webkit-transform:matrix(0.223922,-0.006270,0.006997,0.249902,0,0);}
.m87_c00189{transform:matrix(0.224192,-0.007855,0.008753,0.249847,0,0);-ms-transform:matrix(0.224192,-0.007855,0.008753,0.249847,0,0);-webkit-transform:matrix(0.224192,-0.007855,0.008753,0.249847,0,0);}
.m45_c00189{transform:matrix(0.225149,-0.004278,0.004749,0.249955,0,0);-ms-transform:matrix(0.225149,-0.004278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225149,-0.004278,0.004749,0.249955,0,0);}
.mc2_c00189{transform:matrix(0.226578,-0.006797,0.007497,0.249888,0,0);-ms-transform:matrix(0.226578,-0.006797,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226578,-0.006797,0.007497,0.249888,0,0);}
.md3_c00189{transform:matrix(0.226888,-0.003176,0.003500,0.249976,0,0);-ms-transform:matrix(0.226888,-0.003176,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226888,-0.003176,0.003500,0.249976,0,0);}
.m9_c00189{transform:matrix(0.229125,-0.007569,0.008254,0.249864,0,0);-ms-transform:matrix(0.229125,-0.007569,0.008254,0.249864,0,0);-webkit-transform:matrix(0.229125,-0.007569,0.008254,0.249864,0,0);}
.m36_c00189{transform:matrix(0.230637,-0.005997,0.006498,0.249916,0,0);-ms-transform:matrix(0.230637,-0.005997,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230637,-0.005997,0.006498,0.249916,0,0);}
.mb1_c00189{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);}
.m78_c00189{transform:matrix(0.231186,-0.006936,0.007497,0.249888,0,0);-ms-transform:matrix(0.231186,-0.006936,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231186,-0.006936,0.007497,0.249888,0,0);}
.m46_c00189{transform:matrix(0.233778,-0.004442,0.004749,0.249955,0,0);-ms-transform:matrix(0.233778,-0.004442,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233778,-0.004442,0.004749,0.249955,0,0);}
.mc4_c00189{transform:matrix(0.235069,-0.007052,0.007497,0.249888,0,0);-ms-transform:matrix(0.235069,-0.007052,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235069,-0.007052,0.007497,0.249888,0,0);}
.m92_c00189{transform:matrix(0.236137,-0.004250,0.004499,0.249960,0,0);-ms-transform:matrix(0.236137,-0.004250,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236137,-0.004250,0.004499,0.249960,0,0);}
.m41_c00189{transform:matrix(0.236452,-0.004493,0.004749,0.249955,0,0);-ms-transform:matrix(0.236452,-0.004493,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236452,-0.004493,0.004749,0.249955,0,0);}
.m81_c00189{transform:matrix(0.236564,-0.007097,0.007497,0.249888,0,0);-ms-transform:matrix(0.236564,-0.007097,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236564,-0.007097,0.007497,0.249888,0,0);}
.ma8_c00189{transform:matrix(0.236802,-0.006630,0.006997,0.249902,0,0);-ms-transform:matrix(0.236802,-0.006630,0.006997,0.249902,0,0);-webkit-transform:matrix(0.236802,-0.006630,0.006997,0.249902,0,0);}
.ma6_c00189{transform:matrix(0.237172,-0.006641,0.006997,0.249902,0,0);-ms-transform:matrix(0.237172,-0.006641,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237172,-0.006641,0.006997,0.249902,0,0);}
.m3a_c00189{transform:matrix(0.237252,-0.004508,0.004749,0.249955,0,0);-ms-transform:matrix(0.237252,-0.004508,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237252,-0.004508,0.004749,0.249955,0,0);}
.m38_c00189{transform:matrix(0.238085,-0.006190,0.006498,0.249916,0,0);-ms-transform:matrix(0.238085,-0.006190,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238085,-0.006190,0.006498,0.249916,0,0);}
.m3f_c00189{transform:matrix(0.239117,-0.004543,0.004749,0.249955,0,0);-ms-transform:matrix(0.239117,-0.004543,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239117,-0.004543,0.004749,0.249955,0,0);}
.m7a_c00189{transform:matrix(0.242261,-0.007268,0.007497,0.249888,0,0);-ms-transform:matrix(0.242261,-0.007268,0.007497,0.249888,0,0);-webkit-transform:matrix(0.242261,-0.007268,0.007497,0.249888,0,0);}
.ma9_c00189{transform:matrix(0.243939,-0.006830,0.006997,0.249902,0,0);-ms-transform:matrix(0.243939,-0.006830,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243939,-0.006830,0.006997,0.249902,0,0);}
.m37_c00189{transform:matrix(0.247826,-0.006443,0.006498,0.249916,0,0);-ms-transform:matrix(0.247826,-0.006443,0.006498,0.249916,0,0);-webkit-transform:matrix(0.247826,-0.006443,0.006498,0.249916,0,0);}
.m97_c00189{transform:matrix(0.249689,-0.004245,0.004249,0.249964,0,0);-ms-transform:matrix(0.249689,-0.004245,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249689,-0.004245,0.004249,0.249964,0,0);}
.m5f_c00189{transform:matrix(0.253563,-0.007860,0.007746,0.249880,0,0);-ms-transform:matrix(0.253563,-0.007860,0.007746,0.249880,0,0);-webkit-transform:matrix(0.253563,-0.007860,0.007746,0.249880,0,0);}
.mab_c00189{transform:matrix(0.255505,-0.007154,0.006997,0.249902,0,0);-ms-transform:matrix(0.255505,-0.007154,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255505,-0.007154,0.006997,0.249902,0,0);}
.m3e_c00189{transform:matrix(0.255979,-0.004864,0.004749,0.249955,0,0);-ms-transform:matrix(0.255979,-0.004864,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255979,-0.004864,0.004749,0.249955,0,0);}
.ma7_c00189{transform:matrix(0.256190,-0.007173,0.006997,0.249902,0,0);-ms-transform:matrix(0.256190,-0.007173,0.006997,0.249902,0,0);-webkit-transform:matrix(0.256190,-0.007173,0.006997,0.249902,0,0);}
.m72_c00189{transform:matrix(0.256349,-0.010777,0.010501,0.249779,0,0);-ms-transform:matrix(0.256349,-0.010777,0.010501,0.249779,0,0);-webkit-transform:matrix(0.256349,-0.010777,0.010501,0.249779,0,0);}
.m2d_c00189{transform:matrix(0.257154,-0.007200,0.006997,0.249902,0,0);-ms-transform:matrix(0.257154,-0.007200,0.006997,0.249902,0,0);-webkit-transform:matrix(0.257154,-0.007200,0.006997,0.249902,0,0);}
.mda_c00189{transform:matrix(0.259645,-0.003635,0.003500,0.249976,0,0);-ms-transform:matrix(0.259645,-0.003635,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259645,-0.003635,0.003500,0.249976,0,0);}
.mbc_c00189{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);}
.mc9_c00189{transform:matrix(0.261503,-0.006538,0.006248,0.249922,0,0);-ms-transform:matrix(0.261503,-0.006538,0.006248,0.249922,0,0);-webkit-transform:matrix(0.261503,-0.006538,0.006248,0.249922,0,0);}
.m56_c00189{transform:matrix(0.262752,-0.008679,0.008254,0.249864,0,0);-ms-transform:matrix(0.262752,-0.008679,0.008254,0.249864,0,0);-webkit-transform:matrix(0.262752,-0.008679,0.008254,0.249864,0,0);}
.mac_c00189{transform:matrix(0.265301,-0.007428,0.006997,0.249902,0,0);-ms-transform:matrix(0.265301,-0.007428,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265301,-0.007428,0.006997,0.249902,0,0);}
.mce_c00189{transform:matrix(0.267556,-0.006689,0.006248,0.249922,0,0);-ms-transform:matrix(0.267556,-0.006689,0.006248,0.249922,0,0);-webkit-transform:matrix(0.267556,-0.006689,0.006248,0.249922,0,0);}
.m6e_c00189{transform:matrix(0.270671,-0.011380,0.010501,0.249779,0,0);-ms-transform:matrix(0.270671,-0.011380,0.010501,0.249779,0,0);-webkit-transform:matrix(0.270671,-0.011380,0.010501,0.249779,0,0);}
.m32_c00189{transform:matrix(0.270853,-0.008126,0.007497,0.249888,0,0);-ms-transform:matrix(0.270853,-0.008126,0.007497,0.249888,0,0);-webkit-transform:matrix(0.270853,-0.008126,0.007497,0.249888,0,0);}
.mb4_c00189{transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);}
.ma5_c00189{transform:matrix(0.274163,-0.007677,0.006997,0.249902,0,0);-ms-transform:matrix(0.274163,-0.007677,0.006997,0.249902,0,0);-webkit-transform:matrix(0.274163,-0.007677,0.006997,0.249902,0,0);}
.m61_c00189{transform:matrix(0.276032,-0.008557,0.007746,0.249880,0,0);-ms-transform:matrix(0.276032,-0.008557,0.007746,0.249880,0,0);-webkit-transform:matrix(0.276032,-0.008557,0.007746,0.249880,0,0);}
.m57_c00189{transform:matrix(0.281916,-0.009313,0.008254,0.249864,0,0);-ms-transform:matrix(0.281916,-0.009313,0.008254,0.249864,0,0);-webkit-transform:matrix(0.281916,-0.009313,0.008254,0.249864,0,0);}
.mb5_c00189{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);}
.m24_c00189{transform:matrix(0.284888,-0.007977,0.006997,0.249902,0,0);-ms-transform:matrix(0.284888,-0.007977,0.006997,0.249902,0,0);-webkit-transform:matrix(0.284888,-0.007977,0.006997,0.249902,0,0);}
.md5_c00189{transform:matrix(0.290342,-0.004065,0.003500,0.249976,0,0);-ms-transform:matrix(0.290342,-0.004065,0.003500,0.249976,0,0);-webkit-transform:matrix(0.290342,-0.004065,0.003500,0.249976,0,0);}
.mc3_c00189{transform:matrix(0.290399,-0.008712,0.007497,0.249888,0,0);-ms-transform:matrix(0.290399,-0.008712,0.007497,0.249888,0,0);-webkit-transform:matrix(0.290399,-0.008712,0.007497,0.249888,0,0);}
.maa_c00189{transform:matrix(0.300667,-0.008419,0.006997,0.249902,0,0);-ms-transform:matrix(0.300667,-0.008419,0.006997,0.249902,0,0);-webkit-transform:matrix(0.300667,-0.008419,0.006997,0.249902,0,0);}
.m6c_c00189{transform:matrix(0.308512,-0.009564,0.007746,0.249880,0,0);-ms-transform:matrix(0.308512,-0.009564,0.007746,0.249880,0,0);-webkit-transform:matrix(0.308512,-0.009564,0.007746,0.249880,0,0);}
.m77_c00189{transform:matrix(0.313054,-0.009392,0.007497,0.249888,0,0);-ms-transform:matrix(0.313054,-0.009392,0.007497,0.249888,0,0);-webkit-transform:matrix(0.313054,-0.009392,0.007497,0.249888,0,0);}
.m1b_c00189{transform:matrix(0.322009,-0.009016,0.006997,0.249902,0,0);-ms-transform:matrix(0.322009,-0.009016,0.006997,0.249902,0,0);-webkit-transform:matrix(0.322009,-0.009016,0.006997,0.249902,0,0);}
.m7d_c00189{transform:matrix(0.323759,-0.009713,0.007497,0.249888,0,0);-ms-transform:matrix(0.323759,-0.009713,0.007497,0.249888,0,0);-webkit-transform:matrix(0.323759,-0.009713,0.007497,0.249888,0,0);}
.m63_c00189{transform:matrix(0.327608,-0.010156,0.007746,0.249880,0,0);-ms-transform:matrix(0.327608,-0.010156,0.007746,0.249880,0,0);-webkit-transform:matrix(0.327608,-0.010156,0.007746,0.249880,0,0);}
.m23_c00189{transform:matrix(0.330440,-0.009252,0.006997,0.249902,0,0);-ms-transform:matrix(0.330440,-0.009252,0.006997,0.249902,0,0);-webkit-transform:matrix(0.330440,-0.009252,0.006997,0.249902,0,0);}
.m5_c00189{transform:matrix(0.331491,-0.009613,0.007247,0.249895,0,0);-ms-transform:matrix(0.331491,-0.009613,0.007247,0.249895,0,0);-webkit-transform:matrix(0.331491,-0.009613,0.007247,0.249895,0,0);}
.mb6_c00189{transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342555,0.000000,0.000000,0.250000,0,0);}
.m2c_c00189{transform:matrix(0.342891,-0.009601,0.006997,0.249902,0,0);-ms-transform:matrix(0.342891,-0.009601,0.006997,0.249902,0,0);-webkit-transform:matrix(0.342891,-0.009601,0.006997,0.249902,0,0);}
.mc7_c00189{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);}
.m2b_c00189{transform:matrix(0.350503,-0.009814,0.006997,0.249902,0,0);-ms-transform:matrix(0.350503,-0.009814,0.006997,0.249902,0,0);-webkit-transform:matrix(0.350503,-0.009814,0.006997,0.249902,0,0);}
.m73_c00189{transform:matrix(0.351365,-0.014772,0.010501,0.249779,0,0);-ms-transform:matrix(0.351365,-0.014772,0.010501,0.249779,0,0);-webkit-transform:matrix(0.351365,-0.014772,0.010501,0.249779,0,0);}
.m2_c00189{transform:matrix(0.390661,-0.011329,0.007247,0.249895,0,0);-ms-transform:matrix(0.390661,-0.011329,0.007247,0.249895,0,0);-webkit-transform:matrix(0.390661,-0.011329,0.007247,0.249895,0,0);}
.m3b_c00189{transform:matrix(0.398438,-0.007570,0.004749,0.249955,0,0);-ms-transform:matrix(0.398438,-0.007570,0.004749,0.249955,0,0);-webkit-transform:matrix(0.398438,-0.007570,0.004749,0.249955,0,0);}
.m7_c00189{transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.454474,-0.013180,0.007247,0.249895,0,0);-ms-transform:matrix(0.454474,-0.013180,0.007247,0.249895,0,0);-webkit-transform:matrix(0.454474,-0.013180,0.007247,0.249895,0,0);}
.m50_c00189{transform:matrix(0.478804,-0.009097,0.004749,0.249955,0,0);-ms-transform:matrix(0.478804,-0.009097,0.004749,0.249955,0,0);-webkit-transform:matrix(0.478804,-0.009097,0.004749,0.249955,0,0);}
.m0_c00189{transform:matrix(0.578870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578870,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(1.383813,-0.040131,0.007247,0.249895,0,0);-ms-transform:matrix(1.383813,-0.040131,0.007247,0.249895,0,0);-webkit-transform:matrix(1.383813,-0.040131,0.007247,0.249895,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;}
.fs1_c00189{font-size:28.361919px;}
.fs1f_c00189{font-size:36.750000px;}
.fs0_c00189{font-size:39.900000px;}
.fs1b_c00189{font-size:46.218107px;}
.fs14_c00189{font-size:46.220785px;}
.fs13_c00189{font-size:49.372203px;}
.fs21_c00189{font-size:50.404939px;}
.fs19_c00189{font-size:50.407282px;}
.fs15_c00189{font-size:50.419753px;}
.fs20_c00189{font-size:51.466076px;}
.fs1e_c00189{font-size:51.473147px;}
.fs18_c00189{font-size:54.608844px;}
.fs1d_c00189{font-size:55.650000px;}
.fs22_c00189{font-size:55.655453px;}
.fs16_c00189{font-size:58.777240px;}
.fs1c_c00189{font-size:58.800000px;}
.fs9_c00189{font-size:58.819871px;}
.fs10_c00189{font-size:61.979760px;}
.fsd_c00189{font-size:63.011370px;}
.fs17_c00189{font-size:67.171669px;}
.fs6_c00189{font-size:67.226337px;}
.fs2_c00189{font-size:69.300000px;}
.fse_c00189{font-size:70.317983px;}
.fsb_c00189{font-size:70.362697px;}
.fs5_c00189{font-size:70.377572px;}
.fs8_c00189{font-size:70.381650px;}
.fs4_c00189{font-size:70.383795px;}
.fs3_c00189{font-size:71.367506px;}
.fsc_c00189{font-size:71.412887px;}
.fs11_c00189{font-size:72.441487px;}
.fs7_c00189{font-size:75.629629px;}
.fsf_c00189{font-size:76.615116px;}
.fs1a_c00189{font-size:78.776613px;}
.fs12_c00189{font-size:101.850000px;}
.fsa_c00189{font-size:114.470656px;}
.y0_c00189{bottom:0.000000px;}
.yb7_c00189{bottom:151.611000px;}
.yc5_c00189{bottom:152.281131px;}
.yc6_c00189{bottom:152.795817px;}
.yc7_c00189{bottom:153.613524px;}
.yc8_c00189{bottom:154.278948px;}
.yc9_c00189{bottom:154.914513px;}
.yca_c00189{bottom:155.178234px;}
.ybf_c00189{bottom:170.371500px;}
.yc0_c00189{bottom:170.689734px;}
.yb0_c00189{bottom:171.189000px;}
.yc1_c00189{bottom:171.287919px;}
.yc2_c00189{bottom:172.319859px;}
.yb1_c00189{bottom:172.578105px;}
.yc3_c00189{bottom:172.716297px;}
.yc4_c00189{bottom:173.079618px;}
.yb2_c00189{bottom:174.165480px;}
.yb3_c00189{bottom:175.370130px;}
.yb4_c00189{bottom:175.631400px;}
.yb5_c00189{bottom:176.345325px;}
.yb6_c00189{bottom:177.276645px;}
.yaf_c00189{bottom:191.847000px;}
.yae_c00189{bottom:210.961500px;}
.yad_c00189{bottom:230.182500px;}
.ya4_c00189{bottom:248.947500px;}
.ya5_c00189{bottom:249.643398px;}
.ya6_c00189{bottom:251.157330px;}
.ya7_c00189{bottom:251.955834px;}
.ya8_c00189{bottom:252.383058px;}
.ya9_c00189{bottom:253.682034px;}
.yaa_c00189{bottom:254.178894px;}
.yab_c00189{bottom:254.589318px;}
.yac_c00189{bottom:255.556830px;}
.y9d_c00189{bottom:261.372000px;}
.y9e_c00189{bottom:262.593987px;}
.y9f_c00189{bottom:263.077119px;}
.ya0_c00189{bottom:263.835552px;}
.ya1_c00189{bottom:264.277461px;}
.ya2_c00189{bottom:264.731772px;}
.ya3_c00189{bottom:265.309596px;}
.y96_c00189{bottom:287.013000px;}
.y97_c00189{bottom:287.466416px;}
.y98_c00189{bottom:287.866613px;}
.y99_c00189{bottom:288.344126px;}
.y9a_c00189{bottom:289.432109px;}
.y9b_c00189{bottom:289.909469px;}
.y9c_c00189{bottom:290.373237px;}
.y8e_c00189{bottom:306.183000px;}
.y8f_c00189{bottom:306.527736px;}
.y90_c00189{bottom:307.052616px;}
.y91_c00189{bottom:307.514424px;}
.y92_c00189{bottom:307.713927px;}
.y93_c00189{bottom:308.695836px;}
.y94_c00189{bottom:309.191043px;}
.y95_c00189{bottom:309.867447px;}
.yb8_c00189{bottom:312.126000px;}
.yb9_c00189{bottom:313.090613px;}
.yba_c00189{bottom:313.663013px;}
.ybb_c00189{bottom:314.400375px;}
.ybc_c00189{bottom:315.353025px;}
.ybd_c00189{bottom:317.020613px;}
.ybe_c00189{bottom:317.337600px;}
.y88_c00189{bottom:363.973500px;}
.y89_c00189{bottom:364.934340px;}
.y8a_c00189{bottom:365.375031px;}
.y8b_c00189{bottom:366.193122px;}
.y8c_c00189{bottom:366.652479px;}
.y8d_c00189{bottom:367.103574px;}
.y86_c00189{bottom:380.985000px;}
.y87_c00189{bottom:382.697392px;}
.y82_c00189{bottom:399.604500px;}
.y83_c00189{bottom:400.130592px;}
.y84_c00189{bottom:401.150142px;}
.y85_c00189{bottom:401.650824px;}
.y7d_c00189{bottom:419.838555px;}
.y7e_c00189{bottom:420.548145px;}
.y7f_c00189{bottom:421.796655px;}
.y80_c00189{bottom:422.129865px;}
.y81_c00189{bottom:422.713545px;}
.y76_c00189{bottom:434.707500px;}
.y77_c00189{bottom:435.299520px;}
.y78_c00189{bottom:435.916560px;}
.y79_c00189{bottom:436.914840px;}
.y7a_c00189{bottom:437.544885px;}
.y7b_c00189{bottom:438.162150px;}
.y7c_c00189{bottom:439.226175px;}
.y6e_c00189{bottom:469.825500px;}
.y6f_c00189{bottom:470.593533px;}
.y70_c00189{bottom:471.957924px;}
.y71_c00189{bottom:474.167271px;}
.y75_c00189{bottom:475.473000px;}
.y72_c00189{bottom:475.509927px;}
.y73_c00189{bottom:475.839480px;}
.y74_c00189{bottom:478.808922px;}
.y64_c00189{bottom:493.291069px;}
.y65_c00189{bottom:494.304366px;}
.y66_c00189{bottom:495.877413px;}
.y67_c00189{bottom:496.437455px;}
.y68_c00189{bottom:498.054199px;}
.y69_c00189{bottom:498.848576px;}
.y6a_c00189{bottom:499.768245px;}
.y6b_c00189{bottom:500.911380px;}
.y6c_c00189{bottom:502.979613px;}
.y6d_c00189{bottom:504.305817px;}
.y59_c00189{bottom:515.175000px;}
.y5a_c00189{bottom:515.938111px;}
.y5b_c00189{bottom:516.858114px;}
.y5c_c00189{bottom:518.070648px;}
.y5d_c00189{bottom:519.100948px;}
.y5e_c00189{bottom:519.830859px;}
.y5f_c00189{bottom:521.968650px;}
.y60_c00189{bottom:522.442067px;}
.y61_c00189{bottom:522.910322px;}
.y62_c00189{bottom:524.751628px;}
.y63_c00189{bottom:525.849401px;}
.y56_c00189{bottom:538.395000px;}
.y57_c00189{bottom:539.323174px;}
.y58_c00189{bottom:539.922174px;}
.y53_c00189{bottom:561.075000px;}
.y54_c00189{bottom:563.257653px;}
.y55_c00189{bottom:564.740723px;}
.y51_c00189{bottom:610.208932px;}
.y52_c00189{bottom:616.709760px;}
.y46_c00189{bottom:629.641018px;}
.y47_c00189{bottom:630.695653px;}
.y48_c00189{bottom:631.653238px;}
.y49_c00189{bottom:632.253975px;}
.y4a_c00189{bottom:633.377935px;}
.y4b_c00189{bottom:634.791774px;}
.y4c_c00189{bottom:635.516839px;}
.y4d_c00189{bottom:636.511333px;}
.y4e_c00189{bottom:637.119270px;}
.y4f_c00189{bottom:638.109585px;}
.y50_c00189{bottom:638.866525px;}
.y3d_c00189{bottom:651.518106px;}
.y3e_c00189{bottom:652.844695px;}
.y3f_c00189{bottom:654.580914px;}
.y40_c00189{bottom:655.023006px;}
.y41_c00189{bottom:655.872201px;}
.y42_c00189{bottom:657.450932px;}
.y43_c00189{bottom:658.101390px;}
.y44_c00189{bottom:659.550022px;}
.y45_c00189{bottom:663.233448px;}
.y3b_c00189{bottom:678.586500px;}
.y3c_c00189{bottom:679.639603px;}
.y31_c00189{bottom:697.692000px;}
.y32_c00189{bottom:698.794095px;}
.y33_c00189{bottom:700.343670px;}
.y34_c00189{bottom:700.997790px;}
.y35_c00189{bottom:702.061815px;}
.y36_c00189{bottom:703.626000px;}
.y37_c00189{bottom:704.682276px;}
.y38_c00189{bottom:706.107765px;}
.y39_c00189{bottom:707.456073px;}
.y3a_c00189{bottom:708.046455px;}
.y28_c00189{bottom:720.622038px;}
.y29_c00189{bottom:722.064684px;}
.y2a_c00189{bottom:722.761974px;}
.y2b_c00189{bottom:723.900780px;}
.y2c_c00189{bottom:724.840026px;}
.y2d_c00189{bottom:726.680658px;}
.y2e_c00189{bottom:727.126290px;}
.y2f_c00189{bottom:727.900446px;}
.y30_c00189{bottom:729.164646px;}
.y1f_c00189{bottom:743.581056px;}
.y20_c00189{bottom:744.250614px;}
.y21_c00189{bottom:744.849420px;}
.y22_c00189{bottom:746.409810px;}
.y23_c00189{bottom:747.360588px;}
.y24_c00189{bottom:748.404096px;}
.y25_c00189{bottom:750.255462px;}
.y26_c00189{bottom:750.989712px;}
.y27_c00189{bottom:752.967282px;}
.y15_c00189{bottom:765.460500px;}
.y16_c00189{bottom:766.028340px;}
.y17_c00189{bottom:767.979744px;}
.y18_c00189{bottom:768.833898px;}
.y19_c00189{bottom:769.363938px;}
.y1a_c00189{bottom:770.213934px;}
.y1b_c00189{bottom:771.277374px;}
.y1c_c00189{bottom:772.556400px;}
.y1d_c00189{bottom:773.139570px;}
.y1e_c00189{bottom:774.189150px;}
.yf_c00189{bottom:788.682000px;}
.y10_c00189{bottom:789.394659px;}
.y11_c00189{bottom:790.336377px;}
.y12_c00189{bottom:791.340219px;}
.y13_c00189{bottom:793.365573px;}
.y14_c00189{bottom:794.914302px;}
.y9_c00189{bottom:810.553500px;}
.ya_c00189{bottom:811.465933px;}
.yb_c00189{bottom:812.650023px;}
.yc_c00189{bottom:815.003352px;}
.yd_c00189{bottom:816.861483px;}
.ye_c00189{bottom:818.492013px;}
.y8_c00189{bottom:898.557000px;}
.y2_c00189{bottom:907.486500px;}
.y3_c00189{bottom:909.039494px;}
.y4_c00189{bottom:909.406111px;}
.y5_c00189{bottom:909.603036px;}
.y6_c00189{bottom:910.235178px;}
.y7_c00189{bottom:911.793130px;}
.y1_c00189{bottom:918.543000px;}
.h3_c00189{height:28.361919px;}
.h21_c00189{height:36.750000px;}
.h2_c00189{height:39.900000px;}
.h1d_c00189{height:46.218107px;}
.h16_c00189{height:46.220785px;}
.h15_c00189{height:49.372203px;}
.h23_c00189{height:50.404939px;}
.h1b_c00189{height:50.407282px;}
.h17_c00189{height:50.419753px;}
.h22_c00189{height:51.466076px;}
.h20_c00189{height:51.473147px;}
.h1a_c00189{height:54.608844px;}
.h1f_c00189{height:55.650000px;}
.h24_c00189{height:55.655453px;}
.h18_c00189{height:58.777240px;}
.h1e_c00189{height:58.800000px;}
.hb_c00189{height:58.819871px;}
.h12_c00189{height:61.979760px;}
.hf_c00189{height:63.011370px;}
.h19_c00189{height:67.171669px;}
.h8_c00189{height:67.226337px;}
.h4_c00189{height:69.300000px;}
.h10_c00189{height:70.317983px;}
.hd_c00189{height:70.362697px;}
.h7_c00189{height:70.377572px;}
.ha_c00189{height:70.381650px;}
.h6_c00189{height:70.383795px;}
.h5_c00189{height:71.367506px;}
.he_c00189{height:71.412887px;}
.h13_c00189{height:72.441487px;}
.h9_c00189{height:75.629629px;}
.h11_c00189{height:76.615116px;}
.h1c_c00189{height:78.776613px;}
.h14_c00189{height:101.850000px;}
.hc_c00189{height:114.470656px;}
.h0_c00189{height:1008.450000px;}
.h1_c00189{height:1008.750000px;}
.w0_c00189{width:678.450000px;}
.w1_c00189{width:678.750000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:70.740000px;}
.x8_c00189{left:118.800000px;}
.x70_c00189{left:139.755000px;}
.x2_c00189{left:140.947500px;}
.x75_c00189{left:142.560000px;}
.x79_c00189{left:143.640000px;}
.x7c_c00189{left:145.804500px;}
.x6c_c00189{left:153.549000px;}
.x14_c00189{left:163.165500px;}
.x9_c00189{left:165.388500px;}
.x1e_c00189{left:166.657380px;}
.x26_c00189{left:167.782110px;}
.x47_c00189{left:170.023500px;}
.x49_c00189{left:171.394500px;}
.x58_c00189{left:172.872000px;}
.x15_c00189{left:183.445500px;}
.x71_c00189{left:186.754500px;}
.xf_c00189{left:188.866500px;}
.x1f_c00189{left:191.481594px;}
.xa_c00189{left:193.010350px;}
.x3_c00189{left:194.499000px;}
.x4a_c00189{left:196.011000px;}
.x48_c00189{left:197.302873px;}
.x76_c00189{left:199.530000px;}
.x6d_c00189{left:201.861000px;}
.x2f_c00189{left:203.452500px;}
.x3e_c00189{left:205.664157px;}
.x4_c00189{left:207.141000px;}
.x38_c00189{left:210.063064px;}
.x77_c00189{left:211.950000px;}
.x5_c00189{left:213.931500px;}
.x27_c00189{left:215.873922px;}
.x10_c00189{left:219.244500px;}
.x59_c00189{left:223.593228px;}
.x4b_c00189{left:225.688500px;}
.x6e_c00189{left:227.517000px;}
.xb_c00189{left:228.855969px;}
.x7a_c00189{left:232.740000px;}
.x64_c00189{left:233.890065px;}
.x6_c00189{left:235.729500px;}
.x28_c00189{left:239.115120px;}
.x69_c00189{left:243.955500px;}
.x7d_c00189{left:245.020500px;}
.x5e_c00189{left:246.237000px;}
.x11_c00189{left:251.626500px;}
.x16_c00189{left:253.138500px;}
.x30_c00189{left:255.105000px;}
.x53_c00189{left:258.298586px;}
.x78_c00189{left:260.280000px;}
.x3f_c00189{left:261.303138px;}
.x65_c00189{left:263.448375px;}
.x4c_c00189{left:264.802500px;}
.x39_c00189{left:266.061797px;}
.x72_c00189{left:268.977000px;}
.x20_c00189{left:271.490862px;}
.x29_c00189{left:277.052478px;}
.x3a_c00189{left:280.326547px;}
.x17_c00189{left:283.644000px;}
.x7e_c00189{left:285.175500px;}
.x5f_c00189{left:286.539000px;}
.x7_c00189{left:289.452000px;}
.x73_c00189{left:291.201000px;}
.x6a_c00189{left:292.832074px;}
.x7f_c00189{left:293.884500px;}
.x4d_c00189{left:298.038000px;}
.xc_c00189{left:300.097656px;}
.x40_c00189{left:301.425769px;}
.x18_c00189{left:302.574000px;}
.x45_c00189{left:304.629978px;}
.x21_c00189{left:306.680328px;}
.x2a_c00189{left:308.345214px;}
.x36_c00189{left:309.415500px;}
.x6f_c00189{left:311.215500px;}
.x31_c00189{left:312.376500px;}
.x5a_c00189{left:315.918810px;}
.x12_c00189{left:316.960500px;}
.x60_c00189{left:319.815000px;}
.x4e_c00189{left:321.583500px;}
.x7b_c00189{left:322.920000px;}
.x74_c00189{left:326.412000px;}
.x66_c00189{left:329.334210px;}
.x54_c00189{left:330.842318px;}
.x19_c00189{left:332.931000px;}
.x68_c00189{left:338.389500px;}
.x61_c00189{left:340.816500px;}
.x6b_c00189{left:342.647207px;}
.x22_c00189{left:345.342420px;}
.x80_c00189{left:348.726000px;}
.x41_c00189{left:351.908634px;}
.x67_c00189{left:353.644575px;}
.xd_c00189{left:356.348349px;}
.x3b_c00189{left:358.673206px;}
.x62_c00189{left:361.392000px;}
.x37_c00189{left:364.842000px;}
.x13_c00189{left:366.919500px;}
.x2b_c00189{left:369.685770px;}
.x1a_c00189{left:370.911000px;}
.x32_c00189{left:375.538500px;}
.x42_c00189{left:377.828716px;}
.x3c_c00189{left:379.639918px;}
.x2c_c00189{left:384.528930px;}
.x5b_c00189{left:386.549109px;}
.x55_c00189{left:387.974584px;}
.x4f_c00189{left:390.544500px;}
.x86_c00189{left:392.674500px;}
.x63_c00189{left:396.859500px;}
.xe_c00189{left:405.708939px;}
.x5c_c00189{left:409.050000px;}
.x2d_c00189{left:410.354502px;}
.x23_c00189{left:413.928852px;}
.x87_c00189{left:415.405500px;}
.x1b_c00189{left:416.590500px;}
.x50_c00189{left:420.921000px;}
.x3d_c00189{left:426.346759px;}
.x8b_c00189{left:427.842903px;}
.x43_c00189{left:435.078441px;}
.x1c_c00189{left:437.418000px;}
.x24_c00189{left:441.117108px;}
.x81_c00189{left:449.200500px;}
.x2e_c00189{left:452.502150px;}
.x5d_c00189{left:458.460000px;}
.x33_c00189{left:470.991000px;}
.x1d_c00189{left:474.903000px;}
.x82_c00189{left:478.695000px;}
.x51_c00189{left:480.318000px;}
.x8c_c00189{left:482.392647px;}
.x46_c00189{left:485.194167px;}
.x56_c00189{left:495.005886px;}
.x44_c00189{left:497.502282px;}
.x25_c00189{left:514.371666px;}
.x52_c00189{left:515.730000px;}
.x83_c00189{left:516.801000px;}
.x34_c00189{left:522.849000px;}
.x8d_c00189{left:526.708017px;}
.x88_c00189{left:531.843000px;}
.x57_c00189{left:539.191235px;}
.x35_c00189{left:545.556000px;}
.x89_c00189{left:560.160000px;}
.x8e_c00189{left:569.104929px;}
.x84_c00189{left:583.504500px;}
.x8a_c00189{left:586.111500px;}
.x85_c00189{left:596.184000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fs1_c00189{font-size:25.210594pt;}
.fs1f_c00189{font-size:32.666667pt;}
.fs0_c00189{font-size:35.466667pt;}
.fs1b_c00189{font-size:41.082762pt;}
.fs14_c00189{font-size:41.085143pt;}
.fs13_c00189{font-size:43.886402pt;}
.fs21_c00189{font-size:44.804390pt;}
.fs19_c00189{font-size:44.806473pt;}
.fs15_c00189{font-size:44.817558pt;}
.fs20_c00189{font-size:45.747623pt;}
.fs1e_c00189{font-size:45.753909pt;}
.fs18_c00189{font-size:48.541195pt;}
.fs1d_c00189{font-size:49.466667pt;}
.fs22_c00189{font-size:49.471514pt;}
.fs16_c00189{font-size:52.246436pt;}
.fs1c_c00189{font-size:52.266667pt;}
.fs9_c00189{font-size:52.284330pt;}
.fs10_c00189{font-size:55.093120pt;}
.fsd_c00189{font-size:56.010107pt;}
.fs17_c00189{font-size:59.708150pt;}
.fs6_c00189{font-size:59.756744pt;}
.fs2_c00189{font-size:61.600000pt;}
.fse_c00189{font-size:62.504874pt;}
.fsb_c00189{font-size:62.544620pt;}
.fs5_c00189{font-size:62.557842pt;}
.fs8_c00189{font-size:62.561467pt;}
.fs4_c00189{font-size:62.563373pt;}
.fs3_c00189{font-size:63.437783pt;}
.fsc_c00189{font-size:63.478121pt;}
.fs11_c00189{font-size:64.392433pt;}
.fs7_c00189{font-size:67.226337pt;}
.fsf_c00189{font-size:68.102326pt;}
.fs1a_c00189{font-size:70.023656pt;}
.fs12_c00189{font-size:90.533333pt;}
.fsa_c00189{font-size:101.751695pt;}
.y0_c00189{bottom:0.000000pt;}
.yb7_c00189{bottom:134.765333pt;}
.yc5_c00189{bottom:135.361005pt;}
.yc6_c00189{bottom:135.818504pt;}
.yc7_c00189{bottom:136.545355pt;}
.yc8_c00189{bottom:137.136843pt;}
.yc9_c00189{bottom:137.701789pt;}
.yca_c00189{bottom:137.936208pt;}
.ybf_c00189{bottom:151.441333pt;}
.yc0_c00189{bottom:151.724208pt;}
.yb0_c00189{bottom:152.168000pt;}
.yc1_c00189{bottom:152.255928pt;}
.yc2_c00189{bottom:153.173208pt;}
.yb1_c00189{bottom:153.402760pt;}
.yc3_c00189{bottom:153.525597pt;}
.yc4_c00189{bottom:153.848549pt;}
.yb2_c00189{bottom:154.813760pt;}
.yb3_c00189{bottom:155.884560pt;}
.yb4_c00189{bottom:156.116800pt;}
.yb5_c00189{bottom:156.751400pt;}
.yb6_c00189{bottom:157.579240pt;}
.yaf_c00189{bottom:170.530667pt;}
.yae_c00189{bottom:187.521333pt;}
.yad_c00189{bottom:204.606667pt;}
.ya4_c00189{bottom:221.286667pt;}
.ya5_c00189{bottom:221.905243pt;}
.ya6_c00189{bottom:223.250960pt;}
.ya7_c00189{bottom:223.960741pt;}
.ya8_c00189{bottom:224.340496pt;}
.ya9_c00189{bottom:225.495141pt;}
.yaa_c00189{bottom:225.936795pt;}
.yab_c00189{bottom:226.301616pt;}
.yac_c00189{bottom:227.161627pt;}
.y9d_c00189{bottom:232.330667pt;}
.y9e_c00189{bottom:233.416877pt;}
.y9f_c00189{bottom:233.846328pt;}
.ya0_c00189{bottom:234.520491pt;}
.ya1_c00189{bottom:234.913299pt;}
.ya2_c00189{bottom:235.317131pt;}
.ya3_c00189{bottom:235.830752pt;}
.y96_c00189{bottom:255.122667pt;}
.y97_c00189{bottom:255.525703pt;}
.y98_c00189{bottom:255.881433pt;}
.y99_c00189{bottom:256.305889pt;}
.y9a_c00189{bottom:257.272985pt;}
.y9b_c00189{bottom:257.697305pt;}
.y9c_c00189{bottom:258.109544pt;}
.y8e_c00189{bottom:272.162667pt;}
.y8f_c00189{bottom:272.469099pt;}
.y90_c00189{bottom:272.935659pt;}
.y91_c00189{bottom:273.346155pt;}
.y92_c00189{bottom:273.523491pt;}
.y93_c00189{bottom:274.396299pt;}
.y94_c00189{bottom:274.836483pt;}
.y95_c00189{bottom:275.437731pt;}
.yb8_c00189{bottom:277.445333pt;}
.yb9_c00189{bottom:278.302767pt;}
.yba_c00189{bottom:278.811567pt;}
.ybb_c00189{bottom:279.467000pt;}
.ybc_c00189{bottom:280.313800pt;}
.ybd_c00189{bottom:281.796100pt;}
.ybe_c00189{bottom:282.077867pt;}
.y88_c00189{bottom:323.532000pt;}
.y89_c00189{bottom:324.386080pt;}
.y8a_c00189{bottom:324.777805pt;}
.y8b_c00189{bottom:325.504997pt;}
.y8c_c00189{bottom:325.913315pt;}
.y8d_c00189{bottom:326.314288pt;}
.y86_c00189{bottom:338.653333pt;}
.y87_c00189{bottom:340.175460pt;}
.y82_c00189{bottom:355.204000pt;}
.y83_c00189{bottom:355.671637pt;}
.y84_c00189{bottom:356.577904pt;}
.y85_c00189{bottom:357.022955pt;}
.y7d_c00189{bottom:373.189827pt;}
.y7e_c00189{bottom:373.820573pt;}
.y7f_c00189{bottom:374.930360pt;}
.y80_c00189{bottom:375.226547pt;}
.y81_c00189{bottom:375.745373pt;}
.y76_c00189{bottom:386.406667pt;}
.y77_c00189{bottom:386.932907pt;}
.y78_c00189{bottom:387.481387pt;}
.y79_c00189{bottom:388.368747pt;}
.y7a_c00189{bottom:388.928787pt;}
.y7b_c00189{bottom:389.477467pt;}
.y7c_c00189{bottom:390.423267pt;}
.y6e_c00189{bottom:417.622667pt;}
.y6f_c00189{bottom:418.305363pt;}
.y70_c00189{bottom:419.518155pt;}
.y71_c00189{bottom:421.482019pt;}
.y75_c00189{bottom:422.642667pt;}
.y72_c00189{bottom:422.675491pt;}
.y73_c00189{bottom:422.968427pt;}
.y74_c00189{bottom:425.607931pt;}
.y64_c00189{bottom:438.480951pt;}
.y65_c00189{bottom:439.381659pt;}
.y66_c00189{bottom:440.779923pt;}
.y67_c00189{bottom:441.277737pt;}
.y68_c00189{bottom:442.714844pt;}
.y69_c00189{bottom:443.420956pt;}
.y6a_c00189{bottom:444.238440pt;}
.y6b_c00189{bottom:445.254560pt;}
.y6c_c00189{bottom:447.092989pt;}
.y6d_c00189{bottom:448.271837pt;}
.y59_c00189{bottom:457.933333pt;}
.y5a_c00189{bottom:458.611655pt;}
.y5b_c00189{bottom:459.429435pt;}
.y5c_c00189{bottom:460.507243pt;}
.y5d_c00189{bottom:461.423065pt;}
.y5e_c00189{bottom:462.071875pt;}
.y5f_c00189{bottom:463.972133pt;}
.y60_c00189{bottom:464.392948pt;}
.y61_c00189{bottom:464.809175pt;}
.y62_c00189{bottom:466.445892pt;}
.y63_c00189{bottom:467.421689pt;}
.y56_c00189{bottom:478.573333pt;}
.y57_c00189{bottom:479.398377pt;}
.y58_c00189{bottom:479.930821pt;}
.y53_c00189{bottom:498.733333pt;}
.y54_c00189{bottom:500.673469pt;}
.y55_c00189{bottom:501.991753pt;}
.y51_c00189{bottom:542.407940pt;}
.y52_c00189{bottom:548.186453pt;}
.y46_c00189{bottom:559.680905pt;}
.y47_c00189{bottom:560.618359pt;}
.y48_c00189{bottom:561.469545pt;}
.y49_c00189{bottom:562.003533pt;}
.y4a_c00189{bottom:563.002609pt;}
.y4b_c00189{bottom:564.259355pt;}
.y4c_c00189{bottom:564.903857pt;}
.y4d_c00189{bottom:565.787852pt;}
.y4e_c00189{bottom:566.328240pt;}
.y4f_c00189{bottom:567.208520pt;}
.y50_c00189{bottom:567.881356pt;}
.y3d_c00189{bottom:579.127205pt;}
.y3e_c00189{bottom:580.306396pt;}
.y3f_c00189{bottom:581.849701pt;}
.y40_c00189{bottom:582.242672pt;}
.y41_c00189{bottom:582.997512pt;}
.y42_c00189{bottom:584.400828pt;}
.y43_c00189{bottom:584.979013pt;}
.y44_c00189{bottom:586.266687pt;}
.y45_c00189{bottom:589.540843pt;}
.y3b_c00189{bottom:603.188000pt;}
.y3c_c00189{bottom:604.124092pt;}
.y31_c00189{bottom:620.170667pt;}
.y32_c00189{bottom:621.150307pt;}
.y33_c00189{bottom:622.527707pt;}
.y34_c00189{bottom:623.109147pt;}
.y35_c00189{bottom:624.054947pt;}
.y36_c00189{bottom:625.445333pt;}
.y37_c00189{bottom:626.384245pt;}
.y38_c00189{bottom:627.651347pt;}
.y39_c00189{bottom:628.849843pt;}
.y3a_c00189{bottom:629.374627pt;}
.y28_c00189{bottom:640.552923pt;}
.y29_c00189{bottom:641.835275pt;}
.y2a_c00189{bottom:642.455088pt;}
.y2b_c00189{bottom:643.467360pt;}
.y2c_c00189{bottom:644.302245pt;}
.y2d_c00189{bottom:645.938363pt;}
.y2e_c00189{bottom:646.334480pt;}
.y2f_c00189{bottom:647.022619pt;}
.y30_c00189{bottom:648.146352pt;}
.y1f_c00189{bottom:660.960939pt;}
.y20_c00189{bottom:661.556101pt;}
.y21_c00189{bottom:662.088373pt;}
.y22_c00189{bottom:663.475387pt;}
.y23_c00189{bottom:664.320523pt;}
.y24_c00189{bottom:665.248085pt;}
.y25_c00189{bottom:666.893744pt;}
.y26_c00189{bottom:667.546411pt;}
.y27_c00189{bottom:669.304251pt;}
.y15_c00189{bottom:680.409333pt;}
.y16_c00189{bottom:680.914080pt;}
.y17_c00189{bottom:682.648661pt;}
.y18_c00189{bottom:683.407909pt;}
.y19_c00189{bottom:683.879056pt;}
.y1a_c00189{bottom:684.634608pt;}
.y1b_c00189{bottom:685.579888pt;}
.y1c_c00189{bottom:686.716800pt;}
.y1d_c00189{bottom:687.235173pt;}
.y1e_c00189{bottom:688.168133pt;}
.yf_c00189{bottom:701.050667pt;}
.y10_c00189{bottom:701.684141pt;}
.y11_c00189{bottom:702.521224pt;}
.y12_c00189{bottom:703.413528pt;}
.y13_c00189{bottom:705.213843pt;}
.y14_c00189{bottom:706.590491pt;}
.y9_c00189{bottom:720.492000pt;}
.ya_c00189{bottom:721.303052pt;}
.yb_c00189{bottom:722.355576pt;}
.yc_c00189{bottom:724.447424pt;}
.yd_c00189{bottom:726.099096pt;}
.ye_c00189{bottom:727.548456pt;}
.y8_c00189{bottom:798.717333pt;}
.y2_c00189{bottom:806.654667pt;}
.y3_c00189{bottom:808.035105pt;}
.y4_c00189{bottom:808.360988pt;}
.y5_c00189{bottom:808.536032pt;}
.y6_c00189{bottom:809.097936pt;}
.y7_c00189{bottom:810.482783pt;}
.y1_c00189{bottom:816.482667pt;}
.h3_c00189{height:25.210594pt;}
.h21_c00189{height:32.666667pt;}
.h2_c00189{height:35.466667pt;}
.h1d_c00189{height:41.082762pt;}
.h16_c00189{height:41.085143pt;}
.h15_c00189{height:43.886402pt;}
.h23_c00189{height:44.804390pt;}
.h1b_c00189{height:44.806473pt;}
.h17_c00189{height:44.817558pt;}
.h22_c00189{height:45.747623pt;}
.h20_c00189{height:45.753909pt;}
.h1a_c00189{height:48.541195pt;}
.h1f_c00189{height:49.466667pt;}
.h24_c00189{height:49.471514pt;}
.h18_c00189{height:52.246436pt;}
.h1e_c00189{height:52.266667pt;}
.hb_c00189{height:52.284330pt;}
.h12_c00189{height:55.093120pt;}
.hf_c00189{height:56.010107pt;}
.h19_c00189{height:59.708150pt;}
.h8_c00189{height:59.756744pt;}
.h4_c00189{height:61.600000pt;}
.h10_c00189{height:62.504874pt;}
.hd_c00189{height:62.544620pt;}
.h7_c00189{height:62.557842pt;}
.ha_c00189{height:62.561467pt;}
.h6_c00189{height:62.563373pt;}
.h5_c00189{height:63.437783pt;}
.he_c00189{height:63.478121pt;}
.h13_c00189{height:64.392433pt;}
.h9_c00189{height:67.226337pt;}
.h11_c00189{height:68.102326pt;}
.h1c_c00189{height:70.023656pt;}
.h14_c00189{height:90.533333pt;}
.hc_c00189{height:101.751695pt;}
.h0_c00189{height:896.400000pt;}
.h1_c00189{height:896.666667pt;}
.w0_c00189{width:603.066667pt;}
.w1_c00189{width:603.333333pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:62.880000pt;}
.x8_c00189{left:105.600000pt;}
.x70_c00189{left:124.226667pt;}
.x2_c00189{left:125.286667pt;}
.x75_c00189{left:126.720000pt;}
.x79_c00189{left:127.680000pt;}
.x7c_c00189{left:129.604000pt;}
.x6c_c00189{left:136.488000pt;}
.x14_c00189{left:145.036000pt;}
.x9_c00189{left:147.012000pt;}
.x1e_c00189{left:148.139893pt;}
.x26_c00189{left:149.139653pt;}
.x47_c00189{left:151.132000pt;}
.x49_c00189{left:152.350667pt;}
.x58_c00189{left:153.664000pt;}
.x15_c00189{left:163.062667pt;}
.x71_c00189{left:166.004000pt;}
.xf_c00189{left:167.881333pt;}
.x1f_c00189{left:170.205861pt;}
.xa_c00189{left:171.564756pt;}
.x3_c00189{left:172.888000pt;}
.x4a_c00189{left:174.232000pt;}
.x48_c00189{left:175.380332pt;}
.x76_c00189{left:177.360000pt;}
.x6d_c00189{left:179.432000pt;}
.x2f_c00189{left:180.846667pt;}
.x3e_c00189{left:182.812584pt;}
.x4_c00189{left:184.125333pt;}
.x38_c00189{left:186.722724pt;}
.x77_c00189{left:188.400000pt;}
.x5_c00189{left:190.161333pt;}
.x27_c00189{left:191.887931pt;}
.x10_c00189{left:194.884000pt;}
.x59_c00189{left:198.749536pt;}
.x4b_c00189{left:200.612000pt;}
.x6e_c00189{left:202.237333pt;}
.xb_c00189{left:203.427528pt;}
.x7a_c00189{left:206.880000pt;}
.x64_c00189{left:207.902280pt;}
.x6_c00189{left:209.537333pt;}
.x28_c00189{left:212.546773pt;}
.x69_c00189{left:216.849333pt;}
.x7d_c00189{left:217.796000pt;}
.x5e_c00189{left:218.877333pt;}
.x11_c00189{left:223.668000pt;}
.x16_c00189{left:225.012000pt;}
.x30_c00189{left:226.760000pt;}
.x53_c00189{left:229.598743pt;}
.x78_c00189{left:231.360000pt;}
.x3f_c00189{left:232.269456pt;}
.x65_c00189{left:234.176333pt;}
.x4c_c00189{left:235.380000pt;}
.x39_c00189{left:236.499375pt;}
.x72_c00189{left:239.090667pt;}
.x20_c00189{left:241.325211pt;}
.x29_c00189{left:246.268869pt;}
.x3a_c00189{left:249.179153pt;}
.x17_c00189{left:252.128000pt;}
.x7e_c00189{left:253.489333pt;}
.x5f_c00189{left:254.701333pt;}
.x7_c00189{left:257.290667pt;}
.x73_c00189{left:258.845333pt;}
.x6a_c00189{left:260.295177pt;}
.x7f_c00189{left:261.230667pt;}
.x4d_c00189{left:264.922667pt;}
.xc_c00189{left:266.753472pt;}
.x40_c00189{left:267.934017pt;}
.x18_c00189{left:268.954667pt;}
.x45_c00189{left:270.782203pt;}
.x21_c00189{left:272.604736pt;}
.x2a_c00189{left:274.084635pt;}
.x36_c00189{left:275.036000pt;}
.x6f_c00189{left:276.636000pt;}
.x31_c00189{left:277.668000pt;}
.x5a_c00189{left:280.816720pt;}
.x12_c00189{left:281.742667pt;}
.x60_c00189{left:284.280000pt;}
.x4e_c00189{left:285.852000pt;}
.x7b_c00189{left:287.040000pt;}
.x74_c00189{left:290.144000pt;}
.x66_c00189{left:292.741520pt;}
.x54_c00189{left:294.082060pt;}
.x19_c00189{left:295.938667pt;}
.x68_c00189{left:300.790667pt;}
.x61_c00189{left:302.948000pt;}
.x6b_c00189{left:304.575295pt;}
.x22_c00189{left:306.971040pt;}
.x80_c00189{left:309.978667pt;}
.x41_c00189{left:312.807675pt;}
.x67_c00189{left:314.350733pt;}
.xd_c00189{left:316.754088pt;}
.x3b_c00189{left:318.820628pt;}
.x62_c00189{left:321.237333pt;}
.x37_c00189{left:324.304000pt;}
.x13_c00189{left:326.150667pt;}
.x2b_c00189{left:328.609573pt;}
.x1a_c00189{left:329.698667pt;}
.x32_c00189{left:333.812000pt;}
.x42_c00189{left:335.847748pt;}
.x3c_c00189{left:337.457705pt;}
.x2c_c00189{left:341.803493pt;}
.x5b_c00189{left:343.599208pt;}
.x55_c00189{left:344.866297pt;}
.x4f_c00189{left:347.150667pt;}
.x86_c00189{left:349.044000pt;}
.x63_c00189{left:352.764000pt;}
.xe_c00189{left:360.630168pt;}
.x5c_c00189{left:363.600000pt;}
.x2d_c00189{left:364.759557pt;}
.x23_c00189{left:367.936757pt;}
.x87_c00189{left:369.249333pt;}
.x1b_c00189{left:370.302667pt;}
.x50_c00189{left:374.152000pt;}
.x3d_c00189{left:378.974897pt;}
.x8b_c00189{left:380.304803pt;}
.x43_c00189{left:386.736392pt;}
.x1c_c00189{left:388.816000pt;}
.x24_c00189{left:392.104096pt;}
.x81_c00189{left:399.289333pt;}
.x2e_c00189{left:402.224133pt;}
.x5d_c00189{left:407.520000pt;}
.x33_c00189{left:418.658667pt;}
.x1d_c00189{left:422.136000pt;}
.x82_c00189{left:425.506667pt;}
.x51_c00189{left:426.949333pt;}
.x8c_c00189{left:428.793464pt;}
.x46_c00189{left:431.283704pt;}
.x56_c00189{left:440.005232pt;}
.x44_c00189{left:442.224251pt;}
.x25_c00189{left:457.219259pt;}
.x52_c00189{left:458.426667pt;}
.x83_c00189{left:459.378667pt;}
.x34_c00189{left:464.754667pt;}
.x8d_c00189{left:468.184904pt;}
.x88_c00189{left:472.749333pt;}
.x57_c00189{left:479.281097pt;}
.x35_c00189{left:484.938667pt;}
.x89_c00189{left:497.920000pt;}
.x8e_c00189{left:505.871048pt;}
.x84_c00189{left:518.670667pt;}
.x8a_c00189{left:520.988000pt;}
.x85_c00189{left:529.941333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m1_c00190{transform:matrix(0.002600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002600,0.000000,0.000000,0.250000,0,0);}
.mad_c00190{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.mac_c00190{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00190{transform:matrix(0.036310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036310,0.000000,0.000000,0.250000,0,0);}
.mfb_c00190{transform:matrix(0.057145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057145,0.000000,0.000000,0.250000,0,0);}
.m104_c00190{transform:matrix(0.077624,-0.007801,0.025000,0.248747,0,0);-ms-transform:matrix(0.077624,-0.007801,0.025000,0.248747,0,0);-webkit-transform:matrix(0.077624,-0.007801,0.025000,0.248747,0,0);}
.mf3_c00190{transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077725,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);}
.md5_c00190{transform:matrix(0.107905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107905,0.000000,0.000000,0.250000,0,0);}
.m99_c00190{transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);}
.m46_c00190{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.meb_c00190{transform:matrix(0.130605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130605,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{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);}
.ma2_c00190{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);}
.mde_c00190{transform:matrix(0.146755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146755,0.000000,0.000000,0.250000,0,0);}
.ma1_c00190{transform:matrix(0.148110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148110,0.000000,0.000000,0.250000,0,0);}
.mcb_c00190{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);}
.mfe_c00190{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);}
.m13_c00190{transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);}
.m84_c00190{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);}
.m34_c00190{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);}
.m7e_c00190{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);}
.m80_c00190{transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{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);}
.me3_c00190{transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);}
.ma4_c00190{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);}
.me1_c00190{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);}
.m15_c00190{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);}
.m7d_c00190{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);}
.m61_c00190{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);}
.m4d_c00190{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);}
.m60_c00190{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);}
.me7_c00190{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);}
.m83_c00190{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);}
.m27_c00190{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);}
.m5e_c00190{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);}
.m86_c00190{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);}
.m88_c00190{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);}
.ma8_c00190{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);}
.m32_c00190{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);}
.m82_c00190{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);}
.mf_c00190{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);}
.m87_c00190{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);}
.md8_c00190{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m31_c00190{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);}
.m1c_c00190{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);}
.ma3_c00190{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);}
.me6_c00190{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);}
.m5b_c00190{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_c00190{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);}
.mef_c00190{transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);}
.m6e_c00190{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);}
.m1b_c00190{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);}
.m44_c00190{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);}
.m10_c00190{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);}
.m30_c00190{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);}
.mbf_c00190{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);}
.m1d_c00190{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);}
.mb4_c00190{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);}
.m7c_c00190{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);}
.m5d_c00190{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);}
.m5a_c00190{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);}
.mea_c00190{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);}
.mb0_c00190{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);}
.m78_c00190{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{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);}
.m62_c00190{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);}
.me0_c00190{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);}
.m53_c00190{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);}
.m89_c00190{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);}
.m8c_c00190{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);}
.m105_c00190{transform:matrix(0.180730,-0.018164,0.025000,0.248747,0,0);-ms-transform:matrix(0.180730,-0.018164,0.025000,0.248747,0,0);-webkit-transform:matrix(0.180730,-0.018164,0.025000,0.248747,0,0);}
.maf_c00190{transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{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);}
.m52_c00190{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);}
.m21_c00190{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);}
.ma6_c00190{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);}
.ma5_c00190{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);}
.mdf_c00190{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);}
.m6b_c00190{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);}
.me2_c00190{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);}
.m2b_c00190{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);}
.m85_c00190{transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{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);}
.m12_c00190{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);}
.m3c_c00190{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);}
.mf2_c00190{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);}
.m100_c00190{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);}
.mbc_c00190{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);}
.mf9_c00190{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);}
.m33_c00190{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_c00190{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);}
.mc2_c00190{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);}
.m50_c00190{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);}
.m7f_c00190{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);}
.md1_c00190{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);}
.mb1_c00190{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);}
.me_c00190{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);}
.m1e_c00190{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);}
.m3b_c00190{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_c00190{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);}
.m3f_c00190{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);}
.mbe_c00190{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);}
.m2a_c00190{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);}
.m3d_c00190{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);}
.m20_c00190{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);}
.md6_c00190{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);}
.md7_c00190{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);}
.m74_c00190{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);}
.m40_c00190{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);}
.mff_c00190{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);}
.m8d_c00190{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);}
.mc9_c00190{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);}
.mb_c00190{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);}
.m54_c00190{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);}
.m38_c00190{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);}
.mfa_c00190{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_c00190{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);}
.m37_c00190{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);}
.m72_c00190{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);}
.m64_c00190{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);}
.mbd_c00190{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);}
.m3e_c00190{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);}
.mc5_c00190{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);}
.mf1_c00190{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);}
.md3_c00190{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);}
.mb8_c00190{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);}
.m51_c00190{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);}
.m24_c00190{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);}
.mdd_c00190{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);}
.m4a_c00190{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);}
.m95_c00190{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);}
.m28_c00190{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);}
.m19_c00190{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);}
.m6c_c00190{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);}
.mc1_c00190{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);}
.m41_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);}
.m55_c00190{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);}
.mca_c00190{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);}
.m48_c00190{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);}
.m6a_c00190{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);}
.md2_c00190{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);}
.m79_c00190{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);}
.m9f_c00190{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);}
.m77_c00190{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);}
.m2e_c00190{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);}
.m81_c00190{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);}
.mce_c00190{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);}
.m2c_c00190{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);}
.md_c00190{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);}
.m7b_c00190{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);}
.m76_c00190{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);}
.m49_c00190{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);}
.m66_c00190{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);}
.mab_c00190{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);}
.mb6_c00190{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);}
.m6_c00190{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);}
.mae_c00190{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);}
.mc7_c00190{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);}
.m45_c00190{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);}
.m8f_c00190{transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210785,0.000000,0.000000,0.250000,0,0);}
.mec_c00190{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);}
.m8b_c00190{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);}
.mb2_c00190{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);}
.m9d_c00190{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);}
.m11_c00190{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);}
.mf4_c00190{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);}
.md0_c00190{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_c00190{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);}
.m26_c00190{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);}
.m16_c00190{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_c00190{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);}
.m4e_c00190{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);}
.m47_c00190{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);}
.mb7_c00190{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);}
.mc4_c00190{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{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);}
.mf0_c00190{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);}
.m42_c00190{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);}
.mb3_c00190{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);}
.m39_c00190{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);}
.m14_c00190{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);}
.ma9_c00190{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{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);}
.m5f_c00190{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00190{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);}
.m70_c00190{transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);}
.mc0_c00190{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{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);}
.m2d_c00190{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);}
.me8_c00190{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);}
.mc3_c00190{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);}
.m59_c00190{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);}
.mc8_c00190{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);}
.m8e_c00190{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mc6_c00190{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);}
.m4b_c00190{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);}
.m8_c00190{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_c00190{transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);}
.m9b_c00190{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);}
.m63_c00190{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);}
.mb5_c00190{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);}
.m7_c00190{transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{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);}
.ma7_c00190{transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{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);}
.maa_c00190{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);}
.m2f_c00190{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);}
.m103_c00190{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);}
.mfc_c00190{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);}
.m29_c00190{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);}
.m23_c00190{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);}
.m8a_c00190{transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);}
.mb9_c00190{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);}
.mee_c00190{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);}
.m25_c00190{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);}
.mc_c00190{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);}
.m9c_c00190{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);}
.mf7_c00190{transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);}
.mda_c00190{transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);}
.m9e_c00190{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);}
.mdb_c00190{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);}
.mbb_c00190{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);}
.m6d_c00190{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.m102_c00190{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);}
.m75_c00190{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.md9_c00190{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m98_c00190{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);}
.m69_c00190{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);}
.m36_c00190{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);}
.m93_c00190{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);}
.m22_c00190{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.md4_c00190{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.mf6_c00190{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);}
.m17_c00190{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);}
.mcd_c00190{transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268100,0.000000,0.000000,0.250000,0,0);}
.m90_c00190{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.mf8_c00190{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{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);}
.m3_c00190{transform:matrix(0.277010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277010,0.000000,0.000000,0.250000,0,0);}
.m73_c00190{transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277610,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{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);}
.m71_c00190{transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292200,0.000000,0.000000,0.250000,0,0);}
.me4_c00190{transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);}
.m67_c00190{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);}
.m101_c00190{transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313430,0.000000,0.000000,0.250000,0,0);}
.mdc_c00190{transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);}
.mcf_c00190{transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);}
.mf5_c00190{transform:matrix(0.345050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345050,0.000000,0.000000,0.250000,0,0);}
.mcc_c00190{transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);}
.me9_c00190{transform:matrix(0.356265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356265,0.000000,0.000000,0.250000,0,0);}
.med_c00190{transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);}
.me5_c00190{transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384940,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.406940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406940,0.000000,0.000000,0.250000,0,0);}
.m97_c00190{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);}
.mfd_c00190{transform:matrix(0.437100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437100,0.000000,0.000000,0.250000,0,0);}
.m96_c00190{transform:matrix(0.462630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462630,0.000000,0.000000,0.250000,0,0);}
.m92_c00190{transform:matrix(1.317815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.317815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.317815,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(1.506540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.506540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.506540,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;}
.fse_c00190{font-size:22.050000px;}
.fs18_c00190{font-size:34.650000px;}
.fs19_c00190{font-size:43.050000px;}
.fs17_c00190{font-size:47.250000px;}
.fs12_c00190{font-size:48.300000px;}
.fsf_c00190{font-size:49.350000px;}
.fs1b_c00190{font-size:49.350617px;}
.fs14_c00190{font-size:50.400000px;}
.fs10_c00190{font-size:51.450000px;}
.fs1a_c00190{font-size:51.450643px;}
.fs13_c00190{font-size:53.550000px;}
.fs15_c00190{font-size:54.600000px;}
.fs16_c00190{font-size:59.850000px;}
.fs6_c00190{font-size:61.950000px;}
.fs11_c00190{font-size:63.000000px;}
.fsa_c00190{font-size:66.150000px;}
.fs9_c00190{font-size:67.200000px;}
.fs8_c00190{font-size:68.250000px;}
.fs4_c00190{font-size:69.300000px;}
.fs5_c00190{font-size:70.350000px;}
.fs3_c00190{font-size:71.400000px;}
.fsc_c00190{font-size:74.550000px;}
.fsb_c00190{font-size:75.600000px;}
.fs7_c00190{font-size:78.750000px;}
.fs0_c00190{font-size:85.050000px;}
.fsd_c00190{font-size:99.750000px;}
.fs2_c00190{font-size:133.350000px;}
.fs1_c00190{font-size:147.000000px;}
.y0_c00190{bottom:0.000000px;}
.y2c_c00190{bottom:107.050260px;}
.y29_c00190{bottom:107.460000px;}
.y2a_c00190{bottom:115.560000px;}
.y2b_c00190{bottom:120.180000px;}
.y28_c00190{bottom:168.036000px;}
.y27_c00190{bottom:190.686000px;}
.y26_c00190{bottom:205.264500px;}
.y25_c00190{bottom:226.530000px;}
.y24_c00190{bottom:244.324500px;}
.y21_c00190{bottom:262.197000px;}
.y23_c00190{bottom:269.461500px;}
.y20_c00190{bottom:279.294000px;}
.y22_c00190{bottom:286.992000px;}
.y1f_c00190{bottom:296.622000px;}
.y1c_c00190{bottom:310.770000px;}
.y1e_c00190{bottom:315.991500px;}
.y1b_c00190{bottom:327.690000px;}
.y1d_c00190{bottom:333.955500px;}
.y1a_c00190{bottom:361.396500px;}
.y19_c00190{bottom:399.873000px;}
.y18_c00190{bottom:421.531500px;}
.y17_c00190{bottom:444.349500px;}
.y16_c00190{bottom:466.630500px;}
.y15_c00190{bottom:490.254000px;}
.y14_c00190{bottom:513.000000px;}
.y13_c00190{bottom:534.868500px;}
.y12_c00190{bottom:557.746500px;}
.y11_c00190{bottom:580.413000px;}
.y10_c00190{bottom:599.251500px;}
.yf_c00190{bottom:647.064000px;}
.ye_c00190{bottom:669.277500px;}
.yd_c00190{bottom:691.834500px;}
.yc_c00190{bottom:714.361500px;}
.yb_c00190{bottom:737.295000px;}
.ya_c00190{bottom:760.116000px;}
.y9_c00190{bottom:782.790000px;}
.y8_c00190{bottom:804.951000px;}
.y7_c00190{bottom:828.280500px;}
.y6_c00190{bottom:872.581500px;}
.y2_c00190{bottom:910.981500px;}
.y3_c00190{bottom:913.144500px;}
.y4_c00190{bottom:913.708500px;}
.y5_c00190{bottom:914.847000px;}
.y1_c00190{bottom:933.111000px;}
.h10_c00190{height:22.050000px;}
.h1a_c00190{height:34.650000px;}
.h1b_c00190{height:43.050000px;}
.h19_c00190{height:47.250000px;}
.h14_c00190{height:48.300000px;}
.h11_c00190{height:49.350000px;}
.h1d_c00190{height:49.350617px;}
.h16_c00190{height:50.400000px;}
.h12_c00190{height:51.450000px;}
.h1c_c00190{height:51.450643px;}
.h15_c00190{height:53.550000px;}
.h17_c00190{height:54.600000px;}
.h18_c00190{height:59.850000px;}
.h8_c00190{height:61.950000px;}
.h13_c00190{height:63.000000px;}
.hc_c00190{height:66.150000px;}
.hb_c00190{height:67.200000px;}
.ha_c00190{height:68.250000px;}
.h6_c00190{height:69.300000px;}
.h7_c00190{height:70.350000px;}
.h5_c00190{height:71.400000px;}
.he_c00190{height:74.550000px;}
.hd_c00190{height:75.600000px;}
.h9_c00190{height:78.750000px;}
.h2_c00190{height:85.050000px;}
.hf_c00190{height:99.750000px;}
.h4_c00190{height:133.350000px;}
.h3_c00190{height:147.000000px;}
.h1_c00190{height:1005.000000px;}
.h0_c00190{height:1005.150000px;}
.w0_c00190{width:735.750000px;}
.x0_c00190{left:0.000000px;}
.x9c_c00190{left:63.450000px;}
.x85_c00190{left:92.880000px;}
.x8d_c00190{left:98.550000px;}
.x98_c00190{left:100.170000px;}
.x9d_c00190{left:101.790000px;}
.x86_c00190{left:102.870000px;}
.x6f_c00190{left:105.840000px;}
.x79_c00190{left:108.540000px;}
.x76_c00190{left:121.230000px;}
.x7e_c00190{left:125.010000px;}
.x2a_c00190{left:126.360000px;}
.x7a_c00190{left:129.600000px;}
.x1f_c00190{left:132.030000px;}
.x73_c00190{left:135.000000px;}
.x8_c00190{left:136.620000px;}
.x30_c00190{left:137.700000px;}
.x11_c00190{left:138.780000px;}
.x17_c00190{left:140.130000px;}
.x45_c00190{left:141.480000px;}
.x63_c00190{left:143.910000px;}
.x70_c00190{left:145.260000px;}
.x7f_c00190{left:150.390000px;}
.x99_c00190{left:156.330000px;}
.x74_c00190{left:159.570000px;}
.x9_c00190{left:161.730000px;}
.x58_c00190{left:162.810000px;}
.x36_c00190{left:164.970000px;}
.x12_c00190{left:166.590000px;}
.x87_c00190{left:167.670000px;}
.x56_c00190{left:169.020000px;}
.x18_c00190{left:171.180000px;}
.x6_c00190{left:172.258500px;}
.x25_c00190{left:177.930000px;}
.x2_c00190{left:179.559000px;}
.x60_c00190{left:180.630000px;}
.x64_c00190{left:184.950000px;}
.x19_c00190{left:187.650000px;}
.x4b_c00190{left:190.080000px;}
.x2b_c00190{left:191.970000px;}
.x7b_c00190{left:196.560000px;}
.xa_c00190{left:203.850000px;}
.x26_c00190{left:204.930000px;}
.x13_c00190{left:207.090000px;}
.x9e_c00190{left:208.980000px;}
.x1a_c00190{left:211.410000px;}
.x75_c00190{left:215.190000px;}
.x59_c00190{left:216.810000px;}
.x37_c00190{left:218.700000px;}
.x46_c00190{left:220.590000px;}
.x8e_c00190{left:225.180000px;}
.xb_c00190{left:227.070000px;}
.x5a_c00190{left:231.660000px;}
.x80_c00190{left:234.360000px;}
.x31_c00190{left:238.950000px;}
.x27_c00190{left:242.190000px;}
.x20_c00190{left:245.700000px;}
.x81_c00190{left:247.590000px;}
.x14_c00190{left:249.210000px;}
.x65_c00190{left:251.100000px;}
.x90_c00190{left:252.180000px;}
.x2c_c00190{left:253.260000px;}
.x38_c00190{left:257.580000px;}
.x9a_c00190{left:259.470000px;}
.x71_c00190{left:260.550000px;}
.xc_c00190{left:264.330000px;}
.x1_c00190{left:267.570000px;}
.x4c_c00190{left:270.000000px;}
.x1b_c00190{left:275.670000px;}
.x21_c00190{left:277.560000px;}
.x77_c00190{left:278.910000px;}
.x51_c00190{left:284.310000px;}
.x5d_c00190{left:287.550000px;}
.x2d_c00190{left:288.630000px;}
.x4d_c00190{left:292.680000px;}
.x7c_c00190{left:296.190000px;}
.x39_c00190{left:299.160000px;}
.x78_c00190{left:301.050000px;}
.x88_c00190{left:302.670000px;}
.x1c_c00190{left:305.370000px;}
.x3_c00190{left:306.780000px;}
.x7d_c00190{left:308.610000px;}
.x32_c00190{left:312.660000px;}
.x91_c00190{left:316.170000px;}
.x28_c00190{left:317.250000px;}
.x22_c00190{left:319.950000px;}
.x47_c00190{left:321.300000px;}
.x72_c00190{left:323.190000px;}
.xd_c00190{left:328.590000px;}
.x42_c00190{left:329.940000px;}
.x2e_c00190{left:335.340000px;}
.x4e_c00190{left:337.500000px;}
.x4_c00190{left:339.916500px;}
.x3d_c00190{left:341.550000px;}
.x5b_c00190{left:343.710000px;}
.x92_c00190{left:344.790000px;}
.x61_c00190{left:346.140000px;}
.x3a_c00190{left:350.190000px;}
.x23_c00190{left:355.320000px;}
.x48_c00190{left:358.560000px;}
.x2f_c00190{left:360.180000px;}
.xe_c00190{left:361.800000px;}
.x29_c00190{left:364.500000px;}
.x3e_c00190{left:365.580000px;}
.x93_c00190{left:370.710000px;}
.x4f_c00190{left:375.300000px;}
.x1d_c00190{left:380.970000px;}
.x67_c00190{left:382.050000px;}
.x43_c00190{left:383.130000px;}
.x62_c00190{left:386.370000px;}
.x52_c00190{left:387.990000px;}
.x33_c00190{left:391.500000px;}
.x24_c00190{left:393.390000px;}
.x57_c00190{left:395.820000px;}
.x7_c00190{left:398.248500px;}
.x49_c00190{left:399.600000px;}
.x5c_c00190{left:404.190000px;}
.x5_c00190{left:406.852500px;}
.x6e_c00190{left:408.780000px;}
.x3f_c00190{left:412.020000px;}
.x34_c00190{left:416.340000px;}
.x3b_c00190{left:417.420000px;}
.x82_c00190{left:420.930000px;}
.x15_c00190{left:424.440000px;}
.x1e_c00190{left:427.410000px;}
.x53_c00190{left:429.030000px;}
.x94_c00190{left:430.920000px;}
.x40_c00190{left:435.510000px;}
.xf_c00190{left:439.560000px;}
.x4a_c00190{left:441.180000px;}
.x68_c00190{left:446.310000px;}
.x83_c00190{left:453.330000px;}
.x35_c00190{left:454.410000px;}
.x3c_c00190{left:456.030000px;}
.x16_c00190{left:460.620000px;}
.x54_c00190{left:461.970000px;}
.x10_c00190{left:466.830000px;}
.x69_c00190{left:471.690000px;}
.x41_c00190{left:474.930000px;}
.x5e_c00190{left:480.870000px;}
.x6a_c00190{left:481.950000px;}
.x55_c00190{left:483.570000px;}
.x50_c00190{left:491.130000px;}
.x5f_c00190{left:507.060000px;}
.x89_c00190{left:514.350000px;}
.x6b_c00190{left:515.700000px;}
.x95_c00190{left:519.210000px;}
.x9b_c00190{left:524.340000px;}
.x8a_c00190{left:525.960000px;}
.x44_c00190{left:527.310000px;}
.x96_c00190{left:537.840000px;}
.x8b_c00190{left:542.700000px;}
.x6c_c00190{left:543.780000px;}
.x84_c00190{left:545.130000px;}
.x97_c00190{left:549.720000px;}
.x6d_c00190{left:553.770000px;}
.x66_c00190{left:563.220000px;}
.x8c_c00190{left:570.240000px;}
.x8f_c00190{left:601.830000px;}
.xa2_c00190{left:618.846150px;}
.xa0_c00190{left:621.810000px;}
.xa1_c00190{left:626.964000px;}
.x9f_c00190{left:633.420000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:0.000000pt;}
.fse_c00190{font-size:19.600000pt;}
.fs18_c00190{font-size:30.800000pt;}
.fs19_c00190{font-size:38.266667pt;}
.fs17_c00190{font-size:42.000000pt;}
.fs12_c00190{font-size:42.933333pt;}
.fsf_c00190{font-size:43.866667pt;}
.fs1b_c00190{font-size:43.867215pt;}
.fs14_c00190{font-size:44.800000pt;}
.fs10_c00190{font-size:45.733333pt;}
.fs1a_c00190{font-size:45.733905pt;}
.fs13_c00190{font-size:47.600000pt;}
.fs15_c00190{font-size:48.533333pt;}
.fs16_c00190{font-size:53.200000pt;}
.fs6_c00190{font-size:55.066667pt;}
.fs11_c00190{font-size:56.000000pt;}
.fsa_c00190{font-size:58.800000pt;}
.fs9_c00190{font-size:59.733333pt;}
.fs8_c00190{font-size:60.666667pt;}
.fs4_c00190{font-size:61.600000pt;}
.fs5_c00190{font-size:62.533333pt;}
.fs3_c00190{font-size:63.466667pt;}
.fsc_c00190{font-size:66.266667pt;}
.fsb_c00190{font-size:67.200000pt;}
.fs7_c00190{font-size:70.000000pt;}
.fs0_c00190{font-size:75.600000pt;}
.fsd_c00190{font-size:88.666667pt;}
.fs2_c00190{font-size:118.533333pt;}
.fs1_c00190{font-size:130.666667pt;}
.y0_c00190{bottom:0.000000pt;}
.y2c_c00190{bottom:95.155787pt;}
.y29_c00190{bottom:95.520000pt;}
.y2a_c00190{bottom:102.720000pt;}
.y2b_c00190{bottom:106.826667pt;}
.y28_c00190{bottom:149.365333pt;}
.y27_c00190{bottom:169.498667pt;}
.y26_c00190{bottom:182.457333pt;}
.y25_c00190{bottom:201.360000pt;}
.y24_c00190{bottom:217.177333pt;}
.y21_c00190{bottom:233.064000pt;}
.y23_c00190{bottom:239.521333pt;}
.y20_c00190{bottom:248.261333pt;}
.y22_c00190{bottom:255.104000pt;}
.y1f_c00190{bottom:263.664000pt;}
.y1c_c00190{bottom:276.240000pt;}
.y1e_c00190{bottom:280.881333pt;}
.y1b_c00190{bottom:291.280000pt;}
.y1d_c00190{bottom:296.849333pt;}
.y1a_c00190{bottom:321.241333pt;}
.y19_c00190{bottom:355.442667pt;}
.y18_c00190{bottom:374.694667pt;}
.y17_c00190{bottom:394.977333pt;}
.y16_c00190{bottom:414.782667pt;}
.y15_c00190{bottom:435.781333pt;}
.y14_c00190{bottom:456.000000pt;}
.y13_c00190{bottom:475.438667pt;}
.y12_c00190{bottom:495.774667pt;}
.y11_c00190{bottom:515.922667pt;}
.y10_c00190{bottom:532.668000pt;}
.yf_c00190{bottom:575.168000pt;}
.ye_c00190{bottom:594.913333pt;}
.yd_c00190{bottom:614.964000pt;}
.yc_c00190{bottom:634.988000pt;}
.yb_c00190{bottom:655.373333pt;}
.ya_c00190{bottom:675.658667pt;}
.y9_c00190{bottom:695.813333pt;}
.y8_c00190{bottom:715.512000pt;}
.y7_c00190{bottom:736.249333pt;}
.y6_c00190{bottom:775.628000pt;}
.y2_c00190{bottom:809.761333pt;}
.y3_c00190{bottom:811.684000pt;}
.y4_c00190{bottom:812.185333pt;}
.y5_c00190{bottom:813.197333pt;}
.y1_c00190{bottom:829.432000pt;}
.h10_c00190{height:19.600000pt;}
.h1a_c00190{height:30.800000pt;}
.h1b_c00190{height:38.266667pt;}
.h19_c00190{height:42.000000pt;}
.h14_c00190{height:42.933333pt;}
.h11_c00190{height:43.866667pt;}
.h1d_c00190{height:43.867215pt;}
.h16_c00190{height:44.800000pt;}
.h12_c00190{height:45.733333pt;}
.h1c_c00190{height:45.733905pt;}
.h15_c00190{height:47.600000pt;}
.h17_c00190{height:48.533333pt;}
.h18_c00190{height:53.200000pt;}
.h8_c00190{height:55.066667pt;}
.h13_c00190{height:56.000000pt;}
.hc_c00190{height:58.800000pt;}
.hb_c00190{height:59.733333pt;}
.ha_c00190{height:60.666667pt;}
.h6_c00190{height:61.600000pt;}
.h7_c00190{height:62.533333pt;}
.h5_c00190{height:63.466667pt;}
.he_c00190{height:66.266667pt;}
.hd_c00190{height:67.200000pt;}
.h9_c00190{height:70.000000pt;}
.h2_c00190{height:75.600000pt;}
.hf_c00190{height:88.666667pt;}
.h4_c00190{height:118.533333pt;}
.h3_c00190{height:130.666667pt;}
.h1_c00190{height:893.333333pt;}
.h0_c00190{height:893.466667pt;}
.w0_c00190{width:654.000000pt;}
.x0_c00190{left:0.000000pt;}
.x9c_c00190{left:56.400000pt;}
.x85_c00190{left:82.560000pt;}
.x8d_c00190{left:87.600000pt;}
.x98_c00190{left:89.040000pt;}
.x9d_c00190{left:90.480000pt;}
.x86_c00190{left:91.440000pt;}
.x6f_c00190{left:94.080000pt;}
.x79_c00190{left:96.480000pt;}
.x76_c00190{left:107.760000pt;}
.x7e_c00190{left:111.120000pt;}
.x2a_c00190{left:112.320000pt;}
.x7a_c00190{left:115.200000pt;}
.x1f_c00190{left:117.360000pt;}
.x73_c00190{left:120.000000pt;}
.x8_c00190{left:121.440000pt;}
.x30_c00190{left:122.400000pt;}
.x11_c00190{left:123.360000pt;}
.x17_c00190{left:124.560000pt;}
.x45_c00190{left:125.760000pt;}
.x63_c00190{left:127.920000pt;}
.x70_c00190{left:129.120000pt;}
.x7f_c00190{left:133.680000pt;}
.x99_c00190{left:138.960000pt;}
.x74_c00190{left:141.840000pt;}
.x9_c00190{left:143.760000pt;}
.x58_c00190{left:144.720000pt;}
.x36_c00190{left:146.640000pt;}
.x12_c00190{left:148.080000pt;}
.x87_c00190{left:149.040000pt;}
.x56_c00190{left:150.240000pt;}
.x18_c00190{left:152.160000pt;}
.x6_c00190{left:153.118667pt;}
.x25_c00190{left:158.160000pt;}
.x2_c00190{left:159.608000pt;}
.x60_c00190{left:160.560000pt;}
.x64_c00190{left:164.400000pt;}
.x19_c00190{left:166.800000pt;}
.x4b_c00190{left:168.960000pt;}
.x2b_c00190{left:170.640000pt;}
.x7b_c00190{left:174.720000pt;}
.xa_c00190{left:181.200000pt;}
.x26_c00190{left:182.160000pt;}
.x13_c00190{left:184.080000pt;}
.x9e_c00190{left:185.760000pt;}
.x1a_c00190{left:187.920000pt;}
.x75_c00190{left:191.280000pt;}
.x59_c00190{left:192.720000pt;}
.x37_c00190{left:194.400000pt;}
.x46_c00190{left:196.080000pt;}
.x8e_c00190{left:200.160000pt;}
.xb_c00190{left:201.840000pt;}
.x5a_c00190{left:205.920000pt;}
.x80_c00190{left:208.320000pt;}
.x31_c00190{left:212.400000pt;}
.x27_c00190{left:215.280000pt;}
.x20_c00190{left:218.400000pt;}
.x81_c00190{left:220.080000pt;}
.x14_c00190{left:221.520000pt;}
.x65_c00190{left:223.200000pt;}
.x90_c00190{left:224.160000pt;}
.x2c_c00190{left:225.120000pt;}
.x38_c00190{left:228.960000pt;}
.x9a_c00190{left:230.640000pt;}
.x71_c00190{left:231.600000pt;}
.xc_c00190{left:234.960000pt;}
.x1_c00190{left:237.840000pt;}
.x4c_c00190{left:240.000000pt;}
.x1b_c00190{left:245.040000pt;}
.x21_c00190{left:246.720000pt;}
.x77_c00190{left:247.920000pt;}
.x51_c00190{left:252.720000pt;}
.x5d_c00190{left:255.600000pt;}
.x2d_c00190{left:256.560000pt;}
.x4d_c00190{left:260.160000pt;}
.x7c_c00190{left:263.280000pt;}
.x39_c00190{left:265.920000pt;}
.x78_c00190{left:267.600000pt;}
.x88_c00190{left:269.040000pt;}
.x1c_c00190{left:271.440000pt;}
.x3_c00190{left:272.693333pt;}
.x7d_c00190{left:274.320000pt;}
.x32_c00190{left:277.920000pt;}
.x91_c00190{left:281.040000pt;}
.x28_c00190{left:282.000000pt;}
.x22_c00190{left:284.400000pt;}
.x47_c00190{left:285.600000pt;}
.x72_c00190{left:287.280000pt;}
.xd_c00190{left:292.080000pt;}
.x42_c00190{left:293.280000pt;}
.x2e_c00190{left:298.080000pt;}
.x4e_c00190{left:300.000000pt;}
.x4_c00190{left:302.148000pt;}
.x3d_c00190{left:303.600000pt;}
.x5b_c00190{left:305.520000pt;}
.x92_c00190{left:306.480000pt;}
.x61_c00190{left:307.680000pt;}
.x3a_c00190{left:311.280000pt;}
.x23_c00190{left:315.840000pt;}
.x48_c00190{left:318.720000pt;}
.x2f_c00190{left:320.160000pt;}
.xe_c00190{left:321.600000pt;}
.x29_c00190{left:324.000000pt;}
.x3e_c00190{left:324.960000pt;}
.x93_c00190{left:329.520000pt;}
.x4f_c00190{left:333.600000pt;}
.x1d_c00190{left:338.640000pt;}
.x67_c00190{left:339.600000pt;}
.x43_c00190{left:340.560000pt;}
.x62_c00190{left:343.440000pt;}
.x52_c00190{left:344.880000pt;}
.x33_c00190{left:348.000000pt;}
.x24_c00190{left:349.680000pt;}
.x57_c00190{left:351.840000pt;}
.x7_c00190{left:353.998667pt;}
.x49_c00190{left:355.200000pt;}
.x5c_c00190{left:359.280000pt;}
.x5_c00190{left:361.646667pt;}
.x6e_c00190{left:363.360000pt;}
.x3f_c00190{left:366.240000pt;}
.x34_c00190{left:370.080000pt;}
.x3b_c00190{left:371.040000pt;}
.x82_c00190{left:374.160000pt;}
.x15_c00190{left:377.280000pt;}
.x1e_c00190{left:379.920000pt;}
.x53_c00190{left:381.360000pt;}
.x94_c00190{left:383.040000pt;}
.x40_c00190{left:387.120000pt;}
.xf_c00190{left:390.720000pt;}
.x4a_c00190{left:392.160000pt;}
.x68_c00190{left:396.720000pt;}
.x83_c00190{left:402.960000pt;}
.x35_c00190{left:403.920000pt;}
.x3c_c00190{left:405.360000pt;}
.x16_c00190{left:409.440000pt;}
.x54_c00190{left:410.640000pt;}
.x10_c00190{left:414.960000pt;}
.x69_c00190{left:419.280000pt;}
.x41_c00190{left:422.160000pt;}
.x5e_c00190{left:427.440000pt;}
.x6a_c00190{left:428.400000pt;}
.x55_c00190{left:429.840000pt;}
.x50_c00190{left:436.560000pt;}
.x5f_c00190{left:450.720000pt;}
.x89_c00190{left:457.200000pt;}
.x6b_c00190{left:458.400000pt;}
.x95_c00190{left:461.520000pt;}
.x9b_c00190{left:466.080000pt;}
.x8a_c00190{left:467.520000pt;}
.x44_c00190{left:468.720000pt;}
.x96_c00190{left:478.080000pt;}
.x8b_c00190{left:482.400000pt;}
.x6c_c00190{left:483.360000pt;}
.x84_c00190{left:484.560000pt;}
.x97_c00190{left:488.640000pt;}
.x6d_c00190{left:492.240000pt;}
.x66_c00190{left:500.640000pt;}
.x8c_c00190{left:506.880000pt;}
.x8f_c00190{left:534.960000pt;}
.xa2_c00190{left:550.085467pt;}
.xa0_c00190{left:552.720000pt;}
.xa1_c00190{left:557.301333pt;}
.x9f_c00190{left:563.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m92_c00191{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{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);}
.md5_c00191{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);}
.m5e_c00191{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);}
.med_c00191{transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.143785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143785,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{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);}
.mea_c00191{transform:matrix(0.150740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150740,0.000000,0.000000,0.250000,0,0);}
.me_c00191{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);}
.m96_c00191{transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{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);}
.md4_c00191{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);}
.m2f_c00191{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);}
.m1f_c00191{transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{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);}
.mb1_c00191{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);}
.mf_c00191{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);}
.me4_c00191{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);}
.m21_c00191{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);}
.m1e_c00191{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_c00191{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);}
.m9a_c00191{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);}
.mab_c00191{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);}
.m33_c00191{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);}
.m3f_c00191{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);}
.m31_c00191{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{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);}
.m6b_c00191{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);}
.m9c_c00191{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);}
.m70_c00191{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);}
.m15_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);}
.m46_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);}
.m8e_c00191{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);}
.m2_c00191{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);}
.me5_c00191{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);}
.m32_c00191{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);}
.m56_c00191{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);}
.m25_c00191{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);}
.m6f_c00191{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);}
.m30_c00191{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);}
.mce_c00191{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);}
.m87_c00191{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);}
.m2a_c00191{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);}
.me2_c00191{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);}
.mbb_c00191{transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);}
.m61_c00191{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);}
.mb7_c00191{transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);}
.m93_c00191{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);}
.mc1_c00191{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);}
.m20_c00191{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);}
.mb6_c00191{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);}
.m6_c00191{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);}
.m97_c00191{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);}
.mb3_c00191{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);}
.m64_c00191{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);}
.m9f_c00191{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);}
.m78_c00191{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);}
.m34_c00191{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);}
.m7a_c00191{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);}
.mb_c00191{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{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);}
.m73_c00191{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);}
.m4e_c00191{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);}
.m9d_c00191{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);}
.m2e_c00191{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);}
.m72_c00191{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);}
.m79_c00191{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);}
.m43_c00191{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_c00191{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);}
.mdf_c00191{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);}
.ma4_c00191{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);}
.m4a_c00191{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);}
.maa_c00191{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);}
.ma_c00191{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);}
.me6_c00191{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);}
.m9b_c00191{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);}
.m1b_c00191{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);}
.m13_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);}
.m57_c00191{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);}
.m2c_c00191{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);}
.md9_c00191{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);}
.m19_c00191{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);}
.m75_c00191{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);}
.m29_c00191{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);}
.m65_c00191{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_c00191{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_c00191{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);}
.mbd_c00191{transform:matrix(0.198085,0.001981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198085,0.001981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198085,0.001981,-0.002500,0.249988,0,0);}
.m85_c00191{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);}
.m95_c00191{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);}
.m6d_c00191{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);}
.m45_c00191{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);}
.md_c00191{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);}
.m18_c00191{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);}
.m89_c00191{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);}
.ma0_c00191{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);}
.m7d_c00191{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);}
.me0_c00191{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);}
.m6e_c00191{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.mda_c00191{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.mc7_c00191{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);}
.m53_c00191{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);}
.m50_c00191{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);}
.m51_c00191{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);}
.m2b_c00191{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);}
.m67_c00191{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);}
.m10_c00191{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);}
.mb4_c00191{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);}
.mb5_c00191{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);}
.m8c_c00191{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);}
.mdb_c00191{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);}
.m3a_c00191{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);}
.m40_c00191{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);}
.m9e_c00191{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);}
.m1d_c00191{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);}
.m8d_c00191{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);}
.m4d_c00191{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);}
.m6a_c00191{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);}
.m28_c00191{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_c00191{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);}
.m48_c00191{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);}
.m24_c00191{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);}
.mde_c00191{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);}
.ma9_c00191{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);}
.m0_c00191{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);}
.m27_c00191{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);}
.ma5_c00191{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);}
.m98_c00191{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);}
.m5f_c00191{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);}
.m77_c00191{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);}
.mae_c00191{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);}
.ma6_c00191{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);}
.mb8_c00191{transform:matrix(0.211684,0.002117,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211684,0.002117,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211684,0.002117,-0.002500,0.249988,0,0);}
.mec_c00191{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);}
.mdc_c00191{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);}
.m26_c00191{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);}
.mbf_c00191{transform:matrix(0.214054,0.002141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214054,0.002141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214054,0.002141,-0.002500,0.249988,0,0);}
.m59_c00191{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);}
.m44_c00191{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);}
.m58_c00191{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);}
.me3_c00191{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);}
.mb2_c00191{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);}
.mc0_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);}
.m8f_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);}
.m6c_c00191{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);}
.m22_c00191{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_c00191{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);}
.m4b_c00191{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);}
.m3e_c00191{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);}
.mbc_c00191{transform:matrix(0.220899,0.002209,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220899,0.002209,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220899,0.002209,-0.002500,0.249988,0,0);}
.m4c_c00191{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{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);}
.m17_c00191{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);}
.md7_c00191{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);}
.m38_c00191{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);}
.m7c_c00191{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);}
.mba_c00191{transform:matrix(0.224044,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224044,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224044,0.002240,-0.002500,0.249988,0,0);}
.m84_c00191{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);}
.m47_c00191{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);}
.m86_c00191{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);}
.mb9_c00191{transform:matrix(0.226454,0.002265,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226454,0.002265,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226454,0.002265,-0.002500,0.249988,0,0);}
.m35_c00191{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);}
.m55_c00191{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);}
.ma8_c00191{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);}
.m37_c00191{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);}
.m49_c00191{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{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);}
.m3d_c00191{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);}
.m42_c00191{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);}
.mc_c00191{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);}
.m83_c00191{transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);}
.m7e_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);}
.m23_c00191{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);}
.m68_c00191{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.md1_c00191{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);}
.m71_c00191{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);}
.md0_c00191{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{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);}
.m5c_c00191{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);}
.m81_c00191{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);}
.mb0_c00191{transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{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);}
.m8b_c00191{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);}
.ma3_c00191{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);}
.m14_c00191{transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{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);}
.m90_c00191{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);}
.m4f_c00191{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);}
.m1a_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);}
.m8_c00191{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);}
.m41_c00191{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);}
.m54_c00191{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);}
.m91_c00191{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{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);}
.md2_c00191{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);}
.maf_c00191{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);}
.m88_c00191{transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{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);}
.m39_c00191{transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.259120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259120,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{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);}
.md6_c00191{transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);}
.mc5_c00191{transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(0.263320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263320,0.000000,0.000000,0.250000,0,0);}
.me9_c00191{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);}
.ma7_c00191{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{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);}
.m9_c00191{transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279450,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);}
.mcd_c00191{transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289400,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292040,0.000000,0.000000,0.250000,0,0);}
.me1_c00191{transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293595,0.000000,0.000000,0.250000,0,0);}
.mbe_c00191{transform:matrix(0.295680,0.002957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.295680,0.002957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.295680,0.002957,-0.002500,0.249988,0,0);}
.m5a_c00191{transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);}
.me7_c00191{transform:matrix(0.301680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301680,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{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);}
.m5_c00191{transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309815,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320725,0.000000,0.000000,0.250000,0,0);}
.mc4_c00191{transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);}
.mdd_c00191{transform:matrix(0.327525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327525,0.000000,0.000000,0.250000,0,0);}
.me8_c00191{transform:matrix(0.330320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330320,0.000000,0.000000,0.250000,0,0);}
.mcb_c00191{transform:matrix(0.341165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341165,0.000000,0.000000,0.250000,0,0);}
.mc2_c00191{transform:matrix(0.380115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380115,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390710,0.000000,0.000000,0.250000,0,0);}
.mca_c00191{transform:matrix(0.399655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399655,0.000000,0.000000,0.250000,0,0);}
.mcc_c00191{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.mc6_c00191{transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);}
.mc9_c00191{transform:matrix(0.462390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462390,0.000000,0.000000,0.250000,0,0);}
.md3_c00191{transform:matrix(0.470505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470505,0.000000,0.000000,0.250000,0,0);}
.mc3_c00191{transform:matrix(0.489550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00191{transform:matrix(0.504005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504005,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.652435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652435,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;}
.fs14_c00191{font-size:27.300000px;}
.fs1_c00191{font-size:28.350000px;}
.fs15_c00191{font-size:50.400000px;}
.fs13_c00191{font-size:51.450000px;}
.fs2_c00191{font-size:54.600000px;}
.fs12_c00191{font-size:57.750000px;}
.fsc_c00191{font-size:58.800000px;}
.fs11_c00191{font-size:60.900000px;}
.fsa_c00191{font-size:64.050000px;}
.fs8_c00191{font-size:65.100000px;}
.fs10_c00191{font-size:65.103255px;}
.fs9_c00191{font-size:66.150000px;}
.fsf_c00191{font-size:67.200000px;}
.fsb_c00191{font-size:68.250000px;}
.fs6_c00191{font-size:69.300000px;}
.fse_c00191{font-size:70.350000px;}
.fs7_c00191{font-size:71.400000px;}
.fs5_c00191{font-size:72.450000px;}
.fs4_c00191{font-size:73.500000px;}
.fs3_c00191{font-size:74.550000px;}
.fsd_c00191{font-size:75.600000px;}
.fs0_c00191{font-size:135.450000px;}
.y0_c00191{bottom:0.000000px;}
.y33_c00191{bottom:160.801500px;}
.y32_c00191{bottom:170.913000px;}
.y29_c00191{bottom:173.343000px;}
.y2a_c00191{bottom:175.977000px;}
.y2b_c00191{bottom:176.538000px;}
.y2c_c00191{bottom:176.749500px;}
.y2d_c00191{bottom:177.196500px;}
.y2e_c00191{bottom:177.682500px;}
.y2f_c00191{bottom:177.967500px;}
.y30_c00191{bottom:178.257000px;}
.y31_c00191{bottom:178.573500px;}
.y28_c00191{bottom:196.291500px;}
.y27_c00191{bottom:214.702500px;}
.y25_c00191{bottom:229.098000px;}
.y26_c00191{bottom:231.438000px;}
.y24_c00191{bottom:324.360465px;}
.y23_c00191{bottom:324.662910px;}
.y22_c00191{bottom:325.030140px;}
.y21_c00191{bottom:325.207875px;}
.y20_c00191{bottom:325.381155px;}
.y1f_c00191{bottom:326.223615px;}
.y1e_c00191{bottom:326.723145px;}
.y1d_c00191{bottom:327.044430px;}
.y1c_c00191{bottom:327.241500px;}
.y1b_c00191{bottom:347.989500px;}
.y1a_c00191{bottom:371.202000px;}
.y19_c00191{bottom:392.779500px;}
.y18_c00191{bottom:415.473000px;}
.y17_c00191{bottom:438.211500px;}
.y16_c00191{bottom:460.975500px;}
.y15_c00191{bottom:483.361500px;}
.y14_c00191{bottom:506.197500px;}
.y13_c00191{bottom:529.200000px;}
.y12_c00191{bottom:551.880000px;}
.y11_c00191{bottom:574.521000px;}
.y10_c00191{bottom:596.899500px;}
.yf_c00191{bottom:619.920000px;}
.ye_c00191{bottom:641.475000px;}
.yd_c00191{bottom:664.558500px;}
.yc_c00191{bottom:686.818500px;}
.yb_c00191{bottom:710.640000px;}
.ya_c00191{bottom:732.862500px;}
.y9_c00191{bottom:754.738500px;}
.y8_c00191{bottom:777.507000px;}
.y7_c00191{bottom:800.962500px;}
.y6_c00191{bottom:830.815500px;}
.y5_c00191{bottom:873.453000px;}
.y1_c00191{bottom:893.970000px;}
.y4_c00191{bottom:900.180000px;}
.y3_c00191{bottom:909.090000px;}
.y2_c00191{bottom:924.210000px;}
.h16_c00191{height:27.300000px;}
.h3_c00191{height:28.350000px;}
.h17_c00191{height:50.400000px;}
.h15_c00191{height:51.450000px;}
.h4_c00191{height:54.600000px;}
.h14_c00191{height:57.750000px;}
.he_c00191{height:58.800000px;}
.h13_c00191{height:60.900000px;}
.hc_c00191{height:64.050000px;}
.ha_c00191{height:65.100000px;}
.h12_c00191{height:65.103255px;}
.hb_c00191{height:66.150000px;}
.h11_c00191{height:67.200000px;}
.hd_c00191{height:68.250000px;}
.h8_c00191{height:69.300000px;}
.h10_c00191{height:70.350000px;}
.h9_c00191{height:71.400000px;}
.h7_c00191{height:72.450000px;}
.h6_c00191{height:73.500000px;}
.h5_c00191{height:74.550000px;}
.hf_c00191{height:75.600000px;}
.h2_c00191{height:135.450000px;}
.h0_c00191{height:1008.450000px;}
.h1_c00191{height:1008.750000px;}
.w0_c00191{width:678.450000px;}
.w1_c00191{width:678.750000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:78.840000px;}
.x4_c00191{left:80.190000px;}
.x3_c00191{left:81.810000px;}
.x1_c00191{left:87.480000px;}
.x5_c00191{left:136.080000px;}
.x6_c00191{left:145.530000px;}
.x77_c00191{left:146.880000px;}
.x80_c00191{left:154.980000px;}
.x49_c00191{left:159.570000px;}
.x1b_c00191{left:161.190000px;}
.x81_c00191{left:164.970000px;}
.x6c_c00191{left:166.860000px;}
.x22_c00191{left:169.830000px;}
.xd_c00191{left:171.720000px;}
.x61_c00191{left:173.070000px;}
.x82_c00191{left:188.730000px;}
.x7e_c00191{left:190.890000px;}
.x31_c00191{left:192.780000px;}
.x67_c00191{left:194.670000px;}
.x45_c00191{left:196.020000px;}
.x41_c00191{left:197.640000px;}
.x3b_c00191{left:199.260000px;}
.x1c_c00191{left:200.340000px;}
.x68_c00191{left:214.650000px;}
.x57_c00191{left:216.270000px;}
.x16_c00191{left:218.700000px;}
.x2b_c00191{left:219.780000px;}
.x23_c00191{left:221.130000px;}
.x74_c00191{left:224.241000px;}
.xe_c00191{left:228.690000px;}
.x3c_c00191{left:233.280000px;}
.x5c_c00191{left:237.060000px;}
.x83_c00191{left:238.410000px;}
.x17_c00191{left:241.920000px;}
.x53_c00191{left:244.350000px;}
.x6d_c00191{left:246.510000px;}
.x50_c00191{left:248.400000px;}
.x8d_c00191{left:249.750000px;}
.x2c_c00191{left:255.960000px;}
.x58_c00191{left:257.580000px;}
.x24_c00191{left:260.550000px;}
.x3d_c00191{left:263.520000px;}
.x46_c00191{left:266.490000px;}
.x1d_c00191{left:268.650000px;}
.x54_c00191{left:269.730000px;}
.x63_c00191{left:270.810000px;}
.x37_c00191{left:272.430000px;}
.x75_c00191{left:274.194000px;}
.x5d_c00191{left:278.910000px;}
.x4a_c00191{left:280.800000px;}
.x25_c00191{left:284.850000px;}
.x42_c00191{left:287.010000px;}
.x1e_c00191{left:289.170000px;}
.xf_c00191{left:292.410000px;}
.x64_c00191{left:295.380000px;}
.x2d_c00191{left:297.810000px;}
.x7_c00191{left:299.970000px;}
.x18_c00191{left:311.850000px;}
.x10_c00191{left:314.550000px;}
.x78_c00191{left:317.520000px;}
.x55_c00191{left:319.140000px;}
.x38_c00191{left:321.300000px;}
.x4b_c00191{left:325.890000px;}
.x69_c00191{left:330.750000px;}
.x84_c00191{left:332.370000px;}
.x8_c00191{left:333.990000px;}
.x26_c00191{left:335.610000px;}
.x39_c00191{left:340.470000px;}
.x43_c00191{left:342.360000px;}
.x3e_c00191{left:344.520000px;}
.x6e_c00191{left:349.920000px;}
.x1f_c00191{left:352.620000px;}
.x32_c00191{left:355.050000px;}
.x47_c00191{left:358.020000px;}
.x11_c00191{left:359.910000px;}
.x3a_c00191{left:361.800000px;}
.x65_c00191{left:363.150000px;}
.x19_c00191{left:365.310000px;}
.x71_c00191{left:367.470000px;}
.x2e_c00191{left:372.330000px;}
.x79_c00191{left:373.680000px;}
.x9_c00191{left:376.110000px;}
.x62_c00191{left:378.810000px;}
.x20_c00191{left:380.970000px;}
.x72_c00191{left:384.210000px;}
.x12_c00191{left:386.100000px;}
.x6a_c00191{left:389.070000px;}
.x76_c00191{left:393.541500px;}
.x27_c00191{left:396.900000px;}
.x33_c00191{left:399.870000px;}
.x1a_c00191{left:401.760000px;}
.x56_c00191{left:404.460000px;}
.x44_c00191{left:410.130000px;}
.x7a_c00191{left:411.210000px;}
.x3f_c00191{left:414.990000px;}
.x2f_c00191{left:417.960000px;}
.x59_c00191{left:419.040000px;}
.x6f_c00191{left:422.550000px;}
.x7b_c00191{left:424.980000px;}
.x4c_c00191{left:428.760000px;}
.x13_c00191{left:430.380000px;}
.x21_c00191{left:431.730000px;}
.xa_c00191{left:434.430000px;}
.x30_c00191{left:436.860000px;}
.x73_c00191{left:437.940000px;}
.x34_c00191{left:440.910000px;}
.x51_c00191{left:444.150000px;}
.x85_c00191{left:451.170000px;}
.x70_c00191{left:453.600000px;}
.x5a_c00191{left:455.220000px;}
.x88_c00191{left:456.982500px;}
.x6b_c00191{left:460.080000px;}
.x7f_c00191{left:461.160000px;}
.x66_c00191{left:462.780000px;}
.x40_c00191{left:465.750000px;}
.xb_c00191{left:467.370000px;}
.x14_c00191{left:470.340000px;}
.x5e_c00191{left:474.120000px;}
.x52_c00191{left:475.470000px;}
.x28_c00191{left:480.060000px;}
.x35_c00191{left:484.920000px;}
.x15_c00191{left:488.160000px;}
.x4d_c00191{left:490.320000px;}
.x5f_c00191{left:497.340000px;}
.x48_c00191{left:498.420000px;}
.x7c_c00191{left:500.850000px;}
.x86_c00191{left:501.930000px;}
.x4e_c00191{left:507.870000px;}
.x89_c00191{left:511.782000px;}
.xc_c00191{left:514.890000px;}
.x29_c00191{left:518.670000px;}
.x36_c00191{left:521.910000px;}
.x60_c00191{left:530.010000px;}
.x5b_c00191{left:534.600000px;}
.x4f_c00191{left:540.270000px;}
.x2a_c00191{left:544.050000px;}
.x87_c00191{left:545.670000px;}
.x8a_c00191{left:552.343500px;}
.x8b_c00191{left:576.039000px;}
.x8e_c00191{left:583.200000px;}
.x7d_c00191{left:599.940000px;}
.x8c_c00191{left:626.482500px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.000000pt;}
.fs14_c00191{font-size:24.266667pt;}
.fs1_c00191{font-size:25.200000pt;}
.fs15_c00191{font-size:44.800000pt;}
.fs13_c00191{font-size:45.733333pt;}
.fs2_c00191{font-size:48.533333pt;}
.fs12_c00191{font-size:51.333333pt;}
.fsc_c00191{font-size:52.266667pt;}
.fs11_c00191{font-size:54.133333pt;}
.fsa_c00191{font-size:56.933333pt;}
.fs8_c00191{font-size:57.866667pt;}
.fs10_c00191{font-size:57.869560pt;}
.fs9_c00191{font-size:58.800000pt;}
.fsf_c00191{font-size:59.733333pt;}
.fsb_c00191{font-size:60.666667pt;}
.fs6_c00191{font-size:61.600000pt;}
.fse_c00191{font-size:62.533333pt;}
.fs7_c00191{font-size:63.466667pt;}
.fs5_c00191{font-size:64.400000pt;}
.fs4_c00191{font-size:65.333333pt;}
.fs3_c00191{font-size:66.266667pt;}
.fsd_c00191{font-size:67.200000pt;}
.fs0_c00191{font-size:120.400000pt;}
.y0_c00191{bottom:0.000000pt;}
.y33_c00191{bottom:142.934667pt;}
.y32_c00191{bottom:151.922667pt;}
.y29_c00191{bottom:154.082667pt;}
.y2a_c00191{bottom:156.424000pt;}
.y2b_c00191{bottom:156.922667pt;}
.y2c_c00191{bottom:157.110667pt;}
.y2d_c00191{bottom:157.508000pt;}
.y2e_c00191{bottom:157.940000pt;}
.y2f_c00191{bottom:158.193333pt;}
.y30_c00191{bottom:158.450667pt;}
.y31_c00191{bottom:158.732000pt;}
.y28_c00191{bottom:174.481333pt;}
.y27_c00191{bottom:190.846667pt;}
.y25_c00191{bottom:203.642667pt;}
.y26_c00191{bottom:205.722667pt;}
.y24_c00191{bottom:288.320413pt;}
.y23_c00191{bottom:288.589253pt;}
.y22_c00191{bottom:288.915680pt;}
.y21_c00191{bottom:289.073667pt;}
.y20_c00191{bottom:289.227693pt;}
.y1f_c00191{bottom:289.976547pt;}
.y1e_c00191{bottom:290.420573pt;}
.y1d_c00191{bottom:290.706160pt;}
.y1c_c00191{bottom:290.881333pt;}
.y1b_c00191{bottom:309.324000pt;}
.y1a_c00191{bottom:329.957333pt;}
.y19_c00191{bottom:349.137333pt;}
.y18_c00191{bottom:369.309333pt;}
.y17_c00191{bottom:389.521333pt;}
.y16_c00191{bottom:409.756000pt;}
.y15_c00191{bottom:429.654667pt;}
.y14_c00191{bottom:449.953333pt;}
.y13_c00191{bottom:470.400000pt;}
.y12_c00191{bottom:490.560000pt;}
.y11_c00191{bottom:510.685333pt;}
.y10_c00191{bottom:530.577333pt;}
.yf_c00191{bottom:551.040000pt;}
.ye_c00191{bottom:570.200000pt;}
.yd_c00191{bottom:590.718667pt;}
.yc_c00191{bottom:610.505333pt;}
.yb_c00191{bottom:631.680000pt;}
.ya_c00191{bottom:651.433333pt;}
.y9_c00191{bottom:670.878667pt;}
.y8_c00191{bottom:691.117333pt;}
.y7_c00191{bottom:711.966667pt;}
.y6_c00191{bottom:738.502667pt;}
.y5_c00191{bottom:776.402667pt;}
.y1_c00191{bottom:794.640000pt;}
.y4_c00191{bottom:800.160000pt;}
.y3_c00191{bottom:808.080000pt;}
.y2_c00191{bottom:821.520000pt;}
.h16_c00191{height:24.266667pt;}
.h3_c00191{height:25.200000pt;}
.h17_c00191{height:44.800000pt;}
.h15_c00191{height:45.733333pt;}
.h4_c00191{height:48.533333pt;}
.h14_c00191{height:51.333333pt;}
.he_c00191{height:52.266667pt;}
.h13_c00191{height:54.133333pt;}
.hc_c00191{height:56.933333pt;}
.ha_c00191{height:57.866667pt;}
.h12_c00191{height:57.869560pt;}
.hb_c00191{height:58.800000pt;}
.h11_c00191{height:59.733333pt;}
.hd_c00191{height:60.666667pt;}
.h8_c00191{height:61.600000pt;}
.h10_c00191{height:62.533333pt;}
.h9_c00191{height:63.466667pt;}
.h7_c00191{height:64.400000pt;}
.h6_c00191{height:65.333333pt;}
.h5_c00191{height:66.266667pt;}
.hf_c00191{height:67.200000pt;}
.h2_c00191{height:120.400000pt;}
.h0_c00191{height:896.400000pt;}
.h1_c00191{height:896.666667pt;}
.w0_c00191{width:603.066667pt;}
.w1_c00191{width:603.333333pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:70.080000pt;}
.x4_c00191{left:71.280000pt;}
.x3_c00191{left:72.720000pt;}
.x1_c00191{left:77.760000pt;}
.x5_c00191{left:120.960000pt;}
.x6_c00191{left:129.360000pt;}
.x77_c00191{left:130.560000pt;}
.x80_c00191{left:137.760000pt;}
.x49_c00191{left:141.840000pt;}
.x1b_c00191{left:143.280000pt;}
.x81_c00191{left:146.640000pt;}
.x6c_c00191{left:148.320000pt;}
.x22_c00191{left:150.960000pt;}
.xd_c00191{left:152.640000pt;}
.x61_c00191{left:153.840000pt;}
.x82_c00191{left:167.760000pt;}
.x7e_c00191{left:169.680000pt;}
.x31_c00191{left:171.360000pt;}
.x67_c00191{left:173.040000pt;}
.x45_c00191{left:174.240000pt;}
.x41_c00191{left:175.680000pt;}
.x3b_c00191{left:177.120000pt;}
.x1c_c00191{left:178.080000pt;}
.x68_c00191{left:190.800000pt;}
.x57_c00191{left:192.240000pt;}
.x16_c00191{left:194.400000pt;}
.x2b_c00191{left:195.360000pt;}
.x23_c00191{left:196.560000pt;}
.x74_c00191{left:199.325333pt;}
.xe_c00191{left:203.280000pt;}
.x3c_c00191{left:207.360000pt;}
.x5c_c00191{left:210.720000pt;}
.x83_c00191{left:211.920000pt;}
.x17_c00191{left:215.040000pt;}
.x53_c00191{left:217.200000pt;}
.x6d_c00191{left:219.120000pt;}
.x50_c00191{left:220.800000pt;}
.x8d_c00191{left:222.000000pt;}
.x2c_c00191{left:227.520000pt;}
.x58_c00191{left:228.960000pt;}
.x24_c00191{left:231.600000pt;}
.x3d_c00191{left:234.240000pt;}
.x46_c00191{left:236.880000pt;}
.x1d_c00191{left:238.800000pt;}
.x54_c00191{left:239.760000pt;}
.x63_c00191{left:240.720000pt;}
.x37_c00191{left:242.160000pt;}
.x75_c00191{left:243.728000pt;}
.x5d_c00191{left:247.920000pt;}
.x4a_c00191{left:249.600000pt;}
.x25_c00191{left:253.200000pt;}
.x42_c00191{left:255.120000pt;}
.x1e_c00191{left:257.040000pt;}
.xf_c00191{left:259.920000pt;}
.x64_c00191{left:262.560000pt;}
.x2d_c00191{left:264.720000pt;}
.x7_c00191{left:266.640000pt;}
.x18_c00191{left:277.200000pt;}
.x10_c00191{left:279.600000pt;}
.x78_c00191{left:282.240000pt;}
.x55_c00191{left:283.680000pt;}
.x38_c00191{left:285.600000pt;}
.x4b_c00191{left:289.680000pt;}
.x69_c00191{left:294.000000pt;}
.x84_c00191{left:295.440000pt;}
.x8_c00191{left:296.880000pt;}
.x26_c00191{left:298.320000pt;}
.x39_c00191{left:302.640000pt;}
.x43_c00191{left:304.320000pt;}
.x3e_c00191{left:306.240000pt;}
.x6e_c00191{left:311.040000pt;}
.x1f_c00191{left:313.440000pt;}
.x32_c00191{left:315.600000pt;}
.x47_c00191{left:318.240000pt;}
.x11_c00191{left:319.920000pt;}
.x3a_c00191{left:321.600000pt;}
.x65_c00191{left:322.800000pt;}
.x19_c00191{left:324.720000pt;}
.x71_c00191{left:326.640000pt;}
.x2e_c00191{left:330.960000pt;}
.x79_c00191{left:332.160000pt;}
.x9_c00191{left:334.320000pt;}
.x62_c00191{left:336.720000pt;}
.x20_c00191{left:338.640000pt;}
.x72_c00191{left:341.520000pt;}
.x12_c00191{left:343.200000pt;}
.x6a_c00191{left:345.840000pt;}
.x76_c00191{left:349.814667pt;}
.x27_c00191{left:352.800000pt;}
.x33_c00191{left:355.440000pt;}
.x1a_c00191{left:357.120000pt;}
.x56_c00191{left:359.520000pt;}
.x44_c00191{left:364.560000pt;}
.x7a_c00191{left:365.520000pt;}
.x3f_c00191{left:368.880000pt;}
.x2f_c00191{left:371.520000pt;}
.x59_c00191{left:372.480000pt;}
.x6f_c00191{left:375.600000pt;}
.x7b_c00191{left:377.760000pt;}
.x4c_c00191{left:381.120000pt;}
.x13_c00191{left:382.560000pt;}
.x21_c00191{left:383.760000pt;}
.xa_c00191{left:386.160000pt;}
.x30_c00191{left:388.320000pt;}
.x73_c00191{left:389.280000pt;}
.x34_c00191{left:391.920000pt;}
.x51_c00191{left:394.800000pt;}
.x85_c00191{left:401.040000pt;}
.x70_c00191{left:403.200000pt;}
.x5a_c00191{left:404.640000pt;}
.x88_c00191{left:406.206667pt;}
.x6b_c00191{left:408.960000pt;}
.x7f_c00191{left:409.920000pt;}
.x66_c00191{left:411.360000pt;}
.x40_c00191{left:414.000000pt;}
.xb_c00191{left:415.440000pt;}
.x14_c00191{left:418.080000pt;}
.x5e_c00191{left:421.440000pt;}
.x52_c00191{left:422.640000pt;}
.x28_c00191{left:426.720000pt;}
.x35_c00191{left:431.040000pt;}
.x15_c00191{left:433.920000pt;}
.x4d_c00191{left:435.840000pt;}
.x5f_c00191{left:442.080000pt;}
.x48_c00191{left:443.040000pt;}
.x7c_c00191{left:445.200000pt;}
.x86_c00191{left:446.160000pt;}
.x4e_c00191{left:451.440000pt;}
.x89_c00191{left:454.917333pt;}
.xc_c00191{left:457.680000pt;}
.x29_c00191{left:461.040000pt;}
.x36_c00191{left:463.920000pt;}
.x60_c00191{left:471.120000pt;}
.x5b_c00191{left:475.200000pt;}
.x4f_c00191{left:480.240000pt;}
.x2a_c00191{left:483.600000pt;}
.x87_c00191{left:485.040000pt;}
.x8a_c00191{left:490.972000pt;}
.x8b_c00191{left:512.034667pt;}
.x8e_c00191{left:518.400000pt;}
.x7d_c00191{left:533.280000pt;}
.x8c_c00191{left:556.873333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mb6_c00192{transform:matrix(0.019723,0.000276,-0.003500,0.249976,0,0);-ms-transform:matrix(0.019723,0.000276,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.019723,0.000276,-0.003500,0.249976,0,0);}
.mae_c00192{transform:matrix(0.020153,0.000282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.020153,0.000282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.020153,0.000282,-0.003500,0.249976,0,0);}
.ma2_c00192{transform:matrix(0.022263,0.000312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.022263,0.000312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.022263,0.000312,-0.003500,0.249976,0,0);}
.m77_c00192{transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);}
.m58_c00192{transform:matrix(0.091125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091125,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{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);}
.m99_c00192{transform:matrix(0.143206,0.002005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143206,0.002005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143206,0.002005,-0.003500,0.249976,0,0);}
.m83_c00192{transform:matrix(0.144956,0.002029,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144956,0.002029,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144956,0.002029,-0.003500,0.249976,0,0);}
.m36_c00192{transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{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);}
.m3a_c00192{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);}
.m4d_c00192{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);}
.m32_c00192{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{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);}
.mb8_c00192{transform:matrix(0.153040,0.002143,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153040,0.002143,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153040,0.002143,-0.003500,0.249976,0,0);}
.m21_c00192{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);}
.ma8_c00192{transform:matrix(0.156465,0.002191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156465,0.002191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156465,0.002191,-0.003500,0.249976,0,0);}
.m3b_c00192{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);}
.m82_c00192{transform:matrix(0.158884,0.002224,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158884,0.002224,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158884,0.002224,-0.003500,0.249976,0,0);}
.m1f_c00192{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);}
.mc9_c00192{transform:matrix(0.159662,0.002714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159662,0.002714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159662,0.002714,-0.004249,0.249964,0,0);}
.m9b_c00192{transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);}
.m53_c00192{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);}
.ma9_c00192{transform:matrix(0.162619,0.002277,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162619,0.002277,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162619,0.002277,-0.003500,0.249976,0,0);}
.ma5_c00192{transform:matrix(0.164454,0.002302,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164454,0.002302,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164454,0.002302,-0.003500,0.249976,0,0);}
.m49_c00192{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);}
.m3_c00192{transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);}
.ma6_c00192{transform:matrix(0.165749,0.002320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165749,0.002320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165749,0.002320,-0.003500,0.249976,0,0);}
.md3_c00192{transform:matrix(0.166111,0.002824,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166111,0.002824,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166111,0.002824,-0.004249,0.249964,0,0);}
.m30_c00192{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);}
.m3e_c00192{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);}
.m90_c00192{transform:matrix(0.167284,0.002342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167284,0.002342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167284,0.002342,-0.003500,0.249976,0,0);}
.m65_c00192{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);}
.m7d_c00192{transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);}
.m26_c00192{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);}
.m18_c00192{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);}
.m8b_c00192{transform:matrix(0.168893,0.002365,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168893,0.002365,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168893,0.002365,-0.003500,0.249976,0,0);}
.m31_c00192{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);}
.mf4_c00192{transform:matrix(0.169180,0.001353,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169180,0.001353,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169180,0.001353,-0.002000,0.249992,0,0);}
.m35_c00192{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);}
.m7e_c00192{transform:matrix(0.169553,0.002374,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169553,0.002374,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169553,0.002374,-0.003500,0.249976,0,0);}
.mca_c00192{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);}
.m87_c00192{transform:matrix(0.170518,0.002387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170518,0.002387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170518,0.002387,-0.003500,0.249976,0,0);}
.m86_c00192{transform:matrix(0.170728,0.002390,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170728,0.002390,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170728,0.002390,-0.003500,0.249976,0,0);}
.m5d_c00192{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);}
.mee_c00192{transform:matrix(0.170745,0.001366,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170745,0.001366,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170745,0.001366,-0.002000,0.249992,0,0);}
.m8d_c00192{transform:matrix(0.170933,0.002393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170933,0.002393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170933,0.002393,-0.003500,0.249976,0,0);}
.m3f_c00192{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);}
.m2d_c00192{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);}
.m79_c00192{transform:matrix(0.171983,0.002408,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171983,0.002408,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171983,0.002408,-0.003500,0.249976,0,0);}
.md2_c00192{transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172030,0.002925,-0.004249,0.249964,0,0);}
.m22_c00192{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);}
.mea_c00192{transform:matrix(0.173604,0.001389,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173604,0.001389,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173604,0.001389,-0.002000,0.249992,0,0);}
.m3c_c00192{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);}
.m4b_c00192{transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{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);}
.m8a_c00192{transform:matrix(0.173868,0.002434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173868,0.002434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173868,0.002434,-0.003500,0.249976,0,0);}
.m8c_c00192{transform:matrix(0.175073,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175073,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175073,0.002451,-0.003500,0.249976,0,0);}
.md5_c00192{transform:matrix(0.175590,0.002985,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175590,0.002985,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175590,0.002985,-0.004249,0.249964,0,0);}
.mab_c00192{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);}
.m20_c00192{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);}
.m2f_c00192{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);}
.mef_c00192{transform:matrix(0.176524,0.001412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176524,0.001412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176524,0.001412,-0.002000,0.249992,0,0);}
.m2c_c00192{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);}
.m9e_c00192{transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);}
.mb0_c00192{transform:matrix(0.177533,0.002485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177533,0.002485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177533,0.002485,-0.003500,0.249976,0,0);}
.md0_c00192{transform:matrix(0.177734,0.003021,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177734,0.003021,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177734,0.003021,-0.004249,0.249964,0,0);}
.mcc_c00192{transform:matrix(0.178544,0.003035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178544,0.003035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178544,0.003035,-0.004249,0.249964,0,0);}
.mf_c00192{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);}
.m39_c00192{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);}
.mc_c00192{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);}
.ma3_c00192{transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179912,0.002519,-0.003500,0.249976,0,0);}
.m40_c00192{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);}
.m80_c00192{transform:matrix(0.181087,0.002535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181087,0.002535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181087,0.002535,-0.003500,0.249976,0,0);}
.m33_c00192{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);}
.md1_c00192{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);}
.mf7_c00192{transform:matrix(0.183304,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183304,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183304,0.001466,-0.002000,0.249992,0,0);}
.m10_c00192{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);}
.m60_c00192{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);}
.m5f_c00192{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);}
.m68_c00192{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);}
.m34_c00192{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);}
.me0_c00192{transform:matrix(0.184462,0.001107,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184462,0.001107,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184462,0.001107,-0.001500,0.249996,0,0);}
.m59_c00192{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);}
.m6a_c00192{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{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);}
.m66_c00192{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);}
.mf0_c00192{transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);}
.ma4_c00192{transform:matrix(0.187412,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187412,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187412,0.002624,-0.003500,0.249976,0,0);}
.m61_c00192{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);}
.m43_c00192{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);}
.m46_c00192{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);}
.mf5_c00192{transform:matrix(0.188714,0.001510,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188714,0.001510,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188714,0.001510,-0.002000,0.249992,0,0);}
.m42_c00192{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);}
.m4_c00192{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);}
.mc8_c00192{transform:matrix(0.189808,0.003227,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189808,0.003227,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189808,0.003227,-0.004249,0.249964,0,0);}
.m47_c00192{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);}
.m16_c00192{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_c00192{transform:matrix(0.190981,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190981,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190981,0.002674,-0.003500,0.249976,0,0);}
.maa_c00192{transform:matrix(0.191116,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191116,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191116,0.002676,-0.003500,0.249976,0,0);}
.m1a_c00192{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);}
.md7_c00192{transform:matrix(0.191762,0.003260,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191762,0.003260,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191762,0.003260,-0.004249,0.249964,0,0);}
.md4_c00192{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);}
.m5e_c00192{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);}
.md6_c00192{transform:matrix(0.192007,0.003264,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192007,0.003264,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192007,0.003264,-0.004249,0.249964,0,0);}
.m84_c00192{transform:matrix(0.192616,0.002697,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192616,0.002697,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192616,0.002697,-0.003500,0.249976,0,0);}
.m38_c00192{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);}
.mad_c00192{transform:matrix(0.194031,0.002716,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194031,0.002716,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194031,0.002716,-0.003500,0.249976,0,0);}
.mec_c00192{transform:matrix(0.194344,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194344,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194344,0.001555,-0.002000,0.249992,0,0);}
.mdb_c00192{transform:matrix(0.194586,0.001168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194586,0.001168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194586,0.001168,-0.001500,0.249996,0,0);}
.m7c_c00192{transform:matrix(0.194766,0.002727,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194766,0.002727,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194766,0.002727,-0.003500,0.249976,0,0);}
.m64_c00192{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);}
.m2e_c00192{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);}
.mdd_c00192{transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);}
.m7_c00192{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);}
.m56_c00192{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);}
.m25_c00192{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);}
.m88_c00192{transform:matrix(0.196976,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196976,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196976,0.002758,-0.003500,0.249976,0,0);}
.m55_c00192{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);}
.mdf_c00192{transform:matrix(0.197091,0.001183,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197091,0.001183,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197091,0.001183,-0.001500,0.249996,0,0);}
.m5c_c00192{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);}
.m51_c00192{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);}
.m9a_c00192{transform:matrix(0.197831,0.002770,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197831,0.002770,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197831,0.002770,-0.003500,0.249976,0,0);}
.m62_c00192{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);}
.m23_c00192{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);}
.mf3_c00192{transform:matrix(0.199819,0.001599,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199819,0.001599,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199819,0.001599,-0.002000,0.249992,0,0);}
.mcf_c00192{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);}
.ma_c00192{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);}
.m2b_c00192{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);}
.m1b_c00192{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);}
.mac_c00192{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);}
.mc1_c00192{transform:matrix(0.203246,0.003455,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203246,0.003455,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203246,0.003455,-0.004249,0.249964,0,0);}
.md_c00192{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);}
.m2a_c00192{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);}
.m5b_c00192{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);}
.m57_c00192{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);}
.m9d_c00192{transform:matrix(0.206750,0.002894,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206750,0.002894,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206750,0.002894,-0.003500,0.249976,0,0);}
.mc4_c00192{transform:matrix(0.207300,0.003524,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207300,0.003524,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207300,0.003524,-0.004249,0.249964,0,0);}
.m4a_c00192{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);}
.mc7_c00192{transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);}
.mda_c00192{transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);}
.mbd_c00192{transform:matrix(0.210044,0.002941,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210044,0.002941,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210044,0.002941,-0.003500,0.249976,0,0);}
.m12_c00192{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);}
.m52_c00192{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);}
.ma1_c00192{transform:matrix(0.210914,0.002953,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210914,0.002953,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210914,0.002953,-0.003500,0.249976,0,0);}
.mf6_c00192{transform:matrix(0.211058,0.001688,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211058,0.001688,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211058,0.001688,-0.002000,0.249992,0,0);}
.m70_c00192{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);}
.mbb_c00192{transform:matrix(0.211854,0.002966,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211854,0.002966,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211854,0.002966,-0.003500,0.249976,0,0);}
.mba_c00192{transform:matrix(0.212794,0.002979,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212794,0.002979,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212794,0.002979,-0.003500,0.249976,0,0);}
.ma7_c00192{transform:matrix(0.212874,0.002980,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212874,0.002980,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212874,0.002980,-0.003500,0.249976,0,0);}
.m89_c00192{transform:matrix(0.212904,0.002981,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212904,0.002981,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212904,0.002981,-0.003500,0.249976,0,0);}
.m78_c00192{transform:matrix(0.213414,0.002988,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213414,0.002988,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213414,0.002988,-0.003500,0.249976,0,0);}
.m8f_c00192{transform:matrix(0.213819,0.002993,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213819,0.002993,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213819,0.002993,-0.003500,0.249976,0,0);}
.m14_c00192{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);}
.m19_c00192{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);}
.mc0_c00192{transform:matrix(0.215874,0.003670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215874,0.003670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215874,0.003670,-0.004249,0.249964,0,0);}
.m15_c00192{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);}
.mc3_c00192{transform:matrix(0.218563,0.003716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218563,0.003716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218563,0.003716,-0.004249,0.249964,0,0);}
.mde_c00192{transform:matrix(0.218781,0.001313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218781,0.001313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218781,0.001313,-0.001500,0.249996,0,0);}
.me5_c00192{transform:matrix(0.219506,0.001317,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219506,0.001317,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219506,0.001317,-0.001500,0.249996,0,0);}
.m17_c00192{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m92_c00192{transform:matrix(0.222553,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222553,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222553,0.003116,-0.003500,0.249976,0,0);}
.mb1_c00192{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);}
.m29_c00192{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);}
.m27_c00192{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);}
.m13_c00192{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);}
.m3d_c00192{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);}
.m11_c00192{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00192{transform:matrix(0.226128,0.003166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226128,0.003166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226128,0.003166,-0.003500,0.249976,0,0);}
.m72_c00192{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);}
.m67_c00192{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);}
.med_c00192{transform:matrix(0.228668,0.001829,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228668,0.001829,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228668,0.001829,-0.002000,0.249992,0,0);}
.m85_c00192{transform:matrix(0.231932,0.003247,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231932,0.003247,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231932,0.003247,-0.003500,0.249976,0,0);}
.mc5_c00192{transform:matrix(0.231951,0.003943,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231951,0.003943,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231951,0.003943,-0.004249,0.249964,0,0);}
.m28_c00192{transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);}
.mf1_c00192{transform:matrix(0.232038,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232038,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232038,0.001856,-0.002000,0.249992,0,0);}
.m1e_c00192{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);}
.m4c_c00192{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);}
.mcb_c00192{transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);}
.m5_c00192{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);}
.m73_c00192{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);}
.m93_c00192{transform:matrix(0.234932,0.003289,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234932,0.003289,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234932,0.003289,-0.003500,0.249976,0,0);}
.m91_c00192{transform:matrix(0.235487,0.003297,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235487,0.003297,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235487,0.003297,-0.003500,0.249976,0,0);}
.m2_c00192{transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{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);}
.mc2_c00192{transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238736,0.004059,-0.004249,0.249964,0,0);}
.m4e_c00192{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);}
.m9f_c00192{transform:matrix(0.245121,0.003432,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245121,0.003432,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245121,0.003432,-0.003500,0.249976,0,0);}
.m6_c00192{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00192{transform:matrix(0.247066,0.003459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247066,0.003459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247066,0.003459,-0.003500,0.249976,0,0);}
.ma0_c00192{transform:matrix(0.248796,0.003483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248796,0.003483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248796,0.003483,-0.003500,0.249976,0,0);}
.me1_c00192{transform:matrix(0.250015,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250015,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250015,0.001500,-0.001500,0.249996,0,0);}
.mb4_c00192{transform:matrix(0.250270,0.003504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250270,0.003504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250270,0.003504,-0.003500,0.249976,0,0);}
.me4_c00192{transform:matrix(0.251680,0.001510,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251680,0.001510,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251680,0.001510,-0.001500,0.249996,0,0);}
.m6b_c00192{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);}
.mcd_c00192{transform:matrix(0.255848,0.004349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255848,0.004349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255848,0.004349,-0.004249,0.249964,0,0);}
.m7a_c00192{transform:matrix(0.259310,0.003630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259310,0.003630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259310,0.003630,-0.003500,0.249976,0,0);}
.m71_c00192{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);}
.m6e_c00192{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.265734,0.003720,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265734,0.003720,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265734,0.003720,-0.003500,0.249976,0,0);}
.m9c_c00192{transform:matrix(0.268329,0.003757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268329,0.003757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268329,0.003757,-0.003500,0.249976,0,0);}
.m1_c00192{transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268375,0.000000,0.000000,0.250000,0,0);}
.me2_c00192{transform:matrix(0.268450,0.001611,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268450,0.001611,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268450,0.001611,-0.001500,0.249996,0,0);}
.m7b_c00192{transform:matrix(0.268709,0.003762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268709,0.003762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268709,0.003762,-0.003500,0.249976,0,0);}
.mb3_c00192{transform:matrix(0.269009,0.003766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269009,0.003766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269009,0.003766,-0.003500,0.249976,0,0);}
.m74_c00192{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);}
.meb_c00192{transform:matrix(0.271616,0.002173,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271616,0.002173,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271616,0.002173,-0.002000,0.249992,0,0);}
.mb_c00192{transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{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);}
.mdc_c00192{transform:matrix(0.282665,0.001696,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282665,0.001696,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282665,0.001696,-0.001500,0.249996,0,0);}
.me_c00192{transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);}
.me6_c00192{transform:matrix(0.302580,0.001815,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302580,0.001815,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302580,0.001815,-0.001500,0.249996,0,0);}
.md9_c00192{transform:matrix(0.304995,0.001830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.304995,0.001830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.304995,0.001830,-0.001500,0.249996,0,0);}
.me3_c00192{transform:matrix(0.305475,0.001833,-0.001500,0.249996,0,0);-ms-transform:matrix(0.305475,0.001833,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.305475,0.001833,-0.001500,0.249996,0,0);}
.md8_c00192{transform:matrix(0.313594,0.001882,-0.001500,0.249996,0,0);-ms-transform:matrix(0.313594,0.001882,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.313594,0.001882,-0.001500,0.249996,0,0);}
.m8e_c00192{transform:matrix(0.320224,0.004483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.320224,0.004483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.320224,0.004483,-0.003500,0.249976,0,0);}
.mf2_c00192{transform:matrix(0.329559,0.002636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.329559,0.002636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.329559,0.002636,-0.002000,0.249992,0,0);}
.m94_c00192{transform:matrix(0.335002,0.004690,-0.003500,0.249976,0,0);-ms-transform:matrix(0.335002,0.004690,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.335002,0.004690,-0.003500,0.249976,0,0);}
.m63_c00192{transform:matrix(0.345905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345905,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.347291,0.004862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.347291,0.004862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.347291,0.004862,-0.003500,0.249976,0,0);}
.m4f_c00192{transform:matrix(0.347985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00192{transform:matrix(0.359873,0.006118,-0.004249,0.249964,0,0);-ms-transform:matrix(0.359873,0.006118,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.359873,0.006118,-0.004249,0.249964,0,0);}
.m96_c00192{transform:matrix(0.367524,0.005145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.367524,0.005145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.367524,0.005145,-0.003500,0.249976,0,0);}
.mbf_c00192{transform:matrix(0.377710,0.006421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.377710,0.006421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.377710,0.006421,-0.004249,0.249964,0,0);}
.m95_c00192{transform:matrix(0.379283,0.005310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.379283,0.005310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.379283,0.005310,-0.003500,0.249976,0,0);}
.m7f_c00192{transform:matrix(0.413230,0.005785,-0.003500,0.249976,0,0);-ms-transform:matrix(0.413230,0.005785,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.413230,0.005785,-0.003500,0.249976,0,0);}
.m45_c00192{transform:matrix(0.428465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428465,0.000000,0.000000,0.250000,0,0);}
.me7_c00192{transform:matrix(0.434147,0.002605,-0.001500,0.249996,0,0);-ms-transform:matrix(0.434147,0.002605,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.434147,0.002605,-0.001500,0.249996,0,0);}
.me8_c00192{transform:matrix(0.435337,0.002612,-0.001500,0.249996,0,0);-ms-transform:matrix(0.435337,0.002612,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.435337,0.002612,-0.001500,0.249996,0,0);}
.m0_c00192{transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.460895,0.006453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.460895,0.006453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.460895,0.006453,-0.003500,0.249976,0,0);}
.me9_c00192{transform:matrix(0.466117,0.002797,-0.001500,0.249996,0,0);-ms-transform:matrix(0.466117,0.002797,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.466117,0.002797,-0.001500,0.249996,0,0);}
.m37_c00192{transform:matrix(0.476420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476420,0.000000,0.000000,0.250000,0,0);}
.mb5_c00192{transform:matrix(0.507960,0.007111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.507960,0.007111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.507960,0.007111,-0.003500,0.249976,0,0);}
.maf_c00192{transform:matrix(0.528668,0.007401,-0.003500,0.249976,0,0);-ms-transform:matrix(0.528668,0.007401,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.528668,0.007401,-0.003500,0.249976,0,0);}
.mce_c00192{transform:matrix(0.559764,0.009516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.559764,0.009516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.559764,0.009516,-0.004249,0.249964,0,0);}
.m6c_c00192{transform:matrix(0.560060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560060,0.000000,0.000000,0.250000,0,0);}
.m75_c00192{transform:matrix(0.577020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577020,0.000000,0.000000,0.250000,0,0);}
.mbe_c00192{transform:matrix(0.615451,0.010463,-0.004249,0.249964,0,0);-ms-transform:matrix(0.615451,0.010463,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.615451,0.010463,-0.004249,0.249964,0,0);}
.mb7_c00192{transform:matrix(0.711990,0.009968,-0.003500,0.249976,0,0);-ms-transform:matrix(0.711990,0.009968,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.711990,0.009968,-0.003500,0.249976,0,0);}
.m76_c00192{transform:matrix(1.015830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015830,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(1.066725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066725,0.000000,0.000000,0.250000,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;}
.fs8_c00192{font-size:19.950000px;}
.fsc_c00192{font-size:45.154424px;}
.fs11_c00192{font-size:47.254630px;}
.fs14_c00192{font-size:48.300869px;}
.fsf_c00192{font-size:48.304733px;}
.fse_c00192{font-size:49.354836px;}
.fs10_c00192{font-size:50.404939px;}
.fs12_c00192{font-size:50.407282px;}
.fsd_c00192{font-size:51.455042px;}
.fsb_c00192{font-size:52.505145px;}
.fs13_c00192{font-size:57.758344px;}
.fs3_c00192{font-size:59.850000px;}
.fs15_c00192{font-size:59.851915px;}
.fsa_c00192{font-size:64.056277px;}
.fs2_c00192{font-size:65.100000px;}
.fs1_c00192{font-size:68.250000px;}
.fs7_c00192{font-size:69.300000px;}
.fs6_c00192{font-size:70.350000px;}
.fs4_c00192{font-size:71.400000px;}
.fs9_c00192{font-size:72.457100px;}
.fs5_c00192{font-size:73.500000px;}
.fs0_c00192{font-size:84.000000px;}
.y0_c00192{bottom:0.000000px;}
.yc8_c00192{bottom:171.706140px;}
.yc7_c00192{bottom:171.883128px;}
.yc6_c00192{bottom:172.215948px;}
.yc5_c00192{bottom:172.453524px;}
.yc4_c00192{bottom:172.660860px;}
.yc3_c00192{bottom:172.756032px;}
.yc2_c00192{bottom:172.920120px;}
.yc1_c00192{bottom:173.105928px;}
.yc0_c00192{bottom:173.315184px;}
.ybf_c00192{bottom:173.585352px;}
.ybe_c00192{bottom:173.924820px;}
.ybd_c00192{bottom:174.263760px;}
.ybc_c00192{bottom:174.622356px;}
.ybb_c00192{bottom:174.961500px;}
.yba_c00192{bottom:189.191007px;}
.yb9_c00192{bottom:189.241218px;}
.yb8_c00192{bottom:189.283347px;}
.yb7_c00192{bottom:189.373797px;}
.yb6_c00192{bottom:189.646110px;}
.yb5_c00192{bottom:189.884259px;}
.yb4_c00192{bottom:190.059228px;}
.yb3_c00192{bottom:190.200204px;}
.yb2_c00192{bottom:190.469160px;}
.yb1_c00192{bottom:190.563003px;}
.yb0_c00192{bottom:190.838466px;}
.yaf_c00192{bottom:191.115702px;}
.yae_c00192{bottom:191.389518px;}
.yad_c00192{bottom:191.478411px;}
.yac_c00192{bottom:191.762073px;}
.yab_c00192{bottom:191.962899px;}
.yaa_c00192{bottom:192.094164px;}
.ya9_c00192{bottom:192.240000px;}
.ya8_c00192{bottom:203.915811px;}
.ya7_c00192{bottom:204.280365px;}
.ya6_c00192{bottom:205.147247px;}
.ya5_c00192{bottom:205.678311px;}
.ya4_c00192{bottom:206.244555px;}
.ya3_c00192{bottom:206.784357px;}
.ya2_c00192{bottom:207.188885px;}
.ya1_c00192{bottom:208.512009px;}
.ya0_c00192{bottom:208.971359px;}
.y9f_c00192{bottom:214.917582px;}
.y9e_c00192{bottom:223.040482px;}
.y9d_c00192{bottom:223.296069px;}
.y9c_c00192{bottom:223.852403px;}
.y9b_c00192{bottom:224.541030px;}
.y9a_c00192{bottom:224.898132px;}
.y99_c00192{bottom:225.376665px;}
.y98_c00192{bottom:225.752994px;}
.y97_c00192{bottom:225.956178px;}
.y96_c00192{bottom:226.864565px;}
.y95_c00192{bottom:227.098221px;}
.y94_c00192{bottom:227.497424px;}
.y93_c00192{bottom:227.874518px;}
.y92_c00192{bottom:228.686514px;}
.y91_c00192{bottom:229.067433px;}
.y90_c00192{bottom:229.757157px;}
.y8f_c00192{bottom:230.583000px;}
.y8e_c00192{bottom:286.956675px;}
.y8c_c00192{bottom:286.957170px;}
.y8d_c00192{bottom:286.957212px;}
.y8b_c00192{bottom:305.090124px;}
.y8a_c00192{bottom:305.090442px;}
.y89_c00192{bottom:305.091021px;}
.y88_c00192{bottom:305.091756px;}
.y86_c00192{bottom:322.519482px;}
.y85_c00192{bottom:322.519980px;}
.y87_c00192{bottom:322.520148px;}
.y84_c00192{bottom:339.228228px;}
.y83_c00192{bottom:339.906975px;}
.y82_c00192{bottom:340.421331px;}
.y81_c00192{bottom:340.891422px;}
.y80_c00192{bottom:341.696247px;}
.y7f_c00192{bottom:342.070869px;}
.y7e_c00192{bottom:357.196059px;}
.y7d_c00192{bottom:357.196512px;}
.y7c_c00192{bottom:357.196731px;}
.y7b_c00192{bottom:357.197190px;}
.y7a_c00192{bottom:357.197568px;}
.y79_c00192{bottom:357.198207px;}
.y73_c00192{bottom:375.966120px;}
.y78_c00192{bottom:375.966507px;}
.y74_c00192{bottom:375.966561px;}
.y75_c00192{bottom:375.966702px;}
.y77_c00192{bottom:375.966906px;}
.y76_c00192{bottom:375.967425px;}
.y6f_c00192{bottom:392.554119px;}
.y70_c00192{bottom:392.554680px;}
.y71_c00192{bottom:392.554722px;}
.y6e_c00192{bottom:392.554857px;}
.y72_c00192{bottom:392.555223px;}
.y69_c00192{bottom:410.380542px;}
.y6a_c00192{bottom:410.380764px;}
.y6b_c00192{bottom:410.381145px;}
.y6d_c00192{bottom:410.381568px;}
.y6c_c00192{bottom:410.381607px;}
.y5f_c00192{bottom:427.470459px;}
.y60_c00192{bottom:427.471182px;}
.y63_c00192{bottom:427.471287px;}
.y61_c00192{bottom:427.471563px;}
.y64_c00192{bottom:427.471788px;}
.y62_c00192{bottom:427.472004px;}
.y67_c00192{bottom:427.472052px;}
.y66_c00192{bottom:427.472271px;}
.y65_c00192{bottom:427.472370px;}
.y68_c00192{bottom:427.472553px;}
.y5e_c00192{bottom:466.577826px;}
.y5d_c00192{bottom:467.291211px;}
.y5c_c00192{bottom:468.145749px;}
.y5b_c00192{bottom:468.781209px;}
.y5a_c00192{bottom:469.161315px;}
.y59_c00192{bottom:469.980093px;}
.y58_c00192{bottom:488.610747px;}
.y57_c00192{bottom:489.266829px;}
.y56_c00192{bottom:489.620721px;}
.y55_c00192{bottom:491.466075px;}
.y54_c00192{bottom:491.916162px;}
.y53_c00192{bottom:493.018677px;}
.y52_c00192{bottom:511.367196px;}
.y51_c00192{bottom:511.367295px;}
.y50_c00192{bottom:511.367952px;}
.y4f_c00192{bottom:532.206861px;}
.y4e_c00192{bottom:532.721886px;}
.y4d_c00192{bottom:533.674299px;}
.y4c_c00192{bottom:534.000303px;}
.y4b_c00192{bottom:535.239492px;}
.y4a_c00192{bottom:535.791645px;}
.y49_c00192{bottom:536.763000px;}
.y47_c00192{bottom:555.436500px;}
.y46_c00192{bottom:556.315500px;}
.y45_c00192{bottom:556.915500px;}
.y44_c00192{bottom:558.138000px;}
.y43_c00192{bottom:558.520500px;}
.y42_c00192{bottom:559.059000px;}
.y41_c00192{bottom:559.435500px;}
.y40_c00192{bottom:577.162500px;}
.y3f_c00192{bottom:577.618500px;}
.y3e_c00192{bottom:577.891500px;}
.y3d_c00192{bottom:578.799000px;}
.y3c_c00192{bottom:579.159000px;}
.y3b_c00192{bottom:579.994500px;}
.y3a_c00192{bottom:580.719000px;}
.y39_c00192{bottom:581.200500px;}
.y38_c00192{bottom:581.577000px;}
.y37_c00192{bottom:599.230500px;}
.y36_c00192{bottom:642.945000px;}
.y35_c00192{bottom:643.600500px;}
.y34_c00192{bottom:644.196000px;}
.y33_c00192{bottom:644.512500px;}
.y32_c00192{bottom:645.103500px;}
.y31_c00192{bottom:645.679500px;}
.y30_c00192{bottom:646.065000px;}
.y2f_c00192{bottom:646.684500px;}
.y2e_c00192{bottom:647.730000px;}
.y2d_c00192{bottom:666.657000px;}
.y2c_c00192{bottom:666.933000px;}
.y2b_c00192{bottom:667.497000px;}
.y2a_c00192{bottom:667.711500px;}
.y29_c00192{bottom:667.902000px;}
.y28_c00192{bottom:668.268000px;}
.y27_c00192{bottom:668.865000px;}
.y26_c00192{bottom:669.280500px;}
.y25_c00192{bottom:669.868500px;}
.y24_c00192{bottom:690.301500px;}
.y48_c00192{bottom:707.400000px;}
.y23_c00192{bottom:710.991000px;}
.y22_c00192{bottom:711.202500px;}
.y21_c00192{bottom:711.537000px;}
.y20_c00192{bottom:711.796500px;}
.y1f_c00192{bottom:712.164000px;}
.y1e_c00192{bottom:712.360500px;}
.y1d_c00192{bottom:712.717500px;}
.y1c_c00192{bottom:713.202000px;}
.y1b_c00192{bottom:713.493000px;}
.y1a_c00192{bottom:713.817000px;}
.y19_c00192{bottom:714.181500px;}
.y18_c00192{bottom:714.688500px;}
.y17_c00192{bottom:733.539000px;}
.y16_c00192{bottom:734.227500px;}
.y15_c00192{bottom:734.610000px;}
.y14_c00192{bottom:735.127500px;}
.y13_c00192{bottom:735.469500px;}
.y12_c00192{bottom:736.696500px;}
.y11_c00192{bottom:737.035500px;}
.y10_c00192{bottom:737.371500px;}
.yf_c00192{bottom:756.190500px;}
.ye_c00192{bottom:756.414000px;}
.yd_c00192{bottom:756.933000px;}
.yc_c00192{bottom:757.137000px;}
.yb_c00192{bottom:757.488000px;}
.ya_c00192{bottom:758.088000px;}
.y9_c00192{bottom:758.265000px;}
.y8_c00192{bottom:758.649000px;}
.y7_c00192{bottom:758.845500px;}
.y6_c00192{bottom:759.463500px;}
.y5_c00192{bottom:759.781500px;}
.y4_c00192{bottom:780.351000px;}
.y3_c00192{bottom:803.766000px;}
.y2_c00192{bottom:826.903500px;}
.y1_c00192{bottom:869.571000px;}
.ha_c00192{height:19.950000px;}
.he_c00192{height:45.154424px;}
.h13_c00192{height:47.254630px;}
.h16_c00192{height:48.300869px;}
.h11_c00192{height:48.304733px;}
.h10_c00192{height:49.354836px;}
.h12_c00192{height:50.404939px;}
.h14_c00192{height:50.407282px;}
.hf_c00192{height:51.455042px;}
.hd_c00192{height:52.505145px;}
.h15_c00192{height:57.758344px;}
.h5_c00192{height:59.850000px;}
.h17_c00192{height:59.851915px;}
.hc_c00192{height:64.056277px;}
.h4_c00192{height:65.100000px;}
.h3_c00192{height:68.250000px;}
.h9_c00192{height:69.300000px;}
.h8_c00192{height:70.350000px;}
.h6_c00192{height:71.400000px;}
.hb_c00192{height:72.457100px;}
.h7_c00192{height:73.500000px;}
.h2_c00192{height:84.000000px;}
.h1_c00192{height:1005.000000px;}
.h0_c00192{height:1005.150000px;}
.w0_c00192{width:735.750000px;}
.x0_c00192{left:0.000000px;}
.x53_c00192{left:1.350000px;}
.x8d_c00192{left:47.418000px;}
.x71_c00192{left:51.637500px;}
.x8e_c00192{left:89.811000px;}
.x72_c00192{left:100.216500px;}
.x85_c00192{left:103.044000px;}
.x3b_c00192{left:121.305000px;}
.x4_c00192{left:123.930000px;}
.x14_c00192{left:125.010000px;}
.xd_c00192{left:126.360000px;}
.x8f_c00192{left:134.635500px;}
.x5_c00192{left:136.620000px;}
.x73_c00192{left:140.788500px;}
.x6e_c00192{left:146.075796px;}
.x34_c00192{left:147.151500px;}
.xe_c00192{left:148.770000px;}
.x4a_c00192{left:150.984000px;}
.x1e_c00192{left:152.950500px;}
.x6_c00192{left:155.250000px;}
.x15_c00192{left:157.410000px;}
.x74_c00192{left:163.195500px;}
.x66_c00192{left:169.296393px;}
.x2b_c00192{left:171.577500px;}
.x6d_c00192{left:172.808982px;}
.x3c_c00192{left:174.820500px;}
.x1_c00192{left:176.580000px;}
.x5c_c00192{left:179.160303px;}
.x4b_c00192{left:183.130500px;}
.x16_c00192{left:185.490000px;}
.x50_c00192{left:186.643500px;}
.x58_c00192{left:190.420515px;}
.x42_c00192{left:195.025500px;}
.xf_c00192{left:196.290000px;}
.x67_c00192{left:198.189063px;}
.x2c_c00192{left:204.780000px;}
.x1f_c00192{left:209.103000px;}
.x75_c00192{left:210.960000px;}
.x3d_c00192{left:212.619000px;}
.x5e_c00192{left:213.851559px;}
.x59_c00192{left:216.889902px;}
.x17_c00192{left:219.240000px;}
.x7_c00192{left:221.400000px;}
.x10_c00192{left:225.990000px;}
.x5f_c00192{left:230.323293px;}
.x4c_c00192{left:231.397500px;}
.x70_c00192{left:232.484895px;}
.x2d_c00192{left:234.213000px;}
.x43_c00192{left:236.293500px;}
.x6c_c00192{left:237.975822px;}
.x6f_c00192{left:240.045192px;}
.x35_c00192{left:244.081500px;}
.x8_c00192{left:247.050000px;}
.x62_c00192{left:249.223278px;}
.x6a_c00192{left:253.545189px;}
.x18_c00192{left:254.880000px;}
.x76_c00192{left:256.624500px;}
.x2e_c00192{left:260.685000px;}
.x20_c00192{left:261.804000px;}
.x63_c00192{left:263.264529px;}
.x68_c00192{left:264.616083px;}
.x3e_c00192{left:266.886000px;}
.x6b_c00192{left:271.367175px;}
.x64_c00192{left:273.255960px;}
.x69_c00192{left:275.146641px;}
.x56_c00192{left:276.224601px;}
.x21_c00192{left:277.954500px;}
.x11_c00192{left:279.990000px;}
.x4d_c00192{left:287.089500px;}
.x86_c00192{left:290.427000px;}
.x36_c00192{left:293.491500px;}
.x65_c00192{left:295.938912px;}
.x26_c00192{left:297.396000px;}
.x3f_c00192{left:300.091500px;}
.x90_c00192{left:302.590500px;}
.x9_c00192{left:304.560000px;}
.x19_c00192{left:308.880000px;}
.x4e_c00192{left:311.113500px;}
.x40_c00192{left:317.382000px;}
.x54_c00192{left:322.704000px;}
.x77_c00192{left:323.803500px;}
.x5a_c00192{left:325.446345px;}
.x27_c00192{left:328.440000px;}
.xa_c00192{left:330.750000px;}
.x12_c00192{left:332.100000px;}
.x51_c00192{left:333.519000px;}
.x47_c00192{left:335.340000px;}
.x2f_c00192{left:337.081500px;}
.x37_c00192{left:339.391500px;}
.x57_c00192{left:344.541978px;}
.x55_c00192{left:345.990000px;}
.x5d_c00192{left:351.371388px;}
.x60_c00192{left:352.915317px;}
.x1a_c00192{left:354.510000px;}
.x7d_c00192{left:355.673243px;}
.xb_c00192{left:357.480000px;}
.x13_c00192{left:358.830000px;}
.x44_c00192{left:360.844500px;}
.x61_c00192{left:362.095623px;}
.x22_c00192{left:364.401000px;}
.x4f_c00192{left:371.604000px;}
.x28_c00192{left:375.471000px;}
.x1b_c00192{left:376.650000px;}
.x48_c00192{left:378.810000px;}
.x23_c00192{left:382.999500px;}
.x5b_c00192{left:384.834846px;}
.x78_c00192{left:386.041500px;}
.x38_c00192{left:387.181500px;}
.x30_c00192{left:388.347000px;}
.x2_c00192{left:389.880000px;}
.x52_c00192{left:392.112000px;}
.x1c_c00192{left:397.980000px;}
.x45_c00192{left:400.533000px;}
.x79_c00192{left:407.047500px;}
.x7e_c00192{left:408.614551px;}
.x29_c00192{left:410.250000px;}
.x31_c00192{left:411.931500px;}
.x41_c00192{left:413.226000px;}
.x39_c00192{left:420.391500px;}
.x7f_c00192{left:424.819859px;}
.x24_c00192{left:430.237500px;}
.x91_c00192{left:432.214500px;}
.xc_c00192{left:440.910000px;}
.x32_c00192{left:442.390500px;}
.x46_c00192{left:444.222000px;}
.x80_c00192{left:446.422926px;}
.x7a_c00192{left:447.555000px;}
.x25_c00192{left:450.499500px;}
.x3_c00192{left:454.410000px;}
.x3a_c00192{left:455.491500px;}
.x1d_c00192{left:456.840000px;}
.x33_c00192{left:461.551500px;}
.x87_c00192{left:466.506000px;}
.x81_c00192{left:469.051841px;}
.x2a_c00192{left:472.791000px;}
.x7b_c00192{left:480.280500px;}
.x82_c00192{left:490.317459px;}
.x7c_c00192{left:495.315000px;}
.x83_c00192{left:524.982242px;}
.x49_c00192{left:527.310000px;}
.x88_c00192{left:535.359000px;}
.x84_c00192{left:539.542253px;}
.x89_c00192{left:580.744500px;}
.x8a_c00192{left:595.819500px;}
.x8b_c00192{left:602.841000px;}
.x8c_c00192{left:611.209500px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
.fs8_c00192{font-size:17.733333pt;}
.fsc_c00192{font-size:40.137266pt;}
.fs11_c00192{font-size:42.004116pt;}
.fs14_c00192{font-size:42.934106pt;}
.fsf_c00192{font-size:42.937541pt;}
.fse_c00192{font-size:43.870965pt;}
.fs10_c00192{font-size:44.804390pt;}
.fs12_c00192{font-size:44.806473pt;}
.fsd_c00192{font-size:45.737815pt;}
.fsb_c00192{font-size:46.671240pt;}
.fs13_c00192{font-size:51.340750pt;}
.fs3_c00192{font-size:53.200000pt;}
.fs15_c00192{font-size:53.201702pt;}
.fsa_c00192{font-size:56.938913pt;}
.fs2_c00192{font-size:57.866667pt;}
.fs1_c00192{font-size:60.666667pt;}
.fs7_c00192{font-size:61.600000pt;}
.fs6_c00192{font-size:62.533333pt;}
.fs4_c00192{font-size:63.466667pt;}
.fs9_c00192{font-size:64.406311pt;}
.fs5_c00192{font-size:65.333333pt;}
.fs0_c00192{font-size:74.666667pt;}
.y0_c00192{bottom:0.000000pt;}
.yc8_c00192{bottom:152.627680pt;}
.yc7_c00192{bottom:152.785003pt;}
.yc6_c00192{bottom:153.080843pt;}
.yc5_c00192{bottom:153.292021pt;}
.yc4_c00192{bottom:153.476320pt;}
.yc3_c00192{bottom:153.560917pt;}
.yc2_c00192{bottom:153.706773pt;}
.yc1_c00192{bottom:153.871936pt;}
.yc0_c00192{bottom:154.057941pt;}
.ybf_c00192{bottom:154.298091pt;}
.ybe_c00192{bottom:154.599840pt;}
.ybd_c00192{bottom:154.901120pt;}
.ybc_c00192{bottom:155.219872pt;}
.ybb_c00192{bottom:155.521333pt;}
.yba_c00192{bottom:168.169784pt;}
.yb9_c00192{bottom:168.214416pt;}
.yb8_c00192{bottom:168.251864pt;}
.yb7_c00192{bottom:168.332264pt;}
.yb6_c00192{bottom:168.574320pt;}
.yb5_c00192{bottom:168.786008pt;}
.yb4_c00192{bottom:168.941536pt;}
.yb3_c00192{bottom:169.066848pt;}
.yb2_c00192{bottom:169.305920pt;}
.yb1_c00192{bottom:169.389336pt;}
.yb0_c00192{bottom:169.634192pt;}
.yaf_c00192{bottom:169.880624pt;}
.yae_c00192{bottom:170.124016pt;}
.yad_c00192{bottom:170.203032pt;}
.yac_c00192{bottom:170.455176pt;}
.yab_c00192{bottom:170.633688pt;}
.yaa_c00192{bottom:170.750368pt;}
.ya9_c00192{bottom:170.880000pt;}
.ya8_c00192{bottom:181.258499pt;}
.ya7_c00192{bottom:181.582547pt;}
.ya6_c00192{bottom:182.353108pt;}
.ya5_c00192{bottom:182.825165pt;}
.ya4_c00192{bottom:183.328493pt;}
.ya3_c00192{bottom:183.808317pt;}
.ya2_c00192{bottom:184.167897pt;}
.ya1_c00192{bottom:185.344008pt;}
.ya0_c00192{bottom:185.752319pt;}
.y9f_c00192{bottom:191.037851pt;}
.y9e_c00192{bottom:198.258207pt;}
.y9d_c00192{bottom:198.485395pt;}
.y9c_c00192{bottom:198.979913pt;}
.y9b_c00192{bottom:199.592027pt;}
.y9a_c00192{bottom:199.909451pt;}
.y99_c00192{bottom:200.334813pt;}
.y98_c00192{bottom:200.669328pt;}
.y97_c00192{bottom:200.849936pt;}
.y96_c00192{bottom:201.657391pt;}
.y95_c00192{bottom:201.865085pt;}
.y94_c00192{bottom:202.219932pt;}
.y93_c00192{bottom:202.555127pt;}
.y92_c00192{bottom:203.276901pt;}
.y91_c00192{bottom:203.615496pt;}
.y90_c00192{bottom:204.228584pt;}
.y8f_c00192{bottom:204.962667pt;}
.y8e_c00192{bottom:255.072600pt;}
.y8c_c00192{bottom:255.073040pt;}
.y8d_c00192{bottom:255.073077pt;}
.y8b_c00192{bottom:271.191221pt;}
.y8a_c00192{bottom:271.191504pt;}
.y89_c00192{bottom:271.192019pt;}
.y88_c00192{bottom:271.192672pt;}
.y86_c00192{bottom:286.683984pt;}
.y85_c00192{bottom:286.684427pt;}
.y87_c00192{bottom:286.684576pt;}
.y84_c00192{bottom:301.536203pt;}
.y83_c00192{bottom:302.139533pt;}
.y82_c00192{bottom:302.596739pt;}
.y81_c00192{bottom:303.014597pt;}
.y80_c00192{bottom:303.729997pt;}
.y7f_c00192{bottom:304.062995pt;}
.y7e_c00192{bottom:317.507608pt;}
.y7d_c00192{bottom:317.508011pt;}
.y7c_c00192{bottom:317.508205pt;}
.y7b_c00192{bottom:317.508613pt;}
.y7a_c00192{bottom:317.508949pt;}
.y79_c00192{bottom:317.509517pt;}
.y73_c00192{bottom:334.192107pt;}
.y78_c00192{bottom:334.192451pt;}
.y74_c00192{bottom:334.192499pt;}
.y75_c00192{bottom:334.192624pt;}
.y77_c00192{bottom:334.192805pt;}
.y76_c00192{bottom:334.193267pt;}
.y6f_c00192{bottom:348.936995pt;}
.y70_c00192{bottom:348.937493pt;}
.y71_c00192{bottom:348.937531pt;}
.y6e_c00192{bottom:348.937651pt;}
.y72_c00192{bottom:348.937976pt;}
.y69_c00192{bottom:364.782704pt;}
.y6a_c00192{bottom:364.782901pt;}
.y6b_c00192{bottom:364.783240pt;}
.y6d_c00192{bottom:364.783616pt;}
.y6c_c00192{bottom:364.783651pt;}
.y5f_c00192{bottom:379.973741pt;}
.y60_c00192{bottom:379.974384pt;}
.y63_c00192{bottom:379.974477pt;}
.y61_c00192{bottom:379.974723pt;}
.y64_c00192{bottom:379.974923pt;}
.y62_c00192{bottom:379.975115pt;}
.y67_c00192{bottom:379.975157pt;}
.y66_c00192{bottom:379.975352pt;}
.y65_c00192{bottom:379.975440pt;}
.y68_c00192{bottom:379.975603pt;}
.y5e_c00192{bottom:414.735845pt;}
.y5d_c00192{bottom:415.369965pt;}
.y5c_c00192{bottom:416.129555pt;}
.y5b_c00192{bottom:416.694408pt;}
.y5a_c00192{bottom:417.032280pt;}
.y59_c00192{bottom:417.760083pt;}
.y58_c00192{bottom:434.320664pt;}
.y57_c00192{bottom:434.903848pt;}
.y56_c00192{bottom:435.218419pt;}
.y55_c00192{bottom:436.858733pt;}
.y54_c00192{bottom:437.258811pt;}
.y53_c00192{bottom:438.238824pt;}
.y52_c00192{bottom:454.548619pt;}
.y51_c00192{bottom:454.548707pt;}
.y50_c00192{bottom:454.549291pt;}
.y4f_c00192{bottom:473.072765pt;}
.y4e_c00192{bottom:473.530565pt;}
.y4d_c00192{bottom:474.377155pt;}
.y4c_c00192{bottom:474.666936pt;}
.y4b_c00192{bottom:475.768437pt;}
.y4a_c00192{bottom:476.259240pt;}
.y49_c00192{bottom:477.122667pt;}
.y47_c00192{bottom:493.721333pt;}
.y46_c00192{bottom:494.502667pt;}
.y45_c00192{bottom:495.036000pt;}
.y44_c00192{bottom:496.122667pt;}
.y43_c00192{bottom:496.462667pt;}
.y42_c00192{bottom:496.941333pt;}
.y41_c00192{bottom:497.276000pt;}
.y40_c00192{bottom:513.033333pt;}
.y3f_c00192{bottom:513.438667pt;}
.y3e_c00192{bottom:513.681333pt;}
.y3d_c00192{bottom:514.488000pt;}
.y3c_c00192{bottom:514.808000pt;}
.y3b_c00192{bottom:515.550667pt;}
.y3a_c00192{bottom:516.194667pt;}
.y39_c00192{bottom:516.622667pt;}
.y38_c00192{bottom:516.957333pt;}
.y37_c00192{bottom:532.649333pt;}
.y36_c00192{bottom:571.506667pt;}
.y35_c00192{bottom:572.089333pt;}
.y34_c00192{bottom:572.618667pt;}
.y33_c00192{bottom:572.900000pt;}
.y32_c00192{bottom:573.425333pt;}
.y31_c00192{bottom:573.937333pt;}
.y30_c00192{bottom:574.280000pt;}
.y2f_c00192{bottom:574.830667pt;}
.y2e_c00192{bottom:575.760000pt;}
.y2d_c00192{bottom:592.584000pt;}
.y2c_c00192{bottom:592.829333pt;}
.y2b_c00192{bottom:593.330667pt;}
.y2a_c00192{bottom:593.521333pt;}
.y29_c00192{bottom:593.690667pt;}
.y28_c00192{bottom:594.016000pt;}
.y27_c00192{bottom:594.546667pt;}
.y26_c00192{bottom:594.916000pt;}
.y25_c00192{bottom:595.438667pt;}
.y24_c00192{bottom:613.601333pt;}
.y48_c00192{bottom:628.800000pt;}
.y23_c00192{bottom:631.992000pt;}
.y22_c00192{bottom:632.180000pt;}
.y21_c00192{bottom:632.477333pt;}
.y20_c00192{bottom:632.708000pt;}
.y1f_c00192{bottom:633.034667pt;}
.y1e_c00192{bottom:633.209333pt;}
.y1d_c00192{bottom:633.526667pt;}
.y1c_c00192{bottom:633.957333pt;}
.y1b_c00192{bottom:634.216000pt;}
.y1a_c00192{bottom:634.504000pt;}
.y19_c00192{bottom:634.828000pt;}
.y18_c00192{bottom:635.278667pt;}
.y17_c00192{bottom:652.034667pt;}
.y16_c00192{bottom:652.646667pt;}
.y15_c00192{bottom:652.986667pt;}
.y14_c00192{bottom:653.446667pt;}
.y13_c00192{bottom:653.750667pt;}
.y12_c00192{bottom:654.841333pt;}
.y11_c00192{bottom:655.142667pt;}
.y10_c00192{bottom:655.441333pt;}
.yf_c00192{bottom:672.169333pt;}
.ye_c00192{bottom:672.368000pt;}
.yd_c00192{bottom:672.829333pt;}
.yc_c00192{bottom:673.010667pt;}
.yb_c00192{bottom:673.322667pt;}
.ya_c00192{bottom:673.856000pt;}
.y9_c00192{bottom:674.013333pt;}
.y8_c00192{bottom:674.354667pt;}
.y7_c00192{bottom:674.529333pt;}
.y6_c00192{bottom:675.078667pt;}
.y5_c00192{bottom:675.361333pt;}
.y4_c00192{bottom:693.645333pt;}
.y3_c00192{bottom:714.458667pt;}
.y2_c00192{bottom:735.025333pt;}
.y1_c00192{bottom:772.952000pt;}
.ha_c00192{height:17.733333pt;}
.he_c00192{height:40.137266pt;}
.h13_c00192{height:42.004116pt;}
.h16_c00192{height:42.934106pt;}
.h11_c00192{height:42.937541pt;}
.h10_c00192{height:43.870965pt;}
.h12_c00192{height:44.804390pt;}
.h14_c00192{height:44.806473pt;}
.hf_c00192{height:45.737815pt;}
.hd_c00192{height:46.671240pt;}
.h15_c00192{height:51.340750pt;}
.h5_c00192{height:53.200000pt;}
.h17_c00192{height:53.201702pt;}
.hc_c00192{height:56.938913pt;}
.h4_c00192{height:57.866667pt;}
.h3_c00192{height:60.666667pt;}
.h9_c00192{height:61.600000pt;}
.h8_c00192{height:62.533333pt;}
.h6_c00192{height:63.466667pt;}
.hb_c00192{height:64.406311pt;}
.h7_c00192{height:65.333333pt;}
.h2_c00192{height:74.666667pt;}
.h1_c00192{height:893.333333pt;}
.h0_c00192{height:893.466667pt;}
.w0_c00192{width:654.000000pt;}
.x0_c00192{left:0.000000pt;}
.x53_c00192{left:1.200000pt;}
.x8d_c00192{left:42.149333pt;}
.x71_c00192{left:45.900000pt;}
.x8e_c00192{left:79.832000pt;}
.x72_c00192{left:89.081333pt;}
.x85_c00192{left:91.594667pt;}
.x3b_c00192{left:107.826667pt;}
.x4_c00192{left:110.160000pt;}
.x14_c00192{left:111.120000pt;}
.xd_c00192{left:112.320000pt;}
.x8f_c00192{left:119.676000pt;}
.x5_c00192{left:121.440000pt;}
.x73_c00192{left:125.145333pt;}
.x6e_c00192{left:129.845152pt;}
.x34_c00192{left:130.801333pt;}
.xe_c00192{left:132.240000pt;}
.x4a_c00192{left:134.208000pt;}
.x1e_c00192{left:135.956000pt;}
.x6_c00192{left:138.000000pt;}
.x15_c00192{left:139.920000pt;}
.x74_c00192{left:145.062667pt;}
.x66_c00192{left:150.485683pt;}
.x2b_c00192{left:152.513333pt;}
.x6d_c00192{left:153.607984pt;}
.x3c_c00192{left:155.396000pt;}
.x1_c00192{left:156.960000pt;}
.x5c_c00192{left:159.253603pt;}
.x4b_c00192{left:162.782667pt;}
.x16_c00192{left:164.880000pt;}
.x50_c00192{left:165.905333pt;}
.x58_c00192{left:169.262680pt;}
.x42_c00192{left:173.356000pt;}
.xf_c00192{left:174.480000pt;}
.x67_c00192{left:176.168056pt;}
.x2c_c00192{left:182.026667pt;}
.x1f_c00192{left:185.869333pt;}
.x75_c00192{left:187.520000pt;}
.x3d_c00192{left:188.994667pt;}
.x5e_c00192{left:190.090275pt;}
.x59_c00192{left:192.791024pt;}
.x17_c00192{left:194.880000pt;}
.x7_c00192{left:196.800000pt;}
.x10_c00192{left:200.880000pt;}
.x5f_c00192{left:204.731816pt;}
.x4c_c00192{left:205.686667pt;}
.x70_c00192{left:206.653240pt;}
.x2d_c00192{left:208.189333pt;}
.x43_c00192{left:210.038667pt;}
.x6c_c00192{left:211.534064pt;}
.x6f_c00192{left:213.373504pt;}
.x35_c00192{left:216.961333pt;}
.x8_c00192{left:219.600000pt;}
.x62_c00192{left:221.531803pt;}
.x6a_c00192{left:225.373501pt;}
.x18_c00192{left:226.560000pt;}
.x76_c00192{left:228.110667pt;}
.x2e_c00192{left:231.720000pt;}
.x20_c00192{left:232.714667pt;}
.x63_c00192{left:234.012915pt;}
.x68_c00192{left:235.214296pt;}
.x3e_c00192{left:237.232000pt;}
.x6b_c00192{left:241.215267pt;}
.x64_c00192{left:242.894187pt;}
.x69_c00192{left:244.574792pt;}
.x56_c00192{left:245.532979pt;}
.x21_c00192{left:247.070667pt;}
.x11_c00192{left:248.880000pt;}
.x4d_c00192{left:255.190667pt;}
.x86_c00192{left:258.157333pt;}
.x36_c00192{left:260.881333pt;}
.x65_c00192{left:263.056811pt;}
.x26_c00192{left:264.352000pt;}
.x3f_c00192{left:266.748000pt;}
.x90_c00192{left:268.969333pt;}
.x9_c00192{left:270.720000pt;}
.x19_c00192{left:274.560000pt;}
.x4e_c00192{left:276.545333pt;}
.x40_c00192{left:282.117333pt;}
.x54_c00192{left:286.848000pt;}
.x77_c00192{left:287.825333pt;}
.x5a_c00192{left:289.285640pt;}
.x27_c00192{left:291.946667pt;}
.xa_c00192{left:294.000000pt;}
.x12_c00192{left:295.200000pt;}
.x51_c00192{left:296.461333pt;}
.x47_c00192{left:298.080000pt;}
.x2f_c00192{left:299.628000pt;}
.x37_c00192{left:301.681333pt;}
.x57_c00192{left:306.259536pt;}
.x55_c00192{left:307.546667pt;}
.x5d_c00192{left:312.330123pt;}
.x60_c00192{left:313.702504pt;}
.x1a_c00192{left:315.120000pt;}
.x7d_c00192{left:316.153993pt;}
.xb_c00192{left:317.760000pt;}
.x13_c00192{left:318.960000pt;}
.x44_c00192{left:320.750667pt;}
.x61_c00192{left:321.862776pt;}
.x22_c00192{left:323.912000pt;}
.x4f_c00192{left:330.314667pt;}
.x28_c00192{left:333.752000pt;}
.x1b_c00192{left:334.800000pt;}
.x48_c00192{left:336.720000pt;}
.x23_c00192{left:340.444000pt;}
.x5b_c00192{left:342.075419pt;}
.x78_c00192{left:343.148000pt;}
.x38_c00192{left:344.161333pt;}
.x30_c00192{left:345.197333pt;}
.x2_c00192{left:346.560000pt;}
.x52_c00192{left:348.544000pt;}
.x1c_c00192{left:353.760000pt;}
.x45_c00192{left:356.029333pt;}
.x79_c00192{left:361.820000pt;}
.x7e_c00192{left:363.212935pt;}
.x29_c00192{left:364.666667pt;}
.x31_c00192{left:366.161333pt;}
.x41_c00192{left:367.312000pt;}
.x39_c00192{left:373.681333pt;}
.x7f_c00192{left:377.617652pt;}
.x24_c00192{left:382.433333pt;}
.x91_c00192{left:384.190667pt;}
.xc_c00192{left:391.920000pt;}
.x32_c00192{left:393.236000pt;}
.x46_c00192{left:394.864000pt;}
.x80_c00192{left:396.820379pt;}
.x7a_c00192{left:397.826667pt;}
.x25_c00192{left:400.444000pt;}
.x3_c00192{left:403.920000pt;}
.x3a_c00192{left:404.881333pt;}
.x1d_c00192{left:406.080000pt;}
.x33_c00192{left:410.268000pt;}
.x87_c00192{left:414.672000pt;}
.x81_c00192{left:416.934969pt;}
.x2a_c00192{left:420.258667pt;}
.x7b_c00192{left:426.916000pt;}
.x82_c00192{left:435.837741pt;}
.x7c_c00192{left:440.280000pt;}
.x83_c00192{left:466.650881pt;}
.x49_c00192{left:468.720000pt;}
.x88_c00192{left:475.874667pt;}
.x84_c00192{left:479.593113pt;}
.x89_c00192{left:516.217333pt;}
.x8a_c00192{left:529.617333pt;}
.x8b_c00192{left:535.858667pt;}
.x8c_c00192{left:543.297333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89649886b96e4d41b56d1c32.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;}
.m37_c00193{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);}
.m21_c00193{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m74_c00193{transform:matrix(0.030610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030610,0.000000,0.000000,0.250000,0,0);}
.m71_c00193{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);}
.m54_c00193{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);}
.m53_c00193{transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058640,0.000000,0.000000,0.250000,0,0);}
.m5d_c00193{transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00193{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);}
.m41_c00193{transform:matrix(0.140680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{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);}
.m1f_c00193{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);}
.m14_c00193{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{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);}
.m38_c00193{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);}
.m7f_c00193{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);}
.mf_c00193{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);}
.m8b_c00193{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);}
.m81_c00193{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);}
.m6c_c00193{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);}
.m22_c00193{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);}
.m16_c00193{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);}
.m36_c00193{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);}
.m1_c00193{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);}
.m1e_c00193{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);}
.m9_c00193{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);}
.m91_c00193{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);}
.m4a_c00193{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);}
.m42_c00193{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);}
.m40_c00193{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);}
.m4e_c00193{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);}
.m11_c00193{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);}
.m13_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);}
.m29_c00193{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);}
.ma_c00193{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);}
.m50_c00193{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);}
.m51_c00193{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);}
.m62_c00193{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);}
.m8f_c00193{transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);}
.m89_c00193{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);}
.m19_c00193{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_c00193{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);}
.m35_c00193{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);}
.m3e_c00193{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);}
.m1d_c00193{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);}
.m90_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);}
.m4f_c00193{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);}
.m77_c00193{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);}
.m61_c00193{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);}
.m26_c00193{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);}
.m3c_c00193{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);}
.m7_c00193{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);}
.m65_c00193{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);}
.m7e_c00193{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);}
.m32_c00193{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{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);}
.mb_c00193{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);}
.m15_c00193{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);}
.m68_c00193{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{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);}
.m1a_c00193{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);}
.m10_c00193{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);}
.m6f_c00193{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);}
.me_c00193{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);}
.m46_c00193{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);}
.m48_c00193{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);}
.m28_c00193{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);}
.m6d_c00193{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);}
.m67_c00193{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);}
.m63_c00193{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);}
.m86_c00193{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);}
.m6_c00193{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);}
.m79_c00193{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);}
.m8c_c00193{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);}
.m6b_c00193{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);}
.m8a_c00193{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.236630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236630,0.000000,0.000000,0.250000,0,0);}
.m85_c00193{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);}
.m47_c00193{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);}
.m8_c00193{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);}
.m7d_c00193{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);}
.m88_c00193{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{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);}
.m39_c00193{transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{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);}
.m25_c00193{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.md_c00193{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);}
.m5_c00193{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);}
.m17_c00193{transform:matrix(0.254390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254390,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m7a_c00193{transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);}
.m80_c00193{transform:matrix(0.259030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259030,0.000000,0.000000,0.250000,0,0);}
.m72_c00193{transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{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);}
.m2f_c00193{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);}
.m1c_c00193{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);}
.m52_c00193{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);}
.m2b_c00193{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m8d_c00193{transform:matrix(0.271010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271010,0.000000,0.000000,0.250000,0,0);}
.m6a_c00193{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);}
.m87_c00193{transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);}
.m73_c00193{transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276320,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{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);}
.mc_c00193{transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);}
.m59_c00193{transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);}
.m69_c00193{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);}
.m5a_c00193{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);}
.m6e_c00193{transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306525,0.000000,0.000000,0.250000,0,0);}
.m64_c00193{transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307045,0.000000,0.000000,0.250000,0,0);}
.m83_c00193{transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310455,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326810,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330520,0.000000,0.000000,0.250000,0,0);}
.m7c_c00193{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);}
.m34_c00193{transform:matrix(0.349280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00193{transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353545,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.353655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353655,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.361240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361240,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.366225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366225,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.381610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381610,0.000000,0.000000,0.250000,0,0);}
.m8e_c00193{transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.428980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428980,0.000000,0.000000,0.250000,0,0);}
.m78_c00193{transform:matrix(0.429140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429140,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.463365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463365,0.000000,0.000000,0.250000,0,0);}
.m5f_c00193{transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.485330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485330,0.000000,0.000000,0.250000,0,0);}
.m84_c00193{transform:matrix(0.490780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490780,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.541670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541670,0.000000,0.000000,0.250000,0,0);}
.m76_c00193{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.590350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590350,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.595995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595995,0.000000,0.000000,0.250000,0,0);}
.m75_c00193{transform:matrix(0.607360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607360,0.000000,0.000000,0.250000,0,0);}
.m70_c00193{transform:matrix(0.636135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636135,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{transform:matrix(0.644020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644020,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.653400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653400,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.775960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775960,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.898705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898705,0.000000,0.000000,0.250000,0,0);}
.m82_c00193{transform:matrix(1.095560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095560,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(1.174555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.174555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.174555,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;}
.fs8_c00193{font-size:16.800000px;}
.fsd_c00193{font-size:24.150000px;}
.fse_c00193{font-size:25.200000px;}
.fsb_c00193{font-size:31.500000px;}
.fsf_c00193{font-size:44.100000px;}
.fs9_c00193{font-size:45.150000px;}
.fs10_c00193{font-size:48.300000px;}
.fsa_c00193{font-size:52.500000px;}
.fs7_c00193{font-size:59.850000px;}
.fs5_c00193{font-size:60.900000px;}
.fs4_c00193{font-size:63.000000px;}
.fs1_c00193{font-size:65.100000px;}
.fs2_c00193{font-size:69.300000px;}
.fs3_c00193{font-size:71.400000px;}
.fs6_c00193{font-size:72.450000px;}
.fsc_c00193{font-size:73.500000px;}
.fs0_c00193{font-size:89.250000px;}
.y0_c00193{bottom:0.000000px;}
.y2f_c00193{bottom:157.338000px;}
.y2e_c00193{bottom:175.530000px;}
.y2d_c00193{bottom:183.691500px;}
.y2c_c00193{bottom:193.080000px;}
.y2b_c00193{bottom:208.998000px;}
.y2a_c00193{bottom:530.304000px;}
.y29_c00193{bottom:557.280000px;}
.y28_c00193{bottom:586.854000px;}
.y27_c00193{bottom:605.088000px;}
.y25_c00193{bottom:630.990000px;}
.y26_c00193{bottom:644.428500px;}
.y24_c00193{bottom:669.058500px;}
.y19_c00193{bottom:688.771500px;}
.y1a_c00193{bottom:688.983000px;}
.y1b_c00193{bottom:689.416500px;}
.y1c_c00193{bottom:689.763000px;}
.y1d_c00193{bottom:690.343500px;}
.y1e_c00193{bottom:690.636000px;}
.y1f_c00193{bottom:691.140000px;}
.y20_c00193{bottom:691.413000px;}
.y21_c00193{bottom:691.879500px;}
.y22_c00193{bottom:692.025000px;}
.y23_c00193{bottom:692.188500px;}
.y18_c00193{bottom:714.360000px;}
.y17_c00193{bottom:735.669000px;}
.y16_c00193{bottom:759.327000px;}
.y15_c00193{bottom:781.027500px;}
.ya_c00193{bottom:800.551500px;}
.yb_c00193{bottom:801.456000px;}
.yc_c00193{bottom:801.840000px;}
.yd_c00193{bottom:802.455000px;}
.ye_c00193{bottom:802.825500px;}
.yf_c00193{bottom:803.098500px;}
.y10_c00193{bottom:803.509500px;}
.y11_c00193{bottom:803.755500px;}
.y12_c00193{bottom:803.971500px;}
.y13_c00193{bottom:804.252000px;}
.y14_c00193{bottom:804.664500px;}
.y2_c00193{bottom:823.231500px;}
.y3_c00193{bottom:823.981500px;}
.y4_c00193{bottom:824.331000px;}
.y5_c00193{bottom:824.926500px;}
.y6_c00193{bottom:825.532500px;}
.y7_c00193{bottom:826.179000px;}
.y8_c00193{bottom:826.425000px;}
.y9_c00193{bottom:826.633500px;}
.y1_c00193{bottom:869.725500px;}
.ha_c00193{height:16.800000px;}
.hf_c00193{height:24.150000px;}
.h10_c00193{height:25.200000px;}
.hd_c00193{height:31.500000px;}
.h11_c00193{height:44.100000px;}
.hb_c00193{height:45.150000px;}
.h12_c00193{height:48.300000px;}
.hc_c00193{height:52.500000px;}
.h9_c00193{height:59.850000px;}
.h7_c00193{height:60.900000px;}
.h6_c00193{height:63.000000px;}
.h3_c00193{height:65.100000px;}
.h4_c00193{height:69.300000px;}
.h5_c00193{height:71.400000px;}
.h8_c00193{height:72.450000px;}
.he_c00193{height:73.500000px;}
.h2_c00193{height:89.250000px;}
.h0_c00193{height:1008.450000px;}
.h1_c00193{height:1008.750000px;}
.w0_c00193{width:678.450000px;}
.w1_c00193{width:678.750000px;}
.x0_c00193{left:0.000000px;}
.x5d_c00193{left:72.630000px;}
.x5b_c00193{left:85.050000px;}
.x5e_c00193{left:88.560000px;}
.xd_c00193{left:96.574500px;}
.x5c_c00193{left:99.090000px;}
.x4e_c00193{left:100.710000px;}
.x5_c00193{left:102.784500px;}
.x5f_c00193{left:114.480000px;}
.x43_c00193{left:116.100000px;}
.x1_c00193{left:151.740000px;}
.x60_c00193{left:154.170000px;}
.x44_c00193{left:160.110000px;}
.x4f_c00193{left:164.700000px;}
.x50_c00193{left:181.980000px;}
.x6_c00193{left:186.150000px;}
.x16_c00193{left:187.380000px;}
.x34_c00193{left:189.000000px;}
.x61_c00193{left:203.040000px;}
.x20_c00193{left:206.010000px;}
.x6b_c00193{left:211.140000px;}
.x35_c00193{left:212.220000px;}
.x62_c00193{left:217.350000px;}
.x25_c00193{left:221.400000px;}
.x31_c00193{left:223.020000px;}
.x7_c00193{left:225.055500px;}
.x36_c00193{left:228.690000px;}
.x21_c00193{left:233.010000px;}
.x3a_c00193{left:234.090000px;}
.x17_c00193{left:240.030000px;}
.x29_c00193{left:245.916000px;}
.x51_c00193{left:247.050000px;}
.x3d_c00193{left:254.880000px;}
.x3b_c00193{left:256.230000px;}
.x63_c00193{left:260.010000px;}
.x52_c00193{left:264.600000px;}
.x18_c00193{left:268.110000px;}
.x2a_c00193{left:277.464000px;}
.x3e_c00193{left:281.070000px;}
.x22_c00193{left:283.230000px;}
.xe_c00193{left:286.840500px;}
.x8_c00193{left:291.166500px;}
.x37_c00193{left:296.460000px;}
.x53_c00193{left:302.670000px;}
.x32_c00193{left:309.960000px;}
.x3c_c00193{left:315.900000px;}
.x3f_c00193{left:317.790000px;}
.x1e_c00193{left:320.220000px;}
.xf_c00193{left:323.829000px;}
.x2_c00193{left:326.160000px;}
.x19_c00193{left:328.590000px;}
.x2b_c00193{left:330.300000px;}
.x6c_c00193{left:334.260000px;}
.x45_c00193{left:336.690000px;}
.x64_c00193{left:337.770000px;}
.x26_c00193{left:338.850000px;}
.x23_c00193{left:340.200000px;}
.x10_c00193{left:351.102000px;}
.x41_c00193{left:355.050000px;}
.x2c_c00193{left:356.833500px;}
.x9_c00193{left:358.425000px;}
.x1a_c00193{left:362.070000px;}
.x33_c00193{left:369.900000px;}
.x42_c00193{left:376.650000px;}
.x3_c00193{left:379.350000px;}
.x27_c00193{left:386.640000px;}
.x11_c00193{left:392.175000px;}
.x1b_c00193{left:399.060000px;}
.x54_c00193{left:401.490000px;}
.x2d_c00193{left:402.718500px;}
.x40_c00193{left:404.190000px;}
.x46_c00193{left:406.350000px;}
.x38_c00193{left:410.670000px;}
.x4_c00193{left:415.530000px;}
.x12_c00193{left:416.754000px;}
.x1c_c00193{left:423.630000px;}
.x47_c00193{left:424.980000px;}
.x28_c00193{left:426.600000px;}
.x24_c00193{left:427.950000px;}
.xa_c00193{left:430.198500px;}
.x13_c00193{left:438.354000px;}
.x6d_c00193{left:439.830000px;}
.x65_c00193{left:456.300000px;}
.xb_c00193{left:457.515000px;}
.x55_c00193{left:459.540000px;}
.x6e_c00193{left:463.050000px;}
.x39_c00193{left:465.210000px;}
.x14_c00193{left:466.423500px;}
.x2e_c00193{left:469.932000px;}
.x48_c00193{left:477.900000px;}
.xc_c00193{left:480.733500px;}
.x2f_c00193{left:483.154500px;}
.x30_c00193{left:498.027000px;}
.x1d_c00193{left:505.170000px;}
.x15_c00193{left:507.739500px;}
.x66_c00193{left:517.050000px;}
.x49_c00193{left:523.260000px;}
.x56_c00193{left:527.040000px;}
.x67_c00193{left:539.190000px;}
.x57_c00193{left:545.940000px;}
.x1f_c00193{left:553.230000px;}
.x58_c00193{left:574.290000px;}
.x68_c00193{left:582.390000px;}
.x4a_c00193{left:591.840000px;}
.x59_c00193{left:597.510000px;}
.x69_c00193{left:605.340000px;}
.x4b_c00193{left:609.660000px;}
.x6a_c00193{left:635.040000px;}
.x5a_c00193{left:642.330000px;}
.x4c_c00193{left:643.950000px;}
.x4d_c00193{left:672.840000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.fs8_c00193{font-size:14.933333pt;}
.fsd_c00193{font-size:21.466667pt;}
.fse_c00193{font-size:22.400000pt;}
.fsb_c00193{font-size:28.000000pt;}
.fsf_c00193{font-size:39.200000pt;}
.fs9_c00193{font-size:40.133333pt;}
.fs10_c00193{font-size:42.933333pt;}
.fsa_c00193{font-size:46.666667pt;}
.fs7_c00193{font-size:53.200000pt;}
.fs5_c00193{font-size:54.133333pt;}
.fs4_c00193{font-size:56.000000pt;}
.fs1_c00193{font-size:57.866667pt;}
.fs2_c00193{font-size:61.600000pt;}
.fs3_c00193{font-size:63.466667pt;}
.fs6_c00193{font-size:64.400000pt;}
.fsc_c00193{font-size:65.333333pt;}
.fs0_c00193{font-size:79.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y2f_c00193{bottom:139.856000pt;}
.y2e_c00193{bottom:156.026667pt;}
.y2d_c00193{bottom:163.281333pt;}
.y2c_c00193{bottom:171.626667pt;}
.y2b_c00193{bottom:185.776000pt;}
.y2a_c00193{bottom:471.381333pt;}
.y29_c00193{bottom:495.360000pt;}
.y28_c00193{bottom:521.648000pt;}
.y27_c00193{bottom:537.856000pt;}
.y25_c00193{bottom:560.880000pt;}
.y26_c00193{bottom:572.825333pt;}
.y24_c00193{bottom:594.718667pt;}
.y19_c00193{bottom:612.241333pt;}
.y1a_c00193{bottom:612.429333pt;}
.y1b_c00193{bottom:612.814667pt;}
.y1c_c00193{bottom:613.122667pt;}
.y1d_c00193{bottom:613.638667pt;}
.y1e_c00193{bottom:613.898667pt;}
.y1f_c00193{bottom:614.346667pt;}
.y20_c00193{bottom:614.589333pt;}
.y21_c00193{bottom:615.004000pt;}
.y22_c00193{bottom:615.133333pt;}
.y23_c00193{bottom:615.278667pt;}
.y18_c00193{bottom:634.986667pt;}
.y17_c00193{bottom:653.928000pt;}
.y16_c00193{bottom:674.957333pt;}
.y15_c00193{bottom:694.246667pt;}
.ya_c00193{bottom:711.601333pt;}
.yb_c00193{bottom:712.405333pt;}
.yc_c00193{bottom:712.746667pt;}
.yd_c00193{bottom:713.293333pt;}
.ye_c00193{bottom:713.622667pt;}
.yf_c00193{bottom:713.865333pt;}
.y10_c00193{bottom:714.230667pt;}
.y11_c00193{bottom:714.449333pt;}
.y12_c00193{bottom:714.641333pt;}
.y13_c00193{bottom:714.890667pt;}
.y14_c00193{bottom:715.257333pt;}
.y2_c00193{bottom:731.761333pt;}
.y3_c00193{bottom:732.428000pt;}
.y4_c00193{bottom:732.738667pt;}
.y5_c00193{bottom:733.268000pt;}
.y6_c00193{bottom:733.806667pt;}
.y7_c00193{bottom:734.381333pt;}
.y8_c00193{bottom:734.600000pt;}
.y9_c00193{bottom:734.785333pt;}
.y1_c00193{bottom:773.089333pt;}
.ha_c00193{height:14.933333pt;}
.hf_c00193{height:21.466667pt;}
.h10_c00193{height:22.400000pt;}
.hd_c00193{height:28.000000pt;}
.h11_c00193{height:39.200000pt;}
.hb_c00193{height:40.133333pt;}
.h12_c00193{height:42.933333pt;}
.hc_c00193{height:46.666667pt;}
.h9_c00193{height:53.200000pt;}
.h7_c00193{height:54.133333pt;}
.h6_c00193{height:56.000000pt;}
.h3_c00193{height:57.866667pt;}
.h4_c00193{height:61.600000pt;}
.h5_c00193{height:63.466667pt;}
.h8_c00193{height:64.400000pt;}
.he_c00193{height:65.333333pt;}
.h2_c00193{height:79.333333pt;}
.h0_c00193{height:896.400000pt;}
.h1_c00193{height:896.666667pt;}
.w0_c00193{width:603.066667pt;}
.w1_c00193{width:603.333333pt;}
.x0_c00193{left:0.000000pt;}
.x5d_c00193{left:64.560000pt;}
.x5b_c00193{left:75.600000pt;}
.x5e_c00193{left:78.720000pt;}
.xd_c00193{left:85.844000pt;}
.x5c_c00193{left:88.080000pt;}
.x4e_c00193{left:89.520000pt;}
.x5_c00193{left:91.364000pt;}
.x5f_c00193{left:101.760000pt;}
.x43_c00193{left:103.200000pt;}
.x1_c00193{left:134.880000pt;}
.x60_c00193{left:137.040000pt;}
.x44_c00193{left:142.320000pt;}
.x4f_c00193{left:146.400000pt;}
.x50_c00193{left:161.760000pt;}
.x6_c00193{left:165.466667pt;}
.x16_c00193{left:166.560000pt;}
.x34_c00193{left:168.000000pt;}
.x61_c00193{left:180.480000pt;}
.x20_c00193{left:183.120000pt;}
.x6b_c00193{left:187.680000pt;}
.x35_c00193{left:188.640000pt;}
.x62_c00193{left:193.200000pt;}
.x25_c00193{left:196.800000pt;}
.x31_c00193{left:198.240000pt;}
.x7_c00193{left:200.049333pt;}
.x36_c00193{left:203.280000pt;}
.x21_c00193{left:207.120000pt;}
.x3a_c00193{left:208.080000pt;}
.x17_c00193{left:213.360000pt;}
.x29_c00193{left:218.592000pt;}
.x51_c00193{left:219.600000pt;}
.x3d_c00193{left:226.560000pt;}
.x3b_c00193{left:227.760000pt;}
.x63_c00193{left:231.120000pt;}
.x52_c00193{left:235.200000pt;}
.x18_c00193{left:238.320000pt;}
.x2a_c00193{left:246.634667pt;}
.x3e_c00193{left:249.840000pt;}
.x22_c00193{left:251.760000pt;}
.xe_c00193{left:254.969333pt;}
.x8_c00193{left:258.814667pt;}
.x37_c00193{left:263.520000pt;}
.x53_c00193{left:269.040000pt;}
.x32_c00193{left:275.520000pt;}
.x3c_c00193{left:280.800000pt;}
.x3f_c00193{left:282.480000pt;}
.x1e_c00193{left:284.640000pt;}
.xf_c00193{left:287.848000pt;}
.x2_c00193{left:289.920000pt;}
.x19_c00193{left:292.080000pt;}
.x2b_c00193{left:293.600000pt;}
.x6c_c00193{left:297.120000pt;}
.x45_c00193{left:299.280000pt;}
.x64_c00193{left:300.240000pt;}
.x26_c00193{left:301.200000pt;}
.x23_c00193{left:302.400000pt;}
.x10_c00193{left:312.090667pt;}
.x41_c00193{left:315.600000pt;}
.x2c_c00193{left:317.185333pt;}
.x9_c00193{left:318.600000pt;}
.x1a_c00193{left:321.840000pt;}
.x33_c00193{left:328.800000pt;}
.x42_c00193{left:334.800000pt;}
.x3_c00193{left:337.200000pt;}
.x27_c00193{left:343.680000pt;}
.x11_c00193{left:348.600000pt;}
.x1b_c00193{left:354.720000pt;}
.x54_c00193{left:356.880000pt;}
.x2d_c00193{left:357.972000pt;}
.x40_c00193{left:359.280000pt;}
.x46_c00193{left:361.200000pt;}
.x38_c00193{left:365.040000pt;}
.x4_c00193{left:369.360000pt;}
.x12_c00193{left:370.448000pt;}
.x1c_c00193{left:376.560000pt;}
.x47_c00193{left:377.760000pt;}
.x28_c00193{left:379.200000pt;}
.x24_c00193{left:380.400000pt;}
.xa_c00193{left:382.398667pt;}
.x13_c00193{left:389.648000pt;}
.x6d_c00193{left:390.960000pt;}
.x65_c00193{left:405.600000pt;}
.xb_c00193{left:406.680000pt;}
.x55_c00193{left:408.480000pt;}
.x6e_c00193{left:411.600000pt;}
.x39_c00193{left:413.520000pt;}
.x14_c00193{left:414.598667pt;}
.x2e_c00193{left:417.717333pt;}
.x48_c00193{left:424.800000pt;}
.xc_c00193{left:427.318667pt;}
.x2f_c00193{left:429.470667pt;}
.x30_c00193{left:442.690667pt;}
.x1d_c00193{left:449.040000pt;}
.x15_c00193{left:451.324000pt;}
.x66_c00193{left:459.600000pt;}
.x49_c00193{left:465.120000pt;}
.x56_c00193{left:468.480000pt;}
.x67_c00193{left:479.280000pt;}
.x57_c00193{left:485.280000pt;}
.x1f_c00193{left:491.760000pt;}
.x58_c00193{left:510.480000pt;}
.x68_c00193{left:517.680000pt;}
.x4a_c00193{left:526.080000pt;}
.x59_c00193{left:531.120000pt;}
.x69_c00193{left:538.080000pt;}
.x4b_c00193{left:541.920000pt;}
.x6a_c00193{left:564.480000pt;}
.x5a_c00193{left:570.960000pt;}
.x4c_c00193{left:572.400000pt;}
.x4d_c00193{left:598.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m89_c00194{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);}
.m4a_c00194{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{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);}
.m7b_c00194{transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);}
.mab_c00194{transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{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);}
.m9e_c00194{transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.062341,-0.001746,0.006997,0.249902,0,0);-ms-transform:matrix(0.062341,-0.001746,0.006997,0.249902,0,0);-webkit-transform:matrix(0.062341,-0.001746,0.006997,0.249902,0,0);}
.m28_c00194{transform:matrix(0.078379,-0.002195,0.006997,0.249902,0,0);-ms-transform:matrix(0.078379,-0.002195,0.006997,0.249902,0,0);-webkit-transform:matrix(0.078379,-0.002195,0.006997,0.249902,0,0);}
.m85_c00194{transform:matrix(0.135020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135020,0.000000,0.000000,0.250000,0,0);}
.m8d_c00194{transform:matrix(0.141581,-0.001557,0.002750,0.249985,0,0);-ms-transform:matrix(0.141581,-0.001557,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141581,-0.001557,0.002750,0.249985,0,0);}
.m39_c00194{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);}
.m34_c00194{transform:matrix(0.147990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147990,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.149030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149030,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.149591,-0.004189,0.006997,0.249902,0,0);-ms-transform:matrix(0.149591,-0.004189,0.006997,0.249902,0,0);-webkit-transform:matrix(0.149591,-0.004189,0.006997,0.249902,0,0);}
.m6e_c00194{transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{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);}
.m6d_c00194{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);}
.m4d_c00194{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);}
.m74_c00194{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);}
.m41_c00194{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);}
.m2f_c00194{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);}
.m77_c00194{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_c00194{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);}
.m45_c00194{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);}
.m9b_c00194{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);}
.m72_c00194{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);}
.m3e_c00194{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);}
.m40_c00194{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);}
.m42_c00194{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);}
.m1e_c00194{transform:matrix(0.178015,-0.004628,0.006498,0.249916,0,0);-ms-transform:matrix(0.178015,-0.004628,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178015,-0.004628,0.006498,0.249916,0,0);}
.m8c_c00194{transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);}
.m31_c00194{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);}
.m3a_c00194{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);}
.m43_c00194{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);}
.m94_c00194{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);}
.maa_c00194{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);}
.ma9_c00194{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);}
.m3d_c00194{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);}
.m53_c00194{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);}
.m4c_c00194{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);}
.m4e_c00194{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);}
.m61_c00194{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);}
.m4f_c00194{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);}
.m95_c00194{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);}
.m73_c00194{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);}
.m9a_c00194{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);}
.m22_c00194{transform:matrix(0.191745,-0.005369,0.006997,0.249902,0,0);-ms-transform:matrix(0.191745,-0.005369,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191745,-0.005369,0.006997,0.249902,0,0);}
.m35_c00194{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);}
.mb7_c00194{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);}
.m90_c00194{transform:matrix(0.194288,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194288,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194288,-0.002137,0.002750,0.249985,0,0);}
.m1d_c00194{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);}
.m97_c00194{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);}
.ma1_c00194{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);}
.m38_c00194{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);}
.m57_c00194{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);}
.m76_c00194{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);}
.m1b_c00194{transform:matrix(0.199742,-0.005193,0.006498,0.249916,0,0);-ms-transform:matrix(0.199742,-0.005193,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199742,-0.005193,0.006498,0.249916,0,0);}
.m44_c00194{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);}
.m78_c00194{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);}
.m65_c00194{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);}
.m8f_c00194{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);}
.m47_c00194{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m56_c00194{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);}
.m7f_c00194{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);}
.m55_c00194{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);}
.m71_c00194{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);}
.m16_c00194{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);}
.mb1_c00194{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);}
.m1f_c00194{transform:matrix(0.205990,-0.005356,0.006498,0.249916,0,0);-ms-transform:matrix(0.205990,-0.005356,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205990,-0.005356,0.006498,0.249916,0,0);}
.m4b_c00194{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);}
.m26_c00194{transform:matrix(0.206664,-0.005787,0.006997,0.249902,0,0);-ms-transform:matrix(0.206664,-0.005787,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206664,-0.005787,0.006997,0.249902,0,0);}
.ma2_c00194{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);}
.m15_c00194{transform:matrix(0.207695,-0.005400,0.006498,0.249916,0,0);-ms-transform:matrix(0.207695,-0.005400,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207695,-0.005400,0.006498,0.249916,0,0);}
.m79_c00194{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);}
.ma4_c00194{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m8e_c00194{transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);-ms-transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);}
.m80_c00194{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);}
.m64_c00194{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);}
.m7a_c00194{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);}
.m46_c00194{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);}
.mae_c00194{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);}
.m96_c00194{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);}
.ma3_c00194{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);}
.m8b_c00194{transform:matrix(0.216237,-0.002379,0.002750,0.249985,0,0);-ms-transform:matrix(0.216237,-0.002379,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216237,-0.002379,0.002750,0.249985,0,0);}
.m92_c00194{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);}
.m48_c00194{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);}
.m7e_c00194{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);}
.mb2_c00194{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);}
.m3b_c00194{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);}
.m37_c00194{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);}
.m17_c00194{transform:matrix(0.224099,-0.005827,0.006498,0.249916,0,0);-ms-transform:matrix(0.224099,-0.005827,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224099,-0.005827,0.006498,0.249916,0,0);}
.mb0_c00194{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);}
.m1c_c00194{transform:matrix(0.225664,-0.005867,0.006498,0.249916,0,0);-ms-transform:matrix(0.225664,-0.005867,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225664,-0.005867,0.006498,0.249916,0,0);}
.ma8_c00194{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);}
.m21_c00194{transform:matrix(0.227141,-0.006360,0.006997,0.249902,0,0);-ms-transform:matrix(0.227141,-0.006360,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227141,-0.006360,0.006997,0.249902,0,0);}
.m2_c00194{transform:matrix(0.227998,-0.004104,0.004499,0.249960,0,0);-ms-transform:matrix(0.227998,-0.004104,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227998,-0.004104,0.004499,0.249960,0,0);}
.m32_c00194{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);}
.m83_c00194{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);}
.m9f_c00194{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00194{transform:matrix(0.232810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232810,0.000000,0.000000,0.250000,0,0);}
.maf_c00194{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);}
.m54_c00194{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);}
.m81_c00194{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.m9c_c00194{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);}
.mb3_c00194{transform:matrix(0.241890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241890,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);-ms-transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);}
.m1a_c00194{transform:matrix(0.246247,-0.006402,0.006498,0.249916,0,0);-ms-transform:matrix(0.246247,-0.006402,0.006498,0.249916,0,0);-webkit-transform:matrix(0.246247,-0.006402,0.006498,0.249916,0,0);}
.m51_c00194{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);}
.m62_c00194{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m5e_c00194{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m98_c00194{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.mad_c00194{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.ma0_c00194{transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.252835,-0.006574,0.006498,0.249916,0,0);-ms-transform:matrix(0.252835,-0.006574,0.006498,0.249916,0,0);-webkit-transform:matrix(0.252835,-0.006574,0.006498,0.249916,0,0);}
.m99_c00194{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);}
.m5a_c00194{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);}
.m91_c00194{transform:matrix(0.255645,-0.002812,0.002750,0.249985,0,0);-ms-transform:matrix(0.255645,-0.002812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255645,-0.002812,0.002750,0.249985,0,0);}
.m29_c00194{transform:matrix(0.257439,-0.007208,0.006997,0.249902,0,0);-ms-transform:matrix(0.257439,-0.007208,0.006997,0.249902,0,0);-webkit-transform:matrix(0.257439,-0.007208,0.006997,0.249902,0,0);}
.m82_c00194{transform:matrix(0.262835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262835,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(0.267345,-0.007486,0.006997,0.249902,0,0);-ms-transform:matrix(0.267345,-0.007486,0.006997,0.249902,0,0);-webkit-transform:matrix(0.267345,-0.007486,0.006997,0.249902,0,0);}
.m4_c00194{transform:matrix(0.267357,-0.004812,0.004499,0.249960,0,0);-ms-transform:matrix(0.267357,-0.004812,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267357,-0.004812,0.004499,0.249960,0,0);}
.m93_c00194{transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.275752,-0.007170,0.006498,0.249916,0,0);-ms-transform:matrix(0.275752,-0.007170,0.006498,0.249916,0,0);-webkit-transform:matrix(0.275752,-0.007170,0.006498,0.249916,0,0);}
.m19_c00194{transform:matrix(0.277161,-0.007206,0.006498,0.249916,0,0);-ms-transform:matrix(0.277161,-0.007206,0.006498,0.249916,0,0);-webkit-transform:matrix(0.277161,-0.007206,0.006498,0.249916,0,0);}
.m3_c00194{transform:matrix(0.278430,-0.005012,0.004499,0.249960,0,0);-ms-transform:matrix(0.278430,-0.005012,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278430,-0.005012,0.004499,0.249960,0,0);}
.m63_c00194{transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.282453,-0.004237,0.003750,0.249972,0,0);-ms-transform:matrix(0.282453,-0.004237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282453,-0.004237,0.003750,0.249972,0,0);}
.m7_c00194{transform:matrix(0.285483,-0.004282,0.003750,0.249972,0,0);-ms-transform:matrix(0.285483,-0.004282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.285483,-0.004282,0.003750,0.249972,0,0);}
.m2c_c00194{transform:matrix(0.292375,-0.008187,0.006997,0.249902,0,0);-ms-transform:matrix(0.292375,-0.008187,0.006997,0.249902,0,0);-webkit-transform:matrix(0.292375,-0.008187,0.006997,0.249902,0,0);}
.m69_c00194{transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292585,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{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);}
.m13_c00194{transform:matrix(0.299234,-0.007780,0.006498,0.249916,0,0);-ms-transform:matrix(0.299234,-0.007780,0.006498,0.249916,0,0);-webkit-transform:matrix(0.299234,-0.007780,0.006498,0.249916,0,0);}
.m66_c00194{transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300785,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.302891,-0.008481,0.006997,0.249902,0,0);-ms-transform:matrix(0.302891,-0.008481,0.006997,0.249902,0,0);-webkit-transform:matrix(0.302891,-0.008481,0.006997,0.249902,0,0);}
.m7d_c00194{transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.311510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311510,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(0.315941,-0.008846,0.006997,0.249902,0,0);-ms-transform:matrix(0.315941,-0.008846,0.006997,0.249902,0,0);-webkit-transform:matrix(0.315941,-0.008846,0.006997,0.249902,0,0);}
.m36_c00194{transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);}
.m6a_c00194{transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326960,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.334747,-0.005021,0.003750,0.249972,0,0);-ms-transform:matrix(0.334747,-0.005021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.334747,-0.005021,0.003750,0.249972,0,0);}
.mb9_c00194{transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335815,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.343335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343335,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.343846,-0.005158,0.003750,0.249972,0,0);-ms-transform:matrix(0.343846,-0.005158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.343846,-0.005158,0.003750,0.249972,0,0);}
.m9d_c00194{transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);}
.mb6_c00194{transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361780,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.366496,-0.009529,0.006498,0.249916,0,0);-ms-transform:matrix(0.366496,-0.009529,0.006498,0.249916,0,0);-webkit-transform:matrix(0.366496,-0.009529,0.006498,0.249916,0,0);}
.m0_c00194{transform:matrix(0.366761,-0.006602,0.004499,0.249960,0,0);-ms-transform:matrix(0.366761,-0.006602,0.004499,0.249960,0,0);-webkit-transform:matrix(0.366761,-0.006602,0.004499,0.249960,0,0);}
.ma7_c00194{transform:matrix(0.371900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371900,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.376395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376395,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.377110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377110,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.387440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387440,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.390121,-0.005852,0.003750,0.249972,0,0);-ms-transform:matrix(0.390121,-0.005852,0.003750,0.249972,0,0);-webkit-transform:matrix(0.390121,-0.005852,0.003750,0.249972,0,0);}
.m6c_c00194{transform:matrix(0.391555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391555,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.400850,-0.006013,0.003750,0.249972,0,0);-ms-transform:matrix(0.400850,-0.006013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.400850,-0.006013,0.003750,0.249972,0,0);}
.m27_c00194{transform:matrix(0.402877,-0.011281,0.006997,0.249902,0,0);-ms-transform:matrix(0.402877,-0.011281,0.006997,0.249902,0,0);-webkit-transform:matrix(0.402877,-0.011281,0.006997,0.249902,0,0);}
.m87_c00194{transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.409177,-0.010639,0.006498,0.249916,0,0);-ms-transform:matrix(0.409177,-0.010639,0.006498,0.249916,0,0);-webkit-transform:matrix(0.409177,-0.010639,0.006498,0.249916,0,0);}
.m67_c00194{transform:matrix(0.414270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414270,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.426245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426245,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.435950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435950,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.442090,-0.006631,0.003750,0.249972,0,0);-ms-transform:matrix(0.442090,-0.006631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.442090,-0.006631,0.003750,0.249972,0,0);}
.mc_c00194{transform:matrix(0.458708,-0.006881,0.003750,0.249972,0,0);-ms-transform:matrix(0.458708,-0.006881,0.003750,0.249972,0,0);-webkit-transform:matrix(0.458708,-0.006881,0.003750,0.249972,0,0);}
.m70_c00194{transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.494415,-0.008899,0.004499,0.249960,0,0);-ms-transform:matrix(0.494415,-0.008899,0.004499,0.249960,0,0);-webkit-transform:matrix(0.494415,-0.008899,0.004499,0.249960,0,0);}
.m6f_c00194{transform:matrix(0.495640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.500564,-0.014016,0.006997,0.249902,0,0);-ms-transform:matrix(0.500564,-0.014016,0.006997,0.249902,0,0);-webkit-transform:matrix(0.500564,-0.014016,0.006997,0.249902,0,0);}
.m88_c00194{transform:matrix(0.509805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509805,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);}
.m68_c00194{transform:matrix(0.549795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549795,0.000000,0.000000,0.250000,0,0);}
.m86_c00194{transform:matrix(0.575175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575175,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.585474,-0.008782,0.003750,0.249972,0,0);-ms-transform:matrix(0.585474,-0.008782,0.003750,0.249972,0,0);-webkit-transform:matrix(0.585474,-0.008782,0.003750,0.249972,0,0);}
.ma6_c00194{transform:matrix(0.588130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00194{transform:matrix(0.600930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600930,0.000000,0.000000,0.250000,0,0);}
.ma5_c00194{transform:matrix(0.630610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630610,0.000000,0.000000,0.250000,0,0);}
.mbb_c00194{transform:matrix(0.647460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647460,0.000000,0.000000,0.250000,0,0);}
.mb5_c00194{transform:matrix(0.648855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648855,0.000000,0.000000,0.250000,0,0);}
.mba_c00194{transform:matrix(0.668765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668765,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.734997,-0.011025,0.003750,0.249972,0,0);-ms-transform:matrix(0.734997,-0.011025,0.003750,0.249972,0,0);-webkit-transform:matrix(0.734997,-0.011025,0.003750,0.249972,0,0);}
.m60_c00194{transform:matrix(0.752360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752360,0.000000,0.000000,0.250000,0,0);}
.mac_c00194{transform:matrix(0.781625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781625,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{transform:matrix(0.826535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.826535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.826535,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(1.131932,-0.029430,0.006498,0.249916,0,0);-ms-transform:matrix(1.131932,-0.029430,0.006498,0.249916,0,0);-webkit-transform:matrix(1.131932,-0.029430,0.006498,0.249916,0,0);}
.m5_c00194{transform:matrix(1.569206,-0.028246,0.004499,0.249960,0,0);-ms-transform:matrix(1.569206,-0.028246,0.004499,0.249960,0,0);-webkit-transform:matrix(1.569206,-0.028246,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;}
.fsc_c00194{font-size:17.856996px;}
.fs8_c00194{font-size:19.957819px;}
.fsb_c00194{font-size:23.109053px;}
.fs9_c00194{font-size:37.814815px;}
.fs7_c00194{font-size:38.865226px;}
.fs6_c00194{font-size:44.117284px;}
.fsa_c00194{font-size:45.167695px;}
.fs17_c00194{font-size:49.350000px;}
.fs19_c00194{font-size:51.450000px;}
.fs18_c00194{font-size:53.550000px;}
.fs15_c00194{font-size:54.600000px;}
.fs4_c00194{font-size:61.970936px;}
.fs12_c00194{font-size:65.100000px;}
.fs10_c00194{font-size:67.200000px;}
.fsd_c00194{font-size:68.250000px;}
.fs13_c00194{font-size:69.300000px;}
.fs11_c00194{font-size:72.450000px;}
.fsf_c00194{font-size:74.550000px;}
.fs14_c00194{font-size:75.600000px;}
.fs5_c00194{font-size:75.625548px;}
.fs16_c00194{font-size:77.704701px;}
.fse_c00194{font-size:86.100000px;}
.fs0_c00194{font-size:91.364798px;}
.fs2_c00194{font-size:92.410394px;}
.fs3_c00194{font-size:114.462875px;}
.fs1_c00194{font-size:127.064292px;}
.y0_c00194{bottom:0.000000px;}
.y52_c00194{bottom:174.706500px;}
.y51_c00194{bottom:193.044000px;}
.y50_c00194{bottom:211.042500px;}
.y4f_c00194{bottom:229.066500px;}
.y4e_c00194{bottom:246.787500px;}
.y4d_c00194{bottom:264.589500px;}
.y45_c00194{bottom:304.561500px;}
.y46_c00194{bottom:305.331010px;}
.y47_c00194{bottom:305.649114px;}
.y48_c00194{bottom:306.441213px;}
.y49_c00194{bottom:307.201549px;}
.y4a_c00194{bottom:307.359471px;}
.y4b_c00194{bottom:307.715656px;}
.y4c_c00194{bottom:308.098638px;}
.y44_c00194{bottom:328.713000px;}
.y43_c00194{bottom:349.437000px;}
.y42_c00194{bottom:370.053000px;}
.y41_c00194{bottom:370.347000px;}
.y40_c00194{bottom:370.959000px;}
.y3f_c00194{bottom:371.214000px;}
.y3e_c00194{bottom:371.463000px;}
.y3d_c00194{bottom:371.902500px;}
.y3c_c00194{bottom:372.234000px;}
.y3b_c00194{bottom:372.612000px;}
.y3a_c00194{bottom:372.900000px;}
.y39_c00194{bottom:373.360500px;}
.y38_c00194{bottom:373.951500px;}
.y37_c00194{bottom:395.686500px;}
.y36_c00194{bottom:418.785000px;}
.y35_c00194{bottom:443.110500px;}
.y34_c00194{bottom:463.450500px;}
.y33_c00194{bottom:486.793500px;}
.y32_c00194{bottom:511.306500px;}
.y31_c00194{bottom:533.667000px;}
.y30_c00194{bottom:554.580000px;}
.y2f_c00194{bottom:576.882000px;}
.y2e_c00194{bottom:597.874500px;}
.y18_c00194{bottom:636.928152px;}
.y19_c00194{bottom:638.586420px;}
.y1a_c00194{bottom:639.693147px;}
.y1b_c00194{bottom:640.856349px;}
.y1c_c00194{bottom:642.407538px;}
.y1d_c00194{bottom:643.542054px;}
.y1e_c00194{bottom:643.967502px;}
.y1f_c00194{bottom:645.974580px;}
.y20_c00194{bottom:647.688972px;}
.y11_c00194{bottom:662.317500px;}
.y12_c00194{bottom:666.597984px;}
.y13_c00194{bottom:667.103151px;}
.y14_c00194{bottom:667.630665px;}
.y15_c00194{bottom:668.163015px;}
.y16_c00194{bottom:668.479968px;}
.y17_c00194{bottom:669.062628px;}
.y2d_c00194{bottom:672.114828px;}
.y2c_c00194{bottom:680.352606px;}
.y2b_c00194{bottom:680.353296px;}
.y2a_c00194{bottom:683.324106px;}
.ye_c00194{bottom:702.804413px;}
.yf_c00194{bottom:704.277060px;}
.y10_c00194{bottom:707.003550px;}
.y29_c00194{bottom:712.499244px;}
.y28_c00194{bottom:712.499454px;}
.y27_c00194{bottom:723.435522px;}
.yb_c00194{bottom:743.041658px;}
.yc_c00194{bottom:744.658267px;}
.yd_c00194{bottom:746.427630px;}
.y26_c00194{bottom:747.473838px;}
.y25_c00194{bottom:756.252726px;}
.y24_c00194{bottom:769.083264px;}
.y23_c00194{bottom:771.109860px;}
.y22_c00194{bottom:776.646186px;}
.y7_c00194{bottom:787.324500px;}
.y8_c00194{bottom:788.273370px;}
.y9_c00194{bottom:789.021203px;}
.ya_c00194{bottom:790.525958px;}
.y21_c00194{bottom:797.587500px;}
.y1_c00194{bottom:872.916000px;}
.y2_c00194{bottom:874.299642px;}
.y3_c00194{bottom:875.666841px;}
.y4_c00194{bottom:876.740901px;}
.y5_c00194{bottom:878.101647px;}
.y6_c00194{bottom:878.301339px;}
.he_c00194{height:17.856996px;}
.ha_c00194{height:19.957819px;}
.hd_c00194{height:23.109053px;}
.hb_c00194{height:37.814815px;}
.h9_c00194{height:38.865226px;}
.h8_c00194{height:44.117284px;}
.hc_c00194{height:45.167695px;}
.h19_c00194{height:49.350000px;}
.h1b_c00194{height:51.450000px;}
.h1a_c00194{height:53.550000px;}
.h17_c00194{height:54.600000px;}
.h6_c00194{height:61.970936px;}
.h14_c00194{height:65.100000px;}
.h12_c00194{height:67.200000px;}
.hf_c00194{height:68.250000px;}
.h15_c00194{height:69.300000px;}
.h13_c00194{height:72.450000px;}
.h11_c00194{height:74.550000px;}
.h16_c00194{height:75.600000px;}
.h7_c00194{height:75.625548px;}
.h18_c00194{height:77.704701px;}
.h10_c00194{height:86.100000px;}
.h2_c00194{height:91.364798px;}
.h4_c00194{height:92.410394px;}
.h5_c00194{height:114.462875px;}
.h3_c00194{height:127.064292px;}
.h1_c00194{height:1005.000000px;}
.h0_c00194{height:1005.150000px;}
.w0_c00194{width:735.750000px;}
.x0_c00194{left:0.000000px;}
.x20_c00194{left:18.097476px;}
.x1f_c00194{left:20.258268px;}
.xe_c00194{left:37.352700px;}
.xb_c00194{left:42.933532px;}
.x16_c00194{left:103.145454px;}
.x4e_c00194{left:116.482500px;}
.x55_c00194{left:118.261500px;}
.x21_c00194{left:119.880000px;}
.x22_c00194{left:125.550000px;}
.x11_c00194{left:127.900500px;}
.x29_c00194{left:129.870000px;}
.x6c_c00194{left:135.000000px;}
.x6e_c00194{left:139.590000px;}
.x3b_c00194{left:152.550000px;}
.x46_c00194{left:158.760000px;}
.xf_c00194{left:160.134735px;}
.x1_c00194{left:162.874500px;}
.xc_c00194{left:167.311267px;}
.x17_c00194{left:169.465170px;}
.x6f_c00194{left:174.420000px;}
.x72_c00194{left:177.390000px;}
.x7_c00194{left:178.789500px;}
.x37_c00194{left:180.630000px;}
.x23_c00194{left:183.060000px;}
.x5b_c00194{left:184.681500px;}
.x56_c00194{left:186.841500px;}
.x5f_c00194{left:189.462000px;}
.x6d_c00194{left:192.240000px;}
.x6a_c00194{left:199.530000px;}
.x76_c00194{left:201.960000px;}
.x65_c00194{left:203.310000px;}
.x24_c00194{left:205.470000px;}
.x73_c00194{left:206.820000px;}
.x4f_c00194{left:212.080500px;}
.x18_c00194{left:213.705801px;}
.x66_c00194{left:216.000000px;}
.x60_c00194{left:218.380500px;}
.x41_c00194{left:221.130000px;}
.x2e_c00194{left:222.210000px;}
.x3e_c00194{left:224.100000px;}
.x2a_c00194{left:229.770000px;}
.x5c_c00194{left:233.281500px;}
.x3c_c00194{left:235.710000px;}
.x50_c00194{left:238.264500px;}
.x2_c00194{left:239.743500px;}
.x8_c00194{left:242.047500px;}
.x67_c00194{left:243.540000px;}
.x2f_c00194{left:246.240000px;}
.x25_c00194{left:249.750000px;}
.x74_c00194{left:254.880000px;}
.x47_c00194{left:255.960000px;}
.x70_c00194{left:258.120000px;}
.x19_c00194{left:260.234010px;}
.x4d_c00194{left:264.870000px;}
.x3d_c00194{left:268.650000px;}
.x5d_c00194{left:270.811500px;}
.x2b_c00194{left:272.160000px;}
.x30_c00194{left:274.320000px;}
.x28_c00194{left:277.020000px;}
.x77_c00194{left:278.910000px;}
.x48_c00194{left:281.070000px;}
.x42_c00194{left:283.500000px;}
.x71_c00194{left:287.820000px;}
.x57_c00194{left:289.171500px;}
.x61_c00194{left:290.389500px;}
.x9_c00194{left:291.903000px;}
.x3f_c00194{left:293.490000px;}
.x26_c00194{left:295.110000px;}
.x68_c00194{left:297.000000px;}
.xd_c00194{left:303.372840px;}
.x49_c00194{left:307.800000px;}
.x38_c00194{left:310.500000px;}
.x12_c00194{left:311.964000px;}
.x58_c00194{left:313.741500px;}
.x3_c00194{left:315.699000px;}
.x31_c00194{left:320.760000px;}
.x1a_c00194{left:322.262109px;}
.x6b_c00194{left:326.700000px;}
.x2c_c00194{left:329.130000px;}
.x13_c00194{left:332.253000px;}
.x40_c00194{left:334.260000px;}
.x43_c00194{left:338.040000px;}
.x69_c00194{left:341.550000px;}
.x51_c00194{left:342.721500px;}
.x4a_c00194{left:349.380000px;}
.x14_c00194{left:352.728000px;}
.x59_c00194{left:354.511500px;}
.x32_c00194{left:357.210000px;}
.x62_c00194{left:359.511000px;}
.x15_c00194{left:364.918500px;}
.x78_c00194{left:366.120000px;}
.x1b_c00194{left:367.629279px;}
.x63_c00194{left:373.867500px;}
.x4_c00194{left:375.369000px;}
.x33_c00194{left:376.650000px;}
.x1c_c00194{left:384.627708px;}
.x5a_c00194{left:385.831500px;}
.x10_c00194{left:387.310950px;}
.x52_c00194{left:388.618500px;}
.xa_c00194{left:392.220000px;}
.x27_c00194{left:393.660000px;}
.x64_c00194{left:406.248000px;}
.x4b_c00194{left:412.020000px;}
.x44_c00194{left:417.420000px;}
.x2d_c00194{left:430.920000px;}
.x4c_c00194{left:437.130000px;}
.x34_c00194{left:440.910000px;}
.x53_c00194{left:444.232500px;}
.x5e_c00194{left:446.311500px;}
.x5_c00194{left:450.966000px;}
.x75_c00194{left:457.110000px;}
.x39_c00194{left:458.460000px;}
.x6_c00194{left:462.060000px;}
.x1d_c00194{left:464.882775px;}
.x35_c00194{left:467.370000px;}
.x54_c00194{left:470.956500px;}
.x45_c00194{left:491.400000px;}
.x3a_c00194{left:502.200000px;}
.x36_c00194{left:510.300000px;}
.x1e_c00194{left:533.476569px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.fsc_c00194{font-size:15.872885pt;}
.fs8_c00194{font-size:17.740283pt;}
.fsb_c00194{font-size:20.541381pt;}
.fs9_c00194{font-size:33.613169pt;}
.fs7_c00194{font-size:34.546868pt;}
.fs6_c00194{font-size:39.215363pt;}
.fsa_c00194{font-size:40.149063pt;}
.fs17_c00194{font-size:43.866667pt;}
.fs19_c00194{font-size:45.733333pt;}
.fs18_c00194{font-size:47.600000pt;}
.fs15_c00194{font-size:48.533333pt;}
.fs4_c00194{font-size:55.085276pt;}
.fs12_c00194{font-size:57.866667pt;}
.fs10_c00194{font-size:59.733333pt;}
.fsd_c00194{font-size:60.666667pt;}
.fs13_c00194{font-size:61.600000pt;}
.fs11_c00194{font-size:64.400000pt;}
.fsf_c00194{font-size:66.266667pt;}
.fs14_c00194{font-size:67.200000pt;}
.fs5_c00194{font-size:67.222710pt;}
.fs16_c00194{font-size:69.070845pt;}
.fse_c00194{font-size:76.533333pt;}
.fs0_c00194{font-size:81.213153pt;}
.fs2_c00194{font-size:82.142573pt;}
.fs3_c00194{font-size:101.744778pt;}
.fs1_c00194{font-size:112.946038pt;}
.y0_c00194{bottom:0.000000pt;}
.y52_c00194{bottom:155.294667pt;}
.y51_c00194{bottom:171.594667pt;}
.y50_c00194{bottom:187.593333pt;}
.y4f_c00194{bottom:203.614667pt;}
.y4e_c00194{bottom:219.366667pt;}
.y4d_c00194{bottom:235.190667pt;}
.y45_c00194{bottom:270.721333pt;}
.y46_c00194{bottom:271.405343pt;}
.y47_c00194{bottom:271.688101pt;}
.y48_c00194{bottom:272.392189pt;}
.y49_c00194{bottom:273.068044pt;}
.y4a_c00194{bottom:273.208419pt;}
.y4b_c00194{bottom:273.525028pt;}
.y4c_c00194{bottom:273.865456pt;}
.y44_c00194{bottom:292.189333pt;}
.y43_c00194{bottom:310.610667pt;}
.y42_c00194{bottom:328.936000pt;}
.y41_c00194{bottom:329.197333pt;}
.y40_c00194{bottom:329.741333pt;}
.y3f_c00194{bottom:329.968000pt;}
.y3e_c00194{bottom:330.189333pt;}
.y3d_c00194{bottom:330.580000pt;}
.y3c_c00194{bottom:330.874667pt;}
.y3b_c00194{bottom:331.210667pt;}
.y3a_c00194{bottom:331.466667pt;}
.y39_c00194{bottom:331.876000pt;}
.y38_c00194{bottom:332.401333pt;}
.y37_c00194{bottom:351.721333pt;}
.y36_c00194{bottom:372.253333pt;}
.y35_c00194{bottom:393.876000pt;}
.y34_c00194{bottom:411.956000pt;}
.y33_c00194{bottom:432.705333pt;}
.y32_c00194{bottom:454.494667pt;}
.y31_c00194{bottom:474.370667pt;}
.y30_c00194{bottom:492.960000pt;}
.y2f_c00194{bottom:512.784000pt;}
.y2e_c00194{bottom:531.444000pt;}
.y18_c00194{bottom:566.158357pt;}
.y19_c00194{bottom:567.632373pt;}
.y1a_c00194{bottom:568.616131pt;}
.y1b_c00194{bottom:569.650088pt;}
.y1c_c00194{bottom:571.028923pt;}
.y1d_c00194{bottom:572.037381pt;}
.y1e_c00194{bottom:572.415557pt;}
.y1f_c00194{bottom:574.199627pt;}
.y20_c00194{bottom:575.723531pt;}
.y11_c00194{bottom:588.726667pt;}
.y12_c00194{bottom:592.531541pt;}
.y13_c00194{bottom:592.980579pt;}
.y14_c00194{bottom:593.449480pt;}
.y15_c00194{bottom:593.922680pt;}
.y16_c00194{bottom:594.204416pt;}
.y17_c00194{bottom:594.722336pt;}
.y2d_c00194{bottom:597.435403pt;}
.y2c_c00194{bottom:604.757872pt;}
.y2b_c00194{bottom:604.758485pt;}
.y2a_c00194{bottom:607.399205pt;}
.ye_c00194{bottom:624.715033pt;}
.yf_c00194{bottom:626.024053pt;}
.y10_c00194{bottom:628.447600pt;}
.y29_c00194{bottom:633.332661pt;}
.y28_c00194{bottom:633.332848pt;}
.y27_c00194{bottom:643.053797pt;}
.yb_c00194{bottom:660.481473pt;}
.yc_c00194{bottom:661.918460pt;}
.yd_c00194{bottom:663.491227pt;}
.y26_c00194{bottom:664.421189pt;}
.y25_c00194{bottom:672.224645pt;}
.y24_c00194{bottom:683.629568pt;}
.y23_c00194{bottom:685.430987pt;}
.y22_c00194{bottom:690.352165pt;}
.y7_c00194{bottom:699.844000pt;}
.y8_c00194{bottom:700.687440pt;}
.y9_c00194{bottom:701.352180pt;}
.ya_c00194{bottom:702.689740pt;}
.y21_c00194{bottom:708.966667pt;}
.y1_c00194{bottom:775.925333pt;}
.y2_c00194{bottom:777.155237pt;}
.y3_c00194{bottom:778.370525pt;}
.y4_c00194{bottom:779.325245pt;}
.y5_c00194{bottom:780.534797pt;}
.y6_c00194{bottom:780.712301pt;}
.he_c00194{height:15.872885pt;}
.ha_c00194{height:17.740283pt;}
.hd_c00194{height:20.541381pt;}
.hb_c00194{height:33.613169pt;}
.h9_c00194{height:34.546868pt;}
.h8_c00194{height:39.215363pt;}
.hc_c00194{height:40.149063pt;}
.h19_c00194{height:43.866667pt;}
.h1b_c00194{height:45.733333pt;}
.h1a_c00194{height:47.600000pt;}
.h17_c00194{height:48.533333pt;}
.h6_c00194{height:55.085276pt;}
.h14_c00194{height:57.866667pt;}
.h12_c00194{height:59.733333pt;}
.hf_c00194{height:60.666667pt;}
.h15_c00194{height:61.600000pt;}
.h13_c00194{height:64.400000pt;}
.h11_c00194{height:66.266667pt;}
.h16_c00194{height:67.200000pt;}
.h7_c00194{height:67.222710pt;}
.h18_c00194{height:69.070845pt;}
.h10_c00194{height:76.533333pt;}
.h2_c00194{height:81.213153pt;}
.h4_c00194{height:82.142573pt;}
.h5_c00194{height:101.744778pt;}
.h3_c00194{height:112.946038pt;}
.h1_c00194{height:893.333333pt;}
.h0_c00194{height:893.466667pt;}
.w0_c00194{width:654.000000pt;}
.x0_c00194{left:0.000000pt;}
.x20_c00194{left:16.086645pt;}
.x1f_c00194{left:18.007349pt;}
.xe_c00194{left:33.202400pt;}
.xb_c00194{left:38.163140pt;}
.x16_c00194{left:91.684848pt;}
.x4e_c00194{left:103.540000pt;}
.x55_c00194{left:105.121333pt;}
.x21_c00194{left:106.560000pt;}
.x22_c00194{left:111.600000pt;}
.x11_c00194{left:113.689333pt;}
.x29_c00194{left:115.440000pt;}
.x6c_c00194{left:120.000000pt;}
.x6e_c00194{left:124.080000pt;}
.x3b_c00194{left:135.600000pt;}
.x46_c00194{left:141.120000pt;}
.xf_c00194{left:142.341987pt;}
.x1_c00194{left:144.777333pt;}
.xc_c00194{left:148.721127pt;}
.x17_c00194{left:150.635707pt;}
.x6f_c00194{left:155.040000pt;}
.x72_c00194{left:157.680000pt;}
.x7_c00194{left:158.924000pt;}
.x37_c00194{left:160.560000pt;}
.x23_c00194{left:162.720000pt;}
.x5b_c00194{left:164.161333pt;}
.x56_c00194{left:166.081333pt;}
.x5f_c00194{left:168.410667pt;}
.x6d_c00194{left:170.880000pt;}
.x6a_c00194{left:177.360000pt;}
.x76_c00194{left:179.520000pt;}
.x65_c00194{left:180.720000pt;}
.x24_c00194{left:182.640000pt;}
.x73_c00194{left:183.840000pt;}
.x4f_c00194{left:188.516000pt;}
.x18_c00194{left:189.960712pt;}
.x66_c00194{left:192.000000pt;}
.x60_c00194{left:194.116000pt;}
.x41_c00194{left:196.560000pt;}
.x2e_c00194{left:197.520000pt;}
.x3e_c00194{left:199.200000pt;}
.x2a_c00194{left:204.240000pt;}
.x5c_c00194{left:207.361333pt;}
.x3c_c00194{left:209.520000pt;}
.x50_c00194{left:211.790667pt;}
.x2_c00194{left:213.105333pt;}
.x8_c00194{left:215.153333pt;}
.x67_c00194{left:216.480000pt;}
.x2f_c00194{left:218.880000pt;}
.x25_c00194{left:222.000000pt;}
.x74_c00194{left:226.560000pt;}
.x47_c00194{left:227.520000pt;}
.x70_c00194{left:229.440000pt;}
.x19_c00194{left:231.319120pt;}
.x4d_c00194{left:235.440000pt;}
.x3d_c00194{left:238.800000pt;}
.x5d_c00194{left:240.721333pt;}
.x2b_c00194{left:241.920000pt;}
.x30_c00194{left:243.840000pt;}
.x28_c00194{left:246.240000pt;}
.x77_c00194{left:247.920000pt;}
.x48_c00194{left:249.840000pt;}
.x42_c00194{left:252.000000pt;}
.x71_c00194{left:255.840000pt;}
.x57_c00194{left:257.041333pt;}
.x61_c00194{left:258.124000pt;}
.x9_c00194{left:259.469333pt;}
.x3f_c00194{left:260.880000pt;}
.x26_c00194{left:262.320000pt;}
.x68_c00194{left:264.000000pt;}
.xd_c00194{left:269.664747pt;}
.x49_c00194{left:273.600000pt;}
.x38_c00194{left:276.000000pt;}
.x12_c00194{left:277.301333pt;}
.x58_c00194{left:278.881333pt;}
.x3_c00194{left:280.621333pt;}
.x31_c00194{left:285.120000pt;}
.x1a_c00194{left:286.455208pt;}
.x6b_c00194{left:290.400000pt;}
.x2c_c00194{left:292.560000pt;}
.x13_c00194{left:295.336000pt;}
.x40_c00194{left:297.120000pt;}
.x43_c00194{left:300.480000pt;}
.x69_c00194{left:303.600000pt;}
.x51_c00194{left:304.641333pt;}
.x4a_c00194{left:310.560000pt;}
.x14_c00194{left:313.536000pt;}
.x59_c00194{left:315.121333pt;}
.x32_c00194{left:317.520000pt;}
.x62_c00194{left:319.565333pt;}
.x15_c00194{left:324.372000pt;}
.x78_c00194{left:325.440000pt;}
.x1b_c00194{left:326.781581pt;}
.x63_c00194{left:332.326667pt;}
.x4_c00194{left:333.661333pt;}
.x33_c00194{left:334.800000pt;}
.x1c_c00194{left:341.891296pt;}
.x5a_c00194{left:342.961333pt;}
.x10_c00194{left:344.276400pt;}
.x52_c00194{left:345.438667pt;}
.xa_c00194{left:348.640000pt;}
.x27_c00194{left:349.920000pt;}
.x64_c00194{left:361.109333pt;}
.x4b_c00194{left:366.240000pt;}
.x44_c00194{left:371.040000pt;}
.x2d_c00194{left:383.040000pt;}
.x4c_c00194{left:388.560000pt;}
.x34_c00194{left:391.920000pt;}
.x53_c00194{left:394.873333pt;}
.x5e_c00194{left:396.721333pt;}
.x5_c00194{left:400.858667pt;}
.x75_c00194{left:406.320000pt;}
.x39_c00194{left:407.520000pt;}
.x6_c00194{left:410.720000pt;}
.x1d_c00194{left:413.229133pt;}
.x35_c00194{left:415.440000pt;}
.x54_c00194{left:418.628000pt;}
.x45_c00194{left:436.800000pt;}
.x3a_c00194{left:446.400000pt;}
.x36_c00194{left:453.600000pt;}
.x1e_c00194{left:474.201395pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m53_c00195{transform:matrix(0.008559,-0.000094,0.002750,0.249985,0,0);-ms-transform:matrix(0.008559,-0.000094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.008559,-0.000094,0.002750,0.249985,0,0);}
.me3_c00195{transform:matrix(0.016805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016805,0.000000,0.000000,0.250000,0,0);}
.mca_c00195{transform:matrix(0.062825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062825,0.000000,0.000000,0.250000,0,0);}
.me4_c00195{transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);}
.mcf_c00195{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);}
.me0_c00195{transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);}
.m5c_c00195{transform:matrix(0.129007,-0.001419,0.002750,0.249985,0,0);-ms-transform:matrix(0.129007,-0.001419,0.002750,0.249985,0,0);-webkit-transform:matrix(0.129007,-0.001419,0.002750,0.249985,0,0);}
.m39_c00195{transform:matrix(0.130092,-0.001431,0.002750,0.249985,0,0);-ms-transform:matrix(0.130092,-0.001431,0.002750,0.249985,0,0);-webkit-transform:matrix(0.130092,-0.001431,0.002750,0.249985,0,0);}
.m7_c00195{transform:matrix(0.131002,-0.001441,0.002750,0.249985,0,0);-ms-transform:matrix(0.131002,-0.001441,0.002750,0.249985,0,0);-webkit-transform:matrix(0.131002,-0.001441,0.002750,0.249985,0,0);}
.m3d_c00195{transform:matrix(0.133357,-0.001467,0.002750,0.249985,0,0);-ms-transform:matrix(0.133357,-0.001467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.133357,-0.001467,0.002750,0.249985,0,0);}
.m3b_c00195{transform:matrix(0.140157,-0.001542,0.002750,0.249985,0,0);-ms-transform:matrix(0.140157,-0.001542,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140157,-0.001542,0.002750,0.249985,0,0);}
.m37_c00195{transform:matrix(0.144391,-0.001588,0.002750,0.249985,0,0);-ms-transform:matrix(0.144391,-0.001588,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144391,-0.001588,0.002750,0.249985,0,0);}
.m9b_c00195{transform:matrix(0.144695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144695,0.000000,0.000000,0.250000,0,0);}
.m8e_c00195{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);}
.m11_c00195{transform:matrix(0.145731,-0.001603,0.002750,0.249985,0,0);-ms-transform:matrix(0.145731,-0.001603,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145731,-0.001603,0.002750,0.249985,0,0);}
.m3c_c00195{transform:matrix(0.148566,-0.001634,0.002750,0.249985,0,0);-ms-transform:matrix(0.148566,-0.001634,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148566,-0.001634,0.002750,0.249985,0,0);}
.m36_c00195{transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);-ms-transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);}
.m95_c00195{transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150545,0.000000,0.000000,0.250000,0,0);}
.m7d_c00195{transform:matrix(0.150771,-0.001658,0.002750,0.249985,0,0);-ms-transform:matrix(0.150771,-0.001658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150771,-0.001658,0.002750,0.249985,0,0);}
.m35_c00195{transform:matrix(0.151406,-0.001665,0.002750,0.249985,0,0);-ms-transform:matrix(0.151406,-0.001665,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151406,-0.001665,0.002750,0.249985,0,0);}
.m2b_c00195{transform:matrix(0.155251,-0.001708,0.002750,0.249985,0,0);-ms-transform:matrix(0.155251,-0.001708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155251,-0.001708,0.002750,0.249985,0,0);}
.m34_c00195{transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);-ms-transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);}
.m5e_c00195{transform:matrix(0.155676,-0.001712,0.002750,0.249985,0,0);-ms-transform:matrix(0.155676,-0.001712,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155676,-0.001712,0.002750,0.249985,0,0);}
.m84_c00195{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);}
.ma0_c00195{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);}
.med_c00195{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);}
.m82_c00195{transform:matrix(0.161965,-0.001782,0.002750,0.249985,0,0);-ms-transform:matrix(0.161965,-0.001782,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161965,-0.001782,0.002750,0.249985,0,0);}
.m87_c00195{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);}
.md8_c00195{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);}
.m8c_c00195{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);}
.ma_c00195{transform:matrix(0.163685,-0.001801,0.002750,0.249985,0,0);-ms-transform:matrix(0.163685,-0.001801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163685,-0.001801,0.002750,0.249985,0,0);}
.m16_c00195{transform:matrix(0.166445,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166445,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166445,-0.001831,0.002750,0.249985,0,0);}
.m90_c00195{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);}
.m1c_c00195{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);}
.mb9_c00195{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);}
.m38_c00195{transform:matrix(0.169465,-0.001864,0.002750,0.249985,0,0);-ms-transform:matrix(0.169465,-0.001864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169465,-0.001864,0.002750,0.249985,0,0);}
.m7e_c00195{transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);-ms-transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);}
.m3a_c00195{transform:matrix(0.170605,-0.001877,0.002750,0.249985,0,0);-ms-transform:matrix(0.170605,-0.001877,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170605,-0.001877,0.002750,0.249985,0,0);}
.mc3_c00195{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);}
.m9f_c00195{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);}
.m1b_c00195{transform:matrix(0.171865,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171865,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171865,-0.001891,0.002750,0.249985,0,0);}
.m75_c00195{transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);}
.m9d_c00195{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);}
.mbb_c00195{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);}
.m59_c00195{transform:matrix(0.173230,-0.001906,0.002750,0.249985,0,0);-ms-transform:matrix(0.173230,-0.001906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173230,-0.001906,0.002750,0.249985,0,0);}
.m7f_c00195{transform:matrix(0.175029,-0.001925,0.002750,0.249985,0,0);-ms-transform:matrix(0.175029,-0.001925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175029,-0.001925,0.002750,0.249985,0,0);}
.m5f_c00195{transform:matrix(0.175269,-0.001928,0.002750,0.249985,0,0);-ms-transform:matrix(0.175269,-0.001928,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175269,-0.001928,0.002750,0.249985,0,0);}
.md1_c00195{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);}
.m19_c00195{transform:matrix(0.176499,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176499,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176499,-0.001941,0.002750,0.249985,0,0);}
.m65_c00195{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);}
.me8_c00195{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);}
.md9_c00195{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);}
.m48_c00195{transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);}
.m80_c00195{transform:matrix(0.177504,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177504,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177504,-0.001953,0.002750,0.249985,0,0);}
.m44_c00195{transform:matrix(0.177549,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177549,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177549,-0.001953,0.002750,0.249985,0,0);}
.m6f_c00195{transform:matrix(0.178004,-0.001958,0.002750,0.249985,0,0);-ms-transform:matrix(0.178004,-0.001958,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178004,-0.001958,0.002750,0.249985,0,0);}
.md7_c00195{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);}
.m6b_c00195{transform:matrix(0.178439,-0.001963,0.002750,0.249985,0,0);-ms-transform:matrix(0.178439,-0.001963,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178439,-0.001963,0.002750,0.249985,0,0);}
.m64_c00195{transform:matrix(0.178449,-0.001963,0.002750,0.249985,0,0);-ms-transform:matrix(0.178449,-0.001963,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178449,-0.001963,0.002750,0.249985,0,0);}
.m9_c00195{transform:matrix(0.178694,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178694,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178694,-0.001966,0.002750,0.249985,0,0);}
.m81_c00195{transform:matrix(0.179239,-0.001972,0.002750,0.249985,0,0);-ms-transform:matrix(0.179239,-0.001972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179239,-0.001972,0.002750,0.249985,0,0);}
.m83_c00195{transform:matrix(0.179424,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179424,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179424,-0.001974,0.002750,0.249985,0,0);}
.m86_c00195{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);}
.m6c_c00195{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);}
.m4f_c00195{transform:matrix(0.179739,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179739,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179739,-0.001977,0.002750,0.249985,0,0);}
.m55_c00195{transform:matrix(0.179879,-0.001979,0.002750,0.249985,0,0);-ms-transform:matrix(0.179879,-0.001979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179879,-0.001979,0.002750,0.249985,0,0);}
.mad_c00195{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);}
.m1a_c00195{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);}
.mb6_c00195{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);}
.m1f_c00195{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);}
.m89_c00195{transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180505,0.000000,0.000000,0.250000,0,0);}
.m67_c00195{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);}
.m4a_c00195{transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);}
.mb4_c00195{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_c00195{transform:matrix(0.182414,-0.002007,0.002750,0.249985,0,0);-ms-transform:matrix(0.182414,-0.002007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182414,-0.002007,0.002750,0.249985,0,0);}
.m51_c00195{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);}
.m21_c00195{transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);}
.me7_c00195{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);}
.m66_c00195{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);}
.m57_c00195{transform:matrix(0.184929,-0.002034,0.002750,0.249985,0,0);-ms-transform:matrix(0.184929,-0.002034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184929,-0.002034,0.002750,0.249985,0,0);}
.m78_c00195{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);}
.mde_c00195{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);}
.m99_c00195{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);}
.m1e_c00195{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);}
.m32_c00195{transform:matrix(0.185924,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185924,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185924,-0.002045,0.002750,0.249985,0,0);}
.mda_c00195{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);}
.mab_c00195{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);}
.md4_c00195{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);}
.m2e_c00195{transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);}
.m79_c00195{transform:matrix(0.187434,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187434,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187434,-0.002062,0.002750,0.249985,0,0);}
.m77_c00195{transform:matrix(0.187469,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187469,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187469,-0.002062,0.002750,0.249985,0,0);}
.m7c_c00195{transform:matrix(0.187604,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187604,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187604,-0.002064,0.002750,0.249985,0,0);}
.mef_c00195{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);}
.mba_c00195{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);}
.md5_c00195{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);}
.m3_c00195{transform:matrix(0.188154,-0.002070,0.002750,0.249985,0,0);-ms-transform:matrix(0.188154,-0.002070,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188154,-0.002070,0.002750,0.249985,0,0);}
.mb_c00195{transform:matrix(0.188419,-0.002073,0.002750,0.249985,0,0);-ms-transform:matrix(0.188419,-0.002073,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188419,-0.002073,0.002750,0.249985,0,0);}
.m3f_c00195{transform:matrix(0.188569,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188569,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188569,-0.002074,0.002750,0.249985,0,0);}
.ma8_c00195{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);}
.m41_c00195{transform:matrix(0.188919,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188919,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188919,-0.002078,0.002750,0.249985,0,0);}
.m43_c00195{transform:matrix(0.189139,-0.002081,0.002750,0.249985,0,0);-ms-transform:matrix(0.189139,-0.002081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189139,-0.002081,0.002750,0.249985,0,0);}
.me9_c00195{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);}
.m5d_c00195{transform:matrix(0.189814,-0.002088,0.002750,0.249985,0,0);-ms-transform:matrix(0.189814,-0.002088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189814,-0.002088,0.002750,0.249985,0,0);}
.m40_c00195{transform:matrix(0.190009,-0.002090,0.002750,0.249985,0,0);-ms-transform:matrix(0.190009,-0.002090,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190009,-0.002090,0.002750,0.249985,0,0);}
.m49_c00195{transform:matrix(0.190039,-0.002090,0.002750,0.249985,0,0);-ms-transform:matrix(0.190039,-0.002090,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190039,-0.002090,0.002750,0.249985,0,0);}
.m96_c00195{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.191033,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.191033,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191033,-0.002101,0.002750,0.249985,0,0);}
.m4e_c00195{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);}
.mc6_c00195{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);}
.me_c00195{transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);}
.m8f_c00195{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);}
.mc_c00195{transform:matrix(0.191678,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191678,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191678,-0.002108,0.002750,0.249985,0,0);}
.m4b_c00195{transform:matrix(0.192238,-0.002115,0.002750,0.249985,0,0);-ms-transform:matrix(0.192238,-0.002115,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192238,-0.002115,0.002750,0.249985,0,0);}
.m42_c00195{transform:matrix(0.192513,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192513,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192513,-0.002118,0.002750,0.249985,0,0);}
.m9a_c00195{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);}
.m10_c00195{transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192713,-0.002120,0.002750,0.249985,0,0);}
.m50_c00195{transform:matrix(0.193013,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.193013,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193013,-0.002123,0.002750,0.249985,0,0);}
.m24_c00195{transform:matrix(0.193093,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193093,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193093,-0.002124,0.002750,0.249985,0,0);}
.m2_c00195{transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);}
.ma1_c00195{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);}
.m71_c00195{transform:matrix(0.194308,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194308,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194308,-0.002137,0.002750,0.249985,0,0);}
.m76_c00195{transform:matrix(0.194498,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194498,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194498,-0.002139,0.002750,0.249985,0,0);}
.m7b_c00195{transform:matrix(0.194938,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194938,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194938,-0.002144,0.002750,0.249985,0,0);}
.m1d_c00195{transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);}
.m94_c00195{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);}
.m47_c00195{transform:matrix(0.195688,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195688,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195688,-0.002153,0.002750,0.249985,0,0);}
.m52_c00195{transform:matrix(0.195773,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195773,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195773,-0.002154,0.002750,0.249985,0,0);}
.mb2_c00195{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);}
.mf2_c00195{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);}
.mc1_c00195{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);}
.mea_c00195{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);}
.m72_c00195{transform:matrix(0.197073,-0.002168,0.002750,0.249985,0,0);-ms-transform:matrix(0.197073,-0.002168,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197073,-0.002168,0.002750,0.249985,0,0);}
.mcd_c00195{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);}
.m23_c00195{transform:matrix(0.197208,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197208,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197208,-0.002169,0.002750,0.249985,0,0);}
.mf0_c00195{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m6a_c00195{transform:matrix(0.197798,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197798,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197798,-0.002176,0.002750,0.249985,0,0);}
.ma2_c00195{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);}
.mdf_c00195{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);}
.me5_c00195{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);}
.m88_c00195{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);}
.m58_c00195{transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);}
.m73_c00195{transform:matrix(0.200143,-0.002202,0.002750,0.249985,0,0);-ms-transform:matrix(0.200143,-0.002202,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200143,-0.002202,0.002750,0.249985,0,0);}
.m8d_c00195{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);}
.m15_c00195{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);}
.mc2_c00195{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);}
.m28_c00195{transform:matrix(0.201458,-0.002216,0.002750,0.249985,0,0);-ms-transform:matrix(0.201458,-0.002216,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201458,-0.002216,0.002750,0.249985,0,0);}
.m98_c00195{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);}
.m2c_c00195{transform:matrix(0.202318,-0.002225,0.002750,0.249985,0,0);-ms-transform:matrix(0.202318,-0.002225,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202318,-0.002225,0.002750,0.249985,0,0);}
.m6d_c00195{transform:matrix(0.202653,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202653,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202653,-0.002229,0.002750,0.249985,0,0);}
.ma4_c00195{transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);}
.mc9_c00195{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);}
.md_c00195{transform:matrix(0.203888,-0.002243,0.002750,0.249985,0,0);-ms-transform:matrix(0.203888,-0.002243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203888,-0.002243,0.002750,0.249985,0,0);}
.mbd_c00195{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);}
.m69_c00195{transform:matrix(0.204343,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204343,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204343,-0.002248,0.002750,0.249985,0,0);}
.m2f_c00195{transform:matrix(0.204788,-0.002253,0.002750,0.249985,0,0);-ms-transform:matrix(0.204788,-0.002253,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204788,-0.002253,0.002750,0.249985,0,0);}
.mac_c00195{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);}
.m17_c00195{transform:matrix(0.204983,-0.002255,0.002750,0.249985,0,0);-ms-transform:matrix(0.204983,-0.002255,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204983,-0.002255,0.002750,0.249985,0,0);}
.m91_c00195{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);}
.m6e_c00195{transform:matrix(0.205703,-0.002263,0.002750,0.249985,0,0);-ms-transform:matrix(0.205703,-0.002263,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205703,-0.002263,0.002750,0.249985,0,0);}
.m92_c00195{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);}
.m27_c00195{transform:matrix(0.205778,-0.002264,0.002750,0.249985,0,0);-ms-transform:matrix(0.205778,-0.002264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205778,-0.002264,0.002750,0.249985,0,0);}
.mdb_c00195{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);}
.me1_c00195{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);}
.mc7_c00195{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);}
.m61_c00195{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);}
.m74_c00195{transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);-ms-transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);}
.ma5_c00195{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);}
.mbc_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);}
.m1_c00195{transform:matrix(0.209397,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209397,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209397,-0.002303,0.002750,0.249985,0,0);}
.mb3_c00195{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);}
.m5b_c00195{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);}
.md2_c00195{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);}
.mdc_c00195{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);}
.m25_c00195{transform:matrix(0.212112,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212112,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212112,-0.002333,0.002750,0.249985,0,0);}
.m18_c00195{transform:matrix(0.212717,-0.002340,0.002750,0.249985,0,0);-ms-transform:matrix(0.212717,-0.002340,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212717,-0.002340,0.002750,0.249985,0,0);}
.m2a_c00195{transform:matrix(0.213322,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213322,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213322,-0.002347,0.002750,0.249985,0,0);}
.mec_c00195{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);}
.m97_c00195{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);}
.m4_c00195{transform:matrix(0.214242,-0.002357,0.002750,0.249985,0,0);-ms-transform:matrix(0.214242,-0.002357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214242,-0.002357,0.002750,0.249985,0,0);}
.m62_c00195{transform:matrix(0.214877,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214877,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214877,-0.002364,0.002750,0.249985,0,0);}
.m85_c00195{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);}
.mb5_c00195{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);}
.m20_c00195{transform:matrix(0.215072,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215072,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215072,-0.002366,0.002750,0.249985,0,0);}
.mcb_c00195{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);}
.m2d_c00195{transform:matrix(0.215257,-0.002368,0.002750,0.249985,0,0);-ms-transform:matrix(0.215257,-0.002368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215257,-0.002368,0.002750,0.249985,0,0);}
.me2_c00195{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);}
.ma6_c00195{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);}
.mee_c00195{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);}
.m14_c00195{transform:matrix(0.216862,-0.002385,0.002750,0.249985,0,0);-ms-transform:matrix(0.216862,-0.002385,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216862,-0.002385,0.002750,0.249985,0,0);}
.mc8_c00195{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);}
.mb8_c00195{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);}
.m68_c00195{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);}
.ma9_c00195{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);}
.m8_c00195{transform:matrix(0.217227,-0.002389,0.002750,0.249985,0,0);-ms-transform:matrix(0.217227,-0.002389,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217227,-0.002389,0.002750,0.249985,0,0);}
.m70_c00195{transform:matrix(0.218322,-0.002402,0.002750,0.249985,0,0);-ms-transform:matrix(0.218322,-0.002402,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218322,-0.002402,0.002750,0.249985,0,0);}
.m31_c00195{transform:matrix(0.218742,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218742,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218742,-0.002406,0.002750,0.249985,0,0);}
.m22_c00195{transform:matrix(0.218937,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218937,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218937,-0.002408,0.002750,0.249985,0,0);}
.md6_c00195{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);}
.m5a_c00195{transform:matrix(0.222242,-0.002445,0.002750,0.249985,0,0);-ms-transform:matrix(0.222242,-0.002445,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222242,-0.002445,0.002750,0.249985,0,0);}
.ma3_c00195{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);}
.mb0_c00195{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);}
.m9c_c00195{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.223976,-0.002464,0.002750,0.249985,0,0);-ms-transform:matrix(0.223976,-0.002464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223976,-0.002464,0.002750,0.249985,0,0);}
.m12_c00195{transform:matrix(0.226071,-0.002487,0.002750,0.249985,0,0);-ms-transform:matrix(0.226071,-0.002487,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226071,-0.002487,0.002750,0.249985,0,0);}
.m13_c00195{transform:matrix(0.226816,-0.002495,0.002750,0.249985,0,0);-ms-transform:matrix(0.226816,-0.002495,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226816,-0.002495,0.002750,0.249985,0,0);}
.md0_c00195{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);}
.m29_c00195{transform:matrix(0.229431,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229431,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229431,-0.002524,0.002750,0.249985,0,0);}
.mc4_c00195{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);}
.m63_c00195{transform:matrix(0.231071,-0.002542,0.002750,0.249985,0,0);-ms-transform:matrix(0.231071,-0.002542,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231071,-0.002542,0.002750,0.249985,0,0);}
.m4c_c00195{transform:matrix(0.233626,-0.002570,0.002750,0.249985,0,0);-ms-transform:matrix(0.233626,-0.002570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233626,-0.002570,0.002750,0.249985,0,0);}
.mae_c00195{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.235601,-0.002592,0.002750,0.249985,0,0);-ms-transform:matrix(0.235601,-0.002592,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235601,-0.002592,0.002750,0.249985,0,0);}
.m8b_c00195{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);}
.ma7_c00195{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);}
.mf1_c00195{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);}
.m8a_c00195{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00195{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);}
.m26_c00195{transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);-ms-transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);}
.mce_c00195{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.mc0_c00195{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);}
.m4d_c00195{transform:matrix(0.256464,-0.002821,0.002750,0.249985,0,0);-ms-transform:matrix(0.256464,-0.002821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256464,-0.002821,0.002750,0.249985,0,0);}
.me6_c00195{transform:matrix(0.256700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256700,0.000000,0.000000,0.250000,0,0);}
.mcc_c00195{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.mb1_c00195{transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.269929,-0.002969,0.002750,0.249985,0,0);-ms-transform:matrix(0.269929,-0.002969,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269929,-0.002969,0.002750,0.249985,0,0);}
.mbf_c00195{transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276590,0.000000,0.000000,0.250000,0,0);}
.m60_c00195{transform:matrix(0.276848,-0.003045,0.002750,0.249985,0,0);-ms-transform:matrix(0.276848,-0.003045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276848,-0.003045,0.002750,0.249985,0,0);}
.m93_c00195{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);}
.m3e_c00195{transform:matrix(0.284093,-0.003125,0.002750,0.249985,0,0);-ms-transform:matrix(0.284093,-0.003125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284093,-0.003125,0.002750,0.249985,0,0);}
.m0_c00195{transform:matrix(0.286073,-0.003147,0.002750,0.249985,0,0);-ms-transform:matrix(0.286073,-0.003147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286073,-0.003147,0.002750,0.249985,0,0);}
.m56_c00195{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);}
.maf_c00195{transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);}
.maa_c00195{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.md3_c00195{transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314555,0.000000,0.000000,0.250000,0,0);}
.mf3_c00195{transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318745,0.000000,0.000000,0.250000,0,0);}
.m54_c00195{transform:matrix(0.346984,-0.003817,0.002750,0.249985,0,0);-ms-transform:matrix(0.346984,-0.003817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.346984,-0.003817,0.002750,0.249985,0,0);}
.mb7_c00195{transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.358488,-0.003943,0.002750,0.249985,0,0);-ms-transform:matrix(0.358488,-0.003943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.358488,-0.003943,0.002750,0.249985,0,0);}
.mdd_c00195{transform:matrix(0.366720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366720,0.000000,0.000000,0.250000,0,0);}
.meb_c00195{transform:matrix(0.374775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00195{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);}
.m9e_c00195{transform:matrix(0.409310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409310,0.000000,0.000000,0.250000,0,0);}
.m7a_c00195{transform:matrix(0.437239,-0.004810,0.002750,0.249985,0,0);-ms-transform:matrix(0.437239,-0.004810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.437239,-0.004810,0.002750,0.249985,0,0);}
.m33_c00195{transform:matrix(0.489875,-0.005389,0.002750,0.249985,0,0);-ms-transform:matrix(0.489875,-0.005389,0.002750,0.249985,0,0);-webkit-transform:matrix(0.489875,-0.005389,0.002750,0.249985,0,0);}
.v1_c00195{vertical-align:-1.626098px;}
.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;}
._0_c00195{width:24.215722px;}
.fc0_c00195{color:transparent;}
.fsc_c00195{font-size:45.150000px;}
.fs14_c00195{font-size:46.200000px;}
.fs11_c00195{font-size:49.350000px;}
.fs10_c00195{font-size:50.400000px;}
.fs12_c00195{font-size:51.450000px;}
.fsb_c00195{font-size:52.500000px;}
.fse_c00195{font-size:53.550000px;}
.fs13_c00195{font-size:55.650000px;}
.fs2_c00195{font-size:59.853621px;}
.fs1_c00195{font-size:65.103938px;}
.fsd_c00195{font-size:66.150000px;}
.fs6_c00195{font-size:66.154002px;}
.fsf_c00195{font-size:68.250000px;}
.fs9_c00195{font-size:68.254129px;}
.fs0_c00195{font-size:69.304193px;}
.fs5_c00195{font-size:70.354256px;}
.fsa_c00195{font-size:72.454383px;}
.fs3_c00195{font-size:78.754764px;}
.fs8_c00195{font-size:81.904955px;}
.fs4_c00195{font-size:88.205336px;}
.fs7_c00195{font-size:99.756035px;}
.y0_c00195{bottom:0.000000px;}
.ya0_c00195{bottom:157.188000px;}
.y9f_c00195{bottom:177.102000px;}
.y9e_c00195{bottom:194.659500px;}
.y8e_c00195{bottom:211.950000px;}
.y8f_c00195{bottom:212.122500px;}
.y90_c00195{bottom:212.482500px;}
.y91_c00195{bottom:212.590500px;}
.y92_c00195{bottom:212.785500px;}
.y93_c00195{bottom:213.069000px;}
.y94_c00195{bottom:213.318000px;}
.y95_c00195{bottom:213.639000px;}
.y96_c00195{bottom:213.996000px;}
.y97_c00195{bottom:214.309500px;}
.y98_c00195{bottom:214.458000px;}
.y99_c00195{bottom:214.957500px;}
.y9a_c00195{bottom:215.103000px;}
.y9b_c00195{bottom:215.644500px;}
.y9c_c00195{bottom:216.327000px;}
.y9d_c00195{bottom:216.546000px;}
.y8d_c00195{bottom:230.539500px;}
.y8c_c00195{bottom:280.659000px;}
.y8b_c00195{bottom:298.629000px;}
.y8a_c00195{bottom:316.288500px;}
.y89_c00195{bottom:333.826500px;}
.y88_c00195{bottom:351.925500px;}
.y87_c00195{bottom:367.315500px;}
.y86_c00195{bottom:387.180000px;}
.y85_c00195{bottom:404.881500px;}
.y7c_c00195{bottom:437.263122px;}
.y7d_c00195{bottom:437.263449px;}
.y7e_c00195{bottom:437.263910px;}
.y7f_c00195{bottom:437.264343px;}
.y80_c00195{bottom:437.264477px;}
.y81_c00195{bottom:437.264967px;}
.y84_c00195{bottom:437.265485px;}
.y82_c00195{bottom:437.265521px;}
.y83_c00195{bottom:437.265848px;}
.y7b_c00195{bottom:460.604345px;}
.y78_c00195{bottom:483.601694px;}
.y77_c00195{bottom:483.602310px;}
.y79_c00195{bottom:483.602337px;}
.y74_c00195{bottom:483.602543px;}
.y73_c00195{bottom:483.602546px;}
.y76_c00195{bottom:483.602687px;}
.y75_c00195{bottom:483.602780px;}
.y7a_c00195{bottom:483.602861px;}
.y72_c00195{bottom:483.603252px;}
.y6d_c00195{bottom:505.511630px;}
.y71_c00195{bottom:505.511711px;}
.y6b_c00195{bottom:505.512189px;}
.y6e_c00195{bottom:505.512197px;}
.y6a_c00195{bottom:505.512222px;}
.y69_c00195{bottom:505.512239px;}
.y6c_c00195{bottom:505.512336px;}
.y70_c00195{bottom:505.512434px;}
.y6f_c00195{bottom:505.512750px;}
.y67_c00195{bottom:528.496599px;}
.y60_c00195{bottom:528.496691px;}
.y62_c00195{bottom:528.496928px;}
.y64_c00195{bottom:528.497118px;}
.y65_c00195{bottom:528.497205px;}
.y66_c00195{bottom:528.497262px;}
.y68_c00195{bottom:528.497286px;}
.y61_c00195{bottom:528.497304px;}
.y63_c00195{bottom:528.497541px;}
.y56_c00195{bottom:551.614449px;}
.y57_c00195{bottom:551.614853px;}
.y58_c00195{bottom:551.615450px;}
.y59_c00195{bottom:551.616153px;}
.y5a_c00195{bottom:551.616180px;}
.y5b_c00195{bottom:551.616927px;}
.y5c_c00195{bottom:551.617617px;}
.y5e_c00195{bottom:551.617808px;}
.y5d_c00195{bottom:551.617884px;}
.y5f_c00195{bottom:551.617971px;}
.y54_c00195{bottom:571.918401px;}
.y55_c00195{bottom:571.918442px;}
.y4e_c00195{bottom:597.036930px;}
.y4f_c00195{bottom:597.037227px;}
.y50_c00195{bottom:597.037298px;}
.y51_c00195{bottom:597.037608px;}
.y52_c00195{bottom:597.037832px;}
.y53_c00195{bottom:597.037935px;}
.y48_c00195{bottom:620.001369px;}
.y46_c00195{bottom:620.001522px;}
.y49_c00195{bottom:620.001593px;}
.y47_c00195{bottom:620.001986px;}
.y4a_c00195{bottom:620.002310px;}
.y4b_c00195{bottom:620.003057px;}
.y4d_c00195{bottom:620.003351px;}
.y4c_c00195{bottom:620.003760px;}
.y41_c00195{bottom:641.888726px;}
.y42_c00195{bottom:641.889096px;}
.y40_c00195{bottom:641.889102px;}
.y43_c00195{bottom:641.889107px;}
.y3f_c00195{bottom:641.889329px;}
.y44_c00195{bottom:641.889374px;}
.y45_c00195{bottom:641.889837px;}
.y36_c00195{bottom:665.143181px;}
.y3c_c00195{bottom:665.143499px;}
.y37_c00195{bottom:665.143598px;}
.y35_c00195{bottom:665.143647px;}
.y3a_c00195{bottom:665.143652px;}
.y38_c00195{bottom:665.143761px;}
.y39_c00195{bottom:665.143804px;}
.y3b_c00195{bottom:665.143905px;}
.y3d_c00195{bottom:665.144202px;}
.y3e_c00195{bottom:665.144799px;}
.y34_c00195{bottom:688.217433px;}
.y2b_c00195{bottom:710.404095px;}
.y31_c00195{bottom:710.404154px;}
.y2f_c00195{bottom:710.404193px;}
.y2e_c00195{bottom:710.404239px;}
.y2c_c00195{bottom:710.404319px;}
.y32_c00195{bottom:710.404827px;}
.y30_c00195{bottom:710.404910px;}
.y2d_c00195{bottom:710.404976px;}
.y33_c00195{bottom:710.405231px;}
.y23_c00195{bottom:731.964144px;}
.y24_c00195{bottom:732.150983px;}
.y25_c00195{bottom:732.451697px;}
.y26_c00195{bottom:732.819546px;}
.y27_c00195{bottom:733.395540px;}
.y28_c00195{bottom:733.842806px;}
.y29_c00195{bottom:734.083248px;}
.y2a_c00195{bottom:734.390034px;}
.y1a_c00195{bottom:756.228789px;}
.y1b_c00195{bottom:756.229133px;}
.y1f_c00195{bottom:756.229424px;}
.y1c_c00195{bottom:756.229446px;}
.y20_c00195{bottom:756.229647px;}
.y21_c00195{bottom:756.229674px;}
.y1d_c00195{bottom:756.229683px;}
.y22_c00195{bottom:756.229778px;}
.y1e_c00195{bottom:756.229817px;}
.y10_c00195{bottom:777.327347px;}
.y11_c00195{bottom:777.649382px;}
.y12_c00195{bottom:777.946791px;}
.y13_c00195{bottom:778.125455px;}
.y14_c00195{bottom:778.439204px;}
.y15_c00195{bottom:778.970291px;}
.y16_c00195{bottom:779.272454px;}
.y17_c00195{bottom:779.602413px;}
.y18_c00195{bottom:779.816481px;}
.y19_c00195{bottom:780.058083px;}
.yc_c00195{bottom:801.503484px;}
.y9_c00195{bottom:801.503700px;}
.ya_c00195{bottom:801.503804px;}
.ye_c00195{bottom:801.503868px;}
.yf_c00195{bottom:801.504045px;}
.yb_c00195{bottom:801.504071px;}
.yd_c00195{bottom:801.504201px;}
.y8_c00195{bottom:801.504437px;}
.y1_c00195{bottom:822.421500px;}
.y2_c00195{bottom:822.759470px;}
.y3_c00195{bottom:823.077887px;}
.y4_c00195{bottom:823.737227px;}
.y5_c00195{bottom:824.132567px;}
.y6_c00195{bottom:824.613575px;}
.y7_c00195{bottom:825.165995px;}
.he_c00195{height:45.150000px;}
.h16_c00195{height:46.200000px;}
.h13_c00195{height:49.350000px;}
.h12_c00195{height:50.400000px;}
.h14_c00195{height:51.450000px;}
.hd_c00195{height:52.500000px;}
.h10_c00195{height:53.550000px;}
.h15_c00195{height:55.650000px;}
.h4_c00195{height:59.853621px;}
.h3_c00195{height:65.103938px;}
.hf_c00195{height:66.150000px;}
.h8_c00195{height:66.154002px;}
.h11_c00195{height:68.250000px;}
.hb_c00195{height:68.254129px;}
.h2_c00195{height:69.304193px;}
.h7_c00195{height:70.354256px;}
.hc_c00195{height:72.454383px;}
.h5_c00195{height:78.754764px;}
.ha_c00195{height:81.904955px;}
.h6_c00195{height:88.205336px;}
.h9_c00195{height:99.756035px;}
.h0_c00195{height:1008.450000px;}
.h1_c00195{height:1008.750000px;}
.w0_c00195{width:678.450000px;}
.w1_c00195{width:678.750000px;}
.x0_c00195{left:0.000000px;}
.x70_c00195{left:152.107500px;}
.x7a_c00195{left:153.900000px;}
.x68_c00195{left:168.480000px;}
.x84_c00195{left:170.910000px;}
.x8_c00195{left:184.678812px;}
.x1_c00195{left:186.727500px;}
.x21_c00195{left:188.826664px;}
.x51_c00195{left:190.886553px;}
.x3f_c00195{left:195.474759px;}
.x85_c00195{left:198.720000px;}
.x34_c00195{left:202.497024px;}
.x9_c00195{left:204.659737px;}
.x69_c00195{left:207.630000px;}
.x19_c00195{left:209.515785px;}
.x52_c00195{left:210.597446px;}
.x26_c00195{left:211.946091px;}
.x4d_c00195{left:214.918491px;}
.x71_c00195{left:216.091500px;}
.x2_c00195{left:217.452000px;}
.x46_c00195{left:221.128437px;}
.x41_c00195{left:223.287936px;}
.x3c_c00195{left:224.367981px;}
.x10_c00195{left:227.441359px;}
.x86_c00195{left:229.500000px;}
.xa_c00195{left:230.581372px;}
.x1a_c00195{left:233.547189px;}
.x63_c00195{left:235.440000px;}
.x22_c00195{left:243.105369px;}
.x3_c00195{left:246.399000px;}
.x47_c00195{left:251.370600px;}
.x38_c00195{left:254.879595px;}
.x5d_c00195{left:256.230000px;}
.x27_c00195{left:259.738866px;}
.x6a_c00195{left:262.710000px;}
.x11_c00195{left:264.707097px;}
.x67_c00195{left:265.950000px;}
.x2d_c00195{left:267.839661px;}
.x5e_c00195{left:270.000000px;}
.x7b_c00195{left:273.510000px;}
.x40_c00195{left:275.669961px;}
.x28_c00195{left:279.719791px;}
.xb_c00195{left:281.884576px;}
.x23_c00195{left:283.910760px;}
.x1b_c00195{left:285.120426px;}
.x12_c00195{left:287.086339px;}
.x72_c00195{left:288.700500px;}
.x3d_c00195{left:290.791517px;}
.x2e_c00195{left:293.221230px;}
.x4e_c00195{left:294.302094px;}
.x35_c00195{left:296.462392px;}
.x60_c00195{left:298.080000px;}
.x65_c00195{left:299.160000px;}
.xc_c00195{left:300.515337px;}
.x53_c00195{left:302.402550px;}
.x4_c00195{left:306.339000px;}
.x61_c00195{left:307.800000px;}
.x59_c00195{left:309.691593px;}
.x1c_c00195{left:310.772028px;}
.x2c_c00195{left:312.121737px;}
.x64_c00195{left:313.470000px;}
.x39_c00195{left:315.633938px;}
.x87_c00195{left:317.790000px;}
.x2f_c00195{left:319.682931px;}
.x73_c00195{left:320.871000px;}
.x5f_c00195{left:322.110000px;}
.x13_c00195{left:326.246626px;}
.x4f_c00195{left:327.514620px;}
.x48_c00195{left:330.215637px;}
.x8c_c00195{left:332.910000px;}
.x58_c00195{left:335.074455px;}
.x5_c00195{left:342.279000px;}
.x54_c00195{left:343.444517px;}
.x42_c00195{left:345.605220px;}
.xd_c00195{left:347.768046px;}
.x66_c00195{left:348.840000px;}
.x1d_c00195{left:354.514324px;}
.x74_c00195{left:356.518500px;}
.x6b_c00195{left:358.830000px;}
.x3a_c00195{left:362.616614px;}
.x29_c00195{left:367.745934px;}
.x49_c00195{left:369.637405px;}
.x62_c00195{left:370.980000px;}
.x55_c00195{left:373.686680px;}
.x30_c00195{left:374.766597px;}
.x36_c00195{left:376.927627px;}
.x1e_c00195{left:379.355827px;}
.x7c_c00195{left:382.860000px;}
.x6_c00195{left:386.007000px;}
.x75_c00195{left:387.846000px;}
.xe_c00195{left:390.970276px;}
.x14_c00195{left:392.665821px;}
.x24_c00195{left:397.527751px;}
.x31_c00195{left:399.338067px;}
.x76_c00195{left:402.678000px;}
.x3e_c00195{left:405.817926px;}
.x56_c00195{left:413.648514px;}
.x5a_c00195{left:419.857409px;}
.x4a_c00195{left:422.830841px;}
.x25_c00195{left:424.295845px;}
.x37_c00195{left:428.230831px;}
.x15_c00195{left:430.500075px;}
.x1f_c00195{left:432.819295px;}
.x7_c00195{left:436.227000px;}
.x43_c00195{left:437.680341px;}
.x7d_c00195{left:439.290000px;}
.xf_c00195{left:443.083579px;}
.x57_c00195{left:449.291321px;}
.x32_c00195{left:450.371238px;}
.x6c_c00195{left:453.330000px;}
.x2a_c00195{left:454.960494px;}
.x20_c00195{left:458.740930px;}
.x8d_c00195{left:459.810000px;}
.x44_c00195{left:465.222174px;}
.x7e_c00195{left:466.290000px;}
.x3b_c00195{left:467.383285px;}
.x4b_c00195{left:469.003434px;}
.x5b_c00195{left:470.620547px;}
.x16_c00195{left:471.815944px;}
.x50_c00195{left:474.403391px;}
.x2b_c00195{left:475.751502px;}
.x45_c00195{left:490.603743px;}
.x8e_c00195{left:497.340000px;}
.x17_c00195{left:498.504819px;}
.x88_c00195{left:503.550000px;}
.x33_c00195{left:512.205712px;}
.x5c_c00195{left:514.092810px;}
.x77_c00195{left:521.430000px;}
.x18_c00195{left:528.787825px;}
.x4c_c00195{left:530.027809px;}
.x7f_c00195{left:534.060000px;}
.x6d_c00195{left:536.220000px;}
.x80_c00195{left:545.670000px;}
.x6e_c00195{left:556.200000px;}
.x89_c00195{left:565.920000px;}
.x8f_c00195{left:582.390000px;}
.x78_c00195{left:589.705500px;}
.x81_c00195{left:596.970000px;}
.x6f_c00195{left:603.990000px;}
.x79_c00195{left:611.571000px;}
.x82_c00195{left:616.950000px;}
.x83_c00195{left:638.550000px;}
.x8a_c00195{left:658.800000px;}
.x8b_c00195{left:669.330000px;}
@media print{
.v1_c00195{vertical-align:-1.445421pt;}
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.000000pt;}
._0_c00195{width:21.525086pt;}
.fsc_c00195{font-size:40.133333pt;}
.fs14_c00195{font-size:41.066667pt;}
.fs11_c00195{font-size:43.866667pt;}
.fs10_c00195{font-size:44.800000pt;}
.fs12_c00195{font-size:45.733333pt;}
.fsb_c00195{font-size:46.666667pt;}
.fse_c00195{font-size:47.600000pt;}
.fs13_c00195{font-size:49.466667pt;}
.fs2_c00195{font-size:53.203219pt;}
.fs1_c00195{font-size:57.870167pt;}
.fsd_c00195{font-size:58.800000pt;}
.fs6_c00195{font-size:58.803557pt;}
.fsf_c00195{font-size:60.666667pt;}
.fs9_c00195{font-size:60.670337pt;}
.fs0_c00195{font-size:61.603727pt;}
.fs5_c00195{font-size:62.537116pt;}
.fsa_c00195{font-size:64.403896pt;}
.fs3_c00195{font-size:70.004235pt;}
.fs8_c00195{font-size:72.804404pt;}
.fs4_c00195{font-size:78.404743pt;}
.fs7_c00195{font-size:88.672031pt;}
.y0_c00195{bottom:0.000000pt;}
.ya0_c00195{bottom:139.722667pt;}
.y9f_c00195{bottom:157.424000pt;}
.y9e_c00195{bottom:173.030667pt;}
.y8e_c00195{bottom:188.400000pt;}
.y8f_c00195{bottom:188.553333pt;}
.y90_c00195{bottom:188.873333pt;}
.y91_c00195{bottom:188.969333pt;}
.y92_c00195{bottom:189.142667pt;}
.y93_c00195{bottom:189.394667pt;}
.y94_c00195{bottom:189.616000pt;}
.y95_c00195{bottom:189.901333pt;}
.y96_c00195{bottom:190.218667pt;}
.y97_c00195{bottom:190.497333pt;}
.y98_c00195{bottom:190.629333pt;}
.y99_c00195{bottom:191.073333pt;}
.y9a_c00195{bottom:191.202667pt;}
.y9b_c00195{bottom:191.684000pt;}
.y9c_c00195{bottom:192.290667pt;}
.y9d_c00195{bottom:192.485333pt;}
.y8d_c00195{bottom:204.924000pt;}
.y8c_c00195{bottom:249.474667pt;}
.y8b_c00195{bottom:265.448000pt;}
.y8a_c00195{bottom:281.145333pt;}
.y89_c00195{bottom:296.734667pt;}
.y88_c00195{bottom:312.822667pt;}
.y87_c00195{bottom:326.502667pt;}
.y86_c00195{bottom:344.160000pt;}
.y85_c00195{bottom:359.894667pt;}
.y7c_c00195{bottom:388.678331pt;}
.y7d_c00195{bottom:388.678621pt;}
.y7e_c00195{bottom:388.679031pt;}
.y7f_c00195{bottom:388.679416pt;}
.y80_c00195{bottom:388.679535pt;}
.y81_c00195{bottom:388.679971pt;}
.y84_c00195{bottom:388.680431pt;}
.y82_c00195{bottom:388.680463pt;}
.y83_c00195{bottom:388.680753pt;}
.y7b_c00195{bottom:409.426084pt;}
.y78_c00195{bottom:429.868172pt;}
.y77_c00195{bottom:429.868720pt;}
.y79_c00195{bottom:429.868744pt;}
.y74_c00195{bottom:429.868927pt;}
.y73_c00195{bottom:429.868929pt;}
.y76_c00195{bottom:429.869055pt;}
.y75_c00195{bottom:429.869137pt;}
.y7a_c00195{bottom:429.869209pt;}
.y72_c00195{bottom:429.869557pt;}
.y6d_c00195{bottom:449.343671pt;}
.y71_c00195{bottom:449.343743pt;}
.y6b_c00195{bottom:449.344168pt;}
.y6e_c00195{bottom:449.344175pt;}
.y6a_c00195{bottom:449.344197pt;}
.y69_c00195{bottom:449.344212pt;}
.y6c_c00195{bottom:449.344299pt;}
.y70_c00195{bottom:449.344385pt;}
.y6f_c00195{bottom:449.344667pt;}
.y67_c00195{bottom:469.774755pt;}
.y60_c00195{bottom:469.774836pt;}
.y62_c00195{bottom:469.775047pt;}
.y64_c00195{bottom:469.775216pt;}
.y65_c00195{bottom:469.775293pt;}
.y66_c00195{bottom:469.775344pt;}
.y68_c00195{bottom:469.775365pt;}
.y61_c00195{bottom:469.775381pt;}
.y63_c00195{bottom:469.775592pt;}
.y56_c00195{bottom:490.323955pt;}
.y57_c00195{bottom:490.324313pt;}
.y58_c00195{bottom:490.324844pt;}
.y59_c00195{bottom:490.325469pt;}
.y5a_c00195{bottom:490.325493pt;}
.y5b_c00195{bottom:490.326157pt;}
.y5c_c00195{bottom:490.326771pt;}
.y5e_c00195{bottom:490.326940pt;}
.y5d_c00195{bottom:490.327008pt;}
.y5f_c00195{bottom:490.327085pt;}
.y54_c00195{bottom:508.371912pt;}
.y55_c00195{bottom:508.371948pt;}
.y4e_c00195{bottom:530.699493pt;}
.y4f_c00195{bottom:530.699757pt;}
.y50_c00195{bottom:530.699820pt;}
.y51_c00195{bottom:530.700096pt;}
.y52_c00195{bottom:530.700295pt;}
.y53_c00195{bottom:530.700387pt;}
.y48_c00195{bottom:551.112328pt;}
.y46_c00195{bottom:551.112464pt;}
.y49_c00195{bottom:551.112527pt;}
.y47_c00195{bottom:551.112876pt;}
.y4a_c00195{bottom:551.113164pt;}
.y4b_c00195{bottom:551.113828pt;}
.y4d_c00195{bottom:551.114089pt;}
.y4c_c00195{bottom:551.114453pt;}
.y41_c00195{bottom:570.567756pt;}
.y42_c00195{bottom:570.568085pt;}
.y40_c00195{bottom:570.568091pt;}
.y43_c00195{bottom:570.568095pt;}
.y3f_c00195{bottom:570.568292pt;}
.y44_c00195{bottom:570.568332pt;}
.y45_c00195{bottom:570.568744pt;}
.y36_c00195{bottom:591.238383pt;}
.y3c_c00195{bottom:591.238665pt;}
.y37_c00195{bottom:591.238753pt;}
.y35_c00195{bottom:591.238797pt;}
.y3a_c00195{bottom:591.238801pt;}
.y38_c00195{bottom:591.238899pt;}
.y39_c00195{bottom:591.238937pt;}
.y3b_c00195{bottom:591.239027pt;}
.y3d_c00195{bottom:591.239291pt;}
.y3e_c00195{bottom:591.239821pt;}
.y34_c00195{bottom:611.748829pt;}
.y2b_c00195{bottom:631.470307pt;}
.y31_c00195{bottom:631.470359pt;}
.y2f_c00195{bottom:631.470393pt;}
.y2e_c00195{bottom:631.470435pt;}
.y2c_c00195{bottom:631.470505pt;}
.y32_c00195{bottom:631.470957pt;}
.y30_c00195{bottom:631.471031pt;}
.y2d_c00195{bottom:631.471089pt;}
.y33_c00195{bottom:631.471316pt;}
.y23_c00195{bottom:650.634795pt;}
.y24_c00195{bottom:650.800873pt;}
.y25_c00195{bottom:651.068175pt;}
.y26_c00195{bottom:651.395152pt;}
.y27_c00195{bottom:651.907147pt;}
.y28_c00195{bottom:652.304716pt;}
.y29_c00195{bottom:652.518443pt;}
.y2a_c00195{bottom:652.791141pt;}
.y1a_c00195{bottom:672.203368pt;}
.y1b_c00195{bottom:672.203673pt;}
.y1f_c00195{bottom:672.203932pt;}
.y1c_c00195{bottom:672.203952pt;}
.y20_c00195{bottom:672.204131pt;}
.y21_c00195{bottom:672.204155pt;}
.y1d_c00195{bottom:672.204163pt;}
.y22_c00195{bottom:672.204247pt;}
.y1e_c00195{bottom:672.204281pt;}
.y10_c00195{bottom:690.957641pt;}
.y11_c00195{bottom:691.243895pt;}
.y12_c00195{bottom:691.508259pt;}
.y13_c00195{bottom:691.667071pt;}
.y14_c00195{bottom:691.945959pt;}
.y15_c00195{bottom:692.418036pt;}
.y16_c00195{bottom:692.686625pt;}
.y17_c00195{bottom:692.979923pt;}
.y18_c00195{bottom:693.170205pt;}
.y19_c00195{bottom:693.384963pt;}
.yc_c00195{bottom:712.447541pt;}
.y9_c00195{bottom:712.447733pt;}
.ya_c00195{bottom:712.447825pt;}
.ye_c00195{bottom:712.447883pt;}
.yf_c00195{bottom:712.448040pt;}
.yb_c00195{bottom:712.448063pt;}
.yd_c00195{bottom:712.448179pt;}
.y8_c00195{bottom:712.448388pt;}
.y1_c00195{bottom:731.041333pt;}
.y2_c00195{bottom:731.341751pt;}
.y3_c00195{bottom:731.624788pt;}
.y4_c00195{bottom:732.210868pt;}
.y5_c00195{bottom:732.562281pt;}
.y6_c00195{bottom:732.989844pt;}
.y7_c00195{bottom:733.480884pt;}
.he_c00195{height:40.133333pt;}
.h16_c00195{height:41.066667pt;}
.h13_c00195{height:43.866667pt;}
.h12_c00195{height:44.800000pt;}
.h14_c00195{height:45.733333pt;}
.hd_c00195{height:46.666667pt;}
.h10_c00195{height:47.600000pt;}
.h15_c00195{height:49.466667pt;}
.h4_c00195{height:53.203219pt;}
.h3_c00195{height:57.870167pt;}
.hf_c00195{height:58.800000pt;}
.h8_c00195{height:58.803557pt;}
.h11_c00195{height:60.666667pt;}
.hb_c00195{height:60.670337pt;}
.h2_c00195{height:61.603727pt;}
.h7_c00195{height:62.537116pt;}
.hc_c00195{height:64.403896pt;}
.h5_c00195{height:70.004235pt;}
.ha_c00195{height:72.804404pt;}
.h6_c00195{height:78.404743pt;}
.h9_c00195{height:88.672031pt;}
.h0_c00195{height:896.400000pt;}
.h1_c00195{height:896.666667pt;}
.w0_c00195{width:603.066667pt;}
.w1_c00195{width:603.333333pt;}
.x0_c00195{left:0.000000pt;}
.x70_c00195{left:135.206667pt;}
.x7a_c00195{left:136.800000pt;}
.x68_c00195{left:149.760000pt;}
.x84_c00195{left:151.920000pt;}
.x8_c00195{left:164.158944pt;}
.x1_c00195{left:165.980000pt;}
.x21_c00195{left:167.845924pt;}
.x51_c00195{left:169.676936pt;}
.x3f_c00195{left:173.755341pt;}
.x85_c00195{left:176.640000pt;}
.x34_c00195{left:179.997355pt;}
.x9_c00195{left:181.919767pt;}
.x69_c00195{left:184.560000pt;}
.x19_c00195{left:186.236253pt;}
.x52_c00195{left:187.197729pt;}
.x26_c00195{left:188.396525pt;}
.x4d_c00195{left:191.038659pt;}
.x71_c00195{left:192.081333pt;}
.x2_c00195{left:193.290667pt;}
.x46_c00195{left:196.558611pt;}
.x41_c00195{left:198.478165pt;}
.x3c_c00195{left:199.438205pt;}
.x10_c00195{left:202.170097pt;}
.x86_c00195{left:204.000000pt;}
.xa_c00195{left:204.961220pt;}
.x1a_c00195{left:207.597501pt;}
.x63_c00195{left:209.280000pt;}
.x22_c00195{left:216.093661pt;}
.x3_c00195{left:219.021333pt;}
.x47_c00195{left:223.440533pt;}
.x38_c00195{left:226.559640pt;}
.x5d_c00195{left:227.760000pt;}
.x27_c00195{left:230.878992pt;}
.x6a_c00195{left:233.520000pt;}
.x11_c00195{left:235.295197pt;}
.x67_c00195{left:236.400000pt;}
.x2d_c00195{left:238.079699pt;}
.x5e_c00195{left:240.000000pt;}
.x7b_c00195{left:243.120000pt;}
.x40_c00195{left:245.039965pt;}
.x28_c00195{left:248.639815pt;}
.xb_c00195{left:250.564068pt;}
.x23_c00195{left:252.365120pt;}
.x1b_c00195{left:253.440379pt;}
.x12_c00195{left:255.187857pt;}
.x72_c00195{left:256.622667pt;}
.x3d_c00195{left:258.481348pt;}
.x2e_c00195{left:260.641093pt;}
.x4e_c00195{left:261.601861pt;}
.x35_c00195{left:263.522127pt;}
.x60_c00195{left:264.960000pt;}
.x65_c00195{left:265.920000pt;}
.xc_c00195{left:267.124744pt;}
.x53_c00195{left:268.802267pt;}
.x4_c00195{left:272.301333pt;}
.x61_c00195{left:273.600000pt;}
.x59_c00195{left:275.281416pt;}
.x1c_c00195{left:276.241803pt;}
.x2c_c00195{left:277.441544pt;}
.x64_c00195{left:278.640000pt;}
.x39_c00195{left:280.563500pt;}
.x87_c00195{left:282.480000pt;}
.x2f_c00195{left:284.162605pt;}
.x73_c00195{left:285.218667pt;}
.x5f_c00195{left:286.320000pt;}
.x13_c00195{left:289.997001pt;}
.x4f_c00195{left:291.124107pt;}
.x48_c00195{left:293.525011pt;}
.x8c_c00195{left:295.920000pt;}
.x58_c00195{left:297.843960pt;}
.x5_c00195{left:304.248000pt;}
.x54_c00195{left:305.284015pt;}
.x42_c00195{left:307.204640pt;}
.xd_c00195{left:309.127152pt;}
.x66_c00195{left:310.080000pt;}
.x1d_c00195{left:315.123844pt;}
.x74_c00195{left:316.905333pt;}
.x6b_c00195{left:318.960000pt;}
.x3a_c00195{left:322.325879pt;}
.x29_c00195{left:326.885275pt;}
.x49_c00195{left:328.566583pt;}
.x62_c00195{left:329.760000pt;}
.x55_c00195{left:332.165937pt;}
.x30_c00195{left:333.125864pt;}
.x36_c00195{left:335.046780pt;}
.x1e_c00195{left:337.205180pt;}
.x7c_c00195{left:340.320000pt;}
.x6_c00195{left:343.117333pt;}
.x75_c00195{left:344.752000pt;}
.xe_c00195{left:347.529135pt;}
.x14_c00195{left:349.036285pt;}
.x24_c00195{left:353.358001pt;}
.x31_c00195{left:354.967171pt;}
.x76_c00195{left:357.936000pt;}
.x3e_c00195{left:360.727045pt;}
.x56_c00195{left:367.687568pt;}
.x5a_c00195{left:373.206585pt;}
.x4a_c00195{left:375.849636pt;}
.x25_c00195{left:377.151863pt;}
.x37_c00195{left:380.649628pt;}
.x15_c00195{left:382.666733pt;}
.x1f_c00195{left:384.728263pt;}
.x7_c00195{left:387.757333pt;}
.x43_c00195{left:389.049192pt;}
.x7d_c00195{left:390.480000pt;}
.xf_c00195{left:393.852071pt;}
.x57_c00195{left:399.370063pt;}
.x32_c00195{left:400.329989pt;}
.x6c_c00195{left:402.960000pt;}
.x2a_c00195{left:404.409328pt;}
.x20_c00195{left:407.769716pt;}
.x8d_c00195{left:408.720000pt;}
.x44_c00195{left:413.530821pt;}
.x7e_c00195{left:414.480000pt;}
.x3b_c00195{left:415.451809pt;}
.x4b_c00195{left:416.891941pt;}
.x5b_c00195{left:418.329375pt;}
.x16_c00195{left:419.391951pt;}
.x50_c00195{left:421.691903pt;}
.x2b_c00195{left:422.890224pt;}
.x45_c00195{left:436.092216pt;}
.x8e_c00195{left:442.080000pt;}
.x17_c00195{left:443.115395pt;}
.x88_c00195{left:447.600000pt;}
.x33_c00195{left:455.293967pt;}
.x5c_c00195{left:456.971387pt;}
.x77_c00195{left:463.493333pt;}
.x18_c00195{left:470.033623pt;}
.x4c_c00195{left:471.135831pt;}
.x7f_c00195{left:474.720000pt;}
.x6d_c00195{left:476.640000pt;}
.x80_c00195{left:485.040000pt;}
.x6e_c00195{left:494.400000pt;}
.x89_c00195{left:503.040000pt;}
.x8f_c00195{left:517.680000pt;}
.x78_c00195{left:524.182667pt;}
.x81_c00195{left:530.640000pt;}
.x6f_c00195{left:536.880000pt;}
.x79_c00195{left:543.618667pt;}
.x82_c00195{left:548.400000pt;}
.x83_c00195{left:567.600000pt;}
.x8a_c00195{left:585.600000pt;}
.x8b_c00195{left:594.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma5_c00196{transform:matrix(0.009510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009510,0.000000,0.000000,0.250000,0,0);}
.m49_c00196{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m55_c00196{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);}
.m95_c00196{transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);}
.m5e_c00196{transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);}
.m53_c00196{transform:matrix(0.074905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074905,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.090193,-0.001443,0.003999,0.249968,0,0);-ms-transform:matrix(0.090193,-0.001443,0.003999,0.249968,0,0);-webkit-transform:matrix(0.090193,-0.001443,0.003999,0.249968,0,0);}
.m73_c00196{transform:matrix(0.099045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099045,0.000000,0.000000,0.250000,0,0);}
.m2d_c00196{transform:matrix(0.106386,-0.001702,0.003999,0.249968,0,0);-ms-transform:matrix(0.106386,-0.001702,0.003999,0.249968,0,0);-webkit-transform:matrix(0.106386,-0.001702,0.003999,0.249968,0,0);}
.mb2_c00196{transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);}
.m36_c00196{transform:matrix(0.131148,-0.001311,0.002500,0.249988,0,0);-ms-transform:matrix(0.131148,-0.001311,0.002500,0.249988,0,0);-webkit-transform:matrix(0.131148,-0.001311,0.002500,0.249988,0,0);}
.m58_c00196{transform:matrix(0.131890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131890,0.000000,0.000000,0.250000,0,0);}
.mb1_c00196{transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);}
.m83_c00196{transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141385,0.000000,0.000000,0.250000,0,0);}
.m52_c00196{transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);}
.m3b_c00196{transform:matrix(0.151057,-0.001511,0.002500,0.249988,0,0);-ms-transform:matrix(0.151057,-0.001511,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151057,-0.001511,0.002500,0.249988,0,0);}
.m9e_c00196{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);}
.m6b_c00196{transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154710,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.160944,-0.002575,0.003999,0.249968,0,0);-ms-transform:matrix(0.160944,-0.002575,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160944,-0.002575,0.003999,0.249968,0,0);}
.ma_c00196{transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);-ms-transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);}
.m81_c00196{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);}
.m84_c00196{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);}
.m6e_c00196{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);}
.m16_c00196{transform:matrix(0.165964,-0.002655,0.003999,0.249968,0,0);-ms-transform:matrix(0.165964,-0.002655,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165964,-0.002655,0.003999,0.249968,0,0);}
.m1c_c00196{transform:matrix(0.166524,-0.002664,0.003999,0.249968,0,0);-ms-transform:matrix(0.166524,-0.002664,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166524,-0.002664,0.003999,0.249968,0,0);}
.m15_c00196{transform:matrix(0.166999,-0.002672,0.003999,0.249968,0,0);-ms-transform:matrix(0.166999,-0.002672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166999,-0.002672,0.003999,0.249968,0,0);}
.m90_c00196{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);}
.ma1_c00196{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);}
.m30_c00196{transform:matrix(0.170738,-0.002732,0.003999,0.249968,0,0);-ms-transform:matrix(0.170738,-0.002732,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170738,-0.002732,0.003999,0.249968,0,0);}
.mf_c00196{transform:matrix(0.170808,-0.002733,0.003999,0.249968,0,0);-ms-transform:matrix(0.170808,-0.002733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170808,-0.002733,0.003999,0.249968,0,0);}
.m71_c00196{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);}
.m9a_c00196{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);}
.m94_c00196{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);}
.m11_c00196{transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);-ms-transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);}
.m68_c00196{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.m54_c00196{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m82_c00196{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);}
.m66_c00196{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);}
.mae_c00196{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);}
.m80_c00196{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);}
.m85_c00196{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);}
.m91_c00196{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);}
.m9f_c00196{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);}
.m70_c00196{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);}
.m6c_c00196{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);}
.m38_c00196{transform:matrix(0.187456,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187456,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187456,-0.001875,0.002500,0.249988,0,0);}
.m25_c00196{transform:matrix(0.189816,-0.003037,0.003999,0.249968,0,0);-ms-transform:matrix(0.189816,-0.003037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189816,-0.003037,0.003999,0.249968,0,0);}
.md_c00196{transform:matrix(0.191261,-0.003060,0.003999,0.249968,0,0);-ms-transform:matrix(0.191261,-0.003060,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191261,-0.003060,0.003999,0.249968,0,0);}
.m6f_c00196{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);}
.m1f_c00196{transform:matrix(0.191605,-0.003066,0.003999,0.249968,0,0);-ms-transform:matrix(0.191605,-0.003066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191605,-0.003066,0.003999,0.249968,0,0);}
.ma6_c00196{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);}
.m7_c00196{transform:matrix(0.192890,-0.003086,0.003999,0.249968,0,0);-ms-transform:matrix(0.192890,-0.003086,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192890,-0.003086,0.003999,0.249968,0,0);}
.m8a_c00196{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);}
.m7a_c00196{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);}
.m79_c00196{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);}
.m64_c00196{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.m13_c00196{transform:matrix(0.195780,-0.003132,0.003999,0.249968,0,0);-ms-transform:matrix(0.195780,-0.003132,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195780,-0.003132,0.003999,0.249968,0,0);}
.m6d_c00196{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);}
.m72_c00196{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);}
.m21_c00196{transform:matrix(0.197880,-0.003166,0.003999,0.249968,0,0);-ms-transform:matrix(0.197880,-0.003166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197880,-0.003166,0.003999,0.249968,0,0);}
.ma3_c00196{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);}
.m9d_c00196{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);}
.mc_c00196{transform:matrix(0.200659,-0.003211,0.003999,0.249968,0,0);-ms-transform:matrix(0.200659,-0.003211,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200659,-0.003211,0.003999,0.249968,0,0);}
.m6a_c00196{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);}
.m2b_c00196{transform:matrix(0.202879,-0.003246,0.003999,0.249968,0,0);-ms-transform:matrix(0.202879,-0.003246,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202879,-0.003246,0.003999,0.249968,0,0);}
.m86_c00196{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);}
.m93_c00196{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);}
.m8d_c00196{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);}
.m1b_c00196{transform:matrix(0.204309,-0.003269,0.003999,0.249968,0,0);-ms-transform:matrix(0.204309,-0.003269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204309,-0.003269,0.003999,0.249968,0,0);}
.mb_c00196{transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);-ms-transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);}
.mb3_c00196{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);}
.m99_c00196{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);}
.m69_c00196{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);}
.m92_c00196{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);}
.m1a_c00196{transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);}
.m17_c00196{transform:matrix(0.208613,-0.003338,0.003999,0.249968,0,0);-ms-transform:matrix(0.208613,-0.003338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208613,-0.003338,0.003999,0.249968,0,0);}
.m5f_c00196{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);}
.m57_c00196{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);}
.m65_c00196{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);}
.m24_c00196{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);}
.ma7_c00196{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);}
.m7b_c00196{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);}
.m5a_c00196{transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);}
.m39_c00196{transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);}
.m50_c00196{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);}
.mac_c00196{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);}
.m8_c00196{transform:matrix(0.219097,-0.003506,0.003999,0.249968,0,0);-ms-transform:matrix(0.219097,-0.003506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219097,-0.003506,0.003999,0.249968,0,0);}
.m5b_c00196{transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);}
.m75_c00196{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);}
.m19_c00196{transform:matrix(0.221117,-0.003538,0.003999,0.249968,0,0);-ms-transform:matrix(0.221117,-0.003538,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221117,-0.003538,0.003999,0.249968,0,0);}
.m33_c00196{transform:matrix(0.222444,-0.002224,0.002500,0.249988,0,0);-ms-transform:matrix(0.222444,-0.002224,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222444,-0.002224,0.002500,0.249988,0,0);}
.m26_c00196{transform:matrix(0.222801,-0.003565,0.003999,0.249968,0,0);-ms-transform:matrix(0.222801,-0.003565,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222801,-0.003565,0.003999,0.249968,0,0);}
.m62_c00196{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);}
.m2c_c00196{transform:matrix(0.222891,-0.003566,0.003999,0.249968,0,0);-ms-transform:matrix(0.222891,-0.003566,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222891,-0.003566,0.003999,0.249968,0,0);}
.m12_c00196{transform:matrix(0.223101,-0.003570,0.003999,0.249968,0,0);-ms-transform:matrix(0.223101,-0.003570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223101,-0.003570,0.003999,0.249968,0,0);}
.m3_c00196{transform:matrix(0.223111,-0.003570,0.003999,0.249968,0,0);-ms-transform:matrix(0.223111,-0.003570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223111,-0.003570,0.003999,0.249968,0,0);}
.m23_c00196{transform:matrix(0.223481,-0.003576,0.003999,0.249968,0,0);-ms-transform:matrix(0.223481,-0.003576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223481,-0.003576,0.003999,0.249968,0,0);}
.m9c_c00196{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);}
.m20_c00196{transform:matrix(0.224026,-0.003584,0.003999,0.249968,0,0);-ms-transform:matrix(0.224026,-0.003584,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224026,-0.003584,0.003999,0.249968,0,0);}
.m1e_c00196{transform:matrix(0.229821,-0.003677,0.003999,0.249968,0,0);-ms-transform:matrix(0.229821,-0.003677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229821,-0.003677,0.003999,0.249968,0,0);}
.m3a_c00196{transform:matrix(0.230188,-0.002302,0.002500,0.249988,0,0);-ms-transform:matrix(0.230188,-0.002302,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230188,-0.002302,0.002500,0.249988,0,0);}
.m63_c00196{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);}
.m7d_c00196{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);}
.m18_c00196{transform:matrix(0.236485,-0.003784,0.003999,0.249968,0,0);-ms-transform:matrix(0.236485,-0.003784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236485,-0.003784,0.003999,0.249968,0,0);}
.m37_c00196{transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);-ms-transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);}
.m32_c00196{transform:matrix(0.236928,-0.002369,0.002500,0.249988,0,0);-ms-transform:matrix(0.236928,-0.002369,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236928,-0.002369,0.002500,0.249988,0,0);}
.m34_c00196{transform:matrix(0.239678,-0.002397,0.002500,0.249988,0,0);-ms-transform:matrix(0.239678,-0.002397,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239678,-0.002397,0.002500,0.249988,0,0);}
.m8c_c00196{transform:matrix(0.241230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241230,0.000000,0.000000,0.250000,0,0);}
.m28_c00196{transform:matrix(0.241489,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241489,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241489,-0.003864,0.003999,0.249968,0,0);}
.m44_c00196{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);}
.m2f_c00196{transform:matrix(0.244104,-0.003906,0.003999,0.249968,0,0);-ms-transform:matrix(0.244104,-0.003906,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244104,-0.003906,0.003999,0.249968,0,0);}
.m3d_c00196{transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);}
.maf_c00196{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);}
.m8b_c00196{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);}
.m6_c00196{transform:matrix(0.246443,-0.003943,0.003999,0.249968,0,0);-ms-transform:matrix(0.246443,-0.003943,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246443,-0.003943,0.003999,0.249968,0,0);}
.m97_c00196{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m3c_c00196{transform:matrix(0.248788,-0.002488,0.002500,0.249988,0,0);-ms-transform:matrix(0.248788,-0.002488,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248788,-0.002488,0.002500,0.249988,0,0);}
.m56_c00196{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);}
.m98_c00196{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00196{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00196{transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);}
.m35_c00196{transform:matrix(0.261527,-0.002615,0.002500,0.249988,0,0);-ms-transform:matrix(0.261527,-0.002615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261527,-0.002615,0.002500,0.249988,0,0);}
.m1_c00196{transform:matrix(0.263446,-0.004215,0.003999,0.249968,0,0);-ms-transform:matrix(0.263446,-0.004215,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263446,-0.004215,0.003999,0.249968,0,0);}
.me_c00196{transform:matrix(0.265581,-0.004249,0.003999,0.249968,0,0);-ms-transform:matrix(0.265581,-0.004249,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265581,-0.004249,0.003999,0.249968,0,0);}
.m51_c00196{transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);}
.m59_c00196{transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268245,0.000000,0.000000,0.250000,0,0);}
.m5d_c00196{transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268480,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);-ms-transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);}
.mab_c00196{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);}
.ma0_c00196{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);}
.m3f_c00196{transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);}
.m87_c00196{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);}
.m10_c00196{transform:matrix(0.275980,-0.004416,0.003999,0.249968,0,0);-ms-transform:matrix(0.275980,-0.004416,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275980,-0.004416,0.003999,0.249968,0,0);}
.m67_c00196{transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);}
.m7e_c00196{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.ma9_c00196{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m40_c00196{transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);}
.m77_c00196{transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284835,0.000000,0.000000,0.250000,0,0);}
.m96_c00196{transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00196{transform:matrix(0.288203,-0.004611,0.003999,0.249968,0,0);-ms-transform:matrix(0.288203,-0.004611,0.003999,0.249968,0,0);-webkit-transform:matrix(0.288203,-0.004611,0.003999,0.249968,0,0);}
.m76_c00196{transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288645,0.000000,0.000000,0.250000,0,0);}
.m1d_c00196{transform:matrix(0.293697,-0.004699,0.003999,0.249968,0,0);-ms-transform:matrix(0.293697,-0.004699,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293697,-0.004699,0.003999,0.249968,0,0);}
.m2a_c00196{transform:matrix(0.300437,-0.004807,0.003999,0.249968,0,0);-ms-transform:matrix(0.300437,-0.004807,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300437,-0.004807,0.003999,0.249968,0,0);}
.mb0_c00196{transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.305576,-0.004889,0.003999,0.249968,0,0);-ms-transform:matrix(0.305576,-0.004889,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305576,-0.004889,0.003999,0.249968,0,0);}
.m0_c00196{transform:matrix(0.309205,-0.004947,0.003999,0.249968,0,0);-ms-transform:matrix(0.309205,-0.004947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.309205,-0.004947,0.003999,0.249968,0,0);}
.m41_c00196{transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311655,0.000000,0.000000,0.250000,0,0);}
.ma8_c00196{transform:matrix(0.312190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312190,0.000000,0.000000,0.250000,0,0);}
.m7c_c00196{transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312505,0.000000,0.000000,0.250000,0,0);}
.ma4_c00196{transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312665,0.000000,0.000000,0.250000,0,0);}
.m48_c00196{transform:matrix(0.314860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314860,0.000000,0.000000,0.250000,0,0);}
.m42_c00196{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);}
.m43_c00196{transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327070,0.000000,0.000000,0.250000,0,0);}
.mb5_c00196{transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331845,0.000000,0.000000,0.250000,0,0);}
.m89_c00196{transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336280,0.000000,0.000000,0.250000,0,0);}
.m88_c00196{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);}
.m31_c00196{transform:matrix(0.346793,-0.003468,0.002500,0.249988,0,0);-ms-transform:matrix(0.346793,-0.003468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.346793,-0.003468,0.002500,0.249988,0,0);}
.m7f_c00196{transform:matrix(0.349775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00196{transform:matrix(0.350045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350045,0.000000,0.000000,0.250000,0,0);}
.m5c_c00196{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);}
.m74_c00196{transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);}
.m29_c00196{transform:matrix(0.355684,-0.005691,0.003999,0.249968,0,0);-ms-transform:matrix(0.355684,-0.005691,0.003999,0.249968,0,0);-webkit-transform:matrix(0.355684,-0.005691,0.003999,0.249968,0,0);}
.m78_c00196{transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);}
.m8f_c00196{transform:matrix(0.374370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374370,0.000000,0.000000,0.250000,0,0);}
.mad_c00196{transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376315,0.000000,0.000000,0.250000,0,0);}
.m46_c00196{transform:matrix(0.378825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378825,0.000000,0.000000,0.250000,0,0);}
.m45_c00196{transform:matrix(0.390595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390595,0.000000,0.000000,0.250000,0,0);}
.m47_c00196{transform:matrix(0.393835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393835,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.423941,-0.006783,0.003999,0.249968,0,0);-ms-transform:matrix(0.423941,-0.006783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.423941,-0.006783,0.003999,0.249968,0,0);}
.m4a_c00196{transform:matrix(0.427635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427635,0.000000,0.000000,0.250000,0,0);}
.mb4_c00196{transform:matrix(0.435710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435710,0.000000,0.000000,0.250000,0,0);}
.m4e_c00196{transform:matrix(0.445495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445495,0.000000,0.000000,0.250000,0,0);}
.m4f_c00196{transform:matrix(0.452050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452050,0.000000,0.000000,0.250000,0,0);}
.m27_c00196{transform:matrix(0.457091,-0.007313,0.003999,0.249968,0,0);-ms-transform:matrix(0.457091,-0.007313,0.003999,0.249968,0,0);-webkit-transform:matrix(0.457091,-0.007313,0.003999,0.249968,0,0);}
.m4b_c00196{transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);}
.ma2_c00196{transform:matrix(0.488935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488935,0.000000,0.000000,0.250000,0,0);}
.mb6_c00196{transform:matrix(0.504705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504705,0.000000,0.000000,0.250000,0,0);}
.maa_c00196{transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00196{transform:matrix(0.559555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559555,0.000000,0.000000,0.250000,0,0);}
.m60_c00196{transform:matrix(0.645355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645355,0.000000,0.000000,0.250000,0,0);}
.m61_c00196{transform:matrix(0.655265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655265,0.000000,0.000000,0.250000,0,0);}
.m9b_c00196{transform:matrix(0.689010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689010,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.802652,-0.012842,0.003999,0.249968,0,0);-ms-transform:matrix(0.802652,-0.012842,0.003999,0.249968,0,0);-webkit-transform:matrix(0.802652,-0.012842,0.003999,0.249968,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;}
.fsf_c00196{font-size:55.650000px;}
.fs10_c00196{font-size:59.850000px;}
.fse_c00196{font-size:60.900000px;}
.fs3_c00196{font-size:61.957929px;}
.fs4_c00196{font-size:64.053202px;}
.fsa_c00196{font-size:68.250000px;}
.fs2_c00196{font-size:68.258735px;}
.fsb_c00196{font-size:69.300000px;}
.fsc_c00196{font-size:70.350000px;}
.fs1_c00196{font-size:71.409139px;}
.fs9_c00196{font-size:72.450000px;}
.fs5_c00196{font-size:72.453622px;}
.fs0_c00196{font-size:72.459273px;}
.fsd_c00196{font-size:76.650000px;}
.fs6_c00196{font-size:108.150000px;}
.fs7_c00196{font-size:124.950000px;}
.fs8_c00196{font-size:127.050000px;}
.y0_c00196{bottom:0.000000px;}
.y50_c00196{bottom:143.259000px;}
.y4f_c00196{bottom:162.763500px;}
.y4e_c00196{bottom:181.624500px;}
.y4d_c00196{bottom:199.419000px;}
.y4c_c00196{bottom:217.806000px;}
.y4b_c00196{bottom:235.749000px;}
.y4a_c00196{bottom:289.857000px;}
.y49_c00196{bottom:326.334000px;}
.y48_c00196{bottom:349.444500px;}
.y47_c00196{bottom:371.839500px;}
.y46_c00196{bottom:394.036500px;}
.y45_c00196{bottom:417.040500px;}
.y44_c00196{bottom:439.606500px;}
.y43_c00196{bottom:462.307500px;}
.y42_c00196{bottom:486.010500px;}
.y41_c00196{bottom:526.671000px;}
.y40_c00196{bottom:551.274000px;}
.y3f_c00196{bottom:592.509000px;}
.y3b_c00196{bottom:664.070910px;}
.y3d_c00196{bottom:664.071180px;}
.y3e_c00196{bottom:664.071465px;}
.y3c_c00196{bottom:664.071495px;}
.y33_c00196{bottom:685.084500px;}
.y34_c00196{bottom:685.443345px;}
.y35_c00196{bottom:685.953300px;}
.y36_c00196{bottom:686.396670px;}
.y37_c00196{bottom:686.706945px;}
.y38_c00196{bottom:687.348480px;}
.y39_c00196{bottom:687.497925px;}
.y3a_c00196{bottom:688.351275px;}
.y29_c00196{bottom:707.390616px;}
.y2a_c00196{bottom:707.637228px;}
.y2b_c00196{bottom:708.093660px;}
.y2c_c00196{bottom:708.387756px;}
.y2d_c00196{bottom:709.217388px;}
.y2e_c00196{bottom:709.557768px;}
.y2f_c00196{bottom:710.029380px;}
.y30_c00196{bottom:710.205960px;}
.y31_c00196{bottom:710.481900px;}
.y32_c00196{bottom:710.750124px;}
.y21_c00196{bottom:730.343988px;}
.y22_c00196{bottom:731.108436px;}
.y23_c00196{bottom:731.564772px;}
.y24_c00196{bottom:732.021732px;}
.y25_c00196{bottom:732.403848px;}
.y26_c00196{bottom:733.233048px;}
.y27_c00196{bottom:733.557120px;}
.y28_c00196{bottom:733.914036px;}
.y1a_c00196{bottom:752.755944px;}
.y1b_c00196{bottom:753.675228px;}
.y1c_c00196{bottom:754.382904px;}
.y1d_c00196{bottom:755.373744px;}
.y1e_c00196{bottom:756.204588px;}
.y1f_c00196{bottom:756.515124px;}
.y20_c00196{bottom:756.803880px;}
.y11_c00196{bottom:775.436892px;}
.y12_c00196{bottom:775.988268px;}
.y13_c00196{bottom:776.321604px;}
.y14_c00196{bottom:777.282384px;}
.y15_c00196{bottom:777.936912px;}
.y16_c00196{bottom:778.201788px;}
.y17_c00196{bottom:778.733736px;}
.y18_c00196{bottom:779.022252px;}
.y19_c00196{bottom:779.483484px;}
.y9_c00196{bottom:799.266588px;}
.ya_c00196{bottom:799.967124px;}
.yb_c00196{bottom:800.133180px;}
.yc_c00196{bottom:800.389128px;}
.yd_c00196{bottom:800.709804px;}
.ye_c00196{bottom:801.296268px;}
.yf_c00196{bottom:801.892632px;}
.y10_c00196{bottom:802.173840px;}
.y1_c00196{bottom:820.231500px;}
.y2_c00196{bottom:820.632660px;}
.y3_c00196{bottom:821.037420px;}
.y4_c00196{bottom:822.392748px;}
.y5_c00196{bottom:823.044996px;}
.y6_c00196{bottom:823.092228px;}
.y7_c00196{bottom:823.653756px;}
.y8_c00196{bottom:824.331420px;}
.h11_c00196{height:55.650000px;}
.h12_c00196{height:59.850000px;}
.h10_c00196{height:60.900000px;}
.h5_c00196{height:61.957929px;}
.h6_c00196{height:64.053202px;}
.hc_c00196{height:68.250000px;}
.h4_c00196{height:68.258735px;}
.hd_c00196{height:69.300000px;}
.he_c00196{height:70.350000px;}
.h3_c00196{height:71.409139px;}
.hb_c00196{height:72.450000px;}
.h7_c00196{height:72.453622px;}
.h2_c00196{height:72.459273px;}
.hf_c00196{height:76.650000px;}
.h8_c00196{height:108.150000px;}
.h9_c00196{height:124.950000px;}
.ha_c00196{height:127.050000px;}
.h1_c00196{height:1005.000000px;}
.h0_c00196{height:1005.150000px;}
.w0_c00196{width:735.750000px;}
.x0_c00196{left:0.000000px;}
.x61_c00196{left:90.720000px;}
.x6b_c00196{left:106.380000px;}
.x58_c00196{left:116.100000px;}
.x5d_c00196{left:121.500000px;}
.x7a_c00196{left:127.980000px;}
.x40_c00196{left:130.680000px;}
.x24_c00196{left:134.608392px;}
.x1_c00196{left:136.953000px;}
.x9_c00196{left:138.169164px;}
.x11_c00196{left:139.257120px;}
.x36_c00196{left:141.210000px;}
.x4f_c00196{left:142.290000px;}
.x25_c00196{left:155.179212px;}
.x6c_c00196{left:157.950000px;}
.x2_c00196{left:162.025500px;}
.x7b_c00196{left:167.670000px;}
.x46_c00196{left:169.290000px;}
.x49_c00196{left:170.640000px;}
.x2c_c00196{left:172.687500px;}
.x6d_c00196{left:174.690000px;}
.x12_c00196{left:178.594368px;}
.x50_c00196{left:180.360000px;}
.x3_c00196{left:187.323000px;}
.x41_c00196{left:188.730000px;}
.x37_c00196{left:190.350000px;}
.x26_c00196{left:193.271160px;}
.x4a_c00196{left:195.480000px;}
.x51_c00196{left:197.910000px;}
.x13_c00196{left:202.428636px;}
.x19_c00196{left:203.767728px;}
.xa_c00196{left:208.209384px;}
.x62_c00196{left:209.520000px;}
.x5f_c00196{left:211.140000px;}
.x59_c00196{left:214.920000px;}
.x27_c00196{left:217.841244px;}
.x52_c00196{left:221.130000px;}
.x60_c00196{left:222.210000px;}
.x2d_c00196{left:223.683000px;}
.xb_c00196{left:224.776968px;}
.x7c_c00196{left:236.790000px;}
.x4b_c00196{left:238.140000px;}
.x1f_c00196{left:240.477300px;}
.x42_c00196{left:244.080000px;}
.x6e_c00196{left:246.780000px;}
.xc_c00196{left:250.432440px;}
.x34_c00196{left:252.180000px;}
.x1a_c00196{left:254.280336px;}
.x5e_c00196{left:255.960000px;}
.x5a_c00196{left:259.200000px;}
.x53_c00196{left:260.820000px;}
.x63_c00196{left:266.490000px;}
.x2e_c00196{left:268.020000px;}
.x14_c00196{left:271.010820px;}
.x4_c00196{left:272.031000px;}
.x39_c00196{left:274.590000px;}
.x47_c00196{left:277.560000px;}
.x20_c00196{left:278.602248px;}
.xd_c00196{left:282.571536px;}
.x28_c00196{left:286.947660px;}
.x7d_c00196{left:289.170000px;}
.x6f_c00196{left:290.250000px;}
.x5b_c00196{left:295.110000px;}
.x2f_c00196{left:299.047500px;}
.x4c_c00196{left:307.260000px;}
.x54_c00196{left:309.420000px;}
.x21_c00196{left:310.455288px;}
.x5_c00196{left:312.796500px;}
.x6_c00196{left:315.748500px;}
.x15_c00196{left:317.732808px;}
.x33_c00196{left:318.880815px;}
.x4d_c00196{left:322.920000px;}
.x1b_c00196{left:325.022592px;}
.x3a_c00196{left:327.780000px;}
.x55_c00196{left:329.670000px;}
.x48_c00196{left:335.340000px;}
.x16_c00196{left:336.631908px;}
.x64_c00196{left:339.660000px;}
.xe_c00196{left:341.168652px;}
.x43_c00196{left:342.360000px;}
.x3d_c00196{left:346.410000px;}
.x79_c00196{left:347.490000px;}
.x7_c00196{left:350.844000px;}
.x29_c00196{left:354.576480px;}
.x4e_c00196{left:355.860000px;}
.x5c_c00196{left:360.720000px;}
.x30_c00196{left:363.201000px;}
.x35_c00196{left:366.660000px;}
.x56_c00196{left:368.010000px;}
.x2a_c00196{left:369.269916px;}
.x38_c00196{left:373.140000px;}
.x17_c00196{left:374.661132px;}
.x70_c00196{left:376.110000px;}
.x31_c00196{left:378.145500px;}
.x22_c00196{left:379.534704px;}
.x1c_c00196{left:384.358488px;}
.x3b_c00196{left:389.340000px;}
.x8_c00196{left:393.198000px;}
.x18_c00196{left:395.225280px;}
.xf_c00196{left:400.853388px;}
.x3e_c00196{left:402.030000px;}
.x65_c00196{left:404.190000px;}
.x1d_c00196{left:406.580208px;}
.x71_c00196{left:408.780000px;}
.x2b_c00196{left:414.626820px;}
.x1e_c00196{left:427.159356px;}
.x10_c00196{left:428.931576px;}
.x75_c00196{left:432.540000px;}
.x23_c00196{left:436.256328px;}
.x66_c00196{left:440.910000px;}
.x44_c00196{left:447.120000px;}
.x57_c00196{left:457.920000px;}
.x32_c00196{left:463.480500px;}
.x72_c00196{left:464.940000px;}
.x67_c00196{left:468.450000px;}
.x76_c00196{left:472.230000px;}
.x3f_c00196{left:485.190000px;}
.x73_c00196{left:498.420000px;}
.x68_c00196{left:503.280000px;}
.x69_c00196{left:507.330000px;}
.x77_c00196{left:519.210000px;}
.x45_c00196{left:521.640000px;}
.x74_c00196{left:525.960000px;}
.x6a_c00196{left:545.670000px;}
.x3c_c00196{left:547.290000px;}
.x78_c00196{left:555.660000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.fsf_c00196{font-size:49.466667pt;}
.fs10_c00196{font-size:53.200000pt;}
.fse_c00196{font-size:54.133333pt;}
.fs3_c00196{font-size:55.073715pt;}
.fs4_c00196{font-size:56.936180pt;}
.fsa_c00196{font-size:60.666667pt;}
.fs2_c00196{font-size:60.674432pt;}
.fsb_c00196{font-size:61.600000pt;}
.fsc_c00196{font-size:62.533333pt;}
.fs1_c00196{font-size:63.474790pt;}
.fs9_c00196{font-size:64.400000pt;}
.fs5_c00196{font-size:64.403220pt;}
.fs0_c00196{font-size:64.408243pt;}
.fsd_c00196{font-size:68.133333pt;}
.fs6_c00196{font-size:96.133333pt;}
.fs7_c00196{font-size:111.066667pt;}
.fs8_c00196{font-size:112.933333pt;}
.y0_c00196{bottom:0.000000pt;}
.y50_c00196{bottom:127.341333pt;}
.y4f_c00196{bottom:144.678667pt;}
.y4e_c00196{bottom:161.444000pt;}
.y4d_c00196{bottom:177.261333pt;}
.y4c_c00196{bottom:193.605333pt;}
.y4b_c00196{bottom:209.554667pt;}
.y4a_c00196{bottom:257.650667pt;}
.y49_c00196{bottom:290.074667pt;}
.y48_c00196{bottom:310.617333pt;}
.y47_c00196{bottom:330.524000pt;}
.y46_c00196{bottom:350.254667pt;}
.y45_c00196{bottom:370.702667pt;}
.y44_c00196{bottom:390.761333pt;}
.y43_c00196{bottom:410.940000pt;}
.y42_c00196{bottom:432.009333pt;}
.y41_c00196{bottom:468.152000pt;}
.y40_c00196{bottom:490.021333pt;}
.y3f_c00196{bottom:526.674667pt;}
.y3b_c00196{bottom:590.285253pt;}
.y3d_c00196{bottom:590.285493pt;}
.y3e_c00196{bottom:590.285747pt;}
.y3c_c00196{bottom:590.285773pt;}
.y33_c00196{bottom:608.964000pt;}
.y34_c00196{bottom:609.282973pt;}
.y35_c00196{bottom:609.736267pt;}
.y36_c00196{bottom:610.130373pt;}
.y37_c00196{bottom:610.406173pt;}
.y38_c00196{bottom:610.976427pt;}
.y39_c00196{bottom:611.109267pt;}
.y3a_c00196{bottom:611.867800pt;}
.y29_c00196{bottom:628.791659pt;}
.y2a_c00196{bottom:629.010869pt;}
.y2b_c00196{bottom:629.416587pt;}
.y2c_c00196{bottom:629.678005pt;}
.y2d_c00196{bottom:630.415456pt;}
.y2e_c00196{bottom:630.718016pt;}
.y2f_c00196{bottom:631.137227pt;}
.y30_c00196{bottom:631.294187pt;}
.y31_c00196{bottom:631.539467pt;}
.y32_c00196{bottom:631.777888pt;}
.y21_c00196{bottom:649.194656pt;}
.y22_c00196{bottom:649.874165pt;}
.y23_c00196{bottom:650.279797pt;}
.y24_c00196{bottom:650.685984pt;}
.y25_c00196{bottom:651.025643pt;}
.y26_c00196{bottom:651.762709pt;}
.y27_c00196{bottom:652.050773pt;}
.y28_c00196{bottom:652.368032pt;}
.y1a_c00196{bottom:669.116395pt;}
.y1b_c00196{bottom:669.933536pt;}
.y1c_c00196{bottom:670.562581pt;}
.y1d_c00196{bottom:671.443328pt;}
.y1e_c00196{bottom:672.181856pt;}
.y1f_c00196{bottom:672.457888pt;}
.y20_c00196{bottom:672.714560pt;}
.y11_c00196{bottom:689.277237pt;}
.y12_c00196{bottom:689.767349pt;}
.y13_c00196{bottom:690.063648pt;}
.y14_c00196{bottom:690.917675pt;}
.y15_c00196{bottom:691.499477pt;}
.y16_c00196{bottom:691.734923pt;}
.y17_c00196{bottom:692.207765pt;}
.y18_c00196{bottom:692.464224pt;}
.y19_c00196{bottom:692.874208pt;}
.y9_c00196{bottom:710.459189pt;}
.ya_c00196{bottom:711.081888pt;}
.yb_c00196{bottom:711.229493pt;}
.yc_c00196{bottom:711.457003pt;}
.yd_c00196{bottom:711.742048pt;}
.ye_c00196{bottom:712.263349pt;}
.yf_c00196{bottom:712.793451pt;}
.y10_c00196{bottom:713.043413pt;}
.y1_c00196{bottom:729.094667pt;}
.y2_c00196{bottom:729.451253pt;}
.y3_c00196{bottom:729.811040pt;}
.y4_c00196{bottom:731.015776pt;}
.y5_c00196{bottom:731.595552pt;}
.y6_c00196{bottom:731.637536pt;}
.y7_c00196{bottom:732.136672pt;}
.y8_c00196{bottom:732.739040pt;}
.h11_c00196{height:49.466667pt;}
.h12_c00196{height:53.200000pt;}
.h10_c00196{height:54.133333pt;}
.h5_c00196{height:55.073715pt;}
.h6_c00196{height:56.936180pt;}
.hc_c00196{height:60.666667pt;}
.h4_c00196{height:60.674432pt;}
.hd_c00196{height:61.600000pt;}
.he_c00196{height:62.533333pt;}
.h3_c00196{height:63.474790pt;}
.hb_c00196{height:64.400000pt;}
.h7_c00196{height:64.403220pt;}
.h2_c00196{height:64.408243pt;}
.hf_c00196{height:68.133333pt;}
.h8_c00196{height:96.133333pt;}
.h9_c00196{height:111.066667pt;}
.ha_c00196{height:112.933333pt;}
.h1_c00196{height:893.333333pt;}
.h0_c00196{height:893.466667pt;}
.w0_c00196{width:654.000000pt;}
.x0_c00196{left:0.000000pt;}
.x61_c00196{left:80.640000pt;}
.x6b_c00196{left:94.560000pt;}
.x58_c00196{left:103.200000pt;}
.x5d_c00196{left:108.000000pt;}
.x7a_c00196{left:113.760000pt;}
.x40_c00196{left:116.160000pt;}
.x24_c00196{left:119.651904pt;}
.x1_c00196{left:121.736000pt;}
.x9_c00196{left:122.817035pt;}
.x11_c00196{left:123.784107pt;}
.x36_c00196{left:125.520000pt;}
.x4f_c00196{left:126.480000pt;}
.x25_c00196{left:137.937077pt;}
.x6c_c00196{left:140.400000pt;}
.x2_c00196{left:144.022667pt;}
.x7b_c00196{left:149.040000pt;}
.x46_c00196{left:150.480000pt;}
.x49_c00196{left:151.680000pt;}
.x2c_c00196{left:153.500000pt;}
.x6d_c00196{left:155.280000pt;}
.x12_c00196{left:158.750549pt;}
.x50_c00196{left:160.320000pt;}
.x3_c00196{left:166.509333pt;}
.x41_c00196{left:167.760000pt;}
.x37_c00196{left:169.200000pt;}
.x26_c00196{left:171.796587pt;}
.x4a_c00196{left:173.760000pt;}
.x51_c00196{left:175.920000pt;}
.x13_c00196{left:179.936565pt;}
.x19_c00196{left:181.126869pt;}
.xa_c00196{left:185.075008pt;}
.x62_c00196{left:186.240000pt;}
.x5f_c00196{left:187.680000pt;}
.x59_c00196{left:191.040000pt;}
.x27_c00196{left:193.636661pt;}
.x52_c00196{left:196.560000pt;}
.x60_c00196{left:197.520000pt;}
.x2d_c00196{left:198.829333pt;}
.xb_c00196{left:199.801749pt;}
.x7c_c00196{left:210.480000pt;}
.x4b_c00196{left:211.680000pt;}
.x1f_c00196{left:213.757600pt;}
.x42_c00196{left:216.960000pt;}
.x6e_c00196{left:219.360000pt;}
.xc_c00196{left:222.606613pt;}
.x34_c00196{left:224.160000pt;}
.x1a_c00196{left:226.026965pt;}
.x5e_c00196{left:227.520000pt;}
.x5a_c00196{left:230.400000pt;}
.x53_c00196{left:231.840000pt;}
.x63_c00196{left:236.880000pt;}
.x2e_c00196{left:238.240000pt;}
.x14_c00196{left:240.898507pt;}
.x4_c00196{left:241.805333pt;}
.x39_c00196{left:244.080000pt;}
.x47_c00196{left:246.720000pt;}
.x20_c00196{left:247.646443pt;}
.xd_c00196{left:251.174699pt;}
.x28_c00196{left:255.064587pt;}
.x7d_c00196{left:257.040000pt;}
.x6f_c00196{left:258.000000pt;}
.x5b_c00196{left:262.320000pt;}
.x2f_c00196{left:265.820000pt;}
.x4c_c00196{left:273.120000pt;}
.x54_c00196{left:275.040000pt;}
.x21_c00196{left:275.960256pt;}
.x5_c00196{left:278.041333pt;}
.x6_c00196{left:280.665333pt;}
.x15_c00196{left:282.429163pt;}
.x33_c00196{left:283.449613pt;}
.x4d_c00196{left:287.040000pt;}
.x1b_c00196{left:288.908971pt;}
.x3a_c00196{left:291.360000pt;}
.x55_c00196{left:293.040000pt;}
.x48_c00196{left:298.080000pt;}
.x16_c00196{left:299.228363pt;}
.x64_c00196{left:301.920000pt;}
.xe_c00196{left:303.261024pt;}
.x43_c00196{left:304.320000pt;}
.x3d_c00196{left:307.920000pt;}
.x79_c00196{left:308.880000pt;}
.x7_c00196{left:311.861333pt;}
.x29_c00196{left:315.179093pt;}
.x4e_c00196{left:316.320000pt;}
.x5c_c00196{left:320.640000pt;}
.x30_c00196{left:322.845333pt;}
.x35_c00196{left:325.920000pt;}
.x56_c00196{left:327.120000pt;}
.x2a_c00196{left:328.239925pt;}
.x38_c00196{left:331.680000pt;}
.x17_c00196{left:333.032117pt;}
.x70_c00196{left:334.320000pt;}
.x31_c00196{left:336.129333pt;}
.x22_c00196{left:337.364181pt;}
.x1c_c00196{left:341.651989pt;}
.x3b_c00196{left:346.080000pt;}
.x8_c00196{left:349.509333pt;}
.x18_c00196{left:351.311360pt;}
.xf_c00196{left:356.314123pt;}
.x3e_c00196{left:357.360000pt;}
.x65_c00196{left:359.280000pt;}
.x1d_c00196{left:361.404629pt;}
.x71_c00196{left:363.360000pt;}
.x2b_c00196{left:368.557173pt;}
.x1e_c00196{left:379.697205pt;}
.x10_c00196{left:381.272512pt;}
.x75_c00196{left:384.480000pt;}
.x23_c00196{left:387.783403pt;}
.x66_c00196{left:391.920000pt;}
.x44_c00196{left:397.440000pt;}
.x57_c00196{left:407.040000pt;}
.x32_c00196{left:411.982667pt;}
.x72_c00196{left:413.280000pt;}
.x67_c00196{left:416.400000pt;}
.x76_c00196{left:419.760000pt;}
.x3f_c00196{left:431.280000pt;}
.x73_c00196{left:443.040000pt;}
.x68_c00196{left:447.360000pt;}
.x69_c00196{left:450.960000pt;}
.x77_c00196{left:461.520000pt;}
.x45_c00196{left:463.680000pt;}
.x74_c00196{left:467.520000pt;}
.x6a_c00196{left:485.040000pt;}
.x3c_c00196{left:486.480000pt;}
.x78_c00196{left:493.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_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_ef4e99a7aa2876b3106553d3.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;}
.m4a_c00197{transform:matrix(0.007234,-0.000101,0.003500,0.249976,0,0);-ms-transform:matrix(0.007234,-0.000101,0.003500,0.249976,0,0);-webkit-transform:matrix(0.007234,-0.000101,0.003500,0.249976,0,0);}
.m90_c00197{transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);}
.m98_c00197{transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.011913,-0.000191,0.003999,0.249968,0,0);-ms-transform:matrix(0.011913,-0.000191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.011913,-0.000191,0.003999,0.249968,0,0);}
.m1f_c00197{transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);-ms-transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);-webkit-transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);}
.mab_c00197{transform:matrix(0.014424,-0.000188,0.003250,0.249979,0,0);-ms-transform:matrix(0.014424,-0.000188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.014424,-0.000188,0.003250,0.249979,0,0);}
.mac_c00197{transform:matrix(0.014844,-0.000193,0.003250,0.249979,0,0);-ms-transform:matrix(0.014844,-0.000193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.014844,-0.000193,0.003250,0.249979,0,0);}
.m40_c00197{transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);-ms-transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);}
.m65_c00197{transform:matrix(0.021302,-0.000383,0.004499,0.249960,0,0);-ms-transform:matrix(0.021302,-0.000383,0.004499,0.249960,0,0);-webkit-transform:matrix(0.021302,-0.000383,0.004499,0.249960,0,0);}
.m24_c00197{transform:matrix(0.078586,-0.002122,0.006748,0.249909,0,0);-ms-transform:matrix(0.078586,-0.002122,0.006748,0.249909,0,0);-webkit-transform:matrix(0.078586,-0.002122,0.006748,0.249909,0,0);}
.m4b_c00197{transform:matrix(0.086317,-0.001208,0.003500,0.249976,0,0);-ms-transform:matrix(0.086317,-0.001208,0.003500,0.249976,0,0);-webkit-transform:matrix(0.086317,-0.001208,0.003500,0.249976,0,0);}
.mcd_c00197{transform:matrix(0.088385,-0.000972,0.002750,0.249985,0,0);-ms-transform:matrix(0.088385,-0.000972,0.002750,0.249985,0,0);-webkit-transform:matrix(0.088385,-0.000972,0.002750,0.249985,0,0);}
.m58_c00197{transform:matrix(0.100066,-0.001701,0.004249,0.249964,0,0);-ms-transform:matrix(0.100066,-0.001701,0.004249,0.249964,0,0);-webkit-transform:matrix(0.100066,-0.001701,0.004249,0.249964,0,0);}
.md9_c00197{transform:matrix(0.117383,-0.001291,0.002750,0.249985,0,0);-ms-transform:matrix(0.117383,-0.001291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.117383,-0.001291,0.002750,0.249985,0,0);}
.me2_c00197{transform:matrix(0.124277,-0.001367,0.002750,0.249985,0,0);-ms-transform:matrix(0.124277,-0.001367,0.002750,0.249985,0,0);-webkit-transform:matrix(0.124277,-0.001367,0.002750,0.249985,0,0);}
.mba_c00197{transform:matrix(0.131111,-0.001573,0.003000,0.249982,0,0);-ms-transform:matrix(0.131111,-0.001573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.131111,-0.001573,0.003000,0.249982,0,0);}
.m93_c00197{transform:matrix(0.133060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133060,0.000000,0.000000,0.250000,0,0);}
.m80_c00197{transform:matrix(0.133623,-0.002405,0.004499,0.249960,0,0);-ms-transform:matrix(0.133623,-0.002405,0.004499,0.249960,0,0);-webkit-transform:matrix(0.133623,-0.002405,0.004499,0.249960,0,0);}
.m1a_c00197{transform:matrix(0.137860,-0.003722,0.006748,0.249909,0,0);-ms-transform:matrix(0.137860,-0.003722,0.006748,0.249909,0,0);-webkit-transform:matrix(0.137860,-0.003722,0.006748,0.249909,0,0);}
.mdf_c00197{transform:matrix(0.147221,-0.001619,0.002750,0.249985,0,0);-ms-transform:matrix(0.147221,-0.001619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147221,-0.001619,0.002750,0.249985,0,0);}
.m12_c00197{transform:matrix(0.147383,-0.002800,0.004749,0.249955,0,0);-ms-transform:matrix(0.147383,-0.002800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.147383,-0.002800,0.004749,0.249955,0,0);}
.m5_c00197{transform:matrix(0.149971,-0.002699,0.004499,0.249960,0,0);-ms-transform:matrix(0.149971,-0.002699,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149971,-0.002699,0.004499,0.249960,0,0);}
.m3a_c00197{transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);-ms-transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);}
.m10_c00197{transform:matrix(0.154687,-0.002939,0.004749,0.249955,0,0);-ms-transform:matrix(0.154687,-0.002939,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154687,-0.002939,0.004749,0.249955,0,0);}
.m11_c00197{transform:matrix(0.154732,-0.002940,0.004749,0.249955,0,0);-ms-transform:matrix(0.154732,-0.002940,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154732,-0.002940,0.004749,0.249955,0,0);}
.m23_c00197{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);}
.m5a_c00197{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);}
.m2d_c00197{transform:matrix(0.169108,-0.004566,0.006748,0.249909,0,0);-ms-transform:matrix(0.169108,-0.004566,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169108,-0.004566,0.006748,0.249909,0,0);}
.m87_c00197{transform:matrix(0.171102,-0.003080,0.004499,0.249960,0,0);-ms-transform:matrix(0.171102,-0.003080,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171102,-0.003080,0.004499,0.249960,0,0);}
.m0_c00197{transform:matrix(0.171630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171630,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{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);}
.maf_c00197{transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);-ms-transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);}
.m67_c00197{transform:matrix(0.175717,-0.003163,0.004499,0.249960,0,0);-ms-transform:matrix(0.175717,-0.003163,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175717,-0.003163,0.004499,0.249960,0,0);}
.m38_c00197{transform:matrix(0.176579,-0.003002,0.004249,0.249964,0,0);-ms-transform:matrix(0.176579,-0.003002,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176579,-0.003002,0.004249,0.249964,0,0);}
.m9c_c00197{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);}
.m57_c00197{transform:matrix(0.177059,-0.003010,0.004249,0.249964,0,0);-ms-transform:matrix(0.177059,-0.003010,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177059,-0.003010,0.004249,0.249964,0,0);}
.md8_c00197{transform:matrix(0.179819,-0.001978,0.002750,0.249985,0,0);-ms-transform:matrix(0.179819,-0.001978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179819,-0.001978,0.002750,0.249985,0,0);}
.m7e_c00197{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);}
.m81_c00197{transform:matrix(0.180861,-0.003255,0.004499,0.249960,0,0);-ms-transform:matrix(0.180861,-0.003255,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180861,-0.003255,0.004499,0.249960,0,0);}
.m68_c00197{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);}
.mb_c00197{transform:matrix(0.185242,-0.003520,0.004749,0.249955,0,0);-ms-transform:matrix(0.185242,-0.003520,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185242,-0.003520,0.004749,0.249955,0,0);}
.mcb_c00197{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);}
.mdb_c00197{transform:matrix(0.186809,-0.002055,0.002750,0.249985,0,0);-ms-transform:matrix(0.186809,-0.002055,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186809,-0.002055,0.002750,0.249985,0,0);}
.m9_c00197{transform:matrix(0.186851,-0.003550,0.004749,0.249955,0,0);-ms-transform:matrix(0.186851,-0.003550,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186851,-0.003550,0.004749,0.249955,0,0);}
.m42_c00197{transform:matrix(0.188018,-0.003196,0.004249,0.249964,0,0);-ms-transform:matrix(0.188018,-0.003196,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188018,-0.003196,0.004249,0.249964,0,0);}
.m3b_c00197{transform:matrix(0.188103,-0.003198,0.004249,0.249964,0,0);-ms-transform:matrix(0.188103,-0.003198,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188103,-0.003198,0.004249,0.249964,0,0);}
.m3d_c00197{transform:matrix(0.188773,-0.003209,0.004249,0.249964,0,0);-ms-transform:matrix(0.188773,-0.003209,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188773,-0.003209,0.004249,0.249964,0,0);}
.m28_c00197{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);}
.m88_c00197{transform:matrix(0.191619,-0.003449,0.004499,0.249960,0,0);-ms-transform:matrix(0.191619,-0.003449,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191619,-0.003449,0.004499,0.249960,0,0);}
.m92_c00197{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);}
.mb3_c00197{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);}
.m34_c00197{transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);}
.m82_c00197{transform:matrix(0.192509,-0.003465,0.004499,0.249960,0,0);-ms-transform:matrix(0.192509,-0.003465,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192509,-0.003465,0.004499,0.249960,0,0);}
.ma8_c00197{transform:matrix(0.194049,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194049,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194049,-0.002523,0.003250,0.249979,0,0);}
.mf_c00197{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);}
.mad_c00197{transform:matrix(0.194719,-0.002531,0.003250,0.249979,0,0);-ms-transform:matrix(0.194719,-0.002531,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194719,-0.002531,0.003250,0.249979,0,0);}
.m64_c00197{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);}
.m3c_c00197{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);}
.mc3_c00197{transform:matrix(0.195023,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.195023,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195023,-0.002145,0.002750,0.249985,0,0);}
.m43_c00197{transform:matrix(0.195077,-0.003316,0.004249,0.249964,0,0);-ms-transform:matrix(0.195077,-0.003316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195077,-0.003316,0.004249,0.249964,0,0);}
.m78_c00197{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);}
.m7d_c00197{transform:matrix(0.196288,-0.003533,0.004499,0.249960,0,0);-ms-transform:matrix(0.196288,-0.003533,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196288,-0.003533,0.004499,0.249960,0,0);}
.m47_c00197{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);}
.m39_c00197{transform:matrix(0.196847,-0.003346,0.004249,0.249964,0,0);-ms-transform:matrix(0.196847,-0.003346,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196847,-0.003346,0.004249,0.249964,0,0);}
.m69_c00197{transform:matrix(0.197863,-0.003562,0.004499,0.249960,0,0);-ms-transform:matrix(0.197863,-0.003562,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197863,-0.003562,0.004499,0.249960,0,0);}
.m36_c00197{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);}
.m7b_c00197{transform:matrix(0.199193,-0.003585,0.004499,0.249960,0,0);-ms-transform:matrix(0.199193,-0.003585,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199193,-0.003585,0.004499,0.249960,0,0);}
.mc_c00197{transform:matrix(0.199724,-0.003795,0.004749,0.249955,0,0);-ms-transform:matrix(0.199724,-0.003795,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199724,-0.003795,0.004749,0.249955,0,0);}
.md7_c00197{transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);}
.m71_c00197{transform:matrix(0.200389,-0.003206,0.003999,0.249968,0,0);-ms-transform:matrix(0.200389,-0.003206,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200389,-0.003206,0.003999,0.249968,0,0);}
.m4d_c00197{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);}
.m49_c00197{transform:matrix(0.201316,-0.003422,0.004249,0.249964,0,0);-ms-transform:matrix(0.201316,-0.003422,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201316,-0.003422,0.004249,0.249964,0,0);}
.m79_c00197{transform:matrix(0.201742,-0.003631,0.004499,0.249960,0,0);-ms-transform:matrix(0.201742,-0.003631,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201742,-0.003631,0.004499,0.249960,0,0);}
.mb1_c00197{transform:matrix(0.201985,-0.002424,0.003000,0.249982,0,0);-ms-transform:matrix(0.201985,-0.002424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201985,-0.002424,0.003000,0.249982,0,0);}
.m33_c00197{transform:matrix(0.202336,-0.003440,0.004249,0.249964,0,0);-ms-transform:matrix(0.202336,-0.003440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202336,-0.003440,0.004249,0.249964,0,0);}
.m96_c00197{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);}
.m8f_c00197{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);}
.me_c00197{transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);-ms-transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);}
.m76_c00197{transform:matrix(0.204369,-0.003270,0.003999,0.249968,0,0);-ms-transform:matrix(0.204369,-0.003270,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204369,-0.003270,0.003999,0.249968,0,0);}
.m84_c00197{transform:matrix(0.205202,-0.003694,0.004499,0.249960,0,0);-ms-transform:matrix(0.205202,-0.003694,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205202,-0.003694,0.004499,0.249960,0,0);}
.mc5_c00197{transform:matrix(0.205518,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205518,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205518,-0.002261,0.002750,0.249985,0,0);}
.m41_c00197{transform:matrix(0.207515,-0.003528,0.004249,0.249964,0,0);-ms-transform:matrix(0.207515,-0.003528,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207515,-0.003528,0.004249,0.249964,0,0);}
.m97_c00197{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);}
.m61_c00197{transform:matrix(0.208741,-0.003757,0.004499,0.249960,0,0);-ms-transform:matrix(0.208741,-0.003757,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208741,-0.003757,0.004499,0.249960,0,0);}
.m55_c00197{transform:matrix(0.209350,-0.003559,0.004249,0.249964,0,0);-ms-transform:matrix(0.209350,-0.003559,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209350,-0.003559,0.004249,0.249964,0,0);}
.m75_c00197{transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);-ms-transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);}
.m6d_c00197{transform:matrix(0.210356,-0.003786,0.004499,0.249960,0,0);-ms-transform:matrix(0.210356,-0.003786,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210356,-0.003786,0.004499,0.249960,0,0);}
.mae_c00197{transform:matrix(0.211660,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211660,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211660,-0.002540,0.003000,0.249982,0,0);}
.mb0_c00197{transform:matrix(0.211670,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211670,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211670,-0.002540,0.003000,0.249982,0,0);}
.m6a_c00197{transform:matrix(0.212016,-0.003816,0.004499,0.249960,0,0);-ms-transform:matrix(0.212016,-0.003816,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212016,-0.003816,0.004499,0.249960,0,0);}
.m63_c00197{transform:matrix(0.212091,-0.003818,0.004499,0.249960,0,0);-ms-transform:matrix(0.212091,-0.003818,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212091,-0.003818,0.004499,0.249960,0,0);}
.ma_c00197{transform:matrix(0.213781,-0.004062,0.004749,0.249955,0,0);-ms-transform:matrix(0.213781,-0.004062,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213781,-0.004062,0.004749,0.249955,0,0);}
.m72_c00197{transform:matrix(0.214053,-0.003425,0.003999,0.249968,0,0);-ms-transform:matrix(0.214053,-0.003425,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214053,-0.003425,0.003999,0.249968,0,0);}
.mb2_c00197{transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);}
.m56_c00197{transform:matrix(0.216059,-0.003673,0.004249,0.249964,0,0);-ms-transform:matrix(0.216059,-0.003673,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216059,-0.003673,0.004249,0.249964,0,0);}
.mde_c00197{transform:matrix(0.216197,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216197,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216197,-0.002378,0.002750,0.249985,0,0);}
.m89_c00197{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);}
.m3e_c00197{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);}
.m77_c00197{transform:matrix(0.216827,-0.003469,0.003999,0.249968,0,0);-ms-transform:matrix(0.216827,-0.003469,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216827,-0.003469,0.003999,0.249968,0,0);}
.ma2_c00197{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);}
.m8b_c00197{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);}
.mcc_c00197{transform:matrix(0.218042,-0.002398,0.002750,0.249985,0,0);-ms-transform:matrix(0.218042,-0.002398,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218042,-0.002398,0.002750,0.249985,0,0);}
.mc1_c00197{transform:matrix(0.219437,-0.002414,0.002750,0.249985,0,0);-ms-transform:matrix(0.219437,-0.002414,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219437,-0.002414,0.002750,0.249985,0,0);}
.m7a_c00197{transform:matrix(0.220269,-0.003965,0.004499,0.249960,0,0);-ms-transform:matrix(0.220269,-0.003965,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220269,-0.003965,0.004499,0.249960,0,0);}
.mb7_c00197{transform:matrix(0.221679,-0.002660,0.003000,0.249982,0,0);-ms-transform:matrix(0.221679,-0.002660,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221679,-0.002660,0.003000,0.249982,0,0);}
.ma5_c00197{transform:matrix(0.222011,-0.002886,0.003250,0.249979,0,0);-ms-transform:matrix(0.222011,-0.002886,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222011,-0.002886,0.003250,0.249979,0,0);}
.m5d_c00197{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);}
.md_c00197{transform:matrix(0.224429,-0.004264,0.004749,0.249955,0,0);-ms-transform:matrix(0.224429,-0.004264,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224429,-0.004264,0.004749,0.249955,0,0);}
.m74_c00197{transform:matrix(0.224841,-0.003597,0.003999,0.249968,0,0);-ms-transform:matrix(0.224841,-0.003597,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224841,-0.003597,0.003999,0.249968,0,0);}
.m60_c00197{transform:matrix(0.224869,-0.004048,0.004499,0.249960,0,0);-ms-transform:matrix(0.224869,-0.004048,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224869,-0.004048,0.004499,0.249960,0,0);}
.m9b_c00197{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);}
.ma9_c00197{transform:matrix(0.226941,-0.002950,0.003250,0.249979,0,0);-ms-transform:matrix(0.226941,-0.002950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226941,-0.002950,0.003250,0.249979,0,0);}
.m37_c00197{transform:matrix(0.227427,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227427,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227427,-0.003866,0.004249,0.249964,0,0);}
.m86_c00197{transform:matrix(0.227973,-0.004104,0.004499,0.249960,0,0);-ms-transform:matrix(0.227973,-0.004104,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227973,-0.004104,0.004499,0.249960,0,0);}
.m62_c00197{transform:matrix(0.229038,-0.004123,0.004499,0.249960,0,0);-ms-transform:matrix(0.229038,-0.004123,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229038,-0.004123,0.004499,0.249960,0,0);}
.md3_c00197{transform:matrix(0.231481,-0.002546,0.002750,0.249985,0,0);-ms-transform:matrix(0.231481,-0.002546,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231481,-0.002546,0.002750,0.249985,0,0);}
.m66_c00197{transform:matrix(0.232132,-0.004178,0.004499,0.249960,0,0);-ms-transform:matrix(0.232132,-0.004178,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232132,-0.004178,0.004499,0.249960,0,0);}
.m70_c00197{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);}
.m26_c00197{transform:matrix(0.232695,-0.006283,0.006748,0.249909,0,0);-ms-transform:matrix(0.232695,-0.006283,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232695,-0.006283,0.006748,0.249909,0,0);}
.m73_c00197{transform:matrix(0.233445,-0.003735,0.003999,0.249968,0,0);-ms-transform:matrix(0.233445,-0.003735,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233445,-0.003735,0.003999,0.249968,0,0);}
.m59_c00197{transform:matrix(0.233611,-0.003971,0.004249,0.249964,0,0);-ms-transform:matrix(0.233611,-0.003971,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233611,-0.003971,0.004249,0.249964,0,0);}
.m9d_c00197{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);}
.m6b_c00197{transform:matrix(0.234167,-0.004215,0.004499,0.249960,0,0);-ms-transform:matrix(0.234167,-0.004215,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234167,-0.004215,0.004499,0.249960,0,0);}
.m3f_c00197{transform:matrix(0.235861,-0.004010,0.004249,0.249964,0,0);-ms-transform:matrix(0.235861,-0.004010,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235861,-0.004010,0.004249,0.249964,0,0);}
.mc0_c00197{transform:matrix(0.237768,-0.002853,0.003000,0.249982,0,0);-ms-transform:matrix(0.237768,-0.002853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237768,-0.002853,0.003000,0.249982,0,0);}
.me1_c00197{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);}
.m2e_c00197{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);}
.md6_c00197{transform:matrix(0.239346,-0.002633,0.002750,0.249985,0,0);-ms-transform:matrix(0.239346,-0.002633,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239346,-0.002633,0.002750,0.249985,0,0);}
.mcf_c00197{transform:matrix(0.239855,-0.002638,0.002750,0.249985,0,0);-ms-transform:matrix(0.239855,-0.002638,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239855,-0.002638,0.002750,0.249985,0,0);}
.mc7_c00197{transform:matrix(0.240825,-0.002649,0.002750,0.249985,0,0);-ms-transform:matrix(0.240825,-0.002649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240825,-0.002649,0.002750,0.249985,0,0);}
.mda_c00197{transform:matrix(0.240875,-0.002650,0.002750,0.249985,0,0);-ms-transform:matrix(0.240875,-0.002650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240875,-0.002650,0.002750,0.249985,0,0);}
.md0_c00197{transform:matrix(0.242190,-0.002664,0.002750,0.249985,0,0);-ms-transform:matrix(0.242190,-0.002664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242190,-0.002664,0.002750,0.249985,0,0);}
.m21_c00197{transform:matrix(0.243451,-0.006573,0.006748,0.249909,0,0);-ms-transform:matrix(0.243451,-0.006573,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243451,-0.006573,0.006748,0.249909,0,0);}
.m7_c00197{transform:matrix(0.243731,-0.006581,0.006748,0.249909,0,0);-ms-transform:matrix(0.243731,-0.006581,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243731,-0.006581,0.006748,0.249909,0,0);}
.m15_c00197{transform:matrix(0.244206,-0.006594,0.006748,0.249909,0,0);-ms-transform:matrix(0.244206,-0.006594,0.006748,0.249909,0,0);-webkit-transform:matrix(0.244206,-0.006594,0.006748,0.249909,0,0);}
.mdc_c00197{transform:matrix(0.244540,-0.002690,0.002750,0.249985,0,0);-ms-transform:matrix(0.244540,-0.002690,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244540,-0.002690,0.002750,0.249985,0,0);}
.m1c_c00197{transform:matrix(0.248300,-0.006704,0.006748,0.249909,0,0);-ms-transform:matrix(0.248300,-0.006704,0.006748,0.249909,0,0);-webkit-transform:matrix(0.248300,-0.006704,0.006748,0.249909,0,0);}
.m8c_c00197{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);}
.m8e_c00197{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.250629,-0.003258,0.003250,0.249979,0,0);-ms-transform:matrix(0.250629,-0.003258,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250629,-0.003258,0.003250,0.249979,0,0);}
.m5f_c00197{transform:matrix(0.251284,-0.004523,0.004499,0.249960,0,0);-ms-transform:matrix(0.251284,-0.004523,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251284,-0.004523,0.004499,0.249960,0,0);}
.mb5_c00197{transform:matrix(0.253877,-0.003047,0.003000,0.249982,0,0);-ms-transform:matrix(0.253877,-0.003047,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253877,-0.003047,0.003000,0.249982,0,0);}
.mb6_c00197{transform:matrix(0.254152,-0.003050,0.003000,0.249982,0,0);-ms-transform:matrix(0.254152,-0.003050,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254152,-0.003050,0.003000,0.249982,0,0);}
.m85_c00197{transform:matrix(0.255559,-0.004600,0.004499,0.249960,0,0);-ms-transform:matrix(0.255559,-0.004600,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255559,-0.004600,0.004499,0.249960,0,0);}
.m1e_c00197{transform:matrix(0.257191,-0.006944,0.006748,0.249909,0,0);-ms-transform:matrix(0.257191,-0.006944,0.006748,0.249909,0,0);-webkit-transform:matrix(0.257191,-0.006944,0.006748,0.249909,0,0);}
.m50_c00197{transform:matrix(0.257435,-0.003604,0.003500,0.249976,0,0);-ms-transform:matrix(0.257435,-0.003604,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257435,-0.003604,0.003500,0.249976,0,0);}
.m35_c00197{transform:matrix(0.257748,-0.004382,0.004249,0.249964,0,0);-ms-transform:matrix(0.257748,-0.004382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257748,-0.004382,0.004249,0.249964,0,0);}
.mc4_c00197{transform:matrix(0.260569,-0.002866,0.002750,0.249985,0,0);-ms-transform:matrix(0.260569,-0.002866,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260569,-0.002866,0.002750,0.249985,0,0);}
.m2f_c00197{transform:matrix(0.262182,-0.004457,0.004249,0.249964,0,0);-ms-transform:matrix(0.262182,-0.004457,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262182,-0.004457,0.004249,0.249964,0,0);}
.mca_c00197{transform:matrix(0.263054,-0.002894,0.002750,0.249985,0,0);-ms-transform:matrix(0.263054,-0.002894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263054,-0.002894,0.002750,0.249985,0,0);}
.md5_c00197{transform:matrix(0.265479,-0.002920,0.002750,0.249985,0,0);-ms-transform:matrix(0.265479,-0.002920,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265479,-0.002920,0.002750,0.249985,0,0);}
.ma0_c00197{transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266735,0.000000,0.000000,0.250000,0,0);}
.mbe_c00197{transform:matrix(0.267191,-0.003206,0.003000,0.249982,0,0);-ms-transform:matrix(0.267191,-0.003206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267191,-0.003206,0.003000,0.249982,0,0);}
.m9e_c00197{transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267880,0.000000,0.000000,0.250000,0,0);}
.m99_c00197{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);}
.mce_c00197{transform:matrix(0.268324,-0.002952,0.002750,0.249985,0,0);-ms-transform:matrix(0.268324,-0.002952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268324,-0.002952,0.002750,0.249985,0,0);}
.mb4_c00197{transform:matrix(0.269361,-0.003232,0.003000,0.249982,0,0);-ms-transform:matrix(0.269361,-0.003232,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269361,-0.003232,0.003000,0.249982,0,0);}
.m95_c00197{transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278255,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.279201,-0.003630,0.003250,0.249979,0,0);-ms-transform:matrix(0.279201,-0.003630,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279201,-0.003630,0.003250,0.249979,0,0);}
.m29_c00197{transform:matrix(0.279608,-0.007549,0.006748,0.249909,0,0);-ms-transform:matrix(0.279608,-0.007549,0.006748,0.249909,0,0);-webkit-transform:matrix(0.279608,-0.007549,0.006748,0.249909,0,0);}
.m20_c00197{transform:matrix(0.280713,-0.007579,0.006748,0.249909,0,0);-ms-transform:matrix(0.280713,-0.007579,0.006748,0.249909,0,0);-webkit-transform:matrix(0.280713,-0.007579,0.006748,0.249909,0,0);}
.mbc_c00197{transform:matrix(0.283245,-0.003399,0.003000,0.249982,0,0);-ms-transform:matrix(0.283245,-0.003399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283245,-0.003399,0.003000,0.249982,0,0);}
.md2_c00197{transform:matrix(0.284703,-0.003132,0.002750,0.249985,0,0);-ms-transform:matrix(0.284703,-0.003132,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284703,-0.003132,0.002750,0.249985,0,0);}
.m6c_c00197{transform:matrix(0.284884,-0.005128,0.004499,0.249960,0,0);-ms-transform:matrix(0.284884,-0.005128,0.004499,0.249960,0,0);-webkit-transform:matrix(0.284884,-0.005128,0.004499,0.249960,0,0);}
.mc8_c00197{transform:matrix(0.285823,-0.003144,0.002750,0.249985,0,0);-ms-transform:matrix(0.285823,-0.003144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285823,-0.003144,0.002750,0.249985,0,0);}
.m7c_c00197{transform:matrix(0.286609,-0.005159,0.004499,0.249960,0,0);-ms-transform:matrix(0.286609,-0.005159,0.004499,0.249960,0,0);-webkit-transform:matrix(0.286609,-0.005159,0.004499,0.249960,0,0);}
.m30_c00197{transform:matrix(0.289578,-0.004923,0.004249,0.249964,0,0);-ms-transform:matrix(0.289578,-0.004923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.289578,-0.004923,0.004249,0.249964,0,0);}
.mc9_c00197{transform:matrix(0.292347,-0.003216,0.002750,0.249985,0,0);-ms-transform:matrix(0.292347,-0.003216,0.002750,0.249985,0,0);-webkit-transform:matrix(0.292347,-0.003216,0.002750,0.249985,0,0);}
.m16_c00197{transform:matrix(0.294343,-0.007947,0.006748,0.249909,0,0);-ms-transform:matrix(0.294343,-0.007947,0.006748,0.249909,0,0);-webkit-transform:matrix(0.294343,-0.007947,0.006748,0.249909,0,0);}
.m31_c00197{transform:matrix(0.298307,-0.005071,0.004249,0.249964,0,0);-ms-transform:matrix(0.298307,-0.005071,0.004249,0.249964,0,0);-webkit-transform:matrix(0.298307,-0.005071,0.004249,0.249964,0,0);}
.m83_c00197{transform:matrix(0.299771,-0.005396,0.004499,0.249960,0,0);-ms-transform:matrix(0.299771,-0.005396,0.004499,0.249960,0,0);-webkit-transform:matrix(0.299771,-0.005396,0.004499,0.249960,0,0);}
.m44_c00197{transform:matrix(0.304521,-0.005177,0.004249,0.249964,0,0);-ms-transform:matrix(0.304521,-0.005177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.304521,-0.005177,0.004249,0.249964,0,0);}
.m5e_c00197{transform:matrix(0.311010,-0.005598,0.004499,0.249960,0,0);-ms-transform:matrix(0.311010,-0.005598,0.004499,0.249960,0,0);-webkit-transform:matrix(0.311010,-0.005598,0.004499,0.249960,0,0);}
.m48_c00197{transform:matrix(0.314455,-0.005346,0.004249,0.249964,0,0);-ms-transform:matrix(0.314455,-0.005346,0.004249,0.249964,0,0);-webkit-transform:matrix(0.314455,-0.005346,0.004249,0.249964,0,0);}
.m9a_c00197{transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316155,0.000000,0.000000,0.250000,0,0);}
.m5b_c00197{transform:matrix(0.318039,-0.005407,0.004249,0.249964,0,0);-ms-transform:matrix(0.318039,-0.005407,0.004249,0.249964,0,0);-webkit-transform:matrix(0.318039,-0.005407,0.004249,0.249964,0,0);}
.m4f_c00197{transform:matrix(0.320819,-0.004491,0.003500,0.249976,0,0);-ms-transform:matrix(0.320819,-0.004491,0.003500,0.249976,0,0);-webkit-transform:matrix(0.320819,-0.004491,0.003500,0.249976,0,0);}
.maa_c00197{transform:matrix(0.323093,-0.004200,0.003250,0.249979,0,0);-ms-transform:matrix(0.323093,-0.004200,0.003250,0.249979,0,0);-webkit-transform:matrix(0.323093,-0.004200,0.003250,0.249979,0,0);}
.m94_c00197{transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325360,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.326586,-0.008818,0.006748,0.249909,0,0);-ms-transform:matrix(0.326586,-0.008818,0.006748,0.249909,0,0);-webkit-transform:matrix(0.326586,-0.008818,0.006748,0.249909,0,0);}
.m9f_c00197{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);}
.m54_c00197{transform:matrix(0.332152,-0.005647,0.004249,0.249964,0,0);-ms-transform:matrix(0.332152,-0.005647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332152,-0.005647,0.004249,0.249964,0,0);}
.m91_c00197{transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332245,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.332447,-0.005652,0.004249,0.249964,0,0);-ms-transform:matrix(0.332447,-0.005652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332447,-0.005652,0.004249,0.249964,0,0);}
.m5c_c00197{transform:matrix(0.337711,-0.005741,0.004249,0.249964,0,0);-ms-transform:matrix(0.337711,-0.005741,0.004249,0.249964,0,0);-webkit-transform:matrix(0.337711,-0.005741,0.004249,0.249964,0,0);}
.m1b_c00197{transform:matrix(0.340011,-0.009180,0.006748,0.249909,0,0);-ms-transform:matrix(0.340011,-0.009180,0.006748,0.249909,0,0);-webkit-transform:matrix(0.340011,-0.009180,0.006748,0.249909,0,0);}
.m4c_c00197{transform:matrix(0.344721,-0.004826,0.003500,0.249976,0,0);-ms-transform:matrix(0.344721,-0.004826,0.003500,0.249976,0,0);-webkit-transform:matrix(0.344721,-0.004826,0.003500,0.249976,0,0);}
.m8a_c00197{transform:matrix(0.349615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349615,0.000000,0.000000,0.250000,0,0);}
.m6e_c00197{transform:matrix(0.349928,-0.006299,0.004499,0.249960,0,0);-ms-transform:matrix(0.349928,-0.006299,0.004499,0.249960,0,0);-webkit-transform:matrix(0.349928,-0.006299,0.004499,0.249960,0,0);}
.mbb_c00197{transform:matrix(0.360869,-0.004330,0.003000,0.249982,0,0);-ms-transform:matrix(0.360869,-0.004330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.360869,-0.004330,0.003000,0.249982,0,0);}
.ma1_c00197{transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361350,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.364632,-0.009845,0.006748,0.249909,0,0);-ms-transform:matrix(0.364632,-0.009845,0.006748,0.249909,0,0);-webkit-transform:matrix(0.364632,-0.009845,0.006748,0.249909,0,0);}
.mbf_c00197{transform:matrix(0.366639,-0.004400,0.003000,0.249982,0,0);-ms-transform:matrix(0.366639,-0.004400,0.003000,0.249982,0,0);-webkit-transform:matrix(0.366639,-0.004400,0.003000,0.249982,0,0);}
.m51_c00197{transform:matrix(0.368523,-0.005896,0.003999,0.249968,0,0);-ms-transform:matrix(0.368523,-0.005896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.368523,-0.005896,0.003999,0.249968,0,0);}
.m13_c00197{transform:matrix(0.371908,-0.007066,0.004749,0.249955,0,0);-ms-transform:matrix(0.371908,-0.007066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.371908,-0.007066,0.004749,0.249955,0,0);}
.m6f_c00197{transform:matrix(0.372080,-0.006697,0.004499,0.249960,0,0);-ms-transform:matrix(0.372080,-0.006697,0.004499,0.249960,0,0);-webkit-transform:matrix(0.372080,-0.006697,0.004499,0.249960,0,0);}
.m27_c00197{transform:matrix(0.376103,-0.010155,0.006748,0.249909,0,0);-ms-transform:matrix(0.376103,-0.010155,0.006748,0.249909,0,0);-webkit-transform:matrix(0.376103,-0.010155,0.006748,0.249909,0,0);}
.m14_c00197{transform:matrix(0.376927,-0.007162,0.004749,0.249955,0,0);-ms-transform:matrix(0.376927,-0.007162,0.004749,0.249955,0,0);-webkit-transform:matrix(0.376927,-0.007162,0.004749,0.249955,0,0);}
.ma6_c00197{transform:matrix(0.382193,-0.004969,0.003250,0.249979,0,0);-ms-transform:matrix(0.382193,-0.004969,0.003250,0.249979,0,0);-webkit-transform:matrix(0.382193,-0.004969,0.003250,0.249979,0,0);}
.m52_c00197{transform:matrix(0.391350,-0.006262,0.003999,0.249968,0,0);-ms-transform:matrix(0.391350,-0.006262,0.003999,0.249968,0,0);-webkit-transform:matrix(0.391350,-0.006262,0.003999,0.249968,0,0);}
.m18_c00197{transform:matrix(0.408381,-0.011026,0.006748,0.249909,0,0);-ms-transform:matrix(0.408381,-0.011026,0.006748,0.249909,0,0);-webkit-transform:matrix(0.408381,-0.011026,0.006748,0.249909,0,0);}
.ma3_c00197{transform:matrix(0.432075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432075,0.000000,0.000000,0.250000,0,0);}
.mc6_c00197{transform:matrix(0.437254,-0.004810,0.002750,0.249985,0,0);-ms-transform:matrix(0.437254,-0.004810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.437254,-0.004810,0.002750,0.249985,0,0);}
.m45_c00197{transform:matrix(0.472872,-0.008039,0.004249,0.249964,0,0);-ms-transform:matrix(0.472872,-0.008039,0.004249,0.249964,0,0);-webkit-transform:matrix(0.472872,-0.008039,0.004249,0.249964,0,0);}
.mdd_c00197{transform:matrix(0.474956,-0.005225,0.002750,0.249985,0,0);-ms-transform:matrix(0.474956,-0.005225,0.002750,0.249985,0,0);-webkit-transform:matrix(0.474956,-0.005225,0.002750,0.249985,0,0);}
.md1_c00197{transform:matrix(0.475076,-0.005226,0.002750,0.249985,0,0);-ms-transform:matrix(0.475076,-0.005226,0.002750,0.249985,0,0);-webkit-transform:matrix(0.475076,-0.005226,0.002750,0.249985,0,0);}
.m17_c00197{transform:matrix(0.476371,-0.012862,0.006748,0.249909,0,0);-ms-transform:matrix(0.476371,-0.012862,0.006748,0.249909,0,0);-webkit-transform:matrix(0.476371,-0.012862,0.006748,0.249909,0,0);}
.mc2_c00197{transform:matrix(0.482736,-0.005310,0.002750,0.249985,0,0);-ms-transform:matrix(0.482736,-0.005310,0.002750,0.249985,0,0);-webkit-transform:matrix(0.482736,-0.005310,0.002750,0.249985,0,0);}
.m2c_c00197{transform:matrix(0.488632,-0.013193,0.006748,0.249909,0,0);-ms-transform:matrix(0.488632,-0.013193,0.006748,0.249909,0,0);-webkit-transform:matrix(0.488632,-0.013193,0.006748,0.249909,0,0);}
.m8_c00197{transform:matrix(0.491186,-0.013262,0.006748,0.249909,0,0);-ms-transform:matrix(0.491186,-0.013262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.491186,-0.013262,0.006748,0.249909,0,0);}
.m1d_c00197{transform:matrix(0.493800,-0.013333,0.006748,0.249909,0,0);-ms-transform:matrix(0.493800,-0.013333,0.006748,0.249909,0,0);-webkit-transform:matrix(0.493800,-0.013333,0.006748,0.249909,0,0);}
.me0_c00197{transform:matrix(0.505464,-0.005560,0.002750,0.249985,0,0);-ms-transform:matrix(0.505464,-0.005560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.505464,-0.005560,0.002750,0.249985,0,0);}
.m22_c00197{transform:matrix(0.508585,-0.013732,0.006748,0.249909,0,0);-ms-transform:matrix(0.508585,-0.013732,0.006748,0.249909,0,0);-webkit-transform:matrix(0.508585,-0.013732,0.006748,0.249909,0,0);}
.m6_c00197{transform:matrix(0.547401,-0.014780,0.006748,0.249909,0,0);-ms-transform:matrix(0.547401,-0.014780,0.006748,0.249909,0,0);-webkit-transform:matrix(0.547401,-0.014780,0.006748,0.249909,0,0);}
.md4_c00197{transform:matrix(0.561456,-0.006176,0.002750,0.249985,0,0);-ms-transform:matrix(0.561456,-0.006176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.561456,-0.006176,0.002750,0.249985,0,0);}
.m7f_c00197{transform:matrix(0.581671,-0.010470,0.004499,0.249960,0,0);-ms-transform:matrix(0.581671,-0.010470,0.004499,0.249960,0,0);-webkit-transform:matrix(0.581671,-0.010470,0.004499,0.249960,0,0);}
.m1_c00197{transform:matrix(0.604850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604850,0.000000,0.000000,0.250000,0,0);}
.m4e_c00197{transform:matrix(0.616445,-0.008630,0.003500,0.249976,0,0);-ms-transform:matrix(0.616445,-0.008630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.616445,-0.008630,0.003500,0.249976,0,0);}
.mb8_c00197{transform:matrix(0.629510,-0.007554,0.003000,0.249982,0,0);-ms-transform:matrix(0.629510,-0.007554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.629510,-0.007554,0.003000,0.249982,0,0);}
.mb9_c00197{transform:matrix(0.636689,-0.007640,0.003000,0.249982,0,0);-ms-transform:matrix(0.636689,-0.007640,0.003000,0.249982,0,0);-webkit-transform:matrix(0.636689,-0.007640,0.003000,0.249982,0,0);}
.m2a_c00197{transform:matrix(0.642876,-0.017358,0.006748,0.249909,0,0);-ms-transform:matrix(0.642876,-0.017358,0.006748,0.249909,0,0);-webkit-transform:matrix(0.642876,-0.017358,0.006748,0.249909,0,0);}
.m25_c00197{transform:matrix(0.689834,-0.018626,0.006748,0.249909,0,0);-ms-transform:matrix(0.689834,-0.018626,0.006748,0.249909,0,0);-webkit-transform:matrix(0.689834,-0.018626,0.006748,0.249909,0,0);}
.m3_c00197{transform:matrix(0.785370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785370,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.963310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963310,0.000000,0.000000,0.250000,0,0);}
.mbd_c00197{transform:matrix(1.025831,-0.012310,0.003000,0.249982,0,0);-ms-transform:matrix(1.025831,-0.012310,0.003000,0.249982,0,0);-webkit-transform:matrix(1.025831,-0.012310,0.003000,0.249982,0,0);}
.m4_c00197{transform:matrix(1.222822,-0.022011,0.004499,0.249960,0,0);-ms-transform:matrix(1.222822,-0.022011,0.004499,0.249960,0,0);-webkit-transform:matrix(1.222822,-0.022011,0.004499,0.249960,0,0);}
.m2_c00197{transform:matrix(1.262725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262725,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;}
.fs12_c00197{font-size:48.300000px;}
.fs17_c00197{font-size:49.352986px;}
.fs14_c00197{font-size:50.400000px;}
.fs15_c00197{font-size:51.454347px;}
.fs18_c00197{font-size:52.503176px;}
.fs16_c00197{font-size:52.503780px;}
.fs11_c00197{font-size:53.558674px;}
.fs13_c00197{font-size:54.600000px;}
.fs1_c00197{font-size:61.960035px;}
.fs0_c00197{font-size:65.100000px;}
.fs9_c00197{font-size:67.209710px;}
.fsc_c00197{font-size:68.261056px;}
.fsf_c00197{font-size:69.308870px;}
.fs7_c00197{font-size:69.310013px;}
.fsd_c00197{font-size:69.311226px;}
.fsa_c00197{font-size:70.356894px;}
.fs8_c00197{font-size:70.360165px;}
.fs10_c00197{font-size:71.411566px;}
.fs5_c00197{font-size:73.526786px;}
.fs6_c00197{font-size:74.577169px;}
.fs3_c00197{font-size:75.613645px;}
.fs2_c00197{font-size:82.980230px;}
.fsb_c00197{font-size:93.461961px;}
.fse_c00197{font-size:94.515308px;}
.fs4_c00197{font-size:120.771793px;}
.y0_c00197{bottom:0.000000px;}
.yb8_c00197{bottom:158.488449px;}
.yb9_c00197{bottom:158.836929px;}
.yba_c00197{bottom:159.257959px;}
.ybb_c00197{bottom:159.688362px;}
.ybc_c00197{bottom:159.973498px;}
.ybd_c00197{bottom:160.176366px;}
.ybe_c00197{bottom:160.645395px;}
.ybf_c00197{bottom:161.021380px;}
.yc0_c00197{bottom:161.325112px;}
.yc1_c00197{bottom:161.898454px;}
.yc2_c00197{bottom:162.095184px;}
.yc3_c00197{bottom:162.635097px;}
.yc4_c00197{bottom:162.828625px;}
.yc5_c00197{bottom:163.326447px;}
.yc6_c00197{bottom:163.401770px;}
.yc7_c00197{bottom:163.692252px;}
.yc8_c00197{bottom:164.019645px;}
.ya7_c00197{bottom:176.542500px;}
.ya8_c00197{bottom:176.883934px;}
.ya9_c00197{bottom:177.121518px;}
.yaa_c00197{bottom:177.419244px;}
.yab_c00197{bottom:178.158312px;}
.yac_c00197{bottom:178.470673px;}
.yad_c00197{bottom:178.669812px;}
.yae_c00197{bottom:179.159251px;}
.yaf_c00197{bottom:179.522020px;}
.yb0_c00197{bottom:179.711853px;}
.yb1_c00197{bottom:179.904688px;}
.yb2_c00197{bottom:180.210945px;}
.yb3_c00197{bottom:180.492039px;}
.yb4_c00197{bottom:180.558121px;}
.yb5_c00197{bottom:181.282521px;}
.yb6_c00197{bottom:181.503043px;}
.yb7_c00197{bottom:181.811808px;}
.y94_c00197{bottom:194.401500px;}
.y95_c00197{bottom:195.113202px;}
.y96_c00197{bottom:195.440928px;}
.y97_c00197{bottom:195.836640px;}
.y98_c00197{bottom:196.192500px;}
.y99_c00197{bottom:196.429470px;}
.y9a_c00197{bottom:196.646658px;}
.y9b_c00197{bottom:196.838034px;}
.y9c_c00197{bottom:197.389338px;}
.y9d_c00197{bottom:197.773746px;}
.y9e_c00197{bottom:197.950056px;}
.y9f_c00197{bottom:198.254832px;}
.ya0_c00197{bottom:198.738510px;}
.ya1_c00197{bottom:198.763296px;}
.ya2_c00197{bottom:199.025142px;}
.ya3_c00197{bottom:199.162266px;}
.ya4_c00197{bottom:199.788828px;}
.ya5_c00197{bottom:199.962366px;}
.ya6_c00197{bottom:200.181462px;}
.y8a_c00197{bottom:212.491500px;}
.y8b_c00197{bottom:212.828479px;}
.y8c_c00197{bottom:213.429645px;}
.y8d_c00197{bottom:213.608558px;}
.y8e_c00197{bottom:213.909852px;}
.y8f_c00197{bottom:214.289849px;}
.y90_c00197{bottom:214.935357px;}
.y91_c00197{bottom:215.360886px;}
.y92_c00197{bottom:215.701473px;}
.y93_c00197{bottom:216.667191px;}
.y89_c00197{bottom:231.471000px;}
.y88_c00197{bottom:249.790500px;}
.y87_c00197{bottom:267.204000px;}
.y7f_c00197{bottom:283.503000px;}
.y80_c00197{bottom:283.741464px;}
.y81_c00197{bottom:284.728152px;}
.y82_c00197{bottom:284.916693px;}
.y83_c00197{bottom:285.262752px;}
.y84_c00197{bottom:286.016106px;}
.y85_c00197{bottom:286.463253px;}
.y86_c00197{bottom:286.696587px;}
.y76_c00197{bottom:384.484500px;}
.y77_c00197{bottom:384.950034px;}
.y78_c00197{bottom:386.166600px;}
.y79_c00197{bottom:387.491760px;}
.y7a_c00197{bottom:387.838413px;}
.y7b_c00197{bottom:388.596789px;}
.y7c_c00197{bottom:389.218410px;}
.y7d_c00197{bottom:389.753631px;}
.y7e_c00197{bottom:391.101525px;}
.y6e_c00197{bottom:408.246000px;}
.y6f_c00197{bottom:408.929880px;}
.y70_c00197{bottom:409.962432px;}
.y71_c00197{bottom:410.999448px;}
.y72_c00197{bottom:411.426240px;}
.y73_c00197{bottom:412.074288px;}
.y74_c00197{bottom:412.658856px;}
.y75_c00197{bottom:413.590536px;}
.y6c_c00197{bottom:431.471244px;}
.y6d_c00197{bottom:432.168792px;}
.y64_c00197{bottom:453.604500px;}
.y65_c00197{bottom:454.459995px;}
.y66_c00197{bottom:455.222799px;}
.y67_c00197{bottom:455.937813px;}
.y68_c00197{bottom:456.799545px;}
.y69_c00197{bottom:457.231302px;}
.y6a_c00197{bottom:458.262405px;}
.y6b_c00197{bottom:459.000909px;}
.y5c_c00197{bottom:476.286000px;}
.y5d_c00197{bottom:476.910915px;}
.y5e_c00197{bottom:477.573873px;}
.y5f_c00197{bottom:477.980655px;}
.y60_c00197{bottom:478.594392px;}
.y61_c00197{bottom:479.799915px;}
.y62_c00197{bottom:480.558048px;}
.y63_c00197{bottom:481.537770px;}
.y52_c00197{bottom:499.507500px;}
.y53_c00197{bottom:500.460511px;}
.y54_c00197{bottom:501.467226px;}
.y55_c00197{bottom:502.307680px;}
.y56_c00197{bottom:502.366177px;}
.y57_c00197{bottom:502.657795px;}
.y58_c00197{bottom:502.988454px;}
.y59_c00197{bottom:503.450718px;}
.y5a_c00197{bottom:503.754245px;}
.y5b_c00197{bottom:504.279748px;}
.y4f_c00197{bottom:522.699000px;}
.y50_c00197{bottom:523.983216px;}
.y51_c00197{bottom:528.029088px;}
.y48_c00197{bottom:547.020000px;}
.y49_c00197{bottom:547.572405px;}
.y4a_c00197{bottom:547.929867px;}
.y4b_c00197{bottom:548.266350px;}
.y4c_c00197{bottom:548.799225px;}
.y4d_c00197{bottom:549.745506px;}
.y4e_c00197{bottom:550.675344px;}
.y3f_c00197{bottom:590.485761px;}
.y40_c00197{bottom:591.140315px;}
.y41_c00197{bottom:591.928670px;}
.y42_c00197{bottom:592.541509px;}
.y43_c00197{bottom:592.621515px;}
.y44_c00197{bottom:594.689550px;}
.y45_c00197{bottom:595.386373px;}
.y46_c00197{bottom:596.329359px;}
.y47_c00197{bottom:596.795499px;}
.y35_c00197{bottom:613.441073px;}
.y36_c00197{bottom:614.126068px;}
.y37_c00197{bottom:614.782025px;}
.y38_c00197{bottom:615.899046px;}
.y39_c00197{bottom:616.240050px;}
.y3a_c00197{bottom:617.080900px;}
.y3b_c00197{bottom:618.096981px;}
.y3c_c00197{bottom:618.296130px;}
.y3d_c00197{bottom:618.777310px;}
.y3e_c00197{bottom:620.083740px;}
.y2c_c00197{bottom:636.396000px;}
.y2d_c00197{bottom:637.099647px;}
.y2e_c00197{bottom:637.916157px;}
.y2f_c00197{bottom:638.202343px;}
.y30_c00197{bottom:638.570181px;}
.y31_c00197{bottom:639.815984px;}
.y32_c00197{bottom:640.463480px;}
.y33_c00197{bottom:640.996455px;}
.y34_c00197{bottom:641.367735px;}
.y23_c00197{bottom:680.921129px;}
.y24_c00197{bottom:682.426034px;}
.y26_c00197{bottom:683.871239px;}
.y25_c00197{bottom:683.882368px;}
.y27_c00197{bottom:684.187520px;}
.y28_c00197{bottom:684.554720px;}
.y29_c00197{bottom:685.253097px;}
.y2a_c00197{bottom:685.663001px;}
.y2b_c00197{bottom:686.757639px;}
.y1f_c00197{bottom:705.222987px;}
.y20_c00197{bottom:708.002516px;}
.y21_c00197{bottom:710.467125px;}
.y22_c00197{bottom:711.496895px;}
.y1e_c00197{bottom:732.801062px;}
.y1b_c00197{bottom:732.801255px;}
.y1a_c00197{bottom:732.801355px;}
.y1d_c00197{bottom:732.801403px;}
.y1c_c00197{bottom:732.801637px;}
.y19_c00197{bottom:732.801668px;}
.y18_c00197{bottom:732.802170px;}
.y13_c00197{bottom:753.270000px;}
.y14_c00197{bottom:754.021194px;}
.y15_c00197{bottom:754.479492px;}
.y16_c00197{bottom:755.166453px;}
.y17_c00197{bottom:755.630502px;}
.y11_c00197{bottom:791.913393px;}
.y12_c00197{bottom:794.991423px;}
.y7_c00197{bottom:811.626000px;}
.y8_c00197{bottom:813.211370px;}
.y9_c00197{bottom:813.704448px;}
.ya_c00197{bottom:814.409367px;}
.yb_c00197{bottom:814.987974px;}
.yc_c00197{bottom:817.196753px;}
.yd_c00197{bottom:817.947557px;}
.ye_c00197{bottom:818.681489px;}
.yf_c00197{bottom:819.382703px;}
.y10_c00197{bottom:820.144536px;}
.y4_c00197{bottom:862.393500px;}
.y5_c00197{bottom:864.936778px;}
.y6_c00197{bottom:865.933159px;}
.y2_c00197{bottom:902.617500px;}
.y3_c00197{bottom:905.962449px;}
.y1_c00197{bottom:921.885000px;}
.h14_c00197{height:48.300000px;}
.h19_c00197{height:49.352986px;}
.h16_c00197{height:50.400000px;}
.h17_c00197{height:51.454347px;}
.h1a_c00197{height:52.503176px;}
.h18_c00197{height:52.503780px;}
.h13_c00197{height:53.558674px;}
.h15_c00197{height:54.600000px;}
.h3_c00197{height:61.960035px;}
.h2_c00197{height:65.100000px;}
.hb_c00197{height:67.209710px;}
.he_c00197{height:68.261056px;}
.h11_c00197{height:69.308870px;}
.h9_c00197{height:69.310013px;}
.hf_c00197{height:69.311226px;}
.hc_c00197{height:70.356894px;}
.ha_c00197{height:70.360165px;}
.h12_c00197{height:71.411566px;}
.h7_c00197{height:73.526786px;}
.h8_c00197{height:74.577169px;}
.h5_c00197{height:75.613645px;}
.h4_c00197{height:82.980230px;}
.hd_c00197{height:93.461961px;}
.h10_c00197{height:94.515308px;}
.h6_c00197{height:120.771793px;}
.h0_c00197{height:1008.450000px;}
.h1_c00197{height:1008.750000px;}
.w0_c00197{width:678.450000px;}
.w1_c00197{width:678.750000px;}
.x0_c00197{left:0.000000px;}
.x14_c00197{left:79.246710px;}
.x24_c00197{left:80.554096px;}
.xa_c00197{left:85.327500px;}
.x69_c00197{left:126.360000px;}
.x8d_c00197{left:128.057489px;}
.x60_c00197{left:136.264500px;}
.x61_c00197{left:149.512500px;}
.x6f_c00197{left:151.740000px;}
.x4d_c00197{left:157.470000px;}
.x65_c00197{left:160.110000px;}
.x74_c00197{left:162.384000px;}
.x70_c00197{left:167.400000px;}
.xb_c00197{left:168.768000px;}
.x32_c00197{left:170.589405px;}
.x6a_c00197{left:181.710000px;}
.x66_c00197{left:182.790000px;}
.x82_c00197{left:189.639000px;}
.x45_c00197{left:191.251500px;}
.xc_c00197{left:194.719500px;}
.x5a_c00197{left:196.741500px;}
.x8e_c00197{left:198.012989px;}
.x62_c00197{left:204.328500px;}
.x3a_c00197{left:205.904612px;}
.x33_c00197{left:208.676768px;}
.x2b_c00197{left:210.997500px;}
.x67_c00197{left:212.220000px;}
.x55_c00197{left:214.045500px;}
.x83_c00197{left:216.705000px;}
.x1_c00197{left:218.160000px;}
.x71_c00197{left:221.400000px;}
.x78_c00197{left:223.687500px;}
.x47_c00197{left:227.116500px;}
.x5_c00197{left:229.398000px;}
.x6b_c00197{left:230.580000px;}
.xd_c00197{left:231.820500px;}
.x63_c00197{left:234.028500px;}
.x8f_c00197{left:237.140489px;}
.x2_c00197{left:241.650000px;}
.x34_c00197{left:245.144156px;}
.x3b_c00197{left:249.718872px;}
.x4e_c00197{left:251.617500px;}
.x25_c00197{left:254.721076px;}
.x79_c00197{left:256.663500px;}
.x2c_c00197{left:259.027500px;}
.x52_c00197{left:260.784000px;}
.xe_c00197{left:262.273500px;}
.x5b_c00197{left:264.328500px;}
.x6c_c00197{left:267.030000px;}
.x7_c00197{left:268.867500px;}
.x46_c00197{left:271.515000px;}
.x26_c00197{left:272.638896px;}
.x72_c00197{left:274.590000px;}
.x2d_c00197{left:275.862000px;}
.x21_c00197{left:277.147644px;}
.x56_c00197{left:278.580000px;}
.x90_c00197{left:281.504489px;}
.x3c_c00197{left:283.738285px;}
.x4f_c00197{left:285.714000px;}
.x1a_c00197{left:287.269414px;}
.x6d_c00197{left:289.170000px;}
.x73_c00197{left:292.680000px;}
.x27_c00197{left:294.244728px;}
.x3_c00197{left:298.350000px;}
.x53_c00197{left:300.507000px;}
.x6e_c00197{left:301.860000px;}
.x7a_c00197{left:306.066000px;}
.x35_c00197{left:307.232610px;}
.x1b_c00197{left:308.877669px;}
.x84_c00197{left:312.289500px;}
.x64_c00197{left:313.686000px;}
.x15_c00197{left:316.528500px;}
.x68_c00197{left:321.300000px;}
.x75_c00197{left:324.451500px;}
.x1c_c00197{left:326.434467px;}
.x85_c00197{left:330.393000px;}
.x28_c00197{left:335.288284px;}
.x5c_c00197{left:337.948500px;}
.x48_c00197{left:339.214500px;}
.x16_c00197{left:344.350500px;}
.x3f_c00197{left:348.885000px;}
.x50_c00197{left:352.687500px;}
.x49_c00197{left:356.368500px;}
.x91_c00197{left:358.323989px;}
.x29_c00197{left:359.365264px;}
.x17_c00197{left:361.324500px;}
.x8_c00197{left:363.063000px;}
.x2e_c00197{left:370.782000px;}
.x36_c00197{left:372.869988px;}
.x40_c00197{left:374.418000px;}
.x4a_c00197{left:375.819000px;}
.xf_c00197{left:378.525000px;}
.x76_c00197{left:383.383500px;}
.x18_c00197{left:386.767500px;}
.x4_c00197{left:394.200000px;}
.x41_c00197{left:398.452500px;}
.x9_c00197{left:399.966000px;}
.x19_c00197{left:403.954500px;}
.x86_c00197{left:407.866500px;}
.x2f_c00197{left:408.870000px;}
.x57_c00197{left:410.571000px;}
.x1d_c00197{left:414.216916px;}
.x6_c00197{left:415.228500px;}
.x10_c00197{left:418.041000px;}
.x4b_c00197{left:420.865500px;}
.x2a_c00197{left:423.758139px;}
.x87_c00197{left:425.124000px;}
.x37_c00197{left:429.285519px;}
.x7b_c00197{left:432.781500px;}
.x5d_c00197{left:433.873500px;}
.x42_c00197{left:436.515000px;}
.x92_c00197{left:438.057989px;}
.x30_c00197{left:440.221500px;}
.x3d_c00197{left:441.727582px;}
.x58_c00197{left:447.106500px;}
.x51_c00197{left:449.235000px;}
.x4c_c00197{left:451.777500px;}
.x22_c00197{left:453.157866px;}
.x11_c00197{left:456.669000px;}
.x77_c00197{left:457.669500px;}
.x31_c00197{left:462.061500px;}
.x5e_c00197{left:463.608000px;}
.x38_c00197{left:467.098382px;}
.x54_c00197{left:470.679000px;}
.x1e_c00197{left:476.609857px;}
.x12_c00197{left:493.575000px;}
.x88_c00197{left:496.050000px;}
.x7c_c00197{left:498.486000px;}
.x7d_c00197{left:500.551500px;}
.x89_c00197{left:502.057500px;}
.x43_c00197{left:504.106500px;}
.x59_c00197{left:505.336500px;}
.x1f_c00197{left:509.291671px;}
.x3e_c00197{left:520.027756px;}
.x7e_c00197{left:522.372000px;}
.x20_c00197{left:524.957092px;}
.x23_c00197{left:526.712164px;}
.x13_c00197{left:533.671500px;}
.x5f_c00197{left:538.491000px;}
.x39_c00197{left:539.710658px;}
.x8a_c00197{left:567.912000px;}
.x44_c00197{left:570.523500px;}
.x93_c00197{left:574.722989px;}
.x7f_c00197{left:586.012500px;}
.x8b_c00197{left:587.959500px;}
.x80_c00197{left:600.474000px;}
.x8c_c00197{left:616.029000px;}
.x81_c00197{left:618.732000px;}
.x94_c00197{left:630.893489px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.fs12_c00197{font-size:42.933333pt;}
.fs17_c00197{font-size:43.869321pt;}
.fs14_c00197{font-size:44.800000pt;}
.fs15_c00197{font-size:45.737198pt;}
.fs18_c00197{font-size:46.669490pt;}
.fs16_c00197{font-size:46.670027pt;}
.fs11_c00197{font-size:47.607711pt;}
.fs13_c00197{font-size:48.533333pt;}
.fs1_c00197{font-size:55.075587pt;}
.fs0_c00197{font-size:57.866667pt;}
.fs9_c00197{font-size:59.741964pt;}
.fsc_c00197{font-size:60.676494pt;}
.fsf_c00197{font-size:61.607884pt;}
.fs7_c00197{font-size:61.608901pt;}
.fsd_c00197{font-size:61.609978pt;}
.fsa_c00197{font-size:62.539461pt;}
.fs8_c00197{font-size:62.542369pt;}
.fs10_c00197{font-size:63.476947pt;}
.fs5_c00197{font-size:65.357143pt;}
.fs6_c00197{font-size:66.290816pt;}
.fs3_c00197{font-size:67.212129pt;}
.fs2_c00197{font-size:73.760204pt;}
.fsb_c00197{font-size:83.077299pt;}
.fse_c00197{font-size:84.013607pt;}
.fs4_c00197{font-size:107.352705pt;}
.y0_c00197{bottom:0.000000pt;}
.yb8_c00197{bottom:140.878621pt;}
.yb9_c00197{bottom:141.188381pt;}
.yba_c00197{bottom:141.562631pt;}
.ybb_c00197{bottom:141.945211pt;}
.ybc_c00197{bottom:142.198665pt;}
.ybd_c00197{bottom:142.378992pt;}
.ybe_c00197{bottom:142.795907pt;}
.ybf_c00197{bottom:143.130116pt;}
.yc0_c00197{bottom:143.400100pt;}
.yc1_c00197{bottom:143.909737pt;}
.yc2_c00197{bottom:144.084608pt;}
.yc3_c00197{bottom:144.564531pt;}
.yc4_c00197{bottom:144.736556pt;}
.yc5_c00197{bottom:145.179064pt;}
.yc6_c00197{bottom:145.246017pt;}
.yc7_c00197{bottom:145.504224pt;}
.yc8_c00197{bottom:145.795240pt;}
.ya7_c00197{bottom:156.926667pt;}
.ya8_c00197{bottom:157.230164pt;}
.ya9_c00197{bottom:157.441349pt;}
.yaa_c00197{bottom:157.705995pt;}
.yab_c00197{bottom:158.362944pt;}
.yac_c00197{bottom:158.640599pt;}
.yad_c00197{bottom:158.817611pt;}
.yae_c00197{bottom:159.252668pt;}
.yaf_c00197{bottom:159.575129pt;}
.yb0_c00197{bottom:159.743869pt;}
.yb1_c00197{bottom:159.915279pt;}
.yb2_c00197{bottom:160.187507pt;}
.yb3_c00197{bottom:160.437368pt;}
.yb4_c00197{bottom:160.496108pt;}
.yb5_c00197{bottom:161.140019pt;}
.yb6_c00197{bottom:161.336039pt;}
.yb7_c00197{bottom:161.610496pt;}
.y94_c00197{bottom:172.801333pt;}
.y95_c00197{bottom:173.433957pt;}
.y96_c00197{bottom:173.725269pt;}
.y97_c00197{bottom:174.077013pt;}
.y98_c00197{bottom:174.393333pt;}
.y99_c00197{bottom:174.603973pt;}
.y9a_c00197{bottom:174.797029pt;}
.y9b_c00197{bottom:174.967141pt;}
.y9c_c00197{bottom:175.457189pt;}
.y9d_c00197{bottom:175.798885pt;}
.y9e_c00197{bottom:175.955605pt;}
.y9f_c00197{bottom:176.226517pt;}
.ya0_c00197{bottom:176.656453pt;}
.ya1_c00197{bottom:176.678485pt;}
.ya2_c00197{bottom:176.911237pt;}
.ya3_c00197{bottom:177.033125pt;}
.ya4_c00197{bottom:177.590069pt;}
.ya5_c00197{bottom:177.744325pt;}
.ya6_c00197{bottom:177.939077pt;}
.y8a_c00197{bottom:188.881333pt;}
.y8b_c00197{bottom:189.180871pt;}
.y8c_c00197{bottom:189.715240pt;}
.y8d_c00197{bottom:189.874273pt;}
.y8e_c00197{bottom:190.142091pt;}
.y8f_c00197{bottom:190.479865pt;}
.y90_c00197{bottom:191.053651pt;}
.y91_c00197{bottom:191.431899pt;}
.y92_c00197{bottom:191.734643pt;}
.y93_c00197{bottom:192.593059pt;}
.y89_c00197{bottom:205.752000pt;}
.y88_c00197{bottom:222.036000pt;}
.y87_c00197{bottom:237.514667pt;}
.y7f_c00197{bottom:252.002667pt;}
.y80_c00197{bottom:252.214635pt;}
.y81_c00197{bottom:253.091691pt;}
.y82_c00197{bottom:253.259283pt;}
.y83_c00197{bottom:253.566891pt;}
.y84_c00197{bottom:254.236539pt;}
.y85_c00197{bottom:254.634003pt;}
.y86_c00197{bottom:254.841411pt;}
.y76_c00197{bottom:341.764000pt;}
.y77_c00197{bottom:342.177808pt;}
.y78_c00197{bottom:343.259200pt;}
.y79_c00197{bottom:344.437120pt;}
.y7a_c00197{bottom:344.745256pt;}
.y7b_c00197{bottom:345.419368pt;}
.y7c_c00197{bottom:345.971920pt;}
.y7d_c00197{bottom:346.447672pt;}
.y7e_c00197{bottom:347.645800pt;}
.y6e_c00197{bottom:362.885333pt;}
.y6f_c00197{bottom:363.493227pt;}
.y70_c00197{bottom:364.411051pt;}
.y71_c00197{bottom:365.332843pt;}
.y72_c00197{bottom:365.712213pt;}
.y73_c00197{bottom:366.288256pt;}
.y74_c00197{bottom:366.807872pt;}
.y75_c00197{bottom:367.636032pt;}
.y6c_c00197{bottom:383.529995pt;}
.y6d_c00197{bottom:384.150037pt;}
.y64_c00197{bottom:403.204000pt;}
.y65_c00197{bottom:403.964440pt;}
.y66_c00197{bottom:404.642488pt;}
.y67_c00197{bottom:405.278056pt;}
.y68_c00197{bottom:406.044040pt;}
.y69_c00197{bottom:406.427824pt;}
.y6a_c00197{bottom:407.344360pt;}
.y6b_c00197{bottom:408.000808pt;}
.y5c_c00197{bottom:423.365333pt;}
.y5d_c00197{bottom:423.920813pt;}
.y5e_c00197{bottom:424.510109pt;}
.y5f_c00197{bottom:424.871693pt;}
.y60_c00197{bottom:425.417237pt;}
.y61_c00197{bottom:426.488813pt;}
.y62_c00197{bottom:427.162709pt;}
.y63_c00197{bottom:428.033573pt;}
.y52_c00197{bottom:444.006667pt;}
.y53_c00197{bottom:444.853788pt;}
.y54_c00197{bottom:445.748645pt;}
.y55_c00197{bottom:446.495716pt;}
.y56_c00197{bottom:446.547713pt;}
.y57_c00197{bottom:446.806929pt;}
.y58_c00197{bottom:447.100848pt;}
.y59_c00197{bottom:447.511749pt;}
.y5a_c00197{bottom:447.781551pt;}
.y5b_c00197{bottom:448.248665pt;}
.y4f_c00197{bottom:464.621333pt;}
.y50_c00197{bottom:465.762859pt;}
.y51_c00197{bottom:469.359189pt;}
.y48_c00197{bottom:486.240000pt;}
.y49_c00197{bottom:486.731027pt;}
.y4a_c00197{bottom:487.048771pt;}
.y4b_c00197{bottom:487.347867pt;}
.y4c_c00197{bottom:487.821533pt;}
.y4d_c00197{bottom:488.662672pt;}
.y4e_c00197{bottom:489.489195pt;}
.y3f_c00197{bottom:524.876232pt;}
.y40_c00197{bottom:525.458057pt;}
.y41_c00197{bottom:526.158817pt;}
.y42_c00197{bottom:526.703564pt;}
.y43_c00197{bottom:526.774680pt;}
.y44_c00197{bottom:528.612933pt;}
.y45_c00197{bottom:529.232332pt;}
.y46_c00197{bottom:530.070541pt;}
.y47_c00197{bottom:530.484888pt;}
.y35_c00197{bottom:545.280953pt;}
.y36_c00197{bottom:545.889839pt;}
.y37_c00197{bottom:546.472911pt;}
.y38_c00197{bottom:547.465819pt;}
.y39_c00197{bottom:547.768933pt;}
.y3a_c00197{bottom:548.516356pt;}
.y3b_c00197{bottom:549.419539pt;}
.y3c_c00197{bottom:549.596560pt;}
.y3d_c00197{bottom:550.024276pt;}
.y3e_c00197{bottom:551.185547pt;}
.y2c_c00197{bottom:565.685333pt;}
.y2d_c00197{bottom:566.310797pt;}
.y2e_c00197{bottom:567.036584pt;}
.y2f_c00197{bottom:567.290972pt;}
.y30_c00197{bottom:567.617939pt;}
.y31_c00197{bottom:568.725319pt;}
.y32_c00197{bottom:569.300871pt;}
.y33_c00197{bottom:569.774627pt;}
.y34_c00197{bottom:570.104653pt;}
.y23_c00197{bottom:605.263225pt;}
.y24_c00197{bottom:606.600919pt;}
.y26_c00197{bottom:607.885545pt;}
.y25_c00197{bottom:607.895439pt;}
.y27_c00197{bottom:608.166684pt;}
.y28_c00197{bottom:608.493084pt;}
.y29_c00197{bottom:609.113864pt;}
.y2a_c00197{bottom:609.478223pt;}
.y2b_c00197{bottom:610.451235pt;}
.y1f_c00197{bottom:626.864877pt;}
.y20_c00197{bottom:629.335569pt;}
.y21_c00197{bottom:631.526333pt;}
.y22_c00197{bottom:632.441684pt;}
.y1e_c00197{bottom:651.378721pt;}
.y1b_c00197{bottom:651.378893pt;}
.y1a_c00197{bottom:651.378983pt;}
.y1d_c00197{bottom:651.379025pt;}
.y1c_c00197{bottom:651.379233pt;}
.y19_c00197{bottom:651.379260pt;}
.y18_c00197{bottom:651.379707pt;}
.y13_c00197{bottom:669.573333pt;}
.y14_c00197{bottom:670.241061pt;}
.y15_c00197{bottom:670.648437pt;}
.y16_c00197{bottom:671.259069pt;}
.y17_c00197{bottom:671.671557pt;}
.y11_c00197{bottom:703.923016pt;}
.y12_c00197{bottom:706.659043pt;}
.y7_c00197{bottom:721.445333pt;}
.y8_c00197{bottom:722.854551pt;}
.y9_c00197{bottom:723.292843pt;}
.ya_c00197{bottom:723.919437pt;}
.yb_c00197{bottom:724.433755pt;}
.yc_c00197{bottom:726.397113pt;}
.yd_c00197{bottom:727.064495pt;}
.ye_c00197{bottom:727.716879pt;}
.yf_c00197{bottom:728.340180pt;}
.y10_c00197{bottom:729.017365pt;}
.y4_c00197{bottom:766.572000pt;}
.y5_c00197{bottom:768.832692pt;}
.y6_c00197{bottom:769.718364pt;}
.y2_c00197{bottom:802.326667pt;}
.y3_c00197{bottom:805.299955pt;}
.y1_c00197{bottom:819.453333pt;}
.h14_c00197{height:42.933333pt;}
.h19_c00197{height:43.869321pt;}
.h16_c00197{height:44.800000pt;}
.h17_c00197{height:45.737198pt;}
.h1a_c00197{height:46.669490pt;}
.h18_c00197{height:46.670027pt;}
.h13_c00197{height:47.607711pt;}
.h15_c00197{height:48.533333pt;}
.h3_c00197{height:55.075587pt;}
.h2_c00197{height:57.866667pt;}
.hb_c00197{height:59.741964pt;}
.he_c00197{height:60.676494pt;}
.h11_c00197{height:61.607884pt;}
.h9_c00197{height:61.608901pt;}
.hf_c00197{height:61.609978pt;}
.hc_c00197{height:62.539461pt;}
.ha_c00197{height:62.542369pt;}
.h12_c00197{height:63.476947pt;}
.h7_c00197{height:65.357143pt;}
.h8_c00197{height:66.290816pt;}
.h5_c00197{height:67.212129pt;}
.h4_c00197{height:73.760204pt;}
.hd_c00197{height:83.077299pt;}
.h10_c00197{height:84.013607pt;}
.h6_c00197{height:107.352705pt;}
.h0_c00197{height:896.400000pt;}
.h1_c00197{height:896.666667pt;}
.w0_c00197{width:603.066667pt;}
.w1_c00197{width:603.333333pt;}
.x0_c00197{left:0.000000pt;}
.x14_c00197{left:70.441520pt;}
.x24_c00197{left:71.603641pt;}
.xa_c00197{left:75.846667pt;}
.x69_c00197{left:112.320000pt;}
.x8d_c00197{left:113.828879pt;}
.x60_c00197{left:121.124000pt;}
.x61_c00197{left:132.900000pt;}
.x6f_c00197{left:134.880000pt;}
.x4d_c00197{left:139.973333pt;}
.x65_c00197{left:142.320000pt;}
.x74_c00197{left:144.341333pt;}
.x70_c00197{left:148.800000pt;}
.xb_c00197{left:150.016000pt;}
.x32_c00197{left:151.635027pt;}
.x6a_c00197{left:161.520000pt;}
.x66_c00197{left:162.480000pt;}
.x82_c00197{left:168.568000pt;}
.x45_c00197{left:170.001333pt;}
.xc_c00197{left:173.084000pt;}
.x5a_c00197{left:174.881333pt;}
.x8e_c00197{left:176.011545pt;}
.x62_c00197{left:181.625333pt;}
.x3a_c00197{left:183.026321pt;}
.x33_c00197{left:185.490460pt;}
.x2b_c00197{left:187.553333pt;}
.x67_c00197{left:188.640000pt;}
.x55_c00197{left:190.262667pt;}
.x83_c00197{left:192.626667pt;}
.x1_c00197{left:193.920000pt;}
.x71_c00197{left:196.800000pt;}
.x78_c00197{left:198.833333pt;}
.x47_c00197{left:201.881333pt;}
.x5_c00197{left:203.909333pt;}
.x6b_c00197{left:204.960000pt;}
.xd_c00197{left:206.062667pt;}
.x63_c00197{left:208.025333pt;}
.x8f_c00197{left:210.791545pt;}
.x2_c00197{left:214.800000pt;}
.x34_c00197{left:217.905916pt;}
.x3b_c00197{left:221.972331pt;}
.x4e_c00197{left:223.660000pt;}
.x25_c00197{left:226.418735pt;}
.x79_c00197{left:228.145333pt;}
.x2c_c00197{left:230.246667pt;}
.x52_c00197{left:231.808000pt;}
.xe_c00197{left:233.132000pt;}
.x5b_c00197{left:234.958667pt;}
.x6c_c00197{left:237.360000pt;}
.x7_c00197{left:238.993333pt;}
.x46_c00197{left:241.346667pt;}
.x26_c00197{left:242.345685pt;}
.x72_c00197{left:244.080000pt;}
.x2d_c00197{left:245.210667pt;}
.x21_c00197{left:246.353461pt;}
.x56_c00197{left:247.626667pt;}
.x90_c00197{left:250.226212pt;}
.x3c_c00197{left:252.211809pt;}
.x4f_c00197{left:253.968000pt;}
.x1a_c00197{left:255.350591pt;}
.x6d_c00197{left:257.040000pt;}
.x73_c00197{left:260.160000pt;}
.x27_c00197{left:261.550869pt;}
.x3_c00197{left:265.200000pt;}
.x53_c00197{left:267.117333pt;}
.x6e_c00197{left:268.320000pt;}
.x7a_c00197{left:272.058667pt;}
.x35_c00197{left:273.095653pt;}
.x1b_c00197{left:274.557928pt;}
.x84_c00197{left:277.590667pt;}
.x64_c00197{left:278.832000pt;}
.x15_c00197{left:281.358667pt;}
.x68_c00197{left:285.600000pt;}
.x75_c00197{left:288.401333pt;}
.x1c_c00197{left:290.163971pt;}
.x85_c00197{left:293.682667pt;}
.x28_c00197{left:298.034031pt;}
.x5c_c00197{left:300.398667pt;}
.x48_c00197{left:301.524000pt;}
.x16_c00197{left:306.089333pt;}
.x3f_c00197{left:310.120000pt;}
.x50_c00197{left:313.500000pt;}
.x49_c00197{left:316.772000pt;}
.x91_c00197{left:318.510212pt;}
.x29_c00197{left:319.435791pt;}
.x17_c00197{left:321.177333pt;}
.x8_c00197{left:322.722667pt;}
.x2e_c00197{left:329.584000pt;}
.x36_c00197{left:331.439989pt;}
.x40_c00197{left:332.816000pt;}
.x4a_c00197{left:334.061333pt;}
.xf_c00197{left:336.466667pt;}
.x76_c00197{left:340.785333pt;}
.x18_c00197{left:343.793333pt;}
.x4_c00197{left:350.400000pt;}
.x41_c00197{left:354.180000pt;}
.x9_c00197{left:355.525333pt;}
.x19_c00197{left:359.070667pt;}
.x86_c00197{left:362.548000pt;}
.x2f_c00197{left:363.440000pt;}
.x57_c00197{left:364.952000pt;}
.x1d_c00197{left:368.192815pt;}
.x6_c00197{left:369.092000pt;}
.x10_c00197{left:371.592000pt;}
.x4b_c00197{left:374.102667pt;}
.x2a_c00197{left:376.673901pt;}
.x87_c00197{left:377.888000pt;}
.x37_c00197{left:381.587128pt;}
.x7b_c00197{left:384.694667pt;}
.x5d_c00197{left:385.665333pt;}
.x42_c00197{left:388.013333pt;}
.x92_c00197{left:389.384879pt;}
.x30_c00197{left:391.308000pt;}
.x3d_c00197{left:392.646740pt;}
.x58_c00197{left:397.428000pt;}
.x51_c00197{left:399.320000pt;}
.x4c_c00197{left:401.580000pt;}
.x22_c00197{left:402.806992pt;}
.x11_c00197{left:405.928000pt;}
.x77_c00197{left:406.817333pt;}
.x31_c00197{left:410.721333pt;}
.x5e_c00197{left:412.096000pt;}
.x38_c00197{left:415.198561pt;}
.x54_c00197{left:418.381333pt;}
.x1e_c00197{left:423.653207pt;}
.x12_c00197{left:438.733333pt;}
.x88_c00197{left:440.933333pt;}
.x7c_c00197{left:443.098667pt;}
.x7d_c00197{left:444.934667pt;}
.x89_c00197{left:446.273333pt;}
.x43_c00197{left:448.094667pt;}
.x59_c00197{left:449.188000pt;}
.x1f_c00197{left:452.703708pt;}
.x3e_c00197{left:462.246895pt;}
.x7e_c00197{left:464.330667pt;}
.x20_c00197{left:466.628527pt;}
.x23_c00197{left:468.188591pt;}
.x13_c00197{left:474.374667pt;}
.x5f_c00197{left:478.658667pt;}
.x39_c00197{left:479.742807pt;}
.x8a_c00197{left:504.810667pt;}
.x44_c00197{left:507.132000pt;}
.x93_c00197{left:510.864879pt;}
.x7f_c00197{left:520.900000pt;}
.x8b_c00197{left:522.630667pt;}
.x80_c00197{left:533.754667pt;}
.x8c_c00197{left:547.581333pt;}
.x81_c00197{left:549.984000pt;}
.x94_c00197{left:560.794212pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m49_c00198{transform:matrix(0.015639,-0.000203,0.003250,0.249979,0,0);-ms-transform:matrix(0.015639,-0.000203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.015639,-0.000203,0.003250,0.249979,0,0);}
.m30_c00198{transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.133049,-0.001730,0.003250,0.249979,0,0);-ms-transform:matrix(0.133049,-0.001730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.133049,-0.001730,0.003250,0.249979,0,0);}
.m7a_c00198{transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.153321,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153321,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153321,-0.001687,0.002750,0.249985,0,0);}
.m32_c00198{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);}
.m78_c00198{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);}
.m7c_c00198{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);}
.m61_c00198{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);}
.m33_c00198{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.164774,-0.002636,0.003999,0.249968,0,0);-ms-transform:matrix(0.164774,-0.002636,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164774,-0.002636,0.003999,0.249968,0,0);}
.m21_c00198{transform:matrix(0.166489,-0.002664,0.003999,0.249968,0,0);-ms-transform:matrix(0.166489,-0.002664,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166489,-0.002664,0.003999,0.249968,0,0);}
.m42_c00198{transform:matrix(0.167216,-0.002174,0.003250,0.249979,0,0);-ms-transform:matrix(0.167216,-0.002174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167216,-0.002174,0.003250,0.249979,0,0);}
.m11_c00198{transform:matrix(0.167479,-0.002680,0.003999,0.249968,0,0);-ms-transform:matrix(0.167479,-0.002680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167479,-0.002680,0.003999,0.249968,0,0);}
.m28_c00198{transform:matrix(0.167785,-0.001846,0.002750,0.249985,0,0);-ms-transform:matrix(0.167785,-0.001846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167785,-0.001846,0.002750,0.249985,0,0);}
.m4e_c00198{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);}
.m4c_c00198{transform:matrix(0.170176,-0.002212,0.003250,0.249979,0,0);-ms-transform:matrix(0.170176,-0.002212,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170176,-0.002212,0.003250,0.249979,0,0);}
.m69_c00198{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);}
.m24_c00198{transform:matrix(0.171025,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.171025,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171025,-0.001881,0.002750,0.249985,0,0);}
.m51_c00198{transform:matrix(0.175710,-0.002284,0.003250,0.249979,0,0);-ms-transform:matrix(0.175710,-0.002284,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175710,-0.002284,0.003250,0.249979,0,0);}
.m35_c00198{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);}
.m20_c00198{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);}
.m37_c00198{transform:matrix(0.177730,-0.002310,0.003250,0.249979,0,0);-ms-transform:matrix(0.177730,-0.002310,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177730,-0.002310,0.003250,0.249979,0,0);}
.me_c00198{transform:matrix(0.177787,-0.002845,0.003999,0.249968,0,0);-ms-transform:matrix(0.177787,-0.002845,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177787,-0.002845,0.003999,0.249968,0,0);}
.m7f_c00198{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);}
.m76_c00198{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);}
.m15_c00198{transform:matrix(0.180022,-0.002880,0.003999,0.249968,0,0);-ms-transform:matrix(0.180022,-0.002880,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180022,-0.002880,0.003999,0.249968,0,0);}
.m36_c00198{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);}
.m4d_c00198{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);}
.m7b_c00198{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);}
.m80_c00198{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);}
.m47_c00198{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);}
.m34_c00198{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);}
.m4b_c00198{transform:matrix(0.187314,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187314,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187314,-0.002435,0.003250,0.249979,0,0);}
.m46_c00198{transform:matrix(0.190349,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190349,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190349,-0.002475,0.003250,0.249979,0,0);}
.m54_c00198{transform:matrix(0.190789,-0.002480,0.003250,0.249979,0,0);-ms-transform:matrix(0.190789,-0.002480,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190789,-0.002480,0.003250,0.249979,0,0);}
.m4_c00198{transform:matrix(0.190981,-0.003056,0.003999,0.249968,0,0);-ms-transform:matrix(0.190981,-0.003056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190981,-0.003056,0.003999,0.249968,0,0);}
.m7e_c00198{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);}
.m75_c00198{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);}
.m43_c00198{transform:matrix(0.195099,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195099,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195099,-0.002536,0.003250,0.249979,0,0);}
.mc_c00198{transform:matrix(0.195245,-0.003124,0.003999,0.249968,0,0);-ms-transform:matrix(0.195245,-0.003124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195245,-0.003124,0.003999,0.249968,0,0);}
.m1b_c00198{transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);-ms-transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);}
.m5_c00198{transform:matrix(0.197640,-0.003162,0.003999,0.249968,0,0);-ms-transform:matrix(0.197640,-0.003162,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197640,-0.003162,0.003999,0.249968,0,0);}
.m23_c00198{transform:matrix(0.199433,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199433,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199433,-0.002194,0.002750,0.249985,0,0);}
.m1d_c00198{transform:matrix(0.200024,-0.003200,0.003999,0.249968,0,0);-ms-transform:matrix(0.200024,-0.003200,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200024,-0.003200,0.003999,0.249968,0,0);}
.m79_c00198{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);}
.m2a_c00198{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m41_c00198{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);}
.m31_c00198{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);}
.m52_c00198{transform:matrix(0.204543,-0.002659,0.003250,0.249979,0,0);-ms-transform:matrix(0.204543,-0.002659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204543,-0.002659,0.003250,0.249979,0,0);}
.m53_c00198{transform:matrix(0.207043,-0.002692,0.003250,0.249979,0,0);-ms-transform:matrix(0.207043,-0.002692,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207043,-0.002692,0.003250,0.249979,0,0);}
.m12_c00198{transform:matrix(0.208553,-0.003337,0.003999,0.249968,0,0);-ms-transform:matrix(0.208553,-0.003337,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208553,-0.003337,0.003999,0.249968,0,0);}
.md_c00198{transform:matrix(0.208948,-0.003343,0.003999,0.249968,0,0);-ms-transform:matrix(0.208948,-0.003343,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208948,-0.003343,0.003999,0.249968,0,0);}
.m1_c00198{transform:matrix(0.209191,-0.003765,0.004499,0.249960,0,0);-ms-transform:matrix(0.209191,-0.003765,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209191,-0.003765,0.004499,0.249960,0,0);}
.m3e_c00198{transform:matrix(0.209987,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.209987,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209987,-0.002730,0.003250,0.249979,0,0);}
.m10_c00198{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);}
.m9_c00198{transform:matrix(0.211768,-0.003388,0.003999,0.249968,0,0);-ms-transform:matrix(0.211768,-0.003388,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211768,-0.003388,0.003999,0.249968,0,0);}
.m85_c00198{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);}
.m44_c00198{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);}
.m6c_c00198{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);}
.m68_c00198{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);}
.m66_c00198{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);}
.m77_c00198{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_c00198{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{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);}
.m1f_c00198{transform:matrix(0.226156,-0.003618,0.003999,0.249968,0,0);-ms-transform:matrix(0.226156,-0.003618,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226156,-0.003618,0.003999,0.249968,0,0);}
.m59_c00198{transform:matrix(0.226371,-0.002943,0.003250,0.249979,0,0);-ms-transform:matrix(0.226371,-0.002943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226371,-0.002943,0.003250,0.249979,0,0);}
.m6a_c00198{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.227533,-0.004096,0.004499,0.249960,0,0);-ms-transform:matrix(0.227533,-0.004096,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227533,-0.004096,0.004499,0.249960,0,0);}
.m65_c00198{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);}
.m6d_c00198{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);}
.m5e_c00198{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);}
.m5f_c00198{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);}
.m4a_c00198{transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);-ms-transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);}
.m45_c00198{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);}
.m16_c00198{transform:matrix(0.236455,-0.003783,0.003999,0.249968,0,0);-ms-transform:matrix(0.236455,-0.003783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236455,-0.003783,0.003999,0.249968,0,0);}
.m74_c00198{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);}
.m81_c00198{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.238984,-0.003824,0.003999,0.249968,0,0);-ms-transform:matrix(0.238984,-0.003824,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238984,-0.003824,0.003999,0.249968,0,0);}
.m7_c00198{transform:matrix(0.240604,-0.003850,0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,-0.003850,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,-0.003850,0.003999,0.249968,0,0);}
.m5c_c00198{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{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);}
.ma_c00198{transform:matrix(0.248008,-0.003968,0.003999,0.249968,0,0);-ms-transform:matrix(0.248008,-0.003968,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248008,-0.003968,0.003999,0.249968,0,0);}
.m6e_c00198{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.251348,-0.004022,0.003999,0.249968,0,0);-ms-transform:matrix(0.251348,-0.004022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251348,-0.004022,0.003999,0.249968,0,0);}
.m2f_c00198{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);}
.m6b_c00198{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);}
.m2b_c00198{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);}
.m67_c00198{transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.275087,-0.003576,0.003250,0.249979,0,0);-ms-transform:matrix(0.275087,-0.003576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275087,-0.003576,0.003250,0.249979,0,0);}
.mf_c00198{transform:matrix(0.275560,-0.004409,0.003999,0.249968,0,0);-ms-transform:matrix(0.275560,-0.004409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275560,-0.004409,0.003999,0.249968,0,0);}
.mb_c00198{transform:matrix(0.282369,-0.004518,0.003999,0.249968,0,0);-ms-transform:matrix(0.282369,-0.004518,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282369,-0.004518,0.003999,0.249968,0,0);}
.m48_c00198{transform:matrix(0.283521,-0.003686,0.003250,0.249979,0,0);-ms-transform:matrix(0.283521,-0.003686,0.003250,0.249979,0,0);-webkit-transform:matrix(0.283521,-0.003686,0.003250,0.249979,0,0);}
.m22_c00198{transform:matrix(0.287228,-0.003160,0.002750,0.249985,0,0);-ms-transform:matrix(0.287228,-0.003160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287228,-0.003160,0.002750,0.249985,0,0);}
.m25_c00198{transform:matrix(0.291257,-0.003204,0.002750,0.249985,0,0);-ms-transform:matrix(0.291257,-0.003204,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291257,-0.003204,0.002750,0.249985,0,0);}
.m5b_c00198{transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.299027,-0.004784,0.003999,0.249968,0,0);-ms-transform:matrix(0.299027,-0.004784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299027,-0.004784,0.003999,0.249968,0,0);}
.m6_c00198{transform:matrix(0.300712,-0.004811,0.003999,0.249968,0,0);-ms-transform:matrix(0.300712,-0.004811,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300712,-0.004811,0.003999,0.249968,0,0);}
.m13_c00198{transform:matrix(0.301731,-0.004828,0.003999,0.249968,0,0);-ms-transform:matrix(0.301731,-0.004828,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301731,-0.004828,0.003999,0.249968,0,0);}
.m3c_c00198{transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);-ms-transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305049,-0.003966,0.003250,0.249979,0,0);}
.m3b_c00198{transform:matrix(0.306699,-0.003987,0.003250,0.249979,0,0);-ms-transform:matrix(0.306699,-0.003987,0.003250,0.249979,0,0);-webkit-transform:matrix(0.306699,-0.003987,0.003250,0.249979,0,0);}
.m3_c00198{transform:matrix(0.312740,-0.005004,0.003999,0.249968,0,0);-ms-transform:matrix(0.312740,-0.005004,0.003999,0.249968,0,0);-webkit-transform:matrix(0.312740,-0.005004,0.003999,0.249968,0,0);}
.m17_c00198{transform:matrix(0.312910,-0.005007,0.003999,0.249968,0,0);-ms-transform:matrix(0.312910,-0.005007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.312910,-0.005007,0.003999,0.249968,0,0);}
.m3f_c00198{transform:matrix(0.320583,-0.004168,0.003250,0.249979,0,0);-ms-transform:matrix(0.320583,-0.004168,0.003250,0.249979,0,0);-webkit-transform:matrix(0.320583,-0.004168,0.003250,0.249979,0,0);}
.m70_c00198{transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.328892,-0.004276,0.003250,0.249979,0,0);-ms-transform:matrix(0.328892,-0.004276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.328892,-0.004276,0.003250,0.249979,0,0);}
.m0_c00198{transform:matrix(0.333776,-0.006008,0.004499,0.249960,0,0);-ms-transform:matrix(0.333776,-0.006008,0.004499,0.249960,0,0);-webkit-transform:matrix(0.333776,-0.006008,0.004499,0.249960,0,0);}
.m39_c00198{transform:matrix(0.336482,-0.004374,0.003250,0.249979,0,0);-ms-transform:matrix(0.336482,-0.004374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336482,-0.004374,0.003250,0.249979,0,0);}
.m19_c00198{transform:matrix(0.336737,-0.005388,0.003999,0.249968,0,0);-ms-transform:matrix(0.336737,-0.005388,0.003999,0.249968,0,0);-webkit-transform:matrix(0.336737,-0.005388,0.003999,0.249968,0,0);}
.m57_c00198{transform:matrix(0.343366,-0.004464,0.003250,0.249979,0,0);-ms-transform:matrix(0.343366,-0.004464,0.003250,0.249979,0,0);-webkit-transform:matrix(0.343366,-0.004464,0.003250,0.249979,0,0);}
.m72_c00198{transform:matrix(0.345355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345355,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.347361,-0.004516,0.003250,0.249979,0,0);-ms-transform:matrix(0.347361,-0.004516,0.003250,0.249979,0,0);-webkit-transform:matrix(0.347361,-0.004516,0.003250,0.249979,0,0);}
.m38_c00198{transform:matrix(0.349165,-0.004539,0.003250,0.249979,0,0);-ms-transform:matrix(0.349165,-0.004539,0.003250,0.249979,0,0);-webkit-transform:matrix(0.349165,-0.004539,0.003250,0.249979,0,0);}
.m40_c00198{transform:matrix(0.351105,-0.004564,0.003250,0.249979,0,0);-ms-transform:matrix(0.351105,-0.004564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.351105,-0.004564,0.003250,0.249979,0,0);}
.m1a_c00198{transform:matrix(0.351605,-0.005626,0.003999,0.249968,0,0);-ms-transform:matrix(0.351605,-0.005626,0.003999,0.249968,0,0);-webkit-transform:matrix(0.351605,-0.005626,0.003999,0.249968,0,0);}
.m64_c00198{transform:matrix(0.376915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376915,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.390315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390315,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.397900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397900,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.400430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400430,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.401016,-0.005213,0.003250,0.249979,0,0);-ms-transform:matrix(0.401016,-0.005213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.401016,-0.005213,0.003250,0.249979,0,0);}
.m2d_c00198{transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.439425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.471455,-0.006129,0.003250,0.249979,0,0);-ms-transform:matrix(0.471455,-0.006129,0.003250,0.249979,0,0);-webkit-transform:matrix(0.471455,-0.006129,0.003250,0.249979,0,0);}
.m29_c00198{transform:matrix(0.506484,-0.005571,0.002750,0.249985,0,0);-ms-transform:matrix(0.506484,-0.005571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.506484,-0.005571,0.002750,0.249985,0,0);}
.m84_c00198{transform:matrix(0.513490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513490,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.513865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513865,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.550613,-0.007158,0.003250,0.249979,0,0);-ms-transform:matrix(0.550613,-0.007158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.550613,-0.007158,0.003250,0.249979,0,0);}
.m8_c00198{transform:matrix(0.623615,-0.009978,0.003999,0.249968,0,0);-ms-transform:matrix(0.623615,-0.009978,0.003999,0.249968,0,0);-webkit-transform:matrix(0.623615,-0.009978,0.003999,0.249968,0,0);}
.m3a_c00198{transform:matrix(0.653340,-0.008493,0.003250,0.249979,0,0);-ms-transform:matrix(0.653340,-0.008493,0.003250,0.249979,0,0);-webkit-transform:matrix(0.653340,-0.008493,0.003250,0.249979,0,0);}
.m27_c00198{transform:matrix(0.667540,-0.007343,0.002750,0.249985,0,0);-ms-transform:matrix(0.667540,-0.007343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.667540,-0.007343,0.002750,0.249985,0,0);}
.m63_c00198{transform:matrix(0.685755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685755,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;}
.fsd_c00198{font-size:46.200000px;}
.fs7_c00198{font-size:46.203904px;}
.fs5_c00198{font-size:48.300000px;}
.fsa_c00198{font-size:50.404259px;}
.fs6_c00198{font-size:52.500000px;}
.fs9_c00198{font-size:54.604614px;}
.fsc_c00198{font-size:57.750000px;}
.fsb_c00198{font-size:58.800000px;}
.fs8_c00198{font-size:60.905146px;}
.fs1_c00198{font-size:68.258735px;}
.fs2_c00198{font-size:69.308870px;}
.fs4_c00198{font-size:72.454383px;}
.fs3_c00198{font-size:73.509407px;}
.fs0_c00198{font-size:127.070580px;}
.y0_c00198{bottom:0.000000px;}
.y58_c00198{bottom:203.308500px;}
.y53_c00198{bottom:204.370500px;}
.y52_c00198{bottom:221.898000px;}
.y51_c00198{bottom:239.690118px;}
.y50_c00198{bottom:239.690366px;}
.y57_c00198{bottom:256.324500px;}
.y47_c00198{bottom:256.949991px;}
.y48_c00198{bottom:257.420591px;}
.y49_c00198{bottom:257.702580px;}
.y4a_c00198{bottom:258.247200px;}
.y4b_c00198{bottom:258.894264px;}
.y4c_c00198{bottom:259.454090px;}
.y4d_c00198{bottom:259.836339px;}
.y4e_c00198{bottom:260.451647px;}
.y4f_c00198{bottom:260.737886px;}
.y56_c00198{bottom:274.203000px;}
.y40_c00198{bottom:274.861893px;}
.y41_c00198{bottom:274.995704px;}
.y42_c00198{bottom:275.757096px;}
.y43_c00198{bottom:276.170733px;}
.y44_c00198{bottom:276.376977px;}
.y45_c00198{bottom:277.019982px;}
.y46_c00198{bottom:278.369144px;}
.y55_c00198{bottom:291.669000px;}
.y38_c00198{bottom:292.618437px;}
.y39_c00198{bottom:293.132940px;}
.y3a_c00198{bottom:294.037312px;}
.y3b_c00198{bottom:294.570472px;}
.y3c_c00198{bottom:294.869513px;}
.y3d_c00198{bottom:295.208831px;}
.y3e_c00198{bottom:295.979016px;}
.y3f_c00198{bottom:296.756435px;}
.y54_c00198{bottom:309.463500px;}
.y2e_c00198{bottom:310.771500px;}
.y2f_c00198{bottom:310.899674px;}
.y30_c00198{bottom:311.166375px;}
.y31_c00198{bottom:311.622812px;}
.y32_c00198{bottom:311.931341px;}
.y33_c00198{bottom:312.351858px;}
.y34_c00198{bottom:312.486408px;}
.y35_c00198{bottom:312.853925px;}
.y36_c00198{bottom:313.111227px;}
.y37_c00198{bottom:313.846494px;}
.y2d_c00198{bottom:382.045500px;}
.y2c_c00198{bottom:399.954000px;}
.y23_c00198{bottom:497.071500px;}
.y24_c00198{bottom:497.234965px;}
.y25_c00198{bottom:497.658537px;}
.y26_c00198{bottom:497.965074px;}
.y27_c00198{bottom:498.175795px;}
.y28_c00198{bottom:498.927783px;}
.y29_c00198{bottom:499.311028px;}
.y2a_c00198{bottom:499.699719px;}
.y2b_c00198{bottom:500.059006px;}
.y1a_c00198{bottom:518.397576px;}
.y1b_c00198{bottom:518.875920px;}
.y1c_c00198{bottom:519.473328px;}
.y1d_c00198{bottom:520.289280px;}
.y1e_c00198{bottom:520.565784px;}
.y1f_c00198{bottom:521.473224px;}
.y20_c00198{bottom:522.337104px;}
.y21_c00198{bottom:522.729336px;}
.y22_c00198{bottom:523.365264px;}
.yd_c00198{bottom:541.080324px;}
.ye_c00198{bottom:541.410960px;}
.yf_c00198{bottom:541.874808px;}
.y10_c00198{bottom:542.682864px;}
.y11_c00198{bottom:543.126324px;}
.y12_c00198{bottom:543.604992px;}
.y13_c00198{bottom:544.035564px;}
.y14_c00198{bottom:544.371480px;}
.y15_c00198{bottom:544.955052px;}
.y16_c00198{bottom:545.867868px;}
.y17_c00198{bottom:546.328212px;}
.y18_c00198{bottom:547.347564px;}
.y19_c00198{bottom:547.635888px;}
.y4_c00198{bottom:564.036000px;}
.y5_c00198{bottom:565.143264px;}
.y6_c00198{bottom:566.170176px;}
.y7_c00198{bottom:566.683872px;}
.y8_c00198{bottom:567.579480px;}
.y9_c00198{bottom:567.932952px;}
.ya_c00198{bottom:568.752000px;}
.yb_c00198{bottom:569.421384px;}
.yc_c00198{bottom:569.822808px;}
.y1_c00198{bottom:881.829000px;}
.y2_c00198{bottom:885.169116px;}
.y3_c00198{bottom:886.495896px;}
.hf_c00198{height:46.200000px;}
.h9_c00198{height:46.203904px;}
.h7_c00198{height:48.300000px;}
.hc_c00198{height:50.404259px;}
.h8_c00198{height:52.500000px;}
.hb_c00198{height:54.604614px;}
.he_c00198{height:57.750000px;}
.hd_c00198{height:58.800000px;}
.ha_c00198{height:60.905146px;}
.h3_c00198{height:68.258735px;}
.h4_c00198{height:69.308870px;}
.h6_c00198{height:72.454383px;}
.h5_c00198{height:73.509407px;}
.h2_c00198{height:127.070580px;}
.h1_c00198{height:1005.000000px;}
.h0_c00198{height:1005.150000px;}
.w0_c00198{width:735.750000px;}
.x0_c00198{left:0.000000px;}
.x60_c00198{left:83.430000px;}
.x5b_c00198{left:104.760000px;}
.x51_c00198{left:108.000000px;}
.x54_c00198{left:109.620000px;}
.x23_c00198{left:127.342500px;}
.x1a_c00198{left:137.964024px;}
.xd_c00198{left:140.867436px;}
.x4_c00198{left:141.886500px;}
.x5c_c00198{left:147.690000px;}
.x55_c00198{left:157.140000px;}
.xe_c00198{left:160.313124px;}
.x1b_c00198{left:167.860524px;}
.x56_c00198{left:172.800000px;}
.x24_c00198{left:180.709500px;}
.xf_c00198{left:187.615692px;}
.x2e_c00198{left:189.540000px;}
.x2f_c00198{left:194.670000px;}
.x1_c00198{left:202.500000px;}
.x1c_c00198{left:205.198524px;}
.x25_c00198{left:208.576500px;}
.x5_c00198{left:211.090500px;}
.x2a_c00198{left:214.920000px;}
.x30_c00198{left:216.810000px;}
.x57_c00198{left:222.480000px;}
.x2b_c00198{left:225.720000px;}
.x26_c00198{left:227.733000px;}
.x10_c00198{left:235.118424px;}
.x58_c00198{left:243.540000px;}
.x5d_c00198{left:245.430000px;}
.x52_c00198{left:253.260000px;}
.x1d_c00198{left:256.195524px;}
.x31_c00198{left:257.310000px;}
.x61_c00198{left:258.390000px;}
.x11_c00198{left:261.240516px;}
.x5e_c00198{left:268.650000px;}
.x1e_c00198{left:273.477024px;}
.x6_c00198{left:275.272500px;}
.x2c_c00198{left:277.020000px;}
.x12_c00198{left:289.375560px;}
.x32_c00198{left:292.410000px;}
.x27_c00198{left:296.095500px;}
.x59_c00198{left:301.320000px;}
.x2d_c00198{left:303.480000px;}
.x7_c00198{left:307.378500px;}
.x53_c00198{left:309.960000px;}
.x13_c00198{left:314.692152px;}
.x5f_c00198{left:316.440000px;}
.x1f_c00198{left:330.192024px;}
.x14_c00198{left:334.467840px;}
.x5a_c00198{left:343.980000px;}
.x3f_c00198{left:349.012848px;}
.x39_c00198{left:354.170923px;}
.x62_c00198{left:355.590000px;}
.x33_c00198{left:357.286500px;}
.x8_c00198{left:363.354000px;}
.x28_c00198{left:366.271500px;}
.x15_c00198{left:368.784288px;}
.x42_c00198{left:379.796865px;}
.x20_c00198{left:384.184524px;}
.x9_c00198{left:385.446000px;}
.x2_c00198{left:388.062000px;}
.x4c_c00198{left:396.090000px;}
.x29_c00198{left:398.934000px;}
.x43_c00198{left:405.956669px;}
.x21_c00198{left:408.699024px;}
.x4a_c00198{left:409.862783px;}
.x64_c00198{left:412.020000px;}
.x63_c00198{left:413.100000px;}
.x65_c00198{left:417.420000px;}
.x16_c00198{left:422.459424px;}
.x4d_c00198{left:427.680000px;}
.x66_c00198{left:431.190000px;}
.xa_c00198{left:436.636500px;}
.x34_c00198{left:446.505000px;}
.x22_c00198{left:448.444524px;}
.x17_c00198{left:449.542992px;}
.x44_c00198{left:451.885185px;}
.x3_c00198{left:461.772000px;}
.x3a_c00198{left:468.898437px;}
.xb_c00198{left:478.473000px;}
.x3b_c00198{left:486.477521px;}
.x45_c00198{left:487.810845px;}
.x35_c00198{left:489.202500px;}
.x40_c00198{left:492.862104px;}
.x4b_c00198{left:500.320571px;}
.xc_c00198{left:503.562000px;}
.x3c_c00198{left:506.462487px;}
.x18_c00198{left:509.501532px;}
.x36_c00198{left:517.473000px;}
.x46_c00198{left:518.872317px;}
.x50_c00198{left:524.610000px;}
.x19_c00198{left:526.490268px;}
.x4e_c00198{left:532.980000px;}
.x37_c00198{left:537.265500px;}
.x47_c00198{left:540.082432px;}
.x3d_c00198{left:551.743628px;}
.x4f_c00198{left:555.660000px;}
.x48_c00198{left:574.257710px;}
.x41_c00198{left:582.795264px;}
.x49_c00198{left:590.159676px;}
.x38_c00198{left:593.824500px;}
.x3e_c00198{left:597.465749px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:0.000000pt;}
.fsd_c00198{font-size:41.066667pt;}
.fs7_c00198{font-size:41.070137pt;}
.fs5_c00198{font-size:42.933333pt;}
.fsa_c00198{font-size:44.803785pt;}
.fs6_c00198{font-size:46.666667pt;}
.fs9_c00198{font-size:48.537434pt;}
.fsc_c00198{font-size:51.333333pt;}
.fsb_c00198{font-size:52.266667pt;}
.fs8_c00198{font-size:54.137907pt;}
.fs1_c00198{font-size:60.674432pt;}
.fs2_c00198{font-size:61.607884pt;}
.fs4_c00198{font-size:64.403896pt;}
.fs3_c00198{font-size:65.341695pt;}
.fs0_c00198{font-size:112.951627pt;}
.y0_c00198{bottom:0.000000pt;}
.y58_c00198{bottom:180.718667pt;}
.y53_c00198{bottom:181.662667pt;}
.y52_c00198{bottom:197.242667pt;}
.y51_c00198{bottom:213.057883pt;}
.y50_c00198{bottom:213.058103pt;}
.y57_c00198{bottom:227.844000pt;}
.y47_c00198{bottom:228.399992pt;}
.y48_c00198{bottom:228.818303pt;}
.y49_c00198{bottom:229.068960pt;}
.y4a_c00198{bottom:229.553067pt;}
.y4b_c00198{bottom:230.128235pt;}
.y4c_c00198{bottom:230.625857pt;}
.y4d_c00198{bottom:230.965635pt;}
.y4e_c00198{bottom:231.512575pt;}
.y4f_c00198{bottom:231.767009pt;}
.y56_c00198{bottom:243.736000pt;}
.y40_c00198{bottom:244.321683pt;}
.y41_c00198{bottom:244.440625pt;}
.y42_c00198{bottom:245.117419pt;}
.y43_c00198{bottom:245.485096pt;}
.y44_c00198{bottom:245.668424pt;}
.y45_c00198{bottom:246.239984pt;}
.y46_c00198{bottom:247.439239pt;}
.y55_c00198{bottom:259.261333pt;}
.y38_c00198{bottom:260.105277pt;}
.y39_c00198{bottom:260.562613pt;}
.y3a_c00198{bottom:261.366500pt;}
.y3b_c00198{bottom:261.840420pt;}
.y3c_c00198{bottom:262.106233pt;}
.y3d_c00198{bottom:262.407849pt;}
.y3e_c00198{bottom:263.092459pt;}
.y3f_c00198{bottom:263.783497pt;}
.y54_c00198{bottom:275.078667pt;}
.y2e_c00198{bottom:276.241333pt;}
.y2f_c00198{bottom:276.355265pt;}
.y30_c00198{bottom:276.592333pt;}
.y31_c00198{bottom:276.998055pt;}
.y32_c00198{bottom:277.272303pt;}
.y33_c00198{bottom:277.646096pt;}
.y34_c00198{bottom:277.765696pt;}
.y35_c00198{bottom:278.092377pt;}
.y36_c00198{bottom:278.321091pt;}
.y37_c00198{bottom:278.974661pt;}
.y2d_c00198{bottom:339.596000pt;}
.y2c_c00198{bottom:355.514667pt;}
.y23_c00198{bottom:441.841333pt;}
.y24_c00198{bottom:441.986636pt;}
.y25_c00198{bottom:442.363144pt;}
.y26_c00198{bottom:442.635621pt;}
.y27_c00198{bottom:442.822929pt;}
.y28_c00198{bottom:443.491363pt;}
.y29_c00198{bottom:443.832025pt;}
.y2a_c00198{bottom:444.177528pt;}
.y2b_c00198{bottom:444.496895pt;}
.y1a_c00198{bottom:460.797845pt;}
.y1b_c00198{bottom:461.223040pt;}
.y1c_c00198{bottom:461.754069pt;}
.y1d_c00198{bottom:462.479360pt;}
.y1e_c00198{bottom:462.725141pt;}
.y1f_c00198{bottom:463.531755pt;}
.y20_c00198{bottom:464.299648pt;}
.y21_c00198{bottom:464.648299pt;}
.y22_c00198{bottom:465.213568pt;}
.yd_c00198{bottom:480.960288pt;}
.ye_c00198{bottom:481.254187pt;}
.yf_c00198{bottom:481.666496pt;}
.y10_c00198{bottom:482.384768pt;}
.y11_c00198{bottom:482.778955pt;}
.y12_c00198{bottom:483.204437pt;}
.y13_c00198{bottom:483.587168pt;}
.y14_c00198{bottom:483.885760pt;}
.y15_c00198{bottom:484.404491pt;}
.y16_c00198{bottom:485.215883pt;}
.y17_c00198{bottom:485.625077pt;}
.y18_c00198{bottom:486.531168pt;}
.y19_c00198{bottom:486.787456pt;}
.y4_c00198{bottom:501.365333pt;}
.y5_c00198{bottom:502.349568pt;}
.y6_c00198{bottom:503.262379pt;}
.y7_c00198{bottom:503.718997pt;}
.y8_c00198{bottom:504.515093pt;}
.y9_c00198{bottom:504.829291pt;}
.ya_c00198{bottom:505.557333pt;}
.yb_c00198{bottom:506.152341pt;}
.yc_c00198{bottom:506.509163pt;}
.y1_c00198{bottom:783.848000pt;}
.y2_c00198{bottom:786.816992pt;}
.y3_c00198{bottom:787.996352pt;}
.hf_c00198{height:41.066667pt;}
.h9_c00198{height:41.070137pt;}
.h7_c00198{height:42.933333pt;}
.hc_c00198{height:44.803785pt;}
.h8_c00198{height:46.666667pt;}
.hb_c00198{height:48.537434pt;}
.he_c00198{height:51.333333pt;}
.hd_c00198{height:52.266667pt;}
.ha_c00198{height:54.137907pt;}
.h3_c00198{height:60.674432pt;}
.h4_c00198{height:61.607884pt;}
.h6_c00198{height:64.403896pt;}
.h5_c00198{height:65.341695pt;}
.h2_c00198{height:112.951627pt;}
.h1_c00198{height:893.333333pt;}
.h0_c00198{height:893.466667pt;}
.w0_c00198{width:654.000000pt;}
.x0_c00198{left:0.000000pt;}
.x60_c00198{left:74.160000pt;}
.x5b_c00198{left:93.120000pt;}
.x51_c00198{left:96.000000pt;}
.x54_c00198{left:97.440000pt;}
.x23_c00198{left:113.193333pt;}
.x1a_c00198{left:122.634688pt;}
.xd_c00198{left:125.215499pt;}
.x4_c00198{left:126.121333pt;}
.x5c_c00198{left:131.280000pt;}
.x55_c00198{left:139.680000pt;}
.xe_c00198{left:142.500555pt;}
.x1b_c00198{left:149.209355pt;}
.x56_c00198{left:153.600000pt;}
.x24_c00198{left:160.630667pt;}
.xf_c00198{left:166.769504pt;}
.x2e_c00198{left:168.480000pt;}
.x2f_c00198{left:173.040000pt;}
.x1_c00198{left:180.000000pt;}
.x1c_c00198{left:182.398688pt;}
.x25_c00198{left:185.401333pt;}
.x5_c00198{left:187.636000pt;}
.x2a_c00198{left:191.040000pt;}
.x30_c00198{left:192.720000pt;}
.x57_c00198{left:197.760000pt;}
.x2b_c00198{left:200.640000pt;}
.x26_c00198{left:202.429333pt;}
.x10_c00198{left:208.994155pt;}
.x58_c00198{left:216.480000pt;}
.x5d_c00198{left:218.160000pt;}
.x52_c00198{left:225.120000pt;}
.x1d_c00198{left:227.729355pt;}
.x31_c00198{left:228.720000pt;}
.x61_c00198{left:229.680000pt;}
.x11_c00198{left:232.213792pt;}
.x5e_c00198{left:238.800000pt;}
.x1e_c00198{left:243.090688pt;}
.x6_c00198{left:244.686667pt;}
.x2c_c00198{left:246.240000pt;}
.x12_c00198{left:257.222720pt;}
.x32_c00198{left:259.920000pt;}
.x27_c00198{left:263.196000pt;}
.x59_c00198{left:267.840000pt;}
.x2d_c00198{left:269.760000pt;}
.x7_c00198{left:273.225333pt;}
.x53_c00198{left:275.520000pt;}
.x13_c00198{left:279.726357pt;}
.x5f_c00198{left:281.280000pt;}
.x1f_c00198{left:293.504021pt;}
.x14_c00198{left:297.304747pt;}
.x5a_c00198{left:305.760000pt;}
.x3f_c00198{left:310.233643pt;}
.x39_c00198{left:314.818599pt;}
.x62_c00198{left:316.080000pt;}
.x33_c00198{left:317.588000pt;}
.x8_c00198{left:322.981333pt;}
.x28_c00198{left:325.574667pt;}
.x15_c00198{left:327.808256pt;}
.x42_c00198{left:337.597213pt;}
.x20_c00198{left:341.497355pt;}
.x9_c00198{left:342.618667pt;}
.x2_c00198{left:344.944000pt;}
.x4c_c00198{left:352.080000pt;}
.x29_c00198{left:354.608000pt;}
.x43_c00198{left:360.850372pt;}
.x21_c00198{left:363.288021pt;}
.x4a_c00198{left:364.322473pt;}
.x64_c00198{left:366.240000pt;}
.x63_c00198{left:367.200000pt;}
.x65_c00198{left:371.040000pt;}
.x16_c00198{left:375.519488pt;}
.x4d_c00198{left:380.160000pt;}
.x66_c00198{left:383.280000pt;}
.xa_c00198{left:388.121333pt;}
.x34_c00198{left:396.893333pt;}
.x22_c00198{left:398.617355pt;}
.x17_c00198{left:399.593771pt;}
.x44_c00198{left:401.675720pt;}
.x3_c00198{left:410.464000pt;}
.x3a_c00198{left:416.798611pt;}
.xb_c00198{left:425.309333pt;}
.x3b_c00198{left:432.424463pt;}
.x45_c00198{left:433.609640pt;}
.x35_c00198{left:434.846667pt;}
.x40_c00198{left:438.099648pt;}
.x4b_c00198{left:444.729396pt;}
.xc_c00198{left:447.610667pt;}
.x3c_c00198{left:450.188877pt;}
.x18_c00198{left:452.890251pt;}
.x36_c00198{left:459.976000pt;}
.x46_c00198{left:461.219837pt;}
.x50_c00198{left:466.320000pt;}
.x19_c00198{left:467.991349pt;}
.x4e_c00198{left:473.760000pt;}
.x37_c00198{left:477.569333pt;}
.x47_c00198{left:480.073273pt;}
.x3d_c00198{left:490.438780pt;}
.x4f_c00198{left:493.920000pt;}
.x48_c00198{left:510.451297pt;}
.x41_c00198{left:518.040235pt;}
.x49_c00198{left:524.586379pt;}
.x38_c00198{left:527.844000pt;}
.x3e_c00198{left:531.080665pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m57_c00199{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);}
.m3c_c00199{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{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);}
.mb7_c00199{transform:matrix(0.046742,0.000561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.046742,0.000561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.046742,0.000561,-0.003000,0.249982,0,0);}
.m3b_c00199{transform:matrix(0.070875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070875,0.000000,0.000000,0.250000,0,0);}
.mb0_c00199{transform:matrix(0.078329,0.000940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.078329,0.000940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.078329,0.000940,-0.003000,0.249982,0,0);}
.m89_c00199{transform:matrix(0.086053,0.001721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.086053,0.001721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.086053,0.001721,-0.004999,0.249950,0,0);}
.m9_c00199{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);}
.m74_c00199{transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{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);}
.m18_c00199{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);}
.m73_c00199{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.mb2_c00199{transform:matrix(0.159748,0.001917,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159748,0.001917,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159748,0.001917,-0.003000,0.249982,0,0);}
.mcc_c00199{transform:matrix(0.161663,0.001940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161663,0.001940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161663,0.001940,-0.003000,0.249982,0,0);}
.m1f_c00199{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);}
.m78_c00199{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);}
.mbb_c00199{transform:matrix(0.166318,0.001996,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166318,0.001996,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166318,0.001996,-0.003000,0.249982,0,0);}
.mab_c00199{transform:matrix(0.170943,0.002051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170943,0.002051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170943,0.002051,-0.003000,0.249982,0,0);}
.m11_c00199{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);}
.m8f_c00199{transform:matrix(0.172241,0.003445,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172241,0.003445,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172241,0.003445,-0.004999,0.249950,0,0);}
.m77_c00199{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);}
.m29_c00199{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);}
.m20_c00199{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);}
.md0_c00199{transform:matrix(0.178422,0.002141,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178422,0.002141,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178422,0.002141,-0.003000,0.249982,0,0);}
.mcb_c00199{transform:matrix(0.179702,0.002156,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179702,0.002156,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179702,0.002156,-0.003000,0.249982,0,0);}
.m75_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);}
.m95_c00199{transform:matrix(0.180969,0.003619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180969,0.003619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180969,0.003619,-0.004999,0.249950,0,0);}
.m35_c00199{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);}
.m6_c00199{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);}
.m72_c00199{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);}
.m16_c00199{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);}
.mc9_c00199{transform:matrix(0.186012,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186012,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186012,0.002232,-0.003000,0.249982,0,0);}
.m3a_c00199{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);}
.m2d_c00199{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_c00199{transform:matrix(0.187616,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187616,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187616,0.002251,-0.003000,0.249982,0,0);}
.maf_c00199{transform:matrix(0.187861,0.002254,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187861,0.002254,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187861,0.002254,-0.003000,0.249982,0,0);}
.mce_c00199{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);}
.m17_c00199{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);}
.m2c_c00199{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);}
.m50_c00199{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);}
.m76_c00199{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_c00199{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);}
.m6d_c00199{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);}
.m2f_c00199{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);}
.m3e_c00199{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);}
.m1a_c00199{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);}
.m51_c00199{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);}
.m96_c00199{transform:matrix(0.195136,0.003903,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195136,0.003903,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195136,0.003903,-0.004999,0.249950,0,0);}
.m1b_c00199{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);}
.m1_c00199{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);}
.m91_c00199{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);}
.mbf_c00199{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);}
.m1e_c00199{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);}
.m8c_c00199{transform:matrix(0.196386,0.003928,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196386,0.003928,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196386,0.003928,-0.004999,0.249950,0,0);}
.m62_c00199{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);}
.m7a_c00199{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);}
.m2a_c00199{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);}
.m6e_c00199{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);}
.m5_c00199{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);}
.m45_c00199{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);}
.m54_c00199{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);}
.m14_c00199{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);}
.m40_c00199{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);}
.m8a_c00199{transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);}
.m21_c00199{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);}
.m8_c00199{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);}
.m93_c00199{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);}
.m3f_c00199{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);}
.m4_c00199{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);}
.m15_c00199{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);}
.mb1_c00199{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);}
.mcf_c00199{transform:matrix(0.202445,0.002429,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202445,0.002429,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202445,0.002429,-0.003000,0.249982,0,0);}
.m38_c00199{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);}
.m32_c00199{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);}
.m24_c00199{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);}
.m85_c00199{transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);}
.m56_c00199{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);}
.m28_c00199{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);}
.m37_c00199{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);}
.m46_c00199{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);}
.mba_c00199{transform:matrix(0.205215,0.002463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205215,0.002463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205215,0.002463,-0.003000,0.249982,0,0);}
.mbc_c00199{transform:matrix(0.205540,0.002466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205540,0.002466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205540,0.002466,-0.003000,0.249982,0,0);}
.m1c_c00199{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_c00199{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);}
.m12_c00199{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);}
.m64_c00199{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);}
.m43_c00199{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);}
.mcd_c00199{transform:matrix(0.209930,0.002519,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209930,0.002519,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209930,0.002519,-0.003000,0.249982,0,0);}
.m6f_c00199{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);}
.m19_c00199{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);}
.m97_c00199{transform:matrix(0.212767,0.002340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212767,0.002340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212767,0.002340,-0.002750,0.249985,0,0);}
.m92_c00199{transform:matrix(0.212997,0.004260,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212997,0.004260,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212997,0.004260,-0.004999,0.249950,0,0);}
.m30_c00199{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);}
.m63_c00199{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);}
.m41_c00199{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);}
.mf_c00199{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);}
.m61_c00199{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);}
.m94_c00199{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);}
.m4f_c00199{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);}
.m1d_c00199{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);}
.m68_c00199{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);}
.m5d_c00199{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);}
.m8d_c00199{transform:matrix(0.219951,0.004399,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219951,0.004399,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219951,0.004399,-0.004999,0.249950,0,0);}
.m7_c00199{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);}
.ma6_c00199{transform:matrix(0.220219,0.002643,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220219,0.002643,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220219,0.002643,-0.003000,0.249982,0,0);}
.m47_c00199{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);}
.m79_c00199{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);}
.me_c00199{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.225306,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225306,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225306,0.002478,-0.002750,0.249985,0,0);}
.m59_c00199{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);}
.m90_c00199{transform:matrix(0.226805,0.004536,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226805,0.004536,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226805,0.004536,-0.004999,0.249950,0,0);}
.m26_c00199{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);}
.mae_c00199{transform:matrix(0.228959,0.002748,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228959,0.002748,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228959,0.002748,-0.003000,0.249982,0,0);}
.m66_c00199{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);}
.mc3_c00199{transform:matrix(0.231643,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231643,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231643,0.002780,-0.003000,0.249982,0,0);}
.m82_c00199{transform:matrix(0.232344,0.004647,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232344,0.004647,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232344,0.004647,-0.004999,0.249950,0,0);}
.m7b_c00199{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);}
.m48_c00199{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);}
.m9e_c00199{transform:matrix(0.233691,0.002571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233691,0.002571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233691,0.002571,-0.002750,0.249985,0,0);}
.m87_c00199{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);}
.m6c_c00199{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);}
.m4a_c00199{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);}
.m71_c00199{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);}
.m4d_c00199{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);}
.m2b_c00199{transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);}
.mbe_c00199{transform:matrix(0.238158,0.002858,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238158,0.002858,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238158,0.002858,-0.003000,0.249982,0,0);}
.m58_c00199{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);}
.m34_c00199{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);}
.ma7_c00199{transform:matrix(0.240103,0.002881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240103,0.002881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240103,0.002881,-0.003000,0.249982,0,0);}
.m4c_c00199{transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);}
.mc0_c00199{transform:matrix(0.240283,0.002883,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240283,0.002883,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240283,0.002883,-0.003000,0.249982,0,0);}
.m31_c00199{transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);}
.m9f_c00199{transform:matrix(0.240760,0.002648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240760,0.002648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240760,0.002648,-0.002750,0.249985,0,0);}
.ma3_c00199{transform:matrix(0.241620,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241620,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241620,0.002658,-0.002750,0.249985,0,0);}
.m7d_c00199{transform:matrix(0.241821,0.004595,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241821,0.004595,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241821,0.004595,-0.004749,0.249955,0,0);}
.mad_c00199{transform:matrix(0.242573,0.002911,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242573,0.002911,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242573,0.002911,-0.003000,0.249982,0,0);}
.m69_c00199{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);}
.mbd_c00199{transform:matrix(0.244962,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244962,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244962,0.002940,-0.003000,0.249982,0,0);}
.m44_c00199{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);}
.m83_c00199{transform:matrix(0.248260,0.004965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248260,0.004965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248260,0.004965,-0.004999,0.249950,0,0);}
.m55_c00199{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);}
.m60_c00199{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.249760,0.004995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249760,0.004995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249760,0.004995,-0.004999,0.249950,0,0);}
.m52_c00199{transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);}
.mca_c00199{transform:matrix(0.253722,0.003045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253722,0.003045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253722,0.003045,-0.003000,0.249982,0,0);}
.mb3_c00199{transform:matrix(0.254727,0.003057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254727,0.003057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254727,0.003057,-0.003000,0.249982,0,0);}
.m23_c00199{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m4e_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);}
.m5b_c00199{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);}
.m2e_c00199{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{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);}
.m6a_c00199{transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259575,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.260708,0.005214,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260708,0.005214,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260708,0.005214,-0.004999,0.249950,0,0);}
.m27_c00199{transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);}
.mc8_c00199{transform:matrix(0.267786,0.003213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267786,0.003213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267786,0.003213,-0.003000,0.249982,0,0);}
.mc2_c00199{transform:matrix(0.269441,0.003233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269441,0.003233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269441,0.003233,-0.003000,0.249982,0,0);}
.mb9_c00199{transform:matrix(0.270141,0.003242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270141,0.003242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270141,0.003242,-0.003000,0.249982,0,0);}
.m5c_c00199{transform:matrix(0.273695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273695,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.280805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280805,0.000000,0.000000,0.250000,0,0);}
.mc7_c00199{transform:matrix(0.281280,0.003375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281280,0.003375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281280,0.003375,-0.003000,0.249982,0,0);}
.mac_c00199{transform:matrix(0.283670,0.003404,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283670,0.003404,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283670,0.003404,-0.003000,0.249982,0,0);}
.ma2_c00199{transform:matrix(0.292997,0.003223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.292997,0.003223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.292997,0.003223,-0.002750,0.249985,0,0);}
.mc1_c00199{transform:matrix(0.297739,0.003573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297739,0.003573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297739,0.003573,-0.003000,0.249982,0,0);}
.m9c_c00199{transform:matrix(0.299992,0.003300,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299992,0.003300,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299992,0.003300,-0.002750,0.249985,0,0);}
.m98_c00199{transform:matrix(0.304252,0.003347,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304252,0.003347,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304252,0.003347,-0.002750,0.249985,0,0);}
.m25_c00199{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);}
.ma0_c00199{transform:matrix(0.305127,0.003356,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305127,0.003356,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305127,0.003356,-0.002750,0.249985,0,0);}
.mb4_c00199{transform:matrix(0.305793,0.003670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305793,0.003670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305793,0.003670,-0.003000,0.249982,0,0);}
.m7e_c00199{transform:matrix(0.306375,0.005821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.306375,0.005821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.306375,0.005821,-0.004749,0.249955,0,0);}
.m22_c00199{transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.312331,0.003436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312331,0.003436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312331,0.003436,-0.002750,0.249985,0,0);}
.ma1_c00199{transform:matrix(0.313501,0.003449,-0.002750,0.249985,0,0);-ms-transform:matrix(0.313501,0.003449,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.313501,0.003449,-0.002750,0.249985,0,0);}
.ma9_c00199{transform:matrix(0.316692,0.003800,-0.003000,0.249982,0,0);-ms-transform:matrix(0.316692,0.003800,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.316692,0.003800,-0.003000,0.249982,0,0);}
.m36_c00199{transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317385,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.319791,0.006396,-0.004999,0.249950,0,0);-ms-transform:matrix(0.319791,0.006396,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.319791,0.006396,-0.004999,0.249950,0,0);}
.m2_c00199{transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319885,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.320346,0.003524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.320346,0.003524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.320346,0.003524,-0.002750,0.249985,0,0);}
.m10_c00199{transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327065,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{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);}
.m6b_c00199{transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.368683,0.004056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.368683,0.004056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.368683,0.004056,-0.002750,0.249985,0,0);}
.m88_c00199{transform:matrix(0.376160,0.007523,-0.004999,0.249950,0,0);-ms-transform:matrix(0.376160,0.007523,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.376160,0.007523,-0.004999,0.249950,0,0);}
.m5e_c00199{transform:matrix(0.376700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376700,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.381969,0.007639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.381969,0.007639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.381969,0.007639,-0.004999,0.249950,0,0);}
.mb8_c00199{transform:matrix(0.387342,0.004648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.387342,0.004648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.387342,0.004648,-0.003000,0.249982,0,0);}
.mb_c00199{transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.418040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418040,0.000000,0.000000,0.250000,0,0);}
.ma8_c00199{transform:matrix(0.433924,0.005207,-0.003000,0.249982,0,0);-ms-transform:matrix(0.433924,0.005207,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.433924,0.005207,-0.003000,0.249982,0,0);}
.m3d_c00199{transform:matrix(0.447785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447785,0.000000,0.000000,0.250000,0,0);}
.maa_c00199{transform:matrix(0.448483,0.005382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.448483,0.005382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.448483,0.005382,-0.003000,0.249982,0,0);}
.m0_c00199{transform:matrix(0.457185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457185,0.000000,0.000000,0.250000,0,0);}
.mc5_c00199{transform:matrix(0.459792,0.005518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.459792,0.005518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.459792,0.005518,-0.003000,0.249982,0,0);}
.m7c_c00199{transform:matrix(0.486987,0.009253,-0.004749,0.249955,0,0);-ms-transform:matrix(0.486987,0.009253,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.486987,0.009253,-0.004749,0.249955,0,0);}
.mb6_c00199{transform:matrix(0.496614,0.005959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.496614,0.005959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.496614,0.005959,-0.003000,0.249982,0,0);}
.m7f_c00199{transform:matrix(0.497915,0.009958,-0.004999,0.249950,0,0);-ms-transform:matrix(0.497915,0.009958,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.497915,0.009958,-0.004999,0.249950,0,0);}
.mb5_c00199{transform:matrix(0.499564,0.005995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.499564,0.005995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.499564,0.005995,-0.003000,0.249982,0,0);}
.m5f_c00199{transform:matrix(0.506335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506335,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.510794,0.005619,-0.002750,0.249985,0,0);-ms-transform:matrix(0.510794,0.005619,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.510794,0.005619,-0.002750,0.249985,0,0);}
.m81_c00199{transform:matrix(0.534348,0.010687,-0.004999,0.249950,0,0);-ms-transform:matrix(0.534348,0.010687,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.534348,0.010687,-0.004999,0.249950,0,0);}
.mc6_c00199{transform:matrix(0.685926,0.008231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.685926,0.008231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.685926,0.008231,-0.003000,0.249982,0,0);}
.md_c00199{transform:matrix(0.806195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806195,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.819735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.819735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.819735,0.000000,0.000000,0.250000,0,0);}
.mc4_c00199{transform:matrix(0.930603,0.011167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.930603,0.011167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.930603,0.011167,-0.003000,0.249982,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;}
.fs0_c00199{font-size:31.500000px;}
.fse_c00199{font-size:48.308717px;}
.fs11_c00199{font-size:48.309659px;}
.fs15_c00199{font-size:49.353553px;}
.fs13_c00199{font-size:50.403049px;}
.fsf_c00199{font-size:50.410079px;}
.fs10_c00199{font-size:51.460289px;}
.fs14_c00199{font-size:52.503780px;}
.fs12_c00199{font-size:54.610919px;}
.fs16_c00199{font-size:57.754158px;}
.fs8_c00199{font-size:60.900000px;}
.fsc_c00199{font-size:61.950000px;}
.fsb_c00199{font-size:66.150000px;}
.fs5_c00199{font-size:67.200000px;}
.fs9_c00199{font-size:68.250000px;}
.fsa_c00199{font-size:69.300000px;}
.fs6_c00199{font-size:70.350000px;}
.fs1_c00199{font-size:71.400000px;}
.fs2_c00199{font-size:73.500000px;}
.fs4_c00199{font-size:74.550000px;}
.fsd_c00199{font-size:75.600000px;}
.fs7_c00199{font-size:77.700000px;}
.fs3_c00199{font-size:90.300000px;}
.y0_c00199{bottom:0.000000px;}
.y67_c00199{bottom:176.514036px;}
.y66_c00199{bottom:176.742918px;}
.y65_c00199{bottom:177.008370px;}
.y64_c00199{bottom:177.421698px;}
.y63_c00199{bottom:177.645348px;}
.y62_c00199{bottom:177.974700px;}
.y61_c00199{bottom:178.269018px;}
.y60_c00199{bottom:178.412094px;}
.y5f_c00199{bottom:178.560672px;}
.y5e_c00199{bottom:178.682598px;}
.y5d_c00199{bottom:179.308050px;}
.y5c_c00199{bottom:179.421648px;}
.y5b_c00199{bottom:179.931972px;}
.y5a_c00199{bottom:180.679236px;}
.y59_c00199{bottom:180.900696px;}
.y58_c00199{bottom:193.201494px;}
.y57_c00199{bottom:193.914132px;}
.y56_c00199{bottom:194.066394px;}
.y55_c00199{bottom:194.247816px;}
.y54_c00199{bottom:194.561682px;}
.y53_c00199{bottom:194.730108px;}
.y52_c00199{bottom:194.924958px;}
.y51_c00199{bottom:195.366228px;}
.y50_c00199{bottom:196.029996px;}
.y4f_c00199{bottom:196.250370px;}
.y4e_c00199{bottom:196.551132px;}
.y4d_c00199{bottom:198.991500px;}
.y4c_c00199{bottom:210.772248px;}
.y4b_c00199{bottom:210.915816px;}
.y4a_c00199{bottom:211.473600px;}
.y49_c00199{bottom:211.595280px;}
.y48_c00199{bottom:211.917138px;}
.y47_c00199{bottom:212.006922px;}
.y46_c00199{bottom:212.481438px;}
.y45_c00199{bottom:212.772480px;}
.y44_c00199{bottom:213.252198px;}
.y43_c00199{bottom:213.680400px;}
.y42_c00199{bottom:213.745164px;}
.y41_c00199{bottom:214.120968px;}
.y40_c00199{bottom:214.367190px;}
.y3f_c00199{bottom:214.735866px;}
.y3e_c00199{bottom:214.982826px;}
.y3d_c00199{bottom:215.983950px;}
.y3c_c00199{bottom:216.541500px;}
.y3b_c00199{bottom:229.805492px;}
.y3a_c00199{bottom:230.479764px;}
.y39_c00199{bottom:230.868785px;}
.y38_c00199{bottom:231.200913px;}
.y37_c00199{bottom:231.446747px;}
.y35_c00199{bottom:231.706209px;}
.y36_c00199{bottom:231.714459px;}
.y34_c00199{bottom:231.928843px;}
.y33_c00199{bottom:232.279320px;}
.y32_c00199{bottom:232.647930px;}
.y31_c00199{bottom:233.948938px;}
.y30_c00199{bottom:234.146740px;}
.y2f_c00199{bottom:234.549175px;}
.y2e_c00199{bottom:234.901500px;}
.y2d_c00199{bottom:289.665510px;}
.y29_c00199{bottom:289.665930px;}
.y2a_c00199{bottom:289.666050px;}
.y2c_c00199{bottom:289.666230px;}
.y2b_c00199{bottom:289.666440px;}
.y28_c00199{bottom:306.809460px;}
.y27_c00199{bottom:307.523670px;}
.y26_c00199{bottom:307.778070px;}
.y25_c00199{bottom:308.060850px;}
.y24_c00199{bottom:308.605680px;}
.y23_c00199{bottom:309.147540px;}
.y22_c00199{bottom:323.825160px;}
.y21_c00199{bottom:324.605850px;}
.y20_c00199{bottom:324.788760px;}
.y1f_c00199{bottom:324.853290px;}
.y1e_c00199{bottom:325.571400px;}
.y1d_c00199{bottom:326.470800px;}
.y1c_c00199{bottom:326.970630px;}
.y1b_c00199{bottom:342.797880px;}
.y1a_c00199{bottom:343.127010px;}
.y19_c00199{bottom:343.483110px;}
.y18_c00199{bottom:343.917720px;}
.y17_c00199{bottom:344.946750px;}
.y16_c00199{bottom:345.460500px;}
.y15_c00199{bottom:360.111129px;}
.y14_c00199{bottom:363.060195px;}
.y13_c00199{bottom:363.423000px;}
.y12_c00199{bottom:405.619500px;}
.y11_c00199{bottom:428.278500px;}
.y10_c00199{bottom:450.696000px;}
.yf_c00199{bottom:473.343000px;}
.ye_c00199{bottom:496.105500px;}
.yd_c00199{bottom:519.309000px;}
.yc_c00199{bottom:609.466500px;}
.yb_c00199{bottom:631.620000px;}
.ya_c00199{bottom:654.765000px;}
.y9_c00199{bottom:677.422500px;}
.y8_c00199{bottom:700.371000px;}
.y7_c00199{bottom:723.630000px;}
.y6_c00199{bottom:746.074500px;}
.y5_c00199{bottom:767.965500px;}
.y4_c00199{bottom:791.700000px;}
.y3_c00199{bottom:814.269000px;}
.y2_c00199{bottom:837.000000px;}
.y1_c00199{bottom:956.610000px;}
.h2_c00199{height:31.500000px;}
.h10_c00199{height:48.308717px;}
.h13_c00199{height:48.309659px;}
.h17_c00199{height:49.353553px;}
.h15_c00199{height:50.403049px;}
.h11_c00199{height:50.410079px;}
.h12_c00199{height:51.460289px;}
.h16_c00199{height:52.503780px;}
.h14_c00199{height:54.610919px;}
.h18_c00199{height:57.754158px;}
.ha_c00199{height:60.900000px;}
.he_c00199{height:61.950000px;}
.hd_c00199{height:66.150000px;}
.h7_c00199{height:67.200000px;}
.hb_c00199{height:68.250000px;}
.hc_c00199{height:69.300000px;}
.h8_c00199{height:70.350000px;}
.h3_c00199{height:71.400000px;}
.h4_c00199{height:73.500000px;}
.h6_c00199{height:74.550000px;}
.hf_c00199{height:75.600000px;}
.h9_c00199{height:77.700000px;}
.h5_c00199{height:90.300000px;}
.h0_c00199{height:1008.450000px;}
.h1_c00199{height:1008.750000px;}
.w0_c00199{width:678.450000px;}
.w1_c00199{width:678.750000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:61.560000px;}
.x6b_c00199{left:139.483500px;}
.x82_c00199{left:152.409882px;}
.x42_c00199{left:170.910000px;}
.x3d_c00199{left:175.230000px;}
.x28_c00199{left:176.310000px;}
.x5_c00199{left:177.390000px;}
.x74_c00199{left:185.881500px;}
.x6_c00199{left:194.670000px;}
.x1e_c00199{left:198.180000px;}
.x18_c00199{left:201.150000px;}
.x29_c00199{left:202.500000px;}
.x6c_c00199{left:208.098000px;}
.x35_c00199{left:210.060000px;}
.x13_c00199{left:215.460000px;}
.x1f_c00199{left:220.590000px;}
.x5e_c00199{left:223.314000px;}
.x43_c00199{left:224.640000px;}
.x5d_c00199{left:226.906500px;}
.x36_c00199{left:229.770000px;}
.x3e_c00199{left:231.390000px;}
.x19_c00199{left:235.440000px;}
.x65_c00199{left:242.893860px;}
.x4a_c00199{left:245.160000px;}
.xa_c00199{left:246.240000px;}
.x14_c00199{left:248.130000px;}
.x69_c00199{left:249.756630px;}
.x61_c00199{left:251.430600px;}
.x33_c00199{left:253.530000px;}
.x7_c00199{left:256.500000px;}
.x44_c00199{left:259.740000px;}
.x37_c00199{left:266.760000px;}
.x5a_c00199{left:270.000000px;}
.x66_c00199{left:271.412430px;}
.x20_c00199{left:272.970000px;}
.x2a_c00199{left:275.400000px;}
.x56_c00199{left:278.370000px;}
.x4b_c00199{left:285.120000px;}
.x2f_c00199{left:287.280000px;}
.x50_c00199{left:289.440000px;}
.x1a_c00199{left:294.840000px;}
.x21_c00199{left:298.890000px;}
.x5f_c00199{left:300.453000px;}
.x2b_c00199{left:303.210000px;}
.x8_c00199{left:309.690000px;}
.xb_c00199{left:311.580000px;}
.x38_c00199{left:312.660000px;}
.x67_c00199{left:314.968800px;}
.x2_c00199{left:317.250000px;}
.x75_c00199{left:320.611500px;}
.x60_c00199{left:322.183500px;}
.x15_c00199{left:323.190000px;}
.x34_c00199{left:325.080000px;}
.x57_c00199{left:327.780000px;}
.x6a_c00199{left:333.742200px;}
.x3f_c00199{left:335.070000px;}
.x9_c00199{left:339.930000px;}
.x62_c00199{left:341.309700px;}
.x3_c00199{left:343.440000px;}
.x63_c00199{left:344.911350px;}
.x45_c00199{left:346.410000px;}
.x1b_c00199{left:349.920000px;}
.x39_c00199{left:351.000000px;}
.x22_c00199{left:353.700000px;}
.x40_c00199{left:354.780000px;}
.x2c_c00199{left:356.400000px;}
.x5b_c00199{left:362.340000px;}
.x4c_c00199{left:363.960000px;}
.x68_c00199{left:365.950320px;}
.x7c_c00199{left:367.360500px;}
.x51_c00199{left:369.900000px;}
.x46_c00199{left:372.600000px;}
.x83_c00199{left:374.131692px;}
.x23_c00199{left:378.540000px;}
.x30_c00199{left:381.510000px;}
.x58_c00199{left:385.830000px;}
.x1c_c00199{left:386.910000px;}
.xe_c00199{left:388.530000px;}
.x52_c00199{left:390.420000px;}
.xc_c00199{left:392.580000px;}
.x64_c00199{left:398.493510px;}
.x24_c00199{left:400.410000px;}
.x2d_c00199{left:403.380000px;}
.x16_c00199{left:407.700000px;}
.x6d_c00199{left:409.725000px;}
.x41_c00199{left:411.750000px;}
.x47_c00199{left:413.370000px;}
.x84_c00199{left:415.472682px;}
.x4_c00199{left:419.310000px;}
.x1d_c00199{left:420.930000px;}
.x4d_c00199{left:426.060000px;}
.x6e_c00199{left:429.214500px;}
.x3a_c00199{left:430.380000px;}
.x17_c00199{left:433.890000px;}
.x5c_c00199{left:437.940000px;}
.x48_c00199{left:441.990000px;}
.x25_c00199{left:444.420000px;}
.x53_c00199{left:445.770000px;}
.xf_c00199{left:451.710000px;}
.x6f_c00199{left:453.552000px;}
.x31_c00199{left:456.570000px;}
.x59_c00199{left:459.270000px;}
.x4e_c00199{left:464.670000px;}
.x54_c00199{left:467.370000px;}
.x3b_c00199{left:469.800000px;}
.x26_c00199{left:473.850000px;}
.x70_c00199{left:475.900500px;}
.x76_c00199{left:477.757500px;}
.x2e_c00199{left:480.870000px;}
.x10_c00199{left:489.780000px;}
.x7d_c00199{left:494.049000px;}
.x27_c00199{left:501.120000px;}
.x49_c00199{left:502.200000px;}
.x4f_c00199{left:503.820000px;}
.x71_c00199{left:506.094000px;}
.x7e_c00199{left:508.084500px;}
.x77_c00199{left:517.300500px;}
.x32_c00199{left:522.450000px;}
.x11_c00199{left:525.690000px;}
.x3c_c00199{left:527.310000px;}
.x7f_c00199{left:534.240000px;}
.x55_c00199{left:535.950000px;}
.x72_c00199{left:541.459500px;}
.x12_c00199{left:543.510000px;}
.xd_c00199{left:545.940000px;}
.x80_c00199{left:549.358500px;}
.x78_c00199{left:551.604000px;}
.x79_c00199{left:561.744000px;}
.x85_c00199{left:568.026336px;}
.x86_c00199{left:590.975394px;}
.x73_c00199{left:602.757000px;}
.x7a_c00199{left:608.226000px;}
.x7b_c00199{left:620.190000px;}
.x81_c00199{left:621.433500px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:0.000000pt;}
.fs0_c00199{font-size:28.000000pt;}
.fse_c00199{font-size:42.941082pt;}
.fs11_c00199{font-size:42.941919pt;}
.fs15_c00199{font-size:43.869825pt;}
.fs13_c00199{font-size:44.802710pt;}
.fsf_c00199{font-size:44.808959pt;}
.fs10_c00199{font-size:45.742479pt;}
.fs14_c00199{font-size:46.670027pt;}
.fs12_c00199{font-size:48.543039pt;}
.fs16_c00199{font-size:51.337029pt;}
.fs8_c00199{font-size:54.133333pt;}
.fsc_c00199{font-size:55.066667pt;}
.fsb_c00199{font-size:58.800000pt;}
.fs5_c00199{font-size:59.733333pt;}
.fs9_c00199{font-size:60.666667pt;}
.fsa_c00199{font-size:61.600000pt;}
.fs6_c00199{font-size:62.533333pt;}
.fs1_c00199{font-size:63.466667pt;}
.fs2_c00199{font-size:65.333333pt;}
.fs4_c00199{font-size:66.266667pt;}
.fsd_c00199{font-size:67.200000pt;}
.fs7_c00199{font-size:69.066667pt;}
.fs3_c00199{font-size:80.266667pt;}
.y0_c00199{bottom:0.000000pt;}
.y67_c00199{bottom:156.901365pt;}
.y66_c00199{bottom:157.104816pt;}
.y65_c00199{bottom:157.340773pt;}
.y64_c00199{bottom:157.708176pt;}
.y63_c00199{bottom:157.906976pt;}
.y62_c00199{bottom:158.199733pt;}
.y61_c00199{bottom:158.461349pt;}
.y60_c00199{bottom:158.588528pt;}
.y5f_c00199{bottom:158.720597pt;}
.y5e_c00199{bottom:158.828976pt;}
.y5d_c00199{bottom:159.384933pt;}
.y5c_c00199{bottom:159.485909pt;}
.y5b_c00199{bottom:159.939531pt;}
.y5a_c00199{bottom:160.603765pt;}
.y59_c00199{bottom:160.800619pt;}
.y58_c00199{bottom:171.734661pt;}
.y57_c00199{bottom:172.368117pt;}
.y56_c00199{bottom:172.503461pt;}
.y55_c00199{bottom:172.664725pt;}
.y54_c00199{bottom:172.943717pt;}
.y53_c00199{bottom:173.093429pt;}
.y52_c00199{bottom:173.266629pt;}
.y51_c00199{bottom:173.658869pt;}
.y50_c00199{bottom:174.248885pt;}
.y4f_c00199{bottom:174.444773pt;}
.y4e_c00199{bottom:174.712117pt;}
.y4d_c00199{bottom:176.881333pt;}
.y4c_c00199{bottom:187.353109pt;}
.y4b_c00199{bottom:187.480725pt;}
.y4a_c00199{bottom:187.976533pt;}
.y49_c00199{bottom:188.084693pt;}
.y48_c00199{bottom:188.370789pt;}
.y47_c00199{bottom:188.450597pt;}
.y46_c00199{bottom:188.872389pt;}
.y45_c00199{bottom:189.131093pt;}
.y44_c00199{bottom:189.557509pt;}
.y43_c00199{bottom:189.938133pt;}
.y42_c00199{bottom:189.995701pt;}
.y41_c00199{bottom:190.329749pt;}
.y40_c00199{bottom:190.548613pt;}
.y3f_c00199{bottom:190.876325pt;}
.y3e_c00199{bottom:191.095845pt;}
.y3d_c00199{bottom:191.985733pt;}
.y3c_c00199{bottom:192.481333pt;}
.y3b_c00199{bottom:204.271548pt;}
.y3a_c00199{bottom:204.870901pt;}
.y39_c00199{bottom:205.216697pt;}
.y38_c00199{bottom:205.511923pt;}
.y37_c00199{bottom:205.730441pt;}
.y35_c00199{bottom:205.961075pt;}
.y36_c00199{bottom:205.968408pt;}
.y34_c00199{bottom:206.158972pt;}
.y33_c00199{bottom:206.470507pt;}
.y32_c00199{bottom:206.798160pt;}
.y31_c00199{bottom:207.954612pt;}
.y30_c00199{bottom:208.130436pt;}
.y2f_c00199{bottom:208.488156pt;}
.y2e_c00199{bottom:208.801333pt;}
.y2d_c00199{bottom:257.480453pt;}
.y29_c00199{bottom:257.480827pt;}
.y2a_c00199{bottom:257.480933pt;}
.y2c_c00199{bottom:257.481093pt;}
.y2b_c00199{bottom:257.481280pt;}
.y28_c00199{bottom:272.719520pt;}
.y27_c00199{bottom:273.354373pt;}
.y26_c00199{bottom:273.580507pt;}
.y25_c00199{bottom:273.831867pt;}
.y24_c00199{bottom:274.316160pt;}
.y23_c00199{bottom:274.797813pt;}
.y22_c00199{bottom:287.844587pt;}
.y21_c00199{bottom:288.538533pt;}
.y20_c00199{bottom:288.701120pt;}
.y1f_c00199{bottom:288.758480pt;}
.y1e_c00199{bottom:289.396800pt;}
.y1d_c00199{bottom:290.196267pt;}
.y1c_c00199{bottom:290.640560pt;}
.y1b_c00199{bottom:304.709227pt;}
.y1a_c00199{bottom:305.001787pt;}
.y19_c00199{bottom:305.318320pt;}
.y18_c00199{bottom:305.704640pt;}
.y17_c00199{bottom:306.619333pt;}
.y16_c00199{bottom:307.076000pt;}
.y15_c00199{bottom:320.098781pt;}
.y14_c00199{bottom:322.720173pt;}
.y13_c00199{bottom:323.042667pt;}
.y12_c00199{bottom:360.550667pt;}
.y11_c00199{bottom:380.692000pt;}
.y10_c00199{bottom:400.618667pt;}
.yf_c00199{bottom:420.749333pt;}
.ye_c00199{bottom:440.982667pt;}
.yd_c00199{bottom:461.608000pt;}
.yc_c00199{bottom:541.748000pt;}
.yb_c00199{bottom:561.440000pt;}
.ya_c00199{bottom:582.013333pt;}
.y9_c00199{bottom:602.153333pt;}
.y8_c00199{bottom:622.552000pt;}
.y7_c00199{bottom:643.226667pt;}
.y6_c00199{bottom:663.177333pt;}
.y5_c00199{bottom:682.636000pt;}
.y4_c00199{bottom:703.733333pt;}
.y3_c00199{bottom:723.794667pt;}
.y2_c00199{bottom:744.000000pt;}
.y1_c00199{bottom:850.320000pt;}
.h2_c00199{height:28.000000pt;}
.h10_c00199{height:42.941082pt;}
.h13_c00199{height:42.941919pt;}
.h17_c00199{height:43.869825pt;}
.h15_c00199{height:44.802710pt;}
.h11_c00199{height:44.808959pt;}
.h12_c00199{height:45.742479pt;}
.h16_c00199{height:46.670027pt;}
.h14_c00199{height:48.543039pt;}
.h18_c00199{height:51.337029pt;}
.ha_c00199{height:54.133333pt;}
.he_c00199{height:55.066667pt;}
.hd_c00199{height:58.800000pt;}
.h7_c00199{height:59.733333pt;}
.hb_c00199{height:60.666667pt;}
.hc_c00199{height:61.600000pt;}
.h8_c00199{height:62.533333pt;}
.h3_c00199{height:63.466667pt;}
.h4_c00199{height:65.333333pt;}
.h6_c00199{height:66.266667pt;}
.hf_c00199{height:67.200000pt;}
.h9_c00199{height:69.066667pt;}
.h5_c00199{height:80.266667pt;}
.h0_c00199{height:896.400000pt;}
.h1_c00199{height:896.666667pt;}
.w0_c00199{width:603.066667pt;}
.w1_c00199{width:603.333333pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:54.720000pt;}
.x6b_c00199{left:123.985333pt;}
.x82_c00199{left:135.475451pt;}
.x42_c00199{left:151.920000pt;}
.x3d_c00199{left:155.760000pt;}
.x28_c00199{left:156.720000pt;}
.x5_c00199{left:157.680000pt;}
.x74_c00199{left:165.228000pt;}
.x6_c00199{left:173.040000pt;}
.x1e_c00199{left:176.160000pt;}
.x18_c00199{left:178.800000pt;}
.x29_c00199{left:180.000000pt;}
.x6c_c00199{left:184.976000pt;}
.x35_c00199{left:186.720000pt;}
.x13_c00199{left:191.520000pt;}
.x1f_c00199{left:196.080000pt;}
.x5e_c00199{left:198.501333pt;}
.x43_c00199{left:199.680000pt;}
.x5d_c00199{left:201.694667pt;}
.x36_c00199{left:204.240000pt;}
.x3e_c00199{left:205.680000pt;}
.x19_c00199{left:209.280000pt;}
.x65_c00199{left:215.905653pt;}
.x4a_c00199{left:217.920000pt;}
.xa_c00199{left:218.880000pt;}
.x14_c00199{left:220.560000pt;}
.x69_c00199{left:222.005893pt;}
.x61_c00199{left:223.493867pt;}
.x33_c00199{left:225.360000pt;}
.x7_c00199{left:228.000000pt;}
.x44_c00199{left:230.880000pt;}
.x37_c00199{left:237.120000pt;}
.x5a_c00199{left:240.000000pt;}
.x66_c00199{left:241.255493pt;}
.x20_c00199{left:242.640000pt;}
.x2a_c00199{left:244.800000pt;}
.x56_c00199{left:247.440000pt;}
.x4b_c00199{left:253.440000pt;}
.x2f_c00199{left:255.360000pt;}
.x50_c00199{left:257.280000pt;}
.x1a_c00199{left:262.080000pt;}
.x21_c00199{left:265.680000pt;}
.x5f_c00199{left:267.069333pt;}
.x2b_c00199{left:269.520000pt;}
.x8_c00199{left:275.280000pt;}
.xb_c00199{left:276.960000pt;}
.x38_c00199{left:277.920000pt;}
.x67_c00199{left:279.972267pt;}
.x2_c00199{left:282.000000pt;}
.x75_c00199{left:284.988000pt;}
.x60_c00199{left:286.385333pt;}
.x15_c00199{left:287.280000pt;}
.x34_c00199{left:288.960000pt;}
.x57_c00199{left:291.360000pt;}
.x6a_c00199{left:296.659733pt;}
.x3f_c00199{left:297.840000pt;}
.x9_c00199{left:302.160000pt;}
.x62_c00199{left:303.386400pt;}
.x3_c00199{left:305.280000pt;}
.x63_c00199{left:306.587867pt;}
.x45_c00199{left:307.920000pt;}
.x1b_c00199{left:311.040000pt;}
.x39_c00199{left:312.000000pt;}
.x22_c00199{left:314.400000pt;}
.x40_c00199{left:315.360000pt;}
.x2c_c00199{left:316.800000pt;}
.x5b_c00199{left:322.080000pt;}
.x4c_c00199{left:323.520000pt;}
.x68_c00199{left:325.289173pt;}
.x7c_c00199{left:326.542667pt;}
.x51_c00199{left:328.800000pt;}
.x46_c00199{left:331.200000pt;}
.x83_c00199{left:332.561504pt;}
.x23_c00199{left:336.480000pt;}
.x30_c00199{left:339.120000pt;}
.x58_c00199{left:342.960000pt;}
.x1c_c00199{left:343.920000pt;}
.xe_c00199{left:345.360000pt;}
.x52_c00199{left:347.040000pt;}
.xc_c00199{left:348.960000pt;}
.x64_c00199{left:354.216453pt;}
.x24_c00199{left:355.920000pt;}
.x2d_c00199{left:358.560000pt;}
.x16_c00199{left:362.400000pt;}
.x6d_c00199{left:364.200000pt;}
.x41_c00199{left:366.000000pt;}
.x47_c00199{left:367.440000pt;}
.x84_c00199{left:369.309051pt;}
.x4_c00199{left:372.720000pt;}
.x1d_c00199{left:374.160000pt;}
.x4d_c00199{left:378.720000pt;}
.x6e_c00199{left:381.524000pt;}
.x3a_c00199{left:382.560000pt;}
.x17_c00199{left:385.680000pt;}
.x5c_c00199{left:389.280000pt;}
.x48_c00199{left:392.880000pt;}
.x25_c00199{left:395.040000pt;}
.x53_c00199{left:396.240000pt;}
.xf_c00199{left:401.520000pt;}
.x6f_c00199{left:403.157333pt;}
.x31_c00199{left:405.840000pt;}
.x59_c00199{left:408.240000pt;}
.x4e_c00199{left:413.040000pt;}
.x54_c00199{left:415.440000pt;}
.x3b_c00199{left:417.600000pt;}
.x26_c00199{left:421.200000pt;}
.x70_c00199{left:423.022667pt;}
.x76_c00199{left:424.673333pt;}
.x2e_c00199{left:427.440000pt;}
.x10_c00199{left:435.360000pt;}
.x7d_c00199{left:439.154667pt;}
.x27_c00199{left:445.440000pt;}
.x49_c00199{left:446.400000pt;}
.x4f_c00199{left:447.840000pt;}
.x71_c00199{left:449.861333pt;}
.x7e_c00199{left:451.630667pt;}
.x77_c00199{left:459.822667pt;}
.x32_c00199{left:464.400000pt;}
.x11_c00199{left:467.280000pt;}
.x3c_c00199{left:468.720000pt;}
.x7f_c00199{left:474.880000pt;}
.x55_c00199{left:476.400000pt;}
.x72_c00199{left:481.297333pt;}
.x12_c00199{left:483.120000pt;}
.xd_c00199{left:485.280000pt;}
.x80_c00199{left:488.318667pt;}
.x78_c00199{left:490.314667pt;}
.x79_c00199{left:499.328000pt;}
.x85_c00199{left:504.912299pt;}
.x86_c00199{left:525.311461pt;}
.x73_c00199{left:535.784000pt;}
.x7a_c00199{left:540.645333pt;}
.x7b_c00199{left:551.280000pt;}
.x81_c00199{left:552.385333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m18_c00200{transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);-ms-transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.010693,-0.000182,0.004249,0.249964,0,0);}
.m7d_c00200{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);}
.m8c_c00200{transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);}
.m9c_c00200{transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{transform:matrix(0.034167,-0.000478,0.003500,0.249976,0,0);-ms-transform:matrix(0.034167,-0.000478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.034167,-0.000478,0.003500,0.249976,0,0);}
.m8_c00200{transform:matrix(0.088642,-0.001507,0.004249,0.249964,0,0);-ms-transform:matrix(0.088642,-0.001507,0.004249,0.249964,0,0);-webkit-transform:matrix(0.088642,-0.001507,0.004249,0.249964,0,0);}
.m53_c00200{transform:matrix(0.100200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100200,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{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);}
.m27_c00200{transform:matrix(0.166086,-0.002159,0.003250,0.249979,0,0);-ms-transform:matrix(0.166086,-0.002159,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166086,-0.002159,0.003250,0.249979,0,0);}
.m11_c00200{transform:matrix(0.166451,-0.002830,0.004249,0.249964,0,0);-ms-transform:matrix(0.166451,-0.002830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166451,-0.002830,0.004249,0.249964,0,0);}
.m32_c00200{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);}
.m38_c00200{transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);}
.m20_c00200{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);}
.m34_c00200{transform:matrix(0.177688,-0.002488,0.003500,0.249976,0,0);-ms-transform:matrix(0.177688,-0.002488,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177688,-0.002488,0.003500,0.249976,0,0);}
.m17_c00200{transform:matrix(0.177739,-0.003022,0.004249,0.249964,0,0);-ms-transform:matrix(0.177739,-0.003022,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177739,-0.003022,0.004249,0.249964,0,0);}
.m39_c00200{transform:matrix(0.178112,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178112,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178112,-0.002137,0.003000,0.249982,0,0);}
.m42_c00200{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);}
.m19_c00200{transform:matrix(0.181044,-0.003078,0.004249,0.249964,0,0);-ms-transform:matrix(0.181044,-0.003078,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181044,-0.003078,0.004249,0.249964,0,0);}
.m3b_c00200{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);}
.m48_c00200{transform:matrix(0.182644,-0.002009,0.002750,0.249985,0,0);-ms-transform:matrix(0.182644,-0.002009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182644,-0.002009,0.002750,0.249985,0,0);}
.m28_c00200{transform:matrix(0.183180,-0.002381,0.003250,0.249979,0,0);-ms-transform:matrix(0.183180,-0.002381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183180,-0.002381,0.003250,0.249979,0,0);}
.m83_c00200{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);}
.m70_c00200{transform:matrix(0.183454,-0.002018,0.002750,0.249985,0,0);-ms-transform:matrix(0.183454,-0.002018,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183454,-0.002018,0.002750,0.249985,0,0);}
.m4_c00200{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);}
.m3d_c00200{transform:matrix(0.186182,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186182,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186182,-0.002234,0.003000,0.249982,0,0);}
.m1f_c00200{transform:matrix(0.187018,-0.003179,0.004249,0.249964,0,0);-ms-transform:matrix(0.187018,-0.003179,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187018,-0.003179,0.004249,0.249964,0,0);}
.m60_c00200{transform:matrix(0.188269,-0.001506,0.002000,0.249992,0,0);-ms-transform:matrix(0.188269,-0.001506,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188269,-0.001506,0.002000,0.249992,0,0);}
.m84_c00200{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);}
.m12_c00200{transform:matrix(0.190952,-0.003246,0.004249,0.249964,0,0);-ms-transform:matrix(0.190952,-0.003246,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190952,-0.003246,0.004249,0.249964,0,0);}
.m22_c00200{transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);-ms-transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);}
.m67_c00200{transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192053,-0.002113,0.002750,0.249985,0,0);}
.m30_c00200{transform:matrix(0.192816,-0.002699,0.003500,0.249976,0,0);-ms-transform:matrix(0.192816,-0.002699,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192816,-0.002699,0.003500,0.249976,0,0);}
.m10_c00200{transform:matrix(0.193062,-0.003282,0.004249,0.249964,0,0);-ms-transform:matrix(0.193062,-0.003282,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193062,-0.003282,0.004249,0.249964,0,0);}
.m31_c00200{transform:matrix(0.193376,-0.002707,0.003500,0.249976,0,0);-ms-transform:matrix(0.193376,-0.002707,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193376,-0.002707,0.003500,0.249976,0,0);}
.m47_c00200{transform:matrix(0.194013,-0.002134,0.002750,0.249985,0,0);-ms-transform:matrix(0.194013,-0.002134,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194013,-0.002134,0.002750,0.249985,0,0);}
.m3c_c00200{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);}
.m45_c00200{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);}
.m2f_c00200{transform:matrix(0.197901,-0.002771,0.003500,0.249976,0,0);-ms-transform:matrix(0.197901,-0.002771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197901,-0.002771,0.003500,0.249976,0,0);}
.m41_c00200{transform:matrix(0.198978,-0.002189,0.002750,0.249985,0,0);-ms-transform:matrix(0.198978,-0.002189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198978,-0.002189,0.002750,0.249985,0,0);}
.m43_c00200{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);}
.m68_c00200{transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);-ms-transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);}
.m99_c00200{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);}
.m64_c00200{transform:matrix(0.202703,-0.002230,0.002750,0.249985,0,0);-ms-transform:matrix(0.202703,-0.002230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202703,-0.002230,0.002750,0.249985,0,0);}
.m69_c00200{transform:matrix(0.203108,-0.002234,0.002750,0.249985,0,0);-ms-transform:matrix(0.203108,-0.002234,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203108,-0.002234,0.002750,0.249985,0,0);}
.m8b_c00200{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);}
.m8f_c00200{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);}
.m5d_c00200{transform:matrix(0.204528,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204528,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204528,-0.001636,0.002000,0.249992,0,0);}
.m51_c00200{transform:matrix(0.206838,-0.001655,0.002000,0.249992,0,0);-ms-transform:matrix(0.206838,-0.001655,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206838,-0.001655,0.002000,0.249992,0,0);}
.m94_c00200{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);}
.m5b_c00200{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);}
.m1d_c00200{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);}
.m6f_c00200{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);}
.m61_c00200{transform:matrix(0.209498,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209498,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209498,-0.001676,0.002000,0.249992,0,0);}
.m6b_c00200{transform:matrix(0.209642,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209642,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209642,-0.002306,0.002750,0.249985,0,0);}
.m59_c00200{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);}
.m8a_c00200{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);}
.m6c_c00200{transform:matrix(0.210692,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210692,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210692,-0.002318,0.002750,0.249985,0,0);}
.m6a_c00200{transform:matrix(0.212282,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212282,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212282,-0.002335,0.002750,0.249985,0,0);}
.m1c_c00200{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);}
.m1b_c00200{transform:matrix(0.214984,-0.003655,0.004249,0.249964,0,0);-ms-transform:matrix(0.214984,-0.003655,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214984,-0.003655,0.004249,0.249964,0,0);}
.m24_c00200{transform:matrix(0.216082,-0.002809,0.003250,0.249979,0,0);-ms-transform:matrix(0.216082,-0.002809,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216082,-0.002809,0.003250,0.249979,0,0);}
.m14_c00200{transform:matrix(0.217874,-0.003704,0.004249,0.249964,0,0);-ms-transform:matrix(0.217874,-0.003704,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217874,-0.003704,0.004249,0.249964,0,0);}
.m55_c00200{transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);-ms-transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);}
.m9a_c00200{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);}
.m2_c00200{transform:matrix(0.221185,-0.003318,0.003750,0.249972,0,0);-ms-transform:matrix(0.221185,-0.003318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221185,-0.003318,0.003750,0.249972,0,0);}
.m56_c00200{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);}
.m71_c00200{transform:matrix(0.222572,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222572,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222572,-0.002448,0.002750,0.249985,0,0);}
.m4a_c00200{transform:matrix(0.224028,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.224028,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224028,-0.001792,0.002000,0.249992,0,0);}
.m89_c00200{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);}
.m37_c00200{transform:matrix(0.229753,-0.002757,0.003000,0.249982,0,0);-ms-transform:matrix(0.229753,-0.002757,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229753,-0.002757,0.003000,0.249982,0,0);}
.m77_c00200{transform:matrix(0.231021,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.231021,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231021,-0.002541,0.002750,0.249985,0,0);}
.m5_c00200{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);}
.m72_c00200{transform:matrix(0.235291,-0.002588,0.002750,0.249985,0,0);-ms-transform:matrix(0.235291,-0.002588,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235291,-0.002588,0.002750,0.249985,0,0);}
.m63_c00200{transform:matrix(0.235367,-0.001883,0.002000,0.249992,0,0);-ms-transform:matrix(0.235367,-0.001883,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235367,-0.001883,0.002000,0.249992,0,0);}
.m7e_c00200{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);}
.m76_c00200{transform:matrix(0.239755,-0.002637,0.002750,0.249985,0,0);-ms-transform:matrix(0.239755,-0.002637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239755,-0.002637,0.002750,0.249985,0,0);}
.m75_c00200{transform:matrix(0.240370,-0.002644,0.002750,0.249985,0,0);-ms-transform:matrix(0.240370,-0.002644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240370,-0.002644,0.002750,0.249985,0,0);}
.m36_c00200{transform:matrix(0.240548,-0.002887,0.003000,0.249982,0,0);-ms-transform:matrix(0.240548,-0.002887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240548,-0.002887,0.003000,0.249982,0,0);}
.m65_c00200{transform:matrix(0.241410,-0.002656,0.002750,0.249985,0,0);-ms-transform:matrix(0.241410,-0.002656,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241410,-0.002656,0.002750,0.249985,0,0);}
.m73_c00200{transform:matrix(0.241610,-0.002658,0.002750,0.249985,0,0);-ms-transform:matrix(0.241610,-0.002658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241610,-0.002658,0.002750,0.249985,0,0);}
.m40_c00200{transform:matrix(0.243030,-0.002673,0.002750,0.249985,0,0);-ms-transform:matrix(0.243030,-0.002673,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243030,-0.002673,0.002750,0.249985,0,0);}
.ma1_c00200{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.244290,-0.002687,0.002750,0.249985,0,0);-ms-transform:matrix(0.244290,-0.002687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244290,-0.002687,0.002750,0.249985,0,0);}
.m3f_c00200{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);}
.mb_c00200{transform:matrix(0.244645,-0.004159,0.004249,0.249964,0,0);-ms-transform:matrix(0.244645,-0.004159,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244645,-0.004159,0.004249,0.249964,0,0);}
.m3_c00200{transform:matrix(0.244932,-0.003674,0.003750,0.249972,0,0);-ms-transform:matrix(0.244932,-0.003674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244932,-0.003674,0.003750,0.249972,0,0);}
.m66_c00200{transform:matrix(0.246830,-0.002715,0.002750,0.249985,0,0);-ms-transform:matrix(0.246830,-0.002715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246830,-0.002715,0.002750,0.249985,0,0);}
.m96_c00200{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.m90_c00200{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m8e_c00200{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);}
.m81_c00200{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.251092,-0.003013,0.003000,0.249982,0,0);-ms-transform:matrix(0.251092,-0.003013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251092,-0.003013,0.003000,0.249982,0,0);}
.m16_c00200{transform:matrix(0.251314,-0.004272,0.004249,0.249964,0,0);-ms-transform:matrix(0.251314,-0.004272,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251314,-0.004272,0.004249,0.249964,0,0);}
.m13_c00200{transform:matrix(0.251584,-0.004277,0.004249,0.249964,0,0);-ms-transform:matrix(0.251584,-0.004277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251584,-0.004277,0.004249,0.249964,0,0);}
.m4e_c00200{transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);-ms-transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);}
.m4c_c00200{transform:matrix(0.256707,-0.002054,0.002000,0.249992,0,0);-ms-transform:matrix(0.256707,-0.002054,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256707,-0.002054,0.002000,0.249992,0,0);}
.m29_c00200{transform:matrix(0.257463,-0.003347,0.003250,0.249979,0,0);-ms-transform:matrix(0.257463,-0.003347,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257463,-0.003347,0.003250,0.249979,0,0);}
.m95_c00200{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);}
.m2d_c00200{transform:matrix(0.261228,-0.003396,0.003250,0.249979,0,0);-ms-transform:matrix(0.261228,-0.003396,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261228,-0.003396,0.003250,0.249979,0,0);}
.m7f_c00200{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.m86_c00200{transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);}
.m8d_c00200{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);}
.m21_c00200{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);}
.m7b_c00200{transform:matrix(0.268969,-0.002959,0.002750,0.249985,0,0);-ms-transform:matrix(0.268969,-0.002959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268969,-0.002959,0.002750,0.249985,0,0);}
.m9b_c00200{transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);}
.m82_c00200{transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.275293,-0.003854,0.003500,0.249976,0,0);-ms-transform:matrix(0.275293,-0.003854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275293,-0.003854,0.003500,0.249976,0,0);}
.m85_c00200{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m97_c00200{transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.282454,-0.004802,0.004249,0.249964,0,0);-ms-transform:matrix(0.282454,-0.004802,0.004249,0.249964,0,0);-webkit-transform:matrix(0.282454,-0.004802,0.004249,0.249964,0,0);}
.m9f_c00200{transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);}
.m98_c00200{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);}
.m7a_c00200{transform:matrix(0.294302,-0.003237,0.002750,0.249985,0,0);-ms-transform:matrix(0.294302,-0.003237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294302,-0.003237,0.002750,0.249985,0,0);}
.ma_c00200{transform:matrix(0.294352,-0.005004,0.004249,0.249964,0,0);-ms-transform:matrix(0.294352,-0.005004,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294352,-0.005004,0.004249,0.249964,0,0);}
.m91_c00200{transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);}
.m3e_c00200{transform:matrix(0.300943,-0.003611,0.003000,0.249982,0,0);-ms-transform:matrix(0.300943,-0.003611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.300943,-0.003611,0.003000,0.249982,0,0);}
.m87_c00200{transform:matrix(0.302165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302165,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.302266,-0.005139,0.004249,0.249964,0,0);-ms-transform:matrix(0.302266,-0.005139,0.004249,0.249964,0,0);-webkit-transform:matrix(0.302266,-0.005139,0.004249,0.249964,0,0);}
.m52_c00200{transform:matrix(0.307635,-0.002461,0.002000,0.249992,0,0);-ms-transform:matrix(0.307635,-0.002461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.307635,-0.002461,0.002000,0.249992,0,0);}
.m2e_c00200{transform:matrix(0.307865,-0.004310,0.003500,0.249976,0,0);-ms-transform:matrix(0.307865,-0.004310,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307865,-0.004310,0.003500,0.249976,0,0);}
.m6e_c00200{transform:matrix(0.309196,-0.003401,0.002750,0.249985,0,0);-ms-transform:matrix(0.309196,-0.003401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.309196,-0.003401,0.002750,0.249985,0,0);}
.m50_c00200{transform:matrix(0.314985,-0.002520,0.002000,0.249992,0,0);-ms-transform:matrix(0.314985,-0.002520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.314985,-0.002520,0.002000,0.249992,0,0);}
.m25_c00200{transform:matrix(0.316778,-0.004118,0.003250,0.249979,0,0);-ms-transform:matrix(0.316778,-0.004118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.316778,-0.004118,0.003250,0.249979,0,0);}
.m1a_c00200{transform:matrix(0.317419,-0.005396,0.004249,0.249964,0,0);-ms-transform:matrix(0.317419,-0.005396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.317419,-0.005396,0.004249,0.249964,0,0);}
.m6d_c00200{transform:matrix(0.317581,-0.003493,0.002750,0.249985,0,0);-ms-transform:matrix(0.317581,-0.003493,0.002750,0.249985,0,0);-webkit-transform:matrix(0.317581,-0.003493,0.002750,0.249985,0,0);}
.m4d_c00200{transform:matrix(0.327755,-0.002622,0.002000,0.249992,0,0);-ms-transform:matrix(0.327755,-0.002622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.327755,-0.002622,0.002000,0.249992,0,0);}
.m54_c00200{transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330255,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.341106,-0.004434,0.003250,0.249979,0,0);-ms-transform:matrix(0.341106,-0.004434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.341106,-0.004434,0.003250,0.249979,0,0);}
.m2c_c00200{transform:matrix(0.342686,-0.004455,0.003250,0.249979,0,0);-ms-transform:matrix(0.342686,-0.004455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.342686,-0.004455,0.003250,0.249979,0,0);}
.m93_c00200{transform:matrix(0.342900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342900,0.000000,0.000000,0.250000,0,0);}
.m79_c00200{transform:matrix(0.343004,-0.003773,0.002750,0.249985,0,0);-ms-transform:matrix(0.343004,-0.003773,0.002750,0.249985,0,0);-webkit-transform:matrix(0.343004,-0.003773,0.002750,0.249985,0,0);}
.m92_c00200{transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347390,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.361533,-0.002892,0.002000,0.249992,0,0);-ms-transform:matrix(0.361533,-0.002892,0.002000,0.249992,0,0);-webkit-transform:matrix(0.361533,-0.002892,0.002000,0.249992,0,0);}
.m74_c00200{transform:matrix(0.362058,-0.003983,0.002750,0.249985,0,0);-ms-transform:matrix(0.362058,-0.003983,0.002750,0.249985,0,0);-webkit-transform:matrix(0.362058,-0.003983,0.002750,0.249985,0,0);}
.m5e_c00200{transform:matrix(0.371498,-0.002972,0.002000,0.249992,0,0);-ms-transform:matrix(0.371498,-0.002972,0.002000,0.249992,0,0);-webkit-transform:matrix(0.371498,-0.002972,0.002000,0.249992,0,0);}
.ma0_c00200{transform:matrix(0.372730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372730,0.000000,0.000000,0.250000,0,0);}
.m9d_c00200{transform:matrix(0.373095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373095,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.375623,-0.003005,0.002000,0.249992,0,0);-ms-transform:matrix(0.375623,-0.003005,0.002000,0.249992,0,0);-webkit-transform:matrix(0.375623,-0.003005,0.002000,0.249992,0,0);}
.m5a_c00200{transform:matrix(0.384600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384600,0.000000,0.000000,0.250000,0,0);}
.m9e_c00200{transform:matrix(0.384980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384980,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.389997,-0.005070,0.003250,0.249979,0,0);-ms-transform:matrix(0.389997,-0.005070,0.003250,0.249979,0,0);-webkit-transform:matrix(0.389997,-0.005070,0.003250,0.249979,0,0);}
.m78_c00200{transform:matrix(0.395721,-0.004353,0.002750,0.249985,0,0);-ms-transform:matrix(0.395721,-0.004353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.395721,-0.004353,0.002750,0.249985,0,0);}
.m7c_c00200{transform:matrix(0.408115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408115,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.408282,-0.003266,0.002000,0.249992,0,0);-ms-transform:matrix(0.408282,-0.003266,0.002000,0.249992,0,0);-webkit-transform:matrix(0.408282,-0.003266,0.002000,0.249992,0,0);}
.mf_c00200{transform:matrix(0.427328,-0.007265,0.004249,0.249964,0,0);-ms-transform:matrix(0.427328,-0.007265,0.004249,0.249964,0,0);-webkit-transform:matrix(0.427328,-0.007265,0.004249,0.249964,0,0);}
.m23_c00200{transform:matrix(0.450957,-0.005862,0.003250,0.249979,0,0);-ms-transform:matrix(0.450957,-0.005862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.450957,-0.005862,0.003250,0.249979,0,0);}
.m57_c00200{transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.476826,-0.008106,0.004249,0.249964,0,0);-ms-transform:matrix(0.476826,-0.008106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.476826,-0.008106,0.004249,0.249964,0,0);}
.m9_c00200{transform:matrix(0.479801,-0.008157,0.004249,0.249964,0,0);-ms-transform:matrix(0.479801,-0.008157,0.004249,0.249964,0,0);-webkit-transform:matrix(0.479801,-0.008157,0.004249,0.249964,0,0);}
.m62_c00200{transform:matrix(0.485864,-0.003887,0.002000,0.249992,0,0);-ms-transform:matrix(0.485864,-0.003887,0.002000,0.249992,0,0);-webkit-transform:matrix(0.485864,-0.003887,0.002000,0.249992,0,0);}
.m49_c00200{transform:matrix(0.506364,-0.005570,0.002750,0.249985,0,0);-ms-transform:matrix(0.506364,-0.005570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.506364,-0.005570,0.002750,0.249985,0,0);}
.m2a_c00200{transform:matrix(0.510897,-0.006642,0.003250,0.249979,0,0);-ms-transform:matrix(0.510897,-0.006642,0.003250,0.249979,0,0);-webkit-transform:matrix(0.510897,-0.006642,0.003250,0.249979,0,0);}
.m1_c00200{transform:matrix(0.548463,-0.008227,0.003750,0.249972,0,0);-ms-transform:matrix(0.548463,-0.008227,0.003750,0.249972,0,0);-webkit-transform:matrix(0.548463,-0.008227,0.003750,0.249972,0,0);}
.m88_c00200{transform:matrix(0.660330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660330,0.000000,0.000000,0.250000,0,0);}
.m80_c00200{transform:matrix(0.714925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.715667,-0.005725,0.002000,0.249992,0,0);-ms-transform:matrix(0.715667,-0.005725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.715667,-0.005725,0.002000,0.249992,0,0);}
.me_c00200{transform:matrix(0.727355,-0.012365,0.004249,0.249964,0,0);-ms-transform:matrix(0.727355,-0.012365,0.004249,0.249964,0,0);-webkit-transform:matrix(0.727355,-0.012365,0.004249,0.249964,0,0);}
.m6_c00200{transform:matrix(0.827467,-0.012412,0.003750,0.249972,0,0);-ms-transform:matrix(0.827467,-0.012412,0.003750,0.249972,0,0);-webkit-transform:matrix(0.827467,-0.012412,0.003750,0.249972,0,0);}
.m7_c00200{transform:matrix(0.862280,-0.014659,0.004249,0.249964,0,0);-ms-transform:matrix(0.862280,-0.014659,0.004249,0.249964,0,0);-webkit-transform:matrix(0.862280,-0.014659,0.004249,0.249964,0,0);}
.m0_c00200{transform:matrix(1.001445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.001445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.001445,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;}
.fs13_c00200{font-size:24.150000px;}
.fs10_c00200{font-size:45.150000px;}
.fsf_c00200{font-size:48.300000px;}
.fs0_c00200{font-size:49.350000px;}
.fs11_c00200{font-size:50.400000px;}
.fs12_c00200{font-size:54.600000px;}
.fse_c00200{font-size:61.953748px;}
.fsa_c00200{font-size:63.002016px;}
.fsb_c00200{font-size:64.050000px;}
.fsd_c00200{font-size:65.103938px;}
.fs7_c00200{font-size:66.154763px;}
.fs6_c00200{font-size:67.206585px;}
.fs9_c00200{font-size:68.254129px;}
.fsc_c00200{font-size:69.302218px;}
.fs2_c00200{font-size:69.310013px;}
.fs8_c00200{font-size:70.354256px;}
.fs3_c00200{font-size:71.410317px;}
.fs4_c00200{font-size:72.456122px;}
.fs5_c00200{font-size:73.506210px;}
.fs1_c00200{font-size:109.212284px;}
.y0_c00200{bottom:0.000000px;}
.y85_c00200{bottom:108.540000px;}
.y78_c00200{bottom:197.554500px;}
.y79_c00200{bottom:197.926500px;}
.y7a_c00200{bottom:198.178500px;}
.y7b_c00200{bottom:198.396000px;}
.y7c_c00200{bottom:198.619500px;}
.y7d_c00200{bottom:198.750000px;}
.y7e_c00200{bottom:199.077000px;}
.y7f_c00200{bottom:199.386000px;}
.y80_c00200{bottom:199.650000px;}
.y81_c00200{bottom:199.722000px;}
.y82_c00200{bottom:200.020500px;}
.y83_c00200{bottom:200.233500px;}
.y84_c00200{bottom:200.440500px;}
.y77_c00200{bottom:217.648500px;}
.y76_c00200{bottom:235.006500px;}
.y75_c00200{bottom:285.700500px;}
.y6d_c00200{bottom:318.231000px;}
.y6e_c00200{bottom:318.483796px;}
.y6f_c00200{bottom:318.946952px;}
.y70_c00200{bottom:319.526266px;}
.y71_c00200{bottom:320.134357px;}
.y72_c00200{bottom:320.149702px;}
.y73_c00200{bottom:320.521480px;}
.y74_c00200{bottom:321.298993px;}
.y66_c00200{bottom:339.119972px;}
.y67_c00200{bottom:339.463836px;}
.y68_c00200{bottom:340.004892px;}
.y69_c00200{bottom:340.743717px;}
.y6a_c00200{bottom:341.443127px;}
.y6b_c00200{bottom:342.080287px;}
.y6c_c00200{bottom:342.739292px;}
.y5d_c00200{bottom:363.423000px;}
.y5e_c00200{bottom:363.563036px;}
.y5f_c00200{bottom:364.266530px;}
.y60_c00200{bottom:364.566846px;}
.y61_c00200{bottom:364.854953px;}
.y62_c00200{bottom:365.463176px;}
.y63_c00200{bottom:365.793769px;}
.y64_c00200{bottom:366.937252px;}
.y65_c00200{bottom:368.046663px;}
.y55_c00200{bottom:385.831500px;}
.y56_c00200{bottom:386.277912px;}
.y57_c00200{bottom:386.559444px;}
.y58_c00200{bottom:386.941992px;}
.y59_c00200{bottom:387.473232px;}
.y5a_c00200{bottom:387.917568px;}
.y5b_c00200{bottom:388.164540px;}
.y5c_c00200{bottom:388.682976px;}
.y54_c00200{bottom:476.913000px;}
.y4b_c00200{bottom:498.961500px;}
.y4c_c00200{bottom:499.523760px;}
.y4d_c00200{bottom:500.045604px;}
.y4e_c00200{bottom:500.509992px;}
.y4f_c00200{bottom:500.661156px;}
.y50_c00200{bottom:500.892972px;}
.y51_c00200{bottom:501.309228px;}
.y52_c00200{bottom:501.464964px;}
.y53_c00200{bottom:501.967536px;}
.y4a_c00200{bottom:522.594162px;}
.y40_c00200{bottom:543.511500px;}
.y41_c00200{bottom:543.817559px;}
.y42_c00200{bottom:544.310579px;}
.y43_c00200{bottom:544.865903px;}
.y44_c00200{bottom:545.115465px;}
.y45_c00200{bottom:545.789589px;}
.y46_c00200{bottom:546.018362px;}
.y47_c00200{bottom:546.247002px;}
.y48_c00200{bottom:546.457426px;}
.y49_c00200{bottom:546.942065px;}
.y37_c00200{bottom:565.921500px;}
.y38_c00200{bottom:566.222712px;}
.y39_c00200{bottom:567.058614px;}
.y3a_c00200{bottom:567.311280px;}
.y3b_c00200{bottom:567.852396px;}
.y3c_c00200{bottom:568.098924px;}
.y3d_c00200{bottom:568.704642px;}
.y3e_c00200{bottom:569.036580px;}
.y3f_c00200{bottom:569.748894px;}
.y2f_c00200{bottom:587.793000px;}
.y30_c00200{bottom:588.250548px;}
.y31_c00200{bottom:589.063437px;}
.y32_c00200{bottom:590.075910px;}
.y33_c00200{bottom:590.434863px;}
.y34_c00200{bottom:590.771304px;}
.y35_c00200{bottom:591.175722px;}
.y36_c00200{bottom:591.968598px;}
.y2e_c00200{bottom:680.099099px;}
.y2d_c00200{bottom:680.099808px;}
.y2c_c00200{bottom:680.100248px;}
.y2a_c00200{bottom:680.100287px;}
.y2b_c00200{bottom:680.100507px;}
.y23_c00200{bottom:702.514500px;}
.y24_c00200{bottom:703.060285px;}
.y25_c00200{bottom:703.507557px;}
.y26_c00200{bottom:703.866649px;}
.y27_c00200{bottom:704.266068px;}
.y28_c00200{bottom:704.916003px;}
.y29_c00200{bottom:705.287615px;}
.y19_c00200{bottom:744.385717px;}
.y1a_c00200{bottom:744.644594px;}
.y1b_c00200{bottom:745.743694px;}
.y1c_c00200{bottom:745.808184px;}
.y1d_c00200{bottom:746.039061px;}
.y1e_c00200{bottom:746.521011px;}
.y1f_c00200{bottom:747.839081px;}
.y20_c00200{bottom:748.582406px;}
.y21_c00200{bottom:749.597739px;}
.y22_c00200{bottom:750.583900px;}
.y10_c00200{bottom:766.261396px;}
.y11_c00200{bottom:767.009924px;}
.y12_c00200{bottom:767.779922px;}
.y13_c00200{bottom:768.382129px;}
.y14_c00200{bottom:769.496939px;}
.y15_c00200{bottom:769.995999px;}
.y16_c00200{bottom:770.704542px;}
.y17_c00200{bottom:771.833274px;}
.y18_c00200{bottom:772.062978px;}
.y8_c00200{bottom:789.217500px;}
.y9_c00200{bottom:789.998897px;}
.ya_c00200{bottom:791.099579px;}
.yb_c00200{bottom:791.364982px;}
.yc_c00200{bottom:792.172389px;}
.yd_c00200{bottom:792.908472px;}
.ye_c00200{bottom:793.764175px;}
.yf_c00200{bottom:794.175516px;}
.y2_c00200{bottom:881.832000px;}
.y3_c00200{bottom:882.634125px;}
.y4_c00200{bottom:883.148790px;}
.y5_c00200{bottom:884.327025px;}
.y7_c00200{bottom:885.376223px;}
.y6_c00200{bottom:885.445005px;}
.y1_c00200{bottom:942.642000px;}
.h15_c00200{height:24.150000px;}
.h12_c00200{height:45.150000px;}
.h11_c00200{height:48.300000px;}
.h2_c00200{height:49.350000px;}
.h13_c00200{height:50.400000px;}
.h14_c00200{height:54.600000px;}
.h10_c00200{height:61.953748px;}
.hc_c00200{height:63.002016px;}
.hd_c00200{height:64.050000px;}
.hf_c00200{height:65.103938px;}
.h9_c00200{height:66.154763px;}
.h8_c00200{height:67.206585px;}
.hb_c00200{height:68.254129px;}
.he_c00200{height:69.302218px;}
.h4_c00200{height:69.310013px;}
.ha_c00200{height:70.354256px;}
.h5_c00200{height:71.410317px;}
.h6_c00200{height:72.456122px;}
.h7_c00200{height:73.506210px;}
.h3_c00200{height:109.212284px;}
.h1_c00200{height:1005.000000px;}
.h0_c00200{height:1005.150000px;}
.w0_c00200{width:735.750000px;}
.x0_c00200{left:0.000000px;}
.x5a_c00200{left:98.159294px;}
.xf_c00200{left:104.241732px;}
.x8_c00200{left:107.388000px;}
.x17_c00200{left:111.428588px;}
.x47_c00200{left:116.100000px;}
.x55_c00200{left:119.217000px;}
.x2c_c00200{left:122.217000px;}
.x18_c00200{left:126.656588px;}
.x48_c00200{left:127.710000px;}
.x41_c00200{left:128.953500px;}
.x10_c00200{left:148.272732px;}
.x9_c00200{left:153.352500px;}
.x2d_c00200{left:154.899000px;}
.x49_c00200{left:156.600000px;}
.x4e_c00200{left:172.057500px;}
.x56_c00200{left:183.171000px;}
.x19_c00200{left:191.309588px;}
.x11_c00200{left:193.566732px;}
.x1a_c00200{left:195.103088px;}
.x62_c00200{left:198.450000px;}
.x39_c00200{left:199.683000px;}
.x5c_c00200{left:205.911000px;}
.x4f_c00200{left:207.249000px;}
.x1b_c00200{left:208.684088px;}
.x57_c00200{left:210.472500px;}
.x2e_c00200{left:212.962500px;}
.xa_c00200{left:218.098500px;}
.x63_c00200{left:220.860000px;}
.x33_c00200{left:222.367500px;}
.x12_c00200{left:228.990732px;}
.xb_c00200{left:233.710500px;}
.x1c_c00200{left:237.034088px;}
.x34_c00200{left:243.423000px;}
.x3a_c00200{left:250.167000px;}
.x50_c00200{left:255.067500px;}
.x4a_c00200{left:258.120000px;}
.x64_c00200{left:260.550000px;}
.x40_c00200{left:263.528076px;}
.x21_c00200{left:266.665500px;}
.x5d_c00200{left:270.997500px;}
.x3b_c00200{left:272.854500px;}
.x65_c00200{left:274.050000px;}
.xc_c00200{left:281.205000px;}
.x2f_c00200{left:285.282000px;}
.x2_c00200{left:286.704000px;}
.x35_c00200{left:288.516000px;}
.x27_c00200{left:290.521366px;}
.x58_c00200{left:291.957000px;}
.x13_c00200{left:294.567732px;}
.x4b_c00200{left:303.210000px;}
.x22_c00200{left:308.649000px;}
.x28_c00200{left:310.503240px;}
.x1d_c00200{left:314.567588px;}
.x51_c00200{left:321.472500px;}
.x42_c00200{left:322.515000px;}
.xd_c00200{left:324.504000px;}
.x29_c00200{left:331.025211px;}
.x30_c00200{left:334.953000px;}
.x3_c00200{left:340.179000px;}
.x43_c00200{left:341.410500px;}
.x23_c00200{left:343.054500px;}
.x5b_c00200{left:344.912588px;}
.x2a_c00200{left:346.686363px;}
.x4c_c00200{left:351.540000px;}
.x3c_c00200{left:354.936000px;}
.x1e_c00200{left:358.292588px;}
.x36_c00200{left:359.536500px;}
.x72_c00200{left:362.728500px;}
.x31_c00200{left:363.840000px;}
.x14_c00200{left:365.603232px;}
.x2b_c00200{left:368.558568px;}
.x24_c00200{left:370.677000px;}
.x4d_c00200{left:372.870000px;}
.x4_c00200{left:374.490000px;}
.x3d_c00200{left:375.721500px;}
.x52_c00200{left:377.014500px;}
.x5e_c00200{left:378.943500px;}
.x5f_c00200{left:380.338500px;}
.x66_c00200{left:382.860000px;}
.x37_c00200{left:387.198000px;}
.x3e_c00200{left:394.851000px;}
.x73_c00200{left:396.750000px;}
.xe_c00200{left:399.036000px;}
.x25_c00200{left:401.401500px;}
.x74_c00200{left:406.780500px;}
.x53_c00200{left:407.886000px;}
.x67_c00200{left:411.480000px;}
.x60_c00200{left:414.136500px;}
.x1f_c00200{left:418.018088px;}
.x32_c00200{left:420.474000px;}
.x44_c00200{left:422.419500px;}
.x59_c00200{left:425.964000px;}
.x68_c00200{left:427.950000px;}
.x15_c00200{left:431.999232px;}
.x3f_c00200{left:438.909000px;}
.x45_c00200{left:441.886500px;}
.x6b_c00200{left:443.340000px;}
.x16_c00200{left:445.511232px;}
.x38_c00200{left:446.557500px;}
.x26_c00200{left:451.396500px;}
.x5_c00200{left:453.039000px;}
.x75_c00200{left:455.652000px;}
.x69_c00200{left:460.620000px;}
.x54_c00200{left:472.690500px;}
.x6c_c00200{left:473.850000px;}
.x20_c00200{left:476.027588px;}
.x1_c00200{left:480.060000px;}
.x76_c00200{left:481.564500px;}
.x61_c00200{left:484.819500px;}
.x6d_c00200{left:493.290000px;}
.x46_c00200{left:504.708000px;}
.x77_c00200{left:520.942500px;}
.x7_c00200{left:522.985500px;}
.x6e_c00200{left:524.880000px;}
.x6_c00200{left:527.571000px;}
.x6f_c00200{left:530.280000px;}
.x78_c00200{left:536.905500px;}
.x6a_c00200{left:541.620000px;}
.x70_c00200{left:544.590000px;}
.x71_c00200{left:579.960000px;}
.x79_c00200{left:691.200000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fs13_c00200{font-size:21.466667pt;}
.fs10_c00200{font-size:40.133333pt;}
.fsf_c00200{font-size:42.933333pt;}
.fs0_c00200{font-size:43.866667pt;}
.fs11_c00200{font-size:44.800000pt;}
.fs12_c00200{font-size:48.533333pt;}
.fse_c00200{font-size:55.069998pt;}
.fsa_c00200{font-size:56.001792pt;}
.fsb_c00200{font-size:56.933333pt;}
.fsd_c00200{font-size:57.870167pt;}
.fs7_c00200{font-size:58.804233pt;}
.fs6_c00200{font-size:59.739187pt;}
.fs9_c00200{font-size:60.670337pt;}
.fsc_c00200{font-size:61.601971pt;}
.fs2_c00200{font-size:61.608901pt;}
.fs8_c00200{font-size:62.537116pt;}
.fs3_c00200{font-size:63.475837pt;}
.fs4_c00200{font-size:64.405442pt;}
.fs5_c00200{font-size:65.338854pt;}
.fs1_c00200{font-size:97.077586pt;}
.y0_c00200{bottom:0.000000pt;}
.y85_c00200{bottom:96.480000pt;}
.y78_c00200{bottom:175.604000pt;}
.y79_c00200{bottom:175.934667pt;}
.y7a_c00200{bottom:176.158667pt;}
.y7b_c00200{bottom:176.352000pt;}
.y7c_c00200{bottom:176.550667pt;}
.y7d_c00200{bottom:176.666667pt;}
.y7e_c00200{bottom:176.957333pt;}
.y7f_c00200{bottom:177.232000pt;}
.y80_c00200{bottom:177.466667pt;}
.y81_c00200{bottom:177.530667pt;}
.y82_c00200{bottom:177.796000pt;}
.y83_c00200{bottom:177.985333pt;}
.y84_c00200{bottom:178.169333pt;}
.y77_c00200{bottom:193.465333pt;}
.y76_c00200{bottom:208.894667pt;}
.y75_c00200{bottom:253.956000pt;}
.y6d_c00200{bottom:282.872000pt;}
.y6e_c00200{bottom:283.096708pt;}
.y6f_c00200{bottom:283.508401pt;}
.y70_c00200{bottom:284.023348pt;}
.y71_c00200{bottom:284.563873pt;}
.y72_c00200{bottom:284.577513pt;}
.y73_c00200{bottom:284.907983pt;}
.y74_c00200{bottom:285.599105pt;}
.y66_c00200{bottom:301.439975pt;}
.y67_c00200{bottom:301.745632pt;}
.y68_c00200{bottom:302.226571pt;}
.y69_c00200{bottom:302.883304pt;}
.y6a_c00200{bottom:303.505001pt;}
.y6b_c00200{bottom:304.071367pt;}
.y6c_c00200{bottom:304.657148pt;}
.y5d_c00200{bottom:323.042667pt;}
.y5e_c00200{bottom:323.167143pt;}
.y5f_c00200{bottom:323.792471pt;}
.y60_c00200{bottom:324.059419pt;}
.y61_c00200{bottom:324.315513pt;}
.y62_c00200{bottom:324.856156pt;}
.y63_c00200{bottom:325.150017pt;}
.y64_c00200{bottom:326.166447pt;}
.y65_c00200{bottom:327.152589pt;}
.y55_c00200{bottom:342.961333pt;}
.y56_c00200{bottom:343.358144pt;}
.y57_c00200{bottom:343.608395pt;}
.y58_c00200{bottom:343.948437pt;}
.y59_c00200{bottom:344.420651pt;}
.y5a_c00200{bottom:344.815616pt;}
.y5b_c00200{bottom:345.035147pt;}
.y5c_c00200{bottom:345.495979pt;}
.y54_c00200{bottom:423.922667pt;}
.y4b_c00200{bottom:443.521333pt;}
.y4c_c00200{bottom:444.021120pt;}
.y4d_c00200{bottom:444.484981pt;}
.y4e_c00200{bottom:444.897771pt;}
.y4f_c00200{bottom:445.032139pt;}
.y50_c00200{bottom:445.238197pt;}
.y51_c00200{bottom:445.608203pt;}
.y52_c00200{bottom:445.746635pt;}
.y53_c00200{bottom:446.193365pt;}
.y4a_c00200{bottom:464.528144pt;}
.y40_c00200{bottom:483.121333pt;}
.y41_c00200{bottom:483.393385pt;}
.y42_c00200{bottom:483.831625pt;}
.y43_c00200{bottom:484.325247pt;}
.y44_c00200{bottom:484.547080pt;}
.y45_c00200{bottom:485.146301pt;}
.y46_c00200{bottom:485.349655pt;}
.y47_c00200{bottom:485.552891pt;}
.y48_c00200{bottom:485.739935pt;}
.y49_c00200{bottom:486.170724pt;}
.y37_c00200{bottom:503.041333pt;}
.y38_c00200{bottom:503.309077pt;}
.y39_c00200{bottom:504.052101pt;}
.y3a_c00200{bottom:504.276693pt;}
.y3b_c00200{bottom:504.757685pt;}
.y3c_c00200{bottom:504.976821pt;}
.y3d_c00200{bottom:505.515237pt;}
.y3e_c00200{bottom:505.810293pt;}
.y3f_c00200{bottom:506.443461pt;}
.y2f_c00200{bottom:522.482667pt;}
.y30_c00200{bottom:522.889376pt;}
.y31_c00200{bottom:523.611944pt;}
.y32_c00200{bottom:524.511920pt;}
.y33_c00200{bottom:524.830989pt;}
.y34_c00200{bottom:525.130048pt;}
.y35_c00200{bottom:525.489531pt;}
.y36_c00200{bottom:526.194309pt;}
.y2e_c00200{bottom:604.532532pt;}
.y2d_c00200{bottom:604.533163pt;}
.y2c_c00200{bottom:604.533553pt;}
.y2a_c00200{bottom:604.533588pt;}
.y2b_c00200{bottom:604.533784pt;}
.y23_c00200{bottom:624.457333pt;}
.y24_c00200{bottom:624.942476pt;}
.y25_c00200{bottom:625.340051pt;}
.y26_c00200{bottom:625.659244pt;}
.y27_c00200{bottom:626.014283pt;}
.y28_c00200{bottom:626.592003pt;}
.y29_c00200{bottom:626.922324pt;}
.y19_c00200{bottom:661.676193pt;}
.y1a_c00200{bottom:661.906305pt;}
.y1b_c00200{bottom:662.883284pt;}
.y1c_c00200{bottom:662.940608pt;}
.y1d_c00200{bottom:663.145832pt;}
.y1e_c00200{bottom:663.574232pt;}
.y1f_c00200{bottom:664.745849pt;}
.y20_c00200{bottom:665.406583pt;}
.y21_c00200{bottom:666.309101pt;}
.y22_c00200{bottom:667.185689pt;}
.y10_c00200{bottom:681.121241pt;}
.y11_c00200{bottom:681.786599pt;}
.y12_c00200{bottom:682.471041pt;}
.y13_c00200{bottom:683.006337pt;}
.y14_c00200{bottom:683.997279pt;}
.y15_c00200{bottom:684.440888pt;}
.y16_c00200{bottom:685.070704pt;}
.y17_c00200{bottom:686.074021pt;}
.y18_c00200{bottom:686.278203pt;}
.y8_c00200{bottom:701.526667pt;}
.y9_c00200{bottom:702.221241pt;}
.ya_c00200{bottom:703.199625pt;}
.yb_c00200{bottom:703.435540pt;}
.yc_c00200{bottom:704.153235pt;}
.yd_c00200{bottom:704.807531pt;}
.ye_c00200{bottom:705.568156pt;}
.yf_c00200{bottom:705.933792pt;}
.y2_c00200{bottom:783.850667pt;}
.y3_c00200{bottom:784.563667pt;}
.y4_c00200{bottom:785.021147pt;}
.y5_c00200{bottom:786.068467pt;}
.y7_c00200{bottom:787.001087pt;}
.y6_c00200{bottom:787.062227pt;}
.y1_c00200{bottom:837.904000pt;}
.h15_c00200{height:21.466667pt;}
.h12_c00200{height:40.133333pt;}
.h11_c00200{height:42.933333pt;}
.h2_c00200{height:43.866667pt;}
.h13_c00200{height:44.800000pt;}
.h14_c00200{height:48.533333pt;}
.h10_c00200{height:55.069998pt;}
.hc_c00200{height:56.001792pt;}
.hd_c00200{height:56.933333pt;}
.hf_c00200{height:57.870167pt;}
.h9_c00200{height:58.804233pt;}
.h8_c00200{height:59.739187pt;}
.hb_c00200{height:60.670337pt;}
.he_c00200{height:61.601971pt;}
.h4_c00200{height:61.608901pt;}
.ha_c00200{height:62.537116pt;}
.h5_c00200{height:63.475837pt;}
.h6_c00200{height:64.405442pt;}
.h7_c00200{height:65.338854pt;}
.h3_c00200{height:97.077586pt;}
.h1_c00200{height:893.333333pt;}
.h0_c00200{height:893.466667pt;}
.w0_c00200{width:654.000000pt;}
.x0_c00200{left:0.000000pt;}
.x5a_c00200{left:87.252705pt;}
.xf_c00200{left:92.659317pt;}
.x8_c00200{left:95.456000pt;}
.x17_c00200{left:99.047633pt;}
.x47_c00200{left:103.200000pt;}
.x55_c00200{left:105.970667pt;}
.x2c_c00200{left:108.637333pt;}
.x18_c00200{left:112.583633pt;}
.x48_c00200{left:113.520000pt;}
.x41_c00200{left:114.625333pt;}
.x10_c00200{left:131.797984pt;}
.x9_c00200{left:136.313333pt;}
.x2d_c00200{left:137.688000pt;}
.x49_c00200{left:139.200000pt;}
.x4e_c00200{left:152.940000pt;}
.x56_c00200{left:162.818667pt;}
.x19_c00200{left:170.052967pt;}
.x11_c00200{left:172.059317pt;}
.x1a_c00200{left:173.424967pt;}
.x62_c00200{left:176.400000pt;}
.x39_c00200{left:177.496000pt;}
.x5c_c00200{left:183.032000pt;}
.x4f_c00200{left:184.221333pt;}
.x1b_c00200{left:185.496967pt;}
.x57_c00200{left:187.086667pt;}
.x2e_c00200{left:189.300000pt;}
.xa_c00200{left:193.865333pt;}
.x63_c00200{left:196.320000pt;}
.x33_c00200{left:197.660000pt;}
.x12_c00200{left:203.547317pt;}
.xb_c00200{left:207.742667pt;}
.x1c_c00200{left:210.696967pt;}
.x34_c00200{left:216.376000pt;}
.x3a_c00200{left:222.370667pt;}
.x50_c00200{left:226.726667pt;}
.x4a_c00200{left:229.440000pt;}
.x64_c00200{left:231.600000pt;}
.x40_c00200{left:234.247179pt;}
.x21_c00200{left:237.036000pt;}
.x5d_c00200{left:240.886667pt;}
.x3b_c00200{left:242.537333pt;}
.x65_c00200{left:243.600000pt;}
.xc_c00200{left:249.960000pt;}
.x2f_c00200{left:253.584000pt;}
.x2_c00200{left:254.848000pt;}
.x35_c00200{left:256.458667pt;}
.x27_c00200{left:258.241215pt;}
.x58_c00200{left:259.517333pt;}
.x13_c00200{left:261.837984pt;}
.x4b_c00200{left:269.520000pt;}
.x22_c00200{left:274.354667pt;}
.x28_c00200{left:276.002880pt;}
.x1d_c00200{left:279.615633pt;}
.x51_c00200{left:285.753333pt;}
.x42_c00200{left:286.680000pt;}
.xd_c00200{left:288.448000pt;}
.x29_c00200{left:294.244632pt;}
.x30_c00200{left:297.736000pt;}
.x3_c00200{left:302.381333pt;}
.x43_c00200{left:303.476000pt;}
.x23_c00200{left:304.937333pt;}
.x5b_c00200{left:306.588967pt;}
.x2a_c00200{left:308.165656pt;}
.x4c_c00200{left:312.480000pt;}
.x3c_c00200{left:315.498667pt;}
.x1e_c00200{left:318.482300pt;}
.x36_c00200{left:319.588000pt;}
.x72_c00200{left:322.425333pt;}
.x31_c00200{left:323.413333pt;}
.x14_c00200{left:324.980651pt;}
.x2b_c00200{left:327.607616pt;}
.x24_c00200{left:329.490667pt;}
.x4d_c00200{left:331.440000pt;}
.x4_c00200{left:332.880000pt;}
.x3d_c00200{left:333.974667pt;}
.x52_c00200{left:335.124000pt;}
.x5e_c00200{left:336.838667pt;}
.x5f_c00200{left:338.078667pt;}
.x66_c00200{left:340.320000pt;}
.x37_c00200{left:344.176000pt;}
.x3e_c00200{left:350.978667pt;}
.x73_c00200{left:352.666667pt;}
.xe_c00200{left:354.698667pt;}
.x25_c00200{left:356.801333pt;}
.x74_c00200{left:361.582667pt;}
.x53_c00200{left:362.565333pt;}
.x67_c00200{left:365.760000pt;}
.x60_c00200{left:368.121333pt;}
.x1f_c00200{left:371.571633pt;}
.x32_c00200{left:373.754667pt;}
.x44_c00200{left:375.484000pt;}
.x59_c00200{left:378.634667pt;}
.x68_c00200{left:380.400000pt;}
.x15_c00200{left:383.999317pt;}
.x3f_c00200{left:390.141333pt;}
.x45_c00200{left:392.788000pt;}
.x6b_c00200{left:394.080000pt;}
.x16_c00200{left:396.009984pt;}
.x38_c00200{left:396.940000pt;}
.x26_c00200{left:401.241333pt;}
.x5_c00200{left:402.701333pt;}
.x75_c00200{left:405.024000pt;}
.x69_c00200{left:409.440000pt;}
.x54_c00200{left:420.169333pt;}
.x6c_c00200{left:421.200000pt;}
.x20_c00200{left:423.135633pt;}
.x1_c00200{left:426.720000pt;}
.x76_c00200{left:428.057333pt;}
.x61_c00200{left:430.950667pt;}
.x6d_c00200{left:438.480000pt;}
.x46_c00200{left:448.629333pt;}
.x77_c00200{left:463.060000pt;}
.x7_c00200{left:464.876000pt;}
.x6e_c00200{left:466.560000pt;}
.x6_c00200{left:468.952000pt;}
.x6f_c00200{left:471.360000pt;}
.x78_c00200{left:477.249333pt;}
.x6a_c00200{left:481.440000pt;}
.x70_c00200{left:484.080000pt;}
.x71_c00200{left:515.520000pt;}
.x79_c00200{left:614.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_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_2f6c0d3825a5d54c0b922384.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;}
.m5a_c00201{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m34_c00201{transform:matrix(0.098160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098160,0.000000,0.000000,0.250000,0,0);}
.mac_c00201{transform:matrix(0.115495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115495,0.000000,0.000000,0.250000,0,0);}
.m6c_c00201{transform:matrix(0.136145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136145,0.000000,0.000000,0.250000,0,0);}
.m43_c00201{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m3c_c00201{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);}
.m10_c00201{transform:matrix(0.146810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146810,0.000000,0.000000,0.250000,0,0);}
.m4f_c00201{transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);}
.m67_c00201{transform:matrix(0.150370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150370,0.000000,0.000000,0.250000,0,0);}
.m77_c00201{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_c00201{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m99_c00201{transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159160,0.000000,0.000000,0.250000,0,0);}
.m46_c00201{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);}
.m4d_c00201{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);}
.m25_c00201{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);}
.m24_c00201{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m53_c00201{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);}
.m86_c00201{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);}
.m5_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);}
.m6b_c00201{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);}
.m85_c00201{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_c00201{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);}
.m76_c00201{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);}
.m18_c00201{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_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);}
.m27_c00201{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);}
.ma4_c00201{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);}
.m37_c00201{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);}
.m11_c00201{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{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);}
.m8_c00201{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);}
.m84_c00201{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);}
.m6a_c00201{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);}
.m71_c00201{transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);}
.m45_c00201{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);}
.m23_c00201{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);}
.m65_c00201{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);}
.m66_c00201{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);}
.m44_c00201{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);}
.m58_c00201{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_c00201{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);}
.m42_c00201{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);}
.m47_c00201{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);}
.mf_c00201{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);}
.m4b_c00201{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);}
.m49_c00201{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);}
.m3e_c00201{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);}
.m6_c00201{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);}
.m9_c00201{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);}
.m68_c00201{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);}
.m22_c00201{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);}
.m4e_c00201{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);}
.m91_c00201{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);}
.m3f_c00201{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m9c_c00201{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);}
.m8e_c00201{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);}
.m2a_c00201{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);}
.m31_c00201{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);}
.mab_c00201{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);}
.m90_c00201{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);}
.ma_c00201{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_c00201{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);}
.m1c_c00201{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);}
.ma7_c00201{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);}
.m7a_c00201{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);}
.m97_c00201{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);}
.m51_c00201{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);}
.m38_c00201{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);}
.m8f_c00201{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);}
.m79_c00201{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);}
.m8d_c00201{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);}
.m9b_c00201{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);}
.m15_c00201{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);}
.m4c_c00201{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);}
.m19_c00201{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);}
.m1d_c00201{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);}
.m93_c00201{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);}
.m63_c00201{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);}
.m75_c00201{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);}
.m7e_c00201{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);}
.m50_c00201{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);}
.m88_c00201{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);}
.m9a_c00201{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);}
.m4_c00201{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);}
.m7_c00201{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);}
.m9e_c00201{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);}
.md_c00201{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);}
.ma2_c00201{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);}
.m9d_c00201{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);}
.m26_c00201{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.ma6_c00201{transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);}
.m98_c00201{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);}
.m41_c00201{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);}
.m3b_c00201{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{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);}
.m3d_c00201{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);}
.m55_c00201{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);}
.m40_c00201{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);}
.m92_c00201{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);}
.ma0_c00201{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);}
.m8a_c00201{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);}
.m39_c00201{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);}
.ma8_c00201{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);}
.m32_c00201{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m5e_c00201{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);}
.ma9_c00201{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);}
.m1_c00201{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);}
.m6f_c00201{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_c00201{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);}
.ma3_c00201{transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);}
.m2d_c00201{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);}
.ma5_c00201{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m72_c00201{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.m81_c00201{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);}
.m1b_c00201{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);}
.m7f_c00201{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);}
.m14_c00201{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m73_c00201{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.m74_c00201{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);}
.m13_c00201{transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);}
.maa_c00201{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00201{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);}
.m0_c00201{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);}
.m36_c00201{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m94_c00201{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);}
.m17_c00201{transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);}
.m95_c00201{transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);}
.m2b_c00201{transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);}
.m62_c00201{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.me_c00201{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);}
.m5b_c00201{transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00201{transform:matrix(0.271665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271665,0.000000,0.000000,0.250000,0,0);}
.m7b_c00201{transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00201{transform:matrix(0.274815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274815,0.000000,0.000000,0.250000,0,0);}
.m80_c00201{transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.276295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276295,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{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);}
.m30_c00201{transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);}
.m52_c00201{transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);}
.m69_c00201{transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.m6e_c00201{transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293070,0.000000,0.000000,0.250000,0,0);}
.m9f_c00201{transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00201{transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303710,0.000000,0.000000,0.250000,0,0);}
.m33_c00201{transform:matrix(0.312690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312690,0.000000,0.000000,0.250000,0,0);}
.m87_c00201{transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00201{transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.324765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324765,0.000000,0.000000,0.250000,0,0);}
.m83_c00201{transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{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);}
.m35_c00201{transform:matrix(0.335570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335570,0.000000,0.000000,0.250000,0,0);}
.ma1_c00201{transform:matrix(0.338685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338685,0.000000,0.000000,0.250000,0,0);}
.m29_c00201{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);}
.m61_c00201{transform:matrix(0.355135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355135,0.000000,0.000000,0.250000,0,0);}
.m7d_c00201{transform:matrix(0.368215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368215,0.000000,0.000000,0.250000,0,0);}
.m96_c00201{transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00201{transform:matrix(0.378320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378320,0.000000,0.000000,0.250000,0,0);}
.m8c_c00201{transform:matrix(0.383990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383990,0.000000,0.000000,0.250000,0,0);}
.m82_c00201{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);}
.m56_c00201{transform:matrix(0.408410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408410,0.000000,0.000000,0.250000,0,0);}
.m28_c00201{transform:matrix(0.437545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437545,0.000000,0.000000,0.250000,0,0);}
.m6d_c00201{transform:matrix(0.444780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444780,0.000000,0.000000,0.250000,0,0);}
.m60_c00201{transform:matrix(0.469120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469120,0.000000,0.000000,0.250000,0,0);}
.m70_c00201{transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);}
.m48_c00201{transform:matrix(0.504360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504360,0.000000,0.000000,0.250000,0,0);}
.m59_c00201{transform:matrix(0.583015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583015,0.000000,0.000000,0.250000,0,0);}
.m7c_c00201{transform:matrix(0.712415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712415,0.000000,0.000000,0.250000,0,0);}
.m5f_c00201{transform:matrix(0.764425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764425,0.000000,0.000000,0.250000,0,0);}
.m54_c00201{transform:matrix(1.038375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.038375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.038375,0.000000,0.000000,0.250000,0,0);}
.m57_c00201{transform:matrix(1.040190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040190,0.000000,0.000000,0.250000,0,0);}
.m5d_c00201{transform:matrix(1.113235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.113235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.113235,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;}
.fs8_c00201{font-size:45.150000px;}
.fsb_c00201{font-size:52.500000px;}
.fsa_c00201{font-size:53.550000px;}
.fs9_c00201{font-size:58.800000px;}
.fs5_c00201{font-size:64.050000px;}
.fs0_c00201{font-size:68.250000px;}
.fs1_c00201{font-size:71.400000px;}
.fs4_c00201{font-size:72.450000px;}
.fs3_c00201{font-size:73.500000px;}
.fs2_c00201{font-size:74.550000px;}
.fs6_c00201{font-size:78.750000px;}
.fs7_c00201{font-size:102.900000px;}
.y0_c00201{bottom:0.000000px;}
.y14_c00201{bottom:170.230500px;}
.y13_c00201{bottom:187.803000px;}
.y12_c00201{bottom:205.327500px;}
.y11_c00201{bottom:223.074000px;}
.y10_c00201{bottom:404.179500px;}
.yf_c00201{bottom:436.786500px;}
.ye_c00201{bottom:460.285500px;}
.yd_c00201{bottom:505.324500px;}
.yc_c00201{bottom:527.991000px;}
.yb_c00201{bottom:586.233000px;}
.ya_c00201{bottom:609.277500px;}
.y9_c00201{bottom:631.888500px;}
.y8_c00201{bottom:654.564000px;}
.y7_c00201{bottom:676.890000px;}
.y6_c00201{bottom:699.420000px;}
.y5_c00201{bottom:722.070000px;}
.y4_c00201{bottom:744.742500px;}
.y3_c00201{bottom:767.527500px;}
.y2_c00201{bottom:790.101000px;}
.y1_c00201{bottom:812.700000px;}
.ha_c00201{height:45.150000px;}
.hd_c00201{height:52.500000px;}
.hc_c00201{height:53.550000px;}
.hb_c00201{height:58.800000px;}
.h7_c00201{height:64.050000px;}
.h2_c00201{height:68.250000px;}
.h3_c00201{height:71.400000px;}
.h6_c00201{height:72.450000px;}
.h5_c00201{height:73.500000px;}
.h4_c00201{height:74.550000px;}
.h8_c00201{height:78.750000px;}
.h9_c00201{height:102.900000px;}
.h0_c00201{height:1008.450000px;}
.h1_c00201{height:1008.750000px;}
.w0_c00201{width:678.450000px;}
.w1_c00201{width:678.750000px;}
.x0_c00201{left:0.000000px;}
.x62_c00201{left:151.200000px;}
.x55_c00201{left:160.380000px;}
.xe_c00201{left:178.740000px;}
.x35_c00201{left:181.440000px;}
.x3a_c00201{left:182.790000px;}
.x1_c00201{left:183.870000px;}
.x73_c00201{left:191.700000px;}
.x68_c00201{left:195.480000px;}
.x56_c00201{left:200.610000px;}
.x25_c00201{left:201.960000px;}
.x2f_c00201{left:207.090000px;}
.x8_c00201{left:213.570000px;}
.x63_c00201{left:216.540000px;}
.xf_c00201{left:218.430000px;}
.x26_c00201{left:221.940000px;}
.x3b_c00201{left:223.830000px;}
.x15_c00201{left:226.260000px;}
.x74_c00201{left:227.610000px;}
.x30_c00201{left:232.200000px;}
.x75_c00201{left:233.280000px;}
.x36_c00201{left:235.980000px;}
.x69_c00201{left:238.950000px;}
.x27_c00201{left:245.430000px;}
.x6a_c00201{left:251.910000px;}
.x1f_c00201{left:253.260000px;}
.x2_c00201{left:260.550000px;}
.x16_c00201{left:263.790000px;}
.x57_c00201{left:267.030000px;}
.x10_c00201{left:270.270000px;}
.x28_c00201{left:271.890000px;}
.x76_c00201{left:275.130000px;}
.x51_c00201{left:277.560000px;}
.x58_c00201{left:279.180000px;}
.x9_c00201{left:286.200000px;}
.x11_c00201{left:289.440000px;}
.x17_c00201{left:291.060000px;}
.x42_c00201{left:299.430000px;}
.x48_c00201{left:301.860000px;}
.x29_c00201{left:303.210000px;}
.x31_c00201{left:305.640000px;}
.x3_c00201{left:307.260000px;}
.x43_c00201{left:309.420000px;}
.x3c_c00201{left:311.310000px;}
.x18_c00201{left:312.390000px;}
.x77_c00201{left:314.820000px;}
.x20_c00201{left:316.170000px;}
.x4_c00201{left:318.060000px;}
.x52_c00201{left:321.570000px;}
.x23_c00201{left:324.270000px;}
.xa_c00201{left:326.430000px;}
.x39_c00201{left:330.480000px;}
.x49_c00201{left:332.910000px;}
.x6b_c00201{left:338.040000px;}
.x4b_c00201{left:339.930000px;}
.x12_c00201{left:342.900000px;}
.x19_c00201{left:349.920000px;}
.x53_c00201{left:352.620000px;}
.x6c_c00201{left:358.830000px;}
.x5_c00201{left:361.530000px;}
.x1a_c00201{left:362.880000px;}
.x2a_c00201{left:363.960000px;}
.x59_c00201{left:365.580000px;}
.xb_c00201{left:368.550000px;}
.x2b_c00201{left:379.620000px;}
.x13_c00201{left:380.970000px;}
.x21_c00201{left:382.320000px;}
.x54_c00201{left:384.480000px;}
.x1b_c00201{left:385.560000px;}
.x37_c00201{left:387.450000px;}
.x3d_c00201{left:391.230000px;}
.x32_c00201{left:395.280000px;}
.x6d_c00201{left:397.710000px;}
.xc_c00201{left:400.410000px;}
.x44_c00201{left:401.490000px;}
.x4c_c00201{left:402.570000px;}
.x6_c00201{left:404.730000px;}
.x2c_c00201{left:409.590000px;}
.x3e_c00201{left:413.640000px;}
.x14_c00201{left:420.660000px;}
.x22_c00201{left:423.630000px;}
.x4d_c00201{left:429.030000px;}
.x64_c00201{left:439.560000px;}
.x1c_c00201{left:441.720000px;}
.x3f_c00201{left:444.960000px;}
.x24_c00201{left:446.850000px;}
.x5a_c00201{left:448.200000px;}
.x7_c00201{left:450.090000px;}
.xd_c00201{left:456.840000px;}
.x33_c00201{left:464.400000px;}
.x2d_c00201{left:465.480000px;}
.x6e_c00201{left:467.100000px;}
.x40_c00201{left:475.740000px;}
.x38_c00201{left:477.090000px;}
.x4a_c00201{left:479.250000px;}
.x4e_c00201{left:484.920000px;}
.x1d_c00201{left:489.780000px;}
.x2e_c00201{left:494.100000px;}
.x6f_c00201{left:500.310000px;}
.x5b_c00201{left:501.390000px;}
.x1e_c00201{left:506.790000px;}
.x65_c00201{left:510.840000px;}
.x70_c00201{left:514.890000px;}
.x5c_c00201{left:515.970000px;}
.x41_c00201{left:522.990000px;}
.x45_c00201{left:529.200000px;}
.x5d_c00201{left:547.830000px;}
.x34_c00201{left:549.990000px;}
.x46_c00201{left:554.850000px;}
.x71_c00201{left:558.630000px;}
.x4f_c00201{left:559.710000px;}
.x47_c00201{left:567.270000px;}
.x66_c00201{left:568.350000px;}
.x5e_c00201{left:569.430000px;}
.x50_c00201{left:572.670000px;}
.x72_c00201{left:579.150000px;}
.x67_c00201{left:591.840000px;}
.x5f_c00201{left:600.750000px;}
.x78_c00201{left:627.480000px;}
.x60_c00201{left:631.530000px;}
.x61_c00201{left:639.360000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:0.000000pt;}
.fs8_c00201{font-size:40.133333pt;}
.fsb_c00201{font-size:46.666667pt;}
.fsa_c00201{font-size:47.600000pt;}
.fs9_c00201{font-size:52.266667pt;}
.fs5_c00201{font-size:56.933333pt;}
.fs0_c00201{font-size:60.666667pt;}
.fs1_c00201{font-size:63.466667pt;}
.fs4_c00201{font-size:64.400000pt;}
.fs3_c00201{font-size:65.333333pt;}
.fs2_c00201{font-size:66.266667pt;}
.fs6_c00201{font-size:70.000000pt;}
.fs7_c00201{font-size:91.466667pt;}
.y0_c00201{bottom:0.000000pt;}
.y14_c00201{bottom:151.316000pt;}
.y13_c00201{bottom:166.936000pt;}
.y12_c00201{bottom:182.513333pt;}
.y11_c00201{bottom:198.288000pt;}
.y10_c00201{bottom:359.270667pt;}
.yf_c00201{bottom:388.254667pt;}
.ye_c00201{bottom:409.142667pt;}
.yd_c00201{bottom:449.177333pt;}
.yc_c00201{bottom:469.325333pt;}
.yb_c00201{bottom:521.096000pt;}
.ya_c00201{bottom:541.580000pt;}
.y9_c00201{bottom:561.678667pt;}
.y8_c00201{bottom:581.834667pt;}
.y7_c00201{bottom:601.680000pt;}
.y6_c00201{bottom:621.706667pt;}
.y5_c00201{bottom:641.840000pt;}
.y4_c00201{bottom:661.993333pt;}
.y3_c00201{bottom:682.246667pt;}
.y2_c00201{bottom:702.312000pt;}
.y1_c00201{bottom:722.400000pt;}
.ha_c00201{height:40.133333pt;}
.hd_c00201{height:46.666667pt;}
.hc_c00201{height:47.600000pt;}
.hb_c00201{height:52.266667pt;}
.h7_c00201{height:56.933333pt;}
.h2_c00201{height:60.666667pt;}
.h3_c00201{height:63.466667pt;}
.h6_c00201{height:64.400000pt;}
.h5_c00201{height:65.333333pt;}
.h4_c00201{height:66.266667pt;}
.h8_c00201{height:70.000000pt;}
.h9_c00201{height:91.466667pt;}
.h0_c00201{height:896.400000pt;}
.h1_c00201{height:896.666667pt;}
.w0_c00201{width:603.066667pt;}
.w1_c00201{width:603.333333pt;}
.x0_c00201{left:0.000000pt;}
.x62_c00201{left:134.400000pt;}
.x55_c00201{left:142.560000pt;}
.xe_c00201{left:158.880000pt;}
.x35_c00201{left:161.280000pt;}
.x3a_c00201{left:162.480000pt;}
.x1_c00201{left:163.440000pt;}
.x73_c00201{left:170.400000pt;}
.x68_c00201{left:173.760000pt;}
.x56_c00201{left:178.320000pt;}
.x25_c00201{left:179.520000pt;}
.x2f_c00201{left:184.080000pt;}
.x8_c00201{left:189.840000pt;}
.x63_c00201{left:192.480000pt;}
.xf_c00201{left:194.160000pt;}
.x26_c00201{left:197.280000pt;}
.x3b_c00201{left:198.960000pt;}
.x15_c00201{left:201.120000pt;}
.x74_c00201{left:202.320000pt;}
.x30_c00201{left:206.400000pt;}
.x75_c00201{left:207.360000pt;}
.x36_c00201{left:209.760000pt;}
.x69_c00201{left:212.400000pt;}
.x27_c00201{left:218.160000pt;}
.x6a_c00201{left:223.920000pt;}
.x1f_c00201{left:225.120000pt;}
.x2_c00201{left:231.600000pt;}
.x16_c00201{left:234.480000pt;}
.x57_c00201{left:237.360000pt;}
.x10_c00201{left:240.240000pt;}
.x28_c00201{left:241.680000pt;}
.x76_c00201{left:244.560000pt;}
.x51_c00201{left:246.720000pt;}
.x58_c00201{left:248.160000pt;}
.x9_c00201{left:254.400000pt;}
.x11_c00201{left:257.280000pt;}
.x17_c00201{left:258.720000pt;}
.x42_c00201{left:266.160000pt;}
.x48_c00201{left:268.320000pt;}
.x29_c00201{left:269.520000pt;}
.x31_c00201{left:271.680000pt;}
.x3_c00201{left:273.120000pt;}
.x43_c00201{left:275.040000pt;}
.x3c_c00201{left:276.720000pt;}
.x18_c00201{left:277.680000pt;}
.x77_c00201{left:279.840000pt;}
.x20_c00201{left:281.040000pt;}
.x4_c00201{left:282.720000pt;}
.x52_c00201{left:285.840000pt;}
.x23_c00201{left:288.240000pt;}
.xa_c00201{left:290.160000pt;}
.x39_c00201{left:293.760000pt;}
.x49_c00201{left:295.920000pt;}
.x6b_c00201{left:300.480000pt;}
.x4b_c00201{left:302.160000pt;}
.x12_c00201{left:304.800000pt;}
.x19_c00201{left:311.040000pt;}
.x53_c00201{left:313.440000pt;}
.x6c_c00201{left:318.960000pt;}
.x5_c00201{left:321.360000pt;}
.x1a_c00201{left:322.560000pt;}
.x2a_c00201{left:323.520000pt;}
.x59_c00201{left:324.960000pt;}
.xb_c00201{left:327.600000pt;}
.x2b_c00201{left:337.440000pt;}
.x13_c00201{left:338.640000pt;}
.x21_c00201{left:339.840000pt;}
.x54_c00201{left:341.760000pt;}
.x1b_c00201{left:342.720000pt;}
.x37_c00201{left:344.400000pt;}
.x3d_c00201{left:347.760000pt;}
.x32_c00201{left:351.360000pt;}
.x6d_c00201{left:353.520000pt;}
.xc_c00201{left:355.920000pt;}
.x44_c00201{left:356.880000pt;}
.x4c_c00201{left:357.840000pt;}
.x6_c00201{left:359.760000pt;}
.x2c_c00201{left:364.080000pt;}
.x3e_c00201{left:367.680000pt;}
.x14_c00201{left:373.920000pt;}
.x22_c00201{left:376.560000pt;}
.x4d_c00201{left:381.360000pt;}
.x64_c00201{left:390.720000pt;}
.x1c_c00201{left:392.640000pt;}
.x3f_c00201{left:395.520000pt;}
.x24_c00201{left:397.200000pt;}
.x5a_c00201{left:398.400000pt;}
.x7_c00201{left:400.080000pt;}
.xd_c00201{left:406.080000pt;}
.x33_c00201{left:412.800000pt;}
.x2d_c00201{left:413.760000pt;}
.x6e_c00201{left:415.200000pt;}
.x40_c00201{left:422.880000pt;}
.x38_c00201{left:424.080000pt;}
.x4a_c00201{left:426.000000pt;}
.x4e_c00201{left:431.040000pt;}
.x1d_c00201{left:435.360000pt;}
.x2e_c00201{left:439.200000pt;}
.x6f_c00201{left:444.720000pt;}
.x5b_c00201{left:445.680000pt;}
.x1e_c00201{left:450.480000pt;}
.x65_c00201{left:454.080000pt;}
.x70_c00201{left:457.680000pt;}
.x5c_c00201{left:458.640000pt;}
.x41_c00201{left:464.880000pt;}
.x45_c00201{left:470.400000pt;}
.x5d_c00201{left:486.960000pt;}
.x34_c00201{left:488.880000pt;}
.x46_c00201{left:493.200000pt;}
.x71_c00201{left:496.560000pt;}
.x4f_c00201{left:497.520000pt;}
.x47_c00201{left:504.240000pt;}
.x66_c00201{left:505.200000pt;}
.x5e_c00201{left:506.160000pt;}
.x50_c00201{left:509.040000pt;}
.x72_c00201{left:514.800000pt;}
.x67_c00201{left:526.080000pt;}
.x5f_c00201{left:534.000000pt;}
.x78_c00201{left:557.760000pt;}
.x60_c00201{left:561.360000pt;}
.x61_c00201{left:568.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m33_c00202{transform:matrix(0.010315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010315,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00202{transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{transform:matrix(0.109460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109460,0.000000,0.000000,0.250000,0,0);}
.m2a_c00202{transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{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);}
.m2b_c00202{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);}
.m2d_c00202{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);}
.m13_c00202{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);}
.m2f_c00202{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);}
.m12_c00202{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);}
.m3_c00202{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);}
.m14_c00202{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_c00202{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);}
.m2c_c00202{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);}
.m0_c00202{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);}
.m2_c00202{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);}
.m41_c00202{transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);}
.m32_c00202{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);}
.md_c00202{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);}
.m53_c00202{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{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);}
.m4d_c00202{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);}
.m5_c00202{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);}
.m11_c00202{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);}
.m3d_c00202{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);}
.mc_c00202{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{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);}
.m4_c00202{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);}
.m7_c00202{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{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);}
.m45_c00202{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);}
.m39_c00202{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227955,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{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);}
.m3c_c00202{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);}
.m26_c00202{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.me_c00202{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);}
.m2e_c00202{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);}
.m16_c00202{transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239720,0.000000,0.000000,0.250000,0,0);}
.m36_c00202{transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{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);}
.m35_c00202{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{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);}
.m1e_c00202{transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);}
.m30_c00202{transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266855,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.269415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{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);}
.m38_c00202{transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);}
.m29_c00202{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304505,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{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);}
.m51_c00202{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);}
.m10_c00202{transform:matrix(0.310010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310010,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328195,0.000000,0.000000,0.250000,0,0);}
.m4c_c00202{transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);}
.m25_c00202{transform:matrix(0.331330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331330,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.351525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351525,0.000000,0.000000,0.250000,0,0);}
.m46_c00202{transform:matrix(0.394075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394075,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);}
.m49_c00202{transform:matrix(0.410930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410930,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.412355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412355,0.000000,0.000000,0.250000,0,0);}
.m23_c00202{transform:matrix(0.414905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414905,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.421565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421565,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.439370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439370,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.444550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444550,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.452190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452190,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.454930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454930,0.000000,0.000000,0.250000,0,0);}
.m22_c00202{transform:matrix(0.457475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457475,0.000000,0.000000,0.250000,0,0);}
.m42_c00202{transform:matrix(0.491360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491360,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.500440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500440,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{transform:matrix(0.534325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534325,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534575,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);}
.m27_c00202{transform:matrix(0.550050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00202{transform:matrix(0.565730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.591275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591275,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{transform:matrix(0.604455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604455,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{transform:matrix(0.627690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627690,0.000000,0.000000,0.250000,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;}
.fs9_c00202{font-size:46.200000px;}
.fs8_c00202{font-size:49.350000px;}
.fsa_c00202{font-size:50.400000px;}
.fs6_c00202{font-size:52.500000px;}
.fsb_c00202{font-size:53.550000px;}
.fs7_c00202{font-size:55.650000px;}
.fs3_c00202{font-size:70.350000px;}
.fs2_c00202{font-size:72.450000px;}
.fs4_c00202{font-size:73.500000px;}
.fs0_c00202{font-size:74.550000px;}
.fs1_c00202{font-size:79.800000px;}
.fs5_c00202{font-size:115.500000px;}
.y0_c00202{bottom:0.000000px;}
.y14_c00202{bottom:211.408500px;}
.y13_c00202{bottom:251.508000px;}
.y12_c00202{bottom:269.892000px;}
.y11_c00202{bottom:288.478500px;}
.y10_c00202{bottom:306.363000px;}
.yf_c00202{bottom:342.864000px;}
.ye_c00202{bottom:359.812500px;}
.yd_c00202{bottom:392.448000px;}
.yc_c00202{bottom:463.590000px;}
.y5_c00202{bottom:486.810000px;}
.y6_c00202{bottom:488.757000px;}
.y7_c00202{bottom:489.181500px;}
.y8_c00202{bottom:489.543000px;}
.y9_c00202{bottom:489.733500px;}
.ya_c00202{bottom:490.158000px;}
.yb_c00202{bottom:490.737000px;}
.y4_c00202{bottom:512.245500px;}
.y3_c00202{bottom:535.227000px;}
.y2_c00202{bottom:558.442500px;}
.y1_c00202{bottom:580.023000px;}
.hb_c00202{height:46.200000px;}
.ha_c00202{height:49.350000px;}
.hc_c00202{height:50.400000px;}
.h8_c00202{height:52.500000px;}
.hd_c00202{height:53.550000px;}
.h9_c00202{height:55.650000px;}
.h5_c00202{height:70.350000px;}
.h4_c00202{height:72.450000px;}
.h6_c00202{height:73.500000px;}
.h2_c00202{height:74.550000px;}
.h3_c00202{height:79.800000px;}
.h7_c00202{height:115.500000px;}
.h1_c00202{height:1005.000000px;}
.h0_c00202{height:1005.150000px;}
.w0_c00202{width:735.750000px;}
.x0_c00202{left:0.000000px;}
.x24_c00202{left:107.190000px;}
.x16_c00202{left:111.240000px;}
.xe_c00202{left:115.560000px;}
.x17_c00202{left:118.260000px;}
.xa_c00202{left:119.880000px;}
.x1_c00202{left:124.470000px;}
.x3a_c00202{left:127.980000px;}
.x18_c00202{left:148.770000px;}
.x2_c00202{left:151.740000px;}
.x39_c00202{left:163.620000px;}
.x26_c00202{left:169.830000px;}
.x38_c00202{left:172.530000px;}
.x2e_c00202{left:179.010000px;}
.x32_c00202{left:183.060000px;}
.x27_c00202{left:187.920000px;}
.x2f_c00202{left:191.160000px;}
.x28_c00202{left:200.070000px;}
.x33_c00202{left:205.740000px;}
.xf_c00202{left:208.170000px;}
.x3b_c00202{left:210.870000px;}
.x19_c00202{left:214.650000px;}
.x34_c00202{left:217.350000px;}
.x3_c00202{left:218.970000px;}
.x30_c00202{left:220.320000px;}
.x35_c00202{left:229.500000px;}
.xb_c00202{left:231.660000px;}
.x29_c00202{left:237.330000px;}
.x1a_c00202{left:238.680000px;}
.x4_c00202{left:245.160000px;}
.x10_c00202{left:248.670000px;}
.x2a_c00202{left:250.830000px;}
.x11_c00202{left:252.990000px;}
.x3c_c00202{left:256.500000px;}
.x36_c00202{left:258.930000px;}
.xc_c00202{left:261.090000px;}
.x5_c00202{left:270.000000px;}
.x2b_c00202{left:272.430000px;}
.x1f_c00202{left:273.717000px;}
.x37_c00202{left:274.860000px;}
.x12_c00202{left:284.580000px;}
.x2c_c00202{left:291.870000px;}
.x20_c00202{left:297.781500px;}
.x3d_c00202{left:302.400000px;}
.x31_c00202{left:305.640000px;}
.x21_c00202{left:310.501500px;}
.x1b_c00202{left:314.010000px;}
.x2d_c00202{left:321.300000px;}
.x3e_c00202{left:326.160000px;}
.x3f_c00202{left:329.400000px;}
.x1c_c00202{left:334.530000px;}
.x13_c00202{left:335.610000px;}
.x25_c00202{left:337.770000px;}
.x22_c00202{left:338.833500px;}
.x6_c00202{left:342.090000px;}
.x1d_c00202{left:361.530000px;}
.x40_c00202{left:371.520000px;}
.x23_c00202{left:377.455500px;}
.x41_c00202{left:385.020000px;}
.x14_c00202{left:393.390000px;}
.x1e_c00202{left:409.050000px;}
.x42_c00202{left:416.340000px;}
.x7_c00202{left:417.420000px;}
.x15_c00202{left:426.870000px;}
.x43_c00202{left:430.920000px;}
.x8_c00202{left:475.470000px;}
.x44_c00202{left:498.150000px;}
.x9_c00202{left:501.120000px;}
.xd_c00202{left:507.060000px;}
.x45_c00202{left:517.320000px;}
.x46_c00202{left:575.910000px;}
.x47_c00202{left:586.440000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.fs9_c00202{font-size:41.066667pt;}
.fs8_c00202{font-size:43.866667pt;}
.fsa_c00202{font-size:44.800000pt;}
.fs6_c00202{font-size:46.666667pt;}
.fsb_c00202{font-size:47.600000pt;}
.fs7_c00202{font-size:49.466667pt;}
.fs3_c00202{font-size:62.533333pt;}
.fs2_c00202{font-size:64.400000pt;}
.fs4_c00202{font-size:65.333333pt;}
.fs0_c00202{font-size:66.266667pt;}
.fs1_c00202{font-size:70.933333pt;}
.fs5_c00202{font-size:102.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y14_c00202{bottom:187.918667pt;}
.y13_c00202{bottom:223.562667pt;}
.y12_c00202{bottom:239.904000pt;}
.y11_c00202{bottom:256.425333pt;}
.y10_c00202{bottom:272.322667pt;}
.yf_c00202{bottom:304.768000pt;}
.ye_c00202{bottom:319.833333pt;}
.yd_c00202{bottom:348.842667pt;}
.yc_c00202{bottom:412.080000pt;}
.y5_c00202{bottom:432.720000pt;}
.y6_c00202{bottom:434.450667pt;}
.y7_c00202{bottom:434.828000pt;}
.y8_c00202{bottom:435.149333pt;}
.y9_c00202{bottom:435.318667pt;}
.ya_c00202{bottom:435.696000pt;}
.yb_c00202{bottom:436.210667pt;}
.y4_c00202{bottom:455.329333pt;}
.y3_c00202{bottom:475.757333pt;}
.y2_c00202{bottom:496.393333pt;}
.y1_c00202{bottom:515.576000pt;}
.hb_c00202{height:41.066667pt;}
.ha_c00202{height:43.866667pt;}
.hc_c00202{height:44.800000pt;}
.h8_c00202{height:46.666667pt;}
.hd_c00202{height:47.600000pt;}
.h9_c00202{height:49.466667pt;}
.h5_c00202{height:62.533333pt;}
.h4_c00202{height:64.400000pt;}
.h6_c00202{height:65.333333pt;}
.h2_c00202{height:66.266667pt;}
.h3_c00202{height:70.933333pt;}
.h7_c00202{height:102.666667pt;}
.h1_c00202{height:893.333333pt;}
.h0_c00202{height:893.466667pt;}
.w0_c00202{width:654.000000pt;}
.x0_c00202{left:0.000000pt;}
.x24_c00202{left:95.280000pt;}
.x16_c00202{left:98.880000pt;}
.xe_c00202{left:102.720000pt;}
.x17_c00202{left:105.120000pt;}
.xa_c00202{left:106.560000pt;}
.x1_c00202{left:110.640000pt;}
.x3a_c00202{left:113.760000pt;}
.x18_c00202{left:132.240000pt;}
.x2_c00202{left:134.880000pt;}
.x39_c00202{left:145.440000pt;}
.x26_c00202{left:150.960000pt;}
.x38_c00202{left:153.360000pt;}
.x2e_c00202{left:159.120000pt;}
.x32_c00202{left:162.720000pt;}
.x27_c00202{left:167.040000pt;}
.x2f_c00202{left:169.920000pt;}
.x28_c00202{left:177.840000pt;}
.x33_c00202{left:182.880000pt;}
.xf_c00202{left:185.040000pt;}
.x3b_c00202{left:187.440000pt;}
.x19_c00202{left:190.800000pt;}
.x34_c00202{left:193.200000pt;}
.x3_c00202{left:194.640000pt;}
.x30_c00202{left:195.840000pt;}
.x35_c00202{left:204.000000pt;}
.xb_c00202{left:205.920000pt;}
.x29_c00202{left:210.960000pt;}
.x1a_c00202{left:212.160000pt;}
.x4_c00202{left:217.920000pt;}
.x10_c00202{left:221.040000pt;}
.x2a_c00202{left:222.960000pt;}
.x11_c00202{left:224.880000pt;}
.x3c_c00202{left:228.000000pt;}
.x36_c00202{left:230.160000pt;}
.xc_c00202{left:232.080000pt;}
.x5_c00202{left:240.000000pt;}
.x2b_c00202{left:242.160000pt;}
.x1f_c00202{left:243.304000pt;}
.x37_c00202{left:244.320000pt;}
.x12_c00202{left:252.960000pt;}
.x2c_c00202{left:259.440000pt;}
.x20_c00202{left:264.694667pt;}
.x3d_c00202{left:268.800000pt;}
.x31_c00202{left:271.680000pt;}
.x21_c00202{left:276.001333pt;}
.x1b_c00202{left:279.120000pt;}
.x2d_c00202{left:285.600000pt;}
.x3e_c00202{left:289.920000pt;}
.x3f_c00202{left:292.800000pt;}
.x1c_c00202{left:297.360000pt;}
.x13_c00202{left:298.320000pt;}
.x25_c00202{left:300.240000pt;}
.x22_c00202{left:301.185333pt;}
.x6_c00202{left:304.080000pt;}
.x1d_c00202{left:321.360000pt;}
.x40_c00202{left:330.240000pt;}
.x23_c00202{left:335.516000pt;}
.x41_c00202{left:342.240000pt;}
.x14_c00202{left:349.680000pt;}
.x1e_c00202{left:363.600000pt;}
.x42_c00202{left:370.080000pt;}
.x7_c00202{left:371.040000pt;}
.x15_c00202{left:379.440000pt;}
.x43_c00202{left:383.040000pt;}
.x8_c00202{left:422.640000pt;}
.x44_c00202{left:442.800000pt;}
.x9_c00202{left:445.440000pt;}
.xd_c00202{left:450.720000pt;}
.x45_c00202{left:459.840000pt;}
.x46_c00202{left:511.920000pt;}
.x47_c00202{left:521.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7_c00203{transform:matrix(0.012635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012635,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{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);}
.m79_c00203{transform:matrix(0.062730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062730,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(0.083376,0.000834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.083376,0.000834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.083376,0.000834,-0.002500,0.249988,0,0);}
.m7b_c00203{transform:matrix(0.104510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104510,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.125910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125910,0.000000,0.000000,0.250000,0,0);}
.m7a_c00203{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00203{transform:matrix(0.131101,0.001573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.131101,0.001573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.131101,0.001573,-0.003000,0.249982,0,0);}
.m36_c00203{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);}
.m57_c00203{transform:matrix(0.133437,0.001868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.133437,0.001868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.133437,0.001868,-0.003500,0.249976,0,0);}
.m5f_c00203{transform:matrix(0.136837,0.001916,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136837,0.001916,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136837,0.001916,-0.003500,0.249976,0,0);}
.m26_c00203{transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);}
.m71_c00203{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);}
.m52_c00203{transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.151085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151085,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{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);}
.m72_c00203{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{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);}
.m53_c00203{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);}
.m8c_c00203{transform:matrix(0.157019,0.001884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157019,0.001884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157019,0.001884,-0.003000,0.249982,0,0);}
.m6a_c00203{transform:matrix(0.158090,0.002213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158090,0.002213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158090,0.002213,-0.003500,0.249976,0,0);}
.m6d_c00203{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.m6c_c00203{transform:matrix(0.161284,0.002258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161284,0.002258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161284,0.002258,-0.003500,0.249976,0,0);}
.m70_c00203{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);}
.m83_c00203{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);}
.m40_c00203{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);}
.m47_c00203{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);}
.m17_c00203{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);}
.m9f_c00203{transform:matrix(0.166308,0.001996,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166308,0.001996,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166308,0.001996,-0.003000,0.249982,0,0);}
.m5e_c00203{transform:matrix(0.167304,0.002342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167304,0.002342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167304,0.002342,-0.003500,0.249976,0,0);}
.m8f_c00203{transform:matrix(0.168118,0.002017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168118,0.002017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168118,0.002017,-0.003000,0.249982,0,0);}
.m75_c00203{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);}
.m2f_c00203{transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171706,0.001717,-0.002500,0.249988,0,0);}
.m33_c00203{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);}
.m39_c00203{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);}
.m10_c00203{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);}
.m32_c00203{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);}
.m41_c00203{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);}
.m8b_c00203{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);}
.m3a_c00203{transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);}
.m6e_c00203{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);}
.m21_c00203{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);}
.m20_c00203{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);}
.m22_c00203{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);}
.m43_c00203{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);}
.m99_c00203{transform:matrix(0.180612,0.002167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180612,0.002167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180612,0.002167,-0.003000,0.249982,0,0);}
.m60_c00203{transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180717,0.002530,-0.003500,0.249976,0,0);}
.m56_c00203{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);}
.m18_c00203{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);}
.ma0_c00203{transform:matrix(0.181887,0.002183,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181887,0.002183,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181887,0.002183,-0.003000,0.249982,0,0);}
.m82_c00203{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);}
.m54_c00203{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);}
.m11_c00203{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);}
.m6f_c00203{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);}
.m7f_c00203{transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);}
.ma8_c00203{transform:matrix(0.184512,0.002214,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184512,0.002214,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184512,0.002214,-0.003000,0.249982,0,0);}
.m87_c00203{transform:matrix(0.184717,0.002217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184717,0.002217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184717,0.002217,-0.003000,0.249982,0,0);}
.ma1_c00203{transform:matrix(0.184962,0.002220,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184962,0.002220,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184962,0.002220,-0.003000,0.249982,0,0);}
.m38_c00203{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{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);}
.m15_c00203{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);}
.m34_c00203{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);}
.m90_c00203{transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);}
.m16_c00203{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);}
.m1e_c00203{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);}
.m1d_c00203{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.m88_c00203{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);}
.m42_c00203{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);}
.m91_c00203{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);}
.mf_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);}
.m30_c00203{transform:matrix(0.193305,0.001933,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193305,0.001933,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193305,0.001933,-0.002500,0.249988,0,0);}
.ma4_c00203{transform:matrix(0.193346,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193346,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193346,0.002320,-0.003000,0.249982,0,0);}
.m80_c00203{transform:matrix(0.193691,0.002324,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193691,0.002324,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193691,0.002324,-0.003000,0.249982,0,0);}
.m4d_c00203{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);}
.m9e_c00203{transform:matrix(0.195751,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195751,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195751,0.002349,-0.003000,0.249982,0,0);}
.m48_c00203{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);}
.ma7_c00203{transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196626,0.002360,-0.003000,0.249982,0,0);}
.m2c_c00203{transform:matrix(0.196675,0.001967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196675,0.001967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196675,0.001967,-0.002500,0.249988,0,0);}
.m2e_c00203{transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197035,0.001970,-0.002500,0.249988,0,0);}
.m68_c00203{transform:matrix(0.197931,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197931,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197931,0.002771,-0.003500,0.249976,0,0);}
.ma2_c00203{transform:matrix(0.199231,0.002391,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199231,0.002391,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199231,0.002391,-0.003000,0.249982,0,0);}
.m46_c00203{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);}
.m94_c00203{transform:matrix(0.200271,0.002403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200271,0.002403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200271,0.002403,-0.003000,0.249982,0,0);}
.m63_c00203{transform:matrix(0.202510,0.002835,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202510,0.002835,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202510,0.002835,-0.003500,0.249976,0,0);}
.m2d_c00203{transform:matrix(0.203100,0.002031,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203100,0.002031,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203100,0.002031,-0.002500,0.249988,0,0);}
.m9a_c00203{transform:matrix(0.204225,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204225,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204225,0.002451,-0.003000,0.249982,0,0);}
.m97_c00203{transform:matrix(0.204915,0.002459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204915,0.002459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204915,0.002459,-0.003000,0.249982,0,0);}
.m95_c00203{transform:matrix(0.204970,0.002460,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204970,0.002460,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204970,0.002460,-0.003000,0.249982,0,0);}
.m67_c00203{transform:matrix(0.205240,0.002873,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205240,0.002873,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205240,0.002873,-0.003500,0.249976,0,0);}
.ma6_c00203{transform:matrix(0.206035,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206035,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206035,0.002472,-0.003000,0.249982,0,0);}
.m6_c00203{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{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);}
.ma5_c00203{transform:matrix(0.208455,0.002501,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208455,0.002501,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208455,0.002501,-0.003000,0.249982,0,0);}
.m23_c00203{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);}
.m74_c00203{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);}
.m93_c00203{transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);}
.m92_c00203{transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211160,0.002534,-0.003000,0.249982,0,0);}
.m3f_c00203{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);}
.m55_c00203{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);}
.m4_c00203{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);}
.m86_c00203{transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);}
.mb_c00203{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{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);}
.m84_c00203{transform:matrix(0.217079,0.002605,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217079,0.002605,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217079,0.002605,-0.003000,0.249982,0,0);}
.m64_c00203{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);}
.m44_c00203{transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);}
.m49_c00203{transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);}
.m8d_c00203{transform:matrix(0.221944,0.002663,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221944,0.002663,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221944,0.002663,-0.003000,0.249982,0,0);}
.m4c_c00203{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{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);}
.m4b_c00203{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);}
.m4f_c00203{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);}
.m1f_c00203{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);}
.m7d_c00203{transform:matrix(0.228744,0.002745,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228744,0.002745,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228744,0.002745,-0.003000,0.249982,0,0);}
.m8_c00203{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m8a_c00203{transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);}
.m62_c00203{transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);}
.m9c_c00203{transform:matrix(0.232073,0.002785,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232073,0.002785,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232073,0.002785,-0.003000,0.249982,0,0);}
.m65_c00203{transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);}
.md_c00203{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);}
.m3_c00203{transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);}
.m35_c00203{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);}
.m58_c00203{transform:matrix(0.239732,0.003356,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239732,0.003356,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239732,0.003356,-0.003500,0.249976,0,0);}
.m73_c00203{transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);}
.m69_c00203{transform:matrix(0.246386,0.003449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246386,0.003449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246386,0.003449,-0.003500,0.249976,0,0);}
.m3d_c00203{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.257255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257255,0.000000,0.000000,0.250000,0,0);}
.maa_c00203{transform:matrix(0.257561,0.003091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257561,0.003091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257561,0.003091,-0.003000,0.249982,0,0);}
.m5d_c00203{transform:matrix(0.259355,0.003631,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259355,0.003631,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259355,0.003631,-0.003500,0.249976,0,0);}
.m28_c00203{transform:matrix(0.260315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260315,0.000000,0.000000,0.250000,0,0);}
.m8e_c00203{transform:matrix(0.262526,0.003150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262526,0.003150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262526,0.003150,-0.003000,0.249982,0,0);}
.m98_c00203{transform:matrix(0.265146,0.003182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265146,0.003182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265146,0.003182,-0.003000,0.249982,0,0);}
.m76_c00203{transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272660,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283710,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285415,0.000000,0.000000,0.250000,0,0);}
.m78_c00203{transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);}
.ma9_c00203{transform:matrix(0.288729,0.003465,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288729,0.003465,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288729,0.003465,-0.003000,0.249982,0,0);}
.m2_c00203{transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289920,0.000000,0.000000,0.250000,0,0);}
.m66_c00203{transform:matrix(0.292051,0.004089,-0.003500,0.249976,0,0);-ms-transform:matrix(0.292051,0.004089,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.292051,0.004089,-0.003500,0.249976,0,0);}
.m9b_c00203{transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);}
.m7c_c00203{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);}
.m6b_c00203{transform:matrix(0.312199,0.004371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312199,0.004371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312199,0.004371,-0.003500,0.249976,0,0);}
.m1b_c00203{transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317415,0.000000,0.000000,0.250000,0,0);}
.m5c_c00203{transform:matrix(0.327693,0.004588,-0.003500,0.249976,0,0);-ms-transform:matrix(0.327693,0.004588,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.327693,0.004588,-0.003500,0.249976,0,0);}
.m24_c00203{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);}
.m5a_c00203{transform:matrix(0.337862,0.004730,-0.003500,0.249976,0,0);-ms-transform:matrix(0.337862,0.004730,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.337862,0.004730,-0.003500,0.249976,0,0);}
.m50_c00203{transform:matrix(0.349595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349595,0.000000,0.000000,0.250000,0,0);}
.m4a_c00203{transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351275,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);}
.m81_c00203{transform:matrix(0.359724,0.004317,-0.003000,0.249982,0,0);-ms-transform:matrix(0.359724,0.004317,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.359724,0.004317,-0.003000,0.249982,0,0);}
.m45_c00203{transform:matrix(0.361130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361130,0.000000,0.000000,0.250000,0,0);}
.ma3_c00203{transform:matrix(0.365909,0.004391,-0.003000,0.249982,0,0);-ms-transform:matrix(0.365909,0.004391,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.365909,0.004391,-0.003000,0.249982,0,0);}
.m96_c00203{transform:matrix(0.367164,0.004406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.367164,0.004406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.367164,0.004406,-0.003000,0.249982,0,0);}
.m85_c00203{transform:matrix(0.374343,0.004492,-0.003000,0.249982,0,0);-ms-transform:matrix(0.374343,0.004492,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.374343,0.004492,-0.003000,0.249982,0,0);}
.me_c00203{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);}
.m61_c00203{transform:matrix(0.383682,0.005372,-0.003500,0.249976,0,0);-ms-transform:matrix(0.383682,0.005372,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.383682,0.005372,-0.003500,0.249976,0,0);}
.m89_c00203{transform:matrix(0.397291,0.004767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.397291,0.004767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.397291,0.004767,-0.003000,0.249982,0,0);}
.m1_c00203{transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.492955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492955,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.494125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494125,0.000000,0.000000,0.250000,0,0);}
.m2a_c00203{transform:matrix(0.497240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497240,0.000000,0.000000,0.250000,0,0);}
.m5b_c00203{transform:matrix(0.559440,0.007832,-0.003500,0.249976,0,0);-ms-transform:matrix(0.559440,0.007832,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.559440,0.007832,-0.003500,0.249976,0,0);}
.m25_c00203{transform:matrix(0.576190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576190,0.000000,0.000000,0.250000,0,0);}
.m9d_c00203{transform:matrix(0.599382,0.007193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.599382,0.007193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.599382,0.007193,-0.003000,0.249982,0,0);}
.m19_c00203{transform:matrix(0.651425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651425,0.000000,0.000000,0.250000,0,0);}
.m59_c00203{transform:matrix(0.657506,0.009205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.657506,0.009205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.657506,0.009205,-0.003500,0.249976,0,0);}
.m77_c00203{transform:matrix(0.747440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.789205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789205,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;}
.fs8_c00203{font-size:22.050000px;}
.fs15_c00203{font-size:50.403629px;}
.fs11_c00203{font-size:51.450000px;}
.fs16_c00203{font-size:54.603931px;}
.fs14_c00203{font-size:55.654007px;}
.fs12_c00203{font-size:59.850000px;}
.fs7_c00203{font-size:60.900000px;}
.fs6_c00203{font-size:65.100000px;}
.fs3_c00203{font-size:68.250000px;}
.fs10_c00203{font-size:69.306791px;}
.fsc_c00203{font-size:71.400000px;}
.fs1_c00203{font-size:72.450000px;}
.fs0_c00203{font-size:73.500000px;}
.fs9_c00203{font-size:74.553727px;}
.fs5_c00203{font-size:75.600000px;}
.fsa_c00203{font-size:79.800000px;}
.fs4_c00203{font-size:82.950000px;}
.fsb_c00203{font-size:85.050000px;}
.fsf_c00203{font-size:85.058334px;}
.fs13_c00203{font-size:87.150000px;}
.fsd_c00203{font-size:89.250000px;}
.fs2_c00203{font-size:95.550000px;}
.fse_c00203{font-size:112.361010px;}
.y0_c00203{bottom:0.000000px;}
.y67_c00203{bottom:166.426260px;}
.y66_c00203{bottom:167.530968px;}
.y65_c00203{bottom:167.687292px;}
.y64_c00203{bottom:168.111576px;}
.y63_c00203{bottom:168.764610px;}
.y62_c00203{bottom:168.934668px;}
.y61_c00203{bottom:169.234494px;}
.y60_c00203{bottom:169.437192px;}
.y5f_c00203{bottom:170.262534px;}
.y5e_c00203{bottom:170.734338px;}
.y5d_c00203{bottom:171.313458px;}
.y5c_c00203{bottom:171.687288px;}
.y5b_c00203{bottom:171.987258px;}
.y5a_c00203{bottom:184.395060px;}
.y59_c00203{bottom:185.318322px;}
.y58_c00203{bottom:185.458620px;}
.y57_c00203{bottom:186.031440px;}
.y56_c00203{bottom:186.557028px;}
.y55_c00203{bottom:186.720102px;}
.y54_c00203{bottom:187.064136px;}
.y53_c00203{bottom:187.249362px;}
.y52_c00203{bottom:187.665012px;}
.y51_c00203{bottom:187.828230px;}
.y50_c00203{bottom:188.149668px;}
.y4f_c00203{bottom:188.918490px;}
.y4e_c00203{bottom:189.153000px;}
.y4d_c00203{bottom:189.577716px;}
.y4c_c00203{bottom:189.809310px;}
.y4b_c00203{bottom:201.734790px;}
.y4a_c00203{bottom:202.223724px;}
.y49_c00203{bottom:202.379190px;}
.y48_c00203{bottom:203.082180px;}
.y47_c00203{bottom:203.368128px;}
.y46_c00203{bottom:203.659476px;}
.y45_c00203{bottom:203.915418px;}
.y44_c00203{bottom:204.560178px;}
.y43_c00203{bottom:204.793170px;}
.y42_c00203{bottom:205.004220px;}
.y41_c00203{bottom:205.470546px;}
.y40_c00203{bottom:205.674216px;}
.y3f_c00203{bottom:206.014506px;}
.y3e_c00203{bottom:206.128410px;}
.y3d_c00203{bottom:206.464920px;}
.y3c_c00203{bottom:206.675538px;}
.y3b_c00203{bottom:207.197106px;}
.y3a_c00203{bottom:207.631500px;}
.y39_c00203{bottom:265.893000px;}
.y38_c00203{bottom:289.090500px;}
.y37_c00203{bottom:308.880000px;}
.y33_c00203{bottom:345.940935px;}
.y31_c00203{bottom:345.941130px;}
.y32_c00203{bottom:345.941151px;}
.y34_c00203{bottom:345.941217px;}
.y35_c00203{bottom:345.941325px;}
.y2b_c00203{bottom:345.941535px;}
.y36_c00203{bottom:345.941727px;}
.y30_c00203{bottom:345.941808px;}
.y2c_c00203{bottom:345.942018px;}
.y2f_c00203{bottom:345.942105px;}
.y2e_c00203{bottom:345.942522px;}
.y2d_c00203{bottom:345.942600px;}
.y2a_c00203{bottom:368.493393px;}
.y29_c00203{bottom:368.493432px;}
.y28_c00203{bottom:368.493870px;}
.y25_c00203{bottom:368.494089px;}
.y27_c00203{bottom:368.494383px;}
.y26_c00203{bottom:368.494515px;}
.y24_c00203{bottom:385.036947px;}
.y23_c00203{bottom:386.461503px;}
.y22_c00203{bottom:386.974848px;}
.y21_c00203{bottom:388.264500px;}
.y20_c00203{bottom:415.138500px;}
.y1f_c00203{bottom:436.333500px;}
.y1e_c00203{bottom:460.446000px;}
.y1d_c00203{bottom:481.996500px;}
.y1c_c00203{bottom:482.110500px;}
.y1b_c00203{bottom:482.590500px;}
.y1a_c00203{bottom:482.895000px;}
.y19_c00203{bottom:483.310500px;}
.y18_c00203{bottom:483.492000px;}
.y17_c00203{bottom:484.111500px;}
.y16_c00203{bottom:505.065000px;}
.y15_c00203{bottom:528.987000px;}
.y14_c00203{bottom:550.401705px;}
.y13_c00203{bottom:550.809165px;}
.y12_c00203{bottom:551.095725px;}
.y11_c00203{bottom:551.446575px;}
.y10_c00203{bottom:551.826960px;}
.yf_c00203{bottom:553.095000px;}
.ye_c00203{bottom:570.780000px;}
.yd_c00203{bottom:596.274000px;}
.yc_c00203{bottom:618.436500px;}
.yb_c00203{bottom:641.977500px;}
.ya_c00203{bottom:663.877500px;}
.y9_c00203{bottom:687.834000px;}
.y8_c00203{bottom:710.722500px;}
.y7_c00203{bottom:733.197000px;}
.y6_c00203{bottom:756.165000px;}
.y3_c00203{bottom:776.262000px;}
.y4_c00203{bottom:780.153000px;}
.y5_c00203{bottom:782.430000px;}
.y2_c00203{bottom:801.073500px;}
.y1_c00203{bottom:824.076000px;}
.ha_c00203{height:22.050000px;}
.h17_c00203{height:50.403629px;}
.h13_c00203{height:51.450000px;}
.h18_c00203{height:54.603931px;}
.h16_c00203{height:55.654007px;}
.h14_c00203{height:59.850000px;}
.h9_c00203{height:60.900000px;}
.h8_c00203{height:65.100000px;}
.h5_c00203{height:68.250000px;}
.h12_c00203{height:69.306791px;}
.he_c00203{height:71.400000px;}
.h3_c00203{height:72.450000px;}
.h2_c00203{height:73.500000px;}
.hb_c00203{height:74.553727px;}
.h7_c00203{height:75.600000px;}
.hc_c00203{height:79.800000px;}
.h6_c00203{height:82.950000px;}
.hd_c00203{height:85.050000px;}
.h11_c00203{height:85.058334px;}
.h15_c00203{height:87.150000px;}
.hf_c00203{height:89.250000px;}
.h4_c00203{height:95.550000px;}
.h10_c00203{height:112.361010px;}
.h0_c00203{height:1008.450000px;}
.h1_c00203{height:1008.750000px;}
.w0_c00203{width:678.450000px;}
.w1_c00203{width:678.750000px;}
.x0_c00203{left:0.000000px;}
.x6f_c00203{left:145.165842px;}
.x63_c00203{left:157.824000px;}
.x4e_c00203{left:164.161176px;}
.x70_c00203{left:166.215594px;}
.x37_c00203{left:172.152000px;}
.x12_c00203{left:175.230000px;}
.x19_c00203{left:179.550000px;}
.x2e_c00203{left:180.630000px;}
.x25_c00203{left:182.790000px;}
.x9_c00203{left:185.490000px;}
.x48_c00203{left:189.261000px;}
.x4a_c00203{left:190.621035px;}
.x64_c00203{left:194.023500px;}
.x44_c00203{left:202.770000px;}
.x71_c00203{left:204.859062px;}
.x4f_c00203{left:207.635202px;}
.x26_c00203{left:212.490000px;}
.x2f_c00203{left:217.080000px;}
.x29_c00203{left:220.035000px;}
.x3b_c00203{left:222.210000px;}
.xa_c00203{left:224.910000px;}
.x5d_c00203{left:226.530000px;}
.x13_c00203{left:230.040000px;}
.x50_c00203{left:236.527872px;}
.x1b_c00203{left:238.410000px;}
.x1a_c00203{left:249.750000px;}
.x14_c00203{left:253.260000px;}
.x65_c00203{left:255.039000px;}
.x78_c00203{left:258.284262px;}
.x1c_c00203{left:262.710000px;}
.x51_c00203{left:264.610374px;}
.x45_c00203{left:269.730000px;}
.x38_c00203{left:272.301000px;}
.x58_c00203{left:274.320000px;}
.x15_c00203{left:277.560000px;}
.xd_c00203{left:279.180000px;}
.x49_c00203{left:281.379000px;}
.x22_c00203{left:282.420000px;}
.x30_c00203{left:287.010000px;}
.x1_c00203{left:290.790000px;}
.x66_c00203{left:292.573500px;}
.x46_c00203{left:295.110000px;}
.x59_c00203{left:299.160000px;}
.x3c_c00203{left:301.050000px;}
.xc_c00203{left:304.020000px;}
.xb_c00203{left:306.450000px;}
.x43_c00203{left:314.280000px;}
.x52_c00203{left:316.185975px;}
.x23_c00203{left:317.790000px;}
.x6_c00203{left:319.639500px;}
.x36_c00203{left:321.570000px;}
.x16_c00203{left:323.730000px;}
.x2_c00203{left:325.890000px;}
.x1d_c00203{left:327.240000px;}
.x47_c00203{left:338.040000px;}
.x72_c00203{left:340.109682px;}
.x2a_c00203{left:346.839000px;}
.x3d_c00203{left:348.570000px;}
.x5a_c00203{left:354.240000px;}
.x3e_c00203{left:360.720000px;}
.x39_c00203{left:362.203500px;}
.xe_c00203{left:363.420000px;}
.x1e_c00203{left:365.850000px;}
.x5b_c00203{left:367.200000px;}
.x27_c00203{left:373.950000px;}
.x3f_c00203{left:376.650000px;}
.x73_c00203{left:377.872632px;}
.x2b_c00203{left:384.877500px;}
.x53_c00203{left:386.662272px;}
.x28_c00203{left:388.530000px;}
.x5c_c00203{left:392.310000px;}
.x67_c00203{left:394.351500px;}
.x3_c00203{left:400.950000px;}
.x1f_c00203{left:403.110000px;}
.x17_c00203{left:405.000000px;}
.x4b_c00203{left:406.642371px;}
.x31_c00203{left:408.510000px;}
.xf_c00203{left:410.940000px;}
.x68_c00203{left:413.767500px;}
.x40_c00203{left:416.610000px;}
.x2c_c00203{left:419.962500px;}
.x3a_c00203{left:422.139000px;}
.x74_c00203{left:425.978208px;}
.x32_c00203{left:437.400000px;}
.x18_c00203{left:441.450000px;}
.x20_c00203{left:449.550000px;}
.x33_c00203{left:453.330000px;}
.x41_c00203{left:463.050000px;}
.x69_c00203{left:467.497500px;}
.x10_c00203{left:468.990000px;}
.x54_c00203{left:470.371173px;}
.x7_c00203{left:475.264500px;}
.x5e_c00203{left:477.630000px;}
.x34_c00203{left:486.810000px;}
.x42_c00203{left:487.890000px;}
.x2d_c00203{left:489.364500px;}
.x21_c00203{left:493.560000px;}
.x79_c00203{left:496.725624px;}
.x55_c00203{left:501.964368px;}
.x5f_c00203{left:503.550000px;}
.x11_c00203{left:506.250000px;}
.x60_c00203{left:509.760000px;}
.x6a_c00203{left:513.105000px;}
.x4_c00203{left:520.560000px;}
.x61_c00203{left:521.640000px;}
.x62_c00203{left:529.740000px;}
.x7a_c00203{left:535.333092px;}
.x6b_c00203{left:536.934000px;}
.x75_c00203{left:540.728094px;}
.x35_c00203{left:545.940000px;}
.x7b_c00203{left:549.610272px;}
.x5_c00203{left:551.880000px;}
.x76_c00203{left:553.419738px;}
.x4c_c00203{left:558.668649px;}
.x8_c00203{left:566.359500px;}
.x4d_c00203{left:579.461223px;}
.x24_c00203{left:592.380000px;}
.x6c_c00203{left:595.516500px;}
.x6d_c00203{left:608.472000px;}
.x56_c00203{left:630.767610px;}
.x77_c00203{left:637.359246px;}
.x6e_c00203{left:649.216500px;}
.x57_c00203{left:668.031918px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.fs8_c00203{font-size:19.600000pt;}
.fs15_c00203{font-size:44.803225pt;}
.fs11_c00203{font-size:45.733333pt;}
.fs16_c00203{font-size:48.536828pt;}
.fs14_c00203{font-size:49.470228pt;}
.fs12_c00203{font-size:53.200000pt;}
.fs7_c00203{font-size:54.133333pt;}
.fs6_c00203{font-size:57.866667pt;}
.fs3_c00203{font-size:60.666667pt;}
.fs10_c00203{font-size:61.606037pt;}
.fsc_c00203{font-size:63.466667pt;}
.fs1_c00203{font-size:64.400000pt;}
.fs0_c00203{font-size:65.333333pt;}
.fs9_c00203{font-size:66.269980pt;}
.fs5_c00203{font-size:67.200000pt;}
.fsa_c00203{font-size:70.933333pt;}
.fs4_c00203{font-size:73.733333pt;}
.fsb_c00203{font-size:75.600000pt;}
.fsf_c00203{font-size:75.607408pt;}
.fs13_c00203{font-size:77.466667pt;}
.fsd_c00203{font-size:79.333333pt;}
.fs2_c00203{font-size:84.933333pt;}
.fse_c00203{font-size:99.876453pt;}
.y0_c00203{bottom:0.000000pt;}
.y67_c00203{bottom:147.934453pt;}
.y66_c00203{bottom:148.916416pt;}
.y65_c00203{bottom:149.055371pt;}
.y64_c00203{bottom:149.432512pt;}
.y63_c00203{bottom:150.012987pt;}
.y62_c00203{bottom:150.164149pt;}
.y61_c00203{bottom:150.430661pt;}
.y60_c00203{bottom:150.610837pt;}
.y5f_c00203{bottom:151.344475pt;}
.y5e_c00203{bottom:151.763856pt;}
.y5d_c00203{bottom:152.278629pt;}
.y5c_c00203{bottom:152.610923pt;}
.y5b_c00203{bottom:152.877563pt;}
.y5a_c00203{bottom:163.906720pt;}
.y59_c00203{bottom:164.727397pt;}
.y58_c00203{bottom:164.852107pt;}
.y57_c00203{bottom:165.361280pt;}
.y56_c00203{bottom:165.828469pt;}
.y55_c00203{bottom:165.973424pt;}
.y54_c00203{bottom:166.279232pt;}
.y53_c00203{bottom:166.443877pt;}
.y52_c00203{bottom:166.813344pt;}
.y51_c00203{bottom:166.958427pt;}
.y50_c00203{bottom:167.244149pt;}
.y4f_c00203{bottom:167.927547pt;}
.y4e_c00203{bottom:168.136000pt;}
.y4d_c00203{bottom:168.513525pt;}
.y4c_c00203{bottom:168.719387pt;}
.y4b_c00203{bottom:179.319813pt;}
.y4a_c00203{bottom:179.754421pt;}
.y49_c00203{bottom:179.892613pt;}
.y48_c00203{bottom:180.517493pt;}
.y47_c00203{bottom:180.771669pt;}
.y46_c00203{bottom:181.030645pt;}
.y45_c00203{bottom:181.258149pt;}
.y44_c00203{bottom:181.831269pt;}
.y43_c00203{bottom:182.038373pt;}
.y42_c00203{bottom:182.225973pt;}
.y41_c00203{bottom:182.640485pt;}
.y40_c00203{bottom:182.821525pt;}
.y3f_c00203{bottom:183.124005pt;}
.y3e_c00203{bottom:183.225253pt;}
.y3d_c00203{bottom:183.524373pt;}
.y3c_c00203{bottom:183.711589pt;}
.y3b_c00203{bottom:184.175205pt;}
.y3a_c00203{bottom:184.561333pt;}
.y39_c00203{bottom:236.349333pt;}
.y38_c00203{bottom:256.969333pt;}
.y37_c00203{bottom:274.560000pt;}
.y33_c00203{bottom:307.503053pt;}
.y31_c00203{bottom:307.503227pt;}
.y32_c00203{bottom:307.503245pt;}
.y34_c00203{bottom:307.503304pt;}
.y35_c00203{bottom:307.503400pt;}
.y2b_c00203{bottom:307.503587pt;}
.y36_c00203{bottom:307.503757pt;}
.y30_c00203{bottom:307.503829pt;}
.y2c_c00203{bottom:307.504016pt;}
.y2f_c00203{bottom:307.504093pt;}
.y2e_c00203{bottom:307.504464pt;}
.y2d_c00203{bottom:307.504533pt;}
.y2a_c00203{bottom:327.549683pt;}
.y29_c00203{bottom:327.549717pt;}
.y28_c00203{bottom:327.550107pt;}
.y25_c00203{bottom:327.550301pt;}
.y27_c00203{bottom:327.550563pt;}
.y26_c00203{bottom:327.550680pt;}
.y24_c00203{bottom:342.255064pt;}
.y23_c00203{bottom:343.521336pt;}
.y22_c00203{bottom:343.977643pt;}
.y21_c00203{bottom:345.124000pt;}
.y20_c00203{bottom:369.012000pt;}
.y1f_c00203{bottom:387.852000pt;}
.y1e_c00203{bottom:409.285333pt;}
.y1d_c00203{bottom:428.441333pt;}
.y1c_c00203{bottom:428.542667pt;}
.y1b_c00203{bottom:428.969333pt;}
.y1a_c00203{bottom:429.240000pt;}
.y19_c00203{bottom:429.609333pt;}
.y18_c00203{bottom:429.770667pt;}
.y17_c00203{bottom:430.321333pt;}
.y16_c00203{bottom:448.946667pt;}
.y15_c00203{bottom:470.210667pt;}
.y14_c00203{bottom:489.245960pt;}
.y13_c00203{bottom:489.608147pt;}
.y12_c00203{bottom:489.862867pt;}
.y11_c00203{bottom:490.174733pt;}
.y10_c00203{bottom:490.512853pt;}
.yf_c00203{bottom:491.640000pt;}
.ye_c00203{bottom:507.360000pt;}
.yd_c00203{bottom:530.021333pt;}
.yc_c00203{bottom:549.721333pt;}
.yb_c00203{bottom:570.646667pt;}
.ya_c00203{bottom:590.113333pt;}
.y9_c00203{bottom:611.408000pt;}
.y8_c00203{bottom:631.753333pt;}
.y7_c00203{bottom:651.730667pt;}
.y6_c00203{bottom:672.146667pt;}
.y3_c00203{bottom:690.010667pt;}
.y4_c00203{bottom:693.469333pt;}
.y5_c00203{bottom:695.493333pt;}
.y2_c00203{bottom:712.065333pt;}
.y1_c00203{bottom:732.512000pt;}
.ha_c00203{height:19.600000pt;}
.h17_c00203{height:44.803225pt;}
.h13_c00203{height:45.733333pt;}
.h18_c00203{height:48.536828pt;}
.h16_c00203{height:49.470228pt;}
.h14_c00203{height:53.200000pt;}
.h9_c00203{height:54.133333pt;}
.h8_c00203{height:57.866667pt;}
.h5_c00203{height:60.666667pt;}
.h12_c00203{height:61.606037pt;}
.he_c00203{height:63.466667pt;}
.h3_c00203{height:64.400000pt;}
.h2_c00203{height:65.333333pt;}
.hb_c00203{height:66.269980pt;}
.h7_c00203{height:67.200000pt;}
.hc_c00203{height:70.933333pt;}
.h6_c00203{height:73.733333pt;}
.hd_c00203{height:75.600000pt;}
.h11_c00203{height:75.607408pt;}
.h15_c00203{height:77.466667pt;}
.hf_c00203{height:79.333333pt;}
.h4_c00203{height:84.933333pt;}
.h10_c00203{height:99.876453pt;}
.h0_c00203{height:896.400000pt;}
.h1_c00203{height:896.666667pt;}
.w0_c00203{width:603.066667pt;}
.w1_c00203{width:603.333333pt;}
.x0_c00203{left:0.000000pt;}
.x6f_c00203{left:129.036304pt;}
.x63_c00203{left:140.288000pt;}
.x4e_c00203{left:145.921045pt;}
.x70_c00203{left:147.747195pt;}
.x37_c00203{left:153.024000pt;}
.x12_c00203{left:155.760000pt;}
.x19_c00203{left:159.600000pt;}
.x2e_c00203{left:160.560000pt;}
.x25_c00203{left:162.480000pt;}
.x9_c00203{left:164.880000pt;}
.x48_c00203{left:168.232000pt;}
.x4a_c00203{left:169.440920pt;}
.x64_c00203{left:172.465333pt;}
.x44_c00203{left:180.240000pt;}
.x71_c00203{left:182.096944pt;}
.x4f_c00203{left:184.564624pt;}
.x26_c00203{left:188.880000pt;}
.x2f_c00203{left:192.960000pt;}
.x29_c00203{left:195.586667pt;}
.x3b_c00203{left:197.520000pt;}
.xa_c00203{left:199.920000pt;}
.x5d_c00203{left:201.360000pt;}
.x13_c00203{left:204.480000pt;}
.x50_c00203{left:210.246997pt;}
.x1b_c00203{left:211.920000pt;}
.x1a_c00203{left:222.000000pt;}
.x14_c00203{left:225.120000pt;}
.x65_c00203{left:226.701333pt;}
.x78_c00203{left:229.586011pt;}
.x1c_c00203{left:233.520000pt;}
.x51_c00203{left:235.209221pt;}
.x45_c00203{left:239.760000pt;}
.x38_c00203{left:242.045333pt;}
.x58_c00203{left:243.840000pt;}
.x15_c00203{left:246.720000pt;}
.xd_c00203{left:248.160000pt;}
.x49_c00203{left:250.114667pt;}
.x22_c00203{left:251.040000pt;}
.x30_c00203{left:255.120000pt;}
.x1_c00203{left:258.480000pt;}
.x66_c00203{left:260.065333pt;}
.x46_c00203{left:262.320000pt;}
.x59_c00203{left:265.920000pt;}
.x3c_c00203{left:267.600000pt;}
.xc_c00203{left:270.240000pt;}
.xb_c00203{left:272.400000pt;}
.x43_c00203{left:279.360000pt;}
.x52_c00203{left:281.054200pt;}
.x23_c00203{left:282.480000pt;}
.x6_c00203{left:284.124000pt;}
.x36_c00203{left:285.840000pt;}
.x16_c00203{left:287.760000pt;}
.x2_c00203{left:289.680000pt;}
.x1d_c00203{left:290.880000pt;}
.x47_c00203{left:300.480000pt;}
.x72_c00203{left:302.319717pt;}
.x2a_c00203{left:308.301333pt;}
.x3d_c00203{left:309.840000pt;}
.x5a_c00203{left:314.880000pt;}
.x3e_c00203{left:320.640000pt;}
.x39_c00203{left:321.958667pt;}
.xe_c00203{left:323.040000pt;}
.x1e_c00203{left:325.200000pt;}
.x5b_c00203{left:326.400000pt;}
.x27_c00203{left:332.400000pt;}
.x3f_c00203{left:334.800000pt;}
.x73_c00203{left:335.886784pt;}
.x2b_c00203{left:342.113333pt;}
.x53_c00203{left:343.699797pt;}
.x28_c00203{left:345.360000pt;}
.x5c_c00203{left:348.720000pt;}
.x67_c00203{left:350.534667pt;}
.x3_c00203{left:356.400000pt;}
.x1f_c00203{left:358.320000pt;}
.x17_c00203{left:360.000000pt;}
.x4b_c00203{left:361.459885pt;}
.x31_c00203{left:363.120000pt;}
.xf_c00203{left:365.280000pt;}
.x68_c00203{left:367.793333pt;}
.x40_c00203{left:370.320000pt;}
.x2c_c00203{left:373.300000pt;}
.x3a_c00203{left:375.234667pt;}
.x74_c00203{left:378.647296pt;}
.x32_c00203{left:388.800000pt;}
.x18_c00203{left:392.400000pt;}
.x20_c00203{left:399.600000pt;}
.x33_c00203{left:402.960000pt;}
.x41_c00203{left:411.600000pt;}
.x69_c00203{left:415.553333pt;}
.x10_c00203{left:416.880000pt;}
.x54_c00203{left:418.107709pt;}
.x7_c00203{left:422.457333pt;}
.x5e_c00203{left:424.560000pt;}
.x34_c00203{left:432.720000pt;}
.x42_c00203{left:433.680000pt;}
.x2d_c00203{left:434.990667pt;}
.x21_c00203{left:438.720000pt;}
.x79_c00203{left:441.533888pt;}
.x55_c00203{left:446.190549pt;}
.x5f_c00203{left:447.600000pt;}
.x11_c00203{left:450.000000pt;}
.x60_c00203{left:453.120000pt;}
.x6a_c00203{left:456.093333pt;}
.x4_c00203{left:462.720000pt;}
.x61_c00203{left:463.680000pt;}
.x62_c00203{left:470.880000pt;}
.x7a_c00203{left:475.851637pt;}
.x6b_c00203{left:477.274667pt;}
.x75_c00203{left:480.647195pt;}
.x35_c00203{left:485.280000pt;}
.x7b_c00203{left:488.542464pt;}
.x5_c00203{left:490.560000pt;}
.x76_c00203{left:491.928656pt;}
.x4c_c00203{left:496.594355pt;}
.x8_c00203{left:503.430667pt;}
.x4d_c00203{left:515.076643pt;}
.x24_c00203{left:526.560000pt;}
.x6c_c00203{left:529.348000pt;}
.x6d_c00203{left:540.864000pt;}
.x56_c00203{left:560.682320pt;}
.x77_c00203{left:566.541552pt;}
.x6e_c00203{left:577.081333pt;}
.x57_c00203{left:593.806149pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mc4_c00204{transform:matrix(0.014543,0.000262,-0.004499,0.249960,0,0);-ms-transform:matrix(0.014543,0.000262,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.014543,0.000262,-0.004499,0.249960,0,0);}
.m49_c00204{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.017525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017525,0.000000,0.000000,0.250000,0,0);}
.m8c_c00204{transform:matrix(0.047412,0.000522,-0.002750,0.249985,0,0);-ms-transform:matrix(0.047412,0.000522,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.047412,0.000522,-0.002750,0.249985,0,0);}
.m4e_c00204{transform:matrix(0.079937,0.000719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.079937,0.000719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.079937,0.000719,-0.002250,0.249990,0,0);}
.m92_c00204{transform:matrix(0.097707,0.001270,-0.003250,0.249979,0,0);-ms-transform:matrix(0.097707,0.001270,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.097707,0.001270,-0.003250,0.249979,0,0);}
.mdc_c00204{transform:matrix(0.110762,0.001994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.110762,0.001994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.110762,0.001994,-0.004499,0.249960,0,0);}
.mbc_c00204{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);}
.m17_c00204{transform:matrix(0.131985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131985,0.000000,0.000000,0.250000,0,0);}
.m68_c00204{transform:matrix(0.132838,0.001328,-0.002500,0.249988,0,0);-ms-transform:matrix(0.132838,0.001328,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.132838,0.001328,-0.002500,0.249988,0,0);}
.m5d_c00204{transform:matrix(0.135125,0.001216,-0.002250,0.249990,0,0);-ms-transform:matrix(0.135125,0.001216,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.135125,0.001216,-0.002250,0.249990,0,0);}
.m80_c00204{transform:matrix(0.139070,0.001669,-0.003000,0.249982,0,0);-ms-transform:matrix(0.139070,0.001669,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.139070,0.001669,-0.003000,0.249982,0,0);}
.m7f_c00204{transform:matrix(0.143725,0.001725,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143725,0.001725,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143725,0.001725,-0.003000,0.249982,0,0);}
.m3e_c00204{transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);}
.m20_c00204{transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);}
.m54_c00204{transform:matrix(0.147349,0.001326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147349,0.001326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147349,0.001326,-0.002250,0.249990,0,0);}
.m4c_c00204{transform:matrix(0.150749,0.001357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150749,0.001357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150749,0.001357,-0.002250,0.249990,0,0);}
.m3c_c00204{transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);}
.m32_c00204{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);}
.m51_c00204{transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);}
.m78_c00204{transform:matrix(0.154297,0.001543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154297,0.001543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154297,0.001543,-0.002500,0.249988,0,0);}
.m16_c00204{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);}
.mc7_c00204{transform:matrix(0.155930,0.002807,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155930,0.002807,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155930,0.002807,-0.004499,0.249960,0,0);}
.m19_c00204{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);}
.m9c_c00204{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);}
.m57_c00204{transform:matrix(0.158469,0.001426,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158469,0.001426,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158469,0.001426,-0.002250,0.249990,0,0);}
.mbe_c00204{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);}
.m1c_c00204{transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);}
.m82_c00204{transform:matrix(0.160503,0.001926,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160503,0.001926,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160503,0.001926,-0.003000,0.249982,0,0);}
.mef_c00204{transform:matrix(0.160509,0.002889,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160509,0.002889,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160509,0.002889,-0.004499,0.249960,0,0);}
.m73_c00204{transform:matrix(0.162347,0.001623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162347,0.001623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162347,0.001623,-0.002500,0.249988,0,0);}
.m9b_c00204{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);}
.m14_c00204{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);}
.m50_c00204{transform:matrix(0.165333,0.001488,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165333,0.001488,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165333,0.001488,-0.002250,0.249990,0,0);}
.m98_c00204{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);}
.m7b_c00204{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);}
.md2_c00204{transform:matrix(0.165823,0.002985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165823,0.002985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165823,0.002985,-0.004499,0.249960,0,0);}
.m1d_c00204{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);}
.m87_c00204{transform:matrix(0.168205,0.001850,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168205,0.001850,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168205,0.001850,-0.002750,0.249985,0,0);}
.m7a_c00204{transform:matrix(0.168348,0.002020,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168348,0.002020,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168348,0.002020,-0.003000,0.249982,0,0);}
.m15_c00204{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);}
.m7e_c00204{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);}
.m6a_c00204{transform:matrix(0.169532,0.001695,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169532,0.001695,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169532,0.001695,-0.002500,0.249988,0,0);}
.m44_c00204{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);}
.m81_c00204{transform:matrix(0.169968,0.002040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169968,0.002040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169968,0.002040,-0.003000,0.249982,0,0);}
.m9e_c00204{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);}
.m30_c00204{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);}
.m84_c00204{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);}
.ma5_c00204{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);}
.m76_c00204{transform:matrix(0.171811,0.001718,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171811,0.001718,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171811,0.001718,-0.002500,0.249988,0,0);}
.md7_c00204{transform:matrix(0.172022,0.003096,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172022,0.003096,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172022,0.003096,-0.004499,0.249960,0,0);}
.mb6_c00204{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);}
.mee_c00204{transform:matrix(0.173212,0.003118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173212,0.003118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173212,0.003118,-0.004499,0.249960,0,0);}
.m21_c00204{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);}
.mcd_c00204{transform:matrix(0.173517,0.003123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173517,0.003123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173517,0.003123,-0.004499,0.249960,0,0);}
.m4a_c00204{transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);}
.m18_c00204{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);}
.m3d_c00204{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_c00204{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_c00204{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);}
.m42_c00204{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);}
.m72_c00204{transform:matrix(0.176706,0.001767,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176706,0.001767,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176706,0.001767,-0.002500,0.249988,0,0);}
.m79_c00204{transform:matrix(0.176841,0.001768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176841,0.001768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176841,0.001768,-0.002500,0.249988,0,0);}
.mce_c00204{transform:matrix(0.176966,0.003185,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176966,0.003185,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176966,0.003185,-0.004499,0.249960,0,0);}
.ma_c00204{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);}
.md_c00204{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);}
.m39_c00204{transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{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);}
.m3a_c00204{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);}
.m1e_c00204{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);}
.m25_c00204{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);}
.m5b_c00204{transform:matrix(0.180468,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180468,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180468,0.001624,-0.002250,0.249990,0,0);}
.md3_c00204{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);}
.m7d_c00204{transform:matrix(0.180722,0.002169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180722,0.002169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180722,0.002169,-0.003000,0.249982,0,0);}
.ma3_c00204{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);}
.mbd_c00204{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);}
.md9_c00204{transform:matrix(0.183660,0.003306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183660,0.003306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183660,0.003306,-0.004499,0.249960,0,0);}
.m10_c00204{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);}
.mf1_c00204{transform:matrix(0.184029,0.003865,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184029,0.003865,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184029,0.003865,-0.005249,0.249945,0,0);}
.mb9_c00204{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);}
.mb5_c00204{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);}
.mcf_c00204{transform:matrix(0.185035,0.003331,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185035,0.003331,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185035,0.003331,-0.004499,0.249960,0,0);}
.m59_c00204{transform:matrix(0.185058,0.001666,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185058,0.001666,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185058,0.001666,-0.002250,0.249990,0,0);}
.m9d_c00204{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);}
.m12_c00204{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);}
.m2a_c00204{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);}
.m88_c00204{transform:matrix(0.186674,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186674,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186674,0.002053,-0.002750,0.249985,0,0);}
.m41_c00204{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);}
.m8e_c00204{transform:matrix(0.187464,0.002437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187464,0.002437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187464,0.002437,-0.003250,0.249979,0,0);}
.m4f_c00204{transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187522,0.001688,-0.002250,0.249990,0,0);}
.m58_c00204{transform:matrix(0.188472,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188472,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188472,0.001696,-0.002250,0.249990,0,0);}
.ma9_c00204{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);}
.mb3_c00204{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);}
.m94_c00204{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);}
.m22_c00204{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);}
.m56_c00204{transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);}
.mc0_c00204{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);}
.m74_c00204{transform:matrix(0.190180,0.001902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190180,0.001902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190180,0.001902,-0.002500,0.249988,0,0);}
.mab_c00204{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);}
.m29_c00204{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);}
.m63_c00204{transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);}
.m26_c00204{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);}
.m24_c00204{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);}
.m36_c00204{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);}
.maf_c00204{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);}
.m70_c00204{transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193440,0.001934,-0.002500,0.249988,0,0);}
.mdb_c00204{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);}
.m1a_c00204{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);}
.m1b_c00204{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);}
.me7_c00204{transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194329,0.003498,-0.004499,0.249960,0,0);}
.m45_c00204{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);}
.m91_c00204{transform:matrix(0.195164,0.002537,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195164,0.002537,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195164,0.002537,-0.003250,0.249979,0,0);}
.mb8_c00204{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);}
.m5c_c00204{transform:matrix(0.195697,0.001761,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195697,0.001761,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195697,0.001761,-0.002250,0.249990,0,0);}
.m62_c00204{transform:matrix(0.195752,0.001762,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195752,0.001762,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195752,0.001762,-0.002250,0.249990,0,0);}
.ma2_c00204{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);}
.m46_c00204{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);}
.m2b_c00204{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);}
.m9a_c00204{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);}
.ma8_c00204{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);}
.m5e_c00204{transform:matrix(0.198477,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198477,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198477,0.001786,-0.002250,0.249990,0,0);}
.mc9_c00204{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);}
.maa_c00204{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);}
.m34_c00204{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);}
.mc_c00204{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);}
.m3f_c00204{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);}
.m93_c00204{transform:matrix(0.200538,0.002607,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200538,0.002607,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200538,0.002607,-0.003250,0.249979,0,0);}
.m8a_c00204{transform:matrix(0.200583,0.002206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200583,0.002206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200583,0.002206,-0.002750,0.249985,0,0);}
.m8f_c00204{transform:matrix(0.200643,0.002608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200643,0.002608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200643,0.002608,-0.003250,0.249979,0,0);}
.mbf_c00204{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);}
.mcb_c00204{transform:matrix(0.201062,0.003619,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201062,0.003619,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201062,0.003619,-0.004499,0.249960,0,0);}
.m7_c00204{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);}
.m43_c00204{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);}
.me_c00204{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);}
.m4d_c00204{transform:matrix(0.203932,0.001835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203932,0.001835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203932,0.001835,-0.002250,0.249990,0,0);}
.m77_c00204{transform:matrix(0.204270,0.002043,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204270,0.002043,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204270,0.002043,-0.002500,0.249988,0,0);}
.m9f_c00204{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);}
.m1f_c00204{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);}
.ma7_c00204{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);}
.m27_c00204{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);}
.me6_c00204{transform:matrix(0.205577,0.003700,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205577,0.003700,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205577,0.003700,-0.004499,0.249960,0,0);}
.m6b_c00204{transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);}
.mca_c00204{transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);}
.me5_c00204{transform:matrix(0.206891,0.003724,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206891,0.003724,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206891,0.003724,-0.004499,0.249960,0,0);}
.me1_c00204{transform:matrix(0.207486,0.003735,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207486,0.003735,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207486,0.003735,-0.004499,0.249960,0,0);}
.m7c_c00204{transform:matrix(0.208580,0.002503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208580,0.002503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208580,0.002503,-0.003000,0.249982,0,0);}
.mc2_c00204{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);}
.m69_c00204{transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209405,0.002094,-0.002500,0.249988,0,0);}
.m89_c00204{transform:matrix(0.209637,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209637,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209637,0.002306,-0.002750,0.249985,0,0);}
.m8d_c00204{transform:matrix(0.209772,0.002727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209772,0.002727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209772,0.002727,-0.003250,0.249979,0,0);}
.mc6_c00204{transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);}
.m97_c00204{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);}
.mcc_c00204{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);}
.mb2_c00204{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);}
.m6d_c00204{transform:matrix(0.212004,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212004,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212004,0.002120,-0.002500,0.249988,0,0);}
.mdd_c00204{transform:matrix(0.212056,0.003817,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212056,0.003817,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212056,0.003817,-0.004499,0.249960,0,0);}
.m35_c00204{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);}
.md0_c00204{transform:matrix(0.212251,0.003821,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212251,0.003821,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212251,0.003821,-0.004499,0.249960,0,0);}
.mec_c00204{transform:matrix(0.212401,0.003823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212401,0.003823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212401,0.003823,-0.004499,0.249960,0,0);}
.mb1_c00204{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);}
.mf_c00204{transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);}
.m86_c00204{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);}
.m61_c00204{transform:matrix(0.215691,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215691,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215691,0.001941,-0.002250,0.249990,0,0);}
.mba_c00204{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);}
.m90_c00204{transform:matrix(0.217922,0.002833,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217922,0.002833,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217922,0.002833,-0.003250,0.249979,0,0);}
.mb_c00204{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);}
.md5_c00204{transform:matrix(0.218060,0.003925,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218060,0.003925,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218060,0.003925,-0.004499,0.249960,0,0);}
.mbb_c00204{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);}
.mb7_c00204{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);}
.m4_c00204{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);}
.m48_c00204{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.m64_c00204{transform:matrix(0.220756,0.001987,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220756,0.001987,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220756,0.001987,-0.002250,0.249990,0,0);}
.m6f_c00204{transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);}
.mae_c00204{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);}
.me8_c00204{transform:matrix(0.222544,0.004006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222544,0.004006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222544,0.004006,-0.004499,0.249960,0,0);}
.me4_c00204{transform:matrix(0.222554,0.004006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222554,0.004006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222554,0.004006,-0.004499,0.249960,0,0);}
.md4_c00204{transform:matrix(0.222589,0.004007,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222589,0.004007,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222589,0.004007,-0.004499,0.249960,0,0);}
.m3b_c00204{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);}
.m99_c00204{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);}
.m6c_c00204{transform:matrix(0.224844,0.002248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224844,0.002248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224844,0.002248,-0.002500,0.249988,0,0);}
.m28_c00204{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);}
.meb_c00204{transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225284,0.004055,-0.004499,0.249960,0,0);}
.m55_c00204{transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);}
.m9_c00204{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.mad_c00204{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);}
.m8_c00204{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);}
.mf4_c00204{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);}
.m67_c00204{transform:matrix(0.231358,0.002314,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231358,0.002314,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231358,0.002314,-0.002500,0.249988,0,0);}
.mb0_c00204{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);}
.md1_c00204{transform:matrix(0.233632,0.004205,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233632,0.004205,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233632,0.004205,-0.004499,0.249960,0,0);}
.m65_c00204{transform:matrix(0.234640,0.002112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234640,0.002112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234640,0.002112,-0.002250,0.249990,0,0);}
.ma0_c00204{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_c00204{transform:matrix(0.238171,0.004287,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238171,0.004287,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238171,0.004287,-0.004499,0.249960,0,0);}
.m6e_c00204{transform:matrix(0.238868,0.002389,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238868,0.002389,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238868,0.002389,-0.002500,0.249988,0,0);}
.m40_c00204{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);}
.m33_c00204{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);}
.m47_c00204{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);}
.m11_c00204{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.mde_c00204{transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);}
.m5a_c00204{transform:matrix(0.244565,0.002201,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244565,0.002201,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244565,0.002201,-0.002250,0.249990,0,0);}
.m75_c00204{transform:matrix(0.244868,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244868,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244868,0.002449,-0.002500,0.249988,0,0);}
.mb4_c00204{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.mc1_c00204{transform:matrix(0.245490,0.004419,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245490,0.004419,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245490,0.004419,-0.004499,0.249960,0,0);}
.m53_c00204{transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);}
.me9_c00204{transform:matrix(0.247110,0.004448,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247110,0.004448,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247110,0.004448,-0.004499,0.249960,0,0);}
.mc5_c00204{transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247520,0.004455,-0.004499,0.249960,0,0);}
.m23_c00204{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.mac_c00204{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00204{transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.mc8_c00204{transform:matrix(0.257333,0.004632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257333,0.004632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257333,0.004632,-0.004499,0.249960,0,0);}
.med_c00204{transform:matrix(0.260368,0.004687,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260368,0.004687,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260368,0.004687,-0.004499,0.249960,0,0);}
.m31_c00204{transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262345,0.000000,0.000000,0.250000,0,0);}
.md8_c00204{transform:matrix(0.266262,0.004793,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266262,0.004793,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266262,0.004793,-0.004499,0.249960,0,0);}
.m3_c00204{transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267245,0.000000,0.000000,0.250000,0,0);}
.ma4_c00204{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);}
.mc3_c00204{transform:matrix(0.272566,0.004906,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272566,0.004906,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272566,0.004906,-0.004499,0.249960,0,0);}
.m95_c00204{transform:matrix(0.276647,0.003596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276647,0.003596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276647,0.003596,-0.003250,0.249979,0,0);}
.mf5_c00204{transform:matrix(0.280523,0.005891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280523,0.005891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280523,0.005891,-0.005249,0.249945,0,0);}
.m37_c00204{transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);}
.me2_c00204{transform:matrix(0.282069,0.005077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282069,0.005077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282069,0.005077,-0.004499,0.249960,0,0);}
.ma6_c00204{transform:matrix(0.284335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284335,0.000000,0.000000,0.250000,0,0);}
.m5f_c00204{transform:matrix(0.284893,0.002564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284893,0.002564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284893,0.002564,-0.002250,0.249990,0,0);}
.m6_c00204{transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294670,0.000000,0.000000,0.250000,0,0);}
.mf2_c00204{transform:matrix(0.294815,0.006191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.294815,0.006191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.294815,0.006191,-0.005249,0.249945,0,0);}
.mdf_c00204{transform:matrix(0.297262,0.005351,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297262,0.005351,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297262,0.005351,-0.004499,0.249960,0,0);}
.me0_c00204{transform:matrix(0.300571,0.005410,-0.004499,0.249960,0,0);-ms-transform:matrix(0.300571,0.005410,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.300571,0.005410,-0.004499,0.249960,0,0);}
.m85_c00204{transform:matrix(0.307186,0.003379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307186,0.003379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307186,0.003379,-0.002750,0.249985,0,0);}
.m83_c00204{transform:matrix(0.308118,0.003697,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308118,0.003697,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308118,0.003697,-0.003000,0.249982,0,0);}
.m71_c00204{transform:matrix(0.328209,0.003282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.328209,0.003282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.328209,0.003282,-0.002500,0.249988,0,0);}
.m2_c00204{transform:matrix(0.343090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343090,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{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);}
.m8b_c00204{transform:matrix(0.349649,0.003846,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349649,0.003846,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349649,0.003846,-0.002750,0.249985,0,0);}
.m60_c00204{transform:matrix(0.364505,0.003281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.364505,0.003281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.364505,0.003281,-0.002250,0.249990,0,0);}
.m66_c00204{transform:matrix(0.365930,0.003293,-0.002250,0.249990,0,0);-ms-transform:matrix(0.365930,0.003293,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.365930,0.003293,-0.002250,0.249990,0,0);}
.m2f_c00204{transform:matrix(0.366235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366235,0.000000,0.000000,0.250000,0,0);}
.mea_c00204{transform:matrix(0.366341,0.006594,-0.004499,0.249960,0,0);-ms-transform:matrix(0.366341,0.006594,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.366341,0.006594,-0.004499,0.249960,0,0);}
.mda_c00204{transform:matrix(0.380563,0.006850,-0.004499,0.249960,0,0);-ms-transform:matrix(0.380563,0.006850,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.380563,0.006850,-0.004499,0.249960,0,0);}
.mf0_c00204{transform:matrix(0.385560,0.008097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.385560,0.008097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.385560,0.008097,-0.005249,0.249945,0,0);}
.m96_c00204{transform:matrix(0.400435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400435,0.000000,0.000000,0.250000,0,0);}
.m2c_c00204{transform:matrix(0.402445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402445,0.000000,0.000000,0.250000,0,0);}
.mf3_c00204{transform:matrix(0.407625,0.008560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.407625,0.008560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.407625,0.008560,-0.005249,0.249945,0,0);}
.m2e_c00204{transform:matrix(0.422220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422220,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);}
.m52_c00204{transform:matrix(0.483785,0.004354,-0.002250,0.249990,0,0);-ms-transform:matrix(0.483785,0.004354,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.483785,0.004354,-0.002250,0.249990,0,0);}
.m4b_c00204{transform:matrix(0.541243,0.004871,-0.002250,0.249990,0,0);-ms-transform:matrix(0.541243,0.004871,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.541243,0.004871,-0.002250,0.249990,0,0);}
.me3_c00204{transform:matrix(0.693363,0.012481,-0.004499,0.249960,0,0);-ms-transform:matrix(0.693363,0.012481,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.693363,0.012481,-0.004499,0.249960,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;}
.fs13_c00204{font-size:18.900000px;}
.fs12_c00204{font-size:46.200000px;}
.fs10_c00204{font-size:47.250000px;}
.fsf_c00204{font-size:48.300000px;}
.fse_c00204{font-size:49.350000px;}
.fs15_c00204{font-size:49.357994px;}
.fs11_c00204{font-size:50.400000px;}
.fs16_c00204{font-size:50.408164px;}
.fs14_c00204{font-size:52.508504px;}
.fs17_c00204{font-size:59.863195px;}
.fs9_c00204{font-size:60.902466px;}
.fs2_c00204{font-size:69.300000px;}
.fs7_c00204{font-size:69.302807px;}
.fsd_c00204{font-size:69.305856px;}
.fs6_c00204{font-size:70.350000px;}
.fsa_c00204{font-size:70.353517px;}
.fsc_c00204{font-size:70.354256px;}
.fs3_c00204{font-size:71.400000px;}
.fs8_c00204{font-size:71.402892px;}
.fs5_c00204{font-size:72.450000px;}
.fs4_c00204{font-size:75.600000px;}
.fsb_c00204{font-size:75.605443px;}
.fs1_c00204{font-size:87.150000px;}
.fs0_c00204{font-size:98.700000px;}
.y0_c00204{bottom:0.000000px;}
.y9c_c00204{bottom:152.597616px;}
.y9b_c00204{bottom:155.660172px;}
.y9a_c00204{bottom:156.232716px;}
.y99_c00204{bottom:157.215201px;}
.y98_c00204{bottom:158.620321px;}
.y97_c00204{bottom:159.261000px;}
.y96_c00204{bottom:172.978560px;}
.y95_c00204{bottom:173.838294px;}
.y94_c00204{bottom:176.171931px;}
.y93_c00204{bottom:176.498010px;}
.y92_c00204{bottom:176.653152px;}
.y91_c00204{bottom:177.095682px;}
.y90_c00204{bottom:177.640083px;}
.y8f_c00204{bottom:178.203924px;}
.y8e_c00204{bottom:178.553790px;}
.y8d_c00204{bottom:179.337438px;}
.y8c_c00204{bottom:179.817984px;}
.y8b_c00204{bottom:181.008846px;}
.y8a_c00204{bottom:181.588050px;}
.y89_c00204{bottom:190.463865px;}
.y88_c00204{bottom:190.896081px;}
.y87_c00204{bottom:191.148153px;}
.y86_c00204{bottom:191.304969px;}
.y85_c00204{bottom:192.359859px;}
.y84_c00204{bottom:193.102008px;}
.y83_c00204{bottom:193.255314px;}
.y82_c00204{bottom:193.991496px;}
.y81_c00204{bottom:194.221806px;}
.y80_c00204{bottom:194.814267px;}
.y7f_c00204{bottom:195.261144px;}
.y7e_c00204{bottom:195.585144px;}
.y7d_c00204{bottom:196.232550px;}
.y7c_c00204{bottom:197.536650px;}
.y7b_c00204{bottom:198.450357px;}
.y7a_c00204{bottom:208.591812px;}
.y79_c00204{bottom:209.045304px;}
.y78_c00204{bottom:210.183327px;}
.y77_c00204{bottom:210.897288px;}
.y76_c00204{bottom:211.426515px;}
.y75_c00204{bottom:211.718250px;}
.y74_c00204{bottom:212.359581px;}
.y73_c00204{bottom:213.117012px;}
.y72_c00204{bottom:213.647805px;}
.y71_c00204{bottom:214.007742px;}
.y70_c00204{bottom:214.625124px;}
.y6f_c00204{bottom:215.208324px;}
.y6e_c00204{bottom:215.455347px;}
.y6d_c00204{bottom:215.697267px;}
.y6c_c00204{bottom:216.033390px;}
.y6b_c00204{bottom:216.245880px;}
.y69_c00204{bottom:216.386982px;}
.y6a_c00204{bottom:216.390789px;}
.y68_c00204{bottom:216.814500px;}
.y67_c00204{bottom:273.493500px;}
.y66_c00204{bottom:280.783500px;}
.y65_c00204{bottom:291.480000px;}
.y64_c00204{bottom:309.939000px;}
.y63_c00204{bottom:327.504000px;}
.y62_c00204{bottom:345.634500px;}
.y61_c00204{bottom:363.723000px;}
.y60_c00204{bottom:381.480000px;}
.y5f_c00204{bottom:399.981000px;}
.y5e_c00204{bottom:422.281311px;}
.y5d_c00204{bottom:422.709531px;}
.y5c_c00204{bottom:423.176283px;}
.y5b_c00204{bottom:423.214795px;}
.y5a_c00204{bottom:423.674840px;}
.y59_c00204{bottom:424.625601px;}
.y58_c00204{bottom:425.015367px;}
.y57_c00204{bottom:425.250518px;}
.y56_c00204{bottom:425.805000px;}
.y55_c00204{bottom:444.292638px;}
.y54_c00204{bottom:444.979714px;}
.y53_c00204{bottom:445.641793px;}
.y52_c00204{bottom:446.075380px;}
.y51_c00204{bottom:446.806050px;}
.y50_c00204{bottom:447.245676px;}
.y4f_c00204{bottom:447.899257px;}
.y4e_c00204{bottom:448.246500px;}
.y4d_c00204{bottom:466.704456px;}
.y4c_c00204{bottom:466.993266px;}
.y4b_c00204{bottom:467.443356px;}
.y4a_c00204{bottom:467.886732px;}
.y49_c00204{bottom:468.515472px;}
.y48_c00204{bottom:468.959910px;}
.y47_c00204{bottom:469.442562px;}
.y46_c00204{bottom:469.827708px;}
.y45_c00204{bottom:470.233230px;}
.y44_c00204{bottom:470.489136px;}
.y43_c00204{bottom:470.881500px;}
.y42_c00204{bottom:491.971140px;}
.y41_c00204{bottom:492.161865px;}
.y40_c00204{bottom:492.313110px;}
.y3f_c00204{bottom:492.916710px;}
.y3e_c00204{bottom:493.088895px;}
.y3d_c00204{bottom:493.679145px;}
.y3c_c00204{bottom:494.157885px;}
.y3b_c00204{bottom:494.381700px;}
.y3a_c00204{bottom:494.799675px;}
.y39_c00204{bottom:513.565395px;}
.y38_c00204{bottom:513.951075px;}
.y37_c00204{bottom:514.172865px;}
.y36_c00204{bottom:514.877715px;}
.y35_c00204{bottom:515.276805px;}
.y34_c00204{bottom:515.763345px;}
.y33_c00204{bottom:516.092700px;}
.y32_c00204{bottom:516.462495px;}
.y31_c00204{bottom:516.762315px;}
.y30_c00204{bottom:517.051500px;}
.y2f_c00204{bottom:536.287797px;}
.y2e_c00204{bottom:536.783152px;}
.y2d_c00204{bottom:537.351907px;}
.y2c_c00204{bottom:537.514690px;}
.y2b_c00204{bottom:537.835396px;}
.y2a_c00204{bottom:538.503727px;}
.y29_c00204{bottom:538.639956px;}
.y28_c00204{bottom:538.948093px;}
.y27_c00204{bottom:539.458744px;}
.y26_c00204{bottom:539.609310px;}
.y25_c00204{bottom:557.781234px;}
.y24_c00204{bottom:558.127839px;}
.y23_c00204{bottom:558.889402px;}
.y22_c00204{bottom:559.238410px;}
.y21_c00204{bottom:559.912336px;}
.y20_c00204{bottom:560.612797px;}
.y1f_c00204{bottom:560.955418px;}
.y1e_c00204{bottom:561.641484px;}
.y1d_c00204{bottom:562.027275px;}
.y1c_c00204{bottom:562.409934px;}
.y1b_c00204{bottom:582.371385px;}
.y1a_c00204{bottom:582.963603px;}
.y19_c00204{bottom:583.148148px;}
.y18_c00204{bottom:583.517454px;}
.y17_c00204{bottom:583.528051px;}
.y16_c00204{bottom:583.748412px;}
.y15_c00204{bottom:583.998581px;}
.y14_c00204{bottom:584.551500px;}
.y13_c00204{bottom:650.638500px;}
.y12_c00204{bottom:673.929000px;}
.y11_c00204{bottom:695.032500px;}
.y10_c00204{bottom:695.484000px;}
.yf_c00204{bottom:695.773500px;}
.ye_c00204{bottom:696.226500px;}
.yd_c00204{bottom:696.559500px;}
.yc_c00204{bottom:696.766500px;}
.yb_c00204{bottom:697.023000px;}
.ya_c00204{bottom:697.213500px;}
.y9_c00204{bottom:697.474500px;}
.y8_c00204{bottom:697.719000px;}
.y7_c00204{bottom:718.710000px;}
.y6_c00204{bottom:741.615000px;}
.y5_c00204{bottom:764.929500px;}
.y4_c00204{bottom:787.506000px;}
.y3_c00204{bottom:809.556000px;}
.y2_c00204{bottom:833.227500px;}
.y1_c00204{bottom:881.893500px;}
.h15_c00204{height:18.900000px;}
.h14_c00204{height:46.200000px;}
.h12_c00204{height:47.250000px;}
.h11_c00204{height:48.300000px;}
.h10_c00204{height:49.350000px;}
.h17_c00204{height:49.357994px;}
.h13_c00204{height:50.400000px;}
.h18_c00204{height:50.408164px;}
.h16_c00204{height:52.508504px;}
.h19_c00204{height:59.863195px;}
.hb_c00204{height:60.902466px;}
.h4_c00204{height:69.300000px;}
.h9_c00204{height:69.302807px;}
.hf_c00204{height:69.305856px;}
.h8_c00204{height:70.350000px;}
.hc_c00204{height:70.353517px;}
.he_c00204{height:70.354256px;}
.h5_c00204{height:71.400000px;}
.ha_c00204{height:71.402892px;}
.h7_c00204{height:72.450000px;}
.h6_c00204{height:75.600000px;}
.hd_c00204{height:75.605443px;}
.h3_c00204{height:87.150000px;}
.h2_c00204{height:98.700000px;}
.h1_c00204{height:1005.000000px;}
.h0_c00204{height:1005.150000px;}
.w0_c00204{width:735.750000px;}
.x0_c00204{left:0.000000px;}
.x8f_c00204{left:69.726678px;}
.x7f_c00204{left:78.838500px;}
.x96_c00204{left:86.695500px;}
.x80_c00204{left:102.378000px;}
.x4d_c00204{left:103.571055px;}
.x59_c00204{left:105.157020px;}
.x12_c00204{left:110.430000px;}
.x67_c00204{left:114.349500px;}
.x2d_c00204{left:116.541000px;}
.x5f_c00204{left:118.362000px;}
.x44_c00204{left:120.541618px;}
.x36_c00204{left:121.770000px;}
.xa_c00204{left:123.930000px;}
.x21_c00204{left:126.360000px;}
.x87_c00204{left:128.832804px;}
.x81_c00204{left:140.907000px;}
.x5a_c00204{left:143.204145px;}
.x68_c00204{left:145.917000px;}
.x2e_c00204{left:147.036000px;}
.x13_c00204{left:149.580000px;}
.x60_c00204{left:151.059000px;}
.x37_c00204{left:152.280000px;}
.x1_c00204{left:154.980000px;}
.x3d_c00204{left:156.600000px;}
.x22_c00204{left:158.490000px;}
.x78_c00204{left:159.840000px;}
.xb_c00204{left:163.890000px;}
.x72_c00204{left:166.860000px;}
.x82_c00204{left:168.070500px;}
.x61_c00204{left:172.384500px;}
.x75_c00204{left:174.420000px;}
.x4e_c00204{left:177.039555px;}
.x2f_c00204{left:179.710500px;}
.x43_c00204{left:183.502500px;}
.x45_c00204{left:184.589890px;}
.x14_c00204{left:187.380000px;}
.x38_c00204{left:189.270000px;}
.x7a_c00204{left:193.320000px;}
.x1c_c00204{left:195.210000px;}
.x23_c00204{left:200.070000px;}
.x73_c00204{left:201.420000px;}
.x30_c00204{left:203.505000px;}
.x69_c00204{left:205.333500px;}
.x5b_c00204{left:207.009000px;}
.xc_c00204{left:210.600000px;}
.x7b_c00204{left:213.300000px;}
.x54_c00204{left:215.878500px;}
.x7c_c00204{left:217.890000px;}
.x39_c00204{left:218.970000px;}
.x15_c00204{left:220.050000px;}
.x1d_c00204{left:224.910000px;}
.x4f_c00204{left:226.413555px;}
.x2_c00204{left:227.610000px;}
.x24_c00204{left:230.850000px;}
.x74_c00204{left:234.630000px;}
.x6_c00204{left:236.250000px;}
.x16_c00204{left:239.220000px;}
.x46_c00204{left:241.817852px;}
.x76_c00204{left:243.810000px;}
.x6a_c00204{left:245.299500px;}
.x3a_c00204{left:249.210000px;}
.x25_c00204{left:250.830000px;}
.x3e_c00204{left:253.530000px;}
.x83_c00204{left:254.766000px;}
.x7d_c00204{left:258.120000px;}
.x7_c00204{left:259.470000px;}
.x31_c00204{left:261.565500px;}
.x7e_c00204{left:265.680000px;}
.x47_c00204{left:270.386082px;}
.x79_c00204{left:272.430000px;}
.x17_c00204{left:277.290000px;}
.x62_c00204{left:278.494500px;}
.x6f_c00204{left:280.618500px;}
.xd_c00204{left:283.500000px;}
.x3f_c00204{left:286.470000px;}
.x90_c00204{left:289.058178px;}
.x3_c00204{left:290.250000px;}
.x1e_c00204{left:295.920000px;}
.x18_c00204{left:297.540000px;}
.x50_c00204{left:300.672555px;}
.x32_c00204{left:303.111000px;}
.x2b_c00204{left:306.720000px;}
.x40_c00204{left:310.230000px;}
.x6b_c00204{left:311.724000px;}
.x88_c00204{left:312.990804px;}
.x63_c00204{left:315.531000px;}
.xe_c00204{left:316.980000px;}
.x70_c00204{left:318.969000px;}
.x1f_c00204{left:322.110000px;}
.x26_c00204{left:325.890000px;}
.x48_c00204{left:328.713503px;}
.x5c_c00204{left:331.161255px;}
.x19_c00204{left:332.370000px;}
.x3b_c00204{left:334.530000px;}
.x51_c00204{left:336.306555px;}
.x55_c00204{left:337.377000px;}
.x41_c00204{left:338.850000px;}
.x8_c00204{left:340.470000px;}
.x91_c00204{left:343.887678px;}
.x5d_c00204{left:344.935620px;}
.x27_c00204{left:346.140000px;}
.x42_c00204{left:348.840000px;}
.x6c_c00204{left:351.141000px;}
.x92_c00204{left:352.506678px;}
.x9_c00204{left:355.320000px;}
.xf_c00204{left:356.940000px;}
.x33_c00204{left:359.803500px;}
.x5e_c00204{left:362.207940px;}
.x1a_c00204{left:363.420000px;}
.x89_c00204{left:366.684804px;}
.x28_c00204{left:367.740000px;}
.x93_c00204{left:370.622178px;}
.x4_c00204{left:374.760000px;}
.x20_c00204{left:377.460000px;}
.x10_c00204{left:380.970000px;}
.x1b_c00204{left:382.590000px;}
.x49_c00204{left:384.925991px;}
.x71_c00204{left:387.813000px;}
.x29_c00204{left:392.850000px;}
.x34_c00204{left:395.926500px;}
.x77_c00204{left:403.380000px;}
.x64_c00204{left:404.874000px;}
.x2c_c00204{left:406.080000px;}
.x56_c00204{left:407.862000px;}
.x6d_c00204{left:411.330000px;}
.x4a_c00204{left:414.037208px;}
.x3c_c00204{left:415.260000px;}
.x8a_c00204{left:416.432304px;}
.x52_c00204{left:417.588555px;}
.x2a_c00204{left:424.710000px;}
.x57_c00204{left:430.041000px;}
.x65_c00204{left:442.381500px;}
.x5_c00204{left:444.960000px;}
.x84_c00204{left:447.237000px;}
.x11_c00204{left:448.470000px;}
.x35_c00204{left:452.356500px;}
.x66_c00204{left:466.449000px;}
.x58_c00204{left:468.609000px;}
.x53_c00204{left:472.628055px;}
.x6e_c00204{left:473.791500px;}
.x8b_c00204{left:475.037304px;}
.x4b_c00204{left:477.486993px;}
.x8c_c00204{left:483.749304px;}
.x8d_c00204{left:497.753304px;}
.x94_c00204{left:500.268678px;}
.x4c_c00204{left:506.331210px;}
.x85_c00204{left:510.460500px;}
.x8e_c00204{left:521.765304px;}
.x86_c00204{left:535.654500px;}
.x95_c00204{left:548.031678px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.fs13_c00204{font-size:16.800000pt;}
.fs12_c00204{font-size:41.066667pt;}
.fs10_c00204{font-size:42.000000pt;}
.fsf_c00204{font-size:42.933333pt;}
.fse_c00204{font-size:43.866667pt;}
.fs15_c00204{font-size:43.873772pt;}
.fs11_c00204{font-size:44.800000pt;}
.fs16_c00204{font-size:44.807257pt;}
.fs14_c00204{font-size:46.674226pt;}
.fs17_c00204{font-size:53.211729pt;}
.fs9_c00204{font-size:54.135526pt;}
.fs2_c00204{font-size:61.600000pt;}
.fs7_c00204{font-size:61.602495pt;}
.fsd_c00204{font-size:61.605205pt;}
.fs6_c00204{font-size:62.533333pt;}
.fsa_c00204{font-size:62.536460pt;}
.fsc_c00204{font-size:62.537116pt;}
.fs3_c00204{font-size:63.466667pt;}
.fs8_c00204{font-size:63.469237pt;}
.fs5_c00204{font-size:64.400000pt;}
.fs4_c00204{font-size:67.200000pt;}
.fsb_c00204{font-size:67.204838pt;}
.fs1_c00204{font-size:77.466667pt;}
.fs0_c00204{font-size:87.733333pt;}
.y0_c00204{bottom:0.000000pt;}
.y9c_c00204{bottom:135.642325pt;}
.y9b_c00204{bottom:138.364597pt;}
.y9a_c00204{bottom:138.873525pt;}
.y99_c00204{bottom:139.746845pt;}
.y98_c00204{bottom:140.995841pt;}
.y97_c00204{bottom:141.565333pt;}
.y96_c00204{bottom:153.758720pt;}
.y95_c00204{bottom:154.522928pt;}
.y94_c00204{bottom:156.597272pt;}
.y93_c00204{bottom:156.887120pt;}
.y92_c00204{bottom:157.025024pt;}
.y91_c00204{bottom:157.418384pt;}
.y90_c00204{bottom:157.902296pt;}
.y8f_c00204{bottom:158.403488pt;}
.y8e_c00204{bottom:158.714480pt;}
.y8d_c00204{bottom:159.411056pt;}
.y8c_c00204{bottom:159.838208pt;}
.y8b_c00204{bottom:160.896752pt;}
.y8a_c00204{bottom:161.411600pt;}
.y89_c00204{bottom:169.301213pt;}
.y88_c00204{bottom:169.685405pt;}
.y87_c00204{bottom:169.909469pt;}
.y86_c00204{bottom:170.048861pt;}
.y85_c00204{bottom:170.986541pt;}
.y84_c00204{bottom:171.646229pt;}
.y83_c00204{bottom:171.782501pt;}
.y82_c00204{bottom:172.436885pt;}
.y81_c00204{bottom:172.641605pt;}
.y80_c00204{bottom:173.168237pt;}
.y7f_c00204{bottom:173.565461pt;}
.y7e_c00204{bottom:173.853461pt;}
.y7d_c00204{bottom:174.428933pt;}
.y7c_c00204{bottom:175.588133pt;}
.y7b_c00204{bottom:176.400317pt;}
.y7a_c00204{bottom:185.414944pt;}
.y79_c00204{bottom:185.818048pt;}
.y78_c00204{bottom:186.829624pt;}
.y77_c00204{bottom:187.464256pt;}
.y76_c00204{bottom:187.934680pt;}
.y75_c00204{bottom:188.194000pt;}
.y74_c00204{bottom:188.764072pt;}
.y73_c00204{bottom:189.437344pt;}
.y72_c00204{bottom:189.909160pt;}
.y71_c00204{bottom:190.229104pt;}
.y70_c00204{bottom:190.777888pt;}
.y6f_c00204{bottom:191.296288pt;}
.y6e_c00204{bottom:191.515864pt;}
.y6d_c00204{bottom:191.730904pt;}
.y6c_c00204{bottom:192.029680pt;}
.y6b_c00204{bottom:192.218560pt;}
.y69_c00204{bottom:192.343984pt;}
.y6a_c00204{bottom:192.347368pt;}
.y68_c00204{bottom:192.724000pt;}
.y67_c00204{bottom:243.105333pt;}
.y66_c00204{bottom:249.585333pt;}
.y65_c00204{bottom:259.093333pt;}
.y64_c00204{bottom:275.501333pt;}
.y63_c00204{bottom:291.114667pt;}
.y62_c00204{bottom:307.230667pt;}
.y61_c00204{bottom:323.309333pt;}
.y60_c00204{bottom:339.093333pt;}
.y5f_c00204{bottom:355.538667pt;}
.y5e_c00204{bottom:375.361165pt;}
.y5d_c00204{bottom:375.741805pt;}
.y5c_c00204{bottom:376.156696pt;}
.y5b_c00204{bottom:376.190929pt;}
.y5a_c00204{bottom:376.599857pt;}
.y59_c00204{bottom:377.444979pt;}
.y58_c00204{bottom:377.791437pt;}
.y57_c00204{bottom:378.000460pt;}
.y56_c00204{bottom:378.493333pt;}
.y55_c00204{bottom:394.926789pt;}
.y54_c00204{bottom:395.537524pt;}
.y53_c00204{bottom:396.126039pt;}
.y52_c00204{bottom:396.511449pt;}
.y51_c00204{bottom:397.160933pt;}
.y50_c00204{bottom:397.551712pt;}
.y4f_c00204{bottom:398.132673pt;}
.y4e_c00204{bottom:398.441333pt;}
.y4d_c00204{bottom:414.848405pt;}
.y4c_c00204{bottom:415.105125pt;}
.y4b_c00204{bottom:415.505205pt;}
.y4a_c00204{bottom:415.899317pt;}
.y49_c00204{bottom:416.458197pt;}
.y48_c00204{bottom:416.853253pt;}
.y47_c00204{bottom:417.282277pt;}
.y46_c00204{bottom:417.624629pt;}
.y45_c00204{bottom:417.985093pt;}
.y44_c00204{bottom:418.212565pt;}
.y43_c00204{bottom:418.561333pt;}
.y42_c00204{bottom:437.307680pt;}
.y41_c00204{bottom:437.477213pt;}
.y40_c00204{bottom:437.611653pt;}
.y3f_c00204{bottom:438.148187pt;}
.y3e_c00204{bottom:438.301240pt;}
.y3d_c00204{bottom:438.825907pt;}
.y3c_c00204{bottom:439.251453pt;}
.y3b_c00204{bottom:439.450400pt;}
.y3a_c00204{bottom:439.821933pt;}
.y39_c00204{bottom:456.502573pt;}
.y38_c00204{bottom:456.845400pt;}
.y37_c00204{bottom:457.042547pt;}
.y36_c00204{bottom:457.669080pt;}
.y35_c00204{bottom:458.023827pt;}
.y34_c00204{bottom:458.456307pt;}
.y33_c00204{bottom:458.749067pt;}
.y32_c00204{bottom:459.077773pt;}
.y31_c00204{bottom:459.344280pt;}
.y30_c00204{bottom:459.601333pt;}
.y2f_c00204{bottom:476.700264pt;}
.y2e_c00204{bottom:477.140580pt;}
.y2d_c00204{bottom:477.646140pt;}
.y2c_c00204{bottom:477.790836pt;}
.y2b_c00204{bottom:478.075908pt;}
.y2a_c00204{bottom:478.669980pt;}
.y29_c00204{bottom:478.791072pt;}
.y28_c00204{bottom:479.064972pt;}
.y27_c00204{bottom:479.518884pt;}
.y26_c00204{bottom:479.652720pt;}
.y25_c00204{bottom:495.805541pt;}
.y24_c00204{bottom:496.113635pt;}
.y23_c00204{bottom:496.790580pt;}
.y22_c00204{bottom:497.100809pt;}
.y21_c00204{bottom:497.699855pt;}
.y20_c00204{bottom:498.322487pt;}
.y1f_c00204{bottom:498.627039pt;}
.y1e_c00204{bottom:499.236875pt;}
.y1d_c00204{bottom:499.579800pt;}
.y1c_c00204{bottom:499.919941pt;}
.y1b_c00204{bottom:517.663453pt;}
.y1a_c00204{bottom:518.189869pt;}
.y19_c00204{bottom:518.353909pt;}
.y18_c00204{bottom:518.682181pt;}
.y17_c00204{bottom:518.691601pt;}
.y16_c00204{bottom:518.887477pt;}
.y15_c00204{bottom:519.109849pt;}
.y14_c00204{bottom:519.601333pt;}
.y13_c00204{bottom:578.345333pt;}
.y12_c00204{bottom:599.048000pt;}
.y11_c00204{bottom:617.806667pt;}
.y10_c00204{bottom:618.208000pt;}
.yf_c00204{bottom:618.465333pt;}
.ye_c00204{bottom:618.868000pt;}
.yd_c00204{bottom:619.164000pt;}
.yc_c00204{bottom:619.348000pt;}
.yb_c00204{bottom:619.576000pt;}
.ya_c00204{bottom:619.745333pt;}
.y9_c00204{bottom:619.977333pt;}
.y8_c00204{bottom:620.194667pt;}
.y7_c00204{bottom:638.853333pt;}
.y6_c00204{bottom:659.213333pt;}
.y5_c00204{bottom:679.937333pt;}
.y4_c00204{bottom:700.005333pt;}
.y3_c00204{bottom:719.605333pt;}
.y2_c00204{bottom:740.646667pt;}
.y1_c00204{bottom:783.905333pt;}
.h15_c00204{height:16.800000pt;}
.h14_c00204{height:41.066667pt;}
.h12_c00204{height:42.000000pt;}
.h11_c00204{height:42.933333pt;}
.h10_c00204{height:43.866667pt;}
.h17_c00204{height:43.873772pt;}
.h13_c00204{height:44.800000pt;}
.h18_c00204{height:44.807257pt;}
.h16_c00204{height:46.674226pt;}
.h19_c00204{height:53.211729pt;}
.hb_c00204{height:54.135526pt;}
.h4_c00204{height:61.600000pt;}
.h9_c00204{height:61.602495pt;}
.hf_c00204{height:61.605205pt;}
.h8_c00204{height:62.533333pt;}
.hc_c00204{height:62.536460pt;}
.he_c00204{height:62.537116pt;}
.h5_c00204{height:63.466667pt;}
.ha_c00204{height:63.469237pt;}
.h7_c00204{height:64.400000pt;}
.h6_c00204{height:67.200000pt;}
.hd_c00204{height:67.204838pt;}
.h3_c00204{height:77.466667pt;}
.h2_c00204{height:87.733333pt;}
.h1_c00204{height:893.333333pt;}
.h0_c00204{height:893.466667pt;}
.w0_c00204{width:654.000000pt;}
.x0_c00204{left:0.000000pt;}
.x8f_c00204{left:61.979269pt;}
.x7f_c00204{left:70.078667pt;}
.x96_c00204{left:77.062667pt;}
.x80_c00204{left:91.002667pt;}
.x4d_c00204{left:92.063160pt;}
.x59_c00204{left:93.472907pt;}
.x12_c00204{left:98.160000pt;}
.x67_c00204{left:101.644000pt;}
.x2d_c00204{left:103.592000pt;}
.x5f_c00204{left:105.210667pt;}
.x44_c00204{left:107.148105pt;}
.x36_c00204{left:108.240000pt;}
.xa_c00204{left:110.160000pt;}
.x21_c00204{left:112.320000pt;}
.x87_c00204{left:114.518048pt;}
.x81_c00204{left:125.250667pt;}
.x5a_c00204{left:127.292573pt;}
.x68_c00204{left:129.704000pt;}
.x2e_c00204{left:130.698667pt;}
.x13_c00204{left:132.960000pt;}
.x60_c00204{left:134.274667pt;}
.x37_c00204{left:135.360000pt;}
.x1_c00204{left:137.760000pt;}
.x3d_c00204{left:139.200000pt;}
.x22_c00204{left:140.880000pt;}
.x78_c00204{left:142.080000pt;}
.xb_c00204{left:145.680000pt;}
.x72_c00204{left:148.320000pt;}
.x82_c00204{left:149.396000pt;}
.x61_c00204{left:153.230667pt;}
.x75_c00204{left:155.040000pt;}
.x4e_c00204{left:157.368493pt;}
.x2f_c00204{left:159.742667pt;}
.x43_c00204{left:163.113333pt;}
.x45_c00204{left:164.079903pt;}
.x14_c00204{left:166.560000pt;}
.x38_c00204{left:168.240000pt;}
.x7a_c00204{left:171.840000pt;}
.x1c_c00204{left:173.520000pt;}
.x23_c00204{left:177.840000pt;}
.x73_c00204{left:179.040000pt;}
.x30_c00204{left:180.893333pt;}
.x69_c00204{left:182.518667pt;}
.x5b_c00204{left:184.008000pt;}
.xc_c00204{left:187.200000pt;}
.x7b_c00204{left:189.600000pt;}
.x54_c00204{left:191.892000pt;}
.x7c_c00204{left:193.680000pt;}
.x39_c00204{left:194.640000pt;}
.x15_c00204{left:195.600000pt;}
.x1d_c00204{left:199.920000pt;}
.x4f_c00204{left:201.256493pt;}
.x2_c00204{left:202.320000pt;}
.x24_c00204{left:205.200000pt;}
.x74_c00204{left:208.560000pt;}
.x6_c00204{left:210.000000pt;}
.x16_c00204{left:212.640000pt;}
.x46_c00204{left:214.949201pt;}
.x76_c00204{left:216.720000pt;}
.x6a_c00204{left:218.044000pt;}
.x3a_c00204{left:221.520000pt;}
.x25_c00204{left:222.960000pt;}
.x3e_c00204{left:225.360000pt;}
.x83_c00204{left:226.458667pt;}
.x7d_c00204{left:229.440000pt;}
.x7_c00204{left:230.640000pt;}
.x31_c00204{left:232.502667pt;}
.x7e_c00204{left:236.160000pt;}
.x47_c00204{left:240.343184pt;}
.x79_c00204{left:242.160000pt;}
.x17_c00204{left:246.480000pt;}
.x62_c00204{left:247.550667pt;}
.x6f_c00204{left:249.438667pt;}
.xd_c00204{left:252.000000pt;}
.x3f_c00204{left:254.640000pt;}
.x90_c00204{left:256.940603pt;}
.x3_c00204{left:258.000000pt;}
.x1e_c00204{left:263.040000pt;}
.x18_c00204{left:264.480000pt;}
.x50_c00204{left:267.264493pt;}
.x32_c00204{left:269.432000pt;}
.x2b_c00204{left:272.640000pt;}
.x40_c00204{left:275.760000pt;}
.x6b_c00204{left:277.088000pt;}
.x88_c00204{left:278.214048pt;}
.x63_c00204{left:280.472000pt;}
.xe_c00204{left:281.760000pt;}
.x70_c00204{left:283.528000pt;}
.x1f_c00204{left:286.320000pt;}
.x26_c00204{left:289.680000pt;}
.x48_c00204{left:292.189780pt;}
.x5c_c00204{left:294.365560pt;}
.x19_c00204{left:295.440000pt;}
.x3b_c00204{left:297.360000pt;}
.x51_c00204{left:298.939160pt;}
.x55_c00204{left:299.890667pt;}
.x41_c00204{left:301.200000pt;}
.x8_c00204{left:302.640000pt;}
.x91_c00204{left:305.677936pt;}
.x5d_c00204{left:306.609440pt;}
.x27_c00204{left:307.680000pt;}
.x42_c00204{left:310.080000pt;}
.x6c_c00204{left:312.125333pt;}
.x92_c00204{left:313.339269pt;}
.x9_c00204{left:315.840000pt;}
.xf_c00204{left:317.280000pt;}
.x33_c00204{left:319.825333pt;}
.x5e_c00204{left:321.962613pt;}
.x1a_c00204{left:323.040000pt;}
.x89_c00204{left:325.942048pt;}
.x28_c00204{left:326.880000pt;}
.x93_c00204{left:329.441936pt;}
.x4_c00204{left:333.120000pt;}
.x20_c00204{left:335.520000pt;}
.x10_c00204{left:338.640000pt;}
.x1b_c00204{left:340.080000pt;}
.x49_c00204{left:342.156436pt;}
.x71_c00204{left:344.722667pt;}
.x29_c00204{left:349.200000pt;}
.x34_c00204{left:351.934667pt;}
.x77_c00204{left:358.560000pt;}
.x64_c00204{left:359.888000pt;}
.x2c_c00204{left:360.960000pt;}
.x56_c00204{left:362.544000pt;}
.x6d_c00204{left:365.626667pt;}
.x4a_c00204{left:368.033073pt;}
.x3c_c00204{left:369.120000pt;}
.x8a_c00204{left:370.162048pt;}
.x52_c00204{left:371.189827pt;}
.x2a_c00204{left:377.520000pt;}
.x57_c00204{left:382.258667pt;}
.x65_c00204{left:393.228000pt;}
.x5_c00204{left:395.520000pt;}
.x84_c00204{left:397.544000pt;}
.x11_c00204{left:398.640000pt;}
.x35_c00204{left:402.094667pt;}
.x66_c00204{left:414.621333pt;}
.x58_c00204{left:416.541333pt;}
.x53_c00204{left:420.113827pt;}
.x6e_c00204{left:421.148000pt;}
.x8b_c00204{left:422.255381pt;}
.x4b_c00204{left:424.432883pt;}
.x8c_c00204{left:429.999381pt;}
.x8d_c00204{left:442.447381pt;}
.x94_c00204{left:444.683269pt;}
.x4c_c00204{left:450.072187pt;}
.x85_c00204{left:453.742667pt;}
.x8e_c00204{left:463.791381pt;}
.x86_c00204{left:476.137333pt;}
.x95_c00204{left:487.139269pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m118_c00205{transform:matrix(0.016939,-0.000186,0.002750,0.249985,0,0);-ms-transform:matrix(0.016939,-0.000186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.016939,-0.000186,0.002750,0.249985,0,0);}
.mf7_c00205{transform:matrix(0.021633,-0.000324,0.003750,0.249972,0,0);-ms-transform:matrix(0.021633,-0.000324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.021633,-0.000324,0.003750,0.249972,0,0);}
.m35_c00205{transform:matrix(0.021708,-0.000304,0.003500,0.249976,0,0);-ms-transform:matrix(0.021708,-0.000304,0.003500,0.249976,0,0);-webkit-transform:matrix(0.021708,-0.000304,0.003500,0.249976,0,0);}
.ma5_c00205{transform:matrix(0.038112,-0.000457,0.003000,0.249982,0,0);-ms-transform:matrix(0.038112,-0.000457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.038112,-0.000457,0.003000,0.249982,0,0);}
.maa_c00205{transform:matrix(0.048520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048520,0.000000,0.000000,0.250000,0,0);}
.mfe_c00205{transform:matrix(0.055334,-0.000830,0.003750,0.249972,0,0);-ms-transform:matrix(0.055334,-0.000830,0.003750,0.249972,0,0);-webkit-transform:matrix(0.055334,-0.000830,0.003750,0.249972,0,0);}
.mc9_c00205{transform:matrix(0.073405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073405,0.000000,0.000000,0.250000,0,0);}
.mab_c00205{transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);-ms-transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);}
.m10f_c00205{transform:matrix(0.105654,-0.001162,0.002750,0.249985,0,0);-ms-transform:matrix(0.105654,-0.001162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.105654,-0.001162,0.002750,0.249985,0,0);}
.m64_c00205{transform:matrix(0.109031,-0.001417,0.003250,0.249979,0,0);-ms-transform:matrix(0.109031,-0.001417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.109031,-0.001417,0.003250,0.249979,0,0);}
.mbd_c00205{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.mcf_c00205{transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121480,0.000000,0.000000,0.250000,0,0);}
.mc6_c00205{transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);}
.mfc_c00205{transform:matrix(0.123231,-0.001848,0.003750,0.249972,0,0);-ms-transform:matrix(0.123231,-0.001848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.123231,-0.001848,0.003750,0.249972,0,0);}
.m1c_c00205{transform:matrix(0.130851,-0.002486,0.004749,0.249955,0,0);-ms-transform:matrix(0.130851,-0.002486,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130851,-0.002486,0.004749,0.249955,0,0);}
.mae_c00205{transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.137237,-0.001921,0.003500,0.249976,0,0);-ms-transform:matrix(0.137237,-0.001921,0.003500,0.249976,0,0);-webkit-transform:matrix(0.137237,-0.001921,0.003500,0.249976,0,0);}
.m91_c00205{transform:matrix(0.138333,-0.001798,0.003250,0.249979,0,0);-ms-transform:matrix(0.138333,-0.001798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138333,-0.001798,0.003250,0.249979,0,0);}
.m6e_c00205{transform:matrix(0.138673,-0.001803,0.003250,0.249979,0,0);-ms-transform:matrix(0.138673,-0.001803,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138673,-0.001803,0.003250,0.249979,0,0);}
.m3d_c00205{transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);-ms-transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);}
.ma4_c00205{transform:matrix(0.139300,-0.001672,0.003000,0.249982,0,0);-ms-transform:matrix(0.139300,-0.001672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139300,-0.001672,0.003000,0.249982,0,0);}
.mac_c00205{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);}
.m87_c00205{transform:matrix(0.151255,-0.002118,0.003500,0.249976,0,0);-ms-transform:matrix(0.151255,-0.002118,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151255,-0.002118,0.003500,0.249976,0,0);}
.m11d_c00205{transform:matrix(0.151556,-0.001667,0.002750,0.249985,0,0);-ms-transform:matrix(0.151556,-0.001667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151556,-0.001667,0.002750,0.249985,0,0);}
.m1f_c00205{transform:matrix(0.153192,-0.002911,0.004749,0.249955,0,0);-ms-transform:matrix(0.153192,-0.002911,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153192,-0.002911,0.004749,0.249955,0,0);}
.m80_c00205{transform:matrix(0.153703,-0.002306,0.003750,0.249972,0,0);-ms-transform:matrix(0.153703,-0.002306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153703,-0.002306,0.003750,0.249972,0,0);}
.m6f_c00205{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);}
.m2f_c00205{transform:matrix(0.156700,-0.002194,0.003500,0.249976,0,0);-ms-transform:matrix(0.156700,-0.002194,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156700,-0.002194,0.003500,0.249976,0,0);}
.m83_c00205{transform:matrix(0.158259,-0.002216,0.003500,0.249976,0,0);-ms-transform:matrix(0.158259,-0.002216,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158259,-0.002216,0.003500,0.249976,0,0);}
.md0_c00205{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);}
.m120_c00205{transform:matrix(0.158845,-0.001747,0.002750,0.249985,0,0);-ms-transform:matrix(0.158845,-0.001747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158845,-0.001747,0.002750,0.249985,0,0);}
.m70_c00205{transform:matrix(0.159712,-0.002076,0.003250,0.249979,0,0);-ms-transform:matrix(0.159712,-0.002076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159712,-0.002076,0.003250,0.249979,0,0);}
.mf6_c00205{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);}
.m16_c00205{transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);-ms-transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);}
.m7e_c00205{transform:matrix(0.162117,-0.002432,0.003750,0.249972,0,0);-ms-transform:matrix(0.162117,-0.002432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162117,-0.002432,0.003750,0.249972,0,0);}
.m21_c00205{transform:matrix(0.163705,-0.003110,0.004749,0.249955,0,0);-ms-transform:matrix(0.163705,-0.003110,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163705,-0.003110,0.004749,0.249955,0,0);}
.m5b_c00205{transform:matrix(0.165136,-0.002147,0.003250,0.249979,0,0);-ms-transform:matrix(0.165136,-0.002147,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165136,-0.002147,0.003250,0.249979,0,0);}
.m95_c00205{transform:matrix(0.166033,-0.001992,0.003000,0.249982,0,0);-ms-transform:matrix(0.166033,-0.001992,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166033,-0.001992,0.003000,0.249982,0,0);}
.m1e_c00205{transform:matrix(0.166270,-0.003159,0.004749,0.249955,0,0);-ms-transform:matrix(0.166270,-0.003159,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166270,-0.003159,0.004749,0.249955,0,0);}
.m99_c00205{transform:matrix(0.167498,-0.002010,0.003000,0.249982,0,0);-ms-transform:matrix(0.167498,-0.002010,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167498,-0.002010,0.003000,0.249982,0,0);}
.m75_c00205{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);}
.m38_c00205{transform:matrix(0.170108,-0.002382,0.003500,0.249976,0,0);-ms-transform:matrix(0.170108,-0.002382,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170108,-0.002382,0.003500,0.249976,0,0);}
.m43_c00205{transform:matrix(0.170372,-0.003067,0.004499,0.249960,0,0);-ms-transform:matrix(0.170372,-0.003067,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170372,-0.003067,0.004499,0.249960,0,0);}
.md3_c00205{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.171309,-0.003255,0.004749,0.249955,0,0);-ms-transform:matrix(0.171309,-0.003255,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171309,-0.003255,0.004749,0.249955,0,0);}
.mef_c00205{transform:matrix(0.171776,-0.002577,0.003750,0.249972,0,0);-ms-transform:matrix(0.171776,-0.002577,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171776,-0.002577,0.003750,0.249972,0,0);}
.m117_c00205{transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);-ms-transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172485,-0.001897,0.002750,0.249985,0,0);}
.m129_c00205{transform:matrix(0.172610,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172610,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172610,-0.001899,0.002750,0.249985,0,0);}
.m12c_c00205{transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);}
.m20_c00205{transform:matrix(0.172819,-0.003284,0.004749,0.249955,0,0);-ms-transform:matrix(0.172819,-0.003284,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172819,-0.003284,0.004749,0.249955,0,0);}
.mb9_c00205{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);}
.m6b_c00205{transform:matrix(0.172910,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172910,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172910,-0.002248,0.003250,0.249979,0,0);}
.m79_c00205{transform:matrix(0.173306,-0.002600,0.003750,0.249972,0,0);-ms-transform:matrix(0.173306,-0.002600,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173306,-0.002600,0.003750,0.249972,0,0);}
.m115_c00205{transform:matrix(0.173550,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173550,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173550,-0.001909,0.002750,0.249985,0,0);}
.m77_c00205{transform:matrix(0.173700,-0.002258,0.003250,0.249979,0,0);-ms-transform:matrix(0.173700,-0.002258,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173700,-0.002258,0.003250,0.249979,0,0);}
.mee_c00205{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);}
.m3b_c00205{transform:matrix(0.174598,-0.002444,0.003500,0.249976,0,0);-ms-transform:matrix(0.174598,-0.002444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174598,-0.002444,0.003500,0.249976,0,0);}
.me2_c00205{transform:matrix(0.175075,-0.002626,0.003750,0.249972,0,0);-ms-transform:matrix(0.175075,-0.002626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175075,-0.002626,0.003750,0.249972,0,0);}
.m28_c00205{transform:matrix(0.175953,-0.003343,0.004749,0.249955,0,0);-ms-transform:matrix(0.175953,-0.003343,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175953,-0.003343,0.004749,0.249955,0,0);}
.m102_c00205{transform:matrix(0.176145,-0.002642,0.003750,0.249972,0,0);-ms-transform:matrix(0.176145,-0.002642,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176145,-0.002642,0.003750,0.249972,0,0);}
.m50_c00205{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);}
.m44_c00205{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);}
.ma3_c00205{transform:matrix(0.176487,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176487,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176487,-0.002118,0.003000,0.249982,0,0);}
.m36_c00205{transform:matrix(0.176493,-0.002471,0.003500,0.249976,0,0);-ms-transform:matrix(0.176493,-0.002471,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176493,-0.002471,0.003500,0.249976,0,0);}
.ma2_c00205{transform:matrix(0.177312,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177312,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177312,-0.002128,0.003000,0.249982,0,0);}
.m8c_c00205{transform:matrix(0.177420,-0.002306,0.003250,0.249979,0,0);-ms-transform:matrix(0.177420,-0.002306,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177420,-0.002306,0.003250,0.249979,0,0);}
.m23_c00205{transform:matrix(0.177488,-0.003372,0.004749,0.249955,0,0);-ms-transform:matrix(0.177488,-0.003372,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177488,-0.003372,0.004749,0.249955,0,0);}
.m30_c00205{transform:matrix(0.177873,-0.002490,0.003500,0.249976,0,0);-ms-transform:matrix(0.177873,-0.002490,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177873,-0.002490,0.003500,0.249976,0,0);}
.m18_c00205{transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);-ms-transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);}
.m92_c00205{transform:matrix(0.178065,-0.002315,0.003250,0.249979,0,0);-ms-transform:matrix(0.178065,-0.002315,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178065,-0.002315,0.003250,0.249979,0,0);}
.m78_c00205{transform:matrix(0.178265,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178265,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178265,-0.002674,0.003750,0.249972,0,0);}
.me7_c00205{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);}
.m7d_c00205{transform:matrix(0.180045,-0.002701,0.003750,0.249972,0,0);-ms-transform:matrix(0.180045,-0.002701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180045,-0.002701,0.003750,0.249972,0,0);}
.m6c_c00205{transform:matrix(0.180450,-0.002346,0.003250,0.249979,0,0);-ms-transform:matrix(0.180450,-0.002346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180450,-0.002346,0.003250,0.249979,0,0);}
.m65_c00205{transform:matrix(0.181250,-0.002356,0.003250,0.249979,0,0);-ms-transform:matrix(0.181250,-0.002356,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181250,-0.002356,0.003250,0.249979,0,0);}
.m11f_c00205{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);}
.meb_c00205{transform:matrix(0.181865,-0.002728,0.003750,0.249972,0,0);-ms-transform:matrix(0.181865,-0.002728,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181865,-0.002728,0.003750,0.249972,0,0);}
.m1d_c00205{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);}
.m10b_c00205{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);}
.m31_c00205{transform:matrix(0.183437,-0.002568,0.003500,0.249976,0,0);-ms-transform:matrix(0.183437,-0.002568,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183437,-0.002568,0.003500,0.249976,0,0);}
.m13_c00205{transform:matrix(0.183962,-0.003495,0.004749,0.249955,0,0);-ms-transform:matrix(0.183962,-0.003495,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183962,-0.003495,0.004749,0.249955,0,0);}
.m39_c00205{transform:matrix(0.184062,-0.002577,0.003500,0.249976,0,0);-ms-transform:matrix(0.184062,-0.002577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184062,-0.002577,0.003500,0.249976,0,0);}
.m37_c00205{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);}
.m11c_c00205{transform:matrix(0.184329,-0.002028,0.002750,0.249985,0,0);-ms-transform:matrix(0.184329,-0.002028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184329,-0.002028,0.002750,0.249985,0,0);}
.m32_c00205{transform:matrix(0.184882,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184882,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184882,-0.002588,0.003500,0.249976,0,0);}
.m53_c00205{transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-ms-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);}
.m9f_c00205{transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);}
.m1a_c00205{transform:matrix(0.185527,-0.003525,0.004749,0.249955,0,0);-ms-transform:matrix(0.185527,-0.003525,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185527,-0.003525,0.004749,0.249955,0,0);}
.m1b_c00205{transform:matrix(0.186231,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186231,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186231,-0.003538,0.004749,0.249955,0,0);}
.m62_c00205{transform:matrix(0.186564,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186564,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186564,-0.002425,0.003250,0.249979,0,0);}
.m11e_c00205{transform:matrix(0.187049,-0.002058,0.002750,0.249985,0,0);-ms-transform:matrix(0.187049,-0.002058,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187049,-0.002058,0.002750,0.249985,0,0);}
.mc0_c00205{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);}
.md1_c00205{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);}
.m97_c00205{transform:matrix(0.187402,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187402,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187402,-0.002249,0.003000,0.249982,0,0);}
.m67_c00205{transform:matrix(0.187449,-0.002437,0.003250,0.249979,0,0);-ms-transform:matrix(0.187449,-0.002437,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187449,-0.002437,0.003250,0.249979,0,0);}
.m9a_c00205{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);}
.m5a_c00205{transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);-ms-transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);}
.m41_c00205{transform:matrix(0.188200,-0.003388,0.004499,0.249960,0,0);-ms-transform:matrix(0.188200,-0.003388,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188200,-0.003388,0.004499,0.249960,0,0);}
.mba_c00205{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);}
.m85_c00205{transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);}
.m96_c00205{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);}
.m4b_c00205{transform:matrix(0.189351,-0.002651,0.003500,0.249976,0,0);-ms-transform:matrix(0.189351,-0.002651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189351,-0.002651,0.003500,0.249976,0,0);}
.m113_c00205{transform:matrix(0.190353,-0.002094,0.002750,0.249985,0,0);-ms-transform:matrix(0.190353,-0.002094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190353,-0.002094,0.002750,0.249985,0,0);}
.mb7_c00205{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);}
.m2b_c00205{transform:matrix(0.190816,-0.003625,0.004749,0.249955,0,0);-ms-transform:matrix(0.190816,-0.003625,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190816,-0.003625,0.004749,0.249955,0,0);}
.m71_c00205{transform:matrix(0.190999,-0.002483,0.003250,0.249979,0,0);-ms-transform:matrix(0.190999,-0.002483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190999,-0.002483,0.003250,0.249979,0,0);}
.mbc_c00205{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);}
.m7f_c00205{transform:matrix(0.191079,-0.002866,0.003750,0.249972,0,0);-ms-transform:matrix(0.191079,-0.002866,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191079,-0.002866,0.003750,0.249972,0,0);}
.mdc_c00205{transform:matrix(0.191633,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191633,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191633,-0.002875,0.003750,0.249972,0,0);}
.ma0_c00205{transform:matrix(0.191666,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191666,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191666,-0.002300,0.003000,0.249982,0,0);}
.m24_c00205{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);}
.m45_c00205{transform:matrix(0.191984,-0.003456,0.004499,0.249960,0,0);-ms-transform:matrix(0.191984,-0.003456,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191984,-0.003456,0.004499,0.249960,0,0);}
.m40_c00205{transform:matrix(0.192249,-0.003460,0.004499,0.249960,0,0);-ms-transform:matrix(0.192249,-0.003460,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192249,-0.003460,0.004499,0.249960,0,0);}
.mf0_c00205{transform:matrix(0.192953,-0.002894,0.003750,0.249972,0,0);-ms-transform:matrix(0.192953,-0.002894,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192953,-0.002894,0.003750,0.249972,0,0);}
.m76_c00205{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);}
.m112_c00205{transform:matrix(0.193308,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193308,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193308,-0.002126,0.002750,0.249985,0,0);}
.m3c_c00205{transform:matrix(0.193726,-0.002712,0.003500,0.249976,0,0);-ms-transform:matrix(0.193726,-0.002712,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193726,-0.002712,0.003500,0.249976,0,0);}
.m103_c00205{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);}
.m128_c00205{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);}
.m5e_c00205{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);}
.m11_c00205{transform:matrix(0.194485,-0.003695,0.004749,0.249955,0,0);-ms-transform:matrix(0.194485,-0.003695,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194485,-0.003695,0.004749,0.249955,0,0);}
.m2a_c00205{transform:matrix(0.194520,-0.003696,0.004749,0.249955,0,0);-ms-transform:matrix(0.194520,-0.003696,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194520,-0.003696,0.004749,0.249955,0,0);}
.m3f_c00205{transform:matrix(0.194653,-0.003504,0.004499,0.249960,0,0);-ms-transform:matrix(0.194653,-0.003504,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194653,-0.003504,0.004499,0.249960,0,0);}
.m10e_c00205{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);}
.mad_c00205{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);}
.mc3_c00205{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);}
.md5_c00205{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);}
.mb4_c00205{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);}
.mbb_c00205{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);}
.m111_c00205{transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);}
.mb3_c00205{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);}
.m2e_c00205{transform:matrix(0.196911,-0.002757,0.003500,0.249976,0,0);-ms-transform:matrix(0.196911,-0.002757,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196911,-0.002757,0.003500,0.249976,0,0);}
.m4c_c00205{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);}
.m68_c00205{transform:matrix(0.197713,-0.002570,0.003250,0.249979,0,0);-ms-transform:matrix(0.197713,-0.002570,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197713,-0.002570,0.003250,0.249979,0,0);}
.m90_c00205{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);}
.m6a_c00205{transform:matrix(0.198218,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198218,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198218,-0.002577,0.003250,0.249979,0,0);}
.m7b_c00205{transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);}
.m84_c00205{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);}
.m10a_c00205{transform:matrix(0.199553,-0.002993,0.003750,0.249972,0,0);-ms-transform:matrix(0.199553,-0.002993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199553,-0.002993,0.003750,0.249972,0,0);}
.md_c00205{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);}
.m58_c00205{transform:matrix(0.199853,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199853,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199853,-0.002598,0.003250,0.249979,0,0);}
.mbe_c00205{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);}
.mc4_c00205{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);}
.mbf_c00205{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);}
.mff_c00205{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);}
.m27_c00205{transform:matrix(0.200164,-0.003803,0.004749,0.249955,0,0);-ms-transform:matrix(0.200164,-0.003803,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200164,-0.003803,0.004749,0.249955,0,0);}
.m119_c00205{transform:matrix(0.200273,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200273,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200273,-0.002203,0.002750,0.249985,0,0);}
.m109_c00205{transform:matrix(0.200362,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200362,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200362,-0.003005,0.003750,0.249972,0,0);}
.m8a_c00205{transform:matrix(0.200605,-0.002808,0.003500,0.249976,0,0);-ms-transform:matrix(0.200605,-0.002808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200605,-0.002808,0.003500,0.249976,0,0);}
.mcc_c00205{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);}
.m5c_c00205{transform:matrix(0.201073,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201073,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201073,-0.002614,0.003250,0.249979,0,0);}
.m8e_c00205{transform:matrix(0.201218,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201218,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201218,-0.002616,0.003250,0.249979,0,0);}
.mca_c00205{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);}
.m8d_c00205{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);}
.mc2_c00205{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);}
.m60_c00205{transform:matrix(0.202883,-0.002637,0.003250,0.249979,0,0);-ms-transform:matrix(0.202883,-0.002637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202883,-0.002637,0.003250,0.249979,0,0);}
.mce_c00205{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);}
.me6_c00205{transform:matrix(0.203452,-0.003052,0.003750,0.249972,0,0);-ms-transform:matrix(0.203452,-0.003052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203452,-0.003052,0.003750,0.249972,0,0);}
.m114_c00205{transform:matrix(0.203578,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203578,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203578,-0.002239,0.002750,0.249985,0,0);}
.m4f_c00205{transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);}
.md4_c00205{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);}
.m131_c00205{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);}
.mcb_c00205{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);}
.mdf_c00205{transform:matrix(0.203947,-0.003059,0.003750,0.249972,0,0);-ms-transform:matrix(0.203947,-0.003059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203947,-0.003059,0.003750,0.249972,0,0);}
.m42_c00205{transform:matrix(0.203967,-0.003671,0.004499,0.249960,0,0);-ms-transform:matrix(0.203967,-0.003671,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203967,-0.003671,0.004499,0.249960,0,0);}
.m106_c00205{transform:matrix(0.204132,-0.003062,0.003750,0.249972,0,0);-ms-transform:matrix(0.204132,-0.003062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204132,-0.003062,0.003750,0.249972,0,0);}
.m8b_c00205{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);}
.m54_c00205{transform:matrix(0.204377,-0.003066,0.003750,0.249972,0,0);-ms-transform:matrix(0.204377,-0.003066,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204377,-0.003066,0.003750,0.249972,0,0);}
.m7a_c00205{transform:matrix(0.204432,-0.003066,0.003750,0.249972,0,0);-ms-transform:matrix(0.204432,-0.003066,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204432,-0.003066,0.003750,0.249972,0,0);}
.m66_c00205{transform:matrix(0.204518,-0.002659,0.003250,0.249979,0,0);-ms-transform:matrix(0.204518,-0.002659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204518,-0.002659,0.003250,0.249979,0,0);}
.m94_c00205{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);}
.m12d_c00205{transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);}
.m104_c00205{transform:matrix(0.205192,-0.003078,0.003750,0.249972,0,0);-ms-transform:matrix(0.205192,-0.003078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205192,-0.003078,0.003750,0.249972,0,0);}
.m52_c00205{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);}
.mf4_c00205{transform:matrix(0.205767,-0.003087,0.003750,0.249972,0,0);-ms-transform:matrix(0.205767,-0.003087,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205767,-0.003087,0.003750,0.249972,0,0);}
.ma1_c00205{transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);}
.m3e_c00205{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);}
.m63_c00205{transform:matrix(0.207137,-0.002693,0.003250,0.249979,0,0);-ms-transform:matrix(0.207137,-0.002693,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207137,-0.002693,0.003250,0.249979,0,0);}
.mfa_c00205{transform:matrix(0.208017,-0.003120,0.003750,0.249972,0,0);-ms-transform:matrix(0.208017,-0.003120,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208017,-0.003120,0.003750,0.249972,0,0);}
.m14_c00205{transform:matrix(0.208647,-0.003964,0.004749,0.249955,0,0);-ms-transform:matrix(0.208647,-0.003964,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208647,-0.003964,0.004749,0.249955,0,0);}
.md7_c00205{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);}
.m34_c00205{transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);-ms-transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);}
.m100_c00205{transform:matrix(0.210031,-0.003150,0.003750,0.249972,0,0);-ms-transform:matrix(0.210031,-0.003150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210031,-0.003150,0.003750,0.249972,0,0);}
.m6d_c00205{transform:matrix(0.210632,-0.002738,0.003250,0.249979,0,0);-ms-transform:matrix(0.210632,-0.002738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210632,-0.002738,0.003250,0.249979,0,0);}
.mcd_c00205{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);}
.m9d_c00205{transform:matrix(0.210995,-0.002532,0.003000,0.249982,0,0);-ms-transform:matrix(0.210995,-0.002532,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210995,-0.002532,0.003000,0.249982,0,0);}
.m11a_c00205{transform:matrix(0.211397,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211397,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211397,-0.002325,0.002750,0.249985,0,0);}
.m9e_c00205{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);}
.m15_c00205{transform:matrix(0.212842,-0.004044,0.004749,0.249955,0,0);-ms-transform:matrix(0.212842,-0.004044,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212842,-0.004044,0.004749,0.249955,0,0);}
.me1_c00205{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);}
.m105_c00205{transform:matrix(0.213571,-0.003204,0.003750,0.249972,0,0);-ms-transform:matrix(0.213571,-0.003204,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213571,-0.003204,0.003750,0.249972,0,0);}
.mc7_c00205{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);}
.m2d_c00205{transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);}
.md2_c00205{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);}
.m9b_c00205{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);}
.m88_c00205{transform:matrix(0.216039,-0.003025,0.003500,0.249976,0,0);-ms-transform:matrix(0.216039,-0.003025,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216039,-0.003025,0.003500,0.249976,0,0);}
.mb6_c00205{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);}
.m116_c00205{transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);}
.me3_c00205{transform:matrix(0.216621,-0.003249,0.003750,0.249972,0,0);-ms-transform:matrix(0.216621,-0.003249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216621,-0.003249,0.003750,0.249972,0,0);}
.m56_c00205{transform:matrix(0.219491,-0.002853,0.003250,0.249979,0,0);-ms-transform:matrix(0.219491,-0.002853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219491,-0.002853,0.003250,0.249979,0,0);}
.m12e_c00205{transform:matrix(0.219702,-0.002417,0.002750,0.249985,0,0);-ms-transform:matrix(0.219702,-0.002417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219702,-0.002417,0.002750,0.249985,0,0);}
.m48_c00205{transform:matrix(0.219943,-0.003079,0.003500,0.249976,0,0);-ms-transform:matrix(0.219943,-0.003079,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219943,-0.003079,0.003500,0.249976,0,0);}
.m26_c00205{transform:matrix(0.220360,-0.004187,0.004749,0.249955,0,0);-ms-transform:matrix(0.220360,-0.004187,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220360,-0.004187,0.004749,0.249955,0,0);}
.mf5_c00205{transform:matrix(0.220385,-0.003306,0.003750,0.249972,0,0);-ms-transform:matrix(0.220385,-0.003306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220385,-0.003306,0.003750,0.249972,0,0);}
.mf8_c00205{transform:matrix(0.220465,-0.003307,0.003750,0.249972,0,0);-ms-transform:matrix(0.220465,-0.003307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220465,-0.003307,0.003750,0.249972,0,0);}
.md9_c00205{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);}
.m10c_c00205{transform:matrix(0.220570,-0.003309,0.003750,0.249972,0,0);-ms-transform:matrix(0.220570,-0.003309,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220570,-0.003309,0.003750,0.249972,0,0);}
.m125_c00205{transform:matrix(0.220707,-0.002428,0.002750,0.249985,0,0);-ms-transform:matrix(0.220707,-0.002428,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220707,-0.002428,0.002750,0.249985,0,0);}
.m12b_c00205{transform:matrix(0.220972,-0.002431,0.002750,0.249985,0,0);-ms-transform:matrix(0.220972,-0.002431,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220972,-0.002431,0.002750,0.249985,0,0);}
.mfb_c00205{transform:matrix(0.221155,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221155,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221155,-0.003317,0.003750,0.249972,0,0);}
.m108_c00205{transform:matrix(0.221355,-0.003320,0.003750,0.249972,0,0);-ms-transform:matrix(0.221355,-0.003320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221355,-0.003320,0.003750,0.249972,0,0);}
.mf3_c00205{transform:matrix(0.221380,-0.003321,0.003750,0.249972,0,0);-ms-transform:matrix(0.221380,-0.003321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221380,-0.003321,0.003750,0.249972,0,0);}
.m12f_c00205{transform:matrix(0.223161,-0.002455,0.002750,0.249985,0,0);-ms-transform:matrix(0.223161,-0.002455,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223161,-0.002455,0.002750,0.249985,0,0);}
.m69_c00205{transform:matrix(0.223556,-0.002906,0.003250,0.249979,0,0);-ms-transform:matrix(0.223556,-0.002906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223556,-0.002906,0.003250,0.249979,0,0);}
.m126_c00205{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);}
.mf2_c00205{transform:matrix(0.224385,-0.003366,0.003750,0.249972,0,0);-ms-transform:matrix(0.224385,-0.003366,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224385,-0.003366,0.003750,0.249972,0,0);}
.m127_c00205{transform:matrix(0.224616,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224616,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224616,-0.002471,0.002750,0.249985,0,0);}
.me9_c00205{transform:matrix(0.225060,-0.003376,0.003750,0.249972,0,0);-ms-transform:matrix(0.225060,-0.003376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225060,-0.003376,0.003750,0.249972,0,0);}
.md6_c00205{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);}
.m55_c00205{transform:matrix(0.225385,-0.003381,0.003750,0.249972,0,0);-ms-transform:matrix(0.225385,-0.003381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225385,-0.003381,0.003750,0.249972,0,0);}
.m11b_c00205{transform:matrix(0.225441,-0.002480,0.002750,0.249985,0,0);-ms-transform:matrix(0.225441,-0.002480,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225441,-0.002480,0.002750,0.249985,0,0);}
.mea_c00205{transform:matrix(0.225545,-0.003383,0.003750,0.249972,0,0);-ms-transform:matrix(0.225545,-0.003383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225545,-0.003383,0.003750,0.249972,0,0);}
.m25_c00205{transform:matrix(0.225874,-0.004292,0.004749,0.249955,0,0);-ms-transform:matrix(0.225874,-0.004292,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225874,-0.004292,0.004749,0.249955,0,0);}
.m61_c00205{transform:matrix(0.226091,-0.002939,0.003250,0.249979,0,0);-ms-transform:matrix(0.226091,-0.002939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226091,-0.002939,0.003250,0.249979,0,0);}
.mb1_c00205{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);}
.med_c00205{transform:matrix(0.228049,-0.003421,0.003750,0.249972,0,0);-ms-transform:matrix(0.228049,-0.003421,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228049,-0.003421,0.003750,0.249972,0,0);}
.m33_c00205{transform:matrix(0.229343,-0.003211,0.003500,0.249976,0,0);-ms-transform:matrix(0.229343,-0.003211,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229343,-0.003211,0.003500,0.249976,0,0);}
.m29_c00205{transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);-ms-transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);}
.mc8_c00205{transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.230492,-0.003227,0.003500,0.249976,0,0);-ms-transform:matrix(0.230492,-0.003227,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230492,-0.003227,0.003500,0.249976,0,0);}
.m5d_c00205{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);}
.ma9_c00205{transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);}
.maf_c00205{transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);-ms-transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);}
.m124_c00205{transform:matrix(0.233276,-0.002566,0.002750,0.249985,0,0);-ms-transform:matrix(0.233276,-0.002566,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233276,-0.002566,0.002750,0.249985,0,0);}
.mc5_c00205{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);}
.m10d_c00205{transform:matrix(0.234389,-0.003516,0.003750,0.249972,0,0);-ms-transform:matrix(0.234389,-0.003516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234389,-0.003516,0.003750,0.249972,0,0);}
.m8_c00205{transform:matrix(0.234907,-0.007282,0.007746,0.249880,0,0);-ms-transform:matrix(0.234907,-0.007282,0.007746,0.249880,0,0);-webkit-transform:matrix(0.234907,-0.007282,0.007746,0.249880,0,0);}
.m101_c00205{transform:matrix(0.234929,-0.003524,0.003750,0.249972,0,0);-ms-transform:matrix(0.234929,-0.003524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234929,-0.003524,0.003750,0.249972,0,0);}
.m3a_c00205{transform:matrix(0.235042,-0.003291,0.003500,0.249976,0,0);-ms-transform:matrix(0.235042,-0.003291,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235042,-0.003291,0.003500,0.249976,0,0);}
.m57_c00205{transform:matrix(0.236860,-0.003079,0.003250,0.249979,0,0);-ms-transform:matrix(0.236860,-0.003079,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236860,-0.003079,0.003250,0.249979,0,0);}
.m8f_c00205{transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);-ms-transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);}
.me0_c00205{transform:matrix(0.237753,-0.003566,0.003750,0.249972,0,0);-ms-transform:matrix(0.237753,-0.003566,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237753,-0.003566,0.003750,0.249972,0,0);}
.me8_c00205{transform:matrix(0.238748,-0.003581,0.003750,0.249972,0,0);-ms-transform:matrix(0.238748,-0.003581,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238748,-0.003581,0.003750,0.249972,0,0);}
.m2c_c00205{transform:matrix(0.238907,-0.004539,0.004749,0.249955,0,0);-ms-transform:matrix(0.238907,-0.004539,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238907,-0.004539,0.004749,0.249955,0,0);}
.mdb_c00205{transform:matrix(0.239948,-0.003599,0.003750,0.249972,0,0);-ms-transform:matrix(0.239948,-0.003599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239948,-0.003599,0.003750,0.249972,0,0);}
.mec_c00205{transform:matrix(0.240343,-0.003605,0.003750,0.249972,0,0);-ms-transform:matrix(0.240343,-0.003605,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240343,-0.003605,0.003750,0.249972,0,0);}
.m81_c00205{transform:matrix(0.240636,-0.003369,0.003500,0.249976,0,0);-ms-transform:matrix(0.240636,-0.003369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240636,-0.003369,0.003500,0.249976,0,0);}
.m46_c00205{transform:matrix(0.241411,-0.003380,0.003500,0.249976,0,0);-ms-transform:matrix(0.241411,-0.003380,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241411,-0.003380,0.003500,0.249976,0,0);}
.m73_c00205{transform:matrix(0.241500,-0.003139,0.003250,0.249979,0,0);-ms-transform:matrix(0.241500,-0.003139,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241500,-0.003139,0.003250,0.249979,0,0);}
.m22_c00205{transform:matrix(0.242426,-0.004606,0.004749,0.249955,0,0);-ms-transform:matrix(0.242426,-0.004606,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242426,-0.004606,0.004749,0.249955,0,0);}
.m5f_c00205{transform:matrix(0.243459,-0.003165,0.003250,0.249979,0,0);-ms-transform:matrix(0.243459,-0.003165,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243459,-0.003165,0.003250,0.249979,0,0);}
.mb2_c00205{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.245976,-0.003444,0.003500,0.249976,0,0);-ms-transform:matrix(0.245976,-0.003444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245976,-0.003444,0.003500,0.249976,0,0);}
.m51_c00205{transform:matrix(0.247132,-0.003707,0.003750,0.249972,0,0);-ms-transform:matrix(0.247132,-0.003707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247132,-0.003707,0.003750,0.249972,0,0);}
.m12a_c00205{transform:matrix(0.247230,-0.002720,0.002750,0.249985,0,0);-ms-transform:matrix(0.247230,-0.002720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247230,-0.002720,0.002750,0.249985,0,0);}
.m47_c00205{transform:matrix(0.247706,-0.003468,0.003500,0.249976,0,0);-ms-transform:matrix(0.247706,-0.003468,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247706,-0.003468,0.003500,0.249976,0,0);}
.me4_c00205{transform:matrix(0.250622,-0.003759,0.003750,0.249972,0,0);-ms-transform:matrix(0.250622,-0.003759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250622,-0.003759,0.003750,0.249972,0,0);}
.mb5_c00205{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.251899,-0.007809,0.007746,0.249880,0,0);-ms-transform:matrix(0.251899,-0.007809,0.007746,0.249880,0,0);-webkit-transform:matrix(0.251899,-0.007809,0.007746,0.249880,0,0);}
.mc_c00205{transform:matrix(0.252191,-0.007061,0.006997,0.249902,0,0);-ms-transform:matrix(0.252191,-0.007061,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252191,-0.007061,0.006997,0.249902,0,0);}
.m107_c00205{transform:matrix(0.252947,-0.003794,0.003750,0.249972,0,0);-ms-transform:matrix(0.252947,-0.003794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252947,-0.003794,0.003750,0.249972,0,0);}
.m121_c00205{transform:matrix(0.256994,-0.002827,0.002750,0.249985,0,0);-ms-transform:matrix(0.256994,-0.002827,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256994,-0.002827,0.002750,0.249985,0,0);}
.mb8_c00205{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.259673,-0.007271,0.006997,0.249902,0,0);-ms-transform:matrix(0.259673,-0.007271,0.006997,0.249902,0,0);-webkit-transform:matrix(0.259673,-0.007271,0.006997,0.249902,0,0);}
.mf1_c00205{transform:matrix(0.260516,-0.003908,0.003750,0.249972,0,0);-ms-transform:matrix(0.260516,-0.003908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260516,-0.003908,0.003750,0.249972,0,0);}
.mfd_c00205{transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-ms-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);}
.m130_c00205{transform:matrix(0.263684,-0.002901,0.002750,0.249985,0,0);-ms-transform:matrix(0.263684,-0.002901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263684,-0.002901,0.002750,0.249985,0,0);}
.m9c_c00205{transform:matrix(0.263891,-0.003167,0.003000,0.249982,0,0);-ms-transform:matrix(0.263891,-0.003167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263891,-0.003167,0.003000,0.249982,0,0);}
.m93_c00205{transform:matrix(0.267026,-0.003204,0.003000,0.249982,0,0);-ms-transform:matrix(0.267026,-0.003204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267026,-0.003204,0.003000,0.249982,0,0);}
.m3_c00205{transform:matrix(0.267327,-0.008287,0.007746,0.249880,0,0);-ms-transform:matrix(0.267327,-0.008287,0.007746,0.249880,0,0);-webkit-transform:matrix(0.267327,-0.008287,0.007746,0.249880,0,0);}
.m74_c00205{transform:matrix(0.270612,-0.003518,0.003250,0.249979,0,0);-ms-transform:matrix(0.270612,-0.003518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270612,-0.003518,0.003250,0.249979,0,0);}
.m12_c00205{transform:matrix(0.272406,-0.005176,0.004749,0.249955,0,0);-ms-transform:matrix(0.272406,-0.005176,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272406,-0.005176,0.004749,0.249955,0,0);}
.mf_c00205{transform:matrix(0.272523,-0.007631,0.006997,0.249902,0,0);-ms-transform:matrix(0.272523,-0.007631,0.006997,0.249902,0,0);-webkit-transform:matrix(0.272523,-0.007631,0.006997,0.249902,0,0);}
.m122_c00205{transform:matrix(0.273813,-0.003012,0.002750,0.249985,0,0);-ms-transform:matrix(0.273813,-0.003012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273813,-0.003012,0.002750,0.249985,0,0);}
.mf9_c00205{transform:matrix(0.277274,-0.004159,0.003750,0.249972,0,0);-ms-transform:matrix(0.277274,-0.004159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277274,-0.004159,0.003750,0.249972,0,0);}
.m72_c00205{transform:matrix(0.277932,-0.003613,0.003250,0.249979,0,0);-ms-transform:matrix(0.277932,-0.003613,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277932,-0.003613,0.003250,0.249979,0,0);}
.mde_c00205{transform:matrix(0.278144,-0.004172,0.003750,0.249972,0,0);-ms-transform:matrix(0.278144,-0.004172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278144,-0.004172,0.003750,0.249972,0,0);}
.m4a_c00205{transform:matrix(0.281147,-0.003936,0.003500,0.249976,0,0);-ms-transform:matrix(0.281147,-0.003936,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281147,-0.003936,0.003500,0.249976,0,0);}
.m89_c00205{transform:matrix(0.284587,-0.003984,0.003500,0.249976,0,0);-ms-transform:matrix(0.284587,-0.003984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284587,-0.003984,0.003500,0.249976,0,0);}
.m5_c00205{transform:matrix(0.293189,-0.009089,0.007746,0.249880,0,0);-ms-transform:matrix(0.293189,-0.009089,0.007746,0.249880,0,0);-webkit-transform:matrix(0.293189,-0.009089,0.007746,0.249880,0,0);}
.ma7_c00205{transform:matrix(0.296370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296370,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.301461,-0.004522,0.003750,0.249972,0,0);-ms-transform:matrix(0.301461,-0.004522,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301461,-0.004522,0.003750,0.249972,0,0);}
.m17_c00205{transform:matrix(0.302865,-0.005754,0.004749,0.249955,0,0);-ms-transform:matrix(0.302865,-0.005754,0.004749,0.249955,0,0);-webkit-transform:matrix(0.302865,-0.005754,0.004749,0.249955,0,0);}
.ma8_c00205{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.320136,-0.009924,0.007746,0.249880,0,0);-ms-transform:matrix(0.320136,-0.009924,0.007746,0.249880,0,0);-webkit-transform:matrix(0.320136,-0.009924,0.007746,0.249880,0,0);}
.md8_c00205{transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321540,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.322328,-0.004513,0.003500,0.249976,0,0);-ms-transform:matrix(0.322328,-0.004513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.322328,-0.004513,0.003500,0.249976,0,0);}
.mb0_c00205{transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331420,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.333336,-0.004000,0.003000,0.249982,0,0);-ms-transform:matrix(0.333336,-0.004000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333336,-0.004000,0.003000,0.249982,0,0);}
.ma6_c00205{transform:matrix(0.333365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333365,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.337518,-0.010463,0.007746,0.249880,0,0);-ms-transform:matrix(0.337518,-0.010463,0.007746,0.249880,0,0);-webkit-transform:matrix(0.337518,-0.010463,0.007746,0.249880,0,0);}
.m1_c00205{transform:matrix(0.353850,-0.010969,0.007746,0.249880,0,0);-ms-transform:matrix(0.353850,-0.010969,0.007746,0.249880,0,0);-webkit-transform:matrix(0.353850,-0.010969,0.007746,0.249880,0,0);}
.m2_c00205{transform:matrix(0.359962,-0.011159,0.007746,0.249880,0,0);-ms-transform:matrix(0.359962,-0.011159,0.007746,0.249880,0,0);-webkit-transform:matrix(0.359962,-0.011159,0.007746,0.249880,0,0);}
.m123_c00205{transform:matrix(0.366763,-0.004034,0.002750,0.249985,0,0);-ms-transform:matrix(0.366763,-0.004034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.366763,-0.004034,0.002750,0.249985,0,0);}
.mda_c00205{transform:matrix(0.377837,-0.005668,0.003750,0.249972,0,0);-ms-transform:matrix(0.377837,-0.005668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.377837,-0.005668,0.003750,0.249972,0,0);}
.m110_c00205{transform:matrix(0.384872,-0.004234,0.002750,0.249985,0,0);-ms-transform:matrix(0.384872,-0.004234,0.002750,0.249985,0,0);-webkit-transform:matrix(0.384872,-0.004234,0.002750,0.249985,0,0);}
.mb_c00205{transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407115,0.000000,0.000000,0.250000,0,0);}
.me5_c00205{transform:matrix(0.415748,-0.006236,0.003750,0.249972,0,0);-ms-transform:matrix(0.415748,-0.006236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.415748,-0.006236,0.003750,0.249972,0,0);}
.m0_c00205{transform:matrix(0.420813,-0.013045,0.007746,0.249880,0,0);-ms-transform:matrix(0.420813,-0.013045,0.007746,0.249880,0,0);-webkit-transform:matrix(0.420813,-0.013045,0.007746,0.249880,0,0);}
.me_c00205{transform:matrix(0.456346,-0.012778,0.006997,0.249902,0,0);-ms-transform:matrix(0.456346,-0.012778,0.006997,0.249902,0,0);-webkit-transform:matrix(0.456346,-0.012778,0.006997,0.249902,0,0);}
.mdd_c00205{transform:matrix(0.468417,-0.007026,0.003750,0.249972,0,0);-ms-transform:matrix(0.468417,-0.007026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.468417,-0.007026,0.003750,0.249972,0,0);}
.m7_c00205{transform:matrix(0.475562,-0.014742,0.007746,0.249880,0,0);-ms-transform:matrix(0.475562,-0.014742,0.007746,0.249880,0,0);-webkit-transform:matrix(0.475562,-0.014742,0.007746,0.249880,0,0);}
.mc1_c00205{transform:matrix(0.667495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667495,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.869427,-0.026952,0.007746,0.249880,0,0);-ms-transform:matrix(0.869427,-0.026952,0.007746,0.249880,0,0);-webkit-transform:matrix(0.869427,-0.026952,0.007746,0.249880,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;}
.fs13_c00205{font-size:26.250000px;}
.fs17_c00205{font-size:44.100000px;}
.fs15_c00205{font-size:47.250000px;}
.fs1b_c00205{font-size:48.305433px;}
.fs16_c00205{font-size:49.350000px;}
.fs14_c00205{font-size:50.400000px;}
.fs1c_c00205{font-size:50.403049px;}
.fs1d_c00205{font-size:51.453113px;}
.fs1a_c00205{font-size:51.455788px;}
.fsd_c00205{font-size:60.905146px;}
.fsa_c00205{font-size:60.905968px;}
.fs18_c00205{font-size:63.000000px;}
.fs6_c00205{font-size:65.111749px;}
.fsb_c00205{font-size:66.157441px;}
.fs12_c00205{font-size:67.204838px;}
.fs8_c00205{font-size:67.206585px;}
.fs19_c00205{font-size:69.300000px;}
.fs11_c00205{font-size:69.304989px;}
.fse_c00205{font-size:69.305856px;}
.fs9_c00205{font-size:69.311226px;}
.fsc_c00205{font-size:70.355944px;}
.fs7_c00205{font-size:70.356894px;}
.fs10_c00205{font-size:71.406997px;}
.fsf_c00205{font-size:73.508268px;}
.fs4_c00205{font-size:73.513266px;}
.fs0_c00205{font-size:73.535308px;}
.fs5_c00205{font-size:74.563455px;}
.fs3_c00205{font-size:92.436214px;}
.fs2_c00205{font-size:124.950000px;}
.fs1_c00205{font-size:135.515068px;}
.y0_c00205{bottom:0.000000px;}
.yfd_c00205{bottom:179.280633px;}
.yfe_c00205{bottom:179.592566px;}
.yff_c00205{bottom:179.865327px;}
.y100_c00205{bottom:180.260766px;}
.y101_c00205{bottom:180.385374px;}
.y102_c00205{bottom:181.115912px;}
.y103_c00205{bottom:181.181252px;}
.y104_c00205{bottom:181.460250px;}
.y105_c00205{bottom:181.828827px;}
.y106_c00205{bottom:181.997969px;}
.y107_c00205{bottom:182.279805px;}
.y108_c00205{bottom:182.348511px;}
.y109_c00205{bottom:182.698988px;}
.y10a_c00205{bottom:183.155955px;}
.y10b_c00205{bottom:183.319355px;}
.y10c_c00205{bottom:183.575253px;}
.y10d_c00205{bottom:183.798020px;}
.y10e_c00205{bottom:184.216790px;}
.y10f_c00205{bottom:184.383357px;}
.yea_c00205{bottom:197.371500px;}
.yeb_c00205{bottom:197.723659px;}
.yec_c00205{bottom:197.837427px;}
.yed_c00205{bottom:197.970978px;}
.yee_c00205{bottom:198.140384px;}
.yef_c00205{bottom:198.526533px;}
.yf0_c00205{bottom:198.805763px;}
.yf1_c00205{bottom:199.066908px;}
.yf2_c00205{bottom:199.360988px;}
.yf3_c00205{bottom:199.646256px;}
.yf4_c00205{bottom:200.007078px;}
.yf5_c00205{bottom:200.106623px;}
.yf6_c00205{bottom:200.320545px;}
.yf7_c00205{bottom:200.813598px;}
.yf8_c00205{bottom:201.009602px;}
.yf9_c00205{bottom:201.502688px;}
.yfa_c00205{bottom:201.944805px;}
.yfb_c00205{bottom:202.125991px;}
.yfc_c00205{bottom:202.346118px;}
.yda_c00205{bottom:214.647330px;}
.ydb_c00205{bottom:215.175975px;}
.ydc_c00205{bottom:215.596890px;}
.ydd_c00205{bottom:215.810888px;}
.yde_c00205{bottom:216.407677px;}
.ydf_c00205{bottom:216.740220px;}
.ye0_c00205{bottom:216.856538px;}
.ye1_c00205{bottom:217.419742px;}
.ye2_c00205{bottom:217.560000px;}
.ye3_c00205{bottom:218.308118px;}
.ye4_c00205{bottom:218.569987px;}
.ye5_c00205{bottom:218.948865px;}
.ye6_c00205{bottom:219.215528px;}
.ye7_c00205{bottom:219.872858px;}
.ye8_c00205{bottom:220.264778px;}
.ye9_c00205{bottom:220.562280px;}
.yc9_c00205{bottom:232.738440px;}
.yca_c00205{bottom:233.302732px;}
.ycb_c00205{bottom:233.597025px;}
.ycc_c00205{bottom:233.861633px;}
.ycd_c00205{bottom:234.268298px;}
.yce_c00205{bottom:234.405120px;}
.ycf_c00205{bottom:234.957330px;}
.yd0_c00205{bottom:235.078447px;}
.yd1_c00205{bottom:235.287285px;}
.yd2_c00205{bottom:235.581442px;}
.yd3_c00205{bottom:235.893180px;}
.yd4_c00205{bottom:236.033588px;}
.yd5_c00205{bottom:236.431103px;}
.yd6_c00205{bottom:236.701950px;}
.yd7_c00205{bottom:236.852843px;}
.yd8_c00205{bottom:237.520103px;}
.yd9_c00205{bottom:238.739498px;}
.yb6_c00205{bottom:248.671500px;}
.yb7_c00205{bottom:249.669015px;}
.yb8_c00205{bottom:249.924188px;}
.yb9_c00205{bottom:250.341473px;}
.yba_c00205{bottom:250.908653px;}
.ybb_c00205{bottom:251.236433px;}
.ybc_c00205{bottom:251.653425px;}
.ybd_c00205{bottom:251.771887px;}
.ybe_c00205{bottom:252.196125px;}
.ybf_c00205{bottom:252.543772px;}
.yc0_c00205{bottom:253.189658px;}
.yc1_c00205{bottom:253.625978px;}
.yc2_c00205{bottom:254.087745px;}
.yc3_c00205{bottom:254.585895px;}
.yc4_c00205{bottom:255.023318px;}
.yc5_c00205{bottom:255.225908px;}
.yc6_c00205{bottom:255.990592px;}
.yc7_c00205{bottom:256.282350px;}
.yc8_c00205{bottom:257.077522px;}
.yb5_c00205{bottom:272.970000px;}
.yb4_c00205{bottom:286.200000px;}
.yb3_c00205{bottom:310.096500px;}
.yb2_c00205{bottom:328.345500px;}
.yb1_c00205{bottom:345.931500px;}
.yac_c00205{bottom:360.991500px;}
.yad_c00205{bottom:363.231000px;}
.yae_c00205{bottom:363.652500px;}
.yaf_c00205{bottom:364.156500px;}
.yb0_c00205{bottom:364.455000px;}
.yab_c00205{bottom:381.903000px;}
.yaa_c00205{bottom:399.721500px;}
.ya9_c00205{bottom:417.679500px;}
.ya8_c00205{bottom:435.369000px;}
.ya7_c00205{bottom:455.220000px;}
.y9d_c00205{bottom:467.908974px;}
.y9e_c00205{bottom:468.329928px;}
.y9f_c00205{bottom:469.279872px;}
.ya0_c00205{bottom:469.392492px;}
.ya1_c00205{bottom:469.742754px;}
.ya2_c00205{bottom:470.073006px;}
.ya3_c00205{bottom:470.304600px;}
.ya4_c00205{bottom:470.762100px;}
.ya5_c00205{bottom:471.506832px;}
.ya6_c00205{bottom:472.861650px;}
.y94_c00205{bottom:490.861500px;}
.y95_c00205{bottom:491.068770px;}
.y96_c00205{bottom:491.622648px;}
.y97_c00205{bottom:492.205956px;}
.y98_c00205{bottom:492.799146px;}
.y99_c00205{bottom:493.816542px;}
.y9a_c00205{bottom:494.114406px;}
.y9b_c00205{bottom:494.635884px;}
.y9c_c00205{bottom:495.287430px;}
.y8c_c00205{bottom:513.271500px;}
.y8d_c00205{bottom:513.805664px;}
.y8e_c00205{bottom:514.580769px;}
.y8f_c00205{bottom:514.921492px;}
.y90_c00205{bottom:515.584726px;}
.y91_c00205{bottom:515.886060px;}
.y92_c00205{bottom:516.395107px;}
.y93_c00205{bottom:516.638097px;}
.y82_c00205{bottom:535.683000px;}
.y83_c00205{bottom:536.045943px;}
.y84_c00205{bottom:536.458824px;}
.y85_c00205{bottom:536.880504px;}
.y86_c00205{bottom:537.433539px;}
.y87_c00205{bottom:538.366947px;}
.y88_c00205{bottom:538.677096px;}
.y89_c00205{bottom:539.070237px;}
.y8a_c00205{bottom:539.433075px;}
.y8b_c00205{bottom:539.863428px;}
.y79_c00205{bottom:558.633000px;}
.y7a_c00205{bottom:559.249207px;}
.y7b_c00205{bottom:559.819717px;}
.y7c_c00205{bottom:560.112195px;}
.y7d_c00205{bottom:560.926087px;}
.y7e_c00205{bottom:561.221828px;}
.y7f_c00205{bottom:561.756855px;}
.y80_c00205{bottom:562.336433px;}
.y81_c00205{bottom:562.630845px;}
.y6e_c00205{bottom:581.851500px;}
.y6f_c00205{bottom:582.191346px;}
.y70_c00205{bottom:582.500830px;}
.y71_c00205{bottom:582.746608px;}
.y72_c00205{bottom:583.082905px;}
.y73_c00205{bottom:583.796605px;}
.y74_c00205{bottom:584.048760px;}
.y75_c00205{bottom:584.737168px;}
.y76_c00205{bottom:585.221002px;}
.y77_c00205{bottom:585.715737px;}
.y78_c00205{bottom:586.123638px;}
.y66_c00205{bottom:603.991500px;}
.y67_c00205{bottom:604.721424px;}
.y68_c00205{bottom:605.230608px;}
.y69_c00205{bottom:605.929215px;}
.y6a_c00205{bottom:606.768086px;}
.y6b_c00205{bottom:607.021098px;}
.y6c_c00205{bottom:607.890817px;}
.y6d_c00205{bottom:608.302229px;}
.y5e_c00205{bottom:627.481500px;}
.y5f_c00205{bottom:628.607469px;}
.y60_c00205{bottom:629.035611px;}
.y61_c00205{bottom:629.850769px;}
.y62_c00205{bottom:630.426448px;}
.y63_c00205{bottom:630.654715px;}
.y64_c00205{bottom:630.908098px;}
.y65_c00205{bottom:631.316584px;}
.y57_c00205{bottom:650.161500px;}
.y58_c00205{bottom:650.597169px;}
.y59_c00205{bottom:651.313384px;}
.y5a_c00205{bottom:652.157344px;}
.y5b_c00205{bottom:652.400373px;}
.y5c_c00205{bottom:652.717248px;}
.y5d_c00205{bottom:653.420048px;}
.y4f_c00205{bottom:672.303000px;}
.y50_c00205{bottom:673.307288px;}
.y51_c00205{bottom:674.218672px;}
.y52_c00205{bottom:674.757390px;}
.y53_c00205{bottom:675.595718px;}
.y54_c00205{bottom:675.895328px;}
.y55_c00205{bottom:676.640865px;}
.y56_c00205{bottom:677.240378px;}
.y47_c00205{bottom:694.983000px;}
.y48_c00205{bottom:695.693682px;}
.y49_c00205{bottom:696.408144px;}
.y4a_c00205{bottom:696.956727px;}
.y4b_c00205{bottom:697.814913px;}
.y4c_c00205{bottom:698.116179px;}
.y4d_c00205{bottom:698.434203px;}
.y4e_c00205{bottom:699.284241px;}
.y40_c00205{bottom:717.394500px;}
.y41_c00205{bottom:717.744717px;}
.y42_c00205{bottom:718.109757px;}
.y43_c00205{bottom:719.052543px;}
.y44_c00205{bottom:719.810217px;}
.y45_c00205{bottom:720.660663px;}
.y46_c00205{bottom:721.729944px;}
.y37_c00205{bottom:740.883000px;}
.y38_c00205{bottom:741.132291px;}
.y39_c00205{bottom:741.434334px;}
.y3a_c00205{bottom:741.748893px;}
.y3b_c00205{bottom:742.384080px;}
.y3c_c00205{bottom:742.882998px;}
.y3d_c00205{bottom:743.559555px;}
.y3e_c00205{bottom:744.569025px;}
.y3f_c00205{bottom:744.856431px;}
.y2e_c00205{bottom:763.833000px;}
.y2f_c00205{bottom:764.198883px;}
.y30_c00205{bottom:764.604372px;}
.y31_c00205{bottom:765.058245px;}
.y32_c00205{bottom:765.753534px;}
.y33_c00205{bottom:766.112550px;}
.y34_c00205{bottom:766.660923px;}
.y35_c00205{bottom:766.986024px;}
.y36_c00205{bottom:767.925774px;}
.y23_c00205{bottom:785.696074px;}
.y24_c00205{bottom:786.132795px;}
.y25_c00205{bottom:786.674080px;}
.y26_c00205{bottom:787.541422px;}
.y27_c00205{bottom:788.070111px;}
.y28_c00205{bottom:788.983095px;}
.y29_c00205{bottom:789.473523px;}
.y2a_c00205{bottom:790.038684px;}
.y2b_c00205{bottom:790.700772px;}
.y2c_c00205{bottom:791.356893px;}
.y2d_c00205{bottom:791.981500px;}
.y1b_c00205{bottom:808.651471px;}
.y1c_c00205{bottom:809.728686px;}
.y1d_c00205{bottom:810.024801px;}
.y1e_c00205{bottom:810.426708px;}
.y1f_c00205{bottom:811.748737px;}
.y20_c00205{bottom:812.279464px;}
.y21_c00205{bottom:813.390622px;}
.y22_c00205{bottom:813.869764px;}
.y12_c00205{bottom:830.797500px;}
.y13_c00205{bottom:831.451489px;}
.y14_c00205{bottom:831.992391px;}
.y15_c00205{bottom:832.999894px;}
.y16_c00205{bottom:833.716156px;}
.y17_c00205{bottom:833.940480px;}
.y18_c00205{bottom:834.536814px;}
.y19_c00205{bottom:834.725712px;}
.y1a_c00205{bottom:836.150341px;}
.yd_c00205{bottom:875.353500px;}
.ye_c00205{bottom:877.667448px;}
.yf_c00205{bottom:879.051642px;}
.y10_c00205{bottom:881.660094px;}
.y11_c00205{bottom:883.536192px;}
.yc_c00205{bottom:898.152000px;}
.y8_c00205{bottom:918.543810px;}
.y9_c00205{bottom:921.278448px;}
.ya_c00205{bottom:922.768312px;}
.yb_c00205{bottom:924.025348px;}
.y1_c00205{bottom:932.863500px;}
.y2_c00205{bottom:936.087763px;}
.y3_c00205{bottom:937.761717px;}
.y4_c00205{bottom:939.712299px;}
.y5_c00205{bottom:940.901304px;}
.y6_c00205{bottom:941.646373px;}
.y7_c00205{bottom:943.278245px;}
.h15_c00205{height:26.250000px;}
.h19_c00205{height:44.100000px;}
.h17_c00205{height:47.250000px;}
.h1d_c00205{height:48.305433px;}
.h18_c00205{height:49.350000px;}
.h16_c00205{height:50.400000px;}
.h1e_c00205{height:50.403049px;}
.h1f_c00205{height:51.453113px;}
.h1c_c00205{height:51.455788px;}
.hf_c00205{height:60.905146px;}
.hc_c00205{height:60.905968px;}
.h1a_c00205{height:63.000000px;}
.h8_c00205{height:65.111749px;}
.hd_c00205{height:66.157441px;}
.h14_c00205{height:67.204838px;}
.ha_c00205{height:67.206585px;}
.h1b_c00205{height:69.300000px;}
.h13_c00205{height:69.304989px;}
.h10_c00205{height:69.305856px;}
.hb_c00205{height:69.311226px;}
.he_c00205{height:70.355944px;}
.h9_c00205{height:70.356894px;}
.h12_c00205{height:71.406997px;}
.h11_c00205{height:73.508268px;}
.h6_c00205{height:73.513266px;}
.h2_c00205{height:73.535308px;}
.h7_c00205{height:74.563455px;}
.h5_c00205{height:92.436214px;}
.h4_c00205{height:124.950000px;}
.h3_c00205{height:135.515068px;}
.h0_c00205{height:1008.450000px;}
.h1_c00205{height:1008.750000px;}
.w0_c00205{width:678.450000px;}
.w1_c00205{width:678.750000px;}
.x0_c00205{left:0.000000px;}
.x8_c00205{left:76.664544px;}
.x81_c00205{left:88.020000px;}
.x77_c00205{left:89.098500px;}
.x1_c00205{left:92.226000px;}
.x74_c00205{left:97.084500px;}
.x82_c00205{left:99.630000px;}
.x78_c00205{left:106.648500px;}
.xb_c00205{left:133.330500px;}
.x8e_c00205{left:142.663005px;}
.x83_c00205{left:155.706000px;}
.x10_c00205{left:169.669500px;}
.x1f_c00205{left:171.662337px;}
.x45_c00205{left:172.677000px;}
.x64_c00205{left:173.769000px;}
.x79_c00205{left:176.308500px;}
.x95_c00205{left:177.746925px;}
.x9d_c00205{left:185.059500px;}
.x2f_c00205{left:189.160500px;}
.x36_c00205{left:191.130000px;}
.x8f_c00205{left:193.426042px;}
.x5e_c00205{left:195.129000px;}
.x2_c00205{left:196.234500px;}
.x20_c00205{left:197.332806px;}
.x84_c00205{left:200.536500px;}
.x11_c00205{left:204.090000px;}
.x46_c00205{left:206.190000px;}
.x30_c00205{left:210.735000px;}
.x9_c00205{left:213.409137px;}
.xc_c00205{left:215.971500px;}
.x3a_c00205{left:222.139500px;}
.x5f_c00205{left:224.620500px;}
.x18_c00205{left:226.784274px;}
.x21_c00205{left:229.138503px;}
.x90_c00205{left:230.439270px;}
.x12_c00205{left:232.558500px;}
.x65_c00205{left:237.198000px;}
.x3f_c00205{left:238.609500px;}
.x56_c00205{left:240.469500px;}
.x19_c00205{left:242.369274px;}
.xa5_c00205{left:243.935573px;}
.x96_c00205{left:245.302463px;}
.x9e_c00205{left:247.705500px;}
.x3_c00205{left:250.233000px;}
.x5a_c00205{left:251.839500px;}
.x60_c00205{left:254.740500px;}
.x7a_c00205{left:256.228500px;}
.x2a_c00205{left:259.141500px;}
.x85_c00205{left:260.200500px;}
.x47_c00205{left:261.283500px;}
.x1a_c00205{left:263.522274px;}
.xd_c00205{left:265.407000px;}
.x72_c00205{left:266.760000px;}
.x6f_c00205{left:267.840000px;}
.x6e_c00205{left:269.190000px;}
.x7c_c00205{left:270.268500px;}
.x5b_c00205{left:271.338000px;}
.x3b_c00205{left:273.172500px;}
.x31_c00205{left:278.574000px;}
.x22_c00205{left:280.158441px;}
.x97_c00205{left:282.828173px;}
.x13_c00205{left:285.585000px;}
.xa_c00205{left:287.914026px;}
.x4c_c00205{left:291.979500px;}
.x91_c00205{left:293.078527px;}
.x61_c00205{left:294.243000px;}
.x7d_c00205{left:295.918500px;}
.x68_c00205{left:297.951822px;}
.x40_c00205{left:299.368500px;}
.x75_c00205{left:301.744500px;}
.x7b_c00205{left:304.288500px;}
.x37_c00205{left:305.880000px;}
.x2b_c00205{left:308.805000px;}
.x23_c00205{left:311.301138px;}
.x4_c00205{left:313.155000px;}
.x32_c00205{left:314.211000px;}
.xa6_c00205{left:316.288073px;}
.x52_c00205{left:318.787500px;}
.x57_c00205{left:321.238500px;}
.x14_c00205{left:323.283000px;}
.x7e_c00205{left:324.808500px;}
.x48_c00205{left:326.203500px;}
.x70_c00205{left:329.670000px;}
.x73_c00205{left:331.560000px;}
.x1b_c00205{left:333.102774px;}
.x15_c00205{left:335.089500px;}
.x7f_c00205{left:337.498500px;}
.x58_c00205{left:340.635000px;}
.xa7_c00205{left:341.651573px;}
.x71_c00205{left:342.900000px;}
.x49_c00205{left:344.898000px;}
.x86_c00205{left:347.356500px;}
.x92_c00205{left:349.789425px;}
.x5_c00205{left:351.510000px;}
.x38_c00205{left:353.127000px;}
.x4d_c00205{left:354.684000px;}
.xe_c00205{left:358.566000px;}
.x1c_c00205{left:361.035774px;}
.x33_c00205{left:362.536500px;}
.x76_c00205{left:363.549000px;}
.x24_c00205{left:365.039190px;}
.x16_c00205{left:366.475500px;}
.x4a_c00205{left:369.273000px;}
.x2c_c00205{left:373.618500px;}
.x6_c00205{left:375.544500px;}
.x93_c00205{left:378.073612px;}
.x5c_c00205{left:380.982000px;}
.x9f_c00205{left:382.300500px;}
.x53_c00205{left:383.316000px;}
.x80_c00205{left:385.558500px;}
.x41_c00205{left:391.171500px;}
.x25_c00205{left:393.852273px;}
.x3c_c00205{left:395.175000px;}
.x2d_c00205{left:396.840000px;}
.x4e_c00205{left:398.967000px;}
.x54_c00205{left:402.778500px;}
.x98_c00205{left:403.805618px;}
.x42_c00205{left:411.145500px;}
.x39_c00205{left:412.531500px;}
.x4f_c00205{left:416.526000px;}
.x3d_c00205{left:417.891000px;}
.x1d_c00205{left:419.517774px;}
.x4b_c00205{left:423.334500px;}
.xf_c00205{left:425.569500px;}
.x26_c00205{left:427.072527px;}
.x7_c00205{left:428.185500px;}
.x59_c00205{left:430.807500px;}
.x63_c00205{left:432.204000px;}
.x34_c00205{left:434.641500px;}
.x50_c00205{left:436.017000px;}
.x62_c00205{left:437.067000px;}
.x5d_c00205{left:439.248000px;}
.x1e_c00205{left:444.735774px;}
.x87_c00205{left:450.288000px;}
.x17_c00205{left:451.398000px;}
.x35_c00205{left:455.170500px;}
.x99_c00205{left:457.224525px;}
.x43_c00205{left:460.848000px;}
.x2e_c00205{left:463.965000px;}
.x27_c00205{left:466.026009px;}
.x51_c00205{left:467.439000px;}
.x55_c00205{left:469.680000px;}
.xa0_c00205{left:473.439000px;}
.x3e_c00205{left:478.608000px;}
.x88_c00205{left:483.498000px;}
.x66_c00205{left:488.301000px;}
.xa8_c00205{left:495.806573px;}
.x44_c00205{left:500.815500px;}
.x28_c00205{left:504.586462px;}
.xa9_c00205{left:510.661073px;}
.x89_c00205{left:512.659500px;}
.xa1_c00205{left:518.265000px;}
.x8a_c00205{left:526.165500px;}
.x9a_c00205{left:534.227490px;}
.x29_c00205{left:541.330359px;}
.x67_c00205{left:542.596500px;}
.xaa_c00205{left:554.176073px;}
.xa2_c00205{left:558.457500px;}
.x9b_c00205{left:566.856953px;}
.xa3_c00205{left:574.929000px;}
.x8b_c00205{left:577.144500px;}
.x9c_c00205{left:591.591555px;}
.xa4_c00205{left:594.940500px;}
.x8c_c00205{left:596.595000px;}
.xab_c00205{left:607.388573px;}
.x69_c00205{left:623.562228px;}
.x94_c00205{left:636.843638px;}
.x8d_c00205{left:649.606500px;}
.x6d_c00205{left:667.980000px;}
.x6c_c00205{left:669.060000px;}
.x6a_c00205{left:670.950000px;}
.x6b_c00205{left:673.380000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
.fs13_c00205{font-size:23.333333pt;}
.fs17_c00205{font-size:39.200000pt;}
.fs15_c00205{font-size:42.000000pt;}
.fs1b_c00205{font-size:42.938163pt;}
.fs16_c00205{font-size:43.866667pt;}
.fs14_c00205{font-size:44.800000pt;}
.fs1c_c00205{font-size:44.802710pt;}
.fs1d_c00205{font-size:45.736100pt;}
.fs1a_c00205{font-size:45.738478pt;}
.fsd_c00205{font-size:54.137907pt;}
.fsa_c00205{font-size:54.138638pt;}
.fs18_c00205{font-size:56.000000pt;}
.fs6_c00205{font-size:57.877111pt;}
.fsb_c00205{font-size:58.806615pt;}
.fs12_c00205{font-size:59.737634pt;}
.fs8_c00205{font-size:59.739187pt;}
.fs19_c00205{font-size:61.600000pt;}
.fs11_c00205{font-size:61.604435pt;}
.fse_c00205{font-size:61.605205pt;}
.fs9_c00205{font-size:61.609978pt;}
.fsc_c00205{font-size:62.538617pt;}
.fs7_c00205{font-size:62.539461pt;}
.fs10_c00205{font-size:63.472886pt;}
.fsf_c00205{font-size:65.340683pt;}
.fs4_c00205{font-size:65.345125pt;}
.fs0_c00205{font-size:65.364718pt;}
.fs5_c00205{font-size:66.278627pt;}
.fs3_c00205{font-size:82.165523pt;}
.fs2_c00205{font-size:111.066667pt;}
.fs1_c00205{font-size:120.457838pt;}
.y0_c00205{bottom:0.000000pt;}
.yfd_c00205{bottom:159.360563pt;}
.yfe_c00205{bottom:159.637836pt;}
.yff_c00205{bottom:159.880291pt;}
.y100_c00205{bottom:160.231792pt;}
.y101_c00205{bottom:160.342555pt;}
.y102_c00205{bottom:160.991921pt;}
.y103_c00205{bottom:161.050001pt;}
.y104_c00205{bottom:161.298000pt;}
.y105_c00205{bottom:161.625624pt;}
.y106_c00205{bottom:161.775972pt;}
.y107_c00205{bottom:162.026493pt;}
.y108_c00205{bottom:162.087565pt;}
.y109_c00205{bottom:162.399100pt;}
.y10a_c00205{bottom:162.805293pt;}
.y10b_c00205{bottom:162.950537pt;}
.y10c_c00205{bottom:163.178003pt;}
.y10d_c00205{bottom:163.376017pt;}
.y10e_c00205{bottom:163.748257pt;}
.y10f_c00205{bottom:163.896317pt;}
.yea_c00205{bottom:175.441333pt;}
.yeb_c00205{bottom:175.754364pt;}
.yec_c00205{bottom:175.855491pt;}
.yed_c00205{bottom:175.974203pt;}
.yee_c00205{bottom:176.124785pt;}
.yef_c00205{bottom:176.468029pt;}
.yf0_c00205{bottom:176.716233pt;}
.yf1_c00205{bottom:176.948363pt;}
.yf2_c00205{bottom:177.209767pt;}
.yf3_c00205{bottom:177.463339pt;}
.yf4_c00205{bottom:177.784069pt;}
.yf5_c00205{bottom:177.872553pt;}
.yf6_c00205{bottom:178.062707pt;}
.yf7_c00205{bottom:178.500976pt;}
.yf8_c00205{bottom:178.675201pt;}
.yf9_c00205{bottom:179.113500pt;}
.yfa_c00205{bottom:179.506493pt;}
.yfb_c00205{bottom:179.667548pt;}
.yfc_c00205{bottom:179.863216pt;}
.yda_c00205{bottom:190.797627pt;}
.ydb_c00205{bottom:191.267533pt;}
.ydc_c00205{bottom:191.641680pt;}
.ydd_c00205{bottom:191.831900pt;}
.yde_c00205{bottom:192.362380pt;}
.ydf_c00205{bottom:192.657973pt;}
.ye0_c00205{bottom:192.761367pt;}
.ye1_c00205{bottom:193.261993pt;}
.ye2_c00205{bottom:193.386667pt;}
.ye3_c00205{bottom:194.051660pt;}
.ye4_c00205{bottom:194.284433pt;}
.ye5_c00205{bottom:194.621213pt;}
.ye6_c00205{bottom:194.858247pt;}
.ye7_c00205{bottom:195.442540pt;}
.ye8_c00205{bottom:195.790913pt;}
.ye9_c00205{bottom:196.055360pt;}
.yc9_c00205{bottom:206.878613pt;}
.yca_c00205{bottom:207.380207pt;}
.ycb_c00205{bottom:207.641800pt;}
.ycc_c00205{bottom:207.877007pt;}
.ycd_c00205{bottom:208.238487pt;}
.yce_c00205{bottom:208.360107pt;}
.ycf_c00205{bottom:208.850960pt;}
.yd0_c00205{bottom:208.958620pt;}
.yd1_c00205{bottom:209.144253pt;}
.yd2_c00205{bottom:209.405727pt;}
.yd3_c00205{bottom:209.682827pt;}
.yd4_c00205{bottom:209.807633pt;}
.yd5_c00205{bottom:210.160980pt;}
.yd6_c00205{bottom:210.401733pt;}
.yd7_c00205{bottom:210.535860pt;}
.yd8_c00205{bottom:211.128980pt;}
.yd9_c00205{bottom:212.212887pt;}
.yb6_c00205{bottom:221.041333pt;}
.yb7_c00205{bottom:221.928013pt;}
.yb8_c00205{bottom:222.154833pt;}
.yb9_c00205{bottom:222.525753pt;}
.yba_c00205{bottom:223.029913pt;}
.ybb_c00205{bottom:223.321273pt;}
.ybc_c00205{bottom:223.691933pt;}
.ybd_c00205{bottom:223.797233pt;}
.ybe_c00205{bottom:224.174333pt;}
.ybf_c00205{bottom:224.483353pt;}
.yc0_c00205{bottom:225.057473pt;}
.yc1_c00205{bottom:225.445313pt;}
.yc2_c00205{bottom:225.855773pt;}
.yc3_c00205{bottom:226.298573pt;}
.yc4_c00205{bottom:226.687393pt;}
.yc5_c00205{bottom:226.867473pt;}
.yc6_c00205{bottom:227.547193pt;}
.yc7_c00205{bottom:227.806533pt;}
.yc8_c00205{bottom:228.513353pt;}
.yb5_c00205{bottom:242.640000pt;}
.yb4_c00205{bottom:254.400000pt;}
.yb3_c00205{bottom:275.641333pt;}
.yb2_c00205{bottom:291.862667pt;}
.yb1_c00205{bottom:307.494667pt;}
.yac_c00205{bottom:320.881333pt;}
.yad_c00205{bottom:322.872000pt;}
.yae_c00205{bottom:323.246667pt;}
.yaf_c00205{bottom:323.694667pt;}
.yb0_c00205{bottom:323.960000pt;}
.yab_c00205{bottom:339.469333pt;}
.yaa_c00205{bottom:355.308000pt;}
.ya9_c00205{bottom:371.270667pt;}
.ya8_c00205{bottom:386.994667pt;}
.ya7_c00205{bottom:404.640000pt;}
.y9d_c00205{bottom:415.919088pt;}
.y9e_c00205{bottom:416.293269pt;}
.y9f_c00205{bottom:417.137664pt;}
.ya0_c00205{bottom:417.237771pt;}
.ya1_c00205{bottom:417.549115pt;}
.ya2_c00205{bottom:417.842672pt;}
.ya3_c00205{bottom:418.048533pt;}
.ya4_c00205{bottom:418.455200pt;}
.ya5_c00205{bottom:419.117184pt;}
.ya6_c00205{bottom:420.321467pt;}
.y94_c00205{bottom:436.321333pt;}
.y95_c00205{bottom:436.505573pt;}
.y96_c00205{bottom:436.997909pt;}
.y97_c00205{bottom:437.516405pt;}
.y98_c00205{bottom:438.043685pt;}
.y99_c00205{bottom:438.948037pt;}
.y9a_c00205{bottom:439.212805pt;}
.y9b_c00205{bottom:439.676341pt;}
.y9c_c00205{bottom:440.255493pt;}
.y8c_c00205{bottom:456.241333pt;}
.y8d_c00205{bottom:456.716145pt;}
.y8e_c00205{bottom:457.405128pt;}
.y8f_c00205{bottom:457.707993pt;}
.y90_c00205{bottom:458.297535pt;}
.y91_c00205{bottom:458.565387pt;}
.y92_c00205{bottom:459.017873pt;}
.y93_c00205{bottom:459.233864pt;}
.y82_c00205{bottom:476.162667pt;}
.y83_c00205{bottom:476.485283pt;}
.y84_c00205{bottom:476.852288pt;}
.y85_c00205{bottom:477.227115pt;}
.y86_c00205{bottom:477.718701pt;}
.y87_c00205{bottom:478.548397pt;}
.y88_c00205{bottom:478.824085pt;}
.y89_c00205{bottom:479.173544pt;}
.y8a_c00205{bottom:479.496067pt;}
.y8b_c00205{bottom:479.878603pt;}
.y79_c00205{bottom:496.562667pt;}
.y7a_c00205{bottom:497.110407pt;}
.y7b_c00205{bottom:497.617527pt;}
.y7c_c00205{bottom:497.877507pt;}
.y7d_c00205{bottom:498.600967pt;}
.y7e_c00205{bottom:498.863847pt;}
.y7f_c00205{bottom:499.339427pt;}
.y80_c00205{bottom:499.854607pt;}
.y81_c00205{bottom:500.116307pt;}
.y6e_c00205{bottom:517.201333pt;}
.y6f_c00205{bottom:517.503419pt;}
.y70_c00205{bottom:517.778516pt;}
.y71_c00205{bottom:517.996985pt;}
.y72_c00205{bottom:518.295916pt;}
.y73_c00205{bottom:518.930316pt;}
.y74_c00205{bottom:519.154453pt;}
.y75_c00205{bottom:519.766372pt;}
.y76_c00205{bottom:520.196447pt;}
.y77_c00205{bottom:520.636211pt;}
.y78_c00205{bottom:520.998789pt;}
.y66_c00205{bottom:536.881333pt;}
.y67_c00205{bottom:537.530155pt;}
.y68_c00205{bottom:537.982763pt;}
.y69_c00205{bottom:538.603747pt;}
.y6a_c00205{bottom:539.349409pt;}
.y6b_c00205{bottom:539.574309pt;}
.y6c_c00205{bottom:540.347393pt;}
.y6d_c00205{bottom:540.713092pt;}
.y5e_c00205{bottom:557.761333pt;}
.y5f_c00205{bottom:558.762195pt;}
.y60_c00205{bottom:559.142765pt;}
.y61_c00205{bottom:559.867351pt;}
.y62_c00205{bottom:560.379065pt;}
.y63_c00205{bottom:560.581969pt;}
.y64_c00205{bottom:560.807199pt;}
.y65_c00205{bottom:561.170297pt;}
.y57_c00205{bottom:577.921333pt;}
.y58_c00205{bottom:578.308595pt;}
.y59_c00205{bottom:578.945231pt;}
.y5a_c00205{bottom:579.695417pt;}
.y5b_c00205{bottom:579.911443pt;}
.y5c_c00205{bottom:580.193109pt;}
.y5d_c00205{bottom:580.817820pt;}
.y4f_c00205{bottom:597.602667pt;}
.y50_c00205{bottom:598.495367pt;}
.y51_c00205{bottom:599.305487pt;}
.y52_c00205{bottom:599.784347pt;}
.y53_c00205{bottom:600.529527pt;}
.y54_c00205{bottom:600.795847pt;}
.y55_c00205{bottom:601.458547pt;}
.y56_c00205{bottom:601.991447pt;}
.y47_c00205{bottom:617.762667pt;}
.y48_c00205{bottom:618.394384pt;}
.y49_c00205{bottom:619.029461pt;}
.y4a_c00205{bottom:619.517091pt;}
.y4b_c00205{bottom:620.279923pt;}
.y4c_c00205{bottom:620.547715pt;}
.y4d_c00205{bottom:620.830403pt;}
.y4e_c00205{bottom:621.585992pt;}
.y40_c00205{bottom:637.684000pt;}
.y41_c00205{bottom:637.995304pt;}
.y42_c00205{bottom:638.319784pt;}
.y43_c00205{bottom:639.157816pt;}
.y44_c00205{bottom:639.831304pt;}
.y45_c00205{bottom:640.587256pt;}
.y46_c00205{bottom:641.537728pt;}
.y37_c00205{bottom:658.562667pt;}
.y38_c00205{bottom:658.784259pt;}
.y39_c00205{bottom:659.052741pt;}
.y3a_c00205{bottom:659.332349pt;}
.y3b_c00205{bottom:659.896960pt;}
.y3c_c00205{bottom:660.340443pt;}
.y3d_c00205{bottom:660.941827pt;}
.y3e_c00205{bottom:661.839133pt;}
.y3f_c00205{bottom:662.094605pt;}
.y2e_c00205{bottom:678.962667pt;}
.y2f_c00205{bottom:679.287896pt;}
.y30_c00205{bottom:679.648331pt;}
.y31_c00205{bottom:680.051773pt;}
.y32_c00205{bottom:680.669808pt;}
.y33_c00205{bottom:680.988933pt;}
.y34_c00205{bottom:681.476376pt;}
.y35_c00205{bottom:681.765355pt;}
.y36_c00205{bottom:682.600688pt;}
.y23_c00205{bottom:698.396511pt;}
.y24_c00205{bottom:698.784707pt;}
.y25_c00205{bottom:699.265849pt;}
.y26_c00205{bottom:700.036820pt;}
.y27_c00205{bottom:700.506765pt;}
.y28_c00205{bottom:701.318307pt;}
.y29_c00205{bottom:701.754243pt;}
.y2a_c00205{bottom:702.256608pt;}
.y2b_c00205{bottom:702.845131pt;}
.y2c_c00205{bottom:703.428349pt;}
.y2d_c00205{bottom:703.983556pt;}
.y1b_c00205{bottom:718.801308pt;}
.y1c_c00205{bottom:719.758832pt;}
.y1d_c00205{bottom:720.022045pt;}
.y1e_c00205{bottom:720.379296pt;}
.y1f_c00205{bottom:721.554433pt;}
.y20_c00205{bottom:722.026191pt;}
.y21_c00205{bottom:723.013887pt;}
.y22_c00205{bottom:723.439791pt;}
.y12_c00205{bottom:738.486667pt;}
.y13_c00205{bottom:739.067991pt;}
.y14_c00205{bottom:739.548792pt;}
.y15_c00205{bottom:740.444351pt;}
.y16_c00205{bottom:741.081028pt;}
.y17_c00205{bottom:741.280427pt;}
.y18_c00205{bottom:741.810501pt;}
.y19_c00205{bottom:741.978411pt;}
.y1a_c00205{bottom:743.244748pt;}
.yd_c00205{bottom:778.092000pt;}
.ye_c00205{bottom:780.148843pt;}
.yf_c00205{bottom:781.379237pt;}
.y10_c00205{bottom:783.697861pt;}
.y11_c00205{bottom:785.365504pt;}
.yc_c00205{bottom:798.357333pt;}
.y8_c00205{bottom:816.483387pt;}
.y9_c00205{bottom:818.914176pt;}
.ya_c00205{bottom:820.238500pt;}
.yb_c00205{bottom:821.355865pt;}
.y1_c00205{bottom:829.212000pt;}
.y2_c00205{bottom:832.078012pt;}
.y3_c00205{bottom:833.565971pt;}
.y4_c00205{bottom:835.299821pt;}
.y5_c00205{bottom:836.356715pt;}
.y6_c00205{bottom:837.018999pt;}
.y7_c00205{bottom:838.469551pt;}
.h15_c00205{height:23.333333pt;}
.h19_c00205{height:39.200000pt;}
.h17_c00205{height:42.000000pt;}
.h1d_c00205{height:42.938163pt;}
.h18_c00205{height:43.866667pt;}
.h16_c00205{height:44.800000pt;}
.h1e_c00205{height:44.802710pt;}
.h1f_c00205{height:45.736100pt;}
.h1c_c00205{height:45.738478pt;}
.hf_c00205{height:54.137907pt;}
.hc_c00205{height:54.138638pt;}
.h1a_c00205{height:56.000000pt;}
.h8_c00205{height:57.877111pt;}
.hd_c00205{height:58.806615pt;}
.h14_c00205{height:59.737634pt;}
.ha_c00205{height:59.739187pt;}
.h1b_c00205{height:61.600000pt;}
.h13_c00205{height:61.604435pt;}
.h10_c00205{height:61.605205pt;}
.hb_c00205{height:61.609978pt;}
.he_c00205{height:62.538617pt;}
.h9_c00205{height:62.539461pt;}
.h12_c00205{height:63.472886pt;}
.h11_c00205{height:65.340683pt;}
.h6_c00205{height:65.345125pt;}
.h2_c00205{height:65.364718pt;}
.h7_c00205{height:66.278627pt;}
.h5_c00205{height:82.165523pt;}
.h4_c00205{height:111.066667pt;}
.h3_c00205{height:120.457838pt;}
.h0_c00205{height:896.400000pt;}
.h1_c00205{height:896.666667pt;}
.w0_c00205{width:603.066667pt;}
.w1_c00205{width:603.333333pt;}
.x0_c00205{left:0.000000pt;}
.x8_c00205{left:68.146261pt;}
.x81_c00205{left:78.240000pt;}
.x77_c00205{left:79.198667pt;}
.x1_c00205{left:81.978667pt;}
.x74_c00205{left:86.297333pt;}
.x82_c00205{left:88.560000pt;}
.x78_c00205{left:94.798667pt;}
.xb_c00205{left:118.516000pt;}
.x8e_c00205{left:126.811560pt;}
.x83_c00205{left:138.405333pt;}
.x10_c00205{left:150.817333pt;}
.x1f_c00205{left:152.588744pt;}
.x45_c00205{left:153.490667pt;}
.x64_c00205{left:154.461333pt;}
.x79_c00205{left:156.718667pt;}
.x95_c00205{left:157.997267pt;}
.x9d_c00205{left:164.497333pt;}
.x2f_c00205{left:168.142667pt;}
.x36_c00205{left:169.893333pt;}
.x8f_c00205{left:171.934260pt;}
.x5e_c00205{left:173.448000pt;}
.x2_c00205{left:174.430667pt;}
.x20_c00205{left:175.406939pt;}
.x84_c00205{left:178.254667pt;}
.x11_c00205{left:181.413333pt;}
.x46_c00205{left:183.280000pt;}
.x30_c00205{left:187.320000pt;}
.x9_c00205{left:189.697011pt;}
.xc_c00205{left:191.974667pt;}
.x3a_c00205{left:197.457333pt;}
.x5f_c00205{left:199.662667pt;}
.x18_c00205{left:201.586021pt;}
.x21_c00205{left:203.678669pt;}
.x90_c00205{left:204.834907pt;}
.x12_c00205{left:206.718667pt;}
.x65_c00205{left:210.842667pt;}
.x3f_c00205{left:212.097333pt;}
.x56_c00205{left:213.750667pt;}
.x19_c00205{left:215.439355pt;}
.xa5_c00205{left:216.831620pt;}
.x96_c00205{left:218.046633pt;}
.x9e_c00205{left:220.182667pt;}
.x3_c00205{left:222.429333pt;}
.x5a_c00205{left:223.857333pt;}
.x60_c00205{left:226.436000pt;}
.x7a_c00205{left:227.758667pt;}
.x2a_c00205{left:230.348000pt;}
.x85_c00205{left:231.289333pt;}
.x47_c00205{left:232.252000pt;}
.x1a_c00205{left:234.242021pt;}
.xd_c00205{left:235.917333pt;}
.x72_c00205{left:237.120000pt;}
.x6f_c00205{left:238.080000pt;}
.x6e_c00205{left:239.280000pt;}
.x7c_c00205{left:240.238667pt;}
.x5b_c00205{left:241.189333pt;}
.x3b_c00205{left:242.820000pt;}
.x31_c00205{left:247.621333pt;}
.x22_c00205{left:249.029725pt;}
.x97_c00205{left:251.402820pt;}
.x13_c00205{left:253.853333pt;}
.xa_c00205{left:255.923579pt;}
.x4c_c00205{left:259.537333pt;}
.x91_c00205{left:260.514247pt;}
.x61_c00205{left:261.549333pt;}
.x7d_c00205{left:263.038667pt;}
.x68_c00205{left:264.846064pt;}
.x40_c00205{left:266.105333pt;}
.x75_c00205{left:268.217333pt;}
.x7b_c00205{left:270.478667pt;}
.x37_c00205{left:271.893333pt;}
.x2b_c00205{left:274.493333pt;}
.x23_c00205{left:276.712123pt;}
.x4_c00205{left:278.360000pt;}
.x32_c00205{left:279.298667pt;}
.xa6_c00205{left:281.144953pt;}
.x52_c00205{left:283.366667pt;}
.x57_c00205{left:285.545333pt;}
.x14_c00205{left:287.362667pt;}
.x7e_c00205{left:288.718667pt;}
.x48_c00205{left:289.958667pt;}
.x70_c00205{left:293.040000pt;}
.x73_c00205{left:294.720000pt;}
.x1b_c00205{left:296.091355pt;}
.x15_c00205{left:297.857333pt;}
.x7f_c00205{left:299.998667pt;}
.x58_c00205{left:302.786667pt;}
.xa7_c00205{left:303.690287pt;}
.x71_c00205{left:304.800000pt;}
.x49_c00205{left:306.576000pt;}
.x86_c00205{left:308.761333pt;}
.x92_c00205{left:310.923933pt;}
.x5_c00205{left:312.453333pt;}
.x38_c00205{left:313.890667pt;}
.x4d_c00205{left:315.274667pt;}
.xe_c00205{left:318.725333pt;}
.x1c_c00205{left:320.920688pt;}
.x33_c00205{left:322.254667pt;}
.x76_c00205{left:323.154667pt;}
.x24_c00205{left:324.479280pt;}
.x16_c00205{left:325.756000pt;}
.x4a_c00205{left:328.242667pt;}
.x2c_c00205{left:332.105333pt;}
.x6_c00205{left:333.817333pt;}
.x93_c00205{left:336.065433pt;}
.x5c_c00205{left:338.650667pt;}
.x9f_c00205{left:339.822667pt;}
.x53_c00205{left:340.725333pt;}
.x80_c00205{left:342.718667pt;}
.x41_c00205{left:347.708000pt;}
.x25_c00205{left:350.090909pt;}
.x3c_c00205{left:351.266667pt;}
.x2d_c00205{left:352.746667pt;}
.x4e_c00205{left:354.637333pt;}
.x54_c00205{left:358.025333pt;}
.x98_c00205{left:358.938327pt;}
.x42_c00205{left:365.462667pt;}
.x39_c00205{left:366.694667pt;}
.x4f_c00205{left:370.245333pt;}
.x3d_c00205{left:371.458667pt;}
.x1d_c00205{left:372.904688pt;}
.x4b_c00205{left:376.297333pt;}
.xf_c00205{left:378.284000pt;}
.x26_c00205{left:379.620024pt;}
.x7_c00205{left:380.609333pt;}
.x59_c00205{left:382.940000pt;}
.x63_c00205{left:384.181333pt;}
.x34_c00205{left:386.348000pt;}
.x50_c00205{left:387.570667pt;}
.x62_c00205{left:388.504000pt;}
.x5d_c00205{left:390.442667pt;}
.x1e_c00205{left:395.320688pt;}
.x87_c00205{left:400.256000pt;}
.x17_c00205{left:401.242667pt;}
.x35_c00205{left:404.596000pt;}
.x99_c00205{left:406.421800pt;}
.x43_c00205{left:409.642667pt;}
.x2e_c00205{left:412.413333pt;}
.x27_c00205{left:414.245341pt;}
.x51_c00205{left:415.501333pt;}
.x55_c00205{left:417.493333pt;}
.xa0_c00205{left:420.834667pt;}
.x3e_c00205{left:425.429333pt;}
.x88_c00205{left:429.776000pt;}
.x66_c00205{left:434.045333pt;}
.xa8_c00205{left:440.716953pt;}
.x44_c00205{left:445.169333pt;}
.x28_c00205{left:448.521300pt;}
.xa9_c00205{left:453.920953pt;}
.x89_c00205{left:455.697333pt;}
.xa1_c00205{left:460.680000pt;}
.x8a_c00205{left:467.702667pt;}
.x9a_c00205{left:474.868880pt;}
.x29_c00205{left:481.182541pt;}
.x67_c00205{left:482.308000pt;}
.xaa_c00205{left:492.600953pt;}
.xa2_c00205{left:496.406667pt;}
.x9b_c00205{left:503.872847pt;}
.xa3_c00205{left:511.048000pt;}
.x8b_c00205{left:513.017333pt;}
.x9c_c00205{left:525.859160pt;}
.xa4_c00205{left:528.836000pt;}
.x8c_c00205{left:530.306667pt;}
.xab_c00205{left:539.900953pt;}
.x69_c00205{left:554.277536pt;}
.x94_c00205{left:566.083233pt;}
.x8d_c00205{left:577.428000pt;}
.x6d_c00205{left:593.760000pt;}
.x6c_c00205{left:594.720000pt;}
.x6a_c00205{left:596.400000pt;}
.x6b_c00205{left:598.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m6f_c00206{transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);}
.md2_c00206{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.mdd_c00206{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);}
.md9_c00206{transform:matrix(0.066795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066795,0.000000,0.000000,0.250000,0,0);}
.mea_c00206{transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.126460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126460,0.000000,0.000000,0.250000,0,0);}
.md1_c00206{transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.130485,-0.001174,0.002250,0.249990,0,0);-ms-transform:matrix(0.130485,-0.001174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.130485,-0.001174,0.002250,0.249990,0,0);}
.m12_c00206{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);}
.m18_c00206{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);}
.m2_c00206{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{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);}
.m7d_c00206{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);}
.m59_c00206{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);}
.m3_c00206{transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{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);}
.m61_c00206{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);}
.mb1_c00206{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);}
.m43_c00206{transform:matrix(0.153619,-0.001383,0.002250,0.249990,0,0);-ms-transform:matrix(0.153619,-0.001383,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153619,-0.001383,0.002250,0.249990,0,0);}
.m62_c00206{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);}
.m99_c00206{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);}
.m35_c00206{transform:matrix(0.154899,-0.001394,0.002250,0.249990,0,0);-ms-transform:matrix(0.154899,-0.001394,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154899,-0.001394,0.002250,0.249990,0,0);}
.mb2_c00206{transform:matrix(0.155460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155460,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{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);}
.m82_c00206{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);}
.m44_c00206{transform:matrix(0.156009,-0.001404,0.002250,0.249990,0,0);-ms-transform:matrix(0.156009,-0.001404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156009,-0.001404,0.002250,0.249990,0,0);}
.m6b_c00206{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);}
.m2f_c00206{transform:matrix(0.156704,-0.001410,0.002250,0.249990,0,0);-ms-transform:matrix(0.156704,-0.001410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156704,-0.001410,0.002250,0.249990,0,0);}
.m92_c00206{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);}
.m21_c00206{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);}
.ma5_c00206{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);}
.maf_c00206{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);}
.m7e_c00206{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);}
.me_c00206{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);}
.mbb_c00206{transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162265,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{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);}
.m8c_c00206{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);}
.m6_c00206{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);}
.m3b_c00206{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{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);}
.mc_c00206{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);}
.m34_c00206{transform:matrix(0.165018,-0.001485,0.002250,0.249990,0,0);-ms-transform:matrix(0.165018,-0.001485,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165018,-0.001485,0.002250,0.249990,0,0);}
.md5_c00206{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);}
.m67_c00206{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);}
.m22_c00206{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);}
.m26_c00206{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);}
.me0_c00206{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);}
.ma0_c00206{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);}
.m4a_c00206{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m6e_c00206{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);}
.m14_c00206{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);}
.ma1_c00206{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);}
.m23_c00206{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);}
.mef_c00206{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.168963,-0.001521,0.002250,0.249990,0,0);-ms-transform:matrix(0.168963,-0.001521,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168963,-0.001521,0.002250,0.249990,0,0);}
.m97_c00206{transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{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);}
.m1f_c00206{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);}
.mb_c00206{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);}
.m20_c00206{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);}
.ma4_c00206{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);}
.m81_c00206{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);}
.m1e_c00206{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);}
.m88_c00206{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);}
.maa_c00206{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);}
.m85_c00206{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{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);}
.m6a_c00206{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);}
.md7_c00206{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);}
.m1b_c00206{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);}
.m4_c00206{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);}
.m75_c00206{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);}
.m9a_c00206{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);}
.m4e_c00206{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);}
.m87_c00206{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);}
.m6c_c00206{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);}
.m8a_c00206{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);}
.m10_c00206{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);}
.m5a_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);}
.m80_c00206{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);}
.mb6_c00206{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);}
.m93_c00206{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);}
.m31_c00206{transform:matrix(0.181608,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181608,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181608,-0.001634,0.002250,0.249990,0,0);}
.m86_c00206{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);}
.m17_c00206{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);}
.mba_c00206{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);}
.ma8_c00206{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);}
.mb3_c00206{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);}
.m76_c00206{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);}
.m47_c00206{transform:matrix(0.182583,-0.001643,0.002250,0.249990,0,0);-ms-transform:matrix(0.182583,-0.001643,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182583,-0.001643,0.002250,0.249990,0,0);}
.m77_c00206{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);}
.m1_c00206{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);}
.mb4_c00206{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);}
.m79_c00206{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);}
.ma9_c00206{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);}
.m11_c00206{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);}
.mc6_c00206{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);}
.me3_c00206{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);}
.m9f_c00206{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);}
.m55_c00206{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);}
.mae_c00206{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);}
.mb0_c00206{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);}
.mc1_c00206{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);}
.m96_c00206{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);}
.m7f_c00206{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);}
.m2a_c00206{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);}
.m24_c00206{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);}
.mee_c00206{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);}
.m6d_c00206{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);}
.m5b_c00206{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);}
.m65_c00206{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);}
.m9_c00206{transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{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);}
.m57_c00206{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);}
.m2e_c00206{transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);-ms-transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193047,-0.001737,0.002250,0.249990,0,0);}
.m5c_c00206{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);}
.m9c_c00206{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);}
.m63_c00206{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);}
.m66_c00206{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.md4_c00206{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);}
.m9b_c00206{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);}
.m3c_c00206{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);}
.m5_c00206{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);}
.m3e_c00206{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_c00206{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);}
.m54_c00206{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);}
.ma6_c00206{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);}
.m5f_c00206{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);}
.m16_c00206{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);}
.md0_c00206{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);}
.ma3_c00206{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);}
.m39_c00206{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);}
.mcf_c00206{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);}
.m8_c00206{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);}
.m28_c00206{transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{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);}
.me5_c00206{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);}
.m4c_c00206{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);}
.md8_c00206{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);}
.m7b_c00206{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);}
.m33_c00206{transform:matrix(0.202787,-0.001825,0.002250,0.249990,0,0);-ms-transform:matrix(0.202787,-0.001825,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202787,-0.001825,0.002250,0.249990,0,0);}
.m37_c00206{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);}
.mc9_c00206{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);}
.m69_c00206{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{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);}
.m89_c00206{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);}
.ma7_c00206{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);}
.m3a_c00206{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);}
.m73_c00206{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);}
.m64_c00206{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);}
.m56_c00206{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);}
.mf3_c00206{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);}
.med_c00206{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);}
.m8b_c00206{transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{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);}
.mc4_c00206{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);}
.mf_c00206{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);}
.mcc_c00206{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.mf1_c00206{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);}
.m46_c00206{transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);-ms-transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);}
.m15_c00206{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);}
.m70_c00206{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);}
.m9e_c00206{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);}
.mc5_c00206{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);}
.m53_c00206{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);}
.m1c_c00206{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);}
.m95_c00206{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);}
.mc2_c00206{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);}
.m8d_c00206{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);}
.mce_c00206{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{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);}
.m83_c00206{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);}
.ma2_c00206{transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{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);}
.md_c00206{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);}
.mb9_c00206{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);}
.m68_c00206{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);}
.m84_c00206{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);}
.m45_c00206{transform:matrix(0.217606,-0.001958,0.002250,0.249990,0,0);-ms-transform:matrix(0.217606,-0.001958,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217606,-0.001958,0.002250,0.249990,0,0);}
.m7_c00206{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);}
.mca_c00206{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);}
.m48_c00206{transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);}
.mac_c00206{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);}
.m5d_c00206{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);}
.m4d_c00206{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);}
.m1a_c00206{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);}
.m78_c00206{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);}
.m60_c00206{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);}
.me6_c00206{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);}
.m42_c00206{transform:matrix(0.223386,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223386,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223386,-0.002010,0.002250,0.249990,0,0);}
.mec_c00206{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);}
.mf2_c00206{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);}
.me8_c00206{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);}
.m58_c00206{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_c00206{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);}
.mcd_c00206{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);}
.m4f_c00206{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);}
.mf0_c00206{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);}
.m50_c00206{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);}
.m13_c00206{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);}
.me7_c00206{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);}
.m41_c00206{transform:matrix(0.233631,-0.002103,0.002250,0.249990,0,0);-ms-transform:matrix(0.233631,-0.002103,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233631,-0.002103,0.002250,0.249990,0,0);}
.mc8_c00206{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);}
.mda_c00206{transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);}
.me2_c00206{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);}
.mab_c00206{transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241295,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{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);}
.mcb_c00206{transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);}
.mdb_c00206{transform:matrix(0.242140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242140,0.000000,0.000000,0.250000,0,0);}
.mc7_c00206{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);}
.m25_c00206{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258760,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);}
.mdf_c00206{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);}
.m94_c00206{transform:matrix(0.275655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275655,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{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);}
.m8f_c00206{transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00206{transform:matrix(0.299735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299735,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);}
.md3_c00206{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);}
.m91_c00206{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.mbe_c00206{transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321005,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.324292,-0.002919,0.002250,0.249990,0,0);-ms-transform:matrix(0.324292,-0.002919,0.002250,0.249990,0,0);-webkit-transform:matrix(0.324292,-0.002919,0.002250,0.249990,0,0);}
.m90_c00206{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.334315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334315,0.000000,0.000000,0.250000,0,0);}
.meb_c00206{transform:matrix(0.348540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348540,0.000000,0.000000,0.250000,0,0);}
.mbf_c00206{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);}
.md6_c00206{transform:matrix(0.397560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397560,0.000000,0.000000,0.250000,0,0);}
.mc0_c00206{transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);}
.me9_c00206{transform:matrix(0.420625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420625,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.447110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447110,0.000000,0.000000,0.250000,0,0);}
.mde_c00206{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);}
.m52_c00206{transform:matrix(0.527445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527445,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.647560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647560,0.000000,0.000000,0.250000,0,0);}
.me4_c00206{transform:matrix(0.656965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656965,0.000000,0.000000,0.250000,0,0);}
.me1_c00206{transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);}
.mf4_c00206{transform:matrix(0.820630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820630,0.000000,0.000000,0.250000,0,0);}
.mbd_c00206{transform:matrix(0.923660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.923660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.923660,0.000000,0.000000,0.250000,0,0);}
.mbc_c00206{transform:matrix(1.009740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.009740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.009740,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;}
.fs12_c00206{font-size:22.050000px;}
.fs10_c00206{font-size:48.300000px;}
.fs11_c00206{font-size:49.350000px;}
.fse_c00206{font-size:50.400000px;}
.fsd_c00206{font-size:51.450000px;}
.fsf_c00206{font-size:52.500000px;}
.fsc_c00206{font-size:53.550000px;}
.fsa_c00206{font-size:67.200000px;}
.fs2_c00206{font-size:68.250000px;}
.fs8_c00206{font-size:68.252764px;}
.fs9_c00206{font-size:69.300000px;}
.fs4_c00206{font-size:70.350000px;}
.fs5_c00206{font-size:70.352849px;}
.fs7_c00206{font-size:71.400000px;}
.fs1_c00206{font-size:72.450000px;}
.fs6_c00206{font-size:73.500000px;}
.fsb_c00206{font-size:76.650000px;}
.fs3_c00206{font-size:80.850000px;}
.fs0_c00206{font-size:128.100000px;}
.fs13_c00206{font-size:225.750000px;}
.y0_c00206{bottom:0.000000px;}
.y53_c00206{bottom:142.246500px;}
.y52_c00206{bottom:169.509000px;}
.y55_c00206{bottom:187.680000px;}
.y51_c00206{bottom:200.299500px;}
.y54_c00206{bottom:205.662000px;}
.y50_c00206{bottom:223.474500px;}
.y4f_c00206{bottom:241.584000px;}
.y4e_c00206{bottom:270.261000px;}
.y4d_c00206{bottom:298.992000px;}
.y4c_c00206{bottom:316.555500px;}
.y4b_c00206{bottom:334.099500px;}
.y4a_c00206{bottom:352.360500px;}
.y49_c00206{bottom:370.188000px;}
.y48_c00206{bottom:387.861000px;}
.y47_c00206{bottom:405.364500px;}
.y46_c00206{bottom:423.358500px;}
.y45_c00206{bottom:457.236000px;}
.y44_c00206{bottom:480.616500px;}
.y43_c00206{bottom:503.407500px;}
.y38_c00206{bottom:523.803000px;}
.y39_c00206{bottom:524.263500px;}
.y3a_c00206{bottom:524.530500px;}
.y3b_c00206{bottom:524.824500px;}
.y3c_c00206{bottom:525.151500px;}
.y3d_c00206{bottom:525.333000px;}
.y3e_c00206{bottom:525.823500px;}
.y3f_c00206{bottom:526.137000px;}
.y40_c00206{bottom:526.512000px;}
.y41_c00206{bottom:527.052000px;}
.y42_c00206{bottom:527.305500px;}
.y31_c00206{bottom:547.561500px;}
.y32_c00206{bottom:548.263500px;}
.y33_c00206{bottom:548.400000px;}
.y34_c00206{bottom:548.877000px;}
.y35_c00206{bottom:549.178500px;}
.y36_c00206{bottom:549.757500px;}
.y37_c00206{bottom:550.659000px;}
.y30_c00206{bottom:571.792500px;}
.y2f_c00206{bottom:593.514000px;}
.y2e_c00206{bottom:616.255500px;}
.y2d_c00206{bottom:637.939500px;}
.y25_c00206{bottom:659.341500px;}
.y26_c00206{bottom:659.686587px;}
.y27_c00206{bottom:660.461744px;}
.y28_c00206{bottom:660.624594px;}
.y29_c00206{bottom:660.831238px;}
.y2a_c00206{bottom:661.241800px;}
.y2b_c00206{bottom:661.815010px;}
.y2c_c00206{bottom:662.099618px;}
.y24_c00206{bottom:683.322000px;}
.y23_c00206{bottom:706.860000px;}
.y1a_c00206{bottom:727.651500px;}
.y1b_c00206{bottom:727.896916px;}
.y1c_c00206{bottom:728.419016px;}
.y1d_c00206{bottom:728.764170px;}
.y1e_c00206{bottom:729.301132px;}
.y1f_c00206{bottom:729.525124px;}
.y20_c00206{bottom:729.877461px;}
.y21_c00206{bottom:730.224546px;}
.y22_c00206{bottom:730.404771px;}
.y19_c00206{bottom:752.955000px;}
.y10_c00206{bottom:773.821500px;}
.y11_c00206{bottom:774.043500px;}
.y12_c00206{bottom:774.315000px;}
.y13_c00206{bottom:774.717000px;}
.y14_c00206{bottom:775.026000px;}
.y15_c00206{bottom:775.345500px;}
.y16_c00206{bottom:775.765500px;}
.y17_c00206{bottom:776.184000px;}
.y18_c00206{bottom:776.467500px;}
.y3_c00206{bottom:796.771500px;}
.y4_c00206{bottom:796.929000px;}
.y5_c00206{bottom:797.169000px;}
.y6_c00206{bottom:797.454000px;}
.y7_c00206{bottom:797.599500px;}
.y8_c00206{bottom:797.871000px;}
.y9_c00206{bottom:798.127500px;}
.ya_c00206{bottom:798.393000px;}
.yb_c00206{bottom:798.549000px;}
.yc_c00206{bottom:798.834000px;}
.yd_c00206{bottom:798.981000px;}
.ye_c00206{bottom:799.221000px;}
.yf_c00206{bottom:799.384500px;}
.y2_c00206{bottom:820.900500px;}
.y1_c00206{bottom:867.510000px;}
.y56_c00206{bottom:909.511500px;}
.h14_c00206{height:22.050000px;}
.h12_c00206{height:48.300000px;}
.h13_c00206{height:49.350000px;}
.h10_c00206{height:50.400000px;}
.hf_c00206{height:51.450000px;}
.h11_c00206{height:52.500000px;}
.he_c00206{height:53.550000px;}
.hc_c00206{height:67.200000px;}
.h4_c00206{height:68.250000px;}
.ha_c00206{height:68.252764px;}
.hb_c00206{height:69.300000px;}
.h6_c00206{height:70.350000px;}
.h7_c00206{height:70.352849px;}
.h9_c00206{height:71.400000px;}
.h3_c00206{height:72.450000px;}
.h8_c00206{height:73.500000px;}
.hd_c00206{height:76.650000px;}
.h5_c00206{height:80.850000px;}
.h2_c00206{height:128.100000px;}
.h15_c00206{height:225.750000px;}
.h1_c00206{height:1005.000000px;}
.h0_c00206{height:1005.150000px;}
.w0_c00206{width:735.750000px;}
.x0_c00206{left:0.000000px;}
.x7f_c00206{left:103.410000px;}
.x78_c00206{left:104.760000px;}
.x79_c00206{left:105.840000px;}
.x83_c00206{left:130.410000px;}
.x19_c00206{left:132.403500px;}
.x5_c00206{left:133.920000px;}
.x2a_c00206{left:136.474500px;}
.x4e_c00206{left:138.240000px;}
.x80_c00206{left:143.100000px;}
.x10_c00206{left:153.192000px;}
.x1a_c00206{left:160.218000px;}
.x2b_c00206{left:163.743000px;}
.x22_c00206{left:165.510000px;}
.x61_c00206{left:167.670000px;}
.x95_c00206{left:172.530000px;}
.x39_c00206{left:175.354500px;}
.x5d_c00206{left:176.853000px;}
.x63_c00206{left:179.280000px;}
.x6_c00206{left:180.630000px;}
.x32_c00206{left:181.710000px;}
.x1_c00206{left:183.870000px;}
.x44_c00206{left:186.570000px;}
.x3f_c00206{left:188.730000px;}
.x23_c00206{left:190.890000px;}
.x1b_c00206{left:194.232000px;}
.x81_c00206{left:196.020000px;}
.x64_c00206{left:197.100000px;}
.x48_c00206{left:198.180000px;}
.x84_c00206{left:208.170000px;}
.x40_c00206{left:209.520000px;}
.x58_c00206{left:211.270500px;}
.x33_c00206{left:213.300000px;}
.x7_c00206{left:218.700000px;}
.x5e_c00206{left:220.053000px;}
.x24_c00206{left:222.210000px;}
.x49_c00206{left:223.290000px;}
.x53_c00206{left:224.469000px;}
.x69_c00206{left:226.260000px;}
.x85_c00206{left:228.690000px;}
.x6b_c00206{left:235.440000px;}
.x11_c00206{left:236.898000px;}
.x54_c00206{left:241.485000px;}
.x34_c00206{left:242.730000px;}
.x1c_c00206{left:244.453500px;}
.x65_c00206{left:245.700000px;}
.x41_c00206{left:247.050000px;}
.x45_c00206{left:249.210000px;}
.x25_c00206{left:251.370000px;}
.x6c_c00206{left:255.150000px;}
.x6f_c00206{left:257.040000px;}
.x4f_c00206{left:258.660000px;}
.x2c_c00206{left:260.104500px;}
.x3a_c00206{left:261.483000px;}
.x35_c00206{left:265.410000px;}
.x6e_c00206{left:269.730000px;}
.x12_c00206{left:270.913500px;}
.x59_c00206{left:273.372000px;}
.x8_c00206{left:275.670000px;}
.x76_c00206{left:276.750000px;}
.x66_c00206{left:278.100000px;}
.x3b_c00206{left:279.577500px;}
.x1d_c00206{left:283.039500px;}
.x6a_c00206{left:285.120000px;}
.x73_c00206{left:289.710000px;}
.x5a_c00206{left:291.465000px;}
.x46_c00206{left:293.490000px;}
.x5f_c00206{left:295.113000px;}
.x55_c00206{left:301.197000px;}
.x13_c00206{left:303.046500px;}
.x26_c00206{left:305.100000px;}
.x86_c00206{left:308.340000px;}
.x70_c00206{left:310.230000px;}
.x36_c00206{left:314.280000px;}
.x74_c00206{left:315.360000px;}
.x9_c00206{left:316.440000px;}
.x2d_c00206{left:319.767000px;}
.x1e_c00206{left:323.023500px;}
.x77_c00206{left:325.350000px;}
.x71_c00206{left:326.700000px;}
.x37_c00206{left:328.050000px;}
.x6d_c00206{left:330.480000px;}
.x67_c00206{left:335.070000px;}
.x14_c00206{left:336.255000px;}
.x56_c00206{left:338.962500px;}
.x4a_c00206{left:341.010000px;}
.x72_c00206{left:342.900000px;}
.x2e_c00206{left:344.655000px;}
.x50_c00206{left:346.680000px;}
.x3c_c00206{left:348.156000px;}
.x87_c00206{left:353.160000px;}
.x62_c00206{left:354.510000px;}
.x15_c00206{left:355.696500px;}
.x75_c00206{left:357.210000px;}
.xa_c00206{left:360.450000px;}
.x4b_c00206{left:363.420000px;}
.x27_c00206{left:365.850000px;}
.x5b_c00206{left:371.922000px;}
.x1f_c00206{left:375.435000px;}
.x8b_c00206{left:376.920000px;}
.x7a_c00206{left:379.080000px;}
.x38_c00206{left:381.240000px;}
.x42_c00206{left:382.590000px;}
.x2f_c00206{left:383.803500px;}
.x28_c00206{left:387.450000px;}
.x51_c00206{left:389.340000px;}
.x16_c00206{left:391.302000px;}
.x82_c00206{left:392.310000px;}
.x2_c00206{left:397.170000px;}
.x8a_c00206{left:399.870000px;}
.x68_c00206{left:403.380000px;}
.x60_c00206{left:405.003000px;}
.xb_c00206{left:409.320000px;}
.x3d_c00206{left:411.846000px;}
.x52_c00206{left:414.180000px;}
.x91_c00206{left:416.610000px;}
.x4c_c00206{left:418.770000px;}
.x30_c00206{left:422.368500px;}
.x47_c00206{left:423.900000px;}
.x20_c00206{left:427.759500px;}
.xc_c00206{left:431.460000px;}
.x88_c00206{left:434.160000px;}
.x17_c00206{left:439.663500px;}
.x31_c00206{left:442.393500px;}
.x3e_c00206{left:443.469000px;}
.x43_c00206{left:447.660000px;}
.x8c_c00206{left:448.740000px;}
.x4d_c00206{left:449.820000px;}
.x89_c00206{left:450.900000px;}
.x92_c00206{left:457.920000px;}
.x18_c00206{left:460.186500px;}
.x21_c00206{left:463.162500px;}
.xd_c00206{left:465.480000px;}
.x3_c00206{left:468.180000px;}
.x7b_c00206{left:475.470000px;}
.xe_c00206{left:486.540000px;}
.x5c_c00206{left:488.832000px;}
.x8d_c00206{left:492.210000px;}
.x29_c00206{left:496.530000px;}
.x7c_c00206{left:511.650000px;}
.xf_c00206{left:516.240000px;}
.x93_c00206{left:518.940000px;}
.x57_c00206{left:523.920000px;}
.x7d_c00206{left:526.500000px;}
.x8e_c00206{left:538.920000px;}
.x8f_c00206{left:542.160000px;}
.x4_c00206{left:544.860000px;}
.x94_c00206{left:547.560000px;}
.x7e_c00206{left:555.930000px;}
.x90_c00206{left:564.300000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.fs12_c00206{font-size:19.600000pt;}
.fs10_c00206{font-size:42.933333pt;}
.fs11_c00206{font-size:43.866667pt;}
.fse_c00206{font-size:44.800000pt;}
.fsd_c00206{font-size:45.733333pt;}
.fsf_c00206{font-size:46.666667pt;}
.fsc_c00206{font-size:47.600000pt;}
.fsa_c00206{font-size:59.733333pt;}
.fs2_c00206{font-size:60.666667pt;}
.fs8_c00206{font-size:60.669124pt;}
.fs9_c00206{font-size:61.600000pt;}
.fs4_c00206{font-size:62.533333pt;}
.fs5_c00206{font-size:62.535866pt;}
.fs7_c00206{font-size:63.466667pt;}
.fs1_c00206{font-size:64.400000pt;}
.fs6_c00206{font-size:65.333333pt;}
.fsb_c00206{font-size:68.133333pt;}
.fs3_c00206{font-size:71.866667pt;}
.fs0_c00206{font-size:113.866667pt;}
.fs13_c00206{font-size:200.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y53_c00206{bottom:126.441333pt;}
.y52_c00206{bottom:150.674667pt;}
.y55_c00206{bottom:166.826667pt;}
.y51_c00206{bottom:178.044000pt;}
.y54_c00206{bottom:182.810667pt;}
.y50_c00206{bottom:198.644000pt;}
.y4f_c00206{bottom:214.741333pt;}
.y4e_c00206{bottom:240.232000pt;}
.y4d_c00206{bottom:265.770667pt;}
.y4c_c00206{bottom:281.382667pt;}
.y4b_c00206{bottom:296.977333pt;}
.y4a_c00206{bottom:313.209333pt;}
.y49_c00206{bottom:329.056000pt;}
.y48_c00206{bottom:344.765333pt;}
.y47_c00206{bottom:360.324000pt;}
.y46_c00206{bottom:376.318667pt;}
.y45_c00206{bottom:406.432000pt;}
.y44_c00206{bottom:427.214667pt;}
.y43_c00206{bottom:447.473333pt;}
.y38_c00206{bottom:465.602667pt;}
.y39_c00206{bottom:466.012000pt;}
.y3a_c00206{bottom:466.249333pt;}
.y3b_c00206{bottom:466.510667pt;}
.y3c_c00206{bottom:466.801333pt;}
.y3d_c00206{bottom:466.962667pt;}
.y3e_c00206{bottom:467.398667pt;}
.y3f_c00206{bottom:467.677333pt;}
.y40_c00206{bottom:468.010667pt;}
.y41_c00206{bottom:468.490667pt;}
.y42_c00206{bottom:468.716000pt;}
.y31_c00206{bottom:486.721333pt;}
.y32_c00206{bottom:487.345333pt;}
.y33_c00206{bottom:487.466667pt;}
.y34_c00206{bottom:487.890667pt;}
.y35_c00206{bottom:488.158667pt;}
.y36_c00206{bottom:488.673333pt;}
.y37_c00206{bottom:489.474667pt;}
.y30_c00206{bottom:508.260000pt;}
.y2f_c00206{bottom:527.568000pt;}
.y2e_c00206{bottom:547.782667pt;}
.y2d_c00206{bottom:567.057333pt;}
.y25_c00206{bottom:586.081333pt;}
.y26_c00206{bottom:586.388077pt;}
.y27_c00206{bottom:587.077105pt;}
.y28_c00206{bottom:587.221861pt;}
.y29_c00206{bottom:587.405545pt;}
.y2a_c00206{bottom:587.770489pt;}
.y2b_c00206{bottom:588.280009pt;}
.y2c_c00206{bottom:588.532993pt;}
.y24_c00206{bottom:607.397333pt;}
.y23_c00206{bottom:628.320000pt;}
.y1a_c00206{bottom:646.801333pt;}
.y1b_c00206{bottom:647.019481pt;}
.y1c_c00206{bottom:647.483569pt;}
.y1d_c00206{bottom:647.790373pt;}
.y1e_c00206{bottom:648.267673pt;}
.y1f_c00206{bottom:648.466777pt;}
.y20_c00206{bottom:648.779965pt;}
.y21_c00206{bottom:649.088485pt;}
.y22_c00206{bottom:649.248685pt;}
.y19_c00206{bottom:669.293333pt;}
.y10_c00206{bottom:687.841333pt;}
.y11_c00206{bottom:688.038667pt;}
.y12_c00206{bottom:688.280000pt;}
.y13_c00206{bottom:688.637333pt;}
.y14_c00206{bottom:688.912000pt;}
.y15_c00206{bottom:689.196000pt;}
.y16_c00206{bottom:689.569333pt;}
.y17_c00206{bottom:689.941333pt;}
.y18_c00206{bottom:690.193333pt;}
.y3_c00206{bottom:708.241333pt;}
.y4_c00206{bottom:708.381333pt;}
.y5_c00206{bottom:708.594667pt;}
.y6_c00206{bottom:708.848000pt;}
.y7_c00206{bottom:708.977333pt;}
.y8_c00206{bottom:709.218667pt;}
.y9_c00206{bottom:709.446667pt;}
.ya_c00206{bottom:709.682667pt;}
.yb_c00206{bottom:709.821333pt;}
.yc_c00206{bottom:710.074667pt;}
.yd_c00206{bottom:710.205333pt;}
.ye_c00206{bottom:710.418667pt;}
.yf_c00206{bottom:710.564000pt;}
.y2_c00206{bottom:729.689333pt;}
.y1_c00206{bottom:771.120000pt;}
.y56_c00206{bottom:808.454667pt;}
.h14_c00206{height:19.600000pt;}
.h12_c00206{height:42.933333pt;}
.h13_c00206{height:43.866667pt;}
.h10_c00206{height:44.800000pt;}
.hf_c00206{height:45.733333pt;}
.h11_c00206{height:46.666667pt;}
.he_c00206{height:47.600000pt;}
.hc_c00206{height:59.733333pt;}
.h4_c00206{height:60.666667pt;}
.ha_c00206{height:60.669124pt;}
.hb_c00206{height:61.600000pt;}
.h6_c00206{height:62.533333pt;}
.h7_c00206{height:62.535866pt;}
.h9_c00206{height:63.466667pt;}
.h3_c00206{height:64.400000pt;}
.h8_c00206{height:65.333333pt;}
.hd_c00206{height:68.133333pt;}
.h5_c00206{height:71.866667pt;}
.h2_c00206{height:113.866667pt;}
.h15_c00206{height:200.666667pt;}
.h1_c00206{height:893.333333pt;}
.h0_c00206{height:893.466667pt;}
.w0_c00206{width:654.000000pt;}
.x0_c00206{left:0.000000pt;}
.x7f_c00206{left:91.920000pt;}
.x78_c00206{left:93.120000pt;}
.x79_c00206{left:94.080000pt;}
.x83_c00206{left:115.920000pt;}
.x19_c00206{left:117.692000pt;}
.x5_c00206{left:119.040000pt;}
.x2a_c00206{left:121.310667pt;}
.x4e_c00206{left:122.880000pt;}
.x80_c00206{left:127.200000pt;}
.x10_c00206{left:136.170667pt;}
.x1a_c00206{left:142.416000pt;}
.x2b_c00206{left:145.549333pt;}
.x22_c00206{left:147.120000pt;}
.x61_c00206{left:149.040000pt;}
.x95_c00206{left:153.360000pt;}
.x39_c00206{left:155.870667pt;}
.x5d_c00206{left:157.202667pt;}
.x63_c00206{left:159.360000pt;}
.x6_c00206{left:160.560000pt;}
.x32_c00206{left:161.520000pt;}
.x1_c00206{left:163.440000pt;}
.x44_c00206{left:165.840000pt;}
.x3f_c00206{left:167.760000pt;}
.x23_c00206{left:169.680000pt;}
.x1b_c00206{left:172.650667pt;}
.x81_c00206{left:174.240000pt;}
.x64_c00206{left:175.200000pt;}
.x48_c00206{left:176.160000pt;}
.x84_c00206{left:185.040000pt;}
.x40_c00206{left:186.240000pt;}
.x58_c00206{left:187.796000pt;}
.x33_c00206{left:189.600000pt;}
.x7_c00206{left:194.400000pt;}
.x5e_c00206{left:195.602667pt;}
.x24_c00206{left:197.520000pt;}
.x49_c00206{left:198.480000pt;}
.x53_c00206{left:199.528000pt;}
.x69_c00206{left:201.120000pt;}
.x85_c00206{left:203.280000pt;}
.x6b_c00206{left:209.280000pt;}
.x11_c00206{left:210.576000pt;}
.x54_c00206{left:214.653333pt;}
.x34_c00206{left:215.760000pt;}
.x1c_c00206{left:217.292000pt;}
.x65_c00206{left:218.400000pt;}
.x41_c00206{left:219.600000pt;}
.x45_c00206{left:221.520000pt;}
.x25_c00206{left:223.440000pt;}
.x6c_c00206{left:226.800000pt;}
.x6f_c00206{left:228.480000pt;}
.x4f_c00206{left:229.920000pt;}
.x2c_c00206{left:231.204000pt;}
.x3a_c00206{left:232.429333pt;}
.x35_c00206{left:235.920000pt;}
.x6e_c00206{left:239.760000pt;}
.x12_c00206{left:240.812000pt;}
.x59_c00206{left:242.997333pt;}
.x8_c00206{left:245.040000pt;}
.x76_c00206{left:246.000000pt;}
.x66_c00206{left:247.200000pt;}
.x3b_c00206{left:248.513333pt;}
.x1d_c00206{left:251.590667pt;}
.x6a_c00206{left:253.440000pt;}
.x73_c00206{left:257.520000pt;}
.x5a_c00206{left:259.080000pt;}
.x46_c00206{left:260.880000pt;}
.x5f_c00206{left:262.322667pt;}
.x55_c00206{left:267.730667pt;}
.x13_c00206{left:269.374667pt;}
.x26_c00206{left:271.200000pt;}
.x86_c00206{left:274.080000pt;}
.x70_c00206{left:275.760000pt;}
.x36_c00206{left:279.360000pt;}
.x74_c00206{left:280.320000pt;}
.x9_c00206{left:281.280000pt;}
.x2d_c00206{left:284.237333pt;}
.x1e_c00206{left:287.132000pt;}
.x77_c00206{left:289.200000pt;}
.x71_c00206{left:290.400000pt;}
.x37_c00206{left:291.600000pt;}
.x6d_c00206{left:293.760000pt;}
.x67_c00206{left:297.840000pt;}
.x14_c00206{left:298.893333pt;}
.x56_c00206{left:301.300000pt;}
.x4a_c00206{left:303.120000pt;}
.x72_c00206{left:304.800000pt;}
.x2e_c00206{left:306.360000pt;}
.x50_c00206{left:308.160000pt;}
.x3c_c00206{left:309.472000pt;}
.x87_c00206{left:313.920000pt;}
.x62_c00206{left:315.120000pt;}
.x15_c00206{left:316.174667pt;}
.x75_c00206{left:317.520000pt;}
.xa_c00206{left:320.400000pt;}
.x4b_c00206{left:323.040000pt;}
.x27_c00206{left:325.200000pt;}
.x5b_c00206{left:330.597333pt;}
.x1f_c00206{left:333.720000pt;}
.x8b_c00206{left:335.040000pt;}
.x7a_c00206{left:336.960000pt;}
.x38_c00206{left:338.880000pt;}
.x42_c00206{left:340.080000pt;}
.x2f_c00206{left:341.158667pt;}
.x28_c00206{left:344.400000pt;}
.x51_c00206{left:346.080000pt;}
.x16_c00206{left:347.824000pt;}
.x82_c00206{left:348.720000pt;}
.x2_c00206{left:353.040000pt;}
.x8a_c00206{left:355.440000pt;}
.x68_c00206{left:358.560000pt;}
.x60_c00206{left:360.002667pt;}
.xb_c00206{left:363.840000pt;}
.x3d_c00206{left:366.085333pt;}
.x52_c00206{left:368.160000pt;}
.x91_c00206{left:370.320000pt;}
.x4c_c00206{left:372.240000pt;}
.x30_c00206{left:375.438667pt;}
.x47_c00206{left:376.800000pt;}
.x20_c00206{left:380.230667pt;}
.xc_c00206{left:383.520000pt;}
.x88_c00206{left:385.920000pt;}
.x17_c00206{left:390.812000pt;}
.x31_c00206{left:393.238667pt;}
.x3e_c00206{left:394.194667pt;}
.x43_c00206{left:397.920000pt;}
.x8c_c00206{left:398.880000pt;}
.x4d_c00206{left:399.840000pt;}
.x89_c00206{left:400.800000pt;}
.x92_c00206{left:407.040000pt;}
.x18_c00206{left:409.054667pt;}
.x21_c00206{left:411.700000pt;}
.xd_c00206{left:413.760000pt;}
.x3_c00206{left:416.160000pt;}
.x7b_c00206{left:422.640000pt;}
.xe_c00206{left:432.480000pt;}
.x5c_c00206{left:434.517333pt;}
.x8d_c00206{left:437.520000pt;}
.x29_c00206{left:441.360000pt;}
.x7c_c00206{left:454.800000pt;}
.xf_c00206{left:458.880000pt;}
.x93_c00206{left:461.280000pt;}
.x57_c00206{left:465.706667pt;}
.x7d_c00206{left:468.000000pt;}
.x8e_c00206{left:479.040000pt;}
.x8f_c00206{left:481.920000pt;}
.x4_c00206{left:484.320000pt;}
.x94_c00206{left:486.720000pt;}
.x7e_c00206{left:494.160000pt;}
.x90_c00206{left:501.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m40_c00207{transform:matrix(0.016065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016065,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.me5_c00207{transform:matrix(0.059200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059200,0.000000,0.000000,0.250000,0,0);}
.m30_c00207{transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{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);}
.m15_c00207{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.m7a_c00207{transform:matrix(0.144210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144210,0.000000,0.000000,0.250000,0,0);}
.mb4_c00207{transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);}
.m42_c00207{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);}
.m9f_c00207{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);}
.m29_c00207{transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.mac_c00207{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);}
.m26_c00207{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);}
.mb2_c00207{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);}
.m69_c00207{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);}
.m13_c00207{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);}
.m19_c00207{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);}
.mc1_c00207{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);}
.m2c_c00207{transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);}
.m97_c00207{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);}
.m50_c00207{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);}
.m8e_c00207{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);}
.me1_c00207{transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.mc3_c00207{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);}
.m48_c00207{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);}
.m1d_c00207{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);}
.m73_c00207{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);}
.m93_c00207{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);}
.mc8_c00207{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);}
.mc0_c00207{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);}
.m5d_c00207{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);}
.m23_c00207{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);}
.m53_c00207{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);}
.mbd_c00207{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);}
.mb_c00207{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);}
.m35_c00207{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);}
.m1_c00207{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);}
.mb5_c00207{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{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);}
.maa_c00207{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);}
.m84_c00207{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);}
.ma0_c00207{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);}
.m28_c00207{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);}
.m75_c00207{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);}
.me_c00207{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);}
.m27_c00207{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);}
.mb7_c00207{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);}
.m14_c00207{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);}
.m2e_c00207{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_c00207{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_c00207{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);}
.ma6_c00207{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);}
.m1a_c00207{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);}
.m6f_c00207{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);}
.ma_c00207{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);}
.m88_c00207{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);}
.m45_c00207{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);}
.m1c_c00207{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);}
.m64_c00207{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);}
.m10_c00207{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);}
.m8d_c00207{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);}
.m25_c00207{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);}
.m6e_c00207{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);}
.mb6_c00207{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);}
.m37_c00207{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);}
.m47_c00207{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);}
.m36_c00207{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);}
.m54_c00207{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);}
.m24_c00207{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);}
.m5a_c00207{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);}
.m5c_c00207{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);}
.m79_c00207{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);}
.m8c_c00207{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);}
.mda_c00207{transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);}
.m6_c00207{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);}
.mb0_c00207{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);}
.mb9_c00207{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);}
.m4c_c00207{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);}
.m2b_c00207{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);}
.m2a_c00207{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);}
.m7_c00207{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);}
.m92_c00207{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);}
.mf_c00207{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);}
.m1f_c00207{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);}
.m65_c00207{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);}
.m94_c00207{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);}
.m98_c00207{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);}
.m99_c00207{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);}
.m3_c00207{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);}
.me7_c00207{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);}
.m78_c00207{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);}
.m4b_c00207{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);}
.m46_c00207{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);}
.m3b_c00207{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);}
.mdd_c00207{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);}
.m71_c00207{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);}
.m72_c00207{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);}
.m34_c00207{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);}
.md7_c00207{transform:matrix(0.198191,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198191,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198191,0.002775,-0.003500,0.249976,0,0);}
.mae_c00207{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);}
.m12_c00207{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);}
.m63_c00207{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);}
.m1b_c00207{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);}
.mc5_c00207{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);}
.m6d_c00207{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);}
.m33_c00207{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);}
.mad_c00207{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);}
.m11_c00207{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);}
.m31_c00207{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);}
.m55_c00207{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);}
.mbb_c00207{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);}
.maf_c00207{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);}
.m7d_c00207{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);}
.m2_c00207{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);}
.mbe_c00207{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);}
.m6c_c00207{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);}
.m4e_c00207{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);}
.m7c_c00207{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);}
.med_c00207{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);}
.mca_c00207{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);}
.m5b_c00207{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);}
.m60_c00207{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);}
.mc4_c00207{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);}
.m4d_c00207{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);}
.me3_c00207{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);}
.m6b_c00207{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);}
.m2f_c00207{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);}
.me9_c00207{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);}
.m32_c00207{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);}
.mcd_c00207{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);}
.m51_c00207{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);}
.m8b_c00207{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);}
.m62_c00207{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);}
.meb_c00207{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);}
.m91_c00207{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);}
.m9d_c00207{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);}
.me2_c00207{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);}
.m86_c00207{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);}
.m44_c00207{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);}
.me4_c00207{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);}
.me8_c00207{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);}
.ma3_c00207{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);}
.m68_c00207{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);}
.m9a_c00207{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);}
.ma8_c00207{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);}
.m52_c00207{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);}
.md_c00207{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);}
.me0_c00207{transform:matrix(0.219154,0.003068,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219154,0.003068,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219154,0.003068,-0.003500,0.249976,0,0);}
.md6_c00207{transform:matrix(0.219683,0.003076,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219683,0.003076,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219683,0.003076,-0.003500,0.249976,0,0);}
.m9c_c00207{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);}
.mb3_c00207{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);}
.me6_c00207{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);}
.mb1_c00207{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);}
.m4f_c00207{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);}
.mab_c00207{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);}
.m76_c00207{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);}
.md9_c00207{transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);}
.m87_c00207{transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);}
.m3f_c00207{transform:matrix(0.223105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223105,0.000000,0.000000,0.250000,0,0);}
.m58_c00207{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);}
.m90_c00207{transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);}
.m9e_c00207{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);}
.m3c_c00207{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);}
.m38_c00207{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);}
.m3e_c00207{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.mbf_c00207{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);}
.mc_c00207{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);}
.m7e_c00207{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);}
.mea_c00207{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);}
.mcc_c00207{transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);}
.m8f_c00207{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);}
.m3d_c00207{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);}
.m9b_c00207{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);}
.m4_c00207{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);}
.mbc_c00207{transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);}
.m83_c00207{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);}
.m22_c00207{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);}
.mec_c00207{transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);}
.mdc_c00207{transform:matrix(0.238742,0.003342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238742,0.003342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238742,0.003342,-0.003500,0.249976,0,0);}
.m39_c00207{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);}
.mc2_c00207{transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{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);}
.m80_c00207{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);}
.m49_c00207{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);}
.ma4_c00207{transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245815,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{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);}
.m21_c00207{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.mb8_c00207{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m56_c00207{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.mde_c00207{transform:matrix(0.249781,0.003497,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249781,0.003497,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249781,0.003497,-0.003500,0.249976,0,0);}
.ma5_c00207{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);}
.m6a_c00207{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);}
.m3a_c00207{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m70_c00207{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);}
.m41_c00207{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.ma9_c00207{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);}
.m0_c00207{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);}
.mce_c00207{transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);}
.mc7_c00207{transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);}
.mba_c00207{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);}
.ma7_c00207{transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);}
.m7f_c00207{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);}
.m66_c00207{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);}
.md5_c00207{transform:matrix(0.264904,0.003709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264904,0.003709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264904,0.003709,-0.003500,0.249976,0,0);}
.mc6_c00207{transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);}
.m7b_c00207{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);}
.m8_c00207{transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);}
.m2d_c00207{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);}
.m8a_c00207{transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);}
.m82_c00207{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);}
.ma2_c00207{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);}
.m89_c00207{transform:matrix(0.281600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281600,0.000000,0.000000,0.250000,0,0);}
.m43_c00207{transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00207{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.md0_c00207{transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288940,0.000000,0.000000,0.250000,0,0);}
.m77_c00207{transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292080,0.000000,0.000000,0.250000,0,0);}
.m61_c00207{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);}
.m96_c00207{transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304070,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00207{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.md1_c00207{transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327410,0.000000,0.000000,0.250000,0,0);}
.md8_c00207{transform:matrix(0.338672,0.004741,-0.003500,0.249976,0,0);-ms-transform:matrix(0.338672,0.004741,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.338672,0.004741,-0.003500,0.249976,0,0);}
.m67_c00207{transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348980,0.000000,0.000000,0.250000,0,0);}
.mdb_c00207{transform:matrix(0.358560,0.005020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.358560,0.005020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.358560,0.005020,-0.003500,0.249976,0,0);}
.mc9_c00207{transform:matrix(0.379670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379670,0.000000,0.000000,0.250000,0,0);}
.md3_c00207{transform:matrix(0.422415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422415,0.000000,0.000000,0.250000,0,0);}
.md4_c00207{transform:matrix(0.425600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425600,0.000000,0.000000,0.250000,0,0);}
.m81_c00207{transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);}
.md2_c00207{transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);}
.mcb_c00207{transform:matrix(0.479350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479350,0.000000,0.000000,0.250000,0,0);}
.mdf_c00207{transform:matrix(0.517449,0.007244,-0.003500,0.249976,0,0);-ms-transform:matrix(0.517449,0.007244,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.517449,0.007244,-0.003500,0.249976,0,0);}
.ma1_c00207{transform:matrix(0.517530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517530,0.000000,0.000000,0.250000,0,0);}
.m95_c00207{transform:matrix(0.533520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533520,0.000000,0.000000,0.250000,0,0);}
.m85_c00207{transform:matrix(0.801690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801690,0.000000,0.000000,0.250000,0,0);}
.mcf_c00207{transform:matrix(0.810145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810145,0.000000,0.000000,0.250000,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;}
.fs10_c00207{font-size:42.000000px;}
.fsf_c00207{font-size:45.150000px;}
.fse_c00207{font-size:49.350000px;}
.fsa_c00207{font-size:61.950000px;}
.fs7_c00207{font-size:63.000000px;}
.fs8_c00207{font-size:64.050000px;}
.fs6_c00207{font-size:66.150000px;}
.fsb_c00207{font-size:67.200000px;}
.fs5_c00207{font-size:68.250000px;}
.fs4_c00207{font-size:69.300000px;}
.fs0_c00207{font-size:70.350000px;}
.fsd_c00207{font-size:70.356894px;}
.fs9_c00207{font-size:71.400000px;}
.fs1_c00207{font-size:72.450000px;}
.fs2_c00207{font-size:73.500000px;}
.fs3_c00207{font-size:74.550000px;}
.fsc_c00207{font-size:95.550000px;}
.y0_c00207{bottom:0.000000px;}
.y6d_c00207{bottom:154.197000px;}
.y6c_c00207{bottom:169.215000px;}
.y6b_c00207{bottom:184.230000px;}
.y6a_c00207{bottom:206.013405px;}
.y69_c00207{bottom:206.267652px;}
.y68_c00207{bottom:206.489811px;}
.y67_c00207{bottom:206.933793px;}
.y66_c00207{bottom:207.428721px;}
.y65_c00207{bottom:207.758715px;}
.y64_c00207{bottom:208.576224px;}
.y63_c00207{bottom:208.859703px;}
.y62_c00207{bottom:209.325231px;}
.y61_c00207{bottom:209.595879px;}
.y60_c00207{bottom:210.041709px;}
.y5f_c00207{bottom:210.333000px;}
.y5e_c00207{bottom:230.557500px;}
.y5d_c00207{bottom:250.564500px;}
.y5c_c00207{bottom:251.358000px;}
.y5b_c00207{bottom:251.586000px;}
.y5a_c00207{bottom:252.265500px;}
.y59_c00207{bottom:252.597000px;}
.y58_c00207{bottom:253.459500px;}
.y57_c00207{bottom:254.379000px;}
.y56_c00207{bottom:254.869500px;}
.y55_c00207{bottom:255.666000px;}
.y54_c00207{bottom:255.960000px;}
.y53_c00207{bottom:275.482500px;}
.y52_c00207{bottom:275.854500px;}
.y51_c00207{bottom:276.229500px;}
.y50_c00207{bottom:276.712500px;}
.y4f_c00207{bottom:277.215000px;}
.y4e_c00207{bottom:277.404000px;}
.y4d_c00207{bottom:277.639500px;}
.y4c_c00207{bottom:277.963500px;}
.y4b_c00207{bottom:278.368500px;}
.y4a_c00207{bottom:299.299500px;}
.y49_c00207{bottom:321.759000px;}
.y48_c00207{bottom:345.399000px;}
.y47_c00207{bottom:367.821000px;}
.y46_c00207{bottom:388.443000px;}
.y45_c00207{bottom:388.452000px;}
.y44_c00207{bottom:389.242500px;}
.y43_c00207{bottom:390.103500px;}
.y42_c00207{bottom:390.439500px;}
.y41_c00207{bottom:390.691500px;}
.y40_c00207{bottom:391.134000px;}
.y3f_c00207{bottom:391.591500px;}
.y3e_c00207{bottom:392.197500px;}
.y3d_c00207{bottom:392.581500px;}
.y3c_c00207{bottom:413.194500px;}
.y3b_c00207{bottom:434.475000px;}
.y3a_c00207{bottom:434.694000px;}
.y39_c00207{bottom:435.174000px;}
.y38_c00207{bottom:435.826500px;}
.y37_c00207{bottom:436.275000px;}
.y36_c00207{bottom:436.470000px;}
.y35_c00207{bottom:436.764000px;}
.y34_c00207{bottom:437.118000px;}
.y33_c00207{bottom:437.419500px;}
.y32_c00207{bottom:437.671500px;}
.y31_c00207{bottom:458.671500px;}
.y30_c00207{bottom:479.007000px;}
.y2f_c00207{bottom:479.521500px;}
.y2e_c00207{bottom:480.754500px;}
.y2d_c00207{bottom:481.272000px;}
.y2c_c00207{bottom:482.284500px;}
.y2b_c00207{bottom:482.806500px;}
.y2a_c00207{bottom:483.910500px;}
.y29_c00207{bottom:484.383000px;}
.y28_c00207{bottom:503.100000px;}
.y27_c00207{bottom:503.128500px;}
.y26_c00207{bottom:503.805000px;}
.y25_c00207{bottom:503.932500px;}
.y24_c00207{bottom:504.336000px;}
.y23_c00207{bottom:504.681000px;}
.y22_c00207{bottom:505.111500px;}
.y21_c00207{bottom:505.302000px;}
.y20_c00207{bottom:505.684500px;}
.y1f_c00207{bottom:505.995000px;}
.y1e_c00207{bottom:506.251500px;}
.y1d_c00207{bottom:528.595500px;}
.y1c_c00207{bottom:551.134500px;}
.y1b_c00207{bottom:572.901000px;}
.y1a_c00207{bottom:573.115500px;}
.y19_c00207{bottom:573.256500px;}
.y18_c00207{bottom:574.017000px;}
.y17_c00207{bottom:574.051500px;}
.y16_c00207{bottom:574.629000px;}
.y15_c00207{bottom:574.959000px;}
.y14_c00207{bottom:575.223000px;}
.y13_c00207{bottom:575.641500px;}
.y12_c00207{bottom:597.232500px;}
.y11_c00207{bottom:619.758000px;}
.y10_c00207{bottom:642.153000px;}
.yf_c00207{bottom:663.930000px;}
.ye_c00207{bottom:664.465500px;}
.yd_c00207{bottom:664.759500px;}
.yc_c00207{bottom:665.218500px;}
.yb_c00207{bottom:665.473500px;}
.ya_c00207{bottom:666.049500px;}
.y9_c00207{bottom:666.421500px;}
.y8_c00207{bottom:667.171500px;}
.y7_c00207{bottom:688.305000px;}
.y6_c00207{bottom:711.772500px;}
.y5_c00207{bottom:734.205000px;}
.y4_c00207{bottom:757.407000px;}
.y3_c00207{bottom:780.430500px;}
.y2_c00207{bottom:803.997000px;}
.y1_c00207{bottom:826.668000px;}
.h12_c00207{height:42.000000px;}
.h11_c00207{height:45.150000px;}
.h10_c00207{height:49.350000px;}
.hc_c00207{height:61.950000px;}
.h9_c00207{height:63.000000px;}
.ha_c00207{height:64.050000px;}
.h8_c00207{height:66.150000px;}
.hd_c00207{height:67.200000px;}
.h7_c00207{height:68.250000px;}
.h6_c00207{height:69.300000px;}
.h2_c00207{height:70.350000px;}
.hf_c00207{height:70.356894px;}
.hb_c00207{height:71.400000px;}
.h3_c00207{height:72.450000px;}
.h4_c00207{height:73.500000px;}
.h5_c00207{height:74.550000px;}
.he_c00207{height:95.550000px;}
.h0_c00207{height:1008.450000px;}
.h1_c00207{height:1008.750000px;}
.w0_c00207{width:678.450000px;}
.w1_c00207{width:678.750000px;}
.x0_c00207{left:0.000000px;}
.x77_c00207{left:147.690000px;}
.x39_c00207{left:154.440000px;}
.x80_c00207{left:156.150000px;}
.x6f_c00207{left:157.680000px;}
.x27_c00207{left:159.030000px;}
.x1_c00207{left:160.110000px;}
.x18_c00207{left:161.190000px;}
.x87_c00207{left:175.882500px;}
.x70_c00207{left:179.280000px;}
.x19_c00207{left:183.600000px;}
.x40_c00207{left:186.300000px;}
.x2d_c00207{left:187.380000px;}
.x4f_c00207{left:190.243500px;}
.x59_c00207{left:192.321000px;}
.x9_c00207{left:193.860000px;}
.x7b_c00207{left:198.058500px;}
.x11_c00207{left:201.150000px;}
.x3a_c00207{left:202.230000px;}
.x20_c00207{left:204.390000px;}
.x88_c00207{left:207.727500px;}
.x2_c00207{left:210.330000px;}
.x8c_c00207{left:212.220000px;}
.x65_c00207{left:213.435000px;}
.x74_c00207{left:216.810000px;}
.x12_c00207{left:218.430000px;}
.x60_c00207{left:222.208500px;}
.x75_c00207{left:224.100000px;}
.x41_c00207{left:225.990000px;}
.x89_c00207{left:227.059500px;}
.x50_c00207{left:229.125000px;}
.x7c_c00207{left:230.499000px;}
.x28_c00207{left:232.470000px;}
.x45_c00207{left:233.962500px;}
.x4c_c00207{left:237.870000px;}
.xa_c00207{left:240.300000px;}
.x21_c00207{left:242.460000px;}
.x13_c00207{left:244.080000px;}
.x3_c00207{left:245.430000px;}
.x71_c00207{left:247.050000px;}
.x3b_c00207{left:249.210000px;}
.x8d_c00207{left:251.640000px;}
.xb_c00207{left:252.990000px;}
.x8a_c00207{left:260.311500px;}
.x6b_c00207{left:262.980000px;}
.x76_c00207{left:267.300000px;}
.x8e_c00207{left:268.920000px;}
.x2e_c00207{left:270.000000px;}
.x5a_c00207{left:271.161000px;}
.x7d_c00207{left:272.847000px;}
.x4_c00207{left:274.050000px;}
.x42_c00207{left:275.670000px;}
.x51_c00207{left:276.936000px;}
.x66_c00207{left:278.265000px;}
.x72_c00207{left:279.450000px;}
.x1a_c00207{left:281.070000px;}
.x33_c00207{left:284.995500px;}
.x6c_c00207{left:286.833000px;}
.x49_c00207{left:288.900000px;}
.x22_c00207{left:291.330000px;}
.x67_c00207{left:297.708000px;}
.x52_c00207{left:300.669000px;}
.x14_c00207{left:302.130000px;}
.x3c_c00207{left:305.910000px;}
.x5b_c00207{left:308.413500px;}
.x29_c00207{left:310.230000px;}
.xc_c00207{left:315.090000px;}
.x4a_c00207{left:317.250000px;}
.x73_c00207{left:324.000000px;}
.x15_c00207{left:327.240000px;}
.x2f_c00207{left:332.100000px;}
.xd_c00207{left:335.070000px;}
.x61_c00207{left:337.498500px;}
.x46_c00207{left:338.703000px;}
.x68_c00207{left:342.529500px;}
.x1b_c00207{left:345.060000px;}
.x5_c00207{left:347.760000px;}
.x34_c00207{left:349.005000px;}
.x6d_c00207{left:350.035500px;}
.x16_c00207{left:351.810000px;}
.x53_c00207{left:354.435000px;}
.x3d_c00207{left:355.860000px;}
.x78_c00207{left:357.210000px;}
.x4d_c00207{left:358.290000px;}
.x2a_c00207{left:361.800000px;}
.x43_c00207{left:364.500000px;}
.x6_c00207{left:369.630000px;}
.x7e_c00207{left:371.446500px;}
.xe_c00207{left:374.220000px;}
.x35_c00207{left:377.334000px;}
.x4e_c00207{left:379.620000px;}
.x5c_c00207{left:380.778000px;}
.x23_c00207{left:385.020000px;}
.x4b_c00207{left:388.800000px;}
.x2b_c00207{left:390.420000px;}
.x30_c00207{left:391.500000px;}
.x62_c00207{left:393.388500px;}
.x54_c00207{left:397.642500px;}
.x7_c00207{left:400.680000px;}
.x24_c00207{left:405.810000px;}
.x1c_c00207{left:407.700000px;}
.x7f_c00207{left:408.967500px;}
.xf_c00207{left:412.020000px;}
.x81_c00207{left:415.039500px;}
.x5d_c00207{left:417.753000px;}
.x47_c00207{left:423.223500px;}
.x10_c00207{left:426.330000px;}
.x36_c00207{left:428.374500px;}
.x8b_c00207{left:429.589500px;}
.x31_c00207{left:433.350000px;}
.x79_c00207{left:434.970000px;}
.x44_c00207{left:436.590000px;}
.x17_c00207{left:438.210000px;}
.x82_c00207{left:440.527500px;}
.x25_c00207{left:442.260000px;}
.x8_c00207{left:443.880000px;}
.x1d_c00207{left:445.500000px;}
.x63_c00207{left:447.118500px;}
.x55_c00207{left:448.131000px;}
.x3e_c00207{left:453.870000px;}
.x69_c00207{left:455.899500px;}
.x32_c00207{left:458.190000px;}
.x37_c00207{left:461.005500px;}
.x48_c00207{left:462.675000px;}
.x56_c00207{left:464.028000px;}
.x26_c00207{left:466.020000px;}
.x64_c00207{left:472.228500px;}
.x2c_c00207{left:475.470000px;}
.x6a_c00207{left:477.769500px;}
.x7a_c00207{left:482.490000px;}
.x1e_c00207{left:486.540000px;}
.x83_c00207{left:492.775500px;}
.x3f_c00207{left:495.990000px;}
.x5e_c00207{left:505.809000px;}
.x84_c00207{left:510.354000px;}
.x38_c00207{left:520.555500px;}
.x6e_c00207{left:530.650500px;}
.x1f_c00207{left:533.520000px;}
.x5f_c00207{left:542.571000px;}
.x57_c00207{left:548.547000px;}
.x58_c00207{left:552.120000px;}
.x86_c00207{left:554.850000px;}
.x85_c00207{left:571.374000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fs10_c00207{font-size:37.333333pt;}
.fsf_c00207{font-size:40.133333pt;}
.fse_c00207{font-size:43.866667pt;}
.fsa_c00207{font-size:55.066667pt;}
.fs7_c00207{font-size:56.000000pt;}
.fs8_c00207{font-size:56.933333pt;}
.fs6_c00207{font-size:58.800000pt;}
.fsb_c00207{font-size:59.733333pt;}
.fs5_c00207{font-size:60.666667pt;}
.fs4_c00207{font-size:61.600000pt;}
.fs0_c00207{font-size:62.533333pt;}
.fsd_c00207{font-size:62.539461pt;}
.fs9_c00207{font-size:63.466667pt;}
.fs1_c00207{font-size:64.400000pt;}
.fs2_c00207{font-size:65.333333pt;}
.fs3_c00207{font-size:66.266667pt;}
.fsc_c00207{font-size:84.933333pt;}
.y0_c00207{bottom:0.000000pt;}
.y6d_c00207{bottom:137.064000pt;}
.y6c_c00207{bottom:150.413333pt;}
.y6b_c00207{bottom:163.760000pt;}
.y6a_c00207{bottom:183.123027pt;}
.y69_c00207{bottom:183.349024pt;}
.y68_c00207{bottom:183.546499pt;}
.y67_c00207{bottom:183.941149pt;}
.y66_c00207{bottom:184.381085pt;}
.y65_c00207{bottom:184.674413pt;}
.y64_c00207{bottom:185.401088pt;}
.y63_c00207{bottom:185.653069pt;}
.y62_c00207{bottom:186.066872pt;}
.y61_c00207{bottom:186.307448pt;}
.y60_c00207{bottom:186.703741pt;}
.y5f_c00207{bottom:186.962667pt;}
.y5e_c00207{bottom:204.940000pt;}
.y5d_c00207{bottom:222.724000pt;}
.y5c_c00207{bottom:223.429333pt;}
.y5b_c00207{bottom:223.632000pt;}
.y5a_c00207{bottom:224.236000pt;}
.y59_c00207{bottom:224.530667pt;}
.y58_c00207{bottom:225.297333pt;}
.y57_c00207{bottom:226.114667pt;}
.y56_c00207{bottom:226.550667pt;}
.y55_c00207{bottom:227.258667pt;}
.y54_c00207{bottom:227.520000pt;}
.y53_c00207{bottom:244.873333pt;}
.y52_c00207{bottom:245.204000pt;}
.y51_c00207{bottom:245.537333pt;}
.y50_c00207{bottom:245.966667pt;}
.y4f_c00207{bottom:246.413333pt;}
.y4e_c00207{bottom:246.581333pt;}
.y4d_c00207{bottom:246.790667pt;}
.y4c_c00207{bottom:247.078667pt;}
.y4b_c00207{bottom:247.438667pt;}
.y4a_c00207{bottom:266.044000pt;}
.y49_c00207{bottom:286.008000pt;}
.y48_c00207{bottom:307.021333pt;}
.y47_c00207{bottom:326.952000pt;}
.y46_c00207{bottom:345.282667pt;}
.y45_c00207{bottom:345.290667pt;}
.y44_c00207{bottom:345.993333pt;}
.y43_c00207{bottom:346.758667pt;}
.y42_c00207{bottom:347.057333pt;}
.y41_c00207{bottom:347.281333pt;}
.y40_c00207{bottom:347.674667pt;}
.y3f_c00207{bottom:348.081333pt;}
.y3e_c00207{bottom:348.620000pt;}
.y3d_c00207{bottom:348.961333pt;}
.y3c_c00207{bottom:367.284000pt;}
.y3b_c00207{bottom:386.200000pt;}
.y3a_c00207{bottom:386.394667pt;}
.y39_c00207{bottom:386.821333pt;}
.y38_c00207{bottom:387.401333pt;}
.y37_c00207{bottom:387.800000pt;}
.y36_c00207{bottom:387.973333pt;}
.y35_c00207{bottom:388.234667pt;}
.y34_c00207{bottom:388.549333pt;}
.y33_c00207{bottom:388.817333pt;}
.y32_c00207{bottom:389.041333pt;}
.y31_c00207{bottom:407.708000pt;}
.y30_c00207{bottom:425.784000pt;}
.y2f_c00207{bottom:426.241333pt;}
.y2e_c00207{bottom:427.337333pt;}
.y2d_c00207{bottom:427.797333pt;}
.y2c_c00207{bottom:428.697333pt;}
.y2b_c00207{bottom:429.161333pt;}
.y2a_c00207{bottom:430.142667pt;}
.y29_c00207{bottom:430.562667pt;}
.y28_c00207{bottom:447.200000pt;}
.y27_c00207{bottom:447.225333pt;}
.y26_c00207{bottom:447.826667pt;}
.y25_c00207{bottom:447.940000pt;}
.y24_c00207{bottom:448.298667pt;}
.y23_c00207{bottom:448.605333pt;}
.y22_c00207{bottom:448.988000pt;}
.y21_c00207{bottom:449.157333pt;}
.y20_c00207{bottom:449.497333pt;}
.y1f_c00207{bottom:449.773333pt;}
.y1e_c00207{bottom:450.001333pt;}
.y1d_c00207{bottom:469.862667pt;}
.y1c_c00207{bottom:489.897333pt;}
.y1b_c00207{bottom:509.245333pt;}
.y1a_c00207{bottom:509.436000pt;}
.y19_c00207{bottom:509.561333pt;}
.y18_c00207{bottom:510.237333pt;}
.y17_c00207{bottom:510.268000pt;}
.y16_c00207{bottom:510.781333pt;}
.y15_c00207{bottom:511.074667pt;}
.y14_c00207{bottom:511.309333pt;}
.y13_c00207{bottom:511.681333pt;}
.y12_c00207{bottom:530.873333pt;}
.y11_c00207{bottom:550.896000pt;}
.y10_c00207{bottom:570.802667pt;}
.yf_c00207{bottom:590.160000pt;}
.ye_c00207{bottom:590.636000pt;}
.yd_c00207{bottom:590.897333pt;}
.yc_c00207{bottom:591.305333pt;}
.yb_c00207{bottom:591.532000pt;}
.ya_c00207{bottom:592.044000pt;}
.y9_c00207{bottom:592.374667pt;}
.y8_c00207{bottom:593.041333pt;}
.y7_c00207{bottom:611.826667pt;}
.y6_c00207{bottom:632.686667pt;}
.y5_c00207{bottom:652.626667pt;}
.y4_c00207{bottom:673.250667pt;}
.y3_c00207{bottom:693.716000pt;}
.y2_c00207{bottom:714.664000pt;}
.y1_c00207{bottom:734.816000pt;}
.h12_c00207{height:37.333333pt;}
.h11_c00207{height:40.133333pt;}
.h10_c00207{height:43.866667pt;}
.hc_c00207{height:55.066667pt;}
.h9_c00207{height:56.000000pt;}
.ha_c00207{height:56.933333pt;}
.h8_c00207{height:58.800000pt;}
.hd_c00207{height:59.733333pt;}
.h7_c00207{height:60.666667pt;}
.h6_c00207{height:61.600000pt;}
.h2_c00207{height:62.533333pt;}
.hf_c00207{height:62.539461pt;}
.hb_c00207{height:63.466667pt;}
.h3_c00207{height:64.400000pt;}
.h4_c00207{height:65.333333pt;}
.h5_c00207{height:66.266667pt;}
.he_c00207{height:84.933333pt;}
.h0_c00207{height:896.400000pt;}
.h1_c00207{height:896.666667pt;}
.w0_c00207{width:603.066667pt;}
.w1_c00207{width:603.333333pt;}
.x0_c00207{left:0.000000pt;}
.x77_c00207{left:131.280000pt;}
.x39_c00207{left:137.280000pt;}
.x80_c00207{left:138.800000pt;}
.x6f_c00207{left:140.160000pt;}
.x27_c00207{left:141.360000pt;}
.x1_c00207{left:142.320000pt;}
.x18_c00207{left:143.280000pt;}
.x87_c00207{left:156.340000pt;}
.x70_c00207{left:159.360000pt;}
.x19_c00207{left:163.200000pt;}
.x40_c00207{left:165.600000pt;}
.x2d_c00207{left:166.560000pt;}
.x4f_c00207{left:169.105333pt;}
.x59_c00207{left:170.952000pt;}
.x9_c00207{left:172.320000pt;}
.x7b_c00207{left:176.052000pt;}
.x11_c00207{left:178.800000pt;}
.x3a_c00207{left:179.760000pt;}
.x20_c00207{left:181.680000pt;}
.x88_c00207{left:184.646667pt;}
.x2_c00207{left:186.960000pt;}
.x8c_c00207{left:188.640000pt;}
.x65_c00207{left:189.720000pt;}
.x74_c00207{left:192.720000pt;}
.x12_c00207{left:194.160000pt;}
.x60_c00207{left:197.518667pt;}
.x75_c00207{left:199.200000pt;}
.x41_c00207{left:200.880000pt;}
.x89_c00207{left:201.830667pt;}
.x50_c00207{left:203.666667pt;}
.x7c_c00207{left:204.888000pt;}
.x28_c00207{left:206.640000pt;}
.x45_c00207{left:207.966667pt;}
.x4c_c00207{left:211.440000pt;}
.xa_c00207{left:213.600000pt;}
.x21_c00207{left:215.520000pt;}
.x13_c00207{left:216.960000pt;}
.x3_c00207{left:218.160000pt;}
.x71_c00207{left:219.600000pt;}
.x3b_c00207{left:221.520000pt;}
.x8d_c00207{left:223.680000pt;}
.xb_c00207{left:224.880000pt;}
.x8a_c00207{left:231.388000pt;}
.x6b_c00207{left:233.760000pt;}
.x76_c00207{left:237.600000pt;}
.x8e_c00207{left:239.040000pt;}
.x2e_c00207{left:240.000000pt;}
.x5a_c00207{left:241.032000pt;}
.x7d_c00207{left:242.530667pt;}
.x4_c00207{left:243.600000pt;}
.x42_c00207{left:245.040000pt;}
.x51_c00207{left:246.165333pt;}
.x66_c00207{left:247.346667pt;}
.x72_c00207{left:248.400000pt;}
.x1a_c00207{left:249.840000pt;}
.x33_c00207{left:253.329333pt;}
.x6c_c00207{left:254.962667pt;}
.x49_c00207{left:256.800000pt;}
.x22_c00207{left:258.960000pt;}
.x67_c00207{left:264.629333pt;}
.x52_c00207{left:267.261333pt;}
.x14_c00207{left:268.560000pt;}
.x3c_c00207{left:271.920000pt;}
.x5b_c00207{left:274.145333pt;}
.x29_c00207{left:275.760000pt;}
.xc_c00207{left:280.080000pt;}
.x4a_c00207{left:282.000000pt;}
.x73_c00207{left:288.000000pt;}
.x15_c00207{left:290.880000pt;}
.x2f_c00207{left:295.200000pt;}
.xd_c00207{left:297.840000pt;}
.x61_c00207{left:299.998667pt;}
.x46_c00207{left:301.069333pt;}
.x68_c00207{left:304.470667pt;}
.x1b_c00207{left:306.720000pt;}
.x5_c00207{left:309.120000pt;}
.x34_c00207{left:310.226667pt;}
.x6d_c00207{left:311.142667pt;}
.x16_c00207{left:312.720000pt;}
.x53_c00207{left:315.053333pt;}
.x3d_c00207{left:316.320000pt;}
.x78_c00207{left:317.520000pt;}
.x4d_c00207{left:318.480000pt;}
.x2a_c00207{left:321.600000pt;}
.x43_c00207{left:324.000000pt;}
.x6_c00207{left:328.560000pt;}
.x7e_c00207{left:330.174667pt;}
.xe_c00207{left:332.640000pt;}
.x35_c00207{left:335.408000pt;}
.x4e_c00207{left:337.440000pt;}
.x5c_c00207{left:338.469333pt;}
.x23_c00207{left:342.240000pt;}
.x4b_c00207{left:345.600000pt;}
.x2b_c00207{left:347.040000pt;}
.x30_c00207{left:348.000000pt;}
.x62_c00207{left:349.678667pt;}
.x54_c00207{left:353.460000pt;}
.x7_c00207{left:356.160000pt;}
.x24_c00207{left:360.720000pt;}
.x1c_c00207{left:362.400000pt;}
.x7f_c00207{left:363.526667pt;}
.xf_c00207{left:366.240000pt;}
.x81_c00207{left:368.924000pt;}
.x5d_c00207{left:371.336000pt;}
.x47_c00207{left:376.198667pt;}
.x10_c00207{left:378.960000pt;}
.x36_c00207{left:380.777333pt;}
.x8b_c00207{left:381.857333pt;}
.x31_c00207{left:385.200000pt;}
.x79_c00207{left:386.640000pt;}
.x44_c00207{left:388.080000pt;}
.x17_c00207{left:389.520000pt;}
.x82_c00207{left:391.580000pt;}
.x25_c00207{left:393.120000pt;}
.x8_c00207{left:394.560000pt;}
.x1d_c00207{left:396.000000pt;}
.x63_c00207{left:397.438667pt;}
.x55_c00207{left:398.338667pt;}
.x3e_c00207{left:403.440000pt;}
.x69_c00207{left:405.244000pt;}
.x32_c00207{left:407.280000pt;}
.x37_c00207{left:409.782667pt;}
.x48_c00207{left:411.266667pt;}
.x56_c00207{left:412.469333pt;}
.x26_c00207{left:414.240000pt;}
.x64_c00207{left:419.758667pt;}
.x2c_c00207{left:422.640000pt;}
.x6a_c00207{left:424.684000pt;}
.x7a_c00207{left:428.880000pt;}
.x1e_c00207{left:432.480000pt;}
.x83_c00207{left:438.022667pt;}
.x3f_c00207{left:440.880000pt;}
.x5e_c00207{left:449.608000pt;}
.x84_c00207{left:453.648000pt;}
.x38_c00207{left:462.716000pt;}
.x6e_c00207{left:471.689333pt;}
.x1f_c00207{left:474.240000pt;}
.x5f_c00207{left:482.285333pt;}
.x57_c00207{left:487.597333pt;}
.x58_c00207{left:490.773333pt;}
.x86_c00207{left:493.200000pt;}
.x85_c00207{left:507.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9e_c00208{transform:matrix(0.007587,-0.000212,0.006997,0.249902,0,0);-ms-transform:matrix(0.007587,-0.000212,0.006997,0.249902,0,0);-webkit-transform:matrix(0.007587,-0.000212,0.006997,0.249902,0,0);}
.mdf_c00208{transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.020357,-0.000570,0.006997,0.249902,0,0);-ms-transform:matrix(0.020357,-0.000570,0.006997,0.249902,0,0);-webkit-transform:matrix(0.020357,-0.000570,0.006997,0.249902,0,0);}
.m44_c00208{transform:matrix(0.025320,-0.000709,0.006997,0.249902,0,0);-ms-transform:matrix(0.025320,-0.000709,0.006997,0.249902,0,0);-webkit-transform:matrix(0.025320,-0.000709,0.006997,0.249902,0,0);}
.m8_c00208{transform:matrix(0.045959,-0.001379,0.007497,0.249888,0,0);-ms-transform:matrix(0.045959,-0.001379,0.007497,0.249888,0,0);-webkit-transform:matrix(0.045959,-0.001379,0.007497,0.249888,0,0);}
.mee_c00208{transform:matrix(0.066110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066110,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.068448,-0.001917,0.006997,0.249902,0,0);-ms-transform:matrix(0.068448,-0.001917,0.006997,0.249902,0,0);-webkit-transform:matrix(0.068448,-0.001917,0.006997,0.249902,0,0);}
.m5e_c00208{transform:matrix(0.114310,-0.003201,0.006997,0.249902,0,0);-ms-transform:matrix(0.114310,-0.003201,0.006997,0.249902,0,0);-webkit-transform:matrix(0.114310,-0.003201,0.006997,0.249902,0,0);}
.md2_c00208{transform:matrix(0.139021,-0.003893,0.006997,0.249902,0,0);-ms-transform:matrix(0.139021,-0.003893,0.006997,0.249902,0,0);-webkit-transform:matrix(0.139021,-0.003893,0.006997,0.249902,0,0);}
.m25_c00208{transform:matrix(0.147412,-0.004128,0.006997,0.249902,0,0);-ms-transform:matrix(0.147412,-0.004128,0.006997,0.249902,0,0);-webkit-transform:matrix(0.147412,-0.004128,0.006997,0.249902,0,0);}
.md7_c00208{transform:matrix(0.148182,-0.004149,0.006997,0.249902,0,0);-ms-transform:matrix(0.148182,-0.004149,0.006997,0.249902,0,0);-webkit-transform:matrix(0.148182,-0.004149,0.006997,0.249902,0,0);}
.mcc_c00208{transform:matrix(0.149012,-0.004172,0.006997,0.249902,0,0);-ms-transform:matrix(0.149012,-0.004172,0.006997,0.249902,0,0);-webkit-transform:matrix(0.149012,-0.004172,0.006997,0.249902,0,0);}
.me0_c00208{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);}
.m21_c00208{transform:matrix(0.151086,-0.004230,0.006997,0.249902,0,0);-ms-transform:matrix(0.151086,-0.004230,0.006997,0.249902,0,0);-webkit-transform:matrix(0.151086,-0.004230,0.006997,0.249902,0,0);}
.maa_c00208{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);}
.mad_c00208{transform:matrix(0.153345,-0.004294,0.006997,0.249902,0,0);-ms-transform:matrix(0.153345,-0.004294,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153345,-0.004294,0.006997,0.249902,0,0);}
.md1_c00208{transform:matrix(0.153595,-0.004301,0.006997,0.249902,0,0);-ms-transform:matrix(0.153595,-0.004301,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153595,-0.004301,0.006997,0.249902,0,0);}
.m6a_c00208{transform:matrix(0.153835,-0.004307,0.006997,0.249902,0,0);-ms-transform:matrix(0.153835,-0.004307,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153835,-0.004307,0.006997,0.249902,0,0);}
.m51_c00208{transform:matrix(0.155364,-0.004350,0.006997,0.249902,0,0);-ms-transform:matrix(0.155364,-0.004350,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155364,-0.004350,0.006997,0.249902,0,0);}
.mdb_c00208{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);}
.m2b_c00208{transform:matrix(0.156464,-0.004381,0.006997,0.249902,0,0);-ms-transform:matrix(0.156464,-0.004381,0.006997,0.249902,0,0);-webkit-transform:matrix(0.156464,-0.004381,0.006997,0.249902,0,0);}
.mdc_c00208{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);}
.m85_c00208{transform:matrix(0.158633,-0.004442,0.006997,0.249902,0,0);-ms-transform:matrix(0.158633,-0.004442,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158633,-0.004442,0.006997,0.249902,0,0);}
.mbf_c00208{transform:matrix(0.160177,-0.004485,0.006997,0.249902,0,0);-ms-transform:matrix(0.160177,-0.004485,0.006997,0.249902,0,0);-webkit-transform:matrix(0.160177,-0.004485,0.006997,0.249902,0,0);}
.m94_c00208{transform:matrix(0.162266,-0.004543,0.006997,0.249902,0,0);-ms-transform:matrix(0.162266,-0.004543,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162266,-0.004543,0.006997,0.249902,0,0);}
.m88_c00208{transform:matrix(0.163301,-0.004572,0.006997,0.249902,0,0);-ms-transform:matrix(0.163301,-0.004572,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163301,-0.004572,0.006997,0.249902,0,0);}
.md6_c00208{transform:matrix(0.163571,-0.004580,0.006997,0.249902,0,0);-ms-transform:matrix(0.163571,-0.004580,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163571,-0.004580,0.006997,0.249902,0,0);}
.m87_c00208{transform:matrix(0.163846,-0.004588,0.006997,0.249902,0,0);-ms-transform:matrix(0.163846,-0.004588,0.006997,0.249902,0,0);-webkit-transform:matrix(0.163846,-0.004588,0.006997,0.249902,0,0);}
.mc5_c00208{transform:matrix(0.165400,-0.004631,0.006997,0.249902,0,0);-ms-transform:matrix(0.165400,-0.004631,0.006997,0.249902,0,0);-webkit-transform:matrix(0.165400,-0.004631,0.006997,0.249902,0,0);}
.m63_c00208{transform:matrix(0.166260,-0.004655,0.006997,0.249902,0,0);-ms-transform:matrix(0.166260,-0.004655,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166260,-0.004655,0.006997,0.249902,0,0);}
.md0_c00208{transform:matrix(0.166850,-0.004672,0.006997,0.249902,0,0);-ms-transform:matrix(0.166850,-0.004672,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166850,-0.004672,0.006997,0.249902,0,0);}
.m3c_c00208{transform:matrix(0.167055,-0.004678,0.006997,0.249902,0,0);-ms-transform:matrix(0.167055,-0.004678,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167055,-0.004678,0.006997,0.249902,0,0);}
.md8_c00208{transform:matrix(0.167269,-0.004684,0.006997,0.249902,0,0);-ms-transform:matrix(0.167269,-0.004684,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167269,-0.004684,0.006997,0.249902,0,0);}
.mc6_c00208{transform:matrix(0.168139,-0.004708,0.006997,0.249902,0,0);-ms-transform:matrix(0.168139,-0.004708,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168139,-0.004708,0.006997,0.249902,0,0);}
.me3_c00208{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);}
.m7a_c00208{transform:matrix(0.168394,-0.004715,0.006997,0.249902,0,0);-ms-transform:matrix(0.168394,-0.004715,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168394,-0.004715,0.006997,0.249902,0,0);}
.m74_c00208{transform:matrix(0.168879,-0.004729,0.006997,0.249902,0,0);-ms-transform:matrix(0.168879,-0.004729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.168879,-0.004729,0.006997,0.249902,0,0);}
.m22_c00208{transform:matrix(0.169094,-0.004735,0.006997,0.249902,0,0);-ms-transform:matrix(0.169094,-0.004735,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169094,-0.004735,0.006997,0.249902,0,0);}
.m42_c00208{transform:matrix(0.169893,-0.004757,0.006997,0.249902,0,0);-ms-transform:matrix(0.169893,-0.004757,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169893,-0.004757,0.006997,0.249902,0,0);}
.m71_c00208{transform:matrix(0.170198,-0.004766,0.006997,0.249902,0,0);-ms-transform:matrix(0.170198,-0.004766,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170198,-0.004766,0.006997,0.249902,0,0);}
.m7b_c00208{transform:matrix(0.170278,-0.004768,0.006997,0.249902,0,0);-ms-transform:matrix(0.170278,-0.004768,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170278,-0.004768,0.006997,0.249902,0,0);}
.m83_c00208{transform:matrix(0.170818,-0.004783,0.006997,0.249902,0,0);-ms-transform:matrix(0.170818,-0.004783,0.006997,0.249902,0,0);-webkit-transform:matrix(0.170818,-0.004783,0.006997,0.249902,0,0);}
.m54_c00208{transform:matrix(0.172427,-0.004828,0.006997,0.249902,0,0);-ms-transform:matrix(0.172427,-0.004828,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172427,-0.004828,0.006997,0.249902,0,0);}
.m27_c00208{transform:matrix(0.173237,-0.004851,0.006997,0.249902,0,0);-ms-transform:matrix(0.173237,-0.004851,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173237,-0.004851,0.006997,0.249902,0,0);}
.m1d_c00208{transform:matrix(0.173272,-0.004852,0.006997,0.249902,0,0);-ms-transform:matrix(0.173272,-0.004852,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173272,-0.004852,0.006997,0.249902,0,0);}
.m36_c00208{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);}
.m7f_c00208{transform:matrix(0.173652,-0.004862,0.006997,0.249902,0,0);-ms-transform:matrix(0.173652,-0.004862,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173652,-0.004862,0.006997,0.249902,0,0);}
.m32_c00208{transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);-ms-transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);}
.me9_c00208{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);}
.m3f_c00208{transform:matrix(0.174027,-0.004873,0.006997,0.249902,0,0);-ms-transform:matrix(0.174027,-0.004873,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174027,-0.004873,0.006997,0.249902,0,0);}
.m15_c00208{transform:matrix(0.174272,-0.004880,0.006997,0.249902,0,0);-ms-transform:matrix(0.174272,-0.004880,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174272,-0.004880,0.006997,0.249902,0,0);}
.m6f_c00208{transform:matrix(0.174402,-0.004883,0.006997,0.249902,0,0);-ms-transform:matrix(0.174402,-0.004883,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174402,-0.004883,0.006997,0.249902,0,0);}
.m55_c00208{transform:matrix(0.174507,-0.004886,0.006997,0.249902,0,0);-ms-transform:matrix(0.174507,-0.004886,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174507,-0.004886,0.006997,0.249902,0,0);}
.m31_c00208{transform:matrix(0.174767,-0.004893,0.006997,0.249902,0,0);-ms-transform:matrix(0.174767,-0.004893,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174767,-0.004893,0.006997,0.249902,0,0);}
.me1_c00208{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);}
.me6_c00208{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);}
.m89_c00208{transform:matrix(0.176151,-0.004932,0.006997,0.249902,0,0);-ms-transform:matrix(0.176151,-0.004932,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176151,-0.004932,0.006997,0.249902,0,0);}
.mc0_c00208{transform:matrix(0.176351,-0.004938,0.006997,0.249902,0,0);-ms-transform:matrix(0.176351,-0.004938,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176351,-0.004938,0.006997,0.249902,0,0);}
.m77_c00208{transform:matrix(0.176491,-0.004942,0.006997,0.249902,0,0);-ms-transform:matrix(0.176491,-0.004942,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176491,-0.004942,0.006997,0.249902,0,0);}
.m9b_c00208{transform:matrix(0.178245,-0.004991,0.006997,0.249902,0,0);-ms-transform:matrix(0.178245,-0.004991,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178245,-0.004991,0.006997,0.249902,0,0);}
.m4c_c00208{transform:matrix(0.178685,-0.005003,0.006997,0.249902,0,0);-ms-transform:matrix(0.178685,-0.005003,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178685,-0.005003,0.006997,0.249902,0,0);}
.mc7_c00208{transform:matrix(0.179270,-0.005020,0.006997,0.249902,0,0);-ms-transform:matrix(0.179270,-0.005020,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179270,-0.005020,0.006997,0.249902,0,0);}
.m19_c00208{transform:matrix(0.179580,-0.005028,0.006997,0.249902,0,0);-ms-transform:matrix(0.179580,-0.005028,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179580,-0.005028,0.006997,0.249902,0,0);}
.m9a_c00208{transform:matrix(0.179755,-0.005033,0.006997,0.249902,0,0);-ms-transform:matrix(0.179755,-0.005033,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179755,-0.005033,0.006997,0.249902,0,0);}
.m37_c00208{transform:matrix(0.180279,-0.005048,0.006997,0.249902,0,0);-ms-transform:matrix(0.180279,-0.005048,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180279,-0.005048,0.006997,0.249902,0,0);}
.m3a_c00208{transform:matrix(0.180694,-0.005059,0.006997,0.249902,0,0);-ms-transform:matrix(0.180694,-0.005059,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180694,-0.005059,0.006997,0.249902,0,0);}
.m2a_c00208{transform:matrix(0.181539,-0.005083,0.006997,0.249902,0,0);-ms-transform:matrix(0.181539,-0.005083,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181539,-0.005083,0.006997,0.249902,0,0);}
.m23_c00208{transform:matrix(0.181629,-0.005086,0.006997,0.249902,0,0);-ms-transform:matrix(0.181629,-0.005086,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181629,-0.005086,0.006997,0.249902,0,0);}
.mba_c00208{transform:matrix(0.181844,-0.005092,0.006997,0.249902,0,0);-ms-transform:matrix(0.181844,-0.005092,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181844,-0.005092,0.006997,0.249902,0,0);}
.m84_c00208{transform:matrix(0.182019,-0.005097,0.006997,0.249902,0,0);-ms-transform:matrix(0.182019,-0.005097,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182019,-0.005097,0.006997,0.249902,0,0);}
.m10_c00208{transform:matrix(0.182028,-0.005461,0.007497,0.249888,0,0);-ms-transform:matrix(0.182028,-0.005461,0.007497,0.249888,0,0);-webkit-transform:matrix(0.182028,-0.005461,0.007497,0.249888,0,0);}
.m24_c00208{transform:matrix(0.182099,-0.005099,0.006997,0.249902,0,0);-ms-transform:matrix(0.182099,-0.005099,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182099,-0.005099,0.006997,0.249902,0,0);}
.m39_c00208{transform:matrix(0.182109,-0.005099,0.006997,0.249902,0,0);-ms-transform:matrix(0.182109,-0.005099,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182109,-0.005099,0.006997,0.249902,0,0);}
.m5a_c00208{transform:matrix(0.182618,-0.005113,0.006997,0.249902,0,0);-ms-transform:matrix(0.182618,-0.005113,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182618,-0.005113,0.006997,0.249902,0,0);}
.m69_c00208{transform:matrix(0.182683,-0.005115,0.006997,0.249902,0,0);-ms-transform:matrix(0.182683,-0.005115,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182683,-0.005115,0.006997,0.249902,0,0);}
.m2f_c00208{transform:matrix(0.182893,-0.005121,0.006997,0.249902,0,0);-ms-transform:matrix(0.182893,-0.005121,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182893,-0.005121,0.006997,0.249902,0,0);}
.m65_c00208{transform:matrix(0.183523,-0.005139,0.006997,0.249902,0,0);-ms-transform:matrix(0.183523,-0.005139,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183523,-0.005139,0.006997,0.249902,0,0);}
.md9_c00208{transform:matrix(0.184628,-0.005170,0.006997,0.249902,0,0);-ms-transform:matrix(0.184628,-0.005170,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184628,-0.005170,0.006997,0.249902,0,0);}
.m28_c00208{transform:matrix(0.184658,-0.005170,0.006997,0.249902,0,0);-ms-transform:matrix(0.184658,-0.005170,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184658,-0.005170,0.006997,0.249902,0,0);}
.mca_c00208{transform:matrix(0.185117,-0.005183,0.006997,0.249902,0,0);-ms-transform:matrix(0.185117,-0.005183,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185117,-0.005183,0.006997,0.249902,0,0);}
.meb_c00208{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);}
.m30_c00208{transform:matrix(0.185752,-0.005201,0.006997,0.249902,0,0);-ms-transform:matrix(0.185752,-0.005201,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185752,-0.005201,0.006997,0.249902,0,0);}
.m2d_c00208{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);}
.m3b_c00208{transform:matrix(0.186597,-0.005225,0.006997,0.249902,0,0);-ms-transform:matrix(0.186597,-0.005225,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186597,-0.005225,0.006997,0.249902,0,0);}
.m72_c00208{transform:matrix(0.187237,-0.005243,0.006997,0.249902,0,0);-ms-transform:matrix(0.187237,-0.005243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187237,-0.005243,0.006997,0.249902,0,0);}
.m3e_c00208{transform:matrix(0.187666,-0.005255,0.006997,0.249902,0,0);-ms-transform:matrix(0.187666,-0.005255,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187666,-0.005255,0.006997,0.249902,0,0);}
.mcd_c00208{transform:matrix(0.188096,-0.005267,0.006997,0.249902,0,0);-ms-transform:matrix(0.188096,-0.005267,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188096,-0.005267,0.006997,0.249902,0,0);}
.m80_c00208{transform:matrix(0.188641,-0.005282,0.006997,0.249902,0,0);-ms-transform:matrix(0.188641,-0.005282,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188641,-0.005282,0.006997,0.249902,0,0);}
.m4a_c00208{transform:matrix(0.189051,-0.005293,0.006997,0.249902,0,0);-ms-transform:matrix(0.189051,-0.005293,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189051,-0.005293,0.006997,0.249902,0,0);}
.m18_c00208{transform:matrix(0.189881,-0.005317,0.006997,0.249902,0,0);-ms-transform:matrix(0.189881,-0.005317,0.006997,0.249902,0,0);-webkit-transform:matrix(0.189881,-0.005317,0.006997,0.249902,0,0);}
.ma1_c00208{transform:matrix(0.190160,-0.005324,0.006997,0.249902,0,0);-ms-transform:matrix(0.190160,-0.005324,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190160,-0.005324,0.006997,0.249902,0,0);}
.mc4_c00208{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);}
.m14_c00208{transform:matrix(0.190500,-0.005334,0.006997,0.249902,0,0);-ms-transform:matrix(0.190500,-0.005334,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190500,-0.005334,0.006997,0.249902,0,0);}
.m50_c00208{transform:matrix(0.190985,-0.005348,0.006997,0.249902,0,0);-ms-transform:matrix(0.190985,-0.005348,0.006997,0.249902,0,0);-webkit-transform:matrix(0.190985,-0.005348,0.006997,0.249902,0,0);}
.m81_c00208{transform:matrix(0.191225,-0.005354,0.006997,0.249902,0,0);-ms-transform:matrix(0.191225,-0.005354,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191225,-0.005354,0.006997,0.249902,0,0);}
.mac_c00208{transform:matrix(0.191555,-0.005364,0.006997,0.249902,0,0);-ms-transform:matrix(0.191555,-0.005364,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191555,-0.005364,0.006997,0.249902,0,0);}
.m35_c00208{transform:matrix(0.193219,-0.005410,0.006997,0.249902,0,0);-ms-transform:matrix(0.193219,-0.005410,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193219,-0.005410,0.006997,0.249902,0,0);}
.m5c_c00208{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);}
.ma5_c00208{transform:matrix(0.193654,-0.005422,0.006997,0.249902,0,0);-ms-transform:matrix(0.193654,-0.005422,0.006997,0.249902,0,0);-webkit-transform:matrix(0.193654,-0.005422,0.006997,0.249902,0,0);}
.mda_c00208{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);}
.m2c_c00208{transform:matrix(0.194129,-0.005436,0.006997,0.249902,0,0);-ms-transform:matrix(0.194129,-0.005436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194129,-0.005436,0.006997,0.249902,0,0);}
.m91_c00208{transform:matrix(0.194229,-0.005438,0.006997,0.249902,0,0);-ms-transform:matrix(0.194229,-0.005438,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194229,-0.005438,0.006997,0.249902,0,0);}
.mcb_c00208{transform:matrix(0.194304,-0.005441,0.006997,0.249902,0,0);-ms-transform:matrix(0.194304,-0.005441,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194304,-0.005441,0.006997,0.249902,0,0);}
.mb5_c00208{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);}
.md5_c00208{transform:matrix(0.195203,-0.005466,0.006997,0.249902,0,0);-ms-transform:matrix(0.195203,-0.005466,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195203,-0.005466,0.006997,0.249902,0,0);}
.mc1_c00208{transform:matrix(0.195623,-0.005477,0.006997,0.249902,0,0);-ms-transform:matrix(0.195623,-0.005477,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195623,-0.005477,0.006997,0.249902,0,0);}
.m67_c00208{transform:matrix(0.195663,-0.005479,0.006997,0.249902,0,0);-ms-transform:matrix(0.195663,-0.005479,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195663,-0.005479,0.006997,0.249902,0,0);}
.ma0_c00208{transform:matrix(0.195693,-0.005479,0.006997,0.249902,0,0);-ms-transform:matrix(0.195693,-0.005479,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195693,-0.005479,0.006997,0.249902,0,0);}
.m76_c00208{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);}
.m64_c00208{transform:matrix(0.196178,-0.005493,0.006997,0.249902,0,0);-ms-transform:matrix(0.196178,-0.005493,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196178,-0.005493,0.006997,0.249902,0,0);}
.m1c_c00208{transform:matrix(0.196518,-0.005503,0.006997,0.249902,0,0);-ms-transform:matrix(0.196518,-0.005503,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196518,-0.005503,0.006997,0.249902,0,0);}
.mb7_c00208{transform:matrix(0.196768,-0.005510,0.006997,0.249902,0,0);-ms-transform:matrix(0.196768,-0.005510,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196768,-0.005510,0.006997,0.249902,0,0);}
.ma3_c00208{transform:matrix(0.196858,-0.005512,0.006997,0.249902,0,0);-ms-transform:matrix(0.196858,-0.005512,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196858,-0.005512,0.006997,0.249902,0,0);}
.m6b_c00208{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);}
.mc8_c00208{transform:matrix(0.197493,-0.005530,0.006997,0.249902,0,0);-ms-transform:matrix(0.197493,-0.005530,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197493,-0.005530,0.006997,0.249902,0,0);}
.mc2_c00208{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);}
.m5b_c00208{transform:matrix(0.198352,-0.005554,0.006997,0.249902,0,0);-ms-transform:matrix(0.198352,-0.005554,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198352,-0.005554,0.006997,0.249902,0,0);}
.mab_c00208{transform:matrix(0.199312,-0.005581,0.006997,0.249902,0,0);-ms-transform:matrix(0.199312,-0.005581,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199312,-0.005581,0.006997,0.249902,0,0);}
.m53_c00208{transform:matrix(0.200252,-0.005607,0.006997,0.249902,0,0);-ms-transform:matrix(0.200252,-0.005607,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200252,-0.005607,0.006997,0.249902,0,0);}
.m26_c00208{transform:matrix(0.200451,-0.005613,0.006997,0.249902,0,0);-ms-transform:matrix(0.200451,-0.005613,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200451,-0.005613,0.006997,0.249902,0,0);}
.ma8_c00208{transform:matrix(0.201046,-0.005629,0.006997,0.249902,0,0);-ms-transform:matrix(0.201046,-0.005629,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201046,-0.005629,0.006997,0.249902,0,0);}
.mb2_c00208{transform:matrix(0.202291,-0.005664,0.006997,0.249902,0,0);-ms-transform:matrix(0.202291,-0.005664,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202291,-0.005664,0.006997,0.249902,0,0);}
.m8f_c00208{transform:matrix(0.202316,-0.005665,0.006997,0.249902,0,0);-ms-transform:matrix(0.202316,-0.005665,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202316,-0.005665,0.006997,0.249902,0,0);}
.mb6_c00208{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);}
.m68_c00208{transform:matrix(0.203020,-0.005685,0.006997,0.249902,0,0);-ms-transform:matrix(0.203020,-0.005685,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203020,-0.005685,0.006997,0.249902,0,0);}
.m20_c00208{transform:matrix(0.203420,-0.005696,0.006997,0.249902,0,0);-ms-transform:matrix(0.203420,-0.005696,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203420,-0.005696,0.006997,0.249902,0,0);}
.m4d_c00208{transform:matrix(0.203555,-0.005700,0.006997,0.249902,0,0);-ms-transform:matrix(0.203555,-0.005700,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203555,-0.005700,0.006997,0.249902,0,0);}
.ma_c00208{transform:matrix(0.204043,-0.006121,0.007497,0.249888,0,0);-ms-transform:matrix(0.204043,-0.006121,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204043,-0.006121,0.007497,0.249888,0,0);}
.m70_c00208{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);}
.mb3_c00208{transform:matrix(0.204395,-0.005723,0.006997,0.249902,0,0);-ms-transform:matrix(0.204395,-0.005723,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204395,-0.005723,0.006997,0.249902,0,0);}
.m60_c00208{transform:matrix(0.205504,-0.005754,0.006997,0.249902,0,0);-ms-transform:matrix(0.205504,-0.005754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205504,-0.005754,0.006997,0.249902,0,0);}
.m6c_c00208{transform:matrix(0.205509,-0.005754,0.006997,0.249902,0,0);-ms-transform:matrix(0.205509,-0.005754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205509,-0.005754,0.006997,0.249902,0,0);}
.m52_c00208{transform:matrix(0.205634,-0.005758,0.006997,0.249902,0,0);-ms-transform:matrix(0.205634,-0.005758,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205634,-0.005758,0.006997,0.249902,0,0);}
.m4b_c00208{transform:matrix(0.205939,-0.005766,0.006997,0.249902,0,0);-ms-transform:matrix(0.205939,-0.005766,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205939,-0.005766,0.006997,0.249902,0,0);}
.mbd_c00208{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);}
.m7c_c00208{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);}
.m66_c00208{transform:matrix(0.208423,-0.005836,0.006997,0.249902,0,0);-ms-transform:matrix(0.208423,-0.005836,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208423,-0.005836,0.006997,0.249902,0,0);}
.ma2_c00208{transform:matrix(0.209258,-0.005859,0.006997,0.249902,0,0);-ms-transform:matrix(0.209258,-0.005859,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209258,-0.005859,0.006997,0.249902,0,0);}
.m38_c00208{transform:matrix(0.209303,-0.005860,0.006997,0.249902,0,0);-ms-transform:matrix(0.209303,-0.005860,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209303,-0.005860,0.006997,0.249902,0,0);}
.m78_c00208{transform:matrix(0.209323,-0.005861,0.006997,0.249902,0,0);-ms-transform:matrix(0.209323,-0.005861,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209323,-0.005861,0.006997,0.249902,0,0);}
.m29_c00208{transform:matrix(0.209453,-0.005865,0.006997,0.249902,0,0);-ms-transform:matrix(0.209453,-0.005865,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209453,-0.005865,0.006997,0.249902,0,0);}
.mb8_c00208{transform:matrix(0.209583,-0.005868,0.006997,0.249902,0,0);-ms-transform:matrix(0.209583,-0.005868,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209583,-0.005868,0.006997,0.249902,0,0);}
.m96_c00208{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);}
.mbb_c00208{transform:matrix(0.211172,-0.005913,0.006997,0.249902,0,0);-ms-transform:matrix(0.211172,-0.005913,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211172,-0.005913,0.006997,0.249902,0,0);}
.m40_c00208{transform:matrix(0.211507,-0.005922,0.006997,0.249902,0,0);-ms-transform:matrix(0.211507,-0.005922,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211507,-0.005922,0.006997,0.249902,0,0);}
.m9f_c00208{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);}
.m8b_c00208{transform:matrix(0.212527,-0.005951,0.006997,0.249902,0,0);-ms-transform:matrix(0.212527,-0.005951,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212527,-0.005951,0.006997,0.249902,0,0);}
.m5d_c00208{transform:matrix(0.212982,-0.005963,0.006997,0.249902,0,0);-ms-transform:matrix(0.212982,-0.005963,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212982,-0.005963,0.006997,0.249902,0,0);}
.m7e_c00208{transform:matrix(0.213061,-0.005966,0.006997,0.249902,0,0);-ms-transform:matrix(0.213061,-0.005966,0.006997,0.249902,0,0);-webkit-transform:matrix(0.213061,-0.005966,0.006997,0.249902,0,0);}
.mde_c00208{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);}
.m41_c00208{transform:matrix(0.215765,-0.006041,0.006997,0.249902,0,0);-ms-transform:matrix(0.215765,-0.006041,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215765,-0.006041,0.006997,0.249902,0,0);}
.m90_c00208{transform:matrix(0.215780,-0.006042,0.006997,0.249902,0,0);-ms-transform:matrix(0.215780,-0.006042,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215780,-0.006042,0.006997,0.249902,0,0);}
.mcf_c00208{transform:matrix(0.215835,-0.006043,0.006997,0.249902,0,0);-ms-transform:matrix(0.215835,-0.006043,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215835,-0.006043,0.006997,0.249902,0,0);}
.me7_c00208{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);}
.ma9_c00208{transform:matrix(0.216095,-0.006051,0.006997,0.249902,0,0);-ms-transform:matrix(0.216095,-0.006051,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216095,-0.006051,0.006997,0.249902,0,0);}
.m79_c00208{transform:matrix(0.216130,-0.006052,0.006997,0.249902,0,0);-ms-transform:matrix(0.216130,-0.006052,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216130,-0.006052,0.006997,0.249902,0,0);}
.mbc_c00208{transform:matrix(0.216865,-0.006072,0.006997,0.249902,0,0);-ms-transform:matrix(0.216865,-0.006072,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216865,-0.006072,0.006997,0.249902,0,0);}
.m43_c00208{transform:matrix(0.217265,-0.006083,0.006997,0.249902,0,0);-ms-transform:matrix(0.217265,-0.006083,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217265,-0.006083,0.006997,0.249902,0,0);}
.mb9_c00208{transform:matrix(0.218299,-0.006112,0.006997,0.249902,0,0);-ms-transform:matrix(0.218299,-0.006112,0.006997,0.249902,0,0);-webkit-transform:matrix(0.218299,-0.006112,0.006997,0.249902,0,0);}
.m47_c00208{transform:matrix(0.219414,-0.006144,0.006997,0.249902,0,0);-ms-transform:matrix(0.219414,-0.006144,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219414,-0.006144,0.006997,0.249902,0,0);}
.md_c00208{transform:matrix(0.219551,-0.006587,0.007497,0.249888,0,0);-ms-transform:matrix(0.219551,-0.006587,0.007497,0.249888,0,0);-webkit-transform:matrix(0.219551,-0.006587,0.007497,0.249888,0,0);}
.mbe_c00208{transform:matrix(0.220019,-0.006161,0.006997,0.249902,0,0);-ms-transform:matrix(0.220019,-0.006161,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220019,-0.006161,0.006997,0.249902,0,0);}
.m86_c00208{transform:matrix(0.221678,-0.006207,0.006997,0.249902,0,0);-ms-transform:matrix(0.221678,-0.006207,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221678,-0.006207,0.006997,0.249902,0,0);}
.m92_c00208{transform:matrix(0.222238,-0.006223,0.006997,0.249902,0,0);-ms-transform:matrix(0.222238,-0.006223,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222238,-0.006223,0.006997,0.249902,0,0);}
.me8_c00208{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);}
.ma7_c00208{transform:matrix(0.224577,-0.006288,0.006997,0.249902,0,0);-ms-transform:matrix(0.224577,-0.006288,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224577,-0.006288,0.006997,0.249902,0,0);}
.mc3_c00208{transform:matrix(0.225372,-0.006310,0.006997,0.249902,0,0);-ms-transform:matrix(0.225372,-0.006310,0.006997,0.249902,0,0);-webkit-transform:matrix(0.225372,-0.006310,0.006997,0.249902,0,0);}
.ma4_c00208{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);}
.m1b_c00208{transform:matrix(0.226256,-0.006335,0.006997,0.249902,0,0);-ms-transform:matrix(0.226256,-0.006335,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226256,-0.006335,0.006997,0.249902,0,0);}
.mb4_c00208{transform:matrix(0.227666,-0.006375,0.006997,0.249902,0,0);-ms-transform:matrix(0.227666,-0.006375,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227666,-0.006375,0.006997,0.249902,0,0);}
.m4f_c00208{transform:matrix(0.229005,-0.006412,0.006997,0.249902,0,0);-ms-transform:matrix(0.229005,-0.006412,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229005,-0.006412,0.006997,0.249902,0,0);}
.m99_c00208{transform:matrix(0.231354,-0.006478,0.006997,0.249902,0,0);-ms-transform:matrix(0.231354,-0.006478,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231354,-0.006478,0.006997,0.249902,0,0);}
.m6e_c00208{transform:matrix(0.233434,-0.006536,0.006997,0.249902,0,0);-ms-transform:matrix(0.233434,-0.006536,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233434,-0.006536,0.006997,0.249902,0,0);}
.m61_c00208{transform:matrix(0.234623,-0.006569,0.006997,0.249902,0,0);-ms-transform:matrix(0.234623,-0.006569,0.006997,0.249902,0,0);-webkit-transform:matrix(0.234623,-0.006569,0.006997,0.249902,0,0);}
.m82_c00208{transform:matrix(0.234738,-0.006573,0.006997,0.249902,0,0);-ms-transform:matrix(0.234738,-0.006573,0.006997,0.249902,0,0);-webkit-transform:matrix(0.234738,-0.006573,0.006997,0.249902,0,0);}
.md4_c00208{transform:matrix(0.235193,-0.006585,0.006997,0.249902,0,0);-ms-transform:matrix(0.235193,-0.006585,0.006997,0.249902,0,0);-webkit-transform:matrix(0.235193,-0.006585,0.006997,0.249902,0,0);}
.m13_c00208{transform:matrix(0.236337,-0.005436,0.005748,0.249934,0,0);-ms-transform:matrix(0.236337,-0.005436,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236337,-0.005436,0.005748,0.249934,0,0);}
.mce_c00208{transform:matrix(0.237987,-0.006664,0.006997,0.249902,0,0);-ms-transform:matrix(0.237987,-0.006664,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237987,-0.006664,0.006997,0.249902,0,0);}
.mb0_c00208{transform:matrix(0.238437,-0.006676,0.006997,0.249902,0,0);-ms-transform:matrix(0.238437,-0.006676,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238437,-0.006676,0.006997,0.249902,0,0);}
.m73_c00208{transform:matrix(0.238971,-0.006691,0.006997,0.249902,0,0);-ms-transform:matrix(0.238971,-0.006691,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238971,-0.006691,0.006997,0.249902,0,0);}
.m98_c00208{transform:matrix(0.240681,-0.006739,0.006997,0.249902,0,0);-ms-transform:matrix(0.240681,-0.006739,0.006997,0.249902,0,0);-webkit-transform:matrix(0.240681,-0.006739,0.006997,0.249902,0,0);}
.med_c00208{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);}
.mb1_c00208{transform:matrix(0.242580,-0.006792,0.006997,0.249902,0,0);-ms-transform:matrix(0.242580,-0.006792,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242580,-0.006792,0.006997,0.249902,0,0);}
.m4e_c00208{transform:matrix(0.243015,-0.006804,0.006997,0.249902,0,0);-ms-transform:matrix(0.243015,-0.006804,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243015,-0.006804,0.006997,0.249902,0,0);}
.m8e_c00208{transform:matrix(0.243235,-0.006811,0.006997,0.249902,0,0);-ms-transform:matrix(0.243235,-0.006811,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243235,-0.006811,0.006997,0.249902,0,0);}
.mea_c00208{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.244054,-0.006834,0.006997,0.249902,0,0);-ms-transform:matrix(0.244054,-0.006834,0.006997,0.249902,0,0);-webkit-transform:matrix(0.244054,-0.006834,0.006997,0.249902,0,0);}
.mec_c00208{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);}
.m7d_c00208{transform:matrix(0.247233,-0.006923,0.006997,0.249902,0,0);-ms-transform:matrix(0.247233,-0.006923,0.006997,0.249902,0,0);-webkit-transform:matrix(0.247233,-0.006923,0.006997,0.249902,0,0);}
.mdd_c00208{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);}
.m3d_c00208{transform:matrix(0.250492,-0.007014,0.006997,0.249902,0,0);-ms-transform:matrix(0.250492,-0.007014,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250492,-0.007014,0.006997,0.249902,0,0);}
.m1e_c00208{transform:matrix(0.251217,-0.007034,0.006997,0.249902,0,0);-ms-transform:matrix(0.251217,-0.007034,0.006997,0.249902,0,0);-webkit-transform:matrix(0.251217,-0.007034,0.006997,0.249902,0,0);}
.m97_c00208{transform:matrix(0.252091,-0.007059,0.006997,0.249902,0,0);-ms-transform:matrix(0.252091,-0.007059,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252091,-0.007059,0.006997,0.249902,0,0);}
.m9_c00208{transform:matrix(0.253951,-0.007619,0.007497,0.249888,0,0);-ms-transform:matrix(0.253951,-0.007619,0.007497,0.249888,0,0);-webkit-transform:matrix(0.253951,-0.007619,0.007497,0.249888,0,0);}
.m75_c00208{transform:matrix(0.254840,-0.007136,0.006997,0.249902,0,0);-ms-transform:matrix(0.254840,-0.007136,0.006997,0.249902,0,0);-webkit-transform:matrix(0.254840,-0.007136,0.006997,0.249902,0,0);}
.mae_c00208{transform:matrix(0.255635,-0.007158,0.006997,0.249902,0,0);-ms-transform:matrix(0.255635,-0.007158,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255635,-0.007158,0.006997,0.249902,0,0);}
.mc9_c00208{transform:matrix(0.255850,-0.007164,0.006997,0.249902,0,0);-ms-transform:matrix(0.255850,-0.007164,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255850,-0.007164,0.006997,0.249902,0,0);}
.m8d_c00208{transform:matrix(0.258729,-0.007244,0.006997,0.249902,0,0);-ms-transform:matrix(0.258729,-0.007244,0.006997,0.249902,0,0);-webkit-transform:matrix(0.258729,-0.007244,0.006997,0.249902,0,0);}
.me5_c00208{transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.268544,-0.008056,0.007497,0.249888,0,0);-ms-transform:matrix(0.268544,-0.008056,0.007497,0.249888,0,0);-webkit-transform:matrix(0.268544,-0.008056,0.007497,0.249888,0,0);}
.m17_c00208{transform:matrix(0.268565,-0.007520,0.006997,0.249902,0,0);-ms-transform:matrix(0.268565,-0.007520,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268565,-0.007520,0.006997,0.249902,0,0);}
.m16_c00208{transform:matrix(0.270484,-0.007574,0.006997,0.249902,0,0);-ms-transform:matrix(0.270484,-0.007574,0.006997,0.249902,0,0);-webkit-transform:matrix(0.270484,-0.007574,0.006997,0.249902,0,0);}
.m12_c00208{transform:matrix(0.271773,-0.006251,0.005748,0.249934,0,0);-ms-transform:matrix(0.271773,-0.006251,0.005748,0.249934,0,0);-webkit-transform:matrix(0.271773,-0.006251,0.005748,0.249934,0,0);}
.m8c_c00208{transform:matrix(0.272798,-0.007638,0.006997,0.249902,0,0);-ms-transform:matrix(0.272798,-0.007638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.272798,-0.007638,0.006997,0.249902,0,0);}
.m57_c00208{transform:matrix(0.273113,-0.007647,0.006997,0.249902,0,0);-ms-transform:matrix(0.273113,-0.007647,0.006997,0.249902,0,0);-webkit-transform:matrix(0.273113,-0.007647,0.006997,0.249902,0,0);}
.m49_c00208{transform:matrix(0.273988,-0.007672,0.006997,0.249902,0,0);-ms-transform:matrix(0.273988,-0.007672,0.006997,0.249902,0,0);-webkit-transform:matrix(0.273988,-0.007672,0.006997,0.249902,0,0);}
.m2e_c00208{transform:matrix(0.285268,-0.007988,0.006997,0.249902,0,0);-ms-transform:matrix(0.285268,-0.007988,0.006997,0.249902,0,0);-webkit-transform:matrix(0.285268,-0.007988,0.006997,0.249902,0,0);}
.m95_c00208{transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);-ms-transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);-webkit-transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);}
.m93_c00208{transform:matrix(0.290571,-0.008136,0.006997,0.249902,0,0);-ms-transform:matrix(0.290571,-0.008136,0.006997,0.249902,0,0);-webkit-transform:matrix(0.290571,-0.008136,0.006997,0.249902,0,0);}
.me4_c00208{transform:matrix(0.294045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294045,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.295704,-0.008280,0.006997,0.249902,0,0);-ms-transform:matrix(0.295704,-0.008280,0.006997,0.249902,0,0);-webkit-transform:matrix(0.295704,-0.008280,0.006997,0.249902,0,0);}
.m46_c00208{transform:matrix(0.297084,-0.008318,0.006997,0.249902,0,0);-ms-transform:matrix(0.297084,-0.008318,0.006997,0.249902,0,0);-webkit-transform:matrix(0.297084,-0.008318,0.006997,0.249902,0,0);}
.m8a_c00208{transform:matrix(0.300462,-0.008413,0.006997,0.249902,0,0);-ms-transform:matrix(0.300462,-0.008413,0.006997,0.249902,0,0);-webkit-transform:matrix(0.300462,-0.008413,0.006997,0.249902,0,0);}
.ma6_c00208{transform:matrix(0.304226,-0.008518,0.006997,0.249902,0,0);-ms-transform:matrix(0.304226,-0.008518,0.006997,0.249902,0,0);-webkit-transform:matrix(0.304226,-0.008518,0.006997,0.249902,0,0);}
.m48_c00208{transform:matrix(0.308424,-0.008636,0.006997,0.249902,0,0);-ms-transform:matrix(0.308424,-0.008636,0.006997,0.249902,0,0);-webkit-transform:matrix(0.308424,-0.008636,0.006997,0.249902,0,0);}
.m58_c00208{transform:matrix(0.320819,-0.008983,0.006997,0.249902,0,0);-ms-transform:matrix(0.320819,-0.008983,0.006997,0.249902,0,0);-webkit-transform:matrix(0.320819,-0.008983,0.006997,0.249902,0,0);}
.m56_c00208{transform:matrix(0.330665,-0.009259,0.006997,0.249902,0,0);-ms-transform:matrix(0.330665,-0.009259,0.006997,0.249902,0,0);-webkit-transform:matrix(0.330665,-0.009259,0.006997,0.249902,0,0);}
.m1f_c00208{transform:matrix(0.332690,-0.009315,0.006997,0.249902,0,0);-ms-transform:matrix(0.332690,-0.009315,0.006997,0.249902,0,0);-webkit-transform:matrix(0.332690,-0.009315,0.006997,0.249902,0,0);}
.m6d_c00208{transform:matrix(0.339107,-0.009495,0.006997,0.249902,0,0);-ms-transform:matrix(0.339107,-0.009495,0.006997,0.249902,0,0);-webkit-transform:matrix(0.339107,-0.009495,0.006997,0.249902,0,0);}
.m6_c00208{transform:matrix(0.351467,-0.010544,0.007497,0.249888,0,0);-ms-transform:matrix(0.351467,-0.010544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.351467,-0.010544,0.007497,0.249888,0,0);}
.m59_c00208{transform:matrix(0.352137,-0.009860,0.006997,0.249902,0,0);-ms-transform:matrix(0.352137,-0.009860,0.006997,0.249902,0,0);-webkit-transform:matrix(0.352137,-0.009860,0.006997,0.249902,0,0);}
.m33_c00208{transform:matrix(0.363353,-0.010174,0.006997,0.249902,0,0);-ms-transform:matrix(0.363353,-0.010174,0.006997,0.249902,0,0);-webkit-transform:matrix(0.363353,-0.010174,0.006997,0.249902,0,0);}
.md3_c00208{transform:matrix(0.375148,-0.010504,0.006997,0.249902,0,0);-ms-transform:matrix(0.375148,-0.010504,0.006997,0.249902,0,0);-webkit-transform:matrix(0.375148,-0.010504,0.006997,0.249902,0,0);}
.me2_c00208{transform:matrix(0.376325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00208{transform:matrix(0.407580,-0.011412,0.006997,0.249902,0,0);-ms-transform:matrix(0.407580,-0.011412,0.006997,0.249902,0,0);-webkit-transform:matrix(0.407580,-0.011412,0.006997,0.249902,0,0);}
.m7_c00208{transform:matrix(0.422880,-0.012686,0.007497,0.249888,0,0);-ms-transform:matrix(0.422880,-0.012686,0.007497,0.249888,0,0);-webkit-transform:matrix(0.422880,-0.012686,0.007497,0.249888,0,0);}
.mef_c00208{transform:matrix(0.433960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433960,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.450973,-0.012627,0.006997,0.249902,0,0);-ms-transform:matrix(0.450973,-0.012627,0.006997,0.249902,0,0);-webkit-transform:matrix(0.450973,-0.012627,0.006997,0.249902,0,0);}
.m4_c00208{transform:matrix(0.474611,-0.014238,0.007497,0.249888,0,0);-ms-transform:matrix(0.474611,-0.014238,0.007497,0.249888,0,0);-webkit-transform:matrix(0.474611,-0.014238,0.007497,0.249888,0,0);}
.m11_c00208{transform:matrix(0.493300,-0.011346,0.005748,0.249934,0,0);-ms-transform:matrix(0.493300,-0.011346,0.005748,0.249934,0,0);-webkit-transform:matrix(0.493300,-0.011346,0.005748,0.249934,0,0);}
.m34_c00208{transform:matrix(0.500014,-0.014000,0.006997,0.249902,0,0);-ms-transform:matrix(0.500014,-0.014000,0.006997,0.249902,0,0);-webkit-transform:matrix(0.500014,-0.014000,0.006997,0.249902,0,0);}
.mc_c00208{transform:matrix(0.510775,-0.015323,0.007497,0.249888,0,0);-ms-transform:matrix(0.510775,-0.015323,0.007497,0.249888,0,0);-webkit-transform:matrix(0.510775,-0.015323,0.007497,0.249888,0,0);}
.m3_c00208{transform:matrix(0.550297,-0.016509,0.007497,0.249888,0,0);-ms-transform:matrix(0.550297,-0.016509,0.007497,0.249888,0,0);-webkit-transform:matrix(0.550297,-0.016509,0.007497,0.249888,0,0);}
.m0_c00208{transform:matrix(0.580250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580250,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.755310,-0.022659,0.007497,0.249888,0,0);-ms-transform:matrix(0.755310,-0.022659,0.007497,0.249888,0,0);-webkit-transform:matrix(0.755310,-0.022659,0.007497,0.249888,0,0);}
.mb_c00208{transform:matrix(0.765346,-0.022960,0.007497,0.249888,0,0);-ms-transform:matrix(0.765346,-0.022960,0.007497,0.249888,0,0);-webkit-transform:matrix(0.765346,-0.022960,0.007497,0.249888,0,0);}
.m9c_c00208{transform:matrix(0.883284,-0.024732,0.006997,0.249902,0,0);-ms-transform:matrix(0.883284,-0.024732,0.006997,0.249902,0,0);-webkit-transform:matrix(0.883284,-0.024732,0.006997,0.249902,0,0);}
.m2_c00208{transform:matrix(1.060488,-0.031815,0.007497,0.249888,0,0);-ms-transform:matrix(1.060488,-0.031815,0.007497,0.249888,0,0);-webkit-transform:matrix(1.060488,-0.031815,0.007497,0.249888,0,0);}
.me_c00208{transform:matrix(1.520491,-0.045615,0.007497,0.249888,0,0);-ms-transform:matrix(1.520491,-0.045615,0.007497,0.249888,0,0);-webkit-transform:matrix(1.520491,-0.045615,0.007497,0.249888,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;}
.fs1a_c00208{font-size:22.050000px;}
.fs0_c00208{font-size:28.350000px;}
.fs3_c00208{font-size:37.817006px;}
.fs19_c00208{font-size:49.350000px;}
.fs18_c00208{font-size:53.550000px;}
.fs10_c00208{font-size:60.923868px;}
.fs1_c00208{font-size:60.927399px;}
.fs14_c00208{font-size:64.075103px;}
.fs5_c00208{font-size:66.175926px;}
.fs2_c00208{font-size:66.179761px;}
.fsf_c00208{font-size:67.226337px;}
.fsa_c00208{font-size:68.276749px;}
.fs11_c00208{font-size:69.327160px;}
.fsc_c00208{font-size:70.377572px;}
.fsb_c00208{font-size:71.427983px;}
.fs13_c00208{font-size:72.478395px;}
.fs17_c00208{font-size:73.500000px;}
.fs6_c00208{font-size:73.528806px;}
.fsd_c00208{font-size:74.579218px;}
.fs7_c00208{font-size:75.629629px;}
.fs8_c00208{font-size:78.780864px;}
.fs9_c00208{font-size:80.881687px;}
.fs15_c00208{font-size:82.982510px;}
.fse_c00208{font-size:85.083333px;}
.fs4_c00208{font-size:87.173048px;}
.fs12_c00208{font-size:106.091563px;}
.fs16_c00208{font-size:112.350000px;}
.y0_c00208{bottom:0.000000px;}
.yec_c00208{bottom:157.951500px;}
.ye5_c00208{bottom:170.371500px;}
.ye6_c00208{bottom:170.844000px;}
.ye7_c00208{bottom:171.127500px;}
.ye8_c00208{bottom:172.180500px;}
.ye9_c00208{bottom:172.534500px;}
.yea_c00208{bottom:172.749000px;}
.yeb_c00208{bottom:174.103500px;}
.ydf_c00208{bottom:187.917000px;}
.ye0_c00208{bottom:188.787000px;}
.ye1_c00208{bottom:189.067500px;}
.ye2_c00208{bottom:190.002000px;}
.ye3_c00208{bottom:190.314000px;}
.ye4_c00208{bottom:190.611000px;}
.yde_c00208{bottom:206.271000px;}
.yd5_c00208{bottom:236.562846px;}
.yd6_c00208{bottom:237.729324px;}
.yd7_c00208{bottom:238.368636px;}
.yd8_c00208{bottom:239.074296px;}
.yd9_c00208{bottom:239.719740px;}
.yda_c00208{bottom:240.754122px;}
.yd4_c00208{bottom:262.774566px;}
.yca_c00208{bottom:283.017150px;}
.ycb_c00208{bottom:283.563132px;}
.ycc_c00208{bottom:284.891646px;}
.ycd_c00208{bottom:285.722610px;}
.yce_c00208{bottom:286.304328px;}
.ycf_c00208{bottom:287.655924px;}
.yd0_c00208{bottom:288.513540px;}
.yd1_c00208{bottom:289.633110px;}
.yd2_c00208{bottom:290.539158px;}
.yd3_c00208{bottom:291.122010px;}
.yc1_c00208{bottom:305.705946px;}
.yc2_c00208{bottom:306.045012px;}
.yc3_c00208{bottom:306.725874px;}
.yc4_c00208{bottom:308.342460px;}
.yc5_c00208{bottom:309.348846px;}
.yc6_c00208{bottom:310.177680px;}
.yc7_c00208{bottom:310.832754px;}
.yc8_c00208{bottom:311.770926px;}
.yc9_c00208{bottom:312.185958px;}
.yb9_c00208{bottom:328.669908px;}
.yba_c00208{bottom:330.502452px;}
.ybb_c00208{bottom:331.266114px;}
.ybc_c00208{bottom:333.486522px;}
.ybd_c00208{bottom:334.280238px;}
.ybe_c00208{bottom:334.901304px;}
.ybf_c00208{bottom:336.174036px;}
.yc0_c00208{bottom:336.933330px;}
.yb0_c00208{bottom:350.818104px;}
.yb1_c00208{bottom:351.589146px;}
.yb2_c00208{bottom:352.560618px;}
.yb3_c00208{bottom:353.558058px;}
.yb4_c00208{bottom:354.553524px;}
.yb5_c00208{bottom:355.956600px;}
.yb6_c00208{bottom:356.669646px;}
.yb7_c00208{bottom:357.293688px;}
.yb8_c00208{bottom:358.538118px;}
.ya7_c00208{bottom:374.855280px;}
.ya8_c00208{bottom:375.607080px;}
.ya9_c00208{bottom:377.337348px;}
.yaa_c00208{bottom:377.746338px;}
.yab_c00208{bottom:378.246474px;}
.yac_c00208{bottom:378.802710px;}
.yad_c00208{bottom:380.364456px;}
.yae_c00208{bottom:381.306126px;}
.yaf_c00208{bottom:382.292292px;}
.y9f_c00208{bottom:397.544016px;}
.ya0_c00208{bottom:399.488604px;}
.ya1_c00208{bottom:400.606158px;}
.ya2_c00208{bottom:402.803334px;}
.ya3_c00208{bottom:404.085492px;}
.ya4_c00208{bottom:404.927952px;}
.ya5_c00208{bottom:405.758808px;}
.ya6_c00208{bottom:406.251624px;}
.y9c_c00208{bottom:416.742768px;}
.y9d_c00208{bottom:420.302694px;}
.y9e_c00208{bottom:428.790774px;}
.y93_c00208{bottom:442.924332px;}
.y94_c00208{bottom:443.966526px;}
.y95_c00208{bottom:444.885780px;}
.y96_c00208{bottom:445.593318px;}
.y97_c00208{bottom:446.247180px;}
.y98_c00208{bottom:447.799344px;}
.y99_c00208{bottom:448.252266px;}
.y9a_c00208{bottom:448.747176px;}
.y9b_c00208{bottom:449.533146px;}
.y8a_c00208{bottom:466.153860px;}
.y8b_c00208{bottom:467.207808px;}
.y8c_c00208{bottom:468.186840px;}
.y8d_c00208{bottom:468.643194px;}
.y8e_c00208{bottom:469.563420px;}
.y8f_c00208{bottom:471.255624px;}
.y90_c00208{bottom:471.866262px;}
.y91_c00208{bottom:473.419650px;}
.y92_c00208{bottom:474.304518px;}
.y82_c00208{bottom:488.847348px;}
.y83_c00208{bottom:490.084332px;}
.y84_c00208{bottom:491.689422px;}
.y85_c00208{bottom:493.291278px;}
.y86_c00208{bottom:494.062416px;}
.y87_c00208{bottom:494.856078px;}
.y88_c00208{bottom:496.021794px;}
.y89_c00208{bottom:496.544472px;}
.y79_c00208{bottom:511.805238px;}
.y7a_c00208{bottom:512.524446px;}
.y7b_c00208{bottom:514.040856px;}
.y7c_c00208{bottom:514.982370px;}
.y7d_c00208{bottom:517.122060px;}
.y7e_c00208{bottom:517.730640px;}
.y7f_c00208{bottom:518.593992px;}
.y80_c00208{bottom:519.738702px;}
.y81_c00208{bottom:520.408938px;}
.y6e_c00208{bottom:533.957814px;}
.y6f_c00208{bottom:534.864366px;}
.y70_c00208{bottom:535.717980px;}
.y71_c00208{bottom:537.207600px;}
.y72_c00208{bottom:538.286424px;}
.y73_c00208{bottom:539.864280px;}
.y74_c00208{bottom:540.412302px;}
.y75_c00208{bottom:541.159716px;}
.y76_c00208{bottom:542.420262px;}
.y77_c00208{bottom:543.809970px;}
.y78_c00208{bottom:545.349084px;}
.y64_c00208{bottom:557.455278px;}
.y65_c00208{bottom:558.669204px;}
.y66_c00208{bottom:559.125996px;}
.y67_c00208{bottom:559.656036px;}
.y68_c00208{bottom:560.635896px;}
.y69_c00208{bottom:562.212408px;}
.y6a_c00208{bottom:562.979832px;}
.y6b_c00208{bottom:563.558382px;}
.y6c_c00208{bottom:564.822330px;}
.y6d_c00208{bottom:566.704896px;}
.y62_c00208{bottom:587.981502px;}
.y63_c00208{bottom:594.355044px;}
.ydd_c00208{bottom:613.960500px;}
.ydc_c00208{bottom:616.201500px;}
.y5e_c00208{bottom:617.148060px;}
.y5f_c00208{bottom:618.336456px;}
.y60_c00208{bottom:619.511988px;}
.y61_c00208{bottom:619.890600px;}
.ydb_c00208{bottom:630.439500px;}
.y56_c00208{bottom:636.602766px;}
.y57_c00208{bottom:637.357968px;}
.y58_c00208{bottom:637.959570px;}
.y59_c00208{bottom:639.449544px;}
.y5a_c00208{bottom:639.899688px;}
.y5b_c00208{bottom:640.723302px;}
.y5c_c00208{bottom:642.494796px;}
.y5d_c00208{bottom:644.334522px;}
.y4e_c00208{bottom:657.395328px;}
.y4f_c00208{bottom:658.405980px;}
.y50_c00208{bottom:660.776208px;}
.y51_c00208{bottom:663.052698px;}
.y52_c00208{bottom:664.185636px;}
.y53_c00208{bottom:665.150070px;}
.y54_c00208{bottom:667.244250px;}
.y55_c00208{bottom:668.048622px;}
.y45_c00208{bottom:679.540542px;}
.y46_c00208{bottom:679.945542px;}
.y47_c00208{bottom:680.950524px;}
.y48_c00208{bottom:682.149534px;}
.y49_c00208{bottom:683.825664px;}
.y4a_c00208{bottom:684.681378px;}
.y4b_c00208{bottom:685.871232px;}
.y4c_c00208{bottom:688.385394px;}
.y4d_c00208{bottom:690.330012px;}
.y3d_c00208{bottom:702.773208px;}
.y3e_c00208{bottom:703.672488px;}
.y3f_c00208{bottom:706.089816px;}
.y40_c00208{bottom:707.148114px;}
.y41_c00208{bottom:709.422540px;}
.y42_c00208{bottom:709.841082px;}
.y43_c00208{bottom:710.477562px;}
.y44_c00208{bottom:712.540266px;}
.y35_c00208{bottom:725.731722px;}
.y36_c00208{bottom:726.662604px;}
.y37_c00208{bottom:727.913736px;}
.y38_c00208{bottom:729.351750px;}
.y39_c00208{bottom:730.063728px;}
.y3a_c00208{bottom:731.831232px;}
.y3b_c00208{bottom:733.383444px;}
.y3c_c00208{bottom:734.987532px;}
.y33_c00208{bottom:756.795456px;}
.y34_c00208{bottom:758.191398px;}
.y29_c00208{bottom:781.645980px;}
.y2a_c00208{bottom:782.483670px;}
.y2b_c00208{bottom:783.167082px;}
.y2c_c00208{bottom:784.285182px;}
.y2d_c00208{bottom:785.053182px;}
.y2e_c00208{bottom:787.948878px;}
.y2f_c00208{bottom:788.754558px;}
.y30_c00208{bottom:789.944784px;}
.y31_c00208{bottom:790.716732px;}
.y32_c00208{bottom:791.489562px;}
.y20_c00208{bottom:804.873576px;}
.y21_c00208{bottom:805.635162px;}
.y22_c00208{bottom:806.258298px;}
.y23_c00208{bottom:807.307944px;}
.y24_c00208{bottom:809.605290px;}
.y25_c00208{bottom:810.832002px;}
.y26_c00208{bottom:811.340016px;}
.y27_c00208{bottom:812.568576px;}
.y28_c00208{bottom:813.147102px;}
.y14_c00208{bottom:827.560500px;}
.y15_c00208{bottom:828.192978px;}
.y16_c00208{bottom:828.895008px;}
.y17_c00208{bottom:830.633976px;}
.y18_c00208{bottom:831.364482px;}
.y19_c00208{bottom:832.691178px;}
.y1a_c00208{bottom:833.913924px;}
.y1b_c00208{bottom:834.489114px;}
.y1c_c00208{bottom:835.502406px;}
.y1d_c00208{bottom:836.107374px;}
.y1e_c00208{bottom:836.698314px;}
.y1f_c00208{bottom:838.248366px;}
.y11_c00208{bottom:873.192000px;}
.y12_c00208{bottom:878.115357px;}
.y13_c00208{bottom:879.786399px;}
.y10_c00208{bottom:903.073575px;}
.yb_c00208{bottom:917.190465px;}
.yc_c00208{bottom:918.936540px;}
.yd_c00208{bottom:919.232070px;}
.ye_c00208{bottom:919.693830px;}
.yf_c00208{bottom:922.067310px;}
.y2_c00208{bottom:928.542000px;}
.y3_c00208{bottom:931.728495px;}
.y4_c00208{bottom:933.899025px;}
.y5_c00208{bottom:935.728815px;}
.y6_c00208{bottom:937.373835px;}
.y7_c00208{bottom:938.719470px;}
.y8_c00208{bottom:939.594045px;}
.y9_c00208{bottom:940.216170px;}
.ya_c00208{bottom:941.075355px;}
.y1_c00208{bottom:942.444000px;}
.h1c_c00208{height:22.050000px;}
.h2_c00208{height:28.350000px;}
.h5_c00208{height:37.817006px;}
.h1b_c00208{height:49.350000px;}
.h1a_c00208{height:53.550000px;}
.h12_c00208{height:60.923868px;}
.h3_c00208{height:60.927399px;}
.h16_c00208{height:64.075103px;}
.h7_c00208{height:66.175926px;}
.h4_c00208{height:66.179761px;}
.h11_c00208{height:67.226337px;}
.hc_c00208{height:68.276749px;}
.h13_c00208{height:69.327160px;}
.he_c00208{height:70.377572px;}
.hd_c00208{height:71.427983px;}
.h15_c00208{height:72.478395px;}
.h19_c00208{height:73.500000px;}
.h8_c00208{height:73.528806px;}
.hf_c00208{height:74.579218px;}
.h9_c00208{height:75.629629px;}
.ha_c00208{height:78.780864px;}
.hb_c00208{height:80.881687px;}
.h17_c00208{height:82.982510px;}
.h10_c00208{height:85.083333px;}
.h6_c00208{height:87.173048px;}
.h14_c00208{height:106.091563px;}
.h18_c00208{height:112.350000px;}
.h1_c00208{height:1005.000000px;}
.h0_c00208{height:1005.150000px;}
.w0_c00208{width:735.750000px;}
.x0_c00208{left:0.000000px;}
.xb_c00208{left:36.261630px;}
.x3_c00208{left:43.612500px;}
.x37_c00208{left:109.341126px;}
.x38_c00208{left:122.840370px;}
.x5c_c00208{left:126.003906px;}
.x14_c00208{left:128.088000px;}
.x3e_c00208{left:129.450960px;}
.x4d_c00208{left:132.962340px;}
.x61_c00208{left:135.325128px;}
.x6e_c00208{left:136.395324px;}
.x76_c00208{left:137.776920px;}
.x80_c00208{left:140.001804px;}
.xc_c00208{left:145.409940px;}
.x4_c00208{left:149.829000px;}
.x1d_c00208{left:152.136768px;}
.x24_c00208{left:154.322214px;}
.x39_c00208{left:156.319980px;}
.x31_c00208{left:157.398108px;}
.x2c_c00208{left:158.402676px;}
.x7e_c00208{left:160.427328px;}
.x85_c00208{left:162.810000px;}
.xd_c00208{left:163.918725px;}
.x11_c00208{left:165.214500px;}
.x6f_c00208{left:167.748852px;}
.x1e_c00208{left:172.247088px;}
.x5d_c00208{left:173.559552px;}
.x15_c00208{left:175.749000px;}
.x62_c00208{left:177.469656px;}
.x81_c00208{left:180.214170px;}
.x7c_c00208{left:189.578616px;}
.xe_c00208{left:192.772830px;}
.x3a_c00208{left:196.300254px;}
.x2d_c00208{left:198.743274px;}
.x82_c00208{left:202.242540px;}
.x77_c00208{left:204.781158px;}
.x1f_c00208{left:206.088732px;}
.x86_c00208{left:208.710000px;}
.x25_c00208{left:210.619914px;}
.x66_c00208{left:211.745034px;}
.x58_c00208{left:212.778018px;}
.x63_c00208{left:216.616932px;}
.x5_c00208{left:222.180000px;}
.x43_c00208{left:227.142726px;}
.x26_c00208{left:234.617226px;}
.x16_c00208{left:237.855000px;}
.x70_c00208{left:239.837916px;}
.x3f_c00208{left:242.154660px;}
.x87_c00208{left:244.020000px;}
.x2e_c00208{left:245.114868px;}
.x4e_c00208{left:246.555840px;}
.x83_c00208{left:248.834238px;}
.x10_c00208{left:250.114050px;}
.x3b_c00208{left:252.194646px;}
.x71_c00208{left:256.857306px;}
.x4b_c00208{left:260.341062px;}
.x6a_c00208{left:262.912476px;}
.x17_c00208{left:263.944500px;}
.x2b_c00208{left:265.239756px;}
.x2f_c00208{left:268.076436px;}
.x32_c00208{left:269.518200px;}
.x44_c00208{left:270.882030px;}
.x7f_c00208{left:272.362140px;}
.x53_c00208{left:278.081832px;}
.x20_c00208{left:280.202016px;}
.x78_c00208{left:281.424942px;}
.x6_c00208{left:283.173000px;}
.x84_c00208{left:284.489730px;}
.x5e_c00208{left:296.885940px;}
.x72_c00208{left:300.911262px;}
.x4f_c00208{left:302.859840px;}
.x49_c00208{left:308.010882px;}
.x18_c00208{left:311.326500px;}
.x40_c00208{left:318.042918px;}
.x21_c00208{left:319.777698px;}
.x59_c00208{left:322.821018px;}
.x27_c00208{left:325.114104px;}
.x5f_c00208{left:326.571120px;}
.x50_c00208{left:330.267840px;}
.x45_c00208{left:333.470280px;}
.x88_c00208{left:334.756500px;}
.x22_c00208{left:336.151812px;}
.x7_c00208{left:338.007000px;}
.x64_c00208{left:339.405264px;}
.xf_c00208{left:341.101065px;}
.x33_c00208{left:342.866526px;}
.x5a_c00208{left:344.556018px;}
.x54_c00208{left:348.966384px;}
.x28_c00208{left:350.296290px;}
.x19_c00208{left:354.996000px;}
.x34_c00208{left:356.366892px;}
.x67_c00208{left:358.140030px;}
.x46_c00208{left:360.043554px;}
.x79_c00208{left:362.790978px;}
.x65_c00208{left:363.840822px;}
.x73_c00208{left:365.963028px;}
.x55_c00208{left:373.890498px;}
.x1a_c00208{left:375.538500px;}
.x35_c00208{left:376.900170px;}
.x12_c00208{left:379.273500px;}
.x8_c00208{left:382.861500px;}
.x29_c00208{left:387.496632px;}
.x23_c00208{left:394.471440px;}
.x51_c00208{left:396.071340px;}
.x1_c00208{left:397.980000px;}
.x89_c00208{left:399.252000px;}
.x4a_c00208{left:402.569820px;}
.x3c_c00208{left:404.158620px;}
.x74_c00208{left:405.169896px;}
.x6b_c00208{left:407.869188px;}
.x9_c00208{left:412.014000px;}
.x68_c00208{left:413.857842px;}
.x56_c00208{left:415.907646px;}
.x47_c00208{left:417.199266px;}
.x60_c00208{left:422.078496px;}
.x30_c00208{left:426.931122px;}
.x2_c00208{left:432.810000px;}
.x7a_c00208{left:434.669010px;}
.x2a_c00208{left:435.804756px;}
.x7b_c00208{left:437.740620px;}
.x5b_c00208{left:440.209518px;}
.x7d_c00208{left:441.869106px;}
.x36_c00208{left:443.437584px;}
.x75_c00208{left:446.233974px;}
.x13_c00208{left:451.927500px;}
.x1b_c00208{left:454.438500px;}
.x41_c00208{left:457.769106px;}
.xa_c00208{left:461.391000px;}
.x52_c00208{left:463.305840px;}
.x3d_c00208{left:468.998508px;}
.x48_c00208{left:476.523768px;}
.x6c_c00208{left:477.548958px;}
.x69_c00208{left:482.192706px;}
.x42_c00208{left:484.566594px;}
.x4c_c00208{left:487.967562px;}
.x6d_c00208{left:498.098268px;}
.x1c_c00208{left:509.797500px;}
.x57_c00208{left:513.538686px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fs1a_c00208{font-size:19.600000pt;}
.fs0_c00208{font-size:25.200000pt;}
.fs3_c00208{font-size:33.615117pt;}
.fs19_c00208{font-size:43.866667pt;}
.fs18_c00208{font-size:47.600000pt;}
.fs10_c00208{font-size:54.154549pt;}
.fs1_c00208{font-size:54.157688pt;}
.fs14_c00208{font-size:56.955647pt;}
.fs5_c00208{font-size:58.823045pt;}
.fs2_c00208{font-size:58.826454pt;}
.fsf_c00208{font-size:59.756744pt;}
.fsa_c00208{font-size:60.690443pt;}
.fs11_c00208{font-size:61.624142pt;}
.fsc_c00208{font-size:62.557842pt;}
.fsb_c00208{font-size:63.491541pt;}
.fs13_c00208{font-size:64.425240pt;}
.fs17_c00208{font-size:65.333333pt;}
.fs6_c00208{font-size:65.358939pt;}
.fsd_c00208{font-size:66.292638pt;}
.fs7_c00208{font-size:67.226337pt;}
.fs8_c00208{font-size:70.027435pt;}
.fs9_c00208{font-size:71.894833pt;}
.fs15_c00208{font-size:73.762231pt;}
.fse_c00208{font-size:75.629629pt;}
.fs4_c00208{font-size:77.487154pt;}
.fs12_c00208{font-size:94.303612pt;}
.fs16_c00208{font-size:99.866667pt;}
.y0_c00208{bottom:0.000000pt;}
.yec_c00208{bottom:140.401333pt;}
.ye5_c00208{bottom:151.441333pt;}
.ye6_c00208{bottom:151.861333pt;}
.ye7_c00208{bottom:152.113333pt;}
.ye8_c00208{bottom:153.049333pt;}
.ye9_c00208{bottom:153.364000pt;}
.yea_c00208{bottom:153.554667pt;}
.yeb_c00208{bottom:154.758667pt;}
.ydf_c00208{bottom:167.037333pt;}
.ye0_c00208{bottom:167.810667pt;}
.ye1_c00208{bottom:168.060000pt;}
.ye2_c00208{bottom:168.890667pt;}
.ye3_c00208{bottom:169.168000pt;}
.ye4_c00208{bottom:169.432000pt;}
.yde_c00208{bottom:183.352000pt;}
.yd5_c00208{bottom:210.278085pt;}
.yd6_c00208{bottom:211.314955pt;}
.yd7_c00208{bottom:211.883232pt;}
.yd8_c00208{bottom:212.510485pt;}
.yd9_c00208{bottom:213.084213pt;}
.yda_c00208{bottom:214.003664pt;}
.yd4_c00208{bottom:233.577392pt;}
.yca_c00208{bottom:251.570800pt;}
.ycb_c00208{bottom:252.056117pt;}
.ycc_c00208{bottom:253.237019pt;}
.ycd_c00208{bottom:253.975653pt;}
.yce_c00208{bottom:254.492736pt;}
.ycf_c00208{bottom:255.694155pt;}
.yd0_c00208{bottom:256.456480pt;}
.yd1_c00208{bottom:257.451653pt;}
.yd2_c00208{bottom:258.257029pt;}
.yd3_c00208{bottom:258.775120pt;}
.yc1_c00208{bottom:271.738619pt;}
.yc2_c00208{bottom:272.040011pt;}
.yc3_c00208{bottom:272.645221pt;}
.yc4_c00208{bottom:274.082187pt;}
.yc5_c00208{bottom:274.976752pt;}
.yc6_c00208{bottom:275.713493pt;}
.yc7_c00208{bottom:276.295781pt;}
.yc8_c00208{bottom:277.129712pt;}
.yc9_c00208{bottom:277.498629pt;}
.yb9_c00208{bottom:292.151029pt;}
.yba_c00208{bottom:293.779957pt;}
.ybb_c00208{bottom:294.458768pt;}
.ybc_c00208{bottom:296.432464pt;}
.ybd_c00208{bottom:297.137989pt;}
.ybe_c00208{bottom:297.690048pt;}
.ybf_c00208{bottom:298.821365pt;}
.yc0_c00208{bottom:299.496293pt;}
.yb0_c00208{bottom:311.838315pt;}
.yb1_c00208{bottom:312.523685pt;}
.yb2_c00208{bottom:313.387216pt;}
.yb3_c00208{bottom:314.273829pt;}
.yb4_c00208{bottom:315.158688pt;}
.yb5_c00208{bottom:316.405867pt;}
.yb6_c00208{bottom:317.039685pt;}
.yb7_c00208{bottom:317.594389pt;}
.yb8_c00208{bottom:318.700549pt;}
.ya7_c00208{bottom:333.204693pt;}
.ya8_c00208{bottom:333.872960pt;}
.ya9_c00208{bottom:335.410976pt;}
.yaa_c00208{bottom:335.774523pt;}
.yab_c00208{bottom:336.219088pt;}
.yac_c00208{bottom:336.713520pt;}
.yad_c00208{bottom:338.101739pt;}
.yae_c00208{bottom:338.938779pt;}
.yaf_c00208{bottom:339.815371pt;}
.y9f_c00208{bottom:353.372459pt;}
.ya0_c00208{bottom:355.100981pt;}
.ya1_c00208{bottom:356.094363pt;}
.ya2_c00208{bottom:358.047408pt;}
.ya3_c00208{bottom:359.187104pt;}
.ya4_c00208{bottom:359.935957pt;}
.ya5_c00208{bottom:360.674496pt;}
.ya6_c00208{bottom:361.112555pt;}
.y9c_c00208{bottom:370.438016pt;}
.y9d_c00208{bottom:373.602395pt;}
.y9e_c00208{bottom:381.147355pt;}
.y93_c00208{bottom:393.710517pt;}
.y94_c00208{bottom:394.636912pt;}
.y95_c00208{bottom:395.454027pt;}
.y96_c00208{bottom:396.082949pt;}
.y97_c00208{bottom:396.664160pt;}
.y98_c00208{bottom:398.043861pt;}
.y99_c00208{bottom:398.446459pt;}
.y9a_c00208{bottom:398.886379pt;}
.y9b_c00208{bottom:399.585019pt;}
.y8a_c00208{bottom:414.358987pt;}
.y8b_c00208{bottom:415.295829pt;}
.y8c_c00208{bottom:416.166080pt;}
.y8d_c00208{bottom:416.571728pt;}
.y8e_c00208{bottom:417.389707pt;}
.y8f_c00208{bottom:418.893888pt;}
.y90_c00208{bottom:419.436677pt;}
.y91_c00208{bottom:420.817467pt;}
.y92_c00208{bottom:421.604016pt;}
.y82_c00208{bottom:434.530976pt;}
.y83_c00208{bottom:435.630517pt;}
.y84_c00208{bottom:437.057264pt;}
.y85_c00208{bottom:438.481136pt;}
.y86_c00208{bottom:439.166592pt;}
.y87_c00208{bottom:439.872069pt;}
.y88_c00208{bottom:440.908261pt;}
.y89_c00208{bottom:441.372864pt;}
.y79_c00208{bottom:454.937989pt;}
.y7a_c00208{bottom:455.577285pt;}
.y7b_c00208{bottom:456.925205pt;}
.y7c_c00208{bottom:457.762107pt;}
.y7d_c00208{bottom:459.664053pt;}
.y7e_c00208{bottom:460.205013pt;}
.y7f_c00208{bottom:460.972437pt;}
.y80_c00208{bottom:461.989957pt;}
.y81_c00208{bottom:462.585723pt;}
.y6e_c00208{bottom:474.629168pt;}
.y6f_c00208{bottom:475.434992pt;}
.y70_c00208{bottom:476.193760pt;}
.y71_c00208{bottom:477.517867pt;}
.y72_c00208{bottom:478.476821pt;}
.y73_c00208{bottom:479.879360pt;}
.y74_c00208{bottom:480.366491pt;}
.y75_c00208{bottom:481.030859pt;}
.y76_c00208{bottom:482.151344pt;}
.y77_c00208{bottom:483.386640pt;}
.y78_c00208{bottom:484.754741pt;}
.y64_c00208{bottom:495.515803pt;}
.y65_c00208{bottom:496.594848pt;}
.y66_c00208{bottom:497.000885pt;}
.y67_c00208{bottom:497.472032pt;}
.y68_c00208{bottom:498.343019pt;}
.y69_c00208{bottom:499.744363pt;}
.y6a_c00208{bottom:500.426517pt;}
.y6b_c00208{bottom:500.940784pt;}
.y6c_c00208{bottom:502.064293pt;}
.y6d_c00208{bottom:503.737685pt;}
.y62_c00208{bottom:522.650224pt;}
.y63_c00208{bottom:528.315595pt;}
.ydd_c00208{bottom:545.742667pt;}
.ydc_c00208{bottom:547.734667pt;}
.y5e_c00208{bottom:548.576053pt;}
.y5f_c00208{bottom:549.632405pt;}
.y60_c00208{bottom:550.677323pt;}
.y61_c00208{bottom:551.013867pt;}
.ydb_c00208{bottom:560.390667pt;}
.y56_c00208{bottom:565.869125pt;}
.y57_c00208{bottom:566.540416pt;}
.y58_c00208{bottom:567.075173pt;}
.y59_c00208{bottom:568.399595pt;}
.y5a_c00208{bottom:568.799723pt;}
.y5b_c00208{bottom:569.531824pt;}
.y5c_c00208{bottom:571.106485pt;}
.y5d_c00208{bottom:572.741797pt;}
.y4e_c00208{bottom:584.351403pt;}
.y4f_c00208{bottom:585.249760pt;}
.y50_c00208{bottom:587.356629pt;}
.y51_c00208{bottom:589.380176pt;}
.y52_c00208{bottom:590.387232pt;}
.y53_c00208{bottom:591.244507pt;}
.y54_c00208{bottom:593.106000pt;}
.y55_c00208{bottom:593.820997pt;}
.y45_c00208{bottom:604.036037pt;}
.y46_c00208{bottom:604.396037pt;}
.y47_c00208{bottom:605.289355pt;}
.y48_c00208{bottom:606.355141pt;}
.y49_c00208{bottom:607.845035pt;}
.y4a_c00208{bottom:608.605669pt;}
.y4b_c00208{bottom:609.663317pt;}
.y4c_c00208{bottom:611.898128pt;}
.y4d_c00208{bottom:613.626677pt;}
.y3d_c00208{bottom:624.687296pt;}
.y3e_c00208{bottom:625.486656pt;}
.y3f_c00208{bottom:627.635392pt;}
.y40_c00208{bottom:628.576101pt;}
.y41_c00208{bottom:630.597813pt;}
.y42_c00208{bottom:630.969851pt;}
.y43_c00208{bottom:631.535611pt;}
.y44_c00208{bottom:633.369125pt;}
.y35_c00208{bottom:645.094864pt;}
.y36_c00208{bottom:645.922315pt;}
.y37_c00208{bottom:647.034432pt;}
.y38_c00208{bottom:648.312667pt;}
.y39_c00208{bottom:648.945536pt;}
.y3a_c00208{bottom:650.516651pt;}
.y3b_c00208{bottom:651.896395pt;}
.y3c_c00208{bottom:653.322251pt;}
.y33_c00208{bottom:672.707072pt;}
.y34_c00208{bottom:673.947909pt;}
.y29_c00208{bottom:694.796427pt;}
.y2a_c00208{bottom:695.541040pt;}
.y2b_c00208{bottom:696.148517pt;}
.y2c_c00208{bottom:697.142384pt;}
.y2d_c00208{bottom:697.825051pt;}
.y2e_c00208{bottom:700.399003pt;}
.y2f_c00208{bottom:701.115163pt;}
.y30_c00208{bottom:702.173141pt;}
.y31_c00208{bottom:702.859317pt;}
.y32_c00208{bottom:703.546277pt;}
.y20_c00208{bottom:715.443179pt;}
.y21_c00208{bottom:716.120144pt;}
.y22_c00208{bottom:716.674043pt;}
.y23_c00208{bottom:717.607061pt;}
.y24_c00208{bottom:719.649147pt;}
.y25_c00208{bottom:720.739557pt;}
.y26_c00208{bottom:721.191125pt;}
.y27_c00208{bottom:722.283179pt;}
.y28_c00208{bottom:722.797424pt;}
.y14_c00208{bottom:735.609333pt;}
.y15_c00208{bottom:736.171536pt;}
.y16_c00208{bottom:736.795563pt;}
.y17_c00208{bottom:738.341312pt;}
.y18_c00208{bottom:738.990651pt;}
.y19_c00208{bottom:740.169936pt;}
.y1a_c00208{bottom:741.256821pt;}
.y1b_c00208{bottom:741.768101pt;}
.y1c_c00208{bottom:742.668805pt;}
.y1d_c00208{bottom:743.206555pt;}
.y1e_c00208{bottom:743.731835pt;}
.y1f_c00208{bottom:745.109659pt;}
.y11_c00208{bottom:776.170667pt;}
.y12_c00208{bottom:780.546984pt;}
.y13_c00208{bottom:782.032355pt;}
.y10_c00208{bottom:802.732067pt;}
.yb_c00208{bottom:815.280413pt;}
.yc_c00208{bottom:816.832480pt;}
.yd_c00208{bottom:817.095173pt;}
.ye_c00208{bottom:817.505627pt;}
.yf_c00208{bottom:819.615387pt;}
.y2_c00208{bottom:825.370667pt;}
.y3_c00208{bottom:828.203107pt;}
.y4_c00208{bottom:830.132467pt;}
.y5_c00208{bottom:831.758947pt;}
.y6_c00208{bottom:833.221187pt;}
.y7_c00208{bottom:834.417307pt;}
.y8_c00208{bottom:835.194707pt;}
.y9_c00208{bottom:835.747707pt;}
.ya_c00208{bottom:836.511427pt;}
.y1_c00208{bottom:837.728000pt;}
.h1c_c00208{height:19.600000pt;}
.h2_c00208{height:25.200000pt;}
.h5_c00208{height:33.615117pt;}
.h1b_c00208{height:43.866667pt;}
.h1a_c00208{height:47.600000pt;}
.h12_c00208{height:54.154549pt;}
.h3_c00208{height:54.157688pt;}
.h16_c00208{height:56.955647pt;}
.h7_c00208{height:58.823045pt;}
.h4_c00208{height:58.826454pt;}
.h11_c00208{height:59.756744pt;}
.hc_c00208{height:60.690443pt;}
.h13_c00208{height:61.624142pt;}
.he_c00208{height:62.557842pt;}
.hd_c00208{height:63.491541pt;}
.h15_c00208{height:64.425240pt;}
.h19_c00208{height:65.333333pt;}
.h8_c00208{height:65.358939pt;}
.hf_c00208{height:66.292638pt;}
.h9_c00208{height:67.226337pt;}
.ha_c00208{height:70.027435pt;}
.hb_c00208{height:71.894833pt;}
.h17_c00208{height:73.762231pt;}
.h10_c00208{height:75.629629pt;}
.h6_c00208{height:77.487154pt;}
.h14_c00208{height:94.303612pt;}
.h18_c00208{height:99.866667pt;}
.h1_c00208{height:893.333333pt;}
.h0_c00208{height:893.466667pt;}
.w0_c00208{width:654.000000pt;}
.x0_c00208{left:0.000000pt;}
.xb_c00208{left:32.232560pt;}
.x3_c00208{left:38.766667pt;}
.x37_c00208{left:97.192112pt;}
.x38_c00208{left:109.191440pt;}
.x5c_c00208{left:112.003472pt;}
.x14_c00208{left:113.856000pt;}
.x3e_c00208{left:115.067520pt;}
.x4d_c00208{left:118.188747pt;}
.x61_c00208{left:120.289003pt;}
.x6e_c00208{left:121.240288pt;}
.x76_c00208{left:122.468373pt;}
.x80_c00208{left:124.446048pt;}
.xc_c00208{left:129.253280pt;}
.x4_c00208{left:133.181333pt;}
.x1d_c00208{left:135.232683pt;}
.x24_c00208{left:137.175301pt;}
.x39_c00208{left:138.951093pt;}
.x31_c00208{left:139.909429pt;}
.x2c_c00208{left:140.802379pt;}
.x7e_c00208{left:142.602069pt;}
.x85_c00208{left:144.720000pt;}
.xd_c00208{left:145.705533pt;}
.x11_c00208{left:146.857333pt;}
.x6f_c00208{left:149.110091pt;}
.x1e_c00208{left:153.108523pt;}
.x5d_c00208{left:154.275157pt;}
.x15_c00208{left:156.221333pt;}
.x62_c00208{left:157.750805pt;}
.x81_c00208{left:160.190373pt;}
.x7c_c00208{left:168.514325pt;}
.xe_c00208{left:171.353627pt;}
.x3a_c00208{left:174.489115pt;}
.x2d_c00208{left:176.660688pt;}
.x82_c00208{left:179.771147pt;}
.x77_c00208{left:182.027696pt;}
.x1f_c00208{left:183.189984pt;}
.x86_c00208{left:185.520000pt;}
.x25_c00208{left:187.217701pt;}
.x66_c00208{left:188.217808pt;}
.x58_c00208{left:189.136016pt;}
.x63_c00208{left:192.548384pt;}
.x5_c00208{left:197.493333pt;}
.x43_c00208{left:201.904645pt;}
.x26_c00208{left:208.548645pt;}
.x16_c00208{left:211.426667pt;}
.x70_c00208{left:213.189259pt;}
.x3f_c00208{left:215.248587pt;}
.x87_c00208{left:216.906667pt;}
.x2e_c00208{left:217.879883pt;}
.x4e_c00208{left:219.160747pt;}
.x83_c00208{left:221.185989pt;}
.x10_c00208{left:222.323600pt;}
.x3b_c00208{left:224.173019pt;}
.x71_c00208{left:228.317605pt;}
.x4b_c00208{left:231.414277pt;}
.x6a_c00208{left:233.699979pt;}
.x17_c00208{left:234.617333pt;}
.x2b_c00208{left:235.768672pt;}
.x2f_c00208{left:238.290165pt;}
.x32_c00208{left:239.571733pt;}
.x44_c00208{left:240.784027pt;}
.x7f_c00208{left:242.099680pt;}
.x53_c00208{left:247.183851pt;}
.x20_c00208{left:249.068459pt;}
.x78_c00208{left:250.155504pt;}
.x6_c00208{left:251.709333pt;}
.x84_c00208{left:252.879760pt;}
.x5e_c00208{left:263.898613pt;}
.x72_c00208{left:267.476677pt;}
.x4f_c00208{left:269.208747pt;}
.x49_c00208{left:273.787451pt;}
.x18_c00208{left:276.734667pt;}
.x40_c00208{left:282.704816pt;}
.x21_c00208{left:284.246843pt;}
.x59_c00208{left:286.952016pt;}
.x27_c00208{left:288.990315pt;}
.x5f_c00208{left:290.285440pt;}
.x50_c00208{left:293.571413pt;}
.x45_c00208{left:296.418027pt;}
.x88_c00208{left:297.561333pt;}
.x22_c00208{left:298.801611pt;}
.x7_c00208{left:300.450667pt;}
.x64_c00208{left:301.693568pt;}
.xf_c00208{left:303.200947pt;}
.x33_c00208{left:304.770245pt;}
.x5a_c00208{left:306.272016pt;}
.x54_c00208{left:310.192341pt;}
.x28_c00208{left:311.374480pt;}
.x19_c00208{left:315.552000pt;}
.x34_c00208{left:316.770571pt;}
.x67_c00208{left:318.346693pt;}
.x46_c00208{left:320.038715pt;}
.x79_c00208{left:322.480869pt;}
.x65_c00208{left:323.414064pt;}
.x73_c00208{left:325.300469pt;}
.x55_c00208{left:332.347109pt;}
.x1a_c00208{left:333.812000pt;}
.x35_c00208{left:335.022373pt;}
.x12_c00208{left:337.132000pt;}
.x8_c00208{left:340.321333pt;}
.x29_c00208{left:344.441451pt;}
.x23_c00208{left:350.641280pt;}
.x51_c00208{left:352.063413pt;}
.x1_c00208{left:353.760000pt;}
.x89_c00208{left:354.890667pt;}
.x4a_c00208{left:357.839840pt;}
.x3c_c00208{left:359.252107pt;}
.x74_c00208{left:360.151019pt;}
.x6b_c00208{left:362.550389pt;}
.x9_c00208{left:366.234667pt;}
.x68_c00208{left:367.873637pt;}
.x56_c00208{left:369.695685pt;}
.x47_c00208{left:370.843792pt;}
.x60_c00208{left:375.180885pt;}
.x30_c00208{left:379.494331pt;}
.x2_c00208{left:384.720000pt;}
.x7a_c00208{left:386.372453pt;}
.x2a_c00208{left:387.382005pt;}
.x7b_c00208{left:389.102773pt;}
.x5b_c00208{left:391.297349pt;}
.x7d_c00208{left:392.772539pt;}
.x36_c00208{left:394.166741pt;}
.x75_c00208{left:396.652421pt;}
.x13_c00208{left:401.713333pt;}
.x1b_c00208{left:403.945333pt;}
.x41_c00208{left:406.905872pt;}
.xa_c00208{left:410.125333pt;}
.x52_c00208{left:411.827413pt;}
.x3d_c00208{left:416.887563pt;}
.x48_c00208{left:423.576683pt;}
.x6c_c00208{left:424.487963pt;}
.x69_c00208{left:428.615739pt;}
.x42_c00208{left:430.725861pt;}
.x4c_c00208{left:433.748944pt;}
.x6d_c00208{left:442.754016pt;}
.x1c_c00208{left:453.153333pt;}
.x57_c00208{left:456.478832pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.ma5_c00209{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);}
.m14_c00209{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);}
.mde_c00209{transform:matrix(0.039510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039510,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.049320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049320,0.000000,0.000000,0.250000,0,0);}
.ma6_c00209{transform:matrix(0.067010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067010,0.000000,0.000000,0.250000,0,0);}
.mb7_c00209{transform:matrix(0.116320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116320,0.000000,0.000000,0.250000,0,0);}
.mbe_c00209{transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);}
.mdf_c00209{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{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);}
.m35_c00209{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);}
.me2_c00209{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);}
.mab_c00209{transform:matrix(0.145260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145260,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{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);}
.m2b_c00209{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);}
.m47_c00209{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);}
.m77_c00209{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);}
.m53_c00209{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.ma7_c00209{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);}
.m20_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);}
.me1_c00209{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);}
.m24_c00209{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.mc7_c00209{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{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);}
.me0_c00209{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);}
.m59_c00209{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);}
.m93_c00209{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);}
.ma3_c00209{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);}
.m5a_c00209{transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{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);}
.m60_c00209{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);}
.m83_c00209{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);}
.maa_c00209{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);}
.ma9_c00209{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);}
.m21_c00209{transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);}
.mbd_c00209{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_c00209{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);}
.mc2_c00209{transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{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);}
.m5c_c00209{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);}
.mb_c00209{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);}
.m4_c00209{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);}
.m99_c00209{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);}
.m66_c00209{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);}
.m91_c00209{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);}
.m57_c00209{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);}
.mca_c00209{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);}
.mc3_c00209{transform:matrix(0.168135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168135,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{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);}
.ma_c00209{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);}
.mb3_c00209{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);}
.m55_c00209{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);}
.m65_c00209{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);}
.m8f_c00209{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.ma0_c00209{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);}
.m6b_c00209{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);}
.m12_c00209{transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);}
.md5_c00209{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);}
.m5d_c00209{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);}
.m4b_c00209{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);}
.m9d_c00209{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);}
.m1a_c00209{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{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);}
.m63_c00209{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);}
.m1e_c00209{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);}
.ma8_c00209{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);}
.mc0_c00209{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);}
.ma1_c00209{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);}
.m7c_c00209{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);}
.m87_c00209{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);}
.m3_c00209{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);}
.mb4_c00209{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);}
.m6f_c00209{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);}
.m32_c00209{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_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);}
.m8e_c00209{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);}
.m67_c00209{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);}
.m34_c00209{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);}
.m30_c00209{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);}
.ma2_c00209{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);}
.m2c_c00209{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);}
.m9a_c00209{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);}
.m78_c00209{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);}
.m64_c00209{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);}
.m17_c00209{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);}
.m5b_c00209{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);}
.mbb_c00209{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);}
.mb2_c00209{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);}
.md9_c00209{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);}
.m62_c00209{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);}
.m7f_c00209{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);}
.m8b_c00209{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);}
.m25_c00209{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);}
.m69_c00209{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);}
.mb9_c00209{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);}
.m2a_c00209{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);}
.mae_c00209{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);}
.mc6_c00209{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);}
.m90_c00209{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);}
.m6e_c00209{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);}
.mcd_c00209{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);}
.m86_c00209{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);}
.mc1_c00209{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);}
.mdd_c00209{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);}
.mc5_c00209{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_c00209{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);}
.m5f_c00209{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);}
.m23_c00209{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);}
.m8a_c00209{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);}
.m4d_c00209{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);}
.m3b_c00209{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);}
.m3a_c00209{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);}
.m2f_c00209{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);}
.mb0_c00209{transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{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);}
.m58_c00209{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_c00209{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);}
.m72_c00209{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);}
.m80_c00209{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);}
.m61_c00209{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);}
.mc4_c00209{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);}
.md8_c00209{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);}
.mc8_c00209{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);}
.m7b_c00209{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);}
.m73_c00209{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);}
.m36_c00209{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);}
.md3_c00209{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);}
.mbc_c00209{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);}
.m68_c00209{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);}
.m94_c00209{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);}
.m76_c00209{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);}
.m56_c00209{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);}
.mb5_c00209{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);}
.m8c_c00209{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);}
.m44_c00209{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);}
.m4e_c00209{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);}
.m46_c00209{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);}
.m2d_c00209{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);}
.m6a_c00209{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);}
.m9c_c00209{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);}
.mce_c00209{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);}
.m40_c00209{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);}
.m81_c00209{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);}
.m29_c00209{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);}
.m9f_c00209{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);}
.m27_c00209{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);}
.m4c_c00209{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);}
.m48_c00209{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);}
.m45_c00209{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);}
.m9e_c00209{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);}
.ma4_c00209{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);}
.md1_c00209{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);}
.m9b_c00209{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);}
.m10_c00209{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);}
.m75_c00209{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);}
.m71_c00209{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);}
.mdc_c00209{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);}
.m6d_c00209{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);}
.md2_c00209{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);}
.mcc_c00209{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);}
.mb1_c00209{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);}
.m3e_c00209{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);}
.m1f_c00209{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);}
.m8d_c00209{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);}
.m5_c00209{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);}
.mac_c00209{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);}
.mcb_c00209{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);}
.m31_c00209{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);}
.m2e_c00209{transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228590,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229980,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{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);}
.m33_c00209{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);}
.mc9_c00209{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.mb6_c00209{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);}
.m85_c00209{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);}
.m37_c00209{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);}
.m28_c00209{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);}
.mad_c00209{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{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);}
.m96_c00209{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.md0_c00209{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);}
.m79_c00209{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);}
.m4a_c00209{transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255825,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256095,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{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);}
.m41_c00209{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);}
.mda_c00209{transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{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);}
.mf_c00209{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);}
.mba_c00209{transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);}
.maf_c00209{transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265745,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.md6_c00209{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281385,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);}
.md4_c00209{transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.318530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318530,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318555,0.000000,0.000000,0.250000,0,0);}
.mb8_c00209{transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321675,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{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);}
.m15_c00209{transform:matrix(0.329775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329775,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333360,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334135,0.000000,0.000000,0.250000,0,0);}
.m88_c00209{transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);}
.mdb_c00209{transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00209{transform:matrix(0.344965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344965,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.353880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353880,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.354865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363235,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.379485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379485,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.387945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387945,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.391955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391955,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.408420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408420,0.000000,0.000000,0.250000,0,0);}
.mbf_c00209{transform:matrix(0.410170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410170,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.422160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422160,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.445505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445505,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.574125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574125,0.000000,0.000000,0.250000,0,0);}
.md7_c00209{transform:matrix(0.603815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603815,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.616265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616265,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;}
.fse_c00209{font-size:43.050000px;}
.fsa_c00209{font-size:49.350000px;}
.fsd_c00209{font-size:50.400000px;}
.fsc_c00209{font-size:51.450000px;}
.fsb_c00209{font-size:55.650000px;}
.fs0_c00209{font-size:63.000000px;}
.fs4_c00209{font-size:64.050000px;}
.fs8_c00209{font-size:68.250000px;}
.fs7_c00209{font-size:69.300000px;}
.fs5_c00209{font-size:70.350000px;}
.fs3_c00209{font-size:71.400000px;}
.fs2_c00209{font-size:72.450000px;}
.fs6_c00209{font-size:73.500000px;}
.fs9_c00209{font-size:74.550000px;}
.fs1_c00209{font-size:156.450000px;}
.y0_c00209{bottom:0.000000px;}
.y5e_c00209{bottom:176.008500px;}
.y5d_c00209{bottom:176.403000px;}
.y5c_c00209{bottom:177.693000px;}
.y5b_c00209{bottom:178.134000px;}
.y5a_c00209{bottom:178.474500px;}
.y59_c00209{bottom:195.559500px;}
.y58_c00209{bottom:195.964500px;}
.y57_c00209{bottom:196.291500px;}
.y56_c00209{bottom:213.426000px;}
.y55_c00209{bottom:229.059000px;}
.y54_c00209{bottom:229.782000px;}
.y53_c00209{bottom:230.064000px;}
.y52_c00209{bottom:230.316000px;}
.y51_c00209{bottom:230.848500px;}
.y50_c00209{bottom:231.088500px;}
.y4f_c00209{bottom:231.783000px;}
.y4e_c00209{bottom:232.471500px;}
.y4d_c00209{bottom:246.736500px;}
.y4c_c00209{bottom:247.453500px;}
.y4b_c00209{bottom:248.374500px;}
.y4a_c00209{bottom:248.914500px;}
.y49_c00209{bottom:249.510000px;}
.y48_c00209{bottom:249.657000px;}
.y47_c00209{bottom:250.020000px;}
.y46_c00209{bottom:265.836000px;}
.y45_c00209{bottom:283.989000px;}
.y44_c00209{bottom:302.269500px;}
.y43_c00209{bottom:320.077500px;}
.y42_c00209{bottom:351.598500px;}
.y41_c00209{bottom:351.910500px;}
.y40_c00209{bottom:352.933500px;}
.y3f_c00209{bottom:353.382000px;}
.y3e_c00209{bottom:353.911500px;}
.y3d_c00209{bottom:354.606000px;}
.y3c_c00209{bottom:354.922500px;}
.y3b_c00209{bottom:355.323000px;}
.y3a_c00209{bottom:374.550000px;}
.y39_c00209{bottom:374.772000px;}
.y38_c00209{bottom:375.582000px;}
.y37_c00209{bottom:375.936000px;}
.y36_c00209{bottom:376.533000px;}
.y35_c00209{bottom:377.175000px;}
.y34_c00209{bottom:377.455500px;}
.y33_c00209{bottom:378.003000px;}
.y32_c00209{bottom:397.311000px;}
.y31_c00209{bottom:398.014500px;}
.y30_c00209{bottom:398.895000px;}
.y2f_c00209{bottom:399.043500px;}
.y2e_c00209{bottom:399.459000px;}
.y2d_c00209{bottom:399.930000px;}
.y2c_c00209{bottom:400.236000px;}
.y2b_c00209{bottom:400.410000px;}
.y2a_c00209{bottom:422.611500px;}
.y29_c00209{bottom:444.673500px;}
.y28_c00209{bottom:444.949500px;}
.y27_c00209{bottom:445.242000px;}
.y26_c00209{bottom:445.597500px;}
.y25_c00209{bottom:445.971000px;}
.y24_c00209{bottom:446.148000px;}
.y23_c00209{bottom:446.352000px;}
.y22_c00209{bottom:446.884500px;}
.y21_c00209{bottom:447.271500px;}
.y20_c00209{bottom:447.660000px;}
.y1f_c00209{bottom:468.585000px;}
.y1e_c00209{bottom:491.608500px;}
.y1d_c00209{bottom:514.407000px;}
.y1c_c00209{bottom:537.504000px;}
.y1b_c00209{bottom:559.714500px;}
.y1a_c00209{bottom:583.278000px;}
.y19_c00209{bottom:606.540000px;}
.y18_c00209{bottom:629.331000px;}
.y17_c00209{bottom:652.486500px;}
.y16_c00209{bottom:674.847000px;}
.y15_c00209{bottom:697.554000px;}
.y14_c00209{bottom:720.405000px;}
.y13_c00209{bottom:743.848500px;}
.y12_c00209{bottom:765.934500px;}
.y11_c00209{bottom:789.646500px;}
.y10_c00209{bottom:813.513000px;}
.yf_c00209{bottom:836.092500px;}
.y9_c00209{bottom:873.454500px;}
.ya_c00209{bottom:874.945500px;}
.yb_c00209{bottom:875.776500px;}
.yc_c00209{bottom:876.325500px;}
.yd_c00209{bottom:877.171500px;}
.ye_c00209{bottom:881.433000px;}
.y8_c00209{bottom:917.344500px;}
.y7_c00209{bottom:918.157500px;}
.y6_c00209{bottom:919.540500px;}
.y5_c00209{bottom:919.741500px;}
.y4_c00209{bottom:920.074500px;}
.y3_c00209{bottom:920.973000px;}
.y2_c00209{bottom:921.783000px;}
.y1_c00209{bottom:939.039000px;}
.h10_c00209{height:43.050000px;}
.hc_c00209{height:49.350000px;}
.hf_c00209{height:50.400000px;}
.he_c00209{height:51.450000px;}
.hd_c00209{height:55.650000px;}
.h2_c00209{height:63.000000px;}
.h6_c00209{height:64.050000px;}
.ha_c00209{height:68.250000px;}
.h9_c00209{height:69.300000px;}
.h7_c00209{height:70.350000px;}
.h5_c00209{height:71.400000px;}
.h4_c00209{height:72.450000px;}
.h8_c00209{height:73.500000px;}
.hb_c00209{height:74.550000px;}
.h3_c00209{height:156.450000px;}
.h0_c00209{height:1008.450000px;}
.h1_c00209{height:1008.750000px;}
.w0_c00209{width:678.450000px;}
.w1_c00209{width:678.750000px;}
.x0_c00209{left:0.000000px;}
.x9_c00209{left:115.878000px;}
.x10_c00209{left:139.345500px;}
.x1_c00209{left:157.950000px;}
.x73_c00209{left:165.345000px;}
.x23_c00209{left:167.130000px;}
.x3e_c00209{left:169.020000px;}
.x2e_c00209{left:170.910000px;}
.x66_c00209{left:184.140000px;}
.x6c_c00209{left:192.142500px;}
.x74_c00209{left:196.123500px;}
.x5e_c00209{left:197.640000px;}
.x4a_c00209{left:202.500000px;}
.x67_c00209{left:205.740000px;}
.x38_c00209{left:210.330000px;}
.x57_c00209{left:213.300000px;}
.x84_c00209{left:215.514000px;}
.xa_c00209{left:217.123500px;}
.x75_c00209{left:220.419000px;}
.x50_c00209{left:225.450000px;}
.x2f_c00209{left:228.420000px;}
.x11_c00209{left:232.489500px;}
.x5f_c00209{left:236.250000px;}
.x39_c00209{left:237.330000px;}
.x3f_c00209{left:238.950000px;}
.x24_c00209{left:240.030000px;}
.x5b_c00209{left:241.650000px;}
.x79_c00209{left:242.730000px;}
.x51_c00209{left:245.430000px;}
.x4b_c00209{left:248.400000px;}
.x7a_c00209{left:250.830000px;}
.x80_c00209{left:251.910000px;}
.x7d_c00209{left:252.990000px;}
.x30_c00209{left:254.610000px;}
.x25_c00209{left:258.120000px;}
.x22_c00209{left:261.630000px;}
.x2_c00209{left:262.980000px;}
.x88_c00209{left:265.711500px;}
.x40_c00209{left:267.030000px;}
.x86_c00209{left:268.108500px;}
.x87_c00209{left:269.319000px;}
.x60_c00209{left:271.890000px;}
.x76_c00209{left:273.883500px;}
.x7e_c00209{left:276.210000px;}
.x15_c00209{left:277.290000px;}
.x7b_c00209{left:279.180000px;}
.x70_c00209{left:281.116500px;}
.x12_c00209{left:284.380500px;}
.x52_c00209{left:286.200000px;}
.x3_c00209{left:287.280000px;}
.x26_c00209{left:288.630000px;}
.x7f_c00209{left:290.790000px;}
.x58_c00209{left:292.410000px;}
.x48_c00209{left:296.190000px;}
.x31_c00209{left:297.540000px;}
.x1b_c00209{left:301.590000px;}
.x6d_c00209{left:303.123000px;}
.x27_c00209{left:308.610000px;}
.x3a_c00209{left:311.310000px;}
.x62_c00209{left:312.819000px;}
.x16_c00209{left:314.010000px;}
.x53_c00209{left:315.090000px;}
.x4_c00209{left:316.980000px;}
.x13_c00209{left:318.657000px;}
.x44_c00209{left:320.490000px;}
.x5c_c00209{left:323.190000px;}
.x1c_c00209{left:325.620000px;}
.x71_c00209{left:327.072000px;}
.xb_c00209{left:329.443500px;}
.x89_c00209{left:330.496500px;}
.x83_c00209{left:331.683000px;}
.x5a_c00209{left:333.450000px;}
.x7c_c00209{left:335.070000px;}
.x32_c00209{left:336.150000px;}
.x4c_c00209{left:339.930000px;}
.x81_c00209{left:341.010000px;}
.x5_c00209{left:342.360000px;}
.x45_c00209{left:344.250000px;}
.x68_c00209{left:346.140000px;}
.x77_c00209{left:349.173000px;}
.x41_c00209{left:354.240000px;}
.x3b_c00209{left:356.670000px;}
.x17_c00209{left:357.750000px;}
.x49_c00209{left:360.990000px;}
.x4d_c00209{left:362.610000px;}
.x82_c00209{left:364.770000px;}
.x28_c00209{left:367.200000px;}
.x54_c00209{left:369.090000px;}
.xc_c00209{left:371.028000px;}
.x46_c00209{left:373.410000px;}
.x69_c00209{left:379.080000px;}
.x18_c00209{left:380.430000px;}
.x33_c00209{left:382.860000px;}
.x29_c00209{left:387.450000px;}
.x4e_c00209{left:388.530000px;}
.x42_c00209{left:391.230000px;}
.x85_c00209{left:395.049000px;}
.xd_c00209{left:396.133500px;}
.x2a_c00209{left:403.380000px;}
.x34_c00209{left:405.270000px;}
.x19_c00209{left:407.700000px;}
.x1d_c00209{left:409.050000px;}
.x3c_c00209{left:412.290000px;}
.x72_c00209{left:416.620500px;}
.x61_c00209{left:418.230000px;}
.x59_c00209{left:424.170000px;}
.x1a_c00209{left:426.330000px;}
.x47_c00209{left:427.950000px;}
.x43_c00209{left:430.650000px;}
.x1e_c00209{left:431.730000px;}
.x2b_c00209{left:433.350000px;}
.x63_c00209{left:436.206000px;}
.x35_c00209{left:437.940000px;}
.x6a_c00209{left:443.340000px;}
.x6_c00209{left:447.660000px;}
.x55_c00209{left:449.820000px;}
.x78_c00209{left:451.791000px;}
.x1f_c00209{left:457.380000px;}
.x36_c00209{left:459.000000px;}
.x2c_c00209{left:461.160000px;}
.x5d_c00209{left:466.560000px;}
.x64_c00209{left:468.637500px;}
.x4f_c00209{left:474.120000px;}
.x20_c00209{left:480.600000px;}
.x6b_c00209{left:484.380000px;}
.x56_c00209{left:492.750000px;}
.x2d_c00209{left:494.910000px;}
.x65_c00209{left:499.386000px;}
.x21_c00209{left:500.850000px;}
.x6e_c00209{left:509.643000px;}
.x3d_c00209{left:512.730000px;}
.x37_c00209{left:517.050000px;}
.xe_c00209{left:568.942500px;}
.x6f_c00209{left:610.189500px;}
.x7_c00209{left:630.450000px;}
.x14_c00209{left:637.933500px;}
.xf_c00209{left:670.560000px;}
.x8_c00209{left:671.760000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
.fse_c00209{font-size:38.266667pt;}
.fsa_c00209{font-size:43.866667pt;}
.fsd_c00209{font-size:44.800000pt;}
.fsc_c00209{font-size:45.733333pt;}
.fsb_c00209{font-size:49.466667pt;}
.fs0_c00209{font-size:56.000000pt;}
.fs4_c00209{font-size:56.933333pt;}
.fs8_c00209{font-size:60.666667pt;}
.fs7_c00209{font-size:61.600000pt;}
.fs5_c00209{font-size:62.533333pt;}
.fs3_c00209{font-size:63.466667pt;}
.fs2_c00209{font-size:64.400000pt;}
.fs6_c00209{font-size:65.333333pt;}
.fs9_c00209{font-size:66.266667pt;}
.fs1_c00209{font-size:139.066667pt;}
.y0_c00209{bottom:0.000000pt;}
.y5e_c00209{bottom:156.452000pt;}
.y5d_c00209{bottom:156.802667pt;}
.y5c_c00209{bottom:157.949333pt;}
.y5b_c00209{bottom:158.341333pt;}
.y5a_c00209{bottom:158.644000pt;}
.y59_c00209{bottom:173.830667pt;}
.y58_c00209{bottom:174.190667pt;}
.y57_c00209{bottom:174.481333pt;}
.y56_c00209{bottom:189.712000pt;}
.y55_c00209{bottom:203.608000pt;}
.y54_c00209{bottom:204.250667pt;}
.y53_c00209{bottom:204.501333pt;}
.y52_c00209{bottom:204.725333pt;}
.y51_c00209{bottom:205.198667pt;}
.y50_c00209{bottom:205.412000pt;}
.y4f_c00209{bottom:206.029333pt;}
.y4e_c00209{bottom:206.641333pt;}
.y4d_c00209{bottom:219.321333pt;}
.y4c_c00209{bottom:219.958667pt;}
.y4b_c00209{bottom:220.777333pt;}
.y4a_c00209{bottom:221.257333pt;}
.y49_c00209{bottom:221.786667pt;}
.y48_c00209{bottom:221.917333pt;}
.y47_c00209{bottom:222.240000pt;}
.y46_c00209{bottom:236.298667pt;}
.y45_c00209{bottom:252.434667pt;}
.y44_c00209{bottom:268.684000pt;}
.y43_c00209{bottom:284.513333pt;}
.y42_c00209{bottom:312.532000pt;}
.y41_c00209{bottom:312.809333pt;}
.y40_c00209{bottom:313.718667pt;}
.y3f_c00209{bottom:314.117333pt;}
.y3e_c00209{bottom:314.588000pt;}
.y3d_c00209{bottom:315.205333pt;}
.y3c_c00209{bottom:315.486667pt;}
.y3b_c00209{bottom:315.842667pt;}
.y3a_c00209{bottom:332.933333pt;}
.y39_c00209{bottom:333.130667pt;}
.y38_c00209{bottom:333.850667pt;}
.y37_c00209{bottom:334.165333pt;}
.y36_c00209{bottom:334.696000pt;}
.y35_c00209{bottom:335.266667pt;}
.y34_c00209{bottom:335.516000pt;}
.y33_c00209{bottom:336.002667pt;}
.y32_c00209{bottom:353.165333pt;}
.y31_c00209{bottom:353.790667pt;}
.y30_c00209{bottom:354.573333pt;}
.y2f_c00209{bottom:354.705333pt;}
.y2e_c00209{bottom:355.074667pt;}
.y2d_c00209{bottom:355.493333pt;}
.y2c_c00209{bottom:355.765333pt;}
.y2b_c00209{bottom:355.920000pt;}
.y2a_c00209{bottom:375.654667pt;}
.y29_c00209{bottom:395.265333pt;}
.y28_c00209{bottom:395.510667pt;}
.y27_c00209{bottom:395.770667pt;}
.y26_c00209{bottom:396.086667pt;}
.y25_c00209{bottom:396.418667pt;}
.y24_c00209{bottom:396.576000pt;}
.y23_c00209{bottom:396.757333pt;}
.y22_c00209{bottom:397.230667pt;}
.y21_c00209{bottom:397.574667pt;}
.y20_c00209{bottom:397.920000pt;}
.y1f_c00209{bottom:416.520000pt;}
.y1e_c00209{bottom:436.985333pt;}
.y1d_c00209{bottom:457.250667pt;}
.y1c_c00209{bottom:477.781333pt;}
.y1b_c00209{bottom:497.524000pt;}
.y1a_c00209{bottom:518.469333pt;}
.y19_c00209{bottom:539.146667pt;}
.y18_c00209{bottom:559.405333pt;}
.y17_c00209{bottom:579.988000pt;}
.y16_c00209{bottom:599.864000pt;}
.y15_c00209{bottom:620.048000pt;}
.y14_c00209{bottom:640.360000pt;}
.y13_c00209{bottom:661.198667pt;}
.y12_c00209{bottom:680.830667pt;}
.y11_c00209{bottom:701.908000pt;}
.y10_c00209{bottom:723.122667pt;}
.yf_c00209{bottom:743.193333pt;}
.y9_c00209{bottom:776.404000pt;}
.ya_c00209{bottom:777.729333pt;}
.yb_c00209{bottom:778.468000pt;}
.yc_c00209{bottom:778.956000pt;}
.yd_c00209{bottom:779.708000pt;}
.ye_c00209{bottom:783.496000pt;}
.y8_c00209{bottom:815.417333pt;}
.y7_c00209{bottom:816.140000pt;}
.y6_c00209{bottom:817.369333pt;}
.y5_c00209{bottom:817.548000pt;}
.y4_c00209{bottom:817.844000pt;}
.y3_c00209{bottom:818.642667pt;}
.y2_c00209{bottom:819.362667pt;}
.y1_c00209{bottom:834.701333pt;}
.h10_c00209{height:38.266667pt;}
.hc_c00209{height:43.866667pt;}
.hf_c00209{height:44.800000pt;}
.he_c00209{height:45.733333pt;}
.hd_c00209{height:49.466667pt;}
.h2_c00209{height:56.000000pt;}
.h6_c00209{height:56.933333pt;}
.ha_c00209{height:60.666667pt;}
.h9_c00209{height:61.600000pt;}
.h7_c00209{height:62.533333pt;}
.h5_c00209{height:63.466667pt;}
.h4_c00209{height:64.400000pt;}
.h8_c00209{height:65.333333pt;}
.hb_c00209{height:66.266667pt;}
.h3_c00209{height:139.066667pt;}
.h0_c00209{height:896.400000pt;}
.h1_c00209{height:896.666667pt;}
.w0_c00209{width:603.066667pt;}
.w1_c00209{width:603.333333pt;}
.x0_c00209{left:0.000000pt;}
.x9_c00209{left:103.002667pt;}
.x10_c00209{left:123.862667pt;}
.x1_c00209{left:140.400000pt;}
.x73_c00209{left:146.973333pt;}
.x23_c00209{left:148.560000pt;}
.x3e_c00209{left:150.240000pt;}
.x2e_c00209{left:151.920000pt;}
.x66_c00209{left:163.680000pt;}
.x6c_c00209{left:170.793333pt;}
.x74_c00209{left:174.332000pt;}
.x5e_c00209{left:175.680000pt;}
.x4a_c00209{left:180.000000pt;}
.x67_c00209{left:182.880000pt;}
.x38_c00209{left:186.960000pt;}
.x57_c00209{left:189.600000pt;}
.x84_c00209{left:191.568000pt;}
.xa_c00209{left:192.998667pt;}
.x75_c00209{left:195.928000pt;}
.x50_c00209{left:200.400000pt;}
.x2f_c00209{left:203.040000pt;}
.x11_c00209{left:206.657333pt;}
.x5f_c00209{left:210.000000pt;}
.x39_c00209{left:210.960000pt;}
.x3f_c00209{left:212.400000pt;}
.x24_c00209{left:213.360000pt;}
.x5b_c00209{left:214.800000pt;}
.x79_c00209{left:215.760000pt;}
.x51_c00209{left:218.160000pt;}
.x4b_c00209{left:220.800000pt;}
.x7a_c00209{left:222.960000pt;}
.x80_c00209{left:223.920000pt;}
.x7d_c00209{left:224.880000pt;}
.x30_c00209{left:226.320000pt;}
.x25_c00209{left:229.440000pt;}
.x22_c00209{left:232.560000pt;}
.x2_c00209{left:233.760000pt;}
.x88_c00209{left:236.188000pt;}
.x40_c00209{left:237.360000pt;}
.x86_c00209{left:238.318667pt;}
.x87_c00209{left:239.394667pt;}
.x60_c00209{left:241.680000pt;}
.x76_c00209{left:243.452000pt;}
.x7e_c00209{left:245.520000pt;}
.x15_c00209{left:246.480000pt;}
.x7b_c00209{left:248.160000pt;}
.x70_c00209{left:249.881333pt;}
.x12_c00209{left:252.782667pt;}
.x52_c00209{left:254.400000pt;}
.x3_c00209{left:255.360000pt;}
.x26_c00209{left:256.560000pt;}
.x7f_c00209{left:258.480000pt;}
.x58_c00209{left:259.920000pt;}
.x48_c00209{left:263.280000pt;}
.x31_c00209{left:264.480000pt;}
.x1b_c00209{left:268.080000pt;}
.x6d_c00209{left:269.442667pt;}
.x27_c00209{left:274.320000pt;}
.x3a_c00209{left:276.720000pt;}
.x62_c00209{left:278.061333pt;}
.x16_c00209{left:279.120000pt;}
.x53_c00209{left:280.080000pt;}
.x4_c00209{left:281.760000pt;}
.x13_c00209{left:283.250667pt;}
.x44_c00209{left:284.880000pt;}
.x5c_c00209{left:287.280000pt;}
.x1c_c00209{left:289.440000pt;}
.x71_c00209{left:290.730667pt;}
.xb_c00209{left:292.838667pt;}
.x89_c00209{left:293.774667pt;}
.x83_c00209{left:294.829333pt;}
.x5a_c00209{left:296.400000pt;}
.x7c_c00209{left:297.840000pt;}
.x32_c00209{left:298.800000pt;}
.x4c_c00209{left:302.160000pt;}
.x81_c00209{left:303.120000pt;}
.x5_c00209{left:304.320000pt;}
.x45_c00209{left:306.000000pt;}
.x68_c00209{left:307.680000pt;}
.x77_c00209{left:310.376000pt;}
.x41_c00209{left:314.880000pt;}
.x3b_c00209{left:317.040000pt;}
.x17_c00209{left:318.000000pt;}
.x49_c00209{left:320.880000pt;}
.x4d_c00209{left:322.320000pt;}
.x82_c00209{left:324.240000pt;}
.x28_c00209{left:326.400000pt;}
.x54_c00209{left:328.080000pt;}
.xc_c00209{left:329.802667pt;}
.x46_c00209{left:331.920000pt;}
.x69_c00209{left:336.960000pt;}
.x18_c00209{left:338.160000pt;}
.x33_c00209{left:340.320000pt;}
.x29_c00209{left:344.400000pt;}
.x4e_c00209{left:345.360000pt;}
.x42_c00209{left:347.760000pt;}
.x85_c00209{left:351.154667pt;}
.xd_c00209{left:352.118667pt;}
.x2a_c00209{left:358.560000pt;}
.x34_c00209{left:360.240000pt;}
.x19_c00209{left:362.400000pt;}
.x1d_c00209{left:363.600000pt;}
.x3c_c00209{left:366.480000pt;}
.x72_c00209{left:370.329333pt;}
.x61_c00209{left:371.760000pt;}
.x59_c00209{left:377.040000pt;}
.x1a_c00209{left:378.960000pt;}
.x47_c00209{left:380.400000pt;}
.x43_c00209{left:382.800000pt;}
.x1e_c00209{left:383.760000pt;}
.x2b_c00209{left:385.200000pt;}
.x63_c00209{left:387.738667pt;}
.x35_c00209{left:389.280000pt;}
.x6a_c00209{left:394.080000pt;}
.x6_c00209{left:397.920000pt;}
.x55_c00209{left:399.840000pt;}
.x78_c00209{left:401.592000pt;}
.x1f_c00209{left:406.560000pt;}
.x36_c00209{left:408.000000pt;}
.x2c_c00209{left:409.920000pt;}
.x5d_c00209{left:414.720000pt;}
.x64_c00209{left:416.566667pt;}
.x4f_c00209{left:421.440000pt;}
.x20_c00209{left:427.200000pt;}
.x6b_c00209{left:430.560000pt;}
.x56_c00209{left:438.000000pt;}
.x2d_c00209{left:439.920000pt;}
.x65_c00209{left:443.898667pt;}
.x21_c00209{left:445.200000pt;}
.x6e_c00209{left:453.016000pt;}
.x3d_c00209{left:455.760000pt;}
.x37_c00209{left:459.600000pt;}
.xe_c00209{left:505.726667pt;}
.x6f_c00209{left:542.390667pt;}
.x7_c00209{left:560.400000pt;}
.x14_c00209{left:567.052000pt;}
.xf_c00209{left:596.053333pt;}
.x8_c00209{left:597.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m19_c00210{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);}
.m2_c00210{transform:matrix(0.042217,-0.000464,0.002750,0.249985,0,0);-ms-transform:matrix(0.042217,-0.000464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.042217,-0.000464,0.002750,0.249985,0,0);}
.me_c00210{transform:matrix(0.073761,-0.000811,0.002750,0.249985,0,0);-ms-transform:matrix(0.073761,-0.000811,0.002750,0.249985,0,0);-webkit-transform:matrix(0.073761,-0.000811,0.002750,0.249985,0,0);}
.m7_c00210{transform:matrix(0.112273,-0.001235,0.002750,0.249985,0,0);-ms-transform:matrix(0.112273,-0.001235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.112273,-0.001235,0.002750,0.249985,0,0);}
.m12_c00210{transform:matrix(0.125752,-0.001383,0.002750,0.249985,0,0);-ms-transform:matrix(0.125752,-0.001383,0.002750,0.249985,0,0);-webkit-transform:matrix(0.125752,-0.001383,0.002750,0.249985,0,0);}
.m24_c00210{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);}
.m49_c00210{transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{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);}
.m72_c00210{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);}
.m3_c00210{transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);-ms-transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157375,-0.001731,0.002750,0.249985,0,0);}
.m1d_c00210{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);}
.m6a_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);}
.m82_c00210{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);}
.m99_c00210{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);}
.m86_c00210{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);}
.m2d_c00210{transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171380,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{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);}
.m73_c00210{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);}
.m76_c00210{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);}
.m74_c00210{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);}
.m48_c00210{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);}
.m4a_c00210{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);}
.m10_c00210{transform:matrix(0.178184,-0.001960,0.002750,0.249985,0,0);-ms-transform:matrix(0.178184,-0.001960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178184,-0.001960,0.002750,0.249985,0,0);}
.m77_c00210{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);}
.m23_c00210{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);}
.m47_c00210{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);}
.m75_c00210{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);}
.m4d_c00210{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);}
.m81_c00210{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);}
.m31_c00210{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);}
.m16_c00210{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);}
.m54_c00210{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);}
.m87_c00210{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);}
.m7f_c00210{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);}
.m26_c00210{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);}
.m9a_c00210{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);}
.m7e_c00210{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);}
.m96_c00210{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);}
.m80_c00210{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);}
.m30_c00210{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);}
.m3a_c00210{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);}
.m61_c00210{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);}
.m85_c00210{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);}
.m33_c00210{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);}
.m69_c00210{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);}
.m83_c00210{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);}
.m3c_c00210{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);}
.m37_c00210{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);}
.m71_c00210{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);}
.m2b_c00210{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);}
.m84_c00210{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);}
.m5b_c00210{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);}
.m6e_c00210{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);}
.m7b_c00210{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);}
.m6b_c00210{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);}
.m11_c00210{transform:matrix(0.198613,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198613,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198613,-0.002185,0.002750,0.249985,0,0);}
.m6d_c00210{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);}
.m39_c00210{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);}
.m97_c00210{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);}
.m35_c00210{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);}
.m2e_c00210{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);}
.m67_c00210{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);}
.m63_c00210{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);}
.m32_c00210{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);}
.m2f_c00210{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);}
.m8b_c00210{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);}
.m8c_c00210{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);}
.m64_c00210{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);}
.m7d_c00210{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);}
.m14_c00210{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);}
.m7c_c00210{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);}
.m52_c00210{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);}
.m21_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);}
.m3b_c00210{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);}
.m51_c00210{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);}
.m7a_c00210{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);}
.m8a_c00210{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);}
.m59_c00210{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);}
.m1e_c00210{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);}
.m70_c00210{transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{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);}
.m79_c00210{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);}
.m93_c00210{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);}
.m98_c00210{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);}
.m6f_c00210{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);}
.m55_c00210{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);}
.m46_c00210{transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{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);}
.m18_c00210{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);}
.m66_c00210{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);}
.m17_c00210{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);}
.m50_c00210{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);}
.m34_c00210{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);}
.m2c_c00210{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);}
.m38_c00210{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{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);}
.m22_c00210{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);}
.m62_c00210{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);}
.m94_c00210{transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{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);}
.m8f_c00210{transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);}
.m36_c00210{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);}
.m78_c00210{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);}
.m43_c00210{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{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);}
.m5e_c00210{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);}
.m1c_c00210{transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{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);}
.m89_c00210{transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.260630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260630,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{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);}
.m60_c00210{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);}
.m45_c00210{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);}
.m58_c00210{transform:matrix(0.268605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268605,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{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);}
.m1b_c00210{transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{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);}
.m44_c00210{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283230,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.284305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284305,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288435,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288770,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.288898,-0.003178,0.002750,0.249985,0,0);-ms-transform:matrix(0.288898,-0.003178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288898,-0.003178,0.002750,0.249985,0,0);}
.m3d_c00210{transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.299562,-0.003295,0.002750,0.249985,0,0);-ms-transform:matrix(0.299562,-0.003295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.299562,-0.003295,0.002750,0.249985,0,0);}
.m90_c00210{transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302155,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.302475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302475,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.320831,-0.003529,0.002750,0.249985,0,0);-ms-transform:matrix(0.320831,-0.003529,0.002750,0.249985,0,0);-webkit-transform:matrix(0.320831,-0.003529,0.002750,0.249985,0,0);}
.m56_c00210{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);}
.m8d_c00210{transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334140,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334420,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);}
.m5d_c00210{transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);-ms-transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.377417,-0.004152,0.002750,0.249985,0,0);}
.m29_c00210{transform:matrix(0.384575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384575,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.408930,-0.004498,0.002750,0.249985,0,0);-ms-transform:matrix(0.408930,-0.004498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.408930,-0.004498,0.002750,0.249985,0,0);}
.mc_c00210{transform:matrix(0.409575,-0.004505,0.002750,0.249985,0,0);-ms-transform:matrix(0.409575,-0.004505,0.002750,0.249985,0,0);-webkit-transform:matrix(0.409575,-0.004505,0.002750,0.249985,0,0);}
.m6_c00210{transform:matrix(0.412790,-0.004541,0.002750,0.249985,0,0);-ms-transform:matrix(0.412790,-0.004541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.412790,-0.004541,0.002750,0.249985,0,0);}
.m9_c00210{transform:matrix(0.413840,-0.004552,0.002750,0.249985,0,0);-ms-transform:matrix(0.413840,-0.004552,0.002750,0.249985,0,0);-webkit-transform:matrix(0.413840,-0.004552,0.002750,0.249985,0,0);}
.m1f_c00210{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);}
.m13_c00210{transform:matrix(0.445703,-0.004903,0.002750,0.249985,0,0);-ms-transform:matrix(0.445703,-0.004903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.445703,-0.004903,0.002750,0.249985,0,0);}
.md_c00210{transform:matrix(0.486941,-0.005356,0.002750,0.249985,0,0);-ms-transform:matrix(0.486941,-0.005356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.486941,-0.005356,0.002750,0.249985,0,0);}
.m5c_c00210{transform:matrix(0.489755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489755,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{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);}
.m27_c00210{transform:matrix(0.497190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497190,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.497430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497430,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.574755,-0.006322,0.002750,0.249985,0,0);-ms-transform:matrix(0.574755,-0.006322,0.002750,0.249985,0,0);-webkit-transform:matrix(0.574755,-0.006322,0.002750,0.249985,0,0);}
.m4e_c00210{transform:matrix(0.594965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594965,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.772833,-0.008501,0.002750,0.249985,0,0);-ms-transform:matrix(0.772833,-0.008501,0.002750,0.249985,0,0);-webkit-transform:matrix(0.772833,-0.008501,0.002750,0.249985,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;}
.fs0_c00210{font-size:22.050000px;}
.fs1_c00210{font-size:40.952477px;}
.fsf_c00210{font-size:48.300000px;}
.fs11_c00210{font-size:49.350000px;}
.fse_c00210{font-size:50.400000px;}
.fs10_c00210{font-size:52.500000px;}
.fsa_c00210{font-size:57.750000px;}
.fsc_c00210{font-size:63.000000px;}
.fs7_c00210{font-size:66.150000px;}
.fs5_c00210{font-size:67.200000px;}
.fsd_c00210{font-size:68.250000px;}
.fs6_c00210{font-size:69.300000px;}
.fs9_c00210{font-size:70.350000px;}
.fsb_c00210{font-size:72.450000px;}
.fs8_c00210{font-size:87.150000px;}
.fs4_c00210{font-size:100.800000px;}
.fs2_c00210{font-size:109.206606px;}
.fs3_c00210{font-size:135.458194px;}
.y0_c00210{bottom:0.000000px;}
.y3d_c00210{bottom:193.785000px;}
.y3c_c00210{bottom:213.121500px;}
.y3b_c00210{bottom:280.945500px;}
.y3a_c00210{bottom:298.342500px;}
.y39_c00210{bottom:316.560000px;}
.y38_c00210{bottom:334.405500px;}
.y37_c00210{bottom:351.375000px;}
.y36_c00210{bottom:369.759000px;}
.y35_c00210{bottom:387.597000px;}
.y34_c00210{bottom:428.883000px;}
.y33_c00210{bottom:456.949500px;}
.y32_c00210{bottom:486.129000px;}
.y31_c00210{bottom:508.419000px;}
.y30_c00210{bottom:535.245000px;}
.y2f_c00210{bottom:564.829500px;}
.y2e_c00210{bottom:586.651500px;}
.y2d_c00210{bottom:607.641000px;}
.y2c_c00210{bottom:631.428000px;}
.y2b_c00210{bottom:653.113500px;}
.y2a_c00210{bottom:653.460000px;}
.y29_c00210{bottom:654.180000px;}
.y28_c00210{bottom:654.565500px;}
.y27_c00210{bottom:655.146000px;}
.y26_c00210{bottom:655.437000px;}
.y25_c00210{bottom:655.909500px;}
.y24_c00210{bottom:656.262000px;}
.y23_c00210{bottom:656.940000px;}
.y22_c00210{bottom:657.451500px;}
.y21_c00210{bottom:683.170500px;}
.y20_c00210{bottom:711.820500px;}
.y1f_c00210{bottom:713.731500px;}
.y1e_c00210{bottom:714.306000px;}
.y1d_c00210{bottom:715.419000px;}
.y1c_c00210{bottom:716.061000px;}
.y1b_c00210{bottom:717.384000px;}
.y1a_c00210{bottom:718.207500px;}
.y19_c00210{bottom:738.901500px;}
.y18_c00210{bottom:764.203500px;}
.y17_c00210{bottom:793.251000px;}
.y16_c00210{bottom:814.359000px;}
.y15_c00210{bottom:844.008000px;}
.y10_c00210{bottom:885.601070px;}
.y11_c00210{bottom:889.138832px;}
.y12_c00210{bottom:890.268912px;}
.y13_c00210{bottom:891.511328px;}
.y14_c00210{bottom:892.377231px;}
.yb_c00210{bottom:924.756722px;}
.yc_c00210{bottom:926.496479px;}
.yd_c00210{bottom:929.135597px;}
.ye_c00210{bottom:932.545043px;}
.yf_c00210{bottom:934.615342px;}
.y1_c00210{bottom:949.320000px;}
.y2_c00210{bottom:949.611000px;}
.y3_c00210{bottom:950.124513px;}
.y4_c00210{bottom:951.588888px;}
.y5_c00210{bottom:952.085340px;}
.y6_c00210{bottom:952.771658px;}
.y7_c00210{bottom:953.370938px;}
.y8_c00210{bottom:954.270369px;}
.y9_c00210{bottom:954.743655px;}
.ya_c00210{bottom:955.444889px;}
.h2_c00210{height:22.050000px;}
.h3_c00210{height:40.952477px;}
.h11_c00210{height:48.300000px;}
.h13_c00210{height:49.350000px;}
.h10_c00210{height:50.400000px;}
.h12_c00210{height:52.500000px;}
.hc_c00210{height:57.750000px;}
.he_c00210{height:63.000000px;}
.h9_c00210{height:66.150000px;}
.h7_c00210{height:67.200000px;}
.hf_c00210{height:68.250000px;}
.h8_c00210{height:69.300000px;}
.hb_c00210{height:70.350000px;}
.hd_c00210{height:72.450000px;}
.ha_c00210{height:87.150000px;}
.h6_c00210{height:100.800000px;}
.h4_c00210{height:109.206606px;}
.h5_c00210{height:135.458194px;}
.h1_c00210{height:1005.000000px;}
.h0_c00210{height:1005.150000px;}
.w0_c00210{width:735.750000px;}
.x0_c00210{left:0.000000px;}
.xb_c00210{left:37.240722px;}
.x2_c00210{left:50.812500px;}
.x3_c00210{left:97.495500px;}
.x6f_c00210{left:103.140000px;}
.x1_c00210{left:108.270000px;}
.x67_c00210{left:122.850000px;}
.x17_c00210{left:125.550000px;}
.x2f_c00210{left:127.978500px;}
.x37_c00210{left:129.058500px;}
.x4e_c00210{left:131.760000px;}
.x70_c00210{left:133.110000px;}
.xc_c00210{left:139.620974px;}
.x10_c00210{left:141.351978px;}
.x68_c00210{left:146.070000px;}
.x30_c00210{left:152.008500px;}
.x46_c00210{left:157.950000px;}
.x69_c00210{left:163.350000px;}
.x28_c00210{left:167.214000px;}
.x38_c00210{left:169.018500px;}
.x3e_c00210{left:171.450000px;}
.x18_c00210{left:175.230000px;}
.x47_c00210{left:179.820000px;}
.x60_c00210{left:185.490000px;}
.x5b_c00210{left:189.810000px;}
.x31_c00210{left:192.238500px;}
.x5a_c00210{left:193.860000px;}
.x19_c00210{left:195.210000px;}
.x4f_c00210{left:196.830000px;}
.x58_c00210{left:201.690000px;}
.x1f_c00210{left:209.790000px;}
.x6a_c00210{left:211.680000px;}
.x5c_c00210{left:213.030000px;}
.x59_c00210{left:214.110000px;}
.x66_c00210{left:216.270000px;}
.x15_c00210{left:219.510000px;}
.x29_c00210{left:223.707000px;}
.x32_c00210{left:225.718500px;}
.x42_c00210{left:227.340000px;}
.x4_c00210{left:230.620500px;}
.x48_c00210{left:237.060000px;}
.x61_c00210{left:238.680000px;}
.x39_c00210{left:242.998500px;}
.x26_c00210{left:244.618500px;}
.x50_c00210{left:245.700000px;}
.x63_c00210{left:246.780000px;}
.x1b_c00210{left:251.640000px;}
.x2a_c00210{left:253.132500px;}
.x16_c00210{left:255.420000px;}
.x5d_c00210{left:258.120000px;}
.x6b_c00210{left:260.550000px;}
.x4b_c00210{left:262.170000px;}
.x51_c00210{left:264.600000px;}
.x1e_c00210{left:267.300000px;}
.x64_c00210{left:268.380000px;}
.x6c_c00210{left:273.240000px;}
.x20_c00210{left:274.602000px;}
.x5_c00210{left:275.752500px;}
.x3f_c00210{left:280.530000px;}
.x52_c00210{left:283.500000px;}
.x33_c00210{left:287.008500px;}
.x5e_c00210{left:290.250000px;}
.x1a_c00210{left:292.140000px;}
.xd_c00210{left:294.848727px;}
.x62_c00210{left:296.460000px;}
.x21_c00210{left:303.006000px;}
.x65_c00210{left:309.960000px;}
.x5f_c00210{left:313.740000px;}
.x2b_c00210{left:316.824000px;}
.x27_c00210{left:322.108500px;}
.x40_c00210{left:324.810000px;}
.x43_c00210{left:333.720000px;}
.x53_c00210{left:336.690000px;}
.x6_c00210{left:338.145000px;}
.x34_c00210{left:342.358500px;}
.x3a_c00210{left:346.948500px;}
.x22_c00210{left:348.652500px;}
.x6d_c00210{left:355.050000px;}
.x1c_c00210{left:364.230000px;}
.x3b_c00210{left:366.118500px;}
.x23_c00210{left:370.765500px;}
.x4c_c00210{left:375.840000px;}
.x11_c00210{left:377.183600px;}
.x41_c00210{left:379.620000px;}
.x54_c00210{left:382.320000px;}
.x49_c00210{left:383.400000px;}
.x1d_c00210{left:387.180000px;}
.x7_c00210{left:392.625000px;}
.x35_c00210{left:395.278500px;}
.x2c_c00210{left:397.315500px;}
.x44_c00210{left:400.680000px;}
.x3c_c00210{left:403.648500px;}
.x24_c00210{left:409.128000px;}
.x4a_c00210{left:411.210000px;}
.x45_c00210{left:419.040000px;}
.x4d_c00210{left:424.440000px;}
.x36_c00210{left:427.408500px;}
.x25_c00210{left:428.958000px;}
.x12_c00210{left:452.505783px;}
.x2d_c00210{left:457.266000px;}
.x55_c00210{left:460.350000px;}
.x3d_c00210{left:466.558500px;}
.x8_c00210{left:474.391500px;}
.x2e_c00210{left:486.103500px;}
.x56_c00210{left:493.020000px;}
.xe_c00210{left:495.421494px;}
.x6e_c00210{left:496.800000px;}
.x9_c00210{left:517.417500px;}
.x57_c00210{left:532.440000px;}
.x13_c00210{left:535.312637px;}
.xa_c00210{left:581.166000px;}
.x14_c00210{left:593.028595px;}
.xf_c00210{left:617.213459px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
.fs0_c00210{font-size:19.600000pt;}
.fs1_c00210{font-size:36.402202pt;}
.fsf_c00210{font-size:42.933333pt;}
.fs11_c00210{font-size:43.866667pt;}
.fse_c00210{font-size:44.800000pt;}
.fs10_c00210{font-size:46.666667pt;}
.fsa_c00210{font-size:51.333333pt;}
.fsc_c00210{font-size:56.000000pt;}
.fs7_c00210{font-size:58.800000pt;}
.fs5_c00210{font-size:59.733333pt;}
.fsd_c00210{font-size:60.666667pt;}
.fs6_c00210{font-size:61.600000pt;}
.fs9_c00210{font-size:62.533333pt;}
.fsb_c00210{font-size:64.400000pt;}
.fs8_c00210{font-size:77.466667pt;}
.fs4_c00210{font-size:89.600000pt;}
.fs2_c00210{font-size:97.072539pt;}
.fs3_c00210{font-size:120.407284pt;}
.y0_c00210{bottom:0.000000pt;}
.y3d_c00210{bottom:172.253333pt;}
.y3c_c00210{bottom:189.441333pt;}
.y3b_c00210{bottom:249.729333pt;}
.y3a_c00210{bottom:265.193333pt;}
.y39_c00210{bottom:281.386667pt;}
.y38_c00210{bottom:297.249333pt;}
.y37_c00210{bottom:312.333333pt;}
.y36_c00210{bottom:328.674667pt;}
.y35_c00210{bottom:344.530667pt;}
.y34_c00210{bottom:381.229333pt;}
.y33_c00210{bottom:406.177333pt;}
.y32_c00210{bottom:432.114667pt;}
.y31_c00210{bottom:451.928000pt;}
.y30_c00210{bottom:475.773333pt;}
.y2f_c00210{bottom:502.070667pt;}
.y2e_c00210{bottom:521.468000pt;}
.y2d_c00210{bottom:540.125333pt;}
.y2c_c00210{bottom:561.269333pt;}
.y2b_c00210{bottom:580.545333pt;}
.y2a_c00210{bottom:580.853333pt;}
.y29_c00210{bottom:581.493333pt;}
.y28_c00210{bottom:581.836000pt;}
.y27_c00210{bottom:582.352000pt;}
.y26_c00210{bottom:582.610667pt;}
.y25_c00210{bottom:583.030667pt;}
.y24_c00210{bottom:583.344000pt;}
.y23_c00210{bottom:583.946667pt;}
.y22_c00210{bottom:584.401333pt;}
.y21_c00210{bottom:607.262667pt;}
.y20_c00210{bottom:632.729333pt;}
.y1f_c00210{bottom:634.428000pt;}
.y1e_c00210{bottom:634.938667pt;}
.y1d_c00210{bottom:635.928000pt;}
.y1c_c00210{bottom:636.498667pt;}
.y1b_c00210{bottom:637.674667pt;}
.y1a_c00210{bottom:638.406667pt;}
.y19_c00210{bottom:656.801333pt;}
.y18_c00210{bottom:679.292000pt;}
.y17_c00210{bottom:705.112000pt;}
.y16_c00210{bottom:723.874667pt;}
.y15_c00210{bottom:750.229333pt;}
.y10_c00210{bottom:787.200951pt;}
.y11_c00210{bottom:790.345628pt;}
.y12_c00210{bottom:791.350144pt;}
.y13_c00210{bottom:792.454513pt;}
.y14_c00210{bottom:793.224205pt;}
.yb_c00210{bottom:822.005975pt;}
.yc_c00210{bottom:823.552425pt;}
.yd_c00210{bottom:825.898308pt;}
.ye_c00210{bottom:828.928927pt;}
.yf_c00210{bottom:830.769193pt;}
.y1_c00210{bottom:843.840000pt;}
.y2_c00210{bottom:844.098667pt;}
.y3_c00210{bottom:844.555123pt;}
.y4_c00210{bottom:845.856789pt;}
.y5_c00210{bottom:846.298080pt;}
.y6_c00210{bottom:846.908140pt;}
.y7_c00210{bottom:847.440833pt;}
.y8_c00210{bottom:848.240328pt;}
.y9_c00210{bottom:848.661027pt;}
.ya_c00210{bottom:849.284345pt;}
.h2_c00210{height:19.600000pt;}
.h3_c00210{height:36.402202pt;}
.h11_c00210{height:42.933333pt;}
.h13_c00210{height:43.866667pt;}
.h10_c00210{height:44.800000pt;}
.h12_c00210{height:46.666667pt;}
.hc_c00210{height:51.333333pt;}
.he_c00210{height:56.000000pt;}
.h9_c00210{height:58.800000pt;}
.h7_c00210{height:59.733333pt;}
.hf_c00210{height:60.666667pt;}
.h8_c00210{height:61.600000pt;}
.hb_c00210{height:62.533333pt;}
.hd_c00210{height:64.400000pt;}
.ha_c00210{height:77.466667pt;}
.h6_c00210{height:89.600000pt;}
.h4_c00210{height:97.072539pt;}
.h5_c00210{height:120.407284pt;}
.h1_c00210{height:893.333333pt;}
.h0_c00210{height:893.466667pt;}
.w0_c00210{width:654.000000pt;}
.x0_c00210{left:0.000000pt;}
.xb_c00210{left:33.102864pt;}
.x2_c00210{left:45.166667pt;}
.x3_c00210{left:86.662667pt;}
.x6f_c00210{left:91.680000pt;}
.x1_c00210{left:96.240000pt;}
.x67_c00210{left:109.200000pt;}
.x17_c00210{left:111.600000pt;}
.x2f_c00210{left:113.758667pt;}
.x37_c00210{left:114.718667pt;}
.x4e_c00210{left:117.120000pt;}
.x70_c00210{left:118.320000pt;}
.xc_c00210{left:124.107532pt;}
.x10_c00210{left:125.646203pt;}
.x68_c00210{left:129.840000pt;}
.x30_c00210{left:135.118667pt;}
.x46_c00210{left:140.400000pt;}
.x69_c00210{left:145.200000pt;}
.x28_c00210{left:148.634667pt;}
.x38_c00210{left:150.238667pt;}
.x3e_c00210{left:152.400000pt;}
.x18_c00210{left:155.760000pt;}
.x47_c00210{left:159.840000pt;}
.x60_c00210{left:164.880000pt;}
.x5b_c00210{left:168.720000pt;}
.x31_c00210{left:170.878667pt;}
.x5a_c00210{left:172.320000pt;}
.x19_c00210{left:173.520000pt;}
.x4f_c00210{left:174.960000pt;}
.x58_c00210{left:179.280000pt;}
.x1f_c00210{left:186.480000pt;}
.x6a_c00210{left:188.160000pt;}
.x5c_c00210{left:189.360000pt;}
.x59_c00210{left:190.320000pt;}
.x66_c00210{left:192.240000pt;}
.x15_c00210{left:195.120000pt;}
.x29_c00210{left:198.850667pt;}
.x32_c00210{left:200.638667pt;}
.x42_c00210{left:202.080000pt;}
.x4_c00210{left:204.996000pt;}
.x48_c00210{left:210.720000pt;}
.x61_c00210{left:212.160000pt;}
.x39_c00210{left:215.998667pt;}
.x26_c00210{left:217.438667pt;}
.x50_c00210{left:218.400000pt;}
.x63_c00210{left:219.360000pt;}
.x1b_c00210{left:223.680000pt;}
.x2a_c00210{left:225.006667pt;}
.x16_c00210{left:227.040000pt;}
.x5d_c00210{left:229.440000pt;}
.x6b_c00210{left:231.600000pt;}
.x4b_c00210{left:233.040000pt;}
.x51_c00210{left:235.200000pt;}
.x1e_c00210{left:237.600000pt;}
.x64_c00210{left:238.560000pt;}
.x6c_c00210{left:242.880000pt;}
.x20_c00210{left:244.090667pt;}
.x5_c00210{left:245.113333pt;}
.x3f_c00210{left:249.360000pt;}
.x52_c00210{left:252.000000pt;}
.x33_c00210{left:255.118667pt;}
.x5e_c00210{left:258.000000pt;}
.x1a_c00210{left:259.680000pt;}
.xd_c00210{left:262.087757pt;}
.x62_c00210{left:263.520000pt;}
.x21_c00210{left:269.338667pt;}
.x65_c00210{left:275.520000pt;}
.x5f_c00210{left:278.880000pt;}
.x2b_c00210{left:281.621333pt;}
.x27_c00210{left:286.318667pt;}
.x40_c00210{left:288.720000pt;}
.x43_c00210{left:296.640000pt;}
.x53_c00210{left:299.280000pt;}
.x6_c00210{left:300.573333pt;}
.x34_c00210{left:304.318667pt;}
.x3a_c00210{left:308.398667pt;}
.x22_c00210{left:309.913333pt;}
.x6d_c00210{left:315.600000pt;}
.x1c_c00210{left:323.760000pt;}
.x3b_c00210{left:325.438667pt;}
.x23_c00210{left:329.569333pt;}
.x4c_c00210{left:334.080000pt;}
.x11_c00210{left:335.274311pt;}
.x41_c00210{left:337.440000pt;}
.x54_c00210{left:339.840000pt;}
.x49_c00210{left:340.800000pt;}
.x1d_c00210{left:344.160000pt;}
.x7_c00210{left:349.000000pt;}
.x35_c00210{left:351.358667pt;}
.x2c_c00210{left:353.169333pt;}
.x44_c00210{left:356.160000pt;}
.x3c_c00210{left:358.798667pt;}
.x24_c00210{left:363.669333pt;}
.x4a_c00210{left:365.520000pt;}
.x45_c00210{left:372.480000pt;}
.x4d_c00210{left:377.280000pt;}
.x36_c00210{left:379.918667pt;}
.x25_c00210{left:381.296000pt;}
.x12_c00210{left:402.227363pt;}
.x2d_c00210{left:406.458667pt;}
.x55_c00210{left:409.200000pt;}
.x3d_c00210{left:414.718667pt;}
.x8_c00210{left:421.681333pt;}
.x2e_c00210{left:432.092000pt;}
.x56_c00210{left:438.240000pt;}
.xe_c00210{left:440.374661pt;}
.x6e_c00210{left:441.600000pt;}
.x9_c00210{left:459.926667pt;}
.x57_c00210{left:473.280000pt;}
.x13_c00210{left:475.833455pt;}
.xa_c00210{left:516.592000pt;}
.x14_c00210{left:527.136529pt;}
.xf_c00210{left:548.634185pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m34_c00211{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m85_c00211{transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00211{transform:matrix(0.100450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100450,0.000000,0.000000,0.250000,0,0);}
.m84_c00211{transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107015,0.000000,0.000000,0.250000,0,0);}
.mcc_c00211{transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00211{transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);}
.mda_c00211{transform:matrix(0.119580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119580,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.136997,-0.002192,0.003999,0.249968,0,0);-ms-transform:matrix(0.136997,-0.002192,0.003999,0.249968,0,0);-webkit-transform:matrix(0.136997,-0.002192,0.003999,0.249968,0,0);}
.m7_c00211{transform:matrix(0.137042,-0.002193,0.003999,0.249968,0,0);-ms-transform:matrix(0.137042,-0.002193,0.003999,0.249968,0,0);-webkit-transform:matrix(0.137042,-0.002193,0.003999,0.249968,0,0);}
.m59_c00211{transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145195,0.000000,0.000000,0.250000,0,0);}
.m3a_c00211{transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145345,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);}
.m5d_c00211{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{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);}
.m5f_c00211{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);}
.m5e_c00211{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);}
.m51_c00211{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);}
.m69_c00211{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);}
.mb0_c00211{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_c00211{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);}
.m86_c00211{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);}
.m97_c00211{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);}
.m55_c00211{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);}
.mb9_c00211{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);}
.ma0_c00211{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);}
.md2_c00211{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);}
.m53_c00211{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);}
.m82_c00211{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);}
.m7f_c00211{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);}
.m58_c00211{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);}
.m32_c00211{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{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);}
.m6_c00211{transform:matrix(0.173843,-0.002781,0.003999,0.249968,0,0);-ms-transform:matrix(0.173843,-0.002781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173843,-0.002781,0.003999,0.249968,0,0);}
.m4e_c00211{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);}
.m31_c00211{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);}
.m3f_c00211{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);}
.m24_c00211{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);}
.m28_c00211{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);}
.mad_c00211{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);}
.m57_c00211{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);}
.m89_c00211{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);}
.m7a_c00211{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);}
.m5_c00211{transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);-ms-transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);}
.m30_c00211{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);}
.mae_c00211{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);}
.m9_c00211{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);}
.m45_c00211{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);}
.m67_c00211{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);}
.m2e_c00211{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);}
.m4a_c00211{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);}
.m22_c00211{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);}
.mf_c00211{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);}
.mbf_c00211{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);}
.m52_c00211{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);}
.mbe_c00211{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);}
.m7c_c00211{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);}
.m46_c00211{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);}
.m29_c00211{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);}
.m21_c00211{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);}
.m62_c00211{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);}
.m8_c00211{transform:matrix(0.189956,-0.003039,0.003999,0.249968,0,0);-ms-transform:matrix(0.189956,-0.003039,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189956,-0.003039,0.003999,0.249968,0,0);}
.m16_c00211{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);}
.m5a_c00211{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);}
.maf_c00211{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m83_c00211{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_c00211{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);}
.m7b_c00211{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);}
.mc8_c00211{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);}
.m76_c00211{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);}
.m18_c00211{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);}
.m13_c00211{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);}
.mb1_c00211{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);}
.m54_c00211{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);}
.m44_c00211{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);}
.m9d_c00211{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);}
.m9f_c00211{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);}
.m47_c00211{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);}
.m4f_c00211{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);}
.m50_c00211{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);}
.m48_c00211{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);}
.ma2_c00211{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);}
.ma4_c00211{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);}
.m17_c00211{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);}
.mc9_c00211{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);}
.m2d_c00211{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);}
.m73_c00211{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);}
.m68_c00211{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);}
.m4b_c00211{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);}
.m25_c00211{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);}
.md_c00211{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);}
.m40_c00211{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);}
.mb7_c00211{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);}
.m4c_c00211{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);}
.mb2_c00211{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);}
.m6c_c00211{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);}
.m56_c00211{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);}
.mc_c00211{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);}
.m61_c00211{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);}
.m1d_c00211{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);}
.mc5_c00211{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);}
.m72_c00211{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);}
.m8f_c00211{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);}
.m94_c00211{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);}
.mcf_c00211{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);}
.m8b_c00211{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);}
.md0_c00211{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);}
.mbc_c00211{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);}
.m79_c00211{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);}
.m95_c00211{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);}
.m78_c00211{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m6e_c00211{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);}
.m39_c00211{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);}
.m91_c00211{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);}
.mbb_c00211{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);}
.m2a_c00211{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);}
.m7d_c00211{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);}
.mb3_c00211{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);}
.md4_c00211{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);}
.m14_c00211{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);}
.m81_c00211{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);}
.m38_c00211{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);}
.m1b_c00211{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);}
.m10_c00211{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);}
.m88_c00211{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);}
.me_c00211{transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);}
.md5_c00211{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);}
.mc6_c00211{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);}
.m9e_c00211{transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);}
.m6d_c00211{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);}
.mbd_c00211{transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{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);}
.m90_c00211{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);}
.m8e_c00211{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);}
.m6b_c00211{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);}
.mcd_c00211{transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);}
.m37_c00211{transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);}
.ma5_c00211{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);}
.mc0_c00211{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m7e_c00211{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);}
.mce_c00211{transform:matrix(0.227785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227785,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.mc1_c00211{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);}
.mc7_c00211{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);}
.m80_c00211{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{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);}
.m8c_c00211{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.mb5_c00211{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);}
.mca_c00211{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);}
.m66_c00211{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00211{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);}
.m1f_c00211{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);}
.md3_c00211{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);}
.m99_c00211{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.m9b_c00211{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);}
.m74_c00211{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);}
.m2f_c00211{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m71_c00211{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.maa_c00211{transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);}
.md1_c00211{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);}
.m43_c00211{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);}
.m77_c00211{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);}
.mb8_c00211{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);}
.m8a_c00211{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);}
.mb4_c00211{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);}
.m6f_c00211{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);}
.m9a_c00211{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);}
.m15_c00211{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);}
.mcb_c00211{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);}
.m2c_c00211{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261490,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.261640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261640,0.000000,0.000000,0.250000,0,0);}
.ma1_c00211{transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);}
.m6a_c00211{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);}
.m70_c00211{transform:matrix(0.264605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264605,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);}
.ma6_c00211{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.mba_c00211{transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);}
.mc4_c00211{transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);}
.mc2_c00211{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m96_c00211{transform:matrix(0.270240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270240,0.000000,0.000000,0.250000,0,0);}
.mab_c00211{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);}
.ma9_c00211{transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);}
.mc3_c00211{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);}
.m65_c00211{transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280075,0.000000,0.000000,0.250000,0,0);}
.md6_c00211{transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);}
.m98_c00211{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306585,0.000000,0.000000,0.250000,0,0);}
.m27_c00211{transform:matrix(0.309945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309945,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310960,0.000000,0.000000,0.250000,0,0);}
.mac_c00211{transform:matrix(0.311180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311180,0.000000,0.000000,0.250000,0,0);}
.ma8_c00211{transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{transform:matrix(0.323815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323815,0.000000,0.000000,0.250000,0,0);}
.m33_c00211{transform:matrix(0.324120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324120,0.000000,0.000000,0.250000,0,0);}
.m8d_c00211{transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);}
.ma7_c00211{transform:matrix(0.338690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338690,0.000000,0.000000,0.250000,0,0);}
.md7_c00211{transform:matrix(0.340040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340040,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.340860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340860,0.000000,0.000000,0.250000,0,0);}
.m87_c00211{transform:matrix(0.341010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341010,0.000000,0.000000,0.250000,0,0);}
.m3d_c00211{transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342115,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344690,0.000000,0.000000,0.250000,0,0);}
.m2b_c00211{transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.350810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350810,0.000000,0.000000,0.250000,0,0);}
.md9_c00211{transform:matrix(0.364095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364095,0.000000,0.000000,0.250000,0,0);}
.m75_c00211{transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.369065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373420,0.000000,0.000000,0.250000,0,0);}
.m4d_c00211{transform:matrix(0.377535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.425790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425790,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{transform:matrix(0.462625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462625,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.468830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468830,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.543250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543250,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.582840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582840,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.593980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593980,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.598790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598790,0.000000,0.000000,0.250000,0,0);}
.md8_c00211{transform:matrix(0.692710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692710,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;}
.fs11_c00211{font-size:18.900000px;}
.fs14_c00211{font-size:21.000000px;}
.fs10_c00211{font-size:33.600000px;}
.fs18_c00211{font-size:35.700000px;}
.fse_c00211{font-size:46.200000px;}
.fs13_c00211{font-size:49.350000px;}
.fs17_c00211{font-size:50.400000px;}
.fsc_c00211{font-size:51.450000px;}
.fsd_c00211{font-size:52.500000px;}
.fsf_c00211{font-size:53.550000px;}
.fs16_c00211{font-size:54.600000px;}
.fs12_c00211{font-size:55.650000px;}
.fs15_c00211{font-size:56.700000px;}
.fs7_c00211{font-size:59.850000px;}
.fs5_c00211{font-size:66.150000px;}
.fsa_c00211{font-size:68.250000px;}
.fs1_c00211{font-size:70.350000px;}
.fs9_c00211{font-size:71.400000px;}
.fs4_c00211{font-size:72.450000px;}
.fs6_c00211{font-size:73.500000px;}
.fs3_c00211{font-size:74.550000px;}
.fs2_c00211{font-size:76.659811px;}
.fs0_c00211{font-size:81.900000px;}
.fsb_c00211{font-size:100.800000px;}
.fs8_c00211{font-size:106.050000px;}
.y0_c00211{bottom:0.000000px;}
.y43_c00211{bottom:190.905000px;}
.y4c_c00211{bottom:191.308500px;}
.y4b_c00211{bottom:209.367000px;}
.y42_c00211{bottom:209.790000px;}
.y45_c00211{bottom:227.019000px;}
.y4a_c00211{bottom:227.754000px;}
.y44_c00211{bottom:245.044500px;}
.y41_c00211{bottom:245.584500px;}
.y49_c00211{bottom:245.799000px;}
.y40_c00211{bottom:263.025000px;}
.y48_c00211{bottom:264.483000px;}
.y3f_c00211{bottom:275.130000px;}
.y3e_c00211{bottom:280.914000px;}
.y47_c00211{bottom:281.703000px;}
.y3d_c00211{bottom:298.890000px;}
.y46_c00211{bottom:299.808000px;}
.y3c_c00211{bottom:321.840000px;}
.y3b_c00211{bottom:345.330000px;}
.y3a_c00211{bottom:360.360000px;}
.y39_c00211{bottom:377.730000px;}
.y38_c00211{bottom:395.451000px;}
.y37_c00211{bottom:412.938000px;}
.y36_c00211{bottom:451.921500px;}
.y35_c00211{bottom:474.720000px;}
.y34_c00211{bottom:497.476500px;}
.y32_c00211{bottom:519.702000px;}
.y33_c00211{bottom:521.074500px;}
.y31_c00211{bottom:543.678000px;}
.y30_c00211{bottom:567.285000px;}
.y2f_c00211{bottom:589.647000px;}
.y2e_c00211{bottom:611.727000px;}
.y2d_c00211{bottom:635.292000px;}
.y24_c00211{bottom:656.103000px;}
.y25_c00211{bottom:656.547000px;}
.y26_c00211{bottom:657.289500px;}
.y27_c00211{bottom:657.492000px;}
.y28_c00211{bottom:658.359000px;}
.y29_c00211{bottom:659.050500px;}
.y2a_c00211{bottom:659.776500px;}
.y2b_c00211{bottom:660.768000px;}
.y2c_c00211{bottom:661.095000px;}
.y19_c00211{bottom:679.324500px;}
.y1a_c00211{bottom:679.684500px;}
.y1b_c00211{bottom:680.175000px;}
.y1c_c00211{bottom:680.451000px;}
.y1d_c00211{bottom:681.037500px;}
.y1e_c00211{bottom:681.375000px;}
.y1f_c00211{bottom:681.880500px;}
.y20_c00211{bottom:682.137000px;}
.y21_c00211{bottom:682.927500px;}
.y22_c00211{bottom:683.595000px;}
.y23_c00211{bottom:684.519000px;}
.y17_c00211{bottom:703.792500px;}
.y18_c00211{bottom:704.467500px;}
.yb_c00211{bottom:725.752500px;}
.yc_c00211{bottom:726.220500px;}
.yd_c00211{bottom:726.688500px;}
.ye_c00211{bottom:727.249500px;}
.yf_c00211{bottom:727.725000px;}
.y10_c00211{bottom:728.122500px;}
.y11_c00211{bottom:728.346000px;}
.y12_c00211{bottom:729.054000px;}
.y13_c00211{bottom:729.345000px;}
.y14_c00211{bottom:729.604500px;}
.y15_c00211{bottom:729.903000px;}
.y16_c00211{bottom:730.201500px;}
.ya_c00211{bottom:751.444500px;}
.y9_c00211{bottom:774.499500px;}
.y8_c00211{bottom:797.736000px;}
.y3_c00211{bottom:817.563000px;}
.y4_c00211{bottom:817.873920px;}
.y5_c00211{bottom:819.135192px;}
.y6_c00211{bottom:819.645432px;}
.y7_c00211{bottom:820.224096px;}
.y2_c00211{bottom:843.472500px;}
.y1_c00211{bottom:946.488000px;}
.h13_c00211{height:18.900000px;}
.h16_c00211{height:21.000000px;}
.h12_c00211{height:33.600000px;}
.h1a_c00211{height:35.700000px;}
.h10_c00211{height:46.200000px;}
.h15_c00211{height:49.350000px;}
.h19_c00211{height:50.400000px;}
.he_c00211{height:51.450000px;}
.hf_c00211{height:52.500000px;}
.h11_c00211{height:53.550000px;}
.h18_c00211{height:54.600000px;}
.h14_c00211{height:55.650000px;}
.h17_c00211{height:56.700000px;}
.h9_c00211{height:59.850000px;}
.h7_c00211{height:66.150000px;}
.hc_c00211{height:68.250000px;}
.h3_c00211{height:70.350000px;}
.hb_c00211{height:71.400000px;}
.h6_c00211{height:72.450000px;}
.h8_c00211{height:73.500000px;}
.h5_c00211{height:74.550000px;}
.h4_c00211{height:76.659811px;}
.h2_c00211{height:81.900000px;}
.hd_c00211{height:100.800000px;}
.ha_c00211{height:106.050000px;}
.h0_c00211{height:1008.450000px;}
.h1_c00211{height:1008.750000px;}
.w0_c00211{width:678.450000px;}
.w1_c00211{width:678.750000px;}
.x0_c00211{left:0.000000px;}
.x5c_c00211{left:133.920000px;}
.x6b_c00211{left:136.890000px;}
.x59_c00211{left:146.070000px;}
.x5d_c00211{left:159.300000px;}
.x69_c00211{left:164.160000px;}
.x5a_c00211{left:166.050000px;}
.x5_c00211{left:168.442500px;}
.x67_c00211{left:185.220000px;}
.x6_c00211{left:187.875000px;}
.x20_c00211{left:191.569500px;}
.x64_c00211{left:196.560000px;}
.x29_c00211{left:197.779500px;}
.x13_c00211{left:201.313500px;}
.x40_c00211{left:203.580000px;}
.x32_c00211{left:207.360000px;}
.x47_c00211{left:213.570000px;}
.x5b_c00211{left:215.730000px;}
.x6a_c00211{left:217.080000px;}
.x68_c00211{left:218.160000px;}
.x6c_c00211{left:220.590000px;}
.x21_c00211{left:224.305500px;}
.x71_c00211{left:230.310000px;}
.x61_c00211{left:232.470000px;}
.x14_c00211{left:234.768000px;}
.x56_c00211{left:237.600000px;}
.x65_c00211{left:239.760000px;}
.x22_c00211{left:242.661000px;}
.x52_c00211{left:244.350000px;}
.x48_c00211{left:245.430000px;}
.x2a_c00211{left:247.255500px;}
.x4f_c00211{left:248.940000px;}
.x5e_c00211{left:250.830000px;}
.x41_c00211{left:257.310000px;}
.x1e_c00211{left:259.677000px;}
.x2b_c00211{left:260.776500px;}
.x3f_c00211{left:263.520000px;}
.x7_c00211{left:266.704500px;}
.x72_c00211{left:267.840000px;}
.x4d_c00211{left:268.920000px;}
.xa_c00211{left:271.080000px;}
.x5f_c00211{left:273.510000px;}
.x15_c00211{left:274.833000px;}
.x49_c00211{left:276.210000px;}
.x42_c00211{left:277.290000px;}
.x33_c00211{left:280.530000px;}
.x23_c00211{left:281.806500px;}
.x11_c00211{left:284.850000px;}
.x35_c00211{left:287.280000px;}
.x6e_c00211{left:288.360000px;}
.x31_c00211{left:290.248500px;}
.x4_c00211{left:292.410000px;}
.x53_c00211{left:294.030000px;}
.x3a_c00211{left:295.110000px;}
.x8_c00211{left:298.594500px;}
.x1f_c00211{left:301.830000px;}
.x24_c00211{left:304.329000px;}
.xb_c00211{left:305.370000px;}
.x43_c00211{left:306.720000px;}
.x16_c00211{left:308.793000px;}
.xd_c00211{left:311.580000px;}
.x6d_c00211{left:313.740000px;}
.x1_c00211{left:316.170000px;}
.x58_c00211{left:317.520000px;}
.x2c_c00211{left:318.535500px;}
.x73_c00211{left:319.680000px;}
.x57_c00211{left:321.030000px;}
.x3b_c00211{left:324.270000px;}
.x6f_c00211{left:328.860000px;}
.x36_c00211{left:332.640000px;}
.x9_c00211{left:334.761000px;}
.x60_c00211{left:335.880000px;}
.x17_c00211{left:337.141500px;}
.x70_c00211{left:339.120000px;}
.x34_c00211{left:342.900000px;}
.x50_c00211{left:346.410000px;}
.x62_c00211{left:347.490000px;}
.x66_c00211{left:350.730000px;}
.x18_c00211{left:353.079000px;}
.x25_c00211{left:355.197000px;}
.x54_c00211{left:360.720000px;}
.x44_c00211{left:361.800000px;}
.x63_c00211{left:363.420000px;}
.x2d_c00211{left:364.650000px;}
.x95_c00211{left:370.440000px;}
.x4a_c00211{left:373.410000px;}
.x3c_c00211{left:376.650000px;}
.x51_c00211{left:379.350000px;}
.x39_c00211{left:381.510000px;}
.x37_c00211{left:383.130000px;}
.x96_c00211{left:384.480000px;}
.x45_c00211{left:393.660000px;}
.x3d_c00211{left:396.630000px;}
.x79_c00211{left:398.520000px;}
.x74_c00211{left:400.410000px;}
.x55_c00211{left:402.570000px;}
.x19_c00211{left:403.612500px;}
.xe_c00211{left:405.270000px;}
.x26_c00211{left:407.851500px;}
.x2e_c00211{left:413.082000px;}
.x4e_c00211{left:414.720000px;}
.x7f_c00211{left:416.070000px;}
.x86_c00211{left:420.930000px;}
.x3e_c00211{left:422.280000px;}
.x1a_c00211{left:424.357500px;}
.x2_c00211{left:427.680000px;}
.x12_c00211{left:429.570000px;}
.xf_c00211{left:434.970000px;}
.x4b_c00211{left:437.670000px;}
.x1b_c00211{left:442.938000px;}
.x80_c00211{left:444.420000px;}
.x27_c00211{left:452.388000px;}
.xc_c00211{left:455.220000px;}
.x8e_c00211{left:459.810000px;}
.x87_c00211{left:463.050000px;}
.x1c_c00211{left:464.313000px;}
.x46_c00211{left:466.830000px;}
.x4c_c00211{left:470.070000px;}
.x10_c00211{left:471.690000px;}
.x2f_c00211{left:479.212500px;}
.x7a_c00211{left:482.760000px;}
.x88_c00211{left:483.840000px;}
.x1d_c00211{left:485.646000px;}
.x8f_c00211{left:497.610000px;}
.x30_c00211{left:501.045000px;}
.x89_c00211{left:502.740000px;}
.x38_c00211{left:504.090000px;}
.x83_c00211{left:505.980000px;}
.x90_c00211{left:508.410000px;}
.x8a_c00211{left:512.460000px;}
.x28_c00211{left:514.003500px;}
.x3_c00211{left:516.780000px;}
.x75_c00211{left:520.020000px;}
.x81_c00211{left:523.530000px;}
.x7b_c00211{left:526.500000px;}
.x84_c00211{left:539.730000px;}
.x7c_c00211{left:544.320000px;}
.x91_c00211{left:546.480000px;}
.x8b_c00211{left:548.640000px;}
.x76_c00211{left:552.960000px;}
.x8c_c00211{left:555.660000px;}
.x92_c00211{left:559.710000px;}
.x85_c00211{left:561.060000px;}
.x8d_c00211{left:572.670000px;}
.x77_c00211{left:574.020000px;}
.x93_c00211{left:575.910000px;}
.x94_c00211{left:579.960000px;}
.x7d_c00211{left:581.310000px;}
.x82_c00211{left:588.330000px;}
.x7e_c00211{left:595.620000px;}
.x78_c00211{left:605.610000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs11_c00211{font-size:16.800000pt;}
.fs14_c00211{font-size:18.666667pt;}
.fs10_c00211{font-size:29.866667pt;}
.fs18_c00211{font-size:31.733333pt;}
.fse_c00211{font-size:41.066667pt;}
.fs13_c00211{font-size:43.866667pt;}
.fs17_c00211{font-size:44.800000pt;}
.fsc_c00211{font-size:45.733333pt;}
.fsd_c00211{font-size:46.666667pt;}
.fsf_c00211{font-size:47.600000pt;}
.fs16_c00211{font-size:48.533333pt;}
.fs12_c00211{font-size:49.466667pt;}
.fs15_c00211{font-size:50.400000pt;}
.fs7_c00211{font-size:53.200000pt;}
.fs5_c00211{font-size:58.800000pt;}
.fsa_c00211{font-size:60.666667pt;}
.fs1_c00211{font-size:62.533333pt;}
.fs9_c00211{font-size:63.466667pt;}
.fs4_c00211{font-size:64.400000pt;}
.fs6_c00211{font-size:65.333333pt;}
.fs3_c00211{font-size:66.266667pt;}
.fs2_c00211{font-size:68.142054pt;}
.fs0_c00211{font-size:72.800000pt;}
.fsb_c00211{font-size:89.600000pt;}
.fs8_c00211{font-size:94.266667pt;}
.y0_c00211{bottom:0.000000pt;}
.y43_c00211{bottom:169.693333pt;}
.y4c_c00211{bottom:170.052000pt;}
.y4b_c00211{bottom:186.104000pt;}
.y42_c00211{bottom:186.480000pt;}
.y45_c00211{bottom:201.794667pt;}
.y4a_c00211{bottom:202.448000pt;}
.y44_c00211{bottom:217.817333pt;}
.y41_c00211{bottom:218.297333pt;}
.y49_c00211{bottom:218.488000pt;}
.y40_c00211{bottom:233.800000pt;}
.y48_c00211{bottom:235.096000pt;}
.y3f_c00211{bottom:244.560000pt;}
.y3e_c00211{bottom:249.701333pt;}
.y47_c00211{bottom:250.402667pt;}
.y3d_c00211{bottom:265.680000pt;}
.y46_c00211{bottom:266.496000pt;}
.y3c_c00211{bottom:286.080000pt;}
.y3b_c00211{bottom:306.960000pt;}
.y3a_c00211{bottom:320.320000pt;}
.y39_c00211{bottom:335.760000pt;}
.y38_c00211{bottom:351.512000pt;}
.y37_c00211{bottom:367.056000pt;}
.y36_c00211{bottom:401.708000pt;}
.y35_c00211{bottom:421.973333pt;}
.y34_c00211{bottom:442.201333pt;}
.y32_c00211{bottom:461.957333pt;}
.y33_c00211{bottom:463.177333pt;}
.y31_c00211{bottom:483.269333pt;}
.y30_c00211{bottom:504.253333pt;}
.y2f_c00211{bottom:524.130667pt;}
.y2e_c00211{bottom:543.757333pt;}
.y2d_c00211{bottom:564.704000pt;}
.y24_c00211{bottom:583.202667pt;}
.y25_c00211{bottom:583.597333pt;}
.y26_c00211{bottom:584.257333pt;}
.y27_c00211{bottom:584.437333pt;}
.y28_c00211{bottom:585.208000pt;}
.y29_c00211{bottom:585.822667pt;}
.y2a_c00211{bottom:586.468000pt;}
.y2b_c00211{bottom:587.349333pt;}
.y2c_c00211{bottom:587.640000pt;}
.y19_c00211{bottom:603.844000pt;}
.y1a_c00211{bottom:604.164000pt;}
.y1b_c00211{bottom:604.600000pt;}
.y1c_c00211{bottom:604.845333pt;}
.y1d_c00211{bottom:605.366667pt;}
.y1e_c00211{bottom:605.666667pt;}
.y1f_c00211{bottom:606.116000pt;}
.y20_c00211{bottom:606.344000pt;}
.y21_c00211{bottom:607.046667pt;}
.y22_c00211{bottom:607.640000pt;}
.y23_c00211{bottom:608.461333pt;}
.y17_c00211{bottom:625.593333pt;}
.y18_c00211{bottom:626.193333pt;}
.yb_c00211{bottom:645.113333pt;}
.yc_c00211{bottom:645.529333pt;}
.yd_c00211{bottom:645.945333pt;}
.ye_c00211{bottom:646.444000pt;}
.yf_c00211{bottom:646.866667pt;}
.y10_c00211{bottom:647.220000pt;}
.y11_c00211{bottom:647.418667pt;}
.y12_c00211{bottom:648.048000pt;}
.y13_c00211{bottom:648.306667pt;}
.y14_c00211{bottom:648.537333pt;}
.y15_c00211{bottom:648.802667pt;}
.y16_c00211{bottom:649.068000pt;}
.ya_c00211{bottom:667.950667pt;}
.y9_c00211{bottom:688.444000pt;}
.y8_c00211{bottom:709.098667pt;}
.y3_c00211{bottom:726.722667pt;}
.y4_c00211{bottom:726.999040pt;}
.y5_c00211{bottom:728.120171pt;}
.y6_c00211{bottom:728.573717pt;}
.y7_c00211{bottom:729.088085pt;}
.y2_c00211{bottom:749.753333pt;}
.y1_c00211{bottom:841.322667pt;}
.h13_c00211{height:16.800000pt;}
.h16_c00211{height:18.666667pt;}
.h12_c00211{height:29.866667pt;}
.h1a_c00211{height:31.733333pt;}
.h10_c00211{height:41.066667pt;}
.h15_c00211{height:43.866667pt;}
.h19_c00211{height:44.800000pt;}
.he_c00211{height:45.733333pt;}
.hf_c00211{height:46.666667pt;}
.h11_c00211{height:47.600000pt;}
.h18_c00211{height:48.533333pt;}
.h14_c00211{height:49.466667pt;}
.h17_c00211{height:50.400000pt;}
.h9_c00211{height:53.200000pt;}
.h7_c00211{height:58.800000pt;}
.hc_c00211{height:60.666667pt;}
.h3_c00211{height:62.533333pt;}
.hb_c00211{height:63.466667pt;}
.h6_c00211{height:64.400000pt;}
.h8_c00211{height:65.333333pt;}
.h5_c00211{height:66.266667pt;}
.h4_c00211{height:68.142054pt;}
.h2_c00211{height:72.800000pt;}
.hd_c00211{height:89.600000pt;}
.ha_c00211{height:94.266667pt;}
.h0_c00211{height:896.400000pt;}
.h1_c00211{height:896.666667pt;}
.w0_c00211{width:603.066667pt;}
.w1_c00211{width:603.333333pt;}
.x0_c00211{left:0.000000pt;}
.x5c_c00211{left:119.040000pt;}
.x6b_c00211{left:121.680000pt;}
.x59_c00211{left:129.840000pt;}
.x5d_c00211{left:141.600000pt;}
.x69_c00211{left:145.920000pt;}
.x5a_c00211{left:147.600000pt;}
.x5_c00211{left:149.726667pt;}
.x67_c00211{left:164.640000pt;}
.x6_c00211{left:167.000000pt;}
.x20_c00211{left:170.284000pt;}
.x64_c00211{left:174.720000pt;}
.x29_c00211{left:175.804000pt;}
.x13_c00211{left:178.945333pt;}
.x40_c00211{left:180.960000pt;}
.x32_c00211{left:184.320000pt;}
.x47_c00211{left:189.840000pt;}
.x5b_c00211{left:191.760000pt;}
.x6a_c00211{left:192.960000pt;}
.x68_c00211{left:193.920000pt;}
.x6c_c00211{left:196.080000pt;}
.x21_c00211{left:199.382667pt;}
.x71_c00211{left:204.720000pt;}
.x61_c00211{left:206.640000pt;}
.x14_c00211{left:208.682667pt;}
.x56_c00211{left:211.200000pt;}
.x65_c00211{left:213.120000pt;}
.x22_c00211{left:215.698667pt;}
.x52_c00211{left:217.200000pt;}
.x48_c00211{left:218.160000pt;}
.x2a_c00211{left:219.782667pt;}
.x4f_c00211{left:221.280000pt;}
.x5e_c00211{left:222.960000pt;}
.x41_c00211{left:228.720000pt;}
.x1e_c00211{left:230.824000pt;}
.x2b_c00211{left:231.801333pt;}
.x3f_c00211{left:234.240000pt;}
.x7_c00211{left:237.070667pt;}
.x72_c00211{left:238.080000pt;}
.x4d_c00211{left:239.040000pt;}
.xa_c00211{left:240.960000pt;}
.x5f_c00211{left:243.120000pt;}
.x15_c00211{left:244.296000pt;}
.x49_c00211{left:245.520000pt;}
.x42_c00211{left:246.480000pt;}
.x33_c00211{left:249.360000pt;}
.x23_c00211{left:250.494667pt;}
.x11_c00211{left:253.200000pt;}
.x35_c00211{left:255.360000pt;}
.x6e_c00211{left:256.320000pt;}
.x31_c00211{left:257.998667pt;}
.x4_c00211{left:259.920000pt;}
.x53_c00211{left:261.360000pt;}
.x3a_c00211{left:262.320000pt;}
.x8_c00211{left:265.417333pt;}
.x1f_c00211{left:268.293333pt;}
.x24_c00211{left:270.514667pt;}
.xb_c00211{left:271.440000pt;}
.x43_c00211{left:272.640000pt;}
.x16_c00211{left:274.482667pt;}
.xd_c00211{left:276.960000pt;}
.x6d_c00211{left:278.880000pt;}
.x1_c00211{left:281.040000pt;}
.x58_c00211{left:282.240000pt;}
.x2c_c00211{left:283.142667pt;}
.x73_c00211{left:284.160000pt;}
.x57_c00211{left:285.360000pt;}
.x3b_c00211{left:288.240000pt;}
.x6f_c00211{left:292.320000pt;}
.x36_c00211{left:295.680000pt;}
.x9_c00211{left:297.565333pt;}
.x60_c00211{left:298.560000pt;}
.x17_c00211{left:299.681333pt;}
.x70_c00211{left:301.440000pt;}
.x34_c00211{left:304.800000pt;}
.x50_c00211{left:307.920000pt;}
.x62_c00211{left:308.880000pt;}
.x66_c00211{left:311.760000pt;}
.x18_c00211{left:313.848000pt;}
.x25_c00211{left:315.730667pt;}
.x54_c00211{left:320.640000pt;}
.x44_c00211{left:321.600000pt;}
.x63_c00211{left:323.040000pt;}
.x2d_c00211{left:324.133333pt;}
.x95_c00211{left:329.280000pt;}
.x4a_c00211{left:331.920000pt;}
.x3c_c00211{left:334.800000pt;}
.x51_c00211{left:337.200000pt;}
.x39_c00211{left:339.120000pt;}
.x37_c00211{left:340.560000pt;}
.x96_c00211{left:341.760000pt;}
.x45_c00211{left:349.920000pt;}
.x3d_c00211{left:352.560000pt;}
.x79_c00211{left:354.240000pt;}
.x74_c00211{left:355.920000pt;}
.x55_c00211{left:357.840000pt;}
.x19_c00211{left:358.766667pt;}
.xe_c00211{left:360.240000pt;}
.x26_c00211{left:362.534667pt;}
.x2e_c00211{left:367.184000pt;}
.x4e_c00211{left:368.640000pt;}
.x7f_c00211{left:369.840000pt;}
.x86_c00211{left:374.160000pt;}
.x3e_c00211{left:375.360000pt;}
.x1a_c00211{left:377.206667pt;}
.x2_c00211{left:380.160000pt;}
.x12_c00211{left:381.840000pt;}
.xf_c00211{left:386.640000pt;}
.x4b_c00211{left:389.040000pt;}
.x1b_c00211{left:393.722667pt;}
.x80_c00211{left:395.040000pt;}
.x27_c00211{left:402.122667pt;}
.xc_c00211{left:404.640000pt;}
.x8e_c00211{left:408.720000pt;}
.x87_c00211{left:411.600000pt;}
.x1c_c00211{left:412.722667pt;}
.x46_c00211{left:414.960000pt;}
.x4c_c00211{left:417.840000pt;}
.x10_c00211{left:419.280000pt;}
.x2f_c00211{left:425.966667pt;}
.x7a_c00211{left:429.120000pt;}
.x88_c00211{left:430.080000pt;}
.x1d_c00211{left:431.685333pt;}
.x8f_c00211{left:442.320000pt;}
.x30_c00211{left:445.373333pt;}
.x89_c00211{left:446.880000pt;}
.x38_c00211{left:448.080000pt;}
.x83_c00211{left:449.760000pt;}
.x90_c00211{left:451.920000pt;}
.x8a_c00211{left:455.520000pt;}
.x28_c00211{left:456.892000pt;}
.x3_c00211{left:459.360000pt;}
.x75_c00211{left:462.240000pt;}
.x81_c00211{left:465.360000pt;}
.x7b_c00211{left:468.000000pt;}
.x84_c00211{left:479.760000pt;}
.x7c_c00211{left:483.840000pt;}
.x91_c00211{left:485.760000pt;}
.x8b_c00211{left:487.680000pt;}
.x76_c00211{left:491.520000pt;}
.x8c_c00211{left:493.920000pt;}
.x92_c00211{left:497.520000pt;}
.x85_c00211{left:498.720000pt;}
.x8d_c00211{left:509.040000pt;}
.x77_c00211{left:510.240000pt;}
.x93_c00211{left:511.920000pt;}
.x94_c00211{left:515.520000pt;}
.x7d_c00211{left:516.720000pt;}
.x82_c00211{left:522.960000pt;}
.x7e_c00211{left:529.440000pt;}
.x78_c00211{left:538.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_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_4ab86c84425994a9e06b01c2.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;}
.m1b_c00212{transform:matrix(0.013185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013185,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.014400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014400,0.000000,0.000000,0.250000,0,0);}
.mb0_c00212{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m7b_c00212{transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);}
.m72_c00212{transform:matrix(0.039770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039770,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.077960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077960,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00212{transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);}
.m2d_c00212{transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);}
.m73_c00212{transform:matrix(0.143110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143110,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m8f_c00212{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.md3_c00212{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);}
.mb2_c00212{transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);}
.m46_c00212{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);}
.m57_c00212{transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);}
.ma0_c00212{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);}
.m44_c00212{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.mb6_c00212{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.mcd_c00212{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);}
.m5a_c00212{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);}
.m52_c00212{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m94_c00212{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);}
.mc4_c00212{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);}
.m9_c00212{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);}
.m37_c00212{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);}
.m56_c00212{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);}
.m4e_c00212{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);}
.m22_c00212{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);}
.m71_c00212{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);}
.m55_c00212{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);}
.mb1_c00212{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);}
.mbc_c00212{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);}
.m14_c00212{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);}
.mc5_c00212{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);}
.m2e_c00212{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);}
.m81_c00212{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);}
.m67_c00212{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);}
.m66_c00212{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);}
.m8_c00212{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);}
.m9e_c00212{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);}
.mb9_c00212{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);}
.mca_c00212{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);}
.md1_c00212{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);}
.m98_c00212{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);}
.m20_c00212{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);}
.mb7_c00212{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);}
.m3d_c00212{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);}
.m99_c00212{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);}
.mc9_c00212{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);}
.m5d_c00212{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);}
.mac_c00212{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);}
.mcc_c00212{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);}
.m11_c00212{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);}
.m6b_c00212{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);}
.mdd_c00212{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);}
.mc3_c00212{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);}
.m8c_c00212{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_c00212{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);}
.ma1_c00212{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);}
.m2c_c00212{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);}
.m50_c00212{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);}
.m7e_c00212{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);}
.m4c_c00212{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);}
.m7f_c00212{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);}
.m97_c00212{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);}
.mdb_c00212{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);}
.m10_c00212{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);}
.m65_c00212{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);}
.mde_c00212{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);}
.md0_c00212{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);}
.m9f_c00212{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);}
.mbb_c00212{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);}
.ma_c00212{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);}
.m4f_c00212{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);}
.m8b_c00212{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);}
.mcb_c00212{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);}
.mab_c00212{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);}
.m8e_c00212{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);}
.m5b_c00212{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);}
.md6_c00212{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);}
.ma2_c00212{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);}
.m5c_c00212{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);}
.m78_c00212{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);}
.m25_c00212{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);}
.m15_c00212{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);}
.m54_c00212{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);}
.ma4_c00212{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);}
.md4_c00212{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);}
.m45_c00212{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_c00212{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);}
.ma6_c00212{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);}
.m8d_c00212{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);}
.m9d_c00212{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_c00212{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m90_c00212{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);}
.m88_c00212{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);}
.m6a_c00212{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);}
.m79_c00212{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);}
.mf_c00212{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);}
.ma8_c00212{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);}
.mc1_c00212{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);}
.m3c_c00212{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);}
.m1d_c00212{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);}
.md7_c00212{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);}
.m2_c00212{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);}
.mc2_c00212{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);}
.m60_c00212{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);}
.m51_c00212{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);}
.m39_c00212{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);}
.maf_c00212{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);}
.m80_c00212{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);}
.md_c00212{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);}
.ma9_c00212{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);}
.mc6_c00212{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);}
.maa_c00212{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);}
.m19_c00212{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);}
.m87_c00212{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);}
.ma7_c00212{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);}
.m85_c00212{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);}
.m53_c00212{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);}
.m2f_c00212{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);}
.m6f_c00212{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);}
.mba_c00212{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);}
.m26_c00212{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);}
.m92_c00212{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);}
.m96_c00212{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);}
.m61_c00212{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);}
.ma3_c00212{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);}
.m33_c00212{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);}
.mc8_c00212{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);}
.m9a_c00212{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.m7d_c00212{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);}
.md9_c00212{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);}
.m9b_c00212{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{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);}
.m9c_c00212{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);}
.m16_c00212{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);}
.m59_c00212{transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{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);}
.m6c_c00212{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m5e_c00212{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);}
.m84_c00212{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);}
.m13_c00212{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);}
.m58_c00212{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);}
.m64_c00212{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);}
.mb8_c00212{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);}
.mc7_c00212{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);}
.m3a_c00212{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);}
.md5_c00212{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);}
.m4d_c00212{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);}
.m12_c00212{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);}
.m91_c00212{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);}
.m4b_c00212{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);}
.m21_c00212{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);}
.mce_c00212{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);}
.m82_c00212{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);}
.mda_c00212{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);}
.m31_c00212{transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{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);}
.mae_c00212{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);}
.m47_c00212{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);}
.m75_c00212{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);}
.m77_c00212{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);}
.m76_c00212{transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);}
.m83_c00212{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);}
.mad_c00212{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);}
.m1e_c00212{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);}
.ma5_c00212{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);}
.mc0_c00212{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);}
.m86_c00212{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);}
.m63_c00212{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);}
.m17_c00212{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.m8a_c00212{transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);}
.m7c_c00212{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);}
.m34_c00212{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);}
.m23_c00212{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m7a_c00212{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);}
.m62_c00212{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.mdf_c00212{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m68_c00212{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00212{transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);}
.md2_c00212{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);}
.m89_c00212{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);}
.m74_c00212{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);}
.mbd_c00212{transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264690,0.000000,0.000000,0.250000,0,0);}
.m6d_c00212{transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270960,0.000000,0.000000,0.250000,0,0);}
.m70_c00212{transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);}
.md8_c00212{transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);}
.m28_c00212{transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00212{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);}
.mb5_c00212{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);}
.mbe_c00212{transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303290,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307355,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309510,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.311830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311830,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);}
.mcf_c00212{transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);}
.m40_c00212{transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349575,0.000000,0.000000,0.250000,0,0);}
.m41_c00212{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);}
.mb4_c00212{transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372395,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.375865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00212{transform:matrix(0.392905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392905,0.000000,0.000000,0.250000,0,0);}
.mdc_c00212{transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);}
.m48_c00212{transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);}
.m3e_c00212{transform:matrix(0.451130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451130,0.000000,0.000000,0.250000,0,0);}
.m32_c00212{transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.452905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452905,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.459195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459195,0.000000,0.000000,0.250000,0,0);}
.m36_c00212{transform:matrix(0.481505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481505,0.000000,0.000000,0.250000,0,0);}
.m43_c00212{transform:matrix(0.488930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488930,0.000000,0.000000,0.250000,0,0);}
.mb3_c00212{transform:matrix(0.493740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493740,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.499445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499445,0.000000,0.000000,0.250000,0,0);}
.me0_c00212{transform:matrix(0.530290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530290,0.000000,0.000000,0.250000,0,0);}
.m4a_c00212{transform:matrix(0.559425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559425,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.591955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591955,0.000000,0.000000,0.250000,0,0);}
.m49_c00212{transform:matrix(0.618970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618970,0.000000,0.000000,0.250000,0,0);}
.me1_c00212{transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864730,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{transform:matrix(0.926685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.926685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.926685,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(1.109360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.109360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.109360,0.000000,0.000000,0.250000,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;}
.fs8_c00212{font-size:22.050000px;}
.fs10_c00212{font-size:47.250000px;}
.fse_c00212{font-size:50.400000px;}
.fsd_c00212{font-size:51.450000px;}
.fsb_c00212{font-size:52.500000px;}
.fsf_c00212{font-size:53.550000px;}
.fsc_c00212{font-size:55.650000px;}
.fs4_c00212{font-size:63.000000px;}
.fsa_c00212{font-size:64.050000px;}
.fs5_c00212{font-size:67.200000px;}
.fs3_c00212{font-size:68.250000px;}
.fs9_c00212{font-size:69.300000px;}
.fs1_c00212{font-size:71.400000px;}
.fs2_c00212{font-size:72.450000px;}
.fs0_c00212{font-size:87.150000px;}
.fs6_c00212{font-size:97.650000px;}
.fs7_c00212{font-size:98.700000px;}
.y0_c00212{bottom:0.000000px;}
.y1e_c00212{bottom:164.791500px;}
.y1d_c00212{bottom:192.825000px;}
.y25_c00212{bottom:209.406000px;}
.y1c_c00212{bottom:211.456500px;}
.y24_c00212{bottom:228.420000px;}
.y1f_c00212{bottom:228.810000px;}
.y1b_c00212{bottom:229.348500px;}
.y23_c00212{bottom:246.156000px;}
.y1a_c00212{bottom:247.164000px;}
.y22_c00212{bottom:264.417000px;}
.y19_c00212{bottom:265.027500px;}
.y21_c00212{bottom:283.273500px;}
.y18_c00212{bottom:283.657500px;}
.y20_c00212{bottom:300.811500px;}
.y17_c00212{bottom:301.639500px;}
.y16_c00212{bottom:360.220500px;}
.y15_c00212{bottom:383.467500px;}
.y14_c00212{bottom:405.477000px;}
.y13_c00212{bottom:428.298000px;}
.y12_c00212{bottom:450.832500px;}
.y11_c00212{bottom:474.121500px;}
.y10_c00212{bottom:496.891500px;}
.yf_c00212{bottom:520.114500px;}
.ye_c00212{bottom:540.270000px;}
.yd_c00212{bottom:555.807000px;}
.yc_c00212{bottom:590.220000px;}
.yb_c00212{bottom:655.195500px;}
.ya_c00212{bottom:655.560000px;}
.y9_c00212{bottom:678.126000px;}
.y8_c00212{bottom:700.380000px;}
.y7_c00212{bottom:722.446500px;}
.y6_c00212{bottom:746.292000px;}
.y5_c00212{bottom:768.823500px;}
.y4_c00212{bottom:791.910000px;}
.y3_c00212{bottom:814.698000px;}
.y2_c00212{bottom:838.350000px;}
.y1_c00212{bottom:882.718500px;}
.ha_c00212{height:22.050000px;}
.h12_c00212{height:47.250000px;}
.h10_c00212{height:50.400000px;}
.hf_c00212{height:51.450000px;}
.hd_c00212{height:52.500000px;}
.h11_c00212{height:53.550000px;}
.he_c00212{height:55.650000px;}
.h6_c00212{height:63.000000px;}
.hc_c00212{height:64.050000px;}
.h7_c00212{height:67.200000px;}
.h5_c00212{height:68.250000px;}
.hb_c00212{height:69.300000px;}
.h3_c00212{height:71.400000px;}
.h4_c00212{height:72.450000px;}
.h2_c00212{height:87.150000px;}
.h8_c00212{height:97.650000px;}
.h9_c00212{height:98.700000px;}
.h1_c00212{height:1005.000000px;}
.h0_c00212{height:1005.150000px;}
.w1_c00212{width:713.250000px;}
.w0_c00212{width:713.550000px;}
.x0_c00212{left:0.000000px;}
.x61_c00212{left:88.830000px;}
.x72_c00212{left:94.500000px;}
.x5f_c00212{left:99.900000px;}
.x62_c00212{left:103.680000px;}
.x73_c00212{left:107.190000px;}
.x54_c00212{left:115.830000px;}
.x70_c00212{left:120.150000px;}
.x5a_c00212{left:122.040000px;}
.x43_c00212{left:123.390000px;}
.x49_c00212{left:124.740000px;}
.x9_c00212{left:125.820000px;}
.x1b_c00212{left:127.440000px;}
.x6c_c00212{left:128.790000px;}
.x6b_c00212{left:132.300000px;}
.x55_c00212{left:136.620000px;}
.x65_c00212{left:139.590000px;}
.x3a_c00212{left:143.910000px;}
.xa_c00212{left:147.420000px;}
.x12_c00212{left:149.850000px;}
.x5b_c00212{left:150.930000px;}
.x1_c00212{left:153.630000px;}
.x4a_c00212{left:155.790000px;}
.x30_c00212{left:157.950000px;}
.x66_c00212{left:160.920000px;}
.x21_c00212{left:162.810000px;}
.x71_c00212{left:167.400000px;}
.x6d_c00212{left:168.750000px;}
.x5c_c00212{left:170.640000px;}
.x13_c00212{left:177.660000px;}
.x60_c00212{left:179.550000px;}
.x56_c00212{left:182.790000px;}
.xb_c00212{left:184.950000px;}
.x1c_c00212{left:186.300000px;}
.x63_c00212{left:190.080000px;}
.x4e_c00212{left:191.430000px;}
.x67_c00212{left:192.510000px;}
.x5d_c00212{left:195.210000px;}
.x3b_c00212{left:196.830000px;}
.x41_c00212{left:198.180000px;}
.x3e_c00212{left:199.260000px;}
.x26_c00212{left:203.310000px;}
.x44_c00212{left:204.390000px;}
.x6e_c00212{left:207.900000px;}
.x4b_c00212{left:210.330000px;}
.x36_c00212{left:214.380000px;}
.x37_c00212{left:218.700000px;}
.x68_c00212{left:220.860000px;}
.x45_c00212{left:225.720000px;}
.x57_c00212{left:227.880000px;}
.x75_c00212{left:229.500000px;}
.x2c_c00212{left:230.580000px;}
.x4_c00212{left:234.090000px;}
.x14_c00212{left:236.250000px;}
.x5_c00212{left:247.590000px;}
.x4f_c00212{left:248.940000px;}
.x31_c00212{left:250.290000px;}
.x38_c00212{left:252.990000px;}
.x22_c00212{left:254.340000px;}
.x69_c00212{left:256.230000px;}
.x3c_c00212{left:257.850000px;}
.x74_c00212{left:259.470000px;}
.x15_c00212{left:264.600000px;}
.x42_c00212{left:265.680000px;}
.x27_c00212{left:270.540000px;}
.x2d_c00212{left:272.970000px;}
.x46_c00212{left:277.830000px;}
.xc_c00212{left:285.390000px;}
.x32_c00212{left:287.550000px;}
.x76_c00212{left:289.440000px;}
.x50_c00212{left:291.060000px;}
.x33_c00212{left:293.760000px;}
.x16_c00212{left:295.110000px;}
.x6f_c00212{left:296.460000px;}
.x64_c00212{left:297.540000px;}
.x47_c00212{left:300.240000px;}
.xd_c00212{left:301.590000px;}
.x6a_c00212{left:304.560000px;}
.x5e_c00212{left:307.530000px;}
.x6_c00212{left:309.690000px;}
.x51_c00212{left:312.120000px;}
.x2e_c00212{left:314.820000px;}
.x28_c00212{left:318.330000px;}
.x58_c00212{left:324.000000px;}
.xe_c00212{left:326.970000px;}
.x8f_c00212{left:329.940000px;}
.x8b_c00212{left:332.640000px;}
.x48_c00212{left:333.720000px;}
.x52_c00212{left:335.880000px;}
.x7_c00212{left:339.660000px;}
.x4c_c00212{left:343.440000px;}
.x34_c00212{left:347.490000px;}
.xf_c00212{left:348.840000px;}
.x23_c00212{left:352.620000px;}
.x7e_c00212{left:357.750000px;}
.x8_c00212{left:360.720000px;}
.x17_c00212{left:366.120000px;}
.x2_c00212{left:371.250000px;}
.x29_c00212{left:374.760000px;}
.x39_c00212{left:375.840000px;}
.x7f_c00212{left:378.270000px;}
.x4d_c00212{left:380.430000px;}
.x2f_c00212{left:386.100000px;}
.x77_c00212{left:392.580000px;}
.x3f_c00212{left:395.010000px;}
.x1d_c00212{left:398.790000px;}
.x87_c00212{left:400.410000px;}
.x10_c00212{left:402.300000px;}
.x35_c00212{left:403.650000px;}
.x2a_c00212{left:405.810000px;}
.x78_c00212{left:407.430000px;}
.x3d_c00212{left:411.480000px;}
.x82_c00212{left:415.260000px;}
.x53_c00212{left:420.390000px;}
.x40_c00212{left:424.170000px;}
.x79_c00212{left:427.140000px;}
.x11_c00212{left:429.840000px;}
.x24_c00212{left:434.430000px;}
.x18_c00212{left:436.590000px;}
.x59_c00212{left:439.020000px;}
.x8c_c00212{left:441.180000px;}
.x1e_c00212{left:447.660000px;}
.x3_c00212{left:449.280000px;}
.x88_c00212{left:450.630000px;}
.x2b_c00212{left:451.980000px;}
.x80_c00212{left:455.760000px;}
.x83_c00212{left:457.380000px;}
.x7a_c00212{left:458.730000px;}
.x1f_c00212{left:464.940000px;}
.x19_c00212{left:470.340000px;}
.x7b_c00212{left:481.680000px;}
.x89_c00212{left:493.020000px;}
.x84_c00212{left:495.450000px;}
.x8d_c00212{left:496.800000px;}
.x1a_c00212{left:500.040000px;}
.x85_c00212{left:506.790000px;}
.x7c_c00212{left:515.430000px;}
.x20_c00212{left:520.560000px;}
.x25_c00212{left:524.340000px;}
.x8e_c00212{left:527.310000px;}
.x81_c00212{left:536.760000px;}
.x7d_c00212{left:540.270000px;}
.x86_c00212{left:547.020000px;}
.x8a_c00212{left:552.420000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.fs8_c00212{font-size:19.600000pt;}
.fs10_c00212{font-size:42.000000pt;}
.fse_c00212{font-size:44.800000pt;}
.fsd_c00212{font-size:45.733333pt;}
.fsb_c00212{font-size:46.666667pt;}
.fsf_c00212{font-size:47.600000pt;}
.fsc_c00212{font-size:49.466667pt;}
.fs4_c00212{font-size:56.000000pt;}
.fsa_c00212{font-size:56.933333pt;}
.fs5_c00212{font-size:59.733333pt;}
.fs3_c00212{font-size:60.666667pt;}
.fs9_c00212{font-size:61.600000pt;}
.fs1_c00212{font-size:63.466667pt;}
.fs2_c00212{font-size:64.400000pt;}
.fs0_c00212{font-size:77.466667pt;}
.fs6_c00212{font-size:86.800000pt;}
.fs7_c00212{font-size:87.733333pt;}
.y0_c00212{bottom:0.000000pt;}
.y1e_c00212{bottom:146.481333pt;}
.y1d_c00212{bottom:171.400000pt;}
.y25_c00212{bottom:186.138667pt;}
.y1c_c00212{bottom:187.961333pt;}
.y24_c00212{bottom:203.040000pt;}
.y1f_c00212{bottom:203.386667pt;}
.y1b_c00212{bottom:203.865333pt;}
.y23_c00212{bottom:218.805333pt;}
.y1a_c00212{bottom:219.701333pt;}
.y22_c00212{bottom:235.037333pt;}
.y19_c00212{bottom:235.580000pt;}
.y21_c00212{bottom:251.798667pt;}
.y18_c00212{bottom:252.140000pt;}
.y20_c00212{bottom:267.388000pt;}
.y17_c00212{bottom:268.124000pt;}
.y16_c00212{bottom:320.196000pt;}
.y15_c00212{bottom:340.860000pt;}
.y14_c00212{bottom:360.424000pt;}
.y13_c00212{bottom:380.709333pt;}
.y12_c00212{bottom:400.740000pt;}
.y11_c00212{bottom:421.441333pt;}
.y10_c00212{bottom:441.681333pt;}
.yf_c00212{bottom:462.324000pt;}
.ye_c00212{bottom:480.240000pt;}
.yd_c00212{bottom:494.050667pt;}
.yc_c00212{bottom:524.640000pt;}
.yb_c00212{bottom:582.396000pt;}
.ya_c00212{bottom:582.720000pt;}
.y9_c00212{bottom:602.778667pt;}
.y8_c00212{bottom:622.560000pt;}
.y7_c00212{bottom:642.174667pt;}
.y6_c00212{bottom:663.370667pt;}
.y5_c00212{bottom:683.398667pt;}
.y4_c00212{bottom:703.920000pt;}
.y3_c00212{bottom:724.176000pt;}
.y2_c00212{bottom:745.200000pt;}
.y1_c00212{bottom:784.638667pt;}
.ha_c00212{height:19.600000pt;}
.h12_c00212{height:42.000000pt;}
.h10_c00212{height:44.800000pt;}
.hf_c00212{height:45.733333pt;}
.hd_c00212{height:46.666667pt;}
.h11_c00212{height:47.600000pt;}
.he_c00212{height:49.466667pt;}
.h6_c00212{height:56.000000pt;}
.hc_c00212{height:56.933333pt;}
.h7_c00212{height:59.733333pt;}
.h5_c00212{height:60.666667pt;}
.hb_c00212{height:61.600000pt;}
.h3_c00212{height:63.466667pt;}
.h4_c00212{height:64.400000pt;}
.h2_c00212{height:77.466667pt;}
.h8_c00212{height:86.800000pt;}
.h9_c00212{height:87.733333pt;}
.h1_c00212{height:893.333333pt;}
.h0_c00212{height:893.466667pt;}
.w1_c00212{width:634.000000pt;}
.w0_c00212{width:634.266667pt;}
.x0_c00212{left:0.000000pt;}
.x61_c00212{left:78.960000pt;}
.x72_c00212{left:84.000000pt;}
.x5f_c00212{left:88.800000pt;}
.x62_c00212{left:92.160000pt;}
.x73_c00212{left:95.280000pt;}
.x54_c00212{left:102.960000pt;}
.x70_c00212{left:106.800000pt;}
.x5a_c00212{left:108.480000pt;}
.x43_c00212{left:109.680000pt;}
.x49_c00212{left:110.880000pt;}
.x9_c00212{left:111.840000pt;}
.x1b_c00212{left:113.280000pt;}
.x6c_c00212{left:114.480000pt;}
.x6b_c00212{left:117.600000pt;}
.x55_c00212{left:121.440000pt;}
.x65_c00212{left:124.080000pt;}
.x3a_c00212{left:127.920000pt;}
.xa_c00212{left:131.040000pt;}
.x12_c00212{left:133.200000pt;}
.x5b_c00212{left:134.160000pt;}
.x1_c00212{left:136.560000pt;}
.x4a_c00212{left:138.480000pt;}
.x30_c00212{left:140.400000pt;}
.x66_c00212{left:143.040000pt;}
.x21_c00212{left:144.720000pt;}
.x71_c00212{left:148.800000pt;}
.x6d_c00212{left:150.000000pt;}
.x5c_c00212{left:151.680000pt;}
.x13_c00212{left:157.920000pt;}
.x60_c00212{left:159.600000pt;}
.x56_c00212{left:162.480000pt;}
.xb_c00212{left:164.400000pt;}
.x1c_c00212{left:165.600000pt;}
.x63_c00212{left:168.960000pt;}
.x4e_c00212{left:170.160000pt;}
.x67_c00212{left:171.120000pt;}
.x5d_c00212{left:173.520000pt;}
.x3b_c00212{left:174.960000pt;}
.x41_c00212{left:176.160000pt;}
.x3e_c00212{left:177.120000pt;}
.x26_c00212{left:180.720000pt;}
.x44_c00212{left:181.680000pt;}
.x6e_c00212{left:184.800000pt;}
.x4b_c00212{left:186.960000pt;}
.x36_c00212{left:190.560000pt;}
.x37_c00212{left:194.400000pt;}
.x68_c00212{left:196.320000pt;}
.x45_c00212{left:200.640000pt;}
.x57_c00212{left:202.560000pt;}
.x75_c00212{left:204.000000pt;}
.x2c_c00212{left:204.960000pt;}
.x4_c00212{left:208.080000pt;}
.x14_c00212{left:210.000000pt;}
.x5_c00212{left:220.080000pt;}
.x4f_c00212{left:221.280000pt;}
.x31_c00212{left:222.480000pt;}
.x38_c00212{left:224.880000pt;}
.x22_c00212{left:226.080000pt;}
.x69_c00212{left:227.760000pt;}
.x3c_c00212{left:229.200000pt;}
.x74_c00212{left:230.640000pt;}
.x15_c00212{left:235.200000pt;}
.x42_c00212{left:236.160000pt;}
.x27_c00212{left:240.480000pt;}
.x2d_c00212{left:242.640000pt;}
.x46_c00212{left:246.960000pt;}
.xc_c00212{left:253.680000pt;}
.x32_c00212{left:255.600000pt;}
.x76_c00212{left:257.280000pt;}
.x50_c00212{left:258.720000pt;}
.x33_c00212{left:261.120000pt;}
.x16_c00212{left:262.320000pt;}
.x6f_c00212{left:263.520000pt;}
.x64_c00212{left:264.480000pt;}
.x47_c00212{left:266.880000pt;}
.xd_c00212{left:268.080000pt;}
.x6a_c00212{left:270.720000pt;}
.x5e_c00212{left:273.360000pt;}
.x6_c00212{left:275.280000pt;}
.x51_c00212{left:277.440000pt;}
.x2e_c00212{left:279.840000pt;}
.x28_c00212{left:282.960000pt;}
.x58_c00212{left:288.000000pt;}
.xe_c00212{left:290.640000pt;}
.x8f_c00212{left:293.280000pt;}
.x8b_c00212{left:295.680000pt;}
.x48_c00212{left:296.640000pt;}
.x52_c00212{left:298.560000pt;}
.x7_c00212{left:301.920000pt;}
.x4c_c00212{left:305.280000pt;}
.x34_c00212{left:308.880000pt;}
.xf_c00212{left:310.080000pt;}
.x23_c00212{left:313.440000pt;}
.x7e_c00212{left:318.000000pt;}
.x8_c00212{left:320.640000pt;}
.x17_c00212{left:325.440000pt;}
.x2_c00212{left:330.000000pt;}
.x29_c00212{left:333.120000pt;}
.x39_c00212{left:334.080000pt;}
.x7f_c00212{left:336.240000pt;}
.x4d_c00212{left:338.160000pt;}
.x2f_c00212{left:343.200000pt;}
.x77_c00212{left:348.960000pt;}
.x3f_c00212{left:351.120000pt;}
.x1d_c00212{left:354.480000pt;}
.x87_c00212{left:355.920000pt;}
.x10_c00212{left:357.600000pt;}
.x35_c00212{left:358.800000pt;}
.x2a_c00212{left:360.720000pt;}
.x78_c00212{left:362.160000pt;}
.x3d_c00212{left:365.760000pt;}
.x82_c00212{left:369.120000pt;}
.x53_c00212{left:373.680000pt;}
.x40_c00212{left:377.040000pt;}
.x79_c00212{left:379.680000pt;}
.x11_c00212{left:382.080000pt;}
.x24_c00212{left:386.160000pt;}
.x18_c00212{left:388.080000pt;}
.x59_c00212{left:390.240000pt;}
.x8c_c00212{left:392.160000pt;}
.x1e_c00212{left:397.920000pt;}
.x3_c00212{left:399.360000pt;}
.x88_c00212{left:400.560000pt;}
.x2b_c00212{left:401.760000pt;}
.x80_c00212{left:405.120000pt;}
.x83_c00212{left:406.560000pt;}
.x7a_c00212{left:407.760000pt;}
.x1f_c00212{left:413.280000pt;}
.x19_c00212{left:418.080000pt;}
.x7b_c00212{left:428.160000pt;}
.x89_c00212{left:438.240000pt;}
.x84_c00212{left:440.400000pt;}
.x8d_c00212{left:441.600000pt;}
.x1a_c00212{left:444.480000pt;}
.x85_c00212{left:450.480000pt;}
.x7c_c00212{left:458.160000pt;}
.x20_c00212{left:462.720000pt;}
.x25_c00212{left:466.080000pt;}
.x8e_c00212{left:468.720000pt;}
.x81_c00212{left:477.120000pt;}
.x7d_c00212{left:480.240000pt;}
.x86_c00212{left:486.240000pt;}
.x8a_c00212{left:491.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7f_c00213{transform:matrix(0.010539,-0.000158,0.003750,0.249972,0,0);-ms-transform:matrix(0.010539,-0.000158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.010539,-0.000158,0.003750,0.249972,0,0);}
.mad_c00213{transform:matrix(0.016835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016835,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.021388,-0.000321,0.003750,0.249972,0,0);-ms-transform:matrix(0.021388,-0.000321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.021388,-0.000321,0.003750,0.249972,0,0);}
.mc1_c00213{transform:matrix(0.136990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136990,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.141905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141905,0.000000,0.000000,0.250000,0,0);}
.ma8_c00213{transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);}
.m78_c00213{transform:matrix(0.149588,-0.002244,0.003750,0.249972,0,0);-ms-transform:matrix(0.149588,-0.002244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149588,-0.002244,0.003750,0.249972,0,0);}
.m5c_c00213{transform:matrix(0.151543,-0.002273,0.003750,0.249972,0,0);-ms-transform:matrix(0.151543,-0.002273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151543,-0.002273,0.003750,0.249972,0,0);}
.m1e_c00213{transform:matrix(0.155013,-0.002325,0.003750,0.249972,0,0);-ms-transform:matrix(0.155013,-0.002325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155013,-0.002325,0.003750,0.249972,0,0);}
.mc6_c00213{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);}
.m29_c00213{transform:matrix(0.155787,-0.002337,0.003750,0.249972,0,0);-ms-transform:matrix(0.155787,-0.002337,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155787,-0.002337,0.003750,0.249972,0,0);}
.ma3_c00213{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_c00213{transform:matrix(0.157477,-0.002047,0.003250,0.249979,0,0);-ms-transform:matrix(0.157477,-0.002047,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157477,-0.002047,0.003250,0.249979,0,0);}
.m8b_c00213{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);}
.m20_c00213{transform:matrix(0.161337,-0.002420,0.003750,0.249972,0,0);-ms-transform:matrix(0.161337,-0.002420,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161337,-0.002420,0.003750,0.249972,0,0);}
.m5f_c00213{transform:matrix(0.161772,-0.002427,0.003750,0.249972,0,0);-ms-transform:matrix(0.161772,-0.002427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161772,-0.002427,0.003750,0.249972,0,0);}
.m26_c00213{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);}
.m13_c00213{transform:matrix(0.162367,-0.002436,0.003750,0.249972,0,0);-ms-transform:matrix(0.162367,-0.002436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162367,-0.002436,0.003750,0.249972,0,0);}
.m19_c00213{transform:matrix(0.162747,-0.002441,0.003750,0.249972,0,0);-ms-transform:matrix(0.162747,-0.002441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162747,-0.002441,0.003750,0.249972,0,0);}
.m18_c00213{transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);-ms-transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);}
.ma2_c00213{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);}
.m6a_c00213{transform:matrix(0.165056,-0.002476,0.003750,0.249972,0,0);-ms-transform:matrix(0.165056,-0.002476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165056,-0.002476,0.003750,0.249972,0,0);}
.mc5_c00213{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);}
.mc2_c00213{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);}
.m69_c00213{transform:matrix(0.165996,-0.002490,0.003750,0.249972,0,0);-ms-transform:matrix(0.165996,-0.002490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165996,-0.002490,0.003750,0.249972,0,0);}
.m67_c00213{transform:matrix(0.166886,-0.002503,0.003750,0.249972,0,0);-ms-transform:matrix(0.166886,-0.002503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166886,-0.002503,0.003750,0.249972,0,0);}
.mc4_c00213{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.167771,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167771,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167771,-0.002517,0.003750,0.249972,0,0);}
.m8a_c00213{transform:matrix(0.167891,-0.002518,0.003750,0.249972,0,0);-ms-transform:matrix(0.167891,-0.002518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167891,-0.002518,0.003750,0.249972,0,0);}
.m42_c00213{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);}
.m7a_c00213{transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);}
.m16_c00213{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);}
.m8c_c00213{transform:matrix(0.168856,-0.002533,0.003750,0.249972,0,0);-ms-transform:matrix(0.168856,-0.002533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168856,-0.002533,0.003750,0.249972,0,0);}
.ma9_c00213{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);}
.m75_c00213{transform:matrix(0.170591,-0.002559,0.003750,0.249972,0,0);-ms-transform:matrix(0.170591,-0.002559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170591,-0.002559,0.003750,0.249972,0,0);}
.m21_c00213{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);}
.m1d_c00213{transform:matrix(0.172326,-0.002585,0.003750,0.249972,0,0);-ms-transform:matrix(0.172326,-0.002585,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172326,-0.002585,0.003750,0.249972,0,0);}
.m94_c00213{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);}
.m1b_c00213{transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);-ms-transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);}
.m47_c00213{transform:matrix(0.172546,-0.002588,0.003750,0.249972,0,0);-ms-transform:matrix(0.172546,-0.002588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172546,-0.002588,0.003750,0.249972,0,0);}
.m1c_c00213{transform:matrix(0.172636,-0.002590,0.003750,0.249972,0,0);-ms-transform:matrix(0.172636,-0.002590,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172636,-0.002590,0.003750,0.249972,0,0);}
.md_c00213{transform:matrix(0.173161,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173161,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173161,-0.002597,0.003750,0.249972,0,0);}
.m34_c00213{transform:matrix(0.173296,-0.002599,0.003750,0.249972,0,0);-ms-transform:matrix(0.173296,-0.002599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173296,-0.002599,0.003750,0.249972,0,0);}
.m6f_c00213{transform:matrix(0.173715,-0.002606,0.003750,0.249972,0,0);-ms-transform:matrix(0.173715,-0.002606,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173715,-0.002606,0.003750,0.249972,0,0);}
.ma_c00213{transform:matrix(0.173965,-0.002609,0.003750,0.249972,0,0);-ms-transform:matrix(0.173965,-0.002609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173965,-0.002609,0.003750,0.249972,0,0);}
.mb7_c00213{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);}
.m70_c00213{transform:matrix(0.175505,-0.002633,0.003750,0.249972,0,0);-ms-transform:matrix(0.175505,-0.002633,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175505,-0.002633,0.003750,0.249972,0,0);}
.m51_c00213{transform:matrix(0.175800,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175800,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175800,-0.002637,0.003750,0.249972,0,0);}
.ma6_c00213{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);}
.m25_c00213{transform:matrix(0.176200,-0.002643,0.003750,0.249972,0,0);-ms-transform:matrix(0.176200,-0.002643,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176200,-0.002643,0.003750,0.249972,0,0);}
.m7_c00213{transform:matrix(0.176545,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176545,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176545,-0.002648,0.003750,0.249972,0,0);}
.mbe_c00213{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);}
.m60_c00213{transform:matrix(0.176930,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176930,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176930,-0.002654,0.003750,0.249972,0,0);}
.m15_c00213{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);}
.m1a_c00213{transform:matrix(0.178075,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178075,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178075,-0.002671,0.003750,0.249972,0,0);}
.m17_c00213{transform:matrix(0.178385,-0.002676,0.003750,0.249972,0,0);-ms-transform:matrix(0.178385,-0.002676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178385,-0.002676,0.003750,0.249972,0,0);}
.m41_c00213{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);}
.m10_c00213{transform:matrix(0.181290,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181290,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181290,-0.002719,0.003750,0.249972,0,0);}
.m43_c00213{transform:matrix(0.182954,-0.002744,0.003750,0.249972,0,0);-ms-transform:matrix(0.182954,-0.002744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182954,-0.002744,0.003750,0.249972,0,0);}
.m71_c00213{transform:matrix(0.183874,-0.002758,0.003750,0.249972,0,0);-ms-transform:matrix(0.183874,-0.002758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183874,-0.002758,0.003750,0.249972,0,0);}
.m1f_c00213{transform:matrix(0.184564,-0.002768,0.003750,0.249972,0,0);-ms-transform:matrix(0.184564,-0.002768,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184564,-0.002768,0.003750,0.249972,0,0);}
.m2c_c00213{transform:matrix(0.184569,-0.002769,0.003750,0.249972,0,0);-ms-transform:matrix(0.184569,-0.002769,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184569,-0.002769,0.003750,0.249972,0,0);}
.m8_c00213{transform:matrix(0.185269,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185269,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185269,-0.002779,0.003750,0.249972,0,0);}
.mc_c00213{transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186129,-0.002792,0.003750,0.249972,0,0);}
.m4c_c00213{transform:matrix(0.186179,-0.002793,0.003750,0.249972,0,0);-ms-transform:matrix(0.186179,-0.002793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186179,-0.002793,0.003750,0.249972,0,0);}
.m54_c00213{transform:matrix(0.186234,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186234,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186234,-0.002794,0.003750,0.249972,0,0);}
.m74_c00213{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);}
.m76_c00213{transform:matrix(0.187854,-0.002818,0.003750,0.249972,0,0);-ms-transform:matrix(0.187854,-0.002818,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187854,-0.002818,0.003750,0.249972,0,0);}
.m2f_c00213{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);}
.m22_c00213{transform:matrix(0.189124,-0.002837,0.003750,0.249972,0,0);-ms-transform:matrix(0.189124,-0.002837,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189124,-0.002837,0.003750,0.249972,0,0);}
.m12_c00213{transform:matrix(0.189474,-0.002842,0.003750,0.249972,0,0);-ms-transform:matrix(0.189474,-0.002842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189474,-0.002842,0.003750,0.249972,0,0);}
.m7e_c00213{transform:matrix(0.191438,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191438,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191438,-0.002872,0.003750,0.249972,0,0);}
.m87_c00213{transform:matrix(0.192143,-0.002882,0.003750,0.249972,0,0);-ms-transform:matrix(0.192143,-0.002882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192143,-0.002882,0.003750,0.249972,0,0);}
.ma1_c00213{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_c00213{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);}
.mbf_c00213{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);}
.m5_c00213{transform:matrix(0.192794,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192794,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192794,-0.002506,0.003250,0.249979,0,0);}
.ma5_c00213{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);}
.m50_c00213{transform:matrix(0.194093,-0.002911,0.003750,0.249972,0,0);-ms-transform:matrix(0.194093,-0.002911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194093,-0.002911,0.003750,0.249972,0,0);}
.m33_c00213{transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);}
.m14_c00213{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);}
.ma7_c00213{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);}
.m23_c00213{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);}
.m55_c00213{transform:matrix(0.197383,-0.002961,0.003750,0.249972,0,0);-ms-transform:matrix(0.197383,-0.002961,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197383,-0.002961,0.003750,0.249972,0,0);}
.m96_c00213{transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.199258,-0.002989,0.003750,0.249972,0,0);-ms-transform:matrix(0.199258,-0.002989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199258,-0.002989,0.003750,0.249972,0,0);}
.m65_c00213{transform:matrix(0.199413,-0.002991,0.003750,0.249972,0,0);-ms-transform:matrix(0.199413,-0.002991,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199413,-0.002991,0.003750,0.249972,0,0);}
.m7b_c00213{transform:matrix(0.199423,-0.002991,0.003750,0.249972,0,0);-ms-transform:matrix(0.199423,-0.002991,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199423,-0.002991,0.003750,0.249972,0,0);}
.m7d_c00213{transform:matrix(0.199748,-0.002996,0.003750,0.249972,0,0);-ms-transform:matrix(0.199748,-0.002996,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199748,-0.002996,0.003750,0.249972,0,0);}
.m6b_c00213{transform:matrix(0.201057,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201057,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201057,-0.003016,0.003750,0.249972,0,0);}
.m46_c00213{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);}
.mc7_c00213{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);}
.m6d_c00213{transform:matrix(0.202212,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202212,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202212,-0.003033,0.003750,0.249972,0,0);}
.m5a_c00213{transform:matrix(0.202547,-0.003038,0.003750,0.249972,0,0);-ms-transform:matrix(0.202547,-0.003038,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202547,-0.003038,0.003750,0.249972,0,0);}
.m5b_c00213{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);}
.m4f_c00213{transform:matrix(0.203847,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203847,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203847,-0.003058,0.003750,0.249972,0,0);}
.m90_c00213{transform:matrix(0.204192,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204192,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204192,-0.003063,0.003750,0.249972,0,0);}
.m31_c00213{transform:matrix(0.204307,-0.003065,0.003750,0.249972,0,0);-ms-transform:matrix(0.204307,-0.003065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204307,-0.003065,0.003750,0.249972,0,0);}
.mba_c00213{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);}
.m40_c00213{transform:matrix(0.205082,-0.003076,0.003750,0.249972,0,0);-ms-transform:matrix(0.205082,-0.003076,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205082,-0.003076,0.003750,0.249972,0,0);}
.m4b_c00213{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);}
.m3d_c00213{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);}
.m4a_c00213{transform:matrix(0.206372,-0.003096,0.003750,0.249972,0,0);-ms-transform:matrix(0.206372,-0.003096,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206372,-0.003096,0.003750,0.249972,0,0);}
.mbb_c00213{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);}
.m66_c00213{transform:matrix(0.207622,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207622,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207622,-0.003114,0.003750,0.249972,0,0);}
.m68_c00213{transform:matrix(0.208307,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208307,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208307,-0.003125,0.003750,0.249972,0,0);}
.mab_c00213{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.210756,-0.003161,0.003750,0.249972,0,0);-ms-transform:matrix(0.210756,-0.003161,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210756,-0.003161,0.003750,0.249972,0,0);}
.m85_c00213{transform:matrix(0.210896,-0.003163,0.003750,0.249972,0,0);-ms-transform:matrix(0.210896,-0.003163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210896,-0.003163,0.003750,0.249972,0,0);}
.m30_c00213{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);}
.m38_c00213{transform:matrix(0.211206,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211206,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211206,-0.003168,0.003750,0.249972,0,0);}
.m73_c00213{transform:matrix(0.211441,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211441,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211441,-0.003172,0.003750,0.249972,0,0);}
.m4d_c00213{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);}
.m3a_c00213{transform:matrix(0.211616,-0.003174,0.003750,0.249972,0,0);-ms-transform:matrix(0.211616,-0.003174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211616,-0.003174,0.003750,0.249972,0,0);}
.m37_c00213{transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-ms-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);}
.mb8_c00213{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);}
.m2a_c00213{transform:matrix(0.212731,-0.003191,0.003750,0.249972,0,0);-ms-transform:matrix(0.212731,-0.003191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212731,-0.003191,0.003750,0.249972,0,0);}
.m11_c00213{transform:matrix(0.212886,-0.003193,0.003750,0.249972,0,0);-ms-transform:matrix(0.212886,-0.003193,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212886,-0.003193,0.003750,0.249972,0,0);}
.m8f_c00213{transform:matrix(0.213191,-0.003198,0.003750,0.249972,0,0);-ms-transform:matrix(0.213191,-0.003198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213191,-0.003198,0.003750,0.249972,0,0);}
.m48_c00213{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);}
.mf_c00213{transform:matrix(0.213851,-0.003208,0.003750,0.249972,0,0);-ms-transform:matrix(0.213851,-0.003208,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213851,-0.003208,0.003750,0.249972,0,0);}
.m27_c00213{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);}
.m8e_c00213{transform:matrix(0.214666,-0.003220,0.003750,0.249972,0,0);-ms-transform:matrix(0.214666,-0.003220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214666,-0.003220,0.003750,0.249972,0,0);}
.me_c00213{transform:matrix(0.215241,-0.003229,0.003750,0.249972,0,0);-ms-transform:matrix(0.215241,-0.003229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215241,-0.003229,0.003750,0.249972,0,0);}
.m28_c00213{transform:matrix(0.216136,-0.003242,0.003750,0.249972,0,0);-ms-transform:matrix(0.216136,-0.003242,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216136,-0.003242,0.003750,0.249972,0,0);}
.m7c_c00213{transform:matrix(0.217541,-0.003263,0.003750,0.249972,0,0);-ms-transform:matrix(0.217541,-0.003263,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217541,-0.003263,0.003750,0.249972,0,0);}
.m24_c00213{transform:matrix(0.218565,-0.003278,0.003750,0.249972,0,0);-ms-transform:matrix(0.218565,-0.003278,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218565,-0.003278,0.003750,0.249972,0,0);}
.m81_c00213{transform:matrix(0.218995,-0.003285,0.003750,0.249972,0,0);-ms-transform:matrix(0.218995,-0.003285,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218995,-0.003285,0.003750,0.249972,0,0);}
.m62_c00213{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);}
.m44_c00213{transform:matrix(0.220075,-0.003301,0.003750,0.249972,0,0);-ms-transform:matrix(0.220075,-0.003301,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220075,-0.003301,0.003750,0.249972,0,0);}
.m3f_c00213{transform:matrix(0.220290,-0.003304,0.003750,0.249972,0,0);-ms-transform:matrix(0.220290,-0.003304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220290,-0.003304,0.003750,0.249972,0,0);}
.ma0_c00213{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);}
.m2d_c00213{transform:matrix(0.222945,-0.003344,0.003750,0.249972,0,0);-ms-transform:matrix(0.222945,-0.003344,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222945,-0.003344,0.003750,0.249972,0,0);}
.m49_c00213{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);}
.m3b_c00213{transform:matrix(0.223585,-0.003354,0.003750,0.249972,0,0);-ms-transform:matrix(0.223585,-0.003354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223585,-0.003354,0.003750,0.249972,0,0);}
.m32_c00213{transform:matrix(0.224475,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224475,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224475,-0.003367,0.003750,0.249972,0,0);}
.m2_c00213{transform:matrix(0.224511,-0.002919,0.003250,0.249979,0,0);-ms-transform:matrix(0.224511,-0.002919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224511,-0.002919,0.003250,0.249979,0,0);}
.m88_c00213{transform:matrix(0.224720,-0.003371,0.003750,0.249972,0,0);-ms-transform:matrix(0.224720,-0.003371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224720,-0.003371,0.003750,0.249972,0,0);}
.m3e_c00213{transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);-ms-transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225015,-0.003375,0.003750,0.249972,0,0);}
.m2e_c00213{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);}
.m79_c00213{transform:matrix(0.226660,-0.003400,0.003750,0.249972,0,0);-ms-transform:matrix(0.226660,-0.003400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226660,-0.003400,0.003750,0.249972,0,0);}
.mae_c00213{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);}
.m83_c00213{transform:matrix(0.229424,-0.003441,0.003750,0.249972,0,0);-ms-transform:matrix(0.229424,-0.003441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229424,-0.003441,0.003750,0.249972,0,0);}
.m82_c00213{transform:matrix(0.229969,-0.003450,0.003750,0.249972,0,0);-ms-transform:matrix(0.229969,-0.003450,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229969,-0.003450,0.003750,0.249972,0,0);}
.m95_c00213{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);}
.m84_c00213{transform:matrix(0.230529,-0.003458,0.003750,0.249972,0,0);-ms-transform:matrix(0.230529,-0.003458,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230529,-0.003458,0.003750,0.249972,0,0);}
.m64_c00213{transform:matrix(0.230794,-0.003462,0.003750,0.249972,0,0);-ms-transform:matrix(0.230794,-0.003462,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230794,-0.003462,0.003750,0.249972,0,0);}
.m57_c00213{transform:matrix(0.233294,-0.003499,0.003750,0.249972,0,0);-ms-transform:matrix(0.233294,-0.003499,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233294,-0.003499,0.003750,0.249972,0,0);}
.m1_c00213{transform:matrix(0.235040,-0.003056,0.003250,0.249979,0,0);-ms-transform:matrix(0.235040,-0.003056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235040,-0.003056,0.003250,0.249979,0,0);}
.m6c_c00213{transform:matrix(0.235174,-0.003528,0.003750,0.249972,0,0);-ms-transform:matrix(0.235174,-0.003528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235174,-0.003528,0.003750,0.249972,0,0);}
.m36_c00213{transform:matrix(0.236858,-0.003553,0.003750,0.249972,0,0);-ms-transform:matrix(0.236858,-0.003553,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236858,-0.003553,0.003750,0.249972,0,0);}
.m86_c00213{transform:matrix(0.238888,-0.003583,0.003750,0.249972,0,0);-ms-transform:matrix(0.238888,-0.003583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238888,-0.003583,0.003750,0.249972,0,0);}
.m77_c00213{transform:matrix(0.240713,-0.003611,0.003750,0.249972,0,0);-ms-transform:matrix(0.240713,-0.003611,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240713,-0.003611,0.003750,0.249972,0,0);}
.mb3_c00213{transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-ms-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);}
.m9_c00213{transform:matrix(0.241108,-0.003617,0.003750,0.249972,0,0);-ms-transform:matrix(0.241108,-0.003617,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241108,-0.003617,0.003750,0.249972,0,0);}
.m3c_c00213{transform:matrix(0.241678,-0.003625,0.003750,0.249972,0,0);-ms-transform:matrix(0.241678,-0.003625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241678,-0.003625,0.003750,0.249972,0,0);}
.m6_c00213{transform:matrix(0.241738,-0.003626,0.003750,0.249972,0,0);-ms-transform:matrix(0.241738,-0.003626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241738,-0.003626,0.003750,0.249972,0,0);}
.m72_c00213{transform:matrix(0.242958,-0.003644,0.003750,0.249972,0,0);-ms-transform:matrix(0.242958,-0.003644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242958,-0.003644,0.003750,0.249972,0,0);}
.mc3_c00213{transform:matrix(0.243135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243135,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.243318,-0.003650,0.003750,0.249972,0,0);-ms-transform:matrix(0.243318,-0.003650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243318,-0.003650,0.003750,0.249972,0,0);}
.mb_c00213{transform:matrix(0.243433,-0.003651,0.003750,0.249972,0,0);-ms-transform:matrix(0.243433,-0.003651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243433,-0.003651,0.003750,0.249972,0,0);}
.m5e_c00213{transform:matrix(0.245302,-0.003680,0.003750,0.249972,0,0);-ms-transform:matrix(0.245302,-0.003680,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245302,-0.003680,0.003750,0.249972,0,0);}
.m9e_c00213{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);}
.mb5_c00213{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);}
.m39_c00213{transform:matrix(0.254196,-0.003813,0.003750,0.249972,0,0);-ms-transform:matrix(0.254196,-0.003813,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254196,-0.003813,0.003750,0.249972,0,0);}
.m45_c00213{transform:matrix(0.255131,-0.003827,0.003750,0.249972,0,0);-ms-transform:matrix(0.255131,-0.003827,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255131,-0.003827,0.003750,0.249972,0,0);}
.m9b_c00213{transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.257631,-0.003864,0.003750,0.249972,0,0);-ms-transform:matrix(0.257631,-0.003864,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257631,-0.003864,0.003750,0.249972,0,0);}
.m35_c00213{transform:matrix(0.258536,-0.003878,0.003750,0.249972,0,0);-ms-transform:matrix(0.258536,-0.003878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258536,-0.003878,0.003750,0.249972,0,0);}
.mb2_c00213{transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.261391,-0.003921,0.003750,0.249972,0,0);-ms-transform:matrix(0.261391,-0.003921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261391,-0.003921,0.003750,0.249972,0,0);}
.m53_c00213{transform:matrix(0.269305,-0.004040,0.003750,0.249972,0,0);-ms-transform:matrix(0.269305,-0.004040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269305,-0.004040,0.003750,0.249972,0,0);}
.m59_c00213{transform:matrix(0.275159,-0.004127,0.003750,0.249972,0,0);-ms-transform:matrix(0.275159,-0.004127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275159,-0.004127,0.003750,0.249972,0,0);}
.m80_c00213{transform:matrix(0.280993,-0.004215,0.003750,0.249972,0,0);-ms-transform:matrix(0.280993,-0.004215,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280993,-0.004215,0.003750,0.249972,0,0);}
.mbc_c00213{transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);}
.mb6_c00213{transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{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);}
.m92_c00213{transform:matrix(0.288110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288110,0.000000,0.000000,0.250000,0,0);}
.mb9_c00213{transform:matrix(0.292390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00213{transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294965,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.301116,-0.004517,0.003750,0.249972,0,0);-ms-transform:matrix(0.301116,-0.004517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301116,-0.004517,0.003750,0.249972,0,0);}
.m98_c00213{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);}
.m58_c00213{transform:matrix(0.309935,-0.004649,0.003750,0.249972,0,0);-ms-transform:matrix(0.309935,-0.004649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309935,-0.004649,0.003750,0.249972,0,0);}
.m9d_c00213{transform:matrix(0.349810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349810,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.355900,-0.004627,0.003250,0.249979,0,0);-ms-transform:matrix(0.355900,-0.004627,0.003250,0.249979,0,0);-webkit-transform:matrix(0.355900,-0.004627,0.003250,0.249979,0,0);}
.m9c_c00213{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);}
.maf_c00213{transform:matrix(0.374670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374670,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385685,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.431900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431900,0.000000,0.000000,0.250000,0,0);}
.mb4_c00213{transform:matrix(0.433715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433715,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.439535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439535,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);}
.mc0_c00213{transform:matrix(0.453025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453025,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.572941,-0.008594,0.003750,0.249972,0,0);-ms-transform:matrix(0.572941,-0.008594,0.003750,0.249972,0,0);-webkit-transform:matrix(0.572941,-0.008594,0.003750,0.249972,0,0);}
.m9a_c00213{transform:matrix(0.635190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635190,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.842489,-0.010110,0.003000,0.249982,0,0);-ms-transform:matrix(0.842489,-0.010110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.842489,-0.010110,0.003000,0.249982,0,0);}
.mac_c00213{transform:matrix(1.046725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046725,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;}
.fs11_c00213{font-size:52.500000px;}
.fs10_c00213{font-size:57.750000px;}
.fs6_c00213{font-size:64.057205px;}
.fs5_c00213{font-size:65.107323px;}
.fsb_c00213{font-size:66.150000px;}
.fs4_c00213{font-size:68.257678px;}
.fs7_c00213{font-size:69.307796px;}
.fs9_c00213{font-size:70.357914px;}
.fsc_c00213{font-size:71.400000px;}
.fs2_c00213{font-size:71.408032px;}
.fsf_c00213{font-size:72.450000px;}
.fs8_c00213{font-size:72.458150px;}
.fsd_c00213{font-size:74.550000px;}
.fse_c00213{font-size:75.600000px;}
.fs3_c00213{font-size:76.658623px;}
.fsa_c00213{font-size:93.450000px;}
.fs1_c00213{font-size:118.660026px;}
.fs0_c00213{font-size:232.066707px;}
.y0_c00213{bottom:0.000000px;}
.y9b_c00213{bottom:177.927000px;}
.y9a_c00213{bottom:196.714500px;}
.y99_c00213{bottom:234.351000px;}
.y98_c00213{bottom:257.278500px;}
.y97_c00213{bottom:279.990000px;}
.y96_c00213{bottom:303.031500px;}
.y95_c00213{bottom:325.674000px;}
.y94_c00213{bottom:349.341000px;}
.y93_c00213{bottom:387.237000px;}
.y92_c00213{bottom:427.233000px;}
.y91_c00213{bottom:490.623435px;}
.y8e_c00213{bottom:490.623855px;}
.y90_c00213{bottom:490.624147px;}
.y89_c00213{bottom:490.624192px;}
.y8f_c00213{bottom:490.624237px;}
.y8a_c00213{bottom:490.624297px;}
.y8c_c00213{bottom:490.624312px;}
.y8d_c00213{bottom:490.624350px;}
.y8b_c00213{bottom:490.624957px;}
.y82_c00213{bottom:513.540532px;}
.y81_c00213{bottom:513.540600px;}
.y80_c00213{bottom:513.540667px;}
.y84_c00213{bottom:513.540952px;}
.y85_c00213{bottom:513.541012px;}
.y83_c00213{bottom:513.541065px;}
.y86_c00213{bottom:513.541545px;}
.y87_c00213{bottom:513.542055px;}
.y88_c00213{bottom:513.542160px;}
.y77_c00213{bottom:534.835110px;}
.y78_c00213{bottom:535.318912px;}
.y79_c00213{bottom:535.621868px;}
.y7a_c00213{bottom:535.988775px;}
.y7b_c00213{bottom:536.578560px;}
.y7c_c00213{bottom:537.267720px;}
.y7d_c00213{bottom:537.882855px;}
.y7e_c00213{bottom:538.765612px;}
.y7f_c00213{bottom:541.181265px;}
.y71_c00213{bottom:560.022817px;}
.y72_c00213{bottom:560.022877px;}
.y73_c00213{bottom:560.023282px;}
.y70_c00213{bottom:560.023507px;}
.y74_c00213{bottom:560.023897px;}
.y76_c00213{bottom:560.024235px;}
.y75_c00213{bottom:560.024557px;}
.y68_c00213{bottom:581.548852px;}
.y69_c00213{bottom:582.406792px;}
.y6a_c00213{bottom:582.685492px;}
.y6b_c00213{bottom:583.002915px;}
.y6c_c00213{bottom:583.595992px;}
.y6d_c00213{bottom:583.891402px;}
.y6e_c00213{bottom:584.586780px;}
.y6f_c00213{bottom:584.911680px;}
.y63_c00213{bottom:605.661277px;}
.y62_c00213{bottom:605.661345px;}
.y66_c00213{bottom:605.661435px;}
.y64_c00213{bottom:605.661465px;}
.y67_c00213{bottom:605.661772px;}
.y65_c00213{bottom:605.662057px;}
.y58_c00213{bottom:627.725280px;}
.y59_c00213{bottom:627.914415px;}
.y5a_c00213{bottom:628.487077px;}
.y5b_c00213{bottom:628.731480px;}
.y5c_c00213{bottom:629.236897px;}
.y5d_c00213{bottom:629.642347px;}
.y5e_c00213{bottom:629.890582px;}
.y5f_c00213{bottom:630.300592px;}
.y60_c00213{bottom:630.484515px;}
.y61_c00213{bottom:630.659445px;}
.y4e_c00213{bottom:650.681280px;}
.y4f_c00213{bottom:650.963287px;}
.y50_c00213{bottom:651.224587px;}
.y51_c00213{bottom:651.990510px;}
.y52_c00213{bottom:652.477665px;}
.y53_c00213{bottom:652.658962px;}
.y54_c00213{bottom:653.413275px;}
.y55_c00213{bottom:653.671012px;}
.y56_c00213{bottom:653.866650px;}
.y57_c00213{bottom:654.442170px;}
.y46_c00213{bottom:673.904812px;}
.y47_c00213{bottom:674.237662px;}
.y48_c00213{bottom:674.686980px;}
.y49_c00213{bottom:674.946532px;}
.y4a_c00213{bottom:675.643815px;}
.y4b_c00213{bottom:675.945015px;}
.y4c_c00213{bottom:676.725480px;}
.y4d_c00213{bottom:676.987470px;}
.y3e_c00213{bottom:697.398487px;}
.y3f_c00213{bottom:697.683090px;}
.y40_c00213{bottom:698.107830px;}
.y41_c00213{bottom:698.705167px;}
.y42_c00213{bottom:699.126525px;}
.y43_c00213{bottom:699.435810px;}
.y44_c00213{bottom:699.777217px;}
.y45_c00213{bottom:700.245577px;}
.y37_c00213{bottom:721.160302px;}
.y38_c00213{bottom:721.382077px;}
.y39_c00213{bottom:721.799745px;}
.y3a_c00213{bottom:722.599470px;}
.y3b_c00213{bottom:722.750317px;}
.y3c_c00213{bottom:723.500655px;}
.y3d_c00213{bottom:724.013272px;}
.y2c_c00213{bottom:743.302740px;}
.y2d_c00213{bottom:743.553075px;}
.y2e_c00213{bottom:743.958637px;}
.y2f_c00213{bottom:744.574357px;}
.y30_c00213{bottom:744.828540px;}
.y31_c00213{bottom:745.217392px;}
.y32_c00213{bottom:745.782000px;}
.y33_c00213{bottom:746.186325px;}
.y34_c00213{bottom:746.575177px;}
.y35_c00213{bottom:746.945527px;}
.y36_c00213{bottom:747.129450px;}
.y24_c00213{bottom:765.986775px;}
.y25_c00213{bottom:766.275382px;}
.y26_c00213{bottom:767.101290px;}
.y27_c00213{bottom:767.565097px;}
.y28_c00213{bottom:768.037717px;}
.y29_c00213{bottom:768.131797px;}
.y2a_c00213{bottom:768.995887px;}
.y2b_c00213{bottom:769.232347px;}
.y1a_c00213{bottom:789.480382px;}
.y1b_c00213{bottom:789.741630px;}
.y1c_c00213{bottom:790.103685px;}
.y1d_c00213{bottom:790.472475px;}
.y1e_c00213{bottom:790.856280px;}
.y1f_c00213{bottom:791.375310px;}
.y20_c00213{bottom:791.731845px;}
.y21_c00213{bottom:792.233205px;}
.y22_c00213{bottom:792.738570px;}
.y23_c00213{bottom:793.026442px;}
.y10_c00213{bottom:811.891245px;}
.y11_c00213{bottom:812.652405px;}
.y12_c00213{bottom:813.256702px;}
.y13_c00213{bottom:813.823320px;}
.y14_c00213{bottom:814.148362px;}
.y15_c00213{bottom:814.649595px;}
.y16_c00213{bottom:814.999335px;}
.y17_c00213{bottom:815.738565px;}
.y18_c00213{bottom:816.413197px;}
.y19_c00213{bottom:816.811455px;}
.y7_c00213{bottom:834.843000px;}
.y8_c00213{bottom:835.272435px;}
.y9_c00213{bottom:835.823235px;}
.ya_c00213{bottom:836.082457px;}
.yb_c00213{bottom:836.589135px;}
.yc_c00213{bottom:837.804067px;}
.yd_c00213{bottom:838.164540px;}
.ye_c00213{bottom:838.727670px;}
.yf_c00213{bottom:839.104342px;}
.y2_c00213{bottom:880.471500px;}
.y3_c00213{bottom:881.528751px;}
.y4_c00213{bottom:882.732798px;}
.y5_c00213{bottom:883.364676px;}
.y6_c00213{bottom:884.294846px;}
.y1_c00213{bottom:919.084500px;}
.h13_c00213{height:52.500000px;}
.h12_c00213{height:57.750000px;}
.h8_c00213{height:64.057205px;}
.h7_c00213{height:65.107323px;}
.hd_c00213{height:66.150000px;}
.h6_c00213{height:68.257678px;}
.h9_c00213{height:69.307796px;}
.hb_c00213{height:70.357914px;}
.he_c00213{height:71.400000px;}
.h4_c00213{height:71.408032px;}
.h11_c00213{height:72.450000px;}
.ha_c00213{height:72.458150px;}
.hf_c00213{height:74.550000px;}
.h10_c00213{height:75.600000px;}
.h5_c00213{height:76.658623px;}
.hc_c00213{height:93.450000px;}
.h3_c00213{height:118.660026px;}
.h2_c00213{height:232.066707px;}
.h0_c00213{height:1008.450000px;}
.h1_c00213{height:1008.750000px;}
.w0_c00213{width:678.450000px;}
.w1_c00213{width:678.750000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:71.961000px;}
.x2_c00213{left:128.682000px;}
.x72_c00213{left:136.620000px;}
.x69_c00213{left:151.470000px;}
.x37_c00213{left:154.829753px;}
.x7_c00213{left:162.730500px;}
.x18_c00213{left:164.036580px;}
.x6c_c00213{left:166.590000px;}
.x44_c00213{left:183.199335px;}
.x19_c00213{left:187.754498px;}
.x25_c00213{left:189.110475px;}
.x8_c00213{left:191.359500px;}
.x57_c00213{left:194.356965px;}
.x6a_c00213{left:196.560000px;}
.x60_c00213{left:198.187095px;}
.x6f_c00213{left:201.690000px;}
.x4a_c00213{left:207.095933px;}
.x3_c00213{left:210.009000px;}
.x10_c00213{left:211.101165px;}
.x58_c00213{left:213.253673px;}
.x3d_c00213{left:214.268250px;}
.x1a_c00213{left:220.693478px;}
.x77_c00213{left:227.070000px;}
.x9_c00213{left:228.079500px;}
.x26_c00213{left:229.651013px;}
.x2f_c00213{left:234.224850px;}
.x4e_c00213{left:235.552073px;}
.x45_c00213{left:240.481133px;}
.x38_c00213{left:241.782083px;}
.xa_c00213{left:245.361000px;}
.x11_c00213{left:248.887103px;}
.x1b_c00213{left:254.181480px;}
.x21_c00213{left:256.953593px;}
.x4f_c00213{left:258.833130px;}
.x7b_c00213{left:260.550000px;}
.x7c_c00213{left:263.790000px;}
.x46_c00213{left:264.976478px;}
.x39_c00213{left:270.688193px;}
.x59_c00213{left:273.032273px;}
.x65_c00213{left:274.590000px;}
.xb_c00213{left:279.139500px;}
.x33_c00213{left:282.043448px;}
.x12_c00213{left:284.261063px;}
.x50_c00213{left:285.295823px;}
.x1c_c00213{left:289.070573px;}
.x27_c00213{left:291.203625px;}
.x22_c00213{left:295.575825px;}
.x78_c00213{left:300.510000px;}
.x4_c00213{left:302.628000px;}
.x13_c00213{left:304.530248px;}
.x73_c00213{left:306.720000px;}
.x47_c00213{left:315.474758px;}
.x28_c00213{left:316.551015px;}
.x34_c00213{left:320.336243px;}
.x30_c00213{left:323.047838px;}
.x3e_c00213{left:328.213590px;}
.x66_c00213{left:331.020000px;}
.x51_c00213{left:334.736550px;}
.x14_c00213{left:335.845275px;}
.x70_c00213{left:337.500000px;}
.x31_c00213{left:339.805845px;}
.x23_c00213{left:342.857963px;}
.x3f_c00213{left:344.701080px;}
.x35_c00213{left:348.456930px;}
.x5_c00213{left:351.234000px;}
.x6b_c00213{left:353.160000px;}
.x29_c00213{left:355.477440px;}
.x15_c00213{left:357.660938px;}
.xc_c00213{left:360.135000px;}
.x74_c00213{left:363.420000px;}
.x4b_c00213{left:366.683820px;}
.x1d_c00213{left:368.746365px;}
.x6d_c00213{left:371.250000px;}
.x61_c00213{left:372.896903px;}
.x79_c00213{left:374.220000px;}
.x54_c00213{left:378.026790px;}
.x36_c00213{left:379.519298px;}
.x3a_c00213{left:381.663683px;}
.xd_c00213{left:384.166500px;}
.x75_c00213{left:386.370000px;}
.x67_c00213{left:390.960000px;}
.x6e_c00213{left:394.200000px;}
.x5c_c00213{left:397.469250px;}
.x16_c00213{left:403.842240px;}
.x62_c00213{left:407.730233px;}
.x5a_c00213{left:409.633703px;}
.x2a_c00213{left:411.922170px;}
.x40_c00213{left:413.292698px;}
.x1e_c00213{left:414.373110px;}
.x52_c00213{left:417.292763px;}
.xe_c00213{left:421.708500px;}
.x6_c00213{left:422.785500px;}
.x71_c00213{left:423.900000px;}
.x55_c00213{left:425.281410px;}
.x76_c00213{left:428.760000px;}
.x68_c00213{left:431.460000px;}
.x5d_c00213{left:433.112760px;}
.x24_c00213{left:434.632103px;}
.x41_c00213{left:436.776615px;}
.x48_c00213{left:440.258618px;}
.x56_c00213{left:442.563803px;}
.x53_c00213{left:444.353978px;}
.xf_c00213{left:446.820000px;}
.x4c_c00213{left:449.583473px;}
.x2b_c00213{left:452.380208px;}
.x42_c00213{left:454.620195px;}
.x49_c00213{left:457.821945px;}
.x1f_c00213{left:460.266855px;}
.x63_c00213{left:461.736383px;}
.x3b_c00213{left:468.302468px;}
.x17_c00213{left:470.867228px;}
.x4d_c00213{left:476.856615px;}
.x7a_c00213{left:478.440000px;}
.x32_c00213{left:480.215490px;}
.x5e_c00213{left:482.257808px;}
.x20_c00213{left:486.459930px;}
.x2c_c00213{left:491.306633px;}
.x3c_c00213{left:497.471100px;}
.x43_c00213{left:506.991345px;}
.x5f_c00213{left:515.472278px;}
.x2d_c00213{left:528.299400px;}
.x64_c00213{left:534.105173px;}
.x2e_c00213{left:546.662273px;}
.x5b_c00213{left:560.574930px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs11_c00213{font-size:46.666667pt;}
.fs10_c00213{font-size:51.333333pt;}
.fs6_c00213{font-size:56.939738pt;}
.fs5_c00213{font-size:57.873176pt;}
.fsb_c00213{font-size:58.800000pt;}
.fs4_c00213{font-size:60.673491pt;}
.fs7_c00213{font-size:61.606930pt;}
.fs9_c00213{font-size:62.540368pt;}
.fsc_c00213{font-size:63.466667pt;}
.fs2_c00213{font-size:63.473806pt;}
.fsf_c00213{font-size:64.400000pt;}
.fs8_c00213{font-size:64.407245pt;}
.fsd_c00213{font-size:66.266667pt;}
.fse_c00213{font-size:67.200000pt;}
.fs3_c00213{font-size:68.140998pt;}
.fsa_c00213{font-size:83.066667pt;}
.fs1_c00213{font-size:105.475578pt;}
.fs0_c00213{font-size:206.281517pt;}
.y0_c00213{bottom:0.000000pt;}
.y9b_c00213{bottom:158.157333pt;}
.y9a_c00213{bottom:174.857333pt;}
.y99_c00213{bottom:208.312000pt;}
.y98_c00213{bottom:228.692000pt;}
.y97_c00213{bottom:248.880000pt;}
.y96_c00213{bottom:269.361333pt;}
.y95_c00213{bottom:289.488000pt;}
.y94_c00213{bottom:310.525333pt;}
.y93_c00213{bottom:344.210667pt;}
.y92_c00213{bottom:379.762667pt;}
.y91_c00213{bottom:436.109720pt;}
.y8e_c00213{bottom:436.110093pt;}
.y90_c00213{bottom:436.110353pt;}
.y89_c00213{bottom:436.110393pt;}
.y8f_c00213{bottom:436.110433pt;}
.y8a_c00213{bottom:436.110487pt;}
.y8c_c00213{bottom:436.110500pt;}
.y8d_c00213{bottom:436.110533pt;}
.y8b_c00213{bottom:436.111073pt;}
.y82_c00213{bottom:456.480473pt;}
.y81_c00213{bottom:456.480533pt;}
.y80_c00213{bottom:456.480593pt;}
.y84_c00213{bottom:456.480847pt;}
.y85_c00213{bottom:456.480900pt;}
.y83_c00213{bottom:456.480947pt;}
.y86_c00213{bottom:456.481373pt;}
.y87_c00213{bottom:456.481827pt;}
.y88_c00213{bottom:456.481920pt;}
.y77_c00213{bottom:475.408987pt;}
.y78_c00213{bottom:475.839033pt;}
.y79_c00213{bottom:476.108327pt;}
.y7a_c00213{bottom:476.434467pt;}
.y7b_c00213{bottom:476.958720pt;}
.y7c_c00213{bottom:477.571307pt;}
.y7d_c00213{bottom:478.118093pt;}
.y7e_c00213{bottom:478.902767pt;}
.y7f_c00213{bottom:481.050013pt;}
.y71_c00213{bottom:497.798060pt;}
.y72_c00213{bottom:497.798113pt;}
.y73_c00213{bottom:497.798473pt;}
.y70_c00213{bottom:497.798673pt;}
.y74_c00213{bottom:497.799020pt;}
.y76_c00213{bottom:497.799320pt;}
.y75_c00213{bottom:497.799607pt;}
.y68_c00213{bottom:516.932313pt;}
.y69_c00213{bottom:517.694927pt;}
.y6a_c00213{bottom:517.942660pt;}
.y6b_c00213{bottom:518.224813pt;}
.y6c_c00213{bottom:518.751993pt;}
.y6d_c00213{bottom:519.014580pt;}
.y6e_c00213{bottom:519.632693pt;}
.y6f_c00213{bottom:519.921493pt;}
.y63_c00213{bottom:538.365580pt;}
.y62_c00213{bottom:538.365640pt;}
.y66_c00213{bottom:538.365720pt;}
.y64_c00213{bottom:538.365747pt;}
.y67_c00213{bottom:538.366020pt;}
.y65_c00213{bottom:538.366273pt;}
.y58_c00213{bottom:557.978027pt;}
.y59_c00213{bottom:558.146147pt;}
.y5a_c00213{bottom:558.655180pt;}
.y5b_c00213{bottom:558.872427pt;}
.y5c_c00213{bottom:559.321687pt;}
.y5d_c00213{bottom:559.682087pt;}
.y5e_c00213{bottom:559.902740pt;}
.y5f_c00213{bottom:560.267193pt;}
.y60_c00213{bottom:560.430680pt;}
.y61_c00213{bottom:560.586173pt;}
.y4e_c00213{bottom:578.383360pt;}
.y4f_c00213{bottom:578.634033pt;}
.y50_c00213{bottom:578.866300pt;}
.y51_c00213{bottom:579.547120pt;}
.y52_c00213{bottom:579.980147pt;}
.y53_c00213{bottom:580.141300pt;}
.y54_c00213{bottom:580.811800pt;}
.y55_c00213{bottom:581.040900pt;}
.y56_c00213{bottom:581.214800pt;}
.y57_c00213{bottom:581.726373pt;}
.y46_c00213{bottom:599.026500pt;}
.y47_c00213{bottom:599.322367pt;}
.y48_c00213{bottom:599.721760pt;}
.y49_c00213{bottom:599.952473pt;}
.y4a_c00213{bottom:600.572280pt;}
.y4b_c00213{bottom:600.840013pt;}
.y4c_c00213{bottom:601.533760pt;}
.y4d_c00213{bottom:601.766640pt;}
.y3e_c00213{bottom:619.909767pt;}
.y3f_c00213{bottom:620.162747pt;}
.y40_c00213{bottom:620.540293pt;}
.y41_c00213{bottom:621.071260pt;}
.y42_c00213{bottom:621.445800pt;}
.y43_c00213{bottom:621.720720pt;}
.y44_c00213{bottom:622.024193pt;}
.y45_c00213{bottom:622.440513pt;}
.y37_c00213{bottom:641.031380pt;}
.y38_c00213{bottom:641.228513pt;}
.y39_c00213{bottom:641.599773pt;}
.y3a_c00213{bottom:642.310640pt;}
.y3b_c00213{bottom:642.444727pt;}
.y3c_c00213{bottom:643.111693pt;}
.y3d_c00213{bottom:643.567353pt;}
.y2c_c00213{bottom:660.713547pt;}
.y2d_c00213{bottom:660.936067pt;}
.y2e_c00213{bottom:661.296567pt;}
.y2f_c00213{bottom:661.843873pt;}
.y30_c00213{bottom:662.069813pt;}
.y31_c00213{bottom:662.415460pt;}
.y32_c00213{bottom:662.917333pt;}
.y33_c00213{bottom:663.276733pt;}
.y34_c00213{bottom:663.622380pt;}
.y35_c00213{bottom:663.951580pt;}
.y36_c00213{bottom:664.115067pt;}
.y24_c00213{bottom:680.877133pt;}
.y25_c00213{bottom:681.133673pt;}
.y26_c00213{bottom:681.867813pt;}
.y27_c00213{bottom:682.280087pt;}
.y28_c00213{bottom:682.700193pt;}
.y29_c00213{bottom:682.783820pt;}
.y2a_c00213{bottom:683.551900pt;}
.y2b_c00213{bottom:683.762087pt;}
.y1a_c00213{bottom:701.760340pt;}
.y1b_c00213{bottom:701.992560pt;}
.y1c_c00213{bottom:702.314387pt;}
.y1d_c00213{bottom:702.642200pt;}
.y1e_c00213{bottom:702.983360pt;}
.y1f_c00213{bottom:703.444720pt;}
.y20_c00213{bottom:703.761640pt;}
.y21_c00213{bottom:704.207293pt;}
.y22_c00213{bottom:704.656507pt;}
.y23_c00213{bottom:704.912393pt;}
.y10_c00213{bottom:721.681107pt;}
.y11_c00213{bottom:722.357693pt;}
.y12_c00213{bottom:722.894847pt;}
.y13_c00213{bottom:723.398507pt;}
.y14_c00213{bottom:723.687433pt;}
.y15_c00213{bottom:724.132973pt;}
.y16_c00213{bottom:724.443853pt;}
.y17_c00213{bottom:725.100947pt;}
.y18_c00213{bottom:725.700620pt;}
.y19_c00213{bottom:726.054627pt;}
.y7_c00213{bottom:742.082667pt;}
.y8_c00213{bottom:742.464387pt;}
.y9_c00213{bottom:742.953987pt;}
.ya_c00213{bottom:743.184407pt;}
.yb_c00213{bottom:743.634787pt;}
.yc_c00213{bottom:744.714727pt;}
.yd_c00213{bottom:745.035147pt;}
.ye_c00213{bottom:745.535707pt;}
.yf_c00213{bottom:745.870527pt;}
.y2_c00213{bottom:782.641333pt;}
.y3_c00213{bottom:783.581112pt;}
.y4_c00213{bottom:784.651376pt;}
.y5_c00213{bottom:785.213045pt;}
.y6_c00213{bottom:786.039863pt;}
.y1_c00213{bottom:816.964000pt;}
.h13_c00213{height:46.666667pt;}
.h12_c00213{height:51.333333pt;}
.h8_c00213{height:56.939738pt;}
.h7_c00213{height:57.873176pt;}
.hd_c00213{height:58.800000pt;}
.h6_c00213{height:60.673491pt;}
.h9_c00213{height:61.606930pt;}
.hb_c00213{height:62.540368pt;}
.he_c00213{height:63.466667pt;}
.h4_c00213{height:63.473806pt;}
.h11_c00213{height:64.400000pt;}
.ha_c00213{height:64.407245pt;}
.hf_c00213{height:66.266667pt;}
.h10_c00213{height:67.200000pt;}
.h5_c00213{height:68.140998pt;}
.hc_c00213{height:83.066667pt;}
.h3_c00213{height:105.475578pt;}
.h2_c00213{height:206.281517pt;}
.h0_c00213{height:896.400000pt;}
.h1_c00213{height:896.666667pt;}
.w0_c00213{width:603.066667pt;}
.w1_c00213{width:603.333333pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:63.965333pt;}
.x2_c00213{left:114.384000pt;}
.x72_c00213{left:121.440000pt;}
.x69_c00213{left:134.640000pt;}
.x37_c00213{left:137.626447pt;}
.x7_c00213{left:144.649333pt;}
.x18_c00213{left:145.810293pt;}
.x6c_c00213{left:148.080000pt;}
.x44_c00213{left:162.843853pt;}
.x19_c00213{left:166.892887pt;}
.x25_c00213{left:168.098200pt;}
.x8_c00213{left:170.097333pt;}
.x57_c00213{left:172.761747pt;}
.x6a_c00213{left:174.720000pt;}
.x60_c00213{left:176.166307pt;}
.x6f_c00213{left:179.280000pt;}
.x4a_c00213{left:184.085273pt;}
.x3_c00213{left:186.674667pt;}
.x10_c00213{left:187.645480pt;}
.x58_c00213{left:189.558820pt;}
.x3d_c00213{left:190.460667pt;}
.x1a_c00213{left:196.171980pt;}
.x77_c00213{left:201.840000pt;}
.x9_c00213{left:202.737333pt;}
.x26_c00213{left:204.134233pt;}
.x2f_c00213{left:208.199867pt;}
.x4e_c00213{left:209.379620pt;}
.x45_c00213{left:213.761007pt;}
.x38_c00213{left:214.917407pt;}
.xa_c00213{left:218.098667pt;}
.x11_c00213{left:221.232980pt;}
.x1b_c00213{left:225.939093pt;}
.x21_c00213{left:228.403193pt;}
.x4f_c00213{left:230.073893pt;}
.x7b_c00213{left:231.600000pt;}
.x7c_c00213{left:234.480000pt;}
.x46_c00213{left:235.534647pt;}
.x39_c00213{left:240.611727pt;}
.x59_c00213{left:242.695353pt;}
.x65_c00213{left:244.080000pt;}
.xb_c00213{left:248.124000pt;}
.x33_c00213{left:250.705287pt;}
.x12_c00213{left:252.676500pt;}
.x50_c00213{left:253.596287pt;}
.x1c_c00213{left:256.951620pt;}
.x27_c00213{left:258.847667pt;}
.x22_c00213{left:262.734067pt;}
.x78_c00213{left:267.120000pt;}
.x4_c00213{left:269.002667pt;}
.x13_c00213{left:270.693553pt;}
.x73_c00213{left:272.640000pt;}
.x47_c00213{left:280.422007pt;}
.x28_c00213{left:281.378680pt;}
.x34_c00213{left:284.743327pt;}
.x30_c00213{left:287.153633pt;}
.x3e_c00213{left:291.745413pt;}
.x66_c00213{left:294.240000pt;}
.x51_c00213{left:297.543600pt;}
.x14_c00213{left:298.529133pt;}
.x70_c00213{left:300.000000pt;}
.x31_c00213{left:302.049640pt;}
.x23_c00213{left:304.762633pt;}
.x3f_c00213{left:306.400960pt;}
.x35_c00213{left:309.739493pt;}
.x5_c00213{left:312.208000pt;}
.x6b_c00213{left:313.920000pt;}
.x29_c00213{left:315.979947pt;}
.x15_c00213{left:317.920833pt;}
.xc_c00213{left:320.120000pt;}
.x74_c00213{left:323.040000pt;}
.x4b_c00213{left:325.941173pt;}
.x1d_c00213{left:327.774547pt;}
.x6d_c00213{left:330.000000pt;}
.x61_c00213{left:331.463913pt;}
.x79_c00213{left:332.640000pt;}
.x54_c00213{left:336.023813pt;}
.x36_c00213{left:337.350487pt;}
.x3a_c00213{left:339.256607pt;}
.xd_c00213{left:341.481333pt;}
.x75_c00213{left:343.440000pt;}
.x67_c00213{left:347.520000pt;}
.x6e_c00213{left:350.400000pt;}
.x5c_c00213{left:353.306000pt;}
.x16_c00213{left:358.970880pt;}
.x62_c00213{left:362.426873pt;}
.x5a_c00213{left:364.118847pt;}
.x2a_c00213{left:366.153040pt;}
.x40_c00213{left:367.371287pt;}
.x1e_c00213{left:368.331653pt;}
.x52_c00213{left:370.926900pt;}
.xe_c00213{left:374.852000pt;}
.x6_c00213{left:375.809333pt;}
.x71_c00213{left:376.800000pt;}
.x55_c00213{left:378.027920pt;}
.x76_c00213{left:381.120000pt;}
.x68_c00213{left:383.520000pt;}
.x5d_c00213{left:384.989120pt;}
.x24_c00213{left:386.339647pt;}
.x41_c00213{left:388.245880pt;}
.x48_c00213{left:391.340993pt;}
.x56_c00213{left:393.390047pt;}
.x53_c00213{left:394.981313pt;}
.xf_c00213{left:397.173333pt;}
.x4c_c00213{left:399.629753pt;}
.x2b_c00213{left:402.115740pt;}
.x42_c00213{left:404.106840pt;}
.x49_c00213{left:406.952840pt;}
.x1f_c00213{left:409.126093pt;}
.x63_c00213{left:410.432340pt;}
.x3b_c00213{left:416.268860pt;}
.x17_c00213{left:418.548647pt;}
.x4d_c00213{left:423.872547pt;}
.x7a_c00213{left:425.280000pt;}
.x32_c00213{left:426.858213pt;}
.x5e_c00213{left:428.673607pt;}
.x20_c00213{left:432.408827pt;}
.x2c_c00213{left:436.717007pt;}
.x3c_c00213{left:442.196533pt;}
.x43_c00213{left:450.658973pt;}
.x5f_c00213{left:458.197580pt;}
.x2d_c00213{left:469.599467pt;}
.x64_c00213{left:474.760153pt;}
.x2e_c00213{left:485.922020pt;}
.x5b_c00213{left:498.288827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mdb_c00214{transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{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);}
.m2c_c00214{transform:matrix(0.134170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134170,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136835,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.138290,0.006645,-0.011998,0.249712,0,0);-ms-transform:matrix(0.138290,0.006645,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.138290,0.006645,-0.011998,0.249712,0,0);}
.m14_c00214{transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{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);}
.m80_c00214{transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{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);}
.m28_c00214{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);}
.m18_c00214{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);}
.m38_c00214{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);}
.m5b_c00214{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);}
.mda_c00214{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);}
.m81_c00214{transform:matrix(0.154460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154460,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{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);}
.mc0_c00214{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);}
.m19_c00214{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);}
.md0_c00214{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00214{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);}
.m52_c00214{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);}
.m23_c00214{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);}
.ma_c00214{transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{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);}
.m3d_c00214{transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{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);}
.m22_c00214{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);}
.m85_c00214{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);}
.mb_c00214{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);}
.m7_c00214{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);}
.m7c_c00214{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);}
.m9f_c00214{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);}
.m4_c00214{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);}
.m66_c00214{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);}
.m9a_c00214{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);}
.mbc_c00214{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);}
.md_c00214{transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171595,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{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);}
.m90_c00214{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);}
.m2d_c00214{transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{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);}
.m65_c00214{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);}
.m76_c00214{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);}
.mcb_c00214{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);}
.m87_c00214{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);}
.m1e_c00214{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);}
.m91_c00214{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);}
.m40_c00214{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);}
.m29_c00214{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);}
.m61_c00214{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);}
.m21_c00214{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);}
.m56_c00214{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);}
.m98_c00214{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);}
.me7_c00214{transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{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);}
.m75_c00214{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);}
.mb4_c00214{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);}
.m8b_c00214{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);}
.m55_c00214{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);}
.mb1_c00214{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);}
.mc5_c00214{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);}
.m36_c00214{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);}
.mbb_c00214{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);}
.ma5_c00214{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.md8_c00214{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);}
.mf_c00214{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);}
.m6b_c00214{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{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);}
.ma3_c00214{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);}
.m35_c00214{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);}
.m9_c00214{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);}
.m1f_c00214{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);}
.m37_c00214{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);}
.m72_c00214{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);}
.mb6_c00214{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);}
.m2b_c00214{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);}
.m3c_c00214{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);}
.m30_c00214{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);}
.m6d_c00214{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);}
.mb3_c00214{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);}
.m67_c00214{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);}
.ma1_c00214{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);}
.m2e_c00214{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);}
.m42_c00214{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);}
.m68_c00214{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);}
.m69_c00214{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);}
.m25_c00214{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);}
.m5_c00214{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);}
.m84_c00214{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);}
.mdc_c00214{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);}
.ma8_c00214{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);}
.m15_c00214{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);}
.m3e_c00214{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);}
.mba_c00214{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00214{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);}
.m16_c00214{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);}
.m99_c00214{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);}
.m33_c00214{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);}
.m70_c00214{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);}
.mdd_c00214{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);}
.md4_c00214{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);}
.m9c_c00214{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);}
.m95_c00214{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);}
.maf_c00214{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);}
.mc1_c00214{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);}
.m74_c00214{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);}
.me4_c00214{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);}
.m53_c00214{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);}
.m45_c00214{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);}
.mcf_c00214{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);}
.m6c_c00214{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);}
.ma4_c00214{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);}
.m6_c00214{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);}
.m60_c00214{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);}
.m8f_c00214{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);}
.m3b_c00214{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);}
.me5_c00214{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_c00214{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);}
.m63_c00214{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);}
.me0_c00214{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);}
.m83_c00214{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);}
.mae_c00214{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);}
.m2a_c00214{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);}
.md3_c00214{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);}
.m89_c00214{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);}
.m8e_c00214{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);}
.m13_c00214{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);}
.mb0_c00214{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);}
.m31_c00214{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);}
.m71_c00214{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);}
.m6a_c00214{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);}
.ma2_c00214{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);}
.mc4_c00214{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);}
.m47_c00214{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);}
.md5_c00214{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);}
.m34_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);}
.m10_c00214{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);}
.m44_c00214{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);}
.m41_c00214{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);}
.mbf_c00214{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);}
.mc2_c00214{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);}
.m26_c00214{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);}
.m73_c00214{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);}
.m64_c00214{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);}
.mc3_c00214{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);}
.m6e_c00214{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);}
.mbe_c00214{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);}
.mcd_c00214{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);}
.m24_c00214{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);}
.md2_c00214{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);}
.mc9_c00214{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);}
.mab_c00214{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);}
.m8c_c00214{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);}
.m77_c00214{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);}
.m9d_c00214{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);}
.m6f_c00214{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);}
.md7_c00214{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);}
.mce_c00214{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);}
.m93_c00214{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);}
.m7f_c00214{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);}
.m4f_c00214{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);}
.m8d_c00214{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);}
.md1_c00214{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);}
.m48_c00214{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{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);}
.maa_c00214{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);}
.mad_c00214{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);}
.mbd_c00214{transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{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);}
.mb5_c00214{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);}
.m88_c00214{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);}
.m27_c00214{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);}
.m57_c00214{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);}
.m32_c00214{transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);}
.md9_c00214{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);}
.ma9_c00214{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);}
.m82_c00214{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);}
.m94_c00214{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);}
.m7d_c00214{transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{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);}
.mca_c00214{transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);}
.mde_c00214{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);}
.m7a_c00214{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.me6_c00214{transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{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);}
.mdf_c00214{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);}
.me3_c00214{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);}
.m79_c00214{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00214{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);}
.me_c00214{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);}
.mac_c00214{transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{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);}
.mc6_c00214{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);}
.me1_c00214{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);}
.m3f_c00214{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{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);}
.m39_c00214{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{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);}
.m4e_c00214{transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{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);}
.m5e_c00214{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);}
.m49_c00214{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);}
.mc7_c00214{transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);}
.mc8_c00214{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);}
.mcc_c00214{transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305320,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.305490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{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);}
.m51_c00214{transform:matrix(0.329840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329840,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339620,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344410,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.347275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347275,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.371661,0.017858,-0.011998,0.249712,0,0);-ms-transform:matrix(0.371661,0.017858,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.371661,0.017858,-0.011998,0.249712,0,0);}
.m54_c00214{transform:matrix(0.391860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391860,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00214{transform:matrix(0.392655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392655,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.418140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418140,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.426448,0.020490,-0.011998,0.249712,0,0);-ms-transform:matrix(0.426448,0.020490,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.426448,0.020490,-0.011998,0.249712,0,0);}
.me2_c00214{transform:matrix(0.463110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463110,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.466395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466395,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.529999,0.025465,-0.011998,0.249712,0,0);-ms-transform:matrix(0.529999,0.025465,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.529999,0.025465,-0.011998,0.249712,0,0);}
.md6_c00214{transform:matrix(0.538100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538100,0.000000,0.000000,0.250000,0,0);}
.m5a_c00214{transform:matrix(0.621220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621220,0.000000,0.000000,0.250000,0,0);}
.me8_c00214{transform:matrix(1.043285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.043285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.043285,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;}
.fse_c00214{font-size:49.350000px;}
.fsd_c00214{font-size:51.450000px;}
.fsb_c00214{font-size:52.500000px;}
.fsc_c00214{font-size:54.600000px;}
.fsa_c00214{font-size:63.000000px;}
.fs8_c00214{font-size:66.150000px;}
.fs6_c00214{font-size:68.250000px;}
.fs4_c00214{font-size:69.300000px;}
.fs7_c00214{font-size:70.350000px;}
.fs5_c00214{font-size:71.400000px;}
.fs1_c00214{font-size:72.450000px;}
.fs9_c00214{font-size:73.500000px;}
.fs2_c00214{font-size:75.600000px;}
.fs3_c00214{font-size:77.700000px;}
.fsf_c00214{font-size:100.800000px;}
.fs0_c00214{font-size:112.367132px;}
.y0_c00214{bottom:0.000000px;}
.y22_c00214{bottom:156.606000px;}
.y21_c00214{bottom:178.249500px;}
.y20_c00214{bottom:195.960000px;}
.y1f_c00214{bottom:214.879500px;}
.y1e_c00214{bottom:231.903000px;}
.y1d_c00214{bottom:249.757500px;}
.y1c_c00214{bottom:267.579000px;}
.y1b_c00214{bottom:285.630000px;}
.y1a_c00214{bottom:303.091500px;}
.y19_c00214{bottom:321.024000px;}
.y18_c00214{bottom:355.297500px;}
.y17_c00214{bottom:377.694000px;}
.y16_c00214{bottom:400.356000px;}
.y15_c00214{bottom:423.460500px;}
.y14_c00214{bottom:445.710000px;}
.y13_c00214{bottom:469.119000px;}
.y12_c00214{bottom:491.925000px;}
.y11_c00214{bottom:514.102500px;}
.y10_c00214{bottom:536.808000px;}
.yf_c00214{bottom:558.646500px;}
.ye_c00214{bottom:581.353500px;}
.yd_c00214{bottom:648.877500px;}
.yc_c00214{bottom:670.882500px;}
.yb_c00214{bottom:693.831000px;}
.ya_c00214{bottom:716.763000px;}
.y9_c00214{bottom:739.530000px;}
.y8_c00214{bottom:761.928000px;}
.y7_c00214{bottom:784.572000px;}
.y6_c00214{bottom:807.130500px;}
.y5_c00214{bottom:830.520000px;}
.y4_c00214{bottom:882.517944px;}
.y3_c00214{bottom:890.850576px;}
.y2_c00214{bottom:896.106072px;}
.y1_c00214{bottom:902.874000px;}
.h10_c00214{height:49.350000px;}
.hf_c00214{height:51.450000px;}
.hd_c00214{height:52.500000px;}
.he_c00214{height:54.600000px;}
.hc_c00214{height:63.000000px;}
.ha_c00214{height:66.150000px;}
.h8_c00214{height:68.250000px;}
.h6_c00214{height:69.300000px;}
.h9_c00214{height:70.350000px;}
.h7_c00214{height:71.400000px;}
.h3_c00214{height:72.450000px;}
.hb_c00214{height:73.500000px;}
.h4_c00214{height:75.600000px;}
.h5_c00214{height:77.700000px;}
.h11_c00214{height:100.800000px;}
.h2_c00214{height:112.367132px;}
.h1_c00214{height:1005.000000px;}
.h0_c00214{height:1005.150000px;}
.w1_c00214{width:713.250000px;}
.w0_c00214{width:713.550000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:35.497500px;}
.x3a_c00214{left:123.660000px;}
.x56_c00214{left:129.330000px;}
.x5_c00214{left:130.410000px;}
.x16_c00214{left:132.300000px;}
.x41_c00214{left:135.270000px;}
.x6_c00214{left:148.770000px;}
.x67_c00214{left:151.470000px;}
.x57_c00214{left:153.090000px;}
.x74_c00214{left:155.250000px;}
.x17_c00214{left:158.490000px;}
.xe_c00214{left:160.110000px;}
.x42_c00214{left:161.460000px;}
.x36_c00214{left:164.970000px;}
.x1e_c00214{left:168.750000px;}
.x6f_c00214{left:172.260000px;}
.x26_c00214{left:173.340000px;}
.x2_c00214{left:176.355002px;}
.x81_c00214{left:179.280000px;}
.x75_c00214{left:180.900000px;}
.x7f_c00214{left:185.490000px;}
.x18_c00214{left:186.570000px;}
.x43_c00214{left:192.240000px;}
.x6b_c00214{left:193.320000px;}
.xf_c00214{left:194.670000px;}
.x3b_c00214{left:197.910000px;}
.x89_c00214{left:203.310000px;}
.x33_c00214{left:205.200000px;}
.x8c_c00214{left:206.280000px;}
.x1f_c00214{left:207.900000px;}
.x76_c00214{left:209.520000px;}
.x7a_c00214{left:210.600000px;}
.x83_c00214{left:212.220000px;}
.x7e_c00214{left:213.300000px;}
.x5c_c00214{left:216.000000px;}
.x19_c00214{left:218.970000px;}
.x8a_c00214{left:220.590000px;}
.x3c_c00214{left:223.290000px;}
.x7_c00214{left:226.800000px;}
.x82_c00214{left:228.420000px;}
.x70_c00214{left:231.120000px;}
.x2e_c00214{left:233.280000px;}
.x49_c00214{left:235.710000px;}
.x80_c00214{left:237.330000px;}
.x7c_c00214{left:239.760000px;}
.x50_c00214{left:241.380000px;}
.x6c_c00214{left:243.000000px;}
.x10_c00214{left:246.240000px;}
.x34_c00214{left:248.940000px;}
.x63_c00214{left:252.450000px;}
.x7b_c00214{left:253.530000px;}
.x84_c00214{left:254.610000px;}
.x5d_c00214{left:256.500000px;}
.x58_c00214{left:259.200000px;}
.x37_c00214{left:260.550000px;}
.x51_c00214{left:262.710000px;}
.x77_c00214{left:265.410000px;}
.x20_c00214{left:267.570000px;}
.x44_c00214{left:268.650000px;}
.x8d_c00214{left:271.620000px;}
.x11_c00214{left:272.700000px;}
.x27_c00214{left:273.780000px;}
.x68_c00214{left:275.670000px;}
.x1a_c00214{left:276.750000px;}
.x7d_c00214{left:278.910000px;}
.x8b_c00214{left:281.340000px;}
.x4b_c00214{left:283.770000px;}
.x3_c00214{left:285.735012px;}
.x8_c00214{left:289.170000px;}
.x21_c00214{left:290.250000px;}
.x85_c00214{left:294.570000px;}
.x52_c00214{left:295.650000px;}
.x1b_c00214{left:297.540000px;}
.x45_c00214{left:299.160000px;}
.x35_c00214{left:301.050000px;}
.x3d_c00214{left:303.210000px;}
.x71_c00214{left:304.830000px;}
.x5e_c00214{left:308.340000px;}
.x86_c00214{left:309.960000px;}
.x78_c00214{left:311.310000px;}
.x4c_c00214{left:312.660000px;}
.x12_c00214{left:317.520000px;}
.x53_c00214{left:318.600000px;}
.x22_c00214{left:320.490000px;}
.x38_c00214{left:322.920000px;}
.x2f_c00214{left:325.080000px;}
.x1c_c00214{left:326.700000px;}
.x46_c00214{left:331.560000px;}
.x64_c00214{left:333.720000px;}
.x6d_c00214{left:337.230000px;}
.x59_c00214{left:338.580000px;}
.x8e_c00214{left:340.200000px;}
.x9_c00214{left:342.360000px;}
.x23_c00214{left:345.330000px;}
.x28_c00214{left:346.410000px;}
.x13_c00214{left:347.490000px;}
.x72_c00214{left:349.380000px;}
.x5f_c00214{left:354.510000px;}
.x87_c00214{left:356.130000px;}
.x5a_c00214{left:360.450000px;}
.x47_c00214{left:362.880000px;}
.x69_c00214{left:366.660000px;}
.x30_c00214{left:370.980000px;}
.x4a_c00214{left:372.600000px;}
.xa_c00214{left:374.760000px;}
.x14_c00214{left:375.840000px;}
.x1d_c00214{left:378.270000px;}
.x65_c00214{left:380.700000px;}
.x3e_c00214{left:384.210000px;}
.x29_c00214{left:386.100000px;}
.x15_c00214{left:390.420000px;}
.xb_c00214{left:395.820000px;}
.x24_c00214{left:398.250000px;}
.x60_c00214{left:400.410000px;}
.x54_c00214{left:402.570000px;}
.x39_c00214{left:405.810000px;}
.x4d_c00214{left:407.700000px;}
.x88_c00214{left:409.320000px;}
.x2a_c00214{left:410.400000px;}
.x3f_c00214{left:411.480000px;}
.x73_c00214{left:413.100000px;}
.xc_c00214{left:417.420000px;}
.x61_c00214{left:421.200000px;}
.x79_c00214{left:422.280000px;}
.x25_c00214{left:424.440000px;}
.x66_c00214{left:426.600000px;}
.x55_c00214{left:433.350000px;}
.x31_c00214{left:437.130000px;}
.x2b_c00214{left:445.230000px;}
.x6e_c00214{left:447.660000px;}
.x6a_c00214{left:449.550000px;}
.x40_c00214{left:450.630000px;}
.xd_c00214{left:454.140000px;}
.x4_c00214{left:459.157916px;}
.x62_c00214{left:460.350000px;}
.x5b_c00214{left:464.670000px;}
.x48_c00214{left:472.230000px;}
.x4e_c00214{left:474.660000px;}
.x2c_c00214{left:478.980000px;}
.x32_c00214{left:481.950000px;}
.x2d_c00214{left:498.690000px;}
.x4f_c00214{left:514.620000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.fse_c00214{font-size:43.866667pt;}
.fsd_c00214{font-size:45.733333pt;}
.fsb_c00214{font-size:46.666667pt;}
.fsc_c00214{font-size:48.533333pt;}
.fsa_c00214{font-size:56.000000pt;}
.fs8_c00214{font-size:58.800000pt;}
.fs6_c00214{font-size:60.666667pt;}
.fs4_c00214{font-size:61.600000pt;}
.fs7_c00214{font-size:62.533333pt;}
.fs5_c00214{font-size:63.466667pt;}
.fs1_c00214{font-size:64.400000pt;}
.fs9_c00214{font-size:65.333333pt;}
.fs2_c00214{font-size:67.200000pt;}
.fs3_c00214{font-size:69.066667pt;}
.fsf_c00214{font-size:89.600000pt;}
.fs0_c00214{font-size:99.881895pt;}
.y0_c00214{bottom:0.000000pt;}
.y22_c00214{bottom:139.205333pt;}
.y21_c00214{bottom:158.444000pt;}
.y20_c00214{bottom:174.186667pt;}
.y1f_c00214{bottom:191.004000pt;}
.y1e_c00214{bottom:206.136000pt;}
.y1d_c00214{bottom:222.006667pt;}
.y1c_c00214{bottom:237.848000pt;}
.y1b_c00214{bottom:253.893333pt;}
.y1a_c00214{bottom:269.414667pt;}
.y19_c00214{bottom:285.354667pt;}
.y18_c00214{bottom:315.820000pt;}
.y17_c00214{bottom:335.728000pt;}
.y16_c00214{bottom:355.872000pt;}
.y15_c00214{bottom:376.409333pt;}
.y14_c00214{bottom:396.186667pt;}
.y13_c00214{bottom:416.994667pt;}
.y12_c00214{bottom:437.266667pt;}
.y11_c00214{bottom:456.980000pt;}
.y10_c00214{bottom:477.162667pt;}
.yf_c00214{bottom:496.574667pt;}
.ye_c00214{bottom:516.758667pt;}
.yd_c00214{bottom:576.780000pt;}
.yc_c00214{bottom:596.340000pt;}
.yb_c00214{bottom:616.738667pt;}
.ya_c00214{bottom:637.122667pt;}
.y9_c00214{bottom:657.360000pt;}
.y8_c00214{bottom:677.269333pt;}
.y7_c00214{bottom:697.397333pt;}
.y6_c00214{bottom:717.449333pt;}
.y5_c00214{bottom:738.240000pt;}
.y4_c00214{bottom:784.460395pt;}
.y3_c00214{bottom:791.867179pt;}
.y2_c00214{bottom:796.538731pt;}
.y1_c00214{bottom:802.554667pt;}
.h10_c00214{height:43.866667pt;}
.hf_c00214{height:45.733333pt;}
.hd_c00214{height:46.666667pt;}
.he_c00214{height:48.533333pt;}
.hc_c00214{height:56.000000pt;}
.ha_c00214{height:58.800000pt;}
.h8_c00214{height:60.666667pt;}
.h6_c00214{height:61.600000pt;}
.h9_c00214{height:62.533333pt;}
.h7_c00214{height:63.466667pt;}
.h3_c00214{height:64.400000pt;}
.hb_c00214{height:65.333333pt;}
.h4_c00214{height:67.200000pt;}
.h5_c00214{height:69.066667pt;}
.h11_c00214{height:89.600000pt;}
.h2_c00214{height:99.881895pt;}
.h1_c00214{height:893.333333pt;}
.h0_c00214{height:893.466667pt;}
.w1_c00214{width:634.000000pt;}
.w0_c00214{width:634.266667pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:31.553333pt;}
.x3a_c00214{left:109.920000pt;}
.x56_c00214{left:114.960000pt;}
.x5_c00214{left:115.920000pt;}
.x16_c00214{left:117.600000pt;}
.x41_c00214{left:120.240000pt;}
.x6_c00214{left:132.240000pt;}
.x67_c00214{left:134.640000pt;}
.x57_c00214{left:136.080000pt;}
.x74_c00214{left:138.000000pt;}
.x17_c00214{left:140.880000pt;}
.xe_c00214{left:142.320000pt;}
.x42_c00214{left:143.520000pt;}
.x36_c00214{left:146.640000pt;}
.x1e_c00214{left:150.000000pt;}
.x6f_c00214{left:153.120000pt;}
.x26_c00214{left:154.080000pt;}
.x2_c00214{left:156.760001pt;}
.x81_c00214{left:159.360000pt;}
.x75_c00214{left:160.800000pt;}
.x7f_c00214{left:164.880000pt;}
.x18_c00214{left:165.840000pt;}
.x43_c00214{left:170.880000pt;}
.x6b_c00214{left:171.840000pt;}
.xf_c00214{left:173.040000pt;}
.x3b_c00214{left:175.920000pt;}
.x89_c00214{left:180.720000pt;}
.x33_c00214{left:182.400000pt;}
.x8c_c00214{left:183.360000pt;}
.x1f_c00214{left:184.800000pt;}
.x76_c00214{left:186.240000pt;}
.x7a_c00214{left:187.200000pt;}
.x83_c00214{left:188.640000pt;}
.x7e_c00214{left:189.600000pt;}
.x5c_c00214{left:192.000000pt;}
.x19_c00214{left:194.640000pt;}
.x8a_c00214{left:196.080000pt;}
.x3c_c00214{left:198.480000pt;}
.x7_c00214{left:201.600000pt;}
.x82_c00214{left:203.040000pt;}
.x70_c00214{left:205.440000pt;}
.x2e_c00214{left:207.360000pt;}
.x49_c00214{left:209.520000pt;}
.x80_c00214{left:210.960000pt;}
.x7c_c00214{left:213.120000pt;}
.x50_c00214{left:214.560000pt;}
.x6c_c00214{left:216.000000pt;}
.x10_c00214{left:218.880000pt;}
.x34_c00214{left:221.280000pt;}
.x63_c00214{left:224.400000pt;}
.x7b_c00214{left:225.360000pt;}
.x84_c00214{left:226.320000pt;}
.x5d_c00214{left:228.000000pt;}
.x58_c00214{left:230.400000pt;}
.x37_c00214{left:231.600000pt;}
.x51_c00214{left:233.520000pt;}
.x77_c00214{left:235.920000pt;}
.x20_c00214{left:237.840000pt;}
.x44_c00214{left:238.800000pt;}
.x8d_c00214{left:241.440000pt;}
.x11_c00214{left:242.400000pt;}
.x27_c00214{left:243.360000pt;}
.x68_c00214{left:245.040000pt;}
.x1a_c00214{left:246.000000pt;}
.x7d_c00214{left:247.920000pt;}
.x8b_c00214{left:250.080000pt;}
.x4b_c00214{left:252.240000pt;}
.x3_c00214{left:253.986677pt;}
.x8_c00214{left:257.040000pt;}
.x21_c00214{left:258.000000pt;}
.x85_c00214{left:261.840000pt;}
.x52_c00214{left:262.800000pt;}
.x1b_c00214{left:264.480000pt;}
.x45_c00214{left:265.920000pt;}
.x35_c00214{left:267.600000pt;}
.x3d_c00214{left:269.520000pt;}
.x71_c00214{left:270.960000pt;}
.x5e_c00214{left:274.080000pt;}
.x86_c00214{left:275.520000pt;}
.x78_c00214{left:276.720000pt;}
.x4c_c00214{left:277.920000pt;}
.x12_c00214{left:282.240000pt;}
.x53_c00214{left:283.200000pt;}
.x22_c00214{left:284.880000pt;}
.x38_c00214{left:287.040000pt;}
.x2f_c00214{left:288.960000pt;}
.x1c_c00214{left:290.400000pt;}
.x46_c00214{left:294.720000pt;}
.x64_c00214{left:296.640000pt;}
.x6d_c00214{left:299.760000pt;}
.x59_c00214{left:300.960000pt;}
.x8e_c00214{left:302.400000pt;}
.x9_c00214{left:304.320000pt;}
.x23_c00214{left:306.960000pt;}
.x28_c00214{left:307.920000pt;}
.x13_c00214{left:308.880000pt;}
.x72_c00214{left:310.560000pt;}
.x5f_c00214{left:315.120000pt;}
.x87_c00214{left:316.560000pt;}
.x5a_c00214{left:320.400000pt;}
.x47_c00214{left:322.560000pt;}
.x69_c00214{left:325.920000pt;}
.x30_c00214{left:329.760000pt;}
.x4a_c00214{left:331.200000pt;}
.xa_c00214{left:333.120000pt;}
.x14_c00214{left:334.080000pt;}
.x1d_c00214{left:336.240000pt;}
.x65_c00214{left:338.400000pt;}
.x3e_c00214{left:341.520000pt;}
.x29_c00214{left:343.200000pt;}
.x15_c00214{left:347.040000pt;}
.xb_c00214{left:351.840000pt;}
.x24_c00214{left:354.000000pt;}
.x60_c00214{left:355.920000pt;}
.x54_c00214{left:357.840000pt;}
.x39_c00214{left:360.720000pt;}
.x4d_c00214{left:362.400000pt;}
.x88_c00214{left:363.840000pt;}
.x2a_c00214{left:364.800000pt;}
.x3f_c00214{left:365.760000pt;}
.x73_c00214{left:367.200000pt;}
.xc_c00214{left:371.040000pt;}
.x61_c00214{left:374.400000pt;}
.x79_c00214{left:375.360000pt;}
.x25_c00214{left:377.280000pt;}
.x66_c00214{left:379.200000pt;}
.x55_c00214{left:385.200000pt;}
.x31_c00214{left:388.560000pt;}
.x2b_c00214{left:395.760000pt;}
.x6e_c00214{left:397.920000pt;}
.x6a_c00214{left:399.600000pt;}
.x40_c00214{left:400.560000pt;}
.xd_c00214{left:403.680000pt;}
.x4_c00214{left:408.140369pt;}
.x62_c00214{left:409.200000pt;}
.x5b_c00214{left:413.040000pt;}
.x48_c00214{left:419.760000pt;}
.x4e_c00214{left:421.920000pt;}
.x2c_c00214{left:425.760000pt;}
.x32_c00214{left:428.400000pt;}
.x2d_c00214{left:443.280000pt;}
.x4f_c00214{left:457.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m71_c00215{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m73_c00215{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);}
.m66_c00215{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);}
.mc1_c00215{transform:matrix(0.029910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029910,0.000000,0.000000,0.250000,0,0);}
.mc0_c00215{transform:matrix(0.034200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034200,0.000000,0.000000,0.250000,0,0);}
.mc8_c00215{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.mde_c00215{transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{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);}
.m19_c00215{transform:matrix(0.119385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119385,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{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);}
.m5a_c00215{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);}
.mb4_c00215{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00215{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);}
.m16_c00215{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);}
.ma_c00215{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);}
.m29_c00215{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);}
.m75_c00215{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);}
.mb6_c00215{transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);}
.mce_c00215{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);}
.mb5_c00215{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);}
.ma9_c00215{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);}
.m3c_c00215{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);}
.me_c00215{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);}
.m3d_c00215{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);}
.md4_c00215{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);}
.m5d_c00215{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);}
.m9d_c00215{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);}
.m40_c00215{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);}
.mcd_c00215{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);}
.mc_c00215{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);}
.m51_c00215{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);}
.m6f_c00215{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_c00215{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);}
.m79_c00215{transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);}
.mb0_c00215{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);}
.m4e_c00215{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);}
.m64_c00215{transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{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);}
.md7_c00215{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);}
.md1_c00215{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);}
.m21_c00215{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);}
.mb9_c00215{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);}
.m11_c00215{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);}
.mcf_c00215{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);}
.md8_c00215{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);}
.mb7_c00215{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);}
.m63_c00215{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);}
.m6_c00215{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);}
.m96_c00215{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);}
.m33_c00215{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);}
.m61_c00215{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);}
.m9a_c00215{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);}
.m62_c00215{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);}
.m5e_c00215{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);}
.m25_c00215{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);}
.m6d_c00215{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);}
.m68_c00215{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);}
.m35_c00215{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);}
.mbc_c00215{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);}
.m32_c00215{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);}
.m39_c00215{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);}
.m28_c00215{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);}
.mdd_c00215{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);}
.m2e_c00215{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);}
.m22_c00215{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);}
.m5b_c00215{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);}
.mbf_c00215{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);}
.md6_c00215{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);}
.mb3_c00215{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);}
.m77_c00215{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);}
.m5f_c00215{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_c00215{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);}
.mac_c00215{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);}
.mbe_c00215{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);}
.m49_c00215{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);}
.m94_c00215{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);}
.md0_c00215{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);}
.m98_c00215{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);}
.m31_c00215{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_c00215{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);}
.me4_c00215{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);}
.mb8_c00215{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);}
.mdb_c00215{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);}
.mad_c00215{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);}
.m4f_c00215{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);}
.mba_c00215{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);}
.ma5_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);}
.m55_c00215{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);}
.m1_c00215{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);}
.m17_c00215{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);}
.me1_c00215{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);}
.m2d_c00215{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);}
.mca_c00215{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);}
.mbb_c00215{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);}
.mae_c00215{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);}
.mdc_c00215{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);}
.mf_c00215{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);}
.m72_c00215{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);}
.m15_c00215{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);}
.m57_c00215{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);}
.m58_c00215{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);}
.me0_c00215{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);}
.m5c_c00215{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);}
.m74_c00215{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);}
.maa_c00215{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);}
.m87_c00215{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);}
.m9_c00215{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.mcb_c00215{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m6a_c00215{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);}
.m1f_c00215{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);}
.m6b_c00215{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);}
.md3_c00215{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);}
.m4_c00215{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);}
.m67_c00215{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);}
.m1a_c00215{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);}
.mc2_c00215{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);}
.m9b_c00215{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);}
.mb2_c00215{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);}
.md5_c00215{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);}
.m2f_c00215{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);}
.m8_c00215{transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{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);}
.mda_c00215{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);}
.m5_c00215{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);}
.m2b_c00215{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.m89_c00215{transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);}
.mdf_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);}
.m45_c00215{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);}
.m2c_c00215{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);}
.mc9_c00215{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);}
.m60_c00215{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);}
.mbd_c00215{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);}
.md2_c00215{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);}
.m3f_c00215{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.m92_c00215{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{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);}
.m53_c00215{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);}
.m44_c00215{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);}
.me2_c00215{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);}
.m86_c00215{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);}
.m56_c00215{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m59_c00215{transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);}
.ma0_c00215{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m82_c00215{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m95_c00215{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);}
.m10_c00215{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m93_c00215{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m69_c00215{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);}
.m81_c00215{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00215{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00215{transform:matrix(0.255170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255170,0.000000,0.000000,0.250000,0,0);}
.ma1_c00215{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);}
.md_c00215{transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{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);}
.m24_c00215{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);}
.m54_c00215{transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);}
.mb1_c00215{transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);}
.m78_c00215{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);}
.m4b_c00215{transform:matrix(0.259595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259595,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{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);}
.m52_c00215{transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);}
.m50_c00215{transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);}
.md9_c00215{transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262215,0.000000,0.000000,0.250000,0,0);}
.m6e_c00215{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);}
.m13_c00215{transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);}
.mab_c00215{transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265720,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.269045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269045,0.000000,0.000000,0.250000,0,0);}
.m65_c00215{transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271700,0.000000,0.000000,0.250000,0,0);}
.m97_c00215{transform:matrix(0.274415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{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);}
.m1c_c00215{transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289295,0.000000,0.000000,0.250000,0,0);}
.mc6_c00215{transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295790,0.000000,0.000000,0.250000,0,0);}
.m70_c00215{transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);}
.ma8_c00215{transform:matrix(0.302190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302190,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304590,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);}
.m6c_c00215{transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313060,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.315280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315280,0.000000,0.000000,0.250000,0,0);}
.m9e_c00215{transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321765,0.000000,0.000000,0.250000,0,0);}
.me3_c00215{transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);}
.ma3_c00215{transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);}
.mc4_c00215{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);}
.m7e_c00215{transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329730,0.000000,0.000000,0.250000,0,0);}
.m9f_c00215{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{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);}
.ma2_c00215{transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335075,0.000000,0.000000,0.250000,0,0);}
.m83_c00215{transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338060,0.000000,0.000000,0.250000,0,0);}
.m76_c00215{transform:matrix(0.340360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340360,0.000000,0.000000,0.250000,0,0);}
.mc7_c00215{transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.343375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343375,0.000000,0.000000,0.250000,0,0);}
.m99_c00215{transform:matrix(0.347475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347475,0.000000,0.000000,0.250000,0,0);}
.m9c_c00215{transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353365,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365085,0.000000,0.000000,0.250000,0,0);}
.m7b_c00215{transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00215{transform:matrix(0.377915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377915,0.000000,0.000000,0.250000,0,0);}
.maf_c00215{transform:matrix(0.380535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380535,0.000000,0.000000,0.250000,0,0);}
.m85_c00215{transform:matrix(0.385470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00215{transform:matrix(0.387510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387510,0.000000,0.000000,0.250000,0,0);}
.m8f_c00215{transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);}
.m91_c00215{transform:matrix(0.396855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00215{transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);}
.m84_c00215{transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);}
.m88_c00215{transform:matrix(0.428830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428830,0.000000,0.000000,0.250000,0,0);}
.m80_c00215{transform:matrix(0.442910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442910,0.000000,0.000000,0.250000,0,0);}
.ma4_c00215{transform:matrix(0.453105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453105,0.000000,0.000000,0.250000,0,0);}
.m8e_c00215{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.469280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469280,0.000000,0.000000,0.250000,0,0);}
.m90_c00215{transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);}
.m4a_c00215{transform:matrix(0.476950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00215{transform:matrix(0.493180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493180,0.000000,0.000000,0.250000,0,0);}
.mc3_c00215{transform:matrix(0.496935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496935,0.000000,0.000000,0.250000,0,0);}
.ma6_c00215{transform:matrix(0.507495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507495,0.000000,0.000000,0.250000,0,0);}
.m8b_c00215{transform:matrix(0.522340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522340,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.528880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528880,0.000000,0.000000,0.250000,0,0);}
.m7a_c00215{transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);}
.mc5_c00215{transform:matrix(0.654040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654040,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.874290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874290,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;}
.fsb_c00215{font-size:22.050000px;}
.fsa_c00215{font-size:32.550000px;}
.fsd_c00215{font-size:49.350000px;}
.fsc_c00215{font-size:54.600000px;}
.fs2_c00215{font-size:63.000000px;}
.fs4_c00215{font-size:66.150000px;}
.fs1_c00215{font-size:68.250000px;}
.fs6_c00215{font-size:69.300000px;}
.fs0_c00215{font-size:70.350000px;}
.fs3_c00215{font-size:71.400000px;}
.fs7_c00215{font-size:72.450000px;}
.fs5_c00215{font-size:88.200000px;}
.fs9_c00215{font-size:89.250000px;}
.fs8_c00215{font-size:90.300000px;}
.y0_c00215{bottom:0.000000px;}
.y1c_c00215{bottom:173.518500px;}
.y1b_c00215{bottom:191.002500px;}
.y1a_c00215{bottom:215.866500px;}
.y19_c00215{bottom:283.437000px;}
.y18_c00215{bottom:291.174000px;}
.y17_c00215{bottom:314.311500px;}
.y16_c00215{bottom:337.692000px;}
.y15_c00215{bottom:360.109500px;}
.y14_c00215{bottom:383.049000px;}
.y13_c00215{bottom:405.553500px;}
.y12_c00215{bottom:427.941000px;}
.y11_c00215{bottom:450.090000px;}
.y10_c00215{bottom:477.804000px;}
.yf_c00215{bottom:505.980000px;}
.ye_c00215{bottom:528.571500px;}
.yd_c00215{bottom:551.400000px;}
.yc_c00215{bottom:574.020000px;}
.yb_c00215{bottom:597.150000px;}
.ya_c00215{bottom:620.008500px;}
.y9_c00215{bottom:642.120000px;}
.y8_c00215{bottom:665.223000px;}
.y7_c00215{bottom:687.813000px;}
.y6_c00215{bottom:714.898500px;}
.y5_c00215{bottom:742.564500px;}
.y4_c00215{bottom:765.801000px;}
.y3_c00215{bottom:789.387000px;}
.y2_c00215{bottom:812.083500px;}
.y1_c00215{bottom:835.110000px;}
.hd_c00215{height:22.050000px;}
.hc_c00215{height:32.550000px;}
.hf_c00215{height:49.350000px;}
.he_c00215{height:54.600000px;}
.h4_c00215{height:63.000000px;}
.h6_c00215{height:66.150000px;}
.h3_c00215{height:68.250000px;}
.h8_c00215{height:69.300000px;}
.h2_c00215{height:70.350000px;}
.h5_c00215{height:71.400000px;}
.h9_c00215{height:72.450000px;}
.h7_c00215{height:88.200000px;}
.hb_c00215{height:89.250000px;}
.ha_c00215{height:90.300000px;}
.h0_c00215{height:1008.450000px;}
.h1_c00215{height:1008.750000px;}
.w0_c00215{width:678.450000px;}
.w1_c00215{width:678.750000px;}
.x0_c00215{left:0.000000px;}
.x8a_c00215{left:136.350000px;}
.x5a_c00215{left:139.320000px;}
.x29_c00215{left:149.580000px;}
.x48_c00215{left:154.710000px;}
.x3f_c00215{left:160.650000px;}
.x1_c00215{left:162.270000px;}
.xc_c00215{left:165.780000px;}
.x1e_c00215{left:166.860000px;}
.x4b_c00215{left:167.940000px;}
.x6b_c00215{left:169.830000px;}
.x7b_c00215{left:170.910000px;}
.x74_c00215{left:173.340000px;}
.x7c_c00215{left:191.700000px;}
.x40_c00215{left:194.670000px;}
.x2a_c00215{left:195.750000px;}
.x1f_c00215{left:199.530000px;}
.x16_c00215{left:201.150000px;}
.xd_c00215{left:205.200000px;}
.x84_c00215{left:206.280000px;}
.x39_c00215{left:207.360000px;}
.x2_c00215{left:209.790000px;}
.x4c_c00215{left:211.140000px;}
.x35_c00215{left:214.380000px;}
.x7d_c00215{left:223.290000px;}
.x17_c00215{left:224.640000px;}
.x20_c00215{left:227.880000px;}
.x7e_c00215{left:232.200000px;}
.x8b_c00215{left:234.630000px;}
.x3a_c00215{left:236.250000px;}
.xe_c00215{left:237.600000px;}
.x5f_c00215{left:242.460000px;}
.x75_c00215{left:247.590000px;}
.x2b_c00215{left:249.480000px;}
.x4d_c00215{left:251.370000px;}
.x85_c00215{left:252.450000px;}
.x41_c00215{left:257.850000px;}
.x3_c00215{left:260.010000px;}
.x4_c00215{left:261.090000px;}
.x5e_c00215{left:262.440000px;}
.x18_c00215{left:264.330000px;}
.x21_c00215{left:266.760000px;}
.x31_c00215{left:270.270000px;}
.x4e_c00215{left:272.430000px;}
.x76_c00215{left:274.050000px;}
.x53_c00215{left:275.670000px;}
.x6c_c00215{left:277.020000px;}
.xf_c00215{left:278.640000px;}
.x5b_c00215{left:281.610000px;}
.x70_c00215{left:284.040000px;}
.x3b_c00215{left:285.930000px;}
.x61_c00215{left:287.010000px;}
.x2c_c00215{left:289.980000px;}
.x42_c00215{left:292.950000px;}
.x5_c00215{left:297.540000px;}
.x66_c00215{left:298.620000px;}
.x32_c00215{left:300.240000px;}
.x22_c00215{left:302.130000px;}
.x3c_c00215{left:303.750000px;}
.x60_c00215{left:311.580000px;}
.x6_c00215{left:318.600000px;}
.x54_c00215{left:320.490000px;}
.x10_c00215{left:321.570000px;}
.x33_c00215{left:322.650000px;}
.x19_c00215{left:324.270000px;}
.x1a_c00215{left:327.780000px;}
.x23_c00215{left:332.100000px;}
.x3d_c00215{left:337.500000px;}
.x7f_c00215{left:338.850000px;}
.x77_c00215{left:342.900000px;}
.x36_c00215{left:344.790000px;}
.x71_c00215{left:346.680000px;}
.x2d_c00215{left:348.840000px;}
.x67_c00215{left:351.270000px;}
.x79_c00215{left:353.970000px;}
.x7_c00215{left:355.050000px;}
.x6d_c00215{left:356.130000px;}
.x1b_c00215{left:358.290000px;}
.x49_c00215{left:360.720000px;}
.x4f_c00215{left:362.070000px;}
.x37_c00215{left:364.770000px;}
.x43_c00215{left:365.850000px;}
.x68_c00215{left:369.900000px;}
.x86_c00215{left:371.250000px;}
.x78_c00215{left:372.330000px;}
.x11_c00215{left:373.410000px;}
.x80_c00215{left:378.000000px;}
.x8_c00215{left:384.750000px;}
.x87_c00215{left:386.100000px;}
.x24_c00215{left:388.260000px;}
.x6e_c00215{left:390.420000px;}
.x69_c00215{left:395.280000px;}
.x55_c00215{left:396.630000px;}
.x7a_c00215{left:399.600000px;}
.x5c_c00215{left:403.920000px;}
.x34_c00215{left:405.000000px;}
.x9_c00215{left:407.970000px;}
.x8c_c00215{left:410.400000px;}
.x2e_c00215{left:411.480000px;}
.x56_c00215{left:414.720000px;}
.x12_c00215{left:416.070000px;}
.x50_c00215{left:421.200000px;}
.x25_c00215{left:425.250000px;}
.x6a_c00215{left:428.760000px;}
.x1c_c00215{left:430.920000px;}
.x62_c00215{left:433.080000px;}
.x26_c00215{left:434.430000px;}
.x2f_c00215{left:438.480000px;}
.x57_c00215{left:440.370000px;}
.x8d_c00215{left:441.450000px;}
.x44_c00215{left:444.420000px;}
.x82_c00215{left:446.040000px;}
.xa_c00215{left:447.390000px;}
.x51_c00215{left:452.250000px;}
.x38_c00215{left:453.600000px;}
.x81_c00215{left:460.080000px;}
.x6f_c00215{left:462.240000px;}
.x13_c00215{left:464.400000px;}
.x63_c00215{left:465.480000px;}
.x1d_c00215{left:467.640000px;}
.x4a_c00215{left:470.610000px;}
.x72_c00215{left:471.960000px;}
.x30_c00215{left:474.390000px;}
.x3e_c00215{left:478.170000px;}
.xb_c00215{left:486.540000px;}
.x45_c00215{left:488.970000px;}
.x14_c00215{left:490.590000px;}
.x27_c00215{left:494.640000px;}
.x83_c00215{left:495.720000px;}
.x58_c00215{left:496.800000px;}
.x5d_c00215{left:514.350000px;}
.x46_c00215{left:517.860000px;}
.x64_c00215{left:519.480000px;}
.x73_c00215{left:520.560000px;}
.x52_c00215{left:528.120000px;}
.x88_c00215{left:534.870000px;}
.x28_c00215{left:539.190000px;}
.x47_c00215{left:542.700000px;}
.x15_c00215{left:545.940000px;}
.x65_c00215{left:560.520000px;}
.x59_c00215{left:567.270000px;}
.x8e_c00215{left:569.160000px;}
.x8f_c00215{left:591.840000px;}
.x89_c00215{left:599.130000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:0.000000pt;}
.fsb_c00215{font-size:19.600000pt;}
.fsa_c00215{font-size:28.933333pt;}
.fsd_c00215{font-size:43.866667pt;}
.fsc_c00215{font-size:48.533333pt;}
.fs2_c00215{font-size:56.000000pt;}
.fs4_c00215{font-size:58.800000pt;}
.fs1_c00215{font-size:60.666667pt;}
.fs6_c00215{font-size:61.600000pt;}
.fs0_c00215{font-size:62.533333pt;}
.fs3_c00215{font-size:63.466667pt;}
.fs7_c00215{font-size:64.400000pt;}
.fs5_c00215{font-size:78.400000pt;}
.fs9_c00215{font-size:79.333333pt;}
.fs8_c00215{font-size:80.266667pt;}
.y0_c00215{bottom:0.000000pt;}
.y1c_c00215{bottom:154.238667pt;}
.y1b_c00215{bottom:169.780000pt;}
.y1a_c00215{bottom:191.881333pt;}
.y19_c00215{bottom:251.944000pt;}
.y18_c00215{bottom:258.821333pt;}
.y17_c00215{bottom:279.388000pt;}
.y16_c00215{bottom:300.170667pt;}
.y15_c00215{bottom:320.097333pt;}
.y14_c00215{bottom:340.488000pt;}
.y13_c00215{bottom:360.492000pt;}
.y12_c00215{bottom:380.392000pt;}
.y11_c00215{bottom:400.080000pt;}
.y10_c00215{bottom:424.714667pt;}
.yf_c00215{bottom:449.760000pt;}
.ye_c00215{bottom:469.841333pt;}
.yd_c00215{bottom:490.133333pt;}
.yc_c00215{bottom:510.240000pt;}
.yb_c00215{bottom:530.800000pt;}
.ya_c00215{bottom:551.118667pt;}
.y9_c00215{bottom:570.773333pt;}
.y8_c00215{bottom:591.309333pt;}
.y7_c00215{bottom:611.389333pt;}
.y6_c00215{bottom:635.465333pt;}
.y5_c00215{bottom:660.057333pt;}
.y4_c00215{bottom:680.712000pt;}
.y3_c00215{bottom:701.677333pt;}
.y2_c00215{bottom:721.852000pt;}
.y1_c00215{bottom:742.320000pt;}
.hd_c00215{height:19.600000pt;}
.hc_c00215{height:28.933333pt;}
.hf_c00215{height:43.866667pt;}
.he_c00215{height:48.533333pt;}
.h4_c00215{height:56.000000pt;}
.h6_c00215{height:58.800000pt;}
.h3_c00215{height:60.666667pt;}
.h8_c00215{height:61.600000pt;}
.h2_c00215{height:62.533333pt;}
.h5_c00215{height:63.466667pt;}
.h9_c00215{height:64.400000pt;}
.h7_c00215{height:78.400000pt;}
.hb_c00215{height:79.333333pt;}
.ha_c00215{height:80.266667pt;}
.h0_c00215{height:896.400000pt;}
.h1_c00215{height:896.666667pt;}
.w0_c00215{width:603.066667pt;}
.w1_c00215{width:603.333333pt;}
.x0_c00215{left:0.000000pt;}
.x8a_c00215{left:121.200000pt;}
.x5a_c00215{left:123.840000pt;}
.x29_c00215{left:132.960000pt;}
.x48_c00215{left:137.520000pt;}
.x3f_c00215{left:142.800000pt;}
.x1_c00215{left:144.240000pt;}
.xc_c00215{left:147.360000pt;}
.x1e_c00215{left:148.320000pt;}
.x4b_c00215{left:149.280000pt;}
.x6b_c00215{left:150.960000pt;}
.x7b_c00215{left:151.920000pt;}
.x74_c00215{left:154.080000pt;}
.x7c_c00215{left:170.400000pt;}
.x40_c00215{left:173.040000pt;}
.x2a_c00215{left:174.000000pt;}
.x1f_c00215{left:177.360000pt;}
.x16_c00215{left:178.800000pt;}
.xd_c00215{left:182.400000pt;}
.x84_c00215{left:183.360000pt;}
.x39_c00215{left:184.320000pt;}
.x2_c00215{left:186.480000pt;}
.x4c_c00215{left:187.680000pt;}
.x35_c00215{left:190.560000pt;}
.x7d_c00215{left:198.480000pt;}
.x17_c00215{left:199.680000pt;}
.x20_c00215{left:202.560000pt;}
.x7e_c00215{left:206.400000pt;}
.x8b_c00215{left:208.560000pt;}
.x3a_c00215{left:210.000000pt;}
.xe_c00215{left:211.200000pt;}
.x5f_c00215{left:215.520000pt;}
.x75_c00215{left:220.080000pt;}
.x2b_c00215{left:221.760000pt;}
.x4d_c00215{left:223.440000pt;}
.x85_c00215{left:224.400000pt;}
.x41_c00215{left:229.200000pt;}
.x3_c00215{left:231.120000pt;}
.x4_c00215{left:232.080000pt;}
.x5e_c00215{left:233.280000pt;}
.x18_c00215{left:234.960000pt;}
.x21_c00215{left:237.120000pt;}
.x31_c00215{left:240.240000pt;}
.x4e_c00215{left:242.160000pt;}
.x76_c00215{left:243.600000pt;}
.x53_c00215{left:245.040000pt;}
.x6c_c00215{left:246.240000pt;}
.xf_c00215{left:247.680000pt;}
.x5b_c00215{left:250.320000pt;}
.x70_c00215{left:252.480000pt;}
.x3b_c00215{left:254.160000pt;}
.x61_c00215{left:255.120000pt;}
.x2c_c00215{left:257.760000pt;}
.x42_c00215{left:260.400000pt;}
.x5_c00215{left:264.480000pt;}
.x66_c00215{left:265.440000pt;}
.x32_c00215{left:266.880000pt;}
.x22_c00215{left:268.560000pt;}
.x3c_c00215{left:270.000000pt;}
.x60_c00215{left:276.960000pt;}
.x6_c00215{left:283.200000pt;}
.x54_c00215{left:284.880000pt;}
.x10_c00215{left:285.840000pt;}
.x33_c00215{left:286.800000pt;}
.x19_c00215{left:288.240000pt;}
.x1a_c00215{left:291.360000pt;}
.x23_c00215{left:295.200000pt;}
.x3d_c00215{left:300.000000pt;}
.x7f_c00215{left:301.200000pt;}
.x77_c00215{left:304.800000pt;}
.x36_c00215{left:306.480000pt;}
.x71_c00215{left:308.160000pt;}
.x2d_c00215{left:310.080000pt;}
.x67_c00215{left:312.240000pt;}
.x79_c00215{left:314.640000pt;}
.x7_c00215{left:315.600000pt;}
.x6d_c00215{left:316.560000pt;}
.x1b_c00215{left:318.480000pt;}
.x49_c00215{left:320.640000pt;}
.x4f_c00215{left:321.840000pt;}
.x37_c00215{left:324.240000pt;}
.x43_c00215{left:325.200000pt;}
.x68_c00215{left:328.800000pt;}
.x86_c00215{left:330.000000pt;}
.x78_c00215{left:330.960000pt;}
.x11_c00215{left:331.920000pt;}
.x80_c00215{left:336.000000pt;}
.x8_c00215{left:342.000000pt;}
.x87_c00215{left:343.200000pt;}
.x24_c00215{left:345.120000pt;}
.x6e_c00215{left:347.040000pt;}
.x69_c00215{left:351.360000pt;}
.x55_c00215{left:352.560000pt;}
.x7a_c00215{left:355.200000pt;}
.x5c_c00215{left:359.040000pt;}
.x34_c00215{left:360.000000pt;}
.x9_c00215{left:362.640000pt;}
.x8c_c00215{left:364.800000pt;}
.x2e_c00215{left:365.760000pt;}
.x56_c00215{left:368.640000pt;}
.x12_c00215{left:369.840000pt;}
.x50_c00215{left:374.400000pt;}
.x25_c00215{left:378.000000pt;}
.x6a_c00215{left:381.120000pt;}
.x1c_c00215{left:383.040000pt;}
.x62_c00215{left:384.960000pt;}
.x26_c00215{left:386.160000pt;}
.x2f_c00215{left:389.760000pt;}
.x57_c00215{left:391.440000pt;}
.x8d_c00215{left:392.400000pt;}
.x44_c00215{left:395.040000pt;}
.x82_c00215{left:396.480000pt;}
.xa_c00215{left:397.680000pt;}
.x51_c00215{left:402.000000pt;}
.x38_c00215{left:403.200000pt;}
.x81_c00215{left:408.960000pt;}
.x6f_c00215{left:410.880000pt;}
.x13_c00215{left:412.800000pt;}
.x63_c00215{left:413.760000pt;}
.x1d_c00215{left:415.680000pt;}
.x4a_c00215{left:418.320000pt;}
.x72_c00215{left:419.520000pt;}
.x30_c00215{left:421.680000pt;}
.x3e_c00215{left:425.040000pt;}
.xb_c00215{left:432.480000pt;}
.x45_c00215{left:434.640000pt;}
.x14_c00215{left:436.080000pt;}
.x27_c00215{left:439.680000pt;}
.x83_c00215{left:440.640000pt;}
.x58_c00215{left:441.600000pt;}
.x5d_c00215{left:457.200000pt;}
.x46_c00215{left:460.320000pt;}
.x64_c00215{left:461.760000pt;}
.x73_c00215{left:462.720000pt;}
.x52_c00215{left:469.440000pt;}
.x88_c00215{left:475.440000pt;}
.x28_c00215{left:479.280000pt;}
.x47_c00215{left:482.400000pt;}
.x15_c00215{left:485.280000pt;}
.x65_c00215{left:498.240000pt;}
.x59_c00215{left:504.240000pt;}
.x8e_c00215{left:505.920000pt;}
.x8f_c00215{left:526.080000pt;}
.x89_c00215{left:532.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_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_2f6c0d3825a5d54c0b922384.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;}
.m30_c00216{transform:matrix(0.010693,-0.000225,0.005249,0.249945,0,0);-ms-transform:matrix(0.010693,-0.000225,0.005249,0.249945,0,0);-webkit-transform:matrix(0.010693,-0.000225,0.005249,0.249945,0,0);}
.m22_c00216{transform:matrix(0.011187,-0.000246,0.005499,0.249940,0,0);-ms-transform:matrix(0.011187,-0.000246,0.005499,0.249940,0,0);-webkit-transform:matrix(0.011187,-0.000246,0.005499,0.249940,0,0);}
.m6a_c00216{transform:matrix(0.011614,-0.000186,0.003999,0.249968,0,0);-ms-transform:matrix(0.011614,-0.000186,0.003999,0.249968,0,0);-webkit-transform:matrix(0.011614,-0.000186,0.003999,0.249968,0,0);}
.mf3_c00216{transform:matrix(0.018544,-0.000148,0.002000,0.249992,0,0);-ms-transform:matrix(0.018544,-0.000148,0.002000,0.249992,0,0);-webkit-transform:matrix(0.018544,-0.000148,0.002000,0.249992,0,0);}
.maa_c00216{transform:matrix(0.043269,-0.000736,0.004249,0.249964,0,0);-ms-transform:matrix(0.043269,-0.000736,0.004249,0.249964,0,0);-webkit-transform:matrix(0.043269,-0.000736,0.004249,0.249964,0,0);}
.m77_c00216{transform:matrix(0.144806,-0.002317,0.003999,0.249968,0,0);-ms-transform:matrix(0.144806,-0.002317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144806,-0.002317,0.003999,0.249968,0,0);}
.mb3_c00216{transform:matrix(0.145874,-0.002188,0.003750,0.249972,0,0);-ms-transform:matrix(0.145874,-0.002188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145874,-0.002188,0.003750,0.249972,0,0);}
.m46_c00216{transform:matrix(0.148841,-0.002679,0.004499,0.249960,0,0);-ms-transform:matrix(0.148841,-0.002679,0.004499,0.249960,0,0);-webkit-transform:matrix(0.148841,-0.002679,0.004499,0.249960,0,0);}
.m65_c00216{transform:matrix(0.149266,-0.002388,0.003999,0.249968,0,0);-ms-transform:matrix(0.149266,-0.002388,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149266,-0.002388,0.003999,0.249968,0,0);}
.m32_c00216{transform:matrix(0.152280,-0.002741,0.004499,0.249960,0,0);-ms-transform:matrix(0.152280,-0.002741,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152280,-0.002741,0.004499,0.249960,0,0);}
.m38_c00216{transform:matrix(0.153655,-0.002766,0.004499,0.249960,0,0);-ms-transform:matrix(0.153655,-0.002766,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153655,-0.002766,0.004499,0.249960,0,0);}
.mb0_c00216{transform:matrix(0.154488,-0.002317,0.003750,0.249972,0,0);-ms-transform:matrix(0.154488,-0.002317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154488,-0.002317,0.003750,0.249972,0,0);}
.m7c_c00216{transform:matrix(0.154650,-0.002474,0.003999,0.249968,0,0);-ms-transform:matrix(0.154650,-0.002474,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154650,-0.002474,0.003999,0.249968,0,0);}
.m28_c00216{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);}
.m9c_c00216{transform:matrix(0.154703,-0.002321,0.003750,0.249972,0,0);-ms-transform:matrix(0.154703,-0.002321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154703,-0.002321,0.003750,0.249972,0,0);}
.me6_c00216{transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.159349,-0.002868,0.004499,0.249960,0,0);-ms-transform:matrix(0.159349,-0.002868,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159349,-0.002868,0.004499,0.249960,0,0);}
.mc_c00216{transform:matrix(0.160066,-0.003521,0.005499,0.249940,0,0);-ms-transform:matrix(0.160066,-0.003521,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160066,-0.003521,0.005499,0.249940,0,0);}
.mb6_c00216{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);}
.m54_c00216{transform:matrix(0.160749,-0.002572,0.003999,0.249968,0,0);-ms-transform:matrix(0.160749,-0.002572,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160749,-0.002572,0.003999,0.249968,0,0);}
.mdf_c00216{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);}
.m31_c00216{transform:matrix(0.161829,-0.002913,0.004499,0.249960,0,0);-ms-transform:matrix(0.161829,-0.002913,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161829,-0.002913,0.004499,0.249960,0,0);}
.m6f_c00216{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);}
.mbb_c00216{transform:matrix(0.164476,-0.002467,0.003750,0.249972,0,0);-ms-transform:matrix(0.164476,-0.002467,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164476,-0.002467,0.003750,0.249972,0,0);}
.m71_c00216{transform:matrix(0.164989,-0.002640,0.003999,0.249968,0,0);-ms-transform:matrix(0.164989,-0.002640,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164989,-0.002640,0.003999,0.249968,0,0);}
.m5b_c00216{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);}
.ma9_c00216{transform:matrix(0.167231,-0.002843,0.004249,0.249964,0,0);-ms-transform:matrix(0.167231,-0.002843,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167231,-0.002843,0.004249,0.249964,0,0);}
.mc2_c00216{transform:matrix(0.167281,-0.002844,0.004249,0.249964,0,0);-ms-transform:matrix(0.167281,-0.002844,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167281,-0.002844,0.004249,0.249964,0,0);}
.mbf_c00216{transform:matrix(0.167826,-0.002853,0.004249,0.249964,0,0);-ms-transform:matrix(0.167826,-0.002853,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167826,-0.002853,0.004249,0.249964,0,0);}
.mab_c00216{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);}
.m9_c00216{transform:matrix(0.169659,-0.003732,0.005499,0.249940,0,0);-ms-transform:matrix(0.169659,-0.003732,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169659,-0.003732,0.005499,0.249940,0,0);}
.m72_c00216{transform:matrix(0.170103,-0.002722,0.003999,0.249968,0,0);-ms-transform:matrix(0.170103,-0.002722,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170103,-0.002722,0.003999,0.249968,0,0);}
.m7e_c00216{transform:matrix(0.170870,-0.002905,0.004249,0.249964,0,0);-ms-transform:matrix(0.170870,-0.002905,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170870,-0.002905,0.004249,0.249964,0,0);}
.m4c_c00216{transform:matrix(0.170927,-0.003077,0.004499,0.249960,0,0);-ms-transform:matrix(0.170927,-0.003077,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170927,-0.003077,0.004499,0.249960,0,0);}
.mf6_c00216{transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);-ms-transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);}
.m33_c00216{transform:matrix(0.171187,-0.003081,0.004499,0.249960,0,0);-ms-transform:matrix(0.171187,-0.003081,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171187,-0.003081,0.004499,0.249960,0,0);}
.mb5_c00216{transform:matrix(0.171211,-0.002568,0.003750,0.249972,0,0);-ms-transform:matrix(0.171211,-0.002568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171211,-0.002568,0.003750,0.249972,0,0);}
.m6e_c00216{transform:matrix(0.171373,-0.002742,0.003999,0.249968,0,0);-ms-transform:matrix(0.171373,-0.002742,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171373,-0.002742,0.003999,0.249968,0,0);}
.me4_c00216{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);}
.md1_c00216{transform:matrix(0.173276,-0.002599,0.003750,0.249972,0,0);-ms-transform:matrix(0.173276,-0.002599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173276,-0.002599,0.003750,0.249972,0,0);}
.m7_c00216{transform:matrix(0.173422,-0.003122,0.004499,0.249960,0,0);-ms-transform:matrix(0.173422,-0.003122,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173422,-0.003122,0.004499,0.249960,0,0);}
.m50_c00216{transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);-ms-transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173423,-0.002775,0.003999,0.249968,0,0);}
.m3e_c00216{transform:matrix(0.174593,-0.003317,0.004749,0.249955,0,0);-ms-transform:matrix(0.174593,-0.003317,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174593,-0.003317,0.004749,0.249955,0,0);}
.mcc_c00216{transform:matrix(0.174815,-0.002622,0.003750,0.249972,0,0);-ms-transform:matrix(0.174815,-0.002622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174815,-0.002622,0.003750,0.249972,0,0);}
.ma_c00216{transform:matrix(0.175243,-0.003855,0.005499,0.249940,0,0);-ms-transform:matrix(0.175243,-0.003855,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175243,-0.003855,0.005499,0.249940,0,0);}
.md2_c00216{transform:matrix(0.175360,-0.002630,0.003750,0.249972,0,0);-ms-transform:matrix(0.175360,-0.002630,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175360,-0.002630,0.003750,0.249972,0,0);}
.mc7_c00216{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);}
.me_c00216{transform:matrix(0.175538,-0.003862,0.005499,0.249940,0,0);-ms-transform:matrix(0.175538,-0.003862,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175538,-0.003862,0.005499,0.249940,0,0);}
.m89_c00216{transform:matrix(0.176165,-0.002995,0.004249,0.249964,0,0);-ms-transform:matrix(0.176165,-0.002995,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176165,-0.002995,0.004249,0.249964,0,0);}
.m43_c00216{transform:matrix(0.176368,-0.003351,0.004749,0.249955,0,0);-ms-transform:matrix(0.176368,-0.003351,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176368,-0.003351,0.004749,0.249955,0,0);}
.m53_c00216{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);}
.m1e_c00216{transform:matrix(0.177407,-0.003903,0.005499,0.249940,0,0);-ms-transform:matrix(0.177407,-0.003903,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177407,-0.003903,0.005499,0.249940,0,0);}
.m51_c00216{transform:matrix(0.178047,-0.002849,0.003999,0.249968,0,0);-ms-transform:matrix(0.178047,-0.002849,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178047,-0.002849,0.003999,0.249968,0,0);}
.mb8_c00216{transform:matrix(0.178395,-0.002676,0.003750,0.249972,0,0);-ms-transform:matrix(0.178395,-0.002676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178395,-0.002676,0.003750,0.249972,0,0);}
.m1f_c00216{transform:matrix(0.178987,-0.003938,0.005499,0.249940,0,0);-ms-transform:matrix(0.178987,-0.003938,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178987,-0.003938,0.005499,0.249940,0,0);}
.m109_c00216{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_c00216{transform:matrix(0.179615,-0.003772,0.005249,0.249945,0,0);-ms-transform:matrix(0.179615,-0.003772,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179615,-0.003772,0.005249,0.249945,0,0);}
.m95_c00216{transform:matrix(0.179984,-0.003060,0.004249,0.249964,0,0);-ms-transform:matrix(0.179984,-0.003060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179984,-0.003060,0.004249,0.249964,0,0);}
.m48_c00216{transform:matrix(0.180511,-0.003249,0.004499,0.249960,0,0);-ms-transform:matrix(0.180511,-0.003249,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180511,-0.003249,0.004499,0.249960,0,0);}
.m91_c00216{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);}
.m88_c00216{transform:matrix(0.180814,-0.003074,0.004249,0.249964,0,0);-ms-transform:matrix(0.180814,-0.003074,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180814,-0.003074,0.004249,0.249964,0,0);}
.m59_c00216{transform:matrix(0.180904,-0.003075,0.004249,0.249964,0,0);-ms-transform:matrix(0.180904,-0.003075,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180904,-0.003075,0.004249,0.249964,0,0);}
.me9_c00216{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);}
.ma0_c00216{transform:matrix(0.181095,-0.002716,0.003750,0.249972,0,0);-ms-transform:matrix(0.181095,-0.002716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181095,-0.002716,0.003750,0.249972,0,0);}
.m70_c00216{transform:matrix(0.181202,-0.002899,0.003999,0.249968,0,0);-ms-transform:matrix(0.181202,-0.002899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181202,-0.002899,0.003999,0.249968,0,0);}
.mc3_c00216{transform:matrix(0.181404,-0.003084,0.004249,0.249964,0,0);-ms-transform:matrix(0.181404,-0.003084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181404,-0.003084,0.004249,0.249964,0,0);}
.m34_c00216{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);}
.m68_c00216{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);}
.m41_c00216{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);}
.m99_c00216{transform:matrix(0.182079,-0.003095,0.004249,0.249964,0,0);-ms-transform:matrix(0.182079,-0.003095,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182079,-0.003095,0.004249,0.249964,0,0);}
.m75_c00216{transform:matrix(0.182372,-0.002918,0.003999,0.249968,0,0);-ms-transform:matrix(0.182372,-0.002918,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182372,-0.002918,0.003999,0.249968,0,0);}
.m108_c00216{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);}
.m67_c00216{transform:matrix(0.183192,-0.002931,0.003999,0.249968,0,0);-ms-transform:matrix(0.183192,-0.002931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183192,-0.002931,0.003999,0.249968,0,0);}
.m13_c00216{transform:matrix(0.183550,-0.003855,0.005249,0.249945,0,0);-ms-transform:matrix(0.183550,-0.003855,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183550,-0.003855,0.005249,0.249945,0,0);}
.m93_c00216{transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);-ms-transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);}
.me5_c00216{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);}
.mdd_c00216{transform:matrix(0.183829,-0.002390,0.003250,0.249979,0,0);-ms-transform:matrix(0.183829,-0.002390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183829,-0.002390,0.003250,0.249979,0,0);}
.m94_c00216{transform:matrix(0.183943,-0.003127,0.004249,0.249964,0,0);-ms-transform:matrix(0.183943,-0.003127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183943,-0.003127,0.004249,0.249964,0,0);}
.m86_c00216{transform:matrix(0.183968,-0.003127,0.004249,0.249964,0,0);-ms-transform:matrix(0.183968,-0.003127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183968,-0.003127,0.004249,0.249964,0,0);}
.m24_c00216{transform:matrix(0.184609,-0.003877,0.005249,0.249945,0,0);-ms-transform:matrix(0.184609,-0.003877,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184609,-0.003877,0.005249,0.249945,0,0);}
.mee_c00216{transform:matrix(0.184769,-0.001478,0.002000,0.249992,0,0);-ms-transform:matrix(0.184769,-0.001478,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184769,-0.001478,0.002000,0.249992,0,0);}
.m8b_c00216{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);}
.mdb_c00216{transform:matrix(0.185509,-0.002412,0.003250,0.249979,0,0);-ms-transform:matrix(0.185509,-0.002412,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185509,-0.002412,0.003250,0.249979,0,0);}
.mb2_c00216{transform:matrix(0.185954,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185954,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185954,-0.002789,0.003750,0.249972,0,0);}
.meb_c00216{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);}
.mf9_c00216{transform:matrix(0.186479,-0.001492,0.002000,0.249992,0,0);-ms-transform:matrix(0.186479,-0.001492,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186479,-0.001492,0.002000,0.249992,0,0);}
.m2c_c00216{transform:matrix(0.186574,-0.003918,0.005249,0.249945,0,0);-ms-transform:matrix(0.186574,-0.003918,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186574,-0.003918,0.005249,0.249945,0,0);}
.m9f_c00216{transform:matrix(0.186969,-0.002805,0.003750,0.249972,0,0);-ms-transform:matrix(0.186969,-0.002805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186969,-0.002805,0.003750,0.249972,0,0);}
.m61_c00216{transform:matrix(0.186976,-0.002992,0.003999,0.249968,0,0);-ms-transform:matrix(0.186976,-0.002992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186976,-0.002992,0.003999,0.249968,0,0);}
.m42_c00216{transform:matrix(0.188441,-0.003580,0.004749,0.249955,0,0);-ms-transform:matrix(0.188441,-0.003580,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188441,-0.003580,0.004749,0.249955,0,0);}
.mb1_c00216{transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);}
.m3c_c00216{transform:matrix(0.189341,-0.003597,0.004749,0.249955,0,0);-ms-transform:matrix(0.189341,-0.003597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189341,-0.003597,0.004749,0.249955,0,0);}
.mef_c00216{transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);}
.mf4_c00216{transform:matrix(0.189414,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189414,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189414,-0.001515,0.002000,0.249992,0,0);}
.m6d_c00216{transform:matrix(0.189901,-0.003038,0.003999,0.249968,0,0);-ms-transform:matrix(0.189901,-0.003038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189901,-0.003038,0.003999,0.249968,0,0);}
.mbd_c00216{transform:matrix(0.190199,-0.002853,0.003750,0.249972,0,0);-ms-transform:matrix(0.190199,-0.002853,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190199,-0.002853,0.003750,0.249972,0,0);}
.m55_c00216{transform:matrix(0.190321,-0.003045,0.003999,0.249968,0,0);-ms-transform:matrix(0.190321,-0.003045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190321,-0.003045,0.003999,0.249968,0,0);}
.m82_c00216{transform:matrix(0.190427,-0.003237,0.004249,0.249964,0,0);-ms-transform:matrix(0.190427,-0.003237,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190427,-0.003237,0.004249,0.249964,0,0);}
.m81_c00216{transform:matrix(0.190562,-0.003240,0.004249,0.249964,0,0);-ms-transform:matrix(0.190562,-0.003240,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190562,-0.003240,0.004249,0.249964,0,0);}
.mb_c00216{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);}
.m35_c00216{transform:matrix(0.191819,-0.003453,0.004499,0.249960,0,0);-ms-transform:matrix(0.191819,-0.003453,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191819,-0.003453,0.004499,0.249960,0,0);}
.m4d_c00216{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);}
.mf5_c00216{transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);}
.m9b_c00216{transform:matrix(0.192563,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192563,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192563,-0.002888,0.003750,0.249972,0,0);}
.mb7_c00216{transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192608,-0.002889,0.003750,0.249972,0,0);}
.m87_c00216{transform:matrix(0.192792,-0.003277,0.004249,0.249964,0,0);-ms-transform:matrix(0.192792,-0.003277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192792,-0.003277,0.004249,0.249964,0,0);}
.m79_c00216{transform:matrix(0.192835,-0.003085,0.003999,0.249968,0,0);-ms-transform:matrix(0.192835,-0.003085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192835,-0.003085,0.003999,0.249968,0,0);}
.mb9_c00216{transform:matrix(0.193003,-0.002895,0.003750,0.249972,0,0);-ms-transform:matrix(0.193003,-0.002895,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193003,-0.002895,0.003750,0.249972,0,0);}
.m73_c00216{transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);-ms-transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);}
.m85_c00216{transform:matrix(0.193972,-0.003298,0.004249,0.249964,0,0);-ms-transform:matrix(0.193972,-0.003298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193972,-0.003298,0.004249,0.249964,0,0);}
.mc0_c00216{transform:matrix(0.194262,-0.003302,0.004249,0.249964,0,0);-ms-transform:matrix(0.194262,-0.003302,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194262,-0.003302,0.004249,0.249964,0,0);}
.mf0_c00216{transform:matrix(0.194624,-0.001557,0.002000,0.249992,0,0);-ms-transform:matrix(0.194624,-0.001557,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194624,-0.001557,0.002000,0.249992,0,0);}
.m74_c00216{transform:matrix(0.194790,-0.003117,0.003999,0.249968,0,0);-ms-transform:matrix(0.194790,-0.003117,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194790,-0.003117,0.003999,0.249968,0,0);}
.m1c_c00216{transform:matrix(0.194798,-0.004286,0.005499,0.249940,0,0);-ms-transform:matrix(0.194798,-0.004286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194798,-0.004286,0.005499,0.249940,0,0);}
.ma2_c00216{transform:matrix(0.195507,-0.003324,0.004249,0.249964,0,0);-ms-transform:matrix(0.195507,-0.003324,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195507,-0.003324,0.004249,0.249964,0,0);}
.m40_c00216{transform:matrix(0.195850,-0.003721,0.004749,0.249955,0,0);-ms-transform:matrix(0.195850,-0.003721,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195850,-0.003721,0.004749,0.249955,0,0);}
.mcf_c00216{transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);-ms-transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);}
.m47_c00216{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);}
.me8_c00216{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);}
.m25_c00216{transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);-ms-transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);}
.mbc_c00216{transform:matrix(0.198373,-0.002976,0.003750,0.249972,0,0);-ms-transform:matrix(0.198373,-0.002976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198373,-0.002976,0.003750,0.249972,0,0);}
.m26_c00216{transform:matrix(0.199056,-0.004180,0.005249,0.249945,0,0);-ms-transform:matrix(0.199056,-0.004180,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199056,-0.004180,0.005249,0.249945,0,0);}
.mad_c00216{transform:matrix(0.199323,-0.002990,0.003750,0.249972,0,0);-ms-transform:matrix(0.199323,-0.002990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199323,-0.002990,0.003750,0.249972,0,0);}
.m106_c00216{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);}
.m9e_c00216{transform:matrix(0.199568,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199568,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199568,-0.002994,0.003750,0.249972,0,0);}
.me2_c00216{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);}
.m27_c00216{transform:matrix(0.200096,-0.004202,0.005249,0.249945,0,0);-ms-transform:matrix(0.200096,-0.004202,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200096,-0.004202,0.005249,0.249945,0,0);}
.m39_c00216{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);}
.m8f_c00216{transform:matrix(0.200291,-0.003405,0.004249,0.249964,0,0);-ms-transform:matrix(0.200291,-0.003405,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200291,-0.003405,0.004249,0.249964,0,0);}
.m1a_c00216{transform:matrix(0.200911,-0.004219,0.005249,0.249945,0,0);-ms-transform:matrix(0.200911,-0.004219,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200911,-0.004219,0.005249,0.249945,0,0);}
.m1b_c00216{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);}
.m3f_c00216{transform:matrix(0.201114,-0.003821,0.004749,0.249955,0,0);-ms-transform:matrix(0.201114,-0.003821,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201114,-0.003821,0.004749,0.249955,0,0);}
.mec_c00216{transform:matrix(0.201699,-0.001614,0.002000,0.249992,0,0);-ms-transform:matrix(0.201699,-0.001614,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201699,-0.001614,0.002000,0.249992,0,0);}
.m7d_c00216{transform:matrix(0.201789,-0.003229,0.003999,0.249968,0,0);-ms-transform:matrix(0.201789,-0.003229,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201789,-0.003229,0.003999,0.249968,0,0);}
.mca_c00216{transform:matrix(0.201947,-0.003029,0.003750,0.249972,0,0);-ms-transform:matrix(0.201947,-0.003029,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201947,-0.003029,0.003750,0.249972,0,0);}
.mce_c00216{transform:matrix(0.202092,-0.003031,0.003750,0.249972,0,0);-ms-transform:matrix(0.202092,-0.003031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202092,-0.003031,0.003750,0.249972,0,0);}
.mc1_c00216{transform:matrix(0.203151,-0.003454,0.004249,0.249964,0,0);-ms-transform:matrix(0.203151,-0.003454,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203151,-0.003454,0.004249,0.249964,0,0);}
.me3_c00216{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);}
.m8d_c00216{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);}
.mba_c00216{transform:matrix(0.204012,-0.003060,0.003750,0.249972,0,0);-ms-transform:matrix(0.204012,-0.003060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204012,-0.003060,0.003750,0.249972,0,0);}
.mae_c00216{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);}
.mde_c00216{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);}
.me1_c00216{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);}
.mc4_c00216{transform:matrix(0.204575,-0.003478,0.004249,0.249964,0,0);-ms-transform:matrix(0.204575,-0.003478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204575,-0.003478,0.004249,0.249964,0,0);}
.mf8_c00216{transform:matrix(0.204713,-0.001638,0.002000,0.249992,0,0);-ms-transform:matrix(0.204713,-0.001638,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204713,-0.001638,0.002000,0.249992,0,0);}
.m8e_c00216{transform:matrix(0.204795,-0.003482,0.004249,0.249964,0,0);-ms-transform:matrix(0.204795,-0.003482,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204795,-0.003482,0.004249,0.249964,0,0);}
.md5_c00216{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);}
.m103_c00216{transform:matrix(0.205298,-0.001642,0.002000,0.249992,0,0);-ms-transform:matrix(0.205298,-0.001642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205298,-0.001642,0.002000,0.249992,0,0);}
.m0_c00216{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);}
.mfc_c00216{transform:matrix(0.205853,-0.001647,0.002000,0.249992,0,0);-ms-transform:matrix(0.205853,-0.001647,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205853,-0.001647,0.002000,0.249992,0,0);}
.m78_c00216{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);}
.m4b_c00216{transform:matrix(0.206542,-0.003718,0.004499,0.249960,0,0);-ms-transform:matrix(0.206542,-0.003718,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206542,-0.003718,0.004499,0.249960,0,0);}
.m37_c00216{transform:matrix(0.206802,-0.003722,0.004499,0.249960,0,0);-ms-transform:matrix(0.206802,-0.003722,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206802,-0.003722,0.004499,0.249960,0,0);}
.m5c_c00216{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);}
.mcb_c00216{transform:matrix(0.207027,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.207027,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207027,-0.003105,0.003750,0.249972,0,0);}
.md0_c00216{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);}
.m49_c00216{transform:matrix(0.207511,-0.003735,0.004499,0.249960,0,0);-ms-transform:matrix(0.207511,-0.003735,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207511,-0.003735,0.004499,0.249960,0,0);}
.m97_c00216{transform:matrix(0.207905,-0.003534,0.004249,0.249964,0,0);-ms-transform:matrix(0.207905,-0.003534,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207905,-0.003534,0.004249,0.249964,0,0);}
.m23_c00216{transform:matrix(0.208349,-0.004375,0.005249,0.249945,0,0);-ms-transform:matrix(0.208349,-0.004375,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208349,-0.004375,0.005249,0.249945,0,0);}
.m2d_c00216{transform:matrix(0.208589,-0.004380,0.005249,0.249945,0,0);-ms-transform:matrix(0.208589,-0.004380,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208589,-0.004380,0.005249,0.249945,0,0);}
.m8_c00216{transform:matrix(0.208869,-0.004595,0.005499,0.249940,0,0);-ms-transform:matrix(0.208869,-0.004595,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208869,-0.004595,0.005499,0.249940,0,0);}
.m20_c00216{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);}
.maf_c00216{transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);-ms-transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);}
.mda_c00216{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);}
.m96_c00216{transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);-ms-transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);}
.m2a_c00216{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);}
.m4f_c00216{transform:matrix(0.210073,-0.003361,0.003999,0.249968,0,0);-ms-transform:matrix(0.210073,-0.003361,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210073,-0.003361,0.003999,0.249968,0,0);}
.me0_c00216{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);}
.m60_c00216{transform:matrix(0.210543,-0.003369,0.003999,0.249968,0,0);-ms-transform:matrix(0.210543,-0.003369,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210543,-0.003369,0.003999,0.249968,0,0);}
.mac_c00216{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);}
.mc8_c00216{transform:matrix(0.211906,-0.003179,0.003750,0.249972,0,0);-ms-transform:matrix(0.211906,-0.003179,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211906,-0.003179,0.003750,0.249972,0,0);}
.m76_c00216{transform:matrix(0.211943,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211943,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211943,-0.003391,0.003999,0.249968,0,0);}
.m83_c00216{transform:matrix(0.212114,-0.003606,0.004249,0.249964,0,0);-ms-transform:matrix(0.212114,-0.003606,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212114,-0.003606,0.004249,0.249964,0,0);}
.m29_c00216{transform:matrix(0.212388,-0.004460,0.005249,0.249945,0,0);-ms-transform:matrix(0.212388,-0.004460,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212388,-0.004460,0.005249,0.249945,0,0);}
.m105_c00216{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);}
.m101_c00216{transform:matrix(0.212558,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212558,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212558,-0.001700,0.002000,0.249992,0,0);}
.m7b_c00216{transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);-ms-transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);}
.m4e_c00216{transform:matrix(0.213133,-0.003410,0.003999,0.249968,0,0);-ms-transform:matrix(0.213133,-0.003410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213133,-0.003410,0.003999,0.249968,0,0);}
.md3_c00216{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);}
.m66_c00216{transform:matrix(0.213983,-0.003424,0.003999,0.249968,0,0);-ms-transform:matrix(0.213983,-0.003424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213983,-0.003424,0.003999,0.249968,0,0);}
.md8_c00216{transform:matrix(0.214137,-0.002784,0.003250,0.249979,0,0);-ms-transform:matrix(0.214137,-0.002784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214137,-0.002784,0.003250,0.249979,0,0);}
.md6_c00216{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);}
.m92_c00216{transform:matrix(0.215159,-0.003658,0.004249,0.249964,0,0);-ms-transform:matrix(0.215159,-0.003658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215159,-0.003658,0.004249,0.249964,0,0);}
.md9_c00216{transform:matrix(0.215292,-0.002799,0.003250,0.249979,0,0);-ms-transform:matrix(0.215292,-0.002799,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215292,-0.002799,0.003250,0.249979,0,0);}
.m84_c00216{transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);-ms-transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215589,-0.003665,0.004249,0.249964,0,0);}
.m6c_c00216{transform:matrix(0.215707,-0.003451,0.003999,0.249968,0,0);-ms-transform:matrix(0.215707,-0.003451,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215707,-0.003451,0.003999,0.249968,0,0);}
.me7_c00216{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.216258,-0.004758,0.005499,0.249940,0,0);-ms-transform:matrix(0.216258,-0.004758,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216258,-0.004758,0.005499,0.249940,0,0);}
.mf1_c00216{transform:matrix(0.216308,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216308,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216308,-0.001730,0.002000,0.249992,0,0);}
.mb4_c00216{transform:matrix(0.216721,-0.003251,0.003750,0.249972,0,0);-ms-transform:matrix(0.216721,-0.003251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216721,-0.003251,0.003750,0.249972,0,0);}
.m104_c00216{transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);}
.m17_c00216{transform:matrix(0.217182,-0.004561,0.005249,0.249945,0,0);-ms-transform:matrix(0.217182,-0.004561,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217182,-0.004561,0.005249,0.249945,0,0);}
.m44_c00216{transform:matrix(0.217206,-0.004127,0.004749,0.249955,0,0);-ms-transform:matrix(0.217206,-0.004127,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217206,-0.004127,0.004749,0.249955,0,0);}
.ma3_c00216{transform:matrix(0.217474,-0.003697,0.004249,0.249964,0,0);-ms-transform:matrix(0.217474,-0.003697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217474,-0.003697,0.004249,0.249964,0,0);}
.mea_c00216{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);}
.mfe_c00216{transform:matrix(0.217738,-0.001742,0.002000,0.249992,0,0);-ms-transform:matrix(0.217738,-0.001742,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217738,-0.001742,0.002000,0.249992,0,0);}
.med_c00216{transform:matrix(0.218138,-0.001745,0.002000,0.249992,0,0);-ms-transform:matrix(0.218138,-0.001745,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218138,-0.001745,0.002000,0.249992,0,0);}
.m15_c00216{transform:matrix(0.218772,-0.004594,0.005249,0.249945,0,0);-ms-transform:matrix(0.218772,-0.004594,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218772,-0.004594,0.005249,0.249945,0,0);}
.mfd_c00216{transform:matrix(0.219133,-0.001753,0.002000,0.249992,0,0);-ms-transform:matrix(0.219133,-0.001753,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219133,-0.001753,0.002000,0.249992,0,0);}
.m98_c00216{transform:matrix(0.219348,-0.003729,0.004249,0.249964,0,0);-ms-transform:matrix(0.219348,-0.003729,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219348,-0.003729,0.004249,0.249964,0,0);}
.mbe_c00216{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);}
.m1d_c00216{transform:matrix(0.219932,-0.004838,0.005499,0.249940,0,0);-ms-transform:matrix(0.219932,-0.004838,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219932,-0.004838,0.005499,0.249940,0,0);}
.m14_c00216{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);}
.ma8_c00216{transform:matrix(0.221863,-0.003772,0.004249,0.249964,0,0);-ms-transform:matrix(0.221863,-0.003772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221863,-0.003772,0.004249,0.249964,0,0);}
.m7a_c00216{transform:matrix(0.223141,-0.003570,0.003999,0.249968,0,0);-ms-transform:matrix(0.223141,-0.003570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223141,-0.003570,0.003999,0.249968,0,0);}
.mfb_c00216{transform:matrix(0.224563,-0.001797,0.002000,0.249992,0,0);-ms-transform:matrix(0.224563,-0.001797,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224563,-0.001797,0.002000,0.249992,0,0);}
.m5f_c00216{transform:matrix(0.225262,-0.003829,0.004249,0.249964,0,0);-ms-transform:matrix(0.225262,-0.003829,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225262,-0.003829,0.004249,0.249964,0,0);}
.m3_c00216{transform:matrix(0.225289,-0.004055,0.004499,0.249960,0,0);-ms-transform:matrix(0.225289,-0.004055,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225289,-0.004055,0.004499,0.249960,0,0);}
.m45_c00216{transform:matrix(0.225718,-0.004063,0.004499,0.249960,0,0);-ms-transform:matrix(0.225718,-0.004063,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225718,-0.004063,0.004499,0.249960,0,0);}
.ma1_c00216{transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);-ms-transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);}
.m2b_c00216{transform:matrix(0.225860,-0.004743,0.005249,0.249945,0,0);-ms-transform:matrix(0.225860,-0.004743,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225860,-0.004743,0.005249,0.249945,0,0);}
.m8c_c00216{transform:matrix(0.227407,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227407,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227407,-0.003866,0.004249,0.249964,0,0);}
.m80_c00216{transform:matrix(0.227432,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227432,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227432,-0.003866,0.004249,0.249964,0,0);}
.m9d_c00216{transform:matrix(0.227509,-0.003413,0.003750,0.249972,0,0);-ms-transform:matrix(0.227509,-0.003413,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227509,-0.003413,0.003750,0.249972,0,0);}
.m62_c00216{transform:matrix(0.227886,-0.003646,0.003999,0.249968,0,0);-ms-transform:matrix(0.227886,-0.003646,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227886,-0.003646,0.003999,0.249968,0,0);}
.mcd_c00216{transform:matrix(0.229084,-0.003436,0.003750,0.249972,0,0);-ms-transform:matrix(0.229084,-0.003436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229084,-0.003436,0.003750,0.249972,0,0);}
.m21_c00216{transform:matrix(0.230484,-0.005071,0.005499,0.249940,0,0);-ms-transform:matrix(0.230484,-0.005071,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230484,-0.005071,0.005499,0.249940,0,0);}
.m19_c00216{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);}
.ma4_c00216{transform:matrix(0.231402,-0.003934,0.004249,0.249964,0,0);-ms-transform:matrix(0.231402,-0.003934,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231402,-0.003934,0.004249,0.249964,0,0);}
.mfa_c00216{transform:matrix(0.231488,-0.001852,0.002000,0.249992,0,0);-ms-transform:matrix(0.231488,-0.001852,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231488,-0.001852,0.002000,0.249992,0,0);}
.m58_c00216{transform:matrix(0.232946,-0.003960,0.004249,0.249964,0,0);-ms-transform:matrix(0.232946,-0.003960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232946,-0.003960,0.004249,0.249964,0,0);}
.mc9_c00216{transform:matrix(0.235259,-0.003529,0.003750,0.249972,0,0);-ms-transform:matrix(0.235259,-0.003529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235259,-0.003529,0.003750,0.249972,0,0);}
.m100_c00216{transform:matrix(0.236747,-0.001894,0.002000,0.249992,0,0);-ms-transform:matrix(0.236747,-0.001894,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236747,-0.001894,0.002000,0.249992,0,0);}
.m18_c00216{transform:matrix(0.237258,-0.004982,0.005249,0.249945,0,0);-ms-transform:matrix(0.237258,-0.004982,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237258,-0.004982,0.005249,0.249945,0,0);}
.m8a_c00216{transform:matrix(0.238970,-0.004062,0.004249,0.249964,0,0);-ms-transform:matrix(0.238970,-0.004062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238970,-0.004062,0.004249,0.249964,0,0);}
.mf7_c00216{transform:matrix(0.240797,-0.001926,0.002000,0.249992,0,0);-ms-transform:matrix(0.240797,-0.001926,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240797,-0.001926,0.002000,0.249992,0,0);}
.ma7_c00216{transform:matrix(0.240850,-0.004094,0.004249,0.249964,0,0);-ms-transform:matrix(0.240850,-0.004094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240850,-0.004094,0.004249,0.249964,0,0);}
.m7f_c00216{transform:matrix(0.241900,-0.004112,0.004249,0.249964,0,0);-ms-transform:matrix(0.241900,-0.004112,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241900,-0.004112,0.004249,0.249964,0,0);}
.m5e_c00216{transform:matrix(0.242495,-0.004122,0.004249,0.249964,0,0);-ms-transform:matrix(0.242495,-0.004122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242495,-0.004122,0.004249,0.249964,0,0);}
.m36_c00216{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);}
.m10_c00216{transform:matrix(0.246170,-0.005416,0.005499,0.249940,0,0);-ms-transform:matrix(0.246170,-0.005416,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246170,-0.005416,0.005499,0.249940,0,0);}
.m6b_c00216{transform:matrix(0.246448,-0.003943,0.003999,0.249968,0,0);-ms-transform:matrix(0.246448,-0.003943,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246448,-0.003943,0.003999,0.249968,0,0);}
.m107_c00216{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);}
.m90_c00216{transform:matrix(0.248559,-0.004226,0.004249,0.249964,0,0);-ms-transform:matrix(0.248559,-0.004226,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248559,-0.004226,0.004249,0.249964,0,0);}
.m9a_c00216{transform:matrix(0.249187,-0.003738,0.003750,0.249972,0,0);-ms-transform:matrix(0.249187,-0.003738,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249187,-0.003738,0.003750,0.249972,0,0);}
.m12_c00216{transform:matrix(0.250455,-0.005260,0.005249,0.249945,0,0);-ms-transform:matrix(0.250455,-0.005260,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250455,-0.005260,0.005249,0.249945,0,0);}
.m3b_c00216{transform:matrix(0.251540,-0.004779,0.004749,0.249955,0,0);-ms-transform:matrix(0.251540,-0.004779,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251540,-0.004779,0.004749,0.249955,0,0);}
.m4_c00216{transform:matrix(0.255409,-0.004597,0.004499,0.249960,0,0);-ms-transform:matrix(0.255409,-0.004597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255409,-0.004597,0.004499,0.249960,0,0);}
.mdc_c00216{transform:matrix(0.264283,-0.003436,0.003250,0.249979,0,0);-ms-transform:matrix(0.264283,-0.003436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264283,-0.003436,0.003250,0.249979,0,0);}
.mc6_c00216{transform:matrix(0.264570,-0.003969,0.003750,0.249972,0,0);-ms-transform:matrix(0.264570,-0.003969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264570,-0.003969,0.003750,0.249972,0,0);}
.m57_c00216{transform:matrix(0.265737,-0.004518,0.004249,0.249964,0,0);-ms-transform:matrix(0.265737,-0.004518,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265737,-0.004518,0.004249,0.249964,0,0);}
.ma5_c00216{transform:matrix(0.275540,-0.004684,0.004249,0.249964,0,0);-ms-transform:matrix(0.275540,-0.004684,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275540,-0.004684,0.004249,0.249964,0,0);}
.md7_c00216{transform:matrix(0.276742,-0.003598,0.003250,0.249979,0,0);-ms-transform:matrix(0.276742,-0.003598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.276742,-0.003598,0.003250,0.249979,0,0);}
.m3a_c00216{transform:matrix(0.295322,-0.005316,0.004499,0.249960,0,0);-ms-transform:matrix(0.295322,-0.005316,0.004499,0.249960,0,0);-webkit-transform:matrix(0.295322,-0.005316,0.004499,0.249960,0,0);}
.m69_c00216{transform:matrix(0.296057,-0.004737,0.003999,0.249968,0,0);-ms-transform:matrix(0.296057,-0.004737,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296057,-0.004737,0.003999,0.249968,0,0);}
.ma6_c00216{transform:matrix(0.297327,-0.005055,0.004249,0.249964,0,0);-ms-transform:matrix(0.297327,-0.005055,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297327,-0.005055,0.004249,0.249964,0,0);}
.m11_c00216{transform:matrix(0.304801,-0.006706,0.005499,0.249940,0,0);-ms-transform:matrix(0.304801,-0.006706,0.005499,0.249940,0,0);-webkit-transform:matrix(0.304801,-0.006706,0.005499,0.249940,0,0);}
.m52_c00216{transform:matrix(0.305371,-0.004886,0.003999,0.249968,0,0);-ms-transform:matrix(0.305371,-0.004886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305371,-0.004886,0.003999,0.249968,0,0);}
.m1_c00216{transform:matrix(0.306945,-0.005525,0.004499,0.249960,0,0);-ms-transform:matrix(0.306945,-0.005525,0.004499,0.249960,0,0);-webkit-transform:matrix(0.306945,-0.005525,0.004499,0.249960,0,0);}
.m102_c00216{transform:matrix(0.307035,-0.002456,0.002000,0.249992,0,0);-ms-transform:matrix(0.307035,-0.002456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.307035,-0.002456,0.002000,0.249992,0,0);}
.md4_c00216{transform:matrix(0.313795,-0.004707,0.003750,0.249972,0,0);-ms-transform:matrix(0.313795,-0.004707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313795,-0.004707,0.003750,0.249972,0,0);}
.m3d_c00216{transform:matrix(0.318403,-0.006050,0.004749,0.249955,0,0);-ms-transform:matrix(0.318403,-0.006050,0.004749,0.249955,0,0);-webkit-transform:matrix(0.318403,-0.006050,0.004749,0.249955,0,0);}
.m5a_c00216{transform:matrix(0.325843,-0.005539,0.004249,0.249964,0,0);-ms-transform:matrix(0.325843,-0.005539,0.004249,0.249964,0,0);-webkit-transform:matrix(0.325843,-0.005539,0.004249,0.249964,0,0);}
.m2f_c00216{transform:matrix(0.327928,-0.006886,0.005249,0.249945,0,0);-ms-transform:matrix(0.327928,-0.006886,0.005249,0.249945,0,0);-webkit-transform:matrix(0.327928,-0.006886,0.005249,0.249945,0,0);}
.mff_c00216{transform:matrix(0.331424,-0.002651,0.002000,0.249992,0,0);-ms-transform:matrix(0.331424,-0.002651,0.002000,0.249992,0,0);-webkit-transform:matrix(0.331424,-0.002651,0.002000,0.249992,0,0);}
.m10a_c00216{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);}
.m64_c00216{transform:matrix(0.333597,-0.005338,0.003999,0.249968,0,0);-ms-transform:matrix(0.333597,-0.005338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.333597,-0.005338,0.003999,0.249968,0,0);}
.m6_c00216{transform:matrix(0.352768,-0.006350,0.004499,0.249960,0,0);-ms-transform:matrix(0.352768,-0.006350,0.004499,0.249960,0,0);-webkit-transform:matrix(0.352768,-0.006350,0.004499,0.249960,0,0);}
.m56_c00216{transform:matrix(0.371101,-0.006309,0.004249,0.249964,0,0);-ms-transform:matrix(0.371101,-0.006309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.371101,-0.006309,0.004249,0.249964,0,0);}
.m2_c00216{transform:matrix(0.371250,-0.006682,0.004499,0.249960,0,0);-ms-transform:matrix(0.371250,-0.006682,0.004499,0.249960,0,0);-webkit-transform:matrix(0.371250,-0.006682,0.004499,0.249960,0,0);}
.m63_c00216{transform:matrix(0.377532,-0.006041,0.003999,0.249968,0,0);-ms-transform:matrix(0.377532,-0.006041,0.003999,0.249968,0,0);-webkit-transform:matrix(0.377532,-0.006041,0.003999,0.249968,0,0);}
.mf_c00216{transform:matrix(0.379503,-0.008349,0.005499,0.249940,0,0);-ms-transform:matrix(0.379503,-0.008349,0.005499,0.249940,0,0);-webkit-transform:matrix(0.379503,-0.008349,0.005499,0.249940,0,0);}
.m2e_c00216{transform:matrix(0.382371,-0.008030,0.005249,0.249945,0,0);-ms-transform:matrix(0.382371,-0.008030,0.005249,0.249945,0,0);-webkit-transform:matrix(0.382371,-0.008030,0.005249,0.249945,0,0);}
.mc5_c00216{transform:matrix(0.423067,-0.006346,0.003750,0.249972,0,0);-ms-transform:matrix(0.423067,-0.006346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.423067,-0.006346,0.003750,0.249972,0,0);}
.m5d_c00216{transform:matrix(0.449810,-0.007647,0.004249,0.249964,0,0);-ms-transform:matrix(0.449810,-0.007647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.449810,-0.007647,0.004249,0.249964,0,0);}
.mf2_c00216{transform:matrix(0.778330,-0.006227,0.002000,0.249992,0,0);-ms-transform:matrix(0.778330,-0.006227,0.002000,0.249992,0,0);-webkit-transform:matrix(0.778330,-0.006227,0.002000,0.249992,0,0);}
.m5_c00216{transform:matrix(1.046430,-0.018836,0.004499,0.249960,0,0);-ms-transform:matrix(1.046430,-0.018836,0.004499,0.249960,0,0);-webkit-transform:matrix(1.046430,-0.018836,0.004499,0.249960,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:39.900000px;}
.fs17_c00216{font-size:46.200000px;}
.fs18_c00216{font-size:51.450000px;}
.fs19_c00216{font-size:52.501680px;}
.fs1a_c00216{font-size:53.551714px;}
.fs1b_c00216{font-size:55.650000px;}
.fs16_c00216{font-size:60.905146px;}
.fs14_c00216{font-size:64.057205px;}
.fs10_c00216{font-size:66.157441px;}
.fsf_c00216{font-size:66.159558px;}
.fs15_c00216{font-size:67.207560px;}
.fs11_c00216{font-size:67.209710px;}
.fs5_c00216{font-size:67.214816px;}
.fs12_c00216{font-size:68.257678px;}
.fsa_c00216{font-size:68.258735px;}
.fsb_c00216{font-size:68.259861px;}
.fs4_c00216{font-size:68.266515px;}
.fs13_c00216{font-size:69.307796px;}
.fsd_c00216{font-size:69.308870px;}
.fse_c00216{font-size:69.310013px;}
.fs9_c00216{font-size:70.361396px;}
.fs8_c00216{font-size:70.362697px;}
.fs3_c00216{font-size:70.365510px;}
.fs7_c00216{font-size:71.411566px;}
.fs6_c00216{font-size:71.415742px;}
.fs2_c00216{font-size:71.417277px;}
.fsc_c00216{font-size:73.509407px;}
.fs1_c00216{font-size:93.465138px;}
.y0_c00216{bottom:0.000000px;}
.yfb_c00216{bottom:179.551500px;}
.yf8_c00216{bottom:181.425948px;}
.yf9_c00216{bottom:181.426056px;}
.yf4_c00216{bottom:181.426200px;}
.yf7_c00216{bottom:181.426320px;}
.yf6_c00216{bottom:181.426560px;}
.yfa_c00216{bottom:181.426584px;}
.yf3_c00216{bottom:181.426692px;}
.yf5_c00216{bottom:181.426920px;}
.ye2_c00216{bottom:196.831500px;}
.ye3_c00216{bottom:197.308728px;}
.ye4_c00216{bottom:197.803332px;}
.ye5_c00216{bottom:198.036828px;}
.ye6_c00216{bottom:198.201000px;}
.ye7_c00216{bottom:198.431928px;}
.ye8_c00216{bottom:198.693552px;}
.ye9_c00216{bottom:198.794808px;}
.yea_c00216{bottom:198.850968px;}
.yeb_c00216{bottom:199.101480px;}
.yec_c00216{bottom:199.222476px;}
.yed_c00216{bottom:199.365348px;}
.yee_c00216{bottom:199.451724px;}
.yef_c00216{bottom:199.708740px;}
.yf0_c00216{bottom:199.942164px;}
.yf1_c00216{bottom:200.254752px;}
.yf2_c00216{bottom:200.481636px;}
.ye1_c00216{bottom:250.386000px;}
.ye0_c00216{bottom:268.249500px;}
.yd6_c00216{bottom:292.951500px;}
.yd7_c00216{bottom:293.387247px;}
.yd8_c00216{bottom:294.053913px;}
.yd9_c00216{bottom:294.277949px;}
.yda_c00216{bottom:294.682106px;}
.ydb_c00216{bottom:295.068303px;}
.ydc_c00216{bottom:295.486013px;}
.ydd_c00216{bottom:295.995333px;}
.yde_c00216{bottom:296.212076px;}
.ydf_c00216{bottom:296.517426px;}
.ycf_c00216{bottom:314.819955px;}
.yd0_c00216{bottom:315.861480px;}
.yd1_c00216{bottom:317.072183px;}
.yd2_c00216{bottom:317.651400px;}
.yd3_c00216{bottom:318.465540px;}
.yd4_c00216{bottom:318.984188px;}
.yd5_c00216{bottom:319.717395px;}
.yc6_c00216{bottom:337.773000px;}
.yc7_c00216{bottom:338.384730px;}
.yc8_c00216{bottom:338.674778px;}
.yc9_c00216{bottom:339.051450px;}
.yca_c00216{bottom:339.704760px;}
.ycb_c00216{bottom:340.724280px;}
.ycc_c00216{bottom:341.534190px;}
.ycd_c00216{bottom:342.085890px;}
.yce_c00216{bottom:342.737625px;}
.ybf_c00216{bottom:360.453000px;}
.yc0_c00216{bottom:360.988934px;}
.yc1_c00216{bottom:361.495389px;}
.yc2_c00216{bottom:362.321615px;}
.yc3_c00216{bottom:363.454019px;}
.yc4_c00216{bottom:363.891803px;}
.yc5_c00216{bottom:365.011763px;}
.yb6_c00216{bottom:383.130173px;}
.yb7_c00216{bottom:383.753738px;}
.yb8_c00216{bottom:384.125573px;}
.yb9_c00216{bottom:384.607770px;}
.yba_c00216{bottom:385.194840px;}
.ybb_c00216{bottom:385.815705px;}
.ybc_c00216{bottom:386.346075px;}
.ybd_c00216{bottom:386.873543px;}
.ybe_c00216{bottom:387.994650px;}
.yac_c00216{bottom:405.543000px;}
.yad_c00216{bottom:405.859058px;}
.yae_c00216{bottom:406.264305px;}
.yaf_c00216{bottom:407.163068px;}
.yb0_c00216{bottom:407.325585px;}
.yb1_c00216{bottom:407.921048px;}
.yb2_c00216{bottom:408.353925px;}
.yb3_c00216{bottom:408.719843px;}
.yb4_c00216{bottom:409.742490px;}
.yb5_c00216{bottom:410.083680px;}
.ya3_c00216{bottom:427.683000px;}
.ya4_c00216{bottom:428.096661px;}
.ya5_c00216{bottom:429.482867px;}
.ya6_c00216{bottom:430.140384px;}
.ya7_c00216{bottom:430.965768px;}
.ya8_c00216{bottom:431.406255px;}
.ya9_c00216{bottom:432.104369px;}
.yaa_c00216{bottom:432.627858px;}
.yab_c00216{bottom:433.765056px;}
.y9b_c00216{bottom:450.633000px;}
.y9c_c00216{bottom:451.075372px;}
.y9d_c00216{bottom:451.555567px;}
.y9e_c00216{bottom:451.868587px;}
.y9f_c00216{bottom:453.172665px;}
.ya0_c00216{bottom:453.812565px;}
.ya1_c00216{bottom:454.444837px;}
.ya2_c00216{bottom:455.570602px;}
.y93_c00216{bottom:473.305015px;}
.y94_c00216{bottom:474.475763px;}
.y95_c00216{bottom:475.423084px;}
.y96_c00216{bottom:475.979879px;}
.y97_c00216{bottom:476.459241px;}
.y98_c00216{bottom:476.691336px;}
.y99_c00216{bottom:477.615121px;}
.y9a_c00216{bottom:478.043934px;}
.y8b_c00216{bottom:495.951348px;}
.y8c_c00216{bottom:496.521381px;}
.y8d_c00216{bottom:497.479137px;}
.y8e_c00216{bottom:498.103724px;}
.y8f_c00216{bottom:499.053243px;}
.y90_c00216{bottom:500.029159px;}
.y91_c00216{bottom:500.650150px;}
.y92_c00216{bottom:501.431772px;}
.y7f_c00216{bottom:518.401500px;}
.y80_c00216{bottom:518.673840px;}
.y81_c00216{bottom:518.939856px;}
.y82_c00216{bottom:519.523168px;}
.y83_c00216{bottom:520.028375px;}
.y84_c00216{bottom:520.927734px;}
.y85_c00216{bottom:521.607258px;}
.y86_c00216{bottom:522.813561px;}
.y87_c00216{bottom:523.466412px;}
.y88_c00216{bottom:523.901238px;}
.y89_c00216{bottom:524.499799px;}
.y8a_c00216{bottom:525.058148px;}
.y77_c00216{bottom:540.808548px;}
.y78_c00216{bottom:541.541964px;}
.y79_c00216{bottom:541.958148px;}
.y7a_c00216{bottom:542.982060px;}
.y7b_c00216{bottom:543.840588px;}
.y7c_c00216{bottom:544.494564px;}
.y7d_c00216{bottom:545.586012px;}
.y7e_c00216{bottom:545.829348px;}
.y6c_c00216{bottom:563.490840px;}
.y6d_c00216{bottom:564.000888px;}
.y6e_c00216{bottom:565.105560px;}
.y6f_c00216{bottom:565.625208px;}
.y70_c00216{bottom:566.109192px;}
.y71_c00216{bottom:566.777664px;}
.y72_c00216{bottom:567.209688px;}
.y73_c00216{bottom:567.612648px;}
.y74_c00216{bottom:568.147296px;}
.y75_c00216{bottom:568.659552px;}
.y76_c00216{bottom:569.107680px;}
.y61_c00216{bottom:586.173000px;}
.y62_c00216{bottom:586.653840px;}
.y63_c00216{bottom:587.216544px;}
.y64_c00216{bottom:587.895600px;}
.y65_c00216{bottom:589.324920px;}
.y66_c00216{bottom:589.616496px;}
.y67_c00216{bottom:589.880112px;}
.y68_c00216{bottom:590.717520px;}
.y69_c00216{bottom:591.095808px;}
.y6a_c00216{bottom:591.967704px;}
.y6b_c00216{bottom:592.248120px;}
.y57_c00216{bottom:630.183000px;}
.y58_c00216{bottom:630.977427px;}
.y59_c00216{bottom:632.050620px;}
.y5a_c00216{bottom:632.745163px;}
.y5b_c00216{bottom:634.231559px;}
.y5c_c00216{bottom:634.644914px;}
.y5d_c00216{bottom:634.957620px;}
.y5e_c00216{bottom:635.577346px;}
.y5f_c00216{bottom:635.862283px;}
.y60_c00216{bottom:636.233793px;}
.y4f_c00216{bottom:653.133000px;}
.y50_c00216{bottom:653.919144px;}
.y51_c00216{bottom:655.249536px;}
.y52_c00216{bottom:655.573704px;}
.y53_c00216{bottom:656.295048px;}
.y54_c00216{bottom:656.649864px;}
.y55_c00216{bottom:657.401160px;}
.y56_c00216{bottom:657.756456px;}
.y46_c00216{bottom:676.045500px;}
.y47_c00216{bottom:676.560741px;}
.y48_c00216{bottom:677.216463px;}
.y49_c00216{bottom:678.062832px;}
.y4a_c00216{bottom:679.404057px;}
.y4b_c00216{bottom:680.171721px;}
.y4c_c00216{bottom:680.498691px;}
.y4d_c00216{bottom:681.348354px;}
.y4e_c00216{bottom:682.219104px;}
.y3c_c00216{bottom:698.494500px;}
.y3d_c00216{bottom:699.249066px;}
.y3e_c00216{bottom:700.219149px;}
.y3f_c00216{bottom:700.648131px;}
.y40_c00216{bottom:701.337660px;}
.y41_c00216{bottom:702.076922px;}
.y42_c00216{bottom:702.687192px;}
.y43_c00216{bottom:703.723082px;}
.y44_c00216{bottom:704.188572px;}
.y45_c00216{bottom:704.826915px;}
.y32_c00216{bottom:721.444500px;}
.y33_c00216{bottom:721.794636px;}
.y34_c00216{bottom:722.512215px;}
.y35_c00216{bottom:723.027726px;}
.y36_c00216{bottom:723.728403px;}
.y37_c00216{bottom:724.564809px;}
.y38_c00216{bottom:725.090040px;}
.y39_c00216{bottom:726.334173px;}
.y3a_c00216{bottom:726.626340px;}
.y3b_c00216{bottom:727.506297px;}
.y2e_c00216{bottom:746.010590px;}
.y2f_c00216{bottom:746.647364px;}
.y30_c00216{bottom:747.663114px;}
.y31_c00216{bottom:749.100804px;}
.y24_c00216{bottom:765.996000px;}
.y25_c00216{bottom:766.603163px;}
.y26_c00216{bottom:767.621999px;}
.y27_c00216{bottom:768.332607px;}
.y28_c00216{bottom:768.758361px;}
.y29_c00216{bottom:770.079534px;}
.y2a_c00216{bottom:770.570934px;}
.y2b_c00216{bottom:771.220496px;}
.y2c_c00216{bottom:772.018957px;}
.y2d_c00216{bottom:773.051370px;}
.y1c_c00216{bottom:788.676000px;}
.y1d_c00216{bottom:789.252576px;}
.y1e_c00216{bottom:789.828096px;}
.y1f_c00216{bottom:791.248845px;}
.y20_c00216{bottom:792.478656px;}
.y21_c00216{bottom:792.908976px;}
.y22_c00216{bottom:794.471328px;}
.y23_c00216{bottom:796.213992px;}
.y13_c00216{bottom:811.356000px;}
.y14_c00216{bottom:812.045252px;}
.y15_c00216{bottom:812.647279px;}
.y16_c00216{bottom:812.921392px;}
.y17_c00216{bottom:814.184574px;}
.y18_c00216{bottom:815.174273px;}
.y19_c00216{bottom:815.581221px;}
.y1a_c00216{bottom:816.149985px;}
.y1b_c00216{bottom:817.271322px;}
.y9_c00216{bottom:834.036000px;}
.ya_c00216{bottom:834.862122px;}
.yb_c00216{bottom:835.777971px;}
.yc_c00216{bottom:836.578617px;}
.yd_c00216{bottom:837.489318px;}
.ye_c00216{bottom:838.394211px;}
.yf_c00216{bottom:839.216538px;}
.y10_c00216{bottom:839.995734px;}
.y11_c00216{bottom:840.973953px;}
.y12_c00216{bottom:842.122980px;}
.y2_c00216{bottom:880.476000px;}
.y3_c00216{bottom:881.088252px;}
.y4_c00216{bottom:881.506239px;}
.y5_c00216{bottom:881.905218px;}
.y6_c00216{bottom:882.347424px;}
.y7_c00216{bottom:884.141061px;}
.y8_c00216{bottom:885.423993px;}
.y1_c00216{bottom:970.380000px;}
.h2_c00216{height:39.900000px;}
.h19_c00216{height:46.200000px;}
.h1a_c00216{height:51.450000px;}
.h1b_c00216{height:52.501680px;}
.h1c_c00216{height:53.551714px;}
.h1d_c00216{height:55.650000px;}
.h18_c00216{height:60.905146px;}
.h16_c00216{height:64.057205px;}
.h12_c00216{height:66.157441px;}
.h11_c00216{height:66.159558px;}
.h17_c00216{height:67.207560px;}
.h13_c00216{height:67.209710px;}
.h7_c00216{height:67.214816px;}
.h14_c00216{height:68.257678px;}
.hc_c00216{height:68.258735px;}
.hd_c00216{height:68.259861px;}
.h6_c00216{height:68.266515px;}
.h15_c00216{height:69.307796px;}
.hf_c00216{height:69.308870px;}
.h10_c00216{height:69.310013px;}
.hb_c00216{height:70.361396px;}
.ha_c00216{height:70.362697px;}
.h5_c00216{height:70.365510px;}
.h9_c00216{height:71.411566px;}
.h8_c00216{height:71.415742px;}
.h4_c00216{height:71.417277px;}
.he_c00216{height:73.509407px;}
.h3_c00216{height:93.465138px;}
.h1_c00216{height:1005.000000px;}
.h0_c00216{height:1005.150000px;}
.w1_c00216{width:713.250000px;}
.w0_c00216{width:713.550000px;}
.x0_c00216{left:0.000000px;}
.x99_c00216{left:88.560000px;}
.x93_c00216{left:90.558000px;}
.x1_c00216{left:96.660000px;}
.x48_c00216{left:101.736000px;}
.x12_c00216{left:114.471000px;}
.x9_c00216{left:116.919000px;}
.x2a_c00216{left:117.958500px;}
.x42_c00216{left:119.569500px;}
.x4e_c00216{left:121.155000px;}
.x54_c00216{left:122.508168px;}
.x6f_c00216{left:124.416000px;}
.x2b_c00216{left:137.410500px;}
.x1a_c00216{left:142.857000px;}
.x73_c00216{left:144.115500px;}
.x3c_c00216{left:145.503000px;}
.x13_c00216{left:147.292500px;}
.x49_c00216{left:148.467000px;}
.x4f_c00216{left:151.207500px;}
.x61_c00216{left:152.757000px;}
.xa_c00216{left:154.470000px;}
.x2_c00216{left:157.176000px;}
.x34_c00216{left:158.479500px;}
.x82_c00216{left:159.555000px;}
.x7a_c00216{left:165.163740px;}
.x5d_c00216{left:167.534784px;}
.x1b_c00216{left:169.017000px;}
.x74_c00216{left:171.132000px;}
.x14_c00216{left:175.960500px;}
.x2c_c00216{left:177.276000px;}
.x83_c00216{left:178.891500px;}
.x8c_c00216{left:180.090000px;}
.x3d_c00216{left:181.932000px;}
.x6b_c00216{left:184.005000px;}
.x7f_c00216{left:185.188500px;}
.x50_c00216{left:186.376500px;}
.x15_c00216{left:189.013500px;}
.x3_c00216{left:191.190000px;}
.x5e_c00216{left:193.546284px;}
.xb_c00216{left:196.099500px;}
.x8f_c00216{left:197.100000px;}
.x6c_c00216{left:204.873000px;}
.x2d_c00216{left:205.915500px;}
.x35_c00216{left:209.536500px;}
.x4a_c00216{left:211.596000px;}
.x4_c00216{left:214.411500px;}
.x62_c00216{left:216.787500px;}
.x8d_c00216{left:218.160000px;}
.x90_c00216{left:219.780000px;}
.x7b_c00216{left:222.099240px;}
.x55_c00216{left:223.428168px;}
.x88_c00216{left:226.132500px;}
.x21_c00216{left:228.984000px;}
.x70_c00216{left:230.290500px;}
.xc_c00216{left:232.492500px;}
.x1c_c00216{left:233.596500px;}
.x5_c00216{left:236.577000px;}
.x75_c00216{left:241.884000px;}
.x27_c00216{left:243.791583px;}
.x2e_c00216{left:244.842000px;}
.x84_c00216{left:247.557000px;}
.x16_c00216{left:249.165000px;}
.x43_c00216{left:251.853000px;}
.x66_c00216{left:254.367969px;}
.x56_c00216{left:255.906168px;}
.x5f_c00216{left:257.540784px;}
.x6_c00216{left:261.144000px;}
.x36_c00216{left:268.405500px;}
.x63_c00216{left:269.691000px;}
.x44_c00216{left:272.113500px;}
.xd_c00216{left:273.888000px;}
.x28_c00216{left:279.187819px;}
.x76_c00216{left:281.581500px;}
.x57_c00216{left:286.155168px;}
.x9a_c00216{left:287.820000px;}
.x1d_c00216{left:289.497000px;}
.x2f_c00216{left:291.309000px;}
.x17_c00216{left:296.293500px;}
.x80_c00216{left:300.402000px;}
.x91_c00216{left:301.590000px;}
.x3e_c00216{left:303.465000px;}
.x37_c00216{left:307.314000px;}
.x1e_c00216{left:309.057000px;}
.x77_c00216{left:310.440000px;}
.x22_c00216{left:312.171000px;}
.x67_c00216{left:313.752489px;}
.xe_c00216{left:315.019500px;}
.x45_c00216{left:317.197500px;}
.x89_c00216{left:319.060500px;}
.x30_c00216{left:320.488500px;}
.x8e_c00216{left:322.380000px;}
.x9b_c00216{left:324.000000px;}
.x81_c00216{left:326.154000px;}
.x58_c00216{left:327.934668px;}
.x6d_c00216{left:334.471500px;}
.x23_c00216{left:335.571000px;}
.x7c_c00216{left:337.986240px;}
.x38_c00216{left:339.433500px;}
.x18_c00216{left:342.756000px;}
.x3f_c00216{left:346.113000px;}
.xf_c00216{left:352.398000px;}
.x59_c00216{left:354.936168px;}
.x92_c00216{left:356.400000px;}
.x8a_c00216{left:358.239000px;}
.x7_c00216{left:360.790500px;}
.x40_c00216{left:364.278000px;}
.x24_c00216{left:366.502500px;}
.x85_c00216{left:369.519000px;}
.x7d_c00216{left:373.150740px;}
.x68_c00216{left:374.778034px;}
.x6e_c00216{left:376.623000px;}
.x1f_c00216{left:380.073000px;}
.x4b_c00216{left:382.596000px;}
.x71_c00216{left:384.496500px;}
.x46_c00216{left:386.329500px;}
.x10_c00216{left:387.816000px;}
.x31_c00216{left:389.607000px;}
.x6a_c00216{left:392.750155px;}
.x39_c00216{left:393.954000px;}
.x19_c00216{left:396.153000px;}
.x8b_c00216{left:398.400000px;}
.x87_c00216{left:400.930740px;}
.x78_c00216{left:403.011000px;}
.x25_c00216{left:404.524500px;}
.x32_c00216{left:405.838500px;}
.x94_c00216{left:407.289000px;}
.x47_c00216{left:408.535500px;}
.x41_c00216{left:411.481500px;}
.x5a_c00216{left:413.536668px;}
.x29_c00216{left:415.526919px;}
.x3a_c00216{left:418.453500px;}
.x60_c00216{left:420.287784px;}
.x79_c00216{left:425.757000px;}
.x51_c00216{left:428.830500px;}
.x8_c00216{left:432.064500px;}
.x4c_c00216{left:435.811500px;}
.x5b_c00216{left:445.552668px;}
.x7e_c00216{left:447.891240px;}
.x86_c00216{left:449.748000px;}
.x3b_c00216{left:452.050500px;}
.x26_c00216{left:453.687000px;}
.x33_c00216{left:454.725000px;}
.x4d_c00216{left:457.665000px;}
.x20_c00216{left:459.285000px;}
.x69_c00216{left:462.492039px;}
.x5c_c00216{left:473.560668px;}
.x64_c00216{left:479.812500px;}
.x72_c00216{left:482.184000px;}
.x52_c00216{left:483.324000px;}
.x11_c00216{left:484.509000px;}
.x53_c00216{left:500.850000px;}
.x97_c00216{left:508.965012px;}
.x65_c00216{left:512.656500px;}
.x95_c00216{left:518.464500px;}
.x98_c00216{left:534.345132px;}
.x96_c00216{left:546.825000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs0_c00216{font-size:35.466667pt;}
.fs17_c00216{font-size:41.066667pt;}
.fs18_c00216{font-size:45.733333pt;}
.fs19_c00216{font-size:46.668160pt;}
.fs1a_c00216{font-size:47.601523pt;}
.fs1b_c00216{font-size:49.466667pt;}
.fs16_c00216{font-size:54.137907pt;}
.fs14_c00216{font-size:56.939738pt;}
.fs10_c00216{font-size:58.806615pt;}
.fsf_c00216{font-size:58.808496pt;}
.fs15_c00216{font-size:59.740053pt;}
.fs11_c00216{font-size:59.741964pt;}
.fs5_c00216{font-size:59.746503pt;}
.fs12_c00216{font-size:60.673491pt;}
.fsa_c00216{font-size:60.674432pt;}
.fsb_c00216{font-size:60.675432pt;}
.fs4_c00216{font-size:60.681346pt;}
.fs13_c00216{font-size:61.606930pt;}
.fsd_c00216{font-size:61.607884pt;}
.fse_c00216{font-size:61.608901pt;}
.fs9_c00216{font-size:62.543463pt;}
.fs8_c00216{font-size:62.544620pt;}
.fs3_c00216{font-size:62.547120pt;}
.fs7_c00216{font-size:63.476947pt;}
.fs6_c00216{font-size:63.480660pt;}
.fs2_c00216{font-size:63.482024pt;}
.fsc_c00216{font-size:65.341695pt;}
.fs1_c00216{font-size:83.080122pt;}
.y0_c00216{bottom:0.000000pt;}
.yfb_c00216{bottom:159.601333pt;}
.yf8_c00216{bottom:161.267509pt;}
.yf9_c00216{bottom:161.267605pt;}
.yf4_c00216{bottom:161.267733pt;}
.yf7_c00216{bottom:161.267840pt;}
.yf6_c00216{bottom:161.268053pt;}
.yfa_c00216{bottom:161.268075pt;}
.yf3_c00216{bottom:161.268171pt;}
.yf5_c00216{bottom:161.268373pt;}
.ye2_c00216{bottom:174.961333pt;}
.ye3_c00216{bottom:175.385536pt;}
.ye4_c00216{bottom:175.825184pt;}
.ye5_c00216{bottom:176.032736pt;}
.ye6_c00216{bottom:176.178667pt;}
.ye7_c00216{bottom:176.383936pt;}
.ye8_c00216{bottom:176.616491pt;}
.ye9_c00216{bottom:176.706496pt;}
.yea_c00216{bottom:176.756416pt;}
.yeb_c00216{bottom:176.979093pt;}
.yec_c00216{bottom:177.086645pt;}
.yed_c00216{bottom:177.213643pt;}
.yee_c00216{bottom:177.290421pt;}
.yef_c00216{bottom:177.518880pt;}
.yf0_c00216{bottom:177.726368pt;}
.yf1_c00216{bottom:178.004224pt;}
.yf2_c00216{bottom:178.205899pt;}
.ye1_c00216{bottom:222.565333pt;}
.ye0_c00216{bottom:238.444000pt;}
.yd6_c00216{bottom:260.401333pt;}
.yd7_c00216{bottom:260.788664pt;}
.yd8_c00216{bottom:261.381256pt;}
.yd9_c00216{bottom:261.580399pt;}
.yda_c00216{bottom:261.939649pt;}
.ydb_c00216{bottom:262.282936pt;}
.ydc_c00216{bottom:262.654233pt;}
.ydd_c00216{bottom:263.106963pt;}
.yde_c00216{bottom:263.299623pt;}
.ydf_c00216{bottom:263.571045pt;}
.ycf_c00216{bottom:279.839960pt;}
.yd0_c00216{bottom:280.765760pt;}
.yd1_c00216{bottom:281.841940pt;}
.yd2_c00216{bottom:282.356800pt;}
.yd3_c00216{bottom:283.080480pt;}
.yd4_c00216{bottom:283.541500pt;}
.yd5_c00216{bottom:284.193240pt;}
.yc6_c00216{bottom:300.242667pt;}
.yc7_c00216{bottom:300.786427pt;}
.yc8_c00216{bottom:301.044247pt;}
.yc9_c00216{bottom:301.379067pt;}
.yca_c00216{bottom:301.959787pt;}
.ycb_c00216{bottom:302.866027pt;}
.ycc_c00216{bottom:303.585947pt;}
.ycd_c00216{bottom:304.076347pt;}
.yce_c00216{bottom:304.655667pt;}
.ybf_c00216{bottom:320.402667pt;}
.yc0_c00216{bottom:320.879052pt;}
.yc1_c00216{bottom:321.329235pt;}
.yc2_c00216{bottom:322.063657pt;}
.yc3_c00216{bottom:323.070239pt;}
.yc4_c00216{bottom:323.459380pt;}
.yc5_c00216{bottom:324.454900pt;}
.yb6_c00216{bottom:340.560153pt;}
.yb7_c00216{bottom:341.114433pt;}
.yb8_c00216{bottom:341.444953pt;}
.yb9_c00216{bottom:341.873573pt;}
.yba_c00216{bottom:342.395413pt;}
.ybb_c00216{bottom:342.947293pt;}
.ybc_c00216{bottom:343.418733pt;}
.ybd_c00216{bottom:343.887593pt;}
.ybe_c00216{bottom:344.884133pt;}
.yac_c00216{bottom:360.482667pt;}
.yad_c00216{bottom:360.763607pt;}
.yae_c00216{bottom:361.123827pt;}
.yaf_c00216{bottom:361.922727pt;}
.yb0_c00216{bottom:362.067187pt;}
.yb1_c00216{bottom:362.596487pt;}
.yb2_c00216{bottom:362.981267pt;}
.yb3_c00216{bottom:363.306527pt;}
.yb4_c00216{bottom:364.215547pt;}
.yb5_c00216{bottom:364.518827pt;}
.ya3_c00216{bottom:380.162667pt;}
.ya4_c00216{bottom:380.530365pt;}
.ya5_c00216{bottom:381.762548pt;}
.ya6_c00216{bottom:382.347008pt;}
.ya7_c00216{bottom:383.080683pt;}
.ya8_c00216{bottom:383.472227pt;}
.ya9_c00216{bottom:384.092772pt;}
.yaa_c00216{bottom:384.558096pt;}
.yab_c00216{bottom:385.568939pt;}
.y9b_c00216{bottom:400.562667pt;}
.y9c_c00216{bottom:400.955887pt;}
.y9d_c00216{bottom:401.382727pt;}
.y9e_c00216{bottom:401.660967pt;}
.y9f_c00216{bottom:402.820147pt;}
.ya0_c00216{bottom:403.388947pt;}
.ya1_c00216{bottom:403.950967pt;}
.ya2_c00216{bottom:404.951647pt;}
.y93_c00216{bottom:420.715569pt;}
.y94_c00216{bottom:421.756233pt;}
.y95_c00216{bottom:422.598297pt;}
.y96_c00216{bottom:423.093225pt;}
.y97_c00216{bottom:423.519325pt;}
.y98_c00216{bottom:423.725632pt;}
.y99_c00216{bottom:424.546775pt;}
.y9a_c00216{bottom:424.927941pt;}
.y8b_c00216{bottom:440.845643pt;}
.y8c_c00216{bottom:441.352339pt;}
.y8d_c00216{bottom:442.203677pt;}
.y8e_c00216{bottom:442.758865pt;}
.y8f_c00216{bottom:443.602883pt;}
.y90_c00216{bottom:444.470364pt;}
.y91_c00216{bottom:445.022356pt;}
.y92_c00216{bottom:445.717131pt;}
.y7f_c00216{bottom:460.801333pt;}
.y80_c00216{bottom:461.043413pt;}
.y81_c00216{bottom:461.279872pt;}
.y82_c00216{bottom:461.798372pt;}
.y83_c00216{bottom:462.247444pt;}
.y84_c00216{bottom:463.046875pt;}
.y85_c00216{bottom:463.650896pt;}
.y86_c00216{bottom:464.723165pt;}
.y87_c00216{bottom:465.303477pt;}
.y88_c00216{bottom:465.689989pt;}
.y89_c00216{bottom:466.222044pt;}
.y8a_c00216{bottom:466.718353pt;}
.y77_c00216{bottom:480.718709pt;}
.y78_c00216{bottom:481.370635pt;}
.y79_c00216{bottom:481.740576pt;}
.y7a_c00216{bottom:482.650720pt;}
.y7b_c00216{bottom:483.413856pt;}
.y7c_c00216{bottom:483.995168pt;}
.y7d_c00216{bottom:484.965344pt;}
.y7e_c00216{bottom:485.181643pt;}
.y6c_c00216{bottom:500.880747pt;}
.y6d_c00216{bottom:501.334123pt;}
.y6e_c00216{bottom:502.316053pt;}
.y6f_c00216{bottom:502.777963pt;}
.y70_c00216{bottom:503.208171pt;}
.y71_c00216{bottom:503.802368pt;}
.y72_c00216{bottom:504.186389pt;}
.y73_c00216{bottom:504.544576pt;}
.y74_c00216{bottom:505.019819pt;}
.y75_c00216{bottom:505.475157pt;}
.y76_c00216{bottom:505.873493pt;}
.y61_c00216{bottom:521.042667pt;}
.y62_c00216{bottom:521.470080pt;}
.y63_c00216{bottom:521.970261pt;}
.y64_c00216{bottom:522.573867pt;}
.y65_c00216{bottom:523.844373pt;}
.y66_c00216{bottom:524.103552pt;}
.y67_c00216{bottom:524.337877pt;}
.y68_c00216{bottom:525.082240pt;}
.y69_c00216{bottom:525.418496pt;}
.y6a_c00216{bottom:526.193515pt;}
.y6b_c00216{bottom:526.442773pt;}
.y57_c00216{bottom:560.162667pt;}
.y58_c00216{bottom:560.868824pt;}
.y59_c00216{bottom:561.822773pt;}
.y5a_c00216{bottom:562.440145pt;}
.y5b_c00216{bottom:563.761385pt;}
.y5c_c00216{bottom:564.128812pt;}
.y5d_c00216{bottom:564.406773pt;}
.y5e_c00216{bottom:564.957641pt;}
.y5f_c00216{bottom:565.210919pt;}
.y60_c00216{bottom:565.541149pt;}
.y4f_c00216{bottom:580.562667pt;}
.y50_c00216{bottom:581.261461pt;}
.y51_c00216{bottom:582.444032pt;}
.y52_c00216{bottom:582.732181pt;}
.y53_c00216{bottom:583.373376pt;}
.y54_c00216{bottom:583.688768pt;}
.y55_c00216{bottom:584.356587pt;}
.y56_c00216{bottom:584.672405pt;}
.y46_c00216{bottom:600.929333pt;}
.y47_c00216{bottom:601.387325pt;}
.y48_c00216{bottom:601.970189pt;}
.y49_c00216{bottom:602.722517pt;}
.y4a_c00216{bottom:603.914717pt;}
.y4b_c00216{bottom:604.597085pt;}
.y4c_c00216{bottom:604.887725pt;}
.y4d_c00216{bottom:605.642981pt;}
.y4e_c00216{bottom:606.416981pt;}
.y3c_c00216{bottom:620.884000pt;}
.y3d_c00216{bottom:621.554725pt;}
.y3e_c00216{bottom:622.417021pt;}
.y3f_c00216{bottom:622.798339pt;}
.y40_c00216{bottom:623.411253pt;}
.y41_c00216{bottom:624.068375pt;}
.y42_c00216{bottom:624.610837pt;}
.y43_c00216{bottom:625.531628pt;}
.y44_c00216{bottom:625.945397pt;}
.y45_c00216{bottom:626.512813pt;}
.y32_c00216{bottom:641.284000pt;}
.y33_c00216{bottom:641.595232pt;}
.y34_c00216{bottom:642.233080pt;}
.y35_c00216{bottom:642.691312pt;}
.y36_c00216{bottom:643.314136pt;}
.y37_c00216{bottom:644.057608pt;}
.y38_c00216{bottom:644.524480pt;}
.y39_c00216{bottom:645.630376pt;}
.y3a_c00216{bottom:645.890080pt;}
.y3b_c00216{bottom:646.672264pt;}
.y2e_c00216{bottom:663.120524pt;}
.y2f_c00216{bottom:663.686545pt;}
.y30_c00216{bottom:664.589435pt;}
.y31_c00216{bottom:665.867381pt;}
.y24_c00216{bottom:680.885333pt;}
.y25_c00216{bottom:681.425033pt;}
.y26_c00216{bottom:682.330665pt;}
.y27_c00216{bottom:682.962317pt;}
.y28_c00216{bottom:683.340765pt;}
.y29_c00216{bottom:684.515141pt;}
.y2a_c00216{bottom:684.951941pt;}
.y2b_c00216{bottom:685.529329pt;}
.y2c_c00216{bottom:686.239073pt;}
.y2d_c00216{bottom:687.156773pt;}
.y1c_c00216{bottom:701.045333pt;}
.y1d_c00216{bottom:701.557845pt;}
.y1e_c00216{bottom:702.069419pt;}
.y1f_c00216{bottom:703.332307pt;}
.y20_c00216{bottom:704.425472pt;}
.y21_c00216{bottom:704.807979pt;}
.y22_c00216{bottom:706.196736pt;}
.y23_c00216{bottom:707.745771pt;}
.y13_c00216{bottom:721.205333pt;}
.y14_c00216{bottom:721.818001pt;}
.y15_c00216{bottom:722.353137pt;}
.y16_c00216{bottom:722.596793pt;}
.y17_c00216{bottom:723.719621pt;}
.y18_c00216{bottom:724.599353pt;}
.y19_c00216{bottom:724.961085pt;}
.y1a_c00216{bottom:725.466653pt;}
.y1b_c00216{bottom:726.463397pt;}
.y9_c00216{bottom:741.365333pt;}
.ya_c00216{bottom:742.099664pt;}
.yb_c00216{bottom:742.913752pt;}
.yc_c00216{bottom:743.625437pt;}
.yd_c00216{bottom:744.434949pt;}
.ye_c00216{bottom:745.239299pt;}
.yf_c00216{bottom:745.970256pt;}
.y10_c00216{bottom:746.662875pt;}
.y11_c00216{bottom:747.532403pt;}
.y12_c00216{bottom:748.553760pt;}
.y2_c00216{bottom:782.645333pt;}
.y3_c00216{bottom:783.189557pt;}
.y4_c00216{bottom:783.561101pt;}
.y5_c00216{bottom:783.915749pt;}
.y6_c00216{bottom:784.308821pt;}
.y7_c00216{bottom:785.903165pt;}
.y8_c00216{bottom:787.043549pt;}
.y1_c00216{bottom:862.560000pt;}
.h2_c00216{height:35.466667pt;}
.h19_c00216{height:41.066667pt;}
.h1a_c00216{height:45.733333pt;}
.h1b_c00216{height:46.668160pt;}
.h1c_c00216{height:47.601523pt;}
.h1d_c00216{height:49.466667pt;}
.h18_c00216{height:54.137907pt;}
.h16_c00216{height:56.939738pt;}
.h12_c00216{height:58.806615pt;}
.h11_c00216{height:58.808496pt;}
.h17_c00216{height:59.740053pt;}
.h13_c00216{height:59.741964pt;}
.h7_c00216{height:59.746503pt;}
.h14_c00216{height:60.673491pt;}
.hc_c00216{height:60.674432pt;}
.hd_c00216{height:60.675432pt;}
.h6_c00216{height:60.681346pt;}
.h15_c00216{height:61.606930pt;}
.hf_c00216{height:61.607884pt;}
.h10_c00216{height:61.608901pt;}
.hb_c00216{height:62.543463pt;}
.ha_c00216{height:62.544620pt;}
.h5_c00216{height:62.547120pt;}
.h9_c00216{height:63.476947pt;}
.h8_c00216{height:63.480660pt;}
.h4_c00216{height:63.482024pt;}
.he_c00216{height:65.341695pt;}
.h3_c00216{height:83.080122pt;}
.h1_c00216{height:893.333333pt;}
.h0_c00216{height:893.466667pt;}
.w1_c00216{width:634.000000pt;}
.w0_c00216{width:634.266667pt;}
.x0_c00216{left:0.000000pt;}
.x99_c00216{left:78.720000pt;}
.x93_c00216{left:80.496000pt;}
.x1_c00216{left:85.920000pt;}
.x48_c00216{left:90.432000pt;}
.x12_c00216{left:101.752000pt;}
.x9_c00216{left:103.928000pt;}
.x2a_c00216{left:104.852000pt;}
.x42_c00216{left:106.284000pt;}
.x4e_c00216{left:107.693333pt;}
.x54_c00216{left:108.896149pt;}
.x6f_c00216{left:110.592000pt;}
.x2b_c00216{left:122.142667pt;}
.x1a_c00216{left:126.984000pt;}
.x73_c00216{left:128.102667pt;}
.x3c_c00216{left:129.336000pt;}
.x13_c00216{left:130.926667pt;}
.x49_c00216{left:131.970667pt;}
.x4f_c00216{left:134.406667pt;}
.x61_c00216{left:135.784000pt;}
.xa_c00216{left:137.306667pt;}
.x2_c00216{left:139.712000pt;}
.x34_c00216{left:140.870667pt;}
.x82_c00216{left:141.826667pt;}
.x7a_c00216{left:146.812213pt;}
.x5d_c00216{left:148.919808pt;}
.x1b_c00216{left:150.237333pt;}
.x74_c00216{left:152.117333pt;}
.x14_c00216{left:156.409333pt;}
.x2c_c00216{left:157.578667pt;}
.x83_c00216{left:159.014667pt;}
.x8c_c00216{left:160.080000pt;}
.x3d_c00216{left:161.717333pt;}
.x6b_c00216{left:163.560000pt;}
.x7f_c00216{left:164.612000pt;}
.x50_c00216{left:165.668000pt;}
.x15_c00216{left:168.012000pt;}
.x3_c00216{left:169.946667pt;}
.x5e_c00216{left:172.041141pt;}
.xb_c00216{left:174.310667pt;}
.x8f_c00216{left:175.200000pt;}
.x6c_c00216{left:182.109333pt;}
.x2d_c00216{left:183.036000pt;}
.x35_c00216{left:186.254667pt;}
.x4a_c00216{left:188.085333pt;}
.x4_c00216{left:190.588000pt;}
.x62_c00216{left:192.700000pt;}
.x8d_c00216{left:193.920000pt;}
.x90_c00216{left:195.360000pt;}
.x7b_c00216{left:197.421547pt;}
.x55_c00216{left:198.602816pt;}
.x88_c00216{left:201.006667pt;}
.x21_c00216{left:203.541333pt;}
.x70_c00216{left:204.702667pt;}
.xc_c00216{left:206.660000pt;}
.x1c_c00216{left:207.641333pt;}
.x5_c00216{left:210.290667pt;}
.x75_c00216{left:215.008000pt;}
.x27_c00216{left:216.703629pt;}
.x2e_c00216{left:217.637333pt;}
.x84_c00216{left:220.050667pt;}
.x16_c00216{left:221.480000pt;}
.x43_c00216{left:223.869333pt;}
.x66_c00216{left:226.104861pt;}
.x56_c00216{left:227.472149pt;}
.x5f_c00216{left:228.925141pt;}
.x6_c00216{left:232.128000pt;}
.x36_c00216{left:238.582667pt;}
.x63_c00216{left:239.725333pt;}
.x44_c00216{left:241.878667pt;}
.xd_c00216{left:243.456000pt;}
.x28_c00216{left:248.166951pt;}
.x76_c00216{left:250.294667pt;}
.x57_c00216{left:254.360149pt;}
.x9a_c00216{left:255.840000pt;}
.x1d_c00216{left:257.330667pt;}
.x2f_c00216{left:258.941333pt;}
.x17_c00216{left:263.372000pt;}
.x80_c00216{left:267.024000pt;}
.x91_c00216{left:268.080000pt;}
.x3e_c00216{left:269.746667pt;}
.x37_c00216{left:273.168000pt;}
.x1e_c00216{left:274.717333pt;}
.x77_c00216{left:275.946667pt;}
.x22_c00216{left:277.485333pt;}
.x67_c00216{left:278.891101pt;}
.xe_c00216{left:280.017333pt;}
.x45_c00216{left:281.953333pt;}
.x89_c00216{left:283.609333pt;}
.x30_c00216{left:284.878667pt;}
.x8e_c00216{left:286.560000pt;}
.x9b_c00216{left:288.000000pt;}
.x81_c00216{left:289.914667pt;}
.x58_c00216{left:291.497483pt;}
.x6d_c00216{left:297.308000pt;}
.x23_c00216{left:298.285333pt;}
.x7c_c00216{left:300.432213pt;}
.x38_c00216{left:301.718667pt;}
.x18_c00216{left:304.672000pt;}
.x3f_c00216{left:307.656000pt;}
.xf_c00216{left:313.242667pt;}
.x59_c00216{left:315.498816pt;}
.x92_c00216{left:316.800000pt;}
.x8a_c00216{left:318.434667pt;}
.x7_c00216{left:320.702667pt;}
.x40_c00216{left:323.802667pt;}
.x24_c00216{left:325.780000pt;}
.x85_c00216{left:328.461333pt;}
.x7d_c00216{left:331.689547pt;}
.x68_c00216{left:333.136031pt;}
.x6e_c00216{left:334.776000pt;}
.x1f_c00216{left:337.842667pt;}
.x4b_c00216{left:340.085333pt;}
.x71_c00216{left:341.774667pt;}
.x46_c00216{left:343.404000pt;}
.x10_c00216{left:344.725333pt;}
.x31_c00216{left:346.317333pt;}
.x6a_c00216{left:349.111249pt;}
.x39_c00216{left:350.181333pt;}
.x19_c00216{left:352.136000pt;}
.x8b_c00216{left:354.133333pt;}
.x87_c00216{left:356.382880pt;}
.x78_c00216{left:358.232000pt;}
.x25_c00216{left:359.577333pt;}
.x32_c00216{left:360.745333pt;}
.x94_c00216{left:362.034667pt;}
.x47_c00216{left:363.142667pt;}
.x41_c00216{left:365.761333pt;}
.x5a_c00216{left:367.588149pt;}
.x29_c00216{left:369.357261pt;}
.x3a_c00216{left:371.958667pt;}
.x60_c00216{left:373.589141pt;}
.x79_c00216{left:378.450667pt;}
.x51_c00216{left:381.182667pt;}
.x8_c00216{left:384.057333pt;}
.x4c_c00216{left:387.388000pt;}
.x5b_c00216{left:396.046816pt;}
.x7e_c00216{left:398.125547pt;}
.x86_c00216{left:399.776000pt;}
.x3b_c00216{left:401.822667pt;}
.x26_c00216{left:403.277333pt;}
.x33_c00216{left:404.200000pt;}
.x4d_c00216{left:406.813333pt;}
.x20_c00216{left:408.253333pt;}
.x69_c00216{left:411.104035pt;}
.x5c_c00216{left:420.942816pt;}
.x64_c00216{left:426.500000pt;}
.x72_c00216{left:428.608000pt;}
.x52_c00216{left:429.621333pt;}
.x11_c00216{left:430.674667pt;}
.x53_c00216{left:445.200000pt;}
.x97_c00216{left:452.413344pt;}
.x65_c00216{left:455.694667pt;}
.x95_c00216{left:460.857333pt;}
.x98_c00216{left:474.973451pt;}
.x96_c00216{left:486.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m72_c00217{transform:matrix(0.098845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098845,0.000000,0.000000,0.250000,0,0);}
.m87_c00217{transform:matrix(0.115340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115340,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.121320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121320,0.000000,0.000000,0.250000,0,0);}
.m5d_c00217{transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147770,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{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);}
.m59_c00217{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);}
.m41_c00217{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);}
.md_c00217{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m54_c00217{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);}
.m11_c00217{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);}
.m1f_c00217{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);}
.m5e_c00217{transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{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);}
.m38_c00217{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);}
.m28_c00217{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);}
.m48_c00217{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);}
.m5a_c00217{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);}
.m86_c00217{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);}
.m49_c00217{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);}
.m20_c00217{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);}
.m4c_c00217{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m55_c00217{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);}
.m1a_c00217{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);}
.m24_c00217{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);}
.m94_c00217{transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{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);}
.m52_c00217{transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00217{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);}
.m36_c00217{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);}
.m12_c00217{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);}
.m91_c00217{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);}
.m90_c00217{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);}
.m17_c00217{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);}
.m16_c00217{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);}
.m1b_c00217{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);}
.m70_c00217{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);}
.m27_c00217{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);}
.m61_c00217{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);}
.m18_c00217{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);}
.m5c_c00217{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);}
.mc_c00217{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);}
.m19_c00217{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);}
.mf_c00217{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);}
.m34_c00217{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);}
.m29_c00217{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);}
.m2f_c00217{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);}
.m60_c00217{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);}
.m8c_c00217{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);}
.m31_c00217{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);}
.m7_c00217{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);}
.m6f_c00217{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);}
.m33_c00217{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);}
.m99_c00217{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);}
.m39_c00217{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);}
.m6d_c00217{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);}
.ma1_c00217{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);}
.m4b_c00217{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);}
.m14_c00217{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);}
.m2c_c00217{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);}
.m32_c00217{transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);}
.m95_c00217{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);}
.m45_c00217{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);}
.m2a_c00217{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);}
.m65_c00217{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_c00217{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);}
.m5b_c00217{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);}
.m10_c00217{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);}
.m2b_c00217{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);}
.m57_c00217{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);}
.m25_c00217{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);}
.m3a_c00217{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);}
.m4d_c00217{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);}
.m9b_c00217{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);}
.m77_c00217{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);}
.m76_c00217{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);}
.m2e_c00217{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);}
.m37_c00217{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_c00217{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);}
.m83_c00217{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);}
.m6b_c00217{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);}
.m58_c00217{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);}
.m51_c00217{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);}
.m3c_c00217{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);}
.m3b_c00217{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);}
.m56_c00217{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);}
.m9e_c00217{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);}
.m64_c00217{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);}
.m15_c00217{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);}
.m8d_c00217{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);}
.m6e_c00217{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);}
.m6a_c00217{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);}
.m46_c00217{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);}
.m92_c00217{transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);}
.m63_c00217{transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{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);}
.m1e_c00217{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);}
.m21_c00217{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);}
.m8a_c00217{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);}
.m2d_c00217{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);}
.m84_c00217{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);}
.m43_c00217{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);}
.m9f_c00217{transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{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);}
.m69_c00217{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);}
.m75_c00217{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);}
.m7a_c00217{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);}
.m9d_c00217{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);}
.m13_c00217{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);}
.m4a_c00217{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);}
.m98_c00217{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);}
.ma2_c00217{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);}
.m7e_c00217{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);}
.m23_c00217{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);}
.m8b_c00217{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);}
.m3e_c00217{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);}
.m9_c00217{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);}
.m6c_c00217{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);}
.m47_c00217{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);}
.m9c_c00217{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);}
.m9a_c00217{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);}
.m30_c00217{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{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);}
.m7d_c00217{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);}
.m8f_c00217{transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);}
.m42_c00217{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.m4f_c00217{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);}
.m82_c00217{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);}
.m7f_c00217{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);}
.m4e_c00217{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m96_c00217{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.ma0_c00217{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);}
.m44_c00217{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m74_c00217{transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);}
.m5f_c00217{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);}
.m40_c00217{transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);}
.m88_c00217{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);}
.m73_c00217{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);}
.m71_c00217{transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);}
.m80_c00217{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.272714,-0.003000,0.002750,0.249985,0,0);-ms-transform:matrix(0.272714,-0.003000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272714,-0.003000,0.002750,0.249985,0,0);}
.m22_c00217{transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285815,0.000000,0.000000,0.250000,0,0);}
.m67_c00217{transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299480,0.000000,0.000000,0.250000,0,0);}
.m79_c00217{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);}
.m2_c00217{transform:matrix(0.308741,-0.003396,0.002750,0.249985,0,0);-ms-transform:matrix(0.308741,-0.003396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.308741,-0.003396,0.002750,0.249985,0,0);}
.m68_c00217{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);}
.m50_c00217{transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);}
.m26_c00217{transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);}
.m85_c00217{transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);}
.m89_c00217{transform:matrix(0.337025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337025,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);}
.m53_c00217{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);}
.m97_c00217{transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350510,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.350624,-0.003857,0.002750,0.249985,0,0);-ms-transform:matrix(0.350624,-0.003857,0.002750,0.249985,0,0);-webkit-transform:matrix(0.350624,-0.003857,0.002750,0.249985,0,0);}
.m8e_c00217{transform:matrix(0.370120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370120,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.402171,-0.004424,0.002750,0.249985,0,0);-ms-transform:matrix(0.402171,-0.004424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.402171,-0.004424,0.002750,0.249985,0,0);}
.mb_c00217{transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.426414,-0.004691,0.002750,0.249985,0,0);-ms-transform:matrix(0.426414,-0.004691,0.002750,0.249985,0,0);-webkit-transform:matrix(0.426414,-0.004691,0.002750,0.249985,0,0);}
.ma_c00217{transform:matrix(0.459145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459145,0.000000,0.000000,0.250000,0,0);}
.m7b_c00217{transform:matrix(0.484145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484145,0.000000,0.000000,0.250000,0,0);}
.m93_c00217{transform:matrix(0.750930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750930,0.000000,0.000000,0.250000,0,0);}
.m78_c00217{transform:matrix(0.757055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757055,0.000000,0.000000,0.250000,0,0);}
.m7c_c00217{transform:matrix(0.772685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772685,0.000000,0.000000,0.250000,0,0);}
.ma3_c00217{transform:matrix(0.830930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830930,0.000000,0.000000,0.250000,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;}
.fs8_c00217{font-size:48.300000px;}
.fs7_c00217{font-size:52.500000px;}
.fs6_c00217{font-size:53.550000px;}
.fs9_c00217{font-size:54.600000px;}
.fsa_c00217{font-size:66.150000px;}
.fs4_c00217{font-size:68.250000px;}
.fs1_c00217{font-size:70.350000px;}
.fs3_c00217{font-size:71.400000px;}
.fs2_c00217{font-size:72.450000px;}
.fs5_c00217{font-size:73.500000px;}
.fs0_c00217{font-size:75.604574px;}
.y0_c00217{bottom:0.000000px;}
.y1f_c00217{bottom:139.860000px;}
.y1e_c00217{bottom:165.648000px;}
.y1d_c00217{bottom:183.673500px;}
.y1c_c00217{bottom:203.127000px;}
.y1b_c00217{bottom:508.809000px;}
.y1a_c00217{bottom:583.678500px;}
.y19_c00217{bottom:601.242000px;}
.y18_c00217{bottom:633.220500px;}
.y17_c00217{bottom:656.296500px;}
.y16_c00217{bottom:678.658500px;}
.y15_c00217{bottom:678.825000px;}
.y14_c00217{bottom:679.092000px;}
.y13_c00217{bottom:679.407000px;}
.y12_c00217{bottom:679.549500px;}
.y11_c00217{bottom:679.722000px;}
.y10_c00217{bottom:680.337000px;}
.yf_c00217{bottom:680.544000px;}
.ye_c00217{bottom:681.001500px;}
.yd_c00217{bottom:681.211500px;}
.yc_c00217{bottom:702.822000px;}
.yb_c00217{bottom:725.439000px;}
.ya_c00217{bottom:748.368000px;}
.y9_c00217{bottom:771.390000px;}
.y8_c00217{bottom:794.389500px;}
.y7_c00217{bottom:817.456500px;}
.y6_c00217{bottom:839.784000px;}
.y1_c00217{bottom:881.965500px;}
.y2_c00217{bottom:882.489589px;}
.y3_c00217{bottom:883.010973px;}
.y4_c00217{bottom:883.415718px;}
.y5_c00217{bottom:883.734828px;}
.ha_c00217{height:48.300000px;}
.h9_c00217{height:52.500000px;}
.h8_c00217{height:53.550000px;}
.hb_c00217{height:54.600000px;}
.hc_c00217{height:66.150000px;}
.h6_c00217{height:68.250000px;}
.h3_c00217{height:70.350000px;}
.h5_c00217{height:71.400000px;}
.h4_c00217{height:72.450000px;}
.h7_c00217{height:73.500000px;}
.h2_c00217{height:75.604574px;}
.h0_c00217{height:1008.450000px;}
.h1_c00217{height:1008.750000px;}
.w0_c00217{width:678.450000px;}
.w1_c00217{width:678.750000px;}
.x0_c00217{left:0.000000px;}
.x73_c00217{left:83.700000px;}
.x64_c00217{left:141.480000px;}
.x57_c00217{left:154.440000px;}
.x65_c00217{left:156.330000px;}
.x58_c00217{left:172.260000px;}
.x2c_c00217{left:175.230000px;}
.x6_c00217{left:177.120000px;}
.x1c_c00217{left:178.200000px;}
.x66_c00217{left:180.900000px;}
.x67_c00217{left:188.460000px;}
.x6c_c00217{left:191.700000px;}
.xe_c00217{left:192.780000px;}
.x22_c00217{left:201.150000px;}
.x1d_c00217{left:208.170000px;}
.x2d_c00217{left:216.000000px;}
.x41_c00217{left:217.618500px;}
.x27_c00217{left:218.970000px;}
.x7_c00217{left:221.940000px;}
.xf_c00217{left:223.830000px;}
.x23_c00217{left:225.990000px;}
.x3a_c00217{left:230.038500px;}
.x48_c00217{left:232.740000px;}
.x2e_c00217{left:234.900000px;}
.x68_c00217{left:236.250000px;}
.x42_c00217{left:238.408500px;}
.x50_c00217{left:243.270000px;}
.x49_c00217{left:244.350000px;}
.x59_c00217{left:246.510000px;}
.x17_c00217{left:248.940000px;}
.x6d_c00217{left:257.040000px;}
.x1e_c00217{left:258.930000px;}
.x5a_c00217{left:260.820000px;}
.x10_c00217{left:263.520000px;}
.x4a_c00217{left:267.300000px;}
.x51_c00217{left:274.050000px;}
.x2f_c00217{left:276.480000px;}
.x1_c00217{left:278.292000px;}
.x1f_c00217{left:282.690000px;}
.x35_c00217{left:283.930500px;}
.x18_c00217{left:285.390000px;}
.x28_c00217{left:287.280000px;}
.x5b_c00217{left:291.330000px;}
.x24_c00217{left:292.950000px;}
.x11_c00217{left:297.000000px;}
.x3b_c00217{left:298.888500px;}
.x8_c00217{left:304.290000px;}
.x69_c00217{left:306.180000px;}
.x43_c00217{left:315.898500px;}
.x12_c00217{left:316.980000px;}
.x5c_c00217{left:321.030000px;}
.x3c_c00217{left:322.108500px;}
.x2_c00217{left:325.936500px;}
.x5d_c00217{left:326.970000px;}
.x4b_c00217{left:336.150000px;}
.x19_c00217{left:340.740000px;}
.x25_c00217{left:341.820000px;}
.x29_c00217{left:345.330000px;}
.x53_c00217{left:354.240000px;}
.x9_c00217{left:356.670000px;}
.x36_c00217{left:360.888000px;}
.x13_c00217{left:362.880000px;}
.x52_c00217{left:364.500000px;}
.x4c_c00217{left:366.120000px;}
.x2a_c00217{left:369.360000px;}
.x3_c00217{left:373.335000px;}
.x30_c00217{left:378.270000px;}
.x14_c00217{left:379.890000px;}
.x37_c00217{left:382.482000px;}
.xa_c00217{left:383.670000px;}
.x6e_c00217{left:387.180000px;}
.x5e_c00217{left:389.610000px;}
.x44_c00217{left:394.738500px;}
.x38_c00217{left:400.305000px;}
.x4d_c00217{left:402.300000px;}
.x6f_c00217{left:403.920000px;}
.x3d_c00217{left:407.968500px;}
.x4_c00217{left:410.130000px;}
.x45_c00217{left:411.208500px;}
.x1a_c00217{left:414.990000px;}
.x31_c00217{left:420.120000px;}
.x54_c00217{left:427.140000px;}
.x3e_c00217{left:428.488500px;}
.x15_c00217{left:431.730000px;}
.x1b_c00217{left:437.400000px;}
.x5_c00217{left:439.140000px;}
.xb_c00217{left:441.450000px;}
.x6a_c00217{left:446.850000px;}
.x26_c00217{left:449.010000px;}
.x20_c00217{left:456.030000px;}
.x16_c00217{left:457.110000px;}
.x70_c00217{left:461.970000px;}
.x6b_c00217{left:465.480000px;}
.xc_c00217{left:466.830000px;}
.x2b_c00217{left:473.040000px;}
.x5f_c00217{left:476.010000px;}
.x71_c00217{left:481.950000px;}
.x3f_c00217{left:488.968500px;}
.xd_c00217{left:490.050000px;}
.x39_c00217{left:493.977000px;}
.x32_c00217{left:495.450000px;}
.x46_c00217{left:496.528500px;}
.x21_c00217{left:501.390000px;}
.x33_c00217{left:517.320000px;}
.x60_c00217{left:520.560000px;}
.x47_c00217{left:522.988500px;}
.x40_c00217{left:535.138500px;}
.x61_c00217{left:536.220000px;}
.x72_c00217{left:556.200000px;}
.x34_c00217{left:567.810000px;}
.x55_c00217{left:573.210000px;}
.x62_c00217{left:584.550000px;}
.x63_c00217{left:599.670000px;}
.x4e_c00217{left:640.710000px;}
.x56_c00217{left:648.000000px;}
.x4f_c00217{left:669.870000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.fs8_c00217{font-size:42.933333pt;}
.fs7_c00217{font-size:46.666667pt;}
.fs6_c00217{font-size:47.600000pt;}
.fs9_c00217{font-size:48.533333pt;}
.fsa_c00217{font-size:58.800000pt;}
.fs4_c00217{font-size:60.666667pt;}
.fs1_c00217{font-size:62.533333pt;}
.fs3_c00217{font-size:63.466667pt;}
.fs2_c00217{font-size:64.400000pt;}
.fs5_c00217{font-size:65.333333pt;}
.fs0_c00217{font-size:67.204065pt;}
.y0_c00217{bottom:0.000000pt;}
.y1f_c00217{bottom:124.320000pt;}
.y1e_c00217{bottom:147.242667pt;}
.y1d_c00217{bottom:163.265333pt;}
.y1c_c00217{bottom:180.557333pt;}
.y1b_c00217{bottom:452.274667pt;}
.y1a_c00217{bottom:518.825333pt;}
.y19_c00217{bottom:534.437333pt;}
.y18_c00217{bottom:562.862667pt;}
.y17_c00217{bottom:583.374667pt;}
.y16_c00217{bottom:603.252000pt;}
.y15_c00217{bottom:603.400000pt;}
.y14_c00217{bottom:603.637333pt;}
.y13_c00217{bottom:603.917333pt;}
.y12_c00217{bottom:604.044000pt;}
.y11_c00217{bottom:604.197333pt;}
.y10_c00217{bottom:604.744000pt;}
.yf_c00217{bottom:604.928000pt;}
.ye_c00217{bottom:605.334667pt;}
.yd_c00217{bottom:605.521333pt;}
.yc_c00217{bottom:624.730667pt;}
.yb_c00217{bottom:644.834667pt;}
.ya_c00217{bottom:665.216000pt;}
.y9_c00217{bottom:685.680000pt;}
.y8_c00217{bottom:706.124000pt;}
.y7_c00217{bottom:726.628000pt;}
.y6_c00217{bottom:746.474667pt;}
.y1_c00217{bottom:783.969333pt;}
.y2_c00217{bottom:784.435191pt;}
.y3_c00217{bottom:784.898643pt;}
.y4_c00217{bottom:785.258416pt;}
.y5_c00217{bottom:785.542069pt;}
.ha_c00217{height:42.933333pt;}
.h9_c00217{height:46.666667pt;}
.h8_c00217{height:47.600000pt;}
.hb_c00217{height:48.533333pt;}
.hc_c00217{height:58.800000pt;}
.h6_c00217{height:60.666667pt;}
.h3_c00217{height:62.533333pt;}
.h5_c00217{height:63.466667pt;}
.h4_c00217{height:64.400000pt;}
.h7_c00217{height:65.333333pt;}
.h2_c00217{height:67.204065pt;}
.h0_c00217{height:896.400000pt;}
.h1_c00217{height:896.666667pt;}
.w0_c00217{width:603.066667pt;}
.w1_c00217{width:603.333333pt;}
.x0_c00217{left:0.000000pt;}
.x73_c00217{left:74.400000pt;}
.x64_c00217{left:125.760000pt;}
.x57_c00217{left:137.280000pt;}
.x65_c00217{left:138.960000pt;}
.x58_c00217{left:153.120000pt;}
.x2c_c00217{left:155.760000pt;}
.x6_c00217{left:157.440000pt;}
.x1c_c00217{left:158.400000pt;}
.x66_c00217{left:160.800000pt;}
.x67_c00217{left:167.520000pt;}
.x6c_c00217{left:170.400000pt;}
.xe_c00217{left:171.360000pt;}
.x22_c00217{left:178.800000pt;}
.x1d_c00217{left:185.040000pt;}
.x2d_c00217{left:192.000000pt;}
.x41_c00217{left:193.438667pt;}
.x27_c00217{left:194.640000pt;}
.x7_c00217{left:197.280000pt;}
.xf_c00217{left:198.960000pt;}
.x23_c00217{left:200.880000pt;}
.x3a_c00217{left:204.478667pt;}
.x48_c00217{left:206.880000pt;}
.x2e_c00217{left:208.800000pt;}
.x68_c00217{left:210.000000pt;}
.x42_c00217{left:211.918667pt;}
.x50_c00217{left:216.240000pt;}
.x49_c00217{left:217.200000pt;}
.x59_c00217{left:219.120000pt;}
.x17_c00217{left:221.280000pt;}
.x6d_c00217{left:228.480000pt;}
.x1e_c00217{left:230.160000pt;}
.x5a_c00217{left:231.840000pt;}
.x10_c00217{left:234.240000pt;}
.x4a_c00217{left:237.600000pt;}
.x51_c00217{left:243.600000pt;}
.x2f_c00217{left:245.760000pt;}
.x1_c00217{left:247.370667pt;}
.x1f_c00217{left:251.280000pt;}
.x35_c00217{left:252.382667pt;}
.x18_c00217{left:253.680000pt;}
.x28_c00217{left:255.360000pt;}
.x5b_c00217{left:258.960000pt;}
.x24_c00217{left:260.400000pt;}
.x11_c00217{left:264.000000pt;}
.x3b_c00217{left:265.678667pt;}
.x8_c00217{left:270.480000pt;}
.x69_c00217{left:272.160000pt;}
.x43_c00217{left:280.798667pt;}
.x12_c00217{left:281.760000pt;}
.x5c_c00217{left:285.360000pt;}
.x3c_c00217{left:286.318667pt;}
.x2_c00217{left:289.721333pt;}
.x5d_c00217{left:290.640000pt;}
.x4b_c00217{left:298.800000pt;}
.x19_c00217{left:302.880000pt;}
.x25_c00217{left:303.840000pt;}
.x29_c00217{left:306.960000pt;}
.x53_c00217{left:314.880000pt;}
.x9_c00217{left:317.040000pt;}
.x36_c00217{left:320.789333pt;}
.x13_c00217{left:322.560000pt;}
.x52_c00217{left:324.000000pt;}
.x4c_c00217{left:325.440000pt;}
.x2a_c00217{left:328.320000pt;}
.x3_c00217{left:331.853333pt;}
.x30_c00217{left:336.240000pt;}
.x14_c00217{left:337.680000pt;}
.x37_c00217{left:339.984000pt;}
.xa_c00217{left:341.040000pt;}
.x6e_c00217{left:344.160000pt;}
.x5e_c00217{left:346.320000pt;}
.x44_c00217{left:350.878667pt;}
.x38_c00217{left:355.826667pt;}
.x4d_c00217{left:357.600000pt;}
.x6f_c00217{left:359.040000pt;}
.x3d_c00217{left:362.638667pt;}
.x4_c00217{left:364.560000pt;}
.x45_c00217{left:365.518667pt;}
.x1a_c00217{left:368.880000pt;}
.x31_c00217{left:373.440000pt;}
.x54_c00217{left:379.680000pt;}
.x3e_c00217{left:380.878667pt;}
.x15_c00217{left:383.760000pt;}
.x1b_c00217{left:388.800000pt;}
.x5_c00217{left:390.346667pt;}
.xb_c00217{left:392.400000pt;}
.x6a_c00217{left:397.200000pt;}
.x26_c00217{left:399.120000pt;}
.x20_c00217{left:405.360000pt;}
.x16_c00217{left:406.320000pt;}
.x70_c00217{left:410.640000pt;}
.x6b_c00217{left:413.760000pt;}
.xc_c00217{left:414.960000pt;}
.x2b_c00217{left:420.480000pt;}
.x5f_c00217{left:423.120000pt;}
.x71_c00217{left:428.400000pt;}
.x3f_c00217{left:434.638667pt;}
.xd_c00217{left:435.600000pt;}
.x39_c00217{left:439.090667pt;}
.x32_c00217{left:440.400000pt;}
.x46_c00217{left:441.358667pt;}
.x21_c00217{left:445.680000pt;}
.x33_c00217{left:459.840000pt;}
.x60_c00217{left:462.720000pt;}
.x47_c00217{left:464.878667pt;}
.x40_c00217{left:475.678667pt;}
.x61_c00217{left:476.640000pt;}
.x72_c00217{left:494.400000pt;}
.x34_c00217{left:504.720000pt;}
.x55_c00217{left:509.520000pt;}
.x62_c00217{left:519.600000pt;}
.x63_c00217{left:533.040000pt;}
.x4e_c00217{left:569.520000pt;}
.x56_c00217{left:576.000000pt;}
.x4f_c00217{left:595.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m25_c00218{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);}
.m84_c00218{transform:matrix(0.011020,-0.000099,0.002250,0.249990,0,0);-ms-transform:matrix(0.011020,-0.000099,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011020,-0.000099,0.002250,0.249990,0,0);}
.m22_c00218{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.016043,-0.000257,0.003999,0.249968,0,0);-ms-transform:matrix(0.016043,-0.000257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.016043,-0.000257,0.003999,0.249968,0,0);}
.m77_c00218{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.095211,-0.000857,0.002250,0.249990,0,0);-ms-transform:matrix(0.095211,-0.000857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.095211,-0.000857,0.002250,0.249990,0,0);}
.m29_c00218{transform:matrix(0.100895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100895,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.101820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101820,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{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);}
.ma0_c00218{transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);-ms-transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);}
.m5f_c00218{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);}
.m41_c00218{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);}
.m18_c00218{transform:matrix(0.157849,-0.001894,0.003000,0.249982,0,0);-ms-transform:matrix(0.157849,-0.001894,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157849,-0.001894,0.003000,0.249982,0,0);}
.m8d_c00218{transform:matrix(0.158564,-0.001427,0.002250,0.249990,0,0);-ms-transform:matrix(0.158564,-0.001427,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158564,-0.001427,0.002250,0.249990,0,0);}
.m5b_c00218{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);}
.m8e_c00218{transform:matrix(0.160633,-0.001446,0.002250,0.249990,0,0);-ms-transform:matrix(0.160633,-0.001446,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160633,-0.001446,0.002250,0.249990,0,0);}
.m7d_c00218{transform:matrix(0.162352,-0.001624,0.002500,0.249988,0,0);-ms-transform:matrix(0.162352,-0.001624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162352,-0.001624,0.002500,0.249988,0,0);}
.m3_c00218{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00218{transform:matrix(0.163885,-0.001311,0.002000,0.249992,0,0);-ms-transform:matrix(0.163885,-0.001311,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163885,-0.001311,0.002000,0.249992,0,0);}
.m5c_c00218{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);}
.m69_c00218{transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{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);}
.mb5_c00218{transform:matrix(0.167600,-0.001341,0.002000,0.249992,0,0);-ms-transform:matrix(0.167600,-0.001341,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167600,-0.001341,0.002000,0.249992,0,0);}
.m66_c00218{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);}
.m26_c00218{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);}
.ma2_c00218{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);}
.m72_c00218{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);}
.m56_c00218{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);}
.m45_c00218{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);}
.m1_c00218{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);}
.m59_c00218{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);}
.m8f_c00218{transform:matrix(0.170288,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170288,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170288,-0.001533,0.002250,0.249990,0,0);}
.m60_c00218{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);}
.m7a_c00218{transform:matrix(0.172121,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172121,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172121,-0.001721,0.002500,0.249988,0,0);}
.m7c_c00218{transform:matrix(0.172141,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172141,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172141,-0.001721,0.002500,0.249988,0,0);}
.m3d_c00218{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);}
.m7f_c00218{transform:matrix(0.172916,-0.001729,0.002500,0.249988,0,0);-ms-transform:matrix(0.172916,-0.001729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172916,-0.001729,0.002500,0.249988,0,0);}
.m11_c00218{transform:matrix(0.174227,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174227,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174227,-0.002091,0.003000,0.249982,0,0);}
.m36_c00218{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);}
.m54_c00218{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);}
.m81_c00218{transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);-ms-transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);}
.mb6_c00218{transform:matrix(0.174549,-0.001396,0.002000,0.249992,0,0);-ms-transform:matrix(0.174549,-0.001396,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174549,-0.001396,0.002000,0.249992,0,0);}
.m53_c00218{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);}
.ma8_c00218{transform:matrix(0.175493,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175493,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175493,-0.001579,0.002250,0.249990,0,0);}
.m96_c00218{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);}
.m8b_c00218{transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);-ms-transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176463,-0.001588,0.002250,0.249990,0,0);}
.m52_c00218{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);}
.m95_c00218{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);}
.m4a_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);}
.m87_c00218{transform:matrix(0.176678,-0.001590,0.002250,0.249990,0,0);-ms-transform:matrix(0.176678,-0.001590,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176678,-0.001590,0.002250,0.249990,0,0);}
.mad_c00218{transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);}
.m32_c00218{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);}
.m65_c00218{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);}
.m83_c00218{transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);}
.m6c_c00218{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);}
.m42_c00218{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00218{transform:matrix(0.181909,-0.001455,0.002000,0.249992,0,0);-ms-transform:matrix(0.181909,-0.001455,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181909,-0.001455,0.002000,0.249992,0,0);}
.m4e_c00218{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);}
.m2f_c00218{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);}
.m67_c00218{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{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);}
.mba_c00218{transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);}
.m13_c00218{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);}
.mc3_c00218{transform:matrix(0.185449,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185449,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185449,-0.001484,0.002000,0.249992,0,0);}
.m63_c00218{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);}
.mc4_c00218{transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);}
.m68_c00218{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);}
.mbd_c00218{transform:matrix(0.186684,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186684,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186684,-0.001493,0.002000,0.249992,0,0);}
.mb2_c00218{transform:matrix(0.186857,-0.001682,0.002250,0.249990,0,0);-ms-transform:matrix(0.186857,-0.001682,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186857,-0.001682,0.002250,0.249990,0,0);}
.m44_c00218{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);}
.m14_c00218{transform:matrix(0.187387,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187387,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187387,-0.002249,0.003000,0.249982,0,0);}
.m4f_c00218{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);}
.m88_c00218{transform:matrix(0.188057,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188057,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188057,-0.001693,0.002250,0.249990,0,0);}
.m4b_c00218{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);}
.mb7_c00218{transform:matrix(0.189359,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189359,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189359,-0.001515,0.002000,0.249992,0,0);}
.m3a_c00218{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);}
.m3e_c00218{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);}
.m3c_c00218{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);}
.m62_c00218{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);}
.m43_c00218{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);}
.m57_c00218{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);}
.m9f_c00218{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);}
.m50_c00218{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);}
.m12_c00218{transform:matrix(0.193406,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193406,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193406,-0.002321,0.003000,0.249982,0,0);}
.m40_c00218{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);}
.m97_c00218{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);}
.m5e_c00218{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_c00218{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);}
.mab_c00218{transform:matrix(0.194302,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194302,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194302,-0.001749,0.002250,0.249990,0,0);}
.m80_c00218{transform:matrix(0.194425,-0.001944,0.002500,0.249988,0,0);-ms-transform:matrix(0.194425,-0.001944,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194425,-0.001944,0.002500,0.249988,0,0);}
.mb9_c00218{transform:matrix(0.194909,-0.001559,0.002000,0.249992,0,0);-ms-transform:matrix(0.194909,-0.001559,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194909,-0.001559,0.002000,0.249992,0,0);}
.m85_c00218{transform:matrix(0.195232,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195232,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195232,-0.001757,0.002250,0.249990,0,0);}
.mb0_c00218{transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);}
.m39_c00218{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);}
.ma1_c00218{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);}
.m93_c00218{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);}
.ma7_c00218{transform:matrix(0.196567,-0.001769,0.002250,0.249990,0,0);-ms-transform:matrix(0.196567,-0.001769,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196567,-0.001769,0.002250,0.249990,0,0);}
.m55_c00218{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);}
.ma9_c00218{transform:matrix(0.196792,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196792,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196792,-0.001771,0.002250,0.249990,0,0);}
.m89_c00218{transform:matrix(0.197172,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197172,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197172,-0.001775,0.002250,0.249990,0,0);}
.m64_c00218{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);}
.mbc_c00218{transform:matrix(0.197574,-0.001581,0.002000,0.249992,0,0);-ms-transform:matrix(0.197574,-0.001581,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197574,-0.001581,0.002000,0.249992,0,0);}
.m3f_c00218{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);}
.maf_c00218{transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);-ms-transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);}
.m9_c00218{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);}
.mc0_c00218{transform:matrix(0.200844,-0.001607,0.002000,0.249992,0,0);-ms-transform:matrix(0.200844,-0.001607,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200844,-0.001607,0.002000,0.249992,0,0);}
.m9e_c00218{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);}
.m49_c00218{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);}
.maa_c00218{transform:matrix(0.202347,-0.001821,0.002250,0.249990,0,0);-ms-transform:matrix(0.202347,-0.001821,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202347,-0.001821,0.002250,0.249990,0,0);}
.m30_c00218{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);}
.m73_c00218{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);}
.mb4_c00218{transform:matrix(0.203298,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203298,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203298,-0.001626,0.002000,0.249992,0,0);}
.m31_c00218{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);}
.mae_c00218{transform:matrix(0.204227,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204227,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204227,-0.001838,0.002250,0.249990,0,0);}
.m7b_c00218{transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);}
.m3b_c00218{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);}
.m61_c00218{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);}
.m4_c00218{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);}
.mc2_c00218{transform:matrix(0.207588,-0.001661,0.002000,0.249992,0,0);-ms-transform:matrix(0.207588,-0.001661,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207588,-0.001661,0.002000,0.249992,0,0);}
.mc5_c00218{transform:matrix(0.208223,-0.001666,0.002000,0.249992,0,0);-ms-transform:matrix(0.208223,-0.001666,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208223,-0.001666,0.002000,0.249992,0,0);}
.m8c_c00218{transform:matrix(0.208357,-0.001875,0.002250,0.249990,0,0);-ms-transform:matrix(0.208357,-0.001875,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208357,-0.001875,0.002250,0.249990,0,0);}
.m74_c00218{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);}
.m6b_c00218{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.209232,-0.001883,0.002250,0.249990,0,0);-ms-transform:matrix(0.209232,-0.001883,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209232,-0.001883,0.002250,0.249990,0,0);}
.mb3_c00218{transform:matrix(0.210408,-0.001683,0.002000,0.249992,0,0);-ms-transform:matrix(0.210408,-0.001683,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210408,-0.001683,0.002000,0.249992,0,0);}
.m1b_c00218{transform:matrix(0.210665,-0.002528,0.003000,0.249982,0,0);-ms-transform:matrix(0.210665,-0.002528,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210665,-0.002528,0.003000,0.249982,0,0);}
.mbb_c00218{transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);}
.m48_c00218{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);}
.m21_c00218{transform:matrix(0.212173,-0.003395,0.003999,0.249968,0,0);-ms-transform:matrix(0.212173,-0.003395,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212173,-0.003395,0.003999,0.249968,0,0);}
.mac_c00218{transform:matrix(0.212756,-0.001915,0.002250,0.249990,0,0);-ms-transform:matrix(0.212756,-0.001915,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212756,-0.001915,0.002250,0.249990,0,0);}
.mbe_c00218{transform:matrix(0.213098,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213098,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213098,-0.001705,0.002000,0.249992,0,0);}
.m5a_c00218{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);}
.m7e_c00218{transform:matrix(0.215339,-0.002153,0.002500,0.249988,0,0);-ms-transform:matrix(0.215339,-0.002153,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215339,-0.002153,0.002500,0.249988,0,0);}
.m9d_c00218{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);}
.mc1_c00218{transform:matrix(0.215653,-0.001725,0.002000,0.249992,0,0);-ms-transform:matrix(0.215653,-0.001725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215653,-0.001725,0.002000,0.249992,0,0);}
.m51_c00218{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);}
.m4d_c00218{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.mc8_c00218{transform:matrix(0.216648,-0.001733,0.002000,0.249992,0,0);-ms-transform:matrix(0.216648,-0.001733,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216648,-0.001733,0.002000,0.249992,0,0);}
.m6e_c00218{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_c00218{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);}
.m15_c00218{transform:matrix(0.217699,-0.002612,0.003000,0.249982,0,0);-ms-transform:matrix(0.217699,-0.002612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217699,-0.002612,0.003000,0.249982,0,0);}
.m2c_c00218{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);}
.ma6_c00218{transform:matrix(0.218016,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.218016,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218016,-0.001962,0.002250,0.249990,0,0);}
.m92_c00218{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);}
.m98_c00218{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);}
.m82_c00218{transform:matrix(0.220979,-0.002210,0.002500,0.249988,0,0);-ms-transform:matrix(0.220979,-0.002210,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220979,-0.002210,0.002500,0.249988,0,0);}
.mb1_c00218{transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);-ms-transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);}
.m4c_c00218{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);}
.m37_c00218{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);}
.m71_c00218{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);}
.ma3_c00218{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_c00218{transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);-ms-transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);}
.m19_c00218{transform:matrix(0.240148,-0.002882,0.003000,0.249982,0,0);-ms-transform:matrix(0.240148,-0.002882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240148,-0.002882,0.003000,0.249982,0,0);}
.m1c_c00218{transform:matrix(0.242448,-0.002909,0.003000,0.249982,0,0);-ms-transform:matrix(0.242448,-0.002909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242448,-0.002909,0.003000,0.249982,0,0);}
.m2a_c00218{transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.243088,-0.002431,0.002500,0.249988,0,0);-ms-transform:matrix(0.243088,-0.002431,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243088,-0.002431,0.002500,0.249988,0,0);}
.mc6_c00218{transform:matrix(0.244907,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244907,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244907,-0.001959,0.002000,0.249992,0,0);}
.m46_c00218{transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);-ms-transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);}
.m9b_c00218{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{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);}
.m2_c00218{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);}
.m2b_c00218{transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{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);}
.m33_c00218{transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268095,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269020,0.000000,0.000000,0.250000,0,0);}
.ma5_c00218{transform:matrix(0.269599,-0.002426,0.002250,0.249990,0,0);-ms-transform:matrix(0.269599,-0.002426,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269599,-0.002426,0.002250,0.249990,0,0);}
.m35_c00218{transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);}
.md_c00218{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);}
.m6_c00218{transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281420,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{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);}
.mbf_c00218{transform:matrix(0.283736,-0.002270,0.002000,0.249992,0,0);-ms-transform:matrix(0.283736,-0.002270,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283736,-0.002270,0.002000,0.249992,0,0);}
.m5d_c00218{transform:matrix(0.287705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287705,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.319675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319675,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.330788,-0.005293,0.003999,0.249968,0,0);-ms-transform:matrix(0.330788,-0.005293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.330788,-0.005293,0.003999,0.249968,0,0);}
.m99_c00218{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);}
.ma4_c00218{transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349075,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.367365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367365,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.371448,-0.004457,0.003000,0.249982,0,0);-ms-transform:matrix(0.371448,-0.004457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.371448,-0.004457,0.003000,0.249982,0,0);}
.mb_c00218{transform:matrix(0.407470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407470,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.450270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.455472,-0.007288,0.003999,0.249968,0,0);-ms-transform:matrix(0.455472,-0.007288,0.003999,0.249968,0,0);-webkit-transform:matrix(0.455472,-0.007288,0.003999,0.249968,0,0);}
.m6a_c00218{transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.473594,-0.007578,0.003999,0.249968,0,0);-ms-transform:matrix(0.473594,-0.007578,0.003999,0.249968,0,0);-webkit-transform:matrix(0.473594,-0.007578,0.003999,0.249968,0,0);}
.m90_c00218{transform:matrix(0.497375,-0.004476,0.002250,0.249990,0,0);-ms-transform:matrix(0.497375,-0.004476,0.002250,0.249990,0,0);-webkit-transform:matrix(0.497375,-0.004476,0.002250,0.249990,0,0);}
.ma_c00218{transform:matrix(0.499930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499930,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.533380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533380,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.549210,-0.006591,0.003000,0.249982,0,0);-ms-transform:matrix(0.549210,-0.006591,0.003000,0.249982,0,0);-webkit-transform:matrix(0.549210,-0.006591,0.003000,0.249982,0,0);}
.mc_c00218{transform:matrix(0.570595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570595,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{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);}
.m75_c00218{transform:matrix(0.770020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770020,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;}
.fse_c00218{font-size:52.501680px;}
.fsf_c00218{font-size:53.551714px;}
.fsd_c00218{font-size:54.602211px;}
.fsa_c00218{font-size:65.103255px;}
.fs2_c00218{font-size:67.200000px;}
.fs7_c00218{font-size:68.250000px;}
.fs8_c00218{font-size:69.300000px;}
.fsb_c00218{font-size:69.302807px;}
.fs0_c00218{font-size:71.400000px;}
.fsc_c00218{font-size:71.402892px;}
.fs4_c00218{font-size:71.405141px;}
.fs5_c00218{font-size:71.409139px;}
.fs6_c00218{font-size:72.450000px;}
.fs9_c00218{font-size:74.550000px;}
.fs3_c00218{font-size:152.250000px;}
.fs1_c00218{font-size:156.450000px;}
.y0_c00218{bottom:0.000000px;}
.y63_c00218{bottom:168.768264px;}
.y62_c00218{bottom:168.768396px;}
.y64_c00218{bottom:168.768432px;}
.y61_c00218{bottom:168.768756px;}
.y60_c00218{bottom:168.768768px;}
.y5d_c00218{bottom:168.769212px;}
.y5f_c00218{bottom:168.769368px;}
.y5e_c00218{bottom:168.769860px;}
.y40_c00218{bottom:186.031500px;}
.y41_c00218{bottom:186.495481px;}
.y42_c00218{bottom:187.156550px;}
.y43_c00218{bottom:187.651946px;}
.y44_c00218{bottom:187.817590px;}
.y45_c00218{bottom:188.349382px;}
.y46_c00218{bottom:188.597391px;}
.y47_c00218{bottom:188.702030px;}
.y48_c00218{bottom:189.042243px;}
.y49_c00218{bottom:189.185559px;}
.y4a_c00218{bottom:189.581473px;}
.y4b_c00218{bottom:189.749427px;}
.y4c_c00218{bottom:189.999798px;}
.y4d_c00218{bottom:190.087278px;}
.y4e_c00218{bottom:204.231000px;}
.y4f_c00218{bottom:204.654024px;}
.y50_c00218{bottom:204.934836px;}
.y51_c00218{bottom:205.308504px;}
.y52_c00218{bottom:205.429512px;}
.y53_c00218{bottom:205.690812px;}
.y54_c00218{bottom:205.803108px;}
.y55_c00218{bottom:205.928208px;}
.y56_c00218{bottom:206.218248px;}
.y57_c00218{bottom:206.585088px;}
.y58_c00218{bottom:206.740668px;}
.y59_c00218{bottom:206.891868px;}
.y5a_c00218{bottom:207.263496px;}
.y5b_c00218{bottom:207.427680px;}
.y5c_c00218{bottom:207.781944px;}
.y3f_c00218{bottom:257.566500px;}
.y3e_c00218{bottom:279.724500px;}
.y3d_c00218{bottom:303.079500px;}
.y3c_c00218{bottom:325.377755px;}
.y3b_c00218{bottom:325.378016px;}
.y2f_c00218{bottom:346.411500px;}
.y30_c00218{bottom:346.540290px;}
.y31_c00218{bottom:346.754184px;}
.y32_c00218{bottom:347.152650px;}
.y33_c00218{bottom:347.392909px;}
.y34_c00218{bottom:347.570691px;}
.y35_c00218{bottom:348.183024px;}
.y36_c00218{bottom:348.367785px;}
.y37_c00218{bottom:348.581612px;}
.y38_c00218{bottom:348.972828px;}
.y39_c00218{bottom:349.217920px;}
.y3a_c00218{bottom:349.366515px;}
.y24_c00218{bottom:369.091500px;}
.y25_c00218{bottom:369.396645px;}
.y26_c00218{bottom:369.653190px;}
.y27_c00218{bottom:370.185165px;}
.y28_c00218{bottom:370.719255px;}
.y29_c00218{bottom:371.024745px;}
.y2a_c00218{bottom:371.448705px;}
.y2b_c00218{bottom:371.775465px;}
.y2c_c00218{bottom:372.137220px;}
.y2d_c00218{bottom:372.332370px;}
.y2e_c00218{bottom:372.652500px;}
.y23_c00218{bottom:393.270000px;}
.y22_c00218{bottom:416.457000px;}
.y21_c00218{bottom:438.729000px;}
.y20_c00218{bottom:462.198000px;}
.y1f_c00218{bottom:485.262000px;}
.y1e_c00218{bottom:507.760500px;}
.y1d_c00218{bottom:531.328500px;}
.y1c_c00218{bottom:553.747500px;}
.y1b_c00218{bottom:575.844000px;}
.y1a_c00218{bottom:598.243500px;}
.y19_c00218{bottom:620.446500px;}
.y14_c00218{bottom:639.090000px;}
.y15_c00218{bottom:640.454424px;}
.y16_c00218{bottom:641.188800px;}
.y17_c00218{bottom:641.555952px;}
.y18_c00218{bottom:642.121872px;}
.y6_c00218{bottom:663.394500px;}
.y7_c00218{bottom:664.269408px;}
.y8_c00218{bottom:664.551810px;}
.y9_c00218{bottom:665.050068px;}
.ya_c00218{bottom:665.371512px;}
.yb_c00218{bottom:665.825940px;}
.yc_c00218{bottom:666.273222px;}
.yd_c00218{bottom:666.430884px;}
.ye_c00218{bottom:666.615708px;}
.yf_c00218{bottom:667.180206px;}
.y10_c00218{bottom:667.556172px;}
.y11_c00218{bottom:667.727298px;}
.y12_c00218{bottom:668.307258px;}
.y13_c00218{bottom:668.453238px;}
.y5_c00218{bottom:687.702000px;}
.y4_c00218{bottom:725.005500px;}
.y3_c00218{bottom:766.231500px;}
.y2_c00218{bottom:808.354500px;}
.y1_c00218{bottom:941.841000px;}
.h10_c00218{height:52.501680px;}
.h11_c00218{height:53.551714px;}
.hf_c00218{height:54.602211px;}
.hc_c00218{height:65.103255px;}
.h4_c00218{height:67.200000px;}
.h9_c00218{height:68.250000px;}
.ha_c00218{height:69.300000px;}
.hd_c00218{height:69.302807px;}
.h2_c00218{height:71.400000px;}
.he_c00218{height:71.402892px;}
.h6_c00218{height:71.405141px;}
.h7_c00218{height:71.409139px;}
.h8_c00218{height:72.450000px;}
.hb_c00218{height:74.550000px;}
.h5_c00218{height:152.250000px;}
.h3_c00218{height:156.450000px;}
.h1_c00218{height:1005.000000px;}
.h0_c00218{height:1005.150000px;}
.w1_c00218{width:713.250000px;}
.w0_c00218{width:713.550000px;}
.x0_c00218{left:0.000000px;}
.x77_c00218{left:37.087500px;}
.x78_c00218{left:88.641000px;}
.x83_c00218{left:90.720324px;}
.x21_c00218{left:95.850000px;}
.x2b_c00218{left:102.600000px;}
.x63_c00218{left:106.767000px;}
.x11_c00218{left:116.755500px;}
.x32_c00218{left:118.260000px;}
.x50_c00218{left:119.610000px;}
.x64_c00218{left:121.077000px;}
.x84_c00218{left:138.241860px;}
.xe_c00218{left:140.940000px;}
.x2c_c00218{left:142.020000px;}
.x1_c00218{left:144.990000px;}
.x51_c00218{left:146.610000px;}
.x33_c00218{left:149.310000px;}
.x60_c00218{left:151.066500px;}
.x71_c00218{left:153.090000px;}
.x6b_c00218{left:154.440000px;}
.x39_c00218{left:155.520000px;}
.x40_c00218{left:159.300000px;}
.x22_c00218{left:161.460000px;}
.x47_c00218{left:163.620000px;}
.x1e_c00218{left:164.983500px;}
.x34_c00218{left:173.070000px;}
.x23_c00218{left:175.770000px;}
.xb_c00218{left:177.930000px;}
.x2d_c00218{left:181.710000px;}
.x24_c00218{left:186.030000px;}
.x12_c00218{left:189.664500px;}
.x85_c00218{left:195.484032px;}
.x52_c00218{left:198.720000px;}
.x59_c00218{left:205.740000px;}
.x41_c00218{left:207.900000px;}
.x9_c00218{left:212.490000px;}
.x65_c00218{left:215.812500px;}
.x2_c00218{left:217.350000px;}
.x35_c00218{left:219.510000px;}
.x4c_c00218{left:220.590000px;}
.x53_c00218{left:222.480000px;}
.x2e_c00218{left:227.880000px;}
.x5e_c00218{left:230.040000px;}
.x5a_c00218{left:232.740000px;}
.x42_c00218{left:234.630000px;}
.x72_c00218{left:236.250000px;}
.x25_c00218{left:238.680000px;}
.x48_c00218{left:243.000000px;}
.x10_c00218{left:247.050000px;}
.x1f_c00218{left:250.260000px;}
.x6c_c00218{left:252.720000px;}
.x13_c00218{left:254.719500px;}
.x54_c00218{left:257.040000px;}
.x3_c00218{left:260.280000px;}
.x36_c00218{left:262.440000px;}
.x5f_c00218{left:264.060000px;}
.x3a_c00218{left:267.030000px;}
.x86_c00218{left:268.925736px;}
.x7e_c00218{left:270.886500px;}
.x43_c00218{left:273.240000px;}
.x4d_c00218{left:277.290000px;}
.x26_c00218{left:278.640000px;}
.x14_c00218{left:281.506500px;}
.x2f_c00218{left:284.310000px;}
.x55_c00218{left:291.870000px;}
.x37_c00218{left:294.030000px;}
.xc_c00218{left:296.190000px;}
.x4e_c00218{left:298.350000px;}
.x7f_c00218{left:300.561000px;}
.x49_c00218{left:301.860000px;}
.x66_c00218{left:303.603000px;}
.x5b_c00218{left:306.450000px;}
.x27_c00218{left:313.470000px;}
.x56_c00218{left:316.440000px;}
.x4_c00218{left:317.520000px;}
.x15_c00218{left:319.375500px;}
.x79_c00218{left:322.186500px;}
.x5c_c00218{left:323.730000px;}
.x73_c00218{left:324.810000px;}
.x6d_c00218{left:331.560000px;}
.x28_c00218{left:333.990000px;}
.x44_c00218{left:335.340000px;}
.x3b_c00218{left:337.500000px;}
.x4f_c00218{left:340.470000px;}
.xd_c00218{left:345.060000px;}
.x67_c00218{left:347.890500px;}
.xf_c00218{left:351.000000px;}
.x20_c00218{left:354.475500px;}
.x16_c00218{left:356.649000px;}
.x4a_c00218{left:358.560000px;}
.x38_c00218{left:359.640000px;}
.x17_c00218{left:369.787500px;}
.x7a_c00218{left:371.614500px;}
.x70_c00218{left:374.220000px;}
.x45_c00218{left:376.110000px;}
.x3c_c00218{left:377.190000px;}
.x74_c00218{left:379.080000px;}
.xa_c00218{left:380.430000px;}
.x57_c00218{left:382.320000px;}
.x5_c00218{left:383.400000px;}
.x18_c00218{left:385.189500px;}
.x7b_c00218{left:387.538500px;}
.x5d_c00218{left:389.880000px;}
.x68_c00218{left:391.359000px;}
.x6e_c00218{left:403.110000px;}
.x75_c00218{left:406.350000px;}
.x4b_c00218{left:408.780000px;}
.x29_c00218{left:411.480000px;}
.x3d_c00218{left:415.530000px;}
.x30_c00218{left:417.690000px;}
.x80_c00218{left:421.018500px;}
.x61_c00218{left:425.124000px;}
.x58_c00218{left:428.220000px;}
.x19_c00218{left:432.231000px;}
.x69_c00218{left:435.102000px;}
.x6_c00218{left:444.960000px;}
.x3e_c00218{left:449.010000px;}
.x7c_c00218{left:450.190500px;}
.x6f_c00218{left:462.510000px;}
.x1a_c00218{left:463.561500px;}
.x81_c00218{left:467.472000px;}
.x76_c00218{left:468.990000px;}
.x31_c00218{left:470.070000px;}
.x62_c00218{left:476.652000px;}
.x1b_c00218{left:477.822000px;}
.x6a_c00218{left:482.237199px;}
.x7d_c00218{left:487.729500px;}
.x3f_c00218{left:491.670000px;}
.x2a_c00218{left:493.020000px;}
.x7_c00218{left:499.500000px;}
.x46_c00218{left:501.660000px;}
.x1c_c00218{left:526.152000px;}
.x82_c00218{left:532.278000px;}
.x1d_c00218{left:538.317000px;}
.x8_c00218{left:561.870000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.fse_c00218{font-size:46.668160pt;}
.fsf_c00218{font-size:47.601523pt;}
.fsd_c00218{font-size:48.535299pt;}
.fsa_c00218{font-size:57.869560pt;}
.fs2_c00218{font-size:59.733333pt;}
.fs7_c00218{font-size:60.666667pt;}
.fs8_c00218{font-size:61.600000pt;}
.fsb_c00218{font-size:61.602495pt;}
.fs0_c00218{font-size:63.466667pt;}
.fsc_c00218{font-size:63.469237pt;}
.fs4_c00218{font-size:63.471236pt;}
.fs5_c00218{font-size:63.474790pt;}
.fs6_c00218{font-size:64.400000pt;}
.fs9_c00218{font-size:66.266667pt;}
.fs3_c00218{font-size:135.333333pt;}
.fs1_c00218{font-size:139.066667pt;}
.y0_c00218{bottom:0.000000pt;}
.y63_c00218{bottom:150.016235pt;}
.y62_c00218{bottom:150.016352pt;}
.y64_c00218{bottom:150.016384pt;}
.y61_c00218{bottom:150.016672pt;}
.y60_c00218{bottom:150.016683pt;}
.y5d_c00218{bottom:150.017077pt;}
.y5f_c00218{bottom:150.017216pt;}
.y5e_c00218{bottom:150.017653pt;}
.y40_c00218{bottom:165.361333pt;}
.y41_c00218{bottom:165.773761pt;}
.y42_c00218{bottom:166.361377pt;}
.y43_c00218{bottom:166.801729pt;}
.y44_c00218{bottom:166.948969pt;}
.y45_c00218{bottom:167.421673pt;}
.y46_c00218{bottom:167.642125pt;}
.y47_c00218{bottom:167.735137pt;}
.y48_c00218{bottom:168.037549pt;}
.y49_c00218{bottom:168.164941pt;}
.y4a_c00218{bottom:168.516865pt;}
.y4b_c00218{bottom:168.666157pt;}
.y4c_c00218{bottom:168.888709pt;}
.y4d_c00218{bottom:168.966469pt;}
.y4e_c00218{bottom:181.538667pt;}
.y4f_c00218{bottom:181.914688pt;}
.y50_c00218{bottom:182.164299pt;}
.y51_c00218{bottom:182.496448pt;}
.y52_c00218{bottom:182.604011pt;}
.y53_c00218{bottom:182.836277pt;}
.y54_c00218{bottom:182.936096pt;}
.y55_c00218{bottom:183.047296pt;}
.y56_c00218{bottom:183.305109pt;}
.y57_c00218{bottom:183.631189pt;}
.y58_c00218{bottom:183.769483pt;}
.y59_c00218{bottom:183.903883pt;}
.y5a_c00218{bottom:184.234219pt;}
.y5b_c00218{bottom:184.380160pt;}
.y5c_c00218{bottom:184.695061pt;}
.y3f_c00218{bottom:228.948000pt;}
.y3e_c00218{bottom:248.644000pt;}
.y3d_c00218{bottom:269.404000pt;}
.y3c_c00218{bottom:289.224671pt;}
.y3b_c00218{bottom:289.224903pt;}
.y2f_c00218{bottom:307.921333pt;}
.y30_c00218{bottom:308.035813pt;}
.y31_c00218{bottom:308.225941pt;}
.y32_c00218{bottom:308.580133pt;}
.y33_c00218{bottom:308.793697pt;}
.y34_c00218{bottom:308.951725pt;}
.y35_c00218{bottom:309.496021pt;}
.y36_c00218{bottom:309.660253pt;}
.y37_c00218{bottom:309.850321pt;}
.y38_c00218{bottom:310.198069pt;}
.y39_c00218{bottom:310.415929pt;}
.y3a_c00218{bottom:310.548013pt;}
.y24_c00218{bottom:328.081333pt;}
.y25_c00218{bottom:328.352573pt;}
.y26_c00218{bottom:328.580613pt;}
.y27_c00218{bottom:329.053480pt;}
.y28_c00218{bottom:329.528227pt;}
.y29_c00218{bottom:329.799773pt;}
.y2a_c00218{bottom:330.176627pt;}
.y2b_c00218{bottom:330.467080pt;}
.y2c_c00218{bottom:330.788640pt;}
.y2d_c00218{bottom:330.962107pt;}
.y2e_c00218{bottom:331.246667pt;}
.y23_c00218{bottom:349.573333pt;}
.y22_c00218{bottom:370.184000pt;}
.y21_c00218{bottom:389.981333pt;}
.y20_c00218{bottom:410.842667pt;}
.y1f_c00218{bottom:431.344000pt;}
.y1e_c00218{bottom:451.342667pt;}
.y1d_c00218{bottom:472.292000pt;}
.y1c_c00218{bottom:492.220000pt;}
.y1b_c00218{bottom:511.861333pt;}
.y1a_c00218{bottom:531.772000pt;}
.y19_c00218{bottom:551.508000pt;}
.y14_c00218{bottom:568.080000pt;}
.y15_c00218{bottom:569.292821pt;}
.y16_c00218{bottom:569.945600pt;}
.y17_c00218{bottom:570.271957pt;}
.y18_c00218{bottom:570.774997pt;}
.y6_c00218{bottom:589.684000pt;}
.y7_c00218{bottom:590.461696pt;}
.y8_c00218{bottom:590.712720pt;}
.y9_c00218{bottom:591.155616pt;}
.ya_c00218{bottom:591.441344pt;}
.yb_c00218{bottom:591.845280pt;}
.yc_c00218{bottom:592.242864pt;}
.yd_c00218{bottom:592.383008pt;}
.ye_c00218{bottom:592.547296pt;}
.yf_c00218{bottom:593.049072pt;}
.y10_c00218{bottom:593.383264pt;}
.y11_c00218{bottom:593.535376pt;}
.y12_c00218{bottom:594.050896pt;}
.y13_c00218{bottom:594.180656pt;}
.y5_c00218{bottom:611.290667pt;}
.y4_c00218{bottom:644.449333pt;}
.y3_c00218{bottom:681.094667pt;}
.y2_c00218{bottom:718.537333pt;}
.y1_c00218{bottom:837.192000pt;}
.h10_c00218{height:46.668160pt;}
.h11_c00218{height:47.601523pt;}
.hf_c00218{height:48.535299pt;}
.hc_c00218{height:57.869560pt;}
.h4_c00218{height:59.733333pt;}
.h9_c00218{height:60.666667pt;}
.ha_c00218{height:61.600000pt;}
.hd_c00218{height:61.602495pt;}
.h2_c00218{height:63.466667pt;}
.he_c00218{height:63.469237pt;}
.h6_c00218{height:63.471236pt;}
.h7_c00218{height:63.474790pt;}
.h8_c00218{height:64.400000pt;}
.hb_c00218{height:66.266667pt;}
.h5_c00218{height:135.333333pt;}
.h3_c00218{height:139.066667pt;}
.h1_c00218{height:893.333333pt;}
.h0_c00218{height:893.466667pt;}
.w1_c00218{width:634.000000pt;}
.w0_c00218{width:634.266667pt;}
.x0_c00218{left:0.000000pt;}
.x77_c00218{left:32.966667pt;}
.x78_c00218{left:78.792000pt;}
.x83_c00218{left:80.640288pt;}
.x21_c00218{left:85.200000pt;}
.x2b_c00218{left:91.200000pt;}
.x63_c00218{left:94.904000pt;}
.x11_c00218{left:103.782667pt;}
.x32_c00218{left:105.120000pt;}
.x50_c00218{left:106.320000pt;}
.x64_c00218{left:107.624000pt;}
.x84_c00218{left:122.881653pt;}
.xe_c00218{left:125.280000pt;}
.x2c_c00218{left:126.240000pt;}
.x1_c00218{left:128.880000pt;}
.x51_c00218{left:130.320000pt;}
.x33_c00218{left:132.720000pt;}
.x60_c00218{left:134.281333pt;}
.x71_c00218{left:136.080000pt;}
.x6b_c00218{left:137.280000pt;}
.x39_c00218{left:138.240000pt;}
.x40_c00218{left:141.600000pt;}
.x22_c00218{left:143.520000pt;}
.x47_c00218{left:145.440000pt;}
.x1e_c00218{left:146.652000pt;}
.x34_c00218{left:153.840000pt;}
.x23_c00218{left:156.240000pt;}
.xb_c00218{left:158.160000pt;}
.x2d_c00218{left:161.520000pt;}
.x24_c00218{left:165.360000pt;}
.x12_c00218{left:168.590667pt;}
.x85_c00218{left:173.763584pt;}
.x52_c00218{left:176.640000pt;}
.x59_c00218{left:182.880000pt;}
.x41_c00218{left:184.800000pt;}
.x9_c00218{left:188.880000pt;}
.x65_c00218{left:191.833333pt;}
.x2_c00218{left:193.200000pt;}
.x35_c00218{left:195.120000pt;}
.x4c_c00218{left:196.080000pt;}
.x53_c00218{left:197.760000pt;}
.x2e_c00218{left:202.560000pt;}
.x5e_c00218{left:204.480000pt;}
.x5a_c00218{left:206.880000pt;}
.x42_c00218{left:208.560000pt;}
.x72_c00218{left:210.000000pt;}
.x25_c00218{left:212.160000pt;}
.x48_c00218{left:216.000000pt;}
.x10_c00218{left:219.600000pt;}
.x1f_c00218{left:222.453333pt;}
.x6c_c00218{left:224.640000pt;}
.x13_c00218{left:226.417333pt;}
.x54_c00218{left:228.480000pt;}
.x3_c00218{left:231.360000pt;}
.x36_c00218{left:233.280000pt;}
.x5f_c00218{left:234.720000pt;}
.x3a_c00218{left:237.360000pt;}
.x86_c00218{left:239.045099pt;}
.x7e_c00218{left:240.788000pt;}
.x43_c00218{left:242.880000pt;}
.x4d_c00218{left:246.480000pt;}
.x26_c00218{left:247.680000pt;}
.x14_c00218{left:250.228000pt;}
.x2f_c00218{left:252.720000pt;}
.x55_c00218{left:259.440000pt;}
.x37_c00218{left:261.360000pt;}
.xc_c00218{left:263.280000pt;}
.x4e_c00218{left:265.200000pt;}
.x7f_c00218{left:267.165333pt;}
.x49_c00218{left:268.320000pt;}
.x66_c00218{left:269.869333pt;}
.x5b_c00218{left:272.400000pt;}
.x27_c00218{left:278.640000pt;}
.x56_c00218{left:281.280000pt;}
.x4_c00218{left:282.240000pt;}
.x15_c00218{left:283.889333pt;}
.x79_c00218{left:286.388000pt;}
.x5c_c00218{left:287.760000pt;}
.x73_c00218{left:288.720000pt;}
.x6d_c00218{left:294.720000pt;}
.x28_c00218{left:296.880000pt;}
.x44_c00218{left:298.080000pt;}
.x3b_c00218{left:300.000000pt;}
.x4f_c00218{left:302.640000pt;}
.xd_c00218{left:306.720000pt;}
.x67_c00218{left:309.236000pt;}
.xf_c00218{left:312.000000pt;}
.x20_c00218{left:315.089333pt;}
.x16_c00218{left:317.021333pt;}
.x4a_c00218{left:318.720000pt;}
.x38_c00218{left:319.680000pt;}
.x17_c00218{left:328.700000pt;}
.x7a_c00218{left:330.324000pt;}
.x70_c00218{left:332.640000pt;}
.x45_c00218{left:334.320000pt;}
.x3c_c00218{left:335.280000pt;}
.x74_c00218{left:336.960000pt;}
.xa_c00218{left:338.160000pt;}
.x57_c00218{left:339.840000pt;}
.x5_c00218{left:340.800000pt;}
.x18_c00218{left:342.390667pt;}
.x7b_c00218{left:344.478667pt;}
.x5d_c00218{left:346.560000pt;}
.x68_c00218{left:347.874667pt;}
.x6e_c00218{left:358.320000pt;}
.x75_c00218{left:361.200000pt;}
.x4b_c00218{left:363.360000pt;}
.x29_c00218{left:365.760000pt;}
.x3d_c00218{left:369.360000pt;}
.x30_c00218{left:371.280000pt;}
.x80_c00218{left:374.238667pt;}
.x61_c00218{left:377.888000pt;}
.x58_c00218{left:380.640000pt;}
.x19_c00218{left:384.205333pt;}
.x69_c00218{left:386.757333pt;}
.x6_c00218{left:395.520000pt;}
.x3e_c00218{left:399.120000pt;}
.x7c_c00218{left:400.169333pt;}
.x6f_c00218{left:411.120000pt;}
.x1a_c00218{left:412.054667pt;}
.x81_c00218{left:415.530667pt;}
.x76_c00218{left:416.880000pt;}
.x31_c00218{left:417.840000pt;}
.x62_c00218{left:423.690667pt;}
.x1b_c00218{left:424.730667pt;}
.x6a_c00218{left:428.655288pt;}
.x7d_c00218{left:433.537333pt;}
.x3f_c00218{left:437.040000pt;}
.x2a_c00218{left:438.240000pt;}
.x7_c00218{left:444.000000pt;}
.x46_c00218{left:445.920000pt;}
.x1c_c00218{left:467.690667pt;}
.x82_c00218{left:473.136000pt;}
.x1d_c00218{left:478.504000pt;}
.x8_c00218{left:499.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_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_4ab86c84425994a9e06b01c2.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;}
.mdc_c00219{transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);}
.m4a_c00219{transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);}
.md2_c00219{transform:matrix(0.117280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117280,0.000000,0.000000,0.250000,0,0);}
.ma7_c00219{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.m56_c00219{transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);}
.mbd_c00219{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);}
.m64_c00219{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);}
.m8c_c00219{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);}
.m79_c00219{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);}
.ma3_c00219{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);}
.mab_c00219{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);}
.m70_c00219{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);}
.m78_c00219{transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);}
.mad_c00219{transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{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);}
.m93_c00219{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);}
.m10_c00219{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);}
.m3b_c00219{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);}
.m1c_c00219{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);}
.m14_c00219{transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);}
.m2e_c00219{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);}
.m2a_c00219{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);}
.m4e_c00219{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);}
.m34_c00219{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);}
.mbc_c00219{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);}
.mae_c00219{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);}
.mb0_c00219{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);}
.m76_c00219{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);}
.m75_c00219{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);}
.m18_c00219{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);}
.m20_c00219{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);}
.m58_c00219{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);}
.mbe_c00219{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);}
.m90_c00219{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);}
.m6b_c00219{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);}
.m8f_c00219{transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);}
.m33_c00219{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);}
.m52_c00219{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);}
.m40_c00219{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);}
.m11_c00219{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m3d_c00219{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);}
.mc3_c00219{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.m98_c00219{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);}
.mdf_c00219{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);}
.m1d_c00219{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);}
.mb6_c00219{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);}
.mb7_c00219{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);}
.m9d_c00219{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);}
.m67_c00219{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);}
.m80_c00219{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);}
.m1e_c00219{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);}
.m77_c00219{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);}
.m63_c00219{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);}
.m6a_c00219{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);}
.m17_c00219{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);}
.mc_c00219{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);}
.md9_c00219{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);}
.m4b_c00219{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);}
.m22_c00219{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);}
.m72_c00219{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);}
.ma6_c00219{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);}
.mb9_c00219{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);}
.maf_c00219{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);}
.m2c_c00219{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);}
.mb1_c00219{transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);}
.m62_c00219{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);}
.m51_c00219{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);}
.m1f_c00219{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);}
.m2f_c00219{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);}
.m2b_c00219{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);}
.m4d_c00219{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);}
.mc0_c00219{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);}
.md7_c00219{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);}
.m8e_c00219{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);}
.md8_c00219{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);}
.m7b_c00219{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);}
.mac_c00219{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);}
.m6f_c00219{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);}
.mdb_c00219{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);}
.m13_c00219{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_c00219{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);}
.m4c_c00219{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);}
.m36_c00219{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);}
.m29_c00219{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);}
.mb8_c00219{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);}
.mda_c00219{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);}
.me_c00219{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);}
.m74_c00219{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);}
.m42_c00219{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);}
.m61_c00219{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);}
.m96_c00219{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);}
.m71_c00219{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);}
.m30_c00219{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);}
.md1_c00219{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);}
.m35_c00219{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);}
.mc2_c00219{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);}
.ma4_c00219{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);}
.md_c00219{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);}
.m82_c00219{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);}
.m12_c00219{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);}
.ma_c00219{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);}
.m31_c00219{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_c00219{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);}
.m3f_c00219{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);}
.mdd_c00219{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);}
.m37_c00219{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);}
.m4f_c00219{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);}
.ma5_c00219{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);}
.m7a_c00219{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);}
.m24_c00219{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);}
.m7c_c00219{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);}
.me0_c00219{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);}
.m6e_c00219{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);}
.m32_c00219{transform:matrix(0.211610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211610,0.000000,0.000000,0.250000,0,0);}
.mb4_c00219{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);}
.m48_c00219{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);}
.m97_c00219{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);}
.ma2_c00219{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);}
.mce_c00219{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);}
.m9b_c00219{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);}
.m50_c00219{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_c00219{transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);}
.m91_c00219{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);}
.m9e_c00219{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);}
.mba_c00219{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);}
.m8b_c00219{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);}
.m9_c00219{transform:matrix(0.218700,-0.005905,0.006748,0.249909,0,0);-ms-transform:matrix(0.218700,-0.005905,0.006748,0.249909,0,0);-webkit-transform:matrix(0.218700,-0.005905,0.006748,0.249909,0,0);}
.mb3_c00219{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);}
.m94_c00219{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);}
.ma0_c00219{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);}
.mb5_c00219{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);}
.mb2_c00219{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);}
.m92_c00219{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);}
.m83_c00219{transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);}
.m81_c00219{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);}
.m53_c00219{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);}
.m44_c00219{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);}
.m88_c00219{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.m65_c00219{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);}
.m9c_c00219{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);}
.m8d_c00219{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);}
.mc6_c00219{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);}
.m2d_c00219{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);}
.m23_c00219{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);}
.m95_c00219{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);}
.m59_c00219{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);}
.m47_c00219{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);}
.mc4_c00219{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);}
.me2_c00219{transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);}
.md3_c00219{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);}
.ma8_c00219{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);}
.md6_c00219{transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);}
.m3c_c00219{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);}
.m86_c00219{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.m38_c00219{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);}
.m99_c00219{transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);}
.m7d_c00219{transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00219{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);}
.mcc_c00219{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);}
.m26_c00219{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m39_c00219{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);}
.mc5_c00219{transform:matrix(0.242380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242380,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.mcb_c00219{transform:matrix(0.243940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243940,0.000000,0.000000,0.250000,0,0);}
.m87_c00219{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);}
.mb_c00219{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);}
.m43_c00219{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m8a_c00219{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);}
.m0_c00219{transform:matrix(0.252203,-0.006809,0.006748,0.249909,0,0);-ms-transform:matrix(0.252203,-0.006809,0.006748,0.249909,0,0);-webkit-transform:matrix(0.252203,-0.006809,0.006748,0.249909,0,0);}
.maa_c00219{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.mde_c00219{transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255630,0.000000,0.000000,0.250000,0,0);}
.mc1_c00219{transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);}
.m60_c00219{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);}
.mbb_c00219{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);}
.mcf_c00219{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);}
.m85_c00219{transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);}
.m3e_c00219{transform:matrix(0.261610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261610,0.000000,0.000000,0.250000,0,0);}
.m57_c00219{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.mbf_c00219{transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264860,0.000000,0.000000,0.250000,0,0);}
.mc8_c00219{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.mc7_c00219{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);}
.m28_c00219{transform:matrix(0.273380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273380,0.000000,0.000000,0.250000,0,0);}
.md4_c00219{transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);}
.m45_c00219{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);}
.m84_c00219{transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277690,0.000000,0.000000,0.250000,0,0);}
.m9a_c00219{transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281980,0.000000,0.000000,0.250000,0,0);}
.mca_c00219{transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.283942,-0.007666,0.006748,0.249909,0,0);-ms-transform:matrix(0.283942,-0.007666,0.006748,0.249909,0,0);-webkit-transform:matrix(0.283942,-0.007666,0.006748,0.249909,0,0);}
.m7f_c00219{transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);}
.m9f_c00219{transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291040,0.000000,0.000000,0.250000,0,0);}
.md5_c00219{transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299540,0.000000,0.000000,0.250000,0,0);}
.mcd_c00219{transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304930,0.000000,0.000000,0.250000,0,0);}
.m5b_c00219{transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);}
.m41_c00219{transform:matrix(0.325100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325100,0.000000,0.000000,0.250000,0,0);}
.m69_c00219{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);}
.m25_c00219{transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);}
.m5f_c00219{transform:matrix(0.336470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336470,0.000000,0.000000,0.250000,0,0);}
.mc9_c00219{transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);}
.m89_c00219{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);}
.m73_c00219{transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358745,0.000000,0.000000,0.250000,0,0);}
.md0_c00219{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);}
.m46_c00219{transform:matrix(0.365180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365180,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.369725,-0.009983,0.006748,0.249909,0,0);-ms-transform:matrix(0.369725,-0.009983,0.006748,0.249909,0,0);-webkit-transform:matrix(0.369725,-0.009983,0.006748,0.249909,0,0);}
.m7e_c00219{transform:matrix(0.370530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370530,0.000000,0.000000,0.250000,0,0);}
.m5a_c00219{transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);}
.m27_c00219{transform:matrix(0.381930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381930,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.387964,-0.010475,0.006748,0.249909,0,0);-ms-transform:matrix(0.387964,-0.010475,0.006748,0.249909,0,0);-webkit-transform:matrix(0.387964,-0.010475,0.006748,0.249909,0,0);}
.ma1_c00219{transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);}
.m55_c00219{transform:matrix(0.396415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396415,0.000000,0.000000,0.250000,0,0);}
.m5d_c00219{transform:matrix(0.428025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428025,0.000000,0.000000,0.250000,0,0);}
.m5c_c00219{transform:matrix(0.448450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448450,0.000000,0.000000,0.250000,0,0);}
.m54_c00219{transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);}
.me1_c00219{transform:matrix(0.486815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486815,0.000000,0.000000,0.250000,0,0);}
.m6c_c00219{transform:matrix(0.489440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489440,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.503711,-0.013600,0.006748,0.249909,0,0);-ms-transform:matrix(0.503711,-0.013600,0.006748,0.249909,0,0);-webkit-transform:matrix(0.503711,-0.013600,0.006748,0.249909,0,0);}
.m19_c00219{transform:matrix(0.509650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00219{transform:matrix(0.526595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526595,0.000000,0.000000,0.250000,0,0);}
.me3_c00219{transform:matrix(0.535610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535610,0.000000,0.000000,0.250000,0,0);}
.m66_c00219{transform:matrix(0.558920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558920,0.000000,0.000000,0.250000,0,0);}
.m6d_c00219{transform:matrix(0.565600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565600,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.595873,-0.016089,0.006748,0.249909,0,0);-ms-transform:matrix(0.595873,-0.016089,0.006748,0.249909,0,0);-webkit-transform:matrix(0.595873,-0.016089,0.006748,0.249909,0,0);}
.m4_c00219{transform:matrix(0.692008,-0.018684,0.006748,0.249909,0,0);-ms-transform:matrix(0.692008,-0.018684,0.006748,0.249909,0,0);-webkit-transform:matrix(0.692008,-0.018684,0.006748,0.249909,0,0);}
.m6_c00219{transform:matrix(0.801093,-0.021630,0.006748,0.249909,0,0);-ms-transform:matrix(0.801093,-0.021630,0.006748,0.249909,0,0);-webkit-transform:matrix(0.801093,-0.021630,0.006748,0.249909,0,0);}
.m5_c00219{transform:matrix(1.618080,-0.043688,0.006748,0.249909,0,0);-ms-transform:matrix(1.618080,-0.043688,0.006748,0.249909,0,0);-webkit-transform:matrix(1.618080,-0.043688,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;}
.fs9_c00219{font-size:59.850000px;}
.fsb_c00219{font-size:63.000000px;}
.fs6_c00219{font-size:66.150000px;}
.fsa_c00219{font-size:67.200000px;}
.fs7_c00219{font-size:68.250000px;}
.fs5_c00219{font-size:69.300000px;}
.fs3_c00219{font-size:70.350000px;}
.fs2_c00219{font-size:71.400000px;}
.fs4_c00219{font-size:72.450000px;}
.fs8_c00219{font-size:76.650000px;}
.fs1_c00219{font-size:118.693240px;}
.fs0_c00219{font-size:120.794005px;}
.y0_c00219{bottom:0.000000px;}
.y67_c00219{bottom:179.775000px;}
.y66_c00219{bottom:202.767000px;}
.y65_c00219{bottom:225.877500px;}
.y64_c00219{bottom:248.323500px;}
.y63_c00219{bottom:270.945000px;}
.y62_c00219{bottom:293.616000px;}
.y61_c00219{bottom:316.381500px;}
.y60_c00219{bottom:339.238500px;}
.y5f_c00219{bottom:361.816500px;}
.y5e_c00219{bottom:384.223500px;}
.y5d_c00219{bottom:407.620500px;}
.y51_c00219{bottom:428.221500px;}
.y52_c00219{bottom:428.496000px;}
.y53_c00219{bottom:428.664000px;}
.y54_c00219{bottom:429.201000px;}
.y55_c00219{bottom:429.432000px;}
.y56_c00219{bottom:429.607500px;}
.y57_c00219{bottom:430.069500px;}
.y58_c00219{bottom:430.230000px;}
.y59_c00219{bottom:430.563000px;}
.y5a_c00219{bottom:430.939500px;}
.y5b_c00219{bottom:431.100000px;}
.y5c_c00219{bottom:431.601000px;}
.y46_c00219{bottom:451.171500px;}
.y47_c00219{bottom:451.555500px;}
.y48_c00219{bottom:451.927500px;}
.y49_c00219{bottom:452.256000px;}
.y4a_c00219{bottom:452.451000px;}
.y4b_c00219{bottom:452.686500px;}
.y4c_c00219{bottom:453.153000px;}
.y4d_c00219{bottom:453.459000px;}
.y4e_c00219{bottom:453.633000px;}
.y4f_c00219{bottom:453.756000px;}
.y50_c00219{bottom:454.207500px;}
.y3f_c00219{bottom:473.313000px;}
.y40_c00219{bottom:474.220500px;}
.y41_c00219{bottom:474.654000px;}
.y42_c00219{bottom:475.042500px;}
.y43_c00219{bottom:475.323000px;}
.y44_c00219{bottom:475.905000px;}
.y45_c00219{bottom:476.526000px;}
.y3e_c00219{bottom:497.625000px;}
.y3d_c00219{bottom:520.686000px;}
.y3c_c00219{bottom:543.505500px;}
.y3b_c00219{bottom:565.977000px;}
.y3a_c00219{bottom:587.980500px;}
.y39_c00219{bottom:611.392500px;}
.y38_c00219{bottom:633.750000px;}
.y2f_c00219{bottom:655.021500px;}
.y30_c00219{bottom:655.279500px;}
.y31_c00219{bottom:655.911000px;}
.y32_c00219{bottom:656.314500px;}
.y33_c00219{bottom:656.715000px;}
.y34_c00219{bottom:656.811000px;}
.y35_c00219{bottom:657.072000px;}
.y36_c00219{bottom:657.687000px;}
.y37_c00219{bottom:658.138500px;}
.y25_c00219{bottom:677.701500px;}
.y26_c00219{bottom:677.961000px;}
.y27_c00219{bottom:678.325500px;}
.y28_c00219{bottom:678.544500px;}
.y29_c00219{bottom:678.736500px;}
.y2a_c00219{bottom:679.555500px;}
.y2b_c00219{bottom:679.822500px;}
.y2c_c00219{bottom:680.289000px;}
.y2d_c00219{bottom:680.932500px;}
.y2e_c00219{bottom:680.974500px;}
.y1d_c00219{bottom:699.843000px;}
.y1e_c00219{bottom:700.279500px;}
.y1f_c00219{bottom:700.674000px;}
.y20_c00219{bottom:701.277000px;}
.y21_c00219{bottom:701.674500px;}
.y22_c00219{bottom:701.901000px;}
.y23_c00219{bottom:702.649500px;}
.y24_c00219{bottom:703.378500px;}
.y16_c00219{bottom:722.523000px;}
.y17_c00219{bottom:723.328500px;}
.y18_c00219{bottom:723.786000px;}
.y19_c00219{bottom:724.291500px;}
.y1a_c00219{bottom:725.001000px;}
.y1b_c00219{bottom:725.313000px;}
.y1c_c00219{bottom:725.550000px;}
.y15_c00219{bottom:747.675000px;}
.y14_c00219{bottom:769.632000px;}
.y13_c00219{bottom:793.113000px;}
.yc_c00219{bottom:812.703000px;}
.yd_c00219{bottom:813.130500px;}
.ye_c00219{bottom:813.646500px;}
.yf_c00219{bottom:814.449000px;}
.y10_c00219{bottom:814.615500px;}
.y11_c00219{bottom:814.903500px;}
.y12_c00219{bottom:815.283000px;}
.yb_c00219{bottom:836.872500px;}
.y7_c00219{bottom:880.561578px;}
.y8_c00219{bottom:881.155294px;}
.y9_c00219{bottom:882.820462px;}
.ya_c00219{bottom:884.179488px;}
.y6_c00219{bottom:921.937131px;}
.y1_c00219{bottom:934.591500px;}
.y2_c00219{bottom:936.095062px;}
.y3_c00219{bottom:939.790728px;}
.y4_c00219{bottom:944.138322px;}
.y5_c00219{bottom:946.089166px;}
.hb_c00219{height:59.850000px;}
.hd_c00219{height:63.000000px;}
.h8_c00219{height:66.150000px;}
.hc_c00219{height:67.200000px;}
.h9_c00219{height:68.250000px;}
.h7_c00219{height:69.300000px;}
.h5_c00219{height:70.350000px;}
.h4_c00219{height:71.400000px;}
.h6_c00219{height:72.450000px;}
.ha_c00219{height:76.650000px;}
.h3_c00219{height:118.693240px;}
.h2_c00219{height:120.794005px;}
.h0_c00219{height:1008.450000px;}
.h1_c00219{height:1008.750000px;}
.w0_c00219{width:678.450000px;}
.w1_c00219{width:678.750000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:84.441000px;}
.x6_c00219{left:87.937967px;}
.x7_c00219{left:89.016078px;}
.x2_c00219{left:140.128500px;}
.x8_c00219{left:143.028906px;}
.x6f_c00219{left:167.937000px;}
.x4d_c00219{left:174.415500px;}
.x67_c00219{left:175.767000px;}
.xb_c00219{left:177.120000px;}
.x6c_c00219{left:178.467000px;}
.x30_c00219{left:179.929500px;}
.xc_c00219{left:204.930000px;}
.x49_c00219{left:206.815500px;}
.x31_c00219{left:208.788000px;}
.x14_c00219{left:210.994500px;}
.x6d_c00219{left:213.027000px;}
.x29_c00219{left:216.958500px;}
.x55_c00219{left:219.892500px;}
.x44_c00219{left:221.665500px;}
.x3d_c00219{left:224.095500px;}
.x77_c00219{left:225.717000px;}
.x1b_c00219{left:226.800000px;}
.x7f_c00219{left:232.467000px;}
.x7a_c00219{left:235.977000px;}
.x64_c00219{left:242.457000px;}
.x70_c00219{left:245.157000px;}
.x32_c00219{left:249.324000px;}
.x15_c00219{left:250.744500px;}
.x2a_c00219{left:252.876000px;}
.x80_c00219{left:257.037000px;}
.x50_c00219{left:259.614000px;}
.x56_c00219{left:261.207000px;}
.xd_c00219{left:267.030000px;}
.x1c_c00219{left:268.110000px;}
.x72_c00219{left:269.457000px;}
.x33_c00219{left:273.585000px;}
.x39_c00219{left:275.767500px;}
.x3_c00219{left:277.005000px;}
.x3e_c00219{left:278.905500px;}
.x65_c00219{left:281.607000px;}
.x7b_c00219{left:282.687000px;}
.x5d_c00219{left:286.812000px;}
.x4e_c00219{left:287.815500px;}
.xe_c00219{left:291.600000px;}
.x7c_c00219{left:292.947000px;}
.x9_c00219{left:294.378233px;}
.x57_c00219{left:297.651000px;}
.x43_c00219{left:299.155500px;}
.x1a_c00219{left:300.510000px;}
.x4f_c00219{left:302.395500px;}
.x45_c00219{left:305.905500px;}
.x2b_c00219{left:307.680000px;}
.xf_c00219{left:309.690000px;}
.x16_c00219{left:312.451500px;}
.x3f_c00219{left:313.465500px;}
.x23_c00219{left:314.820000px;}
.x75_c00219{left:317.247000px;}
.x58_c00219{left:319.251000px;}
.x3a_c00219{left:320.604000px;}
.x17_c00219{left:325.255500px;}
.x5e_c00219{left:331.942500px;}
.x51_c00219{left:334.345500px;}
.x1d_c00219{left:335.880000px;}
.x24_c00219{left:339.120000px;}
.x73_c00219{left:340.737000px;}
.x2c_c00219{left:343.855500px;}
.x59_c00219{left:345.444000px;}
.x18_c00219{left:347.409000px;}
.x10_c00219{left:352.890000px;}
.x68_c00219{left:356.937000px;}
.x46_c00219{left:358.555500px;}
.x52_c00219{left:359.782500px;}
.x2d_c00219{left:364.381500px;}
.x1e_c00219{left:366.120000px;}
.x78_c00219{left:368.007000px;}
.x62_c00219{left:370.707000px;}
.x11_c00219{left:373.950000px;}
.x19_c00219{left:376.570500px;}
.x40_c00219{left:380.695500px;}
.x47_c00219{left:382.315500px;}
.x81_c00219{left:384.207000px;}
.x34_c00219{left:385.944000px;}
.x25_c00219{left:388.530000px;}
.x4a_c00219{left:394.735500px;}
.x5a_c00219{left:397.278000px;}
.x69_c00219{left:399.057000px;}
.x5f_c00219{left:401.025000px;}
.x26_c00219{left:402.670500px;}
.x3b_c00219{left:404.848500px;}
.x74_c00219{left:406.887000px;}
.x63_c00219{left:410.937000px;}
.x53_c00219{left:412.746000px;}
.x1f_c00219{left:414.180000px;}
.x35_c00219{left:415.648500px;}
.xa_c00219{left:417.988111px;}
.x48_c00219{left:421.465500px;}
.x66_c00219{left:424.437000px;}
.x7d_c00219{left:425.517000px;}
.x6a_c00219{left:427.137000px;}
.x12_c00219{left:429.030000px;}
.x27_c00219{left:431.064000px;}
.x2e_c00219{left:432.421500px;}
.x4_c00219{left:438.027000px;}
.x6e_c00219{left:441.987000px;}
.x82_c00219{left:444.687000px;}
.x13_c00219{left:447.660000px;}
.x20_c00219{left:450.090000px;}
.x28_c00219{left:452.670000px;}
.x76_c00219{left:459.267000px;}
.x41_c00219{left:460.615500px;}
.x5b_c00219{left:464.301000px;}
.x71_c00219{left:465.747000px;}
.x36_c00219{left:467.538000px;}
.x54_c00219{left:469.180500px;}
.x21_c00219{left:474.120000px;}
.x60_c00219{left:479.863500px;}
.x42_c00219{left:483.835500px;}
.x4b_c00219{left:487.615500px;}
.x7e_c00219{left:497.067000px;}
.x2f_c00219{left:498.723000px;}
.x6b_c00219{left:502.737000px;}
.x79_c00219{left:507.327000px;}
.x5_c00219{left:510.280500px;}
.x5c_c00219{left:514.527000px;}
.x3c_c00219{left:523.288500px;}
.x4c_c00219{left:525.145500px;}
.x37_c00219{left:538.992000px;}
.x22_c00219{left:540.270000px;}
.x38_c00219{left:543.634500px;}
.x61_c00219{left:553.405500px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.fs9_c00219{font-size:53.200000pt;}
.fsb_c00219{font-size:56.000000pt;}
.fs6_c00219{font-size:58.800000pt;}
.fsa_c00219{font-size:59.733333pt;}
.fs7_c00219{font-size:60.666667pt;}
.fs5_c00219{font-size:61.600000pt;}
.fs3_c00219{font-size:62.533333pt;}
.fs2_c00219{font-size:63.466667pt;}
.fs4_c00219{font-size:64.400000pt;}
.fs8_c00219{font-size:68.133333pt;}
.fs1_c00219{font-size:105.505102pt;}
.fs0_c00219{font-size:107.372449pt;}
.y0_c00219{bottom:0.000000pt;}
.y67_c00219{bottom:159.800000pt;}
.y66_c00219{bottom:180.237333pt;}
.y65_c00219{bottom:200.780000pt;}
.y64_c00219{bottom:220.732000pt;}
.y63_c00219{bottom:240.840000pt;}
.y62_c00219{bottom:260.992000pt;}
.y61_c00219{bottom:281.228000pt;}
.y60_c00219{bottom:301.545333pt;}
.y5f_c00219{bottom:321.614667pt;}
.y5e_c00219{bottom:341.532000pt;}
.y5d_c00219{bottom:362.329333pt;}
.y51_c00219{bottom:380.641333pt;}
.y52_c00219{bottom:380.885333pt;}
.y53_c00219{bottom:381.034667pt;}
.y54_c00219{bottom:381.512000pt;}
.y55_c00219{bottom:381.717333pt;}
.y56_c00219{bottom:381.873333pt;}
.y57_c00219{bottom:382.284000pt;}
.y58_c00219{bottom:382.426667pt;}
.y59_c00219{bottom:382.722667pt;}
.y5a_c00219{bottom:383.057333pt;}
.y5b_c00219{bottom:383.200000pt;}
.y5c_c00219{bottom:383.645333pt;}
.y46_c00219{bottom:401.041333pt;}
.y47_c00219{bottom:401.382667pt;}
.y48_c00219{bottom:401.713333pt;}
.y49_c00219{bottom:402.005333pt;}
.y4a_c00219{bottom:402.178667pt;}
.y4b_c00219{bottom:402.388000pt;}
.y4c_c00219{bottom:402.802667pt;}
.y4d_c00219{bottom:403.074667pt;}
.y4e_c00219{bottom:403.229333pt;}
.y4f_c00219{bottom:403.338667pt;}
.y50_c00219{bottom:403.740000pt;}
.y3f_c00219{bottom:420.722667pt;}
.y40_c00219{bottom:421.529333pt;}
.y41_c00219{bottom:421.914667pt;}
.y42_c00219{bottom:422.260000pt;}
.y43_c00219{bottom:422.509333pt;}
.y44_c00219{bottom:423.026667pt;}
.y45_c00219{bottom:423.578667pt;}
.y3e_c00219{bottom:442.333333pt;}
.y3d_c00219{bottom:462.832000pt;}
.y3c_c00219{bottom:483.116000pt;}
.y3b_c00219{bottom:503.090667pt;}
.y3a_c00219{bottom:522.649333pt;}
.y39_c00219{bottom:543.460000pt;}
.y38_c00219{bottom:563.333333pt;}
.y2f_c00219{bottom:582.241333pt;}
.y30_c00219{bottom:582.470667pt;}
.y31_c00219{bottom:583.032000pt;}
.y32_c00219{bottom:583.390667pt;}
.y33_c00219{bottom:583.746667pt;}
.y34_c00219{bottom:583.832000pt;}
.y35_c00219{bottom:584.064000pt;}
.y36_c00219{bottom:584.610667pt;}
.y37_c00219{bottom:585.012000pt;}
.y25_c00219{bottom:602.401333pt;}
.y26_c00219{bottom:602.632000pt;}
.y27_c00219{bottom:602.956000pt;}
.y28_c00219{bottom:603.150667pt;}
.y29_c00219{bottom:603.321333pt;}
.y2a_c00219{bottom:604.049333pt;}
.y2b_c00219{bottom:604.286667pt;}
.y2c_c00219{bottom:604.701333pt;}
.y2d_c00219{bottom:605.273333pt;}
.y2e_c00219{bottom:605.310667pt;}
.y1d_c00219{bottom:622.082667pt;}
.y1e_c00219{bottom:622.470667pt;}
.y1f_c00219{bottom:622.821333pt;}
.y20_c00219{bottom:623.357333pt;}
.y21_c00219{bottom:623.710667pt;}
.y22_c00219{bottom:623.912000pt;}
.y23_c00219{bottom:624.577333pt;}
.y24_c00219{bottom:625.225333pt;}
.y16_c00219{bottom:642.242667pt;}
.y17_c00219{bottom:642.958667pt;}
.y18_c00219{bottom:643.365333pt;}
.y19_c00219{bottom:643.814667pt;}
.y1a_c00219{bottom:644.445333pt;}
.y1b_c00219{bottom:644.722667pt;}
.y1c_c00219{bottom:644.933333pt;}
.y15_c00219{bottom:664.600000pt;}
.y14_c00219{bottom:684.117333pt;}
.y13_c00219{bottom:704.989333pt;}
.yc_c00219{bottom:722.402667pt;}
.yd_c00219{bottom:722.782667pt;}
.ye_c00219{bottom:723.241333pt;}
.yf_c00219{bottom:723.954667pt;}
.y10_c00219{bottom:724.102667pt;}
.y11_c00219{bottom:724.358667pt;}
.y12_c00219{bottom:724.696000pt;}
.yb_c00219{bottom:743.886667pt;}
.y7_c00219{bottom:782.721403pt;}
.y8_c00219{bottom:783.249151pt;}
.y9_c00219{bottom:784.729300pt;}
.ya_c00219{bottom:785.937323pt;}
.y6_c00219{bottom:819.499672pt;}
.y1_c00219{bottom:830.748000pt;}
.y2_c00219{bottom:832.084500pt;}
.y3_c00219{bottom:835.369536pt;}
.y4_c00219{bottom:839.234064pt;}
.y5_c00219{bottom:840.968148pt;}
.hb_c00219{height:53.200000pt;}
.hd_c00219{height:56.000000pt;}
.h8_c00219{height:58.800000pt;}
.hc_c00219{height:59.733333pt;}
.h9_c00219{height:60.666667pt;}
.h7_c00219{height:61.600000pt;}
.h5_c00219{height:62.533333pt;}
.h4_c00219{height:63.466667pt;}
.h6_c00219{height:64.400000pt;}
.ha_c00219{height:68.133333pt;}
.h3_c00219{height:105.505102pt;}
.h2_c00219{height:107.372449pt;}
.h0_c00219{height:896.400000pt;}
.h1_c00219{height:896.666667pt;}
.w0_c00219{width:603.066667pt;}
.w1_c00219{width:603.333333pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:75.058667pt;}
.x6_c00219{left:78.167081pt;}
.x7_c00219{left:79.125403pt;}
.x2_c00219{left:124.558667pt;}
.x8_c00219{left:127.136805pt;}
.x6f_c00219{left:149.277333pt;}
.x4d_c00219{left:155.036000pt;}
.x67_c00219{left:156.237333pt;}
.xb_c00219{left:157.440000pt;}
.x6c_c00219{left:158.637333pt;}
.x30_c00219{left:159.937333pt;}
.xc_c00219{left:182.160000pt;}
.x49_c00219{left:183.836000pt;}
.x31_c00219{left:185.589333pt;}
.x14_c00219{left:187.550667pt;}
.x6d_c00219{left:189.357333pt;}
.x29_c00219{left:192.852000pt;}
.x55_c00219{left:195.460000pt;}
.x44_c00219{left:197.036000pt;}
.x3d_c00219{left:199.196000pt;}
.x77_c00219{left:200.637333pt;}
.x1b_c00219{left:201.600000pt;}
.x7f_c00219{left:206.637333pt;}
.x7a_c00219{left:209.757333pt;}
.x64_c00219{left:215.517333pt;}
.x70_c00219{left:217.917333pt;}
.x32_c00219{left:221.621333pt;}
.x15_c00219{left:222.884000pt;}
.x2a_c00219{left:224.778667pt;}
.x80_c00219{left:228.477333pt;}
.x50_c00219{left:230.768000pt;}
.x56_c00219{left:232.184000pt;}
.xd_c00219{left:237.360000pt;}
.x1c_c00219{left:238.320000pt;}
.x72_c00219{left:239.517333pt;}
.x33_c00219{left:243.186667pt;}
.x39_c00219{left:245.126667pt;}
.x3_c00219{left:246.226667pt;}
.x3e_c00219{left:247.916000pt;}
.x65_c00219{left:250.317333pt;}
.x7b_c00219{left:251.277333pt;}
.x5d_c00219{left:254.944000pt;}
.x4e_c00219{left:255.836000pt;}
.xe_c00219{left:259.200000pt;}
.x7c_c00219{left:260.397333pt;}
.x9_c00219{left:261.669540pt;}
.x57_c00219{left:264.578667pt;}
.x43_c00219{left:265.916000pt;}
.x1a_c00219{left:267.120000pt;}
.x4f_c00219{left:268.796000pt;}
.x45_c00219{left:271.916000pt;}
.x2b_c00219{left:273.493333pt;}
.xf_c00219{left:275.280000pt;}
.x16_c00219{left:277.734667pt;}
.x3f_c00219{left:278.636000pt;}
.x23_c00219{left:279.840000pt;}
.x75_c00219{left:281.997333pt;}
.x58_c00219{left:283.778667pt;}
.x3a_c00219{left:284.981333pt;}
.x17_c00219{left:289.116000pt;}
.x5e_c00219{left:295.060000pt;}
.x51_c00219{left:297.196000pt;}
.x1d_c00219{left:298.560000pt;}
.x24_c00219{left:301.440000pt;}
.x73_c00219{left:302.877333pt;}
.x2c_c00219{left:305.649333pt;}
.x59_c00219{left:307.061333pt;}
.x18_c00219{left:308.808000pt;}
.x10_c00219{left:313.680000pt;}
.x68_c00219{left:317.277333pt;}
.x46_c00219{left:318.716000pt;}
.x52_c00219{left:319.806667pt;}
.x2d_c00219{left:323.894667pt;}
.x1e_c00219{left:325.440000pt;}
.x78_c00219{left:327.117333pt;}
.x62_c00219{left:329.517333pt;}
.x11_c00219{left:332.400000pt;}
.x19_c00219{left:334.729333pt;}
.x40_c00219{left:338.396000pt;}
.x47_c00219{left:339.836000pt;}
.x81_c00219{left:341.517333pt;}
.x34_c00219{left:343.061333pt;}
.x25_c00219{left:345.360000pt;}
.x4a_c00219{left:350.876000pt;}
.x5a_c00219{left:353.136000pt;}
.x69_c00219{left:354.717333pt;}
.x5f_c00219{left:356.466667pt;}
.x26_c00219{left:357.929333pt;}
.x3b_c00219{left:359.865333pt;}
.x74_c00219{left:361.677333pt;}
.x63_c00219{left:365.277333pt;}
.x53_c00219{left:366.885333pt;}
.x1f_c00219{left:368.160000pt;}
.x35_c00219{left:369.465333pt;}
.xa_c00219{left:371.544988pt;}
.x48_c00219{left:374.636000pt;}
.x66_c00219{left:377.277333pt;}
.x7d_c00219{left:378.237333pt;}
.x6a_c00219{left:379.677333pt;}
.x12_c00219{left:381.360000pt;}
.x27_c00219{left:383.168000pt;}
.x2e_c00219{left:384.374667pt;}
.x4_c00219{left:389.357333pt;}
.x6e_c00219{left:392.877333pt;}
.x82_c00219{left:395.277333pt;}
.x13_c00219{left:397.920000pt;}
.x20_c00219{left:400.080000pt;}
.x28_c00219{left:402.373333pt;}
.x76_c00219{left:408.237333pt;}
.x41_c00219{left:409.436000pt;}
.x5b_c00219{left:412.712000pt;}
.x71_c00219{left:413.997333pt;}
.x36_c00219{left:415.589333pt;}
.x54_c00219{left:417.049333pt;}
.x21_c00219{left:421.440000pt;}
.x60_c00219{left:426.545333pt;}
.x42_c00219{left:430.076000pt;}
.x4b_c00219{left:433.436000pt;}
.x7e_c00219{left:441.837333pt;}
.x2f_c00219{left:443.309333pt;}
.x6b_c00219{left:446.877333pt;}
.x79_c00219{left:450.957333pt;}
.x5_c00219{left:453.582667pt;}
.x5c_c00219{left:457.357333pt;}
.x3c_c00219{left:465.145333pt;}
.x4c_c00219{left:466.796000pt;}
.x37_c00219{left:479.104000pt;}
.x22_c00219{left:480.240000pt;}
.x38_c00219{left:483.230667pt;}
.x61_c00219{left:491.916000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m27_c00220{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);}
.mb0_c00220{transform:matrix(0.010270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010270,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{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);}
.m47_c00220{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);}
.m25_c00220{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m69_c00220{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);}
.m21_c00220{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);}
.mbd_c00220{transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);}
.mcc_c00220{transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);}
.m3e_c00220{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{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);}
.m54_c00220{transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.075625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00220{transform:matrix(0.103190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103190,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132820,0.000000,0.000000,0.250000,0,0);}
.ma1_c00220{transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m72_c00220{transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);}
.m50_c00220{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);}
.m3_c00220{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00220{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m7c_c00220{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);}
.ma6_c00220{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);}
.m14_c00220{transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);}
.ma5_c00220{transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);}
.m7d_c00220{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);}
.m65_c00220{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);}
.mbf_c00220{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);}
.maf_c00220{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);}
.m74_c00220{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.m8d_c00220{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);}
.m43_c00220{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);}
.m40_c00220{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);}
.m45_c00220{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);}
.m64_c00220{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);}
.mac_c00220{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);}
.m8a_c00220{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);}
.m6e_c00220{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);}
.mad_c00220{transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168040,0.000000,0.000000,0.250000,0,0);}
.m42_c00220{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);}
.m61_c00220{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);}
.m6b_c00220{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_c00220{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);}
.mbe_c00220{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.m82_c00220{transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);}
.mb6_c00220{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);}
.ma3_c00220{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);}
.m15_c00220{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);}
.m44_c00220{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);}
.m1b_c00220{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);}
.ma4_c00220{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);}
.m41_c00220{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);}
.m98_c00220{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);}
.m5b_c00220{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);}
.md2_c00220{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);}
.m7a_c00220{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);}
.mb7_c00220{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);}
.m9d_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);}
.mb3_c00220{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);}
.m90_c00220{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);}
.m6f_c00220{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);}
.mbc_c00220{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);}
.m93_c00220{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);}
.m2e_c00220{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);}
.m9b_c00220{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);}
.mc0_c00220{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);}
.m8b_c00220{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);}
.m9a_c00220{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m89_c00220{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);}
.mc3_c00220{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);}
.m8_c00220{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);}
.m97_c00220{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);}
.m7e_c00220{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);}
.m2d_c00220{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);}
.m59_c00220{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);}
.m9c_c00220{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);}
.m3d_c00220{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);}
.mbb_c00220{transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{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);}
.m18_c00220{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);}
.m51_c00220{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);}
.m71_c00220{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);}
.mba_c00220{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);}
.mb1_c00220{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);}
.mc8_c00220{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);}
.m11_c00220{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);}
.m4a_c00220{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);}
.m29_c00220{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);}
.mc1_c00220{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);}
.m1c_c00220{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_c00220{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);}
.m99_c00220{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);}
.mb5_c00220{transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);}
.m8c_c00220{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);}
.m46_c00220{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);}
.m86_c00220{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);}
.md0_c00220{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);}
.m2a_c00220{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);}
.m1e_c00220{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);}
.m12_c00220{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);}
.mc2_c00220{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);}
.maa_c00220{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);}
.m4e_c00220{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);}
.m7f_c00220{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);}
.m79_c00220{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);}
.m0_c00220{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);}
.mb4_c00220{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);}
.m87_c00220{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);}
.m78_c00220{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);}
.m9_c00220{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);}
.mca_c00220{transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{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);}
.mcd_c00220{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);}
.m58_c00220{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);}
.m33_c00220{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);}
.md_c00220{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);}
.m95_c00220{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);}
.mcb_c00220{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);}
.ma7_c00220{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);}
.m7_c00220{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);}
.m81_c00220{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m57_c00220{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);}
.mc4_c00220{transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);}
.m4c_c00220{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);}
.m2c_c00220{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);}
.m20_c00220{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);}
.m88_c00220{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);}
.m85_c00220{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);}
.ma2_c00220{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);}
.m8e_c00220{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);}
.m4d_c00220{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);}
.m76_c00220{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);}
.mb8_c00220{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);}
.m80_c00220{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);}
.mc_c00220{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);}
.m75_c00220{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);}
.mf_c00220{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);}
.m1f_c00220{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);}
.m94_c00220{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);}
.m13_c00220{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);}
.m4b_c00220{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_c00220{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);}
.m8f_c00220{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);}
.m1a_c00220{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);}
.m66_c00220{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);}
.m32_c00220{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);}
.m4f_c00220{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);}
.m16_c00220{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);}
.mc6_c00220{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);}
.mb_c00220{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);}
.m5a_c00220{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);}
.mae_c00220{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);}
.m56_c00220{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);}
.m3f_c00220{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);}
.m34_c00220{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);}
.m83_c00220{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);}
.m2f_c00220{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);}
.mcf_c00220{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);}
.m67_c00220{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);}
.m38_c00220{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);}
.m49_c00220{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);}
.mc5_c00220{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);}
.ma9_c00220{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);}
.m60_c00220{transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);}
.mc9_c00220{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);}
.m62_c00220{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);}
.ma0_c00220{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);}
.me_c00220{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);}
.m5f_c00220{transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);}
.mce_c00220{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);}
.m6c_c00220{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);}
.m5d_c00220{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m96_c00220{transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);}
.m5e_c00220{transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238705,0.000000,0.000000,0.250000,0,0);}
.m84_c00220{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);}
.mb9_c00220{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00220{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);}
.m70_c00220{transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);}
.m6a_c00220{transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);}
.m63_c00220{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m6d_c00220{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.md4_c00220{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.m77_c00220{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m36_c00220{transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256635,0.000000,0.000000,0.250000,0,0);}
.m9f_c00220{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);}
.m5c_c00220{transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);}
.m73_c00220{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);}
.m53_c00220{transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{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);}
.m91_c00220{transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);}
.m39_c00220{transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314845,0.000000,0.000000,0.250000,0,0);}
.m92_c00220{transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315510,0.000000,0.000000,0.250000,0,0);}
.m3a_c00220{transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);}
.m30_c00220{transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00220{transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);}
.m31_c00220{transform:matrix(0.347065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347065,0.000000,0.000000,0.250000,0,0);}
.m52_c00220{transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356820,0.000000,0.000000,0.250000,0,0);}
.m3b_c00220{transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.373790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373790,0.000000,0.000000,0.250000,0,0);}
.m68_c00220{transform:matrix(0.400080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400080,0.000000,0.000000,0.250000,0,0);}
.m24_c00220{transform:matrix(0.439270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439270,0.000000,0.000000,0.250000,0,0);}
.m9e_c00220{transform:matrix(0.458935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458935,0.000000,0.000000,0.250000,0,0);}
.md1_c00220{transform:matrix(0.485060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485060,0.000000,0.000000,0.250000,0,0);}
.m35_c00220{transform:matrix(0.537375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537375,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.548575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548575,0.000000,0.000000,0.250000,0,0);}
.m37_c00220{transform:matrix(0.754620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754620,0.000000,0.000000,0.250000,0,0);}
.m55_c00220{transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);}
.md3_c00220{transform:matrix(0.881945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881945,0.000000,0.000000,0.250000,0,0);}
.m48_c00220{transform:matrix(0.884110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884110,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{transform:matrix(0.894305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894305,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.927575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927575,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;}
.fs10_c00220{font-size:53.550000px;}
.fsf_c00220{font-size:58.800000px;}
.fsc_c00220{font-size:64.050000px;}
.fs8_c00220{font-size:67.200000px;}
.fsa_c00220{font-size:68.250000px;}
.fs1_c00220{font-size:69.300000px;}
.fs3_c00220{font-size:70.350000px;}
.fsb_c00220{font-size:71.400000px;}
.fs7_c00220{font-size:72.450000px;}
.fsd_c00220{font-size:73.500000px;}
.fs2_c00220{font-size:75.600000px;}
.fs11_c00220{font-size:80.850000px;}
.fse_c00220{font-size:84.000000px;}
.fs4_c00220{font-size:88.200000px;}
.fs6_c00220{font-size:109.200000px;}
.fs5_c00220{font-size:112.350000px;}
.fs9_c00220{font-size:117.600000px;}
.fs0_c00220{font-size:124.950000px;}
.y0_c00220{bottom:0.000000px;}
.y1a_c00220{bottom:146.925000px;}
.y19_c00220{bottom:174.798000px;}
.y18_c00220{bottom:193.111500px;}
.y17_c00220{bottom:210.901500px;}
.y16_c00220{bottom:258.589500px;}
.y15_c00220{bottom:284.212500px;}
.y14_c00220{bottom:313.185000px;}
.y13_c00220{bottom:335.052000px;}
.y12_c00220{bottom:357.750000px;}
.y11_c00220{bottom:380.781000px;}
.y10_c00220{bottom:403.428000px;}
.yf_c00220{bottom:425.575500px;}
.ye_c00220{bottom:448.689000px;}
.yd_c00220{bottom:469.975500px;}
.yc_c00220{bottom:497.128500px;}
.yb_c00220{bottom:525.918000px;}
.ya_c00220{bottom:549.435000px;}
.y9_c00220{bottom:571.681500px;}
.y8_c00220{bottom:630.151500px;}
.y7_c00220{bottom:670.360500px;}
.y6_c00220{bottom:737.338500px;}
.y5_c00220{bottom:759.559500px;}
.y4_c00220{bottom:781.776000px;}
.y3_c00220{bottom:804.937500px;}
.y2_c00220{bottom:827.280000px;}
.y1_c00220{bottom:872.133000px;}
.h12_c00220{height:53.550000px;}
.h11_c00220{height:58.800000px;}
.he_c00220{height:64.050000px;}
.ha_c00220{height:67.200000px;}
.hc_c00220{height:68.250000px;}
.h3_c00220{height:69.300000px;}
.h5_c00220{height:70.350000px;}
.hd_c00220{height:71.400000px;}
.h9_c00220{height:72.450000px;}
.hf_c00220{height:73.500000px;}
.h4_c00220{height:75.600000px;}
.h13_c00220{height:80.850000px;}
.h10_c00220{height:84.000000px;}
.h6_c00220{height:88.200000px;}
.h8_c00220{height:109.200000px;}
.h7_c00220{height:112.350000px;}
.hb_c00220{height:117.600000px;}
.h2_c00220{height:124.950000px;}
.h1_c00220{height:1005.000000px;}
.h0_c00220{height:1005.150000px;}
.w1_c00220{width:713.250000px;}
.w0_c00220{width:713.550000px;}
.x0_c00220{left:0.000000px;}
.x44_c00220{left:18.630000px;}
.x46_c00220{left:23.220000px;}
.x3c_c00220{left:25.110000px;}
.x22_c00220{left:27.000000px;}
.x19_c00220{left:36.720000px;}
.x2c_c00220{left:37.800000px;}
.x6_c00220{left:39.690000px;}
.x1_c00220{left:41.850000px;}
.x50_c00220{left:51.030000px;}
.x23_c00220{left:52.920000px;}
.x82_c00220{left:68.580000px;}
.x83_c00220{left:83.970000px;}
.x7_c00220{left:85.050000px;}
.x71_c00220{left:86.940000px;}
.x31_c00220{left:88.020000px;}
.x87_c00220{left:93.690000px;}
.x26_c00220{left:98.820000px;}
.x51_c00220{left:105.840000px;}
.x72_c00220{left:115.560000px;}
.x11_c00220{left:120.420000px;}
.x56_c00220{left:121.500000px;}
.x36_c00220{left:123.120000px;}
.x1a_c00220{left:124.200000px;}
.x8_c00220{left:126.360000px;}
.x63_c00220{left:144.180000px;}
.x37_c00220{left:145.530000px;}
.x3d_c00220{left:149.310000px;}
.x57_c00220{left:150.660000px;}
.x9_c00220{left:152.010000px;}
.x7d_c00220{left:155.790000px;}
.x64_c00220{left:159.570000px;}
.x84_c00220{left:164.430000px;}
.x38_c00220{left:168.480000px;}
.x32_c00220{left:172.260000px;}
.x12_c00220{left:175.230000px;}
.x85_c00220{left:176.850000px;}
.x2_c00220{left:179.820000px;}
.x69_c00220{left:181.980000px;}
.x73_c00220{left:187.110000px;}
.xa_c00220{left:189.270000px;}
.x13_c00220{left:190.890000px;}
.x39_c00220{left:193.320000px;}
.x27_c00220{left:194.670000px;}
.x1b_c00220{left:198.180000px;}
.x52_c00220{left:200.340000px;}
.x65_c00220{left:202.230000px;}
.x4b_c00220{left:204.120000px;}
.x74_c00220{left:207.360000px;}
.x5b_c00220{left:214.920000px;}
.x6a_c00220{left:218.700000px;}
.xb_c00220{left:220.590000px;}
.x28_c00220{left:222.480000px;}
.x4c_c00220{left:224.640000px;}
.x34_c00220{left:227.340000px;}
.x58_c00220{left:228.960000px;}
.x14_c00220{left:230.580000px;}
.x1c_c00220{left:231.660000px;}
.x2d_c00220{left:234.360000px;}
.x6b_c00220{left:236.250000px;}
.x3a_c00220{left:238.410000px;}
.x3e_c00220{left:241.650000px;}
.x75_c00220{left:243.270000px;}
.x7e_c00220{left:253.260000px;}
.x45_c00220{left:257.580000px;}
.xc_c00220{left:260.280000px;}
.x6c_c00220{left:261.360000px;}
.x76_c00220{left:262.440000px;}
.x24_c00220{left:265.950000px;}
.x5c_c00220{left:268.110000px;}
.x1d_c00220{left:270.270000px;}
.x66_c00220{left:272.160000px;}
.x47_c00220{left:276.210000px;}
.x15_c00220{left:279.180000px;}
.x7f_c00220{left:282.150000px;}
.x6d_c00220{left:287.010000px;}
.x3f_c00220{left:288.900000px;}
.x2e_c00220{left:291.330000px;}
.x3b_c00220{left:294.030000px;}
.x29_c00220{left:297.000000px;}
.x59_c00220{left:300.510000px;}
.x16_c00220{left:305.370000px;}
.x67_c00220{left:308.880000px;}
.x48_c00220{left:310.770000px;}
.xd_c00220{left:312.930000px;}
.x60_c00220{left:314.280000px;}
.x53_c00220{left:317.250000px;}
.x5a_c00220{left:320.760000px;}
.x40_c00220{left:322.110000px;}
.x4d_c00220{left:323.730000px;}
.x49_c00220{left:325.350000px;}
.x77_c00220{left:333.180000px;}
.x1e_c00220{left:336.960000px;}
.x5d_c00220{left:342.090000px;}
.x54_c00220{left:343.170000px;}
.x17_c00220{left:345.600000px;}
.x68_c00220{left:349.380000px;}
.x2f_c00220{left:351.270000px;}
.x2a_c00220{left:356.130000px;}
.x6e_c00220{left:365.040000px;}
.x86_c00220{left:369.360000px;}
.x61_c00220{left:371.250000px;}
.x1f_c00220{left:373.140000px;}
.xe_c00220{left:374.490000px;}
.x4e_c00220{left:378.000000px;}
.x6f_c00220{left:380.430000px;}
.x41_c00220{left:381.510000px;}
.x3_c00220{left:385.020000px;}
.x18_c00220{left:387.450000px;}
.x30_c00220{left:392.580000px;}
.x78_c00220{left:393.660000px;}
.x42_c00220{left:398.250000px;}
.x2b_c00220{left:400.140000px;}
.x5e_c00220{left:404.460000px;}
.x35_c00220{left:407.160000px;}
.x70_c00220{left:410.670000px;}
.x20_c00220{left:414.990000px;}
.xf_c00220{left:416.610000px;}
.x4f_c00220{left:418.770000px;}
.x4a_c00220{left:423.900000px;}
.x43_c00220{left:427.410000px;}
.x33_c00220{left:429.840000px;}
.x79_c00220{left:431.190000px;}
.x5f_c00220{left:434.160000px;}
.x10_c00220{left:441.180000px;}
.x62_c00220{left:443.340000px;}
.x4_c00220{left:456.570000px;}
.x55_c00220{left:476.820000px;}
.x7a_c00220{left:481.950000px;}
.x80_c00220{left:492.480000px;}
.x7b_c00220{left:497.610000px;}
.x81_c00220{left:511.110000px;}
.x21_c00220{left:513.000000px;}
.x25_c00220{left:517.590000px;}
.x5_c00220{left:534.600000px;}
.x7c_c00220{left:540.270000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fs10_c00220{font-size:47.600000pt;}
.fsf_c00220{font-size:52.266667pt;}
.fsc_c00220{font-size:56.933333pt;}
.fs8_c00220{font-size:59.733333pt;}
.fsa_c00220{font-size:60.666667pt;}
.fs1_c00220{font-size:61.600000pt;}
.fs3_c00220{font-size:62.533333pt;}
.fsb_c00220{font-size:63.466667pt;}
.fs7_c00220{font-size:64.400000pt;}
.fsd_c00220{font-size:65.333333pt;}
.fs2_c00220{font-size:67.200000pt;}
.fs11_c00220{font-size:71.866667pt;}
.fse_c00220{font-size:74.666667pt;}
.fs4_c00220{font-size:78.400000pt;}
.fs6_c00220{font-size:97.066667pt;}
.fs5_c00220{font-size:99.866667pt;}
.fs9_c00220{font-size:104.533333pt;}
.fs0_c00220{font-size:111.066667pt;}
.y0_c00220{bottom:0.000000pt;}
.y1a_c00220{bottom:130.600000pt;}
.y19_c00220{bottom:155.376000pt;}
.y18_c00220{bottom:171.654667pt;}
.y17_c00220{bottom:187.468000pt;}
.y16_c00220{bottom:229.857333pt;}
.y15_c00220{bottom:252.633333pt;}
.y14_c00220{bottom:278.386667pt;}
.y13_c00220{bottom:297.824000pt;}
.y12_c00220{bottom:318.000000pt;}
.y11_c00220{bottom:338.472000pt;}
.y10_c00220{bottom:358.602667pt;}
.yf_c00220{bottom:378.289333pt;}
.ye_c00220{bottom:398.834667pt;}
.yd_c00220{bottom:417.756000pt;}
.yc_c00220{bottom:441.892000pt;}
.yb_c00220{bottom:467.482667pt;}
.ya_c00220{bottom:488.386667pt;}
.y9_c00220{bottom:508.161333pt;}
.y8_c00220{bottom:560.134667pt;}
.y7_c00220{bottom:595.876000pt;}
.y6_c00220{bottom:655.412000pt;}
.y5_c00220{bottom:675.164000pt;}
.y4_c00220{bottom:694.912000pt;}
.y3_c00220{bottom:715.500000pt;}
.y2_c00220{bottom:735.360000pt;}
.y1_c00220{bottom:775.229333pt;}
.h12_c00220{height:47.600000pt;}
.h11_c00220{height:52.266667pt;}
.he_c00220{height:56.933333pt;}
.ha_c00220{height:59.733333pt;}
.hc_c00220{height:60.666667pt;}
.h3_c00220{height:61.600000pt;}
.h5_c00220{height:62.533333pt;}
.hd_c00220{height:63.466667pt;}
.h9_c00220{height:64.400000pt;}
.hf_c00220{height:65.333333pt;}
.h4_c00220{height:67.200000pt;}
.h13_c00220{height:71.866667pt;}
.h10_c00220{height:74.666667pt;}
.h6_c00220{height:78.400000pt;}
.h8_c00220{height:97.066667pt;}
.h7_c00220{height:99.866667pt;}
.hb_c00220{height:104.533333pt;}
.h2_c00220{height:111.066667pt;}
.h1_c00220{height:893.333333pt;}
.h0_c00220{height:893.466667pt;}
.w1_c00220{width:634.000000pt;}
.w0_c00220{width:634.266667pt;}
.x0_c00220{left:0.000000pt;}
.x44_c00220{left:16.560000pt;}
.x46_c00220{left:20.640000pt;}
.x3c_c00220{left:22.320000pt;}
.x22_c00220{left:24.000000pt;}
.x19_c00220{left:32.640000pt;}
.x2c_c00220{left:33.600000pt;}
.x6_c00220{left:35.280000pt;}
.x1_c00220{left:37.200000pt;}
.x50_c00220{left:45.360000pt;}
.x23_c00220{left:47.040000pt;}
.x82_c00220{left:60.960000pt;}
.x83_c00220{left:74.640000pt;}
.x7_c00220{left:75.600000pt;}
.x71_c00220{left:77.280000pt;}
.x31_c00220{left:78.240000pt;}
.x87_c00220{left:83.280000pt;}
.x26_c00220{left:87.840000pt;}
.x51_c00220{left:94.080000pt;}
.x72_c00220{left:102.720000pt;}
.x11_c00220{left:107.040000pt;}
.x56_c00220{left:108.000000pt;}
.x36_c00220{left:109.440000pt;}
.x1a_c00220{left:110.400000pt;}
.x8_c00220{left:112.320000pt;}
.x63_c00220{left:128.160000pt;}
.x37_c00220{left:129.360000pt;}
.x3d_c00220{left:132.720000pt;}
.x57_c00220{left:133.920000pt;}
.x9_c00220{left:135.120000pt;}
.x7d_c00220{left:138.480000pt;}
.x64_c00220{left:141.840000pt;}
.x84_c00220{left:146.160000pt;}
.x38_c00220{left:149.760000pt;}
.x32_c00220{left:153.120000pt;}
.x12_c00220{left:155.760000pt;}
.x85_c00220{left:157.200000pt;}
.x2_c00220{left:159.840000pt;}
.x69_c00220{left:161.760000pt;}
.x73_c00220{left:166.320000pt;}
.xa_c00220{left:168.240000pt;}
.x13_c00220{left:169.680000pt;}
.x39_c00220{left:171.840000pt;}
.x27_c00220{left:173.040000pt;}
.x1b_c00220{left:176.160000pt;}
.x52_c00220{left:178.080000pt;}
.x65_c00220{left:179.760000pt;}
.x4b_c00220{left:181.440000pt;}
.x74_c00220{left:184.320000pt;}
.x5b_c00220{left:191.040000pt;}
.x6a_c00220{left:194.400000pt;}
.xb_c00220{left:196.080000pt;}
.x28_c00220{left:197.760000pt;}
.x4c_c00220{left:199.680000pt;}
.x34_c00220{left:202.080000pt;}
.x58_c00220{left:203.520000pt;}
.x14_c00220{left:204.960000pt;}
.x1c_c00220{left:205.920000pt;}
.x2d_c00220{left:208.320000pt;}
.x6b_c00220{left:210.000000pt;}
.x3a_c00220{left:211.920000pt;}
.x3e_c00220{left:214.800000pt;}
.x75_c00220{left:216.240000pt;}
.x7e_c00220{left:225.120000pt;}
.x45_c00220{left:228.960000pt;}
.xc_c00220{left:231.360000pt;}
.x6c_c00220{left:232.320000pt;}
.x76_c00220{left:233.280000pt;}
.x24_c00220{left:236.400000pt;}
.x5c_c00220{left:238.320000pt;}
.x1d_c00220{left:240.240000pt;}
.x66_c00220{left:241.920000pt;}
.x47_c00220{left:245.520000pt;}
.x15_c00220{left:248.160000pt;}
.x7f_c00220{left:250.800000pt;}
.x6d_c00220{left:255.120000pt;}
.x3f_c00220{left:256.800000pt;}
.x2e_c00220{left:258.960000pt;}
.x3b_c00220{left:261.360000pt;}
.x29_c00220{left:264.000000pt;}
.x59_c00220{left:267.120000pt;}
.x16_c00220{left:271.440000pt;}
.x67_c00220{left:274.560000pt;}
.x48_c00220{left:276.240000pt;}
.xd_c00220{left:278.160000pt;}
.x60_c00220{left:279.360000pt;}
.x53_c00220{left:282.000000pt;}
.x5a_c00220{left:285.120000pt;}
.x40_c00220{left:286.320000pt;}
.x4d_c00220{left:287.760000pt;}
.x49_c00220{left:289.200000pt;}
.x77_c00220{left:296.160000pt;}
.x1e_c00220{left:299.520000pt;}
.x5d_c00220{left:304.080000pt;}
.x54_c00220{left:305.040000pt;}
.x17_c00220{left:307.200000pt;}
.x68_c00220{left:310.560000pt;}
.x2f_c00220{left:312.240000pt;}
.x2a_c00220{left:316.560000pt;}
.x6e_c00220{left:324.480000pt;}
.x86_c00220{left:328.320000pt;}
.x61_c00220{left:330.000000pt;}
.x1f_c00220{left:331.680000pt;}
.xe_c00220{left:332.880000pt;}
.x4e_c00220{left:336.000000pt;}
.x6f_c00220{left:338.160000pt;}
.x41_c00220{left:339.120000pt;}
.x3_c00220{left:342.240000pt;}
.x18_c00220{left:344.400000pt;}
.x30_c00220{left:348.960000pt;}
.x78_c00220{left:349.920000pt;}
.x42_c00220{left:354.000000pt;}
.x2b_c00220{left:355.680000pt;}
.x5e_c00220{left:359.520000pt;}
.x35_c00220{left:361.920000pt;}
.x70_c00220{left:365.040000pt;}
.x20_c00220{left:368.880000pt;}
.xf_c00220{left:370.320000pt;}
.x4f_c00220{left:372.240000pt;}
.x4a_c00220{left:376.800000pt;}
.x43_c00220{left:379.920000pt;}
.x33_c00220{left:382.080000pt;}
.x79_c00220{left:383.280000pt;}
.x5f_c00220{left:385.920000pt;}
.x10_c00220{left:392.160000pt;}
.x62_c00220{left:394.080000pt;}
.x4_c00220{left:405.840000pt;}
.x55_c00220{left:423.840000pt;}
.x7a_c00220{left:428.400000pt;}
.x80_c00220{left:437.760000pt;}
.x7b_c00220{left:442.320000pt;}
.x81_c00220{left:454.320000pt;}
.x21_c00220{left:456.000000pt;}
.x25_c00220{left:460.080000pt;}
.x5_c00220{left:475.200000pt;}
.x7c_c00220{left:480.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma2_c00221{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.m7d_c00221{transform:matrix(0.136910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136910,0.000000,0.000000,0.250000,0,0);}
.mc2_c00221{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);}
.mc4_c00221{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{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);}
.mb6_c00221{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);}
.m37_c00221{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);}
.m6a_c00221{transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{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);}
.m10_c00221{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);}
.m2b_c00221{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);}
.md_c00221{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{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);}
.mc6_c00221{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);}
.m4d_c00221{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);}
.m13_c00221{transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{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);}
.m6f_c00221{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);}
.me5_c00221{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);}
.m5b_c00221{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{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);}
.m9d_c00221{transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);}
.ma0_c00221{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);}
.mae_c00221{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);}
.m32_c00221{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);}
.m14_c00221{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);}
.m45_c00221{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);}
.mb5_c00221{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);}
.m6b_c00221{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);}
.m36_c00221{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);}
.md5_c00221{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);}
.m1b_c00221{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);}
.m69_c00221{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_c00221{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_c00221{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);}
.mb2_c00221{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);}
.mb8_c00221{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);}
.m94_c00221{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);}
.m9e_c00221{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_c00221{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);}
.m92_c00221{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);}
.m6e_c00221{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);}
.mbf_c00221{transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);}
.m72_c00221{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);}
.m59_c00221{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);}
.mb7_c00221{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);}
.mcc_c00221{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);}
.meb_c00221{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);}
.m1c_c00221{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);}
.m83_c00221{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);}
.m3d_c00221{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);}
.mb1_c00221{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);}
.mc3_c00221{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);}
.m2c_c00221{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);}
.m4f_c00221{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);}
.me_c00221{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);}
.mab_c00221{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);}
.mcd_c00221{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);}
.m44_c00221{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);}
.m85_c00221{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);}
.m79_c00221{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);}
.m11_c00221{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);}
.m1d_c00221{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);}
.m7b_c00221{transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{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);}
.m4e_c00221{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);}
.m75_c00221{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);}
.m27_c00221{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);}
.m42_c00221{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_c00221{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);}
.m77_c00221{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);}
.m63_c00221{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);}
.md0_c00221{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);}
.m3e_c00221{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);}
.m43_c00221{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);}
.mbd_c00221{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);}
.m4a_c00221{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);}
.m9f_c00221{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);}
.mbc_c00221{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);}
.m62_c00221{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);}
.mc7_c00221{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);}
.m16_c00221{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);}
.m18_c00221{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);}
.mdf_c00221{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);}
.m30_c00221{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);}
.m40_c00221{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);}
.md6_c00221{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);}
.m3f_c00221{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);}
.m17_c00221{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);}
.m9b_c00221{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_c00221{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);}
.mad_c00221{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);}
.m12_c00221{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_c00221{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);}
.m66_c00221{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);}
.md1_c00221{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);}
.m74_c00221{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);}
.m7c_c00221{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);}
.m82_c00221{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);}
.mf_c00221{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);}
.maf_c00221{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);}
.m6c_c00221{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);}
.m8b_c00221{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);}
.m60_c00221{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);}
.mc1_c00221{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);}
.mde_c00221{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);}
.m29_c00221{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);}
.m68_c00221{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);}
.m28_c00221{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);}
.mce_c00221{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);}
.m87_c00221{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);}
.m19_c00221{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);}
.m4c_c00221{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);}
.m15_c00221{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);}
.m86_c00221{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);}
.m84_c00221{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);}
.m5f_c00221{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);}
.m1f_c00221{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);}
.md8_c00221{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);}
.mc5_c00221{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);}
.m52_c00221{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);}
.m8d_c00221{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);}
.me9_c00221{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);}
.m1e_c00221{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);}
.md7_c00221{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);}
.m41_c00221{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);}
.mbb_c00221{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);}
.m7e_c00221{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);}
.mcf_c00221{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);}
.mba_c00221{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);}
.mec_c00221{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);}
.m33_c00221{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);}
.mb4_c00221{transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);}
.maa_c00221{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);}
.m2f_c00221{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);}
.m8a_c00221{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);}
.m56_c00221{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);}
.m26_c00221{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);}
.mbe_c00221{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);}
.m76_c00221{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);}
.mc0_c00221{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);}
.m51_c00221{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);}
.mb9_c00221{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);}
.m93_c00221{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);}
.m73_c00221{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);}
.m97_c00221{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);}
.m95_c00221{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);}
.m55_c00221{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);}
.mcb_c00221{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);}
.me3_c00221{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);}
.m20_c00221{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);}
.me7_c00221{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);}
.mc_c00221{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);}
.m7a_c00221{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);}
.m31_c00221{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);}
.m89_c00221{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);}
.md4_c00221{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);}
.m9c_c00221{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);}
.ma4_c00221{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);}
.ma9_c00221{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);}
.m1a_c00221{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);}
.mac_c00221{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);}
.mb3_c00221{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);}
.m98_c00221{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);}
.m91_c00221{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);}
.me6_c00221{transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{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);}
.m38_c00221{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);}
.m2d_c00221{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);}
.m67_c00221{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);}
.m35_c00221{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);}
.m99_c00221{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);}
.me0_c00221{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);}
.ma8_c00221{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);}
.m22_c00221{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);}
.m7f_c00221{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.ma3_c00221{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);}
.me4_c00221{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);}
.m61_c00221{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);}
.m5c_c00221{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);}
.mdc_c00221{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);}
.ma1_c00221{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);}
.md9_c00221{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_c00221{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);}
.m57_c00221{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);}
.mc8_c00221{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);}
.m65_c00221{transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mea_c00221{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);}
.m64_c00221{transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);}
.mb0_c00221{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);}
.m3b_c00221{transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);}
.m78_c00221{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);}
.mda_c00221{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{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);}
.m96_c00221{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);}
.mdb_c00221{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);}
.ma7_c00221{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.med_c00221{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);}
.m5a_c00221{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);}
.m58_c00221{transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00221{transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253190,0.000000,0.000000,0.250000,0,0);}
.mdd_c00221{transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254105,0.000000,0.000000,0.250000,0,0);}
.mca_c00221{transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);}
.mee_c00221{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);}
.m23_c00221{transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255950,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.mef_c00221{transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);}
.m6d_c00221{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);}
.m5e_c00221{transform:matrix(0.271695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271695,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.me8_c00221{transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);}
.md2_c00221{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{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);}
.md3_c00221{transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315740,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320855,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{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);}
.mc9_c00221{transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{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);}
.m3_c00221{transform:matrix(0.374480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374480,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.387775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387775,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387845,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390915,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.397765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00221{transform:matrix(0.408360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408360,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.423040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423040,0.000000,0.000000,0.250000,0,0);}
.me2_c00221{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);}
.mb_c00221{transform:matrix(0.431270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431270,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.472140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472140,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.507370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507370,0.000000,0.000000,0.250000,0,0);}
.m5d_c00221{transform:matrix(0.524585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524585,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(1.978870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.978870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.978870,0.000000,0.000000,0.250000,0,0);}
.me1_c00221{transform:matrix(2.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.194530,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;}
.fc0_c00221{color:transparent;}
.fse_c00221{font-size:18.900000px;}
.fs0_c00221{font-size:21.000000px;}
.fs1_c00221{font-size:39.900000px;}
.fsd_c00221{font-size:45.150000px;}
.fsc_c00221{font-size:51.450000px;}
.fsf_c00221{font-size:52.500000px;}
.fsb_c00221{font-size:53.550000px;}
.fs10_c00221{font-size:58.800000px;}
.fs9_c00221{font-size:60.900000px;}
.fsa_c00221{font-size:66.150000px;}
.fs8_c00221{font-size:68.250000px;}
.fs4_c00221{font-size:69.300000px;}
.fs6_c00221{font-size:70.350000px;}
.fs3_c00221{font-size:72.450000px;}
.fs7_c00221{font-size:73.500000px;}
.fs5_c00221{font-size:74.550000px;}
.fs2_c00221{font-size:75.600000px;}
.y0_c00221{bottom:0.000000px;}
.y22_c00221{bottom:170.791500px;}
.y1f_c00221{bottom:172.162500px;}
.y21_c00221{bottom:189.505500px;}
.y1e_c00221{bottom:190.908000px;}
.y1d_c00221{bottom:208.279500px;}
.y1_c00221{bottom:235.060500px;}
.y1c_c00221{bottom:263.095500px;}
.y1b_c00221{bottom:307.636500px;}
.y1a_c00221{bottom:330.657000px;}
.y19_c00221{bottom:353.899500px;}
.y18_c00221{bottom:376.612500px;}
.y17_c00221{bottom:399.039000px;}
.y16_c00221{bottom:422.184000px;}
.y15_c00221{bottom:444.678000px;}
.y14_c00221{bottom:467.464500px;}
.y13_c00221{bottom:490.404000px;}
.y12_c00221{bottom:513.112500px;}
.y11_c00221{bottom:535.920000px;}
.y10_c00221{bottom:558.982500px;}
.yf_c00221{bottom:581.343000px;}
.ye_c00221{bottom:603.868500px;}
.yd_c00221{bottom:626.784000px;}
.yc_c00221{bottom:649.234500px;}
.yb_c00221{bottom:672.103500px;}
.ya_c00221{bottom:694.789500px;}
.y20_c00221{bottom:707.940000px;}
.y9_c00221{bottom:717.475500px;}
.y8_c00221{bottom:741.175500px;}
.y7_c00221{bottom:762.820500px;}
.y6_c00221{bottom:785.569500px;}
.y5_c00221{bottom:808.438500px;}
.y4_c00221{bottom:831.762000px;}
.y3_c00221{bottom:919.056000px;}
.y2_c00221{bottom:935.931000px;}
.h10_c00221{height:18.900000px;}
.h2_c00221{height:21.000000px;}
.h3_c00221{height:39.900000px;}
.hf_c00221{height:45.150000px;}
.he_c00221{height:51.450000px;}
.h11_c00221{height:52.500000px;}
.hd_c00221{height:53.550000px;}
.h12_c00221{height:58.800000px;}
.hb_c00221{height:60.900000px;}
.hc_c00221{height:66.150000px;}
.ha_c00221{height:68.250000px;}
.h6_c00221{height:69.300000px;}
.h8_c00221{height:70.350000px;}
.h5_c00221{height:72.450000px;}
.h9_c00221{height:73.500000px;}
.h7_c00221{height:74.550000px;}
.h4_c00221{height:75.600000px;}
.h0_c00221{height:1008.450000px;}
.h1_c00221{height:1008.750000px;}
.w0_c00221{width:678.450000px;}
.w1_c00221{width:678.750000px;}
.x0_c00221{left:0.000000px;}
.x87_c00221{left:128.790000px;}
.x1_c00221{left:133.920000px;}
.x2_c00221{left:135.000000px;}
.x7c_c00221{left:137.430000px;}
.x4_c00221{left:150.390000px;}
.x52_c00221{left:158.760000px;}
.x7d_c00221{left:162.810000px;}
.x73_c00221{left:164.970000px;}
.x6a_c00221{left:166.050000px;}
.x40_c00221{left:167.400000px;}
.x28_c00221{left:168.480000px;}
.xd_c00221{left:169.830000px;}
.x9_c00221{left:177.660000px;}
.x3_c00221{left:183.600000px;}
.x49_c00221{left:190.890000px;}
.x79_c00221{left:191.970000px;}
.x62_c00221{left:193.590000px;}
.x29_c00221{left:194.670000px;}
.x16_c00221{left:197.640000px;}
.x5_c00221{left:199.530000px;}
.x88_c00221{left:203.040000px;}
.x53_c00221{left:207.630000px;}
.x58_c00221{left:208.710000px;}
.x41_c00221{left:209.790000px;}
.xe_c00221{left:210.870000px;}
.x23_c00221{left:212.220000px;}
.x1b_c00221{left:214.920000px;}
.x17_c00221{left:221.130000px;}
.x4a_c00221{left:225.450000px;}
.x6b_c00221{left:227.340000px;}
.x89_c00221{left:228.690000px;}
.x67_c00221{left:232.740000px;}
.xf_c00221{left:234.630000px;}
.x6e_c00221{left:236.790000px;}
.x3b_c00221{left:239.760000px;}
.x2a_c00221{left:242.190000px;}
.x4b_c00221{left:244.620000px;}
.x46_c00221{left:247.050000px;}
.x5e_c00221{left:250.020000px;}
.x6_c00221{left:251.370000px;}
.x35_c00221{left:252.450000px;}
.x30_c00221{left:255.150000px;}
.x8a_c00221{left:258.660000px;}
.xa_c00221{left:261.090000px;}
.x7e_c00221{left:263.250000px;}
.x74_c00221{left:267.030000px;}
.x3c_c00221{left:272.430000px;}
.x36_c00221{left:273.510000px;}
.x10_c00221{left:277.020000px;}
.x4c_c00221{left:278.910000px;}
.x18_c00221{left:281.340000px;}
.x2b_c00221{left:283.500000px;}
.x31_c00221{left:285.120000px;}
.xb_c00221{left:286.740000px;}
.x7f_c00221{left:288.090000px;}
.x3a_c00221{left:291.060000px;}
.x76_c00221{left:292.410000px;}
.xc_c00221{left:296.190000px;}
.x7_c00221{left:299.160000px;}
.x59_c00221{left:304.560000px;}
.x42_c00221{left:306.180000px;}
.x8_c00221{left:307.800000px;}
.x7a_c00221{left:310.230000px;}
.x8b_c00221{left:318.060000px;}
.x2c_c00221{left:322.110000px;}
.x1c_c00221{left:323.460000px;}
.x37_c00221{left:326.700000px;}
.x54_c00221{left:328.320000px;}
.x3d_c00221{left:330.210000px;}
.x32_c00221{left:331.830000px;}
.x6c_c00221{left:333.990000px;}
.x11_c00221{left:335.070000px;}
.x63_c00221{left:336.150000px;}
.x47_c00221{left:338.040000px;}
.x19_c00221{left:340.740000px;}
.x55_c00221{left:342.630000px;}
.x12_c00221{left:348.570000px;}
.x1f_c00221{left:349.920000px;}
.x66_c00221{left:352.080000px;}
.x4d_c00221{left:353.160000px;}
.x1d_c00221{left:358.290000px;}
.x48_c00221{left:362.880000px;}
.x24_c00221{left:363.960000px;}
.x64_c00221{left:365.310000px;}
.x43_c00221{left:367.470000px;}
.x5f_c00221{left:370.170000px;}
.x20_c00221{left:371.520000px;}
.x80_c00221{left:375.570000px;}
.x8e_c00221{left:377.190000px;}
.x68_c00221{left:378.810000px;}
.x77_c00221{left:384.750000px;}
.x25_c00221{left:386.100000px;}
.x5a_c00221{left:387.450000px;}
.x13_c00221{left:390.960000px;}
.x44_c00221{left:393.120000px;}
.x81_c00221{left:395.010000px;}
.x21_c00221{left:396.900000px;}
.x3e_c00221{left:398.250000px;}
.x56_c00221{left:400.140000px;}
.x1a_c00221{left:401.220000px;}
.x7b_c00221{left:402.300000px;}
.x4e_c00221{left:405.000000px;}
.x6f_c00221{left:409.320000px;}
.x2d_c00221{left:411.750000px;}
.x22_c00221{left:417.150000px;}
.x75_c00221{left:424.170000px;}
.x14_c00221{left:425.250000px;}
.x4f_c00221{left:427.410000px;}
.x33_c00221{left:428.490000px;}
.x38_c00221{left:429.570000px;}
.x92_c00221{left:433.890000px;}
.x60_c00221{left:437.130000px;}
.x3f_c00221{left:438.480000px;}
.x78_c00221{left:439.560000px;}
.x1e_c00221{left:441.720000px;}
.x57_c00221{left:442.800000px;}
.x26_c00221{left:450.090000px;}
.x2e_c00221{left:452.790000px;}
.x69_c00221{left:455.220000px;}
.x34_c00221{left:458.190000px;}
.x39_c00221{left:459.810000px;}
.x5b_c00221{left:462.240000px;}
.x70_c00221{left:464.130000px;}
.x82_c00221{left:467.370000px;}
.x65_c00221{left:471.960000px;}
.x2f_c00221{left:473.580000px;}
.x15_c00221{left:477.360000px;}
.x50_c00221{left:481.140000px;}
.x71_c00221{left:482.220000px;}
.x93_c00221{left:484.380000px;}
.x45_c00221{left:486.270000px;}
.x83_c00221{left:489.780000px;}
.x5c_c00221{left:495.450000px;}
.x61_c00221{left:497.340000px;}
.x6d_c00221{left:500.040000px;}
.x72_c00221{left:503.280000px;}
.x8f_c00221{left:513.270000px;}
.x27_c00221{left:517.320000px;}
.x51_c00221{left:520.020000px;}
.x84_c00221{left:526.230000px;}
.x94_c00221{left:534.870000px;}
.x90_c00221{left:538.380000px;}
.x85_c00221{left:551.070000px;}
.x8c_c00221{left:552.420000px;}
.x5d_c00221{left:577.260000px;}
.x86_c00221{left:581.040000px;}
.x8d_c00221{left:582.660000px;}
.x91_c00221{left:591.300000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
.fse_c00221{font-size:16.800000pt;}
.fs0_c00221{font-size:18.666667pt;}
.fs1_c00221{font-size:35.466667pt;}
.fsd_c00221{font-size:40.133333pt;}
.fsc_c00221{font-size:45.733333pt;}
.fsf_c00221{font-size:46.666667pt;}
.fsb_c00221{font-size:47.600000pt;}
.fs10_c00221{font-size:52.266667pt;}
.fs9_c00221{font-size:54.133333pt;}
.fsa_c00221{font-size:58.800000pt;}
.fs8_c00221{font-size:60.666667pt;}
.fs4_c00221{font-size:61.600000pt;}
.fs6_c00221{font-size:62.533333pt;}
.fs3_c00221{font-size:64.400000pt;}
.fs7_c00221{font-size:65.333333pt;}
.fs5_c00221{font-size:66.266667pt;}
.fs2_c00221{font-size:67.200000pt;}
.y0_c00221{bottom:0.000000pt;}
.y22_c00221{bottom:151.814667pt;}
.y1f_c00221{bottom:153.033333pt;}
.y21_c00221{bottom:168.449333pt;}
.y1e_c00221{bottom:169.696000pt;}
.y1d_c00221{bottom:185.137333pt;}
.y1_c00221{bottom:208.942667pt;}
.y1c_c00221{bottom:233.862667pt;}
.y1b_c00221{bottom:273.454667pt;}
.y1a_c00221{bottom:293.917333pt;}
.y19_c00221{bottom:314.577333pt;}
.y18_c00221{bottom:334.766667pt;}
.y17_c00221{bottom:354.701333pt;}
.y16_c00221{bottom:375.274667pt;}
.y15_c00221{bottom:395.269333pt;}
.y14_c00221{bottom:415.524000pt;}
.y13_c00221{bottom:435.914667pt;}
.y12_c00221{bottom:456.100000pt;}
.y11_c00221{bottom:476.373333pt;}
.y10_c00221{bottom:496.873333pt;}
.yf_c00221{bottom:516.749333pt;}
.ye_c00221{bottom:536.772000pt;}
.yd_c00221{bottom:557.141333pt;}
.yc_c00221{bottom:577.097333pt;}
.yb_c00221{bottom:597.425333pt;}
.ya_c00221{bottom:617.590667pt;}
.y20_c00221{bottom:629.280000pt;}
.y9_c00221{bottom:637.756000pt;}
.y8_c00221{bottom:658.822667pt;}
.y7_c00221{bottom:678.062667pt;}
.y6_c00221{bottom:698.284000pt;}
.y5_c00221{bottom:718.612000pt;}
.y4_c00221{bottom:739.344000pt;}
.y3_c00221{bottom:816.938667pt;}
.y2_c00221{bottom:831.938667pt;}
.h10_c00221{height:16.800000pt;}
.h2_c00221{height:18.666667pt;}
.h3_c00221{height:35.466667pt;}
.hf_c00221{height:40.133333pt;}
.he_c00221{height:45.733333pt;}
.h11_c00221{height:46.666667pt;}
.hd_c00221{height:47.600000pt;}
.h12_c00221{height:52.266667pt;}
.hb_c00221{height:54.133333pt;}
.hc_c00221{height:58.800000pt;}
.ha_c00221{height:60.666667pt;}
.h6_c00221{height:61.600000pt;}
.h8_c00221{height:62.533333pt;}
.h5_c00221{height:64.400000pt;}
.h9_c00221{height:65.333333pt;}
.h7_c00221{height:66.266667pt;}
.h4_c00221{height:67.200000pt;}
.h0_c00221{height:896.400000pt;}
.h1_c00221{height:896.666667pt;}
.w0_c00221{width:603.066667pt;}
.w1_c00221{width:603.333333pt;}
.x0_c00221{left:0.000000pt;}
.x87_c00221{left:114.480000pt;}
.x1_c00221{left:119.040000pt;}
.x2_c00221{left:120.000000pt;}
.x7c_c00221{left:122.160000pt;}
.x4_c00221{left:133.680000pt;}
.x52_c00221{left:141.120000pt;}
.x7d_c00221{left:144.720000pt;}
.x73_c00221{left:146.640000pt;}
.x6a_c00221{left:147.600000pt;}
.x40_c00221{left:148.800000pt;}
.x28_c00221{left:149.760000pt;}
.xd_c00221{left:150.960000pt;}
.x9_c00221{left:157.920000pt;}
.x3_c00221{left:163.200000pt;}
.x49_c00221{left:169.680000pt;}
.x79_c00221{left:170.640000pt;}
.x62_c00221{left:172.080000pt;}
.x29_c00221{left:173.040000pt;}
.x16_c00221{left:175.680000pt;}
.x5_c00221{left:177.360000pt;}
.x88_c00221{left:180.480000pt;}
.x53_c00221{left:184.560000pt;}
.x58_c00221{left:185.520000pt;}
.x41_c00221{left:186.480000pt;}
.xe_c00221{left:187.440000pt;}
.x23_c00221{left:188.640000pt;}
.x1b_c00221{left:191.040000pt;}
.x17_c00221{left:196.560000pt;}
.x4a_c00221{left:200.400000pt;}
.x6b_c00221{left:202.080000pt;}
.x89_c00221{left:203.280000pt;}
.x67_c00221{left:206.880000pt;}
.xf_c00221{left:208.560000pt;}
.x6e_c00221{left:210.480000pt;}
.x3b_c00221{left:213.120000pt;}
.x2a_c00221{left:215.280000pt;}
.x4b_c00221{left:217.440000pt;}
.x46_c00221{left:219.600000pt;}
.x5e_c00221{left:222.240000pt;}
.x6_c00221{left:223.440000pt;}
.x35_c00221{left:224.400000pt;}
.x30_c00221{left:226.800000pt;}
.x8a_c00221{left:229.920000pt;}
.xa_c00221{left:232.080000pt;}
.x7e_c00221{left:234.000000pt;}
.x74_c00221{left:237.360000pt;}
.x3c_c00221{left:242.160000pt;}
.x36_c00221{left:243.120000pt;}
.x10_c00221{left:246.240000pt;}
.x4c_c00221{left:247.920000pt;}
.x18_c00221{left:250.080000pt;}
.x2b_c00221{left:252.000000pt;}
.x31_c00221{left:253.440000pt;}
.xb_c00221{left:254.880000pt;}
.x7f_c00221{left:256.080000pt;}
.x3a_c00221{left:258.720000pt;}
.x76_c00221{left:259.920000pt;}
.xc_c00221{left:263.280000pt;}
.x7_c00221{left:265.920000pt;}
.x59_c00221{left:270.720000pt;}
.x42_c00221{left:272.160000pt;}
.x8_c00221{left:273.600000pt;}
.x7a_c00221{left:275.760000pt;}
.x8b_c00221{left:282.720000pt;}
.x2c_c00221{left:286.320000pt;}
.x1c_c00221{left:287.520000pt;}
.x37_c00221{left:290.400000pt;}
.x54_c00221{left:291.840000pt;}
.x3d_c00221{left:293.520000pt;}
.x32_c00221{left:294.960000pt;}
.x6c_c00221{left:296.880000pt;}
.x11_c00221{left:297.840000pt;}
.x63_c00221{left:298.800000pt;}
.x47_c00221{left:300.480000pt;}
.x19_c00221{left:302.880000pt;}
.x55_c00221{left:304.560000pt;}
.x12_c00221{left:309.840000pt;}
.x1f_c00221{left:311.040000pt;}
.x66_c00221{left:312.960000pt;}
.x4d_c00221{left:313.920000pt;}
.x1d_c00221{left:318.480000pt;}
.x48_c00221{left:322.560000pt;}
.x24_c00221{left:323.520000pt;}
.x64_c00221{left:324.720000pt;}
.x43_c00221{left:326.640000pt;}
.x5f_c00221{left:329.040000pt;}
.x20_c00221{left:330.240000pt;}
.x80_c00221{left:333.840000pt;}
.x8e_c00221{left:335.280000pt;}
.x68_c00221{left:336.720000pt;}
.x77_c00221{left:342.000000pt;}
.x25_c00221{left:343.200000pt;}
.x5a_c00221{left:344.400000pt;}
.x13_c00221{left:347.520000pt;}
.x44_c00221{left:349.440000pt;}
.x81_c00221{left:351.120000pt;}
.x21_c00221{left:352.800000pt;}
.x3e_c00221{left:354.000000pt;}
.x56_c00221{left:355.680000pt;}
.x1a_c00221{left:356.640000pt;}
.x7b_c00221{left:357.600000pt;}
.x4e_c00221{left:360.000000pt;}
.x6f_c00221{left:363.840000pt;}
.x2d_c00221{left:366.000000pt;}
.x22_c00221{left:370.800000pt;}
.x75_c00221{left:377.040000pt;}
.x14_c00221{left:378.000000pt;}
.x4f_c00221{left:379.920000pt;}
.x33_c00221{left:380.880000pt;}
.x38_c00221{left:381.840000pt;}
.x92_c00221{left:385.680000pt;}
.x60_c00221{left:388.560000pt;}
.x3f_c00221{left:389.760000pt;}
.x78_c00221{left:390.720000pt;}
.x1e_c00221{left:392.640000pt;}
.x57_c00221{left:393.600000pt;}
.x26_c00221{left:400.080000pt;}
.x2e_c00221{left:402.480000pt;}
.x69_c00221{left:404.640000pt;}
.x34_c00221{left:407.280000pt;}
.x39_c00221{left:408.720000pt;}
.x5b_c00221{left:410.880000pt;}
.x70_c00221{left:412.560000pt;}
.x82_c00221{left:415.440000pt;}
.x65_c00221{left:419.520000pt;}
.x2f_c00221{left:420.960000pt;}
.x15_c00221{left:424.320000pt;}
.x50_c00221{left:427.680000pt;}
.x71_c00221{left:428.640000pt;}
.x93_c00221{left:430.560000pt;}
.x45_c00221{left:432.240000pt;}
.x83_c00221{left:435.360000pt;}
.x5c_c00221{left:440.400000pt;}
.x61_c00221{left:442.080000pt;}
.x6d_c00221{left:444.480000pt;}
.x72_c00221{left:447.360000pt;}
.x8f_c00221{left:456.240000pt;}
.x27_c00221{left:459.840000pt;}
.x51_c00221{left:462.240000pt;}
.x84_c00221{left:467.760000pt;}
.x94_c00221{left:475.440000pt;}
.x90_c00221{left:478.560000pt;}
.x85_c00221{left:489.840000pt;}
.x8c_c00221{left:491.040000pt;}
.x5d_c00221{left:513.120000pt;}
.x86_c00221{left:516.480000pt;}
.x8d_c00221{left:517.920000pt;}
.x91_c00221{left:525.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m91_c00222{transform:matrix(0.009089,-0.000155,0.004249,0.249964,0,0);-ms-transform:matrix(0.009089,-0.000155,0.004249,0.249964,0,0);-webkit-transform:matrix(0.009089,-0.000155,0.004249,0.249964,0,0);}
.m53_c00222{transform:matrix(0.010099,-0.000172,0.004249,0.249964,0,0);-ms-transform:matrix(0.010099,-0.000172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.010099,-0.000172,0.004249,0.249964,0,0);}
.m5a_c00222{transform:matrix(0.014723,-0.000250,0.004249,0.249964,0,0);-ms-transform:matrix(0.014723,-0.000250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.014723,-0.000250,0.004249,0.249964,0,0);}
.m49_c00222{transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);-ms-transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.016283,-0.000277,0.004249,0.249964,0,0);}
.m58_c00222{transform:matrix(0.027196,-0.000462,0.004249,0.249964,0,0);-ms-transform:matrix(0.027196,-0.000462,0.004249,0.249964,0,0);-webkit-transform:matrix(0.027196,-0.000462,0.004249,0.249964,0,0);}
.me8_c00222{transform:matrix(0.051535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051535,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.084973,-0.001445,0.004249,0.249964,0,0);-ms-transform:matrix(0.084973,-0.001445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.084973,-0.001445,0.004249,0.249964,0,0);}
.m2b_c00222{transform:matrix(0.090152,-0.001533,0.004249,0.249964,0,0);-ms-transform:matrix(0.090152,-0.001533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.090152,-0.001533,0.004249,0.249964,0,0);}
.m95_c00222{transform:matrix(0.094046,-0.001599,0.004249,0.249964,0,0);-ms-transform:matrix(0.094046,-0.001599,0.004249,0.249964,0,0);-webkit-transform:matrix(0.094046,-0.001599,0.004249,0.249964,0,0);}
.m92_c00222{transform:matrix(0.102155,-0.001737,0.004249,0.249964,0,0);-ms-transform:matrix(0.102155,-0.001737,0.004249,0.249964,0,0);-webkit-transform:matrix(0.102155,-0.001737,0.004249,0.249964,0,0);}
.m61_c00222{transform:matrix(0.102255,-0.001738,0.004249,0.249964,0,0);-ms-transform:matrix(0.102255,-0.001738,0.004249,0.249964,0,0);-webkit-transform:matrix(0.102255,-0.001738,0.004249,0.249964,0,0);}
.m1_c00222{transform:matrix(0.105335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105335,0.000000,0.000000,0.250000,0,0);}
.me6_c00222{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.150053,-0.002551,0.004249,0.249964,0,0);-ms-transform:matrix(0.150053,-0.002551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150053,-0.002551,0.004249,0.249964,0,0);}
.m5c_c00222{transform:matrix(0.150728,-0.002562,0.004249,0.249964,0,0);-ms-transform:matrix(0.150728,-0.002562,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150728,-0.002562,0.004249,0.249964,0,0);}
.md2_c00222{transform:matrix(0.151453,-0.007732,0.012746,0.249675,0,0);-ms-transform:matrix(0.151453,-0.007732,0.012746,0.249675,0,0);-webkit-transform:matrix(0.151453,-0.007732,0.012746,0.249675,0,0);}
.m17_c00222{transform:matrix(0.152053,-0.002585,0.004249,0.249964,0,0);-ms-transform:matrix(0.152053,-0.002585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152053,-0.002585,0.004249,0.249964,0,0);}
.m82_c00222{transform:matrix(0.152423,-0.002591,0.004249,0.249964,0,0);-ms-transform:matrix(0.152423,-0.002591,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152423,-0.002591,0.004249,0.249964,0,0);}
.m64_c00222{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);}
.mda_c00222{transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.154233,-0.002622,0.004249,0.249964,0,0);-ms-transform:matrix(0.154233,-0.002622,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154233,-0.002622,0.004249,0.249964,0,0);}
.m74_c00222{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);}
.m78_c00222{transform:matrix(0.156602,-0.002662,0.004249,0.249964,0,0);-ms-transform:matrix(0.156602,-0.002662,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156602,-0.002662,0.004249,0.249964,0,0);}
.mdb_c00222{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);}
.m66_c00222{transform:matrix(0.157337,-0.002675,0.004249,0.249964,0,0);-ms-transform:matrix(0.157337,-0.002675,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157337,-0.002675,0.004249,0.249964,0,0);}
.m3b_c00222{transform:matrix(0.158137,-0.002688,0.004249,0.249964,0,0);-ms-transform:matrix(0.158137,-0.002688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158137,-0.002688,0.004249,0.249964,0,0);}
.mf0_c00222{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);}
.md1_c00222{transform:matrix(0.158798,-0.008107,0.012746,0.249675,0,0);-ms-transform:matrix(0.158798,-0.008107,0.012746,0.249675,0,0);-webkit-transform:matrix(0.158798,-0.008107,0.012746,0.249675,0,0);}
.m31_c00222{transform:matrix(0.159227,-0.002707,0.004249,0.249964,0,0);-ms-transform:matrix(0.159227,-0.002707,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159227,-0.002707,0.004249,0.249964,0,0);}
.ma4_c00222{transform:matrix(0.159262,-0.002707,0.004249,0.249964,0,0);-ms-transform:matrix(0.159262,-0.002707,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159262,-0.002707,0.004249,0.249964,0,0);}
.m99_c00222{transform:matrix(0.159672,-0.002714,0.004249,0.249964,0,0);-ms-transform:matrix(0.159672,-0.002714,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159672,-0.002714,0.004249,0.249964,0,0);}
.me3_c00222{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);}
.m89_c00222{transform:matrix(0.163631,-0.002782,0.004249,0.249964,0,0);-ms-transform:matrix(0.163631,-0.002782,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163631,-0.002782,0.004249,0.249964,0,0);}
.m28_c00222{transform:matrix(0.163721,-0.002783,0.004249,0.249964,0,0);-ms-transform:matrix(0.163721,-0.002783,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163721,-0.002783,0.004249,0.249964,0,0);}
.m3c_c00222{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_c00222{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);}
.m3f_c00222{transform:matrix(0.166006,-0.002822,0.004249,0.249964,0,0);-ms-transform:matrix(0.166006,-0.002822,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166006,-0.002822,0.004249,0.249964,0,0);}
.m12_c00222{transform:matrix(0.166121,-0.002824,0.004249,0.249964,0,0);-ms-transform:matrix(0.166121,-0.002824,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166121,-0.002824,0.004249,0.249964,0,0);}
.m23_c00222{transform:matrix(0.166776,-0.002835,0.004249,0.249964,0,0);-ms-transform:matrix(0.166776,-0.002835,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166776,-0.002835,0.004249,0.249964,0,0);}
.m77_c00222{transform:matrix(0.167411,-0.002846,0.004249,0.249964,0,0);-ms-transform:matrix(0.167411,-0.002846,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167411,-0.002846,0.004249,0.249964,0,0);}
.m6f_c00222{transform:matrix(0.167761,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167761,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167761,-0.002852,0.004249,0.249964,0,0);}
.m70_c00222{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);}
.m3d_c00222{transform:matrix(0.168476,-0.002864,0.004249,0.249964,0,0);-ms-transform:matrix(0.168476,-0.002864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168476,-0.002864,0.004249,0.249964,0,0);}
.mb1_c00222{transform:matrix(0.169331,-0.002879,0.004249,0.249964,0,0);-ms-transform:matrix(0.169331,-0.002879,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169331,-0.002879,0.004249,0.249964,0,0);}
.m8e_c00222{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);}
.me_c00222{transform:matrix(0.169770,-0.002886,0.004249,0.249964,0,0);-ms-transform:matrix(0.169770,-0.002886,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169770,-0.002886,0.004249,0.249964,0,0);}
.m87_c00222{transform:matrix(0.169920,-0.002889,0.004249,0.249964,0,0);-ms-transform:matrix(0.169920,-0.002889,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169920,-0.002889,0.004249,0.249964,0,0);}
.m0_c00222{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);}
.m7f_c00222{transform:matrix(0.170765,-0.002903,0.004249,0.249964,0,0);-ms-transform:matrix(0.170765,-0.002903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170765,-0.002903,0.004249,0.249964,0,0);}
.m75_c00222{transform:matrix(0.171190,-0.002910,0.004249,0.249964,0,0);-ms-transform:matrix(0.171190,-0.002910,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171190,-0.002910,0.004249,0.249964,0,0);}
.m11_c00222{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);}
.m20_c00222{transform:matrix(0.171960,-0.002923,0.004249,0.249964,0,0);-ms-transform:matrix(0.171960,-0.002923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171960,-0.002923,0.004249,0.249964,0,0);}
.m85_c00222{transform:matrix(0.172195,-0.002927,0.004249,0.249964,0,0);-ms-transform:matrix(0.172195,-0.002927,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172195,-0.002927,0.004249,0.249964,0,0);}
.mbb_c00222{transform:matrix(0.173215,-0.002945,0.004249,0.249964,0,0);-ms-transform:matrix(0.173215,-0.002945,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173215,-0.002945,0.004249,0.249964,0,0);}
.m32_c00222{transform:matrix(0.173220,-0.002945,0.004249,0.249964,0,0);-ms-transform:matrix(0.173220,-0.002945,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173220,-0.002945,0.004249,0.249964,0,0);}
.m2d_c00222{transform:matrix(0.175250,-0.002979,0.004249,0.249964,0,0);-ms-transform:matrix(0.175250,-0.002979,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175250,-0.002979,0.004249,0.249964,0,0);}
.m4e_c00222{transform:matrix(0.175555,-0.002984,0.004249,0.249964,0,0);-ms-transform:matrix(0.175555,-0.002984,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175555,-0.002984,0.004249,0.249964,0,0);}
.mc0_c00222{transform:matrix(0.176250,-0.002996,0.004249,0.249964,0,0);-ms-transform:matrix(0.176250,-0.002996,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176250,-0.002996,0.004249,0.249964,0,0);}
.mbd_c00222{transform:matrix(0.176480,-0.003000,0.004249,0.249964,0,0);-ms-transform:matrix(0.176480,-0.003000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176480,-0.003000,0.004249,0.249964,0,0);}
.mc4_c00222{transform:matrix(0.177074,-0.003010,0.004249,0.249964,0,0);-ms-transform:matrix(0.177074,-0.003010,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177074,-0.003010,0.004249,0.249964,0,0);}
.ma7_c00222{transform:matrix(0.177114,-0.003011,0.004249,0.249964,0,0);-ms-transform:matrix(0.177114,-0.003011,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177114,-0.003011,0.004249,0.249964,0,0);}
.m79_c00222{transform:matrix(0.177354,-0.003015,0.004249,0.249964,0,0);-ms-transform:matrix(0.177354,-0.003015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177354,-0.003015,0.004249,0.249964,0,0);}
.m96_c00222{transform:matrix(0.177534,-0.003018,0.004249,0.249964,0,0);-ms-transform:matrix(0.177534,-0.003018,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177534,-0.003018,0.004249,0.249964,0,0);}
.m9f_c00222{transform:matrix(0.177614,-0.003019,0.004249,0.249964,0,0);-ms-transform:matrix(0.177614,-0.003019,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177614,-0.003019,0.004249,0.249964,0,0);}
.m9a_c00222{transform:matrix(0.177779,-0.003022,0.004249,0.249964,0,0);-ms-transform:matrix(0.177779,-0.003022,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177779,-0.003022,0.004249,0.249964,0,0);}
.mb8_c00222{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);}
.md0_c00222{transform:matrix(0.178642,-0.009120,0.012746,0.249675,0,0);-ms-transform:matrix(0.178642,-0.009120,0.012746,0.249675,0,0);-webkit-transform:matrix(0.178642,-0.009120,0.012746,0.249675,0,0);}
.maf_c00222{transform:matrix(0.178739,-0.003039,0.004249,0.249964,0,0);-ms-transform:matrix(0.178739,-0.003039,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178739,-0.003039,0.004249,0.249964,0,0);}
.ma5_c00222{transform:matrix(0.179239,-0.003047,0.004249,0.249964,0,0);-ms-transform:matrix(0.179239,-0.003047,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179239,-0.003047,0.004249,0.249964,0,0);}
.md9_c00222{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);}
.m43_c00222{transform:matrix(0.179959,-0.003059,0.004249,0.249964,0,0);-ms-transform:matrix(0.179959,-0.003059,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179959,-0.003059,0.004249,0.249964,0,0);}
.m1e_c00222{transform:matrix(0.180374,-0.003066,0.004249,0.249964,0,0);-ms-transform:matrix(0.180374,-0.003066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180374,-0.003066,0.004249,0.249964,0,0);}
.m10_c00222{transform:matrix(0.180614,-0.003070,0.004249,0.249964,0,0);-ms-transform:matrix(0.180614,-0.003070,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180614,-0.003070,0.004249,0.249964,0,0);}
.m25_c00222{transform:matrix(0.180799,-0.003074,0.004249,0.249964,0,0);-ms-transform:matrix(0.180799,-0.003074,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180799,-0.003074,0.004249,0.249964,0,0);}
.m76_c00222{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);}
.mb5_c00222{transform:matrix(0.181944,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181944,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181944,-0.003093,0.004249,0.249964,0,0);}
.m5e_c00222{transform:matrix(0.182639,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182639,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182639,-0.003105,0.004249,0.249964,0,0);}
.mb7_c00222{transform:matrix(0.182674,-0.003105,0.004249,0.249964,0,0);-ms-transform:matrix(0.182674,-0.003105,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182674,-0.003105,0.004249,0.249964,0,0);}
.mc3_c00222{transform:matrix(0.183758,-0.003124,0.004249,0.249964,0,0);-ms-transform:matrix(0.183758,-0.003124,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183758,-0.003124,0.004249,0.249964,0,0);}
.m80_c00222{transform:matrix(0.184093,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184093,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184093,-0.003130,0.004249,0.249964,0,0);}
.m67_c00222{transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);}
.mc5_c00222{transform:matrix(0.184338,-0.003134,0.004249,0.249964,0,0);-ms-transform:matrix(0.184338,-0.003134,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184338,-0.003134,0.004249,0.249964,0,0);}
.m1b_c00222{transform:matrix(0.184453,-0.003136,0.004249,0.249964,0,0);-ms-transform:matrix(0.184453,-0.003136,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184453,-0.003136,0.004249,0.249964,0,0);}
.m8c_c00222{transform:matrix(0.185678,-0.003157,0.004249,0.249964,0,0);-ms-transform:matrix(0.185678,-0.003157,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185678,-0.003157,0.004249,0.249964,0,0);}
.me4_c00222{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);}
.m18_c00222{transform:matrix(0.186163,-0.003165,0.004249,0.249964,0,0);-ms-transform:matrix(0.186163,-0.003165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186163,-0.003165,0.004249,0.249964,0,0);}
.m1d_c00222{transform:matrix(0.187013,-0.003179,0.004249,0.249964,0,0);-ms-transform:matrix(0.187013,-0.003179,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187013,-0.003179,0.004249,0.249964,0,0);}
.m60_c00222{transform:matrix(0.187213,-0.003183,0.004249,0.249964,0,0);-ms-transform:matrix(0.187213,-0.003183,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187213,-0.003183,0.004249,0.249964,0,0);}
.mb3_c00222{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);}
.m86_c00222{transform:matrix(0.187638,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187638,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187638,-0.003190,0.004249,0.249964,0,0);}
.m34_c00222{transform:matrix(0.188358,-0.003202,0.004249,0.249964,0,0);-ms-transform:matrix(0.188358,-0.003202,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188358,-0.003202,0.004249,0.249964,0,0);}
.m29_c00222{transform:matrix(0.188548,-0.003205,0.004249,0.249964,0,0);-ms-transform:matrix(0.188548,-0.003205,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188548,-0.003205,0.004249,0.249964,0,0);}
.m4b_c00222{transform:matrix(0.189073,-0.003214,0.004249,0.249964,0,0);-ms-transform:matrix(0.189073,-0.003214,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189073,-0.003214,0.004249,0.249964,0,0);}
.m1f_c00222{transform:matrix(0.189178,-0.003216,0.004249,0.249964,0,0);-ms-transform:matrix(0.189178,-0.003216,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189178,-0.003216,0.004249,0.249964,0,0);}
.m13_c00222{transform:matrix(0.189273,-0.003218,0.004249,0.249964,0,0);-ms-transform:matrix(0.189273,-0.003218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189273,-0.003218,0.004249,0.249964,0,0);}
.m6b_c00222{transform:matrix(0.189288,-0.003218,0.004249,0.249964,0,0);-ms-transform:matrix(0.189288,-0.003218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189288,-0.003218,0.004249,0.249964,0,0);}
.m9c_c00222{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);}
.m7a_c00222{transform:matrix(0.189813,-0.003227,0.004249,0.249964,0,0);-ms-transform:matrix(0.189813,-0.003227,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189813,-0.003227,0.004249,0.249964,0,0);}
.m3a_c00222{transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);-ms-transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);}
.mcd_c00222{transform:matrix(0.191421,-0.009772,0.012746,0.249675,0,0);-ms-transform:matrix(0.191421,-0.009772,0.012746,0.249675,0,0);-webkit-transform:matrix(0.191421,-0.009772,0.012746,0.249675,0,0);}
.me7_c00222{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);}
.mb9_c00222{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);}
.me1_c00222{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.md4_c00222{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);}
.mef_c00222{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);}
.m7d_c00222{transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);-ms-transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192932,-0.003280,0.004249,0.249964,0,0);}
.m83_c00222{transform:matrix(0.193172,-0.003284,0.004249,0.249964,0,0);-ms-transform:matrix(0.193172,-0.003284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193172,-0.003284,0.004249,0.249964,0,0);}
.mba_c00222{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);}
.m6a_c00222{transform:matrix(0.193682,-0.003293,0.004249,0.249964,0,0);-ms-transform:matrix(0.193682,-0.003293,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193682,-0.003293,0.004249,0.249964,0,0);}
.m6d_c00222{transform:matrix(0.194472,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194472,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194472,-0.003306,0.004249,0.249964,0,0);}
.m41_c00222{transform:matrix(0.194872,-0.003313,0.004249,0.249964,0,0);-ms-transform:matrix(0.194872,-0.003313,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194872,-0.003313,0.004249,0.249964,0,0);}
.m55_c00222{transform:matrix(0.194877,-0.003313,0.004249,0.249964,0,0);-ms-transform:matrix(0.194877,-0.003313,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194877,-0.003313,0.004249,0.249964,0,0);}
.ma3_c00222{transform:matrix(0.194962,-0.003314,0.004249,0.249964,0,0);-ms-transform:matrix(0.194962,-0.003314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194962,-0.003314,0.004249,0.249964,0,0);}
.m42_c00222{transform:matrix(0.194967,-0.003314,0.004249,0.249964,0,0);-ms-transform:matrix(0.194967,-0.003314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194967,-0.003314,0.004249,0.249964,0,0);}
.m24_c00222{transform:matrix(0.195732,-0.003327,0.004249,0.249964,0,0);-ms-transform:matrix(0.195732,-0.003327,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195732,-0.003327,0.004249,0.249964,0,0);}
.md3_c00222{transform:matrix(0.195810,-0.009996,0.012746,0.249675,0,0);-ms-transform:matrix(0.195810,-0.009996,0.012746,0.249675,0,0);-webkit-transform:matrix(0.195810,-0.009996,0.012746,0.249675,0,0);}
.m9d_c00222{transform:matrix(0.196122,-0.003334,0.004249,0.249964,0,0);-ms-transform:matrix(0.196122,-0.003334,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196122,-0.003334,0.004249,0.249964,0,0);}
.m47_c00222{transform:matrix(0.196807,-0.003346,0.004249,0.249964,0,0);-ms-transform:matrix(0.196807,-0.003346,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196807,-0.003346,0.004249,0.249964,0,0);}
.m7b_c00222{transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);-ms-transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);}
.m38_c00222{transform:matrix(0.197401,-0.003356,0.004249,0.249964,0,0);-ms-transform:matrix(0.197401,-0.003356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197401,-0.003356,0.004249,0.249964,0,0);}
.mc2_c00222{transform:matrix(0.198401,-0.003373,0.004249,0.249964,0,0);-ms-transform:matrix(0.198401,-0.003373,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198401,-0.003373,0.004249,0.249964,0,0);}
.mee_c00222{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);}
.m6e_c00222{transform:matrix(0.198521,-0.003375,0.004249,0.249964,0,0);-ms-transform:matrix(0.198521,-0.003375,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198521,-0.003375,0.004249,0.249964,0,0);}
.m2a_c00222{transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);-ms-transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);}
.m65_c00222{transform:matrix(0.199231,-0.003387,0.004249,0.249964,0,0);-ms-transform:matrix(0.199231,-0.003387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199231,-0.003387,0.004249,0.249964,0,0);}
.mbf_c00222{transform:matrix(0.199331,-0.003389,0.004249,0.249964,0,0);-ms-transform:matrix(0.199331,-0.003389,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199331,-0.003389,0.004249,0.249964,0,0);}
.m39_c00222{transform:matrix(0.199861,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199861,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199861,-0.003398,0.004249,0.249964,0,0);}
.m8d_c00222{transform:matrix(0.199916,-0.003399,0.004249,0.249964,0,0);-ms-transform:matrix(0.199916,-0.003399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199916,-0.003399,0.004249,0.249964,0,0);}
.mb4_c00222{transform:matrix(0.200276,-0.003405,0.004249,0.249964,0,0);-ms-transform:matrix(0.200276,-0.003405,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200276,-0.003405,0.004249,0.249964,0,0);}
.m46_c00222{transform:matrix(0.200381,-0.003406,0.004249,0.249964,0,0);-ms-transform:matrix(0.200381,-0.003406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200381,-0.003406,0.004249,0.249964,0,0);}
.m33_c00222{transform:matrix(0.201161,-0.003420,0.004249,0.249964,0,0);-ms-transform:matrix(0.201161,-0.003420,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201161,-0.003420,0.004249,0.249964,0,0);}
.m16_c00222{transform:matrix(0.201581,-0.003427,0.004249,0.249964,0,0);-ms-transform:matrix(0.201581,-0.003427,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201581,-0.003427,0.004249,0.249964,0,0);}
.me2_c00222{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);}
.ma2_c00222{transform:matrix(0.201806,-0.003431,0.004249,0.249964,0,0);-ms-transform:matrix(0.201806,-0.003431,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201806,-0.003431,0.004249,0.249964,0,0);}
.m51_c00222{transform:matrix(0.201931,-0.003433,0.004249,0.249964,0,0);-ms-transform:matrix(0.201931,-0.003433,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201931,-0.003433,0.004249,0.249964,0,0);}
.mc1_c00222{transform:matrix(0.202241,-0.003438,0.004249,0.249964,0,0);-ms-transform:matrix(0.202241,-0.003438,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202241,-0.003438,0.004249,0.249964,0,0);}
.mb6_c00222{transform:matrix(0.202266,-0.003439,0.004249,0.249964,0,0);-ms-transform:matrix(0.202266,-0.003439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202266,-0.003439,0.004249,0.249964,0,0);}
.m98_c00222{transform:matrix(0.202471,-0.003442,0.004249,0.249964,0,0);-ms-transform:matrix(0.202471,-0.003442,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202471,-0.003442,0.004249,0.249964,0,0);}
.m3e_c00222{transform:matrix(0.202531,-0.003443,0.004249,0.249964,0,0);-ms-transform:matrix(0.202531,-0.003443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202531,-0.003443,0.004249,0.249964,0,0);}
.m63_c00222{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);}
.m15_c00222{transform:matrix(0.202766,-0.003447,0.004249,0.249964,0,0);-ms-transform:matrix(0.202766,-0.003447,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202766,-0.003447,0.004249,0.249964,0,0);}
.mbc_c00222{transform:matrix(0.202846,-0.003448,0.004249,0.249964,0,0);-ms-transform:matrix(0.202846,-0.003448,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202846,-0.003448,0.004249,0.249964,0,0);}
.me0_c00222{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);}
.m22_c00222{transform:matrix(0.203416,-0.003458,0.004249,0.249964,0,0);-ms-transform:matrix(0.203416,-0.003458,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203416,-0.003458,0.004249,0.249964,0,0);}
.m2e_c00222{transform:matrix(0.204061,-0.003469,0.004249,0.249964,0,0);-ms-transform:matrix(0.204061,-0.003469,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204061,-0.003469,0.004249,0.249964,0,0);}
.m97_c00222{transform:matrix(0.204585,-0.003478,0.004249,0.249964,0,0);-ms-transform:matrix(0.204585,-0.003478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204585,-0.003478,0.004249,0.249964,0,0);}
.mc8_c00222{transform:matrix(0.205068,-0.010469,0.012746,0.249675,0,0);-ms-transform:matrix(0.205068,-0.010469,0.012746,0.249675,0,0);-webkit-transform:matrix(0.205068,-0.010469,0.012746,0.249675,0,0);}
.m9e_c00222{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);}
.md_c00222{transform:matrix(0.205685,-0.003497,0.004249,0.249964,0,0);-ms-transform:matrix(0.205685,-0.003497,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205685,-0.003497,0.004249,0.249964,0,0);}
.m7e_c00222{transform:matrix(0.206640,-0.003513,0.004249,0.249964,0,0);-ms-transform:matrix(0.206640,-0.003513,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206640,-0.003513,0.004249,0.249964,0,0);}
.m1a_c00222{transform:matrix(0.206660,-0.003513,0.004249,0.249964,0,0);-ms-transform:matrix(0.206660,-0.003513,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206660,-0.003513,0.004249,0.249964,0,0);}
.ma6_c00222{transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);}
.m48_c00222{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);}
.maa_c00222{transform:matrix(0.208340,-0.003542,0.004249,0.249964,0,0);-ms-transform:matrix(0.208340,-0.003542,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208340,-0.003542,0.004249,0.249964,0,0);}
.m5d_c00222{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);}
.m44_c00222{transform:matrix(0.209140,-0.003555,0.004249,0.249964,0,0);-ms-transform:matrix(0.209140,-0.003555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209140,-0.003555,0.004249,0.249964,0,0);}
.ma9_c00222{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);}
.m62_c00222{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);}
.mdc_c00222{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);}
.m9b_c00222{transform:matrix(0.210795,-0.003584,0.004249,0.249964,0,0);-ms-transform:matrix(0.210795,-0.003584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210795,-0.003584,0.004249,0.249964,0,0);}
.m19_c00222{transform:matrix(0.211459,-0.003595,0.004249,0.249964,0,0);-ms-transform:matrix(0.211459,-0.003595,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211459,-0.003595,0.004249,0.249964,0,0);}
.mec_c00222{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);}
.m4c_c00222{transform:matrix(0.212449,-0.003612,0.004249,0.249964,0,0);-ms-transform:matrix(0.212449,-0.003612,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212449,-0.003612,0.004249,0.249964,0,0);}
.m30_c00222{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);}
.mb0_c00222{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);}
.ma8_c00222{transform:matrix(0.215784,-0.003668,0.004249,0.249964,0,0);-ms-transform:matrix(0.215784,-0.003668,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215784,-0.003668,0.004249,0.249964,0,0);}
.mea_c00222{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);}
.m8a_c00222{transform:matrix(0.216279,-0.003677,0.004249,0.249964,0,0);-ms-transform:matrix(0.216279,-0.003677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216279,-0.003677,0.004249,0.249964,0,0);}
.m21_c00222{transform:matrix(0.218278,-0.003711,0.004249,0.249964,0,0);-ms-transform:matrix(0.218278,-0.003711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218278,-0.003711,0.004249,0.249964,0,0);}
.ma0_c00222{transform:matrix(0.218353,-0.003712,0.004249,0.249964,0,0);-ms-transform:matrix(0.218353,-0.003712,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218353,-0.003712,0.004249,0.249964,0,0);}
.mdf_c00222{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);}
.m2f_c00222{transform:matrix(0.218743,-0.003719,0.004249,0.249964,0,0);-ms-transform:matrix(0.218743,-0.003719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218743,-0.003719,0.004249,0.249964,0,0);}
.m81_c00222{transform:matrix(0.218808,-0.003720,0.004249,0.249964,0,0);-ms-transform:matrix(0.218808,-0.003720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218808,-0.003720,0.004249,0.249964,0,0);}
.md6_c00222{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);}
.mac_c00222{transform:matrix(0.219998,-0.003740,0.004249,0.249964,0,0);-ms-transform:matrix(0.219998,-0.003740,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219998,-0.003740,0.004249,0.249964,0,0);}
.mb2_c00222{transform:matrix(0.220113,-0.003742,0.004249,0.249964,0,0);-ms-transform:matrix(0.220113,-0.003742,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220113,-0.003742,0.004249,0.249964,0,0);}
.m45_c00222{transform:matrix(0.220218,-0.003744,0.004249,0.249964,0,0);-ms-transform:matrix(0.220218,-0.003744,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220218,-0.003744,0.004249,0.249964,0,0);}
.m7c_c00222{transform:matrix(0.220393,-0.003747,0.004249,0.249964,0,0);-ms-transform:matrix(0.220393,-0.003747,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220393,-0.003747,0.004249,0.249964,0,0);}
.m40_c00222{transform:matrix(0.222038,-0.003775,0.004249,0.249964,0,0);-ms-transform:matrix(0.222038,-0.003775,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222038,-0.003775,0.004249,0.249964,0,0);}
.me9_c00222{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);}
.m5f_c00222{transform:matrix(0.222803,-0.003788,0.004249,0.249964,0,0);-ms-transform:matrix(0.222803,-0.003788,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222803,-0.003788,0.004249,0.249964,0,0);}
.ma1_c00222{transform:matrix(0.223493,-0.003799,0.004249,0.249964,0,0);-ms-transform:matrix(0.223493,-0.003799,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223493,-0.003799,0.004249,0.249964,0,0);}
.m2c_c00222{transform:matrix(0.223548,-0.003800,0.004249,0.249964,0,0);-ms-transform:matrix(0.223548,-0.003800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223548,-0.003800,0.004249,0.249964,0,0);}
.m73_c00222{transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);-ms-transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);}
.m8f_c00222{transform:matrix(0.226202,-0.003845,0.004249,0.249964,0,0);-ms-transform:matrix(0.226202,-0.003845,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226202,-0.003845,0.004249,0.249964,0,0);}
.md8_c00222{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);}
.m26_c00222{transform:matrix(0.227307,-0.003864,0.004249,0.249964,0,0);-ms-transform:matrix(0.227307,-0.003864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227307,-0.003864,0.004249,0.249964,0,0);}
.mc9_c00222{transform:matrix(0.227554,-0.011617,0.012746,0.249675,0,0);-ms-transform:matrix(0.227554,-0.011617,0.012746,0.249675,0,0);-webkit-transform:matrix(0.227554,-0.011617,0.012746,0.249675,0,0);}
.med_c00222{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);}
.m50_c00222{transform:matrix(0.230102,-0.003912,0.004249,0.249964,0,0);-ms-transform:matrix(0.230102,-0.003912,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230102,-0.003912,0.004249,0.249964,0,0);}
.mae_c00222{transform:matrix(0.230807,-0.003924,0.004249,0.249964,0,0);-ms-transform:matrix(0.230807,-0.003924,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230807,-0.003924,0.004249,0.249964,0,0);}
.mca_c00222{transform:matrix(0.231329,-0.011810,0.012746,0.249675,0,0);-ms-transform:matrix(0.231329,-0.011810,0.012746,0.249675,0,0);-webkit-transform:matrix(0.231329,-0.011810,0.012746,0.249675,0,0);}
.meb_c00222{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);}
.m4f_c00222{transform:matrix(0.233446,-0.003969,0.004249,0.249964,0,0);-ms-transform:matrix(0.233446,-0.003969,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233446,-0.003969,0.004249,0.249964,0,0);}
.m37_c00222{transform:matrix(0.233476,-0.003969,0.004249,0.249964,0,0);-ms-transform:matrix(0.233476,-0.003969,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233476,-0.003969,0.004249,0.249964,0,0);}
.m1c_c00222{transform:matrix(0.233976,-0.003978,0.004249,0.249964,0,0);-ms-transform:matrix(0.233976,-0.003978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233976,-0.003978,0.004249,0.249964,0,0);}
.m5_c00222{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.235981,-0.004012,0.004249,0.249964,0,0);-ms-transform:matrix(0.235981,-0.004012,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235981,-0.004012,0.004249,0.249964,0,0);}
.m8b_c00222{transform:matrix(0.236826,-0.004026,0.004249,0.249964,0,0);-ms-transform:matrix(0.236826,-0.004026,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236826,-0.004026,0.004249,0.249964,0,0);}
.mcb_c00222{transform:matrix(0.237815,-0.012141,0.012746,0.249675,0,0);-ms-transform:matrix(0.237815,-0.012141,0.012746,0.249675,0,0);-webkit-transform:matrix(0.237815,-0.012141,0.012746,0.249675,0,0);}
.m4a_c00222{transform:matrix(0.240560,-0.004090,0.004249,0.249964,0,0);-ms-transform:matrix(0.240560,-0.004090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240560,-0.004090,0.004249,0.249964,0,0);}
.mdd_c00222{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);}
.m94_c00222{transform:matrix(0.241000,-0.004097,0.004249,0.249964,0,0);-ms-transform:matrix(0.241000,-0.004097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241000,-0.004097,0.004249,0.249964,0,0);}
.m84_c00222{transform:matrix(0.241150,-0.004100,0.004249,0.249964,0,0);-ms-transform:matrix(0.241150,-0.004100,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241150,-0.004100,0.004249,0.249964,0,0);}
.m4d_c00222{transform:matrix(0.244580,-0.004158,0.004249,0.249964,0,0);-ms-transform:matrix(0.244580,-0.004158,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244580,-0.004158,0.004249,0.249964,0,0);}
.m71_c00222{transform:matrix(0.246174,-0.004185,0.004249,0.249964,0,0);-ms-transform:matrix(0.246174,-0.004185,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246174,-0.004185,0.004249,0.249964,0,0);}
.mde_c00222{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);}
.m7_c00222{transform:matrix(0.247499,-0.004207,0.004249,0.249964,0,0);-ms-transform:matrix(0.247499,-0.004207,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247499,-0.004207,0.004249,0.249964,0,0);}
.mcc_c00222{transform:matrix(0.247772,-0.012649,0.012746,0.249675,0,0);-ms-transform:matrix(0.247772,-0.012649,0.012746,0.249675,0,0);-webkit-transform:matrix(0.247772,-0.012649,0.012746,0.249675,0,0);}
.m54_c00222{transform:matrix(0.255958,-0.004351,0.004249,0.249964,0,0);-ms-transform:matrix(0.255958,-0.004351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255958,-0.004351,0.004249,0.249964,0,0);}
.m93_c00222{transform:matrix(0.262907,-0.004469,0.004249,0.249964,0,0);-ms-transform:matrix(0.262907,-0.004469,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262907,-0.004469,0.004249,0.249964,0,0);}
.m3_c00222{transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277340,0.000000,0.000000,0.250000,0,0);}
.mc7_c00222{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);}
.me5_c00222{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.294922,-0.005014,0.004249,0.249964,0,0);-ms-transform:matrix(0.294922,-0.005014,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294922,-0.005014,0.004249,0.249964,0,0);}
.m68_c00222{transform:matrix(0.298587,-0.005076,0.004249,0.249964,0,0);-ms-transform:matrix(0.298587,-0.005076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.298587,-0.005076,0.004249,0.249964,0,0);}
.m56_c00222{transform:matrix(0.299037,-0.005084,0.004249,0.249964,0,0);-ms-transform:matrix(0.299037,-0.005084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.299037,-0.005084,0.004249,0.249964,0,0);}
.m5b_c00222{transform:matrix(0.299107,-0.005085,0.004249,0.249964,0,0);-ms-transform:matrix(0.299107,-0.005085,0.004249,0.249964,0,0);-webkit-transform:matrix(0.299107,-0.005085,0.004249,0.249964,0,0);}
.mc_c00222{transform:matrix(0.306916,-0.005218,0.004249,0.249964,0,0);-ms-transform:matrix(0.306916,-0.005218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.306916,-0.005218,0.004249,0.249964,0,0);}
.md5_c00222{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);}
.mab_c00222{transform:matrix(0.313770,-0.005334,0.004249,0.249964,0,0);-ms-transform:matrix(0.313770,-0.005334,0.004249,0.249964,0,0);-webkit-transform:matrix(0.313770,-0.005334,0.004249,0.249964,0,0);}
.mad_c00222{transform:matrix(0.316694,-0.005384,0.004249,0.249964,0,0);-ms-transform:matrix(0.316694,-0.005384,0.004249,0.249964,0,0);-webkit-transform:matrix(0.316694,-0.005384,0.004249,0.249964,0,0);}
.mce_c00222{transform:matrix(0.322830,-0.016481,0.012746,0.249675,0,0);-ms-transform:matrix(0.322830,-0.016481,0.012746,0.249675,0,0);-webkit-transform:matrix(0.322830,-0.016481,0.012746,0.249675,0,0);}
.m72_c00222{transform:matrix(0.334782,-0.005691,0.004249,0.249964,0,0);-ms-transform:matrix(0.334782,-0.005691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.334782,-0.005691,0.004249,0.249964,0,0);}
.m36_c00222{transform:matrix(0.342056,-0.005815,0.004249,0.249964,0,0);-ms-transform:matrix(0.342056,-0.005815,0.004249,0.249964,0,0);-webkit-transform:matrix(0.342056,-0.005815,0.004249,0.249964,0,0);}
.mbe_c00222{transform:matrix(0.382080,-0.006495,0.004249,0.249964,0,0);-ms-transform:matrix(0.382080,-0.006495,0.004249,0.249964,0,0);-webkit-transform:matrix(0.382080,-0.006495,0.004249,0.249964,0,0);}
.m6_c00222{transform:matrix(0.393258,-0.006685,0.004249,0.249964,0,0);-ms-transform:matrix(0.393258,-0.006685,0.004249,0.249964,0,0);-webkit-transform:matrix(0.393258,-0.006685,0.004249,0.249964,0,0);}
.mb_c00222{transform:matrix(0.394103,-0.006700,0.004249,0.249964,0,0);-ms-transform:matrix(0.394103,-0.006700,0.004249,0.249964,0,0);-webkit-transform:matrix(0.394103,-0.006700,0.004249,0.249964,0,0);}
.mf_c00222{transform:matrix(0.394768,-0.006711,0.004249,0.249964,0,0);-ms-transform:matrix(0.394768,-0.006711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.394768,-0.006711,0.004249,0.249964,0,0);}
.ma_c00222{transform:matrix(0.402562,-0.006844,0.004249,0.249964,0,0);-ms-transform:matrix(0.402562,-0.006844,0.004249,0.249964,0,0);-webkit-transform:matrix(0.402562,-0.006844,0.004249,0.249964,0,0);}
.m9_c00222{transform:matrix(0.412800,-0.007018,0.004249,0.249964,0,0);-ms-transform:matrix(0.412800,-0.007018,0.004249,0.249964,0,0);-webkit-transform:matrix(0.412800,-0.007018,0.004249,0.249964,0,0);}
.m90_c00222{transform:matrix(0.433592,-0.007371,0.004249,0.249964,0,0);-ms-transform:matrix(0.433592,-0.007371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.433592,-0.007371,0.004249,0.249964,0,0);}
.m8_c00222{transform:matrix(0.439392,-0.007470,0.004249,0.249964,0,0);-ms-transform:matrix(0.439392,-0.007470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.439392,-0.007470,0.004249,0.249964,0,0);}
.m52_c00222{transform:matrix(0.505507,-0.008594,0.004249,0.249964,0,0);-ms-transform:matrix(0.505507,-0.008594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.505507,-0.008594,0.004249,0.249964,0,0);}
.m69_c00222{transform:matrix(0.520475,-0.008848,0.004249,0.249964,0,0);-ms-transform:matrix(0.520475,-0.008848,0.004249,0.249964,0,0);-webkit-transform:matrix(0.520475,-0.008848,0.004249,0.249964,0,0);}
.mcf_c00222{transform:matrix(0.569344,-0.029066,0.012746,0.249675,0,0);-ms-transform:matrix(0.569344,-0.029066,0.012746,0.249675,0,0);-webkit-transform:matrix(0.569344,-0.029066,0.012746,0.249675,0,0);}
.m2_c00222{transform:matrix(0.575645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575645,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.586275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586275,0.000000,0.000000,0.250000,0,0);}
.m88_c00222{transform:matrix(0.588325,-0.010002,0.004249,0.249964,0,0);-ms-transform:matrix(0.588325,-0.010002,0.004249,0.249964,0,0);-webkit-transform:matrix(0.588325,-0.010002,0.004249,0.249964,0,0);}
.m14_c00222{transform:matrix(0.644967,-0.010964,0.004249,0.249964,0,0);-ms-transform:matrix(0.644967,-0.010964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.644967,-0.010964,0.004249,0.249964,0,0);}
.mc6_c00222{transform:matrix(0.733485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733485,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;}
.fs1_c00222{font-size:22.050000px;}
.fs0_c00222{font-size:39.900000px;}
.fsd_c00222{font-size:47.264220px;}
.fs11_c00222{font-size:51.450000px;}
.fs10_c00222{font-size:52.500000px;}
.fsf_c00222{font-size:54.600000px;}
.fse_c00222{font-size:59.868012px;}
.fsa_c00222{font-size:65.109406px;}
.fs7_c00222{font-size:66.159558px;}
.fs8_c00222{font-size:68.259861px;}
.fs4_c00222{font-size:70.360165px;}
.fs3_c00222{font-size:71.410317px;}
.fs9_c00222{font-size:72.460468px;}
.fs5_c00222{font-size:73.510620px;}
.fsc_c00222{font-size:74.560772px;}
.fs6_c00222{font-size:75.610923px;}
.fs2_c00222{font-size:79.800000px;}
.fsb_c00222{font-size:92.413351px;}
.y0_c00222{bottom:0.000000px;}
.yd4_c00222{bottom:164.946000px;}
.yd3_c00222{bottom:172.650000px;}
.ycd_c00222{bottom:177.419451px;}
.yce_c00222{bottom:178.731673px;}
.ycf_c00222{bottom:179.730602px;}
.yd0_c00222{bottom:181.162398px;}
.yd2_c00222{bottom:182.670000px;}
.yc5_c00222{bottom:192.562500px;}
.yc6_c00222{bottom:194.788268px;}
.yc7_c00222{bottom:196.549221px;}
.yc8_c00222{bottom:197.452916px;}
.yc9_c00222{bottom:200.210817px;}
.yca_c00222{bottom:200.808435px;}
.yd1_c00222{bottom:200.839500px;}
.ycb_c00222{bottom:203.567714px;}
.ycc_c00222{bottom:205.135045px;}
.yc4_c00222{bottom:228.552000px;}
.ybd_c00222{bottom:253.984110px;}
.ybe_c00222{bottom:254.387575px;}
.ybf_c00222{bottom:255.191212px;}
.yc0_c00222{bottom:255.648520px;}
.yc1_c00222{bottom:256.048845px;}
.yc2_c00222{bottom:256.556578px;}
.yc3_c00222{bottom:256.806588px;}
.ybc_c00222{bottom:278.727466px;}
.yb6_c00222{bottom:301.176492px;}
.yba_c00222{bottom:301.176543px;}
.ybb_c00222{bottom:301.176556px;}
.yb5_c00222{bottom:301.176564px;}
.yb7_c00222{bottom:301.176720px;}
.yb8_c00222{bottom:301.177213px;}
.yb9_c00222{bottom:301.177266px;}
.yb2_c00222{bottom:325.188051px;}
.yb3_c00222{bottom:325.188099px;}
.yb0_c00222{bottom:325.188216px;}
.yb4_c00222{bottom:325.188366px;}
.yb1_c00222{bottom:325.188367px;}
.yaf_c00222{bottom:325.188952px;}
.yae_c00222{bottom:325.189650px;}
.ya6_c00222{bottom:345.256708px;}
.ya7_c00222{bottom:346.204944px;}
.ya8_c00222{bottom:346.801957px;}
.ya9_c00222{bottom:347.508801px;}
.yaa_c00222{bottom:347.750218px;}
.yab_c00222{bottom:348.321177px;}
.yac_c00222{bottom:348.615393px;}
.yad_c00222{bottom:348.853363px;}
.y9e_c00222{bottom:367.942005px;}
.y9f_c00222{bottom:368.789718px;}
.ya0_c00222{bottom:369.282000px;}
.ya1_c00222{bottom:369.800400px;}
.ya2_c00222{bottom:370.296613px;}
.ya3_c00222{bottom:370.640067px;}
.ya4_c00222{bottom:371.259394px;}
.ya5_c00222{bottom:371.690145px;}
.y98_c00222{bottom:390.356850px;}
.y99_c00222{bottom:390.725839px;}
.y9a_c00222{bottom:391.347721px;}
.y9b_c00222{bottom:392.134540px;}
.y9c_c00222{bottom:392.642676px;}
.y9d_c00222{bottom:392.974182px;}
.y91_c00222{bottom:411.656380px;}
.y92_c00222{bottom:412.438590px;}
.y93_c00222{bottom:413.565526px;}
.y94_c00222{bottom:413.808118px;}
.y95_c00222{bottom:414.915220px;}
.y96_c00222{bottom:415.347424px;}
.y97_c00222{bottom:416.471454px;}
.y90_c00222{bottom:437.887221px;}
.y8f_c00222{bottom:437.887323px;}
.y8e_c00222{bottom:437.887726px;}
.y86_c00222{bottom:458.097268px;}
.y87_c00222{bottom:458.515939px;}
.y88_c00222{bottom:458.852779px;}
.y89_c00222{bottom:459.257794px;}
.y8a_c00222{bottom:460.044690px;}
.y8b_c00222{bottom:460.496245px;}
.y8c_c00222{bottom:461.445774px;}
.y8d_c00222{bottom:461.701960px;}
.y7f_c00222{bottom:481.357570px;}
.y80_c00222{bottom:481.605264px;}
.y81_c00222{bottom:481.857424px;}
.y82_c00222{bottom:482.565055px;}
.y83_c00222{bottom:483.380547px;}
.y84_c00222{bottom:483.648196px;}
.y85_c00222{bottom:484.299508px;}
.y79_c00222{bottom:503.742886px;}
.y7a_c00222{bottom:504.403942px;}
.y7b_c00222{bottom:505.125979px;}
.y7c_c00222{bottom:505.677160px;}
.y7d_c00222{bottom:506.237322px;}
.y7e_c00222{bottom:507.314523px;}
.y71_c00222{bottom:526.686466px;}
.y72_c00222{bottom:527.078637px;}
.y73_c00222{bottom:527.512753px;}
.y74_c00222{bottom:527.888688px;}
.y75_c00222{bottom:528.691972px;}
.y76_c00222{bottom:529.103801px;}
.y77_c00222{bottom:529.373010px;}
.y78_c00222{bottom:530.014906px;}
.y68_c00222{bottom:548.870062px;}
.y69_c00222{bottom:549.190284px;}
.y6a_c00222{bottom:549.683229px;}
.y6b_c00222{bottom:550.114132px;}
.y6c_c00222{bottom:550.687221px;}
.y6d_c00222{bottom:551.753433px;}
.y6e_c00222{bottom:552.165159px;}
.y6f_c00222{bottom:552.425328px;}
.y70_c00222{bottom:552.940791px;}
.y60_c00222{bottom:571.284101px;}
.y61_c00222{bottom:572.117850px;}
.y62_c00222{bottom:572.718002px;}
.y63_c00222{bottom:573.003077px;}
.y64_c00222{bottom:574.136700px;}
.y65_c00222{bottom:574.964151px;}
.y66_c00222{bottom:575.830044px;}
.y67_c00222{bottom:575.847592px;}
.y58_c00222{bottom:593.429227px;}
.y59_c00222{bottom:593.609685px;}
.y5a_c00222{bottom:594.280325px;}
.y5b_c00222{bottom:595.140958px;}
.y5c_c00222{bottom:595.481784px;}
.y5d_c00222{bottom:596.321487px;}
.y5e_c00222{bottom:596.928135px;}
.y5f_c00222{bottom:599.567556px;}
.y51_c00222{bottom:616.109760px;}
.y52_c00222{bottom:616.616769px;}
.y53_c00222{bottom:617.377002px;}
.y54_c00222{bottom:617.921727px;}
.y55_c00222{bottom:618.786990px;}
.y56_c00222{bottom:619.695375px;}
.y57_c00222{bottom:620.436372px;}
.y47_c00222{bottom:638.788521px;}
.y48_c00222{bottom:638.958993px;}
.y49_c00222{bottom:639.394908px;}
.y4a_c00222{bottom:640.165693px;}
.y4b_c00222{bottom:640.265157px;}
.y4c_c00222{bottom:640.564903px;}
.y4d_c00222{bottom:640.863222px;}
.y4e_c00222{bottom:641.436172px;}
.y4f_c00222{bottom:641.688448px;}
.y50_c00222{bottom:642.270847px;}
.y3e_c00222{bottom:661.452329px;}
.y3f_c00222{bottom:661.755610px;}
.y40_c00222{bottom:662.197204px;}
.y41_c00222{bottom:662.657598px;}
.y42_c00222{bottom:663.138576px;}
.y43_c00222{bottom:663.670813px;}
.y44_c00222{bottom:664.154371px;}
.y45_c00222{bottom:664.639128px;}
.y46_c00222{bottom:664.865147px;}
.y35_c00222{bottom:683.888233px;}
.y36_c00222{bottom:684.260350px;}
.y37_c00222{bottom:684.771680px;}
.y38_c00222{bottom:685.292647px;}
.y39_c00222{bottom:685.678819px;}
.y3a_c00222{bottom:686.079510px;}
.y3b_c00222{bottom:686.561220px;}
.y3c_c00222{bottom:686.857239px;}
.y3d_c00222{bottom:687.403669px;}
.y29_c00222{bottom:706.568237px;}
.y2a_c00222{bottom:706.708698px;}
.y2b_c00222{bottom:707.166072px;}
.y2c_c00222{bottom:707.761302px;}
.y2d_c00222{bottom:708.357756px;}
.y2e_c00222{bottom:708.838574px;}
.y2f_c00222{bottom:709.575332px;}
.y30_c00222{bottom:709.887960px;}
.y31_c00222{bottom:710.551022px;}
.y32_c00222{bottom:711.183317px;}
.y33_c00222{bottom:711.626299px;}
.y34_c00222{bottom:712.036247px;}
.y20_c00222{bottom:729.256164px;}
.y21_c00222{bottom:729.730551px;}
.y22_c00222{bottom:730.592746px;}
.y23_c00222{bottom:730.981192px;}
.y24_c00222{bottom:731.884584px;}
.y25_c00222{bottom:732.183846px;}
.y26_c00222{bottom:732.479941px;}
.y27_c00222{bottom:733.322340px;}
.y28_c00222{bottom:733.701933px;}
.y19_c00222{bottom:752.183560px;}
.y1a_c00222{bottom:753.612723px;}
.y1b_c00222{bottom:753.954512px;}
.y1c_c00222{bottom:754.956698px;}
.y1d_c00222{bottom:755.615025px;}
.y1e_c00222{bottom:756.482621px;}
.y1f_c00222{bottom:756.903090px;}
.y13_c00222{bottom:774.355316px;}
.y14_c00222{bottom:775.894307px;}
.y15_c00222{bottom:777.774902px;}
.y16_c00222{bottom:778.249314px;}
.y17_c00222{bottom:779.248827px;}
.y18_c00222{bottom:780.433392px;}
.ya_c00222{bottom:797.042549px;}
.yb_c00222{bottom:797.662325px;}
.yc_c00222{bottom:798.186621px;}
.yd_c00222{bottom:798.709796px;}
.ye_c00222{bottom:799.406593px;}
.yf_c00222{bottom:800.143498px;}
.y10_c00222{bottom:800.607037px;}
.y11_c00222{bottom:801.213354px;}
.y12_c00222{bottom:801.888635px;}
.y4_c00222{bottom:822.943500px;}
.y5_c00222{bottom:823.441949px;}
.y6_c00222{bottom:823.614176px;}
.y7_c00222{bottom:824.128638px;}
.y8_c00222{bottom:824.454401px;}
.y9_c00222{bottom:824.829786px;}
.y3_c00222{bottom:871.314000px;}
.y2_c00222{bottom:943.110000px;}
.y1_c00222{bottom:956.340000px;}
.h3_c00222{height:22.050000px;}
.h2_c00222{height:39.900000px;}
.hf_c00222{height:47.264220px;}
.h13_c00222{height:51.450000px;}
.h12_c00222{height:52.500000px;}
.h11_c00222{height:54.600000px;}
.h10_c00222{height:59.868012px;}
.hc_c00222{height:65.109406px;}
.h9_c00222{height:66.159558px;}
.ha_c00222{height:68.259861px;}
.h6_c00222{height:70.360165px;}
.h5_c00222{height:71.410317px;}
.hb_c00222{height:72.460468px;}
.h7_c00222{height:73.510620px;}
.he_c00222{height:74.560772px;}
.h8_c00222{height:75.610923px;}
.h4_c00222{height:79.800000px;}
.hd_c00222{height:92.413351px;}
.h1_c00222{height:1005.000000px;}
.h0_c00222{height:1005.150000px;}
.w1_c00222{width:713.250000px;}
.w0_c00222{width:713.550000px;}
.x0_c00222{left:0.000000px;}
.x93_c00222{left:85.860000px;}
.x8e_c00222{left:88.020000px;}
.x45_c00222{left:90.092049px;}
.x91_c00222{left:91.800000px;}
.x2_c00222{left:99.900000px;}
.x8f_c00222{left:105.300000px;}
.x49_c00222{left:108.010184px;}
.x27_c00222{left:112.265606px;}
.x4a_c00222{left:118.007505px;}
.x32_c00222{left:120.594461px;}
.xd_c00222{left:121.866760px;}
.x1c_c00222{left:123.865721px;}
.x16_c00222{left:125.004238px;}
.x46_c00222{left:126.270885px;}
.x71_c00222{left:127.305434px;}
.x7c_c00222{left:128.767541px;}
.x3_c00222{left:139.320000px;}
.x8b_c00222{left:140.940000px;}
.x33_c00222{left:145.396302px;}
.x94_c00222{left:147.960000px;}
.x38_c00222{left:151.060408px;}
.x28_c00222{left:152.198483px;}
.x54_c00222{left:153.719735px;}
.x23_c00222{left:154.902779px;}
.xe_c00222{left:156.294174px;}
.x3e_c00222{left:159.460358px;}
.x6b_c00222{left:168.065987px;}
.x81_c00222{left:169.133886px;}
.x8c_c00222{left:170.370000px;}
.x5d_c00222{left:172.436790px;}
.x7d_c00222{left:173.864571px;}
.x5f_c00222{left:176.967279px;}
.x34_c00222{left:179.534475px;}
.x4f_c00222{left:182.636433px;}
.x90_c00222{left:184.140000px;}
.xf_c00222{left:185.458190px;}
.x63_c00222{left:186.676050px;}
.x29_c00222{left:191.889834px;}
.x55_c00222{left:194.808228px;}
.x92_c00222{left:196.560000px;}
.x17_c00222{left:198.322266px;}
.x4b_c00222{left:203.051552px;}
.x6e_c00222{left:205.354701px;}
.x78_c00222{left:206.537930px;}
.x7e_c00222{left:210.859256px;}
.x95_c00222{left:211.950000px;}
.x1d_c00222{left:213.229751px;}
.x10_c00222{left:214.556205px;}
.x3f_c00222{left:218.745887px;}
.x64_c00222{left:220.473932px;}
.x4c_c00222{left:221.952720px;}
.x5b_c00222{left:223.713980px;}
.x40_c00222{left:226.361897px;}
.x96_c00222{left:228.420000px;}
.x6c_c00222{left:230.649416px;}
.x2a_c00222{left:231.653186px;}
.x39_c00222{left:233.156298px;}
.x1e_c00222{left:234.570608px;}
.x7_c00222{left:235.839000px;}
.x1_c00222{left:238.140000px;}
.x35_c00222{left:239.956515px;}
.x50_c00222{left:241.592922px;}
.x6d_c00222{left:244.125186px;}
.x60_c00222{left:247.718694px;}
.x41_c00222{left:249.377952px;}
.x11_c00222{left:253.249542px;}
.x68_c00222{left:257.843915px;}
.x97_c00222{left:260.280000px;}
.x2b_c00222{left:263.731782px;}
.x8_c00222{left:265.159500px;}
.x36_c00222{left:266.703933px;}
.x4d_c00222{left:268.610929px;}
.x6f_c00222{left:270.967286px;}
.x42_c00222{left:272.310008px;}
.x9_c00222{left:275.290500px;}
.x3a_c00222{left:276.894761px;}
.x56_c00222{left:278.491343px;}
.x47_c00222{left:281.291790px;}
.x79_c00222{left:284.039819px;}
.x65_c00222{left:286.091016px;}
.x18_c00222{left:287.851171px;}
.x8d_c00222{left:288.900000px;}
.x5c_c00222{left:290.648166px;}
.x12_c00222{left:294.213853px;}
.x1f_c00222{left:297.229679px;}
.x24_c00222{left:298.556675px;}
.x4e_c00222{left:302.354369px;}
.x5e_c00222{left:303.406971px;}
.xa_c00222{left:305.553000px;}
.x82_c00222{left:309.237935px;}
.x19_c00222{left:310.462142px;}
.x2c_c00222{left:312.807439px;}
.x7a_c00222{left:314.824218px;}
.x43_c00222{left:316.339491px;}
.x25_c00222{left:318.543363px;}
.x13_c00222{left:319.980420px;}
.x66_c00222{left:323.685704px;}
.xb_c00222{left:324.715500px;}
.x61_c00222{left:329.227884px;}
.x75_c00222{left:331.699751px;}
.x2d_c00222{left:333.668654px;}
.x44_c00222{left:335.768817px;}
.x20_c00222{left:338.337867px;}
.x70_c00222{left:340.922727px;}
.xc_c00222{left:346.797000px;}
.x72_c00222{left:352.210559px;}
.x14_c00222{left:353.704359px;}
.x37_c00222{left:355.010442px;}
.x1a_c00222{left:358.047903px;}
.x7f_c00222{left:359.921325px;}
.x57_c00222{left:367.334891px;}
.x3b_c00222{left:369.215670px;}
.x51_c00222{left:372.395885px;}
.x2e_c00222{left:377.879658px;}
.x4_c00222{left:381.240000px;}
.x86_c00222{left:385.355858px;}
.x80_c00222{left:387.194705px;}
.x8a_c00222{left:389.494463px;}
.x15_c00222{left:391.220221px;}
.x21_c00222{left:392.550285px;}
.x26_c00222{left:394.427938px;}
.x48_c00222{left:399.143808px;}
.x58_c00222{left:401.615798px;}
.x67_c00222{left:402.752910px;}
.x73_c00222{left:403.822445px;}
.x76_c00222{left:405.435248px;}
.x83_c00222{left:410.225679px;}
.x3c_c00222{left:413.264658px;}
.x1b_c00222{left:414.489078px;}
.x7b_c00222{left:415.548314px;}
.x22_c00222{left:418.784219px;}
.x2f_c00222{left:420.016086px;}
.x62_c00222{left:421.148324px;}
.x59_c00222{left:423.274633px;}
.x52_c00222{left:430.126848px;}
.x53_c00222{left:431.247373px;}
.x3d_c00222{left:433.797249px;}
.x69_c00222{left:437.960460px;}
.x74_c00222{left:439.752005px;}
.x5_c00222{left:447.120000px;}
.x30_c00222{left:449.516081px;}
.x77_c00222{left:453.774669px;}
.x5a_c00222{left:466.217280px;}
.x31_c00222{left:476.807999px;}
.x6a_c00222{left:478.466165px;}
.x87_c00222{left:491.574033px;}
.x88_c00222{left:503.280315px;}
.x84_c00222{left:529.200000px;}
.x6_c00222{left:531.090000px;}
.x85_c00222{left:557.550000px;}
.x89_c00222{left:588.030980px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.fs1_c00222{font-size:19.600000pt;}
.fs0_c00222{font-size:35.466667pt;}
.fsd_c00222{font-size:42.012640pt;}
.fs11_c00222{font-size:45.733333pt;}
.fs10_c00222{font-size:46.666667pt;}
.fsf_c00222{font-size:48.533333pt;}
.fse_c00222{font-size:53.216011pt;}
.fsa_c00222{font-size:57.875028pt;}
.fs7_c00222{font-size:58.808496pt;}
.fs8_c00222{font-size:60.675432pt;}
.fs4_c00222{font-size:62.542369pt;}
.fs3_c00222{font-size:63.475837pt;}
.fs9_c00222{font-size:64.409305pt;}
.fs5_c00222{font-size:65.342773pt;}
.fsc_c00222{font-size:66.276242pt;}
.fs6_c00222{font-size:67.209710pt;}
.fs2_c00222{font-size:70.933333pt;}
.fsb_c00222{font-size:82.145201pt;}
.y0_c00222{bottom:0.000000pt;}
.yd4_c00222{bottom:146.618667pt;}
.yd3_c00222{bottom:153.466667pt;}
.ycd_c00222{bottom:157.706179pt;}
.yce_c00222{bottom:158.872599pt;}
.ycf_c00222{bottom:159.760535pt;}
.yd0_c00222{bottom:161.033243pt;}
.yd2_c00222{bottom:162.373333pt;}
.yc5_c00222{bottom:171.166667pt;}
.yc6_c00222{bottom:173.145127pt;}
.yc7_c00222{bottom:174.710419pt;}
.yc8_c00222{bottom:175.513703pt;}
.yc9_c00222{bottom:177.965171pt;}
.yca_c00222{bottom:178.496387pt;}
.yd1_c00222{bottom:178.524000pt;}
.ycb_c00222{bottom:180.949079pt;}
.ycc_c00222{bottom:182.342263pt;}
.yc4_c00222{bottom:203.157333pt;}
.ybd_c00222{bottom:225.763653pt;}
.ybe_c00222{bottom:226.122289pt;}
.ybf_c00222{bottom:226.836633pt;}
.yc0_c00222{bottom:227.243129pt;}
.yc1_c00222{bottom:227.598973pt;}
.yc2_c00222{bottom:228.050292pt;}
.yc3_c00222{bottom:228.272523pt;}
.ybc_c00222{bottom:247.757748pt;}
.yb6_c00222{bottom:267.712437pt;}
.yba_c00222{bottom:267.712483pt;}
.ybb_c00222{bottom:267.712495pt;}
.yb5_c00222{bottom:267.712501pt;}
.yb7_c00222{bottom:267.712640pt;}
.yb8_c00222{bottom:267.713079pt;}
.yb9_c00222{bottom:267.713125pt;}
.yb2_c00222{bottom:289.056045pt;}
.yb3_c00222{bottom:289.056088pt;}
.yb0_c00222{bottom:289.056192pt;}
.yb4_c00222{bottom:289.056325pt;}
.yb1_c00222{bottom:289.056327pt;}
.yaf_c00222{bottom:289.056847pt;}
.yae_c00222{bottom:289.057467pt;}
.ya6_c00222{bottom:306.894852pt;}
.ya7_c00222{bottom:307.737728pt;}
.ya8_c00222{bottom:308.268407pt;}
.ya9_c00222{bottom:308.896712pt;}
.yaa_c00222{bottom:309.111305pt;}
.yab_c00222{bottom:309.618824pt;}
.yac_c00222{bottom:309.880349pt;}
.yad_c00222{bottom:310.091879pt;}
.y9e_c00222{bottom:327.059560pt;}
.y9f_c00222{bottom:327.813083pt;}
.ya0_c00222{bottom:328.250667pt;}
.ya1_c00222{bottom:328.711467pt;}
.ya2_c00222{bottom:329.152545pt;}
.ya3_c00222{bottom:329.457837pt;}
.ya4_c00222{bottom:330.008351pt;}
.ya5_c00222{bottom:330.391240pt;}
.y98_c00222{bottom:346.983867pt;}
.y99_c00222{bottom:347.311857pt;}
.y9a_c00222{bottom:347.864641pt;}
.y9b_c00222{bottom:348.564036pt;}
.y9c_c00222{bottom:349.015712pt;}
.y9d_c00222{bottom:349.310384pt;}
.y91_c00222{bottom:365.916783pt;}
.y92_c00222{bottom:366.612080pt;}
.y93_c00222{bottom:367.613801pt;}
.y94_c00222{bottom:367.829439pt;}
.y95_c00222{bottom:368.813529pt;}
.y96_c00222{bottom:369.197711pt;}
.y97_c00222{bottom:370.196848pt;}
.y90_c00222{bottom:389.233085pt;}
.y8f_c00222{bottom:389.233176pt;}
.y8e_c00222{bottom:389.233535pt;}
.y86_c00222{bottom:407.197572pt;}
.y87_c00222{bottom:407.569724pt;}
.y88_c00222{bottom:407.869137pt;}
.y89_c00222{bottom:408.229151pt;}
.y8a_c00222{bottom:408.928613pt;}
.y8b_c00222{bottom:409.329996pt;}
.y8c_c00222{bottom:410.174021pt;}
.y8d_c00222{bottom:410.401743pt;}
.y7f_c00222{bottom:427.873396pt;}
.y80_c00222{bottom:428.093568pt;}
.y81_c00222{bottom:428.317711pt;}
.y82_c00222{bottom:428.946716pt;}
.y83_c00222{bottom:429.671597pt;}
.y84_c00222{bottom:429.909508pt;}
.y85_c00222{bottom:430.488452pt;}
.y79_c00222{bottom:447.771455pt;}
.y7a_c00222{bottom:448.359060pt;}
.y7b_c00222{bottom:449.000871pt;}
.y7c_c00222{bottom:449.490809pt;}
.y7d_c00222{bottom:449.988731pt;}
.y7e_c00222{bottom:450.946243pt;}
.y71_c00222{bottom:468.165748pt;}
.y72_c00222{bottom:468.514344pt;}
.y73_c00222{bottom:468.900225pt;}
.y74_c00222{bottom:469.234389pt;}
.y75_c00222{bottom:469.948420pt;}
.y76_c00222{bottom:470.314489pt;}
.y77_c00222{bottom:470.553787pt;}
.y78_c00222{bottom:471.124361pt;}
.y68_c00222{bottom:487.884500pt;}
.y69_c00222{bottom:488.169141pt;}
.y6a_c00222{bottom:488.607315pt;}
.y6b_c00222{bottom:488.990340pt;}
.y6c_c00222{bottom:489.499752pt;}
.y6d_c00222{bottom:490.447496pt;}
.y6e_c00222{bottom:490.813475pt;}
.y6f_c00222{bottom:491.044736pt;}
.y70_c00222{bottom:491.502925pt;}
.y60_c00222{bottom:507.808089pt;}
.y61_c00222{bottom:508.549200pt;}
.y62_c00222{bottom:509.082668pt;}
.y63_c00222{bottom:509.336068pt;}
.y64_c00222{bottom:510.343733pt;}
.y65_c00222{bottom:511.079245pt;}
.y66_c00222{bottom:511.848928pt;}
.y67_c00222{bottom:511.864527pt;}
.y58_c00222{bottom:527.492647pt;}
.y59_c00222{bottom:527.653053pt;}
.y5a_c00222{bottom:528.249177pt;}
.y5b_c00222{bottom:529.014185pt;}
.y5c_c00222{bottom:529.317141pt;}
.y5d_c00222{bottom:530.063544pt;}
.y5e_c00222{bottom:530.602787pt;}
.y5f_c00222{bottom:532.948939pt;}
.y51_c00222{bottom:547.653120pt;}
.y52_c00222{bottom:548.103795pt;}
.y53_c00222{bottom:548.779557pt;}
.y54_c00222{bottom:549.263757pt;}
.y55_c00222{bottom:550.032880pt;}
.y56_c00222{bottom:550.840333pt;}
.y57_c00222{bottom:551.498997pt;}
.y47_c00222{bottom:567.812019pt;}
.y48_c00222{bottom:567.963549pt;}
.y49_c00222{bottom:568.351029pt;}
.y4a_c00222{bottom:569.036172pt;}
.y4b_c00222{bottom:569.124584pt;}
.y4c_c00222{bottom:569.391025pt;}
.y4d_c00222{bottom:569.656197pt;}
.y4e_c00222{bottom:570.165487pt;}
.y4f_c00222{bottom:570.389732pt;}
.y50_c00222{bottom:570.907420pt;}
.y3e_c00222{bottom:587.957625pt;}
.y3f_c00222{bottom:588.227209pt;}
.y40_c00222{bottom:588.619737pt;}
.y41_c00222{bottom:589.028976pt;}
.y42_c00222{bottom:589.456512pt;}
.y43_c00222{bottom:589.929612pt;}
.y44_c00222{bottom:590.359441pt;}
.y45_c00222{bottom:590.790336pt;}
.y46_c00222{bottom:590.991241pt;}
.y35_c00222{bottom:607.900652pt;}
.y36_c00222{bottom:608.231423pt;}
.y37_c00222{bottom:608.685937pt;}
.y38_c00222{bottom:609.149020pt;}
.y39_c00222{bottom:609.492284pt;}
.y3a_c00222{bottom:609.848453pt;}
.y3b_c00222{bottom:610.276640pt;}
.y3c_c00222{bottom:610.539768pt;}
.y3d_c00222{bottom:611.025484pt;}
.y29_c00222{bottom:628.060655pt;}
.y2a_c00222{bottom:628.185509pt;}
.y2b_c00222{bottom:628.592064pt;}
.y2c_c00222{bottom:629.121157pt;}
.y2d_c00222{bottom:629.651339pt;}
.y2e_c00222{bottom:630.078732pt;}
.y2f_c00222{bottom:630.733628pt;}
.y30_c00222{bottom:631.011520pt;}
.y31_c00222{bottom:631.600908pt;}
.y32_c00222{bottom:632.162948pt;}
.y33_c00222{bottom:632.556711pt;}
.y34_c00222{bottom:632.921108pt;}
.y20_c00222{bottom:648.227701pt;}
.y21_c00222{bottom:648.649379pt;}
.y22_c00222{bottom:649.415775pt;}
.y23_c00222{bottom:649.761060pt;}
.y24_c00222{bottom:650.564075pt;}
.y25_c00222{bottom:650.830085pt;}
.y26_c00222{bottom:651.093281pt;}
.y27_c00222{bottom:651.842080pt;}
.y28_c00222{bottom:652.179496pt;}
.y19_c00222{bottom:668.607609pt;}
.y1a_c00222{bottom:669.877976pt;}
.y1b_c00222{bottom:670.181788pt;}
.y1c_c00222{bottom:671.072620pt;}
.y1d_c00222{bottom:671.657800pt;}
.y1e_c00222{bottom:672.428996pt;}
.y1f_c00222{bottom:672.802747pt;}
.y13_c00222{bottom:688.315836pt;}
.y14_c00222{bottom:689.683828pt;}
.y15_c00222{bottom:691.355468pt;}
.y16_c00222{bottom:691.777168pt;}
.y17_c00222{bottom:692.665624pt;}
.y18_c00222{bottom:693.718571pt;}
.ya_c00222{bottom:708.482265pt;}
.yb_c00222{bottom:709.033177pt;}
.yc_c00222{bottom:709.499219pt;}
.yd_c00222{bottom:709.964263pt;}
.ye_c00222{bottom:710.583639pt;}
.yf_c00222{bottom:711.238665pt;}
.y10_c00222{bottom:711.650700pt;}
.y11_c00222{bottom:712.189648pt;}
.y12_c00222{bottom:712.789897pt;}
.y4_c00222{bottom:731.505333pt;}
.y5_c00222{bottom:731.948399pt;}
.y6_c00222{bottom:732.101489pt;}
.y7_c00222{bottom:732.558789pt;}
.y8_c00222{bottom:732.848356pt;}
.y9_c00222{bottom:733.182032pt;}
.y3_c00222{bottom:774.501333pt;}
.y2_c00222{bottom:838.320000pt;}
.y1_c00222{bottom:850.080000pt;}
.h3_c00222{height:19.600000pt;}
.h2_c00222{height:35.466667pt;}
.hf_c00222{height:42.012640pt;}
.h13_c00222{height:45.733333pt;}
.h12_c00222{height:46.666667pt;}
.h11_c00222{height:48.533333pt;}
.h10_c00222{height:53.216011pt;}
.hc_c00222{height:57.875028pt;}
.h9_c00222{height:58.808496pt;}
.ha_c00222{height:60.675432pt;}
.h6_c00222{height:62.542369pt;}
.h5_c00222{height:63.475837pt;}
.hb_c00222{height:64.409305pt;}
.h7_c00222{height:65.342773pt;}
.he_c00222{height:66.276242pt;}
.h8_c00222{height:67.209710pt;}
.h4_c00222{height:70.933333pt;}
.hd_c00222{height:82.145201pt;}
.h1_c00222{height:893.333333pt;}
.h0_c00222{height:893.466667pt;}
.w1_c00222{width:634.000000pt;}
.w0_c00222{width:634.266667pt;}
.x0_c00222{left:0.000000pt;}
.x93_c00222{left:76.320000pt;}
.x8e_c00222{left:78.240000pt;}
.x45_c00222{left:80.081821pt;}
.x91_c00222{left:81.600000pt;}
.x2_c00222{left:88.800000pt;}
.x8f_c00222{left:93.600000pt;}
.x49_c00222{left:96.009052pt;}
.x27_c00222{left:99.791649pt;}
.x4a_c00222{left:104.895560pt;}
.x32_c00222{left:107.195076pt;}
.xd_c00222{left:108.326009pt;}
.x1c_c00222{left:110.102863pt;}
.x16_c00222{left:111.114879pt;}
.x46_c00222{left:112.240787pt;}
.x71_c00222{left:113.160385pt;}
.x7c_c00222{left:114.460036pt;}
.x3_c00222{left:123.840000pt;}
.x8b_c00222{left:125.280000pt;}
.x33_c00222{left:129.241157pt;}
.x94_c00222{left:131.520000pt;}
.x38_c00222{left:134.275919pt;}
.x28_c00222{left:135.287540pt;}
.x54_c00222{left:136.639764pt;}
.x23_c00222{left:137.691359pt;}
.xe_c00222{left:138.928155pt;}
.x3e_c00222{left:141.742540pt;}
.x6b_c00222{left:149.391988pt;}
.x81_c00222{left:150.341232pt;}
.x8c_c00222{left:151.440000pt;}
.x5d_c00222{left:153.277147pt;}
.x7d_c00222{left:154.546285pt;}
.x5f_c00222{left:157.304248pt;}
.x34_c00222{left:159.586200pt;}
.x4f_c00222{left:162.343496pt;}
.x90_c00222{left:163.680000pt;}
.xf_c00222{left:164.851724pt;}
.x63_c00222{left:165.934267pt;}
.x29_c00222{left:170.568741pt;}
.x55_c00222{left:173.162869pt;}
.x92_c00222{left:174.720000pt;}
.x17_c00222{left:176.286459pt;}
.x4b_c00222{left:180.490268pt;}
.x6e_c00222{left:182.537512pt;}
.x78_c00222{left:183.589271pt;}
.x7e_c00222{left:187.430449pt;}
.x95_c00222{left:188.400000pt;}
.x1d_c00222{left:189.537556pt;}
.x10_c00222{left:190.716627pt;}
.x3f_c00222{left:194.440788pt;}
.x64_c00222{left:195.976828pt;}
.x4c_c00222{left:197.291307pt;}
.x5b_c00222{left:198.856871pt;}
.x40_c00222{left:201.210575pt;}
.x96_c00222{left:203.040000pt;}
.x6c_c00222{left:205.021703pt;}
.x2a_c00222{left:205.913943pt;}
.x39_c00222{left:207.250043pt;}
.x1e_c00222{left:208.507207pt;}
.x7_c00222{left:209.634667pt;}
.x1_c00222{left:211.680000pt;}
.x35_c00222{left:213.294680pt;}
.x50_c00222{left:214.749264pt;}
.x6d_c00222{left:217.000165pt;}
.x60_c00222{left:220.194395pt;}
.x41_c00222{left:221.669291pt;}
.x11_c00222{left:225.110704pt;}
.x68_c00222{left:229.194591pt;}
.x97_c00222{left:231.360000pt;}
.x2b_c00222{left:234.428251pt;}
.x8_c00222{left:235.697333pt;}
.x36_c00222{left:237.070163pt;}
.x4d_c00222{left:238.765271pt;}
.x6f_c00222{left:240.859809pt;}
.x42_c00222{left:242.053340pt;}
.x9_c00222{left:244.702667pt;}
.x3a_c00222{left:246.128676pt;}
.x56_c00222{left:247.547860pt;}
.x47_c00222{left:250.037147pt;}
.x79_c00222{left:252.479839pt;}
.x65_c00222{left:254.303125pt;}
.x18_c00222{left:255.867708pt;}
.x8d_c00222{left:256.800000pt;}
.x5c_c00222{left:258.353925pt;}
.x12_c00222{left:261.523425pt;}
.x1f_c00222{left:264.204159pt;}
.x24_c00222{left:265.383711pt;}
.x4e_c00222{left:268.759439pt;}
.x5e_c00222{left:269.695085pt;}
.xa_c00222{left:271.602667pt;}
.x82_c00222{left:274.878164pt;}
.x19_c00222{left:275.966348pt;}
.x2c_c00222{left:278.051057pt;}
.x7a_c00222{left:279.843749pt;}
.x43_c00222{left:281.190659pt;}
.x25_c00222{left:283.149656pt;}
.x13_c00222{left:284.427040pt;}
.x66_c00222{left:287.720625pt;}
.xb_c00222{left:288.636000pt;}
.x61_c00222{left:292.647008pt;}
.x75_c00222{left:294.844223pt;}
.x2d_c00222{left:296.594359pt;}
.x44_c00222{left:298.461171pt;}
.x20_c00222{left:300.744771pt;}
.x70_c00222{left:303.042424pt;}
.xc_c00222{left:308.264000pt;}
.x72_c00222{left:313.076052pt;}
.x14_c00222{left:314.403875pt;}
.x37_c00222{left:315.564837pt;}
.x1a_c00222{left:318.264803pt;}
.x7f_c00222{left:319.930067pt;}
.x57_c00222{left:326.519903pt;}
.x3b_c00222{left:328.191707pt;}
.x51_c00222{left:331.018564pt;}
.x2e_c00222{left:335.893029pt;}
.x4_c00222{left:338.880000pt;}
.x86_c00222{left:342.538540pt;}
.x80_c00222{left:344.173071pt;}
.x8a_c00222{left:346.217300pt;}
.x15_c00222{left:347.751308pt;}
.x21_c00222{left:348.933587pt;}
.x26_c00222{left:350.602612pt;}
.x48_c00222{left:354.794496pt;}
.x58_c00222{left:356.991820pt;}
.x67_c00222{left:358.002587pt;}
.x73_c00222{left:358.953284pt;}
.x76_c00222{left:360.386887pt;}
.x83_c00222{left:364.645048pt;}
.x3c_c00222{left:367.346363pt;}
.x1b_c00222{left:368.434736pt;}
.x7b_c00222{left:369.376279pt;}
.x22_c00222{left:372.252639pt;}
.x2f_c00222{left:373.347632pt;}
.x62_c00222{left:374.354065pt;}
.x59_c00222{left:376.244119pt;}
.x52_c00222{left:382.334976pt;}
.x53_c00222{left:383.330999pt;}
.x3d_c00222{left:385.597555pt;}
.x69_c00222{left:389.298187pt;}
.x74_c00222{left:390.890671pt;}
.x5_c00222{left:397.440000pt;}
.x30_c00222{left:399.569849pt;}
.x77_c00222{left:403.355261pt;}
.x5a_c00222{left:414.415360pt;}
.x31_c00222{left:423.829332pt;}
.x6a_c00222{left:425.303257pt;}
.x87_c00222{left:436.954696pt;}
.x88_c00222{left:447.360280pt;}
.x84_c00222{left:470.400000pt;}
.x6_c00222{left:472.080000pt;}
.x85_c00222{left:495.600000pt;}
.x89_c00222{left:522.694204pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.ma4_c00223{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.033290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033290,0.000000,0.000000,0.250000,0,0);}
.m80_c00223{transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);}
.m63_c00223{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);}
.md8_c00223{transform:matrix(0.085975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085975,0.000000,0.000000,0.250000,0,0);}
.mcc_c00223{transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);}
.maa_c00223{transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.136930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136930,0.000000,0.000000,0.250000,0,0);}
.maf_c00223{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);}
.mb7_c00223{transform:matrix(0.137345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137345,0.000000,0.000000,0.250000,0,0);}
.md9_c00223{transform:matrix(0.143210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00223{transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{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);}
.mc_c00223{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);}
.m11_c00223{transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);}
.m89_c00223{transform:matrix(0.150852,0.001509,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150852,0.001509,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150852,0.001509,-0.002500,0.249988,0,0);}
.m31_c00223{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);}
.m52_c00223{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);}
.m22_c00223{transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{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);}
.m58_c00223{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);}
.m8e_c00223{transform:matrix(0.156827,0.001568,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156827,0.001568,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156827,0.001568,-0.002500,0.249988,0,0);}
.m8_c00223{transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);-ms-transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);}
.m7_c00223{transform:matrix(0.157510,-0.001733,0.002750,0.249985,0,0);-ms-transform:matrix(0.157510,-0.001733,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157510,-0.001733,0.002750,0.249985,0,0);}
.m37_c00223{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);}
.mfc_c00223{transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);}
.mc8_c00223{transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159405,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{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);}
.mf7_c00223{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);}
.m87_c00223{transform:matrix(0.160222,0.001602,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160222,0.001602,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160222,0.001602,-0.002500,0.249988,0,0);}
.mcd_c00223{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);}
.m18_c00223{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);}
.m27_c00223{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);}
.m8a_c00223{transform:matrix(0.163352,0.001634,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163352,0.001634,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163352,0.001634,-0.002500,0.249988,0,0);}
.mfb_c00223{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.m48_c00223{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m9e_c00223{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);}
.mdf_c00223{transform:matrix(0.166115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166115,0.000000,0.000000,0.250000,0,0);}
.m36_c00223{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);}
.me_c00223{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);}
.mfd_c00223{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);}
.m84_c00223{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);}
.m54_c00223{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);}
.m82_c00223{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);}
.me7_c00223{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);}
.md4_c00223{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);}
.md_c00223{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);}
.m8c_c00223{transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170816,0.001708,-0.002500,0.249988,0,0);}
.mb8_c00223{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);}
.m16_c00223{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);}
.m5a_c00223{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);}
.m98_c00223{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);}
.mf3_c00223{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);}
.m1b_c00223{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);}
.mb4_c00223{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);}
.m19_c00223{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);}
.m56_c00223{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);}
.m5e_c00223{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);}
.m8d_c00223{transform:matrix(0.174671,0.001747,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174671,0.001747,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174671,0.001747,-0.002500,0.249988,0,0);}
.mc0_c00223{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);}
.mf_c00223{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{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);}
.m88_c00223{transform:matrix(0.176216,0.001762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176216,0.001762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176216,0.001762,-0.002500,0.249988,0,0);}
.m2b_c00223{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);}
.mc2_c00223{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);}
.m46_c00223{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);}
.mf9_c00223{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m85_c00223{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);}
.m10_c00223{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);}
.m2e_c00223{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);}
.mf2_c00223{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);}
.mbe_c00223{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);}
.mf4_c00223{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);}
.m21_c00223{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);}
.mf6_c00223{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);}
.m47_c00223{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);}
.m45_c00223{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);}
.m17_c00223{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);}
.mbc_c00223{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);}
.m91_c00223{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);}
.m2c_c00223{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);}
.mb6_c00223{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);}
.m6_c00223{transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187264,-0.002060,0.002750,0.249985,0,0);}
.mf5_c00223{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);}
.m5_c00223{transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);}
.mc9_c00223{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);}
.me8_c00223{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);}
.mf1_c00223{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);}
.m0_c00223{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);}
.m4b_c00223{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);}
.m6a_c00223{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);}
.mdc_c00223{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);}
.ma_c00223{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);}
.m32_c00223{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);}
.m3c_c00223{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);}
.m3a_c00223{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);}
.mef_c00223{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);}
.mae_c00223{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);}
.m49_c00223{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);}
.md6_c00223{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);}
.m34_c00223{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);}
.mfa_c00223{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);}
.m1d_c00223{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);}
.mc5_c00223{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);}
.med_c00223{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);}
.m8f_c00223{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);}
.mbb_c00223{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);}
.m57_c00223{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);}
.m3d_c00223{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_c00223{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);}
.ma5_c00223{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);}
.mb1_c00223{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);}
.m15_c00223{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);}
.md1_c00223{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);}
.mf0_c00223{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);}
.m38_c00223{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);}
.m12_c00223{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);}
.m4_c00223{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);}
.m9_c00223{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m23_c00223{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);}
.m4d_c00223{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);}
.me6_c00223{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_c00223{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);}
.ma6_c00223{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);}
.ma3_c00223{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);}
.mb_c00223{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);}
.m86_c00223{transform:matrix(0.204650,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204650,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204650,0.002046,-0.002500,0.249988,0,0);}
.ma1_c00223{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);}
.m3e_c00223{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);}
.m3_c00223{transform:matrix(0.206158,-0.002268,0.002750,0.249985,0,0);-ms-transform:matrix(0.206158,-0.002268,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206158,-0.002268,0.002750,0.249985,0,0);}
.m51_c00223{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);}
.mcb_c00223{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);}
.m78_c00223{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);}
.m29_c00223{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);}
.md5_c00223{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);}
.mf8_c00223{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);}
.m6b_c00223{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);}
.me4_c00223{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);}
.m2d_c00223{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);}
.m33_c00223{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);}
.meb_c00223{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);}
.m4e_c00223{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);}
.m3b_c00223{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);}
.mec_c00223{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);}
.mbd_c00223{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);}
.mb3_c00223{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);}
.m42_c00223{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);}
.m4f_c00223{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);}
.me5_c00223{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);}
.me1_c00223{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);}
.m9f_c00223{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);}
.ma0_c00223{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);}
.m55_c00223{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);}
.mce_c00223{transform:matrix(0.217380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217380,0.000000,0.000000,0.250000,0,0);}
.m67_c00223{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);}
.mc4_c00223{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);}
.m41_c00223{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);}
.m94_c00223{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);}
.md3_c00223{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);}
.ma7_c00223{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);}
.mab_c00223{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);}
.m53_c00223{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);}
.m96_c00223{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);}
.mc3_c00223{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);}
.m9c_c00223{transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);}
.m81_c00223{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);}
.m83_c00223{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);}
.mfe_c00223{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);}
.m5b_c00223{transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);}
.md7_c00223{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);}
.m5c_c00223{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);}
.m72_c00223{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);}
.m93_c00223{transform:matrix(0.231365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231365,0.000000,0.000000,0.250000,0,0);}
.m2f_c00223{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);}
.m90_c00223{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);}
.mca_c00223{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);}
.m8b_c00223{transform:matrix(0.233163,0.002332,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233163,0.002332,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233163,0.002332,-0.002500,0.249988,0,0);}
.m6d_c00223{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);}
.m64_c00223{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);}
.m6c_c00223{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);}
.m14_c00223{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);}
.m13_c00223{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);}
.mdb_c00223{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m30_c00223{transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239060,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{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);}
.m9a_c00223{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);}
.ma2_c00223{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);}
.m1c_c00223{transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);}
.mba_c00223{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);}
.mbf_c00223{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);}
.m4a_c00223{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);}
.m35_c00223{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);}
.m50_c00223{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);}
.mda_c00223{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.mb2_c00223{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.md2_c00223{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{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);}
.m39_c00223{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.me9_c00223{transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);}
.m68_c00223{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.m7f_c00223{transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);}
.m65_c00223{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mea_c00223{transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);}
.m62_c00223{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.m44_c00223{transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);}
.mee_c00223{transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);}
.m69_c00223{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);}
.mb0_c00223{transform:matrix(0.268790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268790,0.000000,0.000000,0.250000,0,0);}
.mde_c00223{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);}
.m9b_c00223{transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);}
.mb9_c00223{transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);}
.m5d_c00223{transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);}
.m9d_c00223{transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279425,0.000000,0.000000,0.250000,0,0);}
.mad_c00223{transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00223{transform:matrix(0.295435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295435,0.000000,0.000000,0.250000,0,0);}
.m75_c00223{transform:matrix(0.304195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304195,0.000000,0.000000,0.250000,0,0);}
.m73_c00223{transform:matrix(0.309140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309140,0.000000,0.000000,0.250000,0,0);}
.mdd_c00223{transform:matrix(0.309320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309320,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.309660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309660,0.000000,0.000000,0.250000,0,0);}
.mb5_c00223{transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);}
.m70_c00223{transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);}
.ma8_c00223{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m66_c00223{transform:matrix(0.330025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330025,0.000000,0.000000,0.250000,0,0);}
.m43_c00223{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);}
.m7d_c00223{transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);}
.mc6_c00223{transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);}
.m7a_c00223{transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343170,0.000000,0.000000,0.250000,0,0);}
.m40_c00223{transform:matrix(0.345420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00223{transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);}
.m59_c00223{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.m71_c00223{transform:matrix(0.361400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361400,0.000000,0.000000,0.250000,0,0);}
.m77_c00223{transform:matrix(0.375165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375165,0.000000,0.000000,0.250000,0,0);}
.m97_c00223{transform:matrix(0.389375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389375,0.000000,0.000000,0.250000,0,0);}
.md0_c00223{transform:matrix(0.400615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400615,0.000000,0.000000,0.250000,0,0);}
.mac_c00223{transform:matrix(0.409135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409135,0.000000,0.000000,0.250000,0,0);}
.me3_c00223{transform:matrix(0.409770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409770,0.000000,0.000000,0.250000,0,0);}
.m79_c00223{transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);}
.m76_c00223{transform:matrix(0.415900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415900,0.000000,0.000000,0.250000,0,0);}
.m7e_c00223{transform:matrix(0.424765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00223{transform:matrix(0.428065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428065,0.000000,0.000000,0.250000,0,0);}
.m7b_c00223{transform:matrix(0.430955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430955,0.000000,0.000000,0.250000,0,0);}
.me2_c00223{transform:matrix(0.455390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455390,0.000000,0.000000,0.250000,0,0);}
.m5f_c00223{transform:matrix(0.478515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478515,0.000000,0.000000,0.250000,0,0);}
.m60_c00223{transform:matrix(0.480360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480360,0.000000,0.000000,0.250000,0,0);}
.m3f_c00223{transform:matrix(0.482305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482305,0.000000,0.000000,0.250000,0,0);}
.m61_c00223{transform:matrix(0.490010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490010,0.000000,0.000000,0.250000,0,0);}
.mc7_c00223{transform:matrix(0.494145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00223{transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.548010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548010,0.000000,0.000000,0.250000,0,0);}
.m7c_c00223{transform:matrix(0.581965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581965,0.000000,0.000000,0.250000,0,0);}
.m74_c00223{transform:matrix(0.583110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583110,0.000000,0.000000,0.250000,0,0);}
.m92_c00223{transform:matrix(0.652475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652475,0.000000,0.000000,0.250000,0,0);}
.m6f_c00223{transform:matrix(0.683560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683560,0.000000,0.000000,0.250000,0,0);}
.m95_c00223{transform:matrix(0.882615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882615,0.000000,0.000000,0.250000,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;}
.fs16_c00223{font-size:22.050000px;}
.fs1_c00223{font-size:34.650000px;}
.fs17_c00223{font-size:47.250000px;}
.fs10_c00223{font-size:49.350000px;}
.fs0_c00223{font-size:50.400000px;}
.fs11_c00223{font-size:51.450000px;}
.fs12_c00223{font-size:52.500000px;}
.fs13_c00223{font-size:53.550000px;}
.fs18_c00223{font-size:54.600000px;}
.fs15_c00223{font-size:55.650000px;}
.fsc_c00223{font-size:64.050000px;}
.fsa_c00223{font-size:66.150000px;}
.fs8_c00223{font-size:67.200000px;}
.fs7_c00223{font-size:68.250000px;}
.fs6_c00223{font-size:69.300000px;}
.fs3_c00223{font-size:69.304193px;}
.fs5_c00223{font-size:70.350000px;}
.fs9_c00223{font-size:71.400000px;}
.fsb_c00223{font-size:72.450000px;}
.fs4_c00223{font-size:74.550000px;}
.fsf_c00223{font-size:74.553727px;}
.fse_c00223{font-size:86.100000px;}
.fsd_c00223{font-size:87.150000px;}
.fs2_c00223{font-size:102.900000px;}
.fs14_c00223{font-size:150.150000px;}
.y0_c00223{bottom:0.000000px;}
.y38_c00223{bottom:104.760000px;}
.y4a_c00223{bottom:160.636500px;}
.y37_c00223{bottom:162.355500px;}
.y49_c00223{bottom:178.930500px;}
.y36_c00223{bottom:180.532500px;}
.y48_c00223{bottom:196.728000px;}
.y35_c00223{bottom:198.990000px;}
.y45_c00223{bottom:213.019500px;}
.y44_c00223{bottom:213.732000px;}
.y43_c00223{bottom:213.991500px;}
.y42_c00223{bottom:214.225500px;}
.y41_c00223{bottom:214.773000px;}
.y40_c00223{bottom:215.068500px;}
.y3f_c00223{bottom:215.277000px;}
.y3e_c00223{bottom:215.412000px;}
.y3d_c00223{bottom:215.625000px;}
.y3c_c00223{bottom:215.730000px;}
.y34_c00223{bottom:216.127500px;}
.y3b_c00223{bottom:232.255500px;}
.y33_c00223{bottom:234.195000px;}
.y3a_c00223{bottom:250.176000px;}
.y32_c00223{bottom:252.148500px;}
.y47_c00223{bottom:266.479500px;}
.y39_c00223{bottom:268.087500px;}
.y31_c00223{bottom:269.731500px;}
.y46_c00223{bottom:285.120000px;}
.y30_c00223{bottom:322.073730px;}
.y2f_c00223{bottom:322.316715px;}
.y2e_c00223{bottom:322.797315px;}
.y2d_c00223{bottom:323.021400px;}
.y2c_c00223{bottom:323.515665px;}
.y2b_c00223{bottom:323.726115px;}
.y2a_c00223{bottom:324.409215px;}
.y29_c00223{bottom:324.698175px;}
.y28_c00223{bottom:325.081500px;}
.y27_c00223{bottom:347.119500px;}
.y26_c00223{bottom:369.106500px;}
.y25_c00223{bottom:406.765500px;}
.y24_c00223{bottom:433.261500px;}
.y22_c00223{bottom:473.977500px;}
.y23_c00223{bottom:473.989500px;}
.y21_c00223{bottom:537.258000px;}
.y20_c00223{bottom:559.860000px;}
.y1f_c00223{bottom:581.917500px;}
.y1e_c00223{bottom:604.639500px;}
.y1d_c00223{bottom:627.180000px;}
.y1c_c00223{bottom:649.818000px;}
.y1a_c00223{bottom:672.480000px;}
.y1b_c00223{bottom:672.840000px;}
.y19_c00223{bottom:695.472000px;}
.y18_c00223{bottom:718.773000px;}
.y17_c00223{bottom:740.557500px;}
.yd_c00223{bottom:761.941500px;}
.ye_c00223{bottom:762.447000px;}
.yf_c00223{bottom:763.210500px;}
.y10_c00223{bottom:763.564500px;}
.y11_c00223{bottom:763.950000px;}
.y12_c00223{bottom:764.272500px;}
.y13_c00223{bottom:765.025500px;}
.y14_c00223{bottom:765.223500px;}
.y15_c00223{bottom:765.741000px;}
.y16_c00223{bottom:765.903000px;}
.yc_c00223{bottom:786.424500px;}
.yb_c00223{bottom:808.852500px;}
.y4_c00223{bottom:830.251500px;}
.y5_c00223{bottom:830.807616px;}
.y6_c00223{bottom:831.403563px;}
.y7_c00223{bottom:832.050957px;}
.y8_c00223{bottom:832.395939px;}
.y9_c00223{bottom:832.737671px;}
.ya_c00223{bottom:832.951461px;}
.y3_c00223{bottom:871.960500px;}
.y2_c00223{bottom:898.290000px;}
.y1_c00223{bottom:919.080000px;}
.h18_c00223{height:22.050000px;}
.h3_c00223{height:34.650000px;}
.h19_c00223{height:47.250000px;}
.h12_c00223{height:49.350000px;}
.h2_c00223{height:50.400000px;}
.h13_c00223{height:51.450000px;}
.h14_c00223{height:52.500000px;}
.h15_c00223{height:53.550000px;}
.h1a_c00223{height:54.600000px;}
.h17_c00223{height:55.650000px;}
.he_c00223{height:64.050000px;}
.hc_c00223{height:66.150000px;}
.ha_c00223{height:67.200000px;}
.h9_c00223{height:68.250000px;}
.h8_c00223{height:69.300000px;}
.h5_c00223{height:69.304193px;}
.h7_c00223{height:70.350000px;}
.hb_c00223{height:71.400000px;}
.hd_c00223{height:72.450000px;}
.h6_c00223{height:74.550000px;}
.h11_c00223{height:74.553727px;}
.h10_c00223{height:86.100000px;}
.hf_c00223{height:87.150000px;}
.h4_c00223{height:102.900000px;}
.h16_c00223{height:150.150000px;}
.h0_c00223{height:1008.450000px;}
.h1_c00223{height:1008.750000px;}
.w0_c00223{width:678.450000px;}
.w1_c00223{width:678.750000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:73.440000px;}
.x57_c00223{left:124.740000px;}
.x3_c00223{left:125.820000px;}
.x67_c00223{left:138.780000px;}
.x71_c00223{left:148.500000px;}
.x4d_c00223{left:153.630000px;}
.x75_c00223{left:154.710000px;}
.x79_c00223{left:156.870000px;}
.x3b_c00223{left:158.490000px;}
.x68_c00223{left:159.840000px;}
.x4_c00223{left:161.059500px;}
.x1c_c00223{left:162.132000px;}
.x13_c00223{left:164.430000px;}
.x6f_c00223{left:165.780000px;}
.x58_c00223{left:175.770000px;}
.x5b_c00223{left:178.470000px;}
.x25_c00223{left:181.980000px;}
.x5e_c00223{left:191.970000px;}
.x1_c00223{left:193.590000px;}
.x2c_c00223{left:200.610000px;}
.x72_c00223{left:202.500000px;}
.xb_c00223{left:203.850000px;}
.x4e_c00223{left:206.820000px;}
.x4f_c00223{left:207.900000px;}
.x42_c00223{left:209.790000px;}
.x5_c00223{left:211.615500px;}
.x1d_c00223{left:212.652000px;}
.x3c_c00223{left:215.730000px;}
.x26_c00223{left:216.810000px;}
.x14_c00223{left:219.510000px;}
.x49_c00223{left:220.590000px;}
.x2d_c00223{left:221.670000px;}
.x76_c00223{left:224.100000px;}
.x62_c00223{left:228.834000px;}
.x33_c00223{left:241.650000px;}
.xc_c00223{left:244.080000px;}
.x53_c00223{left:247.050000px;}
.x15_c00223{left:248.670000px;}
.x6c_c00223{left:252.180000px;}
.x27_c00223{left:254.880000px;}
.x43_c00223{left:259.470000px;}
.x69_c00223{left:260.820000px;}
.x2e_c00223{left:263.790000px;}
.x6_c00223{left:265.792500px;}
.x5c_c00223{left:267.300000px;}
.x6d_c00223{left:268.380000px;}
.x5f_c00223{left:270.270000px;}
.xd_c00223{left:271.350000px;}
.x34_c00223{left:276.210000px;}
.x41_c00223{left:282.690000px;}
.x39_c00223{left:286.470000px;}
.x1e_c00223{left:289.038000px;}
.x2f_c00223{left:290.250000px;}
.x73_c00223{left:291.870000px;}
.x28_c00223{left:294.030000px;}
.x63_c00223{left:297.144000px;}
.x59_c00223{left:299.970000px;}
.x16_c00223{left:301.050000px;}
.xe_c00223{left:303.750000px;}
.x74_c00223{left:306.720000px;}
.x6a_c00223{left:307.800000px;}
.x3d_c00223{left:310.230000px;}
.x6b_c00223{left:316.980000px;}
.x64_c00223{left:318.189000px;}
.x77_c00223{left:321.030000px;}
.x7_c00223{left:324.646500px;}
.x17_c00223{left:328.860000px;}
.x30_c00223{left:330.480000px;}
.x60_c00223{left:333.720000px;}
.x6e_c00223{left:336.960000px;}
.x35_c00223{left:338.850000px;}
.x4a_c00223{left:341.280000px;}
.x3e_c00223{left:349.650000px;}
.xf_c00223{left:351.000000px;}
.x50_c00223{left:352.080000px;}
.x8_c00223{left:356.008500px;}
.x70_c00223{left:359.370000px;}
.x78_c00223{left:361.260000px;}
.x1f_c00223{left:362.970000px;}
.x87_c00223{left:363.993000px;}
.x29_c00223{left:365.850000px;}
.x3f_c00223{left:368.550000px;}
.x44_c00223{left:370.170000px;}
.x93_c00223{left:372.600000px;}
.x36_c00223{left:373.680000px;}
.x61_c00223{left:375.570000px;}
.x3a_c00223{left:377.190000px;}
.x7f_c00223{left:379.080000px;}
.x18_c00223{left:382.320000px;}
.x9_c00223{left:387.075000px;}
.x65_c00223{left:390.024000px;}
.x10_c00223{left:391.500000px;}
.x80_c00223{left:393.120000px;}
.x20_c00223{left:395.161500px;}
.x31_c00223{left:396.630000px;}
.x54_c00223{left:399.060000px;}
.x5d_c00223{left:400.140000px;}
.x2a_c00223{left:402.030000px;}
.x7b_c00223{left:403.650000px;}
.x81_c00223{left:404.730000px;}
.xa_c00223{left:406.510500px;}
.x19_c00223{left:408.780000px;}
.x45_c00223{left:410.670000px;}
.x88_c00223{left:419.190000px;}
.x4b_c00223{left:421.470000px;}
.x4c_c00223{left:422.820000px;}
.x7c_c00223{left:426.330000px;}
.x11_c00223{left:427.410000px;}
.x51_c00223{left:429.840000px;}
.x32_c00223{left:435.510000px;}
.x66_c00223{left:438.084000px;}
.x2b_c00223{left:439.830000px;}
.x46_c00223{left:443.880000px;}
.x37_c00223{left:445.230000px;}
.x8e_c00223{left:447.660000px;}
.x82_c00223{left:451.710000px;}
.x97_c00223{left:453.600000px;}
.x55_c00223{left:456.030000px;}
.x40_c00223{left:457.110000px;}
.x5a_c00223{left:458.190000px;}
.x38_c00223{left:463.050000px;}
.x47_c00223{left:464.940000px;}
.x1a_c00223{left:466.830000px;}
.x21_c00223{left:470.430000px;}
.x7a_c00223{left:472.230000px;}
.x52_c00223{left:478.440000px;}
.x12_c00223{left:484.110000px;}
.x83_c00223{left:487.620000px;}
.x22_c00223{left:490.186500px;}
.x1b_c00223{left:493.560000px;}
.x56_c00223{left:497.610000px;}
.x7d_c00223{left:500.850000px;}
.x48_c00223{left:505.440000px;}
.x89_c00223{left:508.849500px;}
.x7e_c00223{left:510.030000px;}
.x84_c00223{left:511.920000px;}
.x8f_c00223{left:518.670000px;}
.x98_c00223{left:525.690000px;}
.x94_c00223{left:527.040000px;}
.x8a_c00223{left:530.433000px;}
.x85_c00223{left:532.710000px;}
.x23_c00223{left:541.968000px;}
.x90_c00223{left:544.860000px;}
.x8c_c00223{left:552.150000px;}
.x99_c00223{left:554.040000px;}
.x24_c00223{left:558.112500px;}
.x95_c00223{left:562.950000px;}
.x86_c00223{left:566.190000px;}
.x8d_c00223{left:569.700000px;}
.x91_c00223{left:571.860000px;}
.x92_c00223{left:586.440000px;}
.x8b_c00223{left:589.801500px;}
.x96_c00223{left:598.050000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fs16_c00223{font-size:19.600000pt;}
.fs1_c00223{font-size:30.800000pt;}
.fs17_c00223{font-size:42.000000pt;}
.fs10_c00223{font-size:43.866667pt;}
.fs0_c00223{font-size:44.800000pt;}
.fs11_c00223{font-size:45.733333pt;}
.fs12_c00223{font-size:46.666667pt;}
.fs13_c00223{font-size:47.600000pt;}
.fs18_c00223{font-size:48.533333pt;}
.fs15_c00223{font-size:49.466667pt;}
.fsc_c00223{font-size:56.933333pt;}
.fsa_c00223{font-size:58.800000pt;}
.fs8_c00223{font-size:59.733333pt;}
.fs7_c00223{font-size:60.666667pt;}
.fs6_c00223{font-size:61.600000pt;}
.fs3_c00223{font-size:61.603727pt;}
.fs5_c00223{font-size:62.533333pt;}
.fs9_c00223{font-size:63.466667pt;}
.fsb_c00223{font-size:64.400000pt;}
.fs4_c00223{font-size:66.266667pt;}
.fsf_c00223{font-size:66.269980pt;}
.fse_c00223{font-size:76.533333pt;}
.fsd_c00223{font-size:77.466667pt;}
.fs2_c00223{font-size:91.466667pt;}
.fs14_c00223{font-size:133.466667pt;}
.y0_c00223{bottom:0.000000pt;}
.y38_c00223{bottom:93.120000pt;}
.y4a_c00223{bottom:142.788000pt;}
.y37_c00223{bottom:144.316000pt;}
.y49_c00223{bottom:159.049333pt;}
.y36_c00223{bottom:160.473333pt;}
.y48_c00223{bottom:174.869333pt;}
.y35_c00223{bottom:176.880000pt;}
.y45_c00223{bottom:189.350667pt;}
.y44_c00223{bottom:189.984000pt;}
.y43_c00223{bottom:190.214667pt;}
.y42_c00223{bottom:190.422667pt;}
.y41_c00223{bottom:190.909333pt;}
.y40_c00223{bottom:191.172000pt;}
.y3f_c00223{bottom:191.357333pt;}
.y3e_c00223{bottom:191.477333pt;}
.y3d_c00223{bottom:191.666667pt;}
.y3c_c00223{bottom:191.760000pt;}
.y34_c00223{bottom:192.113333pt;}
.y3b_c00223{bottom:206.449333pt;}
.y33_c00223{bottom:208.173333pt;}
.y3a_c00223{bottom:222.378667pt;}
.y32_c00223{bottom:224.132000pt;}
.y47_c00223{bottom:236.870667pt;}
.y39_c00223{bottom:238.300000pt;}
.y31_c00223{bottom:239.761333pt;}
.y46_c00223{bottom:253.440000pt;}
.y30_c00223{bottom:286.287760pt;}
.y2f_c00223{bottom:286.503747pt;}
.y2e_c00223{bottom:286.930947pt;}
.y2d_c00223{bottom:287.130133pt;}
.y2c_c00223{bottom:287.569480pt;}
.y2b_c00223{bottom:287.756547pt;}
.y2a_c00223{bottom:288.363747pt;}
.y29_c00223{bottom:288.620600pt;}
.y28_c00223{bottom:288.961333pt;}
.y27_c00223{bottom:308.550667pt;}
.y26_c00223{bottom:328.094667pt;}
.y25_c00223{bottom:361.569333pt;}
.y24_c00223{bottom:385.121333pt;}
.y22_c00223{bottom:421.313333pt;}
.y23_c00223{bottom:421.324000pt;}
.y21_c00223{bottom:477.562667pt;}
.y20_c00223{bottom:497.653333pt;}
.y1f_c00223{bottom:517.260000pt;}
.y1e_c00223{bottom:537.457333pt;}
.y1d_c00223{bottom:557.493333pt;}
.y1c_c00223{bottom:577.616000pt;}
.y1a_c00223{bottom:597.760000pt;}
.y1b_c00223{bottom:598.080000pt;}
.y19_c00223{bottom:618.197333pt;}
.y18_c00223{bottom:638.909333pt;}
.y17_c00223{bottom:658.273333pt;}
.yd_c00223{bottom:677.281333pt;}
.ye_c00223{bottom:677.730667pt;}
.yf_c00223{bottom:678.409333pt;}
.y10_c00223{bottom:678.724000pt;}
.y11_c00223{bottom:679.066667pt;}
.y12_c00223{bottom:679.353333pt;}
.y13_c00223{bottom:680.022667pt;}
.y14_c00223{bottom:680.198667pt;}
.y15_c00223{bottom:680.658667pt;}
.y16_c00223{bottom:680.802667pt;}
.yc_c00223{bottom:699.044000pt;}
.yb_c00223{bottom:718.980000pt;}
.y4_c00223{bottom:738.001333pt;}
.y5_c00223{bottom:738.495659pt;}
.y6_c00223{bottom:739.025389pt;}
.y7_c00223{bottom:739.600851pt;}
.y8_c00223{bottom:739.907501pt;}
.y9_c00223{bottom:740.211263pt;}
.ya_c00223{bottom:740.401299pt;}
.y3_c00223{bottom:775.076000pt;}
.y2_c00223{bottom:798.480000pt;}
.y1_c00223{bottom:816.960000pt;}
.h18_c00223{height:19.600000pt;}
.h3_c00223{height:30.800000pt;}
.h19_c00223{height:42.000000pt;}
.h12_c00223{height:43.866667pt;}
.h2_c00223{height:44.800000pt;}
.h13_c00223{height:45.733333pt;}
.h14_c00223{height:46.666667pt;}
.h15_c00223{height:47.600000pt;}
.h1a_c00223{height:48.533333pt;}
.h17_c00223{height:49.466667pt;}
.he_c00223{height:56.933333pt;}
.hc_c00223{height:58.800000pt;}
.ha_c00223{height:59.733333pt;}
.h9_c00223{height:60.666667pt;}
.h8_c00223{height:61.600000pt;}
.h5_c00223{height:61.603727pt;}
.h7_c00223{height:62.533333pt;}
.hb_c00223{height:63.466667pt;}
.hd_c00223{height:64.400000pt;}
.h6_c00223{height:66.266667pt;}
.h11_c00223{height:66.269980pt;}
.h10_c00223{height:76.533333pt;}
.hf_c00223{height:77.466667pt;}
.h4_c00223{height:91.466667pt;}
.h16_c00223{height:133.466667pt;}
.h0_c00223{height:896.400000pt;}
.h1_c00223{height:896.666667pt;}
.w0_c00223{width:603.066667pt;}
.w1_c00223{width:603.333333pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:65.280000pt;}
.x57_c00223{left:110.880000pt;}
.x3_c00223{left:111.840000pt;}
.x67_c00223{left:123.360000pt;}
.x71_c00223{left:132.000000pt;}
.x4d_c00223{left:136.560000pt;}
.x75_c00223{left:137.520000pt;}
.x79_c00223{left:139.440000pt;}
.x3b_c00223{left:140.880000pt;}
.x68_c00223{left:142.080000pt;}
.x4_c00223{left:143.164000pt;}
.x1c_c00223{left:144.117333pt;}
.x13_c00223{left:146.160000pt;}
.x6f_c00223{left:147.360000pt;}
.x58_c00223{left:156.240000pt;}
.x5b_c00223{left:158.640000pt;}
.x25_c00223{left:161.760000pt;}
.x5e_c00223{left:170.640000pt;}
.x1_c00223{left:172.080000pt;}
.x2c_c00223{left:178.320000pt;}
.x72_c00223{left:180.000000pt;}
.xb_c00223{left:181.200000pt;}
.x4e_c00223{left:183.840000pt;}
.x4f_c00223{left:184.800000pt;}
.x42_c00223{left:186.480000pt;}
.x5_c00223{left:188.102667pt;}
.x1d_c00223{left:189.024000pt;}
.x3c_c00223{left:191.760000pt;}
.x26_c00223{left:192.720000pt;}
.x14_c00223{left:195.120000pt;}
.x49_c00223{left:196.080000pt;}
.x2d_c00223{left:197.040000pt;}
.x76_c00223{left:199.200000pt;}
.x62_c00223{left:203.408000pt;}
.x33_c00223{left:214.800000pt;}
.xc_c00223{left:216.960000pt;}
.x53_c00223{left:219.600000pt;}
.x15_c00223{left:221.040000pt;}
.x6c_c00223{left:224.160000pt;}
.x27_c00223{left:226.560000pt;}
.x43_c00223{left:230.640000pt;}
.x69_c00223{left:231.840000pt;}
.x2e_c00223{left:234.480000pt;}
.x6_c00223{left:236.260000pt;}
.x5c_c00223{left:237.600000pt;}
.x6d_c00223{left:238.560000pt;}
.x5f_c00223{left:240.240000pt;}
.xd_c00223{left:241.200000pt;}
.x34_c00223{left:245.520000pt;}
.x41_c00223{left:251.280000pt;}
.x39_c00223{left:254.640000pt;}
.x1e_c00223{left:256.922667pt;}
.x2f_c00223{left:258.000000pt;}
.x73_c00223{left:259.440000pt;}
.x28_c00223{left:261.360000pt;}
.x63_c00223{left:264.128000pt;}
.x59_c00223{left:266.640000pt;}
.x16_c00223{left:267.600000pt;}
.xe_c00223{left:270.000000pt;}
.x74_c00223{left:272.640000pt;}
.x6a_c00223{left:273.600000pt;}
.x3d_c00223{left:275.760000pt;}
.x6b_c00223{left:281.760000pt;}
.x64_c00223{left:282.834667pt;}
.x77_c00223{left:285.360000pt;}
.x7_c00223{left:288.574667pt;}
.x17_c00223{left:292.320000pt;}
.x30_c00223{left:293.760000pt;}
.x60_c00223{left:296.640000pt;}
.x6e_c00223{left:299.520000pt;}
.x35_c00223{left:301.200000pt;}
.x4a_c00223{left:303.360000pt;}
.x3e_c00223{left:310.800000pt;}
.xf_c00223{left:312.000000pt;}
.x50_c00223{left:312.960000pt;}
.x8_c00223{left:316.452000pt;}
.x70_c00223{left:319.440000pt;}
.x78_c00223{left:321.120000pt;}
.x1f_c00223{left:322.640000pt;}
.x87_c00223{left:323.549333pt;}
.x29_c00223{left:325.200000pt;}
.x3f_c00223{left:327.600000pt;}
.x44_c00223{left:329.040000pt;}
.x93_c00223{left:331.200000pt;}
.x36_c00223{left:332.160000pt;}
.x61_c00223{left:333.840000pt;}
.x3a_c00223{left:335.280000pt;}
.x7f_c00223{left:336.960000pt;}
.x18_c00223{left:339.840000pt;}
.x9_c00223{left:344.066667pt;}
.x65_c00223{left:346.688000pt;}
.x10_c00223{left:348.000000pt;}
.x80_c00223{left:349.440000pt;}
.x20_c00223{left:351.254667pt;}
.x31_c00223{left:352.560000pt;}
.x54_c00223{left:354.720000pt;}
.x5d_c00223{left:355.680000pt;}
.x2a_c00223{left:357.360000pt;}
.x7b_c00223{left:358.800000pt;}
.x81_c00223{left:359.760000pt;}
.xa_c00223{left:361.342667pt;}
.x19_c00223{left:363.360000pt;}
.x45_c00223{left:365.040000pt;}
.x88_c00223{left:372.613333pt;}
.x4b_c00223{left:374.640000pt;}
.x4c_c00223{left:375.840000pt;}
.x7c_c00223{left:378.960000pt;}
.x11_c00223{left:379.920000pt;}
.x51_c00223{left:382.080000pt;}
.x32_c00223{left:387.120000pt;}
.x66_c00223{left:389.408000pt;}
.x2b_c00223{left:390.960000pt;}
.x46_c00223{left:394.560000pt;}
.x37_c00223{left:395.760000pt;}
.x8e_c00223{left:397.920000pt;}
.x82_c00223{left:401.520000pt;}
.x97_c00223{left:403.200000pt;}
.x55_c00223{left:405.360000pt;}
.x40_c00223{left:406.320000pt;}
.x5a_c00223{left:407.280000pt;}
.x38_c00223{left:411.600000pt;}
.x47_c00223{left:413.280000pt;}
.x1a_c00223{left:414.960000pt;}
.x21_c00223{left:418.160000pt;}
.x7a_c00223{left:419.760000pt;}
.x52_c00223{left:425.280000pt;}
.x12_c00223{left:430.320000pt;}
.x83_c00223{left:433.440000pt;}
.x22_c00223{left:435.721333pt;}
.x1b_c00223{left:438.720000pt;}
.x56_c00223{left:442.320000pt;}
.x7d_c00223{left:445.200000pt;}
.x48_c00223{left:449.280000pt;}
.x89_c00223{left:452.310667pt;}
.x7e_c00223{left:453.360000pt;}
.x84_c00223{left:455.040000pt;}
.x8f_c00223{left:461.040000pt;}
.x98_c00223{left:467.280000pt;}
.x94_c00223{left:468.480000pt;}
.x8a_c00223{left:471.496000pt;}
.x85_c00223{left:473.520000pt;}
.x23_c00223{left:481.749333pt;}
.x90_c00223{left:484.320000pt;}
.x8c_c00223{left:490.800000pt;}
.x99_c00223{left:492.480000pt;}
.x24_c00223{left:496.100000pt;}
.x95_c00223{left:500.400000pt;}
.x86_c00223{left:503.280000pt;}
.x8d_c00223{left:506.400000pt;}
.x91_c00223{left:508.320000pt;}
.x92_c00223{left:521.280000pt;}
.x8b_c00223{left:524.268000pt;}
.x96_c00223{left:531.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mad_c00224{transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);}
.mb3_c00224{transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);}
.mf8_c00224{transform:matrix(0.027348,0.000602,-0.005499,0.249940,0,0);-ms-transform:matrix(0.027348,0.000602,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.027348,0.000602,-0.005499,0.249940,0,0);}
.m9e_c00224{transform:matrix(0.064630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00224{transform:matrix(0.104000,0.001456,-0.003500,0.249976,0,0);-ms-transform:matrix(0.104000,0.001456,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.104000,0.001456,-0.003500,0.249976,0,0);}
.m4f_c00224{transform:matrix(0.106715,0.001494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.106715,0.001494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.106715,0.001494,-0.003500,0.249976,0,0);}
.m6_c00224{transform:matrix(0.116719,0.001167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.116719,0.001167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.116719,0.001167,-0.002500,0.249988,0,0);}
.mee_c00224{transform:matrix(0.145914,0.003648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.145914,0.003648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.145914,0.003648,-0.006248,0.249922,0,0);}
.m78_c00224{transform:matrix(0.146281,0.002048,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146281,0.002048,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146281,0.002048,-0.003500,0.249976,0,0);}
.m7a_c00224{transform:matrix(0.150830,0.002112,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150830,0.002112,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150830,0.002112,-0.003500,0.249976,0,0);}
.m14_c00224{transform:matrix(0.151204,0.001361,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151204,0.001361,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151204,0.001361,-0.002250,0.249990,0,0);}
.m37_c00224{transform:matrix(0.151411,0.002423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151411,0.002423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151411,0.002423,-0.003999,0.249968,0,0);}
.m4a_c00224{transform:matrix(0.151930,0.002127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151930,0.002127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151930,0.002127,-0.003500,0.249976,0,0);}
.m2e_c00224{transform:matrix(0.152022,0.001976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.152022,0.001976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.152022,0.001976,-0.003250,0.249979,0,0);}
.m32_c00224{transform:matrix(0.152685,0.002443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152685,0.002443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152685,0.002443,-0.003999,0.249968,0,0);}
.m8_c00224{transform:matrix(0.154252,0.001543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154252,0.001543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154252,0.001543,-0.002500,0.249988,0,0);}
.mc_c00224{transform:matrix(0.154662,0.001547,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154662,0.001547,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154662,0.001547,-0.002500,0.249988,0,0);}
.m67_c00224{transform:matrix(0.154985,0.002170,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154985,0.002170,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154985,0.002170,-0.003500,0.249976,0,0);}
.m1d_c00224{transform:matrix(0.155412,0.002020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155412,0.002020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155412,0.002020,-0.003250,0.249979,0,0);}
.m81_c00224{transform:matrix(0.155503,0.002333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155503,0.002333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155503,0.002333,-0.003750,0.249972,0,0);}
.m5b_c00224{transform:matrix(0.156015,0.002184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156015,0.002184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156015,0.002184,-0.003500,0.249976,0,0);}
.m53_c00224{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.mb0_c00224{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);}
.m75_c00224{transform:matrix(0.160604,0.002248,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160604,0.002248,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160604,0.002248,-0.003500,0.249976,0,0);}
.m62_c00224{transform:matrix(0.164859,0.002308,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164859,0.002308,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164859,0.002308,-0.003500,0.249976,0,0);}
.ma_c00224{transform:matrix(0.165332,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165332,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165332,0.001653,-0.002500,0.249988,0,0);}
.m1e_c00224{transform:matrix(0.165456,0.002151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165456,0.002151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165456,0.002151,-0.003250,0.249979,0,0);}
.mec_c00224{transform:matrix(0.166748,0.004169,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166748,0.004169,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166748,0.004169,-0.006248,0.249922,0,0);}
.m93_c00224{transform:matrix(0.167281,0.002509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167281,0.002509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167281,0.002509,-0.003750,0.249972,0,0);}
.m6d_c00224{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);}
.m40_c00224{transform:matrix(0.168218,0.002691,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168218,0.002691,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168218,0.002691,-0.003999,0.249968,0,0);}
.m2d_c00224{transform:matrix(0.169311,0.002201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169311,0.002201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169311,0.002201,-0.003250,0.249979,0,0);}
.m34_c00224{transform:matrix(0.169493,0.002712,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169493,0.002712,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169493,0.002712,-0.003999,0.249968,0,0);}
.m3a_c00224{transform:matrix(0.170098,0.002722,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170098,0.002722,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170098,0.002722,-0.003999,0.249968,0,0);}
.mba_c00224{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);}
.m68_c00224{transform:matrix(0.173308,0.002426,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173308,0.002426,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173308,0.002426,-0.003500,0.249976,0,0);}
.m2_c00224{transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173691,0.001737,-0.002500,0.249988,0,0);}
.meb_c00224{transform:matrix(0.173706,0.004343,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173706,0.004343,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173706,0.004343,-0.006248,0.249922,0,0);}
.mf2_c00224{transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173911,0.004348,-0.006248,0.249922,0,0);}
.maf_c00224{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);}
.ma5_c00224{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);}
.m5e_c00224{transform:matrix(0.174443,0.002442,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174443,0.002442,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174443,0.002442,-0.003500,0.249976,0,0);}
.mef_c00224{transform:matrix(0.174535,0.004363,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174535,0.004363,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174535,0.004363,-0.006248,0.249922,0,0);}
.m4d_c00224{transform:matrix(0.174583,0.002444,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174583,0.002444,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174583,0.002444,-0.003500,0.249976,0,0);}
.m3_c00224{transform:matrix(0.175066,0.001751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175066,0.001751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175066,0.001751,-0.002500,0.249988,0,0);}
.m79_c00224{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);}
.mdc_c00224{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);}
.m13_c00224{transform:matrix(0.177518,0.001598,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177518,0.001598,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177518,0.001598,-0.002250,0.249990,0,0);}
.m15_c00224{transform:matrix(0.177718,0.001599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177718,0.001599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177718,0.001599,-0.002250,0.249990,0,0);}
.m6a_c00224{transform:matrix(0.177728,0.002488,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177728,0.002488,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177728,0.002488,-0.003500,0.249976,0,0);}
.m1a_c00224{transform:matrix(0.179545,0.002334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179545,0.002334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179545,0.002334,-0.003250,0.249979,0,0);}
.mb_c00224{transform:matrix(0.179556,0.001796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179556,0.001796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179556,0.001796,-0.002500,0.249988,0,0);}
.m49_c00224{transform:matrix(0.179592,0.002514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179592,0.002514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179592,0.002514,-0.003500,0.249976,0,0);}
.m69_c00224{transform:matrix(0.181142,0.002536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181142,0.002536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181142,0.002536,-0.003500,0.249976,0,0);}
.m5a_c00224{transform:matrix(0.182027,0.002548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182027,0.002548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182027,0.002548,-0.003500,0.249976,0,0);}
.m54_c00224{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);}
.m70_c00224{transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);}
.mda_c00224{transform:matrix(0.183472,0.002936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183472,0.002936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183472,0.002936,-0.003999,0.249968,0,0);}
.m18_c00224{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);}
.m9a_c00224{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);}
.mf3_c00224{transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);}
.m71_c00224{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);}
.m1f_c00224{transform:matrix(0.185094,0.002406,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185094,0.002406,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185094,0.002406,-0.003250,0.249979,0,0);}
.m92_c00224{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);}
.m80_c00224{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);}
.m3f_c00224{transform:matrix(0.185501,0.002968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185501,0.002968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185501,0.002968,-0.003999,0.249968,0,0);}
.m25_c00224{transform:matrix(0.186512,0.002238,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186512,0.002238,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186512,0.002238,-0.003000,0.249982,0,0);}
.m99_c00224{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);}
.m6c_c00224{transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);}
.m9_c00224{transform:matrix(0.187651,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187651,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187651,0.001877,-0.002500,0.249988,0,0);}
.m23_c00224{transform:matrix(0.188606,0.002263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188606,0.002263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188606,0.002263,-0.003000,0.249982,0,0);}
.mc4_c00224{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);}
.m22_c00224{transform:matrix(0.188931,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188931,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188931,0.002267,-0.003000,0.249982,0,0);}
.mfa_c00224{transform:matrix(0.189679,0.004173,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189679,0.004173,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189679,0.004173,-0.005499,0.249940,0,0);}
.m6e_c00224{transform:matrix(0.189741,0.002656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189741,0.002656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189741,0.002656,-0.003500,0.249976,0,0);}
.m76_c00224{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);}
.m95_c00224{transform:matrix(0.190789,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190789,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190789,0.002862,-0.003750,0.249972,0,0);}
.m6b_c00224{transform:matrix(0.190901,0.002673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190901,0.002673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190901,0.002673,-0.003500,0.249976,0,0);}
.m2f_c00224{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);}
.mc7_c00224{transform:matrix(0.191960,0.003071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191960,0.003071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191960,0.003071,-0.003999,0.249968,0,0);}
.m7f_c00224{transform:matrix(0.192758,0.002891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192758,0.002891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192758,0.002891,-0.003750,0.249972,0,0);}
.ma4_c00224{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);}
.m17_c00224{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);}
.med_c00224{transform:matrix(0.194409,0.004860,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194409,0.004860,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194409,0.004860,-0.006248,0.249922,0,0);}
.md9_c00224{transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);}
.m5_c00224{transform:matrix(0.195005,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195005,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195005,0.001950,-0.002500,0.249988,0,0);}
.m7b_c00224{transform:matrix(0.195071,0.002731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195071,0.002731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195071,0.002731,-0.003500,0.249976,0,0);}
.m29_c00224{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);}
.m60_c00224{transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);}
.m1b_c00224{transform:matrix(0.196378,0.002553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196378,0.002553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196378,0.002553,-0.003250,0.249979,0,0);}
.m61_c00224{transform:matrix(0.196621,0.002753,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196621,0.002753,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196621,0.002753,-0.003500,0.249976,0,0);}
.m36_c00224{transform:matrix(0.196675,0.003147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196675,0.003147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196675,0.003147,-0.003999,0.249968,0,0);}
.mc3_c00224{transform:matrix(0.196715,0.003147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196715,0.003147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196715,0.003147,-0.003999,0.249968,0,0);}
.mb1_c00224{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);}
.md_c00224{transform:matrix(0.197160,0.001972,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197160,0.001972,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197160,0.001972,-0.002500,0.249988,0,0);}
.m16_c00224{transform:matrix(0.197217,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197217,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197217,0.001775,-0.002250,0.249990,0,0);}
.m3d_c00224{transform:matrix(0.198150,0.003170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198150,0.003170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198150,0.003170,-0.003999,0.249968,0,0);}
.m35_c00224{transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200134,0.003202,-0.003999,0.249968,0,0);}
.mb2_c00224{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);}
.m6f_c00224{transform:matrix(0.200855,0.002812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200855,0.002812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200855,0.002812,-0.003500,0.249976,0,0);}
.me8_c00224{transform:matrix(0.200934,0.003215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200934,0.003215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200934,0.003215,-0.003999,0.249968,0,0);}
.m31_c00224{transform:matrix(0.200984,0.003216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200984,0.003216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200984,0.003216,-0.003999,0.249968,0,0);}
.ma1_c00224{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);}
.m19_c00224{transform:matrix(0.201193,0.002616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201193,0.002616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201193,0.002616,-0.003250,0.249979,0,0);}
.m105_c00224{transform:matrix(0.201260,0.004025,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201260,0.004025,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201260,0.004025,-0.004999,0.249950,0,0);}
.m20_c00224{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);}
.me6_c00224{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);}
.m2c_c00224{transform:matrix(0.202363,0.002631,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202363,0.002631,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202363,0.002631,-0.003250,0.249979,0,0);}
.me3_c00224{transform:matrix(0.202474,0.003240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202474,0.003240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202474,0.003240,-0.003999,0.249968,0,0);}
.me4_c00224{transform:matrix(0.202809,0.003245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202809,0.003245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202809,0.003245,-0.003999,0.249968,0,0);}
.m3e_c00224{transform:matrix(0.203434,0.003255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203434,0.003255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203434,0.003255,-0.003999,0.249968,0,0);}
.mb7_c00224{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);}
.mf4_c00224{transform:matrix(0.204966,0.005124,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204966,0.005124,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204966,0.005124,-0.006248,0.249922,0,0);}
.me1_c00224{transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);}
.m77_c00224{transform:matrix(0.205160,0.002872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205160,0.002872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205160,0.002872,-0.003500,0.249976,0,0);}
.me0_c00224{transform:matrix(0.207098,0.003314,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207098,0.003314,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207098,0.003314,-0.003999,0.249968,0,0);}
.m3c_c00224{transform:matrix(0.207563,0.003321,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207563,0.003321,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207563,0.003321,-0.003999,0.249968,0,0);}
.mc5_c00224{transform:matrix(0.207913,0.003327,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207913,0.003327,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207913,0.003327,-0.003999,0.249968,0,0);}
.m38_c00224{transform:matrix(0.208268,0.003332,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208268,0.003332,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208268,0.003332,-0.003999,0.249968,0,0);}
.m2a_c00224{transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208287,0.002708,-0.003250,0.249979,0,0);}
.m21_c00224{transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);}
.mdd_c00224{transform:matrix(0.208628,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208628,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208628,0.003338,-0.003999,0.249968,0,0);}
.me5_c00224{transform:matrix(0.208653,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208653,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208653,0.003338,-0.003999,0.249968,0,0);}
.m52_c00224{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);}
.mc1_c00224{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);}
.m5f_c00224{transform:matrix(0.208830,0.002924,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208830,0.002924,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208830,0.002924,-0.003500,0.249976,0,0);}
.m11_c00224{transform:matrix(0.208847,0.001880,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208847,0.001880,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208847,0.001880,-0.002250,0.249990,0,0);}
.m57_c00224{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);}
.md6_c00224{transform:matrix(0.209268,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209268,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209268,0.003348,-0.003999,0.249968,0,0);}
.md1_c00224{transform:matrix(0.210443,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210443,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210443,0.003367,-0.003999,0.249968,0,0);}
.mf1_c00224{transform:matrix(0.211014,0.005275,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211014,0.005275,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211014,0.005275,-0.006248,0.249922,0,0);}
.mc0_c00224{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);}
.m12_c00224{transform:matrix(0.211516,0.001904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211516,0.001904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211516,0.001904,-0.002250,0.249990,0,0);}
.mce_c00224{transform:matrix(0.211588,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211588,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211588,0.003385,-0.003999,0.249968,0,0);}
.mc6_c00224{transform:matrix(0.212853,0.003406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212853,0.003406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212853,0.003406,-0.003999,0.249968,0,0);}
.ma8_c00224{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);}
.m83_c00224{transform:matrix(0.213321,0.003200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213321,0.003200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213321,0.003200,-0.003750,0.249972,0,0);}
.mcb_c00224{transform:matrix(0.213548,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213548,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213548,0.003417,-0.003999,0.249968,0,0);}
.m33_c00224{transform:matrix(0.213813,0.003421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213813,0.003421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213813,0.003421,-0.003999,0.249968,0,0);}
.mae_c00224{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);}
.mea_c00224{transform:matrix(0.214468,0.003431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214468,0.003431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214468,0.003431,-0.003999,0.249968,0,0);}
.m63_c00224{transform:matrix(0.215514,0.003017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215514,0.003017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215514,0.003017,-0.003500,0.249976,0,0);}
.mb4_c00224{transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{transform:matrix(0.217239,0.003041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217239,0.003041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217239,0.003041,-0.003500,0.249976,0,0);}
.m110_c00224{transform:matrix(0.217385,0.003913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217385,0.003913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217385,0.003913,-0.004499,0.249960,0,0);}
.mbd_c00224{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);}
.m5c_c00224{transform:matrix(0.218254,0.003056,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218254,0.003056,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218254,0.003056,-0.003500,0.249976,0,0);}
.mb6_c00224{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);}
.mdb_c00224{transform:matrix(0.219737,0.003516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219737,0.003516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219737,0.003516,-0.003999,0.249968,0,0);}
.m101_c00224{transform:matrix(0.220151,0.004403,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220151,0.004403,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220151,0.004403,-0.004999,0.249950,0,0);}
.mf5_c00224{transform:matrix(0.220156,0.005504,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220156,0.005504,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220156,0.005504,-0.006248,0.249922,0,0);}
.mcc_c00224{transform:matrix(0.220392,0.003526,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220392,0.003526,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220392,0.003526,-0.003999,0.249968,0,0);}
.md4_c00224{transform:matrix(0.220932,0.003535,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220932,0.003535,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220932,0.003535,-0.003999,0.249968,0,0);}
.m56_c00224{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);}
.md2_c00224{transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);}
.m100_c00224{transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);}
.m109_c00224{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);}
.m72_c00224{transform:matrix(0.223323,0.003127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223323,0.003127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223323,0.003127,-0.003500,0.249976,0,0);}
.ma3_c00224{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);}
.mcd_c00224{transform:matrix(0.224376,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224376,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224376,0.003590,-0.003999,0.249968,0,0);}
.m24_c00224{transform:matrix(0.225429,0.002705,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225429,0.002705,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225429,0.002705,-0.003000,0.249982,0,0);}
.mf7_c00224{transform:matrix(0.226034,0.005651,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226034,0.005651,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226034,0.005651,-0.006248,0.249922,0,0);}
.m27_c00224{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);}
.mfd_c00224{transform:matrix(0.227955,0.005015,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227955,0.005015,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227955,0.005015,-0.005499,0.249940,0,0);}
.m2b_c00224{transform:matrix(0.229321,0.002981,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229321,0.002981,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229321,0.002981,-0.003250,0.249979,0,0);}
.m104_c00224{transform:matrix(0.229834,0.004597,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229834,0.004597,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229834,0.004597,-0.004999,0.249950,0,0);}
.m3b_c00224{transform:matrix(0.229966,0.003679,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229966,0.003679,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229966,0.003679,-0.003999,0.249968,0,0);}
.m107_c00224{transform:matrix(0.230204,0.004604,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230204,0.004604,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230204,0.004604,-0.004999,0.249950,0,0);}
.m51_c00224{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);}
.md0_c00224{transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);}
.mfe_c00224{transform:matrix(0.232469,0.005114,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232469,0.005114,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232469,0.005114,-0.005499,0.249940,0,0);}
.mbb_c00224{transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);}
.m10b_c00224{transform:matrix(0.234083,0.004682,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234083,0.004682,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234083,0.004682,-0.004999,0.249950,0,0);}
.md7_c00224{transform:matrix(0.234415,0.003751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234415,0.003751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234415,0.003751,-0.003999,0.249968,0,0);}
.m7_c00224{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);}
.mdf_c00224{transform:matrix(0.235475,0.003768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235475,0.003768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235475,0.003768,-0.003999,0.249968,0,0);}
.m42_c00224{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);}
.m103_c00224{transform:matrix(0.237712,0.004754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237712,0.004754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237712,0.004754,-0.004999,0.249950,0,0);}
.md3_c00224{transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);}
.m5d_c00224{transform:matrix(0.239572,0.003354,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239572,0.003354,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239572,0.003354,-0.003500,0.249976,0,0);}
.m8c_c00224{transform:matrix(0.239998,0.003600,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239998,0.003600,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239998,0.003600,-0.003750,0.249972,0,0);}
.mfb_c00224{transform:matrix(0.240187,0.005284,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240187,0.005284,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240187,0.005284,-0.005499,0.249940,0,0);}
.mca_c00224{transform:matrix(0.241814,0.003869,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241814,0.003869,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241814,0.003869,-0.003999,0.249968,0,0);}
.m30_c00224{transform:matrix(0.241835,0.003144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241835,0.003144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241835,0.003144,-0.003250,0.249979,0,0);}
.me2_c00224{transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);}
.mf9_c00224{transform:matrix(0.242141,0.005327,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242141,0.005327,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242141,0.005327,-0.005499,0.249940,0,0);}
.m108_c00224{transform:matrix(0.242217,0.004844,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242217,0.004844,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242217,0.004844,-0.004999,0.249950,0,0);}
.m94_c00224{transform:matrix(0.243868,0.003658,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243868,0.003658,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243868,0.003658,-0.003750,0.249972,0,0);}
.m74_c00224{transform:matrix(0.244286,0.003420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244286,0.003420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244286,0.003420,-0.003500,0.249976,0,0);}
.m41_c00224{transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);}
.mcf_c00224{transform:matrix(0.245974,0.003936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245974,0.003936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245974,0.003936,-0.003999,0.249968,0,0);}
.m82_c00224{transform:matrix(0.246627,0.003699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246627,0.003699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246627,0.003699,-0.003750,0.249972,0,0);}
.m10e_c00224{transform:matrix(0.247565,0.004456,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247565,0.004456,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247565,0.004456,-0.004499,0.249960,0,0);}
.mc2_c00224{transform:matrix(0.247863,0.003966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247863,0.003966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247863,0.003966,-0.003999,0.249968,0,0);}
.m10_c00224{transform:matrix(0.248310,0.002235,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248310,0.002235,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248310,0.002235,-0.002250,0.249990,0,0);}
.m1c_c00224{transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);}
.ma2_c00224{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);}
.m8a_c00224{transform:matrix(0.251212,0.003768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251212,0.003768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251212,0.003768,-0.003750,0.249972,0,0);}
.m88_c00224{transform:matrix(0.251987,0.003780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251987,0.003780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251987,0.003780,-0.003750,0.249972,0,0);}
.m26_c00224{transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);}
.m28_c00224{transform:matrix(0.257268,0.003344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257268,0.003344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257268,0.003344,-0.003250,0.249979,0,0);}
.m102_c00224{transform:matrix(0.257474,0.005149,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257474,0.005149,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257474,0.005149,-0.004999,0.249950,0,0);}
.m4c_c00224{transform:matrix(0.258300,0.003616,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258300,0.003616,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258300,0.003616,-0.003500,0.249976,0,0);}
.m10f_c00224{transform:matrix(0.259778,0.004676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259778,0.004676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259778,0.004676,-0.004499,0.249960,0,0);}
.m112_c00224{transform:matrix(0.259963,0.004679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259963,0.004679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259963,0.004679,-0.004499,0.249960,0,0);}
.mde_c00224{transform:matrix(0.263101,0.004210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263101,0.004210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263101,0.004210,-0.003999,0.249968,0,0);}
.m86_c00224{transform:matrix(0.263875,0.003958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263875,0.003958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263875,0.003958,-0.003750,0.249972,0,0);}
.md8_c00224{transform:matrix(0.267246,0.004276,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267246,0.004276,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267246,0.004276,-0.003999,0.249968,0,0);}
.m10a_c00224{transform:matrix(0.269941,0.005399,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269941,0.005399,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269941,0.005399,-0.004999,0.249950,0,0);}
.m10d_c00224{transform:matrix(0.270071,0.004861,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270071,0.004861,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270071,0.004861,-0.004499,0.249960,0,0);}
.m8e_c00224{transform:matrix(0.271719,0.004076,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271719,0.004076,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271719,0.004076,-0.003750,0.249972,0,0);}
.me9_c00224{transform:matrix(0.271765,0.004348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271765,0.004348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271765,0.004348,-0.003999,0.249968,0,0);}
.maa_c00224{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00224{transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);}
.m4b_c00224{transform:matrix(0.272398,0.003814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272398,0.003814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272398,0.003814,-0.003500,0.249976,0,0);}
.m111_c00224{transform:matrix(0.274401,0.004939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274401,0.004939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274401,0.004939,-0.004499,0.249960,0,0);}
.me7_c00224{transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);}
.m106_c00224{transform:matrix(0.276065,0.005521,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276065,0.005521,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276065,0.005521,-0.004999,0.249950,0,0);}
.mf6_c00224{transform:matrix(0.278423,0.006961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278423,0.006961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278423,0.006961,-0.006248,0.249922,0,0);}
.m91_c00224{transform:matrix(0.278849,0.004183,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278849,0.004183,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278849,0.004183,-0.003750,0.249972,0,0);}
.m1_c00224{transform:matrix(0.279581,0.002796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279581,0.002796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279581,0.002796,-0.002500,0.249988,0,0);}
.m8b_c00224{transform:matrix(0.281943,0.004229,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281943,0.004229,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281943,0.004229,-0.003750,0.249972,0,0);}
.mb9_c00224{transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);}
.m64_c00224{transform:matrix(0.290072,0.004061,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290072,0.004061,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290072,0.004061,-0.003500,0.249976,0,0);}
.m7d_c00224{transform:matrix(0.290567,0.004359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290567,0.004359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290567,0.004359,-0.003750,0.249972,0,0);}
.m55_c00224{transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);}
.m39_c00224{transform:matrix(0.296942,0.004751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296942,0.004751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296942,0.004751,-0.003999,0.249968,0,0);}
.mfc_c00224{transform:matrix(0.297588,0.006547,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297588,0.006547,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297588,0.006547,-0.005499,0.249940,0,0);}
.mc8_c00224{transform:matrix(0.297622,0.004762,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297622,0.004762,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297622,0.004762,-0.003999,0.249968,0,0);}
.m87_c00224{transform:matrix(0.297752,0.004466,-0.003750,0.249972,0,0);-ms-transform:matrix(0.297752,0.004466,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.297752,0.004466,-0.003750,0.249972,0,0);}
.m46_c00224{transform:matrix(0.301485,0.004221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301485,0.004221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301485,0.004221,-0.003500,0.249976,0,0);}
.m0_c00224{transform:matrix(0.301775,0.003018,-0.002500,0.249988,0,0);-ms-transform:matrix(0.301775,0.003018,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.301775,0.003018,-0.002500,0.249988,0,0);}
.me_c00224{transform:matrix(0.304965,0.003050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304965,0.003050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304965,0.003050,-0.002500,0.249988,0,0);}
.m48_c00224{transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.308970,0.004326,-0.003500,0.249976,0,0);}
.m9d_c00224{transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310905,0.000000,0.000000,0.250000,0,0);}
.m45_c00224{transform:matrix(0.319304,0.004470,-0.003500,0.249976,0,0);-ms-transform:matrix(0.319304,0.004470,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.319304,0.004470,-0.003500,0.249976,0,0);}
.mff_c00224{transform:matrix(0.323025,0.006461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.323025,0.006461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.323025,0.006461,-0.004999,0.249950,0,0);}
.m10c_c00224{transform:matrix(0.334293,0.006686,-0.004999,0.249950,0,0);-ms-transform:matrix(0.334293,0.006686,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.334293,0.006686,-0.004999,0.249950,0,0);}
.m73_c00224{transform:matrix(0.335057,0.004691,-0.003500,0.249976,0,0);-ms-transform:matrix(0.335057,0.004691,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.335057,0.004691,-0.003500,0.249976,0,0);}
.mf_c00224{transform:matrix(0.336091,0.003025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.336091,0.003025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.336091,0.003025,-0.002250,0.249990,0,0);}
.m85_c00224{transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);}
.mbe_c00224{transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349255,0.000000,0.000000,0.250000,0,0);}
.m58_c00224{transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00224{transform:matrix(0.357593,0.008940,-0.006248,0.249922,0,0);-ms-transform:matrix(0.357593,0.008940,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.357593,0.008940,-0.006248,0.249922,0,0);}
.m65_c00224{transform:matrix(0.360090,0.005041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.360090,0.005041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.360090,0.005041,-0.003500,0.249976,0,0);}
.m47_c00224{transform:matrix(0.369199,0.005169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.369199,0.005169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.369199,0.005169,-0.003500,0.249976,0,0);}
.m90_c00224{transform:matrix(0.376628,0.005649,-0.003750,0.249972,0,0);-ms-transform:matrix(0.376628,0.005649,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.376628,0.005649,-0.003750,0.249972,0,0);}
.m8d_c00224{transform:matrix(0.378757,0.005681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.378757,0.005681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.378757,0.005681,-0.003750,0.249972,0,0);}
.mac_c00224{transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383875,0.000000,0.000000,0.250000,0,0);}
.m66_c00224{transform:matrix(0.386787,0.005415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.386787,0.005415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.386787,0.005415,-0.003500,0.249976,0,0);}
.ma6_c00224{transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);}
.m113_c00224{transform:matrix(0.399975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399975,0.000000,0.000000,0.250000,0,0);}
.m84_c00224{transform:matrix(0.409874,0.006148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.409874,0.006148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.409874,0.006148,-0.003750,0.249972,0,0);}
.m4_c00224{transform:matrix(0.423219,0.004232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.423219,0.004232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.423219,0.004232,-0.002500,0.249988,0,0);}
.m98_c00224{transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);}
.m114_c00224{transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);}
.m9c_c00224{transform:matrix(0.437205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437205,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.447135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447135,0.000000,0.000000,0.250000,0,0);}
.m96_c00224{transform:matrix(0.450324,0.006755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.450324,0.006755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.450324,0.006755,-0.003750,0.249972,0,0);}
.ma7_c00224{transform:matrix(0.454820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454820,0.000000,0.000000,0.250000,0,0);}
.m8f_c00224{transform:matrix(0.470862,0.007063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.470862,0.007063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.470862,0.007063,-0.003750,0.249972,0,0);}
.ma9_c00224{transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);}
.m7e_c00224{transform:matrix(0.490840,0.007363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.490840,0.007363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.490840,0.007363,-0.003750,0.249972,0,0);}
.ma0_c00224{transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);}
.m9b_c00224{transform:matrix(0.510210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510210,0.000000,0.000000,0.250000,0,0);}
.mab_c00224{transform:matrix(0.525465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525465,0.000000,0.000000,0.250000,0,0);}
.m89_c00224{transform:matrix(0.559937,0.008399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.559937,0.008399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.559937,0.008399,-0.003750,0.249972,0,0);}
.mb5_c00224{transform:matrix(0.580445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580445,0.000000,0.000000,0.250000,0,0);}
.mbf_c00224{transform:matrix(0.623880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623880,0.000000,0.000000,0.250000,0,0);}
.m9f_c00224{transform:matrix(0.632975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632975,0.000000,0.000000,0.250000,0,0);}
.md5_c00224{transform:matrix(0.652756,0.010444,-0.003999,0.249968,0,0);-ms-transform:matrix(0.652756,0.010444,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.652756,0.010444,-0.003999,0.249968,0,0);}
.mbc_c00224{transform:matrix(0.656845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656845,0.000000,0.000000,0.250000,0,0);}
.m59_c00224{transform:matrix(0.663080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663080,0.000000,0.000000,0.250000,0,0);}
.m97_c00224{transform:matrix(0.677905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677905,0.000000,0.000000,0.250000,0,0);}
.m7c_c00224{transform:matrix(0.686948,0.010304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.686948,0.010304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.686948,0.010304,-0.003750,0.249972,0,0);}
.m44_c00224{transform:matrix(0.744852,0.010428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.744852,0.010428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.744852,0.010428,-0.003500,0.249976,0,0);}
.mc9_c00224{transform:matrix(1.223718,0.019579,-0.003999,0.249968,0,0);-ms-transform:matrix(1.223718,0.019579,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.223718,0.019579,-0.003999,0.249968,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;}
.fs11_c00224{font-size:22.050000px;}
.fs17_c00224{font-size:28.350000px;}
.fs21_c00224{font-size:45.159029px;}
.fs1a_c00224{font-size:46.205913px;}
.fs16_c00224{font-size:47.250000px;}
.fs20_c00224{font-size:47.259449px;}
.fsf_c00224{font-size:48.305433px;}
.fs1e_c00224{font-size:48.315091px;}
.fs13_c00224{font-size:49.350000px;}
.fsd_c00224{font-size:49.355552px;}
.fs19_c00224{font-size:49.356316px;}
.fs1f_c00224{font-size:49.361941px;}
.fs14_c00224{font-size:50.400000px;}
.fs22_c00224{font-size:50.408164px;}
.fs1b_c00224{font-size:51.456585px;}
.fs12_c00224{font-size:52.500000px;}
.fsc_c00224{font-size:52.505906px;}
.fs1c_c00224{font-size:53.556854px;}
.fs1d_c00224{font-size:54.617060px;}
.fse_c00224{font-size:57.756497px;}
.fs15_c00224{font-size:58.800000px;}
.fs23_c00224{font-size:60.900000px;}
.fs10_c00224{font-size:60.906851px;}
.fsa_c00224{font-size:63.000000px;}
.fs8_c00224{font-size:64.056277px;}
.fs9_c00224{font-size:67.200000px;}
.fs4_c00224{font-size:68.254914px;}
.fs7_c00224{font-size:68.256688px;}
.fs6_c00224{font-size:68.258735px;}
.fs2_c00224{font-size:69.302807px;}
.fs1_c00224{font-size:69.303465px;}
.fsb_c00224{font-size:69.306791px;}
.fs18_c00224{font-size:70.350000px;}
.fs0_c00224{font-size:70.353517px;}
.fs3_c00224{font-size:70.355944px;}
.fs5_c00224{font-size:71.406033px;}
.y0_c00224{bottom:0.000000px;}
.y10b_c00224{bottom:138.111000px;}
.y10a_c00224{bottom:163.132686px;}
.y109_c00224{bottom:163.423179px;}
.y108_c00224{bottom:164.322387px;}
.y107_c00224{bottom:164.765025px;}
.y106_c00224{bottom:165.211011px;}
.y105_c00224{bottom:166.072500px;}
.ye2_c00224{bottom:166.931160px;}
.ye1_c00224{bottom:167.367324px;}
.ye0_c00224{bottom:167.809932px;}
.ydf_c00224{bottom:168.080304px;}
.yde_c00224{bottom:168.722976px;}
.ydd_c00224{bottom:169.285500px;}
.ydc_c00224{bottom:170.134680px;}
.ydb_c00224{bottom:170.598744px;}
.yda_c00224{bottom:171.172380px;}
.y104_c00224{bottom:180.478560px;}
.y103_c00224{bottom:180.760590px;}
.y102_c00224{bottom:182.241750px;}
.y101_c00224{bottom:182.625960px;}
.y100_c00224{bottom:183.861510px;}
.yff_c00224{bottom:184.235430px;}
.yfe_c00224{bottom:184.409910px;}
.yd9_c00224{bottom:186.771096px;}
.yd8_c00224{bottom:187.024512px;}
.yd7_c00224{bottom:187.586520px;}
.yd6_c00224{bottom:187.799928px;}
.yd5_c00224{bottom:188.597232px;}
.yd4_c00224{bottom:188.816748px;}
.yd3_c00224{bottom:189.262500px;}
.yfd_c00224{bottom:197.608500px;}
.yfc_c00224{bottom:199.036410px;}
.yfb_c00224{bottom:199.512480px;}
.yfa_c00224{bottom:200.495610px;}
.yf9_c00224{bottom:200.868030px;}
.yf8_c00224{bottom:201.748590px;}
.yf7_c00224{bottom:202.236000px;}
.yd2_c00224{bottom:203.517648px;}
.yd1_c00224{bottom:204.576132px;}
.yd0_c00224{bottom:204.851808px;}
.ycf_c00224{bottom:206.149788px;}
.yce_c00224{bottom:206.905704px;}
.ycd_c00224{bottom:207.364836px;}
.yf6_c00224{bottom:215.776422px;}
.yf5_c00224{bottom:217.125000px;}
.yf4_c00224{bottom:217.600200px;}
.yf3_c00224{bottom:218.484270px;}
.yf2_c00224{bottom:218.895351px;}
.yf1_c00224{bottom:220.398732px;}
.yf0_c00224{bottom:220.590000px;}
.ycc_c00224{bottom:221.344536px;}
.ycb_c00224{bottom:221.600220px;}
.yca_c00224{bottom:222.207960px;}
.yc9_c00224{bottom:223.073892px;}
.yc8_c00224{bottom:223.895448px;}
.yc7_c00224{bottom:224.114808px;}
.yef_c00224{bottom:233.259900px;}
.yee_c00224{bottom:233.782688px;}
.yed_c00224{bottom:234.620962px;}
.yec_c00224{bottom:235.235400px;}
.yeb_c00224{bottom:236.416462px;}
.yea_c00224{bottom:236.933700px;}
.ye9_c00224{bottom:238.140413px;}
.yc6_c00224{bottom:238.846704px;}
.yc5_c00224{bottom:239.682324px;}
.yc4_c00224{bottom:240.398508px;}
.yc3_c00224{bottom:240.686976px;}
.yc2_c00224{bottom:241.141008px;}
.yc1_c00224{bottom:242.068560px;}
.ye8_c00224{bottom:251.084700px;}
.ye7_c00224{bottom:252.671963px;}
.ye6_c00224{bottom:253.428225px;}
.ye5_c00224{bottom:254.548875px;}
.ye4_c00224{bottom:255.479400px;}
.ye3_c00224{bottom:256.234500px;}
.yc0_c00224{bottom:256.611300px;}
.ybf_c00224{bottom:257.018148px;}
.ybe_c00224{bottom:257.212596px;}
.ybd_c00224{bottom:258.603804px;}
.ybc_c00224{bottom:258.867348px;}
.ybb_c00224{bottom:259.545564px;}
.yba_c00224{bottom:260.011500px;}
.yb9_c00224{bottom:268.380000px;}
.yb8_c00224{bottom:280.260000px;}
.yb7_c00224{bottom:308.044500px;}
.yb6_c00224{bottom:310.156500px;}
.yb5_c00224{bottom:310.975500px;}
.yb4_c00224{bottom:312.850500px;}
.yb3_c00224{bottom:315.294000px;}
.yb2_c00224{bottom:315.658500px;}
.yb1_c00224{bottom:316.078500px;}
.yb0_c00224{bottom:317.068500px;}
.yaf_c00224{bottom:317.581500px;}
.yae_c00224{bottom:318.067500px;}
.yad_c00224{bottom:327.433500px;}
.yac_c00224{bottom:329.082000px;}
.yab_c00224{bottom:330.082500px;}
.yaa_c00224{bottom:333.028500px;}
.ya9_c00224{bottom:333.343500px;}
.ya8_c00224{bottom:333.615000px;}
.ya7_c00224{bottom:334.053000px;}
.ya6_c00224{bottom:334.611000px;}
.ya5_c00224{bottom:334.801500px;}
.ya4_c00224{bottom:344.557500px;}
.ya3_c00224{bottom:350.262000px;}
.ya2_c00224{bottom:351.063000px;}
.ya1_c00224{bottom:352.896000px;}
.ya0_c00224{bottom:362.743500px;}
.y9f_c00224{bottom:363.246000px;}
.y9e_c00224{bottom:364.882500px;}
.y9d_c00224{bottom:368.409000px;}
.y9c_c00224{bottom:368.739000px;}
.y9b_c00224{bottom:369.006000px;}
.y9a_c00224{bottom:369.813000px;}
.y99_c00224{bottom:370.444500px;}
.y98_c00224{bottom:380.319000px;}
.y97_c00224{bottom:382.486500px;}
.y96_c00224{bottom:383.356500px;}
.y95_c00224{bottom:385.101000px;}
.y94_c00224{bottom:385.788000px;}
.y93_c00224{bottom:387.082500px;}
.y92_c00224{bottom:388.263000px;}
.y8f_c00224{bottom:402.692557px;}
.y91_c00224{bottom:403.522500px;}
.y90_c00224{bottom:404.190000px;}
.y8e_c00224{bottom:404.531617px;}
.y8d_c00224{bottom:404.900062px;}
.y8c_c00224{bottom:405.157582px;}
.y8b_c00224{bottom:405.921180px;}
.y8a_c00224{bottom:406.612410px;}
.y89_c00224{bottom:421.083945px;}
.y88_c00224{bottom:422.105865px;}
.y87_c00224{bottom:422.847120px;}
.y86_c00224{bottom:423.987877px;}
.y84_c00224{bottom:439.843155px;}
.y82_c00224{bottom:439.843365px;}
.y85_c00224{bottom:439.843800px;}
.y83_c00224{bottom:439.843882px;}
.y81_c00224{bottom:439.843942px;}
.y80_c00224{bottom:439.844497px;}
.y7d_c00224{bottom:456.610867px;}
.y7e_c00224{bottom:456.611430px;}
.y7f_c00224{bottom:456.611647px;}
.y7c_c00224{bottom:475.706332px;}
.y7b_c00224{bottom:475.707037px;}
.y7a_c00224{bottom:475.707615px;}
.y79_c00224{bottom:475.707720px;}
.y78_c00224{bottom:475.707930px;}
.y77_c00224{bottom:492.290235px;}
.y76_c00224{bottom:492.867742px;}
.y75_c00224{bottom:493.834500px;}
.y74_c00224{bottom:524.228547px;}
.y73_c00224{bottom:524.989191px;}
.y72_c00224{bottom:525.773274px;}
.y71_c00224{bottom:526.235073px;}
.y70_c00224{bottom:526.900626px;}
.y6f_c00224{bottom:528.207285px;}
.y6e_c00224{bottom:528.663888px;}
.y6d_c00224{bottom:529.233888px;}
.y6c_c00224{bottom:544.819968px;}
.y6b_c00224{bottom:545.937567px;}
.y6a_c00224{bottom:546.448698px;}
.y69_c00224{bottom:547.444959px;}
.y68_c00224{bottom:547.928640px;}
.y67_c00224{bottom:548.919474px;}
.y66_c00224{bottom:549.586500px;}
.y65_c00224{bottom:549.974709px;}
.y64_c00224{bottom:550.607493px;}
.y63_c00224{bottom:551.143944px;}
.y62_c00224{bottom:551.919837px;}
.y61_c00224{bottom:552.422634px;}
.y60_c00224{bottom:567.640089px;}
.y5f_c00224{bottom:568.099695px;}
.y5e_c00224{bottom:568.473621px;}
.y5d_c00224{bottom:568.989423px;}
.y5c_c00224{bottom:569.385483px;}
.y5b_c00224{bottom:569.699244px;}
.y5a_c00224{bottom:570.134952px;}
.y59_c00224{bottom:570.671817px;}
.y58_c00224{bottom:571.261602px;}
.y57_c00224{bottom:571.763859px;}
.y56_c00224{bottom:572.554383px;}
.y55_c00224{bottom:573.121593px;}
.y54_c00224{bottom:573.480756px;}
.y53_c00224{bottom:573.753000px;}
.y52_c00224{bottom:591.705000px;}
.y51_c00224{bottom:594.841500px;}
.y50_c00224{bottom:615.154878px;}
.y4f_c00224{bottom:616.599909px;}
.y4e_c00224{bottom:617.060061px;}
.y4d_c00224{bottom:617.828745px;}
.y4c_c00224{bottom:618.300888px;}
.y4b_c00224{bottom:635.405937px;}
.y4a_c00224{bottom:635.851515px;}
.y49_c00224{bottom:636.029637px;}
.y48_c00224{bottom:636.831018px;}
.y47_c00224{bottom:637.341528px;}
.y46_c00224{bottom:638.180604px;}
.y45_c00224{bottom:639.201477px;}
.y44_c00224{bottom:639.723285px;}
.y43_c00224{bottom:640.173000px;}
.y42_c00224{bottom:658.607280px;}
.y41_c00224{bottom:659.220360px;}
.y40_c00224{bottom:660.241332px;}
.y3f_c00224{bottom:660.487656px;}
.y3e_c00224{bottom:661.142184px;}
.y3d_c00224{bottom:661.974300px;}
.y3c_c00224{bottom:662.336352px;}
.y3b_c00224{bottom:663.115848px;}
.y3a_c00224{bottom:663.659616px;}
.y39_c00224{bottom:681.429624px;}
.y38_c00224{bottom:681.855048px;}
.y37_c00224{bottom:682.612056px;}
.y36_c00224{bottom:683.385312px;}
.y35_c00224{bottom:684.288984px;}
.y34_c00224{bottom:685.217328px;}
.y33_c00224{bottom:685.649616px;}
.y32_c00224{bottom:686.073000px;}
.y31_c00224{bottom:704.410446px;}
.y30_c00224{bottom:705.044839px;}
.y2f_c00224{bottom:705.301011px;}
.y2e_c00224{bottom:705.689899px;}
.y2d_c00224{bottom:706.210159px;}
.y2c_c00224{bottom:706.635162px;}
.y2b_c00224{bottom:707.175975px;}
.y2a_c00224{bottom:707.888407px;}
.y29_c00224{bottom:708.481500px;}
.y28_c00224{bottom:728.716164px;}
.y27_c00224{bottom:729.238380px;}
.y26_c00224{bottom:729.413016px;}
.y25_c00224{bottom:729.960576px;}
.y24_c00224{bottom:730.589208px;}
.y23_c00224{bottom:731.087466px;}
.y22_c00224{bottom:731.431500px;}
.y21_c00224{bottom:748.945802px;}
.y20_c00224{bottom:749.264997px;}
.y1f_c00224{bottom:749.749377px;}
.y1e_c00224{bottom:750.092830px;}
.y1d_c00224{bottom:750.538464px;}
.y1c_c00224{bottom:751.339543px;}
.y1b_c00224{bottom:751.655560px;}
.y1a_c00224{bottom:752.297793px;}
.y19_c00224{bottom:752.690971px;}
.y18_c00224{bottom:753.031500px;}
.y17_c00224{bottom:773.298550px;}
.y16_c00224{bottom:773.623954px;}
.y15_c00224{bottom:773.874541px;}
.y14_c00224{bottom:774.273115px;}
.y13_c00224{bottom:774.561961px;}
.y12_c00224{bottom:775.415310px;}
.y11_c00224{bottom:775.607388px;}
.y10_c00224{bottom:775.981500px;}
.yf_c00224{bottom:797.026725px;}
.ye_c00224{bottom:797.461290px;}
.yd_c00224{bottom:797.649765px;}
.yc_c00224{bottom:798.144360px;}
.yb_c00224{bottom:798.373845px;}
.ya_c00224{bottom:798.619620px;}
.y9_c00224{bottom:799.073250px;}
.y8_c00224{bottom:799.470045px;}
.y7_c00224{bottom:817.844145px;}
.y6_c00224{bottom:818.445675px;}
.y5_c00224{bottom:819.012915px;}
.y4_c00224{bottom:819.170505px;}
.y3_c00224{bottom:820.156170px;}
.y2_c00224{bottom:820.387275px;}
.y1_c00224{bottom:820.803000px;}
.h13_c00224{height:22.050000px;}
.h19_c00224{height:28.350000px;}
.h23_c00224{height:45.159029px;}
.h1c_c00224{height:46.205913px;}
.h18_c00224{height:47.250000px;}
.h22_c00224{height:47.259449px;}
.h11_c00224{height:48.305433px;}
.h20_c00224{height:48.315091px;}
.h15_c00224{height:49.350000px;}
.hf_c00224{height:49.355552px;}
.h1b_c00224{height:49.356316px;}
.h21_c00224{height:49.361941px;}
.h16_c00224{height:50.400000px;}
.h24_c00224{height:50.408164px;}
.h1d_c00224{height:51.456585px;}
.h14_c00224{height:52.500000px;}
.he_c00224{height:52.505906px;}
.h1e_c00224{height:53.556854px;}
.h1f_c00224{height:54.617060px;}
.h10_c00224{height:57.756497px;}
.h17_c00224{height:58.800000px;}
.h25_c00224{height:60.900000px;}
.h12_c00224{height:60.906851px;}
.hc_c00224{height:63.000000px;}
.ha_c00224{height:64.056277px;}
.hb_c00224{height:67.200000px;}
.h6_c00224{height:68.254914px;}
.h9_c00224{height:68.256688px;}
.h8_c00224{height:68.258735px;}
.h4_c00224{height:69.302807px;}
.h3_c00224{height:69.303465px;}
.hd_c00224{height:69.306791px;}
.h1a_c00224{height:70.350000px;}
.h2_c00224{height:70.353517px;}
.h5_c00224{height:70.355944px;}
.h7_c00224{height:71.406033px;}
.h1_c00224{height:1005.000000px;}
.h0_c00224{height:1005.150000px;}
.w1_c00224{width:713.250000px;}
.w0_c00224{width:713.550000px;}
.x0_c00224{left:0.000000px;}
.x7b_c00224{left:72.801000px;}
.x86_c00224{left:74.669784px;}
.x7e_c00224{left:75.979800px;}
.x81_c00224{left:83.491536px;}
.x82_c00224{left:98.139276px;}
.x88_c00224{left:100.018728px;}
.x7c_c00224{left:101.922000px;}
.x2c_c00224{left:105.942636px;}
.x4e_c00224{left:111.747195px;}
.xf_c00224{left:114.358500px;}
.x1_c00224{left:115.843500px;}
.x87_c00224{left:122.156796px;}
.x7f_c00224{left:130.575936px;}
.x42_c00224{left:134.559000px;}
.x85_c00224{left:136.625268px;}
.x3a_c00224{left:140.203371px;}
.x15_c00224{left:141.582000px;}
.x1e_c00224{left:144.357000px;}
.x33_c00224{left:146.151000px;}
.x83_c00224{left:152.956164px;}
.x8_c00224{left:156.205260px;}
.x2_c00224{left:157.416000px;}
.x22_c00224{left:161.014500px;}
.x4f_c00224{left:163.107390px;}
.x29_c00224{left:168.571500px;}
.x6e_c00224{left:170.370000px;}
.x16_c00224{left:171.826500px;}
.x80_c00224{left:174.262740px;}
.x10_c00224{left:177.268500px;}
.x75_c00224{left:178.524000px;}
.x3_c00224{left:180.526500px;}
.x54_c00224{left:181.976895px;}
.x34_c00224{left:183.423000px;}
.x6d_c00224{left:184.477500px;}
.x1f_c00224{left:185.878500px;}
.x89_c00224{left:189.309576px;}
.x3b_c00224{left:195.109371px;}
.x76_c00224{left:197.952000px;}
.x2d_c00224{left:200.462160px;}
.x9_c00224{left:201.568260px;}
.x5a_c00224{left:203.576415px;}
.x52_c00224{left:207.616500px;}
.x4a_c00224{left:209.558034px;}
.x84_c00224{left:210.734100px;}
.x6f_c00224{left:211.992000px;}
.x23_c00224{left:215.817000px;}
.x77_c00224{left:218.479500px;}
.x8a_c00224{left:219.911628px;}
.x17_c00224{left:221.229000px;}
.x5b_c00224{left:223.019280px;}
.xa_c00224{left:226.145760px;}
.x3c_c00224{left:227.977371px;}
.x55_c00224{left:229.501583px;}
.x8b_c00224{left:232.777596px;}
.x3d_c00224{left:234.090000px;}
.x70_c00224{left:236.352000px;}
.x20_c00224{left:238.264500px;}
.x4b_c00224{left:242.861703px;}
.x63_c00224{left:244.396500px;}
.x18_c00224{left:245.538000px;}
.x7d_c00224{left:247.732500px;}
.xb_c00224{left:249.094260px;}
.x56_c00224{left:251.913623px;}
.x8c_c00224{left:253.876416px;}
.x35_c00224{left:256.342500px;}
.x24_c00224{left:257.418000px;}
.x5d_c00224{left:258.955477px;}
.x3e_c00224{left:260.820000px;}
.x4c_c00224{left:263.303775px;}
.x57_c00224{left:265.955272px;}
.x71_c00224{left:268.948500px;}
.x11_c00224{left:272.085000px;}
.x8d_c00224{left:274.666260px;}
.x69_c00224{left:275.773500px;}
.x4_c00224{left:279.093000px;}
.x21_c00224{left:283.894500px;}
.x2e_c00224{left:285.787896px;}
.x58_c00224{left:288.907425px;}
.x25_c00224{left:290.110500px;}
.x43_c00224{left:293.070000px;}
.x5_c00224{left:294.852000px;}
.xc_c00224{left:298.553760px;}
.x5c_c00224{left:299.707538px;}
.x12_c00224{left:304.179000px;}
.x19_c00224{left:307.159500px;}
.x64_c00224{left:309.144000px;}
.x53_c00224{left:310.567500px;}
.x36_c00224{left:316.276500px;}
.xd_c00224{left:317.401260px;}
.x50_c00224{left:324.064887px;}
.x99_c00224{left:325.416000px;}
.x8e_c00224{left:326.545500px;}
.x26_c00224{left:330.130500px;}
.x2a_c00224{left:331.401000px;}
.x2f_c00224{left:332.509884px;}
.x44_c00224{left:335.197500px;}
.x5e_c00224{left:339.092062px;}
.x1a_c00224{left:341.439000px;}
.x65_c00224{left:343.495500px;}
.x59_c00224{left:345.612825px;}
.xa0_c00224{left:346.785180px;}
.x13_c00224{left:348.465000px;}
.x30_c00224{left:350.061936px;}
.x6_c00224{left:351.576000px;}
.x37_c00224{left:352.741500px;}
.x8f_c00224{left:356.749500px;}
.xe_c00224{left:360.857760px;}
.x51_c00224{left:362.107695px;}
.x1b_c00224{left:367.858500px;}
.x3f_c00224{left:369.630000px;}
.xa3_c00224{left:372.490500px;}
.x45_c00224{left:373.545000px;}
.x14_c00224{left:376.308000px;}
.x2b_c00224{left:378.714000px;}
.x27_c00224{left:379.750500px;}
.x9c_c00224{left:385.114500px;}
.x5f_c00224{left:386.519423px;}
.x40_c00224{left:389.340000px;}
.x90_c00224{left:393.970500px;}
.x94_c00224{left:397.496175px;}
.xa5_c00224{left:402.030000px;}
.x9d_c00224{left:403.735500px;}
.x1c_c00224{left:405.118500px;}
.x38_c00224{left:409.983000px;}
.x7_c00224{left:411.729000px;}
.xa1_c00224{left:415.390410px;}
.xa4_c00224{left:421.858500px;}
.x31_c00224{left:422.968764px;}
.x46_c00224{left:427.078500px;}
.x28_c00224{left:428.550000px;}
.x1d_c00224{left:429.672000px;}
.x66_c00224{left:430.714500px;}
.x72_c00224{left:432.637500px;}
.xa2_c00224{left:436.776780px;}
.x91_c00224{left:438.796500px;}
.x95_c00224{left:446.719913px;}
.x9a_c00224{left:452.622000px;}
.x39_c00224{left:454.533000px;}
.x78_c00224{left:462.211500px;}
.x32_c00224{left:466.725156px;}
.x92_c00224{left:469.047000px;}
.x96_c00224{left:472.318050px;}
.x67_c00224{left:474.237000px;}
.x9e_c00224{left:476.695500px;}
.x41_c00224{left:478.980000px;}
.x61_c00224{left:485.460000px;}
.x73_c00224{left:488.185500px;}
.x6a_c00224{left:490.084500px;}
.x47_c00224{left:492.211500px;}
.x79_c00224{left:494.989500px;}
.x97_c00224{left:507.229913px;}
.x4d_c00224{left:514.074198px;}
.x48_c00224{left:518.920500px;}
.x98_c00224{left:529.041975px;}
.x93_c00224{left:532.537500px;}
.x9b_c00224{left:535.521000px;}
.x9f_c00224{left:548.091000px;}
.x49_c00224{left:551.749500px;}
.x74_c00224{left:579.762000px;}
.x6b_c00224{left:580.992000px;}
.x68_c00224{left:582.609000px;}
.x7a_c00224{left:596.970000px;}
.x62_c00224{left:600.480000px;}
.x60_c00224{left:604.260000px;}
.x6c_c00224{left:608.875500px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fs11_c00224{font-size:19.600000pt;}
.fs17_c00224{font-size:25.200000pt;}
.fs21_c00224{font-size:40.141359pt;}
.fs1a_c00224{font-size:41.071923pt;}
.fs16_c00224{font-size:42.000000pt;}
.fs20_c00224{font-size:42.008399pt;}
.fsf_c00224{font-size:42.938163pt;}
.fs1e_c00224{font-size:42.946748pt;}
.fs13_c00224{font-size:43.866667pt;}
.fsd_c00224{font-size:43.871601pt;}
.fs19_c00224{font-size:43.872281pt;}
.fs1f_c00224{font-size:43.877281pt;}
.fs14_c00224{font-size:44.800000pt;}
.fs22_c00224{font-size:44.807257pt;}
.fs1b_c00224{font-size:45.739187pt;}
.fs12_c00224{font-size:46.666667pt;}
.fsc_c00224{font-size:46.671916pt;}
.fs1c_c00224{font-size:47.606092pt;}
.fs1d_c00224{font-size:48.548498pt;}
.fse_c00224{font-size:51.339108pt;}
.fs15_c00224{font-size:52.266667pt;}
.fs23_c00224{font-size:54.133333pt;}
.fs10_c00224{font-size:54.139423pt;}
.fsa_c00224{font-size:56.000000pt;}
.fs8_c00224{font-size:56.938913pt;}
.fs9_c00224{font-size:59.733333pt;}
.fs4_c00224{font-size:60.671035pt;}
.fs7_c00224{font-size:60.672612pt;}
.fs6_c00224{font-size:60.674432pt;}
.fs2_c00224{font-size:61.602495pt;}
.fs1_c00224{font-size:61.603080pt;}
.fsb_c00224{font-size:61.606037pt;}
.fs18_c00224{font-size:62.533333pt;}
.fs0_c00224{font-size:62.536460pt;}
.fs3_c00224{font-size:62.538617pt;}
.fs5_c00224{font-size:63.472029pt;}
.y0_c00224{bottom:0.000000pt;}
.y10b_c00224{bottom:122.765333pt;}
.y10a_c00224{bottom:145.006832pt;}
.y109_c00224{bottom:145.265048pt;}
.y108_c00224{bottom:146.064344pt;}
.y107_c00224{bottom:146.457800pt;}
.y106_c00224{bottom:146.854232pt;}
.y105_c00224{bottom:147.620000pt;}
.ye2_c00224{bottom:148.383253pt;}
.ye1_c00224{bottom:148.770955pt;}
.ye0_c00224{bottom:149.164384pt;}
.ydf_c00224{bottom:149.404715pt;}
.yde_c00224{bottom:149.975979pt;}
.ydd_c00224{bottom:150.476000pt;}
.ydc_c00224{bottom:151.230827pt;}
.ydb_c00224{bottom:151.643328pt;}
.yda_c00224{bottom:152.153227pt;}
.y104_c00224{bottom:160.425387pt;}
.y103_c00224{bottom:160.676080pt;}
.y102_c00224{bottom:161.992667pt;}
.y101_c00224{bottom:162.334187pt;}
.y100_c00224{bottom:163.432453pt;}
.yff_c00224{bottom:163.764827pt;}
.yfe_c00224{bottom:163.919920pt;}
.yd9_c00224{bottom:166.018752pt;}
.yd8_c00224{bottom:166.244011pt;}
.yd7_c00224{bottom:166.743573pt;}
.yd6_c00224{bottom:166.933269pt;}
.yd5_c00224{bottom:167.641984pt;}
.yd4_c00224{bottom:167.837109pt;}
.yd3_c00224{bottom:168.233333pt;}
.yfd_c00224{bottom:175.652000pt;}
.yfc_c00224{bottom:176.921253pt;}
.yfb_c00224{bottom:177.344427pt;}
.yfa_c00224{bottom:178.218320pt;}
.yf9_c00224{bottom:178.549360pt;}
.yf8_c00224{bottom:179.332080pt;}
.yf7_c00224{bottom:179.765333pt;}
.yd2_c00224{bottom:180.904576pt;}
.yd1_c00224{bottom:181.845451pt;}
.yd0_c00224{bottom:182.090496pt;}
.ycf_c00224{bottom:183.244256pt;}
.yce_c00224{bottom:183.916181pt;}
.ycd_c00224{bottom:184.324299pt;}
.yf6_c00224{bottom:191.801264pt;}
.yf5_c00224{bottom:193.000000pt;}
.yf4_c00224{bottom:193.422400pt;}
.yf3_c00224{bottom:194.208240pt;}
.yf2_c00224{bottom:194.573645pt;}
.yf1_c00224{bottom:195.909984pt;}
.yf0_c00224{bottom:196.080000pt;}
.ycc_c00224{bottom:196.750699pt;}
.ycb_c00224{bottom:196.977973pt;}
.yca_c00224{bottom:197.518187pt;}
.yc9_c00224{bottom:198.287904pt;}
.yc8_c00224{bottom:199.018176pt;}
.yc7_c00224{bottom:199.213163pt;}
.yef_c00224{bottom:207.342133pt;}
.yee_c00224{bottom:207.806833pt;}
.yed_c00224{bottom:208.551967pt;}
.yec_c00224{bottom:209.098133pt;}
.yeb_c00224{bottom:210.147967pt;}
.yea_c00224{bottom:210.607733pt;}
.ye9_c00224{bottom:211.680367pt;}
.yc6_c00224{bottom:212.308181pt;}
.yc5_c00224{bottom:213.050955pt;}
.yc4_c00224{bottom:213.687563pt;}
.yc3_c00224{bottom:213.943979pt;}
.yc2_c00224{bottom:214.347563pt;}
.yc1_c00224{bottom:215.172053pt;}
.ye8_c00224{bottom:223.186400pt;}
.ye7_c00224{bottom:224.597300pt;}
.ye6_c00224{bottom:225.269533pt;}
.ye5_c00224{bottom:226.265667pt;}
.ye4_c00224{bottom:227.092800pt;}
.ye3_c00224{bottom:227.764000pt;}
.yc0_c00224{bottom:228.098933pt;}
.ybf_c00224{bottom:228.460576pt;}
.ybe_c00224{bottom:228.633419pt;}
.ybd_c00224{bottom:229.870048pt;}
.ybc_c00224{bottom:230.104309pt;}
.ybb_c00224{bottom:230.707168pt;}
.yba_c00224{bottom:231.121333pt;}
.yb9_c00224{bottom:238.560000pt;}
.yb8_c00224{bottom:249.120000pt;}
.yb7_c00224{bottom:273.817333pt;}
.yb6_c00224{bottom:275.694667pt;}
.yb5_c00224{bottom:276.422667pt;}
.yb4_c00224{bottom:278.089333pt;}
.yb3_c00224{bottom:280.261333pt;}
.yb2_c00224{bottom:280.585333pt;}
.yb1_c00224{bottom:280.958667pt;}
.yb0_c00224{bottom:281.838667pt;}
.yaf_c00224{bottom:282.294667pt;}
.yae_c00224{bottom:282.726667pt;}
.yad_c00224{bottom:291.052000pt;}
.yac_c00224{bottom:292.517333pt;}
.yab_c00224{bottom:293.406667pt;}
.yaa_c00224{bottom:296.025333pt;}
.ya9_c00224{bottom:296.305333pt;}
.ya8_c00224{bottom:296.546667pt;}
.ya7_c00224{bottom:296.936000pt;}
.ya6_c00224{bottom:297.432000pt;}
.ya5_c00224{bottom:297.601333pt;}
.ya4_c00224{bottom:306.273333pt;}
.ya3_c00224{bottom:311.344000pt;}
.ya2_c00224{bottom:312.056000pt;}
.ya1_c00224{bottom:313.685333pt;}
.ya0_c00224{bottom:322.438667pt;}
.y9f_c00224{bottom:322.885333pt;}
.y9e_c00224{bottom:324.340000pt;}
.y9d_c00224{bottom:327.474667pt;}
.y9c_c00224{bottom:327.768000pt;}
.y9b_c00224{bottom:328.005333pt;}
.y9a_c00224{bottom:328.722667pt;}
.y99_c00224{bottom:329.284000pt;}
.y98_c00224{bottom:338.061333pt;}
.y97_c00224{bottom:339.988000pt;}
.y96_c00224{bottom:340.761333pt;}
.y95_c00224{bottom:342.312000pt;}
.y94_c00224{bottom:342.922667pt;}
.y93_c00224{bottom:344.073333pt;}
.y92_c00224{bottom:345.122667pt;}
.y8f_c00224{bottom:357.948940pt;}
.y91_c00224{bottom:358.686667pt;}
.y90_c00224{bottom:359.280000pt;}
.y8e_c00224{bottom:359.583660pt;}
.y8d_c00224{bottom:359.911167pt;}
.y8c_c00224{bottom:360.140073pt;}
.y8b_c00224{bottom:360.818827pt;}
.y8a_c00224{bottom:361.433253pt;}
.y89_c00224{bottom:374.296840pt;}
.y88_c00224{bottom:375.205213pt;}
.y87_c00224{bottom:375.864107pt;}
.y86_c00224{bottom:376.878113pt;}
.y84_c00224{bottom:390.971693pt;}
.y82_c00224{bottom:390.971880pt;}
.y85_c00224{bottom:390.972267pt;}
.y83_c00224{bottom:390.972340pt;}
.y81_c00224{bottom:390.972393pt;}
.y80_c00224{bottom:390.972887pt;}
.y7d_c00224{bottom:405.876327pt;}
.y7e_c00224{bottom:405.876827pt;}
.y7f_c00224{bottom:405.877020pt;}
.y7c_c00224{bottom:422.850073pt;}
.y7b_c00224{bottom:422.850700pt;}
.y7a_c00224{bottom:422.851213pt;}
.y79_c00224{bottom:422.851307pt;}
.y78_c00224{bottom:422.851493pt;}
.y77_c00224{bottom:437.591320pt;}
.y76_c00224{bottom:438.104660pt;}
.y75_c00224{bottom:438.964000pt;}
.y74_c00224{bottom:465.980931pt;}
.y73_c00224{bottom:466.657059pt;}
.y72_c00224{bottom:467.354021pt;}
.y71_c00224{bottom:467.764509pt;}
.y70_c00224{bottom:468.356112pt;}
.y6f_c00224{bottom:469.517587pt;}
.y6e_c00224{bottom:469.923456pt;}
.y6d_c00224{bottom:470.430123pt;}
.y6c_c00224{bottom:484.284416pt;}
.y6b_c00224{bottom:485.277837pt;}
.y6a_c00224{bottom:485.732176pt;}
.y69_c00224{bottom:486.617741pt;}
.y68_c00224{bottom:487.047680pt;}
.y67_c00224{bottom:487.928421pt;}
.y66_c00224{bottom:488.521333pt;}
.y65_c00224{bottom:488.866408pt;}
.y64_c00224{bottom:489.428883pt;}
.y63_c00224{bottom:489.905728pt;}
.y62_c00224{bottom:490.595411pt;}
.y61_c00224{bottom:491.042341pt;}
.y60_c00224{bottom:504.568968pt;}
.y5f_c00224{bottom:504.977507pt;}
.y5e_c00224{bottom:505.309885pt;}
.y5d_c00224{bottom:505.768376pt;}
.y5c_c00224{bottom:506.120429pt;}
.y5b_c00224{bottom:506.399328pt;}
.y5a_c00224{bottom:506.786624pt;}
.y59_c00224{bottom:507.263837pt;}
.y58_c00224{bottom:507.788091pt;}
.y57_c00224{bottom:508.234541pt;}
.y56_c00224{bottom:508.937229pt;}
.y55_c00224{bottom:509.441416pt;}
.y54_c00224{bottom:509.760672pt;}
.y53_c00224{bottom:510.002667pt;}
.y52_c00224{bottom:525.960000pt;}
.y51_c00224{bottom:528.748000pt;}
.y50_c00224{bottom:546.804336pt;}
.y4f_c00224{bottom:548.088808pt;}
.y4e_c00224{bottom:548.497832pt;}
.y4d_c00224{bottom:549.181107pt;}
.y4c_c00224{bottom:549.600789pt;}
.y4b_c00224{bottom:564.805277pt;}
.y4a_c00224{bottom:565.201347pt;}
.y49_c00224{bottom:565.359677pt;}
.y48_c00224{bottom:566.072016pt;}
.y47_c00224{bottom:566.525803pt;}
.y46_c00224{bottom:567.271648pt;}
.y45_c00224{bottom:568.179091pt;}
.y44_c00224{bottom:568.642920pt;}
.y43_c00224{bottom:569.042667pt;}
.y42_c00224{bottom:585.428693pt;}
.y41_c00224{bottom:585.973653pt;}
.y40_c00224{bottom:586.881184pt;}
.y3f_c00224{bottom:587.100139pt;}
.y3e_c00224{bottom:587.681941pt;}
.y3d_c00224{bottom:588.421600pt;}
.y3c_c00224{bottom:588.743424pt;}
.y3b_c00224{bottom:589.436309pt;}
.y3a_c00224{bottom:589.919659pt;}
.y39_c00224{bottom:605.715221pt;}
.y38_c00224{bottom:606.093376pt;}
.y37_c00224{bottom:606.766272pt;}
.y36_c00224{bottom:607.453611pt;}
.y35_c00224{bottom:608.256875pt;}
.y34_c00224{bottom:609.082069pt;}
.y33_c00224{bottom:609.466325pt;}
.y32_c00224{bottom:609.842667pt;}
.y31_c00224{bottom:626.142619pt;}
.y30_c00224{bottom:626.706524pt;}
.y2f_c00224{bottom:626.934232pt;}
.y2e_c00224{bottom:627.279911pt;}
.y2d_c00224{bottom:627.742364pt;}
.y2c_c00224{bottom:628.120144pt;}
.y2b_c00224{bottom:628.600867pt;}
.y2a_c00224{bottom:629.234140pt;}
.y29_c00224{bottom:629.761333pt;}
.y28_c00224{bottom:647.747701pt;}
.y27_c00224{bottom:648.211893pt;}
.y26_c00224{bottom:648.367125pt;}
.y25_c00224{bottom:648.853845pt;}
.y24_c00224{bottom:649.412629pt;}
.y23_c00224{bottom:649.855525pt;}
.y22_c00224{bottom:650.161333pt;}
.y21_c00224{bottom:665.729601pt;}
.y20_c00224{bottom:666.013331pt;}
.y1f_c00224{bottom:666.443891pt;}
.y1e_c00224{bottom:666.749183pt;}
.y1d_c00224{bottom:667.145301pt;}
.y1c_c00224{bottom:667.857372pt;}
.y1b_c00224{bottom:668.138276pt;}
.y1a_c00224{bottom:668.709149pt;}
.y19_c00224{bottom:669.058641pt;}
.y18_c00224{bottom:669.361333pt;}
.y17_c00224{bottom:687.376489pt;}
.y16_c00224{bottom:687.665737pt;}
.y15_c00224{bottom:687.888481pt;}
.y14_c00224{bottom:688.242769pt;}
.y13_c00224{bottom:688.499521pt;}
.y12_c00224{bottom:689.258053pt;}
.y11_c00224{bottom:689.428789pt;}
.y10_c00224{bottom:689.761333pt;}
.yf_c00224{bottom:708.468200pt;}
.ye_c00224{bottom:708.854480pt;}
.yd_c00224{bottom:709.022013pt;}
.yc_c00224{bottom:709.461653pt;}
.yb_c00224{bottom:709.665640pt;}
.ya_c00224{bottom:709.884107pt;}
.y9_c00224{bottom:710.287333pt;}
.y8_c00224{bottom:710.640040pt;}
.y7_c00224{bottom:726.972573pt;}
.y6_c00224{bottom:727.507267pt;}
.y5_c00224{bottom:728.011480pt;}
.y4_c00224{bottom:728.151560pt;}
.y3_c00224{bottom:729.027707pt;}
.y2_c00224{bottom:729.233133pt;}
.y1_c00224{bottom:729.602667pt;}
.h13_c00224{height:19.600000pt;}
.h19_c00224{height:25.200000pt;}
.h23_c00224{height:40.141359pt;}
.h1c_c00224{height:41.071923pt;}
.h18_c00224{height:42.000000pt;}
.h22_c00224{height:42.008399pt;}
.h11_c00224{height:42.938163pt;}
.h20_c00224{height:42.946748pt;}
.h15_c00224{height:43.866667pt;}
.hf_c00224{height:43.871601pt;}
.h1b_c00224{height:43.872281pt;}
.h21_c00224{height:43.877281pt;}
.h16_c00224{height:44.800000pt;}
.h24_c00224{height:44.807257pt;}
.h1d_c00224{height:45.739187pt;}
.h14_c00224{height:46.666667pt;}
.he_c00224{height:46.671916pt;}
.h1e_c00224{height:47.606092pt;}
.h1f_c00224{height:48.548498pt;}
.h10_c00224{height:51.339108pt;}
.h17_c00224{height:52.266667pt;}
.h25_c00224{height:54.133333pt;}
.h12_c00224{height:54.139423pt;}
.hc_c00224{height:56.000000pt;}
.ha_c00224{height:56.938913pt;}
.hb_c00224{height:59.733333pt;}
.h6_c00224{height:60.671035pt;}
.h9_c00224{height:60.672612pt;}
.h8_c00224{height:60.674432pt;}
.h4_c00224{height:61.602495pt;}
.h3_c00224{height:61.603080pt;}
.hd_c00224{height:61.606037pt;}
.h1a_c00224{height:62.533333pt;}
.h2_c00224{height:62.536460pt;}
.h5_c00224{height:62.538617pt;}
.h7_c00224{height:63.472029pt;}
.h1_c00224{height:893.333333pt;}
.h0_c00224{height:893.466667pt;}
.w1_c00224{width:634.000000pt;}
.w0_c00224{width:634.266667pt;}
.x0_c00224{left:0.000000pt;}
.x7b_c00224{left:64.712000pt;}
.x86_c00224{left:66.373141pt;}
.x7e_c00224{left:67.537600pt;}
.x81_c00224{left:74.214699pt;}
.x82_c00224{left:87.234912pt;}
.x88_c00224{left:88.905536pt;}
.x7c_c00224{left:90.597333pt;}
.x2c_c00224{left:94.171232pt;}
.x4e_c00224{left:99.330840pt;}
.xf_c00224{left:101.652000pt;}
.x1_c00224{left:102.972000pt;}
.x87_c00224{left:108.583819pt;}
.x7f_c00224{left:116.067499pt;}
.x42_c00224{left:119.608000pt;}
.x85_c00224{left:121.444683pt;}
.x3a_c00224{left:124.625219pt;}
.x15_c00224{left:125.850667pt;}
.x1e_c00224{left:128.317333pt;}
.x33_c00224{left:129.912000pt;}
.x83_c00224{left:135.961035pt;}
.x8_c00224{left:138.849120pt;}
.x2_c00224{left:139.925333pt;}
.x22_c00224{left:143.124000pt;}
.x4f_c00224{left:144.984347pt;}
.x29_c00224{left:149.841333pt;}
.x6e_c00224{left:151.440000pt;}
.x16_c00224{left:152.734667pt;}
.x80_c00224{left:154.900213pt;}
.x10_c00224{left:157.572000pt;}
.x75_c00224{left:158.688000pt;}
.x3_c00224{left:160.468000pt;}
.x54_c00224{left:161.757240pt;}
.x34_c00224{left:163.042667pt;}
.x6d_c00224{left:163.980000pt;}
.x1f_c00224{left:165.225333pt;}
.x89_c00224{left:168.275179pt;}
.x3b_c00224{left:173.430552pt;}
.x76_c00224{left:175.957333pt;}
.x2d_c00224{left:178.188587pt;}
.x9_c00224{left:179.171787pt;}
.x5a_c00224{left:180.956813pt;}
.x52_c00224{left:184.548000pt;}
.x4a_c00224{left:186.273808pt;}
.x84_c00224{left:187.319200pt;}
.x6f_c00224{left:188.437333pt;}
.x23_c00224{left:191.837333pt;}
.x77_c00224{left:194.204000pt;}
.x8a_c00224{left:195.477003pt;}
.x17_c00224{left:196.648000pt;}
.x5b_c00224{left:198.239360pt;}
.xa_c00224{left:201.018453pt;}
.x3c_c00224{left:202.646552pt;}
.x55_c00224{left:204.001407pt;}
.x8b_c00224{left:206.913419pt;}
.x3d_c00224{left:208.080000pt;}
.x70_c00224{left:210.090667pt;}
.x20_c00224{left:211.790667pt;}
.x4b_c00224{left:215.877069pt;}
.x63_c00224{left:217.241333pt;}
.x18_c00224{left:218.256000pt;}
.x7d_c00224{left:220.206667pt;}
.xb_c00224{left:221.417120pt;}
.x56_c00224{left:223.923220pt;}
.x8c_c00224{left:225.667925pt;}
.x35_c00224{left:227.860000pt;}
.x24_c00224{left:228.816000pt;}
.x5d_c00224{left:230.182647pt;}
.x3e_c00224{left:231.840000pt;}
.x4c_c00224{left:234.047800pt;}
.x57_c00224{left:236.404687pt;}
.x71_c00224{left:239.065333pt;}
.x11_c00224{left:241.853333pt;}
.x8d_c00224{left:244.147787pt;}
.x69_c00224{left:245.132000pt;}
.x4_c00224{left:248.082667pt;}
.x21_c00224{left:252.350667pt;}
.x2e_c00224{left:254.033685pt;}
.x58_c00224{left:256.806600pt;}
.x25_c00224{left:257.876000pt;}
.x43_c00224{left:260.506667pt;}
.x5_c00224{left:262.090667pt;}
.xc_c00224{left:265.381120pt;}
.x5c_c00224{left:266.406700pt;}
.x12_c00224{left:270.381333pt;}
.x19_c00224{left:273.030667pt;}
.x64_c00224{left:274.794667pt;}
.x53_c00224{left:276.060000pt;}
.x36_c00224{left:281.134667pt;}
.xd_c00224{left:282.134453pt;}
.x50_c00224{left:288.057677pt;}
.x99_c00224{left:289.258667pt;}
.x8e_c00224{left:290.262667pt;}
.x26_c00224{left:293.449333pt;}
.x2a_c00224{left:294.578667pt;}
.x2f_c00224{left:295.564341pt;}
.x44_c00224{left:297.953333pt;}
.x5e_c00224{left:301.415167pt;}
.x1a_c00224{left:303.501333pt;}
.x65_c00224{left:305.329333pt;}
.x59_c00224{left:307.211400pt;}
.xa0_c00224{left:308.253493pt;}
.x13_c00224{left:309.746667pt;}
.x30_c00224{left:311.166165pt;}
.x6_c00224{left:312.512000pt;}
.x37_c00224{left:313.548000pt;}
.x8f_c00224{left:317.110667pt;}
.xe_c00224{left:320.762453pt;}
.x51_c00224{left:321.873507pt;}
.x1b_c00224{left:326.985333pt;}
.x3f_c00224{left:328.560000pt;}
.xa3_c00224{left:331.102667pt;}
.x45_c00224{left:332.040000pt;}
.x14_c00224{left:334.496000pt;}
.x2b_c00224{left:336.634667pt;}
.x27_c00224{left:337.556000pt;}
.x9c_c00224{left:342.324000pt;}
.x5f_c00224{left:343.572820pt;}
.x40_c00224{left:346.080000pt;}
.x90_c00224{left:350.196000pt;}
.x94_c00224{left:353.329933pt;}
.xa5_c00224{left:357.360000pt;}
.x9d_c00224{left:358.876000pt;}
.x1c_c00224{left:360.105333pt;}
.x38_c00224{left:364.429333pt;}
.x7_c00224{left:365.981333pt;}
.xa1_c00224{left:369.235920pt;}
.xa4_c00224{left:374.985333pt;}
.x31_c00224{left:375.972235pt;}
.x46_c00224{left:379.625333pt;}
.x28_c00224{left:380.933333pt;}
.x1d_c00224{left:381.930667pt;}
.x66_c00224{left:382.857333pt;}
.x72_c00224{left:384.566667pt;}
.xa2_c00224{left:388.246027pt;}
.x91_c00224{left:390.041333pt;}
.x95_c00224{left:397.084367pt;}
.x9a_c00224{left:402.330667pt;}
.x39_c00224{left:404.029333pt;}
.x78_c00224{left:410.854667pt;}
.x32_c00224{left:414.866805pt;}
.x92_c00224{left:416.930667pt;}
.x96_c00224{left:419.838267pt;}
.x67_c00224{left:421.544000pt;}
.x9e_c00224{left:423.729333pt;}
.x41_c00224{left:425.760000pt;}
.x61_c00224{left:431.520000pt;}
.x73_c00224{left:433.942667pt;}
.x6a_c00224{left:435.630667pt;}
.x47_c00224{left:437.521333pt;}
.x79_c00224{left:439.990667pt;}
.x97_c00224{left:450.871033pt;}
.x4d_c00224{left:456.954843pt;}
.x48_c00224{left:461.262667pt;}
.x98_c00224{left:470.259533pt;}
.x93_c00224{left:473.366667pt;}
.x9b_c00224{left:476.018667pt;}
.x9f_c00224{left:487.192000pt;}
.x49_c00224{left:490.444000pt;}
.x74_c00224{left:515.344000pt;}
.x6b_c00224{left:516.437333pt;}
.x68_c00224{left:517.874667pt;}
.x7a_c00224{left:530.640000pt;}
.x62_c00224{left:533.760000pt;}
.x60_c00224{left:537.120000pt;}
.x6c_c00224{left:541.222667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m32_c00225{transform:matrix(0.010189,-0.000112,0.002750,0.249985,0,0);-ms-transform:matrix(0.010189,-0.000112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.010189,-0.000112,0.002750,0.249985,0,0);}
.m108_c00225{transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);}
.mcf_c00225{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);}
.m7f_c00225{transform:matrix(0.040728,-0.000448,0.002750,0.249985,0,0);-ms-transform:matrix(0.040728,-0.000448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.040728,-0.000448,0.002750,0.249985,0,0);}
.mcd_c00225{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);}
.m51_c00225{transform:matrix(0.112443,-0.001237,0.002750,0.249985,0,0);-ms-transform:matrix(0.112443,-0.001237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.112443,-0.001237,0.002750,0.249985,0,0);}
.mdd_c00225{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.m111_c00225{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m110_c00225{transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.137942,-0.001517,0.002750,0.249985,0,0);-ms-transform:matrix(0.137942,-0.001517,0.002750,0.249985,0,0);-webkit-transform:matrix(0.137942,-0.001517,0.002750,0.249985,0,0);}
.ma3_c00225{transform:matrix(0.140931,-0.001550,0.002750,0.249985,0,0);-ms-transform:matrix(0.140931,-0.001550,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140931,-0.001550,0.002750,0.249985,0,0);}
.mc3_c00225{transform:matrix(0.144621,-0.001591,0.002750,0.249985,0,0);-ms-transform:matrix(0.144621,-0.001591,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144621,-0.001591,0.002750,0.249985,0,0);}
.m43_c00225{transform:matrix(0.146961,-0.001617,0.002750,0.249985,0,0);-ms-transform:matrix(0.146961,-0.001617,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146961,-0.001617,0.002750,0.249985,0,0);}
.m58_c00225{transform:matrix(0.147351,-0.001621,0.002750,0.249985,0,0);-ms-transform:matrix(0.147351,-0.001621,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147351,-0.001621,0.002750,0.249985,0,0);}
.m40_c00225{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);}
.mf_c00225{transform:matrix(0.150691,-0.001658,0.002750,0.249985,0,0);-ms-transform:matrix(0.150691,-0.001658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150691,-0.001658,0.002750,0.249985,0,0);}
.mfb_c00225{transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);}
.m9d_c00225{transform:matrix(0.151686,-0.001669,0.002750,0.249985,0,0);-ms-transform:matrix(0.151686,-0.001669,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151686,-0.001669,0.002750,0.249985,0,0);}
.mc2_c00225{transform:matrix(0.151976,-0.001672,0.002750,0.249985,0,0);-ms-transform:matrix(0.151976,-0.001672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151976,-0.001672,0.002750,0.249985,0,0);}
.m71_c00225{transform:matrix(0.152571,-0.001678,0.002750,0.249985,0,0);-ms-transform:matrix(0.152571,-0.001678,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152571,-0.001678,0.002750,0.249985,0,0);}
.mbf_c00225{transform:matrix(0.153431,-0.001688,0.002750,0.249985,0,0);-ms-transform:matrix(0.153431,-0.001688,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153431,-0.001688,0.002750,0.249985,0,0);}
.mc0_c00225{transform:matrix(0.153526,-0.001689,0.002750,0.249985,0,0);-ms-transform:matrix(0.153526,-0.001689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153526,-0.001689,0.002750,0.249985,0,0);}
.m9e_c00225{transform:matrix(0.154271,-0.001697,0.002750,0.249985,0,0);-ms-transform:matrix(0.154271,-0.001697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154271,-0.001697,0.002750,0.249985,0,0);}
.md5_c00225{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);}
.m5e_c00225{transform:matrix(0.155881,-0.001715,0.002750,0.249985,0,0);-ms-transform:matrix(0.155881,-0.001715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155881,-0.001715,0.002750,0.249985,0,0);}
.m16_c00225{transform:matrix(0.156536,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156536,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156536,-0.001722,0.002750,0.249985,0,0);}
.m5f_c00225{transform:matrix(0.156576,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156576,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156576,-0.001722,0.002750,0.249985,0,0);}
.m65_c00225{transform:matrix(0.157655,-0.001734,0.002750,0.249985,0,0);-ms-transform:matrix(0.157655,-0.001734,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157655,-0.001734,0.002750,0.249985,0,0);}
.mc_c00225{transform:matrix(0.157750,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157750,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157750,-0.001735,0.002750,0.249985,0,0);}
.m5b_c00225{transform:matrix(0.159135,-0.001750,0.002750,0.249985,0,0);-ms-transform:matrix(0.159135,-0.001750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159135,-0.001750,0.002750,0.249985,0,0);}
.m62_c00225{transform:matrix(0.161110,-0.001772,0.002750,0.249985,0,0);-ms-transform:matrix(0.161110,-0.001772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161110,-0.001772,0.002750,0.249985,0,0);}
.mbd_c00225{transform:matrix(0.161145,-0.001773,0.002750,0.249985,0,0);-ms-transform:matrix(0.161145,-0.001773,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161145,-0.001773,0.002750,0.249985,0,0);}
.md4_c00225{transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162105,0.000000,0.000000,0.250000,0,0);}
.mfe_c00225{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);}
.m60_c00225{transform:matrix(0.163030,-0.001793,0.002750,0.249985,0,0);-ms-transform:matrix(0.163030,-0.001793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163030,-0.001793,0.002750,0.249985,0,0);}
.mf7_c00225{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);}
.mf9_c00225{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);}
.m98_c00225{transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);-ms-transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);}
.mb3_c00225{transform:matrix(0.164210,-0.001806,0.002750,0.249985,0,0);-ms-transform:matrix(0.164210,-0.001806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164210,-0.001806,0.002750,0.249985,0,0);}
.mea_c00225{transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164545,0.000000,0.000000,0.250000,0,0);}
.m9f_c00225{transform:matrix(0.165400,-0.001819,0.002750,0.249985,0,0);-ms-transform:matrix(0.165400,-0.001819,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165400,-0.001819,0.002750,0.249985,0,0);}
.m6a_c00225{transform:matrix(0.165455,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165455,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165455,-0.001820,0.002750,0.249985,0,0);}
.me7_c00225{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);}
.m7e_c00225{transform:matrix(0.165815,-0.001824,0.002750,0.249985,0,0);-ms-transform:matrix(0.165815,-0.001824,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165815,-0.001824,0.002750,0.249985,0,0);}
.mfd_c00225{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);}
.mfc_c00225{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);}
.m99_c00225{transform:matrix(0.166170,-0.001828,0.002750,0.249985,0,0);-ms-transform:matrix(0.166170,-0.001828,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166170,-0.001828,0.002750,0.249985,0,0);}
.m112_c00225{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);}
.m41_c00225{transform:matrix(0.166465,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166465,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166465,-0.001831,0.002750,0.249985,0,0);}
.ma_c00225{transform:matrix(0.169130,-0.001860,0.002750,0.249985,0,0);-ms-transform:matrix(0.169130,-0.001860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169130,-0.001860,0.002750,0.249985,0,0);}
.maf_c00225{transform:matrix(0.170555,-0.001876,0.002750,0.249985,0,0);-ms-transform:matrix(0.170555,-0.001876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170555,-0.001876,0.002750,0.249985,0,0);}
.m114_c00225{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);}
.mb5_c00225{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);}
.ma8_c00225{transform:matrix(0.171615,-0.001888,0.002750,0.249985,0,0);-ms-transform:matrix(0.171615,-0.001888,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171615,-0.001888,0.002750,0.249985,0,0);}
.ma7_c00225{transform:matrix(0.171695,-0.001889,0.002750,0.249985,0,0);-ms-transform:matrix(0.171695,-0.001889,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171695,-0.001889,0.002750,0.249985,0,0);}
.mbe_c00225{transform:matrix(0.171735,-0.001889,0.002750,0.249985,0,0);-ms-transform:matrix(0.171735,-0.001889,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171735,-0.001889,0.002750,0.249985,0,0);}
.mdc_c00225{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);}
.ma0_c00225{transform:matrix(0.172065,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172065,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172065,-0.001893,0.002750,0.249985,0,0);}
.m37_c00225{transform:matrix(0.172575,-0.001898,0.002750,0.249985,0,0);-ms-transform:matrix(0.172575,-0.001898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172575,-0.001898,0.002750,0.249985,0,0);}
.me6_c00225{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);}
.m94_c00225{transform:matrix(0.174104,-0.001915,0.002750,0.249985,0,0);-ms-transform:matrix(0.174104,-0.001915,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174104,-0.001915,0.002750,0.249985,0,0);}
.m10d_c00225{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_c00225{transform:matrix(0.174644,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174644,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174644,-0.001921,0.002750,0.249985,0,0);}
.mb4_c00225{transform:matrix(0.175244,-0.001928,0.002750,0.249985,0,0);-ms-transform:matrix(0.175244,-0.001928,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175244,-0.001928,0.002750,0.249985,0,0);}
.meb_c00225{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);}
.ma6_c00225{transform:matrix(0.175704,-0.001933,0.002750,0.249985,0,0);-ms-transform:matrix(0.175704,-0.001933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175704,-0.001933,0.002750,0.249985,0,0);}
.m5c_c00225{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);}
.m6d_c00225{transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);}
.m5d_c00225{transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);}
.m27_c00225{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);}
.m77_c00225{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);}
.m124_c00225{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);}
.mab_c00225{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);}
.mad_c00225{transform:matrix(0.179934,-0.001979,0.002750,0.249985,0,0);-ms-transform:matrix(0.179934,-0.001979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179934,-0.001979,0.002750,0.249985,0,0);}
.mb6_c00225{transform:matrix(0.180209,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180209,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180209,-0.001982,0.002750,0.249985,0,0);}
.me_c00225{transform:matrix(0.181054,-0.001992,0.002750,0.249985,0,0);-ms-transform:matrix(0.181054,-0.001992,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181054,-0.001992,0.002750,0.249985,0,0);}
.m9c_c00225{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);}
.m44_c00225{transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);}
.mfa_c00225{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);}
.me3_c00225{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);}
.m9b_c00225{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);}
.mf0_c00225{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);}
.mb9_c00225{transform:matrix(0.182759,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182759,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182759,-0.002010,0.002750,0.249985,0,0);}
.maa_c00225{transform:matrix(0.182954,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182954,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182954,-0.002012,0.002750,0.249985,0,0);}
.ma4_c00225{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);}
.m7_c00225{transform:matrix(0.183242,-0.009538,0.012995,0.249662,0,0);-ms-transform:matrix(0.183242,-0.009538,0.012995,0.249662,0,0);-webkit-transform:matrix(0.183242,-0.009538,0.012995,0.249662,0,0);}
.mb7_c00225{transform:matrix(0.183899,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183899,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183899,-0.002023,0.002750,0.249985,0,0);}
.m1c_c00225{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);}
.m39_c00225{transform:matrix(0.184599,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184599,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184599,-0.002031,0.002750,0.249985,0,0);}
.me0_c00225{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);}
.m95_c00225{transform:matrix(0.185494,-0.002040,0.002750,0.249985,0,0);-ms-transform:matrix(0.185494,-0.002040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185494,-0.002040,0.002750,0.249985,0,0);}
.m105_c00225{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);}
.m6e_c00225{transform:matrix(0.185674,-0.002042,0.002750,0.249985,0,0);-ms-transform:matrix(0.185674,-0.002042,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185674,-0.002042,0.002750,0.249985,0,0);}
.mca_c00225{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);}
.m17_c00225{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);}
.m119_c00225{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);}
.m15_c00225{transform:matrix(0.186574,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186574,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186574,-0.002052,0.002750,0.249985,0,0);}
.m103_c00225{transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);}
.mc4_c00225{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);}
.m11f_c00225{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);}
.m125_c00225{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);}
.m50_c00225{transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187159,-0.002059,0.002750,0.249985,0,0);}
.m79_c00225{transform:matrix(0.189529,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189529,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189529,-0.002085,0.002750,0.249985,0,0);}
.m42_c00225{transform:matrix(0.189684,-0.002087,0.002750,0.249985,0,0);-ms-transform:matrix(0.189684,-0.002087,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189684,-0.002087,0.002750,0.249985,0,0);}
.ma1_c00225{transform:matrix(0.189884,-0.002089,0.002750,0.249985,0,0);-ms-transform:matrix(0.189884,-0.002089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189884,-0.002089,0.002750,0.249985,0,0);}
.m12_c00225{transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190418,-0.002095,0.002750,0.249985,0,0);}
.m64_c00225{transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190653,-0.002097,0.002750,0.249985,0,0);}
.m113_c00225{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);}
.m3c_c00225{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);}
.m104_c00225{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);}
.m25_c00225{transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);-ms-transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);}
.m12c_c00225{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);}
.m12b_c00225{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);}
.m3b_c00225{transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);-ms-transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);}
.m38_c00225{transform:matrix(0.192048,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192048,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192048,-0.002113,0.002750,0.249985,0,0);}
.m6b_c00225{transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);-ms-transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);}
.m61_c00225{transform:matrix(0.192653,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192653,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192653,-0.002119,0.002750,0.249985,0,0);}
.m67_c00225{transform:matrix(0.192698,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192698,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192698,-0.002120,0.002750,0.249985,0,0);}
.m66_c00225{transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);}
.m6c_c00225{transform:matrix(0.193043,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.193043,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193043,-0.002123,0.002750,0.249985,0,0);}
.mba_c00225{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);}
.m56_c00225{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);}
.m46_c00225{transform:matrix(0.194373,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194373,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194373,-0.002138,0.002750,0.249985,0,0);}
.m97_c00225{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);}
.m92_c00225{transform:matrix(0.195423,-0.002150,0.002750,0.249985,0,0);-ms-transform:matrix(0.195423,-0.002150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195423,-0.002150,0.002750,0.249985,0,0);}
.m63_c00225{transform:matrix(0.195488,-0.002150,0.002750,0.249985,0,0);-ms-transform:matrix(0.195488,-0.002150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195488,-0.002150,0.002750,0.249985,0,0);}
.me2_c00225{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);}
.m8f_c00225{transform:matrix(0.196108,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196108,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196108,-0.002157,0.002750,0.249985,0,0);}
.m45_c00225{transform:matrix(0.196378,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196378,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196378,-0.002160,0.002750,0.249985,0,0);}
.m19_c00225{transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);}
.m8a_c00225{transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196813,-0.002165,0.002750,0.249985,0,0);}
.m31_c00225{transform:matrix(0.197218,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197218,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197218,-0.002169,0.002750,0.249985,0,0);}
.m1f_c00225{transform:matrix(0.197903,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197903,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197903,-0.002177,0.002750,0.249985,0,0);}
.m55_c00225{transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);}
.ma2_c00225{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);}
.m90_c00225{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);}
.m118_c00225{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);}
.m14_c00225{transform:matrix(0.198498,-0.002183,0.002750,0.249985,0,0);-ms-transform:matrix(0.198498,-0.002183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198498,-0.002183,0.002750,0.249985,0,0);}
.m3a_c00225{transform:matrix(0.198663,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198663,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198663,-0.002185,0.002750,0.249985,0,0);}
.m1a_c00225{transform:matrix(0.198698,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198698,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198698,-0.002186,0.002750,0.249985,0,0);}
.me4_c00225{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);}
.m7a_c00225{transform:matrix(0.199148,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199148,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199148,-0.002191,0.002750,0.249985,0,0);}
.m59_c00225{transform:matrix(0.199363,-0.002193,0.002750,0.249985,0,0);-ms-transform:matrix(0.199363,-0.002193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199363,-0.002193,0.002750,0.249985,0,0);}
.m54_c00225{transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);}
.mae_c00225{transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);}
.me9_c00225{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);}
.m49_c00225{transform:matrix(0.200033,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.200033,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200033,-0.002200,0.002750,0.249985,0,0);}
.m100_c00225{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);}
.mb_c00225{transform:matrix(0.200113,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200113,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200113,-0.002201,0.002750,0.249985,0,0);}
.m29_c00225{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);}
.md_c00225{transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);-ms-transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200413,-0.002205,0.002750,0.249985,0,0);}
.m13_c00225{transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);}
.md2_c00225{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);}
.m10e_c00225{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);}
.mdf_c00225{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);}
.m86_c00225{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);}
.m6f_c00225{transform:matrix(0.202578,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202578,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202578,-0.002228,0.002750,0.249985,0,0);}
.m3_c00225{transform:matrix(0.203135,-0.010574,0.012995,0.249662,0,0);-ms-transform:matrix(0.203135,-0.010574,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203135,-0.010574,0.012995,0.249662,0,0);}
.m7c_c00225{transform:matrix(0.203188,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203188,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203188,-0.002235,0.002750,0.249985,0,0);}
.m18_c00225{transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);}
.mc1_c00225{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);}
.m9a_c00225{transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);-ms-transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);}
.m76_c00225{transform:matrix(0.203788,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203788,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203788,-0.002242,0.002750,0.249985,0,0);}
.m5_c00225{transform:matrix(0.203844,-0.010611,0.012995,0.249662,0,0);-ms-transform:matrix(0.203844,-0.010611,0.012995,0.249662,0,0);-webkit-transform:matrix(0.203844,-0.010611,0.012995,0.249662,0,0);}
.mec_c00225{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);}
.mac_c00225{transform:matrix(0.205908,-0.002265,0.002750,0.249985,0,0);-ms-transform:matrix(0.205908,-0.002265,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205908,-0.002265,0.002750,0.249985,0,0);}
.m101_c00225{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);}
.mf1_c00225{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);}
.m70_c00225{transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);}
.m2d_c00225{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);}
.m93_c00225{transform:matrix(0.207877,-0.002287,0.002750,0.249985,0,0);-ms-transform:matrix(0.207877,-0.002287,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207877,-0.002287,0.002750,0.249985,0,0);}
.m109_c00225{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);}
.m106_c00225{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);}
.m30_c00225{transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);}
.mb8_c00225{transform:matrix(0.209762,-0.002307,0.002750,0.249985,0,0);-ms-transform:matrix(0.209762,-0.002307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209762,-0.002307,0.002750,0.249985,0,0);}
.m3f_c00225{transform:matrix(0.210072,-0.002311,0.002750,0.249985,0,0);-ms-transform:matrix(0.210072,-0.002311,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210072,-0.002311,0.002750,0.249985,0,0);}
.m28_c00225{transform:matrix(0.210172,-0.002312,0.002750,0.249985,0,0);-ms-transform:matrix(0.210172,-0.002312,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210172,-0.002312,0.002750,0.249985,0,0);}
.m8c_c00225{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);}
.mda_c00225{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);}
.m10_c00225{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);}
.me1_c00225{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);}
.m10b_c00225{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);}
.m122_c00225{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m12a_c00225{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);}
.mff_c00225{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);}
.mc6_c00225{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);}
.mef_c00225{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_c00225{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);}
.mf5_c00225{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);}
.m129_c00225{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);}
.me8_c00225{transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.215402,-0.002369,0.002750,0.249985,0,0);-ms-transform:matrix(0.215402,-0.002369,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215402,-0.002369,0.002750,0.249985,0,0);}
.m128_c00225{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);}
.m11e_c00225{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_c00225{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);}
.me5_c00225{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);}
.m68_c00225{transform:matrix(0.217552,-0.002393,0.002750,0.249985,0,0);-ms-transform:matrix(0.217552,-0.002393,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217552,-0.002393,0.002750,0.249985,0,0);}
.m73_c00225{transform:matrix(0.218562,-0.002404,0.002750,0.249985,0,0);-ms-transform:matrix(0.218562,-0.002404,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218562,-0.002404,0.002750,0.249985,0,0);}
.m81_c00225{transform:matrix(0.218787,-0.002407,0.002750,0.249985,0,0);-ms-transform:matrix(0.218787,-0.002407,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218787,-0.002407,0.002750,0.249985,0,0);}
.m4e_c00225{transform:matrix(0.218902,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218902,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218902,-0.002408,0.002750,0.249985,0,0);}
.m89_c00225{transform:matrix(0.219782,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219782,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219782,-0.002418,0.002750,0.249985,0,0);}
.m23_c00225{transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);-ms-transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220122,-0.002421,0.002750,0.249985,0,0);}
.md1_c00225{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);}
.m11c_c00225{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00225{transform:matrix(0.221437,-0.002436,0.002750,0.249985,0,0);-ms-transform:matrix(0.221437,-0.002436,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221437,-0.002436,0.002750,0.249985,0,0);}
.ma9_c00225{transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-ms-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);}
.mc8_c00225{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);}
.mf2_c00225{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);}
.md7_c00225{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);}
.m21_c00225{transform:matrix(0.223346,-0.002457,0.002750,0.249985,0,0);-ms-transform:matrix(0.223346,-0.002457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223346,-0.002457,0.002750,0.249985,0,0);}
.m83_c00225{transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);-ms-transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);}
.m2a_c00225{transform:matrix(0.223811,-0.002462,0.002750,0.249985,0,0);-ms-transform:matrix(0.223811,-0.002462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223811,-0.002462,0.002750,0.249985,0,0);}
.m4b_c00225{transform:matrix(0.224576,-0.002470,0.002750,0.249985,0,0);-ms-transform:matrix(0.224576,-0.002470,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224576,-0.002470,0.002750,0.249985,0,0);}
.m8b_c00225{transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);-ms-transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);}
.m1e_c00225{transform:matrix(0.226156,-0.002488,0.002750,0.249985,0,0);-ms-transform:matrix(0.226156,-0.002488,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226156,-0.002488,0.002750,0.249985,0,0);}
.m6_c00225{transform:matrix(0.227457,-0.011840,0.012995,0.249662,0,0);-ms-transform:matrix(0.227457,-0.011840,0.012995,0.249662,0,0);-webkit-transform:matrix(0.227457,-0.011840,0.012995,0.249662,0,0);}
.m78_c00225{transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);}
.mc7_c00225{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.228671,-0.002515,0.002750,0.249985,0,0);-ms-transform:matrix(0.228671,-0.002515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228671,-0.002515,0.002750,0.249985,0,0);}
.m47_c00225{transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);}
.m22_c00225{transform:matrix(0.229606,-0.002526,0.002750,0.249985,0,0);-ms-transform:matrix(0.229606,-0.002526,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229606,-0.002526,0.002750,0.249985,0,0);}
.m48_c00225{transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);-ms-transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);}
.m84_c00225{transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);}
.m96_c00225{transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-ms-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);}
.m102_c00225{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);}
.m3d_c00225{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);}
.m1b_c00225{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);}
.mbc_c00225{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);}
.m2_c00225{transform:matrix(0.232585,-0.012107,0.012995,0.249662,0,0);-ms-transform:matrix(0.232585,-0.012107,0.012995,0.249662,0,0);-webkit-transform:matrix(0.232585,-0.012107,0.012995,0.249662,0,0);}
.m2f_c00225{transform:matrix(0.233901,-0.002573,0.002750,0.249985,0,0);-ms-transform:matrix(0.233901,-0.002573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233901,-0.002573,0.002750,0.249985,0,0);}
.mee_c00225{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);}
.m35_c00225{transform:matrix(0.235396,-0.002589,0.002750,0.249985,0,0);-ms-transform:matrix(0.235396,-0.002589,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235396,-0.002589,0.002750,0.249985,0,0);}
.m11_c00225{transform:matrix(0.235871,-0.002595,0.002750,0.249985,0,0);-ms-transform:matrix(0.235871,-0.002595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235871,-0.002595,0.002750,0.249985,0,0);}
.m121_c00225{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);}
.m87_c00225{transform:matrix(0.237671,-0.002614,0.002750,0.249985,0,0);-ms-transform:matrix(0.237671,-0.002614,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237671,-0.002614,0.002750,0.249985,0,0);}
.mb0_c00225{transform:matrix(0.239131,-0.002630,0.002750,0.249985,0,0);-ms-transform:matrix(0.239131,-0.002630,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239131,-0.002630,0.002750,0.249985,0,0);}
.m4a_c00225{transform:matrix(0.239186,-0.002631,0.002750,0.249985,0,0);-ms-transform:matrix(0.239186,-0.002631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239186,-0.002631,0.002750,0.249985,0,0);}
.m4f_c00225{transform:matrix(0.239236,-0.002632,0.002750,0.249985,0,0);-ms-transform:matrix(0.239236,-0.002632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239236,-0.002632,0.002750,0.249985,0,0);}
.m91_c00225{transform:matrix(0.240380,-0.002644,0.002750,0.249985,0,0);-ms-transform:matrix(0.240380,-0.002644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240380,-0.002644,0.002750,0.249985,0,0);}
.mf3_c00225{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);}
.m12d_c00225{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);}
.m126_c00225{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);}
.m10f_c00225{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.ma5_c00225{transform:matrix(0.242935,-0.002672,0.002750,0.249985,0,0);-ms-transform:matrix(0.242935,-0.002672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242935,-0.002672,0.002750,0.249985,0,0);}
.m75_c00225{transform:matrix(0.243845,-0.002682,0.002750,0.249985,0,0);-ms-transform:matrix(0.243845,-0.002682,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243845,-0.002682,0.002750,0.249985,0,0);}
.m11d_c00225{transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);}
.m127_c00225{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);}
.m1d_c00225{transform:matrix(0.245355,-0.002699,0.002750,0.249985,0,0);-ms-transform:matrix(0.245355,-0.002699,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245355,-0.002699,0.002750,0.249985,0,0);}
.mbb_c00225{transform:matrix(0.245700,-0.002703,0.002750,0.249985,0,0);-ms-transform:matrix(0.245700,-0.002703,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245700,-0.002703,0.002750,0.249985,0,0);}
.m117_c00225{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.246365,-0.002710,0.002750,0.249985,0,0);-ms-transform:matrix(0.246365,-0.002710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246365,-0.002710,0.002750,0.249985,0,0);}
.m80_c00225{transform:matrix(0.246710,-0.002714,0.002750,0.249985,0,0);-ms-transform:matrix(0.246710,-0.002714,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246710,-0.002714,0.002750,0.249985,0,0);}
.m10a_c00225{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);}
.m7b_c00225{transform:matrix(0.250575,-0.002756,0.002750,0.249985,0,0);-ms-transform:matrix(0.250575,-0.002756,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250575,-0.002756,0.002750,0.249985,0,0);}
.m11a_c00225{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);}
.m24_c00225{transform:matrix(0.252095,-0.002773,0.002750,0.249985,0,0);-ms-transform:matrix(0.252095,-0.002773,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252095,-0.002773,0.002750,0.249985,0,0);}
.m10c_c00225{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);}
.m4_c00225{transform:matrix(0.253137,-0.013176,0.012995,0.249662,0,0);-ms-transform:matrix(0.253137,-0.013176,0.012995,0.249662,0,0);-webkit-transform:matrix(0.253137,-0.013176,0.012995,0.249662,0,0);}
.md6_c00225{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);}
.m20_c00225{transform:matrix(0.254305,-0.002797,0.002750,0.249985,0,0);-ms-transform:matrix(0.254305,-0.002797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254305,-0.002797,0.002750,0.249985,0,0);}
.m85_c00225{transform:matrix(0.254660,-0.002801,0.002750,0.249985,0,0);-ms-transform:matrix(0.254660,-0.002801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254660,-0.002801,0.002750,0.249985,0,0);}
.m2b_c00225{transform:matrix(0.254680,-0.002801,0.002750,0.249985,0,0);-ms-transform:matrix(0.254680,-0.002801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254680,-0.002801,0.002750,0.249985,0,0);}
.m53_c00225{transform:matrix(0.256354,-0.002820,0.002750,0.249985,0,0);-ms-transform:matrix(0.256354,-0.002820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256354,-0.002820,0.002750,0.249985,0,0);}
.m33_c00225{transform:matrix(0.257934,-0.002837,0.002750,0.249985,0,0);-ms-transform:matrix(0.257934,-0.002837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257934,-0.002837,0.002750,0.249985,0,0);}
.m4d_c00225{transform:matrix(0.258299,-0.002841,0.002750,0.249985,0,0);-ms-transform:matrix(0.258299,-0.002841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258299,-0.002841,0.002750,0.249985,0,0);}
.m82_c00225{transform:matrix(0.260674,-0.002867,0.002750,0.249985,0,0);-ms-transform:matrix(0.260674,-0.002867,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260674,-0.002867,0.002750,0.249985,0,0);}
.m74_c00225{transform:matrix(0.262159,-0.002884,0.002750,0.249985,0,0);-ms-transform:matrix(0.262159,-0.002884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262159,-0.002884,0.002750,0.249985,0,0);}
.mf8_c00225{transform:matrix(0.262620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262620,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.264189,-0.002906,0.002750,0.249985,0,0);-ms-transform:matrix(0.264189,-0.002906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264189,-0.002906,0.002750,0.249985,0,0);}
.m123_c00225{transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.266210,-0.013857,0.012995,0.249662,0,0);-ms-transform:matrix(0.266210,-0.013857,0.012995,0.249662,0,0);-webkit-transform:matrix(0.266210,-0.013857,0.012995,0.249662,0,0);}
.mde_c00225{transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);}
.md9_c00225{transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00225{transform:matrix(0.267744,-0.002945,0.002750,0.249985,0,0);-ms-transform:matrix(0.267744,-0.002945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267744,-0.002945,0.002750,0.249985,0,0);}
.m88_c00225{transform:matrix(0.268199,-0.002950,0.002750,0.249985,0,0);-ms-transform:matrix(0.268199,-0.002950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268199,-0.002950,0.002750,0.249985,0,0);}
.m52_c00225{transform:matrix(0.269739,-0.002967,0.002750,0.249985,0,0);-ms-transform:matrix(0.269739,-0.002967,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269739,-0.002967,0.002750,0.249985,0,0);}
.m116_c00225{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.mf4_c00225{transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270015,0.000000,0.000000,0.250000,0,0);}
.mcc_c00225{transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270940,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.276948,-0.003046,0.002750,0.249985,0,0);-ms-transform:matrix(0.276948,-0.003046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276948,-0.003046,0.002750,0.249985,0,0);}
.m8e_c00225{transform:matrix(0.280518,-0.003086,0.002750,0.249985,0,0);-ms-transform:matrix(0.280518,-0.003086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280518,-0.003086,0.002750,0.249985,0,0);}
.m69_c00225{transform:matrix(0.280573,-0.003086,0.002750,0.249985,0,0);-ms-transform:matrix(0.280573,-0.003086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280573,-0.003086,0.002750,0.249985,0,0);}
.md0_c00225{transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282940,0.000000,0.000000,0.250000,0,0);}
.med_c00225{transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283985,0.000000,0.000000,0.250000,0,0);}
.m115_c00225{transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);}
.m11b_c00225{transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);}
.md8_c00225{transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);}
.mc9_c00225{transform:matrix(0.294615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294615,0.000000,0.000000,0.250000,0,0);}
.mf6_c00225{transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);}
.m107_c00225{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.mc5_c00225{transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);}
.mb2_c00225{transform:matrix(0.308881,-0.003398,0.002750,0.249985,0,0);-ms-transform:matrix(0.308881,-0.003398,0.002750,0.249985,0,0);-webkit-transform:matrix(0.308881,-0.003398,0.002750,0.249985,0,0);}
.m120_c00225{transform:matrix(0.314960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314960,0.000000,0.000000,0.250000,0,0);}
.mce_c00225{transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334220,0.000000,0.000000,0.250000,0,0);}
.md3_c00225{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);}
.mdb_c00225{transform:matrix(0.368615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368615,0.000000,0.000000,0.250000,0,0);}
.mb1_c00225{transform:matrix(0.376652,-0.004143,0.002750,0.249985,0,0);-ms-transform:matrix(0.376652,-0.004143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.376652,-0.004143,0.002750,0.249985,0,0);}
.m34_c00225{transform:matrix(0.455267,-0.005008,0.002750,0.249985,0,0);-ms-transform:matrix(0.455267,-0.005008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.455267,-0.005008,0.002750,0.249985,0,0);}
.m0_c00225{transform:matrix(0.500028,-0.026027,0.012995,0.249662,0,0);-ms-transform:matrix(0.500028,-0.026027,0.012995,0.249662,0,0);-webkit-transform:matrix(0.500028,-0.026027,0.012995,0.249662,0,0);}
.mcb_c00225{transform:matrix(0.593395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593395,0.000000,0.000000,0.250000,0,0);}
.m72_c00225{transform:matrix(0.603314,-0.006636,0.002750,0.249985,0,0);-ms-transform:matrix(0.603314,-0.006636,0.002750,0.249985,0,0);-webkit-transform:matrix(0.603314,-0.006636,0.002750,0.249985,0,0);}
.m1_c00225{transform:matrix(0.607188,-0.031605,0.012995,0.249662,0,0);-ms-transform:matrix(0.607188,-0.031605,0.012995,0.249662,0,0);-webkit-transform:matrix(0.607188,-0.031605,0.012995,0.249662,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;}
.fs11_c00225{font-size:22.050000px;}
.fs18_c00225{font-size:46.200000px;}
.fs19_c00225{font-size:49.350000px;}
.fs10_c00225{font-size:50.400000px;}
.fs13_c00225{font-size:51.450000px;}
.fs14_c00225{font-size:54.600000px;}
.fs16_c00225{font-size:55.650000px;}
.fs15_c00225{font-size:59.850000px;}
.fs12_c00225{font-size:60.900000px;}
.fs17_c00225{font-size:61.950000px;}
.fs0_c00225{font-size:61.971834px;}
.fs4_c00225{font-size:63.003811px;}
.fs5_c00225{font-size:65.103938px;}
.fsd_c00225{font-size:67.204065px;}
.fs2_c00225{font-size:68.254129px;}
.fs8_c00225{font-size:69.304193px;}
.fsa_c00225{font-size:70.354256px;}
.fsb_c00225{font-size:71.404320px;}
.fsc_c00225{font-size:72.454383px;}
.fs3_c00225{font-size:73.504447px;}
.fs9_c00225{font-size:75.604574px;}
.fs7_c00225{font-size:76.654637px;}
.fsf_c00225{font-size:77.704701px;}
.fse_c00225{font-size:90.305463px;}
.fs6_c00225{font-size:95.555781px;}
.fs1_c00225{font-size:108.188116px;}
.y0_c00225{bottom:0.000000px;}
.yd5_c00225{bottom:148.281000px;}
.ycf_c00225{bottom:148.950000px;}
.yd4_c00225{bottom:166.882500px;}
.yce_c00225{bottom:167.454000px;}
.yd3_c00225{bottom:184.921500px;}
.ycd_c00225{bottom:185.793000px;}
.yd2_c00225{bottom:202.786500px;}
.ycc_c00225{bottom:203.542500px;}
.yd1_c00225{bottom:221.082000px;}
.ycb_c00225{bottom:221.580000px;}
.yd0_c00225{bottom:239.223000px;}
.yca_c00225{bottom:239.940000px;}
.yc9_c00225{bottom:261.225000px;}
.yc8_c00225{bottom:287.841000px;}
.ybf_c00225{bottom:321.661701px;}
.yc1_c00225{bottom:321.662102px;}
.yc0_c00225{bottom:321.662105px;}
.yc2_c00225{bottom:321.662249px;}
.yc3_c00225{bottom:321.662952px;}
.yc5_c00225{bottom:321.663309px;}
.yc4_c00225{bottom:321.663476px;}
.yc7_c00225{bottom:321.663830px;}
.yc6_c00225{bottom:321.664056px;}
.yb7_c00225{bottom:344.948256px;}
.yb8_c00225{bottom:344.948313px;}
.yb9_c00225{bottom:344.948640px;}
.ybb_c00225{bottom:344.948711px;}
.yb6_c00225{bottom:344.948919px;}
.ybc_c00225{bottom:344.948994px;}
.yba_c00225{bottom:344.949014px;}
.ybd_c00225{bottom:344.949201px;}
.ybe_c00225{bottom:344.949828px;}
.yb4_c00225{bottom:367.317383px;}
.yb5_c00225{bottom:367.317387px;}
.yb3_c00225{bottom:367.317429px;}
.yac_c00225{bottom:390.190047px;}
.yad_c00225{bottom:390.190238px;}
.yae_c00225{bottom:390.190415px;}
.yaf_c00225{bottom:390.190548px;}
.yb0_c00225{bottom:390.190922px;}
.yb2_c00225{bottom:390.191156px;}
.yb1_c00225{bottom:390.191475px;}
.yab_c00225{bottom:412.574445px;}
.yaa_c00225{bottom:412.574868px;}
.ya5_c00225{bottom:412.575284px;}
.ya4_c00225{bottom:412.575437px;}
.ya7_c00225{bottom:412.575444px;}
.ya9_c00225{bottom:412.575485px;}
.ya3_c00225{bottom:412.575680px;}
.ya6_c00225{bottom:412.576001px;}
.ya8_c00225{bottom:412.576161px;}
.y9c_c00225{bottom:436.061018px;}
.y9b_c00225{bottom:436.061081px;}
.y9f_c00225{bottom:436.061549px;}
.ya2_c00225{bottom:436.061723px;}
.y9d_c00225{bottom:436.061751px;}
.ya1_c00225{bottom:436.061936px;}
.y9e_c00225{bottom:436.061972px;}
.ya0_c00225{bottom:436.062222px;}
.y9a_c00225{bottom:458.961875px;}
.y99_c00225{bottom:458.962268px;}
.y97_c00225{bottom:458.962497px;}
.y98_c00225{bottom:458.962511px;}
.y96_c00225{bottom:458.962994px;}
.y95_c00225{bottom:458.962997px;}
.y94_c00225{bottom:458.963313px;}
.y93_c00225{bottom:458.963810px;}
.y92_c00225{bottom:458.963932px;}
.y91_c00225{bottom:458.964429px;}
.y8b_c00225{bottom:482.167131px;}
.y8c_c00225{bottom:482.167565px;}
.y8a_c00225{bottom:482.167748px;}
.y8e_c00225{bottom:482.167769px;}
.y8f_c00225{bottom:482.167886px;}
.y8d_c00225{bottom:482.167935px;}
.y90_c00225{bottom:482.168153px;}
.y87_c00225{bottom:504.614475px;}
.y84_c00225{bottom:504.614661px;}
.y89_c00225{bottom:504.614726px;}
.y85_c00225{bottom:504.614825px;}
.y88_c00225{bottom:504.614879px;}
.y86_c00225{bottom:504.614912px;}
.y83_c00225{bottom:504.615068px;}
.y81_c00225{bottom:504.615074px;}
.y82_c00225{bottom:504.615611px;}
.y7c_c00225{bottom:550.335959px;}
.y80_c00225{bottom:550.336200px;}
.y79_c00225{bottom:550.336208px;}
.y7e_c00225{bottom:550.336479px;}
.y7d_c00225{bottom:550.336572px;}
.y7f_c00225{bottom:550.336596px;}
.y7a_c00225{bottom:550.336641px;}
.y7b_c00225{bottom:550.336698px;}
.y78_c00225{bottom:573.647105px;}
.y6f_c00225{bottom:573.647439px;}
.y70_c00225{bottom:573.647632px;}
.y77_c00225{bottom:573.647828px;}
.y75_c00225{bottom:573.648130px;}
.y74_c00225{bottom:573.648223px;}
.y71_c00225{bottom:573.648289px;}
.y76_c00225{bottom:573.648384px;}
.y72_c00225{bottom:573.648393px;}
.y73_c00225{bottom:573.648676px;}
.y6e_c00225{bottom:596.190463px;}
.y6d_c00225{bottom:596.191170px;}
.y6c_c00225{bottom:596.191607px;}
.y6a_c00225{bottom:596.191849px;}
.y69_c00225{bottom:596.192049px;}
.y66_c00225{bottom:596.192115px;}
.y65_c00225{bottom:596.192192px;}
.y6b_c00225{bottom:596.192313px;}
.y68_c00225{bottom:596.192696px;}
.y67_c00225{bottom:596.192758px;}
.y5e_c00225{bottom:619.296114px;}
.y5c_c00225{bottom:619.296313px;}
.y5d_c00225{bottom:619.296520px;}
.y5a_c00225{bottom:619.296556px;}
.y5f_c00225{bottom:619.296758px;}
.y5b_c00225{bottom:619.296840px;}
.y60_c00225{bottom:619.297191px;}
.y61_c00225{bottom:619.297384px;}
.y62_c00225{bottom:619.297441px;}
.y64_c00225{bottom:619.297782px;}
.y63_c00225{bottom:619.297995px;}
.y59_c00225{bottom:641.228715px;}
.y58_c00225{bottom:641.229301px;}
.y56_c00225{bottom:641.229907px;}
.y57_c00225{bottom:641.230038px;}
.y54_c00225{bottom:641.230363px;}
.y55_c00225{bottom:641.230554px;}
.y53_c00225{bottom:641.230560px;}
.y4b_c00225{bottom:664.008453px;}
.y4c_c00225{bottom:664.008663px;}
.y4f_c00225{bottom:664.008701px;}
.y52_c00225{bottom:664.008784px;}
.y4d_c00225{bottom:664.008870px;}
.y4e_c00225{bottom:664.009017px;}
.y4a_c00225{bottom:664.009086px;}
.y50_c00225{bottom:664.009164px;}
.y49_c00225{bottom:664.009432px;}
.y48_c00225{bottom:664.009449px;}
.y51_c00225{bottom:664.009491px;}
.y42_c00225{bottom:686.840728px;}
.y43_c00225{bottom:686.840935px;}
.y46_c00225{bottom:686.840959px;}
.y45_c00225{bottom:686.841052px;}
.y47_c00225{bottom:686.841063px;}
.y41_c00225{bottom:686.841421px;}
.y44_c00225{bottom:686.841519px;}
.y40_c00225{bottom:686.841798px;}
.y3f_c00225{bottom:686.842371px;}
.y3b_c00225{bottom:710.025054px;}
.y3a_c00225{bottom:710.025147px;}
.y37_c00225{bottom:710.025322px;}
.y3e_c00225{bottom:710.025375px;}
.y3d_c00225{bottom:710.025528px;}
.y39_c00225{bottom:710.025556px;}
.y3c_c00225{bottom:710.025574px;}
.y38_c00225{bottom:710.026009px;}
.y33_c00225{bottom:731.003154px;}
.y34_c00225{bottom:731.003451px;}
.y36_c00225{bottom:731.003515px;}
.y35_c00225{bottom:731.003884px;}
.y27_c00225{bottom:753.834276px;}
.y28_c00225{bottom:754.079800px;}
.y29_c00225{bottom:754.300686px;}
.y2a_c00225{bottom:754.577914px;}
.y2b_c00225{bottom:754.817845px;}
.y2c_c00225{bottom:755.061522px;}
.y2d_c00225{bottom:755.536828px;}
.y2e_c00225{bottom:755.737959px;}
.y2f_c00225{bottom:755.943958px;}
.y30_c00225{bottom:756.230512px;}
.y31_c00225{bottom:756.424068px;}
.y32_c00225{bottom:756.633433px;}
.y1c_c00225{bottom:777.596818px;}
.y1d_c00225{bottom:777.828067px;}
.y1e_c00225{bottom:778.182682px;}
.y1f_c00225{bottom:778.709826px;}
.y20_c00225{bottom:778.862056px;}
.y21_c00225{bottom:779.197593px;}
.y22_c00225{bottom:779.569189px;}
.y23_c00225{bottom:779.816646px;}
.y24_c00225{bottom:780.295269px;}
.y25_c00225{bottom:780.625293px;}
.y26_c00225{bottom:780.941272px;}
.y15_c00225{bottom:799.200462px;}
.y16_c00225{bottom:799.740544px;}
.y17_c00225{bottom:800.426122px;}
.y18_c00225{bottom:800.952706px;}
.y19_c00225{bottom:801.170793px;}
.y1a_c00225{bottom:801.839754px;}
.y1b_c00225{bottom:802.093533px;}
.ya_c00225{bottom:821.881500px;}
.yb_c00225{bottom:822.107236px;}
.yc_c00225{bottom:822.512080px;}
.yd_c00225{bottom:823.313238px;}
.ye_c00225{bottom:823.518283px;}
.yf_c00225{bottom:823.945963px;}
.y10_c00225{bottom:824.414646px;}
.y11_c00225{bottom:824.676616px;}
.y12_c00225{bottom:825.186862px;}
.y13_c00225{bottom:825.600253px;}
.y14_c00225{bottom:826.039813px;}
.y5_c00225{bottom:909.640692px;}
.y6_c00225{bottom:910.400346px;}
.y7_c00225{bottom:912.156032px;}
.y8_c00225{bottom:912.864474px;}
.y9_c00225{bottom:913.797504px;}
.y1_c00225{bottom:926.682000px;}
.y2_c00225{bottom:930.240438px;}
.y3_c00225{bottom:935.572986px;}
.y4_c00225{bottom:937.097496px;}
.h13_c00225{height:22.050000px;}
.h1a_c00225{height:46.200000px;}
.h1b_c00225{height:49.350000px;}
.h12_c00225{height:50.400000px;}
.h15_c00225{height:51.450000px;}
.h16_c00225{height:54.600000px;}
.h18_c00225{height:55.650000px;}
.h17_c00225{height:59.850000px;}
.h14_c00225{height:60.900000px;}
.h19_c00225{height:61.950000px;}
.h2_c00225{height:61.971834px;}
.h6_c00225{height:63.003811px;}
.h7_c00225{height:65.103938px;}
.hf_c00225{height:67.204065px;}
.h4_c00225{height:68.254129px;}
.ha_c00225{height:69.304193px;}
.hc_c00225{height:70.354256px;}
.hd_c00225{height:71.404320px;}
.he_c00225{height:72.454383px;}
.h5_c00225{height:73.504447px;}
.hb_c00225{height:75.604574px;}
.h9_c00225{height:76.654637px;}
.h11_c00225{height:77.704701px;}
.h10_c00225{height:90.305463px;}
.h8_c00225{height:95.555781px;}
.h3_c00225{height:108.188116px;}
.h0_c00225{height:1008.450000px;}
.h1_c00225{height:1008.750000px;}
.w0_c00225{width:678.450000px;}
.w1_c00225{width:678.750000px;}
.x0_c00225{left:0.000000px;}
.x5_c00225{left:75.316801px;}
.x1_c00225{left:77.208000px;}
.x6_c00225{left:99.032734px;}
.xa2_c00225{left:126.090000px;}
.xae_c00225{left:135.270000px;}
.xa3_c00225{left:136.350000px;}
.x2_c00225{left:145.571069px;}
.xa0_c00225{left:148.500000px;}
.xa6_c00225{left:149.580000px;}
.x7_c00225{left:153.805825px;}
.x34_c00225{left:161.456795px;}
.x15_c00225{left:162.670633px;}
.xaf_c00225{left:163.890000px;}
.xa_c00225{left:165.379500px;}
.x27_c00225{left:167.244155px;}
.x1c_c00225{left:168.850493px;}
.x64_c00225{left:170.639036px;}
.x73_c00225{left:171.716586px;}
.x8_c00225{left:175.931710px;}
.xa4_c00225{left:182.520000px;}
.xb_c00225{left:185.901000px;}
.x6b_c00225{left:188.731436px;}
.x5b_c00225{left:191.700317px;}
.x4c_c00225{left:193.051010px;}
.x1d_c00225{left:194.510054px;}
.x52_c00225{left:196.830588px;}
.x49_c00225{left:198.448923px;}
.x65_c00225{left:203.041463px;}
.x9_c00225{left:205.056850px;}
.x7c_c00225{left:207.895892px;}
.x35_c00225{left:208.979537px;}
.x3a_c00225{left:212.488457px;}
.xa1_c00225{left:214.380000px;}
.x16_c00225{left:216.678727px;}
.x53_c00225{left:217.891629px;}
.x28_c00225{left:219.055293px;}
.x31_c00225{left:221.399819px;}
.xc_c00225{left:222.705000px;}
.x41_c00225{left:225.449154px;}
.x74_c00225{left:227.610351px;}
.x3b_c00225{left:229.228986px;}
.x5c_c00225{left:231.392118px;}
.x70_c00225{left:232.472121px;}
.x1e_c00225{left:233.975928px;}
.x66_c00225{left:239.494368px;}
.x57_c00225{left:242.463561px;}
.xa7_c00225{left:243.540000px;}
.x3_c00225{left:248.017519px;}
.x29_c00225{left:249.849470px;}
.xab_c00225{left:251.640000px;}
.x36_c00225{left:253.261899px;}
.x80_c00225{left:255.690000px;}
.x54_c00225{left:258.663563px;}
.x6c_c00225{left:261.365730px;}
.x4d_c00225{left:262.984974px;}
.xa8_c00225{left:267.030000px;}
.x58_c00225{left:268.385196px;}
.x42_c00225{left:271.351715px;}
.x32_c00225{left:272.432990px;}
.x3c_c00225{left:275.671613px;}
.x4_c00225{left:277.305702px;}
.xa5_c00225{left:279.180000px;}
.x43_c00225{left:282.963117px;}
.x17_c00225{left:285.277487px;}
.x7d_c00225{left:287.009462px;}
.x76_c00225{left:288.361907px;}
.x55_c00225{left:291.336023px;}
.x1f_c00225{left:292.535715px;}
.x61_c00225{left:294.035579px;}
.xd_c00225{left:295.537500px;}
.x71_c00225{left:297.545492px;}
.x78_c00225{left:299.702852px;}
.xa9_c00225{left:301.860000px;}
.x2a_c00225{left:303.633158px;}
.x5d_c00225{left:305.106545px;}
.x7e_c00225{left:307.530437px;}
.x20_c00225{left:309.511595px;}
.xac_c00225{left:311.850000px;}
.xe_c00225{left:314.178000px;}
.x81_c00225{left:315.630000px;}
.x67_c00225{left:316.719207px;}
.x62_c00225{left:319.417148px;}
.x37_c00225{left:324.005963px;}
.x5e_c00225{left:326.437619px;}
.x3d_c00225{left:327.514883px;}
.x6d_c00225{left:331.299695px;}
.x44_c00225{left:334.806387px;}
.x18_c00225{left:337.922064px;}
.xad_c00225{left:340.200000px;}
.x72_c00225{left:341.557821px;}
.x7f_c00225{left:343.173243px;}
.x68_c00225{left:345.071139px;}
.x21_c00225{left:346.833920px;}
.xaa_c00225{left:348.570000px;}
.x4e_c00225{left:351.011117px;}
.xf_c00225{left:353.058000px;}
.x82_c00225{left:354.240000px;}
.x2b_c00225{left:356.525829px;}
.x19_c00225{left:359.793812px;}
.x3e_c00225{left:362.617623px;}
.x38_c00225{left:365.047929px;}
.x83_c00225{left:369.900000px;}
.x63_c00225{left:372.340550px;}
.x4f_c00225{left:376.122653px;}
.x2c_c00225{left:378.901824px;}
.x5f_c00225{left:380.981219px;}
.x56_c00225{left:382.871094px;}
.x69_c00225{left:384.222875px;}
.x7a_c00225{left:386.105828px;}
.x22_c00225{left:388.116327px;}
.x4a_c00225{left:389.351523px;}
.x59_c00225{left:391.512596px;}
.x3f_c00225{left:393.669885px;}
.x10_c00225{left:395.665500px;}
.x2d_c00225{left:401.856835px;}
.x8a_c00225{left:406.080000px;}
.x97_c00225{left:413.370000px;}
.x23_c00225{left:415.658438px;}
.x45_c00225{left:416.891820px;}
.x11_c00225{left:419.481000px;}
.x4b_c00225{left:422.834082px;}
.x1a_c00225{left:426.745554px;}
.x88_c00225{left:428.760000px;}
.x94_c00225{left:430.380000px;}
.x6e_c00225{left:431.745855px;}
.x2e_c00225{left:433.771545px;}
.x6a_c00225{left:435.526079px;}
.x50_c00225{left:437.685594px;}
.x46_c00225{left:439.573059px;}
.x9c_c00225{left:440.640000px;}
.x77_c00225{left:442.811585px;}
.x98_c00225{left:443.880000px;}
.x33_c00225{left:446.323527px;}
.x8b_c00225{left:447.660000px;}
.x1b_c00225{left:452.134835px;}
.x2f_c00225{left:455.322524px;}
.x40_c00225{left:460.633487px;}
.x75_c00225{left:464.412512px;}
.x12_c00225{left:465.867000px;}
.x24_c00225{left:468.852609px;}
.x79_c00225{left:474.133455px;}
.x6f_c00225{left:475.488152px;}
.x30_c00225{left:478.583535px;}
.x51_c00225{left:479.807693px;}
.x5a_c00225{left:481.157453px;}
.x8c_c00225{left:486.540000px;}
.x99_c00225{left:488.160000px;}
.x47_c00225{left:490.336197px;}
.x84_c00225{left:497.880000px;}
.x7b_c00225{left:499.513539px;}
.x90_c00225{left:501.390000px;}
.x13_c00225{left:503.448000px;}
.x25_c00225{left:505.537418px;}
.x9d_c00225{left:507.330000px;}
.x9a_c00225{left:508.410000px;}
.x39_c00225{left:509.776436px;}
.x91_c00225{left:518.670000px;}
.x48_c00225{left:523.548723px;}
.x60_c00225{left:531.110385px;}
.x85_c00225{left:532.440000px;}
.x9e_c00225{left:534.330000px;}
.x8d_c00225{left:535.410000px;}
.x26_c00225{left:540.672693px;}
.x14_c00225{left:543.408000px;}
.x92_c00225{left:548.910000px;}
.x86_c00225{left:554.310000px;}
.x9b_c00225{left:558.630000px;}
.x87_c00225{left:566.460000px;}
.x89_c00225{left:570.780000px;}
.x8e_c00225{left:574.830000px;}
.x95_c00225{left:577.260000px;}
.x93_c00225{left:583.470000px;}
.x96_c00225{left:587.250000px;}
.x9f_c00225{left:591.840000px;}
.x8f_c00225{left:610.200000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fs11_c00225{font-size:19.600000pt;}
.fs18_c00225{font-size:41.066667pt;}
.fs19_c00225{font-size:43.866667pt;}
.fs10_c00225{font-size:44.800000pt;}
.fs13_c00225{font-size:45.733333pt;}
.fs14_c00225{font-size:48.533333pt;}
.fs16_c00225{font-size:49.466667pt;}
.fs15_c00225{font-size:53.200000pt;}
.fs12_c00225{font-size:54.133333pt;}
.fs17_c00225{font-size:55.066667pt;}
.fs0_c00225{font-size:55.086074pt;}
.fs4_c00225{font-size:56.003388pt;}
.fs5_c00225{font-size:57.870167pt;}
.fsd_c00225{font-size:59.736947pt;}
.fs2_c00225{font-size:60.670337pt;}
.fs8_c00225{font-size:61.603727pt;}
.fsa_c00225{font-size:62.537116pt;}
.fsb_c00225{font-size:63.470506pt;}
.fsc_c00225{font-size:64.403896pt;}
.fs3_c00225{font-size:65.337286pt;}
.fs9_c00225{font-size:67.204065pt;}
.fs7_c00225{font-size:68.137455pt;}
.fsf_c00225{font-size:69.070845pt;}
.fse_c00225{font-size:80.271523pt;}
.fs6_c00225{font-size:84.938472pt;}
.fs1_c00225{font-size:96.167214pt;}
.y0_c00225{bottom:0.000000pt;}
.yd5_c00225{bottom:131.805333pt;}
.ycf_c00225{bottom:132.400000pt;}
.yd4_c00225{bottom:148.340000pt;}
.yce_c00225{bottom:148.848000pt;}
.yd3_c00225{bottom:164.374667pt;}
.ycd_c00225{bottom:165.149333pt;}
.yd2_c00225{bottom:180.254667pt;}
.ycc_c00225{bottom:180.926667pt;}
.yd1_c00225{bottom:196.517333pt;}
.ycb_c00225{bottom:196.960000pt;}
.yd0_c00225{bottom:212.642667pt;}
.yca_c00225{bottom:213.280000pt;}
.yc9_c00225{bottom:232.200000pt;}
.yc8_c00225{bottom:255.858667pt;}
.ybf_c00225{bottom:285.921512pt;}
.yc1_c00225{bottom:285.921868pt;}
.yc0_c00225{bottom:285.921871pt;}
.yc2_c00225{bottom:285.921999pt;}
.yc3_c00225{bottom:285.922624pt;}
.yc5_c00225{bottom:285.922941pt;}
.yc4_c00225{bottom:285.923089pt;}
.yc7_c00225{bottom:285.923404pt;}
.yc6_c00225{bottom:285.923605pt;}
.yb7_c00225{bottom:306.620672pt;}
.yb8_c00225{bottom:306.620723pt;}
.yb9_c00225{bottom:306.621013pt;}
.ybb_c00225{bottom:306.621076pt;}
.yb6_c00225{bottom:306.621261pt;}
.ybc_c00225{bottom:306.621328pt;}
.yba_c00225{bottom:306.621345pt;}
.ybd_c00225{bottom:306.621512pt;}
.ybe_c00225{bottom:306.622069pt;}
.yb4_c00225{bottom:326.504340pt;}
.yb5_c00225{bottom:326.504344pt;}
.yb3_c00225{bottom:326.504381pt;}
.yac_c00225{bottom:346.835597pt;}
.yad_c00225{bottom:346.835767pt;}
.yae_c00225{bottom:346.835924pt;}
.yaf_c00225{bottom:346.836043pt;}
.yb0_c00225{bottom:346.836375pt;}
.yb2_c00225{bottom:346.836583pt;}
.yb1_c00225{bottom:346.836867pt;}
.yab_c00225{bottom:366.732840pt;}
.yaa_c00225{bottom:366.733216pt;}
.ya5_c00225{bottom:366.733585pt;}
.ya4_c00225{bottom:366.733721pt;}
.ya7_c00225{bottom:366.733728pt;}
.ya9_c00225{bottom:366.733764pt;}
.ya3_c00225{bottom:366.733937pt;}
.ya6_c00225{bottom:366.734223pt;}
.ya8_c00225{bottom:366.734365pt;}
.y9c_c00225{bottom:387.609793pt;}
.y9b_c00225{bottom:387.609849pt;}
.y9f_c00225{bottom:387.610265pt;}
.ya2_c00225{bottom:387.610420pt;}
.y9d_c00225{bottom:387.610445pt;}
.ya1_c00225{bottom:387.610609pt;}
.y9e_c00225{bottom:387.610641pt;}
.ya0_c00225{bottom:387.610864pt;}
.y9a_c00225{bottom:407.966111pt;}
.y99_c00225{bottom:407.966460pt;}
.y97_c00225{bottom:407.966664pt;}
.y98_c00225{bottom:407.966676pt;}
.y96_c00225{bottom:407.967105pt;}
.y95_c00225{bottom:407.967108pt;}
.y94_c00225{bottom:407.967389pt;}
.y93_c00225{bottom:407.967831pt;}
.y92_c00225{bottom:407.967940pt;}
.y91_c00225{bottom:407.968381pt;}
.y8b_c00225{bottom:428.593005pt;}
.y8c_c00225{bottom:428.593391pt;}
.y8a_c00225{bottom:428.593553pt;}
.y8e_c00225{bottom:428.593572pt;}
.y8f_c00225{bottom:428.593676pt;}
.y8d_c00225{bottom:428.593720pt;}
.y90_c00225{bottom:428.593913pt;}
.y87_c00225{bottom:448.546200pt;}
.y84_c00225{bottom:448.546365pt;}
.y89_c00225{bottom:448.546423pt;}
.y85_c00225{bottom:448.546511pt;}
.y88_c00225{bottom:448.546559pt;}
.y86_c00225{bottom:448.546588pt;}
.y83_c00225{bottom:448.546727pt;}
.y81_c00225{bottom:448.546732pt;}
.y82_c00225{bottom:448.547209pt;}
.y7c_c00225{bottom:489.187519pt;}
.y80_c00225{bottom:489.187733pt;}
.y79_c00225{bottom:489.187740pt;}
.y7e_c00225{bottom:489.187981pt;}
.y7d_c00225{bottom:489.188064pt;}
.y7f_c00225{bottom:489.188085pt;}
.y7a_c00225{bottom:489.188125pt;}
.y7b_c00225{bottom:489.188176pt;}
.y78_c00225{bottom:509.908537pt;}
.y6f_c00225{bottom:509.908835pt;}
.y70_c00225{bottom:509.909007pt;}
.y77_c00225{bottom:509.909180pt;}
.y75_c00225{bottom:509.909449pt;}
.y74_c00225{bottom:509.909532pt;}
.y71_c00225{bottom:509.909591pt;}
.y76_c00225{bottom:509.909675pt;}
.y72_c00225{bottom:509.909683pt;}
.y73_c00225{bottom:509.909935pt;}
.y6e_c00225{bottom:529.947079pt;}
.y6d_c00225{bottom:529.947707pt;}
.y6c_c00225{bottom:529.948095pt;}
.y6a_c00225{bottom:529.948311pt;}
.y69_c00225{bottom:529.948488pt;}
.y66_c00225{bottom:529.948547pt;}
.y65_c00225{bottom:529.948615pt;}
.y6b_c00225{bottom:529.948723pt;}
.y68_c00225{bottom:529.949063pt;}
.y67_c00225{bottom:529.949119pt;}
.y5e_c00225{bottom:550.485435pt;}
.y5c_c00225{bottom:550.485612pt;}
.y5d_c00225{bottom:550.485796pt;}
.y5a_c00225{bottom:550.485828pt;}
.y5f_c00225{bottom:550.486007pt;}
.y5b_c00225{bottom:550.486080pt;}
.y60_c00225{bottom:550.486392pt;}
.y61_c00225{bottom:550.486564pt;}
.y62_c00225{bottom:550.486615pt;}
.y64_c00225{bottom:550.486917pt;}
.y63_c00225{bottom:550.487107pt;}
.y59_c00225{bottom:569.981080pt;}
.y58_c00225{bottom:569.981601pt;}
.y56_c00225{bottom:569.982140pt;}
.y57_c00225{bottom:569.982256pt;}
.y54_c00225{bottom:569.982545pt;}
.y55_c00225{bottom:569.982715pt;}
.y53_c00225{bottom:569.982720pt;}
.y4b_c00225{bottom:590.229736pt;}
.y4c_c00225{bottom:590.229923pt;}
.y4f_c00225{bottom:590.229956pt;}
.y52_c00225{bottom:590.230031pt;}
.y4d_c00225{bottom:590.230107pt;}
.y4e_c00225{bottom:590.230237pt;}
.y4a_c00225{bottom:590.230299pt;}
.y50_c00225{bottom:590.230368pt;}
.y49_c00225{bottom:590.230607pt;}
.y48_c00225{bottom:590.230621pt;}
.y51_c00225{bottom:590.230659pt;}
.y42_c00225{bottom:610.525092pt;}
.y43_c00225{bottom:610.525276pt;}
.y46_c00225{bottom:610.525297pt;}
.y45_c00225{bottom:610.525380pt;}
.y47_c00225{bottom:610.525389pt;}
.y41_c00225{bottom:610.525708pt;}
.y44_c00225{bottom:610.525795pt;}
.y40_c00225{bottom:610.526043pt;}
.y3f_c00225{bottom:610.526552pt;}
.y3b_c00225{bottom:631.133381pt;}
.y3a_c00225{bottom:631.133464pt;}
.y37_c00225{bottom:631.133620pt;}
.y3e_c00225{bottom:631.133667pt;}
.y3d_c00225{bottom:631.133803pt;}
.y39_c00225{bottom:631.133828pt;}
.y3c_c00225{bottom:631.133844pt;}
.y38_c00225{bottom:631.134231pt;}
.y33_c00225{bottom:649.780581pt;}
.y34_c00225{bottom:649.780845pt;}
.y36_c00225{bottom:649.780903pt;}
.y35_c00225{bottom:649.781231pt;}
.y27_c00225{bottom:670.074912pt;}
.y28_c00225{bottom:670.293156pt;}
.y29_c00225{bottom:670.489499pt;}
.y2a_c00225{bottom:670.735924pt;}
.y2b_c00225{bottom:670.949196pt;}
.y2c_c00225{bottom:671.165797pt;}
.y2d_c00225{bottom:671.588292pt;}
.y2e_c00225{bottom:671.767075pt;}
.y2f_c00225{bottom:671.950185pt;}
.y30_c00225{bottom:672.204900pt;}
.y31_c00225{bottom:672.376949pt;}
.y32_c00225{bottom:672.563052pt;}
.y1c_c00225{bottom:691.197172pt;}
.y1d_c00225{bottom:691.402727pt;}
.y1e_c00225{bottom:691.717940pt;}
.y1f_c00225{bottom:692.186512pt;}
.y20_c00225{bottom:692.321828pt;}
.y21_c00225{bottom:692.620083pt;}
.y22_c00225{bottom:692.950391pt;}
.y23_c00225{bottom:693.170352pt;}
.y24_c00225{bottom:693.595795pt;}
.y25_c00225{bottom:693.889149pt;}
.y26_c00225{bottom:694.170020pt;}
.y15_c00225{bottom:710.400411pt;}
.y16_c00225{bottom:710.880484pt;}
.y17_c00225{bottom:711.489887pt;}
.y18_c00225{bottom:711.957961pt;}
.y19_c00225{bottom:712.151816pt;}
.y1a_c00225{bottom:712.746448pt;}
.y1b_c00225{bottom:712.972029pt;}
.ya_c00225{bottom:730.561333pt;}
.yb_c00225{bottom:730.761988pt;}
.yc_c00225{bottom:731.121849pt;}
.yd_c00225{bottom:731.833989pt;}
.ye_c00225{bottom:732.016252pt;}
.yf_c00225{bottom:732.396412pt;}
.y10_c00225{bottom:732.813019pt;}
.y11_c00225{bottom:733.045881pt;}
.y12_c00225{bottom:733.499433pt;}
.y13_c00225{bottom:733.866892pt;}
.y14_c00225{bottom:734.257612pt;}
.y5_c00225{bottom:808.569504pt;}
.y6_c00225{bottom:809.244752pt;}
.y7_c00225{bottom:810.805361pt;}
.y8_c00225{bottom:811.435088pt;}
.y9_c00225{bottom:812.264448pt;}
.y1_c00225{bottom:823.717333pt;}
.y2_c00225{bottom:826.880389pt;}
.y3_c00225{bottom:831.620432pt;}
.y4_c00225{bottom:832.975552pt;}
.h13_c00225{height:19.600000pt;}
.h1a_c00225{height:41.066667pt;}
.h1b_c00225{height:43.866667pt;}
.h12_c00225{height:44.800000pt;}
.h15_c00225{height:45.733333pt;}
.h16_c00225{height:48.533333pt;}
.h18_c00225{height:49.466667pt;}
.h17_c00225{height:53.200000pt;}
.h14_c00225{height:54.133333pt;}
.h19_c00225{height:55.066667pt;}
.h2_c00225{height:55.086074pt;}
.h6_c00225{height:56.003388pt;}
.h7_c00225{height:57.870167pt;}
.hf_c00225{height:59.736947pt;}
.h4_c00225{height:60.670337pt;}
.ha_c00225{height:61.603727pt;}
.hc_c00225{height:62.537116pt;}
.hd_c00225{height:63.470506pt;}
.he_c00225{height:64.403896pt;}
.h5_c00225{height:65.337286pt;}
.hb_c00225{height:67.204065pt;}
.h9_c00225{height:68.137455pt;}
.h11_c00225{height:69.070845pt;}
.h10_c00225{height:80.271523pt;}
.h8_c00225{height:84.938472pt;}
.h3_c00225{height:96.167214pt;}
.h0_c00225{height:896.400000pt;}
.h1_c00225{height:896.666667pt;}
.w0_c00225{width:603.066667pt;}
.w1_c00225{width:603.333333pt;}
.x0_c00225{left:0.000000pt;}
.x5_c00225{left:66.948268pt;}
.x1_c00225{left:68.629333pt;}
.x6_c00225{left:88.029097pt;}
.xa2_c00225{left:112.080000pt;}
.xae_c00225{left:120.240000pt;}
.xa3_c00225{left:121.200000pt;}
.x2_c00225{left:129.396505pt;}
.xa0_c00225{left:132.000000pt;}
.xa6_c00225{left:132.960000pt;}
.x7_c00225{left:136.716289pt;}
.x34_c00225{left:143.517151pt;}
.x15_c00225{left:144.596119pt;}
.xaf_c00225{left:145.680000pt;}
.xa_c00225{left:147.004000pt;}
.x27_c00225{left:148.661471pt;}
.x1c_c00225{left:150.089327pt;}
.x64_c00225{left:151.679143pt;}
.x73_c00225{left:152.636965pt;}
.x8_c00225{left:156.383743pt;}
.xa4_c00225{left:162.240000pt;}
.xb_c00225{left:165.245333pt;}
.x6b_c00225{left:167.761276pt;}
.x5b_c00225{left:170.400281pt;}
.x4c_c00225{left:171.600897pt;}
.x1d_c00225{left:172.897825pt;}
.x52_c00225{left:174.960523pt;}
.x49_c00225{left:176.399043pt;}
.x65_c00225{left:180.481300pt;}
.x9_c00225{left:182.272756pt;}
.x7c_c00225{left:184.796348pt;}
.x35_c00225{left:185.759588pt;}
.x3a_c00225{left:188.878628pt;}
.xa1_c00225{left:190.560000pt;}
.x16_c00225{left:192.603313pt;}
.x53_c00225{left:193.681448pt;}
.x28_c00225{left:194.715816pt;}
.x31_c00225{left:196.799839pt;}
.xc_c00225{left:197.960000pt;}
.x41_c00225{left:200.399248pt;}
.x74_c00225{left:202.320312pt;}
.x3b_c00225{left:203.759099pt;}
.x5c_c00225{left:205.681883pt;}
.x70_c00225{left:206.641885pt;}
.x1e_c00225{left:207.978603pt;}
.x66_c00225{left:212.883883pt;}
.x57_c00225{left:215.523165pt;}
.xa7_c00225{left:216.480000pt;}
.x3_c00225{left:220.460017pt;}
.x29_c00225{left:222.088417pt;}
.xab_c00225{left:223.680000pt;}
.x36_c00225{left:225.121688pt;}
.x80_c00225{left:227.280000pt;}
.x54_c00225{left:229.923167pt;}
.x6c_c00225{left:232.325093pt;}
.x4d_c00225{left:233.764421pt;}
.xa8_c00225{left:237.360000pt;}
.x58_c00225{left:238.564619pt;}
.x42_c00225{left:241.201524pt;}
.x32_c00225{left:242.162657pt;}
.x3c_c00225{left:245.041433pt;}
.x4_c00225{left:246.493957pt;}
.xa5_c00225{left:248.160000pt;}
.x43_c00225{left:251.522771pt;}
.x17_c00225{left:253.579988pt;}
.x7d_c00225{left:255.119521pt;}
.x76_c00225{left:256.321695pt;}
.x55_c00225{left:258.965353pt;}
.x1f_c00225{left:260.031747pt;}
.x61_c00225{left:261.364959pt;}
.xd_c00225{left:262.700000pt;}
.x71_c00225{left:264.484881pt;}
.x78_c00225{left:266.402535pt;}
.xa9_c00225{left:268.320000pt;}
.x2a_c00225{left:269.896140pt;}
.x5d_c00225{left:271.205817pt;}
.x7e_c00225{left:273.360388pt;}
.x20_c00225{left:275.121417pt;}
.xac_c00225{left:277.200000pt;}
.xe_c00225{left:279.269333pt;}
.x81_c00225{left:280.560000pt;}
.x67_c00225{left:281.528184pt;}
.x62_c00225{left:283.926353pt;}
.x37_c00225{left:288.005300pt;}
.x5e_c00225{left:290.166772pt;}
.x3d_c00225{left:291.124340pt;}
.x6d_c00225{left:294.488617pt;}
.x44_c00225{left:297.605677pt;}
.x18_c00225{left:300.375168pt;}
.xad_c00225{left:302.400000pt;}
.x72_c00225{left:303.606952pt;}
.x7f_c00225{left:305.042883pt;}
.x68_c00225{left:306.729901pt;}
.x21_c00225{left:308.296817pt;}
.xaa_c00225{left:309.840000pt;}
.x4e_c00225{left:312.009881pt;}
.xf_c00225{left:313.829333pt;}
.x82_c00225{left:314.880000pt;}
.x2b_c00225{left:316.911848pt;}
.x19_c00225{left:319.816721pt;}
.x3e_c00225{left:322.326776pt;}
.x38_c00225{left:324.487048pt;}
.x83_c00225{left:328.800000pt;}
.x63_c00225{left:330.969377pt;}
.x4f_c00225{left:334.331247pt;}
.x2c_c00225{left:336.801621pt;}
.x5f_c00225{left:338.649972pt;}
.x56_c00225{left:340.329861pt;}
.x69_c00225{left:341.531444pt;}
.x7a_c00225{left:343.205180pt;}
.x22_c00225{left:344.992291pt;}
.x4a_c00225{left:346.090243pt;}
.x59_c00225{left:348.011196pt;}
.x3f_c00225{left:349.928787pt;}
.x10_c00225{left:351.702667pt;}
.x2d_c00225{left:357.206076pt;}
.x8a_c00225{left:360.960000pt;}
.x97_c00225{left:367.440000pt;}
.x23_c00225{left:369.474167pt;}
.x45_c00225{left:370.570507pt;}
.x11_c00225{left:372.872000pt;}
.x4b_c00225{left:375.852517pt;}
.x1a_c00225{left:379.329381pt;}
.x88_c00225{left:381.120000pt;}
.x94_c00225{left:382.560000pt;}
.x6e_c00225{left:383.774093pt;}
.x2e_c00225{left:385.574707pt;}
.x6a_c00225{left:387.134292pt;}
.x50_c00225{left:389.053861pt;}
.x46_c00225{left:390.731608pt;}
.x9c_c00225{left:391.680000pt;}
.x77_c00225{left:393.610297pt;}
.x98_c00225{left:394.560000pt;}
.x33_c00225{left:396.732024pt;}
.x8b_c00225{left:397.920000pt;}
.x1b_c00225{left:401.897631pt;}
.x2f_c00225{left:404.731132pt;}
.x40_c00225{left:409.451988pt;}
.x75_c00225{left:412.811121pt;}
.x12_c00225{left:414.104000pt;}
.x24_c00225{left:416.757875pt;}
.x79_c00225{left:421.451960pt;}
.x6f_c00225{left:422.656135pt;}
.x30_c00225{left:425.407587pt;}
.x51_c00225{left:426.495727pt;}
.x5a_c00225{left:427.695513pt;}
.x8c_c00225{left:432.480000pt;}
.x99_c00225{left:433.920000pt;}
.x47_c00225{left:435.854397pt;}
.x84_c00225{left:442.560000pt;}
.x7b_c00225{left:444.012035pt;}
.x90_c00225{left:445.680000pt;}
.x13_c00225{left:447.509333pt;}
.x25_c00225{left:449.366593pt;}
.x9d_c00225{left:450.960000pt;}
.x9a_c00225{left:451.920000pt;}
.x39_c00225{left:453.134609pt;}
.x91_c00225{left:461.040000pt;}
.x48_c00225{left:465.376643pt;}
.x60_c00225{left:472.098120pt;}
.x85_c00225{left:473.280000pt;}
.x9e_c00225{left:474.960000pt;}
.x8d_c00225{left:475.920000pt;}
.x26_c00225{left:480.597949pt;}
.x14_c00225{left:483.029333pt;}
.x92_c00225{left:487.920000pt;}
.x86_c00225{left:492.720000pt;}
.x9b_c00225{left:496.560000pt;}
.x87_c00225{left:503.520000pt;}
.x89_c00225{left:507.360000pt;}
.x8e_c00225{left:510.960000pt;}
.x95_c00225{left:513.120000pt;}
.x93_c00225{left:518.640000pt;}
.x96_c00225{left:522.000000pt;}
.x9f_c00225{left:526.080000pt;}
.x8f_c00225{left:542.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_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_ef4e99a7aa2876b3106553d3.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;}
.m43_c00226{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);}
.m57_c00226{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.md5_c00226{transform:matrix(0.018177,0.000309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.018177,0.000309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.018177,0.000309,-0.004249,0.249964,0,0);}
.m69_c00226{transform:matrix(0.060985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060985,0.000000,0.000000,0.250000,0,0);}
.m6a_c00226{transform:matrix(0.074435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074435,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{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);}
.m56_c00226{transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);}
.m44_c00226{transform:matrix(0.088785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088785,0.000000,0.000000,0.250000,0,0);}
.mba_c00226{transform:matrix(0.089953,0.001439,-0.003999,0.249968,0,0);-ms-transform:matrix(0.089953,0.001439,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.089953,0.001439,-0.003999,0.249968,0,0);}
.m14_c00226{transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);}
.m60_c00226{transform:matrix(0.107135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107135,0.000000,0.000000,0.250000,0,0);}
.ma7_c00226{transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);}
.mad_c00226{transform:matrix(0.137297,0.002197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.137297,0.002197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.137297,0.002197,-0.003999,0.249968,0,0);}
.m3b_c00226{transform:matrix(0.140980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140980,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145205,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m39_c00226{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.mce_c00226{transform:matrix(0.148928,0.002532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148928,0.002532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148928,0.002532,-0.004249,0.249964,0,0);}
.m90_c00226{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);}
.m84_c00226{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);}
.mca_c00226{transform:matrix(0.152013,0.002584,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152013,0.002584,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152013,0.002584,-0.004249,0.249964,0,0);}
.mb9_c00226{transform:matrix(0.154265,0.002468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154265,0.002468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154265,0.002468,-0.003999,0.249968,0,0);}
.m3d_c00226{transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156085,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{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);}
.m77_c00226{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);}
.m4d_c00226{transform:matrix(0.163855,0.001802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163855,0.001802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163855,0.001802,-0.002750,0.249985,0,0);}
.m91_c00226{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);}
.m36_c00226{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);}
.mc4_c00226{transform:matrix(0.165751,0.002818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165751,0.002818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165751,0.002818,-0.004249,0.249964,0,0);}
.maa_c00226{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);}
.m7_c00226{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.md7_c00226{transform:matrix(0.167116,0.002841,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167116,0.002841,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167116,0.002841,-0.004249,0.249964,0,0);}
.m83_c00226{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);}
.m9d_c00226{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);}
.me0_c00226{transform:matrix(0.168810,0.003207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168810,0.003207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168810,0.003207,-0.004749,0.249955,0,0);}
.mc7_c00226{transform:matrix(0.169161,0.002876,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169161,0.002876,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169161,0.002876,-0.004249,0.249964,0,0);}
.md3_c00226{transform:matrix(0.169755,0.002886,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169755,0.002886,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169755,0.002886,-0.004249,0.249964,0,0);}
.m64_c00226{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);}
.m5f_c00226{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);}
.m52_c00226{transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);}
.mdc_c00226{transform:matrix(0.171624,0.003261,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171624,0.003261,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171624,0.003261,-0.004749,0.249955,0,0);}
.m30_c00226{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);}
.mcd_c00226{transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174915,0.002974,-0.004249,0.249964,0,0);}
.m9f_c00226{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);}
.m16_c00226{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);}
.m71_c00226{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);}
.m49_c00226{transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175894,0.001935,-0.002750,0.249985,0,0);}
.m5a_c00226{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.md9_c00226{transform:matrix(0.176335,0.002998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176335,0.002998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176335,0.002998,-0.004249,0.249964,0,0);}
.m81_c00226{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);}
.m5e_c00226{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);}
.m1e_c00226{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);}
.m6_c00226{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);}
.m22_c00226{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);}
.mb4_c00226{transform:matrix(0.180087,0.002881,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180087,0.002881,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180087,0.002881,-0.003999,0.249968,0,0);}
.m4e_c00226{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);}
.m4f_c00226{transform:matrix(0.180294,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180294,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180294,0.001983,-0.002750,0.249985,0,0);}
.mc6_c00226{transform:matrix(0.180349,0.003066,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180349,0.003066,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180349,0.003066,-0.004249,0.249964,0,0);}
.m18_c00226{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);}
.m54_c00226{transform:matrix(0.181649,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181649,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181649,0.001998,-0.002750,0.249985,0,0);}
.mcb_c00226{transform:matrix(0.182689,0.003106,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182689,0.003106,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182689,0.003106,-0.004249,0.249964,0,0);}
.ma_c00226{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);}
.ma8_c00226{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);}
.m40_c00226{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);}
.mdf_c00226{transform:matrix(0.184777,0.003511,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184777,0.003511,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184777,0.003511,-0.004749,0.249955,0,0);}
.m2c_c00226{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);}
.m95_c00226{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);}
.m31_c00226{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);}
.mb8_c00226{transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185551,0.002969,-0.003999,0.249968,0,0);}
.ma1_c00226{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);}
.m7a_c00226{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);}
.mde_c00226{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);}
.mdb_c00226{transform:matrix(0.185791,0.003530,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185791,0.003530,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185791,0.003530,-0.004749,0.249955,0,0);}
.m55_c00226{transform:matrix(0.186014,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186014,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186014,0.002046,-0.002750,0.249985,0,0);}
.m98_c00226{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);}
.m92_c00226{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);}
.m19_c00226{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);}
.mc8_c00226{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);}
.m74_c00226{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);}
.m5b_c00226{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);}
.ma9_c00226{transform:matrix(0.189806,0.003037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189806,0.003037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189806,0.003037,-0.003999,0.249968,0,0);}
.m4b_c00226{transform:matrix(0.190458,0.002095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190458,0.002095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190458,0.002095,-0.002750,0.249985,0,0);}
.m2e_c00226{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);}
.m8c_c00226{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);}
.mc1_c00226{transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);}
.mf_c00226{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);}
.m6d_c00226{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);}
.m1f_c00226{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);}
.m17_c00226{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);}
.m8b_c00226{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);}
.m78_c00226{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);}
.mcf_c00226{transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);}
.m6e_c00226{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mae_c00226{transform:matrix(0.194935,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194935,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194935,0.003119,-0.003999,0.249968,0,0);}
.m68_c00226{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);}
.m63_c00226{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);}
.m8a_c00226{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);}
.mbd_c00226{transform:matrix(0.195787,0.003328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195787,0.003328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195787,0.003328,-0.004249,0.249964,0,0);}
.m5_c00226{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);}
.m37_c00226{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);}
.m53_c00226{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);}
.mbc_c00226{transform:matrix(0.196642,0.003343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196642,0.003343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196642,0.003343,-0.004249,0.249964,0,0);}
.m87_c00226{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);}
.m29_c00226{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);}
.m7c_c00226{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);}
.m8f_c00226{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);}
.m86_c00226{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);}
.m2_c00226{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);}
.mb2_c00226{transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);}
.m50_c00226{transform:matrix(0.198908,0.002188,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198908,0.002188,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198908,0.002188,-0.002750,0.249985,0,0);}
.mdd_c00226{transform:matrix(0.199414,0.003789,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199414,0.003789,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199414,0.003789,-0.004749,0.249955,0,0);}
.m25_c00226{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);}
.mb3_c00226{transform:matrix(0.199624,0.003194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199624,0.003194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199624,0.003194,-0.003999,0.249968,0,0);}
.mab_c00226{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);}
.m62_c00226{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);}
.m4c_c00226{transform:matrix(0.200438,0.002205,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200438,0.002205,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200438,0.002205,-0.002750,0.249985,0,0);}
.md4_c00226{transform:matrix(0.200621,0.003411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200621,0.003411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200621,0.003411,-0.004249,0.249964,0,0);}
.m88_c00226{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);}
.mc3_c00226{transform:matrix(0.201121,0.003419,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201121,0.003419,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201121,0.003419,-0.004249,0.249964,0,0);}
.m80_c00226{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);}
.m61_c00226{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);}
.m9b_c00226{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);}
.m79_c00226{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);}
.m9c_c00226{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);}
.md1_c00226{transform:matrix(0.202586,0.003444,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202586,0.003444,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202586,0.003444,-0.004249,0.249964,0,0);}
.m15_c00226{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);}
.m97_c00226{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);}
.m6f_c00226{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);}
.m82_c00226{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);}
.m65_c00226{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);}
.mb_c00226{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);}
.m67_c00226{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);}
.md0_c00226{transform:matrix(0.205305,0.003490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205305,0.003490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205305,0.003490,-0.004249,0.249964,0,0);}
.m96_c00226{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);}
.mac_c00226{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);}
.m85_c00226{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);}
.m3a_c00226{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);}
.m1_c00226{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);}
.m21_c00226{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);}
.m7b_c00226{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);}
.mc5_c00226{transform:matrix(0.206820,0.003516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206820,0.003516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206820,0.003516,-0.004249,0.249964,0,0);}
.mcc_c00226{transform:matrix(0.206840,0.003516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206840,0.003516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206840,0.003516,-0.004249,0.249964,0,0);}
.m32_c00226{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);}
.m5c_c00226{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);}
.mbb_c00226{transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);}
.m9_c00226{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);}
.mbe_c00226{transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208005,0.003536,-0.004249,0.249964,0,0);}
.m99_c00226{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);}
.m76_c00226{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);}
.m7e_c00226{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);}
.mb6_c00226{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);}
.md8_c00226{transform:matrix(0.209865,0.003568,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209865,0.003568,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209865,0.003568,-0.004249,0.249964,0,0);}
.m66_c00226{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);}
.m20_c00226{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);}
.m9a_c00226{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);}
.m89_c00226{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);}
.m46_c00226{transform:matrix(0.212442,0.002337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212442,0.002337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212442,0.002337,-0.002750,0.249985,0,0);}
.m3_c00226{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);}
.m8e_c00226{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);}
.m3f_c00226{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);}
.m2a_c00226{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);}
.m1a_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);}
.m24_c00226{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);}
.m72_c00226{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);}
.ma0_c00226{transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{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);}
.mda_c00226{transform:matrix(0.215836,0.004101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215836,0.004101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215836,0.004101,-0.004749,0.249955,0,0);}
.m70_c00226{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);}
.m10_c00226{transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);}
.mbf_c00226{transform:matrix(0.216879,0.003687,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216879,0.003687,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216879,0.003687,-0.004249,0.249964,0,0);}
.m27_c00226{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);}
.mb0_c00226{transform:matrix(0.217322,0.003477,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217322,0.003477,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217322,0.003477,-0.003999,0.249968,0,0);}
.ma6_c00226{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);}
.m73_c00226{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);}
.mc2_c00226{transform:matrix(0.218703,0.003718,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218703,0.003718,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218703,0.003718,-0.004249,0.249964,0,0);}
.md6_c00226{transform:matrix(0.218848,0.003720,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218848,0.003720,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218848,0.003720,-0.004249,0.249964,0,0);}
.mb5_c00226{transform:matrix(0.219192,0.003507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219192,0.003507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219192,0.003507,-0.003999,0.249968,0,0);}
.ma5_c00226{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);}
.me_c00226{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.md2_c00226{transform:matrix(0.221843,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221843,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221843,0.003771,-0.004249,0.249964,0,0);}
.m48_c00226{transform:matrix(0.222277,0.002445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222277,0.002445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222277,0.002445,-0.002750,0.249985,0,0);}
.mc_c00226{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{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);}
.m94_c00226{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);}
.m75_c00226{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);}
.m2d_c00226{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);}
.m1d_c00226{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);}
.m0_c00226{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.m8d_c00226{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);}
.m47_c00226{transform:matrix(0.229556,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229556,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229556,0.002525,-0.002750,0.249985,0,0);}
.m38_c00226{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);}
.m7d_c00226{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);}
.m8_c00226{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);}
.m42_c00226{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);}
.m13_c00226{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);}
.m7f_c00226{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.ma3_c00226{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);}
.m6b_c00226{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);}
.m2b_c00226{transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);}
.m41_c00226{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);}
.mb1_c00226{transform:matrix(0.241819,0.003869,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241819,0.003869,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241819,0.003869,-0.003999,0.249968,0,0);}
.m45_c00226{transform:matrix(0.242860,0.002671,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242860,0.002671,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242860,0.002671,-0.002750,0.249985,0,0);}
.m12_c00226{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);}
.m35_c00226{transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);}
.m33_c00226{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);}
.ma2_c00226{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00226{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);}
.m11_c00226{transform:matrix(0.257050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257050,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);}
.mb7_c00226{transform:matrix(0.259182,0.004147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259182,0.004147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259182,0.004147,-0.003999,0.249968,0,0);}
.m28_c00226{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);}
.m9e_c00226{transform:matrix(0.271325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271325,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{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);}
.m3c_c00226{transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);}
.m6c_c00226{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.311745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311745,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);}
.mc0_c00226{transform:matrix(0.353539,0.006010,-0.004249,0.249964,0,0);-ms-transform:matrix(0.353539,0.006010,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.353539,0.006010,-0.004249,0.249964,0,0);}
.m1b_c00226{transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{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);}
.mc9_c00226{transform:matrix(0.364647,0.006199,-0.004249,0.249964,0,0);-ms-transform:matrix(0.364647,0.006199,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.364647,0.006199,-0.004249,0.249964,0,0);}
.maf_c00226{transform:matrix(0.374187,0.005987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.374187,0.005987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.374187,0.005987,-0.003999,0.249968,0,0);}
.m59_c00226{transform:matrix(0.415450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415450,0.000000,0.000000,0.250000,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;}
.fs10_c00226{font-size:48.306979px;}
.fse_c00226{font-size:50.406451px;}
.fsf_c00226{font-size:52.506720px;}
.fs12_c00226{font-size:53.557737px;}
.fs13_c00226{font-size:57.760423px;}
.fsd_c00226{font-size:61.950000px;}
.fs9_c00226{font-size:61.953748px;}
.fs11_c00226{font-size:61.958951px;}
.fs4_c00226{font-size:65.100000px;}
.fsc_c00226{font-size:66.150000px;}
.fs2_c00226{font-size:67.200000px;}
.fs1_c00226{font-size:68.250000px;}
.fs0_c00226{font-size:69.300000px;}
.fs3_c00226{font-size:70.350000px;}
.fs5_c00226{font-size:71.400000px;}
.fsa_c00226{font-size:71.404320px;}
.fs8_c00226{font-size:72.450000px;}
.fs6_c00226{font-size:73.500000px;}
.fsb_c00226{font-size:76.650000px;}
.fs7_c00226{font-size:103.950000px;}
.y0_c00226{bottom:0.000000px;}
.yb7_c00226{bottom:162.525339px;}
.yb6_c00226{bottom:162.951158px;}
.yb5_c00226{bottom:163.710170px;}
.yb4_c00226{bottom:164.706872px;}
.yb3_c00226{bottom:165.074522px;}
.yb2_c00226{bottom:166.384496px;}
.yb1_c00226{bottom:166.861500px;}
.yb0_c00226{bottom:178.456513px;}
.yaf_c00226{bottom:178.565598px;}
.yae_c00226{bottom:179.254080px;}
.yad_c00226{bottom:180.035853px;}
.yac_c00226{bottom:180.148202px;}
.yab_c00226{bottom:181.343671px;}
.yaa_c00226{bottom:181.747827px;}
.ya9_c00226{bottom:182.386756px;}
.ya8_c00226{bottom:182.788587px;}
.ya7_c00226{bottom:193.954427px;}
.ya6_c00226{bottom:194.923248px;}
.ya5_c00226{bottom:195.355422px;}
.ya4_c00226{bottom:195.621209px;}
.ya3_c00226{bottom:196.340946px;}
.ya2_c00226{bottom:197.108445px;}
.ya1_c00226{bottom:197.365460px;}
.ya0_c00226{bottom:197.610336px;}
.y9f_c00226{bottom:198.178170px;}
.y9e_c00226{bottom:198.819673px;}
.y9d_c00226{bottom:199.302643px;}
.y9c_c00226{bottom:199.757844px;}
.y9b_c00226{bottom:200.597534px;}
.y9a_c00226{bottom:201.153000px;}
.y99_c00226{bottom:211.154462px;}
.y98_c00226{bottom:212.199350px;}
.y97_c00226{bottom:212.465697px;}
.y96_c00226{bottom:213.319794px;}
.y95_c00226{bottom:213.727616px;}
.y94_c00226{bottom:214.375953px;}
.y93_c00226{bottom:214.673334px;}
.y92_c00226{bottom:215.431500px;}
.y91_c00226{bottom:217.182552px;}
.y90_c00226{bottom:219.644028px;}
.y8f_c00226{bottom:220.326924px;}
.y8e_c00226{bottom:220.832196px;}
.y8d_c00226{bottom:221.402952px;}
.y8c_c00226{bottom:229.982232px;}
.y8b_c00226{bottom:230.631048px;}
.y8a_c00226{bottom:230.951040px;}
.y89_c00226{bottom:231.395328px;}
.y88_c00226{bottom:232.588608px;}
.y87_c00226{bottom:233.292960px;}
.y86_c00226{bottom:233.539848px;}
.y85_c00226{bottom:233.875176px;}
.y84_c00226{bottom:234.047952px;}
.y83_c00226{bottom:235.155048px;}
.y82_c00226{bottom:235.647384px;}
.y81_c00226{bottom:235.941240px;}
.y80_c00226{bottom:236.636664px;}
.y7f_c00226{bottom:237.333000px;}
.y7e_c00226{bottom:293.373000px;}
.y7d_c00226{bottom:294.187500px;}
.y7c_c00226{bottom:295.092000px;}
.y7b_c00226{bottom:295.378500px;}
.y7a_c00226{bottom:297.052500px;}
.y79_c00226{bottom:298.206000px;}
.y78_c00226{bottom:298.549500px;}
.y77_c00226{bottom:299.293500px;}
.y76_c00226{bottom:300.022500px;}
.y75_c00226{bottom:300.520500px;}
.y74_c00226{bottom:315.336000px;}
.y73_c00226{bottom:316.456500px;}
.y72_c00226{bottom:317.521500px;}
.y71_c00226{bottom:318.228000px;}
.y70_c00226{bottom:318.810000px;}
.y6f_c00226{bottom:320.286000px;}
.y6e_c00226{bottom:320.943000px;}
.y6d_c00226{bottom:321.840000px;}
.y6c_c00226{bottom:322.326000px;}
.y6b_c00226{bottom:323.200500px;}
.y6a_c00226{bottom:338.817000px;}
.y69_c00226{bottom:341.271000px;}
.y68_c00226{bottom:342.363000px;}
.y67_c00226{bottom:342.978000px;}
.y66_c00226{bottom:343.722000px;}
.y65_c00226{bottom:344.929500px;}
.y64_c00226{bottom:345.607500px;}
.y63_c00226{bottom:364.276500px;}
.y62_c00226{bottom:364.650000px;}
.y61_c00226{bottom:365.979000px;}
.y60_c00226{bottom:367.234500px;}
.y5f_c00226{bottom:367.780500px;}
.y5e_c00226{bottom:368.286000px;}
.y5d_c00226{bottom:387.042000px;}
.y5c_c00226{bottom:387.433500px;}
.y5b_c00226{bottom:387.657000px;}
.y5a_c00226{bottom:387.957000px;}
.y59_c00226{bottom:388.761000px;}
.y58_c00226{bottom:389.208000px;}
.y57_c00226{bottom:389.719500px;}
.y56_c00226{bottom:389.911500px;}
.y55_c00226{bottom:390.423000px;}
.y54_c00226{bottom:407.946000px;}
.y53_c00226{bottom:408.583500px;}
.y52_c00226{bottom:408.946500px;}
.y51_c00226{bottom:409.839000px;}
.y50_c00226{bottom:410.164500px;}
.y4f_c00226{bottom:410.811000px;}
.y4e_c00226{bottom:411.369000px;}
.y4d_c00226{bottom:412.062000px;}
.y4c_c00226{bottom:412.671000px;}
.y4b_c00226{bottom:413.373000px;}
.y4a_c00226{bottom:430.597500px;}
.y49_c00226{bottom:431.379000px;}
.y48_c00226{bottom:431.811000px;}
.y47_c00226{bottom:432.268500px;}
.y46_c00226{bottom:432.948000px;}
.y45_c00226{bottom:433.639500px;}
.y44_c00226{bottom:434.334000px;}
.y43_c00226{bottom:435.363000px;}
.y42_c00226{bottom:436.188000px;}
.y41_c00226{bottom:436.593000px;}
.y40_c00226{bottom:454.615500px;}
.y3f_c00226{bottom:454.732500px;}
.y3e_c00226{bottom:455.889000px;}
.y3d_c00226{bottom:456.397500px;}
.y3c_c00226{bottom:456.846000px;}
.y3b_c00226{bottom:457.429500px;}
.y3a_c00226{bottom:457.731000px;}
.y39_c00226{bottom:458.100000px;}
.y38_c00226{bottom:458.655000px;}
.y37_c00226{bottom:459.001500px;}
.y36_c00226{bottom:476.761500px;}
.y35_c00226{bottom:477.514500px;}
.y34_c00226{bottom:478.143000px;}
.y33_c00226{bottom:478.651500px;}
.y32_c00226{bottom:479.229000px;}
.y31_c00226{bottom:479.611500px;}
.y30_c00226{bottom:480.136500px;}
.y2f_c00226{bottom:502.684500px;}
.y2e_c00226{bottom:524.501415px;}
.y2d_c00226{bottom:525.255742px;}
.y2c_c00226{bottom:527.196631px;}
.y2b_c00226{bottom:527.851128px;}
.y2a_c00226{bottom:547.560465px;}
.y29_c00226{bottom:547.786168px;}
.y28_c00226{bottom:548.593530px;}
.y27_c00226{bottom:549.006888px;}
.y26_c00226{bottom:549.740659px;}
.y25_c00226{bottom:549.968755px;}
.y24_c00226{bottom:550.260294px;}
.y23_c00226{bottom:569.419053px;}
.y22_c00226{bottom:569.888181px;}
.y21_c00226{bottom:570.062850px;}
.y20_c00226{bottom:570.817873px;}
.y1f_c00226{bottom:571.789162px;}
.y1e_c00226{bottom:572.156865px;}
.y1d_c00226{bottom:572.671500px;}
.y1c_c00226{bottom:594.621000px;}
.y1b_c00226{bottom:609.952500px;}
.y1a_c00226{bottom:662.767500px;}
.y19_c00226{bottom:663.328500px;}
.y18_c00226{bottom:664.276500px;}
.y17_c00226{bottom:664.645500px;}
.y16_c00226{bottom:665.439000px;}
.y15_c00226{bottom:666.360000px;}
.y14_c00226{bottom:684.937500px;}
.y13_c00226{bottom:685.599000px;}
.y12_c00226{bottom:686.233500px;}
.y11_c00226{bottom:686.721000px;}
.y10_c00226{bottom:687.543000px;}
.yf_c00226{bottom:688.111500px;}
.ye_c00226{bottom:689.002500px;}
.yd_c00226{bottom:689.578500px;}
.yc_c00226{bottom:710.520000px;}
.yb_c00226{bottom:732.351000px;}
.ya_c00226{bottom:732.705000px;}
.y9_c00226{bottom:733.315500px;}
.y8_c00226{bottom:733.704000px;}
.y7_c00226{bottom:734.514000px;}
.y6_c00226{bottom:734.922000px;}
.y5_c00226{bottom:735.208500px;}
.y4_c00226{bottom:756.408000px;}
.y3_c00226{bottom:779.563500px;}
.y2_c00226{bottom:801.946500px;}
.y1_c00226{bottom:824.671500px;}
.h12_c00226{height:48.306979px;}
.h10_c00226{height:50.406451px;}
.h11_c00226{height:52.506720px;}
.h14_c00226{height:53.557737px;}
.h15_c00226{height:57.760423px;}
.hf_c00226{height:61.950000px;}
.hb_c00226{height:61.953748px;}
.h13_c00226{height:61.958951px;}
.h6_c00226{height:65.100000px;}
.he_c00226{height:66.150000px;}
.h4_c00226{height:67.200000px;}
.h3_c00226{height:68.250000px;}
.h2_c00226{height:69.300000px;}
.h5_c00226{height:70.350000px;}
.h7_c00226{height:71.400000px;}
.hc_c00226{height:71.404320px;}
.ha_c00226{height:72.450000px;}
.h8_c00226{height:73.500000px;}
.hd_c00226{height:76.650000px;}
.h9_c00226{height:103.950000px;}
.h1_c00226{height:1005.000000px;}
.h0_c00226{height:1005.150000px;}
.w1_c00226{width:713.250000px;}
.w0_c00226{width:713.550000px;}
.x0_c00226{left:0.000000px;}
.x90_c00226{left:47.865000px;}
.x74_c00226{left:73.242000px;}
.x7c_c00226{left:76.178436px;}
.x7d_c00226{left:99.941388px;}
.x82_c00226{left:101.592000px;}
.x2c_c00226{left:110.998500px;}
.x62_c00226{left:112.923000px;}
.x38_c00226{left:114.856500px;}
.x43_c00226{left:116.715760px;}
.x3d_c00226{left:117.856369px;}
.x1a_c00226{left:120.022500px;}
.x1_c00226{left:121.770000px;}
.x8b_c00226{left:127.576403px;}
.x46_c00226{left:133.920000px;}
.x6d_c00226{left:138.810000px;}
.x53_c00226{left:140.676000px;}
.x13_c00226{left:142.290000px;}
.x3e_c00226{left:144.359869px;}
.x20_c00226{left:147.148500px;}
.x1b_c00226{left:148.633500px;}
.x63_c00226{left:152.848500px;}
.x67_c00226{left:155.803500px;}
.x5e_c00226{left:157.252500px;}
.x2_c00226{left:158.760000px;}
.x44_c00226{left:160.395346px;}
.x39_c00226{left:161.641500px;}
.x27_c00226{left:164.235000px;}
.xd_c00226{left:173.070000px;}
.x6e_c00226{left:177.151500px;}
.x75_c00226{left:178.593000px;}
.x68_c00226{left:180.094500px;}
.x2d_c00226{left:181.804500px;}
.x83_c00226{left:183.660000px;}
.x14_c00226{left:184.950000px;}
.x8_c00226{left:188.730000px;}
.x54_c00226{left:192.250500px;}
.x3a_c00226{left:195.069000px;}
.x8c_c00226{left:201.860177px;}
.x21_c00226{left:208.978500px;}
.x30_c00226{left:210.330000px;}
.x32_c00226{left:214.380000px;}
.x3_c00226{left:216.540000px;}
.xe_c00226{left:218.700000px;}
.x47_c00226{left:219.780000px;}
.x64_c00226{left:223.893000px;}
.x9_c00226{left:225.720000px;}
.x8d_c00226{left:230.753156px;}
.x3f_c00226{left:231.802369px;}
.x28_c00226{left:232.824000px;}
.x6f_c00226{left:234.412500px;}
.x4e_c00226{left:236.883000px;}
.x84_c00226{left:238.846500px;}
.x22_c00226{left:240.028500px;}
.x2e_c00226{left:242.821500px;}
.x33_c00226{left:248.670000px;}
.x7e_c00226{left:251.993424px;}
.x5f_c00226{left:253.107000px;}
.x48_c00226{left:254.880000px;}
.x55_c00226{left:256.558500px;}
.x5a_c00226{left:257.944500px;}
.xa_c00226{left:262.980000px;}
.x4_c00226{left:264.600000px;}
.x15_c00226{left:267.840000px;}
.x40_c00226{left:269.380369px;}
.x1c_c00226{left:270.388500px;}
.x49_c00226{left:271.741500px;}
.x34_c00226{left:274.860000px;}
.x29_c00226{left:276.525000px;}
.x76_c00226{left:278.557500px;}
.x4f_c00226{left:281.769000px;}
.x31_c00226{left:283.770000px;}
.x23_c00226{left:287.818500px;}
.x45_c00226{left:289.788654px;}
.x70_c00226{left:295.084500px;}
.xf_c00226{left:298.350000px;}
.x56_c00226{left:300.004500px;}
.x65_c00226{left:303.808500px;}
.x16_c00226{left:306.180000px;}
.x5_c00226{left:307.260000px;}
.x1d_c00226{left:309.286500px;}
.x77_c00226{left:310.314000px;}
.x10_c00226{left:312.660000px;}
.x35_c00226{left:316.170000px;}
.x24_c00226{left:319.138500px;}
.x85_c00226{left:324.388500px;}
.x78_c00226{left:325.744500px;}
.x69_c00226{left:331.569000px;}
.x2a_c00226{left:339.757500px;}
.x41_c00226{left:342.776869px;}
.x2f_c00226{left:344.071500px;}
.x11_c00226{left:345.600000px;}
.x4a_c00226{left:347.334000px;}
.x6_c00226{left:350.460000px;}
.x17_c00226{left:351.810000px;}
.x50_c00226{left:355.368000px;}
.xb_c00226{left:356.940000px;}
.x6a_c00226{left:360.673500px;}
.x42_c00226{left:363.295369px;}
.x3b_c00226{left:367.885500px;}
.x1e_c00226{left:370.303500px;}
.x36_c00226{left:375.300000px;}
.x2b_c00226{left:377.287500px;}
.x8e_c00226{left:380.060280px;}
.x61_c00226{left:381.393000px;}
.x25_c00226{left:383.128500px;}
.x86_c00226{left:384.654000px;}
.x57_c00226{left:385.686000px;}
.x7_c00226{left:387.180000px;}
.x4b_c00226{left:395.439000px;}
.x60_c00226{left:396.475500px;}
.x71_c00226{left:398.223000px;}
.x1f_c00226{left:405.658500px;}
.x3c_c00226{left:410.533500px;}
.x26_c00226{left:413.098500px;}
.x58_c00226{left:414.238500px;}
.x37_c00226{left:415.530000px;}
.x18_c00226{left:417.960000px;}
.xc_c00226{left:425.520000px;}
.x87_c00226{left:426.991500px;}
.x8f_c00226{left:429.208779px;}
.x5b_c00226{left:431.026500px;}
.x19_c00226{left:436.860000px;}
.x59_c00226{left:441.228000px;}
.x88_c00226{left:442.626000px;}
.x51_c00226{left:444.372000px;}
.x72_c00226{left:445.792500px;}
.x6b_c00226{left:449.295000px;}
.x52_c00226{left:453.351000px;}
.x5c_c00226{left:456.987000px;}
.x89_c00226{left:468.048000px;}
.x79_c00226{left:472.114500px;}
.x12_c00226{left:476.550000px;}
.x73_c00226{left:488.641500px;}
.x4c_c00226{left:490.167000px;}
.x7a_c00226{left:492.114000px;}
.x7f_c00226{left:499.363500px;}
.x5d_c00226{left:502.506000px;}
.x6c_c00226{left:505.287000px;}
.x66_c00226{left:512.422500px;}
.x80_c00226{left:515.031000px;}
.x8a_c00226{left:525.037500px;}
.x7b_c00226{left:532.665000px;}
.x4d_c00226{left:552.937500px;}
.x81_c00226{left:576.495000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.fs10_c00226{font-size:42.939537pt;}
.fse_c00226{font-size:44.805734pt;}
.fsf_c00226{font-size:46.672640pt;}
.fs12_c00226{font-size:47.606878pt;}
.fs13_c00226{font-size:51.342598pt;}
.fsd_c00226{font-size:55.066667pt;}
.fs9_c00226{font-size:55.069998pt;}
.fs11_c00226{font-size:55.074623pt;}
.fs4_c00226{font-size:57.866667pt;}
.fsc_c00226{font-size:58.800000pt;}
.fs2_c00226{font-size:59.733333pt;}
.fs1_c00226{font-size:60.666667pt;}
.fs0_c00226{font-size:61.600000pt;}
.fs3_c00226{font-size:62.533333pt;}
.fs5_c00226{font-size:63.466667pt;}
.fsa_c00226{font-size:63.470506pt;}
.fs8_c00226{font-size:64.400000pt;}
.fs6_c00226{font-size:65.333333pt;}
.fsb_c00226{font-size:68.133333pt;}
.fs7_c00226{font-size:92.400000pt;}
.y0_c00226{bottom:0.000000pt;}
.yb7_c00226{bottom:144.466968pt;}
.yb6_c00226{bottom:144.845473pt;}
.yb5_c00226{bottom:145.520151pt;}
.yb4_c00226{bottom:146.406108pt;}
.yb3_c00226{bottom:146.732908pt;}
.yb2_c00226{bottom:147.897329pt;}
.yb1_c00226{bottom:148.321333pt;}
.yb0_c00226{bottom:158.628012pt;}
.yaf_c00226{bottom:158.724976pt;}
.yae_c00226{bottom:159.336960pt;}
.yad_c00226{bottom:160.031869pt;}
.yac_c00226{bottom:160.131735pt;}
.yab_c00226{bottom:161.194375pt;}
.yaa_c00226{bottom:161.553624pt;}
.ya9_c00226{bottom:162.121561pt;}
.ya8_c00226{bottom:162.478744pt;}
.ya7_c00226{bottom:172.403935pt;}
.ya6_c00226{bottom:173.265109pt;}
.ya5_c00226{bottom:173.649264pt;}
.ya4_c00226{bottom:173.885519pt;}
.ya3_c00226{bottom:174.525285pt;}
.ya2_c00226{bottom:175.207507pt;}
.ya1_c00226{bottom:175.435964pt;}
.ya0_c00226{bottom:175.653632pt;}
.y9f_c00226{bottom:176.158373pt;}
.y9e_c00226{bottom:176.728599pt;}
.y9d_c00226{bottom:177.157905pt;}
.y9c_c00226{bottom:177.562528pt;}
.y9b_c00226{bottom:178.308919pt;}
.y9a_c00226{bottom:178.802667pt;}
.y99_c00226{bottom:187.692855pt;}
.y98_c00226{bottom:188.621644pt;}
.y97_c00226{bottom:188.858397pt;}
.y96_c00226{bottom:189.617595pt;}
.y95_c00226{bottom:189.980103pt;}
.y94_c00226{bottom:190.556403pt;}
.y93_c00226{bottom:190.820741pt;}
.y92_c00226{bottom:191.494667pt;}
.y91_c00226{bottom:193.051157pt;}
.y90_c00226{bottom:195.239136pt;}
.y8f_c00226{bottom:195.846155pt;}
.y8e_c00226{bottom:196.295285pt;}
.y8d_c00226{bottom:196.802624pt;}
.y8c_c00226{bottom:204.428651pt;}
.y8b_c00226{bottom:205.005376pt;}
.y8a_c00226{bottom:205.289813pt;}
.y89_c00226{bottom:205.684736pt;}
.y88_c00226{bottom:206.745429pt;}
.y87_c00226{bottom:207.371520pt;}
.y86_c00226{bottom:207.590976pt;}
.y85_c00226{bottom:207.889045pt;}
.y84_c00226{bottom:208.042624pt;}
.y83_c00226{bottom:209.026709pt;}
.y82_c00226{bottom:209.464341pt;}
.y81_c00226{bottom:209.725547pt;}
.y80_c00226{bottom:210.343701pt;}
.y7f_c00226{bottom:210.962667pt;}
.y7e_c00226{bottom:260.776000pt;}
.y7d_c00226{bottom:261.500000pt;}
.y7c_c00226{bottom:262.304000pt;}
.y7b_c00226{bottom:262.558667pt;}
.y7a_c00226{bottom:264.046667pt;}
.y79_c00226{bottom:265.072000pt;}
.y78_c00226{bottom:265.377333pt;}
.y77_c00226{bottom:266.038667pt;}
.y76_c00226{bottom:266.686667pt;}
.y75_c00226{bottom:267.129333pt;}
.y74_c00226{bottom:280.298667pt;}
.y73_c00226{bottom:281.294667pt;}
.y72_c00226{bottom:282.241333pt;}
.y71_c00226{bottom:282.869333pt;}
.y70_c00226{bottom:283.386667pt;}
.y6f_c00226{bottom:284.698667pt;}
.y6e_c00226{bottom:285.282667pt;}
.y6d_c00226{bottom:286.080000pt;}
.y6c_c00226{bottom:286.512000pt;}
.y6b_c00226{bottom:287.289333pt;}
.y6a_c00226{bottom:301.170667pt;}
.y69_c00226{bottom:303.352000pt;}
.y68_c00226{bottom:304.322667pt;}
.y67_c00226{bottom:304.869333pt;}
.y66_c00226{bottom:305.530667pt;}
.y65_c00226{bottom:306.604000pt;}
.y64_c00226{bottom:307.206667pt;}
.y63_c00226{bottom:323.801333pt;}
.y62_c00226{bottom:324.133333pt;}
.y61_c00226{bottom:325.314667pt;}
.y60_c00226{bottom:326.430667pt;}
.y5f_c00226{bottom:326.916000pt;}
.y5e_c00226{bottom:327.365333pt;}
.y5d_c00226{bottom:344.037333pt;}
.y5c_c00226{bottom:344.385333pt;}
.y5b_c00226{bottom:344.584000pt;}
.y5a_c00226{bottom:344.850667pt;}
.y59_c00226{bottom:345.565333pt;}
.y58_c00226{bottom:345.962667pt;}
.y57_c00226{bottom:346.417333pt;}
.y56_c00226{bottom:346.588000pt;}
.y55_c00226{bottom:347.042667pt;}
.y54_c00226{bottom:362.618667pt;}
.y53_c00226{bottom:363.185333pt;}
.y52_c00226{bottom:363.508000pt;}
.y51_c00226{bottom:364.301333pt;}
.y50_c00226{bottom:364.590667pt;}
.y4f_c00226{bottom:365.165333pt;}
.y4e_c00226{bottom:365.661333pt;}
.y4d_c00226{bottom:366.277333pt;}
.y4c_c00226{bottom:366.818667pt;}
.y4b_c00226{bottom:367.442667pt;}
.y4a_c00226{bottom:382.753333pt;}
.y49_c00226{bottom:383.448000pt;}
.y48_c00226{bottom:383.832000pt;}
.y47_c00226{bottom:384.238667pt;}
.y46_c00226{bottom:384.842667pt;}
.y45_c00226{bottom:385.457333pt;}
.y44_c00226{bottom:386.074667pt;}
.y43_c00226{bottom:386.989333pt;}
.y42_c00226{bottom:387.722667pt;}
.y41_c00226{bottom:388.082667pt;}
.y40_c00226{bottom:404.102667pt;}
.y3f_c00226{bottom:404.206667pt;}
.y3e_c00226{bottom:405.234667pt;}
.y3d_c00226{bottom:405.686667pt;}
.y3c_c00226{bottom:406.085333pt;}
.y3b_c00226{bottom:406.604000pt;}
.y3a_c00226{bottom:406.872000pt;}
.y39_c00226{bottom:407.200000pt;}
.y38_c00226{bottom:407.693333pt;}
.y37_c00226{bottom:408.001333pt;}
.y36_c00226{bottom:423.788000pt;}
.y35_c00226{bottom:424.457333pt;}
.y34_c00226{bottom:425.016000pt;}
.y33_c00226{bottom:425.468000pt;}
.y32_c00226{bottom:425.981333pt;}
.y31_c00226{bottom:426.321333pt;}
.y30_c00226{bottom:426.788000pt;}
.y2f_c00226{bottom:446.830667pt;}
.y2e_c00226{bottom:466.223480pt;}
.y2d_c00226{bottom:466.893993pt;}
.y2c_c00226{bottom:468.619228pt;}
.y2b_c00226{bottom:469.201003pt;}
.y2a_c00226{bottom:486.720413pt;}
.y29_c00226{bottom:486.921039pt;}
.y28_c00226{bottom:487.638693pt;}
.y27_c00226{bottom:488.006123pt;}
.y26_c00226{bottom:488.658364pt;}
.y25_c00226{bottom:488.861116pt;}
.y24_c00226{bottom:489.120261pt;}
.y23_c00226{bottom:506.150269pt;}
.y22_c00226{bottom:506.567272pt;}
.y21_c00226{bottom:506.722533pt;}
.y20_c00226{bottom:507.393665pt;}
.y1f_c00226{bottom:508.257033pt;}
.y1e_c00226{bottom:508.583880pt;}
.y1d_c00226{bottom:509.041333pt;}
.y1c_c00226{bottom:528.552000pt;}
.y1b_c00226{bottom:542.180000pt;}
.y1a_c00226{bottom:589.126667pt;}
.y19_c00226{bottom:589.625333pt;}
.y18_c00226{bottom:590.468000pt;}
.y17_c00226{bottom:590.796000pt;}
.y16_c00226{bottom:591.501333pt;}
.y15_c00226{bottom:592.320000pt;}
.y14_c00226{bottom:608.833333pt;}
.y13_c00226{bottom:609.421333pt;}
.y12_c00226{bottom:609.985333pt;}
.y11_c00226{bottom:610.418667pt;}
.y10_c00226{bottom:611.149333pt;}
.yf_c00226{bottom:611.654667pt;}
.ye_c00226{bottom:612.446667pt;}
.yd_c00226{bottom:612.958667pt;}
.yc_c00226{bottom:631.573333pt;}
.yb_c00226{bottom:650.978667pt;}
.ya_c00226{bottom:651.293333pt;}
.y9_c00226{bottom:651.836000pt;}
.y8_c00226{bottom:652.181333pt;}
.y7_c00226{bottom:652.901333pt;}
.y6_c00226{bottom:653.264000pt;}
.y5_c00226{bottom:653.518667pt;}
.y4_c00226{bottom:672.362667pt;}
.y3_c00226{bottom:692.945333pt;}
.y2_c00226{bottom:712.841333pt;}
.y1_c00226{bottom:733.041333pt;}
.h12_c00226{height:42.939537pt;}
.h10_c00226{height:44.805734pt;}
.h11_c00226{height:46.672640pt;}
.h14_c00226{height:47.606878pt;}
.h15_c00226{height:51.342598pt;}
.hf_c00226{height:55.066667pt;}
.hb_c00226{height:55.069998pt;}
.h13_c00226{height:55.074623pt;}
.h6_c00226{height:57.866667pt;}
.he_c00226{height:58.800000pt;}
.h4_c00226{height:59.733333pt;}
.h3_c00226{height:60.666667pt;}
.h2_c00226{height:61.600000pt;}
.h5_c00226{height:62.533333pt;}
.h7_c00226{height:63.466667pt;}
.hc_c00226{height:63.470506pt;}
.ha_c00226{height:64.400000pt;}
.h8_c00226{height:65.333333pt;}
.hd_c00226{height:68.133333pt;}
.h9_c00226{height:92.400000pt;}
.h1_c00226{height:893.333333pt;}
.h0_c00226{height:893.466667pt;}
.w1_c00226{width:634.000000pt;}
.w0_c00226{width:634.266667pt;}
.x0_c00226{left:0.000000pt;}
.x90_c00226{left:42.546667pt;}
.x74_c00226{left:65.104000pt;}
.x7c_c00226{left:67.714165pt;}
.x7d_c00226{left:88.836789pt;}
.x82_c00226{left:90.304000pt;}
.x2c_c00226{left:98.665333pt;}
.x62_c00226{left:100.376000pt;}
.x38_c00226{left:102.094667pt;}
.x43_c00226{left:103.747343pt;}
.x3d_c00226{left:104.761217pt;}
.x1a_c00226{left:106.686667pt;}
.x1_c00226{left:108.240000pt;}
.x8b_c00226{left:113.401247pt;}
.x46_c00226{left:119.040000pt;}
.x6d_c00226{left:123.386667pt;}
.x53_c00226{left:125.045333pt;}
.x13_c00226{left:126.480000pt;}
.x3e_c00226{left:128.319884pt;}
.x20_c00226{left:130.798667pt;}
.x1b_c00226{left:132.118667pt;}
.x63_c00226{left:135.865333pt;}
.x67_c00226{left:138.492000pt;}
.x5e_c00226{left:139.780000pt;}
.x2_c00226{left:141.120000pt;}
.x44_c00226{left:142.573641pt;}
.x39_c00226{left:143.681333pt;}
.x27_c00226{left:145.986667pt;}
.xd_c00226{left:153.840000pt;}
.x6e_c00226{left:157.468000pt;}
.x75_c00226{left:158.749333pt;}
.x68_c00226{left:160.084000pt;}
.x2d_c00226{left:161.604000pt;}
.x83_c00226{left:163.253333pt;}
.x14_c00226{left:164.400000pt;}
.x8_c00226{left:167.760000pt;}
.x54_c00226{left:170.889333pt;}
.x3a_c00226{left:173.394667pt;}
.x8c_c00226{left:179.431268pt;}
.x21_c00226{left:185.758667pt;}
.x30_c00226{left:186.960000pt;}
.x32_c00226{left:190.560000pt;}
.x3_c00226{left:192.480000pt;}
.xe_c00226{left:194.400000pt;}
.x47_c00226{left:195.360000pt;}
.x64_c00226{left:199.016000pt;}
.x9_c00226{left:200.640000pt;}
.x8d_c00226{left:205.113916pt;}
.x3f_c00226{left:206.046551pt;}
.x28_c00226{left:206.954667pt;}
.x6f_c00226{left:208.366667pt;}
.x4e_c00226{left:210.562667pt;}
.x84_c00226{left:212.308000pt;}
.x22_c00226{left:213.358667pt;}
.x2e_c00226{left:215.841333pt;}
.x33_c00226{left:221.040000pt;}
.x7e_c00226{left:223.994155pt;}
.x5f_c00226{left:224.984000pt;}
.x48_c00226{left:226.560000pt;}
.x55_c00226{left:228.052000pt;}
.x5a_c00226{left:229.284000pt;}
.xa_c00226{left:233.760000pt;}
.x4_c00226{left:235.200000pt;}
.x15_c00226{left:238.080000pt;}
.x40_c00226{left:239.449217pt;}
.x1c_c00226{left:240.345333pt;}
.x49_c00226{left:241.548000pt;}
.x34_c00226{left:244.320000pt;}
.x29_c00226{left:245.800000pt;}
.x76_c00226{left:247.606667pt;}
.x4f_c00226{left:250.461333pt;}
.x31_c00226{left:252.240000pt;}
.x23_c00226{left:255.838667pt;}
.x45_c00226{left:257.589915pt;}
.x70_c00226{left:262.297333pt;}
.xf_c00226{left:265.200000pt;}
.x56_c00226{left:266.670667pt;}
.x65_c00226{left:270.052000pt;}
.x16_c00226{left:272.160000pt;}
.x5_c00226{left:273.120000pt;}
.x1d_c00226{left:274.921333pt;}
.x77_c00226{left:275.834667pt;}
.x10_c00226{left:277.920000pt;}
.x35_c00226{left:281.040000pt;}
.x24_c00226{left:283.678667pt;}
.x85_c00226{left:288.345333pt;}
.x78_c00226{left:289.550667pt;}
.x69_c00226{left:294.728000pt;}
.x2a_c00226{left:302.006667pt;}
.x41_c00226{left:304.690551pt;}
.x2f_c00226{left:305.841333pt;}
.x11_c00226{left:307.200000pt;}
.x4a_c00226{left:308.741333pt;}
.x6_c00226{left:311.520000pt;}
.x17_c00226{left:312.720000pt;}
.x50_c00226{left:315.882667pt;}
.xb_c00226{left:317.280000pt;}
.x6a_c00226{left:320.598667pt;}
.x42_c00226{left:322.929217pt;}
.x3b_c00226{left:327.009333pt;}
.x1e_c00226{left:329.158667pt;}
.x36_c00226{left:333.600000pt;}
.x2b_c00226{left:335.366667pt;}
.x8e_c00226{left:337.831360pt;}
.x61_c00226{left:339.016000pt;}
.x25_c00226{left:340.558667pt;}
.x86_c00226{left:341.914667pt;}
.x57_c00226{left:342.832000pt;}
.x7_c00226{left:344.160000pt;}
.x4b_c00226{left:351.501333pt;}
.x60_c00226{left:352.422667pt;}
.x71_c00226{left:353.976000pt;}
.x1f_c00226{left:360.585333pt;}
.x3c_c00226{left:364.918667pt;}
.x26_c00226{left:367.198667pt;}
.x58_c00226{left:368.212000pt;}
.x37_c00226{left:369.360000pt;}
.x18_c00226{left:371.520000pt;}
.xc_c00226{left:378.240000pt;}
.x87_c00226{left:379.548000pt;}
.x8f_c00226{left:381.518915pt;}
.x5b_c00226{left:383.134667pt;}
.x19_c00226{left:388.320000pt;}
.x59_c00226{left:392.202667pt;}
.x88_c00226{left:393.445333pt;}
.x51_c00226{left:394.997333pt;}
.x72_c00226{left:396.260000pt;}
.x6b_c00226{left:399.373333pt;}
.x52_c00226{left:402.978667pt;}
.x5c_c00226{left:406.210667pt;}
.x89_c00226{left:416.042667pt;}
.x79_c00226{left:419.657333pt;}
.x12_c00226{left:423.600000pt;}
.x73_c00226{left:434.348000pt;}
.x4c_c00226{left:435.704000pt;}
.x7a_c00226{left:437.434667pt;}
.x7f_c00226{left:443.878667pt;}
.x5d_c00226{left:446.672000pt;}
.x6c_c00226{left:449.144000pt;}
.x66_c00226{left:455.486667pt;}
.x80_c00226{left:457.805333pt;}
.x8a_c00226{left:466.700000pt;}
.x7b_c00226{left:473.480000pt;}
.x4d_c00226{left:491.500000pt;}
.x81_c00226{left:512.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_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_ef4e99a7aa2876b3106553d3.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;}
.mfc_c00227{transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-ms-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);}
.ma4_c00227{transform:matrix(0.012135,-0.000109,0.002250,0.249990,0,0);-ms-transform:matrix(0.012135,-0.000109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.012135,-0.000109,0.002250,0.249990,0,0);}
.m108_c00227{transform:matrix(0.017044,-0.000153,0.002250,0.249990,0,0);-ms-transform:matrix(0.017044,-0.000153,0.002250,0.249990,0,0);-webkit-transform:matrix(0.017044,-0.000153,0.002250,0.249990,0,0);}
.m67_c00227{transform:matrix(0.028094,-0.000253,0.002250,0.249990,0,0);-ms-transform:matrix(0.028094,-0.000253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.028094,-0.000253,0.002250,0.249990,0,0);}
.m105_c00227{transform:matrix(0.094821,-0.000853,0.002250,0.249990,0,0);-ms-transform:matrix(0.094821,-0.000853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.094821,-0.000853,0.002250,0.249990,0,0);}
.m107_c00227{transform:matrix(0.113140,-0.001018,0.002250,0.249990,0,0);-ms-transform:matrix(0.113140,-0.001018,0.002250,0.249990,0,0);-webkit-transform:matrix(0.113140,-0.001018,0.002250,0.249990,0,0);}
.m86_c00227{transform:matrix(0.143359,-0.001290,0.002250,0.249990,0,0);-ms-transform:matrix(0.143359,-0.001290,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143359,-0.001290,0.002250,0.249990,0,0);}
.m61_c00227{transform:matrix(0.146939,-0.001322,0.002250,0.249990,0,0);-ms-transform:matrix(0.146939,-0.001322,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146939,-0.001322,0.002250,0.249990,0,0);}
.m2e_c00227{transform:matrix(0.149664,-0.001347,0.002250,0.249990,0,0);-ms-transform:matrix(0.149664,-0.001347,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149664,-0.001347,0.002250,0.249990,0,0);}
.md8_c00227{transform:matrix(0.151824,-0.001366,0.002250,0.249990,0,0);-ms-transform:matrix(0.151824,-0.001366,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151824,-0.001366,0.002250,0.249990,0,0);}
.m10_c00227{transform:matrix(0.152264,-0.001370,0.002250,0.249990,0,0);-ms-transform:matrix(0.152264,-0.001370,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152264,-0.001370,0.002250,0.249990,0,0);}
.mc7_c00227{transform:matrix(0.152414,-0.001372,0.002250,0.249990,0,0);-ms-transform:matrix(0.152414,-0.001372,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152414,-0.001372,0.002250,0.249990,0,0);}
.ma2_c00227{transform:matrix(0.152714,-0.001374,0.002250,0.249990,0,0);-ms-transform:matrix(0.152714,-0.001374,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152714,-0.001374,0.002250,0.249990,0,0);}
.m4a_c00227{transform:matrix(0.157294,-0.001416,0.002250,0.249990,0,0);-ms-transform:matrix(0.157294,-0.001416,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157294,-0.001416,0.002250,0.249990,0,0);}
.md_c00227{transform:matrix(0.158604,-0.001427,0.002250,0.249990,0,0);-ms-transform:matrix(0.158604,-0.001427,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158604,-0.001427,0.002250,0.249990,0,0);}
.m85_c00227{transform:matrix(0.158759,-0.001429,0.002250,0.249990,0,0);-ms-transform:matrix(0.158759,-0.001429,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158759,-0.001429,0.002250,0.249990,0,0);}
.m1e_c00227{transform:matrix(0.160044,-0.001440,0.002250,0.249990,0,0);-ms-transform:matrix(0.160044,-0.001440,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160044,-0.001440,0.002250,0.249990,0,0);}
.ma0_c00227{transform:matrix(0.161368,-0.001452,0.002250,0.249990,0,0);-ms-transform:matrix(0.161368,-0.001452,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161368,-0.001452,0.002250,0.249990,0,0);}
.m30_c00227{transform:matrix(0.161563,-0.001454,0.002250,0.249990,0,0);-ms-transform:matrix(0.161563,-0.001454,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161563,-0.001454,0.002250,0.249990,0,0);}
.m59_c00227{transform:matrix(0.161888,-0.001457,0.002250,0.249990,0,0);-ms-transform:matrix(0.161888,-0.001457,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161888,-0.001457,0.002250,0.249990,0,0);}
.mc4_c00227{transform:matrix(0.162478,-0.001462,0.002250,0.249990,0,0);-ms-transform:matrix(0.162478,-0.001462,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162478,-0.001462,0.002250,0.249990,0,0);}
.m75_c00227{transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);-ms-transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);}
.m5d_c00227{transform:matrix(0.163278,-0.001470,0.002250,0.249990,0,0);-ms-transform:matrix(0.163278,-0.001470,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163278,-0.001470,0.002250,0.249990,0,0);}
.mcd_c00227{transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);-ms-transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);}
.m72_c00227{transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);-ms-transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);}
.m8e_c00227{transform:matrix(0.164833,-0.001483,0.002250,0.249990,0,0);-ms-transform:matrix(0.164833,-0.001483,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164833,-0.001483,0.002250,0.249990,0,0);}
.m25_c00227{transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);-ms-transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);}
.md5_c00227{transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);}
.mba_c00227{transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);-ms-transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);}
.m9f_c00227{transform:matrix(0.166008,-0.001494,0.002250,0.249990,0,0);-ms-transform:matrix(0.166008,-0.001494,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166008,-0.001494,0.002250,0.249990,0,0);}
.ma3_c00227{transform:matrix(0.166988,-0.001503,0.002250,0.249990,0,0);-ms-transform:matrix(0.166988,-0.001503,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166988,-0.001503,0.002250,0.249990,0,0);}
.m77_c00227{transform:matrix(0.167488,-0.001507,0.002250,0.249990,0,0);-ms-transform:matrix(0.167488,-0.001507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167488,-0.001507,0.002250,0.249990,0,0);}
.mf8_c00227{transform:matrix(0.167713,-0.001509,0.002250,0.249990,0,0);-ms-transform:matrix(0.167713,-0.001509,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167713,-0.001509,0.002250,0.249990,0,0);}
.m87_c00227{transform:matrix(0.168003,-0.001512,0.002250,0.249990,0,0);-ms-transform:matrix(0.168003,-0.001512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168003,-0.001512,0.002250,0.249990,0,0);}
.m60_c00227{transform:matrix(0.168068,-0.001513,0.002250,0.249990,0,0);-ms-transform:matrix(0.168068,-0.001513,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168068,-0.001513,0.002250,0.249990,0,0);}
.mc_c00227{transform:matrix(0.168383,-0.001515,0.002250,0.249990,0,0);-ms-transform:matrix(0.168383,-0.001515,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168383,-0.001515,0.002250,0.249990,0,0);}
.m18_c00227{transform:matrix(0.169918,-0.001529,0.002250,0.249990,0,0);-ms-transform:matrix(0.169918,-0.001529,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169918,-0.001529,0.002250,0.249990,0,0);}
.ma1_c00227{transform:matrix(0.170338,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170338,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170338,-0.001533,0.002250,0.249990,0,0);}
.m7_c00227{transform:matrix(0.171423,-0.001543,0.002250,0.249990,0,0);-ms-transform:matrix(0.171423,-0.001543,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171423,-0.001543,0.002250,0.249990,0,0);}
.m78_c00227{transform:matrix(0.171693,-0.001545,0.002250,0.249990,0,0);-ms-transform:matrix(0.171693,-0.001545,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171693,-0.001545,0.002250,0.249990,0,0);}
.m88_c00227{transform:matrix(0.172888,-0.001556,0.002250,0.249990,0,0);-ms-transform:matrix(0.172888,-0.001556,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172888,-0.001556,0.002250,0.249990,0,0);}
.mc9_c00227{transform:matrix(0.173108,-0.001558,0.002250,0.249990,0,0);-ms-transform:matrix(0.173108,-0.001558,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173108,-0.001558,0.002250,0.249990,0,0);}
.m5_c00227{transform:matrix(0.173123,-0.001558,0.002250,0.249990,0,0);-ms-transform:matrix(0.173123,-0.001558,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173123,-0.001558,0.002250,0.249990,0,0);}
.md3_c00227{transform:matrix(0.173278,-0.001560,0.002250,0.249990,0,0);-ms-transform:matrix(0.173278,-0.001560,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173278,-0.001560,0.002250,0.249990,0,0);}
.mf1_c00227{transform:matrix(0.173563,-0.001562,0.002250,0.249990,0,0);-ms-transform:matrix(0.173563,-0.001562,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173563,-0.001562,0.002250,0.249990,0,0);}
.mf_c00227{transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);-ms-transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);}
.m5e_c00227{transform:matrix(0.174828,-0.001573,0.002250,0.249990,0,0);-ms-transform:matrix(0.174828,-0.001573,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174828,-0.001573,0.002250,0.249990,0,0);}
.m37_c00227{transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);}
.mf9_c00227{transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);}
.mca_c00227{transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);}
.m50_c00227{transform:matrix(0.175908,-0.001583,0.002250,0.249990,0,0);-ms-transform:matrix(0.175908,-0.001583,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175908,-0.001583,0.002250,0.249990,0,0);}
.m4c_c00227{transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);-ms-transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);}
.m55_c00227{transform:matrix(0.177138,-0.001594,0.002250,0.249990,0,0);-ms-transform:matrix(0.177138,-0.001594,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177138,-0.001594,0.002250,0.249990,0,0);}
.me1_c00227{transform:matrix(0.177253,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177253,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177253,-0.001595,0.002250,0.249990,0,0);}
.mc5_c00227{transform:matrix(0.177963,-0.001602,0.002250,0.249990,0,0);-ms-transform:matrix(0.177963,-0.001602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177963,-0.001602,0.002250,0.249990,0,0);}
.m42_c00227{transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);-ms-transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);}
.md7_c00227{transform:matrix(0.178903,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178903,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178903,-0.001610,0.002250,0.249990,0,0);}
.m21_c00227{transform:matrix(0.179888,-0.001619,0.002250,0.249990,0,0);-ms-transform:matrix(0.179888,-0.001619,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179888,-0.001619,0.002250,0.249990,0,0);}
.m4_c00227{transform:matrix(0.180683,-0.001626,0.002250,0.249990,0,0);-ms-transform:matrix(0.180683,-0.001626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180683,-0.001626,0.002250,0.249990,0,0);}
.m97_c00227{transform:matrix(0.180703,-0.001626,0.002250,0.249990,0,0);-ms-transform:matrix(0.180703,-0.001626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180703,-0.001626,0.002250,0.249990,0,0);}
.m12_c00227{transform:matrix(0.180768,-0.001627,0.002250,0.249990,0,0);-ms-transform:matrix(0.180768,-0.001627,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180768,-0.001627,0.002250,0.249990,0,0);}
.mf2_c00227{transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);-ms-transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181963,-0.001638,0.002250,0.249990,0,0);}
.m9a_c00227{transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);-ms-transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);}
.md0_c00227{transform:matrix(0.182548,-0.001643,0.002250,0.249990,0,0);-ms-transform:matrix(0.182548,-0.001643,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182548,-0.001643,0.002250,0.249990,0,0);}
.m6_c00227{transform:matrix(0.182763,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182763,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182763,-0.001645,0.002250,0.249990,0,0);}
.m46_c00227{transform:matrix(0.182808,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182808,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182808,-0.001645,0.002250,0.249990,0,0);}
.me6_c00227{transform:matrix(0.183243,-0.001649,0.002250,0.249990,0,0);-ms-transform:matrix(0.183243,-0.001649,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183243,-0.001649,0.002250,0.249990,0,0);}
.m3d_c00227{transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);}
.m33_c00227{transform:matrix(0.183793,-0.001654,0.002250,0.249990,0,0);-ms-transform:matrix(0.183793,-0.001654,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183793,-0.001654,0.002250,0.249990,0,0);}
.md6_c00227{transform:matrix(0.183878,-0.001655,0.002250,0.249990,0,0);-ms-transform:matrix(0.183878,-0.001655,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183878,-0.001655,0.002250,0.249990,0,0);}
.m2d_c00227{transform:matrix(0.184158,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184158,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184158,-0.001657,0.002250,0.249990,0,0);}
.m5b_c00227{transform:matrix(0.184458,-0.001660,0.002250,0.249990,0,0);-ms-transform:matrix(0.184458,-0.001660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184458,-0.001660,0.002250,0.249990,0,0);}
.m66_c00227{transform:matrix(0.184813,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184813,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184813,-0.001663,0.002250,0.249990,0,0);}
.m102_c00227{transform:matrix(0.184903,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184903,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184903,-0.001664,0.002250,0.249990,0,0);}
.mb2_c00227{transform:matrix(0.185412,-0.001669,0.002250,0.249990,0,0);-ms-transform:matrix(0.185412,-0.001669,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185412,-0.001669,0.002250,0.249990,0,0);}
.mf6_c00227{transform:matrix(0.185967,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.185967,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185967,-0.001674,0.002250,0.249990,0,0);}
.m89_c00227{transform:matrix(0.186952,-0.001683,0.002250,0.249990,0,0);-ms-transform:matrix(0.186952,-0.001683,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186952,-0.001683,0.002250,0.249990,0,0);}
.m9e_c00227{transform:matrix(0.187232,-0.001685,0.002250,0.249990,0,0);-ms-transform:matrix(0.187232,-0.001685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187232,-0.001685,0.002250,0.249990,0,0);}
.ma7_c00227{transform:matrix(0.187822,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187822,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187822,-0.001690,0.002250,0.249990,0,0);}
.mdd_c00227{transform:matrix(0.188182,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188182,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188182,-0.001694,0.002250,0.249990,0,0);}
.m93_c00227{transform:matrix(0.188307,-0.001695,0.002250,0.249990,0,0);-ms-transform:matrix(0.188307,-0.001695,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188307,-0.001695,0.002250,0.249990,0,0);}
.mab_c00227{transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);-ms-transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188842,-0.001700,0.002250,0.249990,0,0);}
.m31_c00227{transform:matrix(0.189332,-0.001704,0.002250,0.249990,0,0);-ms-transform:matrix(0.189332,-0.001704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189332,-0.001704,0.002250,0.249990,0,0);}
.m99_c00227{transform:matrix(0.189892,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189892,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189892,-0.001709,0.002250,0.249990,0,0);}
.mb_c00227{transform:matrix(0.189962,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.189962,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189962,-0.001710,0.002250,0.249990,0,0);}
.m16_c00227{transform:matrix(0.190022,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.190022,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190022,-0.001710,0.002250,0.249990,0,0);}
.m101_c00227{transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);-ms-transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);}
.mc6_c00227{transform:matrix(0.190087,-0.001711,0.002250,0.249990,0,0);-ms-transform:matrix(0.190087,-0.001711,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190087,-0.001711,0.002250,0.249990,0,0);}
.m76_c00227{transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);-ms-transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);}
.m24_c00227{transform:matrix(0.191412,-0.001723,0.002250,0.249990,0,0);-ms-transform:matrix(0.191412,-0.001723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191412,-0.001723,0.002250,0.249990,0,0);}
.ma8_c00227{transform:matrix(0.191597,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191597,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191597,-0.001724,0.002250,0.249990,0,0);}
.maa_c00227{transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);}
.m80_c00227{transform:matrix(0.192067,-0.001729,0.002250,0.249990,0,0);-ms-transform:matrix(0.192067,-0.001729,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192067,-0.001729,0.002250,0.249990,0,0);}
.m8c_c00227{transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);-ms-transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);}
.m34_c00227{transform:matrix(0.192907,-0.001736,0.002250,0.249990,0,0);-ms-transform:matrix(0.192907,-0.001736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192907,-0.001736,0.002250,0.249990,0,0);}
.m19_c00227{transform:matrix(0.193557,-0.001742,0.002250,0.249990,0,0);-ms-transform:matrix(0.193557,-0.001742,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193557,-0.001742,0.002250,0.249990,0,0);}
.mb0_c00227{transform:matrix(0.193852,-0.001745,0.002250,0.249990,0,0);-ms-transform:matrix(0.193852,-0.001745,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193852,-0.001745,0.002250,0.249990,0,0);}
.mec_c00227{transform:matrix(0.194482,-0.001750,0.002250,0.249990,0,0);-ms-transform:matrix(0.194482,-0.001750,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194482,-0.001750,0.002250,0.249990,0,0);}
.m4b_c00227{transform:matrix(0.194607,-0.001751,0.002250,0.249990,0,0);-ms-transform:matrix(0.194607,-0.001751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194607,-0.001751,0.002250,0.249990,0,0);}
.m92_c00227{transform:matrix(0.194807,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194807,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194807,-0.001753,0.002250,0.249990,0,0);}
.m6d_c00227{transform:matrix(0.195817,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195817,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195817,-0.001762,0.002250,0.249990,0,0);}
.m3f_c00227{transform:matrix(0.196112,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196112,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196112,-0.001765,0.002250,0.249990,0,0);}
.m9_c00227{transform:matrix(0.196132,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196132,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196132,-0.001765,0.002250,0.249990,0,0);}
.m38_c00227{transform:matrix(0.196327,-0.001767,0.002250,0.249990,0,0);-ms-transform:matrix(0.196327,-0.001767,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196327,-0.001767,0.002250,0.249990,0,0);}
.mce_c00227{transform:matrix(0.196667,-0.001770,0.002250,0.249990,0,0);-ms-transform:matrix(0.196667,-0.001770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196667,-0.001770,0.002250,0.249990,0,0);}
.mc8_c00227{transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);-ms-transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);}
.mcc_c00227{transform:matrix(0.197082,-0.001774,0.002250,0.249990,0,0);-ms-transform:matrix(0.197082,-0.001774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197082,-0.001774,0.002250,0.249990,0,0);}
.m5c_c00227{transform:matrix(0.197112,-0.001774,0.002250,0.249990,0,0);-ms-transform:matrix(0.197112,-0.001774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197112,-0.001774,0.002250,0.249990,0,0);}
.m8f_c00227{transform:matrix(0.197287,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197287,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197287,-0.001776,0.002250,0.249990,0,0);}
.m56_c00227{transform:matrix(0.197847,-0.001781,0.002250,0.249990,0,0);-ms-transform:matrix(0.197847,-0.001781,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197847,-0.001781,0.002250,0.249990,0,0);}
.m26_c00227{transform:matrix(0.197972,-0.001782,0.002250,0.249990,0,0);-ms-transform:matrix(0.197972,-0.001782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197972,-0.001782,0.002250,0.249990,0,0);}
.m2f_c00227{transform:matrix(0.198377,-0.001785,0.002250,0.249990,0,0);-ms-transform:matrix(0.198377,-0.001785,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198377,-0.001785,0.002250,0.249990,0,0);}
.mea_c00227{transform:matrix(0.198592,-0.001787,0.002250,0.249990,0,0);-ms-transform:matrix(0.198592,-0.001787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198592,-0.001787,0.002250,0.249990,0,0);}
.m74_c00227{transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);}
.m95_c00227{transform:matrix(0.198822,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198822,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198822,-0.001789,0.002250,0.249990,0,0);}
.mdf_c00227{transform:matrix(0.199722,-0.001797,0.002250,0.249990,0,0);-ms-transform:matrix(0.199722,-0.001797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199722,-0.001797,0.002250,0.249990,0,0);}
.m6a_c00227{transform:matrix(0.200177,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200177,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200177,-0.001802,0.002250,0.249990,0,0);}
.m2b_c00227{transform:matrix(0.200227,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200227,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200227,-0.001802,0.002250,0.249990,0,0);}
.m9d_c00227{transform:matrix(0.200242,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200242,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200242,-0.001802,0.002250,0.249990,0,0);}
.m13_c00227{transform:matrix(0.200517,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200517,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200517,-0.001805,0.002250,0.249990,0,0);}
.m65_c00227{transform:matrix(0.201047,-0.001809,0.002250,0.249990,0,0);-ms-transform:matrix(0.201047,-0.001809,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201047,-0.001809,0.002250,0.249990,0,0);}
.m3b_c00227{transform:matrix(0.201157,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201157,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201157,-0.001810,0.002250,0.249990,0,0);}
.mb3_c00227{transform:matrix(0.201257,-0.001811,0.002250,0.249990,0,0);-ms-transform:matrix(0.201257,-0.001811,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201257,-0.001811,0.002250,0.249990,0,0);}
.m83_c00227{transform:matrix(0.201372,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201372,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201372,-0.001812,0.002250,0.249990,0,0);}
.mac_c00227{transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);}
.mff_c00227{transform:matrix(0.201627,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201627,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201627,-0.001815,0.002250,0.249990,0,0);}
.ma5_c00227{transform:matrix(0.201667,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201667,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201667,-0.001815,0.002250,0.249990,0,0);}
.mfe_c00227{transform:matrix(0.201832,-0.001816,0.002250,0.249990,0,0);-ms-transform:matrix(0.201832,-0.001816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201832,-0.001816,0.002250,0.249990,0,0);}
.m51_c00227{transform:matrix(0.202087,-0.001819,0.002250,0.249990,0,0);-ms-transform:matrix(0.202087,-0.001819,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202087,-0.001819,0.002250,0.249990,0,0);}
.ma6_c00227{transform:matrix(0.202157,-0.001819,0.002250,0.249990,0,0);-ms-transform:matrix(0.202157,-0.001819,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202157,-0.001819,0.002250,0.249990,0,0);}
.m27_c00227{transform:matrix(0.202297,-0.001821,0.002250,0.249990,0,0);-ms-transform:matrix(0.202297,-0.001821,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202297,-0.001821,0.002250,0.249990,0,0);}
.md1_c00227{transform:matrix(0.204172,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204172,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204172,-0.001838,0.002250,0.249990,0,0);}
.ma_c00227{transform:matrix(0.204217,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204217,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204217,-0.001838,0.002250,0.249990,0,0);}
.maf_c00227{transform:matrix(0.204527,-0.001841,0.002250,0.249990,0,0);-ms-transform:matrix(0.204527,-0.001841,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204527,-0.001841,0.002250,0.249990,0,0);}
.m91_c00227{transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);-ms-transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);}
.m109_c00227{transform:matrix(0.204782,-0.001843,0.002250,0.249990,0,0);-ms-transform:matrix(0.204782,-0.001843,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204782,-0.001843,0.002250,0.249990,0,0);}
.mbd_c00227{transform:matrix(0.204882,-0.001844,0.002250,0.249990,0,0);-ms-transform:matrix(0.204882,-0.001844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204882,-0.001844,0.002250,0.249990,0,0);}
.m7a_c00227{transform:matrix(0.204887,-0.001844,0.002250,0.249990,0,0);-ms-transform:matrix(0.204887,-0.001844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204887,-0.001844,0.002250,0.249990,0,0);}
.m1a_c00227{transform:matrix(0.204917,-0.001844,0.002250,0.249990,0,0);-ms-transform:matrix(0.204917,-0.001844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204917,-0.001844,0.002250,0.249990,0,0);}
.mfa_c00227{transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205022,-0.001845,0.002250,0.249990,0,0);}
.m57_c00227{transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205347,-0.001848,0.002250,0.249990,0,0);}
.mf0_c00227{transform:matrix(0.205367,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205367,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205367,-0.001848,0.002250,0.249990,0,0);}
.m49_c00227{transform:matrix(0.206022,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.206022,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206022,-0.001854,0.002250,0.249990,0,0);}
.mf5_c00227{transform:matrix(0.207407,-0.001867,0.002250,0.249990,0,0);-ms-transform:matrix(0.207407,-0.001867,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207407,-0.001867,0.002250,0.249990,0,0);}
.m20_c00227{transform:matrix(0.207542,-0.001868,0.002250,0.249990,0,0);-ms-transform:matrix(0.207542,-0.001868,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207542,-0.001868,0.002250,0.249990,0,0);}
.m84_c00227{transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);}
.m3e_c00227{transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);-ms-transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);}
.mb1_c00227{transform:matrix(0.208302,-0.001875,0.002250,0.249990,0,0);-ms-transform:matrix(0.208302,-0.001875,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208302,-0.001875,0.002250,0.249990,0,0);}
.md4_c00227{transform:matrix(0.208777,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208777,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208777,-0.001879,0.002250,0.249990,0,0);}
.m8_c00227{transform:matrix(0.209722,-0.001887,0.002250,0.249990,0,0);-ms-transform:matrix(0.209722,-0.001887,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209722,-0.001887,0.002250,0.249990,0,0);}
.m36_c00227{transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);-ms-transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210206,-0.001892,0.002250,0.249990,0,0);}
.m53_c00227{transform:matrix(0.210456,-0.001894,0.002250,0.249990,0,0);-ms-transform:matrix(0.210456,-0.001894,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210456,-0.001894,0.002250,0.249990,0,0);}
.mda_c00227{transform:matrix(0.210526,-0.001895,0.002250,0.249990,0,0);-ms-transform:matrix(0.210526,-0.001895,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210526,-0.001895,0.002250,0.249990,0,0);}
.mde_c00227{transform:matrix(0.210966,-0.001899,0.002250,0.249990,0,0);-ms-transform:matrix(0.210966,-0.001899,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210966,-0.001899,0.002250,0.249990,0,0);}
.mb9_c00227{transform:matrix(0.211066,-0.001900,0.002250,0.249990,0,0);-ms-transform:matrix(0.211066,-0.001900,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211066,-0.001900,0.002250,0.249990,0,0);}
.m96_c00227{transform:matrix(0.211466,-0.001903,0.002250,0.249990,0,0);-ms-transform:matrix(0.211466,-0.001903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211466,-0.001903,0.002250,0.249990,0,0);}
.m6e_c00227{transform:matrix(0.211776,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211776,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211776,-0.001906,0.002250,0.249990,0,0);}
.mc3_c00227{transform:matrix(0.212036,-0.001908,0.002250,0.249990,0,0);-ms-transform:matrix(0.212036,-0.001908,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212036,-0.001908,0.002250,0.249990,0,0);}
.m7d_c00227{transform:matrix(0.212096,-0.001909,0.002250,0.249990,0,0);-ms-transform:matrix(0.212096,-0.001909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212096,-0.001909,0.002250,0.249990,0,0);}
.m9c_c00227{transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212481,-0.001912,0.002250,0.249990,0,0);}
.m8d_c00227{transform:matrix(0.212851,-0.001916,0.002250,0.249990,0,0);-ms-transform:matrix(0.212851,-0.001916,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212851,-0.001916,0.002250,0.249990,0,0);}
.me4_c00227{transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);-ms-transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);}
.mc0_c00227{transform:matrix(0.213901,-0.001925,0.002250,0.249990,0,0);-ms-transform:matrix(0.213901,-0.001925,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213901,-0.001925,0.002250,0.249990,0,0);}
.me2_c00227{transform:matrix(0.214346,-0.001929,0.002250,0.249990,0,0);-ms-transform:matrix(0.214346,-0.001929,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214346,-0.001929,0.002250,0.249990,0,0);}
.m32_c00227{transform:matrix(0.214431,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214431,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214431,-0.001930,0.002250,0.249990,0,0);}
.mbb_c00227{transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);-ms-transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);}
.m22_c00227{transform:matrix(0.215511,-0.001940,0.002250,0.249990,0,0);-ms-transform:matrix(0.215511,-0.001940,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215511,-0.001940,0.002250,0.249990,0,0);}
.ma9_c00227{transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);-ms-transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215556,-0.001940,0.002250,0.249990,0,0);}
.m2c_c00227{transform:matrix(0.216086,-0.001945,0.002250,0.249990,0,0);-ms-transform:matrix(0.216086,-0.001945,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216086,-0.001945,0.002250,0.249990,0,0);}
.mef_c00227{transform:matrix(0.217001,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.217001,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217001,-0.001953,0.002250,0.249990,0,0);}
.m4d_c00227{transform:matrix(0.217046,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.217046,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217046,-0.001953,0.002250,0.249990,0,0);}
.m3c_c00227{transform:matrix(0.217191,-0.001955,0.002250,0.249990,0,0);-ms-transform:matrix(0.217191,-0.001955,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217191,-0.001955,0.002250,0.249990,0,0);}
.m8b_c00227{transform:matrix(0.217361,-0.001956,0.002250,0.249990,0,0);-ms-transform:matrix(0.217361,-0.001956,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217361,-0.001956,0.002250,0.249990,0,0);}
.md2_c00227{transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);-ms-transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);}
.m90_c00227{transform:matrix(0.218526,-0.001967,0.002250,0.249990,0,0);-ms-transform:matrix(0.218526,-0.001967,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218526,-0.001967,0.002250,0.249990,0,0);}
.m6c_c00227{transform:matrix(0.218786,-0.001969,0.002250,0.249990,0,0);-ms-transform:matrix(0.218786,-0.001969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218786,-0.001969,0.002250,0.249990,0,0);}
.m100_c00227{transform:matrix(0.219181,-0.001973,0.002250,0.249990,0,0);-ms-transform:matrix(0.219181,-0.001973,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219181,-0.001973,0.002250,0.249990,0,0);}
.m4f_c00227{transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);-ms-transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);}
.m3a_c00227{transform:matrix(0.219971,-0.001980,0.002250,0.249990,0,0);-ms-transform:matrix(0.219971,-0.001980,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219971,-0.001980,0.002250,0.249990,0,0);}
.m69_c00227{transform:matrix(0.220081,-0.001981,0.002250,0.249990,0,0);-ms-transform:matrix(0.220081,-0.001981,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220081,-0.001981,0.002250,0.249990,0,0);}
.m81_c00227{transform:matrix(0.220381,-0.001983,0.002250,0.249990,0,0);-ms-transform:matrix(0.220381,-0.001983,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220381,-0.001983,0.002250,0.249990,0,0);}
.mc1_c00227{transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);}
.m43_c00227{transform:matrix(0.220576,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220576,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220576,-0.001985,0.002250,0.249990,0,0);}
.m64_c00227{transform:matrix(0.220761,-0.001987,0.002250,0.249990,0,0);-ms-transform:matrix(0.220761,-0.001987,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220761,-0.001987,0.002250,0.249990,0,0);}
.m7f_c00227{transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);-ms-transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);}
.me9_c00227{transform:matrix(0.221991,-0.001998,0.002250,0.249990,0,0);-ms-transform:matrix(0.221991,-0.001998,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221991,-0.001998,0.002250,0.249990,0,0);}
.m17_c00227{transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);-ms-transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);}
.m68_c00227{transform:matrix(0.222396,-0.002002,0.002250,0.249990,0,0);-ms-transform:matrix(0.222396,-0.002002,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222396,-0.002002,0.002250,0.249990,0,0);}
.mbe_c00227{transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);}
.m103_c00227{transform:matrix(0.222681,-0.002004,0.002250,0.249990,0,0);-ms-transform:matrix(0.222681,-0.002004,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222681,-0.002004,0.002250,0.249990,0,0);}
.mfd_c00227{transform:matrix(0.223166,-0.002008,0.002250,0.249990,0,0);-ms-transform:matrix(0.223166,-0.002008,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223166,-0.002008,0.002250,0.249990,0,0);}
.m1b_c00227{transform:matrix(0.223676,-0.002013,0.002250,0.249990,0,0);-ms-transform:matrix(0.223676,-0.002013,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223676,-0.002013,0.002250,0.249990,0,0);}
.mb8_c00227{transform:matrix(0.223756,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223756,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223756,-0.002014,0.002250,0.249990,0,0);}
.m11_c00227{transform:matrix(0.224436,-0.002020,0.002250,0.249990,0,0);-ms-transform:matrix(0.224436,-0.002020,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224436,-0.002020,0.002250,0.249990,0,0);}
.mb6_c00227{transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);}
.mb5_c00227{transform:matrix(0.225076,-0.002026,0.002250,0.249990,0,0);-ms-transform:matrix(0.225076,-0.002026,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225076,-0.002026,0.002250,0.249990,0,0);}
.m5f_c00227{transform:matrix(0.225191,-0.002027,0.002250,0.249990,0,0);-ms-transform:matrix(0.225191,-0.002027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225191,-0.002027,0.002250,0.249990,0,0);}
.m47_c00227{transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);}
.m6f_c00227{transform:matrix(0.226431,-0.002038,0.002250,0.249990,0,0);-ms-transform:matrix(0.226431,-0.002038,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226431,-0.002038,0.002250,0.249990,0,0);}
.mf4_c00227{transform:matrix(0.228301,-0.002055,0.002250,0.249990,0,0);-ms-transform:matrix(0.228301,-0.002055,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228301,-0.002055,0.002250,0.249990,0,0);}
.m1f_c00227{transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);-ms-transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);}
.mb4_c00227{transform:matrix(0.228576,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228576,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228576,-0.002057,0.002250,0.249990,0,0);}
.m35_c00227{transform:matrix(0.229496,-0.002065,0.002250,0.249990,0,0);-ms-transform:matrix(0.229496,-0.002065,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229496,-0.002065,0.002250,0.249990,0,0);}
.m98_c00227{transform:matrix(0.229991,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.229991,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229991,-0.002070,0.002250,0.249990,0,0);}
.me8_c00227{transform:matrix(0.230006,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.230006,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230006,-0.002070,0.002250,0.249990,0,0);}
.m70_c00227{transform:matrix(0.230651,-0.002076,0.002250,0.249990,0,0);-ms-transform:matrix(0.230651,-0.002076,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230651,-0.002076,0.002250,0.249990,0,0);}
.mdb_c00227{transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);-ms-transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);}
.mc2_c00227{transform:matrix(0.231406,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231406,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231406,-0.002083,0.002250,0.249990,0,0);}
.m40_c00227{transform:matrix(0.231426,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231426,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231426,-0.002083,0.002250,0.249990,0,0);}
.meb_c00227{transform:matrix(0.231601,-0.002084,0.002250,0.249990,0,0);-ms-transform:matrix(0.231601,-0.002084,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231601,-0.002084,0.002250,0.249990,0,0);}
.mbc_c00227{transform:matrix(0.232356,-0.002091,0.002250,0.249990,0,0);-ms-transform:matrix(0.232356,-0.002091,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232356,-0.002091,0.002250,0.249990,0,0);}
.mdc_c00227{transform:matrix(0.232816,-0.002095,0.002250,0.249990,0,0);-ms-transform:matrix(0.232816,-0.002095,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232816,-0.002095,0.002250,0.249990,0,0);}
.m106_c00227{transform:matrix(0.232921,-0.002096,0.002250,0.249990,0,0);-ms-transform:matrix(0.232921,-0.002096,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232921,-0.002096,0.002250,0.249990,0,0);}
.mee_c00227{transform:matrix(0.233346,-0.002100,0.002250,0.249990,0,0);-ms-transform:matrix(0.233346,-0.002100,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233346,-0.002100,0.002250,0.249990,0,0);}
.m7b_c00227{transform:matrix(0.234675,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234675,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234675,-0.002112,0.002250,0.249990,0,0);}
.me0_c00227{transform:matrix(0.236410,-0.002128,0.002250,0.249990,0,0);-ms-transform:matrix(0.236410,-0.002128,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236410,-0.002128,0.002250,0.249990,0,0);}
.m94_c00227{transform:matrix(0.236750,-0.002131,0.002250,0.249990,0,0);-ms-transform:matrix(0.236750,-0.002131,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236750,-0.002131,0.002250,0.249990,0,0);}
.m62_c00227{transform:matrix(0.236885,-0.002132,0.002250,0.249990,0,0);-ms-transform:matrix(0.236885,-0.002132,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236885,-0.002132,0.002250,0.249990,0,0);}
.m28_c00227{transform:matrix(0.237410,-0.002137,0.002250,0.249990,0,0);-ms-transform:matrix(0.237410,-0.002137,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237410,-0.002137,0.002250,0.249990,0,0);}
.mad_c00227{transform:matrix(0.240540,-0.002165,0.002250,0.249990,0,0);-ms-transform:matrix(0.240540,-0.002165,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240540,-0.002165,0.002250,0.249990,0,0);}
.m2a_c00227{transform:matrix(0.241215,-0.002171,0.002250,0.249990,0,0);-ms-transform:matrix(0.241215,-0.002171,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241215,-0.002171,0.002250,0.249990,0,0);}
.m1c_c00227{transform:matrix(0.241675,-0.002175,0.002250,0.249990,0,0);-ms-transform:matrix(0.241675,-0.002175,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241675,-0.002175,0.002250,0.249990,0,0);}
.m7c_c00227{transform:matrix(0.241865,-0.002177,0.002250,0.249990,0,0);-ms-transform:matrix(0.241865,-0.002177,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241865,-0.002177,0.002250,0.249990,0,0);}
.m1d_c00227{transform:matrix(0.242615,-0.002184,0.002250,0.249990,0,0);-ms-transform:matrix(0.242615,-0.002184,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242615,-0.002184,0.002250,0.249990,0,0);}
.m7e_c00227{transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);-ms-transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);}
.m41_c00227{transform:matrix(0.243920,-0.002195,0.002250,0.249990,0,0);-ms-transform:matrix(0.243920,-0.002195,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243920,-0.002195,0.002250,0.249990,0,0);}
.m15_c00227{transform:matrix(0.244230,-0.002198,0.002250,0.249990,0,0);-ms-transform:matrix(0.244230,-0.002198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244230,-0.002198,0.002250,0.249990,0,0);}
.m9b_c00227{transform:matrix(0.244925,-0.002204,0.002250,0.249990,0,0);-ms-transform:matrix(0.244925,-0.002204,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244925,-0.002204,0.002250,0.249990,0,0);}
.m0_c00227{transform:matrix(0.246347,-0.002956,0.003000,0.249982,0,0);-ms-transform:matrix(0.246347,-0.002956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246347,-0.002956,0.003000,0.249982,0,0);}
.m58_c00227{transform:matrix(0.247180,-0.002225,0.002250,0.249990,0,0);-ms-transform:matrix(0.247180,-0.002225,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247180,-0.002225,0.002250,0.249990,0,0);}
.m48_c00227{transform:matrix(0.247570,-0.002228,0.002250,0.249990,0,0);-ms-transform:matrix(0.247570,-0.002228,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247570,-0.002228,0.002250,0.249990,0,0);}
.me_c00227{transform:matrix(0.247695,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247695,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247695,-0.002229,0.002250,0.249990,0,0);}
.m23_c00227{transform:matrix(0.248210,-0.002234,0.002250,0.249990,0,0);-ms-transform:matrix(0.248210,-0.002234,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248210,-0.002234,0.002250,0.249990,0,0);}
.me5_c00227{transform:matrix(0.249520,-0.002246,0.002250,0.249990,0,0);-ms-transform:matrix(0.249520,-0.002246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249520,-0.002246,0.002250,0.249990,0,0);}
.m6b_c00227{transform:matrix(0.250540,-0.002255,0.002250,0.249990,0,0);-ms-transform:matrix(0.250540,-0.002255,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250540,-0.002255,0.002250,0.249990,0,0);}
.m104_c00227{transform:matrix(0.250655,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250655,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250655,-0.002256,0.002250,0.249990,0,0);}
.m73_c00227{transform:matrix(0.250870,-0.002258,0.002250,0.249990,0,0);-ms-transform:matrix(0.250870,-0.002258,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250870,-0.002258,0.002250,0.249990,0,0);}
.m8a_c00227{transform:matrix(0.251765,-0.002266,0.002250,0.249990,0,0);-ms-transform:matrix(0.251765,-0.002266,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251765,-0.002266,0.002250,0.249990,0,0);}
.med_c00227{transform:matrix(0.252485,-0.002272,0.002250,0.249990,0,0);-ms-transform:matrix(0.252485,-0.002272,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252485,-0.002272,0.002250,0.249990,0,0);}
.mf7_c00227{transform:matrix(0.255150,-0.002296,0.002250,0.249990,0,0);-ms-transform:matrix(0.255150,-0.002296,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255150,-0.002296,0.002250,0.249990,0,0);}
.m5a_c00227{transform:matrix(0.257260,-0.002315,0.002250,0.249990,0,0);-ms-transform:matrix(0.257260,-0.002315,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257260,-0.002315,0.002250,0.249990,0,0);}
.me3_c00227{transform:matrix(0.258640,-0.002328,0.002250,0.249990,0,0);-ms-transform:matrix(0.258640,-0.002328,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258640,-0.002328,0.002250,0.249990,0,0);}
.m63_c00227{transform:matrix(0.261349,-0.002352,0.002250,0.249990,0,0);-ms-transform:matrix(0.261349,-0.002352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261349,-0.002352,0.002250,0.249990,0,0);}
.m79_c00227{transform:matrix(0.262594,-0.002363,0.002250,0.249990,0,0);-ms-transform:matrix(0.262594,-0.002363,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262594,-0.002363,0.002250,0.249990,0,0);}
.m52_c00227{transform:matrix(0.263654,-0.002373,0.002250,0.249990,0,0);-ms-transform:matrix(0.263654,-0.002373,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263654,-0.002373,0.002250,0.249990,0,0);}
.mcb_c00227{transform:matrix(0.264694,-0.002382,0.002250,0.249990,0,0);-ms-transform:matrix(0.264694,-0.002382,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264694,-0.002382,0.002250,0.249990,0,0);}
.m14_c00227{transform:matrix(0.268094,-0.002413,0.002250,0.249990,0,0);-ms-transform:matrix(0.268094,-0.002413,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268094,-0.002413,0.002250,0.249990,0,0);}
.m54_c00227{transform:matrix(0.271354,-0.002442,0.002250,0.249990,0,0);-ms-transform:matrix(0.271354,-0.002442,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271354,-0.002442,0.002250,0.249990,0,0);}
.m10b_c00227{transform:matrix(0.271435,-0.012227,0.011250,0.249747,0,0);-ms-transform:matrix(0.271435,-0.012227,0.011250,0.249747,0,0);-webkit-transform:matrix(0.271435,-0.012227,0.011250,0.249747,0,0);}
.mcf_c00227{transform:matrix(0.271919,-0.002447,0.002250,0.249990,0,0);-ms-transform:matrix(0.271919,-0.002447,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271919,-0.002447,0.002250,0.249990,0,0);}
.m10a_c00227{transform:matrix(0.282693,-0.012734,0.011250,0.249747,0,0);-ms-transform:matrix(0.282693,-0.012734,0.011250,0.249747,0,0);-webkit-transform:matrix(0.282693,-0.012734,0.011250,0.249747,0,0);}
.m39_c00227{transform:matrix(0.285618,-0.002571,0.002250,0.249990,0,0);-ms-transform:matrix(0.285618,-0.002571,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285618,-0.002571,0.002250,0.249990,0,0);}
.m82_c00227{transform:matrix(0.285748,-0.002572,0.002250,0.249990,0,0);-ms-transform:matrix(0.285748,-0.002572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285748,-0.002572,0.002250,0.249990,0,0);}
.mf3_c00227{transform:matrix(0.289743,-0.002608,0.002250,0.249990,0,0);-ms-transform:matrix(0.289743,-0.002608,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289743,-0.002608,0.002250,0.249990,0,0);}
.md9_c00227{transform:matrix(0.295213,-0.002657,0.002250,0.249990,0,0);-ms-transform:matrix(0.295213,-0.002657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295213,-0.002657,0.002250,0.249990,0,0);}
.mbf_c00227{transform:matrix(0.303883,-0.002735,0.002250,0.249990,0,0);-ms-transform:matrix(0.303883,-0.002735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.303883,-0.002735,0.002250,0.249990,0,0);}
.m4e_c00227{transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);-ms-transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);-webkit-transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);}
.m45_c00227{transform:matrix(0.308213,-0.002774,0.002250,0.249990,0,0);-ms-transform:matrix(0.308213,-0.002774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308213,-0.002774,0.002250,0.249990,0,0);}
.m3_c00227{transform:matrix(0.309778,-0.003717,0.003000,0.249982,0,0);-ms-transform:matrix(0.309778,-0.003717,0.003000,0.249982,0,0);-webkit-transform:matrix(0.309778,-0.003717,0.003000,0.249982,0,0);}
.m44_c00227{transform:matrix(0.319922,-0.002879,0.002250,0.249990,0,0);-ms-transform:matrix(0.319922,-0.002879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.319922,-0.002879,0.002250,0.249990,0,0);}
.m71_c00227{transform:matrix(0.333092,-0.002998,0.002250,0.249990,0,0);-ms-transform:matrix(0.333092,-0.002998,0.002250,0.249990,0,0);-webkit-transform:matrix(0.333092,-0.002998,0.002250,0.249990,0,0);}
.m29_c00227{transform:matrix(0.337421,-0.003037,0.002250,0.249990,0,0);-ms-transform:matrix(0.337421,-0.003037,0.002250,0.249990,0,0);-webkit-transform:matrix(0.337421,-0.003037,0.002250,0.249990,0,0);}
.m2_c00227{transform:matrix(0.337836,-0.004054,0.003000,0.249982,0,0);-ms-transform:matrix(0.337836,-0.004054,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337836,-0.004054,0.003000,0.249982,0,0);}
.mae_c00227{transform:matrix(0.348121,-0.003133,0.002250,0.249990,0,0);-ms-transform:matrix(0.348121,-0.003133,0.002250,0.249990,0,0);-webkit-transform:matrix(0.348121,-0.003133,0.002250,0.249990,0,0);}
.mfb_c00227{transform:matrix(0.351951,-0.003168,0.002250,0.249990,0,0);-ms-transform:matrix(0.351951,-0.003168,0.002250,0.249990,0,0);-webkit-transform:matrix(0.351951,-0.003168,0.002250,0.249990,0,0);}
.mb7_c00227{transform:matrix(0.373125,-0.003358,0.002250,0.249990,0,0);-ms-transform:matrix(0.373125,-0.003358,0.002250,0.249990,0,0);-webkit-transform:matrix(0.373125,-0.003358,0.002250,0.249990,0,0);}
.m10d_c00227{transform:matrix(0.423958,-0.005935,0.003500,0.249976,0,0);-ms-transform:matrix(0.423958,-0.005935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.423958,-0.005935,0.003500,0.249976,0,0);}
.me7_c00227{transform:matrix(0.440492,-0.003964,0.002250,0.249990,0,0);-ms-transform:matrix(0.440492,-0.003964,0.002250,0.249990,0,0);-webkit-transform:matrix(0.440492,-0.003964,0.002250,0.249990,0,0);}
.m10c_c00227{transform:matrix(0.508655,-0.007121,0.003500,0.249976,0,0);-ms-transform:matrix(0.508655,-0.007121,0.003500,0.249976,0,0);-webkit-transform:matrix(0.508655,-0.007121,0.003500,0.249976,0,0);}
.m1_c00227{transform:matrix(0.525437,-0.006305,0.003000,0.249982,0,0);-ms-transform:matrix(0.525437,-0.006305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.525437,-0.006305,0.003000,0.249982,0,0);}
.m10e_c00227{transform:matrix(0.583478,-0.008169,0.003500,0.249976,0,0);-ms-transform:matrix(0.583478,-0.008169,0.003500,0.249976,0,0);-webkit-transform:matrix(0.583478,-0.008169,0.003500,0.249976,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;}
.fsb_c00227{font-size:61.952509px;}
.fs9_c00227{font-size:63.002551px;}
.fs3_c00227{font-size:64.052594px;}
.fs8_c00227{font-size:66.152679px;}
.fsa_c00227{font-size:67.202722px;}
.fs7_c00227{font-size:68.252764px;}
.fs4_c00227{font-size:69.302807px;}
.fs5_c00227{font-size:70.352849px;}
.fsc_c00227{font-size:71.402892px;}
.fs2_c00227{font-size:72.452934px;}
.fs6_c00227{font-size:74.553019px;}
.fs1_c00227{font-size:76.653104px;}
.fse_c00227{font-size:103.960187px;}
.fs0_c00227{font-size:130.209374px;}
.fsd_c00227{font-size:212.102757px;}
.y0_c00227{bottom:0.000000px;}
.y10d_c00227{bottom:96.939000px;}
.y10b_c00227{bottom:97.270500px;}
.y10e_c00227{bottom:98.240055px;}
.y10f_c00227{bottom:99.111597px;}
.y10c_c00227{bottom:102.198405px;}
.y108_c00227{bottom:142.537154px;}
.y109_c00227{bottom:142.537389px;}
.y106_c00227{bottom:142.537401px;}
.y107_c00227{bottom:142.537617px;}
.y10a_c00227{bottom:142.538109px;}
.y105_c00227{bottom:163.844777px;}
.y104_c00227{bottom:165.155430px;}
.y103_c00227{bottom:165.560565px;}
.y102_c00227{bottom:165.919929px;}
.y101_c00227{bottom:166.463418px;}
.y100_c00227{bottom:166.657687px;}
.yff_c00227{bottom:167.144220px;}
.yfe_c00227{bottom:167.389711px;}
.yfd_c00227{bottom:168.179058px;}
.yfa_c00227{bottom:188.572072px;}
.yfb_c00227{bottom:188.572585px;}
.yf9_c00227{bottom:188.572716px;}
.yf7_c00227{bottom:188.572966px;}
.yfc_c00227{bottom:188.573068px;}
.yf8_c00227{bottom:188.573119px;}
.yf6_c00227{bottom:188.573563px;}
.yf5_c00227{bottom:188.573937px;}
.yf4_c00227{bottom:211.327788px;}
.yf3_c00227{bottom:211.328041px;}
.yf0_c00227{bottom:211.328155px;}
.yf2_c00227{bottom:211.328565px;}
.yef_c00227{bottom:211.328619px;}
.yf1_c00227{bottom:211.328652px;}
.yed_c00227{bottom:211.328779px;}
.yee_c00227{bottom:211.328843px;}
.yec_c00227{bottom:211.329363px;}
.ye5_c00227{bottom:234.391102px;}
.ye6_c00227{bottom:234.391419px;}
.ye4_c00227{bottom:234.391776px;}
.ye7_c00227{bottom:234.391885px;}
.ye8_c00227{bottom:234.391902px;}
.yea_c00227{bottom:234.392161px;}
.ye9_c00227{bottom:234.392459px;}
.yeb_c00227{bottom:234.392808px;}
.ydb_c00227{bottom:257.416732px;}
.ye3_c00227{bottom:257.416807px;}
.ye0_c00227{bottom:257.416831px;}
.ye2_c00227{bottom:257.416941px;}
.ydf_c00227{bottom:257.417205px;}
.ydc_c00227{bottom:257.417289px;}
.ydd_c00227{bottom:257.417335px;}
.ye1_c00227{bottom:257.417404px;}
.yde_c00227{bottom:257.417758px;}
.yda_c00227{bottom:277.426350px;}
.yd9_c00227{bottom:277.782279px;}
.yd8_c00227{bottom:278.066818px;}
.yd7_c00227{bottom:278.718432px;}
.yd6_c00227{bottom:279.015604px;}
.yd5_c00227{bottom:279.380608px;}
.yd4_c00227{bottom:279.899562px;}
.yd3_c00227{bottom:280.228642px;}
.yd2_c00227{bottom:280.839084px;}
.yd1_c00227{bottom:281.133781px;}
.yd0_c00227{bottom:281.589963px;}
.yca_c00227{bottom:303.133804px;}
.ycb_c00227{bottom:303.134001px;}
.yc9_c00227{bottom:303.134221px;}
.yc8_c00227{bottom:303.134595px;}
.ycc_c00227{bottom:303.134664px;}
.ycd_c00227{bottom:303.134770px;}
.ycf_c00227{bottom:303.134956px;}
.yce_c00227{bottom:303.135150px;}
.yc7_c00227{bottom:326.225143px;}
.yc6_c00227{bottom:326.225620px;}
.yc2_c00227{bottom:326.225928px;}
.yc3_c00227{bottom:326.225944px;}
.yc1_c00227{bottom:326.225971px;}
.yc5_c00227{bottom:326.226144px;}
.yc4_c00227{bottom:326.226201px;}
.ybe_c00227{bottom:349.435000px;}
.yc0_c00227{bottom:349.435260px;}
.ybd_c00227{bottom:349.435554px;}
.ybb_c00227{bottom:349.435611px;}
.ybf_c00227{bottom:349.435707px;}
.ybc_c00227{bottom:349.435957px;}
.yba_c00227{bottom:349.436358px;}
.yb9_c00227{bottom:349.436838px;}
.yb5_c00227{bottom:371.688156px;}
.yb4_c00227{bottom:371.688439px;}
.yb6_c00227{bottom:371.688502px;}
.yb7_c00227{bottom:371.688909px;}
.yb3_c00227{bottom:371.689009px;}
.yb0_c00227{bottom:371.689274px;}
.yb2_c00227{bottom:371.689443px;}
.yb8_c00227{bottom:371.689512px;}
.yb1_c00227{bottom:371.689860px;}
.yaf_c00227{bottom:394.626122px;}
.yae_c00227{bottom:394.626389px;}
.ya8_c00227{bottom:394.626859px;}
.yab_c00227{bottom:394.626863px;}
.yac_c00227{bottom:394.626909px;}
.yad_c00227{bottom:394.626926px;}
.yaa_c00227{bottom:394.627176px;}
.ya9_c00227{bottom:394.627326px;}
.ya6_c00227{bottom:394.627367px;}
.ya7_c00227{bottom:394.627443px;}
.y9f_c00227{bottom:417.483563px;}
.y9e_c00227{bottom:417.483650px;}
.ya0_c00227{bottom:417.484136px;}
.ya2_c00227{bottom:417.484409px;}
.ya1_c00227{bottom:417.484812px;}
.ya3_c00227{bottom:417.484905px;}
.ya4_c00227{bottom:417.485432px;}
.ya5_c00227{bottom:417.485931px;}
.y9c_c00227{bottom:440.413685px;}
.y99_c00227{bottom:440.413922px;}
.y9a_c00227{bottom:440.414012px;}
.y96_c00227{bottom:440.414022px;}
.y98_c00227{bottom:440.414145px;}
.y9d_c00227{bottom:440.414361px;}
.y97_c00227{bottom:440.414369px;}
.y9b_c00227{bottom:440.414418px;}
.y95_c00227{bottom:440.414636px;}
.y94_c00227{bottom:462.943560px;}
.y8e_c00227{bottom:462.943971px;}
.y8c_c00227{bottom:462.944042px;}
.y93_c00227{bottom:462.944144px;}
.y92_c00227{bottom:462.944427px;}
.y8d_c00227{bottom:462.944598px;}
.y8f_c00227{bottom:462.944708px;}
.y91_c00227{bottom:462.944741px;}
.y90_c00227{bottom:462.945444px;}
.y83_c00227{bottom:485.633421px;}
.y87_c00227{bottom:485.633443px;}
.y85_c00227{bottom:485.633501px;}
.y86_c00227{bottom:485.633547px;}
.y88_c00227{bottom:485.633550px;}
.y84_c00227{bottom:485.633738px;}
.y89_c00227{bottom:485.633883px;}
.y8a_c00227{bottom:485.634350px;}
.y8b_c00227{bottom:485.635073px;}
.y82_c00227{bottom:509.230143px;}
.y81_c00227{bottom:509.230756px;}
.y7e_c00227{bottom:509.231367px;}
.y80_c00227{bottom:509.231400px;}
.y7c_c00227{bottom:509.231708px;}
.y7f_c00227{bottom:509.231744px;}
.y7d_c00227{bottom:509.232084px;}
.y7b_c00227{bottom:509.232155px;}
.y7a_c00227{bottom:509.232348px;}
.y75_c00227{bottom:531.947411px;}
.y76_c00227{bottom:531.947504px;}
.y79_c00227{bottom:531.947569px;}
.y77_c00227{bottom:531.947700px;}
.y78_c00227{bottom:531.947853px;}
.y74_c00227{bottom:531.948144px;}
.y70_c00227{bottom:554.085975px;}
.y71_c00227{bottom:554.086351px;}
.y73_c00227{bottom:554.086415px;}
.y6f_c00227{bottom:554.086589px;}
.y72_c00227{bottom:554.086878px;}
.y6e_c00227{bottom:554.086932px;}
.y6d_c00227{bottom:554.087036px;}
.y6c_c00227{bottom:554.087079px;}
.y69_c00227{bottom:554.087209px;}
.y6a_c00227{bottom:554.087556px;}
.y6b_c00227{bottom:554.087663px;}
.y64_c00227{bottom:577.700019px;}
.y63_c00227{bottom:577.700033px;}
.y68_c00227{bottom:577.700192px;}
.y62_c00227{bottom:577.700196px;}
.y67_c00227{bottom:577.700218px;}
.y66_c00227{bottom:577.700262px;}
.y65_c00227{bottom:577.700306px;}
.y61_c00227{bottom:577.700509px;}
.y60_c00227{bottom:577.701123px;}
.y57_c00227{bottom:600.244826px;}
.y58_c00227{bottom:600.245502px;}
.y59_c00227{bottom:600.246075px;}
.y5a_c00227{bottom:600.246452px;}
.y5f_c00227{bottom:600.246728px;}
.y5b_c00227{bottom:600.246902px;}
.y5e_c00227{bottom:600.247417px;}
.y5c_c00227{bottom:600.247638px;}
.y5d_c00227{bottom:600.247791px;}
.y51_c00227{bottom:623.341919px;}
.y52_c00227{bottom:623.342281px;}
.y50_c00227{bottom:623.342365px;}
.y55_c00227{bottom:623.342408px;}
.y53_c00227{bottom:623.342884px;}
.y54_c00227{bottom:623.342991px;}
.y56_c00227{bottom:623.343100px;}
.y4a_c00227{bottom:645.661511px;}
.y4f_c00227{bottom:645.661533px;}
.y4b_c00227{bottom:645.661647px;}
.y4e_c00227{bottom:645.661757px;}
.y4d_c00227{bottom:645.661950px;}
.y49_c00227{bottom:645.662064px;}
.y4c_c00227{bottom:645.662263px;}
.y48_c00227{bottom:645.662317px;}
.y47_c00227{bottom:645.662421px;}
.y46_c00227{bottom:645.662734px;}
.y41_c00227{bottom:669.253674px;}
.y40_c00227{bottom:669.253971px;}
.y44_c00227{bottom:669.254234px;}
.y42_c00227{bottom:669.254260px;}
.y45_c00227{bottom:669.254610px;}
.y3f_c00227{bottom:669.254641px;}
.y43_c00227{bottom:669.254817px;}
.y37_c00227{bottom:691.115043px;}
.y39_c00227{bottom:691.115136px;}
.y3b_c00227{bottom:691.115276px;}
.y3a_c00227{bottom:691.115409px;}
.y36_c00227{bottom:691.115596px;}
.y38_c00227{bottom:691.115689px;}
.y3c_c00227{bottom:691.115802px;}
.y35_c00227{bottom:691.116013px;}
.y3d_c00227{bottom:691.116538px;}
.y3e_c00227{bottom:691.116795px;}
.y2d_c00227{bottom:714.842784px;}
.y34_c00227{bottom:714.842826px;}
.y33_c00227{bottom:714.843109px;}
.y30_c00227{bottom:714.843133px;}
.y2e_c00227{bottom:714.843490px;}
.y32_c00227{bottom:714.843513px;}
.y31_c00227{bottom:714.843526px;}
.y2f_c00227{bottom:714.843807px;}
.y2a_c00227{bottom:738.282556px;}
.y2b_c00227{bottom:738.282916px;}
.y29_c00227{bottom:738.283020px;}
.y2c_c00227{bottom:738.283173px;}
.y28_c00227{bottom:738.283183px;}
.y27_c00227{bottom:738.283647px;}
.y26_c00227{bottom:738.284110px;}
.y25_c00227{bottom:738.284694px;}
.y1c_c00227{bottom:760.394826px;}
.y1d_c00227{bottom:760.395562px;}
.y1e_c00227{bottom:760.396059px;}
.y23_c00227{bottom:760.396111px;}
.y22_c00227{bottom:760.396215px;}
.y20_c00227{bottom:760.396438px;}
.y24_c00227{bottom:760.396638px;}
.y1f_c00227{bottom:760.396648px;}
.y21_c00227{bottom:760.396905px;}
.y1b_c00227{bottom:783.610128px;}
.y1a_c00227{bottom:783.610771px;}
.y14_c00227{bottom:783.611259px;}
.y18_c00227{bottom:783.611385px;}
.y19_c00227{bottom:783.611402px;}
.y16_c00227{bottom:783.611922px;}
.y15_c00227{bottom:783.611965px;}
.y17_c00227{bottom:783.612058px;}
.ye_c00227{bottom:806.163457px;}
.yd_c00227{bottom:806.163771px;}
.yf_c00227{bottom:806.164134px;}
.y13_c00227{bottom:806.164380px;}
.yc_c00227{bottom:806.164428px;}
.y10_c00227{bottom:806.164450px;}
.y11_c00227{bottom:806.164707px;}
.y12_c00227{bottom:806.164904px;}
.yb_c00227{bottom:806.165011px;}
.y5_c00227{bottom:827.821500px;}
.y6_c00227{bottom:828.407265px;}
.y7_c00227{bottom:829.228375px;}
.y8_c00227{bottom:829.753512px;}
.y9_c00227{bottom:829.955391px;}
.ya_c00227{bottom:830.307525px;}
.y1_c00227{bottom:871.680000px;}
.y2_c00227{bottom:872.104566px;}
.y3_c00227{bottom:873.307578px;}
.y4_c00227{bottom:875.047674px;}
.hd_c00227{height:61.952509px;}
.hb_c00227{height:63.002551px;}
.h5_c00227{height:64.052594px;}
.ha_c00227{height:66.152679px;}
.hc_c00227{height:67.202722px;}
.h9_c00227{height:68.252764px;}
.h6_c00227{height:69.302807px;}
.h7_c00227{height:70.352849px;}
.he_c00227{height:71.402892px;}
.h4_c00227{height:72.452934px;}
.h8_c00227{height:74.553019px;}
.h3_c00227{height:76.653104px;}
.h10_c00227{height:103.960187px;}
.h2_c00227{height:130.209374px;}
.hf_c00227{height:212.102757px;}
.h0_c00227{height:1008.450000px;}
.h1_c00227{height:1008.750000px;}
.w0_c00227{width:678.450000px;}
.w1_c00227{width:678.750000px;}
.x0_c00227{left:0.000000px;}
.x9c_c00227{left:75.532500px;}
.x1_c00227{left:85.570500px;}
.x95_c00227{left:88.563078px;}
.x9a_c00227{left:94.221293px;}
.x2_c00227{left:120.951000px;}
.x5d_c00227{left:160.919081px;}
.x59_c00227{left:162.809861px;}
.x51_c00227{left:165.779940px;}
.x4a_c00227{left:167.669085px;}
.x27_c00227{left:169.564064px;}
.x5_c00227{left:171.571500px;}
.x1f_c00227{left:173.343410px;}
.x74_c00227{left:184.139636px;}
.x96_c00227{left:192.098777px;}
.x85_c00227{left:194.127549px;}
.x7c_c00227{left:195.208718px;}
.x5a_c00227{left:196.291074px;}
.x28_c00227{left:197.644832px;}
.xb_c00227{left:199.260641px;}
.x20_c00227{left:200.614124px;}
.x4b_c00227{left:202.770434px;}
.x19_c00227{left:205.743552px;}
.x42_c00227{left:207.900461px;}
.x8f_c00227{left:210.598146px;}
.x13_c00227{left:213.302234px;}
.x8b_c00227{left:216.538083px;}
.x66_c00227{left:217.619615px;}
.x29_c00227{left:219.515100px;}
.x3_c00227{left:221.202000px;}
.x39_c00227{left:222.483923px;}
.x21_c00227{left:223.564487px;}
.x4c_c00227{left:227.070905px;}
.x3e_c00227{left:228.962816px;}
.x86_c00227{left:232.469154px;}
.x2f_c00227{left:234.095318px;}
.x6_c00227{left:236.656500px;}
.x8c_c00227{left:238.408352px;}
.x97_c00227{left:240.714593px;}
.x52_c00227{left:243.003191px;}
.x14_c00227{left:248.133555px;}
.x78_c00227{left:249.752327px;}
.x5b_c00227{left:251.912583px;}
.x6c_c00227{left:254.072118px;}
.xc_c00227{left:255.692217px;}
.x2a_c00227{left:256.776624px;}
.x3a_c00227{left:259.475420px;}
.x5e_c00227{left:264.602978px;}
.x4d_c00227{left:266.222577px;}
.x43_c00227{left:267.302267px;}
.x7d_c00227{left:270.001779px;}
.x22_c00227{left:273.517037px;}
.x62_c00227{left:277.831232px;}
.x30_c00227{left:280.537584px;}
.x3b_c00227{left:281.615715px;}
.x57_c00227{left:284.854826px;}
.x44_c00227{left:287.012360px;}
.x3f_c00227{left:289.174689px;}
.x87_c00227{left:290.520852px;}
.x75_c00227{left:291.603843px;}
.x7e_c00227{left:296.192399px;}
.x53_c00227{left:297.276092px;}
.x15_c00227{left:303.486537px;}
.x45_c00227{left:304.563777px;}
.xd_c00227{left:306.994875px;}
.x31_c00227{left:310.778528px;}
.x67_c00227{left:313.474377px;}
.x3c_c00227{left:314.556888px;}
.x70_c00227{left:315.633528px;}
.x54_c00227{left:318.606320px;}
.x4e_c00227{left:320.225451px;}
.x90_c00227{left:322.922745px;}
.x63_c00227{left:325.083552px;}
.x23_c00227{left:326.169803px;}
.x7_c00227{left:327.891000px;}
.x71_c00227{left:329.404649px;}
.x8d_c00227{left:334.803155px;}
.x2b_c00227{left:336.160050px;}
.x46_c00227{left:338.315004px;}
.x76_c00227{left:339.396218px;}
.x16_c00227{left:340.748061px;}
.x32_c00227{left:343.719701px;}
.x79_c00227{left:349.115873px;}
.x98_c00227{left:350.330844px;}
.x6d_c00227{left:352.085556px;}
.x40_c00227{left:354.246954px;}
.xe_c00227{left:356.407371px;}
.x72_c00227{left:359.375579px;}
.x24_c00227{left:362.621259px;}
.x4_c00227{left:366.210000px;}
.x1a_c00227{left:367.210620px;}
.x36_c00227{left:369.098988px;}
.x91_c00227{left:372.875295px;}
.x7a_c00227{left:374.226411px;}
.x25_c00227{left:376.662393px;}
.xf_c00227{left:378.277640px;}
.x1b_c00227{left:381.521781px;}
.x6e_c00227{left:384.756702px;}
.x8_c00227{left:386.239500px;}
.x2c_c00227{left:390.162924px;}
.x69_c00227{left:395.827394px;}
.x4f_c00227{left:398.258769px;}
.x33_c00227{left:400.421291px;}
.x17_c00227{left:402.851597px;}
.x9_c00227{left:408.670500px;}
.x47_c00227{left:412.838039px;}
.x26_c00227{left:414.193931px;}
.x10_c00227{left:415.809177px;}
.x41_c00227{left:417.699098px;}
.x3d_c00227{left:418.780826px;}
.x37_c00227{left:422.831835px;}
.x2d_c00227{left:424.454205px;}
.x81_c00227{left:425.931455px;}
.x6a_c00227{left:430.388688px;}
.x1c_c00227{left:431.744345px;}
.x88_c00227{left:436.326665px;}
.x64_c00227{left:437.948205px;}
.x73_c00227{left:439.299045px;}
.x58_c00227{left:442.541597px;}
.x5f_c00227{left:444.160017px;}
.x18_c00227{left:445.783580px;}
.xa_c00227{left:447.796500px;}
.x1d_c00227{left:449.835816px;}
.x7b_c00227{left:451.179648px;}
.x48_c00227{left:452.799779px;}
.x2e_c00227{left:454.425135px;}
.x11_c00227{left:455.500890px;}
.x89_c00227{left:459.277028px;}
.x93_c00227{left:460.357164px;}
.x65_c00227{left:465.218919px;}
.x34_c00227{left:466.303623px;}
.x60_c00227{left:467.380394px;}
.x77_c00227{left:469.540761px;}
.x49_c00227{left:470.891250px;}
.x7f_c00227{left:474.667844px;}
.x8e_c00227{left:475.748562px;}
.x1e_c00227{left:486.827313px;}
.x8a_c00227{left:490.598066px;}
.x80_c00227{left:494.647964px;}
.x38_c00227{left:496.814829px;}
.x68_c00227{left:499.513443px;}
.x5c_c00227{left:500.592239px;}
.x12_c00227{left:507.613616px;}
.x55_c00227{left:517.604939px;}
.x82_c00227{left:520.693668px;}
.x99_c00227{left:521.883680px;}
.x6f_c00227{left:526.512191px;}
.x50_c00227{left:527.594745px;}
.x94_c00227{left:529.749780px;}
.x6b_c00227{left:532.452450px;}
.x9d_c00227{left:533.509500px;}
.x35_c00227{left:537.586388px;}
.x56_c00227{left:540.555302px;}
.x61_c00227{left:541.633401px;}
.x92_c00227{left:545.681795px;}
.x83_c00227{left:549.083028px;}
.x9b_c00227{left:555.670661px;}
.x84_c00227{left:584.708117px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fsb_c00227{font-size:55.068897pt;}
.fs9_c00227{font-size:56.002268pt;}
.fs3_c00227{font-size:56.935639pt;}
.fs8_c00227{font-size:58.802381pt;}
.fsa_c00227{font-size:59.735752pt;}
.fs7_c00227{font-size:60.669124pt;}
.fs4_c00227{font-size:61.602495pt;}
.fs5_c00227{font-size:62.535866pt;}
.fsc_c00227{font-size:63.469237pt;}
.fs2_c00227{font-size:64.402608pt;}
.fs6_c00227{font-size:66.269350pt;}
.fs1_c00227{font-size:68.136093pt;}
.fse_c00227{font-size:92.409055pt;}
.fs0_c00227{font-size:115.741666pt;}
.fsd_c00227{font-size:188.535784pt;}
.y0_c00227{bottom:0.000000pt;}
.y10d_c00227{bottom:86.168000pt;}
.y10b_c00227{bottom:86.462667pt;}
.y10e_c00227{bottom:87.324493pt;}
.y10f_c00227{bottom:88.099197pt;}
.y10c_c00227{bottom:90.843027pt;}
.y108_c00227{bottom:126.699692pt;}
.y109_c00227{bottom:126.699901pt;}
.y106_c00227{bottom:126.699912pt;}
.y107_c00227{bottom:126.700104pt;}
.y10a_c00227{bottom:126.700541pt;}
.y105_c00227{bottom:145.639801pt;}
.y104_c00227{bottom:146.804827pt;}
.y103_c00227{bottom:147.164947pt;}
.y102_c00227{bottom:147.484381pt;}
.y101_c00227{bottom:147.967483pt;}
.y100_c00227{bottom:148.140167pt;}
.yff_c00227{bottom:148.572640pt;}
.yfe_c00227{bottom:148.790855pt;}
.yfd_c00227{bottom:149.492496pt;}
.yfa_c00227{bottom:167.619620pt;}
.yfb_c00227{bottom:167.620076pt;}
.yf9_c00227{bottom:167.620192pt;}
.yf7_c00227{bottom:167.620415pt;}
.yfc_c00227{bottom:167.620505pt;}
.yf8_c00227{bottom:167.620551pt;}
.yf6_c00227{bottom:167.620945pt;}
.yf5_c00227{bottom:167.621277pt;}
.yf4_c00227{bottom:187.846923pt;}
.yf3_c00227{bottom:187.847148pt;}
.yf0_c00227{bottom:187.847249pt;}
.yf2_c00227{bottom:187.847613pt;}
.yef_c00227{bottom:187.847661pt;}
.yf1_c00227{bottom:187.847691pt;}
.yed_c00227{bottom:187.847804pt;}
.yee_c00227{bottom:187.847860pt;}
.yec_c00227{bottom:187.848323pt;}
.ye5_c00227{bottom:208.347647pt;}
.ye6_c00227{bottom:208.347928pt;}
.ye4_c00227{bottom:208.348245pt;}
.ye7_c00227{bottom:208.348343pt;}
.ye8_c00227{bottom:208.348357pt;}
.yea_c00227{bottom:208.348588pt;}
.ye9_c00227{bottom:208.348852pt;}
.yeb_c00227{bottom:208.349163pt;}
.ydb_c00227{bottom:228.814873pt;}
.ye3_c00227{bottom:228.814940pt;}
.ye0_c00227{bottom:228.814961pt;}
.ye2_c00227{bottom:228.815059pt;}
.ydf_c00227{bottom:228.815293pt;}
.ydc_c00227{bottom:228.815368pt;}
.ydd_c00227{bottom:228.815409pt;}
.ye1_c00227{bottom:228.815471pt;}
.yde_c00227{bottom:228.815785pt;}
.yda_c00227{bottom:246.601200pt;}
.yd9_c00227{bottom:246.917581pt;}
.yd8_c00227{bottom:247.170505pt;}
.yd7_c00227{bottom:247.749717pt;}
.yd6_c00227{bottom:248.013871pt;}
.yd5_c00227{bottom:248.338319pt;}
.yd4_c00227{bottom:248.799611pt;}
.yd3_c00227{bottom:249.092127pt;}
.yd2_c00227{bottom:249.634741pt;}
.yd1_c00227{bottom:249.896695pt;}
.yd0_c00227{bottom:250.302189pt;}
.yca_c00227{bottom:269.452271pt;}
.ycb_c00227{bottom:269.452445pt;}
.yc9_c00227{bottom:269.452641pt;}
.yc8_c00227{bottom:269.452973pt;}
.ycc_c00227{bottom:269.453035pt;}
.ycd_c00227{bottom:269.453129pt;}
.ycf_c00227{bottom:269.453295pt;}
.yce_c00227{bottom:269.453467pt;}
.yc7_c00227{bottom:289.977905pt;}
.yc6_c00227{bottom:289.978329pt;}
.yc2_c00227{bottom:289.978603pt;}
.yc3_c00227{bottom:289.978617pt;}
.yc1_c00227{bottom:289.978641pt;}
.yc5_c00227{bottom:289.978795pt;}
.yc4_c00227{bottom:289.978845pt;}
.ybe_c00227{bottom:310.608889pt;}
.yc0_c00227{bottom:310.609120pt;}
.ybd_c00227{bottom:310.609381pt;}
.ybb_c00227{bottom:310.609432pt;}
.ybf_c00227{bottom:310.609517pt;}
.ybc_c00227{bottom:310.609740pt;}
.yba_c00227{bottom:310.610096pt;}
.yb9_c00227{bottom:310.610523pt;}
.yb5_c00227{bottom:330.389472pt;}
.yb4_c00227{bottom:330.389724pt;}
.yb6_c00227{bottom:330.389780pt;}
.yb7_c00227{bottom:330.390141pt;}
.yb3_c00227{bottom:330.390231pt;}
.yb0_c00227{bottom:330.390465pt;}
.yb2_c00227{bottom:330.390616pt;}
.yb8_c00227{bottom:330.390677pt;}
.yb1_c00227{bottom:330.390987pt;}
.yaf_c00227{bottom:350.778775pt;}
.yae_c00227{bottom:350.779012pt;}
.ya8_c00227{bottom:350.779431pt;}
.yab_c00227{bottom:350.779433pt;}
.yac_c00227{bottom:350.779475pt;}
.yad_c00227{bottom:350.779489pt;}
.yaa_c00227{bottom:350.779712pt;}
.ya9_c00227{bottom:350.779845pt;}
.ya6_c00227{bottom:350.779881pt;}
.ya7_c00227{bottom:350.779949pt;}
.y9f_c00227{bottom:371.096500pt;}
.y9e_c00227{bottom:371.096577pt;}
.ya0_c00227{bottom:371.097009pt;}
.ya2_c00227{bottom:371.097252pt;}
.ya1_c00227{bottom:371.097611pt;}
.ya3_c00227{bottom:371.097693pt;}
.ya4_c00227{bottom:371.098161pt;}
.ya5_c00227{bottom:371.098605pt;}
.y9c_c00227{bottom:391.478831pt;}
.y99_c00227{bottom:391.479041pt;}
.y9a_c00227{bottom:391.479121pt;}
.y96_c00227{bottom:391.479131pt;}
.y98_c00227{bottom:391.479240pt;}
.y9d_c00227{bottom:391.479432pt;}
.y97_c00227{bottom:391.479439pt;}
.y9b_c00227{bottom:391.479483pt;}
.y95_c00227{bottom:391.479676pt;}
.y94_c00227{bottom:411.505387pt;}
.y8e_c00227{bottom:411.505752pt;}
.y8c_c00227{bottom:411.505815pt;}
.y93_c00227{bottom:411.505905pt;}
.y92_c00227{bottom:411.506157pt;}
.y8d_c00227{bottom:411.506309pt;}
.y8f_c00227{bottom:411.506407pt;}
.y91_c00227{bottom:411.506436pt;}
.y90_c00227{bottom:411.507061pt;}
.y83_c00227{bottom:431.674152pt;}
.y87_c00227{bottom:431.674172pt;}
.y85_c00227{bottom:431.674223pt;}
.y86_c00227{bottom:431.674264pt;}
.y88_c00227{bottom:431.674267pt;}
.y84_c00227{bottom:431.674433pt;}
.y89_c00227{bottom:431.674563pt;}
.y8a_c00227{bottom:431.674977pt;}
.y8b_c00227{bottom:431.675620pt;}
.y82_c00227{bottom:452.649016pt;}
.y81_c00227{bottom:452.649561pt;}
.y7e_c00227{bottom:452.650104pt;}
.y80_c00227{bottom:452.650133pt;}
.y7c_c00227{bottom:452.650407pt;}
.y7f_c00227{bottom:452.650439pt;}
.y7d_c00227{bottom:452.650741pt;}
.y7b_c00227{bottom:452.650804pt;}
.y7a_c00227{bottom:452.650976pt;}
.y75_c00227{bottom:472.842143pt;}
.y76_c00227{bottom:472.842225pt;}
.y79_c00227{bottom:472.842284pt;}
.y77_c00227{bottom:472.842400pt;}
.y78_c00227{bottom:472.842536pt;}
.y74_c00227{bottom:472.842795pt;}
.y70_c00227{bottom:492.520867pt;}
.y71_c00227{bottom:492.521201pt;}
.y73_c00227{bottom:492.521257pt;}
.y6f_c00227{bottom:492.521412pt;}
.y72_c00227{bottom:492.521669pt;}
.y6e_c00227{bottom:492.521717pt;}
.y6d_c00227{bottom:492.521809pt;}
.y6c_c00227{bottom:492.521848pt;}
.y69_c00227{bottom:492.521964pt;}
.y6a_c00227{bottom:492.522272pt;}
.y6b_c00227{bottom:492.522367pt;}
.y64_c00227{bottom:513.511128pt;}
.y63_c00227{bottom:513.511140pt;}
.y68_c00227{bottom:513.511281pt;}
.y62_c00227{bottom:513.511285pt;}
.y67_c00227{bottom:513.511305pt;}
.y66_c00227{bottom:513.511344pt;}
.y65_c00227{bottom:513.511383pt;}
.y61_c00227{bottom:513.511564pt;}
.y60_c00227{bottom:513.512109pt;}
.y57_c00227{bottom:533.550956pt;}
.y58_c00227{bottom:533.551557pt;}
.y59_c00227{bottom:533.552067pt;}
.y5a_c00227{bottom:533.552401pt;}
.y5f_c00227{bottom:533.552647pt;}
.y5b_c00227{bottom:533.552801pt;}
.y5e_c00227{bottom:533.553260pt;}
.y5c_c00227{bottom:533.553456pt;}
.y5d_c00227{bottom:533.553592pt;}
.y51_c00227{bottom:554.081705pt;}
.y52_c00227{bottom:554.082028pt;}
.y50_c00227{bottom:554.082103pt;}
.y55_c00227{bottom:554.082140pt;}
.y53_c00227{bottom:554.082564pt;}
.y54_c00227{bottom:554.082659pt;}
.y56_c00227{bottom:554.082756pt;}
.y4a_c00227{bottom:573.921343pt;}
.y4f_c00227{bottom:573.921363pt;}
.y4b_c00227{bottom:573.921464pt;}
.y4e_c00227{bottom:573.921561pt;}
.y4d_c00227{bottom:573.921733pt;}
.y49_c00227{bottom:573.921835pt;}
.y4c_c00227{bottom:573.922012pt;}
.y48_c00227{bottom:573.922060pt;}
.y47_c00227{bottom:573.922152pt;}
.y46_c00227{bottom:573.922431pt;}
.y41_c00227{bottom:594.892155pt;}
.y40_c00227{bottom:594.892419pt;}
.y44_c00227{bottom:594.892652pt;}
.y42_c00227{bottom:594.892676pt;}
.y45_c00227{bottom:594.892987pt;}
.y3f_c00227{bottom:594.893015pt;}
.y43_c00227{bottom:594.893171pt;}
.y37_c00227{bottom:614.324483pt;}
.y39_c00227{bottom:614.324565pt;}
.y3b_c00227{bottom:614.324689pt;}
.y3a_c00227{bottom:614.324808pt;}
.y36_c00227{bottom:614.324975pt;}
.y38_c00227{bottom:614.325057pt;}
.y3c_c00227{bottom:614.325157pt;}
.y35_c00227{bottom:614.325345pt;}
.y3d_c00227{bottom:614.325812pt;}
.y3e_c00227{bottom:614.326040pt;}
.y2d_c00227{bottom:635.415808pt;}
.y34_c00227{bottom:635.415845pt;}
.y33_c00227{bottom:635.416097pt;}
.y30_c00227{bottom:635.416119pt;}
.y2e_c00227{bottom:635.416436pt;}
.y32_c00227{bottom:635.416456pt;}
.y31_c00227{bottom:635.416468pt;}
.y2f_c00227{bottom:635.416717pt;}
.y2a_c00227{bottom:656.251161pt;}
.y2b_c00227{bottom:656.251481pt;}
.y29_c00227{bottom:656.251573pt;}
.y2c_c00227{bottom:656.251709pt;}
.y28_c00227{bottom:656.251719pt;}
.y27_c00227{bottom:656.252131pt;}
.y26_c00227{bottom:656.252543pt;}
.y25_c00227{bottom:656.253061pt;}
.y1c_c00227{bottom:675.906512pt;}
.y1d_c00227{bottom:675.907167pt;}
.y1e_c00227{bottom:675.907608pt;}
.y23_c00227{bottom:675.907655pt;}
.y22_c00227{bottom:675.907747pt;}
.y20_c00227{bottom:675.907945pt;}
.y24_c00227{bottom:675.908123pt;}
.y1f_c00227{bottom:675.908132pt;}
.y21_c00227{bottom:675.908360pt;}
.y1b_c00227{bottom:696.542336pt;}
.y1a_c00227{bottom:696.542908pt;}
.y14_c00227{bottom:696.543341pt;}
.y18_c00227{bottom:696.543453pt;}
.y19_c00227{bottom:696.543468pt;}
.y16_c00227{bottom:696.543931pt;}
.y15_c00227{bottom:696.543969pt;}
.y17_c00227{bottom:696.544052pt;}
.ye_c00227{bottom:716.589740pt;}
.yd_c00227{bottom:716.590019pt;}
.yf_c00227{bottom:716.590341pt;}
.y13_c00227{bottom:716.590560pt;}
.yc_c00227{bottom:716.590603pt;}
.y10_c00227{bottom:716.590623pt;}
.y11_c00227{bottom:716.590851pt;}
.y12_c00227{bottom:716.591025pt;}
.yb_c00227{bottom:716.591121pt;}
.y5_c00227{bottom:735.841333pt;}
.y6_c00227{bottom:736.362013pt;}
.y7_c00227{bottom:737.091889pt;}
.y8_c00227{bottom:737.558677pt;}
.y9_c00227{bottom:737.738125pt;}
.ya_c00227{bottom:738.051133pt;}
.y1_c00227{bottom:774.826667pt;}
.y2_c00227{bottom:775.204059pt;}
.y3_c00227{bottom:776.273403pt;}
.y4_c00227{bottom:777.820155pt;}
.hd_c00227{height:55.068897pt;}
.hb_c00227{height:56.002268pt;}
.h5_c00227{height:56.935639pt;}
.ha_c00227{height:58.802381pt;}
.hc_c00227{height:59.735752pt;}
.h9_c00227{height:60.669124pt;}
.h6_c00227{height:61.602495pt;}
.h7_c00227{height:62.535866pt;}
.he_c00227{height:63.469237pt;}
.h4_c00227{height:64.402608pt;}
.h8_c00227{height:66.269350pt;}
.h3_c00227{height:68.136093pt;}
.h10_c00227{height:92.409055pt;}
.h2_c00227{height:115.741666pt;}
.hf_c00227{height:188.535784pt;}
.h0_c00227{height:896.400000pt;}
.h1_c00227{height:896.666667pt;}
.w0_c00227{width:603.066667pt;}
.w1_c00227{width:603.333333pt;}
.x0_c00227{left:0.000000pt;}
.x9c_c00227{left:67.140000pt;}
.x1_c00227{left:76.062667pt;}
.x95_c00227{left:78.722736pt;}
.x9a_c00227{left:83.752260pt;}
.x2_c00227{left:107.512000pt;}
.x5d_c00227{left:143.039183pt;}
.x59_c00227{left:144.719876pt;}
.x51_c00227{left:147.359947pt;}
.x4a_c00227{left:149.039187pt;}
.x27_c00227{left:150.723612pt;}
.x5_c00227{left:152.508000pt;}
.x1f_c00227{left:154.083031pt;}
.x74_c00227{left:163.679676pt;}
.x96_c00227{left:170.754468pt;}
.x85_c00227{left:172.557821pt;}
.x7c_c00227{left:173.518860pt;}
.x5a_c00227{left:174.480955pt;}
.x28_c00227{left:175.684295pt;}
.xb_c00227{left:177.120569pt;}
.x20_c00227{left:178.323665pt;}
.x4b_c00227{left:180.240385pt;}
.x19_c00227{left:182.883157pt;}
.x42_c00227{left:184.800409pt;}
.x8f_c00227{left:187.198352pt;}
.x13_c00227{left:189.601985pt;}
.x8b_c00227{left:192.478296pt;}
.x66_c00227{left:193.439657pt;}
.x29_c00227{left:195.124533pt;}
.x3_c00227{left:196.624000pt;}
.x39_c00227{left:197.763487pt;}
.x21_c00227{left:198.723988pt;}
.x4c_c00227{left:201.840804pt;}
.x3e_c00227{left:203.522503pt;}
.x86_c00227{left:206.639248pt;}
.x2f_c00227{left:208.084727pt;}
.x6_c00227{left:210.361333pt;}
.x8c_c00227{left:211.918535pt;}
.x97_c00227{left:213.968527pt;}
.x52_c00227{left:216.002836pt;}
.x14_c00227{left:220.563160pt;}
.x78_c00227{left:222.002068pt;}
.x5b_c00227{left:223.922296pt;}
.x6c_c00227{left:225.841883pt;}
.xc_c00227{left:227.281971pt;}
.x2a_c00227{left:228.245888pt;}
.x3a_c00227{left:230.644817pt;}
.x5e_c00227{left:235.202647pt;}
.x4d_c00227{left:236.642291pt;}
.x43_c00227{left:237.602015pt;}
.x7d_c00227{left:240.001581pt;}
.x22_c00227{left:243.126255pt;}
.x62_c00227{left:246.961095pt;}
.x30_c00227{left:249.366741pt;}
.x3b_c00227{left:250.325080pt;}
.x57_c00227{left:253.204289pt;}
.x44_c00227{left:255.122097pt;}
.x3f_c00227{left:257.044168pt;}
.x87_c00227{left:258.240757pt;}
.x75_c00227{left:259.203416pt;}
.x7e_c00227{left:263.282132pt;}
.x53_c00227{left:264.245415pt;}
.x15_c00227{left:269.765811pt;}
.x45_c00227{left:270.723357pt;}
.xd_c00227{left:272.884333pt;}
.x31_c00227{left:276.247580pt;}
.x67_c00227{left:278.643891pt;}
.x3c_c00227{left:279.606123pt;}
.x70_c00227{left:280.563136pt;}
.x54_c00227{left:283.205617pt;}
.x4e_c00227{left:284.644845pt;}
.x90_c00227{left:287.042440pt;}
.x63_c00227{left:288.963157pt;}
.x23_c00227{left:289.928713pt;}
.x7_c00227{left:291.458667pt;}
.x71_c00227{left:292.804132pt;}
.x8d_c00227{left:297.602804pt;}
.x2b_c00227{left:298.808933pt;}
.x46_c00227{left:300.724448pt;}
.x76_c00227{left:301.685527pt;}
.x16_c00227{left:302.887165pt;}
.x32_c00227{left:305.528623pt;}
.x79_c00227{left:310.325220pt;}
.x98_c00227{left:311.405195pt;}
.x6d_c00227{left:312.964939pt;}
.x40_c00227{left:314.886181pt;}
.xe_c00227{left:316.806552pt;}
.x72_c00227{left:319.444959pt;}
.x24_c00227{left:322.330008pt;}
.x4_c00227{left:325.520000pt;}
.x1a_c00227{left:326.409440pt;}
.x36_c00227{left:328.087989pt;}
.x91_c00227{left:331.444707pt;}
.x7a_c00227{left:332.645699pt;}
.x25_c00227{left:334.811016pt;}
.xf_c00227{left:336.246791pt;}
.x1b_c00227{left:339.130472pt;}
.x6e_c00227{left:342.005957pt;}
.x8_c00227{left:343.324000pt;}
.x2c_c00227{left:346.811488pt;}
.x69_c00227{left:351.846572pt;}
.x4f_c00227{left:354.007795pt;}
.x33_c00227{left:355.930036pt;}
.x17_c00227{left:358.090308pt;}
.x9_c00227{left:363.262667pt;}
.x47_c00227{left:366.967145pt;}
.x26_c00227{left:368.172383pt;}
.x10_c00227{left:369.608157pt;}
.x41_c00227{left:371.288087pt;}
.x3d_c00227{left:372.249623pt;}
.x37_c00227{left:375.850520pt;}
.x2d_c00227{left:377.292627pt;}
.x81_c00227{left:378.605737pt;}
.x6a_c00227{left:382.567723pt;}
.x1c_c00227{left:383.772751pt;}
.x88_c00227{left:387.845924pt;}
.x64_c00227{left:389.287293pt;}
.x73_c00227{left:390.488040pt;}
.x58_c00227{left:393.370308pt;}
.x5f_c00227{left:394.808904pt;}
.x18_c00227{left:396.252071pt;}
.xa_c00227{left:398.041333pt;}
.x1d_c00227{left:399.854059pt;}
.x7b_c00227{left:401.048576pt;}
.x48_c00227{left:402.488692pt;}
.x2e_c00227{left:403.933453pt;}
.x11_c00227{left:404.889680pt;}
.x89_c00227{left:408.246247pt;}
.x93_c00227{left:409.206368pt;}
.x65_c00227{left:413.527928pt;}
.x34_c00227{left:414.492109pt;}
.x60_c00227{left:415.449239pt;}
.x77_c00227{left:417.369565pt;}
.x49_c00227{left:418.570000pt;}
.x7f_c00227{left:421.926972pt;}
.x8e_c00227{left:422.887611pt;}
.x1e_c00227{left:432.735389pt;}
.x8a_c00227{left:436.087169pt;}
.x80_c00227{left:439.687079pt;}
.x38_c00227{left:441.613181pt;}
.x68_c00227{left:444.011949pt;}
.x5c_c00227{left:444.970879pt;}
.x12_c00227{left:451.212103pt;}
.x55_c00227{left:460.093279pt;}
.x82_c00227{left:462.838816pt;}
.x99_c00227{left:463.896604pt;}
.x6f_c00227{left:468.010836pt;}
.x50_c00227{left:468.973107pt;}
.x94_c00227{left:470.888693pt;}
.x6b_c00227{left:473.291067pt;}
.x9d_c00227{left:474.230667pt;}
.x35_c00227{left:477.854567pt;}
.x56_c00227{left:480.493601pt;}
.x61_c00227{left:481.451912pt;}
.x92_c00227{left:485.050484pt;}
.x83_c00227{left:488.073803pt;}
.x9b_c00227{left:493.929476pt;}
.x84_c00227{left:519.740548pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00228 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00228 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00228 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00228 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m81_c00229{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);}
.m7d_c00229{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m82_c00229{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);}
.mc6_c00229{transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);}
.m64_c00229{transform:matrix(0.099500,-0.000995,0.002500,0.249988,0,0);-ms-transform:matrix(0.099500,-0.000995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.099500,-0.000995,0.002500,0.249988,0,0);}
.m78_c00229{transform:matrix(0.118540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118540,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.123485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123485,0.000000,0.000000,0.250000,0,0);}
.m8e_c00229{transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.137203,-0.001784,0.003250,0.249979,0,0);-ms-transform:matrix(0.137203,-0.001784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.137203,-0.001784,0.003250,0.249979,0,0);}
.m3c_c00229{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m58_c00229{transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);-ms-transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);}
.m16_c00229{transform:matrix(0.149052,-0.001938,0.003250,0.249979,0,0);-ms-transform:matrix(0.149052,-0.001938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149052,-0.001938,0.003250,0.249979,0,0);}
.mc_c00229{transform:matrix(0.150427,-0.001956,0.003250,0.249979,0,0);-ms-transform:matrix(0.150427,-0.001956,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150427,-0.001956,0.003250,0.249979,0,0);}
.m97_c00229{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.153590,-0.002150,0.003500,0.249976,0,0);-ms-transform:matrix(0.153590,-0.002150,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153590,-0.002150,0.003500,0.249976,0,0);}
.m1e_c00229{transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);-ms-transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154028,-0.002618,0.004249,0.249964,0,0);}
.m20_c00229{transform:matrix(0.155178,-0.002638,0.004249,0.249964,0,0);-ms-transform:matrix(0.155178,-0.002638,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155178,-0.002638,0.004249,0.249964,0,0);}
.mba_c00229{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);}
.mbc_c00229{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);}
.m5d_c00229{transform:matrix(0.161557,-0.001616,0.002500,0.249988,0,0);-ms-transform:matrix(0.161557,-0.001616,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161557,-0.001616,0.002500,0.249988,0,0);}
.m26_c00229{transform:matrix(0.161849,-0.002266,0.003500,0.249976,0,0);-ms-transform:matrix(0.161849,-0.002266,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161849,-0.002266,0.003500,0.249976,0,0);}
.mc4_c00229{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);}
.m67_c00229{transform:matrix(0.163157,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163157,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163157,-0.001632,0.002500,0.249988,0,0);}
.m61_c00229{transform:matrix(0.163207,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163207,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163207,-0.001632,0.002500,0.249988,0,0);}
.m9d_c00229{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);}
.m12_c00229{transform:matrix(0.163461,-0.002125,0.003250,0.249979,0,0);-ms-transform:matrix(0.163461,-0.002125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163461,-0.002125,0.003250,0.249979,0,0);}
.m6f_c00229{transform:matrix(0.166796,-0.006178,0.009253,0.249829,0,0);-ms-transform:matrix(0.166796,-0.006178,0.009253,0.249829,0,0);-webkit-transform:matrix(0.166796,-0.006178,0.009253,0.249829,0,0);}
.mb6_c00229{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);}
.m35_c00229{transform:matrix(0.168216,-0.002523,0.003750,0.249972,0,0);-ms-transform:matrix(0.168216,-0.002523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168216,-0.002523,0.003750,0.249972,0,0);}
.m2b_c00229{transform:matrix(0.169148,-0.002368,0.003500,0.249976,0,0);-ms-transform:matrix(0.169148,-0.002368,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169148,-0.002368,0.003500,0.249976,0,0);}
.m25_c00229{transform:matrix(0.169223,-0.002369,0.003500,0.249976,0,0);-ms-transform:matrix(0.169223,-0.002369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169223,-0.002369,0.003500,0.249976,0,0);}
.m5b_c00229{transform:matrix(0.172081,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172081,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172081,-0.001721,0.002500,0.249988,0,0);}
.ma2_c00229{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);}
.mbd_c00229{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);}
.m52_c00229{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);}
.m53_c00229{transform:matrix(0.176101,-0.001761,0.002500,0.249988,0,0);-ms-transform:matrix(0.176101,-0.001761,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176101,-0.001761,0.002500,0.249988,0,0);}
.m66_c00229{transform:matrix(0.177236,-0.001772,0.002500,0.249988,0,0);-ms-transform:matrix(0.177236,-0.001772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177236,-0.001772,0.002500,0.249988,0,0);}
.md_c00229{transform:matrix(0.179895,-0.002339,0.003250,0.249979,0,0);-ms-transform:matrix(0.179895,-0.002339,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179895,-0.002339,0.003250,0.249979,0,0);}
.m62_c00229{transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);}
.m7e_c00229{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);}
.m83_c00229{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);}
.m88_c00229{transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{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);}
.m21_c00229{transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);-ms-transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);}
.m5c_c00229{transform:matrix(0.184646,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184646,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184646,-0.001846,0.002500,0.249988,0,0);}
.m13_c00229{transform:matrix(0.184974,-0.002405,0.003250,0.249979,0,0);-ms-transform:matrix(0.184974,-0.002405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184974,-0.002405,0.003250,0.249979,0,0);}
.mb0_c00229{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);}
.m27_c00229{transform:matrix(0.185232,-0.002593,0.003500,0.249976,0,0);-ms-transform:matrix(0.185232,-0.002593,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185232,-0.002593,0.003500,0.249976,0,0);}
.mbe_c00229{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);}
.maf_c00229{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);}
.m87_c00229{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);}
.m50_c00229{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);}
.ma_c00229{transform:matrix(0.187259,-0.002434,0.003250,0.249979,0,0);-ms-transform:matrix(0.187259,-0.002434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187259,-0.002434,0.003250,0.249979,0,0);}
.m99_c00229{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);}
.m2a_c00229{transform:matrix(0.189461,-0.002652,0.003500,0.249976,0,0);-ms-transform:matrix(0.189461,-0.002652,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189461,-0.002652,0.003500,0.249976,0,0);}
.mae_c00229{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);}
.m15_c00229{transform:matrix(0.190989,-0.002483,0.003250,0.249979,0,0);-ms-transform:matrix(0.190989,-0.002483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190989,-0.002483,0.003250,0.249979,0,0);}
.mc7_c00229{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);}
.maa_c00229{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);}
.me_c00229{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);}
.mbb_c00229{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);}
.ma8_c00229{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);}
.m1d_c00229{transform:matrix(0.197581,-0.003359,0.004249,0.249964,0,0);-ms-transform:matrix(0.197581,-0.003359,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197581,-0.003359,0.004249,0.249964,0,0);}
.mb7_c00229{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);}
.m4e_c00229{transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);}
.mb2_c00229{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);}
.mc0_c00229{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);}
.mc1_c00229{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_c00229{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);}
.m4_c00229{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);}
.m5e_c00229{transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);-ms-transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202050,-0.002020,0.002500,0.249988,0,0);}
.m91_c00229{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);}
.mab_c00229{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);}
.mf_c00229{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);}
.m7b_c00229{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);}
.m17_c00229{transform:matrix(0.204253,-0.002655,0.003250,0.249979,0,0);-ms-transform:matrix(0.204253,-0.002655,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204253,-0.002655,0.003250,0.249979,0,0);}
.m1f_c00229{transform:matrix(0.204535,-0.003477,0.004249,0.249964,0,0);-ms-transform:matrix(0.204535,-0.003477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204535,-0.003477,0.004249,0.249964,0,0);}
.m51_c00229{transform:matrix(0.204565,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204565,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204565,-0.002046,0.002500,0.249988,0,0);}
.m22_c00229{transform:matrix(0.204615,-0.003478,0.004249,0.249964,0,0);-ms-transform:matrix(0.204615,-0.003478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204615,-0.003478,0.004249,0.249964,0,0);}
.m60_c00229{transform:matrix(0.204655,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204655,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204655,-0.002047,0.002500,0.249988,0,0);}
.ma6_c00229{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);}
.m1c_c00229{transform:matrix(0.205108,-0.002666,0.003250,0.249979,0,0);-ms-transform:matrix(0.205108,-0.002666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205108,-0.002666,0.003250,0.249979,0,0);}
.ma1_c00229{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);}
.m74_c00229{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);}
.m76_c00229{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);}
.m10_c00229{transform:matrix(0.207522,-0.002698,0.003250,0.249979,0,0);-ms-transform:matrix(0.207522,-0.002698,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207522,-0.002698,0.003250,0.249979,0,0);}
.m19_c00229{transform:matrix(0.208297,-0.002708,0.003250,0.249979,0,0);-ms-transform:matrix(0.208297,-0.002708,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208297,-0.002708,0.003250,0.249979,0,0);}
.m73_c00229{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);}
.mb8_c00229{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);}
.mc5_c00229{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);}
.mac_c00229{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_c00229{transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{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);}
.ma9_c00229{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);}
.m90_c00229{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);}
.m29_c00229{transform:matrix(0.214979,-0.003010,0.003500,0.249976,0,0);-ms-transform:matrix(0.214979,-0.003010,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214979,-0.003010,0.003500,0.249976,0,0);}
.m9_c00229{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);}
.m4f_c00229{transform:matrix(0.216309,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216309,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216309,-0.002163,0.002500,0.249988,0,0);}
.mb_c00229{transform:matrix(0.216797,-0.002818,0.003250,0.249979,0,0);-ms-transform:matrix(0.216797,-0.002818,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216797,-0.002818,0.003250,0.249979,0,0);}
.m59_c00229{transform:matrix(0.217229,-0.002172,0.002500,0.249988,0,0);-ms-transform:matrix(0.217229,-0.002172,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217229,-0.002172,0.002500,0.249988,0,0);}
.m4b_c00229{transform:matrix(0.217494,-0.002175,0.002500,0.249988,0,0);-ms-transform:matrix(0.217494,-0.002175,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217494,-0.002175,0.002500,0.249988,0,0);}
.m47_c00229{transform:matrix(0.217809,-0.002178,0.002500,0.249988,0,0);-ms-transform:matrix(0.217809,-0.002178,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217809,-0.002178,0.002500,0.249988,0,0);}
.m77_c00229{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);}
.m23_c00229{transform:matrix(0.219203,-0.003726,0.004249,0.249964,0,0);-ms-transform:matrix(0.219203,-0.003726,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219203,-0.003726,0.004249,0.249964,0,0);}
.m14_c00229{transform:matrix(0.220211,-0.002863,0.003250,0.249979,0,0);-ms-transform:matrix(0.220211,-0.002863,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220211,-0.002863,0.003250,0.249979,0,0);}
.m36_c00229{transform:matrix(0.223755,-0.003356,0.003750,0.249972,0,0);-ms-transform:matrix(0.223755,-0.003356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223755,-0.003356,0.003750,0.249972,0,0);}
.m0_c00229{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);}
.m48_c00229{transform:matrix(0.225769,-0.002258,0.002500,0.249988,0,0);-ms-transform:matrix(0.225769,-0.002258,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225769,-0.002258,0.002500,0.249988,0,0);}
.m56_c00229{transform:matrix(0.226199,-0.002262,0.002500,0.249988,0,0);-ms-transform:matrix(0.226199,-0.002262,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226199,-0.002262,0.002500,0.249988,0,0);}
.ma4_c00229{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);}
.ma3_c00229{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);}
.mbf_c00229{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.mb4_c00229{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);}
.m4d_c00229{transform:matrix(0.229799,-0.002298,0.002500,0.249988,0,0);-ms-transform:matrix(0.229799,-0.002298,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229799,-0.002298,0.002500,0.249988,0,0);}
.m45_c00229{transform:matrix(0.230068,-0.002301,0.002500,0.249988,0,0);-ms-transform:matrix(0.230068,-0.002301,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230068,-0.002301,0.002500,0.249988,0,0);}
.mb5_c00229{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);}
.m4a_c00229{transform:matrix(0.230553,-0.002306,0.002500,0.249988,0,0);-ms-transform:matrix(0.230553,-0.002306,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230553,-0.002306,0.002500,0.249988,0,0);}
.m5a_c00229{transform:matrix(0.233033,-0.002330,0.002500,0.249988,0,0);-ms-transform:matrix(0.233033,-0.002330,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233033,-0.002330,0.002500,0.249988,0,0);}
.m34_c00229{transform:matrix(0.235628,-0.003534,0.003750,0.249972,0,0);-ms-transform:matrix(0.235628,-0.003534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235628,-0.003534,0.003750,0.249972,0,0);}
.m65_c00229{transform:matrix(0.235753,-0.002358,0.002500,0.249988,0,0);-ms-transform:matrix(0.235753,-0.002358,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235753,-0.002358,0.002500,0.249988,0,0);}
.m72_c00229{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);}
.ma0_c00229{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);}
.mc3_c00229{transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{transform:matrix(0.239658,-0.002397,0.002500,0.249988,0,0);-ms-transform:matrix(0.239658,-0.002397,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239658,-0.002397,0.002500,0.249988,0,0);}
.m1b_c00229{transform:matrix(0.243044,-0.003160,0.003250,0.249979,0,0);-ms-transform:matrix(0.243044,-0.003160,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243044,-0.003160,0.003250,0.249979,0,0);}
.m49_c00229{transform:matrix(0.248058,-0.002481,0.002500,0.249988,0,0);-ms-transform:matrix(0.248058,-0.002481,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248058,-0.002481,0.002500,0.249988,0,0);}
.m38_c00229{transform:matrix(0.248327,-0.003725,0.003750,0.249972,0,0);-ms-transform:matrix(0.248327,-0.003725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248327,-0.003725,0.003750,0.249972,0,0);}
.m5f_c00229{transform:matrix(0.249128,-0.002491,0.002500,0.249988,0,0);-ms-transform:matrix(0.249128,-0.002491,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249128,-0.002491,0.002500,0.249988,0,0);}
.mc8_c00229{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);}
.m42_c00229{transform:matrix(0.251642,-0.002516,0.002500,0.249988,0,0);-ms-transform:matrix(0.251642,-0.002516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251642,-0.002516,0.002500,0.249988,0,0);}
.m93_c00229{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m7a_c00229{transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);}
.m8f_c00229{transform:matrix(0.257640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257640,0.000000,0.000000,0.250000,0,0);}
.m46_c00229{transform:matrix(0.258162,-0.002582,0.002500,0.249988,0,0);-ms-transform:matrix(0.258162,-0.002582,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258162,-0.002582,0.002500,0.249988,0,0);}
.m3a_c00229{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);}
.mb9_c00229{transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);}
.m6d_c00229{transform:matrix(0.262360,-0.009717,0.009253,0.249829,0,0);-ms-transform:matrix(0.262360,-0.009717,0.009253,0.249829,0,0);-webkit-transform:matrix(0.262360,-0.009717,0.009253,0.249829,0,0);}
.m75_c00229{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);}
.m69_c00229{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);}
.m7f_c00229{transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.274932,-0.003574,0.003250,0.249979,0,0);-ms-transform:matrix(0.274932,-0.003574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274932,-0.003574,0.003250,0.249979,0,0);}
.m43_c00229{transform:matrix(0.275551,-0.002756,0.002500,0.249988,0,0);-ms-transform:matrix(0.275551,-0.002756,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275551,-0.002756,0.002500,0.249988,0,0);}
.m2e_c00229{transform:matrix(0.278374,-0.004176,0.003750,0.249972,0,0);-ms-transform:matrix(0.278374,-0.004176,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278374,-0.004176,0.003750,0.249972,0,0);}
.m31_c00229{transform:matrix(0.280648,-0.004210,0.003750,0.249972,0,0);-ms-transform:matrix(0.280648,-0.004210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280648,-0.004210,0.003750,0.249972,0,0);}
.m54_c00229{transform:matrix(0.281526,-0.002815,0.002500,0.249988,0,0);-ms-transform:matrix(0.281526,-0.002815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281526,-0.002815,0.002500,0.249988,0,0);}
.m55_c00229{transform:matrix(0.281861,-0.002819,0.002500,0.249988,0,0);-ms-transform:matrix(0.281861,-0.002819,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281861,-0.002819,0.002500,0.249988,0,0);}
.m37_c00229{transform:matrix(0.281928,-0.004229,0.003750,0.249972,0,0);-ms-transform:matrix(0.281928,-0.004229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281928,-0.004229,0.003750,0.249972,0,0);}
.m3b_c00229{transform:matrix(0.285215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285215,0.000000,0.000000,0.250000,0,0);}
.m8a_c00229{transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285520,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.285898,-0.004288,0.003750,0.249972,0,0);-ms-transform:matrix(0.285898,-0.004288,0.003750,0.249972,0,0);-webkit-transform:matrix(0.285898,-0.004288,0.003750,0.249972,0,0);}
.m2f_c00229{transform:matrix(0.286888,-0.004303,0.003750,0.249972,0,0);-ms-transform:matrix(0.286888,-0.004303,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286888,-0.004303,0.003750,0.249972,0,0);}
.m30_c00229{transform:matrix(0.289802,-0.004347,0.003750,0.249972,0,0);-ms-transform:matrix(0.289802,-0.004347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.289802,-0.004347,0.003750,0.249972,0,0);}
.m7c_c00229{transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290645,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{transform:matrix(0.291021,-0.004074,0.003500,0.249976,0,0);-ms-transform:matrix(0.291021,-0.004074,0.003500,0.249976,0,0);-webkit-transform:matrix(0.291021,-0.004074,0.003500,0.249976,0,0);}
.m6c_c00229{transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293755,0.000000,0.000000,0.250000,0,0);}
.m32_c00229{transform:matrix(0.296467,-0.004447,0.003750,0.249972,0,0);-ms-transform:matrix(0.296467,-0.004447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296467,-0.004447,0.003750,0.249972,0,0);}
.m9b_c00229{transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299150,0.000000,0.000000,0.250000,0,0);}
.m98_c00229{transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00229{transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308490,0.000000,0.000000,0.250000,0,0);}
.m94_c00229{transform:matrix(0.308760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308760,0.000000,0.000000,0.250000,0,0);}
.m44_c00229{transform:matrix(0.316689,-0.003167,0.002500,0.249988,0,0);-ms-transform:matrix(0.316689,-0.003167,0.002500,0.249988,0,0);-webkit-transform:matrix(0.316689,-0.003167,0.002500,0.249988,0,0);}
.m4c_c00229{transform:matrix(0.319854,-0.003199,0.002500,0.249988,0,0);-ms-transform:matrix(0.319854,-0.003199,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319854,-0.003199,0.002500,0.249988,0,0);}
.m71_c00229{transform:matrix(0.326736,-0.012101,0.009253,0.249829,0,0);-ms-transform:matrix(0.326736,-0.012101,0.009253,0.249829,0,0);-webkit-transform:matrix(0.326736,-0.012101,0.009253,0.249829,0,0);}
.m41_c00229{transform:matrix(0.327604,-0.003276,0.002500,0.249988,0,0);-ms-transform:matrix(0.327604,-0.003276,0.002500,0.249988,0,0);-webkit-transform:matrix(0.327604,-0.003276,0.002500,0.249988,0,0);}
.m2_c00229{transform:matrix(0.331900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331900,0.000000,0.000000,0.250000,0,0);}
.m95_c00229{transform:matrix(0.333550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333550,0.000000,0.000000,0.250000,0,0);}
.ma5_c00229{transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337205,0.000000,0.000000,0.250000,0,0);}
.m70_c00229{transform:matrix(0.346368,-0.012828,0.009253,0.249829,0,0);-ms-transform:matrix(0.346368,-0.012828,0.009253,0.249829,0,0);-webkit-transform:matrix(0.346368,-0.012828,0.009253,0.249829,0,0);}
.m5_c00229{transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.355745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355745,0.000000,0.000000,0.250000,0,0);}
.m85_c00229{transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356405,0.000000,0.000000,0.250000,0,0);}
.m89_c00229{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);}
.m9f_c00229{transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);}
.mc2_c00229{transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);}
.mb3_c00229{transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);}
.m9c_c00229{transform:matrix(0.377175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00229{transform:matrix(0.382995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382995,0.000000,0.000000,0.250000,0,0);}
.m8c_c00229{transform:matrix(0.405510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405510,0.000000,0.000000,0.250000,0,0);}
.m79_c00229{transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);}
.m6e_c00229{transform:matrix(0.410209,-0.015193,0.009253,0.249829,0,0);-ms-transform:matrix(0.410209,-0.015193,0.009253,0.249829,0,0);-webkit-transform:matrix(0.410209,-0.015193,0.009253,0.249829,0,0);}
.m57_c00229{transform:matrix(0.418074,-0.004181,0.002500,0.249988,0,0);-ms-transform:matrix(0.418074,-0.004181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.418074,-0.004181,0.002500,0.249988,0,0);}
.m2d_c00229{transform:matrix(0.423530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423530,0.000000,0.000000,0.250000,0,0);}
.m80_c00229{transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00229{transform:matrix(0.426795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426795,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.433240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433240,0.000000,0.000000,0.250000,0,0);}
.m84_c00229{transform:matrix(0.433570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433570,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.444083,-0.004441,0.002500,0.249988,0,0);-ms-transform:matrix(0.444083,-0.004441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.444083,-0.004441,0.002500,0.249988,0,0);}
.m6a_c00229{transform:matrix(0.454520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454520,0.000000,0.000000,0.250000,0,0);}
.mad_c00229{transform:matrix(0.455685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{transform:matrix(0.474221,-0.004742,0.002500,0.249988,0,0);-ms-transform:matrix(0.474221,-0.004742,0.002500,0.249988,0,0);-webkit-transform:matrix(0.474221,-0.004742,0.002500,0.249988,0,0);}
.m96_c00229{transform:matrix(0.484295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484295,0.000000,0.000000,0.250000,0,0);}
.m68_c00229{transform:matrix(0.484550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484550,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);}
.m8b_c00229{transform:matrix(0.521915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521915,0.000000,0.000000,0.250000,0,0);}
.m8d_c00229{transform:matrix(0.530320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530320,0.000000,0.000000,0.250000,0,0);}
.m63_c00229{transform:matrix(0.553922,-0.005539,0.002500,0.249988,0,0);-ms-transform:matrix(0.553922,-0.005539,0.002500,0.249988,0,0);-webkit-transform:matrix(0.553922,-0.005539,0.002500,0.249988,0,0);}
.m86_c00229{transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.593300,-0.005933,0.002500,0.249988,0,0);-ms-transform:matrix(0.593300,-0.005933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.593300,-0.005933,0.002500,0.249988,0,0);}
.m92_c00229{transform:matrix(0.667200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667200,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.812950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812950,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(1.151910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.151910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.151910,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;}
.fs16_c00229{font-size:22.050000px;}
.fs9_c00229{font-size:23.100000px;}
.fs1_c00229{font-size:34.650000px;}
.fs0_c00229{font-size:35.700000px;}
.fs3_c00229{font-size:40.950000px;}
.fs4_c00229{font-size:47.250000px;}
.fs19_c00229{font-size:50.400000px;}
.fs17_c00229{font-size:51.450000px;}
.fs1a_c00229{font-size:53.550000px;}
.fs18_c00229{font-size:54.600000px;}
.fsd_c00229{font-size:59.852992px;}
.fse_c00229{font-size:67.203360px;}
.fs6_c00229{font-size:67.205678px;}
.fs14_c00229{font-size:70.350000px;}
.fs5_c00229{font-size:70.355944px;}
.fs7_c00229{font-size:70.360165px;}
.fs15_c00229{font-size:71.400000px;}
.fsf_c00229{font-size:72.453622px;}
.fs2_c00229{font-size:73.500000px;}
.fsc_c00229{font-size:74.550000px;}
.fs8_c00229{font-size:74.557306px;}
.fs10_c00229{font-size:75.603780px;}
.fs11_c00229{font-size:77.703885px;}
.fs13_c00229{font-size:80.824528px;}
.fs12_c00229{font-size:99.750000px;}
.fsa_c00229{font-size:114.462875px;}
.fsb_c00229{font-size:116.563111px;}
.y0_c00229{bottom:0.000000px;}
.y6f_c00229{bottom:169.479000px;}
.y6e_c00229{bottom:187.021500px;}
.y6d_c00229{bottom:204.877500px;}
.y6c_c00229{bottom:222.679500px;}
.y6b_c00229{bottom:270.108000px;}
.y6a_c00229{bottom:287.656500px;}
.y69_c00229{bottom:314.010000px;}
.y68_c00229{bottom:320.593500px;}
.y67_c00229{bottom:344.470500px;}
.y62_c00229{bottom:410.148000px;}
.y63_c00229{bottom:411.237298px;}
.y64_c00229{bottom:412.236354px;}
.y65_c00229{bottom:412.695949px;}
.y66_c00229{bottom:413.494983px;}
.y5d_c00229{bottom:432.268935px;}
.y5e_c00229{bottom:433.714275px;}
.y5f_c00229{bottom:434.313930px;}
.y60_c00229{bottom:435.205350px;}
.y52_c00229{bottom:455.756160px;}
.y53_c00229{bottom:455.973075px;}
.y54_c00229{bottom:456.412350px;}
.y55_c00229{bottom:456.885480px;}
.y56_c00229{bottom:457.167555px;}
.y57_c00229{bottom:457.776795px;}
.y58_c00229{bottom:458.252025px;}
.y59_c00229{bottom:458.602455px;}
.y5a_c00229{bottom:458.952600px;}
.y5b_c00229{bottom:459.233040px;}
.y5c_c00229{bottom:459.616620px;}
.y48_c00229{bottom:478.832025px;}
.y49_c00229{bottom:479.279970px;}
.y4a_c00229{bottom:479.725470px;}
.y4b_c00229{bottom:480.694020px;}
.y4c_c00229{bottom:480.928755px;}
.y4d_c00229{bottom:481.285860px;}
.y4e_c00229{bottom:481.618125px;}
.y4f_c00229{bottom:481.832010px;}
.y50_c00229{bottom:482.056980px;}
.y51_c00229{bottom:482.568705px;}
.y3e_c00229{bottom:501.928245px;}
.y3f_c00229{bottom:502.355985px;}
.y40_c00229{bottom:502.614420px;}
.y41_c00229{bottom:502.873785px;}
.y42_c00229{bottom:503.057670px;}
.y43_c00229{bottom:503.503140px;}
.y44_c00229{bottom:503.856510px;}
.y45_c00229{bottom:504.495060px;}
.y46_c00229{bottom:504.633540px;}
.y47_c00229{bottom:504.845265px;}
.y36_c00229{bottom:524.343000px;}
.y37_c00229{bottom:524.664120px;}
.y38_c00229{bottom:524.934210px;}
.y39_c00229{bottom:525.556800px;}
.y3a_c00229{bottom:526.382790px;}
.y3b_c00229{bottom:526.605045px;}
.y3c_c00229{bottom:527.420730px;}
.y3d_c00229{bottom:528.138405px;}
.y35_c00229{bottom:570.273000px;}
.y30_c00229{bottom:629.910570px;}
.y31_c00229{bottom:631.637085px;}
.y32_c00229{bottom:632.072482px;}
.y33_c00229{bottom:633.443970px;}
.y34_c00229{bottom:634.052025px;}
.y2a_c00229{bottom:655.294500px;}
.y2b_c00229{bottom:656.879805px;}
.y2c_c00229{bottom:657.430290px;}
.y2d_c00229{bottom:659.302335px;}
.y2e_c00229{bottom:659.793600px;}
.y2f_c00229{bottom:662.524605px;}
.y61_c00229{bottom:699.019500px;}
.y29_c00229{bottom:703.350000px;}
.y20_c00229{bottom:760.593000px;}
.y21_c00229{bottom:761.129697px;}
.y22_c00229{bottom:761.458305px;}
.y23_c00229{bottom:761.995485px;}
.y24_c00229{bottom:762.614544px;}
.y25_c00229{bottom:763.072260px;}
.y26_c00229{bottom:763.613010px;}
.y27_c00229{bottom:764.219868px;}
.y28_c00229{bottom:764.976813px;}
.y19_c00229{bottom:782.734500px;}
.y1a_c00229{bottom:783.170320px;}
.y1b_c00229{bottom:783.491875px;}
.y1c_c00229{bottom:784.488084px;}
.y1d_c00229{bottom:785.084784px;}
.y1e_c00229{bottom:785.777772px;}
.y1f_c00229{bottom:786.136047px;}
.y10_c00229{bottom:805.681366px;}
.y11_c00229{bottom:806.147931px;}
.y12_c00229{bottom:806.815259px;}
.y13_c00229{bottom:807.283149px;}
.y14_c00229{bottom:808.328649px;}
.y15_c00229{bottom:809.028047px;}
.y16_c00229{bottom:809.749435px;}
.y17_c00229{bottom:810.207675px;}
.y18_c00229{bottom:811.056076px;}
.y6_c00229{bottom:828.363000px;}
.y7_c00229{bottom:828.713200px;}
.y8_c00229{bottom:829.804674px;}
.y9_c00229{bottom:830.029665px;}
.ya_c00229{bottom:830.633287px;}
.yb_c00229{bottom:830.916973px;}
.yc_c00229{bottom:831.275189px;}
.yd_c00229{bottom:832.132428px;}
.ye_c00229{bottom:832.406325px;}
.yf_c00229{bottom:832.638199px;}
.y5_c00229{bottom:906.390000px;}
.y2_c00229{bottom:920.421000px;}
.y4_c00229{bottom:927.313500px;}
.y3_c00229{bottom:937.345500px;}
.y1_c00229{bottom:954.180000px;}
.h18_c00229{height:22.050000px;}
.hb_c00229{height:23.100000px;}
.h3_c00229{height:34.650000px;}
.h2_c00229{height:35.700000px;}
.h5_c00229{height:40.950000px;}
.h6_c00229{height:47.250000px;}
.h1b_c00229{height:50.400000px;}
.h19_c00229{height:51.450000px;}
.h1c_c00229{height:53.550000px;}
.h1a_c00229{height:54.600000px;}
.hf_c00229{height:59.852992px;}
.h10_c00229{height:67.203360px;}
.h8_c00229{height:67.205678px;}
.h16_c00229{height:70.350000px;}
.h7_c00229{height:70.355944px;}
.h9_c00229{height:70.360165px;}
.h17_c00229{height:71.400000px;}
.h11_c00229{height:72.453622px;}
.h4_c00229{height:73.500000px;}
.he_c00229{height:74.550000px;}
.ha_c00229{height:74.557306px;}
.h12_c00229{height:75.603780px;}
.h13_c00229{height:77.703885px;}
.h15_c00229{height:80.824528px;}
.h14_c00229{height:99.750000px;}
.hc_c00229{height:114.462875px;}
.hd_c00229{height:116.563111px;}
.h0_c00229{height:1008.450000px;}
.h1_c00229{height:1008.750000px;}
.w0_c00229{width:678.450000px;}
.w1_c00229{width:678.750000px;}
.x0_c00229{left:0.000000px;}
.x2b_c00229{left:136.698000px;}
.x71_c00229{left:139.320000px;}
.x66_c00229{left:152.010000px;}
.x78_c00229{left:156.870000px;}
.x31_c00229{left:158.521582px;}
.x37_c00229{left:165.243000px;}
.xb_c00229{left:171.151500px;}
.x1c_c00229{left:172.224000px;}
.x4f_c00229{left:174.608085px;}
.x7d_c00229{left:186.300000px;}
.x49_c00229{left:191.886795px;}
.x7e_c00229{left:196.830000px;}
.xc_c00229{left:198.090000px;}
.x15_c00229{left:199.131975px;}
.x55_c00229{left:207.090000px;}
.x22_c00229{left:210.514500px;}
.x42_c00229{left:212.645325px;}
.x67_c00229{left:214.650000px;}
.x1d_c00229{left:216.775500px;}
.x7f_c00229{left:221.400000px;}
.x38_c00229{left:224.364000px;}
.x35_c00229{left:232.470000px;}
.x23_c00229{left:233.986500px;}
.x80_c00229{left:236.790000px;}
.x16_c00229{left:238.347427px;}
.x2c_c00229{left:242.385000px;}
.x52_c00229{left:251.640000px;}
.x43_c00229{left:253.144920px;}
.x5f_c00229{left:255.420000px;}
.x3e_c00229{left:257.445390px;}
.x5c_c00229{left:264.600000px;}
.x17_c00229{left:265.914504px;}
.x56_c00229{left:267.840000px;}
.x24_c00229{left:272.356500px;}
.x3f_c00229{left:274.183725px;}
.x1e_c00229{left:275.376000px;}
.x2d_c00229{left:279.084000px;}
.xd_c00229{left:282.049500px;}
.x39_c00229{left:286.623000px;}
.x81_c00229{left:288.900000px;}
.x32_c00229{left:291.326565px;}
.x61_c00229{left:297.810000px;}
.xe_c00229{left:299.356500px;}
.x4a_c00229{left:300.383700px;}
.x72_c00229{left:303.750000px;}
.x62_c00229{left:305.910000px;}
.x1f_c00229{left:310.476000px;}
.x36_c00229{left:314.010000px;}
.x25_c00229{left:316.575000px;}
.x57_c00229{left:318.330000px;}
.x33_c00229{left:324.854077px;}
.x18_c00229{left:327.411306px;}
.x54_c00229{left:329.319559px;}
.x50_c00229{left:332.002875px;}
.x5d_c00229{left:334.260000px;}
.x60_c00229{left:339.390000px;}
.x44_c00229{left:341.149035px;}
.xf_c00229{left:345.789000px;}
.x40_c00229{left:346.867005px;}
.x26_c00229{left:349.269000px;}
.x20_c00229{left:351.240000px;}
.x4b_c00229{left:355.757145px;}
.x63_c00229{left:359.640000px;}
.x45_c00229{left:362.522325px;}
.x10_c00229{left:367.611000px;}
.x3a_c00229{left:369.222000px;}
.x82_c00229{left:371.250000px;}
.x21_c00229{left:372.315000px;}
.x58_c00229{left:374.220000px;}
.x59_c00229{left:378.810000px;}
.x64_c00229{left:381.240000px;}
.x68_c00229{left:383.400000px;}
.x83_c00229{left:385.560000px;}
.x27_c00229{left:387.894000px;}
.x53_c00229{left:389.340000px;}
.x3b_c00229{left:391.447500px;}
.x11_c00229{left:395.166000px;}
.x4c_c00229{left:398.929710px;}
.x51_c00229{left:400.592820px;}
.x5a_c00229{left:402.570000px;}
.x2e_c00229{left:403.887000px;}
.x69_c00229{left:406.620000px;}
.x19_c00229{left:410.967457px;}
.x41_c00229{left:417.519300px;}
.x65_c00229{left:421.200000px;}
.x46_c00229{left:425.158695px;}
.x28_c00229{left:431.241000px;}
.x84_c00229{left:432.270000px;}
.x2f_c00229{left:436.638000px;}
.x1a_c00229{left:437.907553px;}
.x73_c00229{left:443.070000px;}
.x47_c00229{left:444.597000px;}
.x5b_c00229{left:447.120000px;}
.x12_c00229{left:461.107500px;}
.x4d_c00229{left:462.686580px;}
.x48_c00229{left:464.993790px;}
.x6a_c00229{left:467.370000px;}
.x79_c00229{left:470.610000px;}
.x3c_c00229{left:473.016000px;}
.x34_c00229{left:477.128145px;}
.x2_c00229{left:480.060000px;}
.x13_c00229{left:482.176500px;}
.x29_c00229{left:485.308500px;}
.x1b_c00229{left:487.820460px;}
.x7a_c00229{left:488.970000px;}
.x6b_c00229{left:491.130000px;}
.x85_c00229{left:494.640000px;}
.x86_c00229{left:497.610000px;}
.x14_c00229{left:500.013000px;}
.x4_c00229{left:507.600000px;}
.x3_c00229{left:510.570000px;}
.x6c_c00229{left:512.190000px;}
.x6d_c00229{left:513.540000px;}
.x6e_c00229{left:518.940000px;}
.x7b_c00229{left:520.830000px;}
.x4e_c00229{left:523.087980px;}
.x74_c00229{left:531.900000px;}
.x1_c00229{left:535.950000px;}
.x5e_c00229{left:537.300000px;}
.x3d_c00229{left:544.783500px;}
.x75_c00229{left:549.450000px;}
.x7c_c00229{left:551.610000px;}
.x5_c00229{left:555.120000px;}
.x6_c00229{left:562.680000px;}
.x76_c00229{left:570.510000px;}
.x6f_c00229{left:581.580000px;}
.x9_c00229{left:595.620000px;}
.x70_c00229{left:596.970000px;}
.x2a_c00229{left:603.990000px;}
.x77_c00229{left:608.850000px;}
.x7_c00229{left:616.680000px;}
.x30_c00229{left:618.705000px;}
.xa_c00229{left:646.380000px;}
.x8_c00229{left:655.290000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fs16_c00229{font-size:19.600000pt;}
.fs9_c00229{font-size:20.533333pt;}
.fs1_c00229{font-size:30.800000pt;}
.fs0_c00229{font-size:31.733333pt;}
.fs3_c00229{font-size:36.400000pt;}
.fs4_c00229{font-size:42.000000pt;}
.fs19_c00229{font-size:44.800000pt;}
.fs17_c00229{font-size:45.733333pt;}
.fs1a_c00229{font-size:47.600000pt;}
.fs18_c00229{font-size:48.533333pt;}
.fsd_c00229{font-size:53.202660pt;}
.fse_c00229{font-size:59.736320pt;}
.fs6_c00229{font-size:59.738381pt;}
.fs14_c00229{font-size:62.533333pt;}
.fs5_c00229{font-size:62.538617pt;}
.fs7_c00229{font-size:62.542369pt;}
.fs15_c00229{font-size:63.466667pt;}
.fsf_c00229{font-size:64.403220pt;}
.fs2_c00229{font-size:65.333333pt;}
.fsc_c00229{font-size:66.266667pt;}
.fs8_c00229{font-size:66.273160pt;}
.fs10_c00229{font-size:67.203360pt;}
.fs11_c00229{font-size:69.070120pt;}
.fs13_c00229{font-size:71.844025pt;}
.fs12_c00229{font-size:88.666667pt;}
.fsa_c00229{font-size:101.744778pt;}
.fsb_c00229{font-size:103.611654pt;}
.y0_c00229{bottom:0.000000pt;}
.y6f_c00229{bottom:150.648000pt;}
.y6e_c00229{bottom:166.241333pt;}
.y6d_c00229{bottom:182.113333pt;}
.y6c_c00229{bottom:197.937333pt;}
.y6b_c00229{bottom:240.096000pt;}
.y6a_c00229{bottom:255.694667pt;}
.y69_c00229{bottom:279.120000pt;}
.y68_c00229{bottom:284.972000pt;}
.y67_c00229{bottom:306.196000pt;}
.y62_c00229{bottom:364.576000pt;}
.y63_c00229{bottom:365.544265pt;}
.y64_c00229{bottom:366.432315pt;}
.y65_c00229{bottom:366.840844pt;}
.y66_c00229{bottom:367.551096pt;}
.y5d_c00229{bottom:384.239053pt;}
.y5e_c00229{bottom:385.523800pt;}
.y5f_c00229{bottom:386.056827pt;}
.y60_c00229{bottom:386.849200pt;}
.y52_c00229{bottom:405.116587pt;}
.y53_c00229{bottom:405.309400pt;}
.y54_c00229{bottom:405.699867pt;}
.y55_c00229{bottom:406.120427pt;}
.y56_c00229{bottom:406.371160pt;}
.y57_c00229{bottom:406.912707pt;}
.y58_c00229{bottom:407.335133pt;}
.y59_c00229{bottom:407.646627pt;}
.y5a_c00229{bottom:407.957867pt;}
.y5b_c00229{bottom:408.207147pt;}
.y5c_c00229{bottom:408.548107pt;}
.y48_c00229{bottom:425.628467pt;}
.y49_c00229{bottom:426.026640pt;}
.y4a_c00229{bottom:426.422640pt;}
.y4b_c00229{bottom:427.283573pt;}
.y4c_c00229{bottom:427.492227pt;}
.y4d_c00229{bottom:427.809653pt;}
.y4e_c00229{bottom:428.105000pt;}
.y4f_c00229{bottom:428.295120pt;}
.y50_c00229{bottom:428.495093pt;}
.y51_c00229{bottom:428.949960pt;}
.y3e_c00229{bottom:446.158440pt;}
.y3f_c00229{bottom:446.538653pt;}
.y40_c00229{bottom:446.768373pt;}
.y41_c00229{bottom:446.998920pt;}
.y42_c00229{bottom:447.162373pt;}
.y43_c00229{bottom:447.558347pt;}
.y44_c00229{bottom:447.872453pt;}
.y45_c00229{bottom:448.440053pt;}
.y46_c00229{bottom:448.563147pt;}
.y47_c00229{bottom:448.751347pt;}
.y36_c00229{bottom:466.082667pt;}
.y37_c00229{bottom:466.368107pt;}
.y38_c00229{bottom:466.608187pt;}
.y39_c00229{bottom:467.161600pt;}
.y3a_c00229{bottom:467.895813pt;}
.y3b_c00229{bottom:468.093373pt;}
.y3c_c00229{bottom:468.818427pt;}
.y3d_c00229{bottom:469.456360pt;}
.y35_c00229{bottom:506.909333pt;}
.y30_c00229{bottom:559.920507pt;}
.y31_c00229{bottom:561.455187pt;}
.y32_c00229{bottom:561.842207pt;}
.y33_c00229{bottom:563.061307pt;}
.y34_c00229{bottom:563.601800pt;}
.y2a_c00229{bottom:582.484000pt;}
.y2b_c00229{bottom:583.893160pt;}
.y2c_c00229{bottom:584.382480pt;}
.y2d_c00229{bottom:586.046520pt;}
.y2e_c00229{bottom:586.483200pt;}
.y2f_c00229{bottom:588.910760pt;}
.y61_c00229{bottom:621.350667pt;}
.y29_c00229{bottom:625.200000pt;}
.y20_c00229{bottom:676.082667pt;}
.y21_c00229{bottom:676.559731pt;}
.y22_c00229{bottom:676.851827pt;}
.y23_c00229{bottom:677.329320pt;}
.y24_c00229{bottom:677.879595pt;}
.y25_c00229{bottom:678.286453pt;}
.y26_c00229{bottom:678.767120pt;}
.y27_c00229{bottom:679.306549pt;}
.y28_c00229{bottom:679.979389pt;}
.y19_c00229{bottom:695.764000pt;}
.y1a_c00229{bottom:696.151396pt;}
.y1b_c00229{bottom:696.437223pt;}
.y1c_c00229{bottom:697.322741pt;}
.y1d_c00229{bottom:697.853141pt;}
.y1e_c00229{bottom:698.469131pt;}
.y1f_c00229{bottom:698.787597pt;}
.y10_c00229{bottom:716.161215pt;}
.y11_c00229{bottom:716.575939pt;}
.y12_c00229{bottom:717.169119pt;}
.y13_c00229{bottom:717.585021pt;}
.y14_c00229{bottom:718.514355pt;}
.y15_c00229{bottom:719.136041pt;}
.y16_c00229{bottom:719.777276pt;}
.y17_c00229{bottom:720.184600pt;}
.y18_c00229{bottom:720.938735pt;}
.y6_c00229{bottom:736.322667pt;}
.y7_c00229{bottom:736.633956pt;}
.y8_c00229{bottom:737.604155pt;}
.y9_c00229{bottom:737.804147pt;}
.ya_c00229{bottom:738.340700pt;}
.yb_c00229{bottom:738.592865pt;}
.yc_c00229{bottom:738.911279pt;}
.yd_c00229{bottom:739.673269pt;}
.ye_c00229{bottom:739.916733pt;}
.yf_c00229{bottom:740.122844pt;}
.y5_c00229{bottom:805.680000pt;}
.y2_c00229{bottom:818.152000pt;}
.y4_c00229{bottom:824.278667pt;}
.y3_c00229{bottom:833.196000pt;}
.y1_c00229{bottom:848.160000pt;}
.h18_c00229{height:19.600000pt;}
.hb_c00229{height:20.533333pt;}
.h3_c00229{height:30.800000pt;}
.h2_c00229{height:31.733333pt;}
.h5_c00229{height:36.400000pt;}
.h6_c00229{height:42.000000pt;}
.h1b_c00229{height:44.800000pt;}
.h19_c00229{height:45.733333pt;}
.h1c_c00229{height:47.600000pt;}
.h1a_c00229{height:48.533333pt;}
.hf_c00229{height:53.202660pt;}
.h10_c00229{height:59.736320pt;}
.h8_c00229{height:59.738381pt;}
.h16_c00229{height:62.533333pt;}
.h7_c00229{height:62.538617pt;}
.h9_c00229{height:62.542369pt;}
.h17_c00229{height:63.466667pt;}
.h11_c00229{height:64.403220pt;}
.h4_c00229{height:65.333333pt;}
.he_c00229{height:66.266667pt;}
.ha_c00229{height:66.273160pt;}
.h12_c00229{height:67.203360pt;}
.h13_c00229{height:69.070120pt;}
.h15_c00229{height:71.844025pt;}
.h14_c00229{height:88.666667pt;}
.hc_c00229{height:101.744778pt;}
.hd_c00229{height:103.611654pt;}
.h0_c00229{height:896.400000pt;}
.h1_c00229{height:896.666667pt;}
.w0_c00229{width:603.066667pt;}
.w1_c00229{width:603.333333pt;}
.x0_c00229{left:0.000000pt;}
.x2b_c00229{left:121.509333pt;}
.x71_c00229{left:123.840000pt;}
.x66_c00229{left:135.120000pt;}
.x78_c00229{left:139.440000pt;}
.x31_c00229{left:140.908073pt;}
.x37_c00229{left:146.882667pt;}
.xb_c00229{left:152.134667pt;}
.x1c_c00229{left:153.088000pt;}
.x4f_c00229{left:155.207187pt;}
.x7d_c00229{left:165.600000pt;}
.x49_c00229{left:170.566040pt;}
.x7e_c00229{left:174.960000pt;}
.xc_c00229{left:176.080000pt;}
.x15_c00229{left:177.006200pt;}
.x55_c00229{left:184.080000pt;}
.x22_c00229{left:187.124000pt;}
.x42_c00229{left:189.018067pt;}
.x67_c00229{left:190.800000pt;}
.x1d_c00229{left:192.689333pt;}
.x7f_c00229{left:196.800000pt;}
.x38_c00229{left:199.434667pt;}
.x35_c00229{left:206.640000pt;}
.x23_c00229{left:207.988000pt;}
.x80_c00229{left:210.480000pt;}
.x16_c00229{left:211.864380pt;}
.x2c_c00229{left:215.453333pt;}
.x52_c00229{left:223.680000pt;}
.x43_c00229{left:225.017707pt;}
.x5f_c00229{left:227.040000pt;}
.x3e_c00229{left:228.840347pt;}
.x5c_c00229{left:235.200000pt;}
.x17_c00229{left:236.368448pt;}
.x56_c00229{left:238.080000pt;}
.x24_c00229{left:242.094667pt;}
.x3f_c00229{left:243.718867pt;}
.x1e_c00229{left:244.778667pt;}
.x2d_c00229{left:248.074667pt;}
.xd_c00229{left:250.710667pt;}
.x39_c00229{left:254.776000pt;}
.x81_c00229{left:256.800000pt;}
.x32_c00229{left:258.956947pt;}
.x61_c00229{left:264.720000pt;}
.xe_c00229{left:266.094667pt;}
.x4a_c00229{left:267.007733pt;}
.x72_c00229{left:270.000000pt;}
.x62_c00229{left:271.920000pt;}
.x1f_c00229{left:275.978667pt;}
.x36_c00229{left:279.120000pt;}
.x25_c00229{left:281.400000pt;}
.x57_c00229{left:282.960000pt;}
.x33_c00229{left:288.759180pt;}
.x18_c00229{left:291.032272pt;}
.x54_c00229{left:292.728497pt;}
.x50_c00229{left:295.113667pt;}
.x5d_c00229{left:297.120000pt;}
.x60_c00229{left:301.680000pt;}
.x44_c00229{left:303.243587pt;}
.xf_c00229{left:307.368000pt;}
.x40_c00229{left:308.326227pt;}
.x26_c00229{left:310.461333pt;}
.x20_c00229{left:312.213333pt;}
.x4b_c00229{left:316.228573pt;}
.x63_c00229{left:319.680000pt;}
.x45_c00229{left:322.242067pt;}
.x10_c00229{left:326.765333pt;}
.x3a_c00229{left:328.197333pt;}
.x82_c00229{left:330.000000pt;}
.x21_c00229{left:330.946667pt;}
.x58_c00229{left:332.640000pt;}
.x59_c00229{left:336.720000pt;}
.x64_c00229{left:338.880000pt;}
.x68_c00229{left:340.800000pt;}
.x83_c00229{left:342.720000pt;}
.x27_c00229{left:344.794667pt;}
.x53_c00229{left:346.080000pt;}
.x3b_c00229{left:347.953333pt;}
.x11_c00229{left:351.258667pt;}
.x4c_c00229{left:354.604187pt;}
.x51_c00229{left:356.082507pt;}
.x5a_c00229{left:357.840000pt;}
.x2e_c00229{left:359.010667pt;}
.x69_c00229{left:361.440000pt;}
.x19_c00229{left:365.304407pt;}
.x41_c00229{left:371.128267pt;}
.x65_c00229{left:374.400000pt;}
.x46_c00229{left:377.918840pt;}
.x28_c00229{left:383.325333pt;}
.x84_c00229{left:384.240000pt;}
.x2f_c00229{left:388.122667pt;}
.x1a_c00229{left:389.251159pt;}
.x73_c00229{left:393.840000pt;}
.x47_c00229{left:395.197333pt;}
.x5b_c00229{left:397.440000pt;}
.x12_c00229{left:409.873333pt;}
.x4d_c00229{left:411.276960pt;}
.x48_c00229{left:413.327813pt;}
.x6a_c00229{left:415.440000pt;}
.x79_c00229{left:418.320000pt;}
.x3c_c00229{left:420.458667pt;}
.x34_c00229{left:424.113907pt;}
.x2_c00229{left:426.720000pt;}
.x13_c00229{left:428.601333pt;}
.x29_c00229{left:431.385333pt;}
.x1b_c00229{left:433.618187pt;}
.x7a_c00229{left:434.640000pt;}
.x6b_c00229{left:436.560000pt;}
.x85_c00229{left:439.680000pt;}
.x86_c00229{left:442.320000pt;}
.x14_c00229{left:444.456000pt;}
.x4_c00229{left:451.200000pt;}
.x3_c00229{left:453.840000pt;}
.x6c_c00229{left:455.280000pt;}
.x6d_c00229{left:456.480000pt;}
.x6e_c00229{left:461.280000pt;}
.x7b_c00229{left:462.960000pt;}
.x4e_c00229{left:464.967093pt;}
.x74_c00229{left:472.800000pt;}
.x1_c00229{left:476.400000pt;}
.x5e_c00229{left:477.600000pt;}
.x3d_c00229{left:484.252000pt;}
.x75_c00229{left:488.400000pt;}
.x7c_c00229{left:490.320000pt;}
.x5_c00229{left:493.440000pt;}
.x6_c00229{left:500.160000pt;}
.x76_c00229{left:507.120000pt;}
.x6f_c00229{left:516.960000pt;}
.x9_c00229{left:529.440000pt;}
.x70_c00229{left:530.640000pt;}
.x2a_c00229{left:536.880000pt;}
.x77_c00229{left:541.200000pt;}
.x7_c00229{left:548.160000pt;}
.x30_c00229{left:549.960000pt;}
.xa_c00229{left:574.560000pt;}
.x8_c00229{left:582.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_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_4ab86c84425994a9e06b01c2.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;}
.m62_c00230{transform:matrix(0.013855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013855,0.000000,0.000000,0.250000,0,0);}
.m63_c00230{transform:matrix(0.034754,0.000243,-0.001750,0.249994,0,0);-ms-transform:matrix(0.034754,0.000243,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.034754,0.000243,-0.001750,0.249994,0,0);}
.m64_c00230{transform:matrix(0.047474,0.000332,-0.001750,0.249994,0,0);-ms-transform:matrix(0.047474,0.000332,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.047474,0.000332,-0.001750,0.249994,0,0);}
.m2d_c00230{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);}
.m34_c00230{transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148630,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{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);}
.m17_c00230{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);}
.m1b_c00230{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);}
.m23_c00230{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);}
.m5a_c00230{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);}
.m89_c00230{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);}
.m2c_c00230{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);}
.m8b_c00230{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);}
.m69_c00230{transform:matrix(0.163471,0.001144,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163471,0.001144,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163471,0.001144,-0.001750,0.249994,0,0);}
.m1a_c00230{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);}
.m7_c00230{transform:matrix(0.164370,0.001315,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164370,0.001315,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164370,0.001315,-0.002000,0.249992,0,0);}
.m22_c00230{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);}
.m5f_c00230{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);}
.m93_c00230{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);}
.m67_c00230{transform:matrix(0.175576,0.001229,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175576,0.001229,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175576,0.001229,-0.001750,0.249994,0,0);}
.m8c_c00230{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);}
.m46_c00230{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);}
.ma0_c00230{transform:matrix(0.177739,0.001955,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177739,0.001955,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177739,0.001955,-0.002750,0.249985,0,0);}
.m19_c00230{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);}
.m94_c00230{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);}
.m83_c00230{transform:matrix(0.183728,0.003123,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183728,0.003123,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183728,0.003123,-0.004249,0.249964,0,0);}
.m1e_c00230{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);}
.m2e_c00230{transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{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);}
.m33_c00230{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);}
.m2b_c00230{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);}
.m35_c00230{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);}
.m51_c00230{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);}
.m41_c00230{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);}
.m86_c00230{transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);}
.m77_c00230{transform:matrix(0.190527,0.003239,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190527,0.003239,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190527,0.003239,-0.004249,0.249964,0,0);}
.m6a_c00230{transform:matrix(0.192835,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192835,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192835,0.001350,-0.001750,0.249994,0,0);}
.ma2_c00230{transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);}
.m72_c00230{transform:matrix(0.193780,0.001356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193780,0.001356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193780,0.001356,-0.001750,0.249994,0,0);}
.ma5_c00230{transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);}
.m27_c00230{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);}
.m36_c00230{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);}
.m8a_c00230{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);}
.m76_c00230{transform:matrix(0.197321,0.003354,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197321,0.003354,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197321,0.003354,-0.004249,0.249964,0,0);}
.m68_c00230{transform:matrix(0.197580,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197580,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197580,0.001383,-0.001750,0.249994,0,0);}
.m85_c00230{transform:matrix(0.197626,0.003360,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197626,0.003360,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197626,0.003360,-0.004249,0.249964,0,0);}
.m21_c00230{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);}
.m8e_c00230{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);}
.m14_c00230{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);}
.m9e_c00230{transform:matrix(0.200353,0.002204,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200353,0.002204,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200353,0.002204,-0.002750,0.249985,0,0);}
.m1c_c00230{transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00230{transform:matrix(0.203133,0.002234,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203133,0.002234,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203133,0.002234,-0.002750,0.249985,0,0);}
.m26_c00230{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);}
.m3_c00230{transform:matrix(0.204955,-0.004304,0.005249,0.249945,0,0);-ms-transform:matrix(0.204955,-0.004304,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204955,-0.004304,0.005249,0.249945,0,0);}
.m52_c00230{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);}
.m66_c00230{transform:matrix(0.207335,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207335,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207335,0.001451,-0.001750,0.249994,0,0);}
.m99_c00230{transform:matrix(0.207442,0.002282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207442,0.002282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207442,0.002282,-0.002750,0.249985,0,0);}
.m9a_c00230{transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);}
.ma3_c00230{transform:matrix(0.208087,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208087,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208087,0.002289,-0.002750,0.249985,0,0);}
.m31_c00230{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);}
.m15_c00230{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{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);}
.m78_c00230{transform:matrix(0.209625,0.003564,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209625,0.003564,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209625,0.003564,-0.004249,0.249964,0,0);}
.m1d_c00230{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);}
.m7b_c00230{transform:matrix(0.210875,0.003585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210875,0.003585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210875,0.003585,-0.004249,0.249964,0,0);}
.m87_c00230{transform:matrix(0.211834,0.003601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211834,0.003601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211834,0.003601,-0.004249,0.249964,0,0);}
.m7a_c00230{transform:matrix(0.212404,0.003611,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212404,0.003611,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212404,0.003611,-0.004249,0.249964,0,0);}
.m1f_c00230{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);}
.m3a_c00230{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);}
.m5e_c00230{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);}
.m59_c00230{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);}
.m82_c00230{transform:matrix(0.216149,0.003675,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216149,0.003675,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216149,0.003675,-0.004249,0.249964,0,0);}
.m6e_c00230{transform:matrix(0.217535,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217535,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217535,0.001523,-0.001750,0.249994,0,0);}
.mb_c00230{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);}
.m28_c00230{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);}
.m9c_c00230{transform:matrix(0.218712,0.002406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218712,0.002406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218712,0.002406,-0.002750,0.249985,0,0);}
.m73_c00230{transform:matrix(0.218898,0.003721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218898,0.003721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218898,0.003721,-0.004249,0.249964,0,0);}
.m8f_c00230{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);}
.m4c_c00230{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);}
.m45_c00230{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);}
.m54_c00230{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);}
.m2a_c00230{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);}
.m5d_c00230{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);}
.m6d_c00230{transform:matrix(0.223485,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223485,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223485,0.001564,-0.001750,0.249994,0,0);}
.m4b_c00230{transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);}
.m55_c00230{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);}
.m80_c00230{transform:matrix(0.226817,0.003856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226817,0.003856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226817,0.003856,-0.004249,0.249964,0,0);}
.m6f_c00230{transform:matrix(0.231374,0.001620,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231374,0.001620,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231374,0.001620,-0.001750,0.249994,0,0);}
.m88_c00230{transform:matrix(0.231901,0.003942,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231901,0.003942,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231901,0.003942,-0.004249,0.249964,0,0);}
.m58_c00230{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);}
.m56_c00230{transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232830,0.000000,0.000000,0.250000,0,0);}
.ma6_c00230{transform:matrix(0.233256,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233256,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233256,0.002566,-0.002750,0.249985,0,0);}
.m71_c00230{transform:matrix(0.233584,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233584,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233584,0.001635,-0.001750,0.249994,0,0);}
.m7d_c00230{transform:matrix(0.234531,0.003987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234531,0.003987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234531,0.003987,-0.004249,0.249964,0,0);}
.m24_c00230{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);}
.m4a_c00230{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{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);}
.m53_c00230{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);}
.m79_c00230{transform:matrix(0.237711,0.004041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237711,0.004041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237711,0.004041,-0.004249,0.249964,0,0);}
.m3d_c00230{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);}
.m7e_c00230{transform:matrix(0.239695,0.004075,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239695,0.004075,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239695,0.004075,-0.004249,0.249964,0,0);}
.m42_c00230{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);}
.m13_c00230{transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{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);}
.m44_c00230{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.m30_c00230{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{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);}
.m98_c00230{transform:matrix(0.246405,0.002710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246405,0.002710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246405,0.002710,-0.002750,0.249985,0,0);}
.m40_c00230{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);}
.m48_c00230{transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);}
.m60_c00230{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);}
.m7c_c00230{transform:matrix(0.248324,0.004222,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248324,0.004222,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248324,0.004222,-0.004249,0.249964,0,0);}
.m9d_c00230{transform:matrix(0.252425,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252425,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252425,0.002777,-0.002750,0.249985,0,0);}
.m61_c00230{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);}
.m7f_c00230{transform:matrix(0.255998,0.004352,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255998,0.004352,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255998,0.004352,-0.004249,0.249964,0,0);}
.m84_c00230{transform:matrix(0.256323,0.004357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256323,0.004357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256323,0.004357,-0.004249,0.249964,0,0);}
.m32_c00230{transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{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);}
.m2_c00230{transform:matrix(0.260473,-0.005470,0.005249,0.249945,0,0);-ms-transform:matrix(0.260473,-0.005470,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260473,-0.005470,0.005249,0.249945,0,0);}
.m3b_c00230{transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260560,0.000000,0.000000,0.250000,0,0);}
.m81_c00230{transform:matrix(0.262377,0.004460,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262377,0.004460,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262377,0.004460,-0.004249,0.249964,0,0);}
.m8d_c00230{transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.274466,0.002196,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274466,0.002196,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274466,0.002196,-0.002000,0.249992,0,0);}
.m57_c00230{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);}
.m97_c00230{transform:matrix(0.274978,0.003025,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274978,0.003025,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274978,0.003025,-0.002750,0.249985,0,0);}
.m90_c00230{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);}
.m39_c00230{transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280085,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);}
.m75_c00230{transform:matrix(0.293378,0.004987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.293378,0.004987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.293378,0.004987,-0.004249,0.249964,0,0);}
.md_c00230{transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);}
.m6b_c00230{transform:matrix(0.294668,0.002063,-0.001750,0.249994,0,0);-ms-transform:matrix(0.294668,0.002063,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.294668,0.002063,-0.001750,0.249994,0,0);}
.m95_c00230{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.297574,-0.006249,0.005249,0.249945,0,0);-ms-transform:matrix(0.297574,-0.006249,0.005249,0.249945,0,0);-webkit-transform:matrix(0.297574,-0.006249,0.005249,0.249945,0,0);}
.m4f_c00230{transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302525,0.000000,0.000000,0.250000,0,0);}
.m6c_c00230{transform:matrix(0.302698,0.002119,-0.001750,0.249994,0,0);-ms-transform:matrix(0.302698,0.002119,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.302698,0.002119,-0.001750,0.249994,0,0);}
.m5c_c00230{transform:matrix(0.305390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305390,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);}
.m74_c00230{transform:matrix(0.312465,0.005312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.312465,0.005312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.312465,0.005312,-0.004249,0.249964,0,0);}
.m2f_c00230{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);}
.m18_c00230{transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);}
.ma4_c00230{transform:matrix(0.318026,0.003498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.318026,0.003498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.318026,0.003498,-0.002750,0.249985,0,0);}
.m92_c00230{transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318195,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.320245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320245,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.330942,-0.006950,0.005249,0.249945,0,0);-ms-transform:matrix(0.330942,-0.006950,0.005249,0.249945,0,0);-webkit-transform:matrix(0.330942,-0.006950,0.005249,0.249945,0,0);}
.m3c_c00230{transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.361443,0.002892,-0.002000,0.249992,0,0);-ms-transform:matrix(0.361443,0.002892,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.361443,0.002892,-0.002000,0.249992,0,0);}
.m65_c00230{transform:matrix(0.362181,0.002535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.362181,0.002535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.362181,0.002535,-0.001750,0.249994,0,0);}
.m9b_c00230{transform:matrix(0.362723,0.003990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.362723,0.003990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.362723,0.003990,-0.002750,0.249985,0,0);}
.m5b_c00230{transform:matrix(0.372975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372975,0.000000,0.000000,0.250000,0,0);}
.m70_c00230{transform:matrix(0.417720,0.002924,-0.001750,0.249994,0,0);-ms-transform:matrix(0.417720,0.002924,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.417720,0.002924,-0.001750,0.249994,0,0);}
.m37_c00230{transform:matrix(0.418430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418430,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.425595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425595,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.432530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432530,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.433269,-0.009099,0.005249,0.249945,0,0);-ms-transform:matrix(0.433269,-0.009099,0.005249,0.249945,0,0);-webkit-transform:matrix(0.433269,-0.009099,0.005249,0.249945,0,0);}
.m10_c00230{transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.451715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451715,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.459535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459535,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.543055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543055,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.589396,0.004715,-0.002000,0.249992,0,0);-ms-transform:matrix(0.589396,0.004715,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.589396,0.004715,-0.002000,0.249992,0,0);}
.m96_c00230{transform:matrix(0.797810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797810,0.000000,0.000000,0.250000,0,0);}
.m91_c00230{transform:matrix(0.822040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822040,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.954925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954925,0.000000,0.000000,0.250000,0,0);}
.m9f_c00230{transform:matrix(1.656585,0.018222,-0.002750,0.249985,0,0);-ms-transform:matrix(1.656585,0.018222,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.656585,0.018222,-0.002750,0.249985,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;}
.fs10_c00230{font-size:47.256827px;}
.fs11_c00230{font-size:48.306979px;}
.fs13_c00230{font-size:51.453113px;}
.fsf_c00230{font-size:51.457434px;}
.fs12_c00230{font-size:54.600000px;}
.fse_c00230{font-size:58.801441px;}
.fs9_c00230{font-size:64.050000px;}
.fs8_c00230{font-size:65.100000px;}
.fs6_c00230{font-size:67.200000px;}
.fs5_c00230{font-size:68.250000px;}
.fs4_c00230{font-size:70.350000px;}
.fsd_c00230{font-size:70.351724px;}
.fsb_c00230{font-size:72.450000px;}
.fs7_c00230{font-size:73.500000px;}
.fs0_c00230{font-size:80.867825px;}
.fsa_c00230{font-size:84.000000px;}
.fs3_c00230{font-size:85.050000px;}
.fsc_c00230{font-size:87.150000px;}
.fs2_c00230{font-size:93.450000px;}
.fs1_c00230{font-size:144.904637px;}
.y0_c00230{bottom:0.000000px;}
.y3f_c00230{bottom:159.012066px;}
.y3e_c00230{bottom:159.341123px;}
.y3d_c00230{bottom:159.920349px;}
.y3c_c00230{bottom:160.253817px;}
.y3b_c00230{bottom:161.690961px;}
.y3a_c00230{bottom:162.269168px;}
.y41_c00230{bottom:174.882000px;}
.y39_c00230{bottom:175.889409px;}
.y38_c00230{bottom:177.149856px;}
.y37_c00230{bottom:177.446703px;}
.y36_c00230{bottom:177.803129px;}
.y35_c00230{bottom:178.932009px;}
.y34_c00230{bottom:179.097290px;}
.y33_c00230{bottom:179.293811px;}
.y32_c00230{bottom:180.364209px;}
.y40_c00230{bottom:192.936000px;}
.y31_c00230{bottom:194.842571px;}
.y30_c00230{bottom:195.117307px;}
.y2f_c00230{bottom:195.678614px;}
.y2e_c00230{bottom:196.003917px;}
.y2d_c00230{bottom:196.407557px;}
.y2c_c00230{bottom:196.770804px;}
.y2b_c00230{bottom:197.280447px;}
.y2a_c00230{bottom:197.913000px;}
.y51_c00230{bottom:210.480837px;}
.y50_c00230{bottom:210.863455px;}
.y4f_c00230{bottom:210.979599px;}
.y4e_c00230{bottom:211.561587px;}
.y4d_c00230{bottom:211.769471px;}
.y4c_c00230{bottom:212.060481px;}
.y4b_c00230{bottom:212.321891px;}
.y49_c00230{bottom:212.871308px;}
.y48_c00230{bottom:212.990173px;}
.y4a_c00230{bottom:213.144564px;}
.y47_c00230{bottom:213.566452px;}
.y46_c00230{bottom:213.620111px;}
.y45_c00230{bottom:214.091928px;}
.y44_c00230{bottom:214.436695px;}
.y43_c00230{bottom:214.773098px;}
.y42_c00230{bottom:215.055000px;}
.y29_c00230{bottom:260.921987px;}
.y28_c00230{bottom:261.378243px;}
.y27_c00230{bottom:261.693863px;}
.y26_c00230{bottom:262.435287px;}
.y25_c00230{bottom:262.905189px;}
.y24_c00230{bottom:263.591043px;}
.y23_c00230{bottom:263.787755px;}
.y22_c00230{bottom:264.061250px;}
.y21_c00230{bottom:284.447362px;}
.y20_c00230{bottom:284.592893px;}
.y1f_c00230{bottom:284.857629px;}
.y1e_c00230{bottom:284.974715px;}
.y1d_c00230{bottom:285.288213px;}
.y1c_c00230{bottom:285.712529px;}
.y1b_c00230{bottom:286.934267px;}
.y1a_c00230{bottom:287.280000px;}
.y19_c00230{bottom:307.530000px;}
.y18_c00230{bottom:331.453500px;}
.y17_c00230{bottom:357.759000px;}
.y16_c00230{bottom:385.360500px;}
.y15_c00230{bottom:408.078000px;}
.y14_c00230{bottom:430.710000px;}
.y13_c00230{bottom:452.943000px;}
.y12_c00230{bottom:481.260000px;}
.y11_c00230{bottom:509.646000px;}
.y10_c00230{bottom:531.463500px;}
.yf_c00230{bottom:553.680000px;}
.ye_c00230{bottom:576.067500px;}
.yd_c00230{bottom:667.554000px;}
.yc_c00230{bottom:704.595000px;}
.yb_c00230{bottom:731.730000px;}
.ya_c00230{bottom:799.105500px;}
.y1_c00230{bottom:858.882000px;}
.y2_c00230{bottom:863.127665px;}
.y3_c00230{bottom:864.719265px;}
.y4_c00230{bottom:866.360573px;}
.y5_c00230{bottom:867.562991px;}
.y9_c00230{bottom:906.177528px;}
.y8_c00230{bottom:906.529644px;}
.y7_c00230{bottom:906.953004px;}
.y6_c00230{bottom:908.281500px;}
.h12_c00230{height:47.256827px;}
.h13_c00230{height:48.306979px;}
.h15_c00230{height:51.453113px;}
.h11_c00230{height:51.457434px;}
.h14_c00230{height:54.600000px;}
.h10_c00230{height:58.801441px;}
.hb_c00230{height:64.050000px;}
.ha_c00230{height:65.100000px;}
.h8_c00230{height:67.200000px;}
.h7_c00230{height:68.250000px;}
.h6_c00230{height:70.350000px;}
.hf_c00230{height:70.351724px;}
.hd_c00230{height:72.450000px;}
.h9_c00230{height:73.500000px;}
.h2_c00230{height:80.867825px;}
.hc_c00230{height:84.000000px;}
.h5_c00230{height:85.050000px;}
.he_c00230{height:87.150000px;}
.h4_c00230{height:93.450000px;}
.h3_c00230{height:144.904637px;}
.h1_c00230{height:1005.000000px;}
.h0_c00230{height:1005.150000px;}
.w1_c00230{width:713.250000px;}
.w0_c00230{width:713.550000px;}
.x0_c00230{left:0.000000px;}
.x5e_c00230{left:81.928500px;}
.x31_c00230{left:106.920000px;}
.x4e_c00230{left:110.430000px;}
.x67_c00230{left:111.588472px;}
.x54_c00230{left:113.926500px;}
.x12_c00230{left:116.640000px;}
.x5a_c00230{left:118.085680px;}
.x5f_c00230{left:119.137500px;}
.x3d_c00230{left:121.770000px;}
.xc_c00230{left:123.120000px;}
.x63_c00230{left:131.019748px;}
.x19_c00230{left:136.890000px;}
.x72_c00230{left:138.142500px;}
.x64_c00230{left:139.931984px;}
.x13_c00230{left:141.750000px;}
.x45_c00230{left:145.260000px;}
.xf_c00230{left:146.610000px;}
.x3e_c00230{left:149.040000px;}
.x32_c00230{left:157.950000px;}
.x1a_c00230{left:162.270000px;}
.x53_c00230{left:163.620000px;}
.x14_c00230{left:164.970000px;}
.x1_c00230{left:167.128500px;}
.x23_c00230{left:169.020000px;}
.x46_c00230{left:170.370000px;}
.x4f_c00230{left:174.420000px;}
.x68_c00230{left:183.416800px;}
.x60_c00230{left:194.227500px;}
.x15_c00230{left:198.180000px;}
.x69_c00230{left:200.119959px;}
.x39_c00230{left:202.500000px;}
.x1b_c00230{left:206.550000px;}
.x33_c00230{left:207.900000px;}
.x47_c00230{left:208.980000px;}
.x3f_c00230{left:210.600000px;}
.x61_c00230{left:213.363000px;}
.x65_c00230{left:214.960108px;}
.x73_c00230{left:217.255500px;}
.xa_c00230{left:221.130000px;}
.x1c_c00230{left:223.020000px;}
.x24_c00230{left:224.100000px;}
.x40_c00230{left:225.720000px;}
.x6_c00230{left:228.459000px;}
.x5b_c00230{left:233.734755px;}
.x4c_c00230{left:235.710000px;}
.x10_c00230{left:241.380000px;}
.x2f_c00230{left:244.620000px;}
.x62_c00230{left:246.381000px;}
.x50_c00230{left:249.480000px;}
.x25_c00230{left:250.560000px;}
.x4d_c00230{left:252.180000px;}
.x1d_c00230{left:256.500000px;}
.x2b_c00230{left:262.710000px;}
.x16_c00230{left:264.330000px;}
.x34_c00230{left:266.490000px;}
.x74_c00230{left:269.644500px;}
.x41_c00230{left:270.810000px;}
.x51_c00230{left:273.780000px;}
.x3a_c00230{left:274.860000px;}
.x30_c00230{left:280.260000px;}
.x26_c00230{left:282.690000px;}
.x66_c00230{left:285.736090px;}
.x3b_c00230{left:288.360000px;}
.x2c_c00230{left:289.710000px;}
.x42_c00230{left:294.300000px;}
.x1e_c00230{left:300.780000px;}
.x48_c00230{left:309.420000px;}
.x11_c00230{left:311.580000px;}
.x27_c00230{left:315.090000px;}
.x52_c00230{left:317.250000px;}
.x35_c00230{left:322.110000px;}
.x3c_c00230{left:328.320000px;}
.x6c_c00230{left:329.400000px;}
.xd_c00230{left:331.290000px;}
.x49_c00230{left:332.640000px;}
.x17_c00230{left:335.070000px;}
.x55_c00230{left:337.851000px;}
.x18_c00230{left:339.120000px;}
.x36_c00230{left:341.550000px;}
.x2d_c00230{left:347.220000px;}
.x43_c00230{left:351.000000px;}
.x5c_c00230{left:354.921714px;}
.x6d_c00230{left:356.400000px;}
.x28_c00230{left:357.750000px;}
.x6a_c00230{left:360.720000px;}
.x2_c00230{left:369.303000px;}
.x2e_c00230{left:370.710000px;}
.xe_c00230{left:372.600000px;}
.x1f_c00230{left:379.890000px;}
.x29_c00230{left:383.130000px;}
.x37_c00230{left:385.020000px;}
.x5d_c00230{left:386.509552px;}
.x7_c00230{left:394.521000px;}
.x6e_c00230{left:396.630000px;}
.x2a_c00230{left:398.520000px;}
.x44_c00230{left:402.840000px;}
.x4a_c00230{left:412.020000px;}
.x6f_c00230{left:414.990000px;}
.x20_c00230{left:417.420000px;}
.x21_c00230{left:431.730000px;}
.x4b_c00230{left:434.700000px;}
.x38_c00230{left:441.180000px;}
.x56_c00230{left:443.253000px;}
.x3_c00230{left:445.093500px;}
.x8_c00230{left:447.441000px;}
.x6b_c00230{left:449.820000px;}
.x75_c00230{left:452.424000px;}
.x57_c00230{left:459.979500px;}
.x76_c00230{left:462.982500px;}
.x22_c00230{left:468.720000px;}
.x70_c00230{left:484.920000px;}
.x9_c00230{left:491.455500px;}
.x58_c00230{left:497.799000px;}
.x71_c00230{left:503.010000px;}
.x59_c00230{left:518.589000px;}
.x4_c00230{left:523.251000px;}
.x5_c00230{left:580.509000px;}
.xb_c00230{left:583.470000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fs10_c00230{font-size:42.006069pt;}
.fs11_c00230{font-size:42.939537pt;}
.fs13_c00230{font-size:45.736100pt;}
.fsf_c00230{font-size:45.739941pt;}
.fs12_c00230{font-size:48.533333pt;}
.fse_c00230{font-size:52.267947pt;}
.fs9_c00230{font-size:56.933333pt;}
.fs8_c00230{font-size:57.866667pt;}
.fs6_c00230{font-size:59.733333pt;}
.fs5_c00230{font-size:60.666667pt;}
.fs4_c00230{font-size:62.533333pt;}
.fsd_c00230{font-size:62.534865pt;}
.fsb_c00230{font-size:64.400000pt;}
.fs7_c00230{font-size:65.333333pt;}
.fs0_c00230{font-size:71.882512pt;}
.fsa_c00230{font-size:74.666667pt;}
.fs3_c00230{font-size:75.600000pt;}
.fsc_c00230{font-size:77.466667pt;}
.fs2_c00230{font-size:83.066667pt;}
.fs1_c00230{font-size:128.804122pt;}
.y0_c00230{bottom:0.000000pt;}
.y3f_c00230{bottom:141.344059pt;}
.y3e_c00230{bottom:141.636553pt;}
.y3d_c00230{bottom:142.151421pt;}
.y3c_c00230{bottom:142.447837pt;}
.y3b_c00230{bottom:143.725299pt;}
.y3a_c00230{bottom:144.239260pt;}
.y41_c00230{bottom:155.450667pt;}
.y39_c00230{bottom:156.346141pt;}
.y38_c00230{bottom:157.466539pt;}
.y37_c00230{bottom:157.730403pt;}
.y36_c00230{bottom:158.047225pt;}
.y35_c00230{bottom:159.050675pt;}
.y34_c00230{bottom:159.197591pt;}
.y33_c00230{bottom:159.372276pt;}
.y32_c00230{bottom:160.323741pt;}
.y40_c00230{bottom:171.498667pt;}
.y31_c00230{bottom:173.193396pt;}
.y30_c00230{bottom:173.437607pt;}
.y2f_c00230{bottom:173.936545pt;}
.y2e_c00230{bottom:174.225704pt;}
.y2d_c00230{bottom:174.584495pt;}
.y2c_c00230{bottom:174.907381pt;}
.y2b_c00230{bottom:175.360397pt;}
.y2a_c00230{bottom:175.922667pt;}
.y51_c00230{bottom:187.094077pt;}
.y50_c00230{bottom:187.434183pt;}
.y4f_c00230{bottom:187.537421pt;}
.y4e_c00230{bottom:188.054744pt;}
.y4d_c00230{bottom:188.239529pt;}
.y4c_c00230{bottom:188.498205pt;}
.y4b_c00230{bottom:188.730569pt;}
.y49_c00230{bottom:189.218940pt;}
.y48_c00230{bottom:189.324599pt;}
.y4a_c00230{bottom:189.461835pt;}
.y47_c00230{bottom:189.836847pt;}
.y46_c00230{bottom:189.884543pt;}
.y45_c00230{bottom:190.303936pt;}
.y44_c00230{bottom:190.610396pt;}
.y43_c00230{bottom:190.909420pt;}
.y42_c00230{bottom:191.160000pt;}
.y29_c00230{bottom:231.930655pt;}
.y28_c00230{bottom:232.336216pt;}
.y27_c00230{bottom:232.616767pt;}
.y26_c00230{bottom:233.275811pt;}
.y25_c00230{bottom:233.693501pt;}
.y24_c00230{bottom:234.303149pt;}
.y23_c00230{bottom:234.478004pt;}
.y22_c00230{bottom:234.721111pt;}
.y21_c00230{bottom:252.842100pt;}
.y20_c00230{bottom:252.971460pt;}
.y1f_c00230{bottom:253.206781pt;}
.y1e_c00230{bottom:253.310857pt;}
.y1d_c00230{bottom:253.589523pt;}
.y1c_c00230{bottom:253.966692pt;}
.y1b_c00230{bottom:255.052681pt;}
.y1a_c00230{bottom:255.360000pt;}
.y19_c00230{bottom:273.360000pt;}
.y18_c00230{bottom:294.625333pt;}
.y17_c00230{bottom:318.008000pt;}
.y16_c00230{bottom:342.542667pt;}
.y15_c00230{bottom:362.736000pt;}
.y14_c00230{bottom:382.853333pt;}
.y13_c00230{bottom:402.616000pt;}
.y12_c00230{bottom:427.786667pt;}
.y11_c00230{bottom:453.018667pt;}
.y10_c00230{bottom:472.412000pt;}
.yf_c00230{bottom:492.160000pt;}
.ye_c00230{bottom:512.060000pt;}
.yd_c00230{bottom:593.381333pt;}
.yc_c00230{bottom:626.306667pt;}
.yb_c00230{bottom:650.426667pt;}
.ya_c00230{bottom:710.316000pt;}
.y1_c00230{bottom:763.450667pt;}
.y2_c00230{bottom:767.224591pt;}
.y3_c00230{bottom:768.639347pt;}
.y4_c00230{bottom:770.098287pt;}
.y5_c00230{bottom:771.167103pt;}
.y9_c00230{bottom:805.491136pt;}
.y8_c00230{bottom:805.804128pt;}
.y7_c00230{bottom:806.180448pt;}
.y6_c00230{bottom:807.361333pt;}
.h12_c00230{height:42.006069pt;}
.h13_c00230{height:42.939537pt;}
.h15_c00230{height:45.736100pt;}
.h11_c00230{height:45.739941pt;}
.h14_c00230{height:48.533333pt;}
.h10_c00230{height:52.267947pt;}
.hb_c00230{height:56.933333pt;}
.ha_c00230{height:57.866667pt;}
.h8_c00230{height:59.733333pt;}
.h7_c00230{height:60.666667pt;}
.h6_c00230{height:62.533333pt;}
.hf_c00230{height:62.534865pt;}
.hd_c00230{height:64.400000pt;}
.h9_c00230{height:65.333333pt;}
.h2_c00230{height:71.882512pt;}
.hc_c00230{height:74.666667pt;}
.h5_c00230{height:75.600000pt;}
.he_c00230{height:77.466667pt;}
.h4_c00230{height:83.066667pt;}
.h3_c00230{height:128.804122pt;}
.h1_c00230{height:893.333333pt;}
.h0_c00230{height:893.466667pt;}
.w1_c00230{width:634.000000pt;}
.w0_c00230{width:634.266667pt;}
.x0_c00230{left:0.000000pt;}
.x5e_c00230{left:72.825333pt;}
.x31_c00230{left:95.040000pt;}
.x4e_c00230{left:98.160000pt;}
.x67_c00230{left:99.189753pt;}
.x54_c00230{left:101.268000pt;}
.x12_c00230{left:103.680000pt;}
.x5a_c00230{left:104.965049pt;}
.x5f_c00230{left:105.900000pt;}
.x3d_c00230{left:108.240000pt;}
.xc_c00230{left:109.440000pt;}
.x63_c00230{left:116.461999pt;}
.x19_c00230{left:121.680000pt;}
.x72_c00230{left:122.793333pt;}
.x64_c00230{left:124.383985pt;}
.x13_c00230{left:126.000000pt;}
.x45_c00230{left:129.120000pt;}
.xf_c00230{left:130.320000pt;}
.x3e_c00230{left:132.480000pt;}
.x32_c00230{left:140.400000pt;}
.x1a_c00230{left:144.240000pt;}
.x53_c00230{left:145.440000pt;}
.x14_c00230{left:146.640000pt;}
.x1_c00230{left:148.558667pt;}
.x23_c00230{left:150.240000pt;}
.x46_c00230{left:151.440000pt;}
.x4f_c00230{left:155.040000pt;}
.x68_c00230{left:163.037156pt;}
.x60_c00230{left:172.646667pt;}
.x15_c00230{left:176.160000pt;}
.x69_c00230{left:177.884408pt;}
.x39_c00230{left:180.000000pt;}
.x1b_c00230{left:183.600000pt;}
.x33_c00230{left:184.800000pt;}
.x47_c00230{left:185.760000pt;}
.x3f_c00230{left:187.200000pt;}
.x61_c00230{left:189.656000pt;}
.x65_c00230{left:191.075652pt;}
.x73_c00230{left:193.116000pt;}
.xa_c00230{left:196.560000pt;}
.x1c_c00230{left:198.240000pt;}
.x24_c00230{left:199.200000pt;}
.x40_c00230{left:200.640000pt;}
.x6_c00230{left:203.074667pt;}
.x5b_c00230{left:207.764227pt;}
.x4c_c00230{left:209.520000pt;}
.x10_c00230{left:214.560000pt;}
.x2f_c00230{left:217.440000pt;}
.x62_c00230{left:219.005333pt;}
.x50_c00230{left:221.760000pt;}
.x25_c00230{left:222.720000pt;}
.x4d_c00230{left:224.160000pt;}
.x1d_c00230{left:228.000000pt;}
.x2b_c00230{left:233.520000pt;}
.x16_c00230{left:234.960000pt;}
.x34_c00230{left:236.880000pt;}
.x74_c00230{left:239.684000pt;}
.x41_c00230{left:240.720000pt;}
.x51_c00230{left:243.360000pt;}
.x3a_c00230{left:244.320000pt;}
.x30_c00230{left:249.120000pt;}
.x26_c00230{left:251.280000pt;}
.x66_c00230{left:253.987636pt;}
.x3b_c00230{left:256.320000pt;}
.x2c_c00230{left:257.520000pt;}
.x42_c00230{left:261.600000pt;}
.x1e_c00230{left:267.360000pt;}
.x48_c00230{left:275.040000pt;}
.x11_c00230{left:276.960000pt;}
.x27_c00230{left:280.080000pt;}
.x52_c00230{left:282.000000pt;}
.x35_c00230{left:286.320000pt;}
.x3c_c00230{left:291.840000pt;}
.x6c_c00230{left:292.800000pt;}
.xd_c00230{left:294.480000pt;}
.x49_c00230{left:295.680000pt;}
.x17_c00230{left:297.840000pt;}
.x55_c00230{left:300.312000pt;}
.x18_c00230{left:301.440000pt;}
.x36_c00230{left:303.600000pt;}
.x2d_c00230{left:308.640000pt;}
.x43_c00230{left:312.000000pt;}
.x5c_c00230{left:315.485968pt;}
.x6d_c00230{left:316.800000pt;}
.x28_c00230{left:318.000000pt;}
.x6a_c00230{left:320.640000pt;}
.x2_c00230{left:328.269333pt;}
.x2e_c00230{left:329.520000pt;}
.xe_c00230{left:331.200000pt;}
.x1f_c00230{left:337.680000pt;}
.x29_c00230{left:340.560000pt;}
.x37_c00230{left:342.240000pt;}
.x5d_c00230{left:343.564047pt;}
.x7_c00230{left:350.685333pt;}
.x6e_c00230{left:352.560000pt;}
.x2a_c00230{left:354.240000pt;}
.x44_c00230{left:358.080000pt;}
.x4a_c00230{left:366.240000pt;}
.x6f_c00230{left:368.880000pt;}
.x20_c00230{left:371.040000pt;}
.x21_c00230{left:383.760000pt;}
.x4b_c00230{left:386.400000pt;}
.x38_c00230{left:392.160000pt;}
.x56_c00230{left:394.002667pt;}
.x3_c00230{left:395.638667pt;}
.x8_c00230{left:397.725333pt;}
.x6b_c00230{left:399.840000pt;}
.x75_c00230{left:402.154667pt;}
.x57_c00230{left:408.870667pt;}
.x76_c00230{left:411.540000pt;}
.x22_c00230{left:416.640000pt;}
.x70_c00230{left:431.040000pt;}
.x9_c00230{left:436.849333pt;}
.x58_c00230{left:442.488000pt;}
.x71_c00230{left:447.120000pt;}
.x59_c00230{left:460.968000pt;}
.x4_c00230{left:465.112000pt;}
.x5_c00230{left:516.008000pt;}
.xb_c00230{left:518.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_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_ef4e99a7aa2876b3106553d3.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;}
.m19_c00231{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);}
.m62_c00231{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mcb_c00231{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);}
.mc_c00231{transform:matrix(0.023775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00231{transform:matrix(0.044727,0.000537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.044727,0.000537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.044727,0.000537,-0.003000,0.249982,0,0);}
.m5f_c00231{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mee_c00231{transform:matrix(0.061078,0.000489,-0.002000,0.249992,0,0);-ms-transform:matrix(0.061078,0.000489,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.061078,0.000489,-0.002000,0.249992,0,0);}
.m5_c00231{transform:matrix(0.065935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065935,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);}
.m102_c00231{transform:matrix(0.097937,0.000783,-0.002000,0.249992,0,0);-ms-transform:matrix(0.097937,0.000783,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.097937,0.000783,-0.002000,0.249992,0,0);}
.m89_c00231{transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);}
.mef_c00231{transform:matrix(0.113006,0.000904,-0.002000,0.249992,0,0);-ms-transform:matrix(0.113006,0.000904,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.113006,0.000904,-0.002000,0.249992,0,0);}
.m24_c00231{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m100_c00231{transform:matrix(0.135546,0.001084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.135546,0.001084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.135546,0.001084,-0.002000,0.249992,0,0);}
.m43_c00231{transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);}
.m105_c00231{transform:matrix(0.137181,0.001097,-0.002000,0.249992,0,0);-ms-transform:matrix(0.137181,0.001097,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.137181,0.001097,-0.002000,0.249992,0,0);}
.m104_c00231{transform:matrix(0.138776,0.001110,-0.002000,0.249992,0,0);-ms-transform:matrix(0.138776,0.001110,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.138776,0.001110,-0.002000,0.249992,0,0);}
.m61_c00231{transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);}
.m9a_c00231{transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142960,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);}
.m31_c00231{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{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);}
.m2e_c00231{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);}
.mc3_c00231{transform:matrix(0.147649,0.001772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147649,0.001772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147649,0.001772,-0.003000,0.249982,0,0);}
.m50_c00231{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);}
.mbb_c00231{transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{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);}
.m95_c00231{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);}
.m35_c00231{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);}
.m29_c00231{transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);}
.m92_c00231{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);}
.m94_c00231{transform:matrix(0.156865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156865,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{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);}
.maf_c00231{transform:matrix(0.157955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157955,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{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);}
.m4e_c00231{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);}
.md4_c00231{transform:matrix(0.159232,0.000955,-0.001500,0.249996,0,0);-ms-transform:matrix(0.159232,0.000955,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.159232,0.000955,-0.001500,0.249996,0,0);}
.md8_c00231{transform:matrix(0.160292,0.000962,-0.001500,0.249996,0,0);-ms-transform:matrix(0.160292,0.000962,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.160292,0.000962,-0.001500,0.249996,0,0);}
.m42_c00231{transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{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);}
.m99_c00231{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);}
.m21_c00231{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);}
.m5c_c00231{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);}
.mfe_c00231{transform:matrix(0.162940,0.001304,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162940,0.001304,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162940,0.001304,-0.002000,0.249992,0,0);}
.m15_c00231{transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00231{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);}
.m34_c00231{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);}
.mb8_c00231{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);}
.m9d_c00231{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);}
.m98_c00231{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.md6_c00231{transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);}
.mf5_c00231{transform:matrix(0.169600,0.001357,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169600,0.001357,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169600,0.001357,-0.002000,0.249992,0,0);}
.m9f_c00231{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);}
.m7f_c00231{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);}
.m27_c00231{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);}
.mbd_c00231{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);}
.m20_c00231{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);}
.m8f_c00231{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);}
.m1b_c00231{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);}
.md3_c00231{transform:matrix(0.174067,0.001044,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174067,0.001044,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174067,0.001044,-0.001500,0.249996,0,0);}
.m1c_c00231{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);}
.m6a_c00231{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);}
.m106_c00231{transform:matrix(0.176399,0.001411,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176399,0.001411,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176399,0.001411,-0.002000,0.249992,0,0);}
.mff_c00231{transform:matrix(0.176419,0.001411,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176419,0.001411,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176419,0.001411,-0.002000,0.249992,0,0);}
.mc8_c00231{transform:matrix(0.176592,0.002119,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176592,0.002119,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176592,0.002119,-0.003000,0.249982,0,0);}
.me4_c00231{transform:matrix(0.177269,0.001418,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177269,0.001418,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177269,0.001418,-0.002000,0.249992,0,0);}
.m80_c00231{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);}
.m1f_c00231{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);}
.m2d_c00231{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);}
.me7_c00231{transform:matrix(0.179999,0.001440,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179999,0.001440,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179999,0.001440,-0.002000,0.249992,0,0);}
.m9c_c00231{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);}
.m28_c00231{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);}
.m9_c00231{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);}
.mbe_c00231{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);}
.m70_c00231{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);}
.m77_c00231{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);}
.m2c_c00231{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);}
.me2_c00231{transform:matrix(0.184627,0.001108,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184627,0.001108,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184627,0.001108,-0.001500,0.249996,0,0);}
.m7c_c00231{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);}
.m71_c00231{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);}
.m4f_c00231{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);}
.m91_c00231{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);}
.mf8_c00231{transform:matrix(0.186669,0.001493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186669,0.001493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186669,0.001493,-0.002000,0.249992,0,0);}
.m101_c00231{transform:matrix(0.186929,0.001495,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186929,0.001495,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186929,0.001495,-0.002000,0.249992,0,0);}
.m22_c00231{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);}
.med_c00231{transform:matrix(0.187649,0.001501,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187649,0.001501,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187649,0.001501,-0.002000,0.249992,0,0);}
.mba_c00231{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);}
.m2b_c00231{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);}
.mf1_c00231{transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);}
.mf4_c00231{transform:matrix(0.188394,0.001507,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188394,0.001507,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188394,0.001507,-0.002000,0.249992,0,0);}
.m6e_c00231{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);}
.m16_c00231{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m73_c00231{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);}
.mb3_c00231{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);}
.mbf_c00231{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);}
.m3b_c00231{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);}
.m32_c00231{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);}
.m81_c00231{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);}
.m87_c00231{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);}
.m3d_c00231{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);}
.m96_c00231{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);}
.m6d_c00231{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);}
.m7b_c00231{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);}
.m45_c00231{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);}
.m4d_c00231{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);}
.mf9_c00231{transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194164,0.001553,-0.002000,0.249992,0,0);}
.m3a_c00231{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);}
.m3f_c00231{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);}
.m90_c00231{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);}
.m52_c00231{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);}
.m93_c00231{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);}
.m8c_c00231{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);}
.m4c_c00231{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);}
.m49_c00231{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);}
.m83_c00231{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);}
.md7_c00231{transform:matrix(0.199336,0.001196,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199336,0.001196,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199336,0.001196,-0.001500,0.249996,0,0);}
.m30_c00231{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);}
.m9b_c00231{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);}
.m56_c00231{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);}
.mc6_c00231{transform:matrix(0.201311,0.002416,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201311,0.002416,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201311,0.002416,-0.003000,0.249982,0,0);}
.mc5_c00231{transform:matrix(0.201780,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201780,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201780,0.002421,-0.003000,0.249982,0,0);}
.m2f_c00231{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);}
.mb7_c00231{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);}
.m72_c00231{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);}
.m51_c00231{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);}
.mb_c00231{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);}
.m54_c00231{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_c00231{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);}
.m7a_c00231{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);}
.m7_c00231{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);}
.mb5_c00231{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);}
.m8d_c00231{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);}
.me1_c00231{transform:matrix(0.207716,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207716,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207716,0.001246,-0.001500,0.249996,0,0);}
.mf6_c00231{transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);}
.m1e_c00231{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_c00231{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);}
.me8_c00231{transform:matrix(0.210018,0.001680,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210018,0.001680,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210018,0.001680,-0.002000,0.249992,0,0);}
.m10_c00231{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);}
.mbc_c00231{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);}
.m6f_c00231{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);}
.m9e_c00231{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);}
.ma_c00231{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);}
.m82_c00231{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);}
.mb9_c00231{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);}
.m76_c00231{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);}
.m7e_c00231{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{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);}
.m13_c00231{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);}
.m25_c00231{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);}
.m2a_c00231{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);}
.mf7_c00231{transform:matrix(0.219523,0.001756,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219523,0.001756,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219523,0.001756,-0.002000,0.249992,0,0);}
.ma4_c00231{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);}
.m6b_c00231{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_c00231{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);}
.mda_c00231{transform:matrix(0.220901,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220901,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220901,0.001325,-0.001500,0.249996,0,0);}
.mde_c00231{transform:matrix(0.221681,0.001330,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221681,0.001330,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221681,0.001330,-0.001500,0.249996,0,0);}
.mfd_c00231{transform:matrix(0.222163,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222163,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222163,0.001777,-0.002000,0.249992,0,0);}
.mf2_c00231{transform:matrix(0.222183,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222183,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222183,0.001777,-0.002000,0.249992,0,0);}
.mfa_c00231{transform:matrix(0.223708,0.001790,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223708,0.001790,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223708,0.001790,-0.002000,0.249992,0,0);}
.maa_c00231{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);}
.m23_c00231{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);}
.m88_c00231{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);}
.m8b_c00231{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);}
.m40_c00231{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);}
.m7d_c00231{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);}
.m57_c00231{transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);}
.mad_c00231{transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);}
.m39_c00231{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);}
.m4_c00231{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);}
.m5b_c00231{transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);}
.m5e_c00231{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);}
.m64_c00231{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);}
.m6c_c00231{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m97_c00231{transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);}
.mea_c00231{transform:matrix(0.231433,0.001851,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231433,0.001851,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231433,0.001851,-0.002000,0.249992,0,0);}
.m65_c00231{transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);}
.m78_c00231{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);}
.mc0_c00231{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);}
.mc1_c00231{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.mac_c00231{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);}
.ma1_c00231{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);}
.m47_c00231{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.md9_c00231{transform:matrix(0.239026,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239026,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239026,0.001434,-0.001500,0.249996,0,0);}
.mf0_c00231{transform:matrix(0.239272,0.001914,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239272,0.001914,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239272,0.001914,-0.002000,0.249992,0,0);}
.m8e_c00231{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);}
.mf3_c00231{transform:matrix(0.240002,0.001920,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240002,0.001920,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240002,0.001920,-0.002000,0.249992,0,0);}
.ma9_c00231{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);}
.mb0_c00231{transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);}
.mb4_c00231{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.m8a_c00231{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.md2_c00231{transform:matrix(0.242836,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242836,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242836,0.001457,-0.001500,0.249996,0,0);}
.mce_c00231{transform:matrix(0.242998,0.002916,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242998,0.002916,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242998,0.002916,-0.003000,0.249982,0,0);}
.ma0_c00231{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);}
.m86_c00231{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{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);}
.mae_c00231{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);}
.m46_c00231{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);}
.m55_c00231{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);}
.mdc_c00231{transform:matrix(0.253305,0.001520,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253305,0.001520,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253305,0.001520,-0.001500,0.249996,0,0);}
.mb6_c00231{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00231{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);}
.mb1_c00231{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);}
.ma2_c00231{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);}
.mc4_c00231{transform:matrix(0.258136,0.003098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258136,0.003098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258136,0.003098,-0.003000,0.249982,0,0);}
.mec_c00231{transform:matrix(0.258817,0.002071,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258817,0.002071,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258817,0.002071,-0.002000,0.249992,0,0);}
.md1_c00231{transform:matrix(0.260620,0.001564,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260620,0.001564,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260620,0.001564,-0.001500,0.249996,0,0);}
.m75_c00231{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);}
.ma6_c00231{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);}
.m103_c00231{transform:matrix(0.262832,0.002103,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262832,0.002103,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262832,0.002103,-0.002000,0.249992,0,0);}
.me6_c00231{transform:matrix(0.265841,0.002127,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265841,0.002127,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265841,0.002127,-0.002000,0.249992,0,0);}
.md5_c00231{transform:matrix(0.266500,0.001599,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266500,0.001599,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266500,0.001599,-0.001500,0.249996,0,0);}
.mcc_c00231{transform:matrix(0.267421,0.003209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267421,0.003209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267421,0.003209,-0.003000,0.249982,0,0);}
.m63_c00231{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.mdb_c00231{transform:matrix(0.272020,0.001632,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272020,0.001632,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272020,0.001632,-0.001500,0.249996,0,0);}
.ma8_c00231{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m60_c00231{transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277005,0.000000,0.000000,0.250000,0,0);}
.mab_c00231{transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);}
.m74_c00231{transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.286040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286040,0.000000,0.000000,0.250000,0,0);}
.m58_c00231{transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);}
.meb_c00231{transform:matrix(0.291541,0.002332,-0.002000,0.249992,0,0);-ms-transform:matrix(0.291541,0.002332,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.291541,0.002332,-0.002000,0.249992,0,0);}
.m67_c00231{transform:matrix(0.296430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296430,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.299760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299760,0.000000,0.000000,0.250000,0,0);}
.md0_c00231{transform:matrix(0.305008,0.003660,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305008,0.003660,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305008,0.003660,-0.003000,0.249982,0,0);}
.mdf_c00231{transform:matrix(0.305325,0.001832,-0.001500,0.249996,0,0);-ms-transform:matrix(0.305325,0.001832,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.305325,0.001832,-0.001500,0.249996,0,0);}
.m38_c00231{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.me9_c00231{transform:matrix(0.312415,0.002499,-0.002000,0.249992,0,0);-ms-transform:matrix(0.312415,0.002499,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.312415,0.002499,-0.002000,0.249992,0,0);}
.m3_c00231{transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);}
.m41_c00231{transform:matrix(0.316220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316220,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);}
.mcf_c00231{transform:matrix(0.323377,0.003881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.323377,0.003881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.323377,0.003881,-0.003000,0.249982,0,0);}
.ma5_c00231{transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);}
.m59_c00231{transform:matrix(0.328950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328950,0.000000,0.000000,0.250000,0,0);}
.m26_c00231{transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334875,0.000000,0.000000,0.250000,0,0);}
.mfb_c00231{transform:matrix(0.337364,0.002699,-0.002000,0.249992,0,0);-ms-transform:matrix(0.337364,0.002699,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.337364,0.002699,-0.002000,0.249992,0,0);}
.mf_c00231{transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346285,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);}
.me5_c00231{transform:matrix(0.347379,0.002779,-0.002000,0.249992,0,0);-ms-transform:matrix(0.347379,0.002779,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.347379,0.002779,-0.002000,0.249992,0,0);}
.m79_c00231{transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.360075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360075,0.000000,0.000000,0.250000,0,0);}
.m37_c00231{transform:matrix(0.366170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366170,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.368155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368155,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.377395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377395,0.000000,0.000000,0.250000,0,0);}
.mca_c00231{transform:matrix(0.377893,0.004535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.377893,0.004535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.377893,0.004535,-0.003000,0.249982,0,0);}
.mc7_c00231{transform:matrix(0.385002,0.004620,-0.003000,0.249982,0,0);-ms-transform:matrix(0.385002,0.004620,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.385002,0.004620,-0.003000,0.249982,0,0);}
.m84_c00231{transform:matrix(0.399190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399190,0.000000,0.000000,0.250000,0,0);}
.m66_c00231{transform:matrix(0.419180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419180,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{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);}
.m4a_c00231{transform:matrix(0.448435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448435,0.000000,0.000000,0.250000,0,0);}
.me0_c00231{transform:matrix(0.461622,0.002770,-0.001500,0.249996,0,0);-ms-transform:matrix(0.461622,0.002770,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.461622,0.002770,-0.001500,0.249996,0,0);}
.me3_c00231{transform:matrix(0.462225,0.003698,-0.002000,0.249992,0,0);-ms-transform:matrix(0.462225,0.003698,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.462225,0.003698,-0.002000,0.249992,0,0);}
.m1a_c00231{transform:matrix(0.477525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477525,0.000000,0.000000,0.250000,0,0);}
.mfc_c00231{transform:matrix(0.514779,0.004118,-0.002000,0.249992,0,0);-ms-transform:matrix(0.514779,0.004118,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.514779,0.004118,-0.002000,0.249992,0,0);}
.mcd_c00231{transform:matrix(0.528012,0.006336,-0.003000,0.249982,0,0);-ms-transform:matrix(0.528012,0.006336,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.528012,0.006336,-0.003000,0.249982,0,0);}
.m69_c00231{transform:matrix(0.596890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596890,0.000000,0.000000,0.250000,0,0);}
.mdd_c00231{transform:matrix(0.614549,0.003687,-0.001500,0.249996,0,0);-ms-transform:matrix(0.614549,0.003687,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.614549,0.003687,-0.001500,0.249996,0,0);}
.m1_c00231{transform:matrix(0.631850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631850,0.000000,0.000000,0.250000,0,0);}
.m4b_c00231{transform:matrix(0.675040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675040,0.000000,0.000000,0.250000,0,0);}
.m5a_c00231{transform:matrix(0.795820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795820,0.000000,0.000000,0.250000,0,0);}
.mc9_c00231{transform:matrix(0.862698,0.010352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.862698,0.010352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.862698,0.010352,-0.003000,0.249982,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;}
.fs1_c00231{font-size:40.950000px;}
.fs10_c00231{font-size:50.401613px;}
.fs11_c00231{font-size:51.451646px;}
.fsf_c00231{font-size:54.600983px;}
.fsd_c00231{font-size:55.654007px;}
.fsc_c00231{font-size:60.900000px;}
.fsa_c00231{font-size:61.950000px;}
.fs12_c00231{font-size:61.951982px;}
.fsb_c00231{font-size:63.000000px;}
.fs7_c00231{font-size:66.150000px;}
.fse_c00231{font-size:66.154763px;}
.fs9_c00231{font-size:69.300000px;}
.fs0_c00231{font-size:70.350000px;}
.fs5_c00231{font-size:71.400000px;}
.fs4_c00231{font-size:72.450000px;}
.fs6_c00231{font-size:73.500000px;}
.fs3_c00231{font-size:77.700000px;}
.fs8_c00231{font-size:82.950000px;}
.fs2_c00231{font-size:130.200000px;}
.y0_c00231{bottom:0.000000px;}
.y64_c00231{bottom:165.251424px;}
.y63_c00231{bottom:165.251484px;}
.y67_c00231{bottom:165.251508px;}
.y66_c00231{bottom:165.251556px;}
.y61_c00231{bottom:165.251652px;}
.y65_c00231{bottom:165.251964px;}
.y60_c00231{bottom:165.252060px;}
.y62_c00231{bottom:165.252072px;}
.y5f_c00231{bottom:165.252480px;}
.y55_c00231{bottom:182.366424px;}
.y5b_c00231{bottom:182.367000px;}
.y56_c00231{bottom:182.367024px;}
.y58_c00231{bottom:182.367144px;}
.y5c_c00231{bottom:182.367192px;}
.y5e_c00231{bottom:182.367264px;}
.y5a_c00231{bottom:182.367348px;}
.y59_c00231{bottom:182.367396px;}
.y57_c00231{bottom:182.367624px;}
.y5d_c00231{bottom:182.367912px;}
.y54_c00231{bottom:198.856920px;}
.y53_c00231{bottom:199.217520px;}
.y52_c00231{bottom:199.405584px;}
.y51_c00231{bottom:199.640952px;}
.y4f_c00231{bottom:199.720692px;}
.y50_c00231{bottom:199.722648px;}
.y4e_c00231{bottom:200.163912px;}
.y4d_c00231{bottom:200.328084px;}
.y4c_c00231{bottom:200.533212px;}
.y4b_c00231{bottom:201.077616px;}
.y4a_c00231{bottom:201.420804px;}
.y49_c00231{bottom:201.608808px;}
.y48_c00231{bottom:201.753492px;}
.y47_c00231{bottom:202.034388px;}
.y46_c00231{bottom:202.114380px;}
.y45_c00231{bottom:202.477128px;}
.y44_c00231{bottom:202.771500px;}
.y43_c00231{bottom:217.099917px;}
.y42_c00231{bottom:217.205217px;}
.y41_c00231{bottom:217.589526px;}
.y40_c00231{bottom:217.702926px;}
.y3f_c00231{bottom:218.041443px;}
.y3e_c00231{bottom:218.180844px;}
.y3d_c00231{bottom:218.306979px;}
.y3c_c00231{bottom:218.384676px;}
.y3b_c00231{bottom:218.485170px;}
.y3a_c00231{bottom:218.640627px;}
.y39_c00231{bottom:218.783097px;}
.y38_c00231{bottom:218.988837px;}
.y37_c00231{bottom:219.076317px;}
.y36_c00231{bottom:219.278826px;}
.y35_c00231{bottom:219.382389px;}
.y34_c00231{bottom:219.586644px;}
.y33_c00231{bottom:219.721149px;}
.y32_c00231{bottom:220.050000px;}
.y31_c00231{bottom:267.387312px;}
.y30_c00231{bottom:270.836928px;}
.y2f_c00231{bottom:271.154772px;}
.y2e_c00231{bottom:272.071800px;}
.y2d_c00231{bottom:272.789364px;}
.y2c_c00231{bottom:273.012174px;}
.y2b_c00231{bottom:274.041636px;}
.y2a_c00231{bottom:275.671254px;}
.y29_c00231{bottom:287.309976px;}
.y28_c00231{bottom:288.107772px;}
.y27_c00231{bottom:290.621490px;}
.y26_c00231{bottom:291.072120px;}
.y25_c00231{bottom:291.308352px;}
.y24_c00231{bottom:292.325442px;}
.y23_c00231{bottom:292.951500px;}
.y22_c00231{bottom:322.572000px;}
.y21_c00231{bottom:343.107000px;}
.y20_c00231{bottom:343.518000px;}
.y1f_c00231{bottom:343.792500px;}
.y1e_c00231{bottom:344.089500px;}
.y1d_c00231{bottom:344.490000px;}
.y1c_c00231{bottom:344.868000px;}
.y1b_c00231{bottom:345.111000px;}
.y1a_c00231{bottom:345.489000px;}
.y19_c00231{bottom:346.143000px;}
.y18_c00231{bottom:367.912500px;}
.y17_c00231{bottom:390.789000px;}
.y16_c00231{bottom:413.055000px;}
.y15_c00231{bottom:435.591000px;}
.y14_c00231{bottom:458.569500px;}
.y13_c00231{bottom:481.248000px;}
.y12_c00231{bottom:503.634000px;}
.y11_c00231{bottom:526.296000px;}
.y10_c00231{bottom:548.706000px;}
.yf_c00231{bottom:572.068500px;}
.ye_c00231{bottom:594.735000px;}
.yd_c00231{bottom:616.798500px;}
.yc_c00231{bottom:639.757500px;}
.yb_c00231{bottom:666.831000px;}
.ya_c00231{bottom:689.968500px;}
.y9_c00231{bottom:712.906500px;}
.y8_c00231{bottom:735.121500px;}
.y7_c00231{bottom:757.897500px;}
.y6_c00231{bottom:781.831500px;}
.y5_c00231{bottom:804.780000px;}
.y4_c00231{bottom:826.921500px;}
.y3_c00231{bottom:912.246000px;}
.y2_c00231{bottom:925.950000px;}
.y1_c00231{bottom:929.808000px;}
.h3_c00231{height:40.950000px;}
.h12_c00231{height:50.401613px;}
.h13_c00231{height:51.451646px;}
.h11_c00231{height:54.600983px;}
.hf_c00231{height:55.654007px;}
.he_c00231{height:60.900000px;}
.hc_c00231{height:61.950000px;}
.h14_c00231{height:61.951982px;}
.hd_c00231{height:63.000000px;}
.h9_c00231{height:66.150000px;}
.h10_c00231{height:66.154763px;}
.hb_c00231{height:69.300000px;}
.h2_c00231{height:70.350000px;}
.h7_c00231{height:71.400000px;}
.h6_c00231{height:72.450000px;}
.h8_c00231{height:73.500000px;}
.h5_c00231{height:77.700000px;}
.ha_c00231{height:82.950000px;}
.h4_c00231{height:130.200000px;}
.h0_c00231{height:1008.450000px;}
.h1_c00231{height:1008.750000px;}
.w0_c00231{width:678.450000px;}
.w1_c00231{width:678.750000px;}
.x0_c00231{left:0.000000px;}
.x84_c00231{left:72.251010px;}
.x80_c00231{left:76.813500px;}
.x8f_c00231{left:80.851500px;}
.x90_c00231{left:117.648000px;}
.x89_c00231{left:127.378500px;}
.x81_c00231{left:128.985000px;}
.x5_c00231{left:134.460000px;}
.x98_c00231{left:135.813792px;}
.x26_c00231{left:145.800000px;}
.x63_c00231{left:147.960000px;}
.x7c_c00231{left:150.118500px;}
.x48_c00231{left:153.900000px;}
.x14_c00231{left:155.520000px;}
.x85_c00231{left:158.045310px;}
.x10_c00231{left:159.300000px;}
.x91_c00231{left:162.991500px;}
.x6_c00231{left:167.130000px;}
.x92_c00231{left:172.990500px;}
.x1c_c00231{left:176.850000px;}
.x64_c00231{left:178.200000px;}
.x2c_c00231{left:181.710000px;}
.x39_c00231{left:183.870000px;}
.x33_c00231{left:184.950000px;}
.x15_c00231{left:187.650000px;}
.x7d_c00231{left:188.728500px;}
.x7_c00231{left:193.050000px;}
.x68_c00231{left:194.130000px;}
.x9a_c00231{left:195.487200px;}
.x1_c00231{left:196.830000px;}
.x6d_c00231{left:197.910000px;}
.x70_c00231{left:201.690000px;}
.x16_c00231{left:208.170000px;}
.x7a_c00231{left:210.723000px;}
.x86_c00231{left:212.204256px;}
.x82_c00231{left:213.742500px;}
.x5d_c00231{left:216.000000px;}
.x1a_c00231{left:217.890000px;}
.x1d_c00231{left:223.560000px;}
.x69_c00231{left:225.450000px;}
.x34_c00231{left:228.420000px;}
.x6e_c00231{left:229.770000px;}
.x27_c00231{left:231.390000px;}
.x41_c00231{left:233.010000px;}
.x3a_c00231{left:235.440000px;}
.x4f_c00231{left:238.140000px;}
.x1e_c00231{left:245.430000px;}
.x2d_c00231{left:248.130000px;}
.x8_c00231{left:249.750000px;}
.x2_c00231{left:250.830000px;}
.x71_c00231{left:252.990000px;}
.x28_c00231{left:255.420000px;}
.x9b_c00231{left:256.509600px;}
.x49_c00231{left:257.580000px;}
.x5e_c00231{left:259.470000px;}
.x87_c00231{left:261.689598px;}
.x59_c00231{left:264.330000px;}
.x77_c00231{left:265.410000px;}
.x53_c00231{left:270.270000px;}
.x9c_c00231{left:271.630572px;}
.x7b_c00231{left:272.814000px;}
.x35_c00231{left:274.320000px;}
.x42_c00231{left:275.400000px;}
.x9_c00231{left:283.500000px;}
.x5f_c00231{left:284.580000px;}
.x1f_c00231{left:286.740000px;}
.x5a_c00231{left:288.090000px;}
.x1b_c00231{left:289.170000px;}
.x11_c00231{left:290.250000px;}
.x17_c00231{left:292.680000px;}
.x7e_c00231{left:294.028500px;}
.x36_c00231{left:295.650000px;}
.x31_c00231{left:298.620000px;}
.x20_c00231{left:307.530000px;}
.x65_c00231{left:309.690000px;}
.xa_c00231{left:311.040000px;}
.x2e_c00231{left:315.630000px;}
.x54_c00231{left:317.250000px;}
.x4c_c00231{left:320.760000px;}
.x60_c00231{left:325.350000px;}
.x66_c00231{left:326.970000px;}
.x6a_c00231{left:328.050000px;}
.x4d_c00231{left:330.750000px;}
.x4a_c00231{left:331.830000px;}
.x3b_c00231{left:333.450000px;}
.x43_c00231{left:334.530000px;}
.x5b_c00231{left:341.820000px;}
.x12_c00231{left:345.060000px;}
.x18_c00231{left:346.410000px;}
.x3c_c00231{left:348.030000px;}
.x29_c00231{left:349.920000px;}
.x21_c00231{left:351.270000px;}
.x78_c00231{left:352.620000px;}
.x32_c00231{left:354.240000px;}
.x44_c00231{left:355.590000px;}
.x61_c00231{left:356.940000px;}
.x99_c00231{left:358.842072px;}
.x7f_c00231{left:360.178500px;}
.x50_c00231{left:361.260000px;}
.x8a_c00231{left:363.073500px;}
.xb_c00231{left:366.930000px;}
.x72_c00231{left:369.090000px;}
.x79_c00231{left:371.520000px;}
.x2f_c00231{left:375.030000px;}
.x51_c00231{left:378.270000px;}
.x19_c00231{left:379.890000px;}
.x8b_c00231{left:384.096000px;}
.x93_c00231{left:386.278500px;}
.x37_c00231{left:389.610000px;}
.x2a_c00231{left:390.690000px;}
.x3d_c00231{left:392.310000px;}
.x22_c00231{left:393.390000px;}
.x73_c00231{left:395.550000px;}
.x4b_c00231{left:400.410000px;}
.x5c_c00231{left:402.570000px;}
.x55_c00231{left:403.650000px;}
.x94_c00231{left:406.800000px;}
.x6b_c00231{left:408.240000px;}
.x45_c00231{left:414.180000px;}
.x6f_c00231{left:416.070000px;}
.x23_c00231{left:419.850000px;}
.x56_c00231{left:421.470000px;}
.x6c_c00231{left:423.900000px;}
.xc_c00231{left:425.520000px;}
.x3e_c00231{left:426.600000px;}
.x3_c00231{left:429.030000px;}
.x46_c00231{left:430.380000px;}
.x74_c00231{left:432.000000px;}
.x67_c00231{left:433.080000px;}
.x4e_c00231{left:442.800000px;}
.x24_c00231{left:444.150000px;}
.x13_c00231{left:445.230000px;}
.x62_c00231{left:446.310000px;}
.x30_c00231{left:448.200000px;}
.x38_c00231{left:455.490000px;}
.x52_c00231{left:459.270000px;}
.xd_c00231{left:461.970000px;}
.x8c_c00231{left:463.749000px;}
.x47_c00231{left:469.800000px;}
.x75_c00231{left:473.040000px;}
.x4_c00231{left:475.470000px;}
.x40_c00231{left:481.410000px;}
.x8d_c00231{left:482.649000px;}
.xe_c00231{left:485.190000px;}
.x57_c00231{left:488.430000px;}
.x3f_c00231{left:497.880000px;}
.x95_c00231{left:501.591000px;}
.x25_c00231{left:503.010000px;}
.x2b_c00231{left:505.980000px;}
.x88_c00231{left:508.292898px;}
.x58_c00231{left:520.290000px;}
.xf_c00231{left:522.180000px;}
.x96_c00231{left:525.099000px;}
.x76_c00231{left:545.940000px;}
.x83_c00231{left:546.940500px;}
.x8e_c00231{left:564.250500px;}
.x97_c00231{left:570.174000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
.fs1_c00231{font-size:36.400000pt;}
.fs10_c00231{font-size:44.801434pt;}
.fs11_c00231{font-size:45.734797pt;}
.fsf_c00231{font-size:48.534207pt;}
.fsd_c00231{font-size:49.470228pt;}
.fsc_c00231{font-size:54.133333pt;}
.fsa_c00231{font-size:55.066667pt;}
.fs12_c00231{font-size:55.068429pt;}
.fsb_c00231{font-size:56.000000pt;}
.fs7_c00231{font-size:58.800000pt;}
.fse_c00231{font-size:58.804233pt;}
.fs9_c00231{font-size:61.600000pt;}
.fs0_c00231{font-size:62.533333pt;}
.fs5_c00231{font-size:63.466667pt;}
.fs4_c00231{font-size:64.400000pt;}
.fs6_c00231{font-size:65.333333pt;}
.fs3_c00231{font-size:69.066667pt;}
.fs8_c00231{font-size:73.733333pt;}
.fs2_c00231{font-size:115.733333pt;}
.y0_c00231{bottom:0.000000pt;}
.y64_c00231{bottom:146.890155pt;}
.y63_c00231{bottom:146.890208pt;}
.y67_c00231{bottom:146.890229pt;}
.y66_c00231{bottom:146.890272pt;}
.y61_c00231{bottom:146.890357pt;}
.y65_c00231{bottom:146.890635pt;}
.y60_c00231{bottom:146.890720pt;}
.y62_c00231{bottom:146.890731pt;}
.y5f_c00231{bottom:146.891093pt;}
.y55_c00231{bottom:162.103488pt;}
.y5b_c00231{bottom:162.104000pt;}
.y56_c00231{bottom:162.104021pt;}
.y58_c00231{bottom:162.104128pt;}
.y5c_c00231{bottom:162.104171pt;}
.y5e_c00231{bottom:162.104235pt;}
.y5a_c00231{bottom:162.104309pt;}
.y59_c00231{bottom:162.104352pt;}
.y57_c00231{bottom:162.104555pt;}
.y5d_c00231{bottom:162.104811pt;}
.y54_c00231{bottom:176.761707pt;}
.y53_c00231{bottom:177.082240pt;}
.y52_c00231{bottom:177.249408pt;}
.y51_c00231{bottom:177.458624pt;}
.y4f_c00231{bottom:177.529504pt;}
.y50_c00231{bottom:177.531243pt;}
.y4e_c00231{bottom:177.923477pt;}
.y4d_c00231{bottom:178.069408pt;}
.y4c_c00231{bottom:178.251744pt;}
.y4b_c00231{bottom:178.735659pt;}
.y4a_c00231{bottom:179.040715pt;}
.y49_c00231{bottom:179.207829pt;}
.y48_c00231{bottom:179.336437pt;}
.y47_c00231{bottom:179.586123pt;}
.y46_c00231{bottom:179.657227pt;}
.y45_c00231{bottom:179.979669pt;}
.y44_c00231{bottom:180.241333pt;}
.y43_c00231{bottom:192.977704pt;}
.y42_c00231{bottom:193.071304pt;}
.y41_c00231{bottom:193.412912pt;}
.y40_c00231{bottom:193.513712pt;}
.y3f_c00231{bottom:193.814616pt;}
.y3e_c00231{bottom:193.938528pt;}
.y3d_c00231{bottom:194.050648pt;}
.y3c_c00231{bottom:194.119712pt;}
.y3b_c00231{bottom:194.209040pt;}
.y3a_c00231{bottom:194.347224pt;}
.y39_c00231{bottom:194.473864pt;}
.y38_c00231{bottom:194.656744pt;}
.y37_c00231{bottom:194.734504pt;}
.y36_c00231{bottom:194.914512pt;}
.y35_c00231{bottom:195.006568pt;}
.y34_c00231{bottom:195.188128pt;}
.y33_c00231{bottom:195.307688pt;}
.y32_c00231{bottom:195.600000pt;}
.y31_c00231{bottom:237.677611pt;}
.y30_c00231{bottom:240.743936pt;}
.y2f_c00231{bottom:241.026464pt;}
.y2e_c00231{bottom:241.841600pt;}
.y2d_c00231{bottom:242.479435pt;}
.y2c_c00231{bottom:242.677488pt;}
.y2b_c00231{bottom:243.592565pt;}
.y2a_c00231{bottom:245.041115pt;}
.y29_c00231{bottom:255.386645pt;}
.y28_c00231{bottom:256.095797pt;}
.y27_c00231{bottom:258.330213pt;}
.y26_c00231{bottom:258.730773pt;}
.y25_c00231{bottom:258.940757pt;}
.y24_c00231{bottom:259.844837pt;}
.y23_c00231{bottom:260.401333pt;}
.y22_c00231{bottom:286.730667pt;}
.y21_c00231{bottom:304.984000pt;}
.y20_c00231{bottom:305.349333pt;}
.y1f_c00231{bottom:305.593333pt;}
.y1e_c00231{bottom:305.857333pt;}
.y1d_c00231{bottom:306.213333pt;}
.y1c_c00231{bottom:306.549333pt;}
.y1b_c00231{bottom:306.765333pt;}
.y1a_c00231{bottom:307.101333pt;}
.y19_c00231{bottom:307.682667pt;}
.y18_c00231{bottom:327.033333pt;}
.y17_c00231{bottom:347.368000pt;}
.y16_c00231{bottom:367.160000pt;}
.y15_c00231{bottom:387.192000pt;}
.y14_c00231{bottom:407.617333pt;}
.y13_c00231{bottom:427.776000pt;}
.y12_c00231{bottom:447.674667pt;}
.y11_c00231{bottom:467.818667pt;}
.y10_c00231{bottom:487.738667pt;}
.yf_c00231{bottom:508.505333pt;}
.ye_c00231{bottom:528.653333pt;}
.yd_c00231{bottom:548.265333pt;}
.yc_c00231{bottom:568.673333pt;}
.yb_c00231{bottom:592.738667pt;}
.ya_c00231{bottom:613.305333pt;}
.y9_c00231{bottom:633.694667pt;}
.y8_c00231{bottom:653.441333pt;}
.y7_c00231{bottom:673.686667pt;}
.y6_c00231{bottom:694.961333pt;}
.y5_c00231{bottom:715.360000pt;}
.y4_c00231{bottom:735.041333pt;}
.y3_c00231{bottom:810.885333pt;}
.y2_c00231{bottom:823.066667pt;}
.y1_c00231{bottom:826.496000pt;}
.h3_c00231{height:36.400000pt;}
.h12_c00231{height:44.801434pt;}
.h13_c00231{height:45.734797pt;}
.h11_c00231{height:48.534207pt;}
.hf_c00231{height:49.470228pt;}
.he_c00231{height:54.133333pt;}
.hc_c00231{height:55.066667pt;}
.h14_c00231{height:55.068429pt;}
.hd_c00231{height:56.000000pt;}
.h9_c00231{height:58.800000pt;}
.h10_c00231{height:58.804233pt;}
.hb_c00231{height:61.600000pt;}
.h2_c00231{height:62.533333pt;}
.h7_c00231{height:63.466667pt;}
.h6_c00231{height:64.400000pt;}
.h8_c00231{height:65.333333pt;}
.h5_c00231{height:69.066667pt;}
.ha_c00231{height:73.733333pt;}
.h4_c00231{height:115.733333pt;}
.h0_c00231{height:896.400000pt;}
.h1_c00231{height:896.666667pt;}
.w0_c00231{width:603.066667pt;}
.w1_c00231{width:603.333333pt;}
.x0_c00231{left:0.000000pt;}
.x84_c00231{left:64.223120pt;}
.x80_c00231{left:68.278667pt;}
.x8f_c00231{left:71.868000pt;}
.x90_c00231{left:104.576000pt;}
.x89_c00231{left:113.225333pt;}
.x81_c00231{left:114.653333pt;}
.x5_c00231{left:119.520000pt;}
.x98_c00231{left:120.723371pt;}
.x26_c00231{left:129.600000pt;}
.x63_c00231{left:131.520000pt;}
.x7c_c00231{left:133.438667pt;}
.x48_c00231{left:136.800000pt;}
.x14_c00231{left:138.240000pt;}
.x85_c00231{left:140.484720pt;}
.x10_c00231{left:141.600000pt;}
.x91_c00231{left:144.881333pt;}
.x6_c00231{left:148.560000pt;}
.x92_c00231{left:153.769333pt;}
.x1c_c00231{left:157.200000pt;}
.x64_c00231{left:158.400000pt;}
.x2c_c00231{left:161.520000pt;}
.x39_c00231{left:163.440000pt;}
.x33_c00231{left:164.400000pt;}
.x15_c00231{left:166.800000pt;}
.x7d_c00231{left:167.758667pt;}
.x7_c00231{left:171.600000pt;}
.x68_c00231{left:172.560000pt;}
.x9a_c00231{left:173.766400pt;}
.x1_c00231{left:174.960000pt;}
.x6d_c00231{left:175.920000pt;}
.x70_c00231{left:179.280000pt;}
.x16_c00231{left:185.040000pt;}
.x7a_c00231{left:187.309333pt;}
.x86_c00231{left:188.626005pt;}
.x82_c00231{left:189.993333pt;}
.x5d_c00231{left:192.000000pt;}
.x1a_c00231{left:193.680000pt;}
.x1d_c00231{left:198.720000pt;}
.x69_c00231{left:200.400000pt;}
.x34_c00231{left:203.040000pt;}
.x6e_c00231{left:204.240000pt;}
.x27_c00231{left:205.680000pt;}
.x41_c00231{left:207.120000pt;}
.x3a_c00231{left:209.280000pt;}
.x4f_c00231{left:211.680000pt;}
.x1e_c00231{left:218.160000pt;}
.x2d_c00231{left:220.560000pt;}
.x8_c00231{left:222.000000pt;}
.x2_c00231{left:222.960000pt;}
.x71_c00231{left:224.880000pt;}
.x28_c00231{left:227.040000pt;}
.x9b_c00231{left:228.008533pt;}
.x49_c00231{left:228.960000pt;}
.x5e_c00231{left:230.640000pt;}
.x87_c00231{left:232.612976pt;}
.x59_c00231{left:234.960000pt;}
.x77_c00231{left:235.920000pt;}
.x53_c00231{left:240.240000pt;}
.x9c_c00231{left:241.449397pt;}
.x7b_c00231{left:242.501333pt;}
.x35_c00231{left:243.840000pt;}
.x42_c00231{left:244.800000pt;}
.x9_c00231{left:252.000000pt;}
.x5f_c00231{left:252.960000pt;}
.x1f_c00231{left:254.880000pt;}
.x5a_c00231{left:256.080000pt;}
.x1b_c00231{left:257.040000pt;}
.x11_c00231{left:258.000000pt;}
.x17_c00231{left:260.160000pt;}
.x7e_c00231{left:261.358667pt;}
.x36_c00231{left:262.800000pt;}
.x31_c00231{left:265.440000pt;}
.x20_c00231{left:273.360000pt;}
.x65_c00231{left:275.280000pt;}
.xa_c00231{left:276.480000pt;}
.x2e_c00231{left:280.560000pt;}
.x54_c00231{left:282.000000pt;}
.x4c_c00231{left:285.120000pt;}
.x60_c00231{left:289.200000pt;}
.x66_c00231{left:290.640000pt;}
.x6a_c00231{left:291.600000pt;}
.x4d_c00231{left:294.000000pt;}
.x4a_c00231{left:294.960000pt;}
.x3b_c00231{left:296.400000pt;}
.x43_c00231{left:297.360000pt;}
.x5b_c00231{left:303.840000pt;}
.x12_c00231{left:306.720000pt;}
.x18_c00231{left:307.920000pt;}
.x3c_c00231{left:309.360000pt;}
.x29_c00231{left:311.040000pt;}
.x21_c00231{left:312.240000pt;}
.x78_c00231{left:313.440000pt;}
.x32_c00231{left:314.880000pt;}
.x44_c00231{left:316.080000pt;}
.x61_c00231{left:317.280000pt;}
.x99_c00231{left:318.970731pt;}
.x7f_c00231{left:320.158667pt;}
.x50_c00231{left:321.120000pt;}
.x8a_c00231{left:322.732000pt;}
.xb_c00231{left:326.160000pt;}
.x72_c00231{left:328.080000pt;}
.x79_c00231{left:330.240000pt;}
.x2f_c00231{left:333.360000pt;}
.x51_c00231{left:336.240000pt;}
.x19_c00231{left:337.680000pt;}
.x8b_c00231{left:341.418667pt;}
.x93_c00231{left:343.358667pt;}
.x37_c00231{left:346.320000pt;}
.x2a_c00231{left:347.280000pt;}
.x3d_c00231{left:348.720000pt;}
.x22_c00231{left:349.680000pt;}
.x73_c00231{left:351.600000pt;}
.x4b_c00231{left:355.920000pt;}
.x5c_c00231{left:357.840000pt;}
.x55_c00231{left:358.800000pt;}
.x94_c00231{left:361.600000pt;}
.x6b_c00231{left:362.880000pt;}
.x45_c00231{left:368.160000pt;}
.x6f_c00231{left:369.840000pt;}
.x23_c00231{left:373.200000pt;}
.x56_c00231{left:374.640000pt;}
.x6c_c00231{left:376.800000pt;}
.xc_c00231{left:378.240000pt;}
.x3e_c00231{left:379.200000pt;}
.x3_c00231{left:381.360000pt;}
.x46_c00231{left:382.560000pt;}
.x74_c00231{left:384.000000pt;}
.x67_c00231{left:384.960000pt;}
.x4e_c00231{left:393.600000pt;}
.x24_c00231{left:394.800000pt;}
.x13_c00231{left:395.760000pt;}
.x62_c00231{left:396.720000pt;}
.x30_c00231{left:398.400000pt;}
.x38_c00231{left:404.880000pt;}
.x52_c00231{left:408.240000pt;}
.xd_c00231{left:410.640000pt;}
.x8c_c00231{left:412.221333pt;}
.x47_c00231{left:417.600000pt;}
.x75_c00231{left:420.480000pt;}
.x4_c00231{left:422.640000pt;}
.x40_c00231{left:427.920000pt;}
.x8d_c00231{left:429.021333pt;}
.xe_c00231{left:431.280000pt;}
.x57_c00231{left:434.160000pt;}
.x3f_c00231{left:442.560000pt;}
.x95_c00231{left:445.858667pt;}
.x25_c00231{left:447.120000pt;}
.x2b_c00231{left:449.760000pt;}
.x88_c00231{left:451.815909pt;}
.x58_c00231{left:462.480000pt;}
.xf_c00231{left:464.160000pt;}
.x96_c00231{left:466.754667pt;}
.x76_c00231{left:485.280000pt;}
.x83_c00231{left:486.169333pt;}
.x8e_c00231{left:501.556000pt;}
.x97_c00231{left:506.821333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mcd_c00232{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m6a_c00232{transform:matrix(0.037810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037810,0.000000,0.000000,0.250000,0,0);}
.mdc_c00232{transform:matrix(0.053695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053695,0.000000,0.000000,0.250000,0,0);}
.m62_c00232{transform:matrix(0.059595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059595,0.000000,0.000000,0.250000,0,0);}
.m58_c00232{transform:matrix(0.062015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062015,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);}
.maa_c00232{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);}
.mbd_c00232{transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);}
.m60_c00232{transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);}
.m53_c00232{transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);}
.m56_c00232{transform:matrix(0.120005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120005,0.000000,0.000000,0.250000,0,0);}
.m5b_c00232{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);}
.m4d_c00232{transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);}
.m4e_c00232{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);}
.m5e_c00232{transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);}
.m4f_c00232{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.m50_c00232{transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);}
.mc4_c00232{transform:matrix(0.144310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144310,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.144885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144885,0.000000,0.000000,0.250000,0,0);}
.m85_c00232{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);}
.m2f_c00232{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.146210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146210,0.000000,0.000000,0.250000,0,0);}
.m52_c00232{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);}
.m76_c00232{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);}
.md3_c00232{transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00232{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{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);}
.m27_c00232{transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);}
.mb5_c00232{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);}
.m21_c00232{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);}
.m7c_c00232{transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);}
.mb8_c00232{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);}
.m12_c00232{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);}
.m40_c00232{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);}
.mc0_c00232{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);}
.m6f_c00232{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);}
.ma6_c00232{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);}
.m9e_c00232{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);}
.mde_c00232{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);}
.me6_c00232{transform:matrix(0.159095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159095,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{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);}
.mb0_c00232{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);}
.m5d_c00232{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.m7d_c00232{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);}
.m80_c00232{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);}
.mac_c00232{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);}
.m8d_c00232{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);}
.m70_c00232{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);}
.m95_c00232{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);}
.m83_c00232{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);}
.m36_c00232{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);}
.mcf_c00232{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);}
.ma7_c00232{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);}
.m38_c00232{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);}
.m6c_c00232{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);}
.m9f_c00232{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);}
.mdd_c00232{transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);}
.m99_c00232{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);}
.m11_c00232{transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{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);}
.m57_c00232{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);}
.m20_c00232{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);}
.m8_c00232{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);}
.m73_c00232{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);}
.m31_c00232{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);}
.md1_c00232{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);}
.m68_c00232{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);}
.m26_c00232{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);}
.mb7_c00232{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);}
.ma9_c00232{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);}
.m89_c00232{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);}
.m9_c00232{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_c00232{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);}
.m1b_c00232{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);}
.m9a_c00232{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);}
.m51_c00232{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);}
.m65_c00232{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);}
.m1c_c00232{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);}
.m86_c00232{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);}
.m2b_c00232{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);}
.mc9_c00232{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);}
.m3e_c00232{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);}
.md7_c00232{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);}
.md8_c00232{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);}
.mcb_c00232{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);}
.m1d_c00232{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);}
.m15_c00232{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);}
.mae_c00232{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00232{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);}
.m82_c00232{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);}
.m88_c00232{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);}
.me_c00232{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);}
.m8a_c00232{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);}
.m69_c00232{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);}
.m16_c00232{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);}
.m79_c00232{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);}
.ma3_c00232{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);}
.m71_c00232{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);}
.m97_c00232{transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182930,0.000000,0.000000,0.250000,0,0);}
.mb4_c00232{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);}
.m8f_c00232{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);}
.mc7_c00232{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);}
.md_c00232{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);}
.md9_c00232{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);}
.m77_c00232{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);}
.m1f_c00232{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);}
.mb1_c00232{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);}
.m3_c00232{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);}
.m35_c00232{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m75_c00232{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_c00232{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);}
.m63_c00232{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);}
.m2a_c00232{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);}
.m25_c00232{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);}
.m8b_c00232{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);}
.m30_c00232{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);}
.m64_c00232{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);}
.m90_c00232{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);}
.ma2_c00232{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);}
.mab_c00232{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);}
.m55_c00232{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);}
.m9d_c00232{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);}
.m2d_c00232{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);}
.m42_c00232{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);}
.m19_c00232{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);}
.m14_c00232{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);}
.m37_c00232{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);}
.mf_c00232{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);}
.m47_c00232{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);}
.m29_c00232{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);}
.md0_c00232{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);}
.mb_c00232{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);}
.md2_c00232{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);}
.m48_c00232{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);}
.m78_c00232{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);}
.m3d_c00232{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);}
.m5c_c00232{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);}
.ma4_c00232{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);}
.md4_c00232{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);}
.m81_c00232{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);}
.mbf_c00232{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);}
.m87_c00232{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{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);}
.m6d_c00232{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);}
.m93_c00232{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);}
.m1a_c00232{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);}
.ma8_c00232{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);}
.m46_c00232{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);}
.mb3_c00232{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);}
.mdb_c00232{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);}
.m8c_c00232{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);}
.m18_c00232{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);}
.m59_c00232{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);}
.mb6_c00232{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);}
.m17_c00232{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);}
.me0_c00232{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);}
.mba_c00232{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);}
.m66_c00232{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);}
.me5_c00232{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);}
.mc3_c00232{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);}
.mb2_c00232{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);}
.mb9_c00232{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);}
.mec_c00232{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);}
.m1e_c00232{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);}
.mc5_c00232{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);}
.maf_c00232{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);}
.m7_c00232{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);}
.m32_c00232{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);}
.m41_c00232{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);}
.m6e_c00232{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);}
.me4_c00232{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);}
.mce_c00232{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);}
.m61_c00232{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);}
.m3f_c00232{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);}
.m44_c00232{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);}
.m6b_c00232{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);}
.mc8_c00232{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);}
.mef_c00232{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);}
.m2c_c00232{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);}
.mc1_c00232{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);}
.mbe_c00232{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);}
.m33_c00232{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);}
.m72_c00232{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);}
.m1_c00232{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);}
.m98_c00232{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);}
.m96_c00232{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);}
.mda_c00232{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.me9_c00232{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);}
.mcc_c00232{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);}
.m74_c00232{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);}
.m4_c00232{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.m7e_c00232{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);}
.m4b_c00232{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);}
.m5a_c00232{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);}
.mc2_c00232{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);}
.m4a_c00232{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);}
.mbc_c00232{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);}
.m67_c00232{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_c00232{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);}
.m84_c00232{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);}
.m7b_c00232{transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);}
.m7a_c00232{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);}
.mdf_c00232{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);}
.m28_c00232{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);}
.m13_c00232{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);}
.md5_c00232{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);}
.m3b_c00232{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);}
.me8_c00232{transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);}
.me2_c00232{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);}
.me1_c00232{transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);}
.m8e_c00232{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.me3_c00232{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);}
.m9c_c00232{transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);}
.mad_c00232{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);}
.m92_c00232{transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{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);}
.mbb_c00232{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);}
.m5f_c00232{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);}
.m2e_c00232{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);}
.m45_c00232{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);}
.mea_c00232{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);}
.m3c_c00232{transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{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);}
.m43_c00232{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);}
.m94_c00232{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);}
.ma1_c00232{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.m91_c00232{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.mee_c00232{transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260065,0.000000,0.000000,0.250000,0,0);}
.m54_c00232{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);}
.ma0_c00232{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.meb_c00232{transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);}
.mca_c00232{transform:matrix(0.295400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295400,0.000000,0.000000,0.250000,0,0);}
.ma5_c00232{transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);}
.med_c00232{transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00232{transform:matrix(0.312860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312860,0.000000,0.000000,0.250000,0,0);}
.m7f_c00232{transform:matrix(0.346225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346225,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.421860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421860,0.000000,0.000000,0.250000,0,0);}
.me7_c00232{transform:matrix(0.718200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718200,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;}
.fsf_c00232{font-size:46.200000px;}
.fs11_c00232{font-size:48.300000px;}
.fs12_c00232{font-size:50.400000px;}
.fs10_c00232{font-size:52.500000px;}
.fs13_c00232{font-size:53.550000px;}
.fs8_c00232{font-size:60.900000px;}
.fsd_c00232{font-size:66.150000px;}
.fs7_c00232{font-size:68.250000px;}
.fs3_c00232{font-size:69.300000px;}
.fs1_c00232{font-size:70.350000px;}
.fs5_c00232{font-size:71.400000px;}
.fse_c00232{font-size:72.450000px;}
.fs2_c00232{font-size:74.550000px;}
.fsc_c00232{font-size:75.600000px;}
.fs4_c00232{font-size:76.650000px;}
.fs6_c00232{font-size:79.800000px;}
.fsa_c00232{font-size:85.050000px;}
.fsb_c00232{font-size:87.150000px;}
.fs9_c00232{font-size:96.600000px;}
.fs0_c00232{font-size:122.850000px;}
.y0_c00232{bottom:0.000000px;}
.y1e_c00232{bottom:164.709000px;}
.y1d_c00232{bottom:182.427000px;}
.y1c_c00232{bottom:198.058500px;}
.y1b_c00232{bottom:215.730000px;}
.y1a_c00232{bottom:233.143500px;}
.y19_c00232{bottom:278.640000px;}
.y18_c00232{bottom:301.320000px;}
.y17_c00232{bottom:323.665500px;}
.y16_c00232{bottom:346.410000px;}
.y15_c00232{bottom:369.360000px;}
.y14_c00232{bottom:392.196000px;}
.y13_c00232{bottom:414.222000px;}
.y12_c00232{bottom:436.771500px;}
.y11_c00232{bottom:481.936500px;}
.y10_c00232{bottom:504.981000px;}
.yf_c00232{bottom:526.906500px;}
.ye_c00232{bottom:550.201500px;}
.yd_c00232{bottom:572.458500px;}
.yc_c00232{bottom:594.540000px;}
.yb_c00232{bottom:617.424000px;}
.ya_c00232{bottom:636.054000px;}
.y9_c00232{bottom:662.347500px;}
.y8_c00232{bottom:684.933000px;}
.y7_c00232{bottom:707.470500px;}
.y6_c00232{bottom:730.161000px;}
.y5_c00232{bottom:752.581500px;}
.y4_c00232{bottom:775.206000px;}
.y3_c00232{bottom:798.115500px;}
.y2_c00232{bottom:820.998000px;}
.y1_c00232{bottom:865.627500px;}
.h11_c00232{height:46.200000px;}
.h13_c00232{height:48.300000px;}
.h14_c00232{height:50.400000px;}
.h12_c00232{height:52.500000px;}
.h15_c00232{height:53.550000px;}
.ha_c00232{height:60.900000px;}
.hf_c00232{height:66.150000px;}
.h9_c00232{height:68.250000px;}
.h5_c00232{height:69.300000px;}
.h3_c00232{height:70.350000px;}
.h7_c00232{height:71.400000px;}
.h10_c00232{height:72.450000px;}
.h4_c00232{height:74.550000px;}
.he_c00232{height:75.600000px;}
.h6_c00232{height:76.650000px;}
.h8_c00232{height:79.800000px;}
.hc_c00232{height:85.050000px;}
.hd_c00232{height:87.150000px;}
.hb_c00232{height:96.600000px;}
.h2_c00232{height:122.850000px;}
.h1_c00232{height:1005.000000px;}
.h0_c00232{height:1005.150000px;}
.w1_c00232{width:713.250000px;}
.w0_c00232{width:713.550000px;}
.x0_c00232{left:0.000000px;}
.x3f_c00232{left:89.370000px;}
.x6_c00232{left:98.280000px;}
.x3a_c00232{left:100.170000px;}
.x40_c00232{left:106.380000px;}
.x4f_c00232{left:107.730000px;}
.x7_c00232{left:108.810000px;}
.x47_c00232{left:110.160000px;}
.x41_c00232{left:126.630000px;}
.x4a_c00232{left:131.490000px;}
.x26_c00232{left:132.840000px;}
.x7b_c00232{left:134.730000px;}
.x1e_c00232{left:136.620000px;}
.x63_c00232{left:137.700000px;}
.x6b_c00232{left:143.640000px;}
.x11_c00232{left:146.610000px;}
.x18_c00232{left:147.960000px;}
.x3b_c00232{left:149.040000px;}
.x8a_c00232{left:150.660000px;}
.x1_c00232{left:153.360000px;}
.x7c_c00232{left:154.710000px;}
.x50_c00232{left:156.060000px;}
.x71_c00232{left:157.950000px;}
.x5d_c00232{left:159.300000px;}
.x6f_c00232{left:160.380000px;}
.x8_c00232{left:162.000000px;}
.x67_c00232{left:164.970000px;}
.x32_c00232{left:167.130000px;}
.x42_c00232{left:169.290000px;}
.x1f_c00232{left:173.070000px;}
.x80_c00232{left:174.150000px;}
.x27_c00232{left:175.770000px;}
.x75_c00232{left:180.090000px;}
.x57_c00232{left:181.170000px;}
.x83_c00232{left:183.060000px;}
.x33_c00232{left:184.680000px;}
.x64_c00232{left:186.300000px;}
.x81_c00232{left:190.080000px;}
.x51_c00232{left:191.160000px;}
.x72_c00232{left:192.780000px;}
.x12_c00232{left:194.940000px;}
.x86_c00232{left:196.290000px;}
.x20_c00232{left:197.370000px;}
.x55_c00232{left:202.230000px;}
.x9_c00232{left:203.580000px;}
.x19_c00232{left:204.930000px;}
.x28_c00232{left:207.630000px;}
.x88_c00232{left:210.870000px;}
.x48_c00232{left:213.570000px;}
.x87_c00232{left:214.650000px;}
.x76_c00232{left:216.810000px;}
.x84_c00232{left:218.160000px;}
.xa_c00232{left:223.290000px;}
.x8b_c00232{left:227.070000px;}
.x4b_c00232{left:229.770000px;}
.x68_c00232{left:230.850000px;}
.x52_c00232{left:232.200000px;}
.x21_c00232{left:234.090000px;}
.x37_c00232{left:237.060000px;}
.x85_c00232{left:238.950000px;}
.x5e_c00232{left:241.650000px;}
.x1a_c00232{left:243.270000px;}
.x89_c00232{left:244.890000px;}
.x43_c00232{left:245.970000px;}
.x69_c00232{left:247.050000px;}
.x58_c00232{left:248.940000px;}
.x77_c00232{left:250.560000px;}
.x13_c00232{left:254.880000px;}
.x22_c00232{left:258.120000px;}
.x29_c00232{left:260.550000px;}
.x73_c00232{left:263.250000px;}
.x4c_c00232{left:266.220000px;}
.x59_c00232{left:268.110000px;}
.x6c_c00232{left:270.000000px;}
.x5f_c00232{left:271.350000px;}
.x2d_c00232{left:274.050000px;}
.x14_c00232{left:275.130000px;}
.x3c_c00232{left:278.370000px;}
.x7d_c00232{left:281.340000px;}
.x74_c00232{left:286.470000px;}
.x6d_c00232{left:287.550000px;}
.x78_c00232{left:291.060000px;}
.x65_c00232{left:292.140000px;}
.xb_c00232{left:293.220000px;}
.x2a_c00232{left:298.080000px;}
.x34_c00232{left:300.510000px;}
.x38_c00232{left:301.860000px;}
.x23_c00232{left:303.750000px;}
.x15_c00232{left:304.830000px;}
.x2e_c00232{left:305.910000px;}
.x1b_c00232{left:308.610000px;}
.x56_c00232{left:309.960000px;}
.xc_c00232{left:311.310000px;}
.x2b_c00232{left:318.600000px;}
.x53_c00232{left:320.490000px;}
.x4d_c00232{left:323.190000px;}
.x6e_c00232{left:324.810000px;}
.x60_c00232{left:328.860000px;}
.x5a_c00232{left:329.940000px;}
.xd_c00232{left:331.290000px;}
.x39_c00232{left:335.610000px;}
.x3d_c00232{left:337.500000px;}
.x16_c00232{left:344.790000px;}
.x49_c00232{left:348.300000px;}
.xe_c00232{left:351.000000px;}
.x4e_c00232{left:354.240000px;}
.x5b_c00232{left:355.860000px;}
.x2f_c00232{left:357.480000px;}
.x35_c00232{left:359.100000px;}
.x2_c00232{left:363.150000px;}
.x70_c00232{left:368.010000px;}
.x17_c00232{left:373.140000px;}
.x54_c00232{left:374.220000px;}
.x44_c00232{left:376.110000px;}
.x79_c00232{left:377.460000px;}
.x30_c00232{left:380.160000px;}
.xf_c00232{left:383.940000px;}
.x7e_c00232{left:385.290000px;}
.x2c_c00232{left:386.370000px;}
.x66_c00232{left:387.720000px;}
.x1c_c00232{left:391.770000px;}
.x24_c00232{left:398.790000px;}
.x61_c00232{left:406.080000px;}
.x45_c00232{left:409.050000px;}
.x1d_c00232{left:416.340000px;}
.x31_c00232{left:417.960000px;}
.x10_c00232{left:422.010000px;}
.x36_c00232{left:427.950000px;}
.x3_c00232{left:430.650000px;}
.x46_c00232{left:435.240000px;}
.x6a_c00232{left:437.130000px;}
.x3e_c00232{left:445.770000px;}
.x62_c00232{left:447.120000px;}
.x82_c00232{left:449.010000px;}
.x25_c00232{left:453.060000px;}
.x7a_c00232{left:454.680000px;}
.x5c_c00232{left:459.810000px;}
.x7f_c00232{left:508.140000px;}
.x4_c00232{left:515.430000px;}
.x5_c00232{left:575.100000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fsf_c00232{font-size:41.066667pt;}
.fs11_c00232{font-size:42.933333pt;}
.fs12_c00232{font-size:44.800000pt;}
.fs10_c00232{font-size:46.666667pt;}
.fs13_c00232{font-size:47.600000pt;}
.fs8_c00232{font-size:54.133333pt;}
.fsd_c00232{font-size:58.800000pt;}
.fs7_c00232{font-size:60.666667pt;}
.fs3_c00232{font-size:61.600000pt;}
.fs1_c00232{font-size:62.533333pt;}
.fs5_c00232{font-size:63.466667pt;}
.fse_c00232{font-size:64.400000pt;}
.fs2_c00232{font-size:66.266667pt;}
.fsc_c00232{font-size:67.200000pt;}
.fs4_c00232{font-size:68.133333pt;}
.fs6_c00232{font-size:70.933333pt;}
.fsa_c00232{font-size:75.600000pt;}
.fsb_c00232{font-size:77.466667pt;}
.fs9_c00232{font-size:85.866667pt;}
.fs0_c00232{font-size:109.200000pt;}
.y0_c00232{bottom:0.000000pt;}
.y1e_c00232{bottom:146.408000pt;}
.y1d_c00232{bottom:162.157333pt;}
.y1c_c00232{bottom:176.052000pt;}
.y1b_c00232{bottom:191.760000pt;}
.y1a_c00232{bottom:207.238667pt;}
.y19_c00232{bottom:247.680000pt;}
.y18_c00232{bottom:267.840000pt;}
.y17_c00232{bottom:287.702667pt;}
.y16_c00232{bottom:307.920000pt;}
.y15_c00232{bottom:328.320000pt;}
.y14_c00232{bottom:348.618667pt;}
.y13_c00232{bottom:368.197333pt;}
.y12_c00232{bottom:388.241333pt;}
.y11_c00232{bottom:428.388000pt;}
.y10_c00232{bottom:448.872000pt;}
.yf_c00232{bottom:468.361333pt;}
.ye_c00232{bottom:489.068000pt;}
.yd_c00232{bottom:508.852000pt;}
.yc_c00232{bottom:528.480000pt;}
.yb_c00232{bottom:548.821333pt;}
.ya_c00232{bottom:565.381333pt;}
.y9_c00232{bottom:588.753333pt;}
.y8_c00232{bottom:608.829333pt;}
.y7_c00232{bottom:628.862667pt;}
.y6_c00232{bottom:649.032000pt;}
.y5_c00232{bottom:668.961333pt;}
.y4_c00232{bottom:689.072000pt;}
.y3_c00232{bottom:709.436000pt;}
.y2_c00232{bottom:729.776000pt;}
.y1_c00232{bottom:769.446667pt;}
.h11_c00232{height:41.066667pt;}
.h13_c00232{height:42.933333pt;}
.h14_c00232{height:44.800000pt;}
.h12_c00232{height:46.666667pt;}
.h15_c00232{height:47.600000pt;}
.ha_c00232{height:54.133333pt;}
.hf_c00232{height:58.800000pt;}
.h9_c00232{height:60.666667pt;}
.h5_c00232{height:61.600000pt;}
.h3_c00232{height:62.533333pt;}
.h7_c00232{height:63.466667pt;}
.h10_c00232{height:64.400000pt;}
.h4_c00232{height:66.266667pt;}
.he_c00232{height:67.200000pt;}
.h6_c00232{height:68.133333pt;}
.h8_c00232{height:70.933333pt;}
.hc_c00232{height:75.600000pt;}
.hd_c00232{height:77.466667pt;}
.hb_c00232{height:85.866667pt;}
.h2_c00232{height:109.200000pt;}
.h1_c00232{height:893.333333pt;}
.h0_c00232{height:893.466667pt;}
.w1_c00232{width:634.000000pt;}
.w0_c00232{width:634.266667pt;}
.x0_c00232{left:0.000000pt;}
.x3f_c00232{left:79.440000pt;}
.x6_c00232{left:87.360000pt;}
.x3a_c00232{left:89.040000pt;}
.x40_c00232{left:94.560000pt;}
.x4f_c00232{left:95.760000pt;}
.x7_c00232{left:96.720000pt;}
.x47_c00232{left:97.920000pt;}
.x41_c00232{left:112.560000pt;}
.x4a_c00232{left:116.880000pt;}
.x26_c00232{left:118.080000pt;}
.x7b_c00232{left:119.760000pt;}
.x1e_c00232{left:121.440000pt;}
.x63_c00232{left:122.400000pt;}
.x6b_c00232{left:127.680000pt;}
.x11_c00232{left:130.320000pt;}
.x18_c00232{left:131.520000pt;}
.x3b_c00232{left:132.480000pt;}
.x8a_c00232{left:133.920000pt;}
.x1_c00232{left:136.320000pt;}
.x7c_c00232{left:137.520000pt;}
.x50_c00232{left:138.720000pt;}
.x71_c00232{left:140.400000pt;}
.x5d_c00232{left:141.600000pt;}
.x6f_c00232{left:142.560000pt;}
.x8_c00232{left:144.000000pt;}
.x67_c00232{left:146.640000pt;}
.x32_c00232{left:148.560000pt;}
.x42_c00232{left:150.480000pt;}
.x1f_c00232{left:153.840000pt;}
.x80_c00232{left:154.800000pt;}
.x27_c00232{left:156.240000pt;}
.x75_c00232{left:160.080000pt;}
.x57_c00232{left:161.040000pt;}
.x83_c00232{left:162.720000pt;}
.x33_c00232{left:164.160000pt;}
.x64_c00232{left:165.600000pt;}
.x81_c00232{left:168.960000pt;}
.x51_c00232{left:169.920000pt;}
.x72_c00232{left:171.360000pt;}
.x12_c00232{left:173.280000pt;}
.x86_c00232{left:174.480000pt;}
.x20_c00232{left:175.440000pt;}
.x55_c00232{left:179.760000pt;}
.x9_c00232{left:180.960000pt;}
.x19_c00232{left:182.160000pt;}
.x28_c00232{left:184.560000pt;}
.x88_c00232{left:187.440000pt;}
.x48_c00232{left:189.840000pt;}
.x87_c00232{left:190.800000pt;}
.x76_c00232{left:192.720000pt;}
.x84_c00232{left:193.920000pt;}
.xa_c00232{left:198.480000pt;}
.x8b_c00232{left:201.840000pt;}
.x4b_c00232{left:204.240000pt;}
.x68_c00232{left:205.200000pt;}
.x52_c00232{left:206.400000pt;}
.x21_c00232{left:208.080000pt;}
.x37_c00232{left:210.720000pt;}
.x85_c00232{left:212.400000pt;}
.x5e_c00232{left:214.800000pt;}
.x1a_c00232{left:216.240000pt;}
.x89_c00232{left:217.680000pt;}
.x43_c00232{left:218.640000pt;}
.x69_c00232{left:219.600000pt;}
.x58_c00232{left:221.280000pt;}
.x77_c00232{left:222.720000pt;}
.x13_c00232{left:226.560000pt;}
.x22_c00232{left:229.440000pt;}
.x29_c00232{left:231.600000pt;}
.x73_c00232{left:234.000000pt;}
.x4c_c00232{left:236.640000pt;}
.x59_c00232{left:238.320000pt;}
.x6c_c00232{left:240.000000pt;}
.x5f_c00232{left:241.200000pt;}
.x2d_c00232{left:243.600000pt;}
.x14_c00232{left:244.560000pt;}
.x3c_c00232{left:247.440000pt;}
.x7d_c00232{left:250.080000pt;}
.x74_c00232{left:254.640000pt;}
.x6d_c00232{left:255.600000pt;}
.x78_c00232{left:258.720000pt;}
.x65_c00232{left:259.680000pt;}
.xb_c00232{left:260.640000pt;}
.x2a_c00232{left:264.960000pt;}
.x34_c00232{left:267.120000pt;}
.x38_c00232{left:268.320000pt;}
.x23_c00232{left:270.000000pt;}
.x15_c00232{left:270.960000pt;}
.x2e_c00232{left:271.920000pt;}
.x1b_c00232{left:274.320000pt;}
.x56_c00232{left:275.520000pt;}
.xc_c00232{left:276.720000pt;}
.x2b_c00232{left:283.200000pt;}
.x53_c00232{left:284.880000pt;}
.x4d_c00232{left:287.280000pt;}
.x6e_c00232{left:288.720000pt;}
.x60_c00232{left:292.320000pt;}
.x5a_c00232{left:293.280000pt;}
.xd_c00232{left:294.480000pt;}
.x39_c00232{left:298.320000pt;}
.x3d_c00232{left:300.000000pt;}
.x16_c00232{left:306.480000pt;}
.x49_c00232{left:309.600000pt;}
.xe_c00232{left:312.000000pt;}
.x4e_c00232{left:314.880000pt;}
.x5b_c00232{left:316.320000pt;}
.x2f_c00232{left:317.760000pt;}
.x35_c00232{left:319.200000pt;}
.x2_c00232{left:322.800000pt;}
.x70_c00232{left:327.120000pt;}
.x17_c00232{left:331.680000pt;}
.x54_c00232{left:332.640000pt;}
.x44_c00232{left:334.320000pt;}
.x79_c00232{left:335.520000pt;}
.x30_c00232{left:337.920000pt;}
.xf_c00232{left:341.280000pt;}
.x7e_c00232{left:342.480000pt;}
.x2c_c00232{left:343.440000pt;}
.x66_c00232{left:344.640000pt;}
.x1c_c00232{left:348.240000pt;}
.x24_c00232{left:354.480000pt;}
.x61_c00232{left:360.960000pt;}
.x45_c00232{left:363.600000pt;}
.x1d_c00232{left:370.080000pt;}
.x31_c00232{left:371.520000pt;}
.x10_c00232{left:375.120000pt;}
.x36_c00232{left:380.400000pt;}
.x3_c00232{left:382.800000pt;}
.x46_c00232{left:386.880000pt;}
.x6a_c00232{left:388.560000pt;}
.x3e_c00232{left:396.240000pt;}
.x62_c00232{left:397.440000pt;}
.x82_c00232{left:399.120000pt;}
.x25_c00232{left:402.720000pt;}
.x7a_c00232{left:404.160000pt;}
.x5c_c00232{left:408.720000pt;}
.x7f_c00232{left:451.680000pt;}
.x4_c00232{left:458.160000pt;}
.x5_c00232{left:511.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_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_ef4e99a7aa2876b3106553d3.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;}
.mba_c00233{transform:matrix(0.010550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010550,0.000000,0.000000,0.250000,0,0);}
.m6d_c00233{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);}
.m98_c00233{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);}
.m7b_c00233{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);}
.m64_c00233{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);}
.me0_c00233{transform:matrix(0.045144,0.000316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.045144,0.000316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.045144,0.000316,-0.001750,0.249994,0,0);}
.m5f_c00233{transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);}
.m96_c00233{transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);}
.me7_c00233{transform:matrix(0.117927,0.000825,-0.001750,0.249994,0,0);-ms-transform:matrix(0.117927,0.000825,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.117927,0.000825,-0.001750,0.249994,0,0);}
.m3_c00233{transform:matrix(0.131685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131685,0.000000,0.000000,0.250000,0,0);}
.mf8_c00233{transform:matrix(0.147356,0.001031,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147356,0.001031,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147356,0.001031,-0.001750,0.249994,0,0);}
.m1b_c00233{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);}
.maf_c00233{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);}
.m88_c00233{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);}
.md4_c00233{transform:matrix(0.159556,0.001117,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159556,0.001117,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159556,0.001117,-0.001750,0.249994,0,0);}
.mb4_c00233{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);}
.mf3_c00233{transform:matrix(0.160666,0.001125,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160666,0.001125,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160666,0.001125,-0.001750,0.249994,0,0);}
.m86_c00233{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);}
.m12_c00233{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);}
.m8_c00233{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);}
.m21_c00233{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);}
.m40_c00233{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);}
.m49_c00233{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);}
.m8d_c00233{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);}
.m4d_c00233{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);}
.mf9_c00233{transform:matrix(0.168556,0.001180,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168556,0.001180,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168556,0.001180,-0.001750,0.249994,0,0);}
.mf1_c00233{transform:matrix(0.168841,0.001182,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168841,0.001182,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168841,0.001182,-0.001750,0.249994,0,0);}
.m5d_c00233{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);}
.m50_c00233{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);}
.m24_c00233{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);}
.m4c_c00233{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);}
.mea_c00233{transform:matrix(0.171981,0.001204,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171981,0.001204,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171981,0.001204,-0.001750,0.249994,0,0);}
.m47_c00233{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);}
.mdb_c00233{transform:matrix(0.173696,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173696,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173696,0.001216,-0.001750,0.249994,0,0);}
.m51_c00233{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);}
.md1_c00233{transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);}
.m2f_c00233{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);}
.m4b_c00233{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);}
.ma6_c00233{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{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);}
.maa_c00233{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);}
.md6_c00233{transform:matrix(0.178421,0.001249,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178421,0.001249,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178421,0.001249,-0.001750,0.249994,0,0);}
.me_c00233{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);}
.m22_c00233{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);}
.m54_c00233{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);}
.m3f_c00233{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);}
.m9a_c00233{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);}
.m8e_c00233{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);}
.m18_c00233{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{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);}
.m99_c00233{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);}
.m1f_c00233{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);}
.md_c00233{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);}
.mca_c00233{transform:matrix(0.183596,0.001285,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183596,0.001285,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183596,0.001285,-0.001750,0.249994,0,0);}
.m7a_c00233{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);}
.m9_c00233{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);}
.m2b_c00233{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);}
.m6b_c00233{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);}
.m19_c00233{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);}
.m81_c00233{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);}
.md8_c00233{transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);}
.md5_c00233{transform:matrix(0.188395,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188395,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188395,0.001319,-0.001750,0.249994,0,0);}
.mdc_c00233{transform:matrix(0.188495,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188495,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188495,0.001319,-0.001750,0.249994,0,0);}
.m5c_c00233{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);}
.m67_c00233{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);}
.me8_c00233{transform:matrix(0.188990,0.001323,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188990,0.001323,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188990,0.001323,-0.001750,0.249994,0,0);}
.mf4_c00233{transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189655,0.001328,-0.001750,0.249994,0,0);}
.m8b_c00233{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);}
.m7d_c00233{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);}
.mb9_c00233{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);}
.m13_c00233{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);}
.m60_c00233{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);}
.mf_c00233{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);}
.mec_c00233{transform:matrix(0.192350,0.001346,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192350,0.001346,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192350,0.001346,-0.001750,0.249994,0,0);}
.m6c_c00233{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);}
.m15_c00233{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);}
.m9f_c00233{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);}
.mf2_c00233{transform:matrix(0.192905,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192905,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192905,0.001350,-0.001750,0.249994,0,0);}
.m76_c00233{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);}
.m84_c00233{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);}
.m4e_c00233{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);}
.me5_c00233{transform:matrix(0.194165,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194165,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194165,0.001359,-0.001750,0.249994,0,0);}
.m53_c00233{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);}
.m48_c00233{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);}
.m44_c00233{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);}
.mf5_c00233{transform:matrix(0.197100,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197100,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197100,0.001380,-0.001750,0.249994,0,0);}
.m55_c00233{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);}
.m25_c00233{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);}
.ma5_c00233{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);}
.m8c_c00233{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);}
.mda_c00233{transform:matrix(0.198150,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198150,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198150,0.001387,-0.001750,0.249994,0,0);}
.mb7_c00233{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);}
.m7e_c00233{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);}
.md7_c00233{transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);}
.m29_c00233{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);}
.m8f_c00233{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);}
.m59_c00233{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);}
.mf7_c00233{transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);}
.mad_c00233{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);}
.m8a_c00233{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);}
.m7f_c00233{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);}
.m45_c00233{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);}
.m82_c00233{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);}
.mf6_c00233{transform:matrix(0.202405,0.001417,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202405,0.001417,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202405,0.001417,-0.001750,0.249994,0,0);}
.ma1_c00233{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);}
.m17_c00233{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);}
.m78_c00233{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);}
.m7_c00233{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);}
.m61_c00233{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);}
.ma_c00233{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);}
.m4_c00233{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);}
.m26_c00233{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);}
.m9d_c00233{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);}
.mb3_c00233{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);}
.m32_c00233{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);}
.m6a_c00233{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);}
.mce_c00233{transform:matrix(0.206575,0.001446,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206575,0.001446,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206575,0.001446,-0.001750,0.249994,0,0);}
.m1d_c00233{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);}
.m66_c00233{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);}
.m46_c00233{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);}
.m5_c00233{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);}
.mb5_c00233{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);}
.m28_c00233{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);}
.me9_c00233{transform:matrix(0.211790,0.001483,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211790,0.001483,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211790,0.001483,-0.001750,0.249994,0,0);}
.m30_c00233{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);}
.mb8_c00233{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);}
.md9_c00233{transform:matrix(0.213150,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213150,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213150,0.001492,-0.001750,0.249994,0,0);}
.mb6_c00233{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);}
.m20_c00233{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);}
.mc3_c00233{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);}
.m89_c00233{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);}
.me2_c00233{transform:matrix(0.215545,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215545,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215545,0.001509,-0.001750,0.249994,0,0);}
.m52_c00233{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);}
.mae_c00233{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);}
.mc9_c00233{transform:matrix(0.216370,0.001515,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216370,0.001515,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216370,0.001515,-0.001750,0.249994,0,0);}
.me1_c00233{transform:matrix(0.216950,0.001519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216950,0.001519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216950,0.001519,-0.001750,0.249994,0,0);}
.ma9_c00233{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);}
.mdf_c00233{transform:matrix(0.218395,0.001529,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218395,0.001529,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218395,0.001529,-0.001750,0.249994,0,0);}
.m16_c00233{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);}
.m2e_c00233{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);}
.med_c00233{transform:matrix(0.219325,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219325,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219325,0.001535,-0.001750,0.249994,0,0);}
.m85_c00233{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);}
.m6_c00233{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.m39_c00233{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);}
.m83_c00233{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);}
.m94_c00233{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);}
.m93_c00233{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);}
.mcc_c00233{transform:matrix(0.222305,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222305,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222305,0.001556,-0.001750,0.249994,0,0);}
.m7c_c00233{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);}
.mde_c00233{transform:matrix(0.222925,0.001560,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222925,0.001560,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222925,0.001560,-0.001750,0.249994,0,0);}
.m27_c00233{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);}
.me4_c00233{transform:matrix(0.224609,0.001572,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224609,0.001572,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224609,0.001572,-0.001750,0.249994,0,0);}
.mac_c00233{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);}
.m9b_c00233{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mef_c00233{transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226619,0.001586,-0.001750,0.249994,0,0);}
.mf0_c00233{transform:matrix(0.228349,0.001598,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228349,0.001598,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228349,0.001598,-0.001750,0.249994,0,0);}
.m63_c00233{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);}
.m42_c00233{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);}
.me3_c00233{transform:matrix(0.229569,0.001607,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229569,0.001607,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229569,0.001607,-0.001750,0.249994,0,0);}
.m91_c00233{transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{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);}
.meb_c00233{transform:matrix(0.234044,0.001638,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234044,0.001638,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234044,0.001638,-0.001750,0.249994,0,0);}
.m23_c00233{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);}
.m4a_c00233{transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);}
.ma0_c00233{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m5e_c00233{transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);}
.mbf_c00233{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{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);}
.m36_c00233{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);}
.m9c_c00233{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);}
.mdd_c00233{transform:matrix(0.239994,0.001680,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239994,0.001680,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239994,0.001680,-0.001750,0.249994,0,0);}
.m37_c00233{transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);}
.m4f_c00233{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);}
.m57_c00233{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);}
.mb2_c00233{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);}
.m75_c00233{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);}
.ma4_c00233{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);}
.m87_c00233{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);}
.ma3_c00233{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);}
.mb0_c00233{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00233{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);}
.mcb_c00233{transform:matrix(0.247429,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247429,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247429,0.001732,-0.001750,0.249994,0,0);}
.mb1_c00233{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.mc2_c00233{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);}
.m56_c00233{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m31_c00233{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);}
.m9e_c00233{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m62_c00233{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m65_c00233{transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);}
.m34_c00233{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);}
.m73_c00233{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);}
.mc7_c00233{transform:matrix(0.255389,0.001788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255389,0.001788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255389,0.001788,-0.001750,0.249994,0,0);}
.mc6_c00233{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);}
.m90_c00233{transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);}
.mab_c00233{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);}
.m5a_c00233{transform:matrix(0.260590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260590,0.000000,0.000000,0.250000,0,0);}
.m3b_c00233{transform:matrix(0.261240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261240,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{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);}
.me6_c00233{transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);}
.m3d_c00233{transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);}
.md2_c00233{transform:matrix(0.264084,0.001849,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264084,0.001849,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264084,0.001849,-0.001750,0.249994,0,0);}
.m71_c00233{transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);}
.m69_c00233{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);}
.mc8_c00233{transform:matrix(0.270198,0.001891,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270198,0.001891,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270198,0.001891,-0.001750,0.249994,0,0);}
.mcd_c00233{transform:matrix(0.270558,0.001894,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270558,0.001894,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270558,0.001894,-0.001750,0.249994,0,0);}
.m80_c00233{transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);}
.ma8_c00233{transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);}
.m74_c00233{transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);}
.ma2_c00233{transform:matrix(0.277920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277920,0.000000,0.000000,0.250000,0,0);}
.m3a_c00233{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);}
.m5b_c00233{transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279310,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{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);}
.m33_c00233{transform:matrix(0.285355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285355,0.000000,0.000000,0.250000,0,0);}
.mbd_c00233{transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);}
.mcf_c00233{transform:matrix(0.298318,0.002088,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298318,0.002088,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298318,0.002088,-0.001750,0.249994,0,0);}
.m41_c00233{transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299390,0.000000,0.000000,0.250000,0,0);}
.m3e_c00233{transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);}
.m77_c00233{transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302990,0.000000,0.000000,0.250000,0,0);}
.m58_c00233{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);}
.m3c_c00233{transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304200,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.312130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312130,0.000000,0.000000,0.250000,0,0);}
.mc4_c00233{transform:matrix(0.314265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314265,0.000000,0.000000,0.250000,0,0);}
.mbb_c00233{transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317810,0.000000,0.000000,0.250000,0,0);}
.mc0_c00233{transform:matrix(0.318460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318460,0.000000,0.000000,0.250000,0,0);}
.m92_c00233{transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);}
.m43_c00233{transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329425,0.000000,0.000000,0.250000,0,0);}
.m6e_c00233{transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);}
.m2c_c00233{transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);}
.md3_c00233{transform:matrix(0.337367,0.002362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.337367,0.002362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.337367,0.002362,-0.001750,0.249994,0,0);}
.mbe_c00233{transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);}
.m38_c00233{transform:matrix(0.338130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338130,0.000000,0.000000,0.250000,0,0);}
.m6f_c00233{transform:matrix(0.340865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340865,0.000000,0.000000,0.250000,0,0);}
.mc1_c00233{transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341775,0.000000,0.000000,0.250000,0,0);}
.mee_c00233{transform:matrix(0.352906,0.002470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.352906,0.002470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.352906,0.002470,-0.001750,0.249994,0,0);}
.m35_c00233{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);}
.m1_c00233{transform:matrix(0.360234,0.005404,-0.003750,0.249972,0,0);-ms-transform:matrix(0.360234,0.005404,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.360234,0.005404,-0.003750,0.249972,0,0);}
.m2_c00233{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m70_c00233{transform:matrix(0.375610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375610,0.000000,0.000000,0.250000,0,0);}
.m97_c00233{transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);}
.m79_c00233{transform:matrix(0.427855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427855,0.000000,0.000000,0.250000,0,0);}
.m68_c00233{transform:matrix(0.434520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434520,0.000000,0.000000,0.250000,0,0);}
.mc5_c00233{transform:matrix(0.464585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464585,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.473292,0.007099,-0.003750,0.249972,0,0);-ms-transform:matrix(0.473292,0.007099,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.473292,0.007099,-0.003750,0.249972,0,0);}
.mbc_c00233{transform:matrix(0.493515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493515,0.000000,0.000000,0.250000,0,0);}
.m72_c00233{transform:matrix(0.515920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515920,0.000000,0.000000,0.250000,0,0);}
.m95_c00233{transform:matrix(0.581660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581660,0.000000,0.000000,0.250000,0,0);}
.md0_c00233{transform:matrix(0.760261,0.005322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.760261,0.005322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.760261,0.005322,-0.001750,0.249994,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;}
.fsc_c00233{font-size:51.451261px;}
.fsd_c00233{font-size:52.501286px;}
.fsa_c00233{font-size:60.900000px;}
.fs3_c00233{font-size:61.950000px;}
.fs5_c00233{font-size:64.050000px;}
.fs8_c00233{font-size:65.100000px;}
.fs6_c00233{font-size:66.150000px;}
.fs4_c00233{font-size:67.200000px;}
.fs9_c00233{font-size:69.300000px;}
.fs1_c00233{font-size:70.350000px;}
.fs2_c00233{font-size:71.400000px;}
.fs7_c00233{font-size:72.450000px;}
.fsb_c00233{font-size:73.500000px;}
.fs0_c00233{font-size:201.622679px;}
.y0_c00233{bottom:0.000000px;}
.y49_c00233{bottom:161.906600px;}
.y4e_c00233{bottom:161.906631px;}
.y48_c00233{bottom:161.906779px;}
.y4c_c00233{bottom:161.906950px;}
.y4d_c00233{bottom:161.907111px;}
.y4a_c00233{bottom:161.907150px;}
.y4b_c00233{bottom:161.907220px;}
.y3f_c00233{bottom:179.861712px;}
.y3e_c00233{bottom:179.861942px;}
.y40_c00233{bottom:179.862102px;}
.y41_c00233{bottom:179.862623px;}
.y42_c00233{bottom:179.862983px;}
.y43_c00233{bottom:179.863473px;}
.y44_c00233{bottom:179.863964px;}
.y45_c00233{bottom:179.864684px;}
.y47_c00233{bottom:179.864814px;}
.y46_c00233{bottom:179.865264px;}
.y3d_c00233{bottom:197.022866px;}
.y3c_c00233{bottom:197.023245px;}
.y34_c00233{bottom:197.023293px;}
.y2e_c00233{bottom:197.023512px;}
.y35_c00233{bottom:197.023604px;}
.y36_c00233{bottom:197.023694px;}
.y3b_c00233{bottom:197.023925px;}
.y3a_c00233{bottom:197.024004px;}
.y37_c00233{bottom:197.024024px;}
.y33_c00233{bottom:197.024043px;}
.y2f_c00233{bottom:197.024202px;}
.y39_c00233{bottom:197.024383px;}
.y30_c00233{bottom:197.024452px;}
.y32_c00233{bottom:197.024483px;}
.y31_c00233{bottom:197.024662px;}
.y38_c00233{bottom:197.024743px;}
.y2d_c00233{bottom:213.194802px;}
.y2c_c00233{bottom:213.365007px;}
.y2b_c00233{bottom:213.480192px;}
.y2a_c00233{bottom:213.559698px;}
.y29_c00233{bottom:213.618414px;}
.y28_c00233{bottom:213.765708px;}
.y27_c00233{bottom:213.873501px;}
.y26_c00233{bottom:214.248435px;}
.y25_c00233{bottom:214.686905px;}
.y24_c00233{bottom:214.907331px;}
.y23_c00233{bottom:215.043527px;}
.y22_c00233{bottom:215.481744px;}
.y21_c00233{bottom:215.627547px;}
.y20_c00233{bottom:215.787892px;}
.y1f_c00233{bottom:215.963726px;}
.y1e_c00233{bottom:216.111209px;}
.y1d_c00233{bottom:216.270000px;}
.y1c_c00233{bottom:261.609000px;}
.y1b_c00233{bottom:284.553000px;}
.y1a_c00233{bottom:308.554500px;}
.y19_c00233{bottom:331.431000px;}
.y18_c00233{bottom:354.276000px;}
.y17_c00233{bottom:376.509000px;}
.y16_c00233{bottom:398.967000px;}
.y15_c00233{bottom:421.935000px;}
.y14_c00233{bottom:444.888000px;}
.y13_c00233{bottom:467.037000px;}
.y12_c00233{bottom:490.050000px;}
.y11_c00233{bottom:512.859000px;}
.y10_c00233{bottom:535.614000px;}
.yf_c00233{bottom:558.744000px;}
.ye_c00233{bottom:580.993500px;}
.yd_c00233{bottom:603.516000px;}
.yc_c00233{bottom:625.818000px;}
.yb_c00233{bottom:648.682500px;}
.ya_c00233{bottom:671.620500px;}
.y9_c00233{bottom:694.236000px;}
.y8_c00233{bottom:716.547000px;}
.y7_c00233{bottom:739.320000px;}
.y6_c00233{bottom:761.733000px;}
.y5_c00233{bottom:784.156500px;}
.y4_c00233{bottom:806.787000px;}
.y3_c00233{bottom:828.540000px;}
.y2_c00233{bottom:908.507933px;}
.y1_c00233{bottom:913.147500px;}
.he_c00233{height:51.451261px;}
.hf_c00233{height:52.501286px;}
.hc_c00233{height:60.900000px;}
.h5_c00233{height:61.950000px;}
.h7_c00233{height:64.050000px;}
.ha_c00233{height:65.100000px;}
.h8_c00233{height:66.150000px;}
.h6_c00233{height:67.200000px;}
.hb_c00233{height:69.300000px;}
.h3_c00233{height:70.350000px;}
.h4_c00233{height:71.400000px;}
.h9_c00233{height:72.450000px;}
.hd_c00233{height:73.500000px;}
.h2_c00233{height:201.622679px;}
.h0_c00233{height:1008.450000px;}
.h1_c00233{height:1008.750000px;}
.w0_c00233{width:678.450000px;}
.w1_c00233{width:678.750000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:71.862000px;}
.x89_c00233{left:127.168176px;}
.x7f_c00233{left:139.519500px;}
.x8a_c00233{left:148.499226px;}
.x7a_c00233{left:154.170000px;}
.x72_c00233{left:157.680000px;}
.x4e_c00233{left:159.570000px;}
.x70_c00233{left:160.650000px;}
.x2a_c00233{left:161.730000px;}
.x24_c00233{left:163.350000px;}
.x5_c00233{left:164.970000px;}
.x93_c00233{left:171.450219px;}
.x80_c00233{left:183.273000px;}
.x3e_c00233{left:184.680000px;}
.x73_c00233{left:186.300000px;}
.x37_c00233{left:190.080000px;}
.xd_c00233{left:194.400000px;}
.x16_c00233{left:196.560000px;}
.x61_c00233{left:197.640000px;}
.x6c_c00233{left:199.260000px;}
.x8b_c00233{left:201.150309px;}
.x4f_c00233{left:202.500000px;}
.x2e_c00233{left:204.120000px;}
.x6_c00233{left:206.010000px;}
.x81_c00233{left:208.392000px;}
.x44_c00233{left:209.790000px;}
.x4a_c00233{left:211.410000px;}
.x1f_c00233{left:219.510000px;}
.x94_c00233{left:222.751239px;}
.x53_c00233{left:224.100000px;}
.x3f_c00233{left:225.450000px;}
.x17_c00233{left:226.530000px;}
.x4b_c00233{left:230.310000px;}
.x8c_c00233{left:231.391789px;}
.x2f_c00233{left:238.950000px;}
.x4c_c00233{left:243.270000px;}
.x20_c00233{left:247.590000px;}
.x64_c00233{left:248.670000px;}
.x7_c00233{left:250.830000px;}
.x82_c00233{left:252.127500px;}
.x96_c00233{left:254.613118px;}
.x57_c00233{left:255.960000px;}
.x40_c00233{left:257.850000px;}
.x30_c00233{left:259.200000px;}
.x6d_c00233{left:260.820000px;}
.xe_c00233{left:262.710000px;}
.x38_c00233{left:264.600000px;}
.x25_c00233{left:265.950000px;}
.x18_c00233{left:267.570000px;}
.x71_c00233{left:268.920000px;}
.x62_c00233{left:271.080000px;}
.x8d_c00233{left:273.242337px;}
.x65_c00233{left:276.480000px;}
.x76_c00233{left:277.560000px;}
.x97_c00233{left:279.724347px;}
.x7b_c00233{left:284.040000px;}
.xf_c00233{left:285.660000px;}
.x21_c00233{left:287.010000px;}
.x8_c00233{left:289.170000px;}
.x39_c00233{left:294.300000px;}
.x3_c00233{left:296.730000px;}
.x45_c00233{left:301.050000px;}
.x50_c00233{left:304.020000px;}
.x54_c00233{left:311.850000px;}
.x2b_c00233{left:313.470000px;}
.x3a_c00233{left:314.820000px;}
.x10_c00233{left:318.600000px;}
.x26_c00233{left:322.110000px;}
.x58_c00233{left:325.080000px;}
.x41_c00233{left:327.780000px;}
.x5f_c00233{left:329.400000px;}
.x66_c00233{left:331.290000px;}
.x98_c00233{left:332.915451px;}
.x83_c00233{left:334.186500px;}
.x68_c00233{left:335.610000px;}
.x31_c00233{left:336.960000px;}
.x19_c00233{left:341.010000px;}
.x8e_c00233{left:342.094207px;}
.x59_c00233{left:346.410000px;}
.x3b_c00233{left:347.490000px;}
.x60_c00233{left:353.160000px;}
.x32_c00233{left:354.780000px;}
.x9_c00233{left:357.750000px;}
.x55_c00233{left:360.450000px;}
.x6e_c00233{left:364.500000px;}
.x1a_c00233{left:366.120000px;}
.x22_c00233{left:369.630000px;}
.x77_c00233{left:370.980000px;}
.x5a_c00233{left:373.950000px;}
.x8f_c00233{left:375.035824px;}
.x67_c00233{left:378.270000px;}
.x51_c00233{left:379.350000px;}
.x2_c00233{left:381.166500px;}
.x11_c00233{left:386.640000px;}
.x33_c00233{left:389.340000px;}
.x27_c00233{left:393.930000px;}
.x1b_c00233{left:395.820000px;}
.x7c_c00233{left:399.060000px;}
.x46_c00233{left:400.950000px;}
.x12_c00233{left:402.840000px;}
.x6f_c00233{left:405.000000px;}
.xa_c00233{left:406.620000px;}
.x34_c00233{left:408.510000px;}
.x28_c00233{left:411.480000px;}
.x5b_c00233{left:412.560000px;}
.x1c_c00233{left:413.640000px;}
.x47_c00233{left:416.070000px;}
.x5c_c00233{left:417.150000px;}
.x42_c00233{left:418.230000px;}
.x4_c00233{left:420.120000px;}
.x69_c00233{left:422.010000px;}
.x52_c00233{left:425.520000px;}
.x95_c00233{left:426.876756px;}
.x3c_c00233{left:429.300000px;}
.xb_c00233{left:430.380000px;}
.x78_c00233{left:434.430000px;}
.x43_c00233{left:439.830000px;}
.x63_c00233{left:440.910000px;}
.x48_c00233{left:441.990000px;}
.x2c_c00233{left:445.500000px;}
.x29_c00233{left:448.200000px;}
.x1d_c00233{left:451.170000px;}
.x74_c00233{left:458.730000px;}
.xc_c00233{left:459.810000px;}
.x79_c00233{left:462.780000px;}
.x13_c00233{left:467.100000px;}
.x5d_c00233{left:468.990000px;}
.x4d_c00233{left:470.070000px;}
.x1e_c00233{left:475.740000px;}
.x23_c00233{left:478.440000px;}
.x56_c00233{left:480.600000px;}
.x84_c00233{left:481.876500px;}
.x3d_c00233{left:485.190000px;}
.x2d_c00233{left:487.890000px;}
.x14_c00233{left:489.240000px;}
.x35_c00233{left:493.020000px;}
.x49_c00233{left:494.100000px;}
.x6a_c00233{left:496.800000px;}
.x5e_c00233{left:500.850000px;}
.x36_c00233{left:510.300000px;}
.x7d_c00233{left:517.860000px;}
.x7e_c00233{left:520.020000px;}
.x6b_c00233{left:523.530000px;}
.x90_c00233{left:525.700206px;}
.x85_c00233{left:526.705500px;}
.x15_c00233{left:529.470000px;}
.x86_c00233{left:538.063500px;}
.x75_c00233{left:541.890000px;}
.x87_c00233{left:554.518500px;}
.x91_c00233{left:558.370302px;}
.x88_c00233{left:578.833500px;}
.x92_c00233{left:599.140797px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws0_c00233{word-spacing:0.000000pt;}
.fsc_c00233{font-size:45.734454pt;}
.fsd_c00233{font-size:46.667810pt;}
.fsa_c00233{font-size:54.133333pt;}
.fs3_c00233{font-size:55.066667pt;}
.fs5_c00233{font-size:56.933333pt;}
.fs8_c00233{font-size:57.866667pt;}
.fs6_c00233{font-size:58.800000pt;}
.fs4_c00233{font-size:59.733333pt;}
.fs9_c00233{font-size:61.600000pt;}
.fs1_c00233{font-size:62.533333pt;}
.fs2_c00233{font-size:63.466667pt;}
.fs7_c00233{font-size:64.400000pt;}
.fsb_c00233{font-size:65.333333pt;}
.fs0_c00233{font-size:179.220159pt;}
.y0_c00233{bottom:0.000000pt;}
.y49_c00233{bottom:143.916977pt;}
.y4e_c00233{bottom:143.917005pt;}
.y48_c00233{bottom:143.917137pt;}
.y4c_c00233{bottom:143.917289pt;}
.y4d_c00233{bottom:143.917432pt;}
.y4a_c00233{bottom:143.917467pt;}
.y4b_c00233{bottom:143.917529pt;}
.y3f_c00233{bottom:159.877077pt;}
.y3e_c00233{bottom:159.877281pt;}
.y40_c00233{bottom:159.877424pt;}
.y41_c00233{bottom:159.877887pt;}
.y42_c00233{bottom:159.878207pt;}
.y43_c00233{bottom:159.878643pt;}
.y44_c00233{bottom:159.879079pt;}
.y45_c00233{bottom:159.879719pt;}
.y47_c00233{bottom:159.879835pt;}
.y46_c00233{bottom:159.880235pt;}
.y3d_c00233{bottom:175.131436pt;}
.y3c_c00233{bottom:175.131773pt;}
.y34_c00233{bottom:175.131816pt;}
.y2e_c00233{bottom:175.132011pt;}
.y35_c00233{bottom:175.132092pt;}
.y36_c00233{bottom:175.132172pt;}
.y3b_c00233{bottom:175.132377pt;}
.y3a_c00233{bottom:175.132448pt;}
.y37_c00233{bottom:175.132465pt;}
.y33_c00233{bottom:175.132483pt;}
.y2f_c00233{bottom:175.132624pt;}
.y39_c00233{bottom:175.132785pt;}
.y30_c00233{bottom:175.132847pt;}
.y32_c00233{bottom:175.132873pt;}
.y31_c00233{bottom:175.133033pt;}
.y38_c00233{bottom:175.133105pt;}
.y2d_c00233{bottom:189.506491pt;}
.y2c_c00233{bottom:189.657784pt;}
.y2b_c00233{bottom:189.760171pt;}
.y2a_c00233{bottom:189.830843pt;}
.y29_c00233{bottom:189.883035pt;}
.y28_c00233{bottom:190.013963pt;}
.y27_c00233{bottom:190.109779pt;}
.y26_c00233{bottom:190.443053pt;}
.y25_c00233{bottom:190.832804pt;}
.y24_c00233{bottom:191.028739pt;}
.y23_c00233{bottom:191.149801pt;}
.y22_c00233{bottom:191.539328pt;}
.y21_c00233{bottom:191.668931pt;}
.y20_c00233{bottom:191.811460pt;}
.y1f_c00233{bottom:191.967756pt;}
.y1e_c00233{bottom:192.098852pt;}
.y1d_c00233{bottom:192.240000pt;}
.y1c_c00233{bottom:232.541333pt;}
.y1b_c00233{bottom:252.936000pt;}
.y1a_c00233{bottom:274.270667pt;}
.y19_c00233{bottom:294.605333pt;}
.y18_c00233{bottom:314.912000pt;}
.y17_c00233{bottom:334.674667pt;}
.y16_c00233{bottom:354.637333pt;}
.y15_c00233{bottom:375.053333pt;}
.y14_c00233{bottom:395.456000pt;}
.y13_c00233{bottom:415.144000pt;}
.y12_c00233{bottom:435.600000pt;}
.y11_c00233{bottom:455.874667pt;}
.y10_c00233{bottom:476.101333pt;}
.yf_c00233{bottom:496.661333pt;}
.ye_c00233{bottom:516.438667pt;}
.yd_c00233{bottom:536.458667pt;}
.yc_c00233{bottom:556.282667pt;}
.yb_c00233{bottom:576.606667pt;}
.ya_c00233{bottom:596.996000pt;}
.y9_c00233{bottom:617.098667pt;}
.y8_c00233{bottom:636.930667pt;}
.y7_c00233{bottom:657.173333pt;}
.y6_c00233{bottom:677.096000pt;}
.y5_c00233{bottom:697.028000pt;}
.y4_c00233{bottom:717.144000pt;}
.y3_c00233{bottom:736.480000pt;}
.y2_c00233{bottom:807.562607pt;}
.y1_c00233{bottom:811.686667pt;}
.he_c00233{height:45.734454pt;}
.hf_c00233{height:46.667810pt;}
.hc_c00233{height:54.133333pt;}
.h5_c00233{height:55.066667pt;}
.h7_c00233{height:56.933333pt;}
.ha_c00233{height:57.866667pt;}
.h8_c00233{height:58.800000pt;}
.h6_c00233{height:59.733333pt;}
.hb_c00233{height:61.600000pt;}
.h3_c00233{height:62.533333pt;}
.h4_c00233{height:63.466667pt;}
.h9_c00233{height:64.400000pt;}
.hd_c00233{height:65.333333pt;}
.h2_c00233{height:179.220159pt;}
.h0_c00233{height:896.400000pt;}
.h1_c00233{height:896.666667pt;}
.w0_c00233{width:603.066667pt;}
.w1_c00233{width:603.333333pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:63.877333pt;}
.x89_c00233{left:113.038379pt;}
.x7f_c00233{left:124.017333pt;}
.x8a_c00233{left:131.999312pt;}
.x7a_c00233{left:137.040000pt;}
.x72_c00233{left:140.160000pt;}
.x4e_c00233{left:141.840000pt;}
.x70_c00233{left:142.800000pt;}
.x2a_c00233{left:143.760000pt;}
.x24_c00233{left:145.200000pt;}
.x5_c00233{left:146.640000pt;}
.x93_c00233{left:152.400195pt;}
.x80_c00233{left:162.909333pt;}
.x3e_c00233{left:164.160000pt;}
.x73_c00233{left:165.600000pt;}
.x37_c00233{left:168.960000pt;}
.xd_c00233{left:172.800000pt;}
.x16_c00233{left:174.720000pt;}
.x61_c00233{left:175.680000pt;}
.x6c_c00233{left:177.120000pt;}
.x8b_c00233{left:178.800275pt;}
.x4f_c00233{left:180.000000pt;}
.x2e_c00233{left:181.440000pt;}
.x6_c00233{left:183.120000pt;}
.x81_c00233{left:185.237333pt;}
.x44_c00233{left:186.480000pt;}
.x4a_c00233{left:187.920000pt;}
.x1f_c00233{left:195.120000pt;}
.x94_c00233{left:198.001101pt;}
.x53_c00233{left:199.200000pt;}
.x3f_c00233{left:200.400000pt;}
.x17_c00233{left:201.360000pt;}
.x4b_c00233{left:204.720000pt;}
.x8c_c00233{left:205.681591pt;}
.x2f_c00233{left:212.400000pt;}
.x4c_c00233{left:216.240000pt;}
.x20_c00233{left:220.080000pt;}
.x64_c00233{left:221.040000pt;}
.x7_c00233{left:222.960000pt;}
.x82_c00233{left:224.113333pt;}
.x96_c00233{left:226.322772pt;}
.x57_c00233{left:227.520000pt;}
.x40_c00233{left:229.200000pt;}
.x30_c00233{left:230.400000pt;}
.x6d_c00233{left:231.840000pt;}
.xe_c00233{left:233.520000pt;}
.x38_c00233{left:235.200000pt;}
.x25_c00233{left:236.400000pt;}
.x18_c00233{left:237.840000pt;}
.x71_c00233{left:239.040000pt;}
.x62_c00233{left:240.960000pt;}
.x8d_c00233{left:242.882077pt;}
.x65_c00233{left:245.760000pt;}
.x76_c00233{left:246.720000pt;}
.x97_c00233{left:248.643864pt;}
.x7b_c00233{left:252.480000pt;}
.xf_c00233{left:253.920000pt;}
.x21_c00233{left:255.120000pt;}
.x8_c00233{left:257.040000pt;}
.x39_c00233{left:261.600000pt;}
.x3_c00233{left:263.760000pt;}
.x45_c00233{left:267.600000pt;}
.x50_c00233{left:270.240000pt;}
.x54_c00233{left:277.200000pt;}
.x2b_c00233{left:278.640000pt;}
.x3a_c00233{left:279.840000pt;}
.x10_c00233{left:283.200000pt;}
.x26_c00233{left:286.320000pt;}
.x58_c00233{left:288.960000pt;}
.x41_c00233{left:291.360000pt;}
.x5f_c00233{left:292.800000pt;}
.x66_c00233{left:294.480000pt;}
.x98_c00233{left:295.924845pt;}
.x83_c00233{left:297.054667pt;}
.x68_c00233{left:298.320000pt;}
.x31_c00233{left:299.520000pt;}
.x19_c00233{left:303.120000pt;}
.x8e_c00233{left:304.083740pt;}
.x59_c00233{left:307.920000pt;}
.x3b_c00233{left:308.880000pt;}
.x60_c00233{left:313.920000pt;}
.x32_c00233{left:315.360000pt;}
.x9_c00233{left:318.000000pt;}
.x55_c00233{left:320.400000pt;}
.x6e_c00233{left:324.000000pt;}
.x1a_c00233{left:325.440000pt;}
.x22_c00233{left:328.560000pt;}
.x77_c00233{left:329.760000pt;}
.x5a_c00233{left:332.400000pt;}
.x8f_c00233{left:333.365177pt;}
.x67_c00233{left:336.240000pt;}
.x51_c00233{left:337.200000pt;}
.x2_c00233{left:338.814667pt;}
.x11_c00233{left:343.680000pt;}
.x33_c00233{left:346.080000pt;}
.x27_c00233{left:350.160000pt;}
.x1b_c00233{left:351.840000pt;}
.x7c_c00233{left:354.720000pt;}
.x46_c00233{left:356.400000pt;}
.x12_c00233{left:358.080000pt;}
.x6f_c00233{left:360.000000pt;}
.xa_c00233{left:361.440000pt;}
.x34_c00233{left:363.120000pt;}
.x28_c00233{left:365.760000pt;}
.x5b_c00233{left:366.720000pt;}
.x1c_c00233{left:367.680000pt;}
.x47_c00233{left:369.840000pt;}
.x5c_c00233{left:370.800000pt;}
.x42_c00233{left:371.760000pt;}
.x4_c00233{left:373.440000pt;}
.x69_c00233{left:375.120000pt;}
.x52_c00233{left:378.240000pt;}
.x95_c00233{left:379.446005pt;}
.x3c_c00233{left:381.600000pt;}
.xb_c00233{left:382.560000pt;}
.x78_c00233{left:386.160000pt;}
.x43_c00233{left:390.960000pt;}
.x63_c00233{left:391.920000pt;}
.x48_c00233{left:392.880000pt;}
.x2c_c00233{left:396.000000pt;}
.x29_c00233{left:398.400000pt;}
.x1d_c00233{left:401.040000pt;}
.x74_c00233{left:407.760000pt;}
.xc_c00233{left:408.720000pt;}
.x79_c00233{left:411.360000pt;}
.x13_c00233{left:415.200000pt;}
.x5d_c00233{left:416.880000pt;}
.x4d_c00233{left:417.840000pt;}
.x1e_c00233{left:422.880000pt;}
.x23_c00233{left:425.280000pt;}
.x56_c00233{left:427.200000pt;}
.x84_c00233{left:428.334667pt;}
.x3d_c00233{left:431.280000pt;}
.x2d_c00233{left:433.680000pt;}
.x14_c00233{left:434.880000pt;}
.x35_c00233{left:438.240000pt;}
.x49_c00233{left:439.200000pt;}
.x6a_c00233{left:441.600000pt;}
.x5e_c00233{left:445.200000pt;}
.x36_c00233{left:453.600000pt;}
.x7d_c00233{left:460.320000pt;}
.x7e_c00233{left:462.240000pt;}
.x6b_c00233{left:465.360000pt;}
.x90_c00233{left:467.289072pt;}
.x85_c00233{left:468.182667pt;}
.x15_c00233{left:470.640000pt;}
.x86_c00233{left:478.278667pt;}
.x75_c00233{left:481.680000pt;}
.x87_c00233{left:492.905333pt;}
.x91_c00233{left:496.329157pt;}
.x88_c00233{left:514.518667pt;}
.x92_c00233{left:532.569597pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00234 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00234 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00234 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00234 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m2_c00235{transform:matrix(0.009015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{transform:matrix(0.010539,0.000169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.010539,0.000169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.010539,0.000169,-0.003999,0.249968,0,0);}
.m7_c00235{transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);}
.m88_c00235{transform:matrix(0.082643,0.001074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.082643,0.001074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.082643,0.001074,-0.003250,0.249979,0,0);}
.m4b_c00235{transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.113915,0.001823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.113915,0.001823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.113915,0.001823,-0.003999,0.249968,0,0);}
.m16_c00235{transform:matrix(0.123224,0.001972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.123224,0.001972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.123224,0.001972,-0.003999,0.249968,0,0);}
.mb_c00235{transform:matrix(0.140185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140185,0.000000,0.000000,0.250000,0,0);}
.mc9_c00235{transform:matrix(0.150493,0.002257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150493,0.002257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150493,0.002257,-0.003750,0.249972,0,0);}
.m79_c00235{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);}
.mbc_c00235{transform:matrix(0.154933,0.002324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154933,0.002324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154933,0.002324,-0.003750,0.249972,0,0);}
.m91_c00235{transform:matrix(0.156769,0.001881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156769,0.001881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156769,0.001881,-0.003000,0.249982,0,0);}
.mbe_c00235{transform:matrix(0.159387,0.002391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159387,0.002391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159387,0.002391,-0.003750,0.249972,0,0);}
.m27_c00235{transform:matrix(0.160075,0.002561,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160075,0.002561,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160075,0.002561,-0.003999,0.249968,0,0);}
.m38_c00235{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);}
.m50_c00235{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);}
.m24_c00235{transform:matrix(0.161269,0.002580,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161269,0.002580,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161269,0.002580,-0.003999,0.249968,0,0);}
.m26_c00235{transform:matrix(0.163224,0.002612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163224,0.002612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163224,0.002612,-0.003999,0.249968,0,0);}
.m9e_c00235{transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163971,0.002132,-0.003250,0.249979,0,0);}
.m14_c00235{transform:matrix(0.164614,0.002634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164614,0.002634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164614,0.002634,-0.003999,0.249968,0,0);}
.md_c00235{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.mb4_c00235{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);}
.m3c_c00235{transform:matrix(0.167554,0.002681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167554,0.002681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167554,0.002681,-0.003999,0.249968,0,0);}
.mbb_c00235{transform:matrix(0.168431,0.002526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168431,0.002526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168431,0.002526,-0.003750,0.249972,0,0);}
.m36_c00235{transform:matrix(0.169303,0.002709,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169303,0.002709,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169303,0.002709,-0.003999,0.249968,0,0);}
.me_c00235{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);}
.m7b_c00235{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);}
.m22_c00235{transform:matrix(0.171013,0.002736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171013,0.002736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171013,0.002736,-0.003999,0.249968,0,0);}
.m7e_c00235{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);}
.md1_c00235{transform:matrix(0.172296,0.002584,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172296,0.002584,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172296,0.002584,-0.003750,0.249972,0,0);}
.mc_c00235{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);}
.m6e_c00235{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);}
.m4e_c00235{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);}
.m25_c00235{transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175698,0.002811,-0.003999,0.249968,0,0);}
.m2e_c00235{transform:matrix(0.177157,0.002835,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177157,0.002835,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177157,0.002835,-0.003999,0.249968,0,0);}
.mbd_c00235{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);}
.m1b_c00235{transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);}
.m43_c00235{transform:matrix(0.178477,0.002856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178477,0.002856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178477,0.002856,-0.003999,0.249968,0,0);}
.mbf_c00235{transform:matrix(0.178975,0.002685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178975,0.002685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178975,0.002685,-0.003750,0.249972,0,0);}
.m85_c00235{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);}
.m40_c00235{transform:matrix(0.179477,0.002872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179477,0.002872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179477,0.002872,-0.003999,0.249968,0,0);}
.m97_c00235{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);}
.ma_c00235{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);}
.mc3_c00235{transform:matrix(0.180870,0.002713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180870,0.002713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180870,0.002713,-0.003750,0.249972,0,0);}
.m9b_c00235{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);}
.m2d_c00235{transform:matrix(0.182307,0.002917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182307,0.002917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182307,0.002917,-0.003999,0.249968,0,0);}
.m8b_c00235{transform:matrix(0.184369,0.002397,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184369,0.002397,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184369,0.002397,-0.003250,0.249979,0,0);}
.m31_c00235{transform:matrix(0.184496,0.002952,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184496,0.002952,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184496,0.002952,-0.003999,0.249968,0,0);}
.m4c_c00235{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);}
.m15_c00235{transform:matrix(0.184896,0.002958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184896,0.002958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184896,0.002958,-0.003999,0.249968,0,0);}
.ma1_c00235{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);}
.m28_c00235{transform:matrix(0.186101,0.002978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186101,0.002978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186101,0.002978,-0.003999,0.249968,0,0);}
.m78_c00235{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.mb9_c00235{transform:matrix(0.186149,0.002792,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186149,0.002792,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186149,0.002792,-0.003750,0.249972,0,0);}
.m8f_c00235{transform:matrix(0.186182,0.002234,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186182,0.002234,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186182,0.002234,-0.003000,0.249982,0,0);}
.m70_c00235{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);}
.mc7_c00235{transform:matrix(0.186344,0.002795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186344,0.002795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186344,0.002795,-0.003750,0.249972,0,0);}
.m66_c00235{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);}
.m76_c00235{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);}
.m23_c00235{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);}
.m33_c00235{transform:matrix(0.187936,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187936,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187936,0.003007,-0.003999,0.249968,0,0);}
.m37_c00235{transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188156,0.003010,-0.003999,0.249968,0,0);}
.m6b_c00235{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m54_c00235{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);}
.m93_c00235{transform:matrix(0.188681,0.002264,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188681,0.002264,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188681,0.002264,-0.003000,0.249982,0,0);}
.mc6_c00235{transform:matrix(0.188869,0.002833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188869,0.002833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188869,0.002833,-0.003750,0.249972,0,0);}
.mcc_c00235{transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189869,0.002848,-0.003750,0.249972,0,0);}
.m7f_c00235{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);}
.m8d_c00235{transform:matrix(0.190611,0.002287,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190611,0.002287,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190611,0.002287,-0.003000,0.249982,0,0);}
.ma5_c00235{transform:matrix(0.190659,0.002479,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190659,0.002479,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190659,0.002479,-0.003250,0.249979,0,0);}
.m2c_c00235{transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);}
.m94_c00235{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);}
.m57_c00235{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);}
.m1d_c00235{transform:matrix(0.191925,0.003071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191925,0.003071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191925,0.003071,-0.003999,0.249968,0,0);}
.m52_c00235{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);}
.m7a_c00235{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);}
.m51_c00235{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);}
.m7c_c00235{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);}
.m4d_c00235{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);}
.m71_c00235{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);}
.m17_c00235{transform:matrix(0.196435,0.003143,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196435,0.003143,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196435,0.003143,-0.003999,0.249968,0,0);}
.m42_c00235{transform:matrix(0.196545,0.003145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196545,0.003145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196545,0.003145,-0.003999,0.249968,0,0);}
.m67_c00235{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);}
.mba_c00235{transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);}
.m41_c00235{transform:matrix(0.197400,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197400,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197400,0.003158,-0.003999,0.249968,0,0);}
.m1a_c00235{transform:matrix(0.197595,0.003162,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197595,0.003162,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197595,0.003162,-0.003999,0.249968,0,0);}
.m1_c00235{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);}
.mc4_c00235{transform:matrix(0.198648,0.002980,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198648,0.002980,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198648,0.002980,-0.003750,0.249972,0,0);}
.m59_c00235{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);}
.m68_c00235{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);}
.m6c_c00235{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);}
.mc8_c00235{transform:matrix(0.199928,0.002999,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199928,0.002999,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199928,0.002999,-0.003750,0.249972,0,0);}
.m3b_c00235{transform:matrix(0.200349,0.003206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200349,0.003206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200349,0.003206,-0.003999,0.249968,0,0);}
.m4a_c00235{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);}
.m6d_c00235{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);}
.m3a_c00235{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);}
.m5d_c00235{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);}
.ma6_c00235{transform:matrix(0.202203,0.002629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202203,0.002629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202203,0.002629,-0.003250,0.249979,0,0);}
.m1f_c00235{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);}
.md2_c00235{transform:matrix(0.202712,0.003041,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202712,0.003041,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202712,0.003041,-0.003750,0.249972,0,0);}
.m99_c00235{transform:matrix(0.203380,0.002441,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203380,0.002441,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203380,0.002441,-0.003000,0.249982,0,0);}
.m64_c00235{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);}
.m46_c00235{transform:matrix(0.204269,0.003268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204269,0.003268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204269,0.003268,-0.003999,0.249968,0,0);}
.m63_c00235{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);}
.m89_c00235{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);}
.m90_c00235{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);}
.m6f_c00235{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);}
.m58_c00235{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);}
.m62_c00235{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);}
.m82_c00235{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);}
.ma2_c00235{transform:matrix(0.206863,0.002689,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206863,0.002689,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206863,0.002689,-0.003250,0.249979,0,0);}
.m44_c00235{transform:matrix(0.207308,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207308,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207308,0.003317,-0.003999,0.249968,0,0);}
.m30_c00235{transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207523,0.003320,-0.003999,0.249968,0,0);}
.m95_c00235{transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);}
.m1c_c00235{transform:matrix(0.207993,0.003328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207993,0.003328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207993,0.003328,-0.003999,0.249968,0,0);}
.m69_c00235{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);}
.mae_c00235{transform:matrix(0.209607,0.002725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209607,0.002725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209607,0.002725,-0.003250,0.249979,0,0);}
.m32_c00235{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);}
.m77_c00235{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);}
.m9d_c00235{transform:matrix(0.211912,0.002755,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211912,0.002755,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211912,0.002755,-0.003250,0.249979,0,0);}
.mc5_c00235{transform:matrix(0.212046,0.003181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212046,0.003181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212046,0.003181,-0.003750,0.249972,0,0);}
.m87_c00235{transform:matrix(0.213167,0.002771,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213167,0.002771,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213167,0.002771,-0.003250,0.249979,0,0);}
.mcb_c00235{transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);}
.mf_c00235{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);}
.m65_c00235{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);}
.m9_c00235{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);}
.m60_c00235{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);}
.m2f_c00235{transform:matrix(0.219262,0.003508,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219262,0.003508,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219262,0.003508,-0.003999,0.249968,0,0);}
.md0_c00235{transform:matrix(0.221160,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221160,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221160,0.003317,-0.003750,0.249972,0,0);}
.mb7_c00235{transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);}
.m8c_c00235{transform:matrix(0.223169,0.002678,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223169,0.002678,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223169,0.002678,-0.003000,0.249982,0,0);}
.m84_c00235{transform:matrix(0.225131,0.002927,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225131,0.002927,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225131,0.002927,-0.003250,0.249979,0,0);}
.mca_c00235{transform:matrix(0.225460,0.003382,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225460,0.003382,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225460,0.003382,-0.003750,0.249972,0,0);}
.m75_c00235{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);}
.m5a_c00235{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);}
.m86_c00235{transform:matrix(0.227971,0.002964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227971,0.002964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227971,0.002964,-0.003250,0.249979,0,0);}
.m3d_c00235{transform:matrix(0.228461,0.003655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228461,0.003655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228461,0.003655,-0.003999,0.249968,0,0);}
.m8e_c00235{transform:matrix(0.228714,0.002745,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228714,0.002745,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228714,0.002745,-0.003000,0.249982,0,0);}
.mb8_c00235{transform:matrix(0.229599,0.003444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229599,0.003444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229599,0.003444,-0.003750,0.249972,0,0);}
.m8a_c00235{transform:matrix(0.230156,0.002992,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230156,0.002992,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230156,0.002992,-0.003250,0.249979,0,0);}
.m81_c00235{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m5b_c00235{transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);}
.mb6_c00235{transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);}
.m53_c00235{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);}
.m5e_c00235{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);}
.m21_c00235{transform:matrix(0.234660,0.003755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234660,0.003755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234660,0.003755,-0.003999,0.249968,0,0);}
.m74_c00235{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);}
.m98_c00235{transform:matrix(0.235348,0.002824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235348,0.002824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235348,0.002824,-0.003000,0.249982,0,0);}
.mc1_c00235{transform:matrix(0.235354,0.003530,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235354,0.003530,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235354,0.003530,-0.003750,0.249972,0,0);}
.m96_c00235{transform:matrix(0.237103,0.002845,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237103,0.002845,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237103,0.002845,-0.003000,0.249982,0,0);}
.ma0_c00235{transform:matrix(0.238540,0.003101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238540,0.003101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238540,0.003101,-0.003250,0.249979,0,0);}
.md5_c00235{transform:matrix(0.239788,0.003597,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239788,0.003597,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239788,0.003597,-0.003750,0.249972,0,0);}
.m5c_c00235{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);}
.maa_c00235{transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);}
.m9f_c00235{transform:matrix(0.240240,0.003123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240240,0.003123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240240,0.003123,-0.003250,0.249979,0,0);}
.m92_c00235{transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);}
.m39_c00235{transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242469,0.003880,-0.003999,0.249968,0,0);}
.m9a_c00235{transform:matrix(0.242733,0.002913,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242733,0.002913,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242733,0.002913,-0.003000,0.249982,0,0);}
.m6a_c00235{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);}
.m55_c00235{transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245915,0.000000,0.000000,0.250000,0,0);}
.m29_c00235{transform:matrix(0.246213,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246213,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246213,0.003939,-0.003999,0.249968,0,0);}
.m73_c00235{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);}
.m61_c00235{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.m72_c00235{transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);}
.ma3_c00235{transform:matrix(0.262238,0.003409,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262238,0.003409,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262238,0.003409,-0.003250,0.249979,0,0);}
.m7d_c00235{transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.263506,0.004216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263506,0.004216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263506,0.004216,-0.003999,0.249968,0,0);}
.m4f_c00235{transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);}
.mad_c00235{transform:matrix(0.267817,0.003482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267817,0.003482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267817,0.003482,-0.003250,0.249979,0,0);}
.md3_c00235{transform:matrix(0.273089,0.004096,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273089,0.004096,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273089,0.004096,-0.003750,0.249972,0,0);}
.md4_c00235{transform:matrix(0.274879,0.004123,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274879,0.004123,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274879,0.004123,-0.003750,0.249972,0,0);}
.m2a_c00235{transform:matrix(0.275965,0.004415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275965,0.004415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275965,0.004415,-0.003999,0.249968,0,0);}
.m2b_c00235{transform:matrix(0.278074,0.004449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278074,0.004449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278074,0.004449,-0.003999,0.249968,0,0);}
.mab_c00235{transform:matrix(0.278646,0.003622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278646,0.003622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278646,0.003622,-0.003250,0.249979,0,0);}
.md6_c00235{transform:matrix(0.290257,0.004354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290257,0.004354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290257,0.004354,-0.003750,0.249972,0,0);}
.m80_c00235{transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290320,0.000000,0.000000,0.250000,0,0);}
.m5f_c00235{transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291780,0.000000,0.000000,0.250000,0,0);}
.m49_c00235{transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.306751,0.004908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.306751,0.004908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.306751,0.004908,-0.003999,0.249968,0,0);}
.md7_c00235{transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);}
.m47_c00235{transform:matrix(0.317530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317530,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.317930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317930,0.000000,0.000000,0.250000,0,0);}
.ma8_c00235{transform:matrix(0.320818,0.004171,-0.003250,0.249979,0,0);-ms-transform:matrix(0.320818,0.004171,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.320818,0.004171,-0.003250,0.249979,0,0);}
.m56_c00235{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);}
.m13_c00235{transform:matrix(0.335827,0.005373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.335827,0.005373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.335827,0.005373,-0.003999,0.249968,0,0);}
.ma4_c00235{transform:matrix(0.337561,0.004388,-0.003250,0.249979,0,0);-ms-transform:matrix(0.337561,0.004388,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.337561,0.004388,-0.003250,0.249979,0,0);}
.m5_c00235{transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.343786,0.005501,-0.003999,0.249968,0,0);-ms-transform:matrix(0.343786,0.005501,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.343786,0.005501,-0.003999,0.249968,0,0);}
.mac_c00235{transform:matrix(0.344361,0.004477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.344361,0.004477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.344361,0.004477,-0.003250,0.249979,0,0);}
.mc2_c00235{transform:matrix(0.348481,0.005227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.348481,0.005227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.348481,0.005227,-0.003750,0.249972,0,0);}
.m11_c00235{transform:matrix(0.350500,0.005608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.350500,0.005608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.350500,0.005608,-0.003999,0.249968,0,0);}
.ma9_c00235{transform:matrix(0.354285,0.004606,-0.003250,0.249979,0,0);-ms-transform:matrix(0.354285,0.004606,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.354285,0.004606,-0.003250,0.249979,0,0);}
.mc0_c00235{transform:matrix(0.357125,0.005357,-0.003750,0.249972,0,0);-ms-transform:matrix(0.357125,0.005357,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.357125,0.005357,-0.003750,0.249972,0,0);}
.mb0_c00235{transform:matrix(0.362319,0.004710,-0.003250,0.249979,0,0);-ms-transform:matrix(0.362319,0.004710,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.362319,0.004710,-0.003250,0.249979,0,0);}
.m83_c00235{transform:matrix(0.368625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368625,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.376867,0.006030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.376867,0.006030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.376867,0.006030,-0.003999,0.249968,0,0);}
.m3f_c00235{transform:matrix(0.379561,0.006073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.379561,0.006073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.379561,0.006073,-0.003999,0.249968,0,0);}
.m4_c00235{transform:matrix(0.382420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382420,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385115,0.000000,0.000000,0.250000,0,0);}
.maf_c00235{transform:matrix(0.396911,0.005160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.396911,0.005160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.396911,0.005160,-0.003250,0.249979,0,0);}
.m6_c00235{transform:matrix(0.400590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400590,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.401609,0.006426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401609,0.006426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401609,0.006426,-0.003999,0.249968,0,0);}
.m34_c00235{transform:matrix(0.419536,0.006713,-0.003999,0.249968,0,0);-ms-transform:matrix(0.419536,0.006713,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.419536,0.006713,-0.003999,0.249968,0,0);}
.m12_c00235{transform:matrix(0.442763,0.007084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.442763,0.007084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.442763,0.007084,-0.003999,0.249968,0,0);}
.m3e_c00235{transform:matrix(0.448568,0.007177,-0.003999,0.249968,0,0);-ms-transform:matrix(0.448568,0.007177,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.448568,0.007177,-0.003999,0.249968,0,0);}
.mb2_c00235{transform:matrix(0.454767,0.005912,-0.003250,0.249979,0,0);-ms-transform:matrix(0.454767,0.005912,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.454767,0.005912,-0.003250,0.249979,0,0);}
.mcd_c00235{transform:matrix(0.460098,0.006901,-0.003750,0.249972,0,0);-ms-transform:matrix(0.460098,0.006901,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.460098,0.006901,-0.003750,0.249972,0,0);}
.m8_c00235{transform:matrix(0.461360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461360,0.000000,0.000000,0.250000,0,0);}
.mcf_c00235{transform:matrix(0.485265,0.007279,-0.003750,0.249972,0,0);-ms-transform:matrix(0.485265,0.007279,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.485265,0.007279,-0.003750,0.249972,0,0);}
.m9c_c00235{transform:matrix(0.624590,0.007495,-0.003000,0.249982,0,0);-ms-transform:matrix(0.624590,0.007495,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.624590,0.007495,-0.003000,0.249982,0,0);}
.mb1_c00235{transform:matrix(0.727404,0.009456,-0.003250,0.249979,0,0);-ms-transform:matrix(0.727404,0.009456,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.727404,0.009456,-0.003250,0.249979,0,0);}
.m0_c00235{transform:matrix(0.823760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823760,0.000000,0.000000,0.250000,0,0);}
.mce_c00235{transform:matrix(0.892840,0.013393,-0.003750,0.249972,0,0);-ms-transform:matrix(0.892840,0.013393,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.892840,0.013393,-0.003750,0.249972,0,0);}
.ma7_c00235{transform:matrix(0.899504,0.011694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.899504,0.011694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.899504,0.011694,-0.003250,0.249979,0,0);}
.mb5_c00235{transform:matrix(1.271105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.271105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.271105,0.000000,0.000000,0.250000,0,0);}
.mb3_c00235{transform:matrix(1.787544,0.023238,-0.003250,0.249979,0,0);-ms-transform:matrix(1.787544,0.023238,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.787544,0.023238,-0.003250,0.249979,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;}
.fs10_c00235{font-size:34.652928px;}
.fs11_c00235{font-size:53.556024px;}
.fs12_c00235{font-size:60.900000px;}
.fse_c00235{font-size:61.954460px;}
.fsf_c00235{font-size:65.105501px;}
.fs3_c00235{font-size:66.158467px;}
.fs9_c00235{font-size:67.200000px;}
.fsa_c00235{font-size:68.250000px;}
.fs8_c00235{font-size:69.300000px;}
.fsd_c00235{font-size:69.304989px;}
.fsc_c00235{font-size:69.305856px;}
.fs7_c00235{font-size:69.308870px;}
.fsb_c00235{font-size:70.350000px;}
.fs2_c00235{font-size:71.400000px;}
.fs6_c00235{font-size:71.409139px;}
.fs5_c00235{font-size:72.459273px;}
.fs4_c00235{font-size:75.609676px;}
.fs1_c00235{font-size:101.850000px;}
.fs0_c00235{font-size:127.050000px;}
.y0_c00235{bottom:0.000000px;}
.y97_c00235{bottom:150.945000px;}
.yb9_c00235{bottom:166.186500px;}
.yb8_c00235{bottom:173.152987px;}
.yb7_c00235{bottom:173.311845px;}
.yb6_c00235{bottom:173.634653px;}
.yb5_c00235{bottom:173.921730px;}
.yb4_c00235{bottom:174.415852px;}
.yb3_c00235{bottom:174.566295px;}
.yb2_c00235{bottom:175.131390px;}
.yb1_c00235{bottom:175.311345px;}
.yb0_c00235{bottom:176.199293px;}
.yaf_c00235{bottom:176.441220px;}
.yae_c00235{bottom:176.788125px;}
.yad_c00235{bottom:177.055830px;}
.yac_c00235{bottom:177.171525px;}
.yab_c00235{bottom:177.659745px;}
.yaa_c00235{bottom:191.105325px;}
.ya9_c00235{bottom:191.461748px;}
.ya8_c00235{bottom:192.219323px;}
.ya7_c00235{bottom:192.702240px;}
.ya6_c00235{bottom:193.223790px;}
.ya5_c00235{bottom:193.442400px;}
.ya4_c00235{bottom:193.604737px;}
.ya3_c00235{bottom:193.980915px;}
.ya2_c00235{bottom:194.191920px;}
.ya1_c00235{bottom:194.604728px;}
.ya0_c00235{bottom:194.774693px;}
.y9f_c00235{bottom:195.313522px;}
.y9e_c00235{bottom:195.479483px;}
.y9d_c00235{bottom:195.847312px;}
.y9c_c00235{bottom:196.110585px;}
.y9b_c00235{bottom:196.504313px;}
.y9a_c00235{bottom:197.229600px;}
.y99_c00235{bottom:197.489137px;}
.y98_c00235{bottom:198.198000px;}
.y96_c00235{bottom:214.650000px;}
.y95_c00235{bottom:243.122885px;}
.y94_c00235{bottom:269.864453px;}
.y93_c00235{bottom:271.501989px;}
.y92_c00235{bottom:271.622087px;}
.y91_c00235{bottom:271.644468px;}
.y90_c00235{bottom:272.750476px;}
.y8f_c00235{bottom:273.375959px;}
.y8e_c00235{bottom:273.893528px;}
.y8d_c00235{bottom:274.278892px;}
.y8c_c00235{bottom:274.870022px;}
.y8b_c00235{bottom:275.234895px;}
.y8a_c00235{bottom:275.593862px;}
.y89_c00235{bottom:277.023138px;}
.y88_c00235{bottom:293.862792px;}
.y87_c00235{bottom:294.129026px;}
.y86_c00235{bottom:294.353821px;}
.y85_c00235{bottom:295.034469px;}
.y84_c00235{bottom:295.375095px;}
.y83_c00235{bottom:295.813942px;}
.y82_c00235{bottom:296.445470px;}
.y81_c00235{bottom:297.084563px;}
.y80_c00235{bottom:297.512783px;}
.y7f_c00235{bottom:298.081500px;}
.y7e_c00235{bottom:317.254212px;}
.y7d_c00235{bottom:317.531316px;}
.y7c_c00235{bottom:318.548844px;}
.y7b_c00235{bottom:319.111212px;}
.y7a_c00235{bottom:319.883706px;}
.y79_c00235{bottom:320.160810px;}
.y78_c00235{bottom:320.490888px;}
.y77_c00235{bottom:339.838872px;}
.y76_c00235{bottom:340.095354px;}
.y75_c00235{bottom:340.564506px;}
.y74_c00235{bottom:340.853586px;}
.y73_c00235{bottom:341.449782px;}
.y72_c00235{bottom:341.948904px;}
.y71_c00235{bottom:342.405906px;}
.y70_c00235{bottom:342.791484px;}
.y6f_c00235{bottom:343.180878px;}
.y6e_c00235{bottom:343.711500px;}
.y6d_c00235{bottom:362.796557px;}
.y6c_c00235{bottom:363.170820px;}
.y6b_c00235{bottom:363.897702px;}
.y6a_c00235{bottom:363.932802px;}
.y69_c00235{bottom:364.960647px;}
.y68_c00235{bottom:365.319954px;}
.y67_c00235{bottom:365.778672px;}
.y66_c00235{bottom:366.393000px;}
.y65_c00235{bottom:389.725500px;}
.y64_c00235{bottom:411.816000px;}
.y63_c00235{bottom:412.072500px;}
.y62_c00235{bottom:412.836000px;}
.y61_c00235{bottom:413.082000px;}
.y60_c00235{bottom:413.607000px;}
.y5f_c00235{bottom:413.985000px;}
.y5e_c00235{bottom:414.288000px;}
.y5d_c00235{bottom:414.598500px;}
.y5c_c00235{bottom:415.230000px;}
.y5b_c00235{bottom:415.642500px;}
.y5a_c00235{bottom:416.077500px;}
.y59_c00235{bottom:433.401000px;}
.y58_c00235{bottom:434.575500px;}
.y57_c00235{bottom:434.988000px;}
.y56_c00235{bottom:435.313500px;}
.y55_c00235{bottom:435.589500px;}
.y54_c00235{bottom:435.940500px;}
.y53_c00235{bottom:436.620000px;}
.y52_c00235{bottom:437.335500px;}
.y51_c00235{bottom:437.674500px;}
.y50_c00235{bottom:457.212000px;}
.y4f_c00235{bottom:457.432500px;}
.y4e_c00235{bottom:457.948500px;}
.y4d_c00235{bottom:458.293500px;}
.y4c_c00235{bottom:458.736000px;}
.y4b_c00235{bottom:458.838000px;}
.y4a_c00235{bottom:459.627000px;}
.y49_c00235{bottom:460.083000px;}
.y48_c00235{bottom:481.081500px;}
.y47_c00235{bottom:502.870500px;}
.y46_c00235{bottom:503.034000px;}
.y45_c00235{bottom:503.340000px;}
.y44_c00235{bottom:503.653500px;}
.y43_c00235{bottom:503.826000px;}
.y42_c00235{bottom:504.148500px;}
.y41_c00235{bottom:504.357000px;}
.y40_c00235{bottom:504.720000px;}
.y3f_c00235{bottom:504.979500px;}
.y3e_c00235{bottom:505.078500px;}
.y3d_c00235{bottom:505.456500px;}
.y3c_c00235{bottom:505.711500px;}
.y3b_c00235{bottom:525.591000px;}
.y3a_c00235{bottom:552.736068px;}
.y39_c00235{bottom:552.959484px;}
.y38_c00235{bottom:553.306692px;}
.y37_c00235{bottom:553.509852px;}
.y36_c00235{bottom:554.069868px;}
.y35_c00235{bottom:554.311908px;}
.y34_c00235{bottom:554.464848px;}
.y33_c00235{bottom:555.089760px;}
.y31_c00235{bottom:580.414752px;}
.y32_c00235{bottom:580.414944px;}
.y30_c00235{bottom:606.524976px;}
.y2f_c00235{bottom:606.667716px;}
.y2e_c00235{bottom:607.526388px;}
.y2d_c00235{bottom:607.736892px;}
.y2c_c00235{bottom:608.358036px;}
.y2b_c00235{bottom:608.844564px;}
.y2a_c00235{bottom:609.367932px;}
.y28_c00235{bottom:629.046012px;}
.y29_c00235{bottom:629.046672px;}
.y27_c00235{bottom:650.999088px;}
.y26_c00235{bottom:651.332388px;}
.y25_c00235{bottom:651.504204px;}
.y24_c00235{bottom:651.834816px;}
.y23_c00235{bottom:652.487484px;}
.y22_c00235{bottom:652.933188px;}
.y21_c00235{bottom:653.438220px;}
.y20_c00235{bottom:654.287400px;}
.y1f_c00235{bottom:654.596928px;}
.y1e_c00235{bottom:655.003872px;}
.y1d_c00235{bottom:673.668096px;}
.y1c_c00235{bottom:674.552796px;}
.y1b_c00235{bottom:675.214848px;}
.y1a_c00235{bottom:675.622056px;}
.y19_c00235{bottom:676.047960px;}
.y18_c00235{bottom:676.312884px;}
.y17_c00235{bottom:676.521228px;}
.y16_c00235{bottom:677.059332px;}
.y15_c00235{bottom:677.687952px;}
.y12_c00235{bottom:697.252032px;}
.y13_c00235{bottom:697.252452px;}
.y14_c00235{bottom:697.253064px;}
.y11_c00235{bottom:723.180372px;}
.y10_c00235{bottom:723.180768px;}
.ye_c00235{bottom:723.181260px;}
.yf_c00235{bottom:723.181476px;}
.yc_c00235{bottom:746.704752px;}
.yd_c00235{bottom:746.705388px;}
.y8_c00235{bottom:770.731488px;}
.y9_c00235{bottom:770.731824px;}
.yb_c00235{bottom:770.731920px;}
.ya_c00235{bottom:770.731992px;}
.y7_c00235{bottom:791.735316px;}
.y6_c00235{bottom:792.979524px;}
.y5_c00235{bottom:793.286124px;}
.y4_c00235{bottom:796.771500px;}
.y3_c00235{bottom:818.691000px;}
.y2_c00235{bottom:841.216500px;}
.y1_c00235{bottom:887.196000px;}
.h12_c00235{height:34.652928px;}
.h13_c00235{height:53.556024px;}
.h14_c00235{height:60.900000px;}
.h10_c00235{height:61.954460px;}
.h11_c00235{height:65.105501px;}
.h5_c00235{height:66.158467px;}
.hb_c00235{height:67.200000px;}
.hc_c00235{height:68.250000px;}
.ha_c00235{height:69.300000px;}
.hf_c00235{height:69.304989px;}
.he_c00235{height:69.305856px;}
.h9_c00235{height:69.308870px;}
.hd_c00235{height:70.350000px;}
.h4_c00235{height:71.400000px;}
.h8_c00235{height:71.409139px;}
.h7_c00235{height:72.459273px;}
.h6_c00235{height:75.609676px;}
.h3_c00235{height:101.850000px;}
.h2_c00235{height:127.050000px;}
.h0_c00235{height:1008.450000px;}
.h1_c00235{height:1008.750000px;}
.w0_c00235{width:678.450000px;}
.w1_c00235{width:678.750000px;}
.x0_c00235{left:0.000000px;}
.x75_c00235{left:70.200000px;}
.x70_c00235{left:73.043010px;}
.x74_c00235{left:76.410000px;}
.x1_c00235{left:77.490000px;}
.xf_c00235{left:84.123000px;}
.x6_c00235{left:87.210000px;}
.x76_c00235{left:92.173500px;}
.x82_c00235{left:123.489540px;}
.x2_c00235{left:133.110000px;}
.x77_c00235{left:139.431000px;}
.x78_c00235{left:156.733500px;}
.x9_c00235{left:161.460000px;}
.x61_c00235{left:162.661500px;}
.x57_c00235{left:163.731000px;}
.x35_c00235{left:164.855244px;}
.x1f_c00235{left:166.992360px;}
.x13_c00235{left:168.760128px;}
.x83_c00235{left:169.951935px;}
.x71_c00235{left:184.749642px;}
.x6a_c00235{left:188.565162px;}
.x84_c00235{left:190.499542px;}
.x51_c00235{left:194.785500px;}
.x3c_c00235{left:196.723500px;}
.x43_c00235{left:198.987000px;}
.x28_c00235{left:200.383044px;}
.x79_c00235{left:205.086000px;}
.x62_c00235{left:206.880000px;}
.x44_c00235{left:208.167000px;}
.x4d_c00235{left:210.187500px;}
.x14_c00235{left:214.125744px;}
.x85_c00235{left:217.227352px;}
.x20_c00235{left:219.315696px;}
.x29_c00235{left:224.229696px;}
.x1c_c00235{left:227.628324px;}
.x7a_c00235{left:231.334500px;}
.x45_c00235{left:232.737000px;}
.x36_c00235{left:234.295020px;}
.x15_c00235{left:236.808552px;}
.x63_c00235{left:239.329500px;}
.x3d_c00235{left:244.048500px;}
.x3_c00235{left:246.240000px;}
.x7b_c00235{left:248.886000px;}
.x37_c00235{left:251.261916px;}
.x3e_c00235{left:256.429500px;}
.x32_c00235{left:258.807864px;}
.x52_c00235{left:259.863000px;}
.x16_c00235{left:261.381840px;}
.x21_c00235{left:264.200076px;}
.x4_c00235{left:265.680000px;}
.x58_c00235{left:269.280000px;}
.x64_c00235{left:271.461000px;}
.x46_c00235{left:272.967000px;}
.x38_c00235{left:278.204940px;}
.x7_c00235{left:279.450000px;}
.x22_c00235{left:281.535180px;}
.x7c_c00235{left:284.472000px;}
.x2a_c00235{left:289.587840px;}
.x1d_c00235{left:291.087072px;}
.x47_c00235{left:295.107000px;}
.x4e_c00235{left:299.281500px;}
.x72_c00235{left:300.855599px;}
.x10_c00235{left:301.959000px;}
.x23_c00235{left:303.625596px;}
.x5b_c00235{left:306.450000px;}
.x65_c00235{left:309.544500px;}
.x17_c00235{left:312.958704px;}
.x3b_c00235{left:314.010000px;}
.x33_c00235{left:315.258876px;}
.x86_c00235{left:317.952367px;}
.xa_c00235{left:319.950000px;}
.x11_c00235{left:321.121500px;}
.x1e_c00235{left:325.651428px;}
.x2b_c00235{left:328.466712px;}
.x7d_c00235{left:331.725000px;}
.x34_c00235{left:334.416912px;}
.x6c_c00235{left:337.885500px;}
.x24_c00235{left:339.059352px;}
.x39_c00235{left:340.400400px;}
.xb_c00235{left:341.550000px;}
.x4f_c00235{left:343.581000px;}
.x19_c00235{left:345.902856px;}
.x5c_c00235{left:349.920000px;}
.x66_c00235{left:351.138000px;}
.x5e_c00235{left:352.420500px;}
.x53_c00235{left:353.610000px;}
.x5f_c00235{left:355.120500px;}
.x5_c00235{left:358.290000px;}
.x18_c00235{left:361.025016px;}
.x2c_c00235{left:362.699844px;}
.x31_c00235{left:365.345064px;}
.x6d_c00235{left:371.643000px;}
.x25_c00235{left:372.949512px;}
.x50_c00235{left:378.108000px;}
.x48_c00235{left:382.587000px;}
.x6b_c00235{left:390.812232px;}
.x5d_c00235{left:392.850000px;}
.x1a_c00235{left:395.589576px;}
.x6e_c00235{left:397.845000px;}
.x12_c00235{left:398.884500px;}
.x3a_c00235{left:401.617764px;}
.xc_c00235{left:403.650000px;}
.x54_c00235{left:408.369000px;}
.x49_c00235{left:411.207000px;}
.x2d_c00235{left:412.962768px;}
.x73_c00235{left:418.002536px;}
.x3f_c00235{left:422.215500px;}
.x7e_c00235{left:423.787500px;}
.x67_c00235{left:424.911000px;}
.xd_c00235{left:426.330000px;}
.x26_c00235{left:428.112540px;}
.x1b_c00235{left:430.423980px;}
.x87_c00235{left:433.238355px;}
.x4a_c00235{left:435.507000px;}
.x2e_c00235{left:438.408492px;}
.x60_c00235{left:439.824000px;}
.xe_c00235{left:444.690000px;}
.x55_c00235{left:445.897500px;}
.x59_c00235{left:449.646000px;}
.x2f_c00235{left:451.585116px;}
.x7f_c00235{left:458.557500px;}
.x40_c00235{left:461.328000px;}
.x68_c00235{left:464.007000px;}
.x5a_c00235{left:467.988000px;}
.x88_c00235{left:470.250457px;}
.x30_c00235{left:477.198840px;}
.x69_c00235{left:485.380500px;}
.x6f_c00235{left:487.974000px;}
.x8_c00235{left:489.780000px;}
.x4b_c00235{left:491.667000px;}
.x41_c00235{left:499.660500px;}
.x27_c00235{left:501.879768px;}
.x42_c00235{left:520.111500px;}
.x80_c00235{left:541.257000px;}
.x56_c00235{left:552.666000px;}
.x4c_c00235{left:557.277000px;}
.x81_c00235{left:565.018500px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.000000pt;}
.fs10_c00235{font-size:30.802602pt;}
.fs11_c00235{font-size:47.605355pt;}
.fs12_c00235{font-size:54.133333pt;}
.fse_c00235{font-size:55.070631pt;}
.fsf_c00235{font-size:57.871556pt;}
.fs3_c00235{font-size:58.807526pt;}
.fs9_c00235{font-size:59.733333pt;}
.fsa_c00235{font-size:60.666667pt;}
.fs8_c00235{font-size:61.600000pt;}
.fsd_c00235{font-size:61.604435pt;}
.fsc_c00235{font-size:61.605205pt;}
.fs7_c00235{font-size:61.607884pt;}
.fsb_c00235{font-size:62.533333pt;}
.fs2_c00235{font-size:63.466667pt;}
.fs6_c00235{font-size:63.474790pt;}
.fs5_c00235{font-size:64.408243pt;}
.fs4_c00235{font-size:67.208601pt;}
.fs1_c00235{font-size:90.533333pt;}
.fs0_c00235{font-size:112.933333pt;}
.y0_c00235{bottom:0.000000pt;}
.y97_c00235{bottom:134.173333pt;}
.yb9_c00235{bottom:147.721333pt;}
.yb8_c00235{bottom:153.913767pt;}
.yb7_c00235{bottom:154.054973pt;}
.yb6_c00235{bottom:154.341913pt;}
.yb5_c00235{bottom:154.597093pt;}
.yb4_c00235{bottom:155.036313pt;}
.yb3_c00235{bottom:155.170040pt;}
.yb2_c00235{bottom:155.672347pt;}
.yb1_c00235{bottom:155.832307pt;}
.yb0_c00235{bottom:156.621593pt;}
.yaf_c00235{bottom:156.836640pt;}
.yae_c00235{bottom:157.145000pt;}
.yad_c00235{bottom:157.382960pt;}
.yac_c00235{bottom:157.485800pt;}
.yab_c00235{bottom:157.919773pt;}
.yaa_c00235{bottom:169.871400pt;}
.ya9_c00235{bottom:170.188220pt;}
.ya8_c00235{bottom:170.861620pt;}
.ya7_c00235{bottom:171.290880pt;}
.ya6_c00235{bottom:171.754480pt;}
.ya5_c00235{bottom:171.948800pt;}
.ya4_c00235{bottom:172.093100pt;}
.ya3_c00235{bottom:172.427480pt;}
.ya2_c00235{bottom:172.615040pt;}
.ya1_c00235{bottom:172.981980pt;}
.ya0_c00235{bottom:173.133060pt;}
.y9f_c00235{bottom:173.612020pt;}
.y9e_c00235{bottom:173.759540pt;}
.y9d_c00235{bottom:174.086500pt;}
.y9c_c00235{bottom:174.320520pt;}
.y9b_c00235{bottom:174.670500pt;}
.y9a_c00235{bottom:175.315200pt;}
.y99_c00235{bottom:175.545900pt;}
.y98_c00235{bottom:176.176000pt;}
.y96_c00235{bottom:190.800000pt;}
.y95_c00235{bottom:216.109231pt;}
.y94_c00235{bottom:239.879513pt;}
.y93_c00235{bottom:241.335101pt;}
.y92_c00235{bottom:241.441855pt;}
.y91_c00235{bottom:241.461749pt;}
.y90_c00235{bottom:242.444868pt;}
.y8f_c00235{bottom:243.000852pt;}
.y8e_c00235{bottom:243.460913pt;}
.y8d_c00235{bottom:243.803460pt;}
.y8c_c00235{bottom:244.328908pt;}
.y8b_c00235{bottom:244.653240pt;}
.y8a_c00235{bottom:244.972321pt;}
.y89_c00235{bottom:246.242789pt;}
.y88_c00235{bottom:261.211371pt;}
.y87_c00235{bottom:261.448023pt;}
.y86_c00235{bottom:261.647841pt;}
.y85_c00235{bottom:262.252861pt;}
.y84_c00235{bottom:262.555640pt;}
.y83_c00235{bottom:262.945727pt;}
.y82_c00235{bottom:263.507084pt;}
.y81_c00235{bottom:264.075167pt;}
.y80_c00235{bottom:264.455807pt;}
.y7f_c00235{bottom:264.961333pt;}
.y7e_c00235{bottom:282.003744pt;}
.y7d_c00235{bottom:282.250059pt;}
.y7c_c00235{bottom:283.154528pt;}
.y7b_c00235{bottom:283.654411pt;}
.y7a_c00235{bottom:284.341072pt;}
.y79_c00235{bottom:284.587387pt;}
.y78_c00235{bottom:284.880789pt;}
.y77_c00235{bottom:302.078997pt;}
.y76_c00235{bottom:302.306981pt;}
.y75_c00235{bottom:302.724005pt;}
.y74_c00235{bottom:302.980965pt;}
.y73_c00235{bottom:303.510917pt;}
.y72_c00235{bottom:303.954581pt;}
.y71_c00235{bottom:304.360805pt;}
.y70_c00235{bottom:304.703541pt;}
.y6f_c00235{bottom:305.049669pt;}
.y6e_c00235{bottom:305.521333pt;}
.y6d_c00235{bottom:322.485828pt;}
.y6c_c00235{bottom:322.818507pt;}
.y6b_c00235{bottom:323.464624pt;}
.y6a_c00235{bottom:323.495824pt;}
.y69_c00235{bottom:324.409464pt;}
.y68_c00235{bottom:324.728848pt;}
.y67_c00235{bottom:325.136597pt;}
.y66_c00235{bottom:325.682667pt;}
.y65_c00235{bottom:346.422667pt;}
.y64_c00235{bottom:366.058667pt;}
.y63_c00235{bottom:366.286667pt;}
.y62_c00235{bottom:366.965333pt;}
.y61_c00235{bottom:367.184000pt;}
.y60_c00235{bottom:367.650667pt;}
.y5f_c00235{bottom:367.986667pt;}
.y5e_c00235{bottom:368.256000pt;}
.y5d_c00235{bottom:368.532000pt;}
.y5c_c00235{bottom:369.093333pt;}
.y5b_c00235{bottom:369.460000pt;}
.y5a_c00235{bottom:369.846667pt;}
.y59_c00235{bottom:385.245333pt;}
.y58_c00235{bottom:386.289333pt;}
.y57_c00235{bottom:386.656000pt;}
.y56_c00235{bottom:386.945333pt;}
.y55_c00235{bottom:387.190667pt;}
.y54_c00235{bottom:387.502667pt;}
.y53_c00235{bottom:388.106667pt;}
.y52_c00235{bottom:388.742667pt;}
.y51_c00235{bottom:389.044000pt;}
.y50_c00235{bottom:406.410667pt;}
.y4f_c00235{bottom:406.606667pt;}
.y4e_c00235{bottom:407.065333pt;}
.y4d_c00235{bottom:407.372000pt;}
.y4c_c00235{bottom:407.765333pt;}
.y4b_c00235{bottom:407.856000pt;}
.y4a_c00235{bottom:408.557333pt;}
.y49_c00235{bottom:408.962667pt;}
.y48_c00235{bottom:427.628000pt;}
.y47_c00235{bottom:446.996000pt;}
.y46_c00235{bottom:447.141333pt;}
.y45_c00235{bottom:447.413333pt;}
.y44_c00235{bottom:447.692000pt;}
.y43_c00235{bottom:447.845333pt;}
.y42_c00235{bottom:448.132000pt;}
.y41_c00235{bottom:448.317333pt;}
.y40_c00235{bottom:448.640000pt;}
.y3f_c00235{bottom:448.870667pt;}
.y3e_c00235{bottom:448.958667pt;}
.y3d_c00235{bottom:449.294667pt;}
.y3c_c00235{bottom:449.521333pt;}
.y3b_c00235{bottom:467.192000pt;}
.y3a_c00235{bottom:491.320949pt;}
.y39_c00235{bottom:491.519541pt;}
.y38_c00235{bottom:491.828171pt;}
.y37_c00235{bottom:492.008757pt;}
.y36_c00235{bottom:492.506549pt;}
.y35_c00235{bottom:492.721696pt;}
.y34_c00235{bottom:492.857643pt;}
.y33_c00235{bottom:493.413120pt;}
.y31_c00235{bottom:515.924224pt;}
.y32_c00235{bottom:515.924395pt;}
.y30_c00235{bottom:539.133312pt;}
.y2f_c00235{bottom:539.260192pt;}
.y2e_c00235{bottom:540.023456pt;}
.y2d_c00235{bottom:540.210571pt;}
.y2c_c00235{bottom:540.762699pt;}
.y2b_c00235{bottom:541.195168pt;}
.y2a_c00235{bottom:541.660384pt;}
.y28_c00235{bottom:559.152011pt;}
.y29_c00235{bottom:559.152597pt;}
.y27_c00235{bottom:578.665856pt;}
.y26_c00235{bottom:578.962123pt;}
.y25_c00235{bottom:579.114848pt;}
.y24_c00235{bottom:579.408725pt;}
.y23_c00235{bottom:579.988875pt;}
.y22_c00235{bottom:580.385056pt;}
.y21_c00235{bottom:580.833973pt;}
.y20_c00235{bottom:581.588800pt;}
.y1f_c00235{bottom:581.863936pt;}
.y1e_c00235{bottom:582.225664pt;}
.y1d_c00235{bottom:598.816085pt;}
.y1c_c00235{bottom:599.602485pt;}
.y1b_c00235{bottom:600.190976pt;}
.y1a_c00235{bottom:600.552939pt;}
.y19_c00235{bottom:600.931520pt;}
.y18_c00235{bottom:601.167008pt;}
.y17_c00235{bottom:601.352203pt;}
.y16_c00235{bottom:601.830517pt;}
.y15_c00235{bottom:602.389291pt;}
.y12_c00235{bottom:619.779584pt;}
.y13_c00235{bottom:619.779957pt;}
.y14_c00235{bottom:619.780501pt;}
.y11_c00235{bottom:642.826997pt;}
.y10_c00235{bottom:642.827349pt;}
.ye_c00235{bottom:642.827787pt;}
.yf_c00235{bottom:642.827979pt;}
.yc_c00235{bottom:663.737557pt;}
.yd_c00235{bottom:663.738123pt;}
.y8_c00235{bottom:685.094656pt;}
.y9_c00235{bottom:685.094955pt;}
.yb_c00235{bottom:685.095040pt;}
.ya_c00235{bottom:685.095104pt;}
.y7_c00235{bottom:703.764725pt;}
.y6_c00235{bottom:704.870688pt;}
.y5_c00235{bottom:705.143221pt;}
.y4_c00235{bottom:708.241333pt;}
.y3_c00235{bottom:727.725333pt;}
.y2_c00235{bottom:747.748000pt;}
.y1_c00235{bottom:788.618667pt;}
.h12_c00235{height:30.802602pt;}
.h13_c00235{height:47.605355pt;}
.h14_c00235{height:54.133333pt;}
.h10_c00235{height:55.070631pt;}
.h11_c00235{height:57.871556pt;}
.h5_c00235{height:58.807526pt;}
.hb_c00235{height:59.733333pt;}
.hc_c00235{height:60.666667pt;}
.ha_c00235{height:61.600000pt;}
.hf_c00235{height:61.604435pt;}
.he_c00235{height:61.605205pt;}
.h9_c00235{height:61.607884pt;}
.hd_c00235{height:62.533333pt;}
.h4_c00235{height:63.466667pt;}
.h8_c00235{height:63.474790pt;}
.h7_c00235{height:64.408243pt;}
.h6_c00235{height:67.208601pt;}
.h3_c00235{height:90.533333pt;}
.h2_c00235{height:112.933333pt;}
.h0_c00235{height:896.400000pt;}
.h1_c00235{height:896.666667pt;}
.w0_c00235{width:603.066667pt;}
.w1_c00235{width:603.333333pt;}
.x0_c00235{left:0.000000pt;}
.x75_c00235{left:62.400000pt;}
.x70_c00235{left:64.927120pt;}
.x74_c00235{left:67.920000pt;}
.x1_c00235{left:68.880000pt;}
.xf_c00235{left:74.776000pt;}
.x6_c00235{left:77.520000pt;}
.x76_c00235{left:81.932000pt;}
.x82_c00235{left:109.768480pt;}
.x2_c00235{left:118.320000pt;}
.x77_c00235{left:123.938667pt;}
.x78_c00235{left:139.318667pt;}
.x9_c00235{left:143.520000pt;}
.x61_c00235{left:144.588000pt;}
.x57_c00235{left:145.538667pt;}
.x35_c00235{left:146.537995pt;}
.x1f_c00235{left:148.437653pt;}
.x13_c00235{left:150.009003pt;}
.x83_c00235{left:151.068387pt;}
.x71_c00235{left:164.221904pt;}
.x6a_c00235{left:167.613477pt;}
.x84_c00235{left:169.332927pt;}
.x51_c00235{left:173.142667pt;}
.x3c_c00235{left:174.865333pt;}
.x43_c00235{left:176.877333pt;}
.x28_c00235{left:178.118261pt;}
.x79_c00235{left:182.298667pt;}
.x62_c00235{left:183.893333pt;}
.x44_c00235{left:185.037333pt;}
.x4d_c00235{left:186.833333pt;}
.x14_c00235{left:190.333995pt;}
.x85_c00235{left:193.090980pt;}
.x20_c00235{left:194.947285pt;}
.x29_c00235{left:199.315285pt;}
.x1c_c00235{left:202.336288pt;}
.x7a_c00235{left:205.630667pt;}
.x45_c00235{left:206.877333pt;}
.x36_c00235{left:208.262240pt;}
.x15_c00235{left:210.496491pt;}
.x63_c00235{left:212.737333pt;}
.x3d_c00235{left:216.932000pt;}
.x3_c00235{left:218.880000pt;}
.x7b_c00235{left:221.232000pt;}
.x37_c00235{left:223.343925pt;}
.x3e_c00235{left:227.937333pt;}
.x32_c00235{left:230.051435pt;}
.x52_c00235{left:230.989333pt;}
.x16_c00235{left:232.339413pt;}
.x21_c00235{left:234.844512pt;}
.x4_c00235{left:236.160000pt;}
.x58_c00235{left:239.360000pt;}
.x64_c00235{left:241.298667pt;}
.x46_c00235{left:242.637333pt;}
.x38_c00235{left:247.293280pt;}
.x7_c00235{left:248.400000pt;}
.x22_c00235{left:250.253493pt;}
.x7c_c00235{left:252.864000pt;}
.x2a_c00235{left:257.411413pt;}
.x1d_c00235{left:258.744064pt;}
.x47_c00235{left:262.317333pt;}
.x4e_c00235{left:266.028000pt;}
.x72_c00235{left:267.427199pt;}
.x10_c00235{left:268.408000pt;}
.x23_c00235{left:269.889419pt;}
.x5b_c00235{left:272.400000pt;}
.x65_c00235{left:275.150667pt;}
.x17_c00235{left:278.185515pt;}
.x3b_c00235{left:279.120000pt;}
.x33_c00235{left:280.230112pt;}
.x86_c00235{left:282.624327pt;}
.xa_c00235{left:284.400000pt;}
.x11_c00235{left:285.441333pt;}
.x1e_c00235{left:289.467936pt;}
.x2b_c00235{left:291.970411pt;}
.x7d_c00235{left:294.866667pt;}
.x34_c00235{left:297.259477pt;}
.x6c_c00235{left:300.342667pt;}
.x24_c00235{left:301.386091pt;}
.x39_c00235{left:302.578133pt;}
.xb_c00235{left:303.600000pt;}
.x4f_c00235{left:305.405333pt;}
.x19_c00235{left:307.469205pt;}
.x5c_c00235{left:311.040000pt;}
.x66_c00235{left:312.122667pt;}
.x5e_c00235{left:313.262667pt;}
.x53_c00235{left:314.320000pt;}
.x5f_c00235{left:315.662667pt;}
.x5_c00235{left:318.480000pt;}
.x18_c00235{left:320.911125pt;}
.x2c_c00235{left:322.399861pt;}
.x31_c00235{left:324.751168pt;}
.x6d_c00235{left:330.349333pt;}
.x25_c00235{left:331.510677pt;}
.x50_c00235{left:336.096000pt;}
.x48_c00235{left:340.077333pt;}
.x6b_c00235{left:347.388651pt;}
.x5d_c00235{left:349.200000pt;}
.x1a_c00235{left:351.635179pt;}
.x6e_c00235{left:353.640000pt;}
.x12_c00235{left:354.564000pt;}
.x3a_c00235{left:356.993568pt;}
.xc_c00235{left:358.800000pt;}
.x54_c00235{left:362.994667pt;}
.x49_c00235{left:365.517333pt;}
.x2d_c00235{left:367.078016pt;}
.x73_c00235{left:371.557809pt;}
.x3f_c00235{left:375.302667pt;}
.x7e_c00235{left:376.700000pt;}
.x67_c00235{left:377.698667pt;}
.xd_c00235{left:378.960000pt;}
.x26_c00235{left:380.544480pt;}
.x1b_c00235{left:382.599093pt;}
.x87_c00235{left:385.100760pt;}
.x4a_c00235{left:387.117333pt;}
.x2e_c00235{left:389.696437pt;}
.x60_c00235{left:390.954667pt;}
.xe_c00235{left:395.280000pt;}
.x55_c00235{left:396.353333pt;}
.x59_c00235{left:399.685333pt;}
.x2f_c00235{left:401.408992pt;}
.x7f_c00235{left:407.606667pt;}
.x40_c00235{left:410.069333pt;}
.x68_c00235{left:412.450667pt;}
.x5a_c00235{left:415.989333pt;}
.x88_c00235{left:418.000407pt;}
.x30_c00235{left:424.176747pt;}
.x69_c00235{left:431.449333pt;}
.x6f_c00235{left:433.754667pt;}
.x8_c00235{left:435.360000pt;}
.x4b_c00235{left:437.037333pt;}
.x41_c00235{left:444.142667pt;}
.x27_c00235{left:446.115349pt;}
.x42_c00235{left:462.321333pt;}
.x80_c00235{left:481.117333pt;}
.x56_c00235{left:491.258667pt;}
.x4c_c00235{left:495.357333pt;}
.x81_c00235{left:502.238667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m24_c00236{transform:matrix(0.014715,-0.000118,0.002000,0.249992,0,0);-ms-transform:matrix(0.014715,-0.000118,0.002000,0.249992,0,0);-webkit-transform:matrix(0.014715,-0.000118,0.002000,0.249992,0,0);}
.mb_c00236{transform:matrix(0.052138,-0.000417,0.002000,0.249992,0,0);-ms-transform:matrix(0.052138,-0.000417,0.002000,0.249992,0,0);-webkit-transform:matrix(0.052138,-0.000417,0.002000,0.249992,0,0);}
.m39_c00236{transform:matrix(0.142375,-0.001139,0.002000,0.249992,0,0);-ms-transform:matrix(0.142375,-0.001139,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142375,-0.001139,0.002000,0.249992,0,0);}
.me_c00236{transform:matrix(0.145230,-0.001162,0.002000,0.249992,0,0);-ms-transform:matrix(0.145230,-0.001162,0.002000,0.249992,0,0);-webkit-transform:matrix(0.145230,-0.001162,0.002000,0.249992,0,0);}
.m2c_c00236{transform:matrix(0.153275,-0.001226,0.002000,0.249992,0,0);-ms-transform:matrix(0.153275,-0.001226,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153275,-0.001226,0.002000,0.249992,0,0);}
.m2a_c00236{transform:matrix(0.153765,-0.001230,0.002000,0.249992,0,0);-ms-transform:matrix(0.153765,-0.001230,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153765,-0.001230,0.002000,0.249992,0,0);}
.m2b_c00236{transform:matrix(0.165750,-0.001326,0.002000,0.249992,0,0);-ms-transform:matrix(0.165750,-0.001326,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165750,-0.001326,0.002000,0.249992,0,0);}
.m28_c00236{transform:matrix(0.167670,-0.001341,0.002000,0.249992,0,0);-ms-transform:matrix(0.167670,-0.001341,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167670,-0.001341,0.002000,0.249992,0,0);}
.m3f_c00236{transform:matrix(0.167855,-0.001343,0.002000,0.249992,0,0);-ms-transform:matrix(0.167855,-0.001343,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167855,-0.001343,0.002000,0.249992,0,0);}
.m7_c00236{transform:matrix(0.169850,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169850,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169850,-0.001359,0.002000,0.249992,0,0);}
.m26_c00236{transform:matrix(0.170480,-0.001364,0.002000,0.249992,0,0);-ms-transform:matrix(0.170480,-0.001364,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170480,-0.001364,0.002000,0.249992,0,0);}
.m1b_c00236{transform:matrix(0.171580,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171580,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171580,-0.001373,0.002000,0.249992,0,0);}
.m3a_c00236{transform:matrix(0.173139,-0.001385,0.002000,0.249992,0,0);-ms-transform:matrix(0.173139,-0.001385,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173139,-0.001385,0.002000,0.249992,0,0);}
.m10_c00236{transform:matrix(0.174084,-0.001393,0.002000,0.249992,0,0);-ms-transform:matrix(0.174084,-0.001393,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174084,-0.001393,0.002000,0.249992,0,0);}
.m11_c00236{transform:matrix(0.174974,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.174974,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174974,-0.001400,0.002000,0.249992,0,0);}
.m3b_c00236{transform:matrix(0.179289,-0.001434,0.002000,0.249992,0,0);-ms-transform:matrix(0.179289,-0.001434,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179289,-0.001434,0.002000,0.249992,0,0);}
.m3e_c00236{transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);}
.m1e_c00236{transform:matrix(0.181949,-0.001456,0.002000,0.249992,0,0);-ms-transform:matrix(0.181949,-0.001456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181949,-0.001456,0.002000,0.249992,0,0);}
.m29_c00236{transform:matrix(0.182434,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182434,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182434,-0.001459,0.002000,0.249992,0,0);}
.m12_c00236{transform:matrix(0.182714,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182714,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182714,-0.001462,0.002000,0.249992,0,0);}
.m1c_c00236{transform:matrix(0.185349,-0.001483,0.002000,0.249992,0,0);-ms-transform:matrix(0.185349,-0.001483,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185349,-0.001483,0.002000,0.249992,0,0);}
.m9_c00236{transform:matrix(0.187169,-0.001497,0.002000,0.249992,0,0);-ms-transform:matrix(0.187169,-0.001497,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187169,-0.001497,0.002000,0.249992,0,0);}
.m1f_c00236{transform:matrix(0.187359,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187359,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187359,-0.001499,0.002000,0.249992,0,0);}
.mf_c00236{transform:matrix(0.187509,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187509,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187509,-0.001500,0.002000,0.249992,0,0);}
.m27_c00236{transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);-ms-transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);}
.m2e_c00236{transform:matrix(0.191809,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191809,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191809,-0.001534,0.002000,0.249992,0,0);}
.ma_c00236{transform:matrix(0.195934,-0.001567,0.002000,0.249992,0,0);-ms-transform:matrix(0.195934,-0.001567,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195934,-0.001567,0.002000,0.249992,0,0);}
.m3c_c00236{transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);-ms-transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);}
.m8_c00236{transform:matrix(0.200629,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200629,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200629,-0.001605,0.002000,0.249992,0,0);}
.m2f_c00236{transform:matrix(0.201509,-0.001612,0.002000,0.249992,0,0);-ms-transform:matrix(0.201509,-0.001612,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201509,-0.001612,0.002000,0.249992,0,0);}
.m21_c00236{transform:matrix(0.202184,-0.001617,0.002000,0.249992,0,0);-ms-transform:matrix(0.202184,-0.001617,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202184,-0.001617,0.002000,0.249992,0,0);}
.m3d_c00236{transform:matrix(0.204333,-0.001635,0.002000,0.249992,0,0);-ms-transform:matrix(0.204333,-0.001635,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204333,-0.001635,0.002000,0.249992,0,0);}
.m31_c00236{transform:matrix(0.205063,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205063,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205063,-0.001641,0.002000,0.249992,0,0);}
.m20_c00236{transform:matrix(0.206463,-0.001652,0.002000,0.249992,0,0);-ms-transform:matrix(0.206463,-0.001652,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206463,-0.001652,0.002000,0.249992,0,0);}
.md_c00236{transform:matrix(0.208483,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208483,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208483,-0.001668,0.002000,0.249992,0,0);}
.m33_c00236{transform:matrix(0.209138,-0.001673,0.002000,0.249992,0,0);-ms-transform:matrix(0.209138,-0.001673,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209138,-0.001673,0.002000,0.249992,0,0);}
.m23_c00236{transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);}
.m1d_c00236{transform:matrix(0.210278,-0.001682,0.002000,0.249992,0,0);-ms-transform:matrix(0.210278,-0.001682,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210278,-0.001682,0.002000,0.249992,0,0);}
.m42_c00236{transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);-ms-transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);}
.m40_c00236{transform:matrix(0.214763,-0.001718,0.002000,0.249992,0,0);-ms-transform:matrix(0.214763,-0.001718,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214763,-0.001718,0.002000,0.249992,0,0);}
.m1_c00236{transform:matrix(0.218182,0.002400,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218182,0.002400,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218182,0.002400,-0.002750,0.249985,0,0);}
.m43_c00236{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);}
.m37_c00236{transform:matrix(0.224683,-0.001797,0.002000,0.249992,0,0);-ms-transform:matrix(0.224683,-0.001797,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224683,-0.001797,0.002000,0.249992,0,0);}
.m22_c00236{transform:matrix(0.231288,-0.001850,0.002000,0.249992,0,0);-ms-transform:matrix(0.231288,-0.001850,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231288,-0.001850,0.002000,0.249992,0,0);}
.m16_c00236{transform:matrix(0.235727,-0.001886,0.002000,0.249992,0,0);-ms-transform:matrix(0.235727,-0.001886,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235727,-0.001886,0.002000,0.249992,0,0);}
.m6_c00236{transform:matrix(0.236337,-0.001891,0.002000,0.249992,0,0);-ms-transform:matrix(0.236337,-0.001891,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236337,-0.001891,0.002000,0.249992,0,0);}
.m5_c00236{transform:matrix(0.236457,-0.001892,0.002000,0.249992,0,0);-ms-transform:matrix(0.236457,-0.001892,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236457,-0.001892,0.002000,0.249992,0,0);}
.m35_c00236{transform:matrix(0.240727,-0.001926,0.002000,0.249992,0,0);-ms-transform:matrix(0.240727,-0.001926,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240727,-0.001926,0.002000,0.249992,0,0);}
.m18_c00236{transform:matrix(0.241072,-0.001929,0.002000,0.249992,0,0);-ms-transform:matrix(0.241072,-0.001929,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241072,-0.001929,0.002000,0.249992,0,0);}
.m38_c00236{transform:matrix(0.242112,-0.001937,0.002000,0.249992,0,0);-ms-transform:matrix(0.242112,-0.001937,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242112,-0.001937,0.002000,0.249992,0,0);}
.m3_c00236{transform:matrix(0.242282,-0.001938,0.002000,0.249992,0,0);-ms-transform:matrix(0.242282,-0.001938,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242282,-0.001938,0.002000,0.249992,0,0);}
.m34_c00236{transform:matrix(0.242567,-0.001941,0.002000,0.249992,0,0);-ms-transform:matrix(0.242567,-0.001941,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242567,-0.001941,0.002000,0.249992,0,0);}
.m1a_c00236{transform:matrix(0.245462,-0.001964,0.002000,0.249992,0,0);-ms-transform:matrix(0.245462,-0.001964,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245462,-0.001964,0.002000,0.249992,0,0);}
.m32_c00236{transform:matrix(0.253112,-0.002025,0.002000,0.249992,0,0);-ms-transform:matrix(0.253112,-0.002025,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253112,-0.002025,0.002000,0.249992,0,0);}
.m2_c00236{transform:matrix(0.253475,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253475,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253475,0.002788,-0.002750,0.249985,0,0);}
.m4_c00236{transform:matrix(0.259387,-0.002075,0.002000,0.249992,0,0);-ms-transform:matrix(0.259387,-0.002075,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259387,-0.002075,0.002000,0.249992,0,0);}
.m13_c00236{transform:matrix(0.272176,-0.002177,0.002000,0.249992,0,0);-ms-transform:matrix(0.272176,-0.002177,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272176,-0.002177,0.002000,0.249992,0,0);}
.m30_c00236{transform:matrix(0.274181,-0.002193,0.002000,0.249992,0,0);-ms-transform:matrix(0.274181,-0.002193,0.002000,0.249992,0,0);-webkit-transform:matrix(0.274181,-0.002193,0.002000,0.249992,0,0);}
.m15_c00236{transform:matrix(0.313175,-0.002505,0.002000,0.249992,0,0);-ms-transform:matrix(0.313175,-0.002505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.313175,-0.002505,0.002000,0.249992,0,0);}
.m17_c00236{transform:matrix(0.363768,-0.002910,0.002000,0.249992,0,0);-ms-transform:matrix(0.363768,-0.002910,0.002000,0.249992,0,0);-webkit-transform:matrix(0.363768,-0.002910,0.002000,0.249992,0,0);}
.m0_c00236{transform:matrix(0.363828,0.004002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.363828,0.004002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.363828,0.004002,-0.002750,0.249985,0,0);}
.m19_c00236{transform:matrix(0.388483,-0.003108,0.002000,0.249992,0,0);-ms-transform:matrix(0.388483,-0.003108,0.002000,0.249992,0,0);-webkit-transform:matrix(0.388483,-0.003108,0.002000,0.249992,0,0);}
.m36_c00236{transform:matrix(0.393967,-0.003152,0.002000,0.249992,0,0);-ms-transform:matrix(0.393967,-0.003152,0.002000,0.249992,0,0);-webkit-transform:matrix(0.393967,-0.003152,0.002000,0.249992,0,0);}
.m2d_c00236{transform:matrix(0.407422,-0.003259,0.002000,0.249992,0,0);-ms-transform:matrix(0.407422,-0.003259,0.002000,0.249992,0,0);-webkit-transform:matrix(0.407422,-0.003259,0.002000,0.249992,0,0);}
.m25_c00236{transform:matrix(0.456325,-0.003651,0.002000,0.249992,0,0);-ms-transform:matrix(0.456325,-0.003651,0.002000,0.249992,0,0);-webkit-transform:matrix(0.456325,-0.003651,0.002000,0.249992,0,0);}
.m14_c00236{transform:matrix(0.690058,-0.005520,0.002000,0.249992,0,0);-ms-transform:matrix(0.690058,-0.005520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.690058,-0.005520,0.002000,0.249992,0,0);}
.m41_c00236{transform:matrix(0.796745,-0.006374,0.002000,0.249992,0,0);-ms-transform:matrix(0.796745,-0.006374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.796745,-0.006374,0.002000,0.249992,0,0);}
.mc_c00236{transform:matrix(0.967084,-0.007737,0.002000,0.249992,0,0);-ms-transform:matrix(0.967084,-0.007737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.967084,-0.007737,0.002000,0.249992,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;}
.fs9_c00236{font-size:33.600000px;}
.fs8_c00236{font-size:33.601075px;}
.fs6_c00236{font-size:61.951982px;}
.fs1_c00236{font-size:64.052050px;}
.fs4_c00236{font-size:66.152117px;}
.fs7_c00236{font-size:73.502352px;}
.fs2_c00236{font-size:74.552386px;}
.fs5_c00236{font-size:80.852587px;}
.fs3_c00236{font-size:93.452990px;}
.fs0_c00236{font-size:107.106479px;}
.y0_c00236{bottom:0.000000px;}
.y43_c00236{bottom:650.835900px;}
.y44_c00236{bottom:650.970000px;}
.y3c_c00236{bottom:675.719172px;}
.y3d_c00236{bottom:675.719700px;}
.y3e_c00236{bottom:675.719748px;}
.y3b_c00236{bottom:675.719904px;}
.y39_c00236{bottom:675.719916px;}
.y38_c00236{bottom:675.720048px;}
.y3a_c00236{bottom:675.720144px;}
.y40_c00236{bottom:675.720204px;}
.y3f_c00236{bottom:675.720276px;}
.y42_c00236{bottom:675.720336px;}
.y41_c00236{bottom:675.720732px;}
.y2f_c00236{bottom:700.610964px;}
.y37_c00236{bottom:700.611264px;}
.y36_c00236{bottom:700.611552px;}
.y33_c00236{bottom:700.611576px;}
.y30_c00236{bottom:700.611672px;}
.y35_c00236{bottom:700.611912px;}
.y34_c00236{bottom:700.611984px;}
.y32_c00236{bottom:700.612068px;}
.y31_c00236{bottom:700.612392px;}
.y27_c00236{bottom:720.817512px;}
.y2c_c00236{bottom:720.817548px;}
.y28_c00236{bottom:720.817560px;}
.y2e_c00236{bottom:720.818100px;}
.y2d_c00236{bottom:720.818136px;}
.y2b_c00236{bottom:720.818220px;}
.y29_c00236{bottom:720.818256px;}
.y2a_c00236{bottom:720.818544px;}
.y20_c00236{bottom:744.680496px;}
.y1f_c00236{bottom:744.680568px;}
.y1b_c00236{bottom:744.680616px;}
.y21_c00236{bottom:744.680844px;}
.y1e_c00236{bottom:744.681180px;}
.y1d_c00236{bottom:744.681312px;}
.y1c_c00236{bottom:744.681324px;}
.y23_c00236{bottom:744.681420px;}
.y24_c00236{bottom:744.681540px;}
.y22_c00236{bottom:744.681552px;}
.y26_c00236{bottom:744.682056px;}
.y25_c00236{bottom:744.682236px;}
.y19_c00236{bottom:768.148200px;}
.y16_c00236{bottom:768.148332px;}
.y18_c00236{bottom:768.148356px;}
.y17_c00236{bottom:768.148428px;}
.y1a_c00236{bottom:768.148596px;}
.yf_c00236{bottom:790.610652px;}
.y10_c00236{bottom:790.610940px;}
.ye_c00236{bottom:790.611024px;}
.y11_c00236{bottom:790.611516px;}
.y13_c00236{bottom:790.611864px;}
.y14_c00236{bottom:790.612032px;}
.y12_c00236{bottom:790.612164px;}
.y15_c00236{bottom:790.612344px;}
.y4_c00236{bottom:835.651500px;}
.y5_c00236{bottom:835.885152px;}
.y6_c00236{bottom:836.124384px;}
.y7_c00236{bottom:836.463696px;}
.y8_c00236{bottom:837.193704px;}
.y9_c00236{bottom:837.329784px;}
.ya_c00236{bottom:837.802848px;}
.yb_c00236{bottom:837.954024px;}
.yc_c00236{bottom:838.569900px;}
.yd_c00236{bottom:839.411460px;}
.y3_c00236{bottom:878.168080px;}
.y2_c00236{bottom:878.882464px;}
.y1_c00236{bottom:881.283000px;}
.hb_c00236{height:33.600000px;}
.ha_c00236{height:33.601075px;}
.h8_c00236{height:61.951982px;}
.h3_c00236{height:64.052050px;}
.h6_c00236{height:66.152117px;}
.h9_c00236{height:73.502352px;}
.h4_c00236{height:74.552386px;}
.h7_c00236{height:80.852587px;}
.h5_c00236{height:93.452990px;}
.h2_c00236{height:107.106479px;}
.h1_c00236{height:1005.000000px;}
.h0_c00236{height:1005.150000px;}
.w1_c00236{width:713.250000px;}
.w0_c00236{width:713.550000px;}
.x0_c00236{left:0.000000px;}
.x22_c00236{left:110.701968px;}
.x4_c00236{left:112.969500px;}
.xe_c00236{left:115.020432px;}
.x23_c00236{left:135.272040px;}
.x5_c00236{left:142.176000px;}
.x19_c00236{left:145.802316px;}
.x1_c00236{left:153.651000px;}
.x28_c00236{left:158.761680px;}
.x15_c00236{left:165.241836px;}
.xf_c00236{left:170.102460px;}
.x6_c00236{left:172.080000px;}
.x29_c00236{left:176.852832px;}
.x1a_c00236{left:179.552976px;}
.x2e_c00236{left:182.521320px;}
.x35_c00236{left:196.290000px;}
.x2f_c00236{left:198.992376px;}
.x24_c00236{left:207.363648px;}
.x10_c00236{left:211.953636px;}
.x7_c00236{left:214.494000px;}
.x25_c00236{left:235.713960px;}
.x1b_c00236{left:238.415244px;}
.x2a_c00236{left:263.255364px;}
.x30_c00236{left:267.033732px;}
.x16_c00236{left:268.385436px;}
.x1c_c00236{left:282.966600px;}
.x11_c00236{left:295.655988px;}
.x8_c00236{left:305.745000px;}
.x1d_c00236{left:312.396984px;}
.x2b_c00236{left:316.447272px;}
.x17_c00236{left:318.067116px;}
.x9_c00236{left:322.755000px;}
.x12_c00236{left:329.676660px;}
.x2c_c00236{left:339.937272px;}
.x1e_c00236{left:345.067572px;}
.x13_c00236{left:348.577872px;}
.x31_c00236{left:350.736084px;}
.x2_c00236{left:371.881500px;}
.xa_c00236{left:381.888000px;}
.x1f_c00236{left:383.408520px;}
.x14_c00236{left:388.538928px;}
.x32_c00236{left:393.667332px;}
.xb_c00236{left:400.785000px;}
.x2d_c00236{left:404.199888px;}
.x33_c00236{left:425.797884px;}
.x26_c00236{left:432.550560px;}
.x3_c00236{left:436.825500px;}
.x20_c00236{left:449.021220px;}
.x18_c00236{left:471.432432px;}
.xc_c00236{left:477.769500px;}
.x27_c00236{left:581.055564px;}
.xd_c00236{left:582.964500px;}
.x34_c00236{left:595.903836px;}
.x21_c00236{left:597.797736px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fs9_c00236{font-size:29.866667pt;}
.fs8_c00236{font-size:29.867622pt;}
.fs6_c00236{font-size:55.068429pt;}
.fs1_c00236{font-size:56.935155pt;}
.fs4_c00236{font-size:58.801882pt;}
.fs7_c00236{font-size:65.335424pt;}
.fs2_c00236{font-size:66.268787pt;}
.fs5_c00236{font-size:71.868966pt;}
.fs3_c00236{font-size:83.069325pt;}
.fs0_c00236{font-size:95.205759pt;}
.y0_c00236{bottom:0.000000pt;}
.y43_c00236{bottom:578.520800pt;}
.y44_c00236{bottom:578.640000pt;}
.y3c_c00236{bottom:600.639264pt;}
.y3d_c00236{bottom:600.639733pt;}
.y3e_c00236{bottom:600.639776pt;}
.y3b_c00236{bottom:600.639915pt;}
.y39_c00236{bottom:600.639925pt;}
.y38_c00236{bottom:600.640043pt;}
.y3a_c00236{bottom:600.640128pt;}
.y40_c00236{bottom:600.640181pt;}
.y3f_c00236{bottom:600.640245pt;}
.y42_c00236{bottom:600.640299pt;}
.y41_c00236{bottom:600.640651pt;}
.y2f_c00236{bottom:622.765301pt;}
.y37_c00236{bottom:622.765568pt;}
.y36_c00236{bottom:622.765824pt;}
.y33_c00236{bottom:622.765845pt;}
.y30_c00236{bottom:622.765931pt;}
.y35_c00236{bottom:622.766144pt;}
.y34_c00236{bottom:622.766208pt;}
.y32_c00236{bottom:622.766283pt;}
.y31_c00236{bottom:622.766571pt;}
.y27_c00236{bottom:640.726677pt;}
.y2c_c00236{bottom:640.726709pt;}
.y28_c00236{bottom:640.726720pt;}
.y2e_c00236{bottom:640.727200pt;}
.y2d_c00236{bottom:640.727232pt;}
.y2b_c00236{bottom:640.727307pt;}
.y29_c00236{bottom:640.727339pt;}
.y2a_c00236{bottom:640.727595pt;}
.y20_c00236{bottom:661.938219pt;}
.y1f_c00236{bottom:661.938283pt;}
.y1b_c00236{bottom:661.938325pt;}
.y21_c00236{bottom:661.938528pt;}
.y1e_c00236{bottom:661.938827pt;}
.y1d_c00236{bottom:661.938944pt;}
.y1c_c00236{bottom:661.938955pt;}
.y23_c00236{bottom:661.939040pt;}
.y24_c00236{bottom:661.939147pt;}
.y22_c00236{bottom:661.939157pt;}
.y26_c00236{bottom:661.939605pt;}
.y25_c00236{bottom:661.939765pt;}
.y19_c00236{bottom:682.798400pt;}
.y16_c00236{bottom:682.798517pt;}
.y18_c00236{bottom:682.798539pt;}
.y17_c00236{bottom:682.798603pt;}
.y1a_c00236{bottom:682.798752pt;}
.yf_c00236{bottom:702.765024pt;}
.y10_c00236{bottom:702.765280pt;}
.ye_c00236{bottom:702.765355pt;}
.y11_c00236{bottom:702.765792pt;}
.y13_c00236{bottom:702.766101pt;}
.y14_c00236{bottom:702.766251pt;}
.y12_c00236{bottom:702.766368pt;}
.y15_c00236{bottom:702.766528pt;}
.y4_c00236{bottom:742.801333pt;}
.y5_c00236{bottom:743.009024pt;}
.y6_c00236{bottom:743.221675pt;}
.y7_c00236{bottom:743.523285pt;}
.y8_c00236{bottom:744.172181pt;}
.y9_c00236{bottom:744.293141pt;}
.ya_c00236{bottom:744.713643pt;}
.yb_c00236{bottom:744.848021pt;}
.yc_c00236{bottom:745.395467pt;}
.yd_c00236{bottom:746.143520pt;}
.y3_c00236{bottom:780.593849pt;}
.y2_c00236{bottom:781.228857pt;}
.y1_c00236{bottom:783.362667pt;}
.hb_c00236{height:29.866667pt;}
.ha_c00236{height:29.867622pt;}
.h8_c00236{height:55.068429pt;}
.h3_c00236{height:56.935155pt;}
.h6_c00236{height:58.801882pt;}
.h9_c00236{height:65.335424pt;}
.h4_c00236{height:66.268787pt;}
.h7_c00236{height:71.868966pt;}
.h5_c00236{height:83.069325pt;}
.h2_c00236{height:95.205759pt;}
.h1_c00236{height:893.333333pt;}
.h0_c00236{height:893.466667pt;}
.w1_c00236{width:634.000000pt;}
.w0_c00236{width:634.266667pt;}
.x0_c00236{left:0.000000pt;}
.x22_c00236{left:98.401749pt;}
.x4_c00236{left:100.417333pt;}
.xe_c00236{left:102.240384pt;}
.x23_c00236{left:120.241813pt;}
.x5_c00236{left:126.378667pt;}
.x19_c00236{left:129.602059pt;}
.x1_c00236{left:136.578667pt;}
.x28_c00236{left:141.121493pt;}
.x15_c00236{left:146.881632pt;}
.xf_c00236{left:151.202187pt;}
.x6_c00236{left:152.960000pt;}
.x29_c00236{left:157.202517pt;}
.x1a_c00236{left:159.602645pt;}
.x2e_c00236{left:162.241173pt;}
.x35_c00236{left:174.480000pt;}
.x2f_c00236{left:176.882112pt;}
.x24_c00236{left:184.323243pt;}
.x10_c00236{left:188.403232pt;}
.x7_c00236{left:190.661333pt;}
.x25_c00236{left:209.523520pt;}
.x1b_c00236{left:211.924661pt;}
.x2a_c00236{left:234.004768pt;}
.x30_c00236{left:237.363317pt;}
.x16_c00236{left:238.564832pt;}
.x1c_c00236{left:251.525867pt;}
.x11_c00236{left:262.805323pt;}
.x8_c00236{left:271.773333pt;}
.x1d_c00236{left:277.686208pt;}
.x2b_c00236{left:281.286464pt;}
.x17_c00236{left:282.726325pt;}
.x9_c00236{left:286.893333pt;}
.x12_c00236{left:293.045920pt;}
.x2c_c00236{left:302.166464pt;}
.x1e_c00236{left:306.726731pt;}
.x13_c00236{left:309.846997pt;}
.x31_c00236{left:311.765408pt;}
.x2_c00236{left:330.561333pt;}
.xa_c00236{left:339.456000pt;}
.x1f_c00236{left:340.807573pt;}
.x14_c00236{left:345.367936pt;}
.x32_c00236{left:349.926517pt;}
.xb_c00236{left:356.253333pt;}
.x2d_c00236{left:359.288789pt;}
.x33_c00236{left:378.487008pt;}
.x26_c00236{left:384.489387pt;}
.x3_c00236{left:388.289333pt;}
.x20_c00236{left:399.129973pt;}
.x18_c00236{left:419.051051pt;}
.xc_c00236{left:424.684000pt;}
.x27_c00236{left:516.493835pt;}
.xd_c00236{left:518.190667pt;}
.x34_c00236{left:529.692299pt;}
.x21_c00236{left:531.375765pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mb8_c00237{transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.012235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012235,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{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);}
.m2c_c00237{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);}
.md_c00237{transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{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);}
.m30_c00237{transform:matrix(0.101305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101305,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.137510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137510,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);}
.maf_c00237{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);}
.ma3_c00237{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);}
.mba_c00237{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);}
.mb_c00237{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.mad_c00237{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);}
.m3b_c00237{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);}
.m97_c00237{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);}
.m6f_c00237{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);}
.m59_c00237{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);}
.m84_c00237{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);}
.m78_c00237{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);}
.mdc_c00237{transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);}
.m8e_c00237{transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159790,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{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);}
.m18_c00237{transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{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);}
.mb1_c00237{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);}
.ma1_c00237{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);}
.m55_c00237{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);}
.m5d_c00237{transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{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);}
.m60_c00237{transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);}
.mb4_c00237{transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);}
.md4_c00237{transform:matrix(0.166607,-0.001666,0.002500,0.249988,0,0);-ms-transform:matrix(0.166607,-0.001666,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166607,-0.001666,0.002500,0.249988,0,0);}
.m5e_c00237{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);}
.m9b_c00237{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);}
.mc1_c00237{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);}
.mab_c00237{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);}
.m50_c00237{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);}
.m82_c00237{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);}
.maa_c00237{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);}
.m9a_c00237{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);}
.m19_c00237{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);}
.m35_c00237{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_c00237{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);}
.m7e_c00237{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);}
.mda_c00237{transform:matrix(0.177166,-0.001772,0.002500,0.249988,0,0);-ms-transform:matrix(0.177166,-0.001772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177166,-0.001772,0.002500,0.249988,0,0);}
.m53_c00237{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);}
.m1a_c00237{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);}
.m7a_c00237{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);}
.m81_c00237{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);}
.m83_c00237{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);}
.m12_c00237{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{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);}
.m86_c00237{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);}
.m1e_c00237{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);}
.ma0_c00237{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);}
.m0_c00237{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);}
.mc0_c00237{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_c00237{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);}
.m3f_c00237{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);}
.me_c00237{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);}
.m5_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);}
.mb6_c00237{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);}
.m1c_c00237{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);}
.m79_c00237{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);}
.mb5_c00237{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);}
.md7_c00237{transform:matrix(0.184706,-0.001847,0.002500,0.249988,0,0);-ms-transform:matrix(0.184706,-0.001847,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184706,-0.001847,0.002500,0.249988,0,0);}
.m41_c00237{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);}
.m24_c00237{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);}
.m5b_c00237{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);}
.mbf_c00237{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);}
.m72_c00237{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);}
.m9f_c00237{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);}
.m7f_c00237{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);}
.m6b_c00237{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);}
.m40_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);}
.mac_c00237{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);}
.m34_c00237{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);}
.m42_c00237{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);}
.m45_c00237{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);}
.mc_c00237{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);}
.m16_c00237{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);}
.mbe_c00237{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);}
.ma9_c00237{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);}
.m68_c00237{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);}
.mdb_c00237{transform:matrix(0.191195,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191195,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191195,-0.001912,0.002500,0.249988,0,0);}
.m70_c00237{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);}
.md8_c00237{transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);-ms-transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);}
.m54_c00237{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);}
.m44_c00237{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);}
.m25_c00237{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);}
.m51_c00237{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);}
.mdd_c00237{transform:matrix(0.194075,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194075,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194075,-0.001941,0.002500,0.249988,0,0);}
.ma4_c00237{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);}
.m6c_c00237{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);}
.mb0_c00237{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);}
.m87_c00237{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);}
.m5a_c00237{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);}
.m80_c00237{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{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);}
.m37_c00237{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);}
.m3a_c00237{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);}
.mcb_c00237{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);}
.m95_c00237{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);}
.m6a_c00237{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);}
.m48_c00237{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);}
.m5c_c00237{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);}
.m71_c00237{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);}
.m32_c00237{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);}
.m8c_c00237{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);}
.md6_c00237{transform:matrix(0.200570,-0.002006,0.002500,0.249988,0,0);-ms-transform:matrix(0.200570,-0.002006,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200570,-0.002006,0.002500,0.249988,0,0);}
.mc7_c00237{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);}
.m7c_c00237{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);}
.m75_c00237{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);}
.m6d_c00237{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);}
.md2_c00237{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);}
.m46_c00237{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);}
.m14_c00237{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);}
.m6e_c00237{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);}
.m23_c00237{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);}
.mb2_c00237{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);}
.m22_c00237{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);}
.m9_c00237{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);}
.mce_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);}
.md3_c00237{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);}
.mc8_c00237{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);}
.m98_c00237{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);}
.ma8_c00237{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);}
.m28_c00237{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);}
.m52_c00237{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);}
.mf_c00237{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);}
.mcd_c00237{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);}
.m31_c00237{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);}
.ma6_c00237{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);}
.me0_c00237{transform:matrix(0.211564,-0.002116,0.002500,0.249988,0,0);-ms-transform:matrix(0.211564,-0.002116,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211564,-0.002116,0.002500,0.249988,0,0);}
.m3d_c00237{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);}
.mde_c00237{transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);}
.mca_c00237{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);}
.m43_c00237{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);}
.m13_c00237{transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{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);}
.m10_c00237{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);}
.m4e_c00237{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);}
.m9c_c00237{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);}
.m4f_c00237{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);}
.m33_c00237{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);}
.mc6_c00237{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);}
.mc4_c00237{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);}
.m7d_c00237{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);}
.mc9_c00237{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);}
.md1_c00237{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);}
.m15_c00237{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);}
.m99_c00237{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);}
.m77_c00237{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);}
.ma7_c00237{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);}
.m26_c00237{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);}
.m38_c00237{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);}
.m58_c00237{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);}
.m63_c00237{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);}
.m20_c00237{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{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);}
.mcf_c00237{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);}
.m3c_c00237{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.mb7_c00237{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);}
.m8d_c00237{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);}
.m5f_c00237{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);}
.m4_c00237{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);}
.m36_c00237{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);}
.m65_c00237{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);}
.m1b_c00237{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);}
.mb3_c00237{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);}
.mbd_c00237{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);}
.m56_c00237{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);}
.md0_c00237{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);}
.mcc_c00237{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{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);}
.m7b_c00237{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);}
.m96_c00237{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.md5_c00237{transform:matrix(0.241668,-0.002417,0.002500,0.249988,0,0);-ms-transform:matrix(0.241668,-0.002417,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241668,-0.002417,0.002500,0.249988,0,0);}
.m76_c00237{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);}
.m61_c00237{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);}
.m8f_c00237{transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{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);}
.m1d_c00237{transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258650,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);}
.me1_c00237{transform:matrix(0.263389,0.010546,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263389,0.010546,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263389,0.010546,-0.010002,0.249800,0,0);}
.m3e_c00237{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{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);}
.m8b_c00237{transform:matrix(0.272755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272755,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00237{transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302430,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305760,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);}
.mdf_c00237{transform:matrix(0.309030,-0.003090,0.002500,0.249988,0,0);-ms-transform:matrix(0.309030,-0.003090,0.002500,0.249988,0,0);-webkit-transform:matrix(0.309030,-0.003090,0.002500,0.249988,0,0);}
.mc3_c00237{transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.335595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335595,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336705,0.000000,0.000000,0.250000,0,0);}
.mc2_c00237{transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337670,0.000000,0.000000,0.250000,0,0);}
.md9_c00237{transform:matrix(0.341798,-0.003418,0.002500,0.249988,0,0);-ms-transform:matrix(0.341798,-0.003418,0.002500,0.249988,0,0);-webkit-transform:matrix(0.341798,-0.003418,0.002500,0.249988,0,0);}
.m39_c00237{transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00237{transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.372455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372455,0.000000,0.000000,0.250000,0,0);}
.mbb_c00237{transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.429090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435635,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.448865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448865,0.000000,0.000000,0.250000,0,0);}
.m4c_c00237{transform:matrix(0.451490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451490,0.000000,0.000000,0.250000,0,0);}
.mb9_c00237{transform:matrix(0.487055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487055,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.489175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489175,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.499065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499065,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;}
.fs10_c00237{font-size:22.050000px;}
.fs5_c00237{font-size:26.250000px;}
.fs11_c00237{font-size:47.250000px;}
.fs4_c00237{font-size:49.350000px;}
.fs6_c00237{font-size:50.400000px;}
.fs7_c00237{font-size:52.500000px;}
.fs12_c00237{font-size:54.602730px;}
.fsc_c00237{font-size:66.150000px;}
.fs3_c00237{font-size:69.300000px;}
.fs0_c00237{font-size:70.350000px;}
.fsd_c00237{font-size:71.400000px;}
.fsb_c00237{font-size:72.450000px;}
.fsa_c00237{font-size:73.500000px;}
.fsf_c00237{font-size:74.550000px;}
.fse_c00237{font-size:76.650000px;}
.fs1_c00237{font-size:78.750000px;}
.fs9_c00237{font-size:93.450000px;}
.fs2_c00237{font-size:128.100000px;}
.fs8_c00237{font-size:143.850000px;}
.fs13_c00237{font-size:236.202863px;}
.y0_c00237{bottom:0.000000px;}
.y34_c00237{bottom:119.112000px;}
.y27_c00237{bottom:169.291500px;}
.y2_c00237{bottom:169.428000px;}
.y28_c00237{bottom:169.583160px;}
.y29_c00237{bottom:170.141580px;}
.y2a_c00237{bottom:170.376465px;}
.y2b_c00237{bottom:170.611710px;}
.y2c_c00237{bottom:171.300390px;}
.y2d_c00237{bottom:171.426990px;}
.y2e_c00237{bottom:171.834645px;}
.y2f_c00237{bottom:172.158300px;}
.y30_c00237{bottom:172.385490px;}
.y31_c00237{bottom:173.046585px;}
.y32_c00237{bottom:173.516745px;}
.y33_c00237{bottom:173.862465px;}
.y26_c00237{bottom:191.047500px;}
.y9_c00237{bottom:191.442000px;}
.y8_c00237{bottom:209.040000px;}
.y7_c00237{bottom:218.211000px;}
.y6_c00237{bottom:227.359500px;}
.y1_c00237{bottom:242.460000px;}
.y25_c00237{bottom:246.192000px;}
.y24_c00237{bottom:253.887000px;}
.y23_c00237{bottom:299.449500px;}
.y22_c00237{bottom:322.627500px;}
.y5_c00237{bottom:345.952500px;}
.y21_c00237{bottom:354.780000px;}
.y4_c00237{bottom:368.199000px;}
.y20_c00237{bottom:391.501500px;}
.y1f_c00237{bottom:413.718000px;}
.y1e_c00237{bottom:437.112000px;}
.y1d_c00237{bottom:459.852000px;}
.y1c_c00237{bottom:482.068500px;}
.y1b_c00237{bottom:505.546500px;}
.y13_c00237{bottom:526.231500px;}
.y14_c00237{bottom:526.686000px;}
.y15_c00237{bottom:527.016000px;}
.y16_c00237{bottom:527.404500px;}
.y17_c00237{bottom:527.772000px;}
.y18_c00237{bottom:528.175500px;}
.y19_c00237{bottom:528.436500px;}
.y1a_c00237{bottom:528.849000px;}
.y12_c00237{bottom:551.235000px;}
.y11_c00237{bottom:574.578000px;}
.y10_c00237{bottom:597.282000px;}
.yf_c00237{bottom:620.091000px;}
.ye_c00237{bottom:642.871500px;}
.yd_c00237{bottom:665.676000px;}
.yc_c00237{bottom:687.807000px;}
.y3_c00237{bottom:726.064500px;}
.yb_c00237{bottom:767.422500px;}
.ya_c00237{bottom:811.243500px;}
.h12_c00237{height:22.050000px;}
.h7_c00237{height:26.250000px;}
.h13_c00237{height:47.250000px;}
.h6_c00237{height:49.350000px;}
.h8_c00237{height:50.400000px;}
.h9_c00237{height:52.500000px;}
.h14_c00237{height:54.602730px;}
.he_c00237{height:66.150000px;}
.h5_c00237{height:69.300000px;}
.h2_c00237{height:70.350000px;}
.hf_c00237{height:71.400000px;}
.hd_c00237{height:72.450000px;}
.hc_c00237{height:73.500000px;}
.h11_c00237{height:74.550000px;}
.h10_c00237{height:76.650000px;}
.h3_c00237{height:78.750000px;}
.hb_c00237{height:93.450000px;}
.h4_c00237{height:128.100000px;}
.ha_c00237{height:143.850000px;}
.h15_c00237{height:236.202863px;}
.h0_c00237{height:1008.450000px;}
.h1_c00237{height:1008.750000px;}
.w0_c00237{width:678.450000px;}
.w1_c00237{width:678.750000px;}
.x0_c00237{left:0.000000px;}
.x99_c00237{left:66.174000px;}
.x15_c00237{left:137.430000px;}
.x1_c00237{left:150.930000px;}
.xd_c00237{left:157.410000px;}
.x2_c00237{left:160.380000px;}
.x2e_c00237{left:162.270000px;}
.x16_c00237{left:163.620000px;}
.x28_c00237{left:167.670000px;}
.x4_c00237{left:170.640000px;}
.xe_c00237{left:172.260000px;}
.x17_c00237{left:174.690000px;}
.x2f_c00237{left:185.490000px;}
.x18_c00237{left:190.890000px;}
.x86_c00237{left:192.510000px;}
.x44_c00237{left:198.180000px;}
.x6e_c00237{left:202.770000px;}
.x5_c00237{left:203.850000px;}
.x4e_c00237{left:206.820000px;}
.x42_c00237{left:207.900000px;}
.x60_c00237{left:208.980000px;}
.x19_c00237{left:210.600000px;}
.x3c_c00237{left:216.000000px;}
.x30_c00237{left:217.890000px;}
.xf_c00237{left:220.050000px;}
.x57_c00237{left:225.720000px;}
.x4f_c00237{left:228.150000px;}
.x3_c00237{left:231.120000px;}
.x6_c00237{left:233.280000px;}
.x3d_c00237{left:234.900000px;}
.x7d_c00237{left:236.250000px;}
.x5b_c00237{left:237.600000px;}
.x45_c00237{left:241.110000px;}
.x82_c00237{left:243.270000px;}
.x1a_c00237{left:246.240000px;}
.x87_c00237{left:251.640000px;}
.x31_c00237{left:254.610000px;}
.x50_c00237{left:258.120000px;}
.x3f_c00237{left:263.250000px;}
.x61_c00237{left:265.140000px;}
.x71_c00237{left:267.030000px;}
.x3e_c00237{left:269.730000px;}
.x10_c00237{left:270.810000px;}
.x1b_c00237{left:272.700000px;}
.x5c_c00237{left:278.100000px;}
.x88_c00237{left:279.450000px;}
.x91_c00237{left:281.709000px;}
.x32_c00237{left:284.850000px;}
.x7e_c00237{left:285.930000px;}
.x1c_c00237{left:287.010000px;}
.x6f_c00237{left:288.090000px;}
.x7_c00237{left:292.140000px;}
.x43_c00237{left:293.220000px;}
.x7a_c00237{left:295.920000px;}
.x66_c00237{left:297.907500px;}
.x56_c00237{left:299.700000px;}
.x69_c00237{left:300.780000px;}
.x8_c00237{left:302.940000px;}
.x51_c00237{left:304.560000px;}
.x33_c00237{left:305.910000px;}
.x40_c00237{left:307.260000px;}
.x29_c00237{left:314.280000px;}
.x89_c00237{left:316.440000px;}
.x62_c00237{left:323.730000px;}
.x46_c00237{left:325.350000px;}
.x34_c00237{left:327.780000px;}
.x72_c00237{left:332.100000px;}
.x2a_c00237{left:334.260000px;}
.x7b_c00237{left:335.340000px;}
.x1d_c00237{left:339.120000px;}
.x9_c00237{left:341.010000px;}
.x41_c00237{left:344.520000px;}
.x47_c00237{left:346.410000px;}
.x83_c00237{left:349.110000px;}
.x11_c00237{left:361.530000px;}
.x7c_c00237{left:362.610000px;}
.x6a_c00237{left:364.230000px;}
.x73_c00237{left:366.660000px;}
.x63_c00237{left:368.280000px;}
.x58_c00237{left:369.360000px;}
.x1e_c00237{left:371.250000px;}
.x92_c00237{left:374.101500px;}
.x12_c00237{left:378.270000px;}
.x1f_c00237{left:380.430000px;}
.x5d_c00237{left:382.050000px;}
.x48_c00237{left:383.400000px;}
.x35_c00237{left:385.560000px;}
.x93_c00237{left:386.761500px;}
.x64_c00237{left:387.990000px;}
.x6b_c00237{left:389.610000px;}
.x52_c00237{left:396.360000px;}
.xa_c00237{left:398.790000px;}
.x8a_c00237{left:405.000000px;}
.x5e_c00237{left:407.160000px;}
.x20_c00237{left:408.510000px;}
.x6c_c00237{left:409.860000px;}
.x67_c00237{left:412.455000px;}
.x59_c00237{left:418.500000px;}
.x74_c00237{left:422.550000px;}
.x2b_c00237{left:428.490000px;}
.x6d_c00237{left:433.890000px;}
.x36_c00237{left:434.970000px;}
.x70_c00237{left:436.860000px;}
.x53_c00237{left:438.750000px;}
.xb_c00237{left:440.370000px;}
.x8b_c00237{left:441.720000px;}
.x7f_c00237{left:442.800000px;}
.x13_c00237{left:444.960000px;}
.x75_c00237{left:447.390000px;}
.x84_c00237{left:450.090000px;}
.xc_c00237{left:456.570000px;}
.x68_c00237{left:458.317500px;}
.x94_c00237{left:459.892500px;}
.x49_c00237{left:461.430000px;}
.x37_c00237{left:463.050000px;}
.x76_c00237{left:466.020000px;}
.x5f_c00237{left:469.800000px;}
.x54_c00237{left:471.150000px;}
.x4a_c00237{left:476.550000px;}
.x95_c00237{left:482.611500px;}
.x80_c00237{left:485.730000px;}
.x8e_c00237{left:487.350000px;}
.x55_c00237{left:493.560000px;}
.x21_c00237{left:495.180000px;}
.x65_c00237{left:503.280000px;}
.x81_c00237{left:506.520000px;}
.x38_c00237{left:511.920000px;}
.x22_c00237{left:513.000000px;}
.x4b_c00237{left:516.510000px;}
.x77_c00237{left:518.400000px;}
.x85_c00237{left:520.020000px;}
.x8c_c00237{left:524.610000px;}
.x14_c00237{left:525.960000px;}
.x8f_c00237{left:535.950000px;}
.x23_c00237{left:538.920000px;}
.x2c_c00237{left:543.510000px;}
.x78_c00237{left:544.590000px;}
.x96_c00237{left:548.721000px;}
.x4c_c00237{left:552.420000px;}
.x39_c00237{left:554.580000px;}
.x5a_c00237{left:556.200000px;}
.x90_c00237{left:558.900000px;}
.x3a_c00237{left:570.510000px;}
.x24_c00237{left:572.130000px;}
.x8d_c00237{left:581.310000px;}
.x79_c00237{left:586.980000px;}
.x3b_c00237{left:590.490000px;}
.x97_c00237{left:595.737000px;}
.x25_c00237{left:598.590000px;}
.x4d_c00237{left:600.480000px;}
.x26_c00237{left:626.130000px;}
.x98_c00237{left:630.309000px;}
.x27_c00237{left:643.680000px;}
.x2d_c00237{left:656.370000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:0.000000pt;}
.fs10_c00237{font-size:19.600000pt;}
.fs5_c00237{font-size:23.333333pt;}
.fs11_c00237{font-size:42.000000pt;}
.fs4_c00237{font-size:43.866667pt;}
.fs6_c00237{font-size:44.800000pt;}
.fs7_c00237{font-size:46.666667pt;}
.fs12_c00237{font-size:48.535760pt;}
.fsc_c00237{font-size:58.800000pt;}
.fs3_c00237{font-size:61.600000pt;}
.fs0_c00237{font-size:62.533333pt;}
.fsd_c00237{font-size:63.466667pt;}
.fsb_c00237{font-size:64.400000pt;}
.fsa_c00237{font-size:65.333333pt;}
.fsf_c00237{font-size:66.266667pt;}
.fse_c00237{font-size:68.133333pt;}
.fs1_c00237{font-size:70.000000pt;}
.fs9_c00237{font-size:83.066667pt;}
.fs2_c00237{font-size:113.866667pt;}
.fs8_c00237{font-size:127.866667pt;}
.fs13_c00237{font-size:209.958101pt;}
.y0_c00237{bottom:0.000000pt;}
.y34_c00237{bottom:105.877333pt;}
.y27_c00237{bottom:150.481333pt;}
.y2_c00237{bottom:150.602667pt;}
.y28_c00237{bottom:150.740587pt;}
.y29_c00237{bottom:151.236960pt;}
.y2a_c00237{bottom:151.445747pt;}
.y2b_c00237{bottom:151.654853pt;}
.y2c_c00237{bottom:152.267013pt;}
.y2d_c00237{bottom:152.379547pt;}
.y2e_c00237{bottom:152.741907pt;}
.y2f_c00237{bottom:153.029600pt;}
.y30_c00237{bottom:153.231547pt;}
.y31_c00237{bottom:153.819187pt;}
.y32_c00237{bottom:154.237107pt;}
.y33_c00237{bottom:154.544413pt;}
.y26_c00237{bottom:169.820000pt;}
.y9_c00237{bottom:170.170667pt;}
.y8_c00237{bottom:185.813333pt;}
.y7_c00237{bottom:193.965333pt;}
.y6_c00237{bottom:202.097333pt;}
.y1_c00237{bottom:215.520000pt;}
.y25_c00237{bottom:218.837333pt;}
.y24_c00237{bottom:225.677333pt;}
.y23_c00237{bottom:266.177333pt;}
.y22_c00237{bottom:286.780000pt;}
.y5_c00237{bottom:307.513333pt;}
.y21_c00237{bottom:315.360000pt;}
.y4_c00237{bottom:327.288000pt;}
.y20_c00237{bottom:348.001333pt;}
.y1f_c00237{bottom:367.749333pt;}
.y1e_c00237{bottom:388.544000pt;}
.y1d_c00237{bottom:408.757333pt;}
.y1c_c00237{bottom:428.505333pt;}
.y1b_c00237{bottom:449.374667pt;}
.y13_c00237{bottom:467.761333pt;}
.y14_c00237{bottom:468.165333pt;}
.y15_c00237{bottom:468.458667pt;}
.y16_c00237{bottom:468.804000pt;}
.y17_c00237{bottom:469.130667pt;}
.y18_c00237{bottom:469.489333pt;}
.y19_c00237{bottom:469.721333pt;}
.y1a_c00237{bottom:470.088000pt;}
.y12_c00237{bottom:489.986667pt;}
.y11_c00237{bottom:510.736000pt;}
.y10_c00237{bottom:530.917333pt;}
.yf_c00237{bottom:551.192000pt;}
.ye_c00237{bottom:571.441333pt;}
.yd_c00237{bottom:591.712000pt;}
.yc_c00237{bottom:611.384000pt;}
.y3_c00237{bottom:645.390667pt;}
.yb_c00237{bottom:682.153333pt;}
.ya_c00237{bottom:721.105333pt;}
.h12_c00237{height:19.600000pt;}
.h7_c00237{height:23.333333pt;}
.h13_c00237{height:42.000000pt;}
.h6_c00237{height:43.866667pt;}
.h8_c00237{height:44.800000pt;}
.h9_c00237{height:46.666667pt;}
.h14_c00237{height:48.535760pt;}
.he_c00237{height:58.800000pt;}
.h5_c00237{height:61.600000pt;}
.h2_c00237{height:62.533333pt;}
.hf_c00237{height:63.466667pt;}
.hd_c00237{height:64.400000pt;}
.hc_c00237{height:65.333333pt;}
.h11_c00237{height:66.266667pt;}
.h10_c00237{height:68.133333pt;}
.h3_c00237{height:70.000000pt;}
.hb_c00237{height:83.066667pt;}
.h4_c00237{height:113.866667pt;}
.ha_c00237{height:127.866667pt;}
.h15_c00237{height:209.958101pt;}
.h0_c00237{height:896.400000pt;}
.h1_c00237{height:896.666667pt;}
.w0_c00237{width:603.066667pt;}
.w1_c00237{width:603.333333pt;}
.x0_c00237{left:0.000000pt;}
.x99_c00237{left:58.821333pt;}
.x15_c00237{left:122.160000pt;}
.x1_c00237{left:134.160000pt;}
.xd_c00237{left:139.920000pt;}
.x2_c00237{left:142.560000pt;}
.x2e_c00237{left:144.240000pt;}
.x16_c00237{left:145.440000pt;}
.x28_c00237{left:149.040000pt;}
.x4_c00237{left:151.680000pt;}
.xe_c00237{left:153.120000pt;}
.x17_c00237{left:155.280000pt;}
.x2f_c00237{left:164.880000pt;}
.x18_c00237{left:169.680000pt;}
.x86_c00237{left:171.120000pt;}
.x44_c00237{left:176.160000pt;}
.x6e_c00237{left:180.240000pt;}
.x5_c00237{left:181.200000pt;}
.x4e_c00237{left:183.840000pt;}
.x42_c00237{left:184.800000pt;}
.x60_c00237{left:185.760000pt;}
.x19_c00237{left:187.200000pt;}
.x3c_c00237{left:192.000000pt;}
.x30_c00237{left:193.680000pt;}
.xf_c00237{left:195.600000pt;}
.x57_c00237{left:200.640000pt;}
.x4f_c00237{left:202.800000pt;}
.x3_c00237{left:205.440000pt;}
.x6_c00237{left:207.360000pt;}
.x3d_c00237{left:208.800000pt;}
.x7d_c00237{left:210.000000pt;}
.x5b_c00237{left:211.200000pt;}
.x45_c00237{left:214.320000pt;}
.x82_c00237{left:216.240000pt;}
.x1a_c00237{left:218.880000pt;}
.x87_c00237{left:223.680000pt;}
.x31_c00237{left:226.320000pt;}
.x50_c00237{left:229.440000pt;}
.x3f_c00237{left:234.000000pt;}
.x61_c00237{left:235.680000pt;}
.x71_c00237{left:237.360000pt;}
.x3e_c00237{left:239.760000pt;}
.x10_c00237{left:240.720000pt;}
.x1b_c00237{left:242.400000pt;}
.x5c_c00237{left:247.200000pt;}
.x88_c00237{left:248.400000pt;}
.x91_c00237{left:250.408000pt;}
.x32_c00237{left:253.200000pt;}
.x7e_c00237{left:254.160000pt;}
.x1c_c00237{left:255.120000pt;}
.x6f_c00237{left:256.080000pt;}
.x7_c00237{left:259.680000pt;}
.x43_c00237{left:260.640000pt;}
.x7a_c00237{left:263.040000pt;}
.x66_c00237{left:264.806667pt;}
.x56_c00237{left:266.400000pt;}
.x69_c00237{left:267.360000pt;}
.x8_c00237{left:269.280000pt;}
.x51_c00237{left:270.720000pt;}
.x33_c00237{left:271.920000pt;}
.x40_c00237{left:273.120000pt;}
.x29_c00237{left:279.360000pt;}
.x89_c00237{left:281.280000pt;}
.x62_c00237{left:287.760000pt;}
.x46_c00237{left:289.200000pt;}
.x34_c00237{left:291.360000pt;}
.x72_c00237{left:295.200000pt;}
.x2a_c00237{left:297.120000pt;}
.x7b_c00237{left:298.080000pt;}
.x1d_c00237{left:301.440000pt;}
.x9_c00237{left:303.120000pt;}
.x41_c00237{left:306.240000pt;}
.x47_c00237{left:307.920000pt;}
.x83_c00237{left:310.320000pt;}
.x11_c00237{left:321.360000pt;}
.x7c_c00237{left:322.320000pt;}
.x6a_c00237{left:323.760000pt;}
.x73_c00237{left:325.920000pt;}
.x63_c00237{left:327.360000pt;}
.x58_c00237{left:328.320000pt;}
.x1e_c00237{left:330.000000pt;}
.x92_c00237{left:332.534667pt;}
.x12_c00237{left:336.240000pt;}
.x1f_c00237{left:338.160000pt;}
.x5d_c00237{left:339.600000pt;}
.x48_c00237{left:340.800000pt;}
.x35_c00237{left:342.720000pt;}
.x93_c00237{left:343.788000pt;}
.x64_c00237{left:344.880000pt;}
.x6b_c00237{left:346.320000pt;}
.x52_c00237{left:352.320000pt;}
.xa_c00237{left:354.480000pt;}
.x8a_c00237{left:360.000000pt;}
.x5e_c00237{left:361.920000pt;}
.x20_c00237{left:363.120000pt;}
.x6c_c00237{left:364.320000pt;}
.x67_c00237{left:366.626667pt;}
.x59_c00237{left:372.000000pt;}
.x74_c00237{left:375.600000pt;}
.x2b_c00237{left:380.880000pt;}
.x6d_c00237{left:385.680000pt;}
.x36_c00237{left:386.640000pt;}
.x70_c00237{left:388.320000pt;}
.x53_c00237{left:390.000000pt;}
.xb_c00237{left:391.440000pt;}
.x8b_c00237{left:392.640000pt;}
.x7f_c00237{left:393.600000pt;}
.x13_c00237{left:395.520000pt;}
.x75_c00237{left:397.680000pt;}
.x84_c00237{left:400.080000pt;}
.xc_c00237{left:405.840000pt;}
.x68_c00237{left:407.393333pt;}
.x94_c00237{left:408.793333pt;}
.x49_c00237{left:410.160000pt;}
.x37_c00237{left:411.600000pt;}
.x76_c00237{left:414.240000pt;}
.x5f_c00237{left:417.600000pt;}
.x54_c00237{left:418.800000pt;}
.x4a_c00237{left:423.600000pt;}
.x95_c00237{left:428.988000pt;}
.x80_c00237{left:431.760000pt;}
.x8e_c00237{left:433.200000pt;}
.x55_c00237{left:438.720000pt;}
.x21_c00237{left:440.160000pt;}
.x65_c00237{left:447.360000pt;}
.x81_c00237{left:450.240000pt;}
.x38_c00237{left:455.040000pt;}
.x22_c00237{left:456.000000pt;}
.x4b_c00237{left:459.120000pt;}
.x77_c00237{left:460.800000pt;}
.x85_c00237{left:462.240000pt;}
.x8c_c00237{left:466.320000pt;}
.x14_c00237{left:467.520000pt;}
.x8f_c00237{left:476.400000pt;}
.x23_c00237{left:479.040000pt;}
.x2c_c00237{left:483.120000pt;}
.x78_c00237{left:484.080000pt;}
.x96_c00237{left:487.752000pt;}
.x4c_c00237{left:491.040000pt;}
.x39_c00237{left:492.960000pt;}
.x5a_c00237{left:494.400000pt;}
.x90_c00237{left:496.800000pt;}
.x3a_c00237{left:507.120000pt;}
.x24_c00237{left:508.560000pt;}
.x8d_c00237{left:516.720000pt;}
.x79_c00237{left:521.760000pt;}
.x3b_c00237{left:524.880000pt;}
.x97_c00237{left:529.544000pt;}
.x25_c00237{left:532.080000pt;}
.x4d_c00237{left:533.760000pt;}
.x26_c00237{left:556.560000pt;}
.x98_c00237{left:560.274667pt;}
.x27_c00237{left:572.160000pt;}
.x2d_c00237{left:583.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_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_2f6c0d3825a5d54c0b922384.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;}
.m54_c00238{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);}
.md8_c00238{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);}
.md4_c00238{transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);}
.meb_c00238{transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);}
.mfd_c00238{transform:matrix(0.118335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118335,0.000000,0.000000,0.250000,0,0);}
.m7d_c00238{transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);}
.mba_c00238{transform:matrix(0.132620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132620,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{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);}
.m79_c00238{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.152481,-0.001677,0.002750,0.249985,0,0);-ms-transform:matrix(0.152481,-0.001677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152481,-0.001677,0.002750,0.249985,0,0);}
.m2c_c00238{transform:matrix(0.152895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152895,0.000000,0.000000,0.250000,0,0);}
.mbe_c00238{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);}
.mc2_c00238{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);}
.mcc_c00238{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);}
.m80_c00238{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);}
.m8b_c00238{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);}
.mca_c00238{transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157670,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{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_c00238{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);}
.m77_c00238{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);}
.m78_c00238{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);}
.mb4_c00238{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);}
.m74_c00238{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);}
.m7f_c00238{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);}
.m25_c00238{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);}
.m38_c00238{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);}
.m5a_c00238{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);}
.ma3_c00238{transform:matrix(0.163692,0.001637,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163692,0.001637,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163692,0.001637,-0.002500,0.249988,0,0);}
.m114_c00238{transform:matrix(0.163836,-0.002130,0.003250,0.249979,0,0);-ms-transform:matrix(0.163836,-0.002130,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163836,-0.002130,0.003250,0.249979,0,0);}
.m5_c00238{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);}
.mb0_c00238{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);}
.m73_c00238{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);}
.m7_c00238{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);}
.m2a_c00238{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);}
.m6e_c00238{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);}
.m83_c00238{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);}
.m55_c00238{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);}
.m94_c00238{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);}
.m109_c00238{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);}
.m7c_c00238{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);}
.m16_c00238{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);}
.m22_c00238{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);}
.mc3_c00238{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);}
.md7_c00238{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);}
.m6_c00238{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);}
.m84_c00238{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);}
.m9a_c00238{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);}
.m96_c00238{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);}
.md0_c00238{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);}
.m13_c00238{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);}
.m9d_c00238{transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171591,0.001716,-0.002500,0.249988,0,0);}
.mcd_c00238{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);}
.me9_c00238{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);}
.m18_c00238{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);}
.mc0_c00238{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);}
.m12_c00238{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);}
.ma1_c00238{transform:matrix(0.174011,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174011,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174011,0.001740,-0.002500,0.249988,0,0);}
.m6a_c00238{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);}
.ma6_c00238{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);}
.m70_c00238{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);}
.m7b_c00238{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);}
.m31_c00238{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);}
.mb7_c00238{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);}
.m35_c00238{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);}
.m95_c00238{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);}
.m8_c00238{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);}
.m17_c00238{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);}
.m1f_c00238{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);}
.m72_c00238{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_c00238{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);}
.ma_c00238{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);}
.m113_c00238{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);}
.m10c_c00238{transform:matrix(0.178285,-0.002318,0.003250,0.249979,0,0);-ms-transform:matrix(0.178285,-0.002318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178285,-0.002318,0.003250,0.249979,0,0);}
.m9b_c00238{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);}
.m120_c00238{transform:matrix(0.179100,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179100,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179100,-0.002328,0.003250,0.249979,0,0);}
.m39_c00238{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);}
.m32_c00238{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);}
.mbf_c00238{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);}
.m9f_c00238{transform:matrix(0.180496,0.001805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180496,0.001805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180496,0.001805,-0.002500,0.249988,0,0);}
.m76_c00238{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);}
.m71_c00238{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);}
.m3_c00238{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);}
.mf8_c00238{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);}
.m2f_c00238{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);}
.mc4_c00238{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);}
.m6c_c00238{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);}
.m75_c00238{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);}
.mf3_c00238{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);}
.m7e_c00238{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);}
.m97_c00238{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);}
.me_c00238{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);}
.mbb_c00238{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);}
.mf_c00238{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);}
.mb1_c00238{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);}
.mb6_c00238{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);}
.me2_c00238{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);}
.mce_c00238{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);}
.m5b_c00238{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);}
.m110_c00238{transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);-ms-transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187814,-0.002442,0.003250,0.249979,0,0);}
.m24_c00238{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.me6_c00238{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);}
.m4_c00238{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);}
.m2d_c00238{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);}
.mb2_c00238{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);}
.mec_c00238{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);}
.ma7_c00238{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);}
.m108_c00238{transform:matrix(0.189644,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189644,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189644,-0.002465,0.003250,0.249979,0,0);}
.m34_c00238{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);}
.m20_c00238{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);}
.m5f_c00238{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);}
.m33_c00238{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);}
.mde_c00238{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);}
.m19_c00238{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);}
.m8a_c00238{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);}
.m10_c00238{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);}
.m45_c00238{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);}
.m112_c00238{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);}
.ma8_c00238{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);}
.ma2_c00238{transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193085,0.001931,-0.002500,0.249988,0,0);}
.m11e_c00238{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);}
.mf2_c00238{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);}
.mbd_c00238{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);}
.me7_c00238{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);}
.m36_c00238{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);}
.m10a_c00238{transform:matrix(0.194929,-0.002534,0.003250,0.249979,0,0);-ms-transform:matrix(0.194929,-0.002534,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194929,-0.002534,0.003250,0.249979,0,0);}
.m37_c00238{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);}
.m2_c00238{transform:matrix(0.195783,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195783,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195783,-0.002154,0.002750,0.249985,0,0);}
.m7a_c00238{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);}
.m11d_c00238{transform:matrix(0.196728,-0.002557,0.003250,0.249979,0,0);-ms-transform:matrix(0.196728,-0.002557,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196728,-0.002557,0.003250,0.249979,0,0);}
.ma0_c00238{transform:matrix(0.197265,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197265,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197265,0.001973,-0.002500,0.249988,0,0);}
.m15_c00238{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);}
.m60_c00238{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);}
.m1a_c00238{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);}
.mcf_c00238{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);}
.me1_c00238{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);}
.m118_c00238{transform:matrix(0.197788,-0.002571,0.003250,0.249979,0,0);-ms-transform:matrix(0.197788,-0.002571,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197788,-0.002571,0.003250,0.249979,0,0);}
.m2b_c00238{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);}
.m6b_c00238{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);}
.m41_c00238{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);}
.mc8_c00238{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);}
.med_c00238{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);}
.m88_c00238{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);}
.mc6_c00238{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);}
.mc_c00238{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);}
.m59_c00238{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);}
.maa_c00238{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);}
.m3d_c00238{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);}
.m2e_c00238{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);}
.me3_c00238{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);}
.m10b_c00238{transform:matrix(0.199693,-0.002596,0.003250,0.249979,0,0);-ms-transform:matrix(0.199693,-0.002596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199693,-0.002596,0.003250,0.249979,0,0);}
.m3a_c00238{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);}
.me8_c00238{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);}
.m4a_c00238{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);}
.mdb_c00238{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);}
.m44_c00238{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);}
.m121_c00238{transform:matrix(0.201063,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201063,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201063,-0.002614,0.003250,0.249979,0,0);}
.m8f_c00238{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);}
.mef_c00238{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);}
.mcb_c00238{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);}
.mdf_c00238{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);}
.mad_c00238{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);}
.mff_c00238{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);}
.m9e_c00238{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);}
.m40_c00238{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);}
.mab_c00238{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);}
.mc7_c00238{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);}
.mb8_c00238{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);}
.m1e_c00238{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);}
.mee_c00238{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);}
.m9_c00238{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);}
.m57_c00238{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);}
.m14_c00238{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);}
.m103_c00238{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);}
.m8e_c00238{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);}
.m56_c00238{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);}
.m10d_c00238{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);}
.m5d_c00238{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);}
.mbc_c00238{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);}
.m102_c00238{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);}
.mfa_c00238{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);}
.ma4_c00238{transform:matrix(0.210654,0.002107,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210654,0.002107,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210654,0.002107,-0.002500,0.249988,0,0);}
.m8d_c00238{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);}
.m1b_c00238{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);}
.m28_c00238{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);}
.m3f_c00238{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);}
.m6f_c00238{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);}
.m4d_c00238{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);}
.ma9_c00238{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);}
.m11c_c00238{transform:matrix(0.213087,-0.002770,0.003250,0.249979,0,0);-ms-transform:matrix(0.213087,-0.002770,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213087,-0.002770,0.003250,0.249979,0,0);}
.m67_c00238{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);}
.m93_c00238{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);}
.m64_c00238{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);}
.m3e_c00238{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);}
.m81_c00238{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);}
.m61_c00238{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);}
.m82_c00238{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);}
.mb9_c00238{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);}
.mf4_c00238{transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);}
.mae_c00238{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);}
.mf7_c00238{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);}
.mb5_c00238{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);}
.me5_c00238{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);}
.mc1_c00238{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);}
.m5c_c00238{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);}
.m11f_c00238{transform:matrix(0.218052,-0.002835,0.003250,0.249979,0,0);-ms-transform:matrix(0.218052,-0.002835,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218052,-0.002835,0.003250,0.249979,0,0);}
.mb_c00238{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);}
.m42_c00238{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);}
.m91_c00238{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);}
.m87_c00238{transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);}
.m89_c00238{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);}
.m10e_c00238{transform:matrix(0.220901,-0.002872,0.003250,0.249979,0,0);-ms-transform:matrix(0.220901,-0.002872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220901,-0.002872,0.003250,0.249979,0,0);}
.mfc_c00238{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);}
.m85_c00238{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);}
.m68_c00238{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);}
.m105_c00238{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);}
.mf1_c00238{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);}
.m23_c00238{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);}
.mea_c00238{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);}
.m27_c00238{transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{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);}
.mac_c00238{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);}
.mc5_c00238{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);}
.m11_c00238{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);}
.m111_c00238{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);}
.m107_c00238{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);}
.m66_c00238{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);}
.m46_c00238{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);}
.mdd_c00238{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);}
.m3c_c00238{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_c00238{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);}
.ma5_c00238{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);}
.m119_c00238{transform:matrix(0.228116,-0.002966,0.003250,0.249979,0,0);-ms-transform:matrix(0.228116,-0.002966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228116,-0.002966,0.003250,0.249979,0,0);}
.m115_c00238{transform:matrix(0.229201,-0.002980,0.003250,0.249979,0,0);-ms-transform:matrix(0.229201,-0.002980,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229201,-0.002980,0.003250,0.249979,0,0);}
.m92_c00238{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);}
.mfb_c00238{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);}
.m86_c00238{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);}
.m48_c00238{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);}
.mfe_c00238{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.m104_c00238{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.m51_c00238{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m69_c00238{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);}
.md_c00238{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);}
.m29_c00238{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);}
.m50_c00238{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);}
.m5e_c00238{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);}
.mda_c00238{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);}
.m53_c00238{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.mf5_c00238{transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);}
.m58_c00238{transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);}
.mf6_c00238{transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00238{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);}
.m4e_c00238{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);}
.m30_c00238{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m99_c00238{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m10f_c00238{transform:matrix(0.249449,-0.003243,0.003250,0.249979,0,0);-ms-transform:matrix(0.249449,-0.003243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249449,-0.003243,0.003250,0.249979,0,0);}
.m11b_c00238{transform:matrix(0.250114,-0.003251,0.003250,0.249979,0,0);-ms-transform:matrix(0.250114,-0.003251,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250114,-0.003251,0.003250,0.249979,0,0);}
.m4f_c00238{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);}
.m100_c00238{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{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);}
.m106_c00238{transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);}
.md5_c00238{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);}
.m47_c00238{transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);}
.m11a_c00238{transform:matrix(0.263443,-0.003425,0.003250,0.249979,0,0);-ms-transform:matrix(0.263443,-0.003425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263443,-0.003425,0.003250,0.249979,0,0);}
.me4_c00238{transform:matrix(0.263510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263510,0.000000,0.000000,0.250000,0,0);}
.m9c_c00238{transform:matrix(0.265372,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265372,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265372,0.002654,-0.002500,0.249988,0,0);}
.m62_c00238{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m6d_c00238{transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267040,0.000000,0.000000,0.250000,0,0);}
.md3_c00238{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.md9_c00238{transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);}
.md1_c00238{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);}
.m90_c00238{transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284570,0.000000,0.000000,0.250000,0,0);}
.mdc_c00238{transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294510,0.000000,0.000000,0.250000,0,0);}
.maf_c00238{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);}
.m98_c00238{transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);}
.m65_c00238{transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);}
.m43_c00238{transform:matrix(0.311755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00238{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);}
.mf9_c00238{transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);}
.mf0_c00238{transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);}
.me0_c00238{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);}
.m52_c00238{transform:matrix(0.374210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374210,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.410040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410040,0.000000,0.000000,0.250000,0,0);}
.m101_c00238{transform:matrix(0.419520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419520,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.434210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434210,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.487316,-0.005360,0.002750,0.249985,0,0);-ms-transform:matrix(0.487316,-0.005360,0.002750,0.249985,0,0);-webkit-transform:matrix(0.487316,-0.005360,0.002750,0.249985,0,0);}
.m117_c00238{transform:matrix(0.609089,-0.007918,0.003250,0.249979,0,0);-ms-transform:matrix(0.609089,-0.007918,0.003250,0.249979,0,0);-webkit-transform:matrix(0.609089,-0.007918,0.003250,0.249979,0,0);}
.m122_c00238{transform:matrix(0.610113,-0.007931,0.003250,0.249979,0,0);-ms-transform:matrix(0.610113,-0.007931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.610113,-0.007931,0.003250,0.249979,0,0);}
.md6_c00238{transform:matrix(0.748545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748545,0.000000,0.000000,0.250000,0,0);}
.m116_c00238{transform:matrix(0.858662,-0.011163,0.003250,0.249979,0,0);-ms-transform:matrix(0.858662,-0.011163,0.003250,0.249979,0,0);-webkit-transform:matrix(0.858662,-0.011163,0.003250,0.249979,0,0);}
.md2_c00238{transform:matrix(0.939265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939265,0.000000,0.000000,0.250000,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:1952.176563px;}
.fc0_c00238{color:transparent;}
.fs13_c00238{font-size:29.400000px;}
.fs15_c00238{font-size:46.200000px;}
.fs14_c00238{font-size:50.400000px;}
.fs16_c00238{font-size:52.504436px;}
.fse_c00238{font-size:60.900000px;}
.fs10_c00238{font-size:61.950000px;}
.fsb_c00238{font-size:63.000000px;}
.fsd_c00238{font-size:64.050000px;}
.fs9_c00238{font-size:65.100000px;}
.fs7_c00238{font-size:66.150000px;}
.fs11_c00238{font-size:66.153307px;}
.fsf_c00238{font-size:68.250000px;}
.fsa_c00238{font-size:69.300000px;}
.fs4_c00238{font-size:70.350000px;}
.fsc_c00238{font-size:71.400000px;}
.fs2_c00238{font-size:72.450000px;}
.fs8_c00238{font-size:73.500000px;}
.fs6_c00238{font-size:74.550000px;}
.fs3_c00238{font-size:76.650000px;}
.fs12_c00238{font-size:77.700000px;}
.fs5_c00238{font-size:99.750000px;}
.fs1_c00238{font-size:168.010164px;}
.fs0_c00238{font-size:236.264293px;}
.y0_c00238{bottom:0.000000px;}
.y3e_c00238{bottom:143.368785px;}
.y3f_c00238{bottom:143.673117px;}
.y40_c00238{bottom:143.895245px;}
.y41_c00238{bottom:144.411868px;}
.y42_c00238{bottom:144.855477px;}
.y43_c00238{bottom:144.988863px;}
.y44_c00238{bottom:145.273215px;}
.y45_c00238{bottom:145.369919px;}
.y46_c00238{bottom:145.505490px;}
.y47_c00238{bottom:145.737236px;}
.y48_c00238{bottom:146.082718px;}
.y49_c00238{bottom:146.240183px;}
.y4a_c00238{bottom:146.632983px;}
.y30_c00238{bottom:159.301500px;}
.y31_c00238{bottom:159.543671px;}
.y32_c00238{bottom:159.750507px;}
.y33_c00238{bottom:160.295142px;}
.y34_c00238{bottom:160.712618px;}
.y35_c00238{bottom:161.007614px;}
.y36_c00238{bottom:162.022004px;}
.y37_c00238{bottom:162.393479px;}
.y38_c00238{bottom:162.537506px;}
.y39_c00238{bottom:162.930587px;}
.y3a_c00238{bottom:163.888778px;}
.y3b_c00238{bottom:164.264406px;}
.y3c_c00238{bottom:165.005231px;}
.y3d_c00238{bottom:165.272108px;}
.y2f_c00238{bottom:182.413500px;}
.y2e_c00238{bottom:200.287500px;}
.y2d_c00238{bottom:218.274000px;}
.y2c_c00238{bottom:246.171000px;}
.y2b_c00238{bottom:268.650000px;}
.y2a_c00238{bottom:291.507000px;}
.y29_c00238{bottom:314.625000px;}
.y28_c00238{bottom:337.770000px;}
.y27_c00238{bottom:360.079500px;}
.y26_c00238{bottom:380.938770px;}
.y25_c00238{bottom:381.222630px;}
.y24_c00238{bottom:381.948915px;}
.y23_c00238{bottom:382.183290px;}
.y22_c00238{bottom:382.656285px;}
.y21_c00238{bottom:383.106750px;}
.y20_c00238{bottom:383.379465px;}
.y1f_c00238{bottom:383.617050px;}
.y1e_c00238{bottom:383.941500px;}
.y1d_c00238{bottom:405.996000px;}
.y1c_c00238{bottom:428.410500px;}
.y1b_c00238{bottom:451.092000px;}
.y1a_c00238{bottom:473.787000px;}
.y19_c00238{bottom:497.142000px;}
.y18_c00238{bottom:519.246000px;}
.y17_c00238{bottom:541.468500px;}
.y16_c00238{bottom:564.499500px;}
.y15_c00238{bottom:587.137500px;}
.yd_c00238{bottom:609.120000px;}
.ye_c00238{bottom:609.274500px;}
.yf_c00238{bottom:609.675000px;}
.y10_c00238{bottom:610.237500px;}
.y11_c00238{bottom:610.869000px;}
.y12_c00238{bottom:611.424000px;}
.y13_c00238{bottom:613.533000px;}
.y14_c00238{bottom:614.595000px;}
.yc_c00238{bottom:631.530000px;}
.yb_c00238{bottom:654.142500px;}
.ya_c00238{bottom:677.242500px;}
.y9_c00238{bottom:699.568500px;}
.y8_c00238{bottom:722.031000px;}
.y7_c00238{bottom:745.324500px;}
.y6_c00238{bottom:767.340000px;}
.y5_c00238{bottom:790.225500px;}
.y4_c00238{bottom:812.397000px;}
.y3_c00238{bottom:873.469725px;}
.y1_c00238{bottom:896.944500px;}
.y2_c00238{bottom:901.399005px;}
.h15_c00238{height:29.400000px;}
.h17_c00238{height:46.200000px;}
.h16_c00238{height:50.400000px;}
.h18_c00238{height:52.504436px;}
.h10_c00238{height:60.900000px;}
.h12_c00238{height:61.950000px;}
.hd_c00238{height:63.000000px;}
.hf_c00238{height:64.050000px;}
.hb_c00238{height:65.100000px;}
.h9_c00238{height:66.150000px;}
.h13_c00238{height:66.153307px;}
.h11_c00238{height:68.250000px;}
.hc_c00238{height:69.300000px;}
.h6_c00238{height:70.350000px;}
.he_c00238{height:71.400000px;}
.h4_c00238{height:72.450000px;}
.ha_c00238{height:73.500000px;}
.h8_c00238{height:74.550000px;}
.h5_c00238{height:76.650000px;}
.h14_c00238{height:77.700000px;}
.h7_c00238{height:99.750000px;}
.h3_c00238{height:168.010164px;}
.h2_c00238{height:236.264293px;}
.h1_c00238{height:1005.000000px;}
.h0_c00238{height:1005.150000px;}
.w1_c00238{width:713.250000px;}
.w0_c00238{width:713.550000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:30.082500px;}
.x3_c00238{left:32.816022px;}
.x98_c00238{left:73.440000px;}
.x89_c00238{left:81.270000px;}
.x9d_c00238{left:82.518000px;}
.x85_c00238{left:87.750000px;}
.x99_c00238{left:99.360000px;}
.x36_c00238{left:102.060000px;}
.x3f_c00238{left:103.830000px;}
.x74_c00238{left:105.300000px;}
.x64_c00238{left:107.730000px;}
.x14_c00238{left:108.810000px;}
.x51_c00238{left:110.700000px;}
.x29_c00238{left:112.860000px;}
.x40_c00238{left:114.153000px;}
.x4_c00238{left:115.290000px;}
.x46_c00238{left:116.640000px;}
.x8a_c00238{left:118.800000px;}
.xa1_c00238{left:120.236508px;}
.x9a_c00238{left:125.820000px;}
.x52_c00238{left:133.650000px;}
.x47_c00238{left:136.620000px;}
.x6f_c00238{left:138.240000px;}
.x1c_c00238{left:139.320000px;}
.x24_c00238{left:141.750000px;}
.x75_c00238{left:142.830000px;}
.xe_c00238{left:144.990000px;}
.x6b_c00238{left:146.811000px;}
.x2f_c00238{left:148.500000px;}
.x60_c00238{left:156.600000px;}
.x56_c00238{left:157.680000px;}
.x15_c00238{left:158.760000px;}
.x4a_c00238{left:160.920000px;}
.x5_c00238{left:162.000000px;}
.x91_c00238{left:163.080000px;}
.x65_c00238{left:164.160000px;}
.x7e_c00238{left:167.670000px;}
.x6c_c00238{left:170.569500px;}
.x25_c00238{left:172.260000px;}
.x37_c00238{left:173.880000px;}
.x8b_c00238{left:174.960000px;}
.x76_c00238{left:176.040000px;}
.x7c_c00238{left:177.390000px;}
.x41_c00238{left:178.410000px;}
.x7f_c00238{left:183.330000px;}
.x1d_c00238{left:187.650000px;}
.x6_c00238{left:191.700000px;}
.x6d_c00238{left:197.841000px;}
.x77_c00238{left:199.800000px;}
.x16_c00238{left:201.420000px;}
.x1e_c00238{left:204.390000px;}
.x86_c00238{left:206.010000px;}
.x80_c00238{left:208.980000px;}
.x70_c00238{left:211.680000px;}
.x2a_c00238{left:213.030000px;}
.x30_c00238{left:214.380000px;}
.x26_c00238{left:216.540000px;}
.xf_c00238{left:217.890000px;}
.x92_c00238{left:219.510000px;}
.x42_c00238{left:220.533000px;}
.x7_c00238{left:223.560000px;}
.x38_c00238{left:225.720000px;}
.x17_c00238{left:228.150000px;}
.x81_c00238{left:229.770000px;}
.x4b_c00238{left:235.980000px;}
.x61_c00238{left:238.680000px;}
.x5a_c00238{left:241.650000px;}
.x5d_c00238{left:243.270000px;}
.x1f_c00238{left:247.050000px;}
.x78_c00238{left:248.670000px;}
.x10_c00238{left:251.640000px;}
.x8_c00238{left:254.070000px;}
.x43_c00238{left:257.499000px;}
.x48_c00238{left:260.280000px;}
.x31_c00238{left:264.330000px;}
.x8c_c00238{left:267.300000px;}
.x62_c00238{left:269.190000px;}
.x27_c00238{left:270.270000px;}
.x57_c00238{left:272.160000px;}
.x82_c00238{left:274.050000px;}
.x4c_c00238{left:275.940000px;}
.x18_c00238{left:281.880000px;}
.x69_c00238{left:284.310000px;}
.x5e_c00238{left:285.390000px;}
.x5b_c00238{left:286.470000px;}
.x53_c00238{left:287.820000px;}
.x6e_c00238{left:290.187000px;}
.x9e_c00238{left:291.787500px;}
.x58_c00238{left:296.460000px;}
.x39_c00238{left:298.890000px;}
.x9_c00238{left:302.400000px;}
.x66_c00238{left:308.880000px;}
.x2b_c00238{left:310.770000px;}
.x71_c00238{left:311.850000px;}
.x19_c00238{left:314.010000px;}
.x54_c00238{left:316.170000px;}
.x4d_c00238{left:318.060000px;}
.x11_c00238{left:319.410000px;}
.x3a_c00238{left:322.110000px;}
.x67_c00238{left:323.730000px;}
.xa_c00238{left:327.780000px;}
.x20_c00238{left:332.100000px;}
.x12_c00238{left:340.740000px;}
.x28_c00238{left:342.090000px;}
.x72_c00238{left:343.170000px;}
.x83_c00238{left:346.140000px;}
.x4e_c00238{left:350.460000px;}
.x79_c00238{left:351.810000px;}
.x3b_c00238{left:353.160000px;}
.x5f_c00238{left:355.860000px;}
.x32_c00238{left:357.750000px;}
.x7d_c00238{left:360.450000px;}
.x9f_c00238{left:361.678500px;}
.x2c_c00238{left:363.960000px;}
.x8d_c00238{left:367.470000px;}
.x49_c00238{left:368.820000px;}
.x55_c00238{left:370.170000px;}
.x68_c00238{left:371.250000px;}
.x21_c00238{left:372.870000px;}
.x1a_c00238{left:377.190000px;}
.xa2_c00238{left:378.377797px;}
.x13_c00238{left:379.620000px;}
.x3c_c00238{left:385.020000px;}
.x6a_c00238{left:386.910000px;}
.x2d_c00238{left:388.800000px;}
.x7a_c00238{left:392.310000px;}
.xb_c00238{left:395.550000px;}
.x44_c00238{left:398.056500px;}
.x22_c00238{left:403.110000px;}
.x5c_c00238{left:408.510000px;}
.x84_c00238{left:410.130000px;}
.x33_c00238{left:412.020000px;}
.x3d_c00238{left:413.640000px;}
.x63_c00238{left:415.260000px;}
.xc_c00238{left:417.960000px;}
.x59_c00238{left:421.470000px;}
.x1b_c00238{left:423.360000px;}
.x23_c00238{left:430.380000px;}
.x2_c00238{left:435.037500px;}
.x7b_c00238{left:436.860000px;}
.x4f_c00238{left:439.560000px;}
.xa3_c00238{left:441.300892px;}
.x73_c00238{left:443.070000px;}
.x87_c00238{left:447.660000px;}
.x93_c00238{left:450.360000px;}
.xd_c00238{left:457.380000px;}
.x34_c00238{left:458.460000px;}
.x50_c00238{left:459.810000px;}
.x3e_c00238{left:463.860000px;}
.x45_c00238{left:468.819000px;}
.x8e_c00238{left:472.230000px;}
.x9b_c00238{left:478.980000px;}
.x35_c00238{left:484.650000px;}
.x2e_c00238{left:487.350000px;}
.x94_c00238{left:490.860000px;}
.x95_c00238{left:510.570000px;}
.x8f_c00238{left:514.620000px;}
.xa0_c00238{left:521.266500px;}
.x96_c00238{left:526.500000px;}
.x90_c00238{left:530.010000px;}
.x9c_c00238{left:542.700000px;}
.x88_c00238{left:547.020000px;}
.x97_c00238{left:599.670000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
._0_c00238{width:1735.268056pt;}
.fs13_c00238{font-size:26.133333pt;}
.fs15_c00238{font-size:41.066667pt;}
.fs14_c00238{font-size:44.800000pt;}
.fs16_c00238{font-size:46.670610pt;}
.fse_c00238{font-size:54.133333pt;}
.fs10_c00238{font-size:55.066667pt;}
.fsb_c00238{font-size:56.000000pt;}
.fsd_c00238{font-size:56.933333pt;}
.fs9_c00238{font-size:57.866667pt;}
.fs7_c00238{font-size:58.800000pt;}
.fs11_c00238{font-size:58.802940pt;}
.fsf_c00238{font-size:60.666667pt;}
.fsa_c00238{font-size:61.600000pt;}
.fs4_c00238{font-size:62.533333pt;}
.fsc_c00238{font-size:63.466667pt;}
.fs2_c00238{font-size:64.400000pt;}
.fs8_c00238{font-size:65.333333pt;}
.fs6_c00238{font-size:66.266667pt;}
.fs3_c00238{font-size:68.133333pt;}
.fs12_c00238{font-size:69.066667pt;}
.fs5_c00238{font-size:88.666667pt;}
.fs1_c00238{font-size:149.342368pt;}
.fs0_c00238{font-size:210.012705pt;}
.y0_c00238{bottom:0.000000pt;}
.y3e_c00238{bottom:127.438920pt;}
.y3f_c00238{bottom:127.709437pt;}
.y40_c00238{bottom:127.906884pt;}
.y41_c00238{bottom:128.366105pt;}
.y42_c00238{bottom:128.760424pt;}
.y43_c00238{bottom:128.878989pt;}
.y44_c00238{bottom:129.131747pt;}
.y45_c00238{bottom:129.217705pt;}
.y46_c00238{bottom:129.338213pt;}
.y47_c00238{bottom:129.544209pt;}
.y48_c00238{bottom:129.851305pt;}
.y49_c00238{bottom:129.991273pt;}
.y4a_c00238{bottom:130.340429pt;}
.y30_c00238{bottom:141.601333pt;}
.y31_c00238{bottom:141.816596pt;}
.y32_c00238{bottom:142.000451pt;}
.y33_c00238{bottom:142.484571pt;}
.y34_c00238{bottom:142.855660pt;}
.y35_c00238{bottom:143.117879pt;}
.y36_c00238{bottom:144.019559pt;}
.y37_c00238{bottom:144.349759pt;}
.y38_c00238{bottom:144.477783pt;}
.y39_c00238{bottom:144.827188pt;}
.y3a_c00238{bottom:145.678913pt;}
.y3b_c00238{bottom:146.012805pt;}
.y3c_c00238{bottom:146.671316pt;}
.y3d_c00238{bottom:146.908540pt;}
.y2f_c00238{bottom:162.145333pt;}
.y2e_c00238{bottom:178.033333pt;}
.y2d_c00238{bottom:194.021333pt;}
.y2c_c00238{bottom:218.818667pt;}
.y2b_c00238{bottom:238.800000pt;}
.y2a_c00238{bottom:259.117333pt;}
.y29_c00238{bottom:279.666667pt;}
.y28_c00238{bottom:300.240000pt;}
.y27_c00238{bottom:320.070667pt;}
.y26_c00238{bottom:338.612240pt;}
.y25_c00238{bottom:338.864560pt;}
.y24_c00238{bottom:339.510147pt;}
.y23_c00238{bottom:339.718480pt;}
.y22_c00238{bottom:340.138920pt;}
.y21_c00238{bottom:340.539333pt;}
.y20_c00238{bottom:340.781747pt;}
.y1f_c00238{bottom:340.992933pt;}
.y1e_c00238{bottom:341.281333pt;}
.y1d_c00238{bottom:360.885333pt;}
.y1c_c00238{bottom:380.809333pt;}
.y1b_c00238{bottom:400.970667pt;}
.y1a_c00238{bottom:421.144000pt;}
.y19_c00238{bottom:441.904000pt;}
.y18_c00238{bottom:461.552000pt;}
.y17_c00238{bottom:481.305333pt;}
.y16_c00238{bottom:501.777333pt;}
.y15_c00238{bottom:521.900000pt;}
.yd_c00238{bottom:541.440000pt;}
.ye_c00238{bottom:541.577333pt;}
.yf_c00238{bottom:541.933333pt;}
.y10_c00238{bottom:542.433333pt;}
.y11_c00238{bottom:542.994667pt;}
.y12_c00238{bottom:543.488000pt;}
.y13_c00238{bottom:545.362667pt;}
.y14_c00238{bottom:546.306667pt;}
.yc_c00238{bottom:561.360000pt;}
.yb_c00238{bottom:581.460000pt;}
.ya_c00238{bottom:601.993333pt;}
.y9_c00238{bottom:621.838667pt;}
.y8_c00238{bottom:641.805333pt;}
.y7_c00238{bottom:662.510667pt;}
.y6_c00238{bottom:682.080000pt;}
.y5_c00238{bottom:702.422667pt;}
.y4_c00238{bottom:722.130667pt;}
.y3_c00238{bottom:776.417533pt;}
.y1_c00238{bottom:797.284000pt;}
.y2_c00238{bottom:801.243560pt;}
.h15_c00238{height:26.133333pt;}
.h17_c00238{height:41.066667pt;}
.h16_c00238{height:44.800000pt;}
.h18_c00238{height:46.670610pt;}
.h10_c00238{height:54.133333pt;}
.h12_c00238{height:55.066667pt;}
.hd_c00238{height:56.000000pt;}
.hf_c00238{height:56.933333pt;}
.hb_c00238{height:57.866667pt;}
.h9_c00238{height:58.800000pt;}
.h13_c00238{height:58.802940pt;}
.h11_c00238{height:60.666667pt;}
.hc_c00238{height:61.600000pt;}
.h6_c00238{height:62.533333pt;}
.he_c00238{height:63.466667pt;}
.h4_c00238{height:64.400000pt;}
.ha_c00238{height:65.333333pt;}
.h8_c00238{height:66.266667pt;}
.h5_c00238{height:68.133333pt;}
.h14_c00238{height:69.066667pt;}
.h7_c00238{height:88.666667pt;}
.h3_c00238{height:149.342368pt;}
.h2_c00238{height:210.012705pt;}
.h1_c00238{height:893.333333pt;}
.h0_c00238{height:893.466667pt;}
.w1_c00238{width:634.000000pt;}
.w0_c00238{width:634.266667pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:26.740000pt;}
.x3_c00238{left:29.169797pt;}
.x98_c00238{left:65.280000pt;}
.x89_c00238{left:72.240000pt;}
.x9d_c00238{left:73.349333pt;}
.x85_c00238{left:78.000000pt;}
.x99_c00238{left:88.320000pt;}
.x36_c00238{left:90.720000pt;}
.x3f_c00238{left:92.293333pt;}
.x74_c00238{left:93.600000pt;}
.x64_c00238{left:95.760000pt;}
.x14_c00238{left:96.720000pt;}
.x51_c00238{left:98.400000pt;}
.x29_c00238{left:100.320000pt;}
.x40_c00238{left:101.469333pt;}
.x4_c00238{left:102.480000pt;}
.x46_c00238{left:103.680000pt;}
.x8a_c00238{left:105.600000pt;}
.xa1_c00238{left:106.876896pt;}
.x9a_c00238{left:111.840000pt;}
.x52_c00238{left:118.800000pt;}
.x47_c00238{left:121.440000pt;}
.x6f_c00238{left:122.880000pt;}
.x1c_c00238{left:123.840000pt;}
.x24_c00238{left:126.000000pt;}
.x75_c00238{left:126.960000pt;}
.xe_c00238{left:128.880000pt;}
.x6b_c00238{left:130.498667pt;}
.x2f_c00238{left:132.000000pt;}
.x60_c00238{left:139.200000pt;}
.x56_c00238{left:140.160000pt;}
.x15_c00238{left:141.120000pt;}
.x4a_c00238{left:143.040000pt;}
.x5_c00238{left:144.000000pt;}
.x91_c00238{left:144.960000pt;}
.x65_c00238{left:145.920000pt;}
.x7e_c00238{left:149.040000pt;}
.x6c_c00238{left:151.617333pt;}
.x25_c00238{left:153.120000pt;}
.x37_c00238{left:154.560000pt;}
.x8b_c00238{left:155.520000pt;}
.x76_c00238{left:156.480000pt;}
.x7c_c00238{left:157.680000pt;}
.x41_c00238{left:158.586667pt;}
.x7f_c00238{left:162.960000pt;}
.x1d_c00238{left:166.800000pt;}
.x6_c00238{left:170.400000pt;}
.x6d_c00238{left:175.858667pt;}
.x77_c00238{left:177.600000pt;}
.x16_c00238{left:179.040000pt;}
.x1e_c00238{left:181.680000pt;}
.x86_c00238{left:183.120000pt;}
.x80_c00238{left:185.760000pt;}
.x70_c00238{left:188.160000pt;}
.x2a_c00238{left:189.360000pt;}
.x30_c00238{left:190.560000pt;}
.x26_c00238{left:192.480000pt;}
.xf_c00238{left:193.680000pt;}
.x92_c00238{left:195.120000pt;}
.x42_c00238{left:196.029333pt;}
.x7_c00238{left:198.720000pt;}
.x38_c00238{left:200.640000pt;}
.x17_c00238{left:202.800000pt;}
.x81_c00238{left:204.240000pt;}
.x4b_c00238{left:209.760000pt;}
.x61_c00238{left:212.160000pt;}
.x5a_c00238{left:214.800000pt;}
.x5d_c00238{left:216.240000pt;}
.x1f_c00238{left:219.600000pt;}
.x78_c00238{left:221.040000pt;}
.x10_c00238{left:223.680000pt;}
.x8_c00238{left:225.840000pt;}
.x43_c00238{left:228.888000pt;}
.x48_c00238{left:231.360000pt;}
.x31_c00238{left:234.960000pt;}
.x8c_c00238{left:237.600000pt;}
.x62_c00238{left:239.280000pt;}
.x27_c00238{left:240.240000pt;}
.x57_c00238{left:241.920000pt;}
.x82_c00238{left:243.600000pt;}
.x4c_c00238{left:245.280000pt;}
.x18_c00238{left:250.560000pt;}
.x69_c00238{left:252.720000pt;}
.x5e_c00238{left:253.680000pt;}
.x5b_c00238{left:254.640000pt;}
.x53_c00238{left:255.840000pt;}
.x6e_c00238{left:257.944000pt;}
.x9e_c00238{left:259.366667pt;}
.x58_c00238{left:263.520000pt;}
.x39_c00238{left:265.680000pt;}
.x9_c00238{left:268.800000pt;}
.x66_c00238{left:274.560000pt;}
.x2b_c00238{left:276.240000pt;}
.x71_c00238{left:277.200000pt;}
.x19_c00238{left:279.120000pt;}
.x54_c00238{left:281.040000pt;}
.x4d_c00238{left:282.720000pt;}
.x11_c00238{left:283.920000pt;}
.x3a_c00238{left:286.320000pt;}
.x67_c00238{left:287.760000pt;}
.xa_c00238{left:291.360000pt;}
.x20_c00238{left:295.200000pt;}
.x12_c00238{left:302.880000pt;}
.x28_c00238{left:304.080000pt;}
.x72_c00238{left:305.040000pt;}
.x83_c00238{left:307.680000pt;}
.x4e_c00238{left:311.520000pt;}
.x79_c00238{left:312.720000pt;}
.x3b_c00238{left:313.920000pt;}
.x5f_c00238{left:316.320000pt;}
.x32_c00238{left:318.000000pt;}
.x7d_c00238{left:320.400000pt;}
.x9f_c00238{left:321.492000pt;}
.x2c_c00238{left:323.520000pt;}
.x8d_c00238{left:326.640000pt;}
.x49_c00238{left:327.840000pt;}
.x55_c00238{left:329.040000pt;}
.x68_c00238{left:330.000000pt;}
.x21_c00238{left:331.440000pt;}
.x1a_c00238{left:335.280000pt;}
.xa2_c00238{left:336.335820pt;}
.x13_c00238{left:337.440000pt;}
.x3c_c00238{left:342.240000pt;}
.x6a_c00238{left:343.920000pt;}
.x2d_c00238{left:345.600000pt;}
.x7a_c00238{left:348.720000pt;}
.xb_c00238{left:351.600000pt;}
.x44_c00238{left:353.828000pt;}
.x22_c00238{left:358.320000pt;}
.x5c_c00238{left:363.120000pt;}
.x84_c00238{left:364.560000pt;}
.x33_c00238{left:366.240000pt;}
.x3d_c00238{left:367.680000pt;}
.x63_c00238{left:369.120000pt;}
.xc_c00238{left:371.520000pt;}
.x59_c00238{left:374.640000pt;}
.x1b_c00238{left:376.320000pt;}
.x23_c00238{left:382.560000pt;}
.x2_c00238{left:386.700000pt;}
.x7b_c00238{left:388.320000pt;}
.x4f_c00238{left:390.720000pt;}
.xa3_c00238{left:392.267460pt;}
.x73_c00238{left:393.840000pt;}
.x87_c00238{left:397.920000pt;}
.x93_c00238{left:400.320000pt;}
.xd_c00238{left:406.560000pt;}
.x34_c00238{left:407.520000pt;}
.x50_c00238{left:408.720000pt;}
.x3e_c00238{left:412.320000pt;}
.x45_c00238{left:416.728000pt;}
.x8e_c00238{left:419.760000pt;}
.x9b_c00238{left:425.760000pt;}
.x35_c00238{left:430.800000pt;}
.x2e_c00238{left:433.200000pt;}
.x94_c00238{left:436.320000pt;}
.x95_c00238{left:453.840000pt;}
.x8f_c00238{left:457.440000pt;}
.xa0_c00238{left:463.348000pt;}
.x96_c00238{left:468.000000pt;}
.x90_c00238{left:471.120000pt;}
.x9c_c00238{left:482.400000pt;}
.x88_c00238{left:486.240000pt;}
.x97_c00238{left:533.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_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_4ab86c84425994a9e06b01c2.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;}
.m15_c00239{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m101_c00239{transform:matrix(0.022953,0.000551,-0.005998,0.249928,0,0);-ms-transform:matrix(0.022953,0.000551,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.022953,0.000551,-0.005998,0.249928,0,0);}
.mee_c00239{transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030115,0.000000,0.000000,0.250000,0,0);}
.md3_c00239{transform:matrix(0.087394,0.001398,-0.003999,0.249968,0,0);-ms-transform:matrix(0.087394,0.001398,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.087394,0.001398,-0.003999,0.249968,0,0);}
.med_c00239{transform:matrix(0.089049,0.002137,-0.005998,0.249928,0,0);-ms-transform:matrix(0.089049,0.002137,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.089049,0.002137,-0.005998,0.249928,0,0);}
.m7_c00239{transform:matrix(0.100564,0.001106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.100564,0.001106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.100564,0.001106,-0.002750,0.249985,0,0);}
.mbe_c00239{transform:matrix(0.115430,0.001847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.115430,0.001847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.115430,0.001847,-0.003999,0.249968,0,0);}
.m25_c00239{transform:matrix(0.116455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116455,0.000000,0.000000,0.250000,0,0);}
.m100_c00239{transform:matrix(0.127548,0.003061,-0.005998,0.249928,0,0);-ms-transform:matrix(0.127548,0.003061,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.127548,0.003061,-0.005998,0.249928,0,0);}
.mc_c00239{transform:matrix(0.128772,0.001416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.128772,0.001416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.128772,0.001416,-0.002750,0.249985,0,0);}
.m21_c00239{transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);}
.mc6_c00239{transform:matrix(0.138322,0.002213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138322,0.002213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138322,0.002213,-0.003999,0.249968,0,0);}
.m75_c00239{transform:matrix(0.140286,0.001122,-0.002000,0.249992,0,0);-ms-transform:matrix(0.140286,0.001122,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.140286,0.001122,-0.002000,0.249992,0,0);}
.m95_c00239{transform:matrix(0.140455,0.002388,-0.004249,0.249964,0,0);-ms-transform:matrix(0.140455,0.002388,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.140455,0.002388,-0.004249,0.249964,0,0);}
.m13_c00239{transform:matrix(0.142120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142120,0.000000,0.000000,0.250000,0,0);}
.m5f_c00239{transform:matrix(0.142170,0.001137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.142170,0.001137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.142170,0.001137,-0.002000,0.249992,0,0);}
.m90_c00239{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);}
.m66_c00239{transform:matrix(0.146650,0.001173,-0.002000,0.249992,0,0);-ms-transform:matrix(0.146650,0.001173,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.146650,0.001173,-0.002000,0.249992,0,0);}
.mab_c00239{transform:matrix(0.146754,0.002495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146754,0.002495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146754,0.002495,-0.004249,0.249964,0,0);}
.m1b_c00239{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);}
.m6b_c00239{transform:matrix(0.146970,0.001176,-0.002000,0.249992,0,0);-ms-transform:matrix(0.146970,0.001176,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.146970,0.001176,-0.002000,0.249992,0,0);}
.m88_c00239{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);}
.m19_c00239{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.mcc_c00239{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);}
.m34_c00239{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.m10f_c00239{transform:matrix(0.150247,0.003606,-0.005998,0.249928,0,0);-ms-transform:matrix(0.150247,0.003606,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.150247,0.003606,-0.005998,0.249928,0,0);}
.mb7_c00239{transform:matrix(0.150921,0.002415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150921,0.002415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150921,0.002415,-0.003999,0.249968,0,0);}
.md4_c00239{transform:matrix(0.151786,0.002429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151786,0.002429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151786,0.002429,-0.003999,0.249968,0,0);}
.m107_c00239{transform:matrix(0.154740,0.003714,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154740,0.003714,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154740,0.003714,-0.005998,0.249928,0,0);}
.m11a_c00239{transform:matrix(0.159404,0.003826,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159404,0.003826,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159404,0.003826,-0.005998,0.249928,0,0);}
.md5_c00239{transform:matrix(0.159425,0.002551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159425,0.002551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159425,0.002551,-0.003999,0.249968,0,0);}
.m87_c00239{transform:matrix(0.159590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159590,0.000000,0.000000,0.250000,0,0);}
.m67_c00239{transform:matrix(0.160765,0.001286,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160765,0.001286,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160765,0.001286,-0.002000,0.249992,0,0);}
.maf_c00239{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);}
.m103_c00239{transform:matrix(0.162943,0.003911,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162943,0.003911,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162943,0.003911,-0.005998,0.249928,0,0);}
.mae_c00239{transform:matrix(0.163396,0.002778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163396,0.002778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163396,0.002778,-0.004249,0.249964,0,0);}
.m5b_c00239{transform:matrix(0.163585,0.001309,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163585,0.001309,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163585,0.001309,-0.002000,0.249992,0,0);}
.m1c_c00239{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m102_c00239{transform:matrix(0.165022,0.003961,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165022,0.003961,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165022,0.003961,-0.005998,0.249928,0,0);}
.mdd_c00239{transform:matrix(0.166103,0.002990,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166103,0.002990,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166103,0.002990,-0.004499,0.249960,0,0);}
.m60_c00239{transform:matrix(0.166255,0.001330,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166255,0.001330,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166255,0.001330,-0.002000,0.249992,0,0);}
.m3a_c00239{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);}
.m113_c00239{transform:matrix(0.168092,0.004034,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168092,0.004034,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168092,0.004034,-0.005998,0.249928,0,0);}
.m26_c00239{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);}
.m10d_c00239{transform:matrix(0.168846,0.004052,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168846,0.004052,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168846,0.004052,-0.005998,0.249928,0,0);}
.mad_c00239{transform:matrix(0.169166,0.002876,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169166,0.002876,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169166,0.002876,-0.004249,0.249964,0,0);}
.md6_c00239{transform:matrix(0.169188,0.002707,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169188,0.002707,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169188,0.002707,-0.003999,0.249968,0,0);}
.ma6_c00239{transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);}
.mf6_c00239{transform:matrix(0.170671,0.004096,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170671,0.004096,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170671,0.004096,-0.005998,0.249928,0,0);}
.m106_c00239{transform:matrix(0.170836,0.004100,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170836,0.004100,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170836,0.004100,-0.005998,0.249928,0,0);}
.m2c_c00239{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);}
.m1a_c00239{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);}
.mce_c00239{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);}
.m44_c00239{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);}
.mb0_c00239{transform:matrix(0.172250,0.002928,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172250,0.002928,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172250,0.002928,-0.004249,0.249964,0,0);}
.mba_c00239{transform:matrix(0.172658,0.002763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172658,0.002763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172658,0.002763,-0.003999,0.249968,0,0);}
.mb1_c00239{transform:matrix(0.173310,0.002946,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173310,0.002946,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173310,0.002946,-0.004249,0.249964,0,0);}
.mc3_c00239{transform:matrix(0.174058,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174058,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174058,0.002785,-0.003999,0.249968,0,0);}
.m17_c00239{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);}
.m69_c00239{transform:matrix(0.174224,0.001394,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174224,0.001394,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174224,0.001394,-0.002000,0.249992,0,0);}
.m8d_c00239{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);}
.m5c_c00239{transform:matrix(0.174609,0.001397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174609,0.001397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174609,0.001397,-0.002000,0.249992,0,0);}
.m65_c00239{transform:matrix(0.175769,0.001406,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175769,0.001406,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175769,0.001406,-0.002000,0.249992,0,0);}
.m109_c00239{transform:matrix(0.176379,0.004233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176379,0.004233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176379,0.004233,-0.005998,0.249928,0,0);}
.mbb_c00239{transform:matrix(0.176537,0.002825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176537,0.002825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176537,0.002825,-0.003999,0.249968,0,0);}
.m27_c00239{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);}
.m10e_c00239{transform:matrix(0.176824,0.004244,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176824,0.004244,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176824,0.004244,-0.005998,0.249928,0,0);}
.m2f_c00239{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);}
.m8a_c00239{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);}
.m1d_c00239{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);}
.mc1_c00239{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);}
.m3f_c00239{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);}
.m42_c00239{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);}
.mb3_c00239{transform:matrix(0.178749,0.003039,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178749,0.003039,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178749,0.003039,-0.004249,0.249964,0,0);}
.m46_c00239{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);}
.mf9_c00239{transform:matrix(0.180033,0.004321,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180033,0.004321,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180033,0.004321,-0.005998,0.249928,0,0);}
.m2d_c00239{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);}
.m32_c00239{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00239{transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);}
.m7b_c00239{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);}
.m99_c00239{transform:matrix(0.181514,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181514,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181514,0.003086,-0.004249,0.249964,0,0);}
.m20_c00239{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);}
.m98_c00239{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);}
.mcb_c00239{transform:matrix(0.182819,0.002742,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182819,0.002742,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182819,0.002742,-0.003750,0.249972,0,0);}
.mb2_c00239{transform:matrix(0.182994,0.003111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182994,0.003111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182994,0.003111,-0.004249,0.249964,0,0);}
.m53_c00239{transform:matrix(0.183259,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183259,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183259,0.001466,-0.002000,0.249992,0,0);}
.m0_c00239{transform:matrix(0.183534,0.002019,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183534,0.002019,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183534,0.002019,-0.002750,0.249985,0,0);}
.mc9_c00239{transform:matrix(0.183604,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183604,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183604,0.002754,-0.003750,0.249972,0,0);}
.m22_c00239{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);}
.m10b_c00239{transform:matrix(0.183822,0.004412,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183822,0.004412,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183822,0.004412,-0.005998,0.249928,0,0);}
.md8_c00239{transform:matrix(0.183901,0.002942,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183901,0.002942,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183901,0.002942,-0.003999,0.249968,0,0);}
.m62_c00239{transform:matrix(0.184124,0.001473,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184124,0.001473,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184124,0.001473,-0.002000,0.249992,0,0);}
.m58_c00239{transform:matrix(0.184529,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184529,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184529,0.001476,-0.002000,0.249992,0,0);}
.mb9_c00239{transform:matrix(0.185196,0.002963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185196,0.002963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185196,0.002963,-0.003999,0.249968,0,0);}
.ma8_c00239{transform:matrix(0.185618,0.003156,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185618,0.003156,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185618,0.003156,-0.004249,0.249964,0,0);}
.mbd_c00239{transform:matrix(0.185631,0.002970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185631,0.002970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185631,0.002970,-0.003999,0.249968,0,0);}
.m61_c00239{transform:matrix(0.185894,0.001487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185894,0.001487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185894,0.001487,-0.002000,0.249992,0,0);}
.m74_c00239{transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);}
.m79_c00239{transform:matrix(0.186089,0.001489,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186089,0.001489,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186089,0.001489,-0.002000,0.249992,0,0);}
.m104_c00239{transform:matrix(0.186556,0.004477,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186556,0.004477,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186556,0.004477,-0.005998,0.249928,0,0);}
.m89_c00239{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);}
.me4_c00239{transform:matrix(0.187580,0.003376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187580,0.003376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187580,0.003376,-0.004499,0.249960,0,0);}
.m73_c00239{transform:matrix(0.187819,0.001503,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187819,0.001503,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187819,0.001503,-0.002000,0.249992,0,0);}
.m9e_c00239{transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);}
.m3c_c00239{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);}
.m97_c00239{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);}
.m56_c00239{transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188069,0.001505,-0.002000,0.249992,0,0);}
.m5d_c00239{transform:matrix(0.188084,0.001505,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188084,0.001505,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188084,0.001505,-0.002000,0.249992,0,0);}
.mc8_c00239{transform:matrix(0.188174,0.002823,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188174,0.002823,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188174,0.002823,-0.003750,0.249972,0,0);}
.m2e_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);}
.m68_c00239{transform:matrix(0.189094,0.001513,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189094,0.001513,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189094,0.001513,-0.002000,0.249992,0,0);}
.m24_c00239{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);}
.m5a_c00239{transform:matrix(0.189264,0.001514,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189264,0.001514,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189264,0.001514,-0.002000,0.249992,0,0);}
.md7_c00239{transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);}
.mcf_c00239{transform:matrix(0.189471,0.003032,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189471,0.003032,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189471,0.003032,-0.003999,0.249968,0,0);}
.mc0_c00239{transform:matrix(0.189651,0.003034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189651,0.003034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189651,0.003034,-0.003999,0.249968,0,0);}
.mc4_c00239{transform:matrix(0.190001,0.003040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190001,0.003040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190001,0.003040,-0.003999,0.249968,0,0);}
.m50_c00239{transform:matrix(0.190219,0.001522,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190219,0.001522,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190219,0.001522,-0.002000,0.249992,0,0);}
.m18_c00239{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);}
.mef_c00239{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);}
.ma9_c00239{transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);}
.m30_c00239{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);}
.m85_c00239{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);}
.m43_c00239{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);}
.md9_c00239{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);}
.md0_c00239{transform:matrix(0.191910,0.003071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191910,0.003071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191910,0.003071,-0.003999,0.249968,0,0);}
.mfe_c00239{transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192090,0.004610,-0.005998,0.249928,0,0);}
.m9f_c00239{transform:matrix(0.192292,0.003269,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192292,0.003269,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192292,0.003269,-0.004249,0.249964,0,0);}
.m108_c00239{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);}
.maa_c00239{transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);}
.m23_c00239{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_c00239{transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193435,0.003095,-0.003999,0.249968,0,0);}
.mb6_c00239{transform:matrix(0.193685,0.003099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193685,0.003099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193685,0.003099,-0.003999,0.249968,0,0);}
.ma1_c00239{transform:matrix(0.193987,0.003298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193987,0.003298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193987,0.003298,-0.004249,0.249964,0,0);}
.m70_c00239{transform:matrix(0.194089,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194089,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194089,0.001553,-0.002000,0.249992,0,0);}
.m64_c00239{transform:matrix(0.194104,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194104,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194104,0.001553,-0.002000,0.249992,0,0);}
.m51_c00239{transform:matrix(0.194654,0.001557,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194654,0.001557,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194654,0.001557,-0.002000,0.249992,0,0);}
.m4b_c00239{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);}
.m10c_c00239{transform:matrix(0.194714,0.004673,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194714,0.004673,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194714,0.004673,-0.005998,0.249928,0,0);}
.m96_c00239{transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);}
.m63_c00239{transform:matrix(0.195509,0.001564,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195509,0.001564,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195509,0.001564,-0.002000,0.249992,0,0);}
.ma7_c00239{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);}
.m3e_c00239{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);}
.m10a_c00239{transform:matrix(0.195954,0.004703,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195954,0.004703,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195954,0.004703,-0.005998,0.249928,0,0);}
.mcd_c00239{transform:matrix(0.196953,0.002954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196953,0.002954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196953,0.002954,-0.003750,0.249972,0,0);}
.m86_c00239{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);}
.m84_c00239{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);}
.m37_c00239{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);}
.m45_c00239{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);}
.m2b_c00239{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);}
.m11b_c00239{transform:matrix(0.199273,0.004783,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199273,0.004783,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199273,0.004783,-0.005998,0.249928,0,0);}
.m92_c00239{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);}
.mde_c00239{transform:matrix(0.200667,0.003612,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200667,0.003612,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200667,0.003612,-0.004499,0.249960,0,0);}
.m7f_c00239{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);}
.me2_c00239{transform:matrix(0.201142,0.003621,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201142,0.003621,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201142,0.003621,-0.004499,0.249960,0,0);}
.mbf_c00239{transform:matrix(0.201249,0.003220,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201249,0.003220,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201249,0.003220,-0.003999,0.249968,0,0);}
.m80_c00239{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);}
.mc2_c00239{transform:matrix(0.201754,0.003228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201754,0.003228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201754,0.003228,-0.003999,0.249968,0,0);}
.m4a_c00239{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);}
.m6d_c00239{transform:matrix(0.202989,0.001624,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202989,0.001624,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202989,0.001624,-0.002000,0.249992,0,0);}
.mca_c00239{transform:matrix(0.203197,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203197,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203197,0.003048,-0.003750,0.249972,0,0);}
.m119_c00239{transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);}
.m31_c00239{transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{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);}
.mfd_c00239{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);}
.mf2_c00239{transform:matrix(0.205791,0.004939,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205791,0.004939,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205791,0.004939,-0.005998,0.249928,0,0);}
.m48_c00239{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);}
.m91_c00239{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);}
.m28_c00239{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{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);}
.m29_c00239{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);}
.m6a_c00239{transform:matrix(0.207583,0.001661,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207583,0.001661,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207583,0.001661,-0.002000,0.249992,0,0);}
.m76_c00239{transform:matrix(0.207918,0.001663,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207918,0.001663,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207918,0.001663,-0.002000,0.249992,0,0);}
.m36_c00239{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m3d_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);}
.mac_c00239{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);}
.m57_c00239{transform:matrix(0.208388,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208388,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208388,0.001667,-0.002000,0.249992,0,0);}
.md2_c00239{transform:matrix(0.208398,0.003334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208398,0.003334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208398,0.003334,-0.003999,0.249968,0,0);}
.m8e_c00239{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);}
.mdf_c00239{transform:matrix(0.208906,0.003760,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208906,0.003760,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208906,0.003760,-0.004499,0.249960,0,0);}
.mec_c00239{transform:matrix(0.209075,0.005018,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209075,0.005018,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209075,0.005018,-0.005998,0.249928,0,0);}
.m4e_c00239{transform:matrix(0.209783,0.001678,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209783,0.001678,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209783,0.001678,-0.002000,0.249992,0,0);}
.m11c_c00239{transform:matrix(0.210389,0.005049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210389,0.005049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210389,0.005049,-0.005998,0.249928,0,0);}
.m83_c00239{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);}
.m114_c00239{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);}
.m78_c00239{transform:matrix(0.213548,0.001708,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213548,0.001708,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213548,0.001708,-0.002000,0.249992,0,0);}
.m6_c00239{transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);}
.m49_c00239{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);}
.m8b_c00239{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);}
.m115_c00239{transform:matrix(0.217052,0.005209,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217052,0.005209,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217052,0.005209,-0.005998,0.249928,0,0);}
.m7e_c00239{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);}
.me0_c00239{transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);}
.m59_c00239{transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);}
.m7d_c00239{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);}
.m72_c00239{transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);}
.ma5_c00239{transform:matrix(0.219243,0.003727,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219243,0.003727,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219243,0.003727,-0.004249,0.249964,0,0);}
.m41_c00239{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);}
.m117_c00239{transform:matrix(0.220062,0.005281,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220062,0.005281,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220062,0.005281,-0.005998,0.249928,0,0);}
.mf_c00239{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);}
.mfb_c00239{transform:matrix(0.220377,0.005289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220377,0.005289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220377,0.005289,-0.005998,0.249928,0,0);}
.ma2_c00239{transform:matrix(0.220528,0.003749,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220528,0.003749,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220528,0.003749,-0.004249,0.249964,0,0);}
.m4d_c00239{transform:matrix(0.220578,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220578,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220578,0.001765,-0.002000,0.249992,0,0);}
.m5e_c00239{transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);}
.mf7_c00239{transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);}
.m8c_c00239{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);}
.me3_c00239{transform:matrix(0.223239,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223239,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223239,0.004018,-0.004499,0.249960,0,0);}
.mb8_c00239{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);}
.m81_c00239{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);}
.m10_c00239{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);}
.me6_c00239{transform:matrix(0.224575,0.005390,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224575,0.005390,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224575,0.005390,-0.005998,0.249928,0,0);}
.m6c_c00239{transform:matrix(0.224578,0.001797,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224578,0.001797,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224578,0.001797,-0.002000,0.249992,0,0);}
.mc5_c00239{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);}
.mfa_c00239{transform:matrix(0.225335,0.005408,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225335,0.005408,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225335,0.005408,-0.005998,0.249928,0,0);}
.m8f_c00239{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);}
.m6e_c00239{transform:matrix(0.226023,0.001808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226023,0.001808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226023,0.001808,-0.002000,0.249992,0,0);}
.m7c_c00239{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);}
.mdc_c00239{transform:matrix(0.226663,0.004080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226663,0.004080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226663,0.004080,-0.004499,0.249960,0,0);}
.mf3_c00239{transform:matrix(0.226825,0.005444,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226825,0.005444,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226825,0.005444,-0.005998,0.249928,0,0);}
.m4f_c00239{transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227803,0.001822,-0.002000,0.249992,0,0);}
.m6f_c00239{transform:matrix(0.228573,0.001829,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228573,0.001829,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228573,0.001829,-0.002000,0.249992,0,0);}
.m2a_c00239{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);}
.m71_c00239{transform:matrix(0.230948,0.001848,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230948,0.001848,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230948,0.001848,-0.002000,0.249992,0,0);}
.m14_c00239{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);}
.mb4_c00239{transform:matrix(0.232286,0.003949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232286,0.003949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232286,0.003949,-0.004249,0.249964,0,0);}
.m52_c00239{transform:matrix(0.232628,0.001861,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232628,0.001861,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232628,0.001861,-0.002000,0.249992,0,0);}
.mf4_c00239{transform:matrix(0.233003,0.005592,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233003,0.005592,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233003,0.005592,-0.005998,0.249928,0,0);}
.ma3_c00239{transform:matrix(0.234221,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234221,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234221,0.003982,-0.004249,0.249964,0,0);}
.m3b_c00239{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);}
.m105_c00239{transform:matrix(0.236837,0.005684,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236837,0.005684,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236837,0.005684,-0.005998,0.249928,0,0);}
.m54_c00239{transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);}
.meb_c00239{transform:matrix(0.239596,0.005750,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239596,0.005750,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239596,0.005750,-0.005998,0.249928,0,0);}
.m77_c00239{transform:matrix(0.241767,0.001934,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241767,0.001934,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241767,0.001934,-0.002000,0.249992,0,0);}
.m7a_c00239{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{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);}
.mfc_c00239{transform:matrix(0.243650,0.005848,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243650,0.005848,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243650,0.005848,-0.005998,0.249928,0,0);}
.m116_c00239{transform:matrix(0.244255,0.005862,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244255,0.005862,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244255,0.005862,-0.005998,0.249928,0,0);}
.m40_c00239{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);}
.m93_c00239{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m55_c00239{transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);}
.mf8_c00239{transform:matrix(0.254277,0.006103,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254277,0.006103,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254277,0.006103,-0.005998,0.249928,0,0);}
.m1e_c00239{transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.256684,0.002824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256684,0.002824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256684,0.002824,-0.002750,0.249985,0,0);}
.m2_c00239{transform:matrix(0.257284,0.002830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257284,0.002830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257284,0.002830,-0.002750,0.249985,0,0);}
.m9a_c00239{transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);}
.m118_c00239{transform:matrix(0.259950,0.006239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259950,0.006239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259950,0.006239,-0.005998,0.249928,0,0);}
.mbc_c00239{transform:matrix(0.261107,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261107,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261107,0.004178,-0.003999,0.249968,0,0);}
.m9d_c00239{transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);}
.me5_c00239{transform:matrix(0.266538,0.006397,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266538,0.006397,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266538,0.006397,-0.005998,0.249928,0,0);}
.mb_c00239{transform:matrix(0.269344,0.002963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269344,0.002963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269344,0.002963,-0.002750,0.249985,0,0);}
.m112_c00239{transform:matrix(0.269417,0.006466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269417,0.006466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269417,0.006466,-0.005998,0.249928,0,0);}
.me8_c00239{transform:matrix(0.272157,0.006532,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272157,0.006532,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272157,0.006532,-0.005998,0.249928,0,0);}
.m9c_c00239{transform:matrix(0.277955,0.004725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277955,0.004725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277955,0.004725,-0.004249,0.249964,0,0);}
.mff_c00239{transform:matrix(0.280469,0.006731,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280469,0.006731,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280469,0.006731,-0.005998,0.249928,0,0);}
.m110_c00239{transform:matrix(0.283943,0.006815,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283943,0.006815,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283943,0.006815,-0.005998,0.249928,0,0);}
.mc7_c00239{transform:matrix(0.285978,0.004290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.285978,0.004290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.285978,0.004290,-0.003750,0.249972,0,0);}
.m38_c00239{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);}
.mda_c00239{transform:matrix(0.288658,0.004619,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288658,0.004619,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288658,0.004619,-0.003999,0.249968,0,0);}
.me1_c00239{transform:matrix(0.290538,0.005230,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290538,0.005230,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290538,0.005230,-0.004499,0.249960,0,0);}
.mf5_c00239{transform:matrix(0.303128,0.007275,-0.005998,0.249928,0,0);-ms-transform:matrix(0.303128,0.007275,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.303128,0.007275,-0.005998,0.249928,0,0);}
.me_c00239{transform:matrix(0.309636,0.003406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309636,0.003406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309636,0.003406,-0.002750,0.249985,0,0);}
.md_c00239{transform:matrix(0.312816,0.003441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312816,0.003441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312816,0.003441,-0.002750,0.249985,0,0);}
.me9_c00239{transform:matrix(0.330830,0.007940,-0.005998,0.249928,0,0);-ms-transform:matrix(0.330830,0.007940,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.330830,0.007940,-0.005998,0.249928,0,0);}
.ma4_c00239{transform:matrix(0.331997,0.005644,-0.004249,0.249964,0,0);-ms-transform:matrix(0.331997,0.005644,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.331997,0.005644,-0.004249,0.249964,0,0);}
.m4c_c00239{transform:matrix(0.335764,0.002686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.335764,0.002686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.335764,0.002686,-0.002000,0.249992,0,0);}
.mb5_c00239{transform:matrix(0.347245,0.005903,-0.004249,0.249964,0,0);-ms-transform:matrix(0.347245,0.005903,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.347245,0.005903,-0.004249,0.249964,0,0);}
.m82_c00239{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);}
.m47_c00239{transform:matrix(0.353020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353020,0.000000,0.000000,0.250000,0,0);}
.m9b_c00239{transform:matrix(0.354494,0.006026,-0.004249,0.249964,0,0);-ms-transform:matrix(0.354494,0.006026,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.354494,0.006026,-0.004249,0.249964,0,0);}
.m3_c00239{transform:matrix(0.365633,0.004022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.365633,0.004022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.365633,0.004022,-0.002750,0.249985,0,0);}
.mea_c00239{transform:matrix(0.367689,0.008825,-0.005998,0.249928,0,0);-ms-transform:matrix(0.367689,0.008825,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.367689,0.008825,-0.005998,0.249928,0,0);}
.m11_c00239{transform:matrix(0.406575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406575,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.428069,0.004709,-0.002750,0.249985,0,0);-ms-transform:matrix(0.428069,0.004709,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.428069,0.004709,-0.002750,0.249985,0,0);}
.m11d_c00239{transform:matrix(0.433895,0.010413,-0.005998,0.249928,0,0);-ms-transform:matrix(0.433895,0.010413,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.433895,0.010413,-0.005998,0.249928,0,0);}
.m16_c00239{transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.446738,0.004914,-0.002750,0.249985,0,0);-ms-transform:matrix(0.446738,0.004914,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.446738,0.004914,-0.002750,0.249985,0,0);}
.m11f_c00239{transform:matrix(0.453270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453270,0.000000,0.000000,0.250000,0,0);}
.me7_c00239{transform:matrix(0.480367,0.011529,-0.005998,0.249928,0,0);-ms-transform:matrix(0.480367,0.011529,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.480367,0.011529,-0.005998,0.249928,0,0);}
.m111_c00239{transform:matrix(0.492523,0.011821,-0.005998,0.249928,0,0);-ms-transform:matrix(0.492523,0.011821,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.492523,0.011821,-0.005998,0.249928,0,0);}
.m120_c00239{transform:matrix(0.500275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500275,0.000000,0.000000,0.250000,0,0);}
.mdb_c00239{transform:matrix(0.506150,0.008098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.506150,0.008098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.506150,0.008098,-0.003999,0.249968,0,0);}
.m12_c00239{transform:matrix(0.509105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509105,0.000000,0.000000,0.250000,0,0);}
.m94_c00239{transform:matrix(0.554920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554920,0.000000,0.000000,0.250000,0,0);}
.mf1_c00239{transform:matrix(0.585991,0.014064,-0.005998,0.249928,0,0);-ms-transform:matrix(0.585991,0.014064,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.585991,0.014064,-0.005998,0.249928,0,0);}
.mf0_c00239{transform:matrix(0.586726,0.014081,-0.005998,0.249928,0,0);-ms-transform:matrix(0.586726,0.014081,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.586726,0.014081,-0.005998,0.249928,0,0);}
.m5_c00239{transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);}
.m121_c00239{transform:matrix(0.674890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674890,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.836544,0.009202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.836544,0.009202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.836544,0.009202,-0.002750,0.249985,0,0);}
.m11e_c00239{transform:matrix(0.837049,0.020089,-0.005998,0.249928,0,0);-ms-transform:matrix(0.837049,0.020089,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.837049,0.020089,-0.005998,0.249928,0,0);}
.ma_c00239{transform:matrix(1.004194,0.011046,-0.002750,0.249985,0,0);-ms-transform:matrix(1.004194,0.011046,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.004194,0.011046,-0.002750,0.249985,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;}
.fs15_c00239{font-size:18.900000px;}
.fs19_c00239{font-size:31.500000px;}
.fs16_c00239{font-size:50.414513px;}
.fs18_c00239{font-size:52.515118px;}
.fs17_c00239{font-size:58.816932px;}
.fs8_c00239{font-size:63.000000px;}
.fs6_c00239{font-size:66.150000px;}
.fsb_c00239{font-size:67.202150px;}
.fsa_c00239{font-size:68.252184px;}
.fs9_c00239{font-size:69.300000px;}
.fsd_c00239{font-size:69.310013px;}
.fs7_c00239{font-size:70.350000px;}
.fs12_c00239{font-size:70.357914px;}
.fs10_c00239{font-size:71.409139px;}
.fs13_c00239{font-size:71.411566px;}
.fs4_c00239{font-size:72.450000px;}
.fs11_c00239{font-size:72.459273px;}
.fsc_c00239{font-size:73.502352px;}
.fsf_c00239{font-size:73.510620px;}
.fs14_c00239{font-size:74.571467px;}
.fs5_c00239{font-size:75.600000px;}
.fs0_c00239{font-size:75.604574px;}
.fse_c00239{font-size:75.610923px;}
.fs3_c00239{font-size:103.950000px;}
.fs2_c00239{font-size:105.000000px;}
.fs1_c00239{font-size:114.456924px;}
.y0_c00239{bottom:0.000000px;}
.ye6_c00239{bottom:107.725500px;}
.ye5_c00239{bottom:151.615632px;}
.ye4_c00239{bottom:152.321616px;}
.ye3_c00239{bottom:152.975736px;}
.ye2_c00239{bottom:153.478356px;}
.ye1_c00239{bottom:153.962160px;}
.ye0_c00239{bottom:155.152452px;}
.ydf_c00239{bottom:156.571860px;}
.yde_c00239{bottom:157.307268px;}
.ydd_c00239{bottom:157.563000px;}
.ydc_c00239{bottom:158.539716px;}
.ydb_c00239{bottom:159.211164px;}
.yda_c00239{bottom:159.699684px;}
.yd9_c00239{bottom:161.413992px;}
.yd8_c00239{bottom:161.873088px;}
.yd7_c00239{bottom:163.184916px;}
.yd6_c00239{bottom:163.611960px;}
.yd5_c00239{bottom:167.885040px;}
.yd4_c00239{bottom:169.239432px;}
.yd3_c00239{bottom:169.716252px;}
.yd2_c00239{bottom:170.551764px;}
.yd1_c00239{bottom:172.392144px;}
.yd0_c00239{bottom:173.472384px;}
.ycf_c00239{bottom:174.896532px;}
.yce_c00239{bottom:176.380044px;}
.ycd_c00239{bottom:176.813472px;}
.ycc_c00239{bottom:177.537204px;}
.ycb_c00239{bottom:178.016388px;}
.yca_c00239{bottom:178.408296px;}
.yc9_c00239{bottom:179.260284px;}
.yc8_c00239{bottom:179.934648px;}
.yc7_c00239{bottom:180.597576px;}
.yc6_c00239{bottom:181.700940px;}
.yc5_c00239{bottom:186.786672px;}
.yc4_c00239{bottom:187.933452px;}
.yc3_c00239{bottom:188.903292px;}
.yc2_c00239{bottom:189.341376px;}
.yc1_c00239{bottom:189.971880px;}
.yc0_c00239{bottom:190.534128px;}
.ybf_c00239{bottom:191.055264px;}
.ybe_c00239{bottom:191.516136px;}
.ybd_c00239{bottom:192.933456px;}
.ybc_c00239{bottom:193.271424px;}
.ybb_c00239{bottom:193.667820px;}
.yba_c00239{bottom:194.927208px;}
.yb9_c00239{bottom:195.352584px;}
.yb8_c00239{bottom:196.316016px;}
.yb7_c00239{bottom:196.733256px;}
.yb6_c00239{bottom:197.169000px;}
.yb5_c00239{bottom:229.498500px;}
.yb4_c00239{bottom:247.629672px;}
.yb3_c00239{bottom:248.660352px;}
.yb2_c00239{bottom:250.003800px;}
.yb1_c00239{bottom:250.483032px;}
.yb0_c00239{bottom:251.131464px;}
.yaf_c00239{bottom:251.803620px;}
.yae_c00239{bottom:253.060524px;}
.yad_c00239{bottom:254.767392px;}
.yac_c00239{bottom:255.699000px;}
.yab_c00239{bottom:272.832936px;}
.yaa_c00239{bottom:273.861609px;}
.ya9_c00239{bottom:274.397694px;}
.ya8_c00239{bottom:274.781580px;}
.ya7_c00239{bottom:275.922627px;}
.ya6_c00239{bottom:276.380979px;}
.ya5_c00239{bottom:277.165329px;}
.ya4_c00239{bottom:277.538172px;}
.ya3_c00239{bottom:278.385000px;}
.ya2_c00239{bottom:296.851080px;}
.ya1_c00239{bottom:296.851608px;}
.ya0_c00239{bottom:317.468112px;}
.y9f_c00239{bottom:318.081480px;}
.y9e_c00239{bottom:318.715392px;}
.y9d_c00239{bottom:319.125888px;}
.y9c_c00239{bottom:319.458912px;}
.y9b_c00239{bottom:319.740792px;}
.y9a_c00239{bottom:319.958520px;}
.y99_c00239{bottom:320.976432px;}
.y98_c00239{bottom:321.468168px;}
.y97_c00239{bottom:322.416000px;}
.y96_c00239{bottom:322.773816px;}
.y95_c00239{bottom:323.193000px;}
.y94_c00239{bottom:341.468918px;}
.y93_c00239{bottom:341.828535px;}
.y92_c00239{bottom:342.906757px;}
.y91_c00239{bottom:343.781400px;}
.y90_c00239{bottom:344.668552px;}
.y8f_c00239{bottom:345.257063px;}
.y8e_c00239{bottom:346.143000px;}
.y8d_c00239{bottom:363.071136px;}
.y8c_c00239{bottom:364.359720px;}
.y8b_c00239{bottom:364.837992px;}
.y8a_c00239{bottom:365.851440px;}
.y89_c00239{bottom:366.196728px;}
.y88_c00239{bottom:367.077264px;}
.y87_c00239{bottom:367.936968px;}
.y86_c00239{bottom:369.090408px;}
.y85_c00239{bottom:386.443728px;}
.y84_c00239{bottom:387.361656px;}
.y83_c00239{bottom:387.854280px;}
.y82_c00239{bottom:388.397712px;}
.y81_c00239{bottom:388.997904px;}
.y80_c00239{bottom:389.560824px;}
.y7f_c00239{bottom:390.224976px;}
.y7e_c00239{bottom:391.358184px;}
.y7d_c00239{bottom:391.773000px;}
.y7c_c00239{bottom:408.747045px;}
.y7b_c00239{bottom:409.493940px;}
.y7a_c00239{bottom:409.806527px;}
.y79_c00239{bottom:410.396147px;}
.y78_c00239{bottom:411.150573px;}
.y77_c00239{bottom:412.154721px;}
.y76_c00239{bottom:412.628871px;}
.y75_c00239{bottom:412.968158px;}
.y74_c00239{bottom:413.361579px;}
.y73_c00239{bottom:432.776390px;}
.y72_c00239{bottom:433.299264px;}
.y71_c00239{bottom:433.695312px;}
.y70_c00239{bottom:434.268033px;}
.y6f_c00239{bottom:434.696089px;}
.y6e_c00239{bottom:435.651896px;}
.y6d_c00239{bottom:436.389219px;}
.y6c_c00239{bottom:437.126900px;}
.y6b_c00239{bottom:455.025558px;}
.y6a_c00239{bottom:455.221972px;}
.y69_c00239{bottom:455.747036px;}
.y68_c00239{bottom:456.519445px;}
.y67_c00239{bottom:456.782400px;}
.y66_c00239{bottom:457.329658px;}
.y65_c00239{bottom:457.881669px;}
.y64_c00239{bottom:458.185410px;}
.y63_c00239{bottom:458.998509px;}
.y62_c00239{bottom:479.323390px;}
.y61_c00239{bottom:480.011482px;}
.y60_c00239{bottom:480.382201px;}
.y5f_c00239{bottom:481.246881px;}
.y5e_c00239{bottom:482.412180px;}
.y5d_c00239{bottom:483.348336px;}
.y5c_c00239{bottom:483.576000px;}
.y5b_c00239{bottom:501.517500px;}
.y5a_c00239{bottom:501.831000px;}
.y59_c00239{bottom:502.381500px;}
.y58_c00239{bottom:502.912500px;}
.y57_c00239{bottom:503.194500px;}
.y56_c00239{bottom:503.892000px;}
.y55_c00239{bottom:504.556500px;}
.y54_c00239{bottom:504.987000px;}
.y53_c00239{bottom:505.440000px;}
.y52_c00239{bottom:525.624000px;}
.y51_c00239{bottom:548.433000px;}
.y4f_c00239{bottom:571.698120px;}
.y4b_c00239{bottom:571.698180px;}
.y50_c00239{bottom:571.698360px;}
.y4e_c00239{bottom:571.698528px;}
.y4c_c00239{bottom:571.698792px;}
.y4a_c00239{bottom:571.698888px;}
.y4d_c00239{bottom:571.698924px;}
.y49_c00239{bottom:592.654056px;}
.y48_c00239{bottom:593.010192px;}
.y47_c00239{bottom:593.226780px;}
.y46_c00239{bottom:593.593452px;}
.y45_c00239{bottom:593.780784px;}
.y44_c00239{bottom:594.089616px;}
.y43_c00239{bottom:594.526416px;}
.y42_c00239{bottom:594.771372px;}
.y41_c00239{bottom:595.284132px;}
.y40_c00239{bottom:595.889724px;}
.y35_c00239{bottom:617.063112px;}
.y3b_c00239{bottom:617.063244px;}
.y36_c00239{bottom:617.063256px;}
.y37_c00239{bottom:617.063376px;}
.y3a_c00239{bottom:617.063592px;}
.y3d_c00239{bottom:617.063796px;}
.y39_c00239{bottom:617.063820px;}
.y3c_c00239{bottom:617.063964px;}
.y3e_c00239{bottom:617.063976px;}
.y38_c00239{bottom:617.064108px;}
.y3f_c00239{bottom:617.064348px;}
.y30_c00239{bottom:639.796212px;}
.y31_c00239{bottom:639.796464px;}
.y33_c00239{bottom:639.796476px;}
.y34_c00239{bottom:639.796788px;}
.y32_c00239{bottom:639.796836px;}
.y2f_c00239{bottom:639.796860px;}
.y2e_c00239{bottom:639.796980px;}
.y2d_c00239{bottom:639.797688px;}
.y2c_c00239{bottom:639.797796px;}
.y2b_c00239{bottom:660.926676px;}
.y2a_c00239{bottom:661.123176px;}
.y29_c00239{bottom:661.700220px;}
.y28_c00239{bottom:661.958844px;}
.y27_c00239{bottom:662.304792px;}
.y26_c00239{bottom:662.816796px;}
.y25_c00239{bottom:663.093180px;}
.y24_c00239{bottom:663.375852px;}
.y23_c00239{bottom:663.661500px;}
.y22_c00239{bottom:684.195000px;}
.y21_c00239{bottom:684.397500px;}
.y20_c00239{bottom:684.660000px;}
.y1f_c00239{bottom:684.943500px;}
.y1e_c00239{bottom:685.152000px;}
.y1d_c00239{bottom:685.344000px;}
.y1c_c00239{bottom:685.746000px;}
.y1b_c00239{bottom:685.945500px;}
.y1a_c00239{bottom:686.208000px;}
.y19_c00239{bottom:686.559000px;}
.y18_c00239{bottom:687.192000px;}
.y17_c00239{bottom:708.271500px;}
.y16_c00239{bottom:731.029500px;}
.y15_c00239{bottom:753.496500px;}
.y14_c00239{bottom:776.497500px;}
.y13_c00239{bottom:799.864500px;}
.y12_c00239{bottom:822.303000px;}
.y11_c00239{bottom:866.700000px;}
.yf_c00239{bottom:908.523192px;}
.ye_c00239{bottom:909.036789px;}
.yd_c00239{bottom:909.610699px;}
.y10_c00239{bottom:909.630000px;}
.yc_c00239{bottom:911.193571px;}
.yb_c00239{bottom:913.736013px;}
.ya_c00239{bottom:924.953856px;}
.y9_c00239{bottom:926.117997px;}
.y8_c00239{bottom:926.261943px;}
.y7_c00239{bottom:926.720923px;}
.y6_c00239{bottom:927.463374px;}
.y5_c00239{bottom:928.093558px;}
.y4_c00239{bottom:928.733247px;}
.y3_c00239{bottom:930.094728px;}
.y2_c00239{bottom:930.321025px;}
.y1_c00239{bottom:930.691500px;}
.h17_c00239{height:18.900000px;}
.h1b_c00239{height:31.500000px;}
.h18_c00239{height:50.414513px;}
.h1a_c00239{height:52.515118px;}
.h19_c00239{height:58.816932px;}
.ha_c00239{height:63.000000px;}
.h8_c00239{height:66.150000px;}
.hd_c00239{height:67.202150px;}
.hc_c00239{height:68.252184px;}
.hb_c00239{height:69.300000px;}
.hf_c00239{height:69.310013px;}
.h9_c00239{height:70.350000px;}
.h14_c00239{height:70.357914px;}
.h12_c00239{height:71.409139px;}
.h15_c00239{height:71.411566px;}
.h6_c00239{height:72.450000px;}
.h13_c00239{height:72.459273px;}
.he_c00239{height:73.502352px;}
.h11_c00239{height:73.510620px;}
.h16_c00239{height:74.571467px;}
.h7_c00239{height:75.600000px;}
.h2_c00239{height:75.604574px;}
.h10_c00239{height:75.610923px;}
.h5_c00239{height:103.950000px;}
.h4_c00239{height:105.000000px;}
.h3_c00239{height:114.456924px;}
.h0_c00239{height:1008.450000px;}
.h1_c00239{height:1008.750000px;}
.w0_c00239{width:678.450000px;}
.w1_c00239{width:678.750000px;}
.x0_c00239{left:0.000000px;}
.x92_c00239{left:61.404900px;}
.x98_c00239{left:66.306336px;}
.xb_c00239{left:68.221789px;}
.x99_c00239{left:82.098684px;}
.x1_c00239{left:86.593500px;}
.x93_c00239{left:103.813848px;}
.x2_c00239{left:120.273000px;}
.x10_c00239{left:129.330000px;}
.x9a_c00239{left:130.692192px;}
.x3_c00239{left:140.845500px;}
.x88_c00239{left:142.320000px;}
.x9b_c00239{left:147.694968px;}
.x65_c00239{left:152.728500px;}
.x94_c00239{left:155.219364px;}
.x3f_c00239{left:157.543500px;}
.x89_c00239{left:160.476000px;}
.x48_c00239{left:164.969712px;}
.x17_c00239{left:166.590000px;}
.x8a_c00239{left:177.861000px;}
.x59_c00239{left:184.680000px;}
.x18_c00239{left:188.190000px;}
.x55_c00239{left:190.349940px;}
.x7f_c00239{left:191.493000px;}
.x31_c00239{left:194.130000px;}
.x6e_c00239{left:196.443644px;}
.x1d_c00239{left:203.580000px;}
.x2a_c00239{left:210.870000px;}
.x83_c00239{left:213.079500px;}
.x56_c00239{left:214.650000px;}
.x7d_c00239{left:217.092000px;}
.x32_c00239{left:221.940000px;}
.x43_c00239{left:223.020792px;}
.x24_c00239{left:226.800000px;}
.x11_c00239{left:228.150000px;}
.x15_c00239{left:229.770000px;}
.x1e_c00239{left:231.390000px;}
.x4e_c00239{left:232.922340px;}
.x8b_c00239{left:235.728000px;}
.x5a_c00239{left:238.410000px;}
.x57_c00239{left:239.760108px;}
.x25_c00239{left:243.810000px;}
.x44_c00239{left:247.860876px;}
.x95_c00239{left:249.290328px;}
.x49_c00239{left:250.832208px;}
.x9c_c00239{left:254.136300px;}
.x7e_c00239{left:256.326000px;}
.x5b_c00239{left:257.850000px;}
.x6f_c00239{left:259.032402px;}
.xa0_c00239{left:260.280000px;}
.x75_c00239{left:262.059000px;}
.x1f_c00239{left:263.250000px;}
.x4_c00239{left:264.616500px;}
.x81_c00239{left:266.235480px;}
.x5e_c00239{left:267.300000px;}
.x45_c00239{left:270.002292px;}
.x19_c00239{left:271.890000px;}
.x80_c00239{left:273.096000px;}
.x26_c00239{left:275.400000px;}
.x84_c00239{left:277.368000px;}
.x69_c00239{left:279.839250px;}
.x8c_c00239{left:288.202500px;}
.x4f_c00239{left:289.891884px;}
.x37_c00239{left:290.965500px;}
.xf_c00239{left:295.920000px;}
.x16_c00239{left:298.080000px;}
.x12_c00239{left:300.240000px;}
.x82_c00239{left:301.339956px;}
.x5c_c00239{left:302.940000px;}
.x8d_c00239{left:304.719000px;}
.x2b_c00239{left:309.690000px;}
.x38_c00239{left:310.911000px;}
.x20_c00239{left:316.440000px;}
.x46_c00239{left:317.523828px;}
.x33_c00239{left:319.410000px;}
.x5_c00239{left:322.770000px;}
.x1a_c00239{left:324.540000px;}
.x27_c00239{left:326.430000px;}
.x85_c00239{left:327.442500px;}
.x4a_c00239{left:333.454500px;}
.x70_c00239{left:336.281655px;}
.x76_c00239{left:338.751000px;}
.x66_c00239{left:340.599000px;}
.x34_c00239{left:343.440000px;}
.x5f_c00239{left:344.520000px;}
.x1b_c00239{left:346.950000px;}
.x39_c00239{left:351.142500px;}
.x6a_c00239{left:353.362248px;}
.x21_c00239{left:354.510000px;}
.x28_c00239{left:362.070000px;}
.x50_c00239{left:365.735784px;}
.x67_c00239{left:367.135086px;}
.x7a_c00239{left:368.292312px;}
.x3a_c00239{left:370.362000px;}
.x2c_c00239{left:371.520000px;}
.x47_c00239{left:374.495976px;}
.x63_c00239{left:377.088000px;}
.x6_c00239{left:380.059500px;}
.x29_c00239{left:381.240000px;}
.x86_c00239{left:382.467000px;}
.x60_c00239{left:383.940000px;}
.x6b_c00239{left:386.308992px;}
.x1c_c00239{left:387.990000px;}
.x2d_c00239{left:389.070000px;}
.x3b_c00239{left:391.150500px;}
.x71_c00239{left:394.340108px;}
.x13_c00239{left:396.360000px;}
.x58_c00239{left:397.715712px;}
.x51_c00239{left:400.027008px;}
.x40_c00239{left:402.703500px;}
.x77_c00239{left:410.227500px;}
.x35_c00239{left:417.960000px;}
.x3c_c00239{left:419.454000px;}
.x2e_c00239{left:420.930000px;}
.x9d_c00239{left:423.730632px;}
.x14_c00239{left:425.520000px;}
.x6c_c00239{left:430.324976px;}
.x7b_c00239{left:431.632812px;}
.x61_c00239{left:435.510000px;}
.x36_c00239{left:437.130000px;}
.x72_c00239{left:439.703193px;}
.x78_c00239{left:441.016500px;}
.x8e_c00239{left:442.200000px;}
.x22_c00239{left:444.150000px;}
.x3d_c00239{left:445.677000px;}
.x7_c00239{left:447.555000px;}
.x4b_c00239{left:452.527620px;}
.x87_c00239{left:458.412000px;}
.x62_c00239{left:459.540000px;}
.x52_c00239{left:461.589516px;}
.x73_c00239{left:463.739325px;}
.x3e_c00239{left:465.889500px;}
.x23_c00239{left:467.100000px;}
.x8f_c00239{left:468.471000px;}
.x5d_c00239{left:470.070000px;}
.x4c_c00239{left:473.318952px;}
.x41_c00239{left:474.834000px;}
.x2f_c00239{left:479.250000px;}
.xc_c00239{left:480.754827px;}
.x9e_c00239{left:484.519776px;}
.x53_c00239{left:485.662824px;}
.x90_c00239{left:486.724500px;}
.x8_c00239{left:489.280500px;}
.x64_c00239{left:493.402500px;}
.x79_c00239{left:498.387000px;}
.x42_c00239{left:499.396500px;}
.x6d_c00239{left:500.972270px;}
.x9_c00239{left:502.366500px;}
.x4d_c00239{left:508.149684px;}
.x9f_c00239{left:510.683904px;}
.x74_c00239{left:521.178227px;}
.x30_c00239{left:522.180000px;}
.x54_c00239{left:525.304512px;}
.x68_c00239{left:526.877380px;}
.xd_c00239{left:538.110954px;}
.x96_c00239{left:540.673896px;}
.x7c_c00239{left:542.061312px;}
.x91_c00239{left:574.917000px;}
.xe_c00239{left:589.438515px;}
.x97_c00239{left:592.791912px;}
.xa_c00239{left:608.197500px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.fs15_c00239{font-size:16.800000pt;}
.fs19_c00239{font-size:28.000000pt;}
.fs16_c00239{font-size:44.812901pt;}
.fs18_c00239{font-size:46.680105pt;}
.fs17_c00239{font-size:52.281717pt;}
.fs8_c00239{font-size:56.000000pt;}
.fs6_c00239{font-size:58.800000pt;}
.fsb_c00239{font-size:59.735245pt;}
.fsa_c00239{font-size:60.668608pt;}
.fs9_c00239{font-size:61.600000pt;}
.fsd_c00239{font-size:61.608901pt;}
.fs7_c00239{font-size:62.533333pt;}
.fs12_c00239{font-size:62.540368pt;}
.fs10_c00239{font-size:63.474790pt;}
.fs13_c00239{font-size:63.476947pt;}
.fs4_c00239{font-size:64.400000pt;}
.fs11_c00239{font-size:64.408243pt;}
.fsc_c00239{font-size:65.335424pt;}
.fsf_c00239{font-size:65.342773pt;}
.fs14_c00239{font-size:66.285749pt;}
.fs5_c00239{font-size:67.200000pt;}
.fs0_c00239{font-size:67.204065pt;}
.fse_c00239{font-size:67.209710pt;}
.fs3_c00239{font-size:92.400000pt;}
.fs2_c00239{font-size:93.333333pt;}
.fs1_c00239{font-size:101.739488pt;}
.y0_c00239{bottom:0.000000pt;}
.ye6_c00239{bottom:95.756000pt;}
.ye5_c00239{bottom:134.769451pt;}
.ye4_c00239{bottom:135.396992pt;}
.ye3_c00239{bottom:135.978432pt;}
.ye2_c00239{bottom:136.425205pt;}
.ye1_c00239{bottom:136.855253pt;}
.ye0_c00239{bottom:137.913291pt;}
.ydf_c00239{bottom:139.174987pt;}
.yde_c00239{bottom:139.828683pt;}
.ydd_c00239{bottom:140.056000pt;}
.ydc_c00239{bottom:140.924192pt;}
.ydb_c00239{bottom:141.521035pt;}
.yda_c00239{bottom:141.955275pt;}
.yd9_c00239{bottom:143.479104pt;}
.yd8_c00239{bottom:143.887189pt;}
.yd7_c00239{bottom:145.053259pt;}
.yd6_c00239{bottom:145.432853pt;}
.yd5_c00239{bottom:149.231147pt;}
.yd4_c00239{bottom:150.435051pt;}
.yd3_c00239{bottom:150.858891pt;}
.yd2_c00239{bottom:151.601568pt;}
.yd1_c00239{bottom:153.237461pt;}
.yd0_c00239{bottom:154.197675pt;}
.ycf_c00239{bottom:155.463584pt;}
.yce_c00239{bottom:156.782261pt;}
.ycd_c00239{bottom:157.167531pt;}
.ycc_c00239{bottom:157.810848pt;}
.ycb_c00239{bottom:158.236789pt;}
.yca_c00239{bottom:158.585152pt;}
.yc9_c00239{bottom:159.342475pt;}
.yc8_c00239{bottom:159.941909pt;}
.yc7_c00239{bottom:160.531179pt;}
.yc6_c00239{bottom:161.511947pt;}
.yc5_c00239{bottom:166.032597pt;}
.yc4_c00239{bottom:167.051957pt;}
.yc3_c00239{bottom:167.914037pt;}
.yc2_c00239{bottom:168.303445pt;}
.yc1_c00239{bottom:168.863893pt;}
.yc0_c00239{bottom:169.363669pt;}
.ybf_c00239{bottom:169.826901pt;}
.ybe_c00239{bottom:170.236565pt;}
.ybd_c00239{bottom:171.496405pt;}
.ybc_c00239{bottom:171.796821pt;}
.ybb_c00239{bottom:172.149173pt;}
.yba_c00239{bottom:173.268629pt;}
.yb9_c00239{bottom:173.646741pt;}
.yb8_c00239{bottom:174.503125pt;}
.yb7_c00239{bottom:174.874005pt;}
.yb6_c00239{bottom:175.261333pt;}
.yb5_c00239{bottom:203.998667pt;}
.yb4_c00239{bottom:220.115264pt;}
.yb3_c00239{bottom:221.031424pt;}
.yb2_c00239{bottom:222.225600pt;}
.yb1_c00239{bottom:222.651584pt;}
.yb0_c00239{bottom:223.227968pt;}
.yaf_c00239{bottom:223.825440pt;}
.yae_c00239{bottom:224.942688pt;}
.yad_c00239{bottom:226.459904pt;}
.yac_c00239{bottom:227.288000pt;}
.yab_c00239{bottom:242.518165pt;}
.yaa_c00239{bottom:243.432541pt;}
.ya9_c00239{bottom:243.909061pt;}
.ya8_c00239{bottom:244.250293pt;}
.ya7_c00239{bottom:245.264557pt;}
.ya6_c00239{bottom:245.671981pt;}
.ya5_c00239{bottom:246.369181pt;}
.ya4_c00239{bottom:246.700597pt;}
.ya3_c00239{bottom:247.453333pt;}
.ya2_c00239{bottom:263.867627pt;}
.ya1_c00239{bottom:263.868096pt;}
.ya0_c00239{bottom:282.193877pt;}
.y9f_c00239{bottom:282.739093pt;}
.y9e_c00239{bottom:283.302571pt;}
.y9d_c00239{bottom:283.667456pt;}
.y9c_c00239{bottom:283.963477pt;}
.y9b_c00239{bottom:284.214037pt;}
.y9a_c00239{bottom:284.407573pt;}
.y99_c00239{bottom:285.312384pt;}
.y98_c00239{bottom:285.749483pt;}
.y97_c00239{bottom:286.592000pt;}
.y96_c00239{bottom:286.910059pt;}
.y95_c00239{bottom:287.282667pt;}
.y94_c00239{bottom:303.527927pt;}
.y93_c00239{bottom:303.847587pt;}
.y92_c00239{bottom:304.806007pt;}
.y91_c00239{bottom:305.583467pt;}
.y90_c00239{bottom:306.372047pt;}
.y8f_c00239{bottom:306.895167pt;}
.y8e_c00239{bottom:307.682667pt;}
.y8d_c00239{bottom:322.729899pt;}
.y8c_c00239{bottom:323.875307pt;}
.y8b_c00239{bottom:324.300437pt;}
.y8a_c00239{bottom:325.201280pt;}
.y89_c00239{bottom:325.508203pt;}
.y88_c00239{bottom:326.290901pt;}
.y87_c00239{bottom:327.055083pt;}
.y86_c00239{bottom:328.080363pt;}
.y85_c00239{bottom:343.505536pt;}
.y84_c00239{bottom:344.321472pt;}
.y83_c00239{bottom:344.759360pt;}
.y82_c00239{bottom:345.242411pt;}
.y81_c00239{bottom:345.775915pt;}
.y80_c00239{bottom:346.276288pt;}
.y7f_c00239{bottom:346.866645pt;}
.y7e_c00239{bottom:347.873941pt;}
.y7d_c00239{bottom:348.242667pt;}
.y7c_c00239{bottom:363.330707pt;}
.y7b_c00239{bottom:363.994613pt;}
.y7a_c00239{bottom:364.272468pt;}
.y79_c00239{bottom:364.796575pt;}
.y78_c00239{bottom:365.467176pt;}
.y77_c00239{bottom:366.359752pt;}
.y76_c00239{bottom:366.781219pt;}
.y75_c00239{bottom:367.082807pt;}
.y74_c00239{bottom:367.432515pt;}
.y73_c00239{bottom:384.690124pt;}
.y72_c00239{bottom:385.154901pt;}
.y71_c00239{bottom:385.506944pt;}
.y70_c00239{bottom:386.016029pt;}
.y6f_c00239{bottom:386.396524pt;}
.y6e_c00239{bottom:387.246129pt;}
.y6d_c00239{bottom:387.901528pt;}
.y6c_c00239{bottom:388.557244pt;}
.y6b_c00239{bottom:404.467163pt;}
.y6a_c00239{bottom:404.641753pt;}
.y69_c00239{bottom:405.108476pt;}
.y68_c00239{bottom:405.795063pt;}
.y67_c00239{bottom:406.028800pt;}
.y66_c00239{bottom:406.515252pt;}
.y65_c00239{bottom:407.005928pt;}
.y64_c00239{bottom:407.275920pt;}
.y63_c00239{bottom:407.998675pt;}
.y62_c00239{bottom:426.065236pt;}
.y61_c00239{bottom:426.676873pt;}
.y60_c00239{bottom:427.006401pt;}
.y5f_c00239{bottom:427.775005pt;}
.y5e_c00239{bottom:428.810827pt;}
.y5d_c00239{bottom:429.642965pt;}
.y5c_c00239{bottom:429.845333pt;}
.y5b_c00239{bottom:445.793333pt;}
.y5a_c00239{bottom:446.072000pt;}
.y59_c00239{bottom:446.561333pt;}
.y58_c00239{bottom:447.033333pt;}
.y57_c00239{bottom:447.284000pt;}
.y56_c00239{bottom:447.904000pt;}
.y55_c00239{bottom:448.494667pt;}
.y54_c00239{bottom:448.877333pt;}
.y53_c00239{bottom:449.280000pt;}
.y52_c00239{bottom:467.221333pt;}
.y51_c00239{bottom:487.496000pt;}
.y4f_c00239{bottom:508.176107pt;}
.y4b_c00239{bottom:508.176160pt;}
.y50_c00239{bottom:508.176320pt;}
.y4e_c00239{bottom:508.176469pt;}
.y4c_c00239{bottom:508.176704pt;}
.y4a_c00239{bottom:508.176789pt;}
.y4d_c00239{bottom:508.176821pt;}
.y49_c00239{bottom:526.803605pt;}
.y48_c00239{bottom:527.120171pt;}
.y47_c00239{bottom:527.312693pt;}
.y46_c00239{bottom:527.638624pt;}
.y45_c00239{bottom:527.805141pt;}
.y44_c00239{bottom:528.079659pt;}
.y43_c00239{bottom:528.467925pt;}
.y42_c00239{bottom:528.685664pt;}
.y41_c00239{bottom:529.141451pt;}
.y40_c00239{bottom:529.679755pt;}
.y35_c00239{bottom:548.500544pt;}
.y3b_c00239{bottom:548.500661pt;}
.y36_c00239{bottom:548.500672pt;}
.y37_c00239{bottom:548.500779pt;}
.y3a_c00239{bottom:548.500971pt;}
.y3d_c00239{bottom:548.501152pt;}
.y39_c00239{bottom:548.501173pt;}
.y3c_c00239{bottom:548.501301pt;}
.y3e_c00239{bottom:548.501312pt;}
.y38_c00239{bottom:548.501429pt;}
.y3f_c00239{bottom:548.501643pt;}
.y30_c00239{bottom:568.707744pt;}
.y31_c00239{bottom:568.707968pt;}
.y33_c00239{bottom:568.707979pt;}
.y34_c00239{bottom:568.708256pt;}
.y32_c00239{bottom:568.708299pt;}
.y2f_c00239{bottom:568.708320pt;}
.y2e_c00239{bottom:568.708427pt;}
.y2d_c00239{bottom:568.709056pt;}
.y2c_c00239{bottom:568.709152pt;}
.y2b_c00239{bottom:587.490379pt;}
.y2a_c00239{bottom:587.665045pt;}
.y29_c00239{bottom:588.177973pt;}
.y28_c00239{bottom:588.407861pt;}
.y27_c00239{bottom:588.715371pt;}
.y26_c00239{bottom:589.170485pt;}
.y25_c00239{bottom:589.416160pt;}
.y24_c00239{bottom:589.667424pt;}
.y23_c00239{bottom:589.921333pt;}
.y22_c00239{bottom:608.173333pt;}
.y21_c00239{bottom:608.353333pt;}
.y20_c00239{bottom:608.586667pt;}
.y1f_c00239{bottom:608.838667pt;}
.y1e_c00239{bottom:609.024000pt;}
.y1d_c00239{bottom:609.194667pt;}
.y1c_c00239{bottom:609.552000pt;}
.y1b_c00239{bottom:609.729333pt;}
.y1a_c00239{bottom:609.962667pt;}
.y19_c00239{bottom:610.274667pt;}
.y18_c00239{bottom:610.837333pt;}
.y17_c00239{bottom:629.574667pt;}
.y16_c00239{bottom:649.804000pt;}
.y15_c00239{bottom:669.774667pt;}
.y14_c00239{bottom:690.220000pt;}
.y13_c00239{bottom:710.990667pt;}
.y12_c00239{bottom:730.936000pt;}
.y11_c00239{bottom:770.400000pt;}
.yf_c00239{bottom:807.576171pt;}
.ye_c00239{bottom:808.032701pt;}
.yd_c00239{bottom:808.542844pt;}
.y10_c00239{bottom:808.560000pt;}
.yc_c00239{bottom:809.949841pt;}
.yb_c00239{bottom:812.209789pt;}
.ya_c00239{bottom:822.181205pt;}
.y9_c00239{bottom:823.215997pt;}
.y8_c00239{bottom:823.343949pt;}
.y7_c00239{bottom:823.751932pt;}
.y6_c00239{bottom:824.411888pt;}
.y5_c00239{bottom:824.972052pt;}
.y4_c00239{bottom:825.540664pt;}
.y3_c00239{bottom:826.750869pt;}
.y2_c00239{bottom:826.952023pt;}
.y1_c00239{bottom:827.281333pt;}
.h17_c00239{height:16.800000pt;}
.h1b_c00239{height:28.000000pt;}
.h18_c00239{height:44.812901pt;}
.h1a_c00239{height:46.680105pt;}
.h19_c00239{height:52.281717pt;}
.ha_c00239{height:56.000000pt;}
.h8_c00239{height:58.800000pt;}
.hd_c00239{height:59.735245pt;}
.hc_c00239{height:60.668608pt;}
.hb_c00239{height:61.600000pt;}
.hf_c00239{height:61.608901pt;}
.h9_c00239{height:62.533333pt;}
.h14_c00239{height:62.540368pt;}
.h12_c00239{height:63.474790pt;}
.h15_c00239{height:63.476947pt;}
.h6_c00239{height:64.400000pt;}
.h13_c00239{height:64.408243pt;}
.he_c00239{height:65.335424pt;}
.h11_c00239{height:65.342773pt;}
.h16_c00239{height:66.285749pt;}
.h7_c00239{height:67.200000pt;}
.h2_c00239{height:67.204065pt;}
.h10_c00239{height:67.209710pt;}
.h5_c00239{height:92.400000pt;}
.h4_c00239{height:93.333333pt;}
.h3_c00239{height:101.739488pt;}
.h0_c00239{height:896.400000pt;}
.h1_c00239{height:896.666667pt;}
.w0_c00239{width:603.066667pt;}
.w1_c00239{width:603.333333pt;}
.x0_c00239{left:0.000000pt;}
.x92_c00239{left:54.582133pt;}
.x98_c00239{left:58.938965pt;}
.xb_c00239{left:60.641591pt;}
.x99_c00239{left:72.976608pt;}
.x1_c00239{left:76.972000pt;}
.x93_c00239{left:92.278976pt;}
.x2_c00239{left:106.909333pt;}
.x10_c00239{left:114.960000pt;}
.x9a_c00239{left:116.170837pt;}
.x3_c00239{left:125.196000pt;}
.x88_c00239{left:126.506667pt;}
.x9b_c00239{left:131.284416pt;}
.x65_c00239{left:135.758667pt;}
.x94_c00239{left:137.972768pt;}
.x3f_c00239{left:140.038667pt;}
.x89_c00239{left:142.645333pt;}
.x48_c00239{left:146.639744pt;}
.x17_c00239{left:148.080000pt;}
.x8a_c00239{left:158.098667pt;}
.x59_c00239{left:164.160000pt;}
.x18_c00239{left:167.280000pt;}
.x55_c00239{left:169.199947pt;}
.x7f_c00239{left:170.216000pt;}
.x31_c00239{left:172.560000pt;}
.x6e_c00239{left:174.616572pt;}
.x1d_c00239{left:180.960000pt;}
.x2a_c00239{left:187.440000pt;}
.x83_c00239{left:189.404000pt;}
.x56_c00239{left:190.800000pt;}
.x7d_c00239{left:192.970667pt;}
.x32_c00239{left:197.280000pt;}
.x43_c00239{left:198.240704pt;}
.x24_c00239{left:201.600000pt;}
.x11_c00239{left:202.800000pt;}
.x15_c00239{left:204.240000pt;}
.x1e_c00239{left:205.680000pt;}
.x4e_c00239{left:207.042080pt;}
.x8b_c00239{left:209.536000pt;}
.x5a_c00239{left:211.920000pt;}
.x57_c00239{left:213.120096pt;}
.x25_c00239{left:216.720000pt;}
.x44_c00239{left:220.320779pt;}
.x95_c00239{left:221.591403pt;}
.x49_c00239{left:222.961963pt;}
.x9c_c00239{left:225.898933pt;}
.x7e_c00239{left:227.845333pt;}
.x5b_c00239{left:229.200000pt;}
.x6f_c00239{left:230.251024pt;}
.xa0_c00239{left:231.360000pt;}
.x75_c00239{left:232.941333pt;}
.x1f_c00239{left:234.000000pt;}
.x4_c00239{left:235.214667pt;}
.x81_c00239{left:236.653760pt;}
.x5e_c00239{left:237.600000pt;}
.x45_c00239{left:240.002037pt;}
.x19_c00239{left:241.680000pt;}
.x80_c00239{left:242.752000pt;}
.x26_c00239{left:244.800000pt;}
.x84_c00239{left:246.549333pt;}
.x69_c00239{left:248.746000pt;}
.x8c_c00239{left:256.180000pt;}
.x4f_c00239{left:257.681675pt;}
.x37_c00239{left:258.636000pt;}
.xf_c00239{left:263.040000pt;}
.x16_c00239{left:264.960000pt;}
.x12_c00239{left:266.880000pt;}
.x82_c00239{left:267.857739pt;}
.x5c_c00239{left:269.280000pt;}
.x8d_c00239{left:270.861333pt;}
.x2b_c00239{left:275.280000pt;}
.x38_c00239{left:276.365333pt;}
.x20_c00239{left:281.280000pt;}
.x46_c00239{left:282.243403pt;}
.x33_c00239{left:283.920000pt;}
.x5_c00239{left:286.906667pt;}
.x1a_c00239{left:288.480000pt;}
.x27_c00239{left:290.160000pt;}
.x85_c00239{left:291.060000pt;}
.x4a_c00239{left:296.404000pt;}
.x70_c00239{left:298.917027pt;}
.x76_c00239{left:301.112000pt;}
.x66_c00239{left:302.754667pt;}
.x34_c00239{left:305.280000pt;}
.x5f_c00239{left:306.240000pt;}
.x1b_c00239{left:308.400000pt;}
.x39_c00239{left:312.126667pt;}
.x6a_c00239{left:314.099776pt;}
.x21_c00239{left:315.120000pt;}
.x28_c00239{left:321.840000pt;}
.x50_c00239{left:325.098475pt;}
.x67_c00239{left:326.342299pt;}
.x7a_c00239{left:327.370944pt;}
.x3a_c00239{left:329.210667pt;}
.x2c_c00239{left:330.240000pt;}
.x47_c00239{left:332.885312pt;}
.x63_c00239{left:335.189333pt;}
.x6_c00239{left:337.830667pt;}
.x29_c00239{left:338.880000pt;}
.x86_c00239{left:339.970667pt;}
.x60_c00239{left:341.280000pt;}
.x6b_c00239{left:343.385771pt;}
.x1c_c00239{left:344.880000pt;}
.x2d_c00239{left:345.840000pt;}
.x3b_c00239{left:347.689333pt;}
.x71_c00239{left:350.524540pt;}
.x13_c00239{left:352.320000pt;}
.x58_c00239{left:353.525077pt;}
.x51_c00239{left:355.579563pt;}
.x40_c00239{left:357.958667pt;}
.x77_c00239{left:364.646667pt;}
.x35_c00239{left:371.520000pt;}
.x3c_c00239{left:372.848000pt;}
.x2e_c00239{left:374.160000pt;}
.x9d_c00239{left:376.649451pt;}
.x14_c00239{left:378.240000pt;}
.x6c_c00239{left:382.511089pt;}
.x7b_c00239{left:383.673611pt;}
.x61_c00239{left:387.120000pt;}
.x36_c00239{left:388.560000pt;}
.x72_c00239{left:390.847283pt;}
.x78_c00239{left:392.014667pt;}
.x8e_c00239{left:393.066667pt;}
.x22_c00239{left:394.800000pt;}
.x3d_c00239{left:396.157333pt;}
.x7_c00239{left:397.826667pt;}
.x4b_c00239{left:402.246773pt;}
.x87_c00239{left:407.477333pt;}
.x62_c00239{left:408.480000pt;}
.x52_c00239{left:410.301792pt;}
.x73_c00239{left:412.212733pt;}
.x3e_c00239{left:414.124000pt;}
.x23_c00239{left:415.200000pt;}
.x8f_c00239{left:416.418667pt;}
.x5d_c00239{left:417.840000pt;}
.x4c_c00239{left:420.727957pt;}
.x41_c00239{left:422.074667pt;}
.x2f_c00239{left:426.000000pt;}
.xc_c00239{left:427.337624pt;}
.x9e_c00239{left:430.684245pt;}
.x53_c00239{left:431.700288pt;}
.x90_c00239{left:432.644000pt;}
.x8_c00239{left:434.916000pt;}
.x64_c00239{left:438.580000pt;}
.x79_c00239{left:443.010667pt;}
.x42_c00239{left:443.908000pt;}
.x6d_c00239{left:445.308684pt;}
.x9_c00239{left:446.548000pt;}
.x4d_c00239{left:451.688608pt;}
.x9f_c00239{left:453.941248pt;}
.x74_c00239{left:463.269535pt;}
.x30_c00239{left:464.160000pt;}
.x54_c00239{left:466.937344pt;}
.x68_c00239{left:468.335449pt;}
.xd_c00239{left:478.320848pt;}
.x96_c00239{left:480.599019pt;}
.x7c_c00239{left:481.832277pt;}
.x91_c00239{left:511.037333pt;}
.xe_c00239{left:523.945347pt;}
.x97_c00239{left:526.926144pt;}
.xa_c00239{left:540.620000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m5c_c00240{transform:matrix(0.008455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008455,0.000000,0.000000,0.250000,0,0);}
.me0_c00240{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);}
.m53_c00240{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);}
.mc1_c00240{transform:matrix(0.050735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050735,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.106150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106150,0.000000,0.000000,0.250000,0,0);}
.meb_c00240{transform:matrix(0.115470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115470,0.000000,0.000000,0.250000,0,0);}
.me2_c00240{transform:matrix(0.137485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137485,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{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);}
.mac_c00240{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);}
.mbd_c00240{transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146435,0.000000,0.000000,0.250000,0,0);}
.ma4_c00240{transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);}
.maf_c00240{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);}
.m86_c00240{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);}
.m87_c00240{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.mad_c00240{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);}
.m49_c00240{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);}
.m17_c00240{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);}
.m18_c00240{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);}
.mef_c00240{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);}
.m7e_c00240{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);}
.m79_c00240{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);}
.m29_c00240{transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);}
.m2a_c00240{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.m92_c00240{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);}
.m8d_c00240{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_c00240{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);}
.m3c_c00240{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);}
.mc6_c00240{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);}
.m85_c00240{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);}
.m64_c00240{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);}
.m88_c00240{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);}
.mca_c00240{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);}
.ma7_c00240{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);}
.mb1_c00240{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);}
.ma9_c00240{transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);}
.mf0_c00240{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);}
.mf2_c00240{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);}
.mb3_c00240{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);}
.md8_c00240{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);}
.mfe_c00240{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);}
.mf_c00240{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);}
.m31_c00240{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);}
.m6_c00240{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);}
.maa_c00240{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);}
.md6_c00240{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);}
.m62_c00240{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);}
.mcc_c00240{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);}
.mb7_c00240{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);}
.m8b_c00240{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);}
.m48_c00240{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);}
.mce_c00240{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);}
.mf3_c00240{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);}
.m73_c00240{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);}
.md9_c00240{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);}
.ma_c00240{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);}
.m28_c00240{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.md0_c00240{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);}
.m4d_c00240{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_c00240{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);}
.mee_c00240{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);}
.m75_c00240{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);}
.m83_c00240{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);}
.md2_c00240{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);}
.md1_c00240{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);}
.mbc_c00240{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);}
.m1e_c00240{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);}
.mc7_c00240{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);}
.m16_c00240{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);}
.m3f_c00240{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);}
.m8e_c00240{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);}
.m78_c00240{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);}
.me7_c00240{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);}
.m68_c00240{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);}
.med_c00240{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);}
.mf1_c00240{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);}
.m69_c00240{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);}
.m89_c00240{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);}
.m74_c00240{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);}
.mde_c00240{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);}
.m19_c00240{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);}
.m77_c00240{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);}
.m21_c00240{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);}
.mec_c00240{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);}
.m7b_c00240{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);}
.mc3_c00240{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);}
.m22_c00240{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);}
.m3d_c00240{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);}
.me9_c00240{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);}
.md3_c00240{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);}
.m66_c00240{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);}
.mcf_c00240{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);}
.m35_c00240{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);}
.m4b_c00240{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);}
.m101_c00240{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);}
.m57_c00240{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);}
.m14_c00240{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.m91_c00240{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);}
.m4f_c00240{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);}
.m5e_c00240{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);}
.md_c00240{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);}
.m1c_c00240{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);}
.mae_c00240{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);}
.m2d_c00240{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);}
.m10_c00240{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_c00240{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);}
.m1d_c00240{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);}
.m34_c00240{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);}
.m72_c00240{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);}
.m94_c00240{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);}
.m8c_c00240{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);}
.md5_c00240{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);}
.m90_c00240{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);}
.mc8_c00240{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);}
.ma6_c00240{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);}
.mb4_c00240{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);}
.m7d_c00240{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);}
.md4_c00240{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);}
.mb8_c00240{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);}
.m43_c00240{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);}
.m9_c00240{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);}
.me6_c00240{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);}
.m65_c00240{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);}
.m33_c00240{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);}
.m20_c00240{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);}
.m8_c00240{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);}
.mab_c00240{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);}
.mc4_c00240{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);}
.mba_c00240{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);}
.mdf_c00240{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);}
.m44_c00240{transform:matrix(0.205365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205365,0.000000,0.000000,0.250000,0,0);}
.md7_c00240{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);}
.m6a_c00240{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);}
.m7f_c00240{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);}
.m3e_c00240{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);}
.m60_c00240{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);}
.m3a_c00240{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);}
.mbb_c00240{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);}
.m61_c00240{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);}
.m81_c00240{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);}
.m8f_c00240{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);}
.m46_c00240{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);}
.m2_c00240{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);}
.m6e_c00240{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);}
.mb0_c00240{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);}
.m1b_c00240{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);}
.m23_c00240{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);}
.me3_c00240{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);}
.m82_c00240{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);}
.mb6_c00240{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);}
.m3b_c00240{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);}
.mf7_c00240{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);}
.m67_c00240{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);}
.m27_c00240{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);}
.m4a_c00240{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);}
.mc2_c00240{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);}
.m7a_c00240{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);}
.m32_c00240{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);}
.mfc_c00240{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);}
.m7c_c00240{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);}
.mff_c00240{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);}
.m26_c00240{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.m99_c00240{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);}
.m37_c00240{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);}
.m7_c00240{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);}
.m97_c00240{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);}
.m6f_c00240{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);}
.m84_c00240{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);}
.mfd_c00240{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);}
.mcd_c00240{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);}
.m5a_c00240{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);}
.mf9_c00240{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);}
.m9c_c00240{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);}
.m9f_c00240{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);}
.mb5_c00240{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);}
.me4_c00240{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);}
.m80_c00240{transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00240{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);}
.m52_c00240{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);}
.m25_c00240{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);}
.mc5_c00240{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);}
.m55_c00240{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);}
.m39_c00240{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);}
.me8_c00240{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);}
.mc_c00240{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);}
.m4e_c00240{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00240{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);}
.m76_c00240{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);}
.mc9_c00240{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);}
.m6b_c00240{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);}
.m5_c00240{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);}
.mf6_c00240{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);}
.ma0_c00240{transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);}
.mb9_c00240{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);}
.m2b_c00240{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);}
.me_c00240{transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);}
.m30_c00240{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);}
.m24_c00240{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);}
.m15_c00240{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);}
.mf8_c00240{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);}
.m63_c00240{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);}
.m47_c00240{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);}
.m8a_c00240{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);}
.m95_c00240{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);}
.m9a_c00240{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);}
.mfb_c00240{transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);}
.m70_c00240{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);}
.mf5_c00240{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);}
.m2f_c00240{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);}
.m4c_c00240{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);}
.m9e_c00240{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);}
.m98_c00240{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);}
.m1a_c00240{transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);}
.m102_c00240{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);}
.mdd_c00240{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.m59_c00240{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);}
.m40_c00240{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.me5_c00240{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.mf4_c00240{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);}
.ma2_c00240{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{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);}
.mcb_c00240{transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);}
.m5f_c00240{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);}
.ma5_c00240{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);}
.m1f_c00240{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m96_c00240{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);}
.m45_c00240{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);}
.mea_c00240{transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261370,0.000000,0.000000,0.250000,0,0);}
.m9d_c00240{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);}
.m2c_c00240{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);}
.m56_c00240{transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);}
.m104_c00240{transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285280,0.000000,0.000000,0.250000,0,0);}
.mda_c00240{transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00240{transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296350,0.000000,0.000000,0.250000,0,0);}
.m93_c00240{transform:matrix(0.298545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298545,0.000000,0.000000,0.250000,0,0);}
.m9b_c00240{transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315285,0.000000,0.000000,0.250000,0,0);}
.m71_c00240{transform:matrix(0.316630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316630,0.000000,0.000000,0.250000,0,0);}
.m58_c00240{transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);}
.mbe_c00240{transform:matrix(0.331475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331475,0.000000,0.000000,0.250000,0,0);}
.ma1_c00240{transform:matrix(0.335610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335610,0.000000,0.000000,0.250000,0,0);}
.m5d_c00240{transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337855,0.000000,0.000000,0.250000,0,0);}
.m6d_c00240{transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349330,0.000000,0.000000,0.250000,0,0);}
.mfa_c00240{transform:matrix(0.357260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357260,0.000000,0.000000,0.250000,0,0);}
.m38_c00240{transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);}
.mdb_c00240{transform:matrix(0.360600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360600,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.386420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386420,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.395645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395645,0.000000,0.000000,0.250000,0,0);}
.m50_c00240{transform:matrix(0.402070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402070,0.000000,0.000000,0.250000,0,0);}
.m54_c00240{transform:matrix(0.417165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417165,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);}
.m51_c00240{transform:matrix(0.426015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426015,0.000000,0.000000,0.250000,0,0);}
.mdc_c00240{transform:matrix(0.430835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430835,0.000000,0.000000,0.250000,0,0);}
.mc0_c00240{transform:matrix(0.448850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448850,0.000000,0.000000,0.250000,0,0);}
.me1_c00240{transform:matrix(0.590240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590240,0.000000,0.000000,0.250000,0,0);}
.m5b_c00240{transform:matrix(0.602965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602965,0.000000,0.000000,0.250000,0,0);}
.mbf_c00240{transform:matrix(0.653500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653500,0.000000,0.000000,0.250000,0,0);}
.m103_c00240{transform:matrix(0.857025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857025,0.000000,0.000000,0.250000,0,0);}
.m100_c00240{transform:matrix(0.869965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869965,0.000000,0.000000,0.250000,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;}
.fs0_c00240{font-size:22.050000px;}
.fse_c00240{font-size:26.250000px;}
.fsf_c00240{font-size:33.600000px;}
.fs13_c00240{font-size:49.350000px;}
.fs15_c00240{font-size:52.500000px;}
.fs14_c00240{font-size:53.550000px;}
.fs11_c00240{font-size:54.600000px;}
.fsd_c00240{font-size:55.650000px;}
.fs10_c00240{font-size:57.750000px;}
.fs12_c00240{font-size:58.800000px;}
.fsc_c00240{font-size:60.900000px;}
.fs8_c00240{font-size:61.950000px;}
.fs4_c00240{font-size:66.150000px;}
.fsa_c00240{font-size:67.200000px;}
.fs2_c00240{font-size:68.250000px;}
.fs6_c00240{font-size:69.300000px;}
.fs7_c00240{font-size:70.350000px;}
.fs5_c00240{font-size:71.400000px;}
.fs9_c00240{font-size:72.450000px;}
.fsb_c00240{font-size:73.500000px;}
.fs3_c00240{font-size:74.550000px;}
.fs1_c00240{font-size:101.850000px;}
.y0_c00240{bottom:0.000000px;}
.y27_c00240{bottom:148.828500px;}
.y24_c00240{bottom:149.295000px;}
.y26_c00240{bottom:166.897500px;}
.y23_c00240{bottom:167.262000px;}
.y25_c00240{bottom:184.993500px;}
.y22_c00240{bottom:185.037000px;}
.y1c_c00240{bottom:242.356500px;}
.y21_c00240{bottom:250.560000px;}
.y1b_c00240{bottom:265.080000px;}
.y20_c00240{bottom:285.930000px;}
.y1a_c00240{bottom:287.812500px;}
.y1f_c00240{bottom:288.360000px;}
.y1e_c00240{bottom:292.410000px;}
.y19_c00240{bottom:310.770000px;}
.y1d_c00240{bottom:320.490000px;}
.y18_c00240{bottom:333.349500px;}
.y17_c00240{bottom:356.499000px;}
.y16_c00240{bottom:378.901500px;}
.y15_c00240{bottom:402.225000px;}
.y14_c00240{bottom:424.893000px;}
.y13_c00240{bottom:447.120000px;}
.y12_c00240{bottom:470.175000px;}
.y11_c00240{bottom:493.632000px;}
.y10_c00240{bottom:516.990000px;}
.yf_c00240{bottom:539.419500px;}
.ye_c00240{bottom:561.382500px;}
.yd_c00240{bottom:584.365500px;}
.yc_c00240{bottom:628.858500px;}
.yb_c00240{bottom:629.796000px;}
.ya_c00240{bottom:651.852000px;}
.y9_c00240{bottom:675.073500px;}
.y8_c00240{bottom:697.749000px;}
.y7_c00240{bottom:720.951000px;}
.y6_c00240{bottom:744.463500px;}
.y5_c00240{bottom:766.846500px;}
.y4_c00240{bottom:789.766500px;}
.y3_c00240{bottom:813.613500px;}
.y2_c00240{bottom:859.603500px;}
.y1_c00240{bottom:924.750000px;}
.h2_c00240{height:22.050000px;}
.h10_c00240{height:26.250000px;}
.h11_c00240{height:33.600000px;}
.h15_c00240{height:49.350000px;}
.h17_c00240{height:52.500000px;}
.h16_c00240{height:53.550000px;}
.h13_c00240{height:54.600000px;}
.hf_c00240{height:55.650000px;}
.h12_c00240{height:57.750000px;}
.h14_c00240{height:58.800000px;}
.he_c00240{height:60.900000px;}
.ha_c00240{height:61.950000px;}
.h6_c00240{height:66.150000px;}
.hc_c00240{height:67.200000px;}
.h4_c00240{height:68.250000px;}
.h8_c00240{height:69.300000px;}
.h9_c00240{height:70.350000px;}
.h7_c00240{height:71.400000px;}
.hb_c00240{height:72.450000px;}
.hd_c00240{height:73.500000px;}
.h5_c00240{height:74.550000px;}
.h3_c00240{height:101.850000px;}
.h1_c00240{height:1005.000000px;}
.h0_c00240{height:1005.150000px;}
.w1_c00240{width:713.250000px;}
.w0_c00240{width:713.550000px;}
.x0_c00240{left:0.000000px;}
.x8f_c00240{left:88.830000px;}
.x1_c00240{left:99.900000px;}
.x90_c00240{left:102.600000px;}
.x7f_c00240{left:106.380000px;}
.x29_c00240{left:109.080000px;}
.x40_c00240{left:111.240000px;}
.x9_c00240{left:113.670000px;}
.x19_c00240{left:115.020000px;}
.x3c_c00240{left:117.180000px;}
.x46_c00240{left:118.530000px;}
.x5b_c00240{left:119.880000px;}
.x62_c00240{left:121.500000px;}
.x83_c00240{left:123.120000px;}
.x86_c00240{left:124.470000px;}
.x47_c00240{left:138.780000px;}
.x96_c00240{left:143.910000px;}
.x41_c00240{left:145.260000px;}
.x12_c00240{left:147.420000px;}
.x84_c00240{left:149.850000px;}
.x4b_c00240{left:151.470000px;}
.x37_c00240{left:152.820000px;}
.x1a_c00240{left:155.520000px;}
.x6c_c00240{left:156.600000px;}
.x3d_c00240{left:157.680000px;}
.x2a_c00240{left:160.650000px;}
.x63_c00240{left:162.000000px;}
.x5c_c00240{left:163.620000px;}
.x97_c00240{left:164.700000px;}
.x2_c00240{left:167.940000px;}
.xa_c00240{left:169.830000px;}
.x78_c00240{left:172.260000px;}
.x22_c00240{left:173.880000px;}
.x13_c00240{left:177.660000px;}
.x42_c00240{left:178.740000px;}
.x1b_c00240{left:184.680000px;}
.x94_c00240{left:186.030000px;}
.x56_c00240{left:187.380000px;}
.x32_c00240{left:189.810000px;}
.x68_c00240{left:191.160000px;}
.xb_c00240{left:198.720000px;}
.x38_c00240{left:201.150000px;}
.x2b_c00240{left:202.230000px;}
.x51_c00240{left:204.120000px;}
.x91_c00240{left:205.200000px;}
.x71_c00240{left:208.170000px;}
.x64_c00240{left:211.680000px;}
.x14_c00240{left:213.300000px;}
.x5d_c00240{left:214.380000px;}
.x6d_c00240{left:217.890000px;}
.x3_c00240{left:220.320000px;}
.x98_c00240{left:224.100000px;}
.x33_c00240{left:225.720000px;}
.x92_c00240{left:227.340000px;}
.x4c_c00240{left:228.960000px;}
.x6e_c00240{left:230.850000px;}
.x2c_c00240{left:231.930000px;}
.x1c_c00240{left:235.440000px;}
.x65_c00240{left:237.870000px;}
.x79_c00240{left:241.920000px;}
.x4_c00240{left:243.270000px;}
.x3e_c00240{left:244.890000px;}
.x75_c00240{left:248.400000px;}
.x2d_c00240{left:252.450000px;}
.x15_c00240{left:257.310000px;}
.x48_c00240{left:259.740000px;}
.x43_c00240{left:263.790000px;}
.x52_c00240{left:271.080000px;}
.x5_c00240{left:272.160000px;}
.x1d_c00240{left:274.050000px;}
.x23_c00240{left:277.290000px;}
.x57_c00240{left:278.910000px;}
.x93_c00240{left:282.690000px;}
.x34_c00240{left:285.390000px;}
.x87_c00240{left:288.360000px;}
.x39_c00240{left:292.140000px;}
.x53_c00240{left:294.030000px;}
.x4d_c00240{left:295.650000px;}
.x95_c00240{left:296.730000px;}
.x24_c00240{left:298.080000px;}
.x72_c00240{left:299.430000px;}
.x3f_c00240{left:301.590000px;}
.xc_c00240{left:306.180000px;}
.x5e_c00240{left:309.420000px;}
.x7e_c00240{left:310.770000px;}
.x80_c00240{left:311.850000px;}
.x4e_c00240{left:313.740000px;}
.x16_c00240{left:319.950000px;}
.x35_c00240{left:322.650000px;}
.x5f_c00240{left:324.270000px;}
.x88_c00240{left:325.620000px;}
.x54_c00240{left:327.240000px;}
.x6f_c00240{left:330.480000px;}
.x25_c00240{left:332.640000px;}
.x7a_c00240{left:333.990000px;}
.x76_c00240{left:335.340000px;}
.xd_c00240{left:336.690000px;}
.x81_c00240{left:338.580000px;}
.x1e_c00240{left:341.820000px;}
.x44_c00240{left:343.170000px;}
.x66_c00240{left:344.520000px;}
.x58_c00240{left:347.220000px;}
.x17_c00240{left:350.730000px;}
.x2e_c00240{left:356.130000px;}
.x69_c00240{left:358.560000px;}
.x49_c00240{left:359.640000px;}
.x85_c00240{left:361.530000px;}
.x55_c00240{left:367.200000px;}
.x9f_c00240{left:368.280000px;}
.xe_c00240{left:370.980000px;}
.x60_c00240{left:373.140000px;}
.x1f_c00240{left:377.460000px;}
.x7b_c00240{left:381.240000px;}
.x4a_c00240{left:382.860000px;}
.x6_c00240{left:385.020000px;}
.x7c_c00240{left:386.100000px;}
.x36_c00240{left:387.720000px;}
.x18_c00240{left:389.610000px;}
.xf_c00240{left:391.770000px;}
.x4f_c00240{left:393.660000px;}
.x26_c00240{left:395.820000px;}
.x70_c00240{left:397.440000px;}
.x99_c00240{left:399.870000px;}
.x73_c00240{left:403.380000px;}
.x67_c00240{left:404.730000px;}
.x61_c00240{left:406.620000px;}
.x45_c00240{left:409.050000px;}
.x27_c00240{left:410.130000px;}
.x10_c00240{left:412.290000px;}
.x3a_c00240{left:413.370000px;}
.x59_c00240{left:415.800000px;}
.x82_c00240{left:417.420000px;}
.x50_c00240{left:418.500000px;}
.x74_c00240{left:424.980000px;}
.x2f_c00240{left:427.140000px;}
.xa0_c00240{left:428.220000px;}
.x6a_c00240{left:430.110000px;}
.x20_c00240{left:434.430000px;}
.x3b_c00240{left:438.480000px;}
.x28_c00240{left:440.910000px;}
.x9d_c00240{left:451.710000px;}
.x5a_c00240{left:455.760000px;}
.x21_c00240{left:460.350000px;}
.x7_c00240{left:464.130000px;}
.x9a_c00240{left:467.370000px;}
.x9e_c00240{left:471.420000px;}
.x77_c00240{left:472.770000px;}
.x11_c00240{left:476.010000px;}
.x6b_c00240{left:485.730000px;}
.x30_c00240{left:491.130000px;}
.x7d_c00240{left:504.630000px;}
.x8_c00240{left:519.750000px;}
.xa1_c00240{left:521.370000px;}
.x31_c00240{left:532.980000px;}
.x9b_c00240{left:551.610000px;}
.x9c_c00240{left:578.340000px;}
.x89_c00240{left:588.060000px;}
.x8c_c00240{left:595.620000px;}
.x8d_c00240{left:601.020000px;}
.x8b_c00240{left:602.640000px;}
.x8a_c00240{left:604.530000px;}
.x8e_c00240{left:617.760000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:0.000000pt;}
.fs0_c00240{font-size:19.600000pt;}
.fse_c00240{font-size:23.333333pt;}
.fsf_c00240{font-size:29.866667pt;}
.fs13_c00240{font-size:43.866667pt;}
.fs15_c00240{font-size:46.666667pt;}
.fs14_c00240{font-size:47.600000pt;}
.fs11_c00240{font-size:48.533333pt;}
.fsd_c00240{font-size:49.466667pt;}
.fs10_c00240{font-size:51.333333pt;}
.fs12_c00240{font-size:52.266667pt;}
.fsc_c00240{font-size:54.133333pt;}
.fs8_c00240{font-size:55.066667pt;}
.fs4_c00240{font-size:58.800000pt;}
.fsa_c00240{font-size:59.733333pt;}
.fs2_c00240{font-size:60.666667pt;}
.fs6_c00240{font-size:61.600000pt;}
.fs7_c00240{font-size:62.533333pt;}
.fs5_c00240{font-size:63.466667pt;}
.fs9_c00240{font-size:64.400000pt;}
.fsb_c00240{font-size:65.333333pt;}
.fs3_c00240{font-size:66.266667pt;}
.fs1_c00240{font-size:90.533333pt;}
.y0_c00240{bottom:0.000000pt;}
.y27_c00240{bottom:132.292000pt;}
.y24_c00240{bottom:132.706667pt;}
.y26_c00240{bottom:148.353333pt;}
.y23_c00240{bottom:148.677333pt;}
.y25_c00240{bottom:164.438667pt;}
.y22_c00240{bottom:164.477333pt;}
.y1c_c00240{bottom:215.428000pt;}
.y21_c00240{bottom:222.720000pt;}
.y1b_c00240{bottom:235.626667pt;}
.y20_c00240{bottom:254.160000pt;}
.y1a_c00240{bottom:255.833333pt;}
.y1f_c00240{bottom:256.320000pt;}
.y1e_c00240{bottom:259.920000pt;}
.y19_c00240{bottom:276.240000pt;}
.y1d_c00240{bottom:284.880000pt;}
.y18_c00240{bottom:296.310667pt;}
.y17_c00240{bottom:316.888000pt;}
.y16_c00240{bottom:336.801333pt;}
.y15_c00240{bottom:357.533333pt;}
.y14_c00240{bottom:377.682667pt;}
.y13_c00240{bottom:397.440000pt;}
.y12_c00240{bottom:417.933333pt;}
.y11_c00240{bottom:438.784000pt;}
.y10_c00240{bottom:459.546667pt;}
.yf_c00240{bottom:479.484000pt;}
.ye_c00240{bottom:499.006667pt;}
.yd_c00240{bottom:519.436000pt;}
.yc_c00240{bottom:558.985333pt;}
.yb_c00240{bottom:559.818667pt;}
.ya_c00240{bottom:579.424000pt;}
.y9_c00240{bottom:600.065333pt;}
.y8_c00240{bottom:620.221333pt;}
.y7_c00240{bottom:640.845333pt;}
.y6_c00240{bottom:661.745333pt;}
.y5_c00240{bottom:681.641333pt;}
.y4_c00240{bottom:702.014667pt;}
.y3_c00240{bottom:723.212000pt;}
.y2_c00240{bottom:764.092000pt;}
.y1_c00240{bottom:822.000000pt;}
.h2_c00240{height:19.600000pt;}
.h10_c00240{height:23.333333pt;}
.h11_c00240{height:29.866667pt;}
.h15_c00240{height:43.866667pt;}
.h17_c00240{height:46.666667pt;}
.h16_c00240{height:47.600000pt;}
.h13_c00240{height:48.533333pt;}
.hf_c00240{height:49.466667pt;}
.h12_c00240{height:51.333333pt;}
.h14_c00240{height:52.266667pt;}
.he_c00240{height:54.133333pt;}
.ha_c00240{height:55.066667pt;}
.h6_c00240{height:58.800000pt;}
.hc_c00240{height:59.733333pt;}
.h4_c00240{height:60.666667pt;}
.h8_c00240{height:61.600000pt;}
.h9_c00240{height:62.533333pt;}
.h7_c00240{height:63.466667pt;}
.hb_c00240{height:64.400000pt;}
.hd_c00240{height:65.333333pt;}
.h5_c00240{height:66.266667pt;}
.h3_c00240{height:90.533333pt;}
.h1_c00240{height:893.333333pt;}
.h0_c00240{height:893.466667pt;}
.w1_c00240{width:634.000000pt;}
.w0_c00240{width:634.266667pt;}
.x0_c00240{left:0.000000pt;}
.x8f_c00240{left:78.960000pt;}
.x1_c00240{left:88.800000pt;}
.x90_c00240{left:91.200000pt;}
.x7f_c00240{left:94.560000pt;}
.x29_c00240{left:96.960000pt;}
.x40_c00240{left:98.880000pt;}
.x9_c00240{left:101.040000pt;}
.x19_c00240{left:102.240000pt;}
.x3c_c00240{left:104.160000pt;}
.x46_c00240{left:105.360000pt;}
.x5b_c00240{left:106.560000pt;}
.x62_c00240{left:108.000000pt;}
.x83_c00240{left:109.440000pt;}
.x86_c00240{left:110.640000pt;}
.x47_c00240{left:123.360000pt;}
.x96_c00240{left:127.920000pt;}
.x41_c00240{left:129.120000pt;}
.x12_c00240{left:131.040000pt;}
.x84_c00240{left:133.200000pt;}
.x4b_c00240{left:134.640000pt;}
.x37_c00240{left:135.840000pt;}
.x1a_c00240{left:138.240000pt;}
.x6c_c00240{left:139.200000pt;}
.x3d_c00240{left:140.160000pt;}
.x2a_c00240{left:142.800000pt;}
.x63_c00240{left:144.000000pt;}
.x5c_c00240{left:145.440000pt;}
.x97_c00240{left:146.400000pt;}
.x2_c00240{left:149.280000pt;}
.xa_c00240{left:150.960000pt;}
.x78_c00240{left:153.120000pt;}
.x22_c00240{left:154.560000pt;}
.x13_c00240{left:157.920000pt;}
.x42_c00240{left:158.880000pt;}
.x1b_c00240{left:164.160000pt;}
.x94_c00240{left:165.360000pt;}
.x56_c00240{left:166.560000pt;}
.x32_c00240{left:168.720000pt;}
.x68_c00240{left:169.920000pt;}
.xb_c00240{left:176.640000pt;}
.x38_c00240{left:178.800000pt;}
.x2b_c00240{left:179.760000pt;}
.x51_c00240{left:181.440000pt;}
.x91_c00240{left:182.400000pt;}
.x71_c00240{left:185.040000pt;}
.x64_c00240{left:188.160000pt;}
.x14_c00240{left:189.600000pt;}
.x5d_c00240{left:190.560000pt;}
.x6d_c00240{left:193.680000pt;}
.x3_c00240{left:195.840000pt;}
.x98_c00240{left:199.200000pt;}
.x33_c00240{left:200.640000pt;}
.x92_c00240{left:202.080000pt;}
.x4c_c00240{left:203.520000pt;}
.x6e_c00240{left:205.200000pt;}
.x2c_c00240{left:206.160000pt;}
.x1c_c00240{left:209.280000pt;}
.x65_c00240{left:211.440000pt;}
.x79_c00240{left:215.040000pt;}
.x4_c00240{left:216.240000pt;}
.x3e_c00240{left:217.680000pt;}
.x75_c00240{left:220.800000pt;}
.x2d_c00240{left:224.400000pt;}
.x15_c00240{left:228.720000pt;}
.x48_c00240{left:230.880000pt;}
.x43_c00240{left:234.480000pt;}
.x52_c00240{left:240.960000pt;}
.x5_c00240{left:241.920000pt;}
.x1d_c00240{left:243.600000pt;}
.x23_c00240{left:246.480000pt;}
.x57_c00240{left:247.920000pt;}
.x93_c00240{left:251.280000pt;}
.x34_c00240{left:253.680000pt;}
.x87_c00240{left:256.320000pt;}
.x39_c00240{left:259.680000pt;}
.x53_c00240{left:261.360000pt;}
.x4d_c00240{left:262.800000pt;}
.x95_c00240{left:263.760000pt;}
.x24_c00240{left:264.960000pt;}
.x72_c00240{left:266.160000pt;}
.x3f_c00240{left:268.080000pt;}
.xc_c00240{left:272.160000pt;}
.x5e_c00240{left:275.040000pt;}
.x7e_c00240{left:276.240000pt;}
.x80_c00240{left:277.200000pt;}
.x4e_c00240{left:278.880000pt;}
.x16_c00240{left:284.400000pt;}
.x35_c00240{left:286.800000pt;}
.x5f_c00240{left:288.240000pt;}
.x88_c00240{left:289.440000pt;}
.x54_c00240{left:290.880000pt;}
.x6f_c00240{left:293.760000pt;}
.x25_c00240{left:295.680000pt;}
.x7a_c00240{left:296.880000pt;}
.x76_c00240{left:298.080000pt;}
.xd_c00240{left:299.280000pt;}
.x81_c00240{left:300.960000pt;}
.x1e_c00240{left:303.840000pt;}
.x44_c00240{left:305.040000pt;}
.x66_c00240{left:306.240000pt;}
.x58_c00240{left:308.640000pt;}
.x17_c00240{left:311.760000pt;}
.x2e_c00240{left:316.560000pt;}
.x69_c00240{left:318.720000pt;}
.x49_c00240{left:319.680000pt;}
.x85_c00240{left:321.360000pt;}
.x55_c00240{left:326.400000pt;}
.x9f_c00240{left:327.360000pt;}
.xe_c00240{left:329.760000pt;}
.x60_c00240{left:331.680000pt;}
.x1f_c00240{left:335.520000pt;}
.x7b_c00240{left:338.880000pt;}
.x4a_c00240{left:340.320000pt;}
.x6_c00240{left:342.240000pt;}
.x7c_c00240{left:343.200000pt;}
.x36_c00240{left:344.640000pt;}
.x18_c00240{left:346.320000pt;}
.xf_c00240{left:348.240000pt;}
.x4f_c00240{left:349.920000pt;}
.x26_c00240{left:351.840000pt;}
.x70_c00240{left:353.280000pt;}
.x99_c00240{left:355.440000pt;}
.x73_c00240{left:358.560000pt;}
.x67_c00240{left:359.760000pt;}
.x61_c00240{left:361.440000pt;}
.x45_c00240{left:363.600000pt;}
.x27_c00240{left:364.560000pt;}
.x10_c00240{left:366.480000pt;}
.x3a_c00240{left:367.440000pt;}
.x59_c00240{left:369.600000pt;}
.x82_c00240{left:371.040000pt;}
.x50_c00240{left:372.000000pt;}
.x74_c00240{left:377.760000pt;}
.x2f_c00240{left:379.680000pt;}
.xa0_c00240{left:380.640000pt;}
.x6a_c00240{left:382.320000pt;}
.x20_c00240{left:386.160000pt;}
.x3b_c00240{left:389.760000pt;}
.x28_c00240{left:391.920000pt;}
.x9d_c00240{left:401.520000pt;}
.x5a_c00240{left:405.120000pt;}
.x21_c00240{left:409.200000pt;}
.x7_c00240{left:412.560000pt;}
.x9a_c00240{left:415.440000pt;}
.x9e_c00240{left:419.040000pt;}
.x77_c00240{left:420.240000pt;}
.x11_c00240{left:423.120000pt;}
.x6b_c00240{left:431.760000pt;}
.x30_c00240{left:436.560000pt;}
.x7d_c00240{left:448.560000pt;}
.x8_c00240{left:462.000000pt;}
.xa1_c00240{left:463.440000pt;}
.x31_c00240{left:473.760000pt;}
.x9b_c00240{left:490.320000pt;}
.x9c_c00240{left:514.080000pt;}
.x89_c00240{left:522.720000pt;}
.x8c_c00240{left:529.440000pt;}
.x8d_c00240{left:534.240000pt;}
.x8b_c00240{left:535.680000pt;}
.x8a_c00240{left:537.360000pt;}
.x8e_c00240{left:549.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3f_c00241{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.mb2_c00241{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);}
.ma8_c00241{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);}
.mde_c00241{transform:matrix(0.140620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140620,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{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);}
.ma9_c00241{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);}
.m41_c00241{transform:matrix(0.143955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143955,0.000000,0.000000,0.250000,0,0);}
.m45_c00241{transform:matrix(0.144035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144035,0.000000,0.000000,0.250000,0,0);}
.m1b_c00241{transform:matrix(0.146495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146495,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{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);}
.mab_c00241{transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);}
.m6e_c00241{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);}
.me_c00241{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);}
.mae_c00241{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);}
.m54_c00241{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);}
.m60_c00241{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);}
.m28_c00241{transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{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);}
.m9e_c00241{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);}
.m98_c00241{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);}
.mdf_c00241{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);}
.m4b_c00241{transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163220,0.000000,0.000000,0.250000,0,0);}
.m32_c00241{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);}
.mb1_c00241{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);}
.mb7_c00241{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);}
.maf_c00241{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);}
.m71_c00241{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);}
.maa_c00241{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);}
.mbe_c00241{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);}
.m2c_c00241{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);}
.m6f_c00241{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);}
.m55_c00241{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);}
.m48_c00241{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);}
.mac_c00241{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);}
.m49_c00241{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);}
.m76_c00241{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);}
.m68_c00241{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);}
.mad_c00241{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);}
.m8c_c00241{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);}
.md6_c00241{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);}
.mc4_c00241{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);}
.m34_c00241{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);}
.m2e_c00241{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);}
.mce_c00241{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);}
.m6c_c00241{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);}
.m29_c00241{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);}
.m15_c00241{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);}
.ma1_c00241{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);}
.m16_c00241{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);}
.m23_c00241{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);}
.m87_c00241{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);}
.m89_c00241{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);}
.m3b_c00241{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);}
.md0_c00241{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);}
.m79_c00241{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);}
.m4a_c00241{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);}
.m8e_c00241{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);}
.m9f_c00241{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);}
.ma6_c00241{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);}
.m1c_c00241{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);}
.m27_c00241{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);}
.m4f_c00241{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);}
.m10_c00241{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);}
.m46_c00241{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);}
.m6b_c00241{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);}
.m61_c00241{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);}
.m52_c00241{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);}
.mc8_c00241{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);}
.mf_c00241{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_c00241{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m1e_c00241{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);}
.ma5_c00241{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);}
.md8_c00241{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);}
.mc0_c00241{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);}
.md_c00241{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);}
.m88_c00241{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);}
.ma7_c00241{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);}
.mca_c00241{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);}
.m9d_c00241{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);}
.m26_c00241{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);}
.m4e_c00241{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);}
.m78_c00241{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);}
.m24_c00241{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);}
.m7e_c00241{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);}
.m30_c00241{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);}
.m7a_c00241{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_c00241{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);}
.mc9_c00241{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);}
.md1_c00241{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);}
.m37_c00241{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);}
.m47_c00241{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);}
.m9a_c00241{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);}
.ma2_c00241{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);}
.m21_c00241{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);}
.mb9_c00241{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);}
.m8f_c00241{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_c00241{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);}
.m17_c00241{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);}
.m2d_c00241{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);}
.m97_c00241{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_c00241{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);}
.m9_c00241{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);}
.m6_c00241{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);}
.mb8_c00241{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);}
.mbd_c00241{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);}
.mc5_c00241{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);}
.md2_c00241{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);}
.m91_c00241{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);}
.m20_c00241{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);}
.mdc_c00241{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);}
.m2f_c00241{transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);}
.m5a_c00241{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);}
.m57_c00241{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);}
.ma4_c00241{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);}
.m77_c00241{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);}
.m9c_c00241{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);}
.m73_c00241{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);}
.m8b_c00241{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);}
.mb5_c00241{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);}
.m13_c00241{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);}
.ma_c00241{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);}
.m40_c00241{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);}
.m2_c00241{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);}
.m2b_c00241{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);}
.md9_c00241{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);}
.m95_c00241{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);}
.m3e_c00241{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);}
.m39_c00241{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);}
.m67_c00241{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);}
.m1d_c00241{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);}
.m92_c00241{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);}
.m90_c00241{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);}
.md5_c00241{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);}
.m5b_c00241{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);}
.m1_c00241{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);}
.mc7_c00241{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);}
.m3d_c00241{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);}
.ma0_c00241{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);}
.mcc_c00241{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);}
.m4c_c00241{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);}
.m22_c00241{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);}
.m59_c00241{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);}
.m5_c00241{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);}
.m18_c00241{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);}
.m3c_c00241{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);}
.md4_c00241{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);}
.m6d_c00241{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);}
.m8_c00241{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);}
.m19_c00241{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);}
.m58_c00241{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);}
.md7_c00241{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);}
.mba_c00241{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);}
.m5d_c00241{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);}
.mc6_c00241{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);}
.m31_c00241{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);}
.m74_c00241{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);}
.m11_c00241{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);}
.mb_c00241{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);}
.m7d_c00241{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);}
.m96_c00241{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);}
.m7b_c00241{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.mbb_c00241{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.m7c_c00241{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_c00241{transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225515,0.000000,0.000000,0.250000,0,0);}
.mcf_c00241{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);}
.mc_c00241{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);}
.m56_c00241{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);}
.m8a_c00241{transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);}
.m65_c00241{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);}
.m5e_c00241{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);}
.m12_c00241{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);}
.m1f_c00241{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);}
.mbf_c00241{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);}
.m42_c00241{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);}
.m75_c00241{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);}
.m80_c00241{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);}
.m5f_c00241{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m6a_c00241{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);}
.m85_c00241{transform:matrix(0.240542,-0.005051,0.005249,0.249945,0,0);-ms-transform:matrix(0.240542,-0.005051,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240542,-0.005051,0.005249,0.249945,0,0);}
.mb4_c00241{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.mdb_c00241{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00241{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);}
.m70_c00241{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{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);}
.m8d_c00241{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);}
.ma3_c00241{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);}
.m63_c00241{transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);}
.mc1_c00241{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);}
.m81_c00241{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);}
.m66_c00241{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);}
.m7f_c00241{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);}
.mda_c00241{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);}
.m3a_c00241{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m64_c00241{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);}
.m53_c00241{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);}
.m62_c00241{transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{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);}
.m7_c00241{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.mdd_c00241{transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);}
.mbc_c00241{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.m4d_c00241{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);}
.m93_c00241{transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265175,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{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);}
.m43_c00241{transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);}
.m86_c00241{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);}
.m83_c00241{transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);}
.m82_c00241{transform:matrix(0.287730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287730,0.000000,0.000000,0.250000,0,0);}
.mb6_c00241{transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288790,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{transform:matrix(0.298625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00241{transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309710,0.000000,0.000000,0.250000,0,0);}
.m38_c00241{transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);}
.m84_c00241{transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327340,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.329200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329200,0.000000,0.000000,0.250000,0,0);}
.mc3_c00241{transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331585,0.000000,0.000000,0.250000,0,0);}
.m94_c00241{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);}
.mc2_c00241{transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344080,0.000000,0.000000,0.250000,0,0);}
.m5c_c00241{transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);}
.me0_c00241{transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351005,0.000000,0.000000,0.250000,0,0);}
.mcb_c00241{transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);}
.m51_c00241{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);}
.m36_c00241{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);}
.m50_c00241{transform:matrix(0.603625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603625,0.000000,0.000000,0.250000,0,0);}
.mb3_c00241{transform:matrix(0.945970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945970,0.000000,0.000000,0.250000,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;}
.fs10_c00241{font-size:25.200000px;}
.fsf_c00241{font-size:50.400000px;}
.fsd_c00241{font-size:53.550000px;}
.fs9_c00241{font-size:59.850000px;}
.fse_c00241{font-size:60.900000px;}
.fsc_c00241{font-size:61.950000px;}
.fs1_c00241{font-size:63.000000px;}
.fsa_c00241{font-size:65.100000px;}
.fs0_c00241{font-size:66.150000px;}
.fs4_c00241{font-size:67.200000px;}
.fs3_c00241{font-size:69.300000px;}
.fs2_c00241{font-size:70.350000px;}
.fs5_c00241{font-size:72.450000px;}
.fs7_c00241{font-size:73.500000px;}
.fs8_c00241{font-size:75.600000px;}
.fs6_c00241{font-size:84.000000px;}
.fsb_c00241{font-size:123.927317px;}
.y0_c00241{bottom:0.000000px;}
.y29_c00241{bottom:85.320000px;}
.y28_c00241{bottom:150.673500px;}
.y27_c00241{bottom:165.514500px;}
.y26_c00241{bottom:184.417500px;}
.y25_c00241{bottom:202.779000px;}
.y24_c00241{bottom:220.510500px;}
.y23_c00241{bottom:282.514500px;}
.y22_c00241{bottom:305.314500px;}
.y21_c00241{bottom:328.170000px;}
.y20_c00241{bottom:356.143500px;}
.y1f_c00241{bottom:403.159500px;}
.y1e_c00241{bottom:467.100000px;}
.y1d_c00241{bottom:489.024000px;}
.y1c_c00241{bottom:512.359500px;}
.y1b_c00241{bottom:535.323000px;}
.y1a_c00241{bottom:557.910000px;}
.y19_c00241{bottom:580.230000px;}
.y18_c00241{bottom:603.361500px;}
.y17_c00241{bottom:630.583500px;}
.y16_c00241{bottom:657.544500px;}
.y15_c00241{bottom:681.342000px;}
.y14_c00241{bottom:703.749000px;}
.yd_c00241{bottom:724.951500px;}
.ye_c00241{bottom:725.362500px;}
.yf_c00241{bottom:725.848500px;}
.y10_c00241{bottom:726.249000px;}
.y11_c00241{bottom:726.921000px;}
.y12_c00241{bottom:727.315500px;}
.y13_c00241{bottom:728.109000px;}
.y4_c00241{bottom:747.903000px;}
.y5_c00241{bottom:748.239000px;}
.y6_c00241{bottom:748.932000px;}
.y7_c00241{bottom:749.526000px;}
.y8_c00241{bottom:750.118500px;}
.y9_c00241{bottom:750.523500px;}
.ya_c00241{bottom:751.161000px;}
.yb_c00241{bottom:751.371000px;}
.yc_c00241{bottom:751.644000px;}
.y3_c00241{bottom:771.217500px;}
.y2_c00241{bottom:795.075000px;}
.y1_c00241{bottom:817.908000px;}
.h12_c00241{height:25.200000px;}
.h11_c00241{height:50.400000px;}
.hf_c00241{height:53.550000px;}
.hb_c00241{height:59.850000px;}
.h10_c00241{height:60.900000px;}
.he_c00241{height:61.950000px;}
.h3_c00241{height:63.000000px;}
.hc_c00241{height:65.100000px;}
.h2_c00241{height:66.150000px;}
.h6_c00241{height:67.200000px;}
.h5_c00241{height:69.300000px;}
.h4_c00241{height:70.350000px;}
.h7_c00241{height:72.450000px;}
.h9_c00241{height:73.500000px;}
.ha_c00241{height:75.600000px;}
.h8_c00241{height:84.000000px;}
.hd_c00241{height:123.927317px;}
.h0_c00241{height:1008.450000px;}
.h1_c00241{height:1008.750000px;}
.w0_c00241{width:678.450000px;}
.w1_c00241{width:678.750000px;}
.x0_c00241{left:0.000000px;}
.x73_c00241{left:70.200000px;}
.x7d_c00241{left:72.360000px;}
.x7e_c00241{left:87.480000px;}
.x87_c00241{left:122.310000px;}
.x6f_c00241{left:124.470000px;}
.x64_c00241{left:137.970000px;}
.x74_c00241{left:141.480000px;}
.x7f_c00241{left:144.990000px;}
.x65_c00241{left:153.630000px;}
.x3e_c00241{left:156.330000px;}
.x1_c00241{left:158.220000px;}
.x45_c00241{left:159.840000px;}
.x1f_c00241{left:161.191500px;}
.x8_c00241{left:162.540000px;}
.x5b_c00241{left:165.510000px;}
.x75_c00241{left:183.330000px;}
.x66_c00241{left:185.220000px;}
.x20_c00241{left:186.301500px;}
.x26_c00241{left:189.811500px;}
.x13_c00241{left:191.047500px;}
.xc_c00241{left:197.100000px;}
.x76_c00241{left:200.610000px;}
.x1b_c00241{left:203.175000px;}
.x2e_c00241{left:207.091500px;}
.x35_c00241{left:210.330000px;}
.x5e_c00241{left:214.380000px;}
.x8e_c00241{left:215.730000px;}
.x2f_c00241{left:223.291500px;}
.x50_c00241{left:224.640000px;}
.xd_c00241{left:226.530000px;}
.x80_c00241{left:231.390000px;}
.x9_c00241{left:233.280000px;}
.x2_c00241{left:235.170000px;}
.x30_c00241{left:239.761500px;}
.x3f_c00241{left:244.350000px;}
.x36_c00241{left:245.430000px;}
.x14_c00241{left:248.781000px;}
.x1c_c00241{left:251.727000px;}
.x46_c00241{left:253.800000px;}
.x21_c00241{left:257.851500px;}
.x77_c00241{left:259.740000px;}
.x57_c00241{left:262.170000px;}
.x3b_c00241{left:263.250000px;}
.xe_c00241{left:265.950000px;}
.x67_c00241{left:267.300000px;}
.xa_c00241{left:273.510000px;}
.x40_c00241{left:274.860000px;}
.x4b_c00241{left:277.290000px;}
.x37_c00241{left:279.990000px;}
.x70_c00241{left:281.070000px;}
.xf_c00241{left:283.500000px;}
.x81_c00241{left:286.200000px;}
.x5c_c00241{left:287.550000px;}
.x58_c00241{left:289.980000px;}
.x1d_c00241{left:291.735000px;}
.x51_c00241{left:294.570000px;}
.x15_c00241{left:298.239000px;}
.x68_c00241{left:304.290000px;}
.x27_c00241{left:308.881500px;}
.x5f_c00241{left:312.120000px;}
.x4c_c00241{left:313.470000px;}
.x82_c00241{left:314.550000px;}
.x59_c00241{left:316.980000px;}
.x22_c00241{left:318.061500px;}
.x3_c00241{left:319.140000px;}
.x88_c00241{left:323.190000px;}
.x31_c00241{left:324.811500px;}
.x78_c00241{left:326.700000px;}
.x69_c00241{left:328.320000px;}
.x10_c00241{left:332.370000px;}
.x54_c00241{left:335.070000px;}
.x71_c00241{left:337.770000px;}
.x47_c00241{left:339.660000px;}
.x5a_c00241{left:342.900000px;}
.x28_c00241{left:346.141500px;}
.x16_c00241{left:347.632500px;}
.x32_c00241{left:356.131500px;}
.x11_c00241{left:358.290000px;}
.x60_c00241{left:359.640000px;}
.x4_c00241{left:361.260000px;}
.x48_c00241{left:363.420000px;}
.x89_c00241{left:365.040000px;}
.xb_c00241{left:366.660000px;}
.x41_c00241{left:371.520000px;}
.x8a_c00241{left:372.870000px;}
.x6a_c00241{left:374.490000px;}
.x4d_c00241{left:379.080000px;}
.x17_c00241{left:381.409500px;}
.x23_c00241{left:383.131500px;}
.x33_c00241{left:387.451500px;}
.x79_c00241{left:388.530000px;}
.x8b_c00241{left:396.630000px;}
.x12_c00241{left:398.520000px;}
.x4e_c00241{left:401.220000px;}
.x29_c00241{left:402.571500px;}
.x24_c00241{left:404.461500px;}
.x3c_c00241{left:406.080000px;}
.x49_c00241{left:408.780000px;}
.x55_c00241{left:410.130000px;}
.x5_c00241{left:413.370000px;}
.x61_c00241{left:416.340000px;}
.x39_c00241{left:417.420000px;}
.x3d_c00241{left:421.200000px;}
.x83_c00241{left:424.710000px;}
.x42_c00241{left:425.790000px;}
.x6_c00241{left:427.680000px;}
.x18_c00241{left:434.578500px;}
.x8c_c00241{left:439.020000px;}
.x2a_c00241{left:440.371500px;}
.x4a_c00241{left:443.610000px;}
.x4f_c00241{left:444.960000px;}
.x43_c00241{left:447.120000px;}
.x62_c00241{left:449.010000px;}
.x38_c00241{left:450.090000px;}
.x19_c00241{left:452.080500px;}
.x63_c00241{left:453.330000px;}
.x5d_c00241{left:457.650000px;}
.x84_c00241{left:459.270000px;}
.x6b_c00241{left:462.510000px;}
.x7_c00241{left:463.590000px;}
.x3a_c00241{left:466.020000px;}
.x34_c00241{left:467.911500px;}
.x1a_c00241{left:474.819000px;}
.x52_c00241{left:476.280000px;}
.x1e_c00241{left:477.756000px;}
.x7a_c00241{left:480.870000px;}
.x85_c00241{left:494.370000px;}
.x53_c00241{left:495.990000px;}
.x56_c00241{left:499.500000px;}
.x6c_c00241{left:503.820000px;}
.x25_c00241{left:505.441500px;}
.x2b_c00241{left:508.681500px;}
.x44_c00241{left:510.570000px;}
.x86_c00241{left:527.310000px;}
.x7b_c00241{left:530.550000px;}
.x8d_c00241{left:533.520000px;}
.x2c_c00241{left:534.601500px;}
.x2d_c00241{left:550.531500px;}
.x7c_c00241{left:559.170000px;}
.x72_c00241{left:561.870000px;}
.x6d_c00241{left:569.430000px;}
.x6e_c00241{left:585.630000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs10_c00241{font-size:22.400000pt;}
.fsf_c00241{font-size:44.800000pt;}
.fsd_c00241{font-size:47.600000pt;}
.fs9_c00241{font-size:53.200000pt;}
.fse_c00241{font-size:54.133333pt;}
.fsc_c00241{font-size:55.066667pt;}
.fs1_c00241{font-size:56.000000pt;}
.fsa_c00241{font-size:57.866667pt;}
.fs0_c00241{font-size:58.800000pt;}
.fs4_c00241{font-size:59.733333pt;}
.fs3_c00241{font-size:61.600000pt;}
.fs2_c00241{font-size:62.533333pt;}
.fs5_c00241{font-size:64.400000pt;}
.fs7_c00241{font-size:65.333333pt;}
.fs8_c00241{font-size:67.200000pt;}
.fs6_c00241{font-size:74.666667pt;}
.fsb_c00241{font-size:110.157615pt;}
.y0_c00241{bottom:0.000000pt;}
.y29_c00241{bottom:75.840000pt;}
.y28_c00241{bottom:133.932000pt;}
.y27_c00241{bottom:147.124000pt;}
.y26_c00241{bottom:163.926667pt;}
.y25_c00241{bottom:180.248000pt;}
.y24_c00241{bottom:196.009333pt;}
.y23_c00241{bottom:251.124000pt;}
.y22_c00241{bottom:271.390667pt;}
.y21_c00241{bottom:291.706667pt;}
.y20_c00241{bottom:316.572000pt;}
.y1f_c00241{bottom:358.364000pt;}
.y1e_c00241{bottom:415.200000pt;}
.y1d_c00241{bottom:434.688000pt;}
.y1c_c00241{bottom:455.430667pt;}
.y1b_c00241{bottom:475.842667pt;}
.y1a_c00241{bottom:495.920000pt;}
.y19_c00241{bottom:515.760000pt;}
.y18_c00241{bottom:536.321333pt;}
.y17_c00241{bottom:560.518667pt;}
.y16_c00241{bottom:584.484000pt;}
.y15_c00241{bottom:605.637333pt;}
.y14_c00241{bottom:625.554667pt;}
.yd_c00241{bottom:644.401333pt;}
.ye_c00241{bottom:644.766667pt;}
.yf_c00241{bottom:645.198667pt;}
.y10_c00241{bottom:645.554667pt;}
.y11_c00241{bottom:646.152000pt;}
.y12_c00241{bottom:646.502667pt;}
.y13_c00241{bottom:647.208000pt;}
.y4_c00241{bottom:664.802667pt;}
.y5_c00241{bottom:665.101333pt;}
.y6_c00241{bottom:665.717333pt;}
.y7_c00241{bottom:666.245333pt;}
.y8_c00241{bottom:666.772000pt;}
.y9_c00241{bottom:667.132000pt;}
.ya_c00241{bottom:667.698667pt;}
.yb_c00241{bottom:667.885333pt;}
.yc_c00241{bottom:668.128000pt;}
.y3_c00241{bottom:685.526667pt;}
.y2_c00241{bottom:706.733333pt;}
.y1_c00241{bottom:727.029333pt;}
.h12_c00241{height:22.400000pt;}
.h11_c00241{height:44.800000pt;}
.hf_c00241{height:47.600000pt;}
.hb_c00241{height:53.200000pt;}
.h10_c00241{height:54.133333pt;}
.he_c00241{height:55.066667pt;}
.h3_c00241{height:56.000000pt;}
.hc_c00241{height:57.866667pt;}
.h2_c00241{height:58.800000pt;}
.h6_c00241{height:59.733333pt;}
.h5_c00241{height:61.600000pt;}
.h4_c00241{height:62.533333pt;}
.h7_c00241{height:64.400000pt;}
.h9_c00241{height:65.333333pt;}
.ha_c00241{height:67.200000pt;}
.h8_c00241{height:74.666667pt;}
.hd_c00241{height:110.157615pt;}
.h0_c00241{height:896.400000pt;}
.h1_c00241{height:896.666667pt;}
.w0_c00241{width:603.066667pt;}
.w1_c00241{width:603.333333pt;}
.x0_c00241{left:0.000000pt;}
.x73_c00241{left:62.400000pt;}
.x7d_c00241{left:64.320000pt;}
.x7e_c00241{left:77.760000pt;}
.x87_c00241{left:108.720000pt;}
.x6f_c00241{left:110.640000pt;}
.x64_c00241{left:122.640000pt;}
.x74_c00241{left:125.760000pt;}
.x7f_c00241{left:128.880000pt;}
.x65_c00241{left:136.560000pt;}
.x3e_c00241{left:138.960000pt;}
.x1_c00241{left:140.640000pt;}
.x45_c00241{left:142.080000pt;}
.x1f_c00241{left:143.281333pt;}
.x8_c00241{left:144.480000pt;}
.x5b_c00241{left:147.120000pt;}
.x75_c00241{left:162.960000pt;}
.x66_c00241{left:164.640000pt;}
.x20_c00241{left:165.601333pt;}
.x26_c00241{left:168.721333pt;}
.x13_c00241{left:169.820000pt;}
.xc_c00241{left:175.200000pt;}
.x76_c00241{left:178.320000pt;}
.x1b_c00241{left:180.600000pt;}
.x2e_c00241{left:184.081333pt;}
.x35_c00241{left:186.960000pt;}
.x5e_c00241{left:190.560000pt;}
.x8e_c00241{left:191.760000pt;}
.x2f_c00241{left:198.481333pt;}
.x50_c00241{left:199.680000pt;}
.xd_c00241{left:201.360000pt;}
.x80_c00241{left:205.680000pt;}
.x9_c00241{left:207.360000pt;}
.x2_c00241{left:209.040000pt;}
.x30_c00241{left:213.121333pt;}
.x3f_c00241{left:217.200000pt;}
.x36_c00241{left:218.160000pt;}
.x14_c00241{left:221.138667pt;}
.x1c_c00241{left:223.757333pt;}
.x46_c00241{left:225.600000pt;}
.x21_c00241{left:229.201333pt;}
.x77_c00241{left:230.880000pt;}
.x57_c00241{left:233.040000pt;}
.x3b_c00241{left:234.000000pt;}
.xe_c00241{left:236.400000pt;}
.x67_c00241{left:237.600000pt;}
.xa_c00241{left:243.120000pt;}
.x40_c00241{left:244.320000pt;}
.x4b_c00241{left:246.480000pt;}
.x37_c00241{left:248.880000pt;}
.x70_c00241{left:249.840000pt;}
.xf_c00241{left:252.000000pt;}
.x81_c00241{left:254.400000pt;}
.x5c_c00241{left:255.600000pt;}
.x58_c00241{left:257.760000pt;}
.x1d_c00241{left:259.320000pt;}
.x51_c00241{left:261.840000pt;}
.x15_c00241{left:265.101333pt;}
.x68_c00241{left:270.480000pt;}
.x27_c00241{left:274.561333pt;}
.x5f_c00241{left:277.440000pt;}
.x4c_c00241{left:278.640000pt;}
.x82_c00241{left:279.600000pt;}
.x59_c00241{left:281.760000pt;}
.x22_c00241{left:282.721333pt;}
.x3_c00241{left:283.680000pt;}
.x88_c00241{left:287.280000pt;}
.x31_c00241{left:288.721333pt;}
.x78_c00241{left:290.400000pt;}
.x69_c00241{left:291.840000pt;}
.x10_c00241{left:295.440000pt;}
.x54_c00241{left:297.840000pt;}
.x71_c00241{left:300.240000pt;}
.x47_c00241{left:301.920000pt;}
.x5a_c00241{left:304.800000pt;}
.x28_c00241{left:307.681333pt;}
.x16_c00241{left:309.006667pt;}
.x32_c00241{left:316.561333pt;}
.x11_c00241{left:318.480000pt;}
.x60_c00241{left:319.680000pt;}
.x4_c00241{left:321.120000pt;}
.x48_c00241{left:323.040000pt;}
.x89_c00241{left:324.480000pt;}
.xb_c00241{left:325.920000pt;}
.x41_c00241{left:330.240000pt;}
.x8a_c00241{left:331.440000pt;}
.x6a_c00241{left:332.880000pt;}
.x4d_c00241{left:336.960000pt;}
.x17_c00241{left:339.030667pt;}
.x23_c00241{left:340.561333pt;}
.x33_c00241{left:344.401333pt;}
.x79_c00241{left:345.360000pt;}
.x8b_c00241{left:352.560000pt;}
.x12_c00241{left:354.240000pt;}
.x4e_c00241{left:356.640000pt;}
.x29_c00241{left:357.841333pt;}
.x24_c00241{left:359.521333pt;}
.x3c_c00241{left:360.960000pt;}
.x49_c00241{left:363.360000pt;}
.x55_c00241{left:364.560000pt;}
.x5_c00241{left:367.440000pt;}
.x61_c00241{left:370.080000pt;}
.x39_c00241{left:371.040000pt;}
.x3d_c00241{left:374.400000pt;}
.x83_c00241{left:377.520000pt;}
.x42_c00241{left:378.480000pt;}
.x6_c00241{left:380.160000pt;}
.x18_c00241{left:386.292000pt;}
.x8c_c00241{left:390.240000pt;}
.x2a_c00241{left:391.441333pt;}
.x4a_c00241{left:394.320000pt;}
.x4f_c00241{left:395.520000pt;}
.x43_c00241{left:397.440000pt;}
.x62_c00241{left:399.120000pt;}
.x38_c00241{left:400.080000pt;}
.x19_c00241{left:401.849333pt;}
.x63_c00241{left:402.960000pt;}
.x5d_c00241{left:406.800000pt;}
.x84_c00241{left:408.240000pt;}
.x6b_c00241{left:411.120000pt;}
.x7_c00241{left:412.080000pt;}
.x3a_c00241{left:414.240000pt;}
.x34_c00241{left:415.921333pt;}
.x1a_c00241{left:422.061333pt;}
.x52_c00241{left:423.360000pt;}
.x1e_c00241{left:424.672000pt;}
.x7a_c00241{left:427.440000pt;}
.x85_c00241{left:439.440000pt;}
.x53_c00241{left:440.880000pt;}
.x56_c00241{left:444.000000pt;}
.x6c_c00241{left:447.840000pt;}
.x25_c00241{left:449.281333pt;}
.x2b_c00241{left:452.161333pt;}
.x44_c00241{left:453.840000pt;}
.x86_c00241{left:468.720000pt;}
.x7b_c00241{left:471.600000pt;}
.x8d_c00241{left:474.240000pt;}
.x2c_c00241{left:475.201333pt;}
.x2d_c00241{left:489.361333pt;}
.x7c_c00241{left:497.040000pt;}
.x72_c00241{left:499.440000pt;}
.x6d_c00241{left:506.160000pt;}
.x6e_c00241{left:520.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mab_c00242{transform:matrix(0.019779,-0.000198,0.002500,0.249988,0,0);-ms-transform:matrix(0.019779,-0.000198,0.002500,0.249988,0,0);-webkit-transform:matrix(0.019779,-0.000198,0.002500,0.249988,0,0);}
.mdb_c00242{transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.085134,-0.001362,0.003999,0.249968,0,0);-ms-transform:matrix(0.085134,-0.001362,0.003999,0.249968,0,0);-webkit-transform:matrix(0.085134,-0.001362,0.003999,0.249968,0,0);}
.m16_c00242{transform:matrix(0.100262,-0.001604,0.003999,0.249968,0,0);-ms-transform:matrix(0.100262,-0.001604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.100262,-0.001604,0.003999,0.249968,0,0);}
.m4b_c00242{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);}
.mef_c00242{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);}
.m84_c00242{transform:matrix(0.141800,-0.001702,0.003000,0.249982,0,0);-ms-transform:matrix(0.141800,-0.001702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141800,-0.001702,0.003000,0.249982,0,0);}
.m7d_c00242{transform:matrix(0.141900,-0.001703,0.003000,0.249982,0,0);-ms-transform:matrix(0.141900,-0.001703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141900,-0.001703,0.003000,0.249982,0,0);}
.m17_c00242{transform:matrix(0.143587,-0.002297,0.003999,0.249968,0,0);-ms-transform:matrix(0.143587,-0.002297,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143587,-0.002297,0.003999,0.249968,0,0);}
.m19_c00242{transform:matrix(0.144721,-0.002316,0.003999,0.249968,0,0);-ms-transform:matrix(0.144721,-0.002316,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144721,-0.002316,0.003999,0.249968,0,0);}
.m87_c00242{transform:matrix(0.144786,-0.002027,0.003500,0.249976,0,0);-ms-transform:matrix(0.144786,-0.002027,0.003500,0.249976,0,0);-webkit-transform:matrix(0.144786,-0.002027,0.003500,0.249976,0,0);}
.m6c_c00242{transform:matrix(0.145358,-0.001890,0.003250,0.249979,0,0);-ms-transform:matrix(0.145358,-0.001890,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145358,-0.001890,0.003250,0.249979,0,0);}
.m42_c00242{transform:matrix(0.146704,-0.001760,0.003000,0.249982,0,0);-ms-transform:matrix(0.146704,-0.001760,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146704,-0.001760,0.003000,0.249982,0,0);}
.m53_c00242{transform:matrix(0.148512,-0.001931,0.003250,0.249979,0,0);-ms-transform:matrix(0.148512,-0.001931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148512,-0.001931,0.003250,0.249979,0,0);}
.m8b_c00242{transform:matrix(0.151585,-0.002122,0.003500,0.249976,0,0);-ms-transform:matrix(0.151585,-0.002122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151585,-0.002122,0.003500,0.249976,0,0);}
.mf2_c00242{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);}
.m37_c00242{transform:matrix(0.152998,-0.002295,0.003750,0.249972,0,0);-ms-transform:matrix(0.152998,-0.002295,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152998,-0.002295,0.003750,0.249972,0,0);}
.ma6_c00242{transform:matrix(0.153436,-0.001688,0.002750,0.249985,0,0);-ms-transform:matrix(0.153436,-0.001688,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153436,-0.001688,0.002750,0.249985,0,0);}
.m3b_c00242{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);}
.mcf_c00242{transform:matrix(0.156642,-0.002663,0.004249,0.249964,0,0);-ms-transform:matrix(0.156642,-0.002663,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156642,-0.002663,0.004249,0.249964,0,0);}
.ma1_c00242{transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);-ms-transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);}
.m21_c00242{transform:matrix(0.157107,-0.002042,0.003250,0.249979,0,0);-ms-transform:matrix(0.157107,-0.002042,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157107,-0.002042,0.003250,0.249979,0,0);}
.m72_c00242{transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);-ms-transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);}
.m57_c00242{transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);-ms-transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);}
.m23_c00242{transform:matrix(0.159697,-0.002076,0.003250,0.249979,0,0);-ms-transform:matrix(0.159697,-0.002076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159697,-0.002076,0.003250,0.249979,0,0);}
.m24_c00242{transform:matrix(0.160411,-0.002085,0.003250,0.249979,0,0);-ms-transform:matrix(0.160411,-0.002085,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160411,-0.002085,0.003250,0.249979,0,0);}
.ma0_c00242{transform:matrix(0.160630,-0.001767,0.002750,0.249985,0,0);-ms-transform:matrix(0.160630,-0.001767,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160630,-0.001767,0.002750,0.249985,0,0);}
.m7e_c00242{transform:matrix(0.161003,-0.001932,0.003000,0.249982,0,0);-ms-transform:matrix(0.161003,-0.001932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161003,-0.001932,0.003000,0.249982,0,0);}
.m22_c00242{transform:matrix(0.161156,-0.002095,0.003250,0.249979,0,0);-ms-transform:matrix(0.161156,-0.002095,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161156,-0.002095,0.003250,0.249979,0,0);}
.mb1_c00242{transform:matrix(0.161532,-0.001615,0.002500,0.249988,0,0);-ms-transform:matrix(0.161532,-0.001615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161532,-0.001615,0.002500,0.249988,0,0);}
.me8_c00242{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);}
.m83_c00242{transform:matrix(0.162793,-0.001954,0.003000,0.249982,0,0);-ms-transform:matrix(0.162793,-0.001954,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162793,-0.001954,0.003000,0.249982,0,0);}
.m9c_c00242{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);}
.m3c_c00242{transform:matrix(0.164511,-0.002468,0.003750,0.249972,0,0);-ms-transform:matrix(0.164511,-0.002468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164511,-0.002468,0.003750,0.249972,0,0);}
.maa_c00242{transform:matrix(0.164695,-0.001812,0.002750,0.249985,0,0);-ms-transform:matrix(0.164695,-0.001812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164695,-0.001812,0.002750,0.249985,0,0);}
.m18_c00242{transform:matrix(0.164814,-0.002637,0.003999,0.249968,0,0);-ms-transform:matrix(0.164814,-0.002637,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164814,-0.002637,0.003999,0.249968,0,0);}
.m26_c00242{transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);-ms-transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);}
.m54_c00242{transform:matrix(0.165631,-0.002153,0.003250,0.249979,0,0);-ms-transform:matrix(0.165631,-0.002153,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165631,-0.002153,0.003250,0.249979,0,0);}
.m7b_c00242{transform:matrix(0.165663,-0.001988,0.003000,0.249982,0,0);-ms-transform:matrix(0.165663,-0.001988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165663,-0.001988,0.003000,0.249982,0,0);}
.m30_c00242{transform:matrix(0.166834,-0.002669,0.003999,0.249968,0,0);-ms-transform:matrix(0.166834,-0.002669,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166834,-0.002669,0.003999,0.249968,0,0);}
.m25_c00242{transform:matrix(0.167251,-0.002174,0.003250,0.249979,0,0);-ms-transform:matrix(0.167251,-0.002174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167251,-0.002174,0.003250,0.249979,0,0);}
.me0_c00242{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);}
.m74_c00242{transform:matrix(0.168485,-0.001853,0.002750,0.249985,0,0);-ms-transform:matrix(0.168485,-0.001853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168485,-0.001853,0.002750,0.249985,0,0);}
.m55_c00242{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);}
.mdc_c00242{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);}
.mb9_c00242{transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{transform:matrix(0.169188,-0.002707,0.003999,0.249968,0,0);-ms-transform:matrix(0.169188,-0.002707,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169188,-0.002707,0.003999,0.249968,0,0);}
.m4f_c00242{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);}
.mb3_c00242{transform:matrix(0.169507,-0.001695,0.002500,0.249988,0,0);-ms-transform:matrix(0.169507,-0.001695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169507,-0.001695,0.002500,0.249988,0,0);}
.m35_c00242{transform:matrix(0.169726,-0.002546,0.003750,0.249972,0,0);-ms-transform:matrix(0.169726,-0.002546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169726,-0.002546,0.003750,0.249972,0,0);}
.mea_c00242{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);}
.mb0_c00242{transform:matrix(0.170196,-0.001702,0.002500,0.249988,0,0);-ms-transform:matrix(0.170196,-0.001702,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170196,-0.001702,0.002500,0.249988,0,0);}
.med_c00242{transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.171481,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171481,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171481,-0.002572,0.003750,0.249972,0,0);}
.mf0_c00242{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);}
.m3a_c00242{transform:matrix(0.172566,-0.002588,0.003750,0.249972,0,0);-ms-transform:matrix(0.172566,-0.002588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172566,-0.002588,0.003750,0.249972,0,0);}
.m7c_c00242{transform:matrix(0.172658,-0.002072,0.003000,0.249982,0,0);-ms-transform:matrix(0.172658,-0.002072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172658,-0.002072,0.003000,0.249982,0,0);}
.m2c_c00242{transform:matrix(0.173123,-0.002770,0.003999,0.249968,0,0);-ms-transform:matrix(0.173123,-0.002770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173123,-0.002770,0.003999,0.249968,0,0);}
.m31_c00242{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);}
.m33_c00242{transform:matrix(0.174268,-0.002788,0.003999,0.249968,0,0);-ms-transform:matrix(0.174268,-0.002788,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174268,-0.002788,0.003999,0.249968,0,0);}
.m98_c00242{transform:matrix(0.174738,-0.002446,0.003500,0.249976,0,0);-ms-transform:matrix(0.174738,-0.002446,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174738,-0.002446,0.003500,0.249976,0,0);}
.mcb_c00242{transform:matrix(0.174745,-0.002971,0.004249,0.249964,0,0);-ms-transform:matrix(0.174745,-0.002971,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174745,-0.002971,0.004249,0.249964,0,0);}
.m67_c00242{transform:matrix(0.174755,-0.002272,0.003250,0.249979,0,0);-ms-transform:matrix(0.174755,-0.002272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174755,-0.002272,0.003250,0.249979,0,0);}
.m12_c00242{transform:matrix(0.175100,-0.002627,0.003750,0.249972,0,0);-ms-transform:matrix(0.175100,-0.002627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175100,-0.002627,0.003750,0.249972,0,0);}
.m41_c00242{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);}
.mf4_c00242{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);}
.m34_c00242{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);}
.mf_c00242{transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);-ms-transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);}
.m78_c00242{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);}
.m8_c00242{transform:matrix(0.177405,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177405,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177405,-0.002661,0.003750,0.249972,0,0);}
.m38_c00242{transform:matrix(0.177410,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177410,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177410,-0.002661,0.003750,0.249972,0,0);}
.md_c00242{transform:matrix(0.177630,-0.002664,0.003750,0.249972,0,0);-ms-transform:matrix(0.177630,-0.002664,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177630,-0.002664,0.003750,0.249972,0,0);}
.m6_c00242{transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-ms-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);}
.m5b_c00242{transform:matrix(0.178642,-0.002501,0.003500,0.249976,0,0);-ms-transform:matrix(0.178642,-0.002501,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178642,-0.002501,0.003500,0.249976,0,0);}
.mc0_c00242{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);}
.m6b_c00242{transform:matrix(0.180135,-0.002342,0.003250,0.249979,0,0);-ms-transform:matrix(0.180135,-0.002342,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180135,-0.002342,0.003250,0.249979,0,0);}
.m5d_c00242{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);}
.m5e_c00242{transform:matrix(0.180727,-0.002530,0.003500,0.249976,0,0);-ms-transform:matrix(0.180727,-0.002530,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180727,-0.002530,0.003500,0.249976,0,0);}
.m6d_c00242{transform:matrix(0.181440,-0.002359,0.003250,0.249979,0,0);-ms-transform:matrix(0.181440,-0.002359,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181440,-0.002359,0.003250,0.249979,0,0);}
.m2e_c00242{transform:matrix(0.181992,-0.002912,0.003999,0.249968,0,0);-ms-transform:matrix(0.181992,-0.002912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181992,-0.002912,0.003999,0.249968,0,0);}
.m6e_c00242{transform:matrix(0.183644,-0.002387,0.003250,0.249979,0,0);-ms-transform:matrix(0.183644,-0.002387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183644,-0.002387,0.003250,0.249979,0,0);}
.m6f_c00242{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);}
.m6a_c00242{transform:matrix(0.185219,-0.002408,0.003250,0.249979,0,0);-ms-transform:matrix(0.185219,-0.002408,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185219,-0.002408,0.003250,0.249979,0,0);}
.mdf_c00242{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);}
.m20_c00242{transform:matrix(0.185594,-0.002413,0.003250,0.249979,0,0);-ms-transform:matrix(0.185594,-0.002413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185594,-0.002413,0.003250,0.249979,0,0);}
.m1c_c00242{transform:matrix(0.186496,-0.002984,0.003999,0.249968,0,0);-ms-transform:matrix(0.186496,-0.002984,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186496,-0.002984,0.003999,0.249968,0,0);}
.m99_c00242{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_c00242{transform:matrix(0.187138,-0.003181,0.004249,0.249964,0,0);-ms-transform:matrix(0.187138,-0.003181,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187138,-0.003181,0.004249,0.249964,0,0);}
.m44_c00242{transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);-ms-transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);}
.mf1_c00242{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);}
.m1b_c00242{transform:matrix(0.187816,-0.003005,0.003999,0.249968,0,0);-ms-transform:matrix(0.187816,-0.003005,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187816,-0.003005,0.003999,0.249968,0,0);}
.m32_c00242{transform:matrix(0.188341,-0.003013,0.003999,0.249968,0,0);-ms-transform:matrix(0.188341,-0.003013,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188341,-0.003013,0.003999,0.249968,0,0);}
.m8d_c00242{transform:matrix(0.188461,-0.002262,0.003000,0.249982,0,0);-ms-transform:matrix(0.188461,-0.002262,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188461,-0.002262,0.003000,0.249982,0,0);}
.m43_c00242{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);}
.me7_c00242{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);}
.m7a_c00242{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);}
.m1f_c00242{transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);}
.m9d_c00242{transform:matrix(0.189681,-0.002656,0.003500,0.249976,0,0);-ms-transform:matrix(0.189681,-0.002656,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189681,-0.002656,0.003500,0.249976,0,0);}
.ma5_c00242{transform:matrix(0.189714,-0.002087,0.002750,0.249985,0,0);-ms-transform:matrix(0.189714,-0.002087,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189714,-0.002087,0.002750,0.249985,0,0);}
.m9e_c00242{transform:matrix(0.189771,-0.002657,0.003500,0.249976,0,0);-ms-transform:matrix(0.189771,-0.002657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189771,-0.002657,0.003500,0.249976,0,0);}
.m1a_c00242{transform:matrix(0.190236,-0.003044,0.003999,0.249968,0,0);-ms-transform:matrix(0.190236,-0.003044,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190236,-0.003044,0.003999,0.249968,0,0);}
.m2d_c00242{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);}
.m7_c00242{transform:matrix(0.190599,-0.002859,0.003750,0.249972,0,0);-ms-transform:matrix(0.190599,-0.002859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190599,-0.002859,0.003750,0.249972,0,0);}
.mbb_c00242{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);}
.meb_c00242{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);}
.ma3_c00242{transform:matrix(0.191138,-0.002103,0.002750,0.249985,0,0);-ms-transform:matrix(0.191138,-0.002103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191138,-0.002103,0.002750,0.249985,0,0);}
.m70_c00242{transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);}
.mc6_c00242{transform:matrix(0.192142,-0.003266,0.004249,0.249964,0,0);-ms-transform:matrix(0.192142,-0.003266,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192142,-0.003266,0.004249,0.249964,0,0);}
.m9a_c00242{transform:matrix(0.192541,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192541,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192541,-0.002696,0.003500,0.249976,0,0);}
.mc8_c00242{transform:matrix(0.192707,-0.003276,0.004249,0.249964,0,0);-ms-transform:matrix(0.192707,-0.003276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192707,-0.003276,0.004249,0.249964,0,0);}
.ma2_c00242{transform:matrix(0.193463,-0.002128,0.002750,0.249985,0,0);-ms-transform:matrix(0.193463,-0.002128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193463,-0.002128,0.002750,0.249985,0,0);}
.m3e_c00242{transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);}
.m3f_c00242{transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);}
.me9_c00242{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);}
.m39_c00242{transform:matrix(0.194458,-0.002917,0.003750,0.249972,0,0);-ms-transform:matrix(0.194458,-0.002917,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194458,-0.002917,0.003750,0.249972,0,0);}
.m40_c00242{transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);}
.m92_c00242{transform:matrix(0.195416,-0.002345,0.003000,0.249982,0,0);-ms-transform:matrix(0.195416,-0.002345,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195416,-0.002345,0.003000,0.249982,0,0);}
.m29_c00242{transform:matrix(0.195500,-0.003128,0.003999,0.249968,0,0);-ms-transform:matrix(0.195500,-0.003128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195500,-0.003128,0.003999,0.249968,0,0);}
.md9_c00242{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);}
.md8_c00242{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);}
.m75_c00242{transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195743,-0.002153,0.002750,0.249985,0,0);}
.m80_c00242{transform:matrix(0.195886,-0.002351,0.003000,0.249982,0,0);-ms-transform:matrix(0.195886,-0.002351,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195886,-0.002351,0.003000,0.249982,0,0);}
.me_c00242{transform:matrix(0.196003,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.196003,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196003,-0.002940,0.003750,0.249972,0,0);}
.m5c_c00242{transform:matrix(0.196301,-0.002748,0.003500,0.249976,0,0);-ms-transform:matrix(0.196301,-0.002748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196301,-0.002748,0.003500,0.249976,0,0);}
.me3_c00242{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);}
.md7_c00242{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);}
.m10_c00242{transform:matrix(0.198013,-0.002970,0.003750,0.249972,0,0);-ms-transform:matrix(0.198013,-0.002970,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198013,-0.002970,0.003750,0.249972,0,0);}
.mbd_c00242{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);}
.m90_c00242{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);}
.mf3_c00242{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);}
.mbf_c00242{transform:matrix(0.198946,-0.003382,0.004249,0.249964,0,0);-ms-transform:matrix(0.198946,-0.003382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198946,-0.003382,0.004249,0.249964,0,0);}
.m73_c00242{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);}
.m3d_c00242{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);}
.mb6_c00242{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);}
.m9b_c00242{transform:matrix(0.199590,-0.002794,0.003500,0.249976,0,0);-ms-transform:matrix(0.199590,-0.002794,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199590,-0.002794,0.003500,0.249976,0,0);}
.m61_c00242{transform:matrix(0.200153,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200153,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200153,-0.002602,0.003250,0.249979,0,0);}
.m36_c00242{transform:matrix(0.200322,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200322,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200322,-0.003005,0.003750,0.249972,0,0);}
.mc_c00242{transform:matrix(0.200557,-0.003008,0.003750,0.249972,0,0);-ms-transform:matrix(0.200557,-0.003008,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200557,-0.003008,0.003750,0.249972,0,0);}
.m77_c00242{transform:matrix(0.200606,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200606,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200606,-0.002407,0.003000,0.249982,0,0);}
.me5_c00242{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);}
.mae_c00242{transform:matrix(0.201750,-0.002017,0.002500,0.249988,0,0);-ms-transform:matrix(0.201750,-0.002017,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201750,-0.002017,0.002500,0.249988,0,0);}
.m5_c00242{transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);}
.m56_c00242{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);}
.m63_c00242{transform:matrix(0.203593,-0.002647,0.003250,0.249979,0,0);-ms-transform:matrix(0.203593,-0.002647,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203593,-0.002647,0.003250,0.249979,0,0);}
.m82_c00242{transform:matrix(0.203630,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203630,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203630,-0.002444,0.003000,0.249982,0,0);}
.m93_c00242{transform:matrix(0.203815,-0.002446,0.003000,0.249982,0,0);-ms-transform:matrix(0.203815,-0.002446,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203815,-0.002446,0.003000,0.249982,0,0);}
.ma8_c00242{transform:matrix(0.203853,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203853,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203853,-0.002242,0.002750,0.249985,0,0);}
.mee_c00242{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);}
.m66_c00242{transform:matrix(0.204288,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204288,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204288,-0.002656,0.003250,0.249979,0,0);}
.m51_c00242{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_c00242{transform:matrix(0.205403,-0.002670,0.003250,0.249979,0,0);-ms-transform:matrix(0.205403,-0.002670,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205403,-0.002670,0.003250,0.249979,0,0);}
.m79_c00242{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);}
.m13_c00242{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);}
.mba_c00242{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);}
.m97_c00242{transform:matrix(0.207065,-0.002899,0.003500,0.249976,0,0);-ms-transform:matrix(0.207065,-0.002899,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207065,-0.002899,0.003500,0.249976,0,0);}
.m68_c00242{transform:matrix(0.207108,-0.002692,0.003250,0.249979,0,0);-ms-transform:matrix(0.207108,-0.002692,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207108,-0.002692,0.003250,0.249979,0,0);}
.ma_c00242{transform:matrix(0.207577,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207577,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207577,-0.003114,0.003750,0.249972,0,0);}
.m62_c00242{transform:matrix(0.207627,-0.002699,0.003250,0.249979,0,0);-ms-transform:matrix(0.207627,-0.002699,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207627,-0.002699,0.003250,0.249979,0,0);}
.me2_c00242{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);}
.mcc_c00242{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);}
.m94_c00242{transform:matrix(0.208245,-0.002499,0.003000,0.249982,0,0);-ms-transform:matrix(0.208245,-0.002499,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208245,-0.002499,0.003000,0.249982,0,0);}
.mb7_c00242{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);}
.mb5_c00242{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.ma7_c00242{transform:matrix(0.209347,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209347,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209347,-0.002303,0.002750,0.249985,0,0);}
.m71_c00242{transform:matrix(0.210052,-0.002311,0.002750,0.249985,0,0);-ms-transform:matrix(0.210052,-0.002311,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210052,-0.002311,0.002750,0.249985,0,0);}
.m2b_c00242{transform:matrix(0.210403,-0.003366,0.003999,0.249968,0,0);-ms-transform:matrix(0.210403,-0.003366,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210403,-0.003366,0.003999,0.249968,0,0);}
.mb8_c00242{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);}
.mb2_c00242{transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);-ms-transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);}
.m89_c00242{transform:matrix(0.211394,-0.002960,0.003500,0.249976,0,0);-ms-transform:matrix(0.211394,-0.002960,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211394,-0.002960,0.003500,0.249976,0,0);}
.md0_c00242{transform:matrix(0.211434,-0.003594,0.004249,0.249964,0,0);-ms-transform:matrix(0.211434,-0.003594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211434,-0.003594,0.004249,0.249964,0,0);}
.m8e_c00242{transform:matrix(0.211705,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211705,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211705,-0.002540,0.003000,0.249982,0,0);}
.m81_c00242{transform:matrix(0.211790,-0.002541,0.003000,0.249982,0,0);-ms-transform:matrix(0.211790,-0.002541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211790,-0.002541,0.003000,0.249982,0,0);}
.m11_c00242{transform:matrix(0.212561,-0.003188,0.003750,0.249972,0,0);-ms-transform:matrix(0.212561,-0.003188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212561,-0.003188,0.003750,0.249972,0,0);}
.m76_c00242{transform:matrix(0.214262,-0.002357,0.002750,0.249985,0,0);-ms-transform:matrix(0.214262,-0.002357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214262,-0.002357,0.002750,0.249985,0,0);}
.m59_c00242{transform:matrix(0.214592,-0.002790,0.003250,0.249979,0,0);-ms-transform:matrix(0.214592,-0.002790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214592,-0.002790,0.003250,0.249979,0,0);}
.mc2_c00242{transform:matrix(0.215944,-0.003671,0.004249,0.249964,0,0);-ms-transform:matrix(0.215944,-0.003671,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215944,-0.003671,0.004249,0.249964,0,0);}
.mc1_c00242{transform:matrix(0.217119,-0.003691,0.004249,0.249964,0,0);-ms-transform:matrix(0.217119,-0.003691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217119,-0.003691,0.004249,0.249964,0,0);}
.m4e_c00242{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);}
.mda_c00242{transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);}
.mec_c00242{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);}
.m85_c00242{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);}
.md4_c00242{transform:matrix(0.219170,-0.003288,0.003750,0.249972,0,0);-ms-transform:matrix(0.219170,-0.003288,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219170,-0.003288,0.003750,0.249972,0,0);}
.mc3_c00242{transform:matrix(0.219753,-0.003736,0.004249,0.249964,0,0);-ms-transform:matrix(0.219753,-0.003736,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219753,-0.003736,0.004249,0.249964,0,0);}
.m28_c00242{transform:matrix(0.219841,-0.002858,0.003250,0.249979,0,0);-ms-transform:matrix(0.219841,-0.002858,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219841,-0.002858,0.003250,0.249979,0,0);}
.m96_c00242{transform:matrix(0.220624,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220624,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220624,-0.002647,0.003000,0.249982,0,0);}
.maf_c00242{transform:matrix(0.221079,-0.002211,0.002500,0.249988,0,0);-ms-transform:matrix(0.221079,-0.002211,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221079,-0.002211,0.002500,0.249988,0,0);}
.m15_c00242{transform:matrix(0.221947,-0.003551,0.003999,0.249968,0,0);-ms-transform:matrix(0.221947,-0.003551,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221947,-0.003551,0.003999,0.249968,0,0);}
.me6_c00242{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);}
.ma9_c00242{transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);-ms-transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);}
.m9f_c00242{transform:matrix(0.223768,-0.003133,0.003500,0.249976,0,0);-ms-transform:matrix(0.223768,-0.003133,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223768,-0.003133,0.003500,0.249976,0,0);}
.ma4_c00242{transform:matrix(0.224061,-0.002465,0.002750,0.249985,0,0);-ms-transform:matrix(0.224061,-0.002465,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224061,-0.002465,0.002750,0.249985,0,0);}
.me1_c00242{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);}
.md2_c00242{transform:matrix(0.226357,-0.003848,0.004249,0.249964,0,0);-ms-transform:matrix(0.226357,-0.003848,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226357,-0.003848,0.004249,0.249964,0,0);}
.m4c_c00242{transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);}
.m5f_c00242{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);}
.mbe_c00242{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);}
.mb4_c00242{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);}
.m58_c00242{transform:matrix(0.227831,-0.002962,0.003250,0.249979,0,0);-ms-transform:matrix(0.227831,-0.002962,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227831,-0.002962,0.003250,0.249979,0,0);}
.m60_c00242{transform:matrix(0.229153,-0.003208,0.003500,0.249976,0,0);-ms-transform:matrix(0.229153,-0.003208,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229153,-0.003208,0.003500,0.249976,0,0);}
.md3_c00242{transform:matrix(0.229642,-0.003904,0.004249,0.249964,0,0);-ms-transform:matrix(0.229642,-0.003904,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229642,-0.003904,0.004249,0.249964,0,0);}
.mde_c00242{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);}
.m27_c00242{transform:matrix(0.232025,-0.003016,0.003250,0.249979,0,0);-ms-transform:matrix(0.232025,-0.003016,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232025,-0.003016,0.003250,0.249979,0,0);}
.m91_c00242{transform:matrix(0.232053,-0.002785,0.003000,0.249982,0,0);-ms-transform:matrix(0.232053,-0.002785,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232053,-0.002785,0.003000,0.249982,0,0);}
.mc4_c00242{transform:matrix(0.232646,-0.003955,0.004249,0.249964,0,0);-ms-transform:matrix(0.232646,-0.003955,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232646,-0.003955,0.004249,0.249964,0,0);}
.mf5_c00242{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);}
.mad_c00242{transform:matrix(0.234198,-0.002342,0.002500,0.249988,0,0);-ms-transform:matrix(0.234198,-0.002342,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234198,-0.002342,0.002500,0.249988,0,0);}
.md5_c00242{transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);-ms-transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);}
.m4_c00242{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);}
.m52_c00242{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);}
.m7f_c00242{transform:matrix(0.240853,-0.002890,0.003000,0.249982,0,0);-ms-transform:matrix(0.240853,-0.002890,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240853,-0.002890,0.003000,0.249982,0,0);}
.m88_c00242{transform:matrix(0.241481,-0.003381,0.003500,0.249976,0,0);-ms-transform:matrix(0.241481,-0.003381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241481,-0.003381,0.003500,0.249976,0,0);}
.mc5_c00242{transform:matrix(0.242400,-0.004121,0.004249,0.249964,0,0);-ms-transform:matrix(0.242400,-0.004121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242400,-0.004121,0.004249,0.249964,0,0);}
.m47_c00242{transform:matrix(0.242718,-0.002913,0.003000,0.249982,0,0);-ms-transform:matrix(0.242718,-0.002913,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242718,-0.002913,0.003000,0.249982,0,0);}
.m65_c00242{transform:matrix(0.244284,-0.003176,0.003250,0.249979,0,0);-ms-transform:matrix(0.244284,-0.003176,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244284,-0.003176,0.003250,0.249979,0,0);}
.m48_c00242{transform:matrix(0.244462,-0.002934,0.003000,0.249982,0,0);-ms-transform:matrix(0.244462,-0.002934,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244462,-0.002934,0.003000,0.249982,0,0);}
.md1_c00242{transform:matrix(0.244790,-0.004161,0.004249,0.249964,0,0);-ms-transform:matrix(0.244790,-0.004161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244790,-0.004161,0.004249,0.249964,0,0);}
.m69_c00242{transform:matrix(0.246459,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246459,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246459,-0.003204,0.003250,0.249979,0,0);}
.me4_c00242{transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);}
.m50_c00242{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00242{transform:matrix(0.248846,-0.003484,0.003500,0.249976,0,0);-ms-transform:matrix(0.248846,-0.003484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248846,-0.003484,0.003500,0.249976,0,0);}
.mc7_c00242{transform:matrix(0.251724,-0.004279,0.004249,0.249964,0,0);-ms-transform:matrix(0.251724,-0.004279,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251724,-0.004279,0.004249,0.249964,0,0);}
.m2f_c00242{transform:matrix(0.252598,-0.004042,0.003999,0.249968,0,0);-ms-transform:matrix(0.252598,-0.004042,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252598,-0.004042,0.003999,0.249968,0,0);}
.md6_c00242{transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);}
.m8c_c00242{transform:matrix(0.262476,-0.003150,0.003000,0.249982,0,0);-ms-transform:matrix(0.262476,-0.003150,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262476,-0.003150,0.003000,0.249982,0,0);}
.mac_c00242{transform:matrix(0.263002,-0.002630,0.002500,0.249988,0,0);-ms-transform:matrix(0.263002,-0.002630,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263002,-0.002630,0.002500,0.249988,0,0);}
.mbc_c00242{transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263335,0.000000,0.000000,0.250000,0,0);}
.m5a_c00242{transform:matrix(0.265114,-0.003712,0.003500,0.249976,0,0);-ms-transform:matrix(0.265114,-0.003712,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265114,-0.003712,0.003500,0.249976,0,0);}
.m8f_c00242{transform:matrix(0.267276,-0.003207,0.003000,0.249982,0,0);-ms-transform:matrix(0.267276,-0.003207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267276,-0.003207,0.003000,0.249982,0,0);}
.mdd_c00242{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00242{transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);}
.mc9_c00242{transform:matrix(0.277115,-0.004711,0.004249,0.249964,0,0);-ms-transform:matrix(0.277115,-0.004711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277115,-0.004711,0.004249,0.249964,0,0);}
.m1d_c00242{transform:matrix(0.280139,-0.004482,0.003999,0.249968,0,0);-ms-transform:matrix(0.280139,-0.004482,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280139,-0.004482,0.003999,0.249968,0,0);}
.m49_c00242{transform:matrix(0.292269,-0.003507,0.003000,0.249982,0,0);-ms-transform:matrix(0.292269,-0.003507,0.003000,0.249982,0,0);-webkit-transform:matrix(0.292269,-0.003507,0.003000,0.249982,0,0);}
.mf6_c00242{transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.324014,-0.004860,0.003750,0.249972,0,0);-ms-transform:matrix(0.324014,-0.004860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.324014,-0.004860,0.003750,0.249972,0,0);}
.m95_c00242{transform:matrix(0.329721,-0.003957,0.003000,0.249982,0,0);-ms-transform:matrix(0.329721,-0.003957,0.003000,0.249982,0,0);-webkit-transform:matrix(0.329721,-0.003957,0.003000,0.249982,0,0);}
.m45_c00242{transform:matrix(0.329896,-0.003959,0.003000,0.249982,0,0);-ms-transform:matrix(0.329896,-0.003959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.329896,-0.003959,0.003000,0.249982,0,0);}
.m46_c00242{transform:matrix(0.337001,-0.004044,0.003000,0.249982,0,0);-ms-transform:matrix(0.337001,-0.004044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337001,-0.004044,0.003000,0.249982,0,0);}
.m0_c00242{transform:matrix(0.345816,-0.005187,0.003750,0.249972,0,0);-ms-transform:matrix(0.345816,-0.005187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.345816,-0.005187,0.003750,0.249972,0,0);}
.m86_c00242{transform:matrix(0.349596,-0.004894,0.003500,0.249976,0,0);-ms-transform:matrix(0.349596,-0.004894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.349596,-0.004894,0.003500,0.249976,0,0);}
.mca_c00242{transform:matrix(0.354929,-0.006034,0.004249,0.249964,0,0);-ms-transform:matrix(0.354929,-0.006034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.354929,-0.006034,0.004249,0.249964,0,0);}
.m3_c00242{transform:matrix(0.366295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366295,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.383857,-0.005758,0.003750,0.249972,0,0);-ms-transform:matrix(0.383857,-0.005758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.383857,-0.005758,0.003750,0.249972,0,0);}
.m4a_c00242{transform:matrix(0.389222,-0.004671,0.003000,0.249982,0,0);-ms-transform:matrix(0.389222,-0.004671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.389222,-0.004671,0.003000,0.249982,0,0);}
.mf7_c00242{transform:matrix(0.449675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00242{transform:matrix(0.469317,-0.007978,0.004249,0.249964,0,0);-ms-transform:matrix(0.469317,-0.007978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.469317,-0.007978,0.004249,0.249964,0,0);}
.m2_c00242{transform:matrix(0.569360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569360,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.842695,-0.012640,0.003750,0.249972,0,0);-ms-transform:matrix(0.842695,-0.012640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.842695,-0.012640,0.003750,0.249972,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;}
.fs17_c00242{font-size:47.256827px;}
.fs1c_c00242{font-size:50.400000px;}
.fs1b_c00242{font-size:51.450000px;}
.fs1f_c00242{font-size:52.500000px;}
.fs1a_c00242{font-size:52.505906px;}
.fs19_c00242{font-size:52.507586px;}
.fs1d_c00242{font-size:54.600000px;}
.fs18_c00242{font-size:54.607889px;}
.fs1e_c00242{font-size:58.800000px;}
.fsb_c00242{font-size:65.100000px;}
.fs15_c00242{font-size:68.253412px;}
.fs12_c00242{font-size:68.254914px;}
.fs14_c00242{font-size:69.304193px;}
.fsd_c00242{font-size:69.306791px;}
.fs2_c00242{font-size:69.307796px;}
.fsa_c00242{font-size:70.355065px;}
.fse_c00242{font-size:70.355944px;}
.fs13_c00242{font-size:70.356894px;}
.fs4_c00242{font-size:70.357914px;}
.fs3_c00242{font-size:71.408032px;}
.fs7_c00242{font-size:71.409139px;}
.fs16_c00242{font-size:72.450000px;}
.fs10_c00242{font-size:72.454383px;}
.fs11_c00242{font-size:72.455216px;}
.fs5_c00242{font-size:72.459273px;}
.fs9_c00242{font-size:73.505292px;}
.fs6_c00242{font-size:73.506210px;}
.fs8_c00242{font-size:73.508268px;}
.fsf_c00242{font-size:74.556299px;}
.fsc_c00242{font-size:78.756654px;}
.fs1_c00242{font-size:85.050000px;}
.fs0_c00242{font-size:236.276577px;}
.y0_c00242{bottom:0.000000px;}
.ycc_c00242{bottom:117.439500px;}
.ycb_c00242{bottom:180.228000px;}
.yca_c00242{bottom:197.388000px;}
.yc5_c00242{bottom:199.111500px;}
.yc6_c00242{bottom:199.621733px;}
.yc9_c00242{bottom:216.493500px;}
.ybc_c00242{bottom:217.347239px;}
.ybd_c00242{bottom:217.652544px;}
.ybe_c00242{bottom:217.784796px;}
.ybf_c00242{bottom:218.029907px;}
.yc0_c00242{bottom:218.348706px;}
.yc1_c00242{bottom:218.722779px;}
.yc2_c00242{bottom:219.606896px;}
.yc3_c00242{bottom:219.954838px;}
.yc4_c00242{bottom:220.193238px;}
.yc8_c00242{bottom:234.066000px;}
.yb5_c00242{bottom:235.440240px;}
.yb6_c00242{bottom:236.226962px;}
.yb7_c00242{bottom:236.558474px;}
.yb8_c00242{bottom:237.315045px;}
.yb9_c00242{bottom:237.635664px;}
.yba_c00242{bottom:238.776215px;}
.ybb_c00242{bottom:239.246754px;}
.yc7_c00242{bottom:252.099000px;}
.yae_c00242{bottom:253.263000px;}
.yaf_c00242{bottom:253.795364px;}
.yb0_c00242{bottom:254.295903px;}
.yb1_c00242{bottom:255.047694px;}
.yb2_c00242{bottom:255.437946px;}
.yb3_c00242{bottom:256.095234px;}
.yb4_c00242{bottom:256.544825px;}
.yad_c00242{bottom:319.569000px;}
.ya4_c00242{bottom:341.010000px;}
.ya5_c00242{bottom:341.532795px;}
.ya6_c00242{bottom:341.900010px;}
.ya7_c00242{bottom:342.242520px;}
.ya8_c00242{bottom:342.575040px;}
.ya9_c00242{bottom:342.931395px;}
.yaa_c00242{bottom:343.117680px;}
.yab_c00242{bottom:343.465605px;}
.yac_c00242{bottom:343.760400px;}
.y99_c00242{bottom:364.501500px;}
.y9a_c00242{bottom:364.709416px;}
.y9b_c00242{bottom:365.000427px;}
.y9c_c00242{bottom:365.535060px;}
.y9d_c00242{bottom:365.787559px;}
.y9e_c00242{bottom:366.289457px;}
.y9f_c00242{bottom:366.708193px;}
.ya0_c00242{bottom:366.904263px;}
.ya1_c00242{bottom:367.165639px;}
.ya2_c00242{bottom:367.311285px;}
.ya3_c00242{bottom:368.041575px;}
.y90_c00242{bottom:386.373000px;}
.y91_c00242{bottom:387.615654px;}
.y92_c00242{bottom:388.028850px;}
.y93_c00242{bottom:388.546563px;}
.y94_c00242{bottom:388.951044px;}
.y95_c00242{bottom:389.392632px;}
.y96_c00242{bottom:389.760048px;}
.y97_c00242{bottom:390.285636px;}
.y98_c00242{bottom:390.962130px;}
.y84_c00242{bottom:409.051500px;}
.y85_c00242{bottom:409.401708px;}
.y86_c00242{bottom:409.642080px;}
.y87_c00242{bottom:410.196084px;}
.y88_c00242{bottom:410.658630px;}
.y89_c00242{bottom:410.966484px;}
.y8a_c00242{bottom:411.312516px;}
.y8b_c00242{bottom:411.767016px;}
.y8c_c00242{bottom:412.068120px;}
.y8d_c00242{bottom:412.628748px;}
.y8e_c00242{bottom:412.906704px;}
.y8f_c00242{bottom:413.512692px;}
.y7d_c00242{bottom:432.813000px;}
.y7e_c00242{bottom:433.565409px;}
.y7f_c00242{bottom:433.708356px;}
.y80_c00242{bottom:433.995405px;}
.y81_c00242{bottom:435.021213px;}
.y82_c00242{bottom:435.349191px;}
.y83_c00242{bottom:436.418721px;}
.y77_c00242{bottom:457.066662px;}
.y7c_c00242{bottom:457.067082px;}
.y78_c00242{bottom:457.067226px;}
.y79_c00242{bottom:457.067670px;}
.y7b_c00242{bottom:457.067700px;}
.y7a_c00242{bottom:457.068276px;}
.y6f_c00242{bottom:477.631500px;}
.y70_c00242{bottom:478.560732px;}
.y71_c00242{bottom:479.031162px;}
.y72_c00242{bottom:479.860620px;}
.y73_c00242{bottom:480.129684px;}
.y74_c00242{bottom:480.758316px;}
.y75_c00242{bottom:481.214742px;}
.y76_c00242{bottom:481.542378px;}
.y67_c00242{bottom:500.851500px;}
.y68_c00242{bottom:501.282051px;}
.y69_c00242{bottom:501.869748px;}
.y6a_c00242{bottom:502.785069px;}
.y6b_c00242{bottom:503.238934px;}
.y6c_c00242{bottom:503.604970px;}
.y6d_c00242{bottom:504.355786px;}
.y6e_c00242{bottom:504.662274px;}
.y61_c00242{bottom:524.070165px;}
.y62_c00242{bottom:524.558627px;}
.y63_c00242{bottom:525.447875px;}
.y64_c00242{bottom:526.056882px;}
.y65_c00242{bottom:526.342561px;}
.y66_c00242{bottom:527.089487px;}
.y59_c00242{bottom:546.211500px;}
.y5a_c00242{bottom:546.740828px;}
.y5b_c00242{bottom:547.103098px;}
.y5c_c00242{bottom:547.724583px;}
.y5d_c00242{bottom:548.714267px;}
.y5e_c00242{bottom:548.990894px;}
.y5f_c00242{bottom:549.451659px;}
.y60_c00242{bottom:550.118539px;}
.y52_c00242{bottom:568.893000px;}
.y53_c00242{bottom:569.365668px;}
.y54_c00242{bottom:570.454203px;}
.y55_c00242{bottom:571.368984px;}
.y56_c00242{bottom:571.694148px;}
.y57_c00242{bottom:572.775396px;}
.y58_c00242{bottom:573.576882px;}
.y4b_c00242{bottom:591.843000px;}
.y4c_c00242{bottom:592.255406px;}
.y4d_c00242{bottom:592.581991px;}
.y4e_c00242{bottom:593.029458px;}
.y4f_c00242{bottom:593.871156px;}
.y50_c00242{bottom:594.502898px;}
.y51_c00242{bottom:594.970332px;}
.y4a_c00242{bottom:616.218000px;}
.y45_c00242{bottom:634.787916px;}
.y46_c00242{bottom:636.913236px;}
.y47_c00242{bottom:637.236078px;}
.y48_c00242{bottom:638.703594px;}
.y49_c00242{bottom:639.162732px;}
.y3c_c00242{bottom:658.531500px;}
.y3d_c00242{bottom:659.144004px;}
.y3e_c00242{bottom:659.353974px;}
.y3f_c00242{bottom:659.720886px;}
.y40_c00242{bottom:660.433632px;}
.y41_c00242{bottom:660.738282px;}
.y42_c00242{bottom:660.968268px;}
.y43_c00242{bottom:661.639218px;}
.y44_c00242{bottom:662.442828px;}
.y33_c00242{bottom:681.753000px;}
.y34_c00242{bottom:682.466093px;}
.y35_c00242{bottom:682.866390px;}
.y36_c00242{bottom:683.381055px;}
.y37_c00242{bottom:683.713245px;}
.y38_c00242{bottom:684.401903px;}
.y39_c00242{bottom:685.187018px;}
.y3a_c00242{bottom:685.916917px;}
.y3b_c00242{bottom:686.251988px;}
.y2e_c00242{bottom:705.238620px;}
.y2f_c00242{bottom:705.695460px;}
.y30_c00242{bottom:706.391388px;}
.y31_c00242{bottom:707.105004px;}
.y32_c00242{bottom:707.627556px;}
.y28_c00242{bottom:727.383000px;}
.y29_c00242{bottom:728.808696px;}
.y2a_c00242{bottom:729.512832px;}
.y2b_c00242{bottom:730.152312px;}
.y2c_c00242{bottom:730.472016px;}
.y2d_c00242{bottom:731.461584px;}
.y1e_c00242{bottom:750.331500px;}
.y1f_c00242{bottom:750.871455px;}
.y20_c00242{bottom:751.430130px;}
.y21_c00242{bottom:751.883154px;}
.y22_c00242{bottom:752.665416px;}
.y23_c00242{bottom:752.957175px;}
.y24_c00242{bottom:753.447931px;}
.y25_c00242{bottom:753.862989px;}
.y26_c00242{bottom:754.217460px;}
.y27_c00242{bottom:754.604944px;}
.y14_c00242{bottom:772.744500px;}
.y15_c00242{bottom:773.856300px;}
.y16_c00242{bottom:774.086892px;}
.y17_c00242{bottom:774.424716px;}
.y18_c00242{bottom:775.288044px;}
.y19_c00242{bottom:775.634628px;}
.y1a_c00242{bottom:776.269644px;}
.y1b_c00242{bottom:777.025620px;}
.y1c_c00242{bottom:777.402516px;}
.y1d_c00242{bottom:777.969084px;}
.y10_c00242{bottom:796.749555px;}
.y11_c00242{bottom:797.918325px;}
.y12_c00242{bottom:798.873412px;}
.y13_c00242{bottom:800.218125px;}
.yb_c00242{bottom:819.720270px;}
.yc_c00242{bottom:820.675972px;}
.yd_c00242{bottom:822.001867px;}
.ye_c00242{bottom:822.883522px;}
.yf_c00242{bottom:823.371172px;}
.y4_c00242{bottom:842.133000px;}
.y5_c00242{bottom:843.023055px;}
.y6_c00242{bottom:843.906337px;}
.y7_c00242{bottom:844.633267px;}
.y8_c00242{bottom:845.085900px;}
.y9_c00242{bottom:846.028717px;}
.ya_c00242{bottom:846.461370px;}
.y3_c00242{bottom:893.154000px;}
.y1_c00242{bottom:936.100500px;}
.y2_c00242{bottom:937.251240px;}
.h19_c00242{height:47.256827px;}
.h1e_c00242{height:50.400000px;}
.h1d_c00242{height:51.450000px;}
.h21_c00242{height:52.500000px;}
.h1c_c00242{height:52.505906px;}
.h1b_c00242{height:52.507586px;}
.h1f_c00242{height:54.600000px;}
.h1a_c00242{height:54.607889px;}
.h20_c00242{height:58.800000px;}
.hd_c00242{height:65.100000px;}
.h17_c00242{height:68.253412px;}
.h14_c00242{height:68.254914px;}
.h16_c00242{height:69.304193px;}
.hf_c00242{height:69.306791px;}
.h4_c00242{height:69.307796px;}
.hc_c00242{height:70.355065px;}
.h10_c00242{height:70.355944px;}
.h15_c00242{height:70.356894px;}
.h6_c00242{height:70.357914px;}
.h5_c00242{height:71.408032px;}
.h9_c00242{height:71.409139px;}
.h18_c00242{height:72.450000px;}
.h12_c00242{height:72.454383px;}
.h13_c00242{height:72.455216px;}
.h7_c00242{height:72.459273px;}
.hb_c00242{height:73.505292px;}
.h8_c00242{height:73.506210px;}
.ha_c00242{height:73.508268px;}
.h11_c00242{height:74.556299px;}
.he_c00242{height:78.756654px;}
.h3_c00242{height:85.050000px;}
.h2_c00242{height:236.276577px;}
.h1_c00242{height:1005.000000px;}
.h0_c00242{height:1005.150000px;}
.w1_c00242{width:713.250000px;}
.w0_c00242{width:713.550000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:29.812500px;}
.x88_c00242{left:87.480000px;}
.x8e_c00242{left:88.830000px;}
.x85_c00242{left:100.980000px;}
.x2_c00242{left:106.528500px;}
.x8f_c00242{left:110.700000px;}
.x48_c00242{left:112.234500px;}
.x6_c00242{left:113.872500px;}
.x2f_c00242{left:115.762500px;}
.x42_c00242{left:117.436500px;}
.x58_c00242{left:118.971000px;}
.x69_c00242{left:120.886500px;}
.x86_c00242{left:127.440000px;}
.x8b_c00242{left:129.870000px;}
.x3_c00242{left:138.240000px;}
.x6e_c00242{left:140.544000px;}
.x39_c00242{left:145.855494px;}
.x8c_c00242{left:146.880000px;}
.x43_c00242{left:149.160000px;}
.x89_c00242{left:153.630000px;}
.x1d_c00242{left:156.187500px;}
.x3c_c00242{left:157.410000px;}
.x4d_c00242{left:158.610000px;}
.x30_c00242{left:163.302000px;}
.x11_c00242{left:165.801780px;}
.xd_c00242{left:167.338643px;}
.x2a_c00242{left:169.473876px;}
.x3d_c00242{left:171.720000px;}
.x7_c00242{left:173.209500px;}
.x44_c00242{left:174.282000px;}
.x14_c00242{left:183.133500px;}
.x4e_c00242{left:186.477000px;}
.x31_c00242{left:189.988500px;}
.x73_c00242{left:191.430000px;}
.x59_c00242{left:196.407000px;}
.x15_c00242{left:197.545500px;}
.x1e_c00242{left:199.162500px;}
.x2b_c00242{left:202.152432px;}
.x25_c00242{left:203.266500px;}
.x45_c00242{left:208.702500px;}
.x3e_c00242{left:210.870000px;}
.x37_c00242{left:212.938500px;}
.x6f_c00242{left:215.602500px;}
.x8a_c00242{left:217.080000px;}
.x16_c00242{left:218.659500px;}
.x74_c00242{left:220.590000px;}
.x90_c00242{left:222.480000px;}
.x32_c00242{left:224.299500px;}
.xe_c00242{left:227.051243px;}
.x3f_c00242{left:230.580000px;}
.x8_c00242{left:232.095000px;}
.x1f_c00242{left:234.010500px;}
.x5a_c00242{left:235.609500px;}
.x61_c00242{left:237.213000px;}
.x6a_c00242{left:239.161500px;}
.x26_c00242{left:247.275000px;}
.x64_c00242{left:250.729500px;}
.x2c_c00242{left:251.837016px;}
.x87_c00242{left:254.340000px;}
.x91_c00242{left:256.230000px;}
.x51_c00242{left:257.522475px;}
.x75_c00242{left:260.010000px;}
.x3a_c00242{left:262.481412px;}
.x8d_c00242{left:263.790000px;}
.x5f_c00242{left:265.961394px;}
.x17_c00242{left:272.617500px;}
.x92_c00242{left:273.780000px;}
.x65_c00242{left:276.384000px;}
.x12_c00242{left:277.585575px;}
.x9_c00242{left:280.557000px;}
.x70_c00242{left:284.184000px;}
.x27_c00242{left:287.242500px;}
.x49_c00242{left:289.090500px;}
.x33_c00242{left:292.356000px;}
.x18_c00242{left:294.279000px;}
.x52_c00242{left:295.598493px;}
.x38_c00242{left:297.721500px;}
.x40_c00242{left:300.780000px;}
.x2d_c00242{left:302.814648px;}
.x5b_c00242{left:304.731000px;}
.x28_c00242{left:307.224000px;}
.xa_c00242{left:310.732500px;}
.x4a_c00242{left:312.316500px;}
.x53_c00242{left:313.419291px;}
.x20_c00242{left:316.627500px;}
.x46_c00242{left:322.044000px;}
.x72_c00242{left:326.023500px;}
.x5c_c00242{left:327.153000px;}
.x62_c00242{left:330.988500px;}
.x3b_c00242{left:332.391870px;}
.x19_c00242{left:333.967500px;}
.x55_c00242{left:335.178000px;}
.x6b_c00242{left:336.574500px;}
.x2e_c00242{left:340.162848px;}
.x66_c00242{left:343.095000px;}
.x34_c00242{left:344.697000px;}
.x13_c00242{left:348.328823px;}
.x21_c00242{left:354.378000px;}
.x47_c00242{left:358.000500px;}
.x54_c00242{left:360.142477px;}
.x6c_c00242{left:362.818500px;}
.x60_c00242{left:363.978006px;}
.xf_c00242{left:365.019173px;}
.x76_c00242{left:366.120000px;}
.x4f_c00242{left:367.135500px;}
.x29_c00242{left:369.072000px;}
.x84_c00242{left:370.326000px;}
.x4_c00242{left:371.520000px;}
.xb_c00242{left:373.587000px;}
.x71_c00242{left:377.077500px;}
.x5d_c00242{left:379.539000px;}
.x1a_c00242{left:381.216000px;}
.x7e_c00242{left:384.032622px;}
.x22_c00242{left:386.305500px;}
.x4b_c00242{left:389.548500px;}
.x35_c00242{left:393.357000px;}
.x10_c00242{left:395.528723px;}
.x77_c00242{left:397.710000px;}
.x6d_c00242{left:400.360500px;}
.xc_c00242{left:402.430500px;}
.x1b_c00242{left:404.772000px;}
.x7f_c00242{left:406.757270px;}
.x23_c00242{left:413.572500px;}
.x36_c00242{left:415.695000px;}
.x50_c00242{left:418.434000px;}
.x78_c00242{left:424.440000px;}
.x63_c00242{left:430.810500px;}
.x80_c00242{left:433.527647px;}
.x56_c00242{left:436.710000px;}
.x67_c00242{left:438.069000px;}
.x1c_c00242{left:440.182500px;}
.x24_c00242{left:443.379000px;}
.x5e_c00242{left:444.877500px;}
.x4c_c00242{left:446.797500px;}
.x41_c00242{left:448.740000px;}
.x5_c00242{left:453.600000px;}
.x79_c00242{left:462.363000px;}
.x57_c00242{left:464.572500px;}
.x68_c00242{left:488.568000px;}
.x81_c00242{left:496.655360px;}
.x7a_c00242{left:501.027000px;}
.x82_c00242{left:521.535635px;}
.x7b_c00242{left:527.473500px;}
.x7c_c00242{left:536.448072px;}
.x83_c00242{left:538.560002px;}
.x7d_c00242{left:565.892082px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.fs17_c00242{font-size:42.006069pt;}
.fs1c_c00242{font-size:44.800000pt;}
.fs1b_c00242{font-size:45.733333pt;}
.fs1f_c00242{font-size:46.666667pt;}
.fs1a_c00242{font-size:46.671916pt;}
.fs19_c00242{font-size:46.673410pt;}
.fs1d_c00242{font-size:48.533333pt;}
.fs18_c00242{font-size:48.540346pt;}
.fs1e_c00242{font-size:52.266667pt;}
.fsb_c00242{font-size:57.866667pt;}
.fs15_c00242{font-size:60.669700pt;}
.fs12_c00242{font-size:60.671035pt;}
.fs14_c00242{font-size:61.603727pt;}
.fsd_c00242{font-size:61.606037pt;}
.fs2_c00242{font-size:61.606930pt;}
.fsa_c00242{font-size:62.537836pt;}
.fse_c00242{font-size:62.538617pt;}
.fs13_c00242{font-size:62.539461pt;}
.fs4_c00242{font-size:62.540368pt;}
.fs3_c00242{font-size:63.473806pt;}
.fs7_c00242{font-size:63.474790pt;}
.fs16_c00242{font-size:64.400000pt;}
.fs10_c00242{font-size:64.403896pt;}
.fs11_c00242{font-size:64.404637pt;}
.fs5_c00242{font-size:64.408243pt;}
.fs9_c00242{font-size:65.338037pt;}
.fs6_c00242{font-size:65.338854pt;}
.fs8_c00242{font-size:65.340683pt;}
.fsf_c00242{font-size:66.272266pt;}
.fsc_c00242{font-size:70.005915pt;}
.fs1_c00242{font-size:75.600000pt;}
.fs0_c00242{font-size:210.023624pt;}
.y0_c00242{bottom:0.000000pt;}
.ycc_c00242{bottom:104.390667pt;}
.ycb_c00242{bottom:160.202667pt;}
.yca_c00242{bottom:175.456000pt;}
.yc5_c00242{bottom:176.988000pt;}
.yc6_c00242{bottom:177.441540pt;}
.yc9_c00242{bottom:192.438667pt;}
.ybc_c00242{bottom:193.197545pt;}
.ybd_c00242{bottom:193.468928pt;}
.ybe_c00242{bottom:193.586485pt;}
.ybf_c00242{bottom:193.804361pt;}
.yc0_c00242{bottom:194.087739pt;}
.yc1_c00242{bottom:194.420248pt;}
.yc2_c00242{bottom:195.206129pt;}
.yc3_c00242{bottom:195.515412pt;}
.yc4_c00242{bottom:195.727323pt;}
.yc8_c00242{bottom:208.058667pt;}
.yb5_c00242{bottom:209.280213pt;}
.yb6_c00242{bottom:209.979521pt;}
.yb7_c00242{bottom:210.274199pt;}
.yb8_c00242{bottom:210.946707pt;}
.yb9_c00242{bottom:211.231701pt;}
.yba_c00242{bottom:212.245524pt;}
.ybb_c00242{bottom:212.663781pt;}
.yc7_c00242{bottom:224.088000pt;}
.yae_c00242{bottom:225.122667pt;}
.yaf_c00242{bottom:225.595879pt;}
.yb0_c00242{bottom:226.040803pt;}
.yb1_c00242{bottom:226.709061pt;}
.yb2_c00242{bottom:227.055952pt;}
.yb3_c00242{bottom:227.640208pt;}
.yb4_c00242{bottom:228.039844pt;}
.yad_c00242{bottom:284.061333pt;}
.ya4_c00242{bottom:303.120000pt;}
.ya5_c00242{bottom:303.584707pt;}
.ya6_c00242{bottom:303.911120pt;}
.ya7_c00242{bottom:304.215573pt;}
.ya8_c00242{bottom:304.511147pt;}
.ya9_c00242{bottom:304.827907pt;}
.yaa_c00242{bottom:304.993493pt;}
.yab_c00242{bottom:305.302760pt;}
.yac_c00242{bottom:305.564800pt;}
.y99_c00242{bottom:324.001333pt;}
.y9a_c00242{bottom:324.186148pt;}
.y9b_c00242{bottom:324.444824pt;}
.y9c_c00242{bottom:324.920053pt;}
.y9d_c00242{bottom:325.144497pt;}
.y9e_c00242{bottom:325.590628pt;}
.y9f_c00242{bottom:325.962839pt;}
.ya0_c00242{bottom:326.137123pt;}
.ya1_c00242{bottom:326.369457pt;}
.ya2_c00242{bottom:326.498920pt;}
.ya3_c00242{bottom:327.148067pt;}
.y90_c00242{bottom:343.442667pt;}
.y91_c00242{bottom:344.547248pt;}
.y92_c00242{bottom:344.914533pt;}
.y93_c00242{bottom:345.374723pt;}
.y94_c00242{bottom:345.734261pt;}
.y95_c00242{bottom:346.126784pt;}
.y96_c00242{bottom:346.453376pt;}
.y97_c00242{bottom:346.920565pt;}
.y98_c00242{bottom:347.521893pt;}
.y84_c00242{bottom:363.601333pt;}
.y85_c00242{bottom:363.912629pt;}
.y86_c00242{bottom:364.126293pt;}
.y87_c00242{bottom:364.618741pt;}
.y88_c00242{bottom:365.029893pt;}
.y89_c00242{bottom:365.303541pt;}
.y8a_c00242{bottom:365.611125pt;}
.y8b_c00242{bottom:366.015125pt;}
.y8c_c00242{bottom:366.282773pt;}
.y8d_c00242{bottom:366.781109pt;}
.y8e_c00242{bottom:367.028181pt;}
.y8f_c00242{bottom:367.566837pt;}
.y7d_c00242{bottom:384.722667pt;}
.y7e_c00242{bottom:385.391475pt;}
.y7f_c00242{bottom:385.518539pt;}
.y80_c00242{bottom:385.773693pt;}
.y81_c00242{bottom:386.685523pt;}
.y82_c00242{bottom:386.977059pt;}
.y83_c00242{bottom:387.927752pt;}
.y77_c00242{bottom:406.281477pt;}
.y7c_c00242{bottom:406.281851pt;}
.y78_c00242{bottom:406.281979pt;}
.y79_c00242{bottom:406.282373pt;}
.y7b_c00242{bottom:406.282400pt;}
.y7a_c00242{bottom:406.282912pt;}
.y6f_c00242{bottom:424.561333pt;}
.y70_c00242{bottom:425.387317pt;}
.y71_c00242{bottom:425.805477pt;}
.y72_c00242{bottom:426.542773pt;}
.y73_c00242{bottom:426.781941pt;}
.y74_c00242{bottom:427.340725pt;}
.y75_c00242{bottom:427.746437pt;}
.y76_c00242{bottom:428.037669pt;}
.y67_c00242{bottom:445.201333pt;}
.y68_c00242{bottom:445.584045pt;}
.y69_c00242{bottom:446.106443pt;}
.y6a_c00242{bottom:446.920061pt;}
.y6b_c00242{bottom:447.323497pt;}
.y6c_c00242{bottom:447.648863pt;}
.y6d_c00242{bottom:448.316255pt;}
.y6e_c00242{bottom:448.588688pt;}
.y61_c00242{bottom:465.840147pt;}
.y62_c00242{bottom:466.274335pt;}
.y63_c00242{bottom:467.064777pt;}
.y64_c00242{bottom:467.606117pt;}
.y65_c00242{bottom:467.860055pt;}
.y66_c00242{bottom:468.523988pt;}
.y59_c00242{bottom:485.521333pt;}
.y5a_c00242{bottom:485.991847pt;}
.y5b_c00242{bottom:486.313865pt;}
.y5c_c00242{bottom:486.866296pt;}
.y5d_c00242{bottom:487.746015pt;}
.y5e_c00242{bottom:487.991905pt;}
.y5f_c00242{bottom:488.401475pt;}
.y60_c00242{bottom:488.994257pt;}
.y52_c00242{bottom:505.682667pt;}
.y53_c00242{bottom:506.102816pt;}
.y54_c00242{bottom:507.070403pt;}
.y55_c00242{bottom:507.883541pt;}
.y56_c00242{bottom:508.172576pt;}
.y57_c00242{bottom:509.133685pt;}
.y58_c00242{bottom:509.846117pt;}
.y4b_c00242{bottom:526.082667pt;}
.y4c_c00242{bottom:526.449249pt;}
.y4d_c00242{bottom:526.739548pt;}
.y4e_c00242{bottom:527.137296pt;}
.y4f_c00242{bottom:527.885472pt;}
.y50_c00242{bottom:528.447020pt;}
.y51_c00242{bottom:528.862517pt;}
.y4a_c00242{bottom:547.749333pt;}
.y45_c00242{bottom:564.255925pt;}
.y46_c00242{bottom:566.145099pt;}
.y47_c00242{bottom:566.432069pt;}
.y48_c00242{bottom:567.736528pt;}
.y49_c00242{bottom:568.144651pt;}
.y3c_c00242{bottom:585.361333pt;}
.y3d_c00242{bottom:585.905781pt;}
.y3e_c00242{bottom:586.092421pt;}
.y3f_c00242{bottom:586.418565pt;}
.y40_c00242{bottom:587.052117pt;}
.y41_c00242{bottom:587.322917pt;}
.y42_c00242{bottom:587.527349pt;}
.y43_c00242{bottom:588.123749pt;}
.y44_c00242{bottom:588.838069pt;}
.y33_c00242{bottom:606.002667pt;}
.y34_c00242{bottom:606.636527pt;}
.y35_c00242{bottom:606.992347pt;}
.y36_c00242{bottom:607.449827pt;}
.y37_c00242{bottom:607.745107pt;}
.y38_c00242{bottom:608.357247pt;}
.y39_c00242{bottom:609.055127pt;}
.y3a_c00242{bottom:609.703927pt;}
.y3b_c00242{bottom:610.001767pt;}
.y2e_c00242{bottom:626.878773pt;}
.y2f_c00242{bottom:627.284853pt;}
.y30_c00242{bottom:627.903456pt;}
.y31_c00242{bottom:628.537781pt;}
.y32_c00242{bottom:629.002272pt;}
.y28_c00242{bottom:646.562667pt;}
.y29_c00242{bottom:647.829952pt;}
.y2a_c00242{bottom:648.455851pt;}
.y2b_c00242{bottom:649.024277pt;}
.y2c_c00242{bottom:649.308459pt;}
.y2d_c00242{bottom:650.188075pt;}
.y1e_c00242{bottom:666.961333pt;}
.y1f_c00242{bottom:667.441293pt;}
.y20_c00242{bottom:667.937893pt;}
.y21_c00242{bottom:668.340581pt;}
.y22_c00242{bottom:669.035925pt;}
.y23_c00242{bottom:669.295267pt;}
.y24_c00242{bottom:669.731495pt;}
.y25_c00242{bottom:670.100435pt;}
.y26_c00242{bottom:670.415520pt;}
.y27_c00242{bottom:670.759951pt;}
.y14_c00242{bottom:686.884000pt;}
.y15_c00242{bottom:687.872267pt;}
.y16_c00242{bottom:688.077237pt;}
.y17_c00242{bottom:688.377525pt;}
.y18_c00242{bottom:689.144928pt;}
.y19_c00242{bottom:689.453003pt;}
.y1a_c00242{bottom:690.017461pt;}
.y1b_c00242{bottom:690.689440pt;}
.y1c_c00242{bottom:691.024459pt;}
.y1d_c00242{bottom:691.528075pt;}
.y10_c00242{bottom:708.221827pt;}
.y11_c00242{bottom:709.260733pt;}
.y12_c00242{bottom:710.109700pt;}
.y13_c00242{bottom:711.305000pt;}
.yb_c00242{bottom:728.640240pt;}
.yc_c00242{bottom:729.489753pt;}
.yd_c00242{bottom:730.668327pt;}
.ye_c00242{bottom:731.452020pt;}
.yf_c00242{bottom:731.885487pt;}
.y4_c00242{bottom:748.562667pt;}
.y5_c00242{bottom:749.353827pt;}
.y6_c00242{bottom:750.138967pt;}
.y7_c00242{bottom:750.785127pt;}
.y8_c00242{bottom:751.187467pt;}
.y9_c00242{bottom:752.025527pt;}
.ya_c00242{bottom:752.410107pt;}
.y3_c00242{bottom:793.914667pt;}
.y1_c00242{bottom:832.089333pt;}
.y2_c00242{bottom:833.112213pt;}
.h19_c00242{height:42.006069pt;}
.h1e_c00242{height:44.800000pt;}
.h1d_c00242{height:45.733333pt;}
.h21_c00242{height:46.666667pt;}
.h1c_c00242{height:46.671916pt;}
.h1b_c00242{height:46.673410pt;}
.h1f_c00242{height:48.533333pt;}
.h1a_c00242{height:48.540346pt;}
.h20_c00242{height:52.266667pt;}
.hd_c00242{height:57.866667pt;}
.h17_c00242{height:60.669700pt;}
.h14_c00242{height:60.671035pt;}
.h16_c00242{height:61.603727pt;}
.hf_c00242{height:61.606037pt;}
.h4_c00242{height:61.606930pt;}
.hc_c00242{height:62.537836pt;}
.h10_c00242{height:62.538617pt;}
.h15_c00242{height:62.539461pt;}
.h6_c00242{height:62.540368pt;}
.h5_c00242{height:63.473806pt;}
.h9_c00242{height:63.474790pt;}
.h18_c00242{height:64.400000pt;}
.h12_c00242{height:64.403896pt;}
.h13_c00242{height:64.404637pt;}
.h7_c00242{height:64.408243pt;}
.hb_c00242{height:65.338037pt;}
.h8_c00242{height:65.338854pt;}
.ha_c00242{height:65.340683pt;}
.h11_c00242{height:66.272266pt;}
.he_c00242{height:70.005915pt;}
.h3_c00242{height:75.600000pt;}
.h2_c00242{height:210.023624pt;}
.h1_c00242{height:893.333333pt;}
.h0_c00242{height:893.466667pt;}
.w1_c00242{width:634.000000pt;}
.w0_c00242{width:634.266667pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:26.500000pt;}
.x88_c00242{left:77.760000pt;}
.x8e_c00242{left:78.960000pt;}
.x85_c00242{left:89.760000pt;}
.x2_c00242{left:94.692000pt;}
.x8f_c00242{left:98.400000pt;}
.x48_c00242{left:99.764000pt;}
.x6_c00242{left:101.220000pt;}
.x2f_c00242{left:102.900000pt;}
.x42_c00242{left:104.388000pt;}
.x58_c00242{left:105.752000pt;}
.x69_c00242{left:107.454667pt;}
.x86_c00242{left:113.280000pt;}
.x8b_c00242{left:115.440000pt;}
.x3_c00242{left:122.880000pt;}
.x6e_c00242{left:124.928000pt;}
.x39_c00242{left:129.649328pt;}
.x8c_c00242{left:130.560000pt;}
.x43_c00242{left:132.586667pt;}
.x89_c00242{left:136.560000pt;}
.x1d_c00242{left:138.833333pt;}
.x3c_c00242{left:139.920000pt;}
.x4d_c00242{left:140.986667pt;}
.x30_c00242{left:145.157333pt;}
.x11_c00242{left:147.379360pt;}
.xd_c00242{left:148.745460pt;}
.x2a_c00242{left:150.643445pt;}
.x3d_c00242{left:152.640000pt;}
.x7_c00242{left:153.964000pt;}
.x44_c00242{left:154.917333pt;}
.x14_c00242{left:162.785333pt;}
.x4e_c00242{left:165.757333pt;}
.x31_c00242{left:168.878667pt;}
.x73_c00242{left:170.160000pt;}
.x59_c00242{left:174.584000pt;}
.x15_c00242{left:175.596000pt;}
.x1e_c00242{left:177.033333pt;}
.x2b_c00242{left:179.691051pt;}
.x25_c00242{left:180.681333pt;}
.x45_c00242{left:185.513333pt;}
.x3e_c00242{left:187.440000pt;}
.x37_c00242{left:189.278667pt;}
.x6f_c00242{left:191.646667pt;}
.x8a_c00242{left:192.960000pt;}
.x16_c00242{left:194.364000pt;}
.x74_c00242{left:196.080000pt;}
.x90_c00242{left:197.760000pt;}
.x32_c00242{left:199.377333pt;}
.xe_c00242{left:201.823327pt;}
.x3f_c00242{left:204.960000pt;}
.x8_c00242{left:206.306667pt;}
.x1f_c00242{left:208.009333pt;}
.x5a_c00242{left:209.430667pt;}
.x61_c00242{left:210.856000pt;}
.x6a_c00242{left:212.588000pt;}
.x26_c00242{left:219.800000pt;}
.x64_c00242{left:222.870667pt;}
.x2c_c00242{left:223.855125pt;}
.x87_c00242{left:226.080000pt;}
.x91_c00242{left:227.760000pt;}
.x51_c00242{left:228.908867pt;}
.x75_c00242{left:231.120000pt;}
.x3a_c00242{left:233.316811pt;}
.x8d_c00242{left:234.480000pt;}
.x5f_c00242{left:236.410128pt;}
.x17_c00242{left:242.326667pt;}
.x92_c00242{left:243.360000pt;}
.x65_c00242{left:245.674667pt;}
.x12_c00242{left:246.742733pt;}
.x9_c00242{left:249.384000pt;}
.x70_c00242{left:252.608000pt;}
.x27_c00242{left:255.326667pt;}
.x49_c00242{left:256.969333pt;}
.x33_c00242{left:259.872000pt;}
.x18_c00242{left:261.581333pt;}
.x52_c00242{left:262.754216pt;}
.x38_c00242{left:264.641333pt;}
.x40_c00242{left:267.360000pt;}
.x2d_c00242{left:269.168576pt;}
.x5b_c00242{left:270.872000pt;}
.x28_c00242{left:273.088000pt;}
.xa_c00242{left:276.206667pt;}
.x4a_c00242{left:277.614667pt;}
.x53_c00242{left:278.594925pt;}
.x20_c00242{left:281.446667pt;}
.x46_c00242{left:286.261333pt;}
.x72_c00242{left:289.798667pt;}
.x5c_c00242{left:290.802667pt;}
.x62_c00242{left:294.212000pt;}
.x3b_c00242{left:295.459440pt;}
.x19_c00242{left:296.860000pt;}
.x55_c00242{left:297.936000pt;}
.x6b_c00242{left:299.177333pt;}
.x2e_c00242{left:302.366976pt;}
.x66_c00242{left:304.973333pt;}
.x34_c00242{left:306.397333pt;}
.x13_c00242{left:309.625620pt;}
.x21_c00242{left:315.002667pt;}
.x47_c00242{left:318.222667pt;}
.x54_c00242{left:320.126647pt;}
.x6c_c00242{left:322.505333pt;}
.x60_c00242{left:323.536005pt;}
.xf_c00242{left:324.461487pt;}
.x76_c00242{left:325.440000pt;}
.x4f_c00242{left:326.342667pt;}
.x29_c00242{left:328.064000pt;}
.x84_c00242{left:329.178667pt;}
.x4_c00242{left:330.240000pt;}
.xb_c00242{left:332.077333pt;}
.x71_c00242{left:335.180000pt;}
.x5d_c00242{left:337.368000pt;}
.x1a_c00242{left:338.858667pt;}
.x7e_c00242{left:341.362331pt;}
.x22_c00242{left:343.382667pt;}
.x4b_c00242{left:346.265333pt;}
.x35_c00242{left:349.650667pt;}
.x10_c00242{left:351.581087pt;}
.x77_c00242{left:353.520000pt;}
.x6d_c00242{left:355.876000pt;}
.xc_c00242{left:357.716000pt;}
.x1b_c00242{left:359.797333pt;}
.x7f_c00242{left:361.562017pt;}
.x23_c00242{left:367.620000pt;}
.x36_c00242{left:369.506667pt;}
.x50_c00242{left:371.941333pt;}
.x78_c00242{left:377.280000pt;}
.x63_c00242{left:382.942667pt;}
.x80_c00242{left:385.357908pt;}
.x56_c00242{left:388.186667pt;}
.x67_c00242{left:389.394667pt;}
.x1c_c00242{left:391.273333pt;}
.x24_c00242{left:394.114667pt;}
.x5e_c00242{left:395.446667pt;}
.x4c_c00242{left:397.153333pt;}
.x41_c00242{left:398.880000pt;}
.x5_c00242{left:403.200000pt;}
.x79_c00242{left:410.989333pt;}
.x57_c00242{left:412.953333pt;}
.x68_c00242{left:434.282667pt;}
.x81_c00242{left:441.471431pt;}
.x7a_c00242{left:445.357333pt;}
.x82_c00242{left:463.587231pt;}
.x7b_c00242{left:468.865333pt;}
.x7c_c00242{left:476.842731pt;}
.x83_c00242{left:478.720001pt;}
.x7d_c00242{left:503.015184pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m1_c00243{transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009695,0.000000,0.000000,0.250000,0,0);}
.mbc_c00243{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);}
.m4f_c00243{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);}
.m4a_c00243{transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{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);}
.m6e_c00243{transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);}
.m49_c00243{transform:matrix(0.090620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090620,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{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);}
.m15_c00243{transform:matrix(0.107615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107615,0.000000,0.000000,0.250000,0,0);}
.mb3_c00243{transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);}
.m8e_c00243{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);}
.ma_c00243{transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);}
.m31_c00243{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m75_c00243{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);}
.m1d_c00243{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);}
.m43_c00243{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);}
.m6c_c00243{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);}
.m86_c00243{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);}
.m76_c00243{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m91_c00243{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);}
.mb7_c00243{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);}
.m8a_c00243{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);}
.m84_c00243{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);}
.m23_c00243{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);}
.m99_c00243{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);}
.m20_c00243{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);}
.m44_c00243{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_c00243{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);}
.m8b_c00243{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);}
.m45_c00243{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);}
.m77_c00243{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);}
.mb9_c00243{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);}
.m5c_c00243{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);}
.m64_c00243{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);}
.m1c_c00243{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_c00243{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);}
.m21_c00243{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);}
.m35_c00243{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);}
.mb5_c00243{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);}
.m34_c00243{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);}
.m90_c00243{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);}
.m5b_c00243{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);}
.m6d_c00243{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);}
.m94_c00243{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);}
.m72_c00243{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);}
.m83_c00243{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);}
.m38_c00243{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);}
.m7a_c00243{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);}
.maa_c00243{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);}
.m2e_c00243{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);}
.m25_c00243{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);}
.m66_c00243{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);}
.m2c_c00243{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);}
.m9d_c00243{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);}
.m27_c00243{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);}
.mb6_c00243{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);}
.m4d_c00243{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);}
.m6a_c00243{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);}
.m30_c00243{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);}
.m79_c00243{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);}
.m51_c00243{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);}
.m39_c00243{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);}
.m55_c00243{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);}
.mb8_c00243{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);}
.m73_c00243{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);}
.m8c_c00243{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);}
.m61_c00243{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);}
.m1a_c00243{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);}
.m2b_c00243{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{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);}
.m8f_c00243{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);}
.m85_c00243{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);}
.m58_c00243{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);}
.m19_c00243{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);}
.m63_c00243{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);}
.m6b_c00243{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);}
.m1b_c00243{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);}
.mb4_c00243{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);}
.m78_c00243{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);}
.m87_c00243{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);}
.m7d_c00243{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);}
.m92_c00243{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);}
.m7c_c00243{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);}
.m9c_c00243{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);}
.m65_c00243{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);}
.m8d_c00243{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);}
.m96_c00243{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);}
.m81_c00243{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);}
.m89_c00243{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);}
.m95_c00243{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);}
.m13_c00243{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);}
.m47_c00243{transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);}
.m71_c00243{transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);}
.m5a_c00243{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);}
.m2a_c00243{transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220205,0.000000,0.000000,0.250000,0,0);}
.ma9_c00243{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);}
.m26_c00243{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);}
.m18_c00243{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{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);}
.m2f_c00243{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);}
.m50_c00243{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);}
.m74_c00243{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);}
.m32_c00243{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);}
.m22_c00243{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);}
.m29_c00243{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);}
.m36_c00243{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);}
.mbb_c00243{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);}
.m5f_c00243{transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);}
.m33_c00243{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);}
.m54_c00243{transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);}
.m7e_c00243{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);}
.m9b_c00243{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);}
.m6f_c00243{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);}
.m88_c00243{transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);}
.m7b_c00243{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);}
.m24_c00243{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);}
.m1e_c00243{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);}
.m4_c00243{transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);}
.ma7_c00243{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);}
.m93_c00243{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);}
.m67_c00243{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);}
.m7_c00243{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.m53_c00243{transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259305,0.000000,0.000000,0.250000,0,0);}
.m57_c00243{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);}
.me_c00243{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);}
.m80_c00243{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);}
.mb0_c00243{transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);}
.mac_c00243{transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);}
.m7f_c00243{transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273195,0.000000,0.000000,0.250000,0,0);}
.mab_c00243{transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277095,0.000000,0.000000,0.250000,0,0);}
.m9a_c00243{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);}
.ma3_c00243{transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);}
.m4e_c00243{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);}
.m98_c00243{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314705,0.000000,0.000000,0.250000,0,0);}
.m70_c00243{transform:matrix(0.315540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315540,0.000000,0.000000,0.250000,0,0);}
.m17_c00243{transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315615,0.000000,0.000000,0.250000,0,0);}
.ma1_c00243{transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319660,0.000000,0.000000,0.250000,0,0);}
.ma6_c00243{transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322480,0.000000,0.000000,0.250000,0,0);}
.mb2_c00243{transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335705,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);}
.m52_c00243{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);}
.m9_c00243{transform:matrix(0.344915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344915,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.347165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347165,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.347445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347445,0.000000,0.000000,0.250000,0,0);}
.ma2_c00243{transform:matrix(0.349040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349040,0.000000,0.000000,0.250000,0,0);}
.ma8_c00243{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);}
.m3_c00243{transform:matrix(0.352745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352745,0.000000,0.000000,0.250000,0,0);}
.m48_c00243{transform:matrix(0.353860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353860,0.000000,0.000000,0.250000,0,0);}
.mb1_c00243{transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);}
.m9f_c00243{transform:matrix(0.354820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354820,0.000000,0.000000,0.250000,0,0);}
.m69_c00243{transform:matrix(0.361295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00243{transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.366850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366850,0.000000,0.000000,0.250000,0,0);}
.m5d_c00243{transform:matrix(0.404465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{transform:matrix(0.408055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408055,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416340,0.000000,0.000000,0.250000,0,0);}
.m68_c00243{transform:matrix(0.418130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418130,0.000000,0.000000,0.250000,0,0);}
.mba_c00243{transform:matrix(0.419400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419400,0.000000,0.000000,0.250000,0,0);}
.m56_c00243{transform:matrix(0.425320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425320,0.000000,0.000000,0.250000,0,0);}
.m62_c00243{transform:matrix(0.426080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426080,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.439605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439605,0.000000,0.000000,0.250000,0,0);}
.m97_c00243{transform:matrix(0.453825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00243{transform:matrix(0.457985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457985,0.000000,0.000000,0.250000,0,0);}
.m3d_c00243{transform:matrix(0.465735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465735,0.000000,0.000000,0.250000,0,0);}
.maf_c00243{transform:matrix(0.466720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466720,0.000000,0.000000,0.250000,0,0);}
.m5e_c00243{transform:matrix(0.475565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475565,0.000000,0.000000,0.250000,0,0);}
.m60_c00243{transform:matrix(0.483625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483625,0.000000,0.000000,0.250000,0,0);}
.m3e_c00243{transform:matrix(0.485290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00243{transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);}
.mad_c00243{transform:matrix(0.487215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487215,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.497095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497095,0.000000,0.000000,0.250000,0,0);}
.mae_c00243{transform:matrix(0.500585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500585,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{transform:matrix(0.500760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500760,0.000000,0.000000,0.250000,0,0);}
.m4c_c00243{transform:matrix(0.516520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516520,0.000000,0.000000,0.250000,0,0);}
.m9e_c00243{transform:matrix(0.516680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516680,0.000000,0.000000,0.250000,0,0);}
.m3c_c00243{transform:matrix(0.538205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538205,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.551870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551870,0.000000,0.000000,0.250000,0,0);}
.ma0_c00243{transform:matrix(0.574105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574105,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.887280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887280,0.000000,0.000000,0.250000,0,0);}
.ma5_c00243{transform:matrix(0.934725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.934725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.934725,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(1.535475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535475,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(1.877565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.877565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.877565,0.000000,0.000000,0.250000,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;}
.fs3_c00243{font-size:22.050000px;}
.fs1_c00243{font-size:52.500000px;}
.fs0_c00243{font-size:54.600000px;}
.fs6_c00243{font-size:64.050000px;}
.fs8_c00243{font-size:65.100000px;}
.fsb_c00243{font-size:67.200000px;}
.fs4_c00243{font-size:68.250000px;}
.fs5_c00243{font-size:69.300000px;}
.fsa_c00243{font-size:70.350000px;}
.fsc_c00243{font-size:72.450000px;}
.fsd_c00243{font-size:73.500000px;}
.fs7_c00243{font-size:74.550000px;}
.fs9_c00243{font-size:87.150000px;}
.fs2_c00243{font-size:121.800000px;}
.y0_c00243{bottom:0.000000px;}
.y5f_c00243{bottom:178.339500px;}
.y5e_c00243{bottom:179.143500px;}
.y5d_c00243{bottom:179.617500px;}
.y5c_c00243{bottom:180.286500px;}
.y5b_c00243{bottom:180.642000px;}
.y5a_c00243{bottom:181.219500px;}
.y59_c00243{bottom:181.674000px;}
.y58_c00243{bottom:182.275500px;}
.y57_c00243{bottom:182.794500px;}
.y56_c00243{bottom:202.576500px;}
.y55_c00243{bottom:222.933000px;}
.y54_c00243{bottom:223.135500px;}
.y53_c00243{bottom:224.299500px;}
.y52_c00243{bottom:225.003000px;}
.y51_c00243{bottom:225.133500px;}
.y50_c00243{bottom:225.975000px;}
.y4f_c00243{bottom:226.593000px;}
.y4e_c00243{bottom:247.591500px;}
.y4d_c00243{bottom:270.306000px;}
.y4c_c00243{bottom:272.713500px;}
.y4b_c00243{bottom:273.624000px;}
.y4a_c00243{bottom:273.844500px;}
.y49_c00243{bottom:274.081500px;}
.y48_c00243{bottom:274.335000px;}
.y47_c00243{bottom:294.838500px;}
.y46_c00243{bottom:316.291500px;}
.y45_c00243{bottom:316.882500px;}
.y44_c00243{bottom:317.464500px;}
.y43_c00243{bottom:317.676000px;}
.y42_c00243{bottom:318.399000px;}
.y41_c00243{bottom:318.742500px;}
.y40_c00243{bottom:319.626000px;}
.y3f_c00243{bottom:320.226000px;}
.y3e_c00243{bottom:338.074500px;}
.y3d_c00243{bottom:338.506500px;}
.y3c_c00243{bottom:338.886000px;}
.y3b_c00243{bottom:339.297000px;}
.y3a_c00243{bottom:339.777000px;}
.y39_c00243{bottom:340.087500px;}
.y38_c00243{bottom:340.819500px;}
.y37_c00243{bottom:341.058000px;}
.y36_c00243{bottom:341.512500px;}
.y35_c00243{bottom:341.931000px;}
.y34_c00243{bottom:342.412500px;}
.y33_c00243{bottom:342.907500px;}
.y32_c00243{bottom:362.577000px;}
.y31_c00243{bottom:363.178500px;}
.y30_c00243{bottom:363.928500px;}
.y2f_c00243{bottom:364.165500px;}
.y2e_c00243{bottom:364.755000px;}
.y2d_c00243{bottom:365.008500px;}
.y2c_c00243{bottom:365.421000px;}
.y2b_c00243{bottom:365.853000px;}
.y2a_c00243{bottom:387.013500px;}
.y29_c00243{bottom:408.738000px;}
.y28_c00243{bottom:409.134000px;}
.y27_c00243{bottom:409.641000px;}
.y26_c00243{bottom:409.950000px;}
.y25_c00243{bottom:410.157000px;}
.y24_c00243{bottom:410.326500px;}
.y23_c00243{bottom:410.913000px;}
.y22_c00243{bottom:411.153000px;}
.y21_c00243{bottom:411.787500px;}
.y20_c00243{bottom:412.023000px;}
.y1f_c00243{bottom:432.640500px;}
.y1e_c00243{bottom:458.364000px;}
.y1d_c00243{bottom:458.860500px;}
.y1c_c00243{bottom:459.394500px;}
.y1b_c00243{bottom:459.642000px;}
.y1a_c00243{bottom:460.041000px;}
.y19_c00243{bottom:460.468500px;}
.y18_c00243{bottom:460.680000px;}
.y17_c00243{bottom:461.310000px;}
.y16_c00243{bottom:461.703000px;}
.y15_c00243{bottom:483.078000px;}
.y14_c00243{bottom:510.877500px;}
.y13_c00243{bottom:532.254000px;}
.y12_c00243{bottom:532.644000px;}
.y11_c00243{bottom:534.091500px;}
.y10_c00243{bottom:535.000500px;}
.yf_c00243{bottom:538.111500px;}
.ye_c00243{bottom:557.136000px;}
.yd_c00243{bottom:580.698000px;}
.yc_c00243{bottom:602.910000px;}
.yb_c00243{bottom:639.174000px;}
.ya_c00243{bottom:681.447000px;}
.y9_c00243{bottom:752.598000px;}
.y8_c00243{bottom:776.046000px;}
.y7_c00243{bottom:798.553500px;}
.y6_c00243{bottom:822.123000px;}
.y5_c00243{bottom:844.932000px;}
.y4_c00243{bottom:871.443000px;}
.y3_c00243{bottom:886.581000px;}
.y2_c00243{bottom:952.515000px;}
.y1_c00243{bottom:953.640000px;}
.h5_c00243{height:22.050000px;}
.h3_c00243{height:52.500000px;}
.h2_c00243{height:54.600000px;}
.h8_c00243{height:64.050000px;}
.ha_c00243{height:65.100000px;}
.hd_c00243{height:67.200000px;}
.h6_c00243{height:68.250000px;}
.h7_c00243{height:69.300000px;}
.hc_c00243{height:70.350000px;}
.he_c00243{height:72.450000px;}
.hf_c00243{height:73.500000px;}
.h9_c00243{height:74.550000px;}
.hb_c00243{height:87.150000px;}
.h4_c00243{height:121.800000px;}
.h0_c00243{height:1008.450000px;}
.h1_c00243{height:1008.750000px;}
.w0_c00243{width:678.450000px;}
.w1_c00243{width:678.750000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:156.060000px;}
.x51_c00243{left:167.814000px;}
.x38_c00243{left:169.830000px;}
.x16_c00243{left:171.990000px;}
.x28_c00243{left:173.070000px;}
.x3_c00243{left:184.410000px;}
.x6d_c00243{left:188.595000px;}
.x36_c00243{left:191.700000px;}
.x4_c00243{left:205.470000px;}
.x17_c00243{left:207.630000px;}
.x5f_c00243{left:209.092500px;}
.x7c_c00243{left:210.180000px;}
.x5b_c00243{left:211.546500px;}
.x2d_c00243{left:213.570000px;}
.x45_c00243{left:216.001500px;}
.x66_c00243{left:218.007000px;}
.x20_c00243{left:221.130000px;}
.x22_c00243{left:226.530000px;}
.xe_c00243{left:232.200000px;}
.x18_c00243{left:234.360000px;}
.x57_c00243{left:241.650000px;}
.x46_c00243{left:250.021500px;}
.x40_c00243{left:252.973500px;}
.x52_c00243{left:254.754000px;}
.x23_c00243{left:255.960000px;}
.x7d_c00243{left:260.347500px;}
.x39_c00243{left:262.170000px;}
.x58_c00243{left:265.950000px;}
.x5_c00243{left:271.350000px;}
.x2e_c00243{left:273.240000px;}
.x29_c00243{left:274.860000px;}
.x53_c00243{left:278.770500px;}
.x6b_c00243{left:279.994500px;}
.x4b_c00243{left:283.422000px;}
.x19_c00243{left:286.200000px;}
.x24_c00243{left:287.550000px;}
.x49_c00243{left:290.521500px;}
.x67_c00243{left:291.667500px;}
.x3a_c00243{left:294.030000px;}
.x37_c00243{left:296.190000px;}
.x3c_c00243{left:298.080000px;}
.x6e_c00243{left:302.538000px;}
.xf_c00243{left:304.020000px;}
.x4c_c00243{left:306.912000px;}
.x33_c00243{left:309.150000px;}
.x1a_c00243{left:311.040000px;}
.x2f_c00243{left:316.710000px;}
.x10_c00243{left:318.060000px;}
.x6f_c00243{left:319.143000px;}
.x11_c00243{left:320.490000px;}
.x60_c00243{left:322.008000px;}
.x12_c00243{left:324.270000px;}
.x78_c00243{left:326.433000px;}
.x3d_c00243{left:327.780000px;}
.x6_c00243{left:329.670000px;}
.x13_c00243{left:331.560000px;}
.x5c_c00243{left:337.101000px;}
.x1_c00243{left:338.310000px;}
.x70_c00243{left:340.203000px;}
.x61_c00243{left:341.904000px;}
.x59_c00243{left:343.170000px;}
.x79_c00243{left:346.683000px;}
.x25_c00243{left:348.300000px;}
.x1b_c00243{left:350.460000px;}
.x4d_c00243{left:354.352500px;}
.x14_c00243{left:357.750000px;}
.x5d_c00243{left:360.813000px;}
.x71_c00243{left:363.963000px;}
.x2a_c00243{left:365.040000px;}
.x30_c00243{left:366.120000px;}
.x1c_c00243{left:368.280000px;}
.x15_c00243{left:370.710000px;}
.x4a_c00243{left:371.791500px;}
.x26_c00243{left:373.140000px;}
.x54_c00243{left:375.058500px;}
.x68_c00243{left:380.556000px;}
.x3b_c00243{left:388.800000px;}
.x7a_c00243{left:394.203000px;}
.x34_c00243{left:396.630000px;}
.x69_c00243{left:398.130000px;}
.x21_c00243{left:399.330000px;}
.x62_c00243{left:402.918000px;}
.x3e_c00243{left:404.730000px;}
.x55_c00243{left:405.997500px;}
.x41_c00243{left:408.540000px;}
.x31_c00243{left:413.910000px;}
.x1d_c00243{left:418.500000px;}
.x2b_c00243{left:420.390000px;}
.x35_c00243{left:423.360000px;}
.x4e_c00243{left:426.186000px;}
.x6c_c00243{left:427.954500px;}
.x3f_c00243{left:429.570000px;}
.x47_c00243{left:430.651500px;}
.x27_c00243{left:431.730000px;}
.x5e_c00243{left:435.876000px;}
.x2c_c00243{left:437.400000px;}
.x7_c00243{left:440.100000px;}
.x1e_c00243{left:441.450000px;}
.x6a_c00243{left:446.587500px;}
.x5a_c00243{left:448.200000px;}
.x42_c00243{left:454.000500px;}
.x73_c00243{left:456.565500px;}
.x32_c00243{left:457.650000px;}
.x74_c00243{left:464.689500px;}
.x63_c00243{left:468.811500px;}
.x8_c00243{left:470.880000px;}
.x48_c00243{left:476.821500px;}
.x4f_c00243{left:485.542500px;}
.x72_c00243{left:490.863000px;}
.x56_c00243{left:496.405500px;}
.x9_c00243{left:500.040000px;}
.x1f_c00243{left:503.010000px;}
.x75_c00243{left:508.623000px;}
.x43_c00243{left:526.348500px;}
.x64_c00243{left:534.712500px;}
.x7b_c00243{left:537.303000px;}
.x7e_c00243{left:538.314000px;}
.x50_c00243{left:540.696000px;}
.x44_c00243{left:545.872500px;}
.xa_c00243{left:562.410000px;}
.x65_c00243{left:570.727500px;}
.x76_c00243{left:581.364000px;}
.x77_c00243{left:594.016500px;}
.xb_c00243{left:609.930000px;}
.xc_c00243{left:635.850000px;}
.xd_c00243{left:676.080000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.fs3_c00243{font-size:19.600000pt;}
.fs1_c00243{font-size:46.666667pt;}
.fs0_c00243{font-size:48.533333pt;}
.fs6_c00243{font-size:56.933333pt;}
.fs8_c00243{font-size:57.866667pt;}
.fsb_c00243{font-size:59.733333pt;}
.fs4_c00243{font-size:60.666667pt;}
.fs5_c00243{font-size:61.600000pt;}
.fsa_c00243{font-size:62.533333pt;}
.fsc_c00243{font-size:64.400000pt;}
.fsd_c00243{font-size:65.333333pt;}
.fs7_c00243{font-size:66.266667pt;}
.fs9_c00243{font-size:77.466667pt;}
.fs2_c00243{font-size:108.266667pt;}
.y0_c00243{bottom:0.000000pt;}
.y5f_c00243{bottom:158.524000pt;}
.y5e_c00243{bottom:159.238667pt;}
.y5d_c00243{bottom:159.660000pt;}
.y5c_c00243{bottom:160.254667pt;}
.y5b_c00243{bottom:160.570667pt;}
.y5a_c00243{bottom:161.084000pt;}
.y59_c00243{bottom:161.488000pt;}
.y58_c00243{bottom:162.022667pt;}
.y57_c00243{bottom:162.484000pt;}
.y56_c00243{bottom:180.068000pt;}
.y55_c00243{bottom:198.162667pt;}
.y54_c00243{bottom:198.342667pt;}
.y53_c00243{bottom:199.377333pt;}
.y52_c00243{bottom:200.002667pt;}
.y51_c00243{bottom:200.118667pt;}
.y50_c00243{bottom:200.866667pt;}
.y4f_c00243{bottom:201.416000pt;}
.y4e_c00243{bottom:220.081333pt;}
.y4d_c00243{bottom:240.272000pt;}
.y4c_c00243{bottom:242.412000pt;}
.y4b_c00243{bottom:243.221333pt;}
.y4a_c00243{bottom:243.417333pt;}
.y49_c00243{bottom:243.628000pt;}
.y48_c00243{bottom:243.853333pt;}
.y47_c00243{bottom:262.078667pt;}
.y46_c00243{bottom:281.148000pt;}
.y45_c00243{bottom:281.673333pt;}
.y44_c00243{bottom:282.190667pt;}
.y43_c00243{bottom:282.378667pt;}
.y42_c00243{bottom:283.021333pt;}
.y41_c00243{bottom:283.326667pt;}
.y40_c00243{bottom:284.112000pt;}
.y3f_c00243{bottom:284.645333pt;}
.y3e_c00243{bottom:300.510667pt;}
.y3d_c00243{bottom:300.894667pt;}
.y3c_c00243{bottom:301.232000pt;}
.y3b_c00243{bottom:301.597333pt;}
.y3a_c00243{bottom:302.024000pt;}
.y39_c00243{bottom:302.300000pt;}
.y38_c00243{bottom:302.950667pt;}
.y37_c00243{bottom:303.162667pt;}
.y36_c00243{bottom:303.566667pt;}
.y35_c00243{bottom:303.938667pt;}
.y34_c00243{bottom:304.366667pt;}
.y33_c00243{bottom:304.806667pt;}
.y32_c00243{bottom:322.290667pt;}
.y31_c00243{bottom:322.825333pt;}
.y30_c00243{bottom:323.492000pt;}
.y2f_c00243{bottom:323.702667pt;}
.y2e_c00243{bottom:324.226667pt;}
.y2d_c00243{bottom:324.452000pt;}
.y2c_c00243{bottom:324.818667pt;}
.y2b_c00243{bottom:325.202667pt;}
.y2a_c00243{bottom:344.012000pt;}
.y29_c00243{bottom:363.322667pt;}
.y28_c00243{bottom:363.674667pt;}
.y27_c00243{bottom:364.125333pt;}
.y26_c00243{bottom:364.400000pt;}
.y25_c00243{bottom:364.584000pt;}
.y24_c00243{bottom:364.734667pt;}
.y23_c00243{bottom:365.256000pt;}
.y22_c00243{bottom:365.469333pt;}
.y21_c00243{bottom:366.033333pt;}
.y20_c00243{bottom:366.242667pt;}
.y1f_c00243{bottom:384.569333pt;}
.y1e_c00243{bottom:407.434667pt;}
.y1d_c00243{bottom:407.876000pt;}
.y1c_c00243{bottom:408.350667pt;}
.y1b_c00243{bottom:408.570667pt;}
.y1a_c00243{bottom:408.925333pt;}
.y19_c00243{bottom:409.305333pt;}
.y18_c00243{bottom:409.493333pt;}
.y17_c00243{bottom:410.053333pt;}
.y16_c00243{bottom:410.402667pt;}
.y15_c00243{bottom:429.402667pt;}
.y14_c00243{bottom:454.113333pt;}
.y13_c00243{bottom:473.114667pt;}
.y12_c00243{bottom:473.461333pt;}
.y11_c00243{bottom:474.748000pt;}
.y10_c00243{bottom:475.556000pt;}
.yf_c00243{bottom:478.321333pt;}
.ye_c00243{bottom:495.232000pt;}
.yd_c00243{bottom:516.176000pt;}
.yc_c00243{bottom:535.920000pt;}
.yb_c00243{bottom:568.154667pt;}
.ya_c00243{bottom:605.730667pt;}
.y9_c00243{bottom:668.976000pt;}
.y8_c00243{bottom:689.818667pt;}
.y7_c00243{bottom:709.825333pt;}
.y6_c00243{bottom:730.776000pt;}
.y5_c00243{bottom:751.050667pt;}
.y4_c00243{bottom:774.616000pt;}
.y3_c00243{bottom:788.072000pt;}
.y2_c00243{bottom:846.680000pt;}
.y1_c00243{bottom:847.680000pt;}
.h5_c00243{height:19.600000pt;}
.h3_c00243{height:46.666667pt;}
.h2_c00243{height:48.533333pt;}
.h8_c00243{height:56.933333pt;}
.ha_c00243{height:57.866667pt;}
.hd_c00243{height:59.733333pt;}
.h6_c00243{height:60.666667pt;}
.h7_c00243{height:61.600000pt;}
.hc_c00243{height:62.533333pt;}
.he_c00243{height:64.400000pt;}
.hf_c00243{height:65.333333pt;}
.h9_c00243{height:66.266667pt;}
.hb_c00243{height:77.466667pt;}
.h4_c00243{height:108.266667pt;}
.h0_c00243{height:896.400000pt;}
.h1_c00243{height:896.666667pt;}
.w0_c00243{width:603.066667pt;}
.w1_c00243{width:603.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:138.720000pt;}
.x51_c00243{left:149.168000pt;}
.x38_c00243{left:150.960000pt;}
.x16_c00243{left:152.880000pt;}
.x28_c00243{left:153.840000pt;}
.x3_c00243{left:163.920000pt;}
.x6d_c00243{left:167.640000pt;}
.x36_c00243{left:170.400000pt;}
.x4_c00243{left:182.640000pt;}
.x17_c00243{left:184.560000pt;}
.x5f_c00243{left:185.860000pt;}
.x7c_c00243{left:186.826667pt;}
.x5b_c00243{left:188.041333pt;}
.x2d_c00243{left:189.840000pt;}
.x45_c00243{left:192.001333pt;}
.x66_c00243{left:193.784000pt;}
.x20_c00243{left:196.560000pt;}
.x22_c00243{left:201.360000pt;}
.xe_c00243{left:206.400000pt;}
.x18_c00243{left:208.320000pt;}
.x57_c00243{left:214.800000pt;}
.x46_c00243{left:222.241333pt;}
.x40_c00243{left:224.865333pt;}
.x52_c00243{left:226.448000pt;}
.x23_c00243{left:227.520000pt;}
.x7d_c00243{left:231.420000pt;}
.x39_c00243{left:233.040000pt;}
.x58_c00243{left:236.400000pt;}
.x5_c00243{left:241.200000pt;}
.x2e_c00243{left:242.880000pt;}
.x29_c00243{left:244.320000pt;}
.x53_c00243{left:247.796000pt;}
.x6b_c00243{left:248.884000pt;}
.x4b_c00243{left:251.930667pt;}
.x19_c00243{left:254.400000pt;}
.x24_c00243{left:255.600000pt;}
.x49_c00243{left:258.241333pt;}
.x67_c00243{left:259.260000pt;}
.x3a_c00243{left:261.360000pt;}
.x37_c00243{left:263.280000pt;}
.x3c_c00243{left:264.960000pt;}
.x6e_c00243{left:268.922667pt;}
.xf_c00243{left:270.240000pt;}
.x4c_c00243{left:272.810667pt;}
.x33_c00243{left:274.800000pt;}
.x1a_c00243{left:276.480000pt;}
.x2f_c00243{left:281.520000pt;}
.x10_c00243{left:282.720000pt;}
.x6f_c00243{left:283.682667pt;}
.x11_c00243{left:284.880000pt;}
.x60_c00243{left:286.229333pt;}
.x12_c00243{left:288.240000pt;}
.x78_c00243{left:290.162667pt;}
.x3d_c00243{left:291.360000pt;}
.x6_c00243{left:293.040000pt;}
.x13_c00243{left:294.720000pt;}
.x5c_c00243{left:299.645333pt;}
.x1_c00243{left:300.720000pt;}
.x70_c00243{left:302.402667pt;}
.x61_c00243{left:303.914667pt;}
.x59_c00243{left:305.040000pt;}
.x79_c00243{left:308.162667pt;}
.x25_c00243{left:309.600000pt;}
.x1b_c00243{left:311.520000pt;}
.x4d_c00243{left:314.980000pt;}
.x14_c00243{left:318.000000pt;}
.x5d_c00243{left:320.722667pt;}
.x71_c00243{left:323.522667pt;}
.x2a_c00243{left:324.480000pt;}
.x30_c00243{left:325.440000pt;}
.x1c_c00243{left:327.360000pt;}
.x15_c00243{left:329.520000pt;}
.x4a_c00243{left:330.481333pt;}
.x26_c00243{left:331.680000pt;}
.x54_c00243{left:333.385333pt;}
.x68_c00243{left:338.272000pt;}
.x3b_c00243{left:345.600000pt;}
.x7a_c00243{left:350.402667pt;}
.x34_c00243{left:352.560000pt;}
.x69_c00243{left:353.893333pt;}
.x21_c00243{left:354.960000pt;}
.x62_c00243{left:358.149333pt;}
.x3e_c00243{left:359.760000pt;}
.x55_c00243{left:360.886667pt;}
.x41_c00243{left:363.146667pt;}
.x31_c00243{left:367.920000pt;}
.x1d_c00243{left:372.000000pt;}
.x2b_c00243{left:373.680000pt;}
.x35_c00243{left:376.320000pt;}
.x4e_c00243{left:378.832000pt;}
.x6c_c00243{left:380.404000pt;}
.x3f_c00243{left:381.840000pt;}
.x47_c00243{left:382.801333pt;}
.x27_c00243{left:383.760000pt;}
.x5e_c00243{left:387.445333pt;}
.x2c_c00243{left:388.800000pt;}
.x7_c00243{left:391.200000pt;}
.x1e_c00243{left:392.400000pt;}
.x6a_c00243{left:396.966667pt;}
.x5a_c00243{left:398.400000pt;}
.x42_c00243{left:403.556000pt;}
.x73_c00243{left:405.836000pt;}
.x32_c00243{left:406.800000pt;}
.x74_c00243{left:413.057333pt;}
.x63_c00243{left:416.721333pt;}
.x8_c00243{left:418.560000pt;}
.x48_c00243{left:423.841333pt;}
.x4f_c00243{left:431.593333pt;}
.x72_c00243{left:436.322667pt;}
.x56_c00243{left:441.249333pt;}
.x9_c00243{left:444.480000pt;}
.x1f_c00243{left:447.120000pt;}
.x75_c00243{left:452.109333pt;}
.x43_c00243{left:467.865333pt;}
.x64_c00243{left:475.300000pt;}
.x7b_c00243{left:477.602667pt;}
.x7e_c00243{left:478.501333pt;}
.x50_c00243{left:480.618667pt;}
.x44_c00243{left:485.220000pt;}
.xa_c00243{left:499.920000pt;}
.x65_c00243{left:507.313333pt;}
.x76_c00243{left:516.768000pt;}
.x77_c00243{left:528.014667pt;}
.xb_c00243{left:542.160000pt;}
.xc_c00243{left:565.200000pt;}
.xd_c00243{left:600.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_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_ef4e99a7aa2876b3106553d3.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;}
.ma7_c00244{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);}
.mdd_c00244{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);}
.m42_c00244{transform:matrix(0.102852,-0.000823,0.002000,0.249992,0,0);-ms-transform:matrix(0.102852,-0.000823,0.002000,0.249992,0,0);-webkit-transform:matrix(0.102852,-0.000823,0.002000,0.249992,0,0);}
.mc7_c00244{transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{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);}
.m78_c00244{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);}
.m13_c00244{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.142660,-0.001141,0.002000,0.249992,0,0);-ms-transform:matrix(0.142660,-0.001141,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142660,-0.001141,0.002000,0.249992,0,0);}
.me_c00244{transform:matrix(0.142718,-0.001427,0.002500,0.249988,0,0);-ms-transform:matrix(0.142718,-0.001427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142718,-0.001427,0.002500,0.249988,0,0);}
.mb5_c00244{transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);}
.mc9_c00244{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);}
.mc6_c00244{transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149670,0.000000,0.000000,0.250000,0,0);}
.m6c_c00244{transform:matrix(0.152170,-0.001217,0.002000,0.249992,0,0);-ms-transform:matrix(0.152170,-0.001217,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152170,-0.001217,0.002000,0.249992,0,0);}
.m62_c00244{transform:matrix(0.152595,-0.001221,0.002000,0.249992,0,0);-ms-transform:matrix(0.152595,-0.001221,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152595,-0.001221,0.002000,0.249992,0,0);}
.m3e_c00244{transform:matrix(0.152895,-0.001223,0.002000,0.249992,0,0);-ms-transform:matrix(0.152895,-0.001223,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152895,-0.001223,0.002000,0.249992,0,0);}
.m59_c00244{transform:matrix(0.153070,-0.001225,0.002000,0.249992,0,0);-ms-transform:matrix(0.153070,-0.001225,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153070,-0.001225,0.002000,0.249992,0,0);}
.m67_c00244{transform:matrix(0.155055,-0.001240,0.002000,0.249992,0,0);-ms-transform:matrix(0.155055,-0.001240,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155055,-0.001240,0.002000,0.249992,0,0);}
.md5_c00244{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);}
.m6a_c00244{transform:matrix(0.155755,-0.001246,0.002000,0.249992,0,0);-ms-transform:matrix(0.155755,-0.001246,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155755,-0.001246,0.002000,0.249992,0,0);}
.m20_c00244{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);}
.m75_c00244{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);}
.m18_c00244{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);}
.md1_c00244{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);}
.mcb_c00244{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);}
.m5e_c00244{transform:matrix(0.163115,-0.001305,0.002000,0.249992,0,0);-ms-transform:matrix(0.163115,-0.001305,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163115,-0.001305,0.002000,0.249992,0,0);}
.mad_c00244{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mda_c00244{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);}
.m83_c00244{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);}
.m2d_c00244{transform:matrix(0.163865,-0.001311,0.002000,0.249992,0,0);-ms-transform:matrix(0.163865,-0.001311,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163865,-0.001311,0.002000,0.249992,0,0);}
.m1b_c00244{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);}
.m9_c00244{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);}
.m74_c00244{transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);}
.m80_c00244{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);}
.ma5_c00244{transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.165140,-0.001321,0.002000,0.249992,0,0);-ms-transform:matrix(0.165140,-0.001321,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165140,-0.001321,0.002000,0.249992,0,0);}
.mf_c00244{transform:matrix(0.165202,-0.001652,0.002500,0.249988,0,0);-ms-transform:matrix(0.165202,-0.001652,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165202,-0.001652,0.002500,0.249988,0,0);}
.m99_c00244{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);}
.m88_c00244{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);}
.mcd_c00244{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);}
.m36_c00244{transform:matrix(0.166035,-0.001328,0.002000,0.249992,0,0);-ms-transform:matrix(0.166035,-0.001328,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166035,-0.001328,0.002000,0.249992,0,0);}
.mbb_c00244{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);}
.m2c_c00244{transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);-ms-transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);}
.m55_c00244{transform:matrix(0.166505,-0.001332,0.002000,0.249992,0,0);-ms-transform:matrix(0.166505,-0.001332,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166505,-0.001332,0.002000,0.249992,0,0);}
.mc_c00244{transform:matrix(0.167812,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167812,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167812,-0.001678,0.002500,0.249988,0,0);}
.m77_c00244{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);}
.m40_c00244{transform:matrix(0.169325,-0.001355,0.002000,0.249992,0,0);-ms-transform:matrix(0.169325,-0.001355,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169325,-0.001355,0.002000,0.249992,0,0);}
.m8f_c00244{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);}
.m16_c00244{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);}
.mc2_c00244{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);}
.ma4_c00244{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);}
.mc3_c00244{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);}
.m5f_c00244{transform:matrix(0.171440,-0.001372,0.002000,0.249992,0,0);-ms-transform:matrix(0.171440,-0.001372,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171440,-0.001372,0.002000,0.249992,0,0);}
.m3d_c00244{transform:matrix(0.172049,-0.001376,0.002000,0.249992,0,0);-ms-transform:matrix(0.172049,-0.001376,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172049,-0.001376,0.002000,0.249992,0,0);}
.m79_c00244{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);}
.mc5_c00244{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);}
.mcc_c00244{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);}
.m3f_c00244{transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);-ms-transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);}
.ma9_c00244{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);}
.m15_c00244{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);}
.m1c_c00244{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);}
.m11_c00244{transform:matrix(0.174921,-0.001749,0.002500,0.249988,0,0);-ms-transform:matrix(0.174921,-0.001749,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174921,-0.001749,0.002500,0.249988,0,0);}
.ma0_c00244{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);}
.m9f_c00244{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);}
.m71_c00244{transform:matrix(0.176209,-0.001410,0.002000,0.249992,0,0);-ms-transform:matrix(0.176209,-0.001410,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176209,-0.001410,0.002000,0.249992,0,0);}
.m9b_c00244{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);}
.m7a_c00244{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);}
.ma1_c00244{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);}
.m90_c00244{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);}
.m19_c00244{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);}
.md6_c00244{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);}
.m5_c00244{transform:matrix(0.179182,-0.002150,0.003000,0.249982,0,0);-ms-transform:matrix(0.179182,-0.002150,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179182,-0.002150,0.003000,0.249982,0,0);}
.m1f_c00244{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);}
.m96_c00244{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);}
.m54_c00244{transform:matrix(0.180194,-0.001442,0.002000,0.249992,0,0);-ms-transform:matrix(0.180194,-0.001442,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180194,-0.001442,0.002000,0.249992,0,0);}
.mca_c00244{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);}
.mce_c00244{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);}
.mc4_c00244{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);}
.m41_c00244{transform:matrix(0.181429,-0.001451,0.002000,0.249992,0,0);-ms-transform:matrix(0.181429,-0.001451,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181429,-0.001451,0.002000,0.249992,0,0);}
.m29_c00244{transform:matrix(0.181984,-0.001456,0.002000,0.249992,0,0);-ms-transform:matrix(0.181984,-0.001456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181984,-0.001456,0.002000,0.249992,0,0);}
.m10_c00244{transform:matrix(0.182031,-0.001820,0.002500,0.249988,0,0);-ms-transform:matrix(0.182031,-0.001820,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182031,-0.001820,0.002500,0.249988,0,0);}
.m8d_c00244{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);}
.m8e_c00244{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);}
.m2f_c00244{transform:matrix(0.184244,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184244,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184244,-0.001474,0.002000,0.249992,0,0);}
.m76_c00244{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{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);}
.m70_c00244{transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);-ms-transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);}
.m34_c00244{transform:matrix(0.184669,-0.001477,0.002000,0.249992,0,0);-ms-transform:matrix(0.184669,-0.001477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184669,-0.001477,0.002000,0.249992,0,0);}
.m3b_c00244{transform:matrix(0.184849,-0.001479,0.002000,0.249992,0,0);-ms-transform:matrix(0.184849,-0.001479,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184849,-0.001479,0.002000,0.249992,0,0);}
.m7b_c00244{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);}
.m37_c00244{transform:matrix(0.185694,-0.001486,0.002000,0.249992,0,0);-ms-transform:matrix(0.185694,-0.001486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185694,-0.001486,0.002000,0.249992,0,0);}
.m6f_c00244{transform:matrix(0.186134,-0.001489,0.002000,0.249992,0,0);-ms-transform:matrix(0.186134,-0.001489,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186134,-0.001489,0.002000,0.249992,0,0);}
.m97_c00244{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);}
.md9_c00244{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);}
.m98_c00244{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);}
.m38_c00244{transform:matrix(0.187394,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187394,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187394,-0.001499,0.002000,0.249992,0,0);}
.m17_c00244{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);}
.m58_c00244{transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);-ms-transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);}
.m43_c00244{transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);-ms-transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);}
.mab_c00244{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);}
.md0_c00244{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);}
.m69_c00244{transform:matrix(0.189884,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189884,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189884,-0.001519,0.002000,0.249992,0,0);}
.m81_c00244{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);}
.m32_c00244{transform:matrix(0.190294,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190294,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190294,-0.001522,0.002000,0.249992,0,0);}
.m2e_c00244{transform:matrix(0.191114,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191114,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191114,-0.001529,0.002000,0.249992,0,0);}
.m4_c00244{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);}
.maf_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);}
.m8c_c00244{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);}
.m85_c00244{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);}
.m61_c00244{transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);}
.m4a_c00244{transform:matrix(0.192909,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192909,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192909,-0.001543,0.002000,0.249992,0,0);}
.m6b_c00244{transform:matrix(0.193064,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193064,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193064,-0.001545,0.002000,0.249992,0,0);}
.m92_c00244{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);}
.mb6_c00244{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_c00244{transform:matrix(0.193504,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193504,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193504,-0.001548,0.002000,0.249992,0,0);}
.m73_c00244{transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);-ms-transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);}
.mb1_c00244{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);}
.mcf_c00244{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);}
.mb4_c00244{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);}
.m8_c00244{transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);}
.m22_c00244{transform:matrix(0.193949,-0.001552,0.002000,0.249992,0,0);-ms-transform:matrix(0.193949,-0.001552,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193949,-0.001552,0.002000,0.249992,0,0);}
.m57_c00244{transform:matrix(0.194024,-0.001552,0.002000,0.249992,0,0);-ms-transform:matrix(0.194024,-0.001552,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194024,-0.001552,0.002000,0.249992,0,0);}
.m24_c00244{transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);-ms-transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);}
.m5a_c00244{transform:matrix(0.196094,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196094,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196094,-0.001569,0.002000,0.249992,0,0);}
.m14_c00244{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);}
.m66_c00244{transform:matrix(0.196719,-0.001574,0.002000,0.249992,0,0);-ms-transform:matrix(0.196719,-0.001574,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196719,-0.001574,0.002000,0.249992,0,0);}
.m7c_c00244{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);}
.m3a_c00244{transform:matrix(0.197414,-0.001579,0.002000,0.249992,0,0);-ms-transform:matrix(0.197414,-0.001579,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197414,-0.001579,0.002000,0.249992,0,0);}
.m25_c00244{transform:matrix(0.197804,-0.001582,0.002000,0.249992,0,0);-ms-transform:matrix(0.197804,-0.001582,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197804,-0.001582,0.002000,0.249992,0,0);}
.m72_c00244{transform:matrix(0.197869,-0.001583,0.002000,0.249992,0,0);-ms-transform:matrix(0.197869,-0.001583,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197869,-0.001583,0.002000,0.249992,0,0);}
.m4e_c00244{transform:matrix(0.197894,-0.001583,0.002000,0.249992,0,0);-ms-transform:matrix(0.197894,-0.001583,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197894,-0.001583,0.002000,0.249992,0,0);}
.mbc_c00244{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);}
.md8_c00244{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);}
.m3c_c00244{transform:matrix(0.199049,-0.001592,0.002000,0.249992,0,0);-ms-transform:matrix(0.199049,-0.001592,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199049,-0.001592,0.002000,0.249992,0,0);}
.m8b_c00244{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);}
.m5b_c00244{transform:matrix(0.200209,-0.001602,0.002000,0.249992,0,0);-ms-transform:matrix(0.200209,-0.001602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200209,-0.001602,0.002000,0.249992,0,0);}
.m1e_c00244{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);}
.m23_c00244{transform:matrix(0.201749,-0.001614,0.002000,0.249992,0,0);-ms-transform:matrix(0.201749,-0.001614,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201749,-0.001614,0.002000,0.249992,0,0);}
.m51_c00244{transform:matrix(0.202054,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.202054,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202054,-0.001616,0.002000,0.249992,0,0);}
.m4f_c00244{transform:matrix(0.202209,-0.001618,0.002000,0.249992,0,0);-ms-transform:matrix(0.202209,-0.001618,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202209,-0.001618,0.002000,0.249992,0,0);}
.m12_c00244{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);}
.m35_c00244{transform:matrix(0.202729,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202729,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202729,-0.001622,0.002000,0.249992,0,0);}
.m49_c00244{transform:matrix(0.202969,-0.001624,0.002000,0.249992,0,0);-ms-transform:matrix(0.202969,-0.001624,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202969,-0.001624,0.002000,0.249992,0,0);}
.m9c_c00244{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);}
.m47_c00244{transform:matrix(0.204518,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204518,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204518,-0.001636,0.002000,0.249992,0,0);}
.ma2_c00244{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);}
.m84_c00244{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);}
.m26_c00244{transform:matrix(0.205488,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205488,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205488,-0.001644,0.002000,0.249992,0,0);}
.m28_c00244{transform:matrix(0.205503,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205503,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205503,-0.001644,0.002000,0.249992,0,0);}
.mde_c00244{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);}
.m7_c00244{transform:matrix(0.207245,-0.002487,0.003000,0.249982,0,0);-ms-transform:matrix(0.207245,-0.002487,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207245,-0.002487,0.003000,0.249982,0,0);}
.mba_c00244{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);}
.m2b_c00244{transform:matrix(0.207568,-0.001661,0.002000,0.249992,0,0);-ms-transform:matrix(0.207568,-0.001661,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207568,-0.001661,0.002000,0.249992,0,0);}
.m1d_c00244{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);}
.md7_c00244{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);}
.m60_c00244{transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);}
.m9a_c00244{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);}
.ma_c00244{transform:matrix(0.210645,-0.002528,0.003000,0.249982,0,0);-ms-transform:matrix(0.210645,-0.002528,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210645,-0.002528,0.003000,0.249982,0,0);}
.m89_c00244{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);}
.mae_c00244{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);}
.m63_c00244{transform:matrix(0.211618,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211618,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211618,-0.001693,0.002000,0.249992,0,0);}
.ma8_c00244{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);}
.mbd_c00244{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);}
.mb8_c00244{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);}
.mc0_c00244{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);}
.mdc_c00244{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);}
.m94_c00244{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);}
.md4_c00244{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);}
.mc1_c00244{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);}
.maa_c00244{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);}
.md_c00244{transform:matrix(0.216289,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216289,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216289,-0.002163,0.002500,0.249988,0,0);}
.m33_c00244{transform:matrix(0.216968,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.216968,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216968,-0.001736,0.002000,0.249992,0,0);}
.m68_c00244{transform:matrix(0.218218,-0.001746,0.002000,0.249992,0,0);-ms-transform:matrix(0.218218,-0.001746,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218218,-0.001746,0.002000,0.249992,0,0);}
.mb3_c00244{transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{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);}
.m6_c00244{transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);-ms-transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);}
.mb2_c00244{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);-ms-transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);}
.m4b_c00244{transform:matrix(0.224738,-0.001798,0.002000,0.249992,0,0);-ms-transform:matrix(0.224738,-0.001798,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224738,-0.001798,0.002000,0.249992,0,0);}
.m95_c00244{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);}
.m30_c00244{transform:matrix(0.226378,-0.001811,0.002000,0.249992,0,0);-ms-transform:matrix(0.226378,-0.001811,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226378,-0.001811,0.002000,0.249992,0,0);}
.mb9_c00244{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);}
.md2_c00244{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);}
.m65_c00244{transform:matrix(0.228063,-0.001825,0.002000,0.249992,0,0);-ms-transform:matrix(0.228063,-0.001825,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228063,-0.001825,0.002000,0.249992,0,0);}
.m9d_c00244{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);}
.m93_c00244{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);}
.m86_c00244{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);}
.m50_c00244{transform:matrix(0.229998,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.229998,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229998,-0.001840,0.002000,0.249992,0,0);}
.m5d_c00244{transform:matrix(0.230183,-0.001841,0.002000,0.249992,0,0);-ms-transform:matrix(0.230183,-0.001841,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230183,-0.001841,0.002000,0.249992,0,0);}
.m44_c00244{transform:matrix(0.230228,-0.001842,0.002000,0.249992,0,0);-ms-transform:matrix(0.230228,-0.001842,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230228,-0.001842,0.002000,0.249992,0,0);}
.m1a_c00244{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);}
.mc8_c00244{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);}
.m52_c00244{transform:matrix(0.236807,-0.001894,0.002000,0.249992,0,0);-ms-transform:matrix(0.236807,-0.001894,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236807,-0.001894,0.002000,0.249992,0,0);}
.mb0_c00244{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{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);}
.m6d_c00244{transform:matrix(0.241882,-0.001935,0.002000,0.249992,0,0);-ms-transform:matrix(0.241882,-0.001935,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241882,-0.001935,0.002000,0.249992,0,0);}
.m4d_c00244{transform:matrix(0.243697,-0.001950,0.002000,0.249992,0,0);-ms-transform:matrix(0.243697,-0.001950,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243697,-0.001950,0.002000,0.249992,0,0);}
.mdb_c00244{transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);}
.m82_c00244{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.me1_c00244{transform:matrix(0.250307,-0.003004,0.003000,0.249982,0,0);-ms-transform:matrix(0.250307,-0.003004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250307,-0.003004,0.003000,0.249982,0,0);}
.mb_c00244{transform:matrix(0.251967,-0.002520,0.002500,0.249988,0,0);-ms-transform:matrix(0.251967,-0.002520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251967,-0.002520,0.002500,0.249988,0,0);}
.m45_c00244{transform:matrix(0.254762,-0.002038,0.002000,0.249992,0,0);-ms-transform:matrix(0.254762,-0.002038,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254762,-0.002038,0.002000,0.249992,0,0);}
.me2_c00244{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.261387,-0.002091,0.002000,0.249992,0,0);-ms-transform:matrix(0.261387,-0.002091,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261387,-0.002091,0.002000,0.249992,0,0);}
.mb7_c00244{transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.269466,-0.002156,0.002000,0.249992,0,0);-ms-transform:matrix(0.269466,-0.002156,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269466,-0.002156,0.002000,0.249992,0,0);}
.m4c_c00244{transform:matrix(0.272836,-0.002183,0.002000,0.249992,0,0);-ms-transform:matrix(0.272836,-0.002183,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272836,-0.002183,0.002000,0.249992,0,0);}
.m48_c00244{transform:matrix(0.273336,-0.002187,0.002000,0.249992,0,0);-ms-transform:matrix(0.273336,-0.002187,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273336,-0.002187,0.002000,0.249992,0,0);}
.m7e_c00244{transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00244{transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308775,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.311675,-0.002493,0.002000,0.249992,0,0);-ms-transform:matrix(0.311675,-0.002493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.311675,-0.002493,0.002000,0.249992,0,0);}
.m64_c00244{transform:matrix(0.325040,-0.002600,0.002000,0.249992,0,0);-ms-transform:matrix(0.325040,-0.002600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.325040,-0.002600,0.002000,0.249992,0,0);}
.ma3_c00244{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);}
.mdf_c00244{transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);}
.m5c_c00244{transform:matrix(0.343149,-0.002745,0.002000,0.249992,0,0);-ms-transform:matrix(0.343149,-0.002745,0.002000,0.249992,0,0);-webkit-transform:matrix(0.343149,-0.002745,0.002000,0.249992,0,0);}
.m31_c00244{transform:matrix(0.347354,-0.002779,0.002000,0.249992,0,0);-ms-transform:matrix(0.347354,-0.002779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347354,-0.002779,0.002000,0.249992,0,0);}
.md3_c00244{transform:matrix(0.349480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349480,0.000000,0.000000,0.250000,0,0);}
.mbe_c00244{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);}
.m21_c00244{transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365140,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.378281,-0.003783,0.002500,0.249988,0,0);-ms-transform:matrix(0.378281,-0.003783,0.002500,0.249988,0,0);-webkit-transform:matrix(0.378281,-0.003783,0.002500,0.249988,0,0);}
.me0_c00244{transform:matrix(0.423999,-0.005088,0.003000,0.249982,0,0);-ms-transform:matrix(0.423999,-0.005088,0.003000,0.249982,0,0);-webkit-transform:matrix(0.423999,-0.005088,0.003000,0.249982,0,0);}
.mbf_c00244{transform:matrix(0.427225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427225,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.438355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438355,0.000000,0.000000,0.250000,0,0);}
.me3_c00244{transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.461512,-0.004615,0.002500,0.249988,0,0);-ms-transform:matrix(0.461512,-0.004615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.461512,-0.004615,0.002500,0.249988,0,0);}
.m1_c00244{transform:matrix(0.485281,-0.004853,0.002500,0.249988,0,0);-ms-transform:matrix(0.485281,-0.004853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.485281,-0.004853,0.002500,0.249988,0,0);}
.m0_c00244{transform:matrix(0.714949,-0.007149,0.002500,0.249988,0,0);-ms-transform:matrix(0.714949,-0.007149,0.002500,0.249988,0,0);-webkit-transform:matrix(0.714949,-0.007149,0.002500,0.249988,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;}
.fs14_c00244{font-size:46.200000px;}
.fsd_c00244{font-size:63.000000px;}
.fsf_c00244{font-size:67.200000px;}
.fsa_c00244{font-size:67.202150px;}
.fs12_c00244{font-size:68.250000px;}
.fs9_c00244{font-size:68.252184px;}
.fs3_c00244{font-size:68.253412px;}
.fs5_c00244{font-size:69.300000px;}
.fs7_c00244{font-size:69.302218px;}
.fse_c00244{font-size:70.350000px;}
.fsb_c00244{font-size:70.352251px;}
.fs2_c00244{font-size:70.355065px;}
.fs10_c00244{font-size:71.400000px;}
.fs8_c00244{font-size:71.402285px;}
.fsc_c00244{font-size:72.450000px;}
.fs4_c00244{font-size:73.500000px;}
.fs11_c00244{font-size:74.550000px;}
.fs6_c00244{font-size:90.300000px;}
.fs1_c00244{font-size:90.304515px;}
.fs13_c00244{font-size:197.414212px;}
.fs0_c00244{font-size:234.161707px;}
.y0_c00244{bottom:0.000000px;}
.y7f_c00244{bottom:107.461500px;}
.y81_c00244{bottom:109.084500px;}
.y80_c00244{bottom:110.822334px;}
.y7e_c00244{bottom:153.427500px;}
.y7d_c00244{bottom:176.431500px;}
.y7c_c00244{bottom:198.678000px;}
.y7b_c00244{bottom:222.061500px;}
.y7a_c00244{bottom:245.124000px;}
.y79_c00244{bottom:267.693000px;}
.y78_c00244{bottom:291.097500px;}
.y77_c00244{bottom:314.064000px;}
.y76_c00244{bottom:336.622500px;}
.y75_c00244{bottom:359.809500px;}
.y74_c00244{bottom:382.062000px;}
.y73_c00244{bottom:405.270000px;}
.y72_c00244{bottom:428.503500px;}
.y71_c00244{bottom:450.649500px;}
.y70_c00244{bottom:473.689500px;}
.y6f_c00244{bottom:496.375500px;}
.y6c_c00244{bottom:519.557868px;}
.y6b_c00244{bottom:519.558060px;}
.y6d_c00244{bottom:519.558096px;}
.y6a_c00244{bottom:519.558192px;}
.y69_c00244{bottom:519.558324px;}
.y6e_c00244{bottom:519.558624px;}
.y67_c00244{bottom:519.558876px;}
.y68_c00244{bottom:519.559044px;}
.y65_c00244{bottom:541.770732px;}
.y66_c00244{bottom:541.771380px;}
.y64_c00244{bottom:541.771392px;}
.y60_c00244{bottom:541.771620px;}
.y61_c00244{bottom:541.771668px;}
.y63_c00244{bottom:541.771944px;}
.y5f_c00244{bottom:541.772292px;}
.y62_c00244{bottom:541.772376px;}
.y5b_c00244{bottom:565.015980px;}
.y5c_c00244{bottom:565.016268px;}
.y5a_c00244{bottom:565.016592px;}
.y59_c00244{bottom:565.016616px;}
.y5d_c00244{bottom:565.016688px;}
.y5e_c00244{bottom:565.016904px;}
.y58_c00244{bottom:565.017168px;}
.y57_c00244{bottom:565.017600px;}
.y53_c00244{bottom:587.431032px;}
.y54_c00244{bottom:587.431440px;}
.y56_c00244{bottom:587.431584px;}
.y52_c00244{bottom:587.431644px;}
.y55_c00244{bottom:587.432028px;}
.y51_c00244{bottom:587.432376px;}
.y50_c00244{bottom:587.433048px;}
.y4e_c00244{bottom:587.433072px;}
.y4f_c00244{bottom:587.433480px;}
.y4d_c00244{bottom:609.776364px;}
.y4c_c00244{bottom:609.777084px;}
.y4a_c00244{bottom:609.777720px;}
.y4b_c00244{bottom:609.777756px;}
.y49_c00244{bottom:609.777792px;}
.y47_c00244{bottom:609.777816px;}
.y46_c00244{bottom:609.778296px;}
.y45_c00244{bottom:609.778428px;}
.y48_c00244{bottom:609.778524px;}
.y3c_c00244{bottom:629.907804px;}
.y3d_c00244{bottom:630.069096px;}
.y3e_c00244{bottom:630.357684px;}
.y3f_c00244{bottom:631.117800px;}
.y40_c00244{bottom:631.778760px;}
.y41_c00244{bottom:631.999080px;}
.y42_c00244{bottom:632.347296px;}
.y43_c00244{bottom:632.609148px;}
.y44_c00244{bottom:633.325548px;}
.y35_c00244{bottom:654.519072px;}
.y37_c00244{bottom:654.519096px;}
.y36_c00244{bottom:654.519300px;}
.y34_c00244{bottom:654.519372px;}
.y33_c00244{bottom:654.519444px;}
.y38_c00244{bottom:654.519696px;}
.y39_c00244{bottom:654.520164px;}
.y3a_c00244{bottom:654.520872px;}
.y3b_c00244{bottom:654.521100px;}
.y2f_c00244{bottom:676.919196px;}
.y2e_c00244{bottom:676.919388px;}
.y32_c00244{bottom:676.919460px;}
.y30_c00244{bottom:676.919904px;}
.y2d_c00244{bottom:676.919940px;}
.y31_c00244{bottom:676.919952px;}
.y2c_c00244{bottom:676.920612px;}
.y2a_c00244{bottom:699.191616px;}
.y2b_c00244{bottom:699.192144px;}
.y29_c00244{bottom:699.192288px;}
.y28_c00244{bottom:699.192540px;}
.y26_c00244{bottom:699.192564px;}
.y27_c00244{bottom:699.192852px;}
.y23_c00244{bottom:699.193140px;}
.y25_c00244{bottom:699.193296px;}
.y24_c00244{bottom:699.193788px;}
.y1c_c00244{bottom:720.901500px;}
.y1d_c00244{bottom:721.689960px;}
.y1e_c00244{bottom:722.189004px;}
.y1f_c00244{bottom:722.618796px;}
.y20_c00244{bottom:723.003264px;}
.y21_c00244{bottom:723.398568px;}
.y22_c00244{bottom:723.726756px;}
.y1b_c00244{bottom:745.854000px;}
.y14_c00244{bottom:767.070000px;}
.y15_c00244{bottom:767.410500px;}
.y16_c00244{bottom:767.901000px;}
.y17_c00244{bottom:768.172500px;}
.y18_c00244{bottom:768.661500px;}
.y19_c00244{bottom:769.156500px;}
.y1a_c00244{bottom:769.509000px;}
.y13_c00244{bottom:790.963500px;}
.yc_c00244{bottom:812.161500px;}
.yd_c00244{bottom:812.670780px;}
.ye_c00244{bottom:812.924655px;}
.yf_c00244{bottom:813.551595px;}
.y10_c00244{bottom:813.967350px;}
.y11_c00244{bottom:814.299075px;}
.y12_c00244{bottom:814.653165px;}
.y6_c00244{bottom:835.651500px;}
.y7_c00244{bottom:835.918602px;}
.y8_c00244{bottom:836.824650px;}
.y9_c00244{bottom:837.479202px;}
.ya_c00244{bottom:837.961260px;}
.yb_c00244{bottom:838.299084px;}
.y5_c00244{bottom:882.825390px;}
.y4_c00244{bottom:882.825735px;}
.y3_c00244{bottom:882.826080px;}
.y2_c00244{bottom:882.826740px;}
.y1_c00244{bottom:923.407500px;}
.h16_c00244{height:46.200000px;}
.hf_c00244{height:63.000000px;}
.h11_c00244{height:67.200000px;}
.hc_c00244{height:67.202150px;}
.h14_c00244{height:68.250000px;}
.hb_c00244{height:68.252184px;}
.h5_c00244{height:68.253412px;}
.h7_c00244{height:69.300000px;}
.h9_c00244{height:69.302218px;}
.h10_c00244{height:70.350000px;}
.hd_c00244{height:70.352251px;}
.h4_c00244{height:70.355065px;}
.h12_c00244{height:71.400000px;}
.ha_c00244{height:71.402285px;}
.he_c00244{height:72.450000px;}
.h6_c00244{height:73.500000px;}
.h13_c00244{height:74.550000px;}
.h8_c00244{height:90.300000px;}
.h3_c00244{height:90.304515px;}
.h15_c00244{height:197.414212px;}
.h2_c00244{height:234.161707px;}
.h1_c00244{height:1005.000000px;}
.h0_c00244{height:1005.150000px;}
.w1_c00244{width:713.250000px;}
.w0_c00244{width:713.550000px;}
.x0_c00244{left:0.000000px;}
.x87_c00244{left:60.073500px;}
.x1_c00244{left:67.276500px;}
.x37_c00244{left:98.033292px;}
.x7b_c00244{left:100.440000px;}
.x3d_c00244{left:107.460420px;}
.x83_c00244{left:110.700000px;}
.xc_c00244{left:113.326500px;}
.x21_c00244{left:115.393500px;}
.x1a_c00244{left:117.292500px;}
.x6_c00244{left:118.408500px;}
.x61_c00244{left:119.610000px;}
.x80_c00244{left:122.040000px;}
.x78_c00244{left:133.380000px;}
.x7_c00244{left:140.667000px;}
.x70_c00244{left:142.290000px;}
.x68_c00244{left:143.910000px;}
.x7c_c00244{left:145.800000px;}
.x38_c00244{left:148.080396px;}
.x2d_c00244{left:151.740156px;}
.x1b_c00244{left:155.106000px;}
.x2_c00244{left:157.415280px;}
.x3e_c00244{left:159.572256px;}
.x71_c00244{left:161.190000px;}
.xd_c00244{left:164.254500px;}
.x6b_c00244{left:167.130000px;}
.x5e_c00244{left:169.290000px;}
.x31_c00244{left:176.312424px;}
.x62_c00244{left:177.660000px;}
.x3f_c00244{left:179.013504px;}
.x27_c00244{left:181.170864px;}
.xe_c00244{left:189.642000px;}
.x47_c00244{left:191.972400px;}
.x13_c00244{left:195.210000px;}
.x53_c00244{left:197.100000px;}
.x69_c00244{left:198.450000px;}
.x58_c00244{left:202.770000px;}
.x1c_c00244{left:209.638500px;}
.x74_c00244{left:212.490000px;}
.x22_c00244{left:213.951000px;}
.x8_c00244{left:216.171000px;}
.x4c_c00244{left:217.353972px;}
.x14_c00244{left:220.320000px;}
.x28_c00244{left:223.832100px;}
.x54_c00244{left:224.910000px;}
.x50_c00244{left:226.535256px;}
.x59_c00244{left:228.420000px;}
.x39_c00244{left:232.594224px;}
.x40_c00244{left:237.605748px;}
.x1d_c00244{left:239.842500px;}
.x6e_c00244{left:241.650000px;}
.x6c_c00244{left:244.620000px;}
.x55_c00244{left:247.590000px;}
.x4d_c00244{left:248.944488px;}
.xf_c00244{left:252.336000px;}
.x7d_c00244{left:254.070000px;}
.x20_c00244{left:257.040000px;}
.x81_c00244{left:262.710000px;}
.x63_c00244{left:264.600000px;}
.x15_c00244{left:266.490000px;}
.x5a_c00244{left:267.570000px;}
.x9_c00244{left:270.717000px;}
.x3_c00244{left:274.060950px;}
.x23_c00244{left:276.331500px;}
.x75_c00244{left:280.530000px;}
.x56_c00244{left:284.580000px;}
.x41_c00244{left:287.017416px;}
.x2e_c00244{left:288.905940px;}
.x6a_c00244{left:289.980000px;}
.x79_c00244{left:291.060000px;}
.x51_c00244{left:292.147956px;}
.x10_c00244{left:293.911500px;}
.x45_c00244{left:299.977008px;}
.x82_c00244{left:302.400000px;}
.x3a_c00244{left:306.026136px;}
.x32_c00244{left:308.886408px;}
.xa_c00244{left:310.888500px;}
.x76_c00244{left:314.280000px;}
.x29_c00244{left:318.335148px;}
.x16_c00244{left:319.680000px;}
.x7a_c00244{left:322.650000px;}
.x48_c00244{left:324.276372px;}
.x6d_c00244{left:325.350000px;}
.x11_c00244{left:327.084000px;}
.x24_c00244{left:330.055500px;}
.x33_c00244{left:331.837872px;}
.x5b_c00244{left:332.910000px;}
.x72_c00244{left:335.610000px;}
.x42_c00244{left:336.699096px;}
.x84_c00244{left:337.770000px;}
.xb_c00244{left:339.040500px;}
.x88_c00244{left:340.143000px;}
.x4e_c00244{left:341.827440px;}
.x17_c00244{left:343.710000px;}
.x2f_c00244{left:347.498184px;}
.x1e_c00244{left:349.191000px;}
.x64_c00244{left:353.430000px;}
.x7e_c00244{left:357.750000px;}
.x73_c00244{left:358.830000px;}
.x12_c00244{left:362.493000px;}
.x34_c00244{left:366.398580px;}
.x3b_c00244{left:369.217632px;}
.x52_c00244{left:370.719984px;}
.x4_c00244{left:372.886335px;}
.x25_c00244{left:378.114000px;}
.x18_c00244{left:380.430000px;}
.x2a_c00244{left:382.057728px;}
.x5f_c00244{left:384.480000px;}
.x49_c00244{left:386.378844px;}
.x1f_c00244{left:388.386000px;}
.x85_c00244{left:392.580000px;}
.x5c_c00244{left:395.820000px;}
.x35_c00244{left:397.989096px;}
.x65_c00244{left:399.870000px;}
.x4a_c00244{left:403.119912px;}
.x30_c00244{left:405.008868px;}
.x2b_c00244{left:408.787944px;}
.x7f_c00244{left:410.130000px;}
.x36_c00244{left:422.019132px;}
.x19_c00244{left:426.870000px;}
.x86_c00244{left:428.220000px;}
.x4f_c00244{left:429.581556px;}
.x5d_c00244{left:433.620000px;}
.x66_c00244{left:436.860000px;}
.x57_c00244{left:439.290000px;}
.x6f_c00244{left:440.910000px;}
.x77_c00244{left:449.820000px;}
.x5_c00244{left:456.860235px;}
.x2c_c00244{left:461.169792px;}
.x60_c00244{left:463.320000px;}
.x26_c00244{left:468.550500px;}
.x4b_c00244{left:474.401472px;}
.x43_c00244{left:475.753500px;}
.x3c_c00244{left:477.998268px;}
.x67_c00244{left:482.760000px;}
.x46_c00244{left:484.932840px;}
.x44_c00244{left:491.414508px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.fs14_c00244{font-size:41.066667pt;}
.fsd_c00244{font-size:56.000000pt;}
.fsf_c00244{font-size:59.733333pt;}
.fsa_c00244{font-size:59.735245pt;}
.fs12_c00244{font-size:60.666667pt;}
.fs9_c00244{font-size:60.668608pt;}
.fs3_c00244{font-size:60.669700pt;}
.fs5_c00244{font-size:61.600000pt;}
.fs7_c00244{font-size:61.601971pt;}
.fse_c00244{font-size:62.533333pt;}
.fsb_c00244{font-size:62.535334pt;}
.fs2_c00244{font-size:62.537836pt;}
.fs10_c00244{font-size:63.466667pt;}
.fs8_c00244{font-size:63.468698pt;}
.fsc_c00244{font-size:64.400000pt;}
.fs4_c00244{font-size:65.333333pt;}
.fs11_c00244{font-size:66.266667pt;}
.fs6_c00244{font-size:80.266667pt;}
.fs1_c00244{font-size:80.270680pt;}
.fs13_c00244{font-size:175.479300pt;}
.fs0_c00244{font-size:208.143740pt;}
.y0_c00244{bottom:0.000000pt;}
.y7f_c00244{bottom:95.521333pt;}
.y81_c00244{bottom:96.964000pt;}
.y80_c00244{bottom:98.508741pt;}
.y7e_c00244{bottom:136.380000pt;}
.y7d_c00244{bottom:156.828000pt;}
.y7c_c00244{bottom:176.602667pt;}
.y7b_c00244{bottom:197.388000pt;}
.y7a_c00244{bottom:217.888000pt;}
.y79_c00244{bottom:237.949333pt;}
.y78_c00244{bottom:258.753333pt;}
.y77_c00244{bottom:279.168000pt;}
.y76_c00244{bottom:299.220000pt;}
.y75_c00244{bottom:319.830667pt;}
.y74_c00244{bottom:339.610667pt;}
.y73_c00244{bottom:360.240000pt;}
.y72_c00244{bottom:380.892000pt;}
.y71_c00244{bottom:400.577333pt;}
.y70_c00244{bottom:421.057333pt;}
.y6f_c00244{bottom:441.222667pt;}
.y6c_c00244{bottom:461.829216pt;}
.y6b_c00244{bottom:461.829387pt;}
.y6d_c00244{bottom:461.829419pt;}
.y6a_c00244{bottom:461.829504pt;}
.y69_c00244{bottom:461.829621pt;}
.y6e_c00244{bottom:461.829888pt;}
.y67_c00244{bottom:461.830112pt;}
.y68_c00244{bottom:461.830261pt;}
.y65_c00244{bottom:481.573984pt;}
.y66_c00244{bottom:481.574560pt;}
.y64_c00244{bottom:481.574571pt;}
.y60_c00244{bottom:481.574773pt;}
.y61_c00244{bottom:481.574816pt;}
.y63_c00244{bottom:481.575061pt;}
.y5f_c00244{bottom:481.575371pt;}
.y62_c00244{bottom:481.575445pt;}
.y5b_c00244{bottom:502.236427pt;}
.y5c_c00244{bottom:502.236683pt;}
.y5a_c00244{bottom:502.236971pt;}
.y59_c00244{bottom:502.236992pt;}
.y5d_c00244{bottom:502.237056pt;}
.y5e_c00244{bottom:502.237248pt;}
.y58_c00244{bottom:502.237483pt;}
.y57_c00244{bottom:502.237867pt;}
.y53_c00244{bottom:522.160917pt;}
.y54_c00244{bottom:522.161280pt;}
.y56_c00244{bottom:522.161408pt;}
.y52_c00244{bottom:522.161461pt;}
.y55_c00244{bottom:522.161803pt;}
.y51_c00244{bottom:522.162112pt;}
.y50_c00244{bottom:522.162709pt;}
.y4e_c00244{bottom:522.162731pt;}
.y4f_c00244{bottom:522.163093pt;}
.y4d_c00244{bottom:542.023435pt;}
.y4c_c00244{bottom:542.024075pt;}
.y4a_c00244{bottom:542.024640pt;}
.y4b_c00244{bottom:542.024672pt;}
.y49_c00244{bottom:542.024704pt;}
.y47_c00244{bottom:542.024725pt;}
.y46_c00244{bottom:542.025152pt;}
.y45_c00244{bottom:542.025269pt;}
.y48_c00244{bottom:542.025355pt;}
.y3c_c00244{bottom:559.918048pt;}
.y3d_c00244{bottom:560.061419pt;}
.y3e_c00244{bottom:560.317941pt;}
.y3f_c00244{bottom:560.993600pt;}
.y40_c00244{bottom:561.581120pt;}
.y41_c00244{bottom:561.776960pt;}
.y42_c00244{bottom:562.086485pt;}
.y43_c00244{bottom:562.319243pt;}
.y44_c00244{bottom:562.956043pt;}
.y35_c00244{bottom:581.794731pt;}
.y37_c00244{bottom:581.794752pt;}
.y36_c00244{bottom:581.794933pt;}
.y34_c00244{bottom:581.794997pt;}
.y33_c00244{bottom:581.795061pt;}
.y38_c00244{bottom:581.795285pt;}
.y39_c00244{bottom:581.795701pt;}
.y3a_c00244{bottom:581.796331pt;}
.y3b_c00244{bottom:581.796533pt;}
.y2f_c00244{bottom:601.705952pt;}
.y2e_c00244{bottom:601.706123pt;}
.y32_c00244{bottom:601.706187pt;}
.y30_c00244{bottom:601.706581pt;}
.y2d_c00244{bottom:601.706613pt;}
.y31_c00244{bottom:601.706624pt;}
.y2c_c00244{bottom:601.707211pt;}
.y2a_c00244{bottom:621.503659pt;}
.y2b_c00244{bottom:621.504128pt;}
.y29_c00244{bottom:621.504256pt;}
.y28_c00244{bottom:621.504480pt;}
.y26_c00244{bottom:621.504501pt;}
.y27_c00244{bottom:621.504757pt;}
.y23_c00244{bottom:621.505013pt;}
.y25_c00244{bottom:621.505152pt;}
.y24_c00244{bottom:621.505589pt;}
.y1c_c00244{bottom:640.801333pt;}
.y1d_c00244{bottom:641.502187pt;}
.y1e_c00244{bottom:641.945781pt;}
.y1f_c00244{bottom:642.327819pt;}
.y20_c00244{bottom:642.669568pt;}
.y21_c00244{bottom:643.020949pt;}
.y22_c00244{bottom:643.312672pt;}
.y1b_c00244{bottom:662.981333pt;}
.y14_c00244{bottom:681.840000pt;}
.y15_c00244{bottom:682.142667pt;}
.y16_c00244{bottom:682.578667pt;}
.y17_c00244{bottom:682.820000pt;}
.y18_c00244{bottom:683.254667pt;}
.y19_c00244{bottom:683.694667pt;}
.y1a_c00244{bottom:684.008000pt;}
.y13_c00244{bottom:703.078667pt;}
.yc_c00244{bottom:721.921333pt;}
.yd_c00244{bottom:722.374027pt;}
.ye_c00244{bottom:722.599693pt;}
.yf_c00244{bottom:723.156973pt;}
.y10_c00244{bottom:723.526533pt;}
.y11_c00244{bottom:723.821400pt;}
.y12_c00244{bottom:724.136147pt;}
.y6_c00244{bottom:742.801333pt;}
.y7_c00244{bottom:743.038757pt;}
.y8_c00244{bottom:743.844133pt;}
.y9_c00244{bottom:744.425957pt;}
.ya_c00244{bottom:744.854453pt;}
.yb_c00244{bottom:745.154741pt;}
.y5_c00244{bottom:784.733680pt;}
.y4_c00244{bottom:784.733987pt;}
.y3_c00244{bottom:784.734293pt;}
.y2_c00244{bottom:784.734880pt;}
.y1_c00244{bottom:820.806667pt;}
.h16_c00244{height:41.066667pt;}
.hf_c00244{height:56.000000pt;}
.h11_c00244{height:59.733333pt;}
.hc_c00244{height:59.735245pt;}
.h14_c00244{height:60.666667pt;}
.hb_c00244{height:60.668608pt;}
.h5_c00244{height:60.669700pt;}
.h7_c00244{height:61.600000pt;}
.h9_c00244{height:61.601971pt;}
.h10_c00244{height:62.533333pt;}
.hd_c00244{height:62.535334pt;}
.h4_c00244{height:62.537836pt;}
.h12_c00244{height:63.466667pt;}
.ha_c00244{height:63.468698pt;}
.he_c00244{height:64.400000pt;}
.h6_c00244{height:65.333333pt;}
.h13_c00244{height:66.266667pt;}
.h8_c00244{height:80.266667pt;}
.h3_c00244{height:80.270680pt;}
.h15_c00244{height:175.479300pt;}
.h2_c00244{height:208.143740pt;}
.h1_c00244{height:893.333333pt;}
.h0_c00244{height:893.466667pt;}
.w1_c00244{width:634.000000pt;}
.w0_c00244{width:634.266667pt;}
.x0_c00244{left:0.000000pt;}
.x87_c00244{left:53.398667pt;}
.x1_c00244{left:59.801333pt;}
.x37_c00244{left:87.140704pt;}
.x7b_c00244{left:89.280000pt;}
.x3d_c00244{left:95.520373pt;}
.x83_c00244{left:98.400000pt;}
.xc_c00244{left:100.734667pt;}
.x21_c00244{left:102.572000pt;}
.x1a_c00244{left:104.260000pt;}
.x6_c00244{left:105.252000pt;}
.x61_c00244{left:106.320000pt;}
.x80_c00244{left:108.480000pt;}
.x78_c00244{left:118.560000pt;}
.x7_c00244{left:125.037333pt;}
.x70_c00244{left:126.480000pt;}
.x68_c00244{left:127.920000pt;}
.x7c_c00244{left:129.600000pt;}
.x38_c00244{left:131.627019pt;}
.x2d_c00244{left:134.880139pt;}
.x1b_c00244{left:137.872000pt;}
.x2_c00244{left:139.924693pt;}
.x3e_c00244{left:141.842005pt;}
.x71_c00244{left:143.280000pt;}
.xd_c00244{left:146.004000pt;}
.x6b_c00244{left:148.560000pt;}
.x5e_c00244{left:150.480000pt;}
.x31_c00244{left:156.722155pt;}
.x62_c00244{left:157.920000pt;}
.x3f_c00244{left:159.123115pt;}
.x27_c00244{left:161.040768pt;}
.xe_c00244{left:168.570667pt;}
.x47_c00244{left:170.642133pt;}
.x13_c00244{left:173.520000pt;}
.x53_c00244{left:175.200000pt;}
.x69_c00244{left:176.400000pt;}
.x58_c00244{left:180.240000pt;}
.x1c_c00244{left:186.345333pt;}
.x74_c00244{left:188.880000pt;}
.x22_c00244{left:190.178667pt;}
.x8_c00244{left:192.152000pt;}
.x4c_c00244{left:193.203531pt;}
.x14_c00244{left:195.840000pt;}
.x28_c00244{left:198.961867pt;}
.x54_c00244{left:199.920000pt;}
.x50_c00244{left:201.364672pt;}
.x59_c00244{left:203.040000pt;}
.x39_c00244{left:206.750421pt;}
.x40_c00244{left:211.205109pt;}
.x1d_c00244{left:213.193333pt;}
.x6e_c00244{left:214.800000pt;}
.x6c_c00244{left:217.440000pt;}
.x55_c00244{left:220.080000pt;}
.x4d_c00244{left:221.283989pt;}
.xf_c00244{left:224.298667pt;}
.x7d_c00244{left:225.840000pt;}
.x20_c00244{left:228.480000pt;}
.x81_c00244{left:233.520000pt;}
.x63_c00244{left:235.200000pt;}
.x15_c00244{left:236.880000pt;}
.x5a_c00244{left:237.840000pt;}
.x9_c00244{left:240.637333pt;}
.x3_c00244{left:243.609733pt;}
.x23_c00244{left:245.628000pt;}
.x75_c00244{left:249.360000pt;}
.x56_c00244{left:252.960000pt;}
.x41_c00244{left:255.126592pt;}
.x2e_c00244{left:256.805280pt;}
.x6a_c00244{left:257.760000pt;}
.x79_c00244{left:258.720000pt;}
.x51_c00244{left:259.687072pt;}
.x10_c00244{left:261.254667pt;}
.x45_c00244{left:266.646229pt;}
.x82_c00244{left:268.800000pt;}
.x3a_c00244{left:272.023232pt;}
.x32_c00244{left:274.565696pt;}
.xa_c00244{left:276.345333pt;}
.x76_c00244{left:279.360000pt;}
.x29_c00244{left:282.964576pt;}
.x16_c00244{left:284.160000pt;}
.x7a_c00244{left:286.800000pt;}
.x48_c00244{left:288.245664pt;}
.x6d_c00244{left:289.200000pt;}
.x11_c00244{left:290.741333pt;}
.x24_c00244{left:293.382667pt;}
.x33_c00244{left:294.966997pt;}
.x5b_c00244{left:295.920000pt;}
.x72_c00244{left:298.320000pt;}
.x42_c00244{left:299.288085pt;}
.x84_c00244{left:300.240000pt;}
.xb_c00244{left:301.369333pt;}
.x88_c00244{left:302.349333pt;}
.x4e_c00244{left:303.846613pt;}
.x17_c00244{left:305.520000pt;}
.x2f_c00244{left:308.887275pt;}
.x1e_c00244{left:310.392000pt;}
.x64_c00244{left:314.160000pt;}
.x7e_c00244{left:318.000000pt;}
.x73_c00244{left:318.960000pt;}
.x12_c00244{left:322.216000pt;}
.x34_c00244{left:325.687627pt;}
.x3b_c00244{left:328.193451pt;}
.x52_c00244{left:329.528875pt;}
.x4_c00244{left:331.454520pt;}
.x25_c00244{left:336.101333pt;}
.x18_c00244{left:338.160000pt;}
.x2a_c00244{left:339.606869pt;}
.x5f_c00244{left:341.760000pt;}
.x49_c00244{left:343.447861pt;}
.x1f_c00244{left:345.232000pt;}
.x85_c00244{left:348.960000pt;}
.x5c_c00244{left:351.840000pt;}
.x35_c00244{left:353.768085pt;}
.x65_c00244{left:355.440000pt;}
.x4a_c00244{left:358.328811pt;}
.x30_c00244{left:360.007883pt;}
.x2b_c00244{left:363.367061pt;}
.x7f_c00244{left:364.560000pt;}
.x36_c00244{left:375.128117pt;}
.x19_c00244{left:379.440000pt;}
.x86_c00244{left:380.640000pt;}
.x4f_c00244{left:381.850272pt;}
.x5d_c00244{left:385.440000pt;}
.x66_c00244{left:388.320000pt;}
.x57_c00244{left:390.480000pt;}
.x6f_c00244{left:391.920000pt;}
.x77_c00244{left:399.840000pt;}
.x5_c00244{left:406.097987pt;}
.x2c_c00244{left:409.928704pt;}
.x60_c00244{left:411.840000pt;}
.x26_c00244{left:416.489333pt;}
.x4b_c00244{left:421.690197pt;}
.x43_c00244{left:422.892000pt;}
.x3c_c00244{left:424.887349pt;}
.x67_c00244{left:429.120000pt;}
.x46_c00244{left:431.051413pt;}
.x44_c00244{left:436.812896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mc4_c00245{transform:matrix(0.015147,0.000318,-0.005249,0.249945,0,0);-ms-transform:matrix(0.015147,0.000318,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.015147,0.000318,-0.005249,0.249945,0,0);}
.ma6_c00245{transform:matrix(0.086051,0.001807,-0.005249,0.249945,0,0);-ms-transform:matrix(0.086051,0.001807,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.086051,0.001807,-0.005249,0.249945,0,0);}
.m41_c00245{transform:matrix(0.087293,0.002182,-0.006248,0.249922,0,0);-ms-transform:matrix(0.087293,0.002182,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.087293,0.002182,-0.006248,0.249922,0,0);}
.m78_c00245{transform:matrix(0.088860,0.002488,-0.006997,0.249902,0,0);-ms-transform:matrix(0.088860,0.002488,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.088860,0.002488,-0.006997,0.249902,0,0);}
.m40_c00245{transform:matrix(0.093141,0.002329,-0.006248,0.249922,0,0);-ms-transform:matrix(0.093141,0.002329,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.093141,0.002329,-0.006248,0.249922,0,0);}
.mb2_c00245{transform:matrix(0.108036,0.002269,-0.005249,0.249945,0,0);-ms-transform:matrix(0.108036,0.002269,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.108036,0.002269,-0.005249,0.249945,0,0);}
.me1_c00245{transform:matrix(0.112985,0.002373,-0.005249,0.249945,0,0);-ms-transform:matrix(0.112985,0.002373,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.112985,0.002373,-0.005249,0.249945,0,0);}
.mcf_c00245{transform:matrix(0.136160,0.002859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.136160,0.002859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.136160,0.002859,-0.005249,0.249945,0,0);}
.m85_c00245{transform:matrix(0.142346,0.003132,-0.005499,0.249940,0,0);-ms-transform:matrix(0.142346,0.003132,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.142346,0.003132,-0.005499,0.249940,0,0);}
.m61_c00245{transform:matrix(0.143812,0.003308,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143812,0.003308,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143812,0.003308,-0.005748,0.249934,0,0);}
.m60_c00245{transform:matrix(0.144727,0.003329,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144727,0.003329,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144727,0.003329,-0.005748,0.249934,0,0);}
.m65_c00245{transform:matrix(0.146556,0.003371,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146556,0.003371,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146556,0.003371,-0.005748,0.249934,0,0);}
.m101_c00245{transform:matrix(0.147159,0.002502,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147159,0.002502,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147159,0.002502,-0.004249,0.249964,0,0);}
.m35_c00245{transform:matrix(0.149693,0.003742,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149693,0.003742,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149693,0.003742,-0.006248,0.249922,0,0);}
.m5d_c00245{transform:matrix(0.149855,0.003447,-0.005748,0.249934,0,0);-ms-transform:matrix(0.149855,0.003447,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.149855,0.003447,-0.005748,0.249934,0,0);}
.m3e_c00245{transform:matrix(0.154552,0.003864,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154552,0.003864,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154552,0.003864,-0.006248,0.249922,0,0);}
.m25_c00245{transform:matrix(0.155712,0.002959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155712,0.002959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155712,0.002959,-0.004749,0.249955,0,0);}
.m4a_c00245{transform:matrix(0.158645,0.003966,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158645,0.003966,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158645,0.003966,-0.006248,0.249922,0,0);}
.m84_c00245{transform:matrix(0.158862,0.003495,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158862,0.003495,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158862,0.003495,-0.005499,0.249940,0,0);}
.m92_c00245{transform:matrix(0.159126,0.003501,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159126,0.003501,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159126,0.003501,-0.005499,0.249940,0,0);}
.m6c_c00245{transform:matrix(0.159658,0.003672,-0.005748,0.249934,0,0);-ms-transform:matrix(0.159658,0.003672,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.159658,0.003672,-0.005748,0.249934,0,0);}
.m36_c00245{transform:matrix(0.159720,0.003993,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159720,0.003993,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159720,0.003993,-0.006248,0.249922,0,0);}
.md0_c00245{transform:matrix(0.161414,0.003390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161414,0.003390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161414,0.003390,-0.005249,0.249945,0,0);}
.m89_c00245{transform:matrix(0.161621,0.003556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161621,0.003556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161621,0.003556,-0.005499,0.249940,0,0);}
.m5f_c00245{transform:matrix(0.161622,0.003717,-0.005748,0.249934,0,0);-ms-transform:matrix(0.161622,0.003717,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.161622,0.003717,-0.005748,0.249934,0,0);}
.mc7_c00245{transform:matrix(0.163119,0.003425,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163119,0.003425,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163119,0.003425,-0.005249,0.249945,0,0);}
.m15_c00245{transform:matrix(0.163535,0.003107,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163535,0.003107,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163535,0.003107,-0.004749,0.249955,0,0);}
.m8a_c00245{transform:matrix(0.163545,0.003598,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163545,0.003598,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163545,0.003598,-0.005499,0.249940,0,0);}
.m102_c00245{transform:matrix(0.164981,0.002805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164981,0.002805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164981,0.002805,-0.004249,0.249964,0,0);}
.ma9_c00245{transform:matrix(0.165174,0.003469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165174,0.003469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165174,0.003469,-0.005249,0.249945,0,0);}
.m52_c00245{transform:matrix(0.166498,0.004162,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166498,0.004162,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166498,0.004162,-0.006248,0.249922,0,0);}
.m8f_c00245{transform:matrix(0.166825,0.003670,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166825,0.003670,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166825,0.003670,-0.005499,0.249940,0,0);}
.m21_c00245{transform:matrix(0.167355,0.003180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167355,0.003180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167355,0.003180,-0.004749,0.249955,0,0);}
.m1d_c00245{transform:matrix(0.167820,0.003189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167820,0.003189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167820,0.003189,-0.004749,0.249955,0,0);}
.mc_c00245{transform:matrix(0.168475,0.003201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168475,0.003201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168475,0.003201,-0.004749,0.249955,0,0);}
.mb6_c00245{transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169098,0.003551,-0.005249,0.249945,0,0);}
.m9_c00245{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);}
.m100_c00245{transform:matrix(0.169855,0.002888,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169855,0.002888,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169855,0.002888,-0.004249,0.249964,0,0);}
.m93_c00245{transform:matrix(0.169974,0.003739,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169974,0.003739,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169974,0.003739,-0.005499,0.249940,0,0);}
.m31_c00245{transform:matrix(0.170687,0.004267,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170687,0.004267,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170687,0.004267,-0.006248,0.249922,0,0);}
.mff_c00245{transform:matrix(0.170745,0.002903,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170745,0.002903,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170745,0.002903,-0.004249,0.249964,0,0);}
.m1e_c00245{transform:matrix(0.170784,0.003245,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170784,0.003245,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170784,0.003245,-0.004749,0.249955,0,0);}
.mf9_c00245{transform:matrix(0.170865,0.002905,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170865,0.002905,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170865,0.002905,-0.004249,0.249964,0,0);}
.mca_c00245{transform:matrix(0.172147,0.003615,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172147,0.003615,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172147,0.003615,-0.005249,0.249945,0,0);}
.m70_c00245{transform:matrix(0.172209,0.003961,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172209,0.003961,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172209,0.003961,-0.005748,0.249934,0,0);}
.mc8_c00245{transform:matrix(0.172242,0.003617,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172242,0.003617,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172242,0.003617,-0.005249,0.249945,0,0);}
.mbc_c00245{transform:matrix(0.172552,0.003624,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172552,0.003624,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172552,0.003624,-0.005249,0.249945,0,0);}
.mce_c00245{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);}
.m69_c00245{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);}
.mb8_c00245{transform:matrix(0.173112,0.003635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173112,0.003635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173112,0.003635,-0.005249,0.249945,0,0);}
.me0_c00245{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);}
.m54_c00245{transform:matrix(0.173756,0.004344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173756,0.004344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173756,0.004344,-0.006248,0.249922,0,0);}
.maa_c00245{transform:matrix(0.174721,0.003669,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174721,0.003669,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174721,0.003669,-0.005249,0.249945,0,0);}
.md7_c00245{transform:matrix(0.174906,0.003673,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174906,0.003673,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174906,0.003673,-0.005249,0.249945,0,0);}
.m3d_c00245{transform:matrix(0.175500,0.004388,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175500,0.004388,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175500,0.004388,-0.006248,0.249922,0,0);}
.m10_c00245{transform:matrix(0.175563,0.003336,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175563,0.003336,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175563,0.003336,-0.004749,0.249955,0,0);}
.mf0_c00245{transform:matrix(0.175620,0.002986,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175620,0.002986,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175620,0.002986,-0.004249,0.249964,0,0);}
.mb0_c00245{transform:matrix(0.175621,0.003688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175621,0.003688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175621,0.003688,-0.005249,0.249945,0,0);}
.m86_c00245{transform:matrix(0.175807,0.003868,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175807,0.003868,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175807,0.003868,-0.005499,0.249940,0,0);}
.mf8_c00245{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);}
.m43_c00245{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);}
.m38_c00245{transform:matrix(0.176740,0.004418,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176740,0.004418,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176740,0.004418,-0.006248,0.249922,0,0);}
.mf5_c00245{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);}
.m33_c00245{transform:matrix(0.177030,0.004426,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177030,0.004426,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177030,0.004426,-0.006248,0.249922,0,0);}
.mfc_c00245{transform:matrix(0.177684,0.003021,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177684,0.003021,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177684,0.003021,-0.004249,0.249964,0,0);}
.mbb_c00245{transform:matrix(0.178076,0.003740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178076,0.003740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178076,0.003740,-0.005249,0.249945,0,0);}
.mab_c00245{transform:matrix(0.178191,0.003742,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178191,0.003742,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178191,0.003742,-0.005249,0.249945,0,0);}
.mfb_c00245{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);}
.m9b_c00245{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);}
.mc2_c00245{transform:matrix(0.179280,0.003765,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179280,0.003765,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179280,0.003765,-0.005249,0.249945,0,0);}
.m7_c00245{transform:matrix(0.179738,0.003415,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179738,0.003415,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179738,0.003415,-0.004749,0.249955,0,0);}
.m32_c00245{transform:matrix(0.180114,0.004503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180114,0.004503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180114,0.004503,-0.006248,0.249922,0,0);}
.m8c_c00245{transform:matrix(0.180466,0.003970,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180466,0.003970,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180466,0.003970,-0.005499,0.249940,0,0);}
.ma3_c00245{transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);}
.m5a_c00245{transform:matrix(0.181103,0.004528,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181103,0.004528,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181103,0.004528,-0.006248,0.249922,0,0);}
.m9a_c00245{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);}
.mf6_c00245{transform:matrix(0.182239,0.003098,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182239,0.003098,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182239,0.003098,-0.004249,0.249964,0,0);}
.m51_c00245{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);}
.m2_c00245{transform:matrix(0.183112,0.003479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183112,0.003479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183112,0.003479,-0.004749,0.249955,0,0);}
.m9d_c00245{transform:matrix(0.183116,0.004029,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183116,0.004029,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183116,0.004029,-0.005499,0.249940,0,0);}
.md3_c00245{transform:matrix(0.183315,0.003850,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183315,0.003850,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183315,0.003850,-0.005249,0.249945,0,0);}
.md4_c00245{transform:matrix(0.183704,0.003858,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183704,0.003858,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183704,0.003858,-0.005249,0.249945,0,0);}
.m98_c00245{transform:matrix(0.183945,0.004047,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183945,0.004047,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183945,0.004047,-0.005499,0.249940,0,0);}
.m5_c00245{transform:matrix(0.184397,0.003504,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184397,0.003504,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184397,0.003504,-0.004749,0.249955,0,0);}
.m5e_c00245{transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);}
.mcb_c00245{transform:matrix(0.184619,0.003877,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184619,0.003877,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184619,0.003877,-0.005249,0.249945,0,0);}
.m62_c00245{transform:matrix(0.184801,0.004250,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184801,0.004250,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184801,0.004250,-0.005748,0.249934,0,0);}
.mb1_c00245{transform:matrix(0.184979,0.003885,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184979,0.003885,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184979,0.003885,-0.005249,0.249945,0,0);}
.m96_c00245{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);}
.m3c_c00245{transform:matrix(0.185467,0.004637,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185467,0.004637,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185467,0.004637,-0.006248,0.249922,0,0);}
.mdb_c00245{transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);}
.m34_c00245{transform:matrix(0.186862,0.004672,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186862,0.004672,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186862,0.004672,-0.006248,0.249922,0,0);}
.mf7_c00245{transform:matrix(0.186863,0.003177,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186863,0.003177,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186863,0.003177,-0.004249,0.249964,0,0);}
.m9c_c00245{transform:matrix(0.187615,0.004128,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187615,0.004128,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187615,0.004128,-0.005499,0.249940,0,0);}
.m18_c00245{transform:matrix(0.187786,0.003568,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187786,0.003568,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187786,0.003568,-0.004749,0.249955,0,0);}
.mb5_c00245{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);}
.m3b_c00245{transform:matrix(0.188196,0.004705,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188196,0.004705,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188196,0.004705,-0.006248,0.249922,0,0);}
.mbe_c00245{transform:matrix(0.188433,0.003957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188433,0.003957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188433,0.003957,-0.005249,0.249945,0,0);}
.m74_c00245{transform:matrix(0.188501,0.005278,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188501,0.005278,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188501,0.005278,-0.006997,0.249902,0,0);}
.m55_c00245{transform:matrix(0.188631,0.004716,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188631,0.004716,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188631,0.004716,-0.006248,0.249922,0,0);}
.mad_c00245{transform:matrix(0.189188,0.003973,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189188,0.003973,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189188,0.003973,-0.005249,0.249945,0,0);}
.m1_c00245{transform:matrix(0.189266,0.003596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189266,0.003596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189266,0.003596,-0.004749,0.249955,0,0);}
.m59_c00245{transform:matrix(0.189366,0.004734,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189366,0.004734,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189366,0.004734,-0.006248,0.249922,0,0);}
.m88_c00245{transform:matrix(0.189554,0.004170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189554,0.004170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189554,0.004170,-0.005499,0.249940,0,0);}
.mfa_c00245{transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);}
.m16_c00245{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);}
.m5c_c00245{transform:matrix(0.190485,0.004381,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190485,0.004381,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190485,0.004381,-0.005748,0.249934,0,0);}
.m22_c00245{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);}
.m39_c00245{transform:matrix(0.190840,0.004771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190840,0.004771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190840,0.004771,-0.006248,0.249922,0,0);}
.m66_c00245{transform:matrix(0.191569,0.004406,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191569,0.004406,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191569,0.004406,-0.005748,0.249934,0,0);}
.m30_c00245{transform:matrix(0.192385,0.004810,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192385,0.004810,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192385,0.004810,-0.006248,0.249922,0,0);}
.m6a_c00245{transform:matrix(0.192504,0.004428,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192504,0.004428,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192504,0.004428,-0.005748,0.249934,0,0);}
.mae_c00245{transform:matrix(0.193132,0.004056,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193132,0.004056,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193132,0.004056,-0.005249,0.249945,0,0);}
.m23_c00245{transform:matrix(0.193240,0.003672,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193240,0.003672,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193240,0.003672,-0.004749,0.249955,0,0);}
.maf_c00245{transform:matrix(0.193352,0.004060,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193352,0.004060,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193352,0.004060,-0.005249,0.249945,0,0);}
.m45_c00245{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);}
.m5b_c00245{transform:matrix(0.193440,0.004836,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193440,0.004836,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193440,0.004836,-0.006248,0.249922,0,0);}
.ma5_c00245{transform:matrix(0.193487,0.004063,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193487,0.004063,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193487,0.004063,-0.005249,0.249945,0,0);}
.ma1_c00245{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);}
.m64_c00245{transform:matrix(0.193819,0.004458,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193819,0.004458,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193819,0.004458,-0.005748,0.249934,0,0);}
.me7_c00245{transform:matrix(0.194162,0.003301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194162,0.003301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194162,0.003301,-0.004249,0.249964,0,0);}
.m58_c00245{transform:matrix(0.194229,0.004856,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194229,0.004856,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194229,0.004856,-0.006248,0.249922,0,0);}
.m95_c00245{transform:matrix(0.194623,0.004282,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194623,0.004282,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194623,0.004282,-0.005499,0.249940,0,0);}
.m4e_c00245{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);}
.mef_c00245{transform:matrix(0.194872,0.003313,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194872,0.003313,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194872,0.003313,-0.004249,0.249964,0,0);}
.md9_c00245{transform:matrix(0.194957,0.004094,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194957,0.004094,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194957,0.004094,-0.005249,0.249945,0,0);}
.m8b_c00245{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);}
.m1b_c00245{transform:matrix(0.195750,0.003719,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195750,0.003719,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195750,0.003719,-0.004749,0.249955,0,0);}
.mf3_c00245{transform:matrix(0.196332,0.003338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196332,0.003338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196332,0.003338,-0.004249,0.249964,0,0);}
.m2f_c00245{transform:matrix(0.196359,0.004909,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196359,0.004909,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196359,0.004909,-0.006248,0.249922,0,0);}
.m1f_c00245{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);}
.md5_c00245{transform:matrix(0.196707,0.004131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196707,0.004131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196707,0.004131,-0.005249,0.249945,0,0);}
.m57_c00245{transform:matrix(0.197423,0.004936,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197423,0.004936,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197423,0.004936,-0.006248,0.249922,0,0);}
.md6_c00245{transform:matrix(0.197556,0.004149,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197556,0.004149,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197556,0.004149,-0.005249,0.249945,0,0);}
.ma4_c00245{transform:matrix(0.198001,0.004158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198001,0.004158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198001,0.004158,-0.005249,0.249945,0,0);}
.m46_c00245{transform:matrix(0.198003,0.004950,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198003,0.004950,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198003,0.004950,-0.006248,0.249922,0,0);}
.mda_c00245{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);}
.m56_c00245{transform:matrix(0.198673,0.004967,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198673,0.004967,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198673,0.004967,-0.006248,0.249922,0,0);}
.m44_c00245{transform:matrix(0.198813,0.004970,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198813,0.004970,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198813,0.004970,-0.006248,0.249922,0,0);}
.mb_c00245{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);}
.mf1_c00245{transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199466,0.003391,-0.004249,0.249964,0,0);}
.me4_c00245{transform:matrix(0.199476,0.003391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199476,0.003391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199476,0.003391,-0.004249,0.249964,0,0);}
.m91_c00245{transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);}
.mbd_c00245{transform:matrix(0.199631,0.004192,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199631,0.004192,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199631,0.004192,-0.005249,0.249945,0,0);}
.m13_c00245{transform:matrix(0.199984,0.003800,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199984,0.003800,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199984,0.003800,-0.004749,0.249955,0,0);}
.mde_c00245{transform:matrix(0.200481,0.004210,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200481,0.004210,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200481,0.004210,-0.005249,0.249945,0,0);}
.mc3_c00245{transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);}
.me5_c00245{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);}
.m37_c00245{transform:matrix(0.201132,0.005028,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201132,0.005028,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201132,0.005028,-0.006248,0.249922,0,0);}
.md1_c00245{transform:matrix(0.201401,0.004229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201401,0.004229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201401,0.004229,-0.005249,0.249945,0,0);}
.m90_c00245{transform:matrix(0.201501,0.004433,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201501,0.004433,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201501,0.004433,-0.005499,0.249940,0,0);}
.mb4_c00245{transform:matrix(0.201905,0.004240,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201905,0.004240,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201905,0.004240,-0.005249,0.249945,0,0);}
.ma7_c00245{transform:matrix(0.202065,0.004243,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202065,0.004243,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202065,0.004243,-0.005249,0.249945,0,0);}
.m77_c00245{transform:matrix(0.202076,0.005658,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202076,0.005658,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202076,0.005658,-0.006997,0.249902,0,0);}
.ma8_c00245{transform:matrix(0.202280,0.004248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202280,0.004248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202280,0.004248,-0.005249,0.249945,0,0);}
.mdc_c00245{transform:matrix(0.202415,0.004251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202415,0.004251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202415,0.004251,-0.005249,0.249945,0,0);}
.m7b_c00245{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);}
.m94_c00245{transform:matrix(0.202816,0.004462,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202816,0.004462,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202816,0.004462,-0.005499,0.249940,0,0);}
.m3f_c00245{transform:matrix(0.202962,0.005074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202962,0.005074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202962,0.005074,-0.006248,0.249922,0,0);}
.m9f_c00245{transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);}
.ma0_c00245{transform:matrix(0.203100,0.004265,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203100,0.004265,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203100,0.004265,-0.005249,0.249945,0,0);}
.m50_c00245{transform:matrix(0.203511,0.005088,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203511,0.005088,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203511,0.005088,-0.006248,0.249922,0,0);}
.mdf_c00245{transform:matrix(0.204105,0.004286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204105,0.004286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204105,0.004286,-0.005249,0.249945,0,0);}
.m3_c00245{transform:matrix(0.204123,0.003878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204123,0.003878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204123,0.003878,-0.004749,0.249955,0,0);}
.m67_c00245{transform:matrix(0.204261,0.004698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204261,0.004698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204261,0.004698,-0.005748,0.249934,0,0);}
.me6_c00245{transform:matrix(0.204290,0.003473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204290,0.003473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204290,0.003473,-0.004249,0.249964,0,0);}
.md8_c00245{transform:matrix(0.204360,0.004292,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204360,0.004292,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204360,0.004292,-0.005249,0.249945,0,0);}
.m83_c00245{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);}
.m3a_c00245{transform:matrix(0.205481,0.005137,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205481,0.005137,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205481,0.005137,-0.006248,0.249922,0,0);}
.m48_c00245{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);}
.ma_c00245{transform:matrix(0.207643,0.003945,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207643,0.003945,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207643,0.003945,-0.004749,0.249955,0,0);}
.m53_c00245{transform:matrix(0.208035,0.005201,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208035,0.005201,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208035,0.005201,-0.006248,0.249922,0,0);}
.m81_c00245{transform:matrix(0.208088,0.005826,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208088,0.005826,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208088,0.005826,-0.006997,0.249902,0,0);}
.mf4_c00245{transform:matrix(0.208145,0.003538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208145,0.003538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208145,0.003538,-0.004249,0.249964,0,0);}
.m4c_c00245{transform:matrix(0.208725,0.005218,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208725,0.005218,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208725,0.005218,-0.006248,0.249922,0,0);}
.m28_c00245{transform:matrix(0.209020,0.005225,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209020,0.005225,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209020,0.005225,-0.006248,0.249922,0,0);}
.m20_c00245{transform:matrix(0.209167,0.003974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209167,0.003974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209167,0.003974,-0.004749,0.249955,0,0);}
.m17_c00245{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);}
.mc0_c00245{transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);}
.mf2_c00245{transform:matrix(0.210700,0.003582,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210700,0.003582,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210700,0.003582,-0.004249,0.249964,0,0);}
.mea_c00245{transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);}
.mdd_c00245{transform:matrix(0.211293,0.004437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211293,0.004437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211293,0.004437,-0.005249,0.249945,0,0);}
.m4b_c00245{transform:matrix(0.211524,0.005288,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211524,0.005288,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211524,0.005288,-0.006248,0.249922,0,0);}
.m7d_c00245{transform:matrix(0.211712,0.005928,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211712,0.005928,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211712,0.005928,-0.006997,0.249902,0,0);}
.m68_c00245{transform:matrix(0.211739,0.004870,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211739,0.004870,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211739,0.004870,-0.005748,0.249934,0,0);}
.m7f_c00245{transform:matrix(0.212432,0.005948,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212432,0.005948,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212432,0.005948,-0.006997,0.249902,0,0);}
.m63_c00245{transform:matrix(0.212639,0.004891,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212639,0.004891,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212639,0.004891,-0.005748,0.249934,0,0);}
.md_c00245{transform:matrix(0.214101,0.004068,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214101,0.004068,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214101,0.004068,-0.004749,0.249955,0,0);}
.m0_c00245{transform:matrix(0.214616,0.004078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214616,0.004078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214616,0.004078,-0.004749,0.249955,0,0);}
.mc1_c00245{transform:matrix(0.215393,0.004523,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215393,0.004523,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215393,0.004523,-0.005249,0.249945,0,0);}
.m42_c00245{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);}
.m2c_c00245{transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);}
.m2b_c00245{transform:matrix(0.215698,0.005392,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215698,0.005392,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215698,0.005392,-0.006248,0.249922,0,0);}
.m6_c00245{transform:matrix(0.216036,0.004105,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216036,0.004105,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216036,0.004105,-0.004749,0.249955,0,0);}
.m24_c00245{transform:matrix(0.216271,0.004109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216271,0.004109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216271,0.004109,-0.004749,0.249955,0,0);}
.m19_c00245{transform:matrix(0.216371,0.004111,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216371,0.004111,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216371,0.004111,-0.004749,0.249955,0,0);}
.m8d_c00245{transform:matrix(0.216553,0.004764,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216553,0.004764,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216553,0.004764,-0.005499,0.249940,0,0);}
.mee_c00245{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);}
.m8e_c00245{transform:matrix(0.217087,0.004776,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217087,0.004776,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217087,0.004776,-0.005499,0.249940,0,0);}
.mcc_c00245{transform:matrix(0.217242,0.004562,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217242,0.004562,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217242,0.004562,-0.005249,0.249945,0,0);}
.mac_c00245{transform:matrix(0.217567,0.004569,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217567,0.004569,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217567,0.004569,-0.005249,0.249945,0,0);}
.m7a_c00245{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);}
.m97_c00245{transform:matrix(0.217917,0.004794,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217917,0.004794,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217917,0.004794,-0.005499,0.249940,0,0);}
.mec_c00245{transform:matrix(0.219408,0.003730,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219408,0.003730,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219408,0.003730,-0.004249,0.249964,0,0);}
.m7e_c00245{transform:matrix(0.219469,0.006145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219469,0.006145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219469,0.006145,-0.006997,0.249902,0,0);}
.m104_c00245{transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);}
.med_c00245{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);}
.md2_c00245{transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);}
.mb7_c00245{transform:matrix(0.222461,0.004672,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222461,0.004672,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222461,0.004672,-0.005249,0.249945,0,0);}
.m103_c00245{transform:matrix(0.224168,0.003811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224168,0.003811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224168,0.003811,-0.004249,0.249964,0,0);}
.m1a_c00245{transform:matrix(0.225019,0.004275,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225019,0.004275,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225019,0.004275,-0.004749,0.249955,0,0);}
.mfd_c00245{transform:matrix(0.225687,0.003837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225687,0.003837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225687,0.003837,-0.004249,0.249964,0,0);}
.m6d_c00245{transform:matrix(0.226115,0.005201,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226115,0.005201,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226115,0.005201,-0.005748,0.249934,0,0);}
.m87_c00245{transform:matrix(0.226305,0.004979,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226305,0.004979,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226305,0.004979,-0.005499,0.249940,0,0);}
.m2d_c00245{transform:matrix(0.226829,0.005671,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226829,0.005671,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226829,0.005671,-0.006248,0.249922,0,0);}
.mc5_c00245{transform:matrix(0.228110,0.004790,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228110,0.004790,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228110,0.004790,-0.005249,0.249945,0,0);}
.mc6_c00245{transform:matrix(0.229749,0.004825,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229749,0.004825,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229749,0.004825,-0.005249,0.249945,0,0);}
.m82_c00245{transform:matrix(0.229905,0.006437,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229905,0.006437,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229905,0.006437,-0.006997,0.249902,0,0);}
.ma2_c00245{transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);}
.me8_c00245{transform:matrix(0.230377,0.003916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230377,0.003916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230377,0.003916,-0.004249,0.249964,0,0);}
.m27_c00245{transform:matrix(0.231623,0.005791,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231623,0.005791,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231623,0.005791,-0.006248,0.249922,0,0);}
.m2a_c00245{transform:matrix(0.232677,0.005817,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232677,0.005817,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232677,0.005817,-0.006248,0.249922,0,0);}
.mba_c00245{transform:matrix(0.232859,0.004890,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232859,0.004890,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232859,0.004890,-0.005249,0.249945,0,0);}
.me2_c00245{transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);}
.m4_c00245{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);}
.m79_c00245{transform:matrix(0.233743,0.006545,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233743,0.006545,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233743,0.006545,-0.006997,0.249902,0,0);}
.m71_c00245{transform:matrix(0.235338,0.005413,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235338,0.005413,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235338,0.005413,-0.005748,0.249934,0,0);}
.m29_c00245{transform:matrix(0.235651,0.005891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235651,0.005891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235651,0.005891,-0.006248,0.249922,0,0);}
.mf_c00245{transform:matrix(0.236192,0.004488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236192,0.004488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236192,0.004488,-0.004749,0.249955,0,0);}
.m99_c00245{transform:matrix(0.236878,0.005211,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236878,0.005211,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236878,0.005211,-0.005499,0.249940,0,0);}
.m14_c00245{transform:matrix(0.240537,0.004570,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240537,0.004570,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240537,0.004570,-0.004749,0.249955,0,0);}
.m6b_c00245{transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);}
.m47_c00245{transform:matrix(0.241260,0.006031,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241260,0.006031,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241260,0.006031,-0.006248,0.249922,0,0);}
.m1c_c00245{transform:matrix(0.244281,0.004641,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244281,0.004641,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244281,0.004641,-0.004749,0.249955,0,0);}
.m2e_c00245{transform:matrix(0.246283,0.006157,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246283,0.006157,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246283,0.006157,-0.006248,0.249922,0,0);}
.mbf_c00245{transform:matrix(0.247595,0.005200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247595,0.005200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247595,0.005200,-0.005249,0.249945,0,0);}
.m4f_c00245{transform:matrix(0.249017,0.006225,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249017,0.006225,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249017,0.006225,-0.006248,0.249922,0,0);}
.m26_c00245{transform:matrix(0.249057,0.006226,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249057,0.006226,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249057,0.006226,-0.006248,0.249922,0,0);}
.m49_c00245{transform:matrix(0.250882,0.006272,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250882,0.006272,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250882,0.006272,-0.006248,0.249922,0,0);}
.me_c00245{transform:matrix(0.254734,0.004840,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254734,0.004840,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254734,0.004840,-0.004749,0.249955,0,0);}
.meb_c00245{transform:matrix(0.257668,0.004380,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257668,0.004380,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257668,0.004380,-0.004249,0.249964,0,0);}
.m7c_c00245{transform:matrix(0.261153,0.007312,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261153,0.007312,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261153,0.007312,-0.006997,0.249902,0,0);}
.m12_c00245{transform:matrix(0.261853,0.004975,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261853,0.004975,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261853,0.004975,-0.004749,0.249955,0,0);}
.m8_c00245{transform:matrix(0.263023,0.004997,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263023,0.004997,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263023,0.004997,-0.004749,0.249955,0,0);}
.mb3_c00245{transform:matrix(0.263432,0.005532,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263432,0.005532,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263432,0.005532,-0.005249,0.249945,0,0);}
.m11_c00245{transform:matrix(0.264277,0.005021,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264277,0.005021,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264277,0.005021,-0.004749,0.249955,0,0);}
.m9e_c00245{transform:matrix(0.265576,0.005577,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265576,0.005577,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265576,0.005577,-0.005249,0.249945,0,0);}
.m4d_c00245{transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);}
.me3_c00245{transform:matrix(0.271881,0.004622,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271881,0.004622,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271881,0.004622,-0.004249,0.249964,0,0);}
.mb9_c00245{transform:matrix(0.274534,0.005765,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274534,0.005765,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274534,0.005765,-0.005249,0.249945,0,0);}
.m72_c00245{transform:matrix(0.300855,0.006920,-0.005748,0.249934,0,0);-ms-transform:matrix(0.300855,0.006920,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.300855,0.006920,-0.005748,0.249934,0,0);}
.m75_c00245{transform:matrix(0.317421,0.008888,-0.006997,0.249902,0,0);-ms-transform:matrix(0.317421,0.008888,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.317421,0.008888,-0.006997,0.249902,0,0);}
.m6e_c00245{transform:matrix(0.320235,0.007365,-0.005748,0.249934,0,0);-ms-transform:matrix(0.320235,0.007365,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.320235,0.007365,-0.005748,0.249934,0,0);}
.m73_c00245{transform:matrix(0.333502,0.007671,-0.005748,0.249934,0,0);-ms-transform:matrix(0.333502,0.007671,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.333502,0.007671,-0.005748,0.249934,0,0);}
.mc9_c00245{transform:matrix(0.333601,0.007006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.333601,0.007006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.333601,0.007006,-0.005249,0.249945,0,0);}
.m6f_c00245{transform:matrix(0.334681,0.007698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.334681,0.007698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.334681,0.007698,-0.005748,0.249934,0,0);}
.m80_c00245{transform:matrix(0.353606,0.009901,-0.006997,0.249902,0,0);-ms-transform:matrix(0.353606,0.009901,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.353606,0.009901,-0.006997,0.249902,0,0);}
.mfe_c00245{transform:matrix(0.355779,0.006048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.355779,0.006048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.355779,0.006048,-0.004249,0.249964,0,0);}
.me9_c00245{transform:matrix(0.422614,0.007184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.422614,0.007184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.422614,0.007184,-0.004249,0.249964,0,0);}
.mcd_c00245{transform:matrix(0.441663,0.009275,-0.005249,0.249945,0,0);-ms-transform:matrix(0.441663,0.009275,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.441663,0.009275,-0.005249,0.249945,0,0);}
.m76_c00245{transform:matrix(0.469231,0.013138,-0.006997,0.249902,0,0);-ms-transform:matrix(0.469231,0.013138,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.469231,0.013138,-0.006997,0.249902,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;}
.fs19_c00245{font-size:49.357131px;}
.fs14_c00245{font-size:50.411112px;}
.fs1a_c00245{font-size:51.457434px;}
.fs13_c00245{font-size:51.461343px;}
.fs18_c00245{font-size:52.507586px;}
.fs17_c00245{font-size:52.511575px;}
.fs1b_c00245{font-size:58.808496px;}
.fs15_c00245{font-size:58.812964px;}
.fs4_c00245{font-size:60.919028px;}
.fs16_c00245{font-size:61.963658px;}
.fs2_c00245{font-size:63.011370px;}
.fsf_c00245{font-size:63.024691px;}
.fs1_c00245{font-size:64.061560px;}
.fs8_c00245{font-size:66.170669px;}
.fs3_c00245{font-size:69.312508px;}
.fs12_c00245{font-size:69.316769px;}
.fsb_c00245{font-size:69.318327px;}
.fs7_c00245{font-size:69.321653px;}
.fs5_c00245{font-size:70.371981px;}
.fs0_c00245{font-size:71.412887px;}
.fs11_c00245{font-size:71.417277px;}
.fs6_c00245{font-size:72.472637px;}
.fs10_c00245{font-size:73.517785px;}
.fsa_c00245{font-size:73.519438px;}
.fs9_c00245{font-size:76.673949px;}
.fsc_c00245{font-size:98.726103px;}
.fse_c00245{font-size:107.141975px;}
.fsd_c00245{font-size:136.536099px;}
.y0_c00245{bottom:0.000000px;}
.y107_c00245{bottom:177.762494px;}
.y106_c00245{bottom:178.105827px;}
.y105_c00245{bottom:178.681554px;}
.y104_c00245{bottom:179.306268px;}
.y103_c00245{bottom:180.837077px;}
.y102_c00245{bottom:182.268079px;}
.y101_c00245{bottom:182.658666px;}
.y100_c00245{bottom:183.262289px;}
.yff_c00245{bottom:183.854879px;}
.yfe_c00245{bottom:184.768104px;}
.yfd_c00245{bottom:186.177123px;}
.yfc_c00245{bottom:186.836660px;}
.yfb_c00245{bottom:188.046374px;}
.yfa_c00245{bottom:188.727053px;}
.yf9_c00245{bottom:197.146656px;}
.yf8_c00245{bottom:197.441462px;}
.yf7_c00245{bottom:197.899467px;}
.yf6_c00245{bottom:198.275949px;}
.yf5_c00245{bottom:199.300692px;}
.yf4_c00245{bottom:200.016860px;}
.yf3_c00245{bottom:200.604227px;}
.ye4_c00245{bottom:201.502330px;}
.ye3_c00245{bottom:202.094058px;}
.ye2_c00245{bottom:202.665933px;}
.ye1_c00245{bottom:203.517200px;}
.ye0_c00245{bottom:204.734878px;}
.ydf_c00245{bottom:205.889200px;}
.yde_c00245{bottom:206.387997px;}
.ydd_c00245{bottom:207.070419px;}
.yf2_c00245{bottom:215.062995px;}
.yf1_c00245{bottom:215.957259px;}
.yf0_c00245{bottom:217.464593px;}
.yef_c00245{bottom:218.033276px;}
.yee_c00245{bottom:218.427923px;}
.ydc_c00245{bottom:220.573473px;}
.ydb_c00245{bottom:221.288748px;}
.yda_c00245{bottom:222.357672px;}
.yd9_c00245{bottom:222.938869px;}
.yd8_c00245{bottom:223.962796px;}
.yd7_c00245{bottom:224.622912px;}
.yed_c00245{bottom:234.704469px;}
.yec_c00245{bottom:234.705143px;}
.yd6_c00245{bottom:238.240725px;}
.yd5_c00245{bottom:239.110344px;}
.yd4_c00245{bottom:239.941147px;}
.yd3_c00245{bottom:240.853791px;}
.yd2_c00245{bottom:241.318123px;}
.yd1_c00245{bottom:242.716602px;}
.yeb_c00245{bottom:250.667948px;}
.yea_c00245{bottom:250.971551px;}
.ye9_c00245{bottom:251.471937px;}
.ye8_c00245{bottom:251.949144px;}
.ye7_c00245{bottom:252.877676px;}
.ye6_c00245{bottom:253.231208px;}
.ye5_c00245{bottom:253.533000px;}
.yd0_c00245{bottom:255.400575px;}
.ycf_c00245{bottom:256.215756px;}
.yce_c00245{bottom:256.958470px;}
.ycd_c00245{bottom:257.883349px;}
.ycc_c00245{bottom:258.884380px;}
.ycb_c00245{bottom:260.420884px;}
.yca_c00245{bottom:261.127659px;}
.yc9_c00245{bottom:262.162456px;}
.yc8_c00245{bottom:271.703742px;}
.yc7_c00245{bottom:271.953016px;}
.yc6_c00245{bottom:273.481080px;}
.yc5_c00245{bottom:273.904291px;}
.yc4_c00245{bottom:274.541487px;}
.yc3_c00245{bottom:276.027153px;}
.yc2_c00245{bottom:276.711018px;}
.yc1_c00245{bottom:277.229628px;}
.yc0_c00245{bottom:278.908587px;}
.ybf_c00245{bottom:286.694010px;}
.ybe_c00245{bottom:286.944087px;}
.ybd_c00245{bottom:287.397519px;}
.ybc_c00245{bottom:287.688912px;}
.ybb_c00245{bottom:288.715849px;}
.yba_c00245{bottom:289.114149px;}
.yb9_c00245{bottom:289.868802px;}
.yb8_c00245{bottom:290.492746px;}
.yb7_c00245{bottom:291.010792px;}
.yb6_c00245{bottom:292.762281px;}
.yb5_c00245{bottom:293.326809px;}
.yb4_c00245{bottom:293.719186px;}
.yb3_c00245{bottom:293.959101px;}
.yb2_c00245{bottom:294.556566px;}
.yb1_c00245{bottom:294.907754px;}
.yb0_c00245{bottom:295.543542px;}
.yaf_c00245{bottom:296.732518px;}
.yae_c00245{bottom:305.696101px;}
.yad_c00245{bottom:306.143937px;}
.yac_c00245{bottom:306.807421px;}
.yab_c00245{bottom:307.151559px;}
.yaa_c00245{bottom:308.224606px;}
.ya9_c00245{bottom:308.967817px;}
.ya8_c00245{bottom:309.569310px;}
.ya7_c00245{bottom:309.790755px;}
.ya6_c00245{bottom:310.306000px;}
.ya5_c00245{bottom:311.003725px;}
.ya4_c00245{bottom:311.344083px;}
.ya3_c00245{bottom:311.650546px;}
.ya2_c00245{bottom:312.501109px;}
.ya1_c00245{bottom:313.039633px;}
.ya0_c00245{bottom:314.055162px;}
.y9f_c00245{bottom:314.554500px;}
.y9e_c00245{bottom:358.142520px;}
.y9d_c00245{bottom:358.707588px;}
.y9c_c00245{bottom:359.930235px;}
.y9b_c00245{bottom:360.781977px;}
.y9a_c00245{bottom:361.452228px;}
.y99_c00245{bottom:362.943054px;}
.y98_c00245{bottom:363.893775px;}
.y97_c00245{bottom:364.737681px;}
.y96_c00245{bottom:365.473797px;}
.y95_c00245{bottom:366.116559px;}
.y94_c00245{bottom:383.198661px;}
.y93_c00245{bottom:384.042075px;}
.y92_c00245{bottom:384.594627px;}
.y91_c00245{bottom:386.252646px;}
.y90_c00245{bottom:386.802723px;}
.y8f_c00245{bottom:387.610761px;}
.y8e_c00245{bottom:388.801071px;}
.y8d_c00245{bottom:404.736642px;}
.y8c_c00245{bottom:405.093339px;}
.y8b_c00245{bottom:405.958797px;}
.y8a_c00245{bottom:406.756539px;}
.y89_c00245{bottom:407.267907px;}
.y88_c00245{bottom:407.641896px;}
.y87_c00245{bottom:409.656381px;}
.y86_c00245{bottom:410.440791px;}
.y85_c00245{bottom:410.973048px;}
.y84_c00245{bottom:411.486000px;}
.y83_c00245{bottom:425.773284px;}
.y82_c00245{bottom:427.299642px;}
.y81_c00245{bottom:427.644966px;}
.y80_c00245{bottom:428.439996px;}
.y7f_c00245{bottom:429.013218px;}
.y7e_c00245{bottom:429.846630px;}
.y7d_c00245{bottom:430.362924px;}
.y7c_c00245{bottom:432.004806px;}
.y7b_c00245{bottom:432.477216px;}
.y7a_c00245{bottom:433.297806px;}
.y79_c00245{bottom:433.626096px;}
.y78_c00245{bottom:434.670762px;}
.y77_c00245{bottom:435.519516px;}
.y76_c00245{bottom:455.963220px;}
.y75_c00245{bottom:459.285000px;}
.y74_c00245{bottom:494.639581px;}
.y73_c00245{bottom:531.102157px;}
.y72_c00245{bottom:532.219026px;}
.y71_c00245{bottom:533.101605px;}
.y70_c00245{bottom:534.989307px;}
.y6f_c00245{bottom:536.134500px;}
.y6e_c00245{bottom:594.855486px;}
.y6d_c00245{bottom:595.840025px;}
.y6c_c00245{bottom:597.206439px;}
.y6b_c00245{bottom:598.789449px;}
.y6a_c00245{bottom:599.723414px;}
.y69_c00245{bottom:600.429140px;}
.y68_c00245{bottom:601.562175px;}
.y67_c00245{bottom:615.688027px;}
.y66_c00245{bottom:616.277529px;}
.y65_c00245{bottom:617.306250px;}
.y64_c00245{bottom:618.244271px;}
.y63_c00245{bottom:619.215756px;}
.y62_c00245{bottom:620.221638px;}
.y61_c00245{bottom:620.824146px;}
.y60_c00245{bottom:621.724803px;}
.y5f_c00245{bottom:622.495085px;}
.y5e_c00245{bottom:623.110151px;}
.y5d_c00245{bottom:623.706000px;}
.y5c_c00245{bottom:641.118038px;}
.y5b_c00245{bottom:641.462662px;}
.y5a_c00245{bottom:642.688688px;}
.y59_c00245{bottom:643.169288px;}
.y58_c00245{bottom:644.149275px;}
.y57_c00245{bottom:644.772038px;}
.y56_c00245{bottom:645.771938px;}
.y55_c00245{bottom:646.906800px;}
.y54_c00245{bottom:662.784450px;}
.y53_c00245{bottom:663.295012px;}
.y52_c00245{bottom:664.590225px;}
.y51_c00245{bottom:665.036437px;}
.y50_c00245{bottom:666.323962px;}
.y4f_c00245{bottom:666.896625px;}
.y4e_c00245{bottom:667.541250px;}
.y4d_c00245{bottom:669.051900px;}
.y4c_c00245{bottom:684.583500px;}
.y4b_c00245{bottom:685.332825px;}
.y4a_c00245{bottom:686.284650px;}
.y49_c00245{bottom:687.109575px;}
.y48_c00245{bottom:687.749175px;}
.y47_c00245{bottom:689.559000px;}
.y46_c00245{bottom:690.603075px;}
.y45_c00245{bottom:691.689975px;}
.y44_c00245{bottom:692.312437px;}
.y43_c00245{bottom:692.820525px;}
.y42_c00245{bottom:706.262400px;}
.y41_c00245{bottom:707.412900px;}
.y40_c00245{bottom:709.180500px;}
.y3f_c00245{bottom:710.619675px;}
.y3e_c00245{bottom:711.325500px;}
.y3d_c00245{bottom:713.204963px;}
.y3c_c00245{bottom:714.181538px;}
.y3b_c00245{bottom:715.453500px;}
.y3a_c00245{bottom:716.047500px;}
.y39_c00245{bottom:729.454912px;}
.y38_c00245{bottom:730.755075px;}
.y37_c00245{bottom:731.774175px;}
.y36_c00245{bottom:732.179550px;}
.y35_c00245{bottom:733.013775px;}
.y34_c00245{bottom:733.816950px;}
.y33_c00245{bottom:735.453638px;}
.y32_c00245{bottom:736.072238px;}
.y31_c00245{bottom:737.132175px;}
.y30_c00245{bottom:738.180787px;}
.y2f_c00245{bottom:751.935450px;}
.y2e_c00245{bottom:753.481387px;}
.y2d_c00245{bottom:754.559363px;}
.y2c_c00245{bottom:755.122313px;}
.y2b_c00245{bottom:756.004275px;}
.y2a_c00245{bottom:757.999800px;}
.y29_c00245{bottom:759.510975px;}
.y28_c00245{bottom:760.277550px;}
.y27_c00245{bottom:760.867500px;}
.y26_c00245{bottom:776.152319px;}
.y25_c00245{bottom:776.998173px;}
.y24_c00245{bottom:777.514731px;}
.y23_c00245{bottom:778.648617px;}
.y22_c00245{bottom:779.131709px;}
.y21_c00245{bottom:780.044781px;}
.y20_c00245{bottom:781.582011px;}
.y1f_c00245{bottom:782.047585px;}
.y1e_c00245{bottom:782.994438px;}
.y1d_c00245{bottom:797.554490px;}
.y1c_c00245{bottom:798.820079px;}
.y1b_c00245{bottom:799.955064px;}
.y1a_c00245{bottom:800.460342px;}
.y19_c00245{bottom:801.266325px;}
.y18_c00245{bottom:801.861779px;}
.y17_c00245{bottom:803.210618px;}
.y16_c00245{bottom:804.095244px;}
.y15_c00245{bottom:805.397367px;}
.y14_c00245{bottom:805.947747px;}
.y13_c00245{bottom:820.334432px;}
.y12_c00245{bottom:821.346124px;}
.y11_c00245{bottom:821.756268px;}
.y10_c00245{bottom:822.791473px;}
.yf_c00245{bottom:823.555986px;}
.ye_c00245{bottom:824.212911px;}
.yd_c00245{bottom:824.943195px;}
.yc_c00245{bottom:825.666212px;}
.yb_c00245{bottom:826.461504px;}
.ya_c00245{bottom:826.896015px;}
.y9_c00245{bottom:827.820897px;}
.y8_c00245{bottom:844.253084px;}
.y7_c00245{bottom:846.050294px;}
.y6_c00245{bottom:847.015246px;}
.y5_c00245{bottom:847.562589px;}
.y4_c00245{bottom:849.123791px;}
.y3_c00245{bottom:849.811097px;}
.y2_c00245{bottom:850.857902px;}
.y1_c00245{bottom:851.314500px;}
.h1b_c00245{height:49.357131px;}
.h16_c00245{height:50.411112px;}
.h1c_c00245{height:51.457434px;}
.h15_c00245{height:51.461343px;}
.h1a_c00245{height:52.507586px;}
.h19_c00245{height:52.511575px;}
.h1d_c00245{height:58.808496px;}
.h17_c00245{height:58.812964px;}
.h6_c00245{height:60.919028px;}
.h18_c00245{height:61.963658px;}
.h4_c00245{height:63.011370px;}
.h11_c00245{height:63.024691px;}
.h3_c00245{height:64.061560px;}
.ha_c00245{height:66.170669px;}
.h5_c00245{height:69.312508px;}
.h14_c00245{height:69.316769px;}
.hd_c00245{height:69.318327px;}
.h9_c00245{height:69.321653px;}
.h7_c00245{height:70.371981px;}
.h2_c00245{height:71.412887px;}
.h13_c00245{height:71.417277px;}
.h8_c00245{height:72.472637px;}
.h12_c00245{height:73.517785px;}
.hc_c00245{height:73.519438px;}
.hb_c00245{height:76.673949px;}
.he_c00245{height:98.726103px;}
.h10_c00245{height:107.141975px;}
.hf_c00245{height:136.536099px;}
.h0_c00245{height:1008.450000px;}
.h1_c00245{height:1008.750000px;}
.w0_c00245{width:678.450000px;}
.w1_c00245{width:678.750000px;}
.x0_c00245{left:0.000000px;}
.x7e_c00245{left:125.626023px;}
.x76_c00245{left:131.232146px;}
.x70_c00245{left:143.160000px;}
.x7f_c00245{left:157.966058px;}
.x13_c00245{left:166.318847px;}
.x1_c00245{left:167.694000px;}
.x1c_c00245{left:169.294965px;}
.x5a_c00245{left:178.728000px;}
.x80_c00245{left:180.045455px;}
.x77_c00245{left:185.277512px;}
.x3a_c00245{left:187.455712px;}
.x63_c00245{left:188.829000px;}
.x25_c00245{left:190.155000px;}
.x2_c00245{left:191.725500px;}
.x6b_c00245{left:194.501745px;}
.x59_c00245{left:200.959789px;}
.x91_c00245{left:204.725130px;}
.x2c_c00245{left:208.503188px;}
.x50_c00245{left:209.852865px;}
.x82_c00245{left:212.272433px;}
.x3b_c00245{left:213.374850px;}
.x1d_c00245{left:214.390755px;}
.x9_c00245{left:215.562491px;}
.x45_c00245{left:217.811888px;}
.x26_c00245{left:220.818000px;}
.x86_c00245{left:224.682240px;}
.x6c_c00245{left:226.529052px;}
.x81_c00245{left:228.058367px;}
.x78_c00245{left:230.132567px;}
.x1e_c00245{left:236.525400px;}
.xa_c00245{left:238.431490px;}
.x34_c00245{left:240.931500px;}
.x5c_c00245{left:242.127780px;}
.x3_c00245{left:246.820500px;}
.x64_c00245{left:248.677500px;}
.x14_c00245{left:250.551059px;}
.x4a_c00245{left:251.640000px;}
.x5d_c00245{left:255.246372px;}
.x67_c00245{left:256.617804px;}
.x3c_c00245{left:258.651975px;}
.x46_c00245{left:263.271300px;}
.x42_c00245{left:268.403775px;}
.x84_c00245{left:270.270314px;}
.x51_c00245{left:272.922018px;}
.x2d_c00245{left:275.644688px;}
.xb_c00245{left:280.288991px;}
.x68_c00245{left:281.621304px;}
.x4_c00245{left:282.994500px;}
.x92_c00245{left:284.304467px;}
.x79_c00245{left:286.048401px;}
.x55_c00245{left:287.314500px;}
.x15_c00245{left:290.792279px;}
.x43_c00245{left:295.693013px;}
.x5b_c00245{left:297.363000px;}
.x85_c00245{left:300.043424px;}
.x3d_c00245{left:302.156062px;}
.x6d_c00245{left:304.555836px;}
.x5e_c00245{left:307.000740px;}
.x1f_c00245{left:309.692607px;}
.x71_c00245{left:312.244500px;}
.x4b_c00245{left:316.995000px;}
.xc_c00245{left:318.342490px;}
.x93_c00245{left:319.400586px;}
.x83_c00245{left:325.913676px;}
.x87_c00245{left:330.283857px;}
.x52_c00245{left:333.787809px;}
.x47_c00245{left:336.146775px;}
.x2e_c00245{left:341.112188px;}
.x94_c00245{left:342.167093px;}
.x72_c00245{left:345.469500px;}
.x16_c00245{left:352.069773px;}
.x20_c00245{left:353.168454px;}
.x35_c00245{left:355.173000px;}
.xd_c00245{left:356.778490px;}
.x48_c00245{left:358.012425px;}
.x27_c00245{left:361.086000px;}
.x5_c00245{left:365.163000px;}
.x56_c00245{left:369.388500px;}
.x7d_c00245{left:371.579952px;}
.x2f_c00245{left:373.239188px;}
.x21_c00245{left:376.146071px;}
.x3e_c00245{left:377.550937px;}
.x17_c00245{left:379.144734px;}
.x65_c00245{left:380.488500px;}
.x69_c00245{left:382.101804px;}
.x36_c00245{left:383.406000px;}
.x53_c00245{left:386.345687px;}
.xe_c00245{left:391.353491px;}
.x6_c00245{left:393.970500px;}
.x28_c00245{left:396.364500px;}
.x6e_c00245{left:398.557290px;}
.x4c_c00245{left:402.967500px;}
.x3f_c00245{left:404.215613px;}
.x30_c00245{left:406.608188px;}
.x57_c00245{left:407.761500px;}
.x73_c00245{left:409.192500px;}
.x49_c00245{left:413.717588px;}
.x18_c00245{left:415.799654px;}
.x29_c00245{left:418.882500px;}
.x6a_c00245{left:420.438804px;}
.x31_c00245{left:422.823188px;}
.x54_c00245{left:424.192565px;}
.x5f_c00245{left:426.656778px;}
.x22_c00245{left:430.138019px;}
.xf_c00245{left:431.590990px;}
.x6f_c00245{left:435.567465px;}
.x19_c00245{left:438.760343px;}
.x44_c00245{left:439.905412px;}
.x37_c00245{left:440.973000px;}
.x4d_c00245{left:443.751000px;}
.x7_c00245{left:444.757500px;}
.x8a_c00245{left:446.855103px;}
.x60_c00245{left:449.595210px;}
.x23_c00245{left:454.719078px;}
.x58_c00245{left:456.321000px;}
.x8d_c00245{left:458.037644px;}
.x2a_c00245{left:462.001500px;}
.x32_c00245{left:463.587188px;}
.x66_c00245{left:472.302000px;}
.x40_c00245{left:478.227450px;}
.x61_c00245{left:481.420398px;}
.x10_c00245{left:486.075491px;}
.x4e_c00245{left:488.478000px;}
.x1a_c00245{left:490.361907px;}
.x24_c00245{left:494.973039px;}
.x88_c00245{left:499.888500px;}
.x11_c00245{left:507.661991px;}
.x41_c00245{left:509.461237px;}
.x38_c00245{left:511.677000px;}
.x4f_c00245{left:514.108500px;}
.x33_c00245{left:515.593688px;}
.x8e_c00245{left:518.316644px;}
.x2b_c00245{left:523.839000px;}
.x89_c00245{left:527.959500px;}
.x8b_c00245{left:534.191726px;}
.x8_c00245{left:539.347500px;}
.x8f_c00245{left:540.462644px;}
.x7a_c00245{left:542.300015px;}
.x74_c00245{left:543.663000px;}
.x1b_c00245{left:547.889630px;}
.x95_c00245{left:553.769759px;}
.x62_c00245{left:556.308198px;}
.x39_c00245{left:557.697000px;}
.x12_c00245{left:560.908991px;}
.x75_c00245{left:564.988500px;}
.x90_c00245{left:567.404144px;}
.x7b_c00245{left:576.124290px;}
.x8c_c00245{left:583.882884px;}
.x7c_c00245{left:587.461038px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs19_c00245{font-size:43.873005pt;}
.fs14_c00245{font-size:44.809877pt;}
.fs1a_c00245{font-size:45.739941pt;}
.fs13_c00245{font-size:45.743416pt;}
.fs18_c00245{font-size:46.673410pt;}
.fs17_c00245{font-size:46.676956pt;}
.fs1b_c00245{font-size:52.274219pt;}
.fs15_c00245{font-size:52.278190pt;}
.fs4_c00245{font-size:54.150247pt;}
.fs16_c00245{font-size:55.078808pt;}
.fs2_c00245{font-size:56.010107pt;}
.fsf_c00245{font-size:56.021948pt;}
.fs1_c00245{font-size:56.943609pt;}
.fs8_c00245{font-size:58.818372pt;}
.fs3_c00245{font-size:61.611118pt;}
.fs12_c00245{font-size:61.614905pt;}
.fsb_c00245{font-size:61.616291pt;}
.fs7_c00245{font-size:61.619247pt;}
.fs5_c00245{font-size:62.552872pt;}
.fs0_c00245{font-size:63.478121pt;}
.fs11_c00245{font-size:63.482024pt;}
.fs6_c00245{font-size:64.420122pt;}
.fs10_c00245{font-size:65.349142pt;}
.fsa_c00245{font-size:65.350612pt;}
.fs9_c00245{font-size:68.154622pt;}
.fsc_c00245{font-size:87.756536pt;}
.fse_c00245{font-size:95.237311pt;}
.fsd_c00245{font-size:121.365422pt;}
.y0_c00245{bottom:0.000000pt;}
.y107_c00245{bottom:158.011105pt;}
.y106_c00245{bottom:158.316291pt;}
.y105_c00245{bottom:158.828048pt;}
.y104_c00245{bottom:159.383349pt;}
.y103_c00245{bottom:160.744068pt;}
.y102_c00245{bottom:162.016071pt;}
.y101_c00245{bottom:162.363259pt;}
.y100_c00245{bottom:162.899812pt;}
.yff_c00245{bottom:163.426559pt;}
.yfe_c00245{bottom:164.238315pt;}
.yfd_c00245{bottom:165.490776pt;}
.yfc_c00245{bottom:166.077031pt;}
.yfb_c00245{bottom:167.152332pt;}
.yfa_c00245{bottom:167.757380pt;}
.yf9_c00245{bottom:175.241472pt;}
.yf8_c00245{bottom:175.503521pt;}
.yf7_c00245{bottom:175.910637pt;}
.yf6_c00245{bottom:176.245288pt;}
.yf5_c00245{bottom:177.156171pt;}
.yf4_c00245{bottom:177.792764pt;}
.yf3_c00245{bottom:178.314868pt;}
.ye4_c00245{bottom:179.113183pt;}
.ye3_c00245{bottom:179.639163pt;}
.ye2_c00245{bottom:180.147496pt;}
.ye1_c00245{bottom:180.904177pt;}
.ye0_c00245{bottom:181.986559pt;}
.ydf_c00245{bottom:183.012623pt;}
.yde_c00245{bottom:183.455997pt;}
.ydd_c00245{bottom:184.062595pt;}
.yf2_c00245{bottom:191.167107pt;}
.yf1_c00245{bottom:191.962008pt;}
.yf0_c00245{bottom:193.301860pt;}
.yef_c00245{bottom:193.807356pt;}
.yee_c00245{bottom:194.158153pt;}
.ydc_c00245{bottom:196.065309pt;}
.ydb_c00245{bottom:196.701109pt;}
.yda_c00245{bottom:197.651264pt;}
.yd9_c00245{bottom:198.167884pt;}
.yd8_c00245{bottom:199.078041pt;}
.yd7_c00245{bottom:199.664811pt;}
.yed_c00245{bottom:208.626195pt;}
.yec_c00245{bottom:208.626793pt;}
.yd6_c00245{bottom:211.769533pt;}
.yd5_c00245{bottom:212.542528pt;}
.yd4_c00245{bottom:213.281020pt;}
.yd3_c00245{bottom:214.092259pt;}
.yd2_c00245{bottom:214.504999pt;}
.yd1_c00245{bottom:215.748091pt;}
.yeb_c00245{bottom:222.815953pt;}
.yea_c00245{bottom:223.085823pt;}
.ye9_c00245{bottom:223.530611pt;}
.ye8_c00245{bottom:223.954795pt;}
.ye7_c00245{bottom:224.780156pt;}
.ye6_c00245{bottom:225.094407pt;}
.ye5_c00245{bottom:225.362667pt;}
.yd0_c00245{bottom:227.022733pt;}
.ycf_c00245{bottom:227.747339pt;}
.yce_c00245{bottom:228.407529pt;}
.ycd_c00245{bottom:229.229644pt;}
.ycc_c00245{bottom:230.119449pt;}
.ycb_c00245{bottom:231.485231pt;}
.yca_c00245{bottom:232.113475pt;}
.yc9_c00245{bottom:233.033295pt;}
.yc8_c00245{bottom:241.514437pt;}
.yc7_c00245{bottom:241.736015pt;}
.yc6_c00245{bottom:243.094293pt;}
.yc5_c00245{bottom:243.470481pt;}
.yc4_c00245{bottom:244.036877pt;}
.yc3_c00245{bottom:245.357469pt;}
.yc2_c00245{bottom:245.965349pt;}
.yc1_c00245{bottom:246.426336pt;}
.yc0_c00245{bottom:247.918744pt;}
.ybf_c00245{bottom:254.839120pt;}
.ybe_c00245{bottom:255.061411pt;}
.ybd_c00245{bottom:255.464461pt;}
.ybc_c00245{bottom:255.723477pt;}
.ybb_c00245{bottom:256.636311pt;}
.yba_c00245{bottom:256.990355pt;}
.yb9_c00245{bottom:257.661157pt;}
.yb8_c00245{bottom:258.215775pt;}
.yb7_c00245{bottom:258.676260pt;}
.yb6_c00245{bottom:260.233139pt;}
.yb5_c00245{bottom:260.734941pt;}
.yb4_c00245{bottom:261.083721pt;}
.yb3_c00245{bottom:261.296979pt;}
.yb2_c00245{bottom:261.828059pt;}
.yb1_c00245{bottom:262.140225pt;}
.yb0_c00245{bottom:262.705371pt;}
.yaf_c00245{bottom:263.762239pt;}
.yae_c00245{bottom:271.729868pt;}
.yad_c00245{bottom:272.127944pt;}
.yac_c00245{bottom:272.717708pt;}
.yab_c00245{bottom:273.023608pt;}
.yaa_c00245{bottom:273.977428pt;}
.ya9_c00245{bottom:274.638060pt;}
.ya8_c00245{bottom:275.172720pt;}
.ya7_c00245{bottom:275.369560pt;}
.ya6_c00245{bottom:275.827556pt;}
.ya5_c00245{bottom:276.447756pt;}
.ya4_c00245{bottom:276.750296pt;}
.ya3_c00245{bottom:277.022708pt;}
.ya2_c00245{bottom:277.778764pt;}
.ya1_c00245{bottom:278.257452pt;}
.ya0_c00245{bottom:279.160144pt;}
.y9f_c00245{bottom:279.604000pt;}
.y9e_c00245{bottom:318.348907pt;}
.y9d_c00245{bottom:318.851189pt;}
.y9c_c00245{bottom:319.937987pt;}
.y9b_c00245{bottom:320.695091pt;}
.y9a_c00245{bottom:321.290869pt;}
.y99_c00245{bottom:322.616048pt;}
.y98_c00245{bottom:323.461133pt;}
.y97_c00245{bottom:324.211272pt;}
.y96_c00245{bottom:324.865597pt;}
.y95_c00245{bottom:325.436941pt;}
.y94_c00245{bottom:340.621032pt;}
.y93_c00245{bottom:341.370733pt;}
.y92_c00245{bottom:341.861891pt;}
.y91_c00245{bottom:343.335685pt;}
.y90_c00245{bottom:343.824643pt;}
.y8f_c00245{bottom:344.542899pt;}
.y8e_c00245{bottom:345.600952pt;}
.y8d_c00245{bottom:359.765904pt;}
.y8c_c00245{bottom:360.082968pt;}
.y8b_c00245{bottom:360.852264pt;}
.y8a_c00245{bottom:361.561368pt;}
.y89_c00245{bottom:362.015917pt;}
.y88_c00245{bottom:362.348352pt;}
.y87_c00245{bottom:364.139005pt;}
.y86_c00245{bottom:364.836259pt;}
.y85_c00245{bottom:365.309376pt;}
.y84_c00245{bottom:365.765333pt;}
.y83_c00245{bottom:378.465141pt;}
.y82_c00245{bottom:379.821904pt;}
.y81_c00245{bottom:380.128859pt;}
.y80_c00245{bottom:380.835552pt;}
.y7f_c00245{bottom:381.345083pt;}
.y7e_c00245{bottom:382.085893pt;}
.y7d_c00245{bottom:382.544821pt;}
.y7c_c00245{bottom:384.004272pt;}
.y7b_c00245{bottom:384.424192pt;}
.y7a_c00245{bottom:385.153605pt;}
.y79_c00245{bottom:385.445419pt;}
.y78_c00245{bottom:386.374011pt;}
.y77_c00245{bottom:387.128459pt;}
.y76_c00245{bottom:405.300640pt;}
.y75_c00245{bottom:408.253333pt;}
.y74_c00245{bottom:439.679628pt;}
.y73_c00245{bottom:472.090807pt;}
.y72_c00245{bottom:473.083579pt;}
.y71_c00245{bottom:473.868093pt;}
.y70_c00245{bottom:475.546051pt;}
.y6f_c00245{bottom:476.564000pt;}
.y6e_c00245{bottom:528.760432pt;}
.y6d_c00245{bottom:529.635577pt;}
.y6c_c00245{bottom:530.850168pt;}
.y6b_c00245{bottom:532.257288pt;}
.y6a_c00245{bottom:533.087479pt;}
.y69_c00245{bottom:533.714791pt;}
.y68_c00245{bottom:534.721933pt;}
.y67_c00245{bottom:547.278247pt;}
.y66_c00245{bottom:547.802248pt;}
.y65_c00245{bottom:548.716667pt;}
.y64_c00245{bottom:549.550463pt;}
.y63_c00245{bottom:550.414005pt;}
.y62_c00245{bottom:551.308123pt;}
.y61_c00245{bottom:551.843685pt;}
.y60_c00245{bottom:552.644269pt;}
.y5f_c00245{bottom:553.328964pt;}
.y5e_c00245{bottom:553.875689pt;}
.y5d_c00245{bottom:554.405333pt;}
.y5c_c00245{bottom:569.882700pt;}
.y5b_c00245{bottom:570.189033pt;}
.y5a_c00245{bottom:571.278833pt;}
.y59_c00245{bottom:571.706033pt;}
.y58_c00245{bottom:572.577133pt;}
.y57_c00245{bottom:573.130700pt;}
.y56_c00245{bottom:574.019500pt;}
.y55_c00245{bottom:575.028267pt;}
.y54_c00245{bottom:589.141733pt;}
.y53_c00245{bottom:589.595567pt;}
.y52_c00245{bottom:590.746867pt;}
.y51_c00245{bottom:591.143500pt;}
.y50_c00245{bottom:592.287967pt;}
.y4f_c00245{bottom:592.797000pt;}
.y4e_c00245{bottom:593.370000pt;}
.y4d_c00245{bottom:594.712800pt;}
.y4c_c00245{bottom:608.518667pt;}
.y4b_c00245{bottom:609.184733pt;}
.y4a_c00245{bottom:610.030800pt;}
.y49_c00245{bottom:610.764067pt;}
.y48_c00245{bottom:611.332600pt;}
.y47_c00245{bottom:612.941333pt;}
.y46_c00245{bottom:613.869400pt;}
.y45_c00245{bottom:614.835533pt;}
.y44_c00245{bottom:615.388833pt;}
.y43_c00245{bottom:615.840467pt;}
.y42_c00245{bottom:627.788800pt;}
.y41_c00245{bottom:628.811467pt;}
.y40_c00245{bottom:630.382667pt;}
.y3f_c00245{bottom:631.661933pt;}
.y3e_c00245{bottom:632.289333pt;}
.y3d_c00245{bottom:633.959967pt;}
.y3c_c00245{bottom:634.828033pt;}
.y3b_c00245{bottom:635.958667pt;}
.y3a_c00245{bottom:636.486667pt;}
.y39_c00245{bottom:648.404367pt;}
.y38_c00245{bottom:649.560067pt;}
.y37_c00245{bottom:650.465933pt;}
.y36_c00245{bottom:650.826267pt;}
.y35_c00245{bottom:651.567800pt;}
.y34_c00245{bottom:652.281733pt;}
.y33_c00245{bottom:653.736567pt;}
.y32_c00245{bottom:654.286433pt;}
.y31_c00245{bottom:655.228600pt;}
.y30_c00245{bottom:656.160700pt;}
.y2f_c00245{bottom:668.387067pt;}
.y2e_c00245{bottom:669.761233pt;}
.y2d_c00245{bottom:670.719433pt;}
.y2c_c00245{bottom:671.219833pt;}
.y2b_c00245{bottom:672.003800pt;}
.y2a_c00245{bottom:673.777600pt;}
.y29_c00245{bottom:675.120867pt;}
.y28_c00245{bottom:675.802267pt;}
.y27_c00245{bottom:676.326667pt;}
.y26_c00245{bottom:689.913172pt;}
.y25_c00245{bottom:690.665043pt;}
.y24_c00245{bottom:691.124205pt;}
.y23_c00245{bottom:692.132104pt;}
.y22_c00245{bottom:692.561519pt;}
.y21_c00245{bottom:693.373139pt;}
.y20_c00245{bottom:694.739565pt;}
.y1f_c00245{bottom:695.153409pt;}
.y1e_c00245{bottom:695.995056pt;}
.y1d_c00245{bottom:708.937324pt;}
.y1c_c00245{bottom:710.062292pt;}
.y1b_c00245{bottom:711.071168pt;}
.y1a_c00245{bottom:711.520304pt;}
.y19_c00245{bottom:712.236733pt;}
.y18_c00245{bottom:712.766025pt;}
.y17_c00245{bottom:713.964993pt;}
.y16_c00245{bottom:714.751328pt;}
.y15_c00245{bottom:715.908771pt;}
.y14_c00245{bottom:716.397997pt;}
.y13_c00245{bottom:729.186161pt;}
.y12_c00245{bottom:730.085444pt;}
.y11_c00245{bottom:730.450016pt;}
.y10_c00245{bottom:731.370199pt;}
.yf_c00245{bottom:732.049765pt;}
.ye_c00245{bottom:732.633699pt;}
.yd_c00245{bottom:733.282840pt;}
.yc_c00245{bottom:733.925521pt;}
.yb_c00245{bottom:734.632448pt;}
.ya_c00245{bottom:735.018680pt;}
.y9_c00245{bottom:735.840797pt;}
.y8_c00245{bottom:750.447185pt;}
.y7_c00245{bottom:752.044705pt;}
.y6_c00245{bottom:752.902441pt;}
.y5_c00245{bottom:753.388968pt;}
.y4_c00245{bottom:754.776703pt;}
.y3_c00245{bottom:755.387641pt;}
.y2_c00245{bottom:756.318135pt;}
.y1_c00245{bottom:756.724000pt;}
.h1b_c00245{height:43.873005pt;}
.h16_c00245{height:44.809877pt;}
.h1c_c00245{height:45.739941pt;}
.h15_c00245{height:45.743416pt;}
.h1a_c00245{height:46.673410pt;}
.h19_c00245{height:46.676956pt;}
.h1d_c00245{height:52.274219pt;}
.h17_c00245{height:52.278190pt;}
.h6_c00245{height:54.150247pt;}
.h18_c00245{height:55.078808pt;}
.h4_c00245{height:56.010107pt;}
.h11_c00245{height:56.021948pt;}
.h3_c00245{height:56.943609pt;}
.ha_c00245{height:58.818372pt;}
.h5_c00245{height:61.611118pt;}
.h14_c00245{height:61.614905pt;}
.hd_c00245{height:61.616291pt;}
.h9_c00245{height:61.619247pt;}
.h7_c00245{height:62.552872pt;}
.h2_c00245{height:63.478121pt;}
.h13_c00245{height:63.482024pt;}
.h8_c00245{height:64.420122pt;}
.h12_c00245{height:65.349142pt;}
.hc_c00245{height:65.350612pt;}
.hb_c00245{height:68.154622pt;}
.he_c00245{height:87.756536pt;}
.h10_c00245{height:95.237311pt;}
.hf_c00245{height:121.365422pt;}
.h0_c00245{height:896.400000pt;}
.h1_c00245{height:896.666667pt;}
.w0_c00245{width:603.066667pt;}
.w1_c00245{width:603.333333pt;}
.x0_c00245{left:0.000000pt;}
.x7e_c00245{left:111.667576pt;}
.x76_c00245{left:116.650796pt;}
.x70_c00245{left:127.253333pt;}
.x7f_c00245{left:140.414273pt;}
.x13_c00245{left:147.838975pt;}
.x1_c00245{left:149.061333pt;}
.x1c_c00245{left:150.484413pt;}
.x5a_c00245{left:158.869333pt;}
.x80_c00245{left:160.040404pt;}
.x77_c00245{left:164.691121pt;}
.x3a_c00245{left:166.627300pt;}
.x63_c00245{left:167.848000pt;}
.x25_c00245{left:169.026667pt;}
.x2_c00245{left:170.422667pt;}
.x6b_c00245{left:172.890440pt;}
.x59_c00245{left:178.630924pt;}
.x91_c00245{left:181.977893pt;}
.x2c_c00245{left:185.336167pt;}
.x50_c00245{left:186.535880pt;}
.x82_c00245{left:188.686607pt;}
.x3b_c00245{left:189.666533pt;}
.x1d_c00245{left:190.569560pt;}
.x9_c00245{left:191.611103pt;}
.x45_c00245{left:193.610567pt;}
.x26_c00245{left:196.282667pt;}
.x86_c00245{left:199.717547pt;}
.x6c_c00245{left:201.359157pt;}
.x81_c00245{left:202.718548pt;}
.x78_c00245{left:204.562281pt;}
.x1e_c00245{left:210.244800pt;}
.xa_c00245{left:211.939103pt;}
.x34_c00245{left:214.161333pt;}
.x5c_c00245{left:215.224693pt;}
.x3_c00245{left:219.396000pt;}
.x64_c00245{left:221.046667pt;}
.x14_c00245{left:222.712052pt;}
.x4a_c00245{left:223.680000pt;}
.x5d_c00245{left:226.885664pt;}
.x67_c00245{left:228.104715pt;}
.x3c_c00245{left:229.912867pt;}
.x46_c00245{left:234.018933pt;}
.x42_c00245{left:238.581133pt;}
.x84_c00245{left:240.240279pt;}
.x51_c00245{left:242.597349pt;}
.x2d_c00245{left:245.017500pt;}
.xb_c00245{left:249.145769pt;}
.x68_c00245{left:250.330048pt;}
.x4_c00245{left:251.550667pt;}
.x92_c00245{left:252.715081pt;}
.x79_c00245{left:254.265245pt;}
.x55_c00245{left:255.390667pt;}
.x15_c00245{left:258.482025pt;}
.x43_c00245{left:262.838233pt;}
.x5b_c00245{left:264.322667pt;}
.x85_c00245{left:266.705265pt;}
.x3d_c00245{left:268.583167pt;}
.x6d_c00245{left:270.716299pt;}
.x5e_c00245{left:272.889547pt;}
.x1f_c00245{left:275.282317pt;}
.x71_c00245{left:277.550667pt;}
.x4b_c00245{left:281.773333pt;}
.xc_c00245{left:282.971103pt;}
.x93_c00245{left:283.911632pt;}
.x83_c00245{left:289.701045pt;}
.x87_c00245{left:293.585651pt;}
.x52_c00245{left:296.700275pt;}
.x47_c00245{left:298.797133pt;}
.x2e_c00245{left:303.210833pt;}
.x94_c00245{left:304.148527pt;}
.x72_c00245{left:307.084000pt;}
.x16_c00245{left:312.950909pt;}
.x20_c00245{left:313.927515pt;}
.x35_c00245{left:315.709333pt;}
.xd_c00245{left:317.136436pt;}
.x48_c00245{left:318.233267pt;}
.x27_c00245{left:320.965333pt;}
.x5_c00245{left:324.589333pt;}
.x56_c00245{left:328.345333pt;}
.x7d_c00245{left:330.293291pt;}
.x2f_c00245{left:331.768167pt;}
.x21_c00245{left:334.352063pt;}
.x3e_c00245{left:335.600833pt;}
.x17_c00245{left:337.017541pt;}
.x65_c00245{left:338.212000pt;}
.x69_c00245{left:339.646048pt;}
.x36_c00245{left:340.805333pt;}
.x53_c00245{left:343.418388pt;}
.xe_c00245{left:347.869769pt;}
.x6_c00245{left:350.196000pt;}
.x28_c00245{left:352.324000pt;}
.x6e_c00245{left:354.273147pt;}
.x4c_c00245{left:358.193333pt;}
.x3f_c00245{left:359.302767pt;}
.x30_c00245{left:361.429500pt;}
.x57_c00245{left:362.454667pt;}
.x73_c00245{left:363.726667pt;}
.x49_c00245{left:367.748967pt;}
.x18_c00245{left:369.599692pt;}
.x29_c00245{left:372.340000pt;}
.x6a_c00245{left:373.723381pt;}
.x31_c00245{left:375.842833pt;}
.x54_c00245{left:377.060057pt;}
.x5f_c00245{left:379.250469pt;}
.x22_c00245{left:382.344905pt;}
.xf_c00245{left:383.636436pt;}
.x6f_c00245{left:387.171080pt;}
.x19_c00245{left:390.009193pt;}
.x44_c00245{left:391.027033pt;}
.x37_c00245{left:391.976000pt;}
.x4d_c00245{left:394.445333pt;}
.x7_c00245{left:395.340000pt;}
.x8a_c00245{left:397.204536pt;}
.x60_c00245{left:399.640187pt;}
.x23_c00245{left:404.194736pt;}
.x58_c00245{left:405.618667pt;}
.x8d_c00245{left:407.144572pt;}
.x2a_c00245{left:410.668000pt;}
.x32_c00245{left:412.077500pt;}
.x66_c00245{left:419.824000pt;}
.x40_c00245{left:425.091067pt;}
.x61_c00245{left:427.929243pt;}
.x10_c00245{left:432.067103pt;}
.x4e_c00245{left:434.202667pt;}
.x1a_c00245{left:435.877251pt;}
.x24_c00245{left:439.976035pt;}
.x88_c00245{left:444.345333pt;}
.x11_c00245{left:451.255103pt;}
.x41_c00245{left:452.854433pt;}
.x38_c00245{left:454.824000pt;}
.x4f_c00245{left:456.985333pt;}
.x33_c00245{left:458.305500pt;}
.x8e_c00245{left:460.725905pt;}
.x2b_c00245{left:465.634667pt;}
.x89_c00245{left:469.297333pt;}
.x8b_c00245{left:474.837089pt;}
.x8_c00245{left:479.420000pt;}
.x8f_c00245{left:480.411239pt;}
.x7a_c00245{left:482.044457pt;}
.x74_c00245{left:483.256000pt;}
.x1b_c00245{left:487.013004pt;}
.x95_c00245{left:492.239785pt;}
.x62_c00245{left:494.496176pt;}
.x39_c00245{left:495.730667pt;}
.x12_c00245{left:498.585769pt;}
.x75_c00245{left:502.212000pt;}
.x90_c00245{left:504.359239pt;}
.x7b_c00245{left:512.110480pt;}
.x8c_c00245{left:519.007008pt;}
.x7c_c00245{left:522.187589pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc5_c00246{transform:matrix(0.014261,-0.000328,0.005748,0.249934,0,0);-ms-transform:matrix(0.014261,-0.000328,0.005748,0.249934,0,0);-webkit-transform:matrix(0.014261,-0.000328,0.005748,0.249934,0,0);}
.m5_c00246{transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);}
.mab_c00246{transform:matrix(0.086487,-0.001989,0.005748,0.249934,0,0);-ms-transform:matrix(0.086487,-0.001989,0.005748,0.249934,0,0);-webkit-transform:matrix(0.086487,-0.001989,0.005748,0.249934,0,0);}
.m4f_c00246{transform:matrix(0.115152,-0.003339,0.007247,0.249895,0,0);-ms-transform:matrix(0.115152,-0.003339,0.007247,0.249895,0,0);-webkit-transform:matrix(0.115152,-0.003339,0.007247,0.249895,0,0);}
.m66_c00246{transform:matrix(0.119243,-0.003339,0.006997,0.249902,0,0);-ms-transform:matrix(0.119243,-0.003339,0.006997,0.249902,0,0);-webkit-transform:matrix(0.119243,-0.003339,0.006997,0.249902,0,0);}
.m4_c00246{transform:matrix(0.136325,-0.004367,0.008004,0.249872,0,0);-ms-transform:matrix(0.136325,-0.004367,0.008004,0.249872,0,0);-webkit-transform:matrix(0.136325,-0.004367,0.008004,0.249872,0,0);}
.m2f_c00246{transform:matrix(0.141201,-0.003530,0.006248,0.249922,0,0);-ms-transform:matrix(0.141201,-0.003530,0.006248,0.249922,0,0);-webkit-transform:matrix(0.141201,-0.003530,0.006248,0.249922,0,0);}
.m46_c00246{transform:matrix(0.146249,-0.003656,0.006248,0.249922,0,0);-ms-transform:matrix(0.146249,-0.003656,0.006248,0.249922,0,0);-webkit-transform:matrix(0.146249,-0.003656,0.006248,0.249922,0,0);}
.m11_c00246{transform:matrix(0.149163,-0.004624,0.007746,0.249880,0,0);-ms-transform:matrix(0.149163,-0.004624,0.007746,0.249880,0,0);-webkit-transform:matrix(0.149163,-0.004624,0.007746,0.249880,0,0);}
.m4c_c00246{transform:matrix(0.152037,-0.003801,0.006248,0.249922,0,0);-ms-transform:matrix(0.152037,-0.003801,0.006248,0.249922,0,0);-webkit-transform:matrix(0.152037,-0.003801,0.006248,0.249922,0,0);}
.mcd_c00246{transform:matrix(0.153509,-0.003531,0.005748,0.249934,0,0);-ms-transform:matrix(0.153509,-0.003531,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153509,-0.003531,0.005748,0.249934,0,0);}
.m10a_c00246{transform:matrix(0.153649,-0.003073,0.004999,0.249950,0,0);-ms-transform:matrix(0.153649,-0.003073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153649,-0.003073,0.004999,0.249950,0,0);}
.mf8_c00246{transform:matrix(0.154999,-0.003100,0.004999,0.249950,0,0);-ms-transform:matrix(0.154999,-0.003100,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154999,-0.003100,0.004999,0.249950,0,0);}
.m1c_c00246{transform:matrix(0.155250,-0.004813,0.007746,0.249880,0,0);-ms-transform:matrix(0.155250,-0.004813,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155250,-0.004813,0.007746,0.249880,0,0);}
.m7d_c00246{transform:matrix(0.157253,-0.003617,0.005748,0.249934,0,0);-ms-transform:matrix(0.157253,-0.003617,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157253,-0.003617,0.005748,0.249934,0,0);}
.m61_c00246{transform:matrix(0.159547,-0.004467,0.006997,0.249902,0,0);-ms-transform:matrix(0.159547,-0.004467,0.006997,0.249902,0,0);-webkit-transform:matrix(0.159547,-0.004467,0.006997,0.249902,0,0);}
.m26_c00246{transform:matrix(0.160618,-0.004979,0.007746,0.249880,0,0);-ms-transform:matrix(0.160618,-0.004979,0.007746,0.249880,0,0);-webkit-transform:matrix(0.160618,-0.004979,0.007746,0.249880,0,0);}
.ma4_c00246{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);}
.m1f_c00246{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);}
.m96_c00246{transform:matrix(0.162007,-0.003726,0.005748,0.249934,0,0);-ms-transform:matrix(0.162007,-0.003726,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162007,-0.003726,0.005748,0.249934,0,0);}
.m21_c00246{transform:matrix(0.162377,-0.005034,0.007746,0.249880,0,0);-ms-transform:matrix(0.162377,-0.005034,0.007746,0.249880,0,0);-webkit-transform:matrix(0.162377,-0.005034,0.007746,0.249880,0,0);}
.ma1_c00246{transform:matrix(0.164836,-0.003791,0.005748,0.249934,0,0);-ms-transform:matrix(0.164836,-0.003791,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164836,-0.003791,0.005748,0.249934,0,0);}
.m47_c00246{transform:matrix(0.164898,-0.004122,0.006248,0.249922,0,0);-ms-transform:matrix(0.164898,-0.004122,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164898,-0.004122,0.006248,0.249922,0,0);}
.m40_c00246{transform:matrix(0.165178,-0.004129,0.006248,0.249922,0,0);-ms-transform:matrix(0.165178,-0.004129,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165178,-0.004129,0.006248,0.249922,0,0);}
.md3_c00246{transform:matrix(0.166341,-0.003826,0.005748,0.249934,0,0);-ms-transform:matrix(0.166341,-0.003826,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166341,-0.003826,0.005748,0.249934,0,0);}
.mcf_c00246{transform:matrix(0.166616,-0.003832,0.005748,0.249934,0,0);-ms-transform:matrix(0.166616,-0.003832,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166616,-0.003832,0.005748,0.249934,0,0);}
.ma3_c00246{transform:matrix(0.166801,-0.003836,0.005748,0.249934,0,0);-ms-transform:matrix(0.166801,-0.003836,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166801,-0.003836,0.005748,0.249934,0,0);}
.m83_c00246{transform:matrix(0.167111,-0.003844,0.005748,0.249934,0,0);-ms-transform:matrix(0.167111,-0.003844,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167111,-0.003844,0.005748,0.249934,0,0);}
.m9c_c00246{transform:matrix(0.167411,-0.003850,0.005748,0.249934,0,0);-ms-transform:matrix(0.167411,-0.003850,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167411,-0.003850,0.005748,0.249934,0,0);}
.md_c00246{transform:matrix(0.167460,-0.005191,0.007746,0.249880,0,0);-ms-transform:matrix(0.167460,-0.005191,0.007746,0.249880,0,0);-webkit-transform:matrix(0.167460,-0.005191,0.007746,0.249880,0,0);}
.m92_c00246{transform:matrix(0.167631,-0.003856,0.005748,0.249934,0,0);-ms-transform:matrix(0.167631,-0.003856,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167631,-0.003856,0.005748,0.249934,0,0);}
.m10b_c00246{transform:matrix(0.168426,-0.003369,0.004999,0.249950,0,0);-ms-transform:matrix(0.168426,-0.003369,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168426,-0.003369,0.004999,0.249950,0,0);}
.md8_c00246{transform:matrix(0.168801,-0.004051,0.005998,0.249928,0,0);-ms-transform:matrix(0.168801,-0.004051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168801,-0.004051,0.005998,0.249928,0,0);}
.m13_c00246{transform:matrix(0.168994,-0.005239,0.007746,0.249880,0,0);-ms-transform:matrix(0.168994,-0.005239,0.007746,0.249880,0,0);-webkit-transform:matrix(0.168994,-0.005239,0.007746,0.249880,0,0);}
.m75_c00246{transform:matrix(0.169025,-0.003888,0.005748,0.249934,0,0);-ms-transform:matrix(0.169025,-0.003888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169025,-0.003888,0.005748,0.249934,0,0);}
.m68_c00246{transform:matrix(0.169289,-0.004740,0.006997,0.249902,0,0);-ms-transform:matrix(0.169289,-0.004740,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169289,-0.004740,0.006997,0.249902,0,0);}
.m9_c00246{transform:matrix(0.169529,-0.005255,0.007746,0.249880,0,0);-ms-transform:matrix(0.169529,-0.005255,0.007746,0.249880,0,0);-webkit-transform:matrix(0.169529,-0.005255,0.007746,0.249880,0,0);}
.m67_c00246{transform:matrix(0.169723,-0.004752,0.006997,0.249902,0,0);-ms-transform:matrix(0.169723,-0.004752,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169723,-0.004752,0.006997,0.249902,0,0);}
.md1_c00246{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);}
.m108_c00246{transform:matrix(0.171171,-0.003423,0.004999,0.249950,0,0);-ms-transform:matrix(0.171171,-0.003423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171171,-0.003423,0.004999,0.249950,0,0);}
.m42_c00246{transform:matrix(0.171516,-0.004288,0.006248,0.249922,0,0);-ms-transform:matrix(0.171516,-0.004288,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171516,-0.004288,0.006248,0.249922,0,0);}
.m59_c00246{transform:matrix(0.172068,-0.004818,0.006997,0.249902,0,0);-ms-transform:matrix(0.172068,-0.004818,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172068,-0.004818,0.006997,0.249902,0,0);}
.maf_c00246{transform:matrix(0.172069,-0.003958,0.005748,0.249934,0,0);-ms-transform:matrix(0.172069,-0.003958,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172069,-0.003958,0.005748,0.249934,0,0);}
.m35_c00246{transform:matrix(0.172146,-0.004304,0.006248,0.249922,0,0);-ms-transform:matrix(0.172146,-0.004304,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172146,-0.004304,0.006248,0.249922,0,0);}
.m0_c00246{transform:matrix(0.173246,-0.005549,0.008004,0.249872,0,0);-ms-transform:matrix(0.173246,-0.005549,0.008004,0.249872,0,0);-webkit-transform:matrix(0.173246,-0.005549,0.008004,0.249872,0,0);}
.m8d_c00246{transform:matrix(0.173274,-0.003985,0.005748,0.249934,0,0);-ms-transform:matrix(0.173274,-0.003985,0.005748,0.249934,0,0);-webkit-transform:matrix(0.173274,-0.003985,0.005748,0.249934,0,0);}
.m1b_c00246{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);}
.m94_c00246{transform:matrix(0.174034,-0.004003,0.005748,0.249934,0,0);-ms-transform:matrix(0.174034,-0.004003,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174034,-0.004003,0.005748,0.249934,0,0);}
.mfa_c00246{transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);}
.m9e_c00246{transform:matrix(0.175289,-0.004032,0.005748,0.249934,0,0);-ms-transform:matrix(0.175289,-0.004032,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175289,-0.004032,0.005748,0.249934,0,0);}
.m7c_c00246{transform:matrix(0.175848,-0.004045,0.005748,0.249934,0,0);-ms-transform:matrix(0.175848,-0.004045,0.005748,0.249934,0,0);-webkit-transform:matrix(0.175848,-0.004045,0.005748,0.249934,0,0);}
.m109_c00246{transform:matrix(0.175850,-0.003517,0.004999,0.249950,0,0);-ms-transform:matrix(0.175850,-0.003517,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175850,-0.003517,0.004999,0.249950,0,0);}
.m23_c00246{transform:matrix(0.176155,-0.005461,0.007746,0.249880,0,0);-ms-transform:matrix(0.176155,-0.005461,0.007746,0.249880,0,0);-webkit-transform:matrix(0.176155,-0.005461,0.007746,0.249880,0,0);}
.m6_c00246{transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);}
.m5c_c00246{transform:matrix(0.176971,-0.004955,0.006997,0.249902,0,0);-ms-transform:matrix(0.176971,-0.004955,0.006997,0.249902,0,0);-webkit-transform:matrix(0.176971,-0.004955,0.006997,0.249902,0,0);}
.me1_c00246{transform:matrix(0.176980,-0.003540,0.004999,0.249950,0,0);-ms-transform:matrix(0.176980,-0.003540,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176980,-0.003540,0.004999,0.249950,0,0);}
.m103_c00246{transform:matrix(0.177015,-0.003540,0.004999,0.249950,0,0);-ms-transform:matrix(0.177015,-0.003540,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177015,-0.003540,0.004999,0.249950,0,0);}
.m7a_c00246{transform:matrix(0.177158,-0.004075,0.005748,0.249934,0,0);-ms-transform:matrix(0.177158,-0.004075,0.005748,0.249934,0,0);-webkit-transform:matrix(0.177158,-0.004075,0.005748,0.249934,0,0);}
.m3_c00246{transform:matrix(0.177794,-0.005695,0.008004,0.249872,0,0);-ms-transform:matrix(0.177794,-0.005695,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177794,-0.005695,0.008004,0.249872,0,0);}
.m76_c00246{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);}
.m4d_c00246{transform:matrix(0.178234,-0.004456,0.006248,0.249922,0,0);-ms-transform:matrix(0.178234,-0.004456,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178234,-0.004456,0.006248,0.249922,0,0);}
.m10e_c00246{transform:matrix(0.179069,-0.003581,0.004999,0.249950,0,0);-ms-transform:matrix(0.179069,-0.003581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179069,-0.003581,0.004999,0.249950,0,0);}
.mda_c00246{transform:matrix(0.179298,-0.004303,0.005998,0.249928,0,0);-ms-transform:matrix(0.179298,-0.004303,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179298,-0.004303,0.005998,0.249928,0,0);}
.m38_c00246{transform:matrix(0.179319,-0.004483,0.006248,0.249922,0,0);-ms-transform:matrix(0.179319,-0.004483,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179319,-0.004483,0.006248,0.249922,0,0);}
.m5d_c00246{transform:matrix(0.179700,-0.005032,0.006997,0.249902,0,0);-ms-transform:matrix(0.179700,-0.005032,0.006997,0.249902,0,0);-webkit-transform:matrix(0.179700,-0.005032,0.006997,0.249902,0,0);}
.mcc_c00246{transform:matrix(0.180932,-0.004161,0.005748,0.249934,0,0);-ms-transform:matrix(0.180932,-0.004161,0.005748,0.249934,0,0);-webkit-transform:matrix(0.180932,-0.004161,0.005748,0.249934,0,0);}
.m7e_c00246{transform:matrix(0.181062,-0.004164,0.005748,0.249934,0,0);-ms-transform:matrix(0.181062,-0.004164,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181062,-0.004164,0.005748,0.249934,0,0);}
.m8c_c00246{transform:matrix(0.181177,-0.004167,0.005748,0.249934,0,0);-ms-transform:matrix(0.181177,-0.004167,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181177,-0.004167,0.005748,0.249934,0,0);}
.m10c_c00246{transform:matrix(0.181384,-0.003628,0.004999,0.249950,0,0);-ms-transform:matrix(0.181384,-0.003628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181384,-0.003628,0.004999,0.249950,0,0);}
.mfb_c00246{transform:matrix(0.181864,-0.003637,0.004999,0.249950,0,0);-ms-transform:matrix(0.181864,-0.003637,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181864,-0.003637,0.004999,0.249950,0,0);}
.md5_c00246{transform:matrix(0.182103,-0.004370,0.005998,0.249928,0,0);-ms-transform:matrix(0.182103,-0.004370,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182103,-0.004370,0.005998,0.249928,0,0);}
.m24_c00246{transform:matrix(0.182522,-0.005658,0.007746,0.249880,0,0);-ms-transform:matrix(0.182522,-0.005658,0.007746,0.249880,0,0);-webkit-transform:matrix(0.182522,-0.005658,0.007746,0.249880,0,0);}
.m45_c00246{transform:matrix(0.182928,-0.004573,0.006248,0.249922,0,0);-ms-transform:matrix(0.182928,-0.004573,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182928,-0.004573,0.006248,0.249922,0,0);}
.mc7_c00246{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);}
.md7_c00246{transform:matrix(0.183262,-0.004398,0.005998,0.249928,0,0);-ms-transform:matrix(0.183262,-0.004398,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183262,-0.004398,0.005998,0.249928,0,0);}
.ma7_c00246{transform:matrix(0.183686,-0.004225,0.005748,0.249934,0,0);-ms-transform:matrix(0.183686,-0.004225,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183686,-0.004225,0.005748,0.249934,0,0);}
.mf7_c00246{transform:matrix(0.183813,-0.003676,0.004999,0.249950,0,0);-ms-transform:matrix(0.183813,-0.003676,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183813,-0.003676,0.004999,0.249950,0,0);}
.mf5_c00246{transform:matrix(0.184333,-0.003687,0.004999,0.249950,0,0);-ms-transform:matrix(0.184333,-0.003687,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184333,-0.003687,0.004999,0.249950,0,0);}
.m98_c00246{transform:matrix(0.184891,-0.004252,0.005748,0.249934,0,0);-ms-transform:matrix(0.184891,-0.004252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184891,-0.004252,0.005748,0.249934,0,0);}
.m57_c00246{transform:matrix(0.185072,-0.005182,0.006997,0.249902,0,0);-ms-transform:matrix(0.185072,-0.005182,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185072,-0.005182,0.006997,0.249902,0,0);}
.m78_c00246{transform:matrix(0.185171,-0.004259,0.005748,0.249934,0,0);-ms-transform:matrix(0.185171,-0.004259,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185171,-0.004259,0.005748,0.249934,0,0);}
.m49_c00246{transform:matrix(0.185192,-0.004630,0.006248,0.249922,0,0);-ms-transform:matrix(0.185192,-0.004630,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185192,-0.004630,0.006248,0.249922,0,0);}
.m6a_c00246{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);}
.m60_c00246{transform:matrix(0.185957,-0.005207,0.006997,0.249902,0,0);-ms-transform:matrix(0.185957,-0.005207,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185957,-0.005207,0.006997,0.249902,0,0);}
.m43_c00246{transform:matrix(0.186357,-0.004659,0.006248,0.249922,0,0);-ms-transform:matrix(0.186357,-0.004659,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186357,-0.004659,0.006248,0.249922,0,0);}
.m72_c00246{transform:matrix(0.186378,-0.003728,0.004999,0.249950,0,0);-ms-transform:matrix(0.186378,-0.003728,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186378,-0.003728,0.004999,0.249950,0,0);}
.m22_c00246{transform:matrix(0.186885,-0.005793,0.007746,0.249880,0,0);-ms-transform:matrix(0.186885,-0.005793,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186885,-0.005793,0.007746,0.249880,0,0);}
.md2_c00246{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);}
.md6_c00246{transform:matrix(0.187756,-0.004506,0.005998,0.249928,0,0);-ms-transform:matrix(0.187756,-0.004506,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187756,-0.004506,0.005998,0.249928,0,0);}
.m3f_c00246{transform:matrix(0.188001,-0.004700,0.006248,0.249922,0,0);-ms-transform:matrix(0.188001,-0.004700,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188001,-0.004700,0.006248,0.249922,0,0);}
.md4_c00246{transform:matrix(0.188090,-0.004326,0.005748,0.249934,0,0);-ms-transform:matrix(0.188090,-0.004326,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188090,-0.004326,0.005748,0.249934,0,0);}
.m82_c00246{transform:matrix(0.188125,-0.004327,0.005748,0.249934,0,0);-ms-transform:matrix(0.188125,-0.004327,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188125,-0.004327,0.005748,0.249934,0,0);}
.m110_c00246{transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);-ms-transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);}
.mb_c00246{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);}
.mc2_c00246{transform:matrix(0.188965,-0.004346,0.005748,0.249934,0,0);-ms-transform:matrix(0.188965,-0.004346,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188965,-0.004346,0.005748,0.249934,0,0);}
.m29_c00246{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);}
.m15_c00246{transform:matrix(0.189329,-0.005869,0.007746,0.249880,0,0);-ms-transform:matrix(0.189329,-0.005869,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189329,-0.005869,0.007746,0.249880,0,0);}
.ma5_c00246{transform:matrix(0.189960,-0.004369,0.005748,0.249934,0,0);-ms-transform:matrix(0.189960,-0.004369,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189960,-0.004369,0.005748,0.249934,0,0);}
.m100_c00246{transform:matrix(0.190077,-0.003802,0.004999,0.249950,0,0);-ms-transform:matrix(0.190077,-0.003802,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190077,-0.003802,0.004999,0.249950,0,0);}
.mf3_c00246{transform:matrix(0.190557,-0.003811,0.004999,0.249950,0,0);-ms-transform:matrix(0.190557,-0.003811,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190557,-0.003811,0.004999,0.249950,0,0);}
.m6d_c00246{transform:matrix(0.190772,-0.003815,0.004999,0.249950,0,0);-ms-transform:matrix(0.190772,-0.003815,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190772,-0.003815,0.004999,0.249950,0,0);}
.mff_c00246{transform:matrix(0.190847,-0.003817,0.004999,0.249950,0,0);-ms-transform:matrix(0.190847,-0.003817,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190847,-0.003817,0.004999,0.249950,0,0);}
.me_c00246{transform:matrix(0.191193,-0.005927,0.007746,0.249880,0,0);-ms-transform:matrix(0.191193,-0.005927,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191193,-0.005927,0.007746,0.249880,0,0);}
.mce_c00246{transform:matrix(0.191349,-0.004401,0.005748,0.249934,0,0);-ms-transform:matrix(0.191349,-0.004401,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191349,-0.004401,0.005748,0.249934,0,0);}
.m86_c00246{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);}
.md0_c00246{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);}
.m79_c00246{transform:matrix(0.192144,-0.004419,0.005748,0.249934,0,0);-ms-transform:matrix(0.192144,-0.004419,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192144,-0.004419,0.005748,0.249934,0,0);}
.m37_c00246{transform:matrix(0.193585,-0.004840,0.006248,0.249922,0,0);-ms-transform:matrix(0.193585,-0.004840,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193585,-0.004840,0.006248,0.249922,0,0);}
.mad_c00246{transform:matrix(0.193594,-0.004453,0.005748,0.249934,0,0);-ms-transform:matrix(0.193594,-0.004453,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193594,-0.004453,0.005748,0.249934,0,0);}
.m93_c00246{transform:matrix(0.194294,-0.004469,0.005748,0.249934,0,0);-ms-transform:matrix(0.194294,-0.004469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194294,-0.004469,0.005748,0.249934,0,0);}
.mee_c00246{transform:matrix(0.194391,-0.003888,0.004999,0.249950,0,0);-ms-transform:matrix(0.194391,-0.003888,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194391,-0.003888,0.004999,0.249950,0,0);}
.mc_c00246{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);}
.m80_c00246{transform:matrix(0.194758,-0.004479,0.005748,0.249934,0,0);-ms-transform:matrix(0.194758,-0.004479,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194758,-0.004479,0.005748,0.249934,0,0);}
.m55_c00246{transform:matrix(0.194934,-0.005458,0.006997,0.249902,0,0);-ms-transform:matrix(0.194934,-0.005458,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194934,-0.005458,0.006997,0.249902,0,0);}
.m6c_c00246{transform:matrix(0.194986,-0.003900,0.004999,0.249950,0,0);-ms-transform:matrix(0.194986,-0.003900,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194986,-0.003900,0.004999,0.249950,0,0);}
.mbf_c00246{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);}
.mdc_c00246{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);}
.m85_c00246{transform:matrix(0.195998,-0.004508,0.005748,0.249934,0,0);-ms-transform:matrix(0.195998,-0.004508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195998,-0.004508,0.005748,0.249934,0,0);}
.m14_c00246{transform:matrix(0.196391,-0.006088,0.007746,0.249880,0,0);-ms-transform:matrix(0.196391,-0.006088,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196391,-0.006088,0.007746,0.249880,0,0);}
.mec_c00246{transform:matrix(0.196466,-0.003929,0.004999,0.249950,0,0);-ms-transform:matrix(0.196466,-0.003929,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196466,-0.003929,0.004999,0.249950,0,0);}
.m5e_c00246{transform:matrix(0.196823,-0.005511,0.006997,0.249902,0,0);-ms-transform:matrix(0.196823,-0.005511,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196823,-0.005511,0.006997,0.249902,0,0);}
.m7_c00246{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);}
.m101_c00246{transform:matrix(0.197086,-0.003942,0.004999,0.249950,0,0);-ms-transform:matrix(0.197086,-0.003942,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197086,-0.003942,0.004999,0.249950,0,0);}
.m48_c00246{transform:matrix(0.197583,-0.004940,0.006248,0.249922,0,0);-ms-transform:matrix(0.197583,-0.004940,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197583,-0.004940,0.006248,0.249922,0,0);}
.m33_c00246{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);}
.m3d_c00246{transform:matrix(0.198238,-0.004956,0.006248,0.249922,0,0);-ms-transform:matrix(0.198238,-0.004956,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198238,-0.004956,0.006248,0.249922,0,0);}
.mdd_c00246{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);}
.m1e_c00246{transform:matrix(0.199464,-0.006183,0.007746,0.249880,0,0);-ms-transform:matrix(0.199464,-0.006183,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199464,-0.006183,0.007746,0.249880,0,0);}
.m4b_c00246{transform:matrix(0.199513,-0.004988,0.006248,0.249922,0,0);-ms-transform:matrix(0.199513,-0.004988,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199513,-0.004988,0.006248,0.249922,0,0);}
.mf1_c00246{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);}
.mfc_c00246{transform:matrix(0.199705,-0.003994,0.004999,0.249950,0,0);-ms-transform:matrix(0.199705,-0.003994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199705,-0.003994,0.004999,0.249950,0,0);}
.m2d_c00246{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);}
.mba_c00246{transform:matrix(0.200082,-0.004602,0.005748,0.249934,0,0);-ms-transform:matrix(0.200082,-0.004602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200082,-0.004602,0.005748,0.249934,0,0);}
.m91_c00246{transform:matrix(0.200112,-0.004603,0.005748,0.249934,0,0);-ms-transform:matrix(0.200112,-0.004603,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200112,-0.004603,0.005748,0.249934,0,0);}
.ma0_c00246{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);}
.m64_c00246{transform:matrix(0.200516,-0.005614,0.006997,0.249902,0,0);-ms-transform:matrix(0.200516,-0.005614,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200516,-0.005614,0.006997,0.249902,0,0);}
.m6b_c00246{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);}
.mbe_c00246{transform:matrix(0.201152,-0.004626,0.005748,0.249934,0,0);-ms-transform:matrix(0.201152,-0.004626,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201152,-0.004626,0.005748,0.249934,0,0);}
.mac_c00246{transform:matrix(0.201387,-0.004632,0.005748,0.249934,0,0);-ms-transform:matrix(0.201387,-0.004632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201387,-0.004632,0.005748,0.249934,0,0);}
.me2_c00246{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);}
.m2e_c00246{transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);-ms-transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);}
.m89_c00246{transform:matrix(0.203126,-0.004672,0.005748,0.249934,0,0);-ms-transform:matrix(0.203126,-0.004672,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203126,-0.004672,0.005748,0.249934,0,0);}
.m1d_c00246{transform:matrix(0.203222,-0.006300,0.007746,0.249880,0,0);-ms-transform:matrix(0.203222,-0.006300,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203222,-0.006300,0.007746,0.249880,0,0);}
.ma2_c00246{transform:matrix(0.203926,-0.004690,0.005748,0.249934,0,0);-ms-transform:matrix(0.203926,-0.004690,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203926,-0.004690,0.005748,0.249934,0,0);}
.me5_c00246{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);}
.m5f_c00246{transform:matrix(0.204570,-0.005728,0.006997,0.249902,0,0);-ms-transform:matrix(0.204570,-0.005728,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204570,-0.005728,0.006997,0.249902,0,0);}
.m106_c00246{transform:matrix(0.204649,-0.004093,0.004999,0.249950,0,0);-ms-transform:matrix(0.204649,-0.004093,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204649,-0.004093,0.004999,0.249950,0,0);}
.m8f_c00246{transform:matrix(0.204681,-0.004708,0.005748,0.249934,0,0);-ms-transform:matrix(0.204681,-0.004708,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204681,-0.004708,0.005748,0.249934,0,0);}
.mc9_c00246{transform:matrix(0.205001,-0.004715,0.005748,0.249934,0,0);-ms-transform:matrix(0.205001,-0.004715,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205001,-0.004715,0.005748,0.249934,0,0);}
.m28_c00246{transform:matrix(0.205076,-0.005127,0.006248,0.249922,0,0);-ms-transform:matrix(0.205076,-0.005127,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205076,-0.005127,0.006248,0.249922,0,0);}
.m53_c00246{transform:matrix(0.205245,-0.005747,0.006997,0.249902,0,0);-ms-transform:matrix(0.205245,-0.005747,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205245,-0.005747,0.006997,0.249902,0,0);}
.m90_c00246{transform:matrix(0.205301,-0.004722,0.005748,0.249934,0,0);-ms-transform:matrix(0.205301,-0.004722,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205301,-0.004722,0.005748,0.249934,0,0);}
.m34_c00246{transform:matrix(0.205896,-0.005147,0.006248,0.249922,0,0);-ms-transform:matrix(0.205896,-0.005147,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205896,-0.005147,0.006248,0.249922,0,0);}
.me3_c00246{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);}
.mfe_c00246{transform:matrix(0.207788,-0.004156,0.004999,0.249950,0,0);-ms-transform:matrix(0.207788,-0.004156,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207788,-0.004156,0.004999,0.249950,0,0);}
.m69_c00246{transform:matrix(0.208373,-0.005834,0.006997,0.249902,0,0);-ms-transform:matrix(0.208373,-0.005834,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208373,-0.005834,0.006997,0.249902,0,0);}
.m56_c00246{transform:matrix(0.208383,-0.005835,0.006997,0.249902,0,0);-ms-transform:matrix(0.208383,-0.005835,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208383,-0.005835,0.006997,0.249902,0,0);}
.m7b_c00246{transform:matrix(0.208390,-0.004793,0.005748,0.249934,0,0);-ms-transform:matrix(0.208390,-0.004793,0.005748,0.249934,0,0);-webkit-transform:matrix(0.208390,-0.004793,0.005748,0.249934,0,0);}
.m8_c00246{transform:matrix(0.208775,-0.006472,0.007746,0.249880,0,0);-ms-transform:matrix(0.208775,-0.006472,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208775,-0.006472,0.007746,0.249880,0,0);}
.ma9_c00246{transform:matrix(0.209105,-0.004809,0.005748,0.249934,0,0);-ms-transform:matrix(0.209105,-0.004809,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209105,-0.004809,0.005748,0.249934,0,0);}
.m9f_c00246{transform:matrix(0.210044,-0.004831,0.005748,0.249934,0,0);-ms-transform:matrix(0.210044,-0.004831,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210044,-0.004831,0.005748,0.249934,0,0);}
.m97_c00246{transform:matrix(0.210354,-0.004838,0.005748,0.249934,0,0);-ms-transform:matrix(0.210354,-0.004838,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210354,-0.004838,0.005748,0.249934,0,0);}
.me6_c00246{transform:matrix(0.211043,-0.004221,0.004999,0.249950,0,0);-ms-transform:matrix(0.211043,-0.004221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211043,-0.004221,0.004999,0.249950,0,0);}
.m9a_c00246{transform:matrix(0.211059,-0.004854,0.005748,0.249934,0,0);-ms-transform:matrix(0.211059,-0.004854,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211059,-0.004854,0.005748,0.249934,0,0);}
.m71_c00246{transform:matrix(0.211903,-0.004238,0.004999,0.249950,0,0);-ms-transform:matrix(0.211903,-0.004238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211903,-0.004238,0.004999,0.249950,0,0);}
.m41_c00246{transform:matrix(0.211979,-0.005299,0.006248,0.249922,0,0);-ms-transform:matrix(0.211979,-0.005299,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211979,-0.005299,0.006248,0.249922,0,0);}
.ma6_c00246{transform:matrix(0.212379,-0.004885,0.005748,0.249934,0,0);-ms-transform:matrix(0.212379,-0.004885,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212379,-0.004885,0.005748,0.249934,0,0);}
.md9_c00246{transform:matrix(0.212459,-0.005099,0.005998,0.249928,0,0);-ms-transform:matrix(0.212459,-0.005099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212459,-0.005099,0.005998,0.249928,0,0);}
.mf6_c00246{transform:matrix(0.212652,-0.004253,0.004999,0.249950,0,0);-ms-transform:matrix(0.212652,-0.004253,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212652,-0.004253,0.004999,0.249950,0,0);}
.m25_c00246{transform:matrix(0.212838,-0.006598,0.007746,0.249880,0,0);-ms-transform:matrix(0.212838,-0.006598,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212838,-0.006598,0.007746,0.249880,0,0);}
.m20_c00246{transform:matrix(0.212938,-0.006601,0.007746,0.249880,0,0);-ms-transform:matrix(0.212938,-0.006601,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212938,-0.006601,0.007746,0.249880,0,0);}
.me9_c00246{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);}
.mf0_c00246{transform:matrix(0.214327,-0.004287,0.004999,0.249950,0,0);-ms-transform:matrix(0.214327,-0.004287,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214327,-0.004287,0.004999,0.249950,0,0);}
.m17_c00246{transform:matrix(0.214352,-0.006645,0.007746,0.249880,0,0);-ms-transform:matrix(0.214352,-0.006645,0.007746,0.249880,0,0);-webkit-transform:matrix(0.214352,-0.006645,0.007746,0.249880,0,0);}
.m62_c00246{transform:matrix(0.214401,-0.006003,0.006997,0.249902,0,0);-ms-transform:matrix(0.214401,-0.006003,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214401,-0.006003,0.006997,0.249902,0,0);}
.m8a_c00246{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);}
.mc3_c00246{transform:matrix(0.214808,-0.004941,0.005748,0.249934,0,0);-ms-transform:matrix(0.214808,-0.004941,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214808,-0.004941,0.005748,0.249934,0,0);}
.m3e_c00246{transform:matrix(0.215423,-0.005386,0.006248,0.249922,0,0);-ms-transform:matrix(0.215423,-0.005386,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215423,-0.005386,0.006248,0.249922,0,0);}
.m8e_c00246{transform:matrix(0.215458,-0.004956,0.005748,0.249934,0,0);-ms-transform:matrix(0.215458,-0.004956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215458,-0.004956,0.005748,0.249934,0,0);}
.meb_c00246{transform:matrix(0.215972,-0.004319,0.004999,0.249950,0,0);-ms-transform:matrix(0.215972,-0.004319,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215972,-0.004319,0.004999,0.249950,0,0);}
.m7f_c00246{transform:matrix(0.216028,-0.004969,0.005748,0.249934,0,0);-ms-transform:matrix(0.216028,-0.004969,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216028,-0.004969,0.005748,0.249934,0,0);}
.m111_c00246{transform:matrix(0.216252,-0.004325,0.004999,0.249950,0,0);-ms-transform:matrix(0.216252,-0.004325,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216252,-0.004325,0.004999,0.249950,0,0);}
.m54_c00246{transform:matrix(0.217415,-0.006088,0.006997,0.249902,0,0);-ms-transform:matrix(0.217415,-0.006088,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217415,-0.006088,0.006997,0.249902,0,0);}
.me0_c00246{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);}
.m73_c00246{transform:matrix(0.218536,-0.004371,0.004999,0.249950,0,0);-ms-transform:matrix(0.218536,-0.004371,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218536,-0.004371,0.004999,0.249950,0,0);}
.m3c_c00246{transform:matrix(0.218677,-0.005467,0.006248,0.249922,0,0);-ms-transform:matrix(0.218677,-0.005467,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218677,-0.005467,0.006248,0.249922,0,0);}
.m77_c00246{transform:matrix(0.219152,-0.005040,0.005748,0.249934,0,0);-ms-transform:matrix(0.219152,-0.005040,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219152,-0.005040,0.005748,0.249934,0,0);}
.m114_c00246{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);}
.m104_c00246{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);}
.maa_c00246{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);}
.mf2_c00246{transform:matrix(0.220406,-0.004408,0.004999,0.249950,0,0);-ms-transform:matrix(0.220406,-0.004408,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220406,-0.004408,0.004999,0.249950,0,0);}
.ma_c00246{transform:matrix(0.220459,-0.006834,0.007746,0.249880,0,0);-ms-transform:matrix(0.220459,-0.006834,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220459,-0.006834,0.007746,0.249880,0,0);}
.mae_c00246{transform:matrix(0.221102,-0.005085,0.005748,0.249934,0,0);-ms-transform:matrix(0.221102,-0.005085,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221102,-0.005085,0.005748,0.249934,0,0);}
.m65_c00246{transform:matrix(0.221118,-0.006191,0.006997,0.249902,0,0);-ms-transform:matrix(0.221118,-0.006191,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221118,-0.006191,0.006997,0.249902,0,0);}
.m84_c00246{transform:matrix(0.221251,-0.005089,0.005748,0.249934,0,0);-ms-transform:matrix(0.221251,-0.005089,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221251,-0.005089,0.005748,0.249934,0,0);}
.ma8_c00246{transform:matrix(0.221386,-0.005092,0.005748,0.249934,0,0);-ms-transform:matrix(0.221386,-0.005092,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221386,-0.005092,0.005748,0.249934,0,0);}
.mea_c00246{transform:matrix(0.221426,-0.004429,0.004999,0.249950,0,0);-ms-transform:matrix(0.221426,-0.004429,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221426,-0.004429,0.004999,0.249950,0,0);}
.mef_c00246{transform:matrix(0.221836,-0.004437,0.004999,0.249950,0,0);-ms-transform:matrix(0.221836,-0.004437,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221836,-0.004437,0.004999,0.249950,0,0);}
.m107_c00246{transform:matrix(0.222456,-0.004449,0.004999,0.249950,0,0);-ms-transform:matrix(0.222456,-0.004449,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222456,-0.004449,0.004999,0.249950,0,0);}
.m2b_c00246{transform:matrix(0.223190,-0.005580,0.006248,0.249922,0,0);-ms-transform:matrix(0.223190,-0.005580,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223190,-0.005580,0.006248,0.249922,0,0);}
.mf4_c00246{transform:matrix(0.223700,-0.004474,0.004999,0.249950,0,0);-ms-transform:matrix(0.223700,-0.004474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223700,-0.004474,0.004999,0.249950,0,0);}
.mfd_c00246{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);}
.m102_c00246{transform:matrix(0.224165,-0.004483,0.004999,0.249950,0,0);-ms-transform:matrix(0.224165,-0.004483,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224165,-0.004483,0.004999,0.249950,0,0);}
.m16_c00246{transform:matrix(0.224727,-0.006967,0.007746,0.249880,0,0);-ms-transform:matrix(0.224727,-0.006967,0.007746,0.249880,0,0);-webkit-transform:matrix(0.224727,-0.006967,0.007746,0.249880,0,0);}
.m18_c00246{transform:matrix(0.224887,-0.006971,0.007746,0.249880,0,0);-ms-transform:matrix(0.224887,-0.006971,0.007746,0.249880,0,0);-webkit-transform:matrix(0.224887,-0.006971,0.007746,0.249880,0,0);}
.mbd_c00246{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);}
.m36_c00246{transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);-ms-transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);-webkit-transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);}
.m10f_c00246{transform:matrix(0.227889,-0.004558,0.004999,0.249950,0,0);-ms-transform:matrix(0.227889,-0.004558,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227889,-0.004558,0.004999,0.249950,0,0);}
.m12_c00246{transform:matrix(0.228000,-0.007068,0.007746,0.249880,0,0);-ms-transform:matrix(0.228000,-0.007068,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228000,-0.007068,0.007746,0.249880,0,0);}
.mf9_c00246{transform:matrix(0.228044,-0.004561,0.004999,0.249950,0,0);-ms-transform:matrix(0.228044,-0.004561,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228044,-0.004561,0.004999,0.249950,0,0);}
.m87_c00246{transform:matrix(0.229169,-0.005271,0.005748,0.249934,0,0);-ms-transform:matrix(0.229169,-0.005271,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229169,-0.005271,0.005748,0.249934,0,0);}
.m70_c00246{transform:matrix(0.229294,-0.004586,0.004999,0.249950,0,0);-ms-transform:matrix(0.229294,-0.004586,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229294,-0.004586,0.004999,0.249950,0,0);}
.m2c_c00246{transform:matrix(0.229538,-0.005738,0.006248,0.249922,0,0);-ms-transform:matrix(0.229538,-0.005738,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229538,-0.005738,0.006248,0.249922,0,0);}
.m88_c00246{transform:matrix(0.229544,-0.005280,0.005748,0.249934,0,0);-ms-transform:matrix(0.229544,-0.005280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229544,-0.005280,0.005748,0.249934,0,0);}
.m39_c00246{transform:matrix(0.230793,-0.005770,0.006248,0.249922,0,0);-ms-transform:matrix(0.230793,-0.005770,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230793,-0.005770,0.006248,0.249922,0,0);}
.mcb_c00246{transform:matrix(0.231064,-0.005314,0.005748,0.249934,0,0);-ms-transform:matrix(0.231064,-0.005314,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231064,-0.005314,0.005748,0.249934,0,0);}
.mc4_c00246{transform:matrix(0.231189,-0.005317,0.005748,0.249934,0,0);-ms-transform:matrix(0.231189,-0.005317,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231189,-0.005317,0.005748,0.249934,0,0);}
.m115_c00246{transform:matrix(0.231854,-0.004637,0.004999,0.249950,0,0);-ms-transform:matrix(0.231854,-0.004637,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231854,-0.004637,0.004999,0.249950,0,0);}
.m4a_c00246{transform:matrix(0.232562,-0.005814,0.006248,0.249922,0,0);-ms-transform:matrix(0.232562,-0.005814,0.006248,0.249922,0,0);-webkit-transform:matrix(0.232562,-0.005814,0.006248,0.249922,0,0);}
.m74_c00246{transform:matrix(0.233328,-0.005367,0.005748,0.249934,0,0);-ms-transform:matrix(0.233328,-0.005367,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233328,-0.005367,0.005748,0.249934,0,0);}
.mb1_c00246{transform:matrix(0.233508,-0.005371,0.005748,0.249934,0,0);-ms-transform:matrix(0.233508,-0.005371,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233508,-0.005371,0.005748,0.249934,0,0);}
.m30_c00246{transform:matrix(0.234377,-0.005859,0.006248,0.249922,0,0);-ms-transform:matrix(0.234377,-0.005859,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234377,-0.005859,0.006248,0.249922,0,0);}
.m8b_c00246{transform:matrix(0.237232,-0.005456,0.005748,0.249934,0,0);-ms-transform:matrix(0.237232,-0.005456,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237232,-0.005456,0.005748,0.249934,0,0);}
.m95_c00246{transform:matrix(0.237672,-0.005466,0.005748,0.249934,0,0);-ms-transform:matrix(0.237672,-0.005466,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237672,-0.005466,0.005748,0.249934,0,0);}
.mca_c00246{transform:matrix(0.237937,-0.005473,0.005748,0.249934,0,0);-ms-transform:matrix(0.237937,-0.005473,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237937,-0.005473,0.005748,0.249934,0,0);}
.med_c00246{transform:matrix(0.238197,-0.004764,0.004999,0.249950,0,0);-ms-transform:matrix(0.238197,-0.004764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238197,-0.004764,0.004999,0.249950,0,0);}
.mf_c00246{transform:matrix(0.240270,-0.007448,0.007746,0.249880,0,0);-ms-transform:matrix(0.240270,-0.007448,0.007746,0.249880,0,0);-webkit-transform:matrix(0.240270,-0.007448,0.007746,0.249880,0,0);}
.mb7_c00246{transform:matrix(0.240946,-0.005542,0.005748,0.249934,0,0);-ms-transform:matrix(0.240946,-0.005542,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240946,-0.005542,0.005748,0.249934,0,0);}
.m27_c00246{transform:matrix(0.241470,-0.006037,0.006248,0.249922,0,0);-ms-transform:matrix(0.241470,-0.006037,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241470,-0.006037,0.006248,0.249922,0,0);}
.m63_c00246{transform:matrix(0.242455,-0.006789,0.006997,0.249902,0,0);-ms-transform:matrix(0.242455,-0.006789,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242455,-0.006789,0.006997,0.249902,0,0);}
.m112_c00246{transform:matrix(0.244261,-0.004885,0.004999,0.249950,0,0);-ms-transform:matrix(0.244261,-0.004885,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244261,-0.004885,0.004999,0.249950,0,0);}
.mc8_c00246{transform:matrix(0.245365,-0.005643,0.005748,0.249934,0,0);-ms-transform:matrix(0.245365,-0.005643,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245365,-0.005643,0.005748,0.249934,0,0);}
.m5b_c00246{transform:matrix(0.245964,-0.006887,0.006997,0.249902,0,0);-ms-transform:matrix(0.245964,-0.006887,0.006997,0.249902,0,0);-webkit-transform:matrix(0.245964,-0.006887,0.006997,0.249902,0,0);}
.m1a_c00246{transform:matrix(0.246057,-0.007628,0.007746,0.249880,0,0);-ms-transform:matrix(0.246057,-0.007628,0.007746,0.249880,0,0);-webkit-transform:matrix(0.246057,-0.007628,0.007746,0.249880,0,0);}
.m2a_c00246{transform:matrix(0.249667,-0.006242,0.006248,0.249922,0,0);-ms-transform:matrix(0.249667,-0.006242,0.006248,0.249922,0,0);-webkit-transform:matrix(0.249667,-0.006242,0.006248,0.249922,0,0);}
.m19_c00246{transform:matrix(0.250120,-0.007754,0.007746,0.249880,0,0);-ms-transform:matrix(0.250120,-0.007754,0.007746,0.249880,0,0);-webkit-transform:matrix(0.250120,-0.007754,0.007746,0.249880,0,0);}
.mb9_c00246{transform:matrix(0.250264,-0.005756,0.005748,0.249934,0,0);-ms-transform:matrix(0.250264,-0.005756,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250264,-0.005756,0.005748,0.249934,0,0);}
.me7_c00246{transform:matrix(0.250705,-0.005014,0.004999,0.249950,0,0);-ms-transform:matrix(0.250705,-0.005014,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250705,-0.005014,0.004999,0.249950,0,0);}
.mde_c00246{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);}
.me4_c00246{transform:matrix(0.251460,-0.005029,0.004999,0.249950,0,0);-ms-transform:matrix(0.251460,-0.005029,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251460,-0.005029,0.004999,0.249950,0,0);}
.m10d_c00246{transform:matrix(0.253104,-0.005062,0.004999,0.249950,0,0);-ms-transform:matrix(0.253104,-0.005062,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253104,-0.005062,0.004999,0.249950,0,0);}
.mc0_c00246{transform:matrix(0.253968,-0.005841,0.005748,0.249934,0,0);-ms-transform:matrix(0.253968,-0.005841,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253968,-0.005841,0.005748,0.249934,0,0);}
.m44_c00246{transform:matrix(0.256020,-0.006401,0.006248,0.249922,0,0);-ms-transform:matrix(0.256020,-0.006401,0.006248,0.249922,0,0);-webkit-transform:matrix(0.256020,-0.006401,0.006248,0.249922,0,0);}
.mc6_c00246{transform:matrix(0.258442,-0.005944,0.005748,0.249934,0,0);-ms-transform:matrix(0.258442,-0.005944,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258442,-0.005944,0.005748,0.249934,0,0);}
.mb4_c00246{transform:matrix(0.262301,-0.006033,0.005748,0.249934,0,0);-ms-transform:matrix(0.262301,-0.006033,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262301,-0.006033,0.005748,0.249934,0,0);}
.mb5_c00246{transform:matrix(0.262466,-0.006037,0.005748,0.249934,0,0);-ms-transform:matrix(0.262466,-0.006037,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262466,-0.006037,0.005748,0.249934,0,0);}
.m99_c00246{transform:matrix(0.264740,-0.006089,0.005748,0.249934,0,0);-ms-transform:matrix(0.264740,-0.006089,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264740,-0.006089,0.005748,0.249934,0,0);}
.m3b_c00246{transform:matrix(0.265387,-0.006635,0.006248,0.249922,0,0);-ms-transform:matrix(0.265387,-0.006635,0.006248,0.249922,0,0);-webkit-transform:matrix(0.265387,-0.006635,0.006248,0.249922,0,0);}
.mb0_c00246{transform:matrix(0.266235,-0.006123,0.005748,0.249934,0,0);-ms-transform:matrix(0.266235,-0.006123,0.005748,0.249934,0,0);-webkit-transform:matrix(0.266235,-0.006123,0.005748,0.249934,0,0);}
.mc1_c00246{transform:matrix(0.268454,-0.006174,0.005748,0.249934,0,0);-ms-transform:matrix(0.268454,-0.006174,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268454,-0.006174,0.005748,0.249934,0,0);}
.m32_c00246{transform:matrix(0.271460,-0.006787,0.006248,0.249922,0,0);-ms-transform:matrix(0.271460,-0.006787,0.006248,0.249922,0,0);-webkit-transform:matrix(0.271460,-0.006787,0.006248,0.249922,0,0);}
.m105_c00246{transform:matrix(0.271576,-0.005432,0.004999,0.249950,0,0);-ms-transform:matrix(0.271576,-0.005432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271576,-0.005432,0.004999,0.249950,0,0);}
.mb8_c00246{transform:matrix(0.276657,-0.006363,0.005748,0.249934,0,0);-ms-transform:matrix(0.276657,-0.006363,0.005748,0.249934,0,0);-webkit-transform:matrix(0.276657,-0.006363,0.005748,0.249934,0,0);}
.m51_c00246{transform:matrix(0.277356,-0.007766,0.006997,0.249902,0,0);-ms-transform:matrix(0.277356,-0.007766,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277356,-0.007766,0.006997,0.249902,0,0);}
.m50_c00246{transform:matrix(0.277821,-0.007779,0.006997,0.249902,0,0);-ms-transform:matrix(0.277821,-0.007779,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277821,-0.007779,0.006997,0.249902,0,0);}
.mdf_c00246{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.288197,-0.009232,0.008004,0.249872,0,0);-ms-transform:matrix(0.288197,-0.009232,0.008004,0.249872,0,0);-webkit-transform:matrix(0.288197,-0.009232,0.008004,0.249872,0,0);}
.me8_c00246{transform:matrix(0.289332,-0.005787,0.004999,0.249950,0,0);-ms-transform:matrix(0.289332,-0.005787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.289332,-0.005787,0.004999,0.249950,0,0);}
.mbb_c00246{transform:matrix(0.297871,-0.006851,0.005748,0.249934,0,0);-ms-transform:matrix(0.297871,-0.006851,0.005748,0.249934,0,0);-webkit-transform:matrix(0.297871,-0.006851,0.005748,0.249934,0,0);}
.m2_c00246{transform:matrix(0.300716,-0.009633,0.008004,0.249872,0,0);-ms-transform:matrix(0.300716,-0.009633,0.008004,0.249872,0,0);-webkit-transform:matrix(0.300716,-0.009633,0.008004,0.249872,0,0);}
.m81_c00246{transform:matrix(0.301645,-0.006938,0.005748,0.249934,0,0);-ms-transform:matrix(0.301645,-0.006938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.301645,-0.006938,0.005748,0.249934,0,0);}
.m9b_c00246{transform:matrix(0.303090,-0.006971,0.005748,0.249934,0,0);-ms-transform:matrix(0.303090,-0.006971,0.005748,0.249934,0,0);-webkit-transform:matrix(0.303090,-0.006971,0.005748,0.249934,0,0);}
.mb2_c00246{transform:matrix(0.307494,-0.007072,0.005748,0.249934,0,0);-ms-transform:matrix(0.307494,-0.007072,0.005748,0.249934,0,0);-webkit-transform:matrix(0.307494,-0.007072,0.005748,0.249934,0,0);}
.m10_c00246{transform:matrix(0.309186,-0.009585,0.007746,0.249880,0,0);-ms-transform:matrix(0.309186,-0.009585,0.007746,0.249880,0,0);-webkit-transform:matrix(0.309186,-0.009585,0.007746,0.249880,0,0);}
.m9d_c00246{transform:matrix(0.317141,-0.007294,0.005748,0.249934,0,0);-ms-transform:matrix(0.317141,-0.007294,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317141,-0.007294,0.005748,0.249934,0,0);}
.m6e_c00246{transform:matrix(0.331204,-0.006624,0.004999,0.249950,0,0);-ms-transform:matrix(0.331204,-0.006624,0.004999,0.249950,0,0);-webkit-transform:matrix(0.331204,-0.006624,0.004999,0.249950,0,0);}
.mb6_c00246{transform:matrix(0.338326,-0.007781,0.005748,0.249934,0,0);-ms-transform:matrix(0.338326,-0.007781,0.005748,0.249934,0,0);-webkit-transform:matrix(0.338326,-0.007781,0.005748,0.249934,0,0);}
.mb3_c00246{transform:matrix(0.339320,-0.007804,0.005748,0.249934,0,0);-ms-transform:matrix(0.339320,-0.007804,0.005748,0.249934,0,0);-webkit-transform:matrix(0.339320,-0.007804,0.005748,0.249934,0,0);}
.m31_c00246{transform:matrix(0.351110,-0.008778,0.006248,0.249922,0,0);-ms-transform:matrix(0.351110,-0.008778,0.006248,0.249922,0,0);-webkit-transform:matrix(0.351110,-0.008778,0.006248,0.249922,0,0);}
.m3a_c00246{transform:matrix(0.356274,-0.008907,0.006248,0.249922,0,0);-ms-transform:matrix(0.356274,-0.008907,0.006248,0.249922,0,0);-webkit-transform:matrix(0.356274,-0.008907,0.006248,0.249922,0,0);}
.mbc_c00246{transform:matrix(0.372636,-0.008571,0.005748,0.249934,0,0);-ms-transform:matrix(0.372636,-0.008571,0.005748,0.249934,0,0);-webkit-transform:matrix(0.372636,-0.008571,0.005748,0.249934,0,0);}
.mdb_c00246{transform:matrix(0.391112,-0.009387,0.005998,0.249928,0,0);-ms-transform:matrix(0.391112,-0.009387,0.005998,0.249928,0,0);-webkit-transform:matrix(0.391112,-0.009387,0.005998,0.249928,0,0);}
.m52_c00246{transform:matrix(0.392566,-0.010992,0.006997,0.249902,0,0);-ms-transform:matrix(0.392566,-0.010992,0.006997,0.249902,0,0);-webkit-transform:matrix(0.392566,-0.010992,0.006997,0.249902,0,0);}
.m5a_c00246{transform:matrix(0.397934,-0.011142,0.006997,0.249902,0,0);-ms-transform:matrix(0.397934,-0.011142,0.006997,0.249902,0,0);-webkit-transform:matrix(0.397934,-0.011142,0.006997,0.249902,0,0);}
.m6f_c00246{transform:matrix(0.429379,-0.008588,0.004999,0.249950,0,0);-ms-transform:matrix(0.429379,-0.008588,0.004999,0.249950,0,0);-webkit-transform:matrix(0.429379,-0.008588,0.004999,0.249950,0,0);}
.m58_c00246{transform:matrix(0.692719,-0.019396,0.006997,0.249902,0,0);-ms-transform:matrix(0.692719,-0.019396,0.006997,0.249902,0,0);-webkit-transform:matrix(0.692719,-0.019396,0.006997,0.249902,0,0);}
.m4e_c00246{transform:matrix(0.715959,-0.020763,0.007247,0.249895,0,0);-ms-transform:matrix(0.715959,-0.020763,0.007247,0.249895,0,0);-webkit-transform:matrix(0.715959,-0.020763,0.007247,0.249895,0,0);}
.m113_c00246{transform:matrix(0.938737,-0.018775,0.004999,0.249950,0,0);-ms-transform:matrix(0.938737,-0.018775,0.004999,0.249950,0,0);-webkit-transform:matrix(0.938737,-0.018775,0.004999,0.249950,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;}
.fs1f_c00246{font-size:44.108819px;}
.fs6_c00246{font-size:44.121185px;}
.fs1e_c00246{font-size:46.209239px;}
.fs2_c00246{font-size:47.272698px;}
.fs21_c00246{font-size:48.309659px;}
.fs23_c00246{font-size:49.359869px;}
.fs20_c00246{font-size:50.410079px;}
.fs5_c00246{font-size:50.424211px;}
.fs1d_c00246{font-size:51.460289px;}
.fs1b_c00246{font-size:51.464815px;}
.fs22_c00246{font-size:53.560709px;}
.fs17_c00246{font-size:53.564162px;}
.fs4_c00246{font-size:53.575725px;}
.fs3_c00246{font-size:55.676733px;}
.fs19_c00246{font-size:59.865828px;}
.fs7_c00246{font-size:59.878751px;}
.fs18_c00246{font-size:61.966384px;}
.fs13_c00246{font-size:63.016661px;}
.fs1c_c00246{font-size:65.100000px;}
.fs1_c00246{font-size:66.150000px;}
.fs14_c00246{font-size:66.167494px;}
.fs15_c00246{font-size:67.217772px;}
.fs10_c00246{font-size:68.263649px;}
.fsa_c00246{font-size:68.271325px;}
.fsf_c00246{font-size:68.276749px;}
.fsc_c00246{font-size:68.278693px;}
.fs16_c00246{font-size:69.318327px;}
.fse_c00246{font-size:69.327160px;}
.fs12_c00246{font-size:71.418883px;}
.fs9_c00246{font-size:71.422309px;}
.fs11_c00246{font-size:72.469160px;}
.fs8_c00246{font-size:72.472637px;}
.fsd_c00246{font-size:72.478395px;}
.fs1a_c00246{font-size:73.519438px;}
.fsb_c00246{font-size:73.522965px;}
.fs0_c00246{font-size:133.284976px;}
.y0_c00246{bottom:0.000000px;}
.y20_c00246{bottom:167.618097px;}
.y21_c00246{bottom:168.455143px;}
.y22_c00246{bottom:169.775842px;}
.y23_c00246{bottom:170.165082px;}
.y24_c00246{bottom:170.574429px;}
.y25_c00246{bottom:170.832225px;}
.y10c_c00246{bottom:171.965760px;}
.y10d_c00246{bottom:172.829430px;}
.y10e_c00246{bottom:174.506640px;}
.y10f_c00246{bottom:174.905760px;}
.y110_c00246{bottom:177.238110px;}
.y111_c00246{bottom:177.843420px;}
.y1f_c00246{bottom:187.902978px;}
.y1e_c00246{bottom:187.903094px;}
.y1b_c00246{bottom:187.903635px;}
.y1d_c00246{bottom:187.903706px;}
.y1c_c00246{bottom:187.904106px;}
.y1a_c00246{bottom:187.904167px;}
.y104_c00246{bottom:190.331760px;}
.y105_c00246{bottom:191.805060px;}
.y106_c00246{bottom:192.444780px;}
.y107_c00246{bottom:192.830040px;}
.y108_c00246{bottom:193.683480px;}
.y109_c00246{bottom:194.952480px;}
.y10a_c00246{bottom:195.472500px;}
.y10b_c00246{bottom:196.862250px;}
.y19_c00246{bottom:206.234161px;}
.y18_c00246{bottom:206.234356px;}
.yfe_c00246{bottom:208.426380px;}
.yff_c00246{bottom:210.061620px;}
.y100_c00246{bottom:210.643080px;}
.y101_c00246{bottom:211.939470px;}
.y102_c00246{bottom:213.317940px;}
.y103_c00246{bottom:214.587510px;}
.y10_c00246{bottom:221.978641px;}
.y11_c00246{bottom:222.213069px;}
.y12_c00246{bottom:222.818275px;}
.y13_c00246{bottom:223.556649px;}
.y14_c00246{bottom:223.974165px;}
.y15_c00246{bottom:224.251075px;}
.y16_c00246{bottom:224.826399px;}
.y17_c00246{bottom:225.262128px;}
.yf8_c00246{bottom:226.521780px;}
.yf9_c00246{bottom:228.345360px;}
.yfa_c00246{bottom:229.026750px;}
.yfb_c00246{bottom:229.661220px;}
.yfc_c00246{bottom:230.639550px;}
.yfd_c00246{bottom:232.086750px;}
.ye_c00246{bottom:241.237522px;}
.yf_c00246{bottom:241.237725px;}
.yf1_c00246{bottom:245.155350px;}
.yf2_c00246{bottom:245.600130px;}
.yf3_c00246{bottom:247.106190px;}
.yf4_c00246{bottom:247.640430px;}
.yf5_c00246{bottom:248.392860px;}
.yf6_c00246{bottom:250.350450px;}
.yf7_c00246{bottom:251.009310px;}
.y9_c00246{bottom:258.386311px;}
.ya_c00246{bottom:259.092329px;}
.yb_c00246{bottom:260.065195px;}
.yc_c00246{bottom:260.453521px;}
.yd_c00246{bottom:260.988430px;}
.ye9_c00246{bottom:263.517090px;}
.yea_c00246{bottom:264.159450px;}
.yeb_c00246{bottom:264.671670px;}
.yec_c00246{bottom:265.955700px;}
.yed_c00246{bottom:267.109140px;}
.yee_c00246{bottom:267.607050px;}
.yef_c00246{bottom:268.139010px;}
.yf0_c00246{bottom:268.663410px;}
.y7_c00246{bottom:274.870500px;}
.y8_c00246{bottom:275.821100px;}
.ye3_c00246{bottom:281.609340px;}
.ye4_c00246{bottom:282.686250px;}
.ye5_c00246{bottom:283.029990px;}
.ye6_c00246{bottom:283.728780px;}
.ye7_c00246{bottom:284.667810px;}
.ye8_c00246{bottom:285.068340px;}
.yd5_c00246{bottom:293.496000px;}
.yd6_c00246{bottom:294.474660px;}
.yd7_c00246{bottom:295.071576px;}
.yd8_c00246{bottom:296.231460px;}
.yd9_c00246{bottom:296.769444px;}
.yda_c00246{bottom:297.631356px;}
.ydb_c00246{bottom:298.405356px;}
.ydd_c00246{bottom:299.433000px;}
.yde_c00246{bottom:300.136050px;}
.ydf_c00246{bottom:300.972780px;}
.ye0_c00246{bottom:301.642680px;}
.ye1_c00246{bottom:302.296050px;}
.ye2_c00246{bottom:302.674740px;}
.ycc_c00246{bottom:355.807906px;}
.ycd_c00246{bottom:356.482966px;}
.yce_c00246{bottom:357.157215px;}
.ycf_c00246{bottom:358.053459px;}
.yd0_c00246{bottom:358.548846px;}
.yd1_c00246{bottom:359.237208px;}
.yd2_c00246{bottom:359.627299px;}
.yd3_c00246{bottom:360.733875px;}
.yd4_c00246{bottom:361.123759px;}
.yc5_c00246{bottom:378.225304px;}
.yc6_c00246{bottom:378.441664px;}
.yc7_c00246{bottom:379.856853px;}
.yc8_c00246{bottom:380.368875px;}
.yc9_c00246{bottom:381.655752px;}
.yca_c00246{bottom:382.465522px;}
.ycb_c00246{bottom:383.543422px;}
.ybd_c00246{bottom:400.911153px;}
.ybe_c00246{bottom:401.472322px;}
.ybf_c00246{bottom:402.284301px;}
.yc0_c00246{bottom:403.588963px;}
.yc1_c00246{bottom:404.853483px;}
.yc2_c00246{bottom:405.472114px;}
.yc3_c00246{bottom:406.480977px;}
.yc4_c00246{bottom:407.161780px;}
.yb1_c00246{bottom:423.593451px;}
.yb2_c00246{bottom:423.822610px;}
.yb3_c00246{bottom:424.808409px;}
.yb4_c00246{bottom:425.853084px;}
.yb5_c00246{bottom:426.849474px;}
.yb6_c00246{bottom:427.702389px;}
.yb7_c00246{bottom:428.462356px;}
.yb8_c00246{bottom:428.951607px;}
.yb9_c00246{bottom:430.487223px;}
.yba_c00246{bottom:430.809157px;}
.ybb_c00246{bottom:431.333185px;}
.ybc_c00246{bottom:431.973795px;}
.ya8_c00246{bottom:446.011099px;}
.ya9_c00246{bottom:447.250575px;}
.yaa_c00246{bottom:449.157192px;}
.yab_c00246{bottom:450.277260px;}
.yac_c00246{bottom:450.608640px;}
.yad_c00246{bottom:451.352097px;}
.yae_c00246{bottom:452.769372px;}
.yaf_c00246{bottom:453.641586px;}
.yb0_c00246{bottom:454.681042px;}
.y9d_c00246{bottom:469.775788px;}
.y9e_c00246{bottom:470.241124px;}
.y9f_c00246{bottom:471.227208px;}
.ya0_c00246{bottom:471.946966px;}
.ya1_c00246{bottom:472.629393px;}
.ya2_c00246{bottom:473.054275px;}
.ya3_c00246{bottom:473.881458px;}
.ya4_c00246{bottom:474.318744px;}
.ya5_c00246{bottom:474.885397px;}
.ya6_c00246{bottom:475.407663px;}
.ya7_c00246{bottom:476.020722px;}
.y94_c00246{bottom:491.653498px;}
.y95_c00246{bottom:492.299008px;}
.y96_c00246{bottom:493.103187px;}
.y97_c00246{bottom:493.638225px;}
.y98_c00246{bottom:494.559913px;}
.y99_c00246{bottom:495.435940px;}
.y9a_c00246{bottom:496.428045px;}
.y9b_c00246{bottom:497.132292px;}
.y9c_c00246{bottom:497.677698px;}
.y8a_c00246{bottom:514.612177px;}
.y8b_c00246{bottom:515.748426px;}
.y8c_c00246{bottom:516.540357px;}
.y8d_c00246{bottom:517.444225px;}
.y8e_c00246{bottom:518.103915px;}
.y8f_c00246{bottom:518.939644px;}
.y90_c00246{bottom:519.738165px;}
.y91_c00246{bottom:520.414708px;}
.y92_c00246{bottom:520.865565px;}
.y93_c00246{bottom:521.655840px;}
.y80_c00246{bottom:538.103390px;}
.y81_c00246{bottom:538.655517px;}
.y82_c00246{bottom:539.406505px;}
.y83_c00246{bottom:539.894593px;}
.y84_c00246{bottom:540.674755px;}
.y85_c00246{bottom:541.524804px;}
.y86_c00246{bottom:542.012995px;}
.y87_c00246{bottom:542.645292px;}
.y88_c00246{bottom:543.608409px;}
.y89_c00246{bottom:544.184292px;}
.y78_c00246{bottom:560.252267px;}
.y79_c00246{bottom:561.879011px;}
.y7a_c00246{bottom:562.444534px;}
.y7b_c00246{bottom:564.461094px;}
.y7c_c00246{bottom:565.109349px;}
.y7d_c00246{bottom:566.040607px;}
.y7e_c00246{bottom:566.647186px;}
.y7f_c00246{bottom:567.568440px;}
.y73_c00246{bottom:584.287500px;}
.y74_c00246{bottom:585.543162px;}
.y75_c00246{bottom:586.777779px;}
.y76_c00246{bottom:587.374939px;}
.y77_c00246{bottom:588.082707px;}
.ydc_c00246{bottom:589.678500px;}
.y6_c00246{bottom:638.146500px;}
.y6b_c00246{bottom:640.444500px;}
.y6c_c00246{bottom:641.013750px;}
.y6d_c00246{bottom:641.955540px;}
.y6e_c00246{bottom:642.232410px;}
.y6f_c00246{bottom:642.636240px;}
.y70_c00246{bottom:643.599300px;}
.y71_c00246{bottom:644.612880px;}
.y72_c00246{bottom:645.247470px;}
.y62_c00246{bottom:660.417840px;}
.y63_c00246{bottom:661.200948px;}
.y64_c00246{bottom:662.229660px;}
.y65_c00246{bottom:663.152922px;}
.y66_c00246{bottom:663.679800px;}
.y67_c00246{bottom:664.951752px;}
.y68_c00246{bottom:666.103470px;}
.y69_c00246{bottom:668.083554px;}
.y6a_c00246{bottom:668.726970px;}
.y58_c00246{bottom:682.555566px;}
.y59_c00246{bottom:683.041650px;}
.y5a_c00246{bottom:683.869290px;}
.y5b_c00246{bottom:684.986616px;}
.y5c_c00246{bottom:686.003232px;}
.y5d_c00246{bottom:686.585772px;}
.y5e_c00246{bottom:688.211442px;}
.y5f_c00246{bottom:689.123694px;}
.y60_c00246{bottom:690.256350px;}
.y61_c00246{bottom:691.198182px;}
.y4f_c00246{bottom:705.483000px;}
.y50_c00246{bottom:706.215690px;}
.y51_c00246{bottom:707.361198px;}
.y52_c00246{bottom:707.958060px;}
.y53_c00246{bottom:709.711854px;}
.y54_c00246{bottom:710.716326px;}
.y55_c00246{bottom:711.303444px;}
.y56_c00246{bottom:712.463904px;}
.y57_c00246{bottom:713.515458px;}
.y4d_c00246{bottom:737.386500px;}
.y4e_c00246{bottom:741.691521px;}
.y43_c00246{bottom:761.656125px;}
.y44_c00246{bottom:762.603000px;}
.y45_c00246{bottom:763.523025px;}
.y46_c00246{bottom:764.082675px;}
.y47_c00246{bottom:764.956275px;}
.y48_c00246{bottom:766.931813px;}
.y49_c00246{bottom:767.600475px;}
.y4a_c00246{bottom:768.554400px;}
.y4b_c00246{bottom:769.741838px;}
.y4c_c00246{bottom:770.349113px;}
.y3a_c00246{bottom:784.599263px;}
.y3b_c00246{bottom:785.302088px;}
.y3c_c00246{bottom:786.283913px;}
.y3d_c00246{bottom:787.460438px;}
.y3e_c00246{bottom:788.285288px;}
.y3f_c00246{bottom:789.595650px;}
.y40_c00246{bottom:790.230975px;}
.y41_c00246{bottom:791.886975px;}
.y42_c00246{bottom:792.477000px;}
.y31_c00246{bottom:807.572400px;}
.y32_c00246{bottom:808.374450px;}
.y33_c00246{bottom:809.416950px;}
.y34_c00246{bottom:811.225313px;}
.y35_c00246{bottom:812.566575px;}
.y36_c00246{bottom:813.355800px;}
.y37_c00246{bottom:814.958025px;}
.y38_c00246{bottom:815.687513px;}
.y39_c00246{bottom:817.007025px;}
.y26_c00246{bottom:830.527500px;}
.y27_c00246{bottom:831.088763px;}
.y28_c00246{bottom:832.175175px;}
.y29_c00246{bottom:833.468738px;}
.y2a_c00246{bottom:834.572513px;}
.y2b_c00246{bottom:835.363687px;}
.y2c_c00246{bottom:835.905713px;}
.y2d_c00246{bottom:836.688113px;}
.y2e_c00246{bottom:838.285350px;}
.y2f_c00246{bottom:838.944788px;}
.y30_c00246{bottom:840.029663px;}
.y1_c00246{bottom:869.139000px;}
.y2_c00246{bottom:873.347352px;}
.y3_c00246{bottom:874.268952px;}
.y4_c00246{bottom:878.024040px;}
.y5_c00246{bottom:880.357032px;}
.h21_c00246{height:44.108819px;}
.h8_c00246{height:44.121185px;}
.h20_c00246{height:46.209239px;}
.h4_c00246{height:47.272698px;}
.h23_c00246{height:48.309659px;}
.h25_c00246{height:49.359869px;}
.h22_c00246{height:50.410079px;}
.h7_c00246{height:50.424211px;}
.h1f_c00246{height:51.460289px;}
.h1d_c00246{height:51.464815px;}
.h24_c00246{height:53.560709px;}
.h19_c00246{height:53.564162px;}
.h6_c00246{height:53.575725px;}
.h5_c00246{height:55.676733px;}
.h1b_c00246{height:59.865828px;}
.h9_c00246{height:59.878751px;}
.h1a_c00246{height:61.966384px;}
.h15_c00246{height:63.016661px;}
.h1e_c00246{height:65.100000px;}
.h3_c00246{height:66.150000px;}
.h16_c00246{height:66.167494px;}
.h17_c00246{height:67.217772px;}
.h12_c00246{height:68.263649px;}
.hc_c00246{height:68.271325px;}
.h11_c00246{height:68.276749px;}
.he_c00246{height:68.278693px;}
.h18_c00246{height:69.318327px;}
.h10_c00246{height:69.327160px;}
.h14_c00246{height:71.418883px;}
.hb_c00246{height:71.422309px;}
.h13_c00246{height:72.469160px;}
.ha_c00246{height:72.472637px;}
.hf_c00246{height:72.478395px;}
.h1c_c00246{height:73.519438px;}
.hd_c00246{height:73.522965px;}
.h2_c00246{height:133.284976px;}
.h1_c00246{height:1005.000000px;}
.h0_c00246{height:1005.150000px;}
.w1_c00246{width:713.250000px;}
.w0_c00246{width:713.550000px;}
.x0_c00246{left:0.000000px;}
.x81_c00246{left:90.412500px;}
.x9_c00246{left:94.834500px;}
.x1d_c00246{left:97.645831px;}
.x48_c00246{left:105.704442px;}
.x10_c00246{left:111.234819px;}
.x1_c00246{left:113.188500px;}
.x6_c00246{left:114.210000px;}
.x73_c00246{left:117.392034px;}
.x2a_c00246{left:119.701350px;}
.x11_c00246{left:123.591923px;}
.x7_c00246{left:125.280000px;}
.x18_c00246{left:126.643424px;}
.x6b_c00246{left:127.698351px;}
.x7d_c00246{left:130.085488px;}
.x82_c00246{left:131.190000px;}
.xa_c00246{left:134.699793px;}
.x1e_c00246{left:144.166071px;}
.x21_c00246{left:145.624500px;}
.x19_c00246{left:146.903861px;}
.x8_c00246{left:148.230000px;}
.x2b_c00246{left:149.381850px;}
.x33_c00246{left:150.764663px;}
.x49_c00246{left:154.338786px;}
.x12_c00246{left:155.465280px;}
.x5e_c00246{left:156.509688px;}
.x38_c00246{left:165.277350px;}
.xb_c00246{left:170.018836px;}
.x74_c00246{left:175.240690px;}
.x57_c00246{left:178.558500px;}
.x17_c00246{left:181.209610px;}
.x70_c00246{left:184.671780px;}
.x2c_c00246{left:188.019938px;}
.x22_c00246{left:189.081000px;}
.x67_c00246{left:193.366324px;}
.xf_c00246{left:194.446751px;}
.x4a_c00246{left:195.744462px;}
.x5b_c00246{left:197.431966px;}
.x1a_c00246{left:200.119464px;}
.x39_c00246{left:205.260338px;}
.x7e_c00246{left:209.435925px;}
.x43_c00246{left:211.362000px;}
.x64_c00246{left:213.628267px;}
.x13_c00246{left:216.242332px;}
.x1f_c00246{left:217.524599px;}
.xc_c00246{left:218.692437px;}
.x7a_c00246{left:219.827834px;}
.x5c_c00246{left:222.019966px;}
.x75_c00246{left:224.967967px;}
.x1b_c00246{left:226.592900px;}
.x3a_c00246{left:229.567538px;}
.x14_c00246{left:230.793227px;}
.x58_c00246{left:232.237500px;}
.x34_c00246{left:233.796600px;}
.x6c_c00246{left:236.191803px;}
.xd_c00246{left:238.145087px;}
.x23_c00246{left:240.823500px;}
.x2_c00246{left:244.567989px;}
.x1c_c00246{left:249.013929px;}
.x4e_c00246{left:251.212038px;}
.x2d_c00246{left:255.011100px;}
.x59_c00246{left:258.201000px;}
.x68_c00246{left:259.573342px;}
.x15_c00246{left:261.072979px;}
.x5f_c00246{left:262.768952px;}
.xe_c00246{left:264.893201px;}
.x3b_c00246{left:267.573450px;}
.x41_c00246{left:270.571500px;}
.x3_c00246{left:273.339189px;}
.x20_c00246{left:276.205720px;}
.x7b_c00246{left:281.129662px;}
.x16_c00246{left:284.040535px;}
.x5a_c00246{left:288.973500px;}
.x6d_c00246{left:291.578632px;}
.x83_c00246{left:294.969000px;}
.x4f_c00246{left:300.123768px;}
.x52_c00246{left:302.589000px;}
.x2e_c00246{left:304.699125px;}
.x60_c00246{left:307.492557px;}
.x44_c00246{left:309.871500px;}
.x76_c00246{left:313.007004px;}
.x4b_c00246{left:315.152280px;}
.x24_c00246{left:316.621500px;}
.x7c_c00246{left:319.664922px;}
.x65_c00246{left:322.643252px;}
.x45_c00246{left:330.840000px;}
.x7f_c00246{left:331.843830px;}
.x2f_c00246{left:333.926663px;}
.x53_c00246{left:336.624000px;}
.x25_c00246{left:338.302500px;}
.x35_c00246{left:340.355438px;}
.x50_c00246{left:344.419746px;}
.x84_c00246{left:346.410000px;}
.xa1_c00246{left:347.794920px;}
.x4c_c00246{left:348.912204px;}
.x3c_c00246{left:353.439225px;}
.x6e_c00246{left:354.842514px;}
.x66_c00246{left:358.927579px;}
.x95_c00246{left:362.872350px;}
.x61_c00246{left:366.453974px;}
.x26_c00246{left:369.598500px;}
.x71_c00246{left:371.090058px;}
.x46_c00246{left:372.285000px;}
.x90_c00246{left:373.371510px;}
.x85_c00246{left:375.030000px;}
.x69_c00246{left:376.505533px;}
.x5d_c00246{left:378.370967px;}
.x88_c00246{left:381.460500px;}
.x3d_c00246{left:382.527187px;}
.x54_c00246{left:384.777000px;}
.x4_c00246{left:390.568343px;}
.x30_c00246{left:393.272700px;}
.x91_c00246{left:394.705800px;}
.x6a_c00246{left:401.328120px;}
.x8c_c00246{left:403.027980px;}
.x36_c00246{left:404.073863px;}
.x47_c00246{left:409.840500px;}
.x86_c00246{left:412.560000px;}
.x9d_c00246{left:415.188450px;}
.x62_c00246{left:417.137631px;}
.x42_c00246{left:419.020500px;}
.x31_c00246{left:420.290850px;}
.x99_c00246{left:422.792670px;}
.x3e_c00246{left:423.986250px;}
.x4d_c00246{left:425.735346px;}
.x37_c00246{left:426.774300px;}
.x27_c00246{left:433.488000px;}
.x55_c00246{left:435.456000px;}
.x96_c00246{left:438.476790px;}
.x6f_c00246{left:439.934379px;}
.x80_c00246{left:442.839648px;}
.x51_c00246{left:445.300374px;}
.x63_c00246{left:447.461426px;}
.x9e_c00246{left:453.939180px;}
.x98_c00246{left:455.257440px;}
.x89_c00246{left:456.792000px;}
.x8d_c00246{left:457.855560px;}
.x28_c00246{left:459.865500px;}
.x77_c00246{left:460.873266px;}
.x5_c00246{left:463.401437px;}
.x9a_c00246{left:466.003530px;}
.x56_c00246{left:467.185500px;}
.x32_c00246{left:469.168913px;}
.x87_c00246{left:471.690000px;}
.x3f_c00246{left:475.626337px;}
.x78_c00246{left:485.810404px;}
.x8a_c00246{left:489.460500px;}
.x9f_c00246{left:493.604670px;}
.x92_c00246{left:496.246170px;}
.x40_c00246{left:502.018650px;}
.x29_c00246{left:503.260500px;}
.x8e_c00246{left:507.283050px;}
.x8b_c00246{left:508.395000px;}
.xa0_c00246{left:509.851770px;}
.x9b_c00246{left:511.967850px;}
.x79_c00246{left:516.338319px;}
.x72_c00246{left:522.352008px;}
.x8f_c00246{left:528.359970px;}
.xa2_c00246{left:531.458850px;}
.x93_c00246{left:539.186250px;}
.x9c_c00246{left:554.287890px;}
.x94_c00246{left:561.054510px;}
.x97_c00246{left:563.253330px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.fs1f_c00246{font-size:39.207839pt;}
.fs6_c00246{font-size:39.218831pt;}
.fs1e_c00246{font-size:41.074879pt;}
.fs2_c00246{font-size:42.020176pt;}
.fs21_c00246{font-size:42.941919pt;}
.fs23_c00246{font-size:43.875439pt;}
.fs20_c00246{font-size:44.808959pt;}
.fs5_c00246{font-size:44.821521pt;}
.fs1d_c00246{font-size:45.742479pt;}
.fs1b_c00246{font-size:45.746503pt;}
.fs22_c00246{font-size:47.609519pt;}
.fs17_c00246{font-size:47.612589pt;}
.fs4_c00246{font-size:47.622866pt;}
.fs3_c00246{font-size:49.490430pt;}
.fs19_c00246{font-size:53.214070pt;}
.fs7_c00246{font-size:53.225556pt;}
.fs18_c00246{font-size:55.081230pt;}
.fs13_c00246{font-size:56.014810pt;}
.fs1c_c00246{font-size:57.866667pt;}
.fs1_c00246{font-size:58.800000pt;}
.fs14_c00246{font-size:58.815551pt;}
.fs15_c00246{font-size:59.749131pt;}
.fs10_c00246{font-size:60.678799pt;}
.fsa_c00246{font-size:60.685622pt;}
.fsf_c00246{font-size:60.690443pt;}
.fsc_c00246{font-size:60.692172pt;}
.fs16_c00246{font-size:61.616291pt;}
.fse_c00246{font-size:61.624142pt;}
.fs12_c00246{font-size:63.483451pt;}
.fs9_c00246{font-size:63.486497pt;}
.fs11_c00246{font-size:64.417032pt;}
.fs8_c00246{font-size:64.420122pt;}
.fsd_c00246{font-size:64.425240pt;}
.fs1a_c00246{font-size:65.350612pt;}
.fsb_c00246{font-size:65.353747pt;}
.fs0_c00246{font-size:118.475534pt;}
.y0_c00246{bottom:0.000000pt;}
.y20_c00246{bottom:148.993864pt;}
.y21_c00246{bottom:149.737905pt;}
.y22_c00246{bottom:150.911860pt;}
.y23_c00246{bottom:151.257851pt;}
.y24_c00246{bottom:151.621715pt;}
.y25_c00246{bottom:151.850867pt;}
.y10c_c00246{bottom:152.858453pt;}
.y10d_c00246{bottom:153.626160pt;}
.y10e_c00246{bottom:155.117013pt;}
.y10f_c00246{bottom:155.471787pt;}
.y110_c00246{bottom:157.544987pt;}
.y111_c00246{bottom:158.083040pt;}
.y1f_c00246{bottom:167.024869pt;}
.y1e_c00246{bottom:167.024972pt;}
.y1b_c00246{bottom:167.025453pt;}
.y1d_c00246{bottom:167.025516pt;}
.y1c_c00246{bottom:167.025872pt;}
.y1a_c00246{bottom:167.025927pt;}
.y104_c00246{bottom:169.183787pt;}
.y105_c00246{bottom:170.493387pt;}
.y106_c00246{bottom:171.062027pt;}
.y107_c00246{bottom:171.404480pt;}
.y108_c00246{bottom:172.163093pt;}
.y109_c00246{bottom:173.291093pt;}
.y10a_c00246{bottom:173.753333pt;}
.y10b_c00246{bottom:174.988667pt;}
.y19_c00246{bottom:183.319255pt;}
.y18_c00246{bottom:183.319428pt;}
.yfe_c00246{bottom:185.267893pt;}
.yff_c00246{bottom:186.721440pt;}
.y100_c00246{bottom:187.238293pt;}
.y101_c00246{bottom:188.390640pt;}
.y102_c00246{bottom:189.615947pt;}
.y103_c00246{bottom:190.744453pt;}
.y10_c00246{bottom:197.314348pt;}
.y11_c00246{bottom:197.522728pt;}
.y12_c00246{bottom:198.060689pt;}
.y13_c00246{bottom:198.717021pt;}
.y14_c00246{bottom:199.088147pt;}
.y15_c00246{bottom:199.334289pt;}
.y16_c00246{bottom:199.845688pt;}
.y17_c00246{bottom:200.233003pt;}
.yf8_c00246{bottom:201.352693pt;}
.yf9_c00246{bottom:202.973653pt;}
.yfa_c00246{bottom:203.579333pt;}
.yfb_c00246{bottom:204.143307pt;}
.yfc_c00246{bottom:205.012933pt;}
.yfd_c00246{bottom:206.299333pt;}
.ye_c00246{bottom:214.433353pt;}
.yf_c00246{bottom:214.433533pt;}
.yf1_c00246{bottom:217.915867pt;}
.yf2_c00246{bottom:218.311227pt;}
.yf3_c00246{bottom:219.649947pt;}
.yf4_c00246{bottom:220.124827pt;}
.yf5_c00246{bottom:220.793653pt;}
.yf6_c00246{bottom:222.533733pt;}
.yf7_c00246{bottom:223.119387pt;}
.y9_c00246{bottom:229.676721pt;}
.ya_c00246{bottom:230.304292pt;}
.yb_c00246{bottom:231.169063pt;}
.yc_c00246{bottom:231.514241pt;}
.yd_c00246{bottom:231.989716pt;}
.ye9_c00246{bottom:234.237413pt;}
.yea_c00246{bottom:234.808400pt;}
.yeb_c00246{bottom:235.263707pt;}
.yec_c00246{bottom:236.405067pt;}
.yed_c00246{bottom:237.430347pt;}
.yee_c00246{bottom:237.872933pt;}
.yef_c00246{bottom:238.345787pt;}
.yf0_c00246{bottom:238.811920pt;}
.y7_c00246{bottom:244.329333pt;}
.y8_c00246{bottom:245.174311pt;}
.ye3_c00246{bottom:250.319413pt;}
.ye4_c00246{bottom:251.276667pt;}
.ye5_c00246{bottom:251.582213pt;}
.ye6_c00246{bottom:252.203360pt;}
.ye7_c00246{bottom:253.038053pt;}
.ye8_c00246{bottom:253.394080pt;}
.yd5_c00246{bottom:260.885333pt;}
.yd6_c00246{bottom:261.755253pt;}
.yd7_c00246{bottom:262.285845pt;}
.yd8_c00246{bottom:263.316853pt;}
.yd9_c00246{bottom:263.795061pt;}
.yda_c00246{bottom:264.561205pt;}
.ydb_c00246{bottom:265.249205pt;}
.ydd_c00246{bottom:266.162667pt;}
.yde_c00246{bottom:266.787600pt;}
.ydf_c00246{bottom:267.531360pt;}
.ye0_c00246{bottom:268.126827pt;}
.ye1_c00246{bottom:268.707600pt;}
.ye2_c00246{bottom:269.044213pt;}
.ycc_c00246{bottom:316.273695pt;}
.ycd_c00246{bottom:316.873748pt;}
.yce_c00246{bottom:317.473080pt;}
.ycf_c00246{bottom:318.269741pt;}
.yd0_c00246{bottom:318.710085pt;}
.yd1_c00246{bottom:319.321963pt;}
.yd2_c00246{bottom:319.668711pt;}
.yd3_c00246{bottom:320.652333pt;}
.yd4_c00246{bottom:320.998897pt;}
.yc5_c00246{bottom:336.200271pt;}
.yc6_c00246{bottom:336.392591pt;}
.yc7_c00246{bottom:337.650536pt;}
.yc8_c00246{bottom:338.105667pt;}
.yc9_c00246{bottom:339.249557pt;}
.yca_c00246{bottom:339.969353pt;}
.ycb_c00246{bottom:340.927487pt;}
.ybd_c00246{bottom:356.365469pt;}
.ybe_c00246{bottom:356.864287pt;}
.ybf_c00246{bottom:357.586045pt;}
.yc0_c00246{bottom:358.745745pt;}
.yc1_c00246{bottom:359.869763pt;}
.yc2_c00246{bottom:360.419657pt;}
.yc3_c00246{bottom:361.316424pt;}
.yc4_c00246{bottom:361.921583pt;}
.yb1_c00246{bottom:376.527512pt;}
.yb2_c00246{bottom:376.731209pt;}
.yb3_c00246{bottom:377.607475pt;}
.yb4_c00246{bottom:378.536075pt;}
.yb5_c00246{bottom:379.421755pt;}
.yb6_c00246{bottom:380.179901pt;}
.yb7_c00246{bottom:380.855428pt;}
.yb8_c00246{bottom:381.290317pt;}
.yb9_c00246{bottom:382.655309pt;}
.yba_c00246{bottom:382.941473pt;}
.ybb_c00246{bottom:383.407276pt;}
.ybc_c00246{bottom:383.976707pt;}
.ya8_c00246{bottom:396.454311pt;}
.ya9_c00246{bottom:397.556067pt;}
.yaa_c00246{bottom:399.250837pt;}
.yab_c00246{bottom:400.246453pt;}
.yac_c00246{bottom:400.541013pt;}
.yad_c00246{bottom:401.201864pt;}
.yae_c00246{bottom:402.461664pt;}
.yaf_c00246{bottom:403.236965pt;}
.yb0_c00246{bottom:404.160927pt;}
.y9d_c00246{bottom:417.578479pt;}
.y9e_c00246{bottom:417.992111pt;}
.y9f_c00246{bottom:418.868629pt;}
.ya0_c00246{bottom:419.508415pt;}
.ya1_c00246{bottom:420.115016pt;}
.ya2_c00246{bottom:420.492689pt;}
.ya3_c00246{bottom:421.227963pt;}
.ya4_c00246{bottom:421.616661pt;}
.ya5_c00246{bottom:422.120353pt;}
.ya6_c00246{bottom:422.584589pt;}
.ya7_c00246{bottom:423.129531pt;}
.y94_c00246{bottom:437.025332pt;}
.y95_c00246{bottom:437.599119pt;}
.y96_c00246{bottom:438.313944pt;}
.y97_c00246{bottom:438.789533pt;}
.y98_c00246{bottom:439.608812pt;}
.y99_c00246{bottom:440.387503pt;}
.y9a_c00246{bottom:441.269373pt;}
.y9b_c00246{bottom:441.895371pt;}
.y9c_c00246{bottom:442.380176pt;}
.y8a_c00246{bottom:457.433047pt;}
.y8b_c00246{bottom:458.443045pt;}
.y8c_c00246{bottom:459.146984pt;}
.y8d_c00246{bottom:459.950423pt;}
.y8e_c00246{bottom:460.536813pt;}
.y8f_c00246{bottom:461.279684pt;}
.y90_c00246{bottom:461.989480pt;}
.y91_c00246{bottom:462.590852pt;}
.y92_c00246{bottom:462.991613pt;}
.y93_c00246{bottom:463.694080pt;}
.y80_c00246{bottom:478.314124pt;}
.y81_c00246{bottom:478.804904pt;}
.y82_c00246{bottom:479.472449pt;}
.y83_c00246{bottom:479.906305pt;}
.y84_c00246{bottom:480.599783pt;}
.y85_c00246{bottom:481.355381pt;}
.y86_c00246{bottom:481.789329pt;}
.y87_c00246{bottom:482.351371pt;}
.y88_c00246{bottom:483.207475pt;}
.y89_c00246{bottom:483.719371pt;}
.y78_c00246{bottom:498.002015pt;}
.y79_c00246{bottom:499.448009pt;}
.y7a_c00246{bottom:499.950697pt;}
.y7b_c00246{bottom:501.743195pt;}
.y7c_c00246{bottom:502.319421pt;}
.y7d_c00246{bottom:503.147207pt;}
.y7e_c00246{bottom:503.686388pt;}
.y7f_c00246{bottom:504.505280pt;}
.y73_c00246{bottom:519.366667pt;}
.y74_c00246{bottom:520.482811pt;}
.y75_c00246{bottom:521.580248pt;}
.y76_c00246{bottom:522.111057pt;}
.y77_c00246{bottom:522.740184pt;}
.ydc_c00246{bottom:524.158667pt;}
.y6_c00246{bottom:567.241333pt;}
.y6b_c00246{bottom:569.284000pt;}
.y6c_c00246{bottom:569.790000pt;}
.y6d_c00246{bottom:570.627147pt;}
.y6e_c00246{bottom:570.873253pt;}
.y6f_c00246{bottom:571.232213pt;}
.y70_c00246{bottom:572.088267pt;}
.y71_c00246{bottom:572.989227pt;}
.y72_c00246{bottom:573.553307pt;}
.y62_c00246{bottom:587.038080pt;}
.y63_c00246{bottom:587.734176pt;}
.y64_c00246{bottom:588.648587pt;}
.y65_c00246{bottom:589.469264pt;}
.y66_c00246{bottom:589.937600pt;}
.y67_c00246{bottom:591.068224pt;}
.y68_c00246{bottom:592.091973pt;}
.y69_c00246{bottom:593.852048pt;}
.y6a_c00246{bottom:594.423973pt;}
.y58_c00246{bottom:606.716059pt;}
.y59_c00246{bottom:607.148133pt;}
.y5a_c00246{bottom:607.883813pt;}
.y5b_c00246{bottom:608.876992pt;}
.y5c_c00246{bottom:609.780651pt;}
.y5d_c00246{bottom:610.298464pt;}
.y5e_c00246{bottom:611.743504pt;}
.y5f_c00246{bottom:612.554395pt;}
.y60_c00246{bottom:613.561200pt;}
.y61_c00246{bottom:614.398384pt;}
.y4f_c00246{bottom:627.096000pt;}
.y50_c00246{bottom:627.747280pt;}
.y51_c00246{bottom:628.765509pt;}
.y52_c00246{bottom:629.296053pt;}
.y53_c00246{bottom:630.854981pt;}
.y54_c00246{bottom:631.747845pt;}
.y55_c00246{bottom:632.269728pt;}
.y56_c00246{bottom:633.301248pt;}
.y57_c00246{bottom:634.235963pt;}
.y4d_c00246{bottom:655.454667pt;}
.y4e_c00246{bottom:659.281352pt;}
.y43_c00246{bottom:677.027667pt;}
.y44_c00246{bottom:677.869333pt;}
.y45_c00246{bottom:678.687133pt;}
.y46_c00246{bottom:679.184600pt;}
.y47_c00246{bottom:679.961133pt;}
.y48_c00246{bottom:681.717167pt;}
.y49_c00246{bottom:682.311533pt;}
.y4a_c00246{bottom:683.159467pt;}
.y4b_c00246{bottom:684.214967pt;}
.y4c_c00246{bottom:684.754767pt;}
.y3a_c00246{bottom:697.421567pt;}
.y3b_c00246{bottom:698.046300pt;}
.y3c_c00246{bottom:698.919033pt;}
.y3d_c00246{bottom:699.964833pt;}
.y3e_c00246{bottom:700.698033pt;}
.y3f_c00246{bottom:701.862800pt;}
.y40_c00246{bottom:702.427533pt;}
.y41_c00246{bottom:703.899533pt;}
.y42_c00246{bottom:704.424000pt;}
.y31_c00246{bottom:717.842133pt;}
.y32_c00246{bottom:718.555067pt;}
.y33_c00246{bottom:719.481733pt;}
.y34_c00246{bottom:721.089167pt;}
.y35_c00246{bottom:722.281400pt;}
.y36_c00246{bottom:722.982933pt;}
.y37_c00246{bottom:724.407133pt;}
.y38_c00246{bottom:725.055567pt;}
.y39_c00246{bottom:726.228467pt;}
.y26_c00246{bottom:738.246667pt;}
.y27_c00246{bottom:738.745567pt;}
.y28_c00246{bottom:739.711267pt;}
.y29_c00246{bottom:740.861100pt;}
.y2a_c00246{bottom:741.842233pt;}
.y2b_c00246{bottom:742.545500pt;}
.y2c_c00246{bottom:743.027300pt;}
.y2d_c00246{bottom:743.722767pt;}
.y2e_c00246{bottom:745.142533pt;}
.y2f_c00246{bottom:745.728700pt;}
.y30_c00246{bottom:746.693033pt;}
.y1_c00246{bottom:772.568000pt;}
.y2_c00246{bottom:776.308757pt;}
.y3_c00246{bottom:777.127957pt;}
.y4_c00246{bottom:780.465813pt;}
.y5_c00246{bottom:782.539584pt;}
.h21_c00246{height:39.207839pt;}
.h8_c00246{height:39.218831pt;}
.h20_c00246{height:41.074879pt;}
.h4_c00246{height:42.020176pt;}
.h23_c00246{height:42.941919pt;}
.h25_c00246{height:43.875439pt;}
.h22_c00246{height:44.808959pt;}
.h7_c00246{height:44.821521pt;}
.h1f_c00246{height:45.742479pt;}
.h1d_c00246{height:45.746503pt;}
.h24_c00246{height:47.609519pt;}
.h19_c00246{height:47.612589pt;}
.h6_c00246{height:47.622866pt;}
.h5_c00246{height:49.490430pt;}
.h1b_c00246{height:53.214070pt;}
.h9_c00246{height:53.225556pt;}
.h1a_c00246{height:55.081230pt;}
.h15_c00246{height:56.014810pt;}
.h1e_c00246{height:57.866667pt;}
.h3_c00246{height:58.800000pt;}
.h16_c00246{height:58.815551pt;}
.h17_c00246{height:59.749131pt;}
.h12_c00246{height:60.678799pt;}
.hc_c00246{height:60.685622pt;}
.h11_c00246{height:60.690443pt;}
.he_c00246{height:60.692172pt;}
.h18_c00246{height:61.616291pt;}
.h10_c00246{height:61.624142pt;}
.h14_c00246{height:63.483451pt;}
.hb_c00246{height:63.486497pt;}
.h13_c00246{height:64.417032pt;}
.ha_c00246{height:64.420122pt;}
.hf_c00246{height:64.425240pt;}
.h1c_c00246{height:65.350612pt;}
.hd_c00246{height:65.353747pt;}
.h2_c00246{height:118.475534pt;}
.h1_c00246{height:893.333333pt;}
.h0_c00246{height:893.466667pt;}
.w1_c00246{width:634.000000pt;}
.w0_c00246{width:634.266667pt;}
.x0_c00246{left:0.000000pt;}
.x81_c00246{left:80.366667pt;}
.x9_c00246{left:84.297333pt;}
.x1d_c00246{left:86.796295pt;}
.x48_c00246{left:93.959504pt;}
.x10_c00246{left:98.875395pt;}
.x1_c00246{left:100.612000pt;}
.x6_c00246{left:101.520000pt;}
.x73_c00246{left:104.348475pt;}
.x2a_c00246{left:106.401200pt;}
.x11_c00246{left:109.859487pt;}
.x7_c00246{left:111.360000pt;}
.x18_c00246{left:112.571932pt;}
.x6b_c00246{left:113.509645pt;}
.x7d_c00246{left:115.631545pt;}
.x82_c00246{left:116.613333pt;}
.xa_c00246{left:119.733149pt;}
.x1e_c00246{left:128.147619pt;}
.x21_c00246{left:129.444000pt;}
.x19_c00246{left:130.581209pt;}
.x8_c00246{left:131.760000pt;}
.x2b_c00246{left:132.783867pt;}
.x33_c00246{left:134.013033pt;}
.x49_c00246{left:137.190032pt;}
.x12_c00246{left:138.191360pt;}
.x5e_c00246{left:139.119723pt;}
.x38_c00246{left:146.913200pt;}
.xb_c00246{left:151.127855pt;}
.x74_c00246{left:155.769503pt;}
.x57_c00246{left:158.718667pt;}
.x17_c00246{left:161.075209pt;}
.x70_c00246{left:164.152693pt;}
.x2c_c00246{left:167.128833pt;}
.x22_c00246{left:168.072000pt;}
.x67_c00246{left:171.881177pt;}
.xf_c00246{left:172.841556pt;}
.x4a_c00246{left:173.995077pt;}
.x5b_c00246{left:175.495081pt;}
.x1a_c00246{left:177.883968pt;}
.x39_c00246{left:182.453633pt;}
.x7e_c00246{left:186.165267pt;}
.x43_c00246{left:187.877333pt;}
.x64_c00246{left:189.891793pt;}
.x13_c00246{left:192.215407pt;}
.x1f_c00246{left:193.355199pt;}
.xc_c00246{left:194.393277pt;}
.x7a_c00246{left:195.402519pt;}
.x5c_c00246{left:197.351081pt;}
.x75_c00246{left:199.971527pt;}
.x1b_c00246{left:201.415911pt;}
.x3a_c00246{left:204.060033pt;}
.x14_c00246{left:205.149535pt;}
.x58_c00246{left:206.433333pt;}
.x34_c00246{left:207.819200pt;}
.x6c_c00246{left:209.948269pt;}
.xd_c00246{left:211.684521pt;}
.x23_c00246{left:214.065333pt;}
.x2_c00246{left:217.393768pt;}
.x1c_c00246{left:221.345715pt;}
.x4e_c00246{left:223.299589pt;}
.x2d_c00246{left:226.676533pt;}
.x59_c00246{left:229.512000pt;}
.x68_c00246{left:230.731860pt;}
.x15_c00246{left:232.064871pt;}
.x5f_c00246{left:233.572401pt;}
.xe_c00246{left:235.460623pt;}
.x3b_c00246{left:237.843067pt;}
.x41_c00246{left:240.508000pt;}
.x3_c00246{left:242.968168pt;}
.x20_c00246{left:245.516196pt;}
.x7b_c00246{left:249.893033pt;}
.x16_c00246{left:252.480476pt;}
.x5a_c00246{left:256.865333pt;}
.x6d_c00246{left:259.181007pt;}
.x83_c00246{left:262.194667pt;}
.x4f_c00246{left:266.776683pt;}
.x52_c00246{left:268.968000pt;}
.x2e_c00246{left:270.843667pt;}
.x60_c00246{left:273.326717pt;}
.x44_c00246{left:275.441333pt;}
.x76_c00246{left:278.228448pt;}
.x4b_c00246{left:280.135360pt;}
.x24_c00246{left:281.441333pt;}
.x7c_c00246{left:284.146597pt;}
.x65_c00246{left:286.794001pt;}
.x45_c00246{left:294.080000pt;}
.x7f_c00246{left:294.972293pt;}
.x2f_c00246{left:296.823700pt;}
.x53_c00246{left:299.221333pt;}
.x25_c00246{left:300.713333pt;}
.x35_c00246{left:302.538167pt;}
.x50_c00246{left:306.150885pt;}
.x84_c00246{left:307.920000pt;}
.xa1_c00246{left:309.151040pt;}
.x4c_c00246{left:310.144181pt;}
.x3c_c00246{left:314.168200pt;}
.x6e_c00246{left:315.415568pt;}
.x66_c00246{left:319.046737pt;}
.x95_c00246{left:322.553200pt;}
.x61_c00246{left:325.736865pt;}
.x26_c00246{left:328.532000pt;}
.x71_c00246{left:329.857829pt;}
.x46_c00246{left:330.920000pt;}
.x90_c00246{left:331.885787pt;}
.x85_c00246{left:333.360000pt;}
.x69_c00246{left:334.671585pt;}
.x5d_c00246{left:336.329748pt;}
.x88_c00246{left:339.076000pt;}
.x3d_c00246{left:340.024167pt;}
.x54_c00246{left:342.024000pt;}
.x4_c00246{left:347.171860pt;}
.x30_c00246{left:349.575733pt;}
.x91_c00246{left:350.849600pt;}
.x6a_c00246{left:356.736107pt;}
.x8c_c00246{left:358.247093pt;}
.x36_c00246{left:359.176767pt;}
.x47_c00246{left:364.302667pt;}
.x86_c00246{left:366.720000pt;}
.x9d_c00246{left:369.056400pt;}
.x62_c00246{left:370.789005pt;}
.x42_c00246{left:372.462667pt;}
.x31_c00246{left:373.591867pt;}
.x99_c00246{left:375.815707pt;}
.x3e_c00246{left:376.876667pt;}
.x4d_c00246{left:378.431419pt;}
.x37_c00246{left:379.354933pt;}
.x27_c00246{left:385.322667pt;}
.x55_c00246{left:387.072000pt;}
.x96_c00246{left:389.757147pt;}
.x6f_c00246{left:391.052781pt;}
.x80_c00246{left:393.635243pt;}
.x51_c00246{left:395.822555pt;}
.x63_c00246{left:397.743489pt;}
.x9e_c00246{left:403.501493pt;}
.x98_c00246{left:404.673280pt;}
.x89_c00246{left:406.037333pt;}
.x8d_c00246{left:406.982720pt;}
.x28_c00246{left:408.769333pt;}
.x77_c00246{left:409.665125pt;}
.x5_c00246{left:411.912388pt;}
.x9a_c00246{left:414.225360pt;}
.x56_c00246{left:415.276000pt;}
.x32_c00246{left:417.039033pt;}
.x87_c00246{left:419.280000pt;}
.x3f_c00246{left:422.778967pt;}
.x78_c00246{left:431.831471pt;}
.x8a_c00246{left:435.076000pt;}
.x9f_c00246{left:438.759707pt;}
.x92_c00246{left:441.107707pt;}
.x40_c00246{left:446.238800pt;}
.x29_c00246{left:447.342667pt;}
.x8e_c00246{left:450.918267pt;}
.x8b_c00246{left:451.906667pt;}
.xa0_c00246{left:453.201573pt;}
.x9b_c00246{left:455.082533pt;}
.x79_c00246{left:458.967395pt;}
.x72_c00246{left:464.312896pt;}
.x8f_c00246{left:469.653307pt;}
.xa2_c00246{left:472.407867pt;}
.x93_c00246{left:479.276667pt;}
.x9c_c00246{left:492.700347pt;}
.x94_c00246{left:498.715120pt;}
.x97_c00246{left:500.669627pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.ma1_c00247{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);}
.m2_c00247{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);}
.m47_c00247{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);}
.m0_c00247{transform:matrix(0.104810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104810,0.000000,0.000000,0.250000,0,0);}
.m5f_c00247{transform:matrix(0.119515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119515,0.000000,0.000000,0.250000,0,0);}
.md4_c00247{transform:matrix(0.124792,0.001373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.124792,0.001373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.124792,0.001373,-0.002750,0.249985,0,0);}
.m6_c00247{transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.139120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139120,0.000000,0.000000,0.250000,0,0);}
.maf_c00247{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);}
.m6b_c00247{transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147055,0.000000,0.000000,0.250000,0,0);}
.mae_c00247{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);}
.m73_c00247{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);}
.mc_c00247{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{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);}
.m55_c00247{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);}
.m98_c00247{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);}
.m23_c00247{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);}
.m4a_c00247{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);}
.m8d_c00247{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);}
.m8a_c00247{transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);}
.mb1_c00247{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);}
.m13_c00247{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);}
.m1b_c00247{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);}
.mb3_c00247{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);}
.mf_c00247{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);}
.mb4_c00247{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);}
.m29_c00247{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);}
.m71_c00247{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);}
.mdc_c00247{transform:matrix(0.162980,0.001793,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162980,0.001793,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162980,0.001793,-0.002750,0.249985,0,0);}
.mf3_c00247{transform:matrix(0.163475,0.001798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163475,0.001798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163475,0.001798,-0.002750,0.249985,0,0);}
.m4b_c00247{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);}
.mcd_c00247{transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);}
.m9c_c00247{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);}
.me_c00247{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);}
.mf5_c00247{transform:matrix(0.166390,0.001830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166390,0.001830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166390,0.001830,-0.002750,0.249985,0,0);}
.m6e_c00247{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);}
.m4f_c00247{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);}
.m8b_c00247{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);}
.m8c_c00247{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);}
.m95_c00247{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);}
.m51_c00247{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);}
.md_c00247{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);}
.mbd_c00247{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_c00247{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);}
.mdb_c00247{transform:matrix(0.171735,0.001889,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171735,0.001889,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171735,0.001889,-0.002750,0.249985,0,0);}
.m72_c00247{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);}
.md6_c00247{transform:matrix(0.171840,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171840,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171840,0.001890,-0.002750,0.249985,0,0);}
.m50_c00247{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);}
.m36_c00247{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);}
.m75_c00247{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m8e_c00247{transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{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);}
.me7_c00247{transform:matrix(0.174389,0.001918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174389,0.001918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174389,0.001918,-0.002750,0.249985,0,0);}
.m70_c00247{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);}
.m12_c00247{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);}
.m9f_c00247{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);}
.m4c_c00247{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);}
.me1_c00247{transform:matrix(0.177379,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177379,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177379,0.001951,-0.002750,0.249985,0,0);}
.mce_c00247{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);}
.m18_c00247{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);}
.m1f_c00247{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);}
.me3_c00247{transform:matrix(0.179019,0.001969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179019,0.001969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179019,0.001969,-0.002750,0.249985,0,0);}
.me6_c00247{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);}
.m2f_c00247{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);}
.me9_c00247{transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180464,0.001985,-0.002750,0.249985,0,0);}
.m37_c00247{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);}
.mcc_c00247{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);}
.m28_c00247{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);}
.m44_c00247{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_c00247{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);}
.m1c_c00247{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);}
.mc3_c00247{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);}
.m45_c00247{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);}
.mbc_c00247{transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{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);}
.m67_c00247{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);}
.mc4_c00247{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);}
.m93_c00247{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);}
.maa_c00247{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);}
.mc9_c00247{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);}
.mea_c00247{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);}
.m7d_c00247{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{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);}
.m96_c00247{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);}
.mfd_c00247{transform:matrix(0.188284,0.002071,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188284,0.002071,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188284,0.002071,-0.002750,0.249985,0,0);}
.me4_c00247{transform:matrix(0.188544,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188544,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188544,0.002074,-0.002750,0.249985,0,0);}
.m10c_c00247{transform:matrix(0.188894,0.002078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188894,0.002078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188894,0.002078,-0.002750,0.249985,0,0);}
.m8f_c00247{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);}
.mb6_c00247{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);}
.m56_c00247{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);}
.m9e_c00247{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);}
.m11_c00247{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);}
.mb5_c00247{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);}
.m24_c00247{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);}
.mc8_c00247{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);}
.mcf_c00247{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);}
.meb_c00247{transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);}
.ma6_c00247{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);}
.mc6_c00247{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);}
.mec_c00247{transform:matrix(0.193613,0.002130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193613,0.002130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193613,0.002130,-0.002750,0.249985,0,0);}
.m2b_c00247{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);}
.m8_c00247{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);}
.m10e_c00247{transform:matrix(0.194343,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194343,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194343,0.002138,-0.002750,0.249985,0,0);}
.mdd_c00247{transform:matrix(0.194363,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194363,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194363,0.002138,-0.002750,0.249985,0,0);}
.m92_c00247{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_c00247{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);}
.mb0_c00247{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);}
.md3_c00247{transform:matrix(0.195723,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195723,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195723,0.002153,-0.002750,0.249985,0,0);}
.mf8_c00247{transform:matrix(0.195768,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195768,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195768,0.002153,-0.002750,0.249985,0,0);}
.m46_c00247{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);}
.mff_c00247{transform:matrix(0.195898,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195898,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195898,0.002155,-0.002750,0.249985,0,0);}
.mb7_c00247{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);}
.mbb_c00247{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);}
.m17_c00247{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);}
.m7f_c00247{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);}
.mde_c00247{transform:matrix(0.197103,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197103,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197103,0.002168,-0.002750,0.249985,0,0);}
.mab_c00247{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);}
.me5_c00247{transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197388,0.002171,-0.002750,0.249985,0,0);}
.m7e_c00247{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);}
.mfb_c00247{transform:matrix(0.198238,0.002181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198238,0.002181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198238,0.002181,-0.002750,0.249985,0,0);}
.m4_c00247{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);}
.m6f_c00247{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);}
.m27_c00247{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);}
.m21_c00247{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);}
.m16_c00247{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);}
.m22_c00247{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);}
.ma8_c00247{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);}
.mf7_c00247{transform:matrix(0.199398,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199398,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199398,0.002193,-0.002750,0.249985,0,0);}
.m31_c00247{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);}
.m64_c00247{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);}
.mb2_c00247{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);}
.mef_c00247{transform:matrix(0.202398,0.002226,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202398,0.002226,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202398,0.002226,-0.002750,0.249985,0,0);}
.ma0_c00247{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);}
.m2c_c00247{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);}
.m49_c00247{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);}
.m68_c00247{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);}
.m32_c00247{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);}
.m3e_c00247{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);}
.m48_c00247{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);}
.ma7_c00247{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);}
.m88_c00247{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);}
.mdf_c00247{transform:matrix(0.204688,0.002252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204688,0.002252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204688,0.002252,-0.002750,0.249985,0,0);}
.mb9_c00247{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);}
.m52_c00247{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);}
.m79_c00247{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);}
.me2_c00247{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);}
.mf6_c00247{transform:matrix(0.206912,0.002276,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206912,0.002276,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206912,0.002276,-0.002750,0.249985,0,0);}
.m5d_c00247{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);}
.mda_c00247{transform:matrix(0.207057,0.002278,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207057,0.002278,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207057,0.002278,-0.002750,0.249985,0,0);}
.m3b_c00247{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);}
.m41_c00247{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);}
.m3c_c00247{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);}
.md7_c00247{transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);}
.m7a_c00247{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);}
.mf2_c00247{transform:matrix(0.209277,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209277,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209277,0.002302,-0.002750,0.249985,0,0);}
.m40_c00247{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);}
.m26_c00247{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);}
.mf4_c00247{transform:matrix(0.210197,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210197,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210197,0.002312,-0.002750,0.249985,0,0);}
.mc0_c00247{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);}
.mba_c00247{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);}
.mee_c00247{transform:matrix(0.210647,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210647,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210647,0.002317,-0.002750,0.249985,0,0);}
.m25_c00247{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);}
.m83_c00247{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);}
.md2_c00247{transform:matrix(0.212032,0.002332,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212032,0.002332,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212032,0.002332,-0.002750,0.249985,0,0);}
.m2d_c00247{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);}
.m81_c00247{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);}
.m66_c00247{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);}
.mca_c00247{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);}
.m6c_c00247{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);}
.m102_c00247{transform:matrix(0.215637,0.002372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215637,0.002372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215637,0.002372,-0.002750,0.249985,0,0);}
.mac_c00247{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);}
.m10_c00247{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);}
.m1d_c00247{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);}
.mc1_c00247{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);}
.mad_c00247{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);}
.m103_c00247{transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);}
.m2a_c00247{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);}
.m97_c00247{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);}
.m89_c00247{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);}
.m9b_c00247{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);}
.m101_c00247{transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223606,0.002460,-0.002750,0.249985,0,0);}
.m10b_c00247{transform:matrix(0.223856,0.002462,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223856,0.002462,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223856,0.002462,-0.002750,0.249985,0,0);}
.m62_c00247{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);}
.m104_c00247{transform:matrix(0.224101,0.002465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224101,0.002465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224101,0.002465,-0.002750,0.249985,0,0);}
.med_c00247{transform:matrix(0.224216,0.002466,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224216,0.002466,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224216,0.002466,-0.002750,0.249985,0,0);}
.m1e_c00247{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);}
.m4d_c00247{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);}
.ma9_c00247{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m80_c00247{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);}
.ma5_c00247{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);}
.m100_c00247{transform:matrix(0.227586,0.002503,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227586,0.002503,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227586,0.002503,-0.002750,0.249985,0,0);}
.mfe_c00247{transform:matrix(0.227856,0.002506,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227856,0.002506,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227856,0.002506,-0.002750,0.249985,0,0);}
.m77_c00247{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);}
.m39_c00247{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);}
.m69_c00247{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);}
.mbe_c00247{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);}
.m90_c00247{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);}
.m61_c00247{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.m105_c00247{transform:matrix(0.230086,0.002531,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230086,0.002531,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230086,0.002531,-0.002750,0.249985,0,0);}
.m57_c00247{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);}
.m82_c00247{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);}
.m6d_c00247{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.m43_c00247{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);}
.m15_c00247{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);}
.md5_c00247{transform:matrix(0.233741,0.002571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233741,0.002571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233741,0.002571,-0.002750,0.249985,0,0);}
.mc2_c00247{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);}
.mfa_c00247{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);}
.m84_c00247{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);}
.m20_c00247{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.mfc_c00247{transform:matrix(0.241390,0.002655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241390,0.002655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241390,0.002655,-0.002750,0.249985,0,0);}
.m109_c00247{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);}
.m35_c00247{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);}
.m7c_c00247{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.m74_c00247{transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);}
.mf0_c00247{transform:matrix(0.245520,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245520,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245520,0.002701,-0.002750,0.249985,0,0);}
.mbf_c00247{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);}
.m3a_c00247{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.mc5_c00247{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00247{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m9a_c00247{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);}
.m54_c00247{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m85_c00247{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);}
.mc7_c00247{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);}
.m99_c00247{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);}
.m3f_c00247{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);}
.m5e_c00247{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m3d_c00247{transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00247{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.m63_c00247{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);}
.m106_c00247{transform:matrix(0.252620,0.002779,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252620,0.002779,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252620,0.002779,-0.002750,0.249985,0,0);}
.m86_c00247{transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);}
.m5c_c00247{transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);}
.m91_c00247{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);}
.m94_c00247{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m38_c00247{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);}
.mcb_c00247{transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.261680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261680,0.000000,0.000000,0.250000,0,0);}
.m76_c00247{transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);}
.m7b_c00247{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);}
.md9_c00247{transform:matrix(0.266729,0.002934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266729,0.002934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266729,0.002934,-0.002750,0.249985,0,0);}
.m42_c00247{transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);}
.m6a_c00247{transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);}
.m60_c00247{transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);}
.me0_c00247{transform:matrix(0.271784,0.002990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271784,0.002990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271784,0.002990,-0.002750,0.249985,0,0);}
.m78_c00247{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);}
.m34_c00247{transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);}
.m107_c00247{transform:matrix(0.282828,0.003111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282828,0.003111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282828,0.003111,-0.002750,0.249985,0,0);}
.m65_c00247{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);}
.m59_c00247{transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306990,0.000000,0.000000,0.250000,0,0);}
.ma4_c00247{transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308980,0.000000,0.000000,0.250000,0,0);}
.m4e_c00247{transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332005,0.000000,0.000000,0.250000,0,0);}
.me8_c00247{transform:matrix(0.336325,0.003700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.336325,0.003700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.336325,0.003700,-0.002750,0.249985,0,0);}
.ma3_c00247{transform:matrix(0.347795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347795,0.000000,0.000000,0.250000,0,0);}
.mf1_c00247{transform:matrix(0.363303,0.003996,-0.002750,0.249985,0,0);-ms-transform:matrix(0.363303,0.003996,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.363303,0.003996,-0.002750,0.249985,0,0);}
.m87_c00247{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m108_c00247{transform:matrix(0.371408,0.004085,-0.002750,0.249985,0,0);-ms-transform:matrix(0.371408,0.004085,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.371408,0.004085,-0.002750,0.249985,0,0);}
.m10a_c00247{transform:matrix(0.371443,0.004086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.371443,0.004086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.371443,0.004086,-0.002750,0.249985,0,0);}
.mf9_c00247{transform:matrix(0.374977,0.004125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.374977,0.004125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.374977,0.004125,-0.002750,0.249985,0,0);}
.m5b_c00247{transform:matrix(0.375525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375525,0.000000,0.000000,0.250000,0,0);}
.md8_c00247{transform:matrix(0.389486,0.004284,-0.002750,0.249985,0,0);-ms-transform:matrix(0.389486,0.004284,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.389486,0.004284,-0.002750,0.249985,0,0);}
.ma2_c00247{transform:matrix(0.398875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398875,0.000000,0.000000,0.250000,0,0);}
.m53_c00247{transform:matrix(0.424900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424900,0.000000,0.000000,0.250000,0,0);}
.m10f_c00247{transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);}
.md1_c00247{transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.493725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493725,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.524350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524350,0.000000,0.000000,0.250000,0,0);}
.md0_c00247{transform:matrix(0.756465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756465,0.000000,0.000000,0.250000,0,0);}
.m10d_c00247{transform:matrix(1.147761,0.012625,-0.002750,0.249985,0,0);-ms-transform:matrix(1.147761,0.012625,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.147761,0.012625,-0.002750,0.249985,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;}
.fsf_c00247{font-size:22.050000px;}
.fse_c00247{font-size:26.250000px;}
.fs1_c00247{font-size:31.500000px;}
.fs13_c00247{font-size:47.252859px;}
.fs12_c00247{font-size:49.352986px;}
.fs10_c00247{font-size:52.503176px;}
.fs11_c00247{font-size:53.553240px;}
.fsd_c00247{font-size:64.050000px;}
.fsc_c00247{font-size:65.100000px;}
.fsb_c00247{font-size:66.150000px;}
.fs7_c00247{font-size:67.200000px;}
.fsa_c00247{font-size:68.250000px;}
.fs5_c00247{font-size:69.300000px;}
.fs6_c00247{font-size:70.350000px;}
.fs2_c00247{font-size:71.400000px;}
.fs8_c00247{font-size:72.450000px;}
.fs9_c00247{font-size:73.500000px;}
.fs4_c00247{font-size:75.600000px;}
.fs3_c00247{font-size:79.800000px;}
.fs0_c00247{font-size:100.800000px;}
.fs14_c00247{font-size:204.750000px;}
.y0_c00247{bottom:0.000000px;}
.y81_c00247{bottom:108.270000px;}
.y80_c00247{bottom:152.498274px;}
.y7f_c00247{bottom:153.146158px;}
.y7e_c00247{bottom:153.609869px;}
.y7d_c00247{bottom:153.999318px;}
.y7c_c00247{bottom:154.323301px;}
.y7b_c00247{bottom:154.757331px;}
.y7a_c00247{bottom:154.864588px;}
.y79_c00247{bottom:155.061961px;}
.y78_c00247{bottom:155.872044px;}
.y77_c00247{bottom:156.753582px;}
.y76_c00247{bottom:156.986477px;}
.y75_c00247{bottom:157.261839px;}
.y74_c00247{bottom:157.673677px;}
.y73_c00247{bottom:170.594039px;}
.y72_c00247{bottom:170.959632px;}
.y71_c00247{bottom:171.131861px;}
.y70_c00247{bottom:171.628518px;}
.y6f_c00247{bottom:171.836829px;}
.y6e_c00247{bottom:172.199453px;}
.y6d_c00247{bottom:172.457640px;}
.y6c_c00247{bottom:173.045139px;}
.y6b_c00247{bottom:173.210521px;}
.y6a_c00247{bottom:173.751116px;}
.y69_c00247{bottom:173.945766px;}
.y68_c00247{bottom:174.382716px;}
.y67_c00247{bottom:174.505713px;}
.y66_c00247{bottom:174.769130px;}
.y65_c00247{bottom:174.969901px;}
.y64_c00247{bottom:175.368228px;}
.y63_c00247{bottom:175.505133px;}
.y62_c00247{bottom:176.037032px;}
.y61_c00247{bottom:187.787385px;}
.y60_c00247{bottom:188.523058px;}
.y5f_c00247{bottom:188.652771px;}
.y5e_c00247{bottom:189.015064px;}
.y5d_c00247{bottom:189.572438px;}
.y5c_c00247{bottom:189.783504px;}
.y5b_c00247{bottom:190.354224px;}
.y5a_c00247{bottom:190.513419px;}
.y59_c00247{bottom:190.752105px;}
.y58_c00247{bottom:191.287551px;}
.y57_c00247{bottom:191.864921px;}
.y56_c00247{bottom:192.155659px;}
.y55_c00247{bottom:192.473670px;}
.y54_c00247{bottom:192.862938px;}
.y53_c00247{bottom:193.109576px;}
.y52_c00247{bottom:193.321038px;}
.y51_c00247{bottom:205.453984px;}
.y50_c00247{bottom:205.947401px;}
.y4f_c00247{bottom:206.223231px;}
.y4e_c00247{bottom:206.553281px;}
.y4d_c00247{bottom:206.900853px;}
.y4c_c00247{bottom:207.253904px;}
.y4b_c00247{bottom:207.468255px;}
.y4a_c00247{bottom:207.732437px;}
.y49_c00247{bottom:208.335413px;}
.y48_c00247{bottom:208.670841px;}
.y47_c00247{bottom:209.312559px;}
.y46_c00247{bottom:209.424990px;}
.y45_c00247{bottom:210.141304px;}
.y44_c00247{bottom:210.331500px;}
.y43_c00247{bottom:250.830000px;}
.y42_c00247{bottom:252.847500px;}
.y41_c00247{bottom:268.207500px;}
.y40_c00247{bottom:268.804500px;}
.y3f_c00247{bottom:269.320500px;}
.y3e_c00247{bottom:270.237000px;}
.y3d_c00247{bottom:270.483000px;}
.y3c_c00247{bottom:271.363500px;}
.y3b_c00247{bottom:271.686000px;}
.y3a_c00247{bottom:272.466000px;}
.y39_c00247{bottom:272.974500px;}
.y38_c00247{bottom:291.673500px;}
.y37_c00247{bottom:292.467000px;}
.y36_c00247{bottom:292.848000px;}
.y35_c00247{bottom:293.325000px;}
.y34_c00247{bottom:293.841000px;}
.y33_c00247{bottom:294.858000px;}
.y32_c00247{bottom:295.578000px;}
.y31_c00247{bottom:295.924500px;}
.y30_c00247{bottom:315.595500px;}
.y2f_c00247{bottom:315.880500px;}
.y2e_c00247{bottom:316.462500px;}
.y2d_c00247{bottom:316.957500px;}
.y2c_c00247{bottom:317.539500px;}
.y2b_c00247{bottom:317.994000px;}
.y2a_c00247{bottom:318.603000px;}
.y29_c00247{bottom:338.017500px;}
.y28_c00247{bottom:338.457000px;}
.y27_c00247{bottom:338.952000px;}
.y26_c00247{bottom:339.495000px;}
.y25_c00247{bottom:339.748500px;}
.y24_c00247{bottom:340.029000px;}
.y23_c00247{bottom:340.225500px;}
.y22_c00247{bottom:340.384500px;}
.y21_c00247{bottom:340.695000px;}
.y20_c00247{bottom:340.890000px;}
.y1f_c00247{bottom:341.281500px;}
.y1e_c00247{bottom:362.472000px;}
.y1d_c00247{bottom:384.300000px;}
.y1c_c00247{bottom:410.517000px;}
.y1b_c00247{bottom:411.756000px;}
.y1a_c00247{bottom:412.287000px;}
.y19_c00247{bottom:412.749000px;}
.y18_c00247{bottom:413.097000px;}
.y17_c00247{bottom:413.367000px;}
.y16_c00247{bottom:414.055500px;}
.y15_c00247{bottom:414.453000px;}
.y14_c00247{bottom:435.691500px;}
.y13_c00247{bottom:458.665500px;}
.y12_c00247{bottom:481.351500px;}
.y11_c00247{bottom:504.436500px;}
.y10_c00247{bottom:527.211000px;}
.yf_c00247{bottom:549.189000px;}
.ye_c00247{bottom:572.685000px;}
.yd_c00247{bottom:599.970000px;}
.yc_c00247{bottom:628.093500px;}
.yb_c00247{bottom:650.779500px;}
.ya_c00247{bottom:673.765500px;}
.y9_c00247{bottom:696.258000px;}
.y8_c00247{bottom:719.283000px;}
.y7_c00247{bottom:741.672000px;}
.y6_c00247{bottom:765.162000px;}
.y5_c00247{bottom:787.786500px;}
.y4_c00247{bottom:811.240500px;}
.y3_c00247{bottom:834.312000px;}
.y2_c00247{bottom:925.443000px;}
.y1_c00247{bottom:934.410000px;}
.h11_c00247{height:22.050000px;}
.h10_c00247{height:26.250000px;}
.h3_c00247{height:31.500000px;}
.h15_c00247{height:47.252859px;}
.h14_c00247{height:49.352986px;}
.h12_c00247{height:52.503176px;}
.h13_c00247{height:53.553240px;}
.hf_c00247{height:64.050000px;}
.he_c00247{height:65.100000px;}
.hd_c00247{height:66.150000px;}
.h9_c00247{height:67.200000px;}
.hc_c00247{height:68.250000px;}
.h7_c00247{height:69.300000px;}
.h8_c00247{height:70.350000px;}
.h4_c00247{height:71.400000px;}
.ha_c00247{height:72.450000px;}
.hb_c00247{height:73.500000px;}
.h6_c00247{height:75.600000px;}
.h5_c00247{height:79.800000px;}
.h2_c00247{height:100.800000px;}
.h16_c00247{height:204.750000px;}
.h0_c00247{height:1008.450000px;}
.h1_c00247{height:1008.750000px;}
.w0_c00247{width:678.450000px;}
.w1_c00247{width:678.750000px;}
.x0_c00247{left:0.000000px;}
.x96_c00247{left:63.450000px;}
.x8a_c00247{left:119.249143px;}
.x83_c00247{left:120.847938px;}
.x7a_c00247{left:132.994500px;}
.x84_c00247{left:138.435240px;}
.x2a_c00247{left:150.120000px;}
.x92_c00247{left:154.064353px;}
.x67_c00247{left:156.472500px;}
.x45_c00247{left:158.490000px;}
.x52_c00247{left:159.570000px;}
.x30_c00247{left:160.920000px;}
.x1f_c00247{left:162.000000px;}
.x8_c00247{left:163.350000px;}
.x8b_c00247{left:174.867017px;}
.x93_c00247{left:177.051606px;}
.x56_c00247{left:178.200000px;}
.x1b_c00247{left:182.520000px;}
.x37_c00247{left:185.490000px;}
.x20_c00247{left:187.110000px;}
.x9_c00247{left:190.350000px;}
.x16_c00247{left:195.480000px;}
.x53_c00247{left:196.830000px;}
.x31_c00247{left:198.720000px;}
.x46_c00247{left:201.420000px;}
.x5d_c00247{left:203.850000px;}
.x4c_c00247{left:207.090000px;}
.x24_c00247{left:211.410000px;}
.x71_c00247{left:212.676000px;}
.x7b_c00247{left:215.404500px;}
.x40_c00247{left:216.810000px;}
.x57_c00247{left:217.890000px;}
.x38_c00247{left:218.970000px;}
.x32_c00247{left:221.940000px;}
.x62_c00247{left:223.830000px;}
.x7c_c00247{left:225.625500px;}
.x6a_c00247{left:227.070000px;}
.xa_c00247{left:234.900000px;}
.x17_c00247{left:235.980000px;}
.x39_c00247{left:238.680000px;}
.x5e_c00247{left:240.570000px;}
.x85_c00247{left:242.039085px;}
.x72_c00247{left:244.755000px;}
.x8c_c00247{left:246.731224px;}
.x4d_c00247{left:248.400000px;}
.x10_c00247{left:249.750000px;}
.x25_c00247{left:253.800000px;}
.x76_c00247{left:256.135500px;}
.x1c_c00247{left:257.580000px;}
.x2b_c00247{left:260.820000px;}
.x63_c00247{left:264.060000px;}
.x3a_c00247{left:265.410000px;}
.x94_c00247{left:269.908083px;}
.x21_c00247{left:271.890000px;}
.x33_c00247{left:273.240000px;}
.xb_c00247{left:275.130000px;}
.x18_c00247{left:277.290000px;}
.x47_c00247{left:279.990000px;}
.x4e_c00247{left:281.070000px;}
.x2c_c00247{left:282.960000px;}
.x7d_c00247{left:283.963500px;}
.x64_c00247{left:285.120000px;}
.x11_c00247{left:289.980000px;}
.x3f_c00247{left:291.600000px;}
.x8d_c00247{left:293.407713px;}
.x7_c00247{left:298.080000px;}
.x1_c00247{left:303.750000px;}
.x4_c00247{left:307.260000px;}
.x58_c00247{left:309.690000px;}
.x6c_c00247{left:311.227500px;}
.x5f_c00247{left:313.470000px;}
.x26_c00247{left:316.440000px;}
.x48_c00247{left:320.760000px;}
.x1d_c00247{left:323.730000px;}
.x54_c00247{left:325.890000px;}
.xc_c00247{left:327.780000px;}
.x73_c00247{left:329.461500px;}
.x12_c00247{left:333.720000px;}
.x79_c00247{left:334.800000px;}
.x6d_c00247{left:336.553500px;}
.x22_c00247{left:339.930000px;}
.x60_c00247{left:343.440000px;}
.x1e_c00247{left:345.870000px;}
.x55_c00247{left:347.760000px;}
.x3b_c00247{left:348.840000px;}
.x19_c00247{left:351.270000px;}
.x2d_c00247{left:353.970000px;}
.x2_c00247{left:359.370000px;}
.x4f_c00247{left:361.260000px;}
.x95_c00247{left:362.790060px;}
.x61_c00247{left:365.310000px;}
.xd_c00247{left:366.390000px;}
.x49_c00247{left:368.010000px;}
.x7e_c00247{left:369.273000px;}
.x13_c00247{left:370.980000px;}
.x68_c00247{left:373.038000px;}
.x65_c00247{left:374.490000px;}
.x5_c00247{left:384.750000px;}
.x4a_c00247{left:386.910000px;}
.x6e_c00247{left:390.844500px;}
.x2e_c00247{left:393.660000px;}
.x34_c00247{left:395.550000px;}
.x14_c00247{left:398.250000px;}
.x50_c00247{left:400.410000px;}
.x23_c00247{left:402.300000px;}
.x6b_c00247{left:405.270000px;}
.xe_c00247{left:407.430000px;}
.x74_c00247{left:412.185000px;}
.x41_c00247{left:414.720000px;}
.x3c_c00247{left:417.420000px;}
.x6_c00247{left:421.200000px;}
.x35_c00247{left:423.900000px;}
.x1a_c00247{left:425.250000px;}
.xf_c00247{left:431.730000px;}
.x86_c00247{left:432.989973px;}
.x27_c00247{left:436.320000px;}
.x51_c00247{left:438.210000px;}
.x6f_c00247{left:440.287500px;}
.x59_c00247{left:443.610000px;}
.x7f_c00247{left:444.871500px;}
.x42_c00247{left:448.200000px;}
.x3d_c00247{left:449.550000px;}
.x2f_c00247{left:451.440000px;}
.x28_c00247{left:457.650000px;}
.x4b_c00247{left:462.510000px;}
.x8e_c00247{left:469.172783px;}
.x5a_c00247{left:473.580000px;}
.x3_c00247{left:476.010000px;}
.x77_c00247{left:477.726000px;}
.x87_c00247{left:479.432461px;}
.x66_c00247{left:480.600000px;}
.x70_c00247{left:484.296000px;}
.x8f_c00247{left:486.473585px;}
.x29_c00247{left:493.290000px;}
.x36_c00247{left:496.260000px;}
.x5b_c00247{left:497.340000px;}
.x15_c00247{left:499.770000px;}
.x3e_c00247{left:501.120000px;}
.x43_c00247{left:505.170000px;}
.x80_c00247{left:506.473500px;}
.x75_c00247{left:510.145500px;}
.x88_c00247{left:520.478016px;}
.x78_c00247{left:523.621500px;}
.x90_c00247{left:527.805623px;}
.x81_c00247{left:531.549000px;}
.x5c_c00247{left:541.620000px;}
.x69_c00247{left:550.066500px;}
.x44_c00247{left:555.390000px;}
.x91_c00247{left:572.607127px;}
.x82_c00247{left:576.405000px;}
.x89_c00247{left:581.765839px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:0.000000pt;}
.fsf_c00247{font-size:19.600000pt;}
.fse_c00247{font-size:23.333333pt;}
.fs1_c00247{font-size:28.000000pt;}
.fs13_c00247{font-size:42.002541pt;}
.fs12_c00247{font-size:43.869321pt;}
.fs10_c00247{font-size:46.669490pt;}
.fs11_c00247{font-size:47.602880pt;}
.fsd_c00247{font-size:56.933333pt;}
.fsc_c00247{font-size:57.866667pt;}
.fsb_c00247{font-size:58.800000pt;}
.fs7_c00247{font-size:59.733333pt;}
.fsa_c00247{font-size:60.666667pt;}
.fs5_c00247{font-size:61.600000pt;}
.fs6_c00247{font-size:62.533333pt;}
.fs2_c00247{font-size:63.466667pt;}
.fs8_c00247{font-size:64.400000pt;}
.fs9_c00247{font-size:65.333333pt;}
.fs4_c00247{font-size:67.200000pt;}
.fs3_c00247{font-size:70.933333pt;}
.fs0_c00247{font-size:89.600000pt;}
.fs14_c00247{font-size:182.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y81_c00247{bottom:96.240000pt;}
.y80_c00247{bottom:135.554021pt;}
.y7f_c00247{bottom:136.129919pt;}
.y7e_c00247{bottom:136.542105pt;}
.y7d_c00247{bottom:136.888283pt;}
.y7c_c00247{bottom:137.176268pt;}
.y7b_c00247{bottom:137.562072pt;}
.y7a_c00247{bottom:137.657412pt;}
.y79_c00247{bottom:137.832855pt;}
.y78_c00247{bottom:138.552928pt;}
.y77_c00247{bottom:139.336517pt;}
.y76_c00247{bottom:139.543535pt;}
.y75_c00247{bottom:139.788301pt;}
.y74_c00247{bottom:140.154380pt;}
.y73_c00247{bottom:151.639145pt;}
.y72_c00247{bottom:151.964117pt;}
.y71_c00247{bottom:152.117209pt;}
.y70_c00247{bottom:152.558683pt;}
.y6f_c00247{bottom:152.743848pt;}
.y6e_c00247{bottom:153.066180pt;}
.y6d_c00247{bottom:153.295680pt;}
.y6c_c00247{bottom:153.817901pt;}
.y6b_c00247{bottom:153.964908pt;}
.y6a_c00247{bottom:154.445436pt;}
.y69_c00247{bottom:154.618459pt;}
.y68_c00247{bottom:155.006859pt;}
.y67_c00247{bottom:155.116189pt;}
.y66_c00247{bottom:155.350337pt;}
.y65_c00247{bottom:155.528801pt;}
.y64_c00247{bottom:155.882869pt;}
.y63_c00247{bottom:156.004563pt;}
.y62_c00247{bottom:156.477361pt;}
.y61_c00247{bottom:166.922120pt;}
.y60_c00247{bottom:167.576052pt;}
.y5f_c00247{bottom:167.691352pt;}
.y5e_c00247{bottom:168.013391pt;}
.y5d_c00247{bottom:168.508833pt;}
.y5c_c00247{bottom:168.696448pt;}
.y5b_c00247{bottom:169.203755pt;}
.y5a_c00247{bottom:169.345261pt;}
.y59_c00247{bottom:169.557427pt;}
.y58_c00247{bottom:170.033379pt;}
.y57_c00247{bottom:170.546596pt;}
.y56_c00247{bottom:170.805031pt;}
.y55_c00247{bottom:171.087707pt;}
.y54_c00247{bottom:171.433723pt;}
.y53_c00247{bottom:171.652956pt;}
.y52_c00247{bottom:171.840923pt;}
.y51_c00247{bottom:182.625764pt;}
.y50_c00247{bottom:183.064356pt;}
.y4f_c00247{bottom:183.309539pt;}
.y4e_c00247{bottom:183.602916pt;}
.y4d_c00247{bottom:183.911869pt;}
.y4c_c00247{bottom:184.225692pt;}
.y4b_c00247{bottom:184.416227pt;}
.y4a_c00247{bottom:184.651055pt;}
.y49_c00247{bottom:185.187033pt;}
.y48_c00247{bottom:185.485192pt;}
.y47_c00247{bottom:186.055608pt;}
.y46_c00247{bottom:186.155547pt;}
.y45_c00247{bottom:186.792271pt;}
.y44_c00247{bottom:186.961333pt;}
.y43_c00247{bottom:222.960000pt;}
.y42_c00247{bottom:224.753333pt;}
.y41_c00247{bottom:238.406667pt;}
.y40_c00247{bottom:238.937333pt;}
.y3f_c00247{bottom:239.396000pt;}
.y3e_c00247{bottom:240.210667pt;}
.y3d_c00247{bottom:240.429333pt;}
.y3c_c00247{bottom:241.212000pt;}
.y3b_c00247{bottom:241.498667pt;}
.y3a_c00247{bottom:242.192000pt;}
.y39_c00247{bottom:242.644000pt;}
.y38_c00247{bottom:259.265333pt;}
.y37_c00247{bottom:259.970667pt;}
.y36_c00247{bottom:260.309333pt;}
.y35_c00247{bottom:260.733333pt;}
.y34_c00247{bottom:261.192000pt;}
.y33_c00247{bottom:262.096000pt;}
.y32_c00247{bottom:262.736000pt;}
.y31_c00247{bottom:263.044000pt;}
.y30_c00247{bottom:280.529333pt;}
.y2f_c00247{bottom:280.782667pt;}
.y2e_c00247{bottom:281.300000pt;}
.y2d_c00247{bottom:281.740000pt;}
.y2c_c00247{bottom:282.257333pt;}
.y2b_c00247{bottom:282.661333pt;}
.y2a_c00247{bottom:283.202667pt;}
.y29_c00247{bottom:300.460000pt;}
.y28_c00247{bottom:300.850667pt;}
.y27_c00247{bottom:301.290667pt;}
.y26_c00247{bottom:301.773333pt;}
.y25_c00247{bottom:301.998667pt;}
.y24_c00247{bottom:302.248000pt;}
.y23_c00247{bottom:302.422667pt;}
.y22_c00247{bottom:302.564000pt;}
.y21_c00247{bottom:302.840000pt;}
.y20_c00247{bottom:303.013333pt;}
.y1f_c00247{bottom:303.361333pt;}
.y1e_c00247{bottom:322.197333pt;}
.y1d_c00247{bottom:341.600000pt;}
.y1c_c00247{bottom:364.904000pt;}
.y1b_c00247{bottom:366.005333pt;}
.y1a_c00247{bottom:366.477333pt;}
.y19_c00247{bottom:366.888000pt;}
.y18_c00247{bottom:367.197333pt;}
.y17_c00247{bottom:367.437333pt;}
.y16_c00247{bottom:368.049333pt;}
.y15_c00247{bottom:368.402667pt;}
.y14_c00247{bottom:387.281333pt;}
.y13_c00247{bottom:407.702667pt;}
.y12_c00247{bottom:427.868000pt;}
.y11_c00247{bottom:448.388000pt;}
.y10_c00247{bottom:468.632000pt;}
.yf_c00247{bottom:488.168000pt;}
.ye_c00247{bottom:509.053333pt;}
.yd_c00247{bottom:533.306667pt;}
.yc_c00247{bottom:558.305333pt;}
.yb_c00247{bottom:578.470667pt;}
.ya_c00247{bottom:598.902667pt;}
.y9_c00247{bottom:618.896000pt;}
.y8_c00247{bottom:639.362667pt;}
.y7_c00247{bottom:659.264000pt;}
.y6_c00247{bottom:680.144000pt;}
.y5_c00247{bottom:700.254667pt;}
.y4_c00247{bottom:721.102667pt;}
.y3_c00247{bottom:741.610667pt;}
.y2_c00247{bottom:822.616000pt;}
.y1_c00247{bottom:830.586667pt;}
.h11_c00247{height:19.600000pt;}
.h10_c00247{height:23.333333pt;}
.h3_c00247{height:28.000000pt;}
.h15_c00247{height:42.002541pt;}
.h14_c00247{height:43.869321pt;}
.h12_c00247{height:46.669490pt;}
.h13_c00247{height:47.602880pt;}
.hf_c00247{height:56.933333pt;}
.he_c00247{height:57.866667pt;}
.hd_c00247{height:58.800000pt;}
.h9_c00247{height:59.733333pt;}
.hc_c00247{height:60.666667pt;}
.h7_c00247{height:61.600000pt;}
.h8_c00247{height:62.533333pt;}
.h4_c00247{height:63.466667pt;}
.ha_c00247{height:64.400000pt;}
.hb_c00247{height:65.333333pt;}
.h6_c00247{height:67.200000pt;}
.h5_c00247{height:70.933333pt;}
.h2_c00247{height:89.600000pt;}
.h16_c00247{height:182.000000pt;}
.h0_c00247{height:896.400000pt;}
.h1_c00247{height:896.666667pt;}
.w0_c00247{width:603.066667pt;}
.w1_c00247{width:603.333333pt;}
.x0_c00247{left:0.000000pt;}
.x96_c00247{left:56.400000pt;}
.x8a_c00247{left:105.999239pt;}
.x83_c00247{left:107.420389pt;}
.x7a_c00247{left:118.217333pt;}
.x84_c00247{left:123.053547pt;}
.x2a_c00247{left:133.440000pt;}
.x92_c00247{left:136.946092pt;}
.x67_c00247{left:139.086667pt;}
.x45_c00247{left:140.880000pt;}
.x52_c00247{left:141.840000pt;}
.x30_c00247{left:143.040000pt;}
.x1f_c00247{left:144.000000pt;}
.x8_c00247{left:145.200000pt;}
.x8b_c00247{left:155.437348pt;}
.x93_c00247{left:157.379205pt;}
.x56_c00247{left:158.400000pt;}
.x1b_c00247{left:162.240000pt;}
.x37_c00247{left:164.880000pt;}
.x20_c00247{left:166.320000pt;}
.x9_c00247{left:169.200000pt;}
.x16_c00247{left:173.760000pt;}
.x53_c00247{left:174.960000pt;}
.x31_c00247{left:176.640000pt;}
.x46_c00247{left:179.040000pt;}
.x5d_c00247{left:181.200000pt;}
.x4c_c00247{left:184.080000pt;}
.x24_c00247{left:187.920000pt;}
.x71_c00247{left:189.045333pt;}
.x7b_c00247{left:191.470667pt;}
.x40_c00247{left:192.720000pt;}
.x57_c00247{left:193.680000pt;}
.x38_c00247{left:194.640000pt;}
.x32_c00247{left:197.280000pt;}
.x62_c00247{left:198.960000pt;}
.x7c_c00247{left:200.556000pt;}
.x6a_c00247{left:201.840000pt;}
.xa_c00247{left:208.800000pt;}
.x17_c00247{left:209.760000pt;}
.x39_c00247{left:212.160000pt;}
.x5e_c00247{left:213.840000pt;}
.x85_c00247{left:215.145853pt;}
.x72_c00247{left:217.560000pt;}
.x8c_c00247{left:219.316644pt;}
.x4d_c00247{left:220.800000pt;}
.x10_c00247{left:222.000000pt;}
.x25_c00247{left:225.600000pt;}
.x76_c00247{left:227.676000pt;}
.x1c_c00247{left:228.960000pt;}
.x2b_c00247{left:231.840000pt;}
.x63_c00247{left:234.720000pt;}
.x3a_c00247{left:235.920000pt;}
.x94_c00247{left:239.918296pt;}
.x21_c00247{left:241.680000pt;}
.x33_c00247{left:242.880000pt;}
.xb_c00247{left:244.560000pt;}
.x18_c00247{left:246.480000pt;}
.x47_c00247{left:248.880000pt;}
.x4e_c00247{left:249.840000pt;}
.x2c_c00247{left:251.520000pt;}
.x7d_c00247{left:252.412000pt;}
.x64_c00247{left:253.440000pt;}
.x11_c00247{left:257.760000pt;}
.x3f_c00247{left:259.200000pt;}
.x8d_c00247{left:260.806856pt;}
.x7_c00247{left:264.960000pt;}
.x1_c00247{left:270.000000pt;}
.x4_c00247{left:273.120000pt;}
.x58_c00247{left:275.280000pt;}
.x6c_c00247{left:276.646667pt;}
.x5f_c00247{left:278.640000pt;}
.x26_c00247{left:281.280000pt;}
.x48_c00247{left:285.120000pt;}
.x1d_c00247{left:287.760000pt;}
.x54_c00247{left:289.680000pt;}
.xc_c00247{left:291.360000pt;}
.x73_c00247{left:292.854667pt;}
.x12_c00247{left:296.640000pt;}
.x79_c00247{left:297.600000pt;}
.x6d_c00247{left:299.158667pt;}
.x22_c00247{left:302.160000pt;}
.x60_c00247{left:305.280000pt;}
.x1e_c00247{left:307.440000pt;}
.x55_c00247{left:309.120000pt;}
.x3b_c00247{left:310.080000pt;}
.x19_c00247{left:312.240000pt;}
.x2d_c00247{left:314.640000pt;}
.x2_c00247{left:319.440000pt;}
.x4f_c00247{left:321.120000pt;}
.x95_c00247{left:322.480053pt;}
.x61_c00247{left:324.720000pt;}
.xd_c00247{left:325.680000pt;}
.x49_c00247{left:327.120000pt;}
.x7e_c00247{left:328.242667pt;}
.x13_c00247{left:329.760000pt;}
.x68_c00247{left:331.589333pt;}
.x65_c00247{left:332.880000pt;}
.x5_c00247{left:342.000000pt;}
.x4a_c00247{left:343.920000pt;}
.x6e_c00247{left:347.417333pt;}
.x2e_c00247{left:349.920000pt;}
.x34_c00247{left:351.600000pt;}
.x14_c00247{left:354.000000pt;}
.x50_c00247{left:355.920000pt;}
.x23_c00247{left:357.600000pt;}
.x6b_c00247{left:360.240000pt;}
.xe_c00247{left:362.160000pt;}
.x74_c00247{left:366.386667pt;}
.x41_c00247{left:368.640000pt;}
.x3c_c00247{left:371.040000pt;}
.x6_c00247{left:374.400000pt;}
.x35_c00247{left:376.800000pt;}
.x1a_c00247{left:378.000000pt;}
.xf_c00247{left:383.760000pt;}
.x86_c00247{left:384.879976pt;}
.x27_c00247{left:387.840000pt;}
.x51_c00247{left:389.520000pt;}
.x6f_c00247{left:391.366667pt;}
.x59_c00247{left:394.320000pt;}
.x7f_c00247{left:395.441333pt;}
.x42_c00247{left:398.400000pt;}
.x3d_c00247{left:399.600000pt;}
.x2f_c00247{left:401.280000pt;}
.x28_c00247{left:406.800000pt;}
.x4b_c00247{left:411.120000pt;}
.x8e_c00247{left:417.042473pt;}
.x5a_c00247{left:420.960000pt;}
.x3_c00247{left:423.120000pt;}
.x77_c00247{left:424.645333pt;}
.x87_c00247{left:426.162188pt;}
.x66_c00247{left:427.200000pt;}
.x70_c00247{left:430.485333pt;}
.x8f_c00247{left:432.420964pt;}
.x29_c00247{left:438.480000pt;}
.x36_c00247{left:441.120000pt;}
.x5b_c00247{left:442.080000pt;}
.x15_c00247{left:444.240000pt;}
.x3e_c00247{left:445.440000pt;}
.x43_c00247{left:449.040000pt;}
.x80_c00247{left:450.198667pt;}
.x75_c00247{left:453.462667pt;}
.x88_c00247{left:462.647125pt;}
.x78_c00247{left:465.441333pt;}
.x90_c00247{left:469.160553pt;}
.x81_c00247{left:472.488000pt;}
.x5c_c00247{left:481.440000pt;}
.x69_c00247{left:488.948000pt;}
.x44_c00247{left:493.680000pt;}
.x91_c00247{left:508.984113pt;}
.x82_c00247{left:512.360000pt;}
.x89_c00247{left:517.125191pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8_c00248{transform:matrix(0.010415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010415,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{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);}
.mac_c00248{transform:matrix(0.051430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051430,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);}
.m4d_c00248{transform:matrix(0.109665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109665,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.145470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145470,0.000000,0.000000,0.250000,0,0);}
.m76_c00248{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);}
.m7f_c00248{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);}
.mae_c00248{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);}
.m80_c00248{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);}
.mbd_c00248{transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);}
.m93_c00248{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);}
.m26_c00248{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);}
.m65_c00248{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);}
.m5b_c00248{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);}
.m5e_c00248{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);}
.mb7_c00248{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);}
.m7b_c00248{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);}
.m22_c00248{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);}
.m96_c00248{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);}
.m6e_c00248{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);}
.m77_c00248{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);}
.m69_c00248{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);}
.m2a_c00248{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);}
.m2b_c00248{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);}
.m90_c00248{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);}
.mb8_c00248{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);}
.m3f_c00248{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);}
.ma7_c00248{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);}
.m43_c00248{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);}
.m2d_c00248{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);}
.m23_c00248{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);}
.m71_c00248{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);}
.m74_c00248{transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{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);}
.m21_c00248{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);}
.m7e_c00248{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);}
.ma0_c00248{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);}
.m7d_c00248{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);}
.mb0_c00248{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);}
.m79_c00248{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);}
.mb3_c00248{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);}
.mb5_c00248{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);}
.m6d_c00248{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);}
.m9c_c00248{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);}
.m29_c00248{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);}
.mb_c00248{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);}
.m68_c00248{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);}
.mf_c00248{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);}
.m14_c00248{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);}
.m10_c00248{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);}
.m67_c00248{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);}
.mbc_c00248{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);}
.m2f_c00248{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);}
.m5f_c00248{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);}
.m9a_c00248{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);}
.m15_c00248{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);}
.m66_c00248{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);}
.m25_c00248{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);}
.m28_c00248{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);}
.m1e_c00248{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);}
.m37_c00248{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);}
.m36_c00248{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);}
.m34_c00248{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);}
.ma1_c00248{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);}
.mbe_c00248{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);}
.mab_c00248{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);}
.mb1_c00248{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);}
.mb4_c00248{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);}
.m13_c00248{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.maa_c00248{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);}
.m1c_c00248{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);}
.m64_c00248{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);}
.mc_c00248{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);}
.m48_c00248{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);}
.mc2_c00248{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);}
.m92_c00248{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);}
.m47_c00248{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);}
.m39_c00248{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);}
.m9d_c00248{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);}
.m1a_c00248{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);}
.ma3_c00248{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);}
.m19_c00248{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{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);}
.mb2_c00248{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);}
.m6b_c00248{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);}
.m12_c00248{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);}
.mbb_c00248{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m53_c00248{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);}
.mba_c00248{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);}
.m99_c00248{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);}
.ma6_c00248{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);}
.mc1_c00248{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);}
.m46_c00248{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);}
.m98_c00248{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);}
.m3a_c00248{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);}
.ma4_c00248{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);}
.m3e_c00248{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);}
.m32_c00248{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);}
.m20_c00248{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);}
.me_c00248{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);}
.m49_c00248{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);}
.m6a_c00248{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);}
.mb9_c00248{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);}
.mc0_c00248{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);}
.ma2_c00248{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);}
.m73_c00248{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);}
.md_c00248{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);}
.maf_c00248{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);}
.m11_c00248{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);}
.m18_c00248{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_c00248{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);}
.m5a_c00248{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);}
.m59_c00248{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);}
.m60_c00248{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);}
.m35_c00248{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);}
.m17_c00248{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);}
.m33_c00248{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);}
.m27_c00248{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);}
.mad_c00248{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);}
.m75_c00248{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);}
.m7c_c00248{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);}
.m40_c00248{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);}
.m30_c00248{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);}
.m54_c00248{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);}
.m1d_c00248{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);}
.m6c_c00248{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);}
.m78_c00248{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);}
.m1f_c00248{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);}
.m91_c00248{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);}
.m70_c00248{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);}
.m84_c00248{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);}
.m7a_c00248{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);}
.m5c_c00248{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);}
.m2e_c00248{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);}
.ma9_c00248{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);}
.m6f_c00248{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);}
.m72_c00248{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);}
.mbf_c00248{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);}
.m97_c00248{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);}
.m38_c00248{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);}
.m94_c00248{transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{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);}
.m9b_c00248{transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);}
.m8e_c00248{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);}
.m16_c00248{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);}
.ma8_c00248{transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{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);}
.m8f_c00248{transform:matrix(0.234965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234965,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{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);}
.m52_c00248{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);}
.m63_c00248{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);}
.m3b_c00248{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);}
.m2c_c00248{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);}
.ma5_c00248{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);}
.m9e_c00248{transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);}
.m44_c00248{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m58_c00248{transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);}
.m8b_c00248{transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00248{transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);}
.m50_c00248{transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);}
.m89_c00248{transform:matrix(0.282860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282860,0.000000,0.000000,0.250000,0,0);}
.m3d_c00248{transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{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);}
.m8a_c00248{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);}
.m0_c00248{transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319760,0.000000,0.000000,0.250000,0,0);}
.m61_c00248{transform:matrix(0.322650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322650,0.000000,0.000000,0.250000,0,0);}
.m9f_c00248{transform:matrix(0.323050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330150,0.000000,0.000000,0.250000,0,0);}
.m4c_c00248{transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336825,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00248{transform:matrix(0.376665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376665,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.384400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384400,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386790,0.000000,0.000000,0.250000,0,0);}
.m8d_c00248{transform:matrix(0.392050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392050,0.000000,0.000000,0.250000,0,0);}
.m95_c00248{transform:matrix(0.399620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399620,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.402085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402085,0.000000,0.000000,0.250000,0,0);}
.m88_c00248{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);}
.m4a_c00248{transform:matrix(0.440545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440545,0.000000,0.000000,0.250000,0,0);}
.m4e_c00248{transform:matrix(0.456645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456645,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);}
.m85_c00248{transform:matrix(0.478115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478115,0.000000,0.000000,0.250000,0,0);}
.m87_c00248{transform:matrix(0.480840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480840,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.526620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526620,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.530085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530085,0.000000,0.000000,0.250000,0,0);}
.m56_c00248{transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);}
.m83_c00248{transform:matrix(0.708790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708790,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.727350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727350,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.813155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813155,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.894475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894475,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(1.489965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.489965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.489965,0.000000,0.000000,0.250000,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;}
._0_c00248{width:12.208914px;}
.fc0_c00248{color:transparent;}
.fs0_c00248{font-size:48.300000px;}
.fsf_c00248{font-size:50.400000px;}
.fs10_c00248{font-size:52.500000px;}
.fs12_c00248{font-size:53.550000px;}
.fse_c00248{font-size:55.650000px;}
.fs11_c00248{font-size:57.750000px;}
.fsb_c00248{font-size:63.000000px;}
.fsa_c00248{font-size:65.100000px;}
.fsc_c00248{font-size:67.200000px;}
.fs9_c00248{font-size:68.250000px;}
.fs5_c00248{font-size:69.300000px;}
.fs7_c00248{font-size:70.350000px;}
.fs8_c00248{font-size:71.400000px;}
.fs6_c00248{font-size:72.450000px;}
.fs4_c00248{font-size:73.500000px;}
.fs2_c00248{font-size:85.050000px;}
.fsd_c00248{font-size:87.150000px;}
.fs3_c00248{font-size:93.450000px;}
.fs1_c00248{font-size:195.300000px;}
.y0_c00248{bottom:0.000000px;}
.y1d_c00248{bottom:168.090000px;}
.y20_c00248{bottom:169.107000px;}
.y1c_c00248{bottom:185.647500px;}
.y1f_c00248{bottom:187.002000px;}
.y1b_c00248{bottom:203.310000px;}
.y1e_c00248{bottom:203.580000px;}
.y1a_c00248{bottom:250.608000px;}
.y19_c00248{bottom:274.041000px;}
.y18_c00248{bottom:296.634000px;}
.y17_c00248{bottom:319.254000px;}
.y16_c00248{bottom:357.210000px;}
.y15_c00248{bottom:382.305000px;}
.y14_c00248{bottom:421.563000px;}
.y13_c00248{bottom:485.916000px;}
.y12_c00248{bottom:508.089000px;}
.y11_c00248{bottom:530.721000px;}
.y10_c00248{bottom:553.147500px;}
.yf_c00248{bottom:576.018000px;}
.ye_c00248{bottom:598.399500px;}
.yd_c00248{bottom:642.766500px;}
.yc_c00248{bottom:665.683500px;}
.yb_c00248{bottom:688.603500px;}
.ya_c00248{bottom:711.544500px;}
.y9_c00248{bottom:734.229000px;}
.y8_c00248{bottom:756.762000px;}
.y7_c00248{bottom:779.413500px;}
.y6_c00248{bottom:802.201500px;}
.y5_c00248{bottom:824.557500px;}
.y4_c00248{bottom:872.092500px;}
.y3_c00248{bottom:895.713000px;}
.y2_c00248{bottom:914.200500px;}
.y1_c00248{bottom:947.401500px;}
.h2_c00248{height:48.300000px;}
.h11_c00248{height:50.400000px;}
.h12_c00248{height:52.500000px;}
.h14_c00248{height:53.550000px;}
.h10_c00248{height:55.650000px;}
.h13_c00248{height:57.750000px;}
.hd_c00248{height:63.000000px;}
.hc_c00248{height:65.100000px;}
.he_c00248{height:67.200000px;}
.hb_c00248{height:68.250000px;}
.h7_c00248{height:69.300000px;}
.h9_c00248{height:70.350000px;}
.ha_c00248{height:71.400000px;}
.h8_c00248{height:72.450000px;}
.h6_c00248{height:73.500000px;}
.h4_c00248{height:85.050000px;}
.hf_c00248{height:87.150000px;}
.h5_c00248{height:93.450000px;}
.h3_c00248{height:195.300000px;}
.h1_c00248{height:1005.000000px;}
.h0_c00248{height:1005.150000px;}
.w1_c00248{width:713.250000px;}
.w0_c00248{width:713.550000px;}
.x0_c00248{left:0.000000px;}
.x6_c00248{left:21.600000px;}
.x8_c00248{left:25.380000px;}
.x7_c00248{left:30.780000px;}
.x78_c00248{left:68.040000px;}
.x79_c00248{left:80.460000px;}
.x81_c00248{left:82.620000px;}
.x3d_c00248{left:84.240000px;}
.x3e_c00248{left:98.820000px;}
.x9_c00248{left:110.160000px;}
.x16_c00248{left:111.510000px;}
.x68_c00248{left:113.400000px;}
.x5b_c00248{left:115.020000px;}
.xd_c00248{left:116.100000px;}
.x7a_c00248{left:119.070000px;}
.x7e_c00248{left:122.310000px;}
.x82_c00248{left:127.980000px;}
.x83_c00248{left:136.080000px;}
.x7f_c00248{left:138.510000px;}
.x2d_c00248{left:139.590000px;}
.xe_c00248{left:143.370000px;}
.x5c_c00248{left:148.500000px;}
.x49_c00248{left:154.440000px;}
.x4f_c00248{left:158.490000px;}
.x29_c00248{left:160.650000px;}
.x17_c00248{left:162.810000px;}
.x35_c00248{left:163.890000px;}
.xa_c00248{left:169.290000px;}
.x1e_c00248{left:170.370000px;}
.x40_c00248{left:172.800000px;}
.x2e_c00248{left:179.010000px;}
.x2a_c00248{left:183.600000px;}
.xf_c00248{left:187.380000px;}
.x41_c00248{left:199.800000px;}
.x18_c00248{left:200.880000px;}
.x4a_c00248{left:206.550000px;}
.x10_c00248{left:209.790000px;}
.x24_c00248{left:211.410000px;}
.x1f_c00248{left:214.650000px;}
.x58_c00248{left:216.540000px;}
.x84_c00248{left:218.700000px;}
.x7b_c00248{left:220.050000px;}
.x42_c00248{left:221.400000px;}
.x62_c00248{left:222.480000px;}
.x50_c00248{left:223.830000px;}
.x5f_c00248{left:227.880000px;}
.x7c_c00248{left:231.120000px;}
.x25_c00248{left:232.200000px;}
.x19_c00248{left:234.090000px;}
.x2f_c00248{left:239.760000px;}
.x69_c00248{left:240.840000px;}
.x2b_c00248{left:241.920000px;}
.x20_c00248{left:244.080000px;}
.x7d_c00248{left:245.430000px;}
.x3a_c00248{left:247.320000px;}
.x66_c00248{left:252.720000px;}
.x11_c00248{left:253.800000px;}
.x85_c00248{left:256.230000px;}
.x55_c00248{left:259.200000px;}
.x5d_c00248{left:262.980000px;}
.x36_c00248{left:266.490000px;}
.x30_c00248{left:267.570000px;}
.x63_c00248{left:268.920000px;}
.x86_c00248{left:271.890000px;}
.x1_c00248{left:276.480000px;}
.x43_c00248{left:280.530000px;}
.x26_c00248{left:284.580000px;}
.x80_c00248{left:285.930000px;}
.x51_c00248{left:288.630000px;}
.x56_c00248{left:291.330000px;}
.x31_c00248{left:298.620000px;}
.x4b_c00248{left:301.320000px;}
.x21_c00248{left:302.400000px;}
.x60_c00248{left:304.290000px;}
.x12_c00248{left:305.640000px;}
.x37_c00248{left:307.530000px;}
.x52_c00248{left:309.960000px;}
.x1a_c00248{left:317.790000px;}
.x77_c00248{left:319.680000px;}
.x72_c00248{left:321.030000px;}
.x6a_c00248{left:322.110000px;}
.x2_c00248{left:324.000000px;}
.x4c_c00248{left:326.160000px;}
.x6e_c00248{left:328.050000px;}
.x64_c00248{left:331.290000px;}
.x32_c00248{left:332.640000px;}
.x2c_c00248{left:338.580000px;}
.x5e_c00248{left:340.200000px;}
.x38_c00248{left:341.820000px;}
.x13_c00248{left:344.520000px;}
.x61_c00248{left:346.950000px;}
.x44_c00248{left:351.270000px;}
.x1b_c00248{left:352.620000px;}
.x53_c00248{left:354.240000px;}
.x3f_c00248{left:359.640000px;}
.x27_c00248{left:363.420000px;}
.x45_c00248{left:366.930000px;}
.x6b_c00248{left:369.900000px;}
.x33_c00248{left:371.790000px;}
.x67_c00248{left:376.110000px;}
.x3b_c00248{left:378.000000px;}
.x57_c00248{left:380.700000px;}
.x3_c00248{left:386.100000px;}
.x22_c00248{left:387.720000px;}
.x65_c00248{left:390.420000px;}
.x73_c00248{left:391.770000px;}
.x1c_c00248{left:393.390000px;}
.x39_c00248{left:398.250000px;}
.x4d_c00248{left:400.410000px;}
.x46_c00248{left:403.920000px;}
.x54_c00248{left:407.430000px;}
.x34_c00248{left:410.940000px;}
.x74_c00248{left:413.910000px;}
.x23_c00248{left:415.260000px;}
.x6c_c00248{left:417.690000px;}
.x59_c00248{left:421.470000px;}
.x28_c00248{left:427.410000px;}
.x4e_c00248{left:430.380000px;}
.x3c_c00248{left:436.860000px;}
.x4_c00248{left:440.370000px;}
.x47_c00248{left:441.450000px;}
.x14_c00248{left:442.800000px;}
.x5a_c00248{left:447.660000px;}
.x6f_c00248{left:456.840000px;}
.x75_c00248{left:459.270000px;}
.xb_c00248{left:461.970000px;}
.x1d_c00248{left:464.130000px;}
.x15_c00248{left:472.500000px;}
.x6d_c00248{left:477.630000px;}
.x48_c00248{left:487.350000px;}
.x70_c00248{left:499.230000px;}
.x76_c00248{left:502.200000px;}
.x5_c00248{left:503.280000px;}
.xc_c00248{left:525.690000px;}
.x71_c00248{left:539.190000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
._0_c00248{width:10.852368pt;}
.fs0_c00248{font-size:42.933333pt;}
.fsf_c00248{font-size:44.800000pt;}
.fs10_c00248{font-size:46.666667pt;}
.fs12_c00248{font-size:47.600000pt;}
.fse_c00248{font-size:49.466667pt;}
.fs11_c00248{font-size:51.333333pt;}
.fsb_c00248{font-size:56.000000pt;}
.fsa_c00248{font-size:57.866667pt;}
.fsc_c00248{font-size:59.733333pt;}
.fs9_c00248{font-size:60.666667pt;}
.fs5_c00248{font-size:61.600000pt;}
.fs7_c00248{font-size:62.533333pt;}
.fs8_c00248{font-size:63.466667pt;}
.fs6_c00248{font-size:64.400000pt;}
.fs4_c00248{font-size:65.333333pt;}
.fs2_c00248{font-size:75.600000pt;}
.fsd_c00248{font-size:77.466667pt;}
.fs3_c00248{font-size:83.066667pt;}
.fs1_c00248{font-size:173.600000pt;}
.y0_c00248{bottom:0.000000pt;}
.y1d_c00248{bottom:149.413333pt;}
.y20_c00248{bottom:150.317333pt;}
.y1c_c00248{bottom:165.020000pt;}
.y1f_c00248{bottom:166.224000pt;}
.y1b_c00248{bottom:180.720000pt;}
.y1e_c00248{bottom:180.960000pt;}
.y1a_c00248{bottom:222.762667pt;}
.y19_c00248{bottom:243.592000pt;}
.y18_c00248{bottom:263.674667pt;}
.y17_c00248{bottom:283.781333pt;}
.y16_c00248{bottom:317.520000pt;}
.y15_c00248{bottom:339.826667pt;}
.y14_c00248{bottom:374.722667pt;}
.y13_c00248{bottom:431.925333pt;}
.y12_c00248{bottom:451.634667pt;}
.y11_c00248{bottom:471.752000pt;}
.y10_c00248{bottom:491.686667pt;}
.yf_c00248{bottom:512.016000pt;}
.ye_c00248{bottom:531.910667pt;}
.yd_c00248{bottom:571.348000pt;}
.yc_c00248{bottom:591.718667pt;}
.yb_c00248{bottom:612.092000pt;}
.ya_c00248{bottom:632.484000pt;}
.y9_c00248{bottom:652.648000pt;}
.y8_c00248{bottom:672.677333pt;}
.y7_c00248{bottom:692.812000pt;}
.y6_c00248{bottom:713.068000pt;}
.y5_c00248{bottom:732.940000pt;}
.y4_c00248{bottom:775.193333pt;}
.y3_c00248{bottom:796.189333pt;}
.y2_c00248{bottom:812.622667pt;}
.y1_c00248{bottom:842.134667pt;}
.h2_c00248{height:42.933333pt;}
.h11_c00248{height:44.800000pt;}
.h12_c00248{height:46.666667pt;}
.h14_c00248{height:47.600000pt;}
.h10_c00248{height:49.466667pt;}
.h13_c00248{height:51.333333pt;}
.hd_c00248{height:56.000000pt;}
.hc_c00248{height:57.866667pt;}
.he_c00248{height:59.733333pt;}
.hb_c00248{height:60.666667pt;}
.h7_c00248{height:61.600000pt;}
.h9_c00248{height:62.533333pt;}
.ha_c00248{height:63.466667pt;}
.h8_c00248{height:64.400000pt;}
.h6_c00248{height:65.333333pt;}
.h4_c00248{height:75.600000pt;}
.hf_c00248{height:77.466667pt;}
.h5_c00248{height:83.066667pt;}
.h3_c00248{height:173.600000pt;}
.h1_c00248{height:893.333333pt;}
.h0_c00248{height:893.466667pt;}
.w1_c00248{width:634.000000pt;}
.w0_c00248{width:634.266667pt;}
.x0_c00248{left:0.000000pt;}
.x6_c00248{left:19.200000pt;}
.x8_c00248{left:22.560000pt;}
.x7_c00248{left:27.360000pt;}
.x78_c00248{left:60.480000pt;}
.x79_c00248{left:71.520000pt;}
.x81_c00248{left:73.440000pt;}
.x3d_c00248{left:74.880000pt;}
.x3e_c00248{left:87.840000pt;}
.x9_c00248{left:97.920000pt;}
.x16_c00248{left:99.120000pt;}
.x68_c00248{left:100.800000pt;}
.x5b_c00248{left:102.240000pt;}
.xd_c00248{left:103.200000pt;}
.x7a_c00248{left:105.840000pt;}
.x7e_c00248{left:108.720000pt;}
.x82_c00248{left:113.760000pt;}
.x83_c00248{left:120.960000pt;}
.x7f_c00248{left:123.120000pt;}
.x2d_c00248{left:124.080000pt;}
.xe_c00248{left:127.440000pt;}
.x5c_c00248{left:132.000000pt;}
.x49_c00248{left:137.280000pt;}
.x4f_c00248{left:140.880000pt;}
.x29_c00248{left:142.800000pt;}
.x17_c00248{left:144.720000pt;}
.x35_c00248{left:145.680000pt;}
.xa_c00248{left:150.480000pt;}
.x1e_c00248{left:151.440000pt;}
.x40_c00248{left:153.600000pt;}
.x2e_c00248{left:159.120000pt;}
.x2a_c00248{left:163.200000pt;}
.xf_c00248{left:166.560000pt;}
.x41_c00248{left:177.600000pt;}
.x18_c00248{left:178.560000pt;}
.x4a_c00248{left:183.600000pt;}
.x10_c00248{left:186.480000pt;}
.x24_c00248{left:187.920000pt;}
.x1f_c00248{left:190.800000pt;}
.x58_c00248{left:192.480000pt;}
.x84_c00248{left:194.400000pt;}
.x7b_c00248{left:195.600000pt;}
.x42_c00248{left:196.800000pt;}
.x62_c00248{left:197.760000pt;}
.x50_c00248{left:198.960000pt;}
.x5f_c00248{left:202.560000pt;}
.x7c_c00248{left:205.440000pt;}
.x25_c00248{left:206.400000pt;}
.x19_c00248{left:208.080000pt;}
.x2f_c00248{left:213.120000pt;}
.x69_c00248{left:214.080000pt;}
.x2b_c00248{left:215.040000pt;}
.x20_c00248{left:216.960000pt;}
.x7d_c00248{left:218.160000pt;}
.x3a_c00248{left:219.840000pt;}
.x66_c00248{left:224.640000pt;}
.x11_c00248{left:225.600000pt;}
.x85_c00248{left:227.760000pt;}
.x55_c00248{left:230.400000pt;}
.x5d_c00248{left:233.760000pt;}
.x36_c00248{left:236.880000pt;}
.x30_c00248{left:237.840000pt;}
.x63_c00248{left:239.040000pt;}
.x86_c00248{left:241.680000pt;}
.x1_c00248{left:245.760000pt;}
.x43_c00248{left:249.360000pt;}
.x26_c00248{left:252.960000pt;}
.x80_c00248{left:254.160000pt;}
.x51_c00248{left:256.560000pt;}
.x56_c00248{left:258.960000pt;}
.x31_c00248{left:265.440000pt;}
.x4b_c00248{left:267.840000pt;}
.x21_c00248{left:268.800000pt;}
.x60_c00248{left:270.480000pt;}
.x12_c00248{left:271.680000pt;}
.x37_c00248{left:273.360000pt;}
.x52_c00248{left:275.520000pt;}
.x1a_c00248{left:282.480000pt;}
.x77_c00248{left:284.160000pt;}
.x72_c00248{left:285.360000pt;}
.x6a_c00248{left:286.320000pt;}
.x2_c00248{left:288.000000pt;}
.x4c_c00248{left:289.920000pt;}
.x6e_c00248{left:291.600000pt;}
.x64_c00248{left:294.480000pt;}
.x32_c00248{left:295.680000pt;}
.x2c_c00248{left:300.960000pt;}
.x5e_c00248{left:302.400000pt;}
.x38_c00248{left:303.840000pt;}
.x13_c00248{left:306.240000pt;}
.x61_c00248{left:308.400000pt;}
.x44_c00248{left:312.240000pt;}
.x1b_c00248{left:313.440000pt;}
.x53_c00248{left:314.880000pt;}
.x3f_c00248{left:319.680000pt;}
.x27_c00248{left:323.040000pt;}
.x45_c00248{left:326.160000pt;}
.x6b_c00248{left:328.800000pt;}
.x33_c00248{left:330.480000pt;}
.x67_c00248{left:334.320000pt;}
.x3b_c00248{left:336.000000pt;}
.x57_c00248{left:338.400000pt;}
.x3_c00248{left:343.200000pt;}
.x22_c00248{left:344.640000pt;}
.x65_c00248{left:347.040000pt;}
.x73_c00248{left:348.240000pt;}
.x1c_c00248{left:349.680000pt;}
.x39_c00248{left:354.000000pt;}
.x4d_c00248{left:355.920000pt;}
.x46_c00248{left:359.040000pt;}
.x54_c00248{left:362.160000pt;}
.x34_c00248{left:365.280000pt;}
.x74_c00248{left:367.920000pt;}
.x23_c00248{left:369.120000pt;}
.x6c_c00248{left:371.280000pt;}
.x59_c00248{left:374.640000pt;}
.x28_c00248{left:379.920000pt;}
.x4e_c00248{left:382.560000pt;}
.x3c_c00248{left:388.320000pt;}
.x4_c00248{left:391.440000pt;}
.x47_c00248{left:392.400000pt;}
.x14_c00248{left:393.600000pt;}
.x5a_c00248{left:397.920000pt;}
.x6f_c00248{left:406.080000pt;}
.x75_c00248{left:408.240000pt;}
.xb_c00248{left:410.640000pt;}
.x1d_c00248{left:412.560000pt;}
.x15_c00248{left:420.000000pt;}
.x6d_c00248{left:424.560000pt;}
.x48_c00248{left:433.200000pt;}
.x70_c00248{left:443.760000pt;}
.x76_c00248{left:446.400000pt;}
.x5_c00248{left:447.360000pt;}
.xc_c00248{left:467.280000pt;}
.x71_c00248{left:479.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m6a_c00249{transform:matrix(0.005165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005165,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.041263,-0.000371,0.002250,0.249990,0,0);-ms-transform:matrix(0.041263,-0.000371,0.002250,0.249990,0,0);-webkit-transform:matrix(0.041263,-0.000371,0.002250,0.249990,0,0);}
.m19_c00249{transform:matrix(0.057178,-0.000515,0.002250,0.249990,0,0);-ms-transform:matrix(0.057178,-0.000515,0.002250,0.249990,0,0);-webkit-transform:matrix(0.057178,-0.000515,0.002250,0.249990,0,0);}
.m68_c00249{transform:matrix(0.078710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078710,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.103961,-0.000936,0.002250,0.249990,0,0);-ms-transform:matrix(0.103961,-0.000936,0.002250,0.249990,0,0);-webkit-transform:matrix(0.103961,-0.000936,0.002250,0.249990,0,0);}
.mbf_c00249{transform:matrix(0.117410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117410,0.000000,0.000000,0.250000,0,0);}
.mc2_c00249{transform:matrix(0.122325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122325,0.000000,0.000000,0.250000,0,0);}
.mc3_c00249{transform:matrix(0.124785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124785,0.000000,0.000000,0.250000,0,0);}
.mbe_c00249{transform:matrix(0.126655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126655,0.000000,0.000000,0.250000,0,0);}
.m62_c00249{transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);}
.mc4_c00249{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);}
.m7e_c00249{transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);}
.m70_c00249{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m61_c00249{transform:matrix(0.143885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143885,0.000000,0.000000,0.250000,0,0);}
.m80_c00249{transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);}
.m44_c00249{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);}
.m46_c00249{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);}
.m25_c00249{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);}
.m4c_c00249{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);}
.mac_c00249{transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);}
.mc1_c00249{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);}
.maa_c00249{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);}
.mb6_c00249{transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);}
.mc0_c00249{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);}
.m75_c00249{transform:matrix(0.159705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159705,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.160858,-0.001448,0.002250,0.249990,0,0);-ms-transform:matrix(0.160858,-0.001448,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160858,-0.001448,0.002250,0.249990,0,0);}
.mb_c00249{transform:matrix(0.161088,-0.001450,0.002250,0.249990,0,0);-ms-transform:matrix(0.161088,-0.001450,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161088,-0.001450,0.002250,0.249990,0,0);}
.m26_c00249{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m41_c00249{transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{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);}
.m84_c00249{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);}
.m27_c00249{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);}
.m74_c00249{transform:matrix(0.164055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164055,0.000000,0.000000,0.250000,0,0);}
.mb7_c00249{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);}
.m77_c00249{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00249{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);}
.mb3_c00249{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);}
.m53_c00249{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);}
.m6e_c00249{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);}
.m29_c00249{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);}
.m73_c00249{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);}
.m5a_c00249{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);}
.m16_c00249{transform:matrix(0.170468,-0.001534,0.002250,0.249990,0,0);-ms-transform:matrix(0.170468,-0.001534,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170468,-0.001534,0.002250,0.249990,0,0);}
.m3c_c00249{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);}
.m6d_c00249{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);}
.m5d_c00249{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);}
.m33_c00249{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);}
.mc6_c00249{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);}
.mb1_c00249{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);}
.m32_c00249{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);}
.m5e_c00249{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);}
.m2f_c00249{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);}
.m50_c00249{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);}
.m76_c00249{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);}
.m2b_c00249{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);}
.m5c_c00249{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);}
.m89_c00249{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);}
.m56_c00249{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);}
.m20_c00249{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);}
.ma8_c00249{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);}
.md5_c00249{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);}
.m7b_c00249{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);}
.m85_c00249{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);}
.m7f_c00249{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);}
.m54_c00249{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m55_c00249{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);}
.m78_c00249{transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);}
.mb0_c00249{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);}
.m5b_c00249{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);}
.m3e_c00249{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);}
.m3b_c00249{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);}
.m42_c00249{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);}
.m4e_c00249{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);}
.mda_c00249{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);}
.m86_c00249{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);}
.m4d_c00249{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);}
.mc8_c00249{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);}
.m34_c00249{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);}
.m6c_c00249{transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);}
.m57_c00249{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);}
.m8e_c00249{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);}
.m7a_c00249{transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{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);}
.m71_c00249{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);}
.mc9_c00249{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);}
.m67_c00249{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);}
.m15_c00249{transform:matrix(0.188227,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188227,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188227,-0.001694,0.002250,0.249990,0,0);}
.md2_c00249{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);}
.m94_c00249{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);}
.mb8_c00249{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);}
.ma7_c00249{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);}
.m30_c00249{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);}
.m4f_c00249{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);}
.m2e_c00249{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);}
.m1f_c00249{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);}
.m38_c00249{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);}
.m7d_c00249{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);}
.md7_c00249{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);}
.m22_c00249{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);}
.m3_c00249{transform:matrix(0.192227,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192227,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192227,-0.001730,0.002250,0.249990,0,0);}
.m17_c00249{transform:matrix(0.192842,-0.001736,0.002250,0.249990,0,0);-ms-transform:matrix(0.192842,-0.001736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192842,-0.001736,0.002250,0.249990,0,0);}
.m97_c00249{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);}
.mb2_c00249{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);}
.m2a_c00249{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);}
.ma6_c00249{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);}
.mce_c00249{transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194440,0.000000,0.000000,0.250000,0,0);}
.mcd_c00249{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);}
.m4b_c00249{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);}
.md4_c00249{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);}
.maf_c00249{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);}
.m6f_c00249{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);}
.m49_c00249{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);}
.ma9_c00249{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);}
.m12_c00249{transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);}
.m83_c00249{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);}
.m1a_c00249{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);}
.md9_c00249{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);}
.m8b_c00249{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);}
.m72_c00249{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);}
.m28_c00249{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);}
.mcf_c00249{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);}
.m60_c00249{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);}
.mc7_c00249{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);}
.m88_c00249{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);}
.mdb_c00249{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);}
.m79_c00249{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);}
.m51_c00249{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);}
.ma2_c00249{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);}
.ma_c00249{transform:matrix(0.201262,-0.001811,0.002250,0.249990,0,0);-ms-transform:matrix(0.201262,-0.001811,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201262,-0.001811,0.002250,0.249990,0,0);}
.m9_c00249{transform:matrix(0.201742,-0.001816,0.002250,0.249990,0,0);-ms-transform:matrix(0.201742,-0.001816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201742,-0.001816,0.002250,0.249990,0,0);}
.m82_c00249{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);}
.mdd_c00249{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);}
.m93_c00249{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);}
.m37_c00249{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);}
.m7_c00249{transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);}
.m92_c00249{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);}
.m9f_c00249{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_c00249{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);}
.mbd_c00249{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);}
.mcc_c00249{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);}
.ma1_c00249{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);}
.m87_c00249{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);}
.m1e_c00249{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);}
.m11_c00249{transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);}
.m63_c00249{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);}
.m1c_c00249{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);}
.mb9_c00249{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);}
.m8f_c00249{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{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);}
.m31_c00249{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);}
.md3_c00249{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);}
.mab_c00249{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);}
.m40_c00249{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);}
.md0_c00249{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);}
.me_c00249{transform:matrix(0.217091,-0.001954,0.002250,0.249990,0,0);-ms-transform:matrix(0.217091,-0.001954,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217091,-0.001954,0.002250,0.249990,0,0);}
.m14_c00249{transform:matrix(0.219026,-0.001971,0.002250,0.249990,0,0);-ms-transform:matrix(0.219026,-0.001971,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219026,-0.001971,0.002250,0.249990,0,0);}
.m59_c00249{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);}
.mbc_c00249{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);}
.ma0_c00249{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);}
.m1b_c00249{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);}
.m3a_c00249{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);}
.mb4_c00249{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);}
.m81_c00249{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);}
.m6_c00249{transform:matrix(0.222111,-0.001999,0.002250,0.249990,0,0);-ms-transform:matrix(0.222111,-0.001999,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222111,-0.001999,0.002250,0.249990,0,0);}
.mde_c00249{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);}
.md_c00249{transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);}
.m91_c00249{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);}
.mcb_c00249{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);}
.md8_c00249{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);}
.m8a_c00249{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);}
.m9c_c00249{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);}
.mc_c00249{transform:matrix(0.226776,-0.002041,0.002250,0.249990,0,0);-ms-transform:matrix(0.226776,-0.002041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226776,-0.002041,0.002250,0.249990,0,0);}
.m7c_c00249{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);}
.m65_c00249{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);}
.m99_c00249{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);}
.m10_c00249{transform:matrix(0.229031,-0.002061,0.002250,0.249990,0,0);-ms-transform:matrix(0.229031,-0.002061,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229031,-0.002061,0.002250,0.249990,0,0);}
.m2d_c00249{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);}
.m58_c00249{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.md1_c00249{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);}
.m18_c00249{transform:matrix(0.235860,-0.002123,0.002250,0.249990,0,0);-ms-transform:matrix(0.235860,-0.002123,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235860,-0.002123,0.002250,0.249990,0,0);}
.mca_c00249{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);}
.m39_c00249{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);}
.mc5_c00249{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);}
.m90_c00249{transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{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);}
.m9a_c00249{transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);}
.m9d_c00249{transform:matrix(0.242835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242835,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);}
.m9b_c00249{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{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);}
.md6_c00249{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{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);}
.m23_c00249{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m66_c00249{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);}
.m98_c00249{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);}
.mf_c00249{transform:matrix(0.255055,-0.002295,0.002250,0.249990,0,0);-ms-transform:matrix(0.255055,-0.002295,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255055,-0.002295,0.002250,0.249990,0,0);}
.mdf_c00249{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.mae_c00249{transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);}
.ma3_c00249{transform:matrix(0.260060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260060,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);}
.m95_c00249{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.mbb_c00249{transform:matrix(0.270760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270760,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{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);}
.m96_c00249{transform:matrix(0.289145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289145,0.000000,0.000000,0.250000,0,0);}
.ma5_c00249{transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);}
.m69_c00249{transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297730,0.000000,0.000000,0.250000,0,0);}
.mdc_c00249{transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);}
.mad_c00249{transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);}
.m8c_c00249{transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317960,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.321805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321805,0.000000,0.000000,0.250000,0,0);}
.mba_c00249{transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.331902,-0.002987,0.002250,0.249990,0,0);-ms-transform:matrix(0.331902,-0.002987,0.002250,0.249990,0,0);-webkit-transform:matrix(0.331902,-0.002987,0.002250,0.249990,0,0);}
.ma4_c00249{transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00249{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.m8d_c00249{transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.387800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387800,0.000000,0.000000,0.250000,0,0);}
.me0_c00249{transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);}
.m64_c00249{transform:matrix(0.462080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462080,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.512844,-0.004616,0.002250,0.249990,0,0);-ms-transform:matrix(0.512844,-0.004616,0.002250,0.249990,0,0);-webkit-transform:matrix(0.512844,-0.004616,0.002250,0.249990,0,0);}
.m43_c00249{transform:matrix(0.523680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523680,0.000000,0.000000,0.250000,0,0);}
.m6b_c00249{transform:matrix(0.646805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646805,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;}
.fs0_c00249{font-size:33.600000px;}
.fs9_c00249{font-size:61.950000px;}
.fs2_c00249{font-size:61.952509px;}
.fs12_c00249{font-size:63.000000px;}
.fs3_c00249{font-size:63.002551px;}
.fs11_c00249{font-size:65.100000px;}
.fs6_c00249{font-size:66.150000px;}
.fsb_c00249{font-size:67.200000px;}
.fs4_c00249{font-size:69.300000px;}
.fs14_c00249{font-size:70.350000px;}
.fsa_c00249{font-size:71.400000px;}
.fs5_c00249{font-size:72.450000px;}
.fsf_c00249{font-size:73.500000px;}
.fs10_c00249{font-size:75.600000px;}
.fse_c00249{font-size:79.800000px;}
.fs7_c00249{font-size:81.900000px;}
.fsc_c00249{font-size:82.950000px;}
.fs1_c00249{font-size:98.703997px;}
.fs8_c00249{font-size:106.050000px;}
.fs13_c00249{font-size:109.200000px;}
.fsd_c00249{font-size:110.250000px;}
.fs15_c00249{font-size:137.550000px;}
.y0_c00249{bottom:0.000000px;}
.y36_c00249{bottom:101.949000px;}
.y35_c00249{bottom:164.701500px;}
.y34_c00249{bottom:188.905500px;}
.y33_c00249{bottom:212.023500px;}
.y32_c00249{bottom:230.497500px;}
.y31_c00249{bottom:257.119500px;}
.y30_c00249{bottom:281.391000px;}
.y2f_c00249{bottom:303.732000px;}
.y2e_c00249{bottom:327.867000px;}
.y2d_c00249{bottom:350.388000px;}
.y2c_c00249{bottom:373.072500px;}
.y2b_c00249{bottom:396.313500px;}
.y2a_c00249{bottom:418.797000px;}
.y29_c00249{bottom:441.636000px;}
.y28_c00249{bottom:464.949000px;}
.y27_c00249{bottom:484.240500px;}
.y26_c00249{bottom:510.391500px;}
.y25_c00249{bottom:533.374500px;}
.y24_c00249{bottom:555.930000px;}
.y23_c00249{bottom:580.230000px;}
.y22_c00249{bottom:602.910000px;}
.y21_c00249{bottom:625.942500px;}
.y20_c00249{bottom:646.672500px;}
.y1f_c00249{bottom:670.711500px;}
.y1e_c00249{bottom:691.005000px;}
.y1d_c00249{bottom:717.291000px;}
.y1c_c00249{bottom:740.397000px;}
.y1b_c00249{bottom:763.074000px;}
.y1a_c00249{bottom:786.585000px;}
.y16_c00249{bottom:809.409993px;}
.y15_c00249{bottom:809.410200px;}
.y18_c00249{bottom:809.410266px;}
.y17_c00249{bottom:809.410519px;}
.y14_c00249{bottom:809.410603px;}
.y12_c00249{bottom:809.410720px;}
.y19_c00249{bottom:809.410899px;}
.y13_c00249{bottom:809.411217px;}
.y11_c00249{bottom:809.411287px;}
.y10_c00249{bottom:809.411751px;}
.y7_c00249{bottom:831.061500px;}
.y8_c00249{bottom:831.553939px;}
.y9_c00249{bottom:831.661683px;}
.ya_c00249{bottom:832.184106px;}
.yb_c00249{bottom:832.507026px;}
.yc_c00249{bottom:832.701480px;}
.yd_c00249{bottom:833.289783px;}
.ye_c00249{bottom:833.447395px;}
.yf_c00249{bottom:833.763309px;}
.y2_c00249{bottom:869.941500px;}
.y3_c00249{bottom:870.348754px;}
.y4_c00249{bottom:871.564227px;}
.y5_c00249{bottom:872.451339px;}
.y6_c00249{bottom:873.056233px;}
.y1_c00249{bottom:941.913000px;}
.h2_c00249{height:33.600000px;}
.hb_c00249{height:61.950000px;}
.h4_c00249{height:61.952509px;}
.h14_c00249{height:63.000000px;}
.h5_c00249{height:63.002551px;}
.h13_c00249{height:65.100000px;}
.h8_c00249{height:66.150000px;}
.hd_c00249{height:67.200000px;}
.h6_c00249{height:69.300000px;}
.h16_c00249{height:70.350000px;}
.hc_c00249{height:71.400000px;}
.h7_c00249{height:72.450000px;}
.h11_c00249{height:73.500000px;}
.h12_c00249{height:75.600000px;}
.h10_c00249{height:79.800000px;}
.h9_c00249{height:81.900000px;}
.he_c00249{height:82.950000px;}
.h3_c00249{height:98.703997px;}
.ha_c00249{height:106.050000px;}
.h15_c00249{height:109.200000px;}
.hf_c00249{height:110.250000px;}
.h17_c00249{height:137.550000px;}
.h0_c00249{height:1008.450000px;}
.h1_c00249{height:1008.750000px;}
.w0_c00249{width:678.450000px;}
.w1_c00249{width:678.750000px;}
.x0_c00249{left:0.000000px;}
.x3_c00249{left:87.984000px;}
.x4_c00249{left:133.234500px;}
.x18_c00249{left:162.810000px;}
.x71_c00249{left:166.860000px;}
.x8_c00249{left:168.606000px;}
.x21_c00249{left:170.100000px;}
.x5a_c00249{left:171.990000px;}
.x4f_c00249{left:177.930000px;}
.x35_c00249{left:191.430000px;}
.x5d_c00249{left:197.370000px;}
.x83_c00249{left:201.690000px;}
.x29_c00249{left:202.770000px;}
.x6d_c00249{left:204.120000px;}
.x30_c00249{left:206.820000px;}
.x42_c00249{left:208.170000px;}
.x22_c00249{left:210.600000px;}
.x38_c00249{left:212.760000px;}
.x10_c00249{left:217.892328px;}
.x56_c00249{left:218.970000px;}
.x9_c00249{left:223.321500px;}
.x68_c00249{left:225.450000px;}
.x5e_c00249{left:227.340000px;}
.x76_c00249{left:228.960000px;}
.x43_c00249{left:231.390000px;}
.x19_c00249{left:233.550000px;}
.xa_c00249{left:235.293000px;}
.x57_c00249{left:238.950000px;}
.x31_c00249{left:242.460000px;}
.x6e_c00249{left:244.350000px;}
.x3f_c00249{left:246.240000px;}
.x23_c00249{left:247.860000px;}
.x2a_c00249{left:251.640000px;}
.x72_c00249{left:252.990000px;}
.x61_c00249{left:255.150000px;}
.x39_c00249{left:256.230000px;}
.x44_c00249{left:262.710000px;}
.x5f_c00249{left:265.140000px;}
.x79_c00249{left:266.490000px;}
.x5_c00249{left:268.287000px;}
.x32_c00249{left:271.080000px;}
.x1a_c00249{left:273.780000px;}
.x7f_c00249{left:274.860000px;}
.x11_c00249{left:277.834188px;}
.x50_c00249{left:281.880000px;}
.x1_c00249{left:283.230000px;}
.x5b_c00249{left:285.930000px;}
.x2b_c00249{left:290.520000px;}
.xb_c00249{left:293.340000px;}
.x3a_c00249{left:294.570000px;}
.x36_c00249{left:295.920000px;}
.x77_c00249{left:297.000000px;}
.x7c_c00249{left:298.350000px;}
.x45_c00249{left:299.970000px;}
.x3b_c00249{left:302.130000px;}
.x12_c00249{left:306.725024px;}
.x51_c00249{left:308.610000px;}
.x53_c00249{left:310.500000px;}
.x69_c00249{left:311.580000px;}
.x78_c00249{left:314.820000px;}
.x7d_c00249{left:323.460000px;}
.x46_c00249{left:325.350000px;}
.x73_c00249{left:326.970000px;}
.xc_c00249{left:329.220000px;}
.x37_c00249{left:332.370000px;}
.x1b_c00249{left:334.530000px;}
.x60_c00249{left:336.420000px;}
.x2c_c00249{left:338.850000px;}
.x4b_c00249{left:340.200000px;}
.x24_c00249{left:342.090000px;}
.x80_c00249{left:343.980000px;}
.x66_c00249{left:347.490000px;}
.x2_c00249{left:349.380000px;}
.xd_c00249{left:350.826000px;}
.x62_c00249{left:355.050000px;}
.x1c_c00249{left:359.100000px;}
.x13_c00249{left:362.616560px;}
.x81_c00249{left:364.500000px;}
.x6_c00249{left:366.855000px;}
.x2d_c00249{left:368.010000px;}
.x63_c00249{left:372.600000px;}
.x4c_c00249{left:375.840000px;}
.x33_c00249{left:377.460000px;}
.x25_c00249{left:378.810000px;}
.x6a_c00249{left:382.050000px;}
.x47_c00249{left:383.400000px;}
.x67_c00249{left:386.640000px;}
.x40_c00249{left:389.610000px;}
.x74_c00249{left:392.580000px;}
.x64_c00249{left:393.930000px;}
.x1d_c00249{left:396.090000px;}
.x3d_c00249{left:397.440000px;}
.x48_c00249{left:400.680000px;}
.x4d_c00249{left:402.570000px;}
.x26_c00249{left:403.650000px;}
.x5c_c00249{left:410.940000px;}
.xe_c00249{left:416.193000px;}
.x7a_c00249{left:417.960000px;}
.x2e_c00249{left:419.040000px;}
.x54_c00249{left:421.470000px;}
.x14_c00249{left:423.098460px;}
.x27_c00249{left:424.170000px;}
.x4e_c00249{left:428.220000px;}
.x1e_c00249{left:430.110000px;}
.x7_c00249{left:434.065500px;}
.x6b_c00249{left:437.130000px;}
.x7e_c00249{left:440.370000px;}
.x6f_c00249{left:442.530000px;}
.x15_c00249{left:444.158661px;}
.x2f_c00249{left:445.230000px;}
.x84_c00249{left:451.170000px;}
.x65_c00249{left:454.410000px;}
.x6c_c00249{left:460.620000px;}
.x34_c00249{left:461.700000px;}
.x1f_c00249{left:465.750000px;}
.xf_c00249{left:468.807000px;}
.x49_c00249{left:471.960000px;}
.x82_c00249{left:473.040000px;}
.x41_c00249{left:475.740000px;}
.x7b_c00249{left:476.820000px;}
.x70_c00249{left:481.950000px;}
.x20_c00249{left:483.030000px;}
.x4a_c00249{left:489.510000px;}
.x58_c00249{left:491.130000px;}
.x16_c00249{left:493.301144px;}
.x75_c00249{left:503.280000px;}
.x3e_c00249{left:507.330000px;}
.x28_c00249{left:508.950000px;}
.x55_c00249{left:521.370000px;}
.x52_c00249{left:531.900000px;}
.x59_c00249{left:534.330000px;}
.x3c_c00249{left:540.000000px;}
.x85_c00249{left:576.450000px;}
.x17_c00249{left:577.544961px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs0_c00249{font-size:29.866667pt;}
.fs9_c00249{font-size:55.066667pt;}
.fs2_c00249{font-size:55.068897pt;}
.fs12_c00249{font-size:56.000000pt;}
.fs3_c00249{font-size:56.002268pt;}
.fs11_c00249{font-size:57.866667pt;}
.fs6_c00249{font-size:58.800000pt;}
.fsb_c00249{font-size:59.733333pt;}
.fs4_c00249{font-size:61.600000pt;}
.fs14_c00249{font-size:62.533333pt;}
.fsa_c00249{font-size:63.466667pt;}
.fs5_c00249{font-size:64.400000pt;}
.fsf_c00249{font-size:65.333333pt;}
.fs10_c00249{font-size:67.200000pt;}
.fse_c00249{font-size:70.933333pt;}
.fs7_c00249{font-size:72.800000pt;}
.fsc_c00249{font-size:73.733333pt;}
.fs1_c00249{font-size:87.736886pt;}
.fs8_c00249{font-size:94.266667pt;}
.fs13_c00249{font-size:97.066667pt;}
.fsd_c00249{font-size:98.000000pt;}
.fs15_c00249{font-size:122.266667pt;}
.y0_c00249{bottom:0.000000pt;}
.y36_c00249{bottom:90.621333pt;}
.y35_c00249{bottom:146.401333pt;}
.y34_c00249{bottom:167.916000pt;}
.y33_c00249{bottom:188.465333pt;}
.y32_c00249{bottom:204.886667pt;}
.y31_c00249{bottom:228.550667pt;}
.y30_c00249{bottom:250.125333pt;}
.y2f_c00249{bottom:269.984000pt;}
.y2e_c00249{bottom:291.437333pt;}
.y2d_c00249{bottom:311.456000pt;}
.y2c_c00249{bottom:331.620000pt;}
.y2b_c00249{bottom:352.278667pt;}
.y2a_c00249{bottom:372.264000pt;}
.y29_c00249{bottom:392.565333pt;}
.y28_c00249{bottom:413.288000pt;}
.y27_c00249{bottom:430.436000pt;}
.y26_c00249{bottom:453.681333pt;}
.y25_c00249{bottom:474.110667pt;}
.y24_c00249{bottom:494.160000pt;}
.y23_c00249{bottom:515.760000pt;}
.y22_c00249{bottom:535.920000pt;}
.y21_c00249{bottom:556.393333pt;}
.y20_c00249{bottom:574.820000pt;}
.y1f_c00249{bottom:596.188000pt;}
.y1e_c00249{bottom:614.226667pt;}
.y1d_c00249{bottom:637.592000pt;}
.y1c_c00249{bottom:658.130667pt;}
.y1b_c00249{bottom:678.288000pt;}
.y1a_c00249{bottom:699.186667pt;}
.y16_c00249{bottom:719.475549pt;}
.y15_c00249{bottom:719.475733pt;}
.y18_c00249{bottom:719.475792pt;}
.y17_c00249{bottom:719.476017pt;}
.y14_c00249{bottom:719.476092pt;}
.y12_c00249{bottom:719.476196pt;}
.y19_c00249{bottom:719.476355pt;}
.y13_c00249{bottom:719.476637pt;}
.y11_c00249{bottom:719.476700pt;}
.y10_c00249{bottom:719.477112pt;}
.y7_c00249{bottom:738.721333pt;}
.y8_c00249{bottom:739.159057pt;}
.y9_c00249{bottom:739.254829pt;}
.ya_c00249{bottom:739.719205pt;}
.yb_c00249{bottom:740.006245pt;}
.yc_c00249{bottom:740.179093pt;}
.yd_c00249{bottom:740.702029pt;}
.ye_c00249{bottom:740.842129pt;}
.yf_c00249{bottom:741.122941pt;}
.y2_c00249{bottom:773.281333pt;}
.y3_c00249{bottom:773.643337pt;}
.y4_c00249{bottom:774.723757pt;}
.y5_c00249{bottom:775.512301pt;}
.y6_c00249{bottom:776.049985pt;}
.y1_c00249{bottom:837.256000pt;}
.h2_c00249{height:29.866667pt;}
.hb_c00249{height:55.066667pt;}
.h4_c00249{height:55.068897pt;}
.h14_c00249{height:56.000000pt;}
.h5_c00249{height:56.002268pt;}
.h13_c00249{height:57.866667pt;}
.h8_c00249{height:58.800000pt;}
.hd_c00249{height:59.733333pt;}
.h6_c00249{height:61.600000pt;}
.h16_c00249{height:62.533333pt;}
.hc_c00249{height:63.466667pt;}
.h7_c00249{height:64.400000pt;}
.h11_c00249{height:65.333333pt;}
.h12_c00249{height:67.200000pt;}
.h10_c00249{height:70.933333pt;}
.h9_c00249{height:72.800000pt;}
.he_c00249{height:73.733333pt;}
.h3_c00249{height:87.736886pt;}
.ha_c00249{height:94.266667pt;}
.h15_c00249{height:97.066667pt;}
.hf_c00249{height:98.000000pt;}
.h17_c00249{height:122.266667pt;}
.h0_c00249{height:896.400000pt;}
.h1_c00249{height:896.666667pt;}
.w0_c00249{width:603.066667pt;}
.w1_c00249{width:603.333333pt;}
.x0_c00249{left:0.000000pt;}
.x3_c00249{left:78.208000pt;}
.x4_c00249{left:118.430667pt;}
.x18_c00249{left:144.720000pt;}
.x71_c00249{left:148.320000pt;}
.x8_c00249{left:149.872000pt;}
.x21_c00249{left:151.200000pt;}
.x5a_c00249{left:152.880000pt;}
.x4f_c00249{left:158.160000pt;}
.x35_c00249{left:170.160000pt;}
.x5d_c00249{left:175.440000pt;}
.x83_c00249{left:179.280000pt;}
.x29_c00249{left:180.240000pt;}
.x6d_c00249{left:181.440000pt;}
.x30_c00249{left:183.840000pt;}
.x42_c00249{left:185.040000pt;}
.x22_c00249{left:187.200000pt;}
.x38_c00249{left:189.120000pt;}
.x10_c00249{left:193.682069pt;}
.x56_c00249{left:194.640000pt;}
.x9_c00249{left:198.508000pt;}
.x68_c00249{left:200.400000pt;}
.x5e_c00249{left:202.080000pt;}
.x76_c00249{left:203.520000pt;}
.x43_c00249{left:205.680000pt;}
.x19_c00249{left:207.600000pt;}
.xa_c00249{left:209.149333pt;}
.x57_c00249{left:212.400000pt;}
.x31_c00249{left:215.520000pt;}
.x6e_c00249{left:217.200000pt;}
.x3f_c00249{left:218.880000pt;}
.x23_c00249{left:220.320000pt;}
.x2a_c00249{left:223.680000pt;}
.x72_c00249{left:224.880000pt;}
.x61_c00249{left:226.800000pt;}
.x39_c00249{left:227.760000pt;}
.x44_c00249{left:233.520000pt;}
.x5f_c00249{left:235.680000pt;}
.x79_c00249{left:236.880000pt;}
.x5_c00249{left:238.477333pt;}
.x32_c00249{left:240.960000pt;}
.x1a_c00249{left:243.360000pt;}
.x7f_c00249{left:244.320000pt;}
.x11_c00249{left:246.963723pt;}
.x50_c00249{left:250.560000pt;}
.x1_c00249{left:251.760000pt;}
.x5b_c00249{left:254.160000pt;}
.x2b_c00249{left:258.240000pt;}
.xb_c00249{left:260.746667pt;}
.x3a_c00249{left:261.840000pt;}
.x36_c00249{left:263.040000pt;}
.x77_c00249{left:264.000000pt;}
.x7c_c00249{left:265.200000pt;}
.x45_c00249{left:266.640000pt;}
.x3b_c00249{left:268.560000pt;}
.x12_c00249{left:272.644465pt;}
.x51_c00249{left:274.320000pt;}
.x53_c00249{left:276.000000pt;}
.x69_c00249{left:276.960000pt;}
.x78_c00249{left:279.840000pt;}
.x7d_c00249{left:287.520000pt;}
.x46_c00249{left:289.200000pt;}
.x73_c00249{left:290.640000pt;}
.xc_c00249{left:292.640000pt;}
.x37_c00249{left:295.440000pt;}
.x1b_c00249{left:297.360000pt;}
.x60_c00249{left:299.040000pt;}
.x2c_c00249{left:301.200000pt;}
.x4b_c00249{left:302.400000pt;}
.x24_c00249{left:304.080000pt;}
.x80_c00249{left:305.760000pt;}
.x66_c00249{left:308.880000pt;}
.x2_c00249{left:310.560000pt;}
.xd_c00249{left:311.845333pt;}
.x62_c00249{left:315.600000pt;}
.x1c_c00249{left:319.200000pt;}
.x13_c00249{left:322.325831pt;}
.x81_c00249{left:324.000000pt;}
.x6_c00249{left:326.093333pt;}
.x2d_c00249{left:327.120000pt;}
.x63_c00249{left:331.200000pt;}
.x4c_c00249{left:334.080000pt;}
.x33_c00249{left:335.520000pt;}
.x25_c00249{left:336.720000pt;}
.x6a_c00249{left:339.600000pt;}
.x47_c00249{left:340.800000pt;}
.x67_c00249{left:343.680000pt;}
.x40_c00249{left:346.320000pt;}
.x74_c00249{left:348.960000pt;}
.x64_c00249{left:350.160000pt;}
.x1d_c00249{left:352.080000pt;}
.x3d_c00249{left:353.280000pt;}
.x48_c00249{left:356.160000pt;}
.x4d_c00249{left:357.840000pt;}
.x26_c00249{left:358.800000pt;}
.x5c_c00249{left:365.280000pt;}
.xe_c00249{left:369.949333pt;}
.x7a_c00249{left:371.520000pt;}
.x2e_c00249{left:372.480000pt;}
.x54_c00249{left:374.640000pt;}
.x14_c00249{left:376.087520pt;}
.x27_c00249{left:377.040000pt;}
.x4e_c00249{left:380.640000pt;}
.x1e_c00249{left:382.320000pt;}
.x7_c00249{left:385.836000pt;}
.x6b_c00249{left:388.560000pt;}
.x7e_c00249{left:391.440000pt;}
.x6f_c00249{left:393.360000pt;}
.x15_c00249{left:394.807699pt;}
.x2f_c00249{left:395.760000pt;}
.x84_c00249{left:401.040000pt;}
.x65_c00249{left:403.920000pt;}
.x6c_c00249{left:409.440000pt;}
.x34_c00249{left:410.400000pt;}
.x1f_c00249{left:414.000000pt;}
.xf_c00249{left:416.717333pt;}
.x49_c00249{left:419.520000pt;}
.x82_c00249{left:420.480000pt;}
.x41_c00249{left:422.880000pt;}
.x7b_c00249{left:423.840000pt;}
.x70_c00249{left:428.400000pt;}
.x20_c00249{left:429.360000pt;}
.x4a_c00249{left:435.120000pt;}
.x58_c00249{left:436.560000pt;}
.x16_c00249{left:438.489905pt;}
.x75_c00249{left:447.360000pt;}
.x3e_c00249{left:450.960000pt;}
.x28_c00249{left:452.400000pt;}
.x55_c00249{left:463.440000pt;}
.x52_c00249{left:472.800000pt;}
.x59_c00249{left:474.960000pt;}
.x3c_c00249{left:480.000000pt;}
.x85_c00249{left:512.400000pt;}
.x17_c00249{left:513.373299pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m3b_c00250{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);}
.ma2_c00250{transform:matrix(0.018634,-0.000224,0.003000,0.249982,0,0);-ms-transform:matrix(0.018634,-0.000224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.018634,-0.000224,0.003000,0.249982,0,0);}
.m99_c00250{transform:matrix(0.024998,-0.000300,0.003000,0.249982,0,0);-ms-transform:matrix(0.024998,-0.000300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.024998,-0.000300,0.003000,0.249982,0,0);}
.me6_c00250{transform:matrix(0.029103,-0.000349,0.003000,0.249982,0,0);-ms-transform:matrix(0.029103,-0.000349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.029103,-0.000349,0.003000,0.249982,0,0);}
.m5e_c00250{transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);-ms-transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.038962,-0.000468,0.003000,0.249982,0,0);}
.m22_c00250{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);}
.ma9_c00250{transform:matrix(0.145265,-0.001743,0.003000,0.249982,0,0);-ms-transform:matrix(0.145265,-0.001743,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145265,-0.001743,0.003000,0.249982,0,0);}
.m4f_c00250{transform:matrix(0.147755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147755,0.000000,0.000000,0.250000,0,0);}
.m9f_c00250{transform:matrix(0.148404,-0.001781,0.003000,0.249982,0,0);-ms-transform:matrix(0.148404,-0.001781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148404,-0.001781,0.003000,0.249982,0,0);}
.m95_c00250{transform:matrix(0.149334,-0.001792,0.003000,0.249982,0,0);-ms-transform:matrix(0.149334,-0.001792,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149334,-0.001792,0.003000,0.249982,0,0);}
.m63_c00250{transform:matrix(0.152804,-0.001834,0.003000,0.249982,0,0);-ms-transform:matrix(0.152804,-0.001834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152804,-0.001834,0.003000,0.249982,0,0);}
.m96_c00250{transform:matrix(0.153664,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153664,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153664,-0.001844,0.003000,0.249982,0,0);}
.mf0_c00250{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);}
.m39_c00250{transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155440,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00250{transform:matrix(0.155594,-0.001867,0.003000,0.249982,0,0);-ms-transform:matrix(0.155594,-0.001867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155594,-0.001867,0.003000,0.249982,0,0);}
.m9d_c00250{transform:matrix(0.157209,-0.001887,0.003000,0.249982,0,0);-ms-transform:matrix(0.157209,-0.001887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157209,-0.001887,0.003000,0.249982,0,0);}
.mc8_c00250{transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);-ms-transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157694,-0.001892,0.003000,0.249982,0,0);}
.m44_c00250{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);}
.m1a_c00250{transform:matrix(0.159544,-0.001436,0.002250,0.249990,0,0);-ms-transform:matrix(0.159544,-0.001436,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159544,-0.001436,0.002250,0.249990,0,0);}
.m2_c00250{transform:matrix(0.161249,-0.006618,0.010252,0.249790,0,0);-ms-transform:matrix(0.161249,-0.006618,0.010252,0.249790,0,0);-webkit-transform:matrix(0.161249,-0.006618,0.010252,0.249790,0,0);}
.mb3_c00250{transform:matrix(0.161623,-0.001939,0.003000,0.249982,0,0);-ms-transform:matrix(0.161623,-0.001939,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161623,-0.001939,0.003000,0.249982,0,0);}
.m9c_c00250{transform:matrix(0.161778,-0.001941,0.003000,0.249982,0,0);-ms-transform:matrix(0.161778,-0.001941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161778,-0.001941,0.003000,0.249982,0,0);}
.m81_c00250{transform:matrix(0.162048,-0.001945,0.003000,0.249982,0,0);-ms-transform:matrix(0.162048,-0.001945,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162048,-0.001945,0.003000,0.249982,0,0);}
.m23_c00250{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);}
.me2_c00250{transform:matrix(0.164563,-0.001975,0.003000,0.249982,0,0);-ms-transform:matrix(0.164563,-0.001975,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164563,-0.001975,0.003000,0.249982,0,0);}
.m36_c00250{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.mba_c00250{transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167663,-0.002012,0.003000,0.249982,0,0);}
.m70_c00250{transform:matrix(0.167843,-0.002014,0.003000,0.249982,0,0);-ms-transform:matrix(0.167843,-0.002014,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167843,-0.002014,0.003000,0.249982,0,0);}
.mc6_c00250{transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-ms-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);}
.m25_c00250{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);}
.m19_c00250{transform:matrix(0.169658,-0.001527,0.002250,0.249990,0,0);-ms-transform:matrix(0.169658,-0.001527,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169658,-0.001527,0.002250,0.249990,0,0);}
.mc2_c00250{transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);}
.m24_c00250{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);}
.m90_c00250{transform:matrix(0.170743,-0.002049,0.003000,0.249982,0,0);-ms-transform:matrix(0.170743,-0.002049,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170743,-0.002049,0.003000,0.249982,0,0);}
.me_c00250{transform:matrix(0.171226,-0.002226,0.003250,0.249979,0,0);-ms-transform:matrix(0.171226,-0.002226,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171226,-0.002226,0.003250,0.249979,0,0);}
.m7c_c00250{transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171388,-0.002057,0.003000,0.249982,0,0);}
.m93_c00250{transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);}
.mae_c00250{transform:matrix(0.172048,-0.002065,0.003000,0.249982,0,0);-ms-transform:matrix(0.172048,-0.002065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172048,-0.002065,0.003000,0.249982,0,0);}
.mbc_c00250{transform:matrix(0.172793,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172793,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172793,-0.002074,0.003000,0.249982,0,0);}
.mc0_c00250{transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);-ms-transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);}
.m64_c00250{transform:matrix(0.173378,-0.002081,0.003000,0.249982,0,0);-ms-transform:matrix(0.173378,-0.002081,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173378,-0.002081,0.003000,0.249982,0,0);}
.m33_c00250{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);}
.m91_c00250{transform:matrix(0.174197,-0.002090,0.003000,0.249982,0,0);-ms-transform:matrix(0.174197,-0.002090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174197,-0.002090,0.003000,0.249982,0,0);}
.mce_c00250{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);}
.m2e_c00250{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);}
.maa_c00250{transform:matrix(0.176012,-0.002112,0.003000,0.249982,0,0);-ms-transform:matrix(0.176012,-0.002112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176012,-0.002112,0.003000,0.249982,0,0);}
.m45_c00250{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);}
.mdd_c00250{transform:matrix(0.177762,-0.002133,0.003000,0.249982,0,0);-ms-transform:matrix(0.177762,-0.002133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177762,-0.002133,0.003000,0.249982,0,0);}
.m4e_c00250{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);}
.m3f_c00250{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);}
.m1b_c00250{transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180178,-0.001622,0.002250,0.249990,0,0);}
.m43_c00250{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);}
.md_c00250{transform:matrix(0.181610,-0.002361,0.003250,0.249979,0,0);-ms-transform:matrix(0.181610,-0.002361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181610,-0.002361,0.003250,0.249979,0,0);}
.m1c_c00250{transform:matrix(0.181803,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181803,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181803,-0.001636,0.002250,0.249990,0,0);}
.m57_c00250{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);}
.m4d_c00250{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);}
.mb6_c00250{transform:matrix(0.184862,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184862,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184862,-0.002218,0.003000,0.249982,0,0);}
.m94_c00250{transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);}
.m82_c00250{transform:matrix(0.185962,-0.002232,0.003000,0.249982,0,0);-ms-transform:matrix(0.185962,-0.002232,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185962,-0.002232,0.003000,0.249982,0,0);}
.m10_c00250{transform:matrix(0.186684,-0.002427,0.003250,0.249979,0,0);-ms-transform:matrix(0.186684,-0.002427,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186684,-0.002427,0.003250,0.249979,0,0);}
.m87_c00250{transform:matrix(0.187372,-0.002248,0.003000,0.249982,0,0);-ms-transform:matrix(0.187372,-0.002248,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187372,-0.002248,0.003000,0.249982,0,0);}
.md6_c00250{transform:matrix(0.187412,-0.002249,0.003000,0.249982,0,0);-ms-transform:matrix(0.187412,-0.002249,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187412,-0.002249,0.003000,0.249982,0,0);}
.m73_c00250{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);}
.m4b_c00250{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);}
.mcd_c00250{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);}
.meb_c00250{transform:matrix(0.189516,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189516,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189516,-0.002274,0.003000,0.249982,0,0);}
.m92_c00250{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);}
.m72_c00250{transform:matrix(0.190431,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190431,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190431,-0.002285,0.003000,0.249982,0,0);}
.mbe_c00250{transform:matrix(0.190861,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190861,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190861,-0.002290,0.003000,0.249982,0,0);}
.ma3_c00250{transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);}
.m71_c00250{transform:matrix(0.192331,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192331,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192331,-0.002308,0.003000,0.249982,0,0);}
.m74_c00250{transform:matrix(0.192441,-0.002309,0.003000,0.249982,0,0);-ms-transform:matrix(0.192441,-0.002309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192441,-0.002309,0.003000,0.249982,0,0);}
.me5_c00250{transform:matrix(0.192621,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192621,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192621,-0.002311,0.003000,0.249982,0,0);}
.ma1_c00250{transform:matrix(0.192656,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192656,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192656,-0.002312,0.003000,0.249982,0,0);}
.m66_c00250{transform:matrix(0.193206,-0.002318,0.003000,0.249982,0,0);-ms-transform:matrix(0.193206,-0.002318,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193206,-0.002318,0.003000,0.249982,0,0);}
.m50_c00250{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);}
.m97_c00250{transform:matrix(0.193486,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193486,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193486,-0.002322,0.003000,0.249982,0,0);}
.m85_c00250{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);}
.mdf_c00250{transform:matrix(0.193601,-0.002323,0.003000,0.249982,0,0);-ms-transform:matrix(0.193601,-0.002323,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193601,-0.002323,0.003000,0.249982,0,0);}
.me1_c00250{transform:matrix(0.193661,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193661,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193661,-0.002324,0.003000,0.249982,0,0);}
.m79_c00250{transform:matrix(0.193731,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193731,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193731,-0.002325,0.003000,0.249982,0,0);}
.ma8_c00250{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);}
.m9b_c00250{transform:matrix(0.194446,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194446,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194446,-0.002333,0.003000,0.249982,0,0);}
.mc1_c00250{transform:matrix(0.194706,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194706,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194706,-0.002336,0.003000,0.249982,0,0);}
.m5f_c00250{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);}
.m7b_c00250{transform:matrix(0.195161,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195161,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195161,-0.002342,0.003000,0.249982,0,0);}
.m37_c00250{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);}
.m7e_c00250{transform:matrix(0.195831,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195831,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195831,-0.002350,0.003000,0.249982,0,0);}
.mcc_c00250{transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);}
.me3_c00250{transform:matrix(0.196376,-0.002357,0.003000,0.249982,0,0);-ms-transform:matrix(0.196376,-0.002357,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196376,-0.002357,0.003000,0.249982,0,0);}
.m7a_c00250{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);}
.mbf_c00250{transform:matrix(0.196921,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196921,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196921,-0.002363,0.003000,0.249982,0,0);}
.me9_c00250{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);}
.m89_c00250{transform:matrix(0.197296,-0.002368,0.003000,0.249982,0,0);-ms-transform:matrix(0.197296,-0.002368,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197296,-0.002368,0.003000,0.249982,0,0);}
.md4_c00250{transform:matrix(0.197551,-0.002371,0.003000,0.249982,0,0);-ms-transform:matrix(0.197551,-0.002371,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197551,-0.002371,0.003000,0.249982,0,0);}
.m7f_c00250{transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);}
.m9e_c00250{transform:matrix(0.198471,-0.002382,0.003000,0.249982,0,0);-ms-transform:matrix(0.198471,-0.002382,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198471,-0.002382,0.003000,0.249982,0,0);}
.m88_c00250{transform:matrix(0.198911,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198911,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198911,-0.002387,0.003000,0.249982,0,0);}
.mea_c00250{transform:matrix(0.199211,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199211,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199211,-0.002391,0.003000,0.249982,0,0);}
.m75_c00250{transform:matrix(0.199376,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199376,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199376,-0.002393,0.003000,0.249982,0,0);}
.m17_c00250{transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);-ms-transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);}
.mcb_c00250{transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);}
.m40_c00250{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);}
.m2f_c00250{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);}
.m38_c00250{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);}
.md7_c00250{transform:matrix(0.201460,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201460,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201460,-0.002418,0.003000,0.249982,0,0);}
.m5b_c00250{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);}
.m35_c00250{transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{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);}
.m8a_c00250{transform:matrix(0.202950,-0.002435,0.003000,0.249982,0,0);-ms-transform:matrix(0.202950,-0.002435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202950,-0.002435,0.003000,0.249982,0,0);}
.me4_c00250{transform:matrix(0.203560,-0.002443,0.003000,0.249982,0,0);-ms-transform:matrix(0.203560,-0.002443,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203560,-0.002443,0.003000,0.249982,0,0);}
.m59_c00250{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);}
.m49_c00250{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);}
.m4a_c00250{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);}
.m8b_c00250{transform:matrix(0.204675,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204675,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204675,-0.002456,0.003000,0.249982,0,0);}
.mb1_c00250{transform:matrix(0.204810,-0.002458,0.003000,0.249982,0,0);-ms-transform:matrix(0.204810,-0.002458,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204810,-0.002458,0.003000,0.249982,0,0);}
.mc9_c00250{transform:matrix(0.204960,-0.002460,0.003000,0.249982,0,0);-ms-transform:matrix(0.204960,-0.002460,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204960,-0.002460,0.003000,0.249982,0,0);}
.mf5_c00250{transform:matrix(0.205450,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205450,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205450,-0.002465,0.003000,0.249982,0,0);}
.m86_c00250{transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);}
.m18_c00250{transform:matrix(0.205937,-0.001853,0.002250,0.249990,0,0);-ms-transform:matrix(0.205937,-0.001853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205937,-0.001853,0.002250,0.249990,0,0);}
.m12_c00250{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);}
.m1d_c00250{transform:matrix(0.207717,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207717,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207717,-0.001869,0.002250,0.249990,0,0);}
.m58_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);}
.mca_c00250{transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);-ms-transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);}
.m6c_c00250{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);}
.mcf_c00250{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);}
.mf_c00250{transform:matrix(0.210512,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210512,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210512,-0.002737,0.003250,0.249979,0,0);}
.m3c_c00250{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);}
.m41_c00250{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);}
.m53_c00250{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);}
.mc_c00250{transform:matrix(0.211537,-0.002750,0.003250,0.249979,0,0);-ms-transform:matrix(0.211537,-0.002750,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211537,-0.002750,0.003250,0.249979,0,0);}
.m42_c00250{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);}
.mb7_c00250{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);}
.mc7_c00250{transform:matrix(0.213495,-0.002562,0.003000,0.249982,0,0);-ms-transform:matrix(0.213495,-0.002562,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213495,-0.002562,0.003000,0.249982,0,0);}
.m5a_c00250{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);}
.mb9_c00250{transform:matrix(0.215005,-0.002580,0.003000,0.249982,0,0);-ms-transform:matrix(0.215005,-0.002580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215005,-0.002580,0.003000,0.249982,0,0);}
.m8d_c00250{transform:matrix(0.215090,-0.002581,0.003000,0.249982,0,0);-ms-transform:matrix(0.215090,-0.002581,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215090,-0.002581,0.003000,0.249982,0,0);}
.mac_c00250{transform:matrix(0.215379,-0.002585,0.003000,0.249982,0,0);-ms-transform:matrix(0.215379,-0.002585,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215379,-0.002585,0.003000,0.249982,0,0);}
.ma6_c00250{transform:matrix(0.215564,-0.002587,0.003000,0.249982,0,0);-ms-transform:matrix(0.215564,-0.002587,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215564,-0.002587,0.003000,0.249982,0,0);}
.m2c_c00250{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);}
.mad_c00250{transform:matrix(0.216294,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216294,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216294,-0.002596,0.003000,0.249982,0,0);}
.m1f_c00250{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);}
.m7d_c00250{transform:matrix(0.217034,-0.002604,0.003000,0.249982,0,0);-ms-transform:matrix(0.217034,-0.002604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217034,-0.002604,0.003000,0.249982,0,0);}
.m78_c00250{transform:matrix(0.217354,-0.002608,0.003000,0.249982,0,0);-ms-transform:matrix(0.217354,-0.002608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217354,-0.002608,0.003000,0.249982,0,0);}
.mf2_c00250{transform:matrix(0.217579,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217579,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217579,-0.002611,0.003000,0.249982,0,0);}
.m3_c00250{transform:matrix(0.218456,-0.008966,0.010252,0.249790,0,0);-ms-transform:matrix(0.218456,-0.008966,0.010252,0.249790,0,0);-webkit-transform:matrix(0.218456,-0.008966,0.010252,0.249790,0,0);}
.mee_c00250{transform:matrix(0.219334,-0.002632,0.003000,0.249982,0,0);-ms-transform:matrix(0.219334,-0.002632,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219334,-0.002632,0.003000,0.249982,0,0);}
.m60_c00250{transform:matrix(0.219904,-0.002639,0.003000,0.249982,0,0);-ms-transform:matrix(0.219904,-0.002639,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219904,-0.002639,0.003000,0.249982,0,0);}
.med_c00250{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);}
.mb4_c00250{transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);}
.mf6_c00250{transform:matrix(0.221229,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221229,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221229,-0.002655,0.003000,0.249982,0,0);}
.mb2_c00250{transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);-ms-transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);}
.mab_c00250{transform:matrix(0.222039,-0.002664,0.003000,0.249982,0,0);-ms-transform:matrix(0.222039,-0.002664,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222039,-0.002664,0.003000,0.249982,0,0);}
.m46_c00250{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.222961,-0.002898,0.003250,0.249979,0,0);-ms-transform:matrix(0.222961,-0.002898,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222961,-0.002898,0.003250,0.249979,0,0);}
.ma0_c00250{transform:matrix(0.223159,-0.002678,0.003000,0.249982,0,0);-ms-transform:matrix(0.223159,-0.002678,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223159,-0.002678,0.003000,0.249982,0,0);}
.mda_c00250{transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);-ms-transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);}
.md5_c00250{transform:matrix(0.227259,-0.002727,0.003000,0.249982,0,0);-ms-transform:matrix(0.227259,-0.002727,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227259,-0.002727,0.003000,0.249982,0,0);}
.m28_c00250{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);}
.mde_c00250{transform:matrix(0.228534,-0.002742,0.003000,0.249982,0,0);-ms-transform:matrix(0.228534,-0.002742,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228534,-0.002742,0.003000,0.249982,0,0);}
.m55_c00250{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.m56_c00250{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);}
.md8_c00250{transform:matrix(0.233938,-0.002807,0.003000,0.249982,0,0);-ms-transform:matrix(0.233938,-0.002807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233938,-0.002807,0.003000,0.249982,0,0);}
.m6e_c00250{transform:matrix(0.236308,-0.002836,0.003000,0.249982,0,0);-ms-transform:matrix(0.236308,-0.002836,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236308,-0.002836,0.003000,0.249982,0,0);}
.m65_c00250{transform:matrix(0.237733,-0.002853,0.003000,0.249982,0,0);-ms-transform:matrix(0.237733,-0.002853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237733,-0.002853,0.003000,0.249982,0,0);}
.mf1_c00250{transform:matrix(0.238748,-0.002865,0.003000,0.249982,0,0);-ms-transform:matrix(0.238748,-0.002865,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238748,-0.002865,0.003000,0.249982,0,0);}
.m3a_c00250{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);}
.m6_c00250{transform:matrix(0.239455,-0.003113,0.003250,0.249979,0,0);-ms-transform:matrix(0.239455,-0.003113,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239455,-0.003113,0.003250,0.249979,0,0);}
.m68_c00250{transform:matrix(0.240763,-0.002889,0.003000,0.249982,0,0);-ms-transform:matrix(0.240763,-0.002889,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240763,-0.002889,0.003000,0.249982,0,0);}
.m29_c00250{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);}
.mf4_c00250{transform:matrix(0.242118,-0.002905,0.003000,0.249982,0,0);-ms-transform:matrix(0.242118,-0.002905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242118,-0.002905,0.003000,0.249982,0,0);}
.m2a_c00250{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);}
.m30_c00250{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);}
.mb8_c00250{transform:matrix(0.247862,-0.002974,0.003000,0.249982,0,0);-ms-transform:matrix(0.247862,-0.002974,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247862,-0.002974,0.003000,0.249982,0,0);}
.md9_c00250{transform:matrix(0.251072,-0.003013,0.003000,0.249982,0,0);-ms-transform:matrix(0.251072,-0.003013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251072,-0.003013,0.003000,0.249982,0,0);}
.me0_c00250{transform:matrix(0.251097,-0.003013,0.003000,0.249982,0,0);-ms-transform:matrix(0.251097,-0.003013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251097,-0.003013,0.003000,0.249982,0,0);}
.m34_c00250{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00250{transform:matrix(0.252182,-0.003026,0.003000,0.249982,0,0);-ms-transform:matrix(0.252182,-0.003026,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252182,-0.003026,0.003000,0.249982,0,0);}
.md3_c00250{transform:matrix(0.252577,-0.003031,0.003000,0.249982,0,0);-ms-transform:matrix(0.252577,-0.003031,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252577,-0.003031,0.003000,0.249982,0,0);}
.mc5_c00250{transform:matrix(0.253437,-0.003041,0.003000,0.249982,0,0);-ms-transform:matrix(0.253437,-0.003041,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253437,-0.003041,0.003000,0.249982,0,0);}
.m3e_c00250{transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);}
.mec_c00250{transform:matrix(0.256127,-0.003074,0.003000,0.249982,0,0);-ms-transform:matrix(0.256127,-0.003074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256127,-0.003074,0.003000,0.249982,0,0);}
.m2b_c00250{transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);}
.m98_c00250{transform:matrix(0.257886,-0.003095,0.003000,0.249982,0,0);-ms-transform:matrix(0.257886,-0.003095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257886,-0.003095,0.003000,0.249982,0,0);}
.m80_c00250{transform:matrix(0.259206,-0.003110,0.003000,0.249982,0,0);-ms-transform:matrix(0.259206,-0.003110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259206,-0.003110,0.003000,0.249982,0,0);}
.m13_c00250{transform:matrix(0.260068,-0.003381,0.003250,0.249979,0,0);-ms-transform:matrix(0.260068,-0.003381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260068,-0.003381,0.003250,0.249979,0,0);}
.m27_c00250{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.ma7_c00250{transform:matrix(0.265121,-0.003181,0.003000,0.249982,0,0);-ms-transform:matrix(0.265121,-0.003181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265121,-0.003181,0.003000,0.249982,0,0);}
.m54_c00250{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.m6a_c00250{transform:matrix(0.266896,-0.003203,0.003000,0.249982,0,0);-ms-transform:matrix(0.266896,-0.003203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266896,-0.003203,0.003000,0.249982,0,0);}
.m2d_c00250{transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);}
.mb5_c00250{transform:matrix(0.274910,-0.003299,0.003000,0.249982,0,0);-ms-transform:matrix(0.274910,-0.003299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274910,-0.003299,0.003000,0.249982,0,0);}
.m52_c00250{transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);}
.mdb_c00250{transform:matrix(0.278900,-0.003347,0.003000,0.249982,0,0);-ms-transform:matrix(0.278900,-0.003347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.278900,-0.003347,0.003000,0.249982,0,0);}
.m8f_c00250{transform:matrix(0.282510,-0.003390,0.003000,0.249982,0,0);-ms-transform:matrix(0.282510,-0.003390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282510,-0.003390,0.003000,0.249982,0,0);}
.m1e_c00250{transform:matrix(0.286913,-0.002582,0.002250,0.249990,0,0);-ms-transform:matrix(0.286913,-0.002582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286913,-0.002582,0.002250,0.249990,0,0);}
.m15_c00250{transform:matrix(0.287711,-0.003740,0.003250,0.249979,0,0);-ms-transform:matrix(0.287711,-0.003740,0.003250,0.249979,0,0);-webkit-transform:matrix(0.287711,-0.003740,0.003250,0.249979,0,0);}
.m32_c00250{transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290230,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.290545,-0.003777,0.003250,0.249979,0,0);-ms-transform:matrix(0.290545,-0.003777,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290545,-0.003777,0.003250,0.249979,0,0);}
.mc3_c00250{transform:matrix(0.295779,-0.003549,0.003000,0.249982,0,0);-ms-transform:matrix(0.295779,-0.003549,0.003000,0.249982,0,0);-webkit-transform:matrix(0.295779,-0.003549,0.003000,0.249982,0,0);}
.mf7_c00250{transform:matrix(0.310248,-0.003723,0.003000,0.249982,0,0);-ms-transform:matrix(0.310248,-0.003723,0.003000,0.249982,0,0);-webkit-transform:matrix(0.310248,-0.003723,0.003000,0.249982,0,0);}
.m5_c00250{transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320120,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.322618,-0.013241,0.010252,0.249790,0,0);-ms-transform:matrix(0.322618,-0.013241,0.010252,0.249790,0,0);-webkit-transform:matrix(0.322618,-0.013241,0.010252,0.249790,0,0);}
.md2_c00250{transform:matrix(0.324547,-0.003895,0.003000,0.249982,0,0);-ms-transform:matrix(0.324547,-0.003895,0.003000,0.249982,0,0);-webkit-transform:matrix(0.324547,-0.003895,0.003000,0.249982,0,0);}
.m7_c00250{transform:matrix(0.327892,-0.004263,0.003250,0.249979,0,0);-ms-transform:matrix(0.327892,-0.004263,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327892,-0.004263,0.003250,0.249979,0,0);}
.m21_c00250{transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);}
.m84_c00250{transform:matrix(0.337306,-0.004048,0.003000,0.249982,0,0);-ms-transform:matrix(0.337306,-0.004048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337306,-0.004048,0.003000,0.249982,0,0);}
.ma_c00250{transform:matrix(0.348311,-0.004528,0.003250,0.249979,0,0);-ms-transform:matrix(0.348311,-0.004528,0.003250,0.249979,0,0);-webkit-transform:matrix(0.348311,-0.004528,0.003250,0.249979,0,0);}
.m51_c00250{transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348455,0.000000,0.000000,0.250000,0,0);}
.mc4_c00250{transform:matrix(0.349150,-0.004190,0.003000,0.249982,0,0);-ms-transform:matrix(0.349150,-0.004190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.349150,-0.004190,0.003000,0.249982,0,0);}
.mf9_c00250{transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);}
.m47_c00250{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);}
.m83_c00250{transform:matrix(0.372773,-0.004473,0.003000,0.249982,0,0);-ms-transform:matrix(0.372773,-0.004473,0.003000,0.249982,0,0);-webkit-transform:matrix(0.372773,-0.004473,0.003000,0.249982,0,0);}
.m77_c00250{transform:matrix(0.375193,-0.004502,0.003000,0.249982,0,0);-ms-transform:matrix(0.375193,-0.004502,0.003000,0.249982,0,0);-webkit-transform:matrix(0.375193,-0.004502,0.003000,0.249982,0,0);}
.mb_c00250{transform:matrix(0.383428,-0.004985,0.003250,0.249979,0,0);-ms-transform:matrix(0.383428,-0.004985,0.003250,0.249979,0,0);-webkit-transform:matrix(0.383428,-0.004985,0.003250,0.249979,0,0);}
.m6b_c00250{transform:matrix(0.388197,-0.004658,0.003000,0.249982,0,0);-ms-transform:matrix(0.388197,-0.004658,0.003000,0.249982,0,0);-webkit-transform:matrix(0.388197,-0.004658,0.003000,0.249982,0,0);}
.m9_c00250{transform:matrix(0.389732,-0.005067,0.003250,0.249979,0,0);-ms-transform:matrix(0.389732,-0.005067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.389732,-0.005067,0.003250,0.249979,0,0);}
.ma4_c00250{transform:matrix(0.393492,-0.004722,0.003000,0.249982,0,0);-ms-transform:matrix(0.393492,-0.004722,0.003000,0.249982,0,0);-webkit-transform:matrix(0.393492,-0.004722,0.003000,0.249982,0,0);}
.mdc_c00250{transform:matrix(0.395247,-0.004743,0.003000,0.249982,0,0);-ms-transform:matrix(0.395247,-0.004743,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395247,-0.004743,0.003000,0.249982,0,0);}
.m69_c00250{transform:matrix(0.398231,-0.004779,0.003000,0.249982,0,0);-ms-transform:matrix(0.398231,-0.004779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.398231,-0.004779,0.003000,0.249982,0,0);}
.mb0_c00250{transform:matrix(0.398491,-0.004782,0.003000,0.249982,0,0);-ms-transform:matrix(0.398491,-0.004782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.398491,-0.004782,0.003000,0.249982,0,0);}
.mbb_c00250{transform:matrix(0.408866,-0.004906,0.003000,0.249982,0,0);-ms-transform:matrix(0.408866,-0.004906,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408866,-0.004906,0.003000,0.249982,0,0);}
.me7_c00250{transform:matrix(0.409855,-0.004918,0.003000,0.249982,0,0);-ms-transform:matrix(0.409855,-0.004918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.409855,-0.004918,0.003000,0.249982,0,0);}
.md0_c00250{transform:matrix(0.413785,-0.004965,0.003000,0.249982,0,0);-ms-transform:matrix(0.413785,-0.004965,0.003000,0.249982,0,0);-webkit-transform:matrix(0.413785,-0.004965,0.003000,0.249982,0,0);}
.mef_c00250{transform:matrix(0.415075,-0.004981,0.003000,0.249982,0,0);-ms-transform:matrix(0.415075,-0.004981,0.003000,0.249982,0,0);-webkit-transform:matrix(0.415075,-0.004981,0.003000,0.249982,0,0);}
.m76_c00250{transform:matrix(0.415635,-0.004988,0.003000,0.249982,0,0);-ms-transform:matrix(0.415635,-0.004988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.415635,-0.004988,0.003000,0.249982,0,0);}
.mf8_c00250{transform:matrix(0.422575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422575,0.000000,0.000000,0.250000,0,0);}
.m8e_c00250{transform:matrix(0.424299,-0.005092,0.003000,0.249982,0,0);-ms-transform:matrix(0.424299,-0.005092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.424299,-0.005092,0.003000,0.249982,0,0);}
.m31_c00250{transform:matrix(0.430330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430330,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.458369,-0.018812,0.010252,0.249790,0,0);-ms-transform:matrix(0.458369,-0.018812,0.010252,0.249790,0,0);-webkit-transform:matrix(0.458369,-0.018812,0.010252,0.249790,0,0);}
.m6d_c00250{transform:matrix(0.468311,-0.005620,0.003000,0.249982,0,0);-ms-transform:matrix(0.468311,-0.005620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.468311,-0.005620,0.003000,0.249982,0,0);}
.m62_c00250{transform:matrix(0.522707,-0.006272,0.003000,0.249982,0,0);-ms-transform:matrix(0.522707,-0.006272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.522707,-0.006272,0.003000,0.249982,0,0);}
.ma5_c00250{transform:matrix(0.523847,-0.006286,0.003000,0.249982,0,0);-ms-transform:matrix(0.523847,-0.006286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.523847,-0.006286,0.003000,0.249982,0,0);}
.m61_c00250{transform:matrix(0.532927,-0.006395,0.003000,0.249982,0,0);-ms-transform:matrix(0.532927,-0.006395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.532927,-0.006395,0.003000,0.249982,0,0);}
.m14_c00250{transform:matrix(0.545944,-0.007097,0.003250,0.249979,0,0);-ms-transform:matrix(0.545944,-0.007097,0.003250,0.249979,0,0);-webkit-transform:matrix(0.545944,-0.007097,0.003250,0.249979,0,0);}
.m9a_c00250{transform:matrix(0.558285,-0.006699,0.003000,0.249982,0,0);-ms-transform:matrix(0.558285,-0.006699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.558285,-0.006699,0.003000,0.249982,0,0);}
.mf3_c00250{transform:matrix(0.569879,-0.006839,0.003000,0.249982,0,0);-ms-transform:matrix(0.569879,-0.006839,0.003000,0.249982,0,0);-webkit-transform:matrix(0.569879,-0.006839,0.003000,0.249982,0,0);}
.me8_c00250{transform:matrix(0.577553,-0.006931,0.003000,0.249982,0,0);-ms-transform:matrix(0.577553,-0.006931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.577553,-0.006931,0.003000,0.249982,0,0);}
.mfb_c00250{transform:matrix(0.678065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678065,0.000000,0.000000,0.250000,0,0);}
.mbd_c00250{transform:matrix(0.739217,-0.008871,0.003000,0.249982,0,0);-ms-transform:matrix(0.739217,-0.008871,0.003000,0.249982,0,0);-webkit-transform:matrix(0.739217,-0.008871,0.003000,0.249982,0,0);}
.m26_c00250{transform:matrix(0.749125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749125,0.000000,0.000000,0.250000,0,0);}
.maf_c00250{transform:matrix(0.780899,-0.009371,0.003000,0.249982,0,0);-ms-transform:matrix(0.780899,-0.009371,0.003000,0.249982,0,0);-webkit-transform:matrix(0.780899,-0.009371,0.003000,0.249982,0,0);}
.m67_c00250{transform:matrix(0.853829,-0.010246,0.003000,0.249982,0,0);-ms-transform:matrix(0.853829,-0.010246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.853829,-0.010246,0.003000,0.249982,0,0);}
.m5c_c00250{transform:matrix(0.862570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862570,0.000000,0.000000,0.250000,0,0);}
.md1_c00250{transform:matrix(0.891171,-0.010694,0.003000,0.249982,0,0);-ms-transform:matrix(0.891171,-0.010694,0.003000,0.249982,0,0);-webkit-transform:matrix(0.891171,-0.010694,0.003000,0.249982,0,0);}
.m16_c00250{transform:matrix(0.952450,-0.012382,0.003250,0.249979,0,0);-ms-transform:matrix(0.952450,-0.012382,0.003250,0.249979,0,0);-webkit-transform:matrix(0.952450,-0.012382,0.003250,0.249979,0,0);}
.m48_c00250{transform:matrix(0.970295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970295,0.000000,0.000000,0.250000,0,0);}
.mfa_c00250{transform:matrix(1.090890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090890,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(1.129844,-0.046370,0.010252,0.249790,0,0);-ms-transform:matrix(1.129844,-0.046370,0.010252,0.249790,0,0);-webkit-transform:matrix(1.129844,-0.046370,0.010252,0.249790,0,0);}
.m5d_c00250{transform:matrix(1.347028,-0.016164,0.003000,0.249982,0,0);-ms-transform:matrix(1.347028,-0.016164,0.003000,0.249982,0,0);-webkit-transform:matrix(1.347028,-0.016164,0.003000,0.249982,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;}
._0_c00250{width:3963.295741px;}
.fc0_c00250{color:transparent;}
.fsb_c00250{font-size:29.402117px;}
.fs19_c00250{font-size:47.250000px;}
.fs4_c00250{font-size:60.905146px;}
.fs2_c00250{font-size:61.955235px;}
.fs7_c00250{font-size:63.000000px;}
.fs16_c00250{font-size:63.004536px;}
.fs14_c00250{font-size:66.154763px;}
.fs9_c00250{font-size:67.200000px;}
.fs11_c00250{font-size:67.204838px;}
.fs8_c00250{font-size:68.250000px;}
.fs10_c00250{font-size:68.254914px;}
.fsf_c00250{font-size:69.304989px;}
.fs17_c00250{font-size:70.355065px;}
.fs13_c00250{font-size:71.405141px;}
.fs12_c00250{font-size:72.455216px;}
.fs15_c00250{font-size:73.505292px;}
.fs3_c00250{font-size:73.506210px;}
.fs1_c00250{font-size:74.550000px;}
.fs6_c00250{font-size:75.600000px;}
.fs5_c00250{font-size:76.653104px;}
.fsa_c00250{font-size:77.700000px;}
.fsc_c00250{font-size:81.905897px;}
.fsd_c00250{font-size:89.256426px;}
.fse_c00250{font-size:101.857333px;}
.fs0_c00250{font-size:113.381968px;}
.fs18_c00250{font-size:127.050000px;}
.y0_c00250{bottom:0.000000px;}
.ybf_c00250{bottom:109.081500px;}
.ybe_c00250{bottom:122.176500px;}
.ybd_c00250{bottom:157.920072px;}
.ybc_c00250{bottom:157.920696px;}
.ybb_c00250{bottom:157.921338px;}
.yba_c00250{bottom:165.928986px;}
.yb6_c00250{bottom:165.929256px;}
.yb8_c00250{bottom:165.929292px;}
.yb3_c00250{bottom:165.929448px;}
.yb7_c00250{bottom:165.929478px;}
.yb5_c00250{bottom:165.929532px;}
.yb2_c00250{bottom:165.929664px;}
.yb9_c00250{bottom:165.929682px;}
.yb1_c00250{bottom:165.929922px;}
.yb4_c00250{bottom:165.930090px;}
.yb0_c00250{bottom:165.930660px;}
.yaf_c00250{bottom:165.931032px;}
.ya3_c00250{bottom:187.846722px;}
.ya5_c00250{bottom:187.847310px;}
.ya4_c00250{bottom:187.847424px;}
.ya7_c00250{bottom:187.847640px;}
.ya6_c00250{bottom:187.847754px;}
.ya8_c00250{bottom:187.847904px;}
.yad_c00250{bottom:187.848192px;}
.ya9_c00250{bottom:187.848570px;}
.yae_c00250{bottom:187.848696px;}
.yac_c00250{bottom:187.848900px;}
.yaa_c00250{bottom:187.848912px;}
.yab_c00250{bottom:187.849458px;}
.y9a_c00250{bottom:211.350738px;}
.y9e_c00250{bottom:211.351074px;}
.y9d_c00250{bottom:211.351212px;}
.y98_c00250{bottom:211.351266px;}
.ya0_c00250{bottom:211.351320px;}
.y99_c00250{bottom:211.351374px;}
.y9b_c00250{bottom:211.351380px;}
.y9f_c00250{bottom:211.351638px;}
.ya2_c00250{bottom:211.351680px;}
.y9c_c00250{bottom:211.351764px;}
.ya1_c00250{bottom:211.352064px;}
.y95_c00250{bottom:233.911680px;}
.y96_c00250{bottom:233.911926px;}
.y94_c00250{bottom:233.912016px;}
.y8d_c00250{bottom:233.912046px;}
.y8e_c00250{bottom:233.912214px;}
.y97_c00250{bottom:233.912280px;}
.y91_c00250{bottom:233.912304px;}
.y8f_c00250{bottom:233.912478px;}
.y93_c00250{bottom:233.912634px;}
.y90_c00250{bottom:233.912700px;}
.y92_c00250{bottom:233.913012px;}
.y8c_c00250{bottom:257.219166px;}
.y8a_c00250{bottom:257.219526px;}
.y8b_c00250{bottom:257.219910px;}
.y89_c00250{bottom:257.220240px;}
.y88_c00250{bottom:257.220858px;}
.y87_c00250{bottom:257.221332px;}
.y86_c00250{bottom:257.221602px;}
.y85_c00250{bottom:257.221614px;}
.y81_c00250{bottom:279.076164px;}
.y83_c00250{bottom:279.076458px;}
.y82_c00250{bottom:279.076470px;}
.y84_c00250{bottom:279.076860px;}
.y79_c00250{bottom:279.076866px;}
.y80_c00250{bottom:279.076920px;}
.y7a_c00250{bottom:279.076974px;}
.y7b_c00250{bottom:279.077418px;}
.y7c_c00250{bottom:279.077448px;}
.y7f_c00250{bottom:279.077496px;}
.y7d_c00250{bottom:279.078012px;}
.y7e_c00250{bottom:279.078174px;}
.y72_c00250{bottom:302.381628px;}
.y71_c00250{bottom:302.381766px;}
.y73_c00250{bottom:302.381892px;}
.y75_c00250{bottom:302.381940px;}
.y74_c00250{bottom:302.381976px;}
.y77_c00250{bottom:302.382228px;}
.y6f_c00250{bottom:302.382354px;}
.y70_c00250{bottom:302.382420px;}
.y76_c00250{bottom:302.382426px;}
.y78_c00250{bottom:302.382546px;}
.y6e_c00250{bottom:302.382732px;}
.y6d_c00250{bottom:322.081776px;}
.y6c_c00250{bottom:322.669308px;}
.y6b_c00250{bottom:323.320596px;}
.y6a_c00250{bottom:323.729262px;}
.y69_c00250{bottom:323.960106px;}
.y68_c00250{bottom:324.117438px;}
.y67_c00250{bottom:324.813510px;}
.y66_c00250{bottom:325.187622px;}
.y65_c00250{bottom:325.814364px;}
.y64_c00250{bottom:326.278686px;}
.y63_c00250{bottom:327.010740px;}
.y62_c00250{bottom:327.223800px;}
.y5d_c00250{bottom:348.470382px;}
.y5b_c00250{bottom:348.470592px;}
.y61_c00250{bottom:348.470670px;}
.y5c_c00250{bottom:348.470736px;}
.y5e_c00250{bottom:348.470766px;}
.y5a_c00250{bottom:348.470988px;}
.y5f_c00250{bottom:348.471030px;}
.y60_c00250{bottom:348.471192px;}
.y58_c00250{bottom:348.471474px;}
.y59_c00250{bottom:348.471504px;}
.y4d_c00250{bottom:370.644600px;}
.y4e_c00250{bottom:370.645248px;}
.y4f_c00250{bottom:370.645416px;}
.y50_c00250{bottom:370.645920px;}
.y51_c00250{bottom:370.646544px;}
.y55_c00250{bottom:370.646982px;}
.y52_c00250{bottom:370.647048px;}
.y54_c00250{bottom:370.647636px;}
.y56_c00250{bottom:370.647666px;}
.y53_c00250{bottom:370.647792px;}
.y57_c00250{bottom:370.648374px;}
.y4c_c00250{bottom:392.343084px;}
.y4b_c00250{bottom:392.783082px;}
.y4a_c00250{bottom:394.132356px;}
.y49_c00250{bottom:394.408914px;}
.y48_c00250{bottom:394.795926px;}
.y47_c00250{bottom:395.199186px;}
.y46_c00250{bottom:395.484966px;}
.y45_c00250{bottom:396.020532px;}
.y44_c00250{bottom:396.397398px;}
.y43_c00250{bottom:396.843984px;}
.y42_c00250{bottom:397.184460px;}
.y41_c00250{bottom:397.532394px;}
.y40_c00250{bottom:398.423466px;}
.y3f_c00250{bottom:415.129392px;}
.y3e_c00250{bottom:416.245464px;}
.y3d_c00250{bottom:416.512494px;}
.y3c_c00250{bottom:416.661162px;}
.y3b_c00250{bottom:416.977416px;}
.y3a_c00250{bottom:417.195516px;}
.y39_c00250{bottom:417.438534px;}
.y38_c00250{bottom:417.545838px;}
.y37_c00250{bottom:417.791412px;}
.y36_c00250{bottom:417.939474px;}
.y35_c00250{bottom:418.361904px;}
.y34_c00250{bottom:418.491930px;}
.y33_c00250{bottom:435.054036px;}
.y32_c00250{bottom:436.411644px;}
.y31_c00250{bottom:437.561034px;}
.y30_c00250{bottom:439.144458px;}
.y2f_c00250{bottom:440.634162px;}
.y2d_c00250{bottom:455.638578px;}
.y2e_c00250{bottom:455.638632px;}
.y2a_c00250{bottom:474.064272px;}
.y2b_c00250{bottom:474.064392px;}
.y2c_c00250{bottom:474.064776px;}
.y29_c00250{bottom:474.064842px;}
.y26_c00250{bottom:551.344500px;}
.y27_c00250{bottom:558.178794px;}
.y28_c00250{bottom:558.320940px;}
.y25_c00250{bottom:634.215000px;}
.y24_c00250{bottom:657.160500px;}
.y23_c00250{bottom:679.840500px;}
.y22_c00250{bottom:703.278000px;}
.y21_c00250{bottom:725.205000px;}
.y20_c00250{bottom:748.651500px;}
.y18_c00250{bottom:770.311500px;}
.y19_c00250{bottom:770.904217px;}
.y1a_c00250{bottom:771.212557px;}
.y1b_c00250{bottom:771.436171px;}
.y1c_c00250{bottom:771.630261px;}
.y1d_c00250{bottom:772.004778px;}
.y1e_c00250{bottom:772.191901px;}
.y1f_c00250{bottom:772.763208px;}
.y15_c00250{bottom:794.472754px;}
.y16_c00250{bottom:796.095155px;}
.y17_c00250{bottom:798.873105px;}
.yd_c00250{bottom:815.398557px;}
.ye_c00250{bottom:816.027738px;}
.yf_c00250{bottom:816.760476px;}
.y10_c00250{bottom:816.925886px;}
.y11_c00250{bottom:817.212699px;}
.y12_c00250{bottom:817.624820px;}
.y13_c00250{bottom:817.870964px;}
.y14_c00250{bottom:820.112341px;}
.y7_c00250{bottom:840.760500px;}
.y8_c00250{bottom:841.244938px;}
.y9_c00250{bottom:841.455655px;}
.ya_c00250{bottom:841.725906px;}
.yb_c00250{bottom:842.605668px;}
.yc_c00250{bottom:845.266755px;}
.y1_c00250{bottom:863.028000px;}
.y6_c00250{bottom:867.643500px;}
.y2_c00250{bottom:870.882841px;}
.y3_c00250{bottom:875.041102px;}
.y4_c00250{bottom:878.062659px;}
.y5_c00250{bottom:880.597566px;}
.hd_c00250{height:29.402117px;}
.h1b_c00250{height:47.250000px;}
.h6_c00250{height:60.905146px;}
.h4_c00250{height:61.955235px;}
.h9_c00250{height:63.000000px;}
.h18_c00250{height:63.004536px;}
.h16_c00250{height:66.154763px;}
.hb_c00250{height:67.200000px;}
.h13_c00250{height:67.204838px;}
.ha_c00250{height:68.250000px;}
.h12_c00250{height:68.254914px;}
.h11_c00250{height:69.304989px;}
.h19_c00250{height:70.355065px;}
.h15_c00250{height:71.405141px;}
.h14_c00250{height:72.455216px;}
.h17_c00250{height:73.505292px;}
.h5_c00250{height:73.506210px;}
.h3_c00250{height:74.550000px;}
.h8_c00250{height:75.600000px;}
.h7_c00250{height:76.653104px;}
.hc_c00250{height:77.700000px;}
.he_c00250{height:81.905897px;}
.hf_c00250{height:89.256426px;}
.h10_c00250{height:101.857333px;}
.h2_c00250{height:113.381968px;}
.h1a_c00250{height:127.050000px;}
.h1_c00250{height:1005.000000px;}
.h0_c00250{height:1005.150000px;}
.w1_c00250{width:713.250000px;}
.w0_c00250{width:713.550000px;}
.x0_c00250{left:0.000000px;}
.x6c_c00250{left:13.282068px;}
.x68_c00250{left:19.167480px;}
.x4e_c00250{left:25.650510px;}
.x52_c00250{left:26.786784px;}
.x51_c00250{left:28.349982px;}
.x8f_c00250{left:29.700216px;}
.x97_c00250{left:30.780822px;}
.x81_c00250{left:31.859148px;}
.x4c_c00250{left:34.071000px;}
.x7a_c00250{left:35.368428px;}
.x6d_c00250{left:37.033044px;}
.x54_c00250{left:47.785536px;}
.x90_c00250{left:50.761740px;}
.x75_c00250{left:51.840174px;}
.x47_c00250{left:103.410000px;}
.x8a_c00250{left:108.275514px;}
.xd_c00250{left:110.885392px;}
.x1d_c00250{left:112.320000px;}
.x3f_c00250{left:113.400000px;}
.x59_c00250{left:116.002776px;}
.x55_c00250{left:118.098228px;}
.x91_c00250{left:119.887194px;}
.x4f_c00250{left:133.118490px;}
.x24_c00250{left:143.100000px;}
.x8b_c00250{left:144.727770px;}
.x98_c00250{left:146.079936px;}
.x5a_c00250{left:147.642006px;}
.x1e_c00250{left:149.040000px;}
.x37_c00250{left:150.660000px;}
.x2d_c00250{left:155.250000px;}
.x1_c00250{left:156.789000px;}
.x92_c00250{left:160.930098px;}
.x7b_c00250{left:166.058238px;}
.x8c_c00250{left:167.409528px;}
.x6e_c00250{left:169.993542px;}
.x99_c00250{left:172.812288px;}
.xe_c00250{left:173.824849px;}
.x53_c00250{left:175.809114px;}
.x17_c00250{left:177.007500px;}
.x2e_c00250{left:179.550000px;}
.x38_c00250{left:183.060000px;}
.x69_c00250{left:187.118172px;}
.x60_c00250{left:190.629618px;}
.x40_c00250{left:201.150000px;}
.x39_c00250{left:203.580000px;}
.x25_c00250{left:208.440000px;}
.x76_c00250{left:209.802426px;}
.x18_c00250{left:211.267500px;}
.x48_c00250{left:214.920000px;}
.x93_c00250{left:216.553608px;}
.x1f_c00250{left:217.620000px;}
.x5b_c00250{left:219.198252px;}
.x85_c00250{left:222.223728px;}
.x2f_c00250{left:223.560000px;}
.x61_c00250{left:230.052288px;}
.x20_c00250{left:233.820000px;}
.x7_c00250{left:236.688000px;}
.x6f_c00250{left:239.657592px;}
.x41_c00250{left:240.840000px;}
.x26_c00250{left:242.190000px;}
.x15_c00250{left:245.887693px;}
.xf_c00250{left:247.153716px;}
.x30_c00250{left:249.210000px;}
.x49_c00250{left:251.370000px;}
.x5c_c00250{left:253.427202px;}
.x19_c00250{left:257.679000px;}
.x10_c00250{left:263.685859px;}
.x9a_c00250{left:268.940130px;}
.x8_c00250{left:273.952500px;}
.x42_c00250{left:276.750000px;}
.x21_c00250{left:278.370000px;}
.x62_c00250{left:279.736434px;}
.x70_c00250{left:281.242068px;}
.x82_c00250{left:282.707274px;}
.x77_c00250{left:286.217424px;}
.x9_c00250{left:290.161500px;}
.x11_c00250{left:292.326471px;}
.x1a_c00250{left:299.292000px;}
.x43_c00250{left:301.590000px;}
.x3a_c00250{left:304.560000px;}
.x83_c00250{left:305.659086px;}
.x9b_c00250{left:309.172926px;}
.xa_c00250{left:310.950000px;}
.x63_c00250{left:312.408132px;}
.x7c_c00250{left:315.379230px;}
.x22_c00250{left:317.790000px;}
.x86_c00250{left:318.890142px;}
.x1b_c00250{left:320.083500px;}
.x27_c00250{left:321.300000px;}
.x4a_c00250{left:327.240000px;}
.x9c_c00250{left:329.694378px;}
.x56_c00250{left:331.243254px;}
.x12_c00250{left:333.606589px;}
.x44_c00250{left:335.610000px;}
.x7d_c00250{left:337.520916px;}
.x6a_c00250{left:341.029830px;}
.x3b_c00250{left:343.440000px;}
.x2_c00250{left:348.178919px;}
.x4b_c00250{left:350.730000px;}
.x64_c00250{left:352.100838px;}
.x31_c00250{left:353.430000px;}
.x57_c00250{left:356.109618px;}
.x13_c00250{left:358.195545px;}
.x28_c00250{left:362.880000px;}
.x5d_c00250{left:364.657410px;}
.x3c_c00250{left:366.930000px;}
.x45_c00250{left:368.010000px;}
.x16_c00250{left:370.687693px;}
.x23_c00250{left:372.060000px;}
.x6b_c00250{left:373.431492px;}
.x71_c00250{left:376.023954px;}
.xb_c00250{left:378.624000px;}
.x78_c00250{left:379.643370px;}
.x1c_c00250{left:383.562000px;}
.x8d_c00250{left:386.936136px;}
.x46_c00250{left:389.340000px;}
.x32_c00250{left:391.230000px;}
.x94_c00250{left:392.605434px;}
.x65_c00250{left:395.844138px;}
.x58_c00250{left:400.616730px;}
.x72_c00250{left:401.668416px;}
.x7e_c00250{left:403.675956px;}
.x79_c00250{left:404.755488px;}
.x3d_c00250{left:408.780000px;}
.x84_c00250{left:413.397102px;}
.x87_c00250{left:419.877186px;}
.x29_c00250{left:422.010000px;}
.x5e_c00250{left:424.876542px;}
.x8e_c00250{left:426.628842px;}
.x7f_c00250{left:436.617708px;}
.x33_c00250{left:439.560000px;}
.x88_c00250{left:443.099034px;}
.x2a_c00250{left:444.960000px;}
.x73_c00250{left:446.999346px;}
.x3_c00250{left:449.498497px;}
.x66_c00250{left:452.547810px;}
.x3e_c00250{left:459.810000px;}
.x9d_c00250{left:466.323552px;}
.x2b_c00250{left:468.180000px;}
.x34_c00250{left:485.730000px;}
.x67_c00250{left:493.860750px;}
.xa0_c00250{left:510.840000px;}
.x74_c00250{left:519.368580px;}
.x4_c00250{left:523.121301px;}
.x2c_c00250{left:533.790000px;}
.x5f_c00250{left:547.470882px;}
.x95_c00250{left:551.647848px;}
.x9e_c00250{left:568.120704px;}
.x14_c00250{left:582.310281px;}
.xc_c00250{left:583.323000px;}
.x5_c00250{left:584.886474px;}
.x35_c00250{left:586.170000px;}
.x50_c00250{left:588.100992px;}
.x6_c00250{left:596.160000px;}
.x96_c00250{left:597.821490px;}
.x89_c00250{left:598.900962px;}
.x36_c00250{left:602.910000px;}
.x80_c00250{left:609.700620px;}
.x9f_c00250{left:612.944166px;}
.x4d_c00250{left:615.441000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
._0_c00250{width:3522.929548pt;}
.fsb_c00250{font-size:26.135215pt;}
.fs19_c00250{font-size:42.000000pt;}
.fs4_c00250{font-size:54.137907pt;}
.fs2_c00250{font-size:55.071320pt;}
.fs7_c00250{font-size:56.000000pt;}
.fs16_c00250{font-size:56.004032pt;}
.fs14_c00250{font-size:58.804233pt;}
.fs9_c00250{font-size:59.733333pt;}
.fs11_c00250{font-size:59.737634pt;}
.fs8_c00250{font-size:60.666667pt;}
.fs10_c00250{font-size:60.671035pt;}
.fsf_c00250{font-size:61.604435pt;}
.fs17_c00250{font-size:62.537836pt;}
.fs13_c00250{font-size:63.471236pt;}
.fs12_c00250{font-size:64.404637pt;}
.fs15_c00250{font-size:65.338037pt;}
.fs3_c00250{font-size:65.338854pt;}
.fs1_c00250{font-size:66.266667pt;}
.fs6_c00250{font-size:67.200000pt;}
.fs5_c00250{font-size:68.136093pt;}
.fsa_c00250{font-size:69.066667pt;}
.fsc_c00250{font-size:72.805241pt;}
.fsd_c00250{font-size:79.339045pt;}
.fse_c00250{font-size:90.539851pt;}
.fs0_c00250{font-size:100.783972pt;}
.fs18_c00250{font-size:112.933333pt;}
.y0_c00250{bottom:0.000000pt;}
.ybf_c00250{bottom:96.961333pt;}
.ybe_c00250{bottom:108.601333pt;}
.ybd_c00250{bottom:140.373397pt;}
.ybc_c00250{bottom:140.373952pt;}
.ybb_c00250{bottom:140.374523pt;}
.yba_c00250{bottom:147.492432pt;}
.yb6_c00250{bottom:147.492672pt;}
.yb8_c00250{bottom:147.492704pt;}
.yb3_c00250{bottom:147.492843pt;}
.yb7_c00250{bottom:147.492869pt;}
.yb5_c00250{bottom:147.492917pt;}
.yb2_c00250{bottom:147.493035pt;}
.yb9_c00250{bottom:147.493051pt;}
.yb1_c00250{bottom:147.493264pt;}
.yb4_c00250{bottom:147.493413pt;}
.yb0_c00250{bottom:147.493920pt;}
.yaf_c00250{bottom:147.494251pt;}
.ya3_c00250{bottom:166.974864pt;}
.ya5_c00250{bottom:166.975387pt;}
.ya4_c00250{bottom:166.975488pt;}
.ya7_c00250{bottom:166.975680pt;}
.ya6_c00250{bottom:166.975781pt;}
.ya8_c00250{bottom:166.975915pt;}
.yad_c00250{bottom:166.976171pt;}
.ya9_c00250{bottom:166.976507pt;}
.yae_c00250{bottom:166.976619pt;}
.yac_c00250{bottom:166.976800pt;}
.yaa_c00250{bottom:166.976811pt;}
.yab_c00250{bottom:166.977296pt;}
.y9a_c00250{bottom:187.867323pt;}
.y9e_c00250{bottom:187.867621pt;}
.y9d_c00250{bottom:187.867744pt;}
.y98_c00250{bottom:187.867792pt;}
.ya0_c00250{bottom:187.867840pt;}
.y99_c00250{bottom:187.867888pt;}
.y9b_c00250{bottom:187.867893pt;}
.y9f_c00250{bottom:187.868123pt;}
.ya2_c00250{bottom:187.868160pt;}
.y9c_c00250{bottom:187.868235pt;}
.ya1_c00250{bottom:187.868501pt;}
.y95_c00250{bottom:207.921493pt;}
.y96_c00250{bottom:207.921712pt;}
.y94_c00250{bottom:207.921792pt;}
.y8d_c00250{bottom:207.921819pt;}
.y8e_c00250{bottom:207.921968pt;}
.y97_c00250{bottom:207.922027pt;}
.y91_c00250{bottom:207.922048pt;}
.y8f_c00250{bottom:207.922203pt;}
.y93_c00250{bottom:207.922341pt;}
.y90_c00250{bottom:207.922400pt;}
.y92_c00250{bottom:207.922677pt;}
.y8c_c00250{bottom:228.639259pt;}
.y8a_c00250{bottom:228.639579pt;}
.y8b_c00250{bottom:228.639920pt;}
.y89_c00250{bottom:228.640213pt;}
.y88_c00250{bottom:228.640763pt;}
.y87_c00250{bottom:228.641184pt;}
.y86_c00250{bottom:228.641424pt;}
.y85_c00250{bottom:228.641435pt;}
.y81_c00250{bottom:248.067701pt;}
.y83_c00250{bottom:248.067963pt;}
.y82_c00250{bottom:248.067973pt;}
.y84_c00250{bottom:248.068320pt;}
.y79_c00250{bottom:248.068325pt;}
.y80_c00250{bottom:248.068373pt;}
.y7a_c00250{bottom:248.068421pt;}
.y7b_c00250{bottom:248.068816pt;}
.y7c_c00250{bottom:248.068843pt;}
.y7f_c00250{bottom:248.068885pt;}
.y7d_c00250{bottom:248.069344pt;}
.y7e_c00250{bottom:248.069488pt;}
.y72_c00250{bottom:268.783669pt;}
.y71_c00250{bottom:268.783792pt;}
.y73_c00250{bottom:268.783904pt;}
.y75_c00250{bottom:268.783947pt;}
.y74_c00250{bottom:268.783979pt;}
.y77_c00250{bottom:268.784203pt;}
.y6f_c00250{bottom:268.784315pt;}
.y70_c00250{bottom:268.784373pt;}
.y76_c00250{bottom:268.784379pt;}
.y78_c00250{bottom:268.784485pt;}
.y6e_c00250{bottom:268.784651pt;}
.y6d_c00250{bottom:286.294912pt;}
.y6c_c00250{bottom:286.817163pt;}
.y6b_c00250{bottom:287.396085pt;}
.y6a_c00250{bottom:287.759344pt;}
.y69_c00250{bottom:287.964539pt;}
.y68_c00250{bottom:288.104389pt;}
.y67_c00250{bottom:288.723120pt;}
.y66_c00250{bottom:289.055664pt;}
.y65_c00250{bottom:289.612768pt;}
.y64_c00250{bottom:290.025499pt;}
.y63_c00250{bottom:290.676213pt;}
.y62_c00250{bottom:290.865600pt;}
.y5d_c00250{bottom:309.751451pt;}
.y5b_c00250{bottom:309.751637pt;}
.y61_c00250{bottom:309.751707pt;}
.y5c_c00250{bottom:309.751765pt;}
.y5e_c00250{bottom:309.751792pt;}
.y5a_c00250{bottom:309.751989pt;}
.y5f_c00250{bottom:309.752027pt;}
.y60_c00250{bottom:309.752171pt;}
.y58_c00250{bottom:309.752421pt;}
.y59_c00250{bottom:309.752448pt;}
.y4d_c00250{bottom:329.461867pt;}
.y4e_c00250{bottom:329.462443pt;}
.y4f_c00250{bottom:329.462592pt;}
.y50_c00250{bottom:329.463040pt;}
.y51_c00250{bottom:329.463595pt;}
.y55_c00250{bottom:329.463984pt;}
.y52_c00250{bottom:329.464043pt;}
.y54_c00250{bottom:329.464565pt;}
.y56_c00250{bottom:329.464592pt;}
.y53_c00250{bottom:329.464704pt;}
.y57_c00250{bottom:329.465221pt;}
.y4c_c00250{bottom:348.749408pt;}
.y4b_c00250{bottom:349.140517pt;}
.y4a_c00250{bottom:350.339872pt;}
.y49_c00250{bottom:350.585701pt;}
.y48_c00250{bottom:350.929712pt;}
.y47_c00250{bottom:351.288165pt;}
.y46_c00250{bottom:351.542192pt;}
.y45_c00250{bottom:352.018251pt;}
.y44_c00250{bottom:352.353243pt;}
.y43_c00250{bottom:352.750208pt;}
.y42_c00250{bottom:353.052853pt;}
.y41_c00250{bottom:353.362128pt;}
.y40_c00250{bottom:354.154192pt;}
.y3f_c00250{bottom:369.003904pt;}
.y3e_c00250{bottom:369.995968pt;}
.y3d_c00250{bottom:370.233328pt;}
.y3c_c00250{bottom:370.365477pt;}
.y3b_c00250{bottom:370.646592pt;}
.y3a_c00250{bottom:370.840459pt;}
.y39_c00250{bottom:371.056475pt;}
.y38_c00250{bottom:371.151856pt;}
.y37_c00250{bottom:371.370144pt;}
.y36_c00250{bottom:371.501755pt;}
.y35_c00250{bottom:371.877248pt;}
.y34_c00250{bottom:371.992827pt;}
.y33_c00250{bottom:386.714699pt;}
.y32_c00250{bottom:387.921461pt;}
.y31_c00250{bottom:388.943141pt;}
.y30_c00250{bottom:390.350629pt;}
.y2f_c00250{bottom:391.674811pt;}
.y2d_c00250{bottom:405.012069pt;}
.y2e_c00250{bottom:405.012117pt;}
.y2a_c00250{bottom:421.390464pt;}
.y2b_c00250{bottom:421.390571pt;}
.y2c_c00250{bottom:421.390912pt;}
.y29_c00250{bottom:421.390971pt;}
.y26_c00250{bottom:490.084000pt;}
.y27_c00250{bottom:496.158928pt;}
.y28_c00250{bottom:496.285280pt;}
.y25_c00250{bottom:563.746667pt;}
.y24_c00250{bottom:584.142667pt;}
.y23_c00250{bottom:604.302667pt;}
.y22_c00250{bottom:625.136000pt;}
.y21_c00250{bottom:644.626667pt;}
.y20_c00250{bottom:665.468000pt;}
.y18_c00250{bottom:684.721333pt;}
.y19_c00250{bottom:685.248193pt;}
.y1a_c00250{bottom:685.522273pt;}
.y1b_c00250{bottom:685.721041pt;}
.y1c_c00250{bottom:685.893565pt;}
.y1d_c00250{bottom:686.226469pt;}
.y1e_c00250{bottom:686.392801pt;}
.y1f_c00250{bottom:686.900629pt;}
.y15_c00250{bottom:706.198004pt;}
.y16_c00250{bottom:707.640137pt;}
.y17_c00250{bottom:710.109427pt;}
.yd_c00250{bottom:724.798717pt;}
.ye_c00250{bottom:725.357989pt;}
.yf_c00250{bottom:726.009312pt;}
.y10_c00250{bottom:726.156343pt;}
.y11_c00250{bottom:726.411288pt;}
.y12_c00250{bottom:726.777617pt;}
.y13_c00250{bottom:726.996412pt;}
.y14_c00250{bottom:728.988748pt;}
.y7_c00250{bottom:747.342667pt;}
.y8_c00250{bottom:747.773279pt;}
.y9_c00250{bottom:747.960583pt;}
.ya_c00250{bottom:748.200805pt;}
.yb_c00250{bottom:748.982816pt;}
.yc_c00250{bottom:751.348227pt;}
.y1_c00250{bottom:767.136000pt;}
.y6_c00250{bottom:771.238667pt;}
.y2_c00250{bottom:774.118081pt;}
.y3_c00250{bottom:777.814313pt;}
.y4_c00250{bottom:780.500141pt;}
.y5_c00250{bottom:782.753392pt;}
.hd_c00250{height:26.135215pt;}
.h1b_c00250{height:42.000000pt;}
.h6_c00250{height:54.137907pt;}
.h4_c00250{height:55.071320pt;}
.h9_c00250{height:56.000000pt;}
.h18_c00250{height:56.004032pt;}
.h16_c00250{height:58.804233pt;}
.hb_c00250{height:59.733333pt;}
.h13_c00250{height:59.737634pt;}
.ha_c00250{height:60.666667pt;}
.h12_c00250{height:60.671035pt;}
.h11_c00250{height:61.604435pt;}
.h19_c00250{height:62.537836pt;}
.h15_c00250{height:63.471236pt;}
.h14_c00250{height:64.404637pt;}
.h17_c00250{height:65.338037pt;}
.h5_c00250{height:65.338854pt;}
.h3_c00250{height:66.266667pt;}
.h8_c00250{height:67.200000pt;}
.h7_c00250{height:68.136093pt;}
.hc_c00250{height:69.066667pt;}
.he_c00250{height:72.805241pt;}
.hf_c00250{height:79.339045pt;}
.h10_c00250{height:90.539851pt;}
.h2_c00250{height:100.783972pt;}
.h1a_c00250{height:112.933333pt;}
.h1_c00250{height:893.333333pt;}
.h0_c00250{height:893.466667pt;}
.w1_c00250{width:634.000000pt;}
.w0_c00250{width:634.266667pt;}
.x0_c00250{left:0.000000pt;}
.x6c_c00250{left:11.806283pt;}
.x68_c00250{left:17.037760pt;}
.x4e_c00250{left:22.800453pt;}
.x52_c00250{left:23.810475pt;}
.x51_c00250{left:25.199984pt;}
.x8f_c00250{left:26.400192pt;}
.x97_c00250{left:27.360731pt;}
.x81_c00250{left:28.319243pt;}
.x4c_c00250{left:30.285333pt;}
.x7a_c00250{left:31.438603pt;}
.x6d_c00250{left:32.918261pt;}
.x54_c00250{left:42.476032pt;}
.x90_c00250{left:45.121547pt;}
.x75_c00250{left:46.080155pt;}
.x47_c00250{left:91.920000pt;}
.x8a_c00250{left:96.244901pt;}
.xd_c00250{left:98.564793pt;}
.x1d_c00250{left:99.840000pt;}
.x3f_c00250{left:100.800000pt;}
.x59_c00250{left:103.113579pt;}
.x55_c00250{left:104.976203pt;}
.x91_c00250{left:106.566395pt;}
.x4f_c00250{left:118.327547pt;}
.x24_c00250{left:127.200000pt;}
.x8b_c00250{left:128.646907pt;}
.x98_c00250{left:129.848832pt;}
.x5a_c00250{left:131.237339pt;}
.x1e_c00250{left:132.480000pt;}
.x37_c00250{left:133.920000pt;}
.x2d_c00250{left:138.000000pt;}
.x1_c00250{left:139.368000pt;}
.x92_c00250{left:143.048976pt;}
.x7b_c00250{left:147.607323pt;}
.x8c_c00250{left:148.808469pt;}
.x6e_c00250{left:151.105371pt;}
.x99_c00250{left:153.610923pt;}
.xe_c00250{left:154.510977pt;}
.x53_c00250{left:156.274768pt;}
.x17_c00250{left:157.340000pt;}
.x2e_c00250{left:159.600000pt;}
.x38_c00250{left:162.720000pt;}
.x69_c00250{left:166.327264pt;}
.x60_c00250{left:169.448549pt;}
.x40_c00250{left:178.800000pt;}
.x39_c00250{left:180.960000pt;}
.x25_c00250{left:185.280000pt;}
.x76_c00250{left:186.491045pt;}
.x18_c00250{left:187.793333pt;}
.x48_c00250{left:191.040000pt;}
.x93_c00250{left:192.492096pt;}
.x1f_c00250{left:193.440000pt;}
.x5b_c00250{left:194.842891pt;}
.x85_c00250{left:197.532203pt;}
.x2f_c00250{left:198.720000pt;}
.x61_c00250{left:204.490923pt;}
.x20_c00250{left:207.840000pt;}
.x7_c00250{left:210.389333pt;}
.x6f_c00250{left:213.028971pt;}
.x41_c00250{left:214.080000pt;}
.x26_c00250{left:215.280000pt;}
.x15_c00250{left:218.566839pt;}
.xf_c00250{left:219.692192pt;}
.x30_c00250{left:221.520000pt;}
.x49_c00250{left:223.440000pt;}
.x5c_c00250{left:225.268624pt;}
.x19_c00250{left:229.048000pt;}
.x10_c00250{left:234.387431pt;}
.x9a_c00250{left:239.057893pt;}
.x8_c00250{left:243.513333pt;}
.x42_c00250{left:246.000000pt;}
.x21_c00250{left:247.440000pt;}
.x62_c00250{left:248.654608pt;}
.x70_c00250{left:249.992949pt;}
.x82_c00250{left:251.295355pt;}
.x77_c00250{left:254.415488pt;}
.x9_c00250{left:257.921333pt;}
.x11_c00250{left:259.845752pt;}
.x1a_c00250{left:266.037333pt;}
.x43_c00250{left:268.080000pt;}
.x3a_c00250{left:270.720000pt;}
.x83_c00250{left:271.696965pt;}
.x9b_c00250{left:274.820379pt;}
.xa_c00250{left:276.400000pt;}
.x63_c00250{left:277.696117pt;}
.x7c_c00250{left:280.337093pt;}
.x22_c00250{left:282.480000pt;}
.x86_c00250{left:283.457904pt;}
.x1b_c00250{left:284.518667pt;}
.x27_c00250{left:285.600000pt;}
.x4a_c00250{left:290.880000pt;}
.x9c_c00250{left:293.061669pt;}
.x56_c00250{left:294.438448pt;}
.x12_c00250{left:296.539191pt;}
.x44_c00250{left:298.320000pt;}
.x7d_c00250{left:300.018592pt;}
.x6a_c00250{left:303.137627pt;}
.x3b_c00250{left:305.280000pt;}
.x2_c00250{left:309.492372pt;}
.x4b_c00250{left:311.760000pt;}
.x64_c00250{left:312.978523pt;}
.x31_c00250{left:314.160000pt;}
.x57_c00250{left:316.541883pt;}
.x13_c00250{left:318.396040pt;}
.x28_c00250{left:322.560000pt;}
.x5d_c00250{left:324.139920pt;}
.x3c_c00250{left:326.160000pt;}
.x45_c00250{left:327.120000pt;}
.x16_c00250{left:329.500172pt;}
.x23_c00250{left:330.720000pt;}
.x6b_c00250{left:331.939104pt;}
.x71_c00250{left:334.243515pt;}
.xb_c00250{left:336.554667pt;}
.x78_c00250{left:337.460773pt;}
.x1c_c00250{left:340.944000pt;}
.x8d_c00250{left:343.943232pt;}
.x46_c00250{left:346.080000pt;}
.x32_c00250{left:347.760000pt;}
.x94_c00250{left:348.982608pt;}
.x65_c00250{left:351.861456pt;}
.x58_c00250{left:356.103760pt;}
.x72_c00250{left:357.038592pt;}
.x7e_c00250{left:358.823072pt;}
.x79_c00250{left:359.782656pt;}
.x3d_c00250{left:363.360000pt;}
.x84_c00250{left:367.464091pt;}
.x87_c00250{left:373.224165pt;}
.x29_c00250{left:375.120000pt;}
.x5e_c00250{left:377.668037pt;}
.x8e_c00250{left:379.225637pt;}
.x7f_c00250{left:388.104629pt;}
.x33_c00250{left:390.720000pt;}
.x88_c00250{left:393.865808pt;}
.x2a_c00250{left:395.520000pt;}
.x73_c00250{left:397.332752pt;}
.x3_c00250{left:399.554220pt;}
.x66_c00250{left:402.264720pt;}
.x3e_c00250{left:408.720000pt;}
.x9d_c00250{left:414.509824pt;}
.x2b_c00250{left:416.160000pt;}
.x34_c00250{left:431.760000pt;}
.x67_c00250{left:438.987333pt;}
.xa0_c00250{left:454.080000pt;}
.x74_c00250{left:461.660960pt;}
.x4_c00250{left:464.996712pt;}
.x2c_c00250{left:474.480000pt;}
.x5f_c00250{left:486.640784pt;}
.x95_c00250{left:490.353643pt;}
.x9e_c00250{left:504.996181pt;}
.x14_c00250{left:517.609139pt;}
.xc_c00250{left:518.509333pt;}
.x5_c00250{left:519.899088pt;}
.x35_c00250{left:521.040000pt;}
.x50_c00250{left:522.756437pt;}
.x6_c00250{left:529.920000pt;}
.x96_c00250{left:531.396880pt;}
.x89_c00250{left:532.356411pt;}
.x36_c00250{left:535.920000pt;}
.x80_c00250{left:541.956107pt;}
.x9f_c00250{left:544.839259pt;}
.x4d_c00250{left:547.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m5e_c00251{transform:matrix(0.011924,-0.000119,0.002500,0.249988,0,0);-ms-transform:matrix(0.011924,-0.000119,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011924,-0.000119,0.002500,0.249988,0,0);}
.ma1_c00251{transform:matrix(0.111424,-0.001114,0.002500,0.249988,0,0);-ms-transform:matrix(0.111424,-0.001114,0.002500,0.249988,0,0);-webkit-transform:matrix(0.111424,-0.001114,0.002500,0.249988,0,0);}
.m19_c00251{transform:matrix(0.119278,-0.002028,0.004249,0.249964,0,0);-ms-transform:matrix(0.119278,-0.002028,0.004249,0.249964,0,0);-webkit-transform:matrix(0.119278,-0.002028,0.004249,0.249964,0,0);}
.m5a_c00251{transform:matrix(0.119984,-0.001200,0.002500,0.249988,0,0);-ms-transform:matrix(0.119984,-0.001200,0.002500,0.249988,0,0);-webkit-transform:matrix(0.119984,-0.001200,0.002500,0.249988,0,0);}
.mb1_c00251{transform:matrix(0.129104,-0.001291,0.002500,0.249988,0,0);-ms-transform:matrix(0.129104,-0.001291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.129104,-0.001291,0.002500,0.249988,0,0);}
.m7e_c00251{transform:matrix(0.140508,-0.001405,0.002500,0.249988,0,0);-ms-transform:matrix(0.140508,-0.001405,0.002500,0.249988,0,0);-webkit-transform:matrix(0.140508,-0.001405,0.002500,0.249988,0,0);}
.maf_c00251{transform:matrix(0.142133,-0.001421,0.002500,0.249988,0,0);-ms-transform:matrix(0.142133,-0.001421,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142133,-0.001421,0.002500,0.249988,0,0);}
.m1c_c00251{transform:matrix(0.145949,-0.002481,0.004249,0.249964,0,0);-ms-transform:matrix(0.145949,-0.002481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145949,-0.002481,0.004249,0.249964,0,0);}
.mc_c00251{transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);-ms-transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);}
.m83_c00251{transform:matrix(0.150937,-0.001509,0.002500,0.249988,0,0);-ms-transform:matrix(0.150937,-0.001509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150937,-0.001509,0.002500,0.249988,0,0);}
.mad_c00251{transform:matrix(0.151857,-0.001519,0.002500,0.249988,0,0);-ms-transform:matrix(0.151857,-0.001519,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151857,-0.001519,0.002500,0.249988,0,0);}
.m66_c00251{transform:matrix(0.153857,-0.001539,0.002500,0.249988,0,0);-ms-transform:matrix(0.153857,-0.001539,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153857,-0.001539,0.002500,0.249988,0,0);}
.m37_c00251{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);}
.m86_c00251{transform:matrix(0.158732,-0.001587,0.002500,0.249988,0,0);-ms-transform:matrix(0.158732,-0.001587,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158732,-0.001587,0.002500,0.249988,0,0);}
.m76_c00251{transform:matrix(0.160202,-0.001602,0.002500,0.249988,0,0);-ms-transform:matrix(0.160202,-0.001602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160202,-0.001602,0.002500,0.249988,0,0);}
.maa_c00251{transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);-ms-transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);}
.ma9_c00251{transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);-ms-transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);}
.m68_c00251{transform:matrix(0.164177,-0.001642,0.002500,0.249988,0,0);-ms-transform:matrix(0.164177,-0.001642,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164177,-0.001642,0.002500,0.249988,0,0);}
.m3c_c00251{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);}
.mc6_c00251{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);}
.m22_c00251{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);}
.m79_c00251{transform:matrix(0.168317,-0.001683,0.002500,0.249988,0,0);-ms-transform:matrix(0.168317,-0.001683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168317,-0.001683,0.002500,0.249988,0,0);}
.ma2_c00251{transform:matrix(0.168692,-0.001687,0.002500,0.249988,0,0);-ms-transform:matrix(0.168692,-0.001687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168692,-0.001687,0.002500,0.249988,0,0);}
.m16_c00251{transform:matrix(0.168861,-0.002871,0.004249,0.249964,0,0);-ms-transform:matrix(0.168861,-0.002871,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168861,-0.002871,0.004249,0.249964,0,0);}
.m1d_c00251{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);}
.m98_c00251{transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);-ms-transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);}
.m1_c00251{transform:matrix(0.170375,-0.002896,0.004249,0.249964,0,0);-ms-transform:matrix(0.170375,-0.002896,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170375,-0.002896,0.004249,0.249964,0,0);}
.m60_c00251{transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);}
.mb0_c00251{transform:matrix(0.171391,-0.001714,0.002500,0.249988,0,0);-ms-transform:matrix(0.171391,-0.001714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171391,-0.001714,0.002500,0.249988,0,0);}
.m27_c00251{transform:matrix(0.172315,-0.002929,0.004249,0.249964,0,0);-ms-transform:matrix(0.172315,-0.002929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172315,-0.002929,0.004249,0.249964,0,0);}
.m6d_c00251{transform:matrix(0.172726,-0.001727,0.002500,0.249988,0,0);-ms-transform:matrix(0.172726,-0.001727,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172726,-0.001727,0.002500,0.249988,0,0);}
.m3b_c00251{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);}
.m95_c00251{transform:matrix(0.173781,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173781,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173781,-0.001738,0.002500,0.249988,0,0);}
.md3_c00251{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);}
.m8b_c00251{transform:matrix(0.175426,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175426,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175426,-0.001754,0.002500,0.249988,0,0);}
.m46_c00251{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);}
.m7a_c00251{transform:matrix(0.175636,-0.001756,0.002500,0.249988,0,0);-ms-transform:matrix(0.175636,-0.001756,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175636,-0.001756,0.002500,0.249988,0,0);}
.m9c_c00251{transform:matrix(0.176161,-0.001762,0.002500,0.249988,0,0);-ms-transform:matrix(0.176161,-0.001762,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176161,-0.001762,0.002500,0.249988,0,0);}
.mc0_c00251{transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);}
.m85_c00251{transform:matrix(0.177441,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177441,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177441,-0.001774,0.002500,0.249988,0,0);}
.m2_c00251{transform:matrix(0.177944,-0.003025,0.004249,0.249964,0,0);-ms-transform:matrix(0.177944,-0.003025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177944,-0.003025,0.004249,0.249964,0,0);}
.m87_c00251{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);}
.ma6_c00251{transform:matrix(0.179116,-0.001791,0.002500,0.249988,0,0);-ms-transform:matrix(0.179116,-0.001791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179116,-0.001791,0.002500,0.249988,0,0);}
.m94_c00251{transform:matrix(0.180206,-0.001802,0.002500,0.249988,0,0);-ms-transform:matrix(0.180206,-0.001802,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180206,-0.001802,0.002500,0.249988,0,0);}
.m3_c00251{transform:matrix(0.180789,-0.003073,0.004249,0.249964,0,0);-ms-transform:matrix(0.180789,-0.003073,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180789,-0.003073,0.004249,0.249964,0,0);}
.m9e_c00251{transform:matrix(0.181461,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181461,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181461,-0.001815,0.002500,0.249988,0,0);}
.m59_c00251{transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);-ms-transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181696,-0.001817,0.002500,0.249988,0,0);}
.ma4_c00251{transform:matrix(0.181841,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181841,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181841,-0.001818,0.002500,0.249988,0,0);}
.m89_c00251{transform:matrix(0.182051,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182051,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182051,-0.001821,0.002500,0.249988,0,0);}
.m3d_c00251{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);}
.m44_c00251{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);}
.m96_c00251{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);}
.me_c00251{transform:matrix(0.184843,-0.003142,0.004249,0.249964,0,0);-ms-transform:matrix(0.184843,-0.003142,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184843,-0.003142,0.004249,0.249964,0,0);}
.m6f_c00251{transform:matrix(0.185256,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185256,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185256,-0.001853,0.002500,0.249988,0,0);}
.m6a_c00251{transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);}
.m26_c00251{transform:matrix(0.186563,-0.003172,0.004249,0.249964,0,0);-ms-transform:matrix(0.186563,-0.003172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186563,-0.003172,0.004249,0.249964,0,0);}
.m4a_c00251{transform:matrix(0.187981,-0.001880,0.002500,0.249988,0,0);-ms-transform:matrix(0.187981,-0.001880,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187981,-0.001880,0.002500,0.249988,0,0);}
.mcc_c00251{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);}
.m9b_c00251{transform:matrix(0.189246,-0.001892,0.002500,0.249988,0,0);-ms-transform:matrix(0.189246,-0.001892,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189246,-0.001892,0.002500,0.249988,0,0);}
.m56_c00251{transform:matrix(0.189721,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189721,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189721,-0.001897,0.002500,0.249988,0,0);}
.m9_c00251{transform:matrix(0.190193,-0.003233,0.004249,0.249964,0,0);-ms-transform:matrix(0.190193,-0.003233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190193,-0.003233,0.004249,0.249964,0,0);}
.m92_c00251{transform:matrix(0.190260,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190260,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190260,-0.001903,0.002500,0.249988,0,0);}
.m1e_c00251{transform:matrix(0.190712,-0.003242,0.004249,0.249964,0,0);-ms-transform:matrix(0.190712,-0.003242,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190712,-0.003242,0.004249,0.249964,0,0);}
.m51_c00251{transform:matrix(0.190825,-0.001908,0.002500,0.249988,0,0);-ms-transform:matrix(0.190825,-0.001908,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190825,-0.001908,0.002500,0.249988,0,0);}
.m55_c00251{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);}
.mae_c00251{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);}
.mc5_c00251{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);}
.m12_c00251{transform:matrix(0.192337,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192337,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192337,-0.003270,0.004249,0.249964,0,0);}
.mab_c00251{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);}
.m4e_c00251{transform:matrix(0.193200,-0.001932,0.002500,0.249988,0,0);-ms-transform:matrix(0.193200,-0.001932,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193200,-0.001932,0.002500,0.249988,0,0);}
.m1b_c00251{transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);}
.m20_c00251{transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);-ms-transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);}
.m7b_c00251{transform:matrix(0.195640,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195640,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195640,-0.001956,0.002500,0.249988,0,0);}
.m8d_c00251{transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);}
.mcd_c00251{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);}
.mbc_c00251{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);}
.m73_c00251{transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);}
.m84_c00251{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);}
.m1a_c00251{transform:matrix(0.197916,-0.003365,0.004249,0.249964,0,0);-ms-transform:matrix(0.197916,-0.003365,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197916,-0.003365,0.004249,0.249964,0,0);}
.mc8_c00251{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);}
.m72_c00251{transform:matrix(0.198680,-0.001987,0.002500,0.249988,0,0);-ms-transform:matrix(0.198680,-0.001987,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198680,-0.001987,0.002500,0.249988,0,0);}
.mce_c00251{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);}
.mcf_c00251{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);}
.m6e_c00251{transform:matrix(0.199170,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199170,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199170,-0.001992,0.002500,0.249988,0,0);}
.mb2_c00251{transform:matrix(0.199250,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199250,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199250,-0.001993,0.002500,0.249988,0,0);}
.ma3_c00251{transform:matrix(0.199455,-0.001995,0.002500,0.249988,0,0);-ms-transform:matrix(0.199455,-0.001995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199455,-0.001995,0.002500,0.249988,0,0);}
.m93_c00251{transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);}
.m4f_c00251{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);}
.m7c_c00251{transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200825,-0.002008,0.002500,0.249988,0,0);}
.m82_c00251{transform:matrix(0.201020,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.201020,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201020,-0.002010,0.002500,0.249988,0,0);}
.ma_c00251{transform:matrix(0.201741,-0.003430,0.004249,0.249964,0,0);-ms-transform:matrix(0.201741,-0.003430,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201741,-0.003430,0.004249,0.249964,0,0);}
.m8c_c00251{transform:matrix(0.202225,-0.002022,0.002500,0.249988,0,0);-ms-transform:matrix(0.202225,-0.002022,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202225,-0.002022,0.002500,0.249988,0,0);}
.m74_c00251{transform:matrix(0.202295,-0.002023,0.002500,0.249988,0,0);-ms-transform:matrix(0.202295,-0.002023,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202295,-0.002023,0.002500,0.249988,0,0);}
.m4_c00251{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);}
.mb5_c00251{transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);}
.m2d_c00251{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);}
.m39_c00251{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);}
.m2a_c00251{transform:matrix(0.204006,-0.003468,0.004249,0.249964,0,0);-ms-transform:matrix(0.204006,-0.003468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204006,-0.003468,0.004249,0.249964,0,0);}
.mcb_c00251{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);}
.mc3_c00251{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.204435,-0.003475,0.004249,0.249964,0,0);-ms-transform:matrix(0.204435,-0.003475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204435,-0.003475,0.004249,0.249964,0,0);}
.m9d_c00251{transform:matrix(0.204480,-0.002045,0.002500,0.249988,0,0);-ms-transform:matrix(0.204480,-0.002045,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204480,-0.002045,0.002500,0.249988,0,0);}
.md_c00251{transform:matrix(0.204695,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204695,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204695,-0.003480,0.004249,0.249964,0,0);}
.m5c_c00251{transform:matrix(0.204795,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204795,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204795,-0.002048,0.002500,0.249988,0,0);}
.m91_c00251{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);}
.m4c_c00251{transform:matrix(0.205290,-0.002053,0.002500,0.249988,0,0);-ms-transform:matrix(0.205290,-0.002053,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205290,-0.002053,0.002500,0.249988,0,0);}
.m75_c00251{transform:matrix(0.205345,-0.002053,0.002500,0.249988,0,0);-ms-transform:matrix(0.205345,-0.002053,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205345,-0.002053,0.002500,0.249988,0,0);}
.m8a_c00251{transform:matrix(0.205495,-0.002055,0.002500,0.249988,0,0);-ms-transform:matrix(0.205495,-0.002055,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205495,-0.002055,0.002500,0.249988,0,0);}
.m71_c00251{transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);-ms-transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);}
.m40_c00251{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);}
.m2b_c00251{transform:matrix(0.206255,-0.003506,0.004249,0.249964,0,0);-ms-transform:matrix(0.206255,-0.003506,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206255,-0.003506,0.004249,0.249964,0,0);}
.m4b_c00251{transform:matrix(0.207550,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207550,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207550,-0.002075,0.002500,0.249988,0,0);}
.m70_c00251{transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);-ms-transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);}
.m24_c00251{transform:matrix(0.209415,-0.003560,0.004249,0.249964,0,0);-ms-transform:matrix(0.209415,-0.003560,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209415,-0.003560,0.004249,0.249964,0,0);}
.m61_c00251{transform:matrix(0.209420,-0.002094,0.002500,0.249988,0,0);-ms-transform:matrix(0.209420,-0.002094,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209420,-0.002094,0.002500,0.249988,0,0);}
.m43_c00251{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);}
.m3e_c00251{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);}
.m1f_c00251{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);}
.m0_c00251{transform:matrix(0.211669,-0.003598,0.004249,0.249964,0,0);-ms-transform:matrix(0.211669,-0.003598,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211669,-0.003598,0.004249,0.249964,0,0);}
.ma7_c00251{transform:matrix(0.212104,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212104,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212104,-0.002121,0.002500,0.249988,0,0);}
.m15_c00251{transform:matrix(0.212129,-0.003606,0.004249,0.249964,0,0);-ms-transform:matrix(0.212129,-0.003606,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212129,-0.003606,0.004249,0.249964,0,0);}
.mc1_c00251{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m57_c00251{transform:matrix(0.212514,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212514,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212514,-0.002125,0.002500,0.249988,0,0);}
.m45_c00251{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_c00251{transform:matrix(0.213989,-0.002140,0.002500,0.249988,0,0);-ms-transform:matrix(0.213989,-0.002140,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213989,-0.002140,0.002500,0.249988,0,0);}
.mb9_c00251{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);}
.m41_c00251{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);}
.mba_c00251{transform:matrix(0.214684,-0.002147,0.002500,0.249988,0,0);-ms-transform:matrix(0.214684,-0.002147,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214684,-0.002147,0.002500,0.249988,0,0);}
.m29_c00251{transform:matrix(0.214729,-0.003650,0.004249,0.249964,0,0);-ms-transform:matrix(0.214729,-0.003650,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214729,-0.003650,0.004249,0.249964,0,0);}
.m11_c00251{transform:matrix(0.214789,-0.003651,0.004249,0.249964,0,0);-ms-transform:matrix(0.214789,-0.003651,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214789,-0.003651,0.004249,0.249964,0,0);}
.m53_c00251{transform:matrix(0.216109,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216109,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216109,-0.002161,0.002500,0.249988,0,0);}
.mb3_c00251{transform:matrix(0.216649,-0.002166,0.002500,0.249988,0,0);-ms-transform:matrix(0.216649,-0.002166,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216649,-0.002166,0.002500,0.249988,0,0);}
.mb4_c00251{transform:matrix(0.217394,-0.002174,0.002500,0.249988,0,0);-ms-transform:matrix(0.217394,-0.002174,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217394,-0.002174,0.002500,0.249988,0,0);}
.m25_c00251{transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);}
.m30_c00251{transform:matrix(0.217844,-0.003703,0.004249,0.249964,0,0);-ms-transform:matrix(0.217844,-0.003703,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217844,-0.003703,0.004249,0.249964,0,0);}
.m9f_c00251{transform:matrix(0.218269,-0.002183,0.002500,0.249988,0,0);-ms-transform:matrix(0.218269,-0.002183,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218269,-0.002183,0.002500,0.249988,0,0);}
.ma5_c00251{transform:matrix(0.218479,-0.002185,0.002500,0.249988,0,0);-ms-transform:matrix(0.218479,-0.002185,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218479,-0.002185,0.002500,0.249988,0,0);}
.m14_c00251{transform:matrix(0.218868,-0.003721,0.004249,0.249964,0,0);-ms-transform:matrix(0.218868,-0.003721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218868,-0.003721,0.004249,0.249964,0,0);}
.m64_c00251{transform:matrix(0.219849,-0.002198,0.002500,0.249988,0,0);-ms-transform:matrix(0.219849,-0.002198,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219849,-0.002198,0.002500,0.249988,0,0);}
.m7d_c00251{transform:matrix(0.220279,-0.002203,0.002500,0.249988,0,0);-ms-transform:matrix(0.220279,-0.002203,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220279,-0.002203,0.002500,0.249988,0,0);}
.m21_c00251{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);}
.m52_c00251{transform:matrix(0.220859,-0.002209,0.002500,0.249988,0,0);-ms-transform:matrix(0.220859,-0.002209,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220859,-0.002209,0.002500,0.249988,0,0);}
.md0_c00251{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);}
.m77_c00251{transform:matrix(0.221824,-0.002218,0.002500,0.249988,0,0);-ms-transform:matrix(0.221824,-0.002218,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221824,-0.002218,0.002500,0.249988,0,0);}
.m69_c00251{transform:matrix(0.222244,-0.002222,0.002500,0.249988,0,0);-ms-transform:matrix(0.222244,-0.002222,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222244,-0.002222,0.002500,0.249988,0,0);}
.m33_c00251{transform:matrix(0.222268,-0.003779,0.004249,0.249964,0,0);-ms-transform:matrix(0.222268,-0.003779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222268,-0.003779,0.004249,0.249964,0,0);}
.m38_c00251{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);}
.m54_c00251{transform:matrix(0.223044,-0.002230,0.002500,0.249988,0,0);-ms-transform:matrix(0.223044,-0.002230,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223044,-0.002230,0.002500,0.249988,0,0);}
.md1_c00251{transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);}
.mac_c00251{transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);-ms-transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);}
.m78_c00251{transform:matrix(0.223779,-0.002238,0.002500,0.249988,0,0);-ms-transform:matrix(0.223779,-0.002238,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223779,-0.002238,0.002500,0.249988,0,0);}
.md2_c00251{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.224773,-0.003821,0.004249,0.249964,0,0);-ms-transform:matrix(0.224773,-0.003821,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224773,-0.003821,0.004249,0.249964,0,0);}
.m6b_c00251{transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);-ms-transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);}
.m10_c00251{transform:matrix(0.227357,-0.003865,0.004249,0.249964,0,0);-ms-transform:matrix(0.227357,-0.003865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227357,-0.003865,0.004249,0.249964,0,0);}
.mbf_c00251{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);}
.m6c_c00251{transform:matrix(0.228014,-0.002280,0.002500,0.249988,0,0);-ms-transform:matrix(0.228014,-0.002280,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228014,-0.002280,0.002500,0.249988,0,0);}
.m5d_c00251{transform:matrix(0.228029,-0.002280,0.002500,0.249988,0,0);-ms-transform:matrix(0.228029,-0.002280,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228029,-0.002280,0.002500,0.249988,0,0);}
.m8e_c00251{transform:matrix(0.228734,-0.002287,0.002500,0.249988,0,0);-ms-transform:matrix(0.228734,-0.002287,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228734,-0.002287,0.002500,0.249988,0,0);}
.m62_c00251{transform:matrix(0.229169,-0.002292,0.002500,0.249988,0,0);-ms-transform:matrix(0.229169,-0.002292,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229169,-0.002292,0.002500,0.249988,0,0);}
.mb8_c00251{transform:matrix(0.229364,-0.002294,0.002500,0.249988,0,0);-ms-transform:matrix(0.229364,-0.002294,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229364,-0.002294,0.002500,0.249988,0,0);}
.mc2_c00251{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);}
.mca_c00251{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);}
.m65_c00251{transform:matrix(0.230608,-0.002306,0.002500,0.249988,0,0);-ms-transform:matrix(0.230608,-0.002306,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230608,-0.002306,0.002500,0.249988,0,0);}
.m2e_c00251{transform:matrix(0.231122,-0.003929,0.004249,0.249964,0,0);-ms-transform:matrix(0.231122,-0.003929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231122,-0.003929,0.004249,0.249964,0,0);}
.m8f_c00251{transform:matrix(0.231268,-0.002313,0.002500,0.249988,0,0);-ms-transform:matrix(0.231268,-0.002313,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231268,-0.002313,0.002500,0.249988,0,0);}
.m3f_c00251{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);}
.m7_c00251{transform:matrix(0.233041,-0.003962,0.004249,0.249964,0,0);-ms-transform:matrix(0.233041,-0.003962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233041,-0.003962,0.004249,0.249964,0,0);}
.m42_c00251{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);}
.mc9_c00251{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);}
.m36_c00251{transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);}
.mb6_c00251{transform:matrix(0.235623,-0.002356,0.002500,0.249988,0,0);-ms-transform:matrix(0.235623,-0.002356,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235623,-0.002356,0.002500,0.249988,0,0);}
.mbe_c00251{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);}
.m4d_c00251{transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);-ms-transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236588,-0.002366,0.002500,0.249988,0,0);}
.m2c_c00251{transform:matrix(0.236781,-0.004025,0.004249,0.249964,0,0);-ms-transform:matrix(0.236781,-0.004025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236781,-0.004025,0.004249,0.249964,0,0);}
.mc7_c00251{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);}
.mb_c00251{transform:matrix(0.237041,-0.004030,0.004249,0.249964,0,0);-ms-transform:matrix(0.237041,-0.004030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237041,-0.004030,0.004249,0.249964,0,0);}
.m97_c00251{transform:matrix(0.237043,-0.002370,0.002500,0.249988,0,0);-ms-transform:matrix(0.237043,-0.002370,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237043,-0.002370,0.002500,0.249988,0,0);}
.m67_c00251{transform:matrix(0.238863,-0.002389,0.002500,0.249988,0,0);-ms-transform:matrix(0.238863,-0.002389,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238863,-0.002389,0.002500,0.249988,0,0);}
.m17_c00251{transform:matrix(0.241680,-0.004109,0.004249,0.249964,0,0);-ms-transform:matrix(0.241680,-0.004109,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241680,-0.004109,0.004249,0.249964,0,0);}
.m18_c00251{transform:matrix(0.241760,-0.004110,0.004249,0.249964,0,0);-ms-transform:matrix(0.241760,-0.004110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241760,-0.004110,0.004249,0.249964,0,0);}
.m50_c00251{transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);-ms-transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);}
.m80_c00251{transform:matrix(0.243633,-0.002436,0.002500,0.249988,0,0);-ms-transform:matrix(0.243633,-0.002436,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243633,-0.002436,0.002500,0.249988,0,0);}
.mf_c00251{transform:matrix(0.244975,-0.004165,0.004249,0.249964,0,0);-ms-transform:matrix(0.244975,-0.004165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244975,-0.004165,0.004249,0.249964,0,0);}
.m5_c00251{transform:matrix(0.245100,-0.004167,0.004249,0.249964,0,0);-ms-transform:matrix(0.245100,-0.004167,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245100,-0.004167,0.004249,0.249964,0,0);}
.mbd_c00251{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);}
.m6_c00251{transform:matrix(0.248799,-0.004230,0.004249,0.249964,0,0);-ms-transform:matrix(0.248799,-0.004230,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248799,-0.004230,0.004249,0.249964,0,0);}
.ma8_c00251{transform:matrix(0.248863,-0.002489,0.002500,0.249988,0,0);-ms-transform:matrix(0.248863,-0.002489,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248863,-0.002489,0.002500,0.249988,0,0);}
.m9a_c00251{transform:matrix(0.249083,-0.002491,0.002500,0.249988,0,0);-ms-transform:matrix(0.249083,-0.002491,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249083,-0.002491,0.002500,0.249988,0,0);}
.m23_c00251{transform:matrix(0.253773,-0.004314,0.004249,0.249964,0,0);-ms-transform:matrix(0.253773,-0.004314,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253773,-0.004314,0.004249,0.249964,0,0);}
.m5f_c00251{transform:matrix(0.255627,-0.002556,0.002500,0.249988,0,0);-ms-transform:matrix(0.255627,-0.002556,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255627,-0.002556,0.002500,0.249988,0,0);}
.m7f_c00251{transform:matrix(0.256322,-0.002563,0.002500,0.249988,0,0);-ms-transform:matrix(0.256322,-0.002563,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256322,-0.002563,0.002500,0.249988,0,0);}
.m2f_c00251{transform:matrix(0.261537,-0.004446,0.004249,0.249964,0,0);-ms-transform:matrix(0.261537,-0.004446,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261537,-0.004446,0.004249,0.249964,0,0);}
.mc4_c00251{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);}
.ma0_c00251{transform:matrix(0.262377,-0.002624,0.002500,0.249988,0,0);-ms-transform:matrix(0.262377,-0.002624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262377,-0.002624,0.002500,0.249988,0,0);}
.m49_c00251{transform:matrix(0.267617,-0.002676,0.002500,0.249988,0,0);-ms-transform:matrix(0.267617,-0.002676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267617,-0.002676,0.002500,0.249988,0,0);}
.m58_c00251{transform:matrix(0.272411,-0.002724,0.002500,0.249988,0,0);-ms-transform:matrix(0.272411,-0.002724,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272411,-0.002724,0.002500,0.249988,0,0);}
.m32_c00251{transform:matrix(0.278640,-0.004737,0.004249,0.249964,0,0);-ms-transform:matrix(0.278640,-0.004737,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278640,-0.004737,0.004249,0.249964,0,0);}
.md4_c00251{transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);}
.mb7_c00251{transform:matrix(0.283676,-0.002837,0.002500,0.249988,0,0);-ms-transform:matrix(0.283676,-0.002837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.283676,-0.002837,0.002500,0.249988,0,0);}
.m88_c00251{transform:matrix(0.285396,-0.002854,0.002500,0.249988,0,0);-ms-transform:matrix(0.285396,-0.002854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285396,-0.002854,0.002500,0.249988,0,0);}
.m99_c00251{transform:matrix(0.300925,-0.003009,0.002500,0.249988,0,0);-ms-transform:matrix(0.300925,-0.003009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.300925,-0.003009,0.002500,0.249988,0,0);}
.m3a_c00251{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);}
.m47_c00251{transform:matrix(0.319840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319840,0.000000,0.000000,0.250000,0,0);}
.m90_c00251{transform:matrix(0.326004,-0.003260,0.002500,0.249988,0,0);-ms-transform:matrix(0.326004,-0.003260,0.002500,0.249988,0,0);-webkit-transform:matrix(0.326004,-0.003260,0.002500,0.249988,0,0);}
.m34_c00251{transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328655,0.000000,0.000000,0.250000,0,0);}
.md5_c00251{transform:matrix(0.342635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342635,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.349360,-0.005939,0.004249,0.249964,0,0);-ms-transform:matrix(0.349360,-0.005939,0.004249,0.249964,0,0);-webkit-transform:matrix(0.349360,-0.005939,0.004249,0.249964,0,0);}
.m81_c00251{transform:matrix(0.356807,-0.003568,0.002500,0.249988,0,0);-ms-transform:matrix(0.356807,-0.003568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.356807,-0.003568,0.002500,0.249988,0,0);}
.m35_c00251{transform:matrix(0.367165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367165,0.000000,0.000000,0.250000,0,0);}
.m5b_c00251{transform:matrix(0.370496,-0.003705,0.002500,0.249988,0,0);-ms-transform:matrix(0.370496,-0.003705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.370496,-0.003705,0.002500,0.249988,0,0);}
.mbb_c00251{transform:matrix(0.383175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383175,0.000000,0.000000,0.250000,0,0);}
.m48_c00251{transform:matrix(0.406465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406465,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.446530,-0.007591,0.004249,0.249964,0,0);-ms-transform:matrix(0.446530,-0.007591,0.004249,0.249964,0,0);-webkit-transform:matrix(0.446530,-0.007591,0.004249,0.249964,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;}
.fs12_c00251{font-size:16.800000px;}
.fs11_c00251{font-size:49.350000px;}
.fs13_c00251{font-size:55.650000px;}
.fs4_c00251{font-size:59.858648px;}
.fs8_c00251{font-size:60.903045px;}
.fs2_c00251{font-size:60.908799px;}
.fs10_c00251{font-size:61.953097px;}
.fs0_c00251{font-size:63.009103px;}
.fsb_c00251{font-size:64.053202px;}
.fs9_c00251{font-size:66.153307px;}
.fsc_c00251{font-size:67.203360px;}
.fs6_c00251{font-size:68.250000px;}
.fs1_c00251{font-size:68.259861px;}
.fse_c00251{font-size:69.303465px;}
.fs5_c00251{font-size:70.350000px;}
.fsd_c00251{font-size:70.353517px;}
.fs3_c00251{font-size:71.410317px;}
.fs7_c00251{font-size:73.500000px;}
.fsf_c00251{font-size:73.503675px;}
.fsa_c00251{font-size:127.056352px;}
.y0_c00251{bottom:0.000000px;}
.ybe_c00251{bottom:164.521500px;}
.ybd_c00251{bottom:220.167000px;}
.ybc_c00251{bottom:225.990000px;}
.ybb_c00251{bottom:238.108500px;}
.yba_c00251{bottom:255.579000px;}
.yb3_c00251{bottom:310.835940px;}
.yb2_c00251{bottom:310.835955px;}
.yb9_c00251{bottom:310.836105px;}
.yb8_c00251{bottom:310.836420px;}
.yb6_c00251{bottom:310.836465px;}
.yb4_c00251{bottom:310.836525px;}
.yb7_c00251{bottom:310.836750px;}
.yb5_c00251{bottom:310.836810px;}
.yb1_c00251{bottom:333.492585px;}
.yb0_c00251{bottom:333.493200px;}
.yaf_c00251{bottom:333.493515px;}
.yad_c00251{bottom:333.493560px;}
.yae_c00251{bottom:333.493830px;}
.yaa_c00251{bottom:333.493920px;}
.yac_c00251{bottom:333.494175px;}
.yab_c00251{bottom:333.494490px;}
.ya9_c00251{bottom:355.879035px;}
.ya8_c00251{bottom:355.879350px;}
.ya7_c00251{bottom:355.879665px;}
.ya6_c00251{bottom:355.880280px;}
.ya2_c00251{bottom:355.880340px;}
.ya1_c00251{bottom:355.880370px;}
.ya5_c00251{bottom:355.880895px;}
.ya3_c00251{bottom:355.880940px;}
.ya4_c00251{bottom:355.881525px;}
.y99_c00251{bottom:377.151735px;}
.y9a_c00251{bottom:377.478900px;}
.y9b_c00251{bottom:377.740095px;}
.y9c_c00251{bottom:378.204225px;}
.y9d_c00251{bottom:378.785415px;}
.y9e_c00251{bottom:379.696710px;}
.y9f_c00251{bottom:380.121840px;}
.ya0_c00251{bottom:380.430255px;}
.y90_c00251{bottom:399.591510px;}
.y91_c00251{bottom:400.002105px;}
.y92_c00251{bottom:400.601010px;}
.y93_c00251{bottom:400.939005px;}
.y94_c00251{bottom:401.446665px;}
.y95_c00251{bottom:402.062205px;}
.y96_c00251{bottom:402.564465px;}
.y97_c00251{bottom:402.812685px;}
.y98_c00251{bottom:403.155810px;}
.y88_c00251{bottom:424.827240px;}
.y87_c00251{bottom:424.827255px;}
.y89_c00251{bottom:424.827525px;}
.y8f_c00251{bottom:424.827690px;}
.y8a_c00251{bottom:424.827795px;}
.y8c_c00251{bottom:424.828065px;}
.y8e_c00251{bottom:424.828320px;}
.y8d_c00251{bottom:424.828335px;}
.y8b_c00251{bottom:424.828380px;}
.y86_c00251{bottom:447.715530px;}
.y85_c00251{bottom:447.716160px;}
.y84_c00251{bottom:447.716175px;}
.y83_c00251{bottom:447.716505px;}
.y82_c00251{bottom:447.717135px;}
.y81_c00251{bottom:447.717150px;}
.y77_c00251{bottom:468.985425px;}
.y78_c00251{bottom:469.241085px;}
.y79_c00251{bottom:469.592685px;}
.y7a_c00251{bottom:469.960380px;}
.y7b_c00251{bottom:470.491035px;}
.y7c_c00251{bottom:470.757195px;}
.y7d_c00251{bottom:471.178650px;}
.y7e_c00251{bottom:471.319620px;}
.y7f_c00251{bottom:471.596595px;}
.y80_c00251{bottom:472.062855px;}
.y6f_c00251{bottom:491.666880px;}
.y70_c00251{bottom:491.928900px;}
.y71_c00251{bottom:492.652515px;}
.y72_c00251{bottom:493.303230px;}
.y73_c00251{bottom:493.705530px;}
.y74_c00251{bottom:494.045250px;}
.y75_c00251{bottom:494.475045px;}
.y76_c00251{bottom:494.777505px;}
.y6a_c00251{bottom:516.112590px;}
.y6b_c00251{bottom:516.112875px;}
.y68_c00251{bottom:516.112935px;}
.y6e_c00251{bottom:516.113100px;}
.y69_c00251{bottom:516.113220px;}
.y6c_c00251{bottom:516.113445px;}
.y6d_c00251{bottom:516.113730px;}
.y5d_c00251{bottom:537.029235px;}
.y5e_c00251{bottom:537.122085px;}
.y5f_c00251{bottom:537.452130px;}
.y60_c00251{bottom:537.722160px;}
.y61_c00251{bottom:537.962580px;}
.y62_c00251{bottom:538.249365px;}
.y63_c00251{bottom:538.802625px;}
.y64_c00251{bottom:539.251635px;}
.y65_c00251{bottom:539.541420px;}
.y66_c00251{bottom:539.700840px;}
.y67_c00251{bottom:540.070485px;}
.y59_c00251{bottom:555.408675px;}
.y5a_c00251{bottom:557.769015px;}
.y5b_c00251{bottom:560.716740px;}
.y5c_c00251{bottom:562.136490px;}
.y50_c00251{bottom:584.009715px;}
.y51_c00251{bottom:584.267385px;}
.y52_c00251{bottom:584.581290px;}
.y53_c00251{bottom:585.081960px;}
.y54_c00251{bottom:585.585330px;}
.y55_c00251{bottom:585.811035px;}
.y56_c00251{bottom:586.127055px;}
.y57_c00251{bottom:586.285035px;}
.y58_c00251{bottom:586.741305px;}
.y48_c00251{bottom:606.421500px;}
.y49_c00251{bottom:607.253145px;}
.y4a_c00251{bottom:607.601460px;}
.y4b_c00251{bottom:608.338260px;}
.y4c_c00251{bottom:608.683920px;}
.y4d_c00251{bottom:609.159390px;}
.y4e_c00251{bottom:609.577410px;}
.y4f_c00251{bottom:609.893535px;}
.y47_c00251{bottom:631.285500px;}
.y40_c00251{bottom:651.240000px;}
.y41_c00251{bottom:651.960000px;}
.y42_c00251{bottom:652.311000px;}
.y43_c00251{bottom:652.513500px;}
.y44_c00251{bottom:653.142000px;}
.y45_c00251{bottom:653.445000px;}
.y46_c00251{bottom:654.019500px;}
.y36_c00251{bottom:673.651500px;}
.y37_c00251{bottom:674.290500px;}
.y38_c00251{bottom:674.665500px;}
.y39_c00251{bottom:675.226500px;}
.y3a_c00251{bottom:675.748500px;}
.y3b_c00251{bottom:675.955500px;}
.y3c_c00251{bottom:676.246500px;}
.y3d_c00251{bottom:676.707000px;}
.y3e_c00251{bottom:677.086500px;}
.y3f_c00251{bottom:677.367000px;}
.y35_c00251{bottom:699.822000px;}
.y2d_c00251{bottom:721.158525px;}
.y2e_c00251{bottom:721.790543px;}
.y2f_c00251{bottom:722.250307px;}
.y30_c00251{bottom:722.736766px;}
.y31_c00251{bottom:723.055470px;}
.y32_c00251{bottom:723.368631px;}
.y33_c00251{bottom:723.587113px;}
.y34_c00251{bottom:723.931822px;}
.y26_c00251{bottom:743.571027px;}
.y27_c00251{bottom:744.170627px;}
.y28_c00251{bottom:744.498986px;}
.y29_c00251{bottom:745.106495px;}
.y2a_c00251{bottom:745.615917px;}
.y2b_c00251{bottom:745.865511px;}
.y2c_c00251{bottom:746.501352px;}
.y1b_c00251{bottom:765.716600px;}
.y1c_c00251{bottom:766.042132px;}
.y1d_c00251{bottom:766.455640px;}
.y1e_c00251{bottom:766.947944px;}
.y1f_c00251{bottom:767.597836px;}
.y20_c00251{bottom:768.136346px;}
.y21_c00251{bottom:769.003804px;}
.y22_c00251{bottom:769.672517px;}
.y23_c00251{bottom:770.169792px;}
.y24_c00251{bottom:770.862780px;}
.y25_c00251{bottom:771.161002px;}
.y10_c00251{bottom:789.208678px;}
.y11_c00251{bottom:789.878995px;}
.y12_c00251{bottom:790.509319px;}
.y13_c00251{bottom:791.226821px;}
.y14_c00251{bottom:792.185826px;}
.y15_c00251{bottom:792.544169px;}
.y16_c00251{bottom:792.907407px;}
.y17_c00251{bottom:793.615392px;}
.y18_c00251{bottom:794.004798px;}
.y19_c00251{bottom:794.580441px;}
.y1a_c00251{bottom:795.308550px;}
.y9_c00251{bottom:813.240245px;}
.ya_c00251{bottom:813.794281px;}
.yb_c00251{bottom:814.513741px;}
.yc_c00251{bottom:815.392976px;}
.yd_c00251{bottom:815.852552px;}
.ye_c00251{bottom:816.060208px;}
.yf_c00251{bottom:816.576066px;}
.y1_c00251{bottom:834.844500px;}
.y2_c00251{bottom:835.629594px;}
.y3_c00251{bottom:835.946253px;}
.y4_c00251{bottom:836.295501px;}
.y5_c00251{bottom:836.955263px;}
.y6_c00251{bottom:837.571725px;}
.y7_c00251{bottom:838.837213px;}
.y8_c00251{bottom:839.279027px;}
.h14_c00251{height:16.800000px;}
.h13_c00251{height:49.350000px;}
.h15_c00251{height:55.650000px;}
.h6_c00251{height:59.858648px;}
.ha_c00251{height:60.903045px;}
.h4_c00251{height:60.908799px;}
.h12_c00251{height:61.953097px;}
.h2_c00251{height:63.009103px;}
.hd_c00251{height:64.053202px;}
.hb_c00251{height:66.153307px;}
.he_c00251{height:67.203360px;}
.h8_c00251{height:68.250000px;}
.h3_c00251{height:68.259861px;}
.h10_c00251{height:69.303465px;}
.h7_c00251{height:70.350000px;}
.hf_c00251{height:70.353517px;}
.h5_c00251{height:71.410317px;}
.h9_c00251{height:73.500000px;}
.h11_c00251{height:73.503675px;}
.hc_c00251{height:127.056352px;}
.h0_c00251{height:1008.450000px;}
.h1_c00251{height:1008.750000px;}
.w0_c00251{width:678.450000px;}
.w1_c00251{width:678.750000px;}
.x0_c00251{left:0.000000px;}
.x7c_c00251{left:150.390000px;}
.x9_c00251{left:163.547538px;}
.x49_c00251{left:166.378725px;}
.x7d_c00251{left:169.290000px;}
.x6e_c00251{left:170.632800px;}
.x35_c00251{left:172.390500px;}
.x1_c00251{left:174.375000px;}
.x24_c00251{left:176.457802px;}
.x4a_c00251{left:178.063965px;}
.x1a_c00251{left:194.322565px;}
.x7e_c00251{left:199.530000px;}
.x42_c00251{left:200.724825px;}
.x54_c00251{left:202.099755px;}
.x6a_c00251{left:203.994330px;}
.xa_c00251{left:206.111420px;}
.x5a_c00251{left:207.995700px;}
.x60_c00251{left:211.405635px;}
.x10_c00251{left:217.063026px;}
.x1b_c00251{left:218.646565px;}
.x2_c00251{left:220.557000px;}
.x25_c00251{left:222.584439px;}
.x61_c00251{left:228.685860px;}
.x32_c00251{left:231.543000px;}
.x74_c00251{left:233.280000px;}
.x43_c00251{left:235.565670px;}
.x3_c00251{left:239.184000px;}
.x36_c00251{left:244.465500px;}
.x2a_c00251{left:245.819503px;}
.x1c_c00251{left:247.605565px;}
.x78_c00251{left:249.210000px;}
.x7a_c00251{left:250.290000px;}
.x46_c00251{left:251.607870px;}
.x4b_c00251{left:253.072965px;}
.x75_c00251{left:254.610000px;}
.x11_c00251{left:256.435689px;}
.x4_c00251{left:259.728000px;}
.xb_c00251{left:261.495194px;}
.x5e_c00251{left:264.058530px;}
.x33_c00251{left:265.588500px;}
.x6b_c00251{left:269.926170px;}
.x55_c00251{left:274.461255px;}
.x65_c00251{left:276.031335px;}
.x71_c00251{left:277.559040px;}
.x37_c00251{left:279.631500px;}
.x4c_c00251{left:283.115565px;}
.x1d_c00251{left:285.834565px;}
.x3d_c00251{left:290.658000px;}
.x26_c00251{left:294.493309px;}
.x2b_c00251{left:296.871439px;}
.x5_c00251{left:298.537500px;}
.x38_c00251{left:299.857500px;}
.x12_c00251{left:301.289454px;}
.x7b_c00251{left:304.290000px;}
.x79_c00251{left:306.990000px;}
.x5f_c00251{left:310.230150px;}
.x1e_c00251{left:317.511565px;}
.x4d_c00251{left:318.994785px;}
.x6c_c00251{left:320.221410px;}
.x3b_c00251{left:323.730000px;}
.x76_c00251{left:326.430000px;}
.xc_c00251{left:329.101784px;}
.x27_c00251{left:333.638461px;}
.x6_c00251{left:334.800000px;}
.x31_c00251{left:337.500000px;}
.x56_c00251{left:339.532755px;}
.x7f_c00251{left:341.010000px;}
.x77_c00251{left:343.980000px;}
.x44_c00251{left:347.070780px;}
.x47_c00251{left:349.860720px;}
.x2c_c00251{left:350.905783px;}
.x28_c00251{left:352.821762px;}
.x13_c00251{left:361.231974px;}
.x39_c00251{left:362.710500px;}
.xd_c00251{left:364.432181px;}
.x72_c00251{left:365.583345px;}
.x62_c00251{left:367.203705px;}
.x1f_c00251{left:368.538565px;}
.x80_c00251{left:370.170000px;}
.x3c_c00251{left:372.600000px;}
.xe_c00251{left:380.354252px;}
.x14_c00251{left:383.634857px;}
.x2d_c00251{left:386.246077px;}
.x4e_c00251{left:388.122165px;}
.x3a_c00251{left:393.031500px;}
.x6d_c00251{left:395.824485px;}
.x48_c00251{left:397.176255px;}
.x3e_c00251{left:398.904000px;}
.x29_c00251{left:401.698077px;}
.x6f_c00251{left:404.734215px;}
.x15_c00251{left:406.325739px;}
.x20_c00251{left:407.874565px;}
.x7_c00251{left:409.240500px;}
.x57_c00251{left:413.734755px;}
.x81_c00251{left:416.070000px;}
.xf_c00251{left:420.054454px;}
.x2e_c00251{left:421.083820px;}
.x66_c00251{left:422.150835px;}
.x45_c00251{left:424.842060px;}
.x63_c00251{left:427.686750px;}
.x70_c00251{left:432.275475px;}
.x53_c00251{left:433.901115px;}
.x8_c00251{left:435.229500px;}
.x21_c00251{left:437.126065px;}
.x4f_c00251{left:444.274290px;}
.x2f_c00251{left:445.409635px;}
.x3f_c00251{left:446.451000px;}
.x82_c00251{left:449.010000px;}
.x16_c00251{left:450.531479px;}
.x58_c00251{left:456.714255px;}
.x5b_c00251{left:467.754390px;}
.x67_c00251{left:472.376835px;}
.x17_c00251{left:474.849887px;}
.x22_c00251{left:477.890065px;}
.x73_c00251{left:479.258715px;}
.x50_c00251{left:480.453510px;}
.x30_c00251{left:483.691837px;}
.x34_c00251{left:485.827500px;}
.x59_c00251{left:486.960255px;}
.x40_c00251{left:488.253000px;}
.x83_c00251{left:491.670000px;}
.x23_c00251{left:495.432565px;}
.x68_c00251{left:497.198835px;}
.x51_c00251{left:500.445915px;}
.x5c_c00251{left:502.352580px;}
.x18_c00251{left:510.829498px;}
.x41_c00251{left:519.865500px;}
.x64_c00251{left:525.432030px;}
.x69_c00251{left:531.511335px;}
.x52_c00251{left:546.561330px;}
.x19_c00251{left:556.307263px;}
.x5d_c00251{left:560.679750px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.fs12_c00251{font-size:14.933333pt;}
.fs11_c00251{font-size:43.866667pt;}
.fs13_c00251{font-size:49.466667pt;}
.fs4_c00251{font-size:53.207687pt;}
.fs8_c00251{font-size:54.136040pt;}
.fs2_c00251{font-size:54.141155pt;}
.fs10_c00251{font-size:55.069420pt;}
.fs0_c00251{font-size:56.008091pt;}
.fsb_c00251{font-size:56.936180pt;}
.fs9_c00251{font-size:58.802940pt;}
.fsc_c00251{font-size:59.736320pt;}
.fs6_c00251{font-size:60.666667pt;}
.fs1_c00251{font-size:60.675432pt;}
.fse_c00251{font-size:61.603080pt;}
.fs5_c00251{font-size:62.533333pt;}
.fsd_c00251{font-size:62.536460pt;}
.fs3_c00251{font-size:63.475837pt;}
.fs7_c00251{font-size:65.333333pt;}
.fsf_c00251{font-size:65.336600pt;}
.fsa_c00251{font-size:112.938980pt;}
.y0_c00251{bottom:0.000000pt;}
.ybe_c00251{bottom:146.241333pt;}
.ybd_c00251{bottom:195.704000pt;}
.ybc_c00251{bottom:200.880000pt;}
.ybb_c00251{bottom:211.652000pt;}
.yba_c00251{bottom:227.181333pt;}
.yb3_c00251{bottom:276.298613pt;}
.yb2_c00251{bottom:276.298627pt;}
.yb9_c00251{bottom:276.298760pt;}
.yb8_c00251{bottom:276.299040pt;}
.yb6_c00251{bottom:276.299080pt;}
.yb4_c00251{bottom:276.299133pt;}
.yb7_c00251{bottom:276.299333pt;}
.yb5_c00251{bottom:276.299387pt;}
.yb1_c00251{bottom:296.437853pt;}
.yb0_c00251{bottom:296.438400pt;}
.yaf_c00251{bottom:296.438680pt;}
.yad_c00251{bottom:296.438720pt;}
.yae_c00251{bottom:296.438960pt;}
.yaa_c00251{bottom:296.439040pt;}
.yac_c00251{bottom:296.439267pt;}
.yab_c00251{bottom:296.439547pt;}
.ya9_c00251{bottom:316.336920pt;}
.ya8_c00251{bottom:316.337200pt;}
.ya7_c00251{bottom:316.337480pt;}
.ya6_c00251{bottom:316.338027pt;}
.ya2_c00251{bottom:316.338080pt;}
.ya1_c00251{bottom:316.338107pt;}
.ya5_c00251{bottom:316.338573pt;}
.ya3_c00251{bottom:316.338613pt;}
.ya4_c00251{bottom:316.339133pt;}
.y99_c00251{bottom:335.245987pt;}
.y9a_c00251{bottom:335.536800pt;}
.y9b_c00251{bottom:335.768973pt;}
.y9c_c00251{bottom:336.181533pt;}
.y9d_c00251{bottom:336.698147pt;}
.y9e_c00251{bottom:337.508187pt;}
.y9f_c00251{bottom:337.886080pt;}
.ya0_c00251{bottom:338.160227pt;}
.y90_c00251{bottom:355.192453pt;}
.y91_c00251{bottom:355.557427pt;}
.y92_c00251{bottom:356.089787pt;}
.y93_c00251{bottom:356.390227pt;}
.y94_c00251{bottom:356.841480pt;}
.y95_c00251{bottom:357.388627pt;}
.y96_c00251{bottom:357.835080pt;}
.y97_c00251{bottom:358.055720pt;}
.y98_c00251{bottom:358.360720pt;}
.y88_c00251{bottom:377.624213pt;}
.y87_c00251{bottom:377.624227pt;}
.y89_c00251{bottom:377.624467pt;}
.y8f_c00251{bottom:377.624613pt;}
.y8a_c00251{bottom:377.624707pt;}
.y8c_c00251{bottom:377.624947pt;}
.y8e_c00251{bottom:377.625173pt;}
.y8d_c00251{bottom:377.625187pt;}
.y8b_c00251{bottom:377.625227pt;}
.y86_c00251{bottom:397.969360pt;}
.y85_c00251{bottom:397.969920pt;}
.y84_c00251{bottom:397.969933pt;}
.y83_c00251{bottom:397.970227pt;}
.y82_c00251{bottom:397.970787pt;}
.y81_c00251{bottom:397.970800pt;}
.y77_c00251{bottom:416.875933pt;}
.y78_c00251{bottom:417.103187pt;}
.y79_c00251{bottom:417.415720pt;}
.y7a_c00251{bottom:417.742560pt;}
.y7b_c00251{bottom:418.214253pt;}
.y7c_c00251{bottom:418.450840pt;}
.y7d_c00251{bottom:418.825467pt;}
.y7e_c00251{bottom:418.950773pt;}
.y7f_c00251{bottom:419.196973pt;}
.y80_c00251{bottom:419.611427pt;}
.y6f_c00251{bottom:437.037227pt;}
.y70_c00251{bottom:437.270133pt;}
.y71_c00251{bottom:437.913347pt;}
.y72_c00251{bottom:438.491760pt;}
.y73_c00251{bottom:438.849360pt;}
.y74_c00251{bottom:439.151333pt;}
.y75_c00251{bottom:439.533373pt;}
.y76_c00251{bottom:439.802227pt;}
.y6a_c00251{bottom:458.766747pt;}
.y6b_c00251{bottom:458.767000pt;}
.y68_c00251{bottom:458.767053pt;}
.y6e_c00251{bottom:458.767200pt;}
.y69_c00251{bottom:458.767307pt;}
.y6c_c00251{bottom:458.767507pt;}
.y6d_c00251{bottom:458.767760pt;}
.y5d_c00251{bottom:477.359320pt;}
.y5e_c00251{bottom:477.441853pt;}
.y5f_c00251{bottom:477.735227pt;}
.y60_c00251{bottom:477.975253pt;}
.y61_c00251{bottom:478.188960pt;}
.y62_c00251{bottom:478.443880pt;}
.y63_c00251{bottom:478.935667pt;}
.y64_c00251{bottom:479.334787pt;}
.y65_c00251{bottom:479.592373pt;}
.y66_c00251{bottom:479.734080pt;}
.y67_c00251{bottom:480.062653pt;}
.y59_c00251{bottom:493.696600pt;}
.y5a_c00251{bottom:495.794680pt;}
.y5b_c00251{bottom:498.414880pt;}
.y5c_c00251{bottom:499.676880pt;}
.y50_c00251{bottom:519.119747pt;}
.y51_c00251{bottom:519.348787pt;}
.y52_c00251{bottom:519.627813pt;}
.y53_c00251{bottom:520.072853pt;}
.y54_c00251{bottom:520.520293pt;}
.y55_c00251{bottom:520.720920pt;}
.y56_c00251{bottom:521.001827pt;}
.y57_c00251{bottom:521.142253pt;}
.y58_c00251{bottom:521.547827pt;}
.y48_c00251{bottom:539.041333pt;}
.y49_c00251{bottom:539.780573pt;}
.y4a_c00251{bottom:540.090187pt;}
.y4b_c00251{bottom:540.745120pt;}
.y4c_c00251{bottom:541.052373pt;}
.y4d_c00251{bottom:541.475013pt;}
.y4e_c00251{bottom:541.846587pt;}
.y4f_c00251{bottom:542.127587pt;}
.y47_c00251{bottom:561.142667pt;}
.y40_c00251{bottom:578.880000pt;}
.y41_c00251{bottom:579.520000pt;}
.y42_c00251{bottom:579.832000pt;}
.y43_c00251{bottom:580.012000pt;}
.y44_c00251{bottom:580.570667pt;}
.y45_c00251{bottom:580.840000pt;}
.y46_c00251{bottom:581.350667pt;}
.y36_c00251{bottom:598.801333pt;}
.y37_c00251{bottom:599.369333pt;}
.y38_c00251{bottom:599.702667pt;}
.y39_c00251{bottom:600.201333pt;}
.y3a_c00251{bottom:600.665333pt;}
.y3b_c00251{bottom:600.849333pt;}
.y3c_c00251{bottom:601.108000pt;}
.y3d_c00251{bottom:601.517333pt;}
.y3e_c00251{bottom:601.854667pt;}
.y3f_c00251{bottom:602.104000pt;}
.y35_c00251{bottom:622.064000pt;}
.y2d_c00251{bottom:641.029800pt;}
.y2e_c00251{bottom:641.591593pt;}
.y2f_c00251{bottom:642.000273pt;}
.y30_c00251{bottom:642.432681pt;}
.y31_c00251{bottom:642.715973pt;}
.y32_c00251{bottom:642.994339pt;}
.y33_c00251{bottom:643.188545pt;}
.y34_c00251{bottom:643.494953pt;}
.y26_c00251{bottom:660.952024pt;}
.y27_c00251{bottom:661.485001pt;}
.y28_c00251{bottom:661.776876pt;}
.y29_c00251{bottom:662.316884pt;}
.y2a_c00251{bottom:662.769704pt;}
.y2b_c00251{bottom:662.991565pt;}
.y2c_c00251{bottom:663.556757pt;}
.y1b_c00251{bottom:680.636977pt;}
.y1c_c00251{bottom:680.926340pt;}
.y1d_c00251{bottom:681.293903pt;}
.y1e_c00251{bottom:681.731505pt;}
.y1f_c00251{bottom:682.309188pt;}
.y20_c00251{bottom:682.787863pt;}
.y21_c00251{bottom:683.558937pt;}
.y22_c00251{bottom:684.153348pt;}
.y23_c00251{bottom:684.595371pt;}
.y24_c00251{bottom:685.211360pt;}
.y25_c00251{bottom:685.476447pt;}
.y10_c00251{bottom:701.518825pt;}
.y11_c00251{bottom:702.114663pt;}
.y12_c00251{bottom:702.674951pt;}
.y13_c00251{bottom:703.312729pt;}
.y14_c00251{bottom:704.165179pt;}
.y15_c00251{bottom:704.483705pt;}
.y16_c00251{bottom:704.806584pt;}
.y17_c00251{bottom:705.435904pt;}
.y18_c00251{bottom:705.782043pt;}
.y19_c00251{bottom:706.293725pt;}
.y1a_c00251{bottom:706.940933pt;}
.y9_c00251{bottom:722.880217pt;}
.ya_c00251{bottom:723.372695pt;}
.yb_c00251{bottom:724.012215pt;}
.yc_c00251{bottom:724.793756pt;}
.yd_c00251{bottom:725.202268pt;}
.ye_c00251{bottom:725.386852pt;}
.yf_c00251{bottom:725.845392pt;}
.y1_c00251{bottom:742.084000pt;}
.y2_c00251{bottom:742.781861pt;}
.y3_c00251{bottom:743.063336pt;}
.y4_c00251{bottom:743.373779pt;}
.y5_c00251{bottom:743.960233pt;}
.y6_c00251{bottom:744.508200pt;}
.y7_c00251{bottom:745.633079pt;}
.y8_c00251{bottom:746.025801pt;}
.h14_c00251{height:14.933333pt;}
.h13_c00251{height:43.866667pt;}
.h15_c00251{height:49.466667pt;}
.h6_c00251{height:53.207687pt;}
.ha_c00251{height:54.136040pt;}
.h4_c00251{height:54.141155pt;}
.h12_c00251{height:55.069420pt;}
.h2_c00251{height:56.008091pt;}
.hd_c00251{height:56.936180pt;}
.hb_c00251{height:58.802940pt;}
.he_c00251{height:59.736320pt;}
.h8_c00251{height:60.666667pt;}
.h3_c00251{height:60.675432pt;}
.h10_c00251{height:61.603080pt;}
.h7_c00251{height:62.533333pt;}
.hf_c00251{height:62.536460pt;}
.h5_c00251{height:63.475837pt;}
.h9_c00251{height:65.333333pt;}
.h11_c00251{height:65.336600pt;}
.hc_c00251{height:112.938980pt;}
.h0_c00251{height:896.400000pt;}
.h1_c00251{height:896.666667pt;}
.w0_c00251{width:603.066667pt;}
.w1_c00251{width:603.333333pt;}
.x0_c00251{left:0.000000pt;}
.x7c_c00251{left:133.680000pt;}
.x9_c00251{left:145.375589pt;}
.x49_c00251{left:147.892200pt;}
.x7d_c00251{left:150.480000pt;}
.x6e_c00251{left:151.673600pt;}
.x35_c00251{left:153.236000pt;}
.x1_c00251{left:155.000000pt;}
.x24_c00251{left:156.851380pt;}
.x4a_c00251{left:158.279080pt;}
.x1a_c00251{left:172.731169pt;}
.x7e_c00251{left:177.360000pt;}
.x42_c00251{left:178.422067pt;}
.x54_c00251{left:179.644227pt;}
.x6a_c00251{left:181.328293pt;}
.xa_c00251{left:183.210151pt;}
.x5a_c00251{left:184.885067pt;}
.x60_c00251{left:187.916120pt;}
.x10_c00251{left:192.944912pt;}
.x1b_c00251{left:194.352503pt;}
.x2_c00251{left:196.050667pt;}
.x25_c00251{left:197.852835pt;}
.x61_c00251{left:203.276320pt;}
.x32_c00251{left:205.816000pt;}
.x74_c00251{left:207.360000pt;}
.x43_c00251{left:209.391707pt;}
.x3_c00251{left:212.608000pt;}
.x36_c00251{left:217.302667pt;}
.x2a_c00251{left:218.506225pt;}
.x1c_c00251{left:220.093836pt;}
.x78_c00251{left:221.520000pt;}
.x7a_c00251{left:222.480000pt;}
.x46_c00251{left:223.651440pt;}
.x4b_c00251{left:224.953747pt;}
.x75_c00251{left:226.320000pt;}
.x11_c00251{left:227.942835pt;}
.x4_c00251{left:230.869333pt;}
.xb_c00251{left:232.440172pt;}
.x5e_c00251{left:234.718693pt;}
.x33_c00251{left:236.078667pt;}
.x6b_c00251{left:239.934373pt;}
.x55_c00251{left:243.965560pt;}
.x65_c00251{left:245.361187pt;}
.x71_c00251{left:246.719147pt;}
.x37_c00251{left:248.561333pt;}
.x4c_c00251{left:251.658280pt;}
.x1d_c00251{left:254.075169pt;}
.x3d_c00251{left:258.362667pt;}
.x26_c00251{left:261.771831pt;}
.x2b_c00251{left:263.885724pt;}
.x5_c00251{left:265.366667pt;}
.x38_c00251{left:266.540000pt;}
.x12_c00251{left:267.812848pt;}
.x7b_c00251{left:270.480000pt;}
.x79_c00251{left:272.880000pt;}
.x5f_c00251{left:275.760133pt;}
.x1e_c00251{left:282.232503pt;}
.x4d_c00251{left:283.550920pt;}
.x6c_c00251{left:284.641253pt;}
.x3b_c00251{left:287.760000pt;}
.x76_c00251{left:290.160000pt;}
.xc_c00251{left:292.534919pt;}
.x27_c00251{left:296.567521pt;}
.x6_c00251{left:297.600000pt;}
.x31_c00251{left:300.000000pt;}
.x56_c00251{left:301.806893pt;}
.x7f_c00251{left:303.120000pt;}
.x77_c00251{left:305.760000pt;}
.x44_c00251{left:308.507360pt;}
.x47_c00251{left:310.987307pt;}
.x2c_c00251{left:311.916252pt;}
.x28_c00251{left:313.619344pt;}
.x13_c00251{left:321.095088pt;}
.x39_c00251{left:322.409333pt;}
.xd_c00251{left:323.939716pt;}
.x72_c00251{left:324.962973pt;}
.x62_c00251{left:326.403293pt;}
.x1f_c00251{left:327.589836pt;}
.x80_c00251{left:329.040000pt;}
.x3c_c00251{left:331.200000pt;}
.xe_c00251{left:338.092668pt;}
.x14_c00251{left:341.008761pt;}
.x2d_c00251{left:343.329847pt;}
.x4e_c00251{left:344.997480pt;}
.x3a_c00251{left:349.361333pt;}
.x6d_c00251{left:351.843987pt;}
.x48_c00251{left:353.045560pt;}
.x3e_c00251{left:354.581333pt;}
.x29_c00251{left:357.064957pt;}
.x6f_c00251{left:359.763747pt;}
.x15_c00251{left:361.178435pt;}
.x20_c00251{left:362.555169pt;}
.x7_c00251{left:363.769333pt;}
.x57_c00251{left:367.764227pt;}
.x81_c00251{left:369.840000pt;}
.xf_c00251{left:373.381737pt;}
.x2e_c00251{left:374.296729pt;}
.x66_c00251{left:375.245187pt;}
.x45_c00251{left:377.637387pt;}
.x63_c00251{left:380.166000pt;}
.x70_c00251{left:384.244867pt;}
.x53_c00251{left:385.689880pt;}
.x8_c00251{left:386.870667pt;}
.x21_c00251{left:388.556503pt;}
.x4f_c00251{left:394.910480pt;}
.x2f_c00251{left:395.919676pt;}
.x3f_c00251{left:396.845333pt;}
.x82_c00251{left:399.120000pt;}
.x16_c00251{left:400.472425pt;}
.x58_c00251{left:405.968227pt;}
.x5b_c00251{left:415.781680pt;}
.x67_c00251{left:419.890520pt;}
.x17_c00251{left:422.088788pt;}
.x22_c00251{left:424.791169pt;}
.x73_c00251{left:426.007747pt;}
.x50_c00251{left:427.069787pt;}
.x30_c00251{left:429.948300pt;}
.x34_c00251{left:431.846667pt;}
.x59_c00251{left:432.853560pt;}
.x40_c00251{left:434.002667pt;}
.x83_c00251{left:437.040000pt;}
.x23_c00251{left:440.384503pt;}
.x68_c00251{left:441.954520pt;}
.x51_c00251{left:444.840813pt;}
.x5c_c00251{left:446.535627pt;}
.x18_c00251{left:454.070665pt;}
.x41_c00251{left:462.102667pt;}
.x64_c00251{left:467.050693pt;}
.x69_c00251{left:472.454520pt;}
.x52_c00251{left:485.832293pt;}
.x19_c00251{left:494.495345pt;}
.x5d_c00251{left:498.382000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mc7_c00252{transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);}
.m8f_c00252{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);}
.m4_c00252{transform:matrix(0.015449,0.000185,-0.003000,0.249982,0,0);-ms-transform:matrix(0.015449,0.000185,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.015449,0.000185,-0.003000,0.249982,0,0);}
.m59_c00252{transform:matrix(0.068278,0.001297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.068278,0.001297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.068278,0.001297,-0.004749,0.249955,0,0);}
.md1_c00252{transform:matrix(0.113209,0.001132,-0.002500,0.249988,0,0);-ms-transform:matrix(0.113209,0.001132,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.113209,0.001132,-0.002500,0.249988,0,0);}
.ma3_c00252{transform:matrix(0.122144,0.001221,-0.002500,0.249988,0,0);-ms-transform:matrix(0.122144,0.001221,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.122144,0.001221,-0.002500,0.249988,0,0);}
.mc4_c00252{transform:matrix(0.134708,0.001347,-0.002500,0.249988,0,0);-ms-transform:matrix(0.134708,0.001347,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.134708,0.001347,-0.002500,0.249988,0,0);}
.md6_c00252{transform:matrix(0.136218,0.001362,-0.002500,0.249988,0,0);-ms-transform:matrix(0.136218,0.001362,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.136218,0.001362,-0.002500,0.249988,0,0);}
.mbe_c00252{transform:matrix(0.137538,0.001375,-0.002500,0.249988,0,0);-ms-transform:matrix(0.137538,0.001375,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.137538,0.001375,-0.002500,0.249988,0,0);}
.m15_c00252{transform:matrix(0.141375,0.001696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141375,0.001696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141375,0.001696,-0.003000,0.249982,0,0);}
.m79_c00252{transform:matrix(0.146016,0.002044,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146016,0.002044,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146016,0.002044,-0.003500,0.249976,0,0);}
.mce_c00252{transform:matrix(0.148418,0.001484,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148418,0.001484,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148418,0.001484,-0.002500,0.249988,0,0);}
.m7f_c00252{transform:matrix(0.150748,0.002563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150748,0.002563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150748,0.002563,-0.004249,0.249964,0,0);}
.m70_c00252{transform:matrix(0.152138,0.003347,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152138,0.003347,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152138,0.003347,-0.005499,0.249940,0,0);}
.m3b_c00252{transform:matrix(0.152419,0.001829,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152419,0.001829,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152419,0.001829,-0.003000,0.249982,0,0);}
.mae_c00252{transform:matrix(0.154112,0.001541,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154112,0.001541,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154112,0.001541,-0.002500,0.249988,0,0);}
.m82_c00252{transform:matrix(0.156647,0.002663,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156647,0.002663,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156647,0.002663,-0.004249,0.249964,0,0);}
.md3_c00252{transform:matrix(0.157822,0.001578,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157822,0.001578,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157822,0.001578,-0.002500,0.249988,0,0);}
.m4e_c00252{transform:matrix(0.158546,0.003012,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158546,0.003012,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158546,0.003012,-0.004749,0.249955,0,0);}
.m35_c00252{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);}
.m3f_c00252{transform:matrix(0.159976,0.003040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159976,0.003040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159976,0.003040,-0.004749,0.249955,0,0);}
.m36_c00252{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);}
.m78_c00252{transform:matrix(0.161059,0.002255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161059,0.002255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161059,0.002255,-0.003500,0.249976,0,0);}
.m4d_c00252{transform:matrix(0.161566,0.003070,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161566,0.003070,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161566,0.003070,-0.004749,0.249955,0,0);}
.m6e_c00252{transform:matrix(0.161681,0.003557,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161681,0.003557,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161681,0.003557,-0.005499,0.249940,0,0);}
.ma1_c00252{transform:matrix(0.162807,0.001628,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162807,0.001628,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162807,0.001628,-0.002500,0.249988,0,0);}
.mcf_c00252{transform:matrix(0.162852,0.001629,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162852,0.001629,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162852,0.001629,-0.002500,0.249988,0,0);}
.m3c_c00252{transform:matrix(0.163398,0.001961,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163398,0.001961,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163398,0.001961,-0.003000,0.249982,0,0);}
.m73_c00252{transform:matrix(0.163735,0.003602,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163735,0.003602,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163735,0.003602,-0.005499,0.249940,0,0);}
.mc2_c00252{transform:matrix(0.164512,0.001645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164512,0.001645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164512,0.001645,-0.002500,0.249988,0,0);}
.mc3_c00252{transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165657,0.001657,-0.002500,0.249988,0,0);}
.m65_c00252{transform:matrix(0.166469,0.002663,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166469,0.002663,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166469,0.002663,-0.003999,0.249968,0,0);}
.m7b_c00252{transform:matrix(0.166494,0.002331,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166494,0.002331,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166494,0.002331,-0.003500,0.249976,0,0);}
.m7e_c00252{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);}
.m91_c00252{transform:matrix(0.170375,0.002896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170375,0.002896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170375,0.002896,-0.004249,0.249964,0,0);}
.m46_c00252{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);}
.md4_c00252{transform:matrix(0.171556,0.001716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171556,0.001716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171556,0.001716,-0.002500,0.249988,0,0);}
.m68_c00252{transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171573,0.002745,-0.003999,0.249968,0,0);}
.m7c_c00252{transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);}
.m76_c00252{transform:matrix(0.172663,0.002417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172663,0.002417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172663,0.002417,-0.003500,0.249976,0,0);}
.m71_c00252{transform:matrix(0.172813,0.003802,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172813,0.003802,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172813,0.003802,-0.005499,0.249940,0,0);}
.m58_c00252{transform:matrix(0.173089,0.003289,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173089,0.003289,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173089,0.003289,-0.004749,0.249955,0,0);}
.m9_c00252{transform:matrix(0.173388,0.002081,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173388,0.002081,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173388,0.002081,-0.003000,0.249982,0,0);}
.m69_c00252{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);}
.m81_c00252{transform:matrix(0.175825,0.002989,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175825,0.002989,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175825,0.002989,-0.004249,0.249964,0,0);}
.m1b_c00252{transform:matrix(0.179262,0.002151,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179262,0.002151,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179262,0.002151,-0.003000,0.249982,0,0);}
.m6f_c00252{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);}
.m5f_c00252{transform:matrix(0.179718,0.003415,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179718,0.003415,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179718,0.003415,-0.004749,0.249955,0,0);}
.m87_c00252{transform:matrix(0.180714,0.003072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180714,0.003072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180714,0.003072,-0.004249,0.249964,0,0);}
.m18_c00252{transform:matrix(0.181507,0.002178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181507,0.002178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181507,0.002178,-0.003000,0.249982,0,0);}
.m1d_c00252{transform:matrix(0.182902,0.002195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182902,0.002195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182902,0.002195,-0.003000,0.249982,0,0);}
.m6d_c00252{transform:matrix(0.183001,0.004026,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183001,0.004026,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183001,0.004026,-0.005499,0.249940,0,0);}
.mbd_c00252{transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);}
.m1a_c00252{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);}
.m39_c00252{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);}
.m31_c00252{transform:matrix(0.184002,0.002208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184002,0.002208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184002,0.002208,-0.003000,0.249982,0,0);}
.m38_c00252{transform:matrix(0.184147,0.002210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184147,0.002210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184147,0.002210,-0.003000,0.249982,0,0);}
.m17_c00252{transform:matrix(0.184152,0.002210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184152,0.002210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184152,0.002210,-0.003000,0.249982,0,0);}
.ma_c00252{transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184622,0.002215,-0.003000,0.249982,0,0);}
.mbf_c00252{transform:matrix(0.185776,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185776,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185776,0.001858,-0.002500,0.249988,0,0);}
.mcb_c00252{transform:matrix(0.185816,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185816,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185816,0.001858,-0.002500,0.249988,0,0);}
.m74_c00252{transform:matrix(0.186040,0.004093,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186040,0.004093,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186040,0.004093,-0.005499,0.249940,0,0);}
.m2_c00252{transform:matrix(0.187441,0.003561,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187441,0.003561,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187441,0.003561,-0.004749,0.249955,0,0);}
.m20_c00252{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);}
.m33_c00252{transform:matrix(0.187666,0.002252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187666,0.002252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187666,0.002252,-0.003000,0.249982,0,0);}
.mf_c00252{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);}
.m57_c00252{transform:matrix(0.188451,0.003581,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188451,0.003581,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188451,0.003581,-0.004749,0.249955,0,0);}
.m13_c00252{transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);}
.mb0_c00252{transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);}
.m62_c00252{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);}
.m53_c00252{transform:matrix(0.190266,0.003615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190266,0.003615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190266,0.003615,-0.004749,0.249955,0,0);}
.m55_c00252{transform:matrix(0.190816,0.003625,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190816,0.003625,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190816,0.003625,-0.004749,0.249955,0,0);}
.m97_c00252{transform:matrix(0.191402,0.003254,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191402,0.003254,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191402,0.003254,-0.004249,0.249964,0,0);}
.m7_c00252{transform:matrix(0.192181,0.002306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192181,0.002306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192181,0.002306,-0.003000,0.249982,0,0);}
.m5b_c00252{transform:matrix(0.193110,0.003669,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193110,0.003669,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193110,0.003669,-0.004749,0.249955,0,0);}
.m2f_c00252{transform:matrix(0.193306,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193306,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193306,0.002320,-0.003000,0.249982,0,0);}
.m60_c00252{transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);}
.m32_c00252{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);}
.m37_c00252{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);}
.mb7_c00252{transform:matrix(0.195790,0.001958,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195790,0.001958,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195790,0.001958,-0.002500,0.249988,0,0);}
.m6a_c00252{transform:matrix(0.196180,0.003139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196180,0.003139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196180,0.003139,-0.003999,0.249968,0,0);}
.ma0_c00252{transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196760,0.001968,-0.002500,0.249988,0,0);}
.m29_c00252{transform:matrix(0.197026,0.002364,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197026,0.002364,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197026,0.002364,-0.003000,0.249982,0,0);}
.m83_c00252{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);}
.m9f_c00252{transform:matrix(0.198555,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198555,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198555,0.001986,-0.002500,0.249988,0,0);}
.m80_c00252{transform:matrix(0.198796,0.003380,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198796,0.003380,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198796,0.003380,-0.004249,0.249964,0,0);}
.ma4_c00252{transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198990,0.001990,-0.002500,0.249988,0,0);}
.m8_c00252{transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199201,0.002390,-0.003000,0.249982,0,0);}
.m66_c00252{transform:matrix(0.200429,0.003207,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200429,0.003207,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200429,0.003207,-0.003999,0.249968,0,0);}
.m85_c00252{transform:matrix(0.201521,0.003426,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201521,0.003426,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201521,0.003426,-0.004249,0.249964,0,0);}
.m5c_c00252{transform:matrix(0.201724,0.003833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201724,0.003833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201724,0.003833,-0.004749,0.249955,0,0);}
.m23_c00252{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);}
.m5d_c00252{transform:matrix(0.203078,0.003858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203078,0.003858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203078,0.003858,-0.004749,0.249955,0,0);}
.m56_c00252{transform:matrix(0.204293,0.003882,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204293,0.003882,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204293,0.003882,-0.004749,0.249955,0,0);}
.m88_c00252{transform:matrix(0.204750,0.003481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204750,0.003481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204750,0.003481,-0.004249,0.249964,0,0);}
.m24_c00252{transform:matrix(0.204980,0.002460,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204980,0.002460,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204980,0.002460,-0.003000,0.249982,0,0);}
.m7a_c00252{transform:matrix(0.205415,0.002876,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205415,0.002876,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205415,0.002876,-0.003500,0.249976,0,0);}
.m22_c00252{transform:matrix(0.205795,0.002470,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205795,0.002470,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205795,0.002470,-0.003000,0.249982,0,0);}
.mca_c00252{transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);}
.m72_c00252{transform:matrix(0.207675,0.004569,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207675,0.004569,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207675,0.004569,-0.005499,0.249940,0,0);}
.m2e_c00252{transform:matrix(0.207695,0.002492,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207695,0.002492,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207695,0.002492,-0.003000,0.249982,0,0);}
.mc0_c00252{transform:matrix(0.207715,0.002077,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207715,0.002077,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207715,0.002077,-0.002500,0.249988,0,0);}
.m86_c00252{transform:matrix(0.208135,0.003538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208135,0.003538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208135,0.003538,-0.004249,0.249964,0,0);}
.m84_c00252{transform:matrix(0.208375,0.003542,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208375,0.003542,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208375,0.003542,-0.004249,0.249964,0,0);}
.mc9_c00252{transform:matrix(0.208485,0.002085,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208485,0.002085,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208485,0.002085,-0.002500,0.249988,0,0);}
.m64_c00252{transform:matrix(0.209288,0.003349,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209288,0.003349,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209288,0.003349,-0.003999,0.249968,0,0);}
.m8e_c00252{transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);}
.m9d_c00252{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);}
.m30_c00252{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);}
.m2a_c00252{transform:matrix(0.210715,0.002529,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210715,0.002529,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210715,0.002529,-0.003000,0.249982,0,0);}
.m47_c00252{transform:matrix(0.212292,0.004034,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212292,0.004034,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212292,0.004034,-0.004749,0.249955,0,0);}
.m3a_c00252{transform:matrix(0.212340,0.002548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212340,0.002548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212340,0.002548,-0.003000,0.249982,0,0);}
.m40_c00252{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);}
.m25_c00252{transform:matrix(0.213325,0.002560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213325,0.002560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213325,0.002560,-0.003000,0.249982,0,0);}
.m4a_c00252{transform:matrix(0.213406,0.004055,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213406,0.004055,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213406,0.004055,-0.004749,0.249955,0,0);}
.m89_c00252{transform:matrix(0.214364,0.003644,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214364,0.003644,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214364,0.003644,-0.004249,0.249964,0,0);}
.m6b_c00252{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);}
.mcc_c00252{transform:matrix(0.214539,0.002145,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214539,0.002145,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214539,0.002145,-0.002500,0.249988,0,0);}
.mcd_c00252{transform:matrix(0.215049,0.002150,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215049,0.002150,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215049,0.002150,-0.002500,0.249988,0,0);}
.mb_c00252{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);}
.mc8_c00252{transform:matrix(0.216204,0.002162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216204,0.002162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216204,0.002162,-0.002500,0.249988,0,0);}
.m21_c00252{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);}
.m1f_c00252{transform:matrix(0.216489,0.002598,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216489,0.002598,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216489,0.002598,-0.003000,0.249982,0,0);}
.m11_c00252{transform:matrix(0.217984,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217984,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217984,0.002616,-0.003000,0.249982,0,0);}
.m45_c00252{transform:matrix(0.219165,0.004164,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219165,0.004164,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219165,0.004164,-0.004749,0.249955,0,0);}
.m9b_c00252{transform:matrix(0.219439,0.002194,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219439,0.002194,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219439,0.002194,-0.002500,0.249988,0,0);}
.m1c_c00252{transform:matrix(0.219439,0.002633,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219439,0.002633,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219439,0.002633,-0.003000,0.249982,0,0);}
.m10_c00252{transform:matrix(0.219679,0.002636,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219679,0.002636,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219679,0.002636,-0.003000,0.249982,0,0);}
.m90_c00252{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);}
.m14_c00252{transform:matrix(0.220299,0.002644,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220299,0.002644,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220299,0.002644,-0.003000,0.249982,0,0);}
.m19_c00252{transform:matrix(0.220669,0.002648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220669,0.002648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220669,0.002648,-0.003000,0.249982,0,0);}
.m1e_c00252{transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);}
.md5_c00252{transform:matrix(0.220989,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220989,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220989,0.002210,-0.002500,0.249988,0,0);}
.m26_c00252{transform:matrix(0.222784,0.002673,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222784,0.002673,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222784,0.002673,-0.003000,0.249982,0,0);}
.m6_c00252{transform:matrix(0.223204,0.002678,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223204,0.002678,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223204,0.002678,-0.003000,0.249982,0,0);}
.m28_c00252{transform:matrix(0.223284,0.002679,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223284,0.002679,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223284,0.002679,-0.003000,0.249982,0,0);}
.m7d_c00252{transform:matrix(0.223818,0.003805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223818,0.003805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223818,0.003805,-0.004249,0.249964,0,0);}
.m2c_c00252{transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);}
.m41_c00252{transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);}
.mc1_c00252{transform:matrix(0.224874,0.002249,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224874,0.002249,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224874,0.002249,-0.002500,0.249988,0,0);}
.m5a_c00252{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);}
.m42_c00252{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);}
.m8a_c00252{transform:matrix(0.226607,0.003852,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226607,0.003852,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226607,0.003852,-0.004249,0.249964,0,0);}
.m16_c00252{transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);}
.ma2_c00252{transform:matrix(0.227884,0.002279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227884,0.002279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227884,0.002279,-0.002500,0.249988,0,0);}
.mac_c00252{transform:matrix(0.228899,0.002289,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228899,0.002289,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228899,0.002289,-0.002500,0.249988,0,0);}
.m44_c00252{transform:matrix(0.231673,0.004402,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231673,0.004402,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231673,0.004402,-0.004749,0.249955,0,0);}
.ma6_c00252{transform:matrix(0.232133,0.002321,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232133,0.002321,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232133,0.002321,-0.002500,0.249988,0,0);}
.m5e_c00252{transform:matrix(0.232288,0.004413,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232288,0.004413,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232288,0.004413,-0.004749,0.249955,0,0);}
.me_c00252{transform:matrix(0.232868,0.002794,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232868,0.002794,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232868,0.002794,-0.003000,0.249982,0,0);}
.mda_c00252{transform:matrix(0.233128,0.004429,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233128,0.004429,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233128,0.004429,-0.004749,0.249955,0,0);}
.m63_c00252{transform:matrix(0.233400,0.003734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233400,0.003734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233400,0.003734,-0.003999,0.249968,0,0);}
.m43_c00252{transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);}
.md7_c00252{transform:matrix(0.234173,0.002342,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234173,0.002342,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234173,0.002342,-0.002500,0.249988,0,0);}
.m95_c00252{transform:matrix(0.235706,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235706,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235706,0.004007,-0.004249,0.249964,0,0);}
.m5_c00252{transform:matrix(0.236038,0.002832,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236038,0.002832,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236038,0.002832,-0.003000,0.249982,0,0);}
.m54_c00252{transform:matrix(0.236502,0.004494,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236502,0.004494,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236502,0.004494,-0.004749,0.249955,0,0);}
.m77_c00252{transform:matrix(0.237407,0.003324,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237407,0.003324,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237407,0.003324,-0.003500,0.249976,0,0);}
.mab_c00252{transform:matrix(0.238428,0.002384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238428,0.002384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238428,0.002384,-0.002500,0.249988,0,0);}
.m94_c00252{transform:matrix(0.239845,0.004077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239845,0.004077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239845,0.004077,-0.004249,0.249964,0,0);}
.m27_c00252{transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);}
.m75_c00252{transform:matrix(0.242411,0.003394,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242411,0.003394,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242411,0.003394,-0.003500,0.249976,0,0);}
.m34_c00252{transform:matrix(0.243917,0.002927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243917,0.002927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243917,0.002927,-0.003000,0.249982,0,0);}
.m4b_c00252{transform:matrix(0.243931,0.004635,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243931,0.004635,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243931,0.004635,-0.004749,0.249955,0,0);}
.m2b_c00252{transform:matrix(0.244877,0.002939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244877,0.002939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244877,0.002939,-0.003000,0.249982,0,0);}
.m8c_c00252{transform:matrix(0.245510,0.004174,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245510,0.004174,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245510,0.004174,-0.004249,0.249964,0,0);}
.m48_c00252{transform:matrix(0.245661,0.004668,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245661,0.004668,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245661,0.004668,-0.004749,0.249955,0,0);}
.m8d_c00252{transform:matrix(0.245844,0.004179,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245844,0.004179,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245844,0.004179,-0.004249,0.249964,0,0);}
.m92_c00252{transform:matrix(0.247229,0.004203,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247229,0.004203,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247229,0.004203,-0.004249,0.249964,0,0);}
.m2d_c00252{transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);}
.maa_c00252{transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);}
.m3_c00252{transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);}
.m6c_c00252{transform:matrix(0.253249,0.005571,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253249,0.005571,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253249,0.005571,-0.005499,0.249940,0,0);}
.m4c_c00252{transform:matrix(0.255574,0.004856,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255574,0.004856,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255574,0.004856,-0.004749,0.249955,0,0);}
.m52_c00252{transform:matrix(0.260308,0.004946,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260308,0.004946,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260308,0.004946,-0.004749,0.249955,0,0);}
.m3e_c00252{transform:matrix(0.265997,0.005054,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265997,0.005054,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265997,0.005054,-0.004749,0.249955,0,0);}
.m96_c00252{transform:matrix(0.266267,0.004527,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266267,0.004527,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266267,0.004527,-0.004249,0.249964,0,0);}
.m93_c00252{transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);}
.m67_c00252{transform:matrix(0.274265,0.004388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274265,0.004388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274265,0.004388,-0.003999,0.249968,0,0);}
.md8_c00252{transform:matrix(0.279951,0.002800,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279951,0.002800,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279951,0.002800,-0.002500,0.249988,0,0);}
.mc_c00252{transform:matrix(0.282145,0.003386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282145,0.003386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282145,0.003386,-0.003000,0.249982,0,0);}
.m4f_c00252{transform:matrix(0.284319,0.005402,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284319,0.005402,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284319,0.005402,-0.004749,0.249955,0,0);}
.m49_c00252{transform:matrix(0.299566,0.005692,-0.004749,0.249955,0,0);-ms-transform:matrix(0.299566,0.005692,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.299566,0.005692,-0.004749,0.249955,0,0);}
.ma5_c00252{transform:matrix(0.301920,0.003019,-0.002500,0.249988,0,0);-ms-transform:matrix(0.301920,0.003019,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.301920,0.003019,-0.002500,0.249988,0,0);}
.m12_c00252{transform:matrix(0.304473,0.003654,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304473,0.003654,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304473,0.003654,-0.003000,0.249982,0,0);}
.m1_c00252{transform:matrix(0.308384,0.005859,-0.004749,0.249955,0,0);-ms-transform:matrix(0.308384,0.005859,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.308384,0.005859,-0.004749,0.249955,0,0);}
.mb5_c00252{transform:matrix(0.310954,0.003110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310954,0.003110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310954,0.003110,-0.002500,0.249988,0,0);}
.md_c00252{transform:matrix(0.311188,0.003734,-0.003000,0.249982,0,0);-ms-transform:matrix(0.311188,0.003734,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.311188,0.003734,-0.003000,0.249982,0,0);}
.ma8_c00252{transform:matrix(0.312124,0.003121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.312124,0.003121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.312124,0.003121,-0.002500,0.249988,0,0);}
.mb6_c00252{transform:matrix(0.318169,0.003182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.318169,0.003182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.318169,0.003182,-0.002500,0.249988,0,0);}
.m61_c00252{transform:matrix(0.324971,0.006174,-0.004749,0.249955,0,0);-ms-transform:matrix(0.324971,0.006174,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.324971,0.006174,-0.004749,0.249955,0,0);}
.mde_c00252{transform:matrix(0.328126,0.006234,-0.004749,0.249955,0,0);-ms-transform:matrix(0.328126,0.006234,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.328126,0.006234,-0.004749,0.249955,0,0);}
.mba_c00252{transform:matrix(0.329409,0.003294,-0.002500,0.249988,0,0);-ms-transform:matrix(0.329409,0.003294,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.329409,0.003294,-0.002500,0.249988,0,0);}
.md9_c00252{transform:matrix(0.332353,0.003324,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332353,0.003324,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332353,0.003324,-0.002500,0.249988,0,0);}
.m9a_c00252{transform:matrix(0.336453,0.003365,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336453,0.003365,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336453,0.003365,-0.002500,0.249988,0,0);}
.m9c_c00252{transform:matrix(0.340098,0.003401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.340098,0.003401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.340098,0.003401,-0.002500,0.249988,0,0);}
.mb4_c00252{transform:matrix(0.346273,0.003463,-0.002500,0.249988,0,0);-ms-transform:matrix(0.346273,0.003463,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.346273,0.003463,-0.002500,0.249988,0,0);}
.m51_c00252{transform:matrix(0.350802,0.006665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.350802,0.006665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.350802,0.006665,-0.004749,0.249955,0,0);}
.mad_c00252{transform:matrix(0.352267,0.003523,-0.002500,0.249988,0,0);-ms-transform:matrix(0.352267,0.003523,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.352267,0.003523,-0.002500,0.249988,0,0);}
.m8b_c00252{transform:matrix(0.364592,0.006198,-0.004249,0.249964,0,0);-ms-transform:matrix(0.364592,0.006198,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.364592,0.006198,-0.004249,0.249964,0,0);}
.mbb_c00252{transform:matrix(0.367272,0.003673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.367272,0.003673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.367272,0.003673,-0.002500,0.249988,0,0);}
.mdb_c00252{transform:matrix(0.383736,0.007291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.383736,0.007291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.383736,0.007291,-0.004749,0.249955,0,0);}
.ma9_c00252{transform:matrix(0.388276,0.003883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.388276,0.003883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.388276,0.003883,-0.002500,0.249988,0,0);}
.mdf_c00252{transform:matrix(0.388545,0.007382,-0.004749,0.249955,0,0);-ms-transform:matrix(0.388545,0.007382,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.388545,0.007382,-0.004749,0.249955,0,0);}
.maf_c00252{transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);}
.mb8_c00252{transform:matrix(0.410734,0.004107,-0.002500,0.249988,0,0);-ms-transform:matrix(0.410734,0.004107,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.410734,0.004107,-0.002500,0.249988,0,0);}
.ma7_c00252{transform:matrix(0.429574,0.004296,-0.002500,0.249988,0,0);-ms-transform:matrix(0.429574,0.004296,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.429574,0.004296,-0.002500,0.249988,0,0);}
.m3d_c00252{transform:matrix(0.431140,0.014242,-0.008254,0.249864,0,0);-ms-transform:matrix(0.431140,0.014242,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.431140,0.014242,-0.008254,0.249864,0,0);}
.mb1_c00252{transform:matrix(0.441183,0.004412,-0.002500,0.249988,0,0);-ms-transform:matrix(0.441183,0.004412,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.441183,0.004412,-0.002500,0.249988,0,0);}
.md2_c00252{transform:matrix(0.455347,0.004553,-0.002500,0.249988,0,0);-ms-transform:matrix(0.455347,0.004553,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.455347,0.004553,-0.002500,0.249988,0,0);}
.mdd_c00252{transform:matrix(0.471125,0.008951,-0.004749,0.249955,0,0);-ms-transform:matrix(0.471125,0.008951,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.471125,0.008951,-0.004749,0.249955,0,0);}
.mb9_c00252{transform:matrix(0.489541,0.004895,-0.002500,0.249988,0,0);-ms-transform:matrix(0.489541,0.004895,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.489541,0.004895,-0.002500,0.249988,0,0);}
.m0_c00252{transform:matrix(0.490761,0.009324,-0.004749,0.249955,0,0);-ms-transform:matrix(0.490761,0.009324,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.490761,0.009324,-0.004749,0.249955,0,0);}
.mc5_c00252{transform:matrix(0.528074,0.005281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.528074,0.005281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.528074,0.005281,-0.002500,0.249988,0,0);}
.mb2_c00252{transform:matrix(0.582086,0.005821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.582086,0.005821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.582086,0.005821,-0.002500,0.249988,0,0);}
.md0_c00252{transform:matrix(0.610974,0.006110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.610974,0.006110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.610974,0.006110,-0.002500,0.249988,0,0);}
.m50_c00252{transform:matrix(0.667739,0.012687,-0.004749,0.249955,0,0);-ms-transform:matrix(0.667739,0.012687,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.667739,0.012687,-0.004749,0.249955,0,0);}
.me0_c00252{transform:matrix(0.710267,0.013495,-0.004749,0.249955,0,0);-ms-transform:matrix(0.710267,0.013495,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.710267,0.013495,-0.004749,0.249955,0,0);}
.m9e_c00252{transform:matrix(0.718564,0.007186,-0.002500,0.249988,0,0);-ms-transform:matrix(0.718564,0.007186,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.718564,0.007186,-0.002500,0.249988,0,0);}
.mbc_c00252{transform:matrix(0.742818,0.007428,-0.002500,0.249988,0,0);-ms-transform:matrix(0.742818,0.007428,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.742818,0.007428,-0.002500,0.249988,0,0);}
.mb3_c00252{transform:matrix(0.755577,0.007556,-0.002500,0.249988,0,0);-ms-transform:matrix(0.755577,0.007556,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.755577,0.007556,-0.002500,0.249988,0,0);}
.mc6_c00252{transform:matrix(0.757712,0.007577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.757712,0.007577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.757712,0.007577,-0.002500,0.249988,0,0);}
.mdc_c00252{transform:matrix(0.783739,0.014891,-0.004749,0.249955,0,0);-ms-transform:matrix(0.783739,0.014891,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.783739,0.014891,-0.004749,0.249955,0,0);}
.m99_c00252{transform:matrix(1.343033,0.013430,-0.002500,0.249988,0,0);-ms-transform:matrix(1.343033,0.013430,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.343033,0.013430,-0.002500,0.249988,0,0);}
.m98_c00252{transform:matrix(1.790625,0.017906,-0.002500,0.249988,0,0);-ms-transform:matrix(1.790625,0.017906,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.790625,0.017906,-0.002500,0.249988,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;}
.fs1a_c00252{font-size:31.505685px;}
.fs2_c00252{font-size:60.904385px;}
.fsc_c00252{font-size:61.957929px;}
.fs1_c00252{font-size:63.004536px;}
.fs8_c00252{font-size:64.061560px;}
.fs10_c00252{font-size:65.109406px;}
.fsf_c00252{font-size:67.209710px;}
.fse_c00252{font-size:68.256688px;}
.fsb_c00252{font-size:68.262318px;}
.fs7_c00252{font-size:69.268461px;}
.fs4_c00252{font-size:69.304989px;}
.fs11_c00252{font-size:69.310013px;}
.fs12_c00252{font-size:70.353517px;}
.fs5_c00252{font-size:70.355065px;}
.fsd_c00252{font-size:70.367023px;}
.fs6_c00252{font-size:71.405141px;}
.fs9_c00252{font-size:71.412887px;}
.fs3_c00252{font-size:74.555367px;}
.fs18_c00252{font-size:75.603780px;}
.fsa_c00252{font-size:75.613645px;}
.fs19_c00252{font-size:76.653832px;}
.fs15_c00252{font-size:77.703885px;}
.fs0_c00252{font-size:89.266108px;}
.fs13_c00252{font-size:98.704935px;}
.fs17_c00252{font-size:110.255512px;}
.fs16_c00252{font-size:128.106405px;}
.fs14_c00252{font-size:143.857192px;}
.y0_c00252{bottom:0.000000px;}
.ye2_c00252{bottom:111.797106px;}
.ye1_c00252{bottom:112.697963px;}
.ye0_c00252{bottom:116.829693px;}
.ydf_c00252{bottom:117.207204px;}
.yde_c00252{bottom:119.802072px;}
.ydd_c00252{bottom:120.190613px;}
.ydc_c00252{bottom:120.691500px;}
.ydb_c00252{bottom:130.920870px;}
.yda_c00252{bottom:135.638535px;}
.yd9_c00252{bottom:136.334430px;}
.yd8_c00252{bottom:141.421065px;}
.yd7_c00252{bottom:143.009925px;}
.yd6_c00252{bottom:145.495155px;}
.yd5_c00252{bottom:146.344290px;}
.yd4_c00252{bottom:148.392990px;}
.yd3_c00252{bottom:148.759800px;}
.yd2_c00252{bottom:157.944075px;}
.yd1_c00252{bottom:161.456700px;}
.yd0_c00252{bottom:161.971200px;}
.ycf_c00252{bottom:162.441825px;}
.yce_c00252{bottom:163.564080px;}
.ycd_c00252{bottom:164.207235px;}
.ycc_c00252{bottom:165.947580px;}
.ycb_c00252{bottom:167.540280px;}
.yca_c00252{bottom:168.181230px;}
.yc9_c00252{bottom:168.601800px;}
.yc8_c00252{bottom:170.089905px;}
.yc7_c00252{bottom:181.223040px;}
.yc6_c00252{bottom:183.751350px;}
.yc5_c00252{bottom:184.535475px;}
.yc4_c00252{bottom:185.469390px;}
.yc3_c00252{bottom:185.973510px;}
.yc2_c00252{bottom:187.731735px;}
.yc1_c00252{bottom:189.002655px;}
.yc0_c00252{bottom:189.563490px;}
.ybf_c00252{bottom:190.466130px;}
.ybe_c00252{bottom:192.800085px;}
.ybd_c00252{bottom:203.075685px;}
.ybc_c00252{bottom:210.315570px;}
.ybb_c00252{bottom:212.487885px;}
.yba_c00252{bottom:214.107735px;}
.yb9_c00252{bottom:241.705380px;}
.yb8_c00252{bottom:247.260810px;}
.yb7_c00252{bottom:250.406445px;}
.yb6_c00252{bottom:251.638080px;}
.yb5_c00252{bottom:266.926740px;}
.yb4_c00252{bottom:271.863915px;}
.yb3_c00252{bottom:275.247675px;}
.yb2_c00252{bottom:275.850105px;}
.yb1_c00252{bottom:277.880760px;}
.yb0_c00252{bottom:279.172815px;}
.yaf_c00252{bottom:296.566905px;}
.yae_c00252{bottom:297.309765px;}
.yad_c00252{bottom:297.870450px;}
.yac_c00252{bottom:298.415160px;}
.yab_c00252{bottom:300.387285px;}
.yaa_c00252{bottom:300.920160px;}
.ya9_c00252{bottom:303.743430px;}
.ya8_c00252{bottom:304.295115px;}
.ya7_c00252{bottom:320.872890px;}
.ya6_c00252{bottom:323.076390px;}
.ya5_c00252{bottom:323.922750px;}
.ya4_c00252{bottom:326.669445px;}
.ya3_c00252{bottom:327.479205px;}
.ya2_c00252{bottom:329.002230px;}
.ya1_c00252{bottom:329.947245px;}
.ya0_c00252{bottom:362.874195px;}
.y9f_c00252{bottom:366.157845px;}
.y9e_c00252{bottom:367.728225px;}
.y9d_c00252{bottom:370.444950px;}
.y9c_c00252{bottom:403.554585px;}
.y9b_c00252{bottom:405.866340px;}
.y9a_c00252{bottom:408.490500px;}
.y99_c00252{bottom:435.704071px;}
.y98_c00252{bottom:435.976402px;}
.y97_c00252{bottom:436.786740px;}
.y96_c00252{bottom:437.817763px;}
.y95_c00252{bottom:438.314983px;}
.y94_c00252{bottom:439.301344px;}
.y93_c00252{bottom:439.755942px;}
.y92_c00252{bottom:440.367774px;}
.y91_c00252{bottom:454.765362px;}
.y90_c00252{bottom:455.845404px;}
.y8f_c00252{bottom:457.944259px;}
.y8e_c00252{bottom:458.701906px;}
.y8d_c00252{bottom:458.987442px;}
.y8c_c00252{bottom:460.011963px;}
.y8b_c00252{bottom:460.905403px;}
.y8a_c00252{bottom:461.649361px;}
.y89_c00252{bottom:462.001939px;}
.y88_c00252{bottom:462.511752px;}
.y87_c00252{bottom:479.016468px;}
.y86_c00252{bottom:480.039961px;}
.y85_c00252{bottom:480.471523px;}
.y84_c00252{bottom:481.158672px;}
.y83_c00252{bottom:481.587123px;}
.y82_c00252{bottom:482.261904px;}
.y81_c00252{bottom:482.944615px;}
.y80_c00252{bottom:483.451071px;}
.y7f_c00252{bottom:484.018905px;}
.y7e_c00252{bottom:484.929000px;}
.y7d_c00252{bottom:503.709306px;}
.y7c_c00252{bottom:504.052299px;}
.y7b_c00252{bottom:505.182666px;}
.y7a_c00252{bottom:505.587987px;}
.y79_c00252{bottom:505.845153px;}
.y78_c00252{bottom:506.672259px;}
.y77_c00252{bottom:507.145662px;}
.y76_c00252{bottom:507.603000px;}
.y75_c00252{bottom:524.978229px;}
.y74_c00252{bottom:525.552297px;}
.y73_c00252{bottom:527.134449px;}
.y72_c00252{bottom:527.804184px;}
.y71_c00252{bottom:528.477318px;}
.y70_c00252{bottom:528.964134px;}
.y6f_c00252{bottom:529.693269px;}
.y6e_c00252{bottom:530.928888px;}
.y6d_c00252{bottom:531.904500px;}
.y6c_c00252{bottom:548.252520px;}
.y6b_c00252{bottom:549.025920px;}
.y6a_c00252{bottom:549.346656px;}
.y69_c00252{bottom:550.163448px;}
.y68_c00252{bottom:550.530528px;}
.y67_c00252{bottom:551.706048px;}
.y66_c00252{bottom:552.146568px;}
.y65_c00252{bottom:552.785976px;}
.y64_c00252{bottom:553.503000px;}
.y63_c00252{bottom:570.230985px;}
.y62_c00252{bottom:570.786054px;}
.y61_c00252{bottom:571.886644px;}
.y60_c00252{bottom:572.589153px;}
.y5f_c00252{bottom:573.044136px;}
.y5e_c00252{bottom:574.598797px;}
.y5d_c00252{bottom:575.177643px;}
.y5c_c00252{bottom:576.095532px;}
.y5b_c00252{bottom:576.730063px;}
.y5a_c00252{bottom:576.979156px;}
.y59_c00252{bottom:594.035776px;}
.y58_c00252{bottom:594.626694px;}
.y57_c00252{bottom:595.385709px;}
.y56_c00252{bottom:595.723204px;}
.y55_c00252{bottom:596.523205px;}
.y54_c00252{bottom:597.550313px;}
.y53_c00252{bottom:598.187670px;}
.y52_c00252{bottom:614.183546px;}
.y51_c00252{bottom:615.211028px;}
.y50_c00252{bottom:615.692182px;}
.y4f_c00252{bottom:616.415938px;}
.y4e_c00252{bottom:617.149954px;}
.y4d_c00252{bottom:618.257524px;}
.y4c_c00252{bottom:618.765138px;}
.y4b_c00252{bottom:619.897143px;}
.y4a_c00252{bottom:620.459611px;}
.y49_c00252{bottom:636.371845px;}
.y48_c00252{bottom:637.136073px;}
.y47_c00252{bottom:637.516007px;}
.y46_c00252{bottom:638.306083px;}
.y45_c00252{bottom:639.306747px;}
.y44_c00252{bottom:640.189933px;}
.y43_c00252{bottom:640.923210px;}
.y42_c00252{bottom:641.336916px;}
.y41_c00252{bottom:641.795167px;}
.y40_c00252{bottom:642.585444px;}
.y3f_c00252{bottom:643.144500px;}
.y3e_c00252{bottom:663.754500px;}
.y3d_c00252{bottom:687.985902px;}
.y3c_c00252{bottom:688.221054px;}
.y3b_c00252{bottom:688.936776px;}
.y3a_c00252{bottom:689.565492px;}
.y39_c00252{bottom:690.264360px;}
.y38_c00252{bottom:690.790896px;}
.y37_c00252{bottom:691.075818px;}
.y36_c00252{bottom:691.557288px;}
.y35_c00252{bottom:692.003394px;}
.y34_c00252{bottom:711.323478px;}
.y33_c00252{bottom:711.644586px;}
.y32_c00252{bottom:712.328562px;}
.y31_c00252{bottom:713.051694px;}
.y30_c00252{bottom:714.318846px;}
.y2f_c00252{bottom:715.225464px;}
.y2e_c00252{bottom:734.586114px;}
.y2d_c00252{bottom:735.224220px;}
.y2c_c00252{bottom:735.757614px;}
.y2b_c00252{bottom:736.121982px;}
.y2a_c00252{bottom:737.017560px;}
.y29_c00252{bottom:737.770338px;}
.y28_c00252{bottom:738.178812px;}
.y27_c00252{bottom:755.178768px;}
.y26_c00252{bottom:756.142776px;}
.y25_c00252{bottom:756.581934px;}
.y24_c00252{bottom:756.986454px;}
.y23_c00252{bottom:758.097750px;}
.y22_c00252{bottom:758.725122px;}
.y21_c00252{bottom:759.337068px;}
.y20_c00252{bottom:760.085544px;}
.y1f_c00252{bottom:760.861356px;}
.y1e_c00252{bottom:779.244948px;}
.y1d_c00252{bottom:780.474594px;}
.y1c_c00252{bottom:780.967188px;}
.y1b_c00252{bottom:782.070270px;}
.y1a_c00252{bottom:782.631222px;}
.y19_c00252{bottom:783.231090px;}
.y18_c00252{bottom:783.594702px;}
.y17_c00252{bottom:784.355046px;}
.y16_c00252{bottom:802.636530px;}
.y15_c00252{bottom:803.889216px;}
.y14_c00252{bottom:804.406146px;}
.y13_c00252{bottom:804.712608px;}
.y12_c00252{bottom:805.861158px;}
.y11_c00252{bottom:806.208882px;}
.y10_c00252{bottom:806.725668px;}
.yf_c00252{bottom:807.301152px;}
.ye_c00252{bottom:825.481698px;}
.yd_c00252{bottom:826.028394px;}
.yc_c00252{bottom:826.421370px;}
.yb_c00252{bottom:826.916856px;}
.ya_c00252{bottom:827.087946px;}
.y9_c00252{bottom:827.682144px;}
.y8_c00252{bottom:827.918250px;}
.y7_c00252{bottom:828.689424px;}
.y6_c00252{bottom:829.006890px;}
.y5_c00252{bottom:829.171500px;}
.y4_c00252{bottom:867.328420px;}
.y3_c00252{bottom:868.684308px;}
.y2_c00252{bottom:870.158784px;}
.y1_c00252{bottom:874.273500px;}
.h1c_c00252{height:31.505685px;}
.h4_c00252{height:60.904385px;}
.he_c00252{height:61.957929px;}
.h3_c00252{height:63.004536px;}
.ha_c00252{height:64.061560px;}
.h12_c00252{height:65.109406px;}
.h11_c00252{height:67.209710px;}
.h10_c00252{height:68.256688px;}
.hd_c00252{height:68.262318px;}
.h9_c00252{height:69.268461px;}
.h6_c00252{height:69.304989px;}
.h13_c00252{height:69.310013px;}
.h14_c00252{height:70.353517px;}
.h7_c00252{height:70.355065px;}
.hf_c00252{height:70.367023px;}
.h8_c00252{height:71.405141px;}
.hb_c00252{height:71.412887px;}
.h5_c00252{height:74.555367px;}
.h1a_c00252{height:75.603780px;}
.hc_c00252{height:75.613645px;}
.h1b_c00252{height:76.653832px;}
.h17_c00252{height:77.703885px;}
.h2_c00252{height:89.266108px;}
.h15_c00252{height:98.704935px;}
.h19_c00252{height:110.255512px;}
.h18_c00252{height:128.106405px;}
.h16_c00252{height:143.857192px;}
.h1_c00252{height:1005.000000px;}
.h0_c00252{height:1005.150000px;}
.w1_c00252{width:713.250000px;}
.w0_c00252{width:713.550000px;}
.x0_c00252{left:0.000000px;}
.x8b_c00252{left:14.034000px;}
.x85_c00252{left:20.687445px;}
.x7d_c00252{left:22.785555px;}
.x8c_c00252{left:25.512480px;}
.x79_c00252{left:36.638760px;}
.x92_c00252{left:47.875500px;}
.x93_c00252{left:68.325000px;}
.x6d_c00252{left:71.406930px;}
.x67_c00252{left:83.568000px;}
.x86_c00252{left:88.339830px;}
.x8d_c00252{left:89.518395px;}
.x7e_c00252{left:91.193580px;}
.x73_c00252{left:92.365530px;}
.x5_c00252{left:96.010500px;}
.x46_c00252{left:98.619346px;}
.x7f_c00252{left:103.121625px;}
.x3c_c00252{left:107.503383px;}
.x6_c00252{left:109.728000px;}
.x32_c00252{left:110.994000px;}
.xf_c00252{left:112.154418px;}
.x8e_c00252{left:116.076060px;}
.x6e_c00252{left:123.904230px;}
.x74_c00252{left:126.831960px;}
.x81_c00252{left:133.379955px;}
.x7_c00252{left:136.183500px;}
.x24_c00252{left:138.058398px;}
.x33_c00252{left:140.418000px;}
.x2b_c00252{left:143.467200px;}
.x42_c00252{left:148.203951px;}
.x6a_c00252{left:150.049230px;}
.x17_c00252{left:152.038224px;}
.x10_c00252{left:153.235428px;}
.x5e_c00252{left:154.721720px;}
.x1_c00252{left:156.172500px;}
.x5a_c00252{left:163.749000px;}
.x64_c00252{left:166.846416px;}
.x18_c00252{left:171.212622px;}
.x29_c00252{left:173.698152px;}
.x57_c00252{left:177.274500px;}
.x2c_c00252{left:180.464250px;}
.x34_c00252{left:182.011500px;}
.x47_c00252{left:184.432597px;}
.x11_c00252{left:190.175046px;}
.x25_c00252{left:191.788602px;}
.x5f_c00252{left:193.894394px;}
.x5b_c00252{left:197.151000px;}
.x8_c00252{left:200.448000px;}
.x3d_c00252{left:201.661678px;}
.x19_c00252{left:202.823976px;}
.x94_c00252{left:204.897000px;}
.x35_c00252{left:206.130000px;}
.x7a_c00252{left:207.280575px;}
.x43_c00252{left:208.659259px;}
.x48_c00252{left:211.976043px;}
.x12_c00252{left:215.026452px;}
.x4e_c00252{left:219.039000px;}
.x9_c00252{left:220.123500px;}
.x95_c00252{left:224.766000px;}
.x36_c00252{left:227.904000px;}
.x3e_c00252{left:229.878720px;}
.x1a_c00252{left:232.317492px;}
.x1e_c00252{left:235.841898px;}
.x53_c00252{left:241.146000px;}
.x2d_c00252{left:242.834994px;}
.x65_c00252{left:244.936764px;}
.x6f_c00252{left:253.522365px;}
.x58_c00252{left:254.722500px;}
.x26_c00252{left:255.793572px;}
.x31_c00252{left:260.935500px;}
.x2a_c00252{left:264.166974px;}
.x37_c00252{left:266.497500px;}
.xa_c00252{left:269.640000px;}
.x1f_c00252{left:272.745684px;}
.x44_c00252{left:275.635324px;}
.x27_c00252{left:281.781942px;}
.xb_c00252{left:283.897500px;}
.x49_c00252{left:285.981721px;}
.x87_c00252{left:288.072360px;}
.x1b_c00252{left:290.361114px;}
.x3f_c00252{left:291.409888px;}
.x4f_c00252{left:292.509000px;}
.x54_c00252{left:293.871000px;}
.x13_c00252{left:297.111990px;}
.x66_c00252{left:299.230428px;}
.x75_c00252{left:303.248370px;}
.x4a_c00252{left:307.637895px;}
.x60_c00252{left:309.831441px;}
.x38_c00252{left:312.981000px;}
.x1c_c00252{left:316.283436px;}
.x88_c00252{left:317.284350px;}
.x14_c00252{left:319.024968px;}
.x45_c00252{left:320.322034px;}
.xc_c00252{left:325.188000px;}
.x40_c00252{left:332.174658px;}
.x76_c00252{left:336.583875px;}
.x20_c00252{left:338.099760px;}
.x4b_c00252{left:341.058112px;}
.x2e_c00252{left:344.965770px;}
.x68_c00252{left:345.984000px;}
.x82_c00252{left:347.268420px;}
.x61_c00252{left:349.721090px;}
.x7b_c00252{left:354.387450px;}
.x15_c00252{left:355.976586px;}
.xd_c00252{left:357.936000px;}
.x21_c00252{left:361.933338px;}
.x28_c00252{left:365.404926px;}
.x50_c00252{left:366.501000px;}
.x89_c00252{left:368.303730px;}
.x83_c00252{left:371.277780px;}
.x2_c00252{left:372.736500px;}
.x6b_c00252{left:375.639420px;}
.x1d_c00252{left:380.998500px;}
.x51_c00252{left:386.547000px;}
.x22_c00252{left:387.778290px;}
.x59_c00252{left:388.914000px;}
.x4c_c00252{left:393.455617px;}
.x55_c00252{left:396.229500px;}
.x5c_c00252{left:397.804500px;}
.x2f_c00252{left:399.983604px;}
.x8f_c00252{left:402.385590px;}
.xe_c00252{left:403.494000px;}
.x70_c00252{left:406.079655px;}
.x39_c00252{left:407.230500px;}
.x8a_c00252{left:413.110860px;}
.x84_c00252{left:415.764390px;}
.x30_c00252{left:418.079388px;}
.x4d_c00252{left:419.905620px;}
.x56_c00252{left:422.323500px;}
.x90_c00252{left:424.120305px;}
.x3a_c00252{left:427.227000px;}
.x52_c00252{left:434.884500px;}
.x96_c00252{left:442.225500px;}
.x23_c00252{left:444.483888px;}
.x16_c00252{left:445.489944px;}
.x3_c00252{left:450.340500px;}
.x71_c00252{left:453.061890px;}
.x41_c00252{left:456.224024px;}
.x5d_c00252{left:458.010000px;}
.x62_c00252{left:460.208841px;}
.x3b_c00252{left:467.449500px;}
.x97_c00252{left:489.639000px;}
.x77_c00252{left:493.907940px;}
.x63_c00252{left:517.032903px;}
.x4_c00252{left:521.703000px;}
.x78_c00252{left:528.974340px;}
.x6c_c00252{left:548.438865px;}
.x7c_c00252{left:569.077050px;}
.x91_c00252{left:571.554375px;}
.x80_c00252{left:573.744570px;}
.x72_c00252{left:575.452095px;}
.x69_c00252{left:577.159500px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
.fs1a_c00252{font-size:28.005054pt;}
.fs2_c00252{font-size:54.137231pt;}
.fsc_c00252{font-size:55.073715pt;}
.fs1_c00252{font-size:56.004032pt;}
.fs8_c00252{font-size:56.943609pt;}
.fs10_c00252{font-size:57.875028pt;}
.fsf_c00252{font-size:59.741964pt;}
.fse_c00252{font-size:60.672612pt;}
.fsb_c00252{font-size:60.677616pt;}
.fs7_c00252{font-size:61.571966pt;}
.fs4_c00252{font-size:61.604435pt;}
.fs11_c00252{font-size:61.608901pt;}
.fs12_c00252{font-size:62.536460pt;}
.fs5_c00252{font-size:62.537836pt;}
.fsd_c00252{font-size:62.548465pt;}
.fs6_c00252{font-size:63.471236pt;}
.fs9_c00252{font-size:63.478121pt;}
.fs3_c00252{font-size:66.271438pt;}
.fs18_c00252{font-size:67.203360pt;}
.fsa_c00252{font-size:67.212129pt;}
.fs19_c00252{font-size:68.136740pt;}
.fs15_c00252{font-size:69.070120pt;}
.fs0_c00252{font-size:79.347652pt;}
.fs13_c00252{font-size:87.737720pt;}
.fs17_c00252{font-size:98.004900pt;}
.fs16_c00252{font-size:113.872360pt;}
.fs14_c00252{font-size:127.873060pt;}
.y0_c00252{bottom:0.000000pt;}
.ye2_c00252{bottom:99.375205pt;}
.ye1_c00252{bottom:100.175967pt;}
.ye0_c00252{bottom:103.848616pt;}
.ydf_c00252{bottom:104.184181pt;}
.yde_c00252{bottom:106.490731pt;}
.ydd_c00252{bottom:106.836100pt;}
.ydc_c00252{bottom:107.281333pt;}
.ydb_c00252{bottom:116.374107pt;}
.yda_c00252{bottom:120.567587pt;}
.yd9_c00252{bottom:121.186160pt;}
.yd8_c00252{bottom:125.707613pt;}
.yd7_c00252{bottom:127.119933pt;}
.yd6_c00252{bottom:129.329027pt;}
.yd5_c00252{bottom:130.083813pt;}
.yd4_c00252{bottom:131.904880pt;}
.yd3_c00252{bottom:132.230933pt;}
.yd2_c00252{bottom:140.394733pt;}
.yd1_c00252{bottom:143.517067pt;}
.yd0_c00252{bottom:143.974400pt;}
.ycf_c00252{bottom:144.392733pt;}
.yce_c00252{bottom:145.390293pt;}
.ycd_c00252{bottom:145.961987pt;}
.ycc_c00252{bottom:147.508960pt;}
.ycb_c00252{bottom:148.924693pt;}
.yca_c00252{bottom:149.494427pt;}
.yc9_c00252{bottom:149.868267pt;}
.yc8_c00252{bottom:151.191027pt;}
.yc7_c00252{bottom:161.087147pt;}
.yc6_c00252{bottom:163.334533pt;}
.yc5_c00252{bottom:164.031533pt;}
.yc4_c00252{bottom:164.861680pt;}
.yc3_c00252{bottom:165.309787pt;}
.yc2_c00252{bottom:166.872653pt;}
.yc1_c00252{bottom:168.002360pt;}
.yc0_c00252{bottom:168.500880pt;}
.ybf_c00252{bottom:169.303227pt;}
.ybe_c00252{bottom:171.377853pt;}
.ybd_c00252{bottom:180.511720pt;}
.ybc_c00252{bottom:186.947173pt;}
.ybb_c00252{bottom:188.878120pt;}
.yba_c00252{bottom:190.317987pt;}
.yb9_c00252{bottom:214.849227pt;}
.yb8_c00252{bottom:219.787387pt;}
.yb7_c00252{bottom:222.583507pt;}
.yb6_c00252{bottom:223.678293pt;}
.yb5_c00252{bottom:237.268213pt;}
.yb4_c00252{bottom:241.656813pt;}
.yb3_c00252{bottom:244.664600pt;}
.yb2_c00252{bottom:245.200093pt;}
.yb1_c00252{bottom:247.005120pt;}
.yb0_c00252{bottom:248.153613pt;}
.yaf_c00252{bottom:263.615027pt;}
.yae_c00252{bottom:264.275347pt;}
.yad_c00252{bottom:264.773733pt;}
.yac_c00252{bottom:265.257920pt;}
.yab_c00252{bottom:267.010920pt;}
.yaa_c00252{bottom:267.484587pt;}
.ya9_c00252{bottom:269.994160pt;}
.ya8_c00252{bottom:270.484547pt;}
.ya7_c00252{bottom:285.220347pt;}
.ya6_c00252{bottom:287.179013pt;}
.ya5_c00252{bottom:287.931333pt;}
.ya4_c00252{bottom:290.372840pt;}
.ya3_c00252{bottom:291.092627pt;}
.ya2_c00252{bottom:292.446427pt;}
.ya1_c00252{bottom:293.286440pt;}
.ya0_c00252{bottom:322.554840pt;}
.y9f_c00252{bottom:325.473640pt;}
.y9e_c00252{bottom:326.869533pt;}
.y9d_c00252{bottom:329.284400pt;}
.y9c_c00252{bottom:358.715187pt;}
.y9b_c00252{bottom:360.770080pt;}
.y9a_c00252{bottom:363.102667pt;}
.y99_c00252{bottom:387.292508pt;}
.y98_c00252{bottom:387.534580pt;}
.y97_c00252{bottom:388.254880pt;}
.y96_c00252{bottom:389.171345pt;}
.y95_c00252{bottom:389.613319pt;}
.y94_c00252{bottom:390.490084pt;}
.y93_c00252{bottom:390.894171pt;}
.y92_c00252{bottom:391.438021pt;}
.y91_c00252{bottom:404.235877pt;}
.y90_c00252{bottom:405.195915pt;}
.y8f_c00252{bottom:407.061564pt;}
.y8e_c00252{bottom:407.735028pt;}
.y8d_c00252{bottom:407.988837pt;}
.y8c_c00252{bottom:408.899523pt;}
.y8b_c00252{bottom:409.693692pt;}
.y8a_c00252{bottom:410.354988pt;}
.y89_c00252{bottom:410.668391pt;}
.y88_c00252{bottom:411.121557pt;}
.y87_c00252{bottom:425.792416pt;}
.y86_c00252{bottom:426.702188pt;}
.y85_c00252{bottom:427.085799pt;}
.y84_c00252{bottom:427.696597pt;}
.y83_c00252{bottom:428.077443pt;}
.y82_c00252{bottom:428.677248pt;}
.y81_c00252{bottom:429.284103pt;}
.y80_c00252{bottom:429.734285pt;}
.y7f_c00252{bottom:430.239027pt;}
.y7e_c00252{bottom:431.048000pt;}
.y7d_c00252{bottom:447.741605pt;}
.y7c_c00252{bottom:448.046488pt;}
.y7b_c00252{bottom:449.051259pt;}
.y7a_c00252{bottom:449.411544pt;}
.y79_c00252{bottom:449.640136pt;}
.y78_c00252{bottom:450.375341pt;}
.y77_c00252{bottom:450.796144pt;}
.y76_c00252{bottom:451.202667pt;}
.y75_c00252{bottom:466.647315pt;}
.y74_c00252{bottom:467.157597pt;}
.y73_c00252{bottom:468.563955pt;}
.y72_c00252{bottom:469.159275pt;}
.y71_c00252{bottom:469.757616pt;}
.y70_c00252{bottom:470.190341pt;}
.y6f_c00252{bottom:470.838461pt;}
.y6e_c00252{bottom:471.936789pt;}
.y6d_c00252{bottom:472.804000pt;}
.y6c_c00252{bottom:487.335573pt;}
.y6b_c00252{bottom:488.023040pt;}
.y6a_c00252{bottom:488.308139pt;}
.y69_c00252{bottom:489.034176pt;}
.y68_c00252{bottom:489.360469pt;}
.y67_c00252{bottom:490.405376pt;}
.y66_c00252{bottom:490.796949pt;}
.y65_c00252{bottom:491.365312pt;}
.y64_c00252{bottom:492.002667pt;}
.y63_c00252{bottom:506.871987pt;}
.y62_c00252{bottom:507.365381pt;}
.y61_c00252{bottom:508.343684pt;}
.y60_c00252{bottom:508.968136pt;}
.y5f_c00252{bottom:509.372565pt;}
.y5e_c00252{bottom:510.754487pt;}
.y5d_c00252{bottom:511.269016pt;}
.y5c_c00252{bottom:512.084917pt;}
.y5b_c00252{bottom:512.648945pt;}
.y5a_c00252{bottom:512.870361pt;}
.y59_c00252{bottom:528.031801pt;}
.y58_c00252{bottom:528.557061pt;}
.y57_c00252{bottom:529.231741pt;}
.y56_c00252{bottom:529.531737pt;}
.y55_c00252{bottom:530.242849pt;}
.y54_c00252{bottom:531.155833pt;}
.y53_c00252{bottom:531.722373pt;}
.y52_c00252{bottom:545.940929pt;}
.y51_c00252{bottom:546.854247pt;}
.y50_c00252{bottom:547.281940pt;}
.y4f_c00252{bottom:547.925279pt;}
.y4e_c00252{bottom:548.577737pt;}
.y4d_c00252{bottom:549.562244pt;}
.y4c_c00252{bottom:550.013456pt;}
.y4b_c00252{bottom:551.019683pt;}
.y4a_c00252{bottom:551.519655pt;}
.y49_c00252{bottom:565.663863pt;}
.y48_c00252{bottom:566.343176pt;}
.y47_c00252{bottom:566.680895pt;}
.y46_c00252{bottom:567.383185pt;}
.y45_c00252{bottom:568.272664pt;}
.y44_c00252{bottom:569.057719pt;}
.y43_c00252{bottom:569.709520pt;}
.y42_c00252{bottom:570.077259pt;}
.y41_c00252{bottom:570.484593pt;}
.y40_c00252{bottom:571.187061pt;}
.y3f_c00252{bottom:571.684000pt;}
.y3e_c00252{bottom:590.004000pt;}
.y3d_c00252{bottom:611.543024pt;}
.y3c_c00252{bottom:611.752048pt;}
.y3b_c00252{bottom:612.388245pt;}
.y3a_c00252{bottom:612.947104pt;}
.y39_c00252{bottom:613.568320pt;}
.y38_c00252{bottom:614.036352pt;}
.y37_c00252{bottom:614.289616pt;}
.y36_c00252{bottom:614.717589pt;}
.y35_c00252{bottom:615.114128pt;}
.y34_c00252{bottom:632.287536pt;}
.y33_c00252{bottom:632.572965pt;}
.y32_c00252{bottom:633.180944pt;}
.y31_c00252{bottom:633.823728pt;}
.y30_c00252{bottom:634.950085pt;}
.y2f_c00252{bottom:635.755968pt;}
.y2e_c00252{bottom:652.965435pt;}
.y2d_c00252{bottom:653.532640pt;}
.y2c_c00252{bottom:654.006768pt;}
.y2b_c00252{bottom:654.330651pt;}
.y2a_c00252{bottom:655.126720pt;}
.y29_c00252{bottom:655.795856pt;}
.y28_c00252{bottom:656.158944pt;}
.y27_c00252{bottom:671.270016pt;}
.y26_c00252{bottom:672.126912pt;}
.y25_c00252{bottom:672.517275pt;}
.y24_c00252{bottom:672.876848pt;}
.y23_c00252{bottom:673.864667pt;}
.y22_c00252{bottom:674.422331pt;}
.y21_c00252{bottom:674.966283pt;}
.y20_c00252{bottom:675.631595pt;}
.y1f_c00252{bottom:676.321205pt;}
.y1e_c00252{bottom:692.662176pt;}
.y1d_c00252{bottom:693.755195pt;}
.y1c_c00252{bottom:694.193056pt;}
.y1b_c00252{bottom:695.173573pt;}
.y1a_c00252{bottom:695.672197pt;}
.y19_c00252{bottom:696.205413pt;}
.y18_c00252{bottom:696.528624pt;}
.y17_c00252{bottom:697.204485pt;}
.y16_c00252{bottom:713.454693pt;}
.y15_c00252{bottom:714.568192pt;}
.y14_c00252{bottom:715.027685pt;}
.y13_c00252{bottom:715.300096pt;}
.y12_c00252{bottom:716.321029pt;}
.y11_c00252{bottom:716.630117pt;}
.y10_c00252{bottom:717.089483pt;}
.yf_c00252{bottom:717.601024pt;}
.ye_c00252{bottom:733.761509pt;}
.yd_c00252{bottom:734.247461pt;}
.yc_c00252{bottom:734.596773pt;}
.yb_c00252{bottom:735.037205pt;}
.ya_c00252{bottom:735.189285pt;}
.y9_c00252{bottom:735.717461pt;}
.y8_c00252{bottom:735.927333pt;}
.y7_c00252{bottom:736.612821pt;}
.y6_c00252{bottom:736.895013pt;}
.y5_c00252{bottom:737.041333pt;}
.y4_c00252{bottom:770.958596pt;}
.y3_c00252{bottom:772.163829pt;}
.y2_c00252{bottom:773.474475pt;}
.y1_c00252{bottom:777.132000pt;}
.h1c_c00252{height:28.005054pt;}
.h4_c00252{height:54.137231pt;}
.he_c00252{height:55.073715pt;}
.h3_c00252{height:56.004032pt;}
.ha_c00252{height:56.943609pt;}
.h12_c00252{height:57.875028pt;}
.h11_c00252{height:59.741964pt;}
.h10_c00252{height:60.672612pt;}
.hd_c00252{height:60.677616pt;}
.h9_c00252{height:61.571966pt;}
.h6_c00252{height:61.604435pt;}
.h13_c00252{height:61.608901pt;}
.h14_c00252{height:62.536460pt;}
.h7_c00252{height:62.537836pt;}
.hf_c00252{height:62.548465pt;}
.h8_c00252{height:63.471236pt;}
.hb_c00252{height:63.478121pt;}
.h5_c00252{height:66.271438pt;}
.h1a_c00252{height:67.203360pt;}
.hc_c00252{height:67.212129pt;}
.h1b_c00252{height:68.136740pt;}
.h17_c00252{height:69.070120pt;}
.h2_c00252{height:79.347652pt;}
.h15_c00252{height:87.737720pt;}
.h19_c00252{height:98.004900pt;}
.h18_c00252{height:113.872360pt;}
.h16_c00252{height:127.873060pt;}
.h1_c00252{height:893.333333pt;}
.h0_c00252{height:893.466667pt;}
.w1_c00252{width:634.000000pt;}
.w0_c00252{width:634.266667pt;}
.x0_c00252{left:0.000000pt;}
.x8b_c00252{left:12.474667pt;}
.x85_c00252{left:18.388840pt;}
.x7d_c00252{left:20.253827pt;}
.x8c_c00252{left:22.677760pt;}
.x79_c00252{left:32.567787pt;}
.x92_c00252{left:42.556000pt;}
.x93_c00252{left:60.733333pt;}
.x6d_c00252{left:63.472827pt;}
.x67_c00252{left:74.282667pt;}
.x86_c00252{left:78.524293pt;}
.x8d_c00252{left:79.571907pt;}
.x7e_c00252{left:81.060960pt;}
.x73_c00252{left:82.102693pt;}
.x5_c00252{left:85.342667pt;}
.x46_c00252{left:87.661641pt;}
.x7f_c00252{left:91.663667pt;}
.x3c_c00252{left:95.558563pt;}
.x6_c00252{left:97.536000pt;}
.x32_c00252{left:98.661333pt;}
.xf_c00252{left:99.692816pt;}
.x8e_c00252{left:103.178720pt;}
.x6e_c00252{left:110.137093pt;}
.x74_c00252{left:112.739520pt;}
.x81_c00252{left:118.559960pt;}
.x7_c00252{left:121.052000pt;}
.x24_c00252{left:122.718576pt;}
.x33_c00252{left:124.816000pt;}
.x2b_c00252{left:127.526400pt;}
.x42_c00252{left:131.736845pt;}
.x6a_c00252{left:133.377093pt;}
.x17_c00252{left:135.145088pt;}
.x10_c00252{left:136.209269pt;}
.x5e_c00252{left:137.530417pt;}
.x1_c00252{left:138.820000pt;}
.x5a_c00252{left:145.554667pt;}
.x64_c00252{left:148.307925pt;}
.x18_c00252{left:152.188997pt;}
.x29_c00252{left:154.398357pt;}
.x57_c00252{left:157.577333pt;}
.x2c_c00252{left:160.412667pt;}
.x34_c00252{left:161.788000pt;}
.x47_c00252{left:163.940087pt;}
.x11_c00252{left:169.044485pt;}
.x25_c00252{left:170.478757pt;}
.x5f_c00252{left:172.350572pt;}
.x5b_c00252{left:175.245333pt;}
.x8_c00252{left:178.176000pt;}
.x3d_c00252{left:179.254825pt;}
.x19_c00252{left:180.287979pt;}
.x94_c00252{left:182.130667pt;}
.x35_c00252{left:183.226667pt;}
.x7a_c00252{left:184.249400pt;}
.x43_c00252{left:185.474897pt;}
.x48_c00252{left:188.423149pt;}
.x12_c00252{left:191.134624pt;}
.x4e_c00252{left:194.701333pt;}
.x9_c00252{left:195.665333pt;}
.x95_c00252{left:199.792000pt;}
.x36_c00252{left:202.581333pt;}
.x3e_c00252{left:204.336640pt;}
.x1a_c00252{left:206.504437pt;}
.x1e_c00252{left:209.637243pt;}
.x53_c00252{left:214.352000pt;}
.x2d_c00252{left:215.853328pt;}
.x65_c00252{left:217.721568pt;}
.x6f_c00252{left:225.353213pt;}
.x58_c00252{left:226.420000pt;}
.x26_c00252{left:227.372064pt;}
.x31_c00252{left:231.942667pt;}
.x2a_c00252{left:234.815088pt;}
.x37_c00252{left:236.886667pt;}
.xa_c00252{left:239.680000pt;}
.x1f_c00252{left:242.440608pt;}
.x44_c00252{left:245.009177pt;}
.x27_c00252{left:250.472837pt;}
.xb_c00252{left:252.353333pt;}
.x49_c00252{left:254.205975pt;}
.x87_c00252{left:256.064320pt;}
.x1b_c00252{left:258.098768pt;}
.x3f_c00252{left:259.031012pt;}
.x4f_c00252{left:260.008000pt;}
.x54_c00252{left:261.218667pt;}
.x13_c00252{left:264.099547pt;}
.x66_c00252{left:265.982603pt;}
.x75_c00252{left:269.554107pt;}
.x4a_c00252{left:273.455907pt;}
.x60_c00252{left:275.405725pt;}
.x38_c00252{left:278.205333pt;}
.x1c_c00252{left:281.140832pt;}
.x88_c00252{left:282.030533pt;}
.x14_c00252{left:283.577749pt;}
.x45_c00252{left:284.730697pt;}
.xc_c00252{left:289.056000pt;}
.x40_c00252{left:295.266363pt;}
.x76_c00252{left:299.185667pt;}
.x20_c00252{left:300.533120pt;}
.x4b_c00252{left:303.162767pt;}
.x2e_c00252{left:306.636240pt;}
.x68_c00252{left:307.541333pt;}
.x82_c00252{left:308.683040pt;}
.x61_c00252{left:310.863191pt;}
.x7b_c00252{left:315.011067pt;}
.x15_c00252{left:316.423632pt;}
.xd_c00252{left:318.165333pt;}
.x21_c00252{left:321.718523pt;}
.x28_c00252{left:324.804379pt;}
.x50_c00252{left:325.778667pt;}
.x89_c00252{left:327.381093pt;}
.x83_c00252{left:330.024693pt;}
.x2_c00252{left:331.321333pt;}
.x6b_c00252{left:333.901707pt;}
.x1d_c00252{left:338.665333pt;}
.x51_c00252{left:343.597333pt;}
.x22_c00252{left:344.691813pt;}
.x59_c00252{left:345.701333pt;}
.x4c_c00252{left:349.738327pt;}
.x55_c00252{left:352.204000pt;}
.x5c_c00252{left:353.604000pt;}
.x2f_c00252{left:355.540981pt;}
.x8f_c00252{left:357.676080pt;}
.xe_c00252{left:358.661333pt;}
.x70_c00252{left:360.959693pt;}
.x39_c00252{left:361.982667pt;}
.x8a_c00252{left:367.209653pt;}
.x84_c00252{left:369.568347pt;}
.x30_c00252{left:371.626123pt;}
.x4d_c00252{left:373.249440pt;}
.x56_c00252{left:375.398667pt;}
.x90_c00252{left:376.995827pt;}
.x3a_c00252{left:379.757333pt;}
.x52_c00252{left:386.564000pt;}
.x96_c00252{left:393.089333pt;}
.x23_c00252{left:395.096789pt;}
.x16_c00252{left:395.991061pt;}
.x3_c00252{left:400.302667pt;}
.x71_c00252{left:402.721680pt;}
.x41_c00252{left:405.532465pt;}
.x5d_c00252{left:407.120000pt;}
.x62_c00252{left:409.074525pt;}
.x3b_c00252{left:415.510667pt;}
.x97_c00252{left:435.234667pt;}
.x77_c00252{left:439.029280pt;}
.x63_c00252{left:459.584803pt;}
.x4_c00252{left:463.736000pt;}
.x78_c00252{left:470.199413pt;}
.x6c_c00252{left:487.501213pt;}
.x7c_c00252{left:505.846267pt;}
.x91_c00252{left:508.048333pt;}
.x80_c00252{left:509.995173pt;}
.x72_c00252{left:511.512973pt;}
.x69_c00252{left:513.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m68_c00253{transform:matrix(0.015198,-0.000258,0.004249,0.249964,0,0);-ms-transform:matrix(0.015198,-0.000258,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015198,-0.000258,0.004249,0.249964,0,0);}
.m43_c00253{transform:matrix(0.015363,-0.000261,0.004249,0.249964,0,0);-ms-transform:matrix(0.015363,-0.000261,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015363,-0.000261,0.004249,0.249964,0,0);}
.me8_c00253{transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066860,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.070090,-0.001192,0.004249,0.249964,0,0);-ms-transform:matrix(0.070090,-0.001192,0.004249,0.249964,0,0);-webkit-transform:matrix(0.070090,-0.001192,0.004249,0.249964,0,0);}
.m82_c00253{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);}
.mbc_c00253{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);}
.m4d_c00253{transform:matrix(0.143374,-0.002437,0.004249,0.249964,0,0);-ms-transform:matrix(0.143374,-0.002437,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143374,-0.002437,0.004249,0.249964,0,0);}
.m48_c00253{transform:matrix(0.144829,-0.002462,0.004249,0.249964,0,0);-ms-transform:matrix(0.144829,-0.002462,0.004249,0.249964,0,0);-webkit-transform:matrix(0.144829,-0.002462,0.004249,0.249964,0,0);}
.m58_c00253{transform:matrix(0.149918,-0.002549,0.004249,0.249964,0,0);-ms-transform:matrix(0.149918,-0.002549,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149918,-0.002549,0.004249,0.249964,0,0);}
.m95_c00253{transform:matrix(0.150418,-0.002557,0.004249,0.249964,0,0);-ms-transform:matrix(0.150418,-0.002557,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150418,-0.002557,0.004249,0.249964,0,0);}
.m39_c00253{transform:matrix(0.151243,-0.002571,0.004249,0.249964,0,0);-ms-transform:matrix(0.151243,-0.002571,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151243,-0.002571,0.004249,0.249964,0,0);}
.m4b_c00253{transform:matrix(0.154268,-0.002623,0.004249,0.249964,0,0);-ms-transform:matrix(0.154268,-0.002623,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154268,-0.002623,0.004249,0.249964,0,0);}
.m80_c00253{transform:matrix(0.154328,-0.002624,0.004249,0.249964,0,0);-ms-transform:matrix(0.154328,-0.002624,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154328,-0.002624,0.004249,0.249964,0,0);}
.m8d_c00253{transform:matrix(0.157012,-0.002669,0.004249,0.249964,0,0);-ms-transform:matrix(0.157012,-0.002669,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157012,-0.002669,0.004249,0.249964,0,0);}
.m89_c00253{transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);-ms-transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157497,-0.002677,0.004249,0.249964,0,0);}
.m73_c00253{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);}
.m59_c00253{transform:matrix(0.159757,-0.002716,0.004249,0.249964,0,0);-ms-transform:matrix(0.159757,-0.002716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159757,-0.002716,0.004249,0.249964,0,0);}
.m33_c00253{transform:matrix(0.159982,-0.002720,0.004249,0.249964,0,0);-ms-transform:matrix(0.159982,-0.002720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159982,-0.002720,0.004249,0.249964,0,0);}
.m4a_c00253{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);}
.md1_c00253{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);}
.me4_c00253{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);}
.med_c00253{transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.164451,-0.002796,0.004249,0.249964,0,0);-ms-transform:matrix(0.164451,-0.002796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164451,-0.002796,0.004249,0.249964,0,0);}
.me7_c00253{transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);}
.mc9_c00253{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);}
.m16_c00253{transform:matrix(0.167191,-0.002842,0.004249,0.249964,0,0);-ms-transform:matrix(0.167191,-0.002842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167191,-0.002842,0.004249,0.249964,0,0);}
.m38_c00253{transform:matrix(0.167786,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167786,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167786,-0.002852,0.004249,0.249964,0,0);}
.me5_c00253{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);}
.m79_c00253{transform:matrix(0.169056,-0.002874,0.004249,0.249964,0,0);-ms-transform:matrix(0.169056,-0.002874,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169056,-0.002874,0.004249,0.249964,0,0);}
.m2e_c00253{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);}
.ma4_c00253{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);}
.m72_c00253{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);}
.m76_c00253{transform:matrix(0.170545,-0.002899,0.004249,0.249964,0,0);-ms-transform:matrix(0.170545,-0.002899,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170545,-0.002899,0.004249,0.249964,0,0);}
.mba_c00253{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);}
.m81_c00253{transform:matrix(0.171100,-0.002909,0.004249,0.249964,0,0);-ms-transform:matrix(0.171100,-0.002909,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171100,-0.002909,0.004249,0.249964,0,0);}
.me1_c00253{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);}
.m8b_c00253{transform:matrix(0.171900,-0.002922,0.004249,0.249964,0,0);-ms-transform:matrix(0.171900,-0.002922,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171900,-0.002922,0.004249,0.249964,0,0);}
.m52_c00253{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);}
.mb_c00253{transform:matrix(0.172130,-0.002926,0.004249,0.249964,0,0);-ms-transform:matrix(0.172130,-0.002926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172130,-0.002926,0.004249,0.249964,0,0);}
.mc7_c00253{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);}
.m50_c00253{transform:matrix(0.173345,-0.002947,0.004249,0.249964,0,0);-ms-transform:matrix(0.173345,-0.002947,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173345,-0.002947,0.004249,0.249964,0,0);}
.me_c00253{transform:matrix(0.173365,-0.002947,0.004249,0.249964,0,0);-ms-transform:matrix(0.173365,-0.002947,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173365,-0.002947,0.004249,0.249964,0,0);}
.mb9_c00253{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);}
.m93_c00253{transform:matrix(0.176125,-0.002994,0.004249,0.249964,0,0);-ms-transform:matrix(0.176125,-0.002994,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176125,-0.002994,0.004249,0.249964,0,0);}
.m92_c00253{transform:matrix(0.176899,-0.003007,0.004249,0.249964,0,0);-ms-transform:matrix(0.176899,-0.003007,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176899,-0.003007,0.004249,0.249964,0,0);}
.m75_c00253{transform:matrix(0.177364,-0.003015,0.004249,0.249964,0,0);-ms-transform:matrix(0.177364,-0.003015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177364,-0.003015,0.004249,0.249964,0,0);}
.mb7_c00253{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);}
.mbb_c00253{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);}
.me0_c00253{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);}
.m8a_c00253{transform:matrix(0.178134,-0.003028,0.004249,0.249964,0,0);-ms-transform:matrix(0.178134,-0.003028,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178134,-0.003028,0.004249,0.249964,0,0);}
.m99_c00253{transform:matrix(0.178479,-0.003034,0.004249,0.249964,0,0);-ms-transform:matrix(0.178479,-0.003034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178479,-0.003034,0.004249,0.249964,0,0);}
.me2_c00253{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);}
.mb8_c00253{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);}
.me3_c00253{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);}
.me6_c00253{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);}
.m8c_c00253{transform:matrix(0.179919,-0.003059,0.004249,0.249964,0,0);-ms-transform:matrix(0.179919,-0.003059,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179919,-0.003059,0.004249,0.249964,0,0);}
.m6_c00253{transform:matrix(0.181919,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181919,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181919,-0.003093,0.004249,0.249964,0,0);}
.m1d_c00253{transform:matrix(0.182019,-0.003094,0.004249,0.249964,0,0);-ms-transform:matrix(0.182019,-0.003094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182019,-0.003094,0.004249,0.249964,0,0);}
.m36_c00253{transform:matrix(0.184033,-0.003129,0.004249,0.249964,0,0);-ms-transform:matrix(0.184033,-0.003129,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184033,-0.003129,0.004249,0.249964,0,0);}
.m4f_c00253{transform:matrix(0.185483,-0.003153,0.004249,0.249964,0,0);-ms-transform:matrix(0.185483,-0.003153,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185483,-0.003153,0.004249,0.249964,0,0);}
.m1c_c00253{transform:matrix(0.185893,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185893,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185893,-0.003160,0.004249,0.249964,0,0);}
.m23_c00253{transform:matrix(0.185898,-0.003160,0.004249,0.249964,0,0);-ms-transform:matrix(0.185898,-0.003160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185898,-0.003160,0.004249,0.249964,0,0);}
.m6d_c00253{transform:matrix(0.187508,-0.003188,0.004249,0.249964,0,0);-ms-transform:matrix(0.187508,-0.003188,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187508,-0.003188,0.004249,0.249964,0,0);}
.m2d_c00253{transform:matrix(0.187888,-0.003194,0.004249,0.249964,0,0);-ms-transform:matrix(0.187888,-0.003194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187888,-0.003194,0.004249,0.249964,0,0);}
.mbe_c00253{transform:matrix(0.188274,-0.010376,0.013757,0.249621,0,0);-ms-transform:matrix(0.188274,-0.010376,0.013757,0.249621,0,0);-webkit-transform:matrix(0.188274,-0.010376,0.013757,0.249621,0,0);}
.md5_c00253{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);}
.m46_c00253{transform:matrix(0.189123,-0.003215,0.004249,0.249964,0,0);-ms-transform:matrix(0.189123,-0.003215,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189123,-0.003215,0.004249,0.249964,0,0);}
.m13_c00253{transform:matrix(0.189158,-0.003216,0.004249,0.249964,0,0);-ms-transform:matrix(0.189158,-0.003216,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189158,-0.003216,0.004249,0.249964,0,0);}
.mb6_c00253{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);}
.m56_c00253{transform:matrix(0.189293,-0.003218,0.004249,0.249964,0,0);-ms-transform:matrix(0.189293,-0.003218,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189293,-0.003218,0.004249,0.249964,0,0);}
.m49_c00253{transform:matrix(0.190118,-0.003232,0.004249,0.249964,0,0);-ms-transform:matrix(0.190118,-0.003232,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190118,-0.003232,0.004249,0.249964,0,0);}
.m10_c00253{transform:matrix(0.192657,-0.003275,0.004249,0.249964,0,0);-ms-transform:matrix(0.192657,-0.003275,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192657,-0.003275,0.004249,0.249964,0,0);}
.m45_c00253{transform:matrix(0.193827,-0.003295,0.004249,0.249964,0,0);-ms-transform:matrix(0.193827,-0.003295,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193827,-0.003295,0.004249,0.249964,0,0);}
.m1e_c00253{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);}
.m77_c00253{transform:matrix(0.194192,-0.003301,0.004249,0.249964,0,0);-ms-transform:matrix(0.194192,-0.003301,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194192,-0.003301,0.004249,0.249964,0,0);}
.m74_c00253{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);}
.m21_c00253{transform:matrix(0.194672,-0.003309,0.004249,0.249964,0,0);-ms-transform:matrix(0.194672,-0.003309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194672,-0.003309,0.004249,0.249964,0,0);}
.m6f_c00253{transform:matrix(0.194982,-0.003315,0.004249,0.249964,0,0);-ms-transform:matrix(0.194982,-0.003315,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194982,-0.003315,0.004249,0.249964,0,0);}
.m14_c00253{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);}
.m5b_c00253{transform:matrix(0.195757,-0.003328,0.004249,0.249964,0,0);-ms-transform:matrix(0.195757,-0.003328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195757,-0.003328,0.004249,0.249964,0,0);}
.mb1_c00253{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);}
.mb4_c00253{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);}
.md_c00253{transform:matrix(0.197187,-0.003352,0.004249,0.249964,0,0);-ms-transform:matrix(0.197187,-0.003352,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197187,-0.003352,0.004249,0.249964,0,0);}
.m8e_c00253{transform:matrix(0.197731,-0.003361,0.004249,0.249964,0,0);-ms-transform:matrix(0.197731,-0.003361,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197731,-0.003361,0.004249,0.249964,0,0);}
.m96_c00253{transform:matrix(0.197801,-0.003363,0.004249,0.249964,0,0);-ms-transform:matrix(0.197801,-0.003363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197801,-0.003363,0.004249,0.249964,0,0);}
.m9c_c00253{transform:matrix(0.197961,-0.003365,0.004249,0.249964,0,0);-ms-transform:matrix(0.197961,-0.003365,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197961,-0.003365,0.004249,0.249964,0,0);}
.m4_c00253{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);}
.m7e_c00253{transform:matrix(0.198916,-0.003382,0.004249,0.249964,0,0);-ms-transform:matrix(0.198916,-0.003382,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198916,-0.003382,0.004249,0.249964,0,0);}
.mdb_c00253{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);}
.m7a_c00253{transform:matrix(0.199646,-0.003394,0.004249,0.249964,0,0);-ms-transform:matrix(0.199646,-0.003394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199646,-0.003394,0.004249,0.249964,0,0);}
.m29_c00253{transform:matrix(0.200931,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200931,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200931,-0.003416,0.004249,0.249964,0,0);}
.m20_c00253{transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);}
.mac_c00253{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);}
.m4c_c00253{transform:matrix(0.201121,-0.003419,0.004249,0.249964,0,0);-ms-transform:matrix(0.201121,-0.003419,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201121,-0.003419,0.004249,0.249964,0,0);}
.m94_c00253{transform:matrix(0.201646,-0.003428,0.004249,0.249964,0,0);-ms-transform:matrix(0.201646,-0.003428,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201646,-0.003428,0.004249,0.249964,0,0);}
.m44_c00253{transform:matrix(0.201846,-0.003431,0.004249,0.249964,0,0);-ms-transform:matrix(0.201846,-0.003431,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201846,-0.003431,0.004249,0.249964,0,0);}
.m31_c00253{transform:matrix(0.201976,-0.003434,0.004249,0.249964,0,0);-ms-transform:matrix(0.201976,-0.003434,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201976,-0.003434,0.004249,0.249964,0,0);}
.m55_c00253{transform:matrix(0.203021,-0.003451,0.004249,0.249964,0,0);-ms-transform:matrix(0.203021,-0.003451,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203021,-0.003451,0.004249,0.249964,0,0);}
.m7c_c00253{transform:matrix(0.203751,-0.003464,0.004249,0.249964,0,0);-ms-transform:matrix(0.203751,-0.003464,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203751,-0.003464,0.004249,0.249964,0,0);}
.m4e_c00253{transform:matrix(0.204235,-0.003472,0.004249,0.249964,0,0);-ms-transform:matrix(0.204235,-0.003472,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204235,-0.003472,0.004249,0.249964,0,0);}
.m90_c00253{transform:matrix(0.204460,-0.003476,0.004249,0.249964,0,0);-ms-transform:matrix(0.204460,-0.003476,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204460,-0.003476,0.004249,0.249964,0,0);}
.m69_c00253{transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);}
.m9f_c00253{transform:matrix(0.205205,-0.003488,0.004249,0.249964,0,0);-ms-transform:matrix(0.205205,-0.003488,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205205,-0.003488,0.004249,0.249964,0,0);}
.ma7_c00253{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);}
.m7d_c00253{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);}
.m5e_c00253{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);}
.m53_c00253{transform:matrix(0.207795,-0.003533,0.004249,0.249964,0,0);-ms-transform:matrix(0.207795,-0.003533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207795,-0.003533,0.004249,0.249964,0,0);}
.mec_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);}
.mc_c00253{transform:matrix(0.208000,-0.003536,0.004249,0.249964,0,0);-ms-transform:matrix(0.208000,-0.003536,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208000,-0.003536,0.004249,0.249964,0,0);}
.maf_c00253{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);}
.m15_c00253{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);}
.m91_c00253{transform:matrix(0.211339,-0.003593,0.004249,0.249964,0,0);-ms-transform:matrix(0.211339,-0.003593,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211339,-0.003593,0.004249,0.249964,0,0);}
.m85_c00253{transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);-ms-transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);}
.mc6_c00253{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);}
.m66_c00253{transform:matrix(0.211719,-0.003599,0.004249,0.249964,0,0);-ms-transform:matrix(0.211719,-0.003599,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211719,-0.003599,0.004249,0.249964,0,0);}
.m5d_c00253{transform:matrix(0.212274,-0.003609,0.004249,0.249964,0,0);-ms-transform:matrix(0.212274,-0.003609,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212274,-0.003609,0.004249,0.249964,0,0);}
.ma8_c00253{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);}
.ma_c00253{transform:matrix(0.215389,-0.003662,0.004249,0.249964,0,0);-ms-transform:matrix(0.215389,-0.003662,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215389,-0.003662,0.004249,0.249964,0,0);}
.m5_c00253{transform:matrix(0.215969,-0.003671,0.004249,0.249964,0,0);-ms-transform:matrix(0.215969,-0.003671,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215969,-0.003671,0.004249,0.249964,0,0);}
.m6a_c00253{transform:matrix(0.216039,-0.003673,0.004249,0.249964,0,0);-ms-transform:matrix(0.216039,-0.003673,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216039,-0.003673,0.004249,0.249964,0,0);}
.md9_c00253{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);}
.mdc_c00253{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);}
.mdd_c00253{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);}
.m9_c00253{transform:matrix(0.217889,-0.003704,0.004249,0.249964,0,0);-ms-transform:matrix(0.217889,-0.003704,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217889,-0.003704,0.004249,0.249964,0,0);}
.m40_c00253{transform:matrix(0.217934,-0.003705,0.004249,0.249964,0,0);-ms-transform:matrix(0.217934,-0.003705,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217934,-0.003705,0.004249,0.249964,0,0);}
.m5a_c00253{transform:matrix(0.218528,-0.003715,0.004249,0.249964,0,0);-ms-transform:matrix(0.218528,-0.003715,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218528,-0.003715,0.004249,0.249964,0,0);}
.m71_c00253{transform:matrix(0.218583,-0.003716,0.004249,0.249964,0,0);-ms-transform:matrix(0.218583,-0.003716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218583,-0.003716,0.004249,0.249964,0,0);}
.md6_c00253{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);}
.ma5_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);}
.mbd_c00253{transform:matrix(0.220965,-0.012177,0.013757,0.249621,0,0);-ms-transform:matrix(0.220965,-0.012177,0.013757,0.249621,0,0);-webkit-transform:matrix(0.220965,-0.012177,0.013757,0.249621,0,0);}
.md2_c00253{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);}
.m3_c00253{transform:matrix(0.222053,-0.003775,0.004249,0.249964,0,0);-ms-transform:matrix(0.222053,-0.003775,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222053,-0.003775,0.004249,0.249964,0,0);}
.mb2_c00253{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.mde_c00253{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);}
.m1f_c00253{transform:matrix(0.223288,-0.003796,0.004249,0.249964,0,0);-ms-transform:matrix(0.223288,-0.003796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223288,-0.003796,0.004249,0.249964,0,0);}
.mad_c00253{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);}
.m24_c00253{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);}
.m84_c00253{transform:matrix(0.223798,-0.003805,0.004249,0.249964,0,0);-ms-transform:matrix(0.223798,-0.003805,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223798,-0.003805,0.004249,0.249964,0,0);}
.m5f_c00253{transform:matrix(0.225257,-0.003829,0.004249,0.249964,0,0);-ms-transform:matrix(0.225257,-0.003829,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225257,-0.003829,0.004249,0.249964,0,0);}
.m57_c00253{transform:matrix(0.225737,-0.003838,0.004249,0.249964,0,0);-ms-transform:matrix(0.225737,-0.003838,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225737,-0.003838,0.004249,0.249964,0,0);}
.m7f_c00253{transform:matrix(0.225742,-0.003838,0.004249,0.249964,0,0);-ms-transform:matrix(0.225742,-0.003838,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225742,-0.003838,0.004249,0.249964,0,0);}
.md0_c00253{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);}
.mcf_c00253{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);}
.m60_c00253{transform:matrix(0.227552,-0.003868,0.004249,0.249964,0,0);-ms-transform:matrix(0.227552,-0.003868,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227552,-0.003868,0.004249,0.249964,0,0);}
.m54_c00253{transform:matrix(0.228332,-0.003882,0.004249,0.249964,0,0);-ms-transform:matrix(0.228332,-0.003882,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228332,-0.003882,0.004249,0.249964,0,0);}
.m3f_c00253{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);}
.m28_c00253{transform:matrix(0.228582,-0.003886,0.004249,0.249964,0,0);-ms-transform:matrix(0.228582,-0.003886,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228582,-0.003886,0.004249,0.249964,0,0);}
.m88_c00253{transform:matrix(0.228617,-0.003886,0.004249,0.249964,0,0);-ms-transform:matrix(0.228617,-0.003886,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228617,-0.003886,0.004249,0.249964,0,0);}
.m1b_c00253{transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);-ms-transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);}
.m47_c00253{transform:matrix(0.229592,-0.003903,0.004249,0.249964,0,0);-ms-transform:matrix(0.229592,-0.003903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229592,-0.003903,0.004249,0.249964,0,0);}
.m3b_c00253{transform:matrix(0.229632,-0.003904,0.004249,0.249964,0,0);-ms-transform:matrix(0.229632,-0.003904,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229632,-0.003904,0.004249,0.249964,0,0);}
.m30_c00253{transform:matrix(0.229967,-0.003909,0.004249,0.249964,0,0);-ms-transform:matrix(0.229967,-0.003909,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229967,-0.003909,0.004249,0.249964,0,0);}
.m3e_c00253{transform:matrix(0.230532,-0.003919,0.004249,0.249964,0,0);-ms-transform:matrix(0.230532,-0.003919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230532,-0.003919,0.004249,0.249964,0,0);}
.m26_c00253{transform:matrix(0.230982,-0.003927,0.004249,0.249964,0,0);-ms-transform:matrix(0.230982,-0.003927,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230982,-0.003927,0.004249,0.249964,0,0);}
.mf_c00253{transform:matrix(0.231677,-0.003939,0.004249,0.249964,0,0);-ms-transform:matrix(0.231677,-0.003939,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231677,-0.003939,0.004249,0.249964,0,0);}
.m2b_c00253{transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);-ms-transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);}
.m2a_c00253{transform:matrix(0.232796,-0.003958,0.004249,0.249964,0,0);-ms-transform:matrix(0.232796,-0.003958,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232796,-0.003958,0.004249,0.249964,0,0);}
.m34_c00253{transform:matrix(0.233251,-0.003965,0.004249,0.249964,0,0);-ms-transform:matrix(0.233251,-0.003965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233251,-0.003965,0.004249,0.249964,0,0);}
.m32_c00253{transform:matrix(0.233956,-0.003977,0.004249,0.249964,0,0);-ms-transform:matrix(0.233956,-0.003977,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233956,-0.003977,0.004249,0.249964,0,0);}
.m1a_c00253{transform:matrix(0.234061,-0.003979,0.004249,0.249964,0,0);-ms-transform:matrix(0.234061,-0.003979,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234061,-0.003979,0.004249,0.249964,0,0);}
.m5c_c00253{transform:matrix(0.234751,-0.003991,0.004249,0.249964,0,0);-ms-transform:matrix(0.234751,-0.003991,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234751,-0.003991,0.004249,0.249964,0,0);}
.mab_c00253{transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.235196,-0.003998,0.004249,0.249964,0,0);-ms-transform:matrix(0.235196,-0.003998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235196,-0.003998,0.004249,0.249964,0,0);}
.mb3_c00253{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);}
.m11_c00253{transform:matrix(0.236191,-0.004015,0.004249,0.249964,0,0);-ms-transform:matrix(0.236191,-0.004015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236191,-0.004015,0.004249,0.249964,0,0);}
.mb5_c00253{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{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);}
.m6b_c00253{transform:matrix(0.238376,-0.004052,0.004249,0.249964,0,0);-ms-transform:matrix(0.238376,-0.004052,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238376,-0.004052,0.004249,0.249964,0,0);}
.m51_c00253{transform:matrix(0.238681,-0.004058,0.004249,0.249964,0,0);-ms-transform:matrix(0.238681,-0.004058,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238681,-0.004058,0.004249,0.249964,0,0);}
.m9b_c00253{transform:matrix(0.238845,-0.004060,0.004249,0.249964,0,0);-ms-transform:matrix(0.238845,-0.004060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238845,-0.004060,0.004249,0.249964,0,0);}
.m7b_c00253{transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);-ms-transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);}
.m97_c00253{transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);-ms-transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);}
.m27_c00253{transform:matrix(0.239485,-0.004071,0.004249,0.249964,0,0);-ms-transform:matrix(0.239485,-0.004071,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239485,-0.004071,0.004249,0.249964,0,0);}
.mda_c00253{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);}
.m65_c00253{transform:matrix(0.242765,-0.004127,0.004249,0.249964,0,0);-ms-transform:matrix(0.242765,-0.004127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242765,-0.004127,0.004249,0.249964,0,0);}
.m8f_c00253{transform:matrix(0.244190,-0.004151,0.004249,0.249964,0,0);-ms-transform:matrix(0.244190,-0.004151,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244190,-0.004151,0.004249,0.249964,0,0);}
.md3_c00253{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);}
.m6e_c00253{transform:matrix(0.245854,-0.004180,0.004249,0.249964,0,0);-ms-transform:matrix(0.245854,-0.004180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245854,-0.004180,0.004249,0.249964,0,0);}
.m12_c00253{transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);-ms-transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);}
.m83_c00253{transform:matrix(0.246099,-0.004184,0.004249,0.249964,0,0);-ms-transform:matrix(0.246099,-0.004184,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246099,-0.004184,0.004249,0.249964,0,0);}
.ma0_c00253{transform:matrix(0.248839,-0.004230,0.004249,0.249964,0,0);-ms-transform:matrix(0.248839,-0.004230,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248839,-0.004230,0.004249,0.249964,0,0);}
.m42_c00253{transform:matrix(0.249194,-0.004236,0.004249,0.249964,0,0);-ms-transform:matrix(0.249194,-0.004236,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249194,-0.004236,0.004249,0.249964,0,0);}
.meb_c00253{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.254568,-0.004328,0.004249,0.249964,0,0);-ms-transform:matrix(0.254568,-0.004328,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254568,-0.004328,0.004249,0.249964,0,0);}
.m78_c00253{transform:matrix(0.255768,-0.004348,0.004249,0.249964,0,0);-ms-transform:matrix(0.255768,-0.004348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255768,-0.004348,0.004249,0.249964,0,0);}
.m2c_c00253{transform:matrix(0.256433,-0.004359,0.004249,0.249964,0,0);-ms-transform:matrix(0.256433,-0.004359,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256433,-0.004359,0.004249,0.249964,0,0);}
.m17_c00253{transform:matrix(0.256653,-0.004363,0.004249,0.249964,0,0);-ms-transform:matrix(0.256653,-0.004363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256653,-0.004363,0.004249,0.249964,0,0);}
.m25_c00253{transform:matrix(0.257058,-0.004370,0.004249,0.249964,0,0);-ms-transform:matrix(0.257058,-0.004370,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257058,-0.004370,0.004249,0.249964,0,0);}
.m37_c00253{transform:matrix(0.257533,-0.004378,0.004249,0.249964,0,0);-ms-transform:matrix(0.257533,-0.004378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257533,-0.004378,0.004249,0.249964,0,0);}
.m3a_c00253{transform:matrix(0.258738,-0.004399,0.004249,0.249964,0,0);-ms-transform:matrix(0.258738,-0.004399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258738,-0.004399,0.004249,0.249964,0,0);}
.mc8_c00253{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);}
.m7_c00253{transform:matrix(0.259098,-0.004405,0.004249,0.249964,0,0);-ms-transform:matrix(0.259098,-0.004405,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259098,-0.004405,0.004249,0.249964,0,0);}
.m63_c00253{transform:matrix(0.259193,-0.004406,0.004249,0.249964,0,0);-ms-transform:matrix(0.259193,-0.004406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259193,-0.004406,0.004249,0.249964,0,0);}
.me9_c00253{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.260767,-0.004433,0.004249,0.249964,0,0);-ms-transform:matrix(0.260767,-0.004433,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260767,-0.004433,0.004249,0.249964,0,0);}
.mcd_c00253{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);}
.mdf_c00253{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);}
.m35_c00253{transform:matrix(0.262582,-0.004464,0.004249,0.249964,0,0);-ms-transform:matrix(0.262582,-0.004464,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262582,-0.004464,0.004249,0.249964,0,0);}
.m22_c00253{transform:matrix(0.262677,-0.004466,0.004249,0.249964,0,0);-ms-transform:matrix(0.262677,-0.004466,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262677,-0.004466,0.004249,0.249964,0,0);}
.mb0_c00253{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);}
.mcb_c00253{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);}
.mae_c00253{transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265270,0.000000,0.000000,0.250000,0,0);}
.md4_c00253{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);}
.m2_c00253{transform:matrix(0.267526,-0.004548,0.004249,0.249964,0,0);-ms-transform:matrix(0.267526,-0.004548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267526,-0.004548,0.004249,0.249964,0,0);}
.m64_c00253{transform:matrix(0.268511,-0.004565,0.004249,0.249964,0,0);-ms-transform:matrix(0.268511,-0.004565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268511,-0.004565,0.004249,0.249964,0,0);}
.mce_c00253{transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.271346,-0.004613,0.004249,0.249964,0,0);-ms-transform:matrix(0.271346,-0.004613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271346,-0.004613,0.004249,0.249964,0,0);}
.m41_c00253{transform:matrix(0.275360,-0.004681,0.004249,0.249964,0,0);-ms-transform:matrix(0.275360,-0.004681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275360,-0.004681,0.004249,0.249964,0,0);}
.m61_c00253{transform:matrix(0.277600,-0.004719,0.004249,0.249964,0,0);-ms-transform:matrix(0.277600,-0.004719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277600,-0.004719,0.004249,0.249964,0,0);}
.m2f_c00253{transform:matrix(0.282809,-0.004808,0.004249,0.249964,0,0);-ms-transform:matrix(0.282809,-0.004808,0.004249,0.249964,0,0);-webkit-transform:matrix(0.282809,-0.004808,0.004249,0.249964,0,0);}
.mca_c00253{transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);}
.maa_c00253{transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285920,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.288903,-0.004911,0.004249,0.249964,0,0);-ms-transform:matrix(0.288903,-0.004911,0.004249,0.249964,0,0);-webkit-transform:matrix(0.288903,-0.004911,0.004249,0.249964,0,0);}
.ma1_c00253{transform:matrix(0.298572,-0.005076,0.004249,0.249964,0,0);-ms-transform:matrix(0.298572,-0.005076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.298572,-0.005076,0.004249,0.249964,0,0);}
.m62_c00253{transform:matrix(0.302561,-0.005144,0.004249,0.249964,0,0);-ms-transform:matrix(0.302561,-0.005144,0.004249,0.249964,0,0);-webkit-transform:matrix(0.302561,-0.005144,0.004249,0.249964,0,0);}
.m6c_c00253{transform:matrix(0.308770,-0.005249,0.004249,0.249964,0,0);-ms-transform:matrix(0.308770,-0.005249,0.004249,0.249964,0,0);-webkit-transform:matrix(0.308770,-0.005249,0.004249,0.249964,0,0);}
.ma6_c00253{transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310880,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.311990,-0.005304,0.004249,0.249964,0,0);-ms-transform:matrix(0.311990,-0.005304,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311990,-0.005304,0.004249,0.249964,0,0);}
.mc5_c00253{transform:matrix(0.314558,-0.017335,0.013757,0.249621,0,0);-ms-transform:matrix(0.314558,-0.017335,0.013757,0.249621,0,0);-webkit-transform:matrix(0.314558,-0.017335,0.013757,0.249621,0,0);}
.mea_c00253{transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);}
.mc1_c00253{transform:matrix(0.337488,-0.018599,0.013757,0.249621,0,0);-ms-transform:matrix(0.337488,-0.018599,0.013757,0.249621,0,0);-webkit-transform:matrix(0.337488,-0.018599,0.013757,0.249621,0,0);}
.m9a_c00253{transform:matrix(0.341901,-0.005812,0.004249,0.249964,0,0);-ms-transform:matrix(0.341901,-0.005812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.341901,-0.005812,0.004249,0.249964,0,0);}
.m9e_c00253{transform:matrix(0.345745,-0.005878,0.004249,0.249964,0,0);-ms-transform:matrix(0.345745,-0.005878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.345745,-0.005878,0.004249,0.249964,0,0);}
.md8_c00253{transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.366402,-0.006229,0.004249,0.249964,0,0);-ms-transform:matrix(0.366402,-0.006229,0.004249,0.249964,0,0);-webkit-transform:matrix(0.366402,-0.006229,0.004249,0.249964,0,0);}
.md7_c00253{transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380185,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.387964,-0.006595,0.004249,0.249964,0,0);-ms-transform:matrix(0.387964,-0.006595,0.004249,0.249964,0,0);-webkit-transform:matrix(0.387964,-0.006595,0.004249,0.249964,0,0);}
.m86_c00253{transform:matrix(0.390009,-0.006630,0.004249,0.249964,0,0);-ms-transform:matrix(0.390009,-0.006630,0.004249,0.249964,0,0);-webkit-transform:matrix(0.390009,-0.006630,0.004249,0.249964,0,0);}
.ma2_c00253{transform:matrix(0.392243,-0.006668,0.004249,0.249964,0,0);-ms-transform:matrix(0.392243,-0.006668,0.004249,0.249964,0,0);-webkit-transform:matrix(0.392243,-0.006668,0.004249,0.249964,0,0);}
.mc4_c00253{transform:matrix(0.395350,-0.021788,0.013757,0.249621,0,0);-ms-transform:matrix(0.395350,-0.021788,0.013757,0.249621,0,0);-webkit-transform:matrix(0.395350,-0.021788,0.013757,0.249621,0,0);}
.mc0_c00253{transform:matrix(0.427202,-0.023543,0.013757,0.249621,0,0);-ms-transform:matrix(0.427202,-0.023543,0.013757,0.249621,0,0);-webkit-transform:matrix(0.427202,-0.023543,0.013757,0.249621,0,0);}
.m1_c00253{transform:matrix(0.503607,-0.008561,0.004249,0.249964,0,0);-ms-transform:matrix(0.503607,-0.008561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.503607,-0.008561,0.004249,0.249964,0,0);}
.ma9_c00253{transform:matrix(0.523350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523350,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.614700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614700,0.000000,0.000000,0.250000,0,0);}
.mcc_c00253{transform:matrix(0.668640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668640,0.000000,0.000000,0.250000,0,0);}
.mee_c00253{transform:matrix(0.671330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671330,0.000000,0.000000,0.250000,0,0);}
.mef_c00253{transform:matrix(0.798410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798410,0.000000,0.000000,0.250000,0,0);}
.mc3_c00253{transform:matrix(0.836865,-0.046120,0.013757,0.249621,0,0);-ms-transform:matrix(0.836865,-0.046120,0.013757,0.249621,0,0);-webkit-transform:matrix(0.836865,-0.046120,0.013757,0.249621,0,0);}
.mc2_c00253{transform:matrix(0.949085,-0.052304,0.013757,0.249621,0,0);-ms-transform:matrix(0.949085,-0.052304,0.013757,0.249621,0,0);-webkit-transform:matrix(0.949085,-0.052304,0.013757,0.249621,0,0);}
.mbf_c00253{transform:matrix(1.115482,-0.061474,0.013757,0.249621,0,0);-ms-transform:matrix(1.115482,-0.061474,0.013757,0.249621,0,0);-webkit-transform:matrix(1.115482,-0.061474,0.013757,0.249621,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;}
.fs11_c00253{font-size:44.100000px;}
.fse_c00253{font-size:48.276545px;}
.fs12_c00253{font-size:48.300000px;}
.fsf_c00253{font-size:51.450000px;}
.fs10_c00253{font-size:52.500000px;}
.fs13_c00253{font-size:58.800000px;}
.fs4_c00253{font-size:59.858648px;}
.fs2_c00253{font-size:60.908799px;}
.fs1_c00253{font-size:61.958951px;}
.fs8_c00253{font-size:64.059255px;}
.fs3_c00253{font-size:65.109406px;}
.fs6_c00253{font-size:67.209710px;}
.fs7_c00253{font-size:68.259861px;}
.fs9_c00253{font-size:69.310013px;}
.fsc_c00253{font-size:70.350000px;}
.fs0_c00253{font-size:70.360165px;}
.fsa_c00253{font-size:71.410317px;}
.fsb_c00253{font-size:73.500000px;}
.fsd_c00253{font-size:74.550000px;}
.fs5_c00253{font-size:74.560772px;}
.y0_c00253{bottom:0.000000px;}
.yc6_c00253{bottom:173.743500px;}
.yc5_c00253{bottom:180.598500px;}
.yc3_c00253{bottom:191.167500px;}
.yc4_c00253{bottom:200.932500px;}
.yc2_c00253{bottom:209.836500px;}
.yc1_c00253{bottom:220.681500px;}
.yb8_c00253{bottom:238.431000px;}
.yb9_c00253{bottom:239.995200px;}
.yba_c00253{bottom:241.812015px;}
.ybb_c00253{bottom:244.716592px;}
.ybc_c00253{bottom:246.565335px;}
.ybd_c00253{bottom:247.308990px;}
.ybe_c00253{bottom:249.468758px;}
.ybf_c00253{bottom:251.415510px;}
.yc0_c00253{bottom:252.278790px;}
.yb0_c00253{bottom:320.490000px;}
.yb1_c00253{bottom:320.890500px;}
.yb2_c00253{bottom:321.213000px;}
.yb3_c00253{bottom:322.068000px;}
.yb4_c00253{bottom:322.629000px;}
.yb5_c00253{bottom:322.908000px;}
.yb6_c00253{bottom:323.461500px;}
.yb7_c00253{bottom:324.289500px;}
.ya6_c00253{bottom:343.980000px;}
.ya7_c00253{bottom:344.371500px;}
.ya8_c00253{bottom:344.619000px;}
.ya9_c00253{bottom:345.097500px;}
.yaa_c00253{bottom:345.423000px;}
.yab_c00253{bottom:345.654000px;}
.yac_c00253{bottom:346.087500px;}
.yad_c00253{bottom:346.567500px;}
.yae_c00253{bottom:346.728000px;}
.yaf_c00253{bottom:346.992000px;}
.ya5_c00253{bottom:368.223000px;}
.y9a_c00253{bottom:412.619632px;}
.y9b_c00253{bottom:413.122138px;}
.y9c_c00253{bottom:413.392956px;}
.y9d_c00253{bottom:413.790312px;}
.y9e_c00253{bottom:413.956536px;}
.y9f_c00253{bottom:414.296112px;}
.ya0_c00253{bottom:414.573007px;}
.ya1_c00253{bottom:414.937567px;}
.ya2_c00253{bottom:416.300301px;}
.ya3_c00253{bottom:416.646261px;}
.ya4_c00253{bottom:417.160009px;}
.y92_c00253{bottom:436.262545px;}
.y93_c00253{bottom:436.877611px;}
.y94_c00253{bottom:437.205649px;}
.y95_c00253{bottom:437.692236px;}
.y96_c00253{bottom:438.020758px;}
.y97_c00253{bottom:438.217227px;}
.y98_c00253{bottom:438.802917px;}
.y99_c00253{bottom:439.070388px;}
.y8d_c00253{bottom:460.413196px;}
.y91_c00253{bottom:460.413460px;}
.y8e_c00253{bottom:460.413514px;}
.y8c_c00253{bottom:460.413679px;}
.y8b_c00253{bottom:460.413786px;}
.y8f_c00253{bottom:460.413793px;}
.y90_c00253{bottom:460.413871px;}
.y8a_c00253{bottom:460.414497px;}
.y89_c00253{bottom:460.414543px;}
.y86_c00253{bottom:483.217416px;}
.y87_c00253{bottom:483.217636px;}
.y88_c00253{bottom:483.217791px;}
.y85_c00253{bottom:483.218019px;}
.y80_c00253{bottom:483.218097px;}
.y84_c00253{bottom:483.218112px;}
.y83_c00253{bottom:483.218428px;}
.y81_c00253{bottom:483.218535px;}
.y82_c00253{bottom:483.219139px;}
.y7b_c00253{bottom:505.995372px;}
.y7d_c00253{bottom:505.995550px;}
.y7e_c00253{bottom:505.995594px;}
.y79_c00253{bottom:505.995996px;}
.y7a_c00253{bottom:505.996014px;}
.y7c_c00253{bottom:505.996081px;}
.y7f_c00253{bottom:505.996302px;}
.y70_c00253{bottom:528.275883px;}
.y71_c00253{bottom:528.276072px;}
.y73_c00253{bottom:528.276142px;}
.y72_c00253{bottom:528.276750px;}
.y75_c00253{bottom:528.276765px;}
.y76_c00253{bottom:528.276834px;}
.y74_c00253{bottom:528.276876px;}
.y77_c00253{bottom:528.277152px;}
.y78_c00253{bottom:528.277680px;}
.y6e_c00253{bottom:552.032143px;}
.y6d_c00253{bottom:552.032571px;}
.y6b_c00253{bottom:552.032736px;}
.y6f_c00253{bottom:552.032842px;}
.y6c_c00253{bottom:552.032934px;}
.y6a_c00253{bottom:552.033202px;}
.y5f_c00253{bottom:572.902386px;}
.y60_c00253{bottom:573.496258px;}
.y61_c00253{bottom:573.893920px;}
.y62_c00253{bottom:574.285806px;}
.y63_c00253{bottom:574.568580px;}
.y64_c00253{bottom:575.217082px;}
.y65_c00253{bottom:575.804673px;}
.y66_c00253{bottom:576.104431px;}
.y67_c00253{bottom:576.614146px;}
.y68_c00253{bottom:576.890791px;}
.y69_c00253{bottom:577.734642px;}
.y55_c00253{bottom:596.394312px;}
.y56_c00253{bottom:596.791440px;}
.y57_c00253{bottom:597.221199px;}
.y58_c00253{bottom:597.669664px;}
.y59_c00253{bottom:597.911067px;}
.y5a_c00253{bottom:598.116004px;}
.y5b_c00253{bottom:598.493793px;}
.y5c_c00253{bottom:599.135397px;}
.y5d_c00253{bottom:599.462965px;}
.y5e_c00253{bottom:600.000640px;}
.y4d_c00253{bottom:619.346301px;}
.y4e_c00253{bottom:619.724799px;}
.y4f_c00253{bottom:619.932703px;}
.y50_c00253{bottom:620.707896px;}
.y51_c00253{bottom:621.205170px;}
.y52_c00253{bottom:621.656547px;}
.y53_c00253{bottom:621.872502px;}
.y54_c00253{bottom:622.310158px;}
.y45_c00253{bottom:642.028317px;}
.y46_c00253{bottom:642.451722px;}
.y47_c00253{bottom:642.731184px;}
.y48_c00253{bottom:643.129842px;}
.y49_c00253{bottom:643.691673px;}
.y4a_c00253{bottom:643.877039px;}
.y4b_c00253{bottom:644.229241px;}
.y4c_c00253{bottom:644.555592px;}
.y38_c00253{bottom:664.712670px;}
.y39_c00253{bottom:665.027266px;}
.y3a_c00253{bottom:665.472460px;}
.y3b_c00253{bottom:665.729281px;}
.y3c_c00253{bottom:666.093739px;}
.y3d_c00253{bottom:666.509839px;}
.y3e_c00253{bottom:666.791950px;}
.y3f_c00253{bottom:667.062003px;}
.y40_c00253{bottom:667.504872px;}
.y41_c00253{bottom:667.837554px;}
.y42_c00253{bottom:668.279607px;}
.y43_c00253{bottom:668.612340px;}
.y44_c00253{bottom:669.054184px;}
.y2d_c00253{bottom:689.772853px;}
.y2e_c00253{bottom:689.773587px;}
.y2f_c00253{bottom:689.774106px;}
.y30_c00253{bottom:689.774745px;}
.y31_c00253{bottom:689.774758px;}
.y37_c00253{bottom:689.774874px;}
.y36_c00253{bottom:689.775130px;}
.y32_c00253{bottom:689.775321px;}
.y35_c00253{bottom:689.775768px;}
.y33_c00253{bottom:689.775835px;}
.y34_c00253{bottom:689.776114px;}
.y26_c00253{bottom:711.157447px;}
.y27_c00253{bottom:711.921550px;}
.y28_c00253{bottom:712.308027px;}
.y29_c00253{bottom:712.844223px;}
.y2a_c00253{bottom:713.689969px;}
.y2b_c00253{bottom:714.168664px;}
.y2c_c00253{bottom:714.580695px;}
.y1c_c00253{bottom:733.841487px;}
.y1d_c00253{bottom:734.136406px;}
.y1e_c00253{bottom:734.647861px;}
.y1f_c00253{bottom:735.102175px;}
.y20_c00253{bottom:735.354787px;}
.y21_c00253{bottom:736.135426px;}
.y22_c00253{bottom:736.633735px;}
.y23_c00253{bottom:737.354271px;}
.y24_c00253{bottom:737.695170px;}
.y25_c00253{bottom:738.083205px;}
.y13_c00253{bottom:757.067874px;}
.y14_c00253{bottom:757.319233px;}
.y15_c00253{bottom:757.604893px;}
.y16_c00253{bottom:758.076652px;}
.y17_c00253{bottom:758.542384px;}
.y18_c00253{bottom:758.821023px;}
.y19_c00253{bottom:759.661299px;}
.y1a_c00253{bottom:759.943027px;}
.y1b_c00253{bottom:760.673724px;}
.yb_c00253{bottom:779.753056px;}
.yc_c00253{bottom:780.109162px;}
.yd_c00253{bottom:780.696243px;}
.ye_c00253{bottom:781.571742px;}
.yf_c00253{bottom:781.863480px;}
.y10_c00253{bottom:782.347599px;}
.y11_c00253{bottom:782.519497px;}
.y12_c00253{bottom:782.760711px;}
.y3_c00253{bottom:802.436133px;}
.y4_c00253{bottom:802.762584px;}
.y5_c00253{bottom:803.211531px;}
.y6_c00253{bottom:803.814724px;}
.y7_c00253{bottom:804.411942px;}
.y8_c00253{bottom:804.867018px;}
.y9_c00253{bottom:805.012198px;}
.ya_c00253{bottom:805.721316px;}
.y1_c00253{bottom:831.603000px;}
.y2_c00253{bottom:832.191208px;}
.h13_c00253{height:44.100000px;}
.h10_c00253{height:48.276545px;}
.h14_c00253{height:48.300000px;}
.h11_c00253{height:51.450000px;}
.h12_c00253{height:52.500000px;}
.h15_c00253{height:58.800000px;}
.h6_c00253{height:59.858648px;}
.h4_c00253{height:60.908799px;}
.h3_c00253{height:61.958951px;}
.ha_c00253{height:64.059255px;}
.h5_c00253{height:65.109406px;}
.h8_c00253{height:67.209710px;}
.h9_c00253{height:68.259861px;}
.hb_c00253{height:69.310013px;}
.he_c00253{height:70.350000px;}
.h2_c00253{height:70.360165px;}
.hc_c00253{height:71.410317px;}
.hd_c00253{height:73.500000px;}
.hf_c00253{height:74.550000px;}
.h7_c00253{height:74.560772px;}
.h0_c00253{height:1008.450000px;}
.h1_c00253{height:1008.750000px;}
.w0_c00253{width:678.450000px;}
.w1_c00253{width:678.750000px;}
.x0_c00253{left:0.000000px;}
.x72_c00253{left:142.405500px;}
.x61_c00253{left:161.861261px;}
.x2c_c00253{left:167.816138px;}
.x3_c00253{left:169.414977px;}
.xb_c00253{left:171.296522px;}
.x4d_c00253{left:173.325485px;}
.x67_c00253{left:174.960000px;}
.x69_c00253{left:176.706000px;}
.x13_c00253{left:193.665249px;}
.x1a_c00253{left:195.628811px;}
.x4_c00253{left:199.121012px;}
.x27_c00253{left:200.600697px;}
.xc_c00253{left:203.717837px;}
.x49_c00253{left:206.540331px;}
.x39_c00253{left:209.629791px;}
.x3c_c00253{left:211.793171px;}
.x77_c00253{left:213.840000px;}
.x80_c00253{left:214.920000px;}
.x54_c00253{left:216.259643px;}
.x14_c00253{left:219.647901px;}
.x84_c00253{left:224.910000px;}
.x43_c00253{left:226.123715px;}
.x3a_c00253{left:230.420765px;}
.x55_c00253{left:231.652580px;}
.x6e_c00253{left:233.763000px;}
.x4e_c00253{left:234.894258px;}
.x2d_c00253{left:236.869676px;}
.x1b_c00253{left:238.247432px;}
.x5_c00253{left:239.916168px;}
.x5b_c00253{left:242.559309px;}
.x28_c00253{left:244.887473px;}
.x22_c00253{left:246.853154px;}
.x36_c00253{left:250.155504px;}
.x4a_c00253{left:252.447591px;}
.x78_c00253{left:253.530000px;}
.x3d_c00253{left:254.725271px;}
.xd_c00253{left:257.139794px;}
.x2e_c00253{left:260.185047px;}
.x15_c00253{left:262.579287px;}
.x81_c00253{left:267.030000px;}
.x62_c00253{left:268.235598px;}
.x29_c00253{left:272.160852px;}
.x1_c00253{left:274.000500px;}
.x1c_c00253{left:276.092645px;}
.x5c_c00253{left:278.978256px;}
.x4f_c00253{left:282.960656px;}
.x23_c00253{left:285.562269px;}
.x73_c00253{left:290.006706px;}
.x2f_c00253{left:293.362439px;}
.x6_c00253{left:294.727253px;}
.x1d_c00253{left:297.130430px;}
.x3e_c00253{left:299.552100px;}
.x6a_c00253{left:300.844500px;}
.x74_c00253{left:303.500664px;}
.x16_c00253{left:304.979622px;}
.x2_c00253{left:308.601000px;}
.x50_c00253{left:312.394647px;}
.x4b_c00253{left:314.826620px;}
.x79_c00253{left:316.170000px;}
.x59_c00253{left:319.686603px;}
.x2a_c00253{left:323.738244px;}
.x82_c00253{left:325.890000px;}
.x17_c00253{left:330.372723px;}
.x5d_c00253{left:333.020100px;}
.xe_c00253{left:336.794928px;}
.x24_c00253{left:339.256670px;}
.x75_c00253{left:342.690627px;}
.x3f_c00253{left:344.077379px;}
.x56_c00253{left:346.149179px;}
.x7_c00253{left:349.010286px;}
.x6f_c00253{left:351.684000px;}
.x83_c00253{left:352.890000px;}
.x30_c00253{left:356.851916px;}
.x68_c00253{left:358.020000px;}
.x1e_c00253{left:362.202963px;}
.xf_c00253{left:363.311631px;}
.x53_c00253{left:368.831117px;}
.x63_c00253{left:372.437706px;}
.x70_c00253{left:374.920500px;}
.x37_c00253{left:377.311268px;}
.x85_c00253{left:380.160000px;}
.x31_c00253{left:381.386915px;}
.x44_c00253{left:382.511652px;}
.x4c_c00253{left:383.686010px;}
.x51_c00253{left:385.843863px;}
.x2b_c00253{left:388.547961px;}
.x8_c00253{left:390.342494px;}
.x5e_c00253{left:391.351031px;}
.x76_c00253{left:393.679944px;}
.x9_c00253{left:403.560345px;}
.x10_c00253{left:407.323119px;}
.x6b_c00253{left:410.841000px;}
.x57_c00253{left:412.309304px;}
.x38_c00253{left:416.475597px;}
.x32_c00253{left:421.648020px;}
.x11_c00253{left:422.995226px;}
.x3b_c00253{left:424.314317px;}
.x52_c00253{left:428.240103px;}
.x18_c00253{left:432.471653px;}
.x45_c00253{left:435.963609px;}
.x7a_c00253{left:439.830000px;}
.x12_c00253{left:444.862944px;}
.x40_c00253{left:446.142042px;}
.x5a_c00253{left:447.415502px;}
.x33_c00253{left:451.897106px;}
.x5f_c00253{left:456.429879px;}
.x1f_c00253{left:463.820108px;}
.xa_c00253{left:468.044424px;}
.x25_c00253{left:471.621903px;}
.x41_c00253{left:478.826418px;}
.x6c_c00253{left:482.086500px;}
.x60_c00253{left:486.196934px;}
.x71_c00253{left:490.135500px;}
.x20_c00253{left:492.169505px;}
.x64_c00253{left:496.375854px;}
.x19_c00253{left:498.842910px;}
.x58_c00253{left:508.173497px;}
.x46_c00253{left:509.616632px;}
.x6d_c00253{left:511.501500px;}
.x26_c00253{left:512.893325px;}
.x34_c00253{left:522.362297px;}
.x21_c00253{left:524.527259px;}
.x7d_c00253{left:526.230000px;}
.x65_c00253{left:527.759042px;}
.x42_c00253{left:532.607819px;}
.x47_c00253{left:534.804207px;}
.x7b_c00253{left:551.340000px;}
.x7e_c00253{left:557.010000px;}
.x35_c00253{left:562.474877px;}
.x66_c00253{left:574.484310px;}
.x7f_c00253{left:585.900000px;}
.x7c_c00253{left:593.730000px;}
.x48_c00253{left:611.538536px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.000000pt;}
.fs11_c00253{font-size:39.200000pt;}
.fse_c00253{font-size:42.912484pt;}
.fs12_c00253{font-size:42.933333pt;}
.fsf_c00253{font-size:45.733333pt;}
.fs10_c00253{font-size:46.666667pt;}
.fs13_c00253{font-size:52.266667pt;}
.fs4_c00253{font-size:53.207687pt;}
.fs2_c00253{font-size:54.141155pt;}
.fs1_c00253{font-size:55.074623pt;}
.fs8_c00253{font-size:56.941560pt;}
.fs3_c00253{font-size:57.875028pt;}
.fs6_c00253{font-size:59.741964pt;}
.fs7_c00253{font-size:60.675432pt;}
.fs9_c00253{font-size:61.608901pt;}
.fsc_c00253{font-size:62.533333pt;}
.fs0_c00253{font-size:62.542369pt;}
.fsa_c00253{font-size:63.475837pt;}
.fsb_c00253{font-size:65.333333pt;}
.fsd_c00253{font-size:66.266667pt;}
.fs5_c00253{font-size:66.276242pt;}
.y0_c00253{bottom:0.000000pt;}
.yc6_c00253{bottom:154.438667pt;}
.yc5_c00253{bottom:160.532000pt;}
.yc3_c00253{bottom:169.926667pt;}
.yc4_c00253{bottom:178.606667pt;}
.yc2_c00253{bottom:186.521333pt;}
.yc1_c00253{bottom:196.161333pt;}
.yb8_c00253{bottom:211.938667pt;}
.yb9_c00253{bottom:213.329067pt;}
.yba_c00253{bottom:214.944013pt;}
.ybb_c00253{bottom:217.525860pt;}
.ybc_c00253{bottom:219.169187pt;}
.ybd_c00253{bottom:219.830213pt;}
.ybe_c00253{bottom:221.750007pt;}
.ybf_c00253{bottom:223.480453pt;}
.yc0_c00253{bottom:224.247813pt;}
.yb0_c00253{bottom:284.880000pt;}
.yb1_c00253{bottom:285.236000pt;}
.yb2_c00253{bottom:285.522667pt;}
.yb3_c00253{bottom:286.282667pt;}
.yb4_c00253{bottom:286.781333pt;}
.yb5_c00253{bottom:287.029333pt;}
.yb6_c00253{bottom:287.521333pt;}
.yb7_c00253{bottom:288.257333pt;}
.ya6_c00253{bottom:305.760000pt;}
.ya7_c00253{bottom:306.108000pt;}
.ya8_c00253{bottom:306.328000pt;}
.ya9_c00253{bottom:306.753333pt;}
.yaa_c00253{bottom:307.042667pt;}
.yab_c00253{bottom:307.248000pt;}
.yac_c00253{bottom:307.633333pt;}
.yad_c00253{bottom:308.060000pt;}
.yae_c00253{bottom:308.202667pt;}
.yaf_c00253{bottom:308.437333pt;}
.ya5_c00253{bottom:327.309333pt;}
.y9a_c00253{bottom:366.773007pt;}
.y9b_c00253{bottom:367.219679pt;}
.y9c_c00253{bottom:367.460405pt;}
.y9d_c00253{bottom:367.813611pt;}
.y9e_c00253{bottom:367.961365pt;}
.y9f_c00253{bottom:368.263211pt;}
.ya0_c00253{bottom:368.509340pt;}
.ya1_c00253{bottom:368.833393pt;}
.ya2_c00253{bottom:370.044712pt;}
.ya3_c00253{bottom:370.352232pt;}
.ya4_c00253{bottom:370.808897pt;}
.y92_c00253{bottom:387.788929pt;}
.y93_c00253{bottom:388.335655pt;}
.y94_c00253{bottom:388.627244pt;}
.y95_c00253{bottom:389.059765pt;}
.y96_c00253{bottom:389.351785pt;}
.y97_c00253{bottom:389.526424pt;}
.y98_c00253{bottom:390.047037pt;}
.y99_c00253{bottom:390.284789pt;}
.y8d_c00253{bottom:409.256175pt;}
.y91_c00253{bottom:409.256409pt;}
.y8e_c00253{bottom:409.256457pt;}
.y8c_c00253{bottom:409.256604pt;}
.y8b_c00253{bottom:409.256699pt;}
.y8f_c00253{bottom:409.256705pt;}
.y90_c00253{bottom:409.256775pt;}
.y8a_c00253{bottom:409.257331pt;}
.y89_c00253{bottom:409.257372pt;}
.y86_c00253{bottom:429.526592pt;}
.y87_c00253{bottom:429.526788pt;}
.y88_c00253{bottom:429.526925pt;}
.y85_c00253{bottom:429.527128pt;}
.y80_c00253{bottom:429.527197pt;}
.y84_c00253{bottom:429.527211pt;}
.y83_c00253{bottom:429.527492pt;}
.y81_c00253{bottom:429.527587pt;}
.y82_c00253{bottom:429.528124pt;}
.y7b_c00253{bottom:449.773664pt;}
.y7d_c00253{bottom:449.773823pt;}
.y7e_c00253{bottom:449.773861pt;}
.y79_c00253{bottom:449.774219pt;}
.y7a_c00253{bottom:449.774235pt;}
.y7c_c00253{bottom:449.774295pt;}
.y7f_c00253{bottom:449.774491pt;}
.y70_c00253{bottom:469.578563pt;}
.y71_c00253{bottom:469.578731pt;}
.y73_c00253{bottom:469.578793pt;}
.y72_c00253{bottom:469.579333pt;}
.y75_c00253{bottom:469.579347pt;}
.y76_c00253{bottom:469.579408pt;}
.y74_c00253{bottom:469.579445pt;}
.y77_c00253{bottom:469.579691pt;}
.y78_c00253{bottom:469.580160pt;}
.y6e_c00253{bottom:490.695239pt;}
.y6d_c00253{bottom:490.695619pt;}
.y6b_c00253{bottom:490.695765pt;}
.y6f_c00253{bottom:490.695860pt;}
.y6c_c00253{bottom:490.695941pt;}
.y6a_c00253{bottom:490.696180pt;}
.y5f_c00253{bottom:509.246565pt;}
.y60_c00253{bottom:509.774452pt;}
.y61_c00253{bottom:510.127929pt;}
.y62_c00253{bottom:510.476272pt;}
.y63_c00253{bottom:510.727627pt;}
.y64_c00253{bottom:511.304073pt;}
.y65_c00253{bottom:511.826376pt;}
.y66_c00253{bottom:512.092828pt;}
.y67_c00253{bottom:512.545908pt;}
.y68_c00253{bottom:512.791815pt;}
.y69_c00253{bottom:513.541904pt;}
.y55_c00253{bottom:530.128277pt;}
.y56_c00253{bottom:530.481280pt;}
.y57_c00253{bottom:530.863288pt;}
.y58_c00253{bottom:531.261924pt;}
.y59_c00253{bottom:531.476504pt;}
.y5a_c00253{bottom:531.658671pt;}
.y5b_c00253{bottom:531.994483pt;}
.y5c_c00253{bottom:532.564797pt;}
.y5d_c00253{bottom:532.855969pt;}
.y5e_c00253{bottom:533.333903pt;}
.y4d_c00253{bottom:550.530045pt;}
.y4e_c00253{bottom:550.866488pt;}
.y4f_c00253{bottom:551.051292pt;}
.y50_c00253{bottom:551.740352pt;}
.y51_c00253{bottom:552.182373pt;}
.y52_c00253{bottom:552.583597pt;}
.y53_c00253{bottom:552.775557pt;}
.y54_c00253{bottom:553.164585pt;}
.y45_c00253{bottom:570.691837pt;}
.y46_c00253{bottom:571.068197pt;}
.y47_c00253{bottom:571.316608pt;}
.y48_c00253{bottom:571.670971pt;}
.y49_c00253{bottom:572.170376pt;}
.y4a_c00253{bottom:572.335145pt;}
.y4b_c00253{bottom:572.648215pt;}
.y4c_c00253{bottom:572.938304pt;}
.y38_c00253{bottom:590.855707pt;}
.y39_c00253{bottom:591.135348pt;}
.y3a_c00253{bottom:591.531076pt;}
.y3b_c00253{bottom:591.759361pt;}
.y3c_c00253{bottom:592.083324pt;}
.y3d_c00253{bottom:592.453191pt;}
.y3e_c00253{bottom:592.703956pt;}
.y3f_c00253{bottom:592.944003pt;}
.y40_c00253{bottom:593.337664pt;}
.y41_c00253{bottom:593.633381pt;}
.y42_c00253{bottom:594.026317pt;}
.y43_c00253{bottom:594.322080pt;}
.y44_c00253{bottom:594.714831pt;}
.y2d_c00253{bottom:613.131425pt;}
.y2e_c00253{bottom:613.132077pt;}
.y2f_c00253{bottom:613.132539pt;}
.y30_c00253{bottom:613.133107pt;}
.y31_c00253{bottom:613.133119pt;}
.y37_c00253{bottom:613.133221pt;}
.y36_c00253{bottom:613.133449pt;}
.y32_c00253{bottom:613.133619pt;}
.y35_c00253{bottom:613.134016pt;}
.y33_c00253{bottom:613.134076pt;}
.y34_c00253{bottom:613.134324pt;}
.y26_c00253{bottom:632.139953pt;}
.y27_c00253{bottom:632.819156pt;}
.y28_c00253{bottom:633.162691pt;}
.y29_c00253{bottom:633.639309pt;}
.y2a_c00253{bottom:634.391084pt;}
.y2b_c00253{bottom:634.816591pt;}
.y2c_c00253{bottom:635.182840pt;}
.y1c_c00253{bottom:652.303544pt;}
.y1d_c00253{bottom:652.565695pt;}
.y1e_c00253{bottom:653.020321pt;}
.y1f_c00253{bottom:653.424156pt;}
.y20_c00253{bottom:653.648700pt;}
.y21_c00253{bottom:654.342601pt;}
.y22_c00253{bottom:654.785543pt;}
.y23_c00253{bottom:655.426019pt;}
.y24_c00253{bottom:655.729040pt;}
.y25_c00253{bottom:656.073960pt;}
.y13_c00253{bottom:672.949221pt;}
.y14_c00253{bottom:673.172652pt;}
.y15_c00253{bottom:673.426572pt;}
.y16_c00253{bottom:673.845913pt;}
.y17_c00253{bottom:674.259897pt;}
.y18_c00253{bottom:674.507576pt;}
.y19_c00253{bottom:675.254488pt;}
.y1a_c00253{bottom:675.504913pt;}
.y1b_c00253{bottom:676.154421pt;}
.yb_c00253{bottom:693.113828pt;}
.yc_c00253{bottom:693.430367pt;}
.yd_c00253{bottom:693.952216pt;}
.ye_c00253{bottom:694.730437pt;}
.yf_c00253{bottom:694.989760pt;}
.y10_c00253{bottom:695.420088pt;}
.y11_c00253{bottom:695.572887pt;}
.y12_c00253{bottom:695.787299pt;}
.y3_c00253{bottom:713.276563pt;}
.y4_c00253{bottom:713.566741pt;}
.y5_c00253{bottom:713.965805pt;}
.y6_c00253{bottom:714.501977pt;}
.y7_c00253{bottom:715.032837pt;}
.y8_c00253{bottom:715.437349pt;}
.y9_c00253{bottom:715.566399pt;}
.ya_c00253{bottom:716.196725pt;}
.y1_c00253{bottom:739.202667pt;}
.y2_c00253{bottom:739.725519pt;}
.h13_c00253{height:39.200000pt;}
.h10_c00253{height:42.912484pt;}
.h14_c00253{height:42.933333pt;}
.h11_c00253{height:45.733333pt;}
.h12_c00253{height:46.666667pt;}
.h15_c00253{height:52.266667pt;}
.h6_c00253{height:53.207687pt;}
.h4_c00253{height:54.141155pt;}
.h3_c00253{height:55.074623pt;}
.ha_c00253{height:56.941560pt;}
.h5_c00253{height:57.875028pt;}
.h8_c00253{height:59.741964pt;}
.h9_c00253{height:60.675432pt;}
.hb_c00253{height:61.608901pt;}
.he_c00253{height:62.533333pt;}
.h2_c00253{height:62.542369pt;}
.hc_c00253{height:63.475837pt;}
.hd_c00253{height:65.333333pt;}
.hf_c00253{height:66.266667pt;}
.h7_c00253{height:66.276242pt;}
.h0_c00253{height:896.400000pt;}
.h1_c00253{height:896.666667pt;}
.w0_c00253{width:603.066667pt;}
.w1_c00253{width:603.333333pt;}
.x0_c00253{left:0.000000pt;}
.x72_c00253{left:126.582667pt;}
.x61_c00253{left:143.876676pt;}
.x2c_c00253{left:149.169900pt;}
.x3_c00253{left:150.591091pt;}
.xb_c00253{left:152.263575pt;}
.x4d_c00253{left:154.067097pt;}
.x67_c00253{left:155.520000pt;}
.x69_c00253{left:157.072000pt;}
.x13_c00253{left:172.146888pt;}
.x1a_c00253{left:173.892276pt;}
.x4_c00253{left:176.996455pt;}
.x27_c00253{left:178.311731pt;}
.xc_c00253{left:181.082521pt;}
.x49_c00253{left:183.591405pt;}
.x39_c00253{left:186.337592pt;}
.x3c_c00253{left:188.260596pt;}
.x77_c00253{left:190.080000pt;}
.x80_c00253{left:191.040000pt;}
.x54_c00253{left:192.230793pt;}
.x14_c00253{left:195.242579pt;}
.x84_c00253{left:199.920000pt;}
.x43_c00253{left:200.998857pt;}
.x3a_c00253{left:204.818457pt;}
.x55_c00253{left:205.913404pt;}
.x6e_c00253{left:207.789333pt;}
.x4e_c00253{left:208.794896pt;}
.x2d_c00253{left:210.550823pt;}
.x1b_c00253{left:211.775495pt;}
.x5_c00253{left:213.258816pt;}
.x5b_c00253{left:215.608275pt;}
.x28_c00253{left:217.677753pt;}
.x22_c00253{left:219.425025pt;}
.x36_c00253{left:222.360448pt;}
.x4a_c00253{left:224.397859pt;}
.x78_c00253{left:225.360000pt;}
.x3d_c00253{left:226.422463pt;}
.xd_c00253{left:228.568705pt;}
.x2e_c00253{left:231.275597pt;}
.x15_c00253{left:233.403811pt;}
.x81_c00253{left:237.360000pt;}
.x62_c00253{left:238.431643pt;}
.x29_c00253{left:241.920757pt;}
.x1_c00253{left:243.556000pt;}
.x1c_c00253{left:245.415684pt;}
.x5c_c00253{left:247.980672pt;}
.x4f_c00253{left:251.520583pt;}
.x23_c00253{left:253.833128pt;}
.x73_c00253{left:257.783739pt;}
.x2f_c00253{left:260.766612pt;}
.x6_c00253{left:261.979780pt;}
.x1d_c00253{left:264.115937pt;}
.x3e_c00253{left:266.268533pt;}
.x6a_c00253{left:267.417333pt;}
.x74_c00253{left:269.778368pt;}
.x16_c00253{left:271.092997pt;}
.x2_c00253{left:274.312000pt;}
.x50_c00253{left:277.684131pt;}
.x4b_c00253{left:279.845884pt;}
.x79_c00253{left:281.040000pt;}
.x59_c00253{left:284.165869pt;}
.x2a_c00253{left:287.767328pt;}
.x82_c00253{left:289.680000pt;}
.x17_c00253{left:293.664643pt;}
.x5d_c00253{left:296.017867pt;}
.xe_c00253{left:299.373269pt;}
.x24_c00253{left:301.561484pt;}
.x75_c00253{left:304.613891pt;}
.x3f_c00253{left:305.846559pt;}
.x56_c00253{left:307.688159pt;}
.x7_c00253{left:310.231365pt;}
.x6f_c00253{left:312.608000pt;}
.x83_c00253{left:313.680000pt;}
.x30_c00253{left:317.201703pt;}
.x68_c00253{left:318.240000pt;}
.x1e_c00253{left:321.958189pt;}
.xf_c00253{left:322.943672pt;}
.x53_c00253{left:327.849881pt;}
.x63_c00253{left:331.055739pt;}
.x70_c00253{left:333.262667pt;}
.x37_c00253{left:335.387793pt;}
.x85_c00253{left:337.920000pt;}
.x31_c00253{left:339.010591pt;}
.x44_c00253{left:340.010357pt;}
.x4c_c00253{left:341.054231pt;}
.x51_c00253{left:342.972323pt;}
.x2b_c00253{left:345.375965pt;}
.x8_c00253{left:346.971105pt;}
.x5e_c00253{left:347.867583pt;}
.x76_c00253{left:349.937728pt;}
.x9_c00253{left:358.720307pt;}
.x10_c00253{left:362.064995pt;}
.x6b_c00253{left:365.192000pt;}
.x57_c00253{left:366.497159pt;}
.x38_c00253{left:370.200531pt;}
.x32_c00253{left:374.798240pt;}
.x11_c00253{left:375.995756pt;}
.x3b_c00253{left:377.168281pt;}
.x52_c00253{left:380.657869pt;}
.x18_c00253{left:384.419247pt;}
.x45_c00253{left:387.523208pt;}
.x7a_c00253{left:390.960000pt;}
.x12_c00253{left:395.433728pt;}
.x40_c00253{left:396.570704pt;}
.x5a_c00253{left:397.702668pt;}
.x33_c00253{left:401.686316pt;}
.x5f_c00253{left:405.715448pt;}
.x1f_c00253{left:412.284540pt;}
.xa_c00253{left:416.039488pt;}
.x25_c00253{left:419.219469pt;}
.x41_c00253{left:425.623483pt;}
.x6c_c00253{left:428.521333pt;}
.x60_c00253{left:432.175052pt;}
.x71_c00253{left:435.676000pt;}
.x20_c00253{left:437.484004pt;}
.x64_c00253{left:441.222981pt;}
.x19_c00253{left:443.415920pt;}
.x58_c00253{left:451.709775pt;}
.x46_c00253{left:452.992561pt;}
.x6d_c00253{left:454.668000pt;}
.x26_c00253{left:455.905177pt;}
.x34_c00253{left:464.322041pt;}
.x21_c00253{left:466.246452pt;}
.x7d_c00253{left:467.760000pt;}
.x65_c00253{left:469.119148pt;}
.x42_c00253{left:473.429172pt;}
.x47_c00253{left:475.381517pt;}
.x7b_c00253{left:490.080000pt;}
.x7e_c00253{left:495.120000pt;}
.x35_c00253{left:499.977668pt;}
.x66_c00253{left:510.652720pt;}
.x7f_c00253{left:520.800000pt;}
.x7c_c00253{left:527.760000pt;}
.x48_c00253{left:543.589809pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m80_c00254{transform:matrix(0.010391,-0.000270,0.006498,0.249916,0,0);-ms-transform:matrix(0.010391,-0.000270,0.006498,0.249916,0,0);-webkit-transform:matrix(0.010391,-0.000270,0.006498,0.249916,0,0);}
.m9e_c00254{transform:matrix(0.012131,-0.000315,0.006498,0.249916,0,0);-ms-transform:matrix(0.012131,-0.000315,0.006498,0.249916,0,0);-webkit-transform:matrix(0.012131,-0.000315,0.006498,0.249916,0,0);}
.m101_c00254{transform:matrix(0.082317,-0.001152,0.003500,0.249976,0,0);-ms-transform:matrix(0.082317,-0.001152,0.003500,0.249976,0,0);-webkit-transform:matrix(0.082317,-0.001152,0.003500,0.249976,0,0);}
.mb1_c00254{transform:matrix(0.088865,-0.002310,0.006498,0.249916,0,0);-ms-transform:matrix(0.088865,-0.002310,0.006498,0.249916,0,0);-webkit-transform:matrix(0.088865,-0.002310,0.006498,0.249916,0,0);}
.mb_c00254{transform:matrix(0.096837,-0.002324,0.005998,0.249928,0,0);-ms-transform:matrix(0.096837,-0.002324,0.005998,0.249928,0,0);-webkit-transform:matrix(0.096837,-0.002324,0.005998,0.249928,0,0);}
.mba_c00254{transform:matrix(0.107856,-0.003236,0.007497,0.249888,0,0);-ms-transform:matrix(0.107856,-0.003236,0.007497,0.249888,0,0);-webkit-transform:matrix(0.107856,-0.003236,0.007497,0.249888,0,0);}
.ma7_c00254{transform:matrix(0.111142,-0.002890,0.006498,0.249916,0,0);-ms-transform:matrix(0.111142,-0.002890,0.006498,0.249916,0,0);-webkit-transform:matrix(0.111142,-0.002890,0.006498,0.249916,0,0);}
.m48_c00254{transform:matrix(0.112403,-0.002473,0.005499,0.249940,0,0);-ms-transform:matrix(0.112403,-0.002473,0.005499,0.249940,0,0);-webkit-transform:matrix(0.112403,-0.002473,0.005499,0.249940,0,0);}
.m41_c00254{transform:matrix(0.114192,-0.002741,0.005998,0.249928,0,0);-ms-transform:matrix(0.114192,-0.002741,0.005998,0.249928,0,0);-webkit-transform:matrix(0.114192,-0.002741,0.005998,0.249928,0,0);}
.md5_c00254{transform:matrix(0.134020,-0.003082,0.005748,0.249934,0,0);-ms-transform:matrix(0.134020,-0.003082,0.005748,0.249934,0,0);-webkit-transform:matrix(0.134020,-0.003082,0.005748,0.249934,0,0);}
.m2_c00254{transform:matrix(0.140869,-0.001268,0.002250,0.249990,0,0);-ms-transform:matrix(0.140869,-0.001268,0.002250,0.249990,0,0);-webkit-transform:matrix(0.140869,-0.001268,0.002250,0.249990,0,0);}
.mb9_c00254{transform:matrix(0.141936,-0.004258,0.007497,0.249888,0,0);-ms-transform:matrix(0.141936,-0.004258,0.007497,0.249888,0,0);-webkit-transform:matrix(0.141936,-0.004258,0.007497,0.249888,0,0);}
.m5b_c00254{transform:matrix(0.146615,-0.003226,0.005499,0.249940,0,0);-ms-transform:matrix(0.146615,-0.003226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.146615,-0.003226,0.005499,0.249940,0,0);}
.m15_c00254{transform:matrix(0.148647,-0.003568,0.005998,0.249928,0,0);-ms-transform:matrix(0.148647,-0.003568,0.005998,0.249928,0,0);-webkit-transform:matrix(0.148647,-0.003568,0.005998,0.249928,0,0);}
.mf0_c00254{transform:matrix(0.148899,-0.004770,0.008004,0.249872,0,0);-ms-transform:matrix(0.148899,-0.004770,0.008004,0.249872,0,0);-webkit-transform:matrix(0.148899,-0.004770,0.008004,0.249872,0,0);}
.m68_c00254{transform:matrix(0.149099,-0.003280,0.005499,0.249940,0,0);-ms-transform:matrix(0.149099,-0.003280,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149099,-0.003280,0.005499,0.249940,0,0);}
.m20_c00254{transform:matrix(0.150312,-0.003607,0.005998,0.249928,0,0);-ms-transform:matrix(0.150312,-0.003607,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150312,-0.003607,0.005998,0.249928,0,0);}
.m3f_c00254{transform:matrix(0.150452,-0.003611,0.005998,0.249928,0,0);-ms-transform:matrix(0.150452,-0.003611,0.005998,0.249928,0,0);-webkit-transform:matrix(0.150452,-0.003611,0.005998,0.249928,0,0);}
.m1c_c00254{transform:matrix(0.151471,-0.003635,0.005998,0.249928,0,0);-ms-transform:matrix(0.151471,-0.003635,0.005998,0.249928,0,0);-webkit-transform:matrix(0.151471,-0.003635,0.005998,0.249928,0,0);}
.mfd_c00254{transform:matrix(0.154110,-0.002158,0.003500,0.249976,0,0);-ms-transform:matrix(0.154110,-0.002158,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154110,-0.002158,0.003500,0.249976,0,0);}
.md4_c00254{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);}
.m17_c00254{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);}
.m2f_c00254{transform:matrix(0.160119,-0.003843,0.005998,0.249928,0,0);-ms-transform:matrix(0.160119,-0.003843,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160119,-0.003843,0.005998,0.249928,0,0);}
.md2_c00254{transform:matrix(0.161657,-0.003718,0.005748,0.249934,0,0);-ms-transform:matrix(0.161657,-0.003718,0.005748,0.249934,0,0);-webkit-transform:matrix(0.161657,-0.003718,0.005748,0.249934,0,0);}
.mb6_c00254{transform:matrix(0.161662,-0.004850,0.007497,0.249888,0,0);-ms-transform:matrix(0.161662,-0.004850,0.007497,0.249888,0,0);-webkit-transform:matrix(0.161662,-0.004850,0.007497,0.249888,0,0);}
.m1_c00254{transform:matrix(0.163638,-0.001473,0.002250,0.249990,0,0);-ms-transform:matrix(0.163638,-0.001473,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163638,-0.001473,0.002250,0.249990,0,0);}
.m90_c00254{transform:matrix(0.164519,-0.004278,0.006498,0.249916,0,0);-ms-transform:matrix(0.164519,-0.004278,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164519,-0.004278,0.006498,0.249916,0,0);}
.mce_c00254{transform:matrix(0.164811,-0.003791,0.005748,0.249934,0,0);-ms-transform:matrix(0.164811,-0.003791,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164811,-0.003791,0.005748,0.249934,0,0);}
.m70_c00254{transform:matrix(0.165045,-0.003631,0.005499,0.249940,0,0);-ms-transform:matrix(0.165045,-0.003631,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165045,-0.003631,0.005499,0.249940,0,0);}
.m91_c00254{transform:matrix(0.165229,-0.004296,0.006498,0.249916,0,0);-ms-transform:matrix(0.165229,-0.004296,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165229,-0.004296,0.006498,0.249916,0,0);}
.md0_c00254{transform:matrix(0.165551,-0.003808,0.005748,0.249934,0,0);-ms-transform:matrix(0.165551,-0.003808,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165551,-0.003808,0.005748,0.249934,0,0);}
.md6_c00254{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);}
.m75_c00254{transform:matrix(0.166840,-0.003670,0.005499,0.249940,0,0);-ms-transform:matrix(0.166840,-0.003670,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166840,-0.003670,0.005499,0.249940,0,0);}
.m9d_c00254{transform:matrix(0.167343,-0.004351,0.006498,0.249916,0,0);-ms-transform:matrix(0.167343,-0.004351,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167343,-0.004351,0.006498,0.249916,0,0);}
.m9b_c00254{transform:matrix(0.167663,-0.004359,0.006498,0.249916,0,0);-ms-transform:matrix(0.167663,-0.004359,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167663,-0.004359,0.006498,0.249916,0,0);}
.mf1_c00254{transform:matrix(0.168044,-0.005383,0.008004,0.249872,0,0);-ms-transform:matrix(0.168044,-0.005383,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168044,-0.005383,0.008004,0.249872,0,0);}
.m9a_c00254{transform:matrix(0.168148,-0.004372,0.006498,0.249916,0,0);-ms-transform:matrix(0.168148,-0.004372,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168148,-0.004372,0.006498,0.249916,0,0);}
.m7c_c00254{transform:matrix(0.168174,-0.003700,0.005499,0.249940,0,0);-ms-transform:matrix(0.168174,-0.003700,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168174,-0.003700,0.005499,0.249940,0,0);}
.m22_c00254{transform:matrix(0.168237,-0.004038,0.005998,0.249928,0,0);-ms-transform:matrix(0.168237,-0.004038,0.005998,0.249928,0,0);-webkit-transform:matrix(0.168237,-0.004038,0.005998,0.249928,0,0);}
.mdf_c00254{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);}
.m24_c00254{transform:matrix(0.170676,-0.004096,0.005998,0.249928,0,0);-ms-transform:matrix(0.170676,-0.004096,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170676,-0.004096,0.005998,0.249928,0,0);}
.m29_c00254{transform:matrix(0.172000,-0.004128,0.005998,0.249928,0,0);-ms-transform:matrix(0.172000,-0.004128,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172000,-0.004128,0.005998,0.249928,0,0);}
.me3_c00254{transform:matrix(0.172614,-0.003970,0.005748,0.249934,0,0);-ms-transform:matrix(0.172614,-0.003970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172614,-0.003970,0.005748,0.249934,0,0);}
.ma_c00254{transform:matrix(0.173195,-0.004157,0.005998,0.249928,0,0);-ms-transform:matrix(0.173195,-0.004157,0.005998,0.249928,0,0);-webkit-transform:matrix(0.173195,-0.004157,0.005998,0.249928,0,0);}
.mfe_c00254{transform:matrix(0.173198,-0.002425,0.003500,0.249976,0,0);-ms-transform:matrix(0.173198,-0.002425,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173198,-0.002425,0.003500,0.249976,0,0);}
.m99_c00254{transform:matrix(0.173266,-0.004505,0.006498,0.249916,0,0);-ms-transform:matrix(0.173266,-0.004505,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173266,-0.004505,0.006498,0.249916,0,0);}
.m1b_c00254{transform:matrix(0.174010,-0.004176,0.005998,0.249928,0,0);-ms-transform:matrix(0.174010,-0.004176,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174010,-0.004176,0.005998,0.249928,0,0);}
.mbe_c00254{transform:matrix(0.174574,-0.004015,0.005748,0.249934,0,0);-ms-transform:matrix(0.174574,-0.004015,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174574,-0.004015,0.005748,0.249934,0,0);}
.m6b_c00254{transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);-ms-transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175613,-0.003863,0.005499,0.249940,0,0);}
.m43_c00254{transform:matrix(0.175739,-0.004218,0.005998,0.249928,0,0);-ms-transform:matrix(0.175739,-0.004218,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175739,-0.004218,0.005998,0.249928,0,0);}
.m2c_c00254{transform:matrix(0.175904,-0.004222,0.005998,0.249928,0,0);-ms-transform:matrix(0.175904,-0.004222,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175904,-0.004222,0.005998,0.249928,0,0);}
.mf_c00254{transform:matrix(0.176104,-0.004227,0.005998,0.249928,0,0);-ms-transform:matrix(0.176104,-0.004227,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176104,-0.004227,0.005998,0.249928,0,0);}
.m35_c00254{transform:matrix(0.176204,-0.004229,0.005998,0.249928,0,0);-ms-transform:matrix(0.176204,-0.004229,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176204,-0.004229,0.005998,0.249928,0,0);}
.m3e_c00254{transform:matrix(0.176299,-0.004231,0.005998,0.249928,0,0);-ms-transform:matrix(0.176299,-0.004231,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176299,-0.004231,0.005998,0.249928,0,0);}
.maf_c00254{transform:matrix(0.176880,-0.004599,0.006498,0.249916,0,0);-ms-transform:matrix(0.176880,-0.004599,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176880,-0.004599,0.006498,0.249916,0,0);}
.m60_c00254{transform:matrix(0.177392,-0.003903,0.005499,0.249940,0,0);-ms-transform:matrix(0.177392,-0.003903,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177392,-0.003903,0.005499,0.249940,0,0);}
.mc0_c00254{transform:matrix(0.179273,-0.004123,0.005748,0.249934,0,0);-ms-transform:matrix(0.179273,-0.004123,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179273,-0.004123,0.005748,0.249934,0,0);}
.m16_c00254{transform:matrix(0.179388,-0.004305,0.005998,0.249928,0,0);-ms-transform:matrix(0.179388,-0.004305,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179388,-0.004305,0.005998,0.249928,0,0);}
.mae_c00254{transform:matrix(0.179684,-0.004672,0.006498,0.249916,0,0);-ms-transform:matrix(0.179684,-0.004672,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179684,-0.004672,0.006498,0.249916,0,0);}
.m59_c00254{transform:matrix(0.179742,-0.003954,0.005499,0.249940,0,0);-ms-transform:matrix(0.179742,-0.003954,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179742,-0.003954,0.005499,0.249940,0,0);}
.m3_c00254{transform:matrix(0.179958,-0.001620,0.002250,0.249990,0,0);-ms-transform:matrix(0.179958,-0.001620,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179958,-0.001620,0.002250,0.249990,0,0);}
.m4f_c00254{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);}
.m4e_c00254{transform:matrix(0.180416,-0.003969,0.005499,0.249940,0,0);-ms-transform:matrix(0.180416,-0.003969,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180416,-0.003969,0.005499,0.249940,0,0);}
.mf7_c00254{transform:matrix(0.180687,-0.005788,0.008004,0.249872,0,0);-ms-transform:matrix(0.180687,-0.005788,0.008004,0.249872,0,0);-webkit-transform:matrix(0.180687,-0.005788,0.008004,0.249872,0,0);}
.m8e_c00254{transform:matrix(0.181424,-0.004717,0.006498,0.249916,0,0);-ms-transform:matrix(0.181424,-0.004717,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181424,-0.004717,0.006498,0.249916,0,0);}
.m21_c00254{transform:matrix(0.181498,-0.004356,0.005998,0.249928,0,0);-ms-transform:matrix(0.181498,-0.004356,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181498,-0.004356,0.005998,0.249928,0,0);}
.mb0_c00254{transform:matrix(0.182168,-0.004736,0.006498,0.249916,0,0);-ms-transform:matrix(0.182168,-0.004736,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182168,-0.004736,0.006498,0.249916,0,0);}
.m8b_c00254{transform:matrix(0.183253,-0.004765,0.006498,0.249916,0,0);-ms-transform:matrix(0.183253,-0.004765,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183253,-0.004765,0.006498,0.249916,0,0);}
.m8f_c00254{transform:matrix(0.183328,-0.004767,0.006498,0.249916,0,0);-ms-transform:matrix(0.183328,-0.004767,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183328,-0.004767,0.006498,0.249916,0,0);}
.mcf_c00254{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);}
.m10e_c00254{transform:matrix(0.184269,-0.006087,0.008254,0.249864,0,0);-ms-transform:matrix(0.184269,-0.006087,0.008254,0.249864,0,0);-webkit-transform:matrix(0.184269,-0.006087,0.008254,0.249864,0,0);}
.mbc_c00254{transform:matrix(0.184916,-0.004253,0.005748,0.249934,0,0);-ms-transform:matrix(0.184916,-0.004253,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184916,-0.004253,0.005748,0.249934,0,0);}
.mc7_c00254{transform:matrix(0.185016,-0.004255,0.005748,0.249934,0,0);-ms-transform:matrix(0.185016,-0.004255,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185016,-0.004255,0.005748,0.249934,0,0);}
.mf2_c00254{transform:matrix(0.185410,-0.005939,0.008004,0.249872,0,0);-ms-transform:matrix(0.185410,-0.005939,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185410,-0.005939,0.008004,0.249872,0,0);}
.m2a_c00254{transform:matrix(0.185457,-0.004451,0.005998,0.249928,0,0);-ms-transform:matrix(0.185457,-0.004451,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185457,-0.004451,0.005998,0.249928,0,0);}
.m32_c00254{transform:matrix(0.187481,-0.004500,0.005998,0.249928,0,0);-ms-transform:matrix(0.187481,-0.004500,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187481,-0.004500,0.005998,0.249928,0,0);}
.mc2_c00254{transform:matrix(0.187760,-0.004318,0.005748,0.249934,0,0);-ms-transform:matrix(0.187760,-0.004318,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187760,-0.004318,0.005748,0.249934,0,0);}
.m108_c00254{transform:matrix(0.187883,-0.006206,0.008254,0.249864,0,0);-ms-transform:matrix(0.187883,-0.006206,0.008254,0.249864,0,0);-webkit-transform:matrix(0.187883,-0.006206,0.008254,0.249864,0,0);}
.m18_c00254{transform:matrix(0.187996,-0.004512,0.005998,0.249928,0,0);-ms-transform:matrix(0.187996,-0.004512,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187996,-0.004512,0.005998,0.249928,0,0);}
.m69_c00254{transform:matrix(0.188359,-0.004144,0.005499,0.249940,0,0);-ms-transform:matrix(0.188359,-0.004144,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188359,-0.004144,0.005499,0.249940,0,0);}
.m1e_c00254{transform:matrix(0.188426,-0.004522,0.005998,0.249928,0,0);-ms-transform:matrix(0.188426,-0.004522,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188426,-0.004522,0.005998,0.249928,0,0);}
.md3_c00254{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);}
.m6e_c00254{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);}
.m1f_c00254{transform:matrix(0.190060,-0.004561,0.005998,0.249928,0,0);-ms-transform:matrix(0.190060,-0.004561,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190060,-0.004561,0.005998,0.249928,0,0);}
.m7_c00254{transform:matrix(0.190380,-0.004569,0.005998,0.249928,0,0);-ms-transform:matrix(0.190380,-0.004569,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190380,-0.004569,0.005998,0.249928,0,0);}
.ma3_c00254{transform:matrix(0.190561,-0.004955,0.006498,0.249916,0,0);-ms-transform:matrix(0.190561,-0.004955,0.006498,0.249916,0,0);-webkit-transform:matrix(0.190561,-0.004955,0.006498,0.249916,0,0);}
.mcb_c00254{transform:matrix(0.190655,-0.004385,0.005748,0.249934,0,0);-ms-transform:matrix(0.190655,-0.004385,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190655,-0.004385,0.005748,0.249934,0,0);}
.mb4_c00254{transform:matrix(0.190874,-0.005726,0.007497,0.249888,0,0);-ms-transform:matrix(0.190874,-0.005726,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190874,-0.005726,0.007497,0.249888,0,0);}
.mc5_c00254{transform:matrix(0.191784,-0.004411,0.005748,0.249934,0,0);-ms-transform:matrix(0.191784,-0.004411,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191784,-0.004411,0.005748,0.249934,0,0);}
.m10b_c00254{transform:matrix(0.192240,-0.006350,0.008254,0.249864,0,0);-ms-transform:matrix(0.192240,-0.006350,0.008254,0.249864,0,0);-webkit-transform:matrix(0.192240,-0.006350,0.008254,0.249864,0,0);}
.ma2_c00254{transform:matrix(0.192390,-0.005002,0.006498,0.249916,0,0);-ms-transform:matrix(0.192390,-0.005002,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192390,-0.005002,0.006498,0.249916,0,0);}
.ma1_c00254{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);}
.m23_c00254{transform:matrix(0.193209,-0.004637,0.005998,0.249928,0,0);-ms-transform:matrix(0.193209,-0.004637,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193209,-0.004637,0.005998,0.249928,0,0);}
.mb3_c00254{transform:matrix(0.193298,-0.005799,0.007497,0.249888,0,0);-ms-transform:matrix(0.193298,-0.005799,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193298,-0.005799,0.007497,0.249888,0,0);}
.m92_c00254{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);}
.ma4_c00254{transform:matrix(0.196309,-0.005104,0.006498,0.249916,0,0);-ms-transform:matrix(0.196309,-0.005104,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196309,-0.005104,0.006498,0.249916,0,0);}
.m52_c00254{transform:matrix(0.196502,-0.004323,0.005499,0.249940,0,0);-ms-transform:matrix(0.196502,-0.004323,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196502,-0.004323,0.005499,0.249940,0,0);}
.m84_c00254{transform:matrix(0.196719,-0.005115,0.006498,0.249916,0,0);-ms-transform:matrix(0.196719,-0.005115,0.006498,0.249916,0,0);-webkit-transform:matrix(0.196719,-0.005115,0.006498,0.249916,0,0);}
.mb5_c00254{transform:matrix(0.196981,-0.005909,0.007497,0.249888,0,0);-ms-transform:matrix(0.196981,-0.005909,0.007497,0.249888,0,0);-webkit-transform:matrix(0.196981,-0.005909,0.007497,0.249888,0,0);}
.m64_c00254{transform:matrix(0.197997,-0.004356,0.005499,0.249940,0,0);-ms-transform:matrix(0.197997,-0.004356,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197997,-0.004356,0.005499,0.249940,0,0);}
.m1d_c00254{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);}
.ma9_c00254{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);}
.m3d_c00254{transform:matrix(0.199063,-0.004778,0.005998,0.249928,0,0);-ms-transform:matrix(0.199063,-0.004778,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199063,-0.004778,0.005998,0.249928,0,0);}
.mf6_c00254{transform:matrix(0.199238,-0.006382,0.008004,0.249872,0,0);-ms-transform:matrix(0.199238,-0.006382,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199238,-0.006382,0.008004,0.249872,0,0);}
.m31_c00254{transform:matrix(0.200212,-0.004805,0.005998,0.249928,0,0);-ms-transform:matrix(0.200212,-0.004805,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200212,-0.004805,0.005998,0.249928,0,0);}
.mcd_c00254{transform:matrix(0.200292,-0.004607,0.005748,0.249934,0,0);-ms-transform:matrix(0.200292,-0.004607,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200292,-0.004607,0.005748,0.249934,0,0);}
.m57_c00254{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);}
.me_c00254{transform:matrix(0.200392,-0.004809,0.005998,0.249928,0,0);-ms-transform:matrix(0.200392,-0.004809,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200392,-0.004809,0.005998,0.249928,0,0);}
.m9c_c00254{transform:matrix(0.200757,-0.005220,0.006498,0.249916,0,0);-ms-transform:matrix(0.200757,-0.005220,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200757,-0.005220,0.006498,0.249916,0,0);}
.m67_c00254{transform:matrix(0.200796,-0.004418,0.005499,0.249940,0,0);-ms-transform:matrix(0.200796,-0.004418,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200796,-0.004418,0.005499,0.249940,0,0);}
.m19_c00254{transform:matrix(0.200842,-0.004820,0.005998,0.249928,0,0);-ms-transform:matrix(0.200842,-0.004820,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200842,-0.004820,0.005998,0.249928,0,0);}
.mc9_c00254{transform:matrix(0.200872,-0.004620,0.005748,0.249934,0,0);-ms-transform:matrix(0.200872,-0.004620,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200872,-0.004620,0.005748,0.249934,0,0);}
.m6d_c00254{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);}
.m100_c00254{transform:matrix(0.201485,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201485,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201485,-0.002821,0.003500,0.249976,0,0);}
.mcc_c00254{transform:matrix(0.201827,-0.004642,0.005748,0.249934,0,0);-ms-transform:matrix(0.201827,-0.004642,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201827,-0.004642,0.005748,0.249934,0,0);}
.m5f_c00254{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);}
.me8_c00254{transform:matrix(0.202581,-0.004659,0.005748,0.249934,0,0);-ms-transform:matrix(0.202581,-0.004659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202581,-0.004659,0.005748,0.249934,0,0);}
.mc4_c00254{transform:matrix(0.202606,-0.004660,0.005748,0.249934,0,0);-ms-transform:matrix(0.202606,-0.004660,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202606,-0.004660,0.005748,0.249934,0,0);}
.m63_c00254{transform:matrix(0.202696,-0.004459,0.005499,0.249940,0,0);-ms-transform:matrix(0.202696,-0.004459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202696,-0.004459,0.005499,0.249940,0,0);}
.me1_c00254{transform:matrix(0.202826,-0.004665,0.005748,0.249934,0,0);-ms-transform:matrix(0.202826,-0.004665,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202826,-0.004665,0.005748,0.249934,0,0);}
.m9_c00254{transform:matrix(0.203067,-0.004874,0.005998,0.249928,0,0);-ms-transform:matrix(0.203067,-0.004874,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203067,-0.004874,0.005998,0.249928,0,0);}
.mc1_c00254{transform:matrix(0.203266,-0.004675,0.005748,0.249934,0,0);-ms-transform:matrix(0.203266,-0.004675,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203266,-0.004675,0.005748,0.249934,0,0);}
.m109_c00254{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);}
.mb8_c00254{transform:matrix(0.205438,-0.006163,0.007497,0.249888,0,0);-ms-transform:matrix(0.205438,-0.006163,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205438,-0.006163,0.007497,0.249888,0,0);}
.m5_c00254{transform:matrix(0.205486,-0.004932,0.005998,0.249928,0,0);-ms-transform:matrix(0.205486,-0.004932,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205486,-0.004932,0.005998,0.249928,0,0);}
.m3c_c00254{transform:matrix(0.205941,-0.004943,0.005998,0.249928,0,0);-ms-transform:matrix(0.205941,-0.004943,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205941,-0.004943,0.005998,0.249928,0,0);}
.mab_c00254{transform:matrix(0.206080,-0.005358,0.006498,0.249916,0,0);-ms-transform:matrix(0.206080,-0.005358,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206080,-0.005358,0.006498,0.249916,0,0);}
.mf5_c00254{transform:matrix(0.206184,-0.006605,0.008004,0.249872,0,0);-ms-transform:matrix(0.206184,-0.006605,0.008004,0.249872,0,0);-webkit-transform:matrix(0.206184,-0.006605,0.008004,0.249872,0,0);}
.med_c00254{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);}
.mdb_c00254{transform:matrix(0.207010,-0.004761,0.005748,0.249934,0,0);-ms-transform:matrix(0.207010,-0.004761,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207010,-0.004761,0.005748,0.249934,0,0);}
.me7_c00254{transform:matrix(0.207070,-0.004763,0.005748,0.249934,0,0);-ms-transform:matrix(0.207070,-0.004763,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207070,-0.004763,0.005748,0.249934,0,0);}
.me6_c00254{transform:matrix(0.207170,-0.004765,0.005748,0.249934,0,0);-ms-transform:matrix(0.207170,-0.004765,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207170,-0.004765,0.005748,0.249934,0,0);}
.m86_c00254{transform:matrix(0.207480,-0.005394,0.006498,0.249916,0,0);-ms-transform:matrix(0.207480,-0.005394,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207480,-0.005394,0.006498,0.249916,0,0);}
.ma0_c00254{transform:matrix(0.207635,-0.005399,0.006498,0.249916,0,0);-ms-transform:matrix(0.207635,-0.005399,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207635,-0.005399,0.006498,0.249916,0,0);}
.m74_c00254{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);}
.m4a_c00254{transform:matrix(0.208255,-0.004582,0.005499,0.249940,0,0);-ms-transform:matrix(0.208255,-0.004582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208255,-0.004582,0.005499,0.249940,0,0);}
.m6a_c00254{transform:matrix(0.208355,-0.004584,0.005499,0.249940,0,0);-ms-transform:matrix(0.208355,-0.004584,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208355,-0.004584,0.005499,0.249940,0,0);}
.ma8_c00254{transform:matrix(0.208924,-0.005432,0.006498,0.249916,0,0);-ms-transform:matrix(0.208924,-0.005432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.208924,-0.005432,0.006498,0.249916,0,0);}
.mac_c00254{transform:matrix(0.209154,-0.005438,0.006498,0.249916,0,0);-ms-transform:matrix(0.209154,-0.005438,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209154,-0.005438,0.006498,0.249916,0,0);}
.m6c_c00254{transform:matrix(0.209359,-0.004606,0.005499,0.249940,0,0);-ms-transform:matrix(0.209359,-0.004606,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209359,-0.004606,0.005499,0.249940,0,0);}
.mbd_c00254{transform:matrix(0.209575,-0.004820,0.005748,0.249934,0,0);-ms-transform:matrix(0.209575,-0.004820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209575,-0.004820,0.005748,0.249934,0,0);}
.m8d_c00254{transform:matrix(0.209629,-0.005450,0.006498,0.249916,0,0);-ms-transform:matrix(0.209629,-0.005450,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209629,-0.005450,0.006498,0.249916,0,0);}
.mfb_c00254{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);}
.mea_c00254{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);}
.m2b_c00254{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_c00254{transform:matrix(0.210949,-0.004852,0.005748,0.249934,0,0);-ms-transform:matrix(0.210949,-0.004852,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210949,-0.004852,0.005748,0.249934,0,0);}
.m30_c00254{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);}
.mca_c00254{transform:matrix(0.212279,-0.004882,0.005748,0.249934,0,0);-ms-transform:matrix(0.212279,-0.004882,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212279,-0.004882,0.005748,0.249934,0,0);}
.m8_c00254{transform:matrix(0.212339,-0.005096,0.005998,0.249928,0,0);-ms-transform:matrix(0.212339,-0.005096,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212339,-0.005096,0.005998,0.249928,0,0);}
.m7f_c00254{transform:matrix(0.212529,-0.004676,0.005499,0.249940,0,0);-ms-transform:matrix(0.212529,-0.004676,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212529,-0.004676,0.005499,0.249940,0,0);}
.m7e_c00254{transform:matrix(0.212664,-0.004679,0.005499,0.249940,0,0);-ms-transform:matrix(0.212664,-0.004679,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212664,-0.004679,0.005499,0.249940,0,0);}
.mfa_c00254{transform:matrix(0.212786,-0.006816,0.008004,0.249872,0,0);-ms-transform:matrix(0.212786,-0.006816,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212786,-0.006816,0.008004,0.249872,0,0);}
.m73_c00254{transform:matrix(0.213048,-0.004687,0.005499,0.249940,0,0);-ms-transform:matrix(0.213048,-0.004687,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213048,-0.004687,0.005499,0.249940,0,0);}
.m14_c00254{transform:matrix(0.213578,-0.005126,0.005998,0.249928,0,0);-ms-transform:matrix(0.213578,-0.005126,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213578,-0.005126,0.005998,0.249928,0,0);}
.mb7_c00254{transform:matrix(0.215233,-0.006457,0.007497,0.249888,0,0);-ms-transform:matrix(0.215233,-0.006457,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215233,-0.006457,0.007497,0.249888,0,0);}
.m10c_c00254{transform:matrix(0.215567,-0.007121,0.008254,0.249864,0,0);-ms-transform:matrix(0.215567,-0.007121,0.008254,0.249864,0,0);-webkit-transform:matrix(0.215567,-0.007121,0.008254,0.249864,0,0);}
.mbb_c00254{transform:matrix(0.215718,-0.006472,0.007497,0.249888,0,0);-ms-transform:matrix(0.215718,-0.006472,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215718,-0.006472,0.007497,0.249888,0,0);}
.m94_c00254{transform:matrix(0.215897,-0.005613,0.006498,0.249916,0,0);-ms-transform:matrix(0.215897,-0.005613,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215897,-0.005613,0.006498,0.249916,0,0);}
.m93_c00254{transform:matrix(0.216672,-0.005633,0.006498,0.249916,0,0);-ms-transform:matrix(0.216672,-0.005633,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216672,-0.005633,0.006498,0.249916,0,0);}
.mf4_c00254{transform:matrix(0.216694,-0.006941,0.008004,0.249872,0,0);-ms-transform:matrix(0.216694,-0.006941,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216694,-0.006941,0.008004,0.249872,0,0);}
.mb2_c00254{transform:matrix(0.217097,-0.006513,0.007497,0.249888,0,0);-ms-transform:matrix(0.217097,-0.006513,0.007497,0.249888,0,0);-webkit-transform:matrix(0.217097,-0.006513,0.007497,0.249888,0,0);}
.m96_c00254{transform:matrix(0.217157,-0.005646,0.006498,0.249916,0,0);-ms-transform:matrix(0.217157,-0.005646,0.006498,0.249916,0,0);-webkit-transform:matrix(0.217157,-0.005646,0.006498,0.249916,0,0);}
.mc8_c00254{transform:matrix(0.217557,-0.005004,0.005748,0.249934,0,0);-ms-transform:matrix(0.217557,-0.005004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217557,-0.005004,0.005748,0.249934,0,0);}
.m10_c00254{transform:matrix(0.218452,-0.005243,0.005998,0.249928,0,0);-ms-transform:matrix(0.218452,-0.005243,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218452,-0.005243,0.005998,0.249928,0,0);}
.m95_c00254{transform:matrix(0.218656,-0.005685,0.006498,0.249916,0,0);-ms-transform:matrix(0.218656,-0.005685,0.006498,0.249916,0,0);-webkit-transform:matrix(0.218656,-0.005685,0.006498,0.249916,0,0);}
.m8c_c00254{transform:matrix(0.219826,-0.005715,0.006498,0.249916,0,0);-ms-transform:matrix(0.219826,-0.005715,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219826,-0.005715,0.006498,0.249916,0,0);}
.m58_c00254{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);}
.m34_c00254{transform:matrix(0.220472,-0.005291,0.005998,0.249928,0,0);-ms-transform:matrix(0.220472,-0.005291,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220472,-0.005291,0.005998,0.249928,0,0);}
.m65_c00254{transform:matrix(0.220602,-0.004853,0.005499,0.249940,0,0);-ms-transform:matrix(0.220602,-0.004853,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220602,-0.004853,0.005499,0.249940,0,0);}
.m39_c00254{transform:matrix(0.221326,-0.005312,0.005998,0.249928,0,0);-ms-transform:matrix(0.221326,-0.005312,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221326,-0.005312,0.005998,0.249928,0,0);}
.m103_c00254{transform:matrix(0.221348,-0.003099,0.003500,0.249976,0,0);-ms-transform:matrix(0.221348,-0.003099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221348,-0.003099,0.003500,0.249976,0,0);}
.m97_c00254{transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);-ms-transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221440,-0.005757,0.006498,0.249916,0,0);}
.ma5_c00254{transform:matrix(0.221720,-0.005765,0.006498,0.249916,0,0);-ms-transform:matrix(0.221720,-0.005765,0.006498,0.249916,0,0);-webkit-transform:matrix(0.221720,-0.005765,0.006498,0.249916,0,0);}
.md1_c00254{transform:matrix(0.221901,-0.005104,0.005748,0.249934,0,0);-ms-transform:matrix(0.221901,-0.005104,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221901,-0.005104,0.005748,0.249934,0,0);}
.mad_c00254{transform:matrix(0.222155,-0.005776,0.006498,0.249916,0,0);-ms-transform:matrix(0.222155,-0.005776,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222155,-0.005776,0.006498,0.249916,0,0);}
.m55_c00254{transform:matrix(0.222386,-0.004892,0.005499,0.249940,0,0);-ms-transform:matrix(0.222386,-0.004892,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222386,-0.004892,0.005499,0.249940,0,0);}
.m6_c00254{transform:matrix(0.223306,-0.005359,0.005998,0.249928,0,0);-ms-transform:matrix(0.223306,-0.005359,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223306,-0.005359,0.005998,0.249928,0,0);}
.m6f_c00254{transform:matrix(0.224046,-0.004929,0.005499,0.249940,0,0);-ms-transform:matrix(0.224046,-0.004929,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224046,-0.004929,0.005499,0.249940,0,0);}
.m72_c00254{transform:matrix(0.224221,-0.004933,0.005499,0.249940,0,0);-ms-transform:matrix(0.224221,-0.004933,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224221,-0.004933,0.005499,0.249940,0,0);}
.m87_c00254{transform:matrix(0.224944,-0.005849,0.006498,0.249916,0,0);-ms-transform:matrix(0.224944,-0.005849,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224944,-0.005849,0.006498,0.249916,0,0);}
.m5c_c00254{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);}
.m1a_c00254{transform:matrix(0.226585,-0.005438,0.005998,0.249928,0,0);-ms-transform:matrix(0.226585,-0.005438,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226585,-0.005438,0.005998,0.249928,0,0);}
.mf3_c00254{transform:matrix(0.227453,-0.007286,0.008004,0.249872,0,0);-ms-transform:matrix(0.227453,-0.007286,0.008004,0.249872,0,0);-webkit-transform:matrix(0.227453,-0.007286,0.008004,0.249872,0,0);}
.m42_c00254{transform:matrix(0.228704,-0.005489,0.005998,0.249928,0,0);-ms-transform:matrix(0.228704,-0.005489,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228704,-0.005489,0.005998,0.249928,0,0);}
.m11_c00254{transform:matrix(0.229789,-0.005515,0.005998,0.249928,0,0);-ms-transform:matrix(0.229789,-0.005515,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229789,-0.005515,0.005998,0.249928,0,0);}
.md9_c00254{transform:matrix(0.230879,-0.005310,0.005748,0.249934,0,0);-ms-transform:matrix(0.230879,-0.005310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230879,-0.005310,0.005748,0.249934,0,0);}
.m46_c00254{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);}
.m10a_c00254{transform:matrix(0.231774,-0.007656,0.008254,0.249864,0,0);-ms-transform:matrix(0.231774,-0.007656,0.008254,0.249864,0,0);-webkit-transform:matrix(0.231774,-0.007656,0.008254,0.249864,0,0);}
.mfc_c00254{transform:matrix(0.232006,-0.007432,0.008004,0.249872,0,0);-ms-transform:matrix(0.232006,-0.007432,0.008004,0.249872,0,0);-webkit-transform:matrix(0.232006,-0.007432,0.008004,0.249872,0,0);}
.me2_c00254{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);}
.m4b_c00254{transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);-ms-transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);}
.me5_c00254{transform:matrix(0.232968,-0.005358,0.005748,0.249934,0,0);-ms-transform:matrix(0.232968,-0.005358,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232968,-0.005358,0.005748,0.249934,0,0);}
.m56_c00254{transform:matrix(0.233404,-0.005135,0.005499,0.249940,0,0);-ms-transform:matrix(0.233404,-0.005135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233404,-0.005135,0.005499,0.249940,0,0);}
.m13_c00254{transform:matrix(0.233428,-0.005602,0.005998,0.249928,0,0);-ms-transform:matrix(0.233428,-0.005602,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233428,-0.005602,0.005998,0.249928,0,0);}
.mda_c00254{transform:matrix(0.233483,-0.005370,0.005748,0.249934,0,0);-ms-transform:matrix(0.233483,-0.005370,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233483,-0.005370,0.005748,0.249934,0,0);}
.m78_c00254{transform:matrix(0.233583,-0.005139,0.005499,0.249940,0,0);-ms-transform:matrix(0.233583,-0.005139,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233583,-0.005139,0.005499,0.249940,0,0);}
.m5a_c00254{transform:matrix(0.233758,-0.005143,0.005499,0.249940,0,0);-ms-transform:matrix(0.233758,-0.005143,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233758,-0.005143,0.005499,0.249940,0,0);}
.mdc_c00254{transform:matrix(0.234673,-0.005397,0.005748,0.249934,0,0);-ms-transform:matrix(0.234673,-0.005397,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234673,-0.005397,0.005748,0.249934,0,0);}
.m36_c00254{transform:matrix(0.235372,-0.005649,0.005998,0.249928,0,0);-ms-transform:matrix(0.235372,-0.005649,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235372,-0.005649,0.005998,0.249928,0,0);}
.mde_c00254{transform:matrix(0.235513,-0.005417,0.005748,0.249934,0,0);-ms-transform:matrix(0.235513,-0.005417,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235513,-0.005417,0.005748,0.249934,0,0);}
.m7b_c00254{transform:matrix(0.236068,-0.005193,0.005499,0.249940,0,0);-ms-transform:matrix(0.236068,-0.005193,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236068,-0.005193,0.005499,0.249940,0,0);}
.m66_c00254{transform:matrix(0.236363,-0.005200,0.005499,0.249940,0,0);-ms-transform:matrix(0.236363,-0.005200,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236363,-0.005200,0.005499,0.249940,0,0);}
.m104_c00254{transform:matrix(0.237707,-0.003328,0.003500,0.249976,0,0);-ms-transform:matrix(0.237707,-0.003328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237707,-0.003328,0.003500,0.249976,0,0);}
.m2e_c00254{transform:matrix(0.238841,-0.005732,0.005998,0.249928,0,0);-ms-transform:matrix(0.238841,-0.005732,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238841,-0.005732,0.005998,0.249928,0,0);}
.md_c00254{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);}
.m77_c00254{transform:matrix(0.239247,-0.005263,0.005499,0.249940,0,0);-ms-transform:matrix(0.239247,-0.005263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239247,-0.005263,0.005499,0.249940,0,0);}
.m27_c00254{transform:matrix(0.240061,-0.005761,0.005998,0.249928,0,0);-ms-transform:matrix(0.240061,-0.005761,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240061,-0.005761,0.005998,0.249928,0,0);}
.m53_c00254{transform:matrix(0.240262,-0.005286,0.005499,0.249940,0,0);-ms-transform:matrix(0.240262,-0.005286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240262,-0.005286,0.005499,0.249940,0,0);}
.m76_c00254{transform:matrix(0.240397,-0.005289,0.005499,0.249940,0,0);-ms-transform:matrix(0.240397,-0.005289,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240397,-0.005289,0.005499,0.249940,0,0);}
.m50_c00254{transform:matrix(0.242616,-0.005338,0.005499,0.249940,0,0);-ms-transform:matrix(0.242616,-0.005338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242616,-0.005338,0.005499,0.249940,0,0);}
.mdd_c00254{transform:matrix(0.242951,-0.005588,0.005748,0.249934,0,0);-ms-transform:matrix(0.242951,-0.005588,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242951,-0.005588,0.005748,0.249934,0,0);}
.m8a_c00254{transform:matrix(0.243313,-0.006326,0.006498,0.249916,0,0);-ms-transform:matrix(0.243313,-0.006326,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243313,-0.006326,0.006498,0.249916,0,0);}
.m54_c00254{transform:matrix(0.244336,-0.005375,0.005499,0.249940,0,0);-ms-transform:matrix(0.244336,-0.005375,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244336,-0.005375,0.005499,0.249940,0,0);}
.m44_c00254{transform:matrix(0.244874,-0.005877,0.005998,0.249928,0,0);-ms-transform:matrix(0.244874,-0.005877,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244874,-0.005877,0.005998,0.249928,0,0);}
.m4d_c00254{transform:matrix(0.244946,-0.005389,0.005499,0.249940,0,0);-ms-transform:matrix(0.244946,-0.005389,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244946,-0.005389,0.005499,0.249940,0,0);}
.m4c_c00254{transform:matrix(0.245361,-0.005398,0.005499,0.249940,0,0);-ms-transform:matrix(0.245361,-0.005398,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245361,-0.005398,0.005499,0.249940,0,0);}
.m40_c00254{transform:matrix(0.245619,-0.005895,0.005998,0.249928,0,0);-ms-transform:matrix(0.245619,-0.005895,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245619,-0.005895,0.005998,0.249928,0,0);}
.m71_c00254{transform:matrix(0.246515,-0.005423,0.005499,0.249940,0,0);-ms-transform:matrix(0.246515,-0.005423,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246515,-0.005423,0.005499,0.249940,0,0);}
.m51_c00254{transform:matrix(0.249020,-0.005478,0.005499,0.249940,0,0);-ms-transform:matrix(0.249020,-0.005478,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249020,-0.005478,0.005499,0.249940,0,0);}
.md8_c00254{transform:matrix(0.251304,-0.005780,0.005748,0.249934,0,0);-ms-transform:matrix(0.251304,-0.005780,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251304,-0.005780,0.005748,0.249934,0,0);}
.md7_c00254{transform:matrix(0.254128,-0.005845,0.005748,0.249934,0,0);-ms-transform:matrix(0.254128,-0.005845,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254128,-0.005845,0.005748,0.249934,0,0);}
.me0_c00254{transform:matrix(0.255882,-0.005885,0.005748,0.249934,0,0);-ms-transform:matrix(0.255882,-0.005885,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255882,-0.005885,0.005748,0.249934,0,0);}
.m28_c00254{transform:matrix(0.255906,-0.006142,0.005998,0.249928,0,0);-ms-transform:matrix(0.255906,-0.006142,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255906,-0.006142,0.005998,0.249928,0,0);}
.m33_c00254{transform:matrix(0.259395,-0.006225,0.005998,0.249928,0,0);-ms-transform:matrix(0.259395,-0.006225,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259395,-0.006225,0.005998,0.249928,0,0);}
.m102_c00254{transform:matrix(0.259720,-0.003636,0.003500,0.249976,0,0);-ms-transform:matrix(0.259720,-0.003636,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259720,-0.003636,0.003500,0.249976,0,0);}
.m9f_c00254{transform:matrix(0.261362,-0.006795,0.006498,0.249916,0,0);-ms-transform:matrix(0.261362,-0.006795,0.006498,0.249916,0,0);-webkit-transform:matrix(0.261362,-0.006795,0.006498,0.249916,0,0);}
.me9_c00254{transform:matrix(0.263420,-0.006059,0.005748,0.249934,0,0);-ms-transform:matrix(0.263420,-0.006059,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263420,-0.006059,0.005748,0.249934,0,0);}
.m89_c00254{transform:matrix(0.263666,-0.006855,0.006498,0.249916,0,0);-ms-transform:matrix(0.263666,-0.006855,0.006498,0.249916,0,0);-webkit-transform:matrix(0.263666,-0.006855,0.006498,0.249916,0,0);}
.m5d_c00254{transform:matrix(0.264291,-0.005814,0.005499,0.249940,0,0);-ms-transform:matrix(0.264291,-0.005814,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264291,-0.005814,0.005499,0.249940,0,0);}
.m47_c00254{transform:matrix(0.266161,-0.005856,0.005499,0.249940,0,0);-ms-transform:matrix(0.266161,-0.005856,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266161,-0.005856,0.005499,0.249940,0,0);}
.m38_c00254{transform:matrix(0.267348,-0.006416,0.005998,0.249928,0,0);-ms-transform:matrix(0.267348,-0.006416,0.005998,0.249928,0,0);-webkit-transform:matrix(0.267348,-0.006416,0.005998,0.249928,0,0);}
.mff_c00254{transform:matrix(0.269809,-0.003777,0.003500,0.249976,0,0);-ms-transform:matrix(0.269809,-0.003777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269809,-0.003777,0.003500,0.249976,0,0);}
.m49_c00254{transform:matrix(0.269870,-0.005937,0.005499,0.249940,0,0);-ms-transform:matrix(0.269870,-0.005937,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269870,-0.005937,0.005499,0.249940,0,0);}
.m12_c00254{transform:matrix(0.270137,-0.006483,0.005998,0.249928,0,0);-ms-transform:matrix(0.270137,-0.006483,0.005998,0.249928,0,0);-webkit-transform:matrix(0.270137,-0.006483,0.005998,0.249928,0,0);}
.m79_c00254{transform:matrix(0.271039,-0.005963,0.005499,0.249940,0,0);-ms-transform:matrix(0.271039,-0.005963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271039,-0.005963,0.005499,0.249940,0,0);}
.mbf_c00254{transform:matrix(0.271508,-0.006245,0.005748,0.249934,0,0);-ms-transform:matrix(0.271508,-0.006245,0.005748,0.249934,0,0);-webkit-transform:matrix(0.271508,-0.006245,0.005748,0.249934,0,0);}
.meb_c00254{transform:matrix(0.280576,-0.006453,0.005748,0.249934,0,0);-ms-transform:matrix(0.280576,-0.006453,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280576,-0.006453,0.005748,0.249934,0,0);}
.me4_c00254{transform:matrix(0.285020,-0.006555,0.005748,0.249934,0,0);-ms-transform:matrix(0.285020,-0.006555,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285020,-0.006555,0.005748,0.249934,0,0);}
.m3b_c00254{transform:matrix(0.287397,-0.006898,0.005998,0.249928,0,0);-ms-transform:matrix(0.287397,-0.006898,0.005998,0.249928,0,0);-webkit-transform:matrix(0.287397,-0.006898,0.005998,0.249928,0,0);}
.m61_c00254{transform:matrix(0.288435,-0.006346,0.005499,0.249940,0,0);-ms-transform:matrix(0.288435,-0.006346,0.005499,0.249940,0,0);-webkit-transform:matrix(0.288435,-0.006346,0.005499,0.249940,0,0);}
.m98_c00254{transform:matrix(0.288567,-0.007503,0.006498,0.249916,0,0);-ms-transform:matrix(0.288567,-0.007503,0.006498,0.249916,0,0);-webkit-transform:matrix(0.288567,-0.007503,0.006498,0.249916,0,0);}
.m5e_c00254{transform:matrix(0.291025,-0.006403,0.005499,0.249940,0,0);-ms-transform:matrix(0.291025,-0.006403,0.005499,0.249940,0,0);-webkit-transform:matrix(0.291025,-0.006403,0.005499,0.249940,0,0);}
.m4_c00254{transform:matrix(0.291646,-0.007000,0.005998,0.249928,0,0);-ms-transform:matrix(0.291646,-0.007000,0.005998,0.249928,0,0);-webkit-transform:matrix(0.291646,-0.007000,0.005998,0.249928,0,0);}
.m0_c00254{transform:matrix(0.291673,-0.002625,0.002250,0.249990,0,0);-ms-transform:matrix(0.291673,-0.002625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291673,-0.002625,0.002250,0.249990,0,0);}
.mee_c00254{transform:matrix(0.301065,-0.006925,0.005748,0.249934,0,0);-ms-transform:matrix(0.301065,-0.006925,0.005748,0.249934,0,0);-webkit-transform:matrix(0.301065,-0.006925,0.005748,0.249934,0,0);}
.m62_c00254{transform:matrix(0.302197,-0.006648,0.005499,0.249940,0,0);-ms-transform:matrix(0.302197,-0.006648,0.005499,0.249940,0,0);-webkit-transform:matrix(0.302197,-0.006648,0.005499,0.249940,0,0);}
.m2d_c00254{transform:matrix(0.302773,-0.007267,0.005998,0.249928,0,0);-ms-transform:matrix(0.302773,-0.007267,0.005998,0.249928,0,0);-webkit-transform:matrix(0.302773,-0.007267,0.005998,0.249928,0,0);}
.m26_c00254{transform:matrix(0.305892,-0.007341,0.005998,0.249928,0,0);-ms-transform:matrix(0.305892,-0.007341,0.005998,0.249928,0,0);-webkit-transform:matrix(0.305892,-0.007341,0.005998,0.249928,0,0);}
.mc_c00254{transform:matrix(0.309991,-0.007440,0.005998,0.249928,0,0);-ms-transform:matrix(0.309991,-0.007440,0.005998,0.249928,0,0);-webkit-transform:matrix(0.309991,-0.007440,0.005998,0.249928,0,0);}
.m83_c00254{transform:matrix(0.320727,-0.008339,0.006498,0.249916,0,0);-ms-transform:matrix(0.320727,-0.008339,0.006498,0.249916,0,0);-webkit-transform:matrix(0.320727,-0.008339,0.006498,0.249916,0,0);}
.m37_c00254{transform:matrix(0.341517,-0.008196,0.005998,0.249928,0,0);-ms-transform:matrix(0.341517,-0.008196,0.005998,0.249928,0,0);-webkit-transform:matrix(0.341517,-0.008196,0.005998,0.249928,0,0);}
.ma6_c00254{transform:matrix(0.344858,-0.008966,0.006498,0.249916,0,0);-ms-transform:matrix(0.344858,-0.008966,0.006498,0.249916,0,0);-webkit-transform:matrix(0.344858,-0.008966,0.006498,0.249916,0,0);}
.m3a_c00254{transform:matrix(0.350424,-0.008410,0.005998,0.249928,0,0);-ms-transform:matrix(0.350424,-0.008410,0.005998,0.249928,0,0);-webkit-transform:matrix(0.350424,-0.008410,0.005998,0.249928,0,0);}
.m81_c00254{transform:matrix(0.351606,-0.009142,0.006498,0.249916,0,0);-ms-transform:matrix(0.351606,-0.009142,0.006498,0.249916,0,0);-webkit-transform:matrix(0.351606,-0.009142,0.006498,0.249916,0,0);}
.mec_c00254{transform:matrix(0.356216,-0.008193,0.005748,0.249934,0,0);-ms-transform:matrix(0.356216,-0.008193,0.005748,0.249934,0,0);-webkit-transform:matrix(0.356216,-0.008193,0.005748,0.249934,0,0);}
.m10d_c00254{transform:matrix(0.362352,-0.011970,0.008254,0.249864,0,0);-ms-transform:matrix(0.362352,-0.011970,0.008254,0.249864,0,0);-webkit-transform:matrix(0.362352,-0.011970,0.008254,0.249864,0,0);}
.maa_c00254{transform:matrix(0.364757,-0.009484,0.006498,0.249916,0,0);-ms-transform:matrix(0.364757,-0.009484,0.006498,0.249916,0,0);-webkit-transform:matrix(0.364757,-0.009484,0.006498,0.249916,0,0);}
.mc3_c00254{transform:matrix(0.384458,-0.008843,0.005748,0.249934,0,0);-ms-transform:matrix(0.384458,-0.008843,0.005748,0.249934,0,0);-webkit-transform:matrix(0.384458,-0.008843,0.005748,0.249934,0,0);}
.m25_c00254{transform:matrix(0.388183,-0.009316,0.005998,0.249928,0,0);-ms-transform:matrix(0.388183,-0.009316,0.005998,0.249928,0,0);-webkit-transform:matrix(0.388183,-0.009316,0.005998,0.249928,0,0);}
.mef_c00254{transform:matrix(0.409757,-0.009424,0.005748,0.249934,0,0);-ms-transform:matrix(0.409757,-0.009424,0.005748,0.249934,0,0);-webkit-transform:matrix(0.409757,-0.009424,0.005748,0.249934,0,0);}
.m105_c00254{transform:matrix(0.411690,-0.005764,0.003500,0.249976,0,0);-ms-transform:matrix(0.411690,-0.005764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.411690,-0.005764,0.003500,0.249976,0,0);}
.m106_c00254{transform:matrix(0.427358,-0.005983,0.003500,0.249976,0,0);-ms-transform:matrix(0.427358,-0.005983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.427358,-0.005983,0.003500,0.249976,0,0);}
.mf9_c00254{transform:matrix(0.439869,-0.014090,0.008004,0.249872,0,0);-ms-transform:matrix(0.439869,-0.014090,0.008004,0.249872,0,0);-webkit-transform:matrix(0.439869,-0.014090,0.008004,0.249872,0,0);}
.m7d_c00254{transform:matrix(0.461613,-0.010155,0.005499,0.249940,0,0);-ms-transform:matrix(0.461613,-0.010155,0.005499,0.249940,0,0);-webkit-transform:matrix(0.461613,-0.010155,0.005499,0.249940,0,0);}
.m45_c00254{transform:matrix(0.467995,-0.011232,0.005998,0.249928,0,0);-ms-transform:matrix(0.467995,-0.011232,0.005998,0.249928,0,0);-webkit-transform:matrix(0.467995,-0.011232,0.005998,0.249928,0,0);}
.mf8_c00254{transform:matrix(0.491703,-0.015750,0.008004,0.249872,0,0);-ms-transform:matrix(0.491703,-0.015750,0.008004,0.249872,0,0);-webkit-transform:matrix(0.491703,-0.015750,0.008004,0.249872,0,0);}
.m7a_c00254{transform:matrix(0.538110,-0.011838,0.005499,0.249940,0,0);-ms-transform:matrix(0.538110,-0.011838,0.005499,0.249940,0,0);-webkit-transform:matrix(0.538110,-0.011838,0.005499,0.249940,0,0);}
.m85_c00254{transform:matrix(0.553828,-0.014400,0.006498,0.249916,0,0);-ms-transform:matrix(0.553828,-0.014400,0.006498,0.249916,0,0);-webkit-transform:matrix(0.553828,-0.014400,0.006498,0.249916,0,0);}
.m82_c00254{transform:matrix(0.579869,-0.015077,0.006498,0.249916,0,0);-ms-transform:matrix(0.579869,-0.015077,0.006498,0.249916,0,0);-webkit-transform:matrix(0.579869,-0.015077,0.006498,0.249916,0,0);}
.m107_c00254{transform:matrix(0.624504,-0.008743,0.003500,0.249976,0,0);-ms-transform:matrix(0.624504,-0.008743,0.003500,0.249976,0,0);-webkit-transform:matrix(0.624504,-0.008743,0.003500,0.249976,0,0);}
.m88_c00254{transform:matrix(0.632371,-0.016442,0.006498,0.249916,0,0);-ms-transform:matrix(0.632371,-0.016442,0.006498,0.249916,0,0);-webkit-transform:matrix(0.632371,-0.016442,0.006498,0.249916,0,0);}
.m10f_c00254{transform:matrix(0.662044,-0.021869,0.008254,0.249864,0,0);-ms-transform:matrix(0.662044,-0.021869,0.008254,0.249864,0,0);-webkit-transform:matrix(0.662044,-0.021869,0.008254,0.249864,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;}
.fs17_c00254{font-size:48.312774px;}
.fs12_c00254{font-size:49.372203px;}
.fs1c_c00254{font-size:50.377063px;}
.fs13_c00254{font-size:50.413329px;}
.fs19_c00254{font-size:51.424912px;}
.fs14_c00254{font-size:51.463607px;}
.fs15_c00254{font-size:52.513884px;}
.fs18_c00254{font-size:54.573376px;}
.fs16_c00254{font-size:60.916106px;}
.fsb_c00254{font-size:61.964990px;}
.fs6_c00254{font-size:64.068444px;}
.fs1a_c00254{font-size:65.106379px;}
.fs8_c00254{font-size:65.118746px;}
.fsa_c00254{font-size:67.216260px;}
.fs2_c00254{font-size:67.219351px;}
.fsd_c00254{font-size:68.266515px;}
.fsc_c00254{font-size:69.316769px;}
.fs7_c00254{font-size:69.319956px;}
.fs11_c00254{font-size:69.323419px;}
.fs1_c00254{font-size:70.370258px;}
.fs10_c00254{font-size:70.373774px;}
.fs9_c00254{font-size:71.417277px;}
.fs4_c00254{font-size:71.420560px;}
.fse_c00254{font-size:71.424129px;}
.fsf_c00254{font-size:72.474484px;}
.fs3_c00254{font-size:74.571467px;}
.fs5_c00254{font-size:96.627817px;}
.fs1b_c00254{font-size:122.862039px;}
.fs0_c00254{font-size:136.505528px;}
.y0_c00254{bottom:0.000000px;}
.ye9_c00254{bottom:156.583233px;}
.yea_c00254{bottom:156.908143px;}
.yeb_c00254{bottom:157.961455px;}
.yec_c00254{bottom:158.291421px;}
.yed_c00254{bottom:158.637154px;}
.yee_c00254{bottom:159.896292px;}
.yef_c00254{bottom:160.548546px;}
.yf1_c00254{bottom:160.963629px;}
.yf0_c00254{bottom:160.970064px;}
.ye1_c00254{bottom:174.408093px;}
.ye2_c00254{bottom:174.677331px;}
.ye3_c00254{bottom:175.132110px;}
.ye4_c00254{bottom:176.361931px;}
.ye5_c00254{bottom:177.971529px;}
.ye6_c00254{bottom:178.234419px;}
.ye7_c00254{bottom:178.609054px;}
.yfa_c00254{bottom:179.296481px;}
.ye8_c00254{bottom:179.341627px;}
.yfb_c00254{bottom:180.006886px;}
.yfc_c00254{bottom:180.469720px;}
.yfd_c00254{bottom:181.678737px;}
.yfe_c00254{bottom:182.224095px;}
.yd9_c00254{bottom:192.236107px;}
.yda_c00254{bottom:192.998730px;}
.ydb_c00254{bottom:193.525855px;}
.ydc_c00254{bottom:193.930264px;}
.ydd_c00254{bottom:194.284131px;}
.yde_c00254{bottom:195.344626px;}
.ydf_c00254{bottom:195.917637px;}
.ye0_c00254{bottom:197.158464px;}
.yf2_c00254{bottom:197.650500px;}
.yf3_c00254{bottom:198.572004px;}
.yf4_c00254{bottom:199.206276px;}
.yf5_c00254{bottom:200.314116px;}
.yf6_c00254{bottom:200.975172px;}
.yf7_c00254{bottom:201.678516px;}
.yf8_c00254{bottom:203.345172px;}
.yf9_c00254{bottom:204.173892px;}
.yd3_c00254{bottom:210.061390px;}
.yd4_c00254{bottom:211.568316px;}
.yd5_c00254{bottom:212.109000px;}
.yd6_c00254{bottom:213.934119px;}
.yd7_c00254{bottom:214.364058px;}
.yd8_c00254{bottom:214.960218px;}
.y10a_c00254{bottom:215.470500px;}
.y10b_c00254{bottom:216.406149px;}
.y10c_c00254{bottom:217.511583px;}
.y10d_c00254{bottom:219.357586px;}
.y10e_c00254{bottom:220.828974px;}
.y10f_c00254{bottom:222.076869px;}
.y110_c00254{bottom:222.637605px;}
.y111_c00254{bottom:223.304914px;}
.ycc_c00254{bottom:228.154500px;}
.ycd_c00254{bottom:229.316460px;}
.yce_c00254{bottom:229.950570px;}
.ycf_c00254{bottom:231.099247px;}
.yd0_c00254{bottom:231.900406px;}
.yd1_c00254{bottom:232.273041px;}
.yd2_c00254{bottom:232.944100px;}
.yc6_c00254{bottom:233.557128px;}
.yc7_c00254{bottom:234.748311px;}
.yc8_c00254{bottom:235.314539px;}
.yc9_c00254{bottom:236.604362px;}
.yca_c00254{bottom:238.286209px;}
.ycb_c00254{bottom:238.884483px;}
.ybe_c00254{bottom:245.704500px;}
.ybf_c00254{bottom:246.487029px;}
.yc0_c00254{bottom:247.053830px;}
.yc1_c00254{bottom:247.563636px;}
.yc2_c00254{bottom:248.644176px;}
.yc3_c00254{bottom:249.043238px;}
.yc4_c00254{bottom:250.334159px;}
.yc5_c00254{bottom:251.172853px;}
.yb4_c00254{bottom:251.632500px;}
.yb5_c00254{bottom:252.079260px;}
.yb6_c00254{bottom:253.161240px;}
.yb7_c00254{bottom:253.658265px;}
.yb8_c00254{bottom:254.500755px;}
.yb9_c00254{bottom:255.310620px;}
.yba_c00254{bottom:255.585885px;}
.ybb_c00254{bottom:256.300080px;}
.ybc_c00254{bottom:257.419905px;}
.ybd_c00254{bottom:257.734140px;}
.ya9_c00254{bottom:305.886645px;}
.yaa_c00254{bottom:306.237873px;}
.yab_c00254{bottom:306.702447px;}
.yac_c00254{bottom:308.431038px;}
.yad_c00254{bottom:309.511203px;}
.yae_c00254{bottom:310.042677px;}
.yaf_c00254{bottom:311.130582px;}
.yb0_c00254{bottom:312.921354px;}
.yb1_c00254{bottom:313.623051px;}
.yb2_c00254{bottom:314.207931px;}
.yb3_c00254{bottom:315.447009px;}
.ya1_c00254{bottom:328.924932px;}
.ya2_c00254{bottom:330.222219px;}
.ya3_c00254{bottom:331.891845px;}
.ya4_c00254{bottom:332.517090px;}
.ya5_c00254{bottom:333.902748px;}
.ya6_c00254{bottom:334.866558px;}
.ya7_c00254{bottom:336.713607px;}
.ya8_c00254{bottom:338.930148px;}
.y97_c00254{bottom:352.070991px;}
.y98_c00254{bottom:353.811297px;}
.y99_c00254{bottom:354.370194px;}
.y9a_c00254{bottom:356.060361px;}
.y9b_c00254{bottom:356.537664px;}
.y9c_c00254{bottom:357.181491px;}
.y9d_c00254{bottom:358.120572px;}
.y9e_c00254{bottom:359.002845px;}
.y9f_c00254{bottom:359.372382px;}
.ya0_c00254{bottom:360.965625px;}
.y8e_c00254{bottom:374.695662px;}
.y8f_c00254{bottom:375.447465px;}
.y90_c00254{bottom:376.297860px;}
.y91_c00254{bottom:378.040224px;}
.y92_c00254{bottom:379.608687px;}
.y93_c00254{bottom:380.209014px;}
.y94_c00254{bottom:380.770965px;}
.y95_c00254{bottom:382.400346px;}
.y96_c00254{bottom:383.386656px;}
.y87_c00254{bottom:397.135128px;}
.y88_c00254{bottom:397.926447px;}
.y89_c00254{bottom:398.947332px;}
.y8a_c00254{bottom:400.074741px;}
.y8b_c00254{bottom:401.699460px;}
.y8c_c00254{bottom:401.980230px;}
.y8d_c00254{bottom:403.371543px;}
.y82_c00254{bottom:422.941500px;}
.y83_c00254{bottom:424.025583px;}
.y84_c00254{bottom:424.820208px;}
.y85_c00254{bottom:425.845518px;}
.y86_c00254{bottom:427.772976px;}
.y79_c00254{bottom:443.557860px;}
.y7a_c00254{bottom:444.954129px;}
.y7b_c00254{bottom:446.339211px;}
.y7c_c00254{bottom:447.083856px;}
.y7d_c00254{bottom:448.315428px;}
.y7e_c00254{bottom:449.283012px;}
.y7f_c00254{bottom:449.674590px;}
.y80_c00254{bottom:450.713616px;}
.y81_c00254{bottom:452.350362px;}
.y71_c00254{bottom:466.794498px;}
.y72_c00254{bottom:467.464416px;}
.y73_c00254{bottom:468.939801px;}
.y74_c00254{bottom:469.981734px;}
.y75_c00254{bottom:471.696423px;}
.y76_c00254{bottom:472.664643px;}
.y77_c00254{bottom:474.486189px;}
.y78_c00254{bottom:475.726560px;}
.y69_c00254{bottom:490.033095px;}
.y6a_c00254{bottom:491.080527px;}
.y6b_c00254{bottom:491.742171px;}
.y6c_c00254{bottom:492.841788px;}
.y6d_c00254{bottom:494.208039px;}
.y6e_c00254{bottom:495.087135px;}
.y6f_c00254{bottom:495.796626px;}
.y70_c00254{bottom:497.177115px;}
.y63_c00254{bottom:512.718864px;}
.y64_c00254{bottom:513.773868px;}
.y65_c00254{bottom:514.696323px;}
.y66_c00254{bottom:517.162752px;}
.y67_c00254{bottom:518.123979px;}
.y68_c00254{bottom:518.876547px;}
.y59_c00254{bottom:535.373862px;}
.y5a_c00254{bottom:536.695254px;}
.y5b_c00254{bottom:537.363210px;}
.y5c_c00254{bottom:538.311351px;}
.y5d_c00254{bottom:538.979307px;}
.y5e_c00254{bottom:541.084290px;}
.y5f_c00254{bottom:541.498374px;}
.y60_c00254{bottom:542.678247px;}
.y61_c00254{bottom:543.606030px;}
.y62_c00254{bottom:544.197303px;}
.y51_c00254{bottom:559.147449px;}
.y52_c00254{bottom:560.389944px;}
.y53_c00254{bottom:561.570072px;}
.y54_c00254{bottom:562.419768px;}
.y55_c00254{bottom:564.327564px;}
.y56_c00254{bottom:564.787878px;}
.y57_c00254{bottom:565.902471px;}
.y58_c00254{bottom:566.862267px;}
.y48_c00254{bottom:581.451000px;}
.y49_c00254{bottom:582.255573px;}
.y4a_c00254{bottom:582.626328px;}
.y4b_c00254{bottom:583.018401px;}
.y4c_c00254{bottom:583.744599px;}
.y4d_c00254{bottom:585.267945px;}
.y4e_c00254{bottom:585.607614px;}
.y4f_c00254{bottom:586.142742px;}
.y50_c00254{bottom:587.415750px;}
.y41_c00254{bottom:627.558624px;}
.y42_c00254{bottom:628.877100px;}
.y43_c00254{bottom:629.663976px;}
.y44_c00254{bottom:631.728456px;}
.y45_c00254{bottom:632.472444px;}
.y46_c00254{bottom:634.242516px;}
.y47_c00254{bottom:634.937064px;}
.y37_c00254{bottom:649.009680px;}
.y38_c00254{bottom:650.737344px;}
.y39_c00254{bottom:651.136800px;}
.y3a_c00254{bottom:651.718764px;}
.y3b_c00254{bottom:653.028972px;}
.y3c_c00254{bottom:653.726928px;}
.y3d_c00254{bottom:654.332700px;}
.y3e_c00254{bottom:654.969756px;}
.y3f_c00254{bottom:655.890420px;}
.y40_c00254{bottom:656.643012px;}
.y2e_c00254{bottom:671.182836px;}
.y2f_c00254{bottom:672.386724px;}
.y30_c00254{bottom:673.875624px;}
.y31_c00254{bottom:674.277420px;}
.y32_c00254{bottom:675.781788px;}
.y33_c00254{bottom:676.347600px;}
.y34_c00254{bottom:677.079156px;}
.y35_c00254{bottom:678.154164px;}
.y36_c00254{bottom:679.291908px;}
.y27_c00254{bottom:694.104612px;}
.y28_c00254{bottom:695.935704px;}
.y29_c00254{bottom:696.769764px;}
.y2a_c00254{bottom:699.174732px;}
.y2b_c00254{bottom:699.686232px;}
.y2c_c00254{bottom:700.664172px;}
.y2d_c00254{bottom:702.695904px;}
.y26_c00254{bottom:721.187688px;}
.y1d_c00254{bottom:748.425036px;}
.y1e_c00254{bottom:749.000952px;}
.y1f_c00254{bottom:749.602536px;}
.y20_c00254{bottom:750.817248px;}
.y21_c00254{bottom:751.968852px;}
.y22_c00254{bottom:752.317392px;}
.y23_c00254{bottom:752.800848px;}
.y24_c00254{bottom:753.772200px;}
.y25_c00254{bottom:754.463604px;}
.y15_c00254{bottom:772.683612px;}
.y16_c00254{bottom:773.199852px;}
.y17_c00254{bottom:773.904492px;}
.y18_c00254{bottom:775.643280px;}
.y19_c00254{bottom:776.116680px;}
.y1a_c00254{bottom:777.380268px;}
.y1b_c00254{bottom:777.689652px;}
.y1c_c00254{bottom:778.469112px;}
.yd_c00254{bottom:794.642280px;}
.ye_c00254{bottom:795.301452px;}
.yf_c00254{bottom:796.282512px;}
.y10_c00254{bottom:797.125176px;}
.y11_c00254{bottom:797.592444px;}
.y12_c00254{bottom:799.153668px;}
.y13_c00254{bottom:800.647824px;}
.y14_c00254{bottom:801.228276px;}
.y5_c00254{bottom:818.113500px;}
.y6_c00254{bottom:818.723700px;}
.y7_c00254{bottom:820.070172px;}
.y8_c00254{bottom:821.089584px;}
.y9_c00254{bottom:822.245796px;}
.ya_c00254{bottom:823.938156px;}
.yb_c00254{bottom:825.030000px;}
.yc_c00254{bottom:826.119216px;}
.y1_c00254{bottom:867.859500px;}
.y2_c00254{bottom:869.797911px;}
.y3_c00254{bottom:870.475922px;}
.y4_c00254{bottom:871.146318px;}
.y107_c00254{bottom:906.394881px;}
.y108_c00254{bottom:908.201979px;}
.y109_c00254{bottom:911.510109px;}
.yff_c00254{bottom:925.833000px;}
.y100_c00254{bottom:927.299451px;}
.y101_c00254{bottom:928.085985px;}
.y102_c00254{bottom:928.871931px;}
.y103_c00254{bottom:929.854521px;}
.y104_c00254{bottom:930.501426px;}
.y105_c00254{bottom:930.842067px;}
.y106_c00254{bottom:931.253835px;}
.h19_c00254{height:48.312774px;}
.h14_c00254{height:49.372203px;}
.h1e_c00254{height:50.377063px;}
.h15_c00254{height:50.413329px;}
.h1b_c00254{height:51.424912px;}
.h16_c00254{height:51.463607px;}
.h17_c00254{height:52.513884px;}
.h1a_c00254{height:54.573376px;}
.h18_c00254{height:60.916106px;}
.hd_c00254{height:61.964990px;}
.h8_c00254{height:64.068444px;}
.h1c_c00254{height:65.106379px;}
.ha_c00254{height:65.118746px;}
.hc_c00254{height:67.216260px;}
.h4_c00254{height:67.219351px;}
.hf_c00254{height:68.266515px;}
.he_c00254{height:69.316769px;}
.h9_c00254{height:69.319956px;}
.h13_c00254{height:69.323419px;}
.h3_c00254{height:70.370258px;}
.h12_c00254{height:70.373774px;}
.hb_c00254{height:71.417277px;}
.h6_c00254{height:71.420560px;}
.h10_c00254{height:71.424129px;}
.h11_c00254{height:72.474484px;}
.h5_c00254{height:74.571467px;}
.h7_c00254{height:96.627817px;}
.h1d_c00254{height:122.862039px;}
.h2_c00254{height:136.505528px;}
.h1_c00254{height:1005.000000px;}
.h0_c00254{height:1005.150000px;}
.w1_c00254{width:713.250000px;}
.w0_c00254{width:713.550000px;}
.x0_c00254{left:0.000000px;}
.x8f_c00254{left:91.561689px;}
.x81_c00254{left:92.778000px;}
.x8a_c00254{left:97.675500px;}
.x91_c00254{left:98.854310px;}
.x9a_c00254{left:100.093047px;}
.xd_c00254{left:109.882272px;}
.x96_c00254{left:111.208980px;}
.x25_c00254{left:112.913532px;}
.x9b_c00254{left:116.307651px;}
.x14_c00254{left:119.845212px;}
.x5_c00254{left:121.543500px;}
.x1c_c00254{left:123.405132px;}
.x42_c00254{left:125.286822px;}
.x4f_c00254{left:126.690936px;}
.x57_c00254{left:128.298561px;}
.x70_c00254{left:130.529391px;}
.x92_c00254{left:132.011810px;}
.x78_c00254{left:133.429206px;}
.xe_c00254{left:142.850940px;}
.x6_c00254{left:146.968500px;}
.x15_c00254{left:148.484316px;}
.x79_c00254{left:150.027348px;}
.x1d_c00254{left:152.216904px;}
.x58_c00254{left:155.065779px;}
.x3d_c00254{left:156.936000px;}
.x1_c00254{left:162.787500px;}
.x2b_c00254{left:168.429420px;}
.x50_c00254{left:170.620989px;}
.x93_c00254{left:172.513310px;}
.x3e_c00254{left:173.788500px;}
.x8b_c00254{left:175.765500px;}
.x43_c00254{left:179.308134px;}
.x26_c00254{left:180.704136px;}
.x1e_c00254{left:182.285784px;}
.x37_c00254{left:185.114280px;}
.x16_c00254{left:187.662468px;}
.x6c_c00254{left:189.896523px;}
.xf_c00254{left:191.920656px;}
.x68_c00254{left:195.233640px;}
.x31_c00254{left:199.221432px;}
.x7_c00254{left:203.071500px;}
.x4a_c00254{left:205.179993px;}
.x51_c00254{left:209.071806px;}
.x27_c00254{left:211.579404px;}
.x59_c00254{left:214.079385px;}
.x32_c00254{left:216.615864px;}
.xa2_c00254{left:218.320500px;}
.x82_c00254{left:220.590000px;}
.x2c_c00254{left:223.587960px;}
.x3f_c00254{left:224.619000px;}
.x71_c00254{left:226.349883px;}
.x44_c00254{left:230.631012px;}
.x10_c00254{left:234.035688px;}
.x38_c00254{left:235.798332px;}
.x64_c00254{left:237.106500px;}
.x2d_c00254{left:238.453380px;}
.x33_c00254{left:241.927476px;}
.x1f_c00254{left:243.029616px;}
.x54_c00254{left:244.226880px;}
.x8_c00254{left:245.547000px;}
.x5f_c00254{left:247.997766px;}
.x7a_c00254{left:250.378161px;}
.x97_c00254{left:254.434980px;}
.x5a_c00254{left:255.778146px;}
.x11_c00254{left:257.382420px;}
.x94_c00254{left:258.920810px;}
.x8c_c00254{left:260.541000px;}
.x39_c00254{left:266.083392px;}
.x45_c00254{left:267.548187px;}
.x4b_c00254{left:269.839236px;}
.xa3_c00254{left:274.501500px;}
.x8d_c00254{left:276.742500px;}
.x65_c00254{left:278.802000px;}
.x60_c00254{left:280.344540px;}
.x98_c00254{left:282.153480px;}
.x17_c00254{left:284.250864px;}
.x9_c00254{left:293.722500px;}
.x69_c00254{left:297.158988px;}
.x34_c00254{left:298.895844px;}
.x20_c00254{left:300.581124px;}
.x90_c00254{left:304.554189px;}
.x8e_c00254{left:305.919000px;}
.x6a_c00254{left:307.553715px;}
.x40_c00254{left:309.301500px;}
.x18_c00254{left:310.542144px;}
.x52_c00254{left:311.836785px;}
.x95_c00254{left:312.869810px;}
.x99_c00254{left:314.004480px;}
.x2e_c00254{left:315.142872px;}
.x72_c00254{left:316.699602px;}
.x21_c00254{left:318.042816px;}
.x28_c00254{left:319.591128px;}
.x5b_c00254{left:324.373125px;}
.x35_c00254{left:329.228064px;}
.x83_c00254{left:330.532500px;}
.x41_c00254{left:333.625500px;}
.x12_c00254{left:335.440908px;}
.x55_c00254{left:337.761255px;}
.x6d_c00254{left:340.325523px;}
.x22_c00254{left:342.189120px;}
.x73_c00254{left:343.540506px;}
.x3a_c00254{left:345.474576px;}
.x84_c00254{left:347.327828px;}
.x66_c00254{left:348.799500px;}
.x46_c00254{left:350.514372px;}
.x53_c00254{left:351.913536px;}
.x4c_c00254{left:354.060192px;}
.x29_c00254{left:355.836036px;}
.x6b_c00254{left:359.102889px;}
.x7c_c00254{left:360.252000px;}
.x6e_c00254{left:361.939023px;}
.x5c_c00254{left:363.130584px;}
.xa_c00254{left:364.237500px;}
.x56_c00254{left:367.350468px;}
.x47_c00254{left:370.550943px;}
.x7b_c00254{left:372.185343px;}
.x3b_c00254{left:374.097708px;}
.x61_c00254{left:375.940428px;}
.x2_c00254{left:378.166500px;}
.x19_c00254{left:380.764260px;}
.x2f_c00254{left:382.036548px;}
.x36_c00254{left:383.263860px;}
.x85_c00254{left:385.741755px;}
.xa0_c00254{left:389.648369px;}
.x23_c00254{left:390.729264px;}
.x62_c00254{left:392.989065px;}
.x7d_c00254{left:396.318000px;}
.x1a_c00254{left:397.970244px;}
.xa4_c00254{left:400.825500px;}
.x86_c00254{left:404.030908px;}
.xb_c00254{left:409.731000px;}
.x76_c00254{left:413.335461px;}
.x4d_c00254{left:417.849501px;}
.x48_c00254{left:419.031387px;}
.x67_c00254{left:422.932500px;}
.x30_c00254{left:424.189524px;}
.x24_c00254{left:425.291076px;}
.x2a_c00254{left:431.111136px;}
.xa1_c00254{left:432.777721px;}
.x74_c00254{left:434.848764px;}
.x5d_c00254{left:435.968766px;}
.xa7_c00254{left:437.881533px;}
.x13_c00254{left:439.142844px;}
.x1b_c00254{left:441.266472px;}
.x87_c00254{left:445.624250px;}
.xa5_c00254{left:447.033000px;}
.x9c_c00254{left:451.601604px;}
.x3_c00254{left:453.501000px;}
.xc_c00254{left:455.115000px;}
.x49_c00254{left:460.748463px;}
.x6f_c00254{left:462.542523px;}
.xa8_c00254{left:464.952710px;}
.x3c_c00254{left:468.848136px;}
.xa6_c00254{left:471.364500px;}
.x9d_c00254{left:473.559124px;}
.x7e_c00254{left:477.139500px;}
.x4e_c00254{left:478.643508px;}
.x5e_c00254{left:485.595999px;}
.x77_c00254{left:495.411816px;}
.x88_c00254{left:499.890279px;}
.x75_c00254{left:501.207696px;}
.x63_c00254{left:509.362524px;}
.x89_c00254{left:519.181225px;}
.x9e_c00254{left:525.590042px;}
.x4_c00254{left:527.989500px;}
.x7f_c00254{left:538.273500px;}
.xa9_c00254{left:547.272807px;}
.x80_c00254{left:548.748000px;}
.x9f_c00254{left:551.461644px;}
.xaa_c00254{left:564.247815px;}
.xab_c00254{left:584.449094px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:0.000000pt;}
.fs17_c00254{font-size:42.944688pt;}
.fs12_c00254{font-size:43.886402pt;}
.fs1c_c00254{font-size:44.779611pt;}
.fs13_c00254{font-size:44.811848pt;}
.fs19_c00254{font-size:45.711033pt;}
.fs14_c00254{font-size:45.745428pt;}
.fs15_c00254{font-size:46.679008pt;}
.fs18_c00254{font-size:48.509668pt;}
.fs16_c00254{font-size:54.147650pt;}
.fsb_c00254{font-size:55.079991pt;}
.fs6_c00254{font-size:56.949728pt;}
.fs1a_c00254{font-size:57.872337pt;}
.fs8_c00254{font-size:57.883330pt;}
.fsa_c00254{font-size:59.747787pt;}
.fs2_c00254{font-size:59.750534pt;}
.fsd_c00254{font-size:60.681346pt;}
.fsc_c00254{font-size:61.614905pt;}
.fs7_c00254{font-size:61.617738pt;}
.fs11_c00254{font-size:61.620817pt;}
.fs1_c00254{font-size:62.551340pt;}
.fs10_c00254{font-size:62.554466pt;}
.fs9_c00254{font-size:63.482024pt;}
.fs4_c00254{font-size:63.484942pt;}
.fse_c00254{font-size:63.488115pt;}
.fsf_c00254{font-size:64.421764pt;}
.fs3_c00254{font-size:66.285749pt;}
.fs5_c00254{font-size:85.891393pt;}
.fs1b_c00254{font-size:109.210701pt;}
.fs0_c00254{font-size:121.338247pt;}
.y0_c00254{bottom:0.000000pt;}
.ye9_c00254{bottom:139.185096pt;}
.yea_c00254{bottom:139.473905pt;}
.yeb_c00254{bottom:140.410183pt;}
.yec_c00254{bottom:140.703485pt;}
.yed_c00254{bottom:141.010804pt;}
.yee_c00254{bottom:142.130037pt;}
.yef_c00254{bottom:142.709819pt;}
.yf1_c00254{bottom:143.078781pt;}
.yf0_c00254{bottom:143.084501pt;}
.ye1_c00254{bottom:155.029416pt;}
.ye2_c00254{bottom:155.268739pt;}
.ye3_c00254{bottom:155.672987pt;}
.ye4_c00254{bottom:156.766161pt;}
.ye5_c00254{bottom:158.196915pt;}
.ye6_c00254{bottom:158.430595pt;}
.ye7_c00254{bottom:158.763604pt;}
.yfa_c00254{bottom:159.374649pt;}
.ye8_c00254{bottom:159.414780pt;}
.yfb_c00254{bottom:160.006121pt;}
.yfc_c00254{bottom:160.417529pt;}
.yfd_c00254{bottom:161.492211pt;}
.yfe_c00254{bottom:161.976973pt;}
.yd9_c00254{bottom:170.876540pt;}
.yda_c00254{bottom:171.554427pt;}
.ydb_c00254{bottom:172.022983pt;}
.ydc_c00254{bottom:172.382457pt;}
.ydd_c00254{bottom:172.697005pt;}
.yde_c00254{bottom:173.639668pt;}
.ydf_c00254{bottom:174.149011pt;}
.ye0_c00254{bottom:175.251968pt;}
.yf2_c00254{bottom:175.689333pt;}
.yf3_c00254{bottom:176.508448pt;}
.yf4_c00254{bottom:177.072245pt;}
.yf5_c00254{bottom:178.056992pt;}
.yf6_c00254{bottom:178.644597pt;}
.yf7_c00254{bottom:179.269792pt;}
.yf8_c00254{bottom:180.751264pt;}
.yf9_c00254{bottom:181.487904pt;}
.yd3_c00254{bottom:186.721236pt;}
.yd4_c00254{bottom:188.060725pt;}
.yd5_c00254{bottom:188.541333pt;}
.yd6_c00254{bottom:190.163661pt;}
.yd7_c00254{bottom:190.545829pt;}
.yd8_c00254{bottom:191.075749pt;}
.y10a_c00254{bottom:191.529333pt;}
.y10b_c00254{bottom:192.361021pt;}
.y10c_c00254{bottom:193.343629pt;}
.y10d_c00254{bottom:194.984521pt;}
.y10e_c00254{bottom:196.292421pt;}
.y10f_c00254{bottom:197.401661pt;}
.y110_c00254{bottom:197.900093pt;}
.y111_c00254{bottom:198.493257pt;}
.ycc_c00254{bottom:202.804000pt;}
.ycd_c00254{bottom:203.836853pt;}
.yce_c00254{bottom:204.400507pt;}
.ycf_c00254{bottom:205.421553pt;}
.yd0_c00254{bottom:206.133695pt;}
.yd1_c00254{bottom:206.464925pt;}
.yd2_c00254{bottom:207.061423pt;}
.yc6_c00254{bottom:207.606336pt;}
.yc7_c00254{bottom:208.665165pt;}
.yc8_c00254{bottom:209.168479pt;}
.yc9_c00254{bottom:210.314988pt;}
.yca_c00254{bottom:211.809964pt;}
.ycb_c00254{bottom:212.341763pt;}
.ybe_c00254{bottom:218.404000pt;}
.ybf_c00254{bottom:219.099581pt;}
.yc0_c00254{bottom:219.603404pt;}
.yc1_c00254{bottom:220.056565pt;}
.yc2_c00254{bottom:221.017045pt;}
.yc3_c00254{bottom:221.371767pt;}
.yc4_c00254{bottom:222.519252pt;}
.yc5_c00254{bottom:223.264759pt;}
.yb4_c00254{bottom:223.673333pt;}
.yb5_c00254{bottom:224.070453pt;}
.yb6_c00254{bottom:225.032213pt;}
.yb7_c00254{bottom:225.474013pt;}
.yb8_c00254{bottom:226.222893pt;}
.yb9_c00254{bottom:226.942773pt;}
.yba_c00254{bottom:227.187453pt;}
.ybb_c00254{bottom:227.822293pt;}
.ybc_c00254{bottom:228.817693pt;}
.ybd_c00254{bottom:229.097013pt;}
.ya9_c00254{bottom:271.899240pt;}
.yaa_c00254{bottom:272.211443pt;}
.yab_c00254{bottom:272.624397pt;}
.yac_c00254{bottom:274.160923pt;}
.yad_c00254{bottom:275.121069pt;}
.yae_c00254{bottom:275.593491pt;}
.yaf_c00254{bottom:276.560517pt;}
.yb0_c00254{bottom:278.152315pt;}
.yb1_c00254{bottom:278.776045pt;}
.yb2_c00254{bottom:279.295939pt;}
.yb3_c00254{bottom:280.397341pt;}
.ya1_c00254{bottom:292.377717pt;}
.ya2_c00254{bottom:293.530861pt;}
.ya3_c00254{bottom:295.014973pt;}
.ya4_c00254{bottom:295.570747pt;}
.ya5_c00254{bottom:296.802443pt;}
.ya6_c00254{bottom:297.659163pt;}
.ya7_c00254{bottom:299.300984pt;}
.ya8_c00254{bottom:301.271243pt;}
.y97_c00254{bottom:312.951992pt;}
.y98_c00254{bottom:314.498931pt;}
.y99_c00254{bottom:314.995728pt;}
.y9a_c00254{bottom:316.498099pt;}
.y9b_c00254{bottom:316.922368pt;}
.y9c_c00254{bottom:317.494659pt;}
.y9d_c00254{bottom:318.329397pt;}
.y9e_c00254{bottom:319.113640pt;}
.y9f_c00254{bottom:319.442117pt;}
.ya0_c00254{bottom:320.858333pt;}
.y8e_c00254{bottom:333.062811pt;}
.y8f_c00254{bottom:333.731080pt;}
.y90_c00254{bottom:334.486987pt;}
.y91_c00254{bottom:336.035755pt;}
.y92_c00254{bottom:337.429944pt;}
.y93_c00254{bottom:337.963568pt;}
.y94_c00254{bottom:338.463080pt;}
.y95_c00254{bottom:339.911419pt;}
.y96_c00254{bottom:340.788139pt;}
.y87_c00254{bottom:353.009003pt;}
.y88_c00254{bottom:353.712397pt;}
.y89_c00254{bottom:354.619851pt;}
.y8a_c00254{bottom:355.621992pt;}
.y8b_c00254{bottom:357.066187pt;}
.y8c_c00254{bottom:357.315760pt;}
.y8d_c00254{bottom:358.552483pt;}
.y82_c00254{bottom:375.948000pt;}
.y83_c00254{bottom:376.911629pt;}
.y84_c00254{bottom:377.617963pt;}
.y85_c00254{bottom:378.529349pt;}
.y86_c00254{bottom:380.242645pt;}
.y79_c00254{bottom:394.273653pt;}
.y7a_c00254{bottom:395.514781pt;}
.y7b_c00254{bottom:396.745965pt;}
.y7c_c00254{bottom:397.407872pt;}
.y7d_c00254{bottom:398.502603pt;}
.y7e_c00254{bottom:399.362677pt;}
.y7f_c00254{bottom:399.710747pt;}
.y80_c00254{bottom:400.634325pt;}
.y81_c00254{bottom:402.089211pt;}
.y71_c00254{bottom:414.928443pt;}
.y72_c00254{bottom:415.523925pt;}
.y73_c00254{bottom:416.835379pt;}
.y74_c00254{bottom:417.761541pt;}
.y75_c00254{bottom:419.285709pt;}
.y76_c00254{bottom:420.146349pt;}
.y77_c00254{bottom:421.765501pt;}
.y78_c00254{bottom:422.868053pt;}
.y69_c00254{bottom:435.584973pt;}
.y6a_c00254{bottom:436.516024pt;}
.y6b_c00254{bottom:437.104152pt;}
.y6c_c00254{bottom:438.081589pt;}
.y6d_c00254{bottom:439.296035pt;}
.y6e_c00254{bottom:440.077453pt;}
.y6f_c00254{bottom:440.708112pt;}
.y70_c00254{bottom:441.935213pt;}
.y63_c00254{bottom:455.750101pt;}
.y64_c00254{bottom:456.687883pt;}
.y65_c00254{bottom:457.507843pt;}
.y66_c00254{bottom:459.700224pt;}
.y67_c00254{bottom:460.554648pt;}
.y68_c00254{bottom:461.223597pt;}
.y59_c00254{bottom:475.887877pt;}
.y5a_c00254{bottom:477.062448pt;}
.y5b_c00254{bottom:477.656187pt;}
.y5c_c00254{bottom:478.498979pt;}
.y5d_c00254{bottom:479.092717pt;}
.y5e_c00254{bottom:480.963813pt;}
.y5f_c00254{bottom:481.331888pt;}
.y60_c00254{bottom:482.380664pt;}
.y61_c00254{bottom:483.205360pt;}
.y62_c00254{bottom:483.730936pt;}
.y51_c00254{bottom:497.019955pt;}
.y52_c00254{bottom:498.124395pt;}
.y53_c00254{bottom:499.173397pt;}
.y54_c00254{bottom:499.928683pt;}
.y55_c00254{bottom:501.624501pt;}
.y56_c00254{bottom:502.033669pt;}
.y57_c00254{bottom:503.024419pt;}
.y58_c00254{bottom:503.877571pt;}
.y48_c00254{bottom:516.845333pt;}
.y49_c00254{bottom:517.560509pt;}
.y4a_c00254{bottom:517.890069pt;}
.y4b_c00254{bottom:518.238579pt;}
.y4c_c00254{bottom:518.884088pt;}
.y4d_c00254{bottom:520.238173pt;}
.y4e_c00254{bottom:520.540101pt;}
.y4f_c00254{bottom:521.015771pt;}
.y50_c00254{bottom:522.147333pt;}
.y41_c00254{bottom:557.829888pt;}
.y42_c00254{bottom:559.001867pt;}
.y43_c00254{bottom:559.701312pt;}
.y44_c00254{bottom:561.536405pt;}
.y45_c00254{bottom:562.197728pt;}
.y46_c00254{bottom:563.771125pt;}
.y47_c00254{bottom:564.388501pt;}
.y37_c00254{bottom:576.897493pt;}
.y38_c00254{bottom:578.433195pt;}
.y39_c00254{bottom:578.788267pt;}
.y3a_c00254{bottom:579.305568pt;}
.y3b_c00254{bottom:580.470197pt;}
.y3c_c00254{bottom:581.090603pt;}
.y3d_c00254{bottom:581.629067pt;}
.y3e_c00254{bottom:582.195339pt;}
.y3f_c00254{bottom:583.013707pt;}
.y40_c00254{bottom:583.682677pt;}
.y2e_c00254{bottom:596.606965pt;}
.y2f_c00254{bottom:597.677088pt;}
.y30_c00254{bottom:599.000555pt;}
.y31_c00254{bottom:599.357707pt;}
.y32_c00254{bottom:600.694923pt;}
.y33_c00254{bottom:601.197867pt;}
.y34_c00254{bottom:601.848139pt;}
.y35_c00254{bottom:602.803701pt;}
.y36_c00254{bottom:603.815029pt;}
.y27_c00254{bottom:616.981877pt;}
.y28_c00254{bottom:618.609515pt;}
.y29_c00254{bottom:619.350901pt;}
.y2a_c00254{bottom:621.488651pt;}
.y2b_c00254{bottom:621.943317pt;}
.y2c_c00254{bottom:622.812597pt;}
.y2d_c00254{bottom:624.618581pt;}
.y26_c00254{bottom:641.055723pt;}
.y1d_c00254{bottom:665.266699pt;}
.y1e_c00254{bottom:665.778624pt;}
.y1f_c00254{bottom:666.313365pt;}
.y20_c00254{bottom:667.393109pt;}
.y21_c00254{bottom:668.416757pt;}
.y22_c00254{bottom:668.726571pt;}
.y23_c00254{bottom:669.156309pt;}
.y24_c00254{bottom:670.019733pt;}
.y25_c00254{bottom:670.634315pt;}
.y15_c00254{bottom:686.829877pt;}
.y16_c00254{bottom:687.288757pt;}
.y17_c00254{bottom:687.915104pt;}
.y18_c00254{bottom:689.460693pt;}
.y19_c00254{bottom:689.881493pt;}
.y1a_c00254{bottom:691.004683pt;}
.y1b_c00254{bottom:691.279691pt;}
.y1c_c00254{bottom:691.972544pt;}
.yd_c00254{bottom:706.348693pt;}
.ye_c00254{bottom:706.934624pt;}
.yf_c00254{bottom:707.806677pt;}
.y10_c00254{bottom:708.555712pt;}
.y11_c00254{bottom:708.971061pt;}
.y12_c00254{bottom:710.358816pt;}
.y13_c00254{bottom:711.686955pt;}
.y14_c00254{bottom:712.202912pt;}
.y5_c00254{bottom:727.212000pt;}
.y6_c00254{bottom:727.754400pt;}
.y7_c00254{bottom:728.951264pt;}
.y8_c00254{bottom:729.857408pt;}
.y9_c00254{bottom:730.885152pt;}
.ya_c00254{bottom:732.389472pt;}
.yb_c00254{bottom:733.360000pt;}
.yc_c00254{bottom:734.328192pt;}
.y1_c00254{bottom:771.430667pt;}
.y2_c00254{bottom:773.153699pt;}
.y3_c00254{bottom:773.756375pt;}
.y4_c00254{bottom:774.352283pt;}
.y107_c00254{bottom:805.684339pt;}
.y108_c00254{bottom:807.290648pt;}
.y109_c00254{bottom:810.231208pt;}
.yff_c00254{bottom:822.962667pt;}
.y100_c00254{bottom:824.266179pt;}
.y101_c00254{bottom:824.965320pt;}
.y102_c00254{bottom:825.663939pt;}
.y103_c00254{bottom:826.537352pt;}
.y104_c00254{bottom:827.112379pt;}
.y105_c00254{bottom:827.415171pt;}
.y106_c00254{bottom:827.781187pt;}
.h19_c00254{height:42.944688pt;}
.h14_c00254{height:43.886402pt;}
.h1e_c00254{height:44.779611pt;}
.h15_c00254{height:44.811848pt;}
.h1b_c00254{height:45.711033pt;}
.h16_c00254{height:45.745428pt;}
.h17_c00254{height:46.679008pt;}
.h1a_c00254{height:48.509668pt;}
.h18_c00254{height:54.147650pt;}
.hd_c00254{height:55.079991pt;}
.h8_c00254{height:56.949728pt;}
.h1c_c00254{height:57.872337pt;}
.ha_c00254{height:57.883330pt;}
.hc_c00254{height:59.747787pt;}
.h4_c00254{height:59.750534pt;}
.hf_c00254{height:60.681346pt;}
.he_c00254{height:61.614905pt;}
.h9_c00254{height:61.617738pt;}
.h13_c00254{height:61.620817pt;}
.h3_c00254{height:62.551340pt;}
.h12_c00254{height:62.554466pt;}
.hb_c00254{height:63.482024pt;}
.h6_c00254{height:63.484942pt;}
.h10_c00254{height:63.488115pt;}
.h11_c00254{height:64.421764pt;}
.h5_c00254{height:66.285749pt;}
.h7_c00254{height:85.891393pt;}
.h1d_c00254{height:109.210701pt;}
.h2_c00254{height:121.338247pt;}
.h1_c00254{height:893.333333pt;}
.h0_c00254{height:893.466667pt;}
.w1_c00254{width:634.000000pt;}
.w0_c00254{width:634.266667pt;}
.x0_c00254{left:0.000000pt;}
.x8f_c00254{left:81.388168pt;}
.x81_c00254{left:82.469333pt;}
.x8a_c00254{left:86.822667pt;}
.x91_c00254{left:87.870497pt;}
.x9a_c00254{left:88.971597pt;}
.xd_c00254{left:97.673131pt;}
.x96_c00254{left:98.852427pt;}
.x25_c00254{left:100.367584pt;}
.x9b_c00254{left:103.384579pt;}
.x14_c00254{left:106.529077pt;}
.x5_c00254{left:108.038667pt;}
.x1c_c00254{left:109.693451pt;}
.x42_c00254{left:111.366064pt;}
.x4f_c00254{left:112.614165pt;}
.x57_c00254{left:114.043165pt;}
.x70_c00254{left:116.026125pt;}
.x92_c00254{left:117.343831pt;}
.x78_c00254{left:118.603739pt;}
.xe_c00254{left:126.978613pt;}
.x6_c00254{left:130.638667pt;}
.x15_c00254{left:131.986059pt;}
.x79_c00254{left:133.357643pt;}
.x1d_c00254{left:135.303915pt;}
.x58_c00254{left:137.836248pt;}
.x3d_c00254{left:139.498667pt;}
.x1_c00254{left:144.700000pt;}
.x2b_c00254{left:149.715040pt;}
.x50_c00254{left:151.663101pt;}
.x93_c00254{left:153.345164pt;}
.x3e_c00254{left:154.478667pt;}
.x8b_c00254{left:156.236000pt;}
.x43_c00254{left:159.385008pt;}
.x26_c00254{left:160.625899pt;}
.x1e_c00254{left:162.031808pt;}
.x37_c00254{left:164.546027pt;}
.x16_c00254{left:166.811083pt;}
.x6c_c00254{left:168.796909pt;}
.xf_c00254{left:170.596139pt;}
.x68_c00254{left:173.541013pt;}
.x31_c00254{left:177.085717pt;}
.x7_c00254{left:180.508000pt;}
.x4a_c00254{left:182.382216pt;}
.x51_c00254{left:185.841605pt;}
.x27_c00254{left:188.070581pt;}
.x59_c00254{left:190.292787pt;}
.x32_c00254{left:192.547435pt;}
.xa2_c00254{left:194.062667pt;}
.x82_c00254{left:196.080000pt;}
.x2c_c00254{left:198.744853pt;}
.x3f_c00254{left:199.661333pt;}
.x71_c00254{left:201.199896pt;}
.x44_c00254{left:205.005344pt;}
.x10_c00254{left:208.031723pt;}
.x38_c00254{left:209.598517pt;}
.x64_c00254{left:210.761333pt;}
.x2d_c00254{left:211.958560pt;}
.x33_c00254{left:215.046645pt;}
.x1f_c00254{left:216.026325pt;}
.x54_c00254{left:217.090560pt;}
.x8_c00254{left:218.264000pt;}
.x5f_c00254{left:220.442459pt;}
.x7a_c00254{left:222.558365pt;}
.x97_c00254{left:226.164427pt;}
.x5a_c00254{left:227.358352pt;}
.x11_c00254{left:228.784373pt;}
.x94_c00254{left:230.151831pt;}
.x8c_c00254{left:231.592000pt;}
.x39_c00254{left:236.518571pt;}
.x45_c00254{left:237.820611pt;}
.x4b_c00254{left:239.857099pt;}
.xa3_c00254{left:244.001333pt;}
.x8d_c00254{left:245.993333pt;}
.x65_c00254{left:247.824000pt;}
.x60_c00254{left:249.195147pt;}
.x98_c00254{left:250.803093pt;}
.x17_c00254{left:252.667435pt;}
.x9_c00254{left:261.086667pt;}
.x69_c00254{left:264.141323pt;}
.x34_c00254{left:265.685195pt;}
.x20_c00254{left:267.183221pt;}
.x90_c00254{left:270.714835pt;}
.x8e_c00254{left:271.928000pt;}
.x6a_c00254{left:273.381080pt;}
.x40_c00254{left:274.934667pt;}
.x18_c00254{left:276.037461pt;}
.x52_c00254{left:277.188253pt;}
.x95_c00254{left:278.106497pt;}
.x99_c00254{left:279.115093pt;}
.x2e_c00254{left:280.126997pt;}
.x72_c00254{left:281.510757pt;}
.x21_c00254{left:282.704725pt;}
.x28_c00254{left:284.081003pt;}
.x5b_c00254{left:288.331667pt;}
.x35_c00254{left:292.647168pt;}
.x83_c00254{left:293.806667pt;}
.x41_c00254{left:296.556000pt;}
.x12_c00254{left:298.169696pt;}
.x55_c00254{left:300.232227pt;}
.x6d_c00254{left:302.511576pt;}
.x22_c00254{left:304.168107pt;}
.x73_c00254{left:305.369339pt;}
.x3a_c00254{left:307.088512pt;}
.x84_c00254{left:308.735847pt;}
.x66_c00254{left:310.044000pt;}
.x46_c00254{left:311.568331pt;}
.x53_c00254{left:312.812032pt;}
.x4c_c00254{left:314.720171pt;}
.x29_c00254{left:316.298699pt;}
.x6b_c00254{left:319.202568pt;}
.x7c_c00254{left:320.224000pt;}
.x6e_c00254{left:321.723576pt;}
.x5c_c00254{left:322.782741pt;}
.xa_c00254{left:323.766667pt;}
.x56_c00254{left:326.533749pt;}
.x47_c00254{left:329.378616pt;}
.x7b_c00254{left:330.831416pt;}
.x3b_c00254{left:332.531296pt;}
.x61_c00254{left:334.169269pt;}
.x2_c00254{left:336.148000pt;}
.x19_c00254{left:338.457120pt;}
.x2f_c00254{left:339.588043pt;}
.x36_c00254{left:340.678987pt;}
.x85_c00254{left:342.881560pt;}
.xa0_c00254{left:346.354105pt;}
.x23_c00254{left:347.314901pt;}
.x62_c00254{left:349.323613pt;}
.x7d_c00254{left:352.282667pt;}
.x1a_c00254{left:353.751328pt;}
.xa4_c00254{left:356.289333pt;}
.x86_c00254{left:359.138585pt;}
.xb_c00254{left:364.205333pt;}
.x76_c00254{left:367.409299pt;}
.x4d_c00254{left:371.421779pt;}
.x48_c00254{left:372.472344pt;}
.x67_c00254{left:375.940000pt;}
.x30_c00254{left:377.057355pt;}
.x24_c00254{left:378.036512pt;}
.x2a_c00254{left:383.209899pt;}
.xa1_c00254{left:384.691308pt;}
.x74_c00254{left:386.532235pt;}
.x5d_c00254{left:387.527792pt;}
.xa7_c00254{left:389.228029pt;}
.x13_c00254{left:390.349195pt;}
.x1b_c00254{left:392.236864pt;}
.x87_c00254{left:396.110444pt;}
.xa5_c00254{left:397.362667pt;}
.x9c_c00254{left:401.423648pt;}
.x3_c00254{left:403.112000pt;}
.xc_c00254{left:404.546667pt;}
.x49_c00254{left:409.554189pt;}
.x6f_c00254{left:411.148909pt;}
.xa8_c00254{left:413.291297pt;}
.x3c_c00254{left:416.753899pt;}
.xa6_c00254{left:418.990667pt;}
.x9d_c00254{left:420.941444pt;}
.x7e_c00254{left:424.124000pt;}
.x4e_c00254{left:425.460896pt;}
.x5e_c00254{left:431.640888pt;}
.x77_c00254{left:440.366059pt;}
.x88_c00254{left:444.346915pt;}
.x75_c00254{left:445.517952pt;}
.x63_c00254{left:452.766688pt;}
.x89_c00254{left:461.494423pt;}
.x9e_c00254{left:467.191148pt;}
.x4_c00254{left:469.324000pt;}
.x7f_c00254{left:478.465333pt;}
.xa9_c00254{left:486.464717pt;}
.x80_c00254{left:487.776000pt;}
.x9f_c00254{left:490.188128pt;}
.xaa_c00254{left:501.553613pt;}
.xab_c00254{left:519.510305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m61_c00255{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);}
.m8e_c00255{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);}
.m8_c00255{transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.021925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021925,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.074770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074770,0.000000,0.000000,0.250000,0,0);}
.mc4_c00255{transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100335,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);}
.m106_c00255{transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);-ms-transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);}
.m48_c00255{transform:matrix(0.117020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117020,0.000000,0.000000,0.250000,0,0);}
.mfa_c00255{transform:matrix(0.117596,0.002117,-0.004499,0.249960,0,0);-ms-transform:matrix(0.117596,0.002117,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.117596,0.002117,-0.004499,0.249960,0,0);}
.md5_c00255{transform:matrix(0.119460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119460,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);}
.m5e_c00255{transform:matrix(0.137995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137995,0.000000,0.000000,0.250000,0,0);}
.mb4_c00255{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);}
.maa_c00255{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);}
.m59_c00255{transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.143685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143685,0.000000,0.000000,0.250000,0,0);}
.mc2_c00255{transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144120,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{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);}
.m83_c00255{transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{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);}
.m28_c00255{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);}
.m27_c00255{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);}
.m1e_c00255{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);}
.m89_c00255{transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{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);}
.m3d_c00255{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);}
.md3_c00255{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);}
.m47_c00255{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);}
.m103_c00255{transform:matrix(0.154990,0.002790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154990,0.002790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154990,0.002790,-0.004499,0.249960,0,0);}
.m11_c00255{transform:matrix(0.156380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156380,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{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);}
.m19_c00255{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);}
.mbf_c00255{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);}
.ma7_c00255{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);}
.m12_c00255{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);}
.m35_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);}
.m25_c00255{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);}
.m1a_c00255{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);}
.mf1_c00255{transform:matrix(0.162779,0.002930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162779,0.002930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162779,0.002930,-0.004499,0.249960,0,0);}
.m57_c00255{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);}
.m7d_c00255{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);}
.mf_c00255{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);}
.m62_c00255{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);}
.ma3_c00255{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);}
.m2d_c00255{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);}
.mb8_c00255{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);}
.m5a_c00255{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);}
.md1_c00255{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);}
.m86_c00255{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);}
.m70_c00255{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);}
.m7f_c00255{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);}
.m4f_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);}
.me7_c00255{transform:matrix(0.171097,0.003080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171097,0.003080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171097,0.003080,-0.004499,0.249960,0,0);}
.m68_c00255{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);}
.m82_c00255{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);}
.mec_c00255{transform:matrix(0.171972,0.003095,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171972,0.003095,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171972,0.003095,-0.004499,0.249960,0,0);}
.m109_c00255{transform:matrix(0.172257,0.003101,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172257,0.003101,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172257,0.003101,-0.004499,0.249960,0,0);}
.m9d_c00255{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);}
.m46_c00255{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);}
.m26_c00255{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);}
.mac_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);}
.m16_c00255{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);}
.m56_c00255{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);}
.meb_c00255{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);}
.mf0_c00255{transform:matrix(0.174667,0.003144,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174667,0.003144,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174667,0.003144,-0.004499,0.249960,0,0);}
.mad_c00255{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);}
.mbe_c00255{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);}
.mbd_c00255{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);}
.m15_c00255{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);}
.m21_c00255{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);}
.mfe_c00255{transform:matrix(0.177566,0.003196,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177566,0.003196,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177566,0.003196,-0.004499,0.249960,0,0);}
.mc1_c00255{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);}
.m10b_c00255{transform:matrix(0.178156,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178156,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178156,0.003207,-0.004499,0.249960,0,0);}
.m44_c00255{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);}
.me1_c00255{transform:matrix(0.179051,0.003223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179051,0.003223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179051,0.003223,-0.004499,0.249960,0,0);}
.m92_c00255{transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{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);}
.m72_c00255{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);}
.m43_c00255{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);}
.md0_c00255{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);}
.m63_c00255{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);}
.mae_c00255{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);}
.m3b_c00255{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);}
.m97_c00255{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);}
.mfd_c00255{transform:matrix(0.181136,0.003260,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181136,0.003260,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181136,0.003260,-0.004499,0.249960,0,0);}
.m88_c00255{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);}
.m45_c00255{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);}
.mb0_c00255{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);}
.md8_c00255{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);}
.m104_c00255{transform:matrix(0.182595,0.003287,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182595,0.003287,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182595,0.003287,-0.004499,0.249960,0,0);}
.m80_c00255{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);}
.mb5_c00255{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);}
.m2a_c00255{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);}
.m40_c00255{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);}
.m8b_c00255{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);}
.m36_c00255{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);}
.m5c_c00255{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);}
.m3f_c00255{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);}
.ma9_c00255{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);}
.m23_c00255{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);}
.m96_c00255{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);}
.mc6_c00255{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);}
.m30_c00255{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);}
.mc3_c00255{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);}
.m13_c00255{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);}
.m1d_c00255{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);}
.m71_c00255{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);}
.m32_c00255{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);}
.mf5_c00255{transform:matrix(0.187955,0.003383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187955,0.003383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187955,0.003383,-0.004499,0.249960,0,0);}
.m8c_c00255{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);}
.m1c_c00255{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);}
.m101_c00255{transform:matrix(0.189389,0.003409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189389,0.003409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189389,0.003409,-0.004499,0.249960,0,0);}
.ma1_c00255{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);}
.m99_c00255{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_c00255{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);}
.md4_c00255{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.mc8_c00255{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);}
.m8a_c00255{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);}
.m7b_c00255{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);}
.m6b_c00255{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);}
.mfc_c00255{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);}
.m74_c00255{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);}
.m24_c00255{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);}
.mb7_c00255{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);}
.m108_c00255{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);}
.m42_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);}
.m6c_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);}
.m84_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);}
.m9b_c00255{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);}
.m7a_c00255{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);}
.m2b_c00255{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);}
.m5d_c00255{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);}
.m39_c00255{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);}
.m29_c00255{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);}
.m10c_c00255{transform:matrix(0.194803,0.003506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194803,0.003506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194803,0.003506,-0.004499,0.249960,0,0);}
.mee_c00255{transform:matrix(0.194823,0.003507,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194823,0.003507,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194823,0.003507,-0.004499,0.249960,0,0);}
.mc0_c00255{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);}
.me2_c00255{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);}
.m7c_c00255{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);}
.m105_c00255{transform:matrix(0.196023,0.003528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196023,0.003528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196023,0.003528,-0.004499,0.249960,0,0);}
.m73_c00255{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);}
.m10_c00255{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);}
.m60_c00255{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);}
.me3_c00255{transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);}
.m55_c00255{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);}
.m2f_c00255{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);}
.m17_c00255{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);}
.mc7_c00255{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{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);}
.mff_c00255{transform:matrix(0.198918,0.003581,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198918,0.003581,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198918,0.003581,-0.004499,0.249960,0,0);}
.m3a_c00255{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);}
.mcc_c00255{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);}
.m4a_c00255{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);}
.me6_c00255{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);}
.m100_c00255{transform:matrix(0.200088,0.003602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200088,0.003602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200088,0.003602,-0.004499,0.249960,0,0);}
.mca_c00255{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);}
.ma8_c00255{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);}
.mb2_c00255{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);}
.m4e_c00255{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);}
.mdb_c00255{transform:matrix(0.201182,0.003018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201182,0.003018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201182,0.003018,-0.003750,0.249972,0,0);}
.m76_c00255{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);}
.ma2_c00255{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);}
.m10a_c00255{transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202122,0.003638,-0.004499,0.249960,0,0);}
.mb9_c00255{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);}
.m8d_c00255{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);}
.ma6_c00255{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);}
.mde_c00255{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);}
.md7_c00255{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);}
.md2_c00255{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);}
.m1b_c00255{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);}
.mcd_c00255{transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{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);}
.m22_c00255{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);}
.me_c00255{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);}
.mf8_c00255{transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208411,0.003751,-0.004499,0.249960,0,0);}
.mf3_c00255{transform:matrix(0.208431,0.003752,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208431,0.003752,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208431,0.003752,-0.004499,0.249960,0,0);}
.m79_c00255{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);}
.mb3_c00255{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);}
.m91_c00255{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);}
.mb6_c00255{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);}
.m34_c00255{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);}
.mf7_c00255{transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209626,0.003773,-0.004499,0.249960,0,0);}
.maf_c00255{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);}
.m37_c00255{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);}
.mc9_c00255{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);}
.mbc_c00255{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);}
.m33_c00255{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);}
.m3e_c00255{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);}
.m5f_c00255{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);}
.m65_c00255{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);}
.mf6_c00255{transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);}
.m94_c00255{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);}
.ma4_c00255{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);}
.mce_c00255{transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{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);}
.mcb_c00255{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);}
.m81_c00255{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);}
.m3c_c00255{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);}
.mab_c00255{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);}
.m53_c00255{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);}
.med_c00255{transform:matrix(0.220514,0.003969,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220514,0.003969,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220514,0.003969,-0.004499,0.249960,0,0);}
.m20_c00255{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);}
.m102_c00255{transform:matrix(0.221199,0.003982,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221199,0.003982,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221199,0.003982,-0.004499,0.249960,0,0);}
.mea_c00255{transform:matrix(0.221274,0.003983,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221274,0.003983,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221274,0.003983,-0.004499,0.249960,0,0);}
.m5b_c00255{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);}
.m9c_c00255{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);}
.m41_c00255{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);}
.m6a_c00255{transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);}
.mc5_c00255{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);}
.m93_c00255{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);}
.m2e_c00255{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);}
.m9e_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);}
.mcf_c00255{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);}
.me4_c00255{transform:matrix(0.226773,0.004082,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226773,0.004082,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226773,0.004082,-0.004499,0.249960,0,0);}
.m107_c00255{transform:matrix(0.228343,0.004110,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228343,0.004110,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228343,0.004110,-0.004499,0.249960,0,0);}
.mf9_c00255{transform:matrix(0.228763,0.004118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228763,0.004118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228763,0.004118,-0.004499,0.249960,0,0);}
.m98_c00255{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);}
.m49_c00255{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);}
.m9a_c00255{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);}
.me0_c00255{transform:matrix(0.233157,0.004197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233157,0.004197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233157,0.004197,-0.004499,0.249960,0,0);}
.m52_c00255{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);}
.m4d_c00255{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{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);}
.mbb_c00255{transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{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);}
.m69_c00255{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{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);}
.m58_c00255{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.mdc_c00255{transform:matrix(0.238453,0.003577,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238453,0.003577,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238453,0.003577,-0.003750,0.249972,0,0);}
.m18_c00255{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);}
.me5_c00255{transform:matrix(0.240741,0.004333,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240741,0.004333,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240741,0.004333,-0.004499,0.249960,0,0);}
.m3_c00255{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);}
.me8_c00255{transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241391,0.004345,-0.004499,0.249960,0,0);}
.m7e_c00255{transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.mef_c00255{transform:matrix(0.249170,0.004485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249170,0.004485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249170,0.004485,-0.004499,0.249960,0,0);}
.md6_c00255{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);}
.m10d_c00255{transform:matrix(0.258383,0.004651,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258383,0.004651,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258383,0.004651,-0.004499,0.249960,0,0);}
.m4b_c00255{transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263165,0.000000,0.000000,0.250000,0,0);}
.mdf_c00255{transform:matrix(0.264550,0.003968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264550,0.003968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264550,0.003968,-0.003750,0.249972,0,0);}
.mfb_c00255{transform:matrix(0.266572,0.004798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266572,0.004798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266572,0.004798,-0.004499,0.249960,0,0);}
.mba_c00255{transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);}
.mf2_c00255{transform:matrix(0.269301,0.004847,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269301,0.004847,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269301,0.004847,-0.004499,0.249960,0,0);}
.ma_c00255{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{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);}
.m51_c00255{transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);}
.m64_c00255{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);}
.mdd_c00255{transform:matrix(0.283848,0.004258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283848,0.004258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283848,0.004258,-0.003750,0.249972,0,0);}
.m1f_c00255{transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286590,0.000000,0.000000,0.250000,0,0);}
.md9_c00255{transform:matrix(0.312005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312005,0.000000,0.000000,0.250000,0,0);}
.mda_c00255{transform:matrix(0.318029,0.004770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.318029,0.004770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.318029,0.004770,-0.003750,0.249972,0,0);}
.me9_c00255{transform:matrix(0.345474,0.006219,-0.004499,0.249960,0,0);-ms-transform:matrix(0.345474,0.006219,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.345474,0.006219,-0.004499,0.249960,0,0);}
.m75_c00255{transform:matrix(0.361290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361290,0.000000,0.000000,0.250000,0,0);}
.mf4_c00255{transform:matrix(0.369310,0.006648,-0.004499,0.249960,0,0);-ms-transform:matrix(0.369310,0.006648,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.369310,0.006648,-0.004499,0.249960,0,0);}
.m9f_c00255{transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371410,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.372465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372465,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.389065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389065,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.410525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410525,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.473075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.523355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523355,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.527775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527775,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.573650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573650,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.772310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772310,0.000000,0.000000,0.250000,0,0);}
.mb1_c00255{transform:matrix(0.827325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827325,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;}
.fsc_c00255{font-size:50.408164px;}
.fsb_c00255{font-size:52.508504px;}
.fs7_c00255{font-size:61.950000px;}
.fs6_c00255{font-size:67.200000px;}
.fs2_c00255{font-size:68.250000px;}
.fs4_c00255{font-size:69.300000px;}
.fs3_c00255{font-size:70.350000px;}
.fs9_c00255{font-size:71.400000px;}
.fsa_c00255{font-size:71.408032px;}
.fs5_c00255{font-size:72.450000px;}
.fs8_c00255{font-size:73.500000px;}
.fs0_c00255{font-size:80.850000px;}
.fs1_c00255{font-size:107.100000px;}
.y0_c00255{bottom:0.000000px;}
.yf5_c00255{bottom:151.890825px;}
.yf4_c00255{bottom:152.545155px;}
.yf3_c00255{bottom:152.862072px;}
.yf2_c00255{bottom:153.959610px;}
.yf1_c00255{bottom:154.186095px;}
.yf0_c00255{bottom:154.494561px;}
.yef_c00255{bottom:154.748427px;}
.yee_c00255{bottom:154.999971px;}
.yed_c00255{bottom:156.206451px;}
.yec_c00255{bottom:156.962391px;}
.yeb_c00255{bottom:157.507359px;}
.yea_c00255{bottom:158.041338px;}
.ye9_c00255{bottom:158.647008px;}
.ye8_c00255{bottom:159.623979px;}
.ye7_c00255{bottom:160.183947px;}
.ye6_c00255{bottom:160.747656px;}
.ye5_c00255{bottom:161.183871px;}
.ye4_c00255{bottom:170.412411px;}
.ye3_c00255{bottom:170.803338px;}
.ye2_c00255{bottom:170.953479px;}
.ye1_c00255{bottom:171.920589px;}
.ye0_c00255{bottom:172.427811px;}
.ydf_c00255{bottom:173.419506px;}
.yde_c00255{bottom:174.023730px;}
.ydd_c00255{bottom:174.528117px;}
.ydc_c00255{bottom:174.789990px;}
.ydb_c00255{bottom:175.820310px;}
.yda_c00255{bottom:176.934888px;}
.yd9_c00255{bottom:177.985581px;}
.yd8_c00255{bottom:179.002239px;}
.yd7_c00255{bottom:179.279814px;}
.yd6_c00255{bottom:189.264333px;}
.yd5_c00255{bottom:190.241382px;}
.yd4_c00255{bottom:190.600968px;}
.yd3_c00255{bottom:190.897806px;}
.yd2_c00255{bottom:191.543916px;}
.yd1_c00255{bottom:191.729703px;}
.yd0_c00255{bottom:192.550557px;}
.ycf_c00255{bottom:193.308771px;}
.yce_c00255{bottom:193.946025px;}
.ycd_c00255{bottom:194.474901px;}
.ycc_c00255{bottom:194.674566px;}
.ycb_c00255{bottom:195.344166px;}
.yca_c00255{bottom:196.132593px;}
.yc9_c00255{bottom:196.477761px;}
.yc8_c00255{bottom:196.833000px;}
.yc7_c00255{bottom:247.255088px;}
.yc6_c00255{bottom:248.150273px;}
.yc5_c00255{bottom:248.527013px;}
.yc4_c00255{bottom:249.733463px;}
.yc3_c00255{bottom:250.076768px;}
.yc2_c00255{bottom:250.587000px;}
.yc1_c00255{bottom:274.573500px;}
.yc0_c00255{bottom:274.917000px;}
.ybf_c00255{bottom:275.325000px;}
.ybe_c00255{bottom:275.620500px;}
.ybd_c00255{bottom:275.811000px;}
.ybc_c00255{bottom:276.739500px;}
.ybb_c00255{bottom:277.003500px;}
.yba_c00255{bottom:277.707000px;}
.yb9_c00255{bottom:277.995000px;}
.yb8_c00255{bottom:278.544000px;}
.yb7_c00255{bottom:279.205500px;}
.yb6_c00255{bottom:297.586500px;}
.yb5_c00255{bottom:298.384500px;}
.yb4_c00255{bottom:299.208000px;}
.yb3_c00255{bottom:299.635500px;}
.yb2_c00255{bottom:300.739500px;}
.yb1_c00255{bottom:301.374000px;}
.yb0_c00255{bottom:301.765500px;}
.yaf_c00255{bottom:302.617500px;}
.yae_c00255{bottom:303.234000px;}
.yad_c00255{bottom:320.839500px;}
.yac_c00255{bottom:321.981000px;}
.yab_c00255{bottom:322.378500px;}
.yaa_c00255{bottom:322.815000px;}
.ya9_c00255{bottom:323.553000px;}
.ya8_c00255{bottom:323.889000px;}
.ya7_c00255{bottom:324.508500px;}
.ya6_c00255{bottom:325.738500px;}
.ya5_c00255{bottom:326.161500px;}
.ya4_c00255{bottom:343.483500px;}
.ya3_c00255{bottom:344.427000px;}
.ya2_c00255{bottom:344.902500px;}
.ya1_c00255{bottom:345.279000px;}
.ya0_c00255{bottom:346.066500px;}
.y9f_c00255{bottom:347.092500px;}
.y9e_c00255{bottom:347.608500px;}
.y9d_c00255{bottom:348.025500px;}
.y9c_c00255{bottom:348.841500px;}
.y9b_c00255{bottom:366.387000px;}
.y9a_c00255{bottom:389.478000px;}
.y99_c00255{bottom:390.702000px;}
.y98_c00255{bottom:391.215000px;}
.y97_c00255{bottom:392.268000px;}
.y96_c00255{bottom:393.066000px;}
.y95_c00255{bottom:393.942000px;}
.y94_c00255{bottom:394.356000px;}
.y93_c00255{bottom:395.281500px;}
.y92_c00255{bottom:413.610000px;}
.y91_c00255{bottom:414.340500px;}
.y90_c00255{bottom:414.876000px;}
.y8f_c00255{bottom:415.185000px;}
.y8e_c00255{bottom:415.909500px;}
.y8d_c00255{bottom:416.368500px;}
.y8c_c00255{bottom:416.767500px;}
.y8b_c00255{bottom:418.015500px;}
.y8a_c00255{bottom:418.768500px;}
.y89_c00255{bottom:435.250500px;}
.y88_c00255{bottom:436.633500px;}
.y87_c00255{bottom:437.208000px;}
.y86_c00255{bottom:437.830500px;}
.y85_c00255{bottom:438.352500px;}
.y84_c00255{bottom:439.681500px;}
.y83_c00255{bottom:440.637000px;}
.y82_c00255{bottom:441.177000px;}
.y81_c00255{bottom:459.016500px;}
.y80_c00255{bottom:459.778500px;}
.y7f_c00255{bottom:460.576500px;}
.y7e_c00255{bottom:460.728000px;}
.y7d_c00255{bottom:462.060000px;}
.y7c_c00255{bottom:463.143000px;}
.y7b_c00255{bottom:463.858500px;}
.y7a_c00255{bottom:484.128000px;}
.y79_c00255{bottom:484.975500px;}
.y78_c00255{bottom:486.540000px;}
.y77_c00255{bottom:506.172000px;}
.y76_c00255{bottom:506.560500px;}
.y75_c00255{bottom:507.258000px;}
.y74_c00255{bottom:508.356000px;}
.y73_c00255{bottom:508.879500px;}
.y72_c00255{bottom:509.334000px;}
.y71_c00255{bottom:510.031500px;}
.y70_c00255{bottom:527.244000px;}
.y6f_c00255{bottom:527.850000px;}
.y6e_c00255{bottom:528.355500px;}
.y6d_c00255{bottom:528.625500px;}
.y6c_c00255{bottom:529.246500px;}
.y6b_c00255{bottom:530.067000px;}
.y6a_c00255{bottom:530.847000px;}
.y69_c00255{bottom:531.177000px;}
.y68_c00255{bottom:531.570000px;}
.y67_c00255{bottom:531.925500px;}
.y66_c00255{bottom:551.625000px;}
.y65_c00255{bottom:552.136500px;}
.y64_c00255{bottom:552.511500px;}
.y63_c00255{bottom:553.011000px;}
.y62_c00255{bottom:553.545000px;}
.y61_c00255{bottom:553.761000px;}
.y60_c00255{bottom:554.128500px;}
.y5f_c00255{bottom:555.120000px;}
.y5e_c00255{bottom:573.871500px;}
.y5d_c00255{bottom:574.375500px;}
.y5c_c00255{bottom:575.166000px;}
.y5b_c00255{bottom:575.454000px;}
.y5a_c00255{bottom:575.863500px;}
.y59_c00255{bottom:576.285000px;}
.y58_c00255{bottom:576.781500px;}
.y57_c00255{bottom:577.054500px;}
.y56_c00255{bottom:577.605000px;}
.y55_c00255{bottom:578.071500px;}
.y54_c00255{bottom:596.502000px;}
.y53_c00255{bottom:596.931000px;}
.y52_c00255{bottom:597.687000px;}
.y51_c00255{bottom:597.910500px;}
.y50_c00255{bottom:598.153500px;}
.y4f_c00255{bottom:598.300500px;}
.y4e_c00255{bottom:598.936500px;}
.y4d_c00255{bottom:599.551500px;}
.y4c_c00255{bottom:599.937000px;}
.y4b_c00255{bottom:600.210000px;}
.y4a_c00255{bottom:619.740000px;}
.y49_c00255{bottom:620.287500px;}
.y48_c00255{bottom:621.043500px;}
.y47_c00255{bottom:621.277500px;}
.y46_c00255{bottom:621.567000px;}
.y45_c00255{bottom:621.814500px;}
.y44_c00255{bottom:622.180500px;}
.y43_c00255{bottom:622.504500px;}
.y42_c00255{bottom:622.710000px;}
.y41_c00255{bottom:622.890000px;}
.y40_c00255{bottom:642.751500px;}
.y3f_c00255{bottom:643.072500px;}
.y3e_c00255{bottom:643.623000px;}
.y3d_c00255{bottom:643.800000px;}
.y3c_c00255{bottom:644.359500px;}
.y3b_c00255{bottom:644.728500px;}
.y3a_c00255{bottom:645.570000px;}
.y39_c00255{bottom:663.111000px;}
.y38_c00255{bottom:663.487500px;}
.y37_c00255{bottom:664.633500px;}
.y36_c00255{bottom:665.232000px;}
.y35_c00255{bottom:665.965500px;}
.y34_c00255{bottom:666.564000px;}
.y33_c00255{bottom:667.758000px;}
.y32_c00255{bottom:668.253000px;}
.y31_c00255{bottom:687.627000px;}
.y30_c00255{bottom:688.072500px;}
.y2f_c00255{bottom:688.441500px;}
.y2e_c00255{bottom:689.026500px;}
.y2d_c00255{bottom:689.646000px;}
.y2c_c00255{bottom:690.018000px;}
.y2b_c00255{bottom:690.660000px;}
.y2a_c00255{bottom:710.394000px;}
.y29_c00255{bottom:710.685000px;}
.y28_c00255{bottom:710.967000px;}
.y27_c00255{bottom:711.492000px;}
.y26_c00255{bottom:711.745500px;}
.y25_c00255{bottom:712.249500px;}
.y24_c00255{bottom:712.660500px;}
.y23_c00255{bottom:713.071500px;}
.y22_c00255{bottom:733.018500px;}
.y21_c00255{bottom:733.291500px;}
.y20_c00255{bottom:733.966500px;}
.y1f_c00255{bottom:734.290500px;}
.y1e_c00255{bottom:734.428500px;}
.y1d_c00255{bottom:735.298500px;}
.y1c_c00255{bottom:736.021500px;}
.y1b_c00255{bottom:755.130000px;}
.y1a_c00255{bottom:755.404500px;}
.y19_c00255{bottom:755.998500px;}
.y18_c00255{bottom:756.393000px;}
.y17_c00255{bottom:756.912000px;}
.y16_c00255{bottom:757.168500px;}
.y15_c00255{bottom:757.344000px;}
.y14_c00255{bottom:757.696500px;}
.y13_c00255{bottom:757.945500px;}
.y12_c00255{bottom:758.431500px;}
.y11_c00255{bottom:778.590000px;}
.y10_c00255{bottom:778.816500px;}
.yf_c00255{bottom:779.389500px;}
.ye_c00255{bottom:779.665500px;}
.yd_c00255{bottom:780.084000px;}
.yc_c00255{bottom:780.310500px;}
.yb_c00255{bottom:780.966000px;}
.ya_c00255{bottom:781.317000px;}
.y9_c00255{bottom:781.651500px;}
.y8_c00255{bottom:802.381500px;}
.y7_c00255{bottom:825.376500px;}
.y6_c00255{bottom:913.392000px;}
.y5_c00255{bottom:913.926000px;}
.y4_c00255{bottom:915.331500px;}
.y3_c00255{bottom:915.597000px;}
.y2_c00255{bottom:916.383000px;}
.y1_c00255{bottom:932.200500px;}
.he_c00255{height:50.408164px;}
.hd_c00255{height:52.508504px;}
.h9_c00255{height:61.950000px;}
.h8_c00255{height:67.200000px;}
.h4_c00255{height:68.250000px;}
.h6_c00255{height:69.300000px;}
.h5_c00255{height:70.350000px;}
.hb_c00255{height:71.400000px;}
.hc_c00255{height:71.408032px;}
.h7_c00255{height:72.450000px;}
.ha_c00255{height:73.500000px;}
.h2_c00255{height:80.850000px;}
.h3_c00255{height:107.100000px;}
.h0_c00255{height:1008.450000px;}
.h1_c00255{height:1008.750000px;}
.w0_c00255{width:678.450000px;}
.w1_c00255{width:678.750000px;}
.x0_c00255{left:0.000000px;}
.x94_c00255{left:123.202212px;}
.x8e_c00255{left:135.345000px;}
.x95_c00255{left:137.789442px;}
.x9a_c00255{left:145.606998px;}
.x6a_c00255{left:150.417000px;}
.x8f_c00255{left:155.080500px;}
.x7c_c00255{left:157.125000px;}
.x5e_c00255{left:159.666000px;}
.x52_c00255{left:161.058000px;}
.x32_c00255{left:162.693000px;}
.x2d_c00255{left:164.302500px;}
.xf_c00255{left:166.050000px;}
.xa_c00255{left:167.713500px;}
.x90_c00255{left:174.256500px;}
.x44_c00255{left:182.182500px;}
.x81_c00255{left:183.925500px;}
.x5f_c00255{left:187.002000px;}
.x4c_c00255{left:189.958500px;}
.x39_c00255{left:191.209500px;}
.x1_c00255{left:196.830000px;}
.x18_c00255{left:197.910000px;}
.x20_c00255{left:199.135500px;}
.x83_c00255{left:201.522000px;}
.x53_c00255{left:203.454000px;}
.x45_c00255{left:205.087500px;}
.x10_c00255{left:207.630000px;}
.x7d_c00255{left:211.549500px;}
.x25_c00255{left:214.024500px;}
.x60_c00255{left:217.183500px;}
.x4d_c00255{left:228.576000px;}
.x8c_c00255{left:229.584000px;}
.x21_c00255{left:234.277500px;}
.x11_c00255{left:235.440000px;}
.x2e_c00255{left:236.661000px;}
.x26_c00255{left:238.864500px;}
.x46_c00255{left:241.045500px;}
.x61_c00255{left:242.520000px;}
.x87_c00255{left:243.900000px;}
.x96_c00255{left:246.556971px;}
.x6b_c00255{left:248.170500px;}
.x2_c00255{left:249.480000px;}
.x5a_c00255{left:251.248500px;}
.x33_c00255{left:253.921500px;}
.x19_c00255{left:255.150000px;}
.x3f_c00255{left:256.438500px;}
.x67_c00255{left:260.296500px;}
.x3a_c00255{left:261.421500px;}
.x71_c00255{left:262.534500px;}
.x88_c00255{left:264.469500px;}
.xb_c00255{left:265.984500px;}
.x6c_c00255{left:267.889500px;}
.x3_c00255{left:272.160000px;}
.x27_c00255{left:274.179000px;}
.x54_c00255{left:278.244000px;}
.x76_c00255{left:279.526500px;}
.x47_c00255{left:281.782500px;}
.x5b_c00255{left:284.718000px;}
.x8d_c00255{left:286.486500px;}
.x4e_c00255{left:290.130000px;}
.x12_c00255{left:292.140000px;}
.x3b_c00255{left:296.589000px;}
.xc_c00255{left:299.200500px;}
.x4_c00255{left:301.050000px;}
.x62_c00255{left:302.512500px;}
.x1a_c00255{left:305.370000px;}
.x9b_c00255{left:307.617666px;}
.x34_c00255{left:309.849000px;}
.x7a_c00255{left:312.144000px;}
.x89_c00255{left:314.695500px;}
.x28_c00255{left:317.425500px;}
.x5_c00255{left:321.840000px;}
.x2f_c00255{left:323.601000px;}
.x68_c00255{left:324.876000px;}
.x1b_c00255{left:330.210000px;}
.x8a_c00255{left:333.550500px;}
.x13_c00255{left:335.880000px;}
.x30_c00255{left:337.363500px;}
.x3c_c00255{left:339.694500px;}
.x48_c00255{left:341.448000px;}
.x37_c00255{left:343.867500px;}
.x6d_c00255{left:346.198500px;}
.x72_c00255{left:351.159000px;}
.x14_c00255{left:353.970000px;}
.x6e_c00255{left:355.138500px;}
.x40_c00255{left:359.541000px;}
.x55_c00255{left:361.666500px;}
.x22_c00255{left:364.369500px;}
.x63_c00255{left:365.685000px;}
.x49_c00255{left:367.368000px;}
.x29_c00255{left:369.268500px;}
.x77_c00255{left:372.672000px;}
.x3d_c00255{left:374.866500px;}
.x41_c00255{left:379.290000px;}
.x1c_c00255{left:382.320000px;}
.x73_c00255{left:385.993500px;}
.x69_c00255{left:388.750500px;}
.x78_c00255{left:390.840000px;}
.x15_c00255{left:392.850000px;}
.x7e_c00255{left:394.624500px;}
.x35_c00255{left:396.243000px;}
.x56_c00255{left:398.928000px;}
.x6_c00255{left:400.950000px;}
.x6f_c00255{left:402.040500px;}
.x82_c00255{left:405.036000px;}
.x2a_c00255{left:408.643500px;}
.x64_c00255{left:413.467500px;}
.x4f_c00255{left:415.138500px;}
.x16_c00255{left:417.150000px;}
.x7f_c00255{left:419.725500px;}
.x79_c00255{left:422.338500px;}
.x57_c00255{left:425.109000px;}
.x1d_c00255{left:428.220000px;}
.x5c_c00255{left:432.384000px;}
.x7_c00255{left:433.620000px;}
.x17_c00255{left:437.670000px;}
.x42_c00255{left:440.536500px;}
.x3e_c00255{left:442.291500px;}
.x84_c00255{left:445.066500px;}
.x70_c00255{left:446.833500px;}
.x23_c00255{left:449.184000px;}
.x4a_c00255{left:451.324500px;}
.x9c_c00255{left:458.323266px;}
.x36_c00255{left:459.964500px;}
.x1e_c00255{left:461.970000px;}
.x31_c00255{left:464.586000px;}
.x74_c00255{left:465.831000px;}
.x2b_c00255{left:468.084000px;}
.x24_c00255{left:471.826500px;}
.x65_c00255{left:473.134500px;}
.xd_c00255{left:474.970500px;}
.x43_c00255{left:476.203500px;}
.x5d_c00255{left:478.845000px;}
.x91_c00255{left:481.569000px;}
.x1f_c00255{left:484.110000px;}
.x8b_c00255{left:488.245500px;}
.x50_c00255{left:490.777500px;}
.x2c_c00255{left:495.583500px;}
.x58_c00255{left:496.935000px;}
.x38_c00255{left:499.473000px;}
.x92_c00255{left:501.546000px;}
.x85_c00255{left:503.904000px;}
.x97_c00255{left:510.457719px;}
.x4b_c00255{left:512.145000px;}
.x80_c00255{left:514.353000px;}
.x7b_c00255{left:515.703000px;}
.x66_c00255{left:519.693000px;}
.x8_c00255{left:524.880000px;}
.x51_c00255{left:533.662500px;}
.x9d_c00255{left:539.930823px;}
.xe_c00255{left:541.675500px;}
.x59_c00255{left:542.779500px;}
.x93_c00255{left:555.826500px;}
.x75_c00255{left:558.069000px;}
.x86_c00255{left:560.881500px;}
.x98_c00255{left:569.276166px;}
.x9e_c00255{left:588.470568px;}
.x99_c00255{left:589.827288px;}
.x9_c00255{left:612.900000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fsc_c00255{font-size:44.807257pt;}
.fsb_c00255{font-size:46.674226pt;}
.fs7_c00255{font-size:55.066667pt;}
.fs6_c00255{font-size:59.733333pt;}
.fs2_c00255{font-size:60.666667pt;}
.fs4_c00255{font-size:61.600000pt;}
.fs3_c00255{font-size:62.533333pt;}
.fs9_c00255{font-size:63.466667pt;}
.fsa_c00255{font-size:63.473806pt;}
.fs5_c00255{font-size:64.400000pt;}
.fs8_c00255{font-size:65.333333pt;}
.fs0_c00255{font-size:71.866667pt;}
.fs1_c00255{font-size:95.200000pt;}
.y0_c00255{bottom:0.000000pt;}
.yf5_c00255{bottom:135.014067pt;}
.yf4_c00255{bottom:135.595693pt;}
.yf3_c00255{bottom:135.877397pt;}
.yf2_c00255{bottom:136.852987pt;}
.yf1_c00255{bottom:137.054307pt;}
.yf0_c00255{bottom:137.328499pt;}
.yef_c00255{bottom:137.554157pt;}
.yee_c00255{bottom:137.777752pt;}
.yed_c00255{bottom:138.850179pt;}
.yec_c00255{bottom:139.522125pt;}
.yeb_c00255{bottom:140.006541pt;}
.yea_c00255{bottom:140.481189pt;}
.ye9_c00255{bottom:141.019563pt;}
.ye8_c00255{bottom:141.887981pt;}
.ye7_c00255{bottom:142.385731pt;}
.ye6_c00255{bottom:142.886805pt;}
.ye5_c00255{bottom:143.274552pt;}
.ye4_c00255{bottom:151.477699pt;}
.ye3_c00255{bottom:151.825189pt;}
.ye2_c00255{bottom:151.958648pt;}
.ye1_c00255{bottom:152.818301pt;}
.ye0_c00255{bottom:153.269165pt;}
.ydf_c00255{bottom:154.150672pt;}
.yde_c00255{bottom:154.687760pt;}
.ydd_c00255{bottom:155.136104pt;}
.ydc_c00255{bottom:155.368880pt;}
.ydb_c00255{bottom:156.284720pt;}
.yda_c00255{bottom:157.275456pt;}
.yd9_c00255{bottom:158.209405pt;}
.yd8_c00255{bottom:159.113101pt;}
.yd7_c00255{bottom:159.359835pt;}
.yd6_c00255{bottom:168.234963pt;}
.yd5_c00255{bottom:169.103451pt;}
.yd4_c00255{bottom:169.423083pt;}
.yd3_c00255{bottom:169.686939pt;}
.yd2_c00255{bottom:170.261259pt;}
.yd1_c00255{bottom:170.426403pt;}
.yd0_c00255{bottom:171.156051pt;}
.ycf_c00255{bottom:171.830019pt;}
.yce_c00255{bottom:172.396467pt;}
.ycd_c00255{bottom:172.866579pt;}
.ycc_c00255{bottom:173.044059pt;}
.ycb_c00255{bottom:173.639259pt;}
.yca_c00255{bottom:174.340083pt;}
.yc9_c00255{bottom:174.646899pt;}
.yc8_c00255{bottom:174.962667pt;}
.yc7_c00255{bottom:219.782300pt;}
.yc6_c00255{bottom:220.578020pt;}
.yc5_c00255{bottom:220.912900pt;}
.yc4_c00255{bottom:221.985300pt;}
.yc3_c00255{bottom:222.290460pt;}
.yc2_c00255{bottom:222.744000pt;}
.yc1_c00255{bottom:244.065333pt;}
.yc0_c00255{bottom:244.370667pt;}
.ybf_c00255{bottom:244.733333pt;}
.ybe_c00255{bottom:244.996000pt;}
.ybd_c00255{bottom:245.165333pt;}
.ybc_c00255{bottom:245.990667pt;}
.ybb_c00255{bottom:246.225333pt;}
.yba_c00255{bottom:246.850667pt;}
.yb9_c00255{bottom:247.106667pt;}
.yb8_c00255{bottom:247.594667pt;}
.yb7_c00255{bottom:248.182667pt;}
.yb6_c00255{bottom:264.521333pt;}
.yb5_c00255{bottom:265.230667pt;}
.yb4_c00255{bottom:265.962667pt;}
.yb3_c00255{bottom:266.342667pt;}
.yb2_c00255{bottom:267.324000pt;}
.yb1_c00255{bottom:267.888000pt;}
.yb0_c00255{bottom:268.236000pt;}
.yaf_c00255{bottom:268.993333pt;}
.yae_c00255{bottom:269.541333pt;}
.yad_c00255{bottom:285.190667pt;}
.yac_c00255{bottom:286.205333pt;}
.yab_c00255{bottom:286.558667pt;}
.yaa_c00255{bottom:286.946667pt;}
.ya9_c00255{bottom:287.602667pt;}
.ya8_c00255{bottom:287.901333pt;}
.ya7_c00255{bottom:288.452000pt;}
.ya6_c00255{bottom:289.545333pt;}
.ya5_c00255{bottom:289.921333pt;}
.ya4_c00255{bottom:305.318667pt;}
.ya3_c00255{bottom:306.157333pt;}
.ya2_c00255{bottom:306.580000pt;}
.ya1_c00255{bottom:306.914667pt;}
.ya0_c00255{bottom:307.614667pt;}
.y9f_c00255{bottom:308.526667pt;}
.y9e_c00255{bottom:308.985333pt;}
.y9d_c00255{bottom:309.356000pt;}
.y9c_c00255{bottom:310.081333pt;}
.y9b_c00255{bottom:325.677333pt;}
.y9a_c00255{bottom:346.202667pt;}
.y99_c00255{bottom:347.290667pt;}
.y98_c00255{bottom:347.746667pt;}
.y97_c00255{bottom:348.682667pt;}
.y96_c00255{bottom:349.392000pt;}
.y95_c00255{bottom:350.170667pt;}
.y94_c00255{bottom:350.538667pt;}
.y93_c00255{bottom:351.361333pt;}
.y92_c00255{bottom:367.653333pt;}
.y91_c00255{bottom:368.302667pt;}
.y90_c00255{bottom:368.778667pt;}
.y8f_c00255{bottom:369.053333pt;}
.y8e_c00255{bottom:369.697333pt;}
.y8d_c00255{bottom:370.105333pt;}
.y8c_c00255{bottom:370.460000pt;}
.y8b_c00255{bottom:371.569333pt;}
.y8a_c00255{bottom:372.238667pt;}
.y89_c00255{bottom:386.889333pt;}
.y88_c00255{bottom:388.118667pt;}
.y87_c00255{bottom:388.629333pt;}
.y86_c00255{bottom:389.182667pt;}
.y85_c00255{bottom:389.646667pt;}
.y84_c00255{bottom:390.828000pt;}
.y83_c00255{bottom:391.677333pt;}
.y82_c00255{bottom:392.157333pt;}
.y81_c00255{bottom:408.014667pt;}
.y80_c00255{bottom:408.692000pt;}
.y7f_c00255{bottom:409.401333pt;}
.y7e_c00255{bottom:409.536000pt;}
.y7d_c00255{bottom:410.720000pt;}
.y7c_c00255{bottom:411.682667pt;}
.y7b_c00255{bottom:412.318667pt;}
.y7a_c00255{bottom:430.336000pt;}
.y79_c00255{bottom:431.089333pt;}
.y78_c00255{bottom:432.480000pt;}
.y77_c00255{bottom:449.930667pt;}
.y76_c00255{bottom:450.276000pt;}
.y75_c00255{bottom:450.896000pt;}
.y74_c00255{bottom:451.872000pt;}
.y73_c00255{bottom:452.337333pt;}
.y72_c00255{bottom:452.741333pt;}
.y71_c00255{bottom:453.361333pt;}
.y70_c00255{bottom:468.661333pt;}
.y6f_c00255{bottom:469.200000pt;}
.y6e_c00255{bottom:469.649333pt;}
.y6d_c00255{bottom:469.889333pt;}
.y6c_c00255{bottom:470.441333pt;}
.y6b_c00255{bottom:471.170667pt;}
.y6a_c00255{bottom:471.864000pt;}
.y69_c00255{bottom:472.157333pt;}
.y68_c00255{bottom:472.506667pt;}
.y67_c00255{bottom:472.822667pt;}
.y66_c00255{bottom:490.333333pt;}
.y65_c00255{bottom:490.788000pt;}
.y64_c00255{bottom:491.121333pt;}
.y63_c00255{bottom:491.565333pt;}
.y62_c00255{bottom:492.040000pt;}
.y61_c00255{bottom:492.232000pt;}
.y60_c00255{bottom:492.558667pt;}
.y5f_c00255{bottom:493.440000pt;}
.y5e_c00255{bottom:510.108000pt;}
.y5d_c00255{bottom:510.556000pt;}
.y5c_c00255{bottom:511.258667pt;}
.y5b_c00255{bottom:511.514667pt;}
.y5a_c00255{bottom:511.878667pt;}
.y59_c00255{bottom:512.253333pt;}
.y58_c00255{bottom:512.694667pt;}
.y57_c00255{bottom:512.937333pt;}
.y56_c00255{bottom:513.426667pt;}
.y55_c00255{bottom:513.841333pt;}
.y54_c00255{bottom:530.224000pt;}
.y53_c00255{bottom:530.605333pt;}
.y52_c00255{bottom:531.277333pt;}
.y51_c00255{bottom:531.476000pt;}
.y50_c00255{bottom:531.692000pt;}
.y4f_c00255{bottom:531.822667pt;}
.y4e_c00255{bottom:532.388000pt;}
.y4d_c00255{bottom:532.934667pt;}
.y4c_c00255{bottom:533.277333pt;}
.y4b_c00255{bottom:533.520000pt;}
.y4a_c00255{bottom:550.880000pt;}
.y49_c00255{bottom:551.366667pt;}
.y48_c00255{bottom:552.038667pt;}
.y47_c00255{bottom:552.246667pt;}
.y46_c00255{bottom:552.504000pt;}
.y45_c00255{bottom:552.724000pt;}
.y44_c00255{bottom:553.049333pt;}
.y43_c00255{bottom:553.337333pt;}
.y42_c00255{bottom:553.520000pt;}
.y41_c00255{bottom:553.680000pt;}
.y40_c00255{bottom:571.334667pt;}
.y3f_c00255{bottom:571.620000pt;}
.y3e_c00255{bottom:572.109333pt;}
.y3d_c00255{bottom:572.266667pt;}
.y3c_c00255{bottom:572.764000pt;}
.y3b_c00255{bottom:573.092000pt;}
.y3a_c00255{bottom:573.840000pt;}
.y39_c00255{bottom:589.432000pt;}
.y38_c00255{bottom:589.766667pt;}
.y37_c00255{bottom:590.785333pt;}
.y36_c00255{bottom:591.317333pt;}
.y35_c00255{bottom:591.969333pt;}
.y34_c00255{bottom:592.501333pt;}
.y33_c00255{bottom:593.562667pt;}
.y32_c00255{bottom:594.002667pt;}
.y31_c00255{bottom:611.224000pt;}
.y30_c00255{bottom:611.620000pt;}
.y2f_c00255{bottom:611.948000pt;}
.y2e_c00255{bottom:612.468000pt;}
.y2d_c00255{bottom:613.018667pt;}
.y2c_c00255{bottom:613.349333pt;}
.y2b_c00255{bottom:613.920000pt;}
.y2a_c00255{bottom:631.461333pt;}
.y29_c00255{bottom:631.720000pt;}
.y28_c00255{bottom:631.970667pt;}
.y27_c00255{bottom:632.437333pt;}
.y26_c00255{bottom:632.662667pt;}
.y25_c00255{bottom:633.110667pt;}
.y24_c00255{bottom:633.476000pt;}
.y23_c00255{bottom:633.841333pt;}
.y22_c00255{bottom:651.572000pt;}
.y21_c00255{bottom:651.814667pt;}
.y20_c00255{bottom:652.414667pt;}
.y1f_c00255{bottom:652.702667pt;}
.y1e_c00255{bottom:652.825333pt;}
.y1d_c00255{bottom:653.598667pt;}
.y1c_c00255{bottom:654.241333pt;}
.y1b_c00255{bottom:671.226667pt;}
.y1a_c00255{bottom:671.470667pt;}
.y19_c00255{bottom:671.998667pt;}
.y18_c00255{bottom:672.349333pt;}
.y17_c00255{bottom:672.810667pt;}
.y16_c00255{bottom:673.038667pt;}
.y15_c00255{bottom:673.194667pt;}
.y14_c00255{bottom:673.508000pt;}
.y13_c00255{bottom:673.729333pt;}
.y12_c00255{bottom:674.161333pt;}
.y11_c00255{bottom:692.080000pt;}
.y10_c00255{bottom:692.281333pt;}
.yf_c00255{bottom:692.790667pt;}
.ye_c00255{bottom:693.036000pt;}
.yd_c00255{bottom:693.408000pt;}
.yc_c00255{bottom:693.609333pt;}
.yb_c00255{bottom:694.192000pt;}
.ya_c00255{bottom:694.504000pt;}
.y9_c00255{bottom:694.801333pt;}
.y8_c00255{bottom:713.228000pt;}
.y7_c00255{bottom:733.668000pt;}
.y6_c00255{bottom:811.904000pt;}
.y5_c00255{bottom:812.378667pt;}
.y4_c00255{bottom:813.628000pt;}
.y3_c00255{bottom:813.864000pt;}
.y2_c00255{bottom:814.562667pt;}
.y1_c00255{bottom:828.622667pt;}
.he_c00255{height:44.807257pt;}
.hd_c00255{height:46.674226pt;}
.h9_c00255{height:55.066667pt;}
.h8_c00255{height:59.733333pt;}
.h4_c00255{height:60.666667pt;}
.h6_c00255{height:61.600000pt;}
.h5_c00255{height:62.533333pt;}
.hb_c00255{height:63.466667pt;}
.hc_c00255{height:63.473806pt;}
.h7_c00255{height:64.400000pt;}
.ha_c00255{height:65.333333pt;}
.h2_c00255{height:71.866667pt;}
.h3_c00255{height:95.200000pt;}
.h0_c00255{height:896.400000pt;}
.h1_c00255{height:896.666667pt;}
.w0_c00255{width:603.066667pt;}
.w1_c00255{width:603.333333pt;}
.x0_c00255{left:0.000000pt;}
.x94_c00255{left:109.513077pt;}
.x8e_c00255{left:120.306667pt;}
.x95_c00255{left:122.479504pt;}
.x9a_c00255{left:129.428443pt;}
.x6a_c00255{left:133.704000pt;}
.x8f_c00255{left:137.849333pt;}
.x7c_c00255{left:139.666667pt;}
.x5e_c00255{left:141.925333pt;}
.x52_c00255{left:143.162667pt;}
.x32_c00255{left:144.616000pt;}
.x2d_c00255{left:146.046667pt;}
.xf_c00255{left:147.600000pt;}
.xa_c00255{left:149.078667pt;}
.x90_c00255{left:154.894667pt;}
.x44_c00255{left:161.940000pt;}
.x81_c00255{left:163.489333pt;}
.x5f_c00255{left:166.224000pt;}
.x4c_c00255{left:168.852000pt;}
.x39_c00255{left:169.964000pt;}
.x1_c00255{left:174.960000pt;}
.x18_c00255{left:175.920000pt;}
.x20_c00255{left:177.009333pt;}
.x83_c00255{left:179.130667pt;}
.x53_c00255{left:180.848000pt;}
.x45_c00255{left:182.300000pt;}
.x10_c00255{left:184.560000pt;}
.x7d_c00255{left:188.044000pt;}
.x25_c00255{left:190.244000pt;}
.x60_c00255{left:193.052000pt;}
.x4d_c00255{left:203.178667pt;}
.x8c_c00255{left:204.074667pt;}
.x21_c00255{left:208.246667pt;}
.x11_c00255{left:209.280000pt;}
.x2e_c00255{left:210.365333pt;}
.x26_c00255{left:212.324000pt;}
.x46_c00255{left:214.262667pt;}
.x61_c00255{left:215.573333pt;}
.x87_c00255{left:216.800000pt;}
.x96_c00255{left:219.161752pt;}
.x6b_c00255{left:220.596000pt;}
.x2_c00255{left:221.760000pt;}
.x5a_c00255{left:223.332000pt;}
.x33_c00255{left:225.708000pt;}
.x19_c00255{left:226.800000pt;}
.x3f_c00255{left:227.945333pt;}
.x67_c00255{left:231.374667pt;}
.x3a_c00255{left:232.374667pt;}
.x71_c00255{left:233.364000pt;}
.x88_c00255{left:235.084000pt;}
.xb_c00255{left:236.430667pt;}
.x6c_c00255{left:238.124000pt;}
.x3_c00255{left:241.920000pt;}
.x27_c00255{left:243.714667pt;}
.x54_c00255{left:247.328000pt;}
.x76_c00255{left:248.468000pt;}
.x47_c00255{left:250.473333pt;}
.x5b_c00255{left:253.082667pt;}
.x8d_c00255{left:254.654667pt;}
.x4e_c00255{left:257.893333pt;}
.x12_c00255{left:259.680000pt;}
.x3b_c00255{left:263.634667pt;}
.xc_c00255{left:265.956000pt;}
.x4_c00255{left:267.600000pt;}
.x62_c00255{left:268.900000pt;}
.x1a_c00255{left:271.440000pt;}
.x9b_c00255{left:273.437925pt;}
.x34_c00255{left:275.421333pt;}
.x7a_c00255{left:277.461333pt;}
.x89_c00255{left:279.729333pt;}
.x28_c00255{left:282.156000pt;}
.x5_c00255{left:286.080000pt;}
.x2f_c00255{left:287.645333pt;}
.x68_c00255{left:288.778667pt;}
.x1b_c00255{left:293.520000pt;}
.x8a_c00255{left:296.489333pt;}
.x13_c00255{left:298.560000pt;}
.x30_c00255{left:299.878667pt;}
.x3c_c00255{left:301.950667pt;}
.x48_c00255{left:303.509333pt;}
.x37_c00255{left:305.660000pt;}
.x6d_c00255{left:307.732000pt;}
.x72_c00255{left:312.141333pt;}
.x14_c00255{left:314.640000pt;}
.x6e_c00255{left:315.678667pt;}
.x40_c00255{left:319.592000pt;}
.x55_c00255{left:321.481333pt;}
.x22_c00255{left:323.884000pt;}
.x63_c00255{left:325.053333pt;}
.x49_c00255{left:326.549333pt;}
.x29_c00255{left:328.238667pt;}
.x77_c00255{left:331.264000pt;}
.x3d_c00255{left:333.214667pt;}
.x41_c00255{left:337.146667pt;}
.x1c_c00255{left:339.840000pt;}
.x73_c00255{left:343.105333pt;}
.x69_c00255{left:345.556000pt;}
.x78_c00255{left:347.413333pt;}
.x15_c00255{left:349.200000pt;}
.x7e_c00255{left:350.777333pt;}
.x35_c00255{left:352.216000pt;}
.x56_c00255{left:354.602667pt;}
.x6_c00255{left:356.400000pt;}
.x6f_c00255{left:357.369333pt;}
.x82_c00255{left:360.032000pt;}
.x2a_c00255{left:363.238667pt;}
.x64_c00255{left:367.526667pt;}
.x4f_c00255{left:369.012000pt;}
.x16_c00255{left:370.800000pt;}
.x7f_c00255{left:373.089333pt;}
.x79_c00255{left:375.412000pt;}
.x57_c00255{left:377.874667pt;}
.x1d_c00255{left:380.640000pt;}
.x5c_c00255{left:384.341333pt;}
.x7_c00255{left:385.440000pt;}
.x17_c00255{left:389.040000pt;}
.x42_c00255{left:391.588000pt;}
.x3e_c00255{left:393.148000pt;}
.x84_c00255{left:395.614667pt;}
.x70_c00255{left:397.185333pt;}
.x23_c00255{left:399.274667pt;}
.x4a_c00255{left:401.177333pt;}
.x9c_c00255{left:407.398459pt;}
.x36_c00255{left:408.857333pt;}
.x1e_c00255{left:410.640000pt;}
.x31_c00255{left:412.965333pt;}
.x74_c00255{left:414.072000pt;}
.x2b_c00255{left:416.074667pt;}
.x24_c00255{left:419.401333pt;}
.x65_c00255{left:420.564000pt;}
.xd_c00255{left:422.196000pt;}
.x43_c00255{left:423.292000pt;}
.x5d_c00255{left:425.640000pt;}
.x91_c00255{left:428.061333pt;}
.x1f_c00255{left:430.320000pt;}
.x8b_c00255{left:433.996000pt;}
.x50_c00255{left:436.246667pt;}
.x2c_c00255{left:440.518667pt;}
.x58_c00255{left:441.720000pt;}
.x38_c00255{left:443.976000pt;}
.x92_c00255{left:445.818667pt;}
.x85_c00255{left:447.914667pt;}
.x97_c00255{left:453.740195pt;}
.x4b_c00255{left:455.240000pt;}
.x80_c00255{left:457.202667pt;}
.x7b_c00255{left:458.402667pt;}
.x66_c00255{left:461.949333pt;}
.x8_c00255{left:466.560000pt;}
.x51_c00255{left:474.366667pt;}
.x9d_c00255{left:479.938509pt;}
.xe_c00255{left:481.489333pt;}
.x59_c00255{left:482.470667pt;}
.x93_c00255{left:494.068000pt;}
.x75_c00255{left:496.061333pt;}
.x86_c00255{left:498.561333pt;}
.x98_c00255{left:506.023259pt;}
.x9e_c00255{left:523.084949pt;}
.x99_c00255{left:524.290923pt;}
.x9_c00255{left:544.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_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;}
.m5a_c00256{transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);-ms-transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);}
.m12_c00256{transform:matrix(0.016528,-0.000281,0.004249,0.249964,0,0);-ms-transform:matrix(0.016528,-0.000281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.016528,-0.000281,0.004249,0.249964,0,0);}
.mb9_c00256{transform:matrix(0.017689,-0.000195,0.002750,0.249985,0,0);-ms-transform:matrix(0.017689,-0.000195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.017689,-0.000195,0.002750,0.249985,0,0);}
.me9_c00256{transform:matrix(0.047412,-0.000522,0.002750,0.249985,0,0);-ms-transform:matrix(0.047412,-0.000522,0.002750,0.249985,0,0);-webkit-transform:matrix(0.047412,-0.000522,0.002750,0.249985,0,0);}
.md4_c00256{transform:matrix(0.080775,-0.000889,0.002750,0.249985,0,0);-ms-transform:matrix(0.080775,-0.000889,0.002750,0.249985,0,0);-webkit-transform:matrix(0.080775,-0.000889,0.002750,0.249985,0,0);}
.m32_c00256{transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);-ms-transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.088348,-0.001149,0.003250,0.249979,0,0);}
.m2d_c00256{transform:matrix(0.094782,-0.001232,0.003250,0.249979,0,0);-ms-transform:matrix(0.094782,-0.001232,0.003250,0.249979,0,0);-webkit-transform:matrix(0.094782,-0.001232,0.003250,0.249979,0,0);}
.m1c_c00256{transform:matrix(0.101182,-0.001619,0.003999,0.249968,0,0);-ms-transform:matrix(0.101182,-0.001619,0.003999,0.249968,0,0);-webkit-transform:matrix(0.101182,-0.001619,0.003999,0.249968,0,0);}
.mf8_c00256{transform:matrix(0.109367,-0.018524,0.041748,0.246490,0,0);-ms-transform:matrix(0.109367,-0.018524,0.041748,0.246490,0,0);-webkit-transform:matrix(0.109367,-0.018524,0.041748,0.246490,0,0);}
.mbd_c00256{transform:matrix(0.123433,-0.001358,0.002750,0.249985,0,0);-ms-transform:matrix(0.123433,-0.001358,0.002750,0.249985,0,0);-webkit-transform:matrix(0.123433,-0.001358,0.002750,0.249985,0,0);}
.md9_c00256{transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);-ms-transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);-webkit-transform:matrix(0.134502,-0.001480,0.002750,0.249985,0,0);}
.mbb_c00256{transform:matrix(0.136532,-0.001502,0.002750,0.249985,0,0);-ms-transform:matrix(0.136532,-0.001502,0.002750,0.249985,0,0);-webkit-transform:matrix(0.136532,-0.001502,0.002750,0.249985,0,0);}
.meb_c00256{transform:matrix(0.140292,-0.001543,0.002750,0.249985,0,0);-ms-transform:matrix(0.140292,-0.001543,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140292,-0.001543,0.002750,0.249985,0,0);}
.m35_c00256{transform:matrix(0.141368,-0.001838,0.003250,0.249979,0,0);-ms-transform:matrix(0.141368,-0.001838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.141368,-0.001838,0.003250,0.249979,0,0);}
.m57_c00256{transform:matrix(0.141816,-0.001560,0.002750,0.249985,0,0);-ms-transform:matrix(0.141816,-0.001560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141816,-0.001560,0.002750,0.249985,0,0);}
.m39_c00256{transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);-ms-transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);}
.m80_c00256{transform:matrix(0.146166,-0.001608,0.002750,0.249985,0,0);-ms-transform:matrix(0.146166,-0.001608,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146166,-0.001608,0.002750,0.249985,0,0);}
.m84_c00256{transform:matrix(0.149276,-0.001642,0.002750,0.249985,0,0);-ms-transform:matrix(0.149276,-0.001642,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149276,-0.001642,0.002750,0.249985,0,0);}
.mb4_c00256{transform:matrix(0.152696,-0.001680,0.002750,0.249985,0,0);-ms-transform:matrix(0.152696,-0.001680,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152696,-0.001680,0.002750,0.249985,0,0);}
.m4c_c00256{transform:matrix(0.154291,-0.001697,0.002750,0.249985,0,0);-ms-transform:matrix(0.154291,-0.001697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154291,-0.001697,0.002750,0.249985,0,0);}
.m4f_c00256{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);}
.m3c_c00256{transform:matrix(0.157022,-0.002041,0.003250,0.249979,0,0);-ms-transform:matrix(0.157022,-0.002041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157022,-0.002041,0.003250,0.249979,0,0);}
.ma0_c00256{transform:matrix(0.157830,-0.001736,0.002750,0.249985,0,0);-ms-transform:matrix(0.157830,-0.001736,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157830,-0.001736,0.002750,0.249985,0,0);}
.mf6_c00256{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);}
.m65_c00256{transform:matrix(0.160295,-0.001763,0.002750,0.249985,0,0);-ms-transform:matrix(0.160295,-0.001763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160295,-0.001763,0.002750,0.249985,0,0);}
.mb6_c00256{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);}
.m8d_c00256{transform:matrix(0.164480,-0.001809,0.002750,0.249985,0,0);-ms-transform:matrix(0.164480,-0.001809,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164480,-0.001809,0.002750,0.249985,0,0);}
.mde_c00256{transform:matrix(0.165125,-0.001816,0.002750,0.249985,0,0);-ms-transform:matrix(0.165125,-0.001816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165125,-0.001816,0.002750,0.249985,0,0);}
.m55_c00256{transform:matrix(0.165130,-0.001816,0.002750,0.249985,0,0);-ms-transform:matrix(0.165130,-0.001816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165130,-0.001816,0.002750,0.249985,0,0);}
.m76_c00256{transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);-ms-transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);}
.m6f_c00256{transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);}
.m52_c00256{transform:matrix(0.167975,-0.001848,0.002750,0.249985,0,0);-ms-transform:matrix(0.167975,-0.001848,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167975,-0.001848,0.002750,0.249985,0,0);}
.m2c_c00256{transform:matrix(0.168886,-0.002196,0.003250,0.249979,0,0);-ms-transform:matrix(0.168886,-0.002196,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168886,-0.002196,0.003250,0.249979,0,0);}
.m7a_c00256{transform:matrix(0.169140,-0.001861,0.002750,0.249985,0,0);-ms-transform:matrix(0.169140,-0.001861,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169140,-0.001861,0.002750,0.249985,0,0);}
.m9e_c00256{transform:matrix(0.169425,-0.001864,0.002750,0.249985,0,0);-ms-transform:matrix(0.169425,-0.001864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169425,-0.001864,0.002750,0.249985,0,0);}
.me5_c00256{transform:matrix(0.169930,-0.001869,0.002750,0.249985,0,0);-ms-transform:matrix(0.169930,-0.001869,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169930,-0.001869,0.002750,0.249985,0,0);}
.mb8_c00256{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);}
.mb1_c00256{transform:matrix(0.172340,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172340,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172340,-0.001896,0.002750,0.249985,0,0);}
.m2f_c00256{transform:matrix(0.172480,-0.002242,0.003250,0.249979,0,0);-ms-transform:matrix(0.172480,-0.002242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172480,-0.002242,0.003250,0.249979,0,0);}
.mf2_c00256{transform:matrix(0.172580,-0.001898,0.002750,0.249985,0,0);-ms-transform:matrix(0.172580,-0.001898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172580,-0.001898,0.002750,0.249985,0,0);}
.m69_c00256{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);}
.m2a_c00256{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);}
.ma2_c00256{transform:matrix(0.172915,-0.001902,0.002750,0.249985,0,0);-ms-transform:matrix(0.172915,-0.001902,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172915,-0.001902,0.002750,0.249985,0,0);}
.m3d_c00256{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);}
.mba_c00256{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);}
.mc6_c00256{transform:matrix(0.175639,-0.001932,0.002750,0.249985,0,0);-ms-transform:matrix(0.175639,-0.001932,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175639,-0.001932,0.002750,0.249985,0,0);}
.m18_c00256{transform:matrix(0.176232,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176232,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176232,-0.002820,0.003999,0.249968,0,0);}
.m88_c00256{transform:matrix(0.176249,-0.001939,0.002750,0.249985,0,0);-ms-transform:matrix(0.176249,-0.001939,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176249,-0.001939,0.002750,0.249985,0,0);}
.mad_c00256{transform:matrix(0.176294,-0.001939,0.002750,0.249985,0,0);-ms-transform:matrix(0.176294,-0.001939,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176294,-0.001939,0.002750,0.249985,0,0);}
.m37_c00256{transform:matrix(0.176625,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176625,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176625,-0.002296,0.003250,0.249979,0,0);}
.m54_c00256{transform:matrix(0.176634,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176634,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176634,-0.001943,0.002750,0.249985,0,0);}
.maf_c00256{transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);-ms-transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176744,-0.001944,0.002750,0.249985,0,0);}
.m8e_c00256{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);}
.m4e_c00256{transform:matrix(0.177244,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177244,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177244,-0.001950,0.002750,0.249985,0,0);}
.mb0_c00256{transform:matrix(0.177629,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177629,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177629,-0.001954,0.002750,0.249985,0,0);}
.m87_c00256{transform:matrix(0.178104,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178104,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178104,-0.001959,0.002750,0.249985,0,0);}
.m45_c00256{transform:matrix(0.178189,-0.001960,0.002750,0.249985,0,0);-ms-transform:matrix(0.178189,-0.001960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178189,-0.001960,0.002750,0.249985,0,0);}
.mc1_c00256{transform:matrix(0.180134,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180134,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180134,-0.001981,0.002750,0.249985,0,0);}
.m60_c00256{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);}
.m92_c00256{transform:matrix(0.180864,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180864,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180864,-0.001990,0.002750,0.249985,0,0);}
.ma4_c00256{transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181489,-0.001996,0.002750,0.249985,0,0);}
.me7_c00256{transform:matrix(0.181509,-0.001997,0.002750,0.249985,0,0);-ms-transform:matrix(0.181509,-0.001997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181509,-0.001997,0.002750,0.249985,0,0);}
.m67_c00256{transform:matrix(0.181734,-0.001999,0.002750,0.249985,0,0);-ms-transform:matrix(0.181734,-0.001999,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181734,-0.001999,0.002750,0.249985,0,0);}
.m56_c00256{transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183344,-0.002017,0.002750,0.249985,0,0);}
.m30_c00256{transform:matrix(0.183859,-0.002390,0.003250,0.249979,0,0);-ms-transform:matrix(0.183859,-0.002390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183859,-0.002390,0.003250,0.249979,0,0);}
.m70_c00256{transform:matrix(0.184759,-0.002032,0.002750,0.249985,0,0);-ms-transform:matrix(0.184759,-0.002032,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184759,-0.002032,0.002750,0.249985,0,0);}
.mca_c00256{transform:matrix(0.184944,-0.002034,0.002750,0.249985,0,0);-ms-transform:matrix(0.184944,-0.002034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184944,-0.002034,0.002750,0.249985,0,0);}
.m97_c00256{transform:matrix(0.185099,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185099,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185099,-0.002036,0.002750,0.249985,0,0);}
.mdb_c00256{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);}
.m38_c00256{transform:matrix(0.185684,-0.002414,0.003250,0.249979,0,0);-ms-transform:matrix(0.185684,-0.002414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185684,-0.002414,0.003250,0.249979,0,0);}
.m49_c00256{transform:matrix(0.185954,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185954,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185954,-0.002045,0.002750,0.249985,0,0);}
.m7e_c00256{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);}
.m66_c00256{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);}
.mab_c00256{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);}
.m7b_c00256{transform:matrix(0.186869,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186869,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186869,-0.002056,0.002750,0.249985,0,0);}
.m6b_c00256{transform:matrix(0.186979,-0.002057,0.002750,0.249985,0,0);-ms-transform:matrix(0.186979,-0.002057,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186979,-0.002057,0.002750,0.249985,0,0);}
.mf1_c00256{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);}
.m9a_c00256{transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);-ms-transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);}
.mc9_c00256{transform:matrix(0.189779,-0.002088,0.002750,0.249985,0,0);-ms-transform:matrix(0.189779,-0.002088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189779,-0.002088,0.002750,0.249985,0,0);}
.m95_c00256{transform:matrix(0.189914,-0.002089,0.002750,0.249985,0,0);-ms-transform:matrix(0.189914,-0.002089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189914,-0.002089,0.002750,0.249985,0,0);}
.ma7_c00256{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);}
.m42_c00256{transform:matrix(0.191428,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191428,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191428,-0.002106,0.002750,0.249985,0,0);}
.mb5_c00256{transform:matrix(0.191623,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191623,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191623,-0.002108,0.002750,0.249985,0,0);}
.m29_c00256{transform:matrix(0.191790,-0.003069,0.003999,0.249968,0,0);-ms-transform:matrix(0.191790,-0.003069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191790,-0.003069,0.003999,0.249968,0,0);}
.m3b_c00256{transform:matrix(0.192674,-0.002505,0.003250,0.249979,0,0);-ms-transform:matrix(0.192674,-0.002505,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192674,-0.002505,0.003250,0.249979,0,0);}
.m4b_c00256{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);}
.m8f_c00256{transform:matrix(0.192863,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192863,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192863,-0.002121,0.002750,0.249985,0,0);}
.m58_c00256{transform:matrix(0.193198,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193198,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193198,-0.002125,0.002750,0.249985,0,0);}
.m85_c00256{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);}
.me3_c00256{transform:matrix(0.193678,-0.002130,0.002750,0.249985,0,0);-ms-transform:matrix(0.193678,-0.002130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193678,-0.002130,0.002750,0.249985,0,0);}
.m72_c00256{transform:matrix(0.193798,-0.002132,0.002750,0.249985,0,0);-ms-transform:matrix(0.193798,-0.002132,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193798,-0.002132,0.002750,0.249985,0,0);}
.mb7_c00256{transform:matrix(0.193893,-0.002133,0.002750,0.249985,0,0);-ms-transform:matrix(0.193893,-0.002133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193893,-0.002133,0.002750,0.249985,0,0);}
.m5e_c00256{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);}
.m40_c00256{transform:matrix(0.195079,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195079,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195079,-0.002536,0.003250,0.249979,0,0);}
.m9_c00256{transform:matrix(0.195182,-0.003318,0.004249,0.249964,0,0);-ms-transform:matrix(0.195182,-0.003318,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195182,-0.003318,0.004249,0.249964,0,0);}
.ma6_c00256{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);}
.mef_c00256{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);}
.m7c_c00256{transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);}
.ma5_c00256{transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);}
.m7d_c00256{transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196798,-0.002165,0.002750,0.249985,0,0);}
.ma_c00256{transform:matrix(0.197406,-0.003356,0.004249,0.249964,0,0);-ms-transform:matrix(0.197406,-0.003356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197406,-0.003356,0.004249,0.249964,0,0);}
.m36_c00256{transform:matrix(0.197653,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197653,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197653,-0.002569,0.003250,0.249979,0,0);}
.m5c_c00256{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);}
.mc7_c00256{transform:matrix(0.198688,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198688,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198688,-0.002186,0.002750,0.249985,0,0);}
.m9f_c00256{transform:matrix(0.199308,-0.002192,0.002750,0.249985,0,0);-ms-transform:matrix(0.199308,-0.002192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199308,-0.002192,0.002750,0.249985,0,0);}
.m48_c00256{transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);}
.m6a_c00256{transform:matrix(0.200518,-0.002206,0.002750,0.249985,0,0);-ms-transform:matrix(0.200518,-0.002206,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200518,-0.002206,0.002750,0.249985,0,0);}
.m83_c00256{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);}
.m3a_c00256{transform:matrix(0.201208,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201208,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201208,-0.002616,0.003250,0.249979,0,0);}
.m81_c00256{transform:matrix(0.201498,-0.002216,0.002750,0.249985,0,0);-ms-transform:matrix(0.201498,-0.002216,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201498,-0.002216,0.002750,0.249985,0,0);}
.m9c_c00256{transform:matrix(0.201678,-0.002218,0.002750,0.249985,0,0);-ms-transform:matrix(0.201678,-0.002218,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201678,-0.002218,0.002750,0.249985,0,0);}
.m8b_c00256{transform:matrix(0.202033,-0.002222,0.002750,0.249985,0,0);-ms-transform:matrix(0.202033,-0.002222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202033,-0.002222,0.002750,0.249985,0,0);}
.ma1_c00256{transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);}
.mbf_c00256{transform:matrix(0.203103,-0.002234,0.002750,0.249985,0,0);-ms-transform:matrix(0.203103,-0.002234,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203103,-0.002234,0.002750,0.249985,0,0);}
.m46_c00256{transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);}
.mbc_c00256{transform:matrix(0.203293,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203293,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203293,-0.002236,0.002750,0.249985,0,0);}
.m74_c00256{transform:matrix(0.203498,-0.002238,0.002750,0.249985,0,0);-ms-transform:matrix(0.203498,-0.002238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203498,-0.002238,0.002750,0.249985,0,0);}
.m1a_c00256{transform:matrix(0.203554,-0.003257,0.003999,0.249968,0,0);-ms-transform:matrix(0.203554,-0.003257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203554,-0.003257,0.003999,0.249968,0,0);}
.m5b_c00256{transform:matrix(0.204233,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204233,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204233,-0.002247,0.002750,0.249985,0,0);}
.m51_c00256{transform:matrix(0.204338,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204338,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204338,-0.002248,0.002750,0.249985,0,0);}
.mdc_c00256{transform:matrix(0.205003,-0.002255,0.002750,0.249985,0,0);-ms-transform:matrix(0.205003,-0.002255,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205003,-0.002255,0.002750,0.249985,0,0);}
.m90_c00256{transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);}
.mcf_c00256{transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);-ms-transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);}
.m47_c00256{transform:matrix(0.206138,-0.002268,0.002750,0.249985,0,0);-ms-transform:matrix(0.206138,-0.002268,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206138,-0.002268,0.002750,0.249985,0,0);}
.mcb_c00256{transform:matrix(0.206448,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206448,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206448,-0.002271,0.002750,0.249985,0,0);}
.m1f_c00256{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);}
.m53_c00256{transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);}
.m3f_c00256{transform:matrix(0.206993,-0.002691,0.003250,0.249979,0,0);-ms-transform:matrix(0.206993,-0.002691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206993,-0.002691,0.003250,0.249979,0,0);}
.m6d_c00256{transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);}
.m93_c00256{transform:matrix(0.207502,-0.002283,0.002750,0.249985,0,0);-ms-transform:matrix(0.207502,-0.002283,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207502,-0.002283,0.002750,0.249985,0,0);}
.m86_c00256{transform:matrix(0.207642,-0.002284,0.002750,0.249985,0,0);-ms-transform:matrix(0.207642,-0.002284,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207642,-0.002284,0.002750,0.249985,0,0);}
.mf0_c00256{transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);-ms-transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208452,-0.002293,0.002750,0.249985,0,0);}
.mc3_c00256{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);}
.m64_c00256{transform:matrix(0.208712,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208712,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208712,-0.002296,0.002750,0.249985,0,0);}
.m8c_c00256{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);}
.m50_c00256{transform:matrix(0.208957,-0.002299,0.002750,0.249985,0,0);-ms-transform:matrix(0.208957,-0.002299,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208957,-0.002299,0.002750,0.249985,0,0);}
.me6_c00256{transform:matrix(0.209152,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209152,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209152,-0.002301,0.002750,0.249985,0,0);}
.m1b_c00256{transform:matrix(0.209258,-0.003348,0.003999,0.249968,0,0);-ms-transform:matrix(0.209258,-0.003348,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209258,-0.003348,0.003999,0.249968,0,0);}
.m98_c00256{transform:matrix(0.210487,-0.002315,0.002750,0.249985,0,0);-ms-transform:matrix(0.210487,-0.002315,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210487,-0.002315,0.002750,0.249985,0,0);}
.mb2_c00256{transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);}
.mc4_c00256{transform:matrix(0.211002,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.211002,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211002,-0.002321,0.002750,0.249985,0,0);}
.m8a_c00256{transform:matrix(0.211202,-0.002323,0.002750,0.249985,0,0);-ms-transform:matrix(0.211202,-0.002323,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211202,-0.002323,0.002750,0.249985,0,0);}
.ma8_c00256{transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);-ms-transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211537,-0.002327,0.002750,0.249985,0,0);}
.m7f_c00256{transform:matrix(0.211547,-0.002327,0.002750,0.249985,0,0);-ms-transform:matrix(0.211547,-0.002327,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211547,-0.002327,0.002750,0.249985,0,0);}
.m3e_c00256{transform:matrix(0.211917,-0.002755,0.003250,0.249979,0,0);-ms-transform:matrix(0.211917,-0.002755,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211917,-0.002755,0.003250,0.249979,0,0);}
.mc2_c00256{transform:matrix(0.212857,-0.002341,0.002750,0.249985,0,0);-ms-transform:matrix(0.212857,-0.002341,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212857,-0.002341,0.002750,0.249985,0,0);}
.m19_c00256{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);}
.ma9_c00256{transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);-ms-transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);}
.m1e_c00256{transform:matrix(0.215737,-0.003452,0.003999,0.249968,0,0);-ms-transform:matrix(0.215737,-0.003452,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215737,-0.003452,0.003999,0.249968,0,0);}
.md2_c00256{transform:matrix(0.216252,-0.002379,0.002750,0.249985,0,0);-ms-transform:matrix(0.216252,-0.002379,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216252,-0.002379,0.002750,0.249985,0,0);}
.mdd_c00256{transform:matrix(0.216732,-0.002384,0.002750,0.249985,0,0);-ms-transform:matrix(0.216732,-0.002384,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216732,-0.002384,0.002750,0.249985,0,0);}
.mbe_c00256{transform:matrix(0.217257,-0.002390,0.002750,0.249985,0,0);-ms-transform:matrix(0.217257,-0.002390,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217257,-0.002390,0.002750,0.249985,0,0);}
.md3_c00256{transform:matrix(0.218162,-0.002400,0.002750,0.249985,0,0);-ms-transform:matrix(0.218162,-0.002400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218162,-0.002400,0.002750,0.249985,0,0);}
.m43_c00256{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);}
.m82_c00256{transform:matrix(0.218622,-0.002405,0.002750,0.249985,0,0);-ms-transform:matrix(0.218622,-0.002405,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218622,-0.002405,0.002750,0.249985,0,0);}
.ma3_c00256{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);}
.mac_c00256{transform:matrix(0.220087,-0.002421,0.002750,0.249985,0,0);-ms-transform:matrix(0.220087,-0.002421,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220087,-0.002421,0.002750,0.249985,0,0);}
.m41_c00256{transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);}
.m6e_c00256{transform:matrix(0.220487,-0.002425,0.002750,0.249985,0,0);-ms-transform:matrix(0.220487,-0.002425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220487,-0.002425,0.002750,0.249985,0,0);}
.m99_c00256{transform:matrix(0.220557,-0.002426,0.002750,0.249985,0,0);-ms-transform:matrix(0.220557,-0.002426,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220557,-0.002426,0.002750,0.249985,0,0);}
.m9b_c00256{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);}
.m5f_c00256{transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);}
.mea_c00256{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);}
.mae_c00256{transform:matrix(0.221217,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221217,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221217,-0.002433,0.002750,0.249985,0,0);}
.m61_c00256{transform:matrix(0.221387,-0.002435,0.002750,0.249985,0,0);-ms-transform:matrix(0.221387,-0.002435,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221387,-0.002435,0.002750,0.249985,0,0);}
.mc5_c00256{transform:matrix(0.221887,-0.002441,0.002750,0.249985,0,0);-ms-transform:matrix(0.221887,-0.002441,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221887,-0.002441,0.002750,0.249985,0,0);}
.me8_c00256{transform:matrix(0.222387,-0.002446,0.002750,0.249985,0,0);-ms-transform:matrix(0.222387,-0.002446,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222387,-0.002446,0.002750,0.249985,0,0);}
.m77_c00256{transform:matrix(0.223017,-0.002453,0.002750,0.249985,0,0);-ms-transform:matrix(0.223017,-0.002453,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223017,-0.002453,0.002750,0.249985,0,0);}
.mec_c00256{transform:matrix(0.224421,-0.002469,0.002750,0.249985,0,0);-ms-transform:matrix(0.224421,-0.002469,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224421,-0.002469,0.002750,0.249985,0,0);}
.m59_c00256{transform:matrix(0.226526,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226526,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226526,-0.002492,0.002750,0.249985,0,0);}
.m89_c00256{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);}
.md5_c00256{transform:matrix(0.227041,-0.002497,0.002750,0.249985,0,0);-ms-transform:matrix(0.227041,-0.002497,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227041,-0.002497,0.002750,0.249985,0,0);}
.m5_c00256{transform:matrix(0.227477,-0.003867,0.004249,0.249964,0,0);-ms-transform:matrix(0.227477,-0.003867,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227477,-0.003867,0.004249,0.249964,0,0);}
.m5d_c00256{transform:matrix(0.228271,-0.002511,0.002750,0.249985,0,0);-ms-transform:matrix(0.228271,-0.002511,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228271,-0.002511,0.002750,0.249985,0,0);}
.m23_c00256{transform:matrix(0.228416,-0.003655,0.003999,0.249968,0,0);-ms-transform:matrix(0.228416,-0.003655,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228416,-0.003655,0.003999,0.249968,0,0);}
.md1_c00256{transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);}
.m68_c00256{transform:matrix(0.229751,-0.002527,0.002750,0.249985,0,0);-ms-transform:matrix(0.229751,-0.002527,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229751,-0.002527,0.002750,0.249985,0,0);}
.me4_c00256{transform:matrix(0.230146,-0.002532,0.002750,0.249985,0,0);-ms-transform:matrix(0.230146,-0.002532,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230146,-0.002532,0.002750,0.249985,0,0);}
.m4a_c00256{transform:matrix(0.231911,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231911,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231911,-0.002551,0.002750,0.249985,0,0);}
.m63_c00256{transform:matrix(0.233501,-0.002569,0.002750,0.249985,0,0);-ms-transform:matrix(0.233501,-0.002569,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233501,-0.002569,0.002750,0.249985,0,0);}
.m2e_c00256{transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);-ms-transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233645,-0.003037,0.003250,0.249979,0,0);}
.mb3_c00256{transform:matrix(0.234991,-0.002585,0.002750,0.249985,0,0);-ms-transform:matrix(0.234991,-0.002585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234991,-0.002585,0.002750,0.249985,0,0);}
.me0_c00256{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);}
.m21_c00256{transform:matrix(0.237330,-0.003797,0.003999,0.249968,0,0);-ms-transform:matrix(0.237330,-0.003797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237330,-0.003797,0.003999,0.249968,0,0);}
.m28_c00256{transform:matrix(0.239394,-0.003830,0.003999,0.249968,0,0);-ms-transform:matrix(0.239394,-0.003830,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239394,-0.003830,0.003999,0.249968,0,0);}
.m20_c00256{transform:matrix(0.239774,-0.003836,0.003999,0.249968,0,0);-ms-transform:matrix(0.239774,-0.003836,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239774,-0.003836,0.003999,0.249968,0,0);}
.md8_c00256{transform:matrix(0.242475,-0.002667,0.002750,0.249985,0,0);-ms-transform:matrix(0.242475,-0.002667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242475,-0.002667,0.002750,0.249985,0,0);}
.m94_c00256{transform:matrix(0.242590,-0.002668,0.002750,0.249985,0,0);-ms-transform:matrix(0.242590,-0.002668,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242590,-0.002668,0.002750,0.249985,0,0);}
.m62_c00256{transform:matrix(0.243865,-0.002683,0.002750,0.249985,0,0);-ms-transform:matrix(0.243865,-0.002683,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243865,-0.002683,0.002750,0.249985,0,0);}
.m15_c00256{transform:matrix(0.244107,-0.002929,0.003000,0.249982,0,0);-ms-transform:matrix(0.244107,-0.002929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244107,-0.002929,0.003000,0.249982,0,0);}
.mc8_c00256{transform:matrix(0.244180,-0.002686,0.002750,0.249985,0,0);-ms-transform:matrix(0.244180,-0.002686,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244180,-0.002686,0.002750,0.249985,0,0);}
.md7_c00256{transform:matrix(0.244340,-0.002688,0.002750,0.249985,0,0);-ms-transform:matrix(0.244340,-0.002688,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244340,-0.002688,0.002750,0.249985,0,0);}
.m91_c00256{transform:matrix(0.244835,-0.002693,0.002750,0.249985,0,0);-ms-transform:matrix(0.244835,-0.002693,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244835,-0.002693,0.002750,0.249985,0,0);}
.mcc_c00256{transform:matrix(0.245150,-0.002697,0.002750,0.249985,0,0);-ms-transform:matrix(0.245150,-0.002697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245150,-0.002697,0.002750,0.249985,0,0);}
.m44_c00256{transform:matrix(0.246430,-0.002711,0.002750,0.249985,0,0);-ms-transform:matrix(0.246430,-0.002711,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246430,-0.002711,0.002750,0.249985,0,0);}
.m33_c00256{transform:matrix(0.249169,-0.003239,0.003250,0.249979,0,0);-ms-transform:matrix(0.249169,-0.003239,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249169,-0.003239,0.003250,0.249979,0,0);}
.m7_c00256{transform:matrix(0.250254,-0.004254,0.004249,0.249964,0,0);-ms-transform:matrix(0.250254,-0.004254,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250254,-0.004254,0.004249,0.249964,0,0);}
.mdf_c00256{transform:matrix(0.251990,-0.002772,0.002750,0.249985,0,0);-ms-transform:matrix(0.251990,-0.002772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251990,-0.002772,0.002750,0.249985,0,0);}
.m75_c00256{transform:matrix(0.251995,-0.002772,0.002750,0.249985,0,0);-ms-transform:matrix(0.251995,-0.002772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251995,-0.002772,0.002750,0.249985,0,0);}
.m71_c00256{transform:matrix(0.252650,-0.002779,0.002750,0.249985,0,0);-ms-transform:matrix(0.252650,-0.002779,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252650,-0.002779,0.002750,0.249985,0,0);}
.m9d_c00256{transform:matrix(0.255230,-0.002808,0.002750,0.249985,0,0);-ms-transform:matrix(0.255230,-0.002808,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255230,-0.002808,0.002750,0.249985,0,0);}
.mcd_c00256{transform:matrix(0.255435,-0.002810,0.002750,0.249985,0,0);-ms-transform:matrix(0.255435,-0.002810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255435,-0.002810,0.002750,0.249985,0,0);}
.md_c00256{transform:matrix(0.257053,-0.004370,0.004249,0.249964,0,0);-ms-transform:matrix(0.257053,-0.004370,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257053,-0.004370,0.004249,0.249964,0,0);}
.m6_c00256{transform:matrix(0.257438,-0.004376,0.004249,0.249964,0,0);-ms-transform:matrix(0.257438,-0.004376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257438,-0.004376,0.004249,0.249964,0,0);}
.m4_c00256{transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);-ms-transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);}
.m73_c00256{transform:matrix(0.261189,-0.002873,0.002750,0.249985,0,0);-ms-transform:matrix(0.261189,-0.002873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261189,-0.002873,0.002750,0.249985,0,0);}
.md6_c00256{transform:matrix(0.267624,-0.002944,0.002750,0.249985,0,0);-ms-transform:matrix(0.267624,-0.002944,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267624,-0.002944,0.002750,0.249985,0,0);}
.m14_c00256{transform:matrix(0.268131,-0.003218,0.003000,0.249982,0,0);-ms-transform:matrix(0.268131,-0.003218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268131,-0.003218,0.003000,0.249982,0,0);}
.md0_c00256{transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);-ms-transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);}
.mc0_c00256{transform:matrix(0.271689,-0.002989,0.002750,0.249985,0,0);-ms-transform:matrix(0.271689,-0.002989,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271689,-0.002989,0.002750,0.249985,0,0);}
.mda_c00256{transform:matrix(0.273483,-0.003008,0.002750,0.249985,0,0);-ms-transform:matrix(0.273483,-0.003008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273483,-0.003008,0.002750,0.249985,0,0);}
.mf5_c00256{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);}
.maa_c00256{transform:matrix(0.280178,-0.003082,0.002750,0.249985,0,0);-ms-transform:matrix(0.280178,-0.003082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280178,-0.003082,0.002750,0.249985,0,0);}
.m1d_c00256{transform:matrix(0.286463,-0.004583,0.003999,0.249968,0,0);-ms-transform:matrix(0.286463,-0.004583,0.003999,0.249968,0,0);-webkit-transform:matrix(0.286463,-0.004583,0.003999,0.249968,0,0);}
.mee_c00256{transform:matrix(0.286473,-0.003151,0.002750,0.249985,0,0);-ms-transform:matrix(0.286473,-0.003151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286473,-0.003151,0.002750,0.249985,0,0);}
.mf3_c00256{transform:matrix(0.287708,-0.003165,0.002750,0.249985,0,0);-ms-transform:matrix(0.287708,-0.003165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287708,-0.003165,0.002750,0.249985,0,0);}
.m96_c00256{transform:matrix(0.289827,-0.003188,0.002750,0.249985,0,0);-ms-transform:matrix(0.289827,-0.003188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.289827,-0.003188,0.002750,0.249985,0,0);}
.me2_c00256{transform:matrix(0.291182,-0.003203,0.002750,0.249985,0,0);-ms-transform:matrix(0.291182,-0.003203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291182,-0.003203,0.002750,0.249985,0,0);}
.mb_c00256{transform:matrix(0.306781,-0.005215,0.004249,0.249964,0,0);-ms-transform:matrix(0.306781,-0.005215,0.004249,0.249964,0,0);-webkit-transform:matrix(0.306781,-0.005215,0.004249,0.249964,0,0);}
.mf_c00256{transform:matrix(0.309570,-0.005263,0.004249,0.249964,0,0);-ms-transform:matrix(0.309570,-0.005263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.309570,-0.005263,0.004249,0.249964,0,0);}
.me_c00256{transform:matrix(0.311620,-0.005298,0.004249,0.249964,0,0);-ms-transform:matrix(0.311620,-0.005298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311620,-0.005298,0.004249,0.249964,0,0);}
.m11_c00256{transform:matrix(0.313830,-0.005335,0.004249,0.249964,0,0);-ms-transform:matrix(0.313830,-0.005335,0.004249,0.249964,0,0);-webkit-transform:matrix(0.313830,-0.005335,0.004249,0.249964,0,0);}
.m8_c00256{transform:matrix(0.320779,-0.005453,0.004249,0.249964,0,0);-ms-transform:matrix(0.320779,-0.005453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.320779,-0.005453,0.004249,0.249964,0,0);}
.mf4_c00256{transform:matrix(0.330165,-0.003632,0.002750,0.249985,0,0);-ms-transform:matrix(0.330165,-0.003632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.330165,-0.003632,0.002750,0.249985,0,0);}
.m79_c00256{transform:matrix(0.335660,-0.003692,0.002750,0.249985,0,0);-ms-transform:matrix(0.335660,-0.003692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.335660,-0.003692,0.002750,0.249985,0,0);}
.me1_c00256{transform:matrix(0.343499,-0.003778,0.002750,0.249985,0,0);-ms-transform:matrix(0.343499,-0.003778,0.002750,0.249985,0,0);-webkit-transform:matrix(0.343499,-0.003778,0.002750,0.249985,0,0);}
.m6c_c00256{transform:matrix(0.343744,-0.003781,0.002750,0.249985,0,0);-ms-transform:matrix(0.343744,-0.003781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.343744,-0.003781,0.002750,0.249985,0,0);}
.m10_c00256{transform:matrix(0.369227,-0.006277,0.004249,0.249964,0,0);-ms-transform:matrix(0.369227,-0.006277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.369227,-0.006277,0.004249,0.249964,0,0);}
.m1_c00256{transform:matrix(0.374281,-0.006363,0.004249,0.249964,0,0);-ms-transform:matrix(0.374281,-0.006363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.374281,-0.006363,0.004249,0.249964,0,0);}
.m24_c00256{transform:matrix(0.381796,-0.006109,0.003999,0.249968,0,0);-ms-transform:matrix(0.381796,-0.006109,0.003999,0.249968,0,0);-webkit-transform:matrix(0.381796,-0.006109,0.003999,0.249968,0,0);}
.mc_c00256{transform:matrix(0.386164,-0.006565,0.004249,0.249964,0,0);-ms-transform:matrix(0.386164,-0.006565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.386164,-0.006565,0.004249,0.249964,0,0);}
.m31_c00256{transform:matrix(0.396062,-0.005149,0.003250,0.249979,0,0);-ms-transform:matrix(0.396062,-0.005149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.396062,-0.005149,0.003250,0.249979,0,0);}
.m2_c00256{transform:matrix(0.400632,-0.006811,0.004249,0.249964,0,0);-ms-transform:matrix(0.400632,-0.006811,0.004249,0.249964,0,0);-webkit-transform:matrix(0.400632,-0.006811,0.004249,0.249964,0,0);}
.m16_c00256{transform:matrix(0.408696,-0.004904,0.003000,0.249982,0,0);-ms-transform:matrix(0.408696,-0.004904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408696,-0.004904,0.003000,0.249982,0,0);}
.m13_c00256{transform:matrix(0.422065,-0.005065,0.003000,0.249982,0,0);-ms-transform:matrix(0.422065,-0.005065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.422065,-0.005065,0.003000,0.249982,0,0);}
.m3_c00256{transform:matrix(0.432692,-0.007356,0.004249,0.249964,0,0);-ms-transform:matrix(0.432692,-0.007356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.432692,-0.007356,0.004249,0.249964,0,0);}
.mce_c00256{transform:matrix(0.443438,-0.004878,0.002750,0.249985,0,0);-ms-transform:matrix(0.443438,-0.004878,0.002750,0.249985,0,0);-webkit-transform:matrix(0.443438,-0.004878,0.002750,0.249985,0,0);}
.m4d_c00256{transform:matrix(0.447493,-0.004922,0.002750,0.249985,0,0);-ms-transform:matrix(0.447493,-0.004922,0.002750,0.249985,0,0);-webkit-transform:matrix(0.447493,-0.004922,0.002750,0.249985,0,0);}
.m27_c00256{transform:matrix(0.449612,-0.007194,0.003999,0.249968,0,0);-ms-transform:matrix(0.449612,-0.007194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.449612,-0.007194,0.003999,0.249968,0,0);}
.m2b_c00256{transform:matrix(0.457871,-0.007326,0.003999,0.249968,0,0);-ms-transform:matrix(0.457871,-0.007326,0.003999,0.249968,0,0);-webkit-transform:matrix(0.457871,-0.007326,0.003999,0.249968,0,0);}
.m34_c00256{transform:matrix(0.478980,-0.006227,0.003250,0.249979,0,0);-ms-transform:matrix(0.478980,-0.006227,0.003250,0.249979,0,0);-webkit-transform:matrix(0.478980,-0.006227,0.003250,0.249979,0,0);}
.m78_c00256{transform:matrix(0.527283,-0.005800,0.002750,0.249985,0,0);-ms-transform:matrix(0.527283,-0.005800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.527283,-0.005800,0.002750,0.249985,0,0);}
.m25_c00256{transform:matrix(0.537356,-0.008598,0.003999,0.249968,0,0);-ms-transform:matrix(0.537356,-0.008598,0.003999,0.249968,0,0);-webkit-transform:matrix(0.537356,-0.008598,0.003999,0.249968,0,0);}
.m22_c00256{transform:matrix(0.544815,-0.008717,0.003999,0.249968,0,0);-ms-transform:matrix(0.544815,-0.008717,0.003999,0.249968,0,0);-webkit-transform:matrix(0.544815,-0.008717,0.003999,0.249968,0,0);}
.m26_c00256{transform:matrix(0.600793,-0.009613,0.003999,0.249968,0,0);-ms-transform:matrix(0.600793,-0.009613,0.003999,0.249968,0,0);-webkit-transform:matrix(0.600793,-0.009613,0.003999,0.249968,0,0);}
.med_c00256{transform:matrix(0.715147,-0.007867,0.002750,0.249985,0,0);-ms-transform:matrix(0.715147,-0.007867,0.002750,0.249985,0,0);-webkit-transform:matrix(0.715147,-0.007867,0.002750,0.249985,0,0);}
.mf7_c00256{transform:matrix(0.739552,-0.125259,0.041748,0.246490,0,0);-ms-transform:matrix(0.739552,-0.125259,0.041748,0.246490,0,0);-webkit-transform:matrix(0.739552,-0.125259,0.041748,0.246490,0,0);}
.m17_c00256{transform:matrix(0.805967,-0.012895,0.003999,0.249968,0,0);-ms-transform:matrix(0.805967,-0.012895,0.003999,0.249968,0,0);-webkit-transform:matrix(0.805967,-0.012895,0.003999,0.249968,0,0);}
.m0_c00256{transform:matrix(1.055657,-0.017946,0.004249,0.249964,0,0);-ms-transform:matrix(1.055657,-0.017946,0.004249,0.249964,0,0);-webkit-transform:matrix(1.055657,-0.017946,0.004249,0.249964,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;}
.fse_c00256{font-size:49.352986px;}
.fsf_c00256{font-size:51.453113px;}
.fs10_c00256{font-size:52.503176px;}
.fs4_c00256{font-size:60.907795px;}
.fsd_c00256{font-size:61.953748px;}
.fs5_c00256{font-size:63.008063px;}
.fs8_c00256{font-size:67.204065px;}
.fs11_c00256{font-size:68.250000px;}
.fs9_c00256{font-size:68.254129px;}
.fsa_c00256{font-size:69.304193px;}
.fs2_c00256{font-size:69.310013px;}
.fsc_c00256{font-size:70.354256px;}
.fs6_c00256{font-size:70.355944px;}
.fsb_c00256{font-size:71.404320px;}
.fs7_c00256{font-size:71.406033px;}
.fs3_c00256{font-size:103.957484px;}
.fs12_c00256{font-size:117.604998px;}
.fs1_c00256{font-size:143.870785px;}
.fs0_c00256{font-size:144.920937px;}
.y0_c00256{bottom:0.000000px;}
.yf8_c00256{bottom:75.495000px;}
.yf9_c00256{bottom:108.690759px;}
.yf7_c00256{bottom:136.489500px;}
.yeb_c00256{bottom:153.630811px;}
.yec_c00256{bottom:153.793690px;}
.yed_c00256{bottom:154.312949px;}
.yee_c00256{bottom:154.643112px;}
.yef_c00256{bottom:154.927083px;}
.yf0_c00256{bottom:157.092952px;}
.yf1_c00256{bottom:157.495788px;}
.yf2_c00256{bottom:158.223144px;}
.yf3_c00256{bottom:158.479053px;}
.yf4_c00256{bottom:159.219822px;}
.yf5_c00256{bottom:159.469791px;}
.yf6_c00256{bottom:159.804311px;}
.ydb_c00256{bottom:171.713784px;}
.ydc_c00256{bottom:171.926090px;}
.ydd_c00256{bottom:172.470324px;}
.yde_c00256{bottom:172.846581px;}
.ydf_c00256{bottom:173.107273px;}
.ye0_c00256{bottom:173.608137px;}
.ye1_c00256{bottom:173.997972px;}
.ye2_c00256{bottom:174.464866px;}
.ye3_c00256{bottom:175.104703px;}
.ye4_c00256{bottom:175.233780px;}
.ye5_c00256{bottom:175.504487px;}
.ye6_c00256{bottom:176.118967px;}
.ye7_c00256{bottom:176.283892px;}
.ye8_c00256{bottom:176.578818px;}
.ye9_c00256{bottom:176.949879px;}
.yea_c00256{bottom:177.164462px;}
.ycf_c00256{bottom:190.621500px;}
.yd0_c00256{bottom:190.880731px;}
.yd1_c00256{bottom:191.112144px;}
.yd2_c00256{bottom:191.743962px;}
.yd3_c00256{bottom:191.969764px;}
.yd4_c00256{bottom:192.546011px;}
.yd5_c00256{bottom:192.824877px;}
.yd6_c00256{bottom:193.077872px;}
.yd7_c00256{bottom:193.347993px;}
.yd8_c00256{bottom:193.983672px;}
.yd9_c00256{bottom:194.928231px;}
.yda_c00256{bottom:195.436497px;}
.yc4_c00256{bottom:242.899074px;}
.yc5_c00256{bottom:243.626394px;}
.yc6_c00256{bottom:244.315450px;}
.yc7_c00256{bottom:244.841174px;}
.yc8_c00256{bottom:245.191650px;}
.yc9_c00256{bottom:245.485202px;}
.yca_c00256{bottom:245.848169px;}
.ycb_c00256{bottom:246.546135px;}
.ycc_c00256{bottom:246.887701px;}
.ycd_c00256{bottom:247.104561px;}
.yce_c00256{bottom:247.769742px;}
.yba_c00256{bottom:264.317519px;}
.ybb_c00256{bottom:264.717429px;}
.ybc_c00256{bottom:265.673687px;}
.ybd_c00256{bottom:265.991592px;}
.ybe_c00256{bottom:266.826113px;}
.ybf_c00256{bottom:267.135719px;}
.yc0_c00256{bottom:268.037988px;}
.yc1_c00256{bottom:268.356059px;}
.yc2_c00256{bottom:269.374571px;}
.yc3_c00256{bottom:269.638554px;}
.yaf_c00256{bottom:288.619406px;}
.yb0_c00256{bottom:289.129496px;}
.yb1_c00256{bottom:289.373969px;}
.yb2_c00256{bottom:289.647576px;}
.yb3_c00256{bottom:289.890183px;}
.yb4_c00256{bottom:290.309078px;}
.yb5_c00256{bottom:290.554575px;}
.yb6_c00256{bottom:290.775527px;}
.yb7_c00256{bottom:291.562276px;}
.yb8_c00256{bottom:291.787189px;}
.yb9_c00256{bottom:292.279784px;}
.ya3_c00256{bottom:311.570916px;}
.ya4_c00256{bottom:311.989299px;}
.ya5_c00256{bottom:312.388507px;}
.ya6_c00256{bottom:312.621477px;}
.ya7_c00256{bottom:313.404232px;}
.ya8_c00256{bottom:313.723209px;}
.ya9_c00256{bottom:314.045981px;}
.yaa_c00256{bottom:314.431641px;}
.yab_c00256{bottom:315.327896px;}
.yac_c00256{bottom:315.545685px;}
.yad_c00256{bottom:315.775206px;}
.yae_c00256{bottom:316.039217px;}
.y98_c00256{bottom:333.712458px;}
.y99_c00256{bottom:334.392703px;}
.y9a_c00256{bottom:335.200395px;}
.y9b_c00256{bottom:335.384617px;}
.y9c_c00256{bottom:336.085488px;}
.y9d_c00256{bottom:336.647148px;}
.y9e_c00256{bottom:337.264743px;}
.y9f_c00256{bottom:337.445863px;}
.ya0_c00256{bottom:337.683513px;}
.ya1_c00256{bottom:338.328036px;}
.ya2_c00256{bottom:338.586475px;}
.y90_c00256{bottom:356.662138px;}
.y91_c00256{bottom:357.675421px;}
.y92_c00256{bottom:358.087369px;}
.y93_c00256{bottom:358.690273px;}
.y94_c00256{bottom:359.391429px;}
.y95_c00256{bottom:359.711049px;}
.y96_c00256{bottom:360.645999px;}
.y97_c00256{bottom:361.267681px;}
.y84_c00256{bottom:380.422747px;}
.y85_c00256{bottom:380.694951px;}
.y86_c00256{bottom:380.878896px;}
.y87_c00256{bottom:381.213163px;}
.y88_c00256{bottom:381.582703px;}
.y89_c00256{bottom:381.805009px;}
.y8a_c00256{bottom:382.231215px;}
.y8b_c00256{bottom:382.893906px;}
.y8c_c00256{bottom:383.185455px;}
.y8d_c00256{bottom:383.368657px;}
.y8e_c00256{bottom:383.848261px;}
.y8f_c00256{bottom:384.045064px;}
.y79_c00256{bottom:402.835003px;}
.y7a_c00256{bottom:403.206913px;}
.y7b_c00256{bottom:403.354720px;}
.y7c_c00256{bottom:403.761066px;}
.y7d_c00256{bottom:404.136177px;}
.y7e_c00256{bottom:404.355676px;}
.y7f_c00256{bottom:405.311950px;}
.y80_c00256{bottom:405.980002px;}
.y81_c00256{bottom:406.342095px;}
.y82_c00256{bottom:406.595188px;}
.y83_c00256{bottom:407.275434px;}
.y6e_c00256{bottom:426.055866px;}
.y6f_c00256{bottom:426.512605px;}
.y70_c00256{bottom:427.082791px;}
.y71_c00256{bottom:427.318612px;}
.y72_c00256{bottom:427.693492px;}
.y73_c00256{bottom:427.890332px;}
.y74_c00256{bottom:428.342070px;}
.y75_c00256{bottom:428.862364px;}
.y76_c00256{bottom:429.732207px;}
.y77_c00256{bottom:429.907030px;}
.y78_c00256{bottom:430.058484px;}
.y64_c00256{bottom:449.005959px;}
.y65_c00256{bottom:449.522163px;}
.y66_c00256{bottom:449.913846px;}
.y67_c00256{bottom:450.101883px;}
.y68_c00256{bottom:450.872179px;}
.y69_c00256{bottom:451.168863px;}
.y6a_c00256{bottom:451.439028px;}
.y6b_c00256{bottom:452.090347px;}
.y6c_c00256{bottom:452.893020px;}
.y6d_c00256{bottom:453.651767px;}
.y59_c00256{bottom:471.688910px;}
.y5a_c00256{bottom:472.169085px;}
.y5b_c00256{bottom:472.777307px;}
.y5c_c00256{bottom:472.918254px;}
.y5d_c00256{bottom:473.876775px;}
.y5e_c00256{bottom:474.403890px;}
.y5f_c00256{bottom:474.824638px;}
.y60_c00256{bottom:475.407205px;}
.y61_c00256{bottom:476.094505px;}
.y62_c00256{bottom:476.898615px;}
.y63_c00256{bottom:477.258268px;}
.y4c_c00256{bottom:494.370168px;}
.y4d_c00256{bottom:494.859105px;}
.y4e_c00256{bottom:495.218280px;}
.y4f_c00256{bottom:495.877317px;}
.y50_c00256{bottom:496.168633px;}
.y51_c00256{bottom:496.698686px;}
.y52_c00256{bottom:497.483442px;}
.y53_c00256{bottom:497.879392px;}
.y54_c00256{bottom:498.401062px;}
.y55_c00256{bottom:498.683007px;}
.y56_c00256{bottom:499.153168px;}
.y57_c00256{bottom:499.507047px;}
.y58_c00256{bottom:499.943931px;}
.y42_c00256{bottom:517.591500px;}
.y43_c00256{bottom:518.648193px;}
.y44_c00256{bottom:519.013965px;}
.y45_c00256{bottom:519.798127px;}
.y46_c00256{bottom:520.190184px;}
.y47_c00256{bottom:520.427866px;}
.y48_c00256{bottom:521.030842px;}
.y49_c00256{bottom:521.386929px;}
.y4a_c00256{bottom:521.892192px;}
.y4b_c00256{bottom:522.117961px;}
.y36_c00256{bottom:540.540174px;}
.y37_c00256{bottom:540.857836px;}
.y38_c00256{bottom:541.217466px;}
.y39_c00256{bottom:541.712632px;}
.y3a_c00256{bottom:542.029632px;}
.y3b_c00256{bottom:542.476609px;}
.y3c_c00256{bottom:543.253807px;}
.y3d_c00256{bottom:543.752933px;}
.y3e_c00256{bottom:544.067961px;}
.y3f_c00256{bottom:544.598562px;}
.y40_c00256{bottom:545.412384px;}
.y41_c00256{bottom:546.066800px;}
.y2d_c00256{bottom:562.683000px;}
.y2e_c00256{bottom:563.151663px;}
.y2f_c00256{bottom:563.422771px;}
.y30_c00256{bottom:564.265913px;}
.y31_c00256{bottom:564.768077px;}
.y32_c00256{bottom:565.675763px;}
.y33_c00256{bottom:566.602130px;}
.y34_c00256{bottom:567.234339px;}
.y35_c00256{bottom:568.709455px;}
.y23_c00256{bottom:630.175860px;}
.y24_c00256{bottom:630.806484px;}
.y25_c00256{bottom:631.018776px;}
.y26_c00256{bottom:631.439820px;}
.y27_c00256{bottom:632.314272px;}
.y28_c00256{bottom:633.282660px;}
.y29_c00256{bottom:635.153712px;}
.y2a_c00256{bottom:635.672892px;}
.y2b_c00256{bottom:636.363672px;}
.y2c_c00256{bottom:636.603132px;}
.y18_c00256{bottom:652.327500px;}
.y19_c00256{bottom:652.949940px;}
.y1a_c00256{bottom:653.381892px;}
.y1b_c00256{bottom:653.841420px;}
.y1c_c00256{bottom:654.934092px;}
.y1d_c00256{bottom:655.686396px;}
.y1e_c00256{bottom:655.936692px;}
.y1f_c00256{bottom:656.920212px;}
.y20_c00256{bottom:657.362652px;}
.y21_c00256{bottom:658.354884px;}
.y22_c00256{bottom:659.625228px;}
.y14_c00256{bottom:697.414500px;}
.y15_c00256{bottom:698.692140px;}
.y16_c00256{bottom:699.102288px;}
.y17_c00256{bottom:699.500826px;}
.yc_c00256{bottom:744.909891px;}
.yd_c00256{bottom:745.724704px;}
.ye_c00256{bottom:746.634336px;}
.yf_c00256{bottom:747.070123px;}
.y10_c00256{bottom:748.706436px;}
.y11_c00256{bottom:749.112667px;}
.y12_c00256{bottom:749.500449px;}
.y13_c00256{bottom:750.559573px;}
.y5_c00256{bottom:791.629135px;}
.y6_c00256{bottom:792.826279px;}
.y7_c00256{bottom:794.195631px;}
.y8_c00256{bottom:795.456538px;}
.y9_c00256{bottom:796.532025px;}
.ya_c00256{bottom:798.119773px;}
.yb_c00256{bottom:798.653944px;}
.y4_c00256{bottom:846.454512px;}
.y1_c00256{bottom:903.700500px;}
.y2_c00256{bottom:910.166790px;}
.y3_c00256{bottom:911.934934px;}
.h10_c00256{height:49.352986px;}
.h11_c00256{height:51.453113px;}
.h12_c00256{height:52.503176px;}
.h6_c00256{height:60.907795px;}
.hf_c00256{height:61.953748px;}
.h7_c00256{height:63.008063px;}
.ha_c00256{height:67.204065px;}
.h13_c00256{height:68.250000px;}
.hb_c00256{height:68.254129px;}
.hc_c00256{height:69.304193px;}
.h4_c00256{height:69.310013px;}
.he_c00256{height:70.354256px;}
.h8_c00256{height:70.355944px;}
.hd_c00256{height:71.404320px;}
.h9_c00256{height:71.406033px;}
.h5_c00256{height:103.957484px;}
.h14_c00256{height:117.604998px;}
.h3_c00256{height:143.870785px;}
.h2_c00256{height:144.920937px;}
.h1_c00256{height:1005.000000px;}
.h0_c00256{height:1005.150000px;}
.w1_c00256{width:713.250000px;}
.w0_c00256{width:713.550000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:18.178500px;}
.x84_c00256{left:47.223801px;}
.x97_c00256{left:57.819747px;}
.x9e_c00256{left:70.522672px;}
.x98_c00256{left:74.119884px;}
.x5_c00256{left:75.931349px;}
.x17_c00256{left:77.151000px;}
.x2b_c00256{left:78.745500px;}
.x42_c00256{left:79.801969px;}
.x6d_c00256{left:81.132236px;}
.x7e_c00256{left:82.177741px;}
.x85_c00256{left:83.579301px;}
.x90_c00256{left:96.772500px;}
.xc_c00256{left:104.425079px;}
.x33_c00256{left:105.444191px;}
.x4_c00256{left:111.914483px;}
.x2c_c00256{left:114.796500px;}
.x18_c00256{left:116.053500px;}
.x22_c00256{left:119.192508px;}
.x43_c00256{left:120.568524px;}
.x77_c00256{left:123.234171px;}
.x5f_c00256{left:127.586299px;}
.x54_c00256{left:131.346474px;}
.x23_c00256{left:133.304724px;}
.x2d_c00256{left:135.651000px;}
.x66_c00256{left:137.805240px;}
.x91_c00256{left:141.376500px;}
.x19_c00256{left:143.050500px;}
.x99_c00256{left:144.844817px;}
.x7f_c00256{left:145.869837px;}
.x89_c00256{left:148.634145px;}
.x6_c00256{left:150.764624px;}
.x24_c00256{left:161.401680px;}
.x78_c00256{left:163.208116px;}
.x60_c00256{left:164.526799px;}
.xd_c00256{left:167.094837px;}
.x4d_c00256{left:170.153894px;}
.x1a_c00256{left:171.771000px;}
.x3b_c00256{left:175.321500px;}
.x34_c00256{left:176.737127px;}
.x13_c00256{left:178.897500px;}
.x4e_c00256{left:181.876262px;}
.x79_c00256{left:186.432864px;}
.x55_c00256{left:189.367118px;}
.x5b_c00256{left:194.794453px;}
.x61_c00256{left:198.627799px;}
.x2e_c00256{left:200.508000px;}
.x35_c00256{left:203.198978px;}
.x44_c00256{left:205.359583px;}
.x3c_c00256{left:208.573500px;}
.x80_c00256{left:210.697482px;}
.x72_c00256{left:217.226251px;}
.x62_c00256{left:218.582299px;}
.x25_c00256{left:219.712116px;}
.x5c_c00256{left:221.006031px;}
.x6e_c00256{left:223.654803px;}
.x67_c00256{left:225.790644px;}
.x45_c00256{left:229.660819px;}
.x73_c00256{left:233.973751px;}
.x7_c00256{left:236.345577px;}
.x1b_c00256{left:240.063000px;}
.x68_c00256{left:253.637568px;}
.x8a_c00256{left:259.068645px;}
.x4f_c00256{left:261.786387px;}
.x7a_c00256{left:264.684222px;}
.x56_c00256{left:266.349459px;}
.x9a_c00256{left:269.322577px;}
.xe_c00256{left:270.508849px;}
.x92_c00256{left:271.728000px;}
.x46_c00256{left:273.892341px;}
.x86_c00256{left:275.277801px;}
.x3d_c00256{left:279.861000px;}
.x26_c00256{left:284.268648px;}
.x14_c00256{left:285.367500px;}
.x1c_c00256{left:287.082000px;}
.x8b_c00256{left:290.930145px;}
.x81_c00256{left:293.336704px;}
.x57_c00256{left:296.048289px;}
.x74_c00256{left:297.689251px;}
.x1d_c00256{left:302.725500px;}
.x36_c00256{left:305.213804px;}
.x69_c00256{left:306.839817px;}
.x2f_c00256{left:308.958000px;}
.x8_c00256{left:315.194428px;}
.x8c_c00256{left:317.616645px;}
.x15_c00256{left:319.546500px;}
.x58_c00256{left:323.063586px;}
.x82_c00256{left:324.110227px;}
.x7b_c00256{left:328.752915px;}
.x5d_c00256{left:334.641022px;}
.x3e_c00256{left:337.110000px;}
.x47_c00256{left:339.233115px;}
.x50_c00256{left:340.864029px;}
.x93_c00256{left:344.635500px;}
.x37_c00256{left:346.839350px;}
.x75_c00256{left:348.749251px;}
.x8d_c00256{left:350.613645px;}
.x83_c00256{left:351.697635px;}
.x16_c00256{left:352.758000px;}
.x6f_c00256{left:354.070739px;}
.x1e_c00256{left:364.195500px;}
.x63_c00256{left:366.248299px;}
.x7c_c00256{left:367.358844px;}
.x38_c00256{left:373.034181px;}
.x30_c00256{left:380.217000px;}
.x9_c00256{left:382.430076px;}
.x70_c00256{left:385.991085px;}
.x59_c00256{left:388.138796px;}
.x51_c00256{left:389.460501px;}
.x1f_c00256{left:391.848000px;}
.xf_c00256{left:396.329892px;}
.x2_c00256{left:398.548500px;}
.x94_c00256{left:402.424500px;}
.x76_c00256{left:404.894251px;}
.x27_c00256{left:408.992640px;}
.x87_c00256{left:414.363801px;}
.x48_c00256{left:415.697773px;}
.x39_c00256{left:417.311766px;}
.x64_c00256{left:422.174299px;}
.x3f_c00256{left:424.297500px;}
.x6a_c00256{left:426.183761px;}
.x10_c00256{left:427.551508px;}
.x31_c00256{left:428.848500px;}
.x9b_c00256{left:431.905497px;}
.x49_c00256{left:439.147010px;}
.x28_c00256{left:443.598192px;}
.x8e_c00256{left:445.116645px;}
.x52_c00256{left:446.759874px;}
.x6b_c00256{left:449.112020px;}
.x20_c00256{left:453.862500px;}
.x11_c00256{left:457.423049px;}
.x9c_c00256{left:460.455870px;}
.x8f_c00256{left:464.831145px;}
.x5a_c00256{left:468.337170px;}
.x40_c00256{left:470.230500px;}
.x9d_c00256{left:476.963007px;}
.x4a_c00256{left:478.343081px;}
.x71_c00256{left:479.442108px;}
.xa_c00256{left:481.652259px;}
.x65_c00256{left:484.014799px;}
.x3a_c00256{left:485.106644px;}
.x95_c00256{left:488.293500px;}
.x29_c00256{left:489.678936px;}
.x41_c00256{left:490.755000px;}
.x9f_c00256{left:500.468718px;}
.x3_c00256{left:502.557000px;}
.x2a_c00256{left:505.676700px;}
.x4b_c00256{left:507.786251px;}
.x6c_c00256{left:509.078000px;}
.x53_c00256{left:513.723632px;}
.xb_c00256{left:515.015820px;}
.xa0_c00256{left:519.647289px;}
.x5e_c00256{left:525.319213px;}
.x7d_c00256{left:528.231126px;}
.x88_c00256{left:530.954301px;}
.x21_c00256{left:533.259000px;}
.x96_c00256{left:534.499500px;}
.x12_c00256{left:538.877082px;}
.x32_c00256{left:542.319000px;}
.x4c_c00256{left:544.229854px;}
.xa1_c00256{left:545.421228px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.fse_c00256{font-size:43.869321pt;}
.fsf_c00256{font-size:45.736100pt;}
.fs10_c00256{font-size:46.669490pt;}
.fs4_c00256{font-size:54.140262pt;}
.fsd_c00256{font-size:55.069998pt;}
.fs5_c00256{font-size:56.007168pt;}
.fs8_c00256{font-size:59.736947pt;}
.fs11_c00256{font-size:60.666667pt;}
.fs9_c00256{font-size:60.670337pt;}
.fsa_c00256{font-size:61.603727pt;}
.fs2_c00256{font-size:61.608901pt;}
.fsc_c00256{font-size:62.537116pt;}
.fs6_c00256{font-size:62.538617pt;}
.fsb_c00256{font-size:63.470506pt;}
.fs7_c00256{font-size:63.472029pt;}
.fs3_c00256{font-size:92.406653pt;}
.fs12_c00256{font-size:104.537776pt;}
.fs1_c00256{font-size:127.885142pt;}
.fs0_c00256{font-size:128.818610pt;}
.y0_c00256{bottom:0.000000pt;}
.yf8_c00256{bottom:67.106667pt;}
.yf9_c00256{bottom:96.614008pt;}
.yf7_c00256{bottom:121.324000pt;}
.yeb_c00256{bottom:136.560721pt;}
.yec_c00256{bottom:136.705503pt;}
.yed_c00256{bottom:137.167065pt;}
.yee_c00256{bottom:137.460544pt;}
.yef_c00256{bottom:137.712963pt;}
.yf0_c00256{bottom:139.638180pt;}
.yf1_c00256{bottom:139.996256pt;}
.yf2_c00256{bottom:140.642795pt;}
.yf3_c00256{bottom:140.870269pt;}
.yf4_c00256{bottom:141.528731pt;}
.yf5_c00256{bottom:141.750925pt;}
.yf6_c00256{bottom:142.048276pt;}
.ydb_c00256{bottom:152.634475pt;}
.ydc_c00256{bottom:152.823191pt;}
.ydd_c00256{bottom:153.306955pt;}
.yde_c00256{bottom:153.641405pt;}
.ydf_c00256{bottom:153.873132pt;}
.ye0_c00256{bottom:154.318344pt;}
.ye1_c00256{bottom:154.664864pt;}
.ye2_c00256{bottom:155.079881pt;}
.ye3_c00256{bottom:155.648625pt;}
.ye4_c00256{bottom:155.763360pt;}
.ye5_c00256{bottom:156.003988pt;}
.ye6_c00256{bottom:156.550193pt;}
.ye7_c00256{bottom:156.696793pt;}
.ye8_c00256{bottom:156.958949pt;}
.ye9_c00256{bottom:157.288781pt;}
.yea_c00256{bottom:157.479521pt;}
.ycf_c00256{bottom:169.441333pt;}
.yd0_c00256{bottom:169.671761pt;}
.yd1_c00256{bottom:169.877461pt;}
.yd2_c00256{bottom:170.439077pt;}
.yd3_c00256{bottom:170.639791pt;}
.yd4_c00256{bottom:171.152009pt;}
.yd5_c00256{bottom:171.399891pt;}
.yd6_c00256{bottom:171.624775pt;}
.yd7_c00256{bottom:171.864883pt;}
.yd8_c00256{bottom:172.429931pt;}
.yd9_c00256{bottom:173.269539pt;}
.yda_c00256{bottom:173.721331pt;}
.yc4_c00256{bottom:215.910288pt;}
.yc5_c00256{bottom:216.556795pt;}
.yc6_c00256{bottom:217.169289pt;}
.yc7_c00256{bottom:217.636599pt;}
.yc8_c00256{bottom:217.948133pt;}
.yc9_c00256{bottom:218.209068pt;}
.yca_c00256{bottom:218.531705pt;}
.ycb_c00256{bottom:219.152120pt;}
.ycc_c00256{bottom:219.455735pt;}
.ycd_c00256{bottom:219.648499pt;}
.yce_c00256{bottom:220.239771pt;}
.yba_c00256{bottom:234.948905pt;}
.ybb_c00256{bottom:235.304381pt;}
.ybc_c00256{bottom:236.154388pt;}
.ybd_c00256{bottom:236.436971pt;}
.ybe_c00256{bottom:237.178767pt;}
.ybf_c00256{bottom:237.453972pt;}
.yc0_c00256{bottom:238.255989pt;}
.yc1_c00256{bottom:238.538719pt;}
.yc2_c00256{bottom:239.444063pt;}
.yc3_c00256{bottom:239.678715pt;}
.yaf_c00256{bottom:256.550583pt;}
.yb0_c00256{bottom:257.003996pt;}
.yb1_c00256{bottom:257.221305pt;}
.yb2_c00256{bottom:257.464512pt;}
.yb3_c00256{bottom:257.680163pt;}
.yb4_c00256{bottom:258.052513pt;}
.yb5_c00256{bottom:258.270733pt;}
.yb6_c00256{bottom:258.467135pt;}
.yb7_c00256{bottom:259.166468pt;}
.yb8_c00256{bottom:259.366391pt;}
.yb9_c00256{bottom:259.804252pt;}
.ya3_c00256{bottom:276.951925pt;}
.ya4_c00256{bottom:277.323821pt;}
.ya5_c00256{bottom:277.678673pt;}
.ya6_c00256{bottom:277.885757pt;}
.ya7_c00256{bottom:278.581540pt;}
.ya8_c00256{bottom:278.865075pt;}
.ya9_c00256{bottom:279.151983pt;}
.yaa_c00256{bottom:279.494792pt;}
.yab_c00256{bottom:280.291463pt;}
.yac_c00256{bottom:280.485053pt;}
.yad_c00256{bottom:280.689072pt;}
.yae_c00256{bottom:280.923748pt;}
.y98_c00256{bottom:296.633296pt;}
.y99_c00256{bottom:297.237959pt;}
.y9a_c00256{bottom:297.955907pt;}
.y9b_c00256{bottom:298.119660pt;}
.y9c_c00256{bottom:298.742656pt;}
.y9d_c00256{bottom:299.241909pt;}
.y9e_c00256{bottom:299.790883pt;}
.y9f_c00256{bottom:299.951879pt;}
.ya0_c00256{bottom:300.163123pt;}
.ya1_c00256{bottom:300.736032pt;}
.ya2_c00256{bottom:300.965756pt;}
.y90_c00256{bottom:317.033012pt;}
.y91_c00256{bottom:317.933708pt;}
.y92_c00256{bottom:318.299884pt;}
.y93_c00256{bottom:318.835799pt;}
.y94_c00256{bottom:319.459048pt;}
.y95_c00256{bottom:319.743155pt;}
.y96_c00256{bottom:320.574221pt;}
.y97_c00256{bottom:321.126828pt;}
.y84_c00256{bottom:338.153553pt;}
.y85_c00256{bottom:338.395512pt;}
.y86_c00256{bottom:338.559019pt;}
.y87_c00256{bottom:338.856145pt;}
.y88_c00256{bottom:339.184625pt;}
.y89_c00256{bottom:339.382231pt;}
.y8a_c00256{bottom:339.761080pt;}
.y8b_c00256{bottom:340.350139pt;}
.y8c_c00256{bottom:340.609293pt;}
.y8d_c00256{bottom:340.772140pt;}
.y8e_c00256{bottom:341.198455pt;}
.y8f_c00256{bottom:341.373391pt;}
.y79_c00256{bottom:358.075559pt;}
.y7a_c00256{bottom:358.406145pt;}
.y7b_c00256{bottom:358.537529pt;}
.y7c_c00256{bottom:358.898725pt;}
.y7d_c00256{bottom:359.232157pt;}
.y7e_c00256{bottom:359.427268pt;}
.y7f_c00256{bottom:360.277289pt;}
.y80_c00256{bottom:360.871113pt;}
.y81_c00256{bottom:361.192973pt;}
.y82_c00256{bottom:361.417945pt;}
.y83_c00256{bottom:362.022608pt;}
.y6e_c00256{bottom:378.716325pt;}
.y6f_c00256{bottom:379.122316pt;}
.y70_c00256{bottom:379.629148pt;}
.y71_c00256{bottom:379.838767pt;}
.y72_c00256{bottom:380.171993pt;}
.y73_c00256{bottom:380.346961pt;}
.y74_c00256{bottom:380.748507pt;}
.y75_c00256{bottom:381.210991pt;}
.y76_c00256{bottom:381.984184pt;}
.y77_c00256{bottom:382.139583pt;}
.y78_c00256{bottom:382.274208pt;}
.y64_c00256{bottom:399.116408pt;}
.y65_c00256{bottom:399.575256pt;}
.y66_c00256{bottom:399.923419pt;}
.y67_c00256{bottom:400.090563pt;}
.y68_c00256{bottom:400.775271pt;}
.y69_c00256{bottom:401.038989pt;}
.y6a_c00256{bottom:401.279136pt;}
.y6b_c00256{bottom:401.858087pt;}
.y6c_c00256{bottom:402.571573pt;}
.y6d_c00256{bottom:403.246015pt;}
.y59_c00256{bottom:419.279031pt;}
.y5a_c00256{bottom:419.705853pt;}
.y5b_c00256{bottom:420.246495pt;}
.y5c_c00256{bottom:420.371781pt;}
.y5d_c00256{bottom:421.223800pt;}
.y5e_c00256{bottom:421.692347pt;}
.y5f_c00256{bottom:422.066345pt;}
.y60_c00256{bottom:422.584183pt;}
.y61_c00256{bottom:423.195116pt;}
.y62_c00256{bottom:423.909880pt;}
.y63_c00256{bottom:424.229572pt;}
.y4c_c00256{bottom:439.440149pt;}
.y4d_c00256{bottom:439.874760pt;}
.y4e_c00256{bottom:440.194027pt;}
.y4f_c00256{bottom:440.779837pt;}
.y50_c00256{bottom:441.038785pt;}
.y51_c00256{bottom:441.509943pt;}
.y52_c00256{bottom:442.207504pt;}
.y53_c00256{bottom:442.559460pt;}
.y54_c00256{bottom:443.023167pt;}
.y55_c00256{bottom:443.273784pt;}
.y56_c00256{bottom:443.691705pt;}
.y57_c00256{bottom:444.006264pt;}
.y58_c00256{bottom:444.394605pt;}
.y42_c00256{bottom:460.081333pt;}
.y43_c00256{bottom:461.020616pt;}
.y44_c00256{bottom:461.345747pt;}
.y45_c00256{bottom:462.042780pt;}
.y46_c00256{bottom:462.391275pt;}
.y47_c00256{bottom:462.602548pt;}
.y48_c00256{bottom:463.138527pt;}
.y49_c00256{bottom:463.455048pt;}
.y4a_c00256{bottom:463.904171pt;}
.y4b_c00256{bottom:464.104855pt;}
.y36_c00256{bottom:480.480155pt;}
.y37_c00256{bottom:480.762521pt;}
.y38_c00256{bottom:481.082192pt;}
.y39_c00256{bottom:481.522340pt;}
.y3a_c00256{bottom:481.804117pt;}
.y3b_c00256{bottom:482.201431pt;}
.y3c_c00256{bottom:482.892273pt;}
.y3d_c00256{bottom:483.335940pt;}
.y3e_c00256{bottom:483.615965pt;}
.y3f_c00256{bottom:484.087611pt;}
.y40_c00256{bottom:484.811008pt;}
.y41_c00256{bottom:485.392711pt;}
.y2d_c00256{bottom:500.162667pt;}
.y2e_c00256{bottom:500.579256pt;}
.y2f_c00256{bottom:500.820241pt;}
.y30_c00256{bottom:501.569700pt;}
.y31_c00256{bottom:502.016068pt;}
.y32_c00256{bottom:502.822900pt;}
.y33_c00256{bottom:503.646337pt;}
.y34_c00256{bottom:504.208301pt;}
.y35_c00256{bottom:505.519516pt;}
.y23_c00256{bottom:560.156320pt;}
.y24_c00256{bottom:560.716875pt;}
.y25_c00256{bottom:560.905579pt;}
.y26_c00256{bottom:561.279840pt;}
.y27_c00256{bottom:562.057131pt;}
.y28_c00256{bottom:562.917920pt;}
.y29_c00256{bottom:564.581077pt;}
.y2a_c00256{bottom:565.042571pt;}
.y2b_c00256{bottom:565.656597pt;}
.y2c_c00256{bottom:565.869451pt;}
.y18_c00256{bottom:579.846667pt;}
.y19_c00256{bottom:580.399947pt;}
.y1a_c00256{bottom:580.783904pt;}
.y1b_c00256{bottom:581.192373pt;}
.y1c_c00256{bottom:582.163637pt;}
.y1d_c00256{bottom:582.832352pt;}
.y1e_c00256{bottom:583.054837pt;}
.y1f_c00256{bottom:583.929077pt;}
.y20_c00256{bottom:584.322357pt;}
.y21_c00256{bottom:585.204341pt;}
.y22_c00256{bottom:586.333536pt;}
.y14_c00256{bottom:619.924000pt;}
.y15_c00256{bottom:621.059680pt;}
.y16_c00256{bottom:621.424256pt;}
.y17_c00256{bottom:621.778512pt;}
.yc_c00256{bottom:662.142125pt;}
.yd_c00256{bottom:662.866404pt;}
.ye_c00256{bottom:663.674965pt;}
.yf_c00256{bottom:664.062332pt;}
.y10_c00256{bottom:665.516832pt;}
.y11_c00256{bottom:665.877927pt;}
.y12_c00256{bottom:666.222621pt;}
.y13_c00256{bottom:667.164065pt;}
.y5_c00256{bottom:703.670343pt;}
.y6_c00256{bottom:704.734471pt;}
.y7_c00256{bottom:705.951672pt;}
.y8_c00256{bottom:707.072479pt;}
.y9_c00256{bottom:708.028467pt;}
.ya_c00256{bottom:709.439799pt;}
.yb_c00256{bottom:709.914617pt;}
.y4_c00256{bottom:752.404011pt;}
.y1_c00256{bottom:803.289333pt;}
.y2_c00256{bottom:809.037147pt;}
.y3_c00256{bottom:810.608831pt;}
.h10_c00256{height:43.869321pt;}
.h11_c00256{height:45.736100pt;}
.h12_c00256{height:46.669490pt;}
.h6_c00256{height:54.140262pt;}
.hf_c00256{height:55.069998pt;}
.h7_c00256{height:56.007168pt;}
.ha_c00256{height:59.736947pt;}
.h13_c00256{height:60.666667pt;}
.hb_c00256{height:60.670337pt;}
.hc_c00256{height:61.603727pt;}
.h4_c00256{height:61.608901pt;}
.he_c00256{height:62.537116pt;}
.h8_c00256{height:62.538617pt;}
.hd_c00256{height:63.470506pt;}
.h9_c00256{height:63.472029pt;}
.h5_c00256{height:92.406653pt;}
.h14_c00256{height:104.537776pt;}
.h3_c00256{height:127.885142pt;}
.h2_c00256{height:128.818610pt;}
.h1_c00256{height:893.333333pt;}
.h0_c00256{height:893.466667pt;}
.w1_c00256{width:634.000000pt;}
.w0_c00256{width:634.266667pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:16.158667pt;}
.x84_c00256{left:41.976712pt;}
.x97_c00256{left:51.395331pt;}
.x9e_c00256{left:62.686820pt;}
.x98_c00256{left:65.884341pt;}
.x5_c00256{left:67.494532pt;}
.x17_c00256{left:68.578667pt;}
.x2b_c00256{left:69.996000pt;}
.x42_c00256{left:70.935084pt;}
.x6d_c00256{left:72.117543pt;}
.x7e_c00256{left:73.046881pt;}
.x85_c00256{left:74.292712pt;}
.x90_c00256{left:86.020000pt;}
.xc_c00256{left:92.822292pt;}
.x33_c00256{left:93.728169pt;}
.x4_c00256{left:99.479540pt;}
.x2c_c00256{left:102.041333pt;}
.x18_c00256{left:103.158667pt;}
.x22_c00256{left:105.948896pt;}
.x43_c00256{left:107.172021pt;}
.x77_c00256{left:109.541485pt;}
.x5f_c00256{left:113.410044pt;}
.x54_c00256{left:116.752421pt;}
.x23_c00256{left:118.493088pt;}
.x2d_c00256{left:120.578667pt;}
.x66_c00256{left:122.493547pt;}
.x91_c00256{left:125.668000pt;}
.x19_c00256{left:127.156000pt;}
.x99_c00256{left:128.750948pt;}
.x7f_c00256{left:129.662077pt;}
.x89_c00256{left:132.119240pt;}
.x6_c00256{left:134.012999pt;}
.x24_c00256{left:143.468160pt;}
.x78_c00256{left:145.073881pt;}
.x60_c00256{left:146.246044pt;}
.xd_c00256{left:148.528744pt;}
.x4d_c00256{left:151.247905pt;}
.x1a_c00256{left:152.685333pt;}
.x3b_c00256{left:155.841333pt;}
.x34_c00256{left:157.099668pt;}
.x13_c00256{left:159.020000pt;}
.x4e_c00256{left:161.667788pt;}
.x79_c00256{left:165.718101pt;}
.x55_c00256{left:168.326327pt;}
.x5b_c00256{left:173.150625pt;}
.x61_c00256{left:176.558044pt;}
.x2e_c00256{left:178.229333pt;}
.x35_c00256{left:180.621313pt;}
.x44_c00256{left:182.541852pt;}
.x3c_c00256{left:185.398667pt;}
.x80_c00256{left:187.286651pt;}
.x72_c00256{left:193.090001pt;}
.x62_c00256{left:194.295377pt;}
.x25_c00256{left:195.299659pt;}
.x5c_c00256{left:196.449805pt;}
.x6e_c00256{left:198.804269pt;}
.x67_c00256{left:200.702795pt;}
.x45_c00256{left:204.142951pt;}
.x73_c00256{left:207.976668pt;}
.x7_c00256{left:210.084957pt;}
.x1b_c00256{left:213.389333pt;}
.x68_c00256{left:225.455616pt;}
.x8a_c00256{left:230.283240pt;}
.x4f_c00256{left:232.699011pt;}
.x7a_c00256{left:235.274864pt;}
.x56_c00256{left:236.755075pt;}
.x9a_c00256{left:239.397847pt;}
.xe_c00256{left:240.452311pt;}
.x92_c00256{left:241.536000pt;}
.x46_c00256{left:243.459859pt;}
.x86_c00256{left:244.691379pt;}
.x3d_c00256{left:248.765333pt;}
.x26_c00256{left:252.683243pt;}
.x14_c00256{left:253.660000pt;}
.x1c_c00256{left:255.184000pt;}
.x8b_c00256{left:258.604573pt;}
.x81_c00256{left:260.743737pt;}
.x57_c00256{left:263.154035pt;}
.x74_c00256{left:264.612668pt;}
.x1d_c00256{left:269.089333pt;}
.x36_c00256{left:271.301159pt;}
.x69_c00256{left:272.746504pt;}
.x2f_c00256{left:274.629333pt;}
.x8_c00256{left:280.172825pt;}
.x8c_c00256{left:282.325907pt;}
.x15_c00256{left:284.041333pt;}
.x58_c00256{left:287.167632pt;}
.x82_c00256{left:288.097980pt;}
.x7b_c00256{left:292.224813pt;}
.x5d_c00256{left:297.458687pt;}
.x3e_c00256{left:299.653333pt;}
.x47_c00256{left:301.540547pt;}
.x50_c00256{left:302.990248pt;}
.x93_c00256{left:306.342667pt;}
.x37_c00256{left:308.301644pt;}
.x75_c00256{left:309.999335pt;}
.x8d_c00256{left:311.656573pt;}
.x83_c00256{left:312.620120pt;}
.x16_c00256{left:313.562667pt;}
.x6f_c00256{left:314.729545pt;}
.x1e_c00256{left:323.729333pt;}
.x63_c00256{left:325.554044pt;}
.x7c_c00256{left:326.541195pt;}
.x38_c00256{left:331.585939pt;}
.x30_c00256{left:337.970667pt;}
.x9_c00256{left:339.937845pt;}
.x70_c00256{left:343.103187pt;}
.x59_c00256{left:345.012263pt;}
.x51_c00256{left:346.187112pt;}
.x1f_c00256{left:348.309333pt;}
.xf_c00256{left:352.293237pt;}
.x2_c00256{left:354.265333pt;}
.x94_c00256{left:357.710667pt;}
.x76_c00256{left:359.906001pt;}
.x27_c00256{left:363.549013pt;}
.x87_c00256{left:368.323379pt;}
.x48_c00256{left:369.509132pt;}
.x39_c00256{left:370.943792pt;}
.x64_c00256{left:375.266044pt;}
.x3f_c00256{left:377.153333pt;}
.x6a_c00256{left:378.830009pt;}
.x10_c00256{left:380.045785pt;}
.x31_c00256{left:381.198667pt;}
.x9b_c00256{left:383.915997pt;}
.x49_c00256{left:390.352897pt;}
.x28_c00256{left:394.309504pt;}
.x8e_c00256{left:395.659240pt;}
.x52_c00256{left:397.119888pt;}
.x6b_c00256{left:399.210684pt;}
.x20_c00256{left:403.433333pt;}
.x11_c00256{left:406.598265pt;}
.x9c_c00256{left:409.294107pt;}
.x8f_c00256{left:413.183240pt;}
.x5a_c00256{left:416.299707pt;}
.x40_c00256{left:417.982667pt;}
.x9d_c00256{left:423.967117pt;}
.x4a_c00256{left:425.193849pt;}
.x71_c00256{left:426.170763pt;}
.xa_c00256{left:428.135341pt;}
.x65_c00256{left:430.235377pt;}
.x3a_c00256{left:431.205905pt;}
.x95_c00256{left:434.038667pt;}
.x29_c00256{left:435.270165pt;}
.x41_c00256{left:436.226667pt;}
.x9f_c00256{left:444.861083pt;}
.x3_c00256{left:446.717333pt;}
.x2a_c00256{left:449.490400pt;}
.x4b_c00256{left:451.365556pt;}
.x6c_c00256{left:452.513777pt;}
.x53_c00256{left:456.643228pt;}
.xb_c00256{left:457.791840pt;}
.xa0_c00256{left:461.908701pt;}
.x5e_c00256{left:466.950412pt;}
.x7d_c00256{left:469.538779pt;}
.x88_c00256{left:471.959379pt;}
.x21_c00256{left:474.008000pt;}
.x96_c00256{left:475.110667pt;}
.x12_c00256{left:479.001851pt;}
.x32_c00256{left:482.061333pt;}
.x4c_c00256{left:483.759871pt;}
.xa1_c00256{left:484.818869pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m160_c00257{transform:matrix(0.005819,-0.000099,0.004249,0.249964,0,0);-ms-transform:matrix(0.005819,-0.000099,0.004249,0.249964,0,0);-webkit-transform:matrix(0.005819,-0.000099,0.004249,0.249964,0,0);}
.m8e_c00257{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);}
.m131_c00257{transform:matrix(0.018918,0.000284,-0.003750,0.249972,0,0);-ms-transform:matrix(0.018918,0.000284,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.018918,0.000284,-0.003750,0.249972,0,0);}
.m129_c00257{transform:matrix(0.029865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029865,0.000000,0.000000,0.250000,0,0);}
.m12b_c00257{transform:matrix(0.039965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039965,0.000000,0.000000,0.250000,0,0);}
.m10a_c00257{transform:matrix(0.060390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060390,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.m130_c00257{transform:matrix(0.102408,0.001536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.102408,0.001536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.102408,0.001536,-0.003750,0.249972,0,0);}
.mcd_c00257{transform:matrix(0.123820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123820,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{transform:matrix(0.124620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124620,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);}
.me3_c00257{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);}
.m35_c00257{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);}
.m9f_c00257{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);}
.m4b_c00257{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);}
.m28_c00257{transform:matrix(0.156185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156185,0.000000,0.000000,0.250000,0,0);}
.m183_c00257{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);}
.m6_c00257{transform:matrix(0.157635,-0.001734,0.002750,0.249985,0,0);-ms-transform:matrix(0.157635,-0.001734,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157635,-0.001734,0.002750,0.249985,0,0);}
.m53_c00257{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);}
.m9a_c00257{transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);}
.mf2_c00257{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m139_c00257{transform:matrix(0.159697,0.002395,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159697,0.002395,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159697,0.002395,-0.003750,0.249972,0,0);}
.m74_c00257{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);}
.mca_c00257{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);}
.me7_c00257{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);}
.m32_c00257{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);}
.m89_c00257{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);}
.m2b_c00257{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);}
.m57_c00257{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);}
.m124_c00257{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);}
.m34_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);}
.mea_c00257{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);}
.m15c_c00257{transform:matrix(0.167741,-0.002852,0.004249,0.249964,0,0);-ms-transform:matrix(0.167741,-0.002852,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167741,-0.002852,0.004249,0.249964,0,0);}
.m54_c00257{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);}
.mb7_c00257{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);}
.mcf_c00257{transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{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);}
.m83_c00257{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);}
.m2e_c00257{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);}
.m4c_c00257{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);}
.m163_c00257{transform:matrix(0.171590,-0.002917,0.004249,0.249964,0,0);-ms-transform:matrix(0.171590,-0.002917,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171590,-0.002917,0.004249,0.249964,0,0);}
.m70_c00257{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);}
.m75_c00257{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);}
.m85_c00257{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);}
.m48_c00257{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);}
.m68_c00257{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);}
.m24_c00257{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);}
.m50_c00257{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);}
.m147_c00257{transform:matrix(0.173615,-0.002951,0.004249,0.249964,0,0);-ms-transform:matrix(0.173615,-0.002951,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173615,-0.002951,0.004249,0.249964,0,0);}
.meb_c00257{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);}
.mc2_c00257{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);}
.maf_c00257{transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174435,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{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);}
.ma7_c00257{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);}
.m39_c00257{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);}
.mb3_c00257{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);}
.m1f_c00257{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);}
.m7c_c00257{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);}
.m5f_c00257{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);}
.m66_c00257{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);}
.m6f_c00257{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);}
.m77_c00257{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);}
.m3a_c00257{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);}
.m46_c00257{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);}
.me2_c00257{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);}
.m3d_c00257{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);}
.m84_c00257{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);}
.m15d_c00257{transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);-ms-transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);}
.m4d_c00257{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);}
.m8d_c00257{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);}
.m6b_c00257{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);}
.m115_c00257{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);}
.m111_c00257{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);}
.m127_c00257{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);}
.m113_c00257{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);}
.m93_c00257{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);}
.mb9_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);}
.m174_c00257{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);}
.m29_c00257{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);}
.m173_c00257{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);}
.mf7_c00257{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);}
.mf5_c00257{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);}
.m40_c00257{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);}
.me_c00257{transform:matrix(0.183074,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183074,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183074,-0.002014,0.002750,0.249985,0,0);}
.m8c_c00257{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);}
.m58_c00257{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);}
.m7b_c00257{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);}
.m3e_c00257{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);}
.me4_c00257{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);}
.m179_c00257{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);}
.m164_c00257{transform:matrix(0.186843,-0.003176,0.004249,0.249964,0,0);-ms-transform:matrix(0.186843,-0.003176,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186843,-0.003176,0.004249,0.249964,0,0);}
.m55_c00257{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);}
.m15b_c00257{transform:matrix(0.187048,-0.003180,0.004249,0.249964,0,0);-ms-transform:matrix(0.187048,-0.003180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187048,-0.003180,0.004249,0.249964,0,0);}
.m45_c00257{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);}
.m4e_c00257{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);}
.m36_c00257{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);}
.m21_c00257{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);}
.m17a_c00257{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);}
.m56_c00257{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);}
.m126_c00257{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);}
.m1e_c00257{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);}
.mc9_c00257{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);}
.m92_c00257{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);}
.ma6_c00257{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);}
.m13e_c00257{transform:matrix(0.189774,0.002847,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189774,0.002847,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189774,0.002847,-0.003750,0.249972,0,0);}
.m110_c00257{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);}
.m12f_c00257{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);}
.m7a_c00257{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);}
.m7f_c00257{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);}
.m11a_c00257{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);}
.m9c_c00257{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);}
.md4_c00257{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);}
.mc0_c00257{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);}
.m88_c00257{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);}
.mc8_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);}
.m60_c00257{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);}
.m7d_c00257{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);}
.m13a_c00257{transform:matrix(0.191923,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191923,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191923,0.002879,-0.003750,0.249972,0,0);}
.mbd_c00257{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);}
.mdc_c00257{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);}
.m13c_c00257{transform:matrix(0.192268,0.002884,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192268,0.002884,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192268,0.002884,-0.003750,0.249972,0,0);}
.m81_c00257{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);}
.m150_c00257{transform:matrix(0.192627,-0.003275,0.004249,0.249964,0,0);-ms-transform:matrix(0.192627,-0.003275,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192627,-0.003275,0.004249,0.249964,0,0);}
.mb2_c00257{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);}
.mf6_c00257{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);}
.m13d_c00257{transform:matrix(0.193023,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193023,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193023,0.002895,-0.003750,0.249972,0,0);}
.m73_c00257{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);}
.m162_c00257{transform:matrix(0.193362,-0.003287,0.004249,0.249964,0,0);-ms-transform:matrix(0.193362,-0.003287,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193362,-0.003287,0.004249,0.249964,0,0);}
.mee_c00257{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);}
.m27_c00257{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);}
.m151_c00257{transform:matrix(0.194057,-0.003299,0.004249,0.249964,0,0);-ms-transform:matrix(0.194057,-0.003299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194057,-0.003299,0.004249,0.249964,0,0);}
.mbc_c00257{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.mdf_c00257{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);}
.m125_c00257{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);}
.m43_c00257{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);}
.ma3_c00257{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);}
.me0_c00257{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);}
.m47_c00257{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);}
.m1c_c00257{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);}
.m156_c00257{transform:matrix(0.195657,-0.003326,0.004249,0.249964,0,0);-ms-transform:matrix(0.195657,-0.003326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195657,-0.003326,0.004249,0.249964,0,0);}
.m41_c00257{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);}
.m86_c00257{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);}
.m11c_c00257{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);}
.m8f_c00257{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);}
.m49_c00257{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);}
.m116_c00257{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);}
.m15f_c00257{transform:matrix(0.197571,-0.003359,0.004249,0.249964,0,0);-ms-transform:matrix(0.197571,-0.003359,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197571,-0.003359,0.004249,0.249964,0,0);}
.mba_c00257{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);}
.m33_c00257{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);}
.m99_c00257{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);}
.m100_c00257{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);}
.m23_c00257{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);}
.m64_c00257{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);}
.me9_c00257{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);}
.m69_c00257{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);}
.mcb_c00257{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);}
.m67_c00257{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);}
.mad_c00257{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);}
.mbf_c00257{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);}
.m120_c00257{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);}
.m42_c00257{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);}
.m5e_c00257{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);}
.m8a_c00257{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);}
.ma2_c00257{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.mf4_c00257{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);}
.m52_c00257{transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{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);}
.m25_c00257{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);}
.ma9_c00257{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);}
.m16b_c00257{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);}
.m15e_c00257{transform:matrix(0.202596,-0.003444,0.004249,0.249964,0,0);-ms-transform:matrix(0.202596,-0.003444,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202596,-0.003444,0.004249,0.249964,0,0);}
.mf1_c00257{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);}
.m3c_c00257{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);}
.m7e_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);}
.m172_c00257{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);}
.me1_c00257{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);}
.m22_c00257{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);}
.md8_c00257{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);}
.m101_c00257{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);}
.m2c_c00257{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);}
.m112_c00257{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);}
.m12a_c00257{transform:matrix(0.206035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206035,0.000000,0.000000,0.250000,0,0);}
.mef_c00257{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);}
.mfa_c00257{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);}
.m169_c00257{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);}
.m87_c00257{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);}
.m16e_c00257{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);}
.m44_c00257{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);}
.m149_c00257{transform:matrix(0.207860,-0.003534,0.004249,0.249964,0,0);-ms-transform:matrix(0.207860,-0.003534,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207860,-0.003534,0.004249,0.249964,0,0);}
.m17e_c00257{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);}
.m11e_c00257{transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{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);}
.m16a_c00257{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);}
.m2a_c00257{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);}
.m5b_c00257{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);}
.m152_c00257{transform:matrix(0.209030,-0.003554,0.004249,0.249964,0,0);-ms-transform:matrix(0.209030,-0.003554,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209030,-0.003554,0.004249,0.249964,0,0);}
.m1d_c00257{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);}
.m78_c00257{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);}
.mc6_c00257{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);}
.m9d_c00257{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m157_c00257{transform:matrix(0.211424,-0.003594,0.004249,0.249964,0,0);-ms-transform:matrix(0.211424,-0.003594,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211424,-0.003594,0.004249,0.249964,0,0);}
.m166_c00257{transform:matrix(0.211554,-0.003596,0.004249,0.249964,0,0);-ms-transform:matrix(0.211554,-0.003596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211554,-0.003596,0.004249,0.249964,0,0);}
.m13f_c00257{transform:matrix(0.211821,0.003177,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211821,0.003177,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211821,0.003177,-0.003750,0.249972,0,0);}
.m178_c00257{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);}
.m0_c00257{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_c00257{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);}
.m175_c00257{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);}
.ma8_c00257{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);}
.mc3_c00257{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);}
.m94_c00257{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);}
.m11b_c00257{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);}
.m161_c00257{transform:matrix(0.215284,-0.003660,0.004249,0.249964,0,0);-ms-transform:matrix(0.215284,-0.003660,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215284,-0.003660,0.004249,0.249964,0,0);}
.m15a_c00257{transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);-ms-transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);}
.m76_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);}
.mab_c00257{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);}
.m1a_c00257{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);}
.m16f_c00257{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);}
.m9e_c00257{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);}
.m79_c00257{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);}
.ma4_c00257{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);}
.maa_c00257{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);}
.mbb_c00257{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);}
.ma5_c00257{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);}
.m16c_c00257{transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);}
.m135_c00257{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);}
.m26_c00257{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);}
.m10c_c00257{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);}
.mb4_c00257{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);}
.m104_c00257{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);}
.mc7_c00257{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);}
.mf8_c00257{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_c00257{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);}
.me8_c00257{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);}
.mbe_c00257{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);}
.m103_c00257{transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226315,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{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);}
.m114_c00257{transform:matrix(0.227880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227880,0.000000,0.000000,0.250000,0,0);}
.md7_c00257{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);}
.m154_c00257{transform:matrix(0.228507,-0.003885,0.004249,0.249964,0,0);-ms-transform:matrix(0.228507,-0.003885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228507,-0.003885,0.004249,0.249964,0,0);}
.mf9_c00257{transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);}
.md5_c00257{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);}
.m128_c00257{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);}
.ma0_c00257{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);}
.m71_c00257{transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);}
.m14a_c00257{transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);-ms-transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);}
.m119_c00257{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);}
.md2_c00257{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);}
.m171_c00257{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);}
.m121_c00257{transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233285,0.000000,0.000000,0.250000,0,0);}
.mfb_c00257{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);}
.m122_c00257{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);}
.m170_c00257{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m159_c00257{transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);-ms-transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234841,-0.003992,0.004249,0.249964,0,0);}
.ma1_c00257{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);}
.m6d_c00257{transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);}
.md6_c00257{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);}
.m176_c00257{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);}
.m80_c00257{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);}
.m144_c00257{transform:matrix(0.238820,-0.004060,0.004249,0.249964,0,0);-ms-transform:matrix(0.238820,-0.004060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238820,-0.004060,0.004249,0.249964,0,0);}
.m142_c00257{transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);-ms-transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239190,-0.004066,0.004249,0.249964,0,0);}
.m167_c00257{transform:matrix(0.239310,-0.004068,0.004249,0.249964,0,0);-ms-transform:matrix(0.239310,-0.004068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239310,-0.004068,0.004249,0.249964,0,0);}
.m10b_c00257{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);}
.md1_c00257{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);}
.m136_c00257{transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);}
.m63_c00257{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);}
.m11d_c00257{transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);}
.m105_c00257{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.me6_c00257{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);}
.m3b_c00257{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);}
.mc_c00257{transform:matrix(0.243205,-0.002675,0.002750,0.249985,0,0);-ms-transform:matrix(0.243205,-0.002675,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243205,-0.002675,0.002750,0.249985,0,0);}
.mc1_c00257{transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);}
.mfc_c00257{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);}
.mda_c00257{transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.244855,-0.002693,0.002750,0.249985,0,0);-ms-transform:matrix(0.244855,-0.002693,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244855,-0.002693,0.002750,0.249985,0,0);}
.mc5_c00257{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);}
.m14f_c00257{transform:matrix(0.245285,-0.004170,0.004249,0.249964,0,0);-ms-transform:matrix(0.245285,-0.004170,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245285,-0.004170,0.004249,0.249964,0,0);}
.m13b_c00257{transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);}
.m17d_c00257{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);}
.m4a_c00257{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);}
.md3_c00257{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);}
.m82_c00257{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.m138_c00257{transform:matrix(0.248387,0.003726,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248387,0.003726,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248387,0.003726,-0.003750,0.249972,0,0);}
.m11f_c00257{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);}
.med_c00257{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);}
.m90_c00257{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00257{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);}
.m2f_c00257{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);}
.mf0_c00257{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m117_c00257{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m106_c00257{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);}
.mde_c00257{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m10e_c00257{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);}
.m143_c00257{transform:matrix(0.252579,-0.004294,0.004249,0.249964,0,0);-ms-transform:matrix(0.252579,-0.004294,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252579,-0.004294,0.004249,0.249964,0,0);}
.m9b_c00257{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);}
.m10f_c00257{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);}
.m8b_c00257{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);}
.m51_c00257{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);}
.m12_c00257{transform:matrix(0.255745,-0.002813,0.002750,0.249985,0,0);-ms-transform:matrix(0.255745,-0.002813,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255745,-0.002813,0.002750,0.249985,0,0);}
.mb8_c00257{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);}
.m62_c00257{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);}
.mdb_c00257{transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);}
.mac_c00257{transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258680,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);}
.m10d_c00257{transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258830,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259355,0.000000,0.000000,0.250000,0,0);}
.mfe_c00257{transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);}
.m165_c00257{transform:matrix(0.267841,-0.004553,0.004249,0.249964,0,0);-ms-transform:matrix(0.267841,-0.004553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267841,-0.004553,0.004249,0.249964,0,0);}
.m72_c00257{transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);}
.mb1_c00257{transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272560,0.000000,0.000000,0.250000,0,0);}
.mdd_c00257{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);}
.m132_c00257{transform:matrix(0.272669,0.004090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272669,0.004090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272669,0.004090,-0.003750,0.249972,0,0);}
.m177_c00257{transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);}
.m108_c00257{transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);}
.mf3_c00257{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);}
.m1_c00257{transform:matrix(0.293707,-0.003231,0.002750,0.249985,0,0);-ms-transform:matrix(0.293707,-0.003231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.293707,-0.003231,0.002750,0.249985,0,0);}
.md0_c00257{transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294070,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.295022,-0.003245,0.002750,0.249985,0,0);-ms-transform:matrix(0.295022,-0.003245,0.002750,0.249985,0,0);-webkit-transform:matrix(0.295022,-0.003245,0.002750,0.249985,0,0);}
.m133_c00257{transform:matrix(0.295527,0.004433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295527,0.004433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295527,0.004433,-0.003750,0.249972,0,0);}
.m91_c00257{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);}
.m14e_c00257{transform:matrix(0.295772,-0.005028,0.004249,0.249964,0,0);-ms-transform:matrix(0.295772,-0.005028,0.004249,0.249964,0,0);-webkit-transform:matrix(0.295772,-0.005028,0.004249,0.249964,0,0);}
.m134_c00257{transform:matrix(0.297961,0.004469,-0.003750,0.249972,0,0);-ms-transform:matrix(0.297961,0.004469,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.297961,0.004469,-0.003750,0.249972,0,0);}
.mec_c00257{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);}
.m17b_c00257{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);}
.m12e_c00257{transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);}
.mfd_c00257{transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.302632,-0.003329,0.002750,0.249985,0,0);-ms-transform:matrix(0.302632,-0.003329,0.002750,0.249985,0,0);-webkit-transform:matrix(0.302632,-0.003329,0.002750,0.249985,0,0);}
.m6e_c00257{transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);}
.m109_c00257{transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{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);}
.m107_c00257{transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312475,0.000000,0.000000,0.250000,0,0);}
.m140_c00257{transform:matrix(0.312510,0.004688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.312510,0.004688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.312510,0.004688,-0.003750,0.249972,0,0);}
.m12c_c00257{transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316690,0.000000,0.000000,0.250000,0,0);}
.m148_c00257{transform:matrix(0.316794,-0.005386,0.004249,0.249964,0,0);-ms-transform:matrix(0.316794,-0.005386,0.004249,0.249964,0,0);-webkit-transform:matrix(0.316794,-0.005386,0.004249,0.249964,0,0);}
.m4_c00257{transform:matrix(0.319561,-0.003515,0.002750,0.249985,0,0);-ms-transform:matrix(0.319561,-0.003515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.319561,-0.003515,0.002750,0.249985,0,0);}
.md9_c00257{transform:matrix(0.322765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322765,0.000000,0.000000,0.250000,0,0);}
.m153_c00257{transform:matrix(0.323498,-0.005499,0.004249,0.249964,0,0);-ms-transform:matrix(0.323498,-0.005499,0.004249,0.249964,0,0);-webkit-transform:matrix(0.323498,-0.005499,0.004249,0.249964,0,0);}
.m5c_c00257{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);}
.mce_c00257{transform:matrix(0.332630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332630,0.000000,0.000000,0.250000,0,0);}
.m12d_c00257{transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336925,0.000000,0.000000,0.250000,0,0);}
.m145_c00257{transform:matrix(0.338816,-0.005760,0.004249,0.249964,0,0);-ms-transform:matrix(0.338816,-0.005760,0.004249,0.249964,0,0);-webkit-transform:matrix(0.338816,-0.005760,0.004249,0.249964,0,0);}
.m17c_c00257{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);}
.mb5_c00257{transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346860,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.348009,-0.003828,0.002750,0.249985,0,0);-ms-transform:matrix(0.348009,-0.003828,0.002750,0.249985,0,0);-webkit-transform:matrix(0.348009,-0.003828,0.002750,0.249985,0,0);}
.m14b_c00257{transform:matrix(0.351084,-0.005968,0.004249,0.249964,0,0);-ms-transform:matrix(0.351084,-0.005968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.351084,-0.005968,0.004249,0.249964,0,0);}
.m123_c00257{transform:matrix(0.353170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353170,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.357703,-0.003935,0.002750,0.249985,0,0);-ms-transform:matrix(0.357703,-0.003935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.357703,-0.003935,0.002750,0.249985,0,0);}
.ma_c00257{transform:matrix(0.360908,-0.003970,0.002750,0.249985,0,0);-ms-transform:matrix(0.360908,-0.003970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.360908,-0.003970,0.002750,0.249985,0,0);}
.m11_c00257{transform:matrix(0.361843,-0.003980,0.002750,0.249985,0,0);-ms-transform:matrix(0.361843,-0.003980,0.002750,0.249985,0,0);-webkit-transform:matrix(0.361843,-0.003980,0.002750,0.249985,0,0);}
.m146_c00257{transform:matrix(0.366112,-0.006224,0.004249,0.249964,0,0);-ms-transform:matrix(0.366112,-0.006224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.366112,-0.006224,0.004249,0.249964,0,0);}
.m6a_c00257{transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);}
.m137_c00257{transform:matrix(0.399615,0.005994,-0.003750,0.249972,0,0);-ms-transform:matrix(0.399615,0.005994,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.399615,0.005994,-0.003750,0.249972,0,0);}
.m102_c00257{transform:matrix(0.400955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400955,0.000000,0.000000,0.250000,0,0);}
.mcc_c00257{transform:matrix(0.405365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405365,0.000000,0.000000,0.250000,0,0);}
.m141_c00257{transform:matrix(0.406359,0.006095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.406359,0.006095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.406359,0.006095,-0.003750,0.249972,0,0);}
.m17_c00257{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);}
.m2_c00257{transform:matrix(0.410145,-0.004512,0.002750,0.249985,0,0);-ms-transform:matrix(0.410145,-0.004512,0.002750,0.249985,0,0);-webkit-transform:matrix(0.410145,-0.004512,0.002750,0.249985,0,0);}
.m182_c00257{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);}
.m30_c00257{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m168_c00257{transform:matrix(0.459414,-0.007810,0.004249,0.249964,0,0);-ms-transform:matrix(0.459414,-0.007810,0.004249,0.249964,0,0);-webkit-transform:matrix(0.459414,-0.007810,0.004249,0.249964,0,0);}
.m118_c00257{transform:matrix(0.460700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460700,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.464802,-0.005113,0.002750,0.249985,0,0);-ms-transform:matrix(0.464802,-0.005113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.464802,-0.005113,0.002750,0.249985,0,0);}
.m20_c00257{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);}
.m17f_c00257{transform:matrix(0.495655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495655,0.000000,0.000000,0.250000,0,0);}
.m16d_c00257{transform:matrix(0.516985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516985,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.520948,-0.005730,0.002750,0.249985,0,0);-ms-transform:matrix(0.520948,-0.005730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.520948,-0.005730,0.002750,0.249985,0,0);}
.m16_c00257{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.531535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531535,0.000000,0.000000,0.250000,0,0);}
.m158_c00257{transform:matrix(0.544276,-0.009253,0.004249,0.249964,0,0);-ms-transform:matrix(0.544276,-0.009253,0.004249,0.249964,0,0);-webkit-transform:matrix(0.544276,-0.009253,0.004249,0.249964,0,0);}
.m9_c00257{transform:matrix(0.558451,-0.006143,0.002750,0.249985,0,0);-ms-transform:matrix(0.558451,-0.006143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.558451,-0.006143,0.002750,0.249985,0,0);}
.mb_c00257{transform:matrix(0.558476,-0.006143,0.002750,0.249985,0,0);-ms-transform:matrix(0.558476,-0.006143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.558476,-0.006143,0.002750,0.249985,0,0);}
.m1b_c00257{transform:matrix(0.567645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567645,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.624745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624745,0.000000,0.000000,0.250000,0,0);}
.m155_c00257{transform:matrix(0.625155,-0.010628,0.004249,0.249964,0,0);-ms-transform:matrix(0.625155,-0.010628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.625155,-0.010628,0.004249,0.249964,0,0);}
.mff_c00257{transform:matrix(0.671300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671300,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.696765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696765,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.874840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874840,0.000000,0.000000,0.250000,0,0);}
.m180_c00257{transform:matrix(0.958110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958110,0.000000,0.000000,0.250000,0,0);}
.m14c_c00257{transform:matrix(1.009139,-0.017155,0.004249,0.249964,0,0);-ms-transform:matrix(1.009139,-0.017155,0.004249,0.249964,0,0);-webkit-transform:matrix(1.009139,-0.017155,0.004249,0.249964,0,0);}
.m14d_c00257{transform:matrix(1.033446,-0.017569,0.004249,0.249964,0,0);-ms-transform:matrix(1.033446,-0.017569,0.004249,0.249964,0,0);-webkit-transform:matrix(1.033446,-0.017569,0.004249,0.249964,0,0);}
.m181_c00257{transform:matrix(1.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205565,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(1.530805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.530805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.530805,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(2.341980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.341980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.341980,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;}
.fs3_c00257{font-size:22.050000px;}
.fs1a_c00257{font-size:29.400000px;}
.fs11_c00257{font-size:30.453425px;}
.fs19_c00257{font-size:32.550000px;}
.fs1_c00257{font-size:49.352986px;}
.fs16_c00257{font-size:50.407282px;}
.fsf_c00257{font-size:51.450000px;}
.fs10_c00257{font-size:51.455788px;}
.fs14_c00257{font-size:51.457434px;}
.fs18_c00257{font-size:52.500000px;}
.fs15_c00257{font-size:52.507586px;}
.fs0_c00257{font-size:53.550000px;}
.fs12_c00257{font-size:53.556024px;}
.fs13_c00257{font-size:53.557737px;}
.fs17_c00257{font-size:54.600000px;}
.fsb_c00257{font-size:60.900000px;}
.fsd_c00257{font-size:64.050000px;}
.fsc_c00257{font-size:65.100000px;}
.fs9_c00257{font-size:66.150000px;}
.fsa_c00257{font-size:67.200000px;}
.fs4_c00257{font-size:68.250000px;}
.fs8_c00257{font-size:69.300000px;}
.fs7_c00257{font-size:70.350000px;}
.fs5_c00257{font-size:71.400000px;}
.fs6_c00257{font-size:72.450000px;}
.fse_c00257{font-size:74.550000px;}
.fs2_c00257{font-size:174.310545px;}
.y0_c00257{bottom:0.000000px;}
.ydf_c00257{bottom:102.451500px;}
.yde_c00257{bottom:105.877500px;}
.yd8_c00257{bottom:150.135504px;}
.yd7_c00257{bottom:150.135855px;}
.yd5_c00257{bottom:150.135922px;}
.yd6_c00257{bottom:150.135931px;}
.yd9_c00257{bottom:150.135942px;}
.yd3_c00257{bottom:150.136182px;}
.yda_c00257{bottom:150.136260px;}
.yd4_c00257{bottom:150.136419px;}
.ydd_c00257{bottom:153.894000px;}
.yce_c00257{bottom:168.860253px;}
.yd0_c00257{bottom:168.860456px;}
.yd2_c00257{bottom:168.860565px;}
.ycf_c00257{bottom:168.860656px;}
.ycd_c00257{bottom:168.860989px;}
.yd1_c00257{bottom:168.861043px;}
.ycc_c00257{bottom:168.861417px;}
.ycb_c00257{bottom:168.861768px;}
.ydc_c00257{bottom:172.357500px;}
.yc5_c00257{bottom:187.157145px;}
.yc4_c00257{bottom:187.157281px;}
.yc3_c00257{bottom:187.157439px;}
.yc8_c00257{bottom:187.157680px;}
.yca_c00257{bottom:187.157733px;}
.yc6_c00257{bottom:187.157844px;}
.yc2_c00257{bottom:187.157910px;}
.yc7_c00257{bottom:187.157932px;}
.yc9_c00257{bottom:187.157959px;}
.yc0_c00257{bottom:187.158058px;}
.yc1_c00257{bottom:187.158247px;}
.ybe_c00257{bottom:206.413441px;}
.ybf_c00257{bottom:209.763139px;}
.ydb_c00257{bottom:209.836500px;}
.yb4_c00257{bottom:217.896000px;}
.yb5_c00257{bottom:218.593348px;}
.yb6_c00257{bottom:219.060279px;}
.yb7_c00257{bottom:219.450607px;}
.yb8_c00257{bottom:219.625869px;}
.yb9_c00257{bottom:220.257937px;}
.yba_c00257{bottom:220.775358px;}
.ybb_c00257{bottom:221.193685px;}
.ybc_c00257{bottom:221.541760px;}
.ybd_c00257{bottom:222.085573px;}
.yad_c00257{bottom:226.670085px;}
.yae_c00257{bottom:226.670558px;}
.yac_c00257{bottom:226.670618px;}
.yaf_c00257{bottom:226.671075px;}
.yb0_c00257{bottom:226.671165px;}
.yb1_c00257{bottom:226.671615px;}
.yb2_c00257{bottom:226.672110px;}
.yb3_c00257{bottom:226.672755px;}
.yab_c00257{bottom:234.358560px;}
.yaa_c00257{bottom:240.956505px;}
.ya9_c00257{bottom:241.540425px;}
.ya8_c00257{bottom:242.029868px;}
.ya7_c00257{bottom:242.871863px;}
.ya5_c00257{bottom:243.213413px;}
.ya6_c00257{bottom:243.232875px;}
.ya4_c00257{bottom:244.076198px;}
.ya3_c00257{bottom:244.294312px;}
.ya1_c00257{bottom:245.325000px;}
.ya2_c00257{bottom:245.700000px;}
.ya0_c00257{bottom:295.857000px;}
.y9f_c00257{bottom:315.370500px;}
.y9e_c00257{bottom:315.724500px;}
.y9d_c00257{bottom:316.416000px;}
.y9c_c00257{bottom:316.779000px;}
.y9b_c00257{bottom:317.164500px;}
.y9a_c00257{bottom:317.449500px;}
.y99_c00257{bottom:317.962500px;}
.y98_c00257{bottom:318.244500px;}
.y97_c00257{bottom:318.571500px;}
.y96_c00257{bottom:319.159500px;}
.y95_c00257{bottom:319.914000px;}
.y94_c00257{bottom:320.487000px;}
.y93_c00257{bottom:339.250500px;}
.y92_c00257{bottom:339.678000px;}
.y91_c00257{bottom:340.050000px;}
.y90_c00257{bottom:340.335000px;}
.y8f_c00257{bottom:341.031000px;}
.y8e_c00257{bottom:341.307000px;}
.y8d_c00257{bottom:341.541000px;}
.y8c_c00257{bottom:341.887500px;}
.y8b_c00257{bottom:342.078000px;}
.y8a_c00257{bottom:342.279000px;}
.y89_c00257{bottom:342.711000px;}
.y88_c00257{bottom:342.820500px;}
.y87_c00257{bottom:343.168500px;}
.y86_c00257{bottom:362.371500px;}
.y85_c00257{bottom:362.533500px;}
.y84_c00257{bottom:362.574000px;}
.y83_c00257{bottom:363.373500px;}
.y82_c00257{bottom:363.777000px;}
.y81_c00257{bottom:363.981000px;}
.y80_c00257{bottom:364.795500px;}
.y7f_c00257{bottom:365.296500px;}
.y7e_c00257{bottom:365.625000px;}
.y7d_c00257{bottom:365.824500px;}
.y7c_c00257{bottom:366.390000px;}
.y7b_c00257{bottom:384.891000px;}
.y7a_c00257{bottom:385.563000px;}
.y79_c00257{bottom:385.792500px;}
.y78_c00257{bottom:386.052000px;}
.y77_c00257{bottom:386.379000px;}
.y76_c00257{bottom:386.668500px;}
.y75_c00257{bottom:387.015000px;}
.y74_c00257{bottom:387.679500px;}
.y73_c00257{bottom:388.105500px;}
.y72_c00257{bottom:388.278000px;}
.y71_c00257{bottom:388.975500px;}
.y70_c00257{bottom:389.343000px;}
.y6f_c00257{bottom:410.553000px;}
.y6e_c00257{bottom:431.572500px;}
.y6d_c00257{bottom:431.899500px;}
.y6c_c00257{bottom:432.286500px;}
.y6b_c00257{bottom:432.549000px;}
.y6a_c00257{bottom:432.693000px;}
.y69_c00257{bottom:432.984000px;}
.y68_c00257{bottom:433.158000px;}
.y67_c00257{bottom:433.270500px;}
.y66_c00257{bottom:433.569000px;}
.y65_c00257{bottom:434.163000px;}
.y64_c00257{bottom:434.701500px;}
.y63_c00257{bottom:456.216000px;}
.y62_c00257{bottom:479.383500px;}
.y61_c00257{bottom:501.814500px;}
.y60_c00257{bottom:524.778000px;}
.y5f_c00257{bottom:547.696500px;}
.y5e_c00257{bottom:571.953000px;}
.y5d_c00257{bottom:593.883000px;}
.y5c_c00257{bottom:615.426000px;}
.y5b_c00257{bottom:615.469500px;}
.y5a_c00257{bottom:615.808500px;}
.y59_c00257{bottom:615.970500px;}
.y58_c00257{bottom:616.132500px;}
.y57_c00257{bottom:616.639500px;}
.y56_c00257{bottom:616.797000px;}
.y55_c00257{bottom:617.086500px;}
.y54_c00257{bottom:617.532000px;}
.y53_c00257{bottom:618.033000px;}
.y52_c00257{bottom:618.186000px;}
.y51_c00257{bottom:618.571500px;}
.y50_c00257{bottom:640.867500px;}
.y4f_c00257{bottom:661.759500px;}
.y4e_c00257{bottom:662.113500px;}
.y4d_c00257{bottom:662.286000px;}
.y4c_c00257{bottom:662.755500px;}
.y4b_c00257{bottom:663.099000px;}
.y4a_c00257{bottom:663.331500px;}
.y49_c00257{bottom:663.777000px;}
.y48_c00257{bottom:663.999000px;}
.y47_c00257{bottom:664.279500px;}
.y46_c00257{bottom:664.674000px;}
.y45_c00257{bottom:665.145000px;}
.y44_c00257{bottom:665.281500px;}
.y43_c00257{bottom:685.899000px;}
.y42_c00257{bottom:686.103000px;}
.y41_c00257{bottom:686.583000px;}
.y40_c00257{bottom:686.776500px;}
.y3f_c00257{bottom:686.832000px;}
.y3e_c00257{bottom:687.304500px;}
.y3d_c00257{bottom:687.465000px;}
.y3c_c00257{bottom:687.733500px;}
.y3b_c00257{bottom:687.979500px;}
.y3a_c00257{bottom:688.144500px;}
.y39_c00257{bottom:688.503000px;}
.y38_c00257{bottom:688.771500px;}
.y37_c00257{bottom:708.330000px;}
.y36_c00257{bottom:708.429000px;}
.y35_c00257{bottom:708.984000px;}
.y34_c00257{bottom:709.240500px;}
.y33_c00257{bottom:709.852500px;}
.y32_c00257{bottom:710.068500px;}
.y31_c00257{bottom:710.310000px;}
.y30_c00257{bottom:711.021000px;}
.y2f_c00257{bottom:711.303000px;}
.y2e_c00257{bottom:711.723000px;}
.y2d_c00257{bottom:731.178000px;}
.y2c_c00257{bottom:731.650500px;}
.y2b_c00257{bottom:731.776500px;}
.y2a_c00257{bottom:731.992500px;}
.y29_c00257{bottom:732.283500px;}
.y28_c00257{bottom:732.424500px;}
.y27_c00257{bottom:732.577500px;}
.y26_c00257{bottom:732.909000px;}
.y25_c00257{bottom:733.248000px;}
.y24_c00257{bottom:733.450500px;}
.y23_c00257{bottom:733.687500px;}
.y22_c00257{bottom:733.887000px;}
.y21_c00257{bottom:734.169000px;}
.y20_c00257{bottom:734.401500px;}
.y1f_c00257{bottom:754.228500px;}
.y1e_c00257{bottom:754.735500px;}
.y1d_c00257{bottom:755.392500px;}
.y1c_c00257{bottom:755.608500px;}
.y1b_c00257{bottom:755.973000px;}
.y1a_c00257{bottom:756.595500px;}
.y19_c00257{bottom:757.347000px;}
.y18_c00257{bottom:757.891500px;}
.y17_c00257{bottom:780.121500px;}
.y16_c00257{bottom:802.470000px;}
.y15_c00257{bottom:825.490500px;}
.y14_c00257{bottom:852.366000px;}
.ye_c00257{bottom:910.963201px;}
.y13_c00257{bottom:910.963398px;}
.y10_c00257{bottom:910.963493px;}
.yf_c00257{bottom:910.963569px;}
.y12_c00257{bottom:910.963600px;}
.yd_c00257{bottom:910.963771px;}
.y11_c00257{bottom:910.963906px;}
.y1_c00257{bottom:918.810000px;}
.y2_c00257{bottom:929.881500px;}
.y3_c00257{bottom:930.864157px;}
.y4_c00257{bottom:931.666305px;}
.y5_c00257{bottom:932.494786px;}
.y6_c00257{bottom:932.942283px;}
.y7_c00257{bottom:933.163069px;}
.y8_c00257{bottom:933.682819px;}
.y9_c00257{bottom:934.285564px;}
.ya_c00257{bottom:935.150956px;}
.yb_c00257{bottom:935.625727px;}
.yc_c00257{bottom:935.827902px;}
.h5_c00257{height:22.050000px;}
.h1c_c00257{height:29.400000px;}
.h13_c00257{height:30.453425px;}
.h1b_c00257{height:32.550000px;}
.h3_c00257{height:49.352986px;}
.h18_c00257{height:50.407282px;}
.h11_c00257{height:51.450000px;}
.h12_c00257{height:51.455788px;}
.h16_c00257{height:51.457434px;}
.h1a_c00257{height:52.500000px;}
.h17_c00257{height:52.507586px;}
.h2_c00257{height:53.550000px;}
.h14_c00257{height:53.556024px;}
.h15_c00257{height:53.557737px;}
.h19_c00257{height:54.600000px;}
.hd_c00257{height:60.900000px;}
.hf_c00257{height:64.050000px;}
.he_c00257{height:65.100000px;}
.hb_c00257{height:66.150000px;}
.hc_c00257{height:67.200000px;}
.h6_c00257{height:68.250000px;}
.ha_c00257{height:69.300000px;}
.h9_c00257{height:70.350000px;}
.h7_c00257{height:71.400000px;}
.h8_c00257{height:72.450000px;}
.h10_c00257{height:74.550000px;}
.h4_c00257{height:174.310545px;}
.h0_c00257{height:1008.450000px;}
.h1_c00257{height:1008.750000px;}
.w0_c00257{width:678.450000px;}
.w1_c00257{width:678.750000px;}
.x0_c00257{left:0.000000px;}
.xd_c00257{left:84.509547px;}
.xe_c00257{left:89.640174px;}
.x2_c00257{left:97.096500px;}
.xcc_c00257{left:110.430000px;}
.xcf_c00257{left:125.010000px;}
.x90_c00257{left:132.570000px;}
.xc6_c00257{left:134.460000px;}
.x57_c00257{left:136.222500px;}
.x24_c00257{left:137.430000px;}
.x5e_c00257{left:138.510000px;}
.x1a_c00257{left:140.130000px;}
.x14_c00257{left:144.720000px;}
.xb6_c00257{left:149.564445px;}
.x58_c00257{left:153.259500px;}
.xc7_c00257{left:162.270000px;}
.xbc_c00257{left:167.367158px;}
.x9f_c00257{left:170.368500px;}
.x41_c00257{left:171.658500px;}
.x5f_c00257{left:172.800000px;}
.x2e_c00257{left:174.690000px;}
.x6e_c00257{left:176.850000px;}
.xc8_c00257{left:179.010000px;}
.xab_c00257{left:180.793500px;}
.xb2_c00257{left:182.247000px;}
.xcd_c00257{left:183.870000px;}
.x3_c00257{left:186.429000px;}
.xb7_c00257{left:187.908562px;}
.xb1_c00257{left:189.100500px;}
.x4b_c00257{left:192.174000px;}
.x6a_c00257{left:194.004000px;}
.x91_c00257{left:195.480000px;}
.xb3_c00257{left:197.370000px;}
.xc9_c00257{left:198.990000px;}
.x88_c00257{left:200.340000px;}
.x3c_c00257{left:205.362000px;}
.xf_c00257{left:207.096881px;}
.x2f_c00257{left:208.170000px;}
.x15_c00257{left:211.140000px;}
.x25_c00257{left:212.760000px;}
.x9a_c00257{left:214.581000px;}
.x6b_c00257{left:215.916000px;}
.xca_c00257{left:217.080000px;}
.x30_c00257{left:218.970000px;}
.x10_c00257{left:221.137080px;}
.x60_c00257{left:222.480000px;}
.x82_c00257{left:224.370000px;}
.x51_c00257{left:226.440000px;}
.x4c_c00257{left:227.506500px;}
.xbd_c00257{left:232.985630px;}
.x6f_c00257{left:238.680000px;}
.x16_c00257{left:240.300000px;}
.x61_c00257{left:244.080000px;}
.x31_c00257{left:245.160000px;}
.x83_c00257{left:246.240000px;}
.x7a_c00257{left:248.130000px;}
.x52_c00257{left:249.906000px;}
.x1_c00257{left:252.720000px;}
.xa6_c00257{left:258.253500px;}
.x4_c00257{left:259.351500px;}
.x59_c00257{left:261.496500px;}
.x26_c00257{left:265.680000px;}
.x92_c00257{left:268.920000px;}
.xce_c00257{left:271.620000px;}
.x42_c00257{left:274.254000px;}
.x96_c00257{left:276.210000px;}
.x75_c00257{left:277.290000px;}
.x62_c00257{left:279.990000px;}
.x32_c00257{left:281.880000px;}
.x53_c00257{left:285.010500px;}
.x6c_c00257{left:287.460000px;}
.x84_c00257{left:289.170000px;}
.x89_c00257{left:290.520000px;}
.x97_c00257{left:294.570000px;}
.x5a_c00257{left:296.613000px;}
.x27_c00257{left:298.890000px;}
.x33_c00257{left:301.050000px;}
.x43_c00257{left:303.106500px;}
.xa2_c00257{left:304.111500px;}
.xb8_c00257{left:307.263428px;}
.x7b_c00257{left:310.770000px;}
.x93_c00257{left:313.470000px;}
.x8a_c00257{left:315.090000px;}
.x4d_c00257{left:316.365000px;}
.x1b_c00257{left:321.300000px;}
.x54_c00257{left:323.377500px;}
.x11_c00257{left:324.823620px;}
.x17_c00257{left:326.160000px;}
.x63_c00257{left:327.780000px;}
.x70_c00257{left:329.130000px;}
.x5_c00257{left:334.668000px;}
.x18_c00257{left:338.040000px;}
.xac_c00257{left:340.632000px;}
.x9b_c00257{left:342.024000px;}
.x34_c00257{left:343.710000px;}
.x19_c00257{left:346.140000px;}
.x28_c00257{left:348.030000px;}
.x44_c00257{left:351.439500px;}
.xcb_c00257{left:353.160000px;}
.x8b_c00257{left:356.670000px;}
.x85_c00257{left:358.830000px;}
.x1c_c00257{left:360.180000px;}
.x71_c00257{left:366.660000px;}
.xa0_c00257{left:367.738500px;}
.x76_c00257{left:370.170000px;}
.x35_c00257{left:373.950000px;}
.x6_c00257{left:375.349500px;}
.x3d_c00257{left:377.077500px;}
.x5b_c00257{left:380.088000px;}
.x64_c00257{left:382.860000px;}
.xbe_c00257{left:384.477334px;}
.x7c_c00257{left:386.100000px;}
.x36_c00257{left:388.800000px;}
.x1d_c00257{left:393.120000px;}
.x7_c00257{left:395.421000px;}
.x45_c00257{left:398.691000px;}
.x72_c00257{left:405.000000px;}
.xbf_c00257{left:406.080582px;}
.x5c_c00257{left:409.209000px;}
.x29_c00257{left:411.480000px;}
.x55_c00257{left:413.886000px;}
.x8c_c00257{left:416.070000px;}
.x37_c00257{left:419.310000px;}
.x46_c00257{left:420.559500px;}
.x3e_c00257{left:422.706000px;}
.x9c_c00257{left:424.615500px;}
.x7d_c00257{left:425.790000px;}
.xa7_c00257{left:426.958500px;}
.x65_c00257{left:430.650000px;}
.x12_c00257{left:434.990952px;}
.x1e_c00257{left:436.050000px;}
.x38_c00257{left:438.750000px;}
.x47_c00257{left:440.808000px;}
.x8_c00257{left:442.671000px;}
.x9d_c00257{left:445.134000px;}
.x77_c00257{left:446.850000px;}
.x2a_c00257{left:449.010000px;}
.x4e_c00257{left:450.016500px;}
.x5d_c00257{left:452.119500px;}
.x7e_c00257{left:454.410000px;}
.x66_c00257{left:458.190000px;}
.x1f_c00257{left:460.620000px;}
.xb4_c00257{left:465.595500px;}
.xa3_c00257{left:466.693500px;}
.xa8_c00257{left:471.819000px;}
.x98_c00257{left:473.850000px;}
.x94_c00257{left:477.090000px;}
.x48_c00257{left:482.391000px;}
.x8d_c00257{left:484.920000px;}
.x39_c00257{left:486.810000px;}
.xc0_c00257{left:488.712476px;}
.xad_c00257{left:491.325000px;}
.xa4_c00257{left:492.627000px;}
.x73_c00257{left:494.910000px;}
.x9_c00257{left:497.466000px;}
.x78_c00257{left:507.870000px;}
.x3a_c00257{left:508.950000px;}
.x20_c00257{left:510.030000px;}
.x49_c00257{left:513.171000px;}
.xa5_c00257{left:515.563500px;}
.x56_c00257{left:518.040000px;}
.xb9_c00257{left:519.976500px;}
.x2b_c00257{left:521.100000px;}
.x86_c00257{left:523.530000px;}
.x74_c00257{left:525.420000px;}
.xae_c00257{left:526.941000px;}
.x95_c00257{left:530.820000px;}
.x3f_c00257{left:531.823500px;}
.x67_c00257{left:533.520000px;}
.x9e_c00257{left:538.017000px;}
.xc1_c00257{left:539.209562px;}
.x21_c00257{left:540.270000px;}
.x7f_c00257{left:544.050000px;}
.xc4_c00257{left:545.150010px;}
.x2c_c00257{left:547.290000px;}
.xba_c00257{left:550.413000px;}
.x4f_c00257{left:551.485500px;}
.xb5_c00257{left:554.358000px;}
.x68_c00257{left:555.660000px;}
.x8e_c00257{left:558.360000px;}
.xa9_c00257{left:560.679000px;}
.x79_c00257{left:562.140000px;}
.x50_c00257{left:563.950500px;}
.xaa_c00257{left:565.120500px;}
.x80_c00257{left:568.080000px;}
.x87_c00257{left:569.970000px;}
.x13_c00257{left:571.079919px;}
.xaf_c00257{left:573.393000px;}
.xbb_c00257{left:575.020500px;}
.xa_c00257{left:576.138000px;}
.xc2_c00257{left:577.284552px;}
.xa1_c00257{left:581.038500px;}
.x22_c00257{left:582.660000px;}
.x2d_c00257{left:584.280000px;}
.x69_c00257{left:586.980000px;}
.x6d_c00257{left:588.232500px;}
.x3b_c00257{left:593.190000px;}
.x40_c00257{left:595.261500px;}
.x99_c00257{left:596.970000px;}
.x4a_c00257{left:598.762500px;}
.x23_c00257{left:600.750000px;}
.x8f_c00257{left:603.180000px;}
.x81_c00257{left:604.530000px;}
.xb_c00257{left:619.299000px;}
.xc5_c00257{left:624.540935px;}
.xb0_c00257{left:626.806500px;}
.xc_c00257{left:637.678500px;}
.xc3_c00257{left:652.895906px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.fs3_c00257{font-size:19.600000pt;}
.fs1a_c00257{font-size:26.133333pt;}
.fs11_c00257{font-size:27.069711pt;}
.fs19_c00257{font-size:28.933333pt;}
.fs1_c00257{font-size:43.869321pt;}
.fs16_c00257{font-size:44.806473pt;}
.fsf_c00257{font-size:45.733333pt;}
.fs10_c00257{font-size:45.738478pt;}
.fs14_c00257{font-size:45.739941pt;}
.fs18_c00257{font-size:46.666667pt;}
.fs15_c00257{font-size:46.673410pt;}
.fs0_c00257{font-size:47.600000pt;}
.fs12_c00257{font-size:47.605355pt;}
.fs13_c00257{font-size:47.606878pt;}
.fs17_c00257{font-size:48.533333pt;}
.fsb_c00257{font-size:54.133333pt;}
.fsd_c00257{font-size:56.933333pt;}
.fsc_c00257{font-size:57.866667pt;}
.fs9_c00257{font-size:58.800000pt;}
.fsa_c00257{font-size:59.733333pt;}
.fs4_c00257{font-size:60.666667pt;}
.fs8_c00257{font-size:61.600000pt;}
.fs7_c00257{font-size:62.533333pt;}
.fs5_c00257{font-size:63.466667pt;}
.fs6_c00257{font-size:64.400000pt;}
.fse_c00257{font-size:66.266667pt;}
.fs2_c00257{font-size:154.942707pt;}
.y0_c00257{bottom:0.000000pt;}
.ydf_c00257{bottom:91.068000pt;}
.yde_c00257{bottom:94.113333pt;}
.yd8_c00257{bottom:133.453781pt;}
.yd7_c00257{bottom:133.454093pt;}
.yd5_c00257{bottom:133.454153pt;}
.yd6_c00257{bottom:133.454161pt;}
.yd9_c00257{bottom:133.454171pt;}
.yd3_c00257{bottom:133.454384pt;}
.yda_c00257{bottom:133.454453pt;}
.yd4_c00257{bottom:133.454595pt;}
.ydd_c00257{bottom:136.794667pt;}
.yce_c00257{bottom:150.098003pt;}
.yd0_c00257{bottom:150.098183pt;}
.yd2_c00257{bottom:150.098280pt;}
.ycf_c00257{bottom:150.098361pt;}
.ycd_c00257{bottom:150.098657pt;}
.yd1_c00257{bottom:150.098705pt;}
.ycc_c00257{bottom:150.099037pt;}
.ycb_c00257{bottom:150.099349pt;}
.ydc_c00257{bottom:153.206667pt;}
.yc5_c00257{bottom:166.361907pt;}
.yc4_c00257{bottom:166.362028pt;}
.yc3_c00257{bottom:166.362168pt;}
.yc8_c00257{bottom:166.362383pt;}
.yca_c00257{bottom:166.362429pt;}
.yc6_c00257{bottom:166.362528pt;}
.yc2_c00257{bottom:166.362587pt;}
.yc7_c00257{bottom:166.362607pt;}
.yc9_c00257{bottom:166.362631pt;}
.yc0_c00257{bottom:166.362719pt;}
.yc1_c00257{bottom:166.362887pt;}
.ybe_c00257{bottom:183.478615pt;}
.ybf_c00257{bottom:186.456124pt;}
.ydb_c00257{bottom:186.521333pt;}
.yb4_c00257{bottom:193.685333pt;}
.yb5_c00257{bottom:194.305199pt;}
.yb6_c00257{bottom:194.720248pt;}
.yb7_c00257{bottom:195.067207pt;}
.yb8_c00257{bottom:195.222995pt;}
.yb9_c00257{bottom:195.784833pt;}
.yba_c00257{bottom:196.244763pt;}
.ybb_c00257{bottom:196.616609pt;}
.ybc_c00257{bottom:196.926009pt;}
.ybd_c00257{bottom:197.409399pt;}
.yad_c00257{bottom:201.484520pt;}
.yae_c00257{bottom:201.484940pt;}
.yac_c00257{bottom:201.484993pt;}
.yaf_c00257{bottom:201.485400pt;}
.yb0_c00257{bottom:201.485480pt;}
.yb1_c00257{bottom:201.485880pt;}
.yb2_c00257{bottom:201.486320pt;}
.yb3_c00257{bottom:201.486893pt;}
.yab_c00257{bottom:208.318720pt;}
.yaa_c00257{bottom:214.183560pt;}
.ya9_c00257{bottom:214.702600pt;}
.ya8_c00257{bottom:215.137660pt;}
.ya7_c00257{bottom:215.886100pt;}
.ya5_c00257{bottom:216.189700pt;}
.ya6_c00257{bottom:216.207000pt;}
.ya4_c00257{bottom:216.956620pt;}
.ya3_c00257{bottom:217.150500pt;}
.ya1_c00257{bottom:218.066667pt;}
.ya2_c00257{bottom:218.400000pt;}
.ya0_c00257{bottom:262.984000pt;}
.y9f_c00257{bottom:280.329333pt;}
.y9e_c00257{bottom:280.644000pt;}
.y9d_c00257{bottom:281.258667pt;}
.y9c_c00257{bottom:281.581333pt;}
.y9b_c00257{bottom:281.924000pt;}
.y9a_c00257{bottom:282.177333pt;}
.y99_c00257{bottom:282.633333pt;}
.y98_c00257{bottom:282.884000pt;}
.y97_c00257{bottom:283.174667pt;}
.y96_c00257{bottom:283.697333pt;}
.y95_c00257{bottom:284.368000pt;}
.y94_c00257{bottom:284.877333pt;}
.y93_c00257{bottom:301.556000pt;}
.y92_c00257{bottom:301.936000pt;}
.y91_c00257{bottom:302.266667pt;}
.y90_c00257{bottom:302.520000pt;}
.y8f_c00257{bottom:303.138667pt;}
.y8e_c00257{bottom:303.384000pt;}
.y8d_c00257{bottom:303.592000pt;}
.y8c_c00257{bottom:303.900000pt;}
.y8b_c00257{bottom:304.069333pt;}
.y8a_c00257{bottom:304.248000pt;}
.y89_c00257{bottom:304.632000pt;}
.y88_c00257{bottom:304.729333pt;}
.y87_c00257{bottom:305.038667pt;}
.y86_c00257{bottom:322.108000pt;}
.y85_c00257{bottom:322.252000pt;}
.y84_c00257{bottom:322.288000pt;}
.y83_c00257{bottom:322.998667pt;}
.y82_c00257{bottom:323.357333pt;}
.y81_c00257{bottom:323.538667pt;}
.y80_c00257{bottom:324.262667pt;}
.y7f_c00257{bottom:324.708000pt;}
.y7e_c00257{bottom:325.000000pt;}
.y7d_c00257{bottom:325.177333pt;}
.y7c_c00257{bottom:325.680000pt;}
.y7b_c00257{bottom:342.125333pt;}
.y7a_c00257{bottom:342.722667pt;}
.y79_c00257{bottom:342.926667pt;}
.y78_c00257{bottom:343.157333pt;}
.y77_c00257{bottom:343.448000pt;}
.y76_c00257{bottom:343.705333pt;}
.y75_c00257{bottom:344.013333pt;}
.y74_c00257{bottom:344.604000pt;}
.y73_c00257{bottom:344.982667pt;}
.y72_c00257{bottom:345.136000pt;}
.y71_c00257{bottom:345.756000pt;}
.y70_c00257{bottom:346.082667pt;}
.y6f_c00257{bottom:364.936000pt;}
.y6e_c00257{bottom:383.620000pt;}
.y6d_c00257{bottom:383.910667pt;}
.y6c_c00257{bottom:384.254667pt;}
.y6b_c00257{bottom:384.488000pt;}
.y6a_c00257{bottom:384.616000pt;}
.y69_c00257{bottom:384.874667pt;}
.y68_c00257{bottom:385.029333pt;}
.y67_c00257{bottom:385.129333pt;}
.y66_c00257{bottom:385.394667pt;}
.y65_c00257{bottom:385.922667pt;}
.y64_c00257{bottom:386.401333pt;}
.y63_c00257{bottom:405.525333pt;}
.y62_c00257{bottom:426.118667pt;}
.y61_c00257{bottom:446.057333pt;}
.y60_c00257{bottom:466.469333pt;}
.y5f_c00257{bottom:486.841333pt;}
.y5e_c00257{bottom:508.402667pt;}
.y5d_c00257{bottom:527.896000pt;}
.y5c_c00257{bottom:547.045333pt;}
.y5b_c00257{bottom:547.084000pt;}
.y5a_c00257{bottom:547.385333pt;}
.y59_c00257{bottom:547.529333pt;}
.y58_c00257{bottom:547.673333pt;}
.y57_c00257{bottom:548.124000pt;}
.y56_c00257{bottom:548.264000pt;}
.y55_c00257{bottom:548.521333pt;}
.y54_c00257{bottom:548.917333pt;}
.y53_c00257{bottom:549.362667pt;}
.y52_c00257{bottom:549.498667pt;}
.y51_c00257{bottom:549.841333pt;}
.y50_c00257{bottom:569.660000pt;}
.y4f_c00257{bottom:588.230667pt;}
.y4e_c00257{bottom:588.545333pt;}
.y4d_c00257{bottom:588.698667pt;}
.y4c_c00257{bottom:589.116000pt;}
.y4b_c00257{bottom:589.421333pt;}
.y4a_c00257{bottom:589.628000pt;}
.y49_c00257{bottom:590.024000pt;}
.y48_c00257{bottom:590.221333pt;}
.y47_c00257{bottom:590.470667pt;}
.y46_c00257{bottom:590.821333pt;}
.y45_c00257{bottom:591.240000pt;}
.y44_c00257{bottom:591.361333pt;}
.y43_c00257{bottom:609.688000pt;}
.y42_c00257{bottom:609.869333pt;}
.y41_c00257{bottom:610.296000pt;}
.y40_c00257{bottom:610.468000pt;}
.y3f_c00257{bottom:610.517333pt;}
.y3e_c00257{bottom:610.937333pt;}
.y3d_c00257{bottom:611.080000pt;}
.y3c_c00257{bottom:611.318667pt;}
.y3b_c00257{bottom:611.537333pt;}
.y3a_c00257{bottom:611.684000pt;}
.y39_c00257{bottom:612.002667pt;}
.y38_c00257{bottom:612.241333pt;}
.y37_c00257{bottom:629.626667pt;}
.y36_c00257{bottom:629.714667pt;}
.y35_c00257{bottom:630.208000pt;}
.y34_c00257{bottom:630.436000pt;}
.y33_c00257{bottom:630.980000pt;}
.y32_c00257{bottom:631.172000pt;}
.y31_c00257{bottom:631.386667pt;}
.y30_c00257{bottom:632.018667pt;}
.y2f_c00257{bottom:632.269333pt;}
.y2e_c00257{bottom:632.642667pt;}
.y2d_c00257{bottom:649.936000pt;}
.y2c_c00257{bottom:650.356000pt;}
.y2b_c00257{bottom:650.468000pt;}
.y2a_c00257{bottom:650.660000pt;}
.y29_c00257{bottom:650.918667pt;}
.y28_c00257{bottom:651.044000pt;}
.y27_c00257{bottom:651.180000pt;}
.y26_c00257{bottom:651.474667pt;}
.y25_c00257{bottom:651.776000pt;}
.y24_c00257{bottom:651.956000pt;}
.y23_c00257{bottom:652.166667pt;}
.y22_c00257{bottom:652.344000pt;}
.y21_c00257{bottom:652.594667pt;}
.y20_c00257{bottom:652.801333pt;}
.y1f_c00257{bottom:670.425333pt;}
.y1e_c00257{bottom:670.876000pt;}
.y1d_c00257{bottom:671.460000pt;}
.y1c_c00257{bottom:671.652000pt;}
.y1b_c00257{bottom:671.976000pt;}
.y1a_c00257{bottom:672.529333pt;}
.y19_c00257{bottom:673.197333pt;}
.y18_c00257{bottom:673.681333pt;}
.y17_c00257{bottom:693.441333pt;}
.y16_c00257{bottom:713.306667pt;}
.y15_c00257{bottom:733.769333pt;}
.y14_c00257{bottom:757.658667pt;}
.ye_c00257{bottom:809.745068pt;}
.y13_c00257{bottom:809.745243pt;}
.y10_c00257{bottom:809.745327pt;}
.yf_c00257{bottom:809.745395pt;}
.y12_c00257{bottom:809.745423pt;}
.yd_c00257{bottom:809.745575pt;}
.y11_c00257{bottom:809.745695pt;}
.y1_c00257{bottom:816.720000pt;}
.y2_c00257{bottom:826.561333pt;}
.y3_c00257{bottom:827.434807pt;}
.y4_c00257{bottom:828.147827pt;}
.y5_c00257{bottom:828.884255pt;}
.y6_c00257{bottom:829.282029pt;}
.y7_c00257{bottom:829.478284pt;}
.y8_c00257{bottom:829.940284pt;}
.y9_c00257{bottom:830.476057pt;}
.ya_c00257{bottom:831.245295pt;}
.yb_c00257{bottom:831.667313pt;}
.yc_c00257{bottom:831.847024pt;}
.h5_c00257{height:19.600000pt;}
.h1c_c00257{height:26.133333pt;}
.h13_c00257{height:27.069711pt;}
.h1b_c00257{height:28.933333pt;}
.h3_c00257{height:43.869321pt;}
.h18_c00257{height:44.806473pt;}
.h11_c00257{height:45.733333pt;}
.h12_c00257{height:45.738478pt;}
.h16_c00257{height:45.739941pt;}
.h1a_c00257{height:46.666667pt;}
.h17_c00257{height:46.673410pt;}
.h2_c00257{height:47.600000pt;}
.h14_c00257{height:47.605355pt;}
.h15_c00257{height:47.606878pt;}
.h19_c00257{height:48.533333pt;}
.hd_c00257{height:54.133333pt;}
.hf_c00257{height:56.933333pt;}
.he_c00257{height:57.866667pt;}
.hb_c00257{height:58.800000pt;}
.hc_c00257{height:59.733333pt;}
.h6_c00257{height:60.666667pt;}
.ha_c00257{height:61.600000pt;}
.h9_c00257{height:62.533333pt;}
.h7_c00257{height:63.466667pt;}
.h8_c00257{height:64.400000pt;}
.h10_c00257{height:66.266667pt;}
.h4_c00257{height:154.942707pt;}
.h0_c00257{height:896.400000pt;}
.h1_c00257{height:896.666667pt;}
.w0_c00257{width:603.066667pt;}
.w1_c00257{width:603.333333pt;}
.x0_c00257{left:0.000000pt;}
.xd_c00257{left:75.119597pt;}
.xe_c00257{left:79.680155pt;}
.x2_c00257{left:86.308000pt;}
.xcc_c00257{left:98.160000pt;}
.xcf_c00257{left:111.120000pt;}
.x90_c00257{left:117.840000pt;}
.xc6_c00257{left:119.520000pt;}
.x57_c00257{left:121.086667pt;}
.x24_c00257{left:122.160000pt;}
.x5e_c00257{left:123.120000pt;}
.x1a_c00257{left:124.560000pt;}
.x14_c00257{left:128.640000pt;}
.xb6_c00257{left:132.946173pt;}
.x58_c00257{left:136.230667pt;}
.xc7_c00257{left:144.240000pt;}
.xbc_c00257{left:148.770807pt;}
.x9f_c00257{left:151.438667pt;}
.x41_c00257{left:152.585333pt;}
.x5f_c00257{left:153.600000pt;}
.x2e_c00257{left:155.280000pt;}
.x6e_c00257{left:157.200000pt;}
.xc8_c00257{left:159.120000pt;}
.xab_c00257{left:160.705333pt;}
.xb2_c00257{left:161.997333pt;}
.xcd_c00257{left:163.440000pt;}
.x3_c00257{left:165.714667pt;}
.xb7_c00257{left:167.029833pt;}
.xb1_c00257{left:168.089333pt;}
.x4b_c00257{left:170.821333pt;}
.x6a_c00257{left:172.448000pt;}
.x91_c00257{left:173.760000pt;}
.xb3_c00257{left:175.440000pt;}
.xc9_c00257{left:176.880000pt;}
.x88_c00257{left:178.080000pt;}
.x3c_c00257{left:182.544000pt;}
.xf_c00257{left:184.086116pt;}
.x2f_c00257{left:185.040000pt;}
.x15_c00257{left:187.680000pt;}
.x25_c00257{left:189.120000pt;}
.x9a_c00257{left:190.738667pt;}
.x6b_c00257{left:191.925333pt;}
.xca_c00257{left:192.960000pt;}
.x30_c00257{left:194.640000pt;}
.x10_c00257{left:196.566293pt;}
.x60_c00257{left:197.760000pt;}
.x82_c00257{left:199.440000pt;}
.x51_c00257{left:201.280000pt;}
.x4c_c00257{left:202.228000pt;}
.xbd_c00257{left:207.098337pt;}
.x6f_c00257{left:212.160000pt;}
.x16_c00257{left:213.600000pt;}
.x61_c00257{left:216.960000pt;}
.x31_c00257{left:217.920000pt;}
.x83_c00257{left:218.880000pt;}
.x7a_c00257{left:220.560000pt;}
.x52_c00257{left:222.138667pt;}
.x1_c00257{left:224.640000pt;}
.xa6_c00257{left:229.558667pt;}
.x4_c00257{left:230.534667pt;}
.x59_c00257{left:232.441333pt;}
.x26_c00257{left:236.160000pt;}
.x92_c00257{left:239.040000pt;}
.xce_c00257{left:241.440000pt;}
.x42_c00257{left:243.781333pt;}
.x96_c00257{left:245.520000pt;}
.x75_c00257{left:246.480000pt;}
.x62_c00257{left:248.880000pt;}
.x32_c00257{left:250.560000pt;}
.x53_c00257{left:253.342667pt;}
.x6c_c00257{left:255.520000pt;}
.x84_c00257{left:257.040000pt;}
.x89_c00257{left:258.240000pt;}
.x97_c00257{left:261.840000pt;}
.x5a_c00257{left:263.656000pt;}
.x27_c00257{left:265.680000pt;}
.x33_c00257{left:267.600000pt;}
.x43_c00257{left:269.428000pt;}
.xa2_c00257{left:270.321333pt;}
.xb8_c00257{left:273.123047pt;}
.x7b_c00257{left:276.240000pt;}
.x93_c00257{left:278.640000pt;}
.x8a_c00257{left:280.080000pt;}
.x4d_c00257{left:281.213333pt;}
.x1b_c00257{left:285.600000pt;}
.x54_c00257{left:287.446667pt;}
.x11_c00257{left:288.732107pt;}
.x17_c00257{left:289.920000pt;}
.x63_c00257{left:291.360000pt;}
.x70_c00257{left:292.560000pt;}
.x5_c00257{left:297.482667pt;}
.x18_c00257{left:300.480000pt;}
.xac_c00257{left:302.784000pt;}
.x9b_c00257{left:304.021333pt;}
.x34_c00257{left:305.520000pt;}
.x19_c00257{left:307.680000pt;}
.x28_c00257{left:309.360000pt;}
.x44_c00257{left:312.390667pt;}
.xcb_c00257{left:313.920000pt;}
.x8b_c00257{left:317.040000pt;}
.x85_c00257{left:318.960000pt;}
.x1c_c00257{left:320.160000pt;}
.x71_c00257{left:325.920000pt;}
.xa0_c00257{left:326.878667pt;}
.x76_c00257{left:329.040000pt;}
.x35_c00257{left:332.400000pt;}
.x6_c00257{left:333.644000pt;}
.x3d_c00257{left:335.180000pt;}
.x5b_c00257{left:337.856000pt;}
.x64_c00257{left:340.320000pt;}
.xbe_c00257{left:341.757631pt;}
.x7c_c00257{left:343.200000pt;}
.x36_c00257{left:345.600000pt;}
.x1d_c00257{left:349.440000pt;}
.x7_c00257{left:351.485333pt;}
.x45_c00257{left:354.392000pt;}
.x72_c00257{left:360.000000pt;}
.xbf_c00257{left:360.960517pt;}
.x5c_c00257{left:363.741333pt;}
.x29_c00257{left:365.760000pt;}
.x55_c00257{left:367.898667pt;}
.x8c_c00257{left:369.840000pt;}
.x37_c00257{left:372.720000pt;}
.x46_c00257{left:373.830667pt;}
.x3e_c00257{left:375.738667pt;}
.x9c_c00257{left:377.436000pt;}
.x7d_c00257{left:378.480000pt;}
.xa7_c00257{left:379.518667pt;}
.x65_c00257{left:382.800000pt;}
.x12_c00257{left:386.658624pt;}
.x1e_c00257{left:387.600000pt;}
.x38_c00257{left:390.000000pt;}
.x47_c00257{left:391.829333pt;}
.x8_c00257{left:393.485333pt;}
.x9d_c00257{left:395.674667pt;}
.x77_c00257{left:397.200000pt;}
.x2a_c00257{left:399.120000pt;}
.x4e_c00257{left:400.014667pt;}
.x5d_c00257{left:401.884000pt;}
.x7e_c00257{left:403.920000pt;}
.x66_c00257{left:407.280000pt;}
.x1f_c00257{left:409.440000pt;}
.xb4_c00257{left:413.862667pt;}
.xa3_c00257{left:414.838667pt;}
.xa8_c00257{left:419.394667pt;}
.x98_c00257{left:421.200000pt;}
.x94_c00257{left:424.080000pt;}
.x48_c00257{left:428.792000pt;}
.x8d_c00257{left:431.040000pt;}
.x39_c00257{left:432.720000pt;}
.xc0_c00257{left:434.411089pt;}
.xad_c00257{left:436.733333pt;}
.xa4_c00257{left:437.890667pt;}
.x73_c00257{left:439.920000pt;}
.x9_c00257{left:442.192000pt;}
.x78_c00257{left:451.440000pt;}
.x3a_c00257{left:452.400000pt;}
.x20_c00257{left:453.360000pt;}
.x49_c00257{left:456.152000pt;}
.xa5_c00257{left:458.278667pt;}
.x56_c00257{left:460.480000pt;}
.xb9_c00257{left:462.201333pt;}
.x2b_c00257{left:463.200000pt;}
.x86_c00257{left:465.360000pt;}
.x74_c00257{left:467.040000pt;}
.xae_c00257{left:468.392000pt;}
.x95_c00257{left:471.840000pt;}
.x3f_c00257{left:472.732000pt;}
.x67_c00257{left:474.240000pt;}
.x9e_c00257{left:478.237333pt;}
.xc1_c00257{left:479.297388pt;}
.x21_c00257{left:480.240000pt;}
.x7f_c00257{left:483.600000pt;}
.xc4_c00257{left:484.577787pt;}
.x2c_c00257{left:486.480000pt;}
.xba_c00257{left:489.256000pt;}
.x4f_c00257{left:490.209333pt;}
.xb5_c00257{left:492.762667pt;}
.x68_c00257{left:493.920000pt;}
.x8e_c00257{left:496.320000pt;}
.xa9_c00257{left:498.381333pt;}
.x79_c00257{left:499.680000pt;}
.x50_c00257{left:501.289333pt;}
.xaa_c00257{left:502.329333pt;}
.x80_c00257{left:504.960000pt;}
.x87_c00257{left:506.640000pt;}
.x13_c00257{left:507.626595pt;}
.xaf_c00257{left:509.682667pt;}
.xbb_c00257{left:511.129333pt;}
.xa_c00257{left:512.122667pt;}
.xc2_c00257{left:513.141824pt;}
.xa1_c00257{left:516.478667pt;}
.x22_c00257{left:517.920000pt;}
.x2d_c00257{left:519.360000pt;}
.x69_c00257{left:521.760000pt;}
.x6d_c00257{left:522.873333pt;}
.x3b_c00257{left:527.280000pt;}
.x40_c00257{left:529.121333pt;}
.x99_c00257{left:530.640000pt;}
.x4a_c00257{left:532.233333pt;}
.x23_c00257{left:534.000000pt;}
.x8f_c00257{left:536.160000pt;}
.x81_c00257{left:537.360000pt;}
.xb_c00257{left:550.488000pt;}
.xc5_c00257{left:555.147497pt;}
.xb0_c00257{left:557.161333pt;}
.xc_c00257{left:566.825333pt;}
.xc3_c00257{left:580.351916pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m8d_c00258{transform:matrix(0.008743,-0.000184,0.005249,0.249945,0,0);-ms-transform:matrix(0.008743,-0.000184,0.005249,0.249945,0,0);-webkit-transform:matrix(0.008743,-0.000184,0.005249,0.249945,0,0);}
.mdd_c00258{transform:matrix(0.009965,-0.000100,0.002500,0.249988,0,0);-ms-transform:matrix(0.009965,-0.000100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.009965,-0.000100,0.002500,0.249988,0,0);}
.md2_c00258{transform:matrix(0.011139,-0.000111,0.002500,0.249988,0,0);-ms-transform:matrix(0.011139,-0.000111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011139,-0.000111,0.002500,0.249988,0,0);}
.mde_c00258{transform:matrix(0.012699,-0.000127,0.002500,0.249988,0,0);-ms-transform:matrix(0.012699,-0.000127,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012699,-0.000127,0.002500,0.249988,0,0);}
.m8a_c00258{transform:matrix(0.014952,-0.000314,0.005249,0.249945,0,0);-ms-transform:matrix(0.014952,-0.000314,0.005249,0.249945,0,0);-webkit-transform:matrix(0.014952,-0.000314,0.005249,0.249945,0,0);}
.m121_c00258{transform:matrix(0.016588,-0.000498,0.007497,0.249888,0,0);-ms-transform:matrix(0.016588,-0.000498,0.007497,0.249888,0,0);-webkit-transform:matrix(0.016588,-0.000498,0.007497,0.249888,0,0);}
.m10_c00258{transform:matrix(0.016781,-0.000352,0.005249,0.249945,0,0);-ms-transform:matrix(0.016781,-0.000352,0.005249,0.249945,0,0);-webkit-transform:matrix(0.016781,-0.000352,0.005249,0.249945,0,0);}
.mcc_c00258{transform:matrix(0.019479,-0.000195,0.002500,0.249988,0,0);-ms-transform:matrix(0.019479,-0.000195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.019479,-0.000195,0.002500,0.249988,0,0);}
.m8c_c00258{transform:matrix(0.029903,-0.000628,0.005249,0.249945,0,0);-ms-transform:matrix(0.029903,-0.000628,0.005249,0.249945,0,0);-webkit-transform:matrix(0.029903,-0.000628,0.005249,0.249945,0,0);}
.m13a_c00258{transform:matrix(0.050275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050275,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.065353,-0.001503,0.005748,0.249934,0,0);-ms-transform:matrix(0.065353,-0.001503,0.005748,0.249934,0,0);-webkit-transform:matrix(0.065353,-0.001503,0.005748,0.249934,0,0);}
.mfe_c00258{transform:matrix(0.091674,-0.002750,0.007497,0.249888,0,0);-ms-transform:matrix(0.091674,-0.002750,0.007497,0.249888,0,0);-webkit-transform:matrix(0.091674,-0.002750,0.007497,0.249888,0,0);}
.m5f_c00258{transform:matrix(0.103052,-0.002164,0.005249,0.249945,0,0);-ms-transform:matrix(0.103052,-0.002164,0.005249,0.249945,0,0);-webkit-transform:matrix(0.103052,-0.002164,0.005249,0.249945,0,0);}
.m0_c00258{transform:matrix(0.121958,-0.002805,0.005748,0.249934,0,0);-ms-transform:matrix(0.121958,-0.002805,0.005748,0.249934,0,0);-webkit-transform:matrix(0.121958,-0.002805,0.005748,0.249934,0,0);}
.ma8_c00258{transform:matrix(0.127265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127265,0.000000,0.000000,0.250000,0,0);}
.maf_c00258{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.mb0_c00258{transform:matrix(0.128627,-0.001415,0.002750,0.249985,0,0);-ms-transform:matrix(0.128627,-0.001415,0.002750,0.249985,0,0);-webkit-transform:matrix(0.128627,-0.001415,0.002750,0.249985,0,0);}
.m19_c00258{transform:matrix(0.129556,-0.002721,0.005249,0.249945,0,0);-ms-transform:matrix(0.129556,-0.002721,0.005249,0.249945,0,0);-webkit-transform:matrix(0.129556,-0.002721,0.005249,0.249945,0,0);}
.mcd_c00258{transform:matrix(0.135953,-0.001360,0.002500,0.249988,0,0);-ms-transform:matrix(0.135953,-0.001360,0.002500,0.249988,0,0);-webkit-transform:matrix(0.135953,-0.001360,0.002500,0.249988,0,0);}
.mbb_c00258{transform:matrix(0.136657,-0.001503,0.002750,0.249985,0,0);-ms-transform:matrix(0.136657,-0.001503,0.002750,0.249985,0,0);-webkit-transform:matrix(0.136657,-0.001503,0.002750,0.249985,0,0);}
.m17_c00258{transform:matrix(0.139259,-0.002924,0.005249,0.249945,0,0);-ms-transform:matrix(0.139259,-0.002924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.139259,-0.002924,0.005249,0.249945,0,0);}
.m54_c00258{transform:matrix(0.144813,-0.003041,0.005249,0.249945,0,0);-ms-transform:matrix(0.144813,-0.003041,0.005249,0.249945,0,0);-webkit-transform:matrix(0.144813,-0.003041,0.005249,0.249945,0,0);}
.m81_c00258{transform:matrix(0.149132,-0.003132,0.005249,0.249945,0,0);-ms-transform:matrix(0.149132,-0.003132,0.005249,0.249945,0,0);-webkit-transform:matrix(0.149132,-0.003132,0.005249,0.249945,0,0);}
.m8e_c00258{transform:matrix(0.150437,-0.003159,0.005249,0.249945,0,0);-ms-transform:matrix(0.150437,-0.003159,0.005249,0.249945,0,0);-webkit-transform:matrix(0.150437,-0.003159,0.005249,0.249945,0,0);}
.m39_c00258{transform:matrix(0.150867,-0.003168,0.005249,0.249945,0,0);-ms-transform:matrix(0.150867,-0.003168,0.005249,0.249945,0,0);-webkit-transform:matrix(0.150867,-0.003168,0.005249,0.249945,0,0);}
.m1d_c00258{transform:matrix(0.151397,-0.003179,0.005249,0.249945,0,0);-ms-transform:matrix(0.151397,-0.003179,0.005249,0.249945,0,0);-webkit-transform:matrix(0.151397,-0.003179,0.005249,0.249945,0,0);}
.m70_c00258{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);}
.me8_c00258{transform:matrix(0.156147,-0.004060,0.006498,0.249916,0,0);-ms-transform:matrix(0.156147,-0.004060,0.006498,0.249916,0,0);-webkit-transform:matrix(0.156147,-0.004060,0.006498,0.249916,0,0);}
.m36_c00258{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);}
.m5d_c00258{transform:matrix(0.156565,-0.003288,0.005249,0.249945,0,0);-ms-transform:matrix(0.156565,-0.003288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156565,-0.003288,0.005249,0.249945,0,0);}
.m3b_c00258{transform:matrix(0.157015,-0.003297,0.005249,0.249945,0,0);-ms-transform:matrix(0.157015,-0.003297,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157015,-0.003297,0.005249,0.249945,0,0);}
.m118_c00258{transform:matrix(0.157514,-0.004725,0.007497,0.249888,0,0);-ms-transform:matrix(0.157514,-0.004725,0.007497,0.249888,0,0);-webkit-transform:matrix(0.157514,-0.004725,0.007497,0.249888,0,0);}
.m9f_c00258{transform:matrix(0.157710,-0.003312,0.005249,0.249945,0,0);-ms-transform:matrix(0.157710,-0.003312,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157710,-0.003312,0.005249,0.249945,0,0);}
.m63_c00258{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);}
.m92_c00258{transform:matrix(0.158710,-0.003333,0.005249,0.249945,0,0);-ms-transform:matrix(0.158710,-0.003333,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158710,-0.003333,0.005249,0.249945,0,0);}
.m6a_c00258{transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);-ms-transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);}
.mdc_c00258{transform:matrix(0.159642,-0.001596,0.002500,0.249988,0,0);-ms-transform:matrix(0.159642,-0.001596,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159642,-0.001596,0.002500,0.249988,0,0);}
.m113_c00258{transform:matrix(0.160103,-0.004803,0.007497,0.249888,0,0);-ms-transform:matrix(0.160103,-0.004803,0.007497,0.249888,0,0);-webkit-transform:matrix(0.160103,-0.004803,0.007497,0.249888,0,0);}
.ma2_c00258{transform:matrix(0.162294,-0.003408,0.005249,0.249945,0,0);-ms-transform:matrix(0.162294,-0.003408,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162294,-0.003408,0.005249,0.249945,0,0);}
.mc_c00258{transform:matrix(0.163449,-0.003432,0.005249,0.249945,0,0);-ms-transform:matrix(0.163449,-0.003432,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163449,-0.003432,0.005249,0.249945,0,0);}
.m9e_c00258{transform:matrix(0.164464,-0.003454,0.005249,0.249945,0,0);-ms-transform:matrix(0.164464,-0.003454,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164464,-0.003454,0.005249,0.249945,0,0);}
.m11a_c00258{transform:matrix(0.164676,-0.004940,0.007497,0.249888,0,0);-ms-transform:matrix(0.164676,-0.004940,0.007497,0.249888,0,0);-webkit-transform:matrix(0.164676,-0.004940,0.007497,0.249888,0,0);}
.m35_c00258{transform:matrix(0.165718,-0.003480,0.005249,0.249945,0,0);-ms-transform:matrix(0.165718,-0.003480,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165718,-0.003480,0.005249,0.249945,0,0);}
.me3_c00258{transform:matrix(0.166064,-0.004318,0.006498,0.249916,0,0);-ms-transform:matrix(0.166064,-0.004318,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166064,-0.004318,0.006498,0.249916,0,0);}
.m33_c00258{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);}
.m55_c00258{transform:matrix(0.166513,-0.003497,0.005249,0.249945,0,0);-ms-transform:matrix(0.166513,-0.003497,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166513,-0.003497,0.005249,0.249945,0,0);}
.m32_c00258{transform:matrix(0.167268,-0.003513,0.005249,0.249945,0,0);-ms-transform:matrix(0.167268,-0.003513,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167268,-0.003513,0.005249,0.249945,0,0);}
.m11_c00258{transform:matrix(0.167933,-0.003527,0.005249,0.249945,0,0);-ms-transform:matrix(0.167933,-0.003527,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167933,-0.003527,0.005249,0.249945,0,0);}
.ma0_c00258{transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);-ms-transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);}
.mab_c00258{transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);}
.me5_c00258{transform:matrix(0.169118,-0.004397,0.006498,0.249916,0,0);-ms-transform:matrix(0.169118,-0.004397,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169118,-0.004397,0.006498,0.249916,0,0);}
.m56_c00258{transform:matrix(0.169963,-0.003569,0.005249,0.249945,0,0);-ms-transform:matrix(0.169963,-0.003569,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169963,-0.003569,0.005249,0.249945,0,0);}
.mf0_c00258{transform:matrix(0.170747,-0.004439,0.006498,0.249916,0,0);-ms-transform:matrix(0.170747,-0.004439,0.006498,0.249916,0,0);-webkit-transform:matrix(0.170747,-0.004439,0.006498,0.249916,0,0);}
.m83_c00258{transform:matrix(0.170777,-0.003586,0.005249,0.249945,0,0);-ms-transform:matrix(0.170777,-0.003586,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170777,-0.003586,0.005249,0.249945,0,0);}
.m1e_c00258{transform:matrix(0.171222,-0.003596,0.005249,0.249945,0,0);-ms-transform:matrix(0.171222,-0.003596,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171222,-0.003596,0.005249,0.249945,0,0);}
.m91_c00258{transform:matrix(0.171792,-0.003608,0.005249,0.249945,0,0);-ms-transform:matrix(0.171792,-0.003608,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171792,-0.003608,0.005249,0.249945,0,0);}
.m5c_c00258{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);}
.me1_c00258{transform:matrix(0.172787,-0.004492,0.006498,0.249916,0,0);-ms-transform:matrix(0.172787,-0.004492,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172787,-0.004492,0.006498,0.249916,0,0);}
.m69_c00258{transform:matrix(0.173762,-0.003649,0.005249,0.249945,0,0);-ms-transform:matrix(0.173762,-0.003649,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173762,-0.003649,0.005249,0.249945,0,0);}
.m120_c00258{transform:matrix(0.174217,-0.005226,0.007497,0.249888,0,0);-ms-transform:matrix(0.174217,-0.005226,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174217,-0.005226,0.007497,0.249888,0,0);}
.m117_c00258{transform:matrix(0.174477,-0.005234,0.007497,0.249888,0,0);-ms-transform:matrix(0.174477,-0.005234,0.007497,0.249888,0,0);-webkit-transform:matrix(0.174477,-0.005234,0.007497,0.249888,0,0);}
.m25_c00258{transform:matrix(0.174686,-0.003668,0.005249,0.249945,0,0);-ms-transform:matrix(0.174686,-0.003668,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174686,-0.003668,0.005249,0.249945,0,0);}
.mda_c00258{transform:matrix(0.174991,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.174991,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174991,-0.001750,0.002500,0.249988,0,0);}
.mbd_c00258{transform:matrix(0.176384,-0.001940,0.002750,0.249985,0,0);-ms-transform:matrix(0.176384,-0.001940,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176384,-0.001940,0.002750,0.249985,0,0);}
.m90_c00258{transform:matrix(0.176601,-0.003709,0.005249,0.249945,0,0);-ms-transform:matrix(0.176601,-0.003709,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176601,-0.003709,0.005249,0.249945,0,0);}
.m110_c00258{transform:matrix(0.177050,-0.005312,0.007497,0.249888,0,0);-ms-transform:matrix(0.177050,-0.005312,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177050,-0.005312,0.007497,0.249888,0,0);}
.m102_c00258{transform:matrix(0.177155,-0.005315,0.007497,0.249888,0,0);-ms-transform:matrix(0.177155,-0.005315,0.007497,0.249888,0,0);-webkit-transform:matrix(0.177155,-0.005315,0.007497,0.249888,0,0);}
.m95_c00258{transform:matrix(0.177241,-0.003722,0.005249,0.249945,0,0);-ms-transform:matrix(0.177241,-0.003722,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177241,-0.003722,0.005249,0.249945,0,0);}
.ma4_c00258{transform:matrix(0.179175,-0.003763,0.005249,0.249945,0,0);-ms-transform:matrix(0.179175,-0.003763,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179175,-0.003763,0.005249,0.249945,0,0);}
.m13_c00258{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);}
.mbc_c00258{transform:matrix(0.179614,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179614,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179614,-0.001976,0.002750,0.249985,0,0);}
.m10f_c00258{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);}
.m21_c00258{transform:matrix(0.180785,-0.003796,0.005249,0.249945,0,0);-ms-transform:matrix(0.180785,-0.003796,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180785,-0.003796,0.005249,0.249945,0,0);}
.m111_c00258{transform:matrix(0.181099,-0.005433,0.007497,0.249888,0,0);-ms-transform:matrix(0.181099,-0.005433,0.007497,0.249888,0,0);-webkit-transform:matrix(0.181099,-0.005433,0.007497,0.249888,0,0);}
.m34_c00258{transform:matrix(0.182175,-0.003826,0.005249,0.249945,0,0);-ms-transform:matrix(0.182175,-0.003826,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182175,-0.003826,0.005249,0.249945,0,0);}
.m6e_c00258{transform:matrix(0.183769,-0.003859,0.005249,0.249945,0,0);-ms-transform:matrix(0.183769,-0.003859,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183769,-0.003859,0.005249,0.249945,0,0);}
.maa_c00258{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);}
.m9d_c00258{transform:matrix(0.184009,-0.003864,0.005249,0.249945,0,0);-ms-transform:matrix(0.184009,-0.003864,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184009,-0.003864,0.005249,0.249945,0,0);}
.m3f_c00258{transform:matrix(0.184214,-0.003869,0.005249,0.249945,0,0);-ms-transform:matrix(0.184214,-0.003869,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184214,-0.003869,0.005249,0.249945,0,0);}
.m53_c00258{transform:matrix(0.184314,-0.003871,0.005249,0.249945,0,0);-ms-transform:matrix(0.184314,-0.003871,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184314,-0.003871,0.005249,0.249945,0,0);}
.m18_c00258{transform:matrix(0.184324,-0.003871,0.005249,0.249945,0,0);-ms-transform:matrix(0.184324,-0.003871,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184324,-0.003871,0.005249,0.249945,0,0);}
.m9c_c00258{transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);-ms-transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);}
.m47_c00258{transform:matrix(0.184849,-0.003882,0.005249,0.249945,0,0);-ms-transform:matrix(0.184849,-0.003882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184849,-0.003882,0.005249,0.249945,0,0);}
.m15_c00258{transform:matrix(0.185199,-0.003889,0.005249,0.249945,0,0);-ms-transform:matrix(0.185199,-0.003889,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185199,-0.003889,0.005249,0.249945,0,0);}
.me6_c00258{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);}
.m2e_c00258{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);}
.m73_c00258{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);}
.m6f_c00258{transform:matrix(0.188034,-0.003949,0.005249,0.249945,0,0);-ms-transform:matrix(0.188034,-0.003949,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188034,-0.003949,0.005249,0.249945,0,0);}
.me7_c00258{transform:matrix(0.188696,-0.004906,0.006498,0.249916,0,0);-ms-transform:matrix(0.188696,-0.004906,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188696,-0.004906,0.006498,0.249916,0,0);}
.m22_c00258{transform:matrix(0.188848,-0.003966,0.005249,0.249945,0,0);-ms-transform:matrix(0.188848,-0.003966,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188848,-0.003966,0.005249,0.249945,0,0);}
.mca_c00258{transform:matrix(0.189134,-0.002080,0.002750,0.249985,0,0);-ms-transform:matrix(0.189134,-0.002080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189134,-0.002080,0.002750,0.249985,0,0);}
.mc1_c00258{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);}
.mf1_c00258{transform:matrix(0.189861,-0.004936,0.006498,0.249916,0,0);-ms-transform:matrix(0.189861,-0.004936,0.006498,0.249916,0,0);-webkit-transform:matrix(0.189861,-0.004936,0.006498,0.249916,0,0);}
.m27_c00258{transform:matrix(0.190063,-0.003991,0.005249,0.249945,0,0);-ms-transform:matrix(0.190063,-0.003991,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190063,-0.003991,0.005249,0.249945,0,0);}
.m64_c00258{transform:matrix(0.190293,-0.003996,0.005249,0.249945,0,0);-ms-transform:matrix(0.190293,-0.003996,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190293,-0.003996,0.005249,0.249945,0,0);}
.m12b_c00258{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);}
.m66_c00258{transform:matrix(0.190588,-0.004002,0.005249,0.249945,0,0);-ms-transform:matrix(0.190588,-0.004002,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190588,-0.004002,0.005249,0.249945,0,0);}
.m89_c00258{transform:matrix(0.190608,-0.004003,0.005249,0.249945,0,0);-ms-transform:matrix(0.190608,-0.004003,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190608,-0.004003,0.005249,0.249945,0,0);}
.m13b_c00258{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);}
.me0_c00258{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);}
.m128_c00258{transform:matrix(0.190969,-0.005729,0.007497,0.249888,0,0);-ms-transform:matrix(0.190969,-0.005729,0.007497,0.249888,0,0);-webkit-transform:matrix(0.190969,-0.005729,0.007497,0.249888,0,0);}
.m1b_c00258{transform:matrix(0.191168,-0.004015,0.005249,0.249945,0,0);-ms-transform:matrix(0.191168,-0.004015,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191168,-0.004015,0.005249,0.249945,0,0);}
.m65_c00258{transform:matrix(0.191188,-0.004015,0.005249,0.249945,0,0);-ms-transform:matrix(0.191188,-0.004015,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191188,-0.004015,0.005249,0.249945,0,0);}
.m40_c00258{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);}
.m5e_c00258{transform:matrix(0.191478,-0.004021,0.005249,0.249945,0,0);-ms-transform:matrix(0.191478,-0.004021,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191478,-0.004021,0.005249,0.249945,0,0);}
.m62_c00258{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);}
.m24_c00258{transform:matrix(0.192488,-0.004042,0.005249,0.249945,0,0);-ms-transform:matrix(0.192488,-0.004042,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192488,-0.004042,0.005249,0.249945,0,0);}
.m31_c00258{transform:matrix(0.193022,-0.004053,0.005249,0.249945,0,0);-ms-transform:matrix(0.193022,-0.004053,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193022,-0.004053,0.005249,0.249945,0,0);}
.m2f_c00258{transform:matrix(0.193107,-0.004055,0.005249,0.249945,0,0);-ms-transform:matrix(0.193107,-0.004055,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193107,-0.004055,0.005249,0.249945,0,0);}
.me2_c00258{transform:matrix(0.193470,-0.005030,0.006498,0.249916,0,0);-ms-transform:matrix(0.193470,-0.005030,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193470,-0.005030,0.006498,0.249916,0,0);}
.m72_c00258{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);}
.m109_c00258{transform:matrix(0.194198,-0.005826,0.007497,0.249888,0,0);-ms-transform:matrix(0.194198,-0.005826,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194198,-0.005826,0.007497,0.249888,0,0);}
.m115_c00258{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);}
.m13f_c00258{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);}
.ma5_c00258{transform:matrix(0.195162,-0.004098,0.005249,0.249945,0,0);-ms-transform:matrix(0.195162,-0.004098,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195162,-0.004098,0.005249,0.249945,0,0);}
.m138_c00258{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);}
.m20_c00258{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);}
.m58_c00258{transform:matrix(0.195832,-0.004112,0.005249,0.249945,0,0);-ms-transform:matrix(0.195832,-0.004112,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195832,-0.004112,0.005249,0.249945,0,0);}
.md1_c00258{transform:matrix(0.196725,-0.001967,0.002500,0.249988,0,0);-ms-transform:matrix(0.196725,-0.001967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196725,-0.001967,0.002500,0.249988,0,0);}
.m1c_c00258{transform:matrix(0.196892,-0.004135,0.005249,0.249945,0,0);-ms-transform:matrix(0.196892,-0.004135,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196892,-0.004135,0.005249,0.249945,0,0);}
.m3c_c00258{transform:matrix(0.197461,-0.004147,0.005249,0.249945,0,0);-ms-transform:matrix(0.197461,-0.004147,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197461,-0.004147,0.005249,0.249945,0,0);}
.mac_c00258{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);}
.m6c_c00258{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);}
.m103_c00258{transform:matrix(0.197566,-0.005927,0.007497,0.249888,0,0);-ms-transform:matrix(0.197566,-0.005927,0.007497,0.249888,0,0);-webkit-transform:matrix(0.197566,-0.005927,0.007497,0.249888,0,0);}
.md9_c00258{transform:matrix(0.197655,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197655,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197655,-0.001977,0.002500,0.249988,0,0);}
.m30_c00258{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);}
.m77_c00258{transform:matrix(0.198486,-0.004168,0.005249,0.249945,0,0);-ms-transform:matrix(0.198486,-0.004168,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198486,-0.004168,0.005249,0.249945,0,0);}
.m78_c00258{transform:matrix(0.198656,-0.004172,0.005249,0.249945,0,0);-ms-transform:matrix(0.198656,-0.004172,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198656,-0.004172,0.005249,0.249945,0,0);}
.mc8_c00258{transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);}
.mfc_c00258{transform:matrix(0.200012,-0.005200,0.006498,0.249916,0,0);-ms-transform:matrix(0.200012,-0.005200,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200012,-0.005200,0.006498,0.249916,0,0);}
.mb6_c00258{transform:matrix(0.200288,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200288,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200288,-0.002203,0.002750,0.249985,0,0);}
.mf_c00258{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);}
.m1a_c00258{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);}
.mb5_c00258{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);}
.m6d_c00258{transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);-ms-transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);}
.ma7_c00258{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);}
.m38_c00258{transform:matrix(0.201376,-0.004229,0.005249,0.249945,0,0);-ms-transform:matrix(0.201376,-0.004229,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201376,-0.004229,0.005249,0.249945,0,0);}
.m26_c00258{transform:matrix(0.201411,-0.004230,0.005249,0.249945,0,0);-ms-transform:matrix(0.201411,-0.004230,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201411,-0.004230,0.005249,0.249945,0,0);}
.m7b_c00258{transform:matrix(0.202435,-0.004251,0.005249,0.249945,0,0);-ms-transform:matrix(0.202435,-0.004251,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202435,-0.004251,0.005249,0.249945,0,0);}
.m12c_c00258{transform:matrix(0.202719,-0.006082,0.007497,0.249888,0,0);-ms-transform:matrix(0.202719,-0.006082,0.007497,0.249888,0,0);-webkit-transform:matrix(0.202719,-0.006082,0.007497,0.249888,0,0);}
.md8_c00258{transform:matrix(0.203535,-0.002035,0.002500,0.249988,0,0);-ms-transform:matrix(0.203535,-0.002035,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203535,-0.002035,0.002500,0.249988,0,0);}
.me_c00258{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);}
.m104_c00258{transform:matrix(0.203648,-0.006109,0.007497,0.249888,0,0);-ms-transform:matrix(0.203648,-0.006109,0.007497,0.249888,0,0);-webkit-transform:matrix(0.203648,-0.006109,0.007497,0.249888,0,0);}
.m14_c00258{transform:matrix(0.203815,-0.004280,0.005249,0.249945,0,0);-ms-transform:matrix(0.203815,-0.004280,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203815,-0.004280,0.005249,0.249945,0,0);}
.m60_c00258{transform:matrix(0.204085,-0.004286,0.005249,0.249945,0,0);-ms-transform:matrix(0.204085,-0.004286,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204085,-0.004286,0.005249,0.249945,0,0);}
.m61_c00258{transform:matrix(0.204265,-0.004290,0.005249,0.249945,0,0);-ms-transform:matrix(0.204265,-0.004290,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204265,-0.004290,0.005249,0.249945,0,0);}
.m124_c00258{transform:matrix(0.204268,-0.006128,0.007497,0.249888,0,0);-ms-transform:matrix(0.204268,-0.006128,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204268,-0.006128,0.007497,0.249888,0,0);}
.m2c_c00258{transform:matrix(0.204300,-0.004290,0.005249,0.249945,0,0);-ms-transform:matrix(0.204300,-0.004290,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204300,-0.004290,0.005249,0.249945,0,0);}
.m105_c00258{transform:matrix(0.204703,-0.006141,0.007497,0.249888,0,0);-ms-transform:matrix(0.204703,-0.006141,0.007497,0.249888,0,0);-webkit-transform:matrix(0.204703,-0.006141,0.007497,0.249888,0,0);}
.m68_c00258{transform:matrix(0.205000,-0.004305,0.005249,0.249945,0,0);-ms-transform:matrix(0.205000,-0.004305,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205000,-0.004305,0.005249,0.249945,0,0);}
.mc0_c00258{transform:matrix(0.205128,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205128,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205128,-0.002256,0.002750,0.249985,0,0);}
.m29_c00258{transform:matrix(0.205160,-0.004308,0.005249,0.249945,0,0);-ms-transform:matrix(0.205160,-0.004308,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205160,-0.004308,0.005249,0.249945,0,0);}
.m10d_c00258{transform:matrix(0.205243,-0.006157,0.007497,0.249888,0,0);-ms-transform:matrix(0.205243,-0.006157,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205243,-0.006157,0.007497,0.249888,0,0);}
.ma6_c00258{transform:matrix(0.205285,-0.004311,0.005249,0.249945,0,0);-ms-transform:matrix(0.205285,-0.004311,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205285,-0.004311,0.005249,0.249945,0,0);}
.m112_c00258{transform:matrix(0.205573,-0.006167,0.007497,0.249888,0,0);-ms-transform:matrix(0.205573,-0.006167,0.007497,0.249888,0,0);-webkit-transform:matrix(0.205573,-0.006167,0.007497,0.249888,0,0);}
.m59_c00258{transform:matrix(0.206000,-0.004326,0.005249,0.249945,0,0);-ms-transform:matrix(0.206000,-0.004326,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206000,-0.004326,0.005249,0.249945,0,0);}
.mfa_c00258{transform:matrix(0.206475,-0.005368,0.006498,0.249916,0,0);-ms-transform:matrix(0.206475,-0.005368,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206475,-0.005368,0.006498,0.249916,0,0);}
.m2b_c00258{transform:matrix(0.207164,-0.004350,0.005249,0.249945,0,0);-ms-transform:matrix(0.207164,-0.004350,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207164,-0.004350,0.005249,0.249945,0,0);}
.m100_c00258{transform:matrix(0.208181,-0.006245,0.007497,0.249888,0,0);-ms-transform:matrix(0.208181,-0.006245,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208181,-0.006245,0.007497,0.249888,0,0);}
.mbf_c00258{transform:matrix(0.208332,-0.002292,0.002750,0.249985,0,0);-ms-transform:matrix(0.208332,-0.002292,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208332,-0.002292,0.002750,0.249985,0,0);}
.m3a_c00258{transform:matrix(0.208754,-0.004384,0.005249,0.249945,0,0);-ms-transform:matrix(0.208754,-0.004384,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208754,-0.004384,0.005249,0.249945,0,0);}
.m101_c00258{transform:matrix(0.209056,-0.006272,0.007497,0.249888,0,0);-ms-transform:matrix(0.209056,-0.006272,0.007497,0.249888,0,0);-webkit-transform:matrix(0.209056,-0.006272,0.007497,0.249888,0,0);}
.m8b_c00258{transform:matrix(0.209544,-0.004400,0.005249,0.249945,0,0);-ms-transform:matrix(0.209544,-0.004400,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209544,-0.004400,0.005249,0.249945,0,0);}
.mf8_c00258{transform:matrix(0.210554,-0.005474,0.006498,0.249916,0,0);-ms-transform:matrix(0.210554,-0.005474,0.006498,0.249916,0,0);-webkit-transform:matrix(0.210554,-0.005474,0.006498,0.249916,0,0);}
.mc5_c00258{transform:matrix(0.210962,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.210962,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210962,-0.002321,0.002750,0.249985,0,0);}
.m3e_c00258{transform:matrix(0.211158,-0.004434,0.005249,0.249945,0,0);-ms-transform:matrix(0.211158,-0.004434,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211158,-0.004434,0.005249,0.249945,0,0);}
.m57_c00258{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);}
.mba_c00258{transform:matrix(0.211377,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211377,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211377,-0.002325,0.002750,0.249985,0,0);}
.mb_c00258{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);}
.md_c00258{transform:matrix(0.211683,-0.004445,0.005249,0.249945,0,0);-ms-transform:matrix(0.211683,-0.004445,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211683,-0.004445,0.005249,0.249945,0,0);}
.m4e_c00258{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);}
.m10c_c00258{transform:matrix(0.212230,-0.006367,0.007497,0.249888,0,0);-ms-transform:matrix(0.212230,-0.006367,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212230,-0.006367,0.007497,0.249888,0,0);}
.m10a_c00258{transform:matrix(0.212279,-0.006368,0.007497,0.249888,0,0);-ms-transform:matrix(0.212279,-0.006368,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212279,-0.006368,0.007497,0.249888,0,0);}
.m125_c00258{transform:matrix(0.212424,-0.006373,0.007497,0.249888,0,0);-ms-transform:matrix(0.212424,-0.006373,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212424,-0.006373,0.007497,0.249888,0,0);}
.m5b_c00258{transform:matrix(0.212558,-0.004464,0.005249,0.249945,0,0);-ms-transform:matrix(0.212558,-0.004464,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212558,-0.004464,0.005249,0.249945,0,0);}
.m2d_c00258{transform:matrix(0.213018,-0.004473,0.005249,0.249945,0,0);-ms-transform:matrix(0.213018,-0.004473,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213018,-0.004473,0.005249,0.249945,0,0);}
.m67_c00258{transform:matrix(0.213273,-0.004479,0.005249,0.249945,0,0);-ms-transform:matrix(0.213273,-0.004479,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213273,-0.004479,0.005249,0.249945,0,0);}
.mf5_c00258{transform:matrix(0.213763,-0.005558,0.006498,0.249916,0,0);-ms-transform:matrix(0.213763,-0.005558,0.006498,0.249916,0,0);-webkit-transform:matrix(0.213763,-0.005558,0.006498,0.249916,0,0);}
.m23_c00258{transform:matrix(0.213848,-0.004491,0.005249,0.249945,0,0);-ms-transform:matrix(0.213848,-0.004491,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213848,-0.004491,0.005249,0.249945,0,0);}
.m48_c00258{transform:matrix(0.214123,-0.004497,0.005249,0.249945,0,0);-ms-transform:matrix(0.214123,-0.004497,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214123,-0.004497,0.005249,0.249945,0,0);}
.mcf_c00258{transform:matrix(0.214214,-0.002142,0.002500,0.249988,0,0);-ms-transform:matrix(0.214214,-0.002142,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214214,-0.002142,0.002500,0.249988,0,0);}
.m5a_c00258{transform:matrix(0.214308,-0.004500,0.005249,0.249945,0,0);-ms-transform:matrix(0.214308,-0.004500,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214308,-0.004500,0.005249,0.249945,0,0);}
.m6b_c00258{transform:matrix(0.214808,-0.004511,0.005249,0.249945,0,0);-ms-transform:matrix(0.214808,-0.004511,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214808,-0.004511,0.005249,0.249945,0,0);}
.m82_c00258{transform:matrix(0.216352,-0.004543,0.005249,0.249945,0,0);-ms-transform:matrix(0.216352,-0.004543,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216352,-0.004543,0.005249,0.249945,0,0);}
.m126_c00258{transform:matrix(0.216543,-0.006496,0.007497,0.249888,0,0);-ms-transform:matrix(0.216543,-0.006496,0.007497,0.249888,0,0);-webkit-transform:matrix(0.216543,-0.006496,0.007497,0.249888,0,0);}
.m2a_c00258{transform:matrix(0.216807,-0.004553,0.005249,0.249945,0,0);-ms-transform:matrix(0.216807,-0.004553,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216807,-0.004553,0.005249,0.249945,0,0);}
.m86_c00258{transform:matrix(0.216912,-0.004555,0.005249,0.249945,0,0);-ms-transform:matrix(0.216912,-0.004555,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216912,-0.004555,0.005249,0.249945,0,0);}
.mbe_c00258{transform:matrix(0.217092,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217092,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217092,-0.002388,0.002750,0.249985,0,0);}
.m11e_c00258{transform:matrix(0.218157,-0.006545,0.007497,0.249888,0,0);-ms-transform:matrix(0.218157,-0.006545,0.007497,0.249888,0,0);-webkit-transform:matrix(0.218157,-0.006545,0.007497,0.249888,0,0);}
.m13c_c00258{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.mf2_c00258{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);}
.med_c00258{transform:matrix(0.219131,-0.005697,0.006498,0.249916,0,0);-ms-transform:matrix(0.219131,-0.005697,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219131,-0.005697,0.006498,0.249916,0,0);}
.me4_c00258{transform:matrix(0.219416,-0.005705,0.006498,0.249916,0,0);-ms-transform:matrix(0.219416,-0.005705,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219416,-0.005705,0.006498,0.249916,0,0);}
.mef_c00258{transform:matrix(0.219476,-0.005706,0.006498,0.249916,0,0);-ms-transform:matrix(0.219476,-0.005706,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219476,-0.005706,0.006498,0.249916,0,0);}
.m51_c00258{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);}
.m4a_c00258{transform:matrix(0.220466,-0.004630,0.005249,0.249945,0,0);-ms-transform:matrix(0.220466,-0.004630,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220466,-0.004630,0.005249,0.249945,0,0);}
.m74_c00258{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);}
.m71_c00258{transform:matrix(0.221211,-0.004645,0.005249,0.249945,0,0);-ms-transform:matrix(0.221211,-0.004645,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221211,-0.004645,0.005249,0.249945,0,0);}
.m9a_c00258{transform:matrix(0.221346,-0.004648,0.005249,0.249945,0,0);-ms-transform:matrix(0.221346,-0.004648,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221346,-0.004648,0.005249,0.249945,0,0);}
.md7_c00258{transform:matrix(0.221679,-0.002217,0.002500,0.249988,0,0);-ms-transform:matrix(0.221679,-0.002217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221679,-0.002217,0.002500,0.249988,0,0);}
.m1f_c00258{transform:matrix(0.221756,-0.004657,0.005249,0.249945,0,0);-ms-transform:matrix(0.221756,-0.004657,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221756,-0.004657,0.005249,0.249945,0,0);}
.m79_c00258{transform:matrix(0.222986,-0.004683,0.005249,0.249945,0,0);-ms-transform:matrix(0.222986,-0.004683,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222986,-0.004683,0.005249,0.249945,0,0);}
.m106_c00258{transform:matrix(0.223340,-0.006700,0.007497,0.249888,0,0);-ms-transform:matrix(0.223340,-0.006700,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223340,-0.006700,0.007497,0.249888,0,0);}
.m11c_c00258{transform:matrix(0.223414,-0.006702,0.007497,0.249888,0,0);-ms-transform:matrix(0.223414,-0.006702,0.007497,0.249888,0,0);-webkit-transform:matrix(0.223414,-0.006702,0.007497,0.249888,0,0);}
.mee_c00258{transform:matrix(0.223954,-0.005823,0.006498,0.249916,0,0);-ms-transform:matrix(0.223954,-0.005823,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223954,-0.005823,0.006498,0.249916,0,0);}
.m3_c00258{transform:matrix(0.226320,-0.005205,0.005748,0.249934,0,0);-ms-transform:matrix(0.226320,-0.005205,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226320,-0.005205,0.005748,0.249934,0,0);}
.mff_c00258{transform:matrix(0.226713,-0.006801,0.007497,0.249888,0,0);-ms-transform:matrix(0.226713,-0.006801,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226713,-0.006801,0.007497,0.249888,0,0);}
.m4b_c00258{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);}
.m12_c00258{transform:matrix(0.227760,-0.004783,0.005249,0.249945,0,0);-ms-transform:matrix(0.227760,-0.004783,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227760,-0.004783,0.005249,0.249945,0,0);}
.m41_c00258{transform:matrix(0.228140,-0.004791,0.005249,0.249945,0,0);-ms-transform:matrix(0.228140,-0.004791,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228140,-0.004791,0.005249,0.249945,0,0);}
.mea_c00258{transform:matrix(0.228468,-0.005940,0.006498,0.249916,0,0);-ms-transform:matrix(0.228468,-0.005940,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228468,-0.005940,0.006498,0.249916,0,0);}
.m28_c00258{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);}
.m131_c00258{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);}
.m11b_c00258{transform:matrix(0.231041,-0.006931,0.007497,0.249888,0,0);-ms-transform:matrix(0.231041,-0.006931,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231041,-0.006931,0.007497,0.249888,0,0);}
.m76_c00258{transform:matrix(0.231629,-0.004864,0.005249,0.249945,0,0);-ms-transform:matrix(0.231629,-0.004864,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231629,-0.004864,0.005249,0.249945,0,0);}
.m123_c00258{transform:matrix(0.232096,-0.006963,0.007497,0.249888,0,0);-ms-transform:matrix(0.232096,-0.006963,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232096,-0.006963,0.007497,0.249888,0,0);}
.m16_c00258{transform:matrix(0.232734,-0.004887,0.005249,0.249945,0,0);-ms-transform:matrix(0.232734,-0.004887,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232734,-0.004887,0.005249,0.249945,0,0);}
.m7f_c00258{transform:matrix(0.233429,-0.004902,0.005249,0.249945,0,0);-ms-transform:matrix(0.233429,-0.004902,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233429,-0.004902,0.005249,0.249945,0,0);}
.m37_c00258{transform:matrix(0.233564,-0.004905,0.005249,0.249945,0,0);-ms-transform:matrix(0.233564,-0.004905,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233564,-0.004905,0.005249,0.249945,0,0);}
.m10b_c00258{transform:matrix(0.233980,-0.007019,0.007497,0.249888,0,0);-ms-transform:matrix(0.233980,-0.007019,0.007497,0.249888,0,0);-webkit-transform:matrix(0.233980,-0.007019,0.007497,0.249888,0,0);}
.m9b_c00258{transform:matrix(0.234433,-0.004923,0.005249,0.249945,0,0);-ms-transform:matrix(0.234433,-0.004923,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234433,-0.004923,0.005249,0.249945,0,0);}
.m12d_c00258{transform:matrix(0.234744,-0.007042,0.007497,0.249888,0,0);-ms-transform:matrix(0.234744,-0.007042,0.007497,0.249888,0,0);-webkit-transform:matrix(0.234744,-0.007042,0.007497,0.249888,0,0);}
.m127_c00258{transform:matrix(0.235544,-0.007066,0.007497,0.249888,0,0);-ms-transform:matrix(0.235544,-0.007066,0.007497,0.249888,0,0);-webkit-transform:matrix(0.235544,-0.007066,0.007497,0.249888,0,0);}
.m43_c00258{transform:matrix(0.236053,-0.004957,0.005249,0.249945,0,0);-ms-transform:matrix(0.236053,-0.004957,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236053,-0.004957,0.005249,0.249945,0,0);}
.mae_c00258{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);}
.mec_c00258{transform:matrix(0.237660,-0.006179,0.006498,0.249916,0,0);-ms-transform:matrix(0.237660,-0.006179,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237660,-0.006179,0.006498,0.249916,0,0);}
.mdb_c00258{transform:matrix(0.237728,-0.002377,0.002500,0.249988,0,0);-ms-transform:matrix(0.237728,-0.002377,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237728,-0.002377,0.002500,0.249988,0,0);}
.m4c_c00258{transform:matrix(0.238108,-0.005000,0.005249,0.249945,0,0);-ms-transform:matrix(0.238108,-0.005000,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238108,-0.005000,0.005249,0.249945,0,0);}
.mad_c00258{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);}
.m52_c00258{transform:matrix(0.239717,-0.005034,0.005249,0.249945,0,0);-ms-transform:matrix(0.239717,-0.005034,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239717,-0.005034,0.005249,0.249945,0,0);}
.m4d_c00258{transform:matrix(0.243476,-0.005113,0.005249,0.249945,0,0);-ms-transform:matrix(0.243476,-0.005113,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243476,-0.005113,0.005249,0.249945,0,0);}
.m94_c00258{transform:matrix(0.246696,-0.005181,0.005249,0.249945,0,0);-ms-transform:matrix(0.246696,-0.005181,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246696,-0.005181,0.005249,0.249945,0,0);}
.m7_c00258{transform:matrix(0.246900,-0.005679,0.005748,0.249934,0,0);-ms-transform:matrix(0.246900,-0.005679,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246900,-0.005679,0.005748,0.249934,0,0);}
.m114_c00258{transform:matrix(0.247254,-0.007418,0.007497,0.249888,0,0);-ms-transform:matrix(0.247254,-0.007418,0.007497,0.249888,0,0);-webkit-transform:matrix(0.247254,-0.007418,0.007497,0.249888,0,0);}
.m12e_c00258{transform:matrix(0.247759,-0.007433,0.007497,0.249888,0,0);-ms-transform:matrix(0.247759,-0.007433,0.007497,0.249888,0,0);-webkit-transform:matrix(0.247759,-0.007433,0.007497,0.249888,0,0);}
.m9_c00258{transform:matrix(0.248324,-0.005711,0.005748,0.249934,0,0);-ms-transform:matrix(0.248324,-0.005711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248324,-0.005711,0.005748,0.249934,0,0);}
.m108_c00258{transform:matrix(0.249283,-0.007478,0.007497,0.249888,0,0);-ms-transform:matrix(0.249283,-0.007478,0.007497,0.249888,0,0);-webkit-transform:matrix(0.249283,-0.007478,0.007497,0.249888,0,0);}
.ma3_c00258{transform:matrix(0.249695,-0.005244,0.005249,0.249945,0,0);-ms-transform:matrix(0.249695,-0.005244,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249695,-0.005244,0.005249,0.249945,0,0);}
.mb7_c00258{transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);-ms-transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);}
.m119_c00258{transform:matrix(0.250837,-0.007525,0.007497,0.249888,0,0);-ms-transform:matrix(0.250837,-0.007525,0.007497,0.249888,0,0);-webkit-transform:matrix(0.250837,-0.007525,0.007497,0.249888,0,0);}
.m4f_c00258{transform:matrix(0.251590,-0.005283,0.005249,0.249945,0,0);-ms-transform:matrix(0.251590,-0.005283,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251590,-0.005283,0.005249,0.249945,0,0);}
.md0_c00258{transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);-ms-transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);}
.mc6_c00258{transform:matrix(0.253305,-0.002786,0.002750,0.249985,0,0);-ms-transform:matrix(0.253305,-0.002786,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253305,-0.002786,0.002750,0.249985,0,0);}
.m46_c00258{transform:matrix(0.253439,-0.005322,0.005249,0.249945,0,0);-ms-transform:matrix(0.253439,-0.005322,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253439,-0.005322,0.005249,0.249945,0,0);}
.m85_c00258{transform:matrix(0.255874,-0.005373,0.005249,0.249945,0,0);-ms-transform:matrix(0.255874,-0.005373,0.005249,0.249945,0,0);-webkit-transform:matrix(0.255874,-0.005373,0.005249,0.249945,0,0);}
.m107_c00258{transform:matrix(0.255920,-0.007678,0.007497,0.249888,0,0);-ms-transform:matrix(0.255920,-0.007678,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255920,-0.007678,0.007497,0.249888,0,0);}
.m44_c00258{transform:matrix(0.258183,-0.005422,0.005249,0.249945,0,0);-ms-transform:matrix(0.258183,-0.005422,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258183,-0.005422,0.005249,0.249945,0,0);}
.mc4_c00258{transform:matrix(0.258949,-0.002848,0.002750,0.249985,0,0);-ms-transform:matrix(0.258949,-0.002848,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258949,-0.002848,0.002750,0.249985,0,0);}
.m3d_c00258{transform:matrix(0.260233,-0.005465,0.005249,0.249945,0,0);-ms-transform:matrix(0.260233,-0.005465,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260233,-0.005465,0.005249,0.249945,0,0);}
.md3_c00258{transform:matrix(0.260987,-0.002610,0.002500,0.249988,0,0);-ms-transform:matrix(0.260987,-0.002610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260987,-0.002610,0.002500,0.249988,0,0);}
.m7e_c00258{transform:matrix(0.263202,-0.005527,0.005249,0.249945,0,0);-ms-transform:matrix(0.263202,-0.005527,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263202,-0.005527,0.005249,0.249945,0,0);}
.m2_c00258{transform:matrix(0.264135,-0.006075,0.005748,0.249934,0,0);-ms-transform:matrix(0.264135,-0.006075,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264135,-0.006075,0.005748,0.249934,0,0);}
.m88_c00258{transform:matrix(0.264282,-0.005550,0.005249,0.249945,0,0);-ms-transform:matrix(0.264282,-0.005550,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264282,-0.005550,0.005249,0.249945,0,0);}
.m8_c00258{transform:matrix(0.266974,-0.006140,0.005748,0.249934,0,0);-ms-transform:matrix(0.266974,-0.006140,0.005748,0.249934,0,0);-webkit-transform:matrix(0.266974,-0.006140,0.005748,0.249934,0,0);}
.m93_c00258{transform:matrix(0.267091,-0.005609,0.005249,0.249945,0,0);-ms-transform:matrix(0.267091,-0.005609,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267091,-0.005609,0.005249,0.249945,0,0);}
.m136_c00258{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);}
.m49_c00258{transform:matrix(0.268221,-0.005633,0.005249,0.249945,0,0);-ms-transform:matrix(0.268221,-0.005633,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268221,-0.005633,0.005249,0.249945,0,0);}
.mfb_c00258{transform:matrix(0.268714,-0.006987,0.006498,0.249916,0,0);-ms-transform:matrix(0.268714,-0.006987,0.006498,0.249916,0,0);-webkit-transform:matrix(0.268714,-0.006987,0.006498,0.249916,0,0);}
.mb8_c00258{transform:matrix(0.269319,-0.002963,0.002750,0.249985,0,0);-ms-transform:matrix(0.269319,-0.002963,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269319,-0.002963,0.002750,0.249985,0,0);}
.md5_c00258{transform:matrix(0.269997,-0.002700,0.002500,0.249988,0,0);-ms-transform:matrix(0.269997,-0.002700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269997,-0.002700,0.002500,0.249988,0,0);}
.mce_c00258{transform:matrix(0.271851,-0.002719,0.002500,0.249988,0,0);-ms-transform:matrix(0.271851,-0.002719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271851,-0.002719,0.002500,0.249988,0,0);}
.m84_c00258{transform:matrix(0.274734,-0.005769,0.005249,0.249945,0,0);-ms-transform:matrix(0.274734,-0.005769,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274734,-0.005769,0.005249,0.249945,0,0);}
.mc2_c00258{transform:matrix(0.275168,-0.003027,0.002750,0.249985,0,0);-ms-transform:matrix(0.275168,-0.003027,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275168,-0.003027,0.002750,0.249985,0,0);}
.mc9_c00258{transform:matrix(0.275558,-0.003031,0.002750,0.249985,0,0);-ms-transform:matrix(0.275558,-0.003031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275558,-0.003031,0.002750,0.249985,0,0);}
.m122_c00258{transform:matrix(0.275731,-0.008272,0.007497,0.249888,0,0);-ms-transform:matrix(0.275731,-0.008272,0.007497,0.249888,0,0);-webkit-transform:matrix(0.275731,-0.008272,0.007497,0.249888,0,0);}
.mb4_c00258{transform:matrix(0.275798,-0.003034,0.002750,0.249985,0,0);-ms-transform:matrix(0.275798,-0.003034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275798,-0.003034,0.002750,0.249985,0,0);}
.m7a_c00258{transform:matrix(0.276109,-0.005798,0.005249,0.249945,0,0);-ms-transform:matrix(0.276109,-0.005798,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276109,-0.005798,0.005249,0.249945,0,0);}
.m98_c00258{transform:matrix(0.276609,-0.005809,0.005249,0.249945,0,0);-ms-transform:matrix(0.276609,-0.005809,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276609,-0.005809,0.005249,0.249945,0,0);}
.meb_c00258{transform:matrix(0.278476,-0.007240,0.006498,0.249916,0,0);-ms-transform:matrix(0.278476,-0.007240,0.006498,0.249916,0,0);-webkit-transform:matrix(0.278476,-0.007240,0.006498,0.249916,0,0);}
.ma9_c00258{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.280821,-0.006459,0.005748,0.249934,0,0);-ms-transform:matrix(0.280821,-0.006459,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280821,-0.006459,0.005748,0.249934,0,0);}
.m96_c00258{transform:matrix(0.281073,-0.005903,0.005249,0.249945,0,0);-ms-transform:matrix(0.281073,-0.005903,0.005249,0.249945,0,0);-webkit-transform:matrix(0.281073,-0.005903,0.005249,0.249945,0,0);}
.m99_c00258{transform:matrix(0.281718,-0.005916,0.005249,0.249945,0,0);-ms-transform:matrix(0.281718,-0.005916,0.005249,0.249945,0,0);-webkit-transform:matrix(0.281718,-0.005916,0.005249,0.249945,0,0);}
.m11d_c00258{transform:matrix(0.282918,-0.008488,0.007497,0.249888,0,0);-ms-transform:matrix(0.282918,-0.008488,0.007497,0.249888,0,0);-webkit-transform:matrix(0.282918,-0.008488,0.007497,0.249888,0,0);}
.m45_c00258{transform:matrix(0.283148,-0.005946,0.005249,0.249945,0,0);-ms-transform:matrix(0.283148,-0.005946,0.005249,0.249945,0,0);-webkit-transform:matrix(0.283148,-0.005946,0.005249,0.249945,0,0);}
.m130_c00258{transform:matrix(0.286576,-0.008597,0.007497,0.249888,0,0);-ms-transform:matrix(0.286576,-0.008597,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286576,-0.008597,0.007497,0.249888,0,0);}
.m133_c00258{transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287340,0.000000,0.000000,0.250000,0,0);}
.mdf_c00258{transform:matrix(0.289112,-0.007517,0.006498,0.249916,0,0);-ms-transform:matrix(0.289112,-0.007517,0.006498,0.249916,0,0);-webkit-transform:matrix(0.289112,-0.007517,0.006498,0.249916,0,0);}
.m7c_c00258{transform:matrix(0.290216,-0.006095,0.005249,0.249945,0,0);-ms-transform:matrix(0.290216,-0.006095,0.005249,0.249945,0,0);-webkit-transform:matrix(0.290216,-0.006095,0.005249,0.249945,0,0);}
.mf9_c00258{transform:matrix(0.291871,-0.007589,0.006498,0.249916,0,0);-ms-transform:matrix(0.291871,-0.007589,0.006498,0.249916,0,0);-webkit-transform:matrix(0.291871,-0.007589,0.006498,0.249916,0,0);}
.mc3_c00258{transform:matrix(0.293387,-0.003227,0.002750,0.249985,0,0);-ms-transform:matrix(0.293387,-0.003227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.293387,-0.003227,0.002750,0.249985,0,0);}
.mcb_c00258{transform:matrix(0.294195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294195,0.000000,0.000000,0.250000,0,0);}
.mb9_c00258{transform:matrix(0.304212,-0.003346,0.002750,0.249985,0,0);-ms-transform:matrix(0.304212,-0.003346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.304212,-0.003346,0.002750,0.249985,0,0);}
.m13e_c00258{transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306450,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.306897,-0.006445,0.005249,0.249945,0,0);-ms-transform:matrix(0.306897,-0.006445,0.005249,0.249945,0,0);-webkit-transform:matrix(0.306897,-0.006445,0.005249,0.249945,0,0);}
.mb1_c00258{transform:matrix(0.310611,-0.003417,0.002750,0.249985,0,0);-ms-transform:matrix(0.310611,-0.003417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.310611,-0.003417,0.002750,0.249985,0,0);}
.mf4_c00258{transform:matrix(0.313619,-0.008154,0.006498,0.249916,0,0);-ms-transform:matrix(0.313619,-0.008154,0.006498,0.249916,0,0);-webkit-transform:matrix(0.313619,-0.008154,0.006498,0.249916,0,0);}
.ma_c00258{transform:matrix(0.317331,-0.007299,0.005748,0.249934,0,0);-ms-transform:matrix(0.317331,-0.007299,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317331,-0.007299,0.005748,0.249934,0,0);}
.md4_c00258{transform:matrix(0.319504,-0.003195,0.002500,0.249988,0,0);-ms-transform:matrix(0.319504,-0.003195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319504,-0.003195,0.002500,0.249988,0,0);}
.m87_c00258{transform:matrix(0.322684,-0.006776,0.005249,0.249945,0,0);-ms-transform:matrix(0.322684,-0.006776,0.005249,0.249945,0,0);-webkit-transform:matrix(0.322684,-0.006776,0.005249,0.249945,0,0);}
.mf6_c00258{transform:matrix(0.330773,-0.008600,0.006498,0.249916,0,0);-ms-transform:matrix(0.330773,-0.008600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.330773,-0.008600,0.006498,0.249916,0,0);}
.m10e_c00258{transform:matrix(0.336234,-0.010087,0.007497,0.249888,0,0);-ms-transform:matrix(0.336234,-0.010087,0.007497,0.249888,0,0);-webkit-transform:matrix(0.336234,-0.010087,0.007497,0.249888,0,0);}
.m8f_c00258{transform:matrix(0.346049,-0.007267,0.005249,0.249945,0,0);-ms-transform:matrix(0.346049,-0.007267,0.005249,0.249945,0,0);-webkit-transform:matrix(0.346049,-0.007267,0.005249,0.249945,0,0);}
.m75_c00258{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);}
.m42_c00258{transform:matrix(0.355217,-0.007460,0.005249,0.249945,0,0);-ms-transform:matrix(0.355217,-0.007460,0.005249,0.249945,0,0);-webkit-transform:matrix(0.355217,-0.007460,0.005249,0.249945,0,0);}
.m12f_c00258{transform:matrix(0.355425,-0.010663,0.007497,0.249888,0,0);-ms-transform:matrix(0.355425,-0.010663,0.007497,0.249888,0,0);-webkit-transform:matrix(0.355425,-0.010663,0.007497,0.249888,0,0);}
.m137_c00258{transform:matrix(0.361550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361550,0.000000,0.000000,0.250000,0,0);}
.me9_c00258{transform:matrix(0.362927,-0.009436,0.006498,0.249916,0,0);-ms-transform:matrix(0.362927,-0.009436,0.006498,0.249916,0,0);-webkit-transform:matrix(0.362927,-0.009436,0.006498,0.249916,0,0);}
.m116_c00258{transform:matrix(0.369009,-0.011070,0.007497,0.249888,0,0);-ms-transform:matrix(0.369009,-0.011070,0.007497,0.249888,0,0);-webkit-transform:matrix(0.369009,-0.011070,0.007497,0.249888,0,0);}
.m80_c00258{transform:matrix(0.378687,-0.007952,0.005249,0.249945,0,0);-ms-transform:matrix(0.378687,-0.007952,0.005249,0.249945,0,0);-webkit-transform:matrix(0.378687,-0.007952,0.005249,0.249945,0,0);}
.mf3_c00258{transform:matrix(0.389908,-0.010138,0.006498,0.249916,0,0);-ms-transform:matrix(0.389908,-0.010138,0.006498,0.249916,0,0);-webkit-transform:matrix(0.389908,-0.010138,0.006498,0.249916,0,0);}
.ma1_c00258{transform:matrix(0.403346,-0.008470,0.005249,0.249945,0,0);-ms-transform:matrix(0.403346,-0.008470,0.005249,0.249945,0,0);-webkit-transform:matrix(0.403346,-0.008470,0.005249,0.249945,0,0);}
.m11f_c00258{transform:matrix(0.411485,-0.012345,0.007497,0.249888,0,0);-ms-transform:matrix(0.411485,-0.012345,0.007497,0.249888,0,0);-webkit-transform:matrix(0.411485,-0.012345,0.007497,0.249888,0,0);}
.mb2_c00258{transform:matrix(0.434574,-0.004780,0.002750,0.249985,0,0);-ms-transform:matrix(0.434574,-0.004780,0.002750,0.249985,0,0);-webkit-transform:matrix(0.434574,-0.004780,0.002750,0.249985,0,0);}
.mb3_c00258{transform:matrix(0.450938,-0.004960,0.002750,0.249985,0,0);-ms-transform:matrix(0.450938,-0.004960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.450938,-0.004960,0.002750,0.249985,0,0);}
.m129_c00258{transform:matrix(0.460773,-0.013823,0.007497,0.249888,0,0);-ms-transform:matrix(0.460773,-0.013823,0.007497,0.249888,0,0);-webkit-transform:matrix(0.460773,-0.013823,0.007497,0.249888,0,0);}
.m97_c00258{transform:matrix(0.497570,-0.010449,0.005249,0.249945,0,0);-ms-transform:matrix(0.497570,-0.010449,0.005249,0.249945,0,0);-webkit-transform:matrix(0.497570,-0.010449,0.005249,0.249945,0,0);}
.m132_c00258{transform:matrix(0.497835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497835,0.000000,0.000000,0.250000,0,0);}
.md6_c00258{transform:matrix(0.533673,-0.005337,0.002500,0.249988,0,0);-ms-transform:matrix(0.533673,-0.005337,0.002500,0.249988,0,0);-webkit-transform:matrix(0.533673,-0.005337,0.002500,0.249988,0,0);}
.mc7_c00258{transform:matrix(0.557106,-0.006128,0.002750,0.249985,0,0);-ms-transform:matrix(0.557106,-0.006128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.557106,-0.006128,0.002750,0.249985,0,0);}
.m135_c00258{transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);}
.m134_c00258{transform:matrix(0.601560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601560,0.000000,0.000000,0.250000,0,0);}
.m13d_c00258{transform:matrix(0.606515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606515,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.648918,-0.014925,0.005748,0.249934,0,0);-ms-transform:matrix(0.648918,-0.014925,0.005748,0.249934,0,0);-webkit-transform:matrix(0.648918,-0.014925,0.005748,0.249934,0,0);}
.mf7_c00258{transform:matrix(0.672953,-0.017497,0.006498,0.249916,0,0);-ms-transform:matrix(0.672953,-0.017497,0.006498,0.249916,0,0);-webkit-transform:matrix(0.672953,-0.017497,0.006498,0.249916,0,0);}
.m12a_c00258{transform:matrix(0.711375,-0.021341,0.007497,0.249888,0,0);-ms-transform:matrix(0.711375,-0.021341,0.007497,0.249888,0,0);-webkit-transform:matrix(0.711375,-0.021341,0.007497,0.249888,0,0);}
.m7d_c00258{transform:matrix(0.737517,-0.015488,0.005249,0.249945,0,0);-ms-transform:matrix(0.737517,-0.015488,0.005249,0.249945,0,0);-webkit-transform:matrix(0.737517,-0.015488,0.005249,0.249945,0,0);}
.m139_c00258{transform:matrix(0.860700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860700,0.000000,0.000000,0.250000,0,0);}
.mfd_c00258{transform:matrix(0.995535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995535,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(1.688593,-0.038838,0.005748,0.249934,0,0);-ms-transform:matrix(1.688593,-0.038838,0.005748,0.249934,0,0);-webkit-transform:matrix(1.688593,-0.038838,0.005748,0.249934,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;}
.fsb_c00258{font-size:22.050000px;}
.fs1a_c00258{font-size:24.150000px;}
.fs1c_c00258{font-size:42.000000px;}
.fs1b_c00258{font-size:46.200000px;}
.fs15_c00258{font-size:47.271258px;}
.fs18_c00258{font-size:48.321730px;}
.fs14_c00258{font-size:49.372203px;}
.fs17_c00258{font-size:51.473147px;}
.fs16_c00258{font-size:52.523620px;}
.fs19_c00258{font-size:53.550000px;}
.fs1_c00258{font-size:56.714995px;}
.fs13_c00258{font-size:60.920581px;}
.fs5_c00258{font-size:61.963658px;}
.fs8_c00258{font-size:65.114353px;}
.fs12_c00258{font-size:65.122000px;}
.fs3_c00258{font-size:66.164584px;}
.fsd_c00258{font-size:67.204065px;}
.fs7_c00258{font-size:67.214816px;}
.fs2_c00258{font-size:68.265047px;}
.fsf_c00258{font-size:69.303465px;}
.fs4_c00258{font-size:69.315279px;}
.fse_c00258{font-size:70.354256px;}
.fs9_c00258{font-size:71.415742px;}
.fs6_c00258{font-size:72.465973px;}
.fsa_c00258{font-size:73.516205px;}
.fs11_c00258{font-size:73.524839px;}
.fsc_c00258{font-size:75.600000px;}
.fs10_c00258{font-size:76.653832px;}
.fs0_c00258{font-size:79.821104px;}
.y0_c00258{bottom:0.000000px;}
.y131_c00258{bottom:109.084500px;}
.y132_c00258{bottom:109.948500px;}
.y133_c00258{bottom:111.712500px;}
.y134_c00258{bottom:113.212500px;}
.y12d_c00258{bottom:117.520500px;}
.y12e_c00258{bottom:118.285500px;}
.y12f_c00258{bottom:120.682500px;}
.y130_c00258{bottom:121.284000px;}
.y12c_c00258{bottom:137.577000px;}
.y12b_c00258{bottom:187.672500px;}
.y124_c00258{bottom:203.421150px;}
.y125_c00258{bottom:204.155325px;}
.y126_c00258{bottom:204.993465px;}
.y127_c00258{bottom:205.559160px;}
.y128_c00258{bottom:207.439920px;}
.y129_c00258{bottom:209.276805px;}
.y12a_c00258{bottom:209.672055px;}
.y11a_c00258{bottom:214.366485px;}
.y11b_c00258{bottom:216.116070px;}
.y11c_c00258{bottom:221.716140px;}
.y11d_c00258{bottom:223.853475px;}
.y11e_c00258{bottom:224.519910px;}
.y11f_c00258{bottom:225.084345px;}
.y120_c00258{bottom:226.579995px;}
.y121_c00258{bottom:227.503155px;}
.y122_c00258{bottom:227.960100px;}
.y123_c00258{bottom:229.105995px;}
.y108_c00258{bottom:237.317715px;}
.y109_c00258{bottom:237.813615px;}
.y10a_c00258{bottom:238.167315px;}
.y10b_c00258{bottom:238.502250px;}
.y10c_c00258{bottom:239.121345px;}
.y10d_c00258{bottom:239.754525px;}
.y10e_c00258{bottom:239.989335px;}
.y10f_c00258{bottom:240.902970px;}
.y110_c00258{bottom:241.359165px;}
.y111_c00258{bottom:241.605810px;}
.y112_c00258{bottom:241.881855px;}
.y113_c00258{bottom:242.373375px;}
.y114_c00258{bottom:242.616855px;}
.y115_c00258{bottom:242.952195px;}
.y116_c00258{bottom:244.370280px;}
.y117_c00258{bottom:244.613760px;}
.y118_c00258{bottom:245.155605px;}
.y119_c00258{bottom:245.923950px;}
.yf9_c00258{bottom:253.257270px;}
.yfa_c00258{bottom:254.142015px;}
.yfb_c00258{bottom:254.545650px;}
.yfc_c00258{bottom:255.745515px;}
.yfd_c00258{bottom:255.978525px;}
.yfe_c00258{bottom:256.371135px;}
.yff_c00258{bottom:257.266755px;}
.y100_c00258{bottom:257.601195px;}
.y101_c00258{bottom:258.842460px;}
.y102_c00258{bottom:259.182645px;}
.y103_c00258{bottom:259.839990px;}
.y104_c00258{bottom:260.209560px;}
.y105_c00258{bottom:261.007995px;}
.y106_c00258{bottom:261.905820px;}
.y107_c00258{bottom:263.001210px;}
.yf8_c00258{bottom:274.491000px;}
.yf7_c00258{bottom:289.983000px;}
.yed_c00258{bottom:311.438487px;}
.yee_c00258{bottom:312.132894px;}
.yef_c00258{bottom:312.653049px;}
.yf0_c00258{bottom:313.365939px;}
.yf1_c00258{bottom:314.148594px;}
.yf2_c00258{bottom:314.881767px;}
.yf3_c00258{bottom:315.233118px;}
.yf4_c00258{bottom:315.545235px;}
.yf5_c00258{bottom:315.869883px;}
.yf6_c00258{bottom:316.923564px;}
.ye3_c00258{bottom:326.442705px;}
.ye4_c00258{bottom:328.717209px;}
.ye5_c00258{bottom:330.053445px;}
.ye6_c00258{bottom:331.152015px;}
.ye7_c00258{bottom:332.098119px;}
.ye8_c00258{bottom:334.952361px;}
.ye9_c00258{bottom:335.713869px;}
.yea_c00258{bottom:336.409848px;}
.yeb_c00258{bottom:337.636668px;}
.yec_c00258{bottom:338.796165px;}
.yd9_c00258{bottom:351.625500px;}
.yda_c00258{bottom:353.142054px;}
.ydb_c00258{bottom:354.295596px;}
.ydc_c00258{bottom:355.384242px;}
.ydd_c00258{bottom:356.849121px;}
.yde_c00258{bottom:357.998100px;}
.ydf_c00258{bottom:360.642105px;}
.ye0_c00258{bottom:361.801302px;}
.ye1_c00258{bottom:363.121335px;}
.ye2_c00258{bottom:363.737613px;}
.ycc_c00258{bottom:391.768725px;}
.ycd_c00258{bottom:391.874745px;}
.yce_c00258{bottom:392.062290px;}
.ycf_c00258{bottom:392.082105px;}
.yd0_c00258{bottom:392.145555px;}
.yd1_c00258{bottom:392.634285px;}
.yd2_c00258{bottom:393.139050px;}
.yd3_c00258{bottom:393.545250px;}
.yd4_c00258{bottom:393.737715px;}
.yd5_c00258{bottom:394.078035px;}
.yd6_c00258{bottom:394.253190px;}
.yd7_c00258{bottom:394.831050px;}
.yd8_c00258{bottom:395.284950px;}
.yc6_c00258{bottom:414.990000px;}
.yc7_c00258{bottom:416.540340px;}
.yc8_c00258{bottom:416.697255px;}
.yc9_c00258{bottom:417.391935px;}
.yca_c00258{bottom:417.939930px;}
.ycb_c00258{bottom:418.356900px;}
.yc5_c00258{bottom:453.463500px;}
.ybc_c00258{bottom:460.619449px;}
.ybd_c00258{bottom:460.878066px;}
.ybe_c00258{bottom:461.244188px;}
.ybf_c00258{bottom:461.463306px;}
.yc0_c00258{bottom:462.125561px;}
.yc1_c00258{bottom:462.474507px;}
.yc2_c00258{bottom:463.316431px;}
.yc3_c00258{bottom:463.566847px;}
.yc4_c00258{bottom:463.875124px;}
.yb3_c00258{bottom:483.571059px;}
.yb4_c00258{bottom:484.400363px;}
.yb5_c00258{bottom:485.067534px;}
.yb6_c00258{bottom:485.370185px;}
.yb7_c00258{bottom:486.319944px;}
.yb8_c00258{bottom:486.863541px;}
.yb9_c00258{bottom:487.170679px;}
.yba_c00258{bottom:487.803814px;}
.ybb_c00258{bottom:488.865187px;}
.yaa_c00258{bottom:506.791500px;}
.yab_c00258{bottom:506.884510px;}
.yac_c00258{bottom:507.226209px;}
.yad_c00258{bottom:507.460757px;}
.yae_c00258{bottom:507.965062px;}
.yaf_c00258{bottom:508.374576px;}
.yb0_c00258{bottom:508.844265px;}
.yb1_c00258{bottom:509.265691px;}
.yb2_c00258{bottom:509.530533px;}
.ya9_c00258{bottom:540.450000px;}
.ya8_c00258{bottom:550.530000px;}
.y9d_c00258{bottom:563.158446px;}
.y9e_c00258{bottom:563.393422px;}
.y9f_c00258{bottom:563.734610px;}
.ya0_c00258{bottom:564.489939px;}
.ya1_c00258{bottom:564.967185px;}
.ya2_c00258{bottom:565.248537px;}
.ya3_c00258{bottom:566.024386px;}
.ya4_c00258{bottom:566.993598px;}
.ya5_c00258{bottom:567.341361px;}
.ya6_c00258{bottom:568.158817px;}
.ya7_c00258{bottom:568.699722px;}
.y90_c00258{bottom:586.113314px;}
.y91_c00258{bottom:586.565857px;}
.y92_c00258{bottom:587.003079px;}
.y93_c00258{bottom:587.485917px;}
.y94_c00258{bottom:587.738779px;}
.y95_c00258{bottom:588.286640px;}
.y96_c00258{bottom:589.226034px;}
.y97_c00258{bottom:589.579529px;}
.y98_c00258{bottom:589.835258px;}
.y99_c00258{bottom:590.579172px;}
.y9a_c00258{bottom:590.769859px;}
.y9b_c00258{bottom:591.061569px;}
.y9c_c00258{bottom:591.567239px;}
.y86_c00258{bottom:609.785359px;}
.y87_c00258{bottom:609.785680px;}
.y88_c00258{bottom:609.785724px;}
.y89_c00258{bottom:609.785958px;}
.y8a_c00258{bottom:609.786251px;}
.y8b_c00258{bottom:609.786754px;}
.y8e_c00258{bottom:609.787067px;}
.y8c_c00258{bottom:609.787163px;}
.y8f_c00258{bottom:609.787299px;}
.y8d_c00258{bottom:609.787566px;}
.y78_c00258{bottom:632.562610px;}
.y79_c00258{bottom:632.757468px;}
.y7a_c00258{bottom:633.217324px;}
.y7b_c00258{bottom:633.544058px;}
.y7c_c00258{bottom:634.279084px;}
.y7d_c00258{bottom:634.683933px;}
.y7e_c00258{bottom:635.296090px;}
.y7f_c00258{bottom:635.591907px;}
.y80_c00258{bottom:636.430531px;}
.y81_c00258{bottom:636.764376px;}
.y82_c00258{bottom:637.277559px;}
.y83_c00258{bottom:637.922637px;}
.y84_c00258{bottom:638.118892px;}
.y85_c00258{bottom:638.151573px;}
.y6e_c00258{bottom:655.245372px;}
.y6f_c00258{bottom:655.875597px;}
.y70_c00258{bottom:656.136454px;}
.y71_c00258{bottom:656.454652px;}
.y72_c00258{bottom:657.007087px;}
.y73_c00258{bottom:658.130347px;}
.y74_c00258{bottom:658.563699px;}
.y75_c00258{bottom:658.840761px;}
.y76_c00258{bottom:659.488884px;}
.y77_c00258{bottom:660.475855px;}
.y61_c00258{bottom:677.930512px;}
.y62_c00258{bottom:678.445845px;}
.y63_c00258{bottom:678.754683px;}
.y64_c00258{bottom:679.516695px;}
.y65_c00258{bottom:679.864080px;}
.y66_c00258{bottom:680.572920px;}
.y67_c00258{bottom:681.037588px;}
.y68_c00258{bottom:681.578178px;}
.y69_c00258{bottom:682.511866px;}
.y6a_c00258{bottom:682.830171px;}
.y6b_c00258{bottom:683.161009px;}
.y6c_c00258{bottom:683.578641px;}
.y6d_c00258{bottom:683.862682px;}
.y56_c00258{bottom:700.597105px;}
.y57_c00258{bottom:701.393211px;}
.y58_c00258{bottom:701.770224px;}
.y59_c00258{bottom:702.240283px;}
.y5a_c00258{bottom:702.682207px;}
.y5b_c00258{bottom:704.198805px;}
.y5c_c00258{bottom:704.563548px;}
.y5d_c00258{bottom:705.174100px;}
.y5e_c00258{bottom:705.857967px;}
.y5f_c00258{bottom:706.139268px;}
.y60_c00258{bottom:706.806828px;}
.y49_c00258{bottom:723.305236px;}
.y4a_c00258{bottom:724.152400px;}
.y4b_c00258{bottom:724.442475px;}
.y4c_c00258{bottom:724.969587px;}
.y4d_c00258{bottom:725.608821px;}
.y4e_c00258{bottom:725.847729px;}
.y4f_c00258{bottom:726.179358px;}
.y50_c00258{bottom:727.415334px;}
.y51_c00258{bottom:727.810891px;}
.y52_c00258{bottom:728.630617px;}
.y53_c00258{bottom:729.052896px;}
.y54_c00258{bottom:730.028578px;}
.y55_c00258{bottom:730.364283px;}
.y3b_c00258{bottom:745.986463px;}
.y3c_c00258{bottom:747.208152px;}
.y3d_c00258{bottom:747.548547px;}
.y3e_c00258{bottom:748.273186px;}
.y3f_c00258{bottom:748.630123px;}
.y40_c00258{bottom:749.218072px;}
.y41_c00258{bottom:749.779545px;}
.y42_c00258{bottom:750.297495px;}
.y43_c00258{bottom:751.106301px;}
.y44_c00258{bottom:751.432497px;}
.y45_c00258{bottom:752.135448px;}
.y46_c00258{bottom:752.888170px;}
.y47_c00258{bottom:753.136008px;}
.y48_c00258{bottom:753.805540px;}
.y2f_c00258{bottom:768.947022px;}
.y30_c00258{bottom:769.354140px;}
.y31_c00258{bottom:770.095089px;}
.y32_c00258{bottom:771.435477px;}
.y33_c00258{bottom:771.796490px;}
.y34_c00258{bottom:772.229013px;}
.y35_c00258{bottom:772.934401px;}
.y36_c00258{bottom:773.441428px;}
.y37_c00258{bottom:774.140209px;}
.y38_c00258{bottom:774.659368px;}
.y39_c00258{bottom:775.841842px;}
.y3a_c00258{bottom:776.540245px;}
.y24_c00258{bottom:791.633860px;}
.y25_c00258{bottom:792.212850px;}
.y26_c00258{bottom:792.951298px;}
.y27_c00258{bottom:793.567923px;}
.y28_c00258{bottom:794.414910px;}
.y29_c00258{bottom:795.692874px;}
.y2a_c00258{bottom:796.211103px;}
.y2b_c00258{bottom:797.381713px;}
.y2c_c00258{bottom:798.646498px;}
.y2d_c00258{bottom:799.266663px;}
.y2e_c00258{bottom:800.015896px;}
.y19_c00258{bottom:814.592809px;}
.y1a_c00258{bottom:815.495991px;}
.y1b_c00258{bottom:815.675991px;}
.y1c_c00258{bottom:816.620934px;}
.y1d_c00258{bottom:817.630350px;}
.y1e_c00258{bottom:818.903737px;}
.y1f_c00258{bottom:819.375075px;}
.y20_c00258{bottom:820.078998px;}
.y21_c00258{bottom:822.376398px;}
.y22_c00258{bottom:823.035106px;}
.y23_c00258{bottom:823.590711px;}
.yc_c00258{bottom:837.546000px;}
.yd_c00258{bottom:838.108054px;}
.ye_c00258{bottom:838.928598px;}
.yf_c00258{bottom:839.564331px;}
.y10_c00258{bottom:840.313810px;}
.y11_c00258{bottom:840.482241px;}
.y12_c00258{bottom:840.739564px;}
.y13_c00258{bottom:841.858318px;}
.y14_c00258{bottom:843.484537px;}
.y15_c00258{bottom:844.182262px;}
.y16_c00258{bottom:845.382003px;}
.y17_c00258{bottom:846.081523px;}
.y18_c00258{bottom:846.759876px;}
.y3_c00258{bottom:923.406237px;}
.y4_c00258{bottom:924.840468px;}
.y5_c00258{bottom:925.082330px;}
.y6_c00258{bottom:926.023955px;}
.y7_c00258{bottom:927.827964px;}
.y8_c00258{bottom:928.213473px;}
.y9_c00258{bottom:929.186267px;}
.ya_c00258{bottom:929.874801px;}
.yb_c00258{bottom:930.718730px;}
.y1_c00258{bottom:943.924500px;}
.y2_c00258{bottom:945.163671px;}
.hd_c00258{height:22.050000px;}
.h1c_c00258{height:24.150000px;}
.h1e_c00258{height:42.000000px;}
.h1d_c00258{height:46.200000px;}
.h17_c00258{height:47.271258px;}
.h1a_c00258{height:48.321730px;}
.h16_c00258{height:49.372203px;}
.h19_c00258{height:51.473147px;}
.h18_c00258{height:52.523620px;}
.h1b_c00258{height:53.550000px;}
.h3_c00258{height:56.714995px;}
.h15_c00258{height:60.920581px;}
.h7_c00258{height:61.963658px;}
.ha_c00258{height:65.114353px;}
.h14_c00258{height:65.122000px;}
.h5_c00258{height:66.164584px;}
.hf_c00258{height:67.204065px;}
.h9_c00258{height:67.214816px;}
.h4_c00258{height:68.265047px;}
.h11_c00258{height:69.303465px;}
.h6_c00258{height:69.315279px;}
.h10_c00258{height:70.354256px;}
.hb_c00258{height:71.415742px;}
.h8_c00258{height:72.465973px;}
.hc_c00258{height:73.516205px;}
.h13_c00258{height:73.524839px;}
.he_c00258{height:75.600000px;}
.h12_c00258{height:76.653832px;}
.h2_c00258{height:79.821104px;}
.h1_c00258{height:1005.000000px;}
.h0_c00258{height:1005.150000px;}
.w1_c00258{width:713.250000px;}
.w0_c00258{width:713.550000px;}
.x0_c00258{left:0.000000px;}
.x78_c00258{left:37.260000px;}
.x79_c00258{left:64.800000px;}
.x19_c00258{left:74.619662px;}
.x3f_c00258{left:75.723342px;}
.x4b_c00258{left:76.832280px;}
.x68_c00258{left:77.941080px;}
.x96_c00258{left:81.416814px;}
.x90_c00258{left:84.372000px;}
.x3_c00258{left:89.256371px;}
.x98_c00258{left:90.419742px;}
.xc_c00258{left:94.227000px;}
.x71_c00258{left:95.954928px;}
.x2b_c00258{left:99.500723px;}
.x1_c00258{left:101.172000px;}
.x23_c00258{left:105.533561px;}
.x7c_c00258{left:107.605500px;}
.x83_c00258{left:111.116912px;}
.x62_c00258{left:115.287642px;}
.x4c_c00258{left:116.521458px;}
.x8a_c00258{left:117.590250px;}
.x1a_c00258{left:119.772107px;}
.xd_c00258{left:120.991500px;}
.x72_c00258{left:122.206338px;}
.x9d_c00258{left:124.445445px;}
.x1b_c00258{left:128.772296px;}
.x40_c00258{left:132.214461px;}
.x55_c00258{left:133.514715px;}
.x44_c00258{left:136.994801px;}
.x8b_c00258{left:138.444960px;}
.x4d_c00258{left:140.303459px;}
.x4_c00258{left:142.348472px;}
.x24_c00258{left:144.413699px;}
.x34_c00258{left:146.558327px;}
.x8c_c00258{left:147.671550px;}
.x5_c00258{left:151.298144px;}
.x2_c00258{left:155.049000px;}
.x56_c00258{left:157.227192px;}
.xe_c00258{left:160.065000px;}
.x35_c00258{left:166.554996px;}
.x7a_c00258{left:168.210000px;}
.x1c_c00258{left:176.056304px;}
.x73_c00258{left:180.255572px;}
.x99_c00258{left:183.838293px;}
.x6_c00258{left:186.169935px;}
.x63_c00258{left:187.392926px;}
.xf_c00258{left:190.338000px;}
.x69_c00258{left:192.396221px;}
.xb0_c00258{left:197.370000px;}
.x4e_c00258{left:198.885287px;}
.x9e_c00258{left:200.816055px;}
.x45_c00258{left:202.128231px;}
.xb4_c00258{left:205.749000px;}
.x36_c00258{left:209.208087px;}
.x7b_c00258{left:212.490000px;}
.x6a_c00258{left:213.512721px;}
.x84_c00258{left:215.115273px;}
.x64_c00258{left:216.559778px;}
.x25_c00258{left:221.398412px;}
.xb3_c00258{left:223.192500px;}
.x10_c00258{left:226.027500px;}
.x91_c00258{left:228.939000px;}
.x37_c00258{left:230.206851px;}
.x11_c00258{left:234.048000px;}
.x46_c00258{left:236.177964px;}
.x74_c00258{left:238.603368px;}
.x2c_c00258{left:243.172287px;}
.x85_c00258{left:244.246460px;}
.x12_c00258{left:246.301500px;}
.x7d_c00258{left:251.521500px;}
.x7_c00258{left:252.990294px;}
.x5b_c00258{left:254.528888px;}
.x8d_c00258{left:257.972145px;}
.x6b_c00258{left:259.181352px;}
.x38_c00258{left:264.778749px;}
.x8_c00258{left:267.271983px;}
.x2d_c00258{left:268.627929px;}
.xb1_c00258{left:272.160000px;}
.x9f_c00258{left:273.243585px;}
.x65_c00258{left:277.052927px;}
.x4f_c00258{left:280.123926px;}
.xb5_c00258{left:282.432000px;}
.x92_c00258{left:285.280500px;}
.x26_c00258{left:288.685247px;}
.x1d_c00258{left:290.192198px;}
.xb2_c00258{left:291.330000px;}
.xa4_c00258{left:293.142450px;}
.x7e_c00258{left:294.220500px;}
.x39_c00258{left:297.804021px;}
.x13_c00258{left:299.575500px;}
.x9_c00258{left:303.303171px;}
.x5c_c00258{left:305.546027px;}
.xad_c00258{left:308.235465px;}
.x2e_c00258{left:310.149926px;}
.x1e_c00258{left:313.780202px;}
.x27_c00258{left:315.935381px;}
.x7f_c00258{left:317.760086px;}
.xa5_c00258{left:319.959390px;}
.x8e_c00258{left:324.439305px;}
.xa_c00258{left:328.802325px;}
.x5d_c00258{left:330.137157px;}
.x77_c00258{left:332.910000px;}
.x86_c00258{left:335.230953px;}
.x87_c00258{left:336.576000px;}
.x57_c00258{left:338.498244px;}
.x2f_c00258{left:339.939414px;}
.xb6_c00258{left:347.644500px;}
.x1f_c00258{left:348.943926px;}
.xa6_c00258{left:350.694360px;}
.x47_c00258{left:352.845057px;}
.x97_c00258{left:355.887129px;}
.x50_c00258{left:357.434904px;}
.xb_c00258{left:360.078962px;}
.x80_c00258{left:363.086590px;}
.xa0_c00258{left:364.531245px;}
.x6c_c00258{left:366.910701px;}
.x75_c00258{left:372.866922px;}
.x3a_c00258{left:375.846573px;}
.x14_c00258{left:377.014500px;}
.xa7_c00258{left:379.589610px;}
.x30_c00258{left:381.003848px;}
.x9a_c00258{left:382.311834px;}
.x6d_c00258{left:388.163702px;}
.x88_c00258{left:391.375500px;}
.xaf_c00258{left:392.850000px;}
.xa8_c00258{left:393.911190px;}
.x3b_c00258{left:395.024180px;}
.x5e_c00258{left:400.084887px;}
.x58_c00258{left:403.055289px;}
.x66_c00258{left:404.790717px;}
.x9b_c00258{left:406.324446px;}
.x15_c00258{left:410.239500px;}
.x31_c00258{left:411.585431px;}
.xa1_c00258{left:413.424930px;}
.xaa_c00258{left:426.101055px;}
.x48_c00258{left:427.943189px;}
.x51_c00258{left:429.265469px;}
.x41_c00258{left:430.929135px;}
.x89_c00258{left:433.072500px;}
.x3c_c00258{left:436.358645px;}
.x81_c00258{left:441.474232px;}
.x28_c00258{left:444.126267px;}
.x8f_c00258{left:445.924020px;}
.x6e_c00258{left:450.099888px;}
.xa2_c00258{left:451.449690px;}
.x52_c00258{left:453.784095px;}
.xae_c00258{left:457.057830px;}
.x42_c00258{left:459.041163px;}
.x59_c00258{left:461.930637px;}
.x20_c00258{left:463.846352px;}
.x6f_c00258{left:466.040412px;}
.x16_c00258{left:467.370000px;}
.x5f_c00258{left:470.575680px;}
.x93_c00258{left:475.749000px;}
.x29_c00258{left:476.802153px;}
.x53_c00258{left:479.256879px;}
.x32_c00258{left:481.185290px;}
.x70_c00258{left:490.364511px;}
.x67_c00258{left:492.019679px;}
.xa3_c00258{left:494.188710px;}
.x3d_c00258{left:495.223590px;}
.x21_c00258{left:496.785545px;}
.x17_c00258{left:500.680500px;}
.x49_c00258{left:502.273194px;}
.x76_c00258{left:504.132972px;}
.x54_c00258{left:511.363766px;}
.x2a_c00258{left:516.267323px;}
.x33_c00258{left:522.231723px;}
.x22_c00258{left:524.600643px;}
.x94_c00258{left:526.519500px;}
.x82_c00258{left:529.916259px;}
.x9c_c00258{left:531.630000px;}
.x18_c00258{left:532.983000px;}
.x3e_c00258{left:534.609398px;}
.xab_c00258{left:537.070725px;}
.x60_c00258{left:540.652410px;}
.x61_c00258{left:543.423446px;}
.x43_c00258{left:546.499188px;}
.x95_c00258{left:550.222500px;}
.x5a_c00258{left:551.590943px;}
.x4a_c00258{left:553.641825px;}
.xac_c00258{left:574.016100px;}
.xa9_c00258{left:588.523560px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.fsb_c00258{font-size:19.600000pt;}
.fs1a_c00258{font-size:21.466667pt;}
.fs1c_c00258{font-size:37.333333pt;}
.fs1b_c00258{font-size:41.066667pt;}
.fs15_c00258{font-size:42.018896pt;}
.fs18_c00258{font-size:42.952649pt;}
.fs14_c00258{font-size:43.886402pt;}
.fs17_c00258{font-size:45.753909pt;}
.fs16_c00258{font-size:46.687662pt;}
.fs19_c00258{font-size:47.600000pt;}
.fs1_c00258{font-size:50.413329pt;}
.fs13_c00258{font-size:54.151627pt;}
.fs5_c00258{font-size:55.078808pt;}
.fs8_c00258{font-size:57.879425pt;}
.fs12_c00258{font-size:57.886222pt;}
.fs3_c00258{font-size:58.812964pt;}
.fsd_c00258{font-size:59.736947pt;}
.fs7_c00258{font-size:59.746503pt;}
.fs2_c00258{font-size:60.680042pt;}
.fsf_c00258{font-size:61.603080pt;}
.fs4_c00258{font-size:61.613581pt;}
.fse_c00258{font-size:62.537116pt;}
.fs9_c00258{font-size:63.480660pt;}
.fs6_c00258{font-size:64.414199pt;}
.fsa_c00258{font-size:65.347738pt;}
.fs11_c00258{font-size:65.355412pt;}
.fsc_c00258{font-size:67.200000pt;}
.fs10_c00258{font-size:68.136740pt;}
.fs0_c00258{font-size:70.952093pt;}
.y0_c00258{bottom:0.000000pt;}
.y131_c00258{bottom:96.964000pt;}
.y132_c00258{bottom:97.732000pt;}
.y133_c00258{bottom:99.300000pt;}
.y134_c00258{bottom:100.633333pt;}
.y12d_c00258{bottom:104.462667pt;}
.y12e_c00258{bottom:105.142667pt;}
.y12f_c00258{bottom:107.273333pt;}
.y130_c00258{bottom:107.808000pt;}
.y12c_c00258{bottom:122.290667pt;}
.y12b_c00258{bottom:166.820000pt;}
.y124_c00258{bottom:180.818800pt;}
.y125_c00258{bottom:181.471400pt;}
.y126_c00258{bottom:182.216413pt;}
.y127_c00258{bottom:182.719253pt;}
.y128_c00258{bottom:184.391040pt;}
.y129_c00258{bottom:186.023827pt;}
.y12a_c00258{bottom:186.375160pt;}
.y11a_c00258{bottom:190.547987pt;}
.y11b_c00258{bottom:192.103173pt;}
.y11c_c00258{bottom:197.081013pt;}
.y11d_c00258{bottom:198.980867pt;}
.y11e_c00258{bottom:199.573253pt;}
.y11f_c00258{bottom:200.074973pt;}
.y120_c00258{bottom:201.404440pt;}
.y121_c00258{bottom:202.225027pt;}
.y122_c00258{bottom:202.631200pt;}
.y123_c00258{bottom:203.649773pt;}
.y108_c00258{bottom:210.949080pt;}
.y109_c00258{bottom:211.389880pt;}
.y10a_c00258{bottom:211.704280pt;}
.y10b_c00258{bottom:212.002000pt;}
.y10c_c00258{bottom:212.552307pt;}
.y10d_c00258{bottom:213.115133pt;}
.y10e_c00258{bottom:213.323853pt;}
.y10f_c00258{bottom:214.135973pt;}
.y110_c00258{bottom:214.541480pt;}
.y111_c00258{bottom:214.760720pt;}
.y112_c00258{bottom:215.006093pt;}
.y113_c00258{bottom:215.443000pt;}
.y114_c00258{bottom:215.659427pt;}
.y115_c00258{bottom:215.957507pt;}
.y116_c00258{bottom:217.218027pt;}
.y117_c00258{bottom:217.434453pt;}
.y118_c00258{bottom:217.916093pt;}
.y119_c00258{bottom:218.599067pt;}
.yf9_c00258{bottom:225.117573pt;}
.yfa_c00258{bottom:225.904013pt;}
.yfb_c00258{bottom:226.262800pt;}
.yfc_c00258{bottom:227.329347pt;}
.yfd_c00258{bottom:227.536467pt;}
.yfe_c00258{bottom:227.885453pt;}
.yff_c00258{bottom:228.681560pt;}
.y100_c00258{bottom:228.978840pt;}
.y101_c00258{bottom:230.082187pt;}
.y102_c00258{bottom:230.384573pt;}
.y103_c00258{bottom:230.968880pt;}
.y104_c00258{bottom:231.297387pt;}
.y105_c00258{bottom:232.007107pt;}
.y106_c00258{bottom:232.805173pt;}
.y107_c00258{bottom:233.778853pt;}
.yf8_c00258{bottom:243.992000pt;}
.yf7_c00258{bottom:257.762667pt;}
.yed_c00258{bottom:276.834211pt;}
.yee_c00258{bottom:277.451461pt;}
.yef_c00258{bottom:277.913821pt;}
.yf0_c00258{bottom:278.547501pt;}
.yf1_c00258{bottom:279.243195pt;}
.yf2_c00258{bottom:279.894904pt;}
.yf3_c00258{bottom:280.207216pt;}
.yf4_c00258{bottom:280.484653pt;}
.yf5_c00258{bottom:280.773229pt;}
.yf6_c00258{bottom:281.709835pt;}
.ye3_c00258{bottom:290.171293pt;}
.ye4_c00258{bottom:292.193075pt;}
.ye5_c00258{bottom:293.380840pt;}
.ye6_c00258{bottom:294.357347pt;}
.ye7_c00258{bottom:295.198328pt;}
.ye8_c00258{bottom:297.735432pt;}
.ye9_c00258{bottom:298.412328pt;}
.yea_c00258{bottom:299.030976pt;}
.yeb_c00258{bottom:300.121483pt;}
.yec_c00258{bottom:301.152147pt;}
.yd9_c00258{bottom:312.556000pt;}
.yda_c00258{bottom:313.904048pt;}
.ydb_c00258{bottom:314.929419pt;}
.ydc_c00258{bottom:315.897104pt;}
.ydd_c00258{bottom:317.199219pt;}
.yde_c00258{bottom:318.220533pt;}
.ydf_c00258{bottom:320.570760pt;}
.ye0_c00258{bottom:321.601157pt;}
.ye1_c00258{bottom:322.774520pt;}
.ye2_c00258{bottom:323.322323pt;}
.ycc_c00258{bottom:348.238867pt;}
.ycd_c00258{bottom:348.333107pt;}
.yce_c00258{bottom:348.499813pt;}
.ycf_c00258{bottom:348.517427pt;}
.yd0_c00258{bottom:348.573827pt;}
.yd1_c00258{bottom:349.008253pt;}
.yd2_c00258{bottom:349.456933pt;}
.yd3_c00258{bottom:349.818000pt;}
.yd4_c00258{bottom:349.989080pt;}
.yd5_c00258{bottom:350.291587pt;}
.yd6_c00258{bottom:350.447280pt;}
.yd7_c00258{bottom:350.960933pt;}
.yd8_c00258{bottom:351.364400pt;}
.yc6_c00258{bottom:368.880000pt;}
.yc7_c00258{bottom:370.258080pt;}
.yc8_c00258{bottom:370.397560pt;}
.yc9_c00258{bottom:371.015053pt;}
.yca_c00258{bottom:371.502160pt;}
.ycb_c00258{bottom:371.872800pt;}
.yc5_c00258{bottom:403.078667pt;}
.ybc_c00258{bottom:409.439511pt;}
.ybd_c00258{bottom:409.669392pt;}
.ybe_c00258{bottom:409.994833pt;}
.ybf_c00258{bottom:410.189605pt;}
.yc0_c00258{bottom:410.778276pt;}
.yc1_c00258{bottom:411.088451pt;}
.yc2_c00258{bottom:411.836828pt;}
.yc3_c00258{bottom:412.059420pt;}
.yc4_c00258{bottom:412.333444pt;}
.yb3_c00258{bottom:429.840941pt;}
.yb4_c00258{bottom:430.578100pt;}
.yb5_c00258{bottom:431.171141pt;}
.yb6_c00258{bottom:431.440164pt;}
.yb7_c00258{bottom:432.284395pt;}
.yb8_c00258{bottom:432.767592pt;}
.yb9_c00258{bottom:433.040604pt;}
.yba_c00258{bottom:433.603391pt;}
.ybb_c00258{bottom:434.546833pt;}
.yaa_c00258{bottom:450.481333pt;}
.yab_c00258{bottom:450.564009pt;}
.yac_c00258{bottom:450.867741pt;}
.yad_c00258{bottom:451.076228pt;}
.yae_c00258{bottom:451.524500pt;}
.yaf_c00258{bottom:451.888512pt;}
.yb0_c00258{bottom:452.306013pt;}
.yb1_c00258{bottom:452.680615pt;}
.yb2_c00258{bottom:452.916029pt;}
.ya9_c00258{bottom:480.400000pt;}
.ya8_c00258{bottom:489.360000pt;}
.y9d_c00258{bottom:500.585285pt;}
.y9e_c00258{bottom:500.794153pt;}
.y9f_c00258{bottom:501.097431pt;}
.ya0_c00258{bottom:501.768835pt;}
.ya1_c00258{bottom:502.193053pt;}
.ya2_c00258{bottom:502.443144pt;}
.ya3_c00258{bottom:503.132788pt;}
.ya4_c00258{bottom:503.994309pt;}
.ya5_c00258{bottom:504.303432pt;}
.ya6_c00258{bottom:505.030060pt;}
.ya7_c00258{bottom:505.510864pt;}
.y90_c00258{bottom:520.989612pt;}
.y91_c00258{bottom:521.391873pt;}
.y92_c00258{bottom:521.780515pt;}
.y93_c00258{bottom:522.209704pt;}
.y94_c00258{bottom:522.434471pt;}
.y95_c00258{bottom:522.921457pt;}
.y96_c00258{bottom:523.756475pt;}
.y97_c00258{bottom:524.070692pt;}
.y98_c00258{bottom:524.298007pt;}
.y99_c00258{bottom:524.959264pt;}
.y9a_c00258{bottom:525.128764pt;}
.y9b_c00258{bottom:525.388061pt;}
.y9c_c00258{bottom:525.837545pt;}
.y86_c00258{bottom:542.031431pt;}
.y87_c00258{bottom:542.031716pt;}
.y88_c00258{bottom:542.031755pt;}
.y89_c00258{bottom:542.031963pt;}
.y8a_c00258{bottom:542.032223pt;}
.y8b_c00258{bottom:542.032671pt;}
.y8e_c00258{bottom:542.032948pt;}
.y8c_c00258{bottom:542.033033pt;}
.y8f_c00258{bottom:542.033155pt;}
.y8d_c00258{bottom:542.033392pt;}
.y78_c00258{bottom:562.277876pt;}
.y79_c00258{bottom:562.451083pt;}
.y7a_c00258{bottom:562.859844pt;}
.y7b_c00258{bottom:563.150273pt;}
.y7c_c00258{bottom:563.803631pt;}
.y7d_c00258{bottom:564.163496pt;}
.y7e_c00258{bottom:564.707636pt;}
.y7f_c00258{bottom:564.970584pt;}
.y80_c00258{bottom:565.716028pt;}
.y81_c00258{bottom:566.012779pt;}
.y82_c00258{bottom:566.468941pt;}
.y83_c00258{bottom:567.042344pt;}
.y84_c00258{bottom:567.216793pt;}
.y85_c00258{bottom:567.245843pt;}
.y6e_c00258{bottom:582.440331pt;}
.y6f_c00258{bottom:583.000531pt;}
.y70_c00258{bottom:583.232404pt;}
.y71_c00258{bottom:583.515247pt;}
.y72_c00258{bottom:584.006300pt;}
.y73_c00258{bottom:585.004753pt;}
.y74_c00258{bottom:585.389955pt;}
.y75_c00258{bottom:585.636232pt;}
.y76_c00258{bottom:586.212341pt;}
.y77_c00258{bottom:587.089649pt;}
.y61_c00258{bottom:602.604900pt;}
.y62_c00258{bottom:603.062973pt;}
.y63_c00258{bottom:603.337496pt;}
.y64_c00258{bottom:604.014840pt;}
.y65_c00258{bottom:604.323627pt;}
.y66_c00258{bottom:604.953707pt;}
.y67_c00258{bottom:605.366745pt;}
.y68_c00258{bottom:605.847269pt;}
.y69_c00258{bottom:606.677215pt;}
.y6a_c00258{bottom:606.960152pt;}
.y6b_c00258{bottom:607.254231pt;}
.y6c_c00258{bottom:607.625459pt;}
.y6d_c00258{bottom:607.877940pt;}
.y56_c00258{bottom:622.752983pt;}
.y57_c00258{bottom:623.460632pt;}
.y58_c00258{bottom:623.795755pt;}
.y59_c00258{bottom:624.213585pt;}
.y5a_c00258{bottom:624.606407pt;}
.y5b_c00258{bottom:625.954493pt;}
.y5c_c00258{bottom:626.278709pt;}
.y5d_c00258{bottom:626.821423pt;}
.y5e_c00258{bottom:627.429304pt;}
.y5f_c00258{bottom:627.679349pt;}
.y60_c00258{bottom:628.272736pt;}
.y49_c00258{bottom:642.937988pt;}
.y4a_c00258{bottom:643.691023pt;}
.y4b_c00258{bottom:643.948867pt;}
.y4c_c00258{bottom:644.417411pt;}
.y4d_c00258{bottom:644.985619pt;}
.y4e_c00258{bottom:645.197981pt;}
.y4f_c00258{bottom:645.492763pt;}
.y50_c00258{bottom:646.591408pt;}
.y51_c00258{bottom:646.943015pt;}
.y52_c00258{bottom:647.671660pt;}
.y53_c00258{bottom:648.047019pt;}
.y54_c00258{bottom:648.914292pt;}
.y55_c00258{bottom:649.212696pt;}
.y3b_c00258{bottom:663.099079pt;}
.y3c_c00258{bottom:664.185024pt;}
.y3d_c00258{bottom:664.487597pt;}
.y3e_c00258{bottom:665.131721pt;}
.y3f_c00258{bottom:665.448999pt;}
.y40_c00258{bottom:665.971620pt;}
.y41_c00258{bottom:666.470707pt;}
.y42_c00258{bottom:666.931107pt;}
.y43_c00258{bottom:667.650045pt;}
.y44_c00258{bottom:667.939997pt;}
.y45_c00258{bottom:668.564843pt;}
.y46_c00258{bottom:669.233929pt;}
.y47_c00258{bottom:669.454229pt;}
.y48_c00258{bottom:670.049369pt;}
.y2f_c00258{bottom:683.508464pt;}
.y30_c00258{bottom:683.870347pt;}
.y31_c00258{bottom:684.528968pt;}
.y32_c00258{bottom:685.720424pt;}
.y33_c00258{bottom:686.041324pt;}
.y34_c00258{bottom:686.425789pt;}
.y35_c00258{bottom:687.052801pt;}
.y36_c00258{bottom:687.503492pt;}
.y37_c00258{bottom:688.124631pt;}
.y38_c00258{bottom:688.586105pt;}
.y39_c00258{bottom:689.637193pt;}
.y3a_c00258{bottom:690.257996pt;}
.y24_c00258{bottom:703.674543pt;}
.y25_c00258{bottom:704.189200pt;}
.y26_c00258{bottom:704.845599pt;}
.y27_c00258{bottom:705.393709pt;}
.y28_c00258{bottom:706.146587pt;}
.y29_c00258{bottom:707.282555pt;}
.y2a_c00258{bottom:707.743203pt;}
.y2b_c00258{bottom:708.783745pt;}
.y2c_c00258{bottom:709.907999pt;}
.y2d_c00258{bottom:710.459256pt;}
.y2e_c00258{bottom:711.125241pt;}
.y19_c00258{bottom:724.082497pt;}
.y1a_c00258{bottom:724.885325pt;}
.y1b_c00258{bottom:725.045325pt;}
.y1c_c00258{bottom:725.885275pt;}
.y1d_c00258{bottom:726.782533pt;}
.y1e_c00258{bottom:727.914433pt;}
.y1f_c00258{bottom:728.333400pt;}
.y20_c00258{bottom:728.959109pt;}
.y21_c00258{bottom:731.001243pt;}
.y22_c00258{bottom:731.586761pt;}
.y23_c00258{bottom:732.080632pt;}
.yc_c00258{bottom:744.485333pt;}
.yd_c00258{bottom:744.984937pt;}
.ye_c00258{bottom:745.714309pt;}
.yf_c00258{bottom:746.279405pt;}
.y10_c00258{bottom:746.945609pt;}
.y11_c00258{bottom:747.095325pt;}
.y12_c00258{bottom:747.324057pt;}
.y13_c00258{bottom:748.318505pt;}
.y14_c00258{bottom:749.764033pt;}
.y15_c00258{bottom:750.384233pt;}
.y16_c00258{bottom:751.450669pt;}
.y17_c00258{bottom:752.072465pt;}
.y18_c00258{bottom:752.675445pt;}
.y3_c00258{bottom:820.805544pt;}
.y4_c00258{bottom:822.080416pt;}
.y5_c00258{bottom:822.295404pt;}
.y6_c00258{bottom:823.132404pt;}
.y7_c00258{bottom:824.735968pt;}
.y8_c00258{bottom:825.078643pt;}
.y9_c00258{bottom:825.943348pt;}
.ya_c00258{bottom:826.555379pt;}
.yb_c00258{bottom:827.305537pt;}
.y1_c00258{bottom:839.044000pt;}
.y2_c00258{bottom:840.145485pt;}
.hd_c00258{height:19.600000pt;}
.h1c_c00258{height:21.466667pt;}
.h1e_c00258{height:37.333333pt;}
.h1d_c00258{height:41.066667pt;}
.h17_c00258{height:42.018896pt;}
.h1a_c00258{height:42.952649pt;}
.h16_c00258{height:43.886402pt;}
.h19_c00258{height:45.753909pt;}
.h18_c00258{height:46.687662pt;}
.h1b_c00258{height:47.600000pt;}
.h3_c00258{height:50.413329pt;}
.h15_c00258{height:54.151627pt;}
.h7_c00258{height:55.078808pt;}
.ha_c00258{height:57.879425pt;}
.h14_c00258{height:57.886222pt;}
.h5_c00258{height:58.812964pt;}
.hf_c00258{height:59.736947pt;}
.h9_c00258{height:59.746503pt;}
.h4_c00258{height:60.680042pt;}
.h11_c00258{height:61.603080pt;}
.h6_c00258{height:61.613581pt;}
.h10_c00258{height:62.537116pt;}
.hb_c00258{height:63.480660pt;}
.h8_c00258{height:64.414199pt;}
.hc_c00258{height:65.347738pt;}
.h13_c00258{height:65.355412pt;}
.he_c00258{height:67.200000pt;}
.h12_c00258{height:68.136740pt;}
.h2_c00258{height:70.952093pt;}
.h1_c00258{height:893.333333pt;}
.h0_c00258{height:893.466667pt;}
.w1_c00258{width:634.000000pt;}
.w0_c00258{width:634.266667pt;}
.x0_c00258{left:0.000000pt;}
.x78_c00258{left:33.120000pt;}
.x79_c00258{left:57.600000pt;}
.x19_c00258{left:66.328588pt;}
.x3f_c00258{left:67.309637pt;}
.x4b_c00258{left:68.295360pt;}
.x68_c00258{left:69.280960pt;}
.x96_c00258{left:72.370501pt;}
.x90_c00258{left:74.997333pt;}
.x3_c00258{left:79.338996pt;}
.x98_c00258{left:80.373104pt;}
.xc_c00258{left:83.757333pt;}
.x71_c00258{left:85.293269pt;}
.x2b_c00258{left:88.445087pt;}
.x1_c00258{left:89.930667pt;}
.x23_c00258{left:93.807609pt;}
.x7c_c00258{left:95.649333pt;}
.x83_c00258{left:98.770588pt;}
.x62_c00258{left:102.477904pt;}
.x4c_c00258{left:103.574629pt;}
.x8a_c00258{left:104.524667pt;}
.x1a_c00258{left:106.464095pt;}
.xd_c00258{left:107.548000pt;}
.x72_c00258{left:108.627856pt;}
.x9d_c00258{left:110.618173pt;}
.x1b_c00258{left:114.464263pt;}
.x40_c00258{left:117.523965pt;}
.x55_c00258{left:118.679747pt;}
.x44_c00258{left:121.773156pt;}
.x8b_c00258{left:123.062187pt;}
.x4d_c00258{left:124.714185pt;}
.x4_c00258{left:126.531975pt;}
.x24_c00258{left:128.367732pt;}
.x34_c00258{left:130.274068pt;}
.x8c_c00258{left:131.263600pt;}
.x5_c00258{left:134.487239pt;}
.x2_c00258{left:137.821333pt;}
.x56_c00258{left:139.757504pt;}
.xe_c00258{left:142.280000pt;}
.x35_c00258{left:148.048885pt;}
.x7a_c00258{left:149.520000pt;}
.x1c_c00258{left:156.494492pt;}
.x73_c00258{left:160.227175pt;}
.x99_c00258{left:163.411816pt;}
.x6_c00258{left:165.484387pt;}
.x63_c00258{left:166.571489pt;}
.xf_c00258{left:169.189333pt;}
.x69_c00258{left:171.018863pt;}
.xb0_c00258{left:175.440000pt;}
.x4e_c00258{left:176.786921pt;}
.x9e_c00258{left:178.503160pt;}
.x45_c00258{left:179.669539pt;}
.xb4_c00258{left:182.888000pt;}
.x36_c00258{left:185.962744pt;}
.x7b_c00258{left:188.880000pt;}
.x6a_c00258{left:189.789085pt;}
.x84_c00258{left:191.213576pt;}
.x64_c00258{left:192.497580pt;}
.x25_c00258{left:196.798588pt;}
.xb3_c00258{left:198.393333pt;}
.x10_c00258{left:200.913333pt;}
.x91_c00258{left:203.501333pt;}
.x37_c00258{left:204.628312pt;}
.x11_c00258{left:208.042667pt;}
.x46_c00258{left:209.935968pt;}
.x74_c00258{left:212.091883pt;}
.x2c_c00258{left:216.153144pt;}
.x85_c00258{left:217.107964pt;}
.x12_c00258{left:218.934667pt;}
.x7d_c00258{left:223.574667pt;}
.x7_c00258{left:224.880261pt;}
.x5b_c00258{left:226.247900pt;}
.x8d_c00258{left:229.308573pt;}
.x6b_c00258{left:230.383424pt;}
.x38_c00258{left:235.358888pt;}
.x8_c00258{left:237.575096pt;}
.x2d_c00258{left:238.780381pt;}
.xb1_c00258{left:241.920000pt;}
.x9f_c00258{left:242.883187pt;}
.x65_c00258{left:246.269268pt;}
.x4f_c00258{left:248.999045pt;}
.xb5_c00258{left:251.050667pt;}
.x92_c00258{left:253.582667pt;}
.x26_c00258{left:256.609108pt;}
.x1d_c00258{left:257.948620pt;}
.xb2_c00258{left:258.960000pt;}
.xa4_c00258{left:260.571067pt;}
.x7e_c00258{left:261.529333pt;}
.x39_c00258{left:264.714685pt;}
.x13_c00258{left:266.289333pt;}
.x9_c00258{left:269.602819pt;}
.x5c_c00258{left:271.596468pt;}
.xad_c00258{left:273.987080pt;}
.x2e_c00258{left:275.688823pt;}
.x1e_c00258{left:278.915735pt;}
.x27_c00258{left:280.831449pt;}
.x7f_c00258{left:282.453409pt;}
.xa5_c00258{left:284.408347pt;}
.x8e_c00258{left:288.390493pt;}
.xa_c00258{left:292.268733pt;}
.x5d_c00258{left:293.455251pt;}
.x77_c00258{left:295.920000pt;}
.x86_c00258{left:297.983069pt;}
.x87_c00258{left:299.178667pt;}
.x57_c00258{left:300.887328pt;}
.x2f_c00258{left:302.168368pt;}
.xb6_c00258{left:309.017333pt;}
.x1f_c00258{left:310.172379pt;}
.xa6_c00258{left:311.728320pt;}
.x47_c00258{left:313.640051pt;}
.x97_c00258{left:316.344115pt;}
.x50_c00258{left:317.719915pt;}
.xb_c00258{left:320.070188pt;}
.x80_c00258{left:322.743636pt;}
.xa0_c00258{left:324.027773pt;}
.x6c_c00258{left:326.142845pt;}
.x75_c00258{left:331.437264pt;}
.x3a_c00258{left:334.085843pt;}
.x14_c00258{left:335.124000pt;}
.xa7_c00258{left:337.412987pt;}
.x30_c00258{left:338.670087pt;}
.x9a_c00258{left:339.832741pt;}
.x6d_c00258{left:345.034401pt;}
.x88_c00258{left:347.889333pt;}
.xaf_c00258{left:349.200000pt;}
.xa8_c00258{left:350.143280pt;}
.x3b_c00258{left:351.132604pt;}
.x5e_c00258{left:355.631011pt;}
.x58_c00258{left:358.271368pt;}
.x66_c00258{left:359.813971pt;}
.x9b_c00258{left:361.177285pt;}
.x15_c00258{left:364.657333pt;}
.x31_c00258{left:365.853716pt;}
.xa1_c00258{left:367.488827pt;}
.xaa_c00258{left:378.756493pt;}
.x48_c00258{left:380.393945pt;}
.x51_c00258{left:381.569305pt;}
.x41_c00258{left:383.048120pt;}
.x89_c00258{left:384.953333pt;}
.x3c_c00258{left:387.874351pt;}
.x81_c00258{left:392.421540pt;}
.x28_c00258{left:394.778904pt;}
.x8f_c00258{left:396.376907pt;}
.x6e_c00258{left:400.088789pt;}
.xa2_c00258{left:401.288613pt;}
.x52_c00258{left:403.363640pt;}
.xae_c00258{left:406.273627pt;}
.x42_c00258{left:408.036589pt;}
.x59_c00258{left:410.605011pt;}
.x20_c00258{left:412.307868pt;}
.x6f_c00258{left:414.258144pt;}
.x16_c00258{left:415.440000pt;}
.x5f_c00258{left:418.289493pt;}
.x93_c00258{left:422.888000pt;}
.x29_c00258{left:423.824136pt;}
.x53_c00258{left:426.006115pt;}
.x32_c00258{left:427.720257pt;}
.x70_c00258{left:435.879565pt;}
.x67_c00258{left:437.350825pt;}
.xa3_c00258{left:439.278853pt;}
.x3d_c00258{left:440.198747pt;}
.x21_c00258{left:441.587151pt;}
.x17_c00258{left:445.049333pt;}
.x49_c00258{left:446.465061pt;}
.x76_c00258{left:448.118197pt;}
.x54_c00258{left:454.545569pt;}
.x2a_c00258{left:458.904287pt;}
.x33_c00258{left:464.205976pt;}
.x22_c00258{left:466.311683pt;}
.x94_c00258{left:468.017333pt;}
.x82_c00258{left:471.036675pt;}
.x9c_c00258{left:472.560000pt;}
.x18_c00258{left:473.762667pt;}
.x3e_c00258{left:475.208353pt;}
.xab_c00258{left:477.396200pt;}
.x60_c00258{left:480.579920pt;}
.x61_c00258{left:483.043063pt;}
.x43_c00258{left:485.777056pt;}
.x95_c00258{left:489.086667pt;}
.x5a_c00258{left:490.303060pt;}
.x4a_c00258{left:492.126067pt;}
.xac_c00258{left:510.236533pt;}
.xa9_c00258{left:523.132053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m0_c00259{transform:matrix(0.011364,-0.000125,0.002750,0.249985,0,0);-ms-transform:matrix(0.011364,-0.000125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.011364,-0.000125,0.002750,0.249985,0,0);}
.m132_c00259{transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012530,0.000000,0.000000,0.250000,0,0);}
.m133_c00259{transform:matrix(0.023310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023310,0.000000,0.000000,0.250000,0,0);}
.m107_c00259{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);}
.m105_c00259{transform:matrix(0.073015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073015,0.000000,0.000000,0.250000,0,0);}
.m11e_c00259{transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);}
.ma7_c00259{transform:matrix(0.086510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086510,0.000000,0.000000,0.250000,0,0);}
.m69_c00259{transform:matrix(0.101655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101655,0.000000,0.000000,0.250000,0,0);}
.mfc_c00259{transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);}
.m8f_c00259{transform:matrix(0.122460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122460,0.000000,0.000000,0.250000,0,0);}
.me7_c00259{transform:matrix(0.142020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142020,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);}
.meb_c00259{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.m4f_c00259{transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145970,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);}
.mb7_c00259{transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);}
.m108_c00259{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);}
.m114_c00259{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);}
.m125_c00259{transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);}
.mf8_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);}
.m5b_c00259{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);}
.m14c_c00259{transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{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);}
.mec_c00259{transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);}
.md5_c00259{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);}
.mb1_c00259{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);}
.m135_c00259{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);}
.m8a_c00259{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);}
.m82_c00259{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);}
.m34_c00259{transform:matrix(0.155890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155890,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.156016,-0.001716,0.002750,0.249985,0,0);-ms-transform:matrix(0.156016,-0.001716,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156016,-0.001716,0.002750,0.249985,0,0);}
.m103_c00259{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);}
.m8d_c00259{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);}
.m124_c00259{transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);}
.m73_c00259{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);}
.m54_c00259{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);}
.m7c_c00259{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);}
.mfe_c00259{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);}
.mca_c00259{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);}
.mef_c00259{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);}
.m80_c00259{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);}
.m4e_c00259{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);}
.m14e_c00259{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);}
.m5c_c00259{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);}
.m92_c00259{transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);}
.m150_c00259{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);}
.m2e_c00259{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);}
.m11c_c00259{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);}
.mf5_c00259{transform:matrix(0.163345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163345,0.000000,0.000000,0.250000,0,0);}
.m123_c00259{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);}
.m79_c00259{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m40_c00259{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);}
.m72_c00259{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.m6f_c00259{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);}
.me4_c00259{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);}
.m1b_c00259{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m111_c00259{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);}
.m13e_c00259{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);}
.me3_c00259{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);}
.m2a_c00259{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.mfa_c00259{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);}
.maf_c00259{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);}
.m86_c00259{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);}
.m18_c00259{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);}
.m9f_c00259{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);}
.mf6_c00259{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);}
.m113_c00259{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);}
.me2_c00259{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);}
.m7b_c00259{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);}
.m10c_c00259{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);}
.m13a_c00259{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);}
.m39_c00259{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);}
.m14b_c00259{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);}
.m83_c00259{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);}
.m100_c00259{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);}
.mee_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);}
.m66_c00259{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_c00259{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);}
.m151_c00259{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m95_c00259{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);}
.mcd_c00259{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);}
.mc3_c00259{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);}
.mff_c00259{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);}
.m121_c00259{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);}
.m139_c00259{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);}
.m16_c00259{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);}
.m116_c00259{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);}
.m14d_c00259{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);}
.m10b_c00259{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);}
.m6b_c00259{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);}
.mc0_c00259{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);}
.mba_c00259{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);}
.mf4_c00259{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);}
.m30_c00259{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);}
.m85_c00259{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);}
.med_c00259{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);}
.m7e_c00259{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_c00259{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);}
.m53_c00259{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);}
.m31_c00259{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);}
.m97_c00259{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);}
.m2b_c00259{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);}
.m91_c00259{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);}
.m9a_c00259{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);}
.m13b_c00259{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);}
.mc7_c00259{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);}
.m140_c00259{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);}
.mbc_c00259{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);}
.m120_c00259{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);}
.m93_c00259{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);}
.md6_c00259{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);}
.m5e_c00259{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);}
.me8_c00259{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);}
.m22_c00259{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);}
.mc1_c00259{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);}
.m5d_c00259{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);}
.me6_c00259{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);}
.m58_c00259{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);}
.mb3_c00259{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);}
.m138_c00259{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);}
.m9d_c00259{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);}
.m57_c00259{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);}
.maa_c00259{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);}
.m9c_c00259{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);}
.mbd_c00259{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);}
.mc9_c00259{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);}
.m47_c00259{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);}
.mc6_c00259{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);}
.m104_c00259{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);}
.m11b_c00259{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);}
.mde_c00259{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);}
.m1f_c00259{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);}
.me1_c00259{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);}
.m14f_c00259{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);}
.m71_c00259{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);}
.m20_c00259{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);}
.m118_c00259{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_c00259{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);}
.mea_c00259{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);}
.m101_c00259{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);}
.m10f_c00259{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);}
.m122_c00259{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);}
.m148_c00259{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);}
.ma6_c00259{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);}
.m7d_c00259{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);}
.m24_c00259{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);}
.mfb_c00259{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);}
.m119_c00259{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);}
.mf3_c00259{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);}
.m7a_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);}
.m36_c00259{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);}
.m76_c00259{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);}
.mf0_c00259{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);}
.m50_c00259{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);}
.m102_c00259{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);}
.m137_c00259{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);}
.m12f_c00259{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);}
.m12e_c00259{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);}
.mb6_c00259{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);}
.m142_c00259{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);}
.m1d_c00259{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);}
.mae_c00259{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);}
.m8b_c00259{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);}
.m4b_c00259{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);}
.m9e_c00259{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);}
.m14_c00259{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);}
.mf9_c00259{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);}
.m12d_c00259{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);}
.md3_c00259{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);}
.m94_c00259{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);}
.ma9_c00259{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);}
.m29_c00259{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);}
.mfd_c00259{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);}
.m55_c00259{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);}
.mcc_c00259{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);}
.m141_c00259{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);}
.ma8_c00259{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);}
.m2f_c00259{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);}
.mb5_c00259{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);}
.m61_c00259{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);}
.mdc_c00259{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);}
.m28_c00259{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);}
.m145_c00259{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_c00259{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);}
.m59_c00259{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);}
.mf2_c00259{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);}
.m43_c00259{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);}
.m12a_c00259{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);}
.me9_c00259{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);}
.m130_c00259{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);}
.mcf_c00259{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);}
.m67_c00259{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);}
.m42_c00259{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);}
.m78_c00259{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);}
.mdf_c00259{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);}
.m126_c00259{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);}
.m52_c00259{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);}
.mf7_c00259{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);}
.mbb_c00259{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);}
.md2_c00259{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);}
.m90_c00259{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);}
.m88_c00259{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);}
.m9b_c00259{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);}
.m5a_c00259{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);}
.m77_c00259{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);}
.m147_c00259{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);}
.mc4_c00259{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);}
.m1c_c00259{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);}
.m1a_c00259{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);}
.m13f_c00259{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);}
.m75_c00259{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);}
.m51_c00259{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);}
.m12b_c00259{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);}
.m33_c00259{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);}
.ma0_c00259{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);}
.mcb_c00259{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);}
.m3a_c00259{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);}
.mb0_c00259{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);}
.m131_c00259{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);}
.mb4_c00259{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);}
.m10d_c00259{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);}
.m49_c00259{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);}
.m11d_c00259{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);}
.mad_c00259{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);}
.mbf_c00259{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);}
.m1e_c00259{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);}
.md0_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);}
.m3f_c00259{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);}
.m25_c00259{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);}
.m89_c00259{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);}
.mab_c00259{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);}
.m144_c00259{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);}
.mb2_c00259{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);}
.m143_c00259{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);}
.m13d_c00259{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);}
.m106_c00259{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);}
.m12c_c00259{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);}
.m10a_c00259{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);}
.mc8_c00259{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);}
.me5_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);}
.m65_c00259{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);}
.mbe_c00259{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);}
.mc2_c00259{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);}
.m45_c00259{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);}
.m6e_c00259{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);}
.m127_c00259{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);}
.m96_c00259{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);}
.md9_c00259{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);}
.m129_c00259{transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);}
.m3c_c00259{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);}
.me0_c00259{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);}
.m112_c00259{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);}
.mce_c00259{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);}
.m14a_c00259{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);}
.m2d_c00259{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);}
.m84_c00259{transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);}
.mf1_c00259{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);}
.m134_c00259{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);}
.m13c_c00259{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);}
.m26_c00259{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);}
.md4_c00259{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);}
.m64_c00259{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);}
.m38_c00259{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);}
.m110_c00259{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);}
.m149_c00259{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);}
.m98_c00259{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);}
.m46_c00259{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);}
.ma4_c00259{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);}
.m3d_c00259{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);}
.m68_c00259{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);}
.m56_c00259{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);}
.m6a_c00259{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);}
.m60_c00259{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);}
.ma5_c00259{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);}
.m32_c00259{transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);}
.m48_c00259{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);}
.m7f_c00259{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);}
.m13_c00259{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);}
.md1_c00259{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);}
.m21_c00259{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);}
.m87_c00259{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);}
.m63_c00259{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);}
.m11f_c00259{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);}
.m3_c00259{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);}
.m23_c00259{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);}
.m8e_c00259{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);}
.m115_c00259{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);}
.m117_c00259{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);}
.md8_c00259{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);}
.ma2_c00259{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);}
.mc5_c00259{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);}
.m146_c00259{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);}
.md7_c00259{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);}
.mac_c00259{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);}
.m35_c00259{transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);}
.m70_c00259{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);}
.m4d_c00259{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);}
.mdd_c00259{transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{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);}
.m17_c00259{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);}
.m8_c00259{transform:matrix(0.241430,-0.002656,0.002750,0.249985,0,0);-ms-transform:matrix(0.241430,-0.002656,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241430,-0.002656,0.002750,0.249985,0,0);}
.mb9_c00259{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);}
.ma3_c00259{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.m10e_c00259{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.m136_c00259{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);}
.ma1_c00259{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m109_c00259{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);}
.m44_c00259{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.mb8_c00259{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.mdb_c00259{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);}
.m11a_c00259{transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);}
.m5f_c00259{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);}
.m6c_c00259{transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);}
.m62_c00259{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);}
.ma_c00259{transform:matrix(0.264459,-0.002909,0.002750,0.249985,0,0);-ms-transform:matrix(0.264459,-0.002909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264459,-0.002909,0.002750,0.249985,0,0);}
.m6_c00259{transform:matrix(0.265704,-0.002923,0.002750,0.249985,0,0);-ms-transform:matrix(0.265704,-0.002923,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265704,-0.002923,0.002750,0.249985,0,0);}
.m3b_c00259{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);}
.m4a_c00259{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);}
.m6d_c00259{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{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);}
.m128_c00259{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);}
.mda_c00259{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);}
.m99_c00259{transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280190,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.291137,-0.003203,0.002750,0.249985,0,0);-ms-transform:matrix(0.291137,-0.003203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291137,-0.003203,0.002750,0.249985,0,0);}
.m41_c00259{transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.303512,-0.003339,0.002750,0.249985,0,0);-ms-transform:matrix(0.303512,-0.003339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303512,-0.003339,0.002750,0.249985,0,0);}
.m10_c00259{transform:matrix(0.313096,-0.003444,0.002750,0.249985,0,0);-ms-transform:matrix(0.313096,-0.003444,0.002750,0.249985,0,0);-webkit-transform:matrix(0.313096,-0.003444,0.002750,0.249985,0,0);}
.m2_c00259{transform:matrix(0.321771,-0.003539,0.002750,0.249985,0,0);-ms-transform:matrix(0.321771,-0.003539,0.002750,0.249985,0,0);-webkit-transform:matrix(0.321771,-0.003539,0.002750,0.249985,0,0);}
.m12_c00259{transform:matrix(0.359003,-0.003949,0.002750,0.249985,0,0);-ms-transform:matrix(0.359003,-0.003949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.359003,-0.003949,0.002750,0.249985,0,0);}
.m4c_c00259{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);}
.m4_c00259{transform:matrix(0.369313,-0.004062,0.002750,0.249985,0,0);-ms-transform:matrix(0.369313,-0.004062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.369313,-0.004062,0.002750,0.249985,0,0);}
.m1_c00259{transform:matrix(0.377502,-0.004153,0.002750,0.249985,0,0);-ms-transform:matrix(0.377502,-0.004153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.377502,-0.004153,0.002750,0.249985,0,0);}
.mb_c00259{transform:matrix(0.397136,-0.004368,0.002750,0.249985,0,0);-ms-transform:matrix(0.397136,-0.004368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.397136,-0.004368,0.002750,0.249985,0,0);}
.m9_c00259{transform:matrix(0.410000,-0.004510,0.002750,0.249985,0,0);-ms-transform:matrix(0.410000,-0.004510,0.002750,0.249985,0,0);-webkit-transform:matrix(0.410000,-0.004510,0.002750,0.249985,0,0);}
.mf_c00259{transform:matrix(0.461412,-0.005076,0.002750,0.249985,0,0);-ms-transform:matrix(0.461412,-0.005076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.461412,-0.005076,0.002750,0.249985,0,0);}
.me_c00259{transform:matrix(0.534463,-0.005879,0.002750,0.249985,0,0);-ms-transform:matrix(0.534463,-0.005879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.534463,-0.005879,0.002750,0.249985,0,0);}
.mc_c00259{transform:matrix(0.705242,-0.007758,0.002750,0.249985,0,0);-ms-transform:matrix(0.705242,-0.007758,0.002750,0.249985,0,0);-webkit-transform:matrix(0.705242,-0.007758,0.002750,0.249985,0,0);}
.md_c00259{transform:matrix(0.764744,-0.008412,0.002750,0.249985,0,0);-ms-transform:matrix(0.764744,-0.008412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.764744,-0.008412,0.002750,0.249985,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;}
.fsc_c00259{font-size:22.050000px;}
.fsf_c00259{font-size:48.300000px;}
.fse_c00259{font-size:52.500000px;}
.fsd_c00259{font-size:55.650000px;}
.fs10_c00259{font-size:58.800000px;}
.fs7_c00259{font-size:60.900000px;}
.fs9_c00259{font-size:61.950000px;}
.fs4_c00259{font-size:66.150000px;}
.fs6_c00259{font-size:67.200000px;}
.fs0_c00259{font-size:67.204065px;}
.fs8_c00259{font-size:69.300000px;}
.fs5_c00259{font-size:70.350000px;}
.fs3_c00259{font-size:71.400000px;}
.fsa_c00259{font-size:72.450000px;}
.fsb_c00259{font-size:77.700000px;}
.fs1_c00259{font-size:86.105209px;}
.fs2_c00259{font-size:113.406860px;}
.y0_c00259{bottom:0.000000px;}
.y32_c00259{bottom:185.530500px;}
.y30_c00259{bottom:186.792000px;}
.y31_c00259{bottom:203.278500px;}
.y2f_c00259{bottom:204.337500px;}
.y2e_c00259{bottom:229.230000px;}
.y2d_c00259{bottom:262.098000px;}
.y2c_c00259{bottom:286.540500px;}
.y2b_c00259{bottom:310.024500px;}
.y2a_c00259{bottom:333.207000px;}
.y29_c00259{bottom:355.528500px;}
.y28_c00259{bottom:378.811500px;}
.y27_c00259{bottom:402.000000px;}
.y26_c00259{bottom:424.681500px;}
.y25_c00259{bottom:448.171500px;}
.y24_c00259{bottom:470.851500px;}
.y23_c00259{bottom:494.308500px;}
.y22_c00259{bottom:517.591500px;}
.y21_c00259{bottom:540.510000px;}
.y20_c00259{bottom:563.398500px;}
.y1f_c00259{bottom:586.620000px;}
.y1e_c00259{bottom:609.570000px;}
.y1d_c00259{bottom:633.330000px;}
.y1c_c00259{bottom:656.248500px;}
.y1b_c00259{bottom:679.432500px;}
.y1a_c00259{bottom:702.357000px;}
.y19_c00259{bottom:725.379000px;}
.y18_c00259{bottom:748.078500px;}
.y17_c00259{bottom:771.538500px;}
.y16_c00259{bottom:795.511500px;}
.y15_c00259{bottom:818.070000px;}
.y14_c00259{bottom:840.864000px;}
.y13_c00259{bottom:885.630148px;}
.y12_c00259{bottom:885.630185px;}
.yc_c00259{bottom:928.260870px;}
.yd_c00259{bottom:928.623579px;}
.ye_c00259{bottom:929.325826px;}
.yf_c00259{bottom:929.859403px;}
.y10_c00259{bottom:930.232020px;}
.y11_c00259{bottom:931.145117px;}
.y1_c00259{bottom:945.001500px;}
.y2_c00259{bottom:945.949656px;}
.y3_c00259{bottom:946.630496px;}
.y4_c00259{bottom:947.339533px;}
.y5_c00259{bottom:947.717218px;}
.y6_c00259{bottom:947.924673px;}
.y7_c00259{bottom:948.421059px;}
.y8_c00259{bottom:948.676034px;}
.y9_c00259{bottom:949.388751px;}
.ya_c00259{bottom:949.885236px;}
.yb_c00259{bottom:950.351625px;}
.he_c00259{height:22.050000px;}
.h11_c00259{height:48.300000px;}
.h10_c00259{height:52.500000px;}
.hf_c00259{height:55.650000px;}
.h12_c00259{height:58.800000px;}
.h9_c00259{height:60.900000px;}
.hb_c00259{height:61.950000px;}
.h6_c00259{height:66.150000px;}
.h8_c00259{height:67.200000px;}
.h2_c00259{height:67.204065px;}
.ha_c00259{height:69.300000px;}
.h7_c00259{height:70.350000px;}
.h5_c00259{height:71.400000px;}
.hc_c00259{height:72.450000px;}
.hd_c00259{height:77.700000px;}
.h3_c00259{height:86.105209px;}
.h4_c00259{height:113.406860px;}
.h0_c00259{height:1008.450000px;}
.h1_c00259{height:1008.750000px;}
.w0_c00259{width:678.450000px;}
.w1_c00259{width:678.750000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:114.823500px;}
.xc_c00259{left:119.178152px;}
.x41_c00259{left:129.600000px;}
.x27_c00259{left:132.030000px;}
.x14_c00259{left:133.920000px;}
.x12_c00259{left:135.268479px;}
.xb7_c00259{left:136.620000px;}
.xb5_c00259{left:148.230000px;}
.x50_c00259{left:156.330000px;}
.xa9_c00259{left:159.030000px;}
.x97_c00259{left:160.110000px;}
.x8f_c00259{left:162.270000px;}
.x42_c00259{left:164.970000px;}
.x15_c00259{left:168.750000px;}
.x58_c00259{left:170.100000px;}
.x73_c00259{left:172.530000px;}
.x61_c00259{left:174.690000px;}
.x67_c00259{left:177.120000px;}
.xd_c00259{left:179.700485px;}
.x31_c00259{left:182.250000px;}
.x20_c00259{left:184.410000px;}
.x43_c00259{left:185.490000px;}
.x59_c00259{left:191.160000px;}
.x16_c00259{left:192.240000px;}
.x7a_c00259{left:193.320000px;}
.x9d_c00259{left:195.210000px;}
.x4a_c00259{left:198.720000px;}
.x2_c00259{left:201.019500px;}
.x28_c00259{left:204.930000px;}
.x90_c00259{left:207.090000px;}
.x88_c00259{left:208.170000px;}
.x62_c00259{left:209.790000px;}
.xb1_c00259{left:213.840000px;}
.x21_c00259{left:214.920000px;}
.x5a_c00259{left:217.350000px;}
.xb6_c00259{left:218.430000px;}
.x44_c00259{left:221.400000px;}
.x81_c00259{left:225.180000px;}
.x9e_c00259{left:226.530000px;}
.x32_c00259{left:233.010000px;}
.x4b_c00259{left:234.900000px;}
.xa2_c00259{left:236.520000px;}
.xb8_c00259{left:237.870000px;}
.x98_c00259{left:239.220000px;}
.xad_c00259{left:241.920000px;}
.x13_c00259{left:243.005514px;}
.x17_c00259{left:245.430000px;}
.x29_c00259{left:248.940000px;}
.x82_c00259{left:251.640000px;}
.x33_c00259{left:253.260000px;}
.x7b_c00259{left:256.770000px;}
.x3_c00259{left:262.914000px;}
.x91_c00259{left:266.220000px;}
.x89_c00259{left:269.730000px;}
.x3b_c00259{left:271.350000px;}
.x7c_c00259{left:273.240000px;}
.x18_c00259{left:274.320000px;}
.x2a_c00259{left:276.210000px;}
.x9f_c00259{left:279.720000px;}
.x8a_c00259{left:282.960000px;}
.xae_c00259{left:284.580000px;}
.x92_c00259{left:287.820000px;}
.xa6_c00259{left:288.900000px;}
.x74_c00259{left:291.870000px;}
.x51_c00259{left:293.490000px;}
.xe_c00259{left:296.729420px;}
.x83_c00259{left:298.620000px;}
.xa0_c00259{left:301.590000px;}
.x22_c00259{left:302.670000px;}
.x8b_c00259{left:305.370000px;}
.x34_c00259{left:306.720000px;}
.x5b_c00259{left:307.800000px;}
.x7d_c00259{left:308.880000px;}
.x68_c00259{left:312.660000px;}
.x3c_c00259{left:314.820000px;}
.x99_c00259{left:316.710000px;}
.x4c_c00259{left:318.600000px;}
.xb4_c00259{left:322.110000px;}
.x84_c00259{left:324.270000px;}
.x4_c00259{left:327.372000px;}
.x35_c00259{left:328.590000px;}
.x7e_c00259{left:330.750000px;}
.x69_c00259{left:331.830000px;}
.x6e_c00259{left:335.610000px;}
.x63_c00259{left:338.580000px;}
.x5c_c00259{left:341.820000px;}
.x19_c00259{left:343.440000px;}
.xb9_c00259{left:344.790000px;}
.x52_c00259{left:345.870000px;}
.x4d_c00259{left:347.220000px;}
.x3d_c00259{left:351.270000px;}
.x5_c00259{left:361.707000px;}
.x36_c00259{left:363.690000px;}
.x45_c00259{left:366.930000px;}
.x85_c00259{left:369.630000px;}
.x2b_c00259{left:371.250000px;}
.x93_c00259{left:373.410000px;}
.xa3_c00259{left:377.190000px;}
.x6_c00259{left:380.566500px;}
.xaf_c00259{left:382.860000px;}
.xf_c00259{left:385.741320px;}
.x23_c00259{left:387.180000px;}
.x1a_c00259{left:388.530000px;}
.x86_c00259{left:392.850000px;}
.x53_c00259{left:394.740000px;}
.x8c_c00259{left:395.820000px;}
.x75_c00259{left:400.410000px;}
.xba_c00259{left:402.300000px;}
.x1b_c00259{left:405.000000px;}
.x2c_c00259{left:407.430000px;}
.x64_c00259{left:409.320000px;}
.x37_c00259{left:413.370000px;}
.x6a_c00259{left:415.800000px;}
.x24_c00259{left:419.040000px;}
.x46_c00259{left:420.120000px;}
.xb0_c00259{left:422.280000px;}
.x6f_c00259{left:424.170000px;}
.x7_c00259{left:425.692500px;}
.x5d_c00259{left:427.140000px;}
.xa7_c00259{left:432.540000px;}
.x7f_c00259{left:434.430000px;}
.x76_c00259{left:438.480000px;}
.x70_c00259{left:439.560000px;}
.xaa_c00259{left:440.640000px;}
.x2d_c00259{left:442.260000px;}
.x54_c00259{left:446.040000px;}
.x10_c00259{left:447.846236px;}
.x8_c00259{left:448.872000px;}
.x94_c00259{left:451.170000px;}
.x1c_c00259{left:456.300000px;}
.xbb_c00259{left:458.190000px;}
.x38_c00259{left:460.890000px;}
.xb2_c00259{left:461.970000px;}
.x9a_c00259{left:463.320000px;}
.x5e_c00259{left:467.640000px;}
.x77_c00259{left:470.880000px;}
.x47_c00259{left:473.850000px;}
.xa4_c00259{left:476.550000px;}
.x1d_c00259{left:479.790000px;}
.xbc_c00259{left:480.870000px;}
.x71_c00259{left:481.950000px;}
.x95_c00259{left:484.920000px;}
.x2e_c00259{left:486.000000px;}
.x3e_c00259{left:487.890000px;}
.xa1_c00259{left:489.510000px;}
.x55_c00259{left:492.210000px;}
.xa8_c00259{left:493.830000px;}
.xab_c00259{left:498.690000px;}
.xa5_c00259{left:501.390000px;}
.x39_c00259{left:503.550000px;}
.x80_c00259{left:508.680000px;}
.x2f_c00259{left:510.030000px;}
.x4e_c00259{left:511.110000px;}
.x5f_c00259{left:512.190000px;}
.x9_c00259{left:513.664500px;}
.x48_c00259{left:517.860000px;}
.x96_c00259{left:521.640000px;}
.xac_c00259{left:522.720000px;}
.x87_c00259{left:527.850000px;}
.x72_c00259{left:528.930000px;}
.x6b_c00259{left:530.820000px;}
.x4f_c00259{left:536.220000px;}
.x8d_c00259{left:540.810000px;}
.x65_c00259{left:542.700000px;}
.x78_c00259{left:545.130000px;}
.x6c_c00259{left:547.290000px;}
.x9b_c00259{left:548.910000px;}
.x56_c00259{left:550.800000px;}
.x25_c00259{left:555.120000px;}
.x30_c00259{left:557.010000px;}
.xa_c00259{left:558.799500px;}
.x1e_c00259{left:561.330000px;}
.x60_c00259{left:563.490000px;}
.x9c_c00259{left:565.380000px;}
.x3a_c00259{left:569.160000px;}
.x3f_c00259{left:572.400000px;}
.x6d_c00259{left:574.020000px;}
.x49_c00259{left:577.260000px;}
.x66_c00259{left:578.340000px;}
.x26_c00259{left:581.850000px;}
.xb3_c00259{left:583.200000px;}
.x8e_c00259{left:586.980000px;}
.x40_c00259{left:591.300000px;}
.x57_c00259{left:597.510000px;}
.x11_c00259{left:600.136117px;}
.xb_c00259{left:601.198500px;}
.x1f_c00259{left:605.610000px;}
.x79_c00259{left:608.040000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fsc_c00259{font-size:19.600000pt;}
.fsf_c00259{font-size:42.933333pt;}
.fse_c00259{font-size:46.666667pt;}
.fsd_c00259{font-size:49.466667pt;}
.fs10_c00259{font-size:52.266667pt;}
.fs7_c00259{font-size:54.133333pt;}
.fs9_c00259{font-size:55.066667pt;}
.fs4_c00259{font-size:58.800000pt;}
.fs6_c00259{font-size:59.733333pt;}
.fs0_c00259{font-size:59.736947pt;}
.fs8_c00259{font-size:61.600000pt;}
.fs5_c00259{font-size:62.533333pt;}
.fs3_c00259{font-size:63.466667pt;}
.fsa_c00259{font-size:64.400000pt;}
.fsb_c00259{font-size:69.066667pt;}
.fs1_c00259{font-size:76.537963pt;}
.fs2_c00259{font-size:100.806098pt;}
.y0_c00259{bottom:0.000000pt;}
.y32_c00259{bottom:164.916000pt;}
.y30_c00259{bottom:166.037333pt;}
.y31_c00259{bottom:180.692000pt;}
.y2f_c00259{bottom:181.633333pt;}
.y2e_c00259{bottom:203.760000pt;}
.y2d_c00259{bottom:232.976000pt;}
.y2c_c00259{bottom:254.702667pt;}
.y2b_c00259{bottom:275.577333pt;}
.y2a_c00259{bottom:296.184000pt;}
.y29_c00259{bottom:316.025333pt;}
.y28_c00259{bottom:336.721333pt;}
.y27_c00259{bottom:357.333333pt;}
.y26_c00259{bottom:377.494667pt;}
.y25_c00259{bottom:398.374667pt;}
.y24_c00259{bottom:418.534667pt;}
.y23_c00259{bottom:439.385333pt;}
.y22_c00259{bottom:460.081333pt;}
.y21_c00259{bottom:480.453333pt;}
.y20_c00259{bottom:500.798667pt;}
.y1f_c00259{bottom:521.440000pt;}
.y1e_c00259{bottom:541.840000pt;}
.y1d_c00259{bottom:562.960000pt;}
.y1c_c00259{bottom:583.332000pt;}
.y1b_c00259{bottom:603.940000pt;}
.y1a_c00259{bottom:624.317333pt;}
.y19_c00259{bottom:644.781333pt;}
.y18_c00259{bottom:664.958667pt;}
.y17_c00259{bottom:685.812000pt;}
.y16_c00259{bottom:707.121333pt;}
.y15_c00259{bottom:727.173333pt;}
.y14_c00259{bottom:747.434667pt;}
.y13_c00259{bottom:787.226799pt;}
.y12_c00259{bottom:787.226831pt;}
.yc_c00259{bottom:825.120773pt;}
.yd_c00259{bottom:825.443181pt;}
.ye_c00259{bottom:826.067401pt;}
.yf_c00259{bottom:826.541692pt;}
.y10_c00259{bottom:826.872907pt;}
.y11_c00259{bottom:827.684548pt;}
.y1_c00259{bottom:840.001333pt;}
.y2_c00259{bottom:840.844139pt;}
.y3_c00259{bottom:841.449329pt;}
.y4_c00259{bottom:842.079585pt;}
.y5_c00259{bottom:842.415305pt;}
.y6_c00259{bottom:842.599709pt;}
.y7_c00259{bottom:843.040941pt;}
.y8_c00259{bottom:843.267585pt;}
.y9_c00259{bottom:843.901112pt;}
.ya_c00259{bottom:844.342432pt;}
.yb_c00259{bottom:844.757000pt;}
.he_c00259{height:19.600000pt;}
.h11_c00259{height:42.933333pt;}
.h10_c00259{height:46.666667pt;}
.hf_c00259{height:49.466667pt;}
.h12_c00259{height:52.266667pt;}
.h9_c00259{height:54.133333pt;}
.hb_c00259{height:55.066667pt;}
.h6_c00259{height:58.800000pt;}
.h8_c00259{height:59.733333pt;}
.h2_c00259{height:59.736947pt;}
.ha_c00259{height:61.600000pt;}
.h7_c00259{height:62.533333pt;}
.h5_c00259{height:63.466667pt;}
.hc_c00259{height:64.400000pt;}
.hd_c00259{height:69.066667pt;}
.h3_c00259{height:76.537963pt;}
.h4_c00259{height:100.806098pt;}
.h0_c00259{height:896.400000pt;}
.h1_c00259{height:896.666667pt;}
.w0_c00259{width:603.066667pt;}
.w1_c00259{width:603.333333pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:102.065333pt;}
.xc_c00259{left:105.936135pt;}
.x41_c00259{left:115.200000pt;}
.x27_c00259{left:117.360000pt;}
.x14_c00259{left:119.040000pt;}
.x12_c00259{left:120.238648pt;}
.xb7_c00259{left:121.440000pt;}
.xb5_c00259{left:131.760000pt;}
.x50_c00259{left:138.960000pt;}
.xa9_c00259{left:141.360000pt;}
.x97_c00259{left:142.320000pt;}
.x8f_c00259{left:144.240000pt;}
.x42_c00259{left:146.640000pt;}
.x15_c00259{left:150.000000pt;}
.x58_c00259{left:151.200000pt;}
.x73_c00259{left:153.360000pt;}
.x61_c00259{left:155.280000pt;}
.x67_c00259{left:157.440000pt;}
.xd_c00259{left:159.733764pt;}
.x31_c00259{left:162.000000pt;}
.x20_c00259{left:163.920000pt;}
.x43_c00259{left:164.880000pt;}
.x59_c00259{left:169.920000pt;}
.x16_c00259{left:170.880000pt;}
.x7a_c00259{left:171.840000pt;}
.x9d_c00259{left:173.520000pt;}
.x4a_c00259{left:176.640000pt;}
.x2_c00259{left:178.684000pt;}
.x28_c00259{left:182.160000pt;}
.x90_c00259{left:184.080000pt;}
.x88_c00259{left:185.040000pt;}
.x62_c00259{left:186.480000pt;}
.xb1_c00259{left:190.080000pt;}
.x21_c00259{left:191.040000pt;}
.x5a_c00259{left:193.200000pt;}
.xb6_c00259{left:194.160000pt;}
.x44_c00259{left:196.800000pt;}
.x81_c00259{left:200.160000pt;}
.x9e_c00259{left:201.360000pt;}
.x32_c00259{left:207.120000pt;}
.x4b_c00259{left:208.800000pt;}
.xa2_c00259{left:210.240000pt;}
.xb8_c00259{left:211.440000pt;}
.x98_c00259{left:212.640000pt;}
.xad_c00259{left:215.040000pt;}
.x13_c00259{left:216.004901pt;}
.x17_c00259{left:218.160000pt;}
.x29_c00259{left:221.280000pt;}
.x82_c00259{left:223.680000pt;}
.x33_c00259{left:225.120000pt;}
.x7b_c00259{left:228.240000pt;}
.x3_c00259{left:233.701333pt;}
.x91_c00259{left:236.640000pt;}
.x89_c00259{left:239.760000pt;}
.x3b_c00259{left:241.200000pt;}
.x7c_c00259{left:242.880000pt;}
.x18_c00259{left:243.840000pt;}
.x2a_c00259{left:245.520000pt;}
.x9f_c00259{left:248.640000pt;}
.x8a_c00259{left:251.520000pt;}
.xae_c00259{left:252.960000pt;}
.x92_c00259{left:255.840000pt;}
.xa6_c00259{left:256.800000pt;}
.x74_c00259{left:259.440000pt;}
.x51_c00259{left:260.880000pt;}
.xe_c00259{left:263.759484pt;}
.x83_c00259{left:265.440000pt;}
.xa0_c00259{left:268.080000pt;}
.x22_c00259{left:269.040000pt;}
.x8b_c00259{left:271.440000pt;}
.x34_c00259{left:272.640000pt;}
.x5b_c00259{left:273.600000pt;}
.x7d_c00259{left:274.560000pt;}
.x68_c00259{left:277.920000pt;}
.x3c_c00259{left:279.840000pt;}
.x99_c00259{left:281.520000pt;}
.x4c_c00259{left:283.200000pt;}
.xb4_c00259{left:286.320000pt;}
.x84_c00259{left:288.240000pt;}
.x4_c00259{left:290.997333pt;}
.x35_c00259{left:292.080000pt;}
.x7e_c00259{left:294.000000pt;}
.x69_c00259{left:294.960000pt;}
.x6e_c00259{left:298.320000pt;}
.x63_c00259{left:300.960000pt;}
.x5c_c00259{left:303.840000pt;}
.x19_c00259{left:305.280000pt;}
.xb9_c00259{left:306.480000pt;}
.x52_c00259{left:307.440000pt;}
.x4d_c00259{left:308.640000pt;}
.x3d_c00259{left:312.240000pt;}
.x5_c00259{left:321.517333pt;}
.x36_c00259{left:323.280000pt;}
.x45_c00259{left:326.160000pt;}
.x85_c00259{left:328.560000pt;}
.x2b_c00259{left:330.000000pt;}
.x93_c00259{left:331.920000pt;}
.xa3_c00259{left:335.280000pt;}
.x6_c00259{left:338.281333pt;}
.xaf_c00259{left:340.320000pt;}
.xf_c00259{left:342.881173pt;}
.x23_c00259{left:344.160000pt;}
.x1a_c00259{left:345.360000pt;}
.x86_c00259{left:349.200000pt;}
.x53_c00259{left:350.880000pt;}
.x8c_c00259{left:351.840000pt;}
.x75_c00259{left:355.920000pt;}
.xba_c00259{left:357.600000pt;}
.x1b_c00259{left:360.000000pt;}
.x2c_c00259{left:362.160000pt;}
.x64_c00259{left:363.840000pt;}
.x37_c00259{left:367.440000pt;}
.x6a_c00259{left:369.600000pt;}
.x24_c00259{left:372.480000pt;}
.x46_c00259{left:373.440000pt;}
.xb0_c00259{left:375.360000pt;}
.x6f_c00259{left:377.040000pt;}
.x7_c00259{left:378.393333pt;}
.x5d_c00259{left:379.680000pt;}
.xa7_c00259{left:384.480000pt;}
.x7f_c00259{left:386.160000pt;}
.x76_c00259{left:389.760000pt;}
.x70_c00259{left:390.720000pt;}
.xaa_c00259{left:391.680000pt;}
.x2d_c00259{left:393.120000pt;}
.x54_c00259{left:396.480000pt;}
.x10_c00259{left:398.085543pt;}
.x8_c00259{left:398.997333pt;}
.x94_c00259{left:401.040000pt;}
.x1c_c00259{left:405.600000pt;}
.xbb_c00259{left:407.280000pt;}
.x38_c00259{left:409.680000pt;}
.xb2_c00259{left:410.640000pt;}
.x9a_c00259{left:411.840000pt;}
.x5e_c00259{left:415.680000pt;}
.x77_c00259{left:418.560000pt;}
.x47_c00259{left:421.200000pt;}
.xa4_c00259{left:423.600000pt;}
.x1d_c00259{left:426.480000pt;}
.xbc_c00259{left:427.440000pt;}
.x71_c00259{left:428.400000pt;}
.x95_c00259{left:431.040000pt;}
.x2e_c00259{left:432.000000pt;}
.x3e_c00259{left:433.680000pt;}
.xa1_c00259{left:435.120000pt;}
.x55_c00259{left:437.520000pt;}
.xa8_c00259{left:438.960000pt;}
.xab_c00259{left:443.280000pt;}
.xa5_c00259{left:445.680000pt;}
.x39_c00259{left:447.600000pt;}
.x80_c00259{left:452.160000pt;}
.x2f_c00259{left:453.360000pt;}
.x4e_c00259{left:454.320000pt;}
.x5f_c00259{left:455.280000pt;}
.x9_c00259{left:456.590667pt;}
.x48_c00259{left:460.320000pt;}
.x96_c00259{left:463.680000pt;}
.xac_c00259{left:464.640000pt;}
.x87_c00259{left:469.200000pt;}
.x72_c00259{left:470.160000pt;}
.x6b_c00259{left:471.840000pt;}
.x4f_c00259{left:476.640000pt;}
.x8d_c00259{left:480.720000pt;}
.x65_c00259{left:482.400000pt;}
.x78_c00259{left:484.560000pt;}
.x6c_c00259{left:486.480000pt;}
.x9b_c00259{left:487.920000pt;}
.x56_c00259{left:489.600000pt;}
.x25_c00259{left:493.440000pt;}
.x30_c00259{left:495.120000pt;}
.xa_c00259{left:496.710667pt;}
.x1e_c00259{left:498.960000pt;}
.x60_c00259{left:500.880000pt;}
.x9c_c00259{left:502.560000pt;}
.x3a_c00259{left:505.920000pt;}
.x3f_c00259{left:508.800000pt;}
.x6d_c00259{left:510.240000pt;}
.x49_c00259{left:513.120000pt;}
.x66_c00259{left:514.080000pt;}
.x26_c00259{left:517.200000pt;}
.xb3_c00259{left:518.400000pt;}
.x8e_c00259{left:521.760000pt;}
.x40_c00259{left:525.600000pt;}
.x57_c00259{left:531.120000pt;}
.x11_c00259{left:533.454327pt;}
.xb_c00259{left:534.398667pt;}
.x1f_c00259{left:538.320000pt;}
.x79_c00259{left:540.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_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;}
.m8f_c00260{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);}
.m138_c00260{transform:matrix(0.067765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067765,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099630,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(0.110935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110935,0.000000,0.000000,0.250000,0,0);}
.m131_c00260{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);}
.m136_c00260{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m134_c00260{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);}
.m70_c00260{transform:matrix(0.139620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139620,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.145680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145680,0.000000,0.000000,0.250000,0,0);}
.mcf_c00260{transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);}
.me7_c00260{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);}
.mb2_c00260{transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);}
.mb6_c00260{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);}
.m10a_c00260{transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);}
.m130_c00260{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.mdb_c00260{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);}
.mec_c00260{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);}
.m6c_c00260{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);}
.m63_c00260{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00260{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);}
.m29_c00260{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);}
.mad_c00260{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);}
.m89_c00260{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);}
.m11_c00260{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);}
.m87_c00260{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);}
.m60_c00260{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);}
.m2c_c00260{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);}
.m61_c00260{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);}
.ma1_c00260{transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{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);}
.m1a_c00260{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);}
.m99_c00260{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);}
.me5_c00260{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);}
.mff_c00260{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);}
.md4_c00260{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);}
.mb7_c00260{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);}
.m5_c00260{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);}
.m12f_c00260{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);}
.m22_c00260{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);}
.ma0_c00260{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);}
.m11a_c00260{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);}
.mcb_c00260{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);}
.m129_c00260{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);}
.m5f_c00260{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);}
.me1_c00260{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);}
.m86_c00260{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);}
.m8c_c00260{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);}
.m5a_c00260{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);}
.me4_c00260{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{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);}
.mea_c00260{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);}
.m7_c00260{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);}
.mc1_c00260{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);}
.m108_c00260{transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{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);}
.m4_c00260{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);}
.m58_c00260{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);}
.m13d_c00260{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);}
.m9f_c00260{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);}
.m16_c00260{transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{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);}
.mb4_c00260{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);}
.m7c_c00260{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);}
.meb_c00260{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);}
.mbd_c00260{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);}
.m3d_c00260{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);}
.ma4_c00260{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);}
.m12a_c00260{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);}
.m10b_c00260{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);}
.mac_c00260{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);}
.m5b_c00260{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);}
.mbf_c00260{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);}
.me8_c00260{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);}
.m36_c00260{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);}
.m4c_c00260{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);}
.md9_c00260{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);}
.m1e_c00260{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);}
.mee_c00260{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);}
.m91_c00260{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);}
.m5e_c00260{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);}
.m24_c00260{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);}
.m25_c00260{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);}
.m35_c00260{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);}
.md7_c00260{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);}
.m9c_c00260{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);}
.m125_c00260{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);}
.mf3_c00260{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);}
.mf4_c00260{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);}
.mf2_c00260{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);}
.m12_c00260{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);}
.m47_c00260{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);}
.m28_c00260{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);}
.md5_c00260{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);}
.ma7_c00260{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);}
.mbb_c00260{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);}
.me9_c00260{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);}
.mb8_c00260{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);}
.m6f_c00260{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);}
.m30_c00260{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);}
.md_c00260{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);}
.m56_c00260{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);}
.m19_c00260{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);}
.m93_c00260{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);}
.m11b_c00260{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);}
.m62_c00260{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.mda_c00260{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);}
.m88_c00260{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);}
.m9a_c00260{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);}
.m10_c00260{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);}
.m116_c00260{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);}
.mf_c00260{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);}
.m128_c00260{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);}
.m1d_c00260{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);}
.mdc_c00260{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);}
.md3_c00260{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);}
.m21_c00260{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);}
.m40_c00260{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);}
.m6e_c00260{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);}
.m1c_c00260{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);}
.mab_c00260{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);}
.mc_c00260{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);}
.m78_c00260{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);}
.mdf_c00260{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);}
.m2f_c00260{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);}
.me3_c00260{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);}
.ma9_c00260{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);}
.m12d_c00260{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);}
.md0_c00260{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);}
.mf8_c00260{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);}
.m2b_c00260{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);}
.m9_c00260{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_c00260{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);}
.m2d_c00260{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);}
.m26_c00260{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);}
.m73_c00260{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);}
.mca_c00260{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);}
.mb5_c00260{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);}
.m94_c00260{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);}
.m103_c00260{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);}
.me2_c00260{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);}
.m5c_c00260{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);}
.m34_c00260{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);}
.mc8_c00260{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.mef_c00260{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);}
.mdd_c00260{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);}
.mb0_c00260{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);}
.m6_c00260{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);}
.m114_c00260{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);}
.m3b_c00260{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);}
.m105_c00260{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);}
.m2a_c00260{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);}
.mf5_c00260{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);}
.m10c_c00260{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);}
.ma8_c00260{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);}
.mce_c00260{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);}
.m3e_c00260{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);}
.me0_c00260{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);}
.m12c_c00260{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);}
.md6_c00260{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);}
.m6d_c00260{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);}
.mb1_c00260{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);}
.m83_c00260{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);}
.md1_c00260{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);}
.mcd_c00260{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);}
.m112_c00260{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);}
.mc6_c00260{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);}
.ma2_c00260{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);}
.mfc_c00260{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);}
.m10d_c00260{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);}
.m8_c00260{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);}
.m17_c00260{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_c00260{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);}
.mf9_c00260{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);}
.me_c00260{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);}
.m4e_c00260{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);}
.mf6_c00260{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);}
.m33_c00260{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);}
.m98_c00260{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);}
.ma5_c00260{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);}
.mde_c00260{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);}
.m6b_c00260{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);}
.m2e_c00260{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);}
.m7b_c00260{transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{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);}
.m7a_c00260{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);}
.m92_c00260{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);}
.mf7_c00260{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);}
.md2_c00260{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);}
.me6_c00260{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);}
.m4b_c00260{transform:matrix(0.204120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204120,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{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);}
.m118_c00260{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.md8_c00260{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);}
.m15_c00260{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);}
.m8b_c00260{transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{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);}
.m8a_c00260{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);}
.m8e_c00260{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);}
.m100_c00260{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);}
.mfd_c00260{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);}
.m107_c00260{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);}
.mf1_c00260{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);}
.m97_c00260{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);}
.m59_c00260{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);}
.m8d_c00260{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);}
.m95_c00260{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);}
.m113_c00260{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);}
.m45_c00260{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);}
.m9d_c00260{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);}
.m50_c00260{transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);}
.m121_c00260{transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);}
.m102_c00260{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);}
.m67_c00260{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);}
.m106_c00260{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);}
.m11f_c00260{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);}
.m46_c00260{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);}
.m38_c00260{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);}
.mb_c00260{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);}
.mcc_c00260{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);}
.mc9_c00260{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);}
.m96_c00260{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);}
.mc4_c00260{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);}
.m13_c00260{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);}
.m126_c00260{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);}
.mfa_c00260{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);}
.mfe_c00260{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);}
.m10e_c00260{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.mfb_c00260{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);}
.m104_c00260{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);}
.m115_c00260{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);}
.mbe_c00260{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);}
.m109_c00260{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);}
.m124_c00260{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);}
.m44_c00260{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);}
.m74_c00260{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);}
.m64_c00260{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);}
.ma6_c00260{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);}
.mc2_c00260{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);}
.m32_c00260{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);}
.m12b_c00260{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);}
.m4a_c00260{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m117_c00260{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);}
.m81_c00260{transform:matrix(0.223840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223840,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{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);}
.m9b_c00260{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);}
.mb3_c00260{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{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);}
.mc7_c00260{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);}
.m10f_c00260{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{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);}
.maa_c00260{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);}
.m4f_c00260{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);}
.m122_c00260{transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);}
.mbc_c00260{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);}
.m57_c00260{transform:matrix(0.233205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233205,0.000000,0.000000,0.250000,0,0);}
.m6a_c00260{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);}
.m72_c00260{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);}
.m37_c00260{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);}
.ma_c00260{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);}
.m20_c00260{transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238305,0.000000,0.000000,0.250000,0,0);}
.mba_c00260{transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{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);}
.m76_c00260{transform:matrix(0.240720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240720,0.000000,0.000000,0.250000,0,0);}
.mb9_c00260{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);}
.m43_c00260{transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);}
.mc5_c00260{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);}
.m75_c00260{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);}
.m41_c00260{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);}
.m65_c00260{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.mf0_c00260{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m110_c00260{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);}
.m111_c00260{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);}
.m9e_c00260{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);}
.m14_c00260{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.256185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256185,0.000000,0.000000,0.250000,0,0);}
.m11d_c00260{transform:matrix(0.256570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256570,0.000000,0.000000,0.250000,0,0);}
.mc3_c00260{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);}
.m71_c00260{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);}
.m85_c00260{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);}
.m82_c00260{transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);}
.m11e_c00260{transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{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);}
.m13f_c00260{transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00260{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);}
.m80_c00260{transform:matrix(0.266895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266895,0.000000,0.000000,0.250000,0,0);}
.m120_c00260{transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268350,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.m77_c00260{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);}
.m55_c00260{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);}
.med_c00260{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);}
.m1f_c00260{transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283005,0.000000,0.000000,0.250000,0,0);}
.m135_c00260{transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295310,0.000000,0.000000,0.250000,0,0);}
.m13b_c00260{transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);}
.m12e_c00260{transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.318935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318935,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{transform:matrix(0.336445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336445,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);}
.m127_c00260{transform:matrix(0.345600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345600,0.000000,0.000000,0.250000,0,0);}
.m101_c00260{transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);}
.m13c_c00260{transform:matrix(0.359810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359810,0.000000,0.000000,0.250000,0,0);}
.m140_c00260{transform:matrix(0.364560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364560,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.366255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366255,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{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);}
.m123_c00260{transform:matrix(0.426995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426995,0.000000,0.000000,0.250000,0,0);}
.m69_c00260{transform:matrix(0.459075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459075,0.000000,0.000000,0.250000,0,0);}
.m119_c00260{transform:matrix(0.484795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484795,0.000000,0.000000,0.250000,0,0);}
.mae_c00260{transform:matrix(0.513420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513420,0.000000,0.000000,0.250000,0,0);}
.m11c_c00260{transform:matrix(0.516875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516875,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.559875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559875,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.562000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562000,0.000000,0.000000,0.250000,0,0);}
.m139_c00260{transform:matrix(0.689795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689795,0.000000,0.000000,0.250000,0,0);}
.m132_c00260{transform:matrix(0.773585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773585,0.000000,0.000000,0.250000,0,0);}
.m137_c00260{transform:matrix(0.790245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790245,0.000000,0.000000,0.250000,0,0);}
.m13a_c00260{transform:matrix(1.104850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.104850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.104850,0.000000,0.000000,0.250000,0,0);}
.m13e_c00260{transform:matrix(1.371900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.371900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.371900,0.000000,0.000000,0.250000,0,0);}
.m133_c00260{transform:matrix(1.767335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.767335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.767335,0.000000,0.000000,0.250000,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;}
.fsc_c00260{font-size:12.600000px;}
.fsd_c00260{font-size:43.050000px;}
.fsa_c00260{font-size:50.400000px;}
.fs9_c00260{font-size:51.450000px;}
.fs6_c00260{font-size:60.900000px;}
.fsb_c00260{font-size:61.950000px;}
.fs7_c00260{font-size:66.150000px;}
.fs5_c00260{font-size:67.200000px;}
.fs1_c00260{font-size:68.250000px;}
.fs4_c00260{font-size:69.300000px;}
.fs2_c00260{font-size:70.350000px;}
.fs3_c00260{font-size:71.400000px;}
.fs8_c00260{font-size:72.450000px;}
.fse_c00260{font-size:76.650000px;}
.fs0_c00260{font-size:101.850000px;}
.y0_c00260{bottom:0.000000px;}
.y22_c00260{bottom:117.583500px;}
.y21_c00260{bottom:135.772500px;}
.y20_c00260{bottom:144.112500px;}
.y1f_c00260{bottom:159.808500px;}
.y1e_c00260{bottom:180.850500px;}
.y1d_c00260{bottom:199.065000px;}
.y1c_c00260{bottom:217.890000px;}
.y1b_c00260{bottom:271.579500px;}
.y1a_c00260{bottom:293.886000px;}
.y19_c00260{bottom:316.806000px;}
.y18_c00260{bottom:339.199500px;}
.y17_c00260{bottom:361.959000px;}
.y16_c00260{bottom:385.114500px;}
.y15_c00260{bottom:407.557500px;}
.y14_c00260{bottom:430.714500px;}
.y13_c00260{bottom:453.091500px;}
.y12_c00260{bottom:476.107500px;}
.y11_c00260{bottom:499.089000px;}
.y10_c00260{bottom:521.692500px;}
.yf_c00260{bottom:544.716000px;}
.ye_c00260{bottom:567.081000px;}
.yd_c00260{bottom:589.941000px;}
.yc_c00260{bottom:611.839500px;}
.yb_c00260{bottom:634.585500px;}
.ya_c00260{bottom:657.274500px;}
.y9_c00260{bottom:680.193000px;}
.y8_c00260{bottom:702.634500px;}
.y7_c00260{bottom:725.823000px;}
.y6_c00260{bottom:748.534500px;}
.y5_c00260{bottom:770.988000px;}
.y4_c00260{bottom:793.476000px;}
.y3_c00260{bottom:816.303000px;}
.y2_c00260{bottom:839.224500px;}
.y1_c00260{bottom:884.464500px;}
.he_c00260{height:12.600000px;}
.hf_c00260{height:43.050000px;}
.hc_c00260{height:50.400000px;}
.hb_c00260{height:51.450000px;}
.h8_c00260{height:60.900000px;}
.hd_c00260{height:61.950000px;}
.h9_c00260{height:66.150000px;}
.h7_c00260{height:67.200000px;}
.h3_c00260{height:68.250000px;}
.h6_c00260{height:69.300000px;}
.h4_c00260{height:70.350000px;}
.h5_c00260{height:71.400000px;}
.ha_c00260{height:72.450000px;}
.h10_c00260{height:76.650000px;}
.h2_c00260{height:101.850000px;}
.h1_c00260{height:1005.000000px;}
.h0_c00260{height:1005.150000px;}
.w1_c00260{width:713.250000px;}
.w0_c00260{width:713.550000px;}
.x0_c00260{left:0.000000px;}
.x9b_c00260{left:76.140000px;}
.x77_c00260{left:78.030000px;}
.xa7_c00260{left:80.730000px;}
.x53_c00260{left:83.700000px;}
.x10_c00260{left:87.750000px;}
.x28_c00260{left:89.100000px;}
.x6_c00260{left:90.180000px;}
.xb3_c00260{left:91.260000px;}
.x1e_c00260{left:98.010000px;}
.xac_c00260{left:100.170000px;}
.xb4_c00260{left:104.220000px;}
.xae_c00260{left:106.650000px;}
.xbc_c00260{left:109.080000px;}
.x32_c00260{left:110.970000px;}
.x71_c00260{left:113.670000px;}
.x1c_c00260{left:116.370000px;}
.x94_c00260{left:118.260000px;}
.x7a_c00260{left:119.340000px;}
.x9c_c00260{left:120.960000px;}
.x29_c00260{left:123.390000px;}
.xb2_c00260{left:127.710000px;}
.x7_c00260{left:129.060000px;}
.x57_c00260{left:131.490000px;}
.x1f_c00260{left:132.570000px;}
.x3a_c00260{left:133.920000px;}
.xb5_c00260{left:137.970000px;}
.xaf_c00260{left:139.050000px;}
.x11_c00260{left:142.830000px;}
.x44_c00260{left:144.180000px;}
.xa8_c00260{left:146.070000px;}
.x86_c00260{left:147.150000px;}
.x81_c00260{left:148.230000px;}
.x9e_c00260{left:150.120000px;}
.x4d_c00260{left:151.740000px;}
.x9d_c00260{left:153.360000px;}
.xa3_c00260{left:154.440000px;}
.x3b_c00260{left:156.060000px;}
.x61_c00260{left:159.570000px;}
.x2a_c00260{left:164.700000px;}
.x72_c00260{left:169.830000px;}
.x87_c00260{left:171.450000px;}
.x8_c00260{left:173.340000px;}
.x89_c00260{left:176.040000px;}
.x20_c00260{left:179.010000px;}
.x3c_c00260{left:180.090000px;}
.xad_c00260{left:183.600000px;}
.x1d_c00260{left:184.950000px;}
.x2b_c00260{left:186.300000px;}
.xb0_c00260{left:190.890000px;}
.x58_c00260{left:193.860000px;}
.xb9_c00260{left:194.940000px;}
.x73_c00260{left:200.880000px;}
.x8e_c00260{left:205.470000px;}
.x82_c00260{left:209.250000px;}
.x12_c00260{left:211.140000px;}
.x9_c00260{left:212.220000px;}
.x7b_c00260{left:214.920000px;}
.x68_c00260{left:216.000000px;}
.x1_c00260{left:218.430000px;}
.x45_c00260{left:220.590000px;}
.xa4_c00260{left:227.880000px;}
.x33_c00260{left:232.200000px;}
.x59_c00260{left:234.090000px;}
.x8f_c00260{left:235.980000px;}
.x74_c00260{left:238.140000px;}
.x21_c00260{left:241.650000px;}
.x3d_c00260{left:243.270000px;}
.x83_c00260{left:247.860000px;}
.x69_c00260{left:253.800000px;}
.xb1_c00260{left:258.660000px;}
.x2c_c00260{left:259.740000px;}
.x75_c00260{left:261.360000px;}
.x95_c00260{left:263.790000px;}
.x13_c00260{left:264.870000px;}
.x90_c00260{left:266.760000px;}
.xa_c00260{left:268.110000px;}
.x22_c00260{left:269.730000px;}
.x34_c00260{left:272.970000px;}
.x46_c00260{left:275.400000px;}
.x8a_c00260{left:277.290000px;}
.xb6_c00260{left:278.640000px;}
.x84_c00260{left:279.990000px;}
.x14_c00260{left:283.770000px;}
.x7c_c00260{left:284.850000px;}
.x2d_c00260{left:287.820000px;}
.xb_c00260{left:292.950000px;}
.x9f_c00260{left:294.030000px;}
.x96_c00260{left:295.920000px;}
.x23_c00260{left:298.620000px;}
.x3e_c00260{left:301.860000px;}
.x2_c00260{left:302.940000px;}
.x8b_c00260{left:304.560000px;}
.x5a_c00260{left:306.180000px;}
.x6a_c00260{left:307.530000px;}
.xba_c00260{left:309.420000px;}
.x91_c00260{left:311.040000px;}
.xb7_c00260{left:316.440000px;}
.x35_c00260{left:319.680000px;}
.x76_c00260{left:321.570000px;}
.xa5_c00260{left:324.270000px;}
.x2e_c00260{left:326.700000px;}
.x7d_c00260{left:328.320000px;}
.x6b_c00260{left:331.290000px;}
.x3_c00260{left:332.370000px;}
.x47_c00260{left:335.880000px;}
.x4e_c00260{left:338.310000px;}
.x36_c00260{left:339.390000px;}
.xb8_c00260{left:342.090000px;}
.x62_c00260{left:343.440000px;}
.x97_c00260{left:345.060000px;}
.x48_c00260{left:346.410000px;}
.x24_c00260{left:351.270000px;}
.xc_c00260{left:355.860000px;}
.xa0_c00260{left:359.100000px;}
.x15_c00260{left:360.180000px;}
.x6c_c00260{left:365.310000px;}
.xa9_c00260{left:366.660000px;}
.x4f_c00260{left:367.740000px;}
.xbb_c00260{left:371.250000px;}
.x7e_c00260{left:377.730000px;}
.x5b_c00260{left:379.350000px;}
.x8c_c00260{left:381.240000px;}
.x16_c00260{left:382.860000px;}
.x92_c00260{left:384.210000px;}
.x37_c00260{left:385.290000px;}
.x3f_c00260{left:387.990000px;}
.x54_c00260{left:389.880000px;}
.x49_c00260{left:392.040000px;}
.x5c_c00260{left:393.930000px;}
.x85_c00260{left:395.280000px;}
.x63_c00260{left:405.270000px;}
.x25_c00260{left:408.240000px;}
.x4_c00260{left:410.400000px;}
.xa1_c00260{left:412.020000px;}
.x17_c00260{left:416.070000px;}
.x2f_c00260{left:419.310000px;}
.x50_c00260{left:422.010000px;}
.x93_c00260{left:424.170000px;}
.x6d_c00260{left:425.790000px;}
.x5d_c00260{left:429.840000px;}
.x64_c00260{left:432.810000px;}
.x4a_c00260{left:433.890000px;}
.x26_c00260{left:434.970000px;}
.x30_c00260{left:437.940000px;}
.x18_c00260{left:440.100000px;}
.xd_c00260{left:443.340000px;}
.x55_c00260{left:446.040000px;}
.xaa_c00260{left:447.660000px;}
.x6e_c00260{left:450.090000px;}
.x4b_c00260{left:451.710000px;}
.x19_c00260{left:454.410000px;}
.x65_c00260{left:456.840000px;}
.x51_c00260{left:459.270000px;}
.x5e_c00260{left:466.830000px;}
.x4c_c00260{left:469.260000px;}
.x8d_c00260{left:470.340000px;}
.x40_c00260{left:472.770000px;}
.x56_c00260{left:473.850000px;}
.xab_c00260{left:475.740000px;}
.x78_c00260{left:476.820000px;}
.xe_c00260{left:478.440000px;}
.x31_c00260{left:485.730000px;}
.x41_c00260{left:487.620000px;}
.x66_c00260{left:490.050000px;}
.x88_c00260{left:492.480000px;}
.x79_c00260{left:495.180000px;}
.x7f_c00260{left:497.070000px;}
.x5f_c00260{left:501.930000px;}
.xa6_c00260{left:504.360000px;}
.x6f_c00260{left:505.710000px;}
.x38_c00260{left:508.140000px;}
.x99_c00260{left:510.300000px;}
.x42_c00260{left:511.920000px;}
.x27_c00260{left:515.160000px;}
.x1a_c00260{left:517.860000px;}
.x98_c00260{left:520.830000px;}
.xa2_c00260{left:524.070000px;}
.x80_c00260{left:526.770000px;}
.x60_c00260{left:529.470000px;}
.x39_c00260{left:530.820000px;}
.x5_c00260{left:533.520000px;}
.x52_c00260{left:535.140000px;}
.x43_c00260{left:540.270000px;}
.x9a_c00260{left:541.620000px;}
.xf_c00260{left:544.590000px;}
.x67_c00260{left:552.960000px;}
.x1b_c00260{left:555.120000px;}
.x70_c00260{left:574.830000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.fsc_c00260{font-size:11.200000pt;}
.fsd_c00260{font-size:38.266667pt;}
.fsa_c00260{font-size:44.800000pt;}
.fs9_c00260{font-size:45.733333pt;}
.fs6_c00260{font-size:54.133333pt;}
.fsb_c00260{font-size:55.066667pt;}
.fs7_c00260{font-size:58.800000pt;}
.fs5_c00260{font-size:59.733333pt;}
.fs1_c00260{font-size:60.666667pt;}
.fs4_c00260{font-size:61.600000pt;}
.fs2_c00260{font-size:62.533333pt;}
.fs3_c00260{font-size:63.466667pt;}
.fs8_c00260{font-size:64.400000pt;}
.fse_c00260{font-size:68.133333pt;}
.fs0_c00260{font-size:90.533333pt;}
.y0_c00260{bottom:0.000000pt;}
.y22_c00260{bottom:104.518667pt;}
.y21_c00260{bottom:120.686667pt;}
.y20_c00260{bottom:128.100000pt;}
.y1f_c00260{bottom:142.052000pt;}
.y1e_c00260{bottom:160.756000pt;}
.y1d_c00260{bottom:176.946667pt;}
.y1c_c00260{bottom:193.680000pt;}
.y1b_c00260{bottom:241.404000pt;}
.y1a_c00260{bottom:261.232000pt;}
.y19_c00260{bottom:281.605333pt;}
.y18_c00260{bottom:301.510667pt;}
.y17_c00260{bottom:321.741333pt;}
.y16_c00260{bottom:342.324000pt;}
.y15_c00260{bottom:362.273333pt;}
.y14_c00260{bottom:382.857333pt;}
.y13_c00260{bottom:402.748000pt;}
.y12_c00260{bottom:423.206667pt;}
.y11_c00260{bottom:443.634667pt;}
.y10_c00260{bottom:463.726667pt;}
.yf_c00260{bottom:484.192000pt;}
.ye_c00260{bottom:504.072000pt;}
.yd_c00260{bottom:524.392000pt;}
.yc_c00260{bottom:543.857333pt;}
.yb_c00260{bottom:564.076000pt;}
.ya_c00260{bottom:584.244000pt;}
.y9_c00260{bottom:604.616000pt;}
.y8_c00260{bottom:624.564000pt;}
.y7_c00260{bottom:645.176000pt;}
.y6_c00260{bottom:665.364000pt;}
.y5_c00260{bottom:685.322667pt;}
.y4_c00260{bottom:705.312000pt;}
.y3_c00260{bottom:725.602667pt;}
.y2_c00260{bottom:745.977333pt;}
.y1_c00260{bottom:786.190667pt;}
.he_c00260{height:11.200000pt;}
.hf_c00260{height:38.266667pt;}
.hc_c00260{height:44.800000pt;}
.hb_c00260{height:45.733333pt;}
.h8_c00260{height:54.133333pt;}
.hd_c00260{height:55.066667pt;}
.h9_c00260{height:58.800000pt;}
.h7_c00260{height:59.733333pt;}
.h3_c00260{height:60.666667pt;}
.h6_c00260{height:61.600000pt;}
.h4_c00260{height:62.533333pt;}
.h5_c00260{height:63.466667pt;}
.ha_c00260{height:64.400000pt;}
.h10_c00260{height:68.133333pt;}
.h2_c00260{height:90.533333pt;}
.h1_c00260{height:893.333333pt;}
.h0_c00260{height:893.466667pt;}
.w1_c00260{width:634.000000pt;}
.w0_c00260{width:634.266667pt;}
.x0_c00260{left:0.000000pt;}
.x9b_c00260{left:67.680000pt;}
.x77_c00260{left:69.360000pt;}
.xa7_c00260{left:71.760000pt;}
.x53_c00260{left:74.400000pt;}
.x10_c00260{left:78.000000pt;}
.x28_c00260{left:79.200000pt;}
.x6_c00260{left:80.160000pt;}
.xb3_c00260{left:81.120000pt;}
.x1e_c00260{left:87.120000pt;}
.xac_c00260{left:89.040000pt;}
.xb4_c00260{left:92.640000pt;}
.xae_c00260{left:94.800000pt;}
.xbc_c00260{left:96.960000pt;}
.x32_c00260{left:98.640000pt;}
.x71_c00260{left:101.040000pt;}
.x1c_c00260{left:103.440000pt;}
.x94_c00260{left:105.120000pt;}
.x7a_c00260{left:106.080000pt;}
.x9c_c00260{left:107.520000pt;}
.x29_c00260{left:109.680000pt;}
.xb2_c00260{left:113.520000pt;}
.x7_c00260{left:114.720000pt;}
.x57_c00260{left:116.880000pt;}
.x1f_c00260{left:117.840000pt;}
.x3a_c00260{left:119.040000pt;}
.xb5_c00260{left:122.640000pt;}
.xaf_c00260{left:123.600000pt;}
.x11_c00260{left:126.960000pt;}
.x44_c00260{left:128.160000pt;}
.xa8_c00260{left:129.840000pt;}
.x86_c00260{left:130.800000pt;}
.x81_c00260{left:131.760000pt;}
.x9e_c00260{left:133.440000pt;}
.x4d_c00260{left:134.880000pt;}
.x9d_c00260{left:136.320000pt;}
.xa3_c00260{left:137.280000pt;}
.x3b_c00260{left:138.720000pt;}
.x61_c00260{left:141.840000pt;}
.x2a_c00260{left:146.400000pt;}
.x72_c00260{left:150.960000pt;}
.x87_c00260{left:152.400000pt;}
.x8_c00260{left:154.080000pt;}
.x89_c00260{left:156.480000pt;}
.x20_c00260{left:159.120000pt;}
.x3c_c00260{left:160.080000pt;}
.xad_c00260{left:163.200000pt;}
.x1d_c00260{left:164.400000pt;}
.x2b_c00260{left:165.600000pt;}
.xb0_c00260{left:169.680000pt;}
.x58_c00260{left:172.320000pt;}
.xb9_c00260{left:173.280000pt;}
.x73_c00260{left:178.560000pt;}
.x8e_c00260{left:182.640000pt;}
.x82_c00260{left:186.000000pt;}
.x12_c00260{left:187.680000pt;}
.x9_c00260{left:188.640000pt;}
.x7b_c00260{left:191.040000pt;}
.x68_c00260{left:192.000000pt;}
.x1_c00260{left:194.160000pt;}
.x45_c00260{left:196.080000pt;}
.xa4_c00260{left:202.560000pt;}
.x33_c00260{left:206.400000pt;}
.x59_c00260{left:208.080000pt;}
.x8f_c00260{left:209.760000pt;}
.x74_c00260{left:211.680000pt;}
.x21_c00260{left:214.800000pt;}
.x3d_c00260{left:216.240000pt;}
.x83_c00260{left:220.320000pt;}
.x69_c00260{left:225.600000pt;}
.xb1_c00260{left:229.920000pt;}
.x2c_c00260{left:230.880000pt;}
.x75_c00260{left:232.320000pt;}
.x95_c00260{left:234.480000pt;}
.x13_c00260{left:235.440000pt;}
.x90_c00260{left:237.120000pt;}
.xa_c00260{left:238.320000pt;}
.x22_c00260{left:239.760000pt;}
.x34_c00260{left:242.640000pt;}
.x46_c00260{left:244.800000pt;}
.x8a_c00260{left:246.480000pt;}
.xb6_c00260{left:247.680000pt;}
.x84_c00260{left:248.880000pt;}
.x14_c00260{left:252.240000pt;}
.x7c_c00260{left:253.200000pt;}
.x2d_c00260{left:255.840000pt;}
.xb_c00260{left:260.400000pt;}
.x9f_c00260{left:261.360000pt;}
.x96_c00260{left:263.040000pt;}
.x23_c00260{left:265.440000pt;}
.x3e_c00260{left:268.320000pt;}
.x2_c00260{left:269.280000pt;}
.x8b_c00260{left:270.720000pt;}
.x5a_c00260{left:272.160000pt;}
.x6a_c00260{left:273.360000pt;}
.xba_c00260{left:275.040000pt;}
.x91_c00260{left:276.480000pt;}
.xb7_c00260{left:281.280000pt;}
.x35_c00260{left:284.160000pt;}
.x76_c00260{left:285.840000pt;}
.xa5_c00260{left:288.240000pt;}
.x2e_c00260{left:290.400000pt;}
.x7d_c00260{left:291.840000pt;}
.x6b_c00260{left:294.480000pt;}
.x3_c00260{left:295.440000pt;}
.x47_c00260{left:298.560000pt;}
.x4e_c00260{left:300.720000pt;}
.x36_c00260{left:301.680000pt;}
.xb8_c00260{left:304.080000pt;}
.x62_c00260{left:305.280000pt;}
.x97_c00260{left:306.720000pt;}
.x48_c00260{left:307.920000pt;}
.x24_c00260{left:312.240000pt;}
.xc_c00260{left:316.320000pt;}
.xa0_c00260{left:319.200000pt;}
.x15_c00260{left:320.160000pt;}
.x6c_c00260{left:324.720000pt;}
.xa9_c00260{left:325.920000pt;}
.x4f_c00260{left:326.880000pt;}
.xbb_c00260{left:330.000000pt;}
.x7e_c00260{left:335.760000pt;}
.x5b_c00260{left:337.200000pt;}
.x8c_c00260{left:338.880000pt;}
.x16_c00260{left:340.320000pt;}
.x92_c00260{left:341.520000pt;}
.x37_c00260{left:342.480000pt;}
.x3f_c00260{left:344.880000pt;}
.x54_c00260{left:346.560000pt;}
.x49_c00260{left:348.480000pt;}
.x5c_c00260{left:350.160000pt;}
.x85_c00260{left:351.360000pt;}
.x63_c00260{left:360.240000pt;}
.x25_c00260{left:362.880000pt;}
.x4_c00260{left:364.800000pt;}
.xa1_c00260{left:366.240000pt;}
.x17_c00260{left:369.840000pt;}
.x2f_c00260{left:372.720000pt;}
.x50_c00260{left:375.120000pt;}
.x93_c00260{left:377.040000pt;}
.x6d_c00260{left:378.480000pt;}
.x5d_c00260{left:382.080000pt;}
.x64_c00260{left:384.720000pt;}
.x4a_c00260{left:385.680000pt;}
.x26_c00260{left:386.640000pt;}
.x30_c00260{left:389.280000pt;}
.x18_c00260{left:391.200000pt;}
.xd_c00260{left:394.080000pt;}
.x55_c00260{left:396.480000pt;}
.xaa_c00260{left:397.920000pt;}
.x6e_c00260{left:400.080000pt;}
.x4b_c00260{left:401.520000pt;}
.x19_c00260{left:403.920000pt;}
.x65_c00260{left:406.080000pt;}
.x51_c00260{left:408.240000pt;}
.x5e_c00260{left:414.960000pt;}
.x4c_c00260{left:417.120000pt;}
.x8d_c00260{left:418.080000pt;}
.x40_c00260{left:420.240000pt;}
.x56_c00260{left:421.200000pt;}
.xab_c00260{left:422.880000pt;}
.x78_c00260{left:423.840000pt;}
.xe_c00260{left:425.280000pt;}
.x31_c00260{left:431.760000pt;}
.x41_c00260{left:433.440000pt;}
.x66_c00260{left:435.600000pt;}
.x88_c00260{left:437.760000pt;}
.x79_c00260{left:440.160000pt;}
.x7f_c00260{left:441.840000pt;}
.x5f_c00260{left:446.160000pt;}
.xa6_c00260{left:448.320000pt;}
.x6f_c00260{left:449.520000pt;}
.x38_c00260{left:451.680000pt;}
.x99_c00260{left:453.600000pt;}
.x42_c00260{left:455.040000pt;}
.x27_c00260{left:457.920000pt;}
.x1a_c00260{left:460.320000pt;}
.x98_c00260{left:462.960000pt;}
.xa2_c00260{left:465.840000pt;}
.x80_c00260{left:468.240000pt;}
.x60_c00260{left:470.640000pt;}
.x39_c00260{left:471.840000pt;}
.x5_c00260{left:474.240000pt;}
.x52_c00260{left:475.680000pt;}
.x43_c00260{left:480.240000pt;}
.x9a_c00260{left:481.440000pt;}
.xf_c00260{left:484.080000pt;}
.x67_c00260{left:491.520000pt;}
.x1b_c00260{left:493.440000pt;}
.x70_c00260{left:510.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_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_4ab86c84425994a9e06b01c2.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;}
.mb_c00261{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);}
.meb_c00261{transform:matrix(0.027579,0.000248,-0.002250,0.249990,0,0);-ms-transform:matrix(0.027579,0.000248,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.027579,0.000248,-0.002250,0.249990,0,0);}
.me9_c00261{transform:matrix(0.032394,0.000227,-0.001750,0.249994,0,0);-ms-transform:matrix(0.032394,0.000227,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.032394,0.000227,-0.001750,0.249994,0,0);}
.m13a_c00261{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);}
.m139_c00261{transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);}
.m9f_c00261{transform:matrix(0.044010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044010,0.000000,0.000000,0.250000,0,0);}
.m138_c00261{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);}
.m137_c00261{transform:matrix(0.063245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063245,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{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);}
.m5b_c00261{transform:matrix(0.113590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113590,0.000000,0.000000,0.250000,0,0);}
.m13e_c00261{transform:matrix(0.123490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123490,0.000000,0.000000,0.250000,0,0);}
.m114_c00261{transform:matrix(0.136154,0.001225,-0.002250,0.249990,0,0);-ms-transform:matrix(0.136154,0.001225,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.136154,0.001225,-0.002250,0.249990,0,0);}
.m19_c00261{transform:matrix(0.140280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140280,0.000000,0.000000,0.250000,0,0);}
.m78_c00261{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);}
.m33_c00261{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m110_c00261{transform:matrix(0.143609,0.001292,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143609,0.001292,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143609,0.001292,-0.002250,0.249990,0,0);}
.m5c_c00261{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m3b_c00261{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);}
.m15_c00261{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);}
.mda_c00261{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);}
.mef_c00261{transform:matrix(0.152244,0.001370,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152244,0.001370,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152244,0.001370,-0.002250,0.249990,0,0);}
.m56_c00261{transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.154240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154240,0.000000,0.000000,0.250000,0,0);}
.m95_c00261{transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);}
.m59_c00261{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);}
.m8c_c00261{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);}
.m85_c00261{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);}
.m10b_c00261{transform:matrix(0.157904,0.001421,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157904,0.001421,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157904,0.001421,-0.002250,0.249990,0,0);}
.m35_c00261{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_c00261{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);}
.m8a_c00261{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);}
.m93_c00261{transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00261{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);}
.med_c00261{transform:matrix(0.163218,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163218,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163218,0.001469,-0.002250,0.249990,0,0);}
.m1f_c00261{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);}
.m3c_c00261{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);}
.m109_c00261{transform:matrix(0.165573,0.001490,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165573,0.001490,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165573,0.001490,-0.002250,0.249990,0,0);}
.m8d_c00261{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);}
.mb8_c00261{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);}
.m108_c00261{transform:matrix(0.166398,0.001498,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166398,0.001498,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166398,0.001498,-0.002250,0.249990,0,0);}
.m120_c00261{transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);}
.m49_c00261{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);}
.m48_c00261{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);}
.m3d_c00261{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);}
.m30_c00261{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);}
.m37_c00261{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);}
.m53_c00261{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);}
.m3a_c00261{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);}
.m27_c00261{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);}
.m142_c00261{transform:matrix(0.170576,0.001706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170576,0.001706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170576,0.001706,-0.002500,0.249988,0,0);}
.m152_c00261{transform:matrix(0.170686,0.001707,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170686,0.001707,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170686,0.001707,-0.002500,0.249988,0,0);}
.m41_c00261{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);}
.mc8_c00261{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);}
.m23_c00261{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);}
.m82_c00261{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);}
.m111_c00261{transform:matrix(0.172708,0.001554,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172708,0.001554,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172708,0.001554,-0.002250,0.249990,0,0);}
.m2b_c00261{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);}
.m52_c00261{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);}
.md3_c00261{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);}
.m94_c00261{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);}
.m14_c00261{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);}
.md9_c00261{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);}
.m32_c00261{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);}
.mee_c00261{transform:matrix(0.175643,0.001581,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175643,0.001581,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175643,0.001581,-0.002250,0.249990,0,0);}
.m10d_c00261{transform:matrix(0.175723,0.001582,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175723,0.001582,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175723,0.001582,-0.002250,0.249990,0,0);}
.md1_c00261{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);}
.m10e_c00261{transform:matrix(0.176078,0.001585,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176078,0.001585,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176078,0.001585,-0.002250,0.249990,0,0);}
.m12b_c00261{transform:matrix(0.176418,0.001588,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176418,0.001588,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176418,0.001588,-0.002250,0.249990,0,0);}
.m5f_c00261{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);}
.m1e_c00261{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);}
.md4_c00261{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);}
.m21_c00261{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);}
.m74_c00261{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);}
.m96_c00261{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);}
.md6_c00261{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);}
.m1d_c00261{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);}
.m126_c00261{transform:matrix(0.179283,0.001614,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179283,0.001614,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179283,0.001614,-0.002250,0.249990,0,0);}
.m6a_c00261{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);}
.m10f_c00261{transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);}
.m22_c00261{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);}
.mdf_c00261{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);}
.m38_c00261{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);}
.maf_c00261{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);}
.m29_c00261{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);}
.ma0_c00261{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);}
.m1c_c00261{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);}
.md0_c00261{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);}
.m20_c00261{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);}
.m39_c00261{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);}
.m3f_c00261{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);}
.mb7_c00261{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);}
.m4b_c00261{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);}
.m99_c00261{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);}
.m42_c00261{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);}
.m97_c00261{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);}
.m125_c00261{transform:matrix(0.186107,0.001675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186107,0.001675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186107,0.001675,-0.002250,0.249990,0,0);}
.m154_c00261{transform:matrix(0.186201,0.001862,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186201,0.001862,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186201,0.001862,-0.002500,0.249988,0,0);}
.m101_c00261{transform:matrix(0.186227,0.001676,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186227,0.001676,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186227,0.001676,-0.002250,0.249990,0,0);}
.m88_c00261{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);}
.m1b_c00261{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);}
.m8f_c00261{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);}
.m34_c00261{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);}
.m43_c00261{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);}
.mbb_c00261{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);}
.m47_c00261{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);}
.md2_c00261{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);}
.mb5_c00261{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);}
.m9a_c00261{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);}
.m4e_c00261{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);}
.m45_c00261{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);}
.m112_c00261{transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);}
.me5_c00261{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);}
.mbf_c00261{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);}
.m40_c00261{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);}
.m128_c00261{transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);}
.m31_c00261{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);}
.m8e_c00261{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);}
.m81_c00261{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);}
.m64_c00261{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);}
.mf8_c00261{transform:matrix(0.190352,0.001713,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190352,0.001713,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190352,0.001713,-0.002250,0.249990,0,0);}
.m4d_c00261{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);}
.m44_c00261{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);}
.m61_c00261{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);}
.m18_c00261{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);}
.m6b_c00261{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);}
.me0_c00261{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);}
.m91_c00261{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);}
.m151_c00261{transform:matrix(0.192435,0.001924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192435,0.001924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192435,0.001924,-0.002500,0.249988,0,0);}
.m153_c00261{transform:matrix(0.192485,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192485,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192485,0.001925,-0.002500,0.249988,0,0);}
.me3_c00261{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);}
.m16_c00261{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);}
.m3e_c00261{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);}
.m51_c00261{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);}
.m76_c00261{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);}
.m17_c00261{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);}
.m104_c00261{transform:matrix(0.193252,0.001739,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193252,0.001739,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193252,0.001739,-0.002250,0.249990,0,0);}
.m58_c00261{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);}
.me7_c00261{transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);}
.m69_c00261{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);}
.m7b_c00261{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);}
.m55_c00261{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);}
.m98_c00261{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);}
.m36_c00261{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);}
.ma4_c00261{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_c00261{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);}
.m11d_c00261{transform:matrix(0.195647,0.001761,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195647,0.001761,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195647,0.001761,-0.002250,0.249990,0,0);}
.m89_c00261{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);}
.mb4_c00261{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);}
.m1a_c00261{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);}
.m83_c00261{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);}
.mf0_c00261{transform:matrix(0.196357,0.001767,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196357,0.001767,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196357,0.001767,-0.002250,0.249990,0,0);}
.m4f_c00261{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);}
.m117_c00261{transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);}
.m28_c00261{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);}
.me2_c00261{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);}
.mac_c00261{transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197540,0.000000,0.000000,0.250000,0,0);}
.mf9_c00261{transform:matrix(0.197652,0.001779,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197652,0.001779,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197652,0.001779,-0.002250,0.249990,0,0);}
.m11_c00261{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);}
.m60_c00261{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);}
.mc2_c00261{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);}
.m77_c00261{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);}
.m150_c00261{transform:matrix(0.198010,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198010,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198010,0.001980,-0.002500,0.249988,0,0);}
.m10_c00261{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);}
.m105_c00261{transform:matrix(0.198112,0.001783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198112,0.001783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198112,0.001783,-0.002250,0.249990,0,0);}
.mc0_c00261{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);}
.m2a_c00261{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);}
.mad_c00261{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);}
.md5_c00261{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);}
.m6d_c00261{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);}
.m9d_c00261{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);}
.mf7_c00261{transform:matrix(0.200897,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200897,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200897,0.001808,-0.002250,0.249990,0,0);}
.mbe_c00261{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);}
.m106_c00261{transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);}
.ma2_c00261{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);}
.m119_c00261{transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201382,0.001812,-0.002250,0.249990,0,0);}
.m87_c00261{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);}
.m5e_c00261{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);}
.m6c_c00261{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);}
.m0_c00261{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);}
.m103_c00261{transform:matrix(0.202147,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202147,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202147,0.001819,-0.002250,0.249990,0,0);}
.m4a_c00261{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);}
.mc6_c00261{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);}
.m107_c00261{transform:matrix(0.203497,0.001831,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203497,0.001831,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203497,0.001831,-0.002250,0.249990,0,0);}
.m79_c00261{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);}
.md7_c00261{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);}
.me1_c00261{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);}
.ma9_c00261{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);}
.m5d_c00261{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);}
.m156_c00261{transform:matrix(0.205520,0.002055,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205520,0.002055,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205520,0.002055,-0.002500,0.249988,0,0);}
.m144_c00261{transform:matrix(0.205625,0.002056,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205625,0.002056,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205625,0.002056,-0.002500,0.249988,0,0);}
.m143_c00261{transform:matrix(0.205715,0.002057,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205715,0.002057,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205715,0.002057,-0.002500,0.249988,0,0);}
.m145_c00261{transform:matrix(0.205795,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205795,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205795,0.002058,-0.002500,0.249988,0,0);}
.m12_c00261{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);}
.mec_c00261{transform:matrix(0.205862,0.001853,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205862,0.001853,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205862,0.001853,-0.002250,0.249990,0,0);}
.m12f_c00261{transform:matrix(0.206082,0.001855,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206082,0.001855,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206082,0.001855,-0.002250,0.249990,0,0);}
.m2d_c00261{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);}
.m14b_c00261{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);}
.m13_c00261{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);}
.mea_c00261{transform:matrix(0.207495,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207495,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207495,0.001452,-0.001750,0.249994,0,0);}
.ma3_c00261{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);}
.m9_c00261{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);}
.m14a_c00261{transform:matrix(0.207780,0.002078,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207780,0.002078,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207780,0.002078,-0.002500,0.249988,0,0);}
.m57_c00261{transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);}
.m158_c00261{transform:matrix(0.208280,0.002083,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208280,0.002083,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208280,0.002083,-0.002500,0.249988,0,0);}
.m86_c00261{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);}
.mf3_c00261{transform:matrix(0.210436,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210436,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210436,0.001894,-0.002250,0.249990,0,0);}
.m121_c00261{transform:matrix(0.210546,0.001895,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210546,0.001895,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210546,0.001895,-0.002250,0.249990,0,0);}
.mf_c00261{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);}
.mba_c00261{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);}
.m7f_c00261{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);}
.mc7_c00261{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);}
.m6f_c00261{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);}
.m102_c00261{transform:matrix(0.212896,0.001916,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212896,0.001916,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212896,0.001916,-0.002250,0.249990,0,0);}
.mf6_c00261{transform:matrix(0.212946,0.001917,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212946,0.001917,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212946,0.001917,-0.002250,0.249990,0,0);}
.m68_c00261{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);}
.m66_c00261{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);}
.m5a_c00261{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);}
.mae_c00261{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);}
.m10a_c00261{transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214581,0.001931,-0.002250,0.249990,0,0);}
.m11a_c00261{transform:matrix(0.215276,0.001937,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215276,0.001937,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215276,0.001937,-0.002250,0.249990,0,0);}
.m14c_c00261{transform:matrix(0.215464,0.002155,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215464,0.002155,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215464,0.002155,-0.002500,0.249988,0,0);}
.mb3_c00261{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.me6_c00261{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);}
.m7a_c00261{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);}
.mfb_c00261{transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);}
.m10c_c00261{transform:matrix(0.216371,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216371,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216371,0.001947,-0.002250,0.249990,0,0);}
.m100_c00261{transform:matrix(0.216606,0.001949,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216606,0.001949,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216606,0.001949,-0.002250,0.249990,0,0);}
.mc9_c00261{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);}
.m92_c00261{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);}
.mfe_c00261{transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);}
.mb9_c00261{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);}
.mca_c00261{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);}
.m84_c00261{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);}
.m123_c00261{transform:matrix(0.221126,0.001990,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221126,0.001990,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221126,0.001990,-0.002250,0.249990,0,0);}
.m149_c00261{transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221144,0.002211,-0.002500,0.249988,0,0);}
.m14e_c00261{transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);}
.m71_c00261{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);}
.ma5_c00261{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);}
.m62_c00261{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);}
.m4c_c00261{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);}
.ma1_c00261{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);}
.mce_c00261{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);}
.mdc_c00261{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);}
.mcb_c00261{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);}
.mcc_c00261{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);}
.mf5_c00261{transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);}
.mc4_c00261{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);}
.m63_c00261{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);}
.m113_c00261{transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);}
.mfd_c00261{transform:matrix(0.225046,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225046,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225046,0.002025,-0.002250,0.249990,0,0);}
.m26_c00261{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);}
.mdd_c00261{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);}
.mde_c00261{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);}
.m130_c00261{transform:matrix(0.227586,0.002048,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227586,0.002048,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227586,0.002048,-0.002250,0.249990,0,0);}
.m118_c00261{transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);}
.m24_c00261{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);}
.mf2_c00261{transform:matrix(0.230936,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230936,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230936,0.002078,-0.002250,0.249990,0,0);}
.m80_c00261{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);}
.mf4_c00261{transform:matrix(0.231431,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231431,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231431,0.002083,-0.002250,0.249990,0,0);}
.m122_c00261{transform:matrix(0.231531,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231531,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231531,0.002084,-0.002250,0.249990,0,0);}
.m157_c00261{transform:matrix(0.231628,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231628,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231628,0.002316,-0.002500,0.249988,0,0);}
.m148_c00261{transform:matrix(0.231773,0.002318,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231773,0.002318,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231773,0.002318,-0.002500,0.249988,0,0);}
.m7c_c00261{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m12c_c00261{transform:matrix(0.232321,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232321,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232321,0.002091,-0.002250,0.249990,0,0);}
.m46_c00261{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);}
.m11b_c00261{transform:matrix(0.234760,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234760,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234760,0.002113,-0.002250,0.249990,0,0);}
.m73_c00261{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);}
.m72_c00261{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m50_c00261{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);}
.m134_c00261{transform:matrix(0.236695,0.002130,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236695,0.002130,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236695,0.002130,-0.002250,0.249990,0,0);}
.m90_c00261{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mb0_c00261{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);}
.m54_c00261{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);}
.mb2_c00261{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);}
.me4_c00261{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);}
.m11e_c00261{transform:matrix(0.242240,0.002180,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242240,0.002180,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242240,0.002180,-0.002250,0.249990,0,0);}
.m67_c00261{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);}
.mbc_c00261{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);}
.m147_c00261{transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);}
.m14f_c00261{transform:matrix(0.245518,0.002455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245518,0.002455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245518,0.002455,-0.002500,0.249988,0,0);}
.mc3_c00261{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);}
.m127_c00261{transform:matrix(0.246070,0.002215,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246070,0.002215,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246070,0.002215,-0.002250,0.249990,0,0);}
.ma8_c00261{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00261{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);}
.m141_c00261{transform:matrix(0.251077,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251077,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251077,0.002511,-0.002500,0.249988,0,0);}
.m13c_c00261{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);}
.m7d_c00261{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);}
.mc5_c00261{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);}
.m9e_c00261{transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253710,0.000000,0.000000,0.250000,0,0);}
.mc1_c00261{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.ma7_c00261{transform:matrix(0.256315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256315,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.m65_c00261{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);}
.mbd_c00261{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);}
.m75_c00261{transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);}
.m2e_c00261{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.mcf_c00261{transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);}
.m7e_c00261{transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);}
.mfa_c00261{transform:matrix(0.262354,0.002361,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262354,0.002361,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262354,0.002361,-0.002250,0.249990,0,0);}
.mb1_c00261{transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);}
.mb6_c00261{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);}
.me8_c00261{transform:matrix(0.268558,0.001880,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268558,0.001880,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268558,0.001880,-0.001750,0.249994,0,0);}
.m115_c00261{transform:matrix(0.268699,0.002418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268699,0.002418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268699,0.002418,-0.002250,0.249990,0,0);}
.m116_c00261{transform:matrix(0.269094,0.002422,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269094,0.002422,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269094,0.002422,-0.002250,0.249990,0,0);}
.m2c_c00261{transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);}
.md8_c00261{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);}
.m6e_c00261{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00261{transform:matrix(0.273466,0.002735,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273466,0.002735,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273466,0.002735,-0.002500,0.249988,0,0);}
.m136_c00261{transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);}
.m12a_c00261{transform:matrix(0.277514,0.002498,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277514,0.002498,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277514,0.002498,-0.002250,0.249990,0,0);}
.mfc_c00261{transform:matrix(0.278474,0.002506,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278474,0.002506,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278474,0.002506,-0.002250,0.249990,0,0);}
.m11f_c00261{transform:matrix(0.281549,0.002534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281549,0.002534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281549,0.002534,-0.002250,0.249990,0,0);}
.m11c_c00261{transform:matrix(0.284888,0.002564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284888,0.002564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284888,0.002564,-0.002250,0.249990,0,0);}
.maa_c00261{transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285435,0.000000,0.000000,0.250000,0,0);}
.ma6_c00261{transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287160,0.000000,0.000000,0.250000,0,0);}
.mff_c00261{transform:matrix(0.289903,0.002609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289903,0.002609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289903,0.002609,-0.002250,0.249990,0,0);}
.m155_c00261{transform:matrix(0.292905,0.002929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292905,0.002929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292905,0.002929,-0.002500,0.249988,0,0);}
.m13b_c00261{transform:matrix(0.303490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303490,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303630,0.000000,0.000000,0.250000,0,0);}
.m132_c00261{transform:matrix(0.310067,0.002791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.310067,0.002791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.310067,0.002791,-0.002250,0.249990,0,0);}
.m13d_c00261{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);}
.m9c_c00261{transform:matrix(0.316860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316860,0.000000,0.000000,0.250000,0,0);}
.m8b_c00261{transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);}
.m12d_c00261{transform:matrix(0.326212,0.002936,-0.002250,0.249990,0,0);-ms-transform:matrix(0.326212,0.002936,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.326212,0.002936,-0.002250,0.249990,0,0);}
.m129_c00261{transform:matrix(0.327482,0.002947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.327482,0.002947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.327482,0.002947,-0.002250,0.249990,0,0);}
.m140_c00261{transform:matrix(0.339323,0.003393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.339323,0.003393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.339323,0.003393,-0.002500,0.249988,0,0);}
.mf1_c00261{transform:matrix(0.351296,0.003162,-0.002250,0.249990,0,0);-ms-transform:matrix(0.351296,0.003162,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.351296,0.003162,-0.002250,0.249990,0,0);}
.m7_c00261{transform:matrix(0.353830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353830,0.000000,0.000000,0.250000,0,0);}
.m124_c00261{transform:matrix(0.356811,0.003211,-0.002250,0.249990,0,0);-ms-transform:matrix(0.356811,0.003211,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.356811,0.003211,-0.002250,0.249990,0,0);}
.mc_c00261{transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00261{transform:matrix(0.366745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366745,0.000000,0.000000,0.250000,0,0);}
.m159_c00261{transform:matrix(0.376401,0.003764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.376401,0.003764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.376401,0.003764,-0.002500,0.249988,0,0);}
.m1_c00261{transform:matrix(0.380100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380100,0.000000,0.000000,0.250000,0,0);}
.mab_c00261{transform:matrix(0.382340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382340,0.000000,0.000000,0.250000,0,0);}
.m13f_c00261{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.507100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507100,0.000000,0.000000,0.250000,0,0);}
.m12e_c00261{transform:matrix(0.535238,0.004817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.535238,0.004817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.535238,0.004817,-0.002250,0.249990,0,0);}
.m146_c00261{transform:matrix(0.595455,0.005955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.595455,0.005955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.595455,0.005955,-0.002500,0.249988,0,0);}
.m135_c00261{transform:matrix(0.683100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683100,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.876950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876950,0.000000,0.000000,0.250000,0,0);}
.m131_c00261{transform:matrix(0.888424,0.007996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.888424,0.007996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.888424,0.007996,-0.002250,0.249990,0,0);}
.m6_c00261{transform:matrix(0.999690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999690,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(1.046625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046625,0.000000,0.000000,0.250000,0,0);}
.m133_c00261{transform:matrix(1.086781,0.009781,-0.002250,0.249990,0,0);-ms-transform:matrix(1.086781,0.009781,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.086781,0.009781,-0.002250,0.249990,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;}
.fs14_c00261{font-size:24.150000px;}
.fs0_c00261{font-size:45.150000px;}
.fs15_c00261{font-size:50.402520px;}
.fs16_c00261{font-size:55.652782px;}
.fsb_c00261{font-size:60.900000px;}
.fs11_c00261{font-size:61.952509px;}
.fs9_c00261{font-size:64.050000px;}
.fsa_c00261{font-size:65.100000px;}
.fs4_c00261{font-size:66.150000px;}
.fs8_c00261{font-size:67.200000px;}
.fsc_c00261{font-size:67.201646px;}
.fse_c00261{font-size:67.202722px;}
.fs7_c00261{font-size:68.250000px;}
.fs2_c00261{font-size:69.300000px;}
.fsf_c00261{font-size:69.302807px;}
.fs6_c00261{font-size:70.350000px;}
.fs10_c00261{font-size:70.352849px;}
.fs5_c00261{font-size:72.450000px;}
.fs12_c00261{font-size:72.452934px;}
.fs3_c00261{font-size:74.550000px;}
.fsd_c00261{font-size:74.553019px;}
.fs13_c00261{font-size:123.900000px;}
.fs1_c00261{font-size:126.000000px;}
.y0_c00261{bottom:0.000000px;}
.y9e_c00261{bottom:182.554170px;}
.y9f_c00261{bottom:182.554485px;}
.ya0_c00261{bottom:182.554500px;}
.ya2_c00261{bottom:182.554530px;}
.ya3_c00261{bottom:182.554560px;}
.ya1_c00261{bottom:182.555115px;}
.ya4_c00261{bottom:182.555190px;}
.ya5_c00261{bottom:182.555790px;}
.ya6_c00261{bottom:182.556105px;}
.ya8_c00261{bottom:182.556180px;}
.ya7_c00261{bottom:182.556750px;}
.y9d_c00261{bottom:195.692235px;}
.y9c_c00261{bottom:196.307610px;}
.y9b_c00261{bottom:196.580085px;}
.y9a_c00261{bottom:196.798530px;}
.y99_c00261{bottom:197.257905px;}
.y98_c00261{bottom:197.360475px;}
.y97_c00261{bottom:197.695395px;}
.y96_c00261{bottom:197.825040px;}
.y95_c00261{bottom:198.475680px;}
.y94_c00261{bottom:198.840240px;}
.y93_c00261{bottom:199.142625px;}
.y92_c00261{bottom:199.428885px;}
.y91_c00261{bottom:199.796010px;}
.y90_c00261{bottom:200.071500px;}
.y8f_c00261{bottom:211.962000px;}
.y8e_c00261{bottom:217.890000px;}
.y8d_c00261{bottom:244.185000px;}
.y8c_c00261{bottom:256.304088px;}
.y8b_c00261{bottom:257.079007px;}
.y8a_c00261{bottom:257.699323px;}
.y89_c00261{bottom:258.314996px;}
.y88_c00261{bottom:258.791065px;}
.y87_c00261{bottom:259.139820px;}
.y86_c00261{bottom:259.469955px;}
.y85_c00261{bottom:277.083089px;}
.y84_c00261{bottom:277.277224px;}
.y83_c00261{bottom:277.684708px;}
.y82_c00261{bottom:277.886134px;}
.y81_c00261{bottom:278.315748px;}
.y80_c00261{bottom:278.661666px;}
.y7f_c00261{bottom:278.945329px;}
.y7e_c00261{bottom:279.506364px;}
.y7d_c00261{bottom:280.089379px;}
.y7c_c00261{bottom:280.268529px;}
.y7b_c00261{bottom:280.872457px;}
.y7a_c00261{bottom:281.421396px;}
.y79_c00261{bottom:281.881077px;}
.y78_c00261{bottom:300.298052px;}
.y77_c00261{bottom:300.938033px;}
.y76_c00261{bottom:301.283214px;}
.y75_c00261{bottom:301.776504px;}
.y74_c00261{bottom:301.817881px;}
.y73_c00261{bottom:302.690278px;}
.y72_c00261{bottom:303.378023px;}
.y71_c00261{bottom:303.601529px;}
.y70_c00261{bottom:303.810522px;}
.y6f_c00261{bottom:304.201806px;}
.y6e_c00261{bottom:304.427837px;}
.y6d_c00261{bottom:304.733544px;}
.y6c_c00261{bottom:304.830987px;}
.y6b_c00261{bottom:323.220905px;}
.y6a_c00261{bottom:323.727503px;}
.y69_c00261{bottom:324.184601px;}
.y68_c00261{bottom:324.641321px;}
.y67_c00261{bottom:325.325058px;}
.y66_c00261{bottom:325.779051px;}
.y65_c00261{bottom:326.375562px;}
.y64_c00261{bottom:327.032930px;}
.y63_c00261{bottom:327.285561px;}
.y62_c00261{bottom:327.645780px;}
.y61_c00261{bottom:328.051583px;}
.y60_c00261{bottom:345.903754px;}
.y5f_c00261{bottom:346.609065px;}
.y5e_c00261{bottom:346.926900px;}
.y5d_c00261{bottom:347.162742px;}
.y5c_c00261{bottom:347.858722px;}
.y5b_c00261{bottom:348.163542px;}
.y5a_c00261{bottom:348.938790px;}
.y59_c00261{bottom:349.195100px;}
.y58_c00261{bottom:350.245734px;}
.y57_c00261{bottom:350.460324px;}
.y56_c00261{bottom:369.359810px;}
.y55_c00261{bottom:369.741265px;}
.y54_c00261{bottom:370.111179px;}
.y53_c00261{bottom:370.665124px;}
.y52_c00261{bottom:370.898350px;}
.y51_c00261{bottom:371.311586px;}
.y50_c00261{bottom:372.042665px;}
.y4f_c00261{bottom:372.295358px;}
.y4e_c00261{bottom:372.618493px;}
.y4d_c00261{bottom:373.140984px;}
.y4c_c00261{bottom:392.056095px;}
.y4b_c00261{bottom:392.840972px;}
.y4a_c00261{bottom:393.216582px;}
.y49_c00261{bottom:393.408890px;}
.y48_c00261{bottom:394.483733px;}
.y47_c00261{bottom:394.769744px;}
.y46_c00261{bottom:395.160758px;}
.y45_c00261{bottom:395.447403px;}
.y44_c00261{bottom:396.089274px;}
.y43_c00261{bottom:396.201000px;}
.y42_c00261{bottom:416.111845px;}
.y41_c00261{bottom:417.153939px;}
.y40_c00261{bottom:418.854760px;}
.y3f_c00261{bottom:419.374500px;}
.y3e_c00261{bottom:438.549000px;}
.y3d_c00261{bottom:438.867000px;}
.y3c_c00261{bottom:439.626000px;}
.y3b_c00261{bottom:440.109000px;}
.y3a_c00261{bottom:440.331000px;}
.y39_c00261{bottom:441.025500px;}
.y38_c00261{bottom:441.786000px;}
.y37_c00261{bottom:442.282500px;}
.y36_c00261{bottom:442.516500px;}
.y35_c00261{bottom:443.068500px;}
.y34_c00261{bottom:464.493000px;}
.y33_c00261{bottom:487.681500px;}
.y32_c00261{bottom:509.851500px;}
.y31_c00261{bottom:532.561500px;}
.y30_c00261{bottom:554.620500px;}
.y2f_c00261{bottom:555.163500px;}
.y2e_c00261{bottom:555.462000px;}
.y2d_c00261{bottom:555.892500px;}
.y2c_c00261{bottom:556.036500px;}
.y2b_c00261{bottom:556.170000px;}
.y2a_c00261{bottom:556.575000px;}
.y29_c00261{bottom:556.764000px;}
.y28_c00261{bottom:556.933500px;}
.y27_c00261{bottom:557.440500px;}
.y26_c00261{bottom:557.818500px;}
.y25_c00261{bottom:578.460000px;}
.y24_c00261{bottom:601.416000px;}
.y23_c00261{bottom:624.009000px;}
.y22_c00261{bottom:646.710000px;}
.y21_c00261{bottom:669.628500px;}
.y20_c00261{bottom:692.610000px;}
.y1f_c00261{bottom:715.260000px;}
.y1e_c00261{bottom:738.750000px;}
.y1d_c00261{bottom:760.255500px;}
.y1c_c00261{bottom:783.412500px;}
.y1b_c00261{bottom:784.255500px;}
.y1a_c00261{bottom:784.579500px;}
.y19_c00261{bottom:784.791000px;}
.y18_c00261{bottom:785.125500px;}
.y17_c00261{bottom:785.622000px;}
.y16_c00261{bottom:785.775000px;}
.y15_c00261{bottom:786.025500px;}
.y14_c00261{bottom:786.423000px;}
.y13_c00261{bottom:786.742500px;}
.y12_c00261{bottom:787.050000px;}
.y11_c00261{bottom:805.887000px;}
.y10_c00261{bottom:828.975000px;}
.yf_c00261{bottom:829.623000px;}
.ye_c00261{bottom:830.271000px;}
.yd_c00261{bottom:830.571000px;}
.yc_c00261{bottom:830.983500px;}
.yb_c00261{bottom:831.880500px;}
.ya_c00261{bottom:832.137000px;}
.y9_c00261{bottom:832.549500px;}
.y8_c00261{bottom:832.663500px;}
.y7_c00261{bottom:832.909500px;}
.y6_c00261{bottom:833.490000px;}
.y5_c00261{bottom:851.539500px;}
.y2_c00261{bottom:893.974500px;}
.y3_c00261{bottom:894.652500px;}
.y4_c00261{bottom:894.721500px;}
.y1_c00261{bottom:957.936000px;}
.h16_c00261{height:24.150000px;}
.h2_c00261{height:45.150000px;}
.h17_c00261{height:50.402520px;}
.h18_c00261{height:55.652782px;}
.hd_c00261{height:60.900000px;}
.h13_c00261{height:61.952509px;}
.hb_c00261{height:64.050000px;}
.hc_c00261{height:65.100000px;}
.h6_c00261{height:66.150000px;}
.ha_c00261{height:67.200000px;}
.he_c00261{height:67.201646px;}
.h10_c00261{height:67.202722px;}
.h9_c00261{height:68.250000px;}
.h4_c00261{height:69.300000px;}
.h11_c00261{height:69.302807px;}
.h8_c00261{height:70.350000px;}
.h12_c00261{height:70.352849px;}
.h7_c00261{height:72.450000px;}
.h14_c00261{height:72.452934px;}
.h5_c00261{height:74.550000px;}
.hf_c00261{height:74.553019px;}
.h15_c00261{height:123.900000px;}
.h3_c00261{height:126.000000px;}
.h0_c00261{height:1008.450000px;}
.h1_c00261{height:1008.750000px;}
.w0_c00261{width:678.450000px;}
.w1_c00261{width:678.750000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:93.420000px;}
.xb1_c00261{left:123.827838px;}
.x19_c00261{left:133.615500px;}
.xb_c00261{left:135.583500px;}
.x9f_c00261{left:141.094500px;}
.x2_c00261{left:142.830000px;}
.xc0_c00261{left:144.889500px;}
.xc2_c00261{left:150.116370px;}
.xe_c00261{left:151.200000px;}
.x3_c00261{left:152.280000px;}
.xa0_c00261{left:153.508500px;}
.x24_c00261{left:156.330000px;}
.x35_c00261{left:160.378500px;}
.x92_c00261{left:162.540000px;}
.x69_c00261{left:165.238500px;}
.x77_c00261{left:168.208500px;}
.x49_c00261{left:170.908500px;}
.x2d_c00261{left:172.486500px;}
.x4_c00261{left:176.580000px;}
.x40_c00261{left:177.928500px;}
.x70_c00261{left:181.978500px;}
.xc3_c00261{left:183.868245px;}
.x80_c00261{left:187.573500px;}
.x9a_c00261{left:189.195000px;}
.x1a_c00261{left:191.611500px;}
.xa6_c00261{left:192.664952px;}
.xf_c00261{left:194.400000px;}
.xba_c00261{left:196.632909px;}
.x5_c00261{left:197.640000px;}
.x4a_c00261{left:198.988500px;}
.x78_c00261{left:201.418500px;}
.x25_c00261{left:204.390000px;}
.x41_c00261{left:208.168500px;}
.xc_c00261{left:210.883500px;}
.x2e_c00261{left:212.409000px;}
.x1b_c00261{left:216.178500px;}
.xd_c00261{left:218.527500px;}
.x36_c00261{left:220.588500px;}
.x10_c00261{left:224.640000px;}
.x26_c00261{left:226.530000px;}
.x1c_c00261{left:227.560500px;}
.xa7_c00261{left:228.568952px;}
.x6_c00261{left:230.580000px;}
.xb6_c00261{left:235.846802px;}
.x87_c00261{left:238.140000px;}
.x5b_c00261{left:240.298500px;}
.x54_c00261{left:242.998500px;}
.x6a_c00261{left:244.348500px;}
.x42_c00261{left:255.418500px;}
.xa1_c00261{left:256.677000px;}
.x71_c00261{left:259.198500px;}
.x4b_c00261{left:260.278500px;}
.x7_c00261{left:262.710000px;}
.x37_c00261{left:266.218500px;}
.x1d_c00261{left:268.812000px;}
.x5c_c00261{left:274.858500px;}
.x63_c00261{left:278.098500px;}
.x4c_c00261{left:279.448500px;}
.x11_c00261{left:281.340000px;}
.x81_c00261{left:284.199000px;}
.xb2_c00261{left:285.268338px;}
.x55_c00261{left:286.468500px;}
.x93_c00261{left:288.630000px;}
.x2f_c00261{left:293.397000px;}
.x1e_c00261{left:294.438000px;}
.xb7_c00261{left:296.282762px;}
.x79_c00261{left:298.618500px;}
.xa2_c00261{left:300.123000px;}
.x43_c00261{left:301.318500px;}
.x27_c00261{left:303.480000px;}
.x5d_c00261{left:307.798500px;}
.x4d_c00261{left:309.418500px;}
.x82_c00261{left:311.202000px;}
.x30_c00261{left:312.540000px;}
.x38_c00261{left:314.008500px;}
.x7a_c00261{left:319.138500px;}
.x6b_c00261{left:325.348500px;}
.x28_c00261{left:327.510000px;}
.x72_c00261{left:330.478500px;}
.xa3_c00261{left:331.902000px;}
.x8_c00261{left:333.450000px;}
.x64_c00261{left:335.338500px;}
.x56_c00261{left:337.498500px;}
.xbd_c00261{left:339.930000px;}
.xac_c00261{left:341.137956px;}
.x12_c00261{left:342.630000px;}
.x39_c00261{left:348.298500px;}
.xbb_c00261{left:352.192101px;}
.x94_c00261{left:359.100000px;}
.xb3_c00261{left:361.684338px;}
.xaa_c00261{left:364.342280px;}
.x44_c00261{left:365.578500px;}
.x6c_c00261{left:367.468500px;}
.x9_c00261{left:369.360000px;}
.x5e_c00261{left:372.328500px;}
.x31_c00261{left:374.650500px;}
.x3a_c00261{left:376.918500px;}
.x95_c00261{left:378.540000px;}
.xa_c00261{left:379.890000px;}
.xad_c00261{left:382.414214px;}
.x1f_c00261{left:384.120000px;}
.x29_c00261{left:387.450000px;}
.x4e_c00261{left:388.528500px;}
.x57_c00261{left:390.418500px;}
.x73_c00261{left:393.658500px;}
.xab_c00261{left:394.877510px;}
.x3b_c00261{left:399.598500px;}
.x8d_c00261{left:402.570000px;}
.x6d_c00261{left:405.538500px;}
.xc4_c00261{left:406.630035px;}
.x83_c00261{left:408.628500px;}
.xa8_c00261{left:409.705952px;}
.x7b_c00261{left:412.828500px;}
.x13_c00261{left:415.800000px;}
.x58_c00261{left:418.228500px;}
.x7c_c00261{left:420.118500px;}
.xbc_c00261{left:422.626332px;}
.x20_c00261{left:425.418000px;}
.x5f_c00261{left:427.408500px;}
.x4f_c00261{left:429.568500px;}
.x3c_c00261{left:432.808500px;}
.xbf_c00261{left:434.700000px;}
.x8a_c00261{left:440.100000px;}
.x32_c00261{left:442.927500px;}
.xae_c00261{left:444.550593px;}
.x65_c00261{left:447.118500px;}
.x50_c00261{left:449.278500px;}
.x14_c00261{left:450.360000px;}
.x9d_c00261{left:451.864500px;}
.x96_c00261{left:453.330000px;}
.x21_c00261{left:455.358000px;}
.xb8_c00261{left:456.988317px;}
.x3d_c00261{left:458.728500px;}
.x45_c00261{left:460.348500px;}
.x7d_c00261{left:461.698500px;}
.xb4_c00261{left:463.214838px;}
.x74_c00261{left:465.208500px;}
.x2a_c00261{left:467.100000px;}
.x84_c00261{left:470.215500px;}
.xa9_c00261{left:471.255452px;}
.xa4_c00261{left:472.696500px;}
.x59_c00261{left:476.818500px;}
.x9b_c00261{left:478.302000px;}
.x8e_c00261{left:480.600000px;}
.x33_c00261{left:483.457500px;}
.xaf_c00261{left:486.129851px;}
.x97_c00261{left:488.160000px;}
.x2b_c00261{left:490.050000px;}
.x8b_c00261{left:491.940000px;}
.x60_c00261{left:493.288500px;}
.x46_c00261{left:494.368500px;}
.x66_c00261{left:495.718500px;}
.x15_c00261{left:501.390000px;}
.x8f_c00261{left:503.820000px;}
.x75_c00261{left:506.518500px;}
.x88_c00261{left:507.870000px;}
.x85_c00261{left:512.877000px;}
.xa5_c00261{left:514.431000px;}
.x67_c00261{left:518.938500px;}
.x22_c00261{left:520.156500px;}
.x51_c00261{left:521.638500px;}
.x47_c00261{left:522.988500px;}
.xb0_c00261{left:527.751108px;}
.x98_c00261{left:531.900000px;}
.x6e_c00261{left:534.598500px;}
.x52_c00261{left:537.028500px;}
.x2c_c00261{left:539.190000px;}
.x61_c00261{left:540.538500px;}
.x3e_c00261{left:542.158500px;}
.x16_c00261{left:544.050000px;}
.x90_c00261{left:546.210000px;}
.x7e_c00261{left:547.288500px;}
.x8c_c00261{left:552.960000px;}
.x9c_c00261{left:554.170500px;}
.x76_c00261{left:556.468500px;}
.x99_c00261{left:565.920000px;}
.x17_c00261{left:567.270000px;}
.x7f_c00261{left:569.158500px;}
.x53_c00261{left:570.778500px;}
.x3f_c00261{left:572.938500px;}
.x48_c00261{left:575.368500px;}
.x89_c00261{left:577.260000px;}
.x62_c00261{left:581.308500px;}
.xc1_c00261{left:582.816000px;}
.x23_c00261{left:585.004500px;}
.x91_c00261{left:586.440000px;}
.x34_c00261{left:588.768000px;}
.x86_c00261{left:590.397000px;}
.x6f_c00261{left:593.998500px;}
.x68_c00261{left:595.888500px;}
.x5a_c00261{left:597.778500px;}
.x18_c00261{left:599.670000px;}
.x9e_c00261{left:600.735000px;}
.xbe_c00261{left:607.230000px;}
.xb9_c00261{left:614.884400px;}
.xb5_c00261{left:627.487338px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
.fs14_c00261{font-size:21.466667pt;}
.fs0_c00261{font-size:40.133333pt;}
.fs15_c00261{font-size:44.802240pt;}
.fs16_c00261{font-size:49.469140pt;}
.fsb_c00261{font-size:54.133333pt;}
.fs11_c00261{font-size:55.068897pt;}
.fs9_c00261{font-size:56.933333pt;}
.fsa_c00261{font-size:57.866667pt;}
.fs4_c00261{font-size:58.800000pt;}
.fs8_c00261{font-size:59.733333pt;}
.fsc_c00261{font-size:59.734797pt;}
.fse_c00261{font-size:59.735752pt;}
.fs7_c00261{font-size:60.666667pt;}
.fs2_c00261{font-size:61.600000pt;}
.fsf_c00261{font-size:61.602495pt;}
.fs6_c00261{font-size:62.533333pt;}
.fs10_c00261{font-size:62.535866pt;}
.fs5_c00261{font-size:64.400000pt;}
.fs12_c00261{font-size:64.402608pt;}
.fs3_c00261{font-size:66.266667pt;}
.fsd_c00261{font-size:66.269350pt;}
.fs13_c00261{font-size:110.133333pt;}
.fs1_c00261{font-size:112.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y9e_c00261{bottom:162.270373pt;}
.y9f_c00261{bottom:162.270653pt;}
.ya0_c00261{bottom:162.270667pt;}
.ya2_c00261{bottom:162.270693pt;}
.ya3_c00261{bottom:162.270720pt;}
.ya1_c00261{bottom:162.271213pt;}
.ya4_c00261{bottom:162.271280pt;}
.ya5_c00261{bottom:162.271813pt;}
.ya6_c00261{bottom:162.272093pt;}
.ya8_c00261{bottom:162.272160pt;}
.ya7_c00261{bottom:162.272667pt;}
.y9d_c00261{bottom:173.948653pt;}
.y9c_c00261{bottom:174.495653pt;}
.y9b_c00261{bottom:174.737853pt;}
.y9a_c00261{bottom:174.932027pt;}
.y99_c00261{bottom:175.340360pt;}
.y98_c00261{bottom:175.431533pt;}
.y97_c00261{bottom:175.729240pt;}
.y96_c00261{bottom:175.844480pt;}
.y95_c00261{bottom:176.422827pt;}
.y94_c00261{bottom:176.746880pt;}
.y93_c00261{bottom:177.015667pt;}
.y92_c00261{bottom:177.270120pt;}
.y91_c00261{bottom:177.596453pt;}
.y90_c00261{bottom:177.841333pt;}
.y8f_c00261{bottom:188.410667pt;}
.y8e_c00261{bottom:193.680000pt;}
.y8d_c00261{bottom:217.053333pt;}
.y8c_c00261{bottom:227.825856pt;}
.y8b_c00261{bottom:228.514673pt;}
.y8a_c00261{bottom:229.066065pt;}
.y89_c00261{bottom:229.613329pt;}
.y88_c00261{bottom:230.036503pt;}
.y87_c00261{bottom:230.346507pt;}
.y86_c00261{bottom:230.639960pt;}
.y85_c00261{bottom:246.296079pt;}
.y84_c00261{bottom:246.468644pt;}
.y83_c00261{bottom:246.830852pt;}
.y82_c00261{bottom:247.009897pt;}
.y81_c00261{bottom:247.391776pt;}
.y80_c00261{bottom:247.699259pt;}
.y7f_c00261{bottom:247.951404pt;}
.y7e_c00261{bottom:248.450101pt;}
.y7d_c00261{bottom:248.968337pt;}
.y7c_c00261{bottom:249.127581pt;}
.y7b_c00261{bottom:249.664407pt;}
.y7a_c00261{bottom:250.152352pt;}
.y79_c00261{bottom:250.560957pt;}
.y78_c00261{bottom:266.931601pt;}
.y77_c00261{bottom:267.500473pt;}
.y76_c00261{bottom:267.807301pt;}
.y75_c00261{bottom:268.245781pt;}
.y74_c00261{bottom:268.282561pt;}
.y73_c00261{bottom:269.058025pt;}
.y72_c00261{bottom:269.669353pt;}
.y71_c00261{bottom:269.868025pt;}
.y70_c00261{bottom:270.053797pt;}
.y6f_c00261{bottom:270.401605pt;}
.y6e_c00261{bottom:270.602521pt;}
.y6d_c00261{bottom:270.874261pt;}
.y6c_c00261{bottom:270.960877pt;}
.y6b_c00261{bottom:287.307471pt;}
.y6a_c00261{bottom:287.757780pt;}
.y69_c00261{bottom:288.164089pt;}
.y68_c00261{bottom:288.570063pt;}
.y67_c00261{bottom:289.177829pt;}
.y66_c00261{bottom:289.581379pt;}
.y65_c00261{bottom:290.111611pt;}
.y64_c00261{bottom:290.695937pt;}
.y63_c00261{bottom:290.920499pt;}
.y62_c00261{bottom:291.240693pt;}
.y61_c00261{bottom:291.601407pt;}
.y60_c00261{bottom:307.470004pt;}
.y5f_c00261{bottom:308.096947pt;}
.y5e_c00261{bottom:308.379467pt;}
.y5d_c00261{bottom:308.589104pt;}
.y5c_c00261{bottom:309.207753pt;}
.y5b_c00261{bottom:309.478704pt;}
.y5a_c00261{bottom:310.167813pt;}
.y59_c00261{bottom:310.395644pt;}
.y58_c00261{bottom:311.329541pt;}
.y57_c00261{bottom:311.520288pt;}
.y56_c00261{bottom:328.319831pt;}
.y55_c00261{bottom:328.658903pt;}
.y54_c00261{bottom:328.987715pt;}
.y53_c00261{bottom:329.480111pt;}
.y52_c00261{bottom:329.687423pt;}
.y51_c00261{bottom:330.054743pt;}
.y50_c00261{bottom:330.704591pt;}
.y4f_c00261{bottom:330.929207pt;}
.y4e_c00261{bottom:331.216439pt;}
.y4d_c00261{bottom:331.680875pt;}
.y4c_c00261{bottom:348.494307pt;}
.y4b_c00261{bottom:349.191975pt;}
.y4a_c00261{bottom:349.525851pt;}
.y49_c00261{bottom:349.696791pt;}
.y48_c00261{bottom:350.652207pt;}
.y47_c00261{bottom:350.906439pt;}
.y46_c00261{bottom:351.254007pt;}
.y45_c00261{bottom:351.508803pt;}
.y44_c00261{bottom:352.079355pt;}
.y43_c00261{bottom:352.178667pt;}
.y42_c00261{bottom:369.877196pt;}
.y41_c00261{bottom:370.803501pt;}
.y40_c00261{bottom:372.315343pt;}
.y3f_c00261{bottom:372.777333pt;}
.y3e_c00261{bottom:389.821333pt;}
.y3d_c00261{bottom:390.104000pt;}
.y3c_c00261{bottom:390.778667pt;}
.y3b_c00261{bottom:391.208000pt;}
.y3a_c00261{bottom:391.405333pt;}
.y39_c00261{bottom:392.022667pt;}
.y38_c00261{bottom:392.698667pt;}
.y37_c00261{bottom:393.140000pt;}
.y36_c00261{bottom:393.348000pt;}
.y35_c00261{bottom:393.838667pt;}
.y34_c00261{bottom:412.882667pt;}
.y33_c00261{bottom:433.494667pt;}
.y32_c00261{bottom:453.201333pt;}
.y31_c00261{bottom:473.388000pt;}
.y30_c00261{bottom:492.996000pt;}
.y2f_c00261{bottom:493.478667pt;}
.y2e_c00261{bottom:493.744000pt;}
.y2d_c00261{bottom:494.126667pt;}
.y2c_c00261{bottom:494.254667pt;}
.y2b_c00261{bottom:494.373333pt;}
.y2a_c00261{bottom:494.733333pt;}
.y29_c00261{bottom:494.901333pt;}
.y28_c00261{bottom:495.052000pt;}
.y27_c00261{bottom:495.502667pt;}
.y26_c00261{bottom:495.838667pt;}
.y25_c00261{bottom:514.186667pt;}
.y24_c00261{bottom:534.592000pt;}
.y23_c00261{bottom:554.674667pt;}
.y22_c00261{bottom:574.853333pt;}
.y21_c00261{bottom:595.225333pt;}
.y20_c00261{bottom:615.653333pt;}
.y1f_c00261{bottom:635.786667pt;}
.y1e_c00261{bottom:656.666667pt;}
.y1d_c00261{bottom:675.782667pt;}
.y1c_c00261{bottom:696.366667pt;}
.y1b_c00261{bottom:697.116000pt;}
.y1a_c00261{bottom:697.404000pt;}
.y19_c00261{bottom:697.592000pt;}
.y18_c00261{bottom:697.889333pt;}
.y17_c00261{bottom:698.330667pt;}
.y16_c00261{bottom:698.466667pt;}
.y15_c00261{bottom:698.689333pt;}
.y14_c00261{bottom:699.042667pt;}
.y13_c00261{bottom:699.326667pt;}
.y12_c00261{bottom:699.600000pt;}
.y11_c00261{bottom:716.344000pt;}
.y10_c00261{bottom:736.866667pt;}
.yf_c00261{bottom:737.442667pt;}
.ye_c00261{bottom:738.018667pt;}
.yd_c00261{bottom:738.285333pt;}
.yc_c00261{bottom:738.652000pt;}
.yb_c00261{bottom:739.449333pt;}
.ya_c00261{bottom:739.677333pt;}
.y9_c00261{bottom:740.044000pt;}
.y8_c00261{bottom:740.145333pt;}
.y7_c00261{bottom:740.364000pt;}
.y6_c00261{bottom:740.880000pt;}
.y5_c00261{bottom:756.924000pt;}
.y2_c00261{bottom:794.644000pt;}
.y3_c00261{bottom:795.246667pt;}
.y4_c00261{bottom:795.308000pt;}
.y1_c00261{bottom:851.498667pt;}
.h16_c00261{height:21.466667pt;}
.h2_c00261{height:40.133333pt;}
.h17_c00261{height:44.802240pt;}
.h18_c00261{height:49.469140pt;}
.hd_c00261{height:54.133333pt;}
.h13_c00261{height:55.068897pt;}
.hb_c00261{height:56.933333pt;}
.hc_c00261{height:57.866667pt;}
.h6_c00261{height:58.800000pt;}
.ha_c00261{height:59.733333pt;}
.he_c00261{height:59.734797pt;}
.h10_c00261{height:59.735752pt;}
.h9_c00261{height:60.666667pt;}
.h4_c00261{height:61.600000pt;}
.h11_c00261{height:61.602495pt;}
.h8_c00261{height:62.533333pt;}
.h12_c00261{height:62.535866pt;}
.h7_c00261{height:64.400000pt;}
.h14_c00261{height:64.402608pt;}
.h5_c00261{height:66.266667pt;}
.hf_c00261{height:66.269350pt;}
.h15_c00261{height:110.133333pt;}
.h3_c00261{height:112.000000pt;}
.h0_c00261{height:896.400000pt;}
.h1_c00261{height:896.666667pt;}
.w0_c00261{width:603.066667pt;}
.w1_c00261{width:603.333333pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:83.040000pt;}
.xb1_c00261{left:110.069189pt;}
.x19_c00261{left:118.769333pt;}
.xb_c00261{left:120.518667pt;}
.x9f_c00261{left:125.417333pt;}
.x2_c00261{left:126.960000pt;}
.xc0_c00261{left:128.790667pt;}
.xc2_c00261{left:133.436773pt;}
.xe_c00261{left:134.400000pt;}
.x3_c00261{left:135.360000pt;}
.xa0_c00261{left:136.452000pt;}
.x24_c00261{left:138.960000pt;}
.x35_c00261{left:142.558667pt;}
.x92_c00261{left:144.480000pt;}
.x69_c00261{left:146.878667pt;}
.x77_c00261{left:149.518667pt;}
.x49_c00261{left:151.918667pt;}
.x2d_c00261{left:153.321333pt;}
.x4_c00261{left:156.960000pt;}
.x40_c00261{left:158.158667pt;}
.x70_c00261{left:161.758667pt;}
.xc3_c00261{left:163.438440pt;}
.x80_c00261{left:166.732000pt;}
.x9a_c00261{left:168.173333pt;}
.x1a_c00261{left:170.321333pt;}
.xa6_c00261{left:171.257735pt;}
.xf_c00261{left:172.800000pt;}
.xba_c00261{left:174.784808pt;}
.x5_c00261{left:175.680000pt;}
.x4a_c00261{left:176.878667pt;}
.x78_c00261{left:179.038667pt;}
.x25_c00261{left:181.680000pt;}
.x41_c00261{left:185.038667pt;}
.xc_c00261{left:187.452000pt;}
.x2e_c00261{left:188.808000pt;}
.x1b_c00261{left:192.158667pt;}
.xd_c00261{left:194.246667pt;}
.x36_c00261{left:196.078667pt;}
.x10_c00261{left:199.680000pt;}
.x26_c00261{left:201.360000pt;}
.x1c_c00261{left:202.276000pt;}
.xa7_c00261{left:203.172401pt;}
.x6_c00261{left:204.960000pt;}
.xb6_c00261{left:209.641601pt;}
.x87_c00261{left:211.680000pt;}
.x5b_c00261{left:213.598667pt;}
.x54_c00261{left:215.998667pt;}
.x6a_c00261{left:217.198667pt;}
.x42_c00261{left:227.038667pt;}
.xa1_c00261{left:228.157333pt;}
.x71_c00261{left:230.398667pt;}
.x4b_c00261{left:231.358667pt;}
.x7_c00261{left:233.520000pt;}
.x37_c00261{left:236.638667pt;}
.x1d_c00261{left:238.944000pt;}
.x5c_c00261{left:244.318667pt;}
.x63_c00261{left:247.198667pt;}
.x4c_c00261{left:248.398667pt;}
.x11_c00261{left:250.080000pt;}
.x81_c00261{left:252.621333pt;}
.xb2_c00261{left:253.571856pt;}
.x55_c00261{left:254.638667pt;}
.x93_c00261{left:256.560000pt;}
.x2f_c00261{left:260.797333pt;}
.x1e_c00261{left:261.722667pt;}
.xb7_c00261{left:263.362455pt;}
.x79_c00261{left:265.438667pt;}
.xa2_c00261{left:266.776000pt;}
.x43_c00261{left:267.838667pt;}
.x27_c00261{left:269.760000pt;}
.x5d_c00261{left:273.598667pt;}
.x4d_c00261{left:275.038667pt;}
.x82_c00261{left:276.624000pt;}
.x30_c00261{left:277.813333pt;}
.x38_c00261{left:279.118667pt;}
.x7a_c00261{left:283.678667pt;}
.x6b_c00261{left:289.198667pt;}
.x28_c00261{left:291.120000pt;}
.x72_c00261{left:293.758667pt;}
.xa3_c00261{left:295.024000pt;}
.x8_c00261{left:296.400000pt;}
.x64_c00261{left:298.078667pt;}
.x56_c00261{left:299.998667pt;}
.xbd_c00261{left:302.160000pt;}
.xac_c00261{left:303.233739pt;}
.x12_c00261{left:304.560000pt;}
.x39_c00261{left:309.598667pt;}
.xbb_c00261{left:313.059645pt;}
.x94_c00261{left:319.200000pt;}
.xb3_c00261{left:321.497189pt;}
.xaa_c00261{left:323.859804pt;}
.x44_c00261{left:324.958667pt;}
.x6c_c00261{left:326.638667pt;}
.x9_c00261{left:328.320000pt;}
.x5e_c00261{left:330.958667pt;}
.x31_c00261{left:333.022667pt;}
.x3a_c00261{left:335.038667pt;}
.x95_c00261{left:336.480000pt;}
.xa_c00261{left:337.680000pt;}
.xad_c00261{left:339.923745pt;}
.x1f_c00261{left:341.440000pt;}
.x29_c00261{left:344.400000pt;}
.x4e_c00261{left:345.358667pt;}
.x57_c00261{left:347.038667pt;}
.x73_c00261{left:349.918667pt;}
.xab_c00261{left:351.002231pt;}
.x3b_c00261{left:355.198667pt;}
.x8d_c00261{left:357.840000pt;}
.x6d_c00261{left:360.478667pt;}
.xc4_c00261{left:361.448920pt;}
.x83_c00261{left:363.225333pt;}
.xa8_c00261{left:364.183068pt;}
.x7b_c00261{left:366.958667pt;}
.x13_c00261{left:369.600000pt;}
.x58_c00261{left:371.758667pt;}
.x7c_c00261{left:373.438667pt;}
.xbc_c00261{left:375.667851pt;}
.x20_c00261{left:378.149333pt;}
.x5f_c00261{left:379.918667pt;}
.x4f_c00261{left:381.838667pt;}
.x3c_c00261{left:384.718667pt;}
.xbf_c00261{left:386.400000pt;}
.x8a_c00261{left:391.200000pt;}
.x32_c00261{left:393.713333pt;}
.xae_c00261{left:395.156083pt;}
.x65_c00261{left:397.438667pt;}
.x50_c00261{left:399.358667pt;}
.x14_c00261{left:400.320000pt;}
.x9d_c00261{left:401.657333pt;}
.x96_c00261{left:402.960000pt;}
.x21_c00261{left:404.762667pt;}
.xb8_c00261{left:406.211837pt;}
.x3d_c00261{left:407.758667pt;}
.x45_c00261{left:409.198667pt;}
.x7d_c00261{left:410.398667pt;}
.xb4_c00261{left:411.746523pt;}
.x74_c00261{left:413.518667pt;}
.x2a_c00261{left:415.200000pt;}
.x84_c00261{left:417.969333pt;}
.xa9_c00261{left:418.893735pt;}
.xa4_c00261{left:420.174667pt;}
.x59_c00261{left:423.838667pt;}
.x9b_c00261{left:425.157333pt;}
.x8e_c00261{left:427.200000pt;}
.x33_c00261{left:429.740000pt;}
.xaf_c00261{left:432.115423pt;}
.x97_c00261{left:433.920000pt;}
.x2b_c00261{left:435.600000pt;}
.x8b_c00261{left:437.280000pt;}
.x60_c00261{left:438.478667pt;}
.x46_c00261{left:439.438667pt;}
.x66_c00261{left:440.638667pt;}
.x15_c00261{left:445.680000pt;}
.x8f_c00261{left:447.840000pt;}
.x75_c00261{left:450.238667pt;}
.x88_c00261{left:451.440000pt;}
.x85_c00261{left:455.890667pt;}
.xa5_c00261{left:457.272000pt;}
.x67_c00261{left:461.278667pt;}
.x22_c00261{left:462.361333pt;}
.x51_c00261{left:463.678667pt;}
.x47_c00261{left:464.878667pt;}
.xb0_c00261{left:469.112096pt;}
.x98_c00261{left:472.800000pt;}
.x6e_c00261{left:475.198667pt;}
.x52_c00261{left:477.358667pt;}
.x2c_c00261{left:479.280000pt;}
.x61_c00261{left:480.478667pt;}
.x3e_c00261{left:481.918667pt;}
.x16_c00261{left:483.600000pt;}
.x90_c00261{left:485.520000pt;}
.x7e_c00261{left:486.478667pt;}
.x8c_c00261{left:491.520000pt;}
.x9c_c00261{left:492.596000pt;}
.x76_c00261{left:494.638667pt;}
.x99_c00261{left:503.040000pt;}
.x17_c00261{left:504.240000pt;}
.x7f_c00261{left:505.918667pt;}
.x53_c00261{left:507.358667pt;}
.x3f_c00261{left:509.278667pt;}
.x48_c00261{left:511.438667pt;}
.x89_c00261{left:513.120000pt;}
.x62_c00261{left:516.718667pt;}
.xc1_c00261{left:518.058667pt;}
.x23_c00261{left:520.004000pt;}
.x91_c00261{left:521.280000pt;}
.x34_c00261{left:523.349333pt;}
.x86_c00261{left:524.797333pt;}
.x6f_c00261{left:527.998667pt;}
.x68_c00261{left:529.678667pt;}
.x5a_c00261{left:531.358667pt;}
.x18_c00261{left:533.040000pt;}
.x9e_c00261{left:533.986667pt;}
.xbe_c00261{left:539.760000pt;}
.xb9_c00261{left:546.563911pt;}
.xb5_c00261{left:557.766523pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m57_c00262{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);}
.mff_c00262{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);}
.m58_c00262{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);}
.m10d_c00262{transform:matrix(0.036614,0.000256,-0.001750,0.249994,0,0);-ms-transform:matrix(0.036614,0.000256,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.036614,0.000256,-0.001750,0.249994,0,0);}
.md9_c00262{transform:matrix(0.063515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00262{transform:matrix(0.067565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067565,0.000000,0.000000,0.250000,0,0);}
.m60_c00262{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);}
.m63_c00262{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.m106_c00262{transform:matrix(0.111132,0.000778,-0.001750,0.249994,0,0);-ms-transform:matrix(0.111132,0.000778,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.111132,0.000778,-0.001750,0.249994,0,0);}
.m6b_c00262{transform:matrix(0.115270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115270,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.115330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115330,0.000000,0.000000,0.250000,0,0);}
.md1_c00262{transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138335,0.000000,0.000000,0.250000,0,0);}
.m66_c00262{transform:matrix(0.138505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138505,0.000000,0.000000,0.250000,0,0);}
.meb_c00262{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);}
.m4c_c00262{transform:matrix(0.148705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148705,0.000000,0.000000,0.250000,0,0);}
.mde_c00262{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);}
.me3_c00262{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);}
.mf2_c00262{transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);}
.m119_c00262{transform:matrix(0.152651,0.001069,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152651,0.001069,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152651,0.001069,-0.001750,0.249994,0,0);}
.m10_c00262{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);}
.m10e_c00262{transform:matrix(0.153326,0.001073,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153326,0.001073,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153326,0.001073,-0.001750,0.249994,0,0);}
.m3_c00262{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);}
.mc3_c00262{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);}
.m43_c00262{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);}
.m8f_c00262{transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);}
.med_c00262{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);}
.m9f_c00262{transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160240,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{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);}
.m76_c00262{transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);}
.mae_c00262{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);}
.m5d_c00262{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);}
.md6_c00262{transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166570,0.000000,0.000000,0.250000,0,0);}
.m9a_c00262{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);}
.m25_c00262{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);}
.m2_c00262{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);}
.m18_c00262{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);}
.me8_c00262{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);}
.m4_c00262{transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);}
.m7d_c00262{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);}
.m85_c00262{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);}
.m0_c00262{transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00262{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);}
.me9_c00262{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);}
.md4_c00262{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);}
.m74_c00262{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);}
.mc6_c00262{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);}
.ma_c00262{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m9d_c00262{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);}
.md5_c00262{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{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);}
.m9b_c00262{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);}
.ma9_c00262{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);}
.m10f_c00262{transform:matrix(0.176406,0.001235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176406,0.001235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176406,0.001235,-0.001750,0.249994,0,0);}
.mf3_c00262{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);}
.mdb_c00262{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);}
.mef_c00262{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);}
.m6f_c00262{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);}
.mda_c00262{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);}
.mdf_c00262{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);}
.mb1_c00262{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);}
.m1e_c00262{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);}
.maa_c00262{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);}
.m54_c00262{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);}
.m59_c00262{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);}
.mb8_c00262{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);}
.md7_c00262{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);}
.m53_c00262{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);}
.m10a_c00262{transform:matrix(0.183945,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183945,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183945,0.001288,-0.001750,0.249994,0,0);}
.m67_c00262{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);}
.m6_c00262{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);}
.maf_c00262{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);}
.m77_c00262{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);}
.mdd_c00262{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);}
.mc4_c00262{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);}
.ma0_c00262{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);}
.m21_c00262{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);}
.m72_c00262{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);}
.m75_c00262{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);}
.m7b_c00262{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);}
.me6_c00262{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);}
.m10b_c00262{transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);}
.m12_c00262{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);}
.m7_c00262{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);}
.m8_c00262{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.mac_c00262{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);}
.m1_c00262{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);}
.ma1_c00262{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);}
.m44_c00262{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);}
.mee_c00262{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_c00262{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);}
.m55_c00262{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);}
.m1a_c00262{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);}
.m41_c00262{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);}
.m51_c00262{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);}
.m111_c00262{transform:matrix(0.193070,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193070,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193070,0.001351,-0.001750,0.249994,0,0);}
.m5_c00262{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);}
.mc_c00262{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);}
.ma5_c00262{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);}
.mcf_c00262{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);}
.m65_c00262{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);}
.me_c00262{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);}
.mf8_c00262{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);}
.m79_c00262{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);}
.m4f_c00262{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);}
.m8d_c00262{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);}
.m6d_c00262{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);}
.m16_c00262{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);}
.m5c_c00262{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);}
.mcc_c00262{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);}
.mea_c00262{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);}
.m4d_c00262{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);}
.m61_c00262{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);}
.mf_c00262{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);}
.m13_c00262{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);}
.m17_c00262{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);}
.m11a_c00262{transform:matrix(0.198275,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198275,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198275,0.001388,-0.001750,0.249994,0,0);}
.m26_c00262{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);}
.mad_c00262{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);}
.me1_c00262{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);}
.m7f_c00262{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);}
.m68_c00262{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);}
.mc2_c00262{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);}
.m2a_c00262{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);}
.mec_c00262{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);}
.m87_c00262{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);}
.m110_c00262{transform:matrix(0.201335,0.001409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201335,0.001409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201335,0.001409,-0.001750,0.249994,0,0);}
.mc8_c00262{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);}
.m82_c00262{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);}
.m14_c00262{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);}
.m11_c00262{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);}
.m6e_c00262{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);}
.md8_c00262{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);}
.mb3_c00262{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);}
.m38_c00262{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);}
.m90_c00262{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);}
.m52_c00262{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);}
.m95_c00262{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);}
.m92_c00262{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);}
.m4e_c00262{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);}
.m15_c00262{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);}
.m31_c00262{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);}
.m5a_c00262{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);}
.mb0_c00262{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);}
.m24_c00262{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);}
.me0_c00262{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);}
.m1b_c00262{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_c00262{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);}
.m33_c00262{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);}
.m62_c00262{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);}
.mb9_c00262{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);}
.m8b_c00262{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);}
.m27_c00262{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);}
.ma3_c00262{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);}
.m81_c00262{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);}
.mfa_c00262{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);}
.m56_c00262{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);}
.m83_c00262{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);}
.md2_c00262{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);}
.m28_c00262{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);}
.m86_c00262{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);}
.m114_c00262{transform:matrix(0.215855,0.001511,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215855,0.001511,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215855,0.001511,-0.001750,0.249994,0,0);}
.m23_c00262{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);}
.m94_c00262{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m118_c00262{transform:matrix(0.216235,0.001514,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216235,0.001514,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216235,0.001514,-0.001750,0.249994,0,0);}
.m8e_c00262{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);}
.m7a_c00262{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);}
.m3c_c00262{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);}
.me5_c00262{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);}
.m45_c00262{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);}
.ma7_c00262{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);}
.m40_c00262{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);}
.mf5_c00262{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);}
.m101_c00262{transform:matrix(0.220875,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220875,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220875,0.001546,-0.001750,0.249994,0,0);}
.m3e_c00262{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);}
.mbf_c00262{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);}
.mb6_c00262{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);}
.m64_c00262{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);}
.m2e_c00262{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);}
.m78_c00262{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);}
.m98_c00262{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);}
.m89_c00262{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);}
.mbd_c00262{transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224215,0.000000,0.000000,0.250000,0,0);}
.m9c_c00262{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);}
.m47_c00262{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);}
.m100_c00262{transform:matrix(0.225229,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225229,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225229,0.001577,-0.001750,0.249994,0,0);}
.m32_c00262{transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);}
.m70_c00262{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);}
.mb7_c00262{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);}
.m99_c00262{transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);}
.m105_c00262{transform:matrix(0.226314,0.001584,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226314,0.001584,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226314,0.001584,-0.001750,0.249994,0,0);}
.m3f_c00262{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);}
.mfd_c00262{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);}
.mb2_c00262{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);}
.mf9_c00262{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);}
.m8c_c00262{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);}
.mbc_c00262{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);}
.mc0_c00262{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);}
.m102_c00262{transform:matrix(0.229054,0.001603,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229054,0.001603,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229054,0.001603,-0.001750,0.249994,0,0);}
.mb4_c00262{transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);}
.mca_c00262{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);}
.mcd_c00262{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);}
.mf6_c00262{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);}
.m9e_c00262{transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);}
.m22_c00262{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.md0_c00262{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);}
.mfe_c00262{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);}
.mc9_c00262{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);}
.m108_c00262{transform:matrix(0.235204,0.001646,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235204,0.001646,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235204,0.001646,-0.001750,0.249994,0,0);}
.m35_c00262{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);}
.mfc_c00262{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);}
.m71_c00262{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);}
.m107_c00262{transform:matrix(0.237054,0.001659,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237054,0.001659,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237054,0.001659,-0.001750,0.249994,0,0);}
.m2c_c00262{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);}
.m49_c00262{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);}
.m69_c00262{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);}
.ma6_c00262{transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239185,0.000000,0.000000,0.250000,0,0);}
.me4_c00262{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.mbe_c00262{transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);}
.ma4_c00262{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);}
.m91_c00262{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.mfb_c00262{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);}
.m113_c00262{transform:matrix(0.243104,0.001702,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243104,0.001702,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243104,0.001702,-0.001750,0.249994,0,0);}
.m112_c00262{transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);}
.mc1_c00262{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);}
.mbb_c00262{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);}
.md3_c00262{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);}
.mc5_c00262{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);}
.me2_c00262{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.mf0_c00262{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);}
.m2d_c00262{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m2f_c00262{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.mdc_c00262{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);}
.m96_c00262{transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);}
.mf4_c00262{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);}
.m6a_c00262{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);}
.m3d_c00262{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.m7e_c00262{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);}
.mf7_c00262{transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.255995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00262{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);}
.mb5_c00262{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);}
.m46_c00262{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);}
.m115_c00262{transform:matrix(0.259199,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259199,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259199,0.001814,-0.001750,0.249994,0,0);}
.mab_c00262{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m5e_c00262{transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);}
.ma8_c00262{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);}
.me7_c00262{transform:matrix(0.263240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263240,0.000000,0.000000,0.250000,0,0);}
.ma2_c00262{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.m7c_c00262{transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);}
.m50_c00262{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);}
.m29_c00262{transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);}
.m88_c00262{transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{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);}
.m104_c00262{transform:matrix(0.277283,0.001941,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277283,0.001941,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277283,0.001941,-0.001750,0.249994,0,0);}
.m103_c00262{transform:matrix(0.277483,0.001942,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277483,0.001942,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277483,0.001942,-0.001750,0.249994,0,0);}
.m97_c00262{transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00262{transform:matrix(0.278965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278965,0.000000,0.000000,0.250000,0,0);}
.m109_c00262{transform:matrix(0.287948,0.002016,-0.001750,0.249994,0,0);-ms-transform:matrix(0.287948,0.002016,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.287948,0.002016,-0.001750,0.249994,0,0);}
.mf1_c00262{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.m117_c00262{transform:matrix(0.295493,0.002068,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295493,0.002068,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295493,0.002068,-0.001750,0.249994,0,0);}
.m1c_c00262{transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295720,0.000000,0.000000,0.250000,0,0);}
.m42_c00262{transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00262{transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301895,0.000000,0.000000,0.250000,0,0);}
.m80_c00262{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);}
.m84_c00262{transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00262{transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323055,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);}
.m73_c00262{transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340095,0.000000,0.000000,0.250000,0,0);}
.mba_c00262{transform:matrix(0.359850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00262{transform:matrix(0.367035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367035,0.000000,0.000000,0.250000,0,0);}
.m10c_c00262{transform:matrix(0.397710,0.002784,-0.001750,0.249994,0,0);-ms-transform:matrix(0.397710,0.002784,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.397710,0.002784,-0.001750,0.249994,0,0);}
.m4a_c00262{transform:matrix(0.403660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403660,0.000000,0.000000,0.250000,0,0);}
.m93_c00262{transform:matrix(0.408450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408450,0.000000,0.000000,0.250000,0,0);}
.m8a_c00262{transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409745,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.473225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473225,0.000000,0.000000,0.250000,0,0);}
.m34_c00262{transform:matrix(0.560765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560765,0.000000,0.000000,0.250000,0,0);}
.m37_c00262{transform:matrix(0.641680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641680,0.000000,0.000000,0.250000,0,0);}
.m48_c00262{transform:matrix(0.748650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748650,0.000000,0.000000,0.250000,0,0);}
.m116_c00262{transform:matrix(0.763096,0.005342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.763096,0.005342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.763096,0.005342,-0.001750,0.249994,0,0);}
.m39_c00262{transform:matrix(0.864130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864130,0.000000,0.000000,0.250000,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;}
.fs6_c00262{font-size:60.900000px;}
.fs5_c00262{font-size:61.950000px;}
.fs9_c00262{font-size:63.000000px;}
.fsa_c00262{font-size:63.001543px;}
.fs7_c00262{font-size:64.050000px;}
.fs3_c00262{font-size:66.150000px;}
.fs2_c00262{font-size:67.200000px;}
.fs4_c00262{font-size:68.250000px;}
.fsb_c00262{font-size:68.251672px;}
.fs1_c00262{font-size:69.300000px;}
.fs8_c00262{font-size:70.350000px;}
.fs0_c00262{font-size:74.550000px;}
.y0_c00262{bottom:0.000000px;}
.y36_c00262{bottom:160.045416px;}
.y35_c00262{bottom:160.045525px;}
.y33_c00262{bottom:160.045575px;}
.y37_c00262{bottom:160.045817px;}
.y32_c00262{bottom:160.045925px;}
.y34_c00262{bottom:160.046126px;}
.y39_c00262{bottom:160.046137px;}
.y3a_c00262{bottom:160.046227px;}
.y38_c00262{bottom:160.046547px;}
.y3b_c00262{bottom:160.046718px;}
.y3d_c00262{bottom:160.047359px;}
.y3c_c00262{bottom:160.047408px;}
.y3e_c00262{bottom:160.047539px;}
.y31_c00262{bottom:181.278632px;}
.y30_c00262{bottom:181.439807px;}
.y2f_c00262{bottom:181.789352px;}
.y2e_c00262{bottom:181.948038px;}
.y2d_c00262{bottom:182.199629px;}
.y2c_c00262{bottom:182.738426px;}
.y2b_c00262{bottom:183.114158px;}
.y2a_c00262{bottom:183.204468px;}
.y29_c00262{bottom:183.461991px;}
.y28_c00262{bottom:183.679551px;}
.y27_c00262{bottom:183.877970px;}
.y26_c00262{bottom:184.433629px;}
.y25_c00262{bottom:184.564008px;}
.y24_c00262{bottom:184.951500px;}
.y23_c00262{bottom:206.175000px;}
.y22_c00262{bottom:228.274500px;}
.y21_c00262{bottom:251.479500px;}
.y20_c00262{bottom:274.165500px;}
.y1f_c00262{bottom:297.894000px;}
.y1e_c00262{bottom:319.899000px;}
.y1d_c00262{bottom:343.225500px;}
.y1c_c00262{bottom:365.703000px;}
.y1b_c00262{bottom:388.555500px;}
.y1a_c00262{bottom:410.692500px;}
.y19_c00262{bottom:410.839500px;}
.y18_c00262{bottom:411.226500px;}
.y17_c00262{bottom:411.612000px;}
.y16_c00262{bottom:411.838500px;}
.y15_c00262{bottom:412.077000px;}
.y14_c00262{bottom:412.134000px;}
.y13_c00262{bottom:412.591500px;}
.y12_c00262{bottom:412.750500px;}
.y11_c00262{bottom:412.912500px;}
.y10_c00262{bottom:413.379000px;}
.yf_c00262{bottom:413.640000px;}
.ye_c00262{bottom:434.518500px;}
.yd_c00262{bottom:457.443000px;}
.yc_c00262{bottom:479.926500px;}
.yb_c00262{bottom:502.360500px;}
.ya_c00262{bottom:525.012000px;}
.y9_c00262{bottom:547.662000px;}
.y8_c00262{bottom:570.321000px;}
.y7_c00262{bottom:593.193000px;}
.y6_c00262{bottom:707.451000px;}
.y5_c00262{bottom:729.361500px;}
.y4_c00262{bottom:751.902000px;}
.y3_c00262{bottom:776.280000px;}
.y2_c00262{bottom:798.243000px;}
.y1_c00262{bottom:820.617000px;}
.h8_c00262{height:60.900000px;}
.h7_c00262{height:61.950000px;}
.hb_c00262{height:63.000000px;}
.hc_c00262{height:63.001543px;}
.h9_c00262{height:64.050000px;}
.h5_c00262{height:66.150000px;}
.h4_c00262{height:67.200000px;}
.h6_c00262{height:68.250000px;}
.hd_c00262{height:68.251672px;}
.h3_c00262{height:69.300000px;}
.ha_c00262{height:70.350000px;}
.h2_c00262{height:74.550000px;}
.h1_c00262{height:1005.000000px;}
.h0_c00262{height:1005.150000px;}
.w1_c00262{width:713.250000px;}
.w0_c00262{width:713.550000px;}
.x0_c00262{left:0.000000px;}
.x48_c00262{left:78.570000px;}
.x58_c00262{left:80.460000px;}
.x97_c00262{left:84.510000px;}
.x6a_c00262{left:85.539000px;}
.xc_c00262{left:86.940000px;}
.x1_c00262{left:88.830000px;}
.x4f_c00262{left:89.910000px;}
.x7e_c00262{left:100.440000px;}
.x15_c00262{left:104.760000px;}
.x59_c00262{left:109.350000px;}
.xd_c00262{left:113.400000px;}
.x94_c00262{left:120.960000px;}
.x3f_c00262{left:122.310000px;}
.x37_c00262{left:123.390000px;}
.x9e_c00262{left:124.470000px;}
.xe_c00262{left:127.710000px;}
.x74_c00262{left:129.060000px;}
.x20_c00262{left:134.190000px;}
.x5f_c00262{left:140.940000px;}
.x2_c00262{left:143.640000px;}
.x64_c00262{left:145.260000px;}
.x16_c00262{left:148.500000px;}
.x50_c00262{left:150.930000px;}
.xa9_c00262{left:153.361497px;}
.x49_c00262{left:157.950000px;}
.x7f_c00262{left:159.840000px;}
.x40_c00262{left:163.890000px;}
.x34_c00262{left:164.970000px;}
.x60_c00262{left:166.050000px;}
.x21_c00262{left:168.480000px;}
.x27_c00262{left:171.990000px;}
.x8c_c00262{left:173.340000px;}
.x17_c00262{left:176.580000px;}
.x5a_c00262{left:178.200000px;}
.x86_c00262{left:183.600000px;}
.xf_c00262{left:186.840000px;}
.x61_c00262{left:189.540000px;}
.x3_c00262{left:195.750000px;}
.x6f_c00262{left:197.640000px;}
.x7b_c00262{left:202.230000px;}
.x2e_c00262{left:203.580000px;}
.x5b_c00262{left:206.010000px;}
.x38_c00262{left:213.300000px;}
.x51_c00262{left:214.920000px;}
.x98_c00262{left:218.430000px;}
.x28_c00262{left:220.050000px;}
.x18_c00262{left:221.670000px;}
.x70_c00262{left:224.100000px;}
.x35_c00262{left:226.260000px;}
.x7c_c00262{left:228.150000px;}
.x65_c00262{left:229.770000px;}
.x4_c00262{left:231.120000px;}
.x52_c00262{left:234.090000px;}
.x22_c00262{left:235.980000px;}
.x41_c00262{left:237.060000px;}
.x10_c00262{left:238.140000px;}
.x99_c00262{left:244.620000px;}
.x2f_c00262{left:248.940000px;}
.x8d_c00262{left:253.260000px;}
.x5_c00262{left:258.390000px;}
.x87_c00262{left:260.820000px;}
.x80_c00262{left:262.710000px;}
.xa4_c00262{left:267.186000px;}
.x5c_c00262{left:274.320000px;}
.x39_c00262{left:277.560000px;}
.x23_c00262{left:278.910000px;}
.x11_c00262{left:280.530000px;}
.x95_c00262{left:284.040000px;}
.x53_c00262{left:286.740000px;}
.x3a_c00262{left:294.570000px;}
.x19_c00262{left:297.540000px;}
.x6b_c00262{left:300.676500px;}
.x42_c00262{left:304.560000px;}
.x24_c00262{left:305.910000px;}
.x6_c00262{left:308.610000px;}
.x75_c00262{left:310.500000px;}
.x3b_c00262{left:311.850000px;}
.xaa_c00262{left:315.094925px;}
.x9f_c00262{left:316.980000px;}
.x29_c00262{left:318.330000px;}
.x36_c00262{left:321.030000px;}
.x81_c00262{left:323.190000px;}
.x8e_c00262{left:329.400000px;}
.x9a_c00262{left:330.480000px;}
.x66_c00262{left:331.830000px;}
.x30_c00262{left:333.180000px;}
.xa5_c00262{left:335.055000px;}
.x4a_c00262{left:337.230000px;}
.x7_c00262{left:339.660000px;}
.x3c_c00262{left:341.820000px;}
.x5d_c00262{left:346.680000px;}
.xa6_c00262{left:347.956500px;}
.x62_c00262{left:350.460000px;}
.x1a_c00262{left:354.780000px;}
.x82_c00262{left:355.860000px;}
.x76_c00262{left:358.290000px;}
.x7d_c00262{left:360.180000px;}
.x8f_c00262{left:366.390000px;}
.x88_c00262{left:370.440000px;}
.x89_c00262{left:372.060000px;}
.x4b_c00262{left:373.140000px;}
.x6c_c00262{left:375.183000px;}
.x83_c00262{left:376.920000px;}
.x12_c00262{left:379.620000px;}
.x77_c00262{left:383.130000px;}
.x1b_c00262{left:386.910000px;}
.x54_c00262{left:389.070000px;}
.xab_c00262{left:390.157100px;}
.x25_c00262{left:391.230000px;}
.x55_c00262{left:395.280000px;}
.x8_c00262{left:397.980000px;}
.x43_c00262{left:400.140000px;}
.x67_c00262{left:401.220000px;}
.x4c_c00262{left:402.570000px;}
.x2a_c00262{left:404.190000px;}
.x90_c00262{left:405.540000px;}
.x5e_c00262{left:407.160000px;}
.x96_c00262{left:408.240000px;}
.xa0_c00262{left:409.320000px;}
.x31_c00262{left:419.310000px;}
.x8a_c00262{left:423.090000px;}
.x6d_c00262{left:430.294500px;}
.x71_c00262{left:432.270000px;}
.x44_c00262{left:434.160000px;}
.x1c_c00262{left:436.050000px;}
.x9_c00262{left:439.290000px;}
.x91_c00262{left:440.640000px;}
.x78_c00262{left:444.690000px;}
.x56_c00262{left:448.200000px;}
.x4d_c00262{left:450.090000px;}
.x1d_c00262{left:451.170000px;}
.x9b_c00262{left:452.520000px;}
.x8b_c00262{left:454.410000px;}
.x3d_c00262{left:456.030000px;}
.x84_c00262{left:460.890000px;}
.xac_c00262{left:461.979128px;}
.x4e_c00262{left:464.940000px;}
.x1e_c00262{left:466.830000px;}
.xa_c00262{left:468.450000px;}
.x13_c00262{left:470.880000px;}
.x3e_c00262{left:475.740000px;}
.x79_c00262{left:477.900000px;}
.x2b_c00262{left:478.980000px;}
.x45_c00262{left:483.570000px;}
.x6e_c00262{left:485.643000px;}
.xa1_c00262{left:491.400000px;}
.x63_c00262{left:495.180000px;}
.x72_c00262{left:496.800000px;}
.x92_c00262{left:502.740000px;}
.x32_c00262{left:504.630000px;}
.x57_c00262{left:506.520000px;}
.x9c_c00262{left:508.410000px;}
.xb_c00262{left:509.490000px;}
.x68_c00262{left:511.650000px;}
.x2c_c00262{left:513.000000px;}
.x93_c00262{left:514.890000px;}
.x9d_c00262{left:523.800000px;}
.xa2_c00262{left:525.150000px;}
.x69_c00262{left:528.120000px;}
.x7a_c00262{left:529.740000px;}
.x26_c00262{left:531.360000px;}
.x14_c00262{left:533.520000px;}
.x85_c00262{left:535.140000px;}
.x2d_c00262{left:537.300000px;}
.x1f_c00262{left:540.810000px;}
.x73_c00262{left:545.940000px;}
.x46_c00262{left:550.530000px;}
.x33_c00262{left:562.410000px;}
.xa3_c00262{left:573.210000px;}
.x47_c00262{left:576.450000px;}
.xa7_c00262{left:587.149500px;}
.xa8_c00262{left:610.174500px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs6_c00262{font-size:54.133333pt;}
.fs5_c00262{font-size:55.066667pt;}
.fs9_c00262{font-size:56.000000pt;}
.fsa_c00262{font-size:56.001372pt;}
.fs7_c00262{font-size:56.933333pt;}
.fs3_c00262{font-size:58.800000pt;}
.fs2_c00262{font-size:59.733333pt;}
.fs4_c00262{font-size:60.666667pt;}
.fsb_c00262{font-size:60.668153pt;}
.fs1_c00262{font-size:61.600000pt;}
.fs8_c00262{font-size:62.533333pt;}
.fs0_c00262{font-size:66.266667pt;}
.y0_c00262{bottom:0.000000pt;}
.y36_c00262{bottom:142.262592pt;}
.y35_c00262{bottom:142.262689pt;}
.y33_c00262{bottom:142.262733pt;}
.y37_c00262{bottom:142.262948pt;}
.y32_c00262{bottom:142.263044pt;}
.y34_c00262{bottom:142.263223pt;}
.y39_c00262{bottom:142.263233pt;}
.y3a_c00262{bottom:142.263313pt;}
.y38_c00262{bottom:142.263597pt;}
.y3b_c00262{bottom:142.263749pt;}
.y3d_c00262{bottom:142.264319pt;}
.y3c_c00262{bottom:142.264363pt;}
.y3e_c00262{bottom:142.264479pt;}
.y31_c00262{bottom:161.136561pt;}
.y30_c00262{bottom:161.279828pt;}
.y2f_c00262{bottom:161.590535pt;}
.y2e_c00262{bottom:161.731589pt;}
.y2d_c00262{bottom:161.955225pt;}
.y2c_c00262{bottom:162.434156pt;}
.y2b_c00262{bottom:162.768140pt;}
.y2a_c00262{bottom:162.848416pt;}
.y29_c00262{bottom:163.077325pt;}
.y28_c00262{bottom:163.270712pt;}
.y27_c00262{bottom:163.447084pt;}
.y26_c00262{bottom:163.941004pt;}
.y25_c00262{bottom:164.056896pt;}
.y24_c00262{bottom:164.401333pt;}
.y23_c00262{bottom:183.266667pt;}
.y22_c00262{bottom:202.910667pt;}
.y21_c00262{bottom:223.537333pt;}
.y20_c00262{bottom:243.702667pt;}
.y1f_c00262{bottom:264.794667pt;}
.y1e_c00262{bottom:284.354667pt;}
.y1d_c00262{bottom:305.089333pt;}
.y1c_c00262{bottom:325.069333pt;}
.y1b_c00262{bottom:345.382667pt;}
.y1a_c00262{bottom:365.060000pt;}
.y19_c00262{bottom:365.190667pt;}
.y18_c00262{bottom:365.534667pt;}
.y17_c00262{bottom:365.877333pt;}
.y16_c00262{bottom:366.078667pt;}
.y15_c00262{bottom:366.290667pt;}
.y14_c00262{bottom:366.341333pt;}
.y13_c00262{bottom:366.748000pt;}
.y12_c00262{bottom:366.889333pt;}
.y11_c00262{bottom:367.033333pt;}
.y10_c00262{bottom:367.448000pt;}
.yf_c00262{bottom:367.680000pt;}
.ye_c00262{bottom:386.238667pt;}
.yd_c00262{bottom:406.616000pt;}
.yc_c00262{bottom:426.601333pt;}
.yb_c00262{bottom:446.542667pt;}
.ya_c00262{bottom:466.677333pt;}
.y9_c00262{bottom:486.810667pt;}
.y8_c00262{bottom:506.952000pt;}
.y7_c00262{bottom:527.282667pt;}
.y6_c00262{bottom:628.845333pt;}
.y5_c00262{bottom:648.321333pt;}
.y4_c00262{bottom:668.357333pt;}
.y3_c00262{bottom:690.026667pt;}
.y2_c00262{bottom:709.549333pt;}
.y1_c00262{bottom:729.437333pt;}
.h8_c00262{height:54.133333pt;}
.h7_c00262{height:55.066667pt;}
.hb_c00262{height:56.000000pt;}
.hc_c00262{height:56.001372pt;}
.h9_c00262{height:56.933333pt;}
.h5_c00262{height:58.800000pt;}
.h4_c00262{height:59.733333pt;}
.h6_c00262{height:60.666667pt;}
.hd_c00262{height:60.668153pt;}
.h3_c00262{height:61.600000pt;}
.ha_c00262{height:62.533333pt;}
.h2_c00262{height:66.266667pt;}
.h1_c00262{height:893.333333pt;}
.h0_c00262{height:893.466667pt;}
.w1_c00262{width:634.000000pt;}
.w0_c00262{width:634.266667pt;}
.x0_c00262{left:0.000000pt;}
.x48_c00262{left:69.840000pt;}
.x58_c00262{left:71.520000pt;}
.x97_c00262{left:75.120000pt;}
.x6a_c00262{left:76.034667pt;}
.xc_c00262{left:77.280000pt;}
.x1_c00262{left:78.960000pt;}
.x4f_c00262{left:79.920000pt;}
.x7e_c00262{left:89.280000pt;}
.x15_c00262{left:93.120000pt;}
.x59_c00262{left:97.200000pt;}
.xd_c00262{left:100.800000pt;}
.x94_c00262{left:107.520000pt;}
.x3f_c00262{left:108.720000pt;}
.x37_c00262{left:109.680000pt;}
.x9e_c00262{left:110.640000pt;}
.xe_c00262{left:113.520000pt;}
.x74_c00262{left:114.720000pt;}
.x20_c00262{left:119.280000pt;}
.x5f_c00262{left:125.280000pt;}
.x2_c00262{left:127.680000pt;}
.x64_c00262{left:129.120000pt;}
.x16_c00262{left:132.000000pt;}
.x50_c00262{left:134.160000pt;}
.xa9_c00262{left:136.321331pt;}
.x49_c00262{left:140.400000pt;}
.x7f_c00262{left:142.080000pt;}
.x40_c00262{left:145.680000pt;}
.x34_c00262{left:146.640000pt;}
.x60_c00262{left:147.600000pt;}
.x21_c00262{left:149.760000pt;}
.x27_c00262{left:152.880000pt;}
.x8c_c00262{left:154.080000pt;}
.x17_c00262{left:156.960000pt;}
.x5a_c00262{left:158.400000pt;}
.x86_c00262{left:163.200000pt;}
.xf_c00262{left:166.080000pt;}
.x61_c00262{left:168.480000pt;}
.x3_c00262{left:174.000000pt;}
.x6f_c00262{left:175.680000pt;}
.x7b_c00262{left:179.760000pt;}
.x2e_c00262{left:180.960000pt;}
.x5b_c00262{left:183.120000pt;}
.x38_c00262{left:189.600000pt;}
.x51_c00262{left:191.040000pt;}
.x98_c00262{left:194.160000pt;}
.x28_c00262{left:195.600000pt;}
.x18_c00262{left:197.040000pt;}
.x70_c00262{left:199.200000pt;}
.x35_c00262{left:201.120000pt;}
.x7c_c00262{left:202.800000pt;}
.x65_c00262{left:204.240000pt;}
.x4_c00262{left:205.440000pt;}
.x52_c00262{left:208.080000pt;}
.x22_c00262{left:209.760000pt;}
.x41_c00262{left:210.720000pt;}
.x10_c00262{left:211.680000pt;}
.x99_c00262{left:217.440000pt;}
.x2f_c00262{left:221.280000pt;}
.x8d_c00262{left:225.120000pt;}
.x5_c00262{left:229.680000pt;}
.x87_c00262{left:231.840000pt;}
.x80_c00262{left:233.520000pt;}
.xa4_c00262{left:237.498667pt;}
.x5c_c00262{left:243.840000pt;}
.x39_c00262{left:246.720000pt;}
.x23_c00262{left:247.920000pt;}
.x11_c00262{left:249.360000pt;}
.x95_c00262{left:252.480000pt;}
.x53_c00262{left:254.880000pt;}
.x3a_c00262{left:261.840000pt;}
.x19_c00262{left:264.480000pt;}
.x6b_c00262{left:267.268000pt;}
.x42_c00262{left:270.720000pt;}
.x24_c00262{left:271.920000pt;}
.x6_c00262{left:274.320000pt;}
.x75_c00262{left:276.000000pt;}
.x3b_c00262{left:277.200000pt;}
.xaa_c00262{left:280.084377pt;}
.x9f_c00262{left:281.760000pt;}
.x29_c00262{left:282.960000pt;}
.x36_c00262{left:285.360000pt;}
.x81_c00262{left:287.280000pt;}
.x8e_c00262{left:292.800000pt;}
.x9a_c00262{left:293.760000pt;}
.x66_c00262{left:294.960000pt;}
.x30_c00262{left:296.160000pt;}
.xa5_c00262{left:297.826667pt;}
.x4a_c00262{left:299.760000pt;}
.x7_c00262{left:301.920000pt;}
.x3c_c00262{left:303.840000pt;}
.x5d_c00262{left:308.160000pt;}
.xa6_c00262{left:309.294667pt;}
.x62_c00262{left:311.520000pt;}
.x1a_c00262{left:315.360000pt;}
.x82_c00262{left:316.320000pt;}
.x76_c00262{left:318.480000pt;}
.x7d_c00262{left:320.160000pt;}
.x8f_c00262{left:325.680000pt;}
.x88_c00262{left:329.280000pt;}
.x89_c00262{left:330.720000pt;}
.x4b_c00262{left:331.680000pt;}
.x6c_c00262{left:333.496000pt;}
.x83_c00262{left:335.040000pt;}
.x12_c00262{left:337.440000pt;}
.x77_c00262{left:340.560000pt;}
.x1b_c00262{left:343.920000pt;}
.x54_c00262{left:345.840000pt;}
.xab_c00262{left:346.806311pt;}
.x25_c00262{left:347.760000pt;}
.x55_c00262{left:351.360000pt;}
.x8_c00262{left:353.760000pt;}
.x43_c00262{left:355.680000pt;}
.x67_c00262{left:356.640000pt;}
.x4c_c00262{left:357.840000pt;}
.x2a_c00262{left:359.280000pt;}
.x90_c00262{left:360.480000pt;}
.x5e_c00262{left:361.920000pt;}
.x96_c00262{left:362.880000pt;}
.xa0_c00262{left:363.840000pt;}
.x31_c00262{left:372.720000pt;}
.x8a_c00262{left:376.080000pt;}
.x6d_c00262{left:382.484000pt;}
.x71_c00262{left:384.240000pt;}
.x44_c00262{left:385.920000pt;}
.x1c_c00262{left:387.600000pt;}
.x9_c00262{left:390.480000pt;}
.x91_c00262{left:391.680000pt;}
.x78_c00262{left:395.280000pt;}
.x56_c00262{left:398.400000pt;}
.x4d_c00262{left:400.080000pt;}
.x1d_c00262{left:401.040000pt;}
.x9b_c00262{left:402.240000pt;}
.x8b_c00262{left:403.920000pt;}
.x3d_c00262{left:405.360000pt;}
.x84_c00262{left:409.680000pt;}
.xac_c00262{left:410.648113pt;}
.x4e_c00262{left:413.280000pt;}
.x1e_c00262{left:414.960000pt;}
.xa_c00262{left:416.400000pt;}
.x13_c00262{left:418.560000pt;}
.x3e_c00262{left:422.880000pt;}
.x79_c00262{left:424.800000pt;}
.x2b_c00262{left:425.760000pt;}
.x45_c00262{left:429.840000pt;}
.x6e_c00262{left:431.682667pt;}
.xa1_c00262{left:436.800000pt;}
.x63_c00262{left:440.160000pt;}
.x72_c00262{left:441.600000pt;}
.x92_c00262{left:446.880000pt;}
.x32_c00262{left:448.560000pt;}
.x57_c00262{left:450.240000pt;}
.x9c_c00262{left:451.920000pt;}
.xb_c00262{left:452.880000pt;}
.x68_c00262{left:454.800000pt;}
.x2c_c00262{left:456.000000pt;}
.x93_c00262{left:457.680000pt;}
.x9d_c00262{left:465.600000pt;}
.xa2_c00262{left:466.800000pt;}
.x69_c00262{left:469.440000pt;}
.x7a_c00262{left:470.880000pt;}
.x26_c00262{left:472.320000pt;}
.x14_c00262{left:474.240000pt;}
.x85_c00262{left:475.680000pt;}
.x2d_c00262{left:477.600000pt;}
.x1f_c00262{left:480.720000pt;}
.x73_c00262{left:485.280000pt;}
.x46_c00262{left:489.360000pt;}
.x33_c00262{left:499.920000pt;}
.xa3_c00262{left:509.520000pt;}
.x47_c00262{left:512.400000pt;}
.xa7_c00262{left:521.910667pt;}
.xa8_c00262{left:542.377333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m145_c00263{transform:matrix(0.016264,0.000195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.016264,0.000195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.016264,0.000195,-0.003000,0.249982,0,0);}
.m12d_c00263{transform:matrix(0.016939,0.000203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.016939,0.000203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.016939,0.000203,-0.003000,0.249982,0,0);}
.m128_c00263{transform:matrix(0.029088,0.000349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.029088,0.000349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.029088,0.000349,-0.003000,0.249982,0,0);}
.m134_c00263{transform:matrix(0.036357,0.000436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.036357,0.000436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.036357,0.000436,-0.003000,0.249982,0,0);}
.m12a_c00263{transform:matrix(0.037082,0.000445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.037082,0.000445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.037082,0.000445,-0.003000,0.249982,0,0);}
.me3_c00263{transform:matrix(0.045453,0.000409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.045453,0.000409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.045453,0.000409,-0.002250,0.249990,0,0);}
.m126_c00263{transform:matrix(0.045997,0.000552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.045997,0.000552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.045997,0.000552,-0.003000,0.249982,0,0);}
.m125_c00263{transform:matrix(0.074165,0.000890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.074165,0.000890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.074165,0.000890,-0.003000,0.249982,0,0);}
.m1d_c00263{transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);}
.mfb_c00263{transform:matrix(0.090210,0.000992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.090210,0.000992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.090210,0.000992,-0.002750,0.249985,0,0);}
.m5e_c00263{transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);}
.m6f_c00263{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);}
.m12c_c00263{transform:matrix(0.119781,0.001437,-0.003000,0.249982,0,0);-ms-transform:matrix(0.119781,0.001437,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.119781,0.001437,-0.003000,0.249982,0,0);}
.m81_c00263{transform:matrix(0.133695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133695,0.000000,0.000000,0.250000,0,0);}
.m10a_c00263{transform:matrix(0.137370,0.001648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137370,0.001648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137370,0.001648,-0.003000,0.249982,0,0);}
.mcf_c00263{transform:matrix(0.143304,0.001290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143304,0.001290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143304,0.001290,-0.002250,0.249990,0,0);}
.m98_c00263{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);}
.m100_c00263{transform:matrix(0.144956,0.001595,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144956,0.001595,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144956,0.001595,-0.002750,0.249985,0,0);}
.m17_c00263{transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.146905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146905,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{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);}
.ma8_c00263{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);}
.m111_c00263{transform:matrix(0.148334,0.001780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.148334,0.001780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.148334,0.001780,-0.003000,0.249982,0,0);}
.m14_c00263{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);}
.m7b_c00263{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m10c_c00263{transform:matrix(0.149949,0.001799,-0.003000,0.249982,0,0);-ms-transform:matrix(0.149949,0.001799,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.149949,0.001799,-0.003000,0.249982,0,0);}
.m3_c00263{transform:matrix(0.150208,-0.004811,0.008004,0.249872,0,0);-ms-transform:matrix(0.150208,-0.004811,0.008004,0.249872,0,0);-webkit-transform:matrix(0.150208,-0.004811,0.008004,0.249872,0,0);}
.mae_c00263{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);}
.m36_c00263{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);}
.mb6_c00263{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);}
.m2f_c00263{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);}
.mb9_c00263{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00263{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);}
.mc7_c00263{transform:matrix(0.155964,0.001404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155964,0.001404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155964,0.001404,-0.002250,0.249990,0,0);}
.meb_c00263{transform:matrix(0.156306,0.001719,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156306,0.001719,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156306,0.001719,-0.002750,0.249985,0,0);}
.ma0_c00263{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);}
.m108_c00263{transform:matrix(0.156791,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156791,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156791,0.001725,-0.002750,0.249985,0,0);}
.m37_c00263{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);}
.me_c00263{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);}
.mee_c00263{transform:matrix(0.157860,0.001736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157860,0.001736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157860,0.001736,-0.002750,0.249985,0,0);}
.m99_c00263{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.md5_c00263{transform:matrix(0.158749,0.001429,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158749,0.001429,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158749,0.001429,-0.002250,0.249990,0,0);}
.mf_c00263{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);}
.mf3_c00263{transform:matrix(0.159685,0.001757,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159685,0.001757,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159685,0.001757,-0.002750,0.249985,0,0);}
.m135_c00263{transform:matrix(0.160108,0.001921,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160108,0.001921,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160108,0.001921,-0.003000,0.249982,0,0);}
.mb2_c00263{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);}
.mc9_c00263{transform:matrix(0.160598,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160598,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160598,0.001445,-0.002250,0.249990,0,0);}
.mab_c00263{transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);}
.m71_c00263{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);}
.md7_c00263{transform:matrix(0.161468,0.001453,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161468,0.001453,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161468,0.001453,-0.002250,0.249990,0,0);}
.m9c_c00263{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);}
.m8b_c00263{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);}
.m143_c00263{transform:matrix(0.163638,0.001964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163638,0.001964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163638,0.001964,-0.003000,0.249982,0,0);}
.m6b_c00263{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);}
.m62_c00263{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);}
.md_c00263{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);}
.me8_c00263{transform:matrix(0.164545,0.001810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164545,0.001810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164545,0.001810,-0.002750,0.249985,0,0);}
.m101_c00263{transform:matrix(0.164565,0.001810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164565,0.001810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164565,0.001810,-0.002750,0.249985,0,0);}
.m140_c00263{transform:matrix(0.164578,0.001975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164578,0.001975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164578,0.001975,-0.003000,0.249982,0,0);}
.mc4_c00263{transform:matrix(0.164723,0.001483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164723,0.001483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164723,0.001483,-0.002250,0.249990,0,0);}
.m18_c00263{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);}
.m12_c00263{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);}
.mce_c00263{transform:matrix(0.168193,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168193,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168193,0.001514,-0.002250,0.249990,0,0);}
.m6e_c00263{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);}
.mb_c00263{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);}
.m3b_c00263{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);}
.md8_c00263{transform:matrix(0.170408,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170408,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170408,0.001534,-0.002250,0.249990,0,0);}
.mb3_c00263{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);}
.maa_c00263{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);}
.m118_c00263{transform:matrix(0.170868,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170868,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170868,0.002050,-0.003000,0.249982,0,0);}
.mf7_c00263{transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171065,0.001882,-0.002750,0.249985,0,0);}
.m29_c00263{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);}
.m1e_c00263{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);}
.mbe_c00263{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);}
.me6_c00263{transform:matrix(0.173360,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173360,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173360,0.001907,-0.002750,0.249985,0,0);}
.m119_c00263{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);}
.m48_c00263{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);}
.m45_c00263{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m58_c00263{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);}
.m106_c00263{transform:matrix(0.175704,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175704,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175704,0.001933,-0.002750,0.249985,0,0);}
.mc5_c00263{transform:matrix(0.175713,0.001581,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175713,0.001581,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175713,0.001581,-0.002250,0.249990,0,0);}
.m8_c00263{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);}
.m30_c00263{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);}
.m67_c00263{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);}
.ma7_c00263{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);}
.mbb_c00263{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);}
.m107_c00263{transform:matrix(0.177154,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177154,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177154,0.001949,-0.002750,0.249985,0,0);}
.m4c_c00263{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);}
.m3c_c00263{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);}
.mde_c00263{transform:matrix(0.179243,0.001613,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179243,0.001613,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179243,0.001613,-0.002250,0.249990,0,0);}
.m14b_c00263{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);}
.ma4_c00263{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);}
.mdd_c00263{transform:matrix(0.179643,0.001617,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179643,0.001617,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179643,0.001617,-0.002250,0.249990,0,0);}
.m28_c00263{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);}
.m72_c00263{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);}
.md2_c00263{transform:matrix(0.180433,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180433,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180433,0.001624,-0.002250,0.249990,0,0);}
.m8a_c00263{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);}
.m6c_c00263{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);}
.md4_c00263{transform:matrix(0.180953,0.001629,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180953,0.001629,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180953,0.001629,-0.002250,0.249990,0,0);}
.mf0_c00263{transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);}
.m2a_c00263{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);}
.mdc_c00263{transform:matrix(0.181488,0.001633,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181488,0.001633,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181488,0.001633,-0.002250,0.249990,0,0);}
.m34_c00263{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);}
.m1f_c00263{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);}
.md1_c00263{transform:matrix(0.182503,0.001643,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182503,0.001643,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182503,0.001643,-0.002250,0.249990,0,0);}
.m144_c00263{transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);}
.m105_c00263{transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);}
.mf9_c00263{transform:matrix(0.182999,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182999,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182999,0.002013,-0.002750,0.249985,0,0);}
.m9_c00263{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);}
.m4a_c00263{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);}
.md3_c00263{transform:matrix(0.183073,0.001648,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183073,0.001648,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183073,0.001648,-0.002250,0.249990,0,0);}
.m5a_c00263{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);}
.m61_c00263{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);}
.m65_c00263{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);}
.m10d_c00263{transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);}
.mcc_c00263{transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);}
.m14c_c00263{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);}
.m20_c00263{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);}
.mf1_c00263{transform:matrix(0.184734,0.002032,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184734,0.002032,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184734,0.002032,-0.002750,0.249985,0,0);}
.mc6_c00263{transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,0.001664,-0.002250,0.249990,0,0);}
.ma6_c00263{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);}
.m54_c00263{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);}
.m39_c00263{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);}
.m1a_c00263{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);}
.m11a_c00263{transform:matrix(0.185317,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185317,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185317,0.002224,-0.003000,0.249982,0,0);}
.me5_c00263{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);}
.m41_c00263{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);}
.mf2_c00263{transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);}
.mef_c00263{transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187034,0.002057,-0.002750,0.249985,0,0);}
.mf8_c00263{transform:matrix(0.187419,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187419,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187419,0.002062,-0.002750,0.249985,0,0);}
.m19_c00263{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);}
.mad_c00263{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);}
.m139_c00263{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);}
.mc_c00263{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);}
.m96_c00263{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);}
.m83_c00263{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);}
.m82_c00263{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);}
.me9_c00263{transform:matrix(0.189559,0.002085,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189559,0.002085,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189559,0.002085,-0.002750,0.249985,0,0);}
.m2c_c00263{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);}
.ma_c00263{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);}
.m85_c00263{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.maf_c00263{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);}
.mca_c00263{transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189972,0.001710,-0.002250,0.249990,0,0);}
.m4e_c00263{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);}
.m86_c00263{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);}
.m6a_c00263{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);}
.m57_c00263{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);}
.m27_c00263{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);}
.m84_c00263{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);}
.mb8_c00263{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);}
.m44_c00263{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);}
.m52_c00263{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);}
.m23_c00263{transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);}
.mf4_c00263{transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193208,0.002125,-0.002750,0.249985,0,0);}
.m112_c00263{transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);}
.m97_c00263{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);}
.mb4_c00263{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);}
.m114_c00263{transform:matrix(0.193431,0.002321,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193431,0.002321,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193431,0.002321,-0.003000,0.249982,0,0);}
.m5_c00263{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);}
.mfd_c00263{transform:matrix(0.193813,0.002132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193813,0.002132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193813,0.002132,-0.002750,0.249985,0,0);}
.me1_c00263{transform:matrix(0.193997,0.001746,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193997,0.001746,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193997,0.001746,-0.002250,0.249990,0,0);}
.mfc_c00263{transform:matrix(0.194048,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194048,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194048,0.002135,-0.002750,0.249985,0,0);}
.m31_c00263{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);}
.m55_c00263{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);}
.med_c00263{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);}
.m104_c00263{transform:matrix(0.195073,0.002146,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195073,0.002146,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195073,0.002146,-0.002750,0.249985,0,0);}
.mec_c00263{transform:matrix(0.195188,0.002147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195188,0.002147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195188,0.002147,-0.002750,0.249985,0,0);}
.ma5_c00263{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);}
.mbf_c00263{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);}
.m92_c00263{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);}
.m14d_c00263{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);}
.m2e_c00263{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);}
.m110_c00263{transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195811,0.002350,-0.003000,0.249982,0,0);}
.m7_c00263{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);}
.m66_c00263{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);}
.mba_c00263{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);}
.m11f_c00263{transform:matrix(0.196106,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196106,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196106,0.002353,-0.003000,0.249982,0,0);}
.m38_c00263{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);}
.mff_c00263{transform:matrix(0.196323,0.002160,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196323,0.002160,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196323,0.002160,-0.002750,0.249985,0,0);}
.m3e_c00263{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);}
.m13f_c00263{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);}
.mb1_c00263{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);}
.mbd_c00263{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);}
.mcb_c00263{transform:matrix(0.196987,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196987,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196987,0.001773,-0.002250,0.249990,0,0);}
.mc8_c00263{transform:matrix(0.197252,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197252,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197252,0.001775,-0.002250,0.249990,0,0);}
.m14f_c00263{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);}
.m91_c00263{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_c00263{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);}
.m8e_c00263{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_c00263{transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);}
.m14a_c00263{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);}
.mfa_c00263{transform:matrix(0.199183,0.002191,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199183,0.002191,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199183,0.002191,-0.002750,0.249985,0,0);}
.m76_c00263{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);}
.m7e_c00263{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m68_c00263{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);}
.mf6_c00263{transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199643,0.002196,-0.002750,0.249985,0,0);}
.m141_c00263{transform:matrix(0.199671,0.002396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199671,0.002396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199671,0.002396,-0.003000,0.249982,0,0);}
.m2d_c00263{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);}
.m9d_c00263{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);}
.m11c_c00263{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);}
.m14e_c00263{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);}
.m15_c00263{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);}
.m149_c00263{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);}
.m10_c00263{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);}
.md0_c00263{transform:matrix(0.202047,0.001818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202047,0.001818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202047,0.001818,-0.002250,0.249990,0,0);}
.m136_c00263{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);}
.m8f_c00263{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);}
.m10e_c00263{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);}
.m1c_c00263{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);}
.m53_c00263{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);}
.m133_c00263{transform:matrix(0.202985,0.002436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202985,0.002436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202985,0.002436,-0.003000,0.249982,0,0);}
.m78_c00263{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);}
.m5d_c00263{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);}
.mfe_c00263{transform:matrix(0.203828,0.002242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203828,0.002242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203828,0.002242,-0.002750,0.249985,0,0);}
.m79_c00263{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);}
.m40_c00263{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);}
.mbc_c00263{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);}
.m56_c00263{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);}
.me0_c00263{transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);}
.m25_c00263{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);}
.mdf_c00263{transform:matrix(0.205212,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205212,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205212,0.001847,-0.002250,0.249990,0,0);}
.m131_c00263{transform:matrix(0.205220,0.002463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205220,0.002463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205220,0.002463,-0.003000,0.249982,0,0);}
.m63_c00263{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);}
.m59_c00263{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);}
.m21_c00263{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);}
.m115_c00263{transform:matrix(0.205965,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205965,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205965,0.002472,-0.003000,0.249982,0,0);}
.m47_c00263{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);}
.m102_c00263{transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206458,0.002271,-0.002750,0.249985,0,0);}
.m6_c00263{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);}
.m60_c00263{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);}
.m4d_c00263{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);}
.m2b_c00263{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);}
.m10f_c00263{transform:matrix(0.207235,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207235,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207235,0.002487,-0.003000,0.249982,0,0);}
.m8c_c00263{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);}
.m121_c00263{transform:matrix(0.208035,0.002496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208035,0.002496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208035,0.002496,-0.003000,0.249982,0,0);}
.m49_c00263{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_c00263{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);}
.mf5_c00263{transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210177,0.002312,-0.002750,0.249985,0,0);}
.m80_c00263{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);}
.m9a_c00263{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);}
.m74_c00263{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);}
.m3a_c00263{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);}
.m9f_c00263{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);}
.m51_c00263{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);}
.m93_c00263{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);}
.m3f_c00263{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);}
.m13e_c00263{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);}
.m4b_c00263{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);}
.ma9_c00263{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);}
.m11d_c00263{transform:matrix(0.213455,0.002561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213455,0.002561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213455,0.002561,-0.003000,0.249982,0,0);}
.mac_c00263{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);}
.ma1_c00263{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);}
.m73_c00263{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);}
.mc3_c00263{transform:matrix(0.215096,0.001936,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215096,0.001936,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215096,0.001936,-0.002250,0.249990,0,0);}
.me4_c00263{transform:matrix(0.215317,0.002368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215317,0.002368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215317,0.002368,-0.002750,0.249985,0,0);}
.mb5_c00263{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);}
.m94_c00263{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);}
.m22_c00263{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);}
.m11b_c00263{transform:matrix(0.216564,0.002599,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216564,0.002599,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216564,0.002599,-0.003000,0.249982,0,0);}
.m88_c00263{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);}
.mb0_c00263{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.m147_c00263{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);}
.ma2_c00263{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);}
.m69_c00263{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);}
.mea_c00263{transform:matrix(0.219367,0.002413,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219367,0.002413,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219367,0.002413,-0.002750,0.249985,0,0);}
.m70_c00263{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);}
.m113_c00263{transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);}
.m16_c00263{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);}
.m64_c00263{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);}
.m123_c00263{transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);}
.m5f_c00263{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);}
.m35_c00263{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m13c_c00263{transform:matrix(0.224214,0.002691,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224214,0.002691,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224214,0.002691,-0.003000,0.249982,0,0);}
.m13_c00263{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);}
.m9e_c00263{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);}
.m142_c00263{transform:matrix(0.225569,0.002707,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225569,0.002707,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225569,0.002707,-0.003000,0.249982,0,0);}
.mb7_c00263{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00263{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);}
.ma3_c00263{transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);}
.m7a_c00263{transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);}
.m75_c00263{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);}
.m5b_c00263{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);}
.m77_c00263{transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236665,0.000000,0.000000,0.250000,0,0);}
.me7_c00263{transform:matrix(0.237351,0.002611,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237351,0.002611,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237351,0.002611,-0.002750,0.249985,0,0);}
.m26_c00263{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);}
.m95_c00263{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);}
.m116_c00263{transform:matrix(0.239288,0.002871,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239288,0.002871,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239288,0.002871,-0.003000,0.249982,0,0);}
.mdb_c00263{transform:matrix(0.241275,0.002171,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241275,0.002171,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241275,0.002171,-0.002250,0.249990,0,0);}
.m32_c00263{transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);}
.mc0_c00263{transform:matrix(0.242210,0.002180,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242210,0.002180,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242210,0.002180,-0.002250,0.249990,0,0);}
.m130_c00263{transform:matrix(0.243162,0.002918,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243162,0.002918,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243162,0.002918,-0.003000,0.249982,0,0);}
.m90_c00263{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);}
.m7f_c00263{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.247418,-0.007925,0.008004,0.249872,0,0);-ms-transform:matrix(0.247418,-0.007925,0.008004,0.249872,0,0);-webkit-transform:matrix(0.247418,-0.007925,0.008004,0.249872,0,0);}
.m13d_c00263{transform:matrix(0.247457,0.002969,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247457,0.002969,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247457,0.002969,-0.003000,0.249982,0,0);}
.m24_c00263{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m7c_c00263{transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);}
.m109_c00263{transform:matrix(0.259011,0.003108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259011,0.003108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259011,0.003108,-0.003000,0.249982,0,0);}
.m87_c00263{transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259310,0.000000,0.000000,0.250000,0,0);}
.m7d_c00263{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);}
.m120_c00263{transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);}
.m11e_c00263{transform:matrix(0.268516,0.003222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268516,0.003222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268516,0.003222,-0.003000,0.249982,0,0);}
.m132_c00263{transform:matrix(0.270071,0.003241,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270071,0.003241,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270071,0.003241,-0.003000,0.249982,0,0);}
.md6_c00263{transform:matrix(0.288343,0.002595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288343,0.002595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288343,0.002595,-0.002250,0.249990,0,0);}
.m8d_c00263{transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288610,0.000000,0.000000,0.250000,0,0);}
.m122_c00263{transform:matrix(0.291654,0.003500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291654,0.003500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291654,0.003500,-0.003000,0.249982,0,0);}
.m42_c00263{transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293095,0.000000,0.000000,0.250000,0,0);}
.m13a_c00263{transform:matrix(0.303548,0.003643,-0.003000,0.249982,0,0);-ms-transform:matrix(0.303548,0.003643,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.303548,0.003643,-0.003000,0.249982,0,0);}
.m0_c00263{transform:matrix(0.304049,-0.009739,0.008004,0.249872,0,0);-ms-transform:matrix(0.304049,-0.009739,0.008004,0.249872,0,0);-webkit-transform:matrix(0.304049,-0.009739,0.008004,0.249872,0,0);}
.mc2_c00263{transform:matrix(0.304138,0.002737,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304138,0.002737,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304138,0.002737,-0.002250,0.249990,0,0);}
.m10b_c00263{transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);}
.m50_c00263{transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);}
.m9b_c00263{transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);}
.m103_c00263{transform:matrix(0.326425,0.003591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326425,0.003591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326425,0.003591,-0.002750,0.249985,0,0);}
.m33_c00263{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);}
.m46_c00263{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.345563,-0.011069,0.008004,0.249872,0,0);-ms-transform:matrix(0.345563,-0.011069,0.008004,0.249872,0,0);-webkit-transform:matrix(0.345563,-0.011069,0.008004,0.249872,0,0);}
.m146_c00263{transform:matrix(0.360694,0.004328,-0.003000,0.249982,0,0);-ms-transform:matrix(0.360694,0.004328,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.360694,0.004328,-0.003000,0.249982,0,0);}
.m127_c00263{transform:matrix(0.362624,0.004351,-0.003000,0.249982,0,0);-ms-transform:matrix(0.362624,0.004351,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.362624,0.004351,-0.003000,0.249982,0,0);}
.mc1_c00263{transform:matrix(0.380095,0.003421,-0.002250,0.249990,0,0);-ms-transform:matrix(0.380095,0.003421,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.380095,0.003421,-0.002250,0.249990,0,0);}
.m13b_c00263{transform:matrix(0.400661,0.004808,-0.003000,0.249982,0,0);-ms-transform:matrix(0.400661,0.004808,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.400661,0.004808,-0.003000,0.249982,0,0);}
.m150_c00263{transform:matrix(0.432255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432255,0.000000,0.000000,0.250000,0,0);}
.m129_c00263{transform:matrix(0.453007,0.005436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.453007,0.005436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.453007,0.005436,-0.003000,0.249982,0,0);}
.m148_c00263{transform:matrix(0.456875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456875,0.000000,0.000000,0.250000,0,0);}
.mda_c00263{transform:matrix(0.471221,0.004241,-0.002250,0.249990,0,0);-ms-transform:matrix(0.471221,0.004241,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.471221,0.004241,-0.002250,0.249990,0,0);}
.m12e_c00263{transform:matrix(0.481725,0.005781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.481725,0.005781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.481725,0.005781,-0.003000,0.249982,0,0);}
.mcd_c00263{transform:matrix(0.503220,0.004529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.503220,0.004529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.503220,0.004529,-0.002250,0.249990,0,0);}
.m1_c00263{transform:matrix(0.510548,-0.016354,0.008004,0.249872,0,0);-ms-transform:matrix(0.510548,-0.016354,0.008004,0.249872,0,0);-webkit-transform:matrix(0.510548,-0.016354,0.008004,0.249872,0,0);}
.m6d_c00263{transform:matrix(0.611010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611010,0.000000,0.000000,0.250000,0,0);}
.m124_c00263{transform:matrix(0.640154,0.007682,-0.003000,0.249982,0,0);-ms-transform:matrix(0.640154,0.007682,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.640154,0.007682,-0.003000,0.249982,0,0);}
.m138_c00263{transform:matrix(0.641769,0.007701,-0.003000,0.249982,0,0);-ms-transform:matrix(0.641769,0.007701,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.641769,0.007701,-0.003000,0.249982,0,0);}
.m117_c00263{transform:matrix(0.652058,0.007825,-0.003000,0.249982,0,0);-ms-transform:matrix(0.652058,0.007825,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.652058,0.007825,-0.003000,0.249982,0,0);}
.m12b_c00263{transform:matrix(0.689360,0.008272,-0.003000,0.249982,0,0);-ms-transform:matrix(0.689360,0.008272,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.689360,0.008272,-0.003000,0.249982,0,0);}
.m137_c00263{transform:matrix(0.794283,0.009531,-0.003000,0.249982,0,0);-ms-transform:matrix(0.794283,0.009531,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.794283,0.009531,-0.003000,0.249982,0,0);}
.m12f_c00263{transform:matrix(0.852279,0.010227,-0.003000,0.249982,0,0);-ms-transform:matrix(0.852279,0.010227,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.852279,0.010227,-0.003000,0.249982,0,0);}
.me2_c00263{transform:matrix(0.988710,0.008898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.988710,0.008898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.988710,0.008898,-0.002250,0.249990,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;}
._0_c00263{width:49.896886px;}
.fc0_c00263{color:transparent;}
.fsb_c00263{font-size:16.800680px;}
.fs11_c00263{font-size:26.251890px;}
.fse_c00263{font-size:31.502268px;}
.fs12_c00263{font-size:50.403629px;}
.fs15_c00263{font-size:52.500000px;}
.fs14_c00263{font-size:52.503780px;}
.fs13_c00263{font-size:53.553855px;}
.fs10_c00263{font-size:64.054611px;}
.fs8_c00263{font-size:65.100000px;}
.fs5_c00263{font-size:67.200000px;}
.fs4_c00263{font-size:68.250000px;}
.fsc_c00263{font-size:68.254129px;}
.fsf_c00263{font-size:68.254914px;}
.fs6_c00263{font-size:69.300000px;}
.fs7_c00263{font-size:70.350000px;}
.fs9_c00263{font-size:70.352849px;}
.fs3_c00263{font-size:71.400000px;}
.fs2_c00263{font-size:72.450000px;}
.fsd_c00263{font-size:72.454383px;}
.fsa_c00263{font-size:76.653104px;}
.fs1_c00263{font-size:123.839584px;}
.fs16_c00263{font-size:173.250000px;}
.fs0_c00263{font-size:177.363472px;}
.y0_c00263{bottom:0.000000px;}
.yb6_c00263{bottom:99.730500px;}
.yb5_c00263{bottom:161.050500px;}
.yb3_c00263{bottom:176.899068px;}
.yb4_c00263{bottom:176.921490px;}
.yb2_c00263{bottom:177.270000px;}
.yb1_c00263{bottom:177.596346px;}
.yb0_c00263{bottom:177.872112px;}
.yaf_c00263{bottom:178.404144px;}
.yae_c00263{bottom:178.606230px;}
.yad_c00263{bottom:178.867152px;}
.yac_c00263{bottom:179.200446px;}
.yab_c00263{bottom:179.432256px;}
.yaa_c00263{bottom:180.077394px;}
.ya9_c00263{bottom:192.552108px;}
.ya8_c00263{bottom:192.809250px;}
.ya7_c00263{bottom:193.097778px;}
.ya6_c00263{bottom:193.552254px;}
.ya5_c00263{bottom:193.967400px;}
.ya4_c00263{bottom:194.731302px;}
.ya3_c00263{bottom:194.909160px;}
.ya2_c00263{bottom:195.016068px;}
.ya1_c00263{bottom:195.823140px;}
.ya0_c00263{bottom:196.670550px;}
.y9f_c00263{bottom:197.087568px;}
.y9e_c00263{bottom:197.306130px;}
.y9d_c00263{bottom:197.902428px;}
.y9c_c00263{bottom:215.465910px;}
.y9b_c00263{bottom:215.708460px;}
.y9a_c00263{bottom:217.086522px;}
.y99_c00263{bottom:220.312410px;}
.y98_c00263{bottom:231.743754px;}
.y97_c00263{bottom:234.795054px;}
.y96_c00263{bottom:236.471484px;}
.y95_c00263{bottom:237.284028px;}
.y94_c00263{bottom:238.369554px;}
.y93_c00263{bottom:242.908782px;}
.y92_c00263{bottom:245.966052px;}
.y91_c00263{bottom:248.604618px;}
.y90_c00263{bottom:248.993112px;}
.y8f_c00263{bottom:249.530916px;}
.y8e_c00263{bottom:250.250844px;}
.y8d_c00263{bottom:250.606290px;}
.y8c_c00263{bottom:250.872564px;}
.y8b_c00263{bottom:251.676102px;}
.y8a_c00263{bottom:252.070806px;}
.y89_c00263{bottom:252.557508px;}
.y88_c00263{bottom:252.709770px;}
.y87_c00263{bottom:252.943032px;}
.y86_c00263{bottom:253.762896px;}
.y85_c00263{bottom:254.337150px;}
.y84_c00263{bottom:271.875474px;}
.y83_c00263{bottom:272.410530px;}
.y82_c00263{bottom:272.661846px;}
.y81_c00263{bottom:273.631614px;}
.y80_c00263{bottom:273.909906px;}
.y7f_c00263{bottom:274.248000px;}
.y7e_c00263{bottom:274.558506px;}
.y7d_c00263{bottom:275.342646px;}
.y7c_c00263{bottom:275.718042px;}
.y7b_c00263{bottom:276.093402px;}
.y7a_c00263{bottom:276.484716px;}
.y79_c00263{bottom:277.020384px;}
.y78_c00263{bottom:287.403450px;}
.y77_c00263{bottom:293.761500px;}
.y76_c00263{bottom:294.447584px;}
.y75_c00263{bottom:294.965756px;}
.y74_c00263{bottom:295.218927px;}
.y73_c00263{bottom:295.707980px;}
.y72_c00263{bottom:296.229683px;}
.y71_c00263{bottom:296.657162px;}
.y70_c00263{bottom:296.778575px;}
.y6f_c00263{bottom:297.244396px;}
.y6e_c00263{bottom:297.545942px;}
.y6d_c00263{bottom:297.961179px;}
.y6c_c00263{bottom:298.255499px;}
.y6b_c00263{bottom:299.055105px;}
.y6a_c00263{bottom:299.417762px;}
.y69_c00263{bottom:299.969162px;}
.y68_c00263{bottom:316.622513px;}
.y67_c00263{bottom:317.340119px;}
.y66_c00263{bottom:317.624898px;}
.y65_c00263{bottom:318.210954px;}
.y64_c00263{bottom:318.628967px;}
.y63_c00263{bottom:319.548156px;}
.y62_c00263{bottom:319.792880px;}
.y61_c00263{bottom:320.973026px;}
.y60_c00263{bottom:321.298670px;}
.y5f_c00263{bottom:321.744216px;}
.y5e_c00263{bottom:322.555545px;}
.y5d_c00263{bottom:323.190136px;}
.y5c_c00263{bottom:340.798812px;}
.y5b_c00263{bottom:341.048177px;}
.y5a_c00263{bottom:341.487836px;}
.y59_c00263{bottom:342.093386px;}
.y58_c00263{bottom:342.375915px;}
.y57_c00263{bottom:342.842172px;}
.y56_c00263{bottom:343.282095px;}
.y55_c00263{bottom:343.706426px;}
.y54_c00263{bottom:343.977042px;}
.y53_c00263{bottom:344.395598px;}
.y52_c00263{bottom:344.724723px;}
.y51_c00263{bottom:345.601500px;}
.y50_c00263{bottom:360.386967px;}
.y4f_c00263{bottom:360.387579px;}
.y4e_c00263{bottom:364.038017px;}
.y4d_c00263{bottom:364.450665px;}
.y4c_c00263{bottom:365.145353px;}
.y4b_c00263{bottom:365.935827px;}
.y4a_c00263{bottom:366.232274px;}
.y49_c00263{bottom:366.556157px;}
.y48_c00263{bottom:366.787791px;}
.y47_c00263{bottom:367.025570px;}
.y46_c00263{bottom:367.411740px;}
.y45_c00263{bottom:368.045006px;}
.y44_c00263{bottom:368.558477px;}
.y43_c00263{bottom:369.091635px;}
.y42_c00263{bottom:387.173163px;}
.y41_c00263{bottom:387.651414px;}
.y40_c00263{bottom:388.657812px;}
.y3f_c00263{bottom:388.866725px;}
.y3e_c00263{bottom:389.634726px;}
.y3d_c00263{bottom:390.507123px;}
.y3c_c00263{bottom:390.767147px;}
.y3b_c00263{bottom:391.330866px;}
.y3a_c00263{bottom:391.770980px;}
.y39_c00263{bottom:410.003624px;}
.y38_c00263{bottom:410.688938px;}
.y37_c00263{bottom:411.099608px;}
.y36_c00263{bottom:411.420354px;}
.y35_c00263{bottom:412.348708px;}
.y34_c00263{bottom:412.523615px;}
.y33_c00263{bottom:412.735078px;}
.y32_c00263{bottom:413.094746px;}
.y31_c00263{bottom:413.257501px;}
.y30_c00263{bottom:413.658546px;}
.y2f_c00263{bottom:414.105950px;}
.y2e_c00263{bottom:414.267855px;}
.y2d_c00263{bottom:414.460500px;}
.y2c_c00263{bottom:434.052000px;}
.y2b_c00263{bottom:434.379000px;}
.y2a_c00263{bottom:434.529000px;}
.y29_c00263{bottom:434.694000px;}
.y28_c00263{bottom:435.379500px;}
.y27_c00263{bottom:435.594000px;}
.y26_c00263{bottom:435.780000px;}
.y25_c00263{bottom:436.090500px;}
.y24_c00263{bottom:436.746000px;}
.y23_c00263{bottom:436.927500px;}
.y22_c00263{bottom:437.130000px;}
.y21_c00263{bottom:458.653500px;}
.y20_c00263{bottom:481.060500px;}
.y1f_c00263{bottom:502.875000px;}
.y1e_c00263{bottom:503.209500px;}
.y1d_c00263{bottom:503.304000px;}
.y1c_c00263{bottom:503.779500px;}
.y1b_c00263{bottom:504.040500px;}
.y1a_c00263{bottom:504.157500px;}
.y19_c00263{bottom:504.429000px;}
.y18_c00263{bottom:504.697500px;}
.y17_c00263{bottom:504.877500px;}
.y16_c00263{bottom:505.161000px;}
.y15_c00263{bottom:505.459500px;}
.y14_c00263{bottom:505.980000px;}
.y13_c00263{bottom:526.692000px;}
.y12_c00263{bottom:549.876000px;}
.y11_c00263{bottom:572.641500px;}
.y10_c00263{bottom:595.699500px;}
.yf_c00263{bottom:618.462000px;}
.ye_c00263{bottom:641.412000px;}
.yd_c00263{bottom:664.359000px;}
.yc_c00263{bottom:687.241500px;}
.yb_c00263{bottom:710.232000px;}
.ya_c00263{bottom:733.419000px;}
.y9_c00263{bottom:756.598500px;}
.y8_c00263{bottom:779.556000px;}
.y7_c00263{bottom:802.302000px;}
.y6_c00263{bottom:825.963000px;}
.y3_c00263{bottom:862.973244px;}
.y4_c00263{bottom:864.104505px;}
.y5_c00263{bottom:866.927401px;}
.y1_c00263{bottom:908.869500px;}
.y2_c00263{bottom:923.661708px;}
.hd_c00263{height:16.800680px;}
.h13_c00263{height:26.251890px;}
.h10_c00263{height:31.502268px;}
.h14_c00263{height:50.403629px;}
.h17_c00263{height:52.500000px;}
.h16_c00263{height:52.503780px;}
.h15_c00263{height:53.553855px;}
.h12_c00263{height:64.054611px;}
.ha_c00263{height:65.100000px;}
.h7_c00263{height:67.200000px;}
.h6_c00263{height:68.250000px;}
.he_c00263{height:68.254129px;}
.h11_c00263{height:68.254914px;}
.h8_c00263{height:69.300000px;}
.h9_c00263{height:70.350000px;}
.hb_c00263{height:70.352849px;}
.h5_c00263{height:71.400000px;}
.h4_c00263{height:72.450000px;}
.hf_c00263{height:72.454383px;}
.hc_c00263{height:76.653104px;}
.h3_c00263{height:123.839584px;}
.h18_c00263{height:173.250000px;}
.h2_c00263{height:177.363472px;}
.h0_c00263{height:1008.450000px;}
.h1_c00263{height:1008.750000px;}
.w0_c00263{width:678.450000px;}
.w1_c00263{width:678.750000px;}
.x0_c00263{left:0.000000px;}
.xba_c00263{left:67.770000px;}
.x1_c00263{left:72.555000px;}
.x79_c00263{left:84.114000px;}
.x9d_c00263{left:85.239000px;}
.x8d_c00263{left:86.396568px;}
.x88_c00263{left:89.691165px;}
.xa3_c00263{left:92.379504px;}
.xb5_c00263{left:93.801720px;}
.x3_c00263{left:96.309708px;}
.xb7_c00263{left:102.330000px;}
.x7a_c00263{left:105.519000px;}
.x7b_c00263{left:123.508500px;}
.x39_c00263{left:133.380000px;}
.x4_c00263{left:135.278947px;}
.xd_c00263{left:136.620000px;}
.x5f_c00263{left:138.780000px;}
.xa4_c00263{left:140.234004px;}
.xb1_c00263{left:151.913802px;}
.x58_c00263{left:153.900000px;}
.x3a_c00263{left:157.950000px;}
.x6b_c00263{left:164.431500px;}
.x73_c00263{left:166.770000px;}
.x18_c00263{left:169.020000px;}
.xe_c00263{left:174.150000px;}
.x32_c00263{left:178.200000px;}
.x6_c00263{left:179.550000px;}
.x22_c00263{left:183.060000px;}
.x89_c00263{left:184.814950px;}
.x19_c00263{left:186.300000px;}
.x90_c00263{left:188.292033px;}
.x3b_c00263{left:189.540000px;}
.x74_c00263{left:192.679500px;}
.x4b_c00263{left:194.670000px;}
.x81_c00263{left:196.171353px;}
.x43_c00263{left:199.800000px;}
.x2a_c00263{left:204.660000px;}
.xa5_c00263{left:208.556004px;}
.x66_c00263{left:210.511500px;}
.x6e_c00263{left:214.111500px;}
.xf_c00263{left:216.000000px;}
.x7c_c00263{left:217.780500px;}
.x3c_c00263{left:221.670000px;}
.x82_c00263{left:225.062853px;}
.xa6_c00263{left:227.994504px;}
.xb8_c00263{left:229.770000px;}
.x5_c00263{left:232.537960px;}
.x59_c00263{left:233.550000px;}
.x7d_c00263{left:235.864500px;}
.x33_c00263{left:240.300000px;}
.x23_c00263{left:243.000000px;}
.x3d_c00263{left:245.430000px;}
.x1a_c00263{left:248.400000px;}
.x91_c00263{left:250.729664px;}
.x53_c00263{left:253.800000px;}
.x44_c00263{left:261.630000px;}
.x1b_c00263{left:262.710000px;}
.x4c_c00263{left:267.570000px;}
.xb9_c00263{left:271.350000px;}
.x10_c00263{left:274.590000px;}
.x7e_c00263{left:275.827500px;}
.x60_c00263{left:277.020000px;}
.x45_c00263{left:280.260000px;}
.x24_c00263{left:281.610000px;}
.x92_c00263{left:284.960405px;}
.x75_c00263{left:286.414500px;}
.x1c_c00263{left:288.360000px;}
.x5a_c00263{left:291.060000px;}
.x11_c00263{left:292.680000px;}
.x4d_c00263{left:293.760000px;}
.x2b_c00263{left:299.430000px;}
.x46_c00263{left:302.400000px;}
.x34_c00263{left:305.370000px;}
.x97_c00263{left:306.841871px;}
.x3e_c00263{left:308.070000px;}
.x1d_c00263{left:309.420000px;}
.x8e_c00263{left:310.914000px;}
.xa7_c00263{left:314.133504px;}
.x5b_c00263{left:315.360000px;}
.x7_c00263{left:316.980000px;}
.x67_c00263{left:319.320000px;}
.x83_c00263{left:321.995853px;}
.x4e_c00263{left:331.020000px;}
.x6f_c00263{left:332.641500px;}
.x25_c00263{left:336.150000px;}
.x12_c00263{left:340.470000px;}
.x4f_c00263{left:344.520000px;}
.x2c_c00263{left:348.300000px;}
.x8a_c00263{left:349.559980px;}
.x47_c00263{left:355.050000px;}
.x68_c00263{left:357.658500px;}
.x8_c00263{left:359.640000px;}
.x13_c00263{left:361.530000px;}
.x9f_c00263{left:363.294906px;}
.x98_c00263{left:366.548711px;}
.xab_c00263{left:368.485674px;}
.x35_c00263{left:371.520000px;}
.x50_c00263{left:374.490000px;}
.x8b_c00263{left:376.497994px;}
.xa8_c00263{left:381.095004px;}
.xb6_c00263{left:382.790694px;}
.x61_c00263{left:386.910000px;}
.x8f_c00263{left:389.482500px;}
.x14_c00263{left:391.230000px;}
.x3f_c00263{left:396.090000px;}
.xa0_c00263{left:397.095216px;}
.x9_c00263{left:399.060000px;}
.x93_c00263{left:400.847864px;}
.xa9_c00263{left:403.284504px;}
.x99_c00263{left:405.350282px;}
.x84_c00263{left:407.329353px;}
.x36_c00263{left:409.590000px;}
.x5c_c00263{left:410.940000px;}
.x1e_c00263{left:413.910000px;}
.x9a_c00263{left:415.433166px;}
.x26_c00263{left:416.610000px;}
.x70_c00263{left:419.581500px;}
.x40_c00263{left:422.550000px;}
.xa1_c00263{left:424.911882px;}
.x85_c00263{left:430.541853px;}
.x2d_c00263{left:432.270000px;}
.x6c_c00263{left:434.431500px;}
.xa_c00263{left:435.510000px;}
.xac_c00263{left:438.770520px;}
.x1f_c00263{left:441.990000px;}
.xae_c00263{left:444.702288px;}
.x54_c00263{left:447.930000px;}
.x69_c00263{left:450.546000px;}
.x15_c00263{left:451.980000px;}
.x27_c00263{left:453.330000px;}
.x7f_c00263{left:457.546500px;}
.x62_c00263{left:460.620000px;}
.x5d_c00263{left:462.780000px;}
.x48_c00263{left:465.480000px;}
.x64_c00263{left:467.370000px;}
.xb_c00263{left:468.450000px;}
.x55_c00263{left:469.530000px;}
.x6d_c00263{left:471.961500px;}
.x51_c00263{left:478.710000px;}
.x2e_c00263{left:483.030000px;}
.x76_c00263{left:485.920500px;}
.x5e_c00263{left:488.430000px;}
.x94_c00263{left:490.428900px;}
.x71_c00263{left:493.291500px;}
.x20_c00263{left:495.180000px;}
.x37_c00263{left:501.390000px;}
.x80_c00263{left:503.176500px;}
.x52_c00263{left:504.360000px;}
.x28_c00263{left:508.950000px;}
.x2f_c00263{left:511.650000px;}
.x16_c00263{left:517.320000px;}
.x49_c00263{left:518.940000px;}
.x95_c00263{left:522.565691px;}
.xb2_c00263{left:527.120784px;}
.x77_c00263{left:530.740500px;}
.x30_c00263{left:532.980000px;}
.x2_c00263{left:534.349243px;}
.x38_c00263{left:535.410000px;}
.xaa_c00263{left:537.716004px;}
.x41_c00263{left:540.810000px;}
.x86_c00263{left:542.363853px;}
.x65_c00263{left:545.670000px;}
.xa2_c00263{left:546.921798px;}
.x8c_c00263{left:549.029389px;}
.x57_c00263{left:552.420000px;}
.x29_c00263{left:553.770000px;}
.x56_c00263{left:555.120000px;}
.x9b_c00263{left:556.377615px;}
.x17_c00263{left:558.090000px;}
.x4a_c00263{left:565.110000px;}
.x31_c00263{left:568.620000px;}
.x42_c00263{left:570.510000px;}
.xb3_c00263{left:572.619882px;}
.xc_c00263{left:576.180000px;}
.x78_c00263{left:577.422000px;}
.x6a_c00263{left:579.904500px;}
.x72_c00263{left:582.661500px;}
.x21_c00263{left:590.490000px;}
.x87_c00263{left:595.502853px;}
.xaf_c00263{left:597.796296px;}
.x9c_c00263{left:599.529137px;}
.x63_c00263{left:601.830000px;}
.xad_c00263{left:613.841502px;}
.x9e_c00263{left:615.076500px;}
.xb0_c00263{left:624.759768px;}
.xb4_c00263{left:627.093678px;}
.x96_c00263{left:644.739501px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
._0_c00263{width:44.352787pt;}
.fsb_c00263{font-size:14.933938pt;}
.fs11_c00263{font-size:23.335013pt;}
.fse_c00263{font-size:28.002016pt;}
.fs12_c00263{font-size:44.803225pt;}
.fs15_c00263{font-size:46.666667pt;}
.fs14_c00263{font-size:46.670027pt;}
.fs13_c00263{font-size:47.603427pt;}
.fs10_c00263{font-size:56.937432pt;}
.fs8_c00263{font-size:57.866667pt;}
.fs5_c00263{font-size:59.733333pt;}
.fs4_c00263{font-size:60.666667pt;}
.fsc_c00263{font-size:60.670337pt;}
.fsf_c00263{font-size:60.671035pt;}
.fs6_c00263{font-size:61.600000pt;}
.fs7_c00263{font-size:62.533333pt;}
.fs9_c00263{font-size:62.535866pt;}
.fs3_c00263{font-size:63.466667pt;}
.fs2_c00263{font-size:64.400000pt;}
.fsd_c00263{font-size:64.403896pt;}
.fsa_c00263{font-size:68.136093pt;}
.fs1_c00263{font-size:110.079630pt;}
.fs16_c00263{font-size:154.000000pt;}
.fs0_c00263{font-size:157.656420pt;}
.y0_c00263{bottom:0.000000pt;}
.yb6_c00263{bottom:88.649333pt;}
.yb5_c00263{bottom:143.156000pt;}
.yb3_c00263{bottom:157.243616pt;}
.yb4_c00263{bottom:157.263547pt;}
.yb2_c00263{bottom:157.573333pt;}
.yb1_c00263{bottom:157.863419pt;}
.yb0_c00263{bottom:158.108544pt;}
.yaf_c00263{bottom:158.581461pt;}
.yae_c00263{bottom:158.761093pt;}
.yad_c00263{bottom:158.993024pt;}
.yac_c00263{bottom:159.289285pt;}
.yab_c00263{bottom:159.495339pt;}
.yaa_c00263{bottom:160.068795pt;}
.ya9_c00263{bottom:171.157429pt;}
.ya8_c00263{bottom:171.386000pt;}
.ya7_c00263{bottom:171.642469pt;}
.ya6_c00263{bottom:172.046448pt;}
.ya5_c00263{bottom:172.415467pt;}
.ya4_c00263{bottom:173.094491pt;}
.ya3_c00263{bottom:173.252587pt;}
.ya2_c00263{bottom:173.347616pt;}
.ya1_c00263{bottom:174.065013pt;}
.ya0_c00263{bottom:174.818267pt;}
.y9f_c00263{bottom:175.188949pt;}
.y9e_c00263{bottom:175.383227pt;}
.y9d_c00263{bottom:175.913269pt;}
.y9c_c00263{bottom:191.525253pt;}
.y9b_c00263{bottom:191.740853pt;}
.y9a_c00263{bottom:192.965797pt;}
.y99_c00263{bottom:195.833253pt;}
.y98_c00263{bottom:205.994448pt;}
.y97_c00263{bottom:208.706715pt;}
.y96_c00263{bottom:210.196875pt;}
.y95_c00263{bottom:210.919136pt;}
.y94_c00263{bottom:211.884048pt;}
.y93_c00263{bottom:215.918917pt;}
.y92_c00263{bottom:218.636491pt;}
.y91_c00263{bottom:220.981883pt;}
.y90_c00263{bottom:221.327211pt;}
.y8f_c00263{bottom:221.805259pt;}
.y8e_c00263{bottom:222.445195pt;}
.y8d_c00263{bottom:222.761147pt;}
.y8c_c00263{bottom:222.997835pt;}
.y8b_c00263{bottom:223.712091pt;}
.y8a_c00263{bottom:224.062939pt;}
.y89_c00263{bottom:224.495563pt;}
.y88_c00263{bottom:224.630907pt;}
.y87_c00263{bottom:224.838251pt;}
.y86_c00263{bottom:225.567019pt;}
.y85_c00263{bottom:226.077467pt;}
.y84_c00263{bottom:241.667088pt;}
.y83_c00263{bottom:242.142693pt;}
.y82_c00263{bottom:242.366085pt;}
.y81_c00263{bottom:243.228101pt;}
.y80_c00263{bottom:243.475472pt;}
.y7f_c00263{bottom:243.776000pt;}
.y7e_c00263{bottom:244.052005pt;}
.y7d_c00263{bottom:244.749019pt;}
.y7c_c00263{bottom:245.082704pt;}
.y7b_c00263{bottom:245.416357pt;}
.y7a_c00263{bottom:245.764192pt;}
.y79_c00263{bottom:246.240341pt;}
.y78_c00263{bottom:255.469733pt;}
.y77_c00263{bottom:261.121333pt;}
.y76_c00263{bottom:261.731185pt;}
.y75_c00263{bottom:262.191783pt;}
.y74_c00263{bottom:262.416824pt;}
.y73_c00263{bottom:262.851537pt;}
.y72_c00263{bottom:263.315273pt;}
.y71_c00263{bottom:263.695255pt;}
.y70_c00263{bottom:263.803177pt;}
.y6f_c00263{bottom:264.217241pt;}
.y6e_c00263{bottom:264.485281pt;}
.y6d_c00263{bottom:264.854381pt;}
.y6c_c00263{bottom:265.115999pt;}
.y6b_c00263{bottom:265.826760pt;}
.y6a_c00263{bottom:266.149121pt;}
.y69_c00263{bottom:266.639255pt;}
.y68_c00263{bottom:281.442233pt;}
.y67_c00263{bottom:282.080105pt;}
.y66_c00263{bottom:282.333243pt;}
.y65_c00263{bottom:282.854181pt;}
.y64_c00263{bottom:283.225748pt;}
.y63_c00263{bottom:284.042805pt;}
.y62_c00263{bottom:284.260337pt;}
.y61_c00263{bottom:285.309356pt;}
.y60_c00263{bottom:285.598817pt;}
.y5f_c00263{bottom:285.994859pt;}
.y5e_c00263{bottom:286.716040pt;}
.y5d_c00263{bottom:287.280121pt;}
.y5c_c00263{bottom:302.932277pt;}
.y5b_c00263{bottom:303.153935pt;}
.y5a_c00263{bottom:303.544743pt;}
.y59_c00263{bottom:304.083009pt;}
.y58_c00263{bottom:304.334147pt;}
.y57_c00263{bottom:304.748597pt;}
.y56_c00263{bottom:305.139640pt;}
.y55_c00263{bottom:305.516823pt;}
.y54_c00263{bottom:305.757371pt;}
.y53_c00263{bottom:306.129420pt;}
.y52_c00263{bottom:306.421976pt;}
.y51_c00263{bottom:307.201333pt;}
.y50_c00263{bottom:320.343971pt;}
.y4f_c00263{bottom:320.344515pt;}
.y4e_c00263{bottom:323.589348pt;}
.y4d_c00263{bottom:323.956147pt;}
.y4c_c00263{bottom:324.573647pt;}
.y4b_c00263{bottom:325.276291pt;}
.y4a_c00263{bottom:325.539799pt;}
.y49_c00263{bottom:325.827695pt;}
.y48_c00263{bottom:326.033592pt;}
.y47_c00263{bottom:326.244951pt;}
.y46_c00263{bottom:326.588213pt;}
.y45_c00263{bottom:327.151116pt;}
.y44_c00263{bottom:327.607535pt;}
.y43_c00263{bottom:328.081453pt;}
.y42_c00263{bottom:344.153923pt;}
.y41_c00263{bottom:344.579035pt;}
.y40_c00263{bottom:345.473611pt;}
.y3f_c00263{bottom:345.659311pt;}
.y3e_c00263{bottom:346.341979pt;}
.y3d_c00263{bottom:347.117443pt;}
.y3c_c00263{bottom:347.348575pt;}
.y3b_c00263{bottom:347.849659pt;}
.y3a_c00263{bottom:348.240871pt;}
.y39_c00263{bottom:364.447665pt;}
.y38_c00263{bottom:365.056833pt;}
.y37_c00263{bottom:365.421873pt;}
.y36_c00263{bottom:365.706981pt;}
.y35_c00263{bottom:366.532185pt;}
.y34_c00263{bottom:366.687657pt;}
.y33_c00263{bottom:366.875625pt;}
.y32_c00263{bottom:367.195329pt;}
.y31_c00263{bottom:367.340001pt;}
.y30_c00263{bottom:367.696485pt;}
.y2f_c00263{bottom:368.094177pt;}
.y2e_c00263{bottom:368.238093pt;}
.y2d_c00263{bottom:368.409333pt;}
.y2c_c00263{bottom:385.824000pt;}
.y2b_c00263{bottom:386.114667pt;}
.y2a_c00263{bottom:386.248000pt;}
.y29_c00263{bottom:386.394667pt;}
.y28_c00263{bottom:387.004000pt;}
.y27_c00263{bottom:387.194667pt;}
.y26_c00263{bottom:387.360000pt;}
.y25_c00263{bottom:387.636000pt;}
.y24_c00263{bottom:388.218667pt;}
.y23_c00263{bottom:388.380000pt;}
.y22_c00263{bottom:388.560000pt;}
.y21_c00263{bottom:407.692000pt;}
.y20_c00263{bottom:427.609333pt;}
.y1f_c00263{bottom:447.000000pt;}
.y1e_c00263{bottom:447.297333pt;}
.y1d_c00263{bottom:447.381333pt;}
.y1c_c00263{bottom:447.804000pt;}
.y1b_c00263{bottom:448.036000pt;}
.y1a_c00263{bottom:448.140000pt;}
.y19_c00263{bottom:448.381333pt;}
.y18_c00263{bottom:448.620000pt;}
.y17_c00263{bottom:448.780000pt;}
.y16_c00263{bottom:449.032000pt;}
.y15_c00263{bottom:449.297333pt;}
.y14_c00263{bottom:449.760000pt;}
.y13_c00263{bottom:468.170667pt;}
.y12_c00263{bottom:488.778667pt;}
.y11_c00263{bottom:509.014667pt;}
.y10_c00263{bottom:529.510667pt;}
.yf_c00263{bottom:549.744000pt;}
.ye_c00263{bottom:570.144000pt;}
.yd_c00263{bottom:590.541333pt;}
.yc_c00263{bottom:610.881333pt;}
.yb_c00263{bottom:631.317333pt;}
.ya_c00263{bottom:651.928000pt;}
.y9_c00263{bottom:672.532000pt;}
.y8_c00263{bottom:692.938667pt;}
.y7_c00263{bottom:713.157333pt;}
.y6_c00263{bottom:734.189333pt;}
.y3_c00263{bottom:767.087328pt;}
.y4_c00263{bottom:768.092893pt;}
.y5_c00263{bottom:770.602135pt;}
.y1_c00263{bottom:807.884000pt;}
.y2_c00263{bottom:821.032629pt;}
.hd_c00263{height:14.933938pt;}
.h13_c00263{height:23.335013pt;}
.h10_c00263{height:28.002016pt;}
.h14_c00263{height:44.803225pt;}
.h17_c00263{height:46.666667pt;}
.h16_c00263{height:46.670027pt;}
.h15_c00263{height:47.603427pt;}
.h12_c00263{height:56.937432pt;}
.ha_c00263{height:57.866667pt;}
.h7_c00263{height:59.733333pt;}
.h6_c00263{height:60.666667pt;}
.he_c00263{height:60.670337pt;}
.h11_c00263{height:60.671035pt;}
.h8_c00263{height:61.600000pt;}
.h9_c00263{height:62.533333pt;}
.hb_c00263{height:62.535866pt;}
.h5_c00263{height:63.466667pt;}
.h4_c00263{height:64.400000pt;}
.hf_c00263{height:64.403896pt;}
.hc_c00263{height:68.136093pt;}
.h3_c00263{height:110.079630pt;}
.h18_c00263{height:154.000000pt;}
.h2_c00263{height:157.656420pt;}
.h0_c00263{height:896.400000pt;}
.h1_c00263{height:896.666667pt;}
.w0_c00263{width:603.066667pt;}
.w1_c00263{width:603.333333pt;}
.x0_c00263{left:0.000000pt;}
.xba_c00263{left:60.240000pt;}
.x1_c00263{left:64.493333pt;}
.x79_c00263{left:74.768000pt;}
.x9d_c00263{left:75.768000pt;}
.x8d_c00263{left:76.796949pt;}
.x88_c00263{left:79.725480pt;}
.xa3_c00263{left:82.115115pt;}
.xb5_c00263{left:83.379307pt;}
.x3_c00263{left:85.608629pt;}
.xb7_c00263{left:90.960000pt;}
.x7a_c00263{left:93.794667pt;}
.x7b_c00263{left:109.785333pt;}
.x39_c00263{left:118.560000pt;}
.x4_c00263{left:120.247953pt;}
.xd_c00263{left:121.440000pt;}
.x5f_c00263{left:123.360000pt;}
.xa4_c00263{left:124.652448pt;}
.xb1_c00263{left:135.034491pt;}
.x58_c00263{left:136.800000pt;}
.x3a_c00263{left:140.400000pt;}
.x6b_c00263{left:146.161333pt;}
.x73_c00263{left:148.240000pt;}
.x18_c00263{left:150.240000pt;}
.xe_c00263{left:154.800000pt;}
.x32_c00263{left:158.400000pt;}
.x6_c00263{left:159.600000pt;}
.x22_c00263{left:162.720000pt;}
.x89_c00263{left:164.279956pt;}
.x19_c00263{left:165.600000pt;}
.x90_c00263{left:167.370696pt;}
.x3b_c00263{left:168.480000pt;}
.x74_c00263{left:171.270667pt;}
.x4b_c00263{left:173.040000pt;}
.x81_c00263{left:174.374536pt;}
.x43_c00263{left:177.600000pt;}
.x2a_c00263{left:181.920000pt;}
.xa5_c00263{left:185.383115pt;}
.x66_c00263{left:187.121333pt;}
.x6e_c00263{left:190.321333pt;}
.xf_c00263{left:192.000000pt;}
.x7c_c00263{left:193.582667pt;}
.x3c_c00263{left:197.040000pt;}
.x82_c00263{left:200.055869pt;}
.xa6_c00263{left:202.661781pt;}
.xb8_c00263{left:204.240000pt;}
.x5_c00263{left:206.700409pt;}
.x59_c00263{left:207.600000pt;}
.x7d_c00263{left:209.657333pt;}
.x33_c00263{left:213.600000pt;}
.x23_c00263{left:216.000000pt;}
.x3d_c00263{left:218.160000pt;}
.x1a_c00263{left:220.800000pt;}
.x91_c00263{left:222.870812pt;}
.x53_c00263{left:225.600000pt;}
.x44_c00263{left:232.560000pt;}
.x1b_c00263{left:233.520000pt;}
.x4c_c00263{left:237.840000pt;}
.xb9_c00263{left:241.200000pt;}
.x10_c00263{left:244.080000pt;}
.x7e_c00263{left:245.180000pt;}
.x60_c00263{left:246.240000pt;}
.x45_c00263{left:249.120000pt;}
.x24_c00263{left:250.320000pt;}
.x92_c00263{left:253.298137pt;}
.x75_c00263{left:254.590667pt;}
.x1c_c00263{left:256.320000pt;}
.x5a_c00263{left:258.720000pt;}
.x11_c00263{left:260.160000pt;}
.x4d_c00263{left:261.120000pt;}
.x2b_c00263{left:266.160000pt;}
.x46_c00263{left:268.800000pt;}
.x34_c00263{left:271.440000pt;}
.x97_c00263{left:272.748329pt;}
.x3e_c00263{left:273.840000pt;}
.x1d_c00263{left:275.040000pt;}
.x8e_c00263{left:276.368000pt;}
.xa7_c00263{left:279.229781pt;}
.x5b_c00263{left:280.320000pt;}
.x7_c00263{left:281.760000pt;}
.x67_c00263{left:283.840000pt;}
.x83_c00263{left:286.218536pt;}
.x4e_c00263{left:294.240000pt;}
.x6f_c00263{left:295.681333pt;}
.x25_c00263{left:298.800000pt;}
.x12_c00263{left:302.640000pt;}
.x4f_c00263{left:306.240000pt;}
.x2c_c00263{left:309.600000pt;}
.x8a_c00263{left:310.719983pt;}
.x47_c00263{left:315.600000pt;}
.x68_c00263{left:317.918667pt;}
.x8_c00263{left:319.680000pt;}
.x13_c00263{left:321.360000pt;}
.x9f_c00263{left:322.928805pt;}
.x98_c00263{left:325.821076pt;}
.xab_c00263{left:327.542821pt;}
.x35_c00263{left:330.240000pt;}
.x50_c00263{left:332.880000pt;}
.x8b_c00263{left:334.664884pt;}
.xa8_c00263{left:338.751115pt;}
.xb6_c00263{left:340.258395pt;}
.x61_c00263{left:343.920000pt;}
.x8f_c00263{left:346.206667pt;}
.x14_c00263{left:347.760000pt;}
.x3f_c00263{left:352.080000pt;}
.xa0_c00263{left:352.973525pt;}
.x9_c00263{left:354.720000pt;}
.x93_c00263{left:356.309212pt;}
.xa9_c00263{left:358.475115pt;}
.x99_c00263{left:360.311361pt;}
.x84_c00263{left:362.070536pt;}
.x36_c00263{left:364.080000pt;}
.x5c_c00263{left:365.280000pt;}
.x1e_c00263{left:367.920000pt;}
.x9a_c00263{left:369.273925pt;}
.x26_c00263{left:370.320000pt;}
.x70_c00263{left:372.961333pt;}
.x40_c00263{left:375.600000pt;}
.xa1_c00263{left:377.699451pt;}
.x85_c00263{left:382.703869pt;}
.x2d_c00263{left:384.240000pt;}
.x6c_c00263{left:386.161333pt;}
.xa_c00263{left:387.120000pt;}
.xac_c00263{left:390.018240pt;}
.x1f_c00263{left:392.880000pt;}
.xae_c00263{left:395.290923pt;}
.x54_c00263{left:398.160000pt;}
.x69_c00263{left:400.485333pt;}
.x15_c00263{left:401.760000pt;}
.x27_c00263{left:402.960000pt;}
.x7f_c00263{left:406.708000pt;}
.x62_c00263{left:409.440000pt;}
.x5d_c00263{left:411.360000pt;}
.x48_c00263{left:413.760000pt;}
.x64_c00263{left:415.440000pt;}
.xb_c00263{left:416.400000pt;}
.x55_c00263{left:417.360000pt;}
.x6d_c00263{left:419.521333pt;}
.x51_c00263{left:425.520000pt;}
.x2e_c00263{left:429.360000pt;}
.x76_c00263{left:431.929333pt;}
.x5e_c00263{left:434.160000pt;}
.x94_c00263{left:435.936800pt;}
.x71_c00263{left:438.481333pt;}
.x20_c00263{left:440.160000pt;}
.x37_c00263{left:445.680000pt;}
.x80_c00263{left:447.268000pt;}
.x52_c00263{left:448.320000pt;}
.x28_c00263{left:452.400000pt;}
.x2f_c00263{left:454.800000pt;}
.x16_c00263{left:459.840000pt;}
.x49_c00263{left:461.280000pt;}
.x95_c00263{left:464.502836pt;}
.xb2_c00263{left:468.551808pt;}
.x77_c00263{left:471.769333pt;}
.x30_c00263{left:473.760000pt;}
.x2_c00263{left:474.977105pt;}
.x38_c00263{left:475.920000pt;}
.xaa_c00263{left:477.969781pt;}
.x41_c00263{left:480.720000pt;}
.x86_c00263{left:482.101203pt;}
.x65_c00263{left:485.040000pt;}
.xa2_c00263{left:486.152709pt;}
.x8c_c00263{left:488.026124pt;}
.x57_c00263{left:491.040000pt;}
.x29_c00263{left:492.240000pt;}
.x56_c00263{left:493.440000pt;}
.x9b_c00263{left:494.557880pt;}
.x17_c00263{left:496.080000pt;}
.x4a_c00263{left:502.320000pt;}
.x31_c00263{left:505.440000pt;}
.x42_c00263{left:507.120000pt;}
.xb3_c00263{left:508.995451pt;}
.xc_c00263{left:512.160000pt;}
.x78_c00263{left:513.264000pt;}
.x6a_c00263{left:515.470667pt;}
.x72_c00263{left:517.921333pt;}
.x21_c00263{left:524.880000pt;}
.x87_c00263{left:529.335869pt;}
.xaf_c00263{left:531.374485pt;}
.x9c_c00263{left:532.914788pt;}
.x63_c00263{left:534.960000pt;}
.xad_c00263{left:545.636891pt;}
.x9e_c00263{left:546.734667pt;}
.xb0_c00263{left:555.342016pt;}
.xb4_c00263{left:557.416603pt;}
.x96_c00263{left:573.101779pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m163_c00264{transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);}
.m10d_c00264{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m120_c00264{transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);}
.mc6_c00264{transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);}
.m182_c00264{transform:matrix(0.046755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046755,0.000000,0.000000,0.250000,0,0);}
.m10c_c00264{transform:matrix(0.051635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051635,0.000000,0.000000,0.250000,0,0);}
.m11d_c00264{transform:matrix(0.058185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058185,0.000000,0.000000,0.250000,0,0);}
.m11e_c00264{transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);}
.mdf_c00264{transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);}
.m132_c00264{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{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);}
.m10a_c00264{transform:matrix(0.115030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115030,0.000000,0.000000,0.250000,0,0);}
.m17c_c00264{transform:matrix(0.125555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125555,0.000000,0.000000,0.250000,0,0);}
.m14a_c00264{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);}
.m157_c00264{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);}
.m166_c00264{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00264{transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);}
.m169_c00264{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.mbb_c00264{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);}
.m145_c00264{transform:matrix(0.147215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147215,0.000000,0.000000,0.250000,0,0);}
.m167_c00264{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);}
.m4d_c00264{transform:matrix(0.147696,-0.001034,0.001750,0.249994,0,0);-ms-transform:matrix(0.147696,-0.001034,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147696,-0.001034,0.001750,0.249994,0,0);}
.m3d_c00264{transform:matrix(0.147776,-0.001034,0.001750,0.249994,0,0);-ms-transform:matrix(0.147776,-0.001034,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147776,-0.001034,0.001750,0.249994,0,0);}
.m14b_c00264{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);}
.m173_c00264{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);}
.m3c_c00264{transform:matrix(0.149581,-0.001047,0.001750,0.249994,0,0);-ms-transform:matrix(0.149581,-0.001047,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149581,-0.001047,0.001750,0.249994,0,0);}
.m7e_c00264{transform:matrix(0.149960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149960,0.000000,0.000000,0.250000,0,0);}
.m12d_c00264{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);}
.m126_c00264{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.mdb_c00264{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.m11a_c00264{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);}
.m146_c00264{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);}
.m148_c00264{transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{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);}
.m118_c00264{transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154085,0.000000,0.000000,0.250000,0,0);}
.m191_c00264{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);}
.m27_c00264{transform:matrix(0.155471,-0.001088,0.001750,0.249994,0,0);-ms-transform:matrix(0.155471,-0.001088,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155471,-0.001088,0.001750,0.249994,0,0);}
.m16b_c00264{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);}
.m4a_c00264{transform:matrix(0.156511,-0.001096,0.001750,0.249994,0,0);-ms-transform:matrix(0.156511,-0.001096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156511,-0.001096,0.001750,0.249994,0,0);}
.mf4_c00264{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);}
.m15b_c00264{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);}
.md0_c00264{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);}
.m6d_c00264{transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);}
.mc4_c00264{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);}
.md6_c00264{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);}
.m10f_c00264{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);}
.m130_c00264{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);}
.md3_c00264{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);}
.m149_c00264{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);}
.m64_c00264{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_c00264{transform:matrix(0.161246,-0.001129,0.001750,0.249994,0,0);-ms-transform:matrix(0.161246,-0.001129,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161246,-0.001129,0.001750,0.249994,0,0);}
.m73_c00264{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);}
.mc0_c00264{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);}
.mbe_c00264{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);}
.m13e_c00264{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);}
.m175_c00264{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);}
.m192_c00264{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);}
.m143_c00264{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);}
.m3f_c00264{transform:matrix(0.165531,-0.001159,0.001750,0.249994,0,0);-ms-transform:matrix(0.165531,-0.001159,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165531,-0.001159,0.001750,0.249994,0,0);}
.m124_c00264{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);}
.m189_c00264{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);}
.m115_c00264{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);}
.m2f_c00264{transform:matrix(0.167426,-0.001172,0.001750,0.249994,0,0);-ms-transform:matrix(0.167426,-0.001172,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167426,-0.001172,0.001750,0.249994,0,0);}
.m196_c00264{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);}
.m105_c00264{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);}
.m65_c00264{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);}
.mc3_c00264{transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);}
.m168_c00264{transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);}
.m113_c00264{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);}
.m14e_c00264{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);}
.m23_c00264{transform:matrix(0.169156,-0.001184,0.001750,0.249994,0,0);-ms-transform:matrix(0.169156,-0.001184,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169156,-0.001184,0.001750,0.249994,0,0);}
.m155_c00264{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m110_c00264{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);}
.m9e_c00264{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);}
.m70_c00264{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);}
.m1a_c00264{transform:matrix(0.170371,-0.001193,0.001750,0.249994,0,0);-ms-transform:matrix(0.170371,-0.001193,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170371,-0.001193,0.001750,0.249994,0,0);}
.m193_c00264{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);}
.mc2_c00264{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);}
.mdd_c00264{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);}
.m179_c00264{transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.172846,-0.001210,0.001750,0.249994,0,0);-ms-transform:matrix(0.172846,-0.001210,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172846,-0.001210,0.001750,0.249994,0,0);}
.m18f_c00264{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);}
.m144_c00264{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);}
.mbc_c00264{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);}
.m17b_c00264{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);}
.m50_c00264{transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);-ms-transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);}
.ma8_c00264{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);}
.m152_c00264{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);}
.mfb_c00264{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);}
.mae_c00264{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);}
.m159_c00264{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);}
.m18c_c00264{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);}
.m17e_c00264{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);}
.m121_c00264{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);}
.me0_c00264{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);}
.m114_c00264{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);}
.m6c_c00264{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);}
.ma2_c00264{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);}
.m198_c00264{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);}
.m68_c00264{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);}
.m133_c00264{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);}
.m197_c00264{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);}
.m54_c00264{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);}
.m2a_c00264{transform:matrix(0.177331,-0.001241,0.001750,0.249994,0,0);-ms-transform:matrix(0.177331,-0.001241,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177331,-0.001241,0.001750,0.249994,0,0);}
.mc8_c00264{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);}
.m6f_c00264{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);}
.m139_c00264{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);}
.m184_c00264{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);}
.m12e_c00264{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);}
.md5_c00264{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);}
.m7f_c00264{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);}
.m18b_c00264{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);}
.mce_c00264{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);}
.mcb_c00264{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);}
.m5e_c00264{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);}
.mda_c00264{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m154_c00264{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);}
.m164_c00264{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);}
.m4b_c00264{transform:matrix(0.180421,-0.001263,0.001750,0.249994,0,0);-ms-transform:matrix(0.180421,-0.001263,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180421,-0.001263,0.001750,0.249994,0,0);}
.m4c_c00264{transform:matrix(0.180561,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180561,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180561,-0.001264,0.001750,0.249994,0,0);}
.m40_c00264{transform:matrix(0.181156,-0.001268,0.001750,0.249994,0,0);-ms-transform:matrix(0.181156,-0.001268,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181156,-0.001268,0.001750,0.249994,0,0);}
.m158_c00264{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);}
.m13b_c00264{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);}
.m74_c00264{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);}
.m3b_c00264{transform:matrix(0.181691,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181691,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181691,-0.001272,0.001750,0.249994,0,0);}
.mac_c00264{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);}
.ma4_c00264{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);}
.m16a_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);}
.m17f_c00264{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);}
.m41_c00264{transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);-ms-transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);}
.m32_c00264{transform:matrix(0.182696,-0.001279,0.001750,0.249994,0,0);-ms-transform:matrix(0.182696,-0.001279,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182696,-0.001279,0.001750,0.249994,0,0);}
.m71_c00264{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);}
.m134_c00264{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);}
.m150_c00264{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);}
.m178_c00264{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);}
.m33_c00264{transform:matrix(0.183101,-0.001282,0.001750,0.249994,0,0);-ms-transform:matrix(0.183101,-0.001282,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183101,-0.001282,0.001750,0.249994,0,0);}
.m135_c00264{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);}
.m26_c00264{transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);}
.m16e_c00264{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);}
.m101_c00264{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);}
.m57_c00264{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);}
.m72_c00264{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);}
.ma1_c00264{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);}
.mfd_c00264{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);}
.mc5_c00264{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);}
.m161_c00264{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);}
.mf7_c00264{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);}
.me5_c00264{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);}
.m91_c00264{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);}
.md2_c00264{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);}
.m127_c00264{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);}
.m13a_c00264{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);}
.m107_c00264{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);}
.m2b_c00264{transform:matrix(0.186770,-0.001307,0.001750,0.249994,0,0);-ms-transform:matrix(0.186770,-0.001307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186770,-0.001307,0.001750,0.249994,0,0);}
.m31_c00264{transform:matrix(0.186795,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186795,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186795,-0.001308,0.001750,0.249994,0,0);}
.m111_c00264{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);}
.mef_c00264{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);}
.md4_c00264{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);}
.m16d_c00264{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);}
.m22_c00264{transform:matrix(0.187180,-0.001310,0.001750,0.249994,0,0);-ms-transform:matrix(0.187180,-0.001310,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187180,-0.001310,0.001750,0.249994,0,0);}
.m123_c00264{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);}
.me2_c00264{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);}
.ma3_c00264{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);}
.me1_c00264{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);}
.mcf_c00264{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);}
.m14d_c00264{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);}
.m4f_c00264{transform:matrix(0.190180,-0.001331,0.001750,0.249994,0,0);-ms-transform:matrix(0.190180,-0.001331,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190180,-0.001331,0.001750,0.249994,0,0);}
.m7c_c00264{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);}
.mbf_c00264{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);}
.m67_c00264{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);}
.m5c_c00264{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);}
.m15e_c00264{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);}
.m151_c00264{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);}
.m141_c00264{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);}
.m117_c00264{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);}
.m47_c00264{transform:matrix(0.191860,-0.001343,0.001750,0.249994,0,0);-ms-transform:matrix(0.191860,-0.001343,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191860,-0.001343,0.001750,0.249994,0,0);}
.mca_c00264{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);}
.m153_c00264{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);}
.mde_c00264{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);}
.m13d_c00264{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);}
.md1_c00264{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);}
.m37_c00264{transform:matrix(0.193050,-0.001351,0.001750,0.249994,0,0);-ms-transform:matrix(0.193050,-0.001351,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193050,-0.001351,0.001750,0.249994,0,0);}
.mdc_c00264{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);}
.m142_c00264{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);}
.me9_c00264{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);}
.m63_c00264{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);}
.m38_c00264{transform:matrix(0.194425,-0.001361,0.001750,0.249994,0,0);-ms-transform:matrix(0.194425,-0.001361,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194425,-0.001361,0.001750,0.249994,0,0);}
.m1d_c00264{transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194520,-0.001362,0.001750,0.249994,0,0);}
.mb1_c00264{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);}
.m199_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);}
.m125_c00264{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);}
.m156_c00264{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);}
.ma5_c00264{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);}
.m30_c00264{transform:matrix(0.196325,-0.001374,0.001750,0.249994,0,0);-ms-transform:matrix(0.196325,-0.001374,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196325,-0.001374,0.001750,0.249994,0,0);}
.m137_c00264{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);}
.m34_c00264{transform:matrix(0.196465,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196465,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196465,-0.001375,0.001750,0.249994,0,0);}
.m14f_c00264{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);}
.m29_c00264{transform:matrix(0.196970,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.196970,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196970,-0.001379,0.001750,0.249994,0,0);}
.m12f_c00264{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);}
.m62_c00264{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);}
.m8f_c00264{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);}
.m9c_c00264{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);}
.m147_c00264{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);}
.m6b_c00264{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m103_c00264{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);}
.mee_c00264{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);}
.m60_c00264{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);}
.m17a_c00264{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);}
.mb0_c00264{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);}
.m2d_c00264{transform:matrix(0.198075,-0.001387,0.001750,0.249994,0,0);-ms-transform:matrix(0.198075,-0.001387,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198075,-0.001387,0.001750,0.249994,0,0);}
.mff_c00264{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);}
.m83_c00264{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);}
.m116_c00264{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);}
.m36_c00264{transform:matrix(0.200030,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200030,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200030,-0.001400,0.001750,0.249994,0,0);}
.m195_c00264{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);}
.m77_c00264{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);}
.m4e_c00264{transform:matrix(0.200230,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200230,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200230,-0.001402,0.001750,0.249994,0,0);}
.m75_c00264{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);}
.m136_c00264{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);}
.m11b_c00264{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);}
.m25_c00264{transform:matrix(0.200935,-0.001407,0.001750,0.249994,0,0);-ms-transform:matrix(0.200935,-0.001407,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200935,-0.001407,0.001750,0.249994,0,0);}
.m49_c00264{transform:matrix(0.201075,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201075,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201075,-0.001408,0.001750,0.249994,0,0);}
.m7d_c00264{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);}
.m1f_c00264{transform:matrix(0.201200,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201200,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201200,-0.001408,0.001750,0.249994,0,0);}
.m17_c00264{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);}
.m80_c00264{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);}
.m131_c00264{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);}
.m2c_c00264{transform:matrix(0.202040,-0.001414,0.001750,0.249994,0,0);-ms-transform:matrix(0.202040,-0.001414,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202040,-0.001414,0.001750,0.249994,0,0);}
.m138_c00264{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);}
.m5d_c00264{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);}
.m88_c00264{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);}
.mba_c00264{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);}
.mec_c00264{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);}
.md8_c00264{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);}
.mc1_c00264{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);}
.m15d_c00264{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);}
.m13f_c00264{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);}
.mfc_c00264{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);}
.m172_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);}
.m55_c00264{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);}
.mab_c00264{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);}
.m95_c00264{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);}
.mc9_c00264{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);}
.ma7_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);}
.meb_c00264{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);}
.m180_c00264{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);}
.mbd_c00264{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);}
.mf3_c00264{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);}
.mfe_c00264{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);}
.m43_c00264{transform:matrix(0.207150,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207150,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207150,-0.001450,0.001750,0.249994,0,0);}
.m61_c00264{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);}
.m78_c00264{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);}
.me6_c00264{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);}
.m5a_c00264{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);}
.m119_c00264{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);}
.m19e_c00264{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);}
.m7b_c00264{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);}
.m6a_c00264{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);}
.m9d_c00264{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);}
.m188_c00264{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);}
.m9f_c00264{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);}
.md7_c00264{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);}
.m92_c00264{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);}
.m48_c00264{transform:matrix(0.213070,-0.001491,0.001750,0.249994,0,0);-ms-transform:matrix(0.213070,-0.001491,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213070,-0.001491,0.001750,0.249994,0,0);}
.mf6_c00264{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);}
.m79_c00264{transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);}
.m128_c00264{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);}
.mb4_c00264{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);}
.m17d_c00264{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);}
.m8c_c00264{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);}
.m28_c00264{transform:matrix(0.215875,-0.001511,0.001750,0.249994,0,0);-ms-transform:matrix(0.215875,-0.001511,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215875,-0.001511,0.001750,0.249994,0,0);}
.m177_c00264{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);}
.mf5_c00264{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);}
.m9a_c00264{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);}
.m58_c00264{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);}
.m186_c00264{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);}
.m112_c00264{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);}
.m190_c00264{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);}
.m39_c00264{transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);}
.m16c_c00264{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);}
.me4_c00264{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);}
.m18a_c00264{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);}
.ma6_c00264{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);}
.m15a_c00264{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);}
.m14c_c00264{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);}
.me7_c00264{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);}
.m187_c00264{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);}
.mfa_c00264{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);}
.m66_c00264{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);}
.m93_c00264{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);}
.m8a_c00264{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);}
.m162_c00264{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);}
.mcc_c00264{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);}
.m185_c00264{transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);}
.m18e_c00264{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);}
.m24_c00264{transform:matrix(0.226269,-0.001584,0.001750,0.249994,0,0);-ms-transform:matrix(0.226269,-0.001584,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226269,-0.001584,0.001750,0.249994,0,0);}
.m51_c00264{transform:matrix(0.226789,-0.001588,0.001750,0.249994,0,0);-ms-transform:matrix(0.226789,-0.001588,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226789,-0.001588,0.001750,0.249994,0,0);}
.med_c00264{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);}
.m90_c00264{transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.228419,-0.001599,0.001750,0.249994,0,0);-ms-transform:matrix(0.228419,-0.001599,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228419,-0.001599,0.001750,0.249994,0,0);}
.m19_c00264{transform:matrix(0.228909,-0.001602,0.001750,0.249994,0,0);-ms-transform:matrix(0.228909,-0.001602,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228909,-0.001602,0.001750,0.249994,0,0);}
.md9_c00264{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);}
.m46_c00264{transform:matrix(0.229154,-0.001604,0.001750,0.249994,0,0);-ms-transform:matrix(0.229154,-0.001604,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229154,-0.001604,0.001750,0.249994,0,0);}
.m12a_c00264{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);}
.m165_c00264{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);}
.m18_c00264{transform:matrix(0.230509,-0.001614,0.001750,0.249994,0,0);-ms-transform:matrix(0.230509,-0.001614,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230509,-0.001614,0.001750,0.249994,0,0);}
.m12c_c00264{transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);}
.mf2_c00264{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);}
.m7a_c00264{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);}
.m122_c00264{transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);}
.maf_c00264{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{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);}
.m176_c00264{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);}
.m194_c00264{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);}
.m59_c00264{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);}
.m7_c00264{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);}
.m94_c00264{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);}
.m15f_c00264{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);}
.me3_c00264{transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{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);}
.m5b_c00264{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);}
.m44_c00264{transform:matrix(0.239924,-0.001679,0.001750,0.249994,0,0);-ms-transform:matrix(0.239924,-0.001679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239924,-0.001679,0.001750,0.249994,0,0);}
.mb7_c00264{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);}
.m20_c00264{transform:matrix(0.240339,-0.001682,0.001750,0.249994,0,0);-ms-transform:matrix(0.240339,-0.001682,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240339,-0.001682,0.001750,0.249994,0,0);}
.m129_c00264{transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241460,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{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);}
.mc7_c00264{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);}
.m69_c00264{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);}
.m1e_c00264{transform:matrix(0.243689,-0.001706,0.001750,0.249994,0,0);-ms-transform:matrix(0.243689,-0.001706,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243689,-0.001706,0.001750,0.249994,0,0);}
.m35_c00264{transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);-ms-transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244299,-0.001710,0.001750,0.249994,0,0);}
.m19a_c00264{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);}
.m19c_c00264{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);}
.m87_c00264{transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);}
.mb6_c00264{transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);}
.mcd_c00264{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.m13c_c00264{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{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);}
.m15_c00264{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);}
.ma9_c00264{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00264{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{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);}
.m2e_c00264{transform:matrix(0.254689,-0.001783,0.001750,0.249994,0,0);-ms-transform:matrix(0.254689,-0.001783,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254689,-0.001783,0.001750,0.249994,0,0);}
.mf8_c00264{transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.257999,-0.001806,0.001750,0.249994,0,0);-ms-transform:matrix(0.257999,-0.001806,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257999,-0.001806,0.001750,0.249994,0,0);}
.m170_c00264{transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260515,0.000000,0.000000,0.250000,0,0);}
.m100_c00264{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.mf1_c00264{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.263370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263370,0.000000,0.000000,0.250000,0,0);}
.mb5_c00264{transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264565,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.264759,-0.001853,0.001750,0.249994,0,0);-ms-transform:matrix(0.264759,-0.001853,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264759,-0.001853,0.001750,0.249994,0,0);}
.m108_c00264{transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);}
.m140_c00264{transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);}
.mf9_c00264{transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);}
.mb8_c00264{transform:matrix(0.271370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271370,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);}
.mb2_c00264{transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);}
.m11f_c00264{transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284510,0.000000,0.000000,0.250000,0,0);}
.m84_c00264{transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291385,0.000000,0.000000,0.250000,0,0);}
.m16f_c00264{transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);}
.mea_c00264{transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295010,0.000000,0.000000,0.250000,0,0);}
.m181_c00264{transform:matrix(0.295710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295710,0.000000,0.000000,0.250000,0,0);}
.m11c_c00264{transform:matrix(0.299430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299430,0.000000,0.000000,0.250000,0,0);}
.m10e_c00264{transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.302948,-0.002121,0.001750,0.249994,0,0);-ms-transform:matrix(0.302948,-0.002121,0.001750,0.249994,0,0);-webkit-transform:matrix(0.302948,-0.002121,0.001750,0.249994,0,0);}
.m8e_c00264{transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311870,0.000000,0.000000,0.250000,0,0);}
.mb9_c00264{transform:matrix(0.319060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319060,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320390,0.000000,0.000000,0.250000,0,0);}
.m160_c00264{transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{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);}
.m102_c00264{transform:matrix(0.328460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328460,0.000000,0.000000,0.250000,0,0);}
.me8_c00264{transform:matrix(0.334080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334080,0.000000,0.000000,0.250000,0,0);}
.mf0_c00264{transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335775,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{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);}
.m21_c00264{transform:matrix(0.339612,-0.002377,0.001750,0.249994,0,0);-ms-transform:matrix(0.339612,-0.002377,0.001750,0.249994,0,0);-webkit-transform:matrix(0.339612,-0.002377,0.001750,0.249994,0,0);}
.m14_c00264{transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342590,0.000000,0.000000,0.250000,0,0);}
.m19b_c00264{transform:matrix(0.350240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350240,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.353725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.356816,-0.002498,0.001750,0.249994,0,0);-ms-transform:matrix(0.356816,-0.002498,0.001750,0.249994,0,0);-webkit-transform:matrix(0.356816,-0.002498,0.001750,0.249994,0,0);}
.mb3_c00264{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);}
.m9b_c00264{transform:matrix(0.363470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363470,0.000000,0.000000,0.250000,0,0);}
.maa_c00264{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);}
.m18d_c00264{transform:matrix(0.363820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363820,0.000000,0.000000,0.250000,0,0);}
.m174_c00264{transform:matrix(0.365730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365730,0.000000,0.000000,0.250000,0,0);}
.m12b_c00264{transform:matrix(0.395395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395395,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.404140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404140,0.000000,0.000000,0.250000,0,0);}
.m183_c00264{transform:matrix(0.406045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406045,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.407780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407780,0.000000,0.000000,0.250000,0,0);}
.m10b_c00264{transform:matrix(0.450240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450240,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.472505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472505,0.000000,0.000000,0.250000,0,0);}
.m109_c00264{transform:matrix(0.474795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474795,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.482685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482685,0.000000,0.000000,0.250000,0,0);}
.m81_c00264{transform:matrix(0.503540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503540,0.000000,0.000000,0.250000,0,0);}
.m19d_c00264{transform:matrix(0.543130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543130,0.000000,0.000000,0.250000,0,0);}
.m171_c00264{transform:matrix(0.556140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556140,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.566340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566340,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.575760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575760,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);}
.m106_c00264{transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640725,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.665530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665530,0.000000,0.000000,0.250000,0,0);}
.mad_c00264{transform:matrix(0.682020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682020,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.694765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694765,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.702140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702140,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.704950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704950,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.722695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722695,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.728640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728640,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.749225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749225,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.828250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828250,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.841160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.852985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852985,0.000000,0.000000,0.250000,0,0);}
.m104_c00264{transform:matrix(0.905555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905555,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;}
.fs12_c00264{font-size:14.700000px;}
.fsb_c00264{font-size:16.800000px;}
.fs13_c00264{font-size:22.050000px;}
.fs19_c00264{font-size:25.200000px;}
.fs1a_c00264{font-size:30.450000px;}
.fse_c00264{font-size:45.150000px;}
.fs16_c00264{font-size:52.500000px;}
.fs0_c00264{font-size:54.600000px;}
.fs15_c00264{font-size:57.750000px;}
.fs10_c00264{font-size:58.800000px;}
.fs1_c00264{font-size:59.850000px;}
.fsd_c00264{font-size:60.900000px;}
.fs11_c00264{font-size:65.100000px;}
.fsa_c00264{font-size:66.150000px;}
.fs9_c00264{font-size:67.200000px;}
.fs7_c00264{font-size:68.250000px;}
.fs4_c00264{font-size:68.251672px;}
.fs8_c00264{font-size:69.300000px;}
.fsc_c00264{font-size:70.350000px;}
.fs5_c00264{font-size:70.351724px;}
.fs14_c00264{font-size:71.400000px;}
.fs3_c00264{font-size:71.401749px;}
.fs6_c00264{font-size:72.451775px;}
.fs1d_c00264{font-size:73.500000px;}
.fs18_c00264{font-size:74.550000px;}
.fs1e_c00264{font-size:75.600000px;}
.fs1c_c00264{font-size:77.700000px;}
.fs17_c00264{font-size:78.750000px;}
.fs1b_c00264{font-size:81.900000px;}
.fs2_c00264{font-size:88.200000px;}
.fsf_c00264{font-size:128.100000px;}
.y0_c00264{bottom:0.000000px;}
.y90_c00264{bottom:97.470000px;}
.y8d_c00264{bottom:140.397000px;}
.y8e_c00264{bottom:141.226500px;}
.y8f_c00264{bottom:145.552500px;}
.y80_c00264{bottom:155.260500px;}
.y81_c00264{bottom:155.878500px;}
.y82_c00264{bottom:156.852000px;}
.y83_c00264{bottom:157.581000px;}
.y84_c00264{bottom:158.268000px;}
.y85_c00264{bottom:159.091500px;}
.y86_c00264{bottom:160.420500px;}
.y87_c00264{bottom:160.479000px;}
.y88_c00264{bottom:160.809000px;}
.y89_c00264{bottom:162.061500px;}
.y8a_c00264{bottom:162.882000px;}
.y8b_c00264{bottom:163.729500px;}
.y8c_c00264{bottom:165.441000px;}
.y76_c00264{bottom:183.873000px;}
.y77_c00264{bottom:184.561500px;}
.y78_c00264{bottom:184.939500px;}
.y79_c00264{bottom:185.265000px;}
.y7a_c00264{bottom:186.220500px;}
.y7b_c00264{bottom:186.586500px;}
.y7c_c00264{bottom:187.240500px;}
.y7d_c00264{bottom:188.503500px;}
.y7e_c00264{bottom:189.063000px;}
.y7f_c00264{bottom:190.570500px;}
.y75_c00264{bottom:210.019500px;}
.y74_c00264{bottom:226.668000px;}
.y6d_c00264{bottom:232.183500px;}
.y6c_c00264{bottom:254.592000px;}
.y6b_c00264{bottom:276.987000px;}
.y73_c00264{bottom:277.020000px;}
.y71_c00264{bottom:289.980000px;}
.y72_c00264{bottom:290.250000px;}
.y6a_c00264{bottom:299.673000px;}
.y70_c00264{bottom:300.510000px;}
.y6f_c00264{bottom:309.690000px;}
.y6e_c00264{bottom:311.040000px;}
.y69_c00264{bottom:322.347000px;}
.y68_c00264{bottom:344.724000px;}
.y67_c00264{bottom:367.458000px;}
.y66_c00264{bottom:378.952500px;}
.y65_c00264{bottom:390.144000px;}
.y64_c00264{bottom:401.301000px;}
.y63_c00264{bottom:410.940000px;}
.y5a_c00264{bottom:413.067000px;}
.y62_c00264{bottom:416.880000px;}
.y60_c00264{bottom:417.420000px;}
.y61_c00264{bottom:419.040000px;}
.y59_c00264{bottom:435.715500px;}
.y5c_c00264{bottom:437.670000px;}
.y5d_c00264{bottom:446.580000px;}
.y58_c00264{bottom:458.427000px;}
.y5f_c00264{bottom:478.980000px;}
.y5e_c00264{bottom:479.520000px;}
.y57_c00264{bottom:481.074000px;}
.y5b_c00264{bottom:487.890000px;}
.y56_c00264{bottom:503.485500px;}
.y55_c00264{bottom:526.483500px;}
.y54_c00264{bottom:549.154500px;}
.y53_c00264{bottom:561.910500px;}
.y45_c00264{bottom:570.745500px;}
.y46_c00264{bottom:571.030500px;}
.y47_c00264{bottom:571.134000px;}
.y48_c00264{bottom:571.275000px;}
.y49_c00264{bottom:571.752000px;}
.y4a_c00264{bottom:571.906500px;}
.y4b_c00264{bottom:572.277000px;}
.y4c_c00264{bottom:572.421000px;}
.y4d_c00264{bottom:572.652000px;}
.y4e_c00264{bottom:572.839500px;}
.y4f_c00264{bottom:573.232500px;}
.y50_c00264{bottom:573.328500px;}
.y51_c00264{bottom:573.454500px;}
.y52_c00264{bottom:573.864000px;}
.y44_c00264{bottom:594.505500px;}
.y43_c00264{bottom:616.936500px;}
.y42_c00264{bottom:639.339000px;}
.y41_c00264{bottom:662.277000px;}
.y40_c00264{bottom:684.969000px;}
.y3f_c00264{bottom:707.590500px;}
.y34_c00264{bottom:729.810505px;}
.y35_c00264{bottom:729.986335px;}
.y36_c00264{bottom:730.264800px;}
.y37_c00264{bottom:730.466328px;}
.y38_c00264{bottom:730.879099px;}
.y39_c00264{bottom:731.108479px;}
.y3a_c00264{bottom:731.268799px;}
.y3b_c00264{bottom:731.816120px;}
.y3c_c00264{bottom:731.964562px;}
.y3d_c00264{bottom:732.260880px;}
.y3e_c00264{bottom:732.857473px;}
.y2a_c00264{bottom:753.379924px;}
.y2b_c00264{bottom:753.379974px;}
.y2c_c00264{bottom:753.380203px;}
.y29_c00264{bottom:753.380434px;}
.y27_c00264{bottom:753.380445px;}
.y2d_c00264{bottom:753.380653px;}
.y28_c00264{bottom:753.380854px;}
.y2e_c00264{bottom:753.381243px;}
.y2f_c00264{bottom:753.381562px;}
.y30_c00264{bottom:753.381822px;}
.y32_c00264{bottom:753.382152px;}
.y33_c00264{bottom:753.382171px;}
.y31_c00264{bottom:753.382182px;}
.y1c_c00264{bottom:776.961169px;}
.y20_c00264{bottom:776.961348px;}
.y1d_c00264{bottom:776.961579px;}
.y1b_c00264{bottom:776.961589px;}
.y21_c00264{bottom:776.961787px;}
.y1f_c00264{bottom:776.961838px;}
.y1e_c00264{bottom:776.961999px;}
.y22_c00264{bottom:776.962327px;}
.y23_c00264{bottom:776.962557px;}
.y24_c00264{bottom:776.963037px;}
.y25_c00264{bottom:776.963476px;}
.y26_c00264{bottom:776.963886px;}
.y10_c00264{bottom:797.310417px;}
.y11_c00264{bottom:797.555802px;}
.y12_c00264{bottom:798.239272px;}
.y13_c00264{bottom:798.758384px;}
.y14_c00264{bottom:799.028089px;}
.y15_c00264{bottom:799.729500px;}
.y16_c00264{bottom:799.999636px;}
.y17_c00264{bottom:800.439822px;}
.y18_c00264{bottom:800.969262px;}
.y19_c00264{bottom:801.263877px;}
.y1a_c00264{bottom:801.940652px;}
.y4_c00264{bottom:820.530000px;}
.y5_c00264{bottom:820.667991px;}
.y6_c00264{bottom:821.244336px;}
.y7_c00264{bottom:821.554621px;}
.y8_c00264{bottom:821.968605px;}
.y9_c00264{bottom:822.127313px;}
.ya_c00264{bottom:822.595906px;}
.yb_c00264{bottom:822.775477px;}
.yc_c00264{bottom:822.979534px;}
.yd_c00264{bottom:823.293463px;}
.ye_c00264{bottom:823.397035px;}
.yf_c00264{bottom:823.604967px;}
.y3_c00264{bottom:867.511500px;}
.y2_c00264{bottom:910.984500px;}
.y1_c00264{bottom:929.616000px;}
.h14_c00264{height:14.700000px;}
.hd_c00264{height:16.800000px;}
.h15_c00264{height:22.050000px;}
.h1b_c00264{height:25.200000px;}
.h1c_c00264{height:30.450000px;}
.h10_c00264{height:45.150000px;}
.h18_c00264{height:52.500000px;}
.h2_c00264{height:54.600000px;}
.h17_c00264{height:57.750000px;}
.h12_c00264{height:58.800000px;}
.h3_c00264{height:59.850000px;}
.hf_c00264{height:60.900000px;}
.h13_c00264{height:65.100000px;}
.hc_c00264{height:66.150000px;}
.hb_c00264{height:67.200000px;}
.h9_c00264{height:68.250000px;}
.h6_c00264{height:68.251672px;}
.ha_c00264{height:69.300000px;}
.he_c00264{height:70.350000px;}
.h7_c00264{height:70.351724px;}
.h16_c00264{height:71.400000px;}
.h5_c00264{height:71.401749px;}
.h8_c00264{height:72.451775px;}
.h1f_c00264{height:73.500000px;}
.h1a_c00264{height:74.550000px;}
.h20_c00264{height:75.600000px;}
.h1e_c00264{height:77.700000px;}
.h19_c00264{height:78.750000px;}
.h1d_c00264{height:81.900000px;}
.h4_c00264{height:88.200000px;}
.h11_c00264{height:128.100000px;}
.h1_c00264{height:1005.000000px;}
.h0_c00264{height:1005.150000px;}
.w1_c00264{width:713.250000px;}
.w0_c00264{width:713.550000px;}
.x0_c00264{left:0.000000px;}
.xd_c00264{left:30.510000px;}
.x1_c00264{left:44.010000px;}
.xe_c00264{left:59.670000px;}
.x2_c00264{left:73.710000px;}
.x18_c00264{left:82.437000px;}
.x5a_c00264{left:83.970000px;}
.x77_c00264{left:85.126500px;}
.x9d_c00264{left:86.130000px;}
.xaf_c00264{left:87.750000px;}
.xb8_c00264{left:88.830000px;}
.xc6_c00264{left:89.910000px;}
.xc9_c00264{left:90.990000px;}
.xda_c00264{left:92.296500px;}
.x46_c00264{left:99.900000px;}
.x2b_c00264{left:100.981375px;}
.x19_c00264{left:102.150000px;}
.xbf_c00264{left:104.760000px;}
.x24_c00264{left:106.785004px;}
.x83_c00264{left:108.810000px;}
.xf_c00264{left:111.780000px;}
.x97_c00264{left:113.130000px;}
.x47_c00264{left:120.150000px;}
.xca_c00264{left:122.310000px;}
.x61_c00264{left:124.200000px;}
.x52_c00264{left:126.090000px;}
.x3_c00264{left:128.250000px;}
.x34_c00264{left:129.602832px;}
.x9e_c00264{left:131.490000px;}
.x78_c00264{left:132.649500px;}
.x8b_c00264{left:135.810000px;}
.xa6_c00264{left:137.160000px;}
.x70_c00264{left:139.320000px;}
.xdb_c00264{left:141.427500px;}
.x68_c00264{left:143.100000px;}
.xb9_c00264{left:144.720000px;}
.x48_c00264{left:146.880000px;}
.x35_c00264{left:149.043787px;}
.x98_c00264{left:151.200000px;}
.xc0_c00264{left:153.360000px;}
.x5b_c00264{left:156.330000px;}
.x3e_c00264{left:157.472502px;}
.xa7_c00264{left:158.760000px;}
.x2c_c00264{left:162.542889px;}
.xd0_c00264{left:163.620000px;}
.x10_c00264{left:165.510000px;}
.x69_c00264{left:166.860000px;}
.xdc_c00264{left:168.441000px;}
.xba_c00264{left:170.910000px;}
.x36_c00264{left:173.614995px;}
.x25_c00264{left:175.065066px;}
.xc1_c00264{left:176.310000px;}
.x4_c00264{left:177.930000px;}
.xa8_c00264{left:179.010000px;}
.x71_c00264{left:181.710000px;}
.x1a_c00264{left:184.485000px;}
.xe0_c00264{left:187.812000px;}
.x3f_c00264{left:190.976733px;}
.x14_c00264{left:193.050000px;}
.x84_c00264{left:197.100000px;}
.x49_c00264{left:199.260000px;}
.x5_c00264{left:201.420000px;}
.x5c_c00264{left:207.360000px;}
.x72_c00264{left:208.710000px;}
.x37_c00264{left:215.195532px;}
.x53_c00264{left:216.270000px;}
.x11_c00264{left:219.240000px;}
.xe1_c00264{left:222.519000px;}
.xc7_c00264{left:223.560000px;}
.xce_c00264{left:225.450000px;}
.x26_c00264{left:226.936974px;}
.x1b_c00264{left:228.811500px;}
.xc2_c00264{left:230.040000px;}
.x62_c00264{left:233.010000px;}
.x5d_c00264{left:236.250000px;}
.x4a_c00264{left:238.950000px;}
.x6_c00264{left:240.300000px;}
.x2d_c00264{left:241.655263px;}
.xcb_c00264{left:243.540000px;}
.x38_c00264{left:246.515565px;}
.x54_c00264{left:247.860000px;}
.x92_c00264{left:249.480000px;}
.x79_c00264{left:252.802500px;}
.x27_c00264{left:253.894407px;}
.xbb_c00264{left:255.960000px;}
.x85_c00264{left:257.310000px;}
.x40_c00264{left:259.801716px;}
.x4b_c00264{left:262.170000px;}
.xa2_c00264{left:268.650000px;}
.xc8_c00264{left:270.540000px;}
.xb7_c00264{left:271.890000px;}
.x39_c00264{left:274.866951px;}
.xd1_c00264{left:276.750000px;}
.x7a_c00264{left:278.455500px;}
.x73_c00264{left:279.720000px;}
.xb0_c00264{left:281.880000px;}
.x55_c00264{left:285.390000px;}
.x1c_c00264{left:287.952000px;}
.xcc_c00264{left:289.170000px;}
.xc3_c00264{left:290.790000px;}
.x15_c00264{left:293.760000px;}
.x6a_c00264{left:295.650000px;}
.x41_c00264{left:298.141989px;}
.x12_c00264{left:303.210000px;}
.x81_c00264{left:305.100000px;}
.x7_c00264{left:306.720000px;}
.xb1_c00264{left:308.070000px;}
.x1d_c00264{left:310.624500px;}
.x3a_c00264{left:312.667299px;}
.xa9_c00264{left:316.440000px;}
.x63_c00264{left:317.520000px;}
.x4c_c00264{left:319.950000px;}
.x56_c00264{left:321.570000px;}
.x74_c00264{left:322.650000px;}
.x28_c00264{left:324.094437px;}
.x8_c00264{left:325.890000px;}
.x9f_c00264{left:327.240000px;}
.x8c_c00264{left:330.750000px;}
.x86_c00264{left:332.370000px;}
.xbc_c00264{left:335.340000px;}
.xd5_c00264{left:336.960000px;}
.x9_c00264{left:338.310000px;}
.x7b_c00264{left:340.254000px;}
.xa3_c00264{left:343.980000px;}
.x6b_c00264{left:346.140000px;}
.xb3_c00264{left:348.030000px;}
.x87_c00264{left:349.920000px;}
.x29_c00264{left:351.113370px;}
.x3b_c00264{left:352.357741px;}
.x99_c00264{left:353.700000px;}
.x2e_c00264{left:355.867860px;}
.xe2_c00264{left:357.718500px;}
.x5e_c00264{left:360.180000px;}
.x7c_c00264{left:364.291500px;}
.xa_c00264{left:366.120000px;}
.xd6_c00264{left:367.740000px;}
.x75_c00264{left:372.060000px;}
.x88_c00264{left:374.220000px;}
.xc4_c00264{left:375.840000px;}
.x1e_c00264{left:377.566500px;}
.x2f_c00264{left:379.088994px;}
.x57_c00264{left:382.590000px;}
.xa0_c00264{left:383.670000px;}
.x6c_c00264{left:384.750000px;}
.x82_c00264{left:388.800000px;}
.xd2_c00264{left:390.690000px;}
.xcf_c00264{left:394.200000px;}
.x16_c00264{left:396.090000px;}
.xb4_c00264{left:397.170000px;}
.x5f_c00264{left:398.520000px;}
.x1f_c00264{left:403.219500px;}
.x93_c00264{left:405.000000px;}
.xe3_c00264{left:410.428500px;}
.x8d_c00264{left:411.480000px;}
.x42_c00264{left:416.162818px;}
.x4d_c00264{left:417.960000px;}
.xb2_c00264{left:421.470000px;}
.xdd_c00264{left:422.974500px;}
.xaa_c00264{left:424.170000px;}
.x64_c00264{left:425.250000px;}
.xa4_c00264{left:426.600000px;}
.x89_c00264{left:430.920000px;}
.x20_c00264{left:432.370500px;}
.x7d_c00264{left:434.242500px;}
.x8e_c00264{left:435.780000px;}
.xbd_c00264{left:437.400000px;}
.x43_c00264{left:441.011997px;}
.x65_c00264{left:444.960000px;}
.xd7_c00264{left:446.040000px;}
.xa5_c00264{left:447.120000px;}
.xb_c00264{left:448.740000px;}
.x30_c00264{left:450.911011px;}
.xa1_c00264{left:457.650000px;}
.x9a_c00264{left:459.000000px;}
.x6d_c00264{left:461.430000px;}
.xde_c00264{left:462.927000px;}
.xbe_c00264{left:466.830000px;}
.x58_c00264{left:469.260000px;}
.x3c_c00264{left:471.162058px;}
.x31_c00264{left:473.052093px;}
.x4e_c00264{left:474.660000px;}
.x21_c00264{left:477.217500px;}
.xc_c00264{left:479.520000px;}
.x9b_c00264{left:481.680000px;}
.x94_c00264{left:484.380000px;}
.xcd_c00264{left:485.460000px;}
.x13_c00264{left:487.350000px;}
.x44_c00264{left:490.414843px;}
.x22_c00264{left:492.013500px;}
.x66_c00264{left:493.020000px;}
.xd3_c00264{left:494.640000px;}
.x7e_c00264{left:499.845000px;}
.x95_c00264{left:500.850000px;}
.x4f_c00264{left:501.930000px;}
.x76_c00264{left:503.820000px;}
.x3d_c00264{left:505.452238px;}
.x60_c00264{left:509.760000px;}
.x32_c00264{left:514.902640px;}
.x8f_c00264{left:517.050000px;}
.xab_c00264{left:519.750000px;}
.x23_c00264{left:521.718000px;}
.xc5_c00264{left:522.720000px;}
.x17_c00264{left:523.800000px;}
.x96_c00264{left:525.960000px;}
.x8a_c00264{left:532.170000px;}
.x7f_c00264{left:536.853000px;}
.x6e_c00264{left:540.270000px;}
.x50_c00264{left:541.620000px;}
.x2a_c00264{left:545.254296px;}
.x33_c00264{left:549.462831px;}
.xd8_c00264{left:555.390000px;}
.x9c_c00264{left:557.550000px;}
.xb5_c00264{left:559.980000px;}
.xdf_c00264{left:570.651000px;}
.x90_c00264{left:578.880000px;}
.xd9_c00264{left:583.740000px;}
.x51_c00264{left:585.900000px;}
.x59_c00264{left:587.250000px;}
.x91_c00264{left:588.330000px;}
.x45_c00264{left:589.786036px;}
.x67_c00264{left:591.030000px;}
.xb6_c00264{left:592.380000px;}
.xad_c00264{left:596.700000px;}
.xd4_c00264{left:599.670000px;}
.x6f_c00264{left:602.100000px;}
.xac_c00264{left:603.450000px;}
.x80_c00264{left:605.148000px;}
.xae_c00264{left:606.690000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
.fs12_c00264{font-size:13.066667pt;}
.fsb_c00264{font-size:14.933333pt;}
.fs13_c00264{font-size:19.600000pt;}
.fs19_c00264{font-size:22.400000pt;}
.fs1a_c00264{font-size:27.066667pt;}
.fse_c00264{font-size:40.133333pt;}
.fs16_c00264{font-size:46.666667pt;}
.fs0_c00264{font-size:48.533333pt;}
.fs15_c00264{font-size:51.333333pt;}
.fs10_c00264{font-size:52.266667pt;}
.fs1_c00264{font-size:53.200000pt;}
.fsd_c00264{font-size:54.133333pt;}
.fs11_c00264{font-size:57.866667pt;}
.fsa_c00264{font-size:58.800000pt;}
.fs9_c00264{font-size:59.733333pt;}
.fs7_c00264{font-size:60.666667pt;}
.fs4_c00264{font-size:60.668153pt;}
.fs8_c00264{font-size:61.600000pt;}
.fsc_c00264{font-size:62.533333pt;}
.fs5_c00264{font-size:62.534865pt;}
.fs14_c00264{font-size:63.466667pt;}
.fs3_c00264{font-size:63.468222pt;}
.fs6_c00264{font-size:64.401578pt;}
.fs1d_c00264{font-size:65.333333pt;}
.fs18_c00264{font-size:66.266667pt;}
.fs1e_c00264{font-size:67.200000pt;}
.fs1c_c00264{font-size:69.066667pt;}
.fs17_c00264{font-size:70.000000pt;}
.fs1b_c00264{font-size:72.800000pt;}
.fs2_c00264{font-size:78.400000pt;}
.fsf_c00264{font-size:113.866667pt;}
.y0_c00264{bottom:0.000000pt;}
.y90_c00264{bottom:86.640000pt;}
.y8d_c00264{bottom:124.797333pt;}
.y8e_c00264{bottom:125.534667pt;}
.y8f_c00264{bottom:129.380000pt;}
.y80_c00264{bottom:138.009333pt;}
.y81_c00264{bottom:138.558667pt;}
.y82_c00264{bottom:139.424000pt;}
.y83_c00264{bottom:140.072000pt;}
.y84_c00264{bottom:140.682667pt;}
.y85_c00264{bottom:141.414667pt;}
.y86_c00264{bottom:142.596000pt;}
.y87_c00264{bottom:142.648000pt;}
.y88_c00264{bottom:142.941333pt;}
.y89_c00264{bottom:144.054667pt;}
.y8a_c00264{bottom:144.784000pt;}
.y8b_c00264{bottom:145.537333pt;}
.y8c_c00264{bottom:147.058667pt;}
.y76_c00264{bottom:163.442667pt;}
.y77_c00264{bottom:164.054667pt;}
.y78_c00264{bottom:164.390667pt;}
.y79_c00264{bottom:164.680000pt;}
.y7a_c00264{bottom:165.529333pt;}
.y7b_c00264{bottom:165.854667pt;}
.y7c_c00264{bottom:166.436000pt;}
.y7d_c00264{bottom:167.558667pt;}
.y7e_c00264{bottom:168.056000pt;}
.y7f_c00264{bottom:169.396000pt;}
.y75_c00264{bottom:186.684000pt;}
.y74_c00264{bottom:201.482667pt;}
.y6d_c00264{bottom:206.385333pt;}
.y6c_c00264{bottom:226.304000pt;}
.y6b_c00264{bottom:246.210667pt;}
.y73_c00264{bottom:246.240000pt;}
.y71_c00264{bottom:257.760000pt;}
.y72_c00264{bottom:258.000000pt;}
.y6a_c00264{bottom:266.376000pt;}
.y70_c00264{bottom:267.120000pt;}
.y6f_c00264{bottom:275.280000pt;}
.y6e_c00264{bottom:276.480000pt;}
.y69_c00264{bottom:286.530667pt;}
.y68_c00264{bottom:306.421333pt;}
.y67_c00264{bottom:326.629333pt;}
.y66_c00264{bottom:336.846667pt;}
.y65_c00264{bottom:346.794667pt;}
.y64_c00264{bottom:356.712000pt;}
.y63_c00264{bottom:365.280000pt;}
.y5a_c00264{bottom:367.170667pt;}
.y62_c00264{bottom:370.560000pt;}
.y60_c00264{bottom:371.040000pt;}
.y61_c00264{bottom:372.480000pt;}
.y59_c00264{bottom:387.302667pt;}
.y5c_c00264{bottom:389.040000pt;}
.y5d_c00264{bottom:396.960000pt;}
.y58_c00264{bottom:407.490667pt;}
.y5f_c00264{bottom:425.760000pt;}
.y5e_c00264{bottom:426.240000pt;}
.y57_c00264{bottom:427.621333pt;}
.y5b_c00264{bottom:433.680000pt;}
.y56_c00264{bottom:447.542667pt;}
.y55_c00264{bottom:467.985333pt;}
.y54_c00264{bottom:488.137333pt;}
.y53_c00264{bottom:499.476000pt;}
.y45_c00264{bottom:507.329333pt;}
.y46_c00264{bottom:507.582667pt;}
.y47_c00264{bottom:507.674667pt;}
.y48_c00264{bottom:507.800000pt;}
.y49_c00264{bottom:508.224000pt;}
.y4a_c00264{bottom:508.361333pt;}
.y4b_c00264{bottom:508.690667pt;}
.y4c_c00264{bottom:508.818667pt;}
.y4d_c00264{bottom:509.024000pt;}
.y4e_c00264{bottom:509.190667pt;}
.y4f_c00264{bottom:509.540000pt;}
.y50_c00264{bottom:509.625333pt;}
.y51_c00264{bottom:509.737333pt;}
.y52_c00264{bottom:510.101333pt;}
.y44_c00264{bottom:528.449333pt;}
.y43_c00264{bottom:548.388000pt;}
.y42_c00264{bottom:568.301333pt;}
.y41_c00264{bottom:588.690667pt;}
.y40_c00264{bottom:608.861333pt;}
.y3f_c00264{bottom:628.969333pt;}
.y34_c00264{bottom:648.720449pt;}
.y35_c00264{bottom:648.876743pt;}
.y36_c00264{bottom:649.124267pt;}
.y37_c00264{bottom:649.303403pt;}
.y38_c00264{bottom:649.670311pt;}
.y39_c00264{bottom:649.874204pt;}
.y3a_c00264{bottom:650.016711pt;}
.y3b_c00264{bottom:650.503217pt;}
.y3c_c00264{bottom:650.635167pt;}
.y3d_c00264{bottom:650.898560pt;}
.y3e_c00264{bottom:651.428865pt;}
.y2a_c00264{bottom:669.671044pt;}
.y2b_c00264{bottom:669.671088pt;}
.y2c_c00264{bottom:669.671292pt;}
.y29_c00264{bottom:669.671497pt;}
.y27_c00264{bottom:669.671507pt;}
.y2d_c00264{bottom:669.671692pt;}
.y28_c00264{bottom:669.671871pt;}
.y2e_c00264{bottom:669.672216pt;}
.y2f_c00264{bottom:669.672500pt;}
.y30_c00264{bottom:669.672731pt;}
.y32_c00264{bottom:669.673024pt;}
.y33_c00264{bottom:669.673041pt;}
.y31_c00264{bottom:669.673051pt;}
.y1c_c00264{bottom:690.632151pt;}
.y20_c00264{bottom:690.632309pt;}
.y1d_c00264{bottom:690.632515pt;}
.y1b_c00264{bottom:690.632524pt;}
.y21_c00264{bottom:690.632700pt;}
.y1f_c00264{bottom:690.632745pt;}
.y1e_c00264{bottom:690.632888pt;}
.y22_c00264{bottom:690.633180pt;}
.y23_c00264{bottom:690.633384pt;}
.y24_c00264{bottom:690.633811pt;}
.y25_c00264{bottom:690.634201pt;}
.y26_c00264{bottom:690.634565pt;}
.y10_c00264{bottom:708.720371pt;}
.y11_c00264{bottom:708.938491pt;}
.y12_c00264{bottom:709.546020pt;}
.y13_c00264{bottom:710.007452pt;}
.y14_c00264{bottom:710.247191pt;}
.y15_c00264{bottom:710.870667pt;}
.y16_c00264{bottom:711.110788pt;}
.y17_c00264{bottom:711.502064pt;}
.y18_c00264{bottom:711.972677pt;}
.y19_c00264{bottom:712.234557pt;}
.y1a_c00264{bottom:712.836135pt;}
.y4_c00264{bottom:729.360000pt;}
.y5_c00264{bottom:729.482659pt;}
.y6_c00264{bottom:729.994965pt;}
.y7_c00264{bottom:730.270775pt;}
.y8_c00264{bottom:730.638760pt;}
.y9_c00264{bottom:730.779833pt;}
.ya_c00264{bottom:731.196361pt;}
.yb_c00264{bottom:731.355980pt;}
.yc_c00264{bottom:731.537364pt;}
.yd_c00264{bottom:731.816412pt;}
.ye_c00264{bottom:731.908476pt;}
.yf_c00264{bottom:732.093304pt;}
.y3_c00264{bottom:771.121333pt;}
.y2_c00264{bottom:809.764000pt;}
.y1_c00264{bottom:826.325333pt;}
.h14_c00264{height:13.066667pt;}
.hd_c00264{height:14.933333pt;}
.h15_c00264{height:19.600000pt;}
.h1b_c00264{height:22.400000pt;}
.h1c_c00264{height:27.066667pt;}
.h10_c00264{height:40.133333pt;}
.h18_c00264{height:46.666667pt;}
.h2_c00264{height:48.533333pt;}
.h17_c00264{height:51.333333pt;}
.h12_c00264{height:52.266667pt;}
.h3_c00264{height:53.200000pt;}
.hf_c00264{height:54.133333pt;}
.h13_c00264{height:57.866667pt;}
.hc_c00264{height:58.800000pt;}
.hb_c00264{height:59.733333pt;}
.h9_c00264{height:60.666667pt;}
.h6_c00264{height:60.668153pt;}
.ha_c00264{height:61.600000pt;}
.he_c00264{height:62.533333pt;}
.h7_c00264{height:62.534865pt;}
.h16_c00264{height:63.466667pt;}
.h5_c00264{height:63.468222pt;}
.h8_c00264{height:64.401578pt;}
.h1f_c00264{height:65.333333pt;}
.h1a_c00264{height:66.266667pt;}
.h20_c00264{height:67.200000pt;}
.h1e_c00264{height:69.066667pt;}
.h19_c00264{height:70.000000pt;}
.h1d_c00264{height:72.800000pt;}
.h4_c00264{height:78.400000pt;}
.h11_c00264{height:113.866667pt;}
.h1_c00264{height:893.333333pt;}
.h0_c00264{height:893.466667pt;}
.w1_c00264{width:634.000000pt;}
.w0_c00264{width:634.266667pt;}
.x0_c00264{left:0.000000pt;}
.xd_c00264{left:27.120000pt;}
.x1_c00264{left:39.120000pt;}
.xe_c00264{left:53.040000pt;}
.x2_c00264{left:65.520000pt;}
.x18_c00264{left:73.277333pt;}
.x5a_c00264{left:74.640000pt;}
.x77_c00264{left:75.668000pt;}
.x9d_c00264{left:76.560000pt;}
.xaf_c00264{left:78.000000pt;}
.xb8_c00264{left:78.960000pt;}
.xc6_c00264{left:79.920000pt;}
.xc9_c00264{left:80.880000pt;}
.xda_c00264{left:82.041333pt;}
.x46_c00264{left:88.800000pt;}
.x2b_c00264{left:89.761223pt;}
.x19_c00264{left:90.800000pt;}
.xbf_c00264{left:93.120000pt;}
.x24_c00264{left:94.920004pt;}
.x83_c00264{left:96.720000pt;}
.xf_c00264{left:99.360000pt;}
.x97_c00264{left:100.560000pt;}
.x47_c00264{left:106.800000pt;}
.xca_c00264{left:108.720000pt;}
.x61_c00264{left:110.400000pt;}
.x52_c00264{left:112.080000pt;}
.x3_c00264{left:114.000000pt;}
.x34_c00264{left:115.202517pt;}
.x9e_c00264{left:116.880000pt;}
.x78_c00264{left:117.910667pt;}
.x8b_c00264{left:120.720000pt;}
.xa6_c00264{left:121.920000pt;}
.x70_c00264{left:123.840000pt;}
.xdb_c00264{left:125.713333pt;}
.x68_c00264{left:127.200000pt;}
.xb9_c00264{left:128.640000pt;}
.x48_c00264{left:130.560000pt;}
.x35_c00264{left:132.483367pt;}
.x98_c00264{left:134.400000pt;}
.xc0_c00264{left:136.320000pt;}
.x5b_c00264{left:138.960000pt;}
.x3e_c00264{left:139.975557pt;}
.xa7_c00264{left:141.120000pt;}
.x2c_c00264{left:144.482568pt;}
.xd0_c00264{left:145.440000pt;}
.x10_c00264{left:147.120000pt;}
.x69_c00264{left:148.320000pt;}
.xdc_c00264{left:149.725333pt;}
.xba_c00264{left:151.920000pt;}
.x36_c00264{left:154.324440pt;}
.x25_c00264{left:155.613392pt;}
.xc1_c00264{left:156.720000pt;}
.x4_c00264{left:158.160000pt;}
.xa8_c00264{left:159.120000pt;}
.x71_c00264{left:161.520000pt;}
.x1a_c00264{left:163.986667pt;}
.xe0_c00264{left:166.944000pt;}
.x3f_c00264{left:169.757096pt;}
.x14_c00264{left:171.600000pt;}
.x84_c00264{left:175.200000pt;}
.x49_c00264{left:177.120000pt;}
.x5_c00264{left:179.040000pt;}
.x5c_c00264{left:184.320000pt;}
.x72_c00264{left:185.520000pt;}
.x37_c00264{left:191.284917pt;}
.x53_c00264{left:192.240000pt;}
.x11_c00264{left:194.880000pt;}
.xe1_c00264{left:197.794667pt;}
.xc7_c00264{left:198.720000pt;}
.xce_c00264{left:200.400000pt;}
.x26_c00264{left:201.721755pt;}
.x1b_c00264{left:203.388000pt;}
.xc2_c00264{left:204.480000pt;}
.x62_c00264{left:207.120000pt;}
.x5d_c00264{left:210.000000pt;}
.x4a_c00264{left:212.400000pt;}
.x6_c00264{left:213.600000pt;}
.x2d_c00264{left:214.804679pt;}
.xcb_c00264{left:216.480000pt;}
.x38_c00264{left:219.124947pt;}
.x54_c00264{left:220.320000pt;}
.x92_c00264{left:221.760000pt;}
.x79_c00264{left:224.713333pt;}
.x27_c00264{left:225.683917pt;}
.xbb_c00264{left:227.520000pt;}
.x85_c00264{left:228.720000pt;}
.x40_c00264{left:230.934859pt;}
.x4b_c00264{left:233.040000pt;}
.xa2_c00264{left:238.800000pt;}
.xc8_c00264{left:240.480000pt;}
.xb7_c00264{left:241.680000pt;}
.x39_c00264{left:244.326179pt;}
.xd1_c00264{left:246.000000pt;}
.x7a_c00264{left:247.516000pt;}
.x73_c00264{left:248.640000pt;}
.xb0_c00264{left:250.560000pt;}
.x55_c00264{left:253.680000pt;}
.x1c_c00264{left:255.957333pt;}
.xcc_c00264{left:257.040000pt;}
.xc3_c00264{left:258.480000pt;}
.x15_c00264{left:261.120000pt;}
.x6a_c00264{left:262.800000pt;}
.x41_c00264{left:265.015101pt;}
.x12_c00264{left:269.520000pt;}
.x81_c00264{left:271.200000pt;}
.x7_c00264{left:272.640000pt;}
.xb1_c00264{left:273.840000pt;}
.x1d_c00264{left:276.110667pt;}
.x3a_c00264{left:277.926488pt;}
.xa9_c00264{left:281.280000pt;}
.x63_c00264{left:282.240000pt;}
.x4c_c00264{left:284.400000pt;}
.x56_c00264{left:285.840000pt;}
.x74_c00264{left:286.800000pt;}
.x28_c00264{left:288.083944pt;}
.x8_c00264{left:289.680000pt;}
.x9f_c00264{left:290.880000pt;}
.x8c_c00264{left:294.000000pt;}
.x86_c00264{left:295.440000pt;}
.xbc_c00264{left:298.080000pt;}
.xd5_c00264{left:299.520000pt;}
.x9_c00264{left:300.720000pt;}
.x7b_c00264{left:302.448000pt;}
.xa3_c00264{left:305.760000pt;}
.x6b_c00264{left:307.680000pt;}
.xb3_c00264{left:309.360000pt;}
.x87_c00264{left:311.040000pt;}
.x29_c00264{left:312.100773pt;}
.x3b_c00264{left:313.206881pt;}
.x99_c00264{left:314.400000pt;}
.x2e_c00264{left:316.326987pt;}
.xe2_c00264{left:317.972000pt;}
.x5e_c00264{left:320.160000pt;}
.x7c_c00264{left:323.814667pt;}
.xa_c00264{left:325.440000pt;}
.xd6_c00264{left:326.880000pt;}
.x75_c00264{left:330.720000pt;}
.x88_c00264{left:332.640000pt;}
.xc4_c00264{left:334.080000pt;}
.x1e_c00264{left:335.614667pt;}
.x2f_c00264{left:336.967995pt;}
.x57_c00264{left:340.080000pt;}
.xa0_c00264{left:341.040000pt;}
.x6c_c00264{left:342.000000pt;}
.x82_c00264{left:345.600000pt;}
.xd2_c00264{left:347.280000pt;}
.xcf_c00264{left:350.400000pt;}
.x16_c00264{left:352.080000pt;}
.xb4_c00264{left:353.040000pt;}
.x5f_c00264{left:354.240000pt;}
.x1f_c00264{left:358.417333pt;}
.x93_c00264{left:360.000000pt;}
.xe3_c00264{left:364.825333pt;}
.x8d_c00264{left:365.760000pt;}
.x42_c00264{left:369.922505pt;}
.x4d_c00264{left:371.520000pt;}
.xb2_c00264{left:374.640000pt;}
.xdd_c00264{left:375.977333pt;}
.xaa_c00264{left:377.040000pt;}
.x64_c00264{left:378.000000pt;}
.xa4_c00264{left:379.200000pt;}
.x89_c00264{left:383.040000pt;}
.x20_c00264{left:384.329333pt;}
.x7d_c00264{left:385.993333pt;}
.x8e_c00264{left:387.360000pt;}
.xbd_c00264{left:388.800000pt;}
.x43_c00264{left:392.010664pt;}
.x65_c00264{left:395.520000pt;}
.xd7_c00264{left:396.480000pt;}
.xa5_c00264{left:397.440000pt;}
.xb_c00264{left:398.880000pt;}
.x30_c00264{left:400.809788pt;}
.xa1_c00264{left:406.800000pt;}
.x9a_c00264{left:408.000000pt;}
.x6d_c00264{left:410.160000pt;}
.xde_c00264{left:411.490667pt;}
.xbe_c00264{left:414.960000pt;}
.x58_c00264{left:417.120000pt;}
.x3c_c00264{left:418.810719pt;}
.x31_c00264{left:420.490749pt;}
.x4e_c00264{left:421.920000pt;}
.x21_c00264{left:424.193333pt;}
.xc_c00264{left:426.240000pt;}
.x9b_c00264{left:428.160000pt;}
.x94_c00264{left:430.560000pt;}
.xcd_c00264{left:431.520000pt;}
.x13_c00264{left:433.200000pt;}
.x44_c00264{left:435.924305pt;}
.x22_c00264{left:437.345333pt;}
.x66_c00264{left:438.240000pt;}
.xd3_c00264{left:439.680000pt;}
.x7e_c00264{left:444.306667pt;}
.x95_c00264{left:445.200000pt;}
.x4f_c00264{left:446.160000pt;}
.x76_c00264{left:447.840000pt;}
.x3d_c00264{left:449.290879pt;}
.x60_c00264{left:453.120000pt;}
.x32_c00264{left:457.691236pt;}
.x8f_c00264{left:459.600000pt;}
.xab_c00264{left:462.000000pt;}
.x23_c00264{left:463.749333pt;}
.xc5_c00264{left:464.640000pt;}
.x17_c00264{left:465.600000pt;}
.x96_c00264{left:467.520000pt;}
.x8a_c00264{left:473.040000pt;}
.x7f_c00264{left:477.202667pt;}
.x6e_c00264{left:480.240000pt;}
.x50_c00264{left:481.440000pt;}
.x2a_c00264{left:484.670485pt;}
.x33_c00264{left:488.411405pt;}
.xd8_c00264{left:493.680000pt;}
.x9c_c00264{left:495.600000pt;}
.xb5_c00264{left:497.760000pt;}
.xdf_c00264{left:507.245333pt;}
.x90_c00264{left:514.560000pt;}
.xd9_c00264{left:518.880000pt;}
.x51_c00264{left:520.800000pt;}
.x59_c00264{left:522.000000pt;}
.x91_c00264{left:522.960000pt;}
.x45_c00264{left:524.254255pt;}
.x67_c00264{left:525.360000pt;}
.xb6_c00264{left:526.560000pt;}
.xad_c00264{left:530.400000pt;}
.xd4_c00264{left:533.040000pt;}
.x6f_c00264{left:535.200000pt;}
.xac_c00264{left:536.400000pt;}
.x80_c00264{left:537.909333pt;}
.xae_c00264{left:539.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_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_ef4e99a7aa2876b3106553d3.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;}
.mfb_c00265{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.mfc_c00265{transform:matrix(0.010800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010800,0.000000,0.000000,0.250000,0,0);}
.mea_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);}
.mdb_c00265{transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);}
.m114_c00265{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);}
.m124_c00265{transform:matrix(0.113545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113545,0.000000,0.000000,0.250000,0,0);}
.m116_c00265{transform:matrix(0.124920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124920,0.000000,0.000000,0.250000,0,0);}
.m11e_c00265{transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);}
.m127_c00265{transform:matrix(0.131485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131485,0.000000,0.000000,0.250000,0,0);}
.m123_c00265{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);}
.m11d_c00265{transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);}
.m117_c00265{transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);}
.md4_c00265{transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);}
.m11b_c00265{transform:matrix(0.138765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138765,0.000000,0.000000,0.250000,0,0);}
.m11f_c00265{transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141870,0.000000,0.000000,0.250000,0,0);}
.mc8_c00265{transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);}
.mc2_c00265{transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143920,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{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);}
.m122_c00265{transform:matrix(0.144890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144890,0.000000,0.000000,0.250000,0,0);}
.m126_c00265{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);}
.m125_c00265{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);}
.md9_c00265{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);}
.m104_c00265{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);}
.m108_c00265{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);}
.mc1_c00265{transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{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);}
.m102_c00265{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);}
.m118_c00265{transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151880,0.000000,0.000000,0.250000,0,0);}
.mdc_c00265{transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);}
.mc6_c00265{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);}
.m100_c00265{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);}
.m28_c00265{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);}
.m119_c00265{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);}
.m42_c00265{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);}
.m103_c00265{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);}
.m88_c00265{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);}
.mae_c00265{transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);}
.m135_c00265{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);}
.m35_c00265{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);}
.ma_c00265{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);}
.m11c_c00265{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);}
.m72_c00265{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);}
.m107_c00265{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.me0_c00265{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);}
.m134_c00265{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);}
.m87_c00265{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);}
.m106_c00265{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);}
.m7b_c00265{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);}
.m12f_c00265{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);}
.ma9_c00265{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);}
.m67_c00265{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);}
.m3d_c00265{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);}
.m13_c00265{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);}
.m137_c00265{transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);}
.mb4_c00265{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);}
.m6c_c00265{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);}
.m74_c00265{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);}
.m1a_c00265{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);}
.mb2_c00265{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);}
.mca_c00265{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);}
.mfa_c00265{transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00265{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);}
.m7d_c00265{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);}
.m54_c00265{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);}
.me3_c00265{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);}
.mdd_c00265{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);}
.m7a_c00265{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);}
.mc3_c00265{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);}
.m84_c00265{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_c00265{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);}
.mda_c00265{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);}
.m98_c00265{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);}
.m38_c00265{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);}
.md8_c00265{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);}
.m6d_c00265{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);}
.m3e_c00265{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);}
.m92_c00265{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);}
.m3b_c00265{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);}
.m6a_c00265{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);}
.mb7_c00265{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);}
.m27_c00265{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);}
.m5a_c00265{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);}
.m101_c00265{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);}
.m4f_c00265{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);}
.m60_c00265{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);}
.m31_c00265{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);}
.m68_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);}
.m62_c00265{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);}
.mf5_c00265{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);}
.m115_c00265{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);}
.m2a_c00265{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);}
.m50_c00265{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);}
.m9_c00265{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);}
.m6b_c00265{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);}
.m6e_c00265{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);}
.m41_c00265{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);}
.m4d_c00265{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);}
.m4b_c00265{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);}
.m58_c00265{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);}
.maa_c00265{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);}
.m69_c00265{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);}
.md_c00265{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);}
.m71_c00265{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);}
.m1f_c00265{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);}
.m10_c00265{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);}
.m56_c00265{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);}
.mde_c00265{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);}
.mc_c00265{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);}
.m73_c00265{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);}
.m3f_c00265{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);}
.mba_c00265{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);}
.md5_c00265{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);}
.m48_c00265{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);}
.m6f_c00265{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);}
.m95_c00265{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);}
.md7_c00265{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);}
.mff_c00265{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);}
.m11_c00265{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);}
.me_c00265{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);}
.ma1_c00265{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);}
.m5b_c00265{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);}
.m75_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);}
.mef_c00265{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);}
.m76_c00265{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);}
.m128_c00265{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);}
.mcc_c00265{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);}
.m40_c00265{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);}
.m105_c00265{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.mf6_c00265{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);}
.mbd_c00265{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);}
.m109_c00265{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);}
.mf7_c00265{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);}
.m79_c00265{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);}
.m34_c00265{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);}
.m78_c00265{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);}
.m3c_c00265{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);}
.m45_c00265{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);}
.ma5_c00265{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);}
.m57_c00265{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);}
.m39_c00265{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);}
.mf8_c00265{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);}
.m22_c00265{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);}
.m2b_c00265{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);}
.mf9_c00265{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);}
.m12e_c00265{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);}
.m1b_c00265{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);}
.mc9_c00265{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);}
.ma0_c00265{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);}
.m9e_c00265{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);}
.m17_c00265{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);}
.m9a_c00265{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);}
.med_c00265{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);}
.m99_c00265{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);}
.m2c_c00265{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);}
.m121_c00265{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);}
.m94_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);}
.mbb_c00265{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);}
.m9b_c00265{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);}
.m1d_c00265{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);}
.m8c_c00265{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);}
.m5c_c00265{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);}
.m36_c00265{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);}
.md6_c00265{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);}
.mc7_c00265{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);}
.m53_c00265{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);}
.m96_c00265{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);}
.m8b_c00265{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);}
.mc5_c00265{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);}
.mf0_c00265{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);}
.mf1_c00265{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);}
.m19_c00265{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);}
.m8d_c00265{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);}
.m47_c00265{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);}
.m86_c00265{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);}
.m12_c00265{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);}
.ma3_c00265{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);}
.m11a_c00265{transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{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);}
.m120_c00265{transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{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);}
.m10a_c00265{transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);}
.mec_c00265{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);}
.m7e_c00265{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);}
.m81_c00265{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);}
.m55_c00265{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);}
.mbf_c00265{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);}
.mcd_c00265{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);}
.mbe_c00265{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);}
.mc0_c00265{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);}
.m4a_c00265{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);}
.m7c_c00265{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);}
.mbc_c00265{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);}
.me6_c00265{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);}
.m15_c00265{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);}
.m5f_c00265{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);}
.m82_c00265{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);}
.m9d_c00265{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);}
.m21_c00265{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);}
.m136_c00265{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);}
.m16_c00265{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);}
.mb6_c00265{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);}
.m132_c00265{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);}
.m29_c00265{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);}
.m59_c00265{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);}
.m33_c00265{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);}
.mb_c00265{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);}
.m12d_c00265{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);}
.me4_c00265{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.mf3_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);}
.ma4_c00265{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);}
.m2d_c00265{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);}
.m1e_c00265{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);}
.mb1_c00265{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);}
.m18_c00265{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);}
.m85_c00265{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);}
.ma2_c00265{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);}
.m10e_c00265{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);}
.m133_c00265{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);}
.mee_c00265{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);}
.m130_c00265{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);}
.m26_c00265{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);}
.me1_c00265{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{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);}
.mce_c00265{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);}
.m20_c00265{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);}
.m30_c00265{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);}
.md0_c00265{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);}
.m61_c00265{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);}
.ma7_c00265{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);}
.m110_c00265{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);}
.m37_c00265{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);}
.m89_c00265{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);}
.m46_c00265{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);}
.m7_c00265{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);}
.m1c_c00265{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);}
.m65_c00265{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);}
.m4c_c00265{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);}
.m80_c00265{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);}
.ma8_c00265{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);}
.m111_c00265{transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);}
.m93_c00265{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);}
.m3a_c00265{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);}
.m24_c00265{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);}
.m10f_c00265{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);}
.m12c_c00265{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);}
.m131_c00265{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);}
.me9_c00265{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);}
.m91_c00265{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);}
.m64_c00265{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);}
.mab_c00265{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);}
.m51_c00265{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);}
.m113_c00265{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);}
.m8f_c00265{transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{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);}
.mad_c00265{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);}
.mb9_c00265{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);}
.md1_c00265{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);}
.mb5_c00265{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);}
.m6_c00265{transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{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);}
.m97_c00265{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);}
.m49_c00265{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);}
.m5e_c00265{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);}
.mac_c00265{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);}
.m9c_c00265{transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{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);}
.m70_c00265{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);}
.maf_c00265{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);}
.m2f_c00265{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);}
.m2_c00265{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);}
.m52_c00265{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);}
.mf_c00265{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);}
.mc4_c00265{transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);}
.m12b_c00265{transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);}
.m112_c00265{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);}
.m1_c00265{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);}
.m10c_c00265{transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242335,0.000000,0.000000,0.250000,0,0);}
.me2_c00265{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);}
.mf4_c00265{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);}
.mfe_c00265{transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{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);}
.m44_c00265{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);}
.mf2_c00265{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);}
.mdf_c00265{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m10d_c00265{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.mfd_c00265{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{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);}
.m10b_c00265{transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);}
.m9f_c00265{transform:matrix(0.255695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255695,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{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);}
.m14_c00265{transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{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);}
.mcb_c00265{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);}
.m90_c00265{transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);}
.meb_c00265{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);}
.mcf_c00265{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{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);}
.me8_c00265{transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);}
.md3_c00265{transform:matrix(0.279740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279740,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286680,0.000000,0.000000,0.250000,0,0);}
.ma6_c00265{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{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);}
.mb8_c00265{transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351105,0.000000,0.000000,0.250000,0,0);}
.md2_c00265{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);}
.m5_c00265{transform:matrix(0.364465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364465,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.385930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385930,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.393105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393105,0.000000,0.000000,0.250000,0,0);}
.m129_c00265{transform:matrix(0.418880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418880,0.000000,0.000000,0.250000,0,0);}
.me5_c00265{transform:matrix(0.428010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428010,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.474825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474825,0.000000,0.000000,0.250000,0,0);}
.m12a_c00265{transform:matrix(1.598605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.598605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.598605,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;}
.fs5_c00265{font-size:18.900000px;}
.fs4_c00265{font-size:22.050000px;}
.fs3_c00265{font-size:37.800000px;}
.fs1_c00265{font-size:38.850000px;}
.fs0_c00265{font-size:40.950000px;}
.fs2_c00265{font-size:42.000000px;}
.fs14_c00265{font-size:54.600000px;}
.fs9_c00265{font-size:61.950000px;}
.fsf_c00265{font-size:63.000000px;}
.fsc_c00265{font-size:64.050000px;}
.fs8_c00265{font-size:65.100000px;}
.fse_c00265{font-size:66.150000px;}
.fsa_c00265{font-size:67.200000px;}
.fsd_c00265{font-size:68.250000px;}
.fs7_c00265{font-size:69.300000px;}
.fsb_c00265{font-size:70.350000px;}
.fs11_c00265{font-size:71.400000px;}
.fs10_c00265{font-size:74.550000px;}
.fs6_c00265{font-size:84.000000px;}
.fs13_c00265{font-size:95.550000px;}
.fs12_c00265{font-size:101.850000px;}
.y0_c00265{bottom:0.000000px;}
.y24_c00265{bottom:173.218500px;}
.y23_c00265{bottom:202.089000px;}
.y22_c00265{bottom:232.468500px;}
.y21_c00265{bottom:254.035500px;}
.y20_c00265{bottom:281.004000px;}
.y1f_c00265{bottom:304.257000px;}
.y1e_c00265{bottom:327.756000px;}
.y1d_c00265{bottom:349.953000px;}
.y1c_c00265{bottom:372.993000px;}
.y1b_c00265{bottom:396.390000px;}
.y1a_c00265{bottom:418.825500px;}
.y19_c00265{bottom:441.783000px;}
.y18_c00265{bottom:464.431500px;}
.y17_c00265{bottom:485.379000px;}
.y16_c00265{bottom:509.790000px;}
.y15_c00265{bottom:532.470000px;}
.y14_c00265{bottom:554.517000px;}
.y13_c00265{bottom:578.131500px;}
.y12_c00265{bottom:600.748500px;}
.y11_c00265{bottom:623.367000px;}
.y10_c00265{bottom:646.077000px;}
.yf_c00265{bottom:668.757000px;}
.ye_c00265{bottom:691.738500px;}
.yd_c00265{bottom:714.387000px;}
.yc_c00265{bottom:737.034000px;}
.yb_c00265{bottom:759.684000px;}
.ya_c00265{bottom:782.364000px;}
.y9_c00265{bottom:805.084500px;}
.y8_c00265{bottom:827.929500px;}
.y3_c00265{bottom:853.470000px;}
.y7_c00265{bottom:871.396500px;}
.y5_c00265{bottom:898.830000px;}
.y6_c00265{bottom:900.990000px;}
.y4_c00265{bottom:902.070000px;}
.y1_c00265{bottom:920.160000px;}
.y2_c00265{bottom:928.530000px;}
.h7_c00265{height:18.900000px;}
.h6_c00265{height:22.050000px;}
.h5_c00265{height:37.800000px;}
.h3_c00265{height:38.850000px;}
.h2_c00265{height:40.950000px;}
.h4_c00265{height:42.000000px;}
.h16_c00265{height:54.600000px;}
.hb_c00265{height:61.950000px;}
.h11_c00265{height:63.000000px;}
.he_c00265{height:64.050000px;}
.ha_c00265{height:65.100000px;}
.h10_c00265{height:66.150000px;}
.hc_c00265{height:67.200000px;}
.hf_c00265{height:68.250000px;}
.h9_c00265{height:69.300000px;}
.hd_c00265{height:70.350000px;}
.h13_c00265{height:71.400000px;}
.h12_c00265{height:74.550000px;}
.h8_c00265{height:84.000000px;}
.h15_c00265{height:95.550000px;}
.h14_c00265{height:101.850000px;}
.h0_c00265{height:1008.450000px;}
.h1_c00265{height:1008.750000px;}
.w0_c00265{width:678.450000px;}
.w1_c00265{width:678.750000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:85.590000px;}
.x2_c00265{left:87.480000px;}
.x3_c00265{left:91.530000px;}
.x4_c00265{left:94.500000px;}
.x9b_c00265{left:120.420000px;}
.x11_c00265{left:131.490000px;}
.xa3_c00265{left:134.460000px;}
.x8b_c00265{left:137.160000px;}
.x3b_c00265{left:138.240000px;}
.x59_c00265{left:139.320000px;}
.x6_c00265{left:140.670000px;}
.xb3_c00265{left:148.770000px;}
.x9c_c00265{left:150.120000px;}
.x8f_c00265{left:158.760000px;}
.x12_c00265{left:160.650000px;}
.xb4_c00265{left:169.560000px;}
.x4e_c00265{left:170.640000px;}
.x93_c00265{left:172.260000px;}
.x66_c00265{left:175.500000px;}
.x1c_c00265{left:177.930000px;}
.x3c_c00265{left:180.630000px;}
.x2d_c00265{left:182.250000px;}
.xb5_c00265{left:183.600000px;}
.xa4_c00265{left:184.950000px;}
.x94_c00265{left:188.460000px;}
.x7e_c00265{left:190.620000px;}
.xa6_c00265{left:191.700000px;}
.x47_c00265{left:193.860000px;}
.x7_c00265{left:197.370000px;}
.x77_c00265{left:201.960000px;}
.x42_c00265{left:203.580000px;}
.x9d_c00265{left:206.280000px;}
.x4f_c00265{left:209.790000px;}
.x24_c00265{left:211.410000px;}
.x6b_c00265{left:213.570000px;}
.x85_c00265{left:214.650000px;}
.x67_c00265{left:215.730000px;}
.xa7_c00265{left:216.810000px;}
.x48_c00265{left:218.160000px;}
.x8_c00265{left:219.780000px;}
.x13_c00265{left:222.210000px;}
.x34_c00265{left:223.290000px;}
.x5a_c00265{left:227.880000px;}
.xb6_c00265{left:229.500000px;}
.x73_c00265{left:233.550000px;}
.x7f_c00265{left:235.440000px;}
.x25_c00265{left:238.950000px;}
.x50_c00265{left:241.650000px;}
.x86_c00265{left:244.080000px;}
.x78_c00265{left:246.510000px;}
.x5_c00265{left:250.020000px;}
.x2e_c00265{left:252.990000px;}
.x6c_c00265{left:255.960000px;}
.x3d_c00265{left:257.310000px;}
.xab_c00265{left:263.250000px;}
.x49_c00265{left:265.680000px;}
.x80_c00265{left:269.460000px;}
.x26_c00265{left:272.700000px;}
.x14_c00265{left:276.750000px;}
.x6d_c00265{left:282.420000px;}
.x95_c00265{left:286.200000px;}
.x35_c00265{left:288.360000px;}
.xac_c00265{left:289.440000px;}
.x87_c00265{left:290.790000px;}
.x27_c00265{left:293.490000px;}
.x68_c00265{left:294.840000px;}
.x2f_c00265{left:298.350000px;}
.xa8_c00265{left:301.050000px;}
.x9_c00265{left:303.480000px;}
.x15_c00265{left:304.560000px;}
.x43_c00265{left:308.340000px;}
.x81_c00265{left:309.960000px;}
.x79_c00265{left:312.390000px;}
.x1d_c00265{left:318.060000px;}
.x51_c00265{left:320.760000px;}
.x96_c00265{left:328.320000px;}
.x36_c00265{left:329.670000px;}
.x6e_c00265{left:330.750000px;}
.xad_c00265{left:333.450000px;}
.xa_c00265{left:335.070000px;}
.x61_c00265{left:336.960000px;}
.x4a_c00265{left:338.850000px;}
.x88_c00265{left:340.740000px;}
.xb7_c00265{left:350.730000px;}
.xa5_c00265{left:351.810000px;}
.x97_c00265{left:352.890000px;}
.x82_c00265{left:355.590000px;}
.x28_c00265{left:356.670000px;}
.x3e_c00265{left:359.100000px;}
.x52_c00265{left:362.070000px;}
.xa9_c00265{left:363.690000px;}
.x44_c00265{left:365.850000px;}
.x8c_c00265{left:366.930000px;}
.x6f_c00265{left:368.010000px;}
.x30_c00265{left:369.900000px;}
.x5b_c00265{left:372.330000px;}
.x7a_c00265{left:375.570000px;}
.xaf_c00265{left:376.650000px;}
.xb_c00265{left:379.080000px;}
.x1e_c00265{left:381.780000px;}
.x53_c00265{left:383.940000px;}
.x9e_c00265{left:386.100000px;}
.x45_c00265{left:387.450000px;}
.x16_c00265{left:389.070000px;}
.x8d_c00265{left:390.150000px;}
.x5c_c00265{left:392.310000px;}
.x69_c00265{left:398.250000px;}
.x3f_c00265{left:399.870000px;}
.x37_c00265{left:402.840000px;}
.x98_c00265{left:404.190000px;}
.x90_c00265{left:406.620000px;}
.xaa_c00265{left:409.590000px;}
.x62_c00265{left:412.020000px;}
.xb8_c00265{left:416.070000px;}
.x29_c00265{left:417.960000px;}
.x9f_c00265{left:419.310000px;}
.xb0_c00265{left:421.200000px;}
.x83_c00265{left:422.820000px;}
.xc_c00265{left:424.170000px;}
.x70_c00265{left:426.870000px;}
.x17_c00265{left:427.950000px;}
.x38_c00265{left:429.570000px;}
.x31_c00265{left:436.860000px;}
.xb9_c00265{left:437.940000px;}
.x1f_c00265{left:441.990000px;}
.xae_c00265{left:443.340000px;}
.x74_c00265{left:445.770000px;}
.x54_c00265{left:447.120000px;}
.xa0_c00265{left:449.280000px;}
.x63_c00265{left:455.760000px;}
.x18_c00265{left:457.920000px;}
.x5d_c00265{left:463.590000px;}
.x4b_c00265{left:465.210000px;}
.x39_c00265{left:466.560000px;}
.x40_c00265{left:468.450000px;}
.x55_c00265{left:469.530000px;}
.x20_c00265{left:472.230000px;}
.x7b_c00265{left:474.120000px;}
.x75_c00265{left:477.900000px;}
.xb1_c00265{left:481.680000px;}
.x4c_c00265{left:483.300000px;}
.x2a_c00265{left:484.920000px;}
.x89_c00265{left:491.400000px;}
.x71_c00265{left:492.750000px;}
.x99_c00265{left:493.830000px;}
.xb2_c00265{left:497.070000px;}
.x5e_c00265{left:498.960000px;}
.xd_c00265{left:501.660000px;}
.x91_c00265{left:504.360000px;}
.x76_c00265{left:506.250000px;}
.x19_c00265{left:509.220000px;}
.x8a_c00265{left:513.000000px;}
.x7c_c00265{left:514.890000px;}
.x2b_c00265{left:518.130000px;}
.xa1_c00265{left:519.750000px;}
.x32_c00265{left:522.450000px;}
.xe_c00265{left:525.960000px;}
.x6a_c00265{left:528.660000px;}
.x56_c00265{left:532.710000px;}
.xba_c00265{left:535.410000px;}
.x64_c00265{left:536.760000px;}
.x1a_c00265{left:537.840000px;}
.x21_c00265{left:542.160000px;}
.x3a_c00265{left:549.180000px;}
.x5f_c00265{left:551.070000px;}
.x72_c00265{left:555.390000px;}
.x41_c00265{left:558.090000px;}
.x57_c00265{left:562.950000px;}
.x8e_c00265{left:565.380000px;}
.x4d_c00265{left:568.080000px;}
.xf_c00265{left:569.700000px;}
.xa2_c00265{left:572.130000px;}
.x92_c00265{left:573.480000px;}
.x22_c00265{left:575.910000px;}
.x1b_c00265{left:578.880000px;}
.x46_c00265{left:581.310000px;}
.x2c_c00265{left:583.200000px;}
.x60_c00265{left:584.820000px;}
.x33_c00265{left:587.790000px;}
.x65_c00265{left:588.870000px;}
.x84_c00265{left:591.030000px;}
.x9a_c00265{left:596.160000px;}
.x23_c00265{left:599.130000px;}
.x10_c00265{left:601.560000px;}
.x58_c00265{left:605.070000px;}
.x7d_c00265{left:635.040000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
.fs5_c00265{font-size:16.800000pt;}
.fs4_c00265{font-size:19.600000pt;}
.fs3_c00265{font-size:33.600000pt;}
.fs1_c00265{font-size:34.533333pt;}
.fs0_c00265{font-size:36.400000pt;}
.fs2_c00265{font-size:37.333333pt;}
.fs14_c00265{font-size:48.533333pt;}
.fs9_c00265{font-size:55.066667pt;}
.fsf_c00265{font-size:56.000000pt;}
.fsc_c00265{font-size:56.933333pt;}
.fs8_c00265{font-size:57.866667pt;}
.fse_c00265{font-size:58.800000pt;}
.fsa_c00265{font-size:59.733333pt;}
.fsd_c00265{font-size:60.666667pt;}
.fs7_c00265{font-size:61.600000pt;}
.fsb_c00265{font-size:62.533333pt;}
.fs11_c00265{font-size:63.466667pt;}
.fs10_c00265{font-size:66.266667pt;}
.fs6_c00265{font-size:74.666667pt;}
.fs13_c00265{font-size:84.933333pt;}
.fs12_c00265{font-size:90.533333pt;}
.y0_c00265{bottom:0.000000pt;}
.y24_c00265{bottom:153.972000pt;}
.y23_c00265{bottom:179.634667pt;}
.y22_c00265{bottom:206.638667pt;}
.y21_c00265{bottom:225.809333pt;}
.y20_c00265{bottom:249.781333pt;}
.y1f_c00265{bottom:270.450667pt;}
.y1e_c00265{bottom:291.338667pt;}
.y1d_c00265{bottom:311.069333pt;}
.y1c_c00265{bottom:331.549333pt;}
.y1b_c00265{bottom:352.346667pt;}
.y1a_c00265{bottom:372.289333pt;}
.y19_c00265{bottom:392.696000pt;}
.y18_c00265{bottom:412.828000pt;}
.y17_c00265{bottom:431.448000pt;}
.y16_c00265{bottom:453.146667pt;}
.y15_c00265{bottom:473.306667pt;}
.y14_c00265{bottom:492.904000pt;}
.y13_c00265{bottom:513.894667pt;}
.y12_c00265{bottom:533.998667pt;}
.y11_c00265{bottom:554.104000pt;}
.y10_c00265{bottom:574.290667pt;}
.yf_c00265{bottom:594.450667pt;}
.ye_c00265{bottom:614.878667pt;}
.yd_c00265{bottom:635.010667pt;}
.yc_c00265{bottom:655.141333pt;}
.yb_c00265{bottom:675.274667pt;}
.ya_c00265{bottom:695.434667pt;}
.y9_c00265{bottom:715.630667pt;}
.y8_c00265{bottom:735.937333pt;}
.y3_c00265{bottom:758.640000pt;}
.y7_c00265{bottom:774.574667pt;}
.y5_c00265{bottom:798.960000pt;}
.y6_c00265{bottom:800.880000pt;}
.y4_c00265{bottom:801.840000pt;}
.y1_c00265{bottom:817.920000pt;}
.y2_c00265{bottom:825.360000pt;}
.h7_c00265{height:16.800000pt;}
.h6_c00265{height:19.600000pt;}
.h5_c00265{height:33.600000pt;}
.h3_c00265{height:34.533333pt;}
.h2_c00265{height:36.400000pt;}
.h4_c00265{height:37.333333pt;}
.h16_c00265{height:48.533333pt;}
.hb_c00265{height:55.066667pt;}
.h11_c00265{height:56.000000pt;}
.he_c00265{height:56.933333pt;}
.ha_c00265{height:57.866667pt;}
.h10_c00265{height:58.800000pt;}
.hc_c00265{height:59.733333pt;}
.hf_c00265{height:60.666667pt;}
.h9_c00265{height:61.600000pt;}
.hd_c00265{height:62.533333pt;}
.h13_c00265{height:63.466667pt;}
.h12_c00265{height:66.266667pt;}
.h8_c00265{height:74.666667pt;}
.h15_c00265{height:84.933333pt;}
.h14_c00265{height:90.533333pt;}
.h0_c00265{height:896.400000pt;}
.h1_c00265{height:896.666667pt;}
.w0_c00265{width:603.066667pt;}
.w1_c00265{width:603.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:76.080000pt;}
.x2_c00265{left:77.760000pt;}
.x3_c00265{left:81.360000pt;}
.x4_c00265{left:84.000000pt;}
.x9b_c00265{left:107.040000pt;}
.x11_c00265{left:116.880000pt;}
.xa3_c00265{left:119.520000pt;}
.x8b_c00265{left:121.920000pt;}
.x3b_c00265{left:122.880000pt;}
.x59_c00265{left:123.840000pt;}
.x6_c00265{left:125.040000pt;}
.xb3_c00265{left:132.240000pt;}
.x9c_c00265{left:133.440000pt;}
.x8f_c00265{left:141.120000pt;}
.x12_c00265{left:142.800000pt;}
.xb4_c00265{left:150.720000pt;}
.x4e_c00265{left:151.680000pt;}
.x93_c00265{left:153.120000pt;}
.x66_c00265{left:156.000000pt;}
.x1c_c00265{left:158.160000pt;}
.x3c_c00265{left:160.560000pt;}
.x2d_c00265{left:162.000000pt;}
.xb5_c00265{left:163.200000pt;}
.xa4_c00265{left:164.400000pt;}
.x94_c00265{left:167.520000pt;}
.x7e_c00265{left:169.440000pt;}
.xa6_c00265{left:170.400000pt;}
.x47_c00265{left:172.320000pt;}
.x7_c00265{left:175.440000pt;}
.x77_c00265{left:179.520000pt;}
.x42_c00265{left:180.960000pt;}
.x9d_c00265{left:183.360000pt;}
.x4f_c00265{left:186.480000pt;}
.x24_c00265{left:187.920000pt;}
.x6b_c00265{left:189.840000pt;}
.x85_c00265{left:190.800000pt;}
.x67_c00265{left:191.760000pt;}
.xa7_c00265{left:192.720000pt;}
.x48_c00265{left:193.920000pt;}
.x8_c00265{left:195.360000pt;}
.x13_c00265{left:197.520000pt;}
.x34_c00265{left:198.480000pt;}
.x5a_c00265{left:202.560000pt;}
.xb6_c00265{left:204.000000pt;}
.x73_c00265{left:207.600000pt;}
.x7f_c00265{left:209.280000pt;}
.x25_c00265{left:212.400000pt;}
.x50_c00265{left:214.800000pt;}
.x86_c00265{left:216.960000pt;}
.x78_c00265{left:219.120000pt;}
.x5_c00265{left:222.240000pt;}
.x2e_c00265{left:224.880000pt;}
.x6c_c00265{left:227.520000pt;}
.x3d_c00265{left:228.720000pt;}
.xab_c00265{left:234.000000pt;}
.x49_c00265{left:236.160000pt;}
.x80_c00265{left:239.520000pt;}
.x26_c00265{left:242.400000pt;}
.x14_c00265{left:246.000000pt;}
.x6d_c00265{left:251.040000pt;}
.x95_c00265{left:254.400000pt;}
.x35_c00265{left:256.320000pt;}
.xac_c00265{left:257.280000pt;}
.x87_c00265{left:258.480000pt;}
.x27_c00265{left:260.880000pt;}
.x68_c00265{left:262.080000pt;}
.x2f_c00265{left:265.200000pt;}
.xa8_c00265{left:267.600000pt;}
.x9_c00265{left:269.760000pt;}
.x15_c00265{left:270.720000pt;}
.x43_c00265{left:274.080000pt;}
.x81_c00265{left:275.520000pt;}
.x79_c00265{left:277.680000pt;}
.x1d_c00265{left:282.720000pt;}
.x51_c00265{left:285.120000pt;}
.x96_c00265{left:291.840000pt;}
.x36_c00265{left:293.040000pt;}
.x6e_c00265{left:294.000000pt;}
.xad_c00265{left:296.400000pt;}
.xa_c00265{left:297.840000pt;}
.x61_c00265{left:299.520000pt;}
.x4a_c00265{left:301.200000pt;}
.x88_c00265{left:302.880000pt;}
.xb7_c00265{left:311.760000pt;}
.xa5_c00265{left:312.720000pt;}
.x97_c00265{left:313.680000pt;}
.x82_c00265{left:316.080000pt;}
.x28_c00265{left:317.040000pt;}
.x3e_c00265{left:319.200000pt;}
.x52_c00265{left:321.840000pt;}
.xa9_c00265{left:323.280000pt;}
.x44_c00265{left:325.200000pt;}
.x8c_c00265{left:326.160000pt;}
.x6f_c00265{left:327.120000pt;}
.x30_c00265{left:328.800000pt;}
.x5b_c00265{left:330.960000pt;}
.x7a_c00265{left:333.840000pt;}
.xaf_c00265{left:334.800000pt;}
.xb_c00265{left:336.960000pt;}
.x1e_c00265{left:339.360000pt;}
.x53_c00265{left:341.280000pt;}
.x9e_c00265{left:343.200000pt;}
.x45_c00265{left:344.400000pt;}
.x16_c00265{left:345.840000pt;}
.x8d_c00265{left:346.800000pt;}
.x5c_c00265{left:348.720000pt;}
.x69_c00265{left:354.000000pt;}
.x3f_c00265{left:355.440000pt;}
.x37_c00265{left:358.080000pt;}
.x98_c00265{left:359.280000pt;}
.x90_c00265{left:361.440000pt;}
.xaa_c00265{left:364.080000pt;}
.x62_c00265{left:366.240000pt;}
.xb8_c00265{left:369.840000pt;}
.x29_c00265{left:371.520000pt;}
.x9f_c00265{left:372.720000pt;}
.xb0_c00265{left:374.400000pt;}
.x83_c00265{left:375.840000pt;}
.xc_c00265{left:377.040000pt;}
.x70_c00265{left:379.440000pt;}
.x17_c00265{left:380.400000pt;}
.x38_c00265{left:381.840000pt;}
.x31_c00265{left:388.320000pt;}
.xb9_c00265{left:389.280000pt;}
.x1f_c00265{left:392.880000pt;}
.xae_c00265{left:394.080000pt;}
.x74_c00265{left:396.240000pt;}
.x54_c00265{left:397.440000pt;}
.xa0_c00265{left:399.360000pt;}
.x63_c00265{left:405.120000pt;}
.x18_c00265{left:407.040000pt;}
.x5d_c00265{left:412.080000pt;}
.x4b_c00265{left:413.520000pt;}
.x39_c00265{left:414.720000pt;}
.x40_c00265{left:416.400000pt;}
.x55_c00265{left:417.360000pt;}
.x20_c00265{left:419.760000pt;}
.x7b_c00265{left:421.440000pt;}
.x75_c00265{left:424.800000pt;}
.xb1_c00265{left:428.160000pt;}
.x4c_c00265{left:429.600000pt;}
.x2a_c00265{left:431.040000pt;}
.x89_c00265{left:436.800000pt;}
.x71_c00265{left:438.000000pt;}
.x99_c00265{left:438.960000pt;}
.xb2_c00265{left:441.840000pt;}
.x5e_c00265{left:443.520000pt;}
.xd_c00265{left:445.920000pt;}
.x91_c00265{left:448.320000pt;}
.x76_c00265{left:450.000000pt;}
.x19_c00265{left:452.640000pt;}
.x8a_c00265{left:456.000000pt;}
.x7c_c00265{left:457.680000pt;}
.x2b_c00265{left:460.560000pt;}
.xa1_c00265{left:462.000000pt;}
.x32_c00265{left:464.400000pt;}
.xe_c00265{left:467.520000pt;}
.x6a_c00265{left:469.920000pt;}
.x56_c00265{left:473.520000pt;}
.xba_c00265{left:475.920000pt;}
.x64_c00265{left:477.120000pt;}
.x1a_c00265{left:478.080000pt;}
.x21_c00265{left:481.920000pt;}
.x3a_c00265{left:488.160000pt;}
.x5f_c00265{left:489.840000pt;}
.x72_c00265{left:493.680000pt;}
.x41_c00265{left:496.080000pt;}
.x57_c00265{left:500.400000pt;}
.x8e_c00265{left:502.560000pt;}
.x4d_c00265{left:504.960000pt;}
.xf_c00265{left:506.400000pt;}
.xa2_c00265{left:508.560000pt;}
.x92_c00265{left:509.760000pt;}
.x22_c00265{left:511.920000pt;}
.x1b_c00265{left:514.560000pt;}
.x46_c00265{left:516.720000pt;}
.x2c_c00265{left:518.400000pt;}
.x60_c00265{left:519.840000pt;}
.x33_c00265{left:522.480000pt;}
.x65_c00265{left:523.440000pt;}
.x84_c00265{left:525.360000pt;}
.x9a_c00265{left:529.920000pt;}
.x23_c00265{left:532.560000pt;}
.x10_c00265{left:534.720000pt;}
.x58_c00265{left:537.840000pt;}
.x7d_c00265{left:564.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_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_4ab86c84425994a9e06b01c2.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;}
.me7_c00266{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{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);}
.m4f_c00266{transform:matrix(0.091950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);}
.m158_c00266{transform:matrix(0.131130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131130,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.134480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134480,0.000000,0.000000,0.250000,0,0);}
.m151_c00266{transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{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);}
.m32_c00266{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);}
.mc9_c00266{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);}
.m2d_c00266{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);}
.m1_c00266{transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{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);}
.m5b_c00266{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);}
.mc6_c00266{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);}
.m8b_c00266{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);}
.m27_c00266{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);}
.m77_c00266{transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154545,0.000000,0.000000,0.250000,0,0);}
.mdb_c00266{transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{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);}
.m56_c00266{transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{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);}
.mf0_c00266{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);}
.ma_c00266{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);}
.m14_c00266{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);}
.m5_c00266{transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160720,0.000000,0.000000,0.250000,0,0);}
.m103_c00266{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);}
.me_c00266{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);}
.m65_c00266{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);}
.m66_c00266{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);}
.m96_c00266{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);}
.m25_c00266{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);}
.m8e_c00266{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);}
.m2e_c00266{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);}
.mbc_c00266{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);}
.me2_c00266{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);}
.me9_c00266{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);}
.m88_c00266{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);}
.m2a_c00266{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.mfb_c00266{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);}
.m107_c00266{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);}
.m8d_c00266{transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{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);}
.m8c_c00266{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);}
.m11c_c00266{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);}
.m69_c00266{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);}
.mf7_c00266{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);}
.m5e_c00266{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);}
.m105_c00266{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);}
.m89_c00266{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);}
.m26_c00266{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);}
.mfa_c00266{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);}
.m84_c00266{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);}
.m6f_c00266{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);}
.m1c_c00266{transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);}
.m8f_c00266{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);}
.m6e_c00266{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);}
.mec_c00266{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);}
.m8_c00266{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);}
.m6a_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);}
.mcd_c00266{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);}
.m72_c00266{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);}
.m3_c00266{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);}
.md5_c00266{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);}
.m30_c00266{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);}
.mad_c00266{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);}
.m67_c00266{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);}
.m120_c00266{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);}
.mce_c00266{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);}
.m4_c00266{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);}
.m4a_c00266{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);}
.m7d_c00266{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);}
.m1a_c00266{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);}
.m51_c00266{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);}
.mcb_c00266{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);}
.me1_c00266{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);}
.m63_c00266{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);}
.m70_c00266{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);}
.m17_c00266{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);}
.m42_c00266{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);}
.m5a_c00266{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);}
.m1b_c00266{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);}
.m11d_c00266{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);}
.md4_c00266{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);}
.md3_c00266{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);}
.m68_c00266{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);}
.m4c_c00266{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);}
.mc4_c00266{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);}
.m13b_c00266{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);}
.m62_c00266{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);}
.ma2_c00266{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.mfd_c00266{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);}
.mfe_c00266{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);}
.m6_c00266{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);}
.m78_c00266{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);}
.m3c_c00266{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);}
.m97_c00266{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);}
.mb_c00266{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);}
.m61_c00266{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);}
.m7f_c00266{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);}
.m73_c00266{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);}
.maa_c00266{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);}
.m8a_c00266{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);}
.m1d_c00266{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);}
.md8_c00266{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);}
.m13d_c00266{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);}
.md9_c00266{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);}
.m5d_c00266{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);}
.m95_c00266{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);}
.mcc_c00266{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);}
.m46_c00266{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);}
.m41_c00266{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);}
.m87_c00266{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);}
.ma5_c00266{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);}
.m4d_c00266{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);}
.mb9_c00266{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);}
.mf1_c00266{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);}
.m64_c00266{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);}
.m10b_c00266{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);}
.m4b_c00266{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);}
.m85_c00266{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);}
.mef_c00266{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);}
.m82_c00266{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);}
.m13_c00266{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);}
.m11b_c00266{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);}
.m39_c00266{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);}
.m3d_c00266{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);}
.m9b_c00266{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);}
.md6_c00266{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);}
.mee_c00266{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);}
.m10_c00266{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);}
.m13a_c00266{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);}
.m81_c00266{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);}
.m80_c00266{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);}
.mb8_c00266{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);}
.m101_c00266{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);}
.m33_c00266{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);}
.md7_c00266{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);}
.mfc_c00266{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);}
.m37_c00266{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);}
.m38_c00266{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);}
.mda_c00266{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);}
.md0_c00266{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);}
.ma3_c00266{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);}
.m9c_c00266{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);}
.m2c_c00266{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);}
.mf8_c00266{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.mf5_c00266{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);}
.m15_c00266{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);}
.m31_c00266{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);}
.m100_c00266{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m145_c00266{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);}
.m24_c00266{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);}
.m106_c00266{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);}
.m7a_c00266{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);}
.m152_c00266{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);}
.mc8_c00266{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);}
.m118_c00266{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);}
.m102_c00266{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);}
.m23_c00266{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_c00266{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);}
.m137_c00266{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);}
.mdf_c00266{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{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);}
.m159_c00266{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);}
.md_c00266{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);}
.m121_c00266{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);}
.m57_c00266{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);}
.mb7_c00266{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);}
.mc1_c00266{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);}
.me8_c00266{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);}
.m7_c00266{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);}
.m111_c00266{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);}
.m2_c00266{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);}
.m90_c00266{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);}
.mf3_c00266{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);}
.m10a_c00266{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);}
.mc0_c00266{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);}
.m54_c00266{transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);}
.md2_c00266{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);}
.mbe_c00266{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);}
.mc7_c00266{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);}
.m125_c00266{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);}
.m3b_c00266{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);}
.m104_c00266{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);}
.m92_c00266{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);}
.mb0_c00266{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);}
.m156_c00266{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);}
.mc5_c00266{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);}
.mba_c00266{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_c00266{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);}
.m74_c00266{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);}
.mbb_c00266{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);}
.m71_c00266{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);}
.m34_c00266{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);}
.mf6_c00266{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);}
.mcf_c00266{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);}
.m58_c00266{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);}
.me3_c00266{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);}
.m22_c00266{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);}
.m9f_c00266{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);}
.mdc_c00266{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);}
.m28_c00266{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);}
.m11a_c00266{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);}
.m10f_c00266{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);}
.mca_c00266{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);}
.med_c00266{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{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);}
.m12_c00266{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);}
.m40_c00266{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);}
.m53_c00266{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);}
.mb5_c00266{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);}
.m119_c00266{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);}
.m2b_c00266{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);}
.m45_c00266{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);}
.m3e_c00266{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);}
.m91_c00266{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);}
.mb2_c00266{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);}
.mf_c00266{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);}
.m9a_c00266{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);}
.m6d_c00266{transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{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);}
.me5_c00266{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.mea_c00266{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);}
.m3f_c00266{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);}
.mae_c00266{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);}
.mb6_c00266{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);}
.ma4_c00266{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);}
.md1_c00266{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);}
.m99_c00266{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);}
.m5c_c00266{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);}
.m114_c00266{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);}
.m7b_c00266{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);}
.m19_c00266{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);}
.m49_c00266{transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229260,0.000000,0.000000,0.250000,0,0);}
.mc3_c00266{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229960,0.000000,0.000000,0.250000,0,0);}
.m134_c00266{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);}
.m36_c00266{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);}
.m136_c00266{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);}
.m4e_c00266{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);}
.m35_c00266{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);}
.mf4_c00266{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);}
.m1f_c00266{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);}
.mbf_c00266{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);}
.mbd_c00266{transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);}
.me6_c00266{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);}
.ma6_c00266{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);}
.m43_c00266{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);}
.m5f_c00266{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);}
.m20_c00266{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);}
.meb_c00266{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m10c_c00266{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);}
.m108_c00266{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);}
.mb1_c00266{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);}
.mb4_c00266{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);}
.m48_c00266{transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);}
.me4_c00266{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);}
.m11_c00266{transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);}
.me0_c00266{transform:matrix(0.243010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243010,0.000000,0.000000,0.250000,0,0);}
.mac_c00266{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);}
.m47_c00266{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.mab_c00266{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244380,0.000000,0.000000,0.250000,0,0);}
.m153_c00266{transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);}
.m112_c00266{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);}
.m117_c00266{transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);}
.m141_c00266{transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);}
.mff_c00266{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m15a_c00266{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);}
.m93_c00266{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m13f_c00266{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{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_c00266{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.mdd_c00266{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{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);}
.m140_c00266{transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);}
.mf9_c00266{transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260615,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.261580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261580,0.000000,0.000000,0.250000,0,0);}
.m10e_c00266{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.m115_c00266{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m110_c00266{transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);}
.m113_c00266{transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.mb3_c00266{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.m157_c00266{transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);}
.m116_c00266{transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);}
.mc2_c00266{transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);}
.m14b_c00266{transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.285550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285550,0.000000,0.000000,0.250000,0,0);}
.mde_c00266{transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285880,0.000000,0.000000,0.250000,0,0);}
.m14c_c00266{transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);}
.m143_c00266{transform:matrix(0.290195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290195,0.000000,0.000000,0.250000,0,0);}
.m11f_c00266{transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294605,0.000000,0.000000,0.250000,0,0);}
.m12e_c00266{transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);}
.m7c_c00266{transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296940,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297130,0.000000,0.000000,0.250000,0,0);}
.m124_c00266{transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301130,0.000000,0.000000,0.250000,0,0);}
.m127_c00266{transform:matrix(0.305225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305225,0.000000,0.000000,0.250000,0,0);}
.m138_c00266{transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);}
.maf_c00266{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);}
.m123_c00266{transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);}
.m109_c00266{transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319070,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);}
.m149_c00266{transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329390,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);}
.m12b_c00266{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);}
.mf2_c00266{transform:matrix(0.362325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362325,0.000000,0.000000,0.250000,0,0);}
.m147_c00266{transform:matrix(0.364290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364290,0.000000,0.000000,0.250000,0,0);}
.m12f_c00266{transform:matrix(0.369215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369215,0.000000,0.000000,0.250000,0,0);}
.m142_c00266{transform:matrix(0.370040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370040,0.000000,0.000000,0.250000,0,0);}
.m14f_c00266{transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);}
.m154_c00266{transform:matrix(0.374765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374765,0.000000,0.000000,0.250000,0,0);}
.m146_c00266{transform:matrix(0.378670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378670,0.000000,0.000000,0.250000,0,0);}
.m139_c00266{transform:matrix(0.382440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382440,0.000000,0.000000,0.250000,0,0);}
.m14e_c00266{transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);}
.m144_c00266{transform:matrix(0.393520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393520,0.000000,0.000000,0.250000,0,0);}
.m14a_c00266{transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);}
.m13c_c00266{transform:matrix(0.394745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394745,0.000000,0.000000,0.250000,0,0);}
.m131_c00266{transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422980,0.000000,0.000000,0.250000,0,0);}
.m155_c00266{transform:matrix(0.427475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427475,0.000000,0.000000,0.250000,0,0);}
.m13e_c00266{transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);}
.m148_c00266{transform:matrix(0.449610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449610,0.000000,0.000000,0.250000,0,0);}
.m10d_c00266{transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);}
.m12c_c00266{transform:matrix(0.461910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461910,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.471235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471235,0.000000,0.000000,0.250000,0,0);}
.m129_c00266{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);}
.m150_c00266{transform:matrix(0.473190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473190,0.000000,0.000000,0.250000,0,0);}
.m132_c00266{transform:matrix(0.481875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481875,0.000000,0.000000,0.250000,0,0);}
.m14d_c00266{transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);}
.m130_c00266{transform:matrix(0.514285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514285,0.000000,0.000000,0.250000,0,0);}
.m135_c00266{transform:matrix(0.550205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550205,0.000000,0.000000,0.250000,0,0);}
.m12d_c00266{transform:matrix(0.588955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588955,0.000000,0.000000,0.250000,0,0);}
.m11e_c00266{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);}
.m0_c00266{transform:matrix(0.679020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679020,0.000000,0.000000,0.250000,0,0);}
.m133_c00266{transform:matrix(0.680260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680260,0.000000,0.000000,0.250000,0,0);}
.m12a_c00266{transform:matrix(0.779240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779240,0.000000,0.000000,0.250000,0,0);}
.m128_c00266{transform:matrix(0.895305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895305,0.000000,0.000000,0.250000,0,0);}
.m122_c00266{transform:matrix(0.914785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914785,0.000000,0.000000,0.250000,0,0);}
.m126_c00266{transform:matrix(1.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.254045,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;}
.fs11_c00266{font-size:11.550000px;}
.fs14_c00266{font-size:27.300000px;}
.fs15_c00266{font-size:30.450000px;}
.fs13_c00266{font-size:31.500000px;}
.fsd_c00266{font-size:32.550000px;}
.fs16_c00266{font-size:37.800000px;}
.fs17_c00266{font-size:38.850000px;}
.fs0_c00266{font-size:45.150000px;}
.fs10_c00266{font-size:47.250000px;}
.fsa_c00266{font-size:49.350000px;}
.fs9_c00266{font-size:51.450000px;}
.fsb_c00266{font-size:52.500000px;}
.fs12_c00266{font-size:55.650000px;}
.fsf_c00266{font-size:57.750000px;}
.fsc_c00266{font-size:58.800000px;}
.fs8_c00266{font-size:61.950000px;}
.fs3_c00266{font-size:66.150000px;}
.fs5_c00266{font-size:67.200000px;}
.fs7_c00266{font-size:68.250000px;}
.fs4_c00266{font-size:69.300000px;}
.fs6_c00266{font-size:70.350000px;}
.fs2_c00266{font-size:71.400000px;}
.fs1_c00266{font-size:74.550000px;}
.fs18_c00266{font-size:86.100000px;}
.fse_c00266{font-size:89.250000px;}
.y0_c00266{bottom:0.000000px;}
.y1c_c00266{bottom:179.940000px;}
.y1a_c00266{bottom:182.554500px;}
.y1b_c00266{bottom:197.787000px;}
.y19_c00266{bottom:200.653500px;}
.y25_c00266{bottom:245.430000px;}
.y18_c00266{bottom:260.188500px;}
.y24_c00266{bottom:281.610000px;}
.y17_c00266{bottom:282.502500px;}
.y23_c00266{bottom:284.040000px;}
.y2e_c00266{bottom:302.400000px;}
.y16_c00266{bottom:305.262000px;}
.y22_c00266{bottom:325.080000px;}
.y15_c00266{bottom:328.230000px;}
.y2d_c00266{bottom:331.560000px;}
.y2c_c00266{bottom:337.500000px;}
.y2b_c00266{bottom:340.200000px;}
.y2a_c00266{bottom:342.360000px;}
.y14_c00266{bottom:350.401500px;}
.y13_c00266{bottom:373.527000px;}
.y29_c00266{bottom:392.040000px;}
.y12_c00266{bottom:396.603000px;}
.y11_c00266{bottom:419.547000px;}
.y26_c00266{bottom:433.080000px;}
.y28_c00266{bottom:439.290000px;}
.y10_c00266{bottom:442.206000px;}
.y27_c00266{bottom:443.340000px;}
.yf_c00266{bottom:464.637000px;}
.ye_c00266{bottom:487.317000px;}
.yd_c00266{bottom:510.235500px;}
.yc_c00266{bottom:532.357500px;}
.yb_c00266{bottom:555.465000px;}
.y21_c00266{bottom:573.750000px;}
.y20_c00266{bottom:578.016000px;}
.y1f_c00266{bottom:645.409500px;}
.ya_c00266{bottom:667.884000px;}
.y9_c00266{bottom:690.777000px;}
.y8_c00266{bottom:713.230500px;}
.y7_c00266{bottom:736.137000px;}
.y6_c00266{bottom:758.785500px;}
.y5_c00266{bottom:781.465500px;}
.y4_c00266{bottom:803.695500px;}
.y3_c00266{bottom:826.851000px;}
.y2_c00266{bottom:849.523500px;}
.y1e_c00266{bottom:894.045000px;}
.y1_c00266{bottom:937.198500px;}
.y1d_c00266{bottom:958.971000px;}
.h13_c00266{height:11.550000px;}
.h16_c00266{height:27.300000px;}
.h17_c00266{height:30.450000px;}
.h15_c00266{height:31.500000px;}
.hf_c00266{height:32.550000px;}
.h18_c00266{height:37.800000px;}
.h19_c00266{height:38.850000px;}
.h2_c00266{height:45.150000px;}
.h12_c00266{height:47.250000px;}
.hc_c00266{height:49.350000px;}
.hb_c00266{height:51.450000px;}
.hd_c00266{height:52.500000px;}
.h14_c00266{height:55.650000px;}
.h11_c00266{height:57.750000px;}
.he_c00266{height:58.800000px;}
.ha_c00266{height:61.950000px;}
.h5_c00266{height:66.150000px;}
.h7_c00266{height:67.200000px;}
.h9_c00266{height:68.250000px;}
.h6_c00266{height:69.300000px;}
.h8_c00266{height:70.350000px;}
.h4_c00266{height:71.400000px;}
.h3_c00266{height:74.550000px;}
.h1a_c00266{height:86.100000px;}
.h10_c00266{height:89.250000px;}
.h1_c00266{height:1005.000000px;}
.h0_c00266{height:1005.150000px;}
.w1_c00266{width:713.250000px;}
.w0_c00266{width:713.550000px;}
.x0_c00266{left:0.000000px;}
.x71_c00266{left:66.690000px;}
.x95_c00266{left:68.580000px;}
.x3d_c00266{left:70.740000px;}
.x8e_c00266{left:72.360000px;}
.x21_c00266{left:74.790000px;}
.x2_c00266{left:75.870000px;}
.x58_c00266{left:77.760000px;}
.xa9_c00266{left:93.690000px;}
.x3_c00266{left:95.580000px;}
.x9a_c00266{left:99.630000px;}
.x16_c00266{left:100.710000px;}
.x72_c00266{left:105.030000px;}
.x22_c00266{left:106.920000px;}
.x2d_c00266{left:109.080000px;}
.xc_c00266{left:111.510000px;}
.xaa_c00266{left:113.940000px;}
.xad_c00266{left:116.370000px;}
.x1_c00266{left:118.260000px;}
.x62_c00266{left:121.770000px;}
.xa2_c00266{left:124.200000px;}
.x3e_c00266{left:126.090000px;}
.x9b_c00266{left:127.980000px;}
.x6a_c00266{left:130.680000px;}
.x79_c00266{left:134.460000px;}
.xbd_c00266{left:136.890000px;}
.x17_c00266{left:140.400000px;}
.x5b_c00266{left:141.750000px;}
.x4f_c00266{left:143.370000px;}
.x73_c00266{left:145.260000px;}
.x81_c00266{left:146.340000px;}
.x4_c00266{left:147.420000px;}
.x3f_c00266{left:148.770000px;}
.xb7_c00266{left:152.280000px;}
.x66_c00266{left:154.980000px;}
.x2e_c00266{left:156.600000px;}
.x50_c00266{left:159.030000px;}
.x88_c00266{left:161.460000px;}
.x18_c00266{left:164.160000px;}
.x35_c00266{left:168.750000px;}
.x5_c00266{left:170.370000px;}
.x23_c00266{left:177.660000px;}
.x51_c00266{left:180.090000px;}
.x8f_c00266{left:181.170000px;}
.x2f_c00266{left:182.520000px;}
.x74_c00266{left:183.600000px;}
.x48_c00266{left:184.950000px;}
.xd_c00266{left:188.730000px;}
.x40_c00266{left:190.080000px;}
.xab_c00266{left:191.430000px;}
.x9c_c00266{left:194.670000px;}
.xb5_c00266{left:197.100000px;}
.x36_c00266{left:203.850000px;}
.x82_c00266{left:204.930000px;}
.x52_c00266{left:207.630000px;}
.xe_c00266{left:211.950000px;}
.x24_c00266{left:213.030000px;}
.x5c_c00266{left:214.650000px;}
.x75_c00266{left:216.270000px;}
.xae_c00266{left:217.890000px;}
.x6b_c00266{left:223.560000px;}
.x83_c00266{left:226.260000px;}
.x6_c00266{left:227.340000px;}
.x19_c00266{left:228.420000px;}
.x63_c00266{left:229.770000px;}
.x7a_c00266{left:233.280000px;}
.x49_c00266{left:239.490000px;}
.x30_c00266{left:240.840000px;}
.x9d_c00266{left:242.730000px;}
.x53_c00266{left:245.700000px;}
.x37_c00266{left:248.130000px;}
.xaf_c00266{left:250.830000px;}
.x5d_c00266{left:252.450000px;}
.x41_c00266{left:254.610000px;}
.x25_c00266{left:256.230000px;}
.x7_c00266{left:257.310000px;}
.x9e_c00266{left:260.280000px;}
.x67_c00266{left:263.520000px;}
.xb1_c00266{left:265.410000px;}
.x1a_c00266{left:267.300000px;}
.x54_c00266{left:270.000000px;}
.x97_c00266{left:273.240000px;}
.x89_c00266{left:275.130000px;}
.x7b_c00266{left:277.020000px;}
.x31_c00266{left:278.100000px;}
.x76_c00266{left:280.530000px;}
.xf_c00266{left:283.230000px;}
.x84_c00266{left:284.580000px;}
.x42_c00266{left:285.930000px;}
.xb0_c00266{left:287.010000px;}
.xac_c00266{left:291.600000px;}
.x4a_c00266{left:294.570000px;}
.x26_c00266{left:296.190000px;}
.x38_c00266{left:299.700000px;}
.x9f_c00266{left:301.320000px;}
.x90_c00266{left:303.210000px;}
.x8a_c00266{left:305.640000px;}
.x27_c00266{left:306.990000px;}
.x5e_c00266{left:309.150000px;}
.x6c_c00266{left:310.230000px;}
.x8_c00266{left:315.630000px;}
.x39_c00266{left:319.950000px;}
.x1b_c00266{left:322.110000px;}
.xb2_c00266{left:324.270000px;}
.x10_c00266{left:325.620000px;}
.x98_c00266{left:327.240000px;}
.xa3_c00266{left:329.130000px;}
.x6d_c00266{left:330.750000px;}
.x8b_c00266{left:334.530000px;}
.x7c_c00266{left:337.500000px;}
.xb9_c00266{left:340.200000px;}
.xb6_c00266{left:346.950000px;}
.x91_c00266{left:350.190000px;}
.x43_c00266{left:351.810000px;}
.x9_c00266{left:353.970000px;}
.x1c_c00266{left:359.100000px;}
.x11_c00266{left:361.260000px;}
.x28_c00266{left:363.420000px;}
.xb8_c00266{left:366.930000px;}
.x44_c00266{left:370.440000px;}
.x68_c00266{left:373.410000px;}
.x6e_c00266{left:375.300000px;}
.x92_c00266{left:376.920000px;}
.x12_c00266{left:378.270000px;}
.xa0_c00266{left:379.620000px;}
.x4b_c00266{left:381.510000px;}
.xb3_c00266{left:383.130000px;}
.x3a_c00266{left:392.580000px;}
.x59_c00266{left:393.660000px;}
.x7d_c00266{left:394.740000px;}
.x32_c00266{left:397.170000px;}
.xa4_c00266{left:399.330000px;}
.x1d_c00266{left:402.030000px;}
.x64_c00266{left:405.000000px;}
.x8c_c00266{left:407.970000px;}
.x5f_c00266{left:410.940000px;}
.x4c_c00266{left:414.180000px;}
.x45_c00266{left:416.610000px;}
.x7e_c00266{left:417.960000px;}
.x29_c00266{left:419.040000px;}
.x85_c00266{left:421.470000px;}
.xba_c00266{left:422.820000px;}
.x77_c00266{left:424.170000px;}
.xa_c00266{left:426.060000px;}
.x4d_c00266{left:429.840000px;}
.x6f_c00266{left:430.920000px;}
.x1e_c00266{left:434.970000px;}
.xa1_c00266{left:439.830000px;}
.x13_c00266{left:442.260000px;}
.x65_c00266{left:443.340000px;}
.x33_c00266{left:446.040000px;}
.x93_c00266{left:447.120000px;}
.xa8_c00266{left:448.740000px;}
.xb_c00266{left:451.170000px;}
.x69_c00266{left:453.330000px;}
.x55_c00266{left:457.920000px;}
.x3b_c00266{left:459.270000px;}
.x7f_c00266{left:461.430000px;}
.x14_c00266{left:464.400000px;}
.x2a_c00266{left:467.100000px;}
.x86_c00266{left:471.420000px;}
.xb4_c00266{left:475.740000px;}
.x60_c00266{left:477.900000px;}
.x56_c00266{left:486.540000px;}
.xa6_c00266{left:488.700000px;}
.x78_c00266{left:490.320000px;}
.x4e_c00266{left:493.560000px;}
.x2b_c00266{left:497.340000px;}
.x87_c00266{left:500.040000px;}
.x94_c00266{left:501.390000px;}
.x1f_c00266{left:502.470000px;}
.x96_c00266{left:503.820000px;}
.xbb_c00266{left:508.140000px;}
.x46_c00266{left:509.220000px;}
.x3c_c00266{left:514.620000px;}
.xa7_c00266{left:515.700000px;}
.x99_c00266{left:518.400000px;}
.xa5_c00266{left:522.450000px;}
.x34_c00266{left:523.530000px;}
.x20_c00266{left:524.880000px;}
.x61_c00266{left:527.850000px;}
.x70_c00266{left:529.740000px;}
.x80_c00266{left:530.820000px;}
.x8d_c00266{left:534.600000px;}
.x57_c00266{left:537.030000px;}
.x5a_c00266{left:538.920000px;}
.x47_c00266{left:541.890000px;}
.x15_c00266{left:546.480000px;}
.x2c_c00266{left:547.830000px;}
.xbc_c00266{left:565.650000px;}
.xbf_c00266{left:576.450000px;}
.xc3_c00266{left:579.690000px;}
.xc5_c00266{left:587.790000px;}
.xc6_c00266{left:589.950000px;}
.xc4_c00266{left:592.380000px;}
.xc0_c00266{left:593.460000px;}
.xc2_c00266{left:595.890000px;}
.xc1_c00266{left:596.970000px;}
.xbe_c00266{left:599.670000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.fs11_c00266{font-size:10.266667pt;}
.fs14_c00266{font-size:24.266667pt;}
.fs15_c00266{font-size:27.066667pt;}
.fs13_c00266{font-size:28.000000pt;}
.fsd_c00266{font-size:28.933333pt;}
.fs16_c00266{font-size:33.600000pt;}
.fs17_c00266{font-size:34.533333pt;}
.fs0_c00266{font-size:40.133333pt;}
.fs10_c00266{font-size:42.000000pt;}
.fsa_c00266{font-size:43.866667pt;}
.fs9_c00266{font-size:45.733333pt;}
.fsb_c00266{font-size:46.666667pt;}
.fs12_c00266{font-size:49.466667pt;}
.fsf_c00266{font-size:51.333333pt;}
.fsc_c00266{font-size:52.266667pt;}
.fs8_c00266{font-size:55.066667pt;}
.fs3_c00266{font-size:58.800000pt;}
.fs5_c00266{font-size:59.733333pt;}
.fs7_c00266{font-size:60.666667pt;}
.fs4_c00266{font-size:61.600000pt;}
.fs6_c00266{font-size:62.533333pt;}
.fs2_c00266{font-size:63.466667pt;}
.fs1_c00266{font-size:66.266667pt;}
.fs18_c00266{font-size:76.533333pt;}
.fse_c00266{font-size:79.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y1c_c00266{bottom:159.946667pt;}
.y1a_c00266{bottom:162.270667pt;}
.y1b_c00266{bottom:175.810667pt;}
.y19_c00266{bottom:178.358667pt;}
.y25_c00266{bottom:218.160000pt;}
.y18_c00266{bottom:231.278667pt;}
.y24_c00266{bottom:250.320000pt;}
.y17_c00266{bottom:251.113333pt;}
.y23_c00266{bottom:252.480000pt;}
.y2e_c00266{bottom:268.800000pt;}
.y16_c00266{bottom:271.344000pt;}
.y22_c00266{bottom:288.960000pt;}
.y15_c00266{bottom:291.760000pt;}
.y2d_c00266{bottom:294.720000pt;}
.y2c_c00266{bottom:300.000000pt;}
.y2b_c00266{bottom:302.400000pt;}
.y2a_c00266{bottom:304.320000pt;}
.y14_c00266{bottom:311.468000pt;}
.y13_c00266{bottom:332.024000pt;}
.y29_c00266{bottom:348.480000pt;}
.y12_c00266{bottom:352.536000pt;}
.y11_c00266{bottom:372.930667pt;}
.y26_c00266{bottom:384.960000pt;}
.y28_c00266{bottom:390.480000pt;}
.y10_c00266{bottom:393.072000pt;}
.y27_c00266{bottom:394.080000pt;}
.yf_c00266{bottom:413.010667pt;}
.ye_c00266{bottom:433.170667pt;}
.yd_c00266{bottom:453.542667pt;}
.yc_c00266{bottom:473.206667pt;}
.yb_c00266{bottom:493.746667pt;}
.y21_c00266{bottom:510.000000pt;}
.y20_c00266{bottom:513.792000pt;}
.y1f_c00266{bottom:573.697333pt;}
.ya_c00266{bottom:593.674667pt;}
.y9_c00266{bottom:614.024000pt;}
.y8_c00266{bottom:633.982667pt;}
.y7_c00266{bottom:654.344000pt;}
.y6_c00266{bottom:674.476000pt;}
.y5_c00266{bottom:694.636000pt;}
.y4_c00266{bottom:714.396000pt;}
.y3_c00266{bottom:734.978667pt;}
.y2_c00266{bottom:755.132000pt;}
.y1e_c00266{bottom:794.706667pt;}
.y1_c00266{bottom:833.065333pt;}
.y1d_c00266{bottom:852.418667pt;}
.h13_c00266{height:10.266667pt;}
.h16_c00266{height:24.266667pt;}
.h17_c00266{height:27.066667pt;}
.h15_c00266{height:28.000000pt;}
.hf_c00266{height:28.933333pt;}
.h18_c00266{height:33.600000pt;}
.h19_c00266{height:34.533333pt;}
.h2_c00266{height:40.133333pt;}
.h12_c00266{height:42.000000pt;}
.hc_c00266{height:43.866667pt;}
.hb_c00266{height:45.733333pt;}
.hd_c00266{height:46.666667pt;}
.h14_c00266{height:49.466667pt;}
.h11_c00266{height:51.333333pt;}
.he_c00266{height:52.266667pt;}
.ha_c00266{height:55.066667pt;}
.h5_c00266{height:58.800000pt;}
.h7_c00266{height:59.733333pt;}
.h9_c00266{height:60.666667pt;}
.h6_c00266{height:61.600000pt;}
.h8_c00266{height:62.533333pt;}
.h4_c00266{height:63.466667pt;}
.h3_c00266{height:66.266667pt;}
.h1a_c00266{height:76.533333pt;}
.h10_c00266{height:79.333333pt;}
.h1_c00266{height:893.333333pt;}
.h0_c00266{height:893.466667pt;}
.w1_c00266{width:634.000000pt;}
.w0_c00266{width:634.266667pt;}
.x0_c00266{left:0.000000pt;}
.x71_c00266{left:59.280000pt;}
.x95_c00266{left:60.960000pt;}
.x3d_c00266{left:62.880000pt;}
.x8e_c00266{left:64.320000pt;}
.x21_c00266{left:66.480000pt;}
.x2_c00266{left:67.440000pt;}
.x58_c00266{left:69.120000pt;}
.xa9_c00266{left:83.280000pt;}
.x3_c00266{left:84.960000pt;}
.x9a_c00266{left:88.560000pt;}
.x16_c00266{left:89.520000pt;}
.x72_c00266{left:93.360000pt;}
.x22_c00266{left:95.040000pt;}
.x2d_c00266{left:96.960000pt;}
.xc_c00266{left:99.120000pt;}
.xaa_c00266{left:101.280000pt;}
.xad_c00266{left:103.440000pt;}
.x1_c00266{left:105.120000pt;}
.x62_c00266{left:108.240000pt;}
.xa2_c00266{left:110.400000pt;}
.x3e_c00266{left:112.080000pt;}
.x9b_c00266{left:113.760000pt;}
.x6a_c00266{left:116.160000pt;}
.x79_c00266{left:119.520000pt;}
.xbd_c00266{left:121.680000pt;}
.x17_c00266{left:124.800000pt;}
.x5b_c00266{left:126.000000pt;}
.x4f_c00266{left:127.440000pt;}
.x73_c00266{left:129.120000pt;}
.x81_c00266{left:130.080000pt;}
.x4_c00266{left:131.040000pt;}
.x3f_c00266{left:132.240000pt;}
.xb7_c00266{left:135.360000pt;}
.x66_c00266{left:137.760000pt;}
.x2e_c00266{left:139.200000pt;}
.x50_c00266{left:141.360000pt;}
.x88_c00266{left:143.520000pt;}
.x18_c00266{left:145.920000pt;}
.x35_c00266{left:150.000000pt;}
.x5_c00266{left:151.440000pt;}
.x23_c00266{left:157.920000pt;}
.x51_c00266{left:160.080000pt;}
.x8f_c00266{left:161.040000pt;}
.x2f_c00266{left:162.240000pt;}
.x74_c00266{left:163.200000pt;}
.x48_c00266{left:164.400000pt;}
.xd_c00266{left:167.760000pt;}
.x40_c00266{left:168.960000pt;}
.xab_c00266{left:170.160000pt;}
.x9c_c00266{left:173.040000pt;}
.xb5_c00266{left:175.200000pt;}
.x36_c00266{left:181.200000pt;}
.x82_c00266{left:182.160000pt;}
.x52_c00266{left:184.560000pt;}
.xe_c00266{left:188.400000pt;}
.x24_c00266{left:189.360000pt;}
.x5c_c00266{left:190.800000pt;}
.x75_c00266{left:192.240000pt;}
.xae_c00266{left:193.680000pt;}
.x6b_c00266{left:198.720000pt;}
.x83_c00266{left:201.120000pt;}
.x6_c00266{left:202.080000pt;}
.x19_c00266{left:203.040000pt;}
.x63_c00266{left:204.240000pt;}
.x7a_c00266{left:207.360000pt;}
.x49_c00266{left:212.880000pt;}
.x30_c00266{left:214.080000pt;}
.x9d_c00266{left:215.760000pt;}
.x53_c00266{left:218.400000pt;}
.x37_c00266{left:220.560000pt;}
.xaf_c00266{left:222.960000pt;}
.x5d_c00266{left:224.400000pt;}
.x41_c00266{left:226.320000pt;}
.x25_c00266{left:227.760000pt;}
.x7_c00266{left:228.720000pt;}
.x9e_c00266{left:231.360000pt;}
.x67_c00266{left:234.240000pt;}
.xb1_c00266{left:235.920000pt;}
.x1a_c00266{left:237.600000pt;}
.x54_c00266{left:240.000000pt;}
.x97_c00266{left:242.880000pt;}
.x89_c00266{left:244.560000pt;}
.x7b_c00266{left:246.240000pt;}
.x31_c00266{left:247.200000pt;}
.x76_c00266{left:249.360000pt;}
.xf_c00266{left:251.760000pt;}
.x84_c00266{left:252.960000pt;}
.x42_c00266{left:254.160000pt;}
.xb0_c00266{left:255.120000pt;}
.xac_c00266{left:259.200000pt;}
.x4a_c00266{left:261.840000pt;}
.x26_c00266{left:263.280000pt;}
.x38_c00266{left:266.400000pt;}
.x9f_c00266{left:267.840000pt;}
.x90_c00266{left:269.520000pt;}
.x8a_c00266{left:271.680000pt;}
.x27_c00266{left:272.880000pt;}
.x5e_c00266{left:274.800000pt;}
.x6c_c00266{left:275.760000pt;}
.x8_c00266{left:280.560000pt;}
.x39_c00266{left:284.400000pt;}
.x1b_c00266{left:286.320000pt;}
.xb2_c00266{left:288.240000pt;}
.x10_c00266{left:289.440000pt;}
.x98_c00266{left:290.880000pt;}
.xa3_c00266{left:292.560000pt;}
.x6d_c00266{left:294.000000pt;}
.x8b_c00266{left:297.360000pt;}
.x7c_c00266{left:300.000000pt;}
.xb9_c00266{left:302.400000pt;}
.xb6_c00266{left:308.400000pt;}
.x91_c00266{left:311.280000pt;}
.x43_c00266{left:312.720000pt;}
.x9_c00266{left:314.640000pt;}
.x1c_c00266{left:319.200000pt;}
.x11_c00266{left:321.120000pt;}
.x28_c00266{left:323.040000pt;}
.xb8_c00266{left:326.160000pt;}
.x44_c00266{left:329.280000pt;}
.x68_c00266{left:331.920000pt;}
.x6e_c00266{left:333.600000pt;}
.x92_c00266{left:335.040000pt;}
.x12_c00266{left:336.240000pt;}
.xa0_c00266{left:337.440000pt;}
.x4b_c00266{left:339.120000pt;}
.xb3_c00266{left:340.560000pt;}
.x3a_c00266{left:348.960000pt;}
.x59_c00266{left:349.920000pt;}
.x7d_c00266{left:350.880000pt;}
.x32_c00266{left:353.040000pt;}
.xa4_c00266{left:354.960000pt;}
.x1d_c00266{left:357.360000pt;}
.x64_c00266{left:360.000000pt;}
.x8c_c00266{left:362.640000pt;}
.x5f_c00266{left:365.280000pt;}
.x4c_c00266{left:368.160000pt;}
.x45_c00266{left:370.320000pt;}
.x7e_c00266{left:371.520000pt;}
.x29_c00266{left:372.480000pt;}
.x85_c00266{left:374.640000pt;}
.xba_c00266{left:375.840000pt;}
.x77_c00266{left:377.040000pt;}
.xa_c00266{left:378.720000pt;}
.x4d_c00266{left:382.080000pt;}
.x6f_c00266{left:383.040000pt;}
.x1e_c00266{left:386.640000pt;}
.xa1_c00266{left:390.960000pt;}
.x13_c00266{left:393.120000pt;}
.x65_c00266{left:394.080000pt;}
.x33_c00266{left:396.480000pt;}
.x93_c00266{left:397.440000pt;}
.xa8_c00266{left:398.880000pt;}
.xb_c00266{left:401.040000pt;}
.x69_c00266{left:402.960000pt;}
.x55_c00266{left:407.040000pt;}
.x3b_c00266{left:408.240000pt;}
.x7f_c00266{left:410.160000pt;}
.x14_c00266{left:412.800000pt;}
.x2a_c00266{left:415.200000pt;}
.x86_c00266{left:419.040000pt;}
.xb4_c00266{left:422.880000pt;}
.x60_c00266{left:424.800000pt;}
.x56_c00266{left:432.480000pt;}
.xa6_c00266{left:434.400000pt;}
.x78_c00266{left:435.840000pt;}
.x4e_c00266{left:438.720000pt;}
.x2b_c00266{left:442.080000pt;}
.x87_c00266{left:444.480000pt;}
.x94_c00266{left:445.680000pt;}
.x1f_c00266{left:446.640000pt;}
.x96_c00266{left:447.840000pt;}
.xbb_c00266{left:451.680000pt;}
.x46_c00266{left:452.640000pt;}
.x3c_c00266{left:457.440000pt;}
.xa7_c00266{left:458.400000pt;}
.x99_c00266{left:460.800000pt;}
.xa5_c00266{left:464.400000pt;}
.x34_c00266{left:465.360000pt;}
.x20_c00266{left:466.560000pt;}
.x61_c00266{left:469.200000pt;}
.x70_c00266{left:470.880000pt;}
.x80_c00266{left:471.840000pt;}
.x8d_c00266{left:475.200000pt;}
.x57_c00266{left:477.360000pt;}
.x5a_c00266{left:479.040000pt;}
.x47_c00266{left:481.680000pt;}
.x15_c00266{left:485.760000pt;}
.x2c_c00266{left:486.960000pt;}
.xbc_c00266{left:502.800000pt;}
.xbf_c00266{left:512.400000pt;}
.xc3_c00266{left:515.280000pt;}
.xc5_c00266{left:522.480000pt;}
.xc6_c00266{left:524.400000pt;}
.xc4_c00266{left:526.560000pt;}
.xc0_c00266{left:527.520000pt;}
.xc2_c00266{left:529.680000pt;}
.xc1_c00266{left:530.640000pt;}
.xbe_c00266{left:533.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_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_4ab86c84425994a9e06b01c2.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;}
.m9_c00267{transform:matrix(0.009323,-0.000177,0.004749,0.249955,0,0);-ms-transform:matrix(0.009323,-0.000177,0.004749,0.249955,0,0);-webkit-transform:matrix(0.009323,-0.000177,0.004749,0.249955,0,0);}
.m47_c00267{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);}
.m145_c00267{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);}
.m36_c00267{transform:matrix(0.093708,-0.000656,0.001750,0.249994,0,0);-ms-transform:matrix(0.093708,-0.000656,0.001750,0.249994,0,0);-webkit-transform:matrix(0.093708,-0.000656,0.001750,0.249994,0,0);}
.m13_c00267{transform:matrix(0.094788,-0.000664,0.001750,0.249994,0,0);-ms-transform:matrix(0.094788,-0.000664,0.001750,0.249994,0,0);-webkit-transform:matrix(0.094788,-0.000664,0.001750,0.249994,0,0);}
.m108_c00267{transform:matrix(0.115670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115670,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.126832,-0.000888,0.001750,0.249994,0,0);-ms-transform:matrix(0.126832,-0.000888,0.001750,0.249994,0,0);-webkit-transform:matrix(0.126832,-0.000888,0.001750,0.249994,0,0);}
.me2_c00267{transform:matrix(0.132710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132710,0.000000,0.000000,0.250000,0,0);}
.m140_c00267{transform:matrix(0.134510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134510,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{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);}
.me3_c00267{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);}
.me1_c00267{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00267{transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141810,0.000000,0.000000,0.250000,0,0);}
.m105_c00267{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);}
.mac_c00267{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_c00267{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);}
.mf2_c00267{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);}
.m64_c00267{transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148165,0.000000,0.000000,0.250000,0,0);}
.ma5_c00267{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);}
.mb0_c00267{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);}
.md7_c00267{transform:matrix(0.149445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149445,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{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);}
.m2a_c00267{transform:matrix(0.149956,-0.001050,0.001750,0.249994,0,0);-ms-transform:matrix(0.149956,-0.001050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149956,-0.001050,0.001750,0.249994,0,0);}
.m28_c00267{transform:matrix(0.150696,-0.001055,0.001750,0.249994,0,0);-ms-transform:matrix(0.150696,-0.001055,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150696,-0.001055,0.001750,0.249994,0,0);}
.mfe_c00267{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);}
.mce_c00267{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);}
.m6f_c00267{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);}
.md9_c00267{transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152115,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);}
.m114_c00267{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);}
.m93_c00267{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);}
.m39_c00267{transform:matrix(0.154616,-0.001082,0.001750,0.249994,0,0);-ms-transform:matrix(0.154616,-0.001082,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154616,-0.001082,0.001750,0.249994,0,0);}
.m126_c00267{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);}
.m1f_c00267{transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);-ms-transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);}
.m6a_c00267{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.me4_c00267{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);}
.md2_c00267{transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.158161,-0.001107,0.001750,0.249994,0,0);-ms-transform:matrix(0.158161,-0.001107,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158161,-0.001107,0.001750,0.249994,0,0);}
.mb7_c00267{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);}
.m5c_c00267{transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.159486,-0.001116,0.001750,0.249994,0,0);-ms-transform:matrix(0.159486,-0.001116,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159486,-0.001116,0.001750,0.249994,0,0);}
.ma9_c00267{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);}
.mad_c00267{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);}
.mba_c00267{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);}
.m15_c00267{transform:matrix(0.160836,-0.001126,0.001750,0.249994,0,0);-ms-transform:matrix(0.160836,-0.001126,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160836,-0.001126,0.001750,0.249994,0,0);}
.mc3_c00267{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);}
.m48_c00267{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);}
.ma6_c00267{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);}
.m118_c00267{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);}
.m1b_c00267{transform:matrix(0.162346,-0.001136,0.001750,0.249994,0,0);-ms-transform:matrix(0.162346,-0.001136,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162346,-0.001136,0.001750,0.249994,0,0);}
.m70_c00267{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);}
.me5_c00267{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);}
.mfb_c00267{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);}
.ma3_c00267{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);}
.m2b_c00267{transform:matrix(0.164186,-0.001149,0.001750,0.249994,0,0);-ms-transform:matrix(0.164186,-0.001149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164186,-0.001149,0.001750,0.249994,0,0);}
.mbe_c00267{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);}
.m117_c00267{transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);}
.mde_c00267{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);}
.md5_c00267{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);}
.m94_c00267{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);}
.me0_c00267{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);}
.m77_c00267{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);}
.mff_c00267{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);}
.m55_c00267{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);}
.mf9_c00267{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);}
.mcb_c00267{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_c00267{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);}
.mdd_c00267{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);}
.md8_c00267{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);}
.mb1_c00267{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);}
.md6_c00267{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);}
.m60_c00267{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);}
.me8_c00267{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);}
.m8f_c00267{transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);}
.me7_c00267{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);}
.m16_c00267{transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-ms-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);}
.m1d_c00267{transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);}
.m11_c00267{transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);}
.mef_c00267{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);}
.mc2_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);}
.mb2_c00267{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);}
.m2e_c00267{transform:matrix(0.171121,-0.001198,0.001750,0.249994,0,0);-ms-transform:matrix(0.171121,-0.001198,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171121,-0.001198,0.001750,0.249994,0,0);}
.mc6_c00267{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);}
.m22_c00267{transform:matrix(0.171881,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171881,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171881,-0.001203,0.001750,0.249994,0,0);}
.mc0_c00267{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);}
.m78_c00267{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);}
.m43_c00267{transform:matrix(0.173106,-0.001212,0.001750,0.249994,0,0);-ms-transform:matrix(0.173106,-0.001212,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173106,-0.001212,0.001750,0.249994,0,0);}
.m13d_c00267{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);}
.m137_c00267{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);}
.m67_c00267{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);}
.m9b_c00267{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);}
.ma7_c00267{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);}
.m5b_c00267{transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);}
.m7f_c00267{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);}
.m7a_c00267{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);}
.mf4_c00267{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);}
.mc_c00267{transform:matrix(0.175501,-0.001229,0.001750,0.249994,0,0);-ms-transform:matrix(0.175501,-0.001229,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175501,-0.001229,0.001750,0.249994,0,0);}
.me_c00267{transform:matrix(0.175576,-0.001229,0.001750,0.249994,0,0);-ms-transform:matrix(0.175576,-0.001229,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175576,-0.001229,0.001750,0.249994,0,0);}
.m98_c00267{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);}
.m42_c00267{transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);}
.m11b_c00267{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);}
.m132_c00267{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);}
.mcd_c00267{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mca_c00267{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);}
.m63_c00267{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);}
.m86_c00267{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);}
.m116_c00267{transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.177171,-0.001240,0.001750,0.249994,0,0);-ms-transform:matrix(0.177171,-0.001240,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177171,-0.001240,0.001750,0.249994,0,0);}
.m103_c00267{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);}
.mb3_c00267{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);}
.m20_c00267{transform:matrix(0.177656,-0.001244,0.001750,0.249994,0,0);-ms-transform:matrix(0.177656,-0.001244,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177656,-0.001244,0.001750,0.249994,0,0);}
.m92_c00267{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);}
.m5d_c00267{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);}
.m10_c00267{transform:matrix(0.177971,-0.001246,0.001750,0.249994,0,0);-ms-transform:matrix(0.177971,-0.001246,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177971,-0.001246,0.001750,0.249994,0,0);}
.m68_c00267{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);}
.m54_c00267{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);}
.m12_c00267{transform:matrix(0.178251,-0.001248,0.001750,0.249994,0,0);-ms-transform:matrix(0.178251,-0.001248,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178251,-0.001248,0.001750,0.249994,0,0);}
.mee_c00267{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);}
.m104_c00267{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);}
.m5f_c00267{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);}
.mab_c00267{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);}
.m61_c00267{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);}
.m133_c00267{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);}
.m8d_c00267{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);}
.mbc_c00267{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);}
.m19_c00267{transform:matrix(0.179766,-0.001258,0.001750,0.249994,0,0);-ms-transform:matrix(0.179766,-0.001258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179766,-0.001258,0.001750,0.249994,0,0);}
.mcc_c00267{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);}
.m5e_c00267{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);}
.m2d_c00267{transform:matrix(0.181046,-0.001267,0.001750,0.249994,0,0);-ms-transform:matrix(0.181046,-0.001267,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181046,-0.001267,0.001750,0.249994,0,0);}
.mdf_c00267{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);}
.m73_c00267{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);}
.mb4_c00267{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);}
.m139_c00267{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);}
.m14_c00267{transform:matrix(0.181966,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.181966,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181966,-0.001274,0.001750,0.249994,0,0);}
.m66_c00267{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);}
.mc5_c00267{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);}
.m107_c00267{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);}
.m100_c00267{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);}
.m23_c00267{transform:matrix(0.182841,-0.001280,0.001750,0.249994,0,0);-ms-transform:matrix(0.182841,-0.001280,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182841,-0.001280,0.001750,0.249994,0,0);}
.mf1_c00267{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);}
.m4a_c00267{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);}
.mbd_c00267{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);}
.m13b_c00267{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);}
.m4b_c00267{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);}
.m31_c00267{transform:matrix(0.183885,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183885,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183885,-0.001287,0.001750,0.249994,0,0);}
.m91_c00267{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);}
.m4f_c00267{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);}
.m6c_c00267{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);}
.m3a_c00267{transform:matrix(0.184200,-0.001289,0.001750,0.249994,0,0);-ms-transform:matrix(0.184200,-0.001289,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184200,-0.001289,0.001750,0.249994,0,0);}
.mc7_c00267{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);}
.m49_c00267{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);}
.m35_c00267{transform:matrix(0.185275,-0.001297,0.001750,0.249994,0,0);-ms-transform:matrix(0.185275,-0.001297,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185275,-0.001297,0.001750,0.249994,0,0);}
.m7e_c00267{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);}
.m10a_c00267{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);}
.mbb_c00267{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);}
.m109_c00267{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);}
.m38_c00267{transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);}
.me6_c00267{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);}
.m56_c00267{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);}
.m27_c00267{transform:matrix(0.186820,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186820,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186820,-0.001308,0.001750,0.249994,0,0);}
.m75_c00267{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);}
.m120_c00267{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);}
.mfd_c00267{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);}
.m87_c00267{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);}
.m80_c00267{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);}
.m6d_c00267{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);}
.m6b_c00267{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_c00267{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);}
.m9e_c00267{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);}
.ma8_c00267{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);}
.m10f_c00267{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);}
.m3f_c00267{transform:matrix(0.189010,-0.001323,0.001750,0.249994,0,0);-ms-transform:matrix(0.189010,-0.001323,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189010,-0.001323,0.001750,0.249994,0,0);}
.m51_c00267{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);}
.m134_c00267{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);}
.m4d_c00267{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);}
.m4e_c00267{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);}
.m41_c00267{transform:matrix(0.189645,-0.001328,0.001750,0.249994,0,0);-ms-transform:matrix(0.189645,-0.001328,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189645,-0.001328,0.001750,0.249994,0,0);}
.med_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);}
.mf7_c00267{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);}
.m130_c00267{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);}
.m3d_c00267{transform:matrix(0.190305,-0.001332,0.001750,0.249994,0,0);-ms-transform:matrix(0.190305,-0.001332,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190305,-0.001332,0.001750,0.249994,0,0);}
.m26_c00267{transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);-ms-transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);}
.mf0_c00267{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);}
.ma1_c00267{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);}
.m122_c00267{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);}
.m136_c00267{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);}
.ma4_c00267{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);}
.mc4_c00267{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);}
.m90_c00267{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);}
.m101_c00267{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);}
.m21_c00267{transform:matrix(0.193005,-0.001351,0.001750,0.249994,0,0);-ms-transform:matrix(0.193005,-0.001351,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193005,-0.001351,0.001750,0.249994,0,0);}
.m2c_c00267{transform:matrix(0.193325,-0.001353,0.001750,0.249994,0,0);-ms-transform:matrix(0.193325,-0.001353,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193325,-0.001353,0.001750,0.249994,0,0);}
.mdb_c00267{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);}
.m44_c00267{transform:matrix(0.193520,-0.001355,0.001750,0.249994,0,0);-ms-transform:matrix(0.193520,-0.001355,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193520,-0.001355,0.001750,0.249994,0,0);}
.m4c_c00267{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);}
.mfc_c00267{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);}
.m106_c00267{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);}
.m135_c00267{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);}
.m12f_c00267{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);}
.m1a_c00267{transform:matrix(0.194660,-0.001363,0.001750,0.249994,0,0);-ms-transform:matrix(0.194660,-0.001363,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194660,-0.001363,0.001750,0.249994,0,0);}
.m40_c00267{transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);-ms-transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);}
.mec_c00267{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);}
.m50_c00267{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);}
.md4_c00267{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);}
.mc9_c00267{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);}
.md0_c00267{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);}
.m12e_c00267{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);}
.m8b_c00267{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);}
.m13f_c00267{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);}
.m24_c00267{transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);-ms-transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);}
.m9f_c00267{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);}
.mfa_c00267{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);}
.m52_c00267{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);}
.m1c_c00267{transform:matrix(0.197215,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197215,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197215,-0.001381,0.001750,0.249994,0,0);}
.mf3_c00267{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);}
.mbf_c00267{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);}
.m32_c00267{transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);-ms-transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);}
.m99_c00267{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);}
.mc1_c00267{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);}
.m8e_c00267{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);}
.m53_c00267{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);}
.m12a_c00267{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m143_c00267{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);}
.mf6_c00267{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);}
.m69_c00267{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);}
.mea_c00267{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);}
.mb5_c00267{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);}
.m115_c00267{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);}
.m112_c00267{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);}
.md1_c00267{transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201230,0.000000,0.000000,0.250000,0,0);}
.m10b_c00267{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);}
.m1e_c00267{transform:matrix(0.201600,-0.001411,0.001750,0.249994,0,0);-ms-transform:matrix(0.201600,-0.001411,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201600,-0.001411,0.001750,0.249994,0,0);}
.m58_c00267{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);}
.m125_c00267{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);}
.m113_c00267{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);}
.m65_c00267{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);}
.m13c_c00267{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);}
.m5a_c00267{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);}
.m30_c00267{transform:matrix(0.203725,-0.001426,0.001750,0.249994,0,0);-ms-transform:matrix(0.203725,-0.001426,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203725,-0.001426,0.001750,0.249994,0,0);}
.m33_c00267{transform:matrix(0.203855,-0.001427,0.001750,0.249994,0,0);-ms-transform:matrix(0.203855,-0.001427,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203855,-0.001427,0.001750,0.249994,0,0);}
.mcf_c00267{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);}
.mb_c00267{transform:matrix(0.204035,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.204035,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204035,-0.001428,0.001750,0.249994,0,0);}
.mf8_c00267{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);}
.m82_c00267{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);}
.me9_c00267{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);}
.m57_c00267{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);}
.maf_c00267{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);}
.m9c_c00267{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);}
.m121_c00267{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);}
.m84_c00267{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);}
.mda_c00267{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);}
.mdc_c00267{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);}
.m85_c00267{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);}
.m144_c00267{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);}
.m131_c00267{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);}
.m128_c00267{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);}
.md_c00267{transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);-ms-transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);}
.m3b_c00267{transform:matrix(0.210585,-0.001474,0.001750,0.249994,0,0);-ms-transform:matrix(0.210585,-0.001474,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210585,-0.001474,0.001750,0.249994,0,0);}
.m18_c00267{transform:matrix(0.211325,-0.001479,0.001750,0.249994,0,0);-ms-transform:matrix(0.211325,-0.001479,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211325,-0.001479,0.001750,0.249994,0,0);}
.mb6_c00267{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);}
.m34_c00267{transform:matrix(0.212145,-0.001485,0.001750,0.249994,0,0);-ms-transform:matrix(0.212145,-0.001485,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212145,-0.001485,0.001750,0.249994,0,0);}
.meb_c00267{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);}
.m123_c00267{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);}
.mf5_c00267{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);}
.m111_c00267{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);}
.m8c_c00267{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);}
.m3c_c00267{transform:matrix(0.215010,-0.001505,0.001750,0.249994,0,0);-ms-transform:matrix(0.215010,-0.001505,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215010,-0.001505,0.001750,0.249994,0,0);}
.m11c_c00267{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);}
.maa_c00267{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m11f_c00267{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m110_c00267{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);}
.m129_c00267{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);}
.m9d_c00267{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);}
.m11e_c00267{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);}
.m95_c00267{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);}
.m11d_c00267{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);}
.m88_c00267{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);}
.m6e_c00267{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);}
.m29_c00267{transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);-ms-transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);}
.m12c_c00267{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);}
.mb8_c00267{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);}
.m79_c00267{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.m83_c00267{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);}
.m9a_c00267{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);}
.m10c_c00267{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);}
.m76_c00267{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);}
.m10d_c00267{transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);}
.m71_c00267{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);}
.m13a_c00267{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m10e_c00267{transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);}
.mc8_c00267{transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.md3_c00267{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.m12d_c00267{transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.mae_c00267{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.m11a_c00267{transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244835,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.249294,-0.001745,0.001750,0.249994,0,0);-ms-transform:matrix(0.249294,-0.001745,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249294,-0.001745,0.001750,0.249994,0,0);}
.m0_c00267{transform:matrix(0.249790,-0.004746,0.004749,0.249955,0,0);-ms-transform:matrix(0.249790,-0.004746,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249790,-0.004746,0.004749,0.249955,0,0);}
.m37_c00267{transform:matrix(0.250264,-0.001752,0.001750,0.249994,0,0);-ms-transform:matrix(0.250264,-0.001752,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250264,-0.001752,0.001750,0.249994,0,0);}
.ma2_c00267{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);}
.m138_c00267{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);}
.m142_c00267{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);}
.m102_c00267{transform:matrix(0.266005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266005,0.000000,0.000000,0.250000,0,0);}
.m13e_c00267{transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);}
.m127_c00267{transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268865,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282355,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);-ms-transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);-webkit-transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);}
.m119_c00267{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);}
.m124_c00267{transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307160,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.308419,-0.005860,0.004749,0.249955,0,0);-ms-transform:matrix(0.308419,-0.005860,0.004749,0.249955,0,0);-webkit-transform:matrix(0.308419,-0.005860,0.004749,0.249955,0,0);}
.mb9_c00267{transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);}
.m141_c00267{transform:matrix(0.356890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356890,0.000000,0.000000,0.250000,0,0);}
.ma0_c00267{transform:matrix(0.369205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369205,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.386540,-0.007344,0.004749,0.249955,0,0);-ms-transform:matrix(0.386540,-0.007344,0.004749,0.249955,0,0);-webkit-transform:matrix(0.386540,-0.007344,0.004749,0.249955,0,0);}
.m7_c00267{transform:matrix(0.402282,-0.007643,0.004749,0.249955,0,0);-ms-transform:matrix(0.402282,-0.007643,0.004749,0.249955,0,0);-webkit-transform:matrix(0.402282,-0.007643,0.004749,0.249955,0,0);}
.m5_c00267{transform:matrix(0.404892,-0.007693,0.004749,0.249955,0,0);-ms-transform:matrix(0.404892,-0.007693,0.004749,0.249955,0,0);-webkit-transform:matrix(0.404892,-0.007693,0.004749,0.249955,0,0);}
.ma_c00267{transform:matrix(0.506349,-0.009621,0.004749,0.249955,0,0);-ms-transform:matrix(0.506349,-0.009621,0.004749,0.249955,0,0);-webkit-transform:matrix(0.506349,-0.009621,0.004749,0.249955,0,0);}
.m146_c00267{transform:matrix(0.524520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524520,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.544582,-0.010347,0.004749,0.249955,0,0);-ms-transform:matrix(0.544582,-0.010347,0.004749,0.249955,0,0);-webkit-transform:matrix(0.544582,-0.010347,0.004749,0.249955,0,0);}
.m12b_c00267{transform:matrix(0.565030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565030,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.712996,-0.013547,0.004749,0.249955,0,0);-ms-transform:matrix(0.712996,-0.013547,0.004749,0.249955,0,0);-webkit-transform:matrix(0.712996,-0.013547,0.004749,0.249955,0,0);}
.m4_c00267{transform:matrix(0.893139,-0.016970,0.004749,0.249955,0,0);-ms-transform:matrix(0.893139,-0.016970,0.004749,0.249955,0,0);-webkit-transform:matrix(0.893139,-0.016970,0.004749,0.249955,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;}
.fs13_c00267{font-size:30.450000px;}
.fs11_c00267{font-size:51.450000px;}
.fs0_c00267{font-size:64.061560px;}
.fs10_c00267{font-size:65.100000px;}
.fs6_c00267{font-size:67.200000px;}
.fs5_c00267{font-size:67.201646px;}
.fs8_c00267{font-size:68.250000px;}
.fs4_c00267{font-size:68.251672px;}
.fs9_c00267{font-size:69.300000px;}
.fsa_c00267{font-size:70.350000px;}
.fs2_c00267{font-size:70.351724px;}
.fsd_c00267{font-size:71.400000px;}
.fs3_c00267{font-size:71.401749px;}
.fs7_c00267{font-size:72.450000px;}
.fsb_c00267{font-size:73.500000px;}
.fsf_c00267{font-size:74.550000px;}
.fse_c00267{font-size:77.700000px;}
.fs1_c00267{font-size:81.914782px;}
.fsc_c00267{font-size:84.000000px;}
.fs12_c00267{font-size:235.200000px;}
.y0_c00267{bottom:0.000000px;}
.y5f_c00267{bottom:120.945000px;}
.y60_c00267{bottom:121.737000px;}
.y5e_c00267{bottom:165.414000px;}
.y5d_c00267{bottom:189.642000px;}
.y5c_c00267{bottom:212.325000px;}
.y5b_c00267{bottom:235.983000px;}
.y5a_c00267{bottom:257.682000px;}
.y59_c00267{bottom:280.563000px;}
.y58_c00267{bottom:302.101500px;}
.y57_c00267{bottom:325.635000px;}
.y56_c00267{bottom:348.124500px;}
.y55_c00267{bottom:371.349000px;}
.y54_c00267{bottom:394.234500px;}
.y53_c00267{bottom:416.946000px;}
.y52_c00267{bottom:439.324500px;}
.y51_c00267{bottom:461.734500px;}
.y50_c00267{bottom:484.410000px;}
.y4f_c00267{bottom:507.027000px;}
.y4e_c00267{bottom:529.978500px;}
.y4d_c00267{bottom:552.928500px;}
.y4c_c00267{bottom:575.371500px;}
.y4b_c00267{bottom:598.018500px;}
.y4a_c00267{bottom:620.664000px;}
.y49_c00267{bottom:644.286000px;}
.y48_c00267{bottom:665.758500px;}
.y47_c00267{bottom:688.944000px;}
.y46_c00267{bottom:711.288000px;}
.y45_c00267{bottom:733.063500px;}
.y3c_c00267{bottom:755.460270px;}
.y3d_c00267{bottom:755.579487px;}
.y3e_c00267{bottom:756.181830px;}
.y3f_c00267{bottom:756.310812px;}
.y40_c00267{bottom:756.934564px;}
.y41_c00267{bottom:757.261261px;}
.y42_c00267{bottom:757.505313px;}
.y43_c00267{bottom:758.096925px;}
.y44_c00267{bottom:758.446564px;}
.y35_c00267{bottom:779.597494px;}
.y31_c00267{bottom:779.597526px;}
.y34_c00267{bottom:779.597895px;}
.y32_c00267{bottom:779.597976px;}
.y36_c00267{bottom:779.598004px;}
.y33_c00267{bottom:779.598415px;}
.y3a_c00267{bottom:779.598594px;}
.y3b_c00267{bottom:779.598613px;}
.y37_c00267{bottom:779.598714px;}
.y38_c00267{bottom:779.598774px;}
.y39_c00267{bottom:779.598804px;}
.y24_c00267{bottom:800.820015px;}
.y25_c00267{bottom:801.046825px;}
.y26_c00267{bottom:801.205554px;}
.y27_c00267{bottom:801.360586px;}
.y28_c00267{bottom:801.921927px;}
.y29_c00267{bottom:802.099387px;}
.y2a_c00267{bottom:802.237483px;}
.y2b_c00267{bottom:802.672257px;}
.y2c_c00267{bottom:802.789447px;}
.y2d_c00267{bottom:802.970688px;}
.y2e_c00267{bottom:803.210981px;}
.y2f_c00267{bottom:803.764498px;}
.y30_c00267{bottom:803.929128px;}
.y18_c00267{bottom:823.229206px;}
.y19_c00267{bottom:823.586746px;}
.y1a_c00267{bottom:824.306529px;}
.y1b_c00267{bottom:824.387088px;}
.y1c_c00267{bottom:824.676508px;}
.y1d_c00267{bottom:824.955075px;}
.y1e_c00267{bottom:825.062518px;}
.y1f_c00267{bottom:825.468222px;}
.y20_c00267{bottom:826.297149px;}
.y21_c00267{bottom:826.432831px;}
.y22_c00267{bottom:826.811881px;}
.y23_c00267{bottom:827.269138px;}
.yc_c00267{bottom:845.910000px;}
.yd_c00267{bottom:846.478890px;}
.ye_c00267{bottom:846.618760px;}
.yf_c00267{bottom:846.879591px;}
.y10_c00267{bottom:847.027021px;}
.y11_c00267{bottom:847.371043px;}
.y12_c00267{bottom:847.858443px;}
.y13_c00267{bottom:848.026884px;}
.y14_c00267{bottom:848.500812px;}
.y15_c00267{bottom:848.608794px;}
.y16_c00267{bottom:848.773444px;}
.y17_c00267{bottom:848.947545px;}
.y9_c00267{bottom:889.642275px;}
.ya_c00267{bottom:890.349215px;}
.yb_c00267{bottom:891.095464px;}
.y1_c00267{bottom:948.514500px;}
.y2_c00267{bottom:949.566065px;}
.y3_c00267{bottom:950.725929px;}
.y4_c00267{bottom:951.428995px;}
.y5_c00267{bottom:951.859459px;}
.y6_c00267{bottom:953.968003px;}
.y7_c00267{bottom:955.245630px;}
.y8_c00267{bottom:957.353490px;}
.h15_c00267{height:30.450000px;}
.h13_c00267{height:51.450000px;}
.h2_c00267{height:64.061560px;}
.h12_c00267{height:65.100000px;}
.h8_c00267{height:67.200000px;}
.h7_c00267{height:67.201646px;}
.ha_c00267{height:68.250000px;}
.h6_c00267{height:68.251672px;}
.hb_c00267{height:69.300000px;}
.hc_c00267{height:70.350000px;}
.h4_c00267{height:70.351724px;}
.hf_c00267{height:71.400000px;}
.h5_c00267{height:71.401749px;}
.h9_c00267{height:72.450000px;}
.hd_c00267{height:73.500000px;}
.h11_c00267{height:74.550000px;}
.h10_c00267{height:77.700000px;}
.h3_c00267{height:81.914782px;}
.he_c00267{height:84.000000px;}
.h14_c00267{height:235.200000px;}
.h0_c00267{height:1008.450000px;}
.h1_c00267{height:1008.750000px;}
.w0_c00267{width:678.450000px;}
.w1_c00267{width:678.750000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:102.846000px;}
.x7c_c00267{left:142.290000px;}
.x9_c00267{left:144.704274px;}
.xc_c00267{left:146.433000px;}
.x50_c00267{left:147.690000px;}
.x33_c00267{left:149.676276px;}
.x79_c00267{left:151.740000px;}
.xa4_c00267{left:153.630000px;}
.xaf_c00267{left:154.710000px;}
.x2_c00267{left:158.191500px;}
.x3c_c00267{left:165.240000px;}
.x34_c00267{left:166.707276px;}
.x66_c00267{left:172.530000px;}
.x2c_c00267{left:174.966560px;}
.xbd_c00267{left:177.120000px;}
.x21_c00267{left:178.295088px;}
.x6d_c00267{left:180.360000px;}
.x92_c00267{left:183.060000px;}
.x17_c00267{left:185.340662px;}
.x8a_c00267{left:186.840000px;}
.xb0_c00267{left:189.810000px;}
.x42_c00267{left:193.590000px;}
.xa_c00267{left:195.179562px;}
.x75_c00267{left:196.830000px;}
.x22_c00267{left:200.970588px;}
.x81_c00267{left:207.090000px;}
.xa0_c00267{left:209.250000px;}
.x61_c00267{left:211.410000px;}
.x57_c00267{left:213.570000px;}
.xa8_c00267{left:216.270000px;}
.x99_c00267{left:217.890000px;}
.x3_c00267{left:219.237000px;}
.x3d_c00267{left:221.670000px;}
.x23_c00267{left:223.118088px;}
.x7d_c00267{left:224.370000px;}
.xd_c00267{left:227.703000px;}
.xb1_c00267{left:229.500000px;}
.x43_c00267{left:230.580000px;}
.xa1_c00267{left:232.200000px;}
.x67_c00267{left:236.250000px;}
.xbe_c00267{left:238.140000px;}
.x58_c00267{left:239.490000px;}
.x2d_c00267{left:243.818430px;}
.xb_c00267{left:248.434607px;}
.x44_c00267{left:249.480000px;}
.x8b_c00267{left:251.640000px;}
.x35_c00267{left:252.756276px;}
.x4_c00267{left:256.240500px;}
.x9a_c00267{left:260.010000px;}
.xb5_c00267{left:263.250000px;}
.x18_c00267{left:265.237038px;}
.x3e_c00267{left:268.380000px;}
.x36_c00267{left:271.182276px;}
.x19_c00267{left:274.173912px;}
.x5_c00267{left:278.896500px;}
.x59_c00267{left:280.530000px;}
.x2e_c00267{left:281.888799px;}
.xe_c00267{left:284.946000px;}
.xa5_c00267{left:288.090000px;}
.x49_c00267{left:291.600000px;}
.x3f_c00267{left:297.000000px;}
.x95_c00267{left:298.620000px;}
.x5a_c00267{left:300.780000px;}
.x24_c00267{left:303.309588px;}
.x68_c00267{left:304.830000px;}
.xf_c00267{left:306.007500px;}
.x76_c00267{left:310.230000px;}
.xa2_c00267{left:312.660000px;}
.xb6_c00267{left:318.870000px;}
.xbf_c00267{left:319.950000px;}
.x51_c00267{left:321.030000px;}
.x2f_c00267{left:322.119273px;}
.x69_c00267{left:325.620000px;}
.x25_c00267{left:328.661088px;}
.x5b_c00267{left:331.020000px;}
.x45_c00267{left:333.450000px;}
.x7e_c00267{left:335.070000px;}
.x1a_c00267{left:337.314030px;}
.x82_c00267{left:342.090000px;}
.xb7_c00267{left:344.790000px;}
.xc4_c00267{left:346.950000px;}
.x4a_c00267{left:348.030000px;}
.x1b_c00267{left:349.234362px;}
.xa6_c00267{left:353.430000px;}
.x10_c00267{left:355.153500px;}
.x96_c00267{left:357.210000px;}
.x6e_c00267{left:358.830000px;}
.x37_c00267{left:360.289776px;}
.x8c_c00267{left:362.070000px;}
.x9b_c00267{left:364.500000px;}
.x62_c00267{left:365.850000px;}
.x6a_c00267{left:372.060000px;}
.xb8_c00267{left:373.950000px;}
.xa9_c00267{left:376.920000px;}
.x52_c00267{left:379.350000px;}
.x40_c00267{left:380.700000px;}
.x97_c00267{left:381.780000px;}
.x9c_c00267{left:385.290000px;}
.x6_c00267{left:389.872500px;}
.x30_c00267{left:391.511165px;}
.x5c_c00267{left:392.580000px;}
.x1c_c00267{left:394.334232px;}
.x6f_c00267{left:397.710000px;}
.x46_c00267{left:402.840000px;}
.x31_c00267{left:406.091879px;}
.x26_c00267{left:410.499588px;}
.x4b_c00267{left:412.290000px;}
.x86_c00267{left:413.640000px;}
.xb2_c00267{left:414.720000px;}
.x83_c00267{left:416.070000px;}
.x70_c00267{left:417.960000px;}
.x7f_c00267{left:419.040000px;}
.x5d_c00267{left:420.120000px;}
.x11_c00267{left:424.782000px;}
.x27_c00267{left:427.241088px;}
.x53_c00267{left:429.840000px;}
.x63_c00267{left:437.400000px;}
.xaa_c00267{left:438.750000px;}
.xb9_c00267{left:439.830000px;}
.x38_c00267{left:441.825276px;}
.x54_c00267{left:444.960000px;}
.x12_c00267{left:448.845000px;}
.x87_c00267{left:450.900000px;}
.x28_c00267{left:453.132588px;}
.x7a_c00267{left:454.410000px;}
.x4c_c00267{left:455.760000px;}
.x7_c00267{left:457.116000px;}
.x9d_c00267{left:460.620000px;}
.x47_c00267{left:462.510000px;}
.x84_c00267{left:464.400000px;}
.xc0_c00267{left:467.370000px;}
.x71_c00267{left:469.800000px;}
.x5e_c00267{left:476.280000px;}
.x85_c00267{left:479.250000px;}
.x64_c00267{left:480.870000px;}
.x4d_c00267{left:482.490000px;}
.x32_c00267{left:483.855690px;}
.x1d_c00267{left:486.393941px;}
.x29_c00267{left:487.460088px;}
.x6b_c00267{left:490.860000px;}
.x5f_c00267{left:494.100000px;}
.xab_c00267{left:495.450000px;}
.x93_c00267{left:496.800000px;}
.x1e_c00267{left:501.491231px;}
.x55_c00267{left:503.820000px;}
.x8f_c00267{left:504.900000px;}
.x88_c00267{left:505.980000px;}
.x77_c00267{left:510.300000px;}
.xba_c00267{left:511.380000px;}
.xc1_c00267{left:513.000000px;}
.x3b_c00267{left:515.160000px;}
.x13_c00267{left:516.549000px;}
.x6c_c00267{left:519.210000px;}
.x94_c00267{left:520.290000px;}
.x9e_c00267{left:524.610000px;}
.x39_c00267{left:526.341276px;}
.x72_c00267{left:528.390000px;}
.x14_c00267{left:531.975000px;}
.x90_c00267{left:535.950000px;}
.xac_c00267{left:537.300000px;}
.x65_c00267{left:538.650000px;}
.x1f_c00267{left:543.640643px;}
.x41_c00267{left:545.670000px;}
.x4e_c00267{left:550.800000px;}
.x9f_c00267{left:554.310000px;}
.x15_c00267{left:555.496500px;}
.x89_c00267{left:561.060000px;}
.x73_c00267{left:565.380000px;}
.x2a_c00267{left:566.534088px;}
.x8_c00267{left:568.056000px;}
.xc2_c00267{left:569.160000px;}
.xbb_c00267{left:571.590000px;}
.x7b_c00267{left:574.560000px;}
.x3a_c00267{left:576.289776px;}
.x8d_c00267{left:577.530000px;}
.xb3_c00267{left:578.610000px;}
.x16_c00267{left:580.368000px;}
.xc3_c00267{left:582.120000px;}
.x60_c00267{left:586.980000px;}
.x74_c00267{left:588.600000px;}
.x2b_c00267{left:590.052588px;}
.x80_c00267{left:592.380000px;}
.x20_c00267{left:594.390929px;}
.xad_c00267{left:599.130000px;}
.x8e_c00267{left:601.290000px;}
.x91_c00267{left:602.910000px;}
.x4f_c00267{left:604.260000px;}
.x56_c00267{left:608.040000px;}
.x78_c00267{left:609.660000px;}
.xbc_c00267{left:612.090000px;}
.x48_c00267{left:613.440000px;}
.x98_c00267{left:614.520000px;}
.xb4_c00267{left:644.490000px;}
.xa7_c00267{left:645.840000px;}
.xae_c00267{left:653.400000px;}
.xa3_c00267{left:661.230000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs13_c00267{font-size:27.066667pt;}
.fs11_c00267{font-size:45.733333pt;}
.fs0_c00267{font-size:56.943609pt;}
.fs10_c00267{font-size:57.866667pt;}
.fs6_c00267{font-size:59.733333pt;}
.fs5_c00267{font-size:59.734797pt;}
.fs8_c00267{font-size:60.666667pt;}
.fs4_c00267{font-size:60.668153pt;}
.fs9_c00267{font-size:61.600000pt;}
.fsa_c00267{font-size:62.533333pt;}
.fs2_c00267{font-size:62.534865pt;}
.fsd_c00267{font-size:63.466667pt;}
.fs3_c00267{font-size:63.468222pt;}
.fs7_c00267{font-size:64.400000pt;}
.fsb_c00267{font-size:65.333333pt;}
.fsf_c00267{font-size:66.266667pt;}
.fse_c00267{font-size:69.066667pt;}
.fs1_c00267{font-size:72.813139pt;}
.fsc_c00267{font-size:74.666667pt;}
.fs12_c00267{font-size:209.066667pt;}
.y0_c00267{bottom:0.000000pt;}
.y5f_c00267{bottom:107.506667pt;}
.y60_c00267{bottom:108.210667pt;}
.y5e_c00267{bottom:147.034667pt;}
.y5d_c00267{bottom:168.570667pt;}
.y5c_c00267{bottom:188.733333pt;}
.y5b_c00267{bottom:209.762667pt;}
.y5a_c00267{bottom:229.050667pt;}
.y59_c00267{bottom:249.389333pt;}
.y58_c00267{bottom:268.534667pt;}
.y57_c00267{bottom:289.453333pt;}
.y56_c00267{bottom:309.444000pt;}
.y55_c00267{bottom:330.088000pt;}
.y54_c00267{bottom:350.430667pt;}
.y53_c00267{bottom:370.618667pt;}
.y52_c00267{bottom:390.510667pt;}
.y51_c00267{bottom:410.430667pt;}
.y50_c00267{bottom:430.586667pt;}
.y4f_c00267{bottom:450.690667pt;}
.y4e_c00267{bottom:471.092000pt;}
.y4d_c00267{bottom:491.492000pt;}
.y4c_c00267{bottom:511.441333pt;}
.y4b_c00267{bottom:531.572000pt;}
.y4a_c00267{bottom:551.701333pt;}
.y49_c00267{bottom:572.698667pt;}
.y48_c00267{bottom:591.785333pt;}
.y47_c00267{bottom:612.394667pt;}
.y46_c00267{bottom:632.256000pt;}
.y45_c00267{bottom:651.612000pt;}
.y3c_c00267{bottom:671.520240pt;}
.y3d_c00267{bottom:671.626211pt;}
.y3e_c00267{bottom:672.161627pt;}
.y3f_c00267{bottom:672.276277pt;}
.y40_c00267{bottom:672.830724pt;}
.y41_c00267{bottom:673.121121pt;}
.y42_c00267{bottom:673.338056pt;}
.y43_c00267{bottom:673.863933pt;}
.y44_c00267{bottom:674.174724pt;}
.y35_c00267{bottom:692.975551pt;}
.y31_c00267{bottom:692.975579pt;}
.y34_c00267{bottom:692.975907pt;}
.y32_c00267{bottom:692.975979pt;}
.y36_c00267{bottom:692.976004pt;}
.y33_c00267{bottom:692.976369pt;}
.y3a_c00267{bottom:692.976528pt;}
.y3b_c00267{bottom:692.976545pt;}
.y37_c00267{bottom:692.976635pt;}
.y38_c00267{bottom:692.976688pt;}
.y39_c00267{bottom:692.976715pt;}
.y24_c00267{bottom:711.840013pt;}
.y25_c00267{bottom:712.041623pt;}
.y26_c00267{bottom:712.182715pt;}
.y27_c00267{bottom:712.320521pt;}
.y28_c00267{bottom:712.819491pt;}
.y29_c00267{bottom:712.977233pt;}
.y2a_c00267{bottom:713.099985pt;}
.y2b_c00267{bottom:713.486451pt;}
.y2c_c00267{bottom:713.590620pt;}
.y2d_c00267{bottom:713.751723pt;}
.y2e_c00267{bottom:713.965316pt;}
.y2f_c00267{bottom:714.457332pt;}
.y30_c00267{bottom:714.603669pt;}
.y18_c00267{bottom:731.759295pt;}
.y19_c00267{bottom:732.077108pt;}
.y1a_c00267{bottom:732.716915pt;}
.y1b_c00267{bottom:732.788523pt;}
.y1c_c00267{bottom:733.045785pt;}
.y1d_c00267{bottom:733.293400pt;}
.y1e_c00267{bottom:733.388905pt;}
.y1f_c00267{bottom:733.749531pt;}
.y20_c00267{bottom:734.486355pt;}
.y21_c00267{bottom:734.606961pt;}
.y22_c00267{bottom:734.943895pt;}
.y23_c00267{bottom:735.350345pt;}
.yc_c00267{bottom:751.920000pt;}
.yd_c00267{bottom:752.425680pt;}
.ye_c00267{bottom:752.550009pt;}
.yf_c00267{bottom:752.781859pt;}
.y10_c00267{bottom:752.912908pt;}
.y11_c00267{bottom:753.218705pt;}
.y12_c00267{bottom:753.651949pt;}
.y13_c00267{bottom:753.801675pt;}
.y14_c00267{bottom:754.222944pt;}
.y15_c00267{bottom:754.318928pt;}
.y16_c00267{bottom:754.465284pt;}
.y17_c00267{bottom:754.620040pt;}
.y9_c00267{bottom:790.793133pt;}
.ya_c00267{bottom:791.421524pt;}
.yb_c00267{bottom:792.084857pt;}
.y1_c00267{bottom:843.124000pt;}
.y2_c00267{bottom:844.058724pt;}
.y3_c00267{bottom:845.089715pt;}
.y4_c00267{bottom:845.714663pt;}
.y5_c00267{bottom:846.097297pt;}
.y6_c00267{bottom:847.971559pt;}
.y7_c00267{bottom:849.107227pt;}
.y8_c00267{bottom:850.980880pt;}
.h15_c00267{height:27.066667pt;}
.h13_c00267{height:45.733333pt;}
.h2_c00267{height:56.943609pt;}
.h12_c00267{height:57.866667pt;}
.h8_c00267{height:59.733333pt;}
.h7_c00267{height:59.734797pt;}
.ha_c00267{height:60.666667pt;}
.h6_c00267{height:60.668153pt;}
.hb_c00267{height:61.600000pt;}
.hc_c00267{height:62.533333pt;}
.h4_c00267{height:62.534865pt;}
.hf_c00267{height:63.466667pt;}
.h5_c00267{height:63.468222pt;}
.h9_c00267{height:64.400000pt;}
.hd_c00267{height:65.333333pt;}
.h11_c00267{height:66.266667pt;}
.h10_c00267{height:69.066667pt;}
.h3_c00267{height:72.813139pt;}
.he_c00267{height:74.666667pt;}
.h14_c00267{height:209.066667pt;}
.h0_c00267{height:896.400000pt;}
.h1_c00267{height:896.666667pt;}
.w0_c00267{width:603.066667pt;}
.w1_c00267{width:603.333333pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:91.418667pt;}
.x7c_c00267{left:126.480000pt;}
.x9_c00267{left:128.626021pt;}
.xc_c00267{left:130.162667pt;}
.x50_c00267{left:131.280000pt;}
.x33_c00267{left:133.045579pt;}
.x79_c00267{left:134.880000pt;}
.xa4_c00267{left:136.560000pt;}
.xaf_c00267{left:137.520000pt;}
.x2_c00267{left:140.614667pt;}
.x3c_c00267{left:146.880000pt;}
.x34_c00267{left:148.184245pt;}
.x66_c00267{left:153.360000pt;}
.x2c_c00267{left:155.525831pt;}
.xbd_c00267{left:157.440000pt;}
.x21_c00267{left:158.484523pt;}
.x6d_c00267{left:160.320000pt;}
.x92_c00267{left:162.720000pt;}
.x17_c00267{left:164.747255pt;}
.x8a_c00267{left:166.080000pt;}
.xb0_c00267{left:168.720000pt;}
.x42_c00267{left:172.080000pt;}
.xa_c00267{left:173.492944pt;}
.x75_c00267{left:174.960000pt;}
.x22_c00267{left:178.640523pt;}
.x81_c00267{left:184.080000pt;}
.xa0_c00267{left:186.000000pt;}
.x61_c00267{left:187.920000pt;}
.x57_c00267{left:189.840000pt;}
.xa8_c00267{left:192.240000pt;}
.x99_c00267{left:193.680000pt;}
.x3_c00267{left:194.877333pt;}
.x3d_c00267{left:197.040000pt;}
.x23_c00267{left:198.327189pt;}
.x7d_c00267{left:199.440000pt;}
.xd_c00267{left:202.402667pt;}
.xb1_c00267{left:204.000000pt;}
.x43_c00267{left:204.960000pt;}
.xa1_c00267{left:206.400000pt;}
.x67_c00267{left:210.000000pt;}
.xbe_c00267{left:211.680000pt;}
.x58_c00267{left:212.880000pt;}
.x2d_c00267{left:216.727493pt;}
.xb_c00267{left:220.830761pt;}
.x44_c00267{left:221.760000pt;}
.x8b_c00267{left:223.680000pt;}
.x35_c00267{left:224.672245pt;}
.x4_c00267{left:227.769333pt;}
.x9a_c00267{left:231.120000pt;}
.xb5_c00267{left:234.000000pt;}
.x18_c00267{left:235.766256pt;}
.x3e_c00267{left:238.560000pt;}
.x36_c00267{left:241.050912pt;}
.x19_c00267{left:243.710144pt;}
.x5_c00267{left:247.908000pt;}
.x59_c00267{left:249.360000pt;}
.x2e_c00267{left:250.567821pt;}
.xe_c00267{left:253.285333pt;}
.xa5_c00267{left:256.080000pt;}
.x49_c00267{left:259.200000pt;}
.x3f_c00267{left:264.000000pt;}
.x95_c00267{left:265.440000pt;}
.x5a_c00267{left:267.360000pt;}
.x24_c00267{left:269.608523pt;}
.x68_c00267{left:270.960000pt;}
.xf_c00267{left:272.006667pt;}
.x76_c00267{left:275.760000pt;}
.xa2_c00267{left:277.920000pt;}
.xb6_c00267{left:283.440000pt;}
.xbf_c00267{left:284.400000pt;}
.x51_c00267{left:285.360000pt;}
.x2f_c00267{left:286.328243pt;}
.x69_c00267{left:289.440000pt;}
.x25_c00267{left:292.143189pt;}
.x5b_c00267{left:294.240000pt;}
.x45_c00267{left:296.400000pt;}
.x7e_c00267{left:297.840000pt;}
.x1a_c00267{left:299.834693pt;}
.x82_c00267{left:304.080000pt;}
.xb7_c00267{left:306.480000pt;}
.xc4_c00267{left:308.400000pt;}
.x4a_c00267{left:309.360000pt;}
.x1b_c00267{left:310.430544pt;}
.xa6_c00267{left:314.160000pt;}
.x10_c00267{left:315.692000pt;}
.x96_c00267{left:317.520000pt;}
.x6e_c00267{left:318.960000pt;}
.x37_c00267{left:320.257579pt;}
.x8c_c00267{left:321.840000pt;}
.x9b_c00267{left:324.000000pt;}
.x62_c00267{left:325.200000pt;}
.x6a_c00267{left:330.720000pt;}
.xb8_c00267{left:332.400000pt;}
.xa9_c00267{left:335.040000pt;}
.x52_c00267{left:337.200000pt;}
.x40_c00267{left:338.400000pt;}
.x97_c00267{left:339.360000pt;}
.x9c_c00267{left:342.480000pt;}
.x6_c00267{left:346.553333pt;}
.x30_c00267{left:348.009924pt;}
.x5c_c00267{left:348.960000pt;}
.x1c_c00267{left:350.519317pt;}
.x6f_c00267{left:353.520000pt;}
.x46_c00267{left:358.080000pt;}
.x31_c00267{left:360.970559pt;}
.x26_c00267{left:364.888523pt;}
.x4b_c00267{left:366.480000pt;}
.x86_c00267{left:367.680000pt;}
.xb2_c00267{left:368.640000pt;}
.x83_c00267{left:369.840000pt;}
.x70_c00267{left:371.520000pt;}
.x7f_c00267{left:372.480000pt;}
.x5d_c00267{left:373.440000pt;}
.x11_c00267{left:377.584000pt;}
.x27_c00267{left:379.769856pt;}
.x53_c00267{left:382.080000pt;}
.x63_c00267{left:388.800000pt;}
.xaa_c00267{left:390.000000pt;}
.xb9_c00267{left:390.960000pt;}
.x38_c00267{left:392.733579pt;}
.x54_c00267{left:395.520000pt;}
.x12_c00267{left:398.973333pt;}
.x87_c00267{left:400.800000pt;}
.x28_c00267{left:402.784523pt;}
.x7a_c00267{left:403.920000pt;}
.x4c_c00267{left:405.120000pt;}
.x7_c00267{left:406.325333pt;}
.x9d_c00267{left:409.440000pt;}
.x47_c00267{left:411.120000pt;}
.x84_c00267{left:412.800000pt;}
.xc0_c00267{left:415.440000pt;}
.x71_c00267{left:417.600000pt;}
.x5e_c00267{left:423.360000pt;}
.x85_c00267{left:426.000000pt;}
.x64_c00267{left:427.440000pt;}
.x4d_c00267{left:428.880000pt;}
.x32_c00267{left:430.093947pt;}
.x1d_c00267{left:432.350169pt;}
.x29_c00267{left:433.297856pt;}
.x6b_c00267{left:436.320000pt;}
.x5f_c00267{left:439.200000pt;}
.xab_c00267{left:440.400000pt;}
.x93_c00267{left:441.600000pt;}
.x1e_c00267{left:445.769983pt;}
.x55_c00267{left:447.840000pt;}
.x8f_c00267{left:448.800000pt;}
.x88_c00267{left:449.760000pt;}
.x77_c00267{left:453.600000pt;}
.xba_c00267{left:454.560000pt;}
.xc1_c00267{left:456.000000pt;}
.x3b_c00267{left:457.920000pt;}
.x13_c00267{left:459.154667pt;}
.x6c_c00267{left:461.520000pt;}
.x94_c00267{left:462.480000pt;}
.x9e_c00267{left:466.320000pt;}
.x39_c00267{left:467.858912pt;}
.x72_c00267{left:469.680000pt;}
.x14_c00267{left:472.866667pt;}
.x90_c00267{left:476.400000pt;}
.xac_c00267{left:477.600000pt;}
.x65_c00267{left:478.800000pt;}
.x1f_c00267{left:483.236127pt;}
.x41_c00267{left:485.040000pt;}
.x4e_c00267{left:489.600000pt;}
.x9f_c00267{left:492.720000pt;}
.x15_c00267{left:493.774667pt;}
.x89_c00267{left:498.720000pt;}
.x73_c00267{left:502.560000pt;}
.x2a_c00267{left:503.585856pt;}
.x8_c00267{left:504.938667pt;}
.xc2_c00267{left:505.920000pt;}
.xbb_c00267{left:508.080000pt;}
.x7b_c00267{left:510.720000pt;}
.x3a_c00267{left:512.257579pt;}
.x8d_c00267{left:513.360000pt;}
.xb3_c00267{left:514.320000pt;}
.x16_c00267{left:515.882667pt;}
.xc3_c00267{left:517.440000pt;}
.x60_c00267{left:521.760000pt;}
.x74_c00267{left:523.200000pt;}
.x2b_c00267{left:524.491189pt;}
.x80_c00267{left:526.560000pt;}
.x20_c00267{left:528.347492pt;}
.xad_c00267{left:532.560000pt;}
.x8e_c00267{left:534.480000pt;}
.x91_c00267{left:535.920000pt;}
.x4f_c00267{left:537.120000pt;}
.x56_c00267{left:540.480000pt;}
.x78_c00267{left:541.920000pt;}
.xbc_c00267{left:544.080000pt;}
.x48_c00267{left:545.280000pt;}
.x98_c00267{left:546.240000pt;}
.xb4_c00267{left:572.880000pt;}
.xa7_c00267{left:574.080000pt;}
.xae_c00267{left:580.800000pt;}
.xa3_c00267{left:587.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_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;}
.m12b_c00268{transform:matrix(0.039963,0.000360,-0.002250,0.249990,0,0);-ms-transform:matrix(0.039963,0.000360,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.039963,0.000360,-0.002250,0.249990,0,0);}
.m132_c00268{transform:matrix(0.045504,0.000364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.045504,0.000364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.045504,0.000364,-0.002000,0.249992,0,0);}
.m63_c00268{transform:matrix(0.065885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065885,0.000000,0.000000,0.250000,0,0);}
.m73_c00268{transform:matrix(0.068270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068270,0.000000,0.000000,0.250000,0,0);}
.m87_c00268{transform:matrix(0.089210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089210,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.m11a_c00268{transform:matrix(0.101466,0.000913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.101466,0.000913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.101466,0.000913,-0.002250,0.249990,0,0);}
.m112_c00268{transform:matrix(0.103535,0.001035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.103535,0.001035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.103535,0.001035,-0.002500,0.249988,0,0);}
.m44_c00268{transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119130,0.000000,0.000000,0.250000,0,0);}
.m5a_c00268{transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.mc4_c00268{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);}
.mf_c00268{transform:matrix(0.147885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147885,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{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);}
.m5c_c00268{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);}
.m6f_c00268{transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);}
.mdb_c00268{transform:matrix(0.152439,0.001372,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152439,0.001372,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152439,0.001372,-0.002250,0.249990,0,0);}
.m38_c00268{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);}
.me9_c00268{transform:matrix(0.156621,0.001096,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156621,0.001096,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156621,0.001096,-0.001750,0.249994,0,0);}
.m82_c00268{transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{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);}
.m103_c00268{transform:matrix(0.159361,0.001116,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159361,0.001116,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159361,0.001116,-0.001750,0.249994,0,0);}
.m7a_c00268{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);}
.ma4_c00268{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);}
.m3a_c00268{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);}
.m31_c00268{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);}
.m9f_c00268{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);}
.m8b_c00268{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);}
.md0_c00268{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);}
.m6b_c00268{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);}
.m1a_c00268{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);}
.ma7_c00268{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);}
.mca_c00268{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);}
.mac_c00268{transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167335,0.000000,0.000000,0.250000,0,0);}
.mcf_c00268{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);}
.mcd_c00268{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_c00268{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);}
.m15_c00268{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);}
.m1e_c00268{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);}
.m26_c00268{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);}
.m55_c00268{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);}
.m83_c00268{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);}
.m11e_c00268{transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173518,0.001562,-0.002250,0.249990,0,0);}
.mf3_c00268{transform:matrix(0.173706,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173706,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173706,0.001216,-0.001750,0.249994,0,0);}
.m27_c00268{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);}
.md8_c00268{transform:matrix(0.174698,0.001572,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174698,0.001572,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174698,0.001572,-0.002250,0.249990,0,0);}
.me1_c00268{transform:matrix(0.174881,0.001224,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174881,0.001224,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174881,0.001224,-0.001750,0.249994,0,0);}
.m7e_c00268{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);}
.mc1_c00268{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);}
.m3e_c00268{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);}
.ma2_c00268{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);}
.m4f_c00268{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);}
.m72_c00268{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);}
.m29_c00268{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);}
.mc6_c00268{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);}
.mae_c00268{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);}
.m4e_c00268{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);}
.m50_c00268{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);}
.m25_c00268{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);}
.m107_c00268{transform:matrix(0.180921,0.001266,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180921,0.001266,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180921,0.001266,-0.001750,0.249994,0,0);}
.m135_c00268{transform:matrix(0.181189,0.001450,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181189,0.001450,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181189,0.001450,-0.002000,0.249992,0,0);}
.mc9_c00268{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);}
.m12e_c00268{transform:matrix(0.181513,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181513,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181513,0.001634,-0.002250,0.249990,0,0);}
.mf7_c00268{transform:matrix(0.181786,0.001272,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181786,0.001272,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181786,0.001272,-0.001750,0.249994,0,0);}
.mb5_c00268{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);}
.md5_c00268{transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);}
.m84_c00268{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);}
.m34_c00268{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);}
.m86_c00268{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);}
.ma6_c00268{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);}
.m118_c00268{transform:matrix(0.183763,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183763,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183763,0.001654,-0.002250,0.249990,0,0);}
.m89_c00268{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);}
.m5d_c00268{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);}
.m28_c00268{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);}
.mbe_c00268{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);}
.m3c_c00268{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);}
.m4c_c00268{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);}
.m2e_c00268{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);}
.mdc_c00268{transform:matrix(0.185277,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185277,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185277,0.001667,-0.002250,0.249990,0,0);}
.m12f_c00268{transform:matrix(0.185567,0.001670,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185567,0.001670,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185567,0.001670,-0.002250,0.249990,0,0);}
.m16_c00268{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);}
.m98_c00268{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);}
.m1d_c00268{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);}
.m97_c00268{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);}
.md1_c00268{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);}
.m56_c00268{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);}
.m6e_c00268{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);}
.mff_c00268{transform:matrix(0.187580,0.001313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187580,0.001313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187580,0.001313,-0.001750,0.249994,0,0);}
.mfb_c00268{transform:matrix(0.187680,0.001314,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187680,0.001314,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187680,0.001314,-0.001750,0.249994,0,0);}
.mf6_c00268{transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);}
.m1f_c00268{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);}
.mcc_c00268{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);}
.m99_c00268{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);}
.m21_c00268{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);}
.m61_c00268{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);}
.m11_c00268{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);}
.m104_c00268{transform:matrix(0.188630,0.001320,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188630,0.001320,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188630,0.001320,-0.001750,0.249994,0,0);}
.maf_c00268{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);}
.m8_c00268{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);}
.m13_c00268{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);}
.m106_c00268{transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);}
.m3d_c00268{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);}
.m110_c00268{transform:matrix(0.190795,0.001908,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190795,0.001908,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190795,0.001908,-0.002500,0.249988,0,0);}
.m78_c00268{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);}
.m77_c00268{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);}
.m10f_c00268{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);}
.m18_c00268{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);}
.m10b_c00268{transform:matrix(0.192660,0.001927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192660,0.001927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192660,0.001927,-0.002500,0.249988,0,0);}
.m23_c00268{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);}
.m119_c00268{transform:matrix(0.193062,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193062,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193062,0.001738,-0.002250,0.249990,0,0);}
.m17_c00268{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);}
.m62_c00268{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);}
.m36_c00268{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);}
.mc7_c00268{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);}
.m51_c00268{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);}
.mcb_c00268{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);}
.m9d_c00268{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);}
.me6_c00268{transform:matrix(0.194005,0.001358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194005,0.001358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194005,0.001358,-0.001750,0.249994,0,0);}
.m2d_c00268{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);}
.mbc_c00268{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);}
.m74_c00268{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);}
.mdf_c00268{transform:matrix(0.195165,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195165,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195165,0.001366,-0.001750,0.249994,0,0);}
.mce_c00268{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);}
.m109_c00268{transform:matrix(0.195820,0.001371,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195820,0.001371,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195820,0.001371,-0.001750,0.249994,0,0);}
.mc3_c00268{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);}
.mf8_c00268{transform:matrix(0.196135,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196135,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196135,0.001373,-0.001750,0.249994,0,0);}
.m5e_c00268{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);}
.mc2_c00268{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);}
.mee_c00268{transform:matrix(0.197270,0.001381,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197270,0.001381,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197270,0.001381,-0.001750,0.249994,0,0);}
.m7d_c00268{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);}
.m3b_c00268{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);}
.m108_c00268{transform:matrix(0.198650,0.001391,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198650,0.001391,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198650,0.001391,-0.001750,0.249994,0,0);}
.mb7_c00268{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);}
.m10e_c00268{transform:matrix(0.199220,0.001992,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199220,0.001992,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199220,0.001992,-0.002500,0.249988,0,0);}
.m3_c00268{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);}
.m2a_c00268{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);}
.m9c_c00268{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);}
.ma3_c00268{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);}
.mb4_c00268{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);}
.m37_c00268{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);}
.meb_c00268{transform:matrix(0.201720,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201720,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201720,0.001412,-0.001750,0.249994,0,0);}
.m100_c00268{transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);}
.mab_c00268{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);}
.m12_c00268{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);}
.mfd_c00268{transform:matrix(0.202360,0.001417,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202360,0.001417,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202360,0.001417,-0.001750,0.249994,0,0);}
.m52_c00268{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);}
.m114_c00268{transform:matrix(0.203032,0.001827,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203032,0.001827,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203032,0.001827,-0.002250,0.249990,0,0);}
.m102_c00268{transform:matrix(0.203225,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203225,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203225,0.001423,-0.001750,0.249994,0,0);}
.m14_c00268{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);}
.m47_c00268{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);}
.m11b_c00268{transform:matrix(0.204737,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204737,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204737,0.001843,-0.002250,0.249990,0,0);}
.ma0_c00268{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);}
.md7_c00268{transform:matrix(0.205217,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205217,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205217,0.001847,-0.002250,0.249990,0,0);}
.m11d_c00268{transform:matrix(0.205242,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205242,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205242,0.001847,-0.002250,0.249990,0,0);}
.m130_c00268{transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205287,0.001848,-0.002250,0.249990,0,0);}
.mb_c00268{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);}
.m7b_c00268{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);}
.mf4_c00268{transform:matrix(0.207010,0.001449,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207010,0.001449,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207010,0.001449,-0.001750,0.249994,0,0);}
.m9a_c00268{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);}
.m39_c00268{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);}
.m57_c00268{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);}
.m2b_c00268{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);}
.m58_c00268{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);}
.m81_c00268{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);}
.m10a_c00268{transform:matrix(0.209365,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209365,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209365,0.001466,-0.001750,0.249994,0,0);}
.mbb_c00268{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);}
.m125_c00268{transform:matrix(0.210676,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210676,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210676,0.001896,-0.002250,0.249990,0,0);}
.me_c00268{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);}
.m43_c00268{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);}
.m4d_c00268{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);}
.m128_c00268{transform:matrix(0.212661,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212661,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212661,0.001914,-0.002250,0.249990,0,0);}
.m75_c00268{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);}
.mf1_c00268{transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);}
.m4b_c00268{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);}
.m8a_c00268{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_c00268{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);}
.m3f_c00268{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);}
.m101_c00268{transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);}
.m95_c00268{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);}
.m7_c00268{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);}
.ma5_c00268{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);}
.mbf_c00268{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);}
.ma8_c00268{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);}
.m1c_c00268{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);}
.me5_c00268{transform:matrix(0.214825,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214825,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214825,0.001504,-0.001750,0.249994,0,0);}
.mf5_c00268{transform:matrix(0.215185,0.001506,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215185,0.001506,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215185,0.001506,-0.001750,0.249994,0,0);}
.m49_c00268{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);}
.m20_c00268{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);}
.m42_c00268{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);}
.me8_c00268{transform:matrix(0.216025,0.001512,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216025,0.001512,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216025,0.001512,-0.001750,0.249994,0,0);}
.m41_c00268{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);}
.m94_c00268{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.m6c_c00268{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);}
.me4_c00268{transform:matrix(0.217125,0.001520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217125,0.001520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217125,0.001520,-0.001750,0.249994,0,0);}
.mfe_c00268{transform:matrix(0.217890,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217890,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217890,0.001525,-0.001750,0.249994,0,0);}
.m7c_c00268{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);}
.m71_c00268{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);}
.m2c_c00268{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);}
.m6d_c00268{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);}
.m30_c00268{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);}
.m129_c00268{transform:matrix(0.219316,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219316,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219316,0.001974,-0.002250,0.249990,0,0);}
.m85_c00268{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);}
.m79_c00268{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);}
.m32_c00268{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);}
.m35_c00268{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m6a_c00268{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);}
.me0_c00268{transform:matrix(0.221925,0.001553,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221925,0.001553,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221925,0.001553,-0.001750,0.249994,0,0);}
.mb1_c00268{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);}
.m88_c00268{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m92_c00268{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);}
.m111_c00268{transform:matrix(0.223704,0.002237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223704,0.002237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223704,0.002237,-0.002500,0.249988,0,0);}
.maa_c00268{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);}
.m10c_c00268{transform:matrix(0.226494,0.002265,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226494,0.002265,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226494,0.002265,-0.002500,0.249988,0,0);}
.md6_c00268{transform:matrix(0.226696,0.002040,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226696,0.002040,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226696,0.002040,-0.002250,0.249990,0,0);}
.mc8_c00268{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);}
.m4a_c00268{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);}
.m93_c00268{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);}
.md4_c00268{transform:matrix(0.226946,0.002043,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226946,0.002043,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226946,0.002043,-0.002250,0.249990,0,0);}
.m70_c00268{transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);}
.me3_c00268{transform:matrix(0.227214,0.001591,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227214,0.001591,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227214,0.001591,-0.001750,0.249994,0,0);}
.mfa_c00268{transform:matrix(0.228674,0.001601,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228674,0.001601,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228674,0.001601,-0.001750,0.249994,0,0);}
.m8f_c00268{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);}
.ma1_c00268{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);}
.m96_c00268{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);}
.m19_c00268{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);}
.m68_c00268{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);}
.mb9_c00268{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);}
.m122_c00268{transform:matrix(0.231511,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231511,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231511,0.002084,-0.002250,0.249990,0,0);}
.m33_c00268{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);}
.m116_c00268{transform:matrix(0.232021,0.002088,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232021,0.002088,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232021,0.002088,-0.002250,0.249990,0,0);}
.m120_c00268{transform:matrix(0.232451,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232451,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232451,0.002092,-0.002250,0.249990,0,0);}
.m91_c00268{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);}
.mf2_c00268{transform:matrix(0.236534,0.001656,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236534,0.001656,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236534,0.001656,-0.001750,0.249994,0,0);}
.m9b_c00268{transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236605,0.000000,0.000000,0.250000,0,0);}
.m105_c00268{transform:matrix(0.237124,0.001660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237124,0.001660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237124,0.001660,-0.001750,0.249994,0,0);}
.m8e_c00268{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);}
.mc_c00268{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.mef_c00268{transform:matrix(0.238409,0.001669,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238409,0.001669,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238409,0.001669,-0.001750,0.249994,0,0);}
.mf0_c00268{transform:matrix(0.238554,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238554,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238554,0.001670,-0.001750,0.249994,0,0);}
.m126_c00268{transform:matrix(0.239725,0.002158,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239725,0.002158,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239725,0.002158,-0.002250,0.249990,0,0);}
.m54_c00268{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);}
.m45_c00268{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{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);}
.m10_c00268{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);}
.m11f_c00268{transform:matrix(0.243850,0.002195,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243850,0.002195,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243850,0.002195,-0.002250,0.249990,0,0);}
.m9e_c00268{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.mb0_c00268{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);}
.ma9_c00268{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);}
.m12c_c00268{transform:matrix(0.248540,0.002237,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248540,0.002237,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248540,0.002237,-0.002250,0.249990,0,0);}
.med_c00268{transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);}
.m5f_c00268{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);}
.m8d_c00268{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m80_c00268{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);}
.m5b_c00268{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);}
.m5_c00268{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);}
.mb8_c00268{transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);}
.m12d_c00268{transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);}
.m90_c00268{transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);}
.mad_c00268{transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);}
.mba_c00268{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);}
.m7f_c00268{transform:matrix(0.263820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263820,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.m69_c00268{transform:matrix(0.264830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264830,0.000000,0.000000,0.250000,0,0);}
.mfc_c00268{transform:matrix(0.265913,0.001861,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265913,0.001861,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265913,0.001861,-0.001750,0.249994,0,0);}
.mb2_c00268{transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268475,0.000000,0.000000,0.250000,0,0);}
.md3_c00268{transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);}
.me7_c00268{transform:matrix(0.268563,0.001880,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268563,0.001880,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268563,0.001880,-0.001750,0.249994,0,0);}
.m124_c00268{transform:matrix(0.269154,0.002422,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269154,0.002422,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269154,0.002422,-0.002250,0.249990,0,0);}
.md_c00268{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);}
.md9_c00268{transform:matrix(0.269989,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269989,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269989,0.002430,-0.002250,0.249990,0,0);}
.m67_c00268{transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271910,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{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);}
.m12a_c00268{transform:matrix(0.274044,0.002466,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274044,0.002466,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274044,0.002466,-0.002250,0.249990,0,0);}
.mdd_c00268{transform:matrix(0.274138,0.001919,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274138,0.001919,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274138,0.001919,-0.001750,0.249994,0,0);}
.m10d_c00268{transform:matrix(0.275916,0.002759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275916,0.002759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275916,0.002759,-0.002500,0.249988,0,0);}
.m8c_c00268{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.m136_c00268{transform:matrix(0.280996,0.002248,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280996,0.002248,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280996,0.002248,-0.002000,0.249992,0,0);}
.m6_c00268{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m127_c00268{transform:matrix(0.285348,0.002568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.285348,0.002568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.285348,0.002568,-0.002250,0.249990,0,0);}
.mec_c00268{transform:matrix(0.289723,0.002028,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289723,0.002028,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289723,0.002028,-0.001750,0.249994,0,0);}
.m9_c00268{transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);}
.mda_c00268{transform:matrix(0.296513,0.002669,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296513,0.002669,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296513,0.002669,-0.002250,0.249990,0,0);}
.mc5_c00268{transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);}
.m121_c00268{transform:matrix(0.301678,0.002715,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301678,0.002715,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301678,0.002715,-0.002250,0.249990,0,0);}
.m131_c00268{transform:matrix(0.302575,0.002421,-0.002000,0.249992,0,0);-ms-transform:matrix(0.302575,0.002421,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.302575,0.002421,-0.002000,0.249992,0,0);}
.m113_c00268{transform:matrix(0.304538,0.002741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304538,0.002741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304538,0.002741,-0.002250,0.249990,0,0);}
.mde_c00268{transform:matrix(0.307852,0.002155,-0.001750,0.249994,0,0);-ms-transform:matrix(0.307852,0.002155,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.307852,0.002155,-0.001750,0.249994,0,0);}
.m65_c00268{transform:matrix(0.326620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326620,0.000000,0.000000,0.250000,0,0);}
.m115_c00268{transform:matrix(0.330357,0.002973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330357,0.002973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330357,0.002973,-0.002250,0.249990,0,0);}
.m137_c00268{transform:matrix(0.334874,0.002679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.334874,0.002679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.334874,0.002679,-0.002000,0.249992,0,0);}
.md2_c00268{transform:matrix(0.348675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348675,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.353295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353295,0.000000,0.000000,0.250000,0,0);}
.mc0_c00268{transform:matrix(0.356795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356795,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{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);}
.mbd_c00268{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);}
.m66_c00268{transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);}
.mf9_c00268{transform:matrix(0.374391,0.002621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.374391,0.002621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.374391,0.002621,-0.001750,0.249994,0,0);}
.me2_c00268{transform:matrix(0.384676,0.002693,-0.001750,0.249994,0,0);-ms-transform:matrix(0.384676,0.002693,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.384676,0.002693,-0.001750,0.249994,0,0);}
.m76_c00268{transform:matrix(0.387925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387925,0.000000,0.000000,0.250000,0,0);}
.m11c_c00268{transform:matrix(0.393809,0.003544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.393809,0.003544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.393809,0.003544,-0.002250,0.249990,0,0);}
.m133_c00268{transform:matrix(0.401947,0.003216,-0.002000,0.249992,0,0);-ms-transform:matrix(0.401947,0.003216,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.401947,0.003216,-0.002000,0.249992,0,0);}
.mb3_c00268{transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.412425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412425,0.000000,0.000000,0.250000,0,0);}
.m134_c00268{transform:matrix(0.416652,0.003333,-0.002000,0.249992,0,0);-ms-transform:matrix(0.416652,0.003333,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.416652,0.003333,-0.002000,0.249992,0,0);}
.m139_c00268{transform:matrix(0.422296,0.003378,-0.002000,0.249992,0,0);-ms-transform:matrix(0.422296,0.003378,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.422296,0.003378,-0.002000,0.249992,0,0);}
.m123_c00268{transform:matrix(0.454462,0.004090,-0.002250,0.249990,0,0);-ms-transform:matrix(0.454462,0.004090,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.454462,0.004090,-0.002250,0.249990,0,0);}
.m59_c00268{transform:matrix(0.508995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508995,0.000000,0.000000,0.250000,0,0);}
.m117_c00268{transform:matrix(0.583301,0.005250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.583301,0.005250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.583301,0.005250,-0.002250,0.249990,0,0);}
.m1_c00268{transform:matrix(0.845985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845985,0.000000,0.000000,0.250000,0,0);}
.mea_c00268{transform:matrix(0.889888,0.006229,-0.001750,0.249994,0,0);-ms-transform:matrix(0.889888,0.006229,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.889888,0.006229,-0.001750,0.249994,0,0);}
.m138_c00268{transform:matrix(1.232506,0.009860,-0.002000,0.249992,0,0);-ms-transform:matrix(1.232506,0.009860,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.232506,0.009860,-0.002000,0.249992,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;}
.fs1_c00268{font-size:42.000000px;}
.fs14_c00268{font-size:51.452084px;}
.fs13_c00268{font-size:53.552169px;}
.fsc_c00268{font-size:59.850000px;}
.fs8_c00268{font-size:60.900000px;}
.fs15_c00268{font-size:61.951982px;}
.fs3_c00268{font-size:63.000000px;}
.fs10_c00268{font-size:65.101595px;}
.fsb_c00268{font-size:66.150000px;}
.fs5_c00268{font-size:67.200000px;}
.fs6_c00268{font-size:68.250000px;}
.fsf_c00268{font-size:68.251672px;}
.fse_c00268{font-size:68.252764px;}
.fs12_c00268{font-size:68.253412px;}
.fs9_c00268{font-size:69.300000px;}
.fs11_c00268{font-size:69.301698px;}
.fs7_c00268{font-size:70.350000px;}
.fs4_c00268{font-size:71.400000px;}
.fsd_c00268{font-size:74.550000px;}
.fsa_c00268{font-size:77.700000px;}
.fs2_c00268{font-size:117.600000px;}
.fs0_c00268{font-size:144.900000px;}
.y0_c00268{bottom:0.000000px;}
.y95_c00268{bottom:149.077884px;}
.y94_c00268{bottom:149.721492px;}
.y93_c00268{bottom:150.553200px;}
.y92_c00268{bottom:150.931224px;}
.y91_c00268{bottom:151.555404px;}
.y90_c00268{bottom:151.823568px;}
.y8f_c00268{bottom:151.925100px;}
.y8e_c00268{bottom:152.010252px;}
.y8d_c00268{bottom:152.281500px;}
.y8c_c00268{bottom:171.053749px;}
.y8b_c00268{bottom:171.219697px;}
.y8a_c00268{bottom:171.372471px;}
.y89_c00268{bottom:171.834436px;}
.y88_c00268{bottom:172.166332px;}
.y87_c00268{bottom:172.247416px;}
.y86_c00268{bottom:172.493881px;}
.y85_c00268{bottom:172.701756px;}
.y84_c00268{bottom:173.199061px;}
.y83_c00268{bottom:173.348920px;}
.y82_c00268{bottom:173.807107px;}
.y81_c00268{bottom:174.150153px;}
.y80_c00268{bottom:187.627044px;}
.y7f_c00268{bottom:187.787532px;}
.y7e_c00268{bottom:188.107860px;}
.y7d_c00268{bottom:188.341302px;}
.y7c_c00268{bottom:188.521068px;}
.y7b_c00268{bottom:188.885446px;}
.y7a_c00268{bottom:189.045448px;}
.y79_c00268{bottom:189.341827px;}
.y78_c00268{bottom:189.451704px;}
.y77_c00268{bottom:189.546204px;}
.y76_c00268{bottom:189.567304px;}
.y75_c00268{bottom:189.920761px;}
.y74_c00268{bottom:190.066035px;}
.y73_c00268{bottom:190.489624px;}
.y72_c00268{bottom:190.668742px;}
.y71_c00268{bottom:190.944169px;}
.y70_c00268{bottom:191.264875px;}
.y6f_c00268{bottom:191.505000px;}
.y6e_c00268{bottom:236.968890px;}
.y6d_c00268{bottom:237.960495px;}
.y6c_c00268{bottom:238.189935px;}
.y6b_c00268{bottom:238.638000px;}
.y6a_c00268{bottom:239.145795px;}
.y69_c00268{bottom:239.375820px;}
.y68_c00268{bottom:239.680020px;}
.y67_c00268{bottom:240.301500px;}
.y61_c00268{bottom:271.000110px;}
.y62_c00268{bottom:271.000260px;}
.y63_c00268{bottom:271.000841px;}
.y64_c00268{bottom:271.001091px;}
.y65_c00268{bottom:271.001462px;}
.y66_c00268{bottom:271.001971px;}
.y60_c00268{bottom:291.597438px;}
.y5f_c00268{bottom:291.924998px;}
.y5e_c00268{bottom:292.148346px;}
.y5d_c00268{bottom:292.560368px;}
.y5c_c00268{bottom:292.767517px;}
.y5b_c00268{bottom:293.201240px;}
.y5a_c00268{bottom:293.679245px;}
.y59_c00268{bottom:293.940672px;}
.y58_c00268{bottom:294.455192px;}
.y57_c00268{bottom:294.865123px;}
.y56_c00268{bottom:295.108736px;}
.y55_c00268{bottom:313.964762px;}
.y54_c00268{bottom:314.298934px;}
.y53_c00268{bottom:314.529504px;}
.y52_c00268{bottom:314.697693px;}
.y51_c00268{bottom:314.797884px;}
.y50_c00268{bottom:315.285483px;}
.y4f_c00268{bottom:315.491525px;}
.y4e_c00268{bottom:315.952485px;}
.y4d_c00268{bottom:316.154894px;}
.y4c_c00268{bottom:316.338234px;}
.y4b_c00268{bottom:316.877000px;}
.y4a_c00268{bottom:317.035676px;}
.y49_c00268{bottom:317.137557px;}
.y48_c00268{bottom:317.147270px;}
.y47_c00268{bottom:317.519789px;}
.y46_c00268{bottom:336.681650px;}
.y45_c00268{bottom:337.047480px;}
.y44_c00268{bottom:337.448570px;}
.y43_c00268{bottom:337.652354px;}
.y42_c00268{bottom:337.948873px;}
.y41_c00268{bottom:338.338298px;}
.y40_c00268{bottom:338.500806px;}
.y3f_c00268{bottom:338.833677px;}
.y3e_c00268{bottom:339.323355px;}
.y3d_c00268{bottom:339.462827px;}
.y3c_c00268{bottom:339.627278px;}
.y3b_c00268{bottom:339.897569px;}
.y3a_c00268{bottom:340.017164px;}
.y39_c00268{bottom:340.200000px;}
.y38_c00268{bottom:368.202294px;}
.y37_c00268{bottom:368.425409px;}
.y36_c00268{bottom:368.627774px;}
.y35_c00268{bottom:368.965247px;}
.y34_c00268{bottom:369.185999px;}
.y33_c00268{bottom:369.555737px;}
.y32_c00268{bottom:369.772047px;}
.y31_c00268{bottom:370.221557px;}
.y30_c00268{bottom:370.522998px;}
.y2f_c00268{bottom:370.737000px;}
.y2e_c00268{bottom:390.400500px;}
.y2d_c00268{bottom:391.009500px;}
.y2c_c00268{bottom:391.182000px;}
.y2b_c00268{bottom:391.413000px;}
.y2a_c00268{bottom:391.803000px;}
.y29_c00268{bottom:391.984500px;}
.y28_c00268{bottom:392.325000px;}
.y27_c00268{bottom:392.610000px;}
.y26_c00268{bottom:392.808000px;}
.y25_c00268{bottom:393.148500px;}
.y24_c00268{bottom:393.391500px;}
.y23_c00268{bottom:414.732000px;}
.y22_c00268{bottom:437.217000px;}
.y21_c00268{bottom:465.846000px;}
.y20_c00268{bottom:466.051500px;}
.y1f_c00268{bottom:466.474500px;}
.y1e_c00268{bottom:466.909500px;}
.y1d_c00268{bottom:467.031000px;}
.y1c_c00268{bottom:467.359500px;}
.y1b_c00268{bottom:467.469000px;}
.y1a_c00268{bottom:467.661000px;}
.y19_c00268{bottom:467.934000px;}
.y18_c00268{bottom:468.244500px;}
.y17_c00268{bottom:468.409500px;}
.y16_c00268{bottom:468.652500px;}
.y15_c00268{bottom:468.802500px;}
.y14_c00268{bottom:469.006500px;}
.y13_c00268{bottom:489.883500px;}
.y12_c00268{bottom:512.631000px;}
.y11_c00268{bottom:534.988500px;}
.y10_c00268{bottom:557.170500px;}
.yf_c00268{bottom:579.793500px;}
.ye_c00268{bottom:601.923000px;}
.yd_c00268{bottom:624.631500px;}
.yc_c00268{bottom:647.308500px;}
.yb_c00268{bottom:669.388500px;}
.ya_c00268{bottom:692.107500px;}
.y9_c00268{bottom:715.024500px;}
.y8_c00268{bottom:737.400000px;}
.y7_c00268{bottom:760.012500px;}
.y6_c00268{bottom:783.055500px;}
.y5_c00268{bottom:805.410000px;}
.y4_c00268{bottom:828.090000px;}
.y3_c00268{bottom:870.471000px;}
.y2_c00268{bottom:901.818000px;}
.y1_c00268{bottom:912.594000px;}
.h3_c00268{height:42.000000px;}
.h16_c00268{height:51.452084px;}
.h15_c00268{height:53.552169px;}
.he_c00268{height:59.850000px;}
.ha_c00268{height:60.900000px;}
.h17_c00268{height:61.951982px;}
.h5_c00268{height:63.000000px;}
.h12_c00268{height:65.101595px;}
.hd_c00268{height:66.150000px;}
.h7_c00268{height:67.200000px;}
.h8_c00268{height:68.250000px;}
.h11_c00268{height:68.251672px;}
.h10_c00268{height:68.252764px;}
.h14_c00268{height:68.253412px;}
.hb_c00268{height:69.300000px;}
.h13_c00268{height:69.301698px;}
.h9_c00268{height:70.350000px;}
.h6_c00268{height:71.400000px;}
.hf_c00268{height:74.550000px;}
.hc_c00268{height:77.700000px;}
.h4_c00268{height:117.600000px;}
.h2_c00268{height:144.900000px;}
.h1_c00268{height:1005.000000px;}
.h0_c00268{height:1005.150000px;}
.w1_c00268{width:727.500000px;}
.w0_c00268{width:727.650000px;}
.x0_c00268{left:0.000000px;}
.xb1_c00268{left:27.942000px;}
.x9b_c00268{left:52.374438px;}
.xb2_c00268{left:61.848000px;}
.x55_c00268{left:68.040000px;}
.x9c_c00268{left:69.925299px;}
.xb3_c00268{left:72.492000px;}
.x3f_c00268{left:73.710000px;}
.x2a_c00268{left:75.060000px;}
.x6c_c00268{left:76.593000px;}
.x8b_c00268{left:78.175824px;}
.x15_c00268{left:79.380000px;}
.x9_c00268{left:80.460000px;}
.x73_c00268{left:82.350000px;}
.xb4_c00268{left:85.183500px;}
.x79_c00268{left:86.940000px;}
.x20_c00268{left:96.120000px;}
.x86_c00268{left:102.709500px;}
.x5f_c00268{left:105.570000px;}
.x95_c00268{left:107.613692px;}
.x9d_c00268{left:109.485000px;}
.x80_c00268{left:111.379500px;}
.x5c_c00268{left:114.210000px;}
.x39_c00268{left:116.370000px;}
.xa_c00268{left:118.260000px;}
.x87_c00268{left:119.794500px;}
.x2b_c00268{left:122.310000px;}
.x6d_c00268{left:127.078500px;}
.x8c_c00268{left:131.392824px;}
.x8d_c00268{left:132.780324px;}
.x67_c00268{left:133.920000px;}
.x81_c00268{left:135.157500px;}
.x48_c00268{left:137.700000px;}
.x21_c00268{left:140.130000px;}
.xa3_c00268{left:143.746500px;}
.x7a_c00268{left:146.070000px;}
.x74_c00268{left:147.960000px;}
.x40_c00268{left:152.280000px;}
.x60_c00268{left:155.250000px;}
.x1_c00268{left:157.950000px;}
.x16_c00268{left:161.730000px;}
.xb_c00268{left:166.320000px;}
.x56_c00268{left:167.400000px;}
.x82_c00268{left:168.651000px;}
.x8e_c00268{left:170.002824px;}
.x22_c00268{left:171.180000px;}
.xa4_c00268{left:174.349500px;}
.x3a_c00268{left:175.500000px;}
.x41_c00268{left:178.200000px;}
.x49_c00268{left:180.360000px;}
.x88_c00268{left:181.900500px;}
.x33_c00268{left:184.410000px;}
.xc_c00268{left:189.270000px;}
.xa5_c00268{left:194.251500px;}
.x5_c00268{left:197.100000px;}
.x68_c00268{left:199.800000px;}
.x7d_c00268{left:201.000000px;}
.x9e_c00268{left:202.053000px;}
.x7b_c00268{left:204.660000px;}
.x23_c00268{left:207.630000px;}
.x64_c00268{left:209.790000px;}
.x17_c00268{left:219.240000px;}
.x96_c00268{left:223.177383px;}
.x9f_c00268{left:225.055500px;}
.x5d_c00268{left:226.530000px;}
.x57_c00268{left:229.500000px;}
.x24_c00268{left:231.390000px;}
.x65_c00268{left:232.470000px;}
.x59_c00268{left:234.090000px;}
.xa6_c00268{left:241.317000px;}
.x18_c00268{left:243.540000px;}
.x8f_c00268{left:246.969324px;}
.xd_c00268{left:249.210000px;}
.x97_c00268{left:255.809652px;}
.x75_c00268{left:257.040000px;}
.x42_c00268{left:260.280000px;}
.x2c_c00268{left:265.140000px;}
.x3b_c00268{left:267.300000px;}
.x6e_c00268{left:268.591500px;}
.x7e_c00268{left:270.430500px;}
.x4d_c00268{left:272.700000px;}
.x34_c00268{left:274.320000px;}
.xa0_c00268{left:275.835000px;}
.x2d_c00268{left:279.990000px;}
.x76_c00268{left:281.610000px;}
.xad_c00268{left:282.623709px;}
.x61_c00268{left:283.770000px;}
.x3c_c00268{left:290.250000px;}
.x5e_c00268{left:291.870000px;}
.x6_c00268{left:294.570000px;}
.x6f_c00268{left:296.086500px;}
.x19_c00268{left:297.540000px;}
.xa7_c00268{left:299.076000px;}
.x25_c00268{left:301.050000px;}
.x90_c00268{left:302.076324px;}
.x62_c00268{left:304.290000px;}
.x83_c00268{left:308.241000px;}
.x2e_c00268{left:309.420000px;}
.x7c_c00268{left:310.770000px;}
.x70_c00268{left:311.791500px;}
.x1a_c00268{left:312.930000px;}
.x35_c00268{left:314.280000px;}
.x98_c00268{left:315.524232px;}
.xe_c00268{left:318.330000px;}
.x89_c00268{left:319.332000px;}
.x69_c00268{left:321.570000px;}
.xae_c00268{left:323.685087px;}
.x26_c00268{left:332.100000px;}
.x2f_c00268{left:333.720000px;}
.x2_c00268{left:337.500000px;}
.xf_c00268{left:340.470000px;}
.x4e_c00268{left:341.820000px;}
.xa1_c00268{left:343.585500px;}
.x84_c00268{left:345.738000px;}
.xb5_c00268{left:347.943000px;}
.x77_c00268{left:353.160000px;}
.xa8_c00268{left:354.715500px;}
.x7_c00268{left:358.560000px;}
.x4a_c00268{left:360.450000px;}
.x4f_c00268{left:361.530000px;}
.x36_c00268{left:362.610000px;}
.x43_c00268{left:365.040000px;}
.x85_c00268{left:368.223000px;}
.x99_c00268{left:369.769854px;}
.xa9_c00268{left:372.493500px;}
.x10_c00268{left:373.680000px;}
.x71_c00268{left:376.014000px;}
.x1b_c00268{left:378.540000px;}
.x50_c00268{left:380.970000px;}
.x58_c00268{left:386.100000px;}
.x44_c00268{left:388.260000px;}
.x1f_c00268{left:392.310000px;}
.x30_c00268{left:394.470000px;}
.x78_c00268{left:396.630000px;}
.x27_c00268{left:397.710000px;}
.x11_c00268{left:398.790000px;}
.x5a_c00268{left:403.110000px;}
.x1c_c00268{left:404.190000px;}
.xaa_c00268{left:412.980000px;}
.x12_c00268{left:416.610000px;}
.x51_c00268{left:417.960000px;}
.x4_c00268{left:421.200000px;}
.xaf_c00268{left:423.059492px;}
.x66_c00268{left:428.760000px;}
.x1d_c00268{left:432.540000px;}
.x6a_c00268{left:435.510000px;}
.x28_c00268{left:436.590000px;}
.x63_c00268{left:438.210000px;}
.x4b_c00268{left:440.370000px;}
.xa2_c00268{left:442.746000px;}
.x7f_c00268{left:446.428500px;}
.x52_c00268{left:449.010000px;}
.x45_c00268{left:450.090000px;}
.x13_c00268{left:453.330000px;}
.x31_c00268{left:454.950000px;}
.xab_c00268{left:458.892000px;}
.xb0_c00268{left:462.973356px;}
.x3d_c00268{left:467.640000px;}
.x29_c00268{left:469.530000px;}
.x53_c00268{left:473.310000px;}
.x9a_c00268{left:475.129119px;}
.x91_c00268{left:481.332324px;}
.x46_c00268{left:483.030000px;}
.x37_c00268{left:487.620000px;}
.xac_c00268{left:494.484000px;}
.x72_c00268{left:498.628500px;}
.x1e_c00268{left:503.010000px;}
.x92_c00268{left:505.359324px;}
.x54_c00268{left:510.570000px;}
.x32_c00268{left:513.000000px;}
.x6b_c00268{left:515.430000px;}
.x5b_c00268{left:516.780000px;}
.x8_c00268{left:521.910000px;}
.x4c_c00268{left:524.070000px;}
.x47_c00268{left:527.850000px;}
.x3e_c00268{left:531.090000px;}
.x14_c00268{left:534.330000px;}
.x93_c00268{left:538.297824px;}
.x38_c00268{left:550.260000px;}
.x3_c00268{left:567.540000px;}
.x8a_c00268{left:579.211500px;}
.x94_c00268{left:586.036824px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.fs1_c00268{font-size:37.333333pt;}
.fs14_c00268{font-size:45.735185pt;}
.fs13_c00268{font-size:47.601928pt;}
.fsc_c00268{font-size:53.200000pt;}
.fs8_c00268{font-size:54.133333pt;}
.fs15_c00268{font-size:55.068429pt;}
.fs3_c00268{font-size:56.000000pt;}
.fs10_c00268{font-size:57.868084pt;}
.fsb_c00268{font-size:58.800000pt;}
.fs5_c00268{font-size:59.733333pt;}
.fs6_c00268{font-size:60.666667pt;}
.fsf_c00268{font-size:60.668153pt;}
.fse_c00268{font-size:60.669124pt;}
.fs12_c00268{font-size:60.669700pt;}
.fs9_c00268{font-size:61.600000pt;}
.fs11_c00268{font-size:61.601509pt;}
.fs7_c00268{font-size:62.533333pt;}
.fs4_c00268{font-size:63.466667pt;}
.fsd_c00268{font-size:66.266667pt;}
.fsa_c00268{font-size:69.066667pt;}
.fs2_c00268{font-size:104.533333pt;}
.fs0_c00268{font-size:128.800000pt;}
.y0_c00268{bottom:0.000000pt;}
.y95_c00268{bottom:132.513675pt;}
.y94_c00268{bottom:133.085771pt;}
.y93_c00268{bottom:133.825067pt;}
.y92_c00268{bottom:134.161088pt;}
.y91_c00268{bottom:134.715915pt;}
.y90_c00268{bottom:134.954283pt;}
.y8f_c00268{bottom:135.044533pt;}
.y8e_c00268{bottom:135.120224pt;}
.y8d_c00268{bottom:135.361333pt;}
.y8c_c00268{bottom:152.047777pt;}
.y8b_c00268{bottom:152.195287pt;}
.y8a_c00268{bottom:152.331085pt;}
.y89_c00268{bottom:152.741721pt;}
.y88_c00268{bottom:153.036740pt;}
.y87_c00268{bottom:153.108815pt;}
.y86_c00268{bottom:153.327895pt;}
.y85_c00268{bottom:153.512672pt;}
.y84_c00268{bottom:153.954721pt;}
.y83_c00268{bottom:154.087929pt;}
.y82_c00268{bottom:154.495207pt;}
.y81_c00268{bottom:154.800136pt;}
.y80_c00268{bottom:166.779595pt;}
.y7f_c00268{bottom:166.922251pt;}
.y7e_c00268{bottom:167.206987pt;}
.y7d_c00268{bottom:167.414491pt;}
.y7c_c00268{bottom:167.574283pt;}
.y7b_c00268{bottom:167.898175pt;}
.y7a_c00268{bottom:168.040399pt;}
.y79_c00268{bottom:168.303847pt;}
.y78_c00268{bottom:168.401515pt;}
.y77_c00268{bottom:168.485515pt;}
.y76_c00268{bottom:168.504271pt;}
.y75_c00268{bottom:168.818455pt;}
.y74_c00268{bottom:168.947587pt;}
.y73_c00268{bottom:169.324111pt;}
.y72_c00268{bottom:169.483327pt;}
.y71_c00268{bottom:169.728151pt;}
.y70_c00268{bottom:170.013223pt;}
.y6f_c00268{bottom:170.226667pt;}
.y6e_c00268{bottom:210.639013pt;}
.y6d_c00268{bottom:211.520440pt;}
.y6c_c00268{bottom:211.724387pt;}
.y6b_c00268{bottom:212.122667pt;}
.y6a_c00268{bottom:212.574040pt;}
.y69_c00268{bottom:212.778507pt;}
.y68_c00268{bottom:213.048907pt;}
.y67_c00268{bottom:213.601333pt;}
.y61_c00268{bottom:240.888987pt;}
.y62_c00268{bottom:240.889120pt;}
.y63_c00268{bottom:240.889636pt;}
.y64_c00268{bottom:240.889859pt;}
.y65_c00268{bottom:240.890188pt;}
.y66_c00268{bottom:240.890641pt;}
.y60_c00268{bottom:259.197723pt;}
.y5f_c00268{bottom:259.488887pt;}
.y5e_c00268{bottom:259.687419pt;}
.y5d_c00268{bottom:260.053660pt;}
.y5c_c00268{bottom:260.237793pt;}
.y5b_c00268{bottom:260.623324pt;}
.y5a_c00268{bottom:261.048217pt;}
.y59_c00268{bottom:261.280597pt;}
.y58_c00268{bottom:261.737948pt;}
.y57_c00268{bottom:262.102332pt;}
.y56_c00268{bottom:262.318876pt;}
.y55_c00268{bottom:279.079788pt;}
.y54_c00268{bottom:279.376831pt;}
.y53_c00268{bottom:279.581781pt;}
.y52_c00268{bottom:279.731283pt;}
.y51_c00268{bottom:279.820341pt;}
.y50_c00268{bottom:280.253763pt;}
.y4f_c00268{bottom:280.436911pt;}
.y4e_c00268{bottom:280.846653pt;}
.y4d_c00268{bottom:281.026572pt;}
.y4c_c00268{bottom:281.189541pt;}
.y4b_c00268{bottom:281.668444pt;}
.y4a_c00268{bottom:281.809489pt;}
.y49_c00268{bottom:281.900051pt;}
.y48_c00268{bottom:281.908684pt;}
.y47_c00268{bottom:282.239812pt;}
.y46_c00268{bottom:299.272577pt;}
.y45_c00268{bottom:299.597760pt;}
.y44_c00268{bottom:299.954284pt;}
.y43_c00268{bottom:300.135425pt;}
.y42_c00268{bottom:300.398999pt;}
.y41_c00268{bottom:300.745153pt;}
.y40_c00268{bottom:300.889605pt;}
.y3f_c00268{bottom:301.185491pt;}
.y3e_c00268{bottom:301.620760pt;}
.y3d_c00268{bottom:301.744735pt;}
.y3c_c00268{bottom:301.890913pt;}
.y3b_c00268{bottom:302.131172pt;}
.y3a_c00268{bottom:302.237479pt;}
.y39_c00268{bottom:302.400000pt;}
.y38_c00268{bottom:327.290928pt;}
.y37_c00268{bottom:327.489252pt;}
.y36_c00268{bottom:327.669132pt;}
.y35_c00268{bottom:327.969108pt;}
.y34_c00268{bottom:328.165332pt;}
.y33_c00268{bottom:328.493988pt;}
.y32_c00268{bottom:328.686264pt;}
.y31_c00268{bottom:329.085828pt;}
.y30_c00268{bottom:329.353776pt;}
.y2f_c00268{bottom:329.544000pt;}
.y2e_c00268{bottom:347.022667pt;}
.y2d_c00268{bottom:347.564000pt;}
.y2c_c00268{bottom:347.717333pt;}
.y2b_c00268{bottom:347.922667pt;}
.y2a_c00268{bottom:348.269333pt;}
.y29_c00268{bottom:348.430667pt;}
.y28_c00268{bottom:348.733333pt;}
.y27_c00268{bottom:348.986667pt;}
.y26_c00268{bottom:349.162667pt;}
.y25_c00268{bottom:349.465333pt;}
.y24_c00268{bottom:349.681333pt;}
.y23_c00268{bottom:368.650667pt;}
.y22_c00268{bottom:388.637333pt;}
.y21_c00268{bottom:414.085333pt;}
.y20_c00268{bottom:414.268000pt;}
.y1f_c00268{bottom:414.644000pt;}
.y1e_c00268{bottom:415.030667pt;}
.y1d_c00268{bottom:415.138667pt;}
.y1c_c00268{bottom:415.430667pt;}
.y1b_c00268{bottom:415.528000pt;}
.y1a_c00268{bottom:415.698667pt;}
.y19_c00268{bottom:415.941333pt;}
.y18_c00268{bottom:416.217333pt;}
.y17_c00268{bottom:416.364000pt;}
.y16_c00268{bottom:416.580000pt;}
.y15_c00268{bottom:416.713333pt;}
.y14_c00268{bottom:416.894667pt;}
.y13_c00268{bottom:435.452000pt;}
.y12_c00268{bottom:455.672000pt;}
.y11_c00268{bottom:475.545333pt;}
.y10_c00268{bottom:495.262667pt;}
.yf_c00268{bottom:515.372000pt;}
.ye_c00268{bottom:535.042667pt;}
.yd_c00268{bottom:555.228000pt;}
.yc_c00268{bottom:575.385333pt;}
.yb_c00268{bottom:595.012000pt;}
.ya_c00268{bottom:615.206667pt;}
.y9_c00268{bottom:635.577333pt;}
.y8_c00268{bottom:655.466667pt;}
.y7_c00268{bottom:675.566667pt;}
.y6_c00268{bottom:696.049333pt;}
.y5_c00268{bottom:715.920000pt;}
.y4_c00268{bottom:736.080000pt;}
.y3_c00268{bottom:773.752000pt;}
.y2_c00268{bottom:801.616000pt;}
.y1_c00268{bottom:811.194667pt;}
.h3_c00268{height:37.333333pt;}
.h16_c00268{height:45.735185pt;}
.h15_c00268{height:47.601928pt;}
.he_c00268{height:53.200000pt;}
.ha_c00268{height:54.133333pt;}
.h17_c00268{height:55.068429pt;}
.h5_c00268{height:56.000000pt;}
.h12_c00268{height:57.868084pt;}
.hd_c00268{height:58.800000pt;}
.h7_c00268{height:59.733333pt;}
.h8_c00268{height:60.666667pt;}
.h11_c00268{height:60.668153pt;}
.h10_c00268{height:60.669124pt;}
.h14_c00268{height:60.669700pt;}
.hb_c00268{height:61.600000pt;}
.h13_c00268{height:61.601509pt;}
.h9_c00268{height:62.533333pt;}
.h6_c00268{height:63.466667pt;}
.hf_c00268{height:66.266667pt;}
.hc_c00268{height:69.066667pt;}
.h4_c00268{height:104.533333pt;}
.h2_c00268{height:128.800000pt;}
.h1_c00268{height:893.333333pt;}
.h0_c00268{height:893.466667pt;}
.w1_c00268{width:646.666667pt;}
.w0_c00268{width:646.800000pt;}
.x0_c00268{left:0.000000pt;}
.xb1_c00268{left:24.837333pt;}
.x9b_c00268{left:46.555056pt;}
.xb2_c00268{left:54.976000pt;}
.x55_c00268{left:60.480000pt;}
.x9c_c00268{left:62.155821pt;}
.xb3_c00268{left:64.437333pt;}
.x3f_c00268{left:65.520000pt;}
.x2a_c00268{left:66.720000pt;}
.x6c_c00268{left:68.082667pt;}
.x8b_c00268{left:69.489621pt;}
.x15_c00268{left:70.560000pt;}
.x9_c00268{left:71.520000pt;}
.x73_c00268{left:73.200000pt;}
.xb4_c00268{left:75.718667pt;}
.x79_c00268{left:77.280000pt;}
.x20_c00268{left:85.440000pt;}
.x86_c00268{left:91.297333pt;}
.x5f_c00268{left:93.840000pt;}
.x95_c00268{left:95.656615pt;}
.x9d_c00268{left:97.320000pt;}
.x80_c00268{left:99.004000pt;}
.x5c_c00268{left:101.520000pt;}
.x39_c00268{left:103.440000pt;}
.xa_c00268{left:105.120000pt;}
.x87_c00268{left:106.484000pt;}
.x2b_c00268{left:108.720000pt;}
.x6d_c00268{left:112.958667pt;}
.x8c_c00268{left:116.793621pt;}
.x8d_c00268{left:118.026955pt;}
.x67_c00268{left:119.040000pt;}
.x81_c00268{left:120.140000pt;}
.x48_c00268{left:122.400000pt;}
.x21_c00268{left:124.560000pt;}
.xa3_c00268{left:127.774667pt;}
.x7a_c00268{left:129.840000pt;}
.x74_c00268{left:131.520000pt;}
.x40_c00268{left:135.360000pt;}
.x60_c00268{left:138.000000pt;}
.x1_c00268{left:140.400000pt;}
.x16_c00268{left:143.760000pt;}
.xb_c00268{left:147.840000pt;}
.x56_c00268{left:148.800000pt;}
.x82_c00268{left:149.912000pt;}
.x8e_c00268{left:151.113621pt;}
.x22_c00268{left:152.160000pt;}
.xa4_c00268{left:154.977333pt;}
.x3a_c00268{left:156.000000pt;}
.x41_c00268{left:158.400000pt;}
.x49_c00268{left:160.320000pt;}
.x88_c00268{left:161.689333pt;}
.x33_c00268{left:163.920000pt;}
.xc_c00268{left:168.240000pt;}
.xa5_c00268{left:172.668000pt;}
.x5_c00268{left:175.200000pt;}
.x68_c00268{left:177.600000pt;}
.x7d_c00268{left:178.666667pt;}
.x9e_c00268{left:179.602667pt;}
.x7b_c00268{left:181.920000pt;}
.x23_c00268{left:184.560000pt;}
.x64_c00268{left:186.480000pt;}
.x17_c00268{left:194.880000pt;}
.x96_c00268{left:198.379896pt;}
.x9f_c00268{left:200.049333pt;}
.x5d_c00268{left:201.360000pt;}
.x57_c00268{left:204.000000pt;}
.x24_c00268{left:205.680000pt;}
.x65_c00268{left:206.640000pt;}
.x59_c00268{left:208.080000pt;}
.xa6_c00268{left:214.504000pt;}
.x18_c00268{left:216.480000pt;}
.x8f_c00268{left:219.528288pt;}
.xd_c00268{left:221.520000pt;}
.x97_c00268{left:227.386357pt;}
.x75_c00268{left:228.480000pt;}
.x42_c00268{left:231.360000pt;}
.x2c_c00268{left:235.680000pt;}
.x3b_c00268{left:237.600000pt;}
.x6e_c00268{left:238.748000pt;}
.x7e_c00268{left:240.382667pt;}
.x4d_c00268{left:242.400000pt;}
.x34_c00268{left:243.840000pt;}
.xa0_c00268{left:245.186667pt;}
.x2d_c00268{left:248.880000pt;}
.x76_c00268{left:250.320000pt;}
.xad_c00268{left:251.221075pt;}
.x61_c00268{left:252.240000pt;}
.x3c_c00268{left:258.000000pt;}
.x5e_c00268{left:259.440000pt;}
.x6_c00268{left:261.840000pt;}
.x6f_c00268{left:263.188000pt;}
.x19_c00268{left:264.480000pt;}
.xa7_c00268{left:265.845333pt;}
.x25_c00268{left:267.600000pt;}
.x90_c00268{left:268.512288pt;}
.x62_c00268{left:270.480000pt;}
.x83_c00268{left:273.992000pt;}
.x2e_c00268{left:275.040000pt;}
.x7c_c00268{left:276.240000pt;}
.x70_c00268{left:277.148000pt;}
.x1a_c00268{left:278.160000pt;}
.x35_c00268{left:279.360000pt;}
.x98_c00268{left:280.465984pt;}
.xe_c00268{left:282.960000pt;}
.x89_c00268{left:283.850667pt;}
.x69_c00268{left:285.840000pt;}
.xae_c00268{left:287.720077pt;}
.x26_c00268{left:295.200000pt;}
.x2f_c00268{left:296.640000pt;}
.x2_c00268{left:300.000000pt;}
.xf_c00268{left:302.640000pt;}
.x4e_c00268{left:303.840000pt;}
.xa1_c00268{left:305.409333pt;}
.x84_c00268{left:307.322667pt;}
.xb5_c00268{left:309.282667pt;}
.x77_c00268{left:313.920000pt;}
.xa8_c00268{left:315.302667pt;}
.x7_c00268{left:318.720000pt;}
.x4a_c00268{left:320.400000pt;}
.x4f_c00268{left:321.360000pt;}
.x36_c00268{left:322.320000pt;}
.x43_c00268{left:324.480000pt;}
.x85_c00268{left:327.309333pt;}
.x99_c00268{left:328.684315pt;}
.xa9_c00268{left:331.105333pt;}
.x10_c00268{left:332.160000pt;}
.x71_c00268{left:334.234667pt;}
.x1b_c00268{left:336.480000pt;}
.x50_c00268{left:338.640000pt;}
.x58_c00268{left:343.200000pt;}
.x44_c00268{left:345.120000pt;}
.x1f_c00268{left:348.720000pt;}
.x30_c00268{left:350.640000pt;}
.x78_c00268{left:352.560000pt;}
.x27_c00268{left:353.520000pt;}
.x11_c00268{left:354.480000pt;}
.x5a_c00268{left:358.320000pt;}
.x1c_c00268{left:359.280000pt;}
.xaa_c00268{left:367.093333pt;}
.x12_c00268{left:370.320000pt;}
.x51_c00268{left:371.520000pt;}
.x4_c00268{left:374.400000pt;}
.xaf_c00268{left:376.052881pt;}
.x66_c00268{left:381.120000pt;}
.x1d_c00268{left:384.480000pt;}
.x6a_c00268{left:387.120000pt;}
.x28_c00268{left:388.080000pt;}
.x63_c00268{left:389.520000pt;}
.x4b_c00268{left:391.440000pt;}
.xa2_c00268{left:393.552000pt;}
.x7f_c00268{left:396.825333pt;}
.x52_c00268{left:399.120000pt;}
.x45_c00268{left:400.080000pt;}
.x13_c00268{left:402.960000pt;}
.x31_c00268{left:404.400000pt;}
.xab_c00268{left:407.904000pt;}
.xb0_c00268{left:411.531872pt;}
.x3d_c00268{left:415.680000pt;}
.x29_c00268{left:417.360000pt;}
.x53_c00268{left:420.720000pt;}
.x9a_c00268{left:422.336995pt;}
.x91_c00268{left:427.850955pt;}
.x46_c00268{left:429.360000pt;}
.x37_c00268{left:433.440000pt;}
.xac_c00268{left:439.541333pt;}
.x72_c00268{left:443.225333pt;}
.x1e_c00268{left:447.120000pt;}
.x92_c00268{left:449.208288pt;}
.x54_c00268{left:453.840000pt;}
.x32_c00268{left:456.000000pt;}
.x6b_c00268{left:458.160000pt;}
.x5b_c00268{left:459.360000pt;}
.x8_c00268{left:463.920000pt;}
.x4c_c00268{left:465.840000pt;}
.x47_c00268{left:469.200000pt;}
.x3e_c00268{left:472.080000pt;}
.x14_c00268{left:474.960000pt;}
.x93_c00268{left:478.486955pt;}
.x38_c00268{left:489.120000pt;}
.x3_c00268{left:504.480000pt;}
.x8a_c00268{left:514.854667pt;}
.x94_c00268{left:520.921621pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mec_c00269{transform:matrix(0.008580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008580,0.000000,0.000000,0.250000,0,0);}
.m9d_c00269{transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040730,0.000000,0.000000,0.250000,0,0);}
.md8_c00269{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);}
.ma0_c00269{transform:matrix(0.084980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084980,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.086085,-0.000947,0.002750,0.249985,0,0);-ms-transform:matrix(0.086085,-0.000947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.086085,-0.000947,0.002750,0.249985,0,0);}
.md2_c00269{transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);}
.m7d_c00269{transform:matrix(0.112300,-0.001011,0.002250,0.249990,0,0);-ms-transform:matrix(0.112300,-0.001011,0.002250,0.249990,0,0);-webkit-transform:matrix(0.112300,-0.001011,0.002250,0.249990,0,0);}
.m8a_c00269{transform:matrix(0.124950,-0.001125,0.002250,0.249990,0,0);-ms-transform:matrix(0.124950,-0.001125,0.002250,0.249990,0,0);-webkit-transform:matrix(0.124950,-0.001125,0.002250,0.249990,0,0);}
.m8e_c00269{transform:matrix(0.132030,-0.001188,0.002250,0.249990,0,0);-ms-transform:matrix(0.132030,-0.001188,0.002250,0.249990,0,0);-webkit-transform:matrix(0.132030,-0.001188,0.002250,0.249990,0,0);}
.m27_c00269{transform:matrix(0.132432,-0.000927,0.001750,0.249994,0,0);-ms-transform:matrix(0.132432,-0.000927,0.001750,0.249994,0,0);-webkit-transform:matrix(0.132432,-0.000927,0.001750,0.249994,0,0);}
.m33_c00269{transform:matrix(0.136267,-0.000954,0.001750,0.249994,0,0);-ms-transform:matrix(0.136267,-0.000954,0.001750,0.249994,0,0);-webkit-transform:matrix(0.136267,-0.000954,0.001750,0.249994,0,0);}
.m122_c00269{transform:matrix(0.142110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142110,0.000000,0.000000,0.250000,0,0);}
.me1_c00269{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.144379,-0.001299,0.002250,0.249990,0,0);-ms-transform:matrix(0.144379,-0.001299,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144379,-0.001299,0.002250,0.249990,0,0);}
.mb_c00269{transform:matrix(0.145021,-0.001595,0.002750,0.249985,0,0);-ms-transform:matrix(0.145021,-0.001595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145021,-0.001595,0.002750,0.249985,0,0);}
.m124_c00269{transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.149241,-0.001642,0.002750,0.249985,0,0);-ms-transform:matrix(0.149241,-0.001642,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149241,-0.001642,0.002750,0.249985,0,0);}
.m20_c00269{transform:matrix(0.150176,-0.001652,0.002750,0.249985,0,0);-ms-transform:matrix(0.150176,-0.001652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150176,-0.001652,0.002750,0.249985,0,0);}
.m37_c00269{transform:matrix(0.150566,-0.001054,0.001750,0.249994,0,0);-ms-transform:matrix(0.150566,-0.001054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150566,-0.001054,0.001750,0.249994,0,0);}
.m5_c00269{transform:matrix(0.151108,-0.002267,0.003750,0.249972,0,0);-ms-transform:matrix(0.151108,-0.002267,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151108,-0.002267,0.003750,0.249972,0,0);}
.mbb_c00269{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);}
.m6a_c00269{transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);-ms-transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);}
.m21_c00269{transform:matrix(0.153916,-0.001693,0.002750,0.249985,0,0);-ms-transform:matrix(0.153916,-0.001693,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153916,-0.001693,0.002750,0.249985,0,0);}
.md3_c00269{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);}
.m6f_c00269{transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);-ms-transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);}
.m2f_c00269{transform:matrix(0.154681,-0.001083,0.001750,0.249994,0,0);-ms-transform:matrix(0.154681,-0.001083,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154681,-0.001083,0.001750,0.249994,0,0);}
.m3b_c00269{transform:matrix(0.154786,-0.001084,0.001750,0.249994,0,0);-ms-transform:matrix(0.154786,-0.001084,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154786,-0.001084,0.001750,0.249994,0,0);}
.mdf_c00269{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);}
.m30_c00269{transform:matrix(0.157226,-0.001101,0.001750,0.249994,0,0);-ms-transform:matrix(0.157226,-0.001101,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157226,-0.001101,0.001750,0.249994,0,0);}
.m4b_c00269{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.me7_c00269{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);}
.m78_c00269{transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);-ms-transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);}
.m3e_c00269{transform:matrix(0.158236,-0.001108,0.001750,0.249994,0,0);-ms-transform:matrix(0.158236,-0.001108,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158236,-0.001108,0.001750,0.249994,0,0);}
.m98_c00269{transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);-ms-transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);}
.m67_c00269{transform:matrix(0.158849,-0.001430,0.002250,0.249990,0,0);-ms-transform:matrix(0.158849,-0.001430,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158849,-0.001430,0.002250,0.249990,0,0);}
.m32_c00269{transform:matrix(0.159351,-0.001115,0.001750,0.249994,0,0);-ms-transform:matrix(0.159351,-0.001115,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159351,-0.001115,0.001750,0.249994,0,0);}
.m3a_c00269{transform:matrix(0.159466,-0.001116,0.001750,0.249994,0,0);-ms-transform:matrix(0.159466,-0.001116,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159466,-0.001116,0.001750,0.249994,0,0);}
.mef_c00269{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);}
.m63_c00269{transform:matrix(0.159699,-0.001437,0.002250,0.249990,0,0);-ms-transform:matrix(0.159699,-0.001437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159699,-0.001437,0.002250,0.249990,0,0);}
.m7a_c00269{transform:matrix(0.159854,-0.001439,0.002250,0.249990,0,0);-ms-transform:matrix(0.159854,-0.001439,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159854,-0.001439,0.002250,0.249990,0,0);}
.m40_c00269{transform:matrix(0.161361,-0.001130,0.001750,0.249994,0,0);-ms-transform:matrix(0.161361,-0.001130,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161361,-0.001130,0.001750,0.249994,0,0);}
.m10_c00269{transform:matrix(0.162690,-0.001790,0.002750,0.249985,0,0);-ms-transform:matrix(0.162690,-0.001790,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162690,-0.001790,0.002750,0.249985,0,0);}
.md_c00269{transform:matrix(0.162740,-0.001790,0.002750,0.249985,0,0);-ms-transform:matrix(0.162740,-0.001790,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162740,-0.001790,0.002750,0.249985,0,0);}
.m59_c00269{transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);-ms-transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);}
.m1c_c00269{transform:matrix(0.163410,-0.001798,0.002750,0.249985,0,0);-ms-transform:matrix(0.163410,-0.001798,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163410,-0.001798,0.002750,0.249985,0,0);}
.m66_c00269{transform:matrix(0.163453,-0.001471,0.002250,0.249990,0,0);-ms-transform:matrix(0.163453,-0.001471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163453,-0.001471,0.002250,0.249990,0,0);}
.m34_c00269{transform:matrix(0.164441,-0.001151,0.001750,0.249994,0,0);-ms-transform:matrix(0.164441,-0.001151,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164441,-0.001151,0.001750,0.249994,0,0);}
.m88_c00269{transform:matrix(0.165118,-0.001486,0.002250,0.249990,0,0);-ms-transform:matrix(0.165118,-0.001486,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165118,-0.001486,0.002250,0.249990,0,0);}
.m4a_c00269{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);}
.ma7_c00269{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);}
.m17_c00269{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);}
.m96_c00269{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);}
.me8_c00269{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);}
.m1a_c00269{transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);}
.me_c00269{transform:matrix(0.167080,-0.001838,0.002750,0.249985,0,0);-ms-transform:matrix(0.167080,-0.001838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167080,-0.001838,0.002750,0.249985,0,0);}
.m9e_c00269{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);}
.m64_c00269{transform:matrix(0.167628,-0.001509,0.002250,0.249990,0,0);-ms-transform:matrix(0.167628,-0.001509,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167628,-0.001509,0.002250,0.249990,0,0);}
.mae_c00269{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);}
.m73_c00269{transform:matrix(0.168533,-0.001517,0.002250,0.249990,0,0);-ms-transform:matrix(0.168533,-0.001517,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168533,-0.001517,0.002250,0.249990,0,0);}
.maf_c00269{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);}
.m120_c00269{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);}
.m99_c00269{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);}
.m13_c00269{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);}
.m79_c00269{transform:matrix(0.171168,-0.001541,0.002250,0.249990,0,0);-ms-transform:matrix(0.171168,-0.001541,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171168,-0.001541,0.002250,0.249990,0,0);}
.m44_c00269{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);}
.m53_c00269{transform:matrix(0.172148,-0.001549,0.002250,0.249990,0,0);-ms-transform:matrix(0.172148,-0.001549,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172148,-0.001549,0.002250,0.249990,0,0);}
.m8c_c00269{transform:matrix(0.172168,-0.001550,0.002250,0.249990,0,0);-ms-transform:matrix(0.172168,-0.001550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172168,-0.001550,0.002250,0.249990,0,0);}
.m83_c00269{transform:matrix(0.172968,-0.001557,0.002250,0.249990,0,0);-ms-transform:matrix(0.172968,-0.001557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172968,-0.001557,0.002250,0.249990,0,0);}
.m1b_c00269{transform:matrix(0.173420,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173420,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173420,-0.001908,0.002750,0.249985,0,0);}
.mdd_c00269{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);}
.m9a_c00269{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);}
.mba_c00269{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);}
.mbd_c00269{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);}
.m5d_c00269{transform:matrix(0.177083,-0.001594,0.002250,0.249990,0,0);-ms-transform:matrix(0.177083,-0.001594,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177083,-0.001594,0.002250,0.249990,0,0);}
.mad_c00269{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);}
.mc6_c00269{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);}
.m8d_c00269{transform:matrix(0.178043,-0.001602,0.002250,0.249990,0,0);-ms-transform:matrix(0.178043,-0.001602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178043,-0.001602,0.002250,0.249990,0,0);}
.mf1_c00269{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);}
.md4_c00269{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);}
.m15_c00269{transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178704,-0.001966,0.002750,0.249985,0,0);}
.m2a_c00269{transform:matrix(0.178751,-0.001251,0.001750,0.249994,0,0);-ms-transform:matrix(0.178751,-0.001251,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178751,-0.001251,0.001750,0.249994,0,0);}
.m1e_c00269{transform:matrix(0.178889,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178889,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178889,-0.001968,0.002750,0.249985,0,0);}
.mc2_c00269{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);}
.mf8_c00269{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);}
.mda_c00269{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);}
.md6_c00269{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);}
.m22_c00269{transform:matrix(0.180194,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180194,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180194,-0.001982,0.002750,0.249985,0,0);}
.me0_c00269{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m121_c00269{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);}
.m7b_c00269{transform:matrix(0.180708,-0.001626,0.002250,0.249990,0,0);-ms-transform:matrix(0.180708,-0.001626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180708,-0.001626,0.002250,0.249990,0,0);}
.m8b_c00269{transform:matrix(0.181063,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181063,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181063,-0.001630,0.002250,0.249990,0,0);}
.m9_c00269{transform:matrix(0.181599,-0.001998,0.002750,0.249985,0,0);-ms-transform:matrix(0.181599,-0.001998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181599,-0.001998,0.002750,0.249985,0,0);}
.m72_c00269{transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);}
.m94_c00269{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);}
.m3f_c00269{transform:matrix(0.181926,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181926,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181926,-0.001273,0.001750,0.249994,0,0);}
.m93_c00269{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);}
.m81_c00269{transform:matrix(0.182918,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182918,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182918,-0.001646,0.002250,0.249990,0,0);}
.m36_c00269{transform:matrix(0.183041,-0.001281,0.001750,0.249994,0,0);-ms-transform:matrix(0.183041,-0.001281,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183041,-0.001281,0.001750,0.249994,0,0);}
.m9b_c00269{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_c00269{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);}
.md0_c00269{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);}
.m3c_c00269{transform:matrix(0.184035,-0.001288,0.001750,0.249994,0,0);-ms-transform:matrix(0.184035,-0.001288,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184035,-0.001288,0.001750,0.249994,0,0);}
.m58_c00269{transform:matrix(0.184093,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184093,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184093,-0.001657,0.002250,0.249990,0,0);}
.mb4_c00269{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);}
.mc1_c00269{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);}
.m61_c00269{transform:matrix(0.184688,-0.001662,0.002250,0.249990,0,0);-ms-transform:matrix(0.184688,-0.001662,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184688,-0.001662,0.002250,0.249990,0,0);}
.m10e_c00269{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);}
.m107_c00269{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);}
.maa_c00269{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);}
.m82_c00269{transform:matrix(0.185522,-0.001670,0.002250,0.249990,0,0);-ms-transform:matrix(0.185522,-0.001670,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185522,-0.001670,0.002250,0.249990,0,0);}
.mca_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);}
.m26_c00269{transform:matrix(0.185810,-0.001301,0.001750,0.249994,0,0);-ms-transform:matrix(0.185810,-0.001301,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185810,-0.001301,0.001750,0.249994,0,0);}
.m69_c00269{transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186047,-0.001674,0.002250,0.249990,0,0);}
.ma8_c00269{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);}
.mb9_c00269{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);}
.m3d_c00269{transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186395,-0.001305,0.001750,0.249994,0,0);}
.m5b_c00269{transform:matrix(0.186632,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186632,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186632,-0.001680,0.002250,0.249990,0,0);}
.mf_c00269{transform:matrix(0.187374,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187374,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187374,-0.002061,0.002750,0.249985,0,0);}
.m28_c00269{transform:matrix(0.187425,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187425,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187425,-0.001312,0.001750,0.249994,0,0);}
.mc_c00269{transform:matrix(0.187719,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187719,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187719,-0.002065,0.002750,0.249985,0,0);}
.m68_c00269{transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);}
.m1d_c00269{transform:matrix(0.188214,-0.002070,0.002750,0.249985,0,0);-ms-transform:matrix(0.188214,-0.002070,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188214,-0.002070,0.002750,0.249985,0,0);}
.m92_c00269{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);}
.ma9_c00269{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);}
.m7c_c00269{transform:matrix(0.188942,-0.001700,0.002250,0.249990,0,0);-ms-transform:matrix(0.188942,-0.001700,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188942,-0.001700,0.002250,0.249990,0,0);}
.m62_c00269{transform:matrix(0.189087,-0.001702,0.002250,0.249990,0,0);-ms-transform:matrix(0.189087,-0.001702,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189087,-0.001702,0.002250,0.249990,0,0);}
.ma6_c00269{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);}
.mdc_c00269{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);}
.m75_c00269{transform:matrix(0.190317,-0.001713,0.002250,0.249990,0,0);-ms-transform:matrix(0.190317,-0.001713,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190317,-0.001713,0.002250,0.249990,0,0);}
.m41_c00269{transform:matrix(0.190430,-0.001333,0.001750,0.249994,0,0);-ms-transform:matrix(0.190430,-0.001333,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190430,-0.001333,0.001750,0.249994,0,0);}
.m6e_c00269{transform:matrix(0.190532,-0.001715,0.002250,0.249990,0,0);-ms-transform:matrix(0.190532,-0.001715,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190532,-0.001715,0.002250,0.249990,0,0);}
.m6d_c00269{transform:matrix(0.191512,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191512,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191512,-0.001724,0.002250,0.249990,0,0);}
.mc0_c00269{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);}
.m80_c00269{transform:matrix(0.192992,-0.001737,0.002250,0.249990,0,0);-ms-transform:matrix(0.192992,-0.001737,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192992,-0.001737,0.002250,0.249990,0,0);}
.m12_c00269{transform:matrix(0.193253,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193253,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193253,-0.002126,0.002750,0.249985,0,0);}
.m11_c00269{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);}
.mc9_c00269{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);}
.m77_c00269{transform:matrix(0.194217,-0.001748,0.002250,0.249990,0,0);-ms-transform:matrix(0.194217,-0.001748,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194217,-0.001748,0.002250,0.249990,0,0);}
.me5_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);}
.m35_c00269{transform:matrix(0.195290,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195290,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195290,-0.001367,0.001750,0.249994,0,0);}
.mac_c00269{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);}
.m5f_c00269{transform:matrix(0.195397,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195397,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195397,-0.001759,0.002250,0.249990,0,0);}
.m114_c00269{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);}
.me9_c00269{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);}
.m106_c00269{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_c00269{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);}
.m4d_c00269{transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);-ms-transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);}
.m71_c00269{transform:matrix(0.196577,-0.001769,0.002250,0.249990,0,0);-ms-transform:matrix(0.196577,-0.001769,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196577,-0.001769,0.002250,0.249990,0,0);}
.m10d_c00269{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);}
.me6_c00269{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);}
.m11a_c00269{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);}
.m76_c00269{transform:matrix(0.198242,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198242,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198242,-0.001784,0.002250,0.249990,0,0);}
.m10a_c00269{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);}
.m86_c00269{transform:matrix(0.198687,-0.001788,0.002250,0.249990,0,0);-ms-transform:matrix(0.198687,-0.001788,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198687,-0.001788,0.002250,0.249990,0,0);}
.mf0_c00269{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);}
.m104_c00269{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);}
.ma2_c00269{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);}
.mb2_c00269{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);}
.m11f_c00269{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);}
.mc8_c00269{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);}
.mbc_c00269{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);}
.m5c_c00269{transform:matrix(0.200612,-0.001806,0.002250,0.249990,0,0);-ms-transform:matrix(0.200612,-0.001806,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200612,-0.001806,0.002250,0.249990,0,0);}
.m2c_c00269{transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);}
.mb0_c00269{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);}
.m74_c00269{transform:matrix(0.201057,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201057,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201057,-0.001810,0.002250,0.249990,0,0);}
.m51_c00269{transform:matrix(0.201362,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201362,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201362,-0.001812,0.002250,0.249990,0,0);}
.me2_c00269{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);}
.m9f_c00269{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);}
.m8f_c00269{transform:matrix(0.202162,-0.001819,0.002250,0.249990,0,0);-ms-transform:matrix(0.202162,-0.001819,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202162,-0.001819,0.002250,0.249990,0,0);}
.md9_c00269{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);}
.m7f_c00269{transform:matrix(0.202367,-0.001821,0.002250,0.249990,0,0);-ms-transform:matrix(0.202367,-0.001821,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202367,-0.001821,0.002250,0.249990,0,0);}
.mbf_c00269{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);}
.m2b_c00269{transform:matrix(0.202720,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202720,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202720,-0.001419,0.001750,0.249994,0,0);}
.m60_c00269{transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);-ms-transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202917,-0.001826,0.002250,0.249990,0,0);}
.mee_c00269{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);}
.m42_c00269{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);}
.m5a_c00269{transform:matrix(0.204157,-0.001837,0.002250,0.249990,0,0);-ms-transform:matrix(0.204157,-0.001837,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204157,-0.001837,0.002250,0.249990,0,0);}
.m6b_c00269{transform:matrix(0.204267,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204267,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204267,-0.001838,0.002250,0.249990,0,0);}
.m70_c00269{transform:matrix(0.204407,-0.001840,0.002250,0.249990,0,0);-ms-transform:matrix(0.204407,-0.001840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204407,-0.001840,0.002250,0.249990,0,0);}
.m29_c00269{transform:matrix(0.204675,-0.001433,0.001750,0.249994,0,0);-ms-transform:matrix(0.204675,-0.001433,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204675,-0.001433,0.001750,0.249994,0,0);}
.m115_c00269{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);}
.m119_c00269{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);}
.mea_c00269{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);}
.mf4_c00269{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);}
.mf5_c00269{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);}
.m11c_c00269{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);}
.m56_c00269{transform:matrix(0.207127,-0.001864,0.002250,0.249990,0,0);-ms-transform:matrix(0.207127,-0.001864,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207127,-0.001864,0.002250,0.249990,0,0);}
.mf7_c00269{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.mcf_c00269{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);}
.ma_c00269{transform:matrix(0.208727,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208727,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208727,-0.002296,0.002750,0.249985,0,0);}
.mc7_c00269{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);}
.m4f_c00269{transform:matrix(0.209162,-0.001882,0.002250,0.249990,0,0);-ms-transform:matrix(0.209162,-0.001882,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209162,-0.001882,0.002250,0.249990,0,0);}
.ma5_c00269{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);}
.mb5_c00269{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);}
.mf3_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);}
.m4e_c00269{transform:matrix(0.210931,-0.001898,0.002250,0.249990,0,0);-ms-transform:matrix(0.210931,-0.001898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210931,-0.001898,0.002250,0.249990,0,0);}
.m9c_c00269{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);}
.mb7_c00269{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);}
.m6c_c00269{transform:matrix(0.211851,-0.001907,0.002250,0.249990,0,0);-ms-transform:matrix(0.211851,-0.001907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211851,-0.001907,0.002250,0.249990,0,0);}
.m52_c00269{transform:matrix(0.212136,-0.001909,0.002250,0.249990,0,0);-ms-transform:matrix(0.212136,-0.001909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212136,-0.001909,0.002250,0.249990,0,0);}
.m38_c00269{transform:matrix(0.212290,-0.001486,0.001750,0.249994,0,0);-ms-transform:matrix(0.212290,-0.001486,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212290,-0.001486,0.001750,0.249994,0,0);}
.m10f_c00269{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);}
.m23_c00269{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);}
.m48_c00269{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);}
.me4_c00269{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);}
.mb8_c00269{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);}
.ma4_c00269{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);}
.m65_c00269{transform:matrix(0.217691,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217691,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217691,-0.001959,0.002250,0.249990,0,0);}
.mf2_c00269{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);}
.m55_c00269{transform:matrix(0.218631,-0.001968,0.002250,0.249990,0,0);-ms-transform:matrix(0.218631,-0.001968,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218631,-0.001968,0.002250,0.249990,0,0);}
.m95_c00269{transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.219552,-0.002415,0.002750,0.249985,0,0);-ms-transform:matrix(0.219552,-0.002415,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219552,-0.002415,0.002750,0.249985,0,0);}
.m19_c00269{transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);}
.m43_c00269{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);}
.mbe_c00269{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);}
.md1_c00269{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);}
.me3_c00269{transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);}
.mf9_c00269{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);}
.md5_c00269{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);}
.mb3_c00269{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);}
.ma1_c00269{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);}
.m11b_c00269{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);}
.m14_c00269{transform:matrix(0.227661,-0.002504,0.002750,0.249985,0,0);-ms-transform:matrix(0.227661,-0.002504,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227661,-0.002504,0.002750,0.249985,0,0);}
.m90_c00269{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);}
.mfb_c00269{transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.229969,-0.001610,0.001750,0.249994,0,0);-ms-transform:matrix(0.229969,-0.001610,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229969,-0.001610,0.001750,0.249994,0,0);}
.m24_c00269{transform:matrix(0.232286,-0.002555,0.002750,0.249985,0,0);-ms-transform:matrix(0.232286,-0.002555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232286,-0.002555,0.002750,0.249985,0,0);}
.mb1_c00269{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.mdb_c00269{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);}
.ma3_c00269{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);}
.m11e_c00269{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);}
.mde_c00269{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);}
.m7e_c00269{transform:matrix(0.235540,-0.002120,0.002250,0.249990,0,0);-ms-transform:matrix(0.235540,-0.002120,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235540,-0.002120,0.002250,0.249990,0,0);}
.m4c_c00269{transform:matrix(0.237290,-0.002136,0.002250,0.249990,0,0);-ms-transform:matrix(0.237290,-0.002136,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237290,-0.002136,0.002250,0.249990,0,0);}
.m7_c00269{transform:matrix(0.237573,-0.003564,0.003750,0.249972,0,0);-ms-transform:matrix(0.237573,-0.003564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237573,-0.003564,0.003750,0.249972,0,0);}
.m46_c00269{transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);}
.m2d_c00269{transform:matrix(0.243729,-0.001706,0.001750,0.249994,0,0);-ms-transform:matrix(0.243729,-0.001706,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243729,-0.001706,0.001750,0.249994,0,0);}
.mcb_c00269{transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{transform:matrix(0.243925,-0.002195,0.002250,0.249990,0,0);-ms-transform:matrix(0.243925,-0.002195,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243925,-0.002195,0.002250,0.249990,0,0);}
.mfe_c00269{transform:matrix(0.244390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244390,0.000000,0.000000,0.250000,0,0);}
.m111_c00269{transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);}
.mff_c00269{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.mc3_c00269{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m87_c00269{transform:matrix(0.250605,-0.002255,0.002250,0.249990,0,0);-ms-transform:matrix(0.250605,-0.002255,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250605,-0.002255,0.002250,0.249990,0,0);}
.m85_c00269{transform:matrix(0.251195,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251195,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251195,-0.002261,0.002250,0.249990,0,0);}
.m45_c00269{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);}
.mab_c00269{transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);}
.mfa_c00269{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);}
.m2e_c00269{transform:matrix(0.261904,-0.001833,0.001750,0.249994,0,0);-ms-transform:matrix(0.261904,-0.001833,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261904,-0.001833,0.001750,0.249994,0,0);}
.md7_c00269{transform:matrix(0.262370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262370,0.000000,0.000000,0.250000,0,0);}
.mc4_c00269{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);}
.m89_c00269{transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);-ms-transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);}
.m5e_c00269{transform:matrix(0.270454,-0.002434,0.002250,0.249990,0,0);-ms-transform:matrix(0.270454,-0.002434,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270454,-0.002434,0.002250,0.249990,0,0);}
.m105_c00269{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m116_c00269{transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276405,0.000000,0.000000,0.250000,0,0);}
.mfd_c00269{transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);}
.meb_c00269{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);}
.m102_c00269{transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285225,0.000000,0.000000,0.250000,0,0);}
.m84_c00269{transform:matrix(0.287608,-0.002588,0.002250,0.249990,0,0);-ms-transform:matrix(0.287608,-0.002588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287608,-0.002588,0.002250,0.249990,0,0);}
.mfc_c00269{transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294085,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.297653,-0.002679,0.002250,0.249990,0,0);-ms-transform:matrix(0.297653,-0.002679,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297653,-0.002679,0.002250,0.249990,0,0);}
.m8_c00269{transform:matrix(0.302147,-0.003324,0.002750,0.249985,0,0);-ms-transform:matrix(0.302147,-0.003324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.302147,-0.003324,0.002750,0.249985,0,0);}
.m97_c00269{transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);}
.med_c00269{transform:matrix(0.304520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304520,0.000000,0.000000,0.250000,0,0);}
.m123_c00269{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);}
.m6_c00269{transform:matrix(0.317334,-0.004760,0.003750,0.249972,0,0);-ms-transform:matrix(0.317334,-0.004760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.317334,-0.004760,0.003750,0.249972,0,0);}
.mcd_c00269{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{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);}
.m117_c00269{transform:matrix(0.338945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338945,0.000000,0.000000,0.250000,0,0);}
.mf6_c00269{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);}
.m101_c00269{transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);}
.mb6_c00269{transform:matrix(0.345180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345180,0.000000,0.000000,0.250000,0,0);}
.mcc_c00269{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);}
.m2_c00269{transform:matrix(0.358860,-0.005383,0.003750,0.249972,0,0);-ms-transform:matrix(0.358860,-0.005383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.358860,-0.005383,0.003750,0.249972,0,0);}
.m4_c00269{transform:matrix(0.369573,-0.005544,0.003750,0.249972,0,0);-ms-transform:matrix(0.369573,-0.005544,0.003750,0.249972,0,0);-webkit-transform:matrix(0.369573,-0.005544,0.003750,0.249972,0,0);}
.m110_c00269{transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371455,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.373343,-0.005600,0.003750,0.249972,0,0);-ms-transform:matrix(0.373343,-0.005600,0.003750,0.249972,0,0);-webkit-transform:matrix(0.373343,-0.005600,0.003750,0.249972,0,0);}
.m100_c00269{transform:matrix(0.374265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374265,0.000000,0.000000,0.250000,0,0);}
.m118_c00269{transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.375645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375645,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.377688,-0.005665,0.003750,0.249972,0,0);-ms-transform:matrix(0.377688,-0.005665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.377688,-0.005665,0.003750,0.249972,0,0);}
.m91_c00269{transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);}
.m10b_c00269{transform:matrix(0.410080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410080,0.000000,0.000000,0.250000,0,0);}
.m108_c00269{transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);}
.m113_c00269{transform:matrix(0.484300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484300,0.000000,0.000000,0.250000,0,0);}
.m103_c00269{transform:matrix(0.505905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505905,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.519757,-0.007796,0.003750,0.249972,0,0);-ms-transform:matrix(0.519757,-0.007796,0.003750,0.249972,0,0);-webkit-transform:matrix(0.519757,-0.007796,0.003750,0.249972,0,0);}
.m112_c00269{transform:matrix(0.523860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523860,0.000000,0.000000,0.250000,0,0);}
.m10c_c00269{transform:matrix(0.571645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571645,0.000000,0.000000,0.250000,0,0);}
.m109_c00269{transform:matrix(0.689295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689295,0.000000,0.000000,0.250000,0,0);}
.m11d_c00269{transform:matrix(0.893755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893755,0.000000,0.000000,0.250000,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;}
.fs11_c00269{font-size:51.450000px;}
.fs13_c00269{font-size:54.600000px;}
.fs12_c00269{font-size:56.700000px;}
.fs10_c00269{font-size:61.950000px;}
.fs14_c00269{font-size:64.050000px;}
.fsd_c00269{font-size:67.200000px;}
.fs4_c00269{font-size:68.254129px;}
.fs9_c00269{font-size:69.302807px;}
.fse_c00269{font-size:70.350000px;}
.fs5_c00269{font-size:70.351724px;}
.fsa_c00269{font-size:70.352849px;}
.fsc_c00269{font-size:71.400000px;}
.fs7_c00269{font-size:71.401749px;}
.fsb_c00269{font-size:71.402892px;}
.fs2_c00269{font-size:71.404320px;}
.fsf_c00269{font-size:72.450000px;}
.fs6_c00269{font-size:72.451775px;}
.fs8_c00269{font-size:73.500000px;}
.fs3_c00269{font-size:74.554510px;}
.fs1_c00269{font-size:127.064292px;}
.fs0_c00269{font-size:129.164529px;}
.y0_c00269{bottom:0.000000px;}
.y97_c00269{bottom:166.252500px;}
.y96_c00269{bottom:177.373500px;}
.y95_c00269{bottom:185.454000px;}
.y94_c00269{bottom:202.854000px;}
.y93_c00269{bottom:266.490000px;}
.y92_c00269{bottom:288.999000px;}
.y91_c00269{bottom:311.667000px;}
.y90_c00269{bottom:334.342500px;}
.y8f_c00269{bottom:357.316500px;}
.y8e_c00269{bottom:379.996500px;}
.y8d_c00269{bottom:402.406500px;}
.y8c_c00269{bottom:429.769500px;}
.y8b_c00269{bottom:456.937500px;}
.y8a_c00269{bottom:484.731000px;}
.y89_c00269{bottom:507.708000px;}
.y83_c00269{bottom:541.158783px;}
.y84_c00269{bottom:541.159053px;}
.y81_c00269{bottom:541.159156px;}
.y82_c00269{bottom:541.159263px;}
.y7f_c00269{bottom:541.159377px;}
.y86_c00269{bottom:541.159642px;}
.y85_c00269{bottom:541.159789px;}
.y80_c00269{bottom:541.159830px;}
.y88_c00269{bottom:541.159945px;}
.y87_c00269{bottom:541.160229px;}
.y7b_c00269{bottom:564.766912px;}
.y7a_c00269{bottom:564.767166px;}
.y7d_c00269{bottom:564.767202px;}
.y7e_c00269{bottom:564.767218px;}
.y7c_c00269{bottom:564.767379px;}
.y77_c00269{bottom:564.767447px;}
.y76_c00269{bottom:564.767506px;}
.y79_c00269{bottom:564.767569px;}
.y78_c00269{bottom:564.767746px;}
.y75_c00269{bottom:564.768013px;}
.y74_c00269{bottom:564.768147px;}
.y73_c00269{bottom:564.768700px;}
.y72_c00269{bottom:564.768954px;}
.y71_c00269{bottom:588.196212px;}
.y70_c00269{bottom:588.196436px;}
.y6f_c00269{bottom:588.196869px;}
.y6e_c00269{bottom:588.197152px;}
.y6c_c00269{bottom:588.197223px;}
.y6b_c00269{bottom:588.197476px;}
.y6d_c00269{bottom:588.197479px;}
.y6a_c00269{bottom:588.197623px;}
.y67_c00269{bottom:588.197857px;}
.y68_c00269{bottom:588.198130px;}
.y69_c00269{bottom:588.198327px;}
.y66_c00269{bottom:611.117518px;}
.y65_c00269{bottom:611.117532px;}
.y61_c00269{bottom:611.117556px;}
.y60_c00269{bottom:611.117630px;}
.y64_c00269{bottom:611.117652px;}
.y5d_c00269{bottom:611.117760px;}
.y62_c00269{bottom:611.117812px;}
.y5c_c00269{bottom:611.118103px;}
.y5f_c00269{bottom:611.118183px;}
.y63_c00269{bottom:611.118339px;}
.y5e_c00269{bottom:611.118406px;}
.y5b_c00269{bottom:611.118417px;}
.y52_c00269{bottom:634.302826px;}
.y51_c00269{bottom:634.302930px;}
.y57_c00269{bottom:634.303182px;}
.y50_c00269{bottom:634.303243px;}
.y54_c00269{bottom:634.303416px;}
.y53_c00269{bottom:634.303489px;}
.y56_c00269{bottom:634.303525px;}
.y55_c00269{bottom:634.303552px;}
.y4f_c00269{bottom:634.303737px;}
.y58_c00269{bottom:634.303829px;}
.y59_c00269{bottom:634.304325px;}
.y5a_c00269{bottom:634.304642px;}
.y44_c00269{bottom:654.481500px;}
.y45_c00269{bottom:654.850117px;}
.y46_c00269{bottom:655.040278px;}
.y47_c00269{bottom:655.669311px;}
.y48_c00269{bottom:656.033662px;}
.y49_c00269{bottom:656.386417px;}
.y4a_c00269{bottom:657.066831px;}
.y4b_c00269{bottom:657.428334px;}
.y4c_c00269{bottom:657.873010px;}
.y4d_c00269{bottom:658.045621px;}
.y4e_c00269{bottom:658.379112px;}
.y43_c00269{bottom:686.740500px;}
.y3a_c00269{bottom:709.611298px;}
.y3f_c00269{bottom:709.611346px;}
.y42_c00269{bottom:709.611366px;}
.y3e_c00269{bottom:709.611417px;}
.y40_c00269{bottom:709.611437px;}
.y3d_c00269{bottom:709.611548px;}
.y41_c00269{bottom:709.611606px;}
.y3b_c00269{bottom:709.611738px;}
.y3c_c00269{bottom:709.611967px;}
.y33_c00269{bottom:733.021952px;}
.y32_c00269{bottom:733.021992px;}
.y39_c00269{bottom:733.022031px;}
.y31_c00269{bottom:733.022123px;}
.y30_c00269{bottom:733.022163px;}
.y35_c00269{bottom:733.022271px;}
.y34_c00269{bottom:733.022492px;}
.y38_c00269{bottom:733.022511px;}
.y36_c00269{bottom:733.022541px;}
.y37_c00269{bottom:733.023111px;}
.y27_c00269{bottom:753.840000px;}
.y28_c00269{bottom:754.021514px;}
.y29_c00269{bottom:754.204707px;}
.y2a_c00269{bottom:754.467606px;}
.y2b_c00269{bottom:754.922844px;}
.y2c_c00269{bottom:755.121672px;}
.y2d_c00269{bottom:755.599695px;}
.y2e_c00269{bottom:755.788800px;}
.y2f_c00269{bottom:756.892318px;}
.y24_c00269{bottom:784.560504px;}
.y25_c00269{bottom:784.561118px;}
.y26_c00269{bottom:784.561235px;}
.y16_c00269{bottom:807.029972px;}
.y17_c00269{bottom:807.386522px;}
.y18_c00269{bottom:807.617344px;}
.y19_c00269{bottom:807.984410px;}
.y1a_c00269{bottom:808.650120px;}
.y1b_c00269{bottom:808.850917px;}
.y1c_c00269{bottom:809.058054px;}
.y1d_c00269{bottom:809.324463px;}
.y1e_c00269{bottom:809.625189px;}
.y1f_c00269{bottom:809.863323px;}
.y20_c00269{bottom:810.143631px;}
.y21_c00269{bottom:810.256847px;}
.y22_c00269{bottom:810.403340px;}
.y23_c00269{bottom:810.599763px;}
.y9_c00269{bottom:828.901500px;}
.ya_c00269{bottom:829.127303px;}
.yb_c00269{bottom:829.849029px;}
.yc_c00269{bottom:830.125255px;}
.yd_c00269{bottom:830.493123px;}
.ye_c00269{bottom:831.016470px;}
.yf_c00269{bottom:831.574830px;}
.y10_c00269{bottom:832.103490px;}
.y11_c00269{bottom:832.382621px;}
.y12_c00269{bottom:832.614363px;}
.y13_c00269{bottom:833.154375px;}
.y14_c00269{bottom:833.615253px;}
.y15_c00269{bottom:834.034023px;}
.y5_c00269{bottom:873.450277px;}
.y6_c00269{bottom:874.132912px;}
.y7_c00269{bottom:875.574225px;}
.y8_c00269{bottom:880.311352px;}
.y1_c00269{bottom:915.037500px;}
.y2_c00269{bottom:917.864940px;}
.y3_c00269{bottom:919.590532px;}
.y4_c00269{bottom:921.442687px;}
.h13_c00269{height:51.450000px;}
.h15_c00269{height:54.600000px;}
.h14_c00269{height:56.700000px;}
.h12_c00269{height:61.950000px;}
.h16_c00269{height:64.050000px;}
.hf_c00269{height:67.200000px;}
.h6_c00269{height:68.254129px;}
.hb_c00269{height:69.302807px;}
.h10_c00269{height:70.350000px;}
.h7_c00269{height:70.351724px;}
.hc_c00269{height:70.352849px;}
.he_c00269{height:71.400000px;}
.h9_c00269{height:71.401749px;}
.hd_c00269{height:71.402892px;}
.h4_c00269{height:71.404320px;}
.h11_c00269{height:72.450000px;}
.h8_c00269{height:72.451775px;}
.ha_c00269{height:73.500000px;}
.h5_c00269{height:74.554510px;}
.h3_c00269{height:127.064292px;}
.h2_c00269{height:129.164529px;}
.h0_c00269{height:1008.450000px;}
.h1_c00269{height:1008.750000px;}
.w0_c00269{width:711.720000px;}
.w1_c00269{width:711.750000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:117.642000px;}
.x5_c00269{left:120.484808px;}
.x6_c00269{left:172.995383px;}
.x9_c00269{left:174.835500px;}
.x3f_c00269{left:177.324000px;}
.x57_c00269{left:178.738119px;}
.x6a_c00269{left:181.440000px;}
.x9b_c00269{left:183.600000px;}
.xa_c00269{left:195.363000px;}
.xa1_c00269{left:196.830000px;}
.x73_c00269{left:199.530000px;}
.xa7_c00269{left:205.470000px;}
.x23_c00269{left:209.519882px;}
.x67_c00269{left:210.600000px;}
.x25_c00269{left:212.302500px;}
.x6b_c00269{left:213.570000px;}
.x95_c00269{left:215.730000px;}
.x16_c00269{left:218.533923px;}
.x81_c00269{left:222.480000px;}
.x9c_c00269{left:224.370000px;}
.x5a_c00269{left:227.879945px;}
.x4e_c00269{left:229.229943px;}
.x8d_c00269{left:232.740000px;}
.x39_c00269{left:236.250000px;}
.x26_c00269{left:238.233000px;}
.x40_c00269{left:239.410500px;}
.xa8_c00269{left:241.650000px;}
.x79_c00269{left:243.810000px;}
.x2b_c00269{left:245.967368px;}
.x17_c00269{left:247.427880px;}
.x24_c00269{left:248.671617px;}
.x9d_c00269{left:253.260000px;}
.x33_c00269{left:255.148182px;}
.xb_c00269{left:260.974500px;}
.x82_c00269{left:262.440000px;}
.x27_c00269{left:264.403500px;}
.x3a_c00269{left:265.410000px;}
.x6c_c00269{left:267.840000px;}
.x48_c00269{left:270.271621px;}
.x7a_c00269{left:272.430000px;}
.x4f_c00269{left:274.862142px;}
.x8e_c00269{left:277.560000px;}
.x5b_c00269{left:278.641062px;}
.x6d_c00269{left:280.800000px;}
.x74_c00269{left:282.690000px;}
.x7_c00269{left:283.886213px;}
.xc_c00269{left:286.086000px;}
.x62_c00269{left:289.981443px;}
.x65_c00269{left:291.060000px;}
.x18_c00269{left:293.344398px;}
.x9e_c00269{left:294.840000px;}
.x83_c00269{left:297.000000px;}
.x34_c00269{left:299.968877px;}
.x28_c00269{left:301.960500px;}
.x50_c00269{left:305.103085px;}
.x2_c00269{left:306.138000px;}
.x41_c00269{left:309.303000px;}
.x8f_c00269{left:310.500000px;}
.x7b_c00269{left:311.850000px;}
.x87_c00269{left:316.170000px;}
.x2c_c00269{left:317.517875px;}
.xd_c00269{left:319.528500px;}
.x9f_c00269{left:321.570000px;}
.x3b_c00269{left:326.430000px;}
.x63_c00269{left:329.943183px;}
.x88_c00269{left:331.830000px;}
.x90_c00269{left:332.910000px;}
.x5c_c00269{left:336.422747px;}
.x96_c00269{left:339.120000px;}
.x2d_c00269{left:340.739009px;}
.x68_c00269{left:344.520000px;}
.x49_c00269{left:346.684804px;}
.x42_c00269{left:349.786500px;}
.x5d_c00269{left:352.084016px;}
.xa2_c00269{left:356.400000px;}
.x35_c00269{left:357.750212px;}
.x64_c00269{left:360.724167px;}
.x6e_c00269{left:361.800000px;}
.xe_c00269{left:367.105500px;}
.x5e_c00269{left:368.285325px;}
.x19_c00269{left:376.502637px;}
.x3c_c00269{left:378.000000px;}
.x6f_c00269{left:379.080000px;}
.x2e_c00269{left:384.209640px;}
.x43_c00269{left:388.981500px;}
.x3d_c00269{left:391.770000px;}
.x51_c00269{left:392.857200px;}
.xa9_c00269{left:394.200000px;}
.x29_c00269{left:395.398500px;}
.xa0_c00269{left:398.520000px;}
.x1a_c00269{left:401.575962px;}
.x70_c00269{left:408.240000px;}
.x2f_c00269{left:409.320869px;}
.x36_c00269{left:410.671305px;}
.xf_c00269{left:417.865500px;}
.x7c_c00269{left:419.850000px;}
.x3_c00269{left:421.177500px;}
.x1b_c00269{left:427.498320px;}
.x37_c00269{left:432.542376px;}
.x52_c00269{left:435.519156px;}
.x30_c00269{left:439.832360px;}
.x66_c00269{left:441.180000px;}
.x75_c00269{left:442.260000px;}
.x5f_c00269{left:447.938778px;}
.x3e_c00269{left:451.440000px;}
.x7d_c00269{left:457.110000px;}
.x1c_c00269{left:460.718409px;}
.x2a_c00269{left:463.687500px;}
.x10_c00269{left:465.925500px;}
.x31_c00269{left:469.533819px;}
.xa5_c00269{left:472.500000px;}
.x4a_c00269{left:485.200023px;}
.x53_c00269{left:486.551787px;}
.x32_c00269{left:487.894722px;}
.x38_c00269{left:489.783680px;}
.x11_c00269{left:491.301000px;}
.x89_c00269{left:493.290000px;}
.x60_c00269{left:495.731153px;}
.x1d_c00269{left:498.285647px;}
.x69_c00269{left:499.500000px;}
.x71_c00269{left:502.470000px;}
.x44_c00269{left:504.750000px;}
.x54_c00269{left:507.611988px;}
.x76_c00269{left:511.110000px;}
.x12_c00269{left:512.368500px;}
.x91_c00269{left:521.910000px;}
.x72_c00269{left:525.690000px;}
.x1e_c00269{left:527.980620px;}
.x4b_c00269{left:530.832222px;}
.x7e_c00269{left:531.900000px;}
.x77_c00269{left:532.980000px;}
.x8a_c00269{left:536.220000px;}
.xaa_c00269{left:542.160000px;}
.x4_c00269{left:544.654500px;}
.x7f_c00269{left:548.910000px;}
.x45_c00269{left:554.158500px;}
.x13_c00269{left:561.460500px;}
.x1f_c00269{left:563.009775px;}
.x97_c00269{left:566.730000px;}
.xab_c00269{left:568.080000px;}
.x84_c00269{left:569.970000px;}
.x55_c00269{left:571.874199px;}
.x46_c00269{left:573.337500px;}
.x92_c00269{left:575.370000px;}
.x20_c00269{left:577.120737px;}
.x85_c00269{left:581.580000px;}
.xa3_c00269{left:584.280000px;}
.x8b_c00269{left:585.360000px;}
.x4c_c00269{left:589.964001px;}
.x21_c00269{left:595.484348px;}
.x86_c00269{left:597.510000px;}
.x80_c00269{left:599.940000px;}
.x14_c00269{left:603.358500px;}
.x98_c00269{left:606.420000px;}
.x93_c00269{left:608.040000px;}
.x47_c00269{left:610.392000px;}
.x58_c00269{left:615.615516px;}
.x56_c00269{left:616.696330px;}
.x22_c00269{left:620.023656px;}
.x99_c00269{left:622.890000px;}
.x4d_c00269{left:625.335363px;}
.xa4_c00269{left:629.100000px;}
.x61_c00269{left:639.915330px;}
.x15_c00269{left:641.428500px;}
.x59_c00269{left:643.426271px;}
.x8c_c00269{left:645.030000px;}
.x8_c00269{left:648.305648px;}
.x9a_c00269{left:649.350000px;}
.xa6_c00269{left:657.450000px;}
.x78_c00269{left:661.770000px;}
.x94_c00269{left:663.930000px;}
.xac_c00269{left:688.230000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.fs11_c00269{font-size:45.733333pt;}
.fs13_c00269{font-size:48.533333pt;}
.fs12_c00269{font-size:50.400000pt;}
.fs10_c00269{font-size:55.066667pt;}
.fs14_c00269{font-size:56.933333pt;}
.fsd_c00269{font-size:59.733333pt;}
.fs4_c00269{font-size:60.670337pt;}
.fs9_c00269{font-size:61.602495pt;}
.fse_c00269{font-size:62.533333pt;}
.fs5_c00269{font-size:62.534865pt;}
.fsa_c00269{font-size:62.535866pt;}
.fsc_c00269{font-size:63.466667pt;}
.fs7_c00269{font-size:63.468222pt;}
.fsb_c00269{font-size:63.469237pt;}
.fs2_c00269{font-size:63.470506pt;}
.fsf_c00269{font-size:64.400000pt;}
.fs6_c00269{font-size:64.401578pt;}
.fs8_c00269{font-size:65.333333pt;}
.fs3_c00269{font-size:66.270676pt;}
.fs1_c00269{font-size:112.946038pt;}
.fs0_c00269{font-size:114.812914pt;}
.y0_c00269{bottom:0.000000pt;}
.y97_c00269{bottom:147.780000pt;}
.y96_c00269{bottom:157.665333pt;}
.y95_c00269{bottom:164.848000pt;}
.y94_c00269{bottom:180.314667pt;}
.y93_c00269{bottom:236.880000pt;}
.y92_c00269{bottom:256.888000pt;}
.y91_c00269{bottom:277.037333pt;}
.y90_c00269{bottom:297.193333pt;}
.y8f_c00269{bottom:317.614667pt;}
.y8e_c00269{bottom:337.774667pt;}
.y8d_c00269{bottom:357.694667pt;}
.y8c_c00269{bottom:382.017333pt;}
.y8b_c00269{bottom:406.166667pt;}
.y8a_c00269{bottom:430.872000pt;}
.y89_c00269{bottom:451.296000pt;}
.y83_c00269{bottom:481.030029pt;}
.y84_c00269{bottom:481.030269pt;}
.y81_c00269{bottom:481.030361pt;}
.y82_c00269{bottom:481.030456pt;}
.y7f_c00269{bottom:481.030557pt;}
.y86_c00269{bottom:481.030793pt;}
.y85_c00269{bottom:481.030924pt;}
.y80_c00269{bottom:481.030960pt;}
.y88_c00269{bottom:481.031063pt;}
.y87_c00269{bottom:481.031315pt;}
.y7b_c00269{bottom:502.015033pt;}
.y7a_c00269{bottom:502.015259pt;}
.y7d_c00269{bottom:502.015291pt;}
.y7e_c00269{bottom:502.015305pt;}
.y7c_c00269{bottom:502.015448pt;}
.y77_c00269{bottom:502.015508pt;}
.y76_c00269{bottom:502.015561pt;}
.y79_c00269{bottom:502.015617pt;}
.y78_c00269{bottom:502.015775pt;}
.y75_c00269{bottom:502.016012pt;}
.y74_c00269{bottom:502.016131pt;}
.y73_c00269{bottom:502.016623pt;}
.y72_c00269{bottom:502.016848pt;}
.y71_c00269{bottom:522.841077pt;}
.y70_c00269{bottom:522.841276pt;}
.y6f_c00269{bottom:522.841661pt;}
.y6e_c00269{bottom:522.841913pt;}
.y6c_c00269{bottom:522.841976pt;}
.y6b_c00269{bottom:522.842201pt;}
.y6d_c00269{bottom:522.842204pt;}
.y6a_c00269{bottom:522.842332pt;}
.y67_c00269{bottom:522.842540pt;}
.y68_c00269{bottom:522.842783pt;}
.y69_c00269{bottom:522.842957pt;}
.y66_c00269{bottom:543.215572pt;}
.y65_c00269{bottom:543.215584pt;}
.y61_c00269{bottom:543.215605pt;}
.y60_c00269{bottom:543.215671pt;}
.y64_c00269{bottom:543.215691pt;}
.y5d_c00269{bottom:543.215787pt;}
.y62_c00269{bottom:543.215833pt;}
.y5c_c00269{bottom:543.216092pt;}
.y5f_c00269{bottom:543.216163pt;}
.y63_c00269{bottom:543.216301pt;}
.y5e_c00269{bottom:543.216361pt;}
.y5b_c00269{bottom:543.216371pt;}
.y52_c00269{bottom:563.824735pt;}
.y51_c00269{bottom:563.824827pt;}
.y57_c00269{bottom:563.825051pt;}
.y50_c00269{bottom:563.825105pt;}
.y54_c00269{bottom:563.825259pt;}
.y53_c00269{bottom:563.825324pt;}
.y56_c00269{bottom:563.825356pt;}
.y55_c00269{bottom:563.825380pt;}
.y4f_c00269{bottom:563.825544pt;}
.y58_c00269{bottom:563.825625pt;}
.y59_c00269{bottom:563.826067pt;}
.y5a_c00269{bottom:563.826348pt;}
.y44_c00269{bottom:581.761333pt;}
.y45_c00269{bottom:582.088993pt;}
.y46_c00269{bottom:582.258025pt;}
.y47_c00269{bottom:582.817165pt;}
.y48_c00269{bottom:583.141033pt;}
.y49_c00269{bottom:583.454593pt;}
.y4a_c00269{bottom:584.059405pt;}
.y4b_c00269{bottom:584.380741pt;}
.y4c_c00269{bottom:584.776009pt;}
.y4d_c00269{bottom:584.929441pt;}
.y4e_c00269{bottom:585.225877pt;}
.y43_c00269{bottom:610.436000pt;}
.y3a_c00269{bottom:630.765599pt;}
.y3f_c00269{bottom:630.765641pt;}
.y42_c00269{bottom:630.765659pt;}
.y3e_c00269{bottom:630.765704pt;}
.y40_c00269{bottom:630.765721pt;}
.y3d_c00269{bottom:630.765820pt;}
.y41_c00269{bottom:630.765872pt;}
.y3b_c00269{bottom:630.765989pt;}
.y3c_c00269{bottom:630.766193pt;}
.y33_c00269{bottom:651.575068pt;}
.y32_c00269{bottom:651.575104pt;}
.y39_c00269{bottom:651.575139pt;}
.y31_c00269{bottom:651.575220pt;}
.y30_c00269{bottom:651.575256pt;}
.y35_c00269{bottom:651.575352pt;}
.y34_c00269{bottom:651.575548pt;}
.y38_c00269{bottom:651.575565pt;}
.y36_c00269{bottom:651.575592pt;}
.y37_c00269{bottom:651.576099pt;}
.y27_c00269{bottom:670.080000pt;}
.y28_c00269{bottom:670.241345pt;}
.y29_c00269{bottom:670.404184pt;}
.y2a_c00269{bottom:670.637872pt;}
.y2b_c00269{bottom:671.042528pt;}
.y2c_c00269{bottom:671.219264pt;}
.y2d_c00269{bottom:671.644173pt;}
.y2e_c00269{bottom:671.812267pt;}
.y2f_c00269{bottom:672.793172pt;}
.y24_c00269{bottom:697.387115pt;}
.y25_c00269{bottom:697.387660pt;}
.y26_c00269{bottom:697.387764pt;}
.y16_c00269{bottom:717.359975pt;}
.y17_c00269{bottom:717.676908pt;}
.y18_c00269{bottom:717.882084pt;}
.y19_c00269{bottom:718.208364pt;}
.y1a_c00269{bottom:718.800107pt;}
.y1b_c00269{bottom:718.978593pt;}
.y1c_c00269{bottom:719.162715pt;}
.y1d_c00269{bottom:719.399523pt;}
.y1e_c00269{bottom:719.666835pt;}
.y1f_c00269{bottom:719.878509pt;}
.y20_c00269{bottom:720.127672pt;}
.y21_c00269{bottom:720.228308pt;}
.y22_c00269{bottom:720.358524pt;}
.y23_c00269{bottom:720.533123pt;}
.y9_c00269{bottom:736.801333pt;}
.ya_c00269{bottom:737.002047pt;}
.yb_c00269{bottom:737.643581pt;}
.yc_c00269{bottom:737.889116pt;}
.yd_c00269{bottom:738.216109pt;}
.ye_c00269{bottom:738.681307pt;}
.yf_c00269{bottom:739.177627pt;}
.y10_c00269{bottom:739.647547pt;}
.y11_c00269{bottom:739.895663pt;}
.y12_c00269{bottom:740.101656pt;}
.y13_c00269{bottom:740.581667pt;}
.y14_c00269{bottom:740.991336pt;}
.y15_c00269{bottom:741.363576pt;}
.y5_c00269{bottom:776.400247pt;}
.y6_c00269{bottom:777.007033pt;}
.y7_c00269{bottom:778.288200pt;}
.y8_c00269{bottom:782.498980pt;}
.y1_c00269{bottom:813.366667pt;}
.y2_c00269{bottom:815.879947pt;}
.y3_c00269{bottom:817.413807pt;}
.y4_c00269{bottom:819.060167pt;}
.h13_c00269{height:45.733333pt;}
.h15_c00269{height:48.533333pt;}
.h14_c00269{height:50.400000pt;}
.h12_c00269{height:55.066667pt;}
.h16_c00269{height:56.933333pt;}
.hf_c00269{height:59.733333pt;}
.h6_c00269{height:60.670337pt;}
.hb_c00269{height:61.602495pt;}
.h10_c00269{height:62.533333pt;}
.h7_c00269{height:62.534865pt;}
.hc_c00269{height:62.535866pt;}
.he_c00269{height:63.466667pt;}
.h9_c00269{height:63.468222pt;}
.hd_c00269{height:63.469237pt;}
.h4_c00269{height:63.470506pt;}
.h11_c00269{height:64.400000pt;}
.h8_c00269{height:64.401578pt;}
.ha_c00269{height:65.333333pt;}
.h5_c00269{height:66.270676pt;}
.h3_c00269{height:112.946038pt;}
.h2_c00269{height:114.812914pt;}
.h0_c00269{height:896.400000pt;}
.h1_c00269{height:896.666667pt;}
.w0_c00269{width:632.640000pt;}
.w1_c00269{width:632.666667pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:104.570667pt;}
.x5_c00269{left:107.097607pt;}
.x6_c00269{left:153.773673pt;}
.x9_c00269{left:155.409333pt;}
.x3f_c00269{left:157.621333pt;}
.x57_c00269{left:158.878328pt;}
.x6a_c00269{left:161.280000pt;}
.x9b_c00269{left:163.200000pt;}
.xa_c00269{left:173.656000pt;}
.xa1_c00269{left:174.960000pt;}
.x73_c00269{left:177.360000pt;}
.xa7_c00269{left:182.640000pt;}
.x23_c00269{left:186.239895pt;}
.x67_c00269{left:187.200000pt;}
.x25_c00269{left:188.713333pt;}
.x6b_c00269{left:189.840000pt;}
.x95_c00269{left:191.760000pt;}
.x16_c00269{left:194.252376pt;}
.x81_c00269{left:197.760000pt;}
.x9c_c00269{left:199.440000pt;}
.x5a_c00269{left:202.559951pt;}
.x4e_c00269{left:203.759949pt;}
.x8d_c00269{left:206.880000pt;}
.x39_c00269{left:210.000000pt;}
.x26_c00269{left:211.762667pt;}
.x40_c00269{left:212.809333pt;}
.xa8_c00269{left:214.800000pt;}
.x79_c00269{left:216.720000pt;}
.x2b_c00269{left:218.637660pt;}
.x17_c00269{left:219.935893pt;}
.x24_c00269{left:221.041437pt;}
.x9d_c00269{left:225.120000pt;}
.x33_c00269{left:226.798384pt;}
.xb_c00269{left:231.977333pt;}
.x82_c00269{left:233.280000pt;}
.x27_c00269{left:235.025333pt;}
.x3a_c00269{left:235.920000pt;}
.x6c_c00269{left:238.080000pt;}
.x48_c00269{left:240.241441pt;}
.x7a_c00269{left:242.160000pt;}
.x4f_c00269{left:244.321904pt;}
.x8e_c00269{left:246.720000pt;}
.x5b_c00269{left:247.680944pt;}
.x6d_c00269{left:249.600000pt;}
.x74_c00269{left:251.280000pt;}
.x7_c00269{left:252.343300pt;}
.xc_c00269{left:254.298667pt;}
.x62_c00269{left:257.761283pt;}
.x65_c00269{left:258.720000pt;}
.x18_c00269{left:260.750576pt;}
.x9e_c00269{left:262.080000pt;}
.x83_c00269{left:264.000000pt;}
.x34_c00269{left:266.639001pt;}
.x28_c00269{left:268.409333pt;}
.x50_c00269{left:271.202743pt;}
.x2_c00269{left:272.122667pt;}
.x41_c00269{left:274.936000pt;}
.x8f_c00269{left:276.000000pt;}
.x7b_c00269{left:277.200000pt;}
.x87_c00269{left:281.040000pt;}
.x2c_c00269{left:282.238111pt;}
.xd_c00269{left:284.025333pt;}
.x9f_c00269{left:285.840000pt;}
.x3b_c00269{left:290.160000pt;}
.x63_c00269{left:293.282829pt;}
.x88_c00269{left:294.960000pt;}
.x90_c00269{left:295.920000pt;}
.x5c_c00269{left:299.042441pt;}
.x96_c00269{left:301.440000pt;}
.x2d_c00269{left:302.879119pt;}
.x68_c00269{left:306.240000pt;}
.x49_c00269{left:308.164271pt;}
.x42_c00269{left:310.921333pt;}
.x5d_c00269{left:312.963569pt;}
.xa2_c00269{left:316.800000pt;}
.x35_c00269{left:318.000188pt;}
.x64_c00269{left:320.643704pt;}
.x6e_c00269{left:321.600000pt;}
.xe_c00269{left:326.316000pt;}
.x5e_c00269{left:327.364733pt;}
.x19_c00269{left:334.669011pt;}
.x3c_c00269{left:336.000000pt;}
.x6f_c00269{left:336.960000pt;}
.x2e_c00269{left:341.519680pt;}
.x43_c00269{left:345.761333pt;}
.x3d_c00269{left:348.240000pt;}
.x51_c00269{left:349.206400pt;}
.xa9_c00269{left:350.400000pt;}
.x29_c00269{left:351.465333pt;}
.xa0_c00269{left:354.240000pt;}
.x1a_c00269{left:356.956411pt;}
.x70_c00269{left:362.880000pt;}
.x2f_c00269{left:363.840772pt;}
.x36_c00269{left:365.041160pt;}
.xf_c00269{left:371.436000pt;}
.x7c_c00269{left:373.200000pt;}
.x3_c00269{left:374.380000pt;}
.x1b_c00269{left:379.998507pt;}
.x37_c00269{left:384.482112pt;}
.x52_c00269{left:387.128139pt;}
.x30_c00269{left:390.962097pt;}
.x66_c00269{left:392.160000pt;}
.x75_c00269{left:393.120000pt;}
.x5f_c00269{left:398.167803pt;}
.x3e_c00269{left:401.280000pt;}
.x7d_c00269{left:406.320000pt;}
.x1c_c00269{left:409.527475pt;}
.x2a_c00269{left:412.166667pt;}
.x10_c00269{left:414.156000pt;}
.x31_c00269{left:417.363395pt;}
.xa5_c00269{left:420.000000pt;}
.x4a_c00269{left:431.288909pt;}
.x53_c00269{left:432.490477pt;}
.x32_c00269{left:433.684197pt;}
.x38_c00269{left:435.363271pt;}
.x11_c00269{left:436.712000pt;}
.x89_c00269{left:438.480000pt;}
.x60_c00269{left:440.649913pt;}
.x1d_c00269{left:442.920575pt;}
.x69_c00269{left:444.000000pt;}
.x71_c00269{left:446.640000pt;}
.x44_c00269{left:448.666667pt;}
.x54_c00269{left:451.210656pt;}
.x76_c00269{left:454.320000pt;}
.x12_c00269{left:455.438667pt;}
.x91_c00269{left:463.920000pt;}
.x72_c00269{left:467.280000pt;}
.x1e_c00269{left:469.316107pt;}
.x4b_c00269{left:471.850864pt;}
.x7e_c00269{left:472.800000pt;}
.x77_c00269{left:473.760000pt;}
.x8a_c00269{left:476.640000pt;}
.xaa_c00269{left:481.920000pt;}
.x4_c00269{left:484.137333pt;}
.x7f_c00269{left:487.920000pt;}
.x45_c00269{left:492.585333pt;}
.x13_c00269{left:499.076000pt;}
.x1f_c00269{left:500.453133pt;}
.x97_c00269{left:503.760000pt;}
.xab_c00269{left:504.960000pt;}
.x84_c00269{left:506.640000pt;}
.x55_c00269{left:508.332621pt;}
.x46_c00269{left:509.633333pt;}
.x92_c00269{left:511.440000pt;}
.x20_c00269{left:512.996211pt;}
.x85_c00269{left:516.960000pt;}
.xa3_c00269{left:519.360000pt;}
.x8b_c00269{left:520.320000pt;}
.x4c_c00269{left:524.412445pt;}
.x21_c00269{left:529.319420pt;}
.x86_c00269{left:531.120000pt;}
.x80_c00269{left:533.280000pt;}
.x14_c00269{left:536.318667pt;}
.x98_c00269{left:539.040000pt;}
.x93_c00269{left:540.480000pt;}
.x47_c00269{left:542.570667pt;}
.x58_c00269{left:547.213792pt;}
.x56_c00269{left:548.174516pt;}
.x22_c00269{left:551.132139pt;}
.x99_c00269{left:553.680000pt;}
.x4d_c00269{left:555.853656pt;}
.xa4_c00269{left:559.200000pt;}
.x61_c00269{left:568.813627pt;}
.x15_c00269{left:570.158667pt;}
.x59_c00269{left:571.934463pt;}
.x8c_c00269{left:573.360000pt;}
.x8_c00269{left:576.271687pt;}
.x9a_c00269{left:577.200000pt;}
.xa6_c00269{left:584.400000pt;}
.x78_c00269{left:588.240000pt;}
.x94_c00269{left:590.160000pt;}
.xac_c00269{left:611.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_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_ef4e99a7aa2876b3106553d3.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;}
.mc1_c00270{transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);-ms-transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011614,-0.000174,0.003750,0.249972,0,0);}
.mdf_c00270{transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);-ms-transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);}
.mc5_c00270{transform:matrix(0.015588,-0.000249,0.003999,0.249968,0,0);-ms-transform:matrix(0.015588,-0.000249,0.003999,0.249968,0,0);-webkit-transform:matrix(0.015588,-0.000249,0.003999,0.249968,0,0);}
.mfe_c00270{transform:matrix(0.049274,-0.000788,0.003999,0.249968,0,0);-ms-transform:matrix(0.049274,-0.000788,0.003999,0.249968,0,0);-webkit-transform:matrix(0.049274,-0.000788,0.003999,0.249968,0,0);}
.m10d_c00270{transform:matrix(0.066566,-0.001065,0.003999,0.249968,0,0);-ms-transform:matrix(0.066566,-0.001065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.066566,-0.001065,0.003999,0.249968,0,0);}
.m10e_c00270{transform:matrix(0.067126,-0.001074,0.003999,0.249968,0,0);-ms-transform:matrix(0.067126,-0.001074,0.003999,0.249968,0,0);-webkit-transform:matrix(0.067126,-0.001074,0.003999,0.249968,0,0);}
.mc2_c00270{transform:matrix(0.083009,-0.001328,0.003999,0.249968,0,0);-ms-transform:matrix(0.083009,-0.001328,0.003999,0.249968,0,0);-webkit-transform:matrix(0.083009,-0.001328,0.003999,0.249968,0,0);}
.me9_c00270{transform:matrix(0.099032,-0.001585,0.003999,0.249968,0,0);-ms-transform:matrix(0.099032,-0.001585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.099032,-0.001585,0.003999,0.249968,0,0);}
.m7d_c00270{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);}
.m12d_c00270{transform:matrix(0.115994,-0.002900,0.006248,0.249922,0,0);-ms-transform:matrix(0.115994,-0.002900,0.006248,0.249922,0,0);-webkit-transform:matrix(0.115994,-0.002900,0.006248,0.249922,0,0);}
.m67_c00270{transform:matrix(0.117607,-0.001764,0.003750,0.249972,0,0);-ms-transform:matrix(0.117607,-0.001764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.117607,-0.001764,0.003750,0.249972,0,0);}
.mdb_c00270{transform:matrix(0.128384,-0.002054,0.003999,0.249968,0,0);-ms-transform:matrix(0.128384,-0.002054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.128384,-0.002054,0.003999,0.249968,0,0);}
.me_c00270{transform:matrix(0.137373,-0.002747,0.004999,0.249950,0,0);-ms-transform:matrix(0.137373,-0.002747,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137373,-0.002747,0.004999,0.249950,0,0);}
.m72_c00270{transform:matrix(0.139029,-0.002085,0.003750,0.249972,0,0);-ms-transform:matrix(0.139029,-0.002085,0.003750,0.249972,0,0);-webkit-transform:matrix(0.139029,-0.002085,0.003750,0.249972,0,0);}
.mcf_c00270{transform:matrix(0.147206,-0.002355,0.003999,0.249968,0,0);-ms-transform:matrix(0.147206,-0.002355,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147206,-0.002355,0.003999,0.249968,0,0);}
.m11d_c00270{transform:matrix(0.148299,-0.003707,0.006248,0.249922,0,0);-ms-transform:matrix(0.148299,-0.003707,0.006248,0.249922,0,0);-webkit-transform:matrix(0.148299,-0.003707,0.006248,0.249922,0,0);}
.me3_c00270{transform:matrix(0.149671,-0.002395,0.003999,0.249968,0,0);-ms-transform:matrix(0.149671,-0.002395,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149671,-0.002395,0.003999,0.249968,0,0);}
.mb_c00270{transform:matrix(0.151035,-0.003021,0.004999,0.249950,0,0);-ms-transform:matrix(0.151035,-0.003021,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151035,-0.003021,0.004999,0.249950,0,0);}
.m4_c00270{transform:matrix(0.152208,-0.002588,0.004249,0.249964,0,0);-ms-transform:matrix(0.152208,-0.002588,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152208,-0.002588,0.004249,0.249964,0,0);}
.m13a_c00270{transform:matrix(0.153072,-0.003827,0.006248,0.249922,0,0);-ms-transform:matrix(0.153072,-0.003827,0.006248,0.249922,0,0);-webkit-transform:matrix(0.153072,-0.003827,0.006248,0.249922,0,0);}
.m3a_c00270{transform:matrix(0.154019,-0.003080,0.004999,0.249950,0,0);-ms-transform:matrix(0.154019,-0.003080,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154019,-0.003080,0.004999,0.249950,0,0);}
.m69_c00270{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);}
.m108_c00270{transform:matrix(0.155185,-0.002483,0.003999,0.249968,0,0);-ms-transform:matrix(0.155185,-0.002483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155185,-0.002483,0.003999,0.249968,0,0);}
.m13b_c00270{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);}
.md4_c00270{transform:matrix(0.155855,-0.002494,0.003999,0.249968,0,0);-ms-transform:matrix(0.155855,-0.002494,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155855,-0.002494,0.003999,0.249968,0,0);}
.m5d_c00270{transform:matrix(0.155895,-0.002494,0.003999,0.249968,0,0);-ms-transform:matrix(0.155895,-0.002494,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155895,-0.002494,0.003999,0.249968,0,0);}
.m7a_c00270{transform:matrix(0.156482,-0.002347,0.003750,0.249972,0,0);-ms-transform:matrix(0.156482,-0.002347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156482,-0.002347,0.003750,0.249972,0,0);}
.ma7_c00270{transform:matrix(0.156742,-0.002351,0.003750,0.249972,0,0);-ms-transform:matrix(0.156742,-0.002351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156742,-0.002351,0.003750,0.249972,0,0);}
.m94_c00270{transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);-ms-transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);}
.m18_c00270{transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);-ms-transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);}
.m3f_c00270{transform:matrix(0.158128,-0.003163,0.004999,0.249950,0,0);-ms-transform:matrix(0.158128,-0.003163,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158128,-0.003163,0.004999,0.249950,0,0);}
.m123_c00270{transform:matrix(0.158381,-0.003960,0.006248,0.249922,0,0);-ms-transform:matrix(0.158381,-0.003960,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158381,-0.003960,0.006248,0.249922,0,0);}
.md0_c00270{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);}
.m107_c00270{transform:matrix(0.160030,-0.002560,0.003999,0.249968,0,0);-ms-transform:matrix(0.160030,-0.002560,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160030,-0.002560,0.003999,0.249968,0,0);}
.mb7_c00270{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);}
.m1a_c00270{transform:matrix(0.160563,-0.003211,0.004999,0.249950,0,0);-ms-transform:matrix(0.160563,-0.003211,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160563,-0.003211,0.004999,0.249950,0,0);}
.mb4_c00270{transform:matrix(0.160947,-0.002414,0.003750,0.249972,0,0);-ms-transform:matrix(0.160947,-0.002414,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160947,-0.002414,0.003750,0.249972,0,0);}
.mf0_c00270{transform:matrix(0.161044,-0.002899,0.004499,0.249960,0,0);-ms-transform:matrix(0.161044,-0.002899,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161044,-0.002899,0.004499,0.249960,0,0);}
.m14_c00270{transform:matrix(0.161233,-0.003225,0.004999,0.249950,0,0);-ms-transform:matrix(0.161233,-0.003225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161233,-0.003225,0.004999,0.249950,0,0);}
.m4a_c00270{transform:matrix(0.161923,-0.003238,0.004999,0.249950,0,0);-ms-transform:matrix(0.161923,-0.003238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161923,-0.003238,0.004999,0.249950,0,0);}
.m1d_c00270{transform:matrix(0.162433,-0.003249,0.004999,0.249950,0,0);-ms-transform:matrix(0.162433,-0.003249,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162433,-0.003249,0.004999,0.249950,0,0);}
.m114_c00270{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);}
.m13_c00270{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);}
.m8f_c00270{transform:matrix(0.163662,-0.002455,0.003750,0.249972,0,0);-ms-transform:matrix(0.163662,-0.002455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163662,-0.002455,0.003750,0.249972,0,0);}
.m109_c00270{transform:matrix(0.164474,-0.002632,0.003999,0.249968,0,0);-ms-transform:matrix(0.164474,-0.002632,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164474,-0.002632,0.003999,0.249968,0,0);}
.m31_c00270{transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);-ms-transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);}
.mf_c00270{transform:matrix(0.164822,-0.003296,0.004999,0.249950,0,0);-ms-transform:matrix(0.164822,-0.003296,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164822,-0.003296,0.004999,0.249950,0,0);}
.m45_c00270{transform:matrix(0.164922,-0.003298,0.004999,0.249950,0,0);-ms-transform:matrix(0.164922,-0.003298,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164922,-0.003298,0.004999,0.249950,0,0);}
.m124_c00270{transform:matrix(0.165408,-0.004135,0.006248,0.249922,0,0);-ms-transform:matrix(0.165408,-0.004135,0.006248,0.249922,0,0);-webkit-transform:matrix(0.165408,-0.004135,0.006248,0.249922,0,0);}
.m3e_c00270{transform:matrix(0.165547,-0.003311,0.004999,0.249950,0,0);-ms-transform:matrix(0.165547,-0.003311,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165547,-0.003311,0.004999,0.249950,0,0);}
.m32_c00270{transform:matrix(0.166022,-0.003320,0.004999,0.249950,0,0);-ms-transform:matrix(0.166022,-0.003320,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166022,-0.003320,0.004999,0.249950,0,0);}
.m77_c00270{transform:matrix(0.166421,-0.002496,0.003750,0.249972,0,0);-ms-transform:matrix(0.166421,-0.002496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166421,-0.002496,0.003750,0.249972,0,0);}
.mbf_c00270{transform:matrix(0.166676,-0.002500,0.003750,0.249972,0,0);-ms-transform:matrix(0.166676,-0.002500,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166676,-0.002500,0.003750,0.249972,0,0);}
.m41_c00270{transform:matrix(0.166772,-0.003335,0.004999,0.249950,0,0);-ms-transform:matrix(0.166772,-0.003335,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166772,-0.003335,0.004999,0.249950,0,0);}
.m23_c00270{transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);}
.mfb_c00270{transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);-ms-transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);}
.mfc_c00270{transform:matrix(0.169468,-0.002711,0.003999,0.249968,0,0);-ms-transform:matrix(0.169468,-0.002711,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169468,-0.002711,0.003999,0.249968,0,0);}
.maa_c00270{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);}
.m65_c00270{transform:matrix(0.170836,-0.002563,0.003750,0.249972,0,0);-ms-transform:matrix(0.170836,-0.002563,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170836,-0.002563,0.003750,0.249972,0,0);}
.me5_c00270{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);}
.m1f_c00270{transform:matrix(0.171526,-0.003431,0.004999,0.249950,0,0);-ms-transform:matrix(0.171526,-0.003431,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171526,-0.003431,0.004999,0.249950,0,0);}
.m5a_c00270{transform:matrix(0.171573,-0.002745,0.003999,0.249968,0,0);-ms-transform:matrix(0.171573,-0.002745,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171573,-0.002745,0.003999,0.249968,0,0);}
.me8_c00270{transform:matrix(0.172698,-0.002763,0.003999,0.249968,0,0);-ms-transform:matrix(0.172698,-0.002763,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172698,-0.002763,0.003999,0.249968,0,0);}
.m87_c00270{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);}
.mc0_c00270{transform:matrix(0.173725,-0.002606,0.003750,0.249972,0,0);-ms-transform:matrix(0.173725,-0.002606,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173725,-0.002606,0.003750,0.249972,0,0);}
.m5b_c00270{transform:matrix(0.173993,-0.002784,0.003999,0.249968,0,0);-ms-transform:matrix(0.173993,-0.002784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173993,-0.002784,0.003999,0.249968,0,0);}
.md8_c00270{transform:matrix(0.174638,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174638,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174638,-0.002794,0.003999,0.249968,0,0);}
.mf1_c00270{transform:matrix(0.174887,-0.003148,0.004499,0.249960,0,0);-ms-transform:matrix(0.174887,-0.003148,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174887,-0.003148,0.004499,0.249960,0,0);}
.mfa_c00270{transform:matrix(0.174978,-0.002800,0.003999,0.249968,0,0);-ms-transform:matrix(0.174978,-0.002800,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174978,-0.002800,0.003999,0.249968,0,0);}
.m91_c00270{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);}
.m46_c00270{transform:matrix(0.175100,-0.003502,0.004999,0.249950,0,0);-ms-transform:matrix(0.175100,-0.003502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175100,-0.003502,0.004999,0.249950,0,0);}
.m5f_c00270{transform:matrix(0.175253,-0.002804,0.003999,0.249968,0,0);-ms-transform:matrix(0.175253,-0.002804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175253,-0.002804,0.003999,0.249968,0,0);}
.m5e_c00270{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);}
.m44_c00270{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);}
.m2b_c00270{transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-ms-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);}
.mb3_c00270{transform:matrix(0.175755,-0.002636,0.003750,0.249972,0,0);-ms-transform:matrix(0.175755,-0.002636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175755,-0.002636,0.003750,0.249972,0,0);}
.m4c_c00270{transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);-ms-transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);}
.m62_c00270{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);}
.mab_c00270{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);}
.mc6_c00270{transform:matrix(0.176387,-0.002822,0.003999,0.249968,0,0);-ms-transform:matrix(0.176387,-0.002822,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176387,-0.002822,0.003999,0.249968,0,0);}
.m5c_c00270{transform:matrix(0.176537,-0.002825,0.003999,0.249968,0,0);-ms-transform:matrix(0.176537,-0.002825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176537,-0.002825,0.003999,0.249968,0,0);}
.m54_c00270{transform:matrix(0.177062,-0.002833,0.003999,0.249968,0,0);-ms-transform:matrix(0.177062,-0.002833,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177062,-0.002833,0.003999,0.249968,0,0);}
.m88_c00270{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);}
.mac_c00270{transform:matrix(0.177305,-0.002660,0.003750,0.249972,0,0);-ms-transform:matrix(0.177305,-0.002660,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177305,-0.002660,0.003750,0.249972,0,0);}
.mdc_c00270{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);}
.m22_c00270{transform:matrix(0.177759,-0.003555,0.004999,0.249950,0,0);-ms-transform:matrix(0.177759,-0.003555,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177759,-0.003555,0.004999,0.249950,0,0);}
.m8_c00270{transform:matrix(0.178564,-0.003036,0.004249,0.249964,0,0);-ms-transform:matrix(0.178564,-0.003036,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178564,-0.003036,0.004249,0.249964,0,0);}
.ma4_c00270{transform:matrix(0.179665,-0.002695,0.003750,0.249972,0,0);-ms-transform:matrix(0.179665,-0.002695,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179665,-0.002695,0.003750,0.249972,0,0);}
.md3_c00270{transform:matrix(0.179972,-0.002880,0.003999,0.249968,0,0);-ms-transform:matrix(0.179972,-0.002880,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179972,-0.002880,0.003999,0.249968,0,0);}
.m25_c00270{transform:matrix(0.180114,-0.003602,0.004999,0.249950,0,0);-ms-transform:matrix(0.180114,-0.003602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180114,-0.003602,0.004999,0.249950,0,0);}
.m103_c00270{transform:matrix(0.180742,-0.002892,0.003999,0.249968,0,0);-ms-transform:matrix(0.180742,-0.002892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180742,-0.002892,0.003999,0.249968,0,0);}
.mde_c00270{transform:matrix(0.180992,-0.002896,0.003999,0.249968,0,0);-ms-transform:matrix(0.180992,-0.002896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180992,-0.002896,0.003999,0.249968,0,0);}
.m55_c00270{transform:matrix(0.181007,-0.002896,0.003999,0.249968,0,0);-ms-transform:matrix(0.181007,-0.002896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181007,-0.002896,0.003999,0.249968,0,0);}
.mf8_c00270{transform:matrix(0.181147,-0.002898,0.003999,0.249968,0,0);-ms-transform:matrix(0.181147,-0.002898,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181147,-0.002898,0.003999,0.249968,0,0);}
.mbd_c00270{transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);-ms-transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);}
.mf6_c00270{transform:matrix(0.181787,-0.002909,0.003999,0.249968,0,0);-ms-transform:matrix(0.181787,-0.002909,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181787,-0.002909,0.003999,0.249968,0,0);}
.m79_c00270{transform:matrix(0.182115,-0.002732,0.003750,0.249972,0,0);-ms-transform:matrix(0.182115,-0.002732,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182115,-0.002732,0.003750,0.249972,0,0);}
.m4b_c00270{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);}
.mc9_c00270{transform:matrix(0.182262,-0.002916,0.003999,0.249968,0,0);-ms-transform:matrix(0.182262,-0.002916,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182262,-0.002916,0.003999,0.249968,0,0);}
.ma9_c00270{transform:matrix(0.182624,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182624,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182624,-0.002739,0.003750,0.249972,0,0);}
.m2c_c00270{transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);-ms-transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);}
.m100_c00270{transform:matrix(0.182942,-0.002927,0.003999,0.249968,0,0);-ms-transform:matrix(0.182942,-0.002927,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182942,-0.002927,0.003999,0.249968,0,0);}
.m75_c00270{transform:matrix(0.183479,-0.002752,0.003750,0.249972,0,0);-ms-transform:matrix(0.183479,-0.002752,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183479,-0.002752,0.003750,0.249972,0,0);}
.m78_c00270{transform:matrix(0.183679,-0.002755,0.003750,0.249972,0,0);-ms-transform:matrix(0.183679,-0.002755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183679,-0.002755,0.003750,0.249972,0,0);}
.m2e_c00270{transform:matrix(0.183848,-0.003677,0.004999,0.249950,0,0);-ms-transform:matrix(0.183848,-0.003677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183848,-0.003677,0.004999,0.249950,0,0);}
.m10b_c00270{transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);-ms-transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);}
.m111_c00270{transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184216,-0.002947,0.003999,0.249968,0,0);}
.m52_c00270{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);}
.m76_c00270{transform:matrix(0.184559,-0.002768,0.003750,0.249972,0,0);-ms-transform:matrix(0.184559,-0.002768,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184559,-0.002768,0.003750,0.249972,0,0);}
.ma3_c00270{transform:matrix(0.184649,-0.002770,0.003750,0.249972,0,0);-ms-transform:matrix(0.184649,-0.002770,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184649,-0.002770,0.003750,0.249972,0,0);}
.mef_c00270{transform:matrix(0.184880,-0.003328,0.004499,0.249960,0,0);-ms-transform:matrix(0.184880,-0.003328,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184880,-0.003328,0.004499,0.249960,0,0);}
.m4d_c00270{transform:matrix(0.184933,-0.003699,0.004999,0.249950,0,0);-ms-transform:matrix(0.184933,-0.003699,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184933,-0.003699,0.004999,0.249950,0,0);}
.m135_c00270{transform:matrix(0.185292,-0.004632,0.006248,0.249922,0,0);-ms-transform:matrix(0.185292,-0.004632,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185292,-0.004632,0.006248,0.249922,0,0);}
.m80_c00270{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);}
.m10a_c00270{transform:matrix(0.185586,-0.002969,0.003999,0.249968,0,0);-ms-transform:matrix(0.185586,-0.002969,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185586,-0.002969,0.003999,0.249968,0,0);}
.m131_c00270{transform:matrix(0.185662,-0.004642,0.006248,0.249922,0,0);-ms-transform:matrix(0.185662,-0.004642,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185662,-0.004642,0.006248,0.249922,0,0);}
.m33_c00270{transform:matrix(0.185708,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185708,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185708,-0.003714,0.004999,0.249950,0,0);}
.m49_c00270{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);}
.m47_c00270{transform:matrix(0.186068,-0.003721,0.004999,0.249950,0,0);-ms-transform:matrix(0.186068,-0.003721,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186068,-0.003721,0.004999,0.249950,0,0);}
.m17_c00270{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);}
.mb8_c00270{transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);}
.m1e_c00270{transform:matrix(0.186773,-0.003735,0.004999,0.249950,0,0);-ms-transform:matrix(0.186773,-0.003735,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186773,-0.003735,0.004999,0.249950,0,0);}
.m42_c00270{transform:matrix(0.187453,-0.003749,0.004999,0.249950,0,0);-ms-transform:matrix(0.187453,-0.003749,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187453,-0.003749,0.004999,0.249950,0,0);}
.m4e_c00270{transform:matrix(0.187503,-0.003750,0.004999,0.249950,0,0);-ms-transform:matrix(0.187503,-0.003750,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187503,-0.003750,0.004999,0.249950,0,0);}
.m27_c00270{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);}
.m43_c00270{transform:matrix(0.188437,-0.003769,0.004999,0.249950,0,0);-ms-transform:matrix(0.188437,-0.003769,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188437,-0.003769,0.004999,0.249950,0,0);}
.ma0_c00270{transform:matrix(0.188504,-0.002828,0.003750,0.249972,0,0);-ms-transform:matrix(0.188504,-0.002828,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188504,-0.002828,0.003750,0.249972,0,0);}
.ma5_c00270{transform:matrix(0.188554,-0.002828,0.003750,0.249972,0,0);-ms-transform:matrix(0.188554,-0.002828,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188554,-0.002828,0.003750,0.249972,0,0);}
.m2d_c00270{transform:matrix(0.188812,-0.003776,0.004999,0.249950,0,0);-ms-transform:matrix(0.188812,-0.003776,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188812,-0.003776,0.004999,0.249950,0,0);}
.m96_c00270{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);}
.m28_c00270{transform:matrix(0.189357,-0.003787,0.004999,0.249950,0,0);-ms-transform:matrix(0.189357,-0.003787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189357,-0.003787,0.004999,0.249950,0,0);}
.m132_c00270{transform:matrix(0.189466,-0.004737,0.006248,0.249922,0,0);-ms-transform:matrix(0.189466,-0.004737,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189466,-0.004737,0.006248,0.249922,0,0);}
.m39_c00270{transform:matrix(0.189632,-0.003793,0.004999,0.249950,0,0);-ms-transform:matrix(0.189632,-0.003793,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189632,-0.003793,0.004999,0.249950,0,0);}
.m84_c00270{transform:matrix(0.189634,-0.002845,0.003750,0.249972,0,0);-ms-transform:matrix(0.189634,-0.002845,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189634,-0.002845,0.003750,0.249972,0,0);}
.ma2_c00270{transform:matrix(0.190089,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190089,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190089,-0.002851,0.003750,0.249972,0,0);}
.me7_c00270{transform:matrix(0.190251,-0.003044,0.003999,0.249968,0,0);-ms-transform:matrix(0.190251,-0.003044,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190251,-0.003044,0.003999,0.249968,0,0);}
.m57_c00270{transform:matrix(0.190611,-0.003050,0.003999,0.249968,0,0);-ms-transform:matrix(0.190611,-0.003050,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190611,-0.003050,0.003999,0.249968,0,0);}
.m34_c00270{transform:matrix(0.191057,-0.003821,0.004999,0.249950,0,0);-ms-transform:matrix(0.191057,-0.003821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191057,-0.003821,0.004999,0.249950,0,0);}
.m3b_c00270{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);}
.m6a_c00270{transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);-ms-transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);}
.m2f_c00270{transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);-ms-transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);}
.m51_c00270{transform:matrix(0.191600,-0.003066,0.003999,0.249968,0,0);-ms-transform:matrix(0.191600,-0.003066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191600,-0.003066,0.003999,0.249968,0,0);}
.mb5_c00270{transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);}
.md1_c00270{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);}
.mae_c00270{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);}
.mad_c00270{transform:matrix(0.193503,-0.002903,0.003750,0.249972,0,0);-ms-transform:matrix(0.193503,-0.002903,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193503,-0.002903,0.003750,0.249972,0,0);}
.m8b_c00270{transform:matrix(0.193963,-0.002909,0.003750,0.249972,0,0);-ms-transform:matrix(0.193963,-0.002909,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193963,-0.002909,0.003750,0.249972,0,0);}
.m134_c00270{transform:matrix(0.194529,-0.004863,0.006248,0.249922,0,0);-ms-transform:matrix(0.194529,-0.004863,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194529,-0.004863,0.006248,0.249922,0,0);}
.mba_c00270{transform:matrix(0.194543,-0.002918,0.003750,0.249972,0,0);-ms-transform:matrix(0.194543,-0.002918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194543,-0.002918,0.003750,0.249972,0,0);}
.m85_c00270{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);}
.m20_c00270{transform:matrix(0.195431,-0.003909,0.004999,0.249950,0,0);-ms-transform:matrix(0.195431,-0.003909,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195431,-0.003909,0.004999,0.249950,0,0);}
.m30_c00270{transform:matrix(0.195441,-0.003909,0.004999,0.249950,0,0);-ms-transform:matrix(0.195441,-0.003909,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195441,-0.003909,0.004999,0.249950,0,0);}
.md_c00270{transform:matrix(0.195456,-0.003909,0.004999,0.249950,0,0);-ms-transform:matrix(0.195456,-0.003909,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195456,-0.003909,0.004999,0.249950,0,0);}
.m98_c00270{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);}
.m66_c00270{transform:matrix(0.196273,-0.002944,0.003750,0.249972,0,0);-ms-transform:matrix(0.196273,-0.002944,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196273,-0.002944,0.003750,0.249972,0,0);}
.mb0_c00270{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);}
.m115_c00270{transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-ms-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);}
.m10_c00270{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);}
.mb1_c00270{transform:matrix(0.197483,-0.002962,0.003750,0.249972,0,0);-ms-transform:matrix(0.197483,-0.002962,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197483,-0.002962,0.003750,0.249972,0,0);}
.m95_c00270{transform:matrix(0.197503,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197503,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197503,-0.002963,0.003750,0.249972,0,0);}
.m82_c00270{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);}
.m113_c00270{transform:matrix(0.197775,-0.003164,0.003999,0.249968,0,0);-ms-transform:matrix(0.197775,-0.003164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197775,-0.003164,0.003999,0.249968,0,0);}
.me6_c00270{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);}
.ma8_c00270{transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);-ms-transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);}
.m26_c00270{transform:matrix(0.198080,-0.003962,0.004999,0.249950,0,0);-ms-transform:matrix(0.198080,-0.003962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198080,-0.003962,0.004999,0.249950,0,0);}
.m139_c00270{transform:matrix(0.198233,-0.004956,0.006248,0.249922,0,0);-ms-transform:matrix(0.198233,-0.004956,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198233,-0.004956,0.006248,0.249922,0,0);}
.m90_c00270{transform:matrix(0.198258,-0.002974,0.003750,0.249972,0,0);-ms-transform:matrix(0.198258,-0.002974,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198258,-0.002974,0.003750,0.249972,0,0);}
.m7c_c00270{transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);}
.m112_c00270{transform:matrix(0.198475,-0.003176,0.003999,0.249968,0,0);-ms-transform:matrix(0.198475,-0.003176,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198475,-0.003176,0.003999,0.249968,0,0);}
.m11_c00270{transform:matrix(0.198760,-0.003975,0.004999,0.249950,0,0);-ms-transform:matrix(0.198760,-0.003975,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198760,-0.003975,0.004999,0.249950,0,0);}
.m6f_c00270{transform:matrix(0.198868,-0.002983,0.003750,0.249972,0,0);-ms-transform:matrix(0.198868,-0.002983,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198868,-0.002983,0.003750,0.249972,0,0);}
.md2_c00270{transform:matrix(0.199399,-0.003190,0.003999,0.249968,0,0);-ms-transform:matrix(0.199399,-0.003190,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199399,-0.003190,0.003999,0.249968,0,0);}
.m99_c00270{transform:matrix(0.199563,-0.002993,0.003750,0.249972,0,0);-ms-transform:matrix(0.199563,-0.002993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199563,-0.002993,0.003750,0.249972,0,0);}
.m2a_c00270{transform:matrix(0.199600,-0.003992,0.004999,0.249950,0,0);-ms-transform:matrix(0.199600,-0.003992,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199600,-0.003992,0.004999,0.249950,0,0);}
.m11a_c00270{transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);-ms-transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);}
.m24_c00270{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);}
.m68_c00270{transform:matrix(0.200162,-0.003002,0.003750,0.249972,0,0);-ms-transform:matrix(0.200162,-0.003002,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200162,-0.003002,0.003750,0.249972,0,0);}
.m7_c00270{transform:matrix(0.201261,-0.003421,0.004249,0.249964,0,0);-ms-transform:matrix(0.201261,-0.003421,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201261,-0.003421,0.004249,0.249964,0,0);}
.mbc_c00270{transform:matrix(0.201707,-0.003026,0.003750,0.249972,0,0);-ms-transform:matrix(0.201707,-0.003026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201707,-0.003026,0.003750,0.249972,0,0);}
.m7f_c00270{transform:matrix(0.201727,-0.003026,0.003750,0.249972,0,0);-ms-transform:matrix(0.201727,-0.003026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201727,-0.003026,0.003750,0.249972,0,0);}
.mdd_c00270{transform:matrix(0.202329,-0.003237,0.003999,0.249968,0,0);-ms-transform:matrix(0.202329,-0.003237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202329,-0.003237,0.003999,0.249968,0,0);}
.m8a_c00270{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);}
.m70_c00270{transform:matrix(0.203042,-0.003046,0.003750,0.249972,0,0);-ms-transform:matrix(0.203042,-0.003046,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203042,-0.003046,0.003750,0.249972,0,0);}
.m133_c00270{transform:matrix(0.203052,-0.005076,0.006248,0.249922,0,0);-ms-transform:matrix(0.203052,-0.005076,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203052,-0.005076,0.006248,0.249922,0,0);}
.mf3_c00270{transform:matrix(0.203309,-0.003253,0.003999,0.249968,0,0);-ms-transform:matrix(0.203309,-0.003253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203309,-0.003253,0.003999,0.249968,0,0);}
.m15_c00270{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);}
.m81_c00270{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);}
.m118_c00270{transform:matrix(0.203579,-0.003257,0.003999,0.249968,0,0);-ms-transform:matrix(0.203579,-0.003257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203579,-0.003257,0.003999,0.249968,0,0);}
.m126_c00270{transform:matrix(0.204231,-0.005106,0.006248,0.249922,0,0);-ms-transform:matrix(0.204231,-0.005106,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204231,-0.005106,0.006248,0.249922,0,0);}
.m40_c00270{transform:matrix(0.204239,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204239,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204239,-0.004085,0.004999,0.249950,0,0);}
.m130_c00270{transform:matrix(0.204306,-0.005108,0.006248,0.249922,0,0);-ms-transform:matrix(0.204306,-0.005108,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204306,-0.005108,0.006248,0.249922,0,0);}
.m64_c00270{transform:matrix(0.204897,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204897,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204897,-0.003073,0.003750,0.249972,0,0);}
.md6_c00270{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);}
.m56_c00270{transform:matrix(0.205074,-0.003281,0.003999,0.249968,0,0);-ms-transform:matrix(0.205074,-0.003281,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205074,-0.003281,0.003999,0.249968,0,0);}
.m9_c00270{transform:matrix(0.205219,-0.004104,0.004999,0.249950,0,0);-ms-transform:matrix(0.205219,-0.004104,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205219,-0.004104,0.004999,0.249950,0,0);}
.mb9_c00270{transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);-ms-transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);}
.m53_c00270{transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);-ms-transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205709,-0.003291,0.003999,0.249968,0,0);}
.m1b_c00270{transform:matrix(0.206144,-0.004123,0.004999,0.249950,0,0);-ms-transform:matrix(0.206144,-0.004123,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206144,-0.004123,0.004999,0.249950,0,0);}
.m116_c00270{transform:matrix(0.207053,-0.003313,0.003999,0.249968,0,0);-ms-transform:matrix(0.207053,-0.003313,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207053,-0.003313,0.003999,0.249968,0,0);}
.m86_c00270{transform:matrix(0.207092,-0.003106,0.003750,0.249972,0,0);-ms-transform:matrix(0.207092,-0.003106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207092,-0.003106,0.003750,0.249972,0,0);}
.m117_c00270{transform:matrix(0.207408,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207408,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207408,-0.003319,0.003999,0.249968,0,0);}
.m12_c00270{transform:matrix(0.207668,-0.004153,0.004999,0.249950,0,0);-ms-transform:matrix(0.207668,-0.004153,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207668,-0.004153,0.004999,0.249950,0,0);}
.m9e_c00270{transform:matrix(0.207982,-0.003120,0.003750,0.249972,0,0);-ms-transform:matrix(0.207982,-0.003120,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207982,-0.003120,0.003750,0.249972,0,0);}
.m97_c00270{transform:matrix(0.208352,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208352,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208352,-0.003125,0.003750,0.249972,0,0);}
.m6_c00270{transform:matrix(0.208580,-0.003546,0.004249,0.249964,0,0);-ms-transform:matrix(0.208580,-0.003546,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208580,-0.003546,0.004249,0.249964,0,0);}
.m58_c00270{transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);-ms-transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);}
.m74_c00270{transform:matrix(0.208722,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208722,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208722,-0.003131,0.003750,0.249972,0,0);}
.mf7_c00270{transform:matrix(0.208983,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.208983,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208983,-0.003344,0.003999,0.249968,0,0);}
.m83_c00270{transform:matrix(0.209111,-0.003137,0.003750,0.249972,0,0);-ms-transform:matrix(0.209111,-0.003137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209111,-0.003137,0.003750,0.249972,0,0);}
.mee_c00270{transform:matrix(0.209116,-0.003764,0.004499,0.249960,0,0);-ms-transform:matrix(0.209116,-0.003764,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209116,-0.003764,0.004499,0.249960,0,0);}
.mbe_c00270{transform:matrix(0.209466,-0.003142,0.003750,0.249972,0,0);-ms-transform:matrix(0.209466,-0.003142,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209466,-0.003142,0.003750,0.249972,0,0);}
.mcc_c00270{transform:matrix(0.209913,-0.003359,0.003999,0.249968,0,0);-ms-transform:matrix(0.209913,-0.003359,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209913,-0.003359,0.003999,0.249968,0,0);}
.m16_c00270{transform:matrix(0.209968,-0.004199,0.004999,0.249950,0,0);-ms-transform:matrix(0.209968,-0.004199,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209968,-0.004199,0.004999,0.249950,0,0);}
.ma6_c00270{transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);-ms-transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);}
.m8e_c00270{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);}
.m50_c00270{transform:matrix(0.211468,-0.003383,0.003999,0.249968,0,0);-ms-transform:matrix(0.211468,-0.003383,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211468,-0.003383,0.003999,0.249968,0,0);}
.m121_c00270{transform:matrix(0.211669,-0.005292,0.006248,0.249922,0,0);-ms-transform:matrix(0.211669,-0.005292,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211669,-0.005292,0.006248,0.249922,0,0);}
.m48_c00270{transform:matrix(0.211693,-0.004234,0.004999,0.249950,0,0);-ms-transform:matrix(0.211693,-0.004234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211693,-0.004234,0.004999,0.249950,0,0);}
.m9c_c00270{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);}
.me4_c00270{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);}
.me2_c00270{transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);-ms-transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);}
.m6d_c00270{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);}
.m11e_c00270{transform:matrix(0.212184,-0.005305,0.006248,0.249922,0,0);-ms-transform:matrix(0.212184,-0.005305,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212184,-0.005305,0.006248,0.249922,0,0);}
.m106_c00270{transform:matrix(0.212348,-0.003398,0.003999,0.249968,0,0);-ms-transform:matrix(0.212348,-0.003398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212348,-0.003398,0.003999,0.249968,0,0);}
.m137_c00270{transform:matrix(0.212399,-0.005310,0.006248,0.249922,0,0);-ms-transform:matrix(0.212399,-0.005310,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212399,-0.005310,0.006248,0.249922,0,0);}
.m36_c00270{transform:matrix(0.212542,-0.004251,0.004999,0.249950,0,0);-ms-transform:matrix(0.212542,-0.004251,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212542,-0.004251,0.004999,0.249950,0,0);}
.m13c_c00270{transform:matrix(0.212639,-0.005316,0.006248,0.249922,0,0);-ms-transform:matrix(0.212639,-0.005316,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212639,-0.005316,0.006248,0.249922,0,0);}
.m19_c00270{transform:matrix(0.212937,-0.004259,0.004999,0.249950,0,0);-ms-transform:matrix(0.212937,-0.004259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212937,-0.004259,0.004999,0.249950,0,0);}
.m7b_c00270{transform:matrix(0.213116,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213116,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213116,-0.003197,0.003750,0.249972,0,0);}
.m9b_c00270{transform:matrix(0.213201,-0.003198,0.003750,0.249972,0,0);-ms-transform:matrix(0.213201,-0.003198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213201,-0.003198,0.003750,0.249972,0,0);}
.m93_c00270{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);}
.mf4_c00270{transform:matrix(0.214308,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214308,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214308,-0.003429,0.003999,0.249968,0,0);}
.mc3_c00270{transform:matrix(0.214338,-0.003429,0.003999,0.249968,0,0);-ms-transform:matrix(0.214338,-0.003429,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214338,-0.003429,0.003999,0.249968,0,0);}
.m3d_c00270{transform:matrix(0.214477,-0.004290,0.004999,0.249950,0,0);-ms-transform:matrix(0.214477,-0.004290,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214477,-0.004290,0.004999,0.249950,0,0);}
.m29_c00270{transform:matrix(0.214662,-0.004293,0.004999,0.249950,0,0);-ms-transform:matrix(0.214662,-0.004293,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214662,-0.004293,0.004999,0.249950,0,0);}
.m89_c00270{transform:matrix(0.214836,-0.003223,0.003750,0.249972,0,0);-ms-transform:matrix(0.214836,-0.003223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214836,-0.003223,0.003750,0.249972,0,0);}
.mb2_c00270{transform:matrix(0.215381,-0.003231,0.003750,0.249972,0,0);-ms-transform:matrix(0.215381,-0.003231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215381,-0.003231,0.003750,0.249972,0,0);}
.m11b_c00270{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);}
.m6e_c00270{transform:matrix(0.216636,-0.003250,0.003750,0.249972,0,0);-ms-transform:matrix(0.216636,-0.003250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216636,-0.003250,0.003750,0.249972,0,0);}
.m13f_c00270{transform:matrix(0.217192,-0.005430,0.006248,0.249922,0,0);-ms-transform:matrix(0.217192,-0.005430,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217192,-0.005430,0.006248,0.249922,0,0);}
.m9a_c00270{transform:matrix(0.217381,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217381,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217381,-0.003261,0.003750,0.249972,0,0);}
.m35_c00270{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);}
.me0_c00270{transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);-ms-transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218162,-0.003491,0.003999,0.249968,0,0);}
.m136_c00270{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);}
.m92_c00270{transform:matrix(0.219350,-0.003290,0.003750,0.249972,0,0);-ms-transform:matrix(0.219350,-0.003290,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219350,-0.003290,0.003750,0.249972,0,0);}
.m37_c00270{transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);-ms-transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);}
.m119_c00270{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);}
.m8d_c00270{transform:matrix(0.220245,-0.003304,0.003750,0.249972,0,0);-ms-transform:matrix(0.220245,-0.003304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220245,-0.003304,0.003750,0.249972,0,0);}
.m38_c00270{transform:matrix(0.220416,-0.004408,0.004999,0.249950,0,0);-ms-transform:matrix(0.220416,-0.004408,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220416,-0.004408,0.004999,0.249950,0,0);}
.md9_c00270{transform:matrix(0.220552,-0.003529,0.003999,0.249968,0,0);-ms-transform:matrix(0.220552,-0.003529,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220552,-0.003529,0.003999,0.249968,0,0);}
.mce_c00270{transform:matrix(0.221627,-0.003546,0.003999,0.249968,0,0);-ms-transform:matrix(0.221627,-0.003546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221627,-0.003546,0.003999,0.249968,0,0);}
.med_c00270{transform:matrix(0.221749,-0.003991,0.004499,0.249960,0,0);-ms-transform:matrix(0.221749,-0.003991,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221749,-0.003991,0.004499,0.249960,0,0);}
.m73_c00270{transform:matrix(0.221830,-0.003327,0.003750,0.249972,0,0);-ms-transform:matrix(0.221830,-0.003327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221830,-0.003327,0.003750,0.249972,0,0);}
.mc8_c00270{transform:matrix(0.222637,-0.003562,0.003999,0.249968,0,0);-ms-transform:matrix(0.222637,-0.003562,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222637,-0.003562,0.003999,0.249968,0,0);}
.m101_c00270{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);}
.ma_c00270{transform:matrix(0.223495,-0.004470,0.004999,0.249950,0,0);-ms-transform:matrix(0.223495,-0.004470,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223495,-0.004470,0.004999,0.249950,0,0);}
.m63_c00270{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);}
.m71_c00270{transform:matrix(0.224510,-0.003368,0.003750,0.249972,0,0);-ms-transform:matrix(0.224510,-0.003368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224510,-0.003368,0.003750,0.249972,0,0);}
.m3c_c00270{transform:matrix(0.225345,-0.004507,0.004999,0.249950,0,0);-ms-transform:matrix(0.225345,-0.004507,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225345,-0.004507,0.004999,0.249950,0,0);}
.m12e_c00270{transform:matrix(0.225505,-0.005638,0.006248,0.249922,0,0);-ms-transform:matrix(0.225505,-0.005638,0.006248,0.249922,0,0);-webkit-transform:matrix(0.225505,-0.005638,0.006248,0.249922,0,0);}
.m61_c00270{transform:matrix(0.225855,-0.003388,0.003750,0.249972,0,0);-ms-transform:matrix(0.225855,-0.003388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225855,-0.003388,0.003750,0.249972,0,0);}
.mc_c00270{transform:matrix(0.226025,-0.004520,0.004999,0.249950,0,0);-ms-transform:matrix(0.226025,-0.004520,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226025,-0.004520,0.004999,0.249950,0,0);}
.m9f_c00270{transform:matrix(0.226185,-0.003393,0.003750,0.249972,0,0);-ms-transform:matrix(0.226185,-0.003393,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226185,-0.003393,0.003750,0.249972,0,0);}
.m122_c00270{transform:matrix(0.226994,-0.005675,0.006248,0.249922,0,0);-ms-transform:matrix(0.226994,-0.005675,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226994,-0.005675,0.006248,0.249922,0,0);}
.maf_c00270{transform:matrix(0.227884,-0.003418,0.003750,0.249972,0,0);-ms-transform:matrix(0.227884,-0.003418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227884,-0.003418,0.003750,0.249972,0,0);}
.m110_c00270{transform:matrix(0.228911,-0.003663,0.003999,0.249968,0,0);-ms-transform:matrix(0.228911,-0.003663,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228911,-0.003663,0.003999,0.249968,0,0);}
.m12f_c00270{transform:matrix(0.229328,-0.005733,0.006248,0.249922,0,0);-ms-transform:matrix(0.229328,-0.005733,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229328,-0.005733,0.006248,0.249922,0,0);}
.meb_c00270{transform:matrix(0.229728,-0.004135,0.004499,0.249960,0,0);-ms-transform:matrix(0.229728,-0.004135,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229728,-0.004135,0.004499,0.249960,0,0);}
.m125_c00270{transform:matrix(0.230258,-0.005756,0.006248,0.249922,0,0);-ms-transform:matrix(0.230258,-0.005756,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230258,-0.005756,0.006248,0.249922,0,0);}
.ma1_c00270{transform:matrix(0.232939,-0.003494,0.003750,0.249972,0,0);-ms-transform:matrix(0.232939,-0.003494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232939,-0.003494,0.003750,0.249972,0,0);}
.m6b_c00270{transform:matrix(0.233069,-0.003496,0.003750,0.249972,0,0);-ms-transform:matrix(0.233069,-0.003496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233069,-0.003496,0.003750,0.249972,0,0);}
.md5_c00270{transform:matrix(0.234320,-0.003749,0.003999,0.249968,0,0);-ms-transform:matrix(0.234320,-0.003749,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234320,-0.003749,0.003999,0.249968,0,0);}
.m146_c00270{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);}
.m60_c00270{transform:matrix(0.235953,-0.003539,0.003750,0.249972,0,0);-ms-transform:matrix(0.235953,-0.003539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235953,-0.003539,0.003750,0.249972,0,0);}
.mc4_c00270{transform:matrix(0.236880,-0.003790,0.003999,0.249968,0,0);-ms-transform:matrix(0.236880,-0.003790,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236880,-0.003790,0.003999,0.249968,0,0);}
.m1c_c00270{transform:matrix(0.238067,-0.004761,0.004999,0.249950,0,0);-ms-transform:matrix(0.238067,-0.004761,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238067,-0.004761,0.004999,0.249950,0,0);}
.mec_c00270{transform:matrix(0.238391,-0.004291,0.004499,0.249960,0,0);-ms-transform:matrix(0.238391,-0.004291,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238391,-0.004291,0.004499,0.249960,0,0);}
.m10f_c00270{transform:matrix(0.238849,-0.003822,0.003999,0.249968,0,0);-ms-transform:matrix(0.238849,-0.003822,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238849,-0.003822,0.003999,0.249968,0,0);}
.mda_c00270{transform:matrix(0.238999,-0.003824,0.003999,0.249968,0,0);-ms-transform:matrix(0.238999,-0.003824,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238999,-0.003824,0.003999,0.249968,0,0);}
.md7_c00270{transform:matrix(0.241164,-0.003859,0.003999,0.249968,0,0);-ms-transform:matrix(0.241164,-0.003859,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241164,-0.003859,0.003999,0.249968,0,0);}
.m4f_c00270{transform:matrix(0.242796,-0.004856,0.004999,0.249950,0,0);-ms-transform:matrix(0.242796,-0.004856,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242796,-0.004856,0.004999,0.249950,0,0);}
.m102_c00270{transform:matrix(0.245074,-0.003921,0.003999,0.249968,0,0);-ms-transform:matrix(0.245074,-0.003921,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245074,-0.003921,0.003999,0.249968,0,0);}
.m145_c00270{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);}
.m105_c00270{transform:matrix(0.247463,-0.003959,0.003999,0.249968,0,0);-ms-transform:matrix(0.247463,-0.003959,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247463,-0.003959,0.003999,0.249968,0,0);}
.m59_c00270{transform:matrix(0.247893,-0.003966,0.003999,0.249968,0,0);-ms-transform:matrix(0.247893,-0.003966,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247893,-0.003966,0.003999,0.249968,0,0);}
.m21_c00270{transform:matrix(0.247960,-0.004959,0.004999,0.249950,0,0);-ms-transform:matrix(0.247960,-0.004959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247960,-0.004959,0.004999,0.249950,0,0);}
.mf9_c00270{transform:matrix(0.248723,-0.003980,0.003999,0.249968,0,0);-ms-transform:matrix(0.248723,-0.003980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248723,-0.003980,0.003999,0.249968,0,0);}
.me1_c00270{transform:matrix(0.252288,-0.004037,0.003999,0.249968,0,0);-ms-transform:matrix(0.252288,-0.004037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252288,-0.004037,0.003999,0.249968,0,0);}
.m11f_c00270{transform:matrix(0.255720,-0.006393,0.006248,0.249922,0,0);-ms-transform:matrix(0.255720,-0.006393,0.006248,0.249922,0,0);-webkit-transform:matrix(0.255720,-0.006393,0.006248,0.249922,0,0);}
.m12b_c00270{transform:matrix(0.255955,-0.006399,0.006248,0.249922,0,0);-ms-transform:matrix(0.255955,-0.006399,0.006248,0.249922,0,0);-webkit-transform:matrix(0.255955,-0.006399,0.006248,0.249922,0,0);}
.mcd_c00270{transform:matrix(0.261956,-0.004191,0.003999,0.249968,0,0);-ms-transform:matrix(0.261956,-0.004191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261956,-0.004191,0.003999,0.249968,0,0);}
.mb6_c00270{transform:matrix(0.262980,-0.003945,0.003750,0.249972,0,0);-ms-transform:matrix(0.262980,-0.003945,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262980,-0.003945,0.003750,0.249972,0,0);}
.m140_c00270{transform:matrix(0.263618,-0.006590,0.006248,0.249922,0,0);-ms-transform:matrix(0.263618,-0.006590,0.006248,0.249922,0,0);-webkit-transform:matrix(0.263618,-0.006590,0.006248,0.249922,0,0);}
.mbb_c00270{transform:matrix(0.264575,-0.003969,0.003750,0.249972,0,0);-ms-transform:matrix(0.264575,-0.003969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264575,-0.003969,0.003750,0.249972,0,0);}
.m104_c00270{transform:matrix(0.265361,-0.004246,0.003999,0.249968,0,0);-ms-transform:matrix(0.265361,-0.004246,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265361,-0.004246,0.003999,0.249968,0,0);}
.m6c_c00270{transform:matrix(0.266305,-0.003995,0.003750,0.249972,0,0);-ms-transform:matrix(0.266305,-0.003995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266305,-0.003995,0.003750,0.249972,0,0);}
.m120_c00270{transform:matrix(0.276843,-0.006921,0.006248,0.249922,0,0);-ms-transform:matrix(0.276843,-0.006921,0.006248,0.249922,0,0);-webkit-transform:matrix(0.276843,-0.006921,0.006248,0.249922,0,0);}
.mf5_c00270{transform:matrix(0.279994,-0.004480,0.003999,0.249968,0,0);-ms-transform:matrix(0.279994,-0.004480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279994,-0.004480,0.003999,0.249968,0,0);}
.m9d_c00270{transform:matrix(0.282588,-0.004239,0.003750,0.249972,0,0);-ms-transform:matrix(0.282588,-0.004239,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282588,-0.004239,0.003750,0.249972,0,0);}
.m13e_c00270{transform:matrix(0.284811,-0.007120,0.006248,0.249922,0,0);-ms-transform:matrix(0.284811,-0.007120,0.006248,0.249922,0,0);-webkit-transform:matrix(0.284811,-0.007120,0.006248,0.249922,0,0);}
.m5_c00270{transform:matrix(0.286709,-0.004874,0.004249,0.249964,0,0);-ms-transform:matrix(0.286709,-0.004874,0.004249,0.249964,0,0);-webkit-transform:matrix(0.286709,-0.004874,0.004249,0.249964,0,0);}
.mfd_c00270{transform:matrix(0.288093,-0.004609,0.003999,0.249968,0,0);-ms-transform:matrix(0.288093,-0.004609,0.003999,0.249968,0,0);-webkit-transform:matrix(0.288093,-0.004609,0.003999,0.249968,0,0);}
.m7e_c00270{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);}
.m143_c00270{transform:matrix(0.307654,-0.007691,0.006248,0.249922,0,0);-ms-transform:matrix(0.307654,-0.007691,0.006248,0.249922,0,0);-webkit-transform:matrix(0.307654,-0.007691,0.006248,0.249922,0,0);}
.m8c_c00270{transform:matrix(0.310165,-0.004652,0.003750,0.249972,0,0);-ms-transform:matrix(0.310165,-0.004652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.310165,-0.004652,0.003750,0.249972,0,0);}
.m127_c00270{transform:matrix(0.313997,-0.007850,0.006248,0.249922,0,0);-ms-transform:matrix(0.313997,-0.007850,0.006248,0.249922,0,0);-webkit-transform:matrix(0.313997,-0.007850,0.006248,0.249922,0,0);}
.mca_c00270{transform:matrix(0.319054,-0.005105,0.003999,0.249968,0,0);-ms-transform:matrix(0.319054,-0.005105,0.003999,0.249968,0,0);-webkit-transform:matrix(0.319054,-0.005105,0.003999,0.249968,0,0);}
.m128_c00270{transform:matrix(0.346907,-0.008673,0.006248,0.249922,0,0);-ms-transform:matrix(0.346907,-0.008673,0.006248,0.249922,0,0);-webkit-transform:matrix(0.346907,-0.008673,0.006248,0.249922,0,0);}
.m144_c00270{transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);}
.mc7_c00270{transform:matrix(0.352285,-0.005637,0.003999,0.249968,0,0);-ms-transform:matrix(0.352285,-0.005637,0.003999,0.249968,0,0);-webkit-transform:matrix(0.352285,-0.005637,0.003999,0.249968,0,0);}
.m138_c00270{transform:matrix(0.358073,-0.008952,0.006248,0.249922,0,0);-ms-transform:matrix(0.358073,-0.008952,0.006248,0.249922,0,0);-webkit-transform:matrix(0.358073,-0.008952,0.006248,0.249922,0,0);}
.m1_c00270{transform:matrix(0.362113,-0.006156,0.004249,0.249964,0,0);-ms-transform:matrix(0.362113,-0.006156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.362113,-0.006156,0.004249,0.249964,0,0);}
.m12a_c00270{transform:matrix(0.366151,-0.009154,0.006248,0.249922,0,0);-ms-transform:matrix(0.366151,-0.009154,0.006248,0.249922,0,0);-webkit-transform:matrix(0.366151,-0.009154,0.006248,0.249922,0,0);}
.m2_c00270{transform:matrix(0.374751,-0.006371,0.004249,0.249964,0,0);-ms-transform:matrix(0.374751,-0.006371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.374751,-0.006371,0.004249,0.249964,0,0);}
.m13d_c00270{transform:matrix(0.399460,-0.009987,0.006248,0.249922,0,0);-ms-transform:matrix(0.399460,-0.009987,0.006248,0.249922,0,0);-webkit-transform:matrix(0.399460,-0.009987,0.006248,0.249922,0,0);}
.m10c_c00270{transform:matrix(0.407878,-0.006526,0.003999,0.249968,0,0);-ms-transform:matrix(0.407878,-0.006526,0.003999,0.249968,0,0);-webkit-transform:matrix(0.407878,-0.006526,0.003999,0.249968,0,0);}
.mff_c00270{transform:matrix(0.421626,-0.006746,0.003999,0.249968,0,0);-ms-transform:matrix(0.421626,-0.006746,0.003999,0.249968,0,0);-webkit-transform:matrix(0.421626,-0.006746,0.003999,0.249968,0,0);}
.m142_c00270{transform:matrix(0.424058,-0.010601,0.006248,0.249922,0,0);-ms-transform:matrix(0.424058,-0.010601,0.006248,0.249922,0,0);-webkit-transform:matrix(0.424058,-0.010601,0.006248,0.249922,0,0);}
.mf2_c00270{transform:matrix(0.439304,-0.007029,0.003999,0.249968,0,0);-ms-transform:matrix(0.439304,-0.007029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.439304,-0.007029,0.003999,0.249968,0,0);}
.m3_c00270{transform:matrix(0.446450,-0.007590,0.004249,0.249964,0,0);-ms-transform:matrix(0.446450,-0.007590,0.004249,0.249964,0,0);-webkit-transform:matrix(0.446450,-0.007590,0.004249,0.249964,0,0);}
.m129_c00270{transform:matrix(0.455343,-0.011384,0.006248,0.249922,0,0);-ms-transform:matrix(0.455343,-0.011384,0.006248,0.249922,0,0);-webkit-transform:matrix(0.455343,-0.011384,0.006248,0.249922,0,0);}
.m12c_c00270{transform:matrix(0.458122,-0.011453,0.006248,0.249922,0,0);-ms-transform:matrix(0.458122,-0.011453,0.006248,0.249922,0,0);-webkit-transform:matrix(0.458122,-0.011453,0.006248,0.249922,0,0);}
.m0_c00270{transform:matrix(0.546796,-0.009296,0.004249,0.249964,0,0);-ms-transform:matrix(0.546796,-0.009296,0.004249,0.249964,0,0);-webkit-transform:matrix(0.546796,-0.009296,0.004249,0.249964,0,0);}
.mcb_c00270{transform:matrix(0.672989,-0.010768,0.003999,0.249968,0,0);-ms-transform:matrix(0.672989,-0.010768,0.003999,0.249968,0,0);-webkit-transform:matrix(0.672989,-0.010768,0.003999,0.249968,0,0);}
.mea_c00270{transform:matrix(0.696242,-0.012532,0.004499,0.249960,0,0);-ms-transform:matrix(0.696242,-0.012532,0.004499,0.249960,0,0);-webkit-transform:matrix(0.696242,-0.012532,0.004499,0.249960,0,0);}
.m11c_c00270{transform:matrix(0.712262,-0.017807,0.006248,0.249922,0,0);-ms-transform:matrix(0.712262,-0.017807,0.006248,0.249922,0,0);-webkit-transform:matrix(0.712262,-0.017807,0.006248,0.249922,0,0);}
.m147_c00270{transform:matrix(0.923920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.923920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.923920,0.000000,0.000000,0.250000,0,0);}
.m141_c00270{transform:matrix(1.005431,-0.025136,0.006248,0.249922,0,0);-ms-transform:matrix(1.005431,-0.025136,0.006248,0.249922,0,0);-webkit-transform:matrix(1.005431,-0.025136,0.006248,0.249922,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;}
.fs16_c00270{font-size:47.250000px;}
.fs15_c00270{font-size:51.466076px;}
.fs13_c00270{font-size:52.516404px;}
.fs14_c00270{font-size:59.868700px;}
.fsc_c00270{font-size:61.956969px;}
.fs0_c00270{font-size:61.958951px;}
.fsd_c00270{font-size:67.207560px;}
.fs8_c00270{font-size:68.257678px;}
.fs12_c00270{font-size:68.258735px;}
.fsa_c00270{font-size:69.307796px;}
.fs11_c00270{font-size:69.308870px;}
.fs4_c00270{font-size:69.313859px;}
.fsb_c00270{font-size:70.357914px;}
.fs6_c00270{font-size:70.359004px;}
.fs2_c00270{font-size:70.364069px;}
.fs9_c00270{font-size:71.408032px;}
.fs7_c00270{font-size:71.409139px;}
.fs10_c00270{font-size:71.411566px;}
.fs3_c00270{font-size:71.414279px;}
.fse_c00270{font-size:73.508268px;}
.fsf_c00270{font-size:73.509407px;}
.fs5_c00270{font-size:74.564909px;}
.fs1_c00270{font-size:137.569875px;}
.y0_c00270{bottom:0.000000px;}
.y13e_c00270{bottom:171.616913px;}
.y13f_c00270{bottom:172.264050px;}
.y145_c00270{bottom:172.435500px;}
.y140_c00270{bottom:173.179913px;}
.y141_c00270{bottom:173.316450px;}
.y142_c00270{bottom:174.265350px;}
.y143_c00270{bottom:175.694212px;}
.y144_c00270{bottom:183.195375px;}
.y12f_c00270{bottom:185.225475px;}
.y130_c00270{bottom:185.755350px;}
.y131_c00270{bottom:186.202238px;}
.y132_c00270{bottom:186.735675px;}
.y133_c00270{bottom:187.505437px;}
.y134_c00270{bottom:187.754588px;}
.y135_c00270{bottom:188.565188px;}
.y136_c00270{bottom:189.975000px;}
.y137_c00270{bottom:191.274825px;}
.y138_c00270{bottom:192.953888px;}
.y139_c00270{bottom:194.052788px;}
.y13a_c00270{bottom:194.681700px;}
.y13b_c00270{bottom:196.110225px;}
.y13c_c00270{bottom:196.548338px;}
.y13d_c00270{bottom:198.026288px;}
.y11d_c00270{bottom:206.019000px;}
.y11e_c00270{bottom:207.063562px;}
.y11f_c00270{bottom:207.208313px;}
.y120_c00270{bottom:208.960238px;}
.y121_c00270{bottom:209.142600px;}
.y122_c00270{bottom:209.978513px;}
.y123_c00270{bottom:210.694987px;}
.y124_c00270{bottom:212.348550px;}
.y125_c00270{bottom:212.737725px;}
.y126_c00270{bottom:213.130800px;}
.y127_c00270{bottom:213.657300px;}
.y128_c00270{bottom:214.986787px;}
.y129_c00270{bottom:215.328413px;}
.y12a_c00270{bottom:215.818125px;}
.y12b_c00270{bottom:217.341638px;}
.y12c_c00270{bottom:218.020463px;}
.y12d_c00270{bottom:218.688000px;}
.y12e_c00270{bottom:219.328875px;}
.y10f_c00270{bottom:257.849640px;}
.y110_c00270{bottom:258.309240px;}
.y111_c00270{bottom:258.824292px;}
.y112_c00270{bottom:258.955368px;}
.y113_c00270{bottom:259.564656px;}
.y114_c00270{bottom:260.675616px;}
.y115_c00270{bottom:261.106788px;}
.y116_c00270{bottom:261.553548px;}
.y117_c00270{bottom:262.139676px;}
.y118_c00270{bottom:262.460160px;}
.y119_c00270{bottom:263.292036px;}
.y11a_c00270{bottom:263.696556px;}
.y11b_c00270{bottom:264.582372px;}
.y11c_c00270{bottom:265.564092px;}
.yff_c00270{bottom:279.985656px;}
.y100_c00270{bottom:280.492320px;}
.y101_c00270{bottom:280.803816px;}
.y102_c00270{bottom:281.635224px;}
.y103_c00270{bottom:282.042288px;}
.y104_c00270{bottom:282.393696px;}
.y105_c00270{bottom:283.141668px;}
.y106_c00270{bottom:283.387380px;}
.y107_c00270{bottom:283.903872px;}
.y108_c00270{bottom:284.317368px;}
.y109_c00270{bottom:284.574420px;}
.y10a_c00270{bottom:285.048072px;}
.y10b_c00270{bottom:285.529032px;}
.y10c_c00270{bottom:286.009992px;}
.y10d_c00270{bottom:286.353876px;}
.y10e_c00270{bottom:287.217960px;}
.yf3_c00270{bottom:302.530500px;}
.yf4_c00270{bottom:302.919468px;}
.yf5_c00270{bottom:303.627444px;}
.yf6_c00270{bottom:304.211676px;}
.yf7_c00270{bottom:304.894356px;}
.yf8_c00270{bottom:305.957292px;}
.yf9_c00270{bottom:306.621180px;}
.yfa_c00270{bottom:307.350396px;}
.yfb_c00270{bottom:307.670868px;}
.yfc_c00270{bottom:308.828124px;}
.yfd_c00270{bottom:309.156684px;}
.yfe_c00270{bottom:309.774636px;}
.yeb_c00270{bottom:332.343000px;}
.yec_c00270{bottom:333.454266px;}
.yed_c00270{bottom:334.401102px;}
.yee_c00270{bottom:334.776213px;}
.yef_c00270{bottom:335.659977px;}
.yf0_c00270{bottom:336.999987px;}
.yf1_c00270{bottom:337.472892px;}
.yf2_c00270{bottom:337.828239px;}
.ye0_c00270{bottom:355.590000px;}
.ye1_c00270{bottom:355.799760px;}
.ye2_c00270{bottom:356.144904px;}
.ye3_c00270{bottom:356.645880px;}
.ye4_c00270{bottom:357.312192px;}
.ye5_c00270{bottom:357.734400px;}
.ye6_c00270{bottom:358.323288px;}
.ye7_c00270{bottom:358.910952px;}
.ye8_c00270{bottom:359.709984px;}
.ye9_c00270{bottom:360.350496px;}
.yea_c00270{bottom:361.185360px;}
.yd8_c00270{bottom:377.458824px;}
.yd9_c00270{bottom:378.032904px;}
.yda_c00270{bottom:378.909816px;}
.ydb_c00270{bottom:380.145816px;}
.ydc_c00270{bottom:380.451648px;}
.ydd_c00270{bottom:380.863500px;}
.yde_c00270{bottom:381.613176px;}
.ydf_c00270{bottom:382.377312px;}
.ycf_c00270{bottom:400.951236px;}
.yd0_c00270{bottom:401.312748px;}
.yd1_c00270{bottom:401.745876px;}
.yd2_c00270{bottom:402.293676px;}
.yd3_c00270{bottom:402.523428px;}
.yd4_c00270{bottom:403.064124px;}
.yd5_c00270{bottom:403.499484px;}
.yd6_c00270{bottom:404.303316px;}
.yd7_c00270{bottom:404.722020px;}
.yc3_c00270{bottom:423.364500px;}
.yc4_c00270{bottom:423.568548px;}
.yc5_c00270{bottom:424.478508px;}
.yc6_c00270{bottom:424.539180px;}
.yc7_c00270{bottom:424.778268px;}
.yc8_c00270{bottom:425.546988px;}
.yc9_c00270{bottom:425.619372px;}
.yca_c00270{bottom:425.763300px;}
.ycb_c00270{bottom:426.570492px;}
.ycc_c00270{bottom:426.944244px;}
.ycd_c00270{bottom:427.870788px;}
.yce_c00270{bottom:428.344500px;}
.ybc_c00270{bottom:453.853905px;}
.ybd_c00270{bottom:454.293075px;}
.ybe_c00270{bottom:455.245815px;}
.ybf_c00270{bottom:455.738115px;}
.yc0_c00270{bottom:456.144690px;}
.yc1_c00270{bottom:457.294733px;}
.yc2_c00270{bottom:458.457802px;}
.yb0_c00270{bottom:476.807032px;}
.yb1_c00270{bottom:477.421125px;}
.yb2_c00270{bottom:477.888630px;}
.yb3_c00270{bottom:478.183537px;}
.yb4_c00270{bottom:479.165565px;}
.yb5_c00270{bottom:479.523548px;}
.yb6_c00270{bottom:480.057322px;}
.yb7_c00270{bottom:480.804337px;}
.yb8_c00270{bottom:481.084117px;}
.yb9_c00270{bottom:481.435185px;}
.yba_c00270{bottom:481.945290px;}
.ybb_c00270{bottom:482.339115px;}
.ya3_c00270{bottom:499.218142px;}
.ya4_c00270{bottom:499.859078px;}
.ya5_c00270{bottom:500.271367px;}
.ya6_c00270{bottom:500.807932px;}
.ya7_c00270{bottom:501.475568px;}
.ya8_c00270{bottom:502.001235px;}
.ya9_c00270{bottom:502.293308px;}
.yaa_c00270{bottom:502.805707px;}
.yab_c00270{bottom:503.202757px;}
.yac_c00270{bottom:503.438243px;}
.yad_c00270{bottom:504.035175px;}
.yae_c00270{bottom:504.625620px;}
.yaf_c00270{bottom:504.970043px;}
.y98_c00270{bottom:522.081923px;}
.y99_c00270{bottom:522.724177px;}
.y9a_c00270{bottom:523.287765px;}
.y9b_c00270{bottom:523.944172px;}
.y9c_c00270{bottom:524.333708px;}
.y9d_c00270{bottom:524.971725px;}
.y9e_c00270{bottom:525.334658px;}
.y9f_c00270{bottom:526.086780px;}
.ya0_c00270{bottom:526.367820px;}
.ya1_c00270{bottom:526.902615px;}
.ya2_c00270{bottom:527.220960px;}
.y8f_c00270{bottom:545.662132px;}
.y90_c00270{bottom:546.406575px;}
.y91_c00270{bottom:546.829350px;}
.y92_c00270{bottom:547.684687px;}
.y93_c00270{bottom:548.121847px;}
.y94_c00270{bottom:549.131392px;}
.y95_c00270{bottom:549.772837px;}
.y96_c00270{bottom:550.008210px;}
.y97_c00270{bottom:550.655723px;}
.y81_c00270{bottom:566.993542px;}
.y82_c00270{bottom:567.339082px;}
.y83_c00270{bottom:567.546877px;}
.y84_c00270{bottom:568.284172px;}
.y85_c00270{bottom:569.320597px;}
.y86_c00270{bottom:569.808728px;}
.y87_c00270{bottom:570.333952px;}
.y88_c00270{bottom:570.583342px;}
.y89_c00270{bottom:570.889095px;}
.y8a_c00270{bottom:571.830743px;}
.y8b_c00270{bottom:572.148420px;}
.y8c_c00270{bottom:572.446987px;}
.y8d_c00270{bottom:572.881305px;}
.y8e_c00270{bottom:573.290003px;}
.y77_c00270{bottom:589.945815px;}
.y78_c00270{bottom:590.240520px;}
.y79_c00270{bottom:590.630655px;}
.y7a_c00270{bottom:591.579150px;}
.y7b_c00270{bottom:592.585537px;}
.y7c_c00270{bottom:593.144888px;}
.y7d_c00270{bottom:594.034275px;}
.y7e_c00270{bottom:594.961987px;}
.y7f_c00270{bottom:595.124610px;}
.y80_c00270{bottom:595.557457px;}
.y6b_c00270{bottom:611.277525px;}
.y6c_c00270{bottom:611.427735px;}
.y6d_c00270{bottom:612.574230px;}
.y6e_c00270{bottom:612.910710px;}
.y6f_c00270{bottom:613.542142px;}
.y70_c00270{bottom:614.188118px;}
.y71_c00270{bottom:614.550420px;}
.y72_c00270{bottom:615.335400px;}
.y73_c00270{bottom:616.137780px;}
.y74_c00270{bottom:616.314945px;}
.y75_c00270{bottom:616.500442px;}
.y76_c00270{bottom:617.038650px;}
.y61_c00270{bottom:634.204500px;}
.y62_c00270{bottom:635.224920px;}
.y63_c00270{bottom:635.974328px;}
.y64_c00270{bottom:637.019227px;}
.y65_c00270{bottom:637.659307px;}
.y66_c00270{bottom:637.991498px;}
.y67_c00270{bottom:638.667892px;}
.y68_c00270{bottom:639.807923px;}
.y69_c00270{bottom:640.045298px;}
.y6a_c00270{bottom:640.927118px;}
.y5b_c00270{bottom:664.716000px;}
.y5c_c00270{bottom:666.028560px;}
.y5d_c00270{bottom:666.750864px;}
.y5e_c00270{bottom:667.079208px;}
.y5f_c00270{bottom:667.697088px;}
.y60_c00270{bottom:668.525664px;}
.y51_c00270{bottom:687.154500px;}
.y52_c00270{bottom:688.195356px;}
.y53_c00270{bottom:688.803492px;}
.y54_c00270{bottom:689.193900px;}
.y55_c00270{bottom:689.814732px;}
.y56_c00270{bottom:690.307644px;}
.y57_c00270{bottom:691.298244px;}
.y58_c00270{bottom:691.873140px;}
.y59_c00270{bottom:692.484156px;}
.y5a_c00270{bottom:693.142020px;}
.y46_c00270{bottom:716.836140px;}
.y47_c00270{bottom:717.723660px;}
.y48_c00270{bottom:718.795260px;}
.y49_c00270{bottom:719.240460px;}
.y4a_c00270{bottom:719.749200px;}
.y4b_c00270{bottom:720.760830px;}
.y4c_c00270{bottom:722.128830px;}
.y4d_c00270{bottom:722.741880px;}
.y4e_c00270{bottom:723.161580px;}
.y4f_c00270{bottom:723.657060px;}
.y50_c00270{bottom:724.859460px;}
.y39_c00270{bottom:740.328840px;}
.y3a_c00270{bottom:740.910960px;}
.y3b_c00270{bottom:741.444330px;}
.y3c_c00270{bottom:741.803010px;}
.y3d_c00270{bottom:742.495380px;}
.y3e_c00270{bottom:742.928340px;}
.y3f_c00270{bottom:744.294780px;}
.y40_c00270{bottom:745.438350px;}
.y41_c00270{bottom:745.929330px;}
.y42_c00270{bottom:746.274360px;}
.y43_c00270{bottom:746.664570px;}
.y44_c00270{bottom:747.825240px;}
.y45_c00270{bottom:748.261860px;}
.y2c_c00270{bottom:762.744840px;}
.y2d_c00270{bottom:763.061490px;}
.y2e_c00270{bottom:763.726020px;}
.y2f_c00270{bottom:764.261670px;}
.y30_c00270{bottom:765.335310px;}
.y31_c00270{bottom:765.900270px;}
.y32_c00270{bottom:766.263330px;}
.y33_c00270{bottom:766.697700px;}
.y34_c00270{bottom:767.213580px;}
.y35_c00270{bottom:768.139860px;}
.y36_c00270{bottom:768.574230px;}
.y37_c00270{bottom:768.933450px;}
.y38_c00270{bottom:770.168610px;}
.y21_c00270{bottom:785.425350px;}
.y22_c00270{bottom:786.453870px;}
.y23_c00270{bottom:786.821580px;}
.y24_c00270{bottom:787.318170px;}
.y25_c00270{bottom:787.672920px;}
.y26_c00270{bottom:788.809950px;}
.y27_c00270{bottom:789.544830px;}
.y28_c00270{bottom:789.877380px;}
.y29_c00270{bottom:790.738530px;}
.y2a_c00270{bottom:791.096940px;}
.y2b_c00270{bottom:791.848650px;}
.y16_c00270{bottom:807.839280px;}
.y17_c00270{bottom:808.630890px;}
.y18_c00270{bottom:809.186190px;}
.y19_c00270{bottom:810.355680px;}
.y1a_c00270{bottom:810.710520px;}
.y1b_c00270{bottom:812.326440px;}
.y1c_c00270{bottom:812.727090px;}
.y1d_c00270{bottom:814.045440px;}
.y1e_c00270{bottom:814.465980px;}
.y1f_c00270{bottom:814.892100px;}
.y20_c00270{bottom:816.487080px;}
.ya_c00270{bottom:830.256000px;}
.yb_c00270{bottom:831.616530px;}
.yc_c00270{bottom:832.198530px;}
.yd_c00270{bottom:832.751280px;}
.ye_c00270{bottom:833.711430px;}
.yf_c00270{bottom:834.896070px;}
.y10_c00270{bottom:835.651920px;}
.y11_c00270{bottom:836.850690px;}
.y12_c00270{bottom:837.266610px;}
.y13_c00270{bottom:838.114230px;}
.y14_c00270{bottom:838.454370px;}
.y15_c00270{bottom:838.849350px;}
.y7_c00270{bottom:881.990236px;}
.y8_c00270{bottom:881.990834px;}
.y6_c00270{bottom:881.990882px;}
.y9_c00270{bottom:881.991146px;}
.y1_c00270{bottom:936.903000px;}
.y2_c00270{bottom:937.994323px;}
.y3_c00270{bottom:939.588940px;}
.y4_c00270{bottom:942.883388px;}
.y5_c00270{bottom:944.867543px;}
.h18_c00270{height:47.250000px;}
.h17_c00270{height:51.466076px;}
.h15_c00270{height:52.516404px;}
.h16_c00270{height:59.868700px;}
.he_c00270{height:61.956969px;}
.h2_c00270{height:61.958951px;}
.hf_c00270{height:67.207560px;}
.ha_c00270{height:68.257678px;}
.h14_c00270{height:68.258735px;}
.hc_c00270{height:69.307796px;}
.h13_c00270{height:69.308870px;}
.h6_c00270{height:69.313859px;}
.hd_c00270{height:70.357914px;}
.h8_c00270{height:70.359004px;}
.h4_c00270{height:70.364069px;}
.hb_c00270{height:71.408032px;}
.h9_c00270{height:71.409139px;}
.h12_c00270{height:71.411566px;}
.h5_c00270{height:71.414279px;}
.h10_c00270{height:73.508268px;}
.h11_c00270{height:73.509407px;}
.h7_c00270{height:74.564909px;}
.h3_c00270{height:137.569875px;}
.h1_c00270{height:1005.000000px;}
.h0_c00270{height:1005.150000px;}
.w1_c00270{width:727.500000px;}
.w0_c00270{width:727.650000px;}
.x0_c00270{left:0.000000px;}
.xa3_c00270{left:57.160380px;}
.xa6_c00270{left:58.513812px;}
.xbe_c00270{left:69.390000px;}
.xaf_c00270{left:80.290500px;}
.x58_c00270{left:82.725293px;}
.xbf_c00270{left:86.130000px;}
.xa_c00270{left:91.281000px;}
.x3b_c00270{left:93.156240px;}
.x59_c00270{left:94.239630px;}
.x68_c00270{left:95.426760px;}
.xc0_c00270{left:98.010000px;}
.x99_c00270{left:100.839000px;}
.x9d_c00270{left:106.959000px;}
.x29_c00270{left:107.980530px;}
.x51_c00270{left:109.552500px;}
.x61_c00270{left:117.881685px;}
.x1_c00270{left:120.087000px;}
.xb0_c00270{left:122.073000px;}
.x35_c00270{left:125.153730px;}
.xa7_c00270{left:128.150544px;}
.x4c_c00270{left:129.268236px;}
.x91_c00270{left:130.873500px;}
.x16_c00270{left:133.374660px;}
.x69_c00270{left:134.916345px;}
.xa8_c00270{left:137.561856px;}
.x3c_c00270{left:139.858170px;}
.x83_c00270{left:143.486355px;}
.x2a_c00270{left:144.883500px;}
.x62_c00270{left:147.891585px;}
.x75_c00270{left:149.211750px;}
.x92_c00270{left:152.445000px;}
.x20_c00270{left:156.276180px;}
.xb_c00270{left:159.307500px;}
.xb7_c00270{left:161.069737px;}
.x17_c00270{left:162.565230px;}
.x2b_c00270{left:174.667200px;}
.x36_c00270{left:177.634380px;}
.x21_c00270{left:179.238510px;}
.xa9_c00270{left:181.081248px;}
.x5a_c00270{left:182.475285px;}
.x2_c00270{left:184.282500px;}
.xc_c00270{left:188.407500px;}
.x46_c00270{left:191.149500px;}
.x89_c00270{left:193.042500px;}
.x3d_c00270{left:196.289310px;}
.xb1_c00270{left:197.940000px;}
.x6e_c00270{left:201.573533px;}
.x6_c00270{left:205.214331px;}
.x8d_c00270{left:206.284272px;}
.x5b_c00270{left:208.408073px;}
.x22_c00270{left:210.295500px;}
.x4d_c00270{left:211.303236px;}
.xd_c00270{left:216.045000px;}
.x37_c00270{left:218.405340px;}
.x3e_c00270{left:219.749790px;}
.x63_c00270{left:220.826768px;}
.x18_c00270{left:224.115960px;}
.x93_c00270{left:225.400500px;}
.x52_c00270{left:227.541000px;}
.x47_c00270{left:229.158000px;}
.x23_c00270{left:232.459770px;}
.x2c_c00270{left:234.276570px;}
.x9a_c00270{left:236.017500px;}
.xb2_c00270{left:238.671000px;}
.x19_c00270{left:242.758320px;}
.x38_c00270{left:243.879870px;}
.x3f_c00270{left:246.537330px;}
.x76_c00270{left:250.949340px;}
.xbc_c00270{left:252.052837px;}
.x48_c00270{left:253.558500px;}
.x9e_c00270{left:254.700000px;}
.x4e_c00270{left:256.447236px;}
.x8a_c00270{left:260.554500px;}
.x6a_c00270{left:261.566235px;}
.xe_c00270{left:264.052500px;}
.x2d_c00270{left:265.675830px;}
.xb3_c00270{left:267.330000px;}
.x7d_c00270{left:269.383440px;}
.x8e_c00270{left:271.343652px;}
.x4f_c00270{left:276.968736px;}
.x3_c00270{left:278.083500px;}
.x6f_c00270{left:279.300690px;}
.x77_c00270{left:283.419803px;}
.x2e_c00270{left:285.854640px;}
.x8f_c00270{left:287.457384px;}
.x94_c00270{left:288.594000px;}
.xaa_c00270{left:291.249276px;}
.x49_c00270{left:292.360500px;}
.x53_c00270{left:297.201000px;}
.x64_c00270{left:298.221585px;}
.x40_c00270{left:299.744880px;}
.x24_c00270{left:303.491940px;}
.x84_c00270{left:305.252715px;}
.x7_c00270{left:307.558911px;}
.x2f_c00270{left:309.974100px;}
.x50_c00270{left:315.586236px;}
.x70_c00270{left:319.047075px;}
.x9f_c00270{left:321.133500px;}
.xf_c00270{left:323.284500px;}
.x95_c00270{left:325.323000px;}
.x1a_c00270{left:327.831030px;}
.x7e_c00270{left:332.301330px;}
.xb4_c00270{left:333.472500px;}
.x5c_c00270{left:334.525853px;}
.x78_c00270{left:336.556688px;}
.x30_c00270{left:338.619240px;}
.x54_c00270{left:339.873000px;}
.x65_c00270{left:341.212868px;}
.x8b_c00270{left:343.359000px;}
.x85_c00270{left:346.338953px;}
.x1b_c00270{left:348.913950px;}
.x6b_c00270{left:351.750585px;}
.xa4_c00270{left:358.500828px;}
.x9b_c00270{left:359.560500px;}
.x10_c00270{left:361.077000px;}
.xa0_c00270{left:362.626500px;}
.xab_c00270{left:364.994628px;}
.x79_c00270{left:366.853560px;}
.x8_c00270{left:368.317455px;}
.x25_c00270{left:370.143750px;}
.x41_c00270{left:371.746320px;}
.x6c_c00270{left:373.634423px;}
.x96_c00270{left:375.262500px;}
.x4a_c00270{left:385.080000px;}
.x90_c00270{left:388.869036px;}
.x31_c00270{left:390.110310px;}
.x39_c00270{left:391.514220px;}
.x5d_c00270{left:394.959675px;}
.x7f_c00270{left:402.233423px;}
.x42_c00270{left:403.974450px;}
.x9c_c00270{left:405.574500px;}
.x55_c00270{left:407.112000px;}
.x87_c00270{left:408.188228px;}
.x66_c00270{left:409.607415px;}
.x71_c00270{left:410.855588px;}
.x32_c00270{left:414.229770px;}
.x97_c00270{left:415.294500px;}
.x1c_c00270{left:418.282830px;}
.x11_c00270{left:421.015500px;}
.x26_c00270{left:423.930540px;}
.x43_c00270{left:426.084900px;}
.xa1_c00270{left:428.232000px;}
.x7a_c00270{left:429.497873px;}
.x8c_c00270{left:430.875000px;}
.x33_c00270{left:434.216580px;}
.xb5_c00270{left:439.002000px;}
.x1d_c00270{left:440.435280px;}
.x12_c00270{left:441.811500px;}
.x27_c00270{left:446.352840px;}
.x44_c00270{left:452.134410px;}
.xb8_c00270{left:453.754237px;}
.x5e_c00270{left:456.653520px;}
.x4b_c00270{left:459.199500px;}
.x1e_c00270{left:462.866730px;}
.x80_c00270{left:466.229835px;}
.x98_c00270{left:467.473500px;}
.x72_c00270{left:469.122075px;}
.x5f_c00270{left:470.264925px;}
.x4_c00270{left:471.874500px;}
.xac_c00270{left:476.178180px;}
.xb9_c00270{left:478.910737px;}
.x67_c00270{left:480.957053px;}
.x56_c00270{left:483.114000px;}
.x13_c00270{left:484.192500px;}
.x73_c00270{left:490.514858px;}
.x86_c00270{left:491.607818px;}
.x28_c00270{left:493.317090px;}
.x7b_c00270{left:497.489933px;}
.x57_c00270{left:498.939000px;}
.x14_c00270{left:501.199500px;}
.x34_c00270{left:502.802310px;}
.x81_c00270{left:511.594185px;}
.x88_c00270{left:513.932573px;}
.x45_c00270{left:515.405670px;}
.x15_c00270{left:520.948500px;}
.x7c_c00270{left:524.014125px;}
.x60_c00270{left:525.913590px;}
.x9_c00270{left:532.500885px;}
.xba_c00270{left:536.051737px;}
.x82_c00270{left:538.056473px;}
.xad_c00270{left:539.418696px;}
.x6d_c00270{left:545.097488px;}
.x1f_c00270{left:546.817410px;}
.x74_c00270{left:549.385890px;}
.xbb_c00270{left:553.576237px;}
.x3a_c00270{left:557.599680px;}
.xa2_c00270{left:559.717500px;}
.xbd_c00270{left:581.348700px;}
.xb6_c00270{left:587.050500px;}
.x5_c00270{left:588.589500px;}
.xae_c00270{left:609.590952px;}
.xa5_c00270{left:613.456068px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.fs16_c00270{font-size:42.000000pt;}
.fs15_c00270{font-size:45.747623pt;}
.fs13_c00270{font-size:46.681248pt;}
.fs14_c00270{font-size:53.216622pt;}
.fsc_c00270{font-size:55.072861pt;}
.fs0_c00270{font-size:55.074623pt;}
.fsd_c00270{font-size:59.740053pt;}
.fs8_c00270{font-size:60.673491pt;}
.fs12_c00270{font-size:60.674432pt;}
.fsa_c00270{font-size:61.606930pt;}
.fs11_c00270{font-size:61.607884pt;}
.fs4_c00270{font-size:61.612319pt;}
.fsb_c00270{font-size:62.540368pt;}
.fs6_c00270{font-size:62.541337pt;}
.fs2_c00270{font-size:62.545839pt;}
.fs9_c00270{font-size:63.473806pt;}
.fs7_c00270{font-size:63.474790pt;}
.fs10_c00270{font-size:63.476947pt;}
.fs3_c00270{font-size:63.479359pt;}
.fse_c00270{font-size:65.340683pt;}
.fsf_c00270{font-size:65.341695pt;}
.fs5_c00270{font-size:66.279919pt;}
.fs1_c00270{font-size:122.284333pt;}
.y0_c00270{bottom:0.000000pt;}
.y13e_c00270{bottom:152.548367pt;}
.y13f_c00270{bottom:153.123600pt;}
.y145_c00270{bottom:153.276000pt;}
.y140_c00270{bottom:153.937700pt;}
.y141_c00270{bottom:154.059067pt;}
.y142_c00270{bottom:154.902533pt;}
.y143_c00270{bottom:156.172633pt;}
.y144_c00270{bottom:162.840333pt;}
.y12f_c00270{bottom:164.644867pt;}
.y130_c00270{bottom:165.115867pt;}
.y131_c00270{bottom:165.513100pt;}
.y132_c00270{bottom:165.987267pt;}
.y133_c00270{bottom:166.671500pt;}
.y134_c00270{bottom:166.892967pt;}
.y135_c00270{bottom:167.613500pt;}
.y136_c00270{bottom:168.866667pt;}
.y137_c00270{bottom:170.022067pt;}
.y138_c00270{bottom:171.514567pt;}
.y139_c00270{bottom:172.491367pt;}
.y13a_c00270{bottom:173.050400pt;}
.y13b_c00270{bottom:174.320200pt;}
.y13c_c00270{bottom:174.709633pt;}
.y13d_c00270{bottom:176.023367pt;}
.y11d_c00270{bottom:183.128000pt;}
.y11e_c00270{bottom:184.056500pt;}
.y11f_c00270{bottom:184.185167pt;}
.y120_c00270{bottom:185.742433pt;}
.y121_c00270{bottom:185.904533pt;}
.y122_c00270{bottom:186.647567pt;}
.y123_c00270{bottom:187.284433pt;}
.y124_c00270{bottom:188.754267pt;}
.y125_c00270{bottom:189.100200pt;}
.y126_c00270{bottom:189.449600pt;}
.y127_c00270{bottom:189.917600pt;}
.y128_c00270{bottom:191.099367pt;}
.y129_c00270{bottom:191.403033pt;}
.y12a_c00270{bottom:191.838333pt;}
.y12b_c00270{bottom:193.192567pt;}
.y12c_c00270{bottom:193.795967pt;}
.y12d_c00270{bottom:194.389333pt;}
.y12e_c00270{bottom:194.959000pt;}
.y10f_c00270{bottom:229.199680pt;}
.y110_c00270{bottom:229.608213pt;}
.y111_c00270{bottom:230.066037pt;}
.y112_c00270{bottom:230.182549pt;}
.y113_c00270{bottom:230.724139pt;}
.y114_c00270{bottom:231.711659pt;}
.y115_c00270{bottom:232.094923pt;}
.y116_c00270{bottom:232.492043pt;}
.y117_c00270{bottom:233.013045pt;}
.y118_c00270{bottom:233.297920pt;}
.y119_c00270{bottom:234.037365pt;}
.y11a_c00270{bottom:234.396939pt;}
.y11b_c00270{bottom:235.184331pt;}
.y11c_c00270{bottom:236.056971pt;}
.yff_c00270{bottom:248.876139pt;}
.y100_c00270{bottom:249.326507pt;}
.y101_c00270{bottom:249.603392pt;}
.y102_c00270{bottom:250.342421pt;}
.y103_c00270{bottom:250.704256pt;}
.y104_c00270{bottom:251.016619pt;}
.y105_c00270{bottom:251.681483pt;}
.y106_c00270{bottom:251.899893pt;}
.y107_c00270{bottom:252.358997pt;}
.y108_c00270{bottom:252.726549pt;}
.y109_c00270{bottom:252.955040pt;}
.y10a_c00270{bottom:253.376064pt;}
.y10b_c00270{bottom:253.803584pt;}
.y10c_c00270{bottom:254.231104pt;}
.y10d_c00270{bottom:254.536779pt;}
.y10e_c00270{bottom:255.304853pt;}
.yf3_c00270{bottom:268.916000pt;}
.yf4_c00270{bottom:269.261749pt;}
.yf5_c00270{bottom:269.891061pt;}
.yf6_c00270{bottom:270.410379pt;}
.yf7_c00270{bottom:271.017205pt;}
.yf8_c00270{bottom:271.962037pt;}
.yf9_c00270{bottom:272.552160pt;}
.yfa_c00270{bottom:273.200352pt;}
.yfb_c00270{bottom:273.485216pt;}
.yfc_c00270{bottom:274.513888pt;}
.yfd_c00270{bottom:274.805941pt;}
.yfe_c00270{bottom:275.355232pt;}
.yeb_c00270{bottom:295.416000pt;}
.yec_c00270{bottom:296.403792pt;}
.yed_c00270{bottom:297.245424pt;}
.yee_c00270{bottom:297.578856pt;}
.yef_c00270{bottom:298.364424pt;}
.yf0_c00270{bottom:299.555544pt;}
.yf1_c00270{bottom:299.975904pt;}
.yf2_c00270{bottom:300.291768pt;}
.ye0_c00270{bottom:316.080000pt;}
.ye1_c00270{bottom:316.266453pt;}
.ye2_c00270{bottom:316.573248pt;}
.ye3_c00270{bottom:317.018560pt;}
.ye4_c00270{bottom:317.610837pt;}
.ye5_c00270{bottom:317.986133pt;}
.ye6_c00270{bottom:318.509589pt;}
.ye7_c00270{bottom:319.031957pt;}
.ye8_c00270{bottom:319.742208pt;}
.ye9_c00270{bottom:320.311552pt;}
.yea_c00270{bottom:321.053653pt;}
.yd8_c00270{bottom:335.518955pt;}
.yd9_c00270{bottom:336.029248pt;}
.yda_c00270{bottom:336.808725pt;}
.ydb_c00270{bottom:337.907392pt;}
.ydc_c00270{bottom:338.179243pt;}
.ydd_c00270{bottom:338.545333pt;}
.yde_c00270{bottom:339.211712pt;}
.ydf_c00270{bottom:339.890944pt;}
.ycf_c00270{bottom:356.401099pt;}
.yd0_c00270{bottom:356.722443pt;}
.yd1_c00270{bottom:357.107445pt;}
.yd2_c00270{bottom:357.594379pt;}
.yd3_c00270{bottom:357.798603pt;}
.yd4_c00270{bottom:358.279221pt;}
.yd5_c00270{bottom:358.666208pt;}
.yd6_c00270{bottom:359.380725pt;}
.yd7_c00270{bottom:359.752907pt;}
.yc3_c00270{bottom:376.324000pt;}
.yc4_c00270{bottom:376.505376pt;}
.yc5_c00270{bottom:377.314229pt;}
.yc6_c00270{bottom:377.368160pt;}
.yc7_c00270{bottom:377.580683pt;}
.yc8_c00270{bottom:378.263989pt;}
.yc9_c00270{bottom:378.328331pt;}
.yca_c00270{bottom:378.456267pt;}
.ycb_c00270{bottom:379.173771pt;}
.ycc_c00270{bottom:379.505995pt;}
.ycd_c00270{bottom:380.329589pt;}
.yce_c00270{bottom:380.750667pt;}
.ybc_c00270{bottom:403.425693pt;}
.ybd_c00270{bottom:403.816067pt;}
.ybe_c00270{bottom:404.662947pt;}
.ybf_c00270{bottom:405.100547pt;}
.yc0_c00270{bottom:405.461947pt;}
.yc1_c00270{bottom:406.484207pt;}
.yc2_c00270{bottom:407.518047pt;}
.yb0_c00270{bottom:423.828473pt;}
.yb1_c00270{bottom:424.374333pt;}
.yb2_c00270{bottom:424.789893pt;}
.yb3_c00270{bottom:425.052033pt;}
.yb4_c00270{bottom:425.924947pt;}
.yb5_c00270{bottom:426.243153pt;}
.yb6_c00270{bottom:426.717620pt;}
.yb7_c00270{bottom:427.381633pt;}
.yb8_c00270{bottom:427.630327pt;}
.yb9_c00270{bottom:427.942387pt;}
.yba_c00270{bottom:428.395813pt;}
.ybb_c00270{bottom:428.745880pt;}
.ya3_c00270{bottom:443.749460pt;}
.ya4_c00270{bottom:444.319180pt;}
.ya5_c00270{bottom:444.685660pt;}
.ya6_c00270{bottom:445.162607pt;}
.ya7_c00270{bottom:445.756060pt;}
.ya8_c00270{bottom:446.223320pt;}
.ya9_c00270{bottom:446.482940pt;}
.yaa_c00270{bottom:446.938407pt;}
.yab_c00270{bottom:447.291340pt;}
.yac_c00270{bottom:447.500660pt;}
.yad_c00270{bottom:448.031267pt;}
.yae_c00270{bottom:448.556107pt;}
.yaf_c00270{bottom:448.862260pt;}
.y98_c00270{bottom:464.072820pt;}
.y99_c00270{bottom:464.643713pt;}
.y9a_c00270{bottom:465.144680pt;}
.y9b_c00270{bottom:465.728153pt;}
.y9c_c00270{bottom:466.074407pt;}
.y9d_c00270{bottom:466.641533pt;}
.y9e_c00270{bottom:466.964140pt;}
.y9f_c00270{bottom:467.632693pt;}
.ya0_c00270{bottom:467.882507pt;}
.ya1_c00270{bottom:468.357880pt;}
.ya2_c00270{bottom:468.640853pt;}
.y8f_c00270{bottom:485.033007pt;}
.y90_c00270{bottom:485.694733pt;}
.y91_c00270{bottom:486.070533pt;}
.y92_c00270{bottom:486.830833pt;}
.y93_c00270{bottom:487.219420pt;}
.y94_c00270{bottom:488.116793pt;}
.y95_c00270{bottom:488.686967pt;}
.y96_c00270{bottom:488.896187pt;}
.y97_c00270{bottom:489.471753pt;}
.y81_c00270{bottom:503.994260pt;}
.y82_c00270{bottom:504.301407pt;}
.y83_c00270{bottom:504.486113pt;}
.y84_c00270{bottom:505.141487pt;}
.y85_c00270{bottom:506.062753pt;}
.y86_c00270{bottom:506.496647pt;}
.y87_c00270{bottom:506.963513pt;}
.y88_c00270{bottom:507.185193pt;}
.y89_c00270{bottom:507.456973pt;}
.y8a_c00270{bottom:508.293993pt;}
.y8b_c00270{bottom:508.576373pt;}
.y8c_c00270{bottom:508.841767pt;}
.y8d_c00270{bottom:509.227827pt;}
.y8e_c00270{bottom:509.591113pt;}
.y77_c00270{bottom:524.396280pt;}
.y78_c00270{bottom:524.658240pt;}
.y79_c00270{bottom:525.005027pt;}
.y7a_c00270{bottom:525.848133pt;}
.y7b_c00270{bottom:526.742700pt;}
.y7c_c00270{bottom:527.239900pt;}
.y7d_c00270{bottom:528.030467pt;}
.y7e_c00270{bottom:528.855100pt;}
.y7f_c00270{bottom:528.999653pt;}
.y80_c00270{bottom:529.384407pt;}
.y6b_c00270{bottom:543.357800pt;}
.y6c_c00270{bottom:543.491320pt;}
.y6d_c00270{bottom:544.510427pt;}
.y6e_c00270{bottom:544.809520pt;}
.y6f_c00270{bottom:545.370793pt;}
.y70_c00270{bottom:545.944993pt;}
.y71_c00270{bottom:546.267040pt;}
.y72_c00270{bottom:546.964800pt;}
.y73_c00270{bottom:547.678027pt;}
.y74_c00270{bottom:547.835507pt;}
.y75_c00270{bottom:548.000393pt;}
.y76_c00270{bottom:548.478800pt;}
.y61_c00270{bottom:563.737333pt;}
.y62_c00270{bottom:564.644373pt;}
.y63_c00270{bottom:565.310513pt;}
.y64_c00270{bottom:566.239313pt;}
.y65_c00270{bottom:566.808273pt;}
.y66_c00270{bottom:567.103553pt;}
.y67_c00270{bottom:567.704793pt;}
.y68_c00270{bottom:568.718153pt;}
.y69_c00270{bottom:568.929153pt;}
.y6a_c00270{bottom:569.712993pt;}
.y5b_c00270{bottom:590.858667pt;}
.y5c_c00270{bottom:592.025387pt;}
.y5d_c00270{bottom:592.667435pt;}
.y5e_c00270{bottom:592.959296pt;}
.y5f_c00270{bottom:593.508523pt;}
.y60_c00270{bottom:594.245035pt;}
.y51_c00270{bottom:610.804000pt;}
.y52_c00270{bottom:611.729205pt;}
.y53_c00270{bottom:612.269771pt;}
.y54_c00270{bottom:612.616800pt;}
.y55_c00270{bottom:613.168651pt;}
.y56_c00270{bottom:613.606795pt;}
.y57_c00270{bottom:614.487328pt;}
.y58_c00270{bottom:614.998347pt;}
.y59_c00270{bottom:615.541472pt;}
.y5a_c00270{bottom:616.126240pt;}
.y46_c00270{bottom:637.187680pt;}
.y47_c00270{bottom:637.976587pt;}
.y48_c00270{bottom:638.929120pt;}
.y49_c00270{bottom:639.324853pt;}
.y4a_c00270{bottom:639.777067pt;}
.y4b_c00270{bottom:640.676293pt;}
.y4c_c00270{bottom:641.892293pt;}
.y4d_c00270{bottom:642.437227pt;}
.y4e_c00270{bottom:642.810293pt;}
.y4f_c00270{bottom:643.250720pt;}
.y50_c00270{bottom:644.319520pt;}
.y39_c00270{bottom:658.070080pt;}
.y3a_c00270{bottom:658.587520pt;}
.y3b_c00270{bottom:659.061627pt;}
.y3c_c00270{bottom:659.380453pt;}
.y3d_c00270{bottom:659.995893pt;}
.y3e_c00270{bottom:660.380747pt;}
.y3f_c00270{bottom:661.595360pt;}
.y40_c00270{bottom:662.611867pt;}
.y41_c00270{bottom:663.048293pt;}
.y42_c00270{bottom:663.354987pt;}
.y43_c00270{bottom:663.701840pt;}
.y44_c00270{bottom:664.733547pt;}
.y45_c00270{bottom:665.121653pt;}
.y2c_c00270{bottom:677.995413pt;}
.y2d_c00270{bottom:678.276880pt;}
.y2e_c00270{bottom:678.867573pt;}
.y2f_c00270{bottom:679.343707pt;}
.y30_c00270{bottom:680.298053pt;}
.y31_c00270{bottom:680.800240pt;}
.y32_c00270{bottom:681.122960pt;}
.y33_c00270{bottom:681.509067pt;}
.y34_c00270{bottom:681.967627pt;}
.y35_c00270{bottom:682.790987pt;}
.y36_c00270{bottom:683.177093pt;}
.y37_c00270{bottom:683.496400pt;}
.y38_c00270{bottom:684.594320pt;}
.y21_c00270{bottom:698.155867pt;}
.y22_c00270{bottom:699.070107pt;}
.y23_c00270{bottom:699.396960pt;}
.y24_c00270{bottom:699.838373pt;}
.y25_c00270{bottom:700.153707pt;}
.y26_c00270{bottom:701.164400pt;}
.y27_c00270{bottom:701.817627pt;}
.y28_c00270{bottom:702.113227pt;}
.y29_c00270{bottom:702.878693pt;}
.y2a_c00270{bottom:703.197280pt;}
.y2b_c00270{bottom:703.865467pt;}
.y16_c00270{bottom:718.079360pt;}
.y17_c00270{bottom:718.783013pt;}
.y18_c00270{bottom:719.276613pt;}
.y19_c00270{bottom:720.316160pt;}
.y1a_c00270{bottom:720.631573pt;}
.y1b_c00270{bottom:722.067947pt;}
.y1c_c00270{bottom:722.424080pt;}
.y1d_c00270{bottom:723.595947pt;}
.y1e_c00270{bottom:723.969760pt;}
.y1f_c00270{bottom:724.348533pt;}
.y20_c00270{bottom:725.766293pt;}
.ya_c00270{bottom:738.005333pt;}
.yb_c00270{bottom:739.214693pt;}
.yc_c00270{bottom:739.732027pt;}
.yd_c00270{bottom:740.223360pt;}
.ye_c00270{bottom:741.076827pt;}
.yf_c00270{bottom:742.129840pt;}
.y10_c00270{bottom:742.801707pt;}
.y11_c00270{bottom:743.867280pt;}
.y12_c00270{bottom:744.236987pt;}
.y13_c00270{bottom:744.990427pt;}
.y14_c00270{bottom:745.292773pt;}
.y15_c00270{bottom:745.643867pt;}
.y7_c00270{bottom:783.991321pt;}
.y8_c00270{bottom:783.991852pt;}
.y6_c00270{bottom:783.991895pt;}
.y9_c00270{bottom:783.992129pt;}
.y1_c00270{bottom:832.802667pt;}
.y2_c00270{bottom:833.772732pt;}
.y3_c00270{bottom:835.190169pt;}
.y4_c00270{bottom:838.118567pt;}
.y5_c00270{bottom:839.882260pt;}
.h18_c00270{height:42.000000pt;}
.h17_c00270{height:45.747623pt;}
.h15_c00270{height:46.681248pt;}
.h16_c00270{height:53.216622pt;}
.he_c00270{height:55.072861pt;}
.h2_c00270{height:55.074623pt;}
.hf_c00270{height:59.740053pt;}
.ha_c00270{height:60.673491pt;}
.h14_c00270{height:60.674432pt;}
.hc_c00270{height:61.606930pt;}
.h13_c00270{height:61.607884pt;}
.h6_c00270{height:61.612319pt;}
.hd_c00270{height:62.540368pt;}
.h8_c00270{height:62.541337pt;}
.h4_c00270{height:62.545839pt;}
.hb_c00270{height:63.473806pt;}
.h9_c00270{height:63.474790pt;}
.h12_c00270{height:63.476947pt;}
.h5_c00270{height:63.479359pt;}
.h10_c00270{height:65.340683pt;}
.h11_c00270{height:65.341695pt;}
.h7_c00270{height:66.279919pt;}
.h3_c00270{height:122.284333pt;}
.h1_c00270{height:893.333333pt;}
.h0_c00270{height:893.466667pt;}
.w1_c00270{width:646.666667pt;}
.w0_c00270{width:646.800000pt;}
.x0_c00270{left:0.000000pt;}
.xa3_c00270{left:50.809227pt;}
.xa6_c00270{left:52.012277pt;}
.xbe_c00270{left:61.680000pt;}
.xaf_c00270{left:71.369333pt;}
.x58_c00270{left:73.533593pt;}
.xbf_c00270{left:76.560000pt;}
.xa_c00270{left:81.138667pt;}
.x3b_c00270{left:82.805547pt;}
.x59_c00270{left:83.768560pt;}
.x68_c00270{left:84.823787pt;}
.xc0_c00270{left:87.120000pt;}
.x99_c00270{left:89.634667pt;}
.x9d_c00270{left:95.074667pt;}
.x29_c00270{left:95.982693pt;}
.x51_c00270{left:97.380000pt;}
.x61_c00270{left:104.783720pt;}
.x1_c00270{left:106.744000pt;}
.xb0_c00270{left:108.509333pt;}
.x35_c00270{left:111.247760pt;}
.xa7_c00270{left:113.911595pt;}
.x4c_c00270{left:114.905099pt;}
.x91_c00270{left:116.332000pt;}
.x16_c00270{left:118.555253pt;}
.x69_c00270{left:119.925640pt;}
.xa8_c00270{left:122.277205pt;}
.x3c_c00270{left:124.318373pt;}
.x83_c00270{left:127.543427pt;}
.x2a_c00270{left:128.785333pt;}
.x62_c00270{left:131.459187pt;}
.x75_c00270{left:132.632667pt;}
.x92_c00270{left:135.506667pt;}
.x20_c00270{left:138.912160pt;}
.xb_c00270{left:141.606667pt;}
.xb7_c00270{left:143.173100pt;}
.x17_c00270{left:144.502427pt;}
.x2b_c00270{left:155.259733pt;}
.x36_c00270{left:157.897227pt;}
.x21_c00270{left:159.323120pt;}
.xa9_c00270{left:160.961109pt;}
.x5a_c00270{left:162.200253pt;}
.x2_c00270{left:163.806667pt;}
.xc_c00270{left:167.473333pt;}
.x46_c00270{left:169.910667pt;}
.x89_c00270{left:171.593333pt;}
.x3d_c00270{left:174.479387pt;}
.xb1_c00270{left:175.946667pt;}
.x6e_c00270{left:179.176473pt;}
.x6_c00270{left:182.412739pt;}
.x8d_c00270{left:183.363797pt;}
.x5b_c00270{left:185.251620pt;}
.x22_c00270{left:186.929333pt;}
.x4d_c00270{left:187.825099pt;}
.xd_c00270{left:192.040000pt;}
.x37_c00270{left:194.138080pt;}
.x3e_c00270{left:195.333147pt;}
.x63_c00270{left:196.290460pt;}
.x18_c00270{left:199.214187pt;}
.x93_c00270{left:200.356000pt;}
.x52_c00270{left:202.258667pt;}
.x47_c00270{left:203.696000pt;}
.x23_c00270{left:206.630907pt;}
.x2c_c00270{left:208.245840pt;}
.x9a_c00270{left:209.793333pt;}
.xb2_c00270{left:212.152000pt;}
.x19_c00270{left:215.785173pt;}
.x38_c00270{left:216.782107pt;}
.x3f_c00270{left:219.144293pt;}
.x76_c00270{left:223.066080pt;}
.xbc_c00270{left:224.046967pt;}
.x48_c00270{left:225.385333pt;}
.x9e_c00270{left:226.400000pt;}
.x4e_c00270{left:227.953099pt;}
.x8a_c00270{left:231.604000pt;}
.x6a_c00270{left:232.503320pt;}
.xe_c00270{left:234.713333pt;}
.x2d_c00270{left:236.156293pt;}
.xb3_c00270{left:237.626667pt;}
.x7d_c00270{left:239.451947pt;}
.x8e_c00270{left:241.194357pt;}
.x4f_c00270{left:246.194432pt;}
.x3_c00270{left:247.185333pt;}
.x6f_c00270{left:248.267280pt;}
.x77_c00270{left:251.928713pt;}
.x2e_c00270{left:254.093013pt;}
.x8f_c00270{left:255.517675pt;}
.x94_c00270{left:256.528000pt;}
.xaa_c00270{left:258.888245pt;}
.x49_c00270{left:259.876000pt;}
.x53_c00270{left:264.178667pt;}
.x64_c00270{left:265.085853pt;}
.x40_c00270{left:266.439893pt;}
.x24_c00270{left:269.770613pt;}
.x84_c00270{left:271.335747pt;}
.x7_c00270{left:273.385699pt;}
.x2f_c00270{left:275.532533pt;}
.x50_c00270{left:280.521099pt;}
.x70_c00270{left:283.597400pt;}
.x9f_c00270{left:285.452000pt;}
.xf_c00270{left:287.364000pt;}
.x95_c00270{left:289.176000pt;}
.x1a_c00270{left:291.405360pt;}
.x7e_c00270{left:295.378960pt;}
.xb4_c00270{left:296.420000pt;}
.x5c_c00270{left:297.356313pt;}
.x78_c00270{left:299.161500pt;}
.x30_c00270{left:300.994880pt;}
.x54_c00270{left:302.109333pt;}
.x65_c00270{left:303.300327pt;}
.x8b_c00270{left:305.208000pt;}
.x85_c00270{left:307.856847pt;}
.x1b_c00270{left:310.145733pt;}
.x6b_c00270{left:312.667187pt;}
.xa4_c00270{left:318.667403pt;}
.x9b_c00270{left:319.609333pt;}
.x10_c00270{left:320.957333pt;}
.xa0_c00270{left:322.334667pt;}
.xab_c00270{left:324.439669pt;}
.x79_c00270{left:326.092053pt;}
.x8_c00270{left:327.393293pt;}
.x25_c00270{left:329.016667pt;}
.x41_c00270{left:330.441173pt;}
.x6c_c00270{left:332.119487pt;}
.x96_c00270{left:333.566667pt;}
.x4a_c00270{left:342.293333pt;}
.x90_c00270{left:345.661365pt;}
.x31_c00270{left:346.764720pt;}
.x39_c00270{left:348.012640pt;}
.x5d_c00270{left:351.075267pt;}
.x7f_c00270{left:357.540820pt;}
.x42_c00270{left:359.088400pt;}
.x9c_c00270{left:360.510667pt;}
.x55_c00270{left:361.877333pt;}
.x87_c00270{left:362.833980pt;}
.x66_c00270{left:364.095480pt;}
.x71_c00270{left:365.204967pt;}
.x32_c00270{left:368.204240pt;}
.x97_c00270{left:369.150667pt;}
.x1c_c00270{left:371.806960pt;}
.x11_c00270{left:374.236000pt;}
.x26_c00270{left:376.827147pt;}
.x43_c00270{left:378.742133pt;}
.xa1_c00270{left:380.650667pt;}
.x7a_c00270{left:381.775887pt;}
.x8c_c00270{left:383.000000pt;}
.x33_c00270{left:385.970293pt;}
.xb5_c00270{left:390.224000pt;}
.x1d_c00270{left:391.498027pt;}
.x12_c00270{left:392.721333pt;}
.x27_c00270{left:396.758080pt;}
.x44_c00270{left:401.897253pt;}
.xb8_c00270{left:403.337100pt;}
.x5e_c00270{left:405.914240pt;}
.x4b_c00270{left:408.177333pt;}
.x1e_c00270{left:411.437093pt;}
.x80_c00270{left:414.426520pt;}
.x98_c00270{left:415.532000pt;}
.x72_c00270{left:416.997400pt;}
.x5f_c00270{left:418.013267pt;}
.x4_c00270{left:419.444000pt;}
.xac_c00270{left:423.269493pt;}
.xb9_c00270{left:425.698433pt;}
.x67_c00270{left:427.517380pt;}
.x56_c00270{left:429.434667pt;}
.x13_c00270{left:430.393333pt;}
.x73_c00270{left:436.013207pt;}
.x86_c00270{left:436.984727pt;}
.x28_c00270{left:438.504080pt;}
.x7b_c00270{left:442.213273pt;}
.x57_c00270{left:443.501333pt;}
.x14_c00270{left:445.510667pt;}
.x34_c00270{left:446.935387pt;}
.x81_c00270{left:454.750387pt;}
.x88_c00270{left:456.828953pt;}
.x45_c00270{left:458.138373pt;}
.x15_c00270{left:463.065333pt;}
.x7c_c00270{left:465.790333pt;}
.x60_c00270{left:467.478747pt;}
.x9_c00270{left:473.334120pt;}
.xba_c00270{left:476.490433pt;}
.x82_c00270{left:478.272420pt;}
.xad_c00270{left:479.483285pt;}
.x6d_c00270{left:484.531100pt;}
.x1f_c00270{left:486.059920pt;}
.x74_c00270{left:488.343013pt;}
.xbb_c00270{left:492.067767pt;}
.x3a_c00270{left:495.644160pt;}
.xa2_c00270{left:497.526667pt;}
.xbd_c00270{left:516.754400pt;}
.xb6_c00270{left:521.822667pt;}
.x5_c00270{left:523.190667pt;}
.xae_c00270{left:541.858624pt;}
.xa5_c00270{left:545.294283pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.ma1_c00271{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);}
.mfb_c00271{transform:matrix(0.011960,0.000096,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011960,0.000096,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011960,0.000096,-0.002000,0.249992,0,0);}
.me1_c00271{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);}
.mf4_c00271{transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);}
.m97_c00271{transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);}
.mb6_c00271{transform:matrix(0.059865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059865,0.000000,0.000000,0.250000,0,0);}
.m55_c00271{transform:matrix(0.097020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097020,0.000000,0.000000,0.250000,0,0);}
.mb9_c00271{transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120040,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.134020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134020,0.000000,0.000000,0.250000,0,0);}
.md2_c00271{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{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);}
.me_c00271{transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140565,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.141840,-0.001702,0.003000,0.249982,0,0);-ms-transform:matrix(0.141840,-0.001702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141840,-0.001702,0.003000,0.249982,0,0);}
.m36_c00271{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);}
.m105_c00271{transform:matrix(0.145830,0.001167,-0.002000,0.249992,0,0);-ms-transform:matrix(0.145830,0.001167,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.145830,0.001167,-0.002000,0.249992,0,0);}
.m13_c00271{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);}
.m17_c00271{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);}
.m4e_c00271{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);}
.m65_c00271{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);}
.ma8_c00271{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);}
.m4a_c00271{transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{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);}
.m31_c00271{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);}
.m38_c00271{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);}
.m9d_c00271{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);}
.m78_c00271{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);}
.m18_c00271{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);}
.m7b_c00271{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);}
.m1f_c00271{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);}
.m62_c00271{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);}
.m5b_c00271{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);}
.ma_c00271{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);}
.m79_c00271{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);}
.m19_c00271{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);}
.mcb_c00271{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);}
.m44_c00271{transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{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);}
.m9_c00271{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);}
.m5f_c00271{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);}
.m51_c00271{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);}
.m4b_c00271{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);}
.m4_c00271{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);}
.m9a_c00271{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);}
.mc4_c00271{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);}
.me0_c00271{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);}
.m27_c00271{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);}
.m2f_c00271{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);}
.m60_c00271{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);}
.m1c_c00271{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);}
.m81_c00271{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);}
.mbe_c00271{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);}
.m3_c00271{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);}
.m37_c00271{transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);}
.mcc_c00271{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);}
.m8_c00271{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);}
.mc3_c00271{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);}
.m50_c00271{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);}
.md7_c00271{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);}
.m9e_c00271{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);}
.m93_c00271{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);}
.m39_c00271{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);}
.mb2_c00271{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);}
.m85_c00271{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);}
.mbf_c00271{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);}
.m7e_c00271{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);}
.m11_c00271{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);}
.mce_c00271{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);}
.mbd_c00271{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);}
.mf3_c00271{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);}
.m9b_c00271{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);}
.m91_c00271{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);}
.m52_c00271{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);}
.mfd_c00271{transform:matrix(0.180934,0.001447,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180934,0.001447,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180934,0.001447,-0.002000,0.249992,0,0);}
.m21_c00271{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);}
.m7_c00271{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);}
.m9f_c00271{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);}
.ma9_c00271{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);}
.m1d_c00271{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);}
.m41_c00271{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);}
.m75_c00271{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);}
.ma0_c00271{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);}
.mba_c00271{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);}
.m3a_c00271{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);}
.m15_c00271{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);}
.m76_c00271{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);}
.m53_c00271{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);}
.ma4_c00271{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);}
.m43_c00271{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);}
.mc1_c00271{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);}
.m5e_c00271{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);}
.m103_c00271{transform:matrix(0.186329,0.001491,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186329,0.001491,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186329,0.001491,-0.002000,0.249992,0,0);}
.m77_c00271{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);}
.m3f_c00271{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);}
.m29_c00271{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);}
.m4d_c00271{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);}
.mc_c00271{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);}
.m5a_c00271{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);}
.m63_c00271{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);}
.m6_c00271{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);}
.m96_c00271{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);}
.m66_c00271{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);}
.m9c_c00271{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.m1e_c00271{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);}
.m30_c00271{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);}
.m1_c00271{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);}
.md8_c00271{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);}
.m5_c00271{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);}
.m3e_c00271{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);}
.m99_c00271{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);}
.m92_c00271{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);}
.md_c00271{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);}
.m7a_c00271{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);}
.mdc_c00271{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);}
.m48_c00271{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);}
.m49_c00271{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);}
.m3b_c00271{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);}
.m58_c00271{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);}
.mca_c00271{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);}
.m14_c00271{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);}
.m86_c00271{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);}
.m57_c00271{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);}
.m3d_c00271{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);}
.m71_c00271{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);}
.mc2_c00271{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);}
.m67_c00271{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);}
.m7c_c00271{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);}
.md6_c00271{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);}
.m6c_c00271{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);}
.mbb_c00271{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);}
.m16_c00271{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);}
.m7f_c00271{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);}
.m3c_c00271{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);}
.mb0_c00271{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);}
.mb8_c00271{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);}
.m2c_c00271{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);}
.m56_c00271{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);}
.m2d_c00271{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);}
.m4f_c00271{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);}
.mc6_c00271{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);}
.m45_c00271{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{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);}
.m40_c00271{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);}
.mee_c00271{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);}
.m6d_c00271{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);}
.m28_c00271{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);}
.m95_c00271{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);}
.m46_c00271{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);}
.m1a_c00271{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);}
.m2a_c00271{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);}
.mf9_c00271{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);}
.m8d_c00271{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);}
.m47_c00271{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);}
.mde_c00271{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);}
.m26_c00271{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);}
.m1b_c00271{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);}
.m7d_c00271{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);}
.mf8_c00271{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);}
.m59_c00271{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);}
.m61_c00271{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);}
.m89_c00271{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);}
.maf_c00271{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);}
.mdd_c00271{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);}
.me2_c00271{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);}
.med_c00271{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);}
.mcf_c00271{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);}
.me9_c00271{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);}
.md0_c00271{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);}
.mcd_c00271{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);}
.mb4_c00271{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);}
.m2b_c00271{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);}
.m102_c00271{transform:matrix(0.213718,0.001710,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213718,0.001710,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213718,0.001710,-0.002000,0.249992,0,0);}
.m20_c00271{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);}
.m8b_c00271{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);}
.mc0_c00271{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);}
.mc5_c00271{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);}
.mac_c00271{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);}
.mb3_c00271{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);}
.mb_c00271{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);}
.mb5_c00271{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);}
.m6e_c00271{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);}
.m88_c00271{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);}
.m5c_c00271{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);}
.mf5_c00271{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);}
.mf_c00271{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);}
.m22_c00271{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);}
.mec_c00271{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);}
.me3_c00271{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);}
.maa_c00271{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);}
.mbc_c00271{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);}
.me5_c00271{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.m82_c00271{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);}
.m25_c00271{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{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);}
.mc9_c00271{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);}
.md1_c00271{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);}
.m33_c00271{transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{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);}
.mef_c00271{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);}
.m23_c00271{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);}
.m32_c00271{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);}
.me6_c00271{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);}
.m73_c00271{transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235085,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{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);}
.m80_c00271{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);}
.m101_c00271{transform:matrix(0.236617,0.001893,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236617,0.001893,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236617,0.001893,-0.002000,0.249992,0,0);}
.m106_c00271{transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);}
.m8c_c00271{transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{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);}
.ma3_c00271{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.m6b_c00271{transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238430,0.000000,0.000000,0.250000,0,0);}
.mc7_c00271{transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);}
.mf1_c00271{transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);}
.mff_c00271{transform:matrix(0.240712,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240712,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240712,0.001926,-0.002000,0.249992,0,0);}
.mf2_c00271{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);}
.mb7_c00271{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);}
.m34_c00271{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);}
.me4_c00271{transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244655,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.mdf_c00271{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);}
.md4_c00271{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);}
.ma6_c00271{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);}
.mfa_c00271{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);}
.m94_c00271{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);}
.m90_c00271{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m84_c00271{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.mdb_c00271{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.mf6_c00271{transform:matrix(0.256265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00271{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);}
.m108_c00271{transform:matrix(0.260392,0.002083,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260392,0.002083,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260392,0.002083,-0.002000,0.249992,0,0);}
.m72_c00271{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);}
.m87_c00271{transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00271{transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);}
.ma7_c00271{transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);}
.me8_c00271{transform:matrix(0.271025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271025,0.000000,0.000000,0.250000,0,0);}
.m98_c00271{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);}
.md5_c00271{transform:matrix(0.282620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282620,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.284295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284295,0.000000,0.000000,0.250000,0,0);}
.mae_c00271{transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);}
.mda_c00271{transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297645,0.000000,0.000000,0.250000,0,0);}
.me7_c00271{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);}
.mfc_c00271{transform:matrix(0.305315,0.002443,-0.002000,0.249992,0,0);-ms-transform:matrix(0.305315,0.002443,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.305315,0.002443,-0.002000,0.249992,0,0);}
.m10a_c00271{transform:matrix(0.314840,0.002519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.314840,0.002519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.314840,0.002519,-0.002000,0.249992,0,0);}
.mab_c00271{transform:matrix(0.316130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316130,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.325965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325965,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{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);}
.m2e_c00271{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);}
.ma2_c00271{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);}
.mf7_c00271{transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.343320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343320,0.000000,0.000000,0.250000,0,0);}
.md3_c00271{transform:matrix(0.347360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347360,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.352510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352510,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355800,0.000000,0.000000,0.250000,0,0);}
.mc8_c00271{transform:matrix(0.357295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357295,0.000000,0.000000,0.250000,0,0);}
.mea_c00271{transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);}
.m109_c00271{transform:matrix(0.358854,0.002871,-0.002000,0.249992,0,0);-ms-transform:matrix(0.358854,0.002871,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.358854,0.002871,-0.002000,0.249992,0,0);}
.m74_c00271{transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);}
.m107_c00271{transform:matrix(0.395092,0.003161,-0.002000,0.249992,0,0);-ms-transform:matrix(0.395092,0.003161,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.395092,0.003161,-0.002000,0.249992,0,0);}
.m104_c00271{transform:matrix(0.407602,0.003261,-0.002000,0.249992,0,0);-ms-transform:matrix(0.407602,0.003261,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.407602,0.003261,-0.002000,0.249992,0,0);}
.mf0_c00271{transform:matrix(0.412065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412065,0.000000,0.000000,0.250000,0,0);}
.mfe_c00271{transform:matrix(0.414577,0.003317,-0.002000,0.249992,0,0);-ms-transform:matrix(0.414577,0.003317,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.414577,0.003317,-0.002000,0.249992,0,0);}
.md9_c00271{transform:matrix(0.470665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470665,0.000000,0.000000,0.250000,0,0);}
.m100_c00271{transform:matrix(0.802859,0.006423,-0.002000,0.249992,0,0);-ms-transform:matrix(0.802859,0.006423,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.802859,0.006423,-0.002000,0.249992,0,0);}
.meb_c00271{transform:matrix(1.194130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.194130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.194130,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(1.218227,-0.014619,0.003000,0.249982,0,0);-ms-transform:matrix(1.218227,-0.014619,0.003000,0.249982,0,0);-webkit-transform:matrix(1.218227,-0.014619,0.003000,0.249982,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;}
.fs8_c00271{font-size:54.600000px;}
.fsb_c00271{font-size:58.800000px;}
.fsa_c00271{font-size:60.900000px;}
.fs3_c00271{font-size:61.950000px;}
.fs4_c00271{font-size:64.050000px;}
.fs1_c00271{font-size:68.250000px;}
.fs5_c00271{font-size:69.300000px;}
.fs9_c00271{font-size:70.350000px;}
.fs2_c00271{font-size:71.400000px;}
.fsc_c00271{font-size:71.402285px;}
.fs6_c00271{font-size:72.450000px;}
.fsd_c00271{font-size:73.502352px;}
.fs7_c00271{font-size:74.550000px;}
.fs0_c00271{font-size:115.508316px;}
.y0_c00271{bottom:0.000000px;}
.y2f_c00271{bottom:167.755764px;}
.y2e_c00271{bottom:167.954568px;}
.y2d_c00271{bottom:168.007872px;}
.y2c_c00271{bottom:168.322200px;}
.y2b_c00271{bottom:168.741384px;}
.y2a_c00271{bottom:169.038252px;}
.y29_c00271{bottom:169.842504px;}
.y28_c00271{bottom:170.110200px;}
.y27_c00271{bottom:170.185248px;}
.y26_c00271{bottom:170.640420px;}
.y25_c00271{bottom:189.982824px;}
.y24_c00271{bottom:191.046600px;}
.y23_c00271{bottom:191.184024px;}
.y22_c00271{bottom:192.472104px;}
.y21_c00271{bottom:192.972156px;}
.y20_c00271{bottom:193.260624px;}
.y1f_c00271{bottom:193.320000px;}
.y1c_c00271{bottom:282.186000px;}
.y1b_c00271{bottom:304.480500px;}
.y1a_c00271{bottom:327.915000px;}
.y19_c00271{bottom:349.282500px;}
.y18_c00271{bottom:372.114000px;}
.y1e_c00271{bottom:373.192500px;}
.y1d_c00271{bottom:393.531000px;}
.y17_c00271{bottom:395.094000px;}
.y16_c00271{bottom:417.417000px;}
.y15_c00271{bottom:439.969500px;}
.y14_c00271{bottom:462.157500px;}
.y13_c00271{bottom:484.920000px;}
.y12_c00271{bottom:508.354500px;}
.y11_c00271{bottom:530.760000px;}
.y10_c00271{bottom:553.177500px;}
.yf_c00271{bottom:576.213000px;}
.ye_c00271{bottom:598.590000px;}
.yd_c00271{bottom:621.102000px;}
.yc_c00271{bottom:644.146500px;}
.yb_c00271{bottom:674.830500px;}
.ya_c00271{bottom:697.237500px;}
.y9_c00271{bottom:720.696000px;}
.y8_c00271{bottom:743.817000px;}
.y7_c00271{bottom:767.742000px;}
.y6_c00271{bottom:789.276000px;}
.y5_c00271{bottom:812.259000px;}
.y4_c00271{bottom:835.176000px;}
.y1_c00271{bottom:876.421500px;}
.y2_c00271{bottom:877.552764px;}
.y3_c00271{bottom:878.414244px;}
.ha_c00271{height:54.600000px;}
.hd_c00271{height:58.800000px;}
.hc_c00271{height:60.900000px;}
.h5_c00271{height:61.950000px;}
.h6_c00271{height:64.050000px;}
.h3_c00271{height:68.250000px;}
.h7_c00271{height:69.300000px;}
.hb_c00271{height:70.350000px;}
.h4_c00271{height:71.400000px;}
.he_c00271{height:71.402285px;}
.h8_c00271{height:72.450000px;}
.hf_c00271{height:73.502352px;}
.h9_c00271{height:74.550000px;}
.h2_c00271{height:115.508316px;}
.h0_c00271{height:1008.450000px;}
.h1_c00271{height:1008.750000px;}
.w0_c00271{width:696.000000px;}
.x0_c00271{left:0.000000px;}
.x4_c00271{left:152.550000px;}
.x95_c00271{left:157.140000px;}
.x1_c00271{left:164.601000px;}
.xe_c00271{left:169.560000px;}
.x48_c00271{left:173.610000px;}
.x73_c00271{left:175.770000px;}
.x78_c00271{left:177.120000px;}
.x96_c00271{left:179.820000px;}
.x41_c00271{left:182.520000px;}
.x92_c00271{left:184.680000px;}
.x4e_c00271{left:186.840000px;}
.x5e_c00271{left:187.920000px;}
.x56_c00271{left:190.890000px;}
.xf_c00271{left:193.590000px;}
.x37_c00271{left:198.450000px;}
.x25_c00271{left:201.960000px;}
.x74_c00271{left:206.550000px;}
.x19_c00271{left:207.630000px;}
.x79_c00271{left:209.790000px;}
.x30_c00271{left:211.410000px;}
.x6a_c00271{left:215.190000px;}
.x42_c00271{left:216.540000px;}
.x5f_c00271{left:218.160000px;}
.x49_c00271{left:220.590000px;}
.xa1_c00271{left:223.482000px;}
.x88_c00271{left:224.910000px;}
.x85_c00271{left:229.230000px;}
.x4f_c00271{left:230.850000px;}
.x5_c00271{left:231.930000px;}
.x57_c00271{left:233.550000px;}
.x43_c00271{left:237.600000px;}
.x26_c00271{left:239.760000px;}
.x75_c00271{left:241.650000px;}
.x70_c00271{left:243.540000px;}
.x6b_c00271{left:249.480000px;}
.x7f_c00271{left:251.910000px;}
.x50_c00271{left:254.880000px;}
.x2_c00271{left:258.873000px;}
.x93_c00271{left:260.550000px;}
.x6_c00271{left:262.710000px;}
.x97_c00271{left:264.060000px;}
.x64_c00271{left:265.950000px;}
.x38_c00271{left:268.920000px;}
.x58_c00271{left:270.810000px;}
.x1a_c00271{left:271.890000px;}
.x10_c00271{left:275.400000px;}
.x80_c00271{left:276.480000px;}
.x27_c00271{left:277.560000px;}
.x76_c00271{left:279.990000px;}
.x60_c00271{left:281.070000px;}
.x31_c00271{left:282.420000px;}
.xa0_c00271{left:283.500000px;}
.x6c_c00271{left:286.200000px;}
.x7a_c00271{left:287.550000px;}
.x11_c00271{left:289.440000px;}
.x4a_c00271{left:291.330000px;}
.x8c_c00271{left:292.950000px;}
.x39_c00271{left:294.030000px;}
.x65_c00271{left:299.700000px;}
.x7_c00271{left:307.800000px;}
.x9a_c00271{left:311.040000px;}
.x1b_c00271{left:312.930000px;}
.x59_c00271{left:314.820000px;}
.x4b_c00271{left:316.710000px;}
.x28_c00271{left:317.790000px;}
.x32_c00271{left:321.300000px;}
.x66_c00271{left:325.890000px;}
.x8_c00271{left:328.590000px;}
.x3_c00271{left:330.663000px;}
.x44_c00271{left:333.180000px;}
.x61_c00271{left:335.070000px;}
.x71_c00271{left:336.420000px;}
.x94_c00271{left:337.770000px;}
.x3a_c00271{left:341.280000px;}
.x12_c00271{left:347.760000px;}
.x1c_c00271{left:349.110000px;}
.x51_c00271{left:351.000000px;}
.x5a_c00271{left:354.510000px;}
.x7b_c00271{left:355.860000px;}
.x91_c00271{left:358.560000px;}
.x89_c00271{left:359.910000px;}
.x67_c00271{left:362.070000px;}
.x8d_c00271{left:364.230000px;}
.x62_c00271{left:365.310000px;}
.x1d_c00271{left:366.660000px;}
.x3b_c00271{left:367.740000px;}
.x4c_c00271{left:368.820000px;}
.x29_c00271{left:373.950000px;}
.x45_c00271{left:375.030000px;}
.x9_c00271{left:379.620000px;}
.x7c_c00271{left:380.970000px;}
.x5b_c00271{left:384.210000px;}
.x9b_c00271{left:388.800000px;}
.x33_c00271{left:391.230000px;}
.x3c_c00271{left:392.310000px;}
.x13_c00271{left:394.470000px;}
.x7d_c00271{left:396.900000px;}
.x63_c00271{left:398.250000px;}
.x86_c00271{left:399.330000px;}
.xa3_c00271{left:401.103180px;}
.x8f_c00271{left:407.160000px;}
.x1e_c00271{left:408.240000px;}
.x81_c00271{left:411.480000px;}
.x14_c00271{left:413.370000px;}
.x68_c00271{left:416.610000px;}
.xa_c00271{left:417.960000px;}
.x77_c00271{left:419.850000px;}
.x72_c00271{left:420.930000px;}
.x9c_c00271{left:422.550000px;}
.x90_c00271{left:424.170000px;}
.x98_c00271{left:426.060000px;}
.xa4_c00271{left:429.705996px;}
.x34_c00271{left:430.920000px;}
.x5c_c00271{left:432.000000px;}
.x6d_c00271{left:433.620000px;}
.x2a_c00271{left:436.590000px;}
.x87_c00271{left:439.290000px;}
.x1f_c00271{left:442.800000px;}
.x52_c00271{left:444.150000px;}
.x69_c00271{left:445.230000px;}
.xa2_c00271{left:446.998500px;}
.x8a_c00271{left:448.470000px;}
.xa5_c00271{left:452.593944px;}
.x2b_c00271{left:454.140000px;}
.x82_c00271{left:457.380000px;}
.x8e_c00271{left:459.540000px;}
.x3d_c00271{left:460.890000px;}
.x9d_c00271{left:463.050000px;}
.x4d_c00271{left:464.130000px;}
.x53_c00271{left:474.660000px;}
.x2c_c00271{left:476.550000px;}
.x20_c00271{left:478.710000px;}
.xb_c00271{left:480.870000px;}
.x3e_c00271{left:485.460000px;}
.x15_c00271{left:486.810000px;}
.x6e_c00271{left:489.780000px;}
.x21_c00271{left:494.910000px;}
.x5d_c00271{left:497.880000px;}
.x46_c00271{left:501.930000px;}
.x99_c00271{left:506.250000px;}
.x2d_c00271{left:507.330000px;}
.x8b_c00271{left:511.920000px;}
.x22_c00271{left:517.590000px;}
.xc_c00271{left:520.830000px;}
.x9e_c00271{left:521.910000px;}
.x35_c00271{left:522.990000px;}
.x3f_c00271{left:526.770000px;}
.x16_c00271{left:533.520000px;}
.x2e_c00271{left:540.810000px;}
.x83_c00271{left:543.510000px;}
.x6f_c00271{left:547.560000px;}
.x40_c00271{left:551.340000px;}
.x7e_c00271{left:554.580000px;}
.x17_c00271{left:560.790000px;}
.x9f_c00271{left:564.300000px;}
.x23_c00271{left:568.350000px;}
.x2f_c00271{left:569.430000px;}
.xd_c00271{left:571.050000px;}
.x84_c00271{left:573.480000px;}
.x47_c00271{left:586.710000px;}
.x24_c00271{left:597.240000px;}
.x36_c00271{left:603.180000px;}
.x18_c00271{left:605.880000px;}
.x54_c00271{left:650.700000px;}
.x55_c00271{left:672.570000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.fs8_c00271{font-size:48.533333pt;}
.fsb_c00271{font-size:52.266667pt;}
.fsa_c00271{font-size:54.133333pt;}
.fs3_c00271{font-size:55.066667pt;}
.fs4_c00271{font-size:56.933333pt;}
.fs1_c00271{font-size:60.666667pt;}
.fs5_c00271{font-size:61.600000pt;}
.fs9_c00271{font-size:62.533333pt;}
.fs2_c00271{font-size:63.466667pt;}
.fsc_c00271{font-size:63.468698pt;}
.fs6_c00271{font-size:64.400000pt;}
.fsd_c00271{font-size:65.335424pt;}
.fs7_c00271{font-size:66.266667pt;}
.fs0_c00271{font-size:102.674058pt;}
.y0_c00271{bottom:0.000000pt;}
.y2f_c00271{bottom:149.116235pt;}
.y2e_c00271{bottom:149.292949pt;}
.y2d_c00271{bottom:149.340331pt;}
.y2c_c00271{bottom:149.619733pt;}
.y2b_c00271{bottom:149.992341pt;}
.y2a_c00271{bottom:150.256224pt;}
.y29_c00271{bottom:150.971115pt;}
.y28_c00271{bottom:151.209067pt;}
.y27_c00271{bottom:151.275776pt;}
.y26_c00271{bottom:151.680373pt;}
.y25_c00271{bottom:168.873621pt;}
.y24_c00271{bottom:169.819200pt;}
.y23_c00271{bottom:169.941355pt;}
.y22_c00271{bottom:171.086315pt;}
.y21_c00271{bottom:171.530805pt;}
.y20_c00271{bottom:171.787221pt;}
.y1f_c00271{bottom:171.840000pt;}
.y1c_c00271{bottom:250.832000pt;}
.y1b_c00271{bottom:270.649333pt;}
.y1a_c00271{bottom:291.480000pt;}
.y19_c00271{bottom:310.473333pt;}
.y18_c00271{bottom:330.768000pt;}
.y1e_c00271{bottom:331.726667pt;}
.y1d_c00271{bottom:349.805333pt;}
.y17_c00271{bottom:351.194667pt;}
.y16_c00271{bottom:371.037333pt;}
.y15_c00271{bottom:391.084000pt;}
.y14_c00271{bottom:410.806667pt;}
.y13_c00271{bottom:431.040000pt;}
.y12_c00271{bottom:451.870667pt;}
.y11_c00271{bottom:471.786667pt;}
.y10_c00271{bottom:491.713333pt;}
.yf_c00271{bottom:512.189333pt;}
.ye_c00271{bottom:532.080000pt;}
.yd_c00271{bottom:552.090667pt;}
.yc_c00271{bottom:572.574667pt;}
.yb_c00271{bottom:599.849333pt;}
.ya_c00271{bottom:619.766667pt;}
.y9_c00271{bottom:640.618667pt;}
.y8_c00271{bottom:661.170667pt;}
.y7_c00271{bottom:682.437333pt;}
.y6_c00271{bottom:701.578667pt;}
.y5_c00271{bottom:722.008000pt;}
.y4_c00271{bottom:742.378667pt;}
.y1_c00271{bottom:779.041333pt;}
.y2_c00271{bottom:780.046901pt;}
.y3_c00271{bottom:780.812661pt;}
.ha_c00271{height:48.533333pt;}
.hd_c00271{height:52.266667pt;}
.hc_c00271{height:54.133333pt;}
.h5_c00271{height:55.066667pt;}
.h6_c00271{height:56.933333pt;}
.h3_c00271{height:60.666667pt;}
.h7_c00271{height:61.600000pt;}
.hb_c00271{height:62.533333pt;}
.h4_c00271{height:63.466667pt;}
.he_c00271{height:63.468698pt;}
.h8_c00271{height:64.400000pt;}
.hf_c00271{height:65.335424pt;}
.h9_c00271{height:66.266667pt;}
.h2_c00271{height:102.674058pt;}
.h0_c00271{height:896.400000pt;}
.h1_c00271{height:896.666667pt;}
.w0_c00271{width:618.666667pt;}
.x0_c00271{left:0.000000pt;}
.x4_c00271{left:135.600000pt;}
.x95_c00271{left:139.680000pt;}
.x1_c00271{left:146.312000pt;}
.xe_c00271{left:150.720000pt;}
.x48_c00271{left:154.320000pt;}
.x73_c00271{left:156.240000pt;}
.x78_c00271{left:157.440000pt;}
.x96_c00271{left:159.840000pt;}
.x41_c00271{left:162.240000pt;}
.x92_c00271{left:164.160000pt;}
.x4e_c00271{left:166.080000pt;}
.x5e_c00271{left:167.040000pt;}
.x56_c00271{left:169.680000pt;}
.xf_c00271{left:172.080000pt;}
.x37_c00271{left:176.400000pt;}
.x25_c00271{left:179.520000pt;}
.x74_c00271{left:183.600000pt;}
.x19_c00271{left:184.560000pt;}
.x79_c00271{left:186.480000pt;}
.x30_c00271{left:187.920000pt;}
.x6a_c00271{left:191.280000pt;}
.x42_c00271{left:192.480000pt;}
.x5f_c00271{left:193.920000pt;}
.x49_c00271{left:196.080000pt;}
.xa1_c00271{left:198.650667pt;}
.x88_c00271{left:199.920000pt;}
.x85_c00271{left:203.760000pt;}
.x4f_c00271{left:205.200000pt;}
.x5_c00271{left:206.160000pt;}
.x57_c00271{left:207.600000pt;}
.x43_c00271{left:211.200000pt;}
.x26_c00271{left:213.120000pt;}
.x75_c00271{left:214.800000pt;}
.x70_c00271{left:216.480000pt;}
.x6b_c00271{left:221.760000pt;}
.x7f_c00271{left:223.920000pt;}
.x50_c00271{left:226.560000pt;}
.x2_c00271{left:230.109333pt;}
.x93_c00271{left:231.600000pt;}
.x6_c00271{left:233.520000pt;}
.x97_c00271{left:234.720000pt;}
.x64_c00271{left:236.400000pt;}
.x38_c00271{left:239.040000pt;}
.x58_c00271{left:240.720000pt;}
.x1a_c00271{left:241.680000pt;}
.x10_c00271{left:244.800000pt;}
.x80_c00271{left:245.760000pt;}
.x27_c00271{left:246.720000pt;}
.x76_c00271{left:248.880000pt;}
.x60_c00271{left:249.840000pt;}
.x31_c00271{left:251.040000pt;}
.xa0_c00271{left:252.000000pt;}
.x6c_c00271{left:254.400000pt;}
.x7a_c00271{left:255.600000pt;}
.x11_c00271{left:257.280000pt;}
.x4a_c00271{left:258.960000pt;}
.x8c_c00271{left:260.400000pt;}
.x39_c00271{left:261.360000pt;}
.x65_c00271{left:266.400000pt;}
.x7_c00271{left:273.600000pt;}
.x9a_c00271{left:276.480000pt;}
.x1b_c00271{left:278.160000pt;}
.x59_c00271{left:279.840000pt;}
.x4b_c00271{left:281.520000pt;}
.x28_c00271{left:282.480000pt;}
.x32_c00271{left:285.600000pt;}
.x66_c00271{left:289.680000pt;}
.x8_c00271{left:292.080000pt;}
.x3_c00271{left:293.922667pt;}
.x44_c00271{left:296.160000pt;}
.x61_c00271{left:297.840000pt;}
.x71_c00271{left:299.040000pt;}
.x94_c00271{left:300.240000pt;}
.x3a_c00271{left:303.360000pt;}
.x12_c00271{left:309.120000pt;}
.x1c_c00271{left:310.320000pt;}
.x51_c00271{left:312.000000pt;}
.x5a_c00271{left:315.120000pt;}
.x7b_c00271{left:316.320000pt;}
.x91_c00271{left:318.720000pt;}
.x89_c00271{left:319.920000pt;}
.x67_c00271{left:321.840000pt;}
.x8d_c00271{left:323.760000pt;}
.x62_c00271{left:324.720000pt;}
.x1d_c00271{left:325.920000pt;}
.x3b_c00271{left:326.880000pt;}
.x4c_c00271{left:327.840000pt;}
.x29_c00271{left:332.400000pt;}
.x45_c00271{left:333.360000pt;}
.x9_c00271{left:337.440000pt;}
.x7c_c00271{left:338.640000pt;}
.x5b_c00271{left:341.520000pt;}
.x9b_c00271{left:345.600000pt;}
.x33_c00271{left:347.760000pt;}
.x3c_c00271{left:348.720000pt;}
.x13_c00271{left:350.640000pt;}
.x7d_c00271{left:352.800000pt;}
.x63_c00271{left:354.000000pt;}
.x86_c00271{left:354.960000pt;}
.xa3_c00271{left:356.536160pt;}
.x8f_c00271{left:361.920000pt;}
.x1e_c00271{left:362.880000pt;}
.x81_c00271{left:365.760000pt;}
.x14_c00271{left:367.440000pt;}
.x68_c00271{left:370.320000pt;}
.xa_c00271{left:371.520000pt;}
.x77_c00271{left:373.200000pt;}
.x72_c00271{left:374.160000pt;}
.x9c_c00271{left:375.600000pt;}
.x90_c00271{left:377.040000pt;}
.x98_c00271{left:378.720000pt;}
.xa4_c00271{left:381.960885pt;}
.x34_c00271{left:383.040000pt;}
.x5c_c00271{left:384.000000pt;}
.x6d_c00271{left:385.440000pt;}
.x2a_c00271{left:388.080000pt;}
.x87_c00271{left:390.480000pt;}
.x1f_c00271{left:393.600000pt;}
.x52_c00271{left:394.800000pt;}
.x69_c00271{left:395.760000pt;}
.xa2_c00271{left:397.332000pt;}
.x8a_c00271{left:398.640000pt;}
.xa5_c00271{left:402.305728pt;}
.x2b_c00271{left:403.680000pt;}
.x82_c00271{left:406.560000pt;}
.x8e_c00271{left:408.480000pt;}
.x3d_c00271{left:409.680000pt;}
.x9d_c00271{left:411.600000pt;}
.x4d_c00271{left:412.560000pt;}
.x53_c00271{left:421.920000pt;}
.x2c_c00271{left:423.600000pt;}
.x20_c00271{left:425.520000pt;}
.xb_c00271{left:427.440000pt;}
.x3e_c00271{left:431.520000pt;}
.x15_c00271{left:432.720000pt;}
.x6e_c00271{left:435.360000pt;}
.x21_c00271{left:439.920000pt;}
.x5d_c00271{left:442.560000pt;}
.x46_c00271{left:446.160000pt;}
.x99_c00271{left:450.000000pt;}
.x2d_c00271{left:450.960000pt;}
.x8b_c00271{left:455.040000pt;}
.x22_c00271{left:460.080000pt;}
.xc_c00271{left:462.960000pt;}
.x9e_c00271{left:463.920000pt;}
.x35_c00271{left:464.880000pt;}
.x3f_c00271{left:468.240000pt;}
.x16_c00271{left:474.240000pt;}
.x2e_c00271{left:480.720000pt;}
.x83_c00271{left:483.120000pt;}
.x6f_c00271{left:486.720000pt;}
.x40_c00271{left:490.080000pt;}
.x7e_c00271{left:492.960000pt;}
.x17_c00271{left:498.480000pt;}
.x9f_c00271{left:501.600000pt;}
.x23_c00271{left:505.200000pt;}
.x2f_c00271{left:506.160000pt;}
.xd_c00271{left:507.600000pt;}
.x84_c00271{left:509.760000pt;}
.x47_c00271{left:521.520000pt;}
.x24_c00271{left:530.880000pt;}
.x36_c00271{left:536.160000pt;}
.x18_c00271{left:538.560000pt;}
.x54_c00271{left:578.400000pt;}
.x55_c00271{left:597.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m11d_c00272{transform:matrix(0.011139,0.000123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011139,0.000123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011139,0.000123,-0.002750,0.249985,0,0);}
.m66_c00272{transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.017970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017970,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);}
.m129_c00272{transform:matrix(0.027103,0.000298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.027103,0.000298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.027103,0.000298,-0.002750,0.249985,0,0);}
.m36_c00272{transform:matrix(0.054650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054650,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.116973,0.001287,-0.002750,0.249985,0,0);-ms-transform:matrix(0.116973,0.001287,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.116973,0.001287,-0.002750,0.249985,0,0);}
.m55_c00272{transform:matrix(0.118720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118720,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.122333,0.001346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.122333,0.001346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.122333,0.001346,-0.002750,0.249985,0,0);}
.md2_c00272{transform:matrix(0.126377,0.001390,-0.002750,0.249985,0,0);-ms-transform:matrix(0.126377,0.001390,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.126377,0.001390,-0.002750,0.249985,0,0);}
.m41_c00272{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.149410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149410,0.000000,0.000000,0.250000,0,0);}
.mc0_c00272{transform:matrix(0.150346,0.001654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150346,0.001654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150346,0.001654,-0.002750,0.249985,0,0);}
.m11e_c00272{transform:matrix(0.152601,0.001679,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152601,0.001679,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152601,0.001679,-0.002750,0.249985,0,0);}
.mbe_c00272{transform:matrix(0.153616,0.001690,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153616,0.001690,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153616,0.001690,-0.002750,0.249985,0,0);}
.m32_c00272{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);}
.m5f_c00272{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);}
.m92_c00272{transform:matrix(0.156396,0.001720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156396,0.001720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156396,0.001720,-0.002750,0.249985,0,0);}
.m3f_c00272{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);}
.m4a_c00272{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);}
.mfd_c00272{transform:matrix(0.160630,0.001767,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160630,0.001767,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160630,0.001767,-0.002750,0.249985,0,0);}
.mf7_c00272{transform:matrix(0.160720,0.001768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160720,0.001768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160720,0.001768,-0.002750,0.249985,0,0);}
.m116_c00272{transform:matrix(0.161650,0.001778,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161650,0.001778,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161650,0.001778,-0.002750,0.249985,0,0);}
.m19_c00272{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);}
.m47_c00272{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);}
.md4_c00272{transform:matrix(0.164985,0.001815,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164985,0.001815,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164985,0.001815,-0.002750,0.249985,0,0);}
.m119_c00272{transform:matrix(0.165280,0.001818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165280,0.001818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165280,0.001818,-0.002750,0.249985,0,0);}
.m7b_c00272{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);}
.m40_c00272{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);}
.m4d_c00272{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);}
.m4b_c00272{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);}
.m48_c00272{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);}
.m69_c00272{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.173061,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173061,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173061,-0.001731,0.002500,0.249988,0,0);}
.mbf_c00272{transform:matrix(0.173390,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173390,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173390,0.001907,-0.002750,0.249985,0,0);}
.m37_c00272{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_c00272{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);}
.m8a_c00272{transform:matrix(0.175699,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175699,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175699,0.001933,-0.002750,0.249985,0,0);}
.m80_c00272{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);}
.m107_c00272{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);}
.m53_c00272{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);}
.m77_c00272{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);}
.m51_c00272{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);}
.m15_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);}
.ma3_c00272{transform:matrix(0.178934,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178934,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178934,0.001968,-0.002750,0.249985,0,0);}
.m89_c00272{transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179614,0.001976,-0.002750,0.249985,0,0);}
.m72_c00272{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);}
.mb2_c00272{transform:matrix(0.179889,0.001979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179889,0.001979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179889,0.001979,-0.002750,0.249985,0,0);}
.m52_c00272{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);}
.m1b_c00272{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);}
.m7d_c00272{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);}
.m10b_c00272{transform:matrix(0.182714,0.002010,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182714,0.002010,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182714,0.002010,-0.002750,0.249985,0,0);}
.m6d_c00272{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);}
.m4e_c00272{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);}
.m75_c00272{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);}
.m10d_c00272{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);}
.mc7_c00272{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);}
.m54_c00272{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);}
.m21_c00272{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);}
.m112_c00272{transform:matrix(0.184914,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184914,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184914,0.002034,-0.002750,0.249985,0,0);}
.m44_c00272{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);}
.m87_c00272{transform:matrix(0.185879,0.002045,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185879,0.002045,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185879,0.002045,-0.002750,0.249985,0,0);}
.md0_c00272{transform:matrix(0.186389,0.002050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186389,0.002050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186389,0.002050,-0.002750,0.249985,0,0);}
.mbb_c00272{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);}
.m49_c00272{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);}
.m114_c00272{transform:matrix(0.188119,0.002069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188119,0.002069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188119,0.002069,-0.002750,0.249985,0,0);}
.mda_c00272{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);}
.m43_c00272{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);}
.m10a_c00272{transform:matrix(0.188784,0.002077,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188784,0.002077,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188784,0.002077,-0.002750,0.249985,0,0);}
.mcc_c00272{transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);}
.m105_c00272{transform:matrix(0.190903,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190903,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190903,0.002100,-0.002750,0.249985,0,0);}
.m95_c00272{transform:matrix(0.191643,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191643,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191643,0.002108,-0.002750,0.249985,0,0);}
.m109_c00272{transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);}
.md1_c00272{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);}
.mcd_c00272{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);}
.m98_c00272{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);}
.mf6_c00272{transform:matrix(0.192493,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192493,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192493,0.002117,-0.002750,0.249985,0,0);}
.mba_c00272{transform:matrix(0.192688,0.002120,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192688,0.002120,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192688,0.002120,-0.002750,0.249985,0,0);}
.mbd_c00272{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);}
.mb0_c00272{transform:matrix(0.193148,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193148,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193148,0.002125,-0.002750,0.249985,0,0);}
.mc4_c00272{transform:matrix(0.194258,0.002137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194258,0.002137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194258,0.002137,-0.002750,0.249985,0,0);}
.m130_c00272{transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194383,0.002138,-0.002750,0.249985,0,0);}
.mf5_c00272{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);}
.m30_c00272{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);}
.m93_c00272{transform:matrix(0.195348,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195348,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195348,0.002149,-0.002750,0.249985,0,0);}
.m108_c00272{transform:matrix(0.195668,0.002152,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195668,0.002152,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195668,0.002152,-0.002750,0.249985,0,0);}
.mc1_c00272{transform:matrix(0.196168,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196168,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196168,0.002158,-0.002750,0.249985,0,0);}
.mfe_c00272{transform:matrix(0.196258,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196258,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196258,0.002159,-0.002750,0.249985,0,0);}
.m8f_c00272{transform:matrix(0.196828,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196828,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196828,0.002165,-0.002750,0.249985,0,0);}
.m10c_c00272{transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);}
.md8_c00272{transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);}
.mae_c00272{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);}
.m65_c00272{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);}
.m24_c00272{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);}
.ma9_c00272{transform:matrix(0.199023,0.002189,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199023,0.002189,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199023,0.002189,-0.002750,0.249985,0,0);}
.m86_c00272{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);}
.m117_c00272{transform:matrix(0.199838,0.002198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199838,0.002198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199838,0.002198,-0.002750,0.249985,0,0);}
.m33_c00272{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);}
.m8e_c00272{transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200223,0.002202,-0.002750,0.249985,0,0);}
.mca_c00272{transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);}
.m58_c00272{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);}
.m90_c00272{transform:matrix(0.201198,0.002213,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201198,0.002213,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201198,0.002213,-0.002750,0.249985,0,0);}
.m4f_c00272{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);}
.m9b_c00272{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);}
.m3d_c00272{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);}
.mc5_c00272{transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201683,0.002219,-0.002750,0.249985,0,0);}
.m7c_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);}
.mea_c00272{transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202083,0.002223,-0.002750,0.249985,0,0);}
.mdd_c00272{transform:matrix(0.202228,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202228,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202228,0.002225,-0.002750,0.249985,0,0);}
.m3e_c00272{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);}
.m73_c00272{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);}
.mf_c00272{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);}
.m17_c00272{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);}
.m31_c00272{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{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);}
.m94_c00272{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);}
.me4_c00272{transform:matrix(0.205283,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205283,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205283,0.002258,-0.002750,0.249985,0,0);}
.mfa_c00272{transform:matrix(0.205713,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205713,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205713,0.002263,-0.002750,0.249985,0,0);}
.me3_c00272{transform:matrix(0.205828,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205828,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205828,0.002264,-0.002750,0.249985,0,0);}
.mfc_c00272{transform:matrix(0.205948,0.002265,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205948,0.002265,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205948,0.002265,-0.002750,0.249985,0,0);}
.m7a_c00272{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);}
.m118_c00272{transform:matrix(0.206538,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206538,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206538,0.002272,-0.002750,0.249985,0,0);}
.me0_c00272{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);}
.m9c_c00272{transform:matrix(0.206892,0.002276,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206892,0.002276,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206892,0.002276,-0.002750,0.249985,0,0);}
.mc2_c00272{transform:matrix(0.208192,0.002290,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208192,0.002290,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208192,0.002290,-0.002750,0.249985,0,0);}
.mab_c00272{transform:matrix(0.208697,0.002296,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208697,0.002296,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208697,0.002296,-0.002750,0.249985,0,0);}
.mf9_c00272{transform:matrix(0.209027,0.002299,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209027,0.002299,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209027,0.002299,-0.002750,0.249985,0,0);}
.m70_c00272{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);}
.mf0_c00272{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);}
.m3a_c00272{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.mdc_c00272{transform:matrix(0.209897,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209897,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209897,0.002309,-0.002750,0.249985,0,0);}
.m26_c00272{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);}
.mcf_c00272{transform:matrix(0.210362,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210362,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210362,0.002314,-0.002750,0.249985,0,0);}
.mbc_c00272{transform:matrix(0.210787,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210787,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210787,0.002319,-0.002750,0.249985,0,0);}
.m3b_c00272{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);}
.mb1_c00272{transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210977,0.002321,-0.002750,0.249985,0,0);}
.mcb_c00272{transform:matrix(0.211332,0.002325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211332,0.002325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211332,0.002325,-0.002750,0.249985,0,0);}
.m16_c00272{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);}
.ma6_c00272{transform:matrix(0.211542,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211542,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211542,0.002327,-0.002750,0.249985,0,0);}
.m20_c00272{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_c00272{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);}
.m85_c00272{transform:matrix(0.212052,0.002333,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212052,0.002333,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212052,0.002333,-0.002750,0.249985,0,0);}
.m125_c00272{transform:matrix(0.212112,0.002333,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212112,0.002333,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212112,0.002333,-0.002750,0.249985,0,0);}
.m115_c00272{transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);}
.m11_c00272{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);}
.m2b_c00272{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);}
.ma0_c00272{transform:matrix(0.214427,0.002359,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214427,0.002359,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214427,0.002359,-0.002750,0.249985,0,0);}
.m10e_c00272{transform:matrix(0.214472,0.002359,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214472,0.002359,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214472,0.002359,-0.002750,0.249985,0,0);}
.mfb_c00272{transform:matrix(0.214637,0.002361,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214637,0.002361,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214637,0.002361,-0.002750,0.249985,0,0);}
.m81_c00272{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);}
.mdf_c00272{transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);}
.mc9_c00272{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);}
.m99_c00272{transform:matrix(0.215442,0.002370,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215442,0.002370,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215442,0.002370,-0.002750,0.249985,0,0);}
.m5a_c00272{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{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);}
.m11c_c00272{transform:matrix(0.216742,0.002384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216742,0.002384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216742,0.002384,-0.002750,0.249985,0,0);}
.m57_c00272{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);}
.me_c00272{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);}
.m2f_c00272{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_c00272{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);}
.m132_c00272{transform:matrix(0.217672,0.002394,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217672,0.002394,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217672,0.002394,-0.002750,0.249985,0,0);}
.me9_c00272{transform:matrix(0.218252,0.002401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218252,0.002401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218252,0.002401,-0.002750,0.249985,0,0);}
.m5d_c00272{transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.218467,0.002403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218467,0.002403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218467,0.002403,-0.002750,0.249985,0,0);}
.m2d_c00272{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);}
.m1f_c00272{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);}
.ma2_c00272{transform:matrix(0.219787,0.002418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219787,0.002418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219787,0.002418,-0.002750,0.249985,0,0);}
.m6e_c00272{transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.mdb_c00272{transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);}
.me8_c00272{transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219967,0.002420,-0.002750,0.249985,0,0);}
.m1d_c00272{transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{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);}
.mb7_c00272{transform:matrix(0.220877,0.002430,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220877,0.002430,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220877,0.002430,-0.002750,0.249985,0,0);}
.m97_c00272{transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221292,0.002434,-0.002750,0.249985,0,0);}
.mb8_c00272{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);}
.md5_c00272{transform:matrix(0.221987,0.002442,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221987,0.002442,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221987,0.002442,-0.002750,0.249985,0,0);}
.m91_c00272{transform:matrix(0.222157,0.002444,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222157,0.002444,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222157,0.002444,-0.002750,0.249985,0,0);}
.m18_c00272{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{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);}
.m14_c00272{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);}
.m2a_c00272{transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{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);}
.mce_c00272{transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225056,0.002476,-0.002750,0.249985,0,0);}
.m134_c00272{transform:matrix(0.225226,0.002477,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225226,0.002477,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225226,0.002477,-0.002750,0.249985,0,0);}
.m5b_c00272{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);}
.md7_c00272{transform:matrix(0.225371,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225371,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225371,0.002479,-0.002750,0.249985,0,0);}
.mb3_c00272{transform:matrix(0.225801,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225801,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225801,0.002484,-0.002750,0.249985,0,0);}
.m9a_c00272{transform:matrix(0.225851,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225851,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225851,0.002484,-0.002750,0.249985,0,0);}
.m23_c00272{transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225880,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{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);}
.m12e_c00272{transform:matrix(0.226146,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226146,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226146,0.002488,-0.002750,0.249985,0,0);}
.m29_c00272{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);}
.m38_c00272{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);}
.m71_c00272{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);}
.mf8_c00272{transform:matrix(0.228381,0.002512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228381,0.002512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228381,0.002512,-0.002750,0.249985,0,0);}
.m3c_c00272{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);}
.m39_c00272{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);}
.mf4_c00272{transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);}
.m122_c00272{transform:matrix(0.229771,0.002527,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229771,0.002527,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229771,0.002527,-0.002750,0.249985,0,0);}
.m124_c00272{transform:matrix(0.229911,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229911,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229911,0.002529,-0.002750,0.249985,0,0);}
.m8d_c00272{transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229986,0.002530,-0.002750,0.249985,0,0);}
.m1a_c00272{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);}
.m79_c00272{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);}
.m106_c00272{transform:matrix(0.232016,0.002552,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232016,0.002552,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232016,0.002552,-0.002750,0.249985,0,0);}
.m11a_c00272{transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);}
.m27_c00272{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);}
.m9e_c00272{transform:matrix(0.232826,0.002561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232826,0.002561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232826,0.002561,-0.002750,0.249985,0,0);}
.m2c_c00272{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);}
.m1c_c00272{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);}
.m1e_c00272{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);}
.mc_c00272{transform:matrix(0.233338,-0.002333,0.002500,0.249988,0,0);-ms-transform:matrix(0.233338,-0.002333,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233338,-0.002333,0.002500,0.249988,0,0);}
.m101_c00272{transform:matrix(0.233671,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233671,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233671,0.002570,-0.002750,0.249985,0,0);}
.m8b_c00272{transform:matrix(0.234136,0.002575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234136,0.002575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234136,0.002575,-0.002750,0.249985,0,0);}
.md6_c00272{transform:matrix(0.234851,0.002583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234851,0.002583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234851,0.002583,-0.002750,0.249985,0,0);}
.mc3_c00272{transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235306,0.002588,-0.002750,0.249985,0,0);}
.m67_c00272{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);}
.m100_c00272{transform:matrix(0.236721,0.002604,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236721,0.002604,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236721,0.002604,-0.002750,0.249985,0,0);}
.m34_c00272{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{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);}
.m7e_c00272{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);}
.m127_c00272{transform:matrix(0.240210,0.002642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240210,0.002642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240210,0.002642,-0.002750,0.249985,0,0);}
.ma5_c00272{transform:matrix(0.240545,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240545,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240545,0.002646,-0.002750,0.249985,0,0);}
.me2_c00272{transform:matrix(0.241775,0.002660,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241775,0.002660,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241775,0.002660,-0.002750,0.249985,0,0);}
.m113_c00272{transform:matrix(0.241925,0.002661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241925,0.002661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241925,0.002661,-0.002750,0.249985,0,0);}
.mb4_c00272{transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);}
.m83_c00272{transform:matrix(0.249455,0.002744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249455,0.002744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249455,0.002744,-0.002750,0.249985,0,0);}
.mec_c00272{transform:matrix(0.249705,0.002747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249705,0.002747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249705,0.002747,-0.002750,0.249985,0,0);}
.mff_c00272{transform:matrix(0.249885,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249885,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249885,0.002749,-0.002750,0.249985,0,0);}
.m123_c00272{transform:matrix(0.250325,0.002754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250325,0.002754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250325,0.002754,-0.002750,0.249985,0,0);}
.m76_c00272{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);}
.m12f_c00272{transform:matrix(0.255650,0.002812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255650,0.002812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255650,0.002812,-0.002750,0.249985,0,0);}
.m11b_c00272{transform:matrix(0.255725,0.002813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255725,0.002813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255725,0.002813,-0.002750,0.249985,0,0);}
.ma4_c00272{transform:matrix(0.256214,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256214,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256214,0.002818,-0.002750,0.249985,0,0);}
.mad_c00272{transform:matrix(0.256874,0.002826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256874,0.002826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256874,0.002826,-0.002750,0.249985,0,0);}
.m82_c00272{transform:matrix(0.257219,0.002829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257219,0.002829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257219,0.002829,-0.002750,0.249985,0,0);}
.mf3_c00272{transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258449,0.002843,-0.002750,0.249985,0,0);}
.ma7_c00272{transform:matrix(0.258784,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258784,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258784,0.002847,-0.002750,0.249985,0,0);}
.md9_c00272{transform:matrix(0.259699,0.002857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259699,0.002857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259699,0.002857,-0.002750,0.249985,0,0);}
.mc8_c00272{transform:matrix(0.259734,0.002857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259734,0.002857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259734,0.002857,-0.002750,0.249985,0,0);}
.m84_c00272{transform:matrix(0.260319,0.002864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260319,0.002864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260319,0.002864,-0.002750,0.249985,0,0);}
.m7f_c00272{transform:matrix(0.262439,0.002887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262439,0.002887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262439,0.002887,-0.002750,0.249985,0,0);}
.m9d_c00272{transform:matrix(0.268004,0.002948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268004,0.002948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268004,0.002948,-0.002750,0.249985,0,0);}
.m121_c00272{transform:matrix(0.270059,0.002971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270059,0.002971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270059,0.002971,-0.002750,0.249985,0,0);}
.med_c00272{transform:matrix(0.271329,0.002985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271329,0.002985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271329,0.002985,-0.002750,0.249985,0,0);}
.m126_c00272{transform:matrix(0.271524,0.002987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271524,0.002987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271524,0.002987,-0.002750,0.249985,0,0);}
.m12a_c00272{transform:matrix(0.271954,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271954,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271954,0.002991,-0.002750,0.249985,0,0);}
.m135_c00272{transform:matrix(0.273683,0.003011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273683,0.003011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273683,0.003011,-0.002750,0.249985,0,0);}
.mf1_c00272{transform:matrix(0.274348,0.003018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274348,0.003018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274348,0.003018,-0.002750,0.249985,0,0);}
.mf2_c00272{transform:matrix(0.274543,0.003020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274543,0.003020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274543,0.003020,-0.002750,0.249985,0,0);}
.m7_c00272{transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);}
.m111_c00272{transform:matrix(0.276113,0.003037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276113,0.003037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276113,0.003037,-0.002750,0.249985,0,0);}
.maa_c00272{transform:matrix(0.276753,0.003044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276753,0.003044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276753,0.003044,-0.002750,0.249985,0,0);}
.me5_c00272{transform:matrix(0.276978,0.003047,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276978,0.003047,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276978,0.003047,-0.002750,0.249985,0,0);}
.mb6_c00272{transform:matrix(0.277863,0.003056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277863,0.003056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277863,0.003056,-0.002750,0.249985,0,0);}
.mef_c00272{transform:matrix(0.277903,0.003057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277903,0.003057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277903,0.003057,-0.002750,0.249985,0,0);}
.mde_c00272{transform:matrix(0.278123,0.003059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278123,0.003059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278123,0.003059,-0.002750,0.249985,0,0);}
.m25_c00272{transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);}
.m120_c00272{transform:matrix(0.288663,0.003175,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288663,0.003175,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288663,0.003175,-0.002750,0.249985,0,0);}
.me6_c00272{transform:matrix(0.294917,0.003244,-0.002750,0.249985,0,0);-ms-transform:matrix(0.294917,0.003244,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.294917,0.003244,-0.002750,0.249985,0,0);}
.m4c_c00272{transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);}
.meb_c00272{transform:matrix(0.297487,0.003272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297487,0.003272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297487,0.003272,-0.002750,0.249985,0,0);}
.maf_c00272{transform:matrix(0.298782,0.003287,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298782,0.003287,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298782,0.003287,-0.002750,0.249985,0,0);}
.me1_c00272{transform:matrix(0.299022,0.003289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299022,0.003289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299022,0.003289,-0.002750,0.249985,0,0);}
.ma8_c00272{transform:matrix(0.302027,0.003322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302027,0.003322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302027,0.003322,-0.002750,0.249985,0,0);}
.m60_c00272{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{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);}
.m88_c00272{transform:matrix(0.306941,0.003376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306941,0.003376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306941,0.003376,-0.002750,0.249985,0,0);}
.m128_c00272{transform:matrix(0.309026,0.003399,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309026,0.003399,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309026,0.003399,-0.002750,0.249985,0,0);}
.me7_c00272{transform:matrix(0.311681,0.003428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311681,0.003428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311681,0.003428,-0.002750,0.249985,0,0);}
.m78_c00272{transform:matrix(0.311690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311690,0.000000,0.000000,0.250000,0,0);}
.m10f_c00272{transform:matrix(0.312766,0.003440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312766,0.003440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312766,0.003440,-0.002750,0.249985,0,0);}
.m5e_c00272{transform:matrix(0.312935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312935,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315755,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.318584,-0.003186,0.002500,0.249988,0,0);-ms-transform:matrix(0.318584,-0.003186,0.002500,0.249988,0,0);-webkit-transform:matrix(0.318584,-0.003186,0.002500,0.249988,0,0);}
.mee_c00272{transform:matrix(0.319586,0.003515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319586,0.003515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319586,0.003515,-0.002750,0.249985,0,0);}
.mb9_c00272{transform:matrix(0.321806,0.003540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321806,0.003540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321806,0.003540,-0.002750,0.249985,0,0);}
.m104_c00272{transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);}
.m6a_c00272{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.330405,0.003634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330405,0.003634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330405,0.003634,-0.002750,0.249985,0,0);}
.mb_c00272{transform:matrix(0.331783,-0.003318,0.002500,0.249988,0,0);-ms-transform:matrix(0.331783,-0.003318,0.002500,0.249988,0,0);-webkit-transform:matrix(0.331783,-0.003318,0.002500,0.249988,0,0);}
.m9f_c00272{transform:matrix(0.332450,0.003657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332450,0.003657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332450,0.003657,-0.002750,0.249985,0,0);}
.m9_c00272{transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342515,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);}
.md3_c00272{transform:matrix(0.346789,0.003815,-0.002750,0.249985,0,0);-ms-transform:matrix(0.346789,0.003815,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.346789,0.003815,-0.002750,0.249985,0,0);}
.m6_c00272{transform:matrix(0.350890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350890,0.000000,0.000000,0.250000,0,0);}
.m110_c00272{transform:matrix(0.359988,0.003960,-0.002750,0.249985,0,0);-ms-transform:matrix(0.359988,0.003960,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.359988,0.003960,-0.002750,0.249985,0,0);}
.ma1_c00272{transform:matrix(0.361748,0.003979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.361748,0.003979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.361748,0.003979,-0.002750,0.249985,0,0);}
.m11f_c00272{transform:matrix(0.370858,0.004079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370858,0.004079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370858,0.004079,-0.002750,0.249985,0,0);}
.m0_c00272{transform:matrix(0.374260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374260,0.000000,0.000000,0.250000,0,0);}
.m102_c00272{transform:matrix(0.380182,0.004182,-0.002750,0.249985,0,0);-ms-transform:matrix(0.380182,0.004182,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.380182,0.004182,-0.002750,0.249985,0,0);}
.m6f_c00272{transform:matrix(0.388610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388610,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.390825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390825,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.400645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400645,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{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);}
.m6c_c00272{transform:matrix(0.424280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424280,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.433460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433460,0.000000,0.000000,0.250000,0,0);}
.m12d_c00272{transform:matrix(0.433819,0.004772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.433819,0.004772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.433819,0.004772,-0.002750,0.249985,0,0);}
.m12c_c00272{transform:matrix(0.446493,0.004911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.446493,0.004911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.446493,0.004911,-0.002750,0.249985,0,0);}
.m6b_c00272{transform:matrix(0.447765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447765,0.000000,0.000000,0.250000,0,0);}
.m12b_c00272{transform:matrix(0.448418,0.004933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.448418,0.004933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.448418,0.004933,-0.002750,0.249985,0,0);}
.m3_c00272{transform:matrix(0.458870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458870,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.460850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460850,0.000000,0.000000,0.250000,0,0);}
.m136_c00272{transform:matrix(0.478576,0.005264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.478576,0.005264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.478576,0.005264,-0.002750,0.249985,0,0);}
.m131_c00272{transform:matrix(0.482446,0.005307,-0.002750,0.249985,0,0);-ms-transform:matrix(0.482446,0.005307,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.482446,0.005307,-0.002750,0.249985,0,0);}
.m8_c00272{transform:matrix(0.544530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544530,0.000000,0.000000,0.250000,0,0);}
.m133_c00272{transform:matrix(0.597784,0.006576,-0.002750,0.249985,0,0);-ms-transform:matrix(0.597784,0.006576,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.597784,0.006576,-0.002750,0.249985,0,0);}
.m103_c00272{transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.605103,0.006656,-0.002750,0.249985,0,0);}
.m2_c00272{transform:matrix(0.673120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673120,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.758065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758065,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;}
.fs5_c00272{font-size:57.750000px;}
.fs11_c00272{font-size:58.803557px;}
.fs3_c00272{font-size:61.950000px;}
.fs15_c00272{font-size:63.003811px;}
.fs9_c00272{font-size:65.100000px;}
.fsb_c00272{font-size:65.103938px;}
.fsa_c00272{font-size:66.150000px;}
.fs12_c00272{font-size:66.154002px;}
.fs6_c00272{font-size:67.200000px;}
.fs4_c00272{font-size:68.250000px;}
.fs10_c00272{font-size:68.254129px;}
.fsc_c00272{font-size:69.304193px;}
.fs8_c00272{font-size:70.350000px;}
.fsf_c00272{font-size:70.354256px;}
.fs7_c00272{font-size:71.400000px;}
.fsd_c00272{font-size:71.404320px;}
.fs13_c00272{font-size:72.454383px;}
.fse_c00272{font-size:74.554510px;}
.fs14_c00272{font-size:76.654637px;}
.fs0_c00272{font-size:97.650000px;}
.fs1_c00272{font-size:116.550000px;}
.fs2_c00272{font-size:118.655932px;}
.y0_c00272{bottom:0.000000px;}
.yce_c00272{bottom:183.105489px;}
.ycd_c00272{bottom:184.071450px;}
.ycc_c00272{bottom:184.194166px;}
.ycb_c00272{bottom:184.613810px;}
.yca_c00272{bottom:184.990407px;}
.yc9_c00272{bottom:185.463027px;}
.yc8_c00272{bottom:185.748370px;}
.yc7_c00272{bottom:186.127509px;}
.yc6_c00272{bottom:186.571338px;}
.yc5_c00272{bottom:187.087645px;}
.yc4_c00272{bottom:187.250058px;}
.yc3_c00272{bottom:188.597814px;}
.yc2_c00272{bottom:207.086769px;}
.yc1_c00272{bottom:207.240964px;}
.yc0_c00272{bottom:207.382621px;}
.ybf_c00272{bottom:207.855324px;}
.ybe_c00272{bottom:208.431654px;}
.ybd_c00272{bottom:209.024020px;}
.ybc_c00272{bottom:209.551779px;}
.ybb_c00272{bottom:209.854149px;}
.yba_c00272{bottom:211.474462px;}
.yb9_c00272{bottom:211.925007px;}
.yb8_c00272{bottom:212.333446px;}
.yb7_c00272{bottom:212.537436px;}
.yb6_c00272{bottom:212.751373px;}
.yb5_c00272{bottom:229.302270px;}
.yb4_c00272{bottom:230.047369px;}
.yb3_c00272{bottom:230.265043px;}
.yb2_c00272{bottom:230.678277px;}
.yb1_c00272{bottom:231.390885px;}
.yb0_c00272{bottom:231.746958px;}
.yaf_c00272{bottom:232.227684px;}
.yae_c00272{bottom:232.562584px;}
.yad_c00272{bottom:232.951776px;}
.yac_c00272{bottom:233.221314px;}
.yab_c00272{bottom:233.748442px;}
.yaa_c00272{bottom:234.147453px;}
.ya9_c00272{bottom:234.347782px;}
.ya8_c00272{bottom:251.451027px;}
.ya7_c00272{bottom:251.780400px;}
.ya6_c00272{bottom:251.944707px;}
.ya5_c00272{bottom:252.717710px;}
.ya4_c00272{bottom:253.053303px;}
.ya3_c00272{bottom:253.451984px;}
.ya2_c00272{bottom:254.222016px;}
.ya1_c00272{bottom:254.508320px;}
.ya0_c00272{bottom:255.273023px;}
.y9f_c00272{bottom:255.480168px;}
.y9e_c00272{bottom:256.422479px;}
.y9d_c00272{bottom:256.754591px;}
.y9c_c00272{bottom:272.478392px;}
.y9b_c00272{bottom:273.239111px;}
.y9a_c00272{bottom:273.650421px;}
.y99_c00272{bottom:274.159289px;}
.y98_c00272{bottom:274.567844px;}
.y97_c00272{bottom:274.930137px;}
.y96_c00272{bottom:275.652431px;}
.y95_c00272{bottom:275.979087px;}
.y94_c00272{bottom:276.293370px;}
.y93_c00272{bottom:276.809034px;}
.y92_c00272{bottom:277.127078px;}
.y91_c00272{bottom:277.959780px;}
.y90_c00272{bottom:278.269410px;}
.y8f_c00272{bottom:278.632496px;}
.y8e_c00272{bottom:295.123334px;}
.y8d_c00272{bottom:295.814461px;}
.y8c_c00272{bottom:296.056547px;}
.y8b_c00272{bottom:296.438985px;}
.y8a_c00272{bottom:296.850791px;}
.y89_c00272{bottom:297.353041px;}
.y88_c00272{bottom:297.802909px;}
.y87_c00272{bottom:298.564420px;}
.y86_c00272{bottom:299.160219px;}
.y85_c00272{bottom:299.561400px;}
.y84_c00272{bottom:299.967628px;}
.y83_c00272{bottom:300.436816px;}
.y82_c00272{bottom:300.741513px;}
.y81_c00272{bottom:301.312695px;}
.y80_c00272{bottom:318.935638px;}
.y7f_c00272{bottom:319.846543px;}
.y7e_c00272{bottom:319.989075px;}
.y7d_c00272{bottom:320.315995px;}
.y7c_c00272{bottom:320.879490px;}
.y7b_c00272{bottom:321.027962px;}
.y7a_c00272{bottom:321.777263px;}
.y79_c00272{bottom:322.804401px;}
.y78_c00272{bottom:323.027430px;}
.y77_c00272{bottom:323.519337px;}
.y76_c00272{bottom:324.222772px;}
.y75_c00272{bottom:324.533194px;}
.y74_c00272{bottom:342.077904px;}
.y73_c00272{bottom:342.785627px;}
.y72_c00272{bottom:343.065957px;}
.y71_c00272{bottom:343.374223px;}
.y70_c00272{bottom:343.816188px;}
.y6f_c00272{bottom:344.008135px;}
.y6e_c00272{bottom:344.824125px;}
.y6d_c00272{bottom:345.215808px;}
.y6c_c00272{bottom:345.712821px;}
.y6b_c00272{bottom:345.982870px;}
.y6a_c00272{bottom:346.471039px;}
.y69_c00272{bottom:346.810710px;}
.y68_c00272{bottom:346.942938px;}
.y67_c00272{bottom:364.340670px;}
.y66_c00272{bottom:364.851781px;}
.y65_c00272{bottom:365.900962px;}
.y64_c00272{bottom:366.526623px;}
.y63_c00272{bottom:366.804593px;}
.y62_c00272{bottom:366.979989px;}
.y61_c00272{bottom:367.698966px;}
.y60_c00272{bottom:368.421870px;}
.y5f_c00272{bottom:369.209926px;}
.y5e_c00272{bottom:369.572220px;}
.y5d_c00272{bottom:369.893613px;}
.y5c_c00272{bottom:386.947692px;}
.y5b_c00272{bottom:387.400865px;}
.y5a_c00272{bottom:387.652770px;}
.y59_c00272{bottom:388.017734px;}
.y58_c00272{bottom:388.457954px;}
.y57_c00272{bottom:388.864101px;}
.y56_c00272{bottom:389.143726px;}
.y55_c00272{bottom:389.396193px;}
.y54_c00272{bottom:389.583353px;}
.y53_c00272{bottom:390.025916px;}
.y52_c00272{bottom:390.943761px;}
.y51_c00272{bottom:391.299584px;}
.y50_c00272{bottom:391.864477px;}
.y4f_c00272{bottom:392.170536px;}
.y4e_c00272{bottom:409.403052px;}
.y4d_c00272{bottom:410.026749px;}
.y4c_c00272{bottom:410.509317px;}
.y4b_c00272{bottom:410.614759px;}
.y4a_c00272{bottom:411.475212px;}
.y49_c00272{bottom:412.343717px;}
.y48_c00272{bottom:412.650987px;}
.y47_c00272{bottom:413.227994px;}
.y46_c00272{bottom:413.729733px;}
.y45_c00272{bottom:414.221921px;}
.y44_c00272{bottom:414.380802px;}
.y43_c00272{bottom:414.987225px;}
.y42_c00272{bottom:432.157550px;}
.y41_c00272{bottom:433.052286px;}
.y40_c00272{bottom:433.370297px;}
.y3f_c00272{bottom:434.050881px;}
.y3e_c00272{bottom:434.432858px;}
.y3d_c00272{bottom:434.723959px;}
.y3c_c00272{bottom:435.077706px;}
.y3b_c00272{bottom:435.810657px;}
.y3a_c00272{bottom:436.170839px;}
.y39_c00272{bottom:436.675763px;}
.y38_c00272{bottom:437.125746px;}
.y37_c00272{bottom:437.669920px;}
.y36_c00272{bottom:455.493881px;}
.y35_c00272{bottom:455.692734px;}
.y34_c00272{bottom:456.141899px;}
.y33_c00272{bottom:456.639584px;}
.y32_c00272{bottom:456.832197px;}
.y31_c00272{bottom:457.123487px;}
.y30_c00272{bottom:457.971512px;}
.y2f_c00272{bottom:458.278463px;}
.y2e_c00272{bottom:458.586108px;}
.y2d_c00272{bottom:459.171824px;}
.y2c_c00272{bottom:459.538765px;}
.y2b_c00272{bottom:477.967034px;}
.y2a_c00272{bottom:478.308204px;}
.y29_c00272{bottom:478.555126px;}
.y28_c00272{bottom:478.754199px;}
.y27_c00272{bottom:479.421987px;}
.y26_c00272{bottom:479.684205px;}
.y25_c00272{bottom:480.042635px;}
.y24_c00272{bottom:480.473318px;}
.y23_c00272{bottom:480.699582px;}
.y22_c00272{bottom:480.906426px;}
.y21_c00272{bottom:481.741953px;}
.y20_c00272{bottom:482.294571px;}
.y1f_c00272{bottom:482.761554px;}
.y1e_c00272{bottom:500.105095px;}
.y1d_c00272{bottom:500.651344px;}
.y1c_c00272{bottom:501.307781px;}
.y1b_c00272{bottom:501.798160px;}
.y1a_c00272{bottom:502.023996px;}
.y19_c00272{bottom:502.573248px;}
.y18_c00272{bottom:503.131608px;}
.y17_c00272{bottom:503.989823px;}
.y16_c00272{bottom:504.619562px;}
.y15_c00272{bottom:504.904500px;}
.y14_c00272{bottom:539.662500px;}
.y13_c00272{bottom:561.417000px;}
.y12_c00272{bottom:583.524000px;}
.y11_c00272{bottom:607.473000px;}
.y10_c00272{bottom:627.715500px;}
.yf_c00272{bottom:650.488500px;}
.ye_c00272{bottom:672.768000px;}
.yd_c00272{bottom:695.146500px;}
.yc_c00272{bottom:717.474000px;}
.yb_c00272{bottom:739.747500px;}
.ya_c00272{bottom:762.201000px;}
.y9_c00272{bottom:786.169500px;}
.y8_c00272{bottom:807.681000px;}
.y7_c00272{bottom:830.440500px;}
.y3_c00272{bottom:875.613000px;}
.y4_c00272{bottom:876.442995px;}
.y5_c00272{bottom:877.134105px;}
.y6_c00272{bottom:878.748735px;}
.y2_c00272{bottom:918.357000px;}
.y1_c00272{bottom:936.390000px;}
.h7_c00272{height:57.750000px;}
.h13_c00272{height:58.803557px;}
.h5_c00272{height:61.950000px;}
.h17_c00272{height:63.003811px;}
.hb_c00272{height:65.100000px;}
.hd_c00272{height:65.103938px;}
.hc_c00272{height:66.150000px;}
.h14_c00272{height:66.154002px;}
.h8_c00272{height:67.200000px;}
.h6_c00272{height:68.250000px;}
.h12_c00272{height:68.254129px;}
.he_c00272{height:69.304193px;}
.ha_c00272{height:70.350000px;}
.h11_c00272{height:70.354256px;}
.h9_c00272{height:71.400000px;}
.hf_c00272{height:71.404320px;}
.h15_c00272{height:72.454383px;}
.h10_c00272{height:74.554510px;}
.h16_c00272{height:76.654637px;}
.h2_c00272{height:97.650000px;}
.h3_c00272{height:116.550000px;}
.h4_c00272{height:118.655932px;}
.h1_c00272{height:1005.000000px;}
.h0_c00272{height:1005.150000px;}
.w0_c00272{width:702.540000px;}
.w1_c00272{width:702.750000px;}
.x0_c00272{left:0.000000px;}
.x5_c00272{left:19.710000px;}
.xab_c00272{left:35.734481px;}
.x9e_c00272{left:38.471789px;}
.xa3_c00272{left:52.255011px;}
.x82_c00272{left:53.843100px;}
.x83_c00272{left:67.091248px;}
.x75_c00272{left:68.424307px;}
.x8f_c00272{left:69.456117px;}
.x99_c00272{left:70.861335px;}
.x47_c00272{left:72.630000px;}
.x5e_c00272{left:73.783336px;}
.x8b_c00272{left:76.757895px;}
.x45_c00272{left:89.640000px;}
.x36_c00272{left:91.800000px;}
.x1_c00272{left:96.120000px;}
.x7c_c00272{left:98.935447px;}
.x84_c00272{left:101.107128px;}
.x4e_c00272{left:103.140000px;}
.x3a_c00272{left:104.220000px;}
.x48_c00272{left:109.080000px;}
.x24_c00272{left:112.590000px;}
.xe_c00272{left:113.670000px;}
.x4a_c00272{left:115.560000px;}
.x6c_c00272{left:117.314670px;}
.x58_c00272{left:121.347000px;}
.x70_c00272{left:122.969190px;}
.x9a_c00272{left:126.971224px;}
.x49_c00272{left:127.980000px;}
.x7d_c00272{left:129.143617px;}
.x16_c00272{left:135.270000px;}
.x4f_c00272{left:136.890000px;}
.x1c_c00272{left:139.590000px;}
.x4b_c00272{left:142.560000px;}
.x3b_c00272{left:144.180000px;}
.x76_c00272{left:147.601807px;}
.x30_c00272{left:150.120000px;}
.xf_c00272{left:153.630000px;}
.x6d_c00272{left:154.812758px;}
.x53_c00272{left:157.680000px;}
.x1d_c00272{left:160.920000px;}
.x4c_c00272{left:163.350000px;}
.xa4_c00272{left:164.889749px;}
.x5f_c00272{left:166.474336px;}
.x31_c00272{left:170.640000px;}
.x2c_c00272{left:172.530000px;}
.x42_c00272{left:177.660000px;}
.x37_c00272{left:180.360000px;}
.x90_c00272{left:181.506379px;}
.xb0_c00272{left:183.682400px;}
.x46_c00272{left:185.220000px;}
.x9f_c00272{left:186.661422px;}
.x17_c00272{left:188.190000px;}
.xa5_c00272{left:191.848046px;}
.x1e_c00272{left:195.210000px;}
.x3c_c00272{left:197.100000px;}
.x43_c00272{left:200.880000px;}
.x8c_c00272{left:202.326025px;}
.x2_c00272{left:204.930000px;}
.xa_c00272{left:207.684000px;}
.x3_c00272{left:210.870000px;}
.x68_c00272{left:212.357321px;}
.x91_c00272{left:215.299500px;}
.x1f_c00272{left:219.780000px;}
.x4d_c00272{left:220.860000px;}
.x25_c00272{left:223.830000px;}
.x6e_c00272{left:226.912466px;}
.xa6_c00272{left:230.774975px;}
.x10_c00272{left:235.440000px;}
.x2d_c00272{left:238.410000px;}
.x26_c00272{left:240.840000px;}
.x60_c00272{left:242.431337px;}
.x18_c00272{left:247.050000px;}
.x92_c00272{left:248.770137px;}
.x3d_c00272{left:253.800000px;}
.x2e_c00272{left:255.960000px;}
.x61_c00272{left:261.235337px;}
.x77_c00272{left:263.389807px;}
.x85_c00272{left:265.828443px;}
.x50_c00272{left:267.840000px;}
.x11_c00272{left:270.540000px;}
.x4_c00272{left:271.620000px;}
.x32_c00272{left:275.940000px;}
.xac_c00272{left:277.161324px;}
.x20_c00272{left:278.640000px;}
.x62_c00272{left:281.804836px;}
.x27_c00272{left:284.850000px;}
.x51_c00272{left:286.470000px;}
.x2f_c00272{left:288.360000px;}
.xb_c00272{left:290.683500px;}
.x9b_c00272{left:292.032409px;}
.x54_c00272{left:293.220000px;}
.x3e_c00272{left:295.380000px;}
.x93_c00272{left:298.433092px;}
.x38_c00272{left:300.240000px;}
.x12_c00272{left:301.590000px;}
.x78_c00272{left:303.622807px;}
.x33_c00272{left:305.370000px;}
.x59_c00272{left:307.375500px;}
.x6_c00272{left:309.150000px;}
.xa7_c00272{left:312.287366px;}
.x28_c00272{left:314.280000px;}
.x55_c00272{left:316.440000px;}
.x19_c00272{left:319.680000px;}
.x63_c00272{left:320.957837px;}
.x39_c00272{left:322.920000px;}
.x3f_c00272{left:324.540000px;}
.x21_c00272{left:326.700000px;}
.x7e_c00272{left:329.535406px;}
.x34_c00272{left:333.180000px;}
.x69_c00272{left:340.676142px;}
.x29_c00272{left:341.820000px;}
.x1a_c00272{left:343.710000px;}
.x56_c00272{left:345.600000px;}
.x86_c00272{left:347.373834px;}
.x44_c00272{left:353.700000px;}
.x5a_c00272{left:357.307500px;}
.xc_c00272{left:359.794500px;}
.x94_c00272{left:361.933399px;}
.x1b_c00272{left:363.690000px;}
.x22_c00272{left:365.850000px;}
.x57_c00272{left:369.090000px;}
.xb1_c00272{left:371.921321px;}
.x7_c00272{left:373.410000px;}
.x52_c00272{left:376.380000px;}
.x64_c00272{left:377.380337px;}
.x13_c00272{left:378.540000px;}
.x8d_c00272{left:381.364062px;}
.x2a_c00272{left:389.070000px;}
.x23_c00272{left:391.230000px;}
.x6a_c00272{left:394.350314px;}
.xad_c00272{left:395.705021px;}
.x14_c00272{left:399.060000px;}
.xb2_c00272{left:403.293474px;}
.x7f_c00272{left:404.864581px;}
.x79_c00272{left:405.931807px;}
.xa0_c00272{left:408.638364px;}
.x40_c00272{left:409.860000px;}
.x87_c00272{left:410.866543px;}
.xa8_c00272{left:419.259554px;}
.x5b_c00272{left:422.418000px;}
.x15_c00272{left:426.330000px;}
.x8e_c00272{left:428.363050px;}
.x6f_c00272{left:430.215722px;}
.x8_c00272{left:431.460000px;}
.x71_c00272{left:436.833241px;}
.x35_c00272{left:438.750000px;}
.x88_c00272{left:441.618373px;}
.x9c_c00272{left:443.694243px;}
.x72_c00272{left:445.600642px;}
.x41_c00272{left:449.280000px;}
.x65_c00272{left:456.185837px;}
.xa9_c00272{left:460.508499px;}
.x2b_c00272{left:468.450000px;}
.x89_c00272{left:469.694187px;}
.x95_c00272{left:475.561645px;}
.x66_c00272{left:478.633337px;}
.x5c_c00272{left:482.094000px;}
.xae_c00272{left:483.161564px;}
.x73_c00272{left:485.788197px;}
.x80_c00272{left:492.334624px;}
.xaf_c00272{left:494.948432px;}
.x6b_c00272{left:499.657140px;}
.x7a_c00272{left:502.030808px;}
.x96_c00272{left:507.464799px;}
.x67_c00272{left:509.648837px;}
.xa1_c00272{left:519.375569px;}
.xd_c00272{left:521.257500px;}
.x97_c00272{left:527.699584px;}
.xb3_c00272{left:528.957588px;}
.x5d_c00272{left:531.753000px;}
.x81_c00272{left:534.980662px;}
.x74_c00272{left:537.714620px;}
.x8a_c00272{left:540.442462px;}
.x9_c00272{left:541.620000px;}
.x7b_c00272{left:543.228308px;}
.xaa_c00272{left:556.898072px;}
.xa2_c00272{left:568.756113px;}
.x9d_c00272{left:583.819709px;}
.x98_c00272{left:585.346957px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.fs5_c00272{font-size:51.333333pt;}
.fs11_c00272{font-size:52.269829pt;}
.fs3_c00272{font-size:55.066667pt;}
.fs15_c00272{font-size:56.003388pt;}
.fs9_c00272{font-size:57.866667pt;}
.fsb_c00272{font-size:57.870167pt;}
.fsa_c00272{font-size:58.800000pt;}
.fs12_c00272{font-size:58.803557pt;}
.fs6_c00272{font-size:59.733333pt;}
.fs4_c00272{font-size:60.666667pt;}
.fs10_c00272{font-size:60.670337pt;}
.fsc_c00272{font-size:61.603727pt;}
.fs8_c00272{font-size:62.533333pt;}
.fsf_c00272{font-size:62.537116pt;}
.fs7_c00272{font-size:63.466667pt;}
.fsd_c00272{font-size:63.470506pt;}
.fs13_c00272{font-size:64.403896pt;}
.fse_c00272{font-size:66.270676pt;}
.fs14_c00272{font-size:68.137455pt;}
.fs0_c00272{font-size:86.800000pt;}
.fs1_c00272{font-size:103.600000pt;}
.fs2_c00272{font-size:105.471940pt;}
.y0_c00272{bottom:0.000000pt;}
.yce_c00272{bottom:162.760435pt;}
.ycd_c00272{bottom:163.619067pt;}
.ycc_c00272{bottom:163.728148pt;}
.ycb_c00272{bottom:164.101164pt;}
.yca_c00272{bottom:164.435917pt;}
.yc9_c00272{bottom:164.856024pt;}
.yc8_c00272{bottom:165.109663pt;}
.yc7_c00272{bottom:165.446675pt;}
.yc6_c00272{bottom:165.841189pt;}
.yc5_c00272{bottom:166.300129pt;}
.yc4_c00272{bottom:166.444496pt;}
.yc3_c00272{bottom:167.642501pt;}
.yc2_c00272{bottom:184.077128pt;}
.yc1_c00272{bottom:184.214191pt;}
.yc0_c00272{bottom:184.340108pt;}
.ybf_c00272{bottom:184.760288pt;}
.ybe_c00272{bottom:185.272581pt;}
.ybd_c00272{bottom:185.799129pt;}
.ybc_c00272{bottom:186.268248pt;}
.ybb_c00272{bottom:186.537021pt;}
.yba_c00272{bottom:187.977300pt;}
.yb9_c00272{bottom:188.377784pt;}
.yb8_c00272{bottom:188.740841pt;}
.yb7_c00272{bottom:188.922165pt;}
.yb6_c00272{bottom:189.112332pt;}
.yb5_c00272{bottom:203.824240pt;}
.yb4_c00272{bottom:204.486551pt;}
.yb3_c00272{bottom:204.680039pt;}
.yb2_c00272{bottom:205.047357pt;}
.yb1_c00272{bottom:205.680787pt;}
.yb0_c00272{bottom:205.997296pt;}
.yaf_c00272{bottom:206.424608pt;}
.yae_c00272{bottom:206.722297pt;}
.yad_c00272{bottom:207.068245pt;}
.yac_c00272{bottom:207.307835pt;}
.yab_c00272{bottom:207.776393pt;}
.yaa_c00272{bottom:208.131069pt;}
.ya9_c00272{bottom:208.309140pt;}
.ya8_c00272{bottom:223.512024pt;}
.ya7_c00272{bottom:223.804800pt;}
.ya6_c00272{bottom:223.950851pt;}
.ya5_c00272{bottom:224.637964pt;}
.ya4_c00272{bottom:224.936269pt;}
.ya3_c00272{bottom:225.290652pt;}
.ya2_c00272{bottom:225.975125pt;}
.ya1_c00272{bottom:226.229617pt;}
.ya0_c00272{bottom:226.909353pt;}
.y9f_c00272{bottom:227.093483pt;}
.y9e_c00272{bottom:227.931092pt;}
.y9d_c00272{bottom:228.226303pt;}
.y9c_c00272{bottom:242.203015pt;}
.y9b_c00272{bottom:242.879209pt;}
.y9a_c00272{bottom:243.244819pt;}
.y99_c00272{bottom:243.697145pt;}
.y98_c00272{bottom:244.060305pt;}
.y97_c00272{bottom:244.382344pt;}
.y96_c00272{bottom:245.024383pt;}
.y95_c00272{bottom:245.314744pt;}
.y94_c00272{bottom:245.594107pt;}
.y93_c00272{bottom:246.052475pt;}
.y92_c00272{bottom:246.335180pt;}
.y91_c00272{bottom:247.075360pt;}
.y90_c00272{bottom:247.350587pt;}
.y8f_c00272{bottom:247.673329pt;}
.y8e_c00272{bottom:262.331852pt;}
.y8d_c00272{bottom:262.946188pt;}
.y8c_c00272{bottom:263.161375pt;}
.y8b_c00272{bottom:263.501320pt;}
.y8a_c00272{bottom:263.867369pt;}
.y89_c00272{bottom:264.313815pt;}
.y88_c00272{bottom:264.713697pt;}
.y87_c00272{bottom:265.390596pt;}
.y86_c00272{bottom:265.920195pt;}
.y85_c00272{bottom:266.276800pt;}
.y84_c00272{bottom:266.637892pt;}
.y83_c00272{bottom:267.054948pt;}
.y82_c00272{bottom:267.325789pt;}
.y81_c00272{bottom:267.833507pt;}
.y80_c00272{bottom:283.498345pt;}
.y7f_c00272{bottom:284.308039pt;}
.y7e_c00272{bottom:284.434733pt;}
.y7d_c00272{bottom:284.725329pt;}
.y7c_c00272{bottom:285.226213pt;}
.y7b_c00272{bottom:285.358188pt;}
.y7a_c00272{bottom:286.024233pt;}
.y79_c00272{bottom:286.937245pt;}
.y78_c00272{bottom:287.135493pt;}
.y77_c00272{bottom:287.572744pt;}
.y76_c00272{bottom:288.198020pt;}
.y75_c00272{bottom:288.473951pt;}
.y74_c00272{bottom:304.069248pt;}
.y73_c00272{bottom:304.698335pt;}
.y72_c00272{bottom:304.947517pt;}
.y71_c00272{bottom:305.221532pt;}
.y70_c00272{bottom:305.614389pt;}
.y6f_c00272{bottom:305.785009pt;}
.y6e_c00272{bottom:306.510333pt;}
.y6d_c00272{bottom:306.858496pt;}
.y6c_c00272{bottom:307.300285pt;}
.y6b_c00272{bottom:307.540329pt;}
.y6a_c00272{bottom:307.974257pt;}
.y69_c00272{bottom:308.276187pt;}
.y68_c00272{bottom:308.393723pt;}
.y67_c00272{bottom:323.858373pt;}
.y66_c00272{bottom:324.312695pt;}
.y65_c00272{bottom:325.245300pt;}
.y64_c00272{bottom:325.801443pt;}
.y63_c00272{bottom:326.048527pt;}
.y62_c00272{bottom:326.204435pt;}
.y61_c00272{bottom:326.843525pt;}
.y60_c00272{bottom:327.486107pt;}
.y5f_c00272{bottom:328.186601pt;}
.y5e_c00272{bottom:328.508640pt;}
.y5d_c00272{bottom:328.794323pt;}
.y5c_c00272{bottom:343.953504pt;}
.y5b_c00272{bottom:344.356324pt;}
.y5a_c00272{bottom:344.580240pt;}
.y59_c00272{bottom:344.904652pt;}
.y58_c00272{bottom:345.295959pt;}
.y57_c00272{bottom:345.656979pt;}
.y56_c00272{bottom:345.905535pt;}
.y55_c00272{bottom:346.129949pt;}
.y54_c00272{bottom:346.296313pt;}
.y53_c00272{bottom:346.689703pt;}
.y52_c00272{bottom:347.505565pt;}
.y51_c00272{bottom:347.821852pt;}
.y50_c00272{bottom:348.323980pt;}
.y4f_c00272{bottom:348.596032pt;}
.y4e_c00272{bottom:363.913824pt;}
.y4d_c00272{bottom:364.468221pt;}
.y4c_c00272{bottom:364.897171pt;}
.y4b_c00272{bottom:364.990897pt;}
.y4a_c00272{bottom:365.755744pt;}
.y49_c00272{bottom:366.527748pt;}
.y48_c00272{bottom:366.800877pt;}
.y47_c00272{bottom:367.313772pt;}
.y46_c00272{bottom:367.759763pt;}
.y45_c00272{bottom:368.197263pt;}
.y44_c00272{bottom:368.338491pt;}
.y43_c00272{bottom:368.877533pt;}
.y42_c00272{bottom:384.140044pt;}
.y41_c00272{bottom:384.935365pt;}
.y40_c00272{bottom:385.218041pt;}
.y3f_c00272{bottom:385.823005pt;}
.y3e_c00272{bottom:386.162540pt;}
.y3d_c00272{bottom:386.421297pt;}
.y3c_c00272{bottom:386.735739pt;}
.y3b_c00272{bottom:387.387251pt;}
.y3a_c00272{bottom:387.707412pt;}
.y39_c00272{bottom:388.156233pt;}
.y38_c00272{bottom:388.556219pt;}
.y37_c00272{bottom:389.039929pt;}
.y36_c00272{bottom:404.883449pt;}
.y35_c00272{bottom:405.060208pt;}
.y34_c00272{bottom:405.459465pt;}
.y33_c00272{bottom:405.901852pt;}
.y32_c00272{bottom:406.073064pt;}
.y31_c00272{bottom:406.331988pt;}
.y30_c00272{bottom:407.085788pt;}
.y2f_c00272{bottom:407.358633pt;}
.y2e_c00272{bottom:407.632096pt;}
.y2d_c00272{bottom:408.152732pt;}
.y2c_c00272{bottom:408.478903pt;}
.y2b_c00272{bottom:424.859585pt;}
.y2a_c00272{bottom:425.162848pt;}
.y29_c00272{bottom:425.382335pt;}
.y28_c00272{bottom:425.559288pt;}
.y27_c00272{bottom:426.152877pt;}
.y26_c00272{bottom:426.385960pt;}
.y25_c00272{bottom:426.704564pt;}
.y24_c00272{bottom:427.087393pt;}
.y23_c00272{bottom:427.288517pt;}
.y22_c00272{bottom:427.472379pt;}
.y21_c00272{bottom:428.215069pt;}
.y20_c00272{bottom:428.706285pt;}
.y1f_c00272{bottom:429.121381pt;}
.y1e_c00272{bottom:444.537863pt;}
.y1d_c00272{bottom:445.023417pt;}
.y1c_c00272{bottom:445.606916pt;}
.y1b_c00272{bottom:446.042809pt;}
.y1a_c00272{bottom:446.243552pt;}
.y19_c00272{bottom:446.731776pt;}
.y18_c00272{bottom:447.228096pt;}
.y17_c00272{bottom:447.990953pt;}
.y16_c00272{bottom:448.550721pt;}
.y15_c00272{bottom:448.804000pt;}
.y14_c00272{bottom:479.700000pt;}
.y13_c00272{bottom:499.037333pt;}
.y12_c00272{bottom:518.688000pt;}
.y11_c00272{bottom:539.976000pt;}
.y10_c00272{bottom:557.969333pt;}
.yf_c00272{bottom:578.212000pt;}
.ye_c00272{bottom:598.016000pt;}
.yd_c00272{bottom:617.908000pt;}
.yc_c00272{bottom:637.754667pt;}
.yb_c00272{bottom:657.553333pt;}
.ya_c00272{bottom:677.512000pt;}
.y9_c00272{bottom:698.817333pt;}
.y8_c00272{bottom:717.938667pt;}
.y7_c00272{bottom:738.169333pt;}
.y3_c00272{bottom:778.322667pt;}
.y4_c00272{bottom:779.060440pt;}
.y5_c00272{bottom:779.674760pt;}
.y6_c00272{bottom:781.109987pt;}
.y2_c00272{bottom:816.317333pt;}
.y1_c00272{bottom:832.346667pt;}
.h7_c00272{height:51.333333pt;}
.h13_c00272{height:52.269829pt;}
.h5_c00272{height:55.066667pt;}
.h17_c00272{height:56.003388pt;}
.hb_c00272{height:57.866667pt;}
.hd_c00272{height:57.870167pt;}
.hc_c00272{height:58.800000pt;}
.h14_c00272{height:58.803557pt;}
.h8_c00272{height:59.733333pt;}
.h6_c00272{height:60.666667pt;}
.h12_c00272{height:60.670337pt;}
.he_c00272{height:61.603727pt;}
.ha_c00272{height:62.533333pt;}
.h11_c00272{height:62.537116pt;}
.h9_c00272{height:63.466667pt;}
.hf_c00272{height:63.470506pt;}
.h15_c00272{height:64.403896pt;}
.h10_c00272{height:66.270676pt;}
.h16_c00272{height:68.137455pt;}
.h2_c00272{height:86.800000pt;}
.h3_c00272{height:103.600000pt;}
.h4_c00272{height:105.471940pt;}
.h1_c00272{height:893.333333pt;}
.h0_c00272{height:893.466667pt;}
.w0_c00272{width:624.480000pt;}
.w1_c00272{width:624.666667pt;}
.x0_c00272{left:0.000000pt;}
.x5_c00272{left:17.520000pt;}
.xab_c00272{left:31.763983pt;}
.x9e_c00272{left:34.197145pt;}
.xa3_c00272{left:46.448899pt;}
.x82_c00272{left:47.860533pt;}
.x83_c00272{left:59.636665pt;}
.x75_c00272{left:60.821607pt;}
.x8f_c00272{left:61.738771pt;}
.x99_c00272{left:62.987853pt;}
.x47_c00272{left:64.560000pt;}
.x5e_c00272{left:65.585188pt;}
.x8b_c00272{left:68.229240pt;}
.x45_c00272{left:79.680000pt;}
.x36_c00272{left:81.600000pt;}
.x1_c00272{left:85.440000pt;}
.x7c_c00272{left:87.942620pt;}
.x84_c00272{left:89.873003pt;}
.x4e_c00272{left:91.680000pt;}
.x3a_c00272{left:92.640000pt;}
.x48_c00272{left:96.960000pt;}
.x24_c00272{left:100.080000pt;}
.xe_c00272{left:101.040000pt;}
.x4a_c00272{left:102.720000pt;}
.x6c_c00272{left:104.279707pt;}
.x58_c00272{left:107.864000pt;}
.x70_c00272{left:109.305947pt;}
.x9a_c00272{left:112.863311pt;}
.x49_c00272{left:113.760000pt;}
.x7d_c00272{left:114.794327pt;}
.x16_c00272{left:120.240000pt;}
.x4f_c00272{left:121.680000pt;}
.x1c_c00272{left:124.080000pt;}
.x4b_c00272{left:126.720000pt;}
.x3b_c00272{left:128.160000pt;}
.x76_c00272{left:131.201607pt;}
.x30_c00272{left:133.440000pt;}
.xf_c00272{left:136.560000pt;}
.x6d_c00272{left:137.611340pt;}
.x53_c00272{left:140.160000pt;}
.x1d_c00272{left:143.040000pt;}
.x4c_c00272{left:145.200000pt;}
.xa4_c00272{left:146.568665pt;}
.x5f_c00272{left:147.977188pt;}
.x31_c00272{left:151.680000pt;}
.x2c_c00272{left:153.360000pt;}
.x42_c00272{left:157.920000pt;}
.x37_c00272{left:160.320000pt;}
.x90_c00272{left:161.339004pt;}
.xb0_c00272{left:163.273244pt;}
.x46_c00272{left:164.640000pt;}
.x9f_c00272{left:165.921264pt;}
.x17_c00272{left:167.280000pt;}
.xa5_c00272{left:170.531596pt;}
.x1e_c00272{left:173.520000pt;}
.x3c_c00272{left:175.200000pt;}
.x43_c00272{left:178.560000pt;}
.x8c_c00272{left:179.845356pt;}
.x2_c00272{left:182.160000pt;}
.xa_c00272{left:184.608000pt;}
.x3_c00272{left:187.440000pt;}
.x68_c00272{left:188.762063pt;}
.x91_c00272{left:191.377333pt;}
.x1f_c00272{left:195.360000pt;}
.x4d_c00272{left:196.320000pt;}
.x25_c00272{left:198.960000pt;}
.x6e_c00272{left:201.699969pt;}
.xa6_c00272{left:205.133311pt;}
.x10_c00272{left:209.280000pt;}
.x2d_c00272{left:211.920000pt;}
.x26_c00272{left:214.080000pt;}
.x60_c00272{left:215.494521pt;}
.x18_c00272{left:219.600000pt;}
.x92_c00272{left:221.129011pt;}
.x3d_c00272{left:225.600000pt;}
.x2e_c00272{left:227.520000pt;}
.x61_c00272{left:232.209188pt;}
.x77_c00272{left:234.124273pt;}
.x85_c00272{left:236.291949pt;}
.x50_c00272{left:238.080000pt;}
.x11_c00272{left:240.480000pt;}
.x4_c00272{left:241.440000pt;}
.x32_c00272{left:245.280000pt;}
.xac_c00272{left:246.365621pt;}
.x20_c00272{left:247.680000pt;}
.x62_c00272{left:250.493188pt;}
.x27_c00272{left:253.200000pt;}
.x51_c00272{left:254.640000pt;}
.x2f_c00272{left:256.320000pt;}
.xb_c00272{left:258.385333pt;}
.x9b_c00272{left:259.584364pt;}
.x54_c00272{left:260.640000pt;}
.x3e_c00272{left:262.560000pt;}
.x93_c00272{left:265.273860pt;}
.x38_c00272{left:266.880000pt;}
.x12_c00272{left:268.080000pt;}
.x78_c00272{left:269.886940pt;}
.x33_c00272{left:271.440000pt;}
.x59_c00272{left:273.222667pt;}
.x6_c00272{left:274.800000pt;}
.xa7_c00272{left:277.588769pt;}
.x28_c00272{left:279.360000pt;}
.x55_c00272{left:281.280000pt;}
.x19_c00272{left:284.160000pt;}
.x63_c00272{left:285.295855pt;}
.x39_c00272{left:287.040000pt;}
.x3f_c00272{left:288.480000pt;}
.x21_c00272{left:290.400000pt;}
.x7e_c00272{left:292.920361pt;}
.x34_c00272{left:296.160000pt;}
.x69_c00272{left:302.823237pt;}
.x29_c00272{left:303.840000pt;}
.x1a_c00272{left:305.520000pt;}
.x56_c00272{left:307.200000pt;}
.x86_c00272{left:308.776741pt;}
.x44_c00272{left:314.400000pt;}
.x5a_c00272{left:317.606667pt;}
.xc_c00272{left:319.817333pt;}
.x94_c00272{left:321.718577pt;}
.x1b_c00272{left:323.280000pt;}
.x22_c00272{left:325.200000pt;}
.x57_c00272{left:328.080000pt;}
.xb1_c00272{left:330.596729pt;}
.x7_c00272{left:331.920000pt;}
.x52_c00272{left:334.560000pt;}
.x64_c00272{left:335.449188pt;}
.x13_c00272{left:336.480000pt;}
.x8d_c00272{left:338.990277pt;}
.x2a_c00272{left:345.840000pt;}
.x23_c00272{left:347.760000pt;}
.x6a_c00272{left:350.533612pt;}
.xad_c00272{left:351.737796pt;}
.x14_c00272{left:354.720000pt;}
.xb2_c00272{left:358.483088pt;}
.x7f_c00272{left:359.879628pt;}
.x79_c00272{left:360.828273pt;}
.xa0_c00272{left:363.234101pt;}
.x40_c00272{left:364.320000pt;}
.x87_c00272{left:365.214705pt;}
.xa8_c00272{left:372.675159pt;}
.x5b_c00272{left:375.482667pt;}
.x15_c00272{left:378.960000pt;}
.x8e_c00272{left:380.767156pt;}
.x6f_c00272{left:382.413975pt;}
.x8_c00272{left:383.520000pt;}
.x71_c00272{left:388.296215pt;}
.x35_c00272{left:390.000000pt;}
.x88_c00272{left:392.549665pt;}
.x9c_c00272{left:394.394883pt;}
.x72_c00272{left:396.089460pt;}
.x41_c00272{left:399.360000pt;}
.x65_c00272{left:405.498521pt;}
.xa9_c00272{left:409.340888pt;}
.x2b_c00272{left:416.400000pt;}
.x89_c00272{left:417.505944pt;}
.x95_c00272{left:422.721463pt;}
.x66_c00272{left:425.451855pt;}
.x5c_c00272{left:428.528000pt;}
.xae_c00272{left:429.476945pt;}
.x73_c00272{left:431.811731pt;}
.x80_c00272{left:437.630777pt;}
.xaf_c00272{left:439.954161pt;}
.x6b_c00272{left:444.139680pt;}
.x7a_c00272{left:446.249607pt;}
.x96_c00272{left:451.079821pt;}
.x67_c00272{left:453.021188pt;}
.xa1_c00272{left:461.667172pt;}
.xd_c00272{left:463.340000pt;}
.x97_c00272{left:469.066297pt;}
.xb3_c00272{left:470.184523pt;}
.x5d_c00272{left:472.669333pt;}
.x81_c00272{left:475.538367pt;}
.x74_c00272{left:477.968551pt;}
.x8a_c00272{left:480.393300pt;}
.x9_c00272{left:481.440000pt;}
.x7b_c00272{left:482.869607pt;}
.xaa_c00272{left:495.020508pt;}
.xa2_c00272{left:505.560989pt;}
.x9d_c00272{left:518.950852pt;}
.x98_c00272{left:520.308407pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m4_c00273{transform:matrix(0.019822,-0.000337,0.004249,0.249964,0,0);-ms-transform:matrix(0.019822,-0.000337,0.004249,0.249964,0,0);-webkit-transform:matrix(0.019822,-0.000337,0.004249,0.249964,0,0);}
.m9_c00273{transform:matrix(0.060291,-0.001025,0.004249,0.249964,0,0);-ms-transform:matrix(0.060291,-0.001025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.060291,-0.001025,0.004249,0.249964,0,0);}
.m148_c00273{transform:matrix(0.076728,-0.000537,0.001750,0.249994,0,0);-ms-transform:matrix(0.076728,-0.000537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.076728,-0.000537,0.001750,0.249994,0,0);}
.m54_c00273{transform:matrix(0.095472,-0.001241,0.003250,0.249979,0,0);-ms-transform:matrix(0.095472,-0.001241,0.003250,0.249979,0,0);-webkit-transform:matrix(0.095472,-0.001241,0.003250,0.249979,0,0);}
.m37_c00273{transform:matrix(0.097697,-0.001270,0.003250,0.249979,0,0);-ms-transform:matrix(0.097697,-0.001270,0.003250,0.249979,0,0);-webkit-transform:matrix(0.097697,-0.001270,0.003250,0.249979,0,0);}
.m5b_c00273{transform:matrix(0.100307,-0.001304,0.003250,0.249979,0,0);-ms-transform:matrix(0.100307,-0.001304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.100307,-0.001304,0.003250,0.249979,0,0);}
.m85_c00273{transform:matrix(0.103111,-0.001340,0.003250,0.249979,0,0);-ms-transform:matrix(0.103111,-0.001340,0.003250,0.249979,0,0);-webkit-transform:matrix(0.103111,-0.001340,0.003250,0.249979,0,0);}
.mb9_c00273{transform:matrix(0.121020,-0.001573,0.003250,0.249979,0,0);-ms-transform:matrix(0.121020,-0.001573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.121020,-0.001573,0.003250,0.249979,0,0);}
.m11e_c00273{transform:matrix(0.131849,-0.001714,0.003250,0.249979,0,0);-ms-transform:matrix(0.131849,-0.001714,0.003250,0.249979,0,0);-webkit-transform:matrix(0.131849,-0.001714,0.003250,0.249979,0,0);}
.m120_c00273{transform:matrix(0.145468,-0.001891,0.003250,0.249979,0,0);-ms-transform:matrix(0.145468,-0.001891,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145468,-0.001891,0.003250,0.249979,0,0);}
.m7b_c00273{transform:matrix(0.147013,-0.001911,0.003250,0.249979,0,0);-ms-transform:matrix(0.147013,-0.001911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147013,-0.001911,0.003250,0.249979,0,0);}
.m141_c00273{transform:matrix(0.147026,-0.001029,0.001750,0.249994,0,0);-ms-transform:matrix(0.147026,-0.001029,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147026,-0.001029,0.001750,0.249994,0,0);}
.m8b_c00273{transform:matrix(0.150282,-0.001954,0.003250,0.249979,0,0);-ms-transform:matrix(0.150282,-0.001954,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150282,-0.001954,0.003250,0.249979,0,0);}
.m2f_c00273{transform:matrix(0.150687,-0.001959,0.003250,0.249979,0,0);-ms-transform:matrix(0.150687,-0.001959,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150687,-0.001959,0.003250,0.249979,0,0);}
.mb6_c00273{transform:matrix(0.150817,-0.001961,0.003250,0.249979,0,0);-ms-transform:matrix(0.150817,-0.001961,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150817,-0.001961,0.003250,0.249979,0,0);}
.m9e_c00273{transform:matrix(0.151527,-0.001970,0.003250,0.249979,0,0);-ms-transform:matrix(0.151527,-0.001970,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151527,-0.001970,0.003250,0.249979,0,0);}
.m74_c00273{transform:matrix(0.153477,-0.001995,0.003250,0.249979,0,0);-ms-transform:matrix(0.153477,-0.001995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153477,-0.001995,0.003250,0.249979,0,0);}
.m75_c00273{transform:matrix(0.153617,-0.001997,0.003250,0.249979,0,0);-ms-transform:matrix(0.153617,-0.001997,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153617,-0.001997,0.003250,0.249979,0,0);}
.ma4_c00273{transform:matrix(0.158117,-0.002056,0.003250,0.249979,0,0);-ms-transform:matrix(0.158117,-0.002056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158117,-0.002056,0.003250,0.249979,0,0);}
.me8_c00273{transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);-ms-transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);}
.m22_c00273{transform:matrix(0.159896,-0.002079,0.003250,0.249979,0,0);-ms-transform:matrix(0.159896,-0.002079,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159896,-0.002079,0.003250,0.249979,0,0);}
.mb7_c00273{transform:matrix(0.160646,-0.002088,0.003250,0.249979,0,0);-ms-transform:matrix(0.160646,-0.002088,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160646,-0.002088,0.003250,0.249979,0,0);}
.m118_c00273{transform:matrix(0.161701,-0.002102,0.003250,0.249979,0,0);-ms-transform:matrix(0.161701,-0.002102,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161701,-0.002102,0.003250,0.249979,0,0);}
.m110_c00273{transform:matrix(0.161986,-0.002106,0.003250,0.249979,0,0);-ms-transform:matrix(0.161986,-0.002106,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161986,-0.002106,0.003250,0.249979,0,0);}
.m59_c00273{transform:matrix(0.163221,-0.002122,0.003250,0.249979,0,0);-ms-transform:matrix(0.163221,-0.002122,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163221,-0.002122,0.003250,0.249979,0,0);}
.ma9_c00273{transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);-ms-transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);}
.m153_c00273{transform:matrix(0.163481,-0.001144,0.001750,0.249994,0,0);-ms-transform:matrix(0.163481,-0.001144,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163481,-0.001144,0.001750,0.249994,0,0);}
.mb4_c00273{transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);-ms-transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);}
.m11_c00273{transform:matrix(0.164776,-0.002142,0.003250,0.249979,0,0);-ms-transform:matrix(0.164776,-0.002142,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164776,-0.002142,0.003250,0.249979,0,0);}
.m46_c00273{transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);-ms-transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165086,-0.002146,0.003250,0.249979,0,0);}
.m11b_c00273{transform:matrix(0.165106,-0.002146,0.003250,0.249979,0,0);-ms-transform:matrix(0.165106,-0.002146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165106,-0.002146,0.003250,0.249979,0,0);}
.m52_c00273{transform:matrix(0.165156,-0.002147,0.003250,0.249979,0,0);-ms-transform:matrix(0.165156,-0.002147,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165156,-0.002147,0.003250,0.249979,0,0);}
.mc2_c00273{transform:matrix(0.165511,-0.002152,0.003250,0.249979,0,0);-ms-transform:matrix(0.165511,-0.002152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165511,-0.002152,0.003250,0.249979,0,0);}
.m6f_c00273{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);}
.m6a_c00273{transform:matrix(0.166386,-0.002163,0.003250,0.249979,0,0);-ms-transform:matrix(0.166386,-0.002163,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166386,-0.002163,0.003250,0.249979,0,0);}
.m91_c00273{transform:matrix(0.167526,-0.002178,0.003250,0.249979,0,0);-ms-transform:matrix(0.167526,-0.002178,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167526,-0.002178,0.003250,0.249979,0,0);}
.mcc_c00273{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);}
.m116_c00273{transform:matrix(0.168686,-0.002193,0.003250,0.249979,0,0);-ms-transform:matrix(0.168686,-0.002193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168686,-0.002193,0.003250,0.249979,0,0);}
.m3b_c00273{transform:matrix(0.169271,-0.002201,0.003250,0.249979,0,0);-ms-transform:matrix(0.169271,-0.002201,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169271,-0.002201,0.003250,0.249979,0,0);}
.m45_c00273{transform:matrix(0.169276,-0.002201,0.003250,0.249979,0,0);-ms-transform:matrix(0.169276,-0.002201,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169276,-0.002201,0.003250,0.249979,0,0);}
.m160_c00273{transform:matrix(0.170551,-0.001194,0.001750,0.249994,0,0);-ms-transform:matrix(0.170551,-0.001194,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170551,-0.001194,0.001750,0.249994,0,0);}
.m9d_c00273{transform:matrix(0.170791,-0.002220,0.003250,0.249979,0,0);-ms-transform:matrix(0.170791,-0.002220,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170791,-0.002220,0.003250,0.249979,0,0);}
.m7a_c00273{transform:matrix(0.171066,-0.002224,0.003250,0.249979,0,0);-ms-transform:matrix(0.171066,-0.002224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171066,-0.002224,0.003250,0.249979,0,0);}
.ma3_c00273{transform:matrix(0.171106,-0.002224,0.003250,0.249979,0,0);-ms-transform:matrix(0.171106,-0.002224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171106,-0.002224,0.003250,0.249979,0,0);}
.m4e_c00273{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);}
.mcb_c00273{transform:matrix(0.172545,-0.002243,0.003250,0.249979,0,0);-ms-transform:matrix(0.172545,-0.002243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172545,-0.002243,0.003250,0.249979,0,0);}
.mc5_c00273{transform:matrix(0.172575,-0.002243,0.003250,0.249979,0,0);-ms-transform:matrix(0.172575,-0.002243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172575,-0.002243,0.003250,0.249979,0,0);}
.mb0_c00273{transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);}
.md1_c00273{transform:matrix(0.173010,-0.002249,0.003250,0.249979,0,0);-ms-transform:matrix(0.173010,-0.002249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173010,-0.002249,0.003250,0.249979,0,0);}
.m9a_c00273{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);}
.mb5_c00273{transform:matrix(0.173295,-0.002253,0.003250,0.249979,0,0);-ms-transform:matrix(0.173295,-0.002253,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173295,-0.002253,0.003250,0.249979,0,0);}
.m27_c00273{transform:matrix(0.173915,-0.002261,0.003250,0.249979,0,0);-ms-transform:matrix(0.173915,-0.002261,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173915,-0.002261,0.003250,0.249979,0,0);}
.m119_c00273{transform:matrix(0.174040,-0.002263,0.003250,0.249979,0,0);-ms-transform:matrix(0.174040,-0.002263,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174040,-0.002263,0.003250,0.249979,0,0);}
.m7c_c00273{transform:matrix(0.175035,-0.002275,0.003250,0.249979,0,0);-ms-transform:matrix(0.175035,-0.002275,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175035,-0.002275,0.003250,0.249979,0,0);}
.m51_c00273{transform:matrix(0.175645,-0.002283,0.003250,0.249979,0,0);-ms-transform:matrix(0.175645,-0.002283,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175645,-0.002283,0.003250,0.249979,0,0);}
.m161_c00273{transform:matrix(0.175656,-0.001230,0.001750,0.249994,0,0);-ms-transform:matrix(0.175656,-0.001230,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175656,-0.001230,0.001750,0.249994,0,0);}
.mbc_c00273{transform:matrix(0.175940,-0.002287,0.003250,0.249979,0,0);-ms-transform:matrix(0.175940,-0.002287,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175940,-0.002287,0.003250,0.249979,0,0);}
.m10d_c00273{transform:matrix(0.176455,-0.002294,0.003250,0.249979,0,0);-ms-transform:matrix(0.176455,-0.002294,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176455,-0.002294,0.003250,0.249979,0,0);}
.mf_c00273{transform:matrix(0.176480,-0.002294,0.003250,0.249979,0,0);-ms-transform:matrix(0.176480,-0.002294,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176480,-0.002294,0.003250,0.249979,0,0);}
.mfc_c00273{transform:matrix(0.176520,-0.002295,0.003250,0.249979,0,0);-ms-transform:matrix(0.176520,-0.002295,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176520,-0.002295,0.003250,0.249979,0,0);}
.m15b_c00273{transform:matrix(0.176736,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176736,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176736,-0.001237,0.001750,0.249994,0,0);}
.m28_c00273{transform:matrix(0.176810,-0.002299,0.003250,0.249979,0,0);-ms-transform:matrix(0.176810,-0.002299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176810,-0.002299,0.003250,0.249979,0,0);}
.m38_c00273{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);}
.m3d_c00273{transform:matrix(0.177225,-0.002304,0.003250,0.249979,0,0);-ms-transform:matrix(0.177225,-0.002304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177225,-0.002304,0.003250,0.249979,0,0);}
.m36_c00273{transform:matrix(0.177250,-0.002304,0.003250,0.249979,0,0);-ms-transform:matrix(0.177250,-0.002304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177250,-0.002304,0.003250,0.249979,0,0);}
.m5e_c00273{transform:matrix(0.177430,-0.002307,0.003250,0.249979,0,0);-ms-transform:matrix(0.177430,-0.002307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177430,-0.002307,0.003250,0.249979,0,0);}
.m165_c00273{transform:matrix(0.177816,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177816,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177816,-0.001245,0.001750,0.249994,0,0);}
.m9f_c00273{transform:matrix(0.178120,-0.002316,0.003250,0.249979,0,0);-ms-transform:matrix(0.178120,-0.002316,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178120,-0.002316,0.003250,0.249979,0,0);}
.me4_c00273{transform:matrix(0.178345,-0.002318,0.003250,0.249979,0,0);-ms-transform:matrix(0.178345,-0.002318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178345,-0.002318,0.003250,0.249979,0,0);}
.m15a_c00273{transform:matrix(0.178421,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178421,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178421,-0.001249,0.001750,0.249994,0,0);}
.m11d_c00273{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);}
.m4b_c00273{transform:matrix(0.179065,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179065,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179065,-0.002328,0.003250,0.249979,0,0);}
.m6_c00273{transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);-ms-transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);}
.m15_c00273{transform:matrix(0.179800,-0.002337,0.003250,0.249979,0,0);-ms-transform:matrix(0.179800,-0.002337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179800,-0.002337,0.003250,0.249979,0,0);}
.mdd_c00273{transform:matrix(0.180075,-0.002341,0.003250,0.249979,0,0);-ms-transform:matrix(0.180075,-0.002341,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180075,-0.002341,0.003250,0.249979,0,0);}
.m8c_c00273{transform:matrix(0.180230,-0.002343,0.003250,0.249979,0,0);-ms-transform:matrix(0.180230,-0.002343,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180230,-0.002343,0.003250,0.249979,0,0);}
.m6d_c00273{transform:matrix(0.180485,-0.002346,0.003250,0.249979,0,0);-ms-transform:matrix(0.180485,-0.002346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180485,-0.002346,0.003250,0.249979,0,0);}
.m1c_c00273{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);}
.m13_c00273{transform:matrix(0.181490,-0.002359,0.003250,0.249979,0,0);-ms-transform:matrix(0.181490,-0.002359,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181490,-0.002359,0.003250,0.249979,0,0);}
.m156_c00273{transform:matrix(0.181556,-0.001271,0.001750,0.249994,0,0);-ms-transform:matrix(0.181556,-0.001271,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181556,-0.001271,0.001750,0.249994,0,0);}
.m7d_c00273{transform:matrix(0.181605,-0.002361,0.003250,0.249979,0,0);-ms-transform:matrix(0.181605,-0.002361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181605,-0.002361,0.003250,0.249979,0,0);}
.m2e_c00273{transform:matrix(0.181630,-0.002361,0.003250,0.249979,0,0);-ms-transform:matrix(0.181630,-0.002361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181630,-0.002361,0.003250,0.249979,0,0);}
.m89_c00273{transform:matrix(0.181760,-0.002363,0.003250,0.249979,0,0);-ms-transform:matrix(0.181760,-0.002363,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181760,-0.002363,0.003250,0.249979,0,0);}
.m47_c00273{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);}
.m1a_c00273{transform:matrix(0.182355,-0.002371,0.003250,0.249979,0,0);-ms-transform:matrix(0.182355,-0.002371,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182355,-0.002371,0.003250,0.249979,0,0);}
.m1e_c00273{transform:matrix(0.183010,-0.002379,0.003250,0.249979,0,0);-ms-transform:matrix(0.183010,-0.002379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183010,-0.002379,0.003250,0.249979,0,0);}
.m62_c00273{transform:matrix(0.183699,-0.002388,0.003250,0.249979,0,0);-ms-transform:matrix(0.183699,-0.002388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183699,-0.002388,0.003250,0.249979,0,0);}
.m140_c00273{transform:matrix(0.183745,-0.001286,0.001750,0.249994,0,0);-ms-transform:matrix(0.183745,-0.001286,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183745,-0.001286,0.001750,0.249994,0,0);}
.me1_c00273{transform:matrix(0.184019,-0.002392,0.003250,0.249979,0,0);-ms-transform:matrix(0.184019,-0.002392,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184019,-0.002392,0.003250,0.249979,0,0);}
.mf4_c00273{transform:matrix(0.184439,-0.002398,0.003250,0.249979,0,0);-ms-transform:matrix(0.184439,-0.002398,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184439,-0.002398,0.003250,0.249979,0,0);}
.m50_c00273{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);}
.m76_c00273{transform:matrix(0.184814,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184814,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184814,-0.002403,0.003250,0.249979,0,0);}
.m19_c00273{transform:matrix(0.184919,-0.002404,0.003250,0.249979,0,0);-ms-transform:matrix(0.184919,-0.002404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184919,-0.002404,0.003250,0.249979,0,0);}
.m39_c00273{transform:matrix(0.185129,-0.002407,0.003250,0.249979,0,0);-ms-transform:matrix(0.185129,-0.002407,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185129,-0.002407,0.003250,0.249979,0,0);}
.mbe_c00273{transform:matrix(0.185144,-0.002407,0.003250,0.249979,0,0);-ms-transform:matrix(0.185144,-0.002407,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185144,-0.002407,0.003250,0.249979,0,0);}
.m49_c00273{transform:matrix(0.185629,-0.002413,0.003250,0.249979,0,0);-ms-transform:matrix(0.185629,-0.002413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185629,-0.002413,0.003250,0.249979,0,0);}
.m4d_c00273{transform:matrix(0.186169,-0.002420,0.003250,0.249979,0,0);-ms-transform:matrix(0.186169,-0.002420,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186169,-0.002420,0.003250,0.249979,0,0);}
.m3a_c00273{transform:matrix(0.186209,-0.002421,0.003250,0.249979,0,0);-ms-transform:matrix(0.186209,-0.002421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186209,-0.002421,0.003250,0.249979,0,0);}
.md0_c00273{transform:matrix(0.186239,-0.002421,0.003250,0.249979,0,0);-ms-transform:matrix(0.186239,-0.002421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186239,-0.002421,0.003250,0.249979,0,0);}
.mbd_c00273{transform:matrix(0.186294,-0.002422,0.003250,0.249979,0,0);-ms-transform:matrix(0.186294,-0.002422,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186294,-0.002422,0.003250,0.249979,0,0);}
.md5_c00273{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);}
.ma7_c00273{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);}
.m8a_c00273{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);}
.m128_c00273{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);}
.m71_c00273{transform:matrix(0.187899,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187899,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187899,-0.002443,0.003250,0.249979,0,0);}
.mb1_c00273{transform:matrix(0.187934,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187934,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187934,-0.002443,0.003250,0.249979,0,0);}
.mbb_c00273{transform:matrix(0.187944,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187944,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187944,-0.002443,0.003250,0.249979,0,0);}
.m92_c00273{transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);}
.m5f_c00273{transform:matrix(0.188449,-0.002450,0.003250,0.249979,0,0);-ms-transform:matrix(0.188449,-0.002450,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188449,-0.002450,0.003250,0.249979,0,0);}
.m11f_c00273{transform:matrix(0.188889,-0.002456,0.003250,0.249979,0,0);-ms-transform:matrix(0.188889,-0.002456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188889,-0.002456,0.003250,0.249979,0,0);}
.m2c_c00273{transform:matrix(0.189224,-0.002460,0.003250,0.249979,0,0);-ms-transform:matrix(0.189224,-0.002460,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189224,-0.002460,0.003250,0.249979,0,0);}
.mce_c00273{transform:matrix(0.189999,-0.002470,0.003250,0.249979,0,0);-ms-transform:matrix(0.189999,-0.002470,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189999,-0.002470,0.003250,0.249979,0,0);}
.m1f_c00273{transform:matrix(0.190224,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190224,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190224,-0.002473,0.003250,0.249979,0,0);}
.m64_c00273{transform:matrix(0.190244,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190244,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190244,-0.002473,0.003250,0.249979,0,0);}
.m87_c00273{transform:matrix(0.190324,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190324,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190324,-0.002474,0.003250,0.249979,0,0);}
.m157_c00273{transform:matrix(0.190375,-0.001333,0.001750,0.249994,0,0);-ms-transform:matrix(0.190375,-0.001333,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190375,-0.001333,0.001750,0.249994,0,0);}
.m15c_c00273{transform:matrix(0.190495,-0.001333,0.001750,0.249994,0,0);-ms-transform:matrix(0.190495,-0.001333,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190495,-0.001333,0.001750,0.249994,0,0);}
.mda_c00273{transform:matrix(0.191019,-0.002483,0.003250,0.249979,0,0);-ms-transform:matrix(0.191019,-0.002483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191019,-0.002483,0.003250,0.249979,0,0);}
.m163_c00273{transform:matrix(0.191265,-0.001339,0.001750,0.249994,0,0);-ms-transform:matrix(0.191265,-0.001339,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191265,-0.001339,0.001750,0.249994,0,0);}
.m66_c00273{transform:matrix(0.191279,-0.002487,0.003250,0.249979,0,0);-ms-transform:matrix(0.191279,-0.002487,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191279,-0.002487,0.003250,0.249979,0,0);}
.mb2_c00273{transform:matrix(0.191554,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191554,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191554,-0.002490,0.003250,0.249979,0,0);}
.mff_c00273{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);}
.m162_c00273{transform:matrix(0.191650,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191650,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191650,-0.001342,0.001750,0.249994,0,0);}
.m112_c00273{transform:matrix(0.191844,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191844,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191844,-0.002494,0.003250,0.249979,0,0);}
.m117_c00273{transform:matrix(0.192104,-0.002497,0.003250,0.249979,0,0);-ms-transform:matrix(0.192104,-0.002497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192104,-0.002497,0.003250,0.249979,0,0);}
.mb3_c00273{transform:matrix(0.192129,-0.002498,0.003250,0.249979,0,0);-ms-transform:matrix(0.192129,-0.002498,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192129,-0.002498,0.003250,0.249979,0,0);}
.m31_c00273{transform:matrix(0.192214,-0.002499,0.003250,0.249979,0,0);-ms-transform:matrix(0.192214,-0.002499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192214,-0.002499,0.003250,0.249979,0,0);}
.m21_c00273{transform:matrix(0.192509,-0.002503,0.003250,0.249979,0,0);-ms-transform:matrix(0.192509,-0.002503,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192509,-0.002503,0.003250,0.249979,0,0);}
.m84_c00273{transform:matrix(0.192699,-0.002505,0.003250,0.249979,0,0);-ms-transform:matrix(0.192699,-0.002505,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192699,-0.002505,0.003250,0.249979,0,0);}
.md3_c00273{transform:matrix(0.192784,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192784,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192784,-0.002506,0.003250,0.249979,0,0);}
.ma6_c00273{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);}
.maa_c00273{transform:matrix(0.192974,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.192974,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192974,-0.002509,0.003250,0.249979,0,0);}
.m1b_c00273{transform:matrix(0.193369,-0.002514,0.003250,0.249979,0,0);-ms-transform:matrix(0.193369,-0.002514,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193369,-0.002514,0.003250,0.249979,0,0);}
.m79_c00273{transform:matrix(0.193419,-0.002514,0.003250,0.249979,0,0);-ms-transform:matrix(0.193419,-0.002514,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193419,-0.002514,0.003250,0.249979,0,0);}
.m149_c00273{transform:matrix(0.193595,-0.001355,0.001750,0.249994,0,0);-ms-transform:matrix(0.193595,-0.001355,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193595,-0.001355,0.001750,0.249994,0,0);}
.m32_c00273{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);}
.ma1_c00273{transform:matrix(0.193969,-0.002522,0.003250,0.249979,0,0);-ms-transform:matrix(0.193969,-0.002522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193969,-0.002522,0.003250,0.249979,0,0);}
.m105_c00273{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);}
.mc7_c00273{transform:matrix(0.194349,-0.002527,0.003250,0.249979,0,0);-ms-transform:matrix(0.194349,-0.002527,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194349,-0.002527,0.003250,0.249979,0,0);}
.mcf_c00273{transform:matrix(0.194529,-0.002529,0.003250,0.249979,0,0);-ms-transform:matrix(0.194529,-0.002529,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194529,-0.002529,0.003250,0.249979,0,0);}
.mc4_c00273{transform:matrix(0.195089,-0.002536,0.003250,0.249979,0,0);-ms-transform:matrix(0.195089,-0.002536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195089,-0.002536,0.003250,0.249979,0,0);}
.m30_c00273{transform:matrix(0.195308,-0.002539,0.003250,0.249979,0,0);-ms-transform:matrix(0.195308,-0.002539,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195308,-0.002539,0.003250,0.249979,0,0);}
.m3e_c00273{transform:matrix(0.195553,-0.002542,0.003250,0.249979,0,0);-ms-transform:matrix(0.195553,-0.002542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195553,-0.002542,0.003250,0.249979,0,0);}
.m77_c00273{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);}
.m111_c00273{transform:matrix(0.195738,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195738,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195738,-0.002545,0.003250,0.249979,0,0);}
.mbf_c00273{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);}
.m10b_c00273{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);}
.m93_c00273{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);}
.m13f_c00273{transform:matrix(0.196340,-0.001374,0.001750,0.249994,0,0);-ms-transform:matrix(0.196340,-0.001374,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196340,-0.001374,0.001750,0.249994,0,0);}
.m43_c00273{transform:matrix(0.196573,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196573,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196573,-0.002555,0.003250,0.249979,0,0);}
.mca_c00273{transform:matrix(0.196583,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196583,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196583,-0.002556,0.003250,0.249979,0,0);}
.m26_c00273{transform:matrix(0.196598,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196598,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196598,-0.002556,0.003250,0.249979,0,0);}
.m7f_c00273{transform:matrix(0.197143,-0.002563,0.003250,0.249979,0,0);-ms-transform:matrix(0.197143,-0.002563,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197143,-0.002563,0.003250,0.249979,0,0);}
.ma0_c00273{transform:matrix(0.197288,-0.002565,0.003250,0.249979,0,0);-ms-transform:matrix(0.197288,-0.002565,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197288,-0.002565,0.003250,0.249979,0,0);}
.m82_c00273{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);}
.m4a_c00273{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);}
.m40_c00273{transform:matrix(0.197823,-0.002572,0.003250,0.249979,0,0);-ms-transform:matrix(0.197823,-0.002572,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197823,-0.002572,0.003250,0.249979,0,0);}
.m5d_c00273{transform:matrix(0.198013,-0.002574,0.003250,0.249979,0,0);-ms-transform:matrix(0.198013,-0.002574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198013,-0.002574,0.003250,0.249979,0,0);}
.m23_c00273{transform:matrix(0.198133,-0.002576,0.003250,0.249979,0,0);-ms-transform:matrix(0.198133,-0.002576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198133,-0.002576,0.003250,0.249979,0,0);}
.m94_c00273{transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198198,-0.002577,0.003250,0.249979,0,0);}
.m41_c00273{transform:matrix(0.198403,-0.002579,0.003250,0.249979,0,0);-ms-transform:matrix(0.198403,-0.002579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198403,-0.002579,0.003250,0.249979,0,0);}
.m103_c00273{transform:matrix(0.198508,-0.002581,0.003250,0.249979,0,0);-ms-transform:matrix(0.198508,-0.002581,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198508,-0.002581,0.003250,0.249979,0,0);}
.m16_c00273{transform:matrix(0.198558,-0.002581,0.003250,0.249979,0,0);-ms-transform:matrix(0.198558,-0.002581,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198558,-0.002581,0.003250,0.249979,0,0);}
.m14b_c00273{transform:matrix(0.198660,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198660,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198660,-0.001391,0.001750,0.249994,0,0);}
.mc0_c00273{transform:matrix(0.198963,-0.002587,0.003250,0.249979,0,0);-ms-transform:matrix(0.198963,-0.002587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198963,-0.002587,0.003250,0.249979,0,0);}
.maf_c00273{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);}
.md4_c00273{transform:matrix(0.199138,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199138,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199138,-0.002589,0.003250,0.249979,0,0);}
.m13e_c00273{transform:matrix(0.199160,-0.001394,0.001750,0.249994,0,0);-ms-transform:matrix(0.199160,-0.001394,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199160,-0.001394,0.001750,0.249994,0,0);}
.m155_c00273{transform:matrix(0.199540,-0.001397,0.001750,0.249994,0,0);-ms-transform:matrix(0.199540,-0.001397,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199540,-0.001397,0.001750,0.249994,0,0);}
.mba_c00273{transform:matrix(0.199713,-0.002596,0.003250,0.249979,0,0);-ms-transform:matrix(0.199713,-0.002596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199713,-0.002596,0.003250,0.249979,0,0);}
.mf0_c00273{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);}
.m135_c00273{transform:matrix(0.199833,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199833,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199833,-0.002598,0.003250,0.249979,0,0);}
.m20_c00273{transform:matrix(0.200178,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200178,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200178,-0.002602,0.003250,0.249979,0,0);}
.m113_c00273{transform:matrix(0.200218,-0.002603,0.003250,0.249979,0,0);-ms-transform:matrix(0.200218,-0.002603,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200218,-0.002603,0.003250,0.249979,0,0);}
.m11a_c00273{transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);-ms-transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);}
.mc_c00273{transform:matrix(0.200491,-0.003408,0.004249,0.249964,0,0);-ms-transform:matrix(0.200491,-0.003408,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200491,-0.003408,0.004249,0.249964,0,0);}
.m56_c00273{transform:matrix(0.200778,-0.002610,0.003250,0.249979,0,0);-ms-transform:matrix(0.200778,-0.002610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200778,-0.002610,0.003250,0.249979,0,0);}
.m10c_c00273{transform:matrix(0.200978,-0.002613,0.003250,0.249979,0,0);-ms-transform:matrix(0.200978,-0.002613,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200978,-0.002613,0.003250,0.249979,0,0);}
.m4c_c00273{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);}
.m102_c00273{transform:matrix(0.201703,-0.002622,0.003250,0.249979,0,0);-ms-transform:matrix(0.201703,-0.002622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201703,-0.002622,0.003250,0.249979,0,0);}
.m114_c00273{transform:matrix(0.201723,-0.002622,0.003250,0.249979,0,0);-ms-transform:matrix(0.201723,-0.002622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201723,-0.002622,0.003250,0.249979,0,0);}
.m154_c00273{transform:matrix(0.201985,-0.001414,0.001750,0.249994,0,0);-ms-transform:matrix(0.201985,-0.001414,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201985,-0.001414,0.001750,0.249994,0,0);}
.m10e_c00273{transform:matrix(0.202493,-0.002632,0.003250,0.249979,0,0);-ms-transform:matrix(0.202493,-0.002632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202493,-0.002632,0.003250,0.249979,0,0);}
.m14d_c00273{transform:matrix(0.202685,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202685,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202685,-0.001419,0.001750,0.249994,0,0);}
.m151_c00273{transform:matrix(0.202690,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202690,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202690,-0.001419,0.001750,0.249994,0,0);}
.mc6_c00273{transform:matrix(0.203813,-0.002650,0.003250,0.249979,0,0);-ms-transform:matrix(0.203813,-0.002650,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203813,-0.002650,0.003250,0.249979,0,0);}
.mc8_c00273{transform:matrix(0.204618,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204618,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204618,-0.002660,0.003250,0.249979,0,0);}
.m35_c00273{transform:matrix(0.204903,-0.002664,0.003250,0.249979,0,0);-ms-transform:matrix(0.204903,-0.002664,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204903,-0.002664,0.003250,0.249979,0,0);}
.m6b_c00273{transform:matrix(0.205298,-0.002669,0.003250,0.249979,0,0);-ms-transform:matrix(0.205298,-0.002669,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205298,-0.002669,0.003250,0.249979,0,0);}
.m18_c00273{transform:matrix(0.205513,-0.002672,0.003250,0.249979,0,0);-ms-transform:matrix(0.205513,-0.002672,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205513,-0.002672,0.003250,0.249979,0,0);}
.m48_c00273{transform:matrix(0.206183,-0.002680,0.003250,0.249979,0,0);-ms-transform:matrix(0.206183,-0.002680,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206183,-0.002680,0.003250,0.249979,0,0);}
.m14e_c00273{transform:matrix(0.206415,-0.001445,0.001750,0.249994,0,0);-ms-transform:matrix(0.206415,-0.001445,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206415,-0.001445,0.001750,0.249994,0,0);}
.m2b_c00273{transform:matrix(0.206758,-0.002688,0.003250,0.249979,0,0);-ms-transform:matrix(0.206758,-0.002688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206758,-0.002688,0.003250,0.249979,0,0);}
.mec_c00273{transform:matrix(0.206863,-0.002689,0.003250,0.249979,0,0);-ms-transform:matrix(0.206863,-0.002689,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206863,-0.002689,0.003250,0.249979,0,0);}
.mb8_c00273{transform:matrix(0.207237,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207237,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207237,-0.002694,0.003250,0.249979,0,0);}
.me2_c00273{transform:matrix(0.207342,-0.002695,0.003250,0.249979,0,0);-ms-transform:matrix(0.207342,-0.002695,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207342,-0.002695,0.003250,0.249979,0,0);}
.ma8_c00273{transform:matrix(0.208077,-0.002705,0.003250,0.249979,0,0);-ms-transform:matrix(0.208077,-0.002705,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208077,-0.002705,0.003250,0.249979,0,0);}
.m12d_c00273{transform:matrix(0.208207,-0.002707,0.003250,0.249979,0,0);-ms-transform:matrix(0.208207,-0.002707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208207,-0.002707,0.003250,0.249979,0,0);}
.m130_c00273{transform:matrix(0.208312,-0.002708,0.003250,0.249979,0,0);-ms-transform:matrix(0.208312,-0.002708,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208312,-0.002708,0.003250,0.249979,0,0);}
.m14_c00273{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);}
.md8_c00273{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);}
.mf3_c00273{transform:matrix(0.208677,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208677,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208677,-0.002713,0.003250,0.249979,0,0);}
.m7e_c00273{transform:matrix(0.209067,-0.002718,0.003250,0.249979,0,0);-ms-transform:matrix(0.209067,-0.002718,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209067,-0.002718,0.003250,0.249979,0,0);}
.m15d_c00273{transform:matrix(0.209095,-0.001464,0.001750,0.249994,0,0);-ms-transform:matrix(0.209095,-0.001464,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209095,-0.001464,0.001750,0.249994,0,0);}
.m24_c00273{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);}
.m9b_c00273{transform:matrix(0.209197,-0.002720,0.003250,0.249979,0,0);-ms-transform:matrix(0.209197,-0.002720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209197,-0.002720,0.003250,0.249979,0,0);}
.m78_c00273{transform:matrix(0.209772,-0.002727,0.003250,0.249979,0,0);-ms-transform:matrix(0.209772,-0.002727,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209772,-0.002727,0.003250,0.249979,0,0);}
.m3c_c00273{transform:matrix(0.209787,-0.002727,0.003250,0.249979,0,0);-ms-transform:matrix(0.209787,-0.002727,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209787,-0.002727,0.003250,0.249979,0,0);}
.m121_c00273{transform:matrix(0.210052,-0.002731,0.003250,0.249979,0,0);-ms-transform:matrix(0.210052,-0.002731,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210052,-0.002731,0.003250,0.249979,0,0);}
.m129_c00273{transform:matrix(0.210187,-0.002732,0.003250,0.249979,0,0);-ms-transform:matrix(0.210187,-0.002732,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210187,-0.002732,0.003250,0.249979,0,0);}
.m88_c00273{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);}
.mde_c00273{transform:matrix(0.210537,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210537,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210537,-0.002737,0.003250,0.249979,0,0);}
.m146_c00273{transform:matrix(0.210665,-0.001475,0.001750,0.249994,0,0);-ms-transform:matrix(0.210665,-0.001475,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210665,-0.001475,0.001750,0.249994,0,0);}
.m68_c00273{transform:matrix(0.210932,-0.002742,0.003250,0.249979,0,0);-ms-transform:matrix(0.210932,-0.002742,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210932,-0.002742,0.003250,0.249979,0,0);}
.me9_c00273{transform:matrix(0.211327,-0.002747,0.003250,0.249979,0,0);-ms-transform:matrix(0.211327,-0.002747,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211327,-0.002747,0.003250,0.249979,0,0);}
.m12_c00273{transform:matrix(0.211837,-0.002754,0.003250,0.249979,0,0);-ms-transform:matrix(0.211837,-0.002754,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211837,-0.002754,0.003250,0.249979,0,0);}
.m5a_c00273{transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);}
.m42_c00273{transform:matrix(0.212507,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212507,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212507,-0.002763,0.003250,0.249979,0,0);}
.mf2_c00273{transform:matrix(0.212532,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212532,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212532,-0.002763,0.003250,0.249979,0,0);}
.m14c_c00273{transform:matrix(0.212555,-0.001488,0.001750,0.249994,0,0);-ms-transform:matrix(0.212555,-0.001488,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212555,-0.001488,0.001750,0.249994,0,0);}
.m90_c00273{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);}
.m12f_c00273{transform:matrix(0.212827,-0.002767,0.003250,0.249979,0,0);-ms-transform:matrix(0.212827,-0.002767,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212827,-0.002767,0.003250,0.249979,0,0);}
.m152_c00273{transform:matrix(0.212875,-0.001490,0.001750,0.249994,0,0);-ms-transform:matrix(0.212875,-0.001490,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212875,-0.001490,0.001750,0.249994,0,0);}
.mc3_c00273{transform:matrix(0.212962,-0.002769,0.003250,0.249979,0,0);-ms-transform:matrix(0.212962,-0.002769,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212962,-0.002769,0.003250,0.249979,0,0);}
.m164_c00273{transform:matrix(0.213100,-0.001492,0.001750,0.249994,0,0);-ms-transform:matrix(0.213100,-0.001492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213100,-0.001492,0.001750,0.249994,0,0);}
.m2a_c00273{transform:matrix(0.213592,-0.002777,0.003250,0.249979,0,0);-ms-transform:matrix(0.213592,-0.002777,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213592,-0.002777,0.003250,0.249979,0,0);}
.md7_c00273{transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);-ms-transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);}
.mf7_c00273{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);}
.md9_c00273{transform:matrix(0.215267,-0.002798,0.003250,0.249979,0,0);-ms-transform:matrix(0.215267,-0.002798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215267,-0.002798,0.003250,0.249979,0,0);}
.m143_c00273{transform:matrix(0.215410,-0.001508,0.001750,0.249994,0,0);-ms-transform:matrix(0.215410,-0.001508,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215410,-0.001508,0.001750,0.249994,0,0);}
.m1d_c00273{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);}
.mdb_c00273{transform:matrix(0.215992,-0.002808,0.003250,0.249979,0,0);-ms-transform:matrix(0.215992,-0.002808,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215992,-0.002808,0.003250,0.249979,0,0);}
.m108_c00273{transform:matrix(0.216157,-0.002810,0.003250,0.249979,0,0);-ms-transform:matrix(0.216157,-0.002810,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216157,-0.002810,0.003250,0.249979,0,0);}
.me7_c00273{transform:matrix(0.216782,-0.002818,0.003250,0.249979,0,0);-ms-transform:matrix(0.216782,-0.002818,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216782,-0.002818,0.003250,0.249979,0,0);}
.m44_c00273{transform:matrix(0.217137,-0.002823,0.003250,0.249979,0,0);-ms-transform:matrix(0.217137,-0.002823,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217137,-0.002823,0.003250,0.249979,0,0);}
.me0_c00273{transform:matrix(0.217262,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217262,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217262,-0.002824,0.003250,0.249979,0,0);}
.m159_c00273{transform:matrix(0.217550,-0.001523,0.001750,0.249994,0,0);-ms-transform:matrix(0.217550,-0.001523,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217550,-0.001523,0.001750,0.249994,0,0);}
.m5c_c00273{transform:matrix(0.217637,-0.002829,0.003250,0.249979,0,0);-ms-transform:matrix(0.217637,-0.002829,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217637,-0.002829,0.003250,0.249979,0,0);}
.m158_c00273{transform:matrix(0.218510,-0.001530,0.001750,0.249994,0,0);-ms-transform:matrix(0.218510,-0.001530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218510,-0.001530,0.001750,0.249994,0,0);}
.mf9_c00273{transform:matrix(0.218632,-0.002842,0.003250,0.249979,0,0);-ms-transform:matrix(0.218632,-0.002842,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218632,-0.002842,0.003250,0.249979,0,0);}
.m63_c00273{transform:matrix(0.219046,-0.002848,0.003250,0.249979,0,0);-ms-transform:matrix(0.219046,-0.002848,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219046,-0.002848,0.003250,0.249979,0,0);}
.m70_c00273{transform:matrix(0.219341,-0.002851,0.003250,0.249979,0,0);-ms-transform:matrix(0.219341,-0.002851,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219341,-0.002851,0.003250,0.249979,0,0);}
.m99_c00273{transform:matrix(0.219446,-0.002853,0.003250,0.249979,0,0);-ms-transform:matrix(0.219446,-0.002853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219446,-0.002853,0.003250,0.249979,0,0);}
.m13c_c00273{transform:matrix(0.219610,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219610,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219610,-0.001537,0.001750,0.249994,0,0);}
.m3f_c00273{transform:matrix(0.219816,-0.002858,0.003250,0.249979,0,0);-ms-transform:matrix(0.219816,-0.002858,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219816,-0.002858,0.003250,0.249979,0,0);}
.m10a_c00273{transform:matrix(0.220081,-0.002861,0.003250,0.249979,0,0);-ms-transform:matrix(0.220081,-0.002861,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220081,-0.002861,0.003250,0.249979,0,0);}
.m17_c00273{transform:matrix(0.220361,-0.002865,0.003250,0.249979,0,0);-ms-transform:matrix(0.220361,-0.002865,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220361,-0.002865,0.003250,0.249979,0,0);}
.m65_c00273{transform:matrix(0.221771,-0.002883,0.003250,0.249979,0,0);-ms-transform:matrix(0.221771,-0.002883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221771,-0.002883,0.003250,0.249979,0,0);}
.m53_c00273{transform:matrix(0.222336,-0.002890,0.003250,0.249979,0,0);-ms-transform:matrix(0.222336,-0.002890,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222336,-0.002890,0.003250,0.249979,0,0);}
.mae_c00273{transform:matrix(0.222456,-0.002892,0.003250,0.249979,0,0);-ms-transform:matrix(0.222456,-0.002892,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222456,-0.002892,0.003250,0.249979,0,0);}
.m150_c00273{transform:matrix(0.223140,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223140,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223140,-0.001562,0.001750,0.249994,0,0);}
.m123_c00273{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);}
.mef_c00273{transform:matrix(0.223886,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223886,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223886,-0.002911,0.003250,0.249979,0,0);}
.mad_c00273{transform:matrix(0.223911,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223911,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223911,-0.002911,0.003250,0.249979,0,0);}
.m6c_c00273{transform:matrix(0.224231,-0.002915,0.003250,0.249979,0,0);-ms-transform:matrix(0.224231,-0.002915,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224231,-0.002915,0.003250,0.249979,0,0);}
.m14a_c00273{transform:matrix(0.224544,-0.001572,0.001750,0.249994,0,0);-ms-transform:matrix(0.224544,-0.001572,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224544,-0.001572,0.001750,0.249994,0,0);}
.mc9_c00273{transform:matrix(0.224791,-0.002922,0.003250,0.249979,0,0);-ms-transform:matrix(0.224791,-0.002922,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224791,-0.002922,0.003250,0.249979,0,0);}
.m11c_c00273{transform:matrix(0.225351,-0.002930,0.003250,0.249979,0,0);-ms-transform:matrix(0.225351,-0.002930,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225351,-0.002930,0.003250,0.249979,0,0);}
.me6_c00273{transform:matrix(0.225666,-0.002934,0.003250,0.249979,0,0);-ms-transform:matrix(0.225666,-0.002934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225666,-0.002934,0.003250,0.249979,0,0);}
.mab_c00273{transform:matrix(0.225676,-0.002934,0.003250,0.249979,0,0);-ms-transform:matrix(0.225676,-0.002934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225676,-0.002934,0.003250,0.249979,0,0);}
.m124_c00273{transform:matrix(0.226461,-0.002944,0.003250,0.249979,0,0);-ms-transform:matrix(0.226461,-0.002944,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226461,-0.002944,0.003250,0.249979,0,0);}
.ma2_c00273{transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);-ms-transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);}
.m131_c00273{transform:matrix(0.227531,-0.002958,0.003250,0.249979,0,0);-ms-transform:matrix(0.227531,-0.002958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227531,-0.002958,0.003250,0.249979,0,0);}
.m67_c00273{transform:matrix(0.227656,-0.002960,0.003250,0.249979,0,0);-ms-transform:matrix(0.227656,-0.002960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227656,-0.002960,0.003250,0.249979,0,0);}
.m25_c00273{transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);-ms-transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);}
.m12b_c00273{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);}
.m145_c00273{transform:matrix(0.228039,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.228039,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228039,-0.001596,0.001750,0.249994,0,0);}
.mfe_c00273{transform:matrix(0.228201,-0.002967,0.003250,0.249979,0,0);-ms-transform:matrix(0.228201,-0.002967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228201,-0.002967,0.003250,0.249979,0,0);}
.m72_c00273{transform:matrix(0.228506,-0.002971,0.003250,0.249979,0,0);-ms-transform:matrix(0.228506,-0.002971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228506,-0.002971,0.003250,0.249979,0,0);}
.m134_c00273{transform:matrix(0.228951,-0.002976,0.003250,0.249979,0,0);-ms-transform:matrix(0.228951,-0.002976,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228951,-0.002976,0.003250,0.249979,0,0);}
.m33_c00273{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);}
.m127_c00273{transform:matrix(0.230431,-0.002996,0.003250,0.249979,0,0);-ms-transform:matrix(0.230431,-0.002996,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230431,-0.002996,0.003250,0.249979,0,0);}
.mea_c00273{transform:matrix(0.230855,-0.003001,0.003250,0.249979,0,0);-ms-transform:matrix(0.230855,-0.003001,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230855,-0.003001,0.003250,0.249979,0,0);}
.m115_c00273{transform:matrix(0.231515,-0.003010,0.003250,0.249979,0,0);-ms-transform:matrix(0.231515,-0.003010,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231515,-0.003010,0.003250,0.249979,0,0);}
.m34_c00273{transform:matrix(0.231965,-0.003016,0.003250,0.249979,0,0);-ms-transform:matrix(0.231965,-0.003016,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231965,-0.003016,0.003250,0.249979,0,0);}
.m61_c00273{transform:matrix(0.232830,-0.003027,0.003250,0.249979,0,0);-ms-transform:matrix(0.232830,-0.003027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232830,-0.003027,0.003250,0.249979,0,0);}
.mdc_c00273{transform:matrix(0.233520,-0.003036,0.003250,0.249979,0,0);-ms-transform:matrix(0.233520,-0.003036,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233520,-0.003036,0.003250,0.249979,0,0);}
.m13d_c00273{transform:matrix(0.233559,-0.001635,0.001750,0.249994,0,0);-ms-transform:matrix(0.233559,-0.001635,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233559,-0.001635,0.001750,0.249994,0,0);}
.mdf_c00273{transform:matrix(0.233720,-0.003038,0.003250,0.249979,0,0);-ms-transform:matrix(0.233720,-0.003038,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233720,-0.003038,0.003250,0.249979,0,0);}
.m106_c00273{transform:matrix(0.233925,-0.003041,0.003250,0.249979,0,0);-ms-transform:matrix(0.233925,-0.003041,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233925,-0.003041,0.003250,0.249979,0,0);}
.m2d_c00273{transform:matrix(0.234220,-0.003045,0.003250,0.249979,0,0);-ms-transform:matrix(0.234220,-0.003045,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234220,-0.003045,0.003250,0.249979,0,0);}
.m132_c00273{transform:matrix(0.234590,-0.003050,0.003250,0.249979,0,0);-ms-transform:matrix(0.234590,-0.003050,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234590,-0.003050,0.003250,0.249979,0,0);}
.md6_c00273{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);}
.m81_c00273{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);}
.mb_c00273{transform:matrix(0.237946,-0.004045,0.004249,0.249964,0,0);-ms-transform:matrix(0.237946,-0.004045,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237946,-0.004045,0.004249,0.249964,0,0);}
.md2_c00273{transform:matrix(0.238635,-0.003102,0.003250,0.249979,0,0);-ms-transform:matrix(0.238635,-0.003102,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238635,-0.003102,0.003250,0.249979,0,0);}
.m83_c00273{transform:matrix(0.238730,-0.003103,0.003250,0.249979,0,0);-ms-transform:matrix(0.238730,-0.003103,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238730,-0.003103,0.003250,0.249979,0,0);}
.m147_c00273{transform:matrix(0.239014,-0.001673,0.001750,0.249994,0,0);-ms-transform:matrix(0.239014,-0.001673,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239014,-0.001673,0.001750,0.249994,0,0);}
.m139_c00273{transform:matrix(0.239180,-0.003109,0.003250,0.249979,0,0);-ms-transform:matrix(0.239180,-0.003109,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239180,-0.003109,0.003250,0.249979,0,0);}
.m109_c00273{transform:matrix(0.239475,-0.003113,0.003250,0.249979,0,0);-ms-transform:matrix(0.239475,-0.003113,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239475,-0.003113,0.003250,0.249979,0,0);}
.m12c_c00273{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);}
.mcd_c00273{transform:matrix(0.240140,-0.003122,0.003250,0.249979,0,0);-ms-transform:matrix(0.240140,-0.003122,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240140,-0.003122,0.003250,0.249979,0,0);}
.m104_c00273{transform:matrix(0.240785,-0.003130,0.003250,0.249979,0,0);-ms-transform:matrix(0.240785,-0.003130,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240785,-0.003130,0.003250,0.249979,0,0);}
.m10_c00273{transform:matrix(0.243749,-0.003169,0.003250,0.249979,0,0);-ms-transform:matrix(0.243749,-0.003169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243749,-0.003169,0.003250,0.249979,0,0);}
.m6e_c00273{transform:matrix(0.244179,-0.003174,0.003250,0.249979,0,0);-ms-transform:matrix(0.244179,-0.003174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244179,-0.003174,0.003250,0.249979,0,0);}
.m138_c00273{transform:matrix(0.244424,-0.003178,0.003250,0.249979,0,0);-ms-transform:matrix(0.244424,-0.003178,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244424,-0.003178,0.003250,0.249979,0,0);}
.mee_c00273{transform:matrix(0.244624,-0.003180,0.003250,0.249979,0,0);-ms-transform:matrix(0.244624,-0.003180,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244624,-0.003180,0.003250,0.249979,0,0);}
.m144_c00273{transform:matrix(0.245914,-0.001721,0.001750,0.249994,0,0);-ms-transform:matrix(0.245914,-0.001721,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245914,-0.001721,0.001750,0.249994,0,0);}
.mf1_c00273{transform:matrix(0.246599,-0.003206,0.003250,0.249979,0,0);-ms-transform:matrix(0.246599,-0.003206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246599,-0.003206,0.003250,0.249979,0,0);}
.ma5_c00273{transform:matrix(0.246714,-0.003207,0.003250,0.249979,0,0);-ms-transform:matrix(0.246714,-0.003207,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246714,-0.003207,0.003250,0.249979,0,0);}
.md_c00273{transform:matrix(0.246914,-0.004198,0.004249,0.249964,0,0);-ms-transform:matrix(0.246914,-0.004198,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246914,-0.004198,0.004249,0.249964,0,0);}
.me3_c00273{transform:matrix(0.247929,-0.003223,0.003250,0.249979,0,0);-ms-transform:matrix(0.247929,-0.003223,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247929,-0.003223,0.003250,0.249979,0,0);}
.m15e_c00273{transform:matrix(0.250484,-0.001753,0.001750,0.249994,0,0);-ms-transform:matrix(0.250484,-0.001753,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250484,-0.001753,0.001750,0.249994,0,0);}
.m8e_c00273{transform:matrix(0.251099,-0.003264,0.003250,0.249979,0,0);-ms-transform:matrix(0.251099,-0.003264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251099,-0.003264,0.003250,0.249979,0,0);}
.me5_c00273{transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);-ms-transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251349,-0.003268,0.003250,0.249979,0,0);}
.mfa_c00273{transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);-ms-transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);}
.m13b_c00273{transform:matrix(0.253374,-0.001774,0.001750,0.249994,0,0);-ms-transform:matrix(0.253374,-0.001774,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253374,-0.001774,0.001750,0.249994,0,0);}
.m12e_c00273{transform:matrix(0.254084,-0.003303,0.003250,0.249979,0,0);-ms-transform:matrix(0.254084,-0.003303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254084,-0.003303,0.003250,0.249979,0,0);}
.m4f_c00273{transform:matrix(0.254548,-0.003309,0.003250,0.249979,0,0);-ms-transform:matrix(0.254548,-0.003309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254548,-0.003309,0.003250,0.249979,0,0);}
.m100_c00273{transform:matrix(0.256443,-0.003334,0.003250,0.249979,0,0);-ms-transform:matrix(0.256443,-0.003334,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256443,-0.003334,0.003250,0.249979,0,0);}
.mf6_c00273{transform:matrix(0.256723,-0.003337,0.003250,0.249979,0,0);-ms-transform:matrix(0.256723,-0.003337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256723,-0.003337,0.003250,0.249979,0,0);}
.m96_c00273{transform:matrix(0.259468,-0.003373,0.003250,0.249979,0,0);-ms-transform:matrix(0.259468,-0.003373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259468,-0.003373,0.003250,0.249979,0,0);}
.m8f_c00273{transform:matrix(0.259748,-0.003377,0.003250,0.249979,0,0);-ms-transform:matrix(0.259748,-0.003377,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259748,-0.003377,0.003250,0.249979,0,0);}
.mfb_c00273{transform:matrix(0.260798,-0.003390,0.003250,0.249979,0,0);-ms-transform:matrix(0.260798,-0.003390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260798,-0.003390,0.003250,0.249979,0,0);}
.m95_c00273{transform:matrix(0.261518,-0.003400,0.003250,0.249979,0,0);-ms-transform:matrix(0.261518,-0.003400,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261518,-0.003400,0.003250,0.249979,0,0);}
.med_c00273{transform:matrix(0.261853,-0.003404,0.003250,0.249979,0,0);-ms-transform:matrix(0.261853,-0.003404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261853,-0.003404,0.003250,0.249979,0,0);}
.m107_c00273{transform:matrix(0.264268,-0.003435,0.003250,0.249979,0,0);-ms-transform:matrix(0.264268,-0.003435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264268,-0.003435,0.003250,0.249979,0,0);}
.m101_c00273{transform:matrix(0.264518,-0.003439,0.003250,0.249979,0,0);-ms-transform:matrix(0.264518,-0.003439,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264518,-0.003439,0.003250,0.249979,0,0);}
.m12a_c00273{transform:matrix(0.264983,-0.003445,0.003250,0.249979,0,0);-ms-transform:matrix(0.264983,-0.003445,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264983,-0.003445,0.003250,0.249979,0,0);}
.m142_c00273{transform:matrix(0.268393,-0.001879,0.001750,0.249994,0,0);-ms-transform:matrix(0.268393,-0.001879,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268393,-0.001879,0.001750,0.249994,0,0);}
.m29_c00273{transform:matrix(0.269717,-0.003506,0.003250,0.249979,0,0);-ms-transform:matrix(0.269717,-0.003506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269717,-0.003506,0.003250,0.249979,0,0);}
.m60_c00273{transform:matrix(0.272217,-0.003539,0.003250,0.249979,0,0);-ms-transform:matrix(0.272217,-0.003539,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272217,-0.003539,0.003250,0.249979,0,0);}
.m69_c00273{transform:matrix(0.272347,-0.003541,0.003250,0.249979,0,0);-ms-transform:matrix(0.272347,-0.003541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272347,-0.003541,0.003250,0.249979,0,0);}
.m86_c00273{transform:matrix(0.275922,-0.003587,0.003250,0.249979,0,0);-ms-transform:matrix(0.275922,-0.003587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275922,-0.003587,0.003250,0.249979,0,0);}
.m80_c00273{transform:matrix(0.277587,-0.003609,0.003250,0.249979,0,0);-ms-transform:matrix(0.277587,-0.003609,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277587,-0.003609,0.003250,0.249979,0,0);}
.m13a_c00273{transform:matrix(0.281383,-0.001970,0.001750,0.249994,0,0);-ms-transform:matrix(0.281383,-0.001970,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281383,-0.001970,0.001750,0.249994,0,0);}
.m2_c00273{transform:matrix(0.281759,-0.004790,0.004249,0.249964,0,0);-ms-transform:matrix(0.281759,-0.004790,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281759,-0.004790,0.004249,0.249964,0,0);}
.m57_c00273{transform:matrix(0.284321,-0.003696,0.003250,0.249979,0,0);-ms-transform:matrix(0.284321,-0.003696,0.003250,0.249979,0,0);-webkit-transform:matrix(0.284321,-0.003696,0.003250,0.249979,0,0);}
.mf5_c00273{transform:matrix(0.290140,-0.003772,0.003250,0.249979,0,0);-ms-transform:matrix(0.290140,-0.003772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290140,-0.003772,0.003250,0.249979,0,0);}
.mc1_c00273{transform:matrix(0.291070,-0.003784,0.003250,0.249979,0,0);-ms-transform:matrix(0.291070,-0.003784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.291070,-0.003784,0.003250,0.249979,0,0);}
.m137_c00273{transform:matrix(0.292885,-0.003808,0.003250,0.249979,0,0);-ms-transform:matrix(0.292885,-0.003808,0.003250,0.249979,0,0);-webkit-transform:matrix(0.292885,-0.003808,0.003250,0.249979,0,0);}
.m5_c00273{transform:matrix(0.293448,-0.004989,0.004249,0.249964,0,0);-ms-transform:matrix(0.293448,-0.004989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.293448,-0.004989,0.004249,0.249964,0,0);}
.m126_c00273{transform:matrix(0.294140,-0.003824,0.003250,0.249979,0,0);-ms-transform:matrix(0.294140,-0.003824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.294140,-0.003824,0.003250,0.249979,0,0);}
.m55_c00273{transform:matrix(0.295360,-0.003840,0.003250,0.249979,0,0);-ms-transform:matrix(0.295360,-0.003840,0.003250,0.249979,0,0);-webkit-transform:matrix(0.295360,-0.003840,0.003250,0.249979,0,0);}
.m8d_c00273{transform:matrix(0.296480,-0.003854,0.003250,0.249979,0,0);-ms-transform:matrix(0.296480,-0.003854,0.003250,0.249979,0,0);-webkit-transform:matrix(0.296480,-0.003854,0.003250,0.249979,0,0);}
.m9c_c00273{transform:matrix(0.298300,-0.003878,0.003250,0.249979,0,0);-ms-transform:matrix(0.298300,-0.003878,0.003250,0.249979,0,0);-webkit-transform:matrix(0.298300,-0.003878,0.003250,0.249979,0,0);}
.m0_c00273{transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299365,0.000000,0.000000,0.250000,0,0);}
.meb_c00273{transform:matrix(0.303274,-0.003943,0.003250,0.249979,0,0);-ms-transform:matrix(0.303274,-0.003943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.303274,-0.003943,0.003250,0.249979,0,0);}
.m136_c00273{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);}
.mfd_c00273{transform:matrix(0.305519,-0.003972,0.003250,0.249979,0,0);-ms-transform:matrix(0.305519,-0.003972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305519,-0.003972,0.003250,0.249979,0,0);}
.m122_c00273{transform:matrix(0.305694,-0.003974,0.003250,0.249979,0,0);-ms-transform:matrix(0.305694,-0.003974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305694,-0.003974,0.003250,0.249979,0,0);}
.m98_c00273{transform:matrix(0.316418,-0.004113,0.003250,0.249979,0,0);-ms-transform:matrix(0.316418,-0.004113,0.003250,0.249979,0,0);-webkit-transform:matrix(0.316418,-0.004113,0.003250,0.249979,0,0);}
.m3_c00273{transform:matrix(0.319674,-0.005434,0.004249,0.249964,0,0);-ms-transform:matrix(0.319674,-0.005434,0.004249,0.249964,0,0);-webkit-transform:matrix(0.319674,-0.005434,0.004249,0.249964,0,0);}
.m125_c00273{transform:matrix(0.320903,-0.004172,0.003250,0.249979,0,0);-ms-transform:matrix(0.320903,-0.004172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.320903,-0.004172,0.003250,0.249979,0,0);}
.mac_c00273{transform:matrix(0.328772,-0.004274,0.003250,0.249979,0,0);-ms-transform:matrix(0.328772,-0.004274,0.003250,0.249979,0,0);-webkit-transform:matrix(0.328772,-0.004274,0.003250,0.249979,0,0);}
.m97_c00273{transform:matrix(0.336912,-0.004380,0.003250,0.249979,0,0);-ms-transform:matrix(0.336912,-0.004380,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336912,-0.004380,0.003250,0.249979,0,0);}
.m73_c00273{transform:matrix(0.337561,-0.004388,0.003250,0.249979,0,0);-ms-transform:matrix(0.337561,-0.004388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.337561,-0.004388,0.003250,0.249979,0,0);}
.m14f_c00273{transform:matrix(0.341577,-0.002391,0.001750,0.249994,0,0);-ms-transform:matrix(0.341577,-0.002391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.341577,-0.002391,0.001750,0.249994,0,0);}
.mf8_c00273{transform:matrix(0.354810,-0.004613,0.003250,0.249979,0,0);-ms-transform:matrix(0.354810,-0.004613,0.003250,0.249979,0,0);-webkit-transform:matrix(0.354810,-0.004613,0.003250,0.249979,0,0);}
.m58_c00273{transform:matrix(0.355055,-0.004616,0.003250,0.249979,0,0);-ms-transform:matrix(0.355055,-0.004616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.355055,-0.004616,0.003250,0.249979,0,0);}
.m15f_c00273{transform:matrix(0.369131,-0.002584,0.001750,0.249994,0,0);-ms-transform:matrix(0.369131,-0.002584,0.001750,0.249994,0,0);-webkit-transform:matrix(0.369131,-0.002584,0.001750,0.249994,0,0);}
.m10f_c00273{transform:matrix(0.390452,-0.005076,0.003250,0.249979,0,0);-ms-transform:matrix(0.390452,-0.005076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.390452,-0.005076,0.003250,0.249979,0,0);}
.m1_c00273{transform:matrix(0.418015,-0.007106,0.004249,0.249964,0,0);-ms-transform:matrix(0.418015,-0.007106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.418015,-0.007106,0.004249,0.249964,0,0);}
.m133_c00273{transform:matrix(0.427904,-0.005563,0.003250,0.249979,0,0);-ms-transform:matrix(0.427904,-0.005563,0.003250,0.249979,0,0);-webkit-transform:matrix(0.427904,-0.005563,0.003250,0.249979,0,0);}
.ma_c00273{transform:matrix(0.475886,-0.008090,0.004249,0.249964,0,0);-ms-transform:matrix(0.475886,-0.008090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.475886,-0.008090,0.004249,0.249964,0,0);}
.me_c00273{transform:matrix(0.555825,-0.009449,0.004249,0.249964,0,0);-ms-transform:matrix(0.555825,-0.009449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.555825,-0.009449,0.004249,0.249964,0,0);}
.m8_c00273{transform:matrix(0.586095,-0.009964,0.004249,0.249964,0,0);-ms-transform:matrix(0.586095,-0.009964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.586095,-0.009964,0.004249,0.249964,0,0);}
.m7_c00273{transform:matrix(0.742288,-0.012619,0.004249,0.249964,0,0);-ms-transform:matrix(0.742288,-0.012619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.742288,-0.012619,0.004249,0.249964,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:23.100000px;}
.fs10_c00273{font-size:49.351209px;}
.fsf_c00273{font-size:51.451261px;}
.fs9_c00273{font-size:60.905146px;}
.fs1_c00273{font-size:60.908799px;}
.fse_c00273{font-size:61.955235px;}
.fsc_c00273{font-size:63.005323px;}
.fs7_c00273{font-size:65.105501px;}
.fs5_c00273{font-size:66.155589px;}
.fsb_c00273{font-size:67.205678px;}
.fs3_c00273{font-size:68.255767px;}
.fs8_c00273{font-size:69.305856px;}
.fs4_c00273{font-size:70.355944px;}
.fsa_c00273{font-size:71.406033px;}
.fs6_c00273{font-size:73.506210px;}
.fsd_c00273{font-size:78.756654px;}
.fs2_c00273{font-size:100.814565px;}
.y0_c00273{bottom:0.000000px;}
.y161_c00273{bottom:167.967229px;}
.y160_c00273{bottom:167.967260px;}
.y15d_c00273{bottom:167.967370px;}
.y162_c00273{bottom:167.967399px;}
.y15e_c00273{bottom:167.967870px;}
.y163_c00273{bottom:167.967898px;}
.y15f_c00273{bottom:167.967950px;}
.y167_c00273{bottom:167.968038px;}
.y164_c00273{bottom:167.968198px;}
.y166_c00273{bottom:167.968278px;}
.y165_c00273{bottom:167.968548px;}
.y14e_c00273{bottom:185.219155px;}
.y14f_c00273{bottom:185.587642px;}
.y150_c00273{bottom:185.750182px;}
.y151_c00273{bottom:185.971333px;}
.y152_c00273{bottom:186.173521px;}
.y153_c00273{bottom:186.578002px;}
.y154_c00273{bottom:186.678172px;}
.y155_c00273{bottom:186.950343px;}
.y156_c00273{bottom:187.296192px;}
.y157_c00273{bottom:187.379362px;}
.y158_c00273{bottom:187.475763px;}
.y159_c00273{bottom:187.774247px;}
.y15a_c00273{bottom:187.933122px;}
.y15b_c00273{bottom:188.095914px;}
.y15c_c00273{bottom:188.396256px;}
.y13e_c00273{bottom:203.310000px;}
.y13f_c00273{bottom:203.430971px;}
.y140_c00273{bottom:203.610583px;}
.y141_c00273{bottom:203.826012px;}
.y142_c00273{bottom:204.230503px;}
.y143_c00273{bottom:204.646240px;}
.y144_c00273{bottom:204.867391px;}
.y145_c00273{bottom:204.948357px;}
.y146_c00273{bottom:204.963949px;}
.y147_c00273{bottom:205.179084px;}
.y148_c00273{bottom:205.338159px;}
.y149_c00273{bottom:205.487249px;}
.y14a_c00273{bottom:206.073064px;}
.y14b_c00273{bottom:206.192355px;}
.y14c_c00273{bottom:206.734816px;}
.y14d_c00273{bottom:206.802804px;}
.y134_c00273{bottom:258.332946px;}
.y135_c00273{bottom:259.107624px;}
.y136_c00273{bottom:259.453966px;}
.y137_c00273{bottom:259.686548px;}
.y138_c00273{bottom:259.910776px;}
.y139_c00273{bottom:260.398947px;}
.y13a_c00273{bottom:260.667750px;}
.y13b_c00273{bottom:260.939268px;}
.y13c_c00273{bottom:261.337897px;}
.y13d_c00273{bottom:261.527346px;}
.y132_c00273{bottom:283.362753px;}
.y131_c00273{bottom:283.362932px;}
.y133_c00273{bottom:283.363194px;}
.y12d_c00273{bottom:283.363507px;}
.y130_c00273{bottom:283.363671px;}
.y12c_c00273{bottom:283.363726px;}
.y12e_c00273{bottom:283.363758px;}
.y12f_c00273{bottom:283.363770px;}
.y12b_c00273{bottom:283.363845px;}
.y12a_c00273{bottom:283.363854px;}
.y129_c00273{bottom:283.364594px;}
.y126_c00273{bottom:283.364940px;}
.y127_c00273{bottom:283.365021px;}
.y128_c00273{bottom:283.365272px;}
.y11b_c00273{bottom:306.581508px;}
.y11a_c00273{bottom:306.581587px;}
.y121_c00273{bottom:306.581796px;}
.y123_c00273{bottom:306.581859px;}
.y11f_c00273{bottom:306.582003px;}
.y11c_c00273{bottom:306.582110px;}
.y122_c00273{bottom:306.582209px;}
.y11e_c00273{bottom:306.582282px;}
.y11d_c00273{bottom:306.582291px;}
.y120_c00273{bottom:306.582416px;}
.y124_c00273{bottom:306.582491px;}
.y125_c00273{bottom:306.582962px;}
.y119_c00273{bottom:329.198973px;}
.y112_c00273{bottom:329.199033px;}
.y110_c00273{bottom:329.199081px;}
.y111_c00273{bottom:329.199203px;}
.y118_c00273{bottom:329.199301px;}
.y10f_c00273{bottom:329.199409px;}
.y117_c00273{bottom:329.199559px;}
.y113_c00273{bottom:329.199666px;}
.y115_c00273{bottom:329.199747px;}
.y114_c00273{bottom:329.200006px;}
.y116_c00273{bottom:329.200288px;}
.y10e_c00273{bottom:352.143862px;}
.y10b_c00273{bottom:352.144500px;}
.y10d_c00273{bottom:352.144531px;}
.y107_c00273{bottom:352.144955px;}
.y10a_c00273{bottom:352.145178px;}
.y10c_c00273{bottom:352.145181px;}
.y108_c00273{bottom:352.145207px;}
.y106_c00273{bottom:352.145684px;}
.y109_c00273{bottom:352.145738px;}
.y104_c00273{bottom:352.146011px;}
.y105_c00273{bottom:352.146222px;}
.yf8_c00273{bottom:375.073992px;}
.yf7_c00273{bottom:375.074132px;}
.yf9_c00273{bottom:375.074433px;}
.y103_c00273{bottom:375.074573px;}
.y102_c00273{bottom:375.074742px;}
.yfa_c00273{bottom:375.074964px;}
.y101_c00273{bottom:375.075332px;}
.y100_c00273{bottom:375.075399px;}
.yfb_c00273{bottom:375.075575px;}
.yfe_c00273{bottom:375.075938px;}
.yff_c00273{bottom:375.076128px;}
.yfc_c00273{bottom:375.076266px;}
.yfd_c00273{bottom:375.076577px;}
.yea_c00273{bottom:397.526585px;}
.yec_c00273{bottom:397.527008px;}
.yeb_c00273{bottom:397.527276px;}
.yef_c00273{bottom:397.527510px;}
.yed_c00273{bottom:397.527749px;}
.yee_c00273{bottom:397.528119px;}
.yf0_c00273{bottom:397.528211px;}
.yf4_c00273{bottom:397.528256px;}
.yf3_c00273{bottom:397.528304px;}
.yf6_c00273{bottom:397.528587px;}
.yf1_c00273{bottom:397.528652px;}
.yf2_c00273{bottom:397.528842px;}
.yf5_c00273{bottom:397.528926px;}
.yde_c00273{bottom:418.726922px;}
.ydf_c00273{bottom:419.026092px;}
.ye0_c00273{bottom:419.148032px;}
.ye1_c00273{bottom:419.474391px;}
.ye2_c00273{bottom:419.630780px;}
.ye3_c00273{bottom:420.197741px;}
.ye4_c00273{bottom:420.448649px;}
.ye5_c00273{bottom:420.988443px;}
.ye6_c00273{bottom:421.160873px;}
.ye7_c00273{bottom:421.391171px;}
.ye8_c00273{bottom:421.759550px;}
.ye9_c00273{bottom:421.876923px;}
.ydd_c00273{bottom:443.132709px;}
.ydc_c00273{bottom:443.132939px;}
.ydb_c00273{bottom:443.133677px;}
.yd9_c00273{bottom:443.134115px;}
.yda_c00273{bottom:443.134136px;}
.yd4_c00273{bottom:443.134317px;}
.yd3_c00273{bottom:443.134346px;}
.yd6_c00273{bottom:443.134680px;}
.yd8_c00273{bottom:443.134733px;}
.yd5_c00273{bottom:443.135009px;}
.yd7_c00273{bottom:443.135181px;}
.yd2_c00273{bottom:466.321008px;}
.yd1_c00273{bottom:466.321598px;}
.yd0_c00273{bottom:466.322057px;}
.yce_c00273{bottom:466.322495px;}
.ycd_c00273{bottom:466.322544px;}
.ycf_c00273{bottom:466.322745px;}
.yc7_c00273{bottom:466.323167px;}
.ycc_c00273{bottom:466.323212px;}
.yc8_c00273{bottom:466.323318px;}
.yca_c00273{bottom:466.323320px;}
.ycb_c00273{bottom:466.323401px;}
.yc9_c00273{bottom:466.323909px;}
.yc6_c00273{bottom:489.302480px;}
.yc3_c00273{bottom:489.302756px;}
.yc2_c00273{bottom:489.302795px;}
.yc5_c00273{bottom:489.303149px;}
.yc1_c00273{bottom:489.303344px;}
.yc4_c00273{bottom:489.303407px;}
.yc0_c00273{bottom:489.304013px;}
.ybf_c00273{bottom:489.304241px;}
.ybe_c00273{bottom:489.304400px;}
.ybc_c00273{bottom:489.304767px;}
.ybd_c00273{bottom:489.304899px;}
.yb2_c00273{bottom:511.687973px;}
.ybb_c00273{bottom:511.687983px;}
.yb9_c00273{bottom:511.688111px;}
.yb3_c00273{bottom:511.688204px;}
.yb1_c00273{bottom:511.688231px;}
.yba_c00273{bottom:511.688573px;}
.yb4_c00273{bottom:511.688615px;}
.yb6_c00273{bottom:511.688787px;}
.yb8_c00273{bottom:511.688790px;}
.yb7_c00273{bottom:511.689279px;}
.yb5_c00273{bottom:511.689336px;}
.ya3_c00273{bottom:532.678568px;}
.ya4_c00273{bottom:533.085237px;}
.ya5_c00273{bottom:533.280716px;}
.ya6_c00273{bottom:533.742344px;}
.ya7_c00273{bottom:533.912685px;}
.ya8_c00273{bottom:534.212288px;}
.ya9_c00273{bottom:534.333818px;}
.yaa_c00273{bottom:534.625455px;}
.yab_c00273{bottom:534.793826px;}
.yac_c00273{bottom:535.109547px;}
.yad_c00273{bottom:535.356747px;}
.yae_c00273{bottom:535.510911px;}
.yaf_c00273{bottom:535.833738px;}
.yb0_c00273{bottom:536.128188px;}
.y97_c00273{bottom:555.904556px;}
.y98_c00273{bottom:556.328126px;}
.y99_c00273{bottom:556.687325px;}
.y9a_c00273{bottom:556.952847px;}
.y9b_c00273{bottom:557.102271px;}
.y9c_c00273{bottom:557.420475px;}
.y9d_c00273{bottom:557.581803px;}
.y9e_c00273{bottom:558.141081px;}
.y9f_c00273{bottom:558.270876px;}
.ya0_c00273{bottom:559.063968px;}
.ya1_c00273{bottom:559.250172px;}
.ya2_c00273{bottom:559.589742px;}
.y8d_c00273{bottom:578.573972px;}
.y8e_c00273{bottom:579.149249px;}
.y8f_c00273{bottom:579.506573px;}
.y90_c00273{bottom:579.816249px;}
.y91_c00273{bottom:580.592003px;}
.y92_c00273{bottom:580.864701px;}
.y93_c00273{bottom:581.306574px;}
.y94_c00273{bottom:581.770680px;}
.y95_c00273{bottom:582.804348px;}
.y96_c00273{bottom:583.472403px;}
.y83_c00273{bottom:601.266483px;}
.y84_c00273{bottom:601.767504px;}
.y85_c00273{bottom:602.191349px;}
.y86_c00273{bottom:603.060578px;}
.y87_c00273{bottom:603.427536px;}
.y88_c00273{bottom:604.085915px;}
.y89_c00273{bottom:604.658027px;}
.y8a_c00273{bottom:604.770981px;}
.y8b_c00273{bottom:604.962908px;}
.y8c_c00273{bottom:605.324832px;}
.y77_c00273{bottom:623.677740px;}
.y78_c00273{bottom:623.957066px;}
.y79_c00273{bottom:624.297668px;}
.y7a_c00273{bottom:624.902826px;}
.y7b_c00273{bottom:625.191692px;}
.y7c_c00273{bottom:625.504455px;}
.y7d_c00273{bottom:625.782141px;}
.y7e_c00273{bottom:626.229513px;}
.y7f_c00273{bottom:626.470542px;}
.y80_c00273{bottom:626.786427px;}
.y81_c00273{bottom:627.496230px;}
.y82_c00273{bottom:627.892841px;}
.y6a_c00273{bottom:646.360050px;}
.y6b_c00273{bottom:646.862520px;}
.y6c_c00273{bottom:647.143502px;}
.y6d_c00273{bottom:647.460042px;}
.y6e_c00273{bottom:647.842436px;}
.y6f_c00273{bottom:648.094450px;}
.y70_c00273{bottom:648.501285px;}
.y71_c00273{bottom:649.249411px;}
.y72_c00273{bottom:649.598235px;}
.y73_c00273{bottom:649.975265px;}
.y74_c00273{bottom:650.320986px;}
.y75_c00273{bottom:650.553905px;}
.y76_c00273{bottom:651.099834px;}
.y61_c00273{bottom:669.044175px;}
.y62_c00273{bottom:669.658967px;}
.y63_c00273{bottom:670.244054px;}
.y64_c00273{bottom:670.487205px;}
.y65_c00273{bottom:671.406857px;}
.y66_c00273{bottom:672.057183px;}
.y67_c00273{bottom:672.508320px;}
.y68_c00273{bottom:673.339484px;}
.y69_c00273{bottom:673.692810px;}
.y53_c00273{bottom:691.456790px;}
.y54_c00273{bottom:691.898972px;}
.y55_c00273{bottom:692.225733px;}
.y56_c00273{bottom:692.577669px;}
.y57_c00273{bottom:693.389961px;}
.y58_c00273{bottom:693.531941px;}
.y59_c00273{bottom:693.844350px;}
.y5a_c00273{bottom:694.697534px;}
.y5b_c00273{bottom:695.157480px;}
.y5c_c00273{bottom:695.367144px;}
.y5d_c00273{bottom:695.715570px;}
.y5e_c00273{bottom:696.658083px;}
.y5f_c00273{bottom:696.830970px;}
.y60_c00273{bottom:697.234581px;}
.y48_c00273{bottom:714.679548px;}
.y49_c00273{bottom:715.624665px;}
.y4a_c00273{bottom:716.300897px;}
.y4b_c00273{bottom:716.637794px;}
.y4c_c00273{bottom:717.793222px;}
.y4d_c00273{bottom:718.232916px;}
.y4e_c00273{bottom:718.527521px;}
.y4f_c00273{bottom:719.396243px;}
.y50_c00273{bottom:720.081189px;}
.y51_c00273{bottom:720.323946px;}
.y52_c00273{bottom:720.832919px;}
.y3d_c00273{bottom:737.091587px;}
.y3e_c00273{bottom:737.544513px;}
.y3f_c00273{bottom:738.070292px;}
.y40_c00273{bottom:738.432524px;}
.y41_c00273{bottom:738.903059px;}
.y42_c00273{bottom:740.223072px;}
.y43_c00273{bottom:740.739042px;}
.y44_c00273{bottom:741.339252px;}
.y45_c00273{bottom:741.911421px;}
.y46_c00273{bottom:742.178337px;}
.y47_c00273{bottom:743.016973px;}
.y30_c00273{bottom:759.774883px;}
.y31_c00273{bottom:760.683020px;}
.y32_c00273{bottom:761.067082px;}
.y33_c00273{bottom:761.348565px;}
.y34_c00273{bottom:761.699117px;}
.y35_c00273{bottom:762.665034px;}
.y36_c00273{bottom:763.425069px;}
.y37_c00273{bottom:763.877187px;}
.y38_c00273{bottom:765.339631px;}
.y39_c00273{bottom:765.826841px;}
.y3a_c00273{bottom:766.975909px;}
.y3b_c00273{bottom:767.288720px;}
.y3c_c00273{bottom:767.818251px;}
.y25_c00273{bottom:782.968587px;}
.y26_c00273{bottom:783.740085px;}
.y27_c00273{bottom:784.877500px;}
.y28_c00273{bottom:785.126652px;}
.y29_c00273{bottom:785.396220px;}
.y2a_c00273{bottom:785.744588px;}
.y2b_c00273{bottom:786.639657px;}
.y2c_c00273{bottom:786.980186px;}
.y2d_c00273{bottom:787.366480px;}
.y2e_c00273{bottom:788.268511px;}
.y2f_c00273{bottom:788.758995px;}
.y1b_c00273{bottom:806.210513px;}
.y1c_c00273{bottom:806.867445px;}
.y1d_c00273{bottom:807.476539px;}
.y1e_c00273{bottom:807.939567px;}
.y1f_c00273{bottom:808.655355px;}
.y20_c00273{bottom:808.920831px;}
.y21_c00273{bottom:809.753784px;}
.y22_c00273{bottom:810.213341px;}
.y23_c00273{bottom:811.233491px;}
.y24_c00273{bottom:811.566072px;}
.y10_c00273{bottom:828.345000px;}
.y11_c00273{bottom:828.885364px;}
.y12_c00273{bottom:829.124162px;}
.y13_c00273{bottom:829.390999px;}
.y14_c00273{bottom:829.990800px;}
.y15_c00273{bottom:830.577184px;}
.y16_c00273{bottom:831.434053px;}
.y17_c00273{bottom:832.089858px;}
.y18_c00273{bottom:832.470010px;}
.y19_c00273{bottom:833.494619px;}
.y1a_c00273{bottom:834.171990px;}
.yd_c00273{bottom:875.070173px;}
.ye_c00273{bottom:877.518805px;}
.yf_c00273{bottom:879.848117px;}
.y2_c00273{bottom:935.812500px;}
.y3_c00273{bottom:937.417827px;}
.y4_c00273{bottom:938.504637px;}
.y5_c00273{bottom:939.316327px;}
.y6_c00273{bottom:939.502146px;}
.y7_c00273{bottom:941.147763px;}
.y8_c00273{bottom:941.228190px;}
.y9_c00273{bottom:941.847534px;}
.ya_c00273{bottom:942.461090px;}
.yb_c00273{bottom:943.127481px;}
.yc_c00273{bottom:943.421828px;}
.y1_c00273{bottom:945.000000px;}
.h2_c00273{height:23.100000px;}
.h12_c00273{height:49.351209px;}
.h11_c00273{height:51.451261px;}
.hb_c00273{height:60.905146px;}
.h3_c00273{height:60.908799px;}
.h10_c00273{height:61.955235px;}
.he_c00273{height:63.005323px;}
.h9_c00273{height:65.105501px;}
.h7_c00273{height:66.155589px;}
.hd_c00273{height:67.205678px;}
.h5_c00273{height:68.255767px;}
.ha_c00273{height:69.305856px;}
.h6_c00273{height:70.355944px;}
.hc_c00273{height:71.406033px;}
.h8_c00273{height:73.506210px;}
.hf_c00273{height:78.756654px;}
.h4_c00273{height:100.814565px;}
.h0_c00273{height:1008.450000px;}
.h1_c00273{height:1008.750000px;}
.w0_c00273{width:696.000000px;}
.x0_c00273{left:0.000000px;}
.xa4_c00273{left:146.885331px;}
.x2_c00273{left:153.352500px;}
.x81_c00273{left:156.333428px;}
.x53_c00273{left:157.583265px;}
.xa5_c00273{left:158.765840px;}
.xd_c00273{left:161.279611px;}
.x2b_c00273{left:162.789501px;}
.x5c_c00273{left:164.509256px;}
.x91_c00273{left:166.148943px;}
.xbf_c00273{left:168.753761px;}
.xaf_c00273{left:172.121222px;}
.xb4_c00273{left:181.525500px;}
.x9b_c00273{left:184.147877px;}
.x5d_c00273{left:195.574374px;}
.x33_c00273{left:197.555822px;}
.xb5_c00273{left:198.807000px;}
.xa9_c00273{left:200.075583px;}
.x10_c00273{left:202.935000px;}
.x54_c00273{left:207.775215px;}
.x92_c00273{left:208.780758px;}
.x8b_c00273{left:210.068216px;}
.x97_c00273{left:212.228778px;}
.x2c_c00273{left:213.258225px;}
.x6a_c00273{left:214.751018px;}
.x1a_c00273{left:216.421964px;}
.x4d_c00273{left:218.861285px;}
.x11_c00273{left:221.304000px;}
.x7c_c00273{left:224.377493px;}
.x93_c00273{left:226.123604px;}
.x82_c00273{left:229.509791px;}
.x3c_c00273{left:231.050391px;}
.x5e_c00273{left:233.430344px;}
.x2d_c00273{left:234.607841px;}
.x55_c00273{left:235.851807px;}
.x34_c00273{left:238.000322px;}
.x12_c00273{left:241.830000px;}
.x83_c00273{left:243.550670px;}
.x3_c00273{left:247.783500px;}
.x46_c00273{left:249.161012px;}
.x2e_c00273{left:250.259327px;}
.x1_c00273{left:251.370000px;}
.x9c_c00273{left:253.003499px;}
.x8c_c00273{left:254.082645px;}
.xb6_c00273{left:255.241500px;}
.x7d_c00273{left:258.670284px;}
.x6f_c00273{left:260.902772px;}
.x35_c00273{left:265.864322px;}
.xe_c00273{left:267.717748px;}
.x2f_c00273{left:269.723559px;}
.x4e_c00273{left:272.061669px;}
.x6b_c00273{left:275.291078px;}
.x3d_c00273{left:279.375267px;}
.x84_c00273{left:280.813968px;}
.xb0_c00273{left:282.835860px;}
.xaa_c00273{left:285.672552px;}
.x13_c00273{left:287.968500px;}
.x4f_c00273{left:294.227754px;}
.x7e_c00273{left:297.823895px;}
.xbc_c00273{left:299.225717px;}
.x5f_c00273{left:300.638334px;}
.x36_c00273{left:302.059322px;}
.x3e_c00273{left:303.443955px;}
.x9f_c00273{left:304.578753px;}
.x1b_c00273{left:305.817134px;}
.x22_c00273{left:307.996758px;}
.x4_c00273{left:311.713500px;}
.x70_c00273{left:312.786645px;}
.x75_c00273{left:314.673091px;}
.x98_c00273{left:319.157835px;}
.x30_c00273{left:323.367569px;}
.x23_c00273{left:327.162258px;}
.x56_c00273{left:330.928512px;}
.x14_c00273{left:333.075000px;}
.xab_c00273{left:334.546320px;}
.x76_c00273{left:338.970483px;}
.x8f_c00273{left:341.842877px;}
.x47_c00273{left:346.598012px;}
.x24_c00273{left:347.898258px;}
.x71_c00273{left:352.497219px;}
.x85_c00273{left:357.770975px;}
.x5_c00273{left:359.460000px;}
.x65_c00273{left:363.298323px;}
.x1c_c00273{left:365.493914px;}
.x60_c00273{left:367.574825px;}
.xf_c00273{left:368.990421px;}
.x6_c00273{left:370.390500px;}
.x57_c00273{left:371.686611px;}
.x72_c00273{left:372.754545px;}
.x25_c00273{left:374.695758px;}
.x94_c00273{left:376.228323px;}
.x50_c00273{left:377.895438px;}
.x77_c00273{left:381.866337px;}
.x3f_c00273{left:385.975883px;}
.x1d_c00273{left:387.646206px;}
.x31_c00273{left:390.644181px;}
.xa6_c00273{left:393.683022px;}
.x86_c00273{left:394.764234px;}
.xb1_c00273{left:397.587311px;}
.x15_c00273{left:398.988000px;}
.xc0_c00273{left:401.769174px;}
.x37_c00273{left:403.598822px;}
.x6c_c00273{left:410.819607px;}
.x48_c00273{left:412.227512px;}
.xb7_c00273{left:415.576500px;}
.x40_c00273{left:417.374973px;}
.xa1_c00273{left:420.419064px;}
.xa0_c00273{left:423.389819px;}
.x87_c00273{left:434.998040px;}
.x51_c00273{left:437.037479px;}
.x41_c00273{left:438.421200px;}
.x78_c00273{left:440.768420px;}
.x26_c00273{left:443.547258px;}
.x58_c00273{left:446.430017px;}
.x49_c00273{left:447.608012px;}
.x16_c00273{left:449.434500px;}
.x6d_c00273{left:452.982699px;}
.x7f_c00273{left:455.517032px;}
.x1e_c00273{left:457.028103px;}
.x73_c00273{left:458.881142px;}
.x88_c00273{left:461.999603px;}
.x4a_c00273{left:463.736012px;}
.x79_c00273{left:464.798791px;}
.x7_c00273{left:467.191500px;}
.x27_c00273{left:469.741758px;}
.x8_c00273{left:471.922500px;}
.x61_c00273{left:474.779382px;}
.x66_c00273{left:477.253251px;}
.x17_c00273{left:478.677000px;}
.x59_c00273{left:481.340882px;}
.xbd_c00273{left:485.260217px;}
.x38_c00273{left:489.458822px;}
.x4b_c00273{left:490.538012px;}
.xb8_c00273{left:492.561000px;}
.x89_c00273{left:494.132024px;}
.x1f_c00273{left:495.379110px;}
.x80_c00273{left:497.371110px;}
.x28_c00273{left:499.456758px;}
.x42_c00273{left:500.514401px;}
.xb2_c00273{left:505.555215px;}
.x9_c00273{left:508.354500px;}
.x62_c00273{left:509.926215px;}
.xa2_c00273{left:512.497125px;}
.x95_c00273{left:513.903068px;}
.xa7_c00273{left:517.353426px;}
.x5a_c00273{left:519.113863px;}
.x90_c00273{left:523.027011px;}
.x9d_c00273{left:527.347350px;}
.x39_c00273{left:533.471822px;}
.x9e_c00273{left:538.957820px;}
.x67_c00273{left:540.880566px;}
.xa_c00273{left:544.446000px;}
.x6e_c00273{left:546.921137px;}
.x43_c00273{left:549.394257px;}
.xbe_c00273{left:550.597217px;}
.xac_c00273{left:552.185097px;}
.x3a_c00273{left:554.003822px;}
.x18_c00273{left:557.493000px;}
.x99_c00273{left:559.208895px;}
.x32_c00273{left:562.765488px;}
.x44_c00273{left:566.683023px;}
.x29_c00273{left:568.843758px;}
.x8a_c00273{left:570.278894px;}
.xad_c00273{left:573.247166px;}
.x68_c00273{left:574.719321px;}
.x4c_c00273{left:576.338012px;}
.x9a_c00273{left:577.840535px;}
.x20_c00273{left:580.430222px;}
.xb_c00273{left:583.645500px;}
.x52_c00273{left:585.820359px;}
.x63_c00273{left:588.761310px;}
.xa8_c00273{left:590.258231px;}
.x8d_c00273{left:592.154300px;}
.xb9_c00273{left:593.290500px;}
.x96_c00273{left:599.538756px;}
.xc_c00273{left:600.960000px;}
.x45_c00273{left:603.065055px;}
.x2a_c00273{left:606.573258px;}
.x21_c00273{left:608.206092px;}
.x19_c00273{left:609.598500px;}
.x7a_c00273{left:613.572914px;}
.x69_c00273{left:614.907908px;}
.x8e_c00273{left:617.267051px;}
.x3b_c00273{left:618.514322px;}
.xa3_c00273{left:621.855111px;}
.x74_c00273{left:623.573827px;}
.xb3_c00273{left:628.456809px;}
.x5b_c00273{left:631.469732px;}
.x64_c00273{left:632.772091px;}
.x7b_c00273{left:655.726209px;}
.xae_c00273{left:663.974993px;}
.xba_c00273{left:670.785000px;}
.xbb_c00273{left:680.497500px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs0_c00273{font-size:20.533333pt;}
.fs10_c00273{font-size:43.867741pt;}
.fsf_c00273{font-size:45.734454pt;}
.fs9_c00273{font-size:54.137907pt;}
.fs1_c00273{font-size:54.141155pt;}
.fse_c00273{font-size:55.071320pt;}
.fsc_c00273{font-size:56.004732pt;}
.fs7_c00273{font-size:57.871556pt;}
.fs5_c00273{font-size:58.804968pt;}
.fsb_c00273{font-size:59.738381pt;}
.fs3_c00273{font-size:60.671793pt;}
.fs8_c00273{font-size:61.605205pt;}
.fs4_c00273{font-size:62.538617pt;}
.fsa_c00273{font-size:63.472029pt;}
.fs6_c00273{font-size:65.338854pt;}
.fsd_c00273{font-size:70.005915pt;}
.fs2_c00273{font-size:89.612946pt;}
.y0_c00273{bottom:0.000000pt;}
.y161_c00273{bottom:149.304204pt;}
.y160_c00273{bottom:149.304231pt;}
.y15d_c00273{bottom:149.304329pt;}
.y162_c00273{bottom:149.304355pt;}
.y15e_c00273{bottom:149.304773pt;}
.y163_c00273{bottom:149.304799pt;}
.y15f_c00273{bottom:149.304844pt;}
.y167_c00273{bottom:149.304923pt;}
.y164_c00273{bottom:149.305065pt;}
.y166_c00273{bottom:149.305136pt;}
.y165_c00273{bottom:149.305376pt;}
.y14e_c00273{bottom:164.639249pt;}
.y14f_c00273{bottom:164.966793pt;}
.y150_c00273{bottom:165.111273pt;}
.y151_c00273{bottom:165.307852pt;}
.y152_c00273{bottom:165.487575pt;}
.y153_c00273{bottom:165.847113pt;}
.y154_c00273{bottom:165.936153pt;}
.y155_c00273{bottom:166.178083pt;}
.y156_c00273{bottom:166.485504pt;}
.y157_c00273{bottom:166.559433pt;}
.y158_c00273{bottom:166.645123pt;}
.y159_c00273{bottom:166.910441pt;}
.y15a_c00273{bottom:167.051664pt;}
.y15b_c00273{bottom:167.196368pt;}
.y15c_c00273{bottom:167.463339pt;}
.y13e_c00273{bottom:180.720000pt;}
.y13f_c00273{bottom:180.827529pt;}
.y140_c00273{bottom:180.987185pt;}
.y141_c00273{bottom:181.178677pt;}
.y142_c00273{bottom:181.538225pt;}
.y143_c00273{bottom:181.907769pt;}
.y144_c00273{bottom:182.104348pt;}
.y145_c00273{bottom:182.176317pt;}
.y146_c00273{bottom:182.190177pt;}
.y147_c00273{bottom:182.381408pt;}
.y148_c00273{bottom:182.522808pt;}
.y149_c00273{bottom:182.655332pt;}
.y14a_c00273{bottom:183.176057pt;}
.y14b_c00273{bottom:183.282093pt;}
.y14c_c00273{bottom:183.764281pt;}
.y14d_c00273{bottom:183.824715pt;}
.y134_c00273{bottom:229.629285pt;}
.y135_c00273{bottom:230.317888pt;}
.y136_c00273{bottom:230.625748pt;}
.y137_c00273{bottom:230.832487pt;}
.y138_c00273{bottom:231.031801pt;}
.y139_c00273{bottom:231.465731pt;}
.y13a_c00273{bottom:231.704667pt;}
.y13b_c00273{bottom:231.946016pt;}
.y13c_c00273{bottom:232.300353pt;}
.y13d_c00273{bottom:232.468752pt;}
.y132_c00273{bottom:251.878003pt;}
.y131_c00273{bottom:251.878161pt;}
.y133_c00273{bottom:251.878395pt;}
.y12d_c00273{bottom:251.878673pt;}
.y130_c00273{bottom:251.878819pt;}
.y12c_c00273{bottom:251.878868pt;}
.y12e_c00273{bottom:251.878896pt;}
.y12f_c00273{bottom:251.878907pt;}
.y12b_c00273{bottom:251.878973pt;}
.y12a_c00273{bottom:251.878981pt;}
.y129_c00273{bottom:251.879639pt;}
.y126_c00273{bottom:251.879947pt;}
.y127_c00273{bottom:251.880019pt;}
.y128_c00273{bottom:251.880241pt;}
.y11b_c00273{bottom:272.516896pt;}
.y11a_c00273{bottom:272.516967pt;}
.y121_c00273{bottom:272.517152pt;}
.y123_c00273{bottom:272.517208pt;}
.y11f_c00273{bottom:272.517336pt;}
.y11c_c00273{bottom:272.517431pt;}
.y122_c00273{bottom:272.517519pt;}
.y11e_c00273{bottom:272.517584pt;}
.y11d_c00273{bottom:272.517592pt;}
.y120_c00273{bottom:272.517703pt;}
.y124_c00273{bottom:272.517769pt;}
.y125_c00273{bottom:272.518188pt;}
.y119_c00273{bottom:292.621309pt;}
.y112_c00273{bottom:292.621363pt;}
.y110_c00273{bottom:292.621405pt;}
.y111_c00273{bottom:292.621513pt;}
.y118_c00273{bottom:292.621601pt;}
.y10f_c00273{bottom:292.621697pt;}
.y117_c00273{bottom:292.621831pt;}
.y113_c00273{bottom:292.621925pt;}
.y115_c00273{bottom:292.621997pt;}
.y114_c00273{bottom:292.622228pt;}
.y116_c00273{bottom:292.622479pt;}
.y10e_c00273{bottom:313.016767pt;}
.y10b_c00273{bottom:313.017333pt;}
.y10d_c00273{bottom:313.017361pt;}
.y107_c00273{bottom:313.017737pt;}
.y10a_c00273{bottom:313.017936pt;}
.y10c_c00273{bottom:313.017939pt;}
.y108_c00273{bottom:313.017961pt;}
.y106_c00273{bottom:313.018385pt;}
.y109_c00273{bottom:313.018433pt;}
.y104_c00273{bottom:313.018676pt;}
.y105_c00273{bottom:313.018864pt;}
.yf8_c00273{bottom:333.399104pt;}
.yf7_c00273{bottom:333.399228pt;}
.yf9_c00273{bottom:333.399496pt;}
.y103_c00273{bottom:333.399620pt;}
.y102_c00273{bottom:333.399771pt;}
.yfa_c00273{bottom:333.399968pt;}
.y101_c00273{bottom:333.400295pt;}
.y100_c00273{bottom:333.400355pt;}
.yfb_c00273{bottom:333.400511pt;}
.yfe_c00273{bottom:333.400833pt;}
.yff_c00273{bottom:333.401003pt;}
.yfc_c00273{bottom:333.401125pt;}
.yfd_c00273{bottom:333.401401pt;}
.yea_c00273{bottom:353.356964pt;}
.yec_c00273{bottom:353.357340pt;}
.yeb_c00273{bottom:353.357579pt;}
.yef_c00273{bottom:353.357787pt;}
.yed_c00273{bottom:353.357999pt;}
.yee_c00273{bottom:353.358328pt;}
.yf0_c00273{bottom:353.358409pt;}
.yf4_c00273{bottom:353.358449pt;}
.yf3_c00273{bottom:353.358492pt;}
.yf6_c00273{bottom:353.358744pt;}
.yf1_c00273{bottom:353.358801pt;}
.yf2_c00273{bottom:353.358971pt;}
.yf5_c00273{bottom:353.359045pt;}
.yde_c00273{bottom:372.201708pt;}
.ydf_c00273{bottom:372.467637pt;}
.ye0_c00273{bottom:372.576028pt;}
.ye1_c00273{bottom:372.866125pt;}
.ye2_c00273{bottom:373.005137pt;}
.ye3_c00273{bottom:373.509103pt;}
.ye4_c00273{bottom:373.732132pt;}
.ye5_c00273{bottom:374.211949pt;}
.ye6_c00273{bottom:374.365220pt;}
.ye7_c00273{bottom:374.569929pt;}
.ye8_c00273{bottom:374.897377pt;}
.ye9_c00273{bottom:375.001709pt;}
.ydd_c00273{bottom:393.895741pt;}
.ydc_c00273{bottom:393.895945pt;}
.ydb_c00273{bottom:393.896601pt;}
.yd9_c00273{bottom:393.896991pt;}
.yda_c00273{bottom:393.897009pt;}
.yd4_c00273{bottom:393.897171pt;}
.yd3_c00273{bottom:393.897196pt;}
.yd6_c00273{bottom:393.897493pt;}
.yd8_c00273{bottom:393.897540pt;}
.yd5_c00273{bottom:393.897785pt;}
.yd7_c00273{bottom:393.897939pt;}
.yd2_c00273{bottom:414.507563pt;}
.yd1_c00273{bottom:414.508087pt;}
.yd0_c00273{bottom:414.508495pt;}
.yce_c00273{bottom:414.508884pt;}
.ycd_c00273{bottom:414.508928pt;}
.ycf_c00273{bottom:414.509107pt;}
.yc7_c00273{bottom:414.509481pt;}
.ycc_c00273{bottom:414.509521pt;}
.yc8_c00273{bottom:414.509616pt;}
.yca_c00273{bottom:414.509617pt;}
.ycb_c00273{bottom:414.509689pt;}
.yc9_c00273{bottom:414.510141pt;}
.yc6_c00273{bottom:434.935537pt;}
.yc3_c00273{bottom:434.935783pt;}
.yc2_c00273{bottom:434.935817pt;}
.yc5_c00273{bottom:434.936132pt;}
.yc1_c00273{bottom:434.936305pt;}
.yc4_c00273{bottom:434.936361pt;}
.yc0_c00273{bottom:434.936900pt;}
.ybf_c00273{bottom:434.937103pt;}
.ybe_c00273{bottom:434.937244pt;}
.ybc_c00273{bottom:434.937571pt;}
.ybd_c00273{bottom:434.937688pt;}
.yb2_c00273{bottom:454.833753pt;}
.ybb_c00273{bottom:454.833763pt;}
.yb9_c00273{bottom:454.833876pt;}
.yb3_c00273{bottom:454.833959pt;}
.yb1_c00273{bottom:454.833983pt;}
.yba_c00273{bottom:454.834287pt;}
.yb4_c00273{bottom:454.834324pt;}
.yb6_c00273{bottom:454.834477pt;}
.yb8_c00273{bottom:454.834480pt;}
.yb7_c00273{bottom:454.834915pt;}
.yb5_c00273{bottom:454.834965pt;}
.ya3_c00273{bottom:473.492060pt;}
.ya4_c00273{bottom:473.853544pt;}
.ya5_c00273{bottom:474.027303pt;}
.ya6_c00273{bottom:474.437639pt;}
.ya7_c00273{bottom:474.589053pt;}
.ya8_c00273{bottom:474.855367pt;}
.ya9_c00273{bottom:474.963393pt;}
.yaa_c00273{bottom:475.222627pt;}
.yab_c00273{bottom:475.372289pt;}
.yac_c00273{bottom:475.652931pt;}
.yad_c00273{bottom:475.872664pt;}
.yae_c00273{bottom:476.009699pt;}
.yaf_c00273{bottom:476.296656pt;}
.yb0_c00273{bottom:476.558389pt;}
.y97_c00273{bottom:494.137383pt;}
.y98_c00273{bottom:494.513889pt;}
.y99_c00273{bottom:494.833177pt;}
.y9a_c00273{bottom:495.069197pt;}
.y9b_c00273{bottom:495.202019pt;}
.y9c_c00273{bottom:495.484867pt;}
.y9d_c00273{bottom:495.628269pt;}
.y9e_c00273{bottom:496.125405pt;}
.y9f_c00273{bottom:496.240779pt;}
.ya0_c00273{bottom:496.945749pt;}
.ya1_c00273{bottom:497.111264pt;}
.ya2_c00273{bottom:497.413104pt;}
.y8d_c00273{bottom:514.287975pt;}
.y8e_c00273{bottom:514.799332pt;}
.y8f_c00273{bottom:515.116953pt;}
.y90_c00273{bottom:515.392221pt;}
.y91_c00273{bottom:516.081780pt;}
.y92_c00273{bottom:516.324179pt;}
.y93_c00273{bottom:516.716955pt;}
.y94_c00273{bottom:517.129493pt;}
.y95_c00273{bottom:518.048309pt;}
.y96_c00273{bottom:518.642136pt;}
.y83_c00273{bottom:534.459096pt;}
.y84_c00273{bottom:534.904448pt;}
.y85_c00273{bottom:535.281199pt;}
.y86_c00273{bottom:536.053847pt;}
.y87_c00273{bottom:536.380032pt;}
.y88_c00273{bottom:536.965257pt;}
.y89_c00273{bottom:537.473801pt;}
.y8a_c00273{bottom:537.574205pt;}
.y8b_c00273{bottom:537.744807pt;}
.y8c_c00273{bottom:538.066517pt;}
.y77_c00273{bottom:554.380213pt;}
.y78_c00273{bottom:554.628503pt;}
.y79_c00273{bottom:554.931260pt;}
.y7a_c00273{bottom:555.469179pt;}
.y7b_c00273{bottom:555.725948pt;}
.y7c_c00273{bottom:556.003960pt;}
.y7d_c00273{bottom:556.250792pt;}
.y7e_c00273{bottom:556.648456pt;}
.y7f_c00273{bottom:556.862704pt;}
.y80_c00273{bottom:557.143491pt;}
.y81_c00273{bottom:557.774427pt;}
.y82_c00273{bottom:558.126969pt;}
.y6a_c00273{bottom:574.542267pt;}
.y6b_c00273{bottom:574.988907pt;}
.y6c_c00273{bottom:575.238668pt;}
.y6d_c00273{bottom:575.520037pt;}
.y6e_c00273{bottom:575.859943pt;}
.y6f_c00273{bottom:576.083956pt;}
.y70_c00273{bottom:576.445587pt;}
.y71_c00273{bottom:577.110588pt;}
.y72_c00273{bottom:577.420653pt;}
.y73_c00273{bottom:577.755791pt;}
.y74_c00273{bottom:578.063099pt;}
.y75_c00273{bottom:578.270137pt;}
.y76_c00273{bottom:578.755408pt;}
.y61_c00273{bottom:594.705933pt;}
.y62_c00273{bottom:595.252415pt;}
.y63_c00273{bottom:595.772492pt;}
.y64_c00273{bottom:595.988627pt;}
.y65_c00273{bottom:596.806095pt;}
.y66_c00273{bottom:597.384163pt;}
.y67_c00273{bottom:597.785173pt;}
.y68_c00273{bottom:598.523985pt;}
.y69_c00273{bottom:598.838053pt;}
.y53_c00273{bottom:614.628257pt;}
.y54_c00273{bottom:615.021308pt;}
.y55_c00273{bottom:615.311763pt;}
.y56_c00273{bottom:615.624595pt;}
.y57_c00273{bottom:616.346632pt;}
.y58_c00273{bottom:616.472836pt;}
.y59_c00273{bottom:616.750533pt;}
.y5a_c00273{bottom:617.508919pt;}
.y5b_c00273{bottom:617.917760pt;}
.y5c_c00273{bottom:618.104128pt;}
.y5d_c00273{bottom:618.413840pt;}
.y5e_c00273{bottom:619.251629pt;}
.y5f_c00273{bottom:619.405307pt;}
.y60_c00273{bottom:619.764072pt;}
.y48_c00273{bottom:635.270709pt;}
.y49_c00273{bottom:636.110813pt;}
.y4a_c00273{bottom:636.711908pt;}
.y4b_c00273{bottom:637.011372pt;}
.y4c_c00273{bottom:638.038420pt;}
.y4d_c00273{bottom:638.429259pt;}
.y4e_c00273{bottom:638.691129pt;}
.y4f_c00273{bottom:639.463327pt;}
.y50_c00273{bottom:640.072168pt;}
.y51_c00273{bottom:640.287952pt;}
.y52_c00273{bottom:640.740372pt;}
.y3d_c00273{bottom:655.192521pt;}
.y3e_c00273{bottom:655.595123pt;}
.y3f_c00273{bottom:656.062481pt;}
.y40_c00273{bottom:656.384465pt;}
.y41_c00273{bottom:656.802719pt;}
.y42_c00273{bottom:657.976064pt;}
.y43_c00273{bottom:658.434704pt;}
.y44_c00273{bottom:658.968224pt;}
.y45_c00273{bottom:659.476819pt;}
.y46_c00273{bottom:659.714077pt;}
.y47_c00273{bottom:660.459532pt;}
.y30_c00273{bottom:675.355452pt;}
.y31_c00273{bottom:676.162684pt;}
.y32_c00273{bottom:676.504073pt;}
.y33_c00273{bottom:676.754280pt;}
.y34_c00273{bottom:677.065881pt;}
.y35_c00273{bottom:677.924475pt;}
.y36_c00273{bottom:678.600061pt;}
.y37_c00273{bottom:679.001944pt;}
.y38_c00273{bottom:680.301895pt;}
.y39_c00273{bottom:680.734969pt;}
.y3a_c00273{bottom:681.756364pt;}
.y3b_c00273{bottom:682.034417pt;}
.y3c_c00273{bottom:682.505112pt;}
.y25_c00273{bottom:695.972077pt;}
.y26_c00273{bottom:696.657853pt;}
.y27_c00273{bottom:697.668889pt;}
.y28_c00273{bottom:697.890357pt;}
.y29_c00273{bottom:698.129973pt;}
.y2a_c00273{bottom:698.439633pt;}
.y2b_c00273{bottom:699.235251pt;}
.y2c_c00273{bottom:699.537943pt;}
.y2d_c00273{bottom:699.881316pt;}
.y2e_c00273{bottom:700.683121pt;}
.y2f_c00273{bottom:701.119107pt;}
.y1b_c00273{bottom:716.631567pt;}
.y1c_c00273{bottom:717.215507pt;}
.y1d_c00273{bottom:717.756924pt;}
.y1e_c00273{bottom:718.168504pt;}
.y1f_c00273{bottom:718.804760pt;}
.y20_c00273{bottom:719.040739pt;}
.y21_c00273{bottom:719.781141pt;}
.y22_c00273{bottom:720.189636pt;}
.y23_c00273{bottom:721.096436pt;}
.y24_c00273{bottom:721.392064pt;}
.y10_c00273{bottom:736.306667pt;}
.y11_c00273{bottom:736.786991pt;}
.y12_c00273{bottom:736.999255pt;}
.y13_c00273{bottom:737.236444pt;}
.y14_c00273{bottom:737.769600pt;}
.y15_c00273{bottom:738.290831pt;}
.y16_c00273{bottom:739.052492pt;}
.y17_c00273{bottom:739.635429pt;}
.y18_c00273{bottom:739.973343pt;}
.y19_c00273{bottom:740.884105pt;}
.y1a_c00273{bottom:741.486213pt;}
.yd_c00273{bottom:777.840153pt;}
.ye_c00273{bottom:780.016716pt;}
.yf_c00273{bottom:782.087215pt;}
.y2_c00273{bottom:831.833333pt;}
.y3_c00273{bottom:833.260291pt;}
.y4_c00273{bottom:834.226344pt;}
.y5_c00273{bottom:834.947847pt;}
.y6_c00273{bottom:835.113019pt;}
.y7_c00273{bottom:836.575789pt;}
.y8_c00273{bottom:836.647280pt;}
.y9_c00273{bottom:837.197808pt;}
.ya_c00273{bottom:837.743191pt;}
.yb_c00273{bottom:838.335539pt;}
.yc_c00273{bottom:838.597180pt;}
.y1_c00273{bottom:840.000000pt;}
.h2_c00273{height:20.533333pt;}
.h12_c00273{height:43.867741pt;}
.h11_c00273{height:45.734454pt;}
.hb_c00273{height:54.137907pt;}
.h3_c00273{height:54.141155pt;}
.h10_c00273{height:55.071320pt;}
.he_c00273{height:56.004732pt;}
.h9_c00273{height:57.871556pt;}
.h7_c00273{height:58.804968pt;}
.hd_c00273{height:59.738381pt;}
.h5_c00273{height:60.671793pt;}
.ha_c00273{height:61.605205pt;}
.h6_c00273{height:62.538617pt;}
.hc_c00273{height:63.472029pt;}
.h8_c00273{height:65.338854pt;}
.hf_c00273{height:70.005915pt;}
.h4_c00273{height:89.612946pt;}
.h0_c00273{height:896.400000pt;}
.h1_c00273{height:896.666667pt;}
.w0_c00273{width:618.666667pt;}
.x0_c00273{left:0.000000pt;}
.xa4_c00273{left:130.564739pt;}
.x2_c00273{left:136.313333pt;}
.x81_c00273{left:138.963047pt;}
.x53_c00273{left:140.074013pt;}
.xa5_c00273{left:141.125191pt;}
.xd_c00273{left:143.359655pt;}
.x2b_c00273{left:144.701779pt;}
.x5c_c00273{left:146.230449pt;}
.x91_c00273{left:147.687949pt;}
.xbf_c00273{left:150.003343pt;}
.xaf_c00273{left:152.996641pt;}
.xb4_c00273{left:161.356000pt;}
.x9b_c00273{left:163.687001pt;}
.x5d_c00273{left:173.843888pt;}
.x33_c00273{left:175.605175pt;}
.xb5_c00273{left:176.717333pt;}
.xa9_c00273{left:177.844963pt;}
.x10_c00273{left:180.386667pt;}
.x54_c00273{left:184.689080pt;}
.x92_c00273{left:185.582896pt;}
.x8b_c00273{left:186.727303pt;}
.x97_c00273{left:188.647803pt;}
.x2c_c00273{left:189.562867pt;}
.x6a_c00273{left:190.889793pt;}
.x1a_c00273{left:192.375079pt;}
.x4d_c00273{left:194.543364pt;}
.x11_c00273{left:196.714667pt;}
.x7c_c00273{left:199.446660pt;}
.x93_c00273{left:200.998759pt;}
.x82_c00273{left:204.008703pt;}
.x3c_c00273{left:205.378125pt;}
.x5e_c00273{left:207.493639pt;}
.x2d_c00273{left:208.540303pt;}
.x55_c00273{left:209.646051pt;}
.x34_c00273{left:211.555841pt;}
.x12_c00273{left:214.960000pt;}
.x83_c00273{left:216.489484pt;}
.x3_c00273{left:220.252000pt;}
.x46_c00273{left:221.476455pt;}
.x2e_c00273{left:222.452735pt;}
.x1_c00273{left:223.440000pt;}
.x9c_c00273{left:224.891999pt;}
.x8c_c00273{left:225.851240pt;}
.xb6_c00273{left:226.881333pt;}
.x7d_c00273{left:229.929141pt;}
.x6f_c00273{left:231.913575pt;}
.x35_c00273{left:236.323841pt;}
.xe_c00273{left:237.971332pt;}
.x2f_c00273{left:239.754275pt;}
.x4e_c00273{left:241.832595pt;}
.x6b_c00273{left:244.703180pt;}
.x3d_c00273{left:248.333571pt;}
.x84_c00273{left:249.612416pt;}
.xb0_c00273{left:251.409653pt;}
.xaa_c00273{left:253.931157pt;}
.x13_c00273{left:255.972000pt;}
.x4f_c00273{left:261.535781pt;}
.x7e_c00273{left:264.732351pt;}
.xbc_c00273{left:265.978415pt;}
.x5f_c00273{left:267.234075pt;}
.x36_c00273{left:268.497175pt;}
.x3e_c00273{left:269.727960pt;}
.x9f_c00273{left:270.736669pt;}
.x1b_c00273{left:271.837452pt;}
.x22_c00273{left:273.774896pt;}
.x4_c00273{left:277.078667pt;}
.x70_c00273{left:278.032573pt;}
.x75_c00273{left:279.709415pt;}
.x98_c00273{left:283.695853pt;}
.x30_c00273{left:287.437839pt;}
.x23_c00273{left:290.810896pt;}
.x56_c00273{left:294.158677pt;}
.x14_c00273{left:296.066667pt;}
.xab_c00273{left:297.374507pt;}
.x76_c00273{left:301.307096pt;}
.x8f_c00273{left:303.860335pt;}
.x47_c00273{left:308.087121pt;}
.x24_c00273{left:309.242896pt;}
.x71_c00273{left:313.330861pt;}
.x85_c00273{left:318.018644pt;}
.x5_c00273{left:319.520000pt;}
.x65_c00273{left:322.931843pt;}
.x1c_c00273{left:324.883479pt;}
.x60_c00273{left:326.733177pt;}
.xf_c00273{left:327.991485pt;}
.x6_c00273{left:329.236000pt;}
.x57_c00273{left:330.388099pt;}
.x72_c00273{left:331.337373pt;}
.x25_c00273{left:333.062896pt;}
.x94_c00273{left:334.425176pt;}
.x50_c00273{left:335.907056pt;}
.x77_c00273{left:339.436744pt;}
.x3f_c00273{left:343.089673pt;}
.x1d_c00273{left:344.574405pt;}
.x31_c00273{left:347.239272pt;}
.xa6_c00273{left:349.940464pt;}
.x86_c00273{left:350.901541pt;}
.xb1_c00273{left:353.410943pt;}
.x15_c00273{left:354.656000pt;}
.xc0_c00273{left:357.128155pt;}
.x37_c00273{left:358.754508pt;}
.x6c_c00273{left:365.172984pt;}
.x48_c00273{left:366.424455pt;}
.xb7_c00273{left:369.401333pt;}
.x40_c00273{left:370.999976pt;}
.xa1_c00273{left:373.705835pt;}
.xa0_c00273{left:376.346505pt;}
.x87_c00273{left:386.664924pt;}
.x51_c00273{left:388.477759pt;}
.x41_c00273{left:389.707733pt;}
.x78_c00273{left:391.794151pt;}
.x26_c00273{left:394.264229pt;}
.x58_c00273{left:396.826681pt;}
.x49_c00273{left:397.873788pt;}
.x16_c00273{left:399.497333pt;}
.x6d_c00273{left:402.651288pt;}
.x7f_c00273{left:404.904028pt;}
.x1e_c00273{left:406.247203pt;}
.x73_c00273{left:407.894348pt;}
.x88_c00273{left:410.666313pt;}
.x4a_c00273{left:412.209788pt;}
.x79_c00273{left:413.154481pt;}
.x7_c00273{left:415.281333pt;}
.x27_c00273{left:417.548229pt;}
.x8_c00273{left:419.486667pt;}
.x61_c00273{left:422.026117pt;}
.x66_c00273{left:424.225112pt;}
.x17_c00273{left:425.490667pt;}
.x59_c00273{left:427.858561pt;}
.xbd_c00273{left:431.342415pt;}
.x38_c00273{left:435.074508pt;}
.x4b_c00273{left:436.033788pt;}
.xb8_c00273{left:437.832000pt;}
.x89_c00273{left:439.228465pt;}
.x1f_c00273{left:440.336987pt;}
.x80_c00273{left:442.107653pt;}
.x28_c00273{left:443.961563pt;}
.x42_c00273{left:444.901689pt;}
.xb2_c00273{left:449.382413pt;}
.x9_c00273{left:451.870667pt;}
.x62_c00273{left:453.267747pt;}
.xa2_c00273{left:455.553000pt;}
.x95_c00273{left:456.802727pt;}
.xa7_c00273{left:459.869712pt;}
.x5a_c00273{left:461.434545pt;}
.x90_c00273{left:464.912899pt;}
.x9d_c00273{left:468.753200pt;}
.x39_c00273{left:474.197175pt;}
.x9e_c00273{left:479.073617pt;}
.x67_c00273{left:480.782725pt;}
.xa_c00273{left:483.952000pt;}
.x6e_c00273{left:486.152121pt;}
.x43_c00273{left:488.350451pt;}
.xbe_c00273{left:489.419748pt;}
.xac_c00273{left:490.831197pt;}
.x3a_c00273{left:492.447841pt;}
.x18_c00273{left:495.549333pt;}
.x99_c00273{left:497.074573pt;}
.x32_c00273{left:500.235989pt;}
.x44_c00273{left:503.718243pt;}
.x29_c00273{left:505.638896pt;}
.x8a_c00273{left:506.914572pt;}
.xad_c00273{left:509.553036pt;}
.x68_c00273{left:510.861619pt;}
.x4c_c00273{left:512.300455pt;}
.x9a_c00273{left:513.636031pt;}
.x20_c00273{left:515.937975pt;}
.xb_c00273{left:518.796000pt;}
.x52_c00273{left:520.729208pt;}
.x63_c00273{left:523.343387pt;}
.xa8_c00273{left:524.673983pt;}
.x8d_c00273{left:526.359377pt;}
.xb9_c00273{left:527.369333pt;}
.x96_c00273{left:532.923339pt;}
.xc_c00273{left:534.186667pt;}
.x45_c00273{left:536.057827pt;}
.x2a_c00273{left:539.176229pt;}
.x21_c00273{left:540.627637pt;}
.x19_c00273{left:541.865333pt;}
.x7a_c00273{left:545.398145pt;}
.x69_c00273{left:546.584807pt;}
.x8e_c00273{left:548.681823pt;}
.x3b_c00273{left:549.790508pt;}
.xa3_c00273{left:552.760099pt;}
.x74_c00273{left:554.287847pt;}
.xb3_c00273{left:558.628275pt;}
.x5b_c00273{left:561.306428pt;}
.x64_c00273{left:562.464081pt;}
.x7b_c00273{left:582.867741pt;}
.xae_c00273{left:590.199993pt;}
.xba_c00273{left:596.253333pt;}
.xbb_c00273{left:604.886667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.me7_c00274{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);}
.m6f_c00274{transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.036615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036615,0.000000,0.000000,0.250000,0,0);}
.med_c00274{transform:matrix(0.056765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056765,0.000000,0.000000,0.250000,0,0);}
.m68_c00274{transform:matrix(0.059110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059110,0.000000,0.000000,0.250000,0,0);}
.m69_c00274{transform:matrix(0.078930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078930,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);}
.m120_c00274{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);}
.m97_c00274{transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);}
.m11a_c00274{transform:matrix(0.103270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00274{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.m5b_c00274{transform:matrix(0.119910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119910,0.000000,0.000000,0.250000,0,0);}
.m11f_c00274{transform:matrix(0.127035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127035,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.132510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132510,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{transform:matrix(0.134440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134440,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m5e_c00274{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);}
.m102_c00274{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);}
.mfc_c00274{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);}
.m1b_c00274{transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{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);}
.m123_c00274{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);}
.me_c00274{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);}
.m114_c00274{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);}
.m90_c00274{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);}
.m79_c00274{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);}
.m45_c00274{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);}
.m109_c00274{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);}
.m55_c00274{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);}
.me5_c00274{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_c00274{transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159410,0.000000,0.000000,0.250000,0,0);}
.md_c00274{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);}
.m77_c00274{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);}
.m7_c00274{transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);}
.m10d_c00274{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);}
.m5d_c00274{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);}
.m9_c00274{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.mf7_c00274{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);}
.m31_c00274{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);}
.m57_c00274{transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{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);}
.mea_c00274{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);}
.m4b_c00274{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);}
.mc_c00274{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);}
.m61_c00274{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);}
.m49_c00274{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);}
.me8_c00274{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);}
.mf_c00274{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);}
.m86_c00274{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);}
.ma_c00274{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{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);}
.m48_c00274{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{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);}
.mcf_c00274{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);}
.m38_c00274{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);}
.m6b_c00274{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);}
.m9a_c00274{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);}
.m32_c00274{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);}
.m2f_c00274{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);}
.m62_c00274{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);}
.m11b_c00274{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);}
.mdf_c00274{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);}
.mf2_c00274{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);}
.mf1_c00274{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);}
.maa_c00274{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);}
.m64_c00274{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{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);}
.ma9_c00274{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);}
.mc0_c00274{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);}
.me2_c00274{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);}
.mb0_c00274{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);}
.mdd_c00274{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m2e_c00274{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);}
.m21_c00274{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);}
.m125_c00274{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);}
.m110_c00274{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);}
.me3_c00274{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);}
.m33_c00274{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);}
.m2c_c00274{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);}
.m43_c00274{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);}
.m117_c00274{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);}
.mc1_c00274{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);}
.m52_c00274{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);}
.ma0_c00274{transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{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);}
.mdb_c00274{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);}
.m13_c00274{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);}
.mb_c00274{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);}
.m1a_c00274{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);}
.m119_c00274{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);}
.ma1_c00274{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);}
.m42_c00274{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);}
.m95_c00274{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);}
.m116_c00274{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);}
.m4f_c00274{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);}
.m18_c00274{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);}
.m5a_c00274{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);}
.m6e_c00274{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);}
.mbd_c00274{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);}
.ma3_c00274{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);}
.m47_c00274{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);}
.m93_c00274{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);}
.m10_c00274{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);}
.ma2_c00274{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);}
.m58_c00274{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);}
.m78_c00274{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);}
.m23_c00274{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);}
.m81_c00274{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);}
.m36_c00274{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);}
.m56_c00274{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);}
.m5c_c00274{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);}
.m3d_c00274{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);}
.m27_c00274{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{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);}
.m92_c00274{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);}
.m0_c00274{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);}
.m1c_c00274{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);}
.mda_c00274{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);}
.mcc_c00274{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);}
.mad_c00274{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);}
.m25_c00274{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);}
.m35_c00274{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);}
.ma5_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);}
.m46_c00274{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);}
.mae_c00274{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_c00274{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);}
.m50_c00274{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);}
.m7e_c00274{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);}
.m60_c00274{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);}
.m100_c00274{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);}
.m9d_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);}
.m99_c00274{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);}
.m39_c00274{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);}
.m1d_c00274{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);}
.md4_c00274{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);}
.mde_c00274{transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);}
.me4_c00274{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);}
.mb5_c00274{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);}
.m19_c00274{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);}
.m9e_c00274{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);}
.mce_c00274{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);}
.mb7_c00274{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);}
.ma6_c00274{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);}
.m6_c00274{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);}
.mb8_c00274{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);}
.m29_c00274{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);}
.m44_c00274{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);}
.mb3_c00274{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);}
.m121_c00274{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);}
.m3a_c00274{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);}
.mee_c00274{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);}
.m54_c00274{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);}
.m22_c00274{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);}
.md5_c00274{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);}
.m9f_c00274{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);}
.mfe_c00274{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);}
.m71_c00274{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);}
.mc2_c00274{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);}
.m11c_c00274{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);}
.me0_c00274{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);}
.m1_c00274{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);}
.m59_c00274{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);}
.m8c_c00274{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);}
.m66_c00274{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);}
.m2b_c00274{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);}
.mbc_c00274{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);}
.m8e_c00274{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);}
.m5f_c00274{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);}
.m12_c00274{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);}
.mcd_c00274{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);}
.me9_c00274{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);}
.mb1_c00274{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);}
.mf0_c00274{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);}
.m63_c00274{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);}
.m4d_c00274{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);}
.ma4_c00274{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);}
.m14_c00274{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);}
.m91_c00274{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);}
.mcb_c00274{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);}
.m8_c00274{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);}
.mc7_c00274{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);}
.m1e_c00274{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);}
.m5_c00274{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);}
.m8f_c00274{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);}
.mf9_c00274{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);}
.m16_c00274{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_c00274{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);}
.mb4_c00274{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);}
.m1f_c00274{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);}
.m96_c00274{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);}
.m51_c00274{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);}
.m85_c00274{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);}
.mb9_c00274{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);}
.m7f_c00274{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);}
.m8b_c00274{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);}
.m53_c00274{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);}
.mf8_c00274{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{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);}
.m3_c00274{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);}
.m6d_c00274{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);}
.m9c_c00274{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);}
.m104_c00274{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);}
.mdc_c00274{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);}
.md1_c00274{transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);}
.m70_c00274{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);}
.m98_c00274{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);}
.me6_c00274{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.md0_c00274{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);}
.m80_c00274{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);}
.m94_c00274{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);}
.md3_c00274{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);}
.mfd_c00274{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);}
.md9_c00274{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);}
.m3f_c00274{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);}
.m75_c00274{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);}
.m11e_c00274{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);}
.mbb_c00274{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m84_c00274{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);}
.m24_c00274{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);}
.m40_c00274{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);}
.md8_c00274{transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{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);}
.meb_c00274{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);}
.m2_c00274{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{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);}
.m82_c00274{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00274{transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);}
.m8d_c00274{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m3b_c00274{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);}
.mfb_c00274{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);}
.m9b_c00274{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);}
.mb6_c00274{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);}
.m67_c00274{transform:matrix(0.232710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232710,0.000000,0.000000,0.250000,0,0);}
.m10f_c00274{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);}
.maf_c00274{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);}
.mb2_c00274{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);}
.m11d_c00274{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);}
.ma7_c00274{transform:matrix(0.236340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236340,0.000000,0.000000,0.250000,0,0);}
.m107_c00274{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);}
.mc6_c00274{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);}
.m106_c00274{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);}
.m118_c00274{transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);}
.mef_c00274{transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);}
.md7_c00274{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);}
.mf3_c00274{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.m128_c00274{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.mca_c00274{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.m6a_c00274{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);}
.me1_c00274{transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257035,0.000000,0.000000,0.250000,0,0);}
.m87_c00274{transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);}
.m127_c00274{transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{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);}
.md2_c00274{transform:matrix(0.265070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265070,0.000000,0.000000,0.250000,0,0);}
.m10e_c00274{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);}
.m72_c00274{transform:matrix(0.265725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265945,0.000000,0.000000,0.250000,0,0);}
.m124_c00274{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m76_c00274{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);}
.m73_c00274{transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);}
.m7b_c00274{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);}
.mba_c00274{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);}
.mbf_c00274{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);}
.m101_c00274{transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288510,0.000000,0.000000,0.250000,0,0);}
.mff_c00274{transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);}
.m105_c00274{transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299025,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.300475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300475,0.000000,0.000000,0.250000,0,0);}
.m7c_c00274{transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);}
.mf5_c00274{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);}
.m10b_c00274{transform:matrix(0.315995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315995,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{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);}
.mf4_c00274{transform:matrix(0.320270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320270,0.000000,0.000000,0.250000,0,0);}
.mc4_c00274{transform:matrix(0.320715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320715,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.327820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327820,0.000000,0.000000,0.250000,0,0);}
.mf6_c00274{transform:matrix(0.328995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328995,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);}
.m111_c00274{transform:matrix(0.337965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337965,0.000000,0.000000,0.250000,0,0);}
.mfa_c00274{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);}
.m129_c00274{transform:matrix(0.339215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339215,0.000000,0.000000,0.250000,0,0);}
.m74_c00274{transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341220,0.000000,0.000000,0.250000,0,0);}
.m37_c00274{transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);}
.mec_c00274{transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370885,0.000000,0.000000,0.250000,0,0);}
.ma8_c00274{transform:matrix(0.372340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372340,0.000000,0.000000,0.250000,0,0);}
.m115_c00274{transform:matrix(0.377105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377105,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.383425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383425,0.000000,0.000000,0.250000,0,0);}
.m108_c00274{transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);}
.m103_c00274{transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);}
.m10c_c00274{transform:matrix(0.481460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481460,0.000000,0.000000,0.250000,0,0);}
.md6_c00274{transform:matrix(0.506990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506990,0.000000,0.000000,0.250000,0,0);}
.m122_c00274{transform:matrix(0.686645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686645,0.000000,0.000000,0.250000,0,0);}
.m112_c00274{transform:matrix(0.754030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754030,0.000000,0.000000,0.250000,0,0);}
.m126_c00274{transform:matrix(0.793860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793860,0.000000,0.000000,0.250000,0,0);}
.m10a_c00274{transform:matrix(0.796985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796985,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.898120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898120,0.000000,0.000000,0.250000,0,0);}
.m113_c00274{transform:matrix(0.929225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.929225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.929225,0.000000,0.000000,0.250000,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;}
.fs8_c00274{font-size:60.900000px;}
.fs7_c00274{font-size:63.000000px;}
.fs9_c00274{font-size:64.050000px;}
.fs4_c00274{font-size:67.200000px;}
.fsa_c00274{font-size:68.250000px;}
.fs6_c00274{font-size:69.300000px;}
.fs0_c00274{font-size:70.350000px;}
.fs2_c00274{font-size:71.400000px;}
.fs3_c00274{font-size:72.450000px;}
.fs1_c00274{font-size:74.550000px;}
.fs5_c00274{font-size:78.750000px;}
.y0_c00274{bottom:0.000000px;}
.y1b_c00274{bottom:211.849500px;}
.y1a_c00274{bottom:234.204000px;}
.y19_c00274{bottom:257.361000px;}
.y18_c00274{bottom:303.828000px;}
.y17_c00274{bottom:326.515500px;}
.y16_c00274{bottom:349.264500px;}
.y15_c00274{bottom:372.411000px;}
.y14_c00274{bottom:394.609500px;}
.y13_c00274{bottom:417.550500px;}
.y12_c00274{bottom:440.460000px;}
.y11_c00274{bottom:463.146000px;}
.y10_c00274{bottom:485.926500px;}
.yf_c00274{bottom:508.302000px;}
.ye_c00274{bottom:531.250500px;}
.yd_c00274{bottom:554.140500px;}
.yc_c00274{bottom:576.235500px;}
.yb_c00274{bottom:599.398500px;}
.ya_c00274{bottom:621.271500px;}
.y9_c00274{bottom:644.254500px;}
.y8_c00274{bottom:666.664500px;}
.y7_c00274{bottom:689.880000px;}
.y6_c00274{bottom:712.614000px;}
.y5_c00274{bottom:734.671500px;}
.y4_c00274{bottom:757.858500px;}
.y3_c00274{bottom:780.813000px;}
.y2_c00274{bottom:803.283000px;}
.y1_c00274{bottom:826.266000px;}
.ha_c00274{height:60.900000px;}
.h9_c00274{height:63.000000px;}
.hb_c00274{height:64.050000px;}
.h6_c00274{height:67.200000px;}
.hc_c00274{height:68.250000px;}
.h8_c00274{height:69.300000px;}
.h2_c00274{height:70.350000px;}
.h4_c00274{height:71.400000px;}
.h5_c00274{height:72.450000px;}
.h3_c00274{height:74.550000px;}
.h7_c00274{height:78.750000px;}
.h1_c00274{height:1005.000000px;}
.h0_c00274{height:1005.150000px;}
.w0_c00274{width:702.540000px;}
.w1_c00274{width:702.750000px;}
.x0_c00274{left:0.000000px;}
.x5e_c00274{left:69.390000px;}
.x16_c00274{left:75.060000px;}
.x39_c00274{left:76.140000px;}
.xa8_c00274{left:81.540000px;}
.x86_c00274{left:82.620000px;}
.x1_c00274{left:83.700000px;}
.x4a_c00274{left:85.050000px;}
.x71_c00274{left:86.130000px;}
.xad_c00274{left:87.480000px;}
.x32_c00274{left:106.920000px;}
.x2b_c00274{left:109.350000px;}
.xc_c00274{left:118.800000px;}
.x8f_c00274{left:121.500000px;}
.x22_c00274{left:125.820000px;}
.x43_c00274{left:129.330000px;}
.x4b_c00274{left:130.410000px;}
.x3a_c00274{left:133.920000px;}
.x2_c00274{left:137.430000px;}
.x2c_c00274{left:138.780000px;}
.x66_c00274{left:139.860000px;}
.x33_c00274{left:144.180000px;}
.x87_c00274{left:145.260000px;}
.x9f_c00274{left:147.690000px;}
.x7c_c00274{left:151.470000px;}
.xa4_c00274{left:153.360000px;}
.x90_c00274{left:156.600000px;}
.x17_c00274{left:157.950000px;}
.x3b_c00274{left:159.840000px;}
.x78_c00274{left:162.270000px;}
.x67_c00274{left:164.160000px;}
.x72_c00274{left:174.690000px;}
.x3_c00274{left:177.930000px;}
.x5f_c00274{left:181.440000px;}
.xd_c00274{left:183.600000px;}
.x23_c00274{left:185.220000px;}
.x9a_c00274{left:187.650000px;}
.x73_c00274{left:188.730000px;}
.x98_c00274{left:191.700000px;}
.x55_c00274{left:192.780000px;}
.x91_c00274{left:194.400000px;}
.x4c_c00274{left:199.530000px;}
.x34_c00274{left:200.880000px;}
.x68_c00274{left:204.390000px;}
.xe_c00274{left:206.280000px;}
.x18_c00274{left:208.710000px;}
.x88_c00274{left:210.330000px;}
.x74_c00274{left:215.190000px;}
.x60_c00274{left:218.160000px;}
.x4d_c00274{left:220.860000px;}
.x7f_c00274{left:222.210000px;}
.x79_c00274{left:224.100000px;}
.xac_c00274{left:228.150000px;}
.x9b_c00274{left:231.120000px;}
.x3c_c00274{left:236.520000px;}
.xa5_c00274{left:239.760000px;}
.x4_c00274{left:241.110000px;}
.x56_c00274{left:244.620000px;}
.x92_c00274{left:246.780000px;}
.x24_c00274{left:248.940000px;}
.x19_c00274{left:250.290000px;}
.x44_c00274{left:252.450000px;}
.x69_c00274{left:253.530000px;}
.x61_c00274{left:254.610000px;}
.xae_c00274{left:257.580000px;}
.xf_c00274{left:260.550000px;}
.x3d_c00274{left:263.520000px;}
.xb2_c00274{left:270.540000px;}
.xa9_c00274{left:275.400000px;}
.x4e_c00274{left:277.290000px;}
.x80_c00274{left:278.370000px;}
.x75_c00274{left:279.990000px;}
.x5_c00274{left:284.310000px;}
.x57_c00274{left:285.930000px;}
.x25_c00274{left:289.170000px;}
.x6e_c00274{left:291.870000px;}
.x6_c00274{left:296.730000px;}
.x9c_c00274{left:300.240000px;}
.x45_c00274{left:301.860000px;}
.x10_c00274{left:304.020000px;}
.x7a_c00274{left:305.100000px;}
.xa0_c00274{left:306.180000px;}
.xaf_c00274{left:308.340000px;}
.x2d_c00274{left:309.960000px;}
.x1a_c00274{left:312.390000px;}
.x6a_c00274{left:315.900000px;}
.x81_c00274{left:317.790000px;}
.x99_c00274{left:319.950000px;}
.x76_c00274{left:321.570000px;}
.x26_c00274{left:324.270000px;}
.x4f_c00274{left:326.430000px;}
.x46_c00274{left:327.780000px;}
.x7d_c00274{left:329.670000px;}
.x6f_c00274{left:331.830000px;}
.x2e_c00274{left:333.720000px;}
.x1b_c00274{left:339.660000px;}
.x7_c00274{left:348.030000px;}
.x82_c00274{left:351.810000px;}
.x11_c00274{left:354.780000px;}
.x9d_c00274{left:355.860000px;}
.x1c_c00274{left:359.910000px;}
.x3e_c00274{left:363.150000px;}
.x93_c00274{left:365.850000px;}
.x35_c00274{left:368.550000px;}
.x27_c00274{left:371.520000px;}
.x89_c00274{left:373.680000px;}
.x58_c00274{left:377.460000px;}
.x94_c00274{left:378.810000px;}
.x59_c00274{left:383.130000px;}
.x6b_c00274{left:384.210000px;}
.x8_c00274{left:387.450000px;}
.x1d_c00274{left:389.880000px;}
.x36_c00274{left:391.230000px;}
.x83_c00274{left:393.390000px;}
.x50_c00274{left:394.470000px;}
.x28_c00274{left:398.520000px;}
.x2f_c00274{left:401.760000px;}
.x12_c00274{left:403.110000px;}
.x3f_c00274{left:405.270000px;}
.x47_c00274{left:406.350000px;}
.xaa_c00274{left:407.970000px;}
.xa6_c00274{left:412.290000px;}
.x1e_c00274{left:414.180000px;}
.x5a_c00274{left:417.150000px;}
.x29_c00274{left:419.040000px;}
.x9_c00274{left:422.280000px;}
.x7b_c00274{left:423.900000px;}
.x8a_c00274{left:427.410000px;}
.x51_c00274{left:432.810000px;}
.x48_c00274{left:437.130000px;}
.x37_c00274{left:441.450000px;}
.x30_c00274{left:442.800000px;}
.x13_c00274{left:446.850000px;}
.xb0_c00274{left:449.010000px;}
.x8b_c00274{left:451.710000px;}
.x95_c00274{left:456.840000px;}
.x52_c00274{left:458.190000px;}
.x40_c00274{left:464.130000px;}
.x1f_c00274{left:467.910000px;}
.x5b_c00274{left:471.420000px;}
.xa_c00274{left:473.850000px;}
.x62_c00274{left:474.930000px;}
.x14_c00274{left:476.280000px;}
.x84_c00274{left:479.520000px;}
.x20_c00274{left:482.760000px;}
.x5c_c00274{left:483.840000px;}
.xa1_c00274{left:486.000000px;}
.x96_c00274{left:487.620000px;}
.x31_c00274{left:488.970000px;}
.x8c_c00274{left:490.320000px;}
.x7e_c00274{left:493.290000px;}
.x6c_c00274{left:495.720000px;}
.xb1_c00274{left:496.800000px;}
.xa2_c00274{left:499.230000px;}
.x8d_c00274{left:500.580000px;}
.x2a_c00274{left:502.740000px;}
.x41_c00274{left:505.170000px;}
.x49_c00274{left:507.600000px;}
.x77_c00274{left:508.680000px;}
.x21_c00274{left:510.570000px;}
.x97_c00274{left:515.970000px;}
.x53_c00274{left:517.860000px;}
.xb_c00274{left:518.940000px;}
.x6d_c00274{left:520.290000px;}
.xa7_c00274{left:522.720000px;}
.xa3_c00274{left:524.070000px;}
.x63_c00274{left:525.690000px;}
.x38_c00274{left:528.120000px;}
.x42_c00274{left:529.740000px;}
.x15_c00274{left:532.440000px;}
.x54_c00274{left:534.600000px;}
.xab_c00274{left:538.380000px;}
.x85_c00274{left:539.460000px;}
.x70_c00274{left:541.080000px;}
.x5d_c00274{left:544.860000px;}
.x8e_c00274{left:546.480000px;}
.x9e_c00274{left:572.130000px;}
.x64_c00274{left:574.560000px;}
.x65_c00274{left:595.350000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.fs8_c00274{font-size:54.133333pt;}
.fs7_c00274{font-size:56.000000pt;}
.fs9_c00274{font-size:56.933333pt;}
.fs4_c00274{font-size:59.733333pt;}
.fsa_c00274{font-size:60.666667pt;}
.fs6_c00274{font-size:61.600000pt;}
.fs0_c00274{font-size:62.533333pt;}
.fs2_c00274{font-size:63.466667pt;}
.fs3_c00274{font-size:64.400000pt;}
.fs1_c00274{font-size:66.266667pt;}
.fs5_c00274{font-size:70.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1b_c00274{bottom:188.310667pt;}
.y1a_c00274{bottom:208.181333pt;}
.y19_c00274{bottom:228.765333pt;}
.y18_c00274{bottom:270.069333pt;}
.y17_c00274{bottom:290.236000pt;}
.y16_c00274{bottom:310.457333pt;}
.y15_c00274{bottom:331.032000pt;}
.y14_c00274{bottom:350.764000pt;}
.y13_c00274{bottom:371.156000pt;}
.y12_c00274{bottom:391.520000pt;}
.y11_c00274{bottom:411.685333pt;}
.y10_c00274{bottom:431.934667pt;}
.yf_c00274{bottom:451.824000pt;}
.ye_c00274{bottom:472.222667pt;}
.yd_c00274{bottom:492.569333pt;}
.yc_c00274{bottom:512.209333pt;}
.yb_c00274{bottom:532.798667pt;}
.ya_c00274{bottom:552.241333pt;}
.y9_c00274{bottom:572.670667pt;}
.y8_c00274{bottom:592.590667pt;}
.y7_c00274{bottom:613.226667pt;}
.y6_c00274{bottom:633.434667pt;}
.y5_c00274{bottom:653.041333pt;}
.y4_c00274{bottom:673.652000pt;}
.y3_c00274{bottom:694.056000pt;}
.y2_c00274{bottom:714.029333pt;}
.y1_c00274{bottom:734.458667pt;}
.ha_c00274{height:54.133333pt;}
.h9_c00274{height:56.000000pt;}
.hb_c00274{height:56.933333pt;}
.h6_c00274{height:59.733333pt;}
.hc_c00274{height:60.666667pt;}
.h8_c00274{height:61.600000pt;}
.h2_c00274{height:62.533333pt;}
.h4_c00274{height:63.466667pt;}
.h5_c00274{height:64.400000pt;}
.h3_c00274{height:66.266667pt;}
.h7_c00274{height:70.000000pt;}
.h1_c00274{height:893.333333pt;}
.h0_c00274{height:893.466667pt;}
.w0_c00274{width:624.480000pt;}
.w1_c00274{width:624.666667pt;}
.x0_c00274{left:0.000000pt;}
.x5e_c00274{left:61.680000pt;}
.x16_c00274{left:66.720000pt;}
.x39_c00274{left:67.680000pt;}
.xa8_c00274{left:72.480000pt;}
.x86_c00274{left:73.440000pt;}
.x1_c00274{left:74.400000pt;}
.x4a_c00274{left:75.600000pt;}
.x71_c00274{left:76.560000pt;}
.xad_c00274{left:77.760000pt;}
.x32_c00274{left:95.040000pt;}
.x2b_c00274{left:97.200000pt;}
.xc_c00274{left:105.600000pt;}
.x8f_c00274{left:108.000000pt;}
.x22_c00274{left:111.840000pt;}
.x43_c00274{left:114.960000pt;}
.x4b_c00274{left:115.920000pt;}
.x3a_c00274{left:119.040000pt;}
.x2_c00274{left:122.160000pt;}
.x2c_c00274{left:123.360000pt;}
.x66_c00274{left:124.320000pt;}
.x33_c00274{left:128.160000pt;}
.x87_c00274{left:129.120000pt;}
.x9f_c00274{left:131.280000pt;}
.x7c_c00274{left:134.640000pt;}
.xa4_c00274{left:136.320000pt;}
.x90_c00274{left:139.200000pt;}
.x17_c00274{left:140.400000pt;}
.x3b_c00274{left:142.080000pt;}
.x78_c00274{left:144.240000pt;}
.x67_c00274{left:145.920000pt;}
.x72_c00274{left:155.280000pt;}
.x3_c00274{left:158.160000pt;}
.x5f_c00274{left:161.280000pt;}
.xd_c00274{left:163.200000pt;}
.x23_c00274{left:164.640000pt;}
.x9a_c00274{left:166.800000pt;}
.x73_c00274{left:167.760000pt;}
.x98_c00274{left:170.400000pt;}
.x55_c00274{left:171.360000pt;}
.x91_c00274{left:172.800000pt;}
.x4c_c00274{left:177.360000pt;}
.x34_c00274{left:178.560000pt;}
.x68_c00274{left:181.680000pt;}
.xe_c00274{left:183.360000pt;}
.x18_c00274{left:185.520000pt;}
.x88_c00274{left:186.960000pt;}
.x74_c00274{left:191.280000pt;}
.x60_c00274{left:193.920000pt;}
.x4d_c00274{left:196.320000pt;}
.x7f_c00274{left:197.520000pt;}
.x79_c00274{left:199.200000pt;}
.xac_c00274{left:202.800000pt;}
.x9b_c00274{left:205.440000pt;}
.x3c_c00274{left:210.240000pt;}
.xa5_c00274{left:213.120000pt;}
.x4_c00274{left:214.320000pt;}
.x56_c00274{left:217.440000pt;}
.x92_c00274{left:219.360000pt;}
.x24_c00274{left:221.280000pt;}
.x19_c00274{left:222.480000pt;}
.x44_c00274{left:224.400000pt;}
.x69_c00274{left:225.360000pt;}
.x61_c00274{left:226.320000pt;}
.xae_c00274{left:228.960000pt;}
.xf_c00274{left:231.600000pt;}
.x3d_c00274{left:234.240000pt;}
.xb2_c00274{left:240.480000pt;}
.xa9_c00274{left:244.800000pt;}
.x4e_c00274{left:246.480000pt;}
.x80_c00274{left:247.440000pt;}
.x75_c00274{left:248.880000pt;}
.x5_c00274{left:252.720000pt;}
.x57_c00274{left:254.160000pt;}
.x25_c00274{left:257.040000pt;}
.x6e_c00274{left:259.440000pt;}
.x6_c00274{left:263.760000pt;}
.x9c_c00274{left:266.880000pt;}
.x45_c00274{left:268.320000pt;}
.x10_c00274{left:270.240000pt;}
.x7a_c00274{left:271.200000pt;}
.xa0_c00274{left:272.160000pt;}
.xaf_c00274{left:274.080000pt;}
.x2d_c00274{left:275.520000pt;}
.x1a_c00274{left:277.680000pt;}
.x6a_c00274{left:280.800000pt;}
.x81_c00274{left:282.480000pt;}
.x99_c00274{left:284.400000pt;}
.x76_c00274{left:285.840000pt;}
.x26_c00274{left:288.240000pt;}
.x4f_c00274{left:290.160000pt;}
.x46_c00274{left:291.360000pt;}
.x7d_c00274{left:293.040000pt;}
.x6f_c00274{left:294.960000pt;}
.x2e_c00274{left:296.640000pt;}
.x1b_c00274{left:301.920000pt;}
.x7_c00274{left:309.360000pt;}
.x82_c00274{left:312.720000pt;}
.x11_c00274{left:315.360000pt;}
.x9d_c00274{left:316.320000pt;}
.x1c_c00274{left:319.920000pt;}
.x3e_c00274{left:322.800000pt;}
.x93_c00274{left:325.200000pt;}
.x35_c00274{left:327.600000pt;}
.x27_c00274{left:330.240000pt;}
.x89_c00274{left:332.160000pt;}
.x58_c00274{left:335.520000pt;}
.x94_c00274{left:336.720000pt;}
.x59_c00274{left:340.560000pt;}
.x6b_c00274{left:341.520000pt;}
.x8_c00274{left:344.400000pt;}
.x1d_c00274{left:346.560000pt;}
.x36_c00274{left:347.760000pt;}
.x83_c00274{left:349.680000pt;}
.x50_c00274{left:350.640000pt;}
.x28_c00274{left:354.240000pt;}
.x2f_c00274{left:357.120000pt;}
.x12_c00274{left:358.320000pt;}
.x3f_c00274{left:360.240000pt;}
.x47_c00274{left:361.200000pt;}
.xaa_c00274{left:362.640000pt;}
.xa6_c00274{left:366.480000pt;}
.x1e_c00274{left:368.160000pt;}
.x5a_c00274{left:370.800000pt;}
.x29_c00274{left:372.480000pt;}
.x9_c00274{left:375.360000pt;}
.x7b_c00274{left:376.800000pt;}
.x8a_c00274{left:379.920000pt;}
.x51_c00274{left:384.720000pt;}
.x48_c00274{left:388.560000pt;}
.x37_c00274{left:392.400000pt;}
.x30_c00274{left:393.600000pt;}
.x13_c00274{left:397.200000pt;}
.xb0_c00274{left:399.120000pt;}
.x8b_c00274{left:401.520000pt;}
.x95_c00274{left:406.080000pt;}
.x52_c00274{left:407.280000pt;}
.x40_c00274{left:412.560000pt;}
.x1f_c00274{left:415.920000pt;}
.x5b_c00274{left:419.040000pt;}
.xa_c00274{left:421.200000pt;}
.x62_c00274{left:422.160000pt;}
.x14_c00274{left:423.360000pt;}
.x84_c00274{left:426.240000pt;}
.x20_c00274{left:429.120000pt;}
.x5c_c00274{left:430.080000pt;}
.xa1_c00274{left:432.000000pt;}
.x96_c00274{left:433.440000pt;}
.x31_c00274{left:434.640000pt;}
.x8c_c00274{left:435.840000pt;}
.x7e_c00274{left:438.480000pt;}
.x6c_c00274{left:440.640000pt;}
.xb1_c00274{left:441.600000pt;}
.xa2_c00274{left:443.760000pt;}
.x8d_c00274{left:444.960000pt;}
.x2a_c00274{left:446.880000pt;}
.x41_c00274{left:449.040000pt;}
.x49_c00274{left:451.200000pt;}
.x77_c00274{left:452.160000pt;}
.x21_c00274{left:453.840000pt;}
.x97_c00274{left:458.640000pt;}
.x53_c00274{left:460.320000pt;}
.xb_c00274{left:461.280000pt;}
.x6d_c00274{left:462.480000pt;}
.xa7_c00274{left:464.640000pt;}
.xa3_c00274{left:465.840000pt;}
.x63_c00274{left:467.280000pt;}
.x38_c00274{left:469.440000pt;}
.x42_c00274{left:470.880000pt;}
.x15_c00274{left:473.280000pt;}
.x54_c00274{left:475.200000pt;}
.xab_c00274{left:478.560000pt;}
.x85_c00274{left:479.520000pt;}
.x70_c00274{left:480.960000pt;}
.x5d_c00274{left:484.320000pt;}
.x8e_c00274{left:485.760000pt;}
.x9e_c00274{left:508.560000pt;}
.x64_c00274{left:510.720000pt;}
.x65_c00274{left:529.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_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_4ab86c84425994a9e06b01c2.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;}
.mf6_c00275{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);}
.m4a_c00275{transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);}
.m110_c00275{transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105365,0.000000,0.000000,0.250000,0,0);}
.m112_c00275{transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120545,0.000000,0.000000,0.250000,0,0);}
.ma4_c00275{transform:matrix(0.123355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123355,0.000000,0.000000,0.250000,0,0);}
.mb3_c00275{transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136455,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);}
.mf5_c00275{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);}
.m7e_c00275{transform:matrix(0.149345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149345,0.000000,0.000000,0.250000,0,0);}
.mf8_c00275{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);}
.mb4_c00275{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m5c_c00275{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);}
.m7d_c00275{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);}
.m74_c00275{transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);}
.mac_c00275{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);}
.me4_c00275{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);}
.m18_c00275{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);}
.m9d_c00275{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);}
.mce_c00275{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);}
.me7_c00275{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);}
.ma3_c00275{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);}
.mc1_c00275{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);}
.mf_c00275{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);}
.m2b_c00275{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);}
.md1_c00275{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);}
.m13_c00275{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);}
.mbd_c00275{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);}
.me5_c00275{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);}
.m90_c00275{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);}
.mc4_c00275{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);}
.m81_c00275{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.mb1_c00275{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);}
.m94_c00275{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);}
.mff_c00275{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);}
.mf4_c00275{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);}
.md3_c00275{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);}
.mbe_c00275{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);}
.mdf_c00275{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);}
.m95_c00275{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00275{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);}
.me9_c00275{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);}
.mb8_c00275{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);}
.m64_c00275{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);}
.m11_c00275{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);}
.md2_c00275{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);}
.mc6_c00275{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);}
.m48_c00275{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);}
.mb7_c00275{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);}
.m4c_c00275{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);}
.m14_c00275{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);}
.m7b_c00275{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);}
.m92_c00275{transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);}
.m114_c00275{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);}
.mae_c00275{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);}
.m10_c00275{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);}
.m57_c00275{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);}
.mbc_c00275{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);}
.mb0_c00275{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);}
.m4e_c00275{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);}
.maa_c00275{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);}
.m12_c00275{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);}
.m46_c00275{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);}
.m20_c00275{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);}
.m39_c00275{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);}
.mab_c00275{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);}
.m83_c00275{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);}
.m36_c00275{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);}
.m115_c00275{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);}
.m27_c00275{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);}
.md5_c00275{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);}
.mda_c00275{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m9b_c00275{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{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);}
.mc9_c00275{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);}
.m6f_c00275{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);}
.ma6_c00275{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);}
.m86_c00275{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);}
.m72_c00275{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);}
.mcb_c00275{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);}
.m51_c00275{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);}
.m91_c00275{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);}
.m10e_c00275{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);}
.mc_c00275{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);}
.m124_c00275{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);}
.m31_c00275{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);}
.m96_c00275{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);}
.m8c_c00275{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);}
.m4b_c00275{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);}
.md7_c00275{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);}
.m15_c00275{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);}
.m33_c00275{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);}
.mf1_c00275{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);}
.m62_c00275{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);}
.m63_c00275{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);}
.m8a_c00275{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);}
.md9_c00275{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);}
.m79_c00275{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);}
.m78_c00275{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);}
.me1_c00275{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);}
.m38_c00275{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);}
.m71_c00275{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);}
.me6_c00275{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);}
.m116_c00275{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);}
.m7a_c00275{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);}
.m37_c00275{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);}
.m68_c00275{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);}
.m4d_c00275{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);}
.m76_c00275{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);}
.mbb_c00275{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);}
.m60_c00275{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);}
.m87_c00275{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);}
.m43_c00275{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);}
.mc0_c00275{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);}
.m5d_c00275{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);}
.mdd_c00275{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);}
.m50_c00275{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);}
.m6c_c00275{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);}
.md_c00275{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.mdc_c00275{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);}
.m7c_c00275{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);}
.m32_c00275{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);}
.m121_c00275{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);}
.md6_c00275{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);}
.m8b_c00275{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);}
.m10b_c00275{transform:matrix(0.201571,-0.003427,0.004249,0.249964,0,0);-ms-transform:matrix(0.201571,-0.003427,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201571,-0.003427,0.004249,0.249964,0,0);}
.m77_c00275{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);}
.m8e_c00275{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);}
.m49_c00275{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);}
.m122_c00275{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);}
.m70_c00275{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);}
.mad_c00275{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);}
.m1e_c00275{transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{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);}
.mde_c00275{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);}
.mc7_c00275{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);}
.ma9_c00275{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);}
.mca_c00275{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);}
.m85_c00275{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);}
.m2c_c00275{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);}
.m107_c00275{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);}
.mb2_c00275{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);}
.m2e_c00275{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);}
.m88_c00275{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);}
.ma0_c00275{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);}
.m93_c00275{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);}
.m89_c00275{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);}
.m61_c00275{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);}
.m11b_c00275{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);}
.m5b_c00275{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);}
.mb_c00275{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);}
.ma8_c00275{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);}
.mfd_c00275{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);}
.m2d_c00275{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);}
.m10f_c00275{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);}
.m73_c00275{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);}
.md0_c00275{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);}
.m9c_c00275{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);}
.m69_c00275{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);}
.m6d_c00275{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);}
.m123_c00275{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);}
.m9f_c00275{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m117_c00275{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.ma7_c00275{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);}
.m3d_c00275{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);}
.m45_c00275{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);}
.m120_c00275{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);}
.m24_c00275{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);}
.m6e_c00275{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);}
.m8d_c00275{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);}
.ma2_c00275{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);}
.m30_c00275{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);}
.m104_c00275{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);}
.m65_c00275{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);}
.md4_c00275{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);}
.m99_c00275{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);}
.m7_c00275{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);}
.m29_c00275{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);}
.mc8_c00275{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);}
.m28_c00275{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);}
.m1b_c00275{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);}
.mc5_c00275{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);}
.m4_c00275{transform:matrix(0.218031,-0.004361,0.004999,0.249950,0,0);-ms-transform:matrix(0.218031,-0.004361,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218031,-0.004361,0.004999,0.249950,0,0);}
.m9e_c00275{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);}
.m66_c00275{transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);}
.mb5_c00275{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);}
.m4f_c00275{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);}
.m21_c00275{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);}
.me_c00275{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);}
.me3_c00275{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);}
.mf9_c00275{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);}
.mf3_c00275{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);}
.m2a_c00275{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);}
.m1d_c00275{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);}
.m9a_c00275{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);}
.m103_c00275{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);}
.m113_c00275{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);}
.m59_c00275{transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{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);}
.m5_c00275{transform:matrix(0.225355,-0.004507,0.004999,0.249950,0,0);-ms-transform:matrix(0.225355,-0.004507,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225355,-0.004507,0.004999,0.249950,0,0);}
.m109_c00275{transform:matrix(0.225637,-0.003836,0.004249,0.249964,0,0);-ms-transform:matrix(0.225637,-0.003836,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225637,-0.003836,0.004249,0.249964,0,0);}
.m75_c00275{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);}
.m97_c00275{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);}
.mfc_c00275{transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);}
.m58_c00275{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);}
.m3b_c00275{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);}
.m34_c00275{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);}
.m3e_c00275{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);}
.m1a_c00275{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);}
.m55_c00275{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);}
.m53_c00275{transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{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);}
.m11a_c00275{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);}
.mfe_c00275{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);}
.m54_c00275{transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{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);}
.m3c_c00275{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);}
.m5a_c00275{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.m98_c00275{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);}
.meb_c00275{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m47_c00275{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);}
.mec_c00275{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);}
.md8_c00275{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);}
.m19_c00275{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);}
.mea_c00275{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m6b_c00275{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);}
.mf0_c00275{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);}
.m11e_c00275{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m125_c00275{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.m56_c00275{transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);}
.m82_c00275{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);}
.m5f_c00275{transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);}
.m8f_c00275{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);}
.m80_c00275{transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);}
.me8_c00275{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00275{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);}
.mc3_c00275{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.maf_c00275{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);}
.me2_c00275{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);}
.me0_c00275{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);}
.m111_c00275{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);}
.mb6_c00275{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);}
.mfb_c00275{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);}
.m3a_c00275{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);}
.ma_c00275{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m10c_c00275{transform:matrix(0.245645,-0.004176,0.004249,0.249964,0,0);-ms-transform:matrix(0.245645,-0.004176,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245645,-0.004176,0.004249,0.249964,0,0);}
.m16_c00275{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);}
.m52_c00275{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.med_c00275{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);}
.ma5_c00275{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.mbf_c00275{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);}
.m2f_c00275{transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);}
.mef_c00275{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m108_c00275{transform:matrix(0.257278,-0.004374,0.004249,0.249964,0,0);-ms-transform:matrix(0.257278,-0.004374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257278,-0.004374,0.004249,0.249964,0,0);}
.m1c_c00275{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);}
.m40_c00275{transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);}
.m118_c00275{transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);}
.mf2_c00275{transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);}
.mba_c00275{transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267015,0.000000,0.000000,0.250000,0,0);}
.mcf_c00275{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);}
.m7f_c00275{transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268775,0.000000,0.000000,0.250000,0,0);}
.mdb_c00275{transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);}
.m10a_c00275{transform:matrix(0.278255,-0.004730,0.004249,0.249964,0,0);-ms-transform:matrix(0.278255,-0.004730,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278255,-0.004730,0.004249,0.249964,0,0);}
.m6a_c00275{transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);}
.mb9_c00275{transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287335,0.000000,0.000000,0.250000,0,0);}
.m84_c00275{transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291410,0.000000,0.000000,0.250000,0,0);}
.m11c_c00275{transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294645,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00275{transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);}
.m102_c00275{transform:matrix(0.306915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306915,0.000000,0.000000,0.250000,0,0);}
.mc2_c00275{transform:matrix(0.308555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308555,0.000000,0.000000,0.250000,0,0);}
.m105_c00275{transform:matrix(0.313150,-0.005324,0.004249,0.249964,0,0);-ms-transform:matrix(0.313150,-0.005324,0.004249,0.249964,0,0);-webkit-transform:matrix(0.313150,-0.005324,0.004249,0.249964,0,0);}
.m67_c00275{transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00275{transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316760,0.000000,0.000000,0.250000,0,0);}
.m100_c00275{transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);}
.m11d_c00275{transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323905,0.000000,0.000000,0.250000,0,0);}
.m11f_c00275{transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327600,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.327945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327945,0.000000,0.000000,0.250000,0,0);}
.mee_c00275{transform:matrix(0.329980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329980,0.000000,0.000000,0.250000,0,0);}
.m119_c00275{transform:matrix(0.341355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341355,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{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);}
.m106_c00275{transform:matrix(0.350254,-0.005954,0.004249,0.249964,0,0);-ms-transform:matrix(0.350254,-0.005954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.350254,-0.005954,0.004249,0.249964,0,0);}
.m101_c00275{transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354595,0.000000,0.000000,0.250000,0,0);}
.ma1_c00275{transform:matrix(0.356515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356515,0.000000,0.000000,0.250000,0,0);}
.mf7_c00275{transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.468555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468555,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.478810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478810,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.610815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610815,0.000000,0.000000,0.250000,0,0);}
.mfa_c00275{transform:matrix(0.691050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691050,0.000000,0.000000,0.250000,0,0);}
.m10d_c00275{transform:matrix(0.712787,-0.012117,0.004249,0.249964,0,0);-ms-transform:matrix(0.712787,-0.012117,0.004249,0.249964,0,0);-webkit-transform:matrix(0.712787,-0.012117,0.004249,0.249964,0,0);}
.m6_c00275{transform:matrix(1.121276,-0.022426,0.004999,0.249950,0,0);-ms-transform:matrix(1.121276,-0.022426,0.004999,0.249950,0,0);-webkit-transform:matrix(1.121276,-0.022426,0.004999,0.249950,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;}
.fs2_c00275{font-size:22.050000px;}
.fs0_c00275{font-size:42.000000px;}
.fsf_c00275{font-size:47.250000px;}
.fs13_c00275{font-size:49.350000px;}
.fs10_c00275{font-size:51.450000px;}
.fs12_c00275{font-size:53.550000px;}
.fs11_c00275{font-size:53.557737px;}
.fs5_c00275{font-size:59.850000px;}
.fs4_c00275{font-size:60.900000px;}
.fsc_c00275{font-size:64.050000px;}
.fs9_c00275{font-size:65.100000px;}
.fs3_c00275{font-size:66.150000px;}
.fs6_c00275{font-size:67.200000px;}
.fs8_c00275{font-size:68.250000px;}
.fsd_c00275{font-size:69.300000px;}
.fs7_c00275{font-size:70.350000px;}
.fse_c00275{font-size:71.400000px;}
.fsb_c00275{font-size:73.500000px;}
.fsa_c00275{font-size:85.050000px;}
.fs1_c00275{font-size:100.820158px;}
.y0_c00275{bottom:0.000000px;}
.y3e_c00275{bottom:156.751500px;}
.y3d_c00275{bottom:174.150000px;}
.y3c_c00275{bottom:197.295000px;}
.y3b_c00275{bottom:215.541000px;}
.y3a_c00275{bottom:238.152000px;}
.y31_c00275{bottom:254.070000px;}
.y32_c00275{bottom:254.640792px;}
.y33_c00275{bottom:254.850275px;}
.y34_c00275{bottom:255.470001px;}
.y35_c00275{bottom:255.869586px;}
.y36_c00275{bottom:256.819410px;}
.y37_c00275{bottom:257.217210px;}
.y38_c00275{bottom:257.754546px;}
.y39_c00275{bottom:258.073322px;}
.y30_c00275{bottom:279.019500px;}
.y2f_c00275{bottom:296.568000px;}
.y2e_c00275{bottom:354.123000px;}
.y2d_c00275{bottom:377.922000px;}
.y2c_c00275{bottom:400.345500px;}
.y2b_c00275{bottom:422.746500px;}
.y2a_c00275{bottom:445.965000px;}
.y29_c00275{bottom:468.358500px;}
.y28_c00275{bottom:488.076000px;}
.y27_c00275{bottom:513.793500px;}
.y26_c00275{bottom:537.144000px;}
.y25_c00275{bottom:559.354500px;}
.y24_c00275{bottom:582.277500px;}
.y23_c00275{bottom:604.948500px;}
.y22_c00275{bottom:628.198500px;}
.y21_c00275{bottom:650.080500px;}
.y20_c00275{bottom:672.925500px;}
.y1f_c00275{bottom:696.168000px;}
.y1e_c00275{bottom:718.123500px;}
.y1d_c00275{bottom:740.952000px;}
.y11_c00275{bottom:761.914500px;}
.y12_c00275{bottom:762.396000px;}
.y13_c00275{bottom:762.475500px;}
.y14_c00275{bottom:762.598500px;}
.y15_c00275{bottom:763.303500px;}
.y16_c00275{bottom:763.573500px;}
.y17_c00275{bottom:763.740000px;}
.y18_c00275{bottom:763.857000px;}
.y19_c00275{bottom:764.550000px;}
.y1a_c00275{bottom:764.782500px;}
.y1b_c00275{bottom:764.979000px;}
.y1c_c00275{bottom:765.157500px;}
.y10_c00275{bottom:786.124500px;}
.y7_c00275{bottom:807.270000px;}
.y8_c00275{bottom:807.705000px;}
.y9_c00275{bottom:808.227000px;}
.ya_c00275{bottom:808.528500px;}
.yb_c00275{bottom:809.191500px;}
.yc_c00275{bottom:809.449500px;}
.yd_c00275{bottom:810.015000px;}
.ye_c00275{bottom:810.559500px;}
.yf_c00275{bottom:811.273500px;}
.y6_c00275{bottom:831.949500px;}
.y5_c00275{bottom:859.143000px;}
.y2_c00275{bottom:869.338500px;}
.y3_c00275{bottom:871.437810px;}
.y4_c00275{bottom:873.736140px;}
.y1_c00275{bottom:922.908000px;}
.h4_c00275{height:22.050000px;}
.h2_c00275{height:42.000000px;}
.h11_c00275{height:47.250000px;}
.h15_c00275{height:49.350000px;}
.h12_c00275{height:51.450000px;}
.h14_c00275{height:53.550000px;}
.h13_c00275{height:53.557737px;}
.h7_c00275{height:59.850000px;}
.h6_c00275{height:60.900000px;}
.he_c00275{height:64.050000px;}
.hb_c00275{height:65.100000px;}
.h5_c00275{height:66.150000px;}
.h8_c00275{height:67.200000px;}
.ha_c00275{height:68.250000px;}
.hf_c00275{height:69.300000px;}
.h9_c00275{height:70.350000px;}
.h10_c00275{height:71.400000px;}
.hd_c00275{height:73.500000px;}
.hc_c00275{height:85.050000px;}
.h3_c00275{height:100.820158px;}
.h0_c00275{height:1008.450000px;}
.h1_c00275{height:1008.750000px;}
.w0_c00275{width:696.000000px;}
.x0_c00275{left:0.000000px;}
.x75_c00275{left:127.710000px;}
.x7e_c00275{left:136.890000px;}
.x8d_c00275{left:145.260000px;}
.x50_c00275{left:148.770000px;}
.x85_c00275{left:150.660000px;}
.x5_c00275{left:155.164500px;}
.xb_c00275{left:156.600000px;}
.x1d_c00275{left:157.680000px;}
.x32_c00275{left:159.840000px;}
.x3d_c00275{left:176.580000px;}
.xc_c00275{left:177.930000px;}
.x51_c00275{left:179.280000px;}
.x76_c00275{left:184.410000px;}
.x95_c00275{left:186.030000px;}
.x33_c00275{left:191.430000px;}
.x1e_c00275{left:193.590000px;}
.x67_c00275{left:195.750000px;}
.x3a_c00275{left:198.720000px;}
.x3e_c00275{left:202.230000px;}
.xd_c00275{left:203.580000px;}
.x8e_c00275{left:208.980000px;}
.x60_c00275{left:211.410000px;}
.x5d_c00275{left:212.490000px;}
.x57_c00275{left:216.000000px;}
.x81_c00275{left:221.670000px;}
.x1f_c00275{left:225.990000px;}
.x96_c00275{left:227.340000px;}
.x86_c00275{left:228.960000px;}
.x6f_c00275{left:233.010000px;}
.x77_c00275{left:234.090000px;}
.x2a_c00275{left:236.928000px;}
.x3f_c00275{left:239.220000px;}
.x61_c00275{left:246.240000px;}
.x68_c00275{left:247.320000px;}
.x82_c00275{left:248.400000px;}
.x3b_c00275{left:249.750000px;}
.xe_c00275{left:251.640000px;}
.x87_c00275{left:253.260000px;}
.x2b_c00275{left:254.443500px;}
.x97_c00275{left:256.500000px;}
.x6_c00275{left:260.130000px;}
.x17_c00275{left:262.278000px;}
.xa0_c00275{left:268.650000px;}
.x98_c00275{left:270.000000px;}
.x78_c00275{left:273.240000px;}
.x69_c00275{left:276.210000px;}
.x40_c00275{left:279.180000px;}
.x34_c00275{left:282.150000px;}
.x58_c00275{left:285.120000px;}
.x20_c00275{left:287.010000px;}
.x52_c00275{left:290.520000px;}
.x41_c00275{left:292.680000px;}
.x18_c00275{left:295.758000px;}
.xa1_c00275{left:297.810000px;}
.xf_c00275{left:303.210000px;}
.x79_c00275{left:304.560000px;}
.x35_c00275{left:305.910000px;}
.x99_c00275{left:307.800000px;}
.x83_c00275{left:311.310000px;}
.x21_c00275{left:312.390000px;}
.x62_c00275{left:316.170000px;}
.xa2_c00275{left:317.520000px;}
.x49_c00275{left:324.270000px;}
.x88_c00275{left:326.430000px;}
.x8f_c00275{left:328.050000px;}
.x42_c00275{left:334.260000px;}
.x10_c00275{left:336.150000px;}
.x22_c00275{left:338.580000px;}
.x9a_c00275{left:339.930000px;}
.x3c_c00275{left:342.090000px;}
.x70_c00275{left:346.680000px;}
.x59_c00275{left:348.030000px;}
.x90_c00275{left:351.000000px;}
.x23_c00275{left:352.350000px;}
.x53_c00275{left:353.970000px;}
.x2c_c00275{left:355.150500px;}
.x11_c00275{left:360.180000px;}
.x36_c00275{left:362.340000px;}
.x63_c00275{left:365.310000px;}
.xa9_c00275{left:367.470000px;}
.x19_c00275{left:369.471000px;}
.x9b_c00275{left:371.250000px;}
.x7_c00275{left:375.046500px;}
.xa3_c00275{left:381.510000px;}
.x64_c00275{left:384.210000px;}
.x43_c00275{left:385.560000px;}
.x71_c00275{left:387.450000px;}
.x4a_c00275{left:388.530000px;}
.x8_c00275{left:392.040000px;}
.x2d_c00275{left:393.732000px;}
.x24_c00275{left:395.280000px;}
.x91_c00275{left:396.630000px;}
.x1a_c00275{left:398.106000px;}
.xa4_c00275{left:399.330000px;}
.x54_c00275{left:406.080000px;}
.x5e_c00275{left:410.400000px;}
.x6a_c00275{left:412.560000px;}
.x9c_c00275{left:415.530000px;}
.x4b_c00275{left:416.610000px;}
.x12_c00275{left:418.230000px;}
.x92_c00275{left:422.820000px;}
.x65_c00275{left:424.170000px;}
.x44_c00275{left:426.600000px;}
.x84_c00275{left:429.300000px;}
.xab_c00275{left:431.730000px;}
.x25_c00275{left:433.350000px;}
.xaf_c00275{left:435.240000px;}
.x9_c00275{left:439.830000px;}
.x72_c00275{left:442.800000px;}
.x13_c00275{left:445.770000px;}
.x9d_c00275{left:447.120000px;}
.x6b_c00275{left:449.010000px;}
.x45_c00275{left:454.410000px;}
.x7a_c00275{left:456.300000px;}
.xbc_c00275{left:459.000000px;}
.xac_c00275{left:460.080000px;}
.xa_c00275{left:461.970000px;}
.x26_c00275{left:472.500000px;}
.x4c_c00275{left:476.820000px;}
.x5a_c00275{left:479.790000px;}
.xb1_c00275{left:482.214000px;}
.x6c_c00275{left:483.570000px;}
.x9e_c00275{left:485.190000px;}
.x37_c00275{left:487.350000px;}
.xbd_c00275{left:488.700000px;}
.xb4_c00275{left:490.590000px;}
.x1_c00275{left:493.560000px;}
.xb0_c00275{left:495.180000px;}
.xa5_c00275{left:496.800000px;}
.xba_c00275{left:497.880000px;}
.x7b_c00275{left:500.850000px;}
.x27_c00275{left:503.820000px;}
.x73_c00275{left:504.900000px;}
.x89_c00275{left:506.250000px;}
.xbe_c00275{left:508.950000px;}
.xad_c00275{left:511.650000px;}
.x4d_c00275{left:512.730000px;}
.xb9_c00275{left:515.700000px;}
.x93_c00275{left:516.780000px;}
.x1b_c00275{left:521.484000px;}
.xb6_c00275{left:523.800000px;}
.x55_c00275{left:525.420000px;}
.x7c_c00275{left:528.930000px;}
.x2e_c00275{left:533.311500px;}
.x5b_c00275{left:538.380000px;}
.xa6_c00275{left:540.540000px;}
.x14_c00275{left:541.620000px;}
.xb5_c00275{left:542.970000px;}
.x46_c00275{left:544.860000px;}
.x7f_c00275{left:546.210000px;}
.x8a_c00275{left:548.100000px;}
.x6d_c00275{left:552.420000px;}
.x9f_c00275{left:555.930000px;}
.x15_c00275{left:559.980000px;}
.x2_c00275{left:561.060000px;}
.xb7_c00275{left:562.680000px;}
.xa7_c00275{left:565.380000px;}
.x2f_c00275{left:566.521500px;}
.x66_c00275{left:568.620000px;}
.x74_c00275{left:574.830000px;}
.x28_c00275{left:576.720000px;}
.x6e_c00275{left:579.150000px;}
.x47_c00275{left:581.850000px;}
.xaa_c00275{left:583.740000px;}
.xb2_c00275{left:584.991000px;}
.x94_c00275{left:586.170000px;}
.x38_c00275{left:587.790000px;}
.x3_c00275{left:589.410000px;}
.xae_c00275{left:592.110000px;}
.x8b_c00275{left:593.460000px;}
.x30_c00275{left:594.600000px;}
.x4e_c00275{left:595.890000px;}
.xbb_c00275{left:597.510000px;}
.x1c_c00275{left:600.859500px;}
.x16_c00275{left:604.260000px;}
.x56_c00275{left:605.340000px;}
.x29_c00275{left:607.500000px;}
.x5f_c00275{left:608.580000px;}
.x4f_c00275{left:611.010000px;}
.x39_c00275{left:612.360000px;}
.x8c_c00275{left:613.980000px;}
.x4_c00275{left:616.410000px;}
.x80_c00275{left:617.760000px;}
.x31_c00275{left:620.011500px;}
.x7d_c00275{left:621.540000px;}
.x48_c00275{left:623.430000px;}
.x5c_c00275{left:626.670000px;}
.xb3_c00275{left:635.350500px;}
.xa8_c00275{left:645.840000px;}
.xb8_c00275{left:652.050000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.fs2_c00275{font-size:19.600000pt;}
.fs0_c00275{font-size:37.333333pt;}
.fsf_c00275{font-size:42.000000pt;}
.fs13_c00275{font-size:43.866667pt;}
.fs10_c00275{font-size:45.733333pt;}
.fs12_c00275{font-size:47.600000pt;}
.fs11_c00275{font-size:47.606878pt;}
.fs5_c00275{font-size:53.200000pt;}
.fs4_c00275{font-size:54.133333pt;}
.fsc_c00275{font-size:56.933333pt;}
.fs9_c00275{font-size:57.866667pt;}
.fs3_c00275{font-size:58.800000pt;}
.fs6_c00275{font-size:59.733333pt;}
.fs8_c00275{font-size:60.666667pt;}
.fsd_c00275{font-size:61.600000pt;}
.fs7_c00275{font-size:62.533333pt;}
.fse_c00275{font-size:63.466667pt;}
.fsb_c00275{font-size:65.333333pt;}
.fsa_c00275{font-size:75.600000pt;}
.fs1_c00275{font-size:89.617918pt;}
.y0_c00275{bottom:0.000000pt;}
.y3e_c00275{bottom:139.334667pt;}
.y3d_c00275{bottom:154.800000pt;}
.y3c_c00275{bottom:175.373333pt;}
.y3b_c00275{bottom:191.592000pt;}
.y3a_c00275{bottom:211.690667pt;}
.y31_c00275{bottom:225.840000pt;}
.y32_c00275{bottom:226.347371pt;}
.y33_c00275{bottom:226.533577pt;}
.y34_c00275{bottom:227.084445pt;}
.y35_c00275{bottom:227.439632pt;}
.y36_c00275{bottom:228.283920pt;}
.y37_c00275{bottom:228.637520pt;}
.y38_c00275{bottom:229.115152pt;}
.y39_c00275{bottom:229.398508pt;}
.y30_c00275{bottom:248.017333pt;}
.y2f_c00275{bottom:263.616000pt;}
.y2e_c00275{bottom:314.776000pt;}
.y2d_c00275{bottom:335.930667pt;}
.y2c_c00275{bottom:355.862667pt;}
.y2b_c00275{bottom:375.774667pt;}
.y2a_c00275{bottom:396.413333pt;}
.y29_c00275{bottom:416.318667pt;}
.y28_c00275{bottom:433.845333pt;}
.y27_c00275{bottom:456.705333pt;}
.y26_c00275{bottom:477.461333pt;}
.y25_c00275{bottom:497.204000pt;}
.y24_c00275{bottom:517.580000pt;}
.y23_c00275{bottom:537.732000pt;}
.y22_c00275{bottom:558.398667pt;}
.y21_c00275{bottom:577.849333pt;}
.y20_c00275{bottom:598.156000pt;}
.y1f_c00275{bottom:618.816000pt;}
.y1e_c00275{bottom:638.332000pt;}
.y1d_c00275{bottom:658.624000pt;}
.y11_c00275{bottom:677.257333pt;}
.y12_c00275{bottom:677.685333pt;}
.y13_c00275{bottom:677.756000pt;}
.y14_c00275{bottom:677.865333pt;}
.y15_c00275{bottom:678.492000pt;}
.y16_c00275{bottom:678.732000pt;}
.y17_c00275{bottom:678.880000pt;}
.y18_c00275{bottom:678.984000pt;}
.y19_c00275{bottom:679.600000pt;}
.y1a_c00275{bottom:679.806667pt;}
.y1b_c00275{bottom:679.981333pt;}
.y1c_c00275{bottom:680.140000pt;}
.y10_c00275{bottom:698.777333pt;}
.y7_c00275{bottom:717.573333pt;}
.y8_c00275{bottom:717.960000pt;}
.y9_c00275{bottom:718.424000pt;}
.ya_c00275{bottom:718.692000pt;}
.yb_c00275{bottom:719.281333pt;}
.yc_c00275{bottom:719.510667pt;}
.yd_c00275{bottom:720.013333pt;}
.ye_c00275{bottom:720.497333pt;}
.yf_c00275{bottom:721.132000pt;}
.y6_c00275{bottom:739.510667pt;}
.y5_c00275{bottom:763.682667pt;}
.y2_c00275{bottom:772.745333pt;}
.y3_c00275{bottom:774.611387pt;}
.y4_c00275{bottom:776.654347pt;}
.y1_c00275{bottom:820.362667pt;}
.h4_c00275{height:19.600000pt;}
.h2_c00275{height:37.333333pt;}
.h11_c00275{height:42.000000pt;}
.h15_c00275{height:43.866667pt;}
.h12_c00275{height:45.733333pt;}
.h14_c00275{height:47.600000pt;}
.h13_c00275{height:47.606878pt;}
.h7_c00275{height:53.200000pt;}
.h6_c00275{height:54.133333pt;}
.he_c00275{height:56.933333pt;}
.hb_c00275{height:57.866667pt;}
.h5_c00275{height:58.800000pt;}
.h8_c00275{height:59.733333pt;}
.ha_c00275{height:60.666667pt;}
.hf_c00275{height:61.600000pt;}
.h9_c00275{height:62.533333pt;}
.h10_c00275{height:63.466667pt;}
.hd_c00275{height:65.333333pt;}
.hc_c00275{height:75.600000pt;}
.h3_c00275{height:89.617918pt;}
.h0_c00275{height:896.400000pt;}
.h1_c00275{height:896.666667pt;}
.w0_c00275{width:618.666667pt;}
.x0_c00275{left:0.000000pt;}
.x75_c00275{left:113.520000pt;}
.x7e_c00275{left:121.680000pt;}
.x8d_c00275{left:129.120000pt;}
.x50_c00275{left:132.240000pt;}
.x85_c00275{left:133.920000pt;}
.x5_c00275{left:137.924000pt;}
.xb_c00275{left:139.200000pt;}
.x1d_c00275{left:140.160000pt;}
.x32_c00275{left:142.080000pt;}
.x3d_c00275{left:156.960000pt;}
.xc_c00275{left:158.160000pt;}
.x51_c00275{left:159.360000pt;}
.x76_c00275{left:163.920000pt;}
.x95_c00275{left:165.360000pt;}
.x33_c00275{left:170.160000pt;}
.x1e_c00275{left:172.080000pt;}
.x67_c00275{left:174.000000pt;}
.x3a_c00275{left:176.640000pt;}
.x3e_c00275{left:179.760000pt;}
.xd_c00275{left:180.960000pt;}
.x8e_c00275{left:185.760000pt;}
.x60_c00275{left:187.920000pt;}
.x5d_c00275{left:188.880000pt;}
.x57_c00275{left:192.000000pt;}
.x81_c00275{left:197.040000pt;}
.x1f_c00275{left:200.880000pt;}
.x96_c00275{left:202.080000pt;}
.x86_c00275{left:203.520000pt;}
.x6f_c00275{left:207.120000pt;}
.x77_c00275{left:208.080000pt;}
.x2a_c00275{left:210.602667pt;}
.x3f_c00275{left:212.640000pt;}
.x61_c00275{left:218.880000pt;}
.x68_c00275{left:219.840000pt;}
.x82_c00275{left:220.800000pt;}
.x3b_c00275{left:222.000000pt;}
.xe_c00275{left:223.680000pt;}
.x87_c00275{left:225.120000pt;}
.x2b_c00275{left:226.172000pt;}
.x97_c00275{left:228.000000pt;}
.x6_c00275{left:231.226667pt;}
.x17_c00275{left:233.136000pt;}
.xa0_c00275{left:238.800000pt;}
.x98_c00275{left:240.000000pt;}
.x78_c00275{left:242.880000pt;}
.x69_c00275{left:245.520000pt;}
.x40_c00275{left:248.160000pt;}
.x34_c00275{left:250.800000pt;}
.x58_c00275{left:253.440000pt;}
.x20_c00275{left:255.120000pt;}
.x52_c00275{left:258.240000pt;}
.x41_c00275{left:260.160000pt;}
.x18_c00275{left:262.896000pt;}
.xa1_c00275{left:264.720000pt;}
.xf_c00275{left:269.520000pt;}
.x79_c00275{left:270.720000pt;}
.x35_c00275{left:271.920000pt;}
.x99_c00275{left:273.600000pt;}
.x83_c00275{left:276.720000pt;}
.x21_c00275{left:277.680000pt;}
.x62_c00275{left:281.040000pt;}
.xa2_c00275{left:282.240000pt;}
.x49_c00275{left:288.240000pt;}
.x88_c00275{left:290.160000pt;}
.x8f_c00275{left:291.600000pt;}
.x42_c00275{left:297.120000pt;}
.x10_c00275{left:298.800000pt;}
.x22_c00275{left:300.960000pt;}
.x9a_c00275{left:302.160000pt;}
.x3c_c00275{left:304.080000pt;}
.x70_c00275{left:308.160000pt;}
.x59_c00275{left:309.360000pt;}
.x90_c00275{left:312.000000pt;}
.x23_c00275{left:313.200000pt;}
.x53_c00275{left:314.640000pt;}
.x2c_c00275{left:315.689333pt;}
.x11_c00275{left:320.160000pt;}
.x36_c00275{left:322.080000pt;}
.x63_c00275{left:324.720000pt;}
.xa9_c00275{left:326.640000pt;}
.x19_c00275{left:328.418667pt;}
.x9b_c00275{left:330.000000pt;}
.x7_c00275{left:333.374667pt;}
.xa3_c00275{left:339.120000pt;}
.x64_c00275{left:341.520000pt;}
.x43_c00275{left:342.720000pt;}
.x71_c00275{left:344.400000pt;}
.x4a_c00275{left:345.360000pt;}
.x8_c00275{left:348.480000pt;}
.x2d_c00275{left:349.984000pt;}
.x24_c00275{left:351.360000pt;}
.x91_c00275{left:352.560000pt;}
.x1a_c00275{left:353.872000pt;}
.xa4_c00275{left:354.960000pt;}
.x54_c00275{left:360.960000pt;}
.x5e_c00275{left:364.800000pt;}
.x6a_c00275{left:366.720000pt;}
.x9c_c00275{left:369.360000pt;}
.x4b_c00275{left:370.320000pt;}
.x12_c00275{left:371.760000pt;}
.x92_c00275{left:375.840000pt;}
.x65_c00275{left:377.040000pt;}
.x44_c00275{left:379.200000pt;}
.x84_c00275{left:381.600000pt;}
.xab_c00275{left:383.760000pt;}
.x25_c00275{left:385.200000pt;}
.xaf_c00275{left:386.880000pt;}
.x9_c00275{left:390.960000pt;}
.x72_c00275{left:393.600000pt;}
.x13_c00275{left:396.240000pt;}
.x9d_c00275{left:397.440000pt;}
.x6b_c00275{left:399.120000pt;}
.x45_c00275{left:403.920000pt;}
.x7a_c00275{left:405.600000pt;}
.xbc_c00275{left:408.000000pt;}
.xac_c00275{left:408.960000pt;}
.xa_c00275{left:410.640000pt;}
.x26_c00275{left:420.000000pt;}
.x4c_c00275{left:423.840000pt;}
.x5a_c00275{left:426.480000pt;}
.xb1_c00275{left:428.634667pt;}
.x6c_c00275{left:429.840000pt;}
.x9e_c00275{left:431.280000pt;}
.x37_c00275{left:433.200000pt;}
.xbd_c00275{left:434.400000pt;}
.xb4_c00275{left:436.080000pt;}
.x1_c00275{left:438.720000pt;}
.xb0_c00275{left:440.160000pt;}
.xa5_c00275{left:441.600000pt;}
.xba_c00275{left:442.560000pt;}
.x7b_c00275{left:445.200000pt;}
.x27_c00275{left:447.840000pt;}
.x73_c00275{left:448.800000pt;}
.x89_c00275{left:450.000000pt;}
.xbe_c00275{left:452.400000pt;}
.xad_c00275{left:454.800000pt;}
.x4d_c00275{left:455.760000pt;}
.xb9_c00275{left:458.400000pt;}
.x93_c00275{left:459.360000pt;}
.x1b_c00275{left:463.541333pt;}
.xb6_c00275{left:465.600000pt;}
.x55_c00275{left:467.040000pt;}
.x7c_c00275{left:470.160000pt;}
.x2e_c00275{left:474.054667pt;}
.x5b_c00275{left:478.560000pt;}
.xa6_c00275{left:480.480000pt;}
.x14_c00275{left:481.440000pt;}
.xb5_c00275{left:482.640000pt;}
.x46_c00275{left:484.320000pt;}
.x7f_c00275{left:485.520000pt;}
.x8a_c00275{left:487.200000pt;}
.x6d_c00275{left:491.040000pt;}
.x9f_c00275{left:494.160000pt;}
.x15_c00275{left:497.760000pt;}
.x2_c00275{left:498.720000pt;}
.xb7_c00275{left:500.160000pt;}
.xa7_c00275{left:502.560000pt;}
.x2f_c00275{left:503.574667pt;}
.x66_c00275{left:505.440000pt;}
.x74_c00275{left:510.960000pt;}
.x28_c00275{left:512.640000pt;}
.x6e_c00275{left:514.800000pt;}
.x47_c00275{left:517.200000pt;}
.xaa_c00275{left:518.880000pt;}
.xb2_c00275{left:519.992000pt;}
.x94_c00275{left:521.040000pt;}
.x38_c00275{left:522.480000pt;}
.x3_c00275{left:523.920000pt;}
.xae_c00275{left:526.320000pt;}
.x8b_c00275{left:527.520000pt;}
.x30_c00275{left:528.533333pt;}
.x4e_c00275{left:529.680000pt;}
.xbb_c00275{left:531.120000pt;}
.x1c_c00275{left:534.097333pt;}
.x16_c00275{left:537.120000pt;}
.x56_c00275{left:538.080000pt;}
.x29_c00275{left:540.000000pt;}
.x5f_c00275{left:540.960000pt;}
.x4f_c00275{left:543.120000pt;}
.x39_c00275{left:544.320000pt;}
.x8c_c00275{left:545.760000pt;}
.x4_c00275{left:547.920000pt;}
.x80_c00275{left:549.120000pt;}
.x31_c00275{left:551.121333pt;}
.x7d_c00275{left:552.480000pt;}
.x48_c00275{left:554.160000pt;}
.x5c_c00275{left:557.040000pt;}
.xb3_c00275{left:564.756000pt;}
.xa8_c00275{left:574.080000pt;}
.xb8_c00275{left:579.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_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_2f6c0d3825a5d54c0b922384.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;}
.m88_c00276{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m107_c00276{transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);}
.m115_c00276{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.m137_c00276{transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020390,0.000000,0.000000,0.250000,0,0);}
.mf9_c00276{transform:matrix(0.020910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020910,0.000000,0.000000,0.250000,0,0);}
.m14e_c00276{transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);}
.m171_c00276{transform:matrix(0.024244,-0.000218,0.002250,0.249990,0,0);-ms-transform:matrix(0.024244,-0.000218,0.002250,0.249990,0,0);-webkit-transform:matrix(0.024244,-0.000218,0.002250,0.249990,0,0);}
.m12b_c00276{transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);}
.m150_c00276{transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);}
.m100_c00276{transform:matrix(0.035605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035605,0.000000,0.000000,0.250000,0,0);}
.m159_c00276{transform:matrix(0.035659,-0.000321,0.002250,0.249990,0,0);-ms-transform:matrix(0.035659,-0.000321,0.002250,0.249990,0,0);-webkit-transform:matrix(0.035659,-0.000321,0.002250,0.249990,0,0);}
.mf7_c00276{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);}
.m125_c00276{transform:matrix(0.063890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063890,0.000000,0.000000,0.250000,0,0);}
.mf6_c00276{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);}
.m166_c00276{transform:matrix(0.088246,-0.000794,0.002250,0.249990,0,0);-ms-transform:matrix(0.088246,-0.000794,0.002250,0.249990,0,0);-webkit-transform:matrix(0.088246,-0.000794,0.002250,0.249990,0,0);}
.med_c00276{transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);}
.md2_c00276{transform:matrix(0.098520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098520,0.000000,0.000000,0.250000,0,0);}
.m14d_c00276{transform:matrix(0.098705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098705,0.000000,0.000000,0.250000,0,0);}
.m127_c00276{transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104320,0.000000,0.000000,0.250000,0,0);}
.m11e_c00276{transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);}
.m164_c00276{transform:matrix(0.119055,-0.001071,0.002250,0.249990,0,0);-ms-transform:matrix(0.119055,-0.001071,0.002250,0.249990,0,0);-webkit-transform:matrix(0.119055,-0.001071,0.002250,0.249990,0,0);}
.m10a_c00276{transform:matrix(0.128090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128090,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{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);}
.m147_c00276{transform:matrix(0.138395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138395,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.142945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.143260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143260,0.000000,0.000000,0.250000,0,0);}
.ma3_c00276{transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);}
.m126_c00276{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);}
.m53_c00276{transform:matrix(0.144810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144810,0.000000,0.000000,0.250000,0,0);}
.mf8_c00276{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);}
.m20_c00276{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.mda_c00276{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);}
.m14a_c00276{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);}
.maf_c00276{transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147320,0.000000,0.000000,0.250000,0,0);}
.mc1_c00276{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);}
.m7c_c00276{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.md3_c00276{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);}
.me6_c00276{transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{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);}
.m34_c00276{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);}
.m96_c00276{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);}
.m28_c00276{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);}
.mb5_c00276{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);}
.mcc_c00276{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);}
.m3e_c00276{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);}
.m154_c00276{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);}
.m92_c00276{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);}
.mac_c00276{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);}
.m5e_c00276{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{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);}
.m9f_c00276{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);}
.m56_c00276{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);}
.m51_c00276{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);}
.mba_c00276{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);}
.mfd_c00276{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);}
.m105_c00276{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);}
.mbe_c00276{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);}
.mb2_c00276{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);}
.m62_c00276{transform:matrix(0.164090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164090,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{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);}
.mb1_c00276{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);}
.m151_c00276{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);}
.m98_c00276{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_c00276{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);}
.ma8_c00276{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);}
.m99_c00276{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);}
.m4e_c00276{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);}
.m14f_c00276{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);}
.m21_c00276{transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167315,0.000000,0.000000,0.250000,0,0);}
.m140_c00276{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);}
.m41_c00276{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);}
.m7b_c00276{transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);}
.ma6_c00276{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);}
.m9b_c00276{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);}
.m52_c00276{transform:matrix(0.171015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171015,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{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);}
.m144_c00276{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);}
.m60_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);}
.m124_c00276{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);}
.m3f_c00276{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);}
.ma7_c00276{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);}
.mb4_c00276{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);}
.md_c00276{transform:matrix(0.172938,0.003805,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172938,0.003805,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172938,0.003805,-0.005499,0.249940,0,0);}
.m15f_c00276{transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);-ms-transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);}
.mbb_c00276{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);}
.m66_c00276{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);}
.m5a_c00276{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);}
.mb7_c00276{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);}
.mc0_c00276{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);}
.m130_c00276{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);}
.mdc_c00276{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);}
.mb6_c00276{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);}
.m29_c00276{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);}
.meb_c00276{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);}
.m59_c00276{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);}
.m16_c00276{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);}
.m26_c00276{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);}
.mec_c00276{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);}
.m63_c00276{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);}
.mea_c00276{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);}
.m8d_c00276{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);}
.m7a_c00276{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);}
.m4d_c00276{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);}
.m1f_c00276{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);}
.m6c_c00276{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);}
.m9c_c00276{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);}
.ma4_c00276{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);}
.m9e_c00276{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);}
.m1d_c00276{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);}
.mbc_c00276{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_c00276{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);}
.mb0_c00276{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);}
.md4_c00276{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);}
.m5_c00276{transform:matrix(0.181356,0.003990,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181356,0.003990,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181356,0.003990,-0.005499,0.249940,0,0);}
.m47_c00276{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);}
.m5b_c00276{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.mca_c00276{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);}
.m7e_c00276{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);}
.m153_c00276{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);}
.mfc_c00276{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);}
.mb8_c00276{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);}
.mbd_c00276{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);}
.m35_c00276{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);}
.m64_c00276{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);}
.mfb_c00276{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);}
.m95_c00276{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);}
.mfe_c00276{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);}
.m22_c00276{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);}
.ma9_c00276{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);}
.mc2_c00276{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);}
.maa_c00276{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);}
.mb3_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);}
.m10f_c00276{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);}
.m58_c00276{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);}
.m8f_c00276{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);}
.m1c_c00276{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);}
.m104_c00276{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);}
.m2f_c00276{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);}
.m5f_c00276{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);}
.m10d_c00276{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);}
.mf2_c00276{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);}
.ma5_c00276{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);}
.mde_c00276{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);}
.md7_c00276{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);}
.m23_c00276{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);}
.m80_c00276{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);}
.m61_c00276{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);}
.mdb_c00276{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);}
.me2_c00276{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);}
.m30_c00276{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);}
.m14_c00276{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);}
.me0_c00276{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);}
.m54_c00276{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);}
.m2e_c00276{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);}
.mae_c00276{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);}
.m9a_c00276{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);}
.m19_c00276{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);}
.m7d_c00276{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);}
.m1a_c00276{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);}
.mfa_c00276{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);}
.mab_c00276{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);}
.mcd_c00276{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);}
.me8_c00276{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);}
.m97_c00276{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);}
.m106_c00276{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);}
.m3d_c00276{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);}
.m94_c00276{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);}
.m10c_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);}
.m25_c00276{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);}
.m39_c00276{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);}
.md0_c00276{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);}
.m7f_c00276{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);}
.m65_c00276{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);}
.md9_c00276{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);}
.m146_c00276{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);}
.m117_c00276{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);}
.m85_c00276{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);}
.m103_c00276{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);}
.me5_c00276{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);}
.mcf_c00276{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);}
.m11d_c00276{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);}
.m2d_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);}
.mf1_c00276{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);}
.m8b_c00276{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);}
.ma0_c00276{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);}
.mcb_c00276{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);}
.m10b_c00276{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);}
.mdf_c00276{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);}
.m142_c00276{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);}
.m5c_c00276{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);}
.m13c_c00276{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);}
.m3a_c00276{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);}
.m13d_c00276{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);}
.m12a_c00276{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);}
.m6f_c00276{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);}
.m102_c00276{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);}
.mc9_c00276{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);}
.m4a_c00276{transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);}
.mdd_c00276{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);}
.m13a_c00276{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);}
.m141_c00276{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);}
.m13_c00276{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);}
.m36_c00276{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);}
.m11f_c00276{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);}
.mf3_c00276{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{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);}
.m14b_c00276{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);}
.m31_c00276{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);}
.m3c_c00276{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);}
.m114_c00276{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);}
.m91_c00276{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);}
.m57_c00276{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);}
.mf4_c00276{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);}
.m139_c00276{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);}
.m109_c00276{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);}
.m6d_c00276{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);}
.m8a_c00276{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);}
.m15a_c00276{transform:matrix(0.206082,-0.001855,0.002250,0.249990,0,0);-ms-transform:matrix(0.206082,-0.001855,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206082,-0.001855,0.002250,0.249990,0,0);}
.m143_c00276{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);}
.ma2_c00276{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);}
.m83_c00276{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);}
.m9d_c00276{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);}
.me1_c00276{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);}
.m71_c00276{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);}
.m84_c00276{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);}
.m4c_c00276{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);}
.m6b_c00276{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);}
.m12_c00276{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);}
.m49_c00276{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);}
.mce_c00276{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);}
.m138_c00276{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);}
.me9_c00276{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);}
.m113_c00276{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);}
.m119_c00276{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);}
.m120_c00276{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);}
.m110_c00276{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);}
.m116_c00276{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);}
.m5d_c00276{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);}
.mb9_c00276{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);}
.md1_c00276{transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216670,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{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);}
.m118_c00276{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);}
.m11b_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);}
.m72_c00276{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);}
.m18_c00276{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);}
.m11c_c00276{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);}
.mc6_c00276{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);}
.mc3_c00276{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);}
.m43_c00276{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);}
.m4b_c00276{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.me4_c00276{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);}
.m6e_c00276{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);}
.m15b_c00276{transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);-ms-transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);}
.m32_c00276{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);}
.m17_c00276{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);}
.m69_c00276{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);}
.m2a_c00276{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);}
.md6_c00276{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);}
.m13f_c00276{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);}
.m111_c00276{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);}
.mf0_c00276{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);}
.mc8_c00276{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);}
.m122_c00276{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);}
.m67_c00276{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);}
.m86_c00276{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);}
.md8_c00276{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);}
.m145_c00276{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);}
.m1e_c00276{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);}
.m42_c00276{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);}
.m169_c00276{transform:matrix(0.227341,-0.002046,0.002250,0.249990,0,0);-ms-transform:matrix(0.227341,-0.002046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227341,-0.002046,0.002250,0.249990,0,0);}
.m50_c00276{transform:matrix(0.227765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227765,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{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);}
.m87_c00276{transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);}
.md5_c00276{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);}
.m3b_c00276{transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);}
.mc4_c00276{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);}
.mbf_c00276{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);}
.m108_c00276{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);}
.m123_c00276{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);}
.m157_c00276{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);}
.m112_c00276{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);}
.m10e_c00276{transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);}
.ma1_c00276{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);}
.mc7_c00276{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);}
.m70_c00276{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m11a_c00276{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);}
.mef_c00276{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.mee_c00276{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);}
.m121_c00276{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);}
.m155_c00276{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);}
.mad_c00276{transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{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);}
.m11_c00276{transform:matrix(0.244681,0.005383,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244681,0.005383,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244681,0.005383,-0.005499,0.249940,0,0);}
.m162_c00276{transform:matrix(0.245290,-0.002208,0.002250,0.249990,0,0);-ms-transform:matrix(0.245290,-0.002208,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245290,-0.002208,0.002250,0.249990,0,0);}
.me7_c00276{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);}
.m90_c00276{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);}
.mc5_c00276{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);}
.m77_c00276{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);}
.m14c_c00276{transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{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);}
.m74_c00276{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);}
.m156_c00276{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);}
.m46_c00276{transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);}
.m101_c00276{transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.267815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267815,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.268235,0.005901,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268235,0.005901,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268235,0.005901,-0.005499,0.249940,0,0);}
.me3_c00276{transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.269970,0.005939,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269970,0.005939,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269970,0.005939,-0.005499,0.249940,0,0);}
.m76_c00276{transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);}
.m16e_c00276{transform:matrix(0.272394,-0.002452,0.002250,0.249990,0,0);-ms-transform:matrix(0.272394,-0.002452,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272394,-0.002452,0.002250,0.249990,0,0);}
.m16d_c00276{transform:matrix(0.280129,-0.002521,0.002250,0.249990,0,0);-ms-transform:matrix(0.280129,-0.002521,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280129,-0.002521,0.002250,0.249990,0,0);}
.m152_c00276{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);}
.m44_c00276{transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);}
.m128_c00276{transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);}
.m16f_c00276{transform:matrix(0.289168,-0.002603,0.002250,0.249990,0,0);-ms-transform:matrix(0.289168,-0.002603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289168,-0.002603,0.002250,0.249990,0,0);}
.m135_c00276{transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290705,0.000000,0.000000,0.250000,0,0);}
.m134_c00276{transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302330,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.304866,0.006707,-0.005499,0.249940,0,0);-ms-transform:matrix(0.304866,0.006707,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.304866,0.006707,-0.005499,0.249940,0,0);}
.m13e_c00276{transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);}
.m133_c00276{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m160_c00276{transform:matrix(0.312332,-0.002811,0.002250,0.249990,0,0);-ms-transform:matrix(0.312332,-0.002811,0.002250,0.249990,0,0);-webkit-transform:matrix(0.312332,-0.002811,0.002250,0.249990,0,0);}
.m2c_c00276{transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{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);}
.m12e_c00276{transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);}
.m93_c00276{transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);}
.m165_c00276{transform:matrix(0.322022,-0.002898,0.002250,0.249990,0,0);-ms-transform:matrix(0.322022,-0.002898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.322022,-0.002898,0.002250,0.249990,0,0);}
.m12d_c00276{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);}
.m175_c00276{transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);-ms-transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);}
.m55_c00276{transform:matrix(0.327215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327215,0.000000,0.000000,0.250000,0,0);}
.mff_c00276{transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331190,0.000000,0.000000,0.250000,0,0);}
.m12c_c00276{transform:matrix(0.335510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335510,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.336740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336740,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.344997,0.007590,-0.005499,0.249940,0,0);-ms-transform:matrix(0.344997,0.007590,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.344997,0.007590,-0.005499,0.249940,0,0);}
.m131_c00276{transform:matrix(0.345505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345505,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{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);}
.m13b_c00276{transform:matrix(0.347845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347845,0.000000,0.000000,0.250000,0,0);}
.m12f_c00276{transform:matrix(0.348895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348895,0.000000,0.000000,0.250000,0,0);}
.m172_c00276{transform:matrix(0.359805,-0.003238,0.002250,0.249990,0,0);-ms-transform:matrix(0.359805,-0.003238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.359805,-0.003238,0.002250,0.249990,0,0);}
.m132_c00276{transform:matrix(0.363800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363800,0.000000,0.000000,0.250000,0,0);}
.m149_c00276{transform:matrix(0.379830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379830,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.382902,0.008424,-0.005499,0.249940,0,0);-ms-transform:matrix(0.382902,0.008424,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.382902,0.008424,-0.005499,0.249940,0,0);}
.m158_c00276{transform:matrix(0.383824,-0.003454,0.002250,0.249990,0,0);-ms-transform:matrix(0.383824,-0.003454,0.002250,0.249990,0,0);-webkit-transform:matrix(0.383824,-0.003454,0.002250,0.249990,0,0);}
.mf_c00276{transform:matrix(0.386956,0.008513,-0.005499,0.249940,0,0);-ms-transform:matrix(0.386956,0.008513,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.386956,0.008513,-0.005499,0.249940,0,0);}
.m10_c00276{transform:matrix(0.388581,0.008549,-0.005499,0.249940,0,0);-ms-transform:matrix(0.388581,0.008549,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.388581,0.008549,-0.005499,0.249940,0,0);}
.m129_c00276{transform:matrix(0.417015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417015,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{transform:matrix(0.420020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420020,0.000000,0.000000,0.250000,0,0);}
.m15e_c00276{transform:matrix(0.427303,-0.003846,0.002250,0.249990,0,0);-ms-transform:matrix(0.427303,-0.003846,0.002250,0.249990,0,0);-webkit-transform:matrix(0.427303,-0.003846,0.002250,0.249990,0,0);}
.me_c00276{transform:matrix(0.443023,0.009747,-0.005499,0.249940,0,0);-ms-transform:matrix(0.443023,0.009747,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.443023,0.009747,-0.005499,0.249940,0,0);}
.m168_c00276{transform:matrix(0.452567,-0.004073,0.002250,0.249990,0,0);-ms-transform:matrix(0.452567,-0.004073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.452567,-0.004073,0.002250,0.249990,0,0);}
.m45_c00276{transform:matrix(0.470820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470820,0.000000,0.000000,0.250000,0,0);}
.m136_c00276{transform:matrix(0.472480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472480,0.000000,0.000000,0.250000,0,0);}
.m170_c00276{transform:matrix(0.473276,-0.004259,0.002250,0.249990,0,0);-ms-transform:matrix(0.473276,-0.004259,0.002250,0.249990,0,0);-webkit-transform:matrix(0.473276,-0.004259,0.002250,0.249990,0,0);}
.m0_c00276{transform:matrix(0.479374,0.010546,-0.005499,0.249940,0,0);-ms-transform:matrix(0.479374,0.010546,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.479374,0.010546,-0.005499,0.249940,0,0);}
.m167_c00276{transform:matrix(0.503365,-0.004530,0.002250,0.249990,0,0);-ms-transform:matrix(0.503365,-0.004530,0.002250,0.249990,0,0);-webkit-transform:matrix(0.503365,-0.004530,0.002250,0.249990,0,0);}
.m148_c00276{transform:matrix(0.509465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509465,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.514570,0.011321,-0.005499,0.249940,0,0);-ms-transform:matrix(0.514570,0.011321,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.514570,0.011321,-0.005499,0.249940,0,0);}
.m7_c00276{transform:matrix(0.543234,0.011951,-0.005499,0.249940,0,0);-ms-transform:matrix(0.543234,0.011951,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.543234,0.011951,-0.005499,0.249940,0,0);}
.m16b_c00276{transform:matrix(0.550223,-0.004952,0.002250,0.249990,0,0);-ms-transform:matrix(0.550223,-0.004952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.550223,-0.004952,0.002250,0.249990,0,0);}
.m4_c00276{transform:matrix(0.553891,0.012186,-0.005499,0.249940,0,0);-ms-transform:matrix(0.553891,0.012186,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.553891,0.012186,-0.005499,0.249940,0,0);}
.m6_c00276{transform:matrix(0.558210,0.012281,-0.005499,0.249940,0,0);-ms-transform:matrix(0.558210,0.012281,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.558210,0.012281,-0.005499,0.249940,0,0);}
.mf5_c00276{transform:matrix(0.566810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566810,0.000000,0.000000,0.250000,0,0);}
.m173_c00276{transform:matrix(0.610445,-0.005494,0.002250,0.249990,0,0);-ms-transform:matrix(0.610445,-0.005494,0.002250,0.249990,0,0);-webkit-transform:matrix(0.610445,-0.005494,0.002250,0.249990,0,0);}
.m163_c00276{transform:matrix(0.617500,-0.005557,0.002250,0.249990,0,0);-ms-transform:matrix(0.617500,-0.005557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.617500,-0.005557,0.002250,0.249990,0,0);}
.m161_c00276{transform:matrix(0.696572,-0.006269,0.002250,0.249990,0,0);-ms-transform:matrix(0.696572,-0.006269,0.002250,0.249990,0,0);-webkit-transform:matrix(0.696572,-0.006269,0.002250,0.249990,0,0);}
.m15c_c00276{transform:matrix(0.721186,-0.006491,0.002250,0.249990,0,0);-ms-transform:matrix(0.721186,-0.006491,0.002250,0.249990,0,0);-webkit-transform:matrix(0.721186,-0.006491,0.002250,0.249990,0,0);}
.m15d_c00276{transform:matrix(0.764034,-0.006876,0.002250,0.249990,0,0);-ms-transform:matrix(0.764034,-0.006876,0.002250,0.249990,0,0);-webkit-transform:matrix(0.764034,-0.006876,0.002250,0.249990,0,0);}
.m174_c00276{transform:matrix(0.795508,-0.007160,0.002250,0.249990,0,0);-ms-transform:matrix(0.795508,-0.007160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.795508,-0.007160,0.002250,0.249990,0,0);}
.m176_c00276{transform:matrix(0.897109,-0.008074,0.002250,0.249990,0,0);-ms-transform:matrix(0.897109,-0.008074,0.002250,0.249990,0,0);-webkit-transform:matrix(0.897109,-0.008074,0.002250,0.249990,0,0);}
.m16a_c00276{transform:matrix(0.986400,-0.008878,0.002250,0.249990,0,0);-ms-transform:matrix(0.986400,-0.008878,0.002250,0.249990,0,0);-webkit-transform:matrix(0.986400,-0.008878,0.002250,0.249990,0,0);}
.m1_c00276{transform:matrix(1.207823,0.026572,-0.005499,0.249940,0,0);-ms-transform:matrix(1.207823,0.026572,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.207823,0.026572,-0.005499,0.249940,0,0);}
.m16c_c00276{transform:matrix(1.884744,-0.016963,0.002250,0.249990,0,0);-ms-transform:matrix(1.884744,-0.016963,0.002250,0.249990,0,0);-webkit-transform:matrix(1.884744,-0.016963,0.002250,0.249990,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;}
.fsc_c00276{font-size:19.950000px;}
.fs14_c00276{font-size:27.301106px;}
.fs10_c00276{font-size:28.350000px;}
.fs16_c00276{font-size:31.501276px;}
.fs11_c00276{font-size:32.550000px;}
.fs13_c00276{font-size:45.150000px;}
.fsf_c00276{font-size:48.300000px;}
.fs12_c00276{font-size:54.600000px;}
.fse_c00276{font-size:55.650000px;}
.fsd_c00276{font-size:57.750000px;}
.fsb_c00276{font-size:64.050000px;}
.fs5_c00276{font-size:67.200000px;}
.fsa_c00276{font-size:68.250000px;}
.fs3_c00276{font-size:69.300000px;}
.fs6_c00276{font-size:70.350000px;}
.fs9_c00276{font-size:71.400000px;}
.fs8_c00276{font-size:72.450000px;}
.fs4_c00276{font-size:74.550000px;}
.fs7_c00276{font-size:76.650000px;}
.fs2_c00276{font-size:79.819309px;}
.fs0_c00276{font-size:84.020326px;}
.fs15_c00276{font-size:89.253615px;}
.fs1_c00276{font-size:102.924899px;}
.y0_c00276{bottom:0.000000px;}
.y7e_c00276{bottom:105.884054px;}
.y7b_c00276{bottom:105.884304px;}
.y7d_c00276{bottom:105.884397px;}
.y80_c00276{bottom:105.884474px;}
.y7a_c00276{bottom:105.884495px;}
.y7f_c00276{bottom:105.884504px;}
.y77_c00276{bottom:105.884685px;}
.y7c_c00276{bottom:105.884741px;}
.y73_c00276{bottom:105.884772px;}
.y76_c00276{bottom:105.884835px;}
.y79_c00276{bottom:105.884838px;}
.y81_c00276{bottom:105.885060px;}
.y78_c00276{bottom:105.885392px;}
.y82_c00276{bottom:105.885407px;}
.y74_c00276{bottom:105.885419px;}
.y75_c00276{bottom:105.885449px;}
.y84_c00276{bottom:105.885543px;}
.y83_c00276{bottom:105.886053px;}
.y6c_c00276{bottom:106.381161px;}
.y6d_c00276{bottom:107.087604px;}
.y6e_c00276{bottom:107.166356px;}
.y6f_c00276{bottom:108.085895px;}
.y70_c00276{bottom:110.647391px;}
.y71_c00276{bottom:111.923447px;}
.y72_c00276{bottom:113.071517px;}
.y66_c00276{bottom:120.441000px;}
.y67_c00276{bottom:123.259098px;}
.y68_c00276{bottom:123.497319px;}
.y69_c00276{bottom:123.808305px;}
.y6a_c00276{bottom:124.100283px;}
.y6b_c00276{bottom:125.014260px;}
.y65_c00276{bottom:132.949500px;}
.y64_c00276{bottom:133.188000px;}
.y63_c00276{bottom:135.588000px;}
.y62_c00276{bottom:136.591500px;}
.y61_c00276{bottom:136.893000px;}
.y60_c00276{bottom:153.327000px;}
.y5f_c00276{bottom:153.817500px;}
.y5e_c00276{bottom:154.281000px;}
.y5d_c00276{bottom:155.259000px;}
.y5c_c00276{bottom:156.222000px;}
.y5b_c00276{bottom:157.540500px;}
.y5a_c00276{bottom:158.757000px;}
.y59_c00276{bottom:159.031500px;}
.y58_c00276{bottom:173.292000px;}
.y57_c00276{bottom:173.859000px;}
.y56_c00276{bottom:174.904500px;}
.y55_c00276{bottom:175.095000px;}
.y54_c00276{bottom:175.491000px;}
.y53_c00276{bottom:175.689000px;}
.y52_c00276{bottom:176.061000px;}
.y51_c00276{bottom:176.314500px;}
.y50_c00276{bottom:176.634000px;}
.y4f_c00276{bottom:176.851500px;}
.y4e_c00276{bottom:198.663000px;}
.y4d_c00276{bottom:219.571500px;}
.y4c_c00276{bottom:220.128000px;}
.y4b_c00276{bottom:220.243500px;}
.y4a_c00276{bottom:220.597500px;}
.y49_c00276{bottom:220.875000px;}
.y48_c00276{bottom:221.275500px;}
.y47_c00276{bottom:221.352000px;}
.y46_c00276{bottom:221.683500px;}
.y45_c00276{bottom:221.883000px;}
.y44_c00276{bottom:222.223500px;}
.y43_c00276{bottom:222.414000px;}
.y42_c00276{bottom:222.480000px;}
.y41_c00276{bottom:226.030500px;}
.y40_c00276{bottom:239.053500px;}
.y3f_c00276{bottom:256.639500px;}
.y3e_c00276{bottom:279.352500px;}
.y3d_c00276{bottom:298.429500px;}
.y3c_c00276{bottom:331.825500px;}
.y3b_c00276{bottom:359.874000px;}
.y3a_c00276{bottom:382.218000px;}
.y39_c00276{bottom:403.509000px;}
.y38_c00276{bottom:404.013000px;}
.y37_c00276{bottom:404.235000px;}
.y36_c00276{bottom:404.878500px;}
.y35_c00276{bottom:405.018000px;}
.y34_c00276{bottom:405.112500px;}
.y33_c00276{bottom:405.300000px;}
.y32_c00276{bottom:405.753000px;}
.y31_c00276{bottom:405.883500px;}
.y30_c00276{bottom:405.987000px;}
.y2f_c00276{bottom:406.224000px;}
.y2e_c00276{bottom:406.455000px;}
.y2d_c00276{bottom:406.623000px;}
.y2c_c00276{bottom:427.554000px;}
.y2b_c00276{bottom:448.828500px;}
.y2a_c00276{bottom:449.262000px;}
.y29_c00276{bottom:449.647500px;}
.y28_c00276{bottom:450.169500px;}
.y27_c00276{bottom:450.303000px;}
.y26_c00276{bottom:450.574500px;}
.y25_c00276{bottom:451.005000px;}
.y24_c00276{bottom:451.564500px;}
.y23_c00276{bottom:451.981500px;}
.y22_c00276{bottom:472.962000px;}
.y21_c00276{bottom:495.879000px;}
.y20_c00276{bottom:518.028000px;}
.y1f_c00276{bottom:541.476000px;}
.y1e_c00276{bottom:563.593500px;}
.y1d_c00276{bottom:586.510500px;}
.y1c_c00276{bottom:608.469000px;}
.y1b_c00276{bottom:630.879000px;}
.y1a_c00276{bottom:653.524500px;}
.y19_c00276{bottom:677.389500px;}
.y18_c00276{bottom:704.430000px;}
.y17_c00276{bottom:726.697500px;}
.y16_c00276{bottom:749.346000px;}
.y15_c00276{bottom:771.723000px;}
.y14_c00276{bottom:794.500500px;}
.y13_c00276{bottom:816.340500px;}
.y12_c00276{bottom:863.061864px;}
.y11_c00276{bottom:864.592872px;}
.y10_c00276{bottom:865.225167px;}
.yf_c00276{bottom:866.149383px;}
.y8_c00276{bottom:906.136098px;}
.y7_c00276{bottom:906.136497px;}
.y9_c00276{bottom:906.136725px;}
.ya_c00276{bottom:906.136965px;}
.yb_c00276{bottom:906.137355px;}
.yc_c00276{bottom:906.137712px;}
.yd_c00276{bottom:906.138129px;}
.ye_c00276{bottom:906.138219px;}
.y6_c00276{bottom:913.338456px;}
.y5_c00276{bottom:915.399009px;}
.y4_c00276{bottom:917.798703px;}
.y3_c00276{bottom:919.191336px;}
.y2_c00276{bottom:923.060784px;}
.y1_c00276{bottom:925.834500px;}
.he_c00276{height:19.950000px;}
.h16_c00276{height:27.301106px;}
.h12_c00276{height:28.350000px;}
.h18_c00276{height:31.501276px;}
.h13_c00276{height:32.550000px;}
.h15_c00276{height:45.150000px;}
.h11_c00276{height:48.300000px;}
.h14_c00276{height:54.600000px;}
.h10_c00276{height:55.650000px;}
.hf_c00276{height:57.750000px;}
.hd_c00276{height:64.050000px;}
.h7_c00276{height:67.200000px;}
.hc_c00276{height:68.250000px;}
.h5_c00276{height:69.300000px;}
.h8_c00276{height:70.350000px;}
.hb_c00276{height:71.400000px;}
.ha_c00276{height:72.450000px;}
.h6_c00276{height:74.550000px;}
.h9_c00276{height:76.650000px;}
.h4_c00276{height:79.819309px;}
.h2_c00276{height:84.020326px;}
.h17_c00276{height:89.253615px;}
.h3_c00276{height:102.924899px;}
.h1_c00276{height:1005.000000px;}
.h0_c00276{height:1005.150000px;}
.w0_c00276{width:702.540000px;}
.w1_c00276{width:702.750000px;}
.x0_c00276{left:0.000000px;}
.xd0_c00276{left:25.112967px;}
.x1_c00276{left:33.237000px;}
.xce_c00276{left:40.430740px;}
.xd1_c00276{left:55.353910px;}
.xd2_c00276{left:61.024369px;}
.xcb_c00276{left:68.677500px;}
.xa1_c00276{left:73.173000px;}
.x3b_c00276{left:75.600000px;}
.x93_c00276{left:77.760000px;}
.x82_c00276{left:80.190000px;}
.x49_c00276{left:81.810000px;}
.x1c_c00276{left:83.700000px;}
.x12_c00276{left:85.860000px;}
.xbb_c00276{left:92.880000px;}
.xbf_c00276{left:94.783500px;}
.xaa_c00276{left:96.660000px;}
.xa2_c00276{left:98.013000px;}
.x54_c00276{left:99.090000px;}
.x3e_c00276{left:101.520000px;}
.x5c_c00276{left:102.870000px;}
.xb0_c00276{left:104.490000px;}
.x3c_c00276{left:105.840000px;}
.xab_c00276{left:107.460000px;}
.x24_c00276{left:108.810000px;}
.x2f_c00276{left:115.020000px;}
.x61_c00276{left:116.640000px;}
.xc1_c00276{left:118.260000px;}
.x94_c00276{left:119.340000px;}
.xb1_c00276{left:121.770000px;}
.xa8_c00276{left:123.660000px;}
.x25_c00276{left:124.740000px;}
.x3d_c00276{left:126.900000px;}
.xae_c00276{left:128.790000px;}
.x4a_c00276{left:130.950000px;}
.x36_c00276{left:132.300000px;}
.x7_c00276{left:136.644870px;}
.x72_c00276{left:138.510000px;}
.x83_c00276{left:140.670000px;}
.x88_c00276{left:142.830000px;}
.x13_c00276{left:144.180000px;}
.x5d_c00276{left:146.340000px;}
.xc8_c00276{left:148.063500px;}
.xd3_c00276{left:149.858565px;}
.x4b_c00276{left:151.470000px;}
.x55_c00276{left:152.820000px;}
.x62_c00276{left:154.440000px;}
.x3f_c00276{left:155.520000px;}
.xa3_c00276{left:156.603000px;}
.x73_c00276{left:157.950000px;}
.x2_c00276{left:159.315000px;}
.x7a_c00276{left:161.460000px;}
.xa9_c00276{left:164.700000px;}
.xa6_c00276{left:167.133000px;}
.x14_c00276{left:168.750000px;}
.x9a_c00276{left:170.320500px;}
.xb8_c00276{left:176.580000px;}
.x95_c00276{left:179.820000px;}
.x37_c00276{left:181.170000px;}
.x30_c00276{left:182.790000px;}
.x63_c00276{left:184.680000px;}
.x4c_c00276{left:187.110000px;}
.x56_c00276{left:190.350000px;}
.xb2_c00276{left:192.510000px;}
.x40_c00276{left:195.750000px;}
.x1d_c00276{left:198.720000px;}
.xc9_c00276{left:200.152500px;}
.x89_c00276{left:201.690000px;}
.x9b_c00276{left:203.751000px;}
.xc2_c00276{left:206.550000px;}
.xe_c00276{left:208.332768px;}
.x26_c00276{left:215.190000px;}
.xa7_c00276{left:217.083000px;}
.x38_c00276{left:220.050000px;}
.x6d_c00276{left:221.940000px;}
.x7b_c00276{left:223.830000px;}
.x15_c00276{left:225.990000px;}
.x27_c00276{left:228.150000px;}
.xca_c00276{left:229.777500px;}
.x64_c00276{left:230.850000px;}
.x57_c00276{left:235.980000px;}
.x31_c00276{left:237.060000px;}
.xb3_c00276{left:238.410000px;}
.xc3_c00276{left:239.490000px;}
.xac_c00276{left:242.460000px;}
.x65_c00276{left:244.890000px;}
.x74_c00276{left:247.050000px;}
.x41_c00276{left:249.750000px;}
.x8_c00276{left:251.421909px;}
.x28_c00276{left:256.230000px;}
.x1e_c00276{left:260.010000px;}
.x39_c00276{left:262.440000px;}
.x16_c00276{left:263.520000px;}
.x75_c00276{left:264.870000px;}
.x58_c00276{left:265.950000px;}
.xc0_c00276{left:267.007500px;}
.x9c_c00276{left:268.539000px;}
.x8a_c00276{left:272.160000px;}
.x4d_c00276{left:275.400000px;}
.x84_c00276{left:277.290000px;}
.x1f_c00276{left:279.720000px;}
.x42_c00276{left:280.800000px;}
.x96_c00276{left:286.740000px;}
.x66_c00276{left:289.710000px;}
.x9d_c00276{left:295.296000px;}
.x29_c00276{left:298.890000px;}
.xf_c00276{left:300.685122px;}
.x6e_c00276{left:302.670000px;}
.x20_c00276{left:306.180000px;}
.x17_c00276{left:308.610000px;}
.x67_c00276{left:309.690000px;}
.x7c_c00276{left:311.310000px;}
.x76_c00276{left:315.900000px;}
.x97_c00276{left:318.060000px;}
.x8f_c00276{left:320.133000px;}
.x4e_c00276{left:324.540000px;}
.xb4_c00276{left:325.890000px;}
.x9e_c00276{left:328.761000px;}
.x59_c00276{left:331.830000px;}
.x3_c00276{left:335.199000px;}
.x7d_c00276{left:337.500000px;}
.x90_c00276{left:339.282000px;}
.x3a_c00276{left:341.010000px;}
.x32_c00276{left:342.630000px;}
.x8b_c00276{left:344.520000px;}
.x18_c00276{left:346.140000px;}
.x68_c00276{left:348.300000px;}
.x4f_c00276{left:349.920000px;}
.xc4_c00276{left:351.540000px;}
.x43_c00276{left:352.620000px;}
.x10_c00276{left:363.874287px;}
.xd4_c00276{left:366.137088px;}
.x44_c00276{left:370.710000px;}
.x77_c00276{left:373.950000px;}
.x9_c00276{left:377.813058px;}
.xb5_c00276{left:379.620000px;}
.x2a_c00276{left:381.240000px;}
.x85_c00276{left:383.940000px;}
.x7e_c00276{left:385.290000px;}
.x50_c00276{left:388.260000px;}
.xad_c00276{left:389.340000px;}
.x8c_c00276{left:390.960000px;}
.x21_c00276{left:393.120000px;}
.xbc_c00276{left:396.090000px;}
.x4_c00276{left:398.500500px;}
.x45_c00276{left:400.140000px;}
.x69_c00276{left:403.920000px;}
.x2b_c00276{left:405.540000px;}
.x78_c00276{left:407.160000px;}
.xcc_c00276{left:408.268500px;}
.x33_c00276{left:411.750000px;}
.x91_c00276{left:413.817000px;}
.x8d_c00276{left:414.990000px;}
.xd5_c00276{left:416.898206px;}
.xaf_c00276{left:418.230000px;}
.x9f_c00276{left:420.606000px;}
.xc5_c00276{left:422.010000px;}
.x5e_c00276{left:423.900000px;}
.x5a_c00276{left:427.140000px;}
.x7f_c00276{left:428.760000px;}
.x2c_c00276{left:431.190000px;}
.x46_c00276{left:433.890000px;}
.x86_c00276{left:435.240000px;}
.x6f_c00276{left:436.590000px;}
.xa_c00276{left:438.847593px;}
.x34_c00276{left:440.640000px;}
.xbd_c00276{left:442.800000px;}
.x6a_c00276{left:447.390000px;}
.xb9_c00276{left:449.820000px;}
.xa0_c00276{left:452.427000px;}
.x19_c00276{left:454.140000px;}
.x47_c00276{left:455.220000px;}
.xc6_c00276{left:456.570000px;}
.x70_c00276{left:458.730000px;}
.x80_c00276{left:461.160000px;}
.xa4_c00276{left:462.783000px;}
.x5f_c00276{left:464.400000px;}
.x98_c00276{left:465.750000px;}
.x51_c00276{left:468.180000px;}
.xb6_c00276{left:474.390000px;}
.x22_c00276{left:477.090000px;}
.x60_c00276{left:478.170000px;}
.x1a_c00276{left:485.730000px;}
.x5b_c00276{left:488.160000px;}
.x71_c00276{left:490.050000px;}
.xb_c00276{left:493.130361px;}
.x52_c00276{left:498.960000px;}
.xb7_c00276{left:500.850000px;}
.xc7_c00276{left:502.740000px;}
.x48_c00276{left:505.440000px;}
.x5_c00276{left:507.577500px;}
.x6b_c00276{left:508.680000px;}
.xbe_c00276{left:509.760000px;}
.x99_c00276{left:515.970000px;}
.x11_c00276{left:517.028712px;}
.x23_c00276{left:520.020000px;}
.x79_c00276{left:524.880000px;}
.x87_c00276{left:526.770000px;}
.x81_c00276{left:527.850000px;}
.xa5_c00276{left:529.473000px;}
.x92_c00276{left:530.728500px;}
.x53_c00276{left:532.710000px;}
.xba_c00276{left:535.680000px;}
.x2d_c00276{left:537.030000px;}
.x8e_c00276{left:539.190000px;}
.x35_c00276{left:543.240000px;}
.xc_c00276{left:547.683261px;}
.x1b_c00276{left:548.910000px;}
.x2e_c00276{left:551.610000px;}
.xd6_c00276{left:559.465235px;}
.xd7_c00276{left:571.076180px;}
.x6c_c00276{left:574.020000px;}
.xcd_c00276{left:576.817500px;}
.xcf_c00276{left:597.955188px;}
.x6_c00276{left:601.239000px;}
.xd_c00276{left:607.367136px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.fsc_c00276{font-size:17.733333pt;}
.fs14_c00276{font-size:24.267649pt;}
.fs10_c00276{font-size:25.200000pt;}
.fs16_c00276{font-size:28.001134pt;}
.fs11_c00276{font-size:28.933333pt;}
.fs13_c00276{font-size:40.133333pt;}
.fsf_c00276{font-size:42.933333pt;}
.fs12_c00276{font-size:48.533333pt;}
.fse_c00276{font-size:49.466667pt;}
.fsd_c00276{font-size:51.333333pt;}
.fsb_c00276{font-size:56.933333pt;}
.fs5_c00276{font-size:59.733333pt;}
.fsa_c00276{font-size:60.666667pt;}
.fs3_c00276{font-size:61.600000pt;}
.fs6_c00276{font-size:62.533333pt;}
.fs9_c00276{font-size:63.466667pt;}
.fs8_c00276{font-size:64.400000pt;}
.fs4_c00276{font-size:66.266667pt;}
.fs7_c00276{font-size:68.133333pt;}
.fs2_c00276{font-size:70.950497pt;}
.fs0_c00276{font-size:74.684734pt;}
.fs15_c00276{font-size:79.336546pt;}
.fs1_c00276{font-size:91.488799pt;}
.y0_c00276{bottom:0.000000pt;}
.y7e_c00276{bottom:94.119159pt;}
.y7b_c00276{bottom:94.119381pt;}
.y7d_c00276{bottom:94.119464pt;}
.y80_c00276{bottom:94.119532pt;}
.y7a_c00276{bottom:94.119551pt;}
.y7f_c00276{bottom:94.119559pt;}
.y77_c00276{bottom:94.119720pt;}
.y7c_c00276{bottom:94.119769pt;}
.y73_c00276{bottom:94.119797pt;}
.y76_c00276{bottom:94.119853pt;}
.y79_c00276{bottom:94.119856pt;}
.y81_c00276{bottom:94.120053pt;}
.y78_c00276{bottom:94.120348pt;}
.y82_c00276{bottom:94.120361pt;}
.y74_c00276{bottom:94.120372pt;}
.y75_c00276{bottom:94.120399pt;}
.y84_c00276{bottom:94.120483pt;}
.y83_c00276{bottom:94.120936pt;}
.y6c_c00276{bottom:94.561032pt;}
.y6d_c00276{bottom:95.188981pt;}
.y6e_c00276{bottom:95.258983pt;}
.y6f_c00276{bottom:96.076351pt;}
.y70_c00276{bottom:98.353236pt;}
.y71_c00276{bottom:99.487508pt;}
.y72_c00276{bottom:100.508015pt;}
.y66_c00276{bottom:107.058667pt;}
.y67_c00276{bottom:109.563643pt;}
.y68_c00276{bottom:109.775395pt;}
.y69_c00276{bottom:110.051827pt;}
.y6a_c00276{bottom:110.311363pt;}
.y6b_c00276{bottom:111.123787pt;}
.y65_c00276{bottom:118.177333pt;}
.y64_c00276{bottom:118.389333pt;}
.y63_c00276{bottom:120.522667pt;}
.y62_c00276{bottom:121.414667pt;}
.y61_c00276{bottom:121.682667pt;}
.y60_c00276{bottom:136.290667pt;}
.y5f_c00276{bottom:136.726667pt;}
.y5e_c00276{bottom:137.138667pt;}
.y5d_c00276{bottom:138.008000pt;}
.y5c_c00276{bottom:138.864000pt;}
.y5b_c00276{bottom:140.036000pt;}
.y5a_c00276{bottom:141.117333pt;}
.y59_c00276{bottom:141.361333pt;}
.y58_c00276{bottom:154.037333pt;}
.y57_c00276{bottom:154.541333pt;}
.y56_c00276{bottom:155.470667pt;}
.y55_c00276{bottom:155.640000pt;}
.y54_c00276{bottom:155.992000pt;}
.y53_c00276{bottom:156.168000pt;}
.y52_c00276{bottom:156.498667pt;}
.y51_c00276{bottom:156.724000pt;}
.y50_c00276{bottom:157.008000pt;}
.y4f_c00276{bottom:157.201333pt;}
.y4e_c00276{bottom:176.589333pt;}
.y4d_c00276{bottom:195.174667pt;}
.y4c_c00276{bottom:195.669333pt;}
.y4b_c00276{bottom:195.772000pt;}
.y4a_c00276{bottom:196.086667pt;}
.y49_c00276{bottom:196.333333pt;}
.y48_c00276{bottom:196.689333pt;}
.y47_c00276{bottom:196.757333pt;}
.y46_c00276{bottom:197.052000pt;}
.y45_c00276{bottom:197.229333pt;}
.y44_c00276{bottom:197.532000pt;}
.y43_c00276{bottom:197.701333pt;}
.y42_c00276{bottom:197.760000pt;}
.y41_c00276{bottom:200.916000pt;}
.y40_c00276{bottom:212.492000pt;}
.y3f_c00276{bottom:228.124000pt;}
.y3e_c00276{bottom:248.313333pt;}
.y3d_c00276{bottom:265.270667pt;}
.y3c_c00276{bottom:294.956000pt;}
.y3b_c00276{bottom:319.888000pt;}
.y3a_c00276{bottom:339.749333pt;}
.y39_c00276{bottom:358.674667pt;}
.y38_c00276{bottom:359.122667pt;}
.y37_c00276{bottom:359.320000pt;}
.y36_c00276{bottom:359.892000pt;}
.y35_c00276{bottom:360.016000pt;}
.y34_c00276{bottom:360.100000pt;}
.y33_c00276{bottom:360.266667pt;}
.y32_c00276{bottom:360.669333pt;}
.y31_c00276{bottom:360.785333pt;}
.y30_c00276{bottom:360.877333pt;}
.y2f_c00276{bottom:361.088000pt;}
.y2e_c00276{bottom:361.293333pt;}
.y2d_c00276{bottom:361.442667pt;}
.y2c_c00276{bottom:380.048000pt;}
.y2b_c00276{bottom:398.958667pt;}
.y2a_c00276{bottom:399.344000pt;}
.y29_c00276{bottom:399.686667pt;}
.y28_c00276{bottom:400.150667pt;}
.y27_c00276{bottom:400.269333pt;}
.y26_c00276{bottom:400.510667pt;}
.y25_c00276{bottom:400.893333pt;}
.y24_c00276{bottom:401.390667pt;}
.y23_c00276{bottom:401.761333pt;}
.y22_c00276{bottom:420.410667pt;}
.y21_c00276{bottom:440.781333pt;}
.y20_c00276{bottom:460.469333pt;}
.y1f_c00276{bottom:481.312000pt;}
.y1e_c00276{bottom:500.972000pt;}
.y1d_c00276{bottom:521.342667pt;}
.y1c_c00276{bottom:540.861333pt;}
.y1b_c00276{bottom:560.781333pt;}
.y1a_c00276{bottom:580.910667pt;}
.y19_c00276{bottom:602.124000pt;}
.y18_c00276{bottom:626.160000pt;}
.y17_c00276{bottom:645.953333pt;}
.y16_c00276{bottom:666.085333pt;}
.y15_c00276{bottom:685.976000pt;}
.y14_c00276{bottom:706.222667pt;}
.y13_c00276{bottom:725.636000pt;}
.y12_c00276{bottom:767.166101pt;}
.y11_c00276{bottom:768.526997pt;}
.y10_c00276{bottom:769.089037pt;}
.yf_c00276{bottom:769.910563pt;}
.y8_c00276{bottom:805.454309pt;}
.y7_c00276{bottom:805.454664pt;}
.y9_c00276{bottom:805.454867pt;}
.ya_c00276{bottom:805.455080pt;}
.yb_c00276{bottom:805.455427pt;}
.yc_c00276{bottom:805.455744pt;}
.yd_c00276{bottom:805.456115pt;}
.ye_c00276{bottom:805.456195pt;}
.y6_c00276{bottom:811.856405pt;}
.y5_c00276{bottom:813.688008pt;}
.y4_c00276{bottom:815.821069pt;}
.y3_c00276{bottom:817.058965pt;}
.y2_c00276{bottom:820.498475pt;}
.y1_c00276{bottom:822.964000pt;}
.he_c00276{height:17.733333pt;}
.h16_c00276{height:24.267649pt;}
.h12_c00276{height:25.200000pt;}
.h18_c00276{height:28.001134pt;}
.h13_c00276{height:28.933333pt;}
.h15_c00276{height:40.133333pt;}
.h11_c00276{height:42.933333pt;}
.h14_c00276{height:48.533333pt;}
.h10_c00276{height:49.466667pt;}
.hf_c00276{height:51.333333pt;}
.hd_c00276{height:56.933333pt;}
.h7_c00276{height:59.733333pt;}
.hc_c00276{height:60.666667pt;}
.h5_c00276{height:61.600000pt;}
.h8_c00276{height:62.533333pt;}
.hb_c00276{height:63.466667pt;}
.ha_c00276{height:64.400000pt;}
.h6_c00276{height:66.266667pt;}
.h9_c00276{height:68.133333pt;}
.h4_c00276{height:70.950497pt;}
.h2_c00276{height:74.684734pt;}
.h17_c00276{height:79.336546pt;}
.h3_c00276{height:91.488799pt;}
.h1_c00276{height:893.333333pt;}
.h0_c00276{height:893.466667pt;}
.w0_c00276{width:624.480000pt;}
.w1_c00276{width:624.666667pt;}
.x0_c00276{left:0.000000pt;}
.xd0_c00276{left:22.322637pt;}
.x1_c00276{left:29.544000pt;}
.xce_c00276{left:35.938436pt;}
.xd1_c00276{left:49.203476pt;}
.xd2_c00276{left:54.243884pt;}
.xcb_c00276{left:61.046667pt;}
.xa1_c00276{left:65.042667pt;}
.x3b_c00276{left:67.200000pt;}
.x93_c00276{left:69.120000pt;}
.x82_c00276{left:71.280000pt;}
.x49_c00276{left:72.720000pt;}
.x1c_c00276{left:74.400000pt;}
.x12_c00276{left:76.320000pt;}
.xbb_c00276{left:82.560000pt;}
.xbf_c00276{left:84.252000pt;}
.xaa_c00276{left:85.920000pt;}
.xa2_c00276{left:87.122667pt;}
.x54_c00276{left:88.080000pt;}
.x3e_c00276{left:90.240000pt;}
.x5c_c00276{left:91.440000pt;}
.xb0_c00276{left:92.880000pt;}
.x3c_c00276{left:94.080000pt;}
.xab_c00276{left:95.520000pt;}
.x24_c00276{left:96.720000pt;}
.x2f_c00276{left:102.240000pt;}
.x61_c00276{left:103.680000pt;}
.xc1_c00276{left:105.120000pt;}
.x94_c00276{left:106.080000pt;}
.xb1_c00276{left:108.240000pt;}
.xa8_c00276{left:109.920000pt;}
.x25_c00276{left:110.880000pt;}
.x3d_c00276{left:112.800000pt;}
.xae_c00276{left:114.480000pt;}
.x4a_c00276{left:116.400000pt;}
.x36_c00276{left:117.600000pt;}
.x7_c00276{left:121.462107pt;}
.x72_c00276{left:123.120000pt;}
.x83_c00276{left:125.040000pt;}
.x88_c00276{left:126.960000pt;}
.x13_c00276{left:128.160000pt;}
.x5d_c00276{left:130.080000pt;}
.xc8_c00276{left:131.612000pt;}
.xd3_c00276{left:133.207613pt;}
.x4b_c00276{left:134.640000pt;}
.x55_c00276{left:135.840000pt;}
.x62_c00276{left:137.280000pt;}
.x3f_c00276{left:138.240000pt;}
.xa3_c00276{left:139.202667pt;}
.x73_c00276{left:140.400000pt;}
.x2_c00276{left:141.613333pt;}
.x7a_c00276{left:143.520000pt;}
.xa9_c00276{left:146.400000pt;}
.xa6_c00276{left:148.562667pt;}
.x14_c00276{left:150.000000pt;}
.x9a_c00276{left:151.396000pt;}
.xb8_c00276{left:156.960000pt;}
.x95_c00276{left:159.840000pt;}
.x37_c00276{left:161.040000pt;}
.x30_c00276{left:162.480000pt;}
.x63_c00276{left:164.160000pt;}
.x4c_c00276{left:166.320000pt;}
.x56_c00276{left:169.200000pt;}
.xb2_c00276{left:171.120000pt;}
.x40_c00276{left:174.000000pt;}
.x1d_c00276{left:176.640000pt;}
.xc9_c00276{left:177.913333pt;}
.x89_c00276{left:179.280000pt;}
.x9b_c00276{left:181.112000pt;}
.xc2_c00276{left:183.600000pt;}
.xe_c00276{left:185.184683pt;}
.x26_c00276{left:191.280000pt;}
.xa7_c00276{left:192.962667pt;}
.x38_c00276{left:195.600000pt;}
.x6d_c00276{left:197.280000pt;}
.x7b_c00276{left:198.960000pt;}
.x15_c00276{left:200.880000pt;}
.x27_c00276{left:202.800000pt;}
.xca_c00276{left:204.246667pt;}
.x64_c00276{left:205.200000pt;}
.x57_c00276{left:209.760000pt;}
.x31_c00276{left:210.720000pt;}
.xb3_c00276{left:211.920000pt;}
.xc3_c00276{left:212.880000pt;}
.xac_c00276{left:215.520000pt;}
.x65_c00276{left:217.680000pt;}
.x74_c00276{left:219.600000pt;}
.x41_c00276{left:222.000000pt;}
.x8_c00276{left:223.486141pt;}
.x28_c00276{left:227.760000pt;}
.x1e_c00276{left:231.120000pt;}
.x39_c00276{left:233.280000pt;}
.x16_c00276{left:234.240000pt;}
.x75_c00276{left:235.440000pt;}
.x58_c00276{left:236.400000pt;}
.xc0_c00276{left:237.340000pt;}
.x9c_c00276{left:238.701333pt;}
.x8a_c00276{left:241.920000pt;}
.x4d_c00276{left:244.800000pt;}
.x84_c00276{left:246.480000pt;}
.x1f_c00276{left:248.640000pt;}
.x42_c00276{left:249.600000pt;}
.x96_c00276{left:254.880000pt;}
.x66_c00276{left:257.520000pt;}
.x9d_c00276{left:262.485333pt;}
.x29_c00276{left:265.680000pt;}
.xf_c00276{left:267.275664pt;}
.x6e_c00276{left:269.040000pt;}
.x20_c00276{left:272.160000pt;}
.x17_c00276{left:274.320000pt;}
.x67_c00276{left:275.280000pt;}
.x7c_c00276{left:276.720000pt;}
.x76_c00276{left:280.800000pt;}
.x97_c00276{left:282.720000pt;}
.x8f_c00276{left:284.562667pt;}
.x4e_c00276{left:288.480000pt;}
.xb4_c00276{left:289.680000pt;}
.x9e_c00276{left:292.232000pt;}
.x59_c00276{left:294.960000pt;}
.x3_c00276{left:297.954667pt;}
.x7d_c00276{left:300.000000pt;}
.x90_c00276{left:301.584000pt;}
.x3a_c00276{left:303.120000pt;}
.x32_c00276{left:304.560000pt;}
.x8b_c00276{left:306.240000pt;}
.x18_c00276{left:307.680000pt;}
.x68_c00276{left:309.600000pt;}
.x4f_c00276{left:311.040000pt;}
.xc4_c00276{left:312.480000pt;}
.x43_c00276{left:313.440000pt;}
.x10_c00276{left:323.443811pt;}
.xd4_c00276{left:325.455189pt;}
.x44_c00276{left:329.520000pt;}
.x77_c00276{left:332.400000pt;}
.x9_c00276{left:335.833829pt;}
.xb5_c00276{left:337.440000pt;}
.x2a_c00276{left:338.880000pt;}
.x85_c00276{left:341.280000pt;}
.x7e_c00276{left:342.480000pt;}
.x50_c00276{left:345.120000pt;}
.xad_c00276{left:346.080000pt;}
.x8c_c00276{left:347.520000pt;}
.x21_c00276{left:349.440000pt;}
.xbc_c00276{left:352.080000pt;}
.x4_c00276{left:354.222667pt;}
.x45_c00276{left:355.680000pt;}
.x69_c00276{left:359.040000pt;}
.x2b_c00276{left:360.480000pt;}
.x78_c00276{left:361.920000pt;}
.xcc_c00276{left:362.905333pt;}
.x33_c00276{left:366.000000pt;}
.x91_c00276{left:367.837333pt;}
.x8d_c00276{left:368.880000pt;}
.xd5_c00276{left:370.576183pt;}
.xaf_c00276{left:371.760000pt;}
.x9f_c00276{left:373.872000pt;}
.xc5_c00276{left:375.120000pt;}
.x5e_c00276{left:376.800000pt;}
.x5a_c00276{left:379.680000pt;}
.x7f_c00276{left:381.120000pt;}
.x2c_c00276{left:383.280000pt;}
.x46_c00276{left:385.680000pt;}
.x86_c00276{left:386.880000pt;}
.x6f_c00276{left:388.080000pt;}
.xa_c00276{left:390.086749pt;}
.x34_c00276{left:391.680000pt;}
.xbd_c00276{left:393.600000pt;}
.x6a_c00276{left:397.680000pt;}
.xb9_c00276{left:399.840000pt;}
.xa0_c00276{left:402.157333pt;}
.x19_c00276{left:403.680000pt;}
.x47_c00276{left:404.640000pt;}
.xc6_c00276{left:405.840000pt;}
.x70_c00276{left:407.760000pt;}
.x80_c00276{left:409.920000pt;}
.xa4_c00276{left:411.362667pt;}
.x5f_c00276{left:412.800000pt;}
.x98_c00276{left:414.000000pt;}
.x51_c00276{left:416.160000pt;}
.xb6_c00276{left:421.680000pt;}
.x22_c00276{left:424.080000pt;}
.x60_c00276{left:425.040000pt;}
.x1a_c00276{left:431.760000pt;}
.x5b_c00276{left:433.920000pt;}
.x71_c00276{left:435.600000pt;}
.xb_c00276{left:438.338099pt;}
.x52_c00276{left:443.520000pt;}
.xb7_c00276{left:445.200000pt;}
.xc7_c00276{left:446.880000pt;}
.x48_c00276{left:449.280000pt;}
.x5_c00276{left:451.180000pt;}
.x6b_c00276{left:452.160000pt;}
.xbe_c00276{left:453.120000pt;}
.x99_c00276{left:458.640000pt;}
.x11_c00276{left:459.581077pt;}
.x23_c00276{left:462.240000pt;}
.x79_c00276{left:466.560000pt;}
.x87_c00276{left:468.240000pt;}
.x81_c00276{left:469.200000pt;}
.xa5_c00276{left:470.642667pt;}
.x92_c00276{left:471.758667pt;}
.x53_c00276{left:473.520000pt;}
.xba_c00276{left:476.160000pt;}
.x2d_c00276{left:477.360000pt;}
.x8e_c00276{left:479.280000pt;}
.x35_c00276{left:482.880000pt;}
.xc_c00276{left:486.829565pt;}
.x1b_c00276{left:487.920000pt;}
.x2e_c00276{left:490.320000pt;}
.xd6_c00276{left:497.302431pt;}
.xd7_c00276{left:507.623271pt;}
.x6c_c00276{left:510.240000pt;}
.xcd_c00276{left:512.726667pt;}
.xcf_c00276{left:531.515723pt;}
.x6_c00276{left:534.434667pt;}
.xd_c00276{left:539.881899pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mf3_c00277{transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);-ms-transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);-webkit-transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);}
.m14f_c00277{transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.060658,-0.000910,0.003750,0.249972,0,0);-ms-transform:matrix(0.060658,-0.000910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.060658,-0.000910,0.003750,0.249972,0,0);}
.m2e_c00277{transform:matrix(0.069201,-0.000761,0.002750,0.249985,0,0);-ms-transform:matrix(0.069201,-0.000761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.069201,-0.000761,0.002750,0.249985,0,0);}
.me0_c00277{transform:matrix(0.079768,-0.000558,0.001750,0.249994,0,0);-ms-transform:matrix(0.079768,-0.000558,0.001750,0.249994,0,0);-webkit-transform:matrix(0.079768,-0.000558,0.001750,0.249994,0,0);}
.mc8_c00277{transform:matrix(0.125547,-0.000879,0.001750,0.249994,0,0);-ms-transform:matrix(0.125547,-0.000879,0.001750,0.249994,0,0);-webkit-transform:matrix(0.125547,-0.000879,0.001750,0.249994,0,0);}
.m6f_c00277{transform:matrix(0.138312,-0.000968,0.001750,0.249994,0,0);-ms-transform:matrix(0.138312,-0.000968,0.001750,0.249994,0,0);-webkit-transform:matrix(0.138312,-0.000968,0.001750,0.249994,0,0);}
.m52_c00277{transform:matrix(0.138842,-0.000972,0.001750,0.249994,0,0);-ms-transform:matrix(0.138842,-0.000972,0.001750,0.249994,0,0);-webkit-transform:matrix(0.138842,-0.000972,0.001750,0.249994,0,0);}
.m5b_c00277{transform:matrix(0.138907,-0.000972,0.001750,0.249994,0,0);-ms-transform:matrix(0.138907,-0.000972,0.001750,0.249994,0,0);-webkit-transform:matrix(0.138907,-0.000972,0.001750,0.249994,0,0);}
.m53_c00277{transform:matrix(0.139262,-0.000975,0.001750,0.249994,0,0);-ms-transform:matrix(0.139262,-0.000975,0.001750,0.249994,0,0);-webkit-transform:matrix(0.139262,-0.000975,0.001750,0.249994,0,0);}
.m2d_c00277{transform:matrix(0.139357,-0.001533,0.002750,0.249985,0,0);-ms-transform:matrix(0.139357,-0.001533,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139357,-0.001533,0.002750,0.249985,0,0);}
.m50_c00277{transform:matrix(0.139502,-0.000977,0.001750,0.249994,0,0);-ms-transform:matrix(0.139502,-0.000977,0.001750,0.249994,0,0);-webkit-transform:matrix(0.139502,-0.000977,0.001750,0.249994,0,0);}
.me2_c00277{transform:matrix(0.140202,-0.000981,0.001750,0.249994,0,0);-ms-transform:matrix(0.140202,-0.000981,0.001750,0.249994,0,0);-webkit-transform:matrix(0.140202,-0.000981,0.001750,0.249994,0,0);}
.mdf_c00277{transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);-ms-transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);-webkit-transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);}
.md4_c00277{transform:matrix(0.144036,-0.001008,0.001750,0.249994,0,0);-ms-transform:matrix(0.144036,-0.001008,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144036,-0.001008,0.001750,0.249994,0,0);}
.m6e_c00277{transform:matrix(0.145531,-0.001019,0.001750,0.249994,0,0);-ms-transform:matrix(0.145531,-0.001019,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145531,-0.001019,0.001750,0.249994,0,0);}
.me1_c00277{transform:matrix(0.147101,-0.001030,0.001750,0.249994,0,0);-ms-transform:matrix(0.147101,-0.001030,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147101,-0.001030,0.001750,0.249994,0,0);}
.m16_c00277{transform:matrix(0.149031,-0.001639,0.002750,0.249985,0,0);-ms-transform:matrix(0.149031,-0.001639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149031,-0.001639,0.002750,0.249985,0,0);}
.m10a_c00277{transform:matrix(0.150451,-0.001053,0.001750,0.249994,0,0);-ms-transform:matrix(0.150451,-0.001053,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150451,-0.001053,0.001750,0.249994,0,0);}
.m14d_c00277{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);}
.m70_c00277{transform:matrix(0.151241,-0.001059,0.001750,0.249994,0,0);-ms-transform:matrix(0.151241,-0.001059,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151241,-0.001059,0.001750,0.249994,0,0);}
.ma3_c00277{transform:matrix(0.151886,-0.001063,0.001750,0.249994,0,0);-ms-transform:matrix(0.151886,-0.001063,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151886,-0.001063,0.001750,0.249994,0,0);}
.md1_c00277{transform:matrix(0.152366,-0.001067,0.001750,0.249994,0,0);-ms-transform:matrix(0.152366,-0.001067,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152366,-0.001067,0.001750,0.249994,0,0);}
.m119_c00277{transform:matrix(0.153526,-0.001075,0.001750,0.249994,0,0);-ms-transform:matrix(0.153526,-0.001075,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153526,-0.001075,0.001750,0.249994,0,0);}
.mc3_c00277{transform:matrix(0.154106,-0.001079,0.001750,0.249994,0,0);-ms-transform:matrix(0.154106,-0.001079,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154106,-0.001079,0.001750,0.249994,0,0);}
.m74_c00277{transform:matrix(0.154201,-0.001079,0.001750,0.249994,0,0);-ms-transform:matrix(0.154201,-0.001079,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154201,-0.001079,0.001750,0.249994,0,0);}
.ma5_c00277{transform:matrix(0.154671,-0.001083,0.001750,0.249994,0,0);-ms-transform:matrix(0.154671,-0.001083,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154671,-0.001083,0.001750,0.249994,0,0);}
.m5d_c00277{transform:matrix(0.154736,-0.001083,0.001750,0.249994,0,0);-ms-transform:matrix(0.154736,-0.001083,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154736,-0.001083,0.001750,0.249994,0,0);}
.m66_c00277{transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);-ms-transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155341,-0.001087,0.001750,0.249994,0,0);}
.m25_c00277{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);}
.mf6_c00277{transform:matrix(0.155606,-0.001089,0.001750,0.249994,0,0);-ms-transform:matrix(0.155606,-0.001089,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155606,-0.001089,0.001750,0.249994,0,0);}
.mab_c00277{transform:matrix(0.156731,-0.001097,0.001750,0.249994,0,0);-ms-transform:matrix(0.156731,-0.001097,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156731,-0.001097,0.001750,0.249994,0,0);}
.m6d_c00277{transform:matrix(0.156801,-0.001098,0.001750,0.249994,0,0);-ms-transform:matrix(0.156801,-0.001098,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156801,-0.001098,0.001750,0.249994,0,0);}
.maf_c00277{transform:matrix(0.157401,-0.001102,0.001750,0.249994,0,0);-ms-transform:matrix(0.157401,-0.001102,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157401,-0.001102,0.001750,0.249994,0,0);}
.m27_c00277{transform:matrix(0.157725,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157725,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157725,-0.001735,0.002750,0.249985,0,0);}
.m13b_c00277{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{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);}
.m114_c00277{transform:matrix(0.159131,-0.001114,0.001750,0.249994,0,0);-ms-transform:matrix(0.159131,-0.001114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159131,-0.001114,0.001750,0.249994,0,0);}
.m106_c00277{transform:matrix(0.159251,-0.001115,0.001750,0.249994,0,0);-ms-transform:matrix(0.159251,-0.001115,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159251,-0.001115,0.001750,0.249994,0,0);}
.m44_c00277{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);}
.m12_c00277{transform:matrix(0.161630,-0.001778,0.002750,0.249985,0,0);-ms-transform:matrix(0.161630,-0.001778,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161630,-0.001778,0.002750,0.249985,0,0);}
.meb_c00277{transform:matrix(0.161946,-0.001134,0.001750,0.249994,0,0);-ms-transform:matrix(0.161946,-0.001134,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161946,-0.001134,0.001750,0.249994,0,0);}
.mcd_c00277{transform:matrix(0.162031,-0.001134,0.001750,0.249994,0,0);-ms-transform:matrix(0.162031,-0.001134,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162031,-0.001134,0.001750,0.249994,0,0);}
.m8f_c00277{transform:matrix(0.162271,-0.001136,0.001750,0.249994,0,0);-ms-transform:matrix(0.162271,-0.001136,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162271,-0.001136,0.001750,0.249994,0,0);}
.m32_c00277{transform:matrix(0.162585,-0.001788,0.002750,0.249985,0,0);-ms-transform:matrix(0.162585,-0.001788,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162585,-0.001788,0.002750,0.249985,0,0);}
.mba_c00277{transform:matrix(0.162701,-0.001139,0.001750,0.249994,0,0);-ms-transform:matrix(0.162701,-0.001139,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162701,-0.001139,0.001750,0.249994,0,0);}
.m62_c00277{transform:matrix(0.163571,-0.001145,0.001750,0.249994,0,0);-ms-transform:matrix(0.163571,-0.001145,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163571,-0.001145,0.001750,0.249994,0,0);}
.mdc_c00277{transform:matrix(0.163701,-0.001146,0.001750,0.249994,0,0);-ms-transform:matrix(0.163701,-0.001146,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163701,-0.001146,0.001750,0.249994,0,0);}
.mfe_c00277{transform:matrix(0.163716,-0.001146,0.001750,0.249994,0,0);-ms-transform:matrix(0.163716,-0.001146,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163716,-0.001146,0.001750,0.249994,0,0);}
.mcc_c00277{transform:matrix(0.164096,-0.001149,0.001750,0.249994,0,0);-ms-transform:matrix(0.164096,-0.001149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164096,-0.001149,0.001750,0.249994,0,0);}
.m102_c00277{transform:matrix(0.164106,-0.001149,0.001750,0.249994,0,0);-ms-transform:matrix(0.164106,-0.001149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164106,-0.001149,0.001750,0.249994,0,0);}
.m4a_c00277{transform:matrix(0.164406,-0.001151,0.001750,0.249994,0,0);-ms-transform:matrix(0.164406,-0.001151,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164406,-0.001151,0.001750,0.249994,0,0);}
.mbe_c00277{transform:matrix(0.164486,-0.001151,0.001750,0.249994,0,0);-ms-transform:matrix(0.164486,-0.001151,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164486,-0.001151,0.001750,0.249994,0,0);}
.m59_c00277{transform:matrix(0.164656,-0.001153,0.001750,0.249994,0,0);-ms-transform:matrix(0.164656,-0.001153,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164656,-0.001153,0.001750,0.249994,0,0);}
.m12b_c00277{transform:matrix(0.164731,-0.001153,0.001750,0.249994,0,0);-ms-transform:matrix(0.164731,-0.001153,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164731,-0.001153,0.001750,0.249994,0,0);}
.ma9_c00277{transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);-ms-transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165456,-0.001158,0.001750,0.249994,0,0);}
.ma7_c00277{transform:matrix(0.166416,-0.001165,0.001750,0.249994,0,0);-ms-transform:matrix(0.166416,-0.001165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166416,-0.001165,0.001750,0.249994,0,0);}
.m91_c00277{transform:matrix(0.166606,-0.001166,0.001750,0.249994,0,0);-ms-transform:matrix(0.166606,-0.001166,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166606,-0.001166,0.001750,0.249994,0,0);}
.md7_c00277{transform:matrix(0.167386,-0.001172,0.001750,0.249994,0,0);-ms-transform:matrix(0.167386,-0.001172,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167386,-0.001172,0.001750,0.249994,0,0);}
.mb9_c00277{transform:matrix(0.167716,-0.001174,0.001750,0.249994,0,0);-ms-transform:matrix(0.167716,-0.001174,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167716,-0.001174,0.001750,0.249994,0,0);}
.m1d_c00277{transform:matrix(0.167815,-0.001846,0.002750,0.249985,0,0);-ms-transform:matrix(0.167815,-0.001846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167815,-0.001846,0.002750,0.249985,0,0);}
.m139_c00277{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);}
.m14_c00277{transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-ms-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);}
.m39_c00277{transform:matrix(0.168490,-0.001853,0.002750,0.249985,0,0);-ms-transform:matrix(0.168490,-0.001853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168490,-0.001853,0.002750,0.249985,0,0);}
.md8_c00277{transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);}
.m64_c00277{transform:matrix(0.168621,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168621,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168621,-0.001180,0.001750,0.249994,0,0);}
.md0_c00277{transform:matrix(0.168731,-0.001181,0.001750,0.249994,0,0);-ms-transform:matrix(0.168731,-0.001181,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168731,-0.001181,0.001750,0.249994,0,0);}
.mdd_c00277{transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169386,-0.001186,0.001750,0.249994,0,0);}
.m11e_c00277{transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);}
.m13f_c00277{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);}
.mbd_c00277{transform:matrix(0.170131,-0.001191,0.001750,0.249994,0,0);-ms-transform:matrix(0.170131,-0.001191,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170131,-0.001191,0.001750,0.249994,0,0);}
.m37_c00277{transform:matrix(0.171895,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171895,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171895,-0.001891,0.002750,0.249985,0,0);}
.m5c_c00277{transform:matrix(0.172026,-0.001204,0.001750,0.249994,0,0);-ms-transform:matrix(0.172026,-0.001204,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172026,-0.001204,0.001750,0.249994,0,0);}
.m51_c00277{transform:matrix(0.172261,-0.001206,0.001750,0.249994,0,0);-ms-transform:matrix(0.172261,-0.001206,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172261,-0.001206,0.001750,0.249994,0,0);}
.mfa_c00277{transform:matrix(0.172826,-0.001210,0.001750,0.249994,0,0);-ms-transform:matrix(0.172826,-0.001210,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172826,-0.001210,0.001750,0.249994,0,0);}
.m4d_c00277{transform:matrix(0.173271,-0.001213,0.001750,0.249994,0,0);-ms-transform:matrix(0.173271,-0.001213,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173271,-0.001213,0.001750,0.249994,0,0);}
.m65_c00277{transform:matrix(0.173911,-0.001217,0.001750,0.249994,0,0);-ms-transform:matrix(0.173911,-0.001217,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173911,-0.001217,0.001750,0.249994,0,0);}
.m9a_c00277{transform:matrix(0.174211,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174211,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174211,-0.001219,0.001750,0.249994,0,0);}
.m71_c00277{transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);-ms-transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);}
.mf_c00277{transform:matrix(0.175204,-0.001927,0.002750,0.249985,0,0);-ms-transform:matrix(0.175204,-0.001927,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175204,-0.001927,0.002750,0.249985,0,0);}
.m83_c00277{transform:matrix(0.175211,-0.001226,0.001750,0.249994,0,0);-ms-transform:matrix(0.175211,-0.001226,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175211,-0.001226,0.001750,0.249994,0,0);}
.mce_c00277{transform:matrix(0.175336,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175336,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175336,-0.001227,0.001750,0.249994,0,0);}
.m46_c00277{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);}
.mb3_c00277{transform:matrix(0.175906,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175906,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175906,-0.001231,0.001750,0.249994,0,0);}
.m55_c00277{transform:matrix(0.176336,-0.001234,0.001750,0.249994,0,0);-ms-transform:matrix(0.176336,-0.001234,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176336,-0.001234,0.001750,0.249994,0,0);}
.m77_c00277{transform:matrix(0.176356,-0.001234,0.001750,0.249994,0,0);-ms-transform:matrix(0.176356,-0.001234,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176356,-0.001234,0.001750,0.249994,0,0);}
.m150_c00277{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);}
.mb8_c00277{transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);-ms-transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);}
.m1a_c00277{transform:matrix(0.176589,-0.001942,0.002750,0.249985,0,0);-ms-transform:matrix(0.176589,-0.001942,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176589,-0.001942,0.002750,0.249985,0,0);}
.m138_c00277{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);}
.ma4_c00277{transform:matrix(0.177201,-0.001240,0.001750,0.249994,0,0);-ms-transform:matrix(0.177201,-0.001240,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177201,-0.001240,0.001750,0.249994,0,0);}
.m24_c00277{transform:matrix(0.177749,-0.001955,0.002750,0.249985,0,0);-ms-transform:matrix(0.177749,-0.001955,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177749,-0.001955,0.002750,0.249985,0,0);}
.mbb_c00277{transform:matrix(0.178011,-0.001246,0.001750,0.249994,0,0);-ms-transform:matrix(0.178011,-0.001246,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178011,-0.001246,0.001750,0.249994,0,0);}
.mc4_c00277{transform:matrix(0.178111,-0.001247,0.001750,0.249994,0,0);-ms-transform:matrix(0.178111,-0.001247,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178111,-0.001247,0.001750,0.249994,0,0);}
.m49_c00277{transform:matrix(0.178526,-0.001250,0.001750,0.249994,0,0);-ms-transform:matrix(0.178526,-0.001250,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178526,-0.001250,0.001750,0.249994,0,0);}
.m14a_c00277{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);}
.m11d_c00277{transform:matrix(0.179941,-0.001260,0.001750,0.249994,0,0);-ms-transform:matrix(0.179941,-0.001260,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179941,-0.001260,0.001750,0.249994,0,0);}
.mc5_c00277{transform:matrix(0.180506,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180506,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180506,-0.001264,0.001750,0.249994,0,0);}
.m4c_c00277{transform:matrix(0.180641,-0.001264,0.001750,0.249994,0,0);-ms-transform:matrix(0.180641,-0.001264,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180641,-0.001264,0.001750,0.249994,0,0);}
.mc1_c00277{transform:matrix(0.180856,-0.001266,0.001750,0.249994,0,0);-ms-transform:matrix(0.180856,-0.001266,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180856,-0.001266,0.001750,0.249994,0,0);}
.md2_c00277{transform:matrix(0.181136,-0.001268,0.001750,0.249994,0,0);-ms-transform:matrix(0.181136,-0.001268,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181136,-0.001268,0.001750,0.249994,0,0);}
.m22_c00277{transform:matrix(0.181214,-0.001993,0.002750,0.249985,0,0);-ms-transform:matrix(0.181214,-0.001993,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181214,-0.001993,0.002750,0.249985,0,0);}
.m3f_c00277{transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);}
.mca_c00277{transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);}
.ma1_c00277{transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);}
.m99_c00277{transform:matrix(0.181951,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.181951,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181951,-0.001274,0.001750,0.249994,0,0);}
.m103_c00277{transform:matrix(0.182061,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.182061,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182061,-0.001274,0.001750,0.249994,0,0);}
.m54_c00277{transform:matrix(0.182091,-0.001275,0.001750,0.249994,0,0);-ms-transform:matrix(0.182091,-0.001275,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182091,-0.001275,0.001750,0.249994,0,0);}
.m7b_c00277{transform:matrix(0.182121,-0.001275,0.001750,0.249994,0,0);-ms-transform:matrix(0.182121,-0.001275,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182121,-0.001275,0.001750,0.249994,0,0);}
.mb2_c00277{transform:matrix(0.183076,-0.001282,0.001750,0.249994,0,0);-ms-transform:matrix(0.183076,-0.001282,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183076,-0.001282,0.001750,0.249994,0,0);}
.m48_c00277{transform:matrix(0.183261,-0.001283,0.001750,0.249994,0,0);-ms-transform:matrix(0.183261,-0.001283,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183261,-0.001283,0.001750,0.249994,0,0);}
.ma6_c00277{transform:matrix(0.183296,-0.001283,0.001750,0.249994,0,0);-ms-transform:matrix(0.183296,-0.001283,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183296,-0.001283,0.001750,0.249994,0,0);}
.m11_c00277{transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183674,-0.002020,0.002750,0.249985,0,0);}
.m101_c00277{transform:matrix(0.183680,-0.001286,0.001750,0.249994,0,0);-ms-transform:matrix(0.183680,-0.001286,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183680,-0.001286,0.001750,0.249994,0,0);}
.mde_c00277{transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);}
.m135_c00277{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);}
.m105_c00277{transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);-ms-transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);}
.m40_c00277{transform:matrix(0.184614,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184614,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184614,-0.002031,0.002750,0.249985,0,0);}
.m72_c00277{transform:matrix(0.185220,-0.001297,0.001750,0.249994,0,0);-ms-transform:matrix(0.185220,-0.001297,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185220,-0.001297,0.001750,0.249994,0,0);}
.me4_c00277{transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);}
.m12d_c00277{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);}
.mec_c00277{transform:matrix(0.186915,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186915,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186915,-0.001308,0.001750,0.249994,0,0);}
.m18_c00277{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);}
.mcb_c00277{transform:matrix(0.187295,-0.001311,0.001750,0.249994,0,0);-ms-transform:matrix(0.187295,-0.001311,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187295,-0.001311,0.001750,0.249994,0,0);}
.m56_c00277{transform:matrix(0.187480,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187480,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187480,-0.001312,0.001750,0.249994,0,0);}
.me_c00277{transform:matrix(0.187524,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187524,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187524,-0.002063,0.002750,0.249985,0,0);}
.m26_c00277{transform:matrix(0.187619,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187619,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187619,-0.002064,0.002750,0.249985,0,0);}
.m47_c00277{transform:matrix(0.187720,-0.001314,0.001750,0.249994,0,0);-ms-transform:matrix(0.187720,-0.001314,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187720,-0.001314,0.001750,0.249994,0,0);}
.m12e_c00277{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);}
.m8b_c00277{transform:matrix(0.188280,-0.001318,0.001750,0.249994,0,0);-ms-transform:matrix(0.188280,-0.001318,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188280,-0.001318,0.001750,0.249994,0,0);}
.m1c_c00277{transform:matrix(0.188284,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188284,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188284,-0.002071,0.002750,0.249985,0,0);}
.m60_c00277{transform:matrix(0.188290,-0.001318,0.001750,0.249994,0,0);-ms-transform:matrix(0.188290,-0.001318,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188290,-0.001318,0.001750,0.249994,0,0);}
.m80_c00277{transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);}
.m14e_c00277{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);}
.m6c_c00277{transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);}
.m6a_c00277{transform:matrix(0.188690,-0.001321,0.001750,0.249994,0,0);-ms-transform:matrix(0.188690,-0.001321,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188690,-0.001321,0.001750,0.249994,0,0);}
.m15_c00277{transform:matrix(0.188704,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188704,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188704,-0.002076,0.002750,0.249985,0,0);}
.m43_c00277{transform:matrix(0.188764,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188764,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188764,-0.002076,0.002750,0.249985,0,0);}
.m86_c00277{transform:matrix(0.188800,-0.001322,0.001750,0.249994,0,0);-ms-transform:matrix(0.188800,-0.001322,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188800,-0.001322,0.001750,0.249994,0,0);}
.m3c_c00277{transform:matrix(0.189164,-0.002081,0.002750,0.249985,0,0);-ms-transform:matrix(0.189164,-0.002081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189164,-0.002081,0.002750,0.249985,0,0);}
.m14c_c00277{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);}
.m3d_c00277{transform:matrix(0.189369,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189369,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189369,-0.002083,0.002750,0.249985,0,0);}
.mf9_c00277{transform:matrix(0.189750,-0.001328,0.001750,0.249994,0,0);-ms-transform:matrix(0.189750,-0.001328,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189750,-0.001328,0.001750,0.249994,0,0);}
.maa_c00277{transform:matrix(0.189855,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189855,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189855,-0.001329,0.001750,0.249994,0,0);}
.m108_c00277{transform:matrix(0.189885,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189885,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189885,-0.001329,0.001750,0.249994,0,0);}
.m8c_c00277{transform:matrix(0.189920,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189920,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189920,-0.001329,0.001750,0.249994,0,0);}
.m79_c00277{transform:matrix(0.189935,-0.001330,0.001750,0.249994,0,0);-ms-transform:matrix(0.189935,-0.001330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189935,-0.001330,0.001750,0.249994,0,0);}
.m112_c00277{transform:matrix(0.190455,-0.001333,0.001750,0.249994,0,0);-ms-transform:matrix(0.190455,-0.001333,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190455,-0.001333,0.001750,0.249994,0,0);}
.m31_c00277{transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);}
.mbc_c00277{transform:matrix(0.190545,-0.001334,0.001750,0.249994,0,0);-ms-transform:matrix(0.190545,-0.001334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190545,-0.001334,0.001750,0.249994,0,0);}
.m21_c00277{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);}
.m97_c00277{transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);-ms-transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);}
.m4e_c00277{transform:matrix(0.190750,-0.001335,0.001750,0.249994,0,0);-ms-transform:matrix(0.190750,-0.001335,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190750,-0.001335,0.001750,0.249994,0,0);}
.m17_c00277{transform:matrix(0.190828,-0.002099,0.002750,0.249985,0,0);-ms-transform:matrix(0.190828,-0.002099,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190828,-0.002099,0.002750,0.249985,0,0);}
.m5e_c00277{transform:matrix(0.191100,-0.001338,0.001750,0.249994,0,0);-ms-transform:matrix(0.191100,-0.001338,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191100,-0.001338,0.001750,0.249994,0,0);}
.m75_c00277{transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);-ms-transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);}
.m3a_c00277{transform:matrix(0.191288,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191288,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191288,-0.002104,0.002750,0.249985,0,0);}
.m10_c00277{transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191298,-0.002104,0.002750,0.249985,0,0);}
.m73_c00277{transform:matrix(0.191315,-0.001339,0.001750,0.249994,0,0);-ms-transform:matrix(0.191315,-0.001339,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191315,-0.001339,0.001750,0.249994,0,0);}
.ma2_c00277{transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);-ms-transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);}
.m10e_c00277{transform:matrix(0.191570,-0.001341,0.001750,0.249994,0,0);-ms-transform:matrix(0.191570,-0.001341,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191570,-0.001341,0.001750,0.249994,0,0);}
.me3_c00277{transform:matrix(0.191960,-0.001344,0.001750,0.249994,0,0);-ms-transform:matrix(0.191960,-0.001344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191960,-0.001344,0.001750,0.249994,0,0);}
.md5_c00277{transform:matrix(0.192040,-0.001344,0.001750,0.249994,0,0);-ms-transform:matrix(0.192040,-0.001344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192040,-0.001344,0.001750,0.249994,0,0);}
.mb_c00277{transform:matrix(0.192263,-0.002884,0.003750,0.249972,0,0);-ms-transform:matrix(0.192263,-0.002884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192263,-0.002884,0.003750,0.249972,0,0);}
.m144_c00277{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);}
.m87_c00277{transform:matrix(0.192520,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192520,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192520,-0.001348,0.001750,0.249994,0,0);}
.m45_c00277{transform:matrix(0.192603,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192603,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192603,-0.002119,0.002750,0.249985,0,0);}
.m41_c00277{transform:matrix(0.192993,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.192993,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192993,-0.002123,0.002750,0.249985,0,0);}
.m2c_c00277{transform:matrix(0.193048,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193048,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193048,-0.002124,0.002750,0.249985,0,0);}
.m33_c00277{transform:matrix(0.193053,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193053,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193053,-0.002124,0.002750,0.249985,0,0);}
.md_c00277{transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);}
.m3b_c00277{transform:matrix(0.193128,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193128,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193128,-0.002124,0.002750,0.249985,0,0);}
.mc9_c00277{transform:matrix(0.193135,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193135,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193135,-0.001352,0.001750,0.249994,0,0);}
.mda_c00277{transform:matrix(0.193430,-0.001354,0.001750,0.249994,0,0);-ms-transform:matrix(0.193430,-0.001354,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193430,-0.001354,0.001750,0.249994,0,0);}
.m113_c00277{transform:matrix(0.193630,-0.001355,0.001750,0.249994,0,0);-ms-transform:matrix(0.193630,-0.001355,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193630,-0.001355,0.001750,0.249994,0,0);}
.mcf_c00277{transform:matrix(0.193870,-0.001357,0.001750,0.249994,0,0);-ms-transform:matrix(0.193870,-0.001357,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193870,-0.001357,0.001750,0.249994,0,0);}
.mc6_c00277{transform:matrix(0.194060,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.194060,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194060,-0.001358,0.001750,0.249994,0,0);}
.m5f_c00277{transform:matrix(0.194180,-0.001359,0.001750,0.249994,0,0);-ms-transform:matrix(0.194180,-0.001359,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194180,-0.001359,0.001750,0.249994,0,0);}
.me7_c00277{transform:matrix(0.194285,-0.001360,0.001750,0.249994,0,0);-ms-transform:matrix(0.194285,-0.001360,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194285,-0.001360,0.001750,0.249994,0,0);}
.m136_c00277{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);}
.m58_c00277{transform:matrix(0.194340,-0.001360,0.001750,0.249994,0,0);-ms-transform:matrix(0.194340,-0.001360,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194340,-0.001360,0.001750,0.249994,0,0);}
.mb0_c00277{transform:matrix(0.194435,-0.001361,0.001750,0.249994,0,0);-ms-transform:matrix(0.194435,-0.001361,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194435,-0.001361,0.001750,0.249994,0,0);}
.m129_c00277{transform:matrix(0.194440,-0.001361,0.001750,0.249994,0,0);-ms-transform:matrix(0.194440,-0.001361,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194440,-0.001361,0.001750,0.249994,0,0);}
.ma0_c00277{transform:matrix(0.194580,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194580,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194580,-0.001362,0.001750,0.249994,0,0);}
.mf7_c00277{transform:matrix(0.194825,-0.001364,0.001750,0.249994,0,0);-ms-transform:matrix(0.194825,-0.001364,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194825,-0.001364,0.001750,0.249994,0,0);}
.m10c_c00277{transform:matrix(0.195005,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.195005,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195005,-0.001365,0.001750,0.249994,0,0);}
.mf8_c00277{transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);}
.m4f_c00277{transform:matrix(0.195055,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.195055,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195055,-0.001365,0.001750,0.249994,0,0);}
.m29_c00277{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);}
.m14b_c00277{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);}
.m78_c00277{transform:matrix(0.195865,-0.001371,0.001750,0.249994,0,0);-ms-transform:matrix(0.195865,-0.001371,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195865,-0.001371,0.001750,0.249994,0,0);}
.m88_c00277{transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);-ms-transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196030,-0.001372,0.001750,0.249994,0,0);}
.mb7_c00277{transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);}
.m13_c00277{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);}
.mf0_c00277{transform:matrix(0.196810,-0.001378,0.001750,0.249994,0,0);-ms-transform:matrix(0.196810,-0.001378,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196810,-0.001378,0.001750,0.249994,0,0);}
.m1b_c00277{transform:matrix(0.196943,-0.002166,0.002750,0.249985,0,0);-ms-transform:matrix(0.196943,-0.002166,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196943,-0.002166,0.002750,0.249985,0,0);}
.m36_c00277{transform:matrix(0.197168,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197168,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197168,-0.002169,0.002750,0.249985,0,0);}
.mff_c00277{transform:matrix(0.197295,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197295,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197295,-0.001381,0.001750,0.249994,0,0);}
.m7c_c00277{transform:matrix(0.197340,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197340,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197340,-0.001381,0.001750,0.249994,0,0);}
.m9b_c00277{transform:matrix(0.197630,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197630,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197630,-0.001383,0.001750,0.249994,0,0);}
.me6_c00277{transform:matrix(0.197700,-0.001384,0.001750,0.249994,0,0);-ms-transform:matrix(0.197700,-0.001384,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197700,-0.001384,0.001750,0.249994,0,0);}
.m111_c00277{transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-ms-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);}
.m1f_c00277{transform:matrix(0.198423,-0.002183,0.002750,0.249985,0,0);-ms-transform:matrix(0.198423,-0.002183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198423,-0.002183,0.002750,0.249985,0,0);}
.m118_c00277{transform:matrix(0.198545,-0.001390,0.001750,0.249994,0,0);-ms-transform:matrix(0.198545,-0.001390,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198545,-0.001390,0.001750,0.249994,0,0);}
.m42_c00277{transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199178,-0.002191,0.002750,0.249985,0,0);}
.m82_c00277{transform:matrix(0.199215,-0.001395,0.001750,0.249994,0,0);-ms-transform:matrix(0.199215,-0.001395,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199215,-0.001395,0.001750,0.249994,0,0);}
.mc0_c00277{transform:matrix(0.199390,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199390,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199390,-0.001396,0.001750,0.249994,0,0);}
.md6_c00277{transform:matrix(0.199440,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199440,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199440,-0.001396,0.001750,0.249994,0,0);}
.m3e_c00277{transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199568,-0.002195,0.002750,0.249985,0,0);}
.m145_c00277{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);}
.ma8_c00277{transform:matrix(0.199675,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199675,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199675,-0.001398,0.001750,0.249994,0,0);}
.m7d_c00277{transform:matrix(0.199830,-0.001399,0.001750,0.249994,0,0);-ms-transform:matrix(0.199830,-0.001399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199830,-0.001399,0.001750,0.249994,0,0);}
.m57_c00277{transform:matrix(0.199935,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.199935,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199935,-0.001400,0.001750,0.249994,0,0);}
.m23_c00277{transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200003,-0.002200,0.002750,0.249985,0,0);}
.m104_c00277{transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);}
.m89_c00277{transform:matrix(0.200575,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200575,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200575,-0.001404,0.001750,0.249994,0,0);}
.m20_c00277{transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200813,-0.002209,0.002750,0.249985,0,0);}
.me8_c00277{transform:matrix(0.200815,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200815,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200815,-0.001406,0.001750,0.249994,0,0);}
.m9d_c00277{transform:matrix(0.201105,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201105,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201105,-0.001408,0.001750,0.249994,0,0);}
.mc2_c00277{transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);-ms-transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);}
.m12f_c00277{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);}
.m85_c00277{transform:matrix(0.202750,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202750,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202750,-0.001419,0.001750,0.249994,0,0);}
.m67_c00277{transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);-ms-transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);}
.m143_c00277{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);}
.m8a_c00277{transform:matrix(0.203645,-0.001426,0.001750,0.249994,0,0);-ms-transform:matrix(0.203645,-0.001426,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203645,-0.001426,0.001750,0.249994,0,0);}
.m10d_c00277{transform:matrix(0.204120,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204120,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204120,-0.001429,0.001750,0.249994,0,0);}
.m148_c00277{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);}
.m115_c00277{transform:matrix(0.204345,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204345,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204345,-0.001430,0.001750,0.249994,0,0);}
.mad_c00277{transform:matrix(0.204530,-0.001432,0.001750,0.249994,0,0);-ms-transform:matrix(0.204530,-0.001432,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204530,-0.001432,0.001750,0.249994,0,0);}
.m117_c00277{transform:matrix(0.204835,-0.001434,0.001750,0.249994,0,0);-ms-transform:matrix(0.204835,-0.001434,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204835,-0.001434,0.001750,0.249994,0,0);}
.m7a_c00277{transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);-ms-transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);}
.me5_c00277{transform:matrix(0.204965,-0.001435,0.001750,0.249994,0,0);-ms-transform:matrix(0.204965,-0.001435,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204965,-0.001435,0.001750,0.249994,0,0);}
.m149_c00277{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.m90_c00277{transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);-ms-transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);}
.m122_c00277{transform:matrix(0.205465,-0.001438,0.001750,0.249994,0,0);-ms-transform:matrix(0.205465,-0.001438,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205465,-0.001438,0.001750,0.249994,0,0);}
.m84_c00277{transform:matrix(0.205580,-0.001439,0.001750,0.249994,0,0);-ms-transform:matrix(0.205580,-0.001439,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205580,-0.001439,0.001750,0.249994,0,0);}
.m9e_c00277{transform:matrix(0.205710,-0.001440,0.001750,0.249994,0,0);-ms-transform:matrix(0.205710,-0.001440,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205710,-0.001440,0.001750,0.249994,0,0);}
.mfd_c00277{transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);-ms-transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205715,-0.001440,0.001750,0.249994,0,0);}
.m7e_c00277{transform:matrix(0.206145,-0.001443,0.001750,0.249994,0,0);-ms-transform:matrix(0.206145,-0.001443,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206145,-0.001443,0.001750,0.249994,0,0);}
.md9_c00277{transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);-ms-transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);}
.m126_c00277{transform:matrix(0.206240,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206240,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206240,-0.001444,0.001750,0.249994,0,0);}
.m61_c00277{transform:matrix(0.206320,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206320,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206320,-0.001444,0.001750,0.249994,0,0);}
.m100_c00277{transform:matrix(0.206605,-0.001446,0.001750,0.249994,0,0);-ms-transform:matrix(0.206605,-0.001446,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206605,-0.001446,0.001750,0.249994,0,0);}
.m8d_c00277{transform:matrix(0.207110,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207110,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207110,-0.001450,0.001750,0.249994,0,0);}
.m8e_c00277{transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207300,-0.001451,0.001750,0.249994,0,0);}
.md3_c00277{transform:matrix(0.207505,-0.001453,0.001750,0.249994,0,0);-ms-transform:matrix(0.207505,-0.001453,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207505,-0.001453,0.001750,0.249994,0,0);}
.m9c_c00277{transform:matrix(0.207680,-0.001454,0.001750,0.249994,0,0);-ms-transform:matrix(0.207680,-0.001454,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207680,-0.001454,0.001750,0.249994,0,0);}
.mbf_c00277{transform:matrix(0.207815,-0.001455,0.001750,0.249994,0,0);-ms-transform:matrix(0.207815,-0.001455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207815,-0.001455,0.001750,0.249994,0,0);}
.m110_c00277{transform:matrix(0.207830,-0.001455,0.001750,0.249994,0,0);-ms-transform:matrix(0.207830,-0.001455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207830,-0.001455,0.001750,0.249994,0,0);}
.m94_c00277{transform:matrix(0.208030,-0.001456,0.001750,0.249994,0,0);-ms-transform:matrix(0.208030,-0.001456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208030,-0.001456,0.001750,0.249994,0,0);}
.m81_c00277{transform:matrix(0.208390,-0.001459,0.001750,0.249994,0,0);-ms-transform:matrix(0.208390,-0.001459,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208390,-0.001459,0.001750,0.249994,0,0);}
.m35_c00277{transform:matrix(0.208762,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208762,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208762,-0.002296,0.002750,0.249985,0,0);}
.m109_c00277{transform:matrix(0.209375,-0.001466,0.001750,0.249994,0,0);-ms-transform:matrix(0.209375,-0.001466,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209375,-0.001466,0.001750,0.249994,0,0);}
.m93_c00277{transform:matrix(0.209450,-0.001466,0.001750,0.249994,0,0);-ms-transform:matrix(0.209450,-0.001466,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209450,-0.001466,0.001750,0.249994,0,0);}
.m13c_c00277{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);}
.m13e_c00277{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);}
.m69_c00277{transform:matrix(0.209775,-0.001468,0.001750,0.249994,0,0);-ms-transform:matrix(0.209775,-0.001468,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209775,-0.001468,0.001750,0.249994,0,0);}
.mee_c00277{transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210085,-0.001471,0.001750,0.249994,0,0);}
.m63_c00277{transform:matrix(0.210175,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210175,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210175,-0.001471,0.001750,0.249994,0,0);}
.m5a_c00277{transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);-ms-transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211015,-0.001477,0.001750,0.249994,0,0);}
.m98_c00277{transform:matrix(0.212030,-0.001484,0.001750,0.249994,0,0);-ms-transform:matrix(0.212030,-0.001484,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212030,-0.001484,0.001750,0.249994,0,0);}
.m131_c00277{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);}
.m130_c00277{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);}
.mac_c00277{transform:matrix(0.213560,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213560,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213560,-0.001495,0.001750,0.249994,0,0);}
.m127_c00277{transform:matrix(0.213785,-0.001496,0.001750,0.249994,0,0);-ms-transform:matrix(0.213785,-0.001496,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213785,-0.001496,0.001750,0.249994,0,0);}
.m30_c00277{transform:matrix(0.214107,-0.002355,0.002750,0.249985,0,0);-ms-transform:matrix(0.214107,-0.002355,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214107,-0.002355,0.002750,0.249985,0,0);}
.m137_c00277{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);}
.m2a_c00277{transform:matrix(0.215302,-0.002368,0.002750,0.249985,0,0);-ms-transform:matrix(0.215302,-0.002368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215302,-0.002368,0.002750,0.249985,0,0);}
.m141_c00277{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);}
.m7f_c00277{transform:matrix(0.216365,-0.001515,0.001750,0.249994,0,0);-ms-transform:matrix(0.216365,-0.001515,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216365,-0.001515,0.001750,0.249994,0,0);}
.m10b_c00277{transform:matrix(0.216690,-0.001517,0.001750,0.249994,0,0);-ms-transform:matrix(0.216690,-0.001517,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216690,-0.001517,0.001750,0.249994,0,0);}
.mae_c00277{transform:matrix(0.217840,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217840,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217840,-0.001525,0.001750,0.249994,0,0);}
.mfb_c00277{transform:matrix(0.217970,-0.001526,0.001750,0.249994,0,0);-ms-transform:matrix(0.217970,-0.001526,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217970,-0.001526,0.001750,0.249994,0,0);}
.mf1_c00277{transform:matrix(0.218160,-0.001527,0.001750,0.249994,0,0);-ms-transform:matrix(0.218160,-0.001527,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218160,-0.001527,0.001750,0.249994,0,0);}
.m11f_c00277{transform:matrix(0.218200,-0.001527,0.001750,0.249994,0,0);-ms-transform:matrix(0.218200,-0.001527,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218200,-0.001527,0.001750,0.249994,0,0);}
.m3_c00277{transform:matrix(0.218275,-0.003274,0.003750,0.249972,0,0);-ms-transform:matrix(0.218275,-0.003274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218275,-0.003274,0.003750,0.249972,0,0);}
.m11b_c00277{transform:matrix(0.218525,-0.001530,0.001750,0.249994,0,0);-ms-transform:matrix(0.218525,-0.001530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218525,-0.001530,0.001750,0.249994,0,0);}
.m140_c00277{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);}
.m12a_c00277{transform:matrix(0.219365,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219365,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219365,-0.001536,0.001750,0.249994,0,0);}
.m19_c00277{transform:matrix(0.219402,-0.002413,0.002750,0.249985,0,0);-ms-transform:matrix(0.219402,-0.002413,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219402,-0.002413,0.002750,0.249985,0,0);}
.m95_c00277{transform:matrix(0.219615,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219615,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219615,-0.001537,0.001750,0.249994,0,0);}
.mb6_c00277{transform:matrix(0.220270,-0.001542,0.001750,0.249994,0,0);-ms-transform:matrix(0.220270,-0.001542,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220270,-0.001542,0.001750,0.249994,0,0);}
.m28_c00277{transform:matrix(0.220482,-0.002425,0.002750,0.249985,0,0);-ms-transform:matrix(0.220482,-0.002425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220482,-0.002425,0.002750,0.249985,0,0);}
.m11a_c00277{transform:matrix(0.220520,-0.001544,0.001750,0.249994,0,0);-ms-transform:matrix(0.220520,-0.001544,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220520,-0.001544,0.001750,0.249994,0,0);}
.m107_c00277{transform:matrix(0.221695,-0.001552,0.001750,0.249994,0,0);-ms-transform:matrix(0.221695,-0.001552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221695,-0.001552,0.001750,0.249994,0,0);}
.m11c_c00277{transform:matrix(0.222995,-0.001561,0.001750,0.249994,0,0);-ms-transform:matrix(0.222995,-0.001561,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222995,-0.001561,0.001750,0.249994,0,0);}
.mb1_c00277{transform:matrix(0.223170,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223170,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223170,-0.001562,0.001750,0.249994,0,0);}
.m6b_c00277{transform:matrix(0.224375,-0.001571,0.001750,0.249994,0,0);-ms-transform:matrix(0.224375,-0.001571,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224375,-0.001571,0.001750,0.249994,0,0);}
.med_c00277{transform:matrix(0.225199,-0.001576,0.001750,0.249994,0,0);-ms-transform:matrix(0.225199,-0.001576,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225199,-0.001576,0.001750,0.249994,0,0);}
.m68_c00277{transform:matrix(0.225989,-0.001582,0.001750,0.249994,0,0);-ms-transform:matrix(0.225989,-0.001582,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225989,-0.001582,0.001750,0.249994,0,0);}
.m38_c00277{transform:matrix(0.226191,-0.002488,0.002750,0.249985,0,0);-ms-transform:matrix(0.226191,-0.002488,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226191,-0.002488,0.002750,0.249985,0,0);}
.m76_c00277{transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);-ms-transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);}
.m124_c00277{transform:matrix(0.226674,-0.001587,0.001750,0.249994,0,0);-ms-transform:matrix(0.226674,-0.001587,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226674,-0.001587,0.001750,0.249994,0,0);}
.m2b_c00277{transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);-ms-transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);}
.m147_c00277{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);}
.mdb_c00277{transform:matrix(0.230834,-0.001616,0.001750,0.249994,0,0);-ms-transform:matrix(0.230834,-0.001616,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230834,-0.001616,0.001750,0.249994,0,0);}
.m151_c00277{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);}
.m121_c00277{transform:matrix(0.237834,-0.001665,0.001750,0.249994,0,0);-ms-transform:matrix(0.237834,-0.001665,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237834,-0.001665,0.001750,0.249994,0,0);}
.m9f_c00277{transform:matrix(0.239059,-0.001673,0.001750,0.249994,0,0);-ms-transform:matrix(0.239059,-0.001673,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239059,-0.001673,0.001750,0.249994,0,0);}
.m9_c00277{transform:matrix(0.239158,-0.003587,0.003750,0.249972,0,0);-ms-transform:matrix(0.239158,-0.003587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239158,-0.003587,0.003750,0.249972,0,0);}
.m125_c00277{transform:matrix(0.239469,-0.001676,0.001750,0.249994,0,0);-ms-transform:matrix(0.239469,-0.001676,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239469,-0.001676,0.001750,0.249994,0,0);}
.mb5_c00277{transform:matrix(0.240884,-0.001686,0.001750,0.249994,0,0);-ms-transform:matrix(0.240884,-0.001686,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240884,-0.001686,0.001750,0.249994,0,0);}
.mfc_c00277{transform:matrix(0.241094,-0.001688,0.001750,0.249994,0,0);-ms-transform:matrix(0.241094,-0.001688,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241094,-0.001688,0.001750,0.249994,0,0);}
.me9_c00277{transform:matrix(0.241614,-0.001691,0.001750,0.249994,0,0);-ms-transform:matrix(0.241614,-0.001691,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241614,-0.001691,0.001750,0.249994,0,0);}
.m1e_c00277{transform:matrix(0.241900,-0.002661,0.002750,0.249985,0,0);-ms-transform:matrix(0.241900,-0.002661,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241900,-0.002661,0.002750,0.249985,0,0);}
.m96_c00277{transform:matrix(0.242904,-0.001700,0.001750,0.249994,0,0);-ms-transform:matrix(0.242904,-0.001700,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242904,-0.001700,0.001750,0.249994,0,0);}
.mb4_c00277{transform:matrix(0.244674,-0.001713,0.001750,0.249994,0,0);-ms-transform:matrix(0.244674,-0.001713,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244674,-0.001713,0.001750,0.249994,0,0);}
.mef_c00277{transform:matrix(0.247004,-0.001729,0.001750,0.249994,0,0);-ms-transform:matrix(0.247004,-0.001729,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247004,-0.001729,0.001750,0.249994,0,0);}
.m92_c00277{transform:matrix(0.247224,-0.001731,0.001750,0.249994,0,0);-ms-transform:matrix(0.247224,-0.001731,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247224,-0.001731,0.001750,0.249994,0,0);}
.mc7_c00277{transform:matrix(0.249904,-0.001749,0.001750,0.249994,0,0);-ms-transform:matrix(0.249904,-0.001749,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249904,-0.001749,0.001750,0.249994,0,0);}
.m13d_c00277{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m123_c00277{transform:matrix(0.251004,-0.001757,0.001750,0.249994,0,0);-ms-transform:matrix(0.251004,-0.001757,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251004,-0.001757,0.001750,0.249994,0,0);}
.m4b_c00277{transform:matrix(0.251144,-0.001758,0.001750,0.249994,0,0);-ms-transform:matrix(0.251144,-0.001758,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251144,-0.001758,0.001750,0.249994,0,0);}
.m116_c00277{transform:matrix(0.257819,-0.001805,0.001750,0.249994,0,0);-ms-transform:matrix(0.257819,-0.001805,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257819,-0.001805,0.001750,0.249994,0,0);}
.m10f_c00277{transform:matrix(0.262514,-0.001838,0.001750,0.249994,0,0);-ms-transform:matrix(0.262514,-0.001838,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262514,-0.001838,0.001750,0.249994,0,0);}
.m146_c00277{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.mf5_c00277{transform:matrix(0.269733,-0.001888,0.001750,0.249994,0,0);-ms-transform:matrix(0.269733,-0.001888,0.001750,0.249994,0,0);-webkit-transform:matrix(0.269733,-0.001888,0.001750,0.249994,0,0);}
.mf4_c00277{transform:matrix(0.271988,-0.001904,0.001750,0.249994,0,0);-ms-transform:matrix(0.271988,-0.001904,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271988,-0.001904,0.001750,0.249994,0,0);}
.m133_c00277{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m12c_c00277{transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279085,0.000000,0.000000,0.250000,0,0);}
.mf2_c00277{transform:matrix(0.279533,-0.001957,0.001750,0.249994,0,0);-ms-transform:matrix(0.279533,-0.001957,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279533,-0.001957,0.001750,0.249994,0,0);}
.m34_c00277{transform:matrix(0.288803,-0.003177,0.002750,0.249985,0,0);-ms-transform:matrix(0.288803,-0.003177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288803,-0.003177,0.002750,0.249985,0,0);}
.m152_c00277{transform:matrix(0.290860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290860,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{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);}
.m128_c00277{transform:matrix(0.308742,-0.002161,0.001750,0.249994,0,0);-ms-transform:matrix(0.308742,-0.002161,0.001750,0.249994,0,0);-webkit-transform:matrix(0.308742,-0.002161,0.001750,0.249994,0,0);}
.m6_c00277{transform:matrix(0.313815,-0.004707,0.003750,0.249972,0,0);-ms-transform:matrix(0.313815,-0.004707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313815,-0.004707,0.003750,0.249972,0,0);}
.m13a_c00277{transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314085,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.323179,-0.004848,0.003750,0.249972,0,0);-ms-transform:matrix(0.323179,-0.004848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.323179,-0.004848,0.003750,0.249972,0,0);}
.m142_c00277{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.354985,-0.005325,0.003750,0.249972,0,0);-ms-transform:matrix(0.354985,-0.005325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.354985,-0.005325,0.003750,0.249972,0,0);}
.m132_c00277{transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);}
.mea_c00277{transform:matrix(0.376051,-0.002632,0.001750,0.249994,0,0);-ms-transform:matrix(0.376051,-0.002632,0.001750,0.249994,0,0);-webkit-transform:matrix(0.376051,-0.002632,0.001750,0.249994,0,0);}
.m134_c00277{transform:matrix(0.390990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390990,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.399550,-0.005993,0.003750,0.249972,0,0);-ms-transform:matrix(0.399550,-0.005993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.399550,-0.005993,0.003750,0.249972,0,0);}
.m4_c00277{transform:matrix(0.401455,-0.006022,0.003750,0.249972,0,0);-ms-transform:matrix(0.401455,-0.006022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.401455,-0.006022,0.003750,0.249972,0,0);}
.m120_c00277{transform:matrix(0.403745,-0.002826,0.001750,0.249994,0,0);-ms-transform:matrix(0.403745,-0.002826,0.001750,0.249994,0,0);-webkit-transform:matrix(0.403745,-0.002826,0.001750,0.249994,0,0);}
.ma_c00277{transform:matrix(0.429277,-0.006439,0.003750,0.249972,0,0);-ms-transform:matrix(0.429277,-0.006439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.429277,-0.006439,0.003750,0.249972,0,0);}
.mc_c00277{transform:matrix(0.450189,-0.006753,0.003750,0.249972,0,0);-ms-transform:matrix(0.450189,-0.006753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.450189,-0.006753,0.003750,0.249972,0,0);}
.m8_c00277{transform:matrix(0.552588,-0.008289,0.003750,0.249972,0,0);-ms-transform:matrix(0.552588,-0.008289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.552588,-0.008289,0.003750,0.249972,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;}
.fs0_c00277{font-size:16.800000px;}
.fs12_c00277{font-size:30.450000px;}
.fsf_c00277{font-size:52.500000px;}
.fs11_c00277{font-size:54.600000px;}
.fs10_c00277{font-size:55.650000px;}
.fsb_c00277{font-size:67.201646px;}
.fs6_c00277{font-size:67.204065px;}
.fsc_c00277{font-size:68.251672px;}
.fs3_c00277{font-size:68.254129px;}
.fse_c00277{font-size:69.301698px;}
.fs5_c00277{font-size:69.304193px;}
.fsd_c00277{font-size:70.351724px;}
.fs4_c00277{font-size:70.354256px;}
.fs9_c00277{font-size:71.401749px;}
.fsa_c00277{font-size:72.451775px;}
.fs1_c00277{font-size:72.458150px;}
.fs7_c00277{font-size:73.501801px;}
.fs8_c00277{font-size:79.801955px;}
.fs2_c00277{font-size:97.660985px;}
.y0_c00277{bottom:0.000000px;}
.y138_c00277{bottom:44.280000px;}
.y137_c00277{bottom:102.193500px;}
.y130_c00277{bottom:165.783000px;}
.y131_c00277{bottom:166.548000px;}
.y132_c00277{bottom:167.362500px;}
.y133_c00277{bottom:167.820000px;}
.y134_c00277{bottom:168.480000px;}
.y135_c00277{bottom:169.384500px;}
.y136_c00277{bottom:169.495500px;}
.y12f_c00277{bottom:185.425500px;}
.y12e_c00277{bottom:202.092000px;}
.y128_c00277{bottom:259.901563px;}
.y12a_c00277{bottom:259.901632px;}
.y127_c00277{bottom:259.901664px;}
.y12b_c00277{bottom:259.901872px;}
.y129_c00277{bottom:259.901943px;}
.y12c_c00277{bottom:259.902132px;}
.y12d_c00277{bottom:259.902252px;}
.y126_c00277{bottom:259.902334px;}
.y125_c00277{bottom:259.902975px;}
.y123_c00277{bottom:259.903116px;}
.y124_c00277{bottom:259.903525px;}
.y118_c00277{bottom:282.920629px;}
.y121_c00277{bottom:282.920896px;}
.y119_c00277{bottom:282.920949px;}
.y120_c00277{bottom:282.921166px;}
.y11f_c00277{bottom:282.921406px;}
.y122_c00277{bottom:282.921456px;}
.y11a_c00277{bottom:282.921508px;}
.y11e_c00277{bottom:282.921567px;}
.y11b_c00277{bottom:282.922188px;}
.y11d_c00277{bottom:282.922267px;}
.y11c_c00277{bottom:282.922597px;}
.y116_c00277{bottom:305.629149px;}
.y112_c00277{bottom:305.629182px;}
.y117_c00277{bottom:305.629269px;}
.y114_c00277{bottom:305.629360px;}
.y115_c00277{bottom:305.629590px;}
.y113_c00277{bottom:305.629731px;}
.y111_c00277{bottom:305.629732px;}
.y110_c00277{bottom:305.629852px;}
.y10f_c00277{bottom:328.821483px;}
.y10e_c00277{bottom:328.822113px;}
.y10c_c00277{bottom:328.822524px;}
.y10d_c00277{bottom:328.822753px;}
.y10a_c00277{bottom:328.822845px;}
.y108_c00277{bottom:328.822866px;}
.y10b_c00277{bottom:328.822894px;}
.y107_c00277{bottom:328.822906px;}
.y106_c00277{bottom:328.823457px;}
.y109_c00277{bottom:328.823515px;}
.y105_c00277{bottom:328.823737px;}
.y104_c00277{bottom:328.824018px;}
.y100_c00277{bottom:351.801579px;}
.yff_c00277{bottom:351.802029px;}
.y101_c00277{bottom:351.802209px;}
.yfe_c00277{bottom:351.802309px;}
.y102_c00277{bottom:351.802618px;}
.y103_c00277{bottom:351.802998px;}
.yfd_c00277{bottom:351.803029px;}
.yfc_c00277{bottom:351.803730px;}
.yfb_c00277{bottom:351.803770px;}
.yf9_c00277{bottom:351.804061px;}
.yfa_c00277{bottom:351.804441px;}
.yf8_c00277{bottom:351.804762px;}
.yed_c00277{bottom:374.545215px;}
.yee_c00277{bottom:374.545474px;}
.yec_c00277{bottom:374.545605px;}
.yeb_c00277{bottom:374.545885px;}
.yef_c00277{bottom:374.546004px;}
.yf1_c00277{bottom:374.546523px;}
.yf0_c00277{bottom:374.546563px;}
.yf2_c00277{bottom:374.546583px;}
.yf3_c00277{bottom:374.547322px;}
.yf4_c00277{bottom:374.547912px;}
.yf5_c00277{bottom:374.547972px;}
.yf6_c00277{bottom:374.548542px;}
.yf7_c00277{bottom:374.548891px;}
.ydf_c00277{bottom:397.669920px;}
.yea_c00277{bottom:397.670256px;}
.ye1_c00277{bottom:397.670529px;}
.ye0_c00277{bottom:397.670659px;}
.ye4_c00277{bottom:397.670679px;}
.ye2_c00277{bottom:397.670709px;}
.ye9_c00277{bottom:397.670926px;}
.ye3_c00277{bottom:397.670949px;}
.ye8_c00277{bottom:397.670997px;}
.ye5_c00277{bottom:397.671118px;}
.ye7_c00277{bottom:397.671307px;}
.ye6_c00277{bottom:397.671498px;}
.yd5_c00277{bottom:421.126755px;}
.yd6_c00277{bottom:421.127104px;}
.yd7_c00277{bottom:421.127304px;}
.yd4_c00277{bottom:421.127305px;}
.yd8_c00277{bottom:421.127983px;}
.ydd_c00277{bottom:421.128001px;}
.yd9_c00277{bottom:421.128153px;}
.yde_c00277{bottom:421.128441px;}
.ydc_c00277{bottom:421.128492px;}
.yda_c00277{bottom:421.128532px;}
.ydb_c00277{bottom:421.128562px;}
.yd3_c00277{bottom:443.839305px;}
.yca_c00277{bottom:443.839438px;}
.yc7_c00277{bottom:443.839609px;}
.yc9_c00277{bottom:443.839809px;}
.ycb_c00277{bottom:443.839848px;}
.yd2_c00277{bottom:443.839885px;}
.yc8_c00277{bottom:443.840049px;}
.yd1_c00277{bottom:443.840245px;}
.ycc_c00277{bottom:443.840448px;}
.yd0_c00277{bottom:443.840916px;}
.ycd_c00277{bottom:443.841007px;}
.ycf_c00277{bottom:443.841076px;}
.yce_c00277{bottom:443.841537px;}
.ybb_c00277{bottom:466.487322px;}
.ybd_c00277{bottom:466.487341px;}
.ybe_c00277{bottom:466.487541px;}
.ybc_c00277{bottom:466.487911px;}
.yc1_c00277{bottom:466.487920px;}
.yc0_c00277{bottom:466.488040px;}
.ybf_c00277{bottom:466.488141px;}
.yc2_c00277{bottom:466.488300px;}
.yc5_c00277{bottom:466.488999px;}
.yc3_c00277{bottom:466.489009px;}
.yc4_c00277{bottom:466.489119px;}
.yc6_c00277{bottom:466.489329px;}
.yb1_c00277{bottom:489.437465px;}
.yb2_c00277{bottom:489.437675px;}
.yb4_c00277{bottom:489.437844px;}
.yb3_c00277{bottom:489.438035px;}
.yb0_c00277{bottom:489.438045px;}
.yba_c00277{bottom:489.438312px;}
.yb5_c00277{bottom:489.438493px;}
.yb8_c00277{bottom:489.438683px;}
.yb9_c00277{bottom:489.438882px;}
.yb6_c00277{bottom:489.438913px;}
.yb7_c00277{bottom:489.438963px;}
.yae_c00277{bottom:512.357895px;}
.yad_c00277{bottom:512.357965px;}
.yaf_c00277{bottom:512.358364px;}
.yac_c00277{bottom:512.358497px;}
.yab_c00277{bottom:512.358777px;}
.yaa_c00277{bottom:512.359388px;}
.ya9_c00277{bottom:512.359447px;}
.ya8_c00277{bottom:512.359728px;}
.ya7_c00277{bottom:512.360278px;}
.y9c_c00277{bottom:534.799920px;}
.y9d_c00277{bottom:534.800540px;}
.y9e_c00277{bottom:534.800569px;}
.y9b_c00277{bottom:534.800590px;}
.y9f_c00277{bottom:534.800949px;}
.ya0_c00277{bottom:534.800979px;}
.ya1_c00277{bottom:534.801659px;}
.ya4_c00277{bottom:534.801817px;}
.ya5_c00277{bottom:534.802227px;}
.ya2_c00277{bottom:534.802248px;}
.ya3_c00277{bottom:534.802267px;}
.ya6_c00277{bottom:534.802437px;}
.y91_c00277{bottom:557.481513px;}
.y90_c00277{bottom:557.481703px;}
.y95_c00277{bottom:557.481741px;}
.y9a_c00277{bottom:557.481810px;}
.y94_c00277{bottom:557.481931px;}
.y92_c00277{bottom:557.481942px;}
.y96_c00277{bottom:557.482041px;}
.y99_c00277{bottom:557.482290px;}
.y93_c00277{bottom:557.482572px;}
.y97_c00277{bottom:557.482690px;}
.y98_c00277{bottom:557.482900px;}
.y8f_c00277{bottom:580.401513px;}
.y8e_c00277{bottom:580.401723px;}
.y8d_c00277{bottom:580.402153px;}
.y8c_c00277{bottom:580.402363px;}
.y8a_c00277{bottom:580.402524px;}
.y89_c00277{bottom:580.402805px;}
.y83_c00277{bottom:580.402827px;}
.y8b_c00277{bottom:580.402844px;}
.y87_c00277{bottom:580.402875px;}
.y84_c00277{bottom:580.403207px;}
.y86_c00277{bottom:580.403336px;}
.y88_c00277{bottom:580.403435px;}
.y85_c00277{bottom:580.403856px;}
.y7c_c00277{bottom:602.780778px;}
.y7d_c00277{bottom:602.780827px;}
.y7a_c00277{bottom:602.780829px;}
.y7b_c00277{bottom:602.781148px;}
.y79_c00277{bottom:602.781260px;}
.y77_c00277{bottom:602.781330px;}
.y82_c00277{bottom:602.781356px;}
.y7f_c00277{bottom:602.781436px;}
.y7e_c00277{bottom:602.781567px;}
.y80_c00277{bottom:602.781616px;}
.y78_c00277{bottom:602.781630px;}
.y81_c00277{bottom:602.781726px;}
.y71_c00277{bottom:625.968642px;}
.y70_c00277{bottom:625.969192px;}
.y74_c00277{bottom:625.969221px;}
.y73_c00277{bottom:625.969292px;}
.y75_c00277{bottom:625.969371px;}
.y72_c00277{bottom:625.969392px;}
.y76_c00277{bottom:625.969720px;}
.y6f_c00277{bottom:625.969732px;}
.y6e_c00277{bottom:625.969833px;}
.y6d_c00277{bottom:625.970323px;}
.y6c_c00277{bottom:625.970803px;}
.y6b_c00277{bottom:625.971354px;}
.y64_c00277{bottom:648.349734px;}
.y68_c00277{bottom:648.350013px;}
.y65_c00277{bottom:648.350023px;}
.y63_c00277{bottom:648.350124px;}
.y66_c00277{bottom:648.350204px;}
.y62_c00277{bottom:648.350224px;}
.y67_c00277{bottom:648.350373px;}
.y69_c00277{bottom:648.350422px;}
.y60_c00277{bottom:648.350635px;}
.y5f_c00277{bottom:648.350665px;}
.y61_c00277{bottom:648.350895px;}
.y6a_c00277{bottom:648.351022px;}
.y5e_c00277{bottom:648.351326px;}
.y51_c00277{bottom:669.600126px;}
.y52_c00277{bottom:669.879835px;}
.y53_c00277{bottom:670.100734px;}
.y54_c00277{bottom:670.221946px;}
.y55_c00277{bottom:670.418685px;}
.y56_c00277{bottom:670.771957px;}
.y57_c00277{bottom:670.966649px;}
.y58_c00277{bottom:671.318220px;}
.y59_c00277{bottom:671.439243px;}
.y5a_c00277{bottom:671.730135px;}
.y5b_c00277{bottom:671.934381px;}
.y5c_c00277{bottom:672.393556px;}
.y5d_c00277{bottom:672.688428px;}
.y48_c00277{bottom:692.550000px;}
.y49_c00277{bottom:693.347349px;}
.y4a_c00277{bottom:693.676429px;}
.y4b_c00277{bottom:693.982641px;}
.y4c_c00277{bottom:694.360620px;}
.y4d_c00277{bottom:694.568552px;}
.y4e_c00277{bottom:695.092029px;}
.y4f_c00277{bottom:695.439873px;}
.y50_c00277{bottom:695.651574px;}
.y45_c00277{bottom:714.787281px;}
.y47_c00277{bottom:714.787548px;}
.y44_c00277{bottom:714.787661px;}
.y46_c00277{bottom:714.787834px;}
.y39_c00277{bottom:737.635203px;}
.y3a_c00277{bottom:737.840754px;}
.y3b_c00277{bottom:738.034109px;}
.y3c_c00277{bottom:738.540088px;}
.y3d_c00277{bottom:738.801975px;}
.y3e_c00277{bottom:739.164815px;}
.y3f_c00277{bottom:739.607363px;}
.y40_c00277{bottom:740.175324px;}
.y41_c00277{bottom:740.493546px;}
.y42_c00277{bottom:740.906217px;}
.y43_c00277{bottom:741.085293px;}
.y2d_c00277{bottom:760.046689px;}
.y2e_c00277{bottom:760.789246px;}
.y2f_c00277{bottom:760.803124px;}
.y30_c00277{bottom:760.944031px;}
.y31_c00277{bottom:761.145897px;}
.y32_c00277{bottom:761.889114px;}
.y33_c00277{bottom:762.123553px;}
.y34_c00277{bottom:762.399592px;}
.y35_c00277{bottom:763.460533px;}
.y36_c00277{bottom:763.697580px;}
.y37_c00277{bottom:763.869775px;}
.y38_c00277{bottom:764.504808px;}
.y22_c00277{bottom:782.455862px;}
.y23_c00277{bottom:782.842083px;}
.y24_c00277{bottom:783.319690px;}
.y25_c00277{bottom:783.579360px;}
.y26_c00277{bottom:784.020102px;}
.y27_c00277{bottom:784.471042px;}
.y28_c00277{bottom:784.927593px;}
.y29_c00277{bottom:785.352031px;}
.y2a_c00277{bottom:785.957608px;}
.y2b_c00277{bottom:786.405628px;}
.y2c_c00277{bottom:787.096519px;}
.y17_c00277{bottom:804.600378px;}
.y18_c00277{bottom:804.895567px;}
.y19_c00277{bottom:805.744081px;}
.y1a_c00277{bottom:806.137431px;}
.y1b_c00277{bottom:806.945015px;}
.y1c_c00277{bottom:807.688902px;}
.y1d_c00277{bottom:808.607976px;}
.y1e_c00277{bottom:809.131390px;}
.y1f_c00277{bottom:809.781406px;}
.y20_c00277{bottom:810.029215px;}
.y21_c00277{bottom:810.519933px;}
.ye_c00277{bottom:827.821500px;}
.yf_c00277{bottom:828.174947px;}
.y10_c00277{bottom:828.581870px;}
.y11_c00277{bottom:829.312605px;}
.y12_c00277{bottom:830.316432px;}
.y13_c00277{bottom:831.124486px;}
.y14_c00277{bottom:831.566373px;}
.y15_c00277{bottom:831.950031px;}
.y16_c00277{bottom:832.172896px;}
.yc_c00277{bottom:871.826077px;}
.yd_c00277{bottom:873.103867px;}
.y2_c00277{bottom:929.343000px;}
.y3_c00277{bottom:931.493437px;}
.y4_c00277{bottom:932.295967px;}
.y5_c00277{bottom:933.024405px;}
.y6_c00277{bottom:933.752955px;}
.y7_c00277{bottom:933.992422px;}
.y8_c00277{bottom:934.891230px;}
.y9_c00277{bottom:935.527125px;}
.ya_c00277{bottom:936.657007px;}
.yb_c00277{bottom:937.458502px;}
.y1_c00277{bottom:943.380000px;}
.h2_c00277{height:16.800000px;}
.h14_c00277{height:30.450000px;}
.h11_c00277{height:52.500000px;}
.h13_c00277{height:54.600000px;}
.h12_c00277{height:55.650000px;}
.hd_c00277{height:67.201646px;}
.h8_c00277{height:67.204065px;}
.he_c00277{height:68.251672px;}
.h5_c00277{height:68.254129px;}
.h10_c00277{height:69.301698px;}
.h7_c00277{height:69.304193px;}
.hf_c00277{height:70.351724px;}
.h6_c00277{height:70.354256px;}
.hb_c00277{height:71.401749px;}
.hc_c00277{height:72.451775px;}
.h3_c00277{height:72.458150px;}
.h9_c00277{height:73.501801px;}
.ha_c00277{height:79.801955px;}
.h4_c00277{height:97.660985px;}
.h0_c00277{height:1008.450000px;}
.h1_c00277{height:1008.750000px;}
.w0_c00277{width:696.000000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:96.874500px;}
.xc_c00277{left:154.388498px;}
.x2a_c00277{left:155.660375px;}
.xb0_c00277{left:164.430000px;}
.xe_c00277{left:172.672500px;}
.xb8_c00277{left:174.150000px;}
.x17_c00277{left:177.567747px;}
.x35_c00277{left:181.277210px;}
.x4f_c00277{left:183.869418px;}
.x77_c00277{left:185.758901px;}
.xb1_c00277{left:188.190000px;}
.x96_c00277{left:189.266357px;}
.x6b_c00277{left:191.698355px;}
.x21_c00277{left:193.722761px;}
.x45_c00277{left:195.029268px;}
.xa1_c00277{left:197.902685px;}
.x50_c00277{left:203.580384px;}
.xf_c00277{left:204.804000px;}
.x85_c00277{left:206.821520px;}
.xa6_c00277{left:208.969031px;}
.x8b_c00277{left:211.142759px;}
.x5b_c00277{left:221.132214px;}
.x9a_c00277{left:224.636457px;}
.x46_c00277{left:226.586268px;}
.x78_c00277{left:228.149480px;}
.x2b_c00277{left:229.848183px;}
.x2c_c00277{left:231.246200px;}
.x7d_c00277{left:232.741151px;}
.x63_c00277{left:234.088983px;}
.x9b_c00277{left:237.867108px;}
.x3_c00277{left:240.237000px;}
.x10_c00277{left:241.797000px;}
.x18_c00277{left:242.840312px;}
.x47_c00277{left:243.902268px;}
.x2d_c00277{left:245.283348px;}
.xb9_c00277{left:247.860000px;}
.x72_c00277{left:250.561002px;}
.xd_c00277{left:252.677445px;}
.x79_c00277{left:254.070750px;}
.x7e_c00277{left:256.772327px;}
.x57_c00277{left:258.123711px;}
.x90_c00277{left:259.740623px;}
.x3b_c00277{left:261.365951px;}
.x2e_c00277{left:265.544079px;}
.x22_c00277{left:267.430569px;}
.x36_c00277{left:268.719597px;}
.xab_c00277{left:270.259656px;}
.x48_c00277{left:272.007768px;}
.x19_c00277{left:273.144152px;}
.xba_c00277{left:274.590000px;}
.x7f_c00277{left:276.753303px;}
.x5c_c00277{left:281.073654px;}
.x73_c00277{left:282.151046px;}
.x51_c00277{left:284.311343px;}
.x64_c00277{left:285.660014px;}
.x3d_c00277{left:286.800000px;}
.x3c_c00277{left:290.798015px;}
.x86_c00277{left:292.144199px;}
.x4_c00277{left:293.739000px;}
.x91_c00277{left:297.270960px;}
.x37_c00277{left:301.392170px;}
.x74_c00277{left:302.942064px;}
.x6c_c00277{left:305.640930px;}
.x11_c00277{left:308.227500px;}
.x23_c00277{left:311.453048px;}
.xa7_c00277{left:312.651102px;}
.x80_c00277{left:314.013630px;}
.x52_c00277{left:316.441418px;}
.x5d_c00277{left:320.764097px;}
.x49_c00277{left:322.475268px;}
.x65_c00277{left:324.810435px;}
.xac_c00277{left:325.880886px;}
.xb2_c00277{left:328.050000px;}
.x3e_c00277{left:333.811500px;}
.x1a_c00277{left:335.241282px;}
.x2f_c00277{left:339.791888px;}
.x5_c00277{left:342.301500px;}
.x92_c00277{left:343.441718px;}
.xa2_c00277{left:344.785388px;}
.x38_c00277{left:346.788171px;}
.x4a_c00277{left:350.288268px;}
.x24_c00277{left:356.539043px;}
.xa8_c00277{left:360.711954px;}
.x30_c00277{left:363.286652px;}
.x7a_c00277{left:366.663273px;}
.x66_c00277{left:368.821088px;}
.x58_c00277{left:370.174713px;}
.x97_c00277{left:373.680887px;}
.x87_c00277{left:376.116815px;}
.x3f_c00277{left:377.556000px;}
.x5e_c00277{left:381.785589px;}
.x8c_c00277{left:384.216732px;}
.xa9_c00277{left:388.523319px;}
.x6_c00277{left:390.871500px;}
.x1b_c00277{left:392.502528px;}
.x9e_c00277{left:395.007495px;}
.x12_c00277{left:399.484500px;}
.x4b_c00277{left:400.512768px;}
.x25_c00277{left:402.135038px;}
.xb3_c00277{left:403.650000px;}
.x7_c00277{left:406.836000px;}
.x9f_c00277{left:409.048188px;}
.x98_c00277{left:410.941214px;}
.x81_c00277{left:414.457044px;}
.x4c_c00277{left:417.801768px;}
.x6d_c00277{left:419.313506px;}
.x8d_c00277{left:420.937028px;}
.x5f_c00277{left:423.366126px;}
.x88_c00277{left:430.387971px;}
.x40_c00277{left:431.553000px;}
.x53_c00277{left:432.815619px;}
.x59_c00277{left:436.056437px;}
.x6e_c00277{left:438.214430px;}
.xa3_c00277{left:439.287018px;}
.x26_c00277{left:444.539000px;}
.xb4_c00277{left:450.900000px;}
.xad_c00277{left:452.784102px;}
.x93_c00277{left:454.954178px;}
.x60_c00277{left:457.116275px;}
.x4d_c00277{left:459.357768px;}
.x41_c00277{left:461.257500px;}
.x1c_c00277{left:463.234977px;}
.xb5_c00277{left:464.670000px;}
.x9c_c00277{left:465.750759px;}
.x8_c00277{left:466.756500px;}
.x82_c00277{left:469.538243px;}
.x13_c00277{left:472.944000px;}
.x75_c00277{left:475.476006px;}
.xa4_c00277{left:480.867555px;}
.xb6_c00277{left:484.920000px;}
.x1_c00277{left:487.890000px;}
.x6f_c00277{left:490.595492px;}
.x61_c00277{left:495.456654px;}
.x31_c00277{left:496.968120px;}
.x67_c00277{left:500.314535px;}
.x1d_c00277{left:503.453586px;}
.x27_c00277{left:505.046660px;}
.x9_c00277{left:509.149500px;}
.xbb_c00277{left:511.920000px;}
.x14_c00277{left:513.115500px;}
.x70_c00277{left:514.626668px;}
.x5a_c00277{left:515.978853px;}
.x68_c00277{left:518.675438px;}
.x32_c00277{left:520.699884px;}
.x54_c00277{left:524.078592px;}
.x62_c00277{left:525.698135px;}
.x94_c00277{left:528.666290px;}
.xaa_c00277{left:531.087312px;}
.xae_c00277{left:532.706519px;}
.xb7_c00277{left:534.870000px;}
.x42_c00277{left:536.040000px;}
.x33_c00277{left:537.990582px;}
.x89_c00277{left:540.010337px;}
.x8e_c00277{left:546.758702px;}
.x15_c00277{left:547.993500px;}
.x28_c00277{left:549.867155px;}
.x7b_c00277{left:552.157866px;}
.x1e_c00277{left:553.408480px;}
.xbc_c00277{left:554.850000px;}
.xa5_c00277{left:555.927081px;}
.x9d_c00277{left:557.553753px;}
.x55_c00277{left:558.638783px;}
.x95_c00277{left:560.526354px;}
.x39_c00277{left:564.422849px;}
.x16_c00277{left:568.254000px;}
.xaf_c00277{left:571.316909px;}
.x1f_c00277{left:572.527068px;}
.x83_c00277{left:576.460482px;}
.x56_c00277{left:582.939969px;}
.xa_c00277{left:584.475000px;}
.x43_c00277{left:585.732000px;}
.x3a_c00277{left:586.839591px;}
.x8a_c00277{left:591.042836px;}
.x69_c00277{left:595.087686px;}
.x4e_c00277{left:596.256768px;}
.xa0_c00277{left:597.512918px;}
.x84_c00277{left:599.951637px;}
.x34_c00277{left:601.448775px;}
.x71_c00277{left:603.189515px;}
.x8f_c00277{left:604.270026px;}
.x76_c00277{left:607.509474px;}
.x99_c00277{left:608.586405px;}
.x20_c00277{left:610.318743px;}
.x6a_c00277{left:611.558495px;}
.x7c_c00277{left:614.799432px;}
.x44_c00277{left:615.975000px;}
.x29_c00277{left:618.948914px;}
.xb_c00277{left:637.908000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
.fs0_c00277{font-size:14.933333pt;}
.fs12_c00277{font-size:27.066667pt;}
.fsf_c00277{font-size:46.666667pt;}
.fs11_c00277{font-size:48.533333pt;}
.fs10_c00277{font-size:49.466667pt;}
.fsb_c00277{font-size:59.734797pt;}
.fs6_c00277{font-size:59.736947pt;}
.fsc_c00277{font-size:60.668153pt;}
.fs3_c00277{font-size:60.670337pt;}
.fse_c00277{font-size:61.601509pt;}
.fs5_c00277{font-size:61.603727pt;}
.fsd_c00277{font-size:62.534865pt;}
.fs4_c00277{font-size:62.537116pt;}
.fs9_c00277{font-size:63.468222pt;}
.fsa_c00277{font-size:64.401578pt;}
.fs1_c00277{font-size:64.407245pt;}
.fs7_c00277{font-size:65.334934pt;}
.fs8_c00277{font-size:70.935071pt;}
.fs2_c00277{font-size:86.809764pt;}
.y0_c00277{bottom:0.000000pt;}
.y138_c00277{bottom:39.360000pt;}
.y137_c00277{bottom:90.838667pt;}
.y130_c00277{bottom:147.362667pt;}
.y131_c00277{bottom:148.042667pt;}
.y132_c00277{bottom:148.766667pt;}
.y133_c00277{bottom:149.173333pt;}
.y134_c00277{bottom:149.760000pt;}
.y135_c00277{bottom:150.564000pt;}
.y136_c00277{bottom:150.662667pt;}
.y12f_c00277{bottom:164.822667pt;}
.y12e_c00277{bottom:179.637333pt;}
.y128_c00277{bottom:231.023612pt;}
.y12a_c00277{bottom:231.023673pt;}
.y127_c00277{bottom:231.023701pt;}
.y12b_c00277{bottom:231.023887pt;}
.y129_c00277{bottom:231.023949pt;}
.y12c_c00277{bottom:231.024117pt;}
.y12d_c00277{bottom:231.024224pt;}
.y126_c00277{bottom:231.024297pt;}
.y125_c00277{bottom:231.024867pt;}
.y123_c00277{bottom:231.024992pt;}
.y124_c00277{bottom:231.025356pt;}
.y118_c00277{bottom:251.485004pt;}
.y121_c00277{bottom:251.485241pt;}
.y119_c00277{bottom:251.485288pt;}
.y120_c00277{bottom:251.485481pt;}
.y11f_c00277{bottom:251.485695pt;}
.y122_c00277{bottom:251.485739pt;}
.y11a_c00277{bottom:251.485785pt;}
.y11e_c00277{bottom:251.485837pt;}
.y11b_c00277{bottom:251.486389pt;}
.y11d_c00277{bottom:251.486460pt;}
.y11c_c00277{bottom:251.486753pt;}
.y116_c00277{bottom:271.670355pt;}
.y112_c00277{bottom:271.670384pt;}
.y117_c00277{bottom:271.670461pt;}
.y114_c00277{bottom:271.670543pt;}
.y115_c00277{bottom:271.670747pt;}
.y113_c00277{bottom:271.670872pt;}
.y111_c00277{bottom:271.670873pt;}
.y110_c00277{bottom:271.670980pt;}
.y10f_c00277{bottom:292.285763pt;}
.y10e_c00277{bottom:292.286323pt;}
.y10c_c00277{bottom:292.286688pt;}
.y10d_c00277{bottom:292.286892pt;}
.y10a_c00277{bottom:292.286973pt;}
.y108_c00277{bottom:292.286992pt;}
.y10b_c00277{bottom:292.287017pt;}
.y107_c00277{bottom:292.287028pt;}
.y106_c00277{bottom:292.287517pt;}
.y109_c00277{bottom:292.287569pt;}
.y105_c00277{bottom:292.287767pt;}
.y104_c00277{bottom:292.288016pt;}
.y100_c00277{bottom:312.712515pt;}
.yff_c00277{bottom:312.712915pt;}
.y101_c00277{bottom:312.713075pt;}
.yfe_c00277{bottom:312.713164pt;}
.y102_c00277{bottom:312.713439pt;}
.y103_c00277{bottom:312.713776pt;}
.yfd_c00277{bottom:312.713804pt;}
.yfc_c00277{bottom:312.714427pt;}
.yfb_c00277{bottom:312.714463pt;}
.yf9_c00277{bottom:312.714721pt;}
.yfa_c00277{bottom:312.715059pt;}
.yf8_c00277{bottom:312.715344pt;}
.yed_c00277{bottom:332.929080pt;}
.yee_c00277{bottom:332.929311pt;}
.yec_c00277{bottom:332.929427pt;}
.yeb_c00277{bottom:332.929676pt;}
.yef_c00277{bottom:332.929781pt;}
.yf1_c00277{bottom:332.930243pt;}
.yf0_c00277{bottom:332.930279pt;}
.yf2_c00277{bottom:332.930296pt;}
.yf3_c00277{bottom:332.930953pt;}
.yf4_c00277{bottom:332.931477pt;}
.yf5_c00277{bottom:332.931531pt;}
.yf6_c00277{bottom:332.932037pt;}
.yf7_c00277{bottom:332.932348pt;}
.ydf_c00277{bottom:353.484373pt;}
.yea_c00277{bottom:353.484672pt;}
.ye1_c00277{bottom:353.484915pt;}
.ye0_c00277{bottom:353.485031pt;}
.ye4_c00277{bottom:353.485048pt;}
.ye2_c00277{bottom:353.485075pt;}
.ye9_c00277{bottom:353.485268pt;}
.ye3_c00277{bottom:353.485288pt;}
.ye8_c00277{bottom:353.485331pt;}
.ye5_c00277{bottom:353.485439pt;}
.ye7_c00277{bottom:353.485607pt;}
.ye6_c00277{bottom:353.485776pt;}
.yd5_c00277{bottom:374.334893pt;}
.yd6_c00277{bottom:374.335204pt;}
.yd7_c00277{bottom:374.335381pt;}
.yd4_c00277{bottom:374.335383pt;}
.yd8_c00277{bottom:374.335985pt;}
.ydd_c00277{bottom:374.336001pt;}
.yd9_c00277{bottom:374.336136pt;}
.yde_c00277{bottom:374.336392pt;}
.ydc_c00277{bottom:374.336437pt;}
.yda_c00277{bottom:374.336473pt;}
.ydb_c00277{bottom:374.336500pt;}
.yd3_c00277{bottom:394.523827pt;}
.yca_c00277{bottom:394.523945pt;}
.yc7_c00277{bottom:394.524097pt;}
.yc9_c00277{bottom:394.524275pt;}
.ycb_c00277{bottom:394.524309pt;}
.yd2_c00277{bottom:394.524343pt;}
.yc8_c00277{bottom:394.524488pt;}
.yd1_c00277{bottom:394.524663pt;}
.ycc_c00277{bottom:394.524843pt;}
.yd0_c00277{bottom:394.525259pt;}
.ycd_c00277{bottom:394.525340pt;}
.ycf_c00277{bottom:394.525401pt;}
.yce_c00277{bottom:394.525811pt;}
.ybb_c00277{bottom:414.655397pt;}
.ybd_c00277{bottom:414.655415pt;}
.ybe_c00277{bottom:414.655592pt;}
.ybc_c00277{bottom:414.655921pt;}
.yc1_c00277{bottom:414.655929pt;}
.yc0_c00277{bottom:414.656036pt;}
.ybf_c00277{bottom:414.656125pt;}
.yc2_c00277{bottom:414.656267pt;}
.yc5_c00277{bottom:414.656888pt;}
.yc3_c00277{bottom:414.656897pt;}
.yc4_c00277{bottom:414.656995pt;}
.yc6_c00277{bottom:414.657181pt;}
.yb1_c00277{bottom:435.055524pt;}
.yb2_c00277{bottom:435.055711pt;}
.yb4_c00277{bottom:435.055861pt;}
.yb3_c00277{bottom:435.056031pt;}
.yb0_c00277{bottom:435.056040pt;}
.yba_c00277{bottom:435.056277pt;}
.yb5_c00277{bottom:435.056439pt;}
.yb8_c00277{bottom:435.056607pt;}
.yb9_c00277{bottom:435.056784pt;}
.yb6_c00277{bottom:435.056812pt;}
.yb7_c00277{bottom:435.056856pt;}
.yae_c00277{bottom:455.429240pt;}
.yad_c00277{bottom:455.429303pt;}
.yaf_c00277{bottom:455.429657pt;}
.yac_c00277{bottom:455.429775pt;}
.yab_c00277{bottom:455.430024pt;}
.yaa_c00277{bottom:455.430567pt;}
.ya9_c00277{bottom:455.430620pt;}
.ya8_c00277{bottom:455.430869pt;}
.ya7_c00277{bottom:455.431359pt;}
.y9c_c00277{bottom:475.377707pt;}
.y9d_c00277{bottom:475.378257pt;}
.y9e_c00277{bottom:475.378284pt;}
.y9b_c00277{bottom:475.378303pt;}
.y9f_c00277{bottom:475.378621pt;}
.ya0_c00277{bottom:475.378648pt;}
.ya1_c00277{bottom:475.379252pt;}
.ya4_c00277{bottom:475.379393pt;}
.ya5_c00277{bottom:475.379757pt;}
.ya2_c00277{bottom:475.379776pt;}
.ya3_c00277{bottom:475.379793pt;}
.ya6_c00277{bottom:475.379944pt;}
.y91_c00277{bottom:495.539123pt;}
.y90_c00277{bottom:495.539292pt;}
.y95_c00277{bottom:495.539325pt;}
.y9a_c00277{bottom:495.539387pt;}
.y94_c00277{bottom:495.539495pt;}
.y92_c00277{bottom:495.539504pt;}
.y96_c00277{bottom:495.539592pt;}
.y99_c00277{bottom:495.539813pt;}
.y93_c00277{bottom:495.540064pt;}
.y97_c00277{bottom:495.540169pt;}
.y98_c00277{bottom:495.540356pt;}
.y8f_c00277{bottom:515.912456pt;}
.y8e_c00277{bottom:515.912643pt;}
.y8d_c00277{bottom:515.913025pt;}
.y8c_c00277{bottom:515.913212pt;}
.y8a_c00277{bottom:515.913355pt;}
.y89_c00277{bottom:515.913604pt;}
.y83_c00277{bottom:515.913624pt;}
.y8b_c00277{bottom:515.913639pt;}
.y87_c00277{bottom:515.913667pt;}
.y84_c00277{bottom:515.913961pt;}
.y86_c00277{bottom:515.914076pt;}
.y88_c00277{bottom:515.914164pt;}
.y85_c00277{bottom:515.914539pt;}
.y7c_c00277{bottom:535.805136pt;}
.y7d_c00277{bottom:535.805180pt;}
.y7a_c00277{bottom:535.805181pt;}
.y7b_c00277{bottom:535.805465pt;}
.y79_c00277{bottom:535.805564pt;}
.y77_c00277{bottom:535.805627pt;}
.y82_c00277{bottom:535.805649pt;}
.y7f_c00277{bottom:535.805721pt;}
.y7e_c00277{bottom:535.805837pt;}
.y80_c00277{bottom:535.805881pt;}
.y78_c00277{bottom:535.805893pt;}
.y81_c00277{bottom:535.805979pt;}
.y71_c00277{bottom:556.416571pt;}
.y70_c00277{bottom:556.417060pt;}
.y74_c00277{bottom:556.417085pt;}
.y73_c00277{bottom:556.417148pt;}
.y75_c00277{bottom:556.417219pt;}
.y72_c00277{bottom:556.417237pt;}
.y76_c00277{bottom:556.417529pt;}
.y6f_c00277{bottom:556.417540pt;}
.y6e_c00277{bottom:556.417629pt;}
.y6d_c00277{bottom:556.418065pt;}
.y6c_c00277{bottom:556.418492pt;}
.y6b_c00277{bottom:556.418981pt;}
.y64_c00277{bottom:576.310875pt;}
.y68_c00277{bottom:576.311123pt;}
.y65_c00277{bottom:576.311132pt;}
.y63_c00277{bottom:576.311221pt;}
.y66_c00277{bottom:576.311292pt;}
.y62_c00277{bottom:576.311311pt;}
.y67_c00277{bottom:576.311443pt;}
.y69_c00277{bottom:576.311487pt;}
.y60_c00277{bottom:576.311676pt;}
.y5f_c00277{bottom:576.311703pt;}
.y61_c00277{bottom:576.311907pt;}
.y6a_c00277{bottom:576.312020pt;}
.y5e_c00277{bottom:576.312289pt;}
.y51_c00277{bottom:595.200112pt;}
.y52_c00277{bottom:595.448743pt;}
.y53_c00277{bottom:595.645097pt;}
.y54_c00277{bottom:595.752841pt;}
.y55_c00277{bottom:595.927720pt;}
.y56_c00277{bottom:596.241740pt;}
.y57_c00277{bottom:596.414799pt;}
.y58_c00277{bottom:596.727307pt;}
.y59_c00277{bottom:596.834883pt;}
.y5a_c00277{bottom:597.093453pt;}
.y5b_c00277{bottom:597.275005pt;}
.y5c_c00277{bottom:597.683161pt;}
.y5d_c00277{bottom:597.945269pt;}
.y48_c00277{bottom:615.600000pt;}
.y49_c00277{bottom:616.308755pt;}
.y4a_c00277{bottom:616.601271pt;}
.y4b_c00277{bottom:616.873459pt;}
.y4c_c00277{bottom:617.209440pt;}
.y4d_c00277{bottom:617.394268pt;}
.y4e_c00277{bottom:617.859581pt;}
.y4f_c00277{bottom:618.168776pt;}
.y50_c00277{bottom:618.356955pt;}
.y45_c00277{bottom:635.366472pt;}
.y47_c00277{bottom:635.366709pt;}
.y44_c00277{bottom:635.366809pt;}
.y46_c00277{bottom:635.366964pt;}
.y39_c00277{bottom:655.675736pt;}
.y3a_c00277{bottom:655.858448pt;}
.y3b_c00277{bottom:656.030319pt;}
.y3c_c00277{bottom:656.480079pt;}
.y3d_c00277{bottom:656.712867pt;}
.y3e_c00277{bottom:657.035391pt;}
.y3f_c00277{bottom:657.428767pt;}
.y40_c00277{bottom:657.933621pt;}
.y41_c00277{bottom:658.216485pt;}
.y42_c00277{bottom:658.583304pt;}
.y43_c00277{bottom:658.742483pt;}
.y2d_c00277{bottom:675.597057pt;}
.y2e_c00277{bottom:676.257108pt;}
.y2f_c00277{bottom:676.269444pt;}
.y30_c00277{bottom:676.394695pt;}
.y31_c00277{bottom:676.574131pt;}
.y32_c00277{bottom:677.234768pt;}
.y33_c00277{bottom:677.443159pt;}
.y34_c00277{bottom:677.688527pt;}
.y35_c00277{bottom:678.631585pt;}
.y36_c00277{bottom:678.842293pt;}
.y37_c00277{bottom:678.995356pt;}
.y38_c00277{bottom:679.559829pt;}
.y22_c00277{bottom:695.516321pt;}
.y23_c00277{bottom:695.859629pt;}
.y24_c00277{bottom:696.284169pt;}
.y25_c00277{bottom:696.514987pt;}
.y26_c00277{bottom:696.906757pt;}
.y27_c00277{bottom:697.307593pt;}
.y28_c00277{bottom:697.713416pt;}
.y29_c00277{bottom:698.090695pt;}
.y2a_c00277{bottom:698.628985pt;}
.y2b_c00277{bottom:699.027225pt;}
.y2c_c00277{bottom:699.641351pt;}
.y17_c00277{bottom:715.200336pt;}
.y18_c00277{bottom:715.462727pt;}
.y19_c00277{bottom:716.216961pt;}
.y1a_c00277{bottom:716.566605pt;}
.y1b_c00277{bottom:717.284457pt;}
.y1c_c00277{bottom:717.945691pt;}
.y1d_c00277{bottom:718.762645pt;}
.y1e_c00277{bottom:719.227903pt;}
.y1f_c00277{bottom:719.805695pt;}
.y20_c00277{bottom:720.025969pt;}
.y21_c00277{bottom:720.462163pt;}
.ye_c00277{bottom:735.841333pt;}
.yf_c00277{bottom:736.155508pt;}
.y10_c00277{bottom:736.517217pt;}
.y11_c00277{bottom:737.166760pt;}
.y12_c00277{bottom:738.059051pt;}
.y13_c00277{bottom:738.777321pt;}
.y14_c00277{bottom:739.170109pt;}
.y15_c00277{bottom:739.511139pt;}
.y16_c00277{bottom:739.709241pt;}
.yc_c00277{bottom:774.956513pt;}
.yd_c00277{bottom:776.092327pt;}
.y2_c00277{bottom:826.082667pt;}
.y3_c00277{bottom:827.994167pt;}
.y4_c00277{bottom:828.707527pt;}
.y5_c00277{bottom:829.355027pt;}
.y6_c00277{bottom:830.002627pt;}
.y7_c00277{bottom:830.215487pt;}
.y8_c00277{bottom:831.014427pt;}
.y9_c00277{bottom:831.579667pt;}
.ya_c00277{bottom:832.584007pt;}
.yb_c00277{bottom:833.296447pt;}
.y1_c00277{bottom:838.560000pt;}
.h2_c00277{height:14.933333pt;}
.h14_c00277{height:27.066667pt;}
.h11_c00277{height:46.666667pt;}
.h13_c00277{height:48.533333pt;}
.h12_c00277{height:49.466667pt;}
.hd_c00277{height:59.734797pt;}
.h8_c00277{height:59.736947pt;}
.he_c00277{height:60.668153pt;}
.h5_c00277{height:60.670337pt;}
.h10_c00277{height:61.601509pt;}
.h7_c00277{height:61.603727pt;}
.hf_c00277{height:62.534865pt;}
.h6_c00277{height:62.537116pt;}
.hb_c00277{height:63.468222pt;}
.hc_c00277{height:64.401578pt;}
.h3_c00277{height:64.407245pt;}
.h9_c00277{height:65.334934pt;}
.ha_c00277{height:70.935071pt;}
.h4_c00277{height:86.809764pt;}
.h0_c00277{height:896.400000pt;}
.h1_c00277{height:896.666667pt;}
.w0_c00277{width:618.666667pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:86.110667pt;}
.xc_c00277{left:137.234220pt;}
.x2a_c00277{left:138.364777pt;}
.xb0_c00277{left:146.160000pt;}
.xe_c00277{left:153.486667pt;}
.xb8_c00277{left:154.800000pt;}
.x17_c00277{left:157.837997pt;}
.x35_c00277{left:161.135297pt;}
.x4f_c00277{left:163.439483pt;}
.x77_c00277{left:165.119023pt;}
.xb1_c00277{left:167.280000pt;}
.x96_c00277{left:168.236761pt;}
.x6b_c00277{left:170.398537pt;}
.x21_c00277{left:172.198009pt;}
.x45_c00277{left:173.359349pt;}
.xa1_c00277{left:175.913497pt;}
.x50_c00277{left:180.960341pt;}
.xf_c00277{left:182.048000pt;}
.x85_c00277{left:183.841351pt;}
.xa6_c00277{left:185.750249pt;}
.x8b_c00277{left:187.682452pt;}
.x5b_c00277{left:196.561968pt;}
.x9a_c00277{left:199.676851pt;}
.x46_c00277{left:201.410016pt;}
.x78_c00277{left:202.799537pt;}
.x2b_c00277{left:204.309496pt;}
.x2c_c00277{left:205.552177pt;}
.x7d_c00277{left:206.881023pt;}
.x63_c00277{left:208.079096pt;}
.x9b_c00277{left:211.437429pt;}
.x3_c00277{left:213.544000pt;}
.x10_c00277{left:214.930667pt;}
.x18_c00277{left:215.858055pt;}
.x47_c00277{left:216.802016pt;}
.x2d_c00277{left:218.029643pt;}
.xb9_c00277{left:220.320000pt;}
.x72_c00277{left:222.720891pt;}
.xd_c00277{left:224.602173pt;}
.x79_c00277{left:225.840667pt;}
.x7e_c00277{left:228.242068pt;}
.x57_c00277{left:229.443299pt;}
.x90_c00277{left:230.880553pt;}
.x3b_c00277{left:232.325289pt;}
.x2e_c00277{left:236.039181pt;}
.x22_c00277{left:237.716061pt;}
.x36_c00277{left:238.861864pt;}
.xab_c00277{left:240.230805pt;}
.x48_c00277{left:241.784683pt;}
.x19_c00277{left:242.794801pt;}
.xba_c00277{left:244.080000pt;}
.x7f_c00277{left:246.002936pt;}
.x5c_c00277{left:249.843248pt;}
.x73_c00277{left:250.800929pt;}
.x51_c00277{left:252.721193pt;}
.x64_c00277{left:253.920012pt;}
.x3d_c00277{left:254.933333pt;}
.x3c_c00277{left:258.487124pt;}
.x86_c00277{left:259.683732pt;}
.x4_c00277{left:261.101333pt;}
.x91_c00277{left:264.240853pt;}
.x37_c00277{left:267.904151pt;}
.x74_c00277{left:269.281835pt;}
.x6c_c00277{left:271.680827pt;}
.x11_c00277{left:273.980000pt;}
.x23_c00277{left:276.847153pt;}
.xa7_c00277{left:277.912091pt;}
.x80_c00277{left:279.123227pt;}
.x52_c00277{left:281.281260pt;}
.x5d_c00277{left:285.123641pt;}
.x49_c00277{left:286.644683pt;}
.x65_c00277{left:288.720387pt;}
.xac_c00277{left:289.671899pt;}
.xb2_c00277{left:291.600000pt;}
.x3e_c00277{left:296.721333pt;}
.x1a_c00277{left:297.992251pt;}
.x2f_c00277{left:302.037233pt;}
.x5_c00277{left:304.268000pt;}
.x92_c00277{left:305.281527pt;}
.xa2_c00277{left:306.475900pt;}
.x38_c00277{left:308.256152pt;}
.x4a_c00277{left:311.367349pt;}
.x24_c00277{left:316.923593pt;}
.xa8_c00277{left:320.632848pt;}
.x30_c00277{left:322.921468pt;}
.x7a_c00277{left:325.922909pt;}
.x66_c00277{left:327.840967pt;}
.x58_c00277{left:329.044189pt;}
.x97_c00277{left:332.160788pt;}
.x87_c00277{left:334.326057pt;}
.x3f_c00277{left:335.605333pt;}
.x5e_c00277{left:339.364968pt;}
.x8c_c00277{left:341.525984pt;}
.xa9_c00277{left:345.354061pt;}
.x6_c00277{left:347.441333pt;}
.x1b_c00277{left:348.891136pt;}
.x9e_c00277{left:351.117773pt;}
.x12_c00277{left:355.097333pt;}
.x4b_c00277{left:356.011349pt;}
.x25_c00277{left:357.453367pt;}
.xb3_c00277{left:358.800000pt;}
.x7_c00277{left:361.632000pt;}
.x9f_c00277{left:363.598389pt;}
.x98_c00277{left:365.281079pt;}
.x81_c00277{left:368.406261pt;}
.x4c_c00277{left:371.379349pt;}
.x6d_c00277{left:372.723116pt;}
.x8d_c00277{left:374.166247pt;}
.x5f_c00277{left:376.325445pt;}
.x88_c00277{left:382.567085pt;}
.x40_c00277{left:383.602667pt;}
.x53_c00277{left:384.724995pt;}
.x59_c00277{left:387.605721pt;}
.x6e_c00277{left:389.523937pt;}
.xa3_c00277{left:390.477349pt;}
.x26_c00277{left:395.145777pt;}
.xb4_c00277{left:400.800000pt;}
.xad_c00277{left:402.474757pt;}
.x93_c00277{left:404.403713pt;}
.x60_c00277{left:406.325577pt;}
.x4d_c00277{left:408.318016pt;}
.x41_c00277{left:410.006667pt;}
.x1c_c00277{left:411.764424pt;}
.xb5_c00277{left:413.040000pt;}
.x9c_c00277{left:414.000675pt;}
.x8_c00277{left:414.894667pt;}
.x82_c00277{left:417.367327pt;}
.x13_c00277{left:420.394667pt;}
.x75_c00277{left:422.645339pt;}
.xa4_c00277{left:427.437827pt;}
.xb6_c00277{left:431.040000pt;}
.x1_c00277{left:433.680000pt;}
.x6f_c00277{left:436.084881pt;}
.x61_c00277{left:440.405915pt;}
.x31_c00277{left:441.749440pt;}
.x67_c00277{left:444.724031pt;}
.x1d_c00277{left:447.514299pt;}
.x27_c00277{left:448.930364pt;}
.x9_c00277{left:452.577333pt;}
.xbb_c00277{left:455.040000pt;}
.x14_c00277{left:456.102667pt;}
.x70_c00277{left:457.445927pt;}
.x5a_c00277{left:458.647869pt;}
.x68_c00277{left:461.044833pt;}
.x32_c00277{left:462.844341pt;}
.x54_c00277{left:465.847637pt;}
.x62_c00277{left:467.287231pt;}
.x94_c00277{left:469.925591pt;}
.xaa_c00277{left:472.077611pt;}
.xae_c00277{left:473.516905pt;}
.xb7_c00277{left:475.440000pt;}
.x42_c00277{left:476.480000pt;}
.x33_c00277{left:478.213851pt;}
.x89_c00277{left:480.009188pt;}
.x8e_c00277{left:486.007735pt;}
.x15_c00277{left:487.105333pt;}
.x28_c00277{left:488.770804pt;}
.x7b_c00277{left:490.806992pt;}
.x1e_c00277{left:491.918649pt;}
.xbc_c00277{left:493.200000pt;}
.xa5_c00277{left:494.157405pt;}
.x9d_c00277{left:495.603336pt;}
.x55_c00277{left:496.567807pt;}
.x95_c00277{left:498.245648pt;}
.x39_c00277{left:501.709199pt;}
.x16_c00277{left:505.114667pt;}
.xaf_c00277{left:507.837252pt;}
.x1f_c00277{left:508.912949pt;}
.x83_c00277{left:512.409317pt;}
.x56_c00277{left:518.168861pt;}
.xa_c00277{left:519.533333pt;}
.x43_c00277{left:520.650667pt;}
.x3a_c00277{left:521.635192pt;}
.x8a_c00277{left:525.371409pt;}
.x69_c00277{left:528.966832pt;}
.x4e_c00277{left:530.006016pt;}
.xa0_c00277{left:531.122593pt;}
.x84_c00277{left:533.290344pt;}
.x34_c00277{left:534.621133pt;}
.x71_c00277{left:536.168457pt;}
.x8f_c00277{left:537.128912pt;}
.x76_c00277{left:540.008421pt;}
.x99_c00277{left:540.965693pt;}
.x20_c00277{left:542.505549pt;}
.x6a_c00277{left:543.607551pt;}
.x7c_c00277{left:546.488384pt;}
.x44_c00277{left:547.533333pt;}
.x29_c00277{left:550.176812pt;}
.xb_c00277{left:567.029333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m70_c00278{transform:matrix(0.008264,-0.000099,0.003000,0.249982,0,0);-ms-transform:matrix(0.008264,-0.000099,0.003000,0.249982,0,0);-webkit-transform:matrix(0.008264,-0.000099,0.003000,0.249982,0,0);}
.m4b_c00278{transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);-ms-transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);}
.m54_c00278{transform:matrix(0.013434,-0.000134,0.002500,0.249988,0,0);-ms-transform:matrix(0.013434,-0.000134,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013434,-0.000134,0.002500,0.249988,0,0);}
.m127_c00278{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m105_c00278{transform:matrix(0.018178,-0.000236,0.003250,0.249979,0,0);-ms-transform:matrix(0.018178,-0.000236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.018178,-0.000236,0.003250,0.249979,0,0);}
.m2_c00278{transform:matrix(0.026228,-0.000289,0.002750,0.249985,0,0);-ms-transform:matrix(0.026228,-0.000289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.026228,-0.000289,0.002750,0.249985,0,0);}
.mb9_c00278{transform:matrix(0.047797,-0.000574,0.003000,0.249982,0,0);-ms-transform:matrix(0.047797,-0.000574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.047797,-0.000574,0.003000,0.249982,0,0);}
.m55_c00278{transform:matrix(0.048443,-0.000484,0.002500,0.249988,0,0);-ms-transform:matrix(0.048443,-0.000484,0.002500,0.249988,0,0);-webkit-transform:matrix(0.048443,-0.000484,0.002500,0.249988,0,0);}
.m4a_c00278{transform:matrix(0.064398,-0.000515,0.002000,0.249992,0,0);-ms-transform:matrix(0.064398,-0.000515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.064398,-0.000515,0.002000,0.249992,0,0);}
.m49_c00278{transform:matrix(0.081457,-0.000652,0.002000,0.249992,0,0);-ms-transform:matrix(0.081457,-0.000652,0.002000,0.249992,0,0);-webkit-transform:matrix(0.081457,-0.000652,0.002000,0.249992,0,0);}
.m6f_c00278{transform:matrix(0.081514,-0.000978,0.003000,0.249982,0,0);-ms-transform:matrix(0.081514,-0.000978,0.003000,0.249982,0,0);-webkit-transform:matrix(0.081514,-0.000978,0.003000,0.249982,0,0);}
.m91_c00278{transform:matrix(0.092493,-0.001110,0.003000,0.249982,0,0);-ms-transform:matrix(0.092493,-0.001110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.092493,-0.001110,0.003000,0.249982,0,0);}
.mdf_c00278{transform:matrix(0.098923,-0.001187,0.003000,0.249982,0,0);-ms-transform:matrix(0.098923,-0.001187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.098923,-0.001187,0.003000,0.249982,0,0);}
.m65_c00278{transform:matrix(0.108547,-0.001303,0.003000,0.249982,0,0);-ms-transform:matrix(0.108547,-0.001303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.108547,-0.001303,0.003000,0.249982,0,0);}
.m10b_c00278{transform:matrix(0.114965,-0.001495,0.003250,0.249979,0,0);-ms-transform:matrix(0.114965,-0.001495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.114965,-0.001495,0.003250,0.249979,0,0);}
.m6e_c00278{transform:matrix(0.118936,-0.001427,0.003000,0.249982,0,0);-ms-transform:matrix(0.118936,-0.001427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.118936,-0.001427,0.003000,0.249982,0,0);}
.mc8_c00278{transform:matrix(0.132945,-0.001595,0.003000,0.249982,0,0);-ms-transform:matrix(0.132945,-0.001595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132945,-0.001595,0.003000,0.249982,0,0);}
.mb_c00278{transform:matrix(0.135981,-0.001088,0.002000,0.249992,0,0);-ms-transform:matrix(0.135981,-0.001088,0.002000,0.249992,0,0);-webkit-transform:matrix(0.135981,-0.001088,0.002000,0.249992,0,0);}
.m100_c00278{transform:matrix(0.142065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142065,0.000000,0.000000,0.250000,0,0);}
.mfc_c00278{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);}
.m81_c00278{transform:matrix(0.145655,-0.001748,0.003000,0.249982,0,0);-ms-transform:matrix(0.145655,-0.001748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145655,-0.001748,0.003000,0.249982,0,0);}
.mcc_c00278{transform:matrix(0.146189,-0.001754,0.003000,0.249982,0,0);-ms-transform:matrix(0.146189,-0.001754,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146189,-0.001754,0.003000,0.249982,0,0);}
.mcb_c00278{transform:matrix(0.149474,-0.001794,0.003000,0.249982,0,0);-ms-transform:matrix(0.149474,-0.001794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149474,-0.001794,0.003000,0.249982,0,0);}
.m8_c00278{transform:matrix(0.149953,-0.001500,0.002500,0.249988,0,0);-ms-transform:matrix(0.149953,-0.001500,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149953,-0.001500,0.002500,0.249988,0,0);}
.m85_c00278{transform:matrix(0.150594,-0.001807,0.003000,0.249982,0,0);-ms-transform:matrix(0.150594,-0.001807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150594,-0.001807,0.003000,0.249982,0,0);}
.mf1_c00278{transform:matrix(0.154229,-0.001851,0.003000,0.249982,0,0);-ms-transform:matrix(0.154229,-0.001851,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154229,-0.001851,0.003000,0.249982,0,0);}
.mec_c00278{transform:matrix(0.155274,-0.001863,0.003000,0.249982,0,0);-ms-transform:matrix(0.155274,-0.001863,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155274,-0.001863,0.003000,0.249982,0,0);}
.m9b_c00278{transform:matrix(0.155334,-0.001864,0.003000,0.249982,0,0);-ms-transform:matrix(0.155334,-0.001864,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155334,-0.001864,0.003000,0.249982,0,0);}
.m83_c00278{transform:matrix(0.156249,-0.001875,0.003000,0.249982,0,0);-ms-transform:matrix(0.156249,-0.001875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156249,-0.001875,0.003000,0.249982,0,0);}
.m23_c00278{transform:matrix(0.156255,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156255,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156255,-0.001250,0.002000,0.249992,0,0);}
.md5_c00278{transform:matrix(0.157544,-0.001891,0.003000,0.249982,0,0);-ms-transform:matrix(0.157544,-0.001891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157544,-0.001891,0.003000,0.249982,0,0);}
.m34_c00278{transform:matrix(0.158630,-0.001269,0.002000,0.249992,0,0);-ms-transform:matrix(0.158630,-0.001269,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158630,-0.001269,0.002000,0.249992,0,0);}
.m1b_c00278{transform:matrix(0.158805,-0.001270,0.002000,0.249992,0,0);-ms-transform:matrix(0.158805,-0.001270,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158805,-0.001270,0.002000,0.249992,0,0);}
.m11_c00278{transform:matrix(0.159285,-0.001274,0.002000,0.249992,0,0);-ms-transform:matrix(0.159285,-0.001274,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159285,-0.001274,0.002000,0.249992,0,0);}
.m101_c00278{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);}
.m10e_c00278{transform:matrix(0.159432,-0.002073,0.003250,0.249979,0,0);-ms-transform:matrix(0.159432,-0.002073,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159432,-0.002073,0.003250,0.249979,0,0);}
.mad_c00278{transform:matrix(0.160458,-0.001926,0.003000,0.249982,0,0);-ms-transform:matrix(0.160458,-0.001926,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160458,-0.001926,0.003000,0.249982,0,0);}
.m57_c00278{transform:matrix(0.160667,-0.001607,0.002500,0.249988,0,0);-ms-transform:matrix(0.160667,-0.001607,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160667,-0.001607,0.002500,0.249988,0,0);}
.m5b_c00278{transform:matrix(0.161372,-0.001614,0.002500,0.249988,0,0);-ms-transform:matrix(0.161372,-0.001614,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161372,-0.001614,0.002500,0.249988,0,0);}
.md8_c00278{transform:matrix(0.163823,-0.001966,0.003000,0.249982,0,0);-ms-transform:matrix(0.163823,-0.001966,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163823,-0.001966,0.003000,0.249982,0,0);}
.m4e_c00278{transform:matrix(0.164437,-0.001644,0.002500,0.249988,0,0);-ms-transform:matrix(0.164437,-0.001644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164437,-0.001644,0.002500,0.249988,0,0);}
.mff_c00278{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);}
.mfe_c00278{transform:matrix(0.165155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165155,0.000000,0.000000,0.250000,0,0);}
.mbc_c00278{transform:matrix(0.166133,-0.001994,0.003000,0.249982,0,0);-ms-transform:matrix(0.166133,-0.001994,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166133,-0.001994,0.003000,0.249982,0,0);}
.m1f_c00278{transform:matrix(0.166265,-0.001330,0.002000,0.249992,0,0);-ms-transform:matrix(0.166265,-0.001330,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166265,-0.001330,0.002000,0.249992,0,0);}
.m15_c00278{transform:matrix(0.166550,-0.001332,0.002000,0.249992,0,0);-ms-transform:matrix(0.166550,-0.001332,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166550,-0.001332,0.002000,0.249992,0,0);}
.m52_c00278{transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);-ms-transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166657,-0.001667,0.002500,0.249988,0,0);}
.m37_c00278{transform:matrix(0.166760,-0.001334,0.002000,0.249992,0,0);-ms-transform:matrix(0.166760,-0.001334,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166760,-0.001334,0.002000,0.249992,0,0);}
.mca_c00278{transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);}
.m92_c00278{transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);}
.m36_c00278{transform:matrix(0.169330,-0.001355,0.002000,0.249992,0,0);-ms-transform:matrix(0.169330,-0.001355,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169330,-0.001355,0.002000,0.249992,0,0);}
.m7e_c00278{transform:matrix(0.169853,-0.002038,0.003000,0.249982,0,0);-ms-transform:matrix(0.169853,-0.002038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169853,-0.002038,0.003000,0.249982,0,0);}
.m98_c00278{transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);-ms-transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);}
.me7_c00278{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);}
.mbd_c00278{transform:matrix(0.171518,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171518,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171518,-0.002058,0.003000,0.249982,0,0);}
.m90_c00278{transform:matrix(0.171773,-0.002061,0.003000,0.249982,0,0);-ms-transform:matrix(0.171773,-0.002061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171773,-0.002061,0.003000,0.249982,0,0);}
.m9d_c00278{transform:matrix(0.172833,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172833,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172833,-0.002074,0.003000,0.249982,0,0);}
.m38_c00278{transform:matrix(0.173364,-0.001387,0.002000,0.249992,0,0);-ms-transform:matrix(0.173364,-0.001387,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173364,-0.001387,0.002000,0.249992,0,0);}
.me5_c00278{transform:matrix(0.174077,-0.002089,0.003000,0.249982,0,0);-ms-transform:matrix(0.174077,-0.002089,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174077,-0.002089,0.003000,0.249982,0,0);}
.ma8_c00278{transform:matrix(0.174242,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174242,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174242,-0.002091,0.003000,0.249982,0,0);}
.m88_c00278{transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);}
.mcd_c00278{transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);-ms-transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175027,-0.002100,0.003000,0.249982,0,0);}
.m28_c00278{transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175319,-0.001403,0.002000,0.249992,0,0);}
.m73_c00278{transform:matrix(0.175442,-0.002105,0.003000,0.249982,0,0);-ms-transform:matrix(0.175442,-0.002105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175442,-0.002105,0.003000,0.249982,0,0);}
.m108_c00278{transform:matrix(0.176015,-0.002288,0.003250,0.249979,0,0);-ms-transform:matrix(0.176015,-0.002288,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176015,-0.002288,0.003250,0.249979,0,0);}
.m3b_c00278{transform:matrix(0.176274,-0.001410,0.002000,0.249992,0,0);-ms-transform:matrix(0.176274,-0.001410,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176274,-0.001410,0.002000,0.249992,0,0);}
.ma9_c00278{transform:matrix(0.176612,-0.002119,0.003000,0.249982,0,0);-ms-transform:matrix(0.176612,-0.002119,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176612,-0.002119,0.003000,0.249982,0,0);}
.m11b_c00278{transform:matrix(0.176715,-0.002297,0.003250,0.249979,0,0);-ms-transform:matrix(0.176715,-0.002297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176715,-0.002297,0.003250,0.249979,0,0);}
.m18_c00278{transform:matrix(0.176939,-0.001416,0.002000,0.249992,0,0);-ms-transform:matrix(0.176939,-0.001416,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176939,-0.001416,0.002000,0.249992,0,0);}
.mc6_c00278{transform:matrix(0.177097,-0.002125,0.003000,0.249982,0,0);-ms-transform:matrix(0.177097,-0.002125,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177097,-0.002125,0.003000,0.249982,0,0);}
.m71_c00278{transform:matrix(0.177257,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177257,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177257,-0.002127,0.003000,0.249982,0,0);}
.mda_c00278{transform:matrix(0.177547,-0.002131,0.003000,0.249982,0,0);-ms-transform:matrix(0.177547,-0.002131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177547,-0.002131,0.003000,0.249982,0,0);}
.m50_c00278{transform:matrix(0.177646,-0.001776,0.002500,0.249988,0,0);-ms-transform:matrix(0.177646,-0.001776,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177646,-0.001776,0.002500,0.249988,0,0);}
.me4_c00278{transform:matrix(0.177837,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177837,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177837,-0.002134,0.003000,0.249982,0,0);}
.m8e_c00278{transform:matrix(0.178507,-0.002142,0.003000,0.249982,0,0);-ms-transform:matrix(0.178507,-0.002142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178507,-0.002142,0.003000,0.249982,0,0);}
.m35_c00278{transform:matrix(0.178799,-0.001430,0.002000,0.249992,0,0);-ms-transform:matrix(0.178799,-0.001430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178799,-0.001430,0.002000,0.249992,0,0);}
.m3d_c00278{transform:matrix(0.178859,-0.001431,0.002000,0.249992,0,0);-ms-transform:matrix(0.178859,-0.001431,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178859,-0.001431,0.002000,0.249992,0,0);}
.mdb_c00278{transform:matrix(0.178892,-0.002147,0.003000,0.249982,0,0);-ms-transform:matrix(0.178892,-0.002147,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178892,-0.002147,0.003000,0.249982,0,0);}
.m12_c00278{transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);-ms-transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);}
.m53_c00278{transform:matrix(0.179671,-0.001797,0.002500,0.249988,0,0);-ms-transform:matrix(0.179671,-0.001797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179671,-0.001797,0.002500,0.249988,0,0);}
.m7c_c00278{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);}
.me3_c00278{transform:matrix(0.180842,-0.002170,0.003000,0.249982,0,0);-ms-transform:matrix(0.180842,-0.002170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180842,-0.002170,0.003000,0.249982,0,0);}
.md7_c00278{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);}
.m24_c00278{transform:matrix(0.181484,-0.001452,0.002000,0.249992,0,0);-ms-transform:matrix(0.181484,-0.001452,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181484,-0.001452,0.002000,0.249992,0,0);}
.m93_c00278{transform:matrix(0.181507,-0.002178,0.003000,0.249982,0,0);-ms-transform:matrix(0.181507,-0.002178,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181507,-0.002178,0.003000,0.249982,0,0);}
.m9a_c00278{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);}
.m29_c00278{transform:matrix(0.182344,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182344,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182344,-0.001459,0.002000,0.249992,0,0);}
.m31_c00278{transform:matrix(0.182424,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182424,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182424,-0.001459,0.002000,0.249992,0,0);}
.ma2_c00278{transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);}
.m94_c00278{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);}
.m5a_c00278{transform:matrix(0.183366,-0.001834,0.002500,0.249988,0,0);-ms-transform:matrix(0.183366,-0.001834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183366,-0.001834,0.002500,0.249988,0,0);}
.m0_c00278{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);}
.m72_c00278{transform:matrix(0.183447,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183447,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183447,-0.002201,0.003000,0.249982,0,0);}
.m33_c00278{transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184149,-0.001473,0.002000,0.249992,0,0);}
.mfd_c00278{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);}
.mc7_c00278{transform:matrix(0.184262,-0.002211,0.003000,0.249982,0,0);-ms-transform:matrix(0.184262,-0.002211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184262,-0.002211,0.003000,0.249982,0,0);}
.m27_c00278{transform:matrix(0.184759,-0.001478,0.002000,0.249992,0,0);-ms-transform:matrix(0.184759,-0.001478,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184759,-0.001478,0.002000,0.249992,0,0);}
.mb0_c00278{transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185377,-0.002225,0.003000,0.249982,0,0);}
.m2f_c00278{transform:matrix(0.185579,-0.001485,0.002000,0.249992,0,0);-ms-transform:matrix(0.185579,-0.001485,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185579,-0.001485,0.002000,0.249992,0,0);}
.m3c_c00278{transform:matrix(0.185759,-0.001486,0.002000,0.249992,0,0);-ms-transform:matrix(0.185759,-0.001486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185759,-0.001486,0.002000,0.249992,0,0);}
.m58_c00278{transform:matrix(0.185786,-0.001858,0.002500,0.249988,0,0);-ms-transform:matrix(0.185786,-0.001858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185786,-0.001858,0.002500,0.249988,0,0);}
.ma5_c00278{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);}
.md1_c00278{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);}
.m22_c00278{transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);-ms-transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187654,-0.001501,0.002000,0.249992,0,0);}
.m82_c00278{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);}
.m7f_c00278{transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);}
.m99_c00278{transform:matrix(0.187701,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187701,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187701,-0.002252,0.003000,0.249982,0,0);}
.mae_c00278{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);}
.mb3_c00278{transform:matrix(0.188341,-0.002260,0.003000,0.249982,0,0);-ms-transform:matrix(0.188341,-0.002260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188341,-0.002260,0.003000,0.249982,0,0);}
.m6b_c00278{transform:matrix(0.188636,-0.002264,0.003000,0.249982,0,0);-ms-transform:matrix(0.188636,-0.002264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188636,-0.002264,0.003000,0.249982,0,0);}
.m89_c00278{transform:matrix(0.188751,-0.002265,0.003000,0.249982,0,0);-ms-transform:matrix(0.188751,-0.002265,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188751,-0.002265,0.003000,0.249982,0,0);}
.mee_c00278{transform:matrix(0.189776,-0.002277,0.003000,0.249982,0,0);-ms-transform:matrix(0.189776,-0.002277,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189776,-0.002277,0.003000,0.249982,0,0);}
.mf3_c00278{transform:matrix(0.189886,-0.002279,0.003000,0.249982,0,0);-ms-transform:matrix(0.189886,-0.002279,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189886,-0.002279,0.003000,0.249982,0,0);}
.m74_c00278{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);}
.m39_c00278{transform:matrix(0.190799,-0.001526,0.002000,0.249992,0,0);-ms-transform:matrix(0.190799,-0.001526,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190799,-0.001526,0.002000,0.249992,0,0);}
.mea_c00278{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);}
.m13_c00278{transform:matrix(0.190964,-0.001528,0.002000,0.249992,0,0);-ms-transform:matrix(0.190964,-0.001528,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190964,-0.001528,0.002000,0.249992,0,0);}
.m1a_c00278{transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);}
.m116_c00278{transform:matrix(0.191259,-0.002486,0.003250,0.249979,0,0);-ms-transform:matrix(0.191259,-0.002486,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191259,-0.002486,0.003250,0.249979,0,0);}
.mf0_c00278{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);}
.m17_c00278{transform:matrix(0.191994,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.191994,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191994,-0.001536,0.002000,0.249992,0,0);}
.m9_c00278{transform:matrix(0.192094,-0.001537,0.002000,0.249992,0,0);-ms-transform:matrix(0.192094,-0.001537,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192094,-0.001537,0.002000,0.249992,0,0);}
.mb4_c00278{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);}
.m8f_c00278{transform:matrix(0.192691,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192691,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192691,-0.002312,0.003000,0.249982,0,0);}
.m8b_c00278{transform:matrix(0.192881,-0.002315,0.003000,0.249982,0,0);-ms-transform:matrix(0.192881,-0.002315,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192881,-0.002315,0.003000,0.249982,0,0);}
.m46_c00278{transform:matrix(0.193094,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193094,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193094,-0.001545,0.002000,0.249992,0,0);}
.mce_c00278{transform:matrix(0.193656,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193656,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193656,-0.002324,0.003000,0.249982,0,0);}
.m63_c00278{transform:matrix(0.193671,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193671,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193671,-0.002324,0.003000,0.249982,0,0);}
.me0_c00278{transform:matrix(0.194186,-0.002330,0.003000,0.249982,0,0);-ms-transform:matrix(0.194186,-0.002330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194186,-0.002330,0.003000,0.249982,0,0);}
.mc1_c00278{transform:matrix(0.194721,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194721,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194721,-0.002337,0.003000,0.249982,0,0);}
.m16_c00278{transform:matrix(0.194734,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194734,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194734,-0.001558,0.002000,0.249992,0,0);}
.m7d_c00278{transform:matrix(0.195051,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195051,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195051,-0.002341,0.003000,0.249982,0,0);}
.mbe_c00278{transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);}
.med_c00278{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);}
.m2a_c00278{transform:matrix(0.195234,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195234,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195234,-0.001562,0.002000,0.249992,0,0);}
.m1e_c00278{transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);-ms-transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);}
.m96_c00278{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);}
.mbb_c00278{transform:matrix(0.196741,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196741,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196741,-0.002361,0.003000,0.249982,0,0);}
.m2e_c00278{transform:matrix(0.196779,-0.001574,0.002000,0.249992,0,0);-ms-transform:matrix(0.196779,-0.001574,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196779,-0.001574,0.002000,0.249992,0,0);}
.md9_c00278{transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196946,-0.002363,0.003000,0.249982,0,0);}
.m9e_c00278{transform:matrix(0.197386,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197386,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197386,-0.002369,0.003000,0.249982,0,0);}
.m32_c00278{transform:matrix(0.197659,-0.001581,0.002000,0.249992,0,0);-ms-transform:matrix(0.197659,-0.001581,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197659,-0.001581,0.002000,0.249992,0,0);}
.maf_c00278{transform:matrix(0.197796,-0.002374,0.003000,0.249982,0,0);-ms-transform:matrix(0.197796,-0.002374,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197796,-0.002374,0.003000,0.249982,0,0);}
.m8c_c00278{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);}
.m51_c00278{transform:matrix(0.198030,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.198030,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198030,-0.001980,0.002500,0.249988,0,0);}
.m19_c00278{transform:matrix(0.198764,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198764,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198764,-0.001590,0.002000,0.249992,0,0);}
.mf2_c00278{transform:matrix(0.198836,-0.002386,0.003000,0.249982,0,0);-ms-transform:matrix(0.198836,-0.002386,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198836,-0.002386,0.003000,0.249982,0,0);}
.m30_c00278{transform:matrix(0.199899,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199899,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199899,-0.001599,0.002000,0.249992,0,0);}
.m11a_c00278{transform:matrix(0.199903,-0.002599,0.003250,0.249979,0,0);-ms-transform:matrix(0.199903,-0.002599,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199903,-0.002599,0.003250,0.249979,0,0);}
.m86_c00278{transform:matrix(0.200506,-0.002406,0.003000,0.249982,0,0);-ms-transform:matrix(0.200506,-0.002406,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200506,-0.002406,0.003000,0.249982,0,0);}
.m95_c00278{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);}
.m59_c00278{transform:matrix(0.200680,-0.002007,0.002500,0.249988,0,0);-ms-transform:matrix(0.200680,-0.002007,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200680,-0.002007,0.002500,0.249988,0,0);}
.mfb_c00278{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);}
.m9c_c00278{transform:matrix(0.201036,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.201036,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201036,-0.002412,0.003000,0.249982,0,0);}
.m26_c00278{transform:matrix(0.201099,-0.001609,0.002000,0.249992,0,0);-ms-transform:matrix(0.201099,-0.001609,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201099,-0.001609,0.002000,0.249992,0,0);}
.md0_c00278{transform:matrix(0.201236,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201236,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201236,-0.002415,0.003000,0.249982,0,0);}
.mb7_c00278{transform:matrix(0.202565,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202565,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202565,-0.002431,0.003000,0.249982,0,0);}
.mef_c00278{transform:matrix(0.202825,-0.002434,0.003000,0.249982,0,0);-ms-transform:matrix(0.202825,-0.002434,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202825,-0.002434,0.003000,0.249982,0,0);}
.m10_c00278{transform:matrix(0.203628,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203628,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203628,-0.001629,0.002000,0.249992,0,0);}
.md2_c00278{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);}
.mc0_c00278{transform:matrix(0.203735,-0.002445,0.003000,0.249982,0,0);-ms-transform:matrix(0.203735,-0.002445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203735,-0.002445,0.003000,0.249982,0,0);}
.mba_c00278{transform:matrix(0.204580,-0.002455,0.003000,0.249982,0,0);-ms-transform:matrix(0.204580,-0.002455,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204580,-0.002455,0.003000,0.249982,0,0);}
.m111_c00278{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);}
.m120_c00278{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.205043,-0.001640,0.002000,0.249992,0,0);-ms-transform:matrix(0.205043,-0.001640,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205043,-0.001640,0.002000,0.249992,0,0);}
.m10f_c00278{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);}
.mab_c00278{transform:matrix(0.205500,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205500,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205500,-0.002466,0.003000,0.249982,0,0);}
.m41_c00278{transform:matrix(0.205708,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205708,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205708,-0.001646,0.002000,0.249992,0,0);}
.m5c_c00278{transform:matrix(0.205730,-0.002057,0.002500,0.249988,0,0);-ms-transform:matrix(0.205730,-0.002057,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205730,-0.002057,0.002500,0.249988,0,0);}
.mac_c00278{transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205800,-0.002470,0.003000,0.249982,0,0);}
.m43_c00278{transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);-ms-transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);}
.m76_c00278{transform:matrix(0.206165,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206165,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206165,-0.002474,0.003000,0.249982,0,0);}
.me1_c00278{transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);}
.m10a_c00278{transform:matrix(0.206538,-0.002685,0.003250,0.249979,0,0);-ms-transform:matrix(0.206538,-0.002685,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206538,-0.002685,0.003250,0.249979,0,0);}
.m2c_c00278{transform:matrix(0.206938,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.206938,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206938,-0.001656,0.002000,0.249992,0,0);}
.m48_c00278{transform:matrix(0.207028,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.207028,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207028,-0.001656,0.002000,0.249992,0,0);}
.m10d_c00278{transform:matrix(0.207083,-0.002692,0.003250,0.249979,0,0);-ms-transform:matrix(0.207083,-0.002692,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207083,-0.002692,0.003250,0.249979,0,0);}
.m6d_c00278{transform:matrix(0.207085,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207085,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207085,-0.002485,0.003000,0.249982,0,0);}
.m8d_c00278{transform:matrix(0.207720,-0.002493,0.003000,0.249982,0,0);-ms-transform:matrix(0.207720,-0.002493,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207720,-0.002493,0.003000,0.249982,0,0);}
.m69_c00278{transform:matrix(0.207860,-0.002494,0.003000,0.249982,0,0);-ms-transform:matrix(0.207860,-0.002494,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207860,-0.002494,0.003000,0.249982,0,0);}
.m66_c00278{transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);}
.m117_c00278{transform:matrix(0.208257,-0.002707,0.003250,0.249979,0,0);-ms-transform:matrix(0.208257,-0.002707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208257,-0.002707,0.003250,0.249979,0,0);}
.mb1_c00278{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);}
.m11e_c00278{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);}
.m1c_c00278{transform:matrix(0.209533,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209533,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209533,-0.001676,0.002000,0.249992,0,0);}
.m45_c00278{transform:matrix(0.209663,-0.001677,0.002000,0.249992,0,0);-ms-transform:matrix(0.209663,-0.001677,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209663,-0.001677,0.002000,0.249992,0,0);}
.mf5_c00278{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);}
.m56_c00278{transform:matrix(0.210289,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210289,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210289,-0.002103,0.002500,0.249988,0,0);}
.mb2_c00278{transform:matrix(0.210610,-0.002527,0.003000,0.249982,0,0);-ms-transform:matrix(0.210610,-0.002527,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210610,-0.002527,0.003000,0.249982,0,0);}
.m20_c00278{transform:matrix(0.210708,-0.001686,0.002000,0.249992,0,0);-ms-transform:matrix(0.210708,-0.001686,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210708,-0.001686,0.002000,0.249992,0,0);}
.me8_c00278{transform:matrix(0.211115,-0.002533,0.003000,0.249982,0,0);-ms-transform:matrix(0.211115,-0.002533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211115,-0.002533,0.003000,0.249982,0,0);}
.mf_c00278{transform:matrix(0.211423,-0.001691,0.002000,0.249992,0,0);-ms-transform:matrix(0.211423,-0.001691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211423,-0.001691,0.002000,0.249992,0,0);}
.m10c_c00278{transform:matrix(0.212152,-0.002758,0.003250,0.249979,0,0);-ms-transform:matrix(0.212152,-0.002758,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212152,-0.002758,0.003250,0.249979,0,0);}
.m1d_c00278{transform:matrix(0.212303,-0.001698,0.002000,0.249992,0,0);-ms-transform:matrix(0.212303,-0.001698,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212303,-0.001698,0.002000,0.249992,0,0);}
.mfa_c00278{transform:matrix(0.212560,-0.002551,0.003000,0.249982,0,0);-ms-transform:matrix(0.212560,-0.002551,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212560,-0.002551,0.003000,0.249982,0,0);}
.m110_c00278{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);}
.ma1_c00278{transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214745,-0.002577,0.003000,0.249982,0,0);}
.mc4_c00278{transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);-ms-transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);}
.mc3_c00278{transform:matrix(0.215829,-0.002590,0.003000,0.249982,0,0);-ms-transform:matrix(0.215829,-0.002590,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215829,-0.002590,0.003000,0.249982,0,0);}
.m107_c00278{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);}
.md4_c00278{transform:matrix(0.216334,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216334,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216334,-0.002596,0.003000,0.249982,0,0);}
.ma0_c00278{transform:matrix(0.216459,-0.002598,0.003000,0.249982,0,0);-ms-transform:matrix(0.216459,-0.002598,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216459,-0.002598,0.003000,0.249982,0,0);}
.md_c00278{transform:matrix(0.216998,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.216998,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216998,-0.001736,0.002000,0.249992,0,0);}
.m112_c00278{transform:matrix(0.217252,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217252,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217252,-0.002824,0.003250,0.249979,0,0);}
.m125_c00278{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);}
.m7b_c00278{transform:matrix(0.217759,-0.002613,0.003000,0.249982,0,0);-ms-transform:matrix(0.217759,-0.002613,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217759,-0.002613,0.003000,0.249982,0,0);}
.mc9_c00278{transform:matrix(0.218419,-0.002621,0.003000,0.249982,0,0);-ms-transform:matrix(0.218419,-0.002621,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218419,-0.002621,0.003000,0.249982,0,0);}
.m118_c00278{transform:matrix(0.218887,-0.002846,0.003250,0.249979,0,0);-ms-transform:matrix(0.218887,-0.002846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218887,-0.002846,0.003250,0.249979,0,0);}
.ma3_c00278{transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);-ms-transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);}
.m115_c00278{transform:matrix(0.219651,-0.002855,0.003250,0.249979,0,0);-ms-transform:matrix(0.219651,-0.002855,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219651,-0.002855,0.003250,0.249979,0,0);}
.me9_c00278{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);}
.md3_c00278{transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220509,-0.002646,0.003000,0.249982,0,0);}
.m87_c00278{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);}
.m44_c00278{transform:matrix(0.220653,-0.001765,0.002000,0.249992,0,0);-ms-transform:matrix(0.220653,-0.001765,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220653,-0.001765,0.002000,0.249992,0,0);}
.ma7_c00278{transform:matrix(0.220654,-0.002648,0.003000,0.249982,0,0);-ms-transform:matrix(0.220654,-0.002648,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220654,-0.002648,0.003000,0.249982,0,0);}
.mc5_c00278{transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);}
.m3a_c00278{transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-ms-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);}
.md6_c00278{transform:matrix(0.222189,-0.002666,0.003000,0.249982,0,0);-ms-transform:matrix(0.222189,-0.002666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222189,-0.002666,0.003000,0.249982,0,0);}
.ma6_c00278{transform:matrix(0.223009,-0.002676,0.003000,0.249982,0,0);-ms-transform:matrix(0.223009,-0.002676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223009,-0.002676,0.003000,0.249982,0,0);}
.m2d_c00278{transform:matrix(0.223508,-0.001788,0.002000,0.249992,0,0);-ms-transform:matrix(0.223508,-0.001788,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223508,-0.001788,0.002000,0.249992,0,0);}
.m84_c00278{transform:matrix(0.224514,-0.002694,0.003000,0.249982,0,0);-ms-transform:matrix(0.224514,-0.002694,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224514,-0.002694,0.003000,0.249982,0,0);}
.maa_c00278{transform:matrix(0.225309,-0.002704,0.003000,0.249982,0,0);-ms-transform:matrix(0.225309,-0.002704,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225309,-0.002704,0.003000,0.249982,0,0);}
.m47_c00278{transform:matrix(0.225523,-0.001804,0.002000,0.249992,0,0);-ms-transform:matrix(0.225523,-0.001804,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225523,-0.001804,0.002000,0.249992,0,0);}
.m64_c00278{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);}
.m5e_c00278{transform:matrix(0.227314,-0.002728,0.003000,0.249982,0,0);-ms-transform:matrix(0.227314,-0.002728,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227314,-0.002728,0.003000,0.249982,0,0);}
.mb8_c00278{transform:matrix(0.227349,-0.002728,0.003000,0.249982,0,0);-ms-transform:matrix(0.227349,-0.002728,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227349,-0.002728,0.003000,0.249982,0,0);}
.mde_c00278{transform:matrix(0.228209,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228209,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228209,-0.002739,0.003000,0.249982,0,0);}
.m106_c00278{transform:matrix(0.228266,-0.002967,0.003250,0.249979,0,0);-ms-transform:matrix(0.228266,-0.002967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228266,-0.002967,0.003250,0.249979,0,0);}
.mc_c00278{transform:matrix(0.229093,-0.001833,0.002000,0.249992,0,0);-ms-transform:matrix(0.229093,-0.001833,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229093,-0.001833,0.002000,0.249992,0,0);}
.m40_c00278{transform:matrix(0.229173,-0.001833,0.002000,0.249992,0,0);-ms-transform:matrix(0.229173,-0.001833,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229173,-0.001833,0.002000,0.249992,0,0);}
.me2_c00278{transform:matrix(0.229598,-0.002755,0.003000,0.249982,0,0);-ms-transform:matrix(0.229598,-0.002755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229598,-0.002755,0.003000,0.249982,0,0);}
.m79_c00278{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);}
.m7a_c00278{transform:matrix(0.230613,-0.002767,0.003000,0.249982,0,0);-ms-transform:matrix(0.230613,-0.002767,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230613,-0.002767,0.003000,0.249982,0,0);}
.m60_c00278{transform:matrix(0.231233,-0.002775,0.003000,0.249982,0,0);-ms-transform:matrix(0.231233,-0.002775,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231233,-0.002775,0.003000,0.249982,0,0);}
.m42_c00278{transform:matrix(0.231423,-0.001851,0.002000,0.249992,0,0);-ms-transform:matrix(0.231423,-0.001851,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231423,-0.001851,0.002000,0.249992,0,0);}
.mdc_c00278{transform:matrix(0.231823,-0.002782,0.003000,0.249982,0,0);-ms-transform:matrix(0.231823,-0.002782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231823,-0.002782,0.003000,0.249982,0,0);}
.mc2_c00278{transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);-ms-transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);}
.me6_c00278{transform:matrix(0.234643,-0.002816,0.003000,0.249982,0,0);-ms-transform:matrix(0.234643,-0.002816,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234643,-0.002816,0.003000,0.249982,0,0);}
.m11f_c00278{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.mcf_c00278{transform:matrix(0.235448,-0.002825,0.003000,0.249982,0,0);-ms-transform:matrix(0.235448,-0.002825,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235448,-0.002825,0.003000,0.249982,0,0);}
.mf7_c00278{transform:matrix(0.235793,-0.002830,0.003000,0.249982,0,0);-ms-transform:matrix(0.235793,-0.002830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235793,-0.002830,0.003000,0.249982,0,0);}
.ma4_c00278{transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);-ms-transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);}
.mdd_c00278{transform:matrix(0.237408,-0.002849,0.003000,0.249982,0,0);-ms-transform:matrix(0.237408,-0.002849,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237408,-0.002849,0.003000,0.249982,0,0);}
.m126_c00278{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);}
.m6_c00278{transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);-ms-transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);}
.m61_c00278{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);}
.m80_c00278{transform:matrix(0.239013,-0.002868,0.003000,0.249982,0,0);-ms-transform:matrix(0.239013,-0.002868,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239013,-0.002868,0.003000,0.249982,0,0);}
.mb6_c00278{transform:matrix(0.240358,-0.002884,0.003000,0.249982,0,0);-ms-transform:matrix(0.240358,-0.002884,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240358,-0.002884,0.003000,0.249982,0,0);}
.m11c_c00278{transform:matrix(0.241780,-0.003143,0.003250,0.249979,0,0);-ms-transform:matrix(0.241780,-0.003143,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241780,-0.003143,0.003250,0.249979,0,0);}
.m8a_c00278{transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);-ms-transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);}
.mf6_c00278{transform:matrix(0.243242,-0.002919,0.003000,0.249982,0,0);-ms-transform:matrix(0.243242,-0.002919,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243242,-0.002919,0.003000,0.249982,0,0);}
.mb5_c00278{transform:matrix(0.244712,-0.002937,0.003000,0.249982,0,0);-ms-transform:matrix(0.244712,-0.002937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244712,-0.002937,0.003000,0.249982,0,0);}
.meb_c00278{transform:matrix(0.245087,-0.002941,0.003000,0.249982,0,0);-ms-transform:matrix(0.245087,-0.002941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245087,-0.002941,0.003000,0.249982,0,0);}
.m5f_c00278{transform:matrix(0.245377,-0.002945,0.003000,0.249982,0,0);-ms-transform:matrix(0.245377,-0.002945,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245377,-0.002945,0.003000,0.249982,0,0);}
.m25_c00278{transform:matrix(0.248002,-0.001984,0.002000,0.249992,0,0);-ms-transform:matrix(0.248002,-0.001984,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248002,-0.001984,0.002000,0.249992,0,0);}
.m67_c00278{transform:matrix(0.249592,-0.002995,0.003000,0.249982,0,0);-ms-transform:matrix(0.249592,-0.002995,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249592,-0.002995,0.003000,0.249982,0,0);}
.m121_c00278{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.mf8_c00278{transform:matrix(0.251707,-0.003020,0.003000,0.249982,0,0);-ms-transform:matrix(0.251707,-0.003020,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251707,-0.003020,0.003000,0.249982,0,0);}
.m119_c00278{transform:matrix(0.252329,-0.003280,0.003250,0.249979,0,0);-ms-transform:matrix(0.252329,-0.003280,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252329,-0.003280,0.003250,0.249979,0,0);}
.m75_c00278{transform:matrix(0.252382,-0.003029,0.003000,0.249982,0,0);-ms-transform:matrix(0.252382,-0.003029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252382,-0.003029,0.003000,0.249982,0,0);}
.mf4_c00278{transform:matrix(0.255137,-0.003062,0.003000,0.249982,0,0);-ms-transform:matrix(0.255137,-0.003062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255137,-0.003062,0.003000,0.249982,0,0);}
.m104_c00278{transform:matrix(0.256853,-0.003339,0.003250,0.249979,0,0);-ms-transform:matrix(0.256853,-0.003339,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256853,-0.003339,0.003250,0.249979,0,0);}
.m6a_c00278{transform:matrix(0.259736,-0.003117,0.003000,0.249982,0,0);-ms-transform:matrix(0.259736,-0.003117,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259736,-0.003117,0.003000,0.249982,0,0);}
.m5d_c00278{transform:matrix(0.262676,-0.003152,0.003000,0.249982,0,0);-ms-transform:matrix(0.262676,-0.003152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262676,-0.003152,0.003000,0.249982,0,0);}
.mbf_c00278{transform:matrix(0.265946,-0.003191,0.003000,0.249982,0,0);-ms-transform:matrix(0.265946,-0.003191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265946,-0.003191,0.003000,0.249982,0,0);}
.m97_c00278{transform:matrix(0.266331,-0.003196,0.003000,0.249982,0,0);-ms-transform:matrix(0.266331,-0.003196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266331,-0.003196,0.003000,0.249982,0,0);}
.m14_c00278{transform:matrix(0.270626,-0.002165,0.002000,0.249992,0,0);-ms-transform:matrix(0.270626,-0.002165,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270626,-0.002165,0.002000,0.249992,0,0);}
.m124_c00278{transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.276916,-0.002215,0.002000,0.249992,0,0);-ms-transform:matrix(0.276916,-0.002215,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276916,-0.002215,0.002000,0.249992,0,0);}
.m7_c00278{transform:matrix(0.293545,-0.002935,0.002500,0.249988,0,0);-ms-transform:matrix(0.293545,-0.002935,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293545,-0.002935,0.002500,0.249988,0,0);}
.m68_c00278{transform:matrix(0.297564,-0.003571,0.003000,0.249982,0,0);-ms-transform:matrix(0.297564,-0.003571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.297564,-0.003571,0.003000,0.249982,0,0);}
.m113_c00278{transform:matrix(0.297680,-0.003870,0.003250,0.249979,0,0);-ms-transform:matrix(0.297680,-0.003870,0.003250,0.249979,0,0);-webkit-transform:matrix(0.297680,-0.003870,0.003250,0.249979,0,0);}
.m122_c00278{transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298340,0.000000,0.000000,0.250000,0,0);}
.m129_c00278{transform:matrix(0.298587,0.005076,-0.004249,0.249964,0,0);-ms-transform:matrix(0.298587,0.005076,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.298587,0.005076,-0.004249,0.249964,0,0);}
.m2b_c00278{transform:matrix(0.302630,-0.002421,0.002000,0.249992,0,0);-ms-transform:matrix(0.302630,-0.002421,0.002000,0.249992,0,0);-webkit-transform:matrix(0.302630,-0.002421,0.002000,0.249992,0,0);}
.m9f_c00278{transform:matrix(0.305113,-0.003661,0.003000,0.249982,0,0);-ms-transform:matrix(0.305113,-0.003661,0.003000,0.249982,0,0);-webkit-transform:matrix(0.305113,-0.003661,0.003000,0.249982,0,0);}
.m78_c00278{transform:matrix(0.309403,-0.003713,0.003000,0.249982,0,0);-ms-transform:matrix(0.309403,-0.003713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.309403,-0.003713,0.003000,0.249982,0,0);}
.m128_c00278{transform:matrix(0.323868,0.005506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.323868,0.005506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.323868,0.005506,-0.004249,0.249964,0,0);}
.m6c_c00278{transform:matrix(0.325937,-0.003911,0.003000,0.249982,0,0);-ms-transform:matrix(0.325937,-0.003911,0.003000,0.249982,0,0);-webkit-transform:matrix(0.325937,-0.003911,0.003000,0.249982,0,0);}
.m102_c00278{transform:matrix(0.331862,-0.004314,0.003250,0.249979,0,0);-ms-transform:matrix(0.331862,-0.004314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.331862,-0.004314,0.003250,0.249979,0,0);}
.m77_c00278{transform:matrix(0.333671,-0.004004,0.003000,0.249982,0,0);-ms-transform:matrix(0.333671,-0.004004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333671,-0.004004,0.003000,0.249982,0,0);}
.m3_c00278{transform:matrix(0.334030,-0.003674,0.002750,0.249985,0,0);-ms-transform:matrix(0.334030,-0.003674,0.002750,0.249985,0,0);-webkit-transform:matrix(0.334030,-0.003674,0.002750,0.249985,0,0);}
.m12d_c00278{transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.339939,-0.002720,0.002000,0.249992,0,0);-ms-transform:matrix(0.339939,-0.002720,0.002000,0.249992,0,0);-webkit-transform:matrix(0.339939,-0.002720,0.002000,0.249992,0,0);}
.m109_c00278{transform:matrix(0.340066,-0.004421,0.003250,0.249979,0,0);-ms-transform:matrix(0.340066,-0.004421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.340066,-0.004421,0.003250,0.249979,0,0);}
.m4d_c00278{transform:matrix(0.349598,-0.003496,0.002500,0.249988,0,0);-ms-transform:matrix(0.349598,-0.003496,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349598,-0.003496,0.002500,0.249988,0,0);}
.m4_c00278{transform:matrix(0.351684,-0.003869,0.002750,0.249985,0,0);-ms-transform:matrix(0.351684,-0.003869,0.002750,0.249985,0,0);-webkit-transform:matrix(0.351684,-0.003869,0.002750,0.249985,0,0);}
.m11d_c00278{transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);}
.m123_c00278{transform:matrix(0.364525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364525,0.000000,0.000000,0.250000,0,0);}
.m103_c00278{transform:matrix(0.367319,-0.004775,0.003250,0.249979,0,0);-ms-transform:matrix(0.367319,-0.004775,0.003250,0.249979,0,0);-webkit-transform:matrix(0.367319,-0.004775,0.003250,0.249979,0,0);}
.m114_c00278{transform:matrix(0.372754,-0.004846,0.003250,0.249979,0,0);-ms-transform:matrix(0.372754,-0.004846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.372754,-0.004846,0.003250,0.249979,0,0);}
.m62_c00278{transform:matrix(0.397761,-0.004773,0.003000,0.249982,0,0);-ms-transform:matrix(0.397761,-0.004773,0.003000,0.249982,0,0);-webkit-transform:matrix(0.397761,-0.004773,0.003000,0.249982,0,0);}
.m5_c00278{transform:matrix(0.408620,-0.004086,0.002500,0.249988,0,0);-ms-transform:matrix(0.408620,-0.004086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.408620,-0.004086,0.002500,0.249988,0,0);}
.ma_c00278{transform:matrix(0.411947,-0.003296,0.002000,0.249992,0,0);-ms-transform:matrix(0.411947,-0.003296,0.002000,0.249992,0,0);-webkit-transform:matrix(0.411947,-0.003296,0.002000,0.249992,0,0);}
.mf9_c00278{transform:matrix(0.412890,-0.004955,0.003000,0.249982,0,0);-ms-transform:matrix(0.412890,-0.004955,0.003000,0.249982,0,0);-webkit-transform:matrix(0.412890,-0.004955,0.003000,0.249982,0,0);}
.m12c_c00278{transform:matrix(0.439790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439790,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.486735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486735,0.000000,0.000000,0.250000,0,0);}
.m12a_c00278{transform:matrix(0.494375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494375,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.560762,-0.004486,0.002000,0.249992,0,0);-ms-transform:matrix(0.560762,-0.004486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.560762,-0.004486,0.002000,0.249992,0,0);}
.m4c_c00278{transform:matrix(0.573151,-0.005732,0.002500,0.249988,0,0);-ms-transform:matrix(0.573151,-0.005732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.573151,-0.005732,0.002500,0.249988,0,0);}
.m4f_c00278{transform:matrix(0.663542,-0.006635,0.002500,0.249988,0,0);-ms-transform:matrix(0.663542,-0.006635,0.002500,0.249988,0,0);-webkit-transform:matrix(0.663542,-0.006635,0.002500,0.249988,0,0);}
.m12b_c00278{transform:matrix(0.954520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954520,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;}
._0_c00278{width:4915.960061px;}
.fc0_c00278{color:transparent;}
.fs0_c00278{font-size:22.050000px;}
.fs2_c00278{font-size:32.551969px;}
.fs16_c00278{font-size:33.600000px;}
.fs12_c00278{font-size:47.253992px;}
.fs14_c00278{font-size:50.400000px;}
.fs13_c00278{font-size:51.450000px;}
.fs11_c00278{font-size:53.554525px;}
.fse_c00278{font-size:59.854309px;}
.fs17_c00278{font-size:64.050000px;}
.fsd_c00278{font-size:65.104687px;}
.fsc_c00278{font-size:66.154763px;}
.fs7_c00278{font-size:67.204838px;}
.fs5_c00278{font-size:68.252184px;}
.fsb_c00278{font-size:68.254914px;}
.fs4_c00278{font-size:69.302218px;}
.fs8_c00278{font-size:69.304989px;}
.fsf_c00278{font-size:70.350000px;}
.fs9_c00278{font-size:70.355065px;}
.fsa_c00278{font-size:71.405141px;}
.fs6_c00278{font-size:72.453622px;}
.fs10_c00278{font-size:95.550000px;}
.fs3_c00278{font-size:124.956247px;}
.fs15_c00278{font-size:176.425488px;}
.fs1_c00278{font-size:237.300000px;}
.y0_c00278{bottom:0.000000px;}
.y121_c00278{bottom:107.110500px;}
.y11f_c00278{bottom:108.051220px;}
.y11e_c00278{bottom:112.950000px;}
.y120_c00278{bottom:114.210000px;}
.y11d_c00278{bottom:166.899000px;}
.y11b_c00278{bottom:167.941500px;}
.y11c_c00278{bottom:183.736500px;}
.y113_c00278{bottom:186.300594px;}
.y114_c00278{bottom:187.116599px;}
.y115_c00278{bottom:187.359696px;}
.y116_c00278{bottom:187.661336px;}
.y117_c00278{bottom:188.153165px;}
.y118_c00278{bottom:189.040812px;}
.y119_c00278{bottom:189.381032px;}
.y11a_c00278{bottom:189.611925px;}
.y100_c00278{bottom:201.270000px;}
.y101_c00278{bottom:201.540290px;}
.y102_c00278{bottom:202.002791px;}
.y103_c00278{bottom:202.161501px;}
.y104_c00278{bottom:202.272358px;}
.y105_c00278{bottom:202.542648px;}
.y106_c00278{bottom:203.117879px;}
.y107_c00278{bottom:203.407688px;}
.y108_c00278{bottom:203.757381px;}
.y109_c00278{bottom:204.203014px;}
.y10a_c00278{bottom:204.339612px;}
.y10b_c00278{bottom:204.887582px;}
.y10c_c00278{bottom:205.171463px;}
.y10d_c00278{bottom:205.379313px;}
.y10e_c00278{bottom:205.824186px;}
.y10f_c00278{bottom:206.008013px;}
.y110_c00278{bottom:206.526849px;}
.y111_c00278{bottom:206.654652px;}
.y112_c00278{bottom:206.848092px;}
.yff_c00278{bottom:255.559500px;}
.yfe_c00278{bottom:283.744500px;}
.yfd_c00278{bottom:314.669526px;}
.yfc_c00278{bottom:314.669982px;}
.yfa_c00278{bottom:314.670510px;}
.yfb_c00278{bottom:314.670654px;}
.yf9_c00278{bottom:314.670726px;}
.yf8_c00278{bottom:314.670984px;}
.yee_c00278{bottom:335.864616px;}
.yef_c00278{bottom:336.979140px;}
.yf0_c00278{bottom:337.439256px;}
.yf1_c00278{bottom:337.711434px;}
.yf2_c00278{bottom:338.382564px;}
.yf3_c00278{bottom:338.984772px;}
.yf4_c00278{bottom:339.295362px;}
.yf5_c00278{bottom:339.671832px;}
.yf6_c00278{bottom:340.475262px;}
.yf7_c00278{bottom:340.964592px;}
.ye1_c00278{bottom:358.546098px;}
.ye2_c00278{bottom:359.057208px;}
.ye3_c00278{bottom:359.226498px;}
.ye4_c00278{bottom:359.522724px;}
.ye5_c00278{bottom:360.147414px;}
.ye6_c00278{bottom:360.921918px;}
.ye7_c00278{bottom:361.873830px;}
.ye8_c00278{bottom:362.324856px;}
.ye9_c00278{bottom:362.810892px;}
.yea_c00278{bottom:363.186588px;}
.yeb_c00278{bottom:363.452412px;}
.yec_c00278{bottom:363.925380px;}
.yed_c00278{bottom:364.120122px;}
.yd6_c00278{bottom:381.474996px;}
.yd7_c00278{bottom:381.920460px;}
.yd8_c00278{bottom:382.543824px;}
.yd9_c00278{bottom:382.843578px;}
.yda_c00278{bottom:383.431692px;}
.ydb_c00278{bottom:383.652006px;}
.ydc_c00278{bottom:384.089286px;}
.ydd_c00278{bottom:384.823134px;}
.yde_c00278{bottom:385.271838px;}
.ydf_c00278{bottom:385.631490px;}
.ye0_c00278{bottom:386.148210px;}
.ycd_c00278{bottom:404.987070px;}
.yce_c00278{bottom:405.526458px;}
.ycf_c00278{bottom:405.715812px;}
.yd0_c00278{bottom:405.943566px;}
.yd1_c00278{bottom:406.509966px;}
.yd2_c00278{bottom:407.084352px;}
.yd3_c00278{bottom:407.524332px;}
.yd4_c00278{bottom:408.345810px;}
.yd5_c00278{bottom:408.767556px;}
.yc1_c00278{bottom:427.399590px;}
.yc2_c00278{bottom:427.533870px;}
.yc3_c00278{bottom:427.958094px;}
.yc4_c00278{bottom:428.757702px;}
.yc5_c00278{bottom:429.095760px;}
.yc6_c00278{bottom:429.411210px;}
.yc7_c00278{bottom:429.804894px;}
.yc8_c00278{bottom:430.214370px;}
.yc9_c00278{bottom:430.560126px;}
.yca_c00278{bottom:431.024964px;}
.ycb_c00278{bottom:431.438166px;}
.ycc_c00278{bottom:431.657214px;}
.yb6_c00278{bottom:450.349464px;}
.yb7_c00278{bottom:450.804984px;}
.yb8_c00278{bottom:451.366980px;}
.yb9_c00278{bottom:451.918404px;}
.yba_c00278{bottom:452.188548px;}
.ybb_c00278{bottom:452.696928px;}
.ybc_c00278{bottom:452.820672px;}
.ybd_c00278{bottom:453.212544px;}
.ybe_c00278{bottom:453.591306px;}
.ybf_c00278{bottom:454.225062px;}
.yc0_c00278{bottom:454.797996px;}
.yac_c00278{bottom:472.759602px;}
.yad_c00278{bottom:473.342106px;}
.yae_c00278{bottom:474.004716px;}
.yaf_c00278{bottom:474.892530px;}
.yb0_c00278{bottom:475.094796px;}
.yb1_c00278{bottom:475.344006px;}
.yb2_c00278{bottom:475.813854px;}
.yb3_c00278{bottom:476.180058px;}
.yb4_c00278{bottom:476.619078px;}
.yb5_c00278{bottom:477.343728px;}
.ya1_c00278{bottom:494.359710px;}
.ya2_c00278{bottom:494.850864px;}
.ya3_c00278{bottom:495.742716px;}
.ya4_c00278{bottom:496.518828px;}
.ya5_c00278{bottom:496.884378px;}
.ya6_c00278{bottom:497.913126px;}
.ya7_c00278{bottom:498.219114px;}
.ya8_c00278{bottom:498.591108px;}
.ya9_c00278{bottom:499.415652px;}
.yaa_c00278{bottom:499.802106px;}
.yab_c00278{bottom:500.485686px;}
.y96_c00278{bottom:518.392620px;}
.y97_c00278{bottom:518.704290px;}
.y98_c00278{bottom:519.243588px;}
.y99_c00278{bottom:519.947940px;}
.y9a_c00278{bottom:520.120818px;}
.y9b_c00278{bottom:520.586988px;}
.y9c_c00278{bottom:521.183988px;}
.y9d_c00278{bottom:521.439174px;}
.y9e_c00278{bottom:521.604066px;}
.y9f_c00278{bottom:522.186198px;}
.ya0_c00278{bottom:522.478038px;}
.y8a_c00278{bottom:541.074336px;}
.y8b_c00278{bottom:541.417158px;}
.y8c_c00278{bottom:541.907802px;}
.y8d_c00278{bottom:542.374944px;}
.y8e_c00278{bottom:542.616006px;}
.y8f_c00278{bottom:543.476976px;}
.y90_c00278{bottom:543.779352px;}
.y91_c00278{bottom:544.008828px;}
.y92_c00278{bottom:544.573488px;}
.y93_c00278{bottom:544.904856px;}
.y94_c00278{bottom:545.070684px;}
.y95_c00278{bottom:545.391816px;}
.y7c_c00278{bottom:563.754930px;}
.y7d_c00278{bottom:564.138456px;}
.y7e_c00278{bottom:564.405720px;}
.y7f_c00278{bottom:564.954066px;}
.y80_c00278{bottom:565.480830px;}
.y81_c00278{bottom:565.961586px;}
.y82_c00278{bottom:566.082900px;}
.y83_c00278{bottom:566.282826px;}
.y84_c00278{bottom:566.661372px;}
.y85_c00278{bottom:566.939664px;}
.y86_c00278{bottom:567.457686px;}
.y87_c00278{bottom:567.673440px;}
.y88_c00278{bottom:567.850332px;}
.y89_c00278{bottom:568.233732px;}
.y72_c00278{bottom:585.897534px;}
.y73_c00278{bottom:586.604352px;}
.y74_c00278{bottom:586.925574px;}
.y75_c00278{bottom:587.708916px;}
.y76_c00278{bottom:588.668796px;}
.y77_c00278{bottom:588.843942px;}
.y78_c00278{bottom:589.213062px;}
.y79_c00278{bottom:590.311146px;}
.y7a_c00278{bottom:590.528148px;}
.y7b_c00278{bottom:590.962116px;}
.y68_c00278{bottom:608.309028px;}
.y69_c00278{bottom:608.816184px;}
.y6a_c00278{bottom:608.933094px;}
.y6b_c00278{bottom:609.364314px;}
.y6c_c00278{bottom:609.555534px;}
.y6d_c00278{bottom:610.171542px;}
.y6e_c00278{bottom:610.408428px;}
.y6f_c00278{bottom:611.331846px;}
.y70_c00278{bottom:611.688612px;}
.y71_c00278{bottom:612.169116px;}
.y5e_c00278{bottom:630.478500px;}
.y5f_c00278{bottom:630.948390px;}
.y60_c00278{bottom:631.421394px;}
.y61_c00278{bottom:631.908132px;}
.y62_c00278{bottom:632.607306px;}
.y63_c00278{bottom:633.575994px;}
.y64_c00278{bottom:633.822378px;}
.y65_c00278{bottom:634.309008px;}
.y66_c00278{bottom:635.499492px;}
.y67_c00278{bottom:635.697888px;}
.y57_c00278{bottom:660.961395px;}
.y58_c00278{bottom:661.288110px;}
.y59_c00278{bottom:661.705545px;}
.y5a_c00278{bottom:662.608620px;}
.y5b_c00278{bottom:663.106500px;}
.y5c_c00278{bottom:663.538155px;}
.y5d_c00278{bottom:663.978990px;}
.y4d_c00278{bottom:684.141000px;}
.y4e_c00278{bottom:684.796470px;}
.y4f_c00278{bottom:685.073685px;}
.y50_c00278{bottom:685.299225px;}
.y51_c00278{bottom:685.797810px;}
.y52_c00278{bottom:686.016495px;}
.y53_c00278{bottom:686.527170px;}
.y54_c00278{bottom:686.942700px;}
.y55_c00278{bottom:687.871245px;}
.y56_c00278{bottom:688.392105px;}
.y43_c00278{bottom:716.040384px;}
.y44_c00278{bottom:716.362452px;}
.y45_c00278{bottom:716.699628px;}
.y46_c00278{bottom:716.978172px;}
.y47_c00278{bottom:717.565932px;}
.y48_c00278{bottom:717.807660px;}
.y49_c00278{bottom:718.099272px;}
.y4a_c00278{bottom:718.753332px;}
.y4b_c00278{bottom:718.765980px;}
.y4c_c00278{bottom:719.088696px;}
.y38_c00278{bottom:739.261032px;}
.y39_c00278{bottom:739.567740px;}
.y3a_c00278{bottom:739.904712px;}
.y3b_c00278{bottom:740.090532px;}
.y3c_c00278{bottom:740.747112px;}
.y3d_c00278{bottom:740.984688px;}
.y3e_c00278{bottom:741.310596px;}
.y3f_c00278{bottom:741.574608px;}
.y40_c00278{bottom:742.080096px;}
.y41_c00278{bottom:742.283004px;}
.y42_c00278{bottom:742.818420px;}
.y2e_c00278{bottom:761.942064px;}
.y2f_c00278{bottom:762.296436px;}
.y30_c00278{bottom:762.864900px;}
.y31_c00278{bottom:763.076808px;}
.y32_c00278{bottom:763.632672px;}
.y33_c00278{bottom:763.907052px;}
.y34_c00278{bottom:764.537304px;}
.y35_c00278{bottom:765.496740px;}
.y36_c00278{bottom:765.657300px;}
.y37_c00278{bottom:765.951804px;}
.y22_c00278{bottom:784.623216px;}
.y23_c00278{bottom:785.024940px;}
.y24_c00278{bottom:785.219304px;}
.y25_c00278{bottom:785.418072px;}
.y26_c00278{bottom:785.932152px;}
.y27_c00278{bottom:786.105000px;}
.y28_c00278{bottom:786.366648px;}
.y29_c00278{bottom:786.588876px;}
.y2a_c00278{bottom:787.118040px;}
.y2b_c00278{bottom:787.558752px;}
.y2c_c00278{bottom:787.720728px;}
.y2d_c00278{bottom:788.018832px;}
.y15_c00278{bottom:807.570984px;}
.y16_c00278{bottom:807.785076px;}
.y17_c00278{bottom:807.983304px;}
.y18_c00278{bottom:808.312680px;}
.y19_c00278{bottom:808.586904px;}
.y1a_c00278{bottom:808.893372px;}
.y1b_c00278{bottom:809.215968px;}
.y1c_c00278{bottom:809.388792px;}
.y1d_c00278{bottom:809.517696px;}
.y1e_c00278{bottom:809.847036px;}
.y1f_c00278{bottom:810.309996px;}
.y20_c00278{bottom:810.542892px;}
.y21_c00278{bottom:810.805728px;}
.ya_c00278{bottom:829.711500px;}
.yb_c00278{bottom:830.368968px;}
.yc_c00278{bottom:830.804508px;}
.yd_c00278{bottom:831.076656px;}
.ye_c00278{bottom:831.290508px;}
.yf_c00278{bottom:831.453552px;}
.y10_c00278{bottom:832.053024px;}
.y11_c00278{bottom:832.253952px;}
.y12_c00278{bottom:832.752912px;}
.y13_c00278{bottom:833.083104px;}
.y14_c00278{bottom:833.314212px;}
.y6_c00278{bottom:875.167500px;}
.y7_c00278{bottom:876.282645px;}
.y8_c00278{bottom:876.922620px;}
.y9_c00278{bottom:878.507145px;}
.y3_c00278{bottom:907.200000px;}
.y4_c00278{bottom:911.403177px;}
.y5_c00278{bottom:911.792709px;}
.y2_c00278{bottom:920.136000px;}
.y1_c00278{bottom:957.015000px;}
.h2_c00278{height:22.050000px;}
.h4_c00278{height:32.551969px;}
.h18_c00278{height:33.600000px;}
.h14_c00278{height:47.253992px;}
.h16_c00278{height:50.400000px;}
.h15_c00278{height:51.450000px;}
.h13_c00278{height:53.554525px;}
.h10_c00278{height:59.854309px;}
.h19_c00278{height:64.050000px;}
.hf_c00278{height:65.104687px;}
.he_c00278{height:66.154763px;}
.h9_c00278{height:67.204838px;}
.h7_c00278{height:68.252184px;}
.hd_c00278{height:68.254914px;}
.h6_c00278{height:69.302218px;}
.ha_c00278{height:69.304989px;}
.h11_c00278{height:70.350000px;}
.hb_c00278{height:70.355065px;}
.hc_c00278{height:71.405141px;}
.h8_c00278{height:72.453622px;}
.h12_c00278{height:95.550000px;}
.h5_c00278{height:124.956247px;}
.h17_c00278{height:176.425488px;}
.h3_c00278{height:237.300000px;}
.h1_c00278{height:1005.000000px;}
.h0_c00278{height:1005.150000px;}
.w0_c00278{width:702.540000px;}
.w1_c00278{width:702.750000px;}
.x0_c00278{left:0.000000px;}
.x85_c00278{left:72.498156px;}
.x3a_c00278{left:75.668652px;}
.x59_c00278{left:77.364756px;}
.x15_c00278{left:78.386628px;}
.x1f_c00278{left:81.099372px;}
.x2a_c00278{left:84.887052px;}
.xa_c00278{left:85.962000px;}
.x60_c00278{left:87.635634px;}
.x89_c00278{left:88.684398px;}
.x92_c00278{left:90.285840px;}
.xaf_c00278{left:92.610000px;}
.x2_c00278{left:103.410000px;}
.xa4_c00278{left:105.550500px;}
.x51_c00278{left:106.809000px;}
.x16_c00278{left:108.898368px;}
.x3b_c00278{left:115.927152px;}
.x43_c00278{left:119.575500px;}
.x4d_c00278{left:120.846900px;}
.x74_c00278{left:121.884768px;}
.x2b_c00278{left:124.308240px;}
.x68_c00278{left:125.895714px;}
.x5a_c00278{left:128.128980px;}
.x20_c00278{left:131.314872px;}
.x93_c00278{left:132.878340px;}
.x17_c00278{left:137.239596px;}
.x5b_c00278{left:139.746750px;}
.x8a_c00278{left:142.634694px;}
.x52_c00278{left:145.966500px;}
.x94_c00278{left:146.985840px;}
.x4e_c00278{left:148.117860px;}
.x61_c00278{left:151.912908px;}
.x21_c00278{left:155.610372px;}
.x3c_c00278{left:158.074152px;}
.x1_c00278{left:159.840000px;}
.x8b_c00278{left:161.539644px;}
.xa3_c00278{left:162.540000px;}
.xb3_c00278{left:163.620000px;}
.x32_c00278{left:166.149540px;}
.xb_c00278{left:168.145500px;}
.x6e_c00278{left:170.489364px;}
.x95_c00278{left:171.671340px;}
.xa5_c00278{left:174.127500px;}
.x22_c00278{left:180.456372px;}
.x75_c00278{left:181.828428px;}
.x3_c00278{left:183.873000px;}
.x44_c00278{left:185.122500px;}
.x2c_c00278{left:187.490736px;}
.x33_c00278{left:189.377040px;}
.x3d_c00278{left:192.892152px;}
.xb1_c00278{left:196.509000px;}
.x6_c00278{left:197.547000px;}
.x7c_c00278{left:200.217864px;}
.x5c_c00278{left:202.118262px;}
.xa2_c00278{left:204.390000px;}
.x69_c00278{left:207.490176px;}
.x2d_c00278{left:210.979044px;}
.x45_c00278{left:212.844000px;}
.x6f_c00278{left:217.168980px;}
.x9c_c00278{left:221.029410px;}
.xc_c00278{left:222.588000px;}
.x96_c00278{left:223.728840px;}
.x53_c00278{left:225.945000px;}
.x46_c00278{left:235.398000px;}
.x70_c00278{left:241.258056px;}
.x80_c00278{left:242.587962px;}
.x9d_c00278{left:243.710910px;}
.x23_c00278{left:244.716372px;}
.xa6_c00278{left:247.695000px;}
.x62_c00278{left:252.336114px;}
.xd_c00278{left:256.606500px;}
.x4f_c00278{left:258.266670px;}
.x6a_c00278{left:260.138436px;}
.x5d_c00278{left:263.703738px;}
.x8d_c00278{left:265.561992px;}
.x18_c00278{left:267.124128px;}
.x81_c00278{left:269.600610px;}
.x34_c00278{left:271.449540px;}
.x2e_c00278{left:272.774052px;}
.xa1_c00278{left:274.870854px;}
.x76_c00278{left:279.309438px;}
.x7d_c00278{left:280.953336px;}
.xe_c00278{left:283.338000px;}
.x47_c00278{left:285.256500px;}
.x5e_c00278{left:287.444814px;}
.xb4_c00278{left:292.410000px;}
.x3e_c00278{left:296.578152px;}
.x24_c00278{left:299.028372px;}
.x35_c00278{left:301.146540px;}
.xf_c00278{left:303.718500px;}
.x48_c00278{left:307.125000px;}
.x7_c00278{left:309.061500px;}
.x19_c00278{left:313.261500px;}
.x6b_c00278{left:320.312376px;}
.x7e_c00278{left:321.951822px;}
.x8e_c00278{left:325.237194px;}
.x25_c00278{left:326.806872px;}
.xb0_c00278{left:329.400000px;}
.x77_c00278{left:331.158810px;}
.x3f_c00278{left:333.029652px;}
.x50_c00278{left:335.768625px;}
.x1a_c00278{left:337.864692px;}
.x63_c00278{left:339.577158px;}
.x36_c00278{left:341.885040px;}
.xb5_c00278{left:345.600000px;}
.x9e_c00278{left:349.822410px;}
.x7a_c00278{left:351.445278px;}
.x86_c00278{left:354.069924px;}
.x1b_c00278{left:356.227836px;}
.x49_c00278{left:358.192500px;}
.x54_c00278{left:364.933500px;}
.x97_c00278{left:367.596840px;}
.x82_c00278{left:371.936058px;}
.x8_c00278{left:373.059000px;}
.x37_c00278{left:374.886540px;}
.x10_c00278{left:378.652500px;}
.x5f_c00278{left:379.773528px;}
.xa7_c00278{left:383.826000px;}
.x55_c00278{left:385.465500px;}
.xab_c00278{left:387.366582px;}
.x64_c00278{left:389.058252px;}
.x8f_c00278{left:391.891986px;}
.x26_c00278{left:392.952372px;}
.x78_c00278{left:397.536204px;}
.x4a_c00278{left:399.745500px;}
.xac_c00278{left:400.873205px;}
.x11_c00278{left:403.768500px;}
.x6c_c00278{left:405.961428px;}
.x9f_c00278{left:407.077410px;}
.x83_c00278{left:409.750458px;}
.x40_c00278{left:414.787152px;}
.x41_c00278{left:416.368152px;}
.xad_c00278{left:417.613612px;}
.xa8_c00278{left:421.651500px;}
.x8c_c00278{left:424.587462px;}
.x56_c00278{left:426.018000px;}
.x90_c00278{left:432.659472px;}
.x87_c00278{left:435.121368px;}
.x71_c00278{left:437.011254px;}
.x38_c00278{left:438.072540px;}
.x79_c00278{left:444.294396px;}
.x98_c00278{left:445.685340px;}
.x27_c00278{left:448.041372px;}
.x42_c00278{left:456.707652px;}
.x6d_c00278{left:457.756170px;}
.x39_c00278{left:463.436040px;}
.x12_c00278{left:466.138500px;}
.x28_c00278{left:468.288372px;}
.x1c_c00278{left:469.328736px;}
.x84_c00278{left:473.189988px;}
.x88_c00278{left:476.430858px;}
.x2f_c00278{left:479.905896px;}
.xb2_c00278{left:484.672500px;}
.x72_c00278{left:486.695442px;}
.x65_c00278{left:488.941458px;}
.x4b_c00278{left:492.600000px;}
.xae_c00278{left:494.299140px;}
.x30_c00278{left:497.725752px;}
.x99_c00278{left:499.145340px;}
.x1d_c00278{left:502.566000px;}
.x7f_c00278{left:503.722500px;}
.x29_c00278{left:505.551372px;}
.x13_c00278{left:507.412500px;}
.x66_c00278{left:508.650192px;}
.xa9_c00278{left:509.923500px;}
.x91_c00278{left:512.316426px;}
.xa0_c00278{left:514.807410px;}
.x73_c00278{left:518.832216px;}
.x57_c00278{left:525.225000px;}
.x31_c00278{left:530.413488px;}
.x9_c00278{left:531.511500px;}
.xaa_c00278{left:534.634500px;}
.x14_c00278{left:536.301000px;}
.x9a_c00278{left:538.559340px;}
.x1e_c00278{left:540.108300px;}
.x58_c00278{left:541.758000px;}
.x4c_c00278{left:544.686000px;}
.x67_c00278{left:548.064660px;}
.x7b_c00278{left:549.322902px;}
.x9b_c00278{left:554.787840px;}
.x4_c00278{left:565.980000px;}
.x5_c00278{left:601.392000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:0.000000pt;}
._0_c00278{width:4369.742276pt;}
.fs0_c00278{font-size:19.600000pt;}
.fs2_c00278{font-size:28.935084pt;}
.fs16_c00278{font-size:29.866667pt;}
.fs12_c00278{font-size:42.003549pt;}
.fs14_c00278{font-size:44.800000pt;}
.fs13_c00278{font-size:45.733333pt;}
.fs11_c00278{font-size:47.604022pt;}
.fse_c00278{font-size:53.203830pt;}
.fs17_c00278{font-size:56.933333pt;}
.fsd_c00278{font-size:57.870833pt;}
.fsc_c00278{font-size:58.804233pt;}
.fs7_c00278{font-size:59.737634pt;}
.fs5_c00278{font-size:60.668608pt;}
.fsb_c00278{font-size:60.671035pt;}
.fs4_c00278{font-size:61.601971pt;}
.fs8_c00278{font-size:61.604435pt;}
.fsf_c00278{font-size:62.533333pt;}
.fs9_c00278{font-size:62.537836pt;}
.fsa_c00278{font-size:63.471236pt;}
.fs6_c00278{font-size:64.403220pt;}
.fs10_c00278{font-size:84.933333pt;}
.fs3_c00278{font-size:111.072220pt;}
.fs15_c00278{font-size:156.822656pt;}
.fs1_c00278{font-size:210.933333pt;}
.y0_c00278{bottom:0.000000pt;}
.y121_c00278{bottom:95.209333pt;}
.y11f_c00278{bottom:96.045529pt;}
.y11e_c00278{bottom:100.400000pt;}
.y120_c00278{bottom:101.520000pt;}
.y11d_c00278{bottom:148.354667pt;}
.y11b_c00278{bottom:149.281333pt;}
.y11c_c00278{bottom:163.321333pt;}
.y113_c00278{bottom:165.600528pt;}
.y114_c00278{bottom:166.325865pt;}
.y115_c00278{bottom:166.541952pt;}
.y116_c00278{bottom:166.810076pt;}
.y117_c00278{bottom:167.247257pt;}
.y118_c00278{bottom:168.036277pt;}
.y119_c00278{bottom:168.338695pt;}
.y11a_c00278{bottom:168.543933pt;}
.y100_c00278{bottom:178.906667pt;}
.y101_c00278{bottom:179.146924pt;}
.y102_c00278{bottom:179.558036pt;}
.y103_c00278{bottom:179.699112pt;}
.y104_c00278{bottom:179.797652pt;}
.y105_c00278{bottom:180.037909pt;}
.y106_c00278{bottom:180.549225pt;}
.y107_c00278{bottom:180.806833pt;}
.y108_c00278{bottom:181.117672pt;}
.y109_c00278{bottom:181.513791pt;}
.y10a_c00278{bottom:181.635211pt;}
.y10b_c00278{bottom:182.122295pt;}
.y10c_c00278{bottom:182.374633pt;}
.y10d_c00278{bottom:182.559389pt;}
.y10e_c00278{bottom:182.954832pt;}
.y10f_c00278{bottom:183.118233pt;}
.y110_c00278{bottom:183.579421pt;}
.y111_c00278{bottom:183.693024pt;}
.y112_c00278{bottom:183.864971pt;}
.yff_c00278{bottom:227.164000pt;}
.yfe_c00278{bottom:252.217333pt;}
.yfd_c00278{bottom:279.706245pt;}
.yfc_c00278{bottom:279.706651pt;}
.yfa_c00278{bottom:279.707120pt;}
.yfb_c00278{bottom:279.707248pt;}
.yf9_c00278{bottom:279.707312pt;}
.yf8_c00278{bottom:279.707541pt;}
.yee_c00278{bottom:298.546325pt;}
.yef_c00278{bottom:299.537013pt;}
.yf0_c00278{bottom:299.946005pt;}
.yf1_c00278{bottom:300.187941pt;}
.yf2_c00278{bottom:300.784501pt;}
.yf3_c00278{bottom:301.319797pt;}
.yf4_c00278{bottom:301.595877pt;}
.yf5_c00278{bottom:301.930517pt;}
.yf6_c00278{bottom:302.644677pt;}
.yf7_c00278{bottom:303.079637pt;}
.ye1_c00278{bottom:318.707643pt;}
.ye2_c00278{bottom:319.161963pt;}
.ye3_c00278{bottom:319.312443pt;}
.ye4_c00278{bottom:319.575755pt;}
.ye5_c00278{bottom:320.131035pt;}
.ye6_c00278{bottom:320.819483pt;}
.ye7_c00278{bottom:321.665627pt;}
.ye8_c00278{bottom:322.066539pt;}
.ye9_c00278{bottom:322.498571pt;}
.yea_c00278{bottom:322.832523pt;}
.yeb_c00278{bottom:323.068811pt;}
.yec_c00278{bottom:323.489227pt;}
.yed_c00278{bottom:323.662331pt;}
.yd6_c00278{bottom:339.088885pt;}
.yd7_c00278{bottom:339.484853pt;}
.yd8_c00278{bottom:340.038955pt;}
.yd9_c00278{bottom:340.305403pt;}
.yda_c00278{bottom:340.828171pt;}
.ydb_c00278{bottom:341.024005pt;}
.ydc_c00278{bottom:341.412699pt;}
.ydd_c00278{bottom:342.065008pt;}
.yde_c00278{bottom:342.463856pt;}
.ydf_c00278{bottom:342.783547pt;}
.ye0_c00278{bottom:343.242853pt;}
.ycd_c00278{bottom:359.988507pt;}
.yce_c00278{bottom:360.467963pt;}
.ycf_c00278{bottom:360.636277pt;}
.yd0_c00278{bottom:360.838725pt;}
.yd1_c00278{bottom:361.342192pt;}
.yd2_c00278{bottom:361.852757pt;}
.yd3_c00278{bottom:362.243851pt;}
.yd4_c00278{bottom:362.974053pt;}
.yd5_c00278{bottom:363.348939pt;}
.yc1_c00278{bottom:379.910747pt;}
.yc2_c00278{bottom:380.030107pt;}
.yc3_c00278{bottom:380.407195pt;}
.yc4_c00278{bottom:381.117957pt;}
.yc5_c00278{bottom:381.418453pt;}
.yc6_c00278{bottom:381.698853pt;}
.yc7_c00278{bottom:382.048795pt;}
.yc8_c00278{bottom:382.412773pt;}
.yc9_c00278{bottom:382.720112pt;}
.yca_c00278{bottom:383.133301pt;}
.ycb_c00278{bottom:383.500592pt;}
.ycc_c00278{bottom:383.695301pt;}
.yb6_c00278{bottom:400.310635pt;}
.yb7_c00278{bottom:400.715541pt;}
.yb8_c00278{bottom:401.215093pt;}
.yb9_c00278{bottom:401.705248pt;}
.yba_c00278{bottom:401.945376pt;}
.ybb_c00278{bottom:402.397269pt;}
.ybc_c00278{bottom:402.507264pt;}
.ybd_c00278{bottom:402.855595pt;}
.ybe_c00278{bottom:403.192272pt;}
.ybf_c00278{bottom:403.755611pt;}
.yc0_c00278{bottom:404.264885pt;}
.yac_c00278{bottom:420.230757pt;}
.yad_c00278{bottom:420.748539pt;}
.yae_c00278{bottom:421.337525pt;}
.yaf_c00278{bottom:422.126693pt;}
.yb0_c00278{bottom:422.306485pt;}
.yb1_c00278{bottom:422.528005pt;}
.yb2_c00278{bottom:422.945648pt;}
.yb3_c00278{bottom:423.271163pt;}
.yb4_c00278{bottom:423.661403pt;}
.yb5_c00278{bottom:424.305536pt;}
.ya1_c00278{bottom:439.430853pt;}
.ya2_c00278{bottom:439.867435pt;}
.ya3_c00278{bottom:440.660192pt;}
.ya4_c00278{bottom:441.350069pt;}
.ya5_c00278{bottom:441.675003pt;}
.ya6_c00278{bottom:442.589445pt;}
.ya7_c00278{bottom:442.861435pt;}
.ya8_c00278{bottom:443.192096pt;}
.ya9_c00278{bottom:443.925024pt;}
.yaa_c00278{bottom:444.268539pt;}
.yab_c00278{bottom:444.876165pt;}
.y96_c00278{bottom:460.793440pt;}
.y97_c00278{bottom:461.070480pt;}
.y98_c00278{bottom:461.549856pt;}
.y99_c00278{bottom:462.175947pt;}
.y9a_c00278{bottom:462.329616pt;}
.y9b_c00278{bottom:462.743989pt;}
.y9c_c00278{bottom:463.274656pt;}
.y9d_c00278{bottom:463.501488pt;}
.y9e_c00278{bottom:463.648059pt;}
.y9f_c00278{bottom:464.165509pt;}
.ya0_c00278{bottom:464.424923pt;}
.y8a_c00278{bottom:480.954965pt;}
.y8b_c00278{bottom:481.259696pt;}
.y8c_c00278{bottom:481.695824pt;}
.y8d_c00278{bottom:482.111061pt;}
.y8e_c00278{bottom:482.325339pt;}
.y8f_c00278{bottom:483.090645pt;}
.y90_c00278{bottom:483.359424pt;}
.y91_c00278{bottom:483.563403pt;}
.y92_c00278{bottom:484.065323pt;}
.y93_c00278{bottom:484.359872pt;}
.y94_c00278{bottom:484.507275pt;}
.y95_c00278{bottom:484.792725pt;}
.y7c_c00278{bottom:501.115493pt;}
.y7d_c00278{bottom:501.456405pt;}
.y7e_c00278{bottom:501.693973pt;}
.y7f_c00278{bottom:502.181392pt;}
.y80_c00278{bottom:502.649627pt;}
.y81_c00278{bottom:503.076965pt;}
.y82_c00278{bottom:503.184800pt;}
.y83_c00278{bottom:503.362512pt;}
.y84_c00278{bottom:503.698997pt;}
.y85_c00278{bottom:503.946368pt;}
.y86_c00278{bottom:504.406832pt;}
.y87_c00278{bottom:504.598613pt;}
.y88_c00278{bottom:504.755851pt;}
.y89_c00278{bottom:505.096651pt;}
.y72_c00278{bottom:520.797808pt;}
.y73_c00278{bottom:521.426091pt;}
.y74_c00278{bottom:521.711621pt;}
.y75_c00278{bottom:522.407925pt;}
.y76_c00278{bottom:523.261152pt;}
.y77_c00278{bottom:523.416837pt;}
.y78_c00278{bottom:523.744944pt;}
.y79_c00278{bottom:524.721019pt;}
.y7a_c00278{bottom:524.913909pt;}
.y7b_c00278{bottom:525.299659pt;}
.y68_c00278{bottom:540.719136pt;}
.y69_c00278{bottom:541.169941pt;}
.y6a_c00278{bottom:541.273861pt;}
.y6b_c00278{bottom:541.657168pt;}
.y6c_c00278{bottom:541.827141pt;}
.y6d_c00278{bottom:542.374704pt;}
.y6e_c00278{bottom:542.585269pt;}
.y6f_c00278{bottom:543.406085pt;}
.y70_c00278{bottom:543.723211pt;}
.y71_c00278{bottom:544.150325pt;}
.y5e_c00278{bottom:560.425333pt;}
.y5f_c00278{bottom:560.843013pt;}
.y60_c00278{bottom:561.263461pt;}
.y61_c00278{bottom:561.696117pt;}
.y62_c00278{bottom:562.317605pt;}
.y63_c00278{bottom:563.178661pt;}
.y64_c00278{bottom:563.397669pt;}
.y65_c00278{bottom:563.830229pt;}
.y66_c00278{bottom:564.888437pt;}
.y67_c00278{bottom:565.064789pt;}
.y57_c00278{bottom:587.521240pt;}
.y58_c00278{bottom:587.811653pt;}
.y59_c00278{bottom:588.182707pt;}
.y5a_c00278{bottom:588.985440pt;}
.y5b_c00278{bottom:589.428000pt;}
.y5c_c00278{bottom:589.811693pt;}
.y5d_c00278{bottom:590.203547pt;}
.y4d_c00278{bottom:608.125333pt;}
.y4e_c00278{bottom:608.707973pt;}
.y4f_c00278{bottom:608.954387pt;}
.y50_c00278{bottom:609.154867pt;}
.y51_c00278{bottom:609.598053pt;}
.y52_c00278{bottom:609.792440pt;}
.y53_c00278{bottom:610.246373pt;}
.y54_c00278{bottom:610.615733pt;}
.y55_c00278{bottom:611.441107pt;}
.y56_c00278{bottom:611.904093pt;}
.y43_c00278{bottom:636.480341pt;}
.y44_c00278{bottom:636.766624pt;}
.y45_c00278{bottom:637.066336pt;}
.y46_c00278{bottom:637.313931pt;}
.y47_c00278{bottom:637.836384pt;}
.y48_c00278{bottom:638.051253pt;}
.y49_c00278{bottom:638.310464pt;}
.y4a_c00278{bottom:638.891851pt;}
.y4b_c00278{bottom:638.903093pt;}
.y4c_c00278{bottom:639.189952pt;}
.y38_c00278{bottom:657.120917pt;}
.y39_c00278{bottom:657.393547pt;}
.y3a_c00278{bottom:657.693077pt;}
.y3b_c00278{bottom:657.858251pt;}
.y3c_c00278{bottom:658.441877pt;}
.y3d_c00278{bottom:658.653056pt;}
.y3e_c00278{bottom:658.942752pt;}
.y3f_c00278{bottom:659.177429pt;}
.y40_c00278{bottom:659.626752pt;}
.y41_c00278{bottom:659.807115pt;}
.y42_c00278{bottom:660.283040pt;}
.y2e_c00278{bottom:677.281835pt;}
.y2f_c00278{bottom:677.596832pt;}
.y30_c00278{bottom:678.102133pt;}
.y31_c00278{bottom:678.290496pt;}
.y32_c00278{bottom:678.784597pt;}
.y33_c00278{bottom:679.028491pt;}
.y34_c00278{bottom:679.588715pt;}
.y35_c00278{bottom:680.441547pt;}
.y36_c00278{bottom:680.584267pt;}
.y37_c00278{bottom:680.846048pt;}
.y22_c00278{bottom:697.442859pt;}
.y23_c00278{bottom:697.799947pt;}
.y24_c00278{bottom:697.972715pt;}
.y25_c00278{bottom:698.149397pt;}
.y26_c00278{bottom:698.606357pt;}
.y27_c00278{bottom:698.760000pt;}
.y28_c00278{bottom:698.992576pt;}
.y29_c00278{bottom:699.190112pt;}
.y2a_c00278{bottom:699.660480pt;}
.y2b_c00278{bottom:700.052224pt;}
.y2c_c00278{bottom:700.196203pt;}
.y2d_c00278{bottom:700.461184pt;}
.y15_c00278{bottom:717.840875pt;}
.y16_c00278{bottom:718.031179pt;}
.y17_c00278{bottom:718.207381pt;}
.y18_c00278{bottom:718.500160pt;}
.y19_c00278{bottom:718.743915pt;}
.y1a_c00278{bottom:719.016331pt;}
.y1b_c00278{bottom:719.303083pt;}
.y1c_c00278{bottom:719.456704pt;}
.y1d_c00278{bottom:719.571285pt;}
.y1e_c00278{bottom:719.864032pt;}
.y1f_c00278{bottom:720.275552pt;}
.y20_c00278{bottom:720.482571pt;}
.y21_c00278{bottom:720.716203pt;}
.ya_c00278{bottom:737.521333pt;}
.yb_c00278{bottom:738.105749pt;}
.yc_c00278{bottom:738.492896pt;}
.yd_c00278{bottom:738.734805pt;}
.ye_c00278{bottom:738.924896pt;}
.yf_c00278{bottom:739.069824pt;}
.y10_c00278{bottom:739.602688pt;}
.y11_c00278{bottom:739.781291pt;}
.y12_c00278{bottom:740.224811pt;}
.y13_c00278{bottom:740.518315pt;}
.y14_c00278{bottom:740.723744pt;}
.y6_c00278{bottom:777.926667pt;}
.y7_c00278{bottom:778.917907pt;}
.y8_c00278{bottom:779.486773pt;}
.y9_c00278{bottom:780.895240pt;}
.y3_c00278{bottom:806.400000pt;}
.y4_c00278{bottom:810.136157pt;}
.y5_c00278{bottom:810.482408pt;}
.y2_c00278{bottom:817.898667pt;}
.y1_c00278{bottom:850.680000pt;}
.h2_c00278{height:19.600000pt;}
.h4_c00278{height:28.935084pt;}
.h18_c00278{height:29.866667pt;}
.h14_c00278{height:42.003549pt;}
.h16_c00278{height:44.800000pt;}
.h15_c00278{height:45.733333pt;}
.h13_c00278{height:47.604022pt;}
.h10_c00278{height:53.203830pt;}
.h19_c00278{height:56.933333pt;}
.hf_c00278{height:57.870833pt;}
.he_c00278{height:58.804233pt;}
.h9_c00278{height:59.737634pt;}
.h7_c00278{height:60.668608pt;}
.hd_c00278{height:60.671035pt;}
.h6_c00278{height:61.601971pt;}
.ha_c00278{height:61.604435pt;}
.h11_c00278{height:62.533333pt;}
.hb_c00278{height:62.537836pt;}
.hc_c00278{height:63.471236pt;}
.h8_c00278{height:64.403220pt;}
.h12_c00278{height:84.933333pt;}
.h5_c00278{height:111.072220pt;}
.h17_c00278{height:156.822656pt;}
.h3_c00278{height:210.933333pt;}
.h1_c00278{height:893.333333pt;}
.h0_c00278{height:893.466667pt;}
.w0_c00278{width:624.480000pt;}
.w1_c00278{width:624.666667pt;}
.x0_c00278{left:0.000000pt;}
.x85_c00278{left:64.442805pt;}
.x3a_c00278{left:67.261024pt;}
.x59_c00278{left:68.768672pt;}
.x15_c00278{left:69.677003pt;}
.x1f_c00278{left:72.088331pt;}
.x2a_c00278{left:75.455157pt;}
.xa_c00278{left:76.410667pt;}
.x60_c00278{left:77.898341pt;}
.x89_c00278{left:78.830576pt;}
.x92_c00278{left:80.254080pt;}
.xaf_c00278{left:82.320000pt;}
.x2_c00278{left:91.920000pt;}
.xa4_c00278{left:93.822667pt;}
.x51_c00278{left:94.941333pt;}
.x16_c00278{left:96.798549pt;}
.x3b_c00278{left:103.046357pt;}
.x43_c00278{left:106.289333pt;}
.x4d_c00278{left:107.419467pt;}
.x74_c00278{left:108.342016pt;}
.x2b_c00278{left:110.496213pt;}
.x68_c00278{left:111.907301pt;}
.x5a_c00278{left:113.892427pt;}
.x20_c00278{left:116.724331pt;}
.x93_c00278{left:118.114080pt;}
.x17_c00278{left:121.990752pt;}
.x5b_c00278{left:124.219333pt;}
.x8a_c00278{left:126.786395pt;}
.x52_c00278{left:129.748000pt;}
.x94_c00278{left:130.654080pt;}
.x4e_c00278{left:131.660320pt;}
.x61_c00278{left:135.033696pt;}
.x21_c00278{left:138.320331pt;}
.x3c_c00278{left:140.510357pt;}
.x1_c00278{left:142.080000pt;}
.x8b_c00278{left:143.590795pt;}
.xa3_c00278{left:144.480000pt;}
.xb3_c00278{left:145.440000pt;}
.x32_c00278{left:147.688480pt;}
.xb_c00278{left:149.462667pt;}
.x6e_c00278{left:151.546101pt;}
.x95_c00278{left:152.596747pt;}
.xa5_c00278{left:154.780000pt;}
.x22_c00278{left:160.405664pt;}
.x75_c00278{left:161.625269pt;}
.x3_c00278{left:163.442667pt;}
.x44_c00278{left:164.553333pt;}
.x2c_c00278{left:166.658432pt;}
.x33_c00278{left:168.335147pt;}
.x3d_c00278{left:171.459691pt;}
.xb1_c00278{left:174.674667pt;}
.x6_c00278{left:175.597333pt;}
.x7c_c00278{left:177.971435pt;}
.x5c_c00278{left:179.660677pt;}
.xa2_c00278{left:181.680000pt;}
.x69_c00278{left:184.435712pt;}
.x2d_c00278{left:187.536928pt;}
.x45_c00278{left:189.194667pt;}
.x6f_c00278{left:193.039093pt;}
.x9c_c00278{left:196.470587pt;}
.xc_c00278{left:197.856000pt;}
.x96_c00278{left:198.870080pt;}
.x53_c00278{left:200.840000pt;}
.x46_c00278{left:209.242667pt;}
.x70_c00278{left:214.451605pt;}
.x80_c00278{left:215.633744pt;}
.x9d_c00278{left:216.631920pt;}
.x23_c00278{left:217.525664pt;}
.xa6_c00278{left:220.173333pt;}
.x62_c00278{left:224.298768pt;}
.xd_c00278{left:228.094667pt;}
.x4f_c00278{left:229.570373pt;}
.x6a_c00278{left:231.234165pt;}
.x5d_c00278{left:234.403323pt;}
.x8d_c00278{left:236.055104pt;}
.x18_c00278{left:237.443669pt;}
.x81_c00278{left:239.644987pt;}
.x34_c00278{left:241.288480pt;}
.x2e_c00278{left:242.465824pt;}
.xa1_c00278{left:244.329648pt;}
.x76_c00278{left:248.275056pt;}
.x7d_c00278{left:249.736299pt;}
.xe_c00278{left:251.856000pt;}
.x47_c00278{left:253.561333pt;}
.x5e_c00278{left:255.506501pt;}
.xb4_c00278{left:259.920000pt;}
.x3e_c00278{left:263.625024pt;}
.x24_c00278{left:265.802997pt;}
.x35_c00278{left:267.685813pt;}
.xf_c00278{left:269.972000pt;}
.x48_c00278{left:273.000000pt;}
.x7_c00278{left:274.721333pt;}
.x19_c00278{left:278.454667pt;}
.x6b_c00278{left:284.722112pt;}
.x7e_c00278{left:286.179397pt;}
.x8e_c00278{left:289.099728pt;}
.x25_c00278{left:290.494997pt;}
.xb0_c00278{left:292.800000pt;}
.x77_c00278{left:294.363387pt;}
.x3f_c00278{left:296.026357pt;}
.x50_c00278{left:298.461000pt;}
.x1a_c00278{left:300.324171pt;}
.x63_c00278{left:301.846363pt;}
.x36_c00278{left:303.897813pt;}
.xb5_c00278{left:307.200000pt;}
.x9e_c00278{left:310.953253pt;}
.x7a_c00278{left:312.395803pt;}
.x86_c00278{left:314.728821pt;}
.x1b_c00278{left:316.646965pt;}
.x49_c00278{left:318.393333pt;}
.x54_c00278{left:324.385333pt;}
.x97_c00278{left:326.752747pt;}
.x82_c00278{left:330.609829pt;}
.x8_c00278{left:331.608000pt;}
.x37_c00278{left:333.232480pt;}
.x10_c00278{left:336.580000pt;}
.x5f_c00278{left:337.576469pt;}
.xa7_c00278{left:341.178667pt;}
.x55_c00278{left:342.636000pt;}
.xab_c00278{left:344.325851pt;}
.x64_c00278{left:345.829557pt;}
.x8f_c00278{left:348.348432pt;}
.x26_c00278{left:349.290997pt;}
.x78_c00278{left:353.365515pt;}
.x4a_c00278{left:355.329333pt;}
.xac_c00278{left:356.331737pt;}
.x11_c00278{left:358.905333pt;}
.x6c_c00278{left:360.854603pt;}
.x9f_c00278{left:361.846587pt;}
.x83_c00278{left:364.222629pt;}
.x40_c00278{left:368.699691pt;}
.x41_c00278{left:370.105024pt;}
.xad_c00278{left:371.212100pt;}
.xa8_c00278{left:374.801333pt;}
.x8c_c00278{left:377.411077pt;}
.x56_c00278{left:378.682667pt;}
.x90_c00278{left:384.586197pt;}
.x87_c00278{left:386.774549pt;}
.x71_c00278{left:388.454448pt;}
.x38_c00278{left:389.397813pt;}
.x79_c00278{left:394.928352pt;}
.x98_c00278{left:396.164747pt;}
.x27_c00278{left:398.258997pt;}
.x42_c00278{left:405.962357pt;}
.x6d_c00278{left:406.894373pt;}
.x39_c00278{left:411.943147pt;}
.x12_c00278{left:414.345333pt;}
.x28_c00278{left:416.256331pt;}
.x1c_c00278{left:417.181099pt;}
.x84_c00278{left:420.613323pt;}
.x88_c00278{left:423.494096pt;}
.x2f_c00278{left:426.583019pt;}
.xb2_c00278{left:430.820000pt;}
.x72_c00278{left:432.618171pt;}
.x65_c00278{left:434.614629pt;}
.x4b_c00278{left:437.866667pt;}
.xae_c00278{left:439.377013pt;}
.x30_c00278{left:442.422891pt;}
.x99_c00278{left:443.684747pt;}
.x1d_c00278{left:446.725333pt;}
.x7f_c00278{left:447.753333pt;}
.x29_c00278{left:449.378997pt;}
.x13_c00278{left:451.033333pt;}
.x66_c00278{left:452.133504pt;}
.xa9_c00278{left:453.265333pt;}
.x91_c00278{left:455.392379pt;}
.xa0_c00278{left:457.606587pt;}
.x73_c00278{left:461.184192pt;}
.x57_c00278{left:466.866667pt;}
.x31_c00278{left:471.478656pt;}
.x9_c00278{left:472.454667pt;}
.xaa_c00278{left:475.230667pt;}
.x14_c00278{left:476.712000pt;}
.x9a_c00278{left:478.719413pt;}
.x1e_c00278{left:480.096267pt;}
.x58_c00278{left:481.562667pt;}
.x4c_c00278{left:484.165333pt;}
.x67_c00278{left:487.168587pt;}
.x7b_c00278{left:488.287024pt;}
.x9b_c00278{left:493.144747pt;}
.x4_c00278{left:503.093333pt;}
.x5_c00278{left:534.570667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m3_c00279{transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);}
.m61_c00279{transform:matrix(0.073536,0.000735,-0.002500,0.249988,0,0);-ms-transform:matrix(0.073536,0.000735,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.073536,0.000735,-0.002500,0.249988,0,0);}
.mbb_c00279{transform:matrix(0.088189,0.001411,-0.003999,0.249968,0,0);-ms-transform:matrix(0.088189,0.001411,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.088189,0.001411,-0.003999,0.249968,0,0);}
.mf3_c00279{transform:matrix(0.096208,0.001539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.096208,0.001539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.096208,0.001539,-0.003999,0.249968,0,0);}
.m11f_c00279{transform:matrix(0.121830,0.001096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.121830,0.001096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.121830,0.001096,-0.002250,0.249990,0,0);}
.m11a_c00279{transform:matrix(0.128285,0.001155,-0.002250,0.249990,0,0);-ms-transform:matrix(0.128285,0.001155,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.128285,0.001155,-0.002250,0.249990,0,0);}
.m121_c00279{transform:matrix(0.131765,0.001186,-0.002250,0.249990,0,0);-ms-transform:matrix(0.131765,0.001186,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.131765,0.001186,-0.002250,0.249990,0,0);}
.m11e_c00279{transform:matrix(0.133185,0.001199,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133185,0.001199,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133185,0.001199,-0.002250,0.249990,0,0);}
.m123_c00279{transform:matrix(0.133700,0.001203,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133700,0.001203,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133700,0.001203,-0.002250,0.249990,0,0);}
.m81_c00279{transform:matrix(0.134288,0.002149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134288,0.002149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134288,0.002149,-0.003999,0.249968,0,0);}
.m10c_c00279{transform:matrix(0.137660,0.002891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.137660,0.002891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.137660,0.002891,-0.005249,0.249945,0,0);}
.m2a_c00279{transform:matrix(0.139216,0.001114,-0.002000,0.249992,0,0);-ms-transform:matrix(0.139216,0.001114,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.139216,0.001114,-0.002000,0.249992,0,0);}
.m88_c00279{transform:matrix(0.139947,0.002239,-0.003999,0.249968,0,0);-ms-transform:matrix(0.139947,0.002239,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.139947,0.002239,-0.003999,0.249968,0,0);}
.m11b_c00279{transform:matrix(0.141699,0.001275,-0.002250,0.249990,0,0);-ms-transform:matrix(0.141699,0.001275,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.141699,0.001275,-0.002250,0.249990,0,0);}
.m122_c00279{transform:matrix(0.141879,0.001277,-0.002250,0.249990,0,0);-ms-transform:matrix(0.141879,0.001277,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.141879,0.001277,-0.002250,0.249990,0,0);}
.m8f_c00279{transform:matrix(0.145526,0.002328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145526,0.002328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145526,0.002328,-0.003999,0.249968,0,0);}
.m68_c00279{transform:matrix(0.146813,0.001468,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146813,0.001468,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146813,0.001468,-0.002500,0.249988,0,0);}
.m5_c00279{transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149060,0.000000,0.000000,0.250000,0,0);}
.m7b_c00279{transform:matrix(0.149713,0.001497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149713,0.001497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149713,0.001497,-0.002500,0.249988,0,0);}
.mf9_c00279{transform:matrix(0.149731,0.002396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149731,0.002396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149731,0.002396,-0.003999,0.249968,0,0);}
.me9_c00279{transform:matrix(0.149951,0.002399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149951,0.002399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149951,0.002399,-0.003999,0.249968,0,0);}
.m1d_c00279{transform:matrix(0.150745,0.001206,-0.002000,0.249992,0,0);-ms-transform:matrix(0.150745,0.001206,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.150745,0.001206,-0.002000,0.249992,0,0);}
.m113_c00279{transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);}
.m11d_c00279{transform:matrix(0.152814,0.001375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152814,0.001375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152814,0.001375,-0.002250,0.249990,0,0);}
.mc1_c00279{transform:matrix(0.153540,0.002457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153540,0.002457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153540,0.002457,-0.003999,0.249968,0,0);}
.ma9_c00279{transform:matrix(0.154110,0.002466,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154110,0.002466,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154110,0.002466,-0.003999,0.249968,0,0);}
.m13_c00279{transform:matrix(0.154280,0.001234,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154280,0.001234,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154280,0.001234,-0.002000,0.249992,0,0);}
.mfc_c00279{transform:matrix(0.154280,0.002468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154280,0.002468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154280,0.002468,-0.003999,0.249968,0,0);}
.m12e_c00279{transform:matrix(0.155038,0.004031,-0.006498,0.249916,0,0);-ms-transform:matrix(0.155038,0.004031,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.155038,0.004031,-0.006498,0.249916,0,0);}
.mfd_c00279{transform:matrix(0.155275,0.002484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155275,0.002484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155275,0.002484,-0.003999,0.249968,0,0);}
.mb_c00279{transform:matrix(0.155360,0.001243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155360,0.001243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155360,0.001243,-0.002000,0.249992,0,0);}
.m105_c00279{transform:matrix(0.155890,0.003741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155890,0.003741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155890,0.003741,-0.005998,0.249928,0,0);}
.m7c_c00279{transform:matrix(0.156027,0.001560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156027,0.001560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156027,0.001560,-0.002500,0.249988,0,0);}
.m5d_c00279{transform:matrix(0.156332,0.001563,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156332,0.001563,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156332,0.001563,-0.002500,0.249988,0,0);}
.m6e_c00279{transform:matrix(0.156622,0.001566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156622,0.001566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156622,0.001566,-0.002500,0.249988,0,0);}
.m21_c00279{transform:matrix(0.156835,0.001255,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156835,0.001255,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156835,0.001255,-0.002000,0.249992,0,0);}
.mc0_c00279{transform:matrix(0.157015,0.002512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157015,0.002512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157015,0.002512,-0.003999,0.249968,0,0);}
.mc4_c00279{transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157215,0.002515,-0.003999,0.249968,0,0);}
.mb1_c00279{transform:matrix(0.157820,0.002525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157820,0.002525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157820,0.002525,-0.003999,0.249968,0,0);}
.m7_c00279{transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);}
.mcc_c00279{transform:matrix(0.157990,0.002528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157990,0.002528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157990,0.002528,-0.003999,0.249968,0,0);}
.mc7_c00279{transform:matrix(0.160954,0.002575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160954,0.002575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160954,0.002575,-0.003999,0.249968,0,0);}
.m2c_c00279{transform:matrix(0.161067,0.001611,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161067,0.001611,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161067,0.001611,-0.002500,0.249988,0,0);}
.m17_c00279{transform:matrix(0.161420,0.001291,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161420,0.001291,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161420,0.001291,-0.002000,0.249992,0,0);}
.m11c_c00279{transform:matrix(0.161798,0.001456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161798,0.001456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161798,0.001456,-0.002250,0.249990,0,0);}
.m79_c00279{transform:matrix(0.162652,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162652,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162652,0.001627,-0.002500,0.249988,0,0);}
.m118_c00279{transform:matrix(0.162979,0.003423,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162979,0.003423,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162979,0.003423,-0.005249,0.249945,0,0);}
.m85_c00279{transform:matrix(0.162989,0.002608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162989,0.002608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162989,0.002608,-0.003999,0.249968,0,0);}
.m83_c00279{transform:matrix(0.163299,0.002613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163299,0.002613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163299,0.002613,-0.003999,0.249968,0,0);}
.mdb_c00279{transform:matrix(0.163719,0.002620,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163719,0.002620,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163719,0.002620,-0.003999,0.249968,0,0);}
.mf1_c00279{transform:matrix(0.163964,0.002623,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163964,0.002623,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163964,0.002623,-0.003999,0.249968,0,0);}
.m10_c00279{transform:matrix(0.164050,0.001312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164050,0.001312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164050,0.001312,-0.002000,0.249992,0,0);}
.md9_c00279{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);}
.m2b_c00279{transform:matrix(0.164537,0.001645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164537,0.001645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164537,0.001645,-0.002500,0.249988,0,0);}
.m6b_c00279{transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);}
.mca_c00279{transform:matrix(0.164789,0.002637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164789,0.002637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164789,0.002637,-0.003999,0.249968,0,0);}
.mda_c00279{transform:matrix(0.165254,0.002644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165254,0.002644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165254,0.002644,-0.003999,0.249968,0,0);}
.mec_c00279{transform:matrix(0.165884,0.002654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165884,0.002654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165884,0.002654,-0.003999,0.249968,0,0);}
.m4b_c00279{transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);}
.mb8_c00279{transform:matrix(0.166029,0.002656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166029,0.002656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166029,0.002656,-0.003999,0.249968,0,0);}
.m15_c00279{transform:matrix(0.166510,0.001332,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166510,0.001332,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166510,0.001332,-0.002000,0.249992,0,0);}
.m70_c00279{transform:matrix(0.167442,0.001674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167442,0.001674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167442,0.001674,-0.002500,0.249988,0,0);}
.m95_c00279{transform:matrix(0.167559,0.002681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167559,0.002681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167559,0.002681,-0.003999,0.249968,0,0);}
.mf_c00279{transform:matrix(0.168205,0.001346,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168205,0.001346,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168205,0.001346,-0.002000,0.249992,0,0);}
.mde_c00279{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);}
.m76_c00279{transform:matrix(0.168902,0.001689,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168902,0.001689,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168902,0.001689,-0.002500,0.249988,0,0);}
.maa_c00279{transform:matrix(0.168983,0.002704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168983,0.002704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168983,0.002704,-0.003999,0.249968,0,0);}
.m37_c00279{transform:matrix(0.169092,0.001691,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169092,0.001691,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169092,0.001691,-0.002500,0.249988,0,0);}
.m62_c00279{transform:matrix(0.169372,0.001694,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169372,0.001694,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169372,0.001694,-0.002500,0.249988,0,0);}
.m25_c00279{transform:matrix(0.169385,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169385,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169385,0.001355,-0.002000,0.249992,0,0);}
.m91_c00279{transform:matrix(0.169388,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169388,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169388,0.002710,-0.003999,0.249968,0,0);}
.mc8_c00279{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);}
.m1f_c00279{transform:matrix(0.169785,0.001358,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169785,0.001358,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169785,0.001358,-0.002000,0.249992,0,0);}
.m8b_c00279{transform:matrix(0.170063,0.002721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170063,0.002721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170063,0.002721,-0.003999,0.249968,0,0);}
.m65_c00279{transform:matrix(0.170461,0.001705,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170461,0.001705,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170461,0.001705,-0.002500,0.249988,0,0);}
.m78_c00279{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);}
.m1e_c00279{transform:matrix(0.171450,0.001372,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171450,0.001372,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171450,0.001372,-0.002000,0.249992,0,0);}
.m10d_c00279{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);}
.mbf_c00279{transform:matrix(0.171808,0.002749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171808,0.002749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171808,0.002749,-0.003999,0.249968,0,0);}
.m130_c00279{transform:matrix(0.172662,0.004489,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172662,0.004489,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172662,0.004489,-0.006498,0.249916,0,0);}
.m10f_c00279{transform:matrix(0.172752,0.003628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172752,0.003628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172752,0.003628,-0.005249,0.249945,0,0);}
.m55_c00279{transform:matrix(0.172846,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172846,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172846,0.001728,-0.002500,0.249988,0,0);}
.m57_c00279{transform:matrix(0.172861,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172861,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172861,0.001729,-0.002500,0.249988,0,0);}
.mff_c00279{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);}
.m120_c00279{transform:matrix(0.173368,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173368,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173368,0.001560,-0.002250,0.249990,0,0);}
.m6c_c00279{transform:matrix(0.173831,0.001738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173831,0.001738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173831,0.001738,-0.002500,0.249988,0,0);}
.mee_c00279{transform:matrix(0.173943,0.002783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173943,0.002783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173943,0.002783,-0.003999,0.249968,0,0);}
.m39_c00279{transform:matrix(0.174136,0.001741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174136,0.001741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174136,0.001741,-0.002500,0.249988,0,0);}
.m38_c00279{transform:matrix(0.174191,0.001742,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174191,0.001742,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174191,0.001742,-0.002500,0.249988,0,0);}
.m3e_c00279{transform:matrix(0.174416,0.001744,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174416,0.001744,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174416,0.001744,-0.002500,0.249988,0,0);}
.mb9_c00279{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);}
.m4a_c00279{transform:matrix(0.174821,0.001748,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174821,0.001748,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174821,0.001748,-0.002500,0.249988,0,0);}
.md3_c00279{transform:matrix(0.174858,0.002798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174858,0.002798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174858,0.002798,-0.003999,0.249968,0,0);}
.m14_c00279{transform:matrix(0.175019,0.001400,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175019,0.001400,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175019,0.001400,-0.002000,0.249992,0,0);}
.md_c00279{transform:matrix(0.175219,0.001402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175219,0.001402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175219,0.001402,-0.002000,0.249992,0,0);}
.mb3_c00279{transform:matrix(0.175398,0.002806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175398,0.002806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175398,0.002806,-0.003999,0.249968,0,0);}
.mac_c00279{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);}
.m90_c00279{transform:matrix(0.176637,0.002826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176637,0.002826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176637,0.002826,-0.003999,0.249968,0,0);}
.m9_c00279{transform:matrix(0.176854,0.001415,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176854,0.001415,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176854,0.001415,-0.002000,0.249992,0,0);}
.mdd_c00279{transform:matrix(0.177017,0.002832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177017,0.002832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177017,0.002832,-0.003999,0.249968,0,0);}
.m6d_c00279{transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177256,0.001773,-0.002500,0.249988,0,0);}
.mdc_c00279{transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177837,0.002845,-0.003999,0.249968,0,0);}
.mf5_c00279{transform:matrix(0.178032,0.002849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178032,0.002849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178032,0.002849,-0.003999,0.249968,0,0);}
.m77_c00279{transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);}
.m5a_c00279{transform:matrix(0.178131,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178131,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178131,0.001781,-0.002500,0.249988,0,0);}
.m129_c00279{transform:matrix(0.178400,0.004638,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178400,0.004638,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178400,0.004638,-0.006498,0.249916,0,0);}
.mbd_c00279{transform:matrix(0.178402,0.002854,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178402,0.002854,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178402,0.002854,-0.003999,0.249968,0,0);}
.m11_c00279{transform:matrix(0.178494,0.001428,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178494,0.001428,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178494,0.001428,-0.002000,0.249992,0,0);}
.md0_c00279{transform:matrix(0.178557,0.002857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178557,0.002857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178557,0.002857,-0.003999,0.249968,0,0);}
.m32_c00279{transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);}
.mf8_c00279{transform:matrix(0.178747,0.002860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178747,0.002860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178747,0.002860,-0.003999,0.249968,0,0);}
.m33_c00279{transform:matrix(0.178856,0.001789,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178856,0.001789,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178856,0.001789,-0.002500,0.249988,0,0);}
.m7f_c00279{transform:matrix(0.179527,0.002872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179527,0.002872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179527,0.002872,-0.003999,0.249968,0,0);}
.m3a_c00279{transform:matrix(0.179961,0.001800,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179961,0.001800,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179961,0.001800,-0.002500,0.249988,0,0);}
.mc_c00279{transform:matrix(0.180564,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180564,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180564,0.001445,-0.002000,0.249992,0,0);}
.m50_c00279{transform:matrix(0.181361,0.001814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181361,0.001814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181361,0.001814,-0.002500,0.249988,0,0);}
.me_c00279{transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);}
.m6f_c00279{transform:matrix(0.181471,0.001815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181471,0.001815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181471,0.001815,-0.002500,0.249988,0,0);}
.m3d_c00279{transform:matrix(0.181496,0.001815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181496,0.001815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181496,0.001815,-0.002500,0.249988,0,0);}
.m16_c00279{transform:matrix(0.181764,0.001454,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181764,0.001454,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181764,0.001454,-0.002000,0.249992,0,0);}
.m19_c00279{transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181959,0.001456,-0.002000,0.249992,0,0);}
.m1a_c00279{transform:matrix(0.182029,0.001456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182029,0.001456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182029,0.001456,-0.002000,0.249992,0,0);}
.m4d_c00279{transform:matrix(0.182776,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182776,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182776,0.001828,-0.002500,0.249988,0,0);}
.m42_c00279{transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);}
.m12d_c00279{transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);}
.mcb_c00279{transform:matrix(0.183791,0.002941,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183791,0.002941,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183791,0.002941,-0.003999,0.249968,0,0);}
.ma3_c00279{transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183971,0.002944,-0.003999,0.249968,0,0);}
.m26_c00279{transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184519,0.001476,-0.002000,0.249992,0,0);}
.m8e_c00279{transform:matrix(0.184576,0.002953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184576,0.002953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184576,0.002953,-0.003999,0.249968,0,0);}
.ma_c00279{transform:matrix(0.185219,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185219,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185219,0.001482,-0.002000,0.249992,0,0);}
.m60_c00279{transform:matrix(0.185326,0.001853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185326,0.001853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185326,0.001853,-0.002500,0.249988,0,0);}
.mc5_c00279{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);}
.m46_c00279{transform:matrix(0.185366,0.001854,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185366,0.001854,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185366,0.001854,-0.002500,0.249988,0,0);}
.m112_c00279{transform:matrix(0.185529,0.003896,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185529,0.003896,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185529,0.003896,-0.005249,0.249945,0,0);}
.m12a_c00279{transform:matrix(0.185547,0.004824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185547,0.004824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185547,0.004824,-0.006498,0.249916,0,0);}
.maf_c00279{transform:matrix(0.185586,0.002969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185586,0.002969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185586,0.002969,-0.003999,0.249968,0,0);}
.m110_c00279{transform:matrix(0.185699,0.003900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185699,0.003900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185699,0.003900,-0.005249,0.249945,0,0);}
.m20_c00279{transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185939,0.001488,-0.002000,0.249992,0,0);}
.m92_c00279{transform:matrix(0.186111,0.002978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186111,0.002978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186111,0.002978,-0.003999,0.249968,0,0);}
.m87_c00279{transform:matrix(0.186711,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186711,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186711,0.002987,-0.003999,0.249968,0,0);}
.m10b_c00279{transform:matrix(0.186716,0.004481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186716,0.004481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186716,0.004481,-0.005998,0.249928,0,0);}
.mfa_c00279{transform:matrix(0.187201,0.002995,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187201,0.002995,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187201,0.002995,-0.003999,0.249968,0,0);}
.mcf_c00279{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);}
.m1_c00279{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);}
.m12_c00279{transform:matrix(0.187739,0.001502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187739,0.001502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187739,0.001502,-0.002000,0.249992,0,0);}
.m41_c00279{transform:matrix(0.187951,0.001880,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187951,0.001880,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187951,0.001880,-0.002500,0.249988,0,0);}
.m93_c00279{transform:matrix(0.188091,0.003009,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188091,0.003009,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188091,0.003009,-0.003999,0.249968,0,0);}
.m49_c00279{transform:matrix(0.188466,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188466,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188466,0.001885,-0.002500,0.249988,0,0);}
.md1_c00279{transform:matrix(0.188491,0.003016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188491,0.003016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188491,0.003016,-0.003999,0.249968,0,0);}
.mf0_c00279{transform:matrix(0.188496,0.003016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188496,0.003016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188496,0.003016,-0.003999,0.249968,0,0);}
.m111_c00279{transform:matrix(0.188543,0.003959,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188543,0.003959,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188543,0.003959,-0.005249,0.249945,0,0);}
.m2e_c00279{transform:matrix(0.188796,0.001888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188796,0.001888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188796,0.001888,-0.002500,0.249988,0,0);}
.mbc_c00279{transform:matrix(0.189051,0.003025,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189051,0.003025,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189051,0.003025,-0.003999,0.249968,0,0);}
.ma5_c00279{transform:matrix(0.189126,0.003026,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189126,0.003026,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189126,0.003026,-0.003999,0.249968,0,0);}
.m56_c00279{transform:matrix(0.189216,0.001892,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189216,0.001892,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189216,0.001892,-0.002500,0.249988,0,0);}
.m58_c00279{transform:matrix(0.189411,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189411,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189411,0.001894,-0.002500,0.249988,0,0);}
.mba_c00279{transform:matrix(0.190356,0.003046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190356,0.003046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190356,0.003046,-0.003999,0.249968,0,0);}
.m114_c00279{transform:matrix(0.190528,0.004001,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190528,0.004001,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190528,0.004001,-0.005249,0.249945,0,0);}
.m53_c00279{transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);}
.me4_c00279{transform:matrix(0.191061,0.003057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191061,0.003057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191061,0.003057,-0.003999,0.249968,0,0);}
.mb6_c00279{transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);}
.m97_c00279{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);}
.mb7_c00279{transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);}
.m45_c00279{transform:matrix(0.193840,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193840,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193840,0.001938,-0.002500,0.249988,0,0);}
.mc9_c00279{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);}
.md4_c00279{transform:matrix(0.194050,0.003105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194050,0.003105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194050,0.003105,-0.003999,0.249968,0,0);}
.mf4_c00279{transform:matrix(0.194300,0.003109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194300,0.003109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194300,0.003109,-0.003999,0.249968,0,0);}
.m10a_c00279{transform:matrix(0.194404,0.004666,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194404,0.004666,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194404,0.004666,-0.005998,0.249928,0,0);}
.ma2_c00279{transform:matrix(0.194750,0.003116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194750,0.003116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194750,0.003116,-0.003999,0.249968,0,0);}
.m4_c00279{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);}
.m12b_c00279{transform:matrix(0.194854,0.005066,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194854,0.005066,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194854,0.005066,-0.006498,0.249916,0,0);}
.m63_c00279{transform:matrix(0.195085,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195085,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195085,0.001951,-0.002500,0.249988,0,0);}
.mce_c00279{transform:matrix(0.195595,0.003130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195595,0.003130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195595,0.003130,-0.003999,0.249968,0,0);}
.m1b_c00279{transform:matrix(0.195704,0.001566,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195704,0.001566,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195704,0.001566,-0.002000,0.249992,0,0);}
.m84_c00279{transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);}
.ma4_c00279{transform:matrix(0.196750,0.003148,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196750,0.003148,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196750,0.003148,-0.003999,0.249968,0,0);}
.me6_c00279{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);}
.m12c_c00279{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);}
.mfb_c00279{transform:matrix(0.197690,0.003163,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197690,0.003163,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197690,0.003163,-0.003999,0.249968,0,0);}
.me5_c00279{transform:matrix(0.198010,0.003168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198010,0.003168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198010,0.003168,-0.003999,0.249968,0,0);}
.m2d_c00279{transform:matrix(0.198355,0.001984,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198355,0.001984,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198355,0.001984,-0.002500,0.249988,0,0);}
.mfe_c00279{transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198955,0.003183,-0.003999,0.249968,0,0);}
.mb5_c00279{transform:matrix(0.198980,0.003184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198980,0.003184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198980,0.003184,-0.003999,0.249968,0,0);}
.m128_c00279{transform:matrix(0.199218,0.005180,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199218,0.005180,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199218,0.005180,-0.006498,0.249916,0,0);}
.m131_c00279{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);}
.m6_c00279{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);}
.mc3_c00279{transform:matrix(0.199504,0.003192,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199504,0.003192,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199504,0.003192,-0.003999,0.249968,0,0);}
.med_c00279{transform:matrix(0.200374,0.003206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200374,0.003206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200374,0.003206,-0.003999,0.249968,0,0);}
.m67_c00279{transform:matrix(0.200455,0.002005,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200455,0.002005,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200455,0.002005,-0.002500,0.249988,0,0);}
.m115_c00279{transform:matrix(0.200486,0.004210,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200486,0.004210,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200486,0.004210,-0.005249,0.249945,0,0);}
.m75_c00279{transform:matrix(0.200600,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200600,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200600,0.002006,-0.002500,0.249988,0,0);}
.mab_c00279{transform:matrix(0.200774,0.003212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200774,0.003212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200774,0.003212,-0.003999,0.249968,0,0);}
.m4e_c00279{transform:matrix(0.201175,0.002012,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201175,0.002012,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201175,0.002012,-0.002500,0.249988,0,0);}
.md8_c00279{transform:matrix(0.203029,0.003248,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203029,0.003248,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203029,0.003248,-0.003999,0.249968,0,0);}
.m103_c00279{transform:matrix(0.203671,0.004888,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203671,0.004888,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203671,0.004888,-0.005998,0.249928,0,0);}
.m8c_c00279{transform:matrix(0.203804,0.003261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203804,0.003261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203804,0.003261,-0.003999,0.249968,0,0);}
.mf2_c00279{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);}
.mb2_c00279{transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);}
.mf7_c00279{transform:matrix(0.204774,0.003276,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204774,0.003276,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204774,0.003276,-0.003999,0.249968,0,0);}
.m82_c00279{transform:matrix(0.205089,0.003281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205089,0.003281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205089,0.003281,-0.003999,0.249968,0,0);}
.m24_c00279{transform:matrix(0.205253,0.001642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205253,0.001642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205253,0.001642,-0.002000,0.249992,0,0);}
.m5c_c00279{transform:matrix(0.206175,0.002062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206175,0.002062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206175,0.002062,-0.002500,0.249988,0,0);}
.m7e_c00279{transform:matrix(0.206319,0.003301,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206319,0.003301,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206319,0.003301,-0.003999,0.249968,0,0);}
.mcd_c00279{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);}
.mc2_c00279{transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);}
.m80_c00279{transform:matrix(0.206464,0.003303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206464,0.003303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206464,0.003303,-0.003999,0.249968,0,0);}
.m106_c00279{transform:matrix(0.206770,0.004962,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206770,0.004962,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206770,0.004962,-0.005998,0.249928,0,0);}
.me8_c00279{transform:matrix(0.206819,0.003309,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206819,0.003309,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206819,0.003309,-0.003999,0.249968,0,0);}
.m0_c00279{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);}
.mf6_c00279{transform:matrix(0.207318,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207318,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207318,0.003317,-0.003999,0.249968,0,0);}
.ma8_c00279{transform:matrix(0.207838,0.003325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207838,0.003325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207838,0.003325,-0.003999,0.249968,0,0);}
.m5b_c00279{transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208155,0.002082,-0.002500,0.249988,0,0);}
.mb4_c00279{transform:matrix(0.208363,0.003334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208363,0.003334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208363,0.003334,-0.003999,0.249968,0,0);}
.me0_c00279{transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208618,0.003338,-0.003999,0.249968,0,0);}
.m2_c00279{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m9e_c00279{transform:matrix(0.208868,0.003342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208868,0.003342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208868,0.003342,-0.003999,0.249968,0,0);}
.m5f_c00279{transform:matrix(0.208950,0.002089,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208950,0.002089,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208950,0.002089,-0.002500,0.249988,0,0);}
.m10e_c00279{transform:matrix(0.209229,0.004394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209229,0.004394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209229,0.004394,-0.005249,0.249945,0,0);}
.meb_c00279{transform:matrix(0.209668,0.003355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209668,0.003355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209668,0.003355,-0.003999,0.249968,0,0);}
.m101_c00279{transform:matrix(0.210144,0.005043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210144,0.005043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210144,0.005043,-0.005998,0.249928,0,0);}
.md2_c00279{transform:matrix(0.210163,0.003363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210163,0.003363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210163,0.003363,-0.003999,0.249968,0,0);}
.mdf_c00279{transform:matrix(0.210993,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210993,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210993,0.003376,-0.003999,0.249968,0,0);}
.m3f_c00279{transform:matrix(0.211209,0.002112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211209,0.002112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211209,0.002112,-0.002500,0.249988,0,0);}
.m102_c00279{transform:matrix(0.211404,0.005074,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211404,0.005074,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211404,0.005074,-0.005998,0.249928,0,0);}
.m52_c00279{transform:matrix(0.211669,0.002117,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211669,0.002117,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211669,0.002117,-0.002500,0.249988,0,0);}
.m30_c00279{transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);}
.me2_c00279{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);}
.m96_c00279{transform:matrix(0.212263,0.003396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212263,0.003396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212263,0.003396,-0.003999,0.249968,0,0);}
.m2f_c00279{transform:matrix(0.213524,0.002135,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213524,0.002135,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213524,0.002135,-0.002500,0.249988,0,0);}
.m48_c00279{transform:matrix(0.214479,0.002145,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214479,0.002145,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214479,0.002145,-0.002500,0.249988,0,0);}
.m126_c00279{transform:matrix(0.214967,0.005589,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214967,0.005589,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214967,0.005589,-0.006498,0.249916,0,0);}
.mad_c00279{transform:matrix(0.215227,0.003444,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215227,0.003444,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215227,0.003444,-0.003999,0.249968,0,0);}
.m44_c00279{transform:matrix(0.215664,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215664,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215664,0.002157,-0.002500,0.249988,0,0);}
.m109_c00279{transform:matrix(0.215843,0.005180,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215843,0.005180,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215843,0.005180,-0.005998,0.249928,0,0);}
.m5e_c00279{transform:matrix(0.216154,0.002162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216154,0.002162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216154,0.002162,-0.002500,0.249988,0,0);}
.mbe_c00279{transform:matrix(0.217152,0.003474,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217152,0.003474,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217152,0.003474,-0.003999,0.249968,0,0);}
.m104_c00279{transform:matrix(0.217557,0.005221,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217557,0.005221,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217557,0.005221,-0.005998,0.249928,0,0);}
.m94_c00279{transform:matrix(0.217812,0.003485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217812,0.003485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217812,0.003485,-0.003999,0.249968,0,0);}
.m73_c00279{transform:matrix(0.218064,0.002181,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218064,0.002181,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218064,0.002181,-0.002500,0.249988,0,0);}
.m86_c00279{transform:matrix(0.218502,0.003496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218502,0.003496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218502,0.003496,-0.003999,0.249968,0,0);}
.mef_c00279{transform:matrix(0.218707,0.003499,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218707,0.003499,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218707,0.003499,-0.003999,0.249968,0,0);}
.m107_c00279{transform:matrix(0.219582,0.005270,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219582,0.005270,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219582,0.005270,-0.005998,0.249928,0,0);}
.m1c_c00279{transform:matrix(0.219843,0.001759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219843,0.001759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219843,0.001759,-0.002000,0.249992,0,0);}
.m4f_c00279{transform:matrix(0.220214,0.002202,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220214,0.002202,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220214,0.002202,-0.002500,0.249988,0,0);}
.m51_c00279{transform:matrix(0.220689,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220689,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220689,0.002207,-0.002500,0.249988,0,0);}
.me3_c00279{transform:matrix(0.220872,0.003534,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220872,0.003534,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220872,0.003534,-0.003999,0.249968,0,0);}
.m22_c00279{transform:matrix(0.221008,0.001768,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221008,0.001768,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221008,0.001768,-0.002000,0.249992,0,0);}
.mc6_c00279{transform:matrix(0.222447,0.003559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222447,0.003559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222447,0.003559,-0.003999,0.249968,0,0);}
.m29_c00279{transform:matrix(0.222678,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222678,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222678,0.001781,-0.002000,0.249992,0,0);}
.m119_c00279{transform:matrix(0.226280,0.004752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226280,0.004752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226280,0.004752,-0.005249,0.249945,0,0);}
.m7a_c00279{transform:matrix(0.228274,0.002283,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228274,0.002283,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228274,0.002283,-0.002500,0.249988,0,0);}
.m9f_c00279{transform:matrix(0.228506,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228506,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228506,0.003656,-0.003999,0.249968,0,0);}
.m27_c00279{transform:matrix(0.229253,0.001834,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229253,0.001834,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229253,0.001834,-0.002000,0.249992,0,0);}
.m117_c00279{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);}
.ma1_c00279{transform:matrix(0.231005,0.003696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231005,0.003696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231005,0.003696,-0.003999,0.249968,0,0);}
.m12f_c00279{transform:matrix(0.231377,0.006016,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231377,0.006016,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231377,0.006016,-0.006498,0.249916,0,0);}
.m6a_c00279{transform:matrix(0.231528,0.002315,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231528,0.002315,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231528,0.002315,-0.002500,0.249988,0,0);}
.m59_c00279{transform:matrix(0.232833,0.002328,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232833,0.002328,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232833,0.002328,-0.002500,0.249988,0,0);}
.m36_c00279{transform:matrix(0.234383,0.002344,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234383,0.002344,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234383,0.002344,-0.002500,0.249988,0,0);}
.md5_c00279{transform:matrix(0.236355,0.003782,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236355,0.003782,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236355,0.003782,-0.003999,0.249968,0,0);}
.m9d_c00279{transform:matrix(0.236990,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236990,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236990,0.003792,-0.003999,0.249968,0,0);}
.mb0_c00279{transform:matrix(0.238459,0.003815,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238459,0.003815,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238459,0.003815,-0.003999,0.249968,0,0);}
.m28_c00279{transform:matrix(0.239817,0.001919,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239817,0.001919,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239817,0.001919,-0.002000,0.249992,0,0);}
.m8d_c00279{transform:matrix(0.240424,0.003847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240424,0.003847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240424,0.003847,-0.003999,0.249968,0,0);}
.m31_c00279{transform:matrix(0.241043,0.002410,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241043,0.002410,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241043,0.002410,-0.002500,0.249988,0,0);}
.m64_c00279{transform:matrix(0.241503,0.002415,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241503,0.002415,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241503,0.002415,-0.002500,0.249988,0,0);}
.m98_c00279{transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);}
.m35_c00279{transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);}
.me7_c00279{transform:matrix(0.244039,0.003905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244039,0.003905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244039,0.003905,-0.003999,0.249968,0,0);}
.m54_c00279{transform:matrix(0.247623,0.002476,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247623,0.002476,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247623,0.002476,-0.002500,0.249988,0,0);}
.ma6_c00279{transform:matrix(0.248138,0.003970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248138,0.003970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248138,0.003970,-0.003999,0.249968,0,0);}
.md7_c00279{transform:matrix(0.248588,0.003977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248588,0.003977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248588,0.003977,-0.003999,0.249968,0,0);}
.m100_c00279{transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);}
.m72_c00279{transform:matrix(0.249673,0.002497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249673,0.002497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249673,0.002497,-0.002500,0.249988,0,0);}
.md6_c00279{transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);}
.m3c_c00279{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);}
.m66_c00279{transform:matrix(0.254162,0.002542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254162,0.002542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254162,0.002542,-0.002500,0.249988,0,0);}
.m8_c00279{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m124_c00279{transform:matrix(0.256275,0.002306,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256275,0.002306,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256275,0.002306,-0.002250,0.249990,0,0);}
.mea_c00279{transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);}
.m3b_c00279{transform:matrix(0.258077,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258077,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258077,0.002581,-0.002500,0.249988,0,0);}
.m47_c00279{transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);}
.m34_c00279{transform:matrix(0.258747,0.002587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258747,0.002587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258747,0.002587,-0.002500,0.249988,0,0);}
.m9b_c00279{transform:matrix(0.259412,0.004151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259412,0.004151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259412,0.004151,-0.003999,0.249968,0,0);}
.ma0_c00279{transform:matrix(0.259502,0.004152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259502,0.004152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259502,0.004152,-0.003999,0.249968,0,0);}
.m4c_c00279{transform:matrix(0.260357,0.002604,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260357,0.002604,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260357,0.002604,-0.002500,0.249988,0,0);}
.me1_c00279{transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);}
.m89_c00279{transform:matrix(0.260542,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260542,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260542,0.004169,-0.003999,0.249968,0,0);}
.m71_c00279{transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);}
.m40_c00279{transform:matrix(0.264747,0.002647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264747,0.002647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264747,0.002647,-0.002500,0.249988,0,0);}
.m7d_c00279{transform:matrix(0.270680,0.004331,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270680,0.004331,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270680,0.004331,-0.003999,0.249968,0,0);}
.m8a_c00279{transform:matrix(0.278759,0.004460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278759,0.004460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278759,0.004460,-0.003999,0.249968,0,0);}
.m108_c00279{transform:matrix(0.283898,0.006814,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283898,0.006814,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283898,0.006814,-0.005998,0.249928,0,0);}
.m9a_c00279{transform:matrix(0.284559,0.004553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284559,0.004553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284559,0.004553,-0.003999,0.249968,0,0);}
.m18_c00279{transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.285236,0.002282,-0.002000,0.249992,0,0);}
.m69_c00279{transform:matrix(0.297505,0.002975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297505,0.002975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297505,0.002975,-0.002500,0.249988,0,0);}
.m125_c00279{transform:matrix(0.306913,0.002762,-0.002250,0.249990,0,0);-ms-transform:matrix(0.306913,0.002762,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.306913,0.002762,-0.002250,0.249990,0,0);}
.m116_c00279{transform:matrix(0.308582,0.006480,-0.005249,0.249945,0,0);-ms-transform:matrix(0.308582,0.006480,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.308582,0.006480,-0.005249,0.249945,0,0);}
.m127_c00279{transform:matrix(0.324230,0.008430,-0.006498,0.249916,0,0);-ms-transform:matrix(0.324230,0.008430,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.324230,0.008430,-0.006498,0.249916,0,0);}
.m99_c00279{transform:matrix(0.324763,0.005196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324763,0.005196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324763,0.005196,-0.003999,0.249968,0,0);}
.mae_c00279{transform:matrix(0.342501,0.005480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.342501,0.005480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.342501,0.005480,-0.003999,0.249968,0,0);}
.m23_c00279{transform:matrix(0.353589,0.002829,-0.002000,0.249992,0,0);-ms-transform:matrix(0.353589,0.002829,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.353589,0.002829,-0.002000,0.249992,0,0);}
.m9c_c00279{transform:matrix(0.355340,0.005685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.355340,0.005685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.355340,0.005685,-0.003999,0.249968,0,0);}
.ma7_c00279{transform:matrix(0.367138,0.005874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367138,0.005874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367138,0.005874,-0.003999,0.249968,0,0);}
.m43_c00279{transform:matrix(0.535138,0.005351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.535138,0.005351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.535138,0.005351,-0.002500,0.249988,0,0);}
.m74_c00279{transform:matrix(0.653832,0.006538,-0.002500,0.249988,0,0);-ms-transform:matrix(0.653832,0.006538,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.653832,0.006538,-0.002500,0.249988,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;}
.fs14_c00279{font-size:55.668807px;}
.fse_c00279{font-size:61.957929px;}
.fs8_c00279{font-size:64.053202px;}
.fs10_c00279{font-size:64.058198px;}
.fs9_c00279{font-size:66.153307px;}
.fs11_c00279{font-size:67.219351px;}
.fs0_c00279{font-size:68.250000px;}
.fs5_c00279{font-size:68.253412px;}
.fs4_c00279{font-size:69.302218px;}
.fsd_c00279{font-size:69.308870px;}
.fs1_c00279{font-size:70.350000px;}
.fs7_c00279{font-size:70.353517px;}
.fsf_c00279{font-size:70.359004px;}
.fs3_c00279{font-size:71.402285px;}
.fsc_c00279{font-size:71.409139px;}
.fs6_c00279{font-size:72.453622px;}
.fs12_c00279{font-size:73.516205px;}
.fsb_c00279{font-size:74.553727px;}
.fs2_c00279{font-size:75.602419px;}
.fsa_c00279{font-size:75.603780px;}
.fs13_c00279{font-size:93.453785px;}
.y0_c00279{bottom:0.000000px;}
.y12d_c00279{bottom:165.948426px;}
.y12c_c00279{bottom:166.671798px;}
.y12b_c00279{bottom:168.110781px;}
.y12a_c00279{bottom:169.332378px;}
.y129_c00279{bottom:170.540130px;}
.y128_c00279{bottom:171.715356px;}
.y127_c00279{bottom:172.365993px;}
.y126_c00279{bottom:172.829703px;}
.y125_c00279{bottom:174.100986px;}
.y124_c00279{bottom:174.620661px;}
.y123_c00279{bottom:175.007190px;}
.y122_c00279{bottom:175.506000px;}
.y121_c00279{bottom:219.649740px;}
.y120_c00279{bottom:219.957419px;}
.y11f_c00279{bottom:220.567416px;}
.y11e_c00279{bottom:220.795850px;}
.y11d_c00279{bottom:221.048691px;}
.y11c_c00279{bottom:221.656380px;}
.y11b_c00279{bottom:221.797158px;}
.y11a_c00279{bottom:222.173876px;}
.y119_c00279{bottom:222.740214px;}
.y118_c00279{bottom:223.075163px;}
.y117_c00279{bottom:223.673510px;}
.y116_c00279{bottom:223.831500px;}
.y115_c00279{bottom:241.265389px;}
.y114_c00279{bottom:242.484880px;}
.y113_c00279{bottom:242.906382px;}
.y112_c00279{bottom:243.846090px;}
.y111_c00279{bottom:244.674571px;}
.y110_c00279{bottom:245.421783px;}
.y10f_c00279{bottom:245.807500px;}
.y10e_c00279{bottom:246.656394px;}
.y10d_c00279{bottom:247.157149px;}
.y10c_c00279{bottom:248.637870px;}
.y10b_c00279{bottom:249.416392px;}
.y10a_c00279{bottom:251.002795px;}
.y109_c00279{bottom:251.467987px;}
.y108_c00279{bottom:251.914500px;}
.y107_c00279{bottom:264.351600px;}
.y106_c00279{bottom:265.262544px;}
.y105_c00279{bottom:266.980644px;}
.y104_c00279{bottom:267.662700px;}
.y103_c00279{bottom:269.510220px;}
.y102_c00279{bottom:270.345888px;}
.y101_c00279{bottom:270.890532px;}
.y100_c00279{bottom:272.984220px;}
.yff_c00279{bottom:273.328344px;}
.yfe_c00279{bottom:274.027212px;}
.yfd_c00279{bottom:275.134500px;}
.yfc_c00279{bottom:288.164808px;}
.yfb_c00279{bottom:289.145088px;}
.yfa_c00279{bottom:290.085684px;}
.yf9_c00279{bottom:291.092976px;}
.yf8_c00279{bottom:291.669492px;}
.yf7_c00279{bottom:293.197212px;}
.yf6_c00279{bottom:293.862240px;}
.yf5_c00279{bottom:294.473868px;}
.yf4_c00279{bottom:295.316928px;}
.yf3_c00279{bottom:297.782688px;}
.yf2_c00279{bottom:310.556244px;}
.yf1_c00279{bottom:311.367912px;}
.yf0_c00279{bottom:312.263592px;}
.yef_c00279{bottom:312.658788px;}
.yee_c00279{bottom:313.110948px;}
.yed_c00279{bottom:314.327880px;}
.yec_c00279{bottom:314.946096px;}
.yeb_c00279{bottom:315.803544px;}
.yea_c00279{bottom:316.341348px;}
.ye9_c00279{bottom:317.537388px;}
.ye8_c00279{bottom:318.331236px;}
.ye7_c00279{bottom:318.767472px;}
.ye6_c00279{bottom:319.465476px;}
.ye5_c00279{bottom:319.924992px;}
.ye4_c00279{bottom:332.686884px;}
.ye3_c00279{bottom:334.390476px;}
.ye2_c00279{bottom:335.491128px;}
.ye1_c00279{bottom:336.595836px;}
.ye0_c00279{bottom:337.333440px;}
.ydf_c00279{bottom:337.904628px;}
.yde_c00279{bottom:338.445660px;}
.ydd_c00279{bottom:339.863280px;}
.ydc_c00279{bottom:340.577052px;}
.ydb_c00279{bottom:341.495628px;}
.yda_c00279{bottom:342.108384px;}
.yd9_c00279{bottom:342.607308px;}
.yd8_c00279{bottom:355.892496px;}
.yd7_c00279{bottom:356.603508px;}
.yd6_c00279{bottom:357.125712px;}
.yd5_c00279{bottom:357.611292px;}
.yd4_c00279{bottom:358.373088px;}
.yd3_c00279{bottom:359.036916px;}
.yd2_c00279{bottom:360.039504px;}
.yd1_c00279{bottom:360.596040px;}
.yd0_c00279{bottom:361.749156px;}
.ycf_c00279{bottom:362.563176px;}
.yce_c00279{bottom:363.344112px;}
.ycd_c00279{bottom:364.030764px;}
.ycc_c00279{bottom:365.290116px;}
.ycb_c00279{bottom:378.672492px;}
.yca_c00279{bottom:379.169364px;}
.yc9_c00279{bottom:379.979412px;}
.yc8_c00279{bottom:381.126288px;}
.yc7_c00279{bottom:381.810276px;}
.yc6_c00279{bottom:382.710348px;}
.yc5_c00279{bottom:383.414484px;}
.yc4_c00279{bottom:383.992128px;}
.yc3_c00279{bottom:384.849960px;}
.yc2_c00279{bottom:386.232264px;}
.yc1_c00279{bottom:387.971352px;}
.yc0_c00279{bottom:402.153708px;}
.ybf_c00279{bottom:402.502512px;}
.ybe_c00279{bottom:403.296840px;}
.ybd_c00279{bottom:404.088228px;}
.ybc_c00279{bottom:404.550528px;}
.ybb_c00279{bottom:404.883684px;}
.yba_c00279{bottom:405.504456px;}
.yb9_c00279{bottom:406.100628px;}
.yb8_c00279{bottom:406.688124px;}
.yb7_c00279{bottom:407.013780px;}
.yb6_c00279{bottom:407.254752px;}
.yb5_c00279{bottom:408.505344px;}
.yb4_c00279{bottom:409.047780px;}
.yb3_c00279{bottom:409.833600px;}
.yb2_c00279{bottom:410.653752px;}
.yb1_c00279{bottom:424.860336px;}
.yb0_c00279{bottom:425.481312px;}
.yaf_c00279{bottom:425.848644px;}
.yae_c00279{bottom:426.288144px;}
.yad_c00279{bottom:427.422276px;}
.yac_c00279{bottom:427.818720px;}
.yab_c00279{bottom:428.601216px;}
.yaa_c00279{bottom:429.118812px;}
.ya9_c00279{bottom:429.415104px;}
.ya8_c00279{bottom:429.912420px;}
.ya7_c00279{bottom:430.636104px;}
.ya6_c00279{bottom:446.593884px;}
.ya5_c00279{bottom:447.504456px;}
.ya4_c00279{bottom:448.329240px;}
.ya3_c00279{bottom:449.421912px;}
.ya2_c00279{bottom:449.771508px;}
.ya1_c00279{bottom:451.021968px;}
.ya0_c00279{bottom:452.880000px;}
.y9f_c00279{bottom:454.559928px;}
.y9e_c00279{bottom:455.052216px;}
.y9d_c00279{bottom:455.755224px;}
.y9c_c00279{bottom:470.012088px;}
.y9b_c00279{bottom:470.311800px;}
.y9a_c00279{bottom:471.187932px;}
.y99_c00279{bottom:472.139124px;}
.y98_c00279{bottom:472.828656px;}
.y97_c00279{bottom:473.161356px;}
.y96_c00279{bottom:474.429372px;}
.y95_c00279{bottom:474.891012px;}
.y94_c00279{bottom:476.206656px;}
.y93_c00279{bottom:476.634840px;}
.y92_c00279{bottom:477.578160px;}
.y91_c00279{bottom:478.167336px;}
.y90_c00279{bottom:493.228800px;}
.y8f_c00279{bottom:493.665444px;}
.y8e_c00279{bottom:494.225628px;}
.y8d_c00279{bottom:494.878044px;}
.y8c_c00279{bottom:495.465576px;}
.y8b_c00279{bottom:495.762936px;}
.y8a_c00279{bottom:496.071648px;}
.y89_c00279{bottom:497.164596px;}
.y88_c00279{bottom:497.545536px;}
.y87_c00279{bottom:498.486804px;}
.y86_c00279{bottom:499.487880px;}
.y85_c00279{bottom:499.951440px;}
.y84_c00279{bottom:500.850108px;}
.y83_c00279{bottom:515.950200px;}
.y82_c00279{bottom:516.626520px;}
.y81_c00279{bottom:517.508040px;}
.y80_c00279{bottom:517.780224px;}
.y7f_c00279{bottom:518.189808px;}
.y7e_c00279{bottom:519.114864px;}
.y7d_c00279{bottom:520.242936px;}
.y7c_c00279{bottom:520.800216px;}
.y7b_c00279{bottom:521.612400px;}
.y7a_c00279{bottom:522.308112px;}
.y79_c00279{bottom:522.938760px;}
.y78_c00279{bottom:523.263000px;}
.y77_c00279{bottom:545.294895px;}
.y76_c00279{bottom:545.669400px;}
.y75_c00279{bottom:546.004110px;}
.y74_c00279{bottom:546.713130px;}
.y73_c00279{bottom:547.306800px;}
.y72_c00279{bottom:548.228475px;}
.y71_c00279{bottom:549.143445px;}
.y70_c00279{bottom:550.256775px;}
.y6f_c00279{bottom:572.747505px;}
.y6e_c00279{bottom:574.493040px;}
.y6d_c00279{bottom:574.905690px;}
.y6c_c00279{bottom:575.807520px;}
.y6b_c00279{bottom:576.327315px;}
.y6a_c00279{bottom:577.002735px;}
.y69_c00279{bottom:577.779750px;}
.y68_c00279{bottom:578.367720px;}
.y67_c00279{bottom:578.604120px;}
.y66_c00279{bottom:594.871140px;}
.y65_c00279{bottom:595.101990px;}
.y64_c00279{bottom:595.351875px;}
.y63_c00279{bottom:595.996785px;}
.y62_c00279{bottom:596.183775px;}
.y61_c00279{bottom:596.959350px;}
.y60_c00279{bottom:597.040350px;}
.y5f_c00279{bottom:597.338295px;}
.y5e_c00279{bottom:597.581220px;}
.y5d_c00279{bottom:598.579395px;}
.y5c_c00279{bottom:599.246625px;}
.y5b_c00279{bottom:599.403345px;}
.y5a_c00279{bottom:600.204960px;}
.y59_c00279{bottom:618.181470px;}
.y58_c00279{bottom:618.755250px;}
.y57_c00279{bottom:619.106250px;}
.y56_c00279{bottom:619.710780px;}
.y55_c00279{bottom:619.937910px;}
.y54_c00279{bottom:620.443365px;}
.y53_c00279{bottom:621.014970px;}
.y52_c00279{bottom:622.012725px;}
.y51_c00279{bottom:622.344240px;}
.y50_c00279{bottom:623.153805px;}
.y4f_c00279{bottom:623.694660px;}
.y4e_c00279{bottom:642.910560px;}
.y4d_c00279{bottom:643.116255px;}
.y4c_c00279{bottom:643.904115px;}
.y4b_c00279{bottom:644.718960px;}
.y4a_c00279{bottom:645.014145px;}
.y49_c00279{bottom:645.464370px;}
.y48_c00279{bottom:645.857040px;}
.y47_c00279{bottom:647.053020px;}
.y46_c00279{bottom:649.075170px;}
.y45_c00279{bottom:664.258800px;}
.y44_c00279{bottom:665.076705px;}
.y43_c00279{bottom:665.323410px;}
.y42_c00279{bottom:665.700795px;}
.y41_c00279{bottom:666.377850px;}
.y40_c00279{bottom:666.719415px;}
.y3f_c00279{bottom:667.319460px;}
.y3e_c00279{bottom:667.830570px;}
.y3d_c00279{bottom:668.685885px;}
.y3c_c00279{bottom:668.950290px;}
.y3b_c00279{bottom:669.327255px;}
.y3a_c00279{bottom:687.102120px;}
.y39_c00279{bottom:687.590010px;}
.y38_c00279{bottom:688.382895px;}
.y37_c00279{bottom:688.870545px;}
.y36_c00279{bottom:689.147700px;}
.y35_c00279{bottom:689.872020px;}
.y34_c00279{bottom:690.594165px;}
.y33_c00279{bottom:690.831120px;}
.y32_c00279{bottom:691.502925px;}
.y31_c00279{bottom:692.011215px;}
.y30_c00279{bottom:709.996560px;}
.y2f_c00279{bottom:710.174430px;}
.y2e_c00279{bottom:711.016845px;}
.y2d_c00279{bottom:711.332835px;}
.y2c_c00279{bottom:711.700050px;}
.y2b_c00279{bottom:711.978330px;}
.y2a_c00279{bottom:712.482720px;}
.y29_c00279{bottom:712.988355px;}
.y28_c00279{bottom:713.260740px;}
.y27_c00279{bottom:713.897880px;}
.y26_c00279{bottom:714.114060px;}
.y25_c00279{bottom:714.421500px;}
.y24_c00279{bottom:733.115760px;}
.y23_c00279{bottom:733.565460px;}
.y22_c00279{bottom:733.712280px;}
.y21_c00279{bottom:734.006088px;}
.y20_c00279{bottom:734.481312px;}
.y1f_c00279{bottom:734.701380px;}
.y1e_c00279{bottom:734.919516px;}
.y1d_c00279{bottom:735.051948px;}
.y1c_c00279{bottom:735.591564px;}
.y1b_c00279{bottom:735.889740px;}
.y1a_c00279{bottom:736.090584px;}
.y19_c00279{bottom:736.457808px;}
.y18_c00279{bottom:736.790628px;}
.y17_c00279{bottom:737.101500px;}
.y16_c00279{bottom:754.601112px;}
.y15_c00279{bottom:755.664216px;}
.y14_c00279{bottom:756.373632px;}
.y13_c00279{bottom:756.593484px;}
.y12_c00279{bottom:756.902040px;}
.y11_c00279{bottom:757.725444px;}
.y10_c00279{bottom:758.108712px;}
.yf_c00279{bottom:758.759172px;}
.ye_c00279{bottom:759.029220px;}
.yd_c00279{bottom:759.430320px;}
.yc_c00279{bottom:759.780876px;}
.yb_c00279{bottom:778.873512px;}
.ya_c00279{bottom:779.355180px;}
.y9_c00279{bottom:779.678928px;}
.y8_c00279{bottom:780.169596px;}
.y7_c00279{bottom:780.376920px;}
.y6_c00279{bottom:781.150224px;}
.y5_c00279{bottom:781.510692px;}
.y4_c00279{bottom:781.683900px;}
.y3_c00279{bottom:782.191500px;}
.y2_c00279{bottom:812.547000px;}
.y1_c00279{bottom:834.934500px;}
.h16_c00279{height:55.668807px;}
.h10_c00279{height:61.957929px;}
.ha_c00279{height:64.053202px;}
.h12_c00279{height:64.058198px;}
.hb_c00279{height:66.153307px;}
.h13_c00279{height:67.219351px;}
.h2_c00279{height:68.250000px;}
.h7_c00279{height:68.253412px;}
.h6_c00279{height:69.302218px;}
.hf_c00279{height:69.308870px;}
.h3_c00279{height:70.350000px;}
.h9_c00279{height:70.353517px;}
.h11_c00279{height:70.359004px;}
.h5_c00279{height:71.402285px;}
.he_c00279{height:71.409139px;}
.h8_c00279{height:72.453622px;}
.h14_c00279{height:73.516205px;}
.hd_c00279{height:74.553727px;}
.h4_c00279{height:75.602419px;}
.hc_c00279{height:75.603780px;}
.h15_c00279{height:93.453785px;}
.h0_c00279{height:1008.450000px;}
.h1_c00279{height:1008.750000px;}
.w0_c00279{width:696.000000px;}
.x0_c00279{left:0.000000px;}
.x8b_c00279{left:139.364748px;}
.x12_c00279{left:149.757984px;}
.x1b_c00279{left:151.645500px;}
.xab_c00279{left:162.828000px;}
.x51_c00279{left:163.930515px;}
.x5d_c00279{left:165.307500px;}
.xa7_c00279{left:167.505000px;}
.xa_c00279{left:169.173000px;}
.x97_c00279{left:172.550928px;}
.x92_c00279{left:173.637900px;}
.x57_c00279{left:179.345475px;}
.x28_c00279{left:180.505500px;}
.x13_c00279{left:181.576716px;}
.x6e_c00279{left:183.383856px;}
.x37_c00279{left:185.631420px;}
.x1c_c00279{left:190.504500px;}
.x83_c00279{left:192.900156px;}
.x2f_c00279{left:197.244585px;}
.x29_c00279{left:202.123500px;}
.x66_c00279{left:204.417120px;}
.x4_c00279{left:205.740000px;}
.x38_c00279{left:209.671680px;}
.x78_c00279{left:210.912204px;}
.xac_c00279{left:216.867000px;}
.x1_c00279{left:218.970000px;}
.x5_c00279{left:221.940000px;}
.x5e_c00279{left:224.988000px;}
.x8c_c00279{left:226.302180px;}
.xb_c00279{left:232.623000px;}
.x84_c00279{left:234.230664px;}
.x6f_c00279{left:235.777176px;}
.x52_c00279{left:239.822955px;}
.x58_c00279{left:241.173525px;}
.x14_c00279{left:242.593752px;}
.x7d_c00279{left:244.945200px;}
.x93_c00279{left:246.559068px;}
.x45_c00279{left:248.576700px;}
.xc_c00279{left:254.274000px;}
.x30_c00279{left:258.274470px;}
.x70_c00279{left:259.537908px;}
.x85_c00279{left:262.787796px;}
.x98_c00279{left:264.361584px;}
.x2a_c00279{left:265.837500px;}
.x5f_c00279{left:268.470000px;}
.xa8_c00279{left:271.204500px;}
.x46_c00279{left:272.277255px;}
.x1d_c00279{left:278.010000px;}
.x31_c00279{left:279.869760px;}
.xad_c00279{left:283.597500px;}
.x2_c00279{left:287.820000px;}
.x67_c00279{left:290.611752px;}
.x59_c00279{left:292.016460px;}
.x2b_c00279{left:293.076000px;}
.x79_c00279{left:294.902328px;}
.x3e_c00279{left:296.600565px;}
.x6_c00279{left:300.240000px;}
.x15_c00279{left:301.774836px;}
.x1e_c00279{left:303.115500px;}
.x53_c00279{left:306.239145px;}
.x7e_c00279{left:307.441176px;}
.xae_c00279{left:308.622000px;}
.x7_c00279{left:315.630000px;}
.x60_c00279{left:319.231500px;}
.x99_c00279{left:321.297024px;}
.xa1_c00279{left:327.291000px;}
.x86_c00279{left:328.571628px;}
.x71_c00279{left:332.669580px;}
.x39_c00279{left:333.862935px;}
.x16_c00279{left:336.557496px;}
.x8d_c00279{left:338.366028px;}
.x1f_c00279{left:340.387500px;}
.x2c_c00279{left:343.639500px;}
.x32_c00279{left:345.483600px;}
.x9a_c00279{left:346.938984px;}
.x94_c00279{left:348.075456px;}
.xa2_c00279{left:349.984500px;}
.x61_c00279{left:354.061500px;}
.x54_c00279{left:356.368140px;}
.x72_c00279{left:358.333764px;}
.x3_c00279{left:365.850000px;}
.x8e_c00279{left:367.248180px;}
.x68_c00279{left:368.373504px;}
.x4b_c00279{left:370.843320px;}
.x90_c00279{left:373.381248px;}
.x5a_c00279{left:376.194225px;}
.x55_c00279{left:379.331310px;}
.x3f_c00279{left:381.995145px;}
.x47_c00279{left:384.358770px;}
.x3a_c00279{left:388.466895px;}
.x4c_c00279{left:391.085415px;}
.x8_c00279{left:394.470000px;}
.xd_c00279{left:395.995500px;}
.x7f_c00279{left:398.098020px;}
.x91_c00279{left:399.912636px;}
.x95_c00279{left:400.991208px;}
.x8f_c00279{left:402.441924px;}
.x9_c00279{left:405.810000px;}
.x20_c00279{left:407.839500px;}
.x40_c00279{left:410.011020px;}
.x17_c00279{left:411.356196px;}
.x4d_c00279{left:415.929420px;}
.x9b_c00279{left:417.224868px;}
.x3b_c00279{left:419.473080px;}
.x48_c00279{left:420.502830px;}
.xe_c00279{left:421.911000px;}
.x21_c00279{left:424.393500px;}
.x73_c00279{left:428.770008px;}
.x69_c00279{left:432.650472px;}
.x5b_c00279{left:434.212590px;}
.x33_c00279{left:436.480185px;}
.x18_c00279{left:439.425024px;}
.x41_c00279{left:442.132230px;}
.x74_c00279{left:447.219408px;}
.x7a_c00279{left:450.266868px;}
.x22_c00279{left:451.660500px;}
.x87_c00279{left:453.413652px;}
.x5c_c00279{left:455.011425px;}
.x19_c00279{left:459.406044px;}
.xa3_c00279{left:461.784000px;}
.x42_c00279{left:463.249890px;}
.x6a_c00279{left:468.279396px;}
.x88_c00279{left:470.953812px;}
.x9c_c00279{left:475.184736px;}
.x56_c00279{left:476.327055px;}
.x23_c00279{left:479.169000px;}
.x34_c00279{left:480.744735px;}
.xf_c00279{left:483.244500px;}
.x75_c00279{left:485.532684px;}
.x4e_c00279{left:487.335495px;}
.x96_c00279{left:488.753700px;}
.x2d_c00279{left:490.227000px;}
.x89_c00279{left:495.252636px;}
.x9d_c00279{left:496.693008px;}
.x9f_c00279{left:500.526912px;}
.x4f_c00279{left:502.884180px;}
.x49_c00279{left:505.015455px;}
.x62_c00279{left:507.981000px;}
.xa9_c00279{left:512.626500px;}
.x3c_c00279{left:515.316120px;}
.x80_c00279{left:519.143328px;}
.x43_c00279{left:521.482065px;}
.x10_c00279{left:523.713000px;}
.x63_c00279{left:524.992500px;}
.xaf_c00279{left:530.427000px;}
.xa5_c00279{left:534.678000px;}
.x8a_c00279{left:536.931144px;}
.x24_c00279{left:538.572000px;}
.x6b_c00279{left:541.181220px;}
.xa0_c00279{left:543.278808px;}
.x4a_c00279{left:546.041820px;}
.x81_c00279{left:547.446696px;}
.x35_c00279{left:552.832515px;}
.x50_c00279{left:556.574100px;}
.x9e_c00279{left:558.149088px;}
.xa4_c00279{left:561.790500px;}
.x7b_c00279{left:563.544096px;}
.x6c_c00279{left:574.129692px;}
.x25_c00279{left:575.298000px;}
.x44_c00279{left:577.765815px;}
.x64_c00279{left:580.087500px;}
.x11_c00279{left:583.921500px;}
.x76_c00279{left:587.080944px;}
.x2e_c00279{left:592.255500px;}
.x26_c00279{left:593.650500px;}
.x82_c00279{left:595.260000px;}
.x36_c00279{left:597.121065px;}
.x6d_c00279{left:599.825784px;}
.x77_c00279{left:603.749916px;}
.x7c_c00279{left:609.108192px;}
.x3d_c00279{left:612.026145px;}
.xaa_c00279{left:614.590500px;}
.x1a_c00279{left:620.592180px;}
.x65_c00279{left:622.357500px;}
.x27_c00279{left:649.863000px;}
.xa6_c00279{left:657.568500px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fs14_c00279{font-size:49.483384pt;}
.fse_c00279{font-size:55.073715pt;}
.fs8_c00279{font-size:56.936180pt;}
.fs10_c00279{font-size:56.940620pt;}
.fs9_c00279{font-size:58.802940pt;}
.fs11_c00279{font-size:59.750534pt;}
.fs0_c00279{font-size:60.666667pt;}
.fs5_c00279{font-size:60.669700pt;}
.fs4_c00279{font-size:61.601971pt;}
.fsd_c00279{font-size:61.607884pt;}
.fs1_c00279{font-size:62.533333pt;}
.fs7_c00279{font-size:62.536460pt;}
.fsf_c00279{font-size:62.541337pt;}
.fs3_c00279{font-size:63.468698pt;}
.fsc_c00279{font-size:63.474790pt;}
.fs6_c00279{font-size:64.403220pt;}
.fs12_c00279{font-size:65.347738pt;}
.fsb_c00279{font-size:66.269980pt;}
.fs2_c00279{font-size:67.202150pt;}
.fsa_c00279{font-size:67.203360pt;}
.fs13_c00279{font-size:83.070031pt;}
.y0_c00279{bottom:0.000000pt;}
.y12d_c00279{bottom:147.509712pt;}
.y12c_c00279{bottom:148.152709pt;}
.y12b_c00279{bottom:149.431805pt;}
.y12a_c00279{bottom:150.517669pt;}
.y129_c00279{bottom:151.591227pt;}
.y128_c00279{bottom:152.635872pt;}
.y127_c00279{bottom:153.214216pt;}
.y126_c00279{bottom:153.626403pt;}
.y125_c00279{bottom:154.756432pt;}
.y124_c00279{bottom:155.218365pt;}
.y123_c00279{bottom:155.561947pt;}
.y122_c00279{bottom:156.005333pt;}
.y121_c00279{bottom:195.244213pt;}
.y120_c00279{bottom:195.517705pt;}
.y11f_c00279{bottom:196.059925pt;}
.y11e_c00279{bottom:196.262977pt;}
.y11d_c00279{bottom:196.487725pt;}
.y11c_c00279{bottom:197.027893pt;}
.y11b_c00279{bottom:197.153029pt;}
.y11a_c00279{bottom:197.487889pt;}
.y119_c00279{bottom:197.991301pt;}
.y118_c00279{bottom:198.289033pt;}
.y117_c00279{bottom:198.820897pt;}
.y116_c00279{bottom:198.961333pt;}
.y115_c00279{bottom:214.458124pt;}
.y114_c00279{bottom:215.542116pt;}
.y113_c00279{bottom:215.916784pt;}
.y112_c00279{bottom:216.752080pt;}
.y111_c00279{bottom:217.488508pt;}
.y110_c00279{bottom:218.152696pt;}
.y10f_c00279{bottom:218.495556pt;}
.y10e_c00279{bottom:219.250128pt;}
.y10d_c00279{bottom:219.695244pt;}
.y10c_c00279{bottom:221.011440pt;}
.y10b_c00279{bottom:221.703460pt;}
.y10a_c00279{bottom:223.113596pt;}
.y109_c00279{bottom:223.527100pt;}
.y108_c00279{bottom:223.924000pt;}
.y107_c00279{bottom:234.979200pt;}
.y106_c00279{bottom:235.788928pt;}
.y105_c00279{bottom:237.316128pt;}
.y104_c00279{bottom:237.922400pt;}
.y103_c00279{bottom:239.564640pt;}
.y102_c00279{bottom:240.307456pt;}
.y101_c00279{bottom:240.791584pt;}
.y100_c00279{bottom:242.652640pt;}
.yff_c00279{bottom:242.958528pt;}
.yfe_c00279{bottom:243.579744pt;}
.yfd_c00279{bottom:244.564000pt;}
.yfc_c00279{bottom:256.146496pt;}
.yfb_c00279{bottom:257.017856pt;}
.yfa_c00279{bottom:257.853941pt;}
.yf9_c00279{bottom:258.749312pt;}
.yf8_c00279{bottom:259.261771pt;}
.yf7_c00279{bottom:260.619744pt;}
.yf6_c00279{bottom:261.210880pt;}
.yf5_c00279{bottom:261.754549pt;}
.yf4_c00279{bottom:262.503936pt;}
.yf3_c00279{bottom:264.695723pt;}
.yf2_c00279{bottom:276.049995pt;}
.yf1_c00279{bottom:276.771477pt;}
.yf0_c00279{bottom:277.567637pt;}
.yef_c00279{bottom:277.918923pt;}
.yee_c00279{bottom:278.320843pt;}
.yed_c00279{bottom:279.402560pt;}
.yec_c00279{bottom:279.952085pt;}
.yeb_c00279{bottom:280.714261pt;}
.yea_c00279{bottom:281.192309pt;}
.ye9_c00279{bottom:282.255456pt;}
.ye8_c00279{bottom:282.961099pt;}
.ye7_c00279{bottom:283.348864pt;}
.ye6_c00279{bottom:283.969312pt;}
.ye5_c00279{bottom:284.377771pt;}
.ye4_c00279{bottom:295.721675pt;}
.ye3_c00279{bottom:297.235979pt;}
.ye2_c00279{bottom:298.214336pt;}
.ye1_c00279{bottom:299.196299pt;}
.ye0_c00279{bottom:299.851947pt;}
.ydf_c00279{bottom:300.359669pt;}
.yde_c00279{bottom:300.840587pt;}
.ydd_c00279{bottom:302.100693pt;}
.ydc_c00279{bottom:302.735157pt;}
.ydb_c00279{bottom:303.551669pt;}
.yda_c00279{bottom:304.096341pt;}
.yd9_c00279{bottom:304.539829pt;}
.yd8_c00279{bottom:316.348885pt;}
.yd7_c00279{bottom:316.980896pt;}
.yd6_c00279{bottom:317.445077pt;}
.yd5_c00279{bottom:317.876704pt;}
.yd4_c00279{bottom:318.553856pt;}
.yd3_c00279{bottom:319.143925pt;}
.yd2_c00279{bottom:320.035115pt;}
.yd1_c00279{bottom:320.529813pt;}
.yd0_c00279{bottom:321.554805pt;}
.ycf_c00279{bottom:322.278379pt;}
.yce_c00279{bottom:322.972544pt;}
.ycd_c00279{bottom:323.582901pt;}
.ycc_c00279{bottom:324.702325pt;}
.ycb_c00279{bottom:336.597771pt;}
.yca_c00279{bottom:337.039435pt;}
.yc9_c00279{bottom:337.759477pt;}
.yc8_c00279{bottom:338.778923pt;}
.yc7_c00279{bottom:339.386912pt;}
.yc6_c00279{bottom:340.186976pt;}
.yc5_c00279{bottom:340.812875pt;}
.yc4_c00279{bottom:341.326336pt;}
.yc3_c00279{bottom:342.088853pt;}
.yc2_c00279{bottom:343.317568pt;}
.yc1_c00279{bottom:344.863424pt;}
.yc0_c00279{bottom:357.469963pt;}
.ybf_c00279{bottom:357.780011pt;}
.ybe_c00279{bottom:358.486080pt;}
.ybd_c00279{bottom:359.189536pt;}
.ybc_c00279{bottom:359.600469pt;}
.ybb_c00279{bottom:359.896608pt;}
.yba_c00279{bottom:360.448405pt;}
.yb9_c00279{bottom:360.978336pt;}
.yb8_c00279{bottom:361.500555pt;}
.yb7_c00279{bottom:361.790027pt;}
.yb6_c00279{bottom:362.004224pt;}
.yb5_c00279{bottom:363.115861pt;}
.yb4_c00279{bottom:363.598027pt;}
.yb3_c00279{bottom:364.296533pt;}
.yb2_c00279{bottom:365.025557pt;}
.yb1_c00279{bottom:377.653632pt;}
.yb0_c00279{bottom:378.205611pt;}
.yaf_c00279{bottom:378.532128pt;}
.yae_c00279{bottom:378.922795pt;}
.yad_c00279{bottom:379.930912pt;}
.yac_c00279{bottom:380.283307pt;}
.yab_c00279{bottom:380.978859pt;}
.yaa_c00279{bottom:381.438944pt;}
.ya9_c00279{bottom:381.702315pt;}
.ya8_c00279{bottom:382.144373pt;}
.ya7_c00279{bottom:382.787648pt;}
.ya6_c00279{bottom:396.972341pt;}
.ya5_c00279{bottom:397.781739pt;}
.ya4_c00279{bottom:398.514880pt;}
.ya3_c00279{bottom:399.486144pt;}
.ya2_c00279{bottom:399.796896pt;}
.ya1_c00279{bottom:400.908416pt;}
.ya0_c00279{bottom:402.560000pt;}
.y9f_c00279{bottom:404.053269pt;}
.y9e_c00279{bottom:404.490859pt;}
.y9d_c00279{bottom:405.115755pt;}
.y9c_c00279{bottom:417.788523pt;}
.y9b_c00279{bottom:418.054933pt;}
.y9a_c00279{bottom:418.833717pt;}
.y99_c00279{bottom:419.679221pt;}
.y98_c00279{bottom:420.292139pt;}
.y97_c00279{bottom:420.587872pt;}
.y96_c00279{bottom:421.714997pt;}
.y95_c00279{bottom:422.125344pt;}
.y94_c00279{bottom:423.294805pt;}
.y93_c00279{bottom:423.675413pt;}
.y92_c00279{bottom:424.513920pt;}
.y91_c00279{bottom:425.037632pt;}
.y90_c00279{bottom:438.425600pt;}
.y8f_c00279{bottom:438.813728pt;}
.y8e_c00279{bottom:439.311669pt;}
.y8d_c00279{bottom:439.891595pt;}
.y8c_c00279{bottom:440.413845pt;}
.y8b_c00279{bottom:440.678165pt;}
.y8a_c00279{bottom:440.952576pt;}
.y89_c00279{bottom:441.924085pt;}
.y88_c00279{bottom:442.262699pt;}
.y87_c00279{bottom:443.099381pt;}
.y86_c00279{bottom:443.989227pt;}
.y85_c00279{bottom:444.401280pt;}
.y84_c00279{bottom:445.200096pt;}
.y83_c00279{bottom:458.622400pt;}
.y82_c00279{bottom:459.223573pt;}
.y81_c00279{bottom:460.007147pt;}
.y80_c00279{bottom:460.249088pt;}
.y7f_c00279{bottom:460.613163pt;}
.y7e_c00279{bottom:461.435435pt;}
.y7d_c00279{bottom:462.438165pt;}
.y7c_c00279{bottom:462.933525pt;}
.y7b_c00279{bottom:463.655467pt;}
.y7a_c00279{bottom:464.273877pt;}
.y79_c00279{bottom:464.834453pt;}
.y78_c00279{bottom:465.122667pt;}
.y77_c00279{bottom:484.706573pt;}
.y76_c00279{bottom:485.039467pt;}
.y75_c00279{bottom:485.336987pt;}
.y74_c00279{bottom:485.967227pt;}
.y73_c00279{bottom:486.494933pt;}
.y72_c00279{bottom:487.314200pt;}
.y71_c00279{bottom:488.127507pt;}
.y70_c00279{bottom:489.117133pt;}
.y6f_c00279{bottom:509.108893pt;}
.y6e_c00279{bottom:510.660480pt;}
.y6d_c00279{bottom:511.027280pt;}
.y6c_c00279{bottom:511.828907pt;}
.y6b_c00279{bottom:512.290947pt;}
.y6a_c00279{bottom:512.891320pt;}
.y69_c00279{bottom:513.582000pt;}
.y68_c00279{bottom:514.104640pt;}
.y67_c00279{bottom:514.314773pt;}
.y66_c00279{bottom:528.774347pt;}
.y65_c00279{bottom:528.979547pt;}
.y64_c00279{bottom:529.201667pt;}
.y63_c00279{bottom:529.774920pt;}
.y62_c00279{bottom:529.941133pt;}
.y61_c00279{bottom:530.630533pt;}
.y60_c00279{bottom:530.702533pt;}
.y5f_c00279{bottom:530.967373pt;}
.y5e_c00279{bottom:531.183307pt;}
.y5d_c00279{bottom:532.070573pt;}
.y5c_c00279{bottom:532.663667pt;}
.y5b_c00279{bottom:532.802973pt;}
.y5a_c00279{bottom:533.515520pt;}
.y59_c00279{bottom:549.494640pt;}
.y58_c00279{bottom:550.004667pt;}
.y57_c00279{bottom:550.316667pt;}
.y56_c00279{bottom:550.854027pt;}
.y55_c00279{bottom:551.055920pt;}
.y54_c00279{bottom:551.505213pt;}
.y53_c00279{bottom:552.013307pt;}
.y52_c00279{bottom:552.900200pt;}
.y51_c00279{bottom:553.194880pt;}
.y50_c00279{bottom:553.914493pt;}
.y4f_c00279{bottom:554.395253pt;}
.y4e_c00279{bottom:571.476053pt;}
.y4d_c00279{bottom:571.658893pt;}
.y4c_c00279{bottom:572.359213pt;}
.y4b_c00279{bottom:573.083520pt;}
.y4a_c00279{bottom:573.345907pt;}
.y49_c00279{bottom:573.746107pt;}
.y48_c00279{bottom:574.095147pt;}
.y47_c00279{bottom:575.158240pt;}
.y46_c00279{bottom:576.955707pt;}
.y45_c00279{bottom:590.452267pt;}
.y44_c00279{bottom:591.179293pt;}
.y43_c00279{bottom:591.398587pt;}
.y42_c00279{bottom:591.734040pt;}
.y41_c00279{bottom:592.335867pt;}
.y40_c00279{bottom:592.639480pt;}
.y3f_c00279{bottom:593.172853pt;}
.y3e_c00279{bottom:593.627173pt;}
.y3d_c00279{bottom:594.387453pt;}
.y3c_c00279{bottom:594.622480pt;}
.y3b_c00279{bottom:594.957560pt;}
.y3a_c00279{bottom:610.757440pt;}
.y39_c00279{bottom:611.191120pt;}
.y38_c00279{bottom:611.895907pt;}
.y37_c00279{bottom:612.329373pt;}
.y36_c00279{bottom:612.575733pt;}
.y35_c00279{bottom:613.219573pt;}
.y34_c00279{bottom:613.861480pt;}
.y33_c00279{bottom:614.072107pt;}
.y32_c00279{bottom:614.669267pt;}
.y31_c00279{bottom:615.121080pt;}
.y30_c00279{bottom:631.108053pt;}
.y2f_c00279{bottom:631.266160pt;}
.y2e_c00279{bottom:632.014973pt;}
.y2d_c00279{bottom:632.295853pt;}
.y2c_c00279{bottom:632.622267pt;}
.y2b_c00279{bottom:632.869627pt;}
.y2a_c00279{bottom:633.317973pt;}
.y29_c00279{bottom:633.767427pt;}
.y28_c00279{bottom:634.009547pt;}
.y27_c00279{bottom:634.575893pt;}
.y26_c00279{bottom:634.768053pt;}
.y25_c00279{bottom:635.041333pt;}
.y24_c00279{bottom:651.658453pt;}
.y23_c00279{bottom:652.058187pt;}
.y22_c00279{bottom:652.188693pt;}
.y21_c00279{bottom:652.449856pt;}
.y20_c00279{bottom:652.872277pt;}
.y1f_c00279{bottom:653.067893pt;}
.y1e_c00279{bottom:653.261792pt;}
.y1d_c00279{bottom:653.379509pt;}
.y1c_c00279{bottom:653.859168pt;}
.y1b_c00279{bottom:654.124213pt;}
.y1a_c00279{bottom:654.302741pt;}
.y19_c00279{bottom:654.629163pt;}
.y18_c00279{bottom:654.925003pt;}
.y17_c00279{bottom:655.201333pt;}
.y16_c00279{bottom:670.756544pt;}
.y15_c00279{bottom:671.701525pt;}
.y14_c00279{bottom:672.332117pt;}
.y13_c00279{bottom:672.527541pt;}
.y12_c00279{bottom:672.801813pt;}
.y11_c00279{bottom:673.533728pt;}
.y10_c00279{bottom:673.874411pt;}
.yf_c00279{bottom:674.452597pt;}
.ye_c00279{bottom:674.692640pt;}
.yd_c00279{bottom:675.049173pt;}
.yc_c00279{bottom:675.360779pt;}
.yb_c00279{bottom:692.332011pt;}
.ya_c00279{bottom:692.760160pt;}
.y9_c00279{bottom:693.047936pt;}
.y8_c00279{bottom:693.484085pt;}
.y7_c00279{bottom:693.668373pt;}
.y6_c00279{bottom:694.355755pt;}
.y5_c00279{bottom:694.676171pt;}
.y4_c00279{bottom:694.830133pt;}
.y3_c00279{bottom:695.281333pt;}
.y2_c00279{bottom:722.264000pt;}
.y1_c00279{bottom:742.164000pt;}
.h16_c00279{height:49.483384pt;}
.h10_c00279{height:55.073715pt;}
.ha_c00279{height:56.936180pt;}
.h12_c00279{height:56.940620pt;}
.hb_c00279{height:58.802940pt;}
.h13_c00279{height:59.750534pt;}
.h2_c00279{height:60.666667pt;}
.h7_c00279{height:60.669700pt;}
.h6_c00279{height:61.601971pt;}
.hf_c00279{height:61.607884pt;}
.h3_c00279{height:62.533333pt;}
.h9_c00279{height:62.536460pt;}
.h11_c00279{height:62.541337pt;}
.h5_c00279{height:63.468698pt;}
.he_c00279{height:63.474790pt;}
.h8_c00279{height:64.403220pt;}
.h14_c00279{height:65.347738pt;}
.hd_c00279{height:66.269980pt;}
.h4_c00279{height:67.202150pt;}
.hc_c00279{height:67.203360pt;}
.h15_c00279{height:83.070031pt;}
.h0_c00279{height:896.400000pt;}
.h1_c00279{height:896.666667pt;}
.w0_c00279{width:618.666667pt;}
.x0_c00279{left:0.000000pt;}
.x8b_c00279{left:123.879776pt;}
.x12_c00279{left:133.118208pt;}
.x1b_c00279{left:134.796000pt;}
.xab_c00279{left:144.736000pt;}
.x51_c00279{left:145.716013pt;}
.x5d_c00279{left:146.940000pt;}
.xa7_c00279{left:148.893333pt;}
.xa_c00279{left:150.376000pt;}
.x97_c00279{left:153.378603pt;}
.x92_c00279{left:154.344800pt;}
.x57_c00279{left:159.418200pt;}
.x28_c00279{left:160.449333pt;}
.x13_c00279{left:161.401525pt;}
.x6e_c00279{left:163.007872pt;}
.x37_c00279{left:165.005707pt;}
.x1c_c00279{left:169.337333pt;}
.x83_c00279{left:171.466805pt;}
.x2f_c00279{left:175.328520pt;}
.x29_c00279{left:179.665333pt;}
.x66_c00279{left:181.704107pt;}
.x4_c00279{left:182.880000pt;}
.x38_c00279{left:186.374827pt;}
.x78_c00279{left:187.477515pt;}
.xac_c00279{left:192.770667pt;}
.x1_c00279{left:194.640000pt;}
.x5_c00279{left:197.280000pt;}
.x5e_c00279{left:199.989333pt;}
.x8c_c00279{left:201.157493pt;}
.xb_c00279{left:206.776000pt;}
.x84_c00279{left:208.205035pt;}
.x6f_c00279{left:209.579712pt;}
.x52_c00279{left:213.175960pt;}
.x58_c00279{left:214.376467pt;}
.x14_c00279{left:215.638891pt;}
.x7d_c00279{left:217.729067pt;}
.x93_c00279{left:219.163616pt;}
.x45_c00279{left:220.957067pt;}
.xc_c00279{left:226.021333pt;}
.x30_c00279{left:229.577307pt;}
.x70_c00279{left:230.700363pt;}
.x85_c00279{left:233.589152pt;}
.x98_c00279{left:234.988075pt;}
.x2a_c00279{left:236.300000pt;}
.x5f_c00279{left:238.640000pt;}
.xa8_c00279{left:241.070667pt;}
.x46_c00279{left:242.024227pt;}
.x1d_c00279{left:247.120000pt;}
.x31_c00279{left:248.773120pt;}
.xad_c00279{left:252.086667pt;}
.x2_c00279{left:255.840000pt;}
.x67_c00279{left:258.321557pt;}
.x59_c00279{left:259.570187pt;}
.x2b_c00279{left:260.512000pt;}
.x79_c00279{left:262.135403pt;}
.x3e_c00279{left:263.644947pt;}
.x6_c00279{left:266.880000pt;}
.x15_c00279{left:268.244299pt;}
.x1e_c00279{left:269.436000pt;}
.x53_c00279{left:272.212573pt;}
.x7e_c00279{left:273.281045pt;}
.xae_c00279{left:274.330667pt;}
.x7_c00279{left:280.560000pt;}
.x60_c00279{left:283.761333pt;}
.x99_c00279{left:285.597355pt;}
.xa1_c00279{left:290.925333pt;}
.x86_c00279{left:292.063669pt;}
.x71_c00279{left:295.706293pt;}
.x39_c00279{left:296.767053pt;}
.x16_c00279{left:299.162219pt;}
.x8d_c00279{left:300.769803pt;}
.x1f_c00279{left:302.566667pt;}
.x2c_c00279{left:305.457333pt;}
.x32_c00279{left:307.096533pt;}
.x9a_c00279{left:308.390208pt;}
.x94_c00279{left:309.400405pt;}
.xa2_c00279{left:311.097333pt;}
.x61_c00279{left:314.721333pt;}
.x54_c00279{left:316.771680pt;}
.x72_c00279{left:318.518901pt;}
.x3_c00279{left:325.200000pt;}
.x8e_c00279{left:326.442827pt;}
.x68_c00279{left:327.443115pt;}
.x4b_c00279{left:329.638507pt;}
.x90_c00279{left:331.894443pt;}
.x5a_c00279{left:334.394867pt;}
.x55_c00279{left:337.183387pt;}
.x3f_c00279{left:339.551240pt;}
.x47_c00279{left:341.652240pt;}
.x3a_c00279{left:345.303907pt;}
.x4c_c00279{left:347.631480pt;}
.x8_c00279{left:350.640000pt;}
.xd_c00279{left:351.996000pt;}
.x7f_c00279{left:353.864907pt;}
.x91_c00279{left:355.477899pt;}
.x95_c00279{left:356.436629pt;}
.x8f_c00279{left:357.726155pt;}
.x9_c00279{left:360.720000pt;}
.x20_c00279{left:362.524000pt;}
.x40_c00279{left:364.454240pt;}
.x17_c00279{left:365.649952pt;}
.x4d_c00279{left:369.715040pt;}
.x9b_c00279{left:370.866549pt;}
.x3b_c00279{left:372.864960pt;}
.x48_c00279{left:373.780293pt;}
.xe_c00279{left:375.032000pt;}
.x21_c00279{left:377.238667pt;}
.x73_c00279{left:381.128896pt;}
.x69_c00279{left:384.578197pt;}
.x5b_c00279{left:385.966747pt;}
.x33_c00279{left:387.982387pt;}
.x18_c00279{left:390.600021pt;}
.x41_c00279{left:393.006427pt;}
.x74_c00279{left:397.528363pt;}
.x7a_c00279{left:400.237216pt;}
.x22_c00279{left:401.476000pt;}
.x87_c00279{left:403.034357pt;}
.x5c_c00279{left:404.454600pt;}
.x19_c00279{left:408.360928pt;}
.xa3_c00279{left:410.474667pt;}
.x42_c00279{left:411.777680pt;}
.x6a_c00279{left:416.248352pt;}
.x88_c00279{left:418.625611pt;}
.x9c_c00279{left:422.386432pt;}
.x56_c00279{left:423.401827pt;}
.x23_c00279{left:425.928000pt;}
.x34_c00279{left:427.328653pt;}
.xf_c00279{left:429.550667pt;}
.x75_c00279{left:431.584608pt;}
.x4e_c00279{left:433.187107pt;}
.x96_c00279{left:434.447733pt;}
.x2d_c00279{left:435.757333pt;}
.x89_c00279{left:440.224565pt;}
.x9d_c00279{left:441.504896pt;}
.x9f_c00279{left:444.912811pt;}
.x4f_c00279{left:447.008160pt;}
.x49_c00279{left:448.902627pt;}
.x62_c00279{left:451.538667pt;}
.xa9_c00279{left:455.668000pt;}
.x3c_c00279{left:458.058773pt;}
.x80_c00279{left:461.460736pt;}
.x43_c00279{left:463.539613pt;}
.x10_c00279{left:465.522667pt;}
.x63_c00279{left:466.660000pt;}
.xaf_c00279{left:471.490667pt;}
.xa5_c00279{left:475.269333pt;}
.x8a_c00279{left:477.272128pt;}
.x24_c00279{left:478.730667pt;}
.x6b_c00279{left:481.049973pt;}
.xa0_c00279{left:482.914496pt;}
.x4a_c00279{left:485.370507pt;}
.x81_c00279{left:486.619285pt;}
.x35_c00279{left:491.406680pt;}
.x50_c00279{left:494.732533pt;}
.x9e_c00279{left:496.132523pt;}
.xa4_c00279{left:499.369333pt;}
.x7b_c00279{left:500.928085pt;}
.x6c_c00279{left:510.337504pt;}
.x25_c00279{left:511.376000pt;}
.x44_c00279{left:513.569613pt;}
.x64_c00279{left:515.633333pt;}
.x11_c00279{left:519.041333pt;}
.x76_c00279{left:521.849728pt;}
.x2e_c00279{left:526.449333pt;}
.x26_c00279{left:527.689333pt;}
.x82_c00279{left:529.120000pt;}
.x36_c00279{left:530.774280pt;}
.x6d_c00279{left:533.178475pt;}
.x77_c00279{left:536.666592pt;}
.x7c_c00279{left:541.429504pt;}
.x3d_c00279{left:544.023240pt;}
.xaa_c00279{left:546.302667pt;}
.x1a_c00279{left:551.637493pt;}
.x65_c00279{left:553.206667pt;}
.x27_c00279{left:577.656000pt;}
.xa6_c00279{left:584.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8c_c00280{transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.035020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035020,0.000000,0.000000,0.250000,0,0);}
.maf_c00280{transform:matrix(0.045105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045105,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.091430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091430,0.000000,0.000000,0.250000,0,0);}
.m10c_c00280{transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.109990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109990,0.000000,0.000000,0.250000,0,0);}
.m143_c00280{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);}
.m10e_c00280{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);}
.m2a_c00280{transform:matrix(0.142655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142655,0.000000,0.000000,0.250000,0,0);}
.maa_c00280{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);}
.m12e_c00280{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);}
.m79_c00280{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);}
.me4_c00280{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{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);}
.meb_c00280{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);}
.ma1_c00280{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{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);}
.ma0_c00280{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);}
.m125_c00280{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);}
.m105_c00280{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);}
.md6_c00280{transform:matrix(0.153820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153820,0.000000,0.000000,0.250000,0,0);}
.m116_c00280{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);}
.m112_c00280{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);}
.m29_c00280{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{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);}
.m10a_c00280{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);}
.m10_c00280{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);}
.m1c_c00280{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);}
.m9d_c00280{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);}
.m11c_c00280{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);}
.m2d_c00280{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);}
.mdd_c00280{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m100_c00280{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);}
.m1b_c00280{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);}
.m11_c00280{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);}
.me3_c00280{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);}
.mda_c00280{transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);}
.m102_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);}
.md7_c00280{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{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);}
.m101_c00280{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);}
.m9e_c00280{transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);}
.m11b_c00280{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);}
.mf_c00280{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);}
.md3_c00280{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);}
.m4a_c00280{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);}
.me_c00280{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);}
.m10f_c00280{transform:matrix(0.169455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169455,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{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);}
.m13f_c00280{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);}
.ma8_c00280{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);}
.m9_c00280{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);}
.mf2_c00280{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);}
.m104_c00280{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);}
.m83_c00280{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);}
.m7d_c00280{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_c00280{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);}
.m117_c00280{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);}
.m8d_c00280{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);}
.mb4_c00280{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);}
.mb9_c00280{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);}
.m8e_c00280{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);}
.m110_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);}
.m52_c00280{transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{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);}
.md9_c00280{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);}
.mc_c00280{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);}
.m4d_c00280{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);}
.md5_c00280{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);}
.mef_c00280{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);}
.m15_c00280{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);}
.m5d_c00280{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);}
.m17_c00280{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);}
.m2e_c00280{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);}
.m30_c00280{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);}
.m5_c00280{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);}
.m128_c00280{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);}
.md1_c00280{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);}
.md4_c00280{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);}
.m7a_c00280{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);}
.mae_c00280{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);}
.m13d_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);}
.mc4_c00280{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);}
.m2c_c00280{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);}
.m126_c00280{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);}
.mc1_c00280{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);}
.m127_c00280{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);}
.m90_c00280{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);}
.m91_c00280{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);}
.mea_c00280{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);}
.mfe_c00280{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);}
.m47_c00280{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);}
.mb3_c00280{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);}
.m86_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);}
.me5_c00280{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);}
.mbc_c00280{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);}
.m2b_c00280{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);}
.m6_c00280{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);}
.m2_c00280{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);}
.mdc_c00280{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);}
.ma_c00280{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);}
.m115_c00280{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);}
.mcf_c00280{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);}
.m6c_c00280{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);}
.m1d_c00280{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);}
.m19_c00280{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);}
.mde_c00280{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);}
.m3b_c00280{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);}
.m26_c00280{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);}
.mfd_c00280{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);}
.m3f_c00280{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);}
.m106_c00280{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);}
.m12a_c00280{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);}
.m14_c00280{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);}
.me1_c00280{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);}
.m1e_c00280{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);}
.me2_c00280{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);}
.m11e_c00280{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);}
.mf1_c00280{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);}
.m11d_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);}
.m60_c00280{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);}
.m5c_c00280{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);}
.mf0_c00280{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);}
.mf8_c00280{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);}
.m9f_c00280{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);}
.mdf_c00280{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);}
.m139_c00280{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);}
.m50_c00280{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);}
.m133_c00280{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);}
.m24_c00280{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);}
.m97_c00280{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);}
.m138_c00280{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);}
.mee_c00280{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);}
.mc2_c00280{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);}
.mf4_c00280{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);}
.med_c00280{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);}
.md2_c00280{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);}
.m36_c00280{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);}
.m1a_c00280{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);}
.ma7_c00280{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);}
.mbb_c00280{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);}
.m16_c00280{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);}
.md_c00280{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);}
.me0_c00280{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);}
.mac_c00280{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);}
.ma9_c00280{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);}
.md8_c00280{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);}
.m9b_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);}
.m10b_c00280{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);}
.mc0_c00280{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);}
.m131_c00280{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);}
.mf6_c00280{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);}
.m114_c00280{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);}
.m111_c00280{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);}
.mbd_c00280{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);}
.m80_c00280{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);}
.m7b_c00280{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_c00280{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);}
.m74_c00280{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);}
.m3d_c00280{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);}
.m13_c00280{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);}
.m12b_c00280{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);}
.m135_c00280{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);}
.m4f_c00280{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);}
.ma2_c00280{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);}
.m2f_c00280{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);}
.m13b_c00280{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);}
.m121_c00280{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);}
.m20_c00280{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);}
.m9c_c00280{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);}
.mf9_c00280{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);}
.m53_c00280{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);}
.m96_c00280{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);}
.mfc_c00280{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);}
.m13a_c00280{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);}
.mcc_c00280{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);}
.m27_c00280{transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{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);}
.m59_c00280{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);}
.mc5_c00280{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);}
.m120_c00280{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);}
.m77_c00280{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);}
.m37_c00280{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);}
.m40_c00280{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);}
.m45_c00280{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);}
.m35_c00280{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);}
.m4e_c00280{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);}
.m56_c00280{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);}
.m136_c00280{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);}
.m12f_c00280{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);}
.m78_c00280{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);}
.mb6_c00280{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);}
.mf5_c00280{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);}
.me9_c00280{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);}
.mad_c00280{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);}
.m5f_c00280{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);}
.m118_c00280{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);}
.m123_c00280{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);}
.mb8_c00280{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);}
.m132_c00280{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);}
.m1f_c00280{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);}
.m5e_c00280{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);}
.m49_c00280{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);}
.m43_c00280{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);}
.m92_c00280{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);}
.m134_c00280{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);}
.m32_c00280{transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{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);}
.m113_c00280{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);}
.m122_c00280{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);}
.m68_c00280{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);}
.ma6_c00280{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);}
.m119_c00280{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);}
.m5b_c00280{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);}
.m12c_c00280{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);}
.m72_c00280{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);}
.m8a_c00280{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);}
.m25_c00280{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);}
.ma4_c00280{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);}
.mc9_c00280{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);}
.ma3_c00280{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);}
.m8_c00280{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);}
.m4c_c00280{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);}
.m51_c00280{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);}
.m61_c00280{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);}
.m33_c00280{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);}
.m89_c00280{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);}
.m103_c00280{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);}
.m12d_c00280{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{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);}
.m129_c00280{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);}
.m142_c00280{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);}
.m75_c00280{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);}
.mc3_c00280{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{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);}
.m57_c00280{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);}
.me7_c00280{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);}
.m130_c00280{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);}
.mcd_c00280{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);}
.m109_c00280{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{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);}
.m48_c00280{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);}
.m87_c00280{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);}
.m13e_c00280{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);}
.mdb_c00280{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);}
.mc8_c00280{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);}
.m44_c00280{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);}
.m7f_c00280{transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);}
.mff_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);}
.ma5_c00280{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);}
.m85_c00280{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);}
.mb5_c00280{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);}
.m23_c00280{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);}
.m67_c00280{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);}
.mec_c00280{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);}
.m8b_c00280{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);}
.m11f_c00280{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);}
.mc6_c00280{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);}
.mb1_c00280{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);}
.mc7_c00280{transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);}
.mbf_c00280{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);}
.mfa_c00280{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);}
.m41_c00280{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);}
.m62_c00280{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);}
.m137_c00280{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);}
.m107_c00280{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{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);}
.m81_c00280{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);}
.mf3_c00280{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{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);}
.m42_c00280{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);}
.mf7_c00280{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.me6_c00280{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);}
.mb2_c00280{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);}
.m88_c00280{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);}
.m124_c00280{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);}
.mba_c00280{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);}
.m65_c00280{transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);}
.mb7_c00280{transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243795,0.000000,0.000000,0.250000,0,0);}
.mcb_c00280{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);}
.m8f_c00280{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);}
.m140_c00280{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);}
.m11a_c00280{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);}
.m39_c00280{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m108_c00280{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.mca_c00280{transform:matrix(0.257045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257045,0.000000,0.000000,0.250000,0,0);}
.me8_c00280{transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);}
.m10d_c00280{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);}
.mbe_c00280{transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{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);}
.md0_c00280{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);}
.m13c_c00280{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.265220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265220,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.268575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268575,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{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);}
.m98_c00280{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279920,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281280,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{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);}
.m141_c00280{transform:matrix(0.287840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287840,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);}
.mb0_c00280{transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305730,0.000000,0.000000,0.250000,0,0);}
.mce_c00280{transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334260,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.337890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337890,0.000000,0.000000,0.250000,0,0);}
.mfb_c00280{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);}
.m145_c00280{transform:matrix(0.357415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357415,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.358045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358045,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);}
.mab_c00280{transform:matrix(0.383445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383445,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395010,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.396110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396110,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.421515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421515,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.450515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450515,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.494945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494945,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.572825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572825,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.585445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585445,0.000000,0.000000,0.250000,0,0);}
.m144_c00280{transform:matrix(0.967425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967425,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;}
._0_c00280{width:1.086026px;}
.fc0_c00280{color:transparent;}
.fs0_c00280{font-size:18.900000px;}
.fsa_c00280{font-size:60.900000px;}
.fs9_c00280{font-size:61.950000px;}
.fsb_c00280{font-size:63.000000px;}
.fs6_c00280{font-size:66.150000px;}
.fs8_c00280{font-size:67.200000px;}
.fs4_c00280{font-size:68.250000px;}
.fs2_c00280{font-size:69.300000px;}
.fs7_c00280{font-size:70.350000px;}
.fsc_c00280{font-size:71.400000px;}
.fs5_c00280{font-size:72.450000px;}
.fs3_c00280{font-size:77.700000px;}
.fsd_c00280{font-size:78.750000px;}
.fs1_c00280{font-size:135.450000px;}
.y0_c00280{bottom:0.000000px;}
.y74_c00280{bottom:104.380500px;}
.y73_c00280{bottom:152.698500px;}
.y67_c00280{bottom:172.795500px;}
.y68_c00280{bottom:173.340000px;}
.y69_c00280{bottom:173.442000px;}
.y6a_c00280{bottom:173.613000px;}
.y6b_c00280{bottom:174.139500px;}
.y6c_c00280{bottom:174.310500px;}
.y6d_c00280{bottom:174.621000px;}
.y6e_c00280{bottom:174.802500px;}
.y6f_c00280{bottom:175.020000px;}
.y70_c00280{bottom:175.836000px;}
.y71_c00280{bottom:176.130000px;}
.y72_c00280{bottom:176.223000px;}
.y5d_c00280{bottom:196.287000px;}
.y5e_c00280{bottom:196.551000px;}
.y5f_c00280{bottom:197.067000px;}
.y60_c00280{bottom:197.262000px;}
.y61_c00280{bottom:197.932500px;}
.y62_c00280{bottom:198.193500px;}
.y63_c00280{bottom:198.405000px;}
.y64_c00280{bottom:198.640500px;}
.y65_c00280{bottom:199.090500px;}
.y66_c00280{bottom:199.323000px;}
.y52_c00280{bottom:218.697000px;}
.y53_c00280{bottom:219.054000px;}
.y54_c00280{bottom:219.346500px;}
.y55_c00280{bottom:219.814500px;}
.y56_c00280{bottom:219.948000px;}
.y57_c00280{bottom:220.218000px;}
.y58_c00280{bottom:220.396500px;}
.y59_c00280{bottom:220.593000px;}
.y5a_c00280{bottom:220.969500px;}
.y5b_c00280{bottom:221.490000px;}
.y5c_c00280{bottom:221.719500px;}
.y47_c00280{bottom:240.837000px;}
.y48_c00280{bottom:240.967500px;}
.y49_c00280{bottom:241.120500px;}
.y4a_c00280{bottom:241.555500px;}
.y4b_c00280{bottom:242.046000px;}
.y4c_c00280{bottom:242.305500px;}
.y4d_c00280{bottom:242.689500px;}
.y4e_c00280{bottom:242.967000px;}
.y4f_c00280{bottom:243.352500px;}
.y50_c00280{bottom:243.619500px;}
.y51_c00280{bottom:243.949500px;}
.y3c_c00280{bottom:263.248500px;}
.y3d_c00280{bottom:263.506500px;}
.y3e_c00280{bottom:263.601000px;}
.y3f_c00280{bottom:263.841000px;}
.y40_c00280{bottom:264.132000px;}
.y41_c00280{bottom:264.417000px;}
.y42_c00280{bottom:264.714000px;}
.y43_c00280{bottom:264.960000px;}
.y44_c00280{bottom:265.159500px;}
.y45_c00280{bottom:265.564500px;}
.y46_c00280{bottom:266.059500px;}
.y3b_c00280{bottom:288.180000px;}
.y30_c00280{bottom:308.608500px;}
.y31_c00280{bottom:308.935500px;}
.y32_c00280{bottom:309.166500px;}
.y33_c00280{bottom:309.427500px;}
.y34_c00280{bottom:309.669000px;}
.y35_c00280{bottom:309.915000px;}
.y36_c00280{bottom:310.431000px;}
.y37_c00280{bottom:310.902000px;}
.y38_c00280{bottom:311.040000px;}
.y39_c00280{bottom:311.493000px;}
.y3a_c00280{bottom:311.742000px;}
.y2f_c00280{bottom:333.013500px;}
.y2e_c00280{bottom:355.935000px;}
.y2d_c00280{bottom:378.649500px;}
.y2c_c00280{bottom:401.569500px;}
.y2b_c00280{bottom:423.774000px;}
.y2a_c00280{bottom:446.241000px;}
.y29_c00280{bottom:469.102500px;}
.y28_c00280{bottom:491.752500px;}
.y27_c00280{bottom:514.731000px;}
.y26_c00280{bottom:537.192000px;}
.y25_c00280{bottom:560.361000px;}
.y24_c00280{bottom:582.490500px;}
.y23_c00280{bottom:604.068000px;}
.y22_c00280{bottom:650.241000px;}
.y15_c00280{bottom:670.950000px;}
.y16_c00280{bottom:671.211000px;}
.y17_c00280{bottom:671.322000px;}
.y18_c00280{bottom:671.562000px;}
.y19_c00280{bottom:672.049500px;}
.y1a_c00280{bottom:672.210000px;}
.y1b_c00280{bottom:672.499500px;}
.y1c_c00280{bottom:672.654000px;}
.y1d_c00280{bottom:673.002000px;}
.y1e_c00280{bottom:673.366500px;}
.y1f_c00280{bottom:673.548000px;}
.y20_c00280{bottom:673.902000px;}
.y21_c00280{bottom:674.082000px;}
.y14_c00280{bottom:695.329500px;}
.y8_c00280{bottom:716.580000px;}
.y9_c00280{bottom:716.763000px;}
.ya_c00280{bottom:716.929500px;}
.yb_c00280{bottom:717.279000px;}
.yc_c00280{bottom:717.517500px;}
.yd_c00280{bottom:717.793500px;}
.ye_c00280{bottom:718.470000px;}
.yf_c00280{bottom:718.591500px;}
.y10_c00280{bottom:718.848000px;}
.y11_c00280{bottom:719.137500px;}
.y12_c00280{bottom:719.473500px;}
.y13_c00280{bottom:719.803500px;}
.y7_c00280{bottom:741.258000px;}
.y6_c00280{bottom:763.909500px;}
.y5_c00280{bottom:786.351000px;}
.y4_c00280{bottom:808.551000px;}
.y3_c00280{bottom:831.438000px;}
.y2_c00280{bottom:876.510000px;}
.y1_c00280{bottom:960.390000px;}
.h2_c00280{height:18.900000px;}
.hc_c00280{height:60.900000px;}
.hb_c00280{height:61.950000px;}
.hd_c00280{height:63.000000px;}
.h8_c00280{height:66.150000px;}
.ha_c00280{height:67.200000px;}
.h6_c00280{height:68.250000px;}
.h4_c00280{height:69.300000px;}
.h9_c00280{height:70.350000px;}
.he_c00280{height:71.400000px;}
.h7_c00280{height:72.450000px;}
.h5_c00280{height:77.700000px;}
.hf_c00280{height:78.750000px;}
.h3_c00280{height:135.450000px;}
.h1_c00280{height:1005.000000px;}
.h0_c00280{height:1005.150000px;}
.w0_c00280{width:702.540000px;}
.w1_c00280{width:702.750000px;}
.x0_c00280{left:0.000000px;}
.x89_c00280{left:69.930000px;}
.x39_c00280{left:75.970500px;}
.xf_c00280{left:79.920000px;}
.x9e_c00280{left:81.270000px;}
.x6_c00280{left:83.160000px;}
.x45_c00280{left:84.241500px;}
.x62_c00280{left:85.860000px;}
.x6a_c00280{left:87.210000px;}
.x95_c00280{left:88.560000px;}
.xb7_c00280{left:90.817500px;}
.xb9_c00280{left:92.188500px;}
.x3a_c00280{left:102.153000px;}
.x80_c00280{left:103.950000px;}
.x2f_c00280{left:105.570000px;}
.xb1_c00280{left:107.823000px;}
.x60_c00280{left:111.240000px;}
.x10_c00280{left:113.130000px;}
.x64_c00280{left:114.210000px;}
.x71_c00280{left:116.910000px;}
.x78_c00280{left:118.800000px;}
.x1a_c00280{left:120.960000px;}
.x4d_c00280{left:122.136000px;}
.x46_c00280{left:124.471500px;}
.x3b_c00280{left:125.898000px;}
.x58_c00280{left:128.251500px;}
.x96_c00280{left:130.410000px;}
.x7_c00280{left:132.300000px;}
.x65_c00280{left:135.270000px;}
.x1b_c00280{left:136.890000px;}
.x4e_c00280{left:138.075000px;}
.x91_c00280{left:139.320000px;}
.xb4_c00280{left:140.494500px;}
.x30_c00280{left:142.290000px;}
.x47_c00280{left:146.881500px;}
.x11_c00280{left:152.010000px;}
.x1c_c00280{left:156.600000px;}
.x8_c00280{left:158.220000px;}
.x27_c00280{left:159.300000px;}
.xa6_c00280{left:167.229000px;}
.x9f_c00280{left:168.480000px;}
.x63_c00280{left:169.560000px;}
.x4f_c00280{left:172.387500px;}
.x97_c00280{left:173.610000px;}
.x3c_c00280{left:175.891500px;}
.x31_c00280{left:179.010000px;}
.xaa_c00280{left:180.090000px;}
.xb5_c00280{left:182.346000px;}
.xbf_c00280{left:183.600000px;}
.x12_c00280{left:184.680000px;}
.x28_c00280{left:188.190000px;}
.x8a_c00280{left:190.890000px;}
.x1d_c00280{left:193.320000px;}
.x2_c00280{left:195.210000px;}
.x6b_c00280{left:196.830000px;}
.x98_c00280{left:197.910000px;}
.xa0_c00280{left:198.990000px;}
.x66_c00280{left:201.960000px;}
.x61_c00280{left:203.040000px;}
.x92_c00280{left:204.120000px;}
.x3d_c00280{left:209.908500px;}
.x48_c00280{left:211.681500px;}
.xae_c00280{left:215.554500px;}
.x29_c00280{left:217.350000px;}
.x13_c00280{left:220.320000px;}
.x6c_c00280{left:221.940000px;}
.x9_c00280{left:227.610000px;}
.x72_c00280{left:228.960000px;}
.xb8_c00280{left:230.148000px;}
.x1e_c00280{left:231.390000px;}
.x79_c00280{left:233.010000px;}
.xa7_c00280{left:239.052000px;}
.x50_c00280{left:242.016000px;}
.x8b_c00280{left:243.810000px;}
.x49_c00280{left:245.701500px;}
.x3e_c00280{left:249.357000px;}
.x32_c00280{left:250.560000px;}
.x7a_c00280{left:251.640000px;}
.x67_c00280{left:254.880000px;}
.x73_c00280{left:256.770000px;}
.x1f_c00280{left:258.930000px;}
.x81_c00280{left:260.820000px;}
.x99_c00280{left:262.710000px;}
.x51_c00280{left:264.936000px;}
.xb6_c00280{left:268.470000px;}
.x59_c00280{left:272.161500px;}
.xa8_c00280{left:274.152000px;}
.x14_c00280{left:279.990000px;}
.xba_c00280{left:281.454000px;}
.x20_c00280{left:284.310000px;}
.x82_c00280{left:288.900000px;}
.x9a_c00280{left:290.520000px;}
.xa_c00280{left:292.410000px;}
.x5a_c00280{left:297.001500px;}
.xaf_c00280{left:298.683000px;}
.x2a_c00280{left:300.510000px;}
.x93_c00280{left:303.210000px;}
.xa1_c00280{left:306.180000px;}
.x4a_c00280{left:307.261500px;}
.x33_c00280{left:308.880000px;}
.x15_c00280{left:312.120000px;}
.x7b_c00280{left:318.600000px;}
.xbb_c00280{left:320.335500px;}
.x34_c00280{left:322.650000px;}
.x21_c00280{left:325.890000px;}
.x52_c00280{left:328.414500px;}
.x6d_c00280{left:329.670000px;}
.x74_c00280{left:331.560000px;}
.x5b_c00280{left:333.181500px;}
.x4b_c00280{left:340.201500px;}
.xbc_c00280{left:343.003500px;}
.x83_c00280{left:344.790000px;}
.x3f_c00280{left:345.961500px;}
.x3_c00280{left:348.570000px;}
.xb_c00280{left:351.270000px;}
.x16_c00280{left:352.890000px;}
.x5c_c00280{left:355.861500px;}
.x75_c00280{left:360.720000px;}
.x40_c00280{left:363.268500px;}
.x22_c00280{left:365.850000px;}
.x2b_c00280{left:368.010000px;}
.xbd_c00280{left:370.281000px;}
.x9b_c00280{left:375.300000px;}
.x8c_c00280{left:376.920000px;}
.x53_c00280{left:378.073500px;}
.xa2_c00280{left:379.620000px;}
.x35_c00280{left:385.290000px;}
.x68_c00280{left:390.960000px;}
.x17_c00280{left:392.310000px;}
.x4_c00280{left:393.930000px;}
.x6e_c00280{left:396.090000px;}
.x41_c00280{left:400.000500px;}
.x23_c00280{left:406.080000px;}
.xbe_c00280{left:407.163000px;}
.x1_c00280{left:409.860000px;}
.x8f_c00280{left:414.990000px;}
.x2c_c00280{left:416.070000px;}
.x36_c00280{left:417.420000px;}
.x7c_c00280{left:419.850000px;}
.x24_c00280{left:422.820000px;}
.x76_c00280{left:427.680000px;}
.xab_c00280{left:429.030000px;}
.x54_c00280{left:430.171500px;}
.xa3_c00280{left:431.460000px;}
.xa9_c00280{left:434.767500px;}
.x84_c00280{left:437.400000px;}
.xc_c00280{left:439.560000px;}
.x42_c00280{left:441.304500px;}
.x5d_c00280{left:443.611500px;}
.x37_c00280{left:449.280000px;}
.x85_c00280{left:453.060000px;}
.x8d_c00280{left:454.950000px;}
.x55_c00280{left:456.096000px;}
.x9c_c00280{left:457.110000px;}
.x2d_c00280{left:458.730000px;}
.xa4_c00280{left:467.100000px;}
.xd_c00280{left:469.260000px;}
.x86_c00280{left:471.960000px;}
.x4c_c00280{left:480.061500px;}
.x5_c00280{left:481.950000px;}
.xb2_c00280{left:486.621000px;}
.x43_c00280{left:489.343500px;}
.xb0_c00280{left:490.950000px;}
.x8e_c00280{left:493.020000px;}
.x7d_c00280{left:494.100000px;}
.x25_c00280{left:495.450000px;}
.x5e_c00280{left:496.801500px;}
.x77_c00280{left:500.310000px;}
.x38_c00280{left:501.390000px;}
.xac_c00280{left:503.010000px;}
.x2e_c00280{left:504.090000px;}
.x18_c00280{left:505.440000px;}
.x56_c00280{left:506.608500px;}
.x9d_c00280{left:508.950000px;}
.x87_c00280{left:511.110000px;}
.xe_c00280{left:514.350000px;}
.x26_c00280{left:515.700000px;}
.x94_c00280{left:517.320000px;}
.x7e_c00280{left:520.290000px;}
.x19_c00280{left:524.070000px;}
.x69_c00280{left:527.040000px;}
.x6f_c00280{left:531.090000px;}
.x57_c00280{left:532.249500px;}
.xb3_c00280{left:533.857500px;}
.x7f_c00280{left:535.140000px;}
.x44_c00280{left:536.565000px;}
.x88_c00280{left:538.920000px;}
.x5f_c00280{left:540.001500px;}
.x90_c00280{left:544.860000px;}
.xa5_c00280{left:549.450000px;}
.xad_c00280{left:555.120000px;}
.x70_c00280{left:572.940000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
._0_c00280{width:0.965356pt;}
.fs0_c00280{font-size:16.800000pt;}
.fsa_c00280{font-size:54.133333pt;}
.fs9_c00280{font-size:55.066667pt;}
.fsb_c00280{font-size:56.000000pt;}
.fs6_c00280{font-size:58.800000pt;}
.fs8_c00280{font-size:59.733333pt;}
.fs4_c00280{font-size:60.666667pt;}
.fs2_c00280{font-size:61.600000pt;}
.fs7_c00280{font-size:62.533333pt;}
.fsc_c00280{font-size:63.466667pt;}
.fs5_c00280{font-size:64.400000pt;}
.fs3_c00280{font-size:69.066667pt;}
.fsd_c00280{font-size:70.000000pt;}
.fs1_c00280{font-size:120.400000pt;}
.y0_c00280{bottom:0.000000pt;}
.y74_c00280{bottom:92.782667pt;}
.y73_c00280{bottom:135.732000pt;}
.y67_c00280{bottom:153.596000pt;}
.y68_c00280{bottom:154.080000pt;}
.y69_c00280{bottom:154.170667pt;}
.y6a_c00280{bottom:154.322667pt;}
.y6b_c00280{bottom:154.790667pt;}
.y6c_c00280{bottom:154.942667pt;}
.y6d_c00280{bottom:155.218667pt;}
.y6e_c00280{bottom:155.380000pt;}
.y6f_c00280{bottom:155.573333pt;}
.y70_c00280{bottom:156.298667pt;}
.y71_c00280{bottom:156.560000pt;}
.y72_c00280{bottom:156.642667pt;}
.y5d_c00280{bottom:174.477333pt;}
.y5e_c00280{bottom:174.712000pt;}
.y5f_c00280{bottom:175.170667pt;}
.y60_c00280{bottom:175.344000pt;}
.y61_c00280{bottom:175.940000pt;}
.y62_c00280{bottom:176.172000pt;}
.y63_c00280{bottom:176.360000pt;}
.y64_c00280{bottom:176.569333pt;}
.y65_c00280{bottom:176.969333pt;}
.y66_c00280{bottom:177.176000pt;}
.y52_c00280{bottom:194.397333pt;}
.y53_c00280{bottom:194.714667pt;}
.y54_c00280{bottom:194.974667pt;}
.y55_c00280{bottom:195.390667pt;}
.y56_c00280{bottom:195.509333pt;}
.y57_c00280{bottom:195.749333pt;}
.y58_c00280{bottom:195.908000pt;}
.y59_c00280{bottom:196.082667pt;}
.y5a_c00280{bottom:196.417333pt;}
.y5b_c00280{bottom:196.880000pt;}
.y5c_c00280{bottom:197.084000pt;}
.y47_c00280{bottom:214.077333pt;}
.y48_c00280{bottom:214.193333pt;}
.y49_c00280{bottom:214.329333pt;}
.y4a_c00280{bottom:214.716000pt;}
.y4b_c00280{bottom:215.152000pt;}
.y4c_c00280{bottom:215.382667pt;}
.y4d_c00280{bottom:215.724000pt;}
.y4e_c00280{bottom:215.970667pt;}
.y4f_c00280{bottom:216.313333pt;}
.y50_c00280{bottom:216.550667pt;}
.y51_c00280{bottom:216.844000pt;}
.y3c_c00280{bottom:233.998667pt;}
.y3d_c00280{bottom:234.228000pt;}
.y3e_c00280{bottom:234.312000pt;}
.y3f_c00280{bottom:234.525333pt;}
.y40_c00280{bottom:234.784000pt;}
.y41_c00280{bottom:235.037333pt;}
.y42_c00280{bottom:235.301333pt;}
.y43_c00280{bottom:235.520000pt;}
.y44_c00280{bottom:235.697333pt;}
.y45_c00280{bottom:236.057333pt;}
.y46_c00280{bottom:236.497333pt;}
.y3b_c00280{bottom:256.160000pt;}
.y30_c00280{bottom:274.318667pt;}
.y31_c00280{bottom:274.609333pt;}
.y32_c00280{bottom:274.814667pt;}
.y33_c00280{bottom:275.046667pt;}
.y34_c00280{bottom:275.261333pt;}
.y35_c00280{bottom:275.480000pt;}
.y36_c00280{bottom:275.938667pt;}
.y37_c00280{bottom:276.357333pt;}
.y38_c00280{bottom:276.480000pt;}
.y39_c00280{bottom:276.882667pt;}
.y3a_c00280{bottom:277.104000pt;}
.y2f_c00280{bottom:296.012000pt;}
.y2e_c00280{bottom:316.386667pt;}
.y2d_c00280{bottom:336.577333pt;}
.y2c_c00280{bottom:356.950667pt;}
.y2b_c00280{bottom:376.688000pt;}
.y2a_c00280{bottom:396.658667pt;}
.y29_c00280{bottom:416.980000pt;}
.y28_c00280{bottom:437.113333pt;}
.y27_c00280{bottom:457.538667pt;}
.y26_c00280{bottom:477.504000pt;}
.y25_c00280{bottom:498.098667pt;}
.y24_c00280{bottom:517.769333pt;}
.y23_c00280{bottom:536.949333pt;}
.y22_c00280{bottom:577.992000pt;}
.y15_c00280{bottom:596.400000pt;}
.y16_c00280{bottom:596.632000pt;}
.y17_c00280{bottom:596.730667pt;}
.y18_c00280{bottom:596.944000pt;}
.y19_c00280{bottom:597.377333pt;}
.y1a_c00280{bottom:597.520000pt;}
.y1b_c00280{bottom:597.777333pt;}
.y1c_c00280{bottom:597.914667pt;}
.y1d_c00280{bottom:598.224000pt;}
.y1e_c00280{bottom:598.548000pt;}
.y1f_c00280{bottom:598.709333pt;}
.y20_c00280{bottom:599.024000pt;}
.y21_c00280{bottom:599.184000pt;}
.y14_c00280{bottom:618.070667pt;}
.y8_c00280{bottom:636.960000pt;}
.y9_c00280{bottom:637.122667pt;}
.ya_c00280{bottom:637.270667pt;}
.yb_c00280{bottom:637.581333pt;}
.yc_c00280{bottom:637.793333pt;}
.yd_c00280{bottom:638.038667pt;}
.ye_c00280{bottom:638.640000pt;}
.yf_c00280{bottom:638.748000pt;}
.y10_c00280{bottom:638.976000pt;}
.y11_c00280{bottom:639.233333pt;}
.y12_c00280{bottom:639.532000pt;}
.y13_c00280{bottom:639.825333pt;}
.y7_c00280{bottom:658.896000pt;}
.y6_c00280{bottom:679.030667pt;}
.y5_c00280{bottom:698.978667pt;}
.y4_c00280{bottom:718.712000pt;}
.y3_c00280{bottom:739.056000pt;}
.y2_c00280{bottom:779.120000pt;}
.y1_c00280{bottom:853.680000pt;}
.h2_c00280{height:16.800000pt;}
.hc_c00280{height:54.133333pt;}
.hb_c00280{height:55.066667pt;}
.hd_c00280{height:56.000000pt;}
.h8_c00280{height:58.800000pt;}
.ha_c00280{height:59.733333pt;}
.h6_c00280{height:60.666667pt;}
.h4_c00280{height:61.600000pt;}
.h9_c00280{height:62.533333pt;}
.he_c00280{height:63.466667pt;}
.h7_c00280{height:64.400000pt;}
.h5_c00280{height:69.066667pt;}
.hf_c00280{height:70.000000pt;}
.h3_c00280{height:120.400000pt;}
.h1_c00280{height:893.333333pt;}
.h0_c00280{height:893.466667pt;}
.w0_c00280{width:624.480000pt;}
.w1_c00280{width:624.666667pt;}
.x0_c00280{left:0.000000pt;}
.x89_c00280{left:62.160000pt;}
.x39_c00280{left:67.529333pt;}
.xf_c00280{left:71.040000pt;}
.x9e_c00280{left:72.240000pt;}
.x6_c00280{left:73.920000pt;}
.x45_c00280{left:74.881333pt;}
.x62_c00280{left:76.320000pt;}
.x6a_c00280{left:77.520000pt;}
.x95_c00280{left:78.720000pt;}
.xb7_c00280{left:80.726667pt;}
.xb9_c00280{left:81.945333pt;}
.x3a_c00280{left:90.802667pt;}
.x80_c00280{left:92.400000pt;}
.x2f_c00280{left:93.840000pt;}
.xb1_c00280{left:95.842667pt;}
.x60_c00280{left:98.880000pt;}
.x10_c00280{left:100.560000pt;}
.x64_c00280{left:101.520000pt;}
.x71_c00280{left:103.920000pt;}
.x78_c00280{left:105.600000pt;}
.x1a_c00280{left:107.520000pt;}
.x4d_c00280{left:108.565333pt;}
.x46_c00280{left:110.641333pt;}
.x3b_c00280{left:111.909333pt;}
.x58_c00280{left:114.001333pt;}
.x96_c00280{left:115.920000pt;}
.x7_c00280{left:117.600000pt;}
.x65_c00280{left:120.240000pt;}
.x1b_c00280{left:121.680000pt;}
.x4e_c00280{left:122.733333pt;}
.x91_c00280{left:123.840000pt;}
.xb4_c00280{left:124.884000pt;}
.x30_c00280{left:126.480000pt;}
.x47_c00280{left:130.561333pt;}
.x11_c00280{left:135.120000pt;}
.x1c_c00280{left:139.200000pt;}
.x8_c00280{left:140.640000pt;}
.x27_c00280{left:141.600000pt;}
.xa6_c00280{left:148.648000pt;}
.x9f_c00280{left:149.760000pt;}
.x63_c00280{left:150.720000pt;}
.x4f_c00280{left:153.233333pt;}
.x97_c00280{left:154.320000pt;}
.x3c_c00280{left:156.348000pt;}
.x31_c00280{left:159.120000pt;}
.xaa_c00280{left:160.080000pt;}
.xb5_c00280{left:162.085333pt;}
.xbf_c00280{left:163.200000pt;}
.x12_c00280{left:164.160000pt;}
.x28_c00280{left:167.280000pt;}
.x8a_c00280{left:169.680000pt;}
.x1d_c00280{left:171.840000pt;}
.x2_c00280{left:173.520000pt;}
.x6b_c00280{left:174.960000pt;}
.x98_c00280{left:175.920000pt;}
.xa0_c00280{left:176.880000pt;}
.x66_c00280{left:179.520000pt;}
.x61_c00280{left:180.480000pt;}
.x92_c00280{left:181.440000pt;}
.x3d_c00280{left:186.585333pt;}
.x48_c00280{left:188.161333pt;}
.xae_c00280{left:191.604000pt;}
.x29_c00280{left:193.200000pt;}
.x13_c00280{left:195.840000pt;}
.x6c_c00280{left:197.280000pt;}
.x9_c00280{left:202.320000pt;}
.x72_c00280{left:203.520000pt;}
.xb8_c00280{left:204.576000pt;}
.x1e_c00280{left:205.680000pt;}
.x79_c00280{left:207.120000pt;}
.xa7_c00280{left:212.490667pt;}
.x50_c00280{left:215.125333pt;}
.x8b_c00280{left:216.720000pt;}
.x49_c00280{left:218.401333pt;}
.x3e_c00280{left:221.650667pt;}
.x32_c00280{left:222.720000pt;}
.x7a_c00280{left:223.680000pt;}
.x67_c00280{left:226.560000pt;}
.x73_c00280{left:228.240000pt;}
.x1f_c00280{left:230.160000pt;}
.x81_c00280{left:231.840000pt;}
.x99_c00280{left:233.520000pt;}
.x51_c00280{left:235.498667pt;}
.xb6_c00280{left:238.640000pt;}
.x59_c00280{left:241.921333pt;}
.xa8_c00280{left:243.690667pt;}
.x14_c00280{left:248.880000pt;}
.xba_c00280{left:250.181333pt;}
.x20_c00280{left:252.720000pt;}
.x82_c00280{left:256.800000pt;}
.x9a_c00280{left:258.240000pt;}
.xa_c00280{left:259.920000pt;}
.x5a_c00280{left:264.001333pt;}
.xaf_c00280{left:265.496000pt;}
.x2a_c00280{left:267.120000pt;}
.x93_c00280{left:269.520000pt;}
.xa1_c00280{left:272.160000pt;}
.x4a_c00280{left:273.121333pt;}
.x33_c00280{left:274.560000pt;}
.x15_c00280{left:277.440000pt;}
.x7b_c00280{left:283.200000pt;}
.xbb_c00280{left:284.742667pt;}
.x34_c00280{left:286.800000pt;}
.x21_c00280{left:289.680000pt;}
.x52_c00280{left:291.924000pt;}
.x6d_c00280{left:293.040000pt;}
.x74_c00280{left:294.720000pt;}
.x5b_c00280{left:296.161333pt;}
.x4b_c00280{left:302.401333pt;}
.xbc_c00280{left:304.892000pt;}
.x83_c00280{left:306.480000pt;}
.x3f_c00280{left:307.521333pt;}
.x3_c00280{left:309.840000pt;}
.xb_c00280{left:312.240000pt;}
.x16_c00280{left:313.680000pt;}
.x5c_c00280{left:316.321333pt;}
.x75_c00280{left:320.640000pt;}
.x40_c00280{left:322.905333pt;}
.x22_c00280{left:325.200000pt;}
.x2b_c00280{left:327.120000pt;}
.xbd_c00280{left:329.138667pt;}
.x9b_c00280{left:333.600000pt;}
.x8c_c00280{left:335.040000pt;}
.x53_c00280{left:336.065333pt;}
.xa2_c00280{left:337.440000pt;}
.x35_c00280{left:342.480000pt;}
.x68_c00280{left:347.520000pt;}
.x17_c00280{left:348.720000pt;}
.x4_c00280{left:350.160000pt;}
.x6e_c00280{left:352.080000pt;}
.x41_c00280{left:355.556000pt;}
.x23_c00280{left:360.960000pt;}
.xbe_c00280{left:361.922667pt;}
.x1_c00280{left:364.320000pt;}
.x8f_c00280{left:368.880000pt;}
.x2c_c00280{left:369.840000pt;}
.x36_c00280{left:371.040000pt;}
.x7c_c00280{left:373.200000pt;}
.x24_c00280{left:375.840000pt;}
.x76_c00280{left:380.160000pt;}
.xab_c00280{left:381.360000pt;}
.x54_c00280{left:382.374667pt;}
.xa3_c00280{left:383.520000pt;}
.xa9_c00280{left:386.460000pt;}
.x84_c00280{left:388.800000pt;}
.xc_c00280{left:390.720000pt;}
.x42_c00280{left:392.270667pt;}
.x5d_c00280{left:394.321333pt;}
.x37_c00280{left:399.360000pt;}
.x85_c00280{left:402.720000pt;}
.x8d_c00280{left:404.400000pt;}
.x55_c00280{left:405.418667pt;}
.x9c_c00280{left:406.320000pt;}
.x2d_c00280{left:407.760000pt;}
.xa4_c00280{left:415.200000pt;}
.xd_c00280{left:417.120000pt;}
.x86_c00280{left:419.520000pt;}
.x4c_c00280{left:426.721333pt;}
.x5_c00280{left:428.400000pt;}
.xb2_c00280{left:432.552000pt;}
.x43_c00280{left:434.972000pt;}
.xb0_c00280{left:436.400000pt;}
.x8e_c00280{left:438.240000pt;}
.x7d_c00280{left:439.200000pt;}
.x25_c00280{left:440.400000pt;}
.x5e_c00280{left:441.601333pt;}
.x77_c00280{left:444.720000pt;}
.x38_c00280{left:445.680000pt;}
.xac_c00280{left:447.120000pt;}
.x2e_c00280{left:448.080000pt;}
.x18_c00280{left:449.280000pt;}
.x56_c00280{left:450.318667pt;}
.x9d_c00280{left:452.400000pt;}
.x87_c00280{left:454.320000pt;}
.xe_c00280{left:457.200000pt;}
.x26_c00280{left:458.400000pt;}
.x94_c00280{left:459.840000pt;}
.x7e_c00280{left:462.480000pt;}
.x19_c00280{left:465.840000pt;}
.x69_c00280{left:468.480000pt;}
.x6f_c00280{left:472.080000pt;}
.x57_c00280{left:473.110667pt;}
.xb3_c00280{left:474.540000pt;}
.x7f_c00280{left:475.680000pt;}
.x44_c00280{left:476.946667pt;}
.x88_c00280{left:479.040000pt;}
.x5f_c00280{left:480.001333pt;}
.x90_c00280{left:484.320000pt;}
.xa5_c00280{left:488.400000pt;}
.xad_c00280{left:493.440000pt;}
.x70_c00280{left:509.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_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_d24df5124729fd0a4ee0fe1e.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;}
.md_c00281{transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);}
.m8d_c00281{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);}
.m8c_c00281{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);}
.m4_c00281{transform:matrix(0.057418,0.000459,-0.002000,0.249992,0,0);-ms-transform:matrix(0.057418,0.000459,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.057418,0.000459,-0.002000,0.249992,0,0);}
.m9_c00281{transform:matrix(0.071933,0.000575,-0.002000,0.249992,0,0);-ms-transform:matrix(0.071933,0.000575,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.071933,0.000575,-0.002000,0.249992,0,0);}
.m3a_c00281{transform:matrix(0.083014,-0.000996,0.003000,0.249982,0,0);-ms-transform:matrix(0.083014,-0.000996,0.003000,0.249982,0,0);-webkit-transform:matrix(0.083014,-0.000996,0.003000,0.249982,0,0);}
.m12_c00281{transform:matrix(0.083741,-0.000837,0.002500,0.249988,0,0);-ms-transform:matrix(0.083741,-0.000837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.083741,-0.000837,0.002500,0.249988,0,0);}
.m4b_c00281{transform:matrix(0.087049,-0.001045,0.003000,0.249982,0,0);-ms-transform:matrix(0.087049,-0.001045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.087049,-0.001045,0.003000,0.249982,0,0);}
.mfd_c00281{transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);}
.m136_c00281{transform:matrix(0.106981,-0.000963,0.002250,0.249990,0,0);-ms-transform:matrix(0.106981,-0.000963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.106981,-0.000963,0.002250,0.249990,0,0);}
.m65_c00281{transform:matrix(0.107023,-0.001605,0.003750,0.249972,0,0);-ms-transform:matrix(0.107023,-0.001605,0.003750,0.249972,0,0);-webkit-transform:matrix(0.107023,-0.001605,0.003750,0.249972,0,0);}
.m1b_c00281{transform:matrix(0.108070,-0.001081,0.002500,0.249988,0,0);-ms-transform:matrix(0.108070,-0.001081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.108070,-0.001081,0.002500,0.249988,0,0);}
.me9_c00281{transform:matrix(0.128635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128635,0.000000,0.000000,0.250000,0,0);}
.m9a_c00281{transform:matrix(0.138471,-0.001108,0.002000,0.249992,0,0);-ms-transform:matrix(0.138471,-0.001108,0.002000,0.249992,0,0);-webkit-transform:matrix(0.138471,-0.001108,0.002000,0.249992,0,0);}
.mb0_c00281{transform:matrix(0.140626,-0.001125,0.002000,0.249992,0,0);-ms-transform:matrix(0.140626,-0.001125,0.002000,0.249992,0,0);-webkit-transform:matrix(0.140626,-0.001125,0.002000,0.249992,0,0);}
.m10c_c00281{transform:matrix(0.141682,-0.000992,0.001750,0.249994,0,0);-ms-transform:matrix(0.141682,-0.000992,0.001750,0.249994,0,0);-webkit-transform:matrix(0.141682,-0.000992,0.001750,0.249994,0,0);}
.m34_c00281{transform:matrix(0.143335,-0.001720,0.003000,0.249982,0,0);-ms-transform:matrix(0.143335,-0.001720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143335,-0.001720,0.003000,0.249982,0,0);}
.m109_c00281{transform:matrix(0.144476,-0.001011,0.001750,0.249994,0,0);-ms-transform:matrix(0.144476,-0.001011,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144476,-0.001011,0.001750,0.249994,0,0);}
.mf8_c00281{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.146023,-0.001460,0.002500,0.249988,0,0);-ms-transform:matrix(0.146023,-0.001460,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146023,-0.001460,0.002500,0.249988,0,0);}
.m13b_c00281{transform:matrix(0.146199,-0.001316,0.002250,0.249990,0,0);-ms-transform:matrix(0.146199,-0.001316,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146199,-0.001316,0.002250,0.249990,0,0);}
.m9b_c00281{transform:matrix(0.146395,-0.001171,0.002000,0.249992,0,0);-ms-transform:matrix(0.146395,-0.001171,0.002000,0.249992,0,0);-webkit-transform:matrix(0.146395,-0.001171,0.002000,0.249992,0,0);}
.m19_c00281{transform:matrix(0.146808,-0.001468,0.002500,0.249988,0,0);-ms-transform:matrix(0.146808,-0.001468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146808,-0.001468,0.002500,0.249988,0,0);}
.mbd_c00281{transform:matrix(0.147019,-0.001323,0.002250,0.249990,0,0);-ms-transform:matrix(0.147019,-0.001323,0.002250,0.249990,0,0);-webkit-transform:matrix(0.147019,-0.001323,0.002250,0.249990,0,0);}
.m13_c00281{transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);-ms-transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147938,-0.001479,0.002500,0.249988,0,0);}
.m13a_c00281{transform:matrix(0.148864,-0.001340,0.002250,0.249990,0,0);-ms-transform:matrix(0.148864,-0.001340,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148864,-0.001340,0.002250,0.249990,0,0);}
.m15_c00281{transform:matrix(0.149003,-0.001490,0.002500,0.249988,0,0);-ms-transform:matrix(0.149003,-0.001490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149003,-0.001490,0.002500,0.249988,0,0);}
.md4_c00281{transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);}
.m102_c00281{transform:matrix(0.149936,-0.001050,0.001750,0.249994,0,0);-ms-transform:matrix(0.149936,-0.001050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149936,-0.001050,0.001750,0.249994,0,0);}
.mab_c00281{transform:matrix(0.150550,-0.001204,0.002000,0.249992,0,0);-ms-transform:matrix(0.150550,-0.001204,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150550,-0.001204,0.002000,0.249992,0,0);}
.m100_c00281{transform:matrix(0.152186,-0.001065,0.001750,0.249994,0,0);-ms-transform:matrix(0.152186,-0.001065,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152186,-0.001065,0.001750,0.249994,0,0);}
.mf3_c00281{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);}
.m111_c00281{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);}
.mba_c00281{transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);-ms-transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);}
.m98_c00281{transform:matrix(0.153800,-0.001230,0.002000,0.249992,0,0);-ms-transform:matrix(0.153800,-0.001230,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153800,-0.001230,0.002000,0.249992,0,0);}
.mf0_c00281{transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);}
.mce_c00281{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);}
.m138_c00281{transform:matrix(0.155649,-0.001401,0.002250,0.249990,0,0);-ms-transform:matrix(0.155649,-0.001401,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155649,-0.001401,0.002250,0.249990,0,0);}
.m5b_c00281{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);}
.m10f_c00281{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);}
.m63_c00281{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);}
.m95_c00281{transform:matrix(0.158045,-0.001264,0.002000,0.249992,0,0);-ms-transform:matrix(0.158045,-0.001264,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158045,-0.001264,0.002000,0.249992,0,0);}
.m116_c00281{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.mf7_c00281{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m96_c00281{transform:matrix(0.158975,-0.001272,0.002000,0.249992,0,0);-ms-transform:matrix(0.158975,-0.001272,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158975,-0.001272,0.002000,0.249992,0,0);}
.m141_c00281{transform:matrix(0.159396,-0.001116,0.001750,0.249994,0,0);-ms-transform:matrix(0.159396,-0.001116,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159396,-0.001116,0.001750,0.249994,0,0);}
.mc4_c00281{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);}
.m29_c00281{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);}
.m159_c00281{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);}
.m74_c00281{transform:matrix(0.161010,-0.001288,0.002000,0.249992,0,0);-ms-transform:matrix(0.161010,-0.001288,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161010,-0.001288,0.002000,0.249992,0,0);}
.ma_c00281{transform:matrix(0.161205,0.001290,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161205,0.001290,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161205,0.001290,-0.002000,0.249992,0,0);}
.mb2_c00281{transform:matrix(0.163385,-0.001307,0.002000,0.249992,0,0);-ms-transform:matrix(0.163385,-0.001307,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163385,-0.001307,0.002000,0.249992,0,0);}
.m104_c00281{transform:matrix(0.164041,-0.001148,0.001750,0.249994,0,0);-ms-transform:matrix(0.164041,-0.001148,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164041,-0.001148,0.001750,0.249994,0,0);}
.mf2_c00281{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);}
.m47_c00281{transform:matrix(0.165353,-0.001984,0.003000,0.249982,0,0);-ms-transform:matrix(0.165353,-0.001984,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165353,-0.001984,0.003000,0.249982,0,0);}
.mc8_c00281{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);}
.mb7_c00281{transform:matrix(0.166248,-0.001496,0.002250,0.249990,0,0);-ms-transform:matrix(0.166248,-0.001496,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166248,-0.001496,0.002250,0.249990,0,0);}
.m154_c00281{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);}
.m18_c00281{transform:matrix(0.167787,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167787,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167787,-0.001678,0.002500,0.249988,0,0);}
.m88_c00281{transform:matrix(0.168500,-0.001348,0.002000,0.249992,0,0);-ms-transform:matrix(0.168500,-0.001348,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168500,-0.001348,0.002000,0.249992,0,0);}
.md9_c00281{transform:matrix(0.169676,-0.001188,0.001750,0.249994,0,0);-ms-transform:matrix(0.169676,-0.001188,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169676,-0.001188,0.001750,0.249994,0,0);}
.m110_c00281{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);}
.m101_c00281{transform:matrix(0.170746,-0.001195,0.001750,0.249994,0,0);-ms-transform:matrix(0.170746,-0.001195,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170746,-0.001195,0.001750,0.249994,0,0);}
.m10b_c00281{transform:matrix(0.171271,-0.001199,0.001750,0.249994,0,0);-ms-transform:matrix(0.171271,-0.001199,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171271,-0.001199,0.001750,0.249994,0,0);}
.m1f_c00281{transform:matrix(0.171531,-0.001715,0.002500,0.249988,0,0);-ms-transform:matrix(0.171531,-0.001715,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171531,-0.001715,0.002500,0.249988,0,0);}
.m55_c00281{transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);-ms-transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);}
.ma3_c00281{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);}
.m6f_c00281{transform:matrix(0.172025,-0.001892,0.002750,0.249985,0,0);-ms-transform:matrix(0.172025,-0.001892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172025,-0.001892,0.002750,0.249985,0,0);}
.m126_c00281{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);}
.m39_c00281{transform:matrix(0.172413,-0.002069,0.003000,0.249982,0,0);-ms-transform:matrix(0.172413,-0.002069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172413,-0.002069,0.003000,0.249982,0,0);}
.m144_c00281{transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);-ms-transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172721,-0.001209,0.001750,0.249994,0,0);}
.m24_c00281{transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);}
.m13e_c00281{transform:matrix(0.173441,-0.001214,0.001750,0.249994,0,0);-ms-transform:matrix(0.173441,-0.001214,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173441,-0.001214,0.001750,0.249994,0,0);}
.mbb_c00281{transform:matrix(0.173458,-0.001561,0.002250,0.249990,0,0);-ms-transform:matrix(0.173458,-0.001561,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173458,-0.001561,0.002250,0.249990,0,0);}
.m14b_c00281{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);}
.m156_c00281{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);}
.m23_c00281{transform:matrix(0.173861,-0.001739,0.002500,0.249988,0,0);-ms-transform:matrix(0.173861,-0.001739,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173861,-0.001739,0.002500,0.249988,0,0);}
.m157_c00281{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);}
.m17_c00281{transform:matrix(0.175036,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.175036,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175036,-0.001750,0.002500,0.249988,0,0);}
.m7a_c00281{transform:matrix(0.175039,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.175039,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175039,-0.001400,0.002000,0.249992,0,0);}
.mf4_c00281{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);}
.m135_c00281{transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);-ms-transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);}
.md8_c00281{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);}
.mbc_c00281{transform:matrix(0.176343,-0.001587,0.002250,0.249990,0,0);-ms-transform:matrix(0.176343,-0.001587,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176343,-0.001587,0.002250,0.249990,0,0);}
.me5_c00281{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);}
.ma6_c00281{transform:matrix(0.176439,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176439,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176439,-0.001941,0.002750,0.249985,0,0);}
.m7e_c00281{transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);}
.m155_c00281{transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);}
.m72_c00281{transform:matrix(0.177534,-0.001953,0.002750,0.249985,0,0);-ms-transform:matrix(0.177534,-0.001953,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177534,-0.001953,0.002750,0.249985,0,0);}
.m113_c00281{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);}
.m97_c00281{transform:matrix(0.178434,-0.001427,0.002000,0.249992,0,0);-ms-transform:matrix(0.178434,-0.001427,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178434,-0.001427,0.002000,0.249992,0,0);}
.m124_c00281{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);}
.ma4_c00281{transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);}
.md7_c00281{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);}
.m8b_c00281{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);}
.m53_c00281{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);}
.m3c_c00281{transform:matrix(0.179757,-0.002157,0.003000,0.249982,0,0);-ms-transform:matrix(0.179757,-0.002157,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179757,-0.002157,0.003000,0.249982,0,0);}
.m90_c00281{transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);-ms-transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179774,-0.001438,0.002000,0.249992,0,0);}
.m9d_c00281{transform:matrix(0.180004,-0.001440,0.002000,0.249992,0,0);-ms-transform:matrix(0.180004,-0.001440,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180004,-0.001440,0.002000,0.249992,0,0);}
.m103_c00281{transform:matrix(0.180156,-0.001261,0.001750,0.249994,0,0);-ms-transform:matrix(0.180156,-0.001261,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180156,-0.001261,0.001750,0.249994,0,0);}
.mde_c00281{transform:matrix(0.180356,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180356,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180356,-0.001262,0.001750,0.249994,0,0);}
.m158_c00281{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);}
.m112_c00281{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);}
.mb6_c00281{transform:matrix(0.180758,-0.001627,0.002250,0.249990,0,0);-ms-transform:matrix(0.180758,-0.001627,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180758,-0.001627,0.002250,0.249990,0,0);}
.m7d_c00281{transform:matrix(0.181054,-0.001448,0.002000,0.249992,0,0);-ms-transform:matrix(0.181054,-0.001448,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181054,-0.001448,0.002000,0.249992,0,0);}
.m10d_c00281{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);}
.m114_c00281{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);}
.mff_c00281{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.mdb_c00281{transform:matrix(0.181751,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181751,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181751,-0.001272,0.001750,0.249994,0,0);}
.m69_c00281{transform:matrix(0.181844,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181844,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181844,-0.002000,0.002750,0.249985,0,0);}
.m10e_c00281{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);}
.m7c_c00281{transform:matrix(0.182279,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182279,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182279,-0.001458,0.002000,0.249992,0,0);}
.m86_c00281{transform:matrix(0.182304,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182304,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182304,-0.001458,0.002000,0.249992,0,0);}
.mb1_c00281{transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);-ms-transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);}
.m13f_c00281{transform:matrix(0.182711,-0.001279,0.001750,0.249994,0,0);-ms-transform:matrix(0.182711,-0.001279,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182711,-0.001279,0.001750,0.249994,0,0);}
.m152_c00281{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);}
.m10_c00281{transform:matrix(0.182886,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182886,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182886,-0.001829,0.002500,0.249988,0,0);}
.mfa_c00281{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);}
.m7b_c00281{transform:matrix(0.183129,-0.001465,0.002000,0.249992,0,0);-ms-transform:matrix(0.183129,-0.001465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183129,-0.001465,0.002000,0.249992,0,0);}
.mbe_c00281{transform:matrix(0.183713,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183713,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183713,-0.001653,0.002250,0.249990,0,0);}
.m151_c00281{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);}
.me3_c00281{transform:matrix(0.184070,-0.001288,0.001750,0.249994,0,0);-ms-transform:matrix(0.184070,-0.001288,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184070,-0.001288,0.001750,0.249994,0,0);}
.m44_c00281{transform:matrix(0.184082,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184082,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184082,-0.002209,0.003000,0.249982,0,0);}
.m93_c00281{transform:matrix(0.184209,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184209,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184209,-0.001474,0.002000,0.249992,0,0);}
.m26_c00281{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);}
.m108_c00281{transform:matrix(0.184460,-0.001291,0.001750,0.249994,0,0);-ms-transform:matrix(0.184460,-0.001291,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184460,-0.001291,0.001750,0.249994,0,0);}
.m132_c00281{transform:matrix(0.184658,-0.001662,0.002250,0.249990,0,0);-ms-transform:matrix(0.184658,-0.001662,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184658,-0.001662,0.002250,0.249990,0,0);}
.m10a_c00281{transform:matrix(0.184820,-0.001294,0.001750,0.249994,0,0);-ms-transform:matrix(0.184820,-0.001294,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184820,-0.001294,0.001750,0.249994,0,0);}
.md2_c00281{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);}
.m87_c00281{transform:matrix(0.185284,-0.001482,0.002000,0.249992,0,0);-ms-transform:matrix(0.185284,-0.001482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185284,-0.001482,0.002000,0.249992,0,0);}
.m6c_c00281{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);}
.m14e_c00281{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);}
.mc5_c00281{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);}
.med_c00281{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);}
.m71_c00281{transform:matrix(0.185994,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.185994,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185994,-0.002046,0.002750,0.249985,0,0);}
.m8a_c00281{transform:matrix(0.186019,-0.001488,0.002000,0.249992,0,0);-ms-transform:matrix(0.186019,-0.001488,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186019,-0.001488,0.002000,0.249992,0,0);}
.md1_c00281{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);}
.m54_c00281{transform:matrix(0.186232,-0.002235,0.003000,0.249982,0,0);-ms-transform:matrix(0.186232,-0.002235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186232,-0.002235,0.003000,0.249982,0,0);}
.m12e_c00281{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);}
.m9c_c00281{transform:matrix(0.186629,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186629,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186629,-0.001493,0.002000,0.249992,0,0);}
.m11_c00281{transform:matrix(0.187376,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187376,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187376,-0.001874,0.002500,0.249988,0,0);}
.mb9_c00281{transform:matrix(0.187867,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187867,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187867,-0.001691,0.002250,0.249990,0,0);}
.mbf_c00281{transform:matrix(0.187892,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187892,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187892,-0.001691,0.002250,0.249990,0,0);}
.m99_c00281{transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);}
.m148_c00281{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);}
.m107_c00281{transform:matrix(0.188640,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188640,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188640,-0.001320,0.001750,0.249994,0,0);}
.mca_c00281{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);}
.m147_c00281{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);}
.m131_c00281{transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);-ms-transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);}
.m0_c00281{transform:matrix(0.189769,0.001518,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189769,0.001518,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189769,0.001518,-0.002000,0.249992,0,0);}
.m1a_c00281{transform:matrix(0.189966,-0.001900,0.002500,0.249988,0,0);-ms-transform:matrix(0.189966,-0.001900,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189966,-0.001900,0.002500,0.249988,0,0);}
.m7f_c00281{transform:matrix(0.190039,-0.001520,0.002000,0.249992,0,0);-ms-transform:matrix(0.190039,-0.001520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190039,-0.001520,0.002000,0.249992,0,0);}
.mf5_c00281{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);}
.mc2_c00281{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);}
.mdf_c00281{transform:matrix(0.190635,-0.001334,0.001750,0.249994,0,0);-ms-transform:matrix(0.190635,-0.001334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190635,-0.001334,0.001750,0.249994,0,0);}
.m14f_c00281{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);}
.m128_c00281{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);}
.m21_c00281{transform:matrix(0.191045,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.191045,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191045,-0.001910,0.002500,0.249988,0,0);}
.mb3_c00281{transform:matrix(0.191519,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191519,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191519,-0.001532,0.002000,0.249992,0,0);}
.m8e_c00281{transform:matrix(0.191584,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191584,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191584,-0.001533,0.002000,0.249992,0,0);}
.m105_c00281{transform:matrix(0.191675,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191675,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191675,-0.001342,0.001750,0.249994,0,0);}
.m142_c00281{transform:matrix(0.191680,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191680,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191680,-0.001342,0.001750,0.249994,0,0);}
.mee_c00281{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);}
.m15c_c00281{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);}
.m48_c00281{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);}
.m2b_c00281{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);}
.m75_c00281{transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);-ms-transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);}
.m49_c00281{transform:matrix(0.193351,-0.002320,0.003000,0.249982,0,0);-ms-transform:matrix(0.193351,-0.002320,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193351,-0.002320,0.003000,0.249982,0,0);}
.m14c_c00281{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);}
.m82_c00281{transform:matrix(0.193704,-0.001550,0.002000,0.249992,0,0);-ms-transform:matrix(0.193704,-0.001550,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193704,-0.001550,0.002000,0.249992,0,0);}
.m2a_c00281{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);}
.m76_c00281{transform:matrix(0.193934,-0.001551,0.002000,0.249992,0,0);-ms-transform:matrix(0.193934,-0.001551,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193934,-0.001551,0.002000,0.249992,0,0);}
.mcd_c00281{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);}
.m134_c00281{transform:matrix(0.194127,-0.001747,0.002250,0.249990,0,0);-ms-transform:matrix(0.194127,-0.001747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194127,-0.001747,0.002250,0.249990,0,0);}
.m45_c00281{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);}
.m8f_c00281{transform:matrix(0.194454,-0.001556,0.002000,0.249992,0,0);-ms-transform:matrix(0.194454,-0.001556,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194454,-0.001556,0.002000,0.249992,0,0);}
.mdd_c00281{transform:matrix(0.194740,-0.001363,0.001750,0.249994,0,0);-ms-transform:matrix(0.194740,-0.001363,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194740,-0.001363,0.001750,0.249994,0,0);}
.ma1_c00281{transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);}
.me6_c00281{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);}
.m3d_c00281{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);}
.mf6_c00281{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);}
.m140_c00281{transform:matrix(0.195730,-0.001370,0.001750,0.249994,0,0);-ms-transform:matrix(0.195730,-0.001370,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195730,-0.001370,0.001750,0.249994,0,0);}
.m12c_c00281{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);}
.m16_c00281{transform:matrix(0.196300,-0.001963,0.002500,0.249988,0,0);-ms-transform:matrix(0.196300,-0.001963,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196300,-0.001963,0.002500,0.249988,0,0);}
.m5d_c00281{transform:matrix(0.196351,-0.002356,0.003000,0.249982,0,0);-ms-transform:matrix(0.196351,-0.002356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196351,-0.002356,0.003000,0.249982,0,0);}
.m85_c00281{transform:matrix(0.196384,-0.001571,0.002000,0.249992,0,0);-ms-transform:matrix(0.196384,-0.001571,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196384,-0.001571,0.002000,0.249992,0,0);}
.m4a_c00281{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);}
.m56_c00281{transform:matrix(0.196971,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.196971,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196971,-0.002364,0.003000,0.249982,0,0);}
.m94_c00281{transform:matrix(0.197134,-0.001577,0.002000,0.249992,0,0);-ms-transform:matrix(0.197134,-0.001577,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197134,-0.001577,0.002000,0.249992,0,0);}
.mb8_c00281{transform:matrix(0.197162,-0.001774,0.002250,0.249990,0,0);-ms-transform:matrix(0.197162,-0.001774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197162,-0.001774,0.002250,0.249990,0,0);}
.m15d_c00281{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);}
.m5e_c00281{transform:matrix(0.197391,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197391,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197391,-0.002369,0.003000,0.249982,0,0);}
.m137_c00281{transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);}
.m115_c00281{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.m89_c00281{transform:matrix(0.198264,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198264,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198264,-0.001586,0.002000,0.249992,0,0);}
.m73_c00281{transform:matrix(0.198283,-0.002181,0.002750,0.249985,0,0);-ms-transform:matrix(0.198283,-0.002181,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198283,-0.002181,0.002750,0.249985,0,0);}
.m33_c00281{transform:matrix(0.198291,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198291,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198291,-0.002379,0.003000,0.249982,0,0);}
.m13c_c00281{transform:matrix(0.198730,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198730,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198730,-0.001391,0.001750,0.249994,0,0);}
.m14a_c00281{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);}
.m20_c00281{transform:matrix(0.199185,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199185,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199185,-0.001992,0.002500,0.249988,0,0);}
.m41_c00281{transform:matrix(0.199291,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199291,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199291,-0.002391,0.003000,0.249982,0,0);}
.m14d_c00281{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);}
.m139_c00281{transform:matrix(0.200017,-0.001800,0.002250,0.249990,0,0);-ms-transform:matrix(0.200017,-0.001800,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200017,-0.001800,0.002250,0.249990,0,0);}
.m6a_c00281{transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);-ms-transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200373,-0.002204,0.002750,0.249985,0,0);}
.m40_c00281{transform:matrix(0.200451,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200451,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200451,-0.002405,0.003000,0.249982,0,0);}
.m125_c00281{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);}
.mf9_c00281{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);}
.m67_c00281{transform:matrix(0.201092,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201092,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201092,-0.003016,0.003750,0.249972,0,0);}
.me8_c00281{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);}
.mc3_c00281{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);}
.m14_c00281{transform:matrix(0.201805,-0.002018,0.002500,0.249988,0,0);-ms-transform:matrix(0.201805,-0.002018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201805,-0.002018,0.002500,0.249988,0,0);}
.m15a_c00281{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);}
.ma7_c00281{transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);}
.m153_c00281{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);}
.m133_c00281{transform:matrix(0.203192,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203192,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203192,-0.001829,0.002250,0.249990,0,0);}
.m27_c00281{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);}
.m143_c00281{transform:matrix(0.203275,-0.001423,0.001750,0.249994,0,0);-ms-transform:matrix(0.203275,-0.001423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203275,-0.001423,0.001750,0.249994,0,0);}
.m5a_c00281{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);}
.m4e_c00281{transform:matrix(0.204060,-0.002449,0.003000,0.249982,0,0);-ms-transform:matrix(0.204060,-0.002449,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204060,-0.002449,0.003000,0.249982,0,0);}
.m4d_c00281{transform:matrix(0.205075,-0.002461,0.003000,0.249982,0,0);-ms-transform:matrix(0.205075,-0.002461,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205075,-0.002461,0.003000,0.249982,0,0);}
.m119_c00281{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);}
.m4c_c00281{transform:matrix(0.205575,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205575,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205575,-0.002467,0.003000,0.249982,0,0);}
.m3e_c00281{transform:matrix(0.205585,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205585,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205585,-0.002467,0.003000,0.249982,0,0);}
.ma0_c00281{transform:matrix(0.205653,-0.002262,0.002750,0.249985,0,0);-ms-transform:matrix(0.205653,-0.002262,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205653,-0.002262,0.002750,0.249985,0,0);}
.m36_c00281{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);}
.m64_c00281{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);}
.m150_c00281{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);}
.m149_c00281{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);}
.m15b_c00281{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);}
.m30_c00281{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);}
.mc9_c00281{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);}
.md5_c00281{transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);}
.mdc_c00281{transform:matrix(0.207885,-0.001455,0.001750,0.249994,0,0);-ms-transform:matrix(0.207885,-0.001455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207885,-0.001455,0.001750,0.249994,0,0);}
.m92_c00281{transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);-ms-transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);}
.m118_c00281{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);}
.mfb_c00281{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);}
.md3_c00281{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);}
.m13d_c00281{transform:matrix(0.208835,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208835,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208835,-0.001462,0.001750,0.249994,0,0);}
.me0_c00281{transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);}
.md6_c00281{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);}
.m106_c00281{transform:matrix(0.209655,-0.001468,0.001750,0.249994,0,0);-ms-transform:matrix(0.209655,-0.001468,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209655,-0.001468,0.001750,0.249994,0,0);}
.me7_c00281{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);}
.me4_c00281{transform:matrix(0.210455,-0.001473,0.001750,0.249994,0,0);-ms-transform:matrix(0.210455,-0.001473,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210455,-0.001473,0.001750,0.249994,0,0);}
.mcf_c00281{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);}
.m127_c00281{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);}
.mac_c00281{transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);}
.ma2_c00281{transform:matrix(0.211627,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211627,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211627,-0.002328,0.002750,0.249985,0,0);}
.m130_c00281{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);}
.m58_c00281{transform:matrix(0.212920,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212920,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212920,-0.002555,0.003000,0.249982,0,0);}
.maa_c00281{transform:matrix(0.213938,-0.001712,0.002000,0.249992,0,0);-ms-transform:matrix(0.213938,-0.001712,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213938,-0.001712,0.002000,0.249992,0,0);}
.mcc_c00281{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);}
.m22_c00281{transform:matrix(0.214144,-0.002141,0.002500,0.249988,0,0);-ms-transform:matrix(0.214144,-0.002141,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214144,-0.002141,0.002500,0.249988,0,0);}
.mb4_c00281{transform:matrix(0.214208,-0.001714,0.002000,0.249992,0,0);-ms-transform:matrix(0.214208,-0.001714,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214208,-0.001714,0.002000,0.249992,0,0);}
.mc7_c00281{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);}
.m91_c00281{transform:matrix(0.214958,-0.001720,0.002000,0.249992,0,0);-ms-transform:matrix(0.214958,-0.001720,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214958,-0.001720,0.002000,0.249992,0,0);}
.m80_c00281{transform:matrix(0.215523,-0.001724,0.002000,0.249992,0,0);-ms-transform:matrix(0.215523,-0.001724,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215523,-0.001724,0.002000,0.249992,0,0);}
.mda_c00281{transform:matrix(0.216260,-0.001514,0.001750,0.249994,0,0);-ms-transform:matrix(0.216260,-0.001514,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216260,-0.001514,0.001750,0.249994,0,0);}
.m57_c00281{transform:matrix(0.216444,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216444,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216444,-0.002597,0.003000,0.249982,0,0);}
.mfe_c00281{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);}
.m6d_c00281{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);}
.m79_c00281{transform:matrix(0.217948,-0.001744,0.002000,0.249992,0,0);-ms-transform:matrix(0.217948,-0.001744,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217948,-0.001744,0.002000,0.249992,0,0);}
.m12f_c00281{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);}
.maf_c00281{transform:matrix(0.218593,-0.001749,0.002000,0.249992,0,0);-ms-transform:matrix(0.218593,-0.001749,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218593,-0.001749,0.002000,0.249992,0,0);}
.m77_c00281{transform:matrix(0.219993,-0.001760,0.002000,0.249992,0,0);-ms-transform:matrix(0.219993,-0.001760,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219993,-0.001760,0.002000,0.249992,0,0);}
.m43_c00281{transform:matrix(0.220124,-0.002641,0.003000,0.249982,0,0);-ms-transform:matrix(0.220124,-0.002641,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220124,-0.002641,0.003000,0.249982,0,0);}
.m70_c00281{transform:matrix(0.221447,-0.002436,0.002750,0.249985,0,0);-ms-transform:matrix(0.221447,-0.002436,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221447,-0.002436,0.002750,0.249985,0,0);}
.ma8_c00281{transform:matrix(0.221527,-0.002437,0.002750,0.249985,0,0);-ms-transform:matrix(0.221527,-0.002437,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221527,-0.002437,0.002750,0.249985,0,0);}
.m3b_c00281{transform:matrix(0.222499,-0.002670,0.003000,0.249982,0,0);-ms-transform:matrix(0.222499,-0.002670,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222499,-0.002670,0.003000,0.249982,0,0);}
.m122_c00281{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);}
.m4f_c00281{transform:matrix(0.222659,-0.002672,0.003000,0.249982,0,0);-ms-transform:matrix(0.222659,-0.002672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222659,-0.002672,0.003000,0.249982,0,0);}
.m32_c00281{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m83_c00281{transform:matrix(0.223968,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.223968,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223968,-0.001792,0.002000,0.249992,0,0);}
.m12a_c00281{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);}
.m52_c00281{transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);-ms-transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);}
.md0_c00281{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);}
.m81_c00281{transform:matrix(0.225293,-0.001802,0.002000,0.249992,0,0);-ms-transform:matrix(0.225293,-0.001802,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225293,-0.001802,0.002000,0.249992,0,0);}
.mc_c00281{transform:matrix(0.225508,0.001804,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225508,0.001804,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225508,0.001804,-0.002000,0.249992,0,0);}
.mea_c00281{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);}
.m117_c00281{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);}
.m46_c00281{transform:matrix(0.226999,-0.002724,0.003000,0.249982,0,0);-ms-transform:matrix(0.226999,-0.002724,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226999,-0.002724,0.003000,0.249982,0,0);}
.me1_c00281{transform:matrix(0.227009,-0.001589,0.001750,0.249994,0,0);-ms-transform:matrix(0.227009,-0.001589,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227009,-0.001589,0.001750,0.249994,0,0);}
.m66_c00281{transform:matrix(0.227309,-0.003410,0.003750,0.249972,0,0);-ms-transform:matrix(0.227309,-0.003410,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227309,-0.003410,0.003750,0.249972,0,0);}
.m3f_c00281{transform:matrix(0.227589,-0.002731,0.003000,0.249982,0,0);-ms-transform:matrix(0.227589,-0.002731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227589,-0.002731,0.003000,0.249982,0,0);}
.m145_c00281{transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);}
.m1c_c00281{transform:matrix(0.228179,-0.002282,0.002500,0.249988,0,0);-ms-transform:matrix(0.228179,-0.002282,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228179,-0.002282,0.002500,0.249988,0,0);}
.m38_c00281{transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);}
.m6e_c00281{transform:matrix(0.229381,-0.002523,0.002750,0.249985,0,0);-ms-transform:matrix(0.229381,-0.002523,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229381,-0.002523,0.002750,0.249985,0,0);}
.ma9_c00281{transform:matrix(0.229791,-0.002528,0.002750,0.249985,0,0);-ms-transform:matrix(0.229791,-0.002528,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229791,-0.002528,0.002750,0.249985,0,0);}
.m5c_c00281{transform:matrix(0.230203,-0.002762,0.003000,0.249982,0,0);-ms-transform:matrix(0.230203,-0.002762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230203,-0.002762,0.003000,0.249982,0,0);}
.m2e_c00281{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);}
.m2f_c00281{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);}
.mfc_c00281{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);}
.m11e_c00281{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);}
.mad_c00281{transform:matrix(0.235027,-0.001880,0.002000,0.249992,0,0);-ms-transform:matrix(0.235027,-0.001880,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235027,-0.001880,0.002000,0.249992,0,0);}
.m5f_c00281{transform:matrix(0.236148,-0.002834,0.003000,0.249982,0,0);-ms-transform:matrix(0.236148,-0.002834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236148,-0.002834,0.003000,0.249982,0,0);}
.mc0_c00281{transform:matrix(0.236925,-0.002132,0.002250,0.249990,0,0);-ms-transform:matrix(0.236925,-0.002132,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236925,-0.002132,0.002250,0.249990,0,0);}
.mc1_c00281{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);}
.mae_c00281{transform:matrix(0.238762,-0.001910,0.002000,0.249992,0,0);-ms-transform:matrix(0.238762,-0.001910,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238762,-0.001910,0.002000,0.249992,0,0);}
.m146_c00281{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);}
.m129_c00281{transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);}
.mf1_c00281{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);}
.mef_c00281{transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(0.244317,-0.002932,0.003000,0.249982,0,0);-ms-transform:matrix(0.244317,-0.002932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244317,-0.002932,0.003000,0.249982,0,0);}
.m11d_c00281{transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00281{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);}
.m84_c00281{transform:matrix(0.246817,-0.001975,0.002000,0.249992,0,0);-ms-transform:matrix(0.246817,-0.001975,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246817,-0.001975,0.002000,0.249992,0,0);}
.m78_c00281{transform:matrix(0.248162,-0.001985,0.002000,0.249992,0,0);-ms-transform:matrix(0.248162,-0.001985,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248162,-0.001985,0.002000,0.249992,0,0);}
.mb5_c00281{transform:matrix(0.250015,-0.002250,0.002250,0.249990,0,0);-ms-transform:matrix(0.250015,-0.002250,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250015,-0.002250,0.002250,0.249990,0,0);}
.me2_c00281{transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);}
.m68_c00281{transform:matrix(0.254420,-0.002799,0.002750,0.249985,0,0);-ms-transform:matrix(0.254420,-0.002799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254420,-0.002799,0.002750,0.249985,0,0);}
.m28_c00281{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m12d_c00281{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);}
.m123_c00281{transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260490,0.000000,0.000000,0.250000,0,0);}
.m60_c00281{transform:matrix(0.262136,-0.003146,0.003000,0.249982,0,0);-ms-transform:matrix(0.262136,-0.003146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262136,-0.003146,0.003000,0.249982,0,0);}
.m37_c00281{transform:matrix(0.262321,-0.003148,0.003000,0.249982,0,0);-ms-transform:matrix(0.262321,-0.003148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262321,-0.003148,0.003000,0.249982,0,0);}
.mec_c00281{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);}
.mcb_c00281{transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264645,0.000000,0.000000,0.250000,0,0);}
.m9f_c00281{transform:matrix(0.264884,-0.002914,0.002750,0.249985,0,0);-ms-transform:matrix(0.264884,-0.002914,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264884,-0.002914,0.002750,0.249985,0,0);}
.m3_c00281{transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);}
.m11f_c00281{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.270046,-0.003241,0.003000,0.249982,0,0);-ms-transform:matrix(0.270046,-0.003241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270046,-0.003241,0.003000,0.249982,0,0);}
.m11a_c00281{transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);}
.m9e_c00281{transform:matrix(0.272743,-0.003000,0.002750,0.249985,0,0);-ms-transform:matrix(0.272743,-0.003000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272743,-0.003000,0.002750,0.249985,0,0);}
.m11c_c00281{transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);}
.m12b_c00281{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);}
.m11b_c00281{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);}
.mb_c00281{transform:matrix(0.281146,0.002249,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281146,0.002249,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281146,0.002249,-0.002000,0.249992,0,0);}
.meb_c00281{transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294770,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.296751,0.002374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296751,0.002374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296751,0.002374,-0.002000,0.249992,0,0);}
.m35_c00281{transform:matrix(0.299648,-0.003596,0.003000,0.249982,0,0);-ms-transform:matrix(0.299648,-0.003596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299648,-0.003596,0.003000,0.249982,0,0);}
.m2d_c00281{transform:matrix(0.303720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303720,0.000000,0.000000,0.250000,0,0);}
.m15f_c00281{transform:matrix(0.305074,-0.006101,0.004999,0.249950,0,0);-ms-transform:matrix(0.305074,-0.006101,0.004999,0.249950,0,0);-webkit-transform:matrix(0.305074,-0.006101,0.004999,0.249950,0,0);}
.ma5_c00281{transform:matrix(0.311246,-0.003424,0.002750,0.249985,0,0);-ms-transform:matrix(0.311246,-0.003424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.311246,-0.003424,0.002750,0.249985,0,0);}
.m8_c00281{transform:matrix(0.312445,0.002500,-0.002000,0.249992,0,0);-ms-transform:matrix(0.312445,0.002500,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.312445,0.002500,-0.002000,0.249992,0,0);}
.m31_c00281{transform:matrix(0.320575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320575,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.331844,0.002655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.331844,0.002655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.331844,0.002655,-0.002000,0.249992,0,0);}
.m6_c00281{transform:matrix(0.348264,0.002786,-0.002000,0.249992,0,0);-ms-transform:matrix(0.348264,0.002786,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.348264,0.002786,-0.002000,0.249992,0,0);}
.m120_c00281{transform:matrix(0.355740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355740,0.000000,0.000000,0.250000,0,0);}
.m62_c00281{transform:matrix(0.365479,-0.005482,0.003750,0.249972,0,0);-ms-transform:matrix(0.365479,-0.005482,0.003750,0.249972,0,0);-webkit-transform:matrix(0.365479,-0.005482,0.003750,0.249972,0,0);}
.m121_c00281{transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);}
.m61_c00281{transform:matrix(0.396526,-0.004758,0.003000,0.249982,0,0);-ms-transform:matrix(0.396526,-0.004758,0.003000,0.249982,0,0);-webkit-transform:matrix(0.396526,-0.004758,0.003000,0.249982,0,0);}
.m2_c00281{transform:matrix(0.413072,0.003305,-0.002000,0.249992,0,0);-ms-transform:matrix(0.413072,0.003305,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.413072,0.003305,-0.002000,0.249992,0,0);}
.m50_c00281{transform:matrix(0.419250,-0.005031,0.003000,0.249982,0,0);-ms-transform:matrix(0.419250,-0.005031,0.003000,0.249982,0,0);-webkit-transform:matrix(0.419250,-0.005031,0.003000,0.249982,0,0);}
.m160_c00281{transform:matrix(0.421676,-0.008434,0.004999,0.249950,0,0);-ms-transform:matrix(0.421676,-0.008434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.421676,-0.008434,0.004999,0.249950,0,0);}
.mf_c00281{transform:matrix(0.447356,0.003579,-0.002000,0.249992,0,0);-ms-transform:matrix(0.447356,0.003579,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.447356,0.003579,-0.002000,0.249992,0,0);}
.me_c00281{transform:matrix(0.454520,0.003636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.454520,0.003636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.454520,0.003636,-0.002000,0.249992,0,0);}
.m2c_c00281{transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.473396,-0.004734,0.002500,0.249988,0,0);-ms-transform:matrix(0.473396,-0.004734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.473396,-0.004734,0.002500,0.249988,0,0);}
.m25_c00281{transform:matrix(0.546490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546490,0.000000,0.000000,0.250000,0,0);}
.m59_c00281{transform:matrix(0.606166,-0.007274,0.003000,0.249982,0,0);-ms-transform:matrix(0.606166,-0.007274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.606166,-0.007274,0.003000,0.249982,0,0);}
.m6b_c00281{transform:matrix(0.641886,-0.007061,0.002750,0.249985,0,0);-ms-transform:matrix(0.641886,-0.007061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.641886,-0.007061,0.002750,0.249985,0,0);}
.m7_c00281{transform:matrix(0.804214,0.006434,-0.002000,0.249992,0,0);-ms-transform:matrix(0.804214,0.006434,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.804214,0.006434,-0.002000,0.249992,0,0);}
.m15e_c00281{transform:matrix(0.919021,-0.018380,0.004999,0.249950,0,0);-ms-transform:matrix(0.919021,-0.018380,0.004999,0.249950,0,0);-webkit-transform:matrix(0.919021,-0.018380,0.004999,0.249950,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:39.901277px;}
.fs17_c00281{font-size:58.800000px;}
.fsb_c00281{font-size:59.853621px;}
.fs6_c00281{font-size:63.000000px;}
.fs13_c00281{font-size:63.001543px;}
.fs18_c00281{font-size:65.100000px;}
.fsa_c00281{font-size:65.107323px;}
.fs10_c00281{font-size:66.154002px;}
.fs5_c00281{font-size:67.200000px;}
.fs12_c00281{font-size:68.250000px;}
.fs19_c00281{font-size:68.251672px;}
.fse_c00281{font-size:69.300000px;}
.fs11_c00281{font-size:69.302807px;}
.fs4_c00281{font-size:69.303465px;}
.fs8_c00281{font-size:69.304989px;}
.fs1a_c00281{font-size:70.350000px;}
.fs9_c00281{font-size:70.355065px;}
.fs14_c00281{font-size:71.400000px;}
.fsd_c00281{font-size:71.402285px;}
.fs7_c00281{font-size:71.405141px;}
.fs16_c00281{font-size:72.450000px;}
.fsc_c00281{font-size:72.452318px;}
.fs3_c00281{font-size:72.453622px;}
.fsf_c00281{font-size:73.502352px;}
.fs15_c00281{font-size:74.551826px;}
.fs2_c00281{font-size:80.852587px;}
.fs1b_c00281{font-size:152.280447px;}
.fs1_c00281{font-size:195.306250px;}
.y0_c00281{bottom:0.000000px;}
.y10b_c00281{bottom:102.343500px;}
.y10c_c00281{bottom:107.721270px;}
.y10d_c00281{bottom:109.524090px;}
.y10a_c00281{bottom:150.772500px;}
.y109_c00281{bottom:173.718000px;}
.yff_c00281{bottom:194.670000px;}
.y100_c00281{bottom:195.171039px;}
.y101_c00281{bottom:195.599953px;}
.y102_c00281{bottom:195.883622px;}
.y103_c00281{bottom:196.412801px;}
.y104_c00281{bottom:196.701939px;}
.y105_c00281{bottom:196.841872px;}
.y106_c00281{bottom:197.168769px;}
.y107_c00281{bottom:197.514670px;}
.y108_c00281{bottom:197.699911px;}
.yf4_c00281{bottom:217.621500px;}
.yf5_c00281{bottom:217.850001px;}
.yf6_c00281{bottom:218.581512px;}
.yf7_c00281{bottom:218.965655px;}
.yf8_c00281{bottom:219.369237px;}
.yf9_c00281{bottom:219.929690px;}
.yfa_c00281{bottom:219.935090px;}
.yfb_c00281{bottom:220.474158px;}
.yfc_c00281{bottom:220.817099px;}
.yfd_c00281{bottom:221.395412px;}
.yfe_c00281{bottom:221.711325px;}
.ye7_c00281{bottom:240.840000px;}
.ye8_c00281{bottom:240.990000px;}
.ye9_c00281{bottom:241.254000px;}
.yea_c00281{bottom:241.407000px;}
.yeb_c00281{bottom:241.746000px;}
.yec_c00281{bottom:241.924500px;}
.yed_c00281{bottom:242.394000px;}
.yee_c00281{bottom:242.566500px;}
.yef_c00281{bottom:242.820000px;}
.yf0_c00281{bottom:243.048000px;}
.yf1_c00281{bottom:243.460500px;}
.yf2_c00281{bottom:243.664500px;}
.yf3_c00281{bottom:243.804000px;}
.ye6_c00281{bottom:265.531500px;}
.ye5_c00281{bottom:287.905500px;}
.yd8_c00281{bottom:309.150000px;}
.yd9_c00281{bottom:309.303048px;}
.yda_c00281{bottom:309.618794px;}
.ydb_c00281{bottom:309.821213px;}
.ydc_c00281{bottom:310.032745px;}
.ydd_c00281{bottom:310.196934px;}
.yde_c00281{bottom:310.730135px;}
.ydf_c00281{bottom:310.919166px;}
.ye0_c00281{bottom:311.261235px;}
.ye1_c00281{bottom:311.455852px;}
.ye2_c00281{bottom:311.684364px;}
.ye3_c00281{bottom:312.017182px;}
.ye4_c00281{bottom:312.174126px;}
.yd7_c00281{bottom:333.801000px;}
.yd6_c00281{bottom:357.049500px;}
.yca_c00281{bottom:378.000000px;}
.ycb_c00281{bottom:378.198481px;}
.ycc_c00281{bottom:378.566979px;}
.ycd_c00281{bottom:378.795784px;}
.yce_c00281{bottom:379.256682px;}
.ycf_c00281{bottom:379.523392px;}
.yd0_c00281{bottom:379.674614px;}
.yd1_c00281{bottom:380.086634px;}
.yd2_c00281{bottom:380.258623px;}
.yd3_c00281{bottom:380.814042px;}
.yd4_c00281{bottom:381.001373px;}
.yd5_c00281{bottom:381.230073px;}
.ybe_c00281{bottom:401.221500px;}
.ybf_c00281{bottom:401.653500px;}
.yc0_c00281{bottom:401.977500px;}
.yc1_c00281{bottom:402.228000px;}
.yc2_c00281{bottom:402.573000px;}
.yc3_c00281{bottom:402.841500px;}
.yc4_c00281{bottom:403.254000px;}
.yc5_c00281{bottom:403.483500px;}
.yc6_c00281{bottom:403.767000px;}
.yc7_c00281{bottom:404.512500px;}
.yc8_c00281{bottom:404.700000px;}
.yc9_c00281{bottom:404.847000px;}
.ybd_c00281{bottom:425.086500px;}
.yb1_c00281{bottom:446.311500px;}
.yb2_c00281{bottom:446.527810px;}
.yb3_c00281{bottom:447.059630px;}
.yb4_c00281{bottom:447.266328px;}
.yb5_c00281{bottom:447.674905px;}
.yb6_c00281{bottom:448.345559px;}
.yb7_c00281{bottom:448.508598px;}
.yb8_c00281{bottom:448.819409px;}
.yb9_c00281{bottom:449.147067px;}
.yba_c00281{bottom:449.337039px;}
.ybb_c00281{bottom:449.672325px;}
.ybc_c00281{bottom:450.155544px;}
.ya6_c00281{bottom:468.991500px;}
.ya7_c00281{bottom:469.479468px;}
.ya8_c00281{bottom:469.866096px;}
.ya9_c00281{bottom:470.086428px;}
.yaa_c00281{bottom:470.635020px;}
.yab_c00281{bottom:470.762616px;}
.yac_c00281{bottom:471.276336px;}
.yad_c00281{bottom:471.470724px;}
.yae_c00281{bottom:471.734532px;}
.yaf_c00281{bottom:471.849252px;}
.yb0_c00281{bottom:472.371732px;}
.y99_c00281{bottom:491.401500px;}
.y9a_c00281{bottom:492.031750px;}
.y9b_c00281{bottom:492.286560px;}
.y9c_c00281{bottom:492.853830px;}
.y9d_c00281{bottom:493.159823px;}
.y9e_c00281{bottom:493.982529px;}
.y9f_c00281{bottom:494.249845px;}
.ya0_c00281{bottom:494.579400px;}
.ya1_c00281{bottom:494.953735px;}
.ya2_c00281{bottom:495.393230px;}
.ya3_c00281{bottom:495.708099px;}
.ya4_c00281{bottom:495.912980px;}
.ya5_c00281{bottom:496.370524px;}
.y89_c00281{bottom:515.161500px;}
.y8a_c00281{bottom:515.483352px;}
.y8b_c00281{bottom:515.653728px;}
.y8c_c00281{bottom:515.796936px;}
.y8d_c00281{bottom:516.136092px;}
.y8e_c00281{bottom:516.370908px;}
.y8f_c00281{bottom:516.766488px;}
.y90_c00281{bottom:516.865860px;}
.y91_c00281{bottom:517.038672px;}
.y92_c00281{bottom:517.237380px;}
.y93_c00281{bottom:517.408044px;}
.y94_c00281{bottom:517.622460px;}
.y95_c00281{bottom:517.988712px;}
.y96_c00281{bottom:518.114052px;}
.y97_c00281{bottom:518.343000px;}
.y98_c00281{bottom:518.660820px;}
.y88_c00281{bottom:538.047000px;}
.y7b_c00281{bottom:560.250000px;}
.y7c_c00281{bottom:560.578668px;}
.y7d_c00281{bottom:560.900532px;}
.y7e_c00281{bottom:561.330360px;}
.y7f_c00281{bottom:561.649800px;}
.y80_c00281{bottom:561.827256px;}
.y81_c00281{bottom:562.133988px;}
.y82_c00281{bottom:562.321896px;}
.y83_c00281{bottom:562.654800px;}
.y84_c00281{bottom:563.144868px;}
.y85_c00281{bottom:563.313312px;}
.y86_c00281{bottom:563.594088px;}
.y87_c00281{bottom:563.836056px;}
.y71_c00281{bottom:583.741500px;}
.y72_c00281{bottom:584.108724px;}
.y73_c00281{bottom:584.348580px;}
.y74_c00281{bottom:585.085188px;}
.y75_c00281{bottom:585.344412px;}
.y76_c00281{bottom:586.013700px;}
.y77_c00281{bottom:586.251312px;}
.y78_c00281{bottom:586.480560px;}
.y79_c00281{bottom:586.975188px;}
.y7a_c00281{bottom:587.322936px;}
.y65_c00281{bottom:605.341500px;}
.y66_c00281{bottom:605.686169px;}
.y67_c00281{bottom:606.119277px;}
.y68_c00281{bottom:606.355887px;}
.y69_c00281{bottom:607.070271px;}
.y6a_c00281{bottom:607.310956px;}
.y6b_c00281{bottom:607.934656px;}
.y6c_c00281{bottom:608.400913px;}
.y6d_c00281{bottom:608.647473px;}
.y6e_c00281{bottom:609.267708px;}
.y6f_c00281{bottom:609.594358px;}
.y70_c00281{bottom:610.232941px;}
.y5f_c00281{bottom:634.231500px;}
.y60_c00281{bottom:634.876890px;}
.y61_c00281{bottom:635.238645px;}
.y62_c00281{bottom:636.065587px;}
.y63_c00281{bottom:636.318960px;}
.y64_c00281{bottom:636.648495px;}
.y54_c00281{bottom:660.286398px;}
.y55_c00281{bottom:660.601674px;}
.y56_c00281{bottom:661.408644px;}
.y57_c00281{bottom:662.550522px;}
.y58_c00281{bottom:663.297156px;}
.y59_c00281{bottom:663.526710px;}
.y5a_c00281{bottom:663.860028px;}
.y5b_c00281{bottom:664.596654px;}
.y5c_c00281{bottom:665.150412px;}
.y5d_c00281{bottom:665.468640px;}
.y5e_c00281{bottom:666.185928px;}
.y49_c00281{bottom:683.626458px;}
.y4a_c00281{bottom:684.867918px;}
.y4b_c00281{bottom:685.324986px;}
.y4c_c00281{bottom:685.589760px;}
.y4d_c00281{bottom:686.246034px;}
.y4e_c00281{bottom:686.560416px;}
.y4f_c00281{bottom:686.759478px;}
.y50_c00281{bottom:687.234378px;}
.y51_c00281{bottom:687.585144px;}
.y52_c00281{bottom:687.968658px;}
.y53_c00281{bottom:688.627434px;}
.y3d_c00281{bottom:705.762720px;}
.y3e_c00281{bottom:706.825206px;}
.y3f_c00281{bottom:707.113890px;}
.y40_c00281{bottom:707.561442px;}
.y41_c00281{bottom:707.797872px;}
.y42_c00281{bottom:708.276456px;}
.y43_c00281{bottom:708.614838px;}
.y44_c00281{bottom:709.233012px;}
.y45_c00281{bottom:709.599114px;}
.y46_c00281{bottom:710.283474px;}
.y47_c00281{bottom:710.785440px;}
.y48_c00281{bottom:711.447696px;}
.y30_c00281{bottom:728.191500px;}
.y31_c00281{bottom:728.713176px;}
.y32_c00281{bottom:729.002058px;}
.y33_c00281{bottom:729.335832px;}
.y34_c00281{bottom:730.175514px;}
.y35_c00281{bottom:730.460760px;}
.y36_c00281{bottom:730.825998px;}
.y37_c00281{bottom:731.226444px;}
.y38_c00281{bottom:731.387184px;}
.y39_c00281{bottom:731.863500px;}
.y3a_c00281{bottom:732.284196px;}
.y3b_c00281{bottom:732.615360px;}
.y3c_c00281{bottom:733.065774px;}
.y27_c00281{bottom:755.461500px;}
.y28_c00281{bottom:755.926500px;}
.y29_c00281{bottom:756.778500px;}
.y2a_c00281{bottom:757.179000px;}
.y2b_c00281{bottom:757.510500px;}
.y2c_c00281{bottom:758.025000px;}
.y2d_c00281{bottom:758.887500px;}
.y2e_c00281{bottom:759.628500px;}
.y2f_c00281{bottom:759.936000px;}
.y26_c00281{bottom:781.644000px;}
.y1d_c00281{bottom:808.380930px;}
.y1e_c00281{bottom:809.055300px;}
.y1f_c00281{bottom:809.452605px;}
.y20_c00281{bottom:809.767770px;}
.y21_c00281{bottom:810.171150px;}
.y22_c00281{bottom:810.664470px;}
.y23_c00281{bottom:811.563045px;}
.y24_c00281{bottom:811.935525px;}
.y25_c00281{bottom:812.612700px;}
.y11_c00281{bottom:831.601500px;}
.y12_c00281{bottom:832.028160px;}
.y13_c00281{bottom:832.891170px;}
.y14_c00281{bottom:833.023950px;}
.y15_c00281{bottom:833.173065px;}
.y16_c00281{bottom:833.664090px;}
.y17_c00281{bottom:834.007380px;}
.y18_c00281{bottom:834.496215px;}
.y19_c00281{bottom:834.962835px;}
.y1a_c00281{bottom:835.267950px;}
.y1b_c00281{bottom:835.571145px;}
.y1c_c00281{bottom:836.279910px;}
.yd_c00281{bottom:874.529196px;}
.ye_c00281{bottom:875.194068px;}
.yf_c00281{bottom:875.885244px;}
.y10_c00281{bottom:877.401852px;}
.yc_c00281{bottom:919.481304px;}
.yb_c00281{bottom:935.191476px;}
.ya_c00281{bottom:935.402892px;}
.y9_c00281{bottom:935.515968px;}
.y8_c00281{bottom:935.900292px;}
.y7_c00281{bottom:936.066744px;}
.y6_c00281{bottom:936.142236px;}
.y5_c00281{bottom:936.338052px;}
.y4_c00281{bottom:936.483564px;}
.y3_c00281{bottom:937.068684px;}
.y2_c00281{bottom:937.470204px;}
.y1_c00281{bottom:937.980000px;}
.h2_c00281{height:39.901277px;}
.h19_c00281{height:58.800000px;}
.hd_c00281{height:59.853621px;}
.h8_c00281{height:63.000000px;}
.h15_c00281{height:63.001543px;}
.h1a_c00281{height:65.100000px;}
.hc_c00281{height:65.107323px;}
.h12_c00281{height:66.154002px;}
.h7_c00281{height:67.200000px;}
.h14_c00281{height:68.250000px;}
.h1b_c00281{height:68.251672px;}
.h10_c00281{height:69.300000px;}
.h13_c00281{height:69.302807px;}
.h6_c00281{height:69.303465px;}
.ha_c00281{height:69.304989px;}
.h1c_c00281{height:70.350000px;}
.hb_c00281{height:70.355065px;}
.h16_c00281{height:71.400000px;}
.hf_c00281{height:71.402285px;}
.h9_c00281{height:71.405141px;}
.h18_c00281{height:72.450000px;}
.he_c00281{height:72.452318px;}
.h5_c00281{height:72.453622px;}
.h11_c00281{height:73.502352px;}
.h17_c00281{height:74.551826px;}
.h4_c00281{height:80.852587px;}
.h1d_c00281{height:152.280447px;}
.h3_c00281{height:195.306250px;}
.h0_c00281{height:1008.450000px;}
.h1_c00281{height:1008.750000px;}
.w0_c00281{width:696.000000px;}
.x0_c00281{left:0.000000px;}
.xbf_c00281{left:99.526500px;}
.x1_c00281{left:106.884000px;}
.xc_c00281{left:111.510816px;}
.x79_c00281{left:151.611000px;}
.x40_c00281{left:155.429058px;}
.xd_c00281{left:156.542604px;}
.x81_c00281{left:158.337000px;}
.x2_c00281{left:170.608500px;}
.x68_c00281{left:175.063500px;}
.x2d_c00281{left:177.276000px;}
.x99_c00281{left:178.470000px;}
.x47_c00281{left:179.726814px;}
.xb3_c00281{left:181.296000px;}
.x82_c00281{left:182.371500px;}
.x93_c00281{left:185.047500px;}
.x52_c00281{left:187.260000px;}
.x25_c00281{left:193.231500px;}
.x61_c00281{left:197.481000px;}
.x11_c00281{left:199.393500px;}
.x5b_c00281{left:202.332000px;}
.xa8_c00281{left:205.470000px;}
.xe_c00281{left:207.692196px;}
.x8e_c00281{left:209.887500px;}
.x7a_c00281{left:212.607000px;}
.x69_c00281{left:215.295000px;}
.xad_c00281{left:216.810000px;}
.x1c_c00281{left:218.039070px;}
.x3_c00281{left:220.798500px;}
.xa1_c00281{left:223.119000px;}
.x26_c00281{left:224.242500px;}
.x53_c00281{left:226.633500px;}
.x9a_c00281{left:229.230000px;}
.x5c_c00281{left:232.314000px;}
.x89_c00281{left:234.630000px;}
.x6a_c00281{left:236.592000px;}
.x62_c00281{left:237.714000px;}
.x48_c00281{left:241.848576px;}
.x2e_c00281{left:244.822500px;}
.x4d_c00281{left:246.880500px;}
.x23_c00281{left:248.130000px;}
.x8f_c00281{left:250.393500px;}
.xa2_c00281{left:252.036000px;}
.x1d_c00281{left:254.169210px;}
.xf_c00281{left:260.804124px;}
.xb4_c00281{left:262.575000px;}
.x83_c00281{left:264.429000px;}
.xa9_c00281{left:265.950000px;}
.x37_c00281{left:268.824576px;}
.x94_c00281{left:270.376500px;}
.x2f_c00281{left:272.637000px;}
.xb9_c00281{left:278.370000px;}
.x27_c00281{left:281.076000px;}
.x1e_c00281{left:282.835425px;}
.x12_c00281{left:285.694500px;}
.x7b_c00281{left:288.477000px;}
.x4e_c00281{left:289.906500px;}
.x63_c00281{left:291.442500px;}
.x4_c00281{left:293.938500px;}
.x6b_c00281{left:296.887500px;}
.x13_c00281{left:298.972500px;}
.xae_c00281{left:301.590000px;}
.xbc_c00281{left:304.560000px;}
.x38_c00281{left:306.120576px;}
.x28_c00281{left:307.735500px;}
.x41_c00281{left:309.849912px;}
.xb1_c00281{left:310.914000px;}
.x5_c00281{left:312.127500px;}
.x14_c00281{left:313.884000px;}
.x73_c00281{left:316.875000px;}
.x1f_c00281{left:319.573065px;}
.xba_c00281{left:322.650000px;}
.x24_c00281{left:323.730000px;}
.x39_c00281{left:325.823076px;}
.x29_c00281{left:329.862000px;}
.x64_c00281{left:331.372500px;}
.x42_c00281{left:333.914700px;}
.x54_c00281{left:334.968000px;}
.x6_c00281{left:336.604500px;}
.xaa_c00281{left:337.770000px;}
.x30_c00281{left:342.610500px;}
.xbb_c00281{left:344.250000px;}
.x7_c00281{left:346.041000px;}
.x67_c00281{left:348.030000px;}
.x8a_c00281{left:349.920000px;}
.x65_c00281{left:353.554500px;}
.x5d_c00281{left:356.793000px;}
.x90_c00281{left:358.395000px;}
.x9d_c00281{left:360.720000px;}
.x15_c00281{left:362.986500px;}
.x20_c00281{left:364.404615px;}
.x3a_c00281{left:365.705076px;}
.x8_c00281{left:366.847500px;}
.x4f_c00281{left:369.153000px;}
.x7c_c00281{left:373.000500px;}
.x95_c00281{left:374.320500px;}
.x6c_c00281{left:375.687000px;}
.x10_c00281{left:377.435220px;}
.xa3_c00281{left:381.882000px;}
.x84_c00281{left:384.343500px;}
.x50_c00281{left:386.044500px;}
.x49_c00281{left:387.097830px;}
.x6d_c00281{left:388.108500px;}
.xab_c00281{left:390.150000px;}
.x55_c00281{left:391.668000px;}
.x3b_c00281{left:393.903576px;}
.x96_c00281{left:395.923500px;}
.x16_c00281{left:397.315500px;}
.xaf_c00281{left:399.600000px;}
.x85_c00281{left:402.459000px;}
.x4a_c00281{left:404.727114px;}
.x51_c00281{left:408.013500px;}
.x6e_c00281{left:409.710000px;}
.x8b_c00281{left:411.210000px;}
.xb5_c00281{left:412.372500px;}
.x9_c00281{left:414.888000px;}
.x74_c00281{left:415.968000px;}
.x2a_c00281{left:421.714500px;}
.xa_c00281{left:429.022500px;}
.x31_c00281{left:430.188000px;}
.x56_c00281{left:434.055000px;}
.x8c_c00281{left:435.240000px;}
.x7d_c00281{left:437.215500px;}
.x91_c00281{left:438.582000px;}
.x43_c00281{left:440.267478px;}
.x9e_c00281{left:441.720000px;}
.x32_c00281{left:443.583000px;}
.x17_c00281{left:446.199000px;}
.xb_c00281{left:455.449500px;}
.x57_c00281{left:456.469500px;}
.xa4_c00281{left:457.753500px;}
.x7e_c00281{left:461.514000px;}
.x9b_c00281{left:464.130000px;}
.xb7_c00281{left:465.859500px;}
.x9f_c00281{left:469.260000px;}
.x2b_c00281{left:471.114000px;}
.x86_c00281{left:473.400000px;}
.x3c_c00281{left:475.926576px;}
.x21_c00281{left:479.958960px;}
.x33_c00281{left:483.276000px;}
.xa5_c00281{left:485.556000px;}
.x4b_c00281{left:487.013124px;}
.x2c_c00281{left:491.617500px;}
.x18_c00281{left:492.861000px;}
.x7f_c00281{left:494.490000px;}
.xbd_c00281{left:496.260000px;}
.x5e_c00281{left:498.811500px;}
.x80_c00281{left:508.830000px;}
.xb6_c00281{left:510.973500px;}
.x58_c00281{left:512.854500px;}
.x44_c00281{left:515.323878px;}
.x34_c00281{left:518.334000px;}
.x75_c00281{left:519.912000px;}
.x19_c00281{left:523.372500px;}
.x6f_c00281{left:528.465000px;}
.x4c_c00281{left:529.659120px;}
.x87_c00281{left:531.762000px;}
.x3d_c00281{left:532.956576px;}
.x66_c00281{left:539.311500px;}
.x22_c00281{left:541.525845px;}
.x59_c00281{left:542.550000px;}
.x70_c00281{left:544.132500px;}
.x35_c00281{left:545.931000px;}
.x76_c00281{left:548.536500px;}
.x45_c00281{left:550.158792px;}
.x1a_c00281{left:553.692000px;}
.x97_c00281{left:558.699000px;}
.x5f_c00281{left:560.640000px;}
.xb8_c00281{left:561.973500px;}
.xac_c00281{left:564.300000px;}
.xa6_c00281{left:565.746000px;}
.x77_c00281{left:567.162000px;}
.x9c_c00281{left:569.160000px;}
.x71_c00281{left:572.751000px;}
.x3e_c00281{left:574.787076px;}
.x8d_c00281{left:577.800000px;}
.xb2_c00281{left:579.519000px;}
.xbe_c00281{left:581.310000px;}
.x36_c00281{left:583.465500px;}
.x88_c00281{left:585.453000px;}
.xa7_c00281{left:588.166500px;}
.x92_c00281{left:590.586000px;}
.xb0_c00281{left:594.540000px;}
.x5a_c00281{left:600.603000px;}
.xa0_c00281{left:601.830000px;}
.x60_c00281{left:604.108500px;}
.x78_c00281{left:608.757000px;}
.x46_c00281{left:610.057512px;}
.x72_c00281{left:612.478500px;}
.x98_c00281{left:618.132000px;}
.x1b_c00281{left:624.568500px;}
.x3f_c00281{left:629.975076px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs0_c00281{font-size:35.467802pt;}
.fs17_c00281{font-size:52.266667pt;}
.fsb_c00281{font-size:53.203219pt;}
.fs6_c00281{font-size:56.000000pt;}
.fs13_c00281{font-size:56.001372pt;}
.fs18_c00281{font-size:57.866667pt;}
.fsa_c00281{font-size:57.873176pt;}
.fs10_c00281{font-size:58.803557pt;}
.fs5_c00281{font-size:59.733333pt;}
.fs12_c00281{font-size:60.666667pt;}
.fs19_c00281{font-size:60.668153pt;}
.fse_c00281{font-size:61.600000pt;}
.fs11_c00281{font-size:61.602495pt;}
.fs4_c00281{font-size:61.603080pt;}
.fs8_c00281{font-size:61.604435pt;}
.fs1a_c00281{font-size:62.533333pt;}
.fs9_c00281{font-size:62.537836pt;}
.fs14_c00281{font-size:63.466667pt;}
.fsd_c00281{font-size:63.468698pt;}
.fs7_c00281{font-size:63.471236pt;}
.fs16_c00281{font-size:64.400000pt;}
.fsc_c00281{font-size:64.402061pt;}
.fs3_c00281{font-size:64.403220pt;}
.fsf_c00281{font-size:65.335424pt;}
.fs15_c00281{font-size:66.268290pt;}
.fs2_c00281{font-size:71.868966pt;}
.fs1b_c00281{font-size:135.360397pt;}
.fs1_c00281{font-size:173.605555pt;}
.y0_c00281{bottom:0.000000pt;}
.y10b_c00281{bottom:90.972000pt;}
.y10c_c00281{bottom:95.752240pt;}
.y10d_c00281{bottom:97.354747pt;}
.y10a_c00281{bottom:134.020000pt;}
.y109_c00281{bottom:154.416000pt;}
.yff_c00281{bottom:173.040000pt;}
.y100_c00281{bottom:173.485368pt;}
.y101_c00281{bottom:173.866625pt;}
.y102_c00281{bottom:174.118775pt;}
.y103_c00281{bottom:174.589156pt;}
.y104_c00281{bottom:174.846168pt;}
.y105_c00281{bottom:174.970553pt;}
.y106_c00281{bottom:175.261128pt;}
.y107_c00281{bottom:175.568596pt;}
.y108_c00281{bottom:175.733255pt;}
.yf4_c00281{bottom:193.441333pt;}
.yf5_c00281{bottom:193.644445pt;}
.yf6_c00281{bottom:194.294677pt;}
.yf7_c00281{bottom:194.636137pt;}
.yf8_c00281{bottom:194.994877pt;}
.yf9_c00281{bottom:195.493057pt;}
.yfa_c00281{bottom:195.497857pt;}
.yfb_c00281{bottom:195.977029pt;}
.yfc_c00281{bottom:196.281865pt;}
.yfd_c00281{bottom:196.795921pt;}
.yfe_c00281{bottom:197.076733pt;}
.ye7_c00281{bottom:214.080000pt;}
.ye8_c00281{bottom:214.213333pt;}
.ye9_c00281{bottom:214.448000pt;}
.yea_c00281{bottom:214.584000pt;}
.yeb_c00281{bottom:214.885333pt;}
.yec_c00281{bottom:215.044000pt;}
.yed_c00281{bottom:215.461333pt;}
.yee_c00281{bottom:215.614667pt;}
.yef_c00281{bottom:215.840000pt;}
.yf0_c00281{bottom:216.042667pt;}
.yf1_c00281{bottom:216.409333pt;}
.yf2_c00281{bottom:216.590667pt;}
.yf3_c00281{bottom:216.714667pt;}
.ye6_c00281{bottom:236.028000pt;}
.ye5_c00281{bottom:255.916000pt;}
.yd8_c00281{bottom:274.800000pt;}
.yd9_c00281{bottom:274.936043pt;}
.yda_c00281{bottom:275.216705pt;}
.ydb_c00281{bottom:275.396633pt;}
.ydc_c00281{bottom:275.584663pt;}
.ydd_c00281{bottom:275.730608pt;}
.yde_c00281{bottom:276.204564pt;}
.ydf_c00281{bottom:276.372592pt;}
.ye0_c00281{bottom:276.676653pt;}
.ye1_c00281{bottom:276.849647pt;}
.ye2_c00281{bottom:277.052768pt;}
.ye3_c00281{bottom:277.348607pt;}
.ye4_c00281{bottom:277.488112pt;}
.yd7_c00281{bottom:296.712000pt;}
.yd6_c00281{bottom:317.377333pt;}
.yca_c00281{bottom:336.000000pt;}
.ycb_c00281{bottom:336.176428pt;}
.ycc_c00281{bottom:336.503981pt;}
.ycd_c00281{bottom:336.707364pt;}
.yce_c00281{bottom:337.117051pt;}
.ycf_c00281{bottom:337.354127pt;}
.yd0_c00281{bottom:337.488545pt;}
.yd1_c00281{bottom:337.854785pt;}
.yd2_c00281{bottom:338.007665pt;}
.yd3_c00281{bottom:338.501371pt;}
.yd4_c00281{bottom:338.667887pt;}
.yd5_c00281{bottom:338.871176pt;}
.ybe_c00281{bottom:356.641333pt;}
.ybf_c00281{bottom:357.025333pt;}
.yc0_c00281{bottom:357.313333pt;}
.yc1_c00281{bottom:357.536000pt;}
.yc2_c00281{bottom:357.842667pt;}
.yc3_c00281{bottom:358.081333pt;}
.yc4_c00281{bottom:358.448000pt;}
.yc5_c00281{bottom:358.652000pt;}
.yc6_c00281{bottom:358.904000pt;}
.yc7_c00281{bottom:359.566667pt;}
.yc8_c00281{bottom:359.733333pt;}
.yc9_c00281{bottom:359.864000pt;}
.ybd_c00281{bottom:377.854667pt;}
.yb1_c00281{bottom:396.721333pt;}
.yb2_c00281{bottom:396.913609pt;}
.yb3_c00281{bottom:397.386337pt;}
.yb4_c00281{bottom:397.570069pt;}
.yb5_c00281{bottom:397.933249pt;}
.yb6_c00281{bottom:398.529385pt;}
.yb7_c00281{bottom:398.674309pt;}
.yb8_c00281{bottom:398.950585pt;}
.yb9_c00281{bottom:399.241837pt;}
.yba_c00281{bottom:399.410701pt;}
.ybb_c00281{bottom:399.708733pt;}
.ybc_c00281{bottom:400.138261pt;}
.ya6_c00281{bottom:416.881333pt;}
.ya7_c00281{bottom:417.315083pt;}
.ya8_c00281{bottom:417.658752pt;}
.ya9_c00281{bottom:417.854603pt;}
.yaa_c00281{bottom:418.342240pt;}
.yab_c00281{bottom:418.455659pt;}
.yac_c00281{bottom:418.912299pt;}
.yad_c00281{bottom:419.085088pt;}
.yae_c00281{bottom:419.319584pt;}
.yaf_c00281{bottom:419.421557pt;}
.yb0_c00281{bottom:419.885984pt;}
.y99_c00281{bottom:436.801333pt;}
.y9a_c00281{bottom:437.361556pt;}
.y9b_c00281{bottom:437.588053pt;}
.y9c_c00281{bottom:438.092293pt;}
.y9d_c00281{bottom:438.364287pt;}
.y9e_c00281{bottom:439.095581pt;}
.y9f_c00281{bottom:439.333196pt;}
.ya0_c00281{bottom:439.626133pt;}
.ya1_c00281{bottom:439.958876pt;}
.ya2_c00281{bottom:440.349537pt;}
.ya3_c00281{bottom:440.629421pt;}
.ya4_c00281{bottom:440.811537pt;}
.ya5_c00281{bottom:441.218244pt;}
.y89_c00281{bottom:457.921333pt;}
.y8a_c00281{bottom:458.207424pt;}
.y8b_c00281{bottom:458.358869pt;}
.y8c_c00281{bottom:458.486165pt;}
.y8d_c00281{bottom:458.787637pt;}
.y8e_c00281{bottom:458.996363pt;}
.y8f_c00281{bottom:459.347989pt;}
.y90_c00281{bottom:459.436320pt;}
.y91_c00281{bottom:459.589931pt;}
.y92_c00281{bottom:459.766560pt;}
.y93_c00281{bottom:459.918261pt;}
.y94_c00281{bottom:460.108853pt;}
.y95_c00281{bottom:460.434411pt;}
.y96_c00281{bottom:460.545824pt;}
.y97_c00281{bottom:460.749333pt;}
.y98_c00281{bottom:461.031840pt;}
.y88_c00281{bottom:478.264000pt;}
.y7b_c00281{bottom:498.000000pt;}
.y7c_c00281{bottom:498.292149pt;}
.y7d_c00281{bottom:498.578251pt;}
.y7e_c00281{bottom:498.960320pt;}
.y7f_c00281{bottom:499.244267pt;}
.y80_c00281{bottom:499.402005pt;}
.y81_c00281{bottom:499.674656pt;}
.y82_c00281{bottom:499.841685pt;}
.y83_c00281{bottom:500.137600pt;}
.y84_c00281{bottom:500.573216pt;}
.y85_c00281{bottom:500.722944pt;}
.y86_c00281{bottom:500.972523pt;}
.y87_c00281{bottom:501.187605pt;}
.y71_c00281{bottom:518.881333pt;}
.y72_c00281{bottom:519.207755pt;}
.y73_c00281{bottom:519.420960pt;}
.y74_c00281{bottom:520.075723pt;}
.y75_c00281{bottom:520.306144pt;}
.y76_c00281{bottom:520.901067pt;}
.y77_c00281{bottom:521.112277pt;}
.y78_c00281{bottom:521.316053pt;}
.y79_c00281{bottom:521.755723pt;}
.y7a_c00281{bottom:522.064832pt;}
.y65_c00281{bottom:538.081333pt;}
.y66_c00281{bottom:538.387705pt;}
.y67_c00281{bottom:538.772691pt;}
.y68_c00281{bottom:538.983011pt;}
.y69_c00281{bottom:539.618019pt;}
.y6a_c00281{bottom:539.831961pt;}
.y6b_c00281{bottom:540.386361pt;}
.y6c_c00281{bottom:540.800812pt;}
.y6d_c00281{bottom:541.019976pt;}
.y6e_c00281{bottom:541.571296pt;}
.y6f_c00281{bottom:541.861652pt;}
.y70_c00281{bottom:542.429281pt;}
.y5f_c00281{bottom:563.761333pt;}
.y60_c00281{bottom:564.335013pt;}
.y61_c00281{bottom:564.656573pt;}
.y62_c00281{bottom:565.391633pt;}
.y63_c00281{bottom:565.616853pt;}
.y64_c00281{bottom:565.909773pt;}
.y54_c00281{bottom:586.921243pt;}
.y55_c00281{bottom:587.201488pt;}
.y56_c00281{bottom:587.918795pt;}
.y57_c00281{bottom:588.933797pt;}
.y58_c00281{bottom:589.597472pt;}
.y59_c00281{bottom:589.801520pt;}
.y5a_c00281{bottom:590.097803pt;}
.y5b_c00281{bottom:590.752581pt;}
.y5c_c00281{bottom:591.244811pt;}
.y5d_c00281{bottom:591.527680pt;}
.y5e_c00281{bottom:592.165269pt;}
.y49_c00281{bottom:607.667963pt;}
.y4a_c00281{bottom:608.771483pt;}
.y4b_c00281{bottom:609.177765pt;}
.y4c_c00281{bottom:609.413120pt;}
.y4d_c00281{bottom:609.996475pt;}
.y4e_c00281{bottom:610.275925pt;}
.y4f_c00281{bottom:610.452869pt;}
.y50_c00281{bottom:610.875003pt;}
.y51_c00281{bottom:611.186795pt;}
.y52_c00281{bottom:611.527696pt;}
.y53_c00281{bottom:612.113275pt;}
.y3d_c00281{bottom:627.344640pt;}
.y3e_c00281{bottom:628.289072pt;}
.y3f_c00281{bottom:628.545680pt;}
.y40_c00281{bottom:628.943504pt;}
.y41_c00281{bottom:629.153664pt;}
.y42_c00281{bottom:629.579072pt;}
.y43_c00281{bottom:629.879856pt;}
.y44_c00281{bottom:630.429344pt;}
.y45_c00281{bottom:630.754768pt;}
.y46_c00281{bottom:631.363088pt;}
.y47_c00281{bottom:631.809280pt;}
.y48_c00281{bottom:632.397952pt;}
.y30_c00281{bottom:647.281333pt;}
.y31_c00281{bottom:647.745045pt;}
.y32_c00281{bottom:648.001829pt;}
.y33_c00281{bottom:648.298517pt;}
.y34_c00281{bottom:649.044901pt;}
.y35_c00281{bottom:649.298453pt;}
.y36_c00281{bottom:649.623109pt;}
.y37_c00281{bottom:649.979061pt;}
.y38_c00281{bottom:650.121941pt;}
.y39_c00281{bottom:650.545333pt;}
.y3a_c00281{bottom:650.919285pt;}
.y3b_c00281{bottom:651.213653pt;}
.y3c_c00281{bottom:651.614021pt;}
.y27_c00281{bottom:671.521333pt;}
.y28_c00281{bottom:671.934667pt;}
.y29_c00281{bottom:672.692000pt;}
.y2a_c00281{bottom:673.048000pt;}
.y2b_c00281{bottom:673.342667pt;}
.y2c_c00281{bottom:673.800000pt;}
.y2d_c00281{bottom:674.566667pt;}
.y2e_c00281{bottom:675.225333pt;}
.y2f_c00281{bottom:675.498667pt;}
.y26_c00281{bottom:694.794667pt;}
.y1d_c00281{bottom:718.560827pt;}
.y1e_c00281{bottom:719.160267pt;}
.y1f_c00281{bottom:719.513427pt;}
.y20_c00281{bottom:719.793573pt;}
.y21_c00281{bottom:720.152133pt;}
.y22_c00281{bottom:720.590640pt;}
.y23_c00281{bottom:721.389373pt;}
.y24_c00281{bottom:721.720467pt;}
.y25_c00281{bottom:722.322400pt;}
.y11_c00281{bottom:739.201333pt;}
.y12_c00281{bottom:739.580587pt;}
.y13_c00281{bottom:740.347707pt;}
.y14_c00281{bottom:740.465733pt;}
.y15_c00281{bottom:740.598280pt;}
.y16_c00281{bottom:741.034747pt;}
.y17_c00281{bottom:741.339893pt;}
.y18_c00281{bottom:741.774413pt;}
.y19_c00281{bottom:742.189187pt;}
.y1a_c00281{bottom:742.460400pt;}
.y1b_c00281{bottom:742.729907pt;}
.y1c_c00281{bottom:743.359920pt;}
.yd_c00281{bottom:777.359285pt;}
.ye_c00281{bottom:777.950283pt;}
.yf_c00281{bottom:778.564661pt;}
.y10_c00281{bottom:779.912757pt;}
.yc_c00281{bottom:817.316715pt;}
.yb_c00281{bottom:831.281312pt;}
.ya_c00281{bottom:831.469237pt;}
.y9_c00281{bottom:831.569749pt;}
.y8_c00281{bottom:831.911371pt;}
.y7_c00281{bottom:832.059328pt;}
.y6_c00281{bottom:832.126432pt;}
.y5_c00281{bottom:832.300491pt;}
.y4_c00281{bottom:832.429835pt;}
.y3_c00281{bottom:832.949941pt;}
.y2_c00281{bottom:833.306848pt;}
.y1_c00281{bottom:833.760000pt;}
.h2_c00281{height:35.467802pt;}
.h19_c00281{height:52.266667pt;}
.hd_c00281{height:53.203219pt;}
.h8_c00281{height:56.000000pt;}
.h15_c00281{height:56.001372pt;}
.h1a_c00281{height:57.866667pt;}
.hc_c00281{height:57.873176pt;}
.h12_c00281{height:58.803557pt;}
.h7_c00281{height:59.733333pt;}
.h14_c00281{height:60.666667pt;}
.h1b_c00281{height:60.668153pt;}
.h10_c00281{height:61.600000pt;}
.h13_c00281{height:61.602495pt;}
.h6_c00281{height:61.603080pt;}
.ha_c00281{height:61.604435pt;}
.h1c_c00281{height:62.533333pt;}
.hb_c00281{height:62.537836pt;}
.h16_c00281{height:63.466667pt;}
.hf_c00281{height:63.468698pt;}
.h9_c00281{height:63.471236pt;}
.h18_c00281{height:64.400000pt;}
.he_c00281{height:64.402061pt;}
.h5_c00281{height:64.403220pt;}
.h11_c00281{height:65.335424pt;}
.h17_c00281{height:66.268290pt;}
.h4_c00281{height:71.868966pt;}
.h1d_c00281{height:135.360397pt;}
.h3_c00281{height:173.605555pt;}
.h0_c00281{height:896.400000pt;}
.h1_c00281{height:896.666667pt;}
.w0_c00281{width:618.666667pt;}
.x0_c00281{left:0.000000pt;}
.xbf_c00281{left:88.468000pt;}
.x1_c00281{left:95.008000pt;}
.xc_c00281{left:99.120725pt;}
.x79_c00281{left:134.765333pt;}
.x40_c00281{left:138.159163pt;}
.xd_c00281{left:139.148981pt;}
.x81_c00281{left:140.744000pt;}
.x2_c00281{left:151.652000pt;}
.x68_c00281{left:155.612000pt;}
.x2d_c00281{left:157.578667pt;}
.x99_c00281{left:158.640000pt;}
.x47_c00281{left:159.757168pt;}
.xb3_c00281{left:161.152000pt;}
.x82_c00281{left:162.108000pt;}
.x93_c00281{left:164.486667pt;}
.x52_c00281{left:166.453333pt;}
.x25_c00281{left:171.761333pt;}
.x61_c00281{left:175.538667pt;}
.x11_c00281{left:177.238667pt;}
.x5b_c00281{left:179.850667pt;}
.xa8_c00281{left:182.640000pt;}
.xe_c00281{left:184.615285pt;}
.x8e_c00281{left:186.566667pt;}
.x7a_c00281{left:188.984000pt;}
.x69_c00281{left:191.373333pt;}
.xad_c00281{left:192.720000pt;}
.x1c_c00281{left:193.812507pt;}
.x3_c00281{left:196.265333pt;}
.xa1_c00281{left:198.328000pt;}
.x26_c00281{left:199.326667pt;}
.x53_c00281{left:201.452000pt;}
.x9a_c00281{left:203.760000pt;}
.x5c_c00281{left:206.501333pt;}
.x89_c00281{left:208.560000pt;}
.x6a_c00281{left:210.304000pt;}
.x62_c00281{left:211.301333pt;}
.x48_c00281{left:214.976512pt;}
.x2e_c00281{left:217.620000pt;}
.x4d_c00281{left:219.449333pt;}
.x23_c00281{left:220.560000pt;}
.x8f_c00281{left:222.572000pt;}
.xa2_c00281{left:224.032000pt;}
.x1d_c00281{left:225.928187pt;}
.xf_c00281{left:231.825888pt;}
.xb4_c00281{left:233.400000pt;}
.x83_c00281{left:235.048000pt;}
.xa9_c00281{left:236.400000pt;}
.x37_c00281{left:238.955179pt;}
.x94_c00281{left:240.334667pt;}
.x2f_c00281{left:242.344000pt;}
.xb9_c00281{left:247.440000pt;}
.x27_c00281{left:249.845333pt;}
.x1e_c00281{left:251.409267pt;}
.x12_c00281{left:253.950667pt;}
.x7b_c00281{left:256.424000pt;}
.x4e_c00281{left:257.694667pt;}
.x63_c00281{left:259.060000pt;}
.x4_c00281{left:261.278667pt;}
.x6b_c00281{left:263.900000pt;}
.x13_c00281{left:265.753333pt;}
.xae_c00281{left:268.080000pt;}
.xbc_c00281{left:270.720000pt;}
.x38_c00281{left:272.107179pt;}
.x28_c00281{left:273.542667pt;}
.x41_c00281{left:275.422144pt;}
.xb1_c00281{left:276.368000pt;}
.x5_c00281{left:277.446667pt;}
.x14_c00281{left:279.008000pt;}
.x73_c00281{left:281.666667pt;}
.x1f_c00281{left:284.064947pt;}
.xba_c00281{left:286.800000pt;}
.x24_c00281{left:287.760000pt;}
.x39_c00281{left:289.620512pt;}
.x29_c00281{left:293.210667pt;}
.x64_c00281{left:294.553333pt;}
.x42_c00281{left:296.813067pt;}
.x54_c00281{left:297.749333pt;}
.x6_c00281{left:299.204000pt;}
.xaa_c00281{left:300.240000pt;}
.x30_c00281{left:304.542667pt;}
.xbb_c00281{left:306.000000pt;}
.x7_c00281{left:307.592000pt;}
.x67_c00281{left:309.360000pt;}
.x8a_c00281{left:311.040000pt;}
.x65_c00281{left:314.270667pt;}
.x5d_c00281{left:317.149333pt;}
.x90_c00281{left:318.573333pt;}
.x9d_c00281{left:320.640000pt;}
.x15_c00281{left:322.654667pt;}
.x20_c00281{left:323.915213pt;}
.x3a_c00281{left:325.071179pt;}
.x8_c00281{left:326.086667pt;}
.x4f_c00281{left:328.136000pt;}
.x7c_c00281{left:331.556000pt;}
.x95_c00281{left:332.729333pt;}
.x6c_c00281{left:333.944000pt;}
.x10_c00281{left:335.497973pt;}
.xa3_c00281{left:339.450667pt;}
.x84_c00281{left:341.638667pt;}
.x50_c00281{left:343.150667pt;}
.x49_c00281{left:344.086960pt;}
.x6d_c00281{left:344.985333pt;}
.xab_c00281{left:346.800000pt;}
.x55_c00281{left:348.149333pt;}
.x3b_c00281{left:350.136512pt;}
.x96_c00281{left:351.932000pt;}
.x16_c00281{left:353.169333pt;}
.xaf_c00281{left:355.200000pt;}
.x85_c00281{left:357.741333pt;}
.x4a_c00281{left:359.757435pt;}
.x51_c00281{left:362.678667pt;}
.x6e_c00281{left:364.186667pt;}
.x8b_c00281{left:365.520000pt;}
.xb5_c00281{left:366.553333pt;}
.x9_c00281{left:368.789333pt;}
.x74_c00281{left:369.749333pt;}
.x2a_c00281{left:374.857333pt;}
.xa_c00281{left:381.353333pt;}
.x31_c00281{left:382.389333pt;}
.x56_c00281{left:385.826667pt;}
.x8c_c00281{left:386.880000pt;}
.x7d_c00281{left:388.636000pt;}
.x91_c00281{left:389.850667pt;}
.x43_c00281{left:391.348869pt;}
.x9e_c00281{left:392.640000pt;}
.x32_c00281{left:394.296000pt;}
.x17_c00281{left:396.621333pt;}
.xb_c00281{left:404.844000pt;}
.x57_c00281{left:405.750667pt;}
.xa4_c00281{left:406.892000pt;}
.x7e_c00281{left:410.234667pt;}
.x9b_c00281{left:412.560000pt;}
.xb7_c00281{left:414.097333pt;}
.x9f_c00281{left:417.120000pt;}
.x2b_c00281{left:418.768000pt;}
.x86_c00281{left:420.800000pt;}
.x3c_c00281{left:423.045845pt;}
.x21_c00281{left:426.630187pt;}
.x33_c00281{left:429.578667pt;}
.xa5_c00281{left:431.605333pt;}
.x4b_c00281{left:432.900555pt;}
.x2c_c00281{left:436.993333pt;}
.x18_c00281{left:438.098667pt;}
.x7f_c00281{left:439.546667pt;}
.xbd_c00281{left:441.120000pt;}
.x5e_c00281{left:443.388000pt;}
.x80_c00281{left:452.293333pt;}
.xb6_c00281{left:454.198667pt;}
.x58_c00281{left:455.870667pt;}
.x44_c00281{left:458.065669pt;}
.x34_c00281{left:460.741333pt;}
.x75_c00281{left:462.144000pt;}
.x19_c00281{left:465.220000pt;}
.x6f_c00281{left:469.746667pt;}
.x4c_c00281{left:470.808107pt;}
.x87_c00281{left:472.677333pt;}
.x3d_c00281{left:473.739179pt;}
.x66_c00281{left:479.388000pt;}
.x22_c00281{left:481.356307pt;}
.x59_c00281{left:482.266667pt;}
.x70_c00281{left:483.673333pt;}
.x35_c00281{left:485.272000pt;}
.x76_c00281{left:487.588000pt;}
.x45_c00281{left:489.030037pt;}
.x1a_c00281{left:492.170667pt;}
.x97_c00281{left:496.621333pt;}
.x5f_c00281{left:498.346667pt;}
.xb8_c00281{left:499.532000pt;}
.xac_c00281{left:501.600000pt;}
.xa6_c00281{left:502.885333pt;}
.x77_c00281{left:504.144000pt;}
.x9c_c00281{left:505.920000pt;}
.x71_c00281{left:509.112000pt;}
.x3e_c00281{left:510.921845pt;}
.x8d_c00281{left:513.600000pt;}
.xb2_c00281{left:515.128000pt;}
.xbe_c00281{left:516.720000pt;}
.x36_c00281{left:518.636000pt;}
.x88_c00281{left:520.402667pt;}
.xa7_c00281{left:522.814667pt;}
.x92_c00281{left:524.965333pt;}
.xb0_c00281{left:528.480000pt;}
.x5a_c00281{left:533.869333pt;}
.xa0_c00281{left:534.960000pt;}
.x60_c00281{left:536.985333pt;}
.x78_c00281{left:541.117333pt;}
.x46_c00281{left:542.273344pt;}
.x72_c00281{left:544.425333pt;}
.x98_c00281{left:549.450667pt;}
.x1b_c00281{left:555.172000pt;}
.x3f_c00281{left:559.977845pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m12_c00282{transform:matrix(0.050906,-0.000611,0.003000,0.249982,0,0);-ms-transform:matrix(0.050906,-0.000611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.050906,-0.000611,0.003000,0.249982,0,0);}
.m40_c00282{transform:matrix(0.094783,-0.001801,0.004749,0.249955,0,0);-ms-transform:matrix(0.094783,-0.001801,0.004749,0.249955,0,0);-webkit-transform:matrix(0.094783,-0.001801,0.004749,0.249955,0,0);}
.mde_c00282{transform:matrix(0.096172,-0.001250,0.003250,0.249979,0,0);-ms-transform:matrix(0.096172,-0.001250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.096172,-0.001250,0.003250,0.249979,0,0);}
.mbe_c00282{transform:matrix(0.097698,-0.001172,0.003000,0.249982,0,0);-ms-transform:matrix(0.097698,-0.001172,0.003000,0.249982,0,0);-webkit-transform:matrix(0.097698,-0.001172,0.003000,0.249982,0,0);}
.mff_c00282{transform:matrix(0.109090,-0.001091,0.002500,0.249988,0,0);-ms-transform:matrix(0.109090,-0.001091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.109090,-0.001091,0.002500,0.249988,0,0);}
.ma_c00282{transform:matrix(0.110027,-0.001320,0.003000,0.249982,0,0);-ms-transform:matrix(0.110027,-0.001320,0.003000,0.249982,0,0);-webkit-transform:matrix(0.110027,-0.001320,0.003000,0.249982,0,0);}
.ma0_c00282{transform:matrix(0.113845,-0.001822,0.003999,0.249968,0,0);-ms-transform:matrix(0.113845,-0.001822,0.003999,0.249968,0,0);-webkit-transform:matrix(0.113845,-0.001822,0.003999,0.249968,0,0);}
.md6_c00282{transform:matrix(0.119520,-0.001554,0.003250,0.249979,0,0);-ms-transform:matrix(0.119520,-0.001554,0.003250,0.249979,0,0);-webkit-transform:matrix(0.119520,-0.001554,0.003250,0.249979,0,0);}
.m8f_c00282{transform:matrix(0.131438,-0.002103,0.003999,0.249968,0,0);-ms-transform:matrix(0.131438,-0.002103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.131438,-0.002103,0.003999,0.249968,0,0);}
.mca_c00282{transform:matrix(0.141163,-0.001835,0.003250,0.249979,0,0);-ms-transform:matrix(0.141163,-0.001835,0.003250,0.249979,0,0);-webkit-transform:matrix(0.141163,-0.001835,0.003250,0.249979,0,0);}
.mba_c00282{transform:matrix(0.142125,-0.001705,0.003000,0.249982,0,0);-ms-transform:matrix(0.142125,-0.001705,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142125,-0.001705,0.003000,0.249982,0,0);}
.mb3_c00282{transform:matrix(0.143671,-0.002011,0.003500,0.249976,0,0);-ms-transform:matrix(0.143671,-0.002011,0.003500,0.249976,0,0);-webkit-transform:matrix(0.143671,-0.002011,0.003500,0.249976,0,0);}
.m4b_c00282{transform:matrix(0.148339,-0.002522,0.004249,0.249964,0,0);-ms-transform:matrix(0.148339,-0.002522,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148339,-0.002522,0.004249,0.249964,0,0);}
.m8b_c00282{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);}
.mfe_c00282{transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);-ms-transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);}
.maa_c00282{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);}
.m37_c00282{transform:matrix(0.151003,-0.002869,0.004749,0.249955,0,0);-ms-transform:matrix(0.151003,-0.002869,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151003,-0.002869,0.004749,0.249955,0,0);}
.mb7_c00282{transform:matrix(0.151195,-0.002117,0.003500,0.249976,0,0);-ms-transform:matrix(0.151195,-0.002117,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151195,-0.002117,0.003500,0.249976,0,0);}
.m13c_c00282{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);}
.m23_c00282{transform:matrix(0.151997,-0.001976,0.003250,0.249979,0,0);-ms-transform:matrix(0.151997,-0.001976,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151997,-0.001976,0.003250,0.249979,0,0);}
.mb0_c00282{transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);-ms-transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);}
.mcc_c00282{transform:matrix(0.152792,-0.001986,0.003250,0.249979,0,0);-ms-transform:matrix(0.152792,-0.001986,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152792,-0.001986,0.003250,0.249979,0,0);}
.mfa_c00282{transform:matrix(0.154782,-0.001548,0.002500,0.249988,0,0);-ms-transform:matrix(0.154782,-0.001548,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154782,-0.001548,0.002500,0.249988,0,0);}
.mf1_c00282{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);}
.mbf_c00282{transform:matrix(0.157994,-0.001896,0.003000,0.249982,0,0);-ms-transform:matrix(0.157994,-0.001896,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157994,-0.001896,0.003000,0.249982,0,0);}
.m60_c00282{transform:matrix(0.158054,-0.002845,0.004499,0.249960,0,0);-ms-transform:matrix(0.158054,-0.002845,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158054,-0.002845,0.004499,0.249960,0,0);}
.m2b_c00282{transform:matrix(0.159102,-0.003500,0.005499,0.249940,0,0);-ms-transform:matrix(0.159102,-0.003500,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159102,-0.003500,0.005499,0.249940,0,0);}
.m43_c00282{transform:matrix(0.159471,-0.003030,0.004749,0.249955,0,0);-ms-transform:matrix(0.159471,-0.003030,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159471,-0.003030,0.004749,0.249955,0,0);}
.m34_c00282{transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);-ms-transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160566,-0.003051,0.004749,0.249955,0,0);}
.m75_c00282{transform:matrix(0.160821,-0.003056,0.004749,0.249955,0,0);-ms-transform:matrix(0.160821,-0.003056,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160821,-0.003056,0.004749,0.249955,0,0);}
.m8d_c00282{transform:matrix(0.162664,-0.002603,0.003999,0.249968,0,0);-ms-transform:matrix(0.162664,-0.002603,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162664,-0.002603,0.003999,0.249968,0,0);}
.m54_c00282{transform:matrix(0.163086,-0.002772,0.004249,0.249964,0,0);-ms-transform:matrix(0.163086,-0.002772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163086,-0.002772,0.004249,0.249964,0,0);}
.m126_c00282{transform:matrix(0.164147,-0.001641,0.002500,0.249988,0,0);-ms-transform:matrix(0.164147,-0.001641,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164147,-0.001641,0.002500,0.249988,0,0);}
.m19_c00282{transform:matrix(0.164263,-0.002957,0.004499,0.249960,0,0);-ms-transform:matrix(0.164263,-0.002957,0.004499,0.249960,0,0);-webkit-transform:matrix(0.164263,-0.002957,0.004499,0.249960,0,0);}
.mbc_c00282{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);}
.m80_c00282{transform:matrix(0.166195,-0.003158,0.004749,0.249955,0,0);-ms-transform:matrix(0.166195,-0.003158,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166195,-0.003158,0.004749,0.249955,0,0);}
.mfb_c00282{transform:matrix(0.166312,-0.001663,0.002500,0.249988,0,0);-ms-transform:matrix(0.166312,-0.001663,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166312,-0.001663,0.002500,0.249988,0,0);}
.mea_c00282{transform:matrix(0.166370,-0.001830,0.002750,0.249985,0,0);-ms-transform:matrix(0.166370,-0.001830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166370,-0.001830,0.002750,0.249985,0,0);}
.mf2_c00282{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);}
.m11b_c00282{transform:matrix(0.167052,-0.001671,0.002500,0.249988,0,0);-ms-transform:matrix(0.167052,-0.001671,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167052,-0.001671,0.002500,0.249988,0,0);}
.mce_c00282{transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);}
.m107_c00282{transform:matrix(0.167262,-0.001673,0.002500,0.249988,0,0);-ms-transform:matrix(0.167262,-0.001673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167262,-0.001673,0.002500,0.249988,0,0);}
.m42_c00282{transform:matrix(0.168370,-0.003199,0.004749,0.249955,0,0);-ms-transform:matrix(0.168370,-0.003199,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168370,-0.003199,0.004749,0.249955,0,0);}
.mc0_c00282{transform:matrix(0.168968,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.168968,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168968,-0.002028,0.003000,0.249982,0,0);}
.m15_c00282{transform:matrix(0.169103,-0.003044,0.004499,0.249960,0,0);-ms-transform:matrix(0.169103,-0.003044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169103,-0.003044,0.004499,0.249960,0,0);}
.ma5_c00282{transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);-ms-transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);}
.m1a_c00282{transform:matrix(0.169468,-0.003050,0.004499,0.249960,0,0);-ms-transform:matrix(0.169468,-0.003050,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169468,-0.003050,0.004499,0.249960,0,0);}
.m1d_c00282{transform:matrix(0.171027,-0.003078,0.004499,0.249960,0,0);-ms-transform:matrix(0.171027,-0.003078,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171027,-0.003078,0.004499,0.249960,0,0);}
.m49_c00282{transform:matrix(0.171489,-0.003258,0.004749,0.249955,0,0);-ms-transform:matrix(0.171489,-0.003258,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171489,-0.003258,0.004749,0.249955,0,0);}
.mc2_c00282{transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);-ms-transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);}
.m8e_c00282{transform:matrix(0.171703,-0.002747,0.003999,0.249968,0,0);-ms-transform:matrix(0.171703,-0.002747,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171703,-0.002747,0.003999,0.249968,0,0);}
.mcb_c00282{transform:matrix(0.171780,-0.002233,0.003250,0.249979,0,0);-ms-transform:matrix(0.171780,-0.002233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171780,-0.002233,0.003250,0.249979,0,0);}
.m6f_c00282{transform:matrix(0.172024,-0.003268,0.004749,0.249955,0,0);-ms-transform:matrix(0.172024,-0.003268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172024,-0.003268,0.004749,0.249955,0,0);}
.ma7_c00282{transform:matrix(0.172203,-0.002411,0.003500,0.249976,0,0);-ms-transform:matrix(0.172203,-0.002411,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172203,-0.002411,0.003500,0.249976,0,0);}
.m91_c00282{transform:matrix(0.174838,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174838,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174838,-0.002797,0.003999,0.249968,0,0);}
.m35_c00282{transform:matrix(0.174903,-0.003323,0.004749,0.249955,0,0);-ms-transform:matrix(0.174903,-0.003323,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174903,-0.003323,0.004749,0.249955,0,0);}
.m3a_c00282{transform:matrix(0.175978,-0.003344,0.004749,0.249955,0,0);-ms-transform:matrix(0.175978,-0.003344,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175978,-0.003344,0.004749,0.249955,0,0);}
.m8c_c00282{transform:matrix(0.176237,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176237,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176237,-0.002820,0.003999,0.249968,0,0);}
.m41_c00282{transform:matrix(0.176388,-0.003351,0.004749,0.249955,0,0);-ms-transform:matrix(0.176388,-0.003351,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176388,-0.003351,0.004749,0.249955,0,0);}
.me5_c00282{transform:matrix(0.176659,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176659,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176659,-0.001943,0.002750,0.249985,0,0);}
.m11f_c00282{transform:matrix(0.176811,-0.001768,0.002500,0.249988,0,0);-ms-transform:matrix(0.176811,-0.001768,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176811,-0.001768,0.002500,0.249988,0,0);}
.m1f_c00282{transform:matrix(0.177010,-0.002301,0.003250,0.249979,0,0);-ms-transform:matrix(0.177010,-0.002301,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177010,-0.002301,0.003250,0.249979,0,0);}
.m20_c00282{transform:matrix(0.177155,-0.002303,0.003250,0.249979,0,0);-ms-transform:matrix(0.177155,-0.002303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177155,-0.002303,0.003250,0.249979,0,0);}
.m4f_c00282{transform:matrix(0.177444,-0.003017,0.004249,0.249964,0,0);-ms-transform:matrix(0.177444,-0.003017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177444,-0.003017,0.004249,0.249964,0,0);}
.mf7_c00282{transform:matrix(0.178001,-0.001780,0.002500,0.249988,0,0);-ms-transform:matrix(0.178001,-0.001780,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178001,-0.001780,0.002500,0.249988,0,0);}
.m95_c00282{transform:matrix(0.178752,-0.002860,0.003999,0.249968,0,0);-ms-transform:matrix(0.178752,-0.002860,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178752,-0.002860,0.003999,0.249968,0,0);}
.m94_c00282{transform:matrix(0.179112,-0.002866,0.003999,0.249968,0,0);-ms-transform:matrix(0.179112,-0.002866,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179112,-0.002866,0.003999,0.249968,0,0);}
.m58_c00282{transform:matrix(0.179324,-0.003049,0.004249,0.249964,0,0);-ms-transform:matrix(0.179324,-0.003049,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179324,-0.003049,0.004249,0.249964,0,0);}
.m26_c00282{transform:matrix(0.179370,-0.002332,0.003250,0.249979,0,0);-ms-transform:matrix(0.179370,-0.002332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179370,-0.002332,0.003250,0.249979,0,0);}
.m2d_c00282{transform:matrix(0.179607,-0.003951,0.005499,0.249940,0,0);-ms-transform:matrix(0.179607,-0.003951,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179607,-0.003951,0.005499,0.249940,0,0);}
.me1_c00282{transform:matrix(0.179907,-0.002519,0.003500,0.249976,0,0);-ms-transform:matrix(0.179907,-0.002519,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179907,-0.002519,0.003500,0.249976,0,0);}
.mf5_c00282{transform:matrix(0.180141,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180141,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180141,-0.001801,0.002500,0.249988,0,0);}
.m96_c00282{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);}
.mf3_c00282{transform:matrix(0.180541,-0.001805,0.002500,0.249988,0,0);-ms-transform:matrix(0.180541,-0.001805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180541,-0.001805,0.002500,0.249988,0,0);}
.m13a_c00282{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);}
.m9d_c00282{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);}
.m72_c00282{transform:matrix(0.181262,-0.003444,0.004749,0.249955,0,0);-ms-transform:matrix(0.181262,-0.003444,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181262,-0.003444,0.004749,0.249955,0,0);}
.m78_c00282{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);}
.m62_c00282{transform:matrix(0.182425,-0.003284,0.004499,0.249960,0,0);-ms-transform:matrix(0.182425,-0.003284,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182425,-0.003284,0.004499,0.249960,0,0);}
.m3d_c00282{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);}
.mc3_c00282{transform:matrix(0.182652,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182652,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182652,-0.002192,0.003000,0.249982,0,0);}
.m65_c00282{transform:matrix(0.182820,-0.003291,0.004499,0.249960,0,0);-ms-transform:matrix(0.182820,-0.003291,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182820,-0.003291,0.004499,0.249960,0,0);}
.ma6_c00282{transform:matrix(0.182992,-0.002562,0.003500,0.249976,0,0);-ms-transform:matrix(0.182992,-0.002562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182992,-0.002562,0.003500,0.249976,0,0);}
.m14_c00282{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);}
.m61_c00282{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);}
.m120_c00282{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);}
.m33_c00282{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);}
.m10b_c00282{transform:matrix(0.184076,-0.001841,0.002500,0.249988,0,0);-ms-transform:matrix(0.184076,-0.001841,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184076,-0.001841,0.002500,0.249988,0,0);}
.m1_c00282{transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);}
.m12d_c00282{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);}
.m125_c00282{transform:matrix(0.184891,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184891,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184891,-0.001849,0.002500,0.249988,0,0);}
.m67_c00282{transform:matrix(0.184940,-0.003329,0.004499,0.249960,0,0);-ms-transform:matrix(0.184940,-0.003329,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184940,-0.003329,0.004499,0.249960,0,0);}
.m8a_c00282{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);}
.m2a_c00282{transform:matrix(0.185380,-0.004078,0.005499,0.249940,0,0);-ms-transform:matrix(0.185380,-0.004078,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185380,-0.004078,0.005499,0.249940,0,0);}
.m128_c00282{transform:matrix(0.185581,-0.001856,0.002500,0.249988,0,0);-ms-transform:matrix(0.185581,-0.001856,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185581,-0.001856,0.002500,0.249988,0,0);}
.m100_c00282{transform:matrix(0.185806,-0.001858,0.002500,0.249988,0,0);-ms-transform:matrix(0.185806,-0.001858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185806,-0.001858,0.002500,0.249988,0,0);}
.m92_c00282{transform:matrix(0.186776,-0.002988,0.003999,0.249968,0,0);-ms-transform:matrix(0.186776,-0.002988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186776,-0.002988,0.003999,0.249968,0,0);}
.m63_c00282{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);}
.m38_c00282{transform:matrix(0.186961,-0.003552,0.004749,0.249955,0,0);-ms-transform:matrix(0.186961,-0.003552,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186961,-0.003552,0.004749,0.249955,0,0);}
.m5b_c00282{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);}
.m124_c00282{transform:matrix(0.187161,-0.001872,0.002500,0.249988,0,0);-ms-transform:matrix(0.187161,-0.001872,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187161,-0.001872,0.002500,0.249988,0,0);}
.m47_c00282{transform:matrix(0.187276,-0.003558,0.004749,0.249955,0,0);-ms-transform:matrix(0.187276,-0.003558,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187276,-0.003558,0.004749,0.249955,0,0);}
.me6_c00282{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);}
.m36_c00282{transform:matrix(0.188056,-0.003573,0.004749,0.249955,0,0);-ms-transform:matrix(0.188056,-0.003573,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188056,-0.003573,0.004749,0.249955,0,0);}
.ma4_c00282{transform:matrix(0.188567,-0.002640,0.003500,0.249976,0,0);-ms-transform:matrix(0.188567,-0.002640,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188567,-0.002640,0.003500,0.249976,0,0);}
.m39_c00282{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);}
.m89_c00282{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);}
.m112_c00282{transform:matrix(0.188706,-0.001887,0.002500,0.249988,0,0);-ms-transform:matrix(0.188706,-0.001887,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188706,-0.001887,0.002500,0.249988,0,0);}
.meb_c00282{transform:matrix(0.189639,-0.002086,0.002750,0.249985,0,0);-ms-transform:matrix(0.189639,-0.002086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189639,-0.002086,0.002750,0.249985,0,0);}
.m116_c00282{transform:matrix(0.189736,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189736,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189736,-0.001897,0.002500,0.249988,0,0);}
.m7e_c00282{transform:matrix(0.189741,-0.003605,0.004749,0.249955,0,0);-ms-transform:matrix(0.189741,-0.003605,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189741,-0.003605,0.004749,0.249955,0,0);}
.m114_c00282{transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);}
.mb2_c00282{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);}
.m10a_c00282{transform:matrix(0.189906,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189906,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189906,-0.001899,0.002500,0.249988,0,0);}
.me0_c00282{transform:matrix(0.190196,-0.002663,0.003500,0.249976,0,0);-ms-transform:matrix(0.190196,-0.002663,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190196,-0.002663,0.003500,0.249976,0,0);}
.m57_c00282{transform:matrix(0.190213,-0.003234,0.004249,0.249964,0,0);-ms-transform:matrix(0.190213,-0.003234,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190213,-0.003234,0.004249,0.249964,0,0);}
.m85_c00282{transform:matrix(0.190236,-0.003614,0.004749,0.249955,0,0);-ms-transform:matrix(0.190236,-0.003614,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190236,-0.003614,0.004749,0.249955,0,0);}
.m30_c00282{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);}
.m64_c00282{transform:matrix(0.190519,-0.003429,0.004499,0.249960,0,0);-ms-transform:matrix(0.190519,-0.003429,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190519,-0.003429,0.004499,0.249960,0,0);}
.m109_c00282{transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);}
.m68_c00282{transform:matrix(0.191514,-0.003447,0.004499,0.249960,0,0);-ms-transform:matrix(0.191514,-0.003447,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191514,-0.003447,0.004499,0.249960,0,0);}
.mc4_c00282{transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191831,-0.002302,0.003000,0.249982,0,0);}
.m71_c00282{transform:matrix(0.192135,-0.003651,0.004749,0.249955,0,0);-ms-transform:matrix(0.192135,-0.003651,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192135,-0.003651,0.004749,0.249955,0,0);}
.mf8_c00282{transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);}
.m7c_c00282{transform:matrix(0.192980,-0.003667,0.004749,0.249955,0,0);-ms-transform:matrix(0.192980,-0.003667,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192980,-0.003667,0.004749,0.249955,0,0);}
.mc1_c00282{transform:matrix(0.193086,-0.002317,0.003000,0.249982,0,0);-ms-transform:matrix(0.193086,-0.002317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193086,-0.002317,0.003000,0.249982,0,0);}
.mf6_c00282{transform:matrix(0.193115,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193115,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193115,-0.001931,0.002500,0.249988,0,0);}
.mb8_c00282{transform:matrix(0.193256,-0.002706,0.003500,0.249976,0,0);-ms-transform:matrix(0.193256,-0.002706,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193256,-0.002706,0.003500,0.249976,0,0);}
.m113_c00282{transform:matrix(0.193320,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193320,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193320,-0.001933,0.002500,0.249988,0,0);}
.m97_c00282{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);}
.mae_c00282{transform:matrix(0.193521,-0.002709,0.003500,0.249976,0,0);-ms-transform:matrix(0.193521,-0.002709,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193521,-0.002709,0.003500,0.249976,0,0);}
.mc5_c00282{transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193906,-0.002327,0.003000,0.249982,0,0);}
.me4_c00282{transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);-ms-transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193961,-0.002715,0.003500,0.249976,0,0);}
.m1c_c00282{transform:matrix(0.194314,-0.003498,0.004499,0.249960,0,0);-ms-transform:matrix(0.194314,-0.003498,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194314,-0.003498,0.004499,0.249960,0,0);}
.m44_c00282{transform:matrix(0.194475,-0.003695,0.004749,0.249955,0,0);-ms-transform:matrix(0.194475,-0.003695,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194475,-0.003695,0.004749,0.249955,0,0);}
.m6a_c00282{transform:matrix(0.194685,-0.003699,0.004749,0.249955,0,0);-ms-transform:matrix(0.194685,-0.003699,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194685,-0.003699,0.004749,0.249955,0,0);}
.m48_c00282{transform:matrix(0.194840,-0.003702,0.004749,0.249955,0,0);-ms-transform:matrix(0.194840,-0.003702,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194840,-0.003702,0.004749,0.249955,0,0);}
.m122_c00282{transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);-ms-transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);}
.md0_c00282{transform:matrix(0.195458,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195458,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195458,-0.002541,0.003250,0.249979,0,0);}
.m11e_c00282{transform:matrix(0.195525,-0.001955,0.002500,0.249988,0,0);-ms-transform:matrix(0.195525,-0.001955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195525,-0.001955,0.002500,0.249988,0,0);}
.m70_c00282{transform:matrix(0.195550,-0.003715,0.004749,0.249955,0,0);-ms-transform:matrix(0.195550,-0.003715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195550,-0.003715,0.004749,0.249955,0,0);}
.mc8_c00282{transform:matrix(0.195663,-0.002544,0.003250,0.249979,0,0);-ms-transform:matrix(0.195663,-0.002544,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195663,-0.002544,0.003250,0.249979,0,0);}
.mb1_c00282{transform:matrix(0.195831,-0.002742,0.003500,0.249976,0,0);-ms-transform:matrix(0.195831,-0.002742,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195831,-0.002742,0.003500,0.249976,0,0);}
.mf0_c00282{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);}
.m5a_c00282{transform:matrix(0.196387,-0.003339,0.004249,0.249964,0,0);-ms-transform:matrix(0.196387,-0.003339,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196387,-0.003339,0.004249,0.249964,0,0);}
.ma1_c00282{transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);-ms-transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196425,-0.003143,0.003999,0.249968,0,0);}
.md4_c00282{transform:matrix(0.196428,-0.002554,0.003250,0.249979,0,0);-ms-transform:matrix(0.196428,-0.002554,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196428,-0.002554,0.003250,0.249979,0,0);}
.m90_c00282{transform:matrix(0.196465,-0.003143,0.003999,0.249968,0,0);-ms-transform:matrix(0.196465,-0.003143,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196465,-0.003143,0.003999,0.249968,0,0);}
.m66_c00282{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);}
.mb5_c00282{transform:matrix(0.196766,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196766,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196766,-0.002755,0.003500,0.249976,0,0);}
.m93_c00282{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);}
.m50_c00282{transform:matrix(0.197851,-0.003363,0.004249,0.249964,0,0);-ms-transform:matrix(0.197851,-0.003363,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197851,-0.003363,0.004249,0.249964,0,0);}
.mcd_c00282{transform:matrix(0.197998,-0.002574,0.003250,0.249979,0,0);-ms-transform:matrix(0.197998,-0.002574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197998,-0.002574,0.003250,0.249979,0,0);}
.mbb_c00282{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);}
.mf4_c00282{transform:matrix(0.198180,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198180,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198180,-0.001982,0.002500,0.249988,0,0);}
.mef_c00282{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);}
.mb6_c00282{transform:matrix(0.198471,-0.002779,0.003500,0.249976,0,0);-ms-transform:matrix(0.198471,-0.002779,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198471,-0.002779,0.003500,0.249976,0,0);}
.m51_c00282{transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);-ms-transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);}
.med_c00282{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);}
.mda_c00282{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);}
.m46_c00282{transform:matrix(0.199594,-0.003792,0.004749,0.249955,0,0);-ms-transform:matrix(0.199594,-0.003792,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199594,-0.003792,0.004749,0.249955,0,0);}
.m10d_c00282{transform:matrix(0.199620,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199620,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199620,-0.001996,0.002500,0.249988,0,0);}
.m56_c00282{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);}
.mee_c00282{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);}
.m83_c00282{transform:matrix(0.200554,-0.003811,0.004749,0.249955,0,0);-ms-transform:matrix(0.200554,-0.003811,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200554,-0.003811,0.004749,0.249955,0,0);}
.m2e_c00282{transform:matrix(0.200746,-0.004416,0.005499,0.249940,0,0);-ms-transform:matrix(0.200746,-0.004416,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200746,-0.004416,0.005499,0.249940,0,0);}
.m105_c00282{transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201050,-0.002010,0.002500,0.249988,0,0);}
.m24_c00282{transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);}
.md1_c00282{transform:matrix(0.201608,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201608,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201608,-0.002621,0.003250,0.249979,0,0);}
.m55_c00282{transform:matrix(0.201926,-0.003433,0.004249,0.249964,0,0);-ms-transform:matrix(0.201926,-0.003433,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201926,-0.003433,0.004249,0.249964,0,0);}
.md7_c00282{transform:matrix(0.201938,-0.002625,0.003250,0.249979,0,0);-ms-transform:matrix(0.201938,-0.002625,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201938,-0.002625,0.003250,0.249979,0,0);}
.m117_c00282{transform:matrix(0.202200,-0.002022,0.002500,0.249988,0,0);-ms-transform:matrix(0.202200,-0.002022,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202200,-0.002022,0.002500,0.249988,0,0);}
.mab_c00282{transform:matrix(0.202315,-0.002832,0.003500,0.249976,0,0);-ms-transform:matrix(0.202315,-0.002832,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202315,-0.002832,0.003500,0.249976,0,0);}
.m5d_c00282{transform:matrix(0.202316,-0.003439,0.004249,0.249964,0,0);-ms-transform:matrix(0.202316,-0.003439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202316,-0.003439,0.004249,0.249964,0,0);}
.m11c_c00282{transform:matrix(0.202370,-0.002024,0.002500,0.249988,0,0);-ms-transform:matrix(0.202370,-0.002024,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202370,-0.002024,0.002500,0.249988,0,0);}
.ma8_c00282{transform:matrix(0.202650,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202650,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202650,-0.002837,0.003500,0.249976,0,0);}
.m12b_c00282{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);}
.mc6_c00282{transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);-ms-transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);}
.mb4_c00282{transform:matrix(0.203180,-0.002845,0.003500,0.249976,0,0);-ms-transform:matrix(0.203180,-0.002845,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203180,-0.002845,0.003500,0.249976,0,0);}
.mad_c00282{transform:matrix(0.203320,-0.002846,0.003500,0.249976,0,0);-ms-transform:matrix(0.203320,-0.002846,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203320,-0.002846,0.003500,0.249976,0,0);}
.m27_c00282{transform:matrix(0.203586,-0.004479,0.005499,0.249940,0,0);-ms-transform:matrix(0.203586,-0.004479,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203586,-0.004479,0.005499,0.249940,0,0);}
.m16_c00282{transform:matrix(0.203692,-0.003666,0.004499,0.249960,0,0);-ms-transform:matrix(0.203692,-0.003666,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203692,-0.003666,0.004499,0.249960,0,0);}
.m69_c00282{transform:matrix(0.203828,-0.003873,0.004749,0.249955,0,0);-ms-transform:matrix(0.203828,-0.003873,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203828,-0.003873,0.004749,0.249955,0,0);}
.m131_c00282{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);}
.m84_c00282{transform:matrix(0.204803,-0.003891,0.004749,0.249955,0,0);-ms-transform:matrix(0.204803,-0.003891,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204803,-0.003891,0.004749,0.249955,0,0);}
.m22_c00282{transform:matrix(0.204833,-0.002663,0.003250,0.249979,0,0);-ms-transform:matrix(0.204833,-0.002663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204833,-0.002663,0.003250,0.249979,0,0);}
.m3c_c00282{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);}
.m7b_c00282{transform:matrix(0.204908,-0.003893,0.004749,0.249955,0,0);-ms-transform:matrix(0.204908,-0.003893,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204908,-0.003893,0.004749,0.249955,0,0);}
.m132_c00282{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m4c_c00282{transform:matrix(0.205060,-0.003486,0.004249,0.249964,0,0);-ms-transform:matrix(0.205060,-0.003486,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205060,-0.003486,0.004249,0.249964,0,0);}
.m98_c00282{transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);-ms-transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);}
.m110_c00282{transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);-ms-transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);}
.mc9_c00282{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);}
.m28_c00282{transform:matrix(0.205885,-0.004529,0.005499,0.249940,0,0);-ms-transform:matrix(0.205885,-0.004529,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205885,-0.004529,0.005499,0.249940,0,0);}
.m127_c00282{transform:matrix(0.205890,-0.002059,0.002500,0.249988,0,0);-ms-transform:matrix(0.205890,-0.002059,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205890,-0.002059,0.002500,0.249988,0,0);}
.mdc_c00282{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);}
.mec_c00282{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);}
.m82_c00282{transform:matrix(0.206648,-0.003926,0.004749,0.249955,0,0);-ms-transform:matrix(0.206648,-0.003926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206648,-0.003926,0.004749,0.249955,0,0);}
.m12a_c00282{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);}
.ma9_c00282{transform:matrix(0.206985,-0.002898,0.003500,0.249976,0,0);-ms-transform:matrix(0.206985,-0.002898,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206985,-0.002898,0.003500,0.249976,0,0);}
.m1e_c00282{transform:matrix(0.207286,-0.003731,0.004499,0.249960,0,0);-ms-transform:matrix(0.207286,-0.003731,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207286,-0.003731,0.004499,0.249960,0,0);}
.m21_c00282{transform:matrix(0.207327,-0.002695,0.003250,0.249979,0,0);-ms-transform:matrix(0.207327,-0.002695,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207327,-0.002695,0.003250,0.249979,0,0);}
.m115_c00282{transform:matrix(0.207375,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207375,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207375,-0.002074,0.002500,0.249988,0,0);}
.m3f_c00282{transform:matrix(0.207428,-0.003941,0.004749,0.249955,0,0);-ms-transform:matrix(0.207428,-0.003941,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207428,-0.003941,0.004749,0.249955,0,0);}
.m25_c00282{transform:matrix(0.207467,-0.002697,0.003250,0.249979,0,0);-ms-transform:matrix(0.207467,-0.002697,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207467,-0.002697,0.003250,0.249979,0,0);}
.mc7_c00282{transform:matrix(0.207772,-0.002701,0.003250,0.249979,0,0);-ms-transform:matrix(0.207772,-0.002701,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207772,-0.002701,0.003250,0.249979,0,0);}
.m17_c00282{transform:matrix(0.208196,-0.003748,0.004499,0.249960,0,0);-ms-transform:matrix(0.208196,-0.003748,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208196,-0.003748,0.004499,0.249960,0,0);}
.m18_c00282{transform:matrix(0.208271,-0.003749,0.004499,0.249960,0,0);-ms-transform:matrix(0.208271,-0.003749,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208271,-0.003749,0.004499,0.249960,0,0);}
.m32_c00282{transform:matrix(0.208377,-0.003959,0.004749,0.249955,0,0);-ms-transform:matrix(0.208377,-0.003959,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208377,-0.003959,0.004749,0.249955,0,0);}
.m121_c00282{transform:matrix(0.209405,-0.002094,0.002500,0.249988,0,0);-ms-transform:matrix(0.209405,-0.002094,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209405,-0.002094,0.002500,0.249988,0,0);}
.m4d_c00282{transform:matrix(0.209475,-0.003561,0.004249,0.249964,0,0);-ms-transform:matrix(0.209475,-0.003561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209475,-0.003561,0.004249,0.249964,0,0);}
.m4e_c00282{transform:matrix(0.209865,-0.003568,0.004249,0.249964,0,0);-ms-transform:matrix(0.209865,-0.003568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209865,-0.003568,0.004249,0.249964,0,0);}
.m9f_c00282{transform:matrix(0.210223,-0.003364,0.003999,0.249968,0,0);-ms-transform:matrix(0.210223,-0.003364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210223,-0.003364,0.003999,0.249968,0,0);}
.m11d_c00282{transform:matrix(0.210314,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210314,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210314,-0.002103,0.002500,0.249988,0,0);}
.m6e_c00282{transform:matrix(0.210322,-0.003996,0.004749,0.249955,0,0);-ms-transform:matrix(0.210322,-0.003996,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210322,-0.003996,0.004749,0.249955,0,0);}
.mfd_c00282{transform:matrix(0.210584,-0.002106,0.002500,0.249988,0,0);-ms-transform:matrix(0.210584,-0.002106,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210584,-0.002106,0.002500,0.249988,0,0);}
.m5c_c00282{transform:matrix(0.210650,-0.003581,0.004249,0.249964,0,0);-ms-transform:matrix(0.210650,-0.003581,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210650,-0.003581,0.004249,0.249964,0,0);}
.m139_c00282{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);}
.m1b_c00282{transform:matrix(0.211606,-0.003809,0.004499,0.249960,0,0);-ms-transform:matrix(0.211606,-0.003809,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211606,-0.003809,0.004499,0.249960,0,0);}
.m103_c00282{transform:matrix(0.212369,-0.002124,0.002500,0.249988,0,0);-ms-transform:matrix(0.212369,-0.002124,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212369,-0.002124,0.002500,0.249988,0,0);}
.maf_c00282{transform:matrix(0.213089,-0.002983,0.003500,0.249976,0,0);-ms-transform:matrix(0.213089,-0.002983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213089,-0.002983,0.003500,0.249976,0,0);}
.me7_c00282{transform:matrix(0.213577,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213577,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213577,-0.002349,0.002750,0.249985,0,0);}
.m3e_c00282{transform:matrix(0.213836,-0.004063,0.004749,0.249955,0,0);-ms-transform:matrix(0.213836,-0.004063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213836,-0.004063,0.004749,0.249955,0,0);}
.m81_c00282{transform:matrix(0.214156,-0.004069,0.004749,0.249955,0,0);-ms-transform:matrix(0.214156,-0.004069,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214156,-0.004069,0.004749,0.249955,0,0);}
.mac_c00282{transform:matrix(0.215229,-0.003013,0.003500,0.249976,0,0);-ms-transform:matrix(0.215229,-0.003013,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215229,-0.003013,0.003500,0.249976,0,0);}
.mfc_c00282{transform:matrix(0.215754,-0.002158,0.002500,0.249988,0,0);-ms-transform:matrix(0.215754,-0.002158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215754,-0.002158,0.002500,0.249988,0,0);}
.m10c_c00282{transform:matrix(0.215834,-0.002158,0.002500,0.249988,0,0);-ms-transform:matrix(0.215834,-0.002158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215834,-0.002158,0.002500,0.249988,0,0);}
.m138_c00282{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);}
.m111_c00282{transform:matrix(0.216599,-0.002166,0.002500,0.249988,0,0);-ms-transform:matrix(0.216599,-0.002166,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216599,-0.002166,0.002500,0.249988,0,0);}
.m5f_c00282{transform:matrix(0.217170,-0.003909,0.004499,0.249960,0,0);-ms-transform:matrix(0.217170,-0.003909,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217170,-0.003909,0.004499,0.249960,0,0);}
.m59_c00282{transform:matrix(0.217309,-0.003694,0.004249,0.249964,0,0);-ms-transform:matrix(0.217309,-0.003694,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217309,-0.003694,0.004249,0.249964,0,0);}
.m10f_c00282{transform:matrix(0.217359,-0.002174,0.002500,0.249988,0,0);-ms-transform:matrix(0.217359,-0.002174,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217359,-0.002174,0.002500,0.249988,0,0);}
.m7d_c00282{transform:matrix(0.217446,-0.004131,0.004749,0.249955,0,0);-ms-transform:matrix(0.217446,-0.004131,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217446,-0.004131,0.004749,0.249955,0,0);}
.m118_c00282{transform:matrix(0.217474,-0.002175,0.002500,0.249988,0,0);-ms-transform:matrix(0.217474,-0.002175,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217474,-0.002175,0.002500,0.249988,0,0);}
.md9_c00282{transform:matrix(0.218062,-0.002835,0.003250,0.249979,0,0);-ms-transform:matrix(0.218062,-0.002835,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218062,-0.002835,0.003250,0.249979,0,0);}
.m12c_c00282{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);}
.m6c_c00282{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);}
.m73_c00282{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);}
.m102_c00282{transform:matrix(0.219814,-0.002198,0.002500,0.249988,0,0);-ms-transform:matrix(0.219814,-0.002198,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219814,-0.002198,0.002500,0.249988,0,0);}
.m101_c00282{transform:matrix(0.220269,-0.002203,0.002500,0.249988,0,0);-ms-transform:matrix(0.220269,-0.002203,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220269,-0.002203,0.002500,0.249988,0,0);}
.m86_c00282{transform:matrix(0.221365,-0.004206,0.004749,0.249955,0,0);-ms-transform:matrix(0.221365,-0.004206,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221365,-0.004206,0.004749,0.249955,0,0);}
.m10e_c00282{transform:matrix(0.221669,-0.002217,0.002500,0.249988,0,0);-ms-transform:matrix(0.221669,-0.002217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221669,-0.002217,0.002500,0.249988,0,0);}
.m130_c00282{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);}
.me9_c00282{transform:matrix(0.225046,-0.002476,0.002750,0.249985,0,0);-ms-transform:matrix(0.225046,-0.002476,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225046,-0.002476,0.002750,0.249985,0,0);}
.ma3_c00282{transform:matrix(0.225598,-0.003158,0.003500,0.249976,0,0);-ms-transform:matrix(0.225598,-0.003158,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225598,-0.003158,0.003500,0.249976,0,0);}
.m9c_c00282{transform:matrix(0.226896,-0.003630,0.003999,0.249968,0,0);-ms-transform:matrix(0.226896,-0.003630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226896,-0.003630,0.003999,0.249968,0,0);}
.m135_c00282{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);}
.m87_c00282{transform:matrix(0.229069,-0.004352,0.004749,0.249955,0,0);-ms-transform:matrix(0.229069,-0.004352,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229069,-0.004352,0.004749,0.249955,0,0);}
.m3b_c00282{transform:matrix(0.229279,-0.004356,0.004749,0.249955,0,0);-ms-transform:matrix(0.229279,-0.004356,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229279,-0.004356,0.004749,0.249955,0,0);}
.m6_c00282{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);}
.m9a_c00282{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);}
.m11a_c00282{transform:matrix(0.230183,-0.002302,0.002500,0.249988,0,0);-ms-transform:matrix(0.230183,-0.002302,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230183,-0.002302,0.002500,0.249988,0,0);}
.m5e_c00282{transform:matrix(0.230313,-0.004146,0.004499,0.249960,0,0);-ms-transform:matrix(0.230313,-0.004146,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230313,-0.004146,0.004499,0.249960,0,0);}
.m53_c00282{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);}
.m12f_c00282{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);}
.mdb_c00282{transform:matrix(0.231680,-0.003012,0.003250,0.249979,0,0);-ms-transform:matrix(0.231680,-0.003012,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231680,-0.003012,0.003250,0.249979,0,0);}
.mdf_c00282{transform:matrix(0.231967,-0.003248,0.003500,0.249976,0,0);-ms-transform:matrix(0.231967,-0.003248,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231967,-0.003248,0.003500,0.249976,0,0);}
.m77_c00282{transform:matrix(0.233478,-0.004436,0.004749,0.249955,0,0);-ms-transform:matrix(0.233478,-0.004436,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233478,-0.004436,0.004749,0.249955,0,0);}
.m104_c00282{transform:matrix(0.233518,-0.002335,0.002500,0.249988,0,0);-ms-transform:matrix(0.233518,-0.002335,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233518,-0.002335,0.002500,0.249988,0,0);}
.me3_c00282{transform:matrix(0.233882,-0.003274,0.003500,0.249976,0,0);-ms-transform:matrix(0.233882,-0.003274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233882,-0.003274,0.003500,0.249976,0,0);}
.m2f_c00282{transform:matrix(0.236378,-0.005200,0.005499,0.249940,0,0);-ms-transform:matrix(0.236378,-0.005200,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236378,-0.005200,0.005499,0.249940,0,0);}
.me2_c00282{transform:matrix(0.236752,-0.003315,0.003500,0.249976,0,0);-ms-transform:matrix(0.236752,-0.003315,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236752,-0.003315,0.003500,0.249976,0,0);}
.m6d_c00282{transform:matrix(0.237112,-0.004505,0.004749,0.249955,0,0);-ms-transform:matrix(0.237112,-0.004505,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237112,-0.004505,0.004749,0.249955,0,0);}
.m52_c00282{transform:matrix(0.237291,-0.004034,0.004249,0.249964,0,0);-ms-transform:matrix(0.237291,-0.004034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237291,-0.004034,0.004249,0.249964,0,0);}
.m2c_c00282{transform:matrix(0.237982,-0.005236,0.005499,0.249940,0,0);-ms-transform:matrix(0.237982,-0.005236,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237982,-0.005236,0.005499,0.249940,0,0);}
.m9b_c00282{transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);-ms-transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);}
.m106_c00282{transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);-ms-transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);}
.mcf_c00282{transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);-ms-transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);}
.m9e_c00282{transform:matrix(0.242144,-0.003874,0.003999,0.249968,0,0);-ms-transform:matrix(0.242144,-0.003874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242144,-0.003874,0.003999,0.249968,0,0);}
.m76_c00282{transform:matrix(0.243511,-0.004627,0.004749,0.249955,0,0);-ms-transform:matrix(0.243511,-0.004627,0.004749,0.249955,0,0);-webkit-transform:matrix(0.243511,-0.004627,0.004749,0.249955,0,0);}
.m108_c00282{transform:matrix(0.246628,-0.002466,0.002500,0.249988,0,0);-ms-transform:matrix(0.246628,-0.002466,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246628,-0.002466,0.002500,0.249988,0,0);}
.m119_c00282{transform:matrix(0.247308,-0.002473,0.002500,0.249988,0,0);-ms-transform:matrix(0.247308,-0.002473,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247308,-0.002473,0.002500,0.249988,0,0);}
.m123_c00282{transform:matrix(0.248968,-0.002490,0.002500,0.249988,0,0);-ms-transform:matrix(0.248968,-0.002490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248968,-0.002490,0.002500,0.249988,0,0);}
.m99_c00282{transform:matrix(0.250213,-0.004003,0.003999,0.249968,0,0);-ms-transform:matrix(0.250213,-0.004003,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250213,-0.004003,0.003999,0.249968,0,0);}
.m7a_c00282{transform:matrix(0.250835,-0.004766,0.004749,0.249955,0,0);-ms-transform:matrix(0.250835,-0.004766,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250835,-0.004766,0.004749,0.249955,0,0);}
.ma2_c00282{transform:matrix(0.251300,-0.003518,0.003500,0.249976,0,0);-ms-transform:matrix(0.251300,-0.003518,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251300,-0.003518,0.003500,0.249976,0,0);}
.m88_c00282{transform:matrix(0.252389,-0.004795,0.004749,0.249955,0,0);-ms-transform:matrix(0.252389,-0.004795,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252389,-0.004795,0.004749,0.249955,0,0);}
.m4a_c00282{transform:matrix(0.253208,-0.004305,0.004249,0.249964,0,0);-ms-transform:matrix(0.253208,-0.004305,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253208,-0.004305,0.004249,0.249964,0,0);}
.mb9_c00282{transform:matrix(0.259051,-0.003109,0.003000,0.249982,0,0);-ms-transform:matrix(0.259051,-0.003109,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259051,-0.003109,0.003000,0.249982,0,0);}
.m74_c00282{transform:matrix(0.262863,-0.004994,0.004749,0.249955,0,0);-ms-transform:matrix(0.262863,-0.004994,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262863,-0.004994,0.004749,0.249955,0,0);}
.m9_c00282{transform:matrix(0.269021,-0.003228,0.003000,0.249982,0,0);-ms-transform:matrix(0.269021,-0.003228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269021,-0.003228,0.003000,0.249982,0,0);}
.mf9_c00282{transform:matrix(0.273661,-0.002737,0.002500,0.249988,0,0);-ms-transform:matrix(0.273661,-0.002737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273661,-0.002737,0.002500,0.249988,0,0);}
.m29_c00282{transform:matrix(0.274779,-0.006045,0.005499,0.249940,0,0);-ms-transform:matrix(0.274779,-0.006045,0.005499,0.249940,0,0);-webkit-transform:matrix(0.274779,-0.006045,0.005499,0.249940,0,0);}
.m79_c00282{transform:matrix(0.277660,-0.005276,0.004749,0.249955,0,0);-ms-transform:matrix(0.277660,-0.005276,0.004749,0.249955,0,0);-webkit-transform:matrix(0.277660,-0.005276,0.004749,0.249955,0,0);}
.m137_c00282{transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283990,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.285284,-0.003423,0.003000,0.249982,0,0);-ms-transform:matrix(0.285284,-0.003423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285284,-0.003423,0.003000,0.249982,0,0);}
.m7f_c00282{transform:matrix(0.285329,-0.005421,0.004749,0.249955,0,0);-ms-transform:matrix(0.285329,-0.005421,0.004749,0.249955,0,0);-webkit-transform:matrix(0.285329,-0.005421,0.004749,0.249955,0,0);}
.m2_c00282{transform:matrix(0.288669,-0.003464,0.003000,0.249982,0,0);-ms-transform:matrix(0.288669,-0.003464,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288669,-0.003464,0.003000,0.249982,0,0);}
.mdd_c00282{transform:matrix(0.292795,-0.003806,0.003250,0.249979,0,0);-ms-transform:matrix(0.292795,-0.003806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.292795,-0.003806,0.003250,0.249979,0,0);}
.m6b_c00282{transform:matrix(0.302965,-0.005756,0.004749,0.249955,0,0);-ms-transform:matrix(0.302965,-0.005756,0.004749,0.249955,0,0);-webkit-transform:matrix(0.302965,-0.005756,0.004749,0.249955,0,0);}
.m45_c00282{transform:matrix(0.311844,-0.005925,0.004749,0.249955,0,0);-ms-transform:matrix(0.311844,-0.005925,0.004749,0.249955,0,0);-webkit-transform:matrix(0.311844,-0.005925,0.004749,0.249955,0,0);}
.m13b_c00282{transform:matrix(0.320885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320885,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.324027,-0.006157,0.004749,0.249955,0,0);-ms-transform:matrix(0.324027,-0.006157,0.004749,0.249955,0,0);-webkit-transform:matrix(0.324027,-0.006157,0.004749,0.249955,0,0);}
.m5_c00282{transform:matrix(0.324742,-0.003897,0.003000,0.249982,0,0);-ms-transform:matrix(0.324742,-0.003897,0.003000,0.249982,0,0);-webkit-transform:matrix(0.324742,-0.003897,0.003000,0.249982,0,0);}
.m133_c00282{transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);}
.m134_c00282{transform:matrix(0.348820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348820,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.354179,-0.004250,0.003000,0.249982,0,0);-ms-transform:matrix(0.354179,-0.004250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.354179,-0.004250,0.003000,0.249982,0,0);}
.m11_c00282{transform:matrix(0.357549,-0.004291,0.003000,0.249982,0,0);-ms-transform:matrix(0.357549,-0.004291,0.003000,0.249982,0,0);-webkit-transform:matrix(0.357549,-0.004291,0.003000,0.249982,0,0);}
.md5_c00282{transform:matrix(0.372309,-0.004840,0.003250,0.249979,0,0);-ms-transform:matrix(0.372309,-0.004840,0.003250,0.249979,0,0);-webkit-transform:matrix(0.372309,-0.004840,0.003250,0.249979,0,0);}
.me8_c00282{transform:matrix(0.376242,-0.004139,0.002750,0.249985,0,0);-ms-transform:matrix(0.376242,-0.004139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.376242,-0.004139,0.002750,0.249985,0,0);}
.m136_c00282{transform:matrix(0.407515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407515,0.000000,0.000000,0.250000,0,0);}
.md3_c00282{transform:matrix(0.421644,-0.005481,0.003250,0.249979,0,0);-ms-transform:matrix(0.421644,-0.005481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.421644,-0.005481,0.003250,0.249979,0,0);}
.md2_c00282{transform:matrix(0.428304,-0.005568,0.003250,0.249979,0,0);-ms-transform:matrix(0.428304,-0.005568,0.003250,0.249979,0,0);-webkit-transform:matrix(0.428304,-0.005568,0.003250,0.249979,0,0);}
.m4_c00282{transform:matrix(0.455582,-0.005467,0.003000,0.249982,0,0);-ms-transform:matrix(0.455582,-0.005467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.455582,-0.005467,0.003000,0.249982,0,0);}
.mf_c00282{transform:matrix(0.472861,-0.005674,0.003000,0.249982,0,0);-ms-transform:matrix(0.472861,-0.005674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.472861,-0.005674,0.003000,0.249982,0,0);}
.m0_c00282{transform:matrix(0.477645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477645,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.483360,-0.005800,0.003000,0.249982,0,0);-ms-transform:matrix(0.483360,-0.005800,0.003000,0.249982,0,0);-webkit-transform:matrix(0.483360,-0.005800,0.003000,0.249982,0,0);}
.mbd_c00282{transform:matrix(0.542171,-0.006506,0.003000,0.249982,0,0);-ms-transform:matrix(0.542171,-0.006506,0.003000,0.249982,0,0);-webkit-transform:matrix(0.542171,-0.006506,0.003000,0.249982,0,0);}
.m8_c00282{transform:matrix(0.550300,-0.006604,0.003000,0.249982,0,0);-ms-transform:matrix(0.550300,-0.006604,0.003000,0.249982,0,0);-webkit-transform:matrix(0.550300,-0.006604,0.003000,0.249982,0,0);}
.m12e_c00282{transform:matrix(0.572110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572110,0.000000,0.000000,0.250000,0,0);}
.m129_c00282{transform:matrix(0.631005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631005,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.636929,-0.007643,0.003000,0.249982,0,0);-ms-transform:matrix(0.636929,-0.007643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.636929,-0.007643,0.003000,0.249982,0,0);}
.m10_c00282{transform:matrix(0.665702,-0.007988,0.003000,0.249982,0,0);-ms-transform:matrix(0.665702,-0.007988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.665702,-0.007988,0.003000,0.249982,0,0);}
.md_c00282{transform:matrix(0.717363,-0.008608,0.003000,0.249982,0,0);-ms-transform:matrix(0.717363,-0.008608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.717363,-0.008608,0.003000,0.249982,0,0);}
.me_c00282{transform:matrix(0.737792,-0.008854,0.003000,0.249982,0,0);-ms-transform:matrix(0.737792,-0.008854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.737792,-0.008854,0.003000,0.249982,0,0);}
.mc_c00282{transform:matrix(0.959596,-0.011515,0.003000,0.249982,0,0);-ms-transform:matrix(0.959596,-0.011515,0.003000,0.249982,0,0);-webkit-transform:matrix(0.959596,-0.011515,0.003000,0.249982,0,0);}
.md8_c00282{transform:matrix(1.006345,-0.013082,0.003250,0.249979,0,0);-ms-transform:matrix(1.006345,-0.013082,0.003250,0.249979,0,0);-webkit-transform:matrix(1.006345,-0.013082,0.003250,0.249979,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;}
.fs1_c00282{font-size:36.752646px;}
.fs0_c00282{font-size:43.050000px;}
.fs1c_c00282{font-size:50.400000px;}
.fs1b_c00282{font-size:51.450000px;}
.fs2_c00282{font-size:52.503780px;}
.fsf_c00282{font-size:59.857660px;}
.fsc_c00282{font-size:66.161939px;}
.fs1a_c00282{font-size:67.203360px;}
.fs15_c00282{font-size:67.204065px;}
.fs16_c00282{font-size:68.250000px;}
.fs19_c00282{font-size:68.253412px;}
.fs12_c00282{font-size:68.254914px;}
.fs10_c00282{font-size:68.256688px;}
.fs9_c00282{font-size:68.259861px;}
.fs4_c00282{font-size:69.305856px;}
.fs11_c00282{font-size:69.306791px;}
.fs8_c00282{font-size:69.310013px;}
.fs3_c00282{font-size:69.311226px;}
.fsb_c00282{font-size:69.312508px;}
.fs18_c00282{font-size:70.353517px;}
.fs13_c00282{font-size:70.355944px;}
.fsa_c00282{font-size:70.361396px;}
.fs17_c00282{font-size:71.403570px;}
.fs14_c00282{font-size:71.406997px;}
.fs6_c00282{font-size:71.412887px;}
.fs5_c00282{font-size:71.417277px;}
.fse_c00282{font-size:73.509407px;}
.fs7_c00282{font-size:73.513266px;}
.fsd_c00282{font-size:75.613645px;}
.fs1d_c00282{font-size:161.700000px;}
.y0_c00282{bottom:0.000000px;}
.y128_c00282{bottom:107.586000px;}
.y127_c00282{bottom:110.017500px;}
.y126_c00282{bottom:164.167500px;}
.y125_c00282{bottom:182.991000px;}
.y11c_c00282{bottom:238.139685px;}
.y11d_c00282{bottom:238.882170px;}
.y11e_c00282{bottom:239.146890px;}
.y11f_c00282{bottom:239.792100px;}
.y120_c00282{bottom:240.010950px;}
.y121_c00282{bottom:240.745335px;}
.y122_c00282{bottom:241.201665px;}
.y123_c00282{bottom:241.598460px;}
.y124_c00282{bottom:242.160135px;}
.y110_c00282{bottom:261.090150px;}
.y111_c00282{bottom:261.424935px;}
.y112_c00282{bottom:261.670350px;}
.y113_c00282{bottom:262.278300px;}
.y114_c00282{bottom:263.107110px;}
.y115_c00282{bottom:263.371755px;}
.y116_c00282{bottom:263.714670px;}
.y117_c00282{bottom:263.922645px;}
.y118_c00282{bottom:264.405915px;}
.y119_c00282{bottom:265.040385px;}
.y11a_c00282{bottom:265.321200px;}
.y11b_c00282{bottom:265.745130px;}
.y103_c00282{bottom:283.773000px;}
.y104_c00282{bottom:284.116635px;}
.y105_c00282{bottom:284.297985px;}
.y106_c00282{bottom:284.676075px;}
.y107_c00282{bottom:285.205275px;}
.y108_c00282{bottom:285.445650px;}
.y109_c00282{bottom:286.020690px;}
.y10a_c00282{bottom:286.228665px;}
.y10b_c00282{bottom:286.480245px;}
.y10c_c00282{bottom:286.717380px;}
.y10d_c00282{bottom:287.335710px;}
.y10e_c00282{bottom:287.780730px;}
.y10f_c00282{bottom:288.132225px;}
.yf8_c00282{bottom:314.815650px;}
.yf9_c00282{bottom:315.322380px;}
.yfa_c00282{bottom:315.350685px;}
.yfb_c00282{bottom:315.547095px;}
.yfc_c00282{bottom:315.799065px;}
.yfd_c00282{bottom:316.142985px;}
.yfe_c00282{bottom:316.685745px;}
.yff_c00282{bottom:316.970085px;}
.y100_c00282{bottom:317.350695px;}
.y101_c00282{bottom:317.986515px;}
.y102_c00282{bottom:318.241890px;}
.yee_c00282{bottom:337.771500px;}
.yef_c00282{bottom:338.127855px;}
.yf0_c00282{bottom:338.892165px;}
.yf1_c00282{bottom:339.286425px;}
.yf2_c00282{bottom:339.907455px;}
.yf3_c00282{bottom:340.261170px;}
.yf4_c00282{bottom:340.861185px;}
.yf5_c00282{bottom:341.100855px;}
.yf6_c00282{bottom:341.260065px;}
.yf7_c00282{bottom:341.657055px;}
.yed_c00282{bottom:362.172000px;}
.ye6_c00282{bottom:383.131500px;}
.ye7_c00282{bottom:383.559312px;}
.ye8_c00282{bottom:384.126120px;}
.ye9_c00282{bottom:385.066505px;}
.yea_c00282{bottom:385.689050px;}
.yeb_c00282{bottom:386.496840px;}
.yec_c00282{bottom:387.030879px;}
.ye0_c00282{bottom:405.136500px;}
.ye1_c00282{bottom:405.500241px;}
.ye2_c00282{bottom:406.315902px;}
.ye3_c00282{bottom:406.943802px;}
.ye4_c00282{bottom:408.796023px;}
.ye5_c00282{bottom:409.238766px;}
.yd3_c00282{bottom:436.591047px;}
.yd4_c00282{bottom:436.829571px;}
.yd5_c00282{bottom:437.342577px;}
.yd6_c00282{bottom:438.370325px;}
.yd7_c00282{bottom:438.407609px;}
.yd8_c00282{bottom:438.553293px;}
.yd9_c00282{bottom:438.939179px;}
.yda_c00282{bottom:439.599332px;}
.ydb_c00282{bottom:440.072421px;}
.ydc_c00282{bottom:440.466731px;}
.ydd_c00282{bottom:441.566219px;}
.yde_c00282{bottom:442.806653px;}
.ydf_c00282{bottom:442.809383px;}
.yc7_c00282{bottom:459.813000px;}
.yc8_c00282{bottom:460.952970px;}
.yc9_c00282{bottom:461.476740px;}
.ycb_c00282{bottom:462.353441px;}
.yca_c00282{bottom:462.354260px;}
.ycc_c00282{bottom:462.564938px;}
.ycd_c00282{bottom:463.217096px;}
.yce_c00282{bottom:463.508542px;}
.ycf_c00282{bottom:464.242932px;}
.yd0_c00282{bottom:464.576304px;}
.yd1_c00282{bottom:464.895773px;}
.yd2_c00282{bottom:465.331071px;}
.yba_c00282{bottom:482.491500px;}
.ybb_c00282{bottom:483.071298px;}
.ybc_c00282{bottom:483.478926px;}
.ybd_c00282{bottom:483.852156px;}
.ybe_c00282{bottom:484.131012px;}
.ybf_c00282{bottom:484.926666px;}
.yc0_c00282{bottom:485.080332px;}
.yc1_c00282{bottom:485.437020px;}
.yc2_c00282{bottom:485.790846px;}
.yc3_c00282{bottom:486.100464px;}
.yc4_c00282{bottom:486.544974px;}
.yc5_c00282{bottom:487.160574px;}
.yc6_c00282{bottom:487.772934px;}
.yb0_c00282{bottom:504.903000px;}
.yb1_c00282{bottom:506.456118px;}
.yb2_c00282{bottom:506.838444px;}
.yb3_c00282{bottom:507.389841px;}
.yb4_c00282{bottom:507.669750px;}
.yb5_c00282{bottom:508.244520px;}
.yb6_c00282{bottom:508.853037px;}
.yb7_c00282{bottom:509.688543px;}
.yb8_c00282{bottom:511.030317px;}
.yb9_c00282{bottom:511.378098px;}
.ya3_c00282{bottom:527.043000px;}
.ya4_c00282{bottom:527.243214px;}
.ya5_c00282{bottom:527.991528px;}
.ya6_c00282{bottom:528.324231px;}
.ya7_c00282{bottom:528.933063px;}
.ya8_c00282{bottom:529.654119px;}
.ya9_c00282{bottom:529.942533px;}
.yaa_c00282{bottom:530.834466px;}
.yab_c00282{bottom:531.018825px;}
.yac_c00282{bottom:531.317466px;}
.yad_c00282{bottom:532.134240px;}
.yae_c00282{bottom:532.879509px;}
.yaf_c00282{bottom:533.284032px;}
.y97_c00282{bottom:549.718416px;}
.y98_c00282{bottom:550.232388px;}
.y99_c00282{bottom:550.504812px;}
.y9a_c00282{bottom:551.359584px;}
.y9b_c00282{bottom:551.820696px;}
.y9c_c00282{bottom:552.035340px;}
.y9d_c00282{bottom:552.893196px;}
.y9e_c00282{bottom:553.158240px;}
.y9f_c00282{bottom:553.563012px;}
.ya0_c00282{bottom:554.860608px;}
.ya1_c00282{bottom:555.924012px;}
.ya2_c00282{bottom:556.140840px;}
.y8a_c00282{bottom:572.001000px;}
.y8b_c00282{bottom:572.899728px;}
.y8c_c00282{bottom:573.418056px;}
.y8d_c00282{bottom:573.773208px;}
.y8e_c00282{bottom:574.389504px;}
.y8f_c00282{bottom:575.211432px;}
.y90_c00282{bottom:575.837688px;}
.y91_c00282{bottom:576.560064px;}
.y92_c00282{bottom:577.177608px;}
.y93_c00282{bottom:577.505328px;}
.y94_c00282{bottom:577.872072px;}
.y95_c00282{bottom:578.291952px;}
.y96_c00282{bottom:579.410616px;}
.y7f_c00282{bottom:594.539375px;}
.y80_c00282{bottom:595.248951px;}
.y81_c00282{bottom:595.637874px;}
.y82_c00282{bottom:595.910610px;}
.y83_c00282{bottom:596.421174px;}
.y84_c00282{bottom:597.707504px;}
.y85_c00282{bottom:599.044619px;}
.y86_c00282{bottom:599.592705px;}
.y87_c00282{bottom:600.458385px;}
.y88_c00282{bottom:600.799105px;}
.y89_c00282{bottom:601.433847px;}
.y74_c00282{bottom:615.193500px;}
.y76_c00282{bottom:616.333386px;}
.y75_c00282{bottom:616.373771px;}
.y77_c00282{bottom:616.512052px;}
.y78_c00282{bottom:617.374605px;}
.y79_c00282{bottom:618.760418px;}
.y7a_c00282{bottom:621.211532px;}
.y7b_c00282{bottom:622.078159px;}
.y7c_c00282{bottom:623.010195px;}
.y7d_c00282{bottom:623.571417px;}
.y7e_c00282{bottom:624.089262px;}
.y6a_c00282{bottom:638.014500px;}
.y6b_c00282{bottom:638.696876px;}
.y6c_c00282{bottom:640.329584px;}
.y6d_c00282{bottom:640.801543px;}
.y6e_c00282{bottom:641.888904px;}
.y6f_c00282{bottom:643.304727px;}
.y70_c00282{bottom:644.160012px;}
.y71_c00282{bottom:644.710661px;}
.y72_c00282{bottom:645.562098px;}
.y73_c00282{bottom:646.316550px;}
.y5f_c00282{bottom:660.964500px;}
.y60_c00282{bottom:661.446099px;}
.y61_c00282{bottom:662.543757px;}
.y62_c00282{bottom:663.320358px;}
.y63_c00282{bottom:663.953292px;}
.y64_c00282{bottom:664.653456px;}
.y65_c00282{bottom:665.959446px;}
.y66_c00282{bottom:666.586359px;}
.y67_c00282{bottom:667.282797px;}
.y68_c00282{bottom:667.730889px;}
.y69_c00282{bottom:668.537163px;}
.y55_c00282{bottom:683.638731px;}
.y56_c00282{bottom:683.953506px;}
.y57_c00282{bottom:684.512495px;}
.y58_c00282{bottom:685.005456px;}
.y59_c00282{bottom:685.786911px;}
.y5a_c00282{bottom:686.847531px;}
.y5b_c00282{bottom:688.683078px;}
.y5c_c00282{bottom:689.484470px;}
.y5d_c00282{bottom:690.525842px;}
.y5e_c00282{bottom:691.783666px;}
.y4b_c00282{bottom:706.593000px;}
.y4c_c00282{bottom:707.615167px;}
.y4d_c00282{bottom:707.956740px;}
.y4e_c00282{bottom:708.788193px;}
.y4f_c00282{bottom:709.169571px;}
.y50_c00282{bottom:710.533081px;}
.y51_c00282{bottom:711.161657px;}
.y52_c00282{bottom:712.441935px;}
.y53_c00282{bottom:713.300852px;}
.y54_c00282{bottom:713.884164px;}
.y40_c00282{bottom:729.272927px;}
.y41_c00282{bottom:730.249857px;}
.y42_c00282{bottom:730.532768px;}
.y43_c00282{bottom:732.061935px;}
.y44_c00282{bottom:733.015200px;}
.y45_c00282{bottom:733.481183px;}
.y46_c00282{bottom:734.410867px;}
.y47_c00282{bottom:734.885325px;}
.y48_c00282{bottom:735.490469px;}
.y49_c00282{bottom:735.989902px;}
.y4a_c00282{bottom:737.351531px;}
.y32_c00282{bottom:751.416000px;}
.y33_c00282{bottom:751.897536px;}
.y34_c00282{bottom:752.733783px;}
.y35_c00282{bottom:753.267303px;}
.y36_c00282{bottom:753.652481px;}
.y37_c00282{bottom:754.648100px;}
.y38_c00282{bottom:755.151039px;}
.y39_c00282{bottom:755.505152px;}
.y3a_c00282{bottom:756.657834px;}
.y3b_c00282{bottom:757.259498px;}
.y3c_c00282{bottom:757.984851px;}
.y3d_c00282{bottom:758.726820px;}
.y3e_c00282{bottom:759.295766px;}
.y3f_c00282{bottom:759.870810px;}
.y28_c00282{bottom:780.804000px;}
.y29_c00282{bottom:781.909500px;}
.y2a_c00282{bottom:782.360709px;}
.y2b_c00282{bottom:783.401661px;}
.y2c_c00282{bottom:783.846798px;}
.y2d_c00282{bottom:784.542273px;}
.y2e_c00282{bottom:785.330016px;}
.y2f_c00282{bottom:786.003810px;}
.y30_c00282{bottom:786.562698px;}
.y31_c00282{bottom:787.965825px;}
.y20_c00282{bottom:812.431500px;}
.y21_c00282{bottom:813.032022px;}
.y22_c00282{bottom:813.768517px;}
.y23_c00282{bottom:814.254048px;}
.y24_c00282{bottom:815.000839px;}
.y25_c00282{bottom:815.275789px;}
.y26_c00282{bottom:816.177547px;}
.y27_c00282{bottom:816.588373px;}
.y15_c00282{bottom:831.874500px;}
.y16_c00282{bottom:832.798197px;}
.y17_c00282{bottom:833.128893px;}
.y18_c00282{bottom:834.012576px;}
.y19_c00282{bottom:834.605658px;}
.y1a_c00282{bottom:835.249527px;}
.y1b_c00282{bottom:836.129646px;}
.y1c_c00282{bottom:836.843607px;}
.y1d_c00282{bottom:838.178406px;}
.y1e_c00282{bottom:838.797003px;}
.y1f_c00282{bottom:839.210373px;}
.yb_c00282{bottom:937.169574px;}
.yc_c00282{bottom:937.717476px;}
.yd_c00282{bottom:938.517414px;}
.y2_c00282{bottom:939.061500px;}
.ye_c00282{bottom:939.375972px;}
.y3_c00282{bottom:939.794082px;}
.yf_c00282{bottom:940.005996px;}
.y4_c00282{bottom:940.492032px;}
.y10_c00282{bottom:940.751016px;}
.y5_c00282{bottom:941.045172px;}
.y11_c00282{bottom:941.316534px;}
.y6_c00282{bottom:941.391204px;}
.y7_c00282{bottom:941.789814px;}
.y12_c00282{bottom:942.031506px;}
.y8_c00282{bottom:942.668610px;}
.y13_c00282{bottom:942.715224px;}
.y14_c00282{bottom:942.777894px;}
.y1_c00282{bottom:942.840000px;}
.y9_c00282{bottom:943.186974px;}
.ya_c00282{bottom:944.401416px;}
.h3_c00282{height:36.752646px;}
.h2_c00282{height:43.050000px;}
.h1e_c00282{height:50.400000px;}
.h1d_c00282{height:51.450000px;}
.h4_c00282{height:52.503780px;}
.h11_c00282{height:59.857660px;}
.he_c00282{height:66.161939px;}
.h1c_c00282{height:67.203360px;}
.h17_c00282{height:67.204065px;}
.h18_c00282{height:68.250000px;}
.h1b_c00282{height:68.253412px;}
.h14_c00282{height:68.254914px;}
.h12_c00282{height:68.256688px;}
.hb_c00282{height:68.259861px;}
.h6_c00282{height:69.305856px;}
.h13_c00282{height:69.306791px;}
.ha_c00282{height:69.310013px;}
.h5_c00282{height:69.311226px;}
.hd_c00282{height:69.312508px;}
.h1a_c00282{height:70.353517px;}
.h15_c00282{height:70.355944px;}
.hc_c00282{height:70.361396px;}
.h19_c00282{height:71.403570px;}
.h16_c00282{height:71.406997px;}
.h8_c00282{height:71.412887px;}
.h7_c00282{height:71.417277px;}
.h10_c00282{height:73.509407px;}
.h9_c00282{height:73.513266px;}
.hf_c00282{height:75.613645px;}
.h1f_c00282{height:161.700000px;}
.h1_c00282{height:1005.000000px;}
.h0_c00282{height:1005.150000px;}
.w0_c00282{width:702.540000px;}
.w1_c00282{width:702.750000px;}
.x0_c00282{left:0.000000px;}
.xb_c00282{left:34.267650px;}
.x43_c00282{left:75.816000px;}
.x2e_c00282{left:82.653000px;}
.xc_c00282{left:84.051744px;}
.x4a_c00282{left:85.751981px;}
.x3b_c00282{left:87.018642px;}
.x7d_c00282{left:88.246500px;}
.x9f_c00282{left:89.653500px;}
.xb0_c00282{left:91.530000px;}
.x4b_c00282{left:102.326420px;}
.x2_c00282{left:107.541000px;}
.x53_c00282{left:111.822000px;}
.x24_c00282{left:120.412500px;}
.x5b_c00282{left:122.290500px;}
.x77_c00282{left:124.106028px;}
.x91_c00282{left:125.539500px;}
.xa9_c00282{left:128.790000px;}
.x1d_c00282{left:130.276500px;}
.x4c_c00282{left:131.765925px;}
.x68_c00282{left:134.700321px;}
.x15_c00282{left:135.765000px;}
.x3c_c00282{left:141.279168px;}
.x70_c00282{left:143.863500px;}
.x64_c00282{left:146.169000px;}
.x63_c00282{left:148.294500px;}
.x2f_c00282{left:152.010000px;}
.x16_c00282{left:154.137000px;}
.x65_c00282{left:155.572500px;}
.xd_c00282{left:156.714108px;}
.x69_c00282{left:160.619288px;}
.x94_c00282{left:163.492500px;}
.x95_c00282{left:165.510000px;}
.x3_c00282{left:168.589500px;}
.x25_c00282{left:170.662500px;}
.x54_c00282{left:172.803000px;}
.xaa_c00282{left:173.880000px;}
.x71_c00282{left:176.259000px;}
.x6a_c00282{left:178.764656px;}
.x30_c00282{left:180.090000px;}
.x9e_c00282{left:184.872195px;}
.x1e_c00282{left:186.930000px;}
.x26_c00282{left:191.172000px;}
.x4d_c00282{left:198.788130px;}
.x31_c00282{left:200.362500px;}
.x83_c00282{left:201.579000px;}
.x17_c00282{left:203.230500px;}
.x44_c00282{left:204.945000px;}
.x5c_c00282{left:208.222500px;}
.x92_c00282{left:209.782500px;}
.x6b_c00282{left:212.823249px;}
.x55_c00282{left:215.947500px;}
.x96_c00282{left:218.700000px;}
.x8d_c00282{left:220.220560px;}
.x7b_c00282{left:222.426000px;}
.x1f_c00282{left:224.278500px;}
.x4_c00282{left:226.752000px;}
.xb1_c00282{left:230.580000px;}
.x5d_c00282{left:233.062500px;}
.xe_c00282{left:234.761544px;}
.x18_c00282{left:236.179500px;}
.x98_c00282{left:237.201000px;}
.x27_c00282{left:238.488000px;}
.x3d_c00282{left:241.943078px;}
.x56_c00282{left:251.110500px;}
.x32_c00282{left:252.763500px;}
.x4e_c00282{left:254.646243px;}
.xa0_c00282{left:256.918500px;}
.x28_c00282{left:258.721500px;}
.xab_c00282{left:262.170000px;}
.x8e_c00282{left:263.978560px;}
.x7e_c00282{left:265.878000px;}
.x5_c00282{left:272.847000px;}
.x66_c00282{left:273.907500px;}
.x99_c00282{left:276.627000px;}
.x97_c00282{left:278.100000px;}
.x33_c00282{left:279.234000px;}
.x20_c00282{left:281.724000px;}
.x88_c00282{left:283.414500px;}
.x7f_c00282{left:285.871500px;}
.x1_c00282{left:287.280000px;}
.x72_c00282{left:288.345000px;}
.x29_c00282{left:290.334000px;}
.xf_c00282{left:292.014228px;}
.x3e_c00282{left:294.879075px;}
.x34_c00282{left:297.871500px;}
.x89_c00282{left:299.620500px;}
.x6_c00282{left:301.683000px;}
.x21_c00282{left:302.874000px;}
.x84_c00282{left:303.927000px;}
.x45_c00282{left:307.585500px;}
.xac_c00282{left:310.230000px;}
.x78_c00282{left:314.225124px;}
.xa3_c00282{left:318.205845px;}
.x19_c00282{left:320.845500px;}
.x2a_c00282{left:326.140500px;}
.x73_c00282{left:327.486000px;}
.x79_c00282{left:333.134724px;}
.x7_c00282{left:334.900500px;}
.x9a_c00282{left:338.730000px;}
.x46_c00282{left:344.560500px;}
.xad_c00282{left:347.760000px;}
.x8a_c00282{left:349.786500px;}
.x4f_c00282{left:351.233954px;}
.xa4_c00282{left:352.497345px;}
.x2b_c00282{left:356.767500px;}
.x35_c00282{left:358.539000px;}
.x10_c00282{left:359.725038px;}
.x57_c00282{left:362.563500px;}
.x5e_c00282{left:364.809000px;}
.x80_c00282{left:370.392000px;}
.x22_c00282{left:372.240000px;}
.x9b_c00282{left:374.101500px;}
.x2c_c00282{left:382.171500px;}
.xa1_c00282{left:384.091500px;}
.x6c_c00282{left:387.702030px;}
.x85_c00282{left:388.938000px;}
.x36_c00282{left:390.205500px;}
.x50_c00282{left:393.432026px;}
.xa8_c00282{left:395.976300px;}
.x58_c00282{left:397.392000px;}
.x3f_c00282{left:398.756042px;}
.x23_c00282{left:403.842000px;}
.x8_c00282{left:408.133500px;}
.x5f_c00282{left:409.824000px;}
.x11_c00282{left:411.102150px;}
.x93_c00282{left:418.558500px;}
.x47_c00282{left:419.871000px;}
.xa5_c00282{left:421.621845px;}
.x6d_c00282{left:424.288323px;}
.x86_c00282{left:425.980500px;}
.x37_c00282{left:428.382000px;}
.x81_c00282{left:430.071000px;}
.x40_c00282{left:432.343169px;}
.x1a_c00282{left:434.665500px;}
.x59_c00282{left:436.083000px;}
.x60_c00282{left:438.805500px;}
.x2d_c00282{left:445.950000px;}
.x51_c00282{left:448.246164px;}
.x9_c00282{left:451.330500px;}
.x74_c00282{left:454.635000px;}
.x9c_c00282{left:458.070000px;}
.x41_c00282{left:460.129710px;}
.x8f_c00282{left:466.058560px;}
.x38_c00282{left:467.433000px;}
.x1b_c00282{left:469.032000px;}
.x48_c00282{left:470.395500px;}
.x9d_c00282{left:473.991000px;}
.x12_c00282{left:476.058924px;}
.x87_c00282{left:477.280500px;}
.x8b_c00282{left:478.915500px;}
.x75_c00282{left:480.877500px;}
.x6e_c00282{left:482.012712px;}
.x61_c00282{left:483.618000px;}
.xa6_c00282{left:485.068845px;}
.xa2_c00282{left:490.426500px;}
.x1c_c00282{left:491.997000px;}
.x39_c00282{left:497.377500px;}
.x49_c00282{left:504.708000px;}
.x5a_c00282{left:505.770000px;}
.xae_c00282{left:510.570000px;}
.x8c_c00282{left:512.400000px;}
.x52_c00282{left:514.468920px;}
.x62_c00282{left:523.326000px;}
.x82_c00282{left:525.912000px;}
.x3a_c00282{left:527.643000px;}
.x7a_c00282{left:530.658036px;}
.x7c_c00282{left:533.209500px;}
.x42_c00282{left:535.743135px;}
.x13_c00282{left:538.161162px;}
.x14_c00282{left:543.883734px;}
.x6f_c00282{left:547.015643px;}
.x76_c00282{left:550.794000px;}
.xa_c00282{left:552.534000px;}
.x67_c00282{left:554.373000px;}
.xa7_c00282{left:555.543345px;}
.x90_c00282{left:561.476561px;}
.xaf_c00282{left:578.070000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.fs1_c00282{font-size:32.669019pt;}
.fs0_c00282{font-size:38.266667pt;}
.fs1c_c00282{font-size:44.800000pt;}
.fs1b_c00282{font-size:45.733333pt;}
.fs2_c00282{font-size:46.670027pt;}
.fsf_c00282{font-size:53.206809pt;}
.fsc_c00282{font-size:58.810612pt;}
.fs1a_c00282{font-size:59.736320pt;}
.fs15_c00282{font-size:59.736947pt;}
.fs16_c00282{font-size:60.666667pt;}
.fs19_c00282{font-size:60.669700pt;}
.fs12_c00282{font-size:60.671035pt;}
.fs10_c00282{font-size:60.672612pt;}
.fs9_c00282{font-size:60.675432pt;}
.fs4_c00282{font-size:61.605205pt;}
.fs11_c00282{font-size:61.606037pt;}
.fs8_c00282{font-size:61.608901pt;}
.fs3_c00282{font-size:61.609978pt;}
.fsb_c00282{font-size:61.611118pt;}
.fs18_c00282{font-size:62.536460pt;}
.fs13_c00282{font-size:62.538617pt;}
.fsa_c00282{font-size:62.543463pt;}
.fs17_c00282{font-size:63.469840pt;}
.fs14_c00282{font-size:63.472886pt;}
.fs6_c00282{font-size:63.478121pt;}
.fs5_c00282{font-size:63.482024pt;}
.fse_c00282{font-size:65.341695pt;}
.fs7_c00282{font-size:65.345125pt;}
.fsd_c00282{font-size:67.212129pt;}
.fs1d_c00282{font-size:143.733333pt;}
.y0_c00282{bottom:0.000000pt;}
.y128_c00282{bottom:95.632000pt;}
.y127_c00282{bottom:97.793333pt;}
.y126_c00282{bottom:145.926667pt;}
.y125_c00282{bottom:162.658667pt;}
.y11c_c00282{bottom:211.679720pt;}
.y11d_c00282{bottom:212.339707pt;}
.y11e_c00282{bottom:212.575013pt;}
.y11f_c00282{bottom:213.148533pt;}
.y120_c00282{bottom:213.343067pt;}
.y121_c00282{bottom:213.995853pt;}
.y122_c00282{bottom:214.401480pt;}
.y123_c00282{bottom:214.754187pt;}
.y124_c00282{bottom:215.253453pt;}
.y110_c00282{bottom:232.080133pt;}
.y111_c00282{bottom:232.377720pt;}
.y112_c00282{bottom:232.595867pt;}
.y113_c00282{bottom:233.136267pt;}
.y114_c00282{bottom:233.872987pt;}
.y115_c00282{bottom:234.108227pt;}
.y116_c00282{bottom:234.413040pt;}
.y117_c00282{bottom:234.597907pt;}
.y118_c00282{bottom:235.027480pt;}
.y119_c00282{bottom:235.591453pt;}
.y11a_c00282{bottom:235.841067pt;}
.y11b_c00282{bottom:236.217893pt;}
.y103_c00282{bottom:252.242667pt;}
.y104_c00282{bottom:252.548120pt;}
.y105_c00282{bottom:252.709320pt;}
.y106_c00282{bottom:253.045400pt;}
.y107_c00282{bottom:253.515800pt;}
.y108_c00282{bottom:253.729467pt;}
.y109_c00282{bottom:254.240613pt;}
.y10a_c00282{bottom:254.425480pt;}
.y10b_c00282{bottom:254.649107pt;}
.y10c_c00282{bottom:254.859893pt;}
.y10d_c00282{bottom:255.409520pt;}
.y10e_c00282{bottom:255.805093pt;}
.y10f_c00282{bottom:256.117533pt;}
.yf8_c00282{bottom:279.836133pt;}
.yf9_c00282{bottom:280.286560pt;}
.yfa_c00282{bottom:280.311720pt;}
.yfb_c00282{bottom:280.486307pt;}
.yfc_c00282{bottom:280.710280pt;}
.yfd_c00282{bottom:281.015987pt;}
.yfe_c00282{bottom:281.498440pt;}
.yff_c00282{bottom:281.751187pt;}
.y100_c00282{bottom:282.089507pt;}
.y101_c00282{bottom:282.654680pt;}
.y102_c00282{bottom:282.881680pt;}
.yee_c00282{bottom:300.241333pt;}
.yef_c00282{bottom:300.558093pt;}
.yf0_c00282{bottom:301.237480pt;}
.yf1_c00282{bottom:301.587933pt;}
.yf2_c00282{bottom:302.139960pt;}
.yf3_c00282{bottom:302.454373pt;}
.yf4_c00282{bottom:302.987720pt;}
.yf5_c00282{bottom:303.200760pt;}
.yf6_c00282{bottom:303.342280pt;}
.yf7_c00282{bottom:303.695160pt;}
.yed_c00282{bottom:321.930667pt;}
.ye6_c00282{bottom:340.561333pt;}
.ye7_c00282{bottom:340.941611pt;}
.ye8_c00282{bottom:341.445440pt;}
.ye9_c00282{bottom:342.281337pt;}
.yea_c00282{bottom:342.834711pt;}
.yeb_c00282{bottom:343.552747pt;}
.yec_c00282{bottom:344.027448pt;}
.ye0_c00282{bottom:360.121333pt;}
.ye1_c00282{bottom:360.444659pt;}
.ye2_c00282{bottom:361.169691pt;}
.ye3_c00282{bottom:361.727824pt;}
.ye4_c00282{bottom:363.374243pt;}
.ye5_c00282{bottom:363.767792pt;}
.yd3_c00282{bottom:388.080931pt;}
.yd4_c00282{bottom:388.292952pt;}
.yd5_c00282{bottom:388.748957pt;}
.yd6_c00282{bottom:389.662511pt;}
.yd7_c00282{bottom:389.695652pt;}
.yd8_c00282{bottom:389.825149pt;}
.yd9_c00282{bottom:390.168159pt;}
.yda_c00282{bottom:390.754961pt;}
.ydb_c00282{bottom:391.175485pt;}
.ydc_c00282{bottom:391.525983pt;}
.ydd_c00282{bottom:392.503305pt;}
.yde_c00282{bottom:393.605913pt;}
.ydf_c00282{bottom:393.608340pt;}
.yc7_c00282{bottom:408.722667pt;}
.yc8_c00282{bottom:409.735973pt;}
.yc9_c00282{bottom:410.201547pt;}
.ycb_c00282{bottom:410.980836pt;}
.yca_c00282{bottom:410.981564pt;}
.ycc_c00282{bottom:411.168833pt;}
.ycd_c00282{bottom:411.748529pt;}
.yce_c00282{bottom:412.007593pt;}
.ycf_c00282{bottom:412.660384pt;}
.yd0_c00282{bottom:412.956715pt;}
.yd1_c00282{bottom:413.240687pt;}
.yd2_c00282{bottom:413.627619pt;}
.yba_c00282{bottom:428.881333pt;}
.ybb_c00282{bottom:429.396709pt;}
.ybc_c00282{bottom:429.759045pt;}
.ybd_c00282{bottom:430.090805pt;}
.ybe_c00282{bottom:430.338677pt;}
.ybf_c00282{bottom:431.045925pt;}
.yc0_c00282{bottom:431.182517pt;}
.yc1_c00282{bottom:431.499573pt;}
.yc2_c00282{bottom:431.814085pt;}
.yc3_c00282{bottom:432.089301pt;}
.yc4_c00282{bottom:432.484421pt;}
.yc5_c00282{bottom:433.031621pt;}
.yc6_c00282{bottom:433.575941pt;}
.yb0_c00282{bottom:448.802667pt;}
.yb1_c00282{bottom:450.183216pt;}
.yb2_c00282{bottom:450.523061pt;}
.yb3_c00282{bottom:451.013192pt;}
.yb4_c00282{bottom:451.262000pt;}
.yb5_c00282{bottom:451.772907pt;}
.yb6_c00282{bottom:452.313811pt;}
.yb7_c00282{bottom:453.056483pt;}
.yb8_c00282{bottom:454.249171pt;}
.yb9_c00282{bottom:454.558309pt;}
.ya3_c00282{bottom:468.482667pt;}
.ya4_c00282{bottom:468.660635pt;}
.ya5_c00282{bottom:469.325803pt;}
.ya6_c00282{bottom:469.621539pt;}
.ya7_c00282{bottom:470.162723pt;}
.ya8_c00282{bottom:470.803661pt;}
.ya9_c00282{bottom:471.060029pt;}
.yaa_c00282{bottom:471.852859pt;}
.yab_c00282{bottom:472.016733pt;}
.yac_c00282{bottom:472.282192pt;}
.yad_c00282{bottom:473.008213pt;}
.yae_c00282{bottom:473.670675pt;}
.yaf_c00282{bottom:474.030251pt;}
.y97_c00282{bottom:488.638592pt;}
.y98_c00282{bottom:489.095456pt;}
.y99_c00282{bottom:489.337611pt;}
.y9a_c00282{bottom:490.097408pt;}
.y9b_c00282{bottom:490.507285pt;}
.y9c_c00282{bottom:490.698080pt;}
.y9d_c00282{bottom:491.460619pt;}
.y9e_c00282{bottom:491.696213pt;}
.y9f_c00282{bottom:492.056011pt;}
.ya0_c00282{bottom:493.209429pt;}
.ya1_c00282{bottom:494.154677pt;}
.ya2_c00282{bottom:494.347413pt;}
.y8a_c00282{bottom:508.445333pt;}
.y8b_c00282{bottom:509.244203pt;}
.y8c_c00282{bottom:509.704939pt;}
.y8d_c00282{bottom:510.020629pt;}
.y8e_c00282{bottom:510.568448pt;}
.y8f_c00282{bottom:511.299051pt;}
.y90_c00282{bottom:511.855723pt;}
.y91_c00282{bottom:512.497835pt;}
.y92_c00282{bottom:513.046763pt;}
.y93_c00282{bottom:513.338069pt;}
.y94_c00282{bottom:513.664064pt;}
.y95_c00282{bottom:514.037291pt;}
.y96_c00282{bottom:515.031659pt;}
.y7f_c00282{bottom:528.479444pt;}
.y80_c00282{bottom:529.110179pt;}
.y81_c00282{bottom:529.455888pt;}
.y82_c00282{bottom:529.698320pt;}
.y83_c00282{bottom:530.152155pt;}
.y84_c00282{bottom:531.295559pt;}
.y85_c00282{bottom:532.484105pt;}
.y86_c00282{bottom:532.971293pt;}
.y87_c00282{bottom:533.740787pt;}
.y88_c00282{bottom:534.043649pt;}
.y89_c00282{bottom:534.607864pt;}
.y74_c00282{bottom:546.838667pt;}
.y76_c00282{bottom:547.851899pt;}
.y75_c00282{bottom:547.887796pt;}
.y77_c00282{bottom:548.010713pt;}
.y78_c00282{bottom:548.777427pt;}
.y79_c00282{bottom:550.009260pt;}
.y7a_c00282{bottom:552.188028pt;}
.y7b_c00282{bottom:552.958364pt;}
.y7c_c00282{bottom:553.786840pt;}
.y7d_c00282{bottom:554.285704pt;}
.y7e_c00282{bottom:554.746011pt;}
.y6a_c00282{bottom:567.124000pt;}
.y6b_c00282{bottom:567.730556pt;}
.y6c_c00282{bottom:569.181852pt;}
.y6d_c00282{bottom:569.601372pt;}
.y6e_c00282{bottom:570.567915pt;}
.y6f_c00282{bottom:571.826424pt;}
.y70_c00282{bottom:572.586677pt;}
.y71_c00282{bottom:573.076143pt;}
.y72_c00282{bottom:573.832976pt;}
.y73_c00282{bottom:574.503600pt;}
.y5f_c00282{bottom:587.524000pt;}
.y60_c00282{bottom:587.952088pt;}
.y61_c00282{bottom:588.927784pt;}
.y62_c00282{bottom:589.618096pt;}
.y63_c00282{bottom:590.180704pt;}
.y64_c00282{bottom:590.803072pt;}
.y65_c00282{bottom:591.963952pt;}
.y66_c00282{bottom:592.521208pt;}
.y67_c00282{bottom:593.140264pt;}
.y68_c00282{bottom:593.538568pt;}
.y69_c00282{bottom:594.255256pt;}
.y55_c00282{bottom:607.678872pt;}
.y56_c00282{bottom:607.958672pt;}
.y57_c00282{bottom:608.455551pt;}
.y58_c00282{bottom:608.893739pt;}
.y59_c00282{bottom:609.588365pt;}
.y5a_c00282{bottom:610.531139pt;}
.y5b_c00282{bottom:612.162736pt;}
.y5c_c00282{bottom:612.875084pt;}
.y5d_c00282{bottom:613.800748pt;}
.y5e_c00282{bottom:614.918815pt;}
.y4b_c00282{bottom:628.082667pt;}
.y4c_c00282{bottom:628.991260pt;}
.y4d_c00282{bottom:629.294880pt;}
.y4e_c00282{bottom:630.033949pt;}
.y4f_c00282{bottom:630.372952pt;}
.y50_c00282{bottom:631.584961pt;}
.y51_c00282{bottom:632.143695pt;}
.y52_c00282{bottom:633.281720pt;}
.y53_c00282{bottom:634.045201pt;}
.y54_c00282{bottom:634.563701pt;}
.y40_c00282{bottom:648.242601pt;}
.y41_c00282{bottom:649.110984pt;}
.y42_c00282{bottom:649.362460pt;}
.y43_c00282{bottom:650.721720pt;}
.y44_c00282{bottom:651.569067pt;}
.y45_c00282{bottom:651.983273pt;}
.y46_c00282{bottom:652.809660pt;}
.y47_c00282{bottom:653.231400pt;}
.y48_c00282{bottom:653.769305pt;}
.y49_c00282{bottom:654.213247pt;}
.y4a_c00282{bottom:655.423583pt;}
.y32_c00282{bottom:667.925333pt;}
.y33_c00282{bottom:668.353365pt;}
.y34_c00282{bottom:669.096696pt;}
.y35_c00282{bottom:669.570936pt;}
.y36_c00282{bottom:669.913316pt;}
.y37_c00282{bottom:670.798311pt;}
.y38_c00282{bottom:671.245368pt;}
.y39_c00282{bottom:671.560135pt;}
.y3a_c00282{bottom:672.584741pt;}
.y3b_c00282{bottom:673.119553pt;}
.y3c_c00282{bottom:673.764312pt;}
.y3d_c00282{bottom:674.423840pt;}
.y3e_c00282{bottom:674.929569pt;}
.y3f_c00282{bottom:675.440720pt;}
.y28_c00282{bottom:694.048000pt;}
.y29_c00282{bottom:695.030667pt;}
.y2a_c00282{bottom:695.431741pt;}
.y2b_c00282{bottom:696.357032pt;}
.y2c_c00282{bottom:696.752709pt;}
.y2d_c00282{bottom:697.370909pt;}
.y2e_c00282{bottom:698.071125pt;}
.y2f_c00282{bottom:698.670053pt;}
.y30_c00282{bottom:699.166843pt;}
.y31_c00282{bottom:700.414067pt;}
.y20_c00282{bottom:722.161333pt;}
.y21_c00282{bottom:722.695131pt;}
.y22_c00282{bottom:723.349793pt;}
.y23_c00282{bottom:723.781376pt;}
.y24_c00282{bottom:724.445191pt;}
.y25_c00282{bottom:724.689591pt;}
.y26_c00282{bottom:725.491153pt;}
.y27_c00282{bottom:725.856332pt;}
.y15_c00282{bottom:739.444000pt;}
.y16_c00282{bottom:740.265064pt;}
.y17_c00282{bottom:740.559016pt;}
.y18_c00282{bottom:741.344512pt;}
.y19_c00282{bottom:741.871696pt;}
.y1a_c00282{bottom:742.444024pt;}
.y1b_c00282{bottom:743.226352pt;}
.y1c_c00282{bottom:743.860984pt;}
.y1d_c00282{bottom:745.047472pt;}
.y1e_c00282{bottom:745.597336pt;}
.y1f_c00282{bottom:745.964776pt;}
.yb_c00282{bottom:833.039621pt;}
.yc_c00282{bottom:833.526645pt;}
.yd_c00282{bottom:834.237701pt;}
.y2_c00282{bottom:834.721333pt;}
.ye_c00282{bottom:835.000864pt;}
.y3_c00282{bottom:835.372517pt;}
.yf_c00282{bottom:835.560885pt;}
.y4_c00282{bottom:835.992917pt;}
.y10_c00282{bottom:836.223125pt;}
.y5_c00282{bottom:836.484597pt;}
.y11_c00282{bottom:836.725808pt;}
.y6_c00282{bottom:836.792181pt;}
.y7_c00282{bottom:837.146501pt;}
.y12_c00282{bottom:837.361339pt;}
.y8_c00282{bottom:837.927653pt;}
.y13_c00282{bottom:837.969088pt;}
.y14_c00282{bottom:838.024795pt;}
.y1_c00282{bottom:838.080000pt;}
.y9_c00282{bottom:838.388421pt;}
.ya_c00282{bottom:839.467925pt;}
.h3_c00282{height:32.669019pt;}
.h2_c00282{height:38.266667pt;}
.h1e_c00282{height:44.800000pt;}
.h1d_c00282{height:45.733333pt;}
.h4_c00282{height:46.670027pt;}
.h11_c00282{height:53.206809pt;}
.he_c00282{height:58.810612pt;}
.h1c_c00282{height:59.736320pt;}
.h17_c00282{height:59.736947pt;}
.h18_c00282{height:60.666667pt;}
.h1b_c00282{height:60.669700pt;}
.h14_c00282{height:60.671035pt;}
.h12_c00282{height:60.672612pt;}
.hb_c00282{height:60.675432pt;}
.h6_c00282{height:61.605205pt;}
.h13_c00282{height:61.606037pt;}
.ha_c00282{height:61.608901pt;}
.h5_c00282{height:61.609978pt;}
.hd_c00282{height:61.611118pt;}
.h1a_c00282{height:62.536460pt;}
.h15_c00282{height:62.538617pt;}
.hc_c00282{height:62.543463pt;}
.h19_c00282{height:63.469840pt;}
.h16_c00282{height:63.472886pt;}
.h8_c00282{height:63.478121pt;}
.h7_c00282{height:63.482024pt;}
.h10_c00282{height:65.341695pt;}
.h9_c00282{height:65.345125pt;}
.hf_c00282{height:67.212129pt;}
.h1f_c00282{height:143.733333pt;}
.h1_c00282{height:893.333333pt;}
.h0_c00282{height:893.466667pt;}
.w0_c00282{width:624.480000pt;}
.w1_c00282{width:624.666667pt;}
.x0_c00282{left:0.000000pt;}
.xb_c00282{left:30.460133pt;}
.x43_c00282{left:67.392000pt;}
.x2e_c00282{left:73.469333pt;}
.xc_c00282{left:74.712661pt;}
.x4a_c00282{left:76.223983pt;}
.x3b_c00282{left:77.349904pt;}
.x7d_c00282{left:78.441333pt;}
.x9f_c00282{left:79.692000pt;}
.xb0_c00282{left:81.360000pt;}
.x4b_c00282{left:90.956817pt;}
.x2_c00282{left:95.592000pt;}
.x53_c00282{left:99.397333pt;}
.x24_c00282{left:107.033333pt;}
.x5b_c00282{left:108.702667pt;}
.x77_c00282{left:110.316469pt;}
.x91_c00282{left:111.590667pt;}
.xa9_c00282{left:114.480000pt;}
.x1d_c00282{left:115.801333pt;}
.x4c_c00282{left:117.125267pt;}
.x68_c00282{left:119.733619pt;}
.x15_c00282{left:120.680000pt;}
.x3c_c00282{left:125.581483pt;}
.x70_c00282{left:127.878667pt;}
.x64_c00282{left:129.928000pt;}
.x63_c00282{left:131.817333pt;}
.x2f_c00282{left:135.120000pt;}
.x16_c00282{left:137.010667pt;}
.x65_c00282{left:138.286667pt;}
.xd_c00282{left:139.301429pt;}
.x69_c00282{left:142.772700pt;}
.x94_c00282{left:145.326667pt;}
.x95_c00282{left:147.120000pt;}
.x3_c00282{left:149.857333pt;}
.x25_c00282{left:151.700000pt;}
.x54_c00282{left:153.602667pt;}
.xaa_c00282{left:154.560000pt;}
.x71_c00282{left:156.674667pt;}
.x6a_c00282{left:158.901916pt;}
.x30_c00282{left:160.080000pt;}
.x9e_c00282{left:164.330840pt;}
.x1e_c00282{left:166.160000pt;}
.x26_c00282{left:169.930667pt;}
.x4d_c00282{left:176.700560pt;}
.x31_c00282{left:178.100000pt;}
.x83_c00282{left:179.181333pt;}
.x17_c00282{left:180.649333pt;}
.x44_c00282{left:182.173333pt;}
.x5c_c00282{left:185.086667pt;}
.x92_c00282{left:186.473333pt;}
.x6b_c00282{left:189.176221pt;}
.x55_c00282{left:191.953333pt;}
.x96_c00282{left:194.400000pt;}
.x8d_c00282{left:195.751609pt;}
.x7b_c00282{left:197.712000pt;}
.x1f_c00282{left:199.358667pt;}
.x4_c00282{left:201.557333pt;}
.xb1_c00282{left:204.960000pt;}
.x5d_c00282{left:207.166667pt;}
.xe_c00282{left:208.676928pt;}
.x18_c00282{left:209.937333pt;}
.x98_c00282{left:210.845333pt;}
.x27_c00282{left:211.989333pt;}
.x3d_c00282{left:215.060513pt;}
.x56_c00282{left:223.209333pt;}
.x32_c00282{left:224.678667pt;}
.x4e_c00282{left:226.352216pt;}
.xa0_c00282{left:228.372000pt;}
.x28_c00282{left:229.974667pt;}
.xab_c00282{left:233.040000pt;}
.x8e_c00282{left:234.647609pt;}
.x7e_c00282{left:236.336000pt;}
.x5_c00282{left:242.530667pt;}
.x66_c00282{left:243.473333pt;}
.x99_c00282{left:245.890667pt;}
.x97_c00282{left:247.200000pt;}
.x33_c00282{left:248.208000pt;}
.x20_c00282{left:250.421333pt;}
.x88_c00282{left:251.924000pt;}
.x7f_c00282{left:254.108000pt;}
.x1_c00282{left:255.360000pt;}
.x72_c00282{left:256.306667pt;}
.x29_c00282{left:258.074667pt;}
.xf_c00282{left:259.568203pt;}
.x3e_c00282{left:262.114733pt;}
.x34_c00282{left:264.774667pt;}
.x89_c00282{left:266.329333pt;}
.x6_c00282{left:268.162667pt;}
.x21_c00282{left:269.221333pt;}
.x84_c00282{left:270.157333pt;}
.x45_c00282{left:273.409333pt;}
.xac_c00282{left:275.760000pt;}
.x78_c00282{left:279.311221pt;}
.xa3_c00282{left:282.849640pt;}
.x19_c00282{left:285.196000pt;}
.x2a_c00282{left:289.902667pt;}
.x73_c00282{left:291.098667pt;}
.x79_c00282{left:296.119755pt;}
.x7_c00282{left:297.689333pt;}
.x9a_c00282{left:301.093333pt;}
.x46_c00282{left:306.276000pt;}
.xad_c00282{left:309.120000pt;}
.x8a_c00282{left:310.921333pt;}
.x4f_c00282{left:312.207959pt;}
.xa4_c00282{left:313.330973pt;}
.x2b_c00282{left:317.126667pt;}
.x35_c00282{left:318.701333pt;}
.x10_c00282{left:319.755589pt;}
.x57_c00282{left:322.278667pt;}
.x5e_c00282{left:324.274667pt;}
.x80_c00282{left:329.237333pt;}
.x22_c00282{left:330.880000pt;}
.x9b_c00282{left:332.534667pt;}
.x2c_c00282{left:339.708000pt;}
.xa1_c00282{left:341.414667pt;}
.x6c_c00282{left:344.624027pt;}
.x85_c00282{left:345.722667pt;}
.x36_c00282{left:346.849333pt;}
.x50_c00282{left:349.717356pt;}
.xa8_c00282{left:351.978933pt;}
.x58_c00282{left:353.237333pt;}
.x3f_c00282{left:354.449815pt;}
.x23_c00282{left:358.970667pt;}
.x8_c00282{left:362.785333pt;}
.x5f_c00282{left:364.288000pt;}
.x11_c00282{left:365.424133pt;}
.x93_c00282{left:372.052000pt;}
.x47_c00282{left:373.218667pt;}
.xa5_c00282{left:374.774973pt;}
.x6d_c00282{left:377.145176pt;}
.x86_c00282{left:378.649333pt;}
.x37_c00282{left:380.784000pt;}
.x81_c00282{left:382.285333pt;}
.x40_c00282{left:384.305039pt;}
.x1a_c00282{left:386.369333pt;}
.x59_c00282{left:387.629333pt;}
.x60_c00282{left:390.049333pt;}
.x2d_c00282{left:396.400000pt;}
.x51_c00282{left:398.441035pt;}
.x9_c00282{left:401.182667pt;}
.x74_c00282{left:404.120000pt;}
.x9c_c00282{left:407.173333pt;}
.x41_c00282{left:409.004187pt;}
.x8f_c00282{left:414.274276pt;}
.x38_c00282{left:415.496000pt;}
.x1b_c00282{left:416.917333pt;}
.x48_c00282{left:418.129333pt;}
.x9d_c00282{left:421.325333pt;}
.x12_c00282{left:423.163488pt;}
.x87_c00282{left:424.249333pt;}
.x8b_c00282{left:425.702667pt;}
.x75_c00282{left:427.446667pt;}
.x6e_c00282{left:428.455744pt;}
.x61_c00282{left:429.882667pt;}
.xa6_c00282{left:431.172307pt;}
.xa2_c00282{left:435.934667pt;}
.x1c_c00282{left:437.330667pt;}
.x39_c00282{left:442.113333pt;}
.x49_c00282{left:448.629333pt;}
.x5a_c00282{left:449.573333pt;}
.xae_c00282{left:453.840000pt;}
.x8c_c00282{left:455.466667pt;}
.x52_c00282{left:457.305707pt;}
.x62_c00282{left:465.178667pt;}
.x82_c00282{left:467.477333pt;}
.x3a_c00282{left:469.016000pt;}
.x7a_c00282{left:471.696032pt;}
.x7c_c00282{left:473.964000pt;}
.x42_c00282{left:476.216120pt;}
.x13_c00282{left:478.365477pt;}
.x14_c00282{left:483.452208pt;}
.x6f_c00282{left:486.236127pt;}
.x76_c00282{left:489.594667pt;}
.xa_c00282{left:491.141333pt;}
.x67_c00282{left:492.776000pt;}
.xa7_c00282{left:493.816307pt;}
.x90_c00282{left:499.090276pt;}
.xaf_c00282{left:513.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_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_4ab86c84425994a9e06b01c2.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;}
.m158_c00283{transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);}
.m147_c00283{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);}
.m155_c00283{transform:matrix(0.028050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028050,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.067795,0.000814,-0.003000,0.249982,0,0);-ms-transform:matrix(0.067795,0.000814,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.067795,0.000814,-0.003000,0.249982,0,0);}
.m10f_c00283{transform:matrix(0.093950,0.001691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.093950,0.001691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.093950,0.001691,-0.004499,0.249960,0,0);}
.m80_c00283{transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);-ms-transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);}
.m154_c00283{transform:matrix(0.095990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095990,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.100268,0.001203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.100268,0.001203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.100268,0.001203,-0.003000,0.249982,0,0);}
.m94_c00283{transform:matrix(0.103258,0.001549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.103258,0.001549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.103258,0.001549,-0.003750,0.249972,0,0);}
.m145_c00283{transform:matrix(0.106615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106615,0.000000,0.000000,0.250000,0,0);}
.m16c_c00283{transform:matrix(0.119630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119630,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.122585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122585,0.000000,0.000000,0.250000,0,0);}
.mf3_c00283{transform:matrix(0.132285,0.001984,-0.003750,0.249972,0,0);-ms-transform:matrix(0.132285,0.001984,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.132285,0.001984,-0.003750,0.249972,0,0);}
.m138_c00283{transform:matrix(0.134763,0.002426,-0.004499,0.249960,0,0);-ms-transform:matrix(0.134763,0.002426,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.134763,0.002426,-0.004499,0.249960,0,0);}
.ma3_c00283{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);}
.m153_c00283{transform:matrix(0.141278,0.004525,-0.008004,0.249872,0,0);-ms-transform:matrix(0.141278,0.004525,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.141278,0.004525,-0.008004,0.249872,0,0);}
.m6f_c00283{transform:matrix(0.144345,0.001732,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144345,0.001732,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144345,0.001732,-0.003000,0.249982,0,0);}
.me4_c00283{transform:matrix(0.144759,0.002171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.144759,0.002171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.144759,0.002171,-0.003750,0.249972,0,0);}
.m146_c00283{transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);}
.mad_c00283{transform:matrix(0.148058,0.002221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148058,0.002221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148058,0.002221,-0.003750,0.249972,0,0);}
.m135_c00283{transform:matrix(0.149146,0.002685,-0.004499,0.249960,0,0);-ms-transform:matrix(0.149146,0.002685,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.149146,0.002685,-0.004499,0.249960,0,0);}
.m67_c00283{transform:matrix(0.149959,0.001800,-0.003000,0.249982,0,0);-ms-transform:matrix(0.149959,0.001800,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.149959,0.001800,-0.003000,0.249982,0,0);}
.mac_c00283{transform:matrix(0.151443,0.002272,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151443,0.002272,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151443,0.002272,-0.003750,0.249972,0,0);}
.mb4_c00283{transform:matrix(0.153118,0.002297,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153118,0.002297,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153118,0.002297,-0.003750,0.249972,0,0);}
.m5f_c00283{transform:matrix(0.153564,0.001843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153564,0.001843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153564,0.001843,-0.003000,0.249982,0,0);}
.mf7_c00283{transform:matrix(0.153760,0.002768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153760,0.002768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153760,0.002768,-0.004499,0.249960,0,0);}
.m29_c00283{transform:matrix(0.155004,0.001860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155004,0.001860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155004,0.001860,-0.003000,0.249982,0,0);}
.m2e_c00283{transform:matrix(0.155639,0.001868,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155639,0.001868,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155639,0.001868,-0.003000,0.249982,0,0);}
.mb8_c00283{transform:matrix(0.155987,0.002340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155987,0.002340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155987,0.002340,-0.003750,0.249972,0,0);}
.m19_c00283{transform:matrix(0.156854,0.001882,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156854,0.001882,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156854,0.001882,-0.003000,0.249982,0,0);}
.m7d_c00283{transform:matrix(0.158694,0.001904,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158694,0.001904,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158694,0.001904,-0.003000,0.249982,0,0);}
.m12c_c00283{transform:matrix(0.158874,0.002860,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158874,0.002860,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158874,0.002860,-0.004499,0.249960,0,0);}
.m121_c00283{transform:matrix(0.159119,0.002864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159119,0.002864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159119,0.002864,-0.004499,0.249960,0,0);}
.m11b_c00283{transform:matrix(0.160764,0.002894,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160764,0.002894,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160764,0.002894,-0.004499,0.249960,0,0);}
.m3d_c00283{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);}
.m7a_c00283{transform:matrix(0.162768,0.001953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162768,0.001953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162768,0.001953,-0.003000,0.249982,0,0);}
.mec_c00283{transform:matrix(0.164302,0.002465,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164302,0.002465,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164302,0.002465,-0.003750,0.249972,0,0);}
.m46_c00283{transform:matrix(0.164363,0.001972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164363,0.001972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164363,0.001972,-0.003000,0.249982,0,0);}
.m2d_c00283{transform:matrix(0.166603,0.001999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166603,0.001999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166603,0.001999,-0.003000,0.249982,0,0);}
.m126_c00283{transform:matrix(0.166788,0.003002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.166788,0.003002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.166788,0.003002,-0.004499,0.249960,0,0);}
.m45_c00283{transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);}
.me8_c00283{transform:matrix(0.168001,0.002520,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168001,0.002520,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168001,0.002520,-0.003750,0.249972,0,0);}
.m56_c00283{transform:matrix(0.168723,0.002025,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168723,0.002025,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168723,0.002025,-0.003000,0.249982,0,0);}
.m101_c00283{transform:matrix(0.169223,0.003046,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169223,0.003046,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169223,0.003046,-0.004499,0.249960,0,0);}
.mf6_c00283{transform:matrix(0.169463,0.003050,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169463,0.003050,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169463,0.003050,-0.004499,0.249960,0,0);}
.m103_c00283{transform:matrix(0.169708,0.003055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169708,0.003055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169708,0.003055,-0.004499,0.249960,0,0);}
.m11_c00283{transform:matrix(0.170498,0.002046,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170498,0.002046,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170498,0.002046,-0.003000,0.249982,0,0);}
.m12_c00283{transform:matrix(0.171428,0.002057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171428,0.002057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171428,0.002057,-0.003000,0.249982,0,0);}
.ma1_c00283{transform:matrix(0.172186,0.002583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172186,0.002583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172186,0.002583,-0.003750,0.249972,0,0);}
.m23_c00283{transform:matrix(0.172218,0.002067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172218,0.002067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172218,0.002067,-0.003000,0.249982,0,0);}
.m40_c00283{transform:matrix(0.172928,0.002075,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172928,0.002075,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172928,0.002075,-0.003000,0.249982,0,0);}
.m1f_c00283{transform:matrix(0.173263,0.002079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173263,0.002079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173263,0.002079,-0.003000,0.249982,0,0);}
.m30_c00283{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);}
.mc5_c00283{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);}
.m124_c00283{transform:matrix(0.174517,0.003141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174517,0.003141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174517,0.003141,-0.004499,0.249960,0,0);}
.mb2_c00283{transform:matrix(0.174545,0.002618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174545,0.002618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174545,0.002618,-0.003750,0.249972,0,0);}
.m10_c00283{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);}
.m9b_c00283{transform:matrix(0.175225,0.002628,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175225,0.002628,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175225,0.002628,-0.003750,0.249972,0,0);}
.m125_c00283{transform:matrix(0.175991,0.003168,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175991,0.003168,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175991,0.003168,-0.004499,0.249960,0,0);}
.m55_c00283{transform:matrix(0.176802,0.002122,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176802,0.002122,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176802,0.002122,-0.003000,0.249982,0,0);}
.m9a_c00283{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);}
.mb_c00283{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);}
.mb5_c00283{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);}
.m53_c00283{transform:matrix(0.177772,0.002133,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177772,0.002133,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177772,0.002133,-0.003000,0.249982,0,0);}
.m4e_c00283{transform:matrix(0.177807,0.002134,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177807,0.002134,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177807,0.002134,-0.003000,0.249982,0,0);}
.m96_c00283{transform:matrix(0.178295,0.002674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178295,0.002674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178295,0.002674,-0.003750,0.249972,0,0);}
.md3_c00283{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);}
.m38_c00283{transform:matrix(0.178752,0.002145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178752,0.002145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178752,0.002145,-0.003000,0.249982,0,0);}
.m115_c00283{transform:matrix(0.178856,0.003219,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178856,0.003219,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178856,0.003219,-0.004499,0.249960,0,0);}
.mfd_c00283{transform:matrix(0.179196,0.003226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179196,0.003226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179196,0.003226,-0.004499,0.249960,0,0);}
.m13a_c00283{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);}
.mf4_c00283{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);}
.mfa_c00283{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);}
.m132_c00283{transform:matrix(0.180746,0.003253,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180746,0.003253,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180746,0.003253,-0.004499,0.249960,0,0);}
.m119_c00283{transform:matrix(0.180766,0.003254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180766,0.003254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180766,0.003254,-0.004499,0.249960,0,0);}
.m41_c00283{transform:matrix(0.180932,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180932,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180932,0.002171,-0.003000,0.249982,0,0);}
.me2_c00283{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);}
.mdc_c00283{transform:matrix(0.181085,0.002716,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181085,0.002716,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181085,0.002716,-0.003750,0.249972,0,0);}
.mb3_c00283{transform:matrix(0.181130,0.002717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181130,0.002717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181130,0.002717,-0.003750,0.249972,0,0);}
.m1e_c00283{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);}
.m130_c00283{transform:matrix(0.181901,0.003274,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181901,0.003274,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181901,0.003274,-0.004499,0.249960,0,0);}
.m123_c00283{transform:matrix(0.181936,0.003275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181936,0.003275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181936,0.003275,-0.004499,0.249960,0,0);}
.md0_c00283{transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);}
.med_c00283{transform:matrix(0.182564,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182564,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182564,0.002738,-0.003750,0.249972,0,0);}
.m128_c00283{transform:matrix(0.182870,0.003292,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182870,0.003292,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182870,0.003292,-0.004499,0.249960,0,0);}
.m2f_c00283{transform:matrix(0.183392,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183392,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183392,0.002201,-0.003000,0.249982,0,0);}
.mf_c00283{transform:matrix(0.184022,0.002208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184022,0.002208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184022,0.002208,-0.003000,0.249982,0,0);}
.m97_c00283{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);}
.mf2_c00283{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);}
.m33_c00283{transform:matrix(0.185422,0.002225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185422,0.002225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185422,0.002225,-0.003000,0.249982,0,0);}
.m22_c00283{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);}
.m134_c00283{transform:matrix(0.185730,0.003343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185730,0.003343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185730,0.003343,-0.004499,0.249960,0,0);}
.m102_c00283{transform:matrix(0.185950,0.003347,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185950,0.003347,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185950,0.003347,-0.004499,0.249960,0,0);}
.mdd_c00283{transform:matrix(0.185999,0.002790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185999,0.002790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185999,0.002790,-0.003750,0.249972,0,0);}
.ma2_c00283{transform:matrix(0.186039,0.002791,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186039,0.002791,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186039,0.002791,-0.003750,0.249972,0,0);}
.m89_c00283{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);}
.mb0_c00283{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);}
.m1b_c00283{transform:matrix(0.187362,0.002248,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187362,0.002248,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187362,0.002248,-0.003000,0.249982,0,0);}
.m6d_c00283{transform:matrix(0.187427,0.002249,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187427,0.002249,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187427,0.002249,-0.003000,0.249982,0,0);}
.m76_c00283{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);}
.mc1_c00283{transform:matrix(0.187949,0.002819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187949,0.002819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187949,0.002819,-0.003750,0.249972,0,0);}
.m10c_c00283{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);}
.m1a_c00283{transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);}
.m11a_c00283{transform:matrix(0.188170,0.003387,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188170,0.003387,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188170,0.003387,-0.004499,0.249960,0,0);}
.m27_c00283{transform:matrix(0.188266,0.002259,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188266,0.002259,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188266,0.002259,-0.003000,0.249982,0,0);}
.m3b_c00283{transform:matrix(0.188291,0.002259,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188291,0.002259,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188291,0.002259,-0.003000,0.249982,0,0);}
.mc9_c00283{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);}
.m106_c00283{transform:matrix(0.189224,0.003406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189224,0.003406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189224,0.003406,-0.004499,0.249960,0,0);}
.m51_c00283{transform:matrix(0.189406,0.002273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189406,0.002273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189406,0.002273,-0.003000,0.249982,0,0);}
.m5e_c00283{transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);}
.m83_c00283{transform:matrix(0.189501,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189501,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189501,0.002274,-0.003000,0.249982,0,0);}
.m8a_c00283{transform:matrix(0.189961,0.002280,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189961,0.002280,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189961,0.002280,-0.003000,0.249982,0,0);}
.m77_c00283{transform:matrix(0.190146,0.002282,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190146,0.002282,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190146,0.002282,-0.003000,0.249982,0,0);}
.m3e_c00283{transform:matrix(0.190441,0.002285,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190441,0.002285,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190441,0.002285,-0.003000,0.249982,0,0);}
.m12f_c00283{transform:matrix(0.190509,0.003429,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190509,0.003429,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190509,0.003429,-0.004499,0.249960,0,0);}
.m28_c00283{transform:matrix(0.191026,0.002292,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191026,0.002292,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191026,0.002292,-0.003000,0.249982,0,0);}
.m11c_c00283{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);}
.m34_c00283{transform:matrix(0.191246,0.002295,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191246,0.002295,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191246,0.002295,-0.003000,0.249982,0,0);}
.m11d_c00283{transform:matrix(0.191714,0.003451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191714,0.003451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191714,0.003451,-0.004499,0.249960,0,0);}
.m111_c00283{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);}
.m122_c00283{transform:matrix(0.191879,0.003454,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191879,0.003454,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191879,0.003454,-0.004499,0.249960,0,0);}
.m48_c00283{transform:matrix(0.191966,0.002304,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191966,0.002304,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191966,0.002304,-0.003000,0.249982,0,0);}
.mb1_c00283{transform:matrix(0.192233,0.002884,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192233,0.002884,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192233,0.002884,-0.003750,0.249972,0,0);}
.md6_c00283{transform:matrix(0.192328,0.002885,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192328,0.002885,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192328,0.002885,-0.003750,0.249972,0,0);}
.m32_c00283{transform:matrix(0.192711,0.002313,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192711,0.002313,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192711,0.002313,-0.003000,0.249982,0,0);}
.m112_c00283{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);}
.m133_c00283{transform:matrix(0.192779,0.003470,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192779,0.003470,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192779,0.003470,-0.004499,0.249960,0,0);}
.m8c_c00283{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);}
.m44_c00283{transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);}
.m79_c00283{transform:matrix(0.192936,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192936,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192936,0.002315,-0.003000,0.249982,0,0);}
.m70_c00283{transform:matrix(0.193031,0.002316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193031,0.002316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193031,0.002316,-0.003000,0.249982,0,0);}
.me5_c00283{transform:matrix(0.193168,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193168,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193168,0.002898,-0.003750,0.249972,0,0);}
.m62_c00283{transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);}
.m116_c00283{transform:matrix(0.194538,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194538,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194538,0.003502,-0.004499,0.249960,0,0);}
.m9d_c00283{transform:matrix(0.194668,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194668,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194668,0.002920,-0.003750,0.249972,0,0);}
.m35_c00283{transform:matrix(0.195151,0.002342,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195151,0.002342,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195151,0.002342,-0.003000,0.249982,0,0);}
.m10b_c00283{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);}
.m37_c00283{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);}
.me_c00283{transform:matrix(0.196341,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196341,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196341,0.002356,-0.003000,0.249982,0,0);}
.mc6_c00283{transform:matrix(0.196663,0.002950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196663,0.002950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196663,0.002950,-0.003750,0.249972,0,0);}
.mcd_c00283{transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);}
.mcc_c00283{transform:matrix(0.197183,0.002958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197183,0.002958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197183,0.002958,-0.003750,0.249972,0,0);}
.m109_c00283{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);}
.m26_c00283{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);}
.mcf_c00283{transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197268,0.002959,-0.003750,0.249972,0,0);}
.m99_c00283{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);}
.m4a_c00283{transform:matrix(0.197631,0.002372,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197631,0.002372,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197631,0.002372,-0.003000,0.249982,0,0);}
.mfb_c00283{transform:matrix(0.197978,0.003564,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197978,0.003564,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197978,0.003564,-0.004499,0.249960,0,0);}
.me9_c00283{transform:matrix(0.198103,0.002972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198103,0.002972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198103,0.002972,-0.003750,0.249972,0,0);}
.m11f_c00283{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);}
.m113_c00283{transform:matrix(0.198233,0.003568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198233,0.003568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198233,0.003568,-0.004499,0.249960,0,0);}
.m82_c00283{transform:matrix(0.198351,0.002380,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198351,0.002380,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198351,0.002380,-0.003000,0.249982,0,0);}
.m148_c00283{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);}
.m21_c00283{transform:matrix(0.198581,0.002383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198581,0.002383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198581,0.002383,-0.003000,0.249982,0,0);}
.maf_c00283{transform:matrix(0.198723,0.002981,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198723,0.002981,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198723,0.002981,-0.003750,0.249972,0,0);}
.mde_c00283{transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);}
.mab_c00283{transform:matrix(0.199113,0.002987,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199113,0.002987,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199113,0.002987,-0.003750,0.249972,0,0);}
.m54_c00283{transform:matrix(0.199141,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199141,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199141,0.002390,-0.003000,0.249982,0,0);}
.m13b_c00283{transform:matrix(0.199258,0.003587,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199258,0.003587,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199258,0.003587,-0.004499,0.249960,0,0);}
.m42_c00283{transform:matrix(0.199481,0.002394,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199481,0.002394,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199481,0.002394,-0.003000,0.249982,0,0);}
.m8d_c00283{transform:matrix(0.199783,0.002997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199783,0.002997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199783,0.002997,-0.003750,0.249972,0,0);}
.m60_c00283{transform:matrix(0.199876,0.002399,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199876,0.002399,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199876,0.002399,-0.003000,0.249982,0,0);}
.m14_c00283{transform:matrix(0.200291,0.002403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200291,0.002403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200291,0.002403,-0.003000,0.249982,0,0);}
.m3f_c00283{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);}
.m117_c00283{transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);}
.m5d_c00283{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);}
.m92_c00283{transform:matrix(0.200957,0.003014,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200957,0.003014,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200957,0.003014,-0.003750,0.249972,0,0);}
.m10e_c00283{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);}
.m43_c00283{transform:matrix(0.201635,0.002420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201635,0.002420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201635,0.002420,-0.003000,0.249982,0,0);}
.m4d_c00283{transform:matrix(0.202335,0.002428,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202335,0.002428,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202335,0.002428,-0.003000,0.249982,0,0);}
.m2a_c00283{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);}
.mb7_c00283{transform:matrix(0.202652,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202652,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202652,0.003040,-0.003750,0.249972,0,0);}
.mc7_c00283{transform:matrix(0.203042,0.003046,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203042,0.003046,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203042,0.003046,-0.003750,0.249972,0,0);}
.m12e_c00283{transform:matrix(0.204412,0.003679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204412,0.003679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204412,0.003679,-0.004499,0.249960,0,0);}
.mbb_c00283{transform:matrix(0.204462,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204462,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204462,0.003067,-0.003750,0.249972,0,0);}
.m75_c00283{transform:matrix(0.205185,0.002462,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205185,0.002462,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205185,0.002462,-0.003000,0.249982,0,0);}
.m10d_c00283{transform:matrix(0.205202,0.003694,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205202,0.003694,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205202,0.003694,-0.004499,0.249960,0,0);}
.m5c_c00283{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);}
.m9e_c00283{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);}
.m110_c00283{transform:matrix(0.205947,0.003707,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205947,0.003707,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205947,0.003707,-0.004499,0.249960,0,0);}
.mda_c00283{transform:matrix(0.206212,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206212,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206212,0.003093,-0.003750,0.249972,0,0);}
.mf5_c00283{transform:matrix(0.206277,0.003713,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206277,0.003713,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206277,0.003713,-0.004499,0.249960,0,0);}
.me0_c00283{transform:matrix(0.206437,0.003097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206437,0.003097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206437,0.003097,-0.003750,0.249972,0,0);}
.m151_c00283{transform:matrix(0.206449,0.006613,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206449,0.006613,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206449,0.006613,-0.008004,0.249872,0,0);}
.mf8_c00283{transform:matrix(0.206492,0.003717,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206492,0.003717,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206492,0.003717,-0.004499,0.249960,0,0);}
.ma0_c00283{transform:matrix(0.206712,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206712,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206712,0.003101,-0.003750,0.249972,0,0);}
.maa_c00283{transform:matrix(0.207007,0.003105,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207007,0.003105,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207007,0.003105,-0.003750,0.249972,0,0);}
.mc2_c00283{transform:matrix(0.207037,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207037,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207037,0.003106,-0.003750,0.249972,0,0);}
.m7f_c00283{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);}
.mf9_c00283{transform:matrix(0.208281,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208281,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208281,0.003749,-0.004499,0.249960,0,0);}
.md7_c00283{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);}
.mc3_c00283{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);}
.meb_c00283{transform:matrix(0.209236,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209236,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209236,0.003139,-0.003750,0.249972,0,0);}
.m1d_c00283{transform:matrix(0.209680,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209680,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209680,0.002516,-0.003000,0.249982,0,0);}
.m5b_c00283{transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);}
.m120_c00283{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);}
.m2b_c00283{transform:matrix(0.209790,0.002517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209790,0.002517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209790,0.002517,-0.003000,0.249982,0,0);}
.m118_c00283{transform:matrix(0.210126,0.003782,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210126,0.003782,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210126,0.003782,-0.004499,0.249960,0,0);}
.m7e_c00283{transform:matrix(0.211140,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211140,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211140,0.002534,-0.003000,0.249982,0,0);}
.m57_c00283{transform:matrix(0.211750,0.002541,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211750,0.002541,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211750,0.002541,-0.003000,0.249982,0,0);}
.m36_c00283{transform:matrix(0.211800,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211800,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211800,0.002542,-0.003000,0.249982,0,0);}
.m6c_c00283{transform:matrix(0.212165,0.002546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212165,0.002546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212165,0.002546,-0.003000,0.249982,0,0);}
.mdb_c00283{transform:matrix(0.212221,0.003183,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212221,0.003183,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212221,0.003183,-0.003750,0.249972,0,0);}
.m13_c00283{transform:matrix(0.212545,0.002551,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212545,0.002551,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212545,0.002551,-0.003000,0.249982,0,0);}
.m69_c00283{transform:matrix(0.212560,0.002551,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212560,0.002551,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212560,0.002551,-0.003000,0.249982,0,0);}
.m73_c00283{transform:matrix(0.212590,0.002551,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212590,0.002551,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212590,0.002551,-0.003000,0.249982,0,0);}
.m64_c00283{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);}
.m24_c00283{transform:matrix(0.212905,0.002555,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212905,0.002555,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212905,0.002555,-0.003000,0.249982,0,0);}
.m85_c00283{transform:matrix(0.213425,0.002561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213425,0.002561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213425,0.002561,-0.003000,0.249982,0,0);}
.mc8_c00283{transform:matrix(0.213456,0.003202,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213456,0.003202,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213456,0.003202,-0.003750,0.249972,0,0);}
.mb6_c00283{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);}
.m78_c00283{transform:matrix(0.213750,0.002565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213750,0.002565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213750,0.002565,-0.003000,0.249982,0,0);}
.m6b_c00283{transform:matrix(0.214040,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214040,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214040,0.002568,-0.003000,0.249982,0,0);}
.m13d_c00283{transform:matrix(0.214275,0.003857,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214275,0.003857,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214275,0.003857,-0.004499,0.249960,0,0);}
.m163_c00283{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);}
.mf1_c00283{transform:matrix(0.215556,0.003233,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215556,0.003233,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215556,0.003233,-0.003750,0.249972,0,0);}
.m71_c00283{transform:matrix(0.215624,0.002587,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215624,0.002587,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215624,0.002587,-0.003000,0.249982,0,0);}
.mcb_c00283{transform:matrix(0.215696,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215696,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215696,0.003235,-0.003750,0.249972,0,0);}
.m61_c00283{transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216189,0.002594,-0.003000,0.249982,0,0);}
.md8_c00283{transform:matrix(0.217061,0.003256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217061,0.003256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217061,0.003256,-0.003750,0.249972,0,0);}
.mbe_c00283{transform:matrix(0.217386,0.003261,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217386,0.003261,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217386,0.003261,-0.003750,0.249972,0,0);}
.m84_c00283{transform:matrix(0.218044,0.002617,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218044,0.002617,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218044,0.002617,-0.003000,0.249982,0,0);}
.ma_c00283{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);}
.mff_c00283{transform:matrix(0.219579,0.003952,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219579,0.003952,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219579,0.003952,-0.004499,0.249960,0,0);}
.m12a_c00283{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);}
.m49_c00283{transform:matrix(0.219864,0.002638,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219864,0.002638,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219864,0.002638,-0.003000,0.249982,0,0);}
.m4c_c00283{transform:matrix(0.220119,0.002641,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220119,0.002641,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220119,0.002641,-0.003000,0.249982,0,0);}
.m15_c00283{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);}
.m59_c00283{transform:matrix(0.220534,0.002646,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220534,0.002646,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220534,0.002646,-0.003000,0.249982,0,0);}
.ma9_c00283{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);}
.mc0_c00283{transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221645,0.003325,-0.003750,0.249972,0,0);}
.m58_c00283{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);}
.m7b_c00283{transform:matrix(0.221789,0.002661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221789,0.002661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221789,0.002661,-0.003000,0.249982,0,0);}
.m65_c00283{transform:matrix(0.222299,0.002668,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222299,0.002668,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222299,0.002668,-0.003000,0.249982,0,0);}
.m86_c00283{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);}
.m31_c00283{transform:matrix(0.223789,0.002685,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223789,0.002685,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223789,0.002685,-0.003000,0.249982,0,0);}
.m91_c00283{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);}
.ma7_c00283{transform:matrix(0.225135,0.003377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225135,0.003377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225135,0.003377,-0.003750,0.249972,0,0);}
.m4f_c00283{transform:matrix(0.225519,0.002706,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225519,0.002706,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225519,0.002706,-0.003000,0.249982,0,0);}
.ma5_c00283{transform:matrix(0.225995,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225995,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225995,0.003390,-0.003750,0.249972,0,0);}
.me1_c00283{transform:matrix(0.226200,0.003393,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226200,0.003393,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226200,0.003393,-0.003750,0.249972,0,0);}
.m3a_c00283{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);}
.me3_c00283{transform:matrix(0.227214,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227214,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227214,0.003408,-0.003750,0.249972,0,0);}
.m8e_c00283{transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227359,0.003410,-0.003750,0.249972,0,0);}
.md1_c00283{transform:matrix(0.227959,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227959,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227959,0.003419,-0.003750,0.249972,0,0);}
.m13f_c00283{transform:matrix(0.228193,0.004107,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228193,0.004107,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228193,0.004107,-0.004499,0.249960,0,0);}
.m105_c00283{transform:matrix(0.229993,0.004140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229993,0.004140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229993,0.004140,-0.004499,0.249960,0,0);}
.mee_c00283{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);}
.m47_c00283{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);}
.m39_c00283{transform:matrix(0.230483,0.002766,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230483,0.002766,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230483,0.002766,-0.003000,0.249982,0,0);}
.m131_c00283{transform:matrix(0.230933,0.004157,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230933,0.004157,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230933,0.004157,-0.004499,0.249960,0,0);}
.m2c_c00283{transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);}
.m127_c00283{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);}
.mba_c00283{transform:matrix(0.231379,0.003471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231379,0.003471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231379,0.003471,-0.003750,0.249972,0,0);}
.md2_c00283{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);}
.m8f_c00283{transform:matrix(0.232029,0.003480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232029,0.003480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232029,0.003480,-0.003750,0.249972,0,0);}
.m12d_c00283{transform:matrix(0.232062,0.004177,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232062,0.004177,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232062,0.004177,-0.004499,0.249960,0,0);}
.mb9_c00283{transform:matrix(0.232179,0.003483,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232179,0.003483,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232179,0.003483,-0.003750,0.249972,0,0);}
.mfc_c00283{transform:matrix(0.232192,0.004179,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232192,0.004179,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232192,0.004179,-0.004499,0.249960,0,0);}
.m88_c00283{transform:matrix(0.232958,0.002795,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232958,0.002795,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232958,0.002795,-0.003000,0.249982,0,0);}
.ma6_c00283{transform:matrix(0.233324,0.003500,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233324,0.003500,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233324,0.003500,-0.003750,0.249972,0,0);}
.m8b_c00283{transform:matrix(0.233739,0.003506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233739,0.003506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233739,0.003506,-0.003750,0.249972,0,0);}
.me7_c00283{transform:matrix(0.233949,0.003509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233949,0.003509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233949,0.003509,-0.003750,0.249972,0,0);}
.m3c_c00283{transform:matrix(0.233953,0.002807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233953,0.002807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233953,0.002807,-0.003000,0.249982,0,0);}
.m114_c00283{transform:matrix(0.234027,0.004212,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234027,0.004212,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234027,0.004212,-0.004499,0.249960,0,0);}
.mc4_c00283{transform:matrix(0.234439,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234439,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234439,0.003517,-0.003750,0.249972,0,0);}
.m93_c00283{transform:matrix(0.234584,0.003519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234584,0.003519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234584,0.003519,-0.003750,0.249972,0,0);}
.mfe_c00283{transform:matrix(0.234667,0.004224,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234667,0.004224,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234667,0.004224,-0.004499,0.249960,0,0);}
.me6_c00283{transform:matrix(0.234809,0.003522,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234809,0.003522,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234809,0.003522,-0.003750,0.249972,0,0);}
.mae_c00283{transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);}
.m9f_c00283{transform:matrix(0.235618,0.003534,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235618,0.003534,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235618,0.003534,-0.003750,0.249972,0,0);}
.m16_c00283{transform:matrix(0.236258,0.002835,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236258,0.002835,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236258,0.002835,-0.003000,0.249982,0,0);}
.m25_c00283{transform:matrix(0.237223,0.002847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237223,0.002847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237223,0.002847,-0.003000,0.249982,0,0);}
.m136_c00283{transform:matrix(0.237492,0.004275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237492,0.004275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237492,0.004275,-0.004499,0.249960,0,0);}
.mdf_c00283{transform:matrix(0.237763,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237763,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237763,0.003566,-0.003750,0.249972,0,0);}
.m7c_c00283{transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);}
.mbd_c00283{transform:matrix(0.238778,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238778,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238778,0.003582,-0.003750,0.249972,0,0);}
.m74_c00283{transform:matrix(0.238913,0.002867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238913,0.002867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238913,0.002867,-0.003000,0.249982,0,0);}
.m98_c00283{transform:matrix(0.239128,0.003587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239128,0.003587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239128,0.003587,-0.003750,0.249972,0,0);}
.m1_c00283{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);}
.m87_c00283{transform:matrix(0.240028,0.002880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240028,0.002880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240028,0.002880,-0.003000,0.249982,0,0);}
.mbc_c00283{transform:matrix(0.240393,0.003606,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240393,0.003606,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240393,0.003606,-0.003750,0.249972,0,0);}
.m50_c00283{transform:matrix(0.241008,0.002892,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241008,0.002892,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241008,0.002892,-0.003000,0.249982,0,0);}
.mea_c00283{transform:matrix(0.241193,0.003618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241193,0.003618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241193,0.003618,-0.003750,0.249972,0,0);}
.m9c_c00283{transform:matrix(0.241288,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241288,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241288,0.003619,-0.003750,0.249972,0,0);}
.mce_c00283{transform:matrix(0.241808,0.003627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241808,0.003627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241808,0.003627,-0.003750,0.249972,0,0);}
.m52_c00283{transform:matrix(0.242493,0.002910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242493,0.002910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242493,0.002910,-0.003000,0.249982,0,0);}
.md9_c00283{transform:matrix(0.242538,0.003638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242538,0.003638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242538,0.003638,-0.003750,0.249972,0,0);}
.ma8_c00283{transform:matrix(0.242648,0.003640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242648,0.003640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242648,0.003640,-0.003750,0.249972,0,0);}
.m10a_c00283{transform:matrix(0.244530,0.004402,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244530,0.004402,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244530,0.004402,-0.004499,0.249960,0,0);}
.m104_c00283{transform:matrix(0.244705,0.004405,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244705,0.004405,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244705,0.004405,-0.004499,0.249960,0,0);}
.m14a_c00283{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);}
.ma4_c00283{transform:matrix(0.245797,0.003687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245797,0.003687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245797,0.003687,-0.003750,0.249972,0,0);}
.m144_c00283{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);}
.m12b_c00283{transform:matrix(0.250054,0.004501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250054,0.004501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250054,0.004501,-0.004499,0.249960,0,0);}
.m3_c00283{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.251297,0.003769,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251297,0.003769,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251297,0.003769,-0.003750,0.249972,0,0);}
.m63_c00283{transform:matrix(0.251667,0.003020,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251667,0.003020,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251667,0.003020,-0.003000,0.249982,0,0);}
.m1c_c00283{transform:matrix(0.252262,0.003027,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252262,0.003027,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252262,0.003027,-0.003000,0.249982,0,0);}
.m68_c00283{transform:matrix(0.254417,0.003053,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254417,0.003053,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254417,0.003053,-0.003000,0.249982,0,0);}
.m5_c00283{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);}
.m81_c00283{transform:matrix(0.256562,0.003079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256562,0.003079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256562,0.003079,-0.003000,0.249982,0,0);}
.m13c_c00283{transform:matrix(0.256758,0.004622,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256758,0.004622,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256758,0.004622,-0.004499,0.249960,0,0);}
.md_c00283{transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);}
.m15d_c00283{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);}
.m72_c00283{transform:matrix(0.267316,0.003208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267316,0.003208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267316,0.003208,-0.003000,0.249982,0,0);}
.mf0_c00283{transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);}
.m4_c00283{transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269450,0.000000,0.000000,0.250000,0,0);}
.m129_c00283{transform:matrix(0.269621,0.004853,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269621,0.004853,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269621,0.004853,-0.004499,0.249960,0,0);}
.m20_c00283{transform:matrix(0.270171,0.003242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270171,0.003242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270171,0.003242,-0.003000,0.249982,0,0);}
.mbf_c00283{transform:matrix(0.270585,0.004059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270585,0.004059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270585,0.004059,-0.003750,0.249972,0,0);}
.mef_c00283{transform:matrix(0.288608,0.004329,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288608,0.004329,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288608,0.004329,-0.003750,0.249972,0,0);}
.m14f_c00283{transform:matrix(0.292080,0.009356,-0.008004,0.249872,0,0);-ms-transform:matrix(0.292080,0.009356,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.292080,0.009356,-0.008004,0.249872,0,0);}
.m137_c00283{transform:matrix(0.294037,0.005293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.294037,0.005293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.294037,0.005293,-0.004499,0.249960,0,0);}
.m6a_c00283{transform:matrix(0.294129,0.003530,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294129,0.003530,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294129,0.003530,-0.003000,0.249982,0,0);}
.m150_c00283{transform:matrix(0.298032,0.009547,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298032,0.009547,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298032,0.009547,-0.008004,0.249872,0,0);}
.m14d_c00283{transform:matrix(0.299237,0.009585,-0.008004,0.249872,0,0);-ms-transform:matrix(0.299237,0.009585,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.299237,0.009585,-0.008004,0.249872,0,0);}
.m66_c00283{transform:matrix(0.300198,0.003602,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300198,0.003602,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300198,0.003602,-0.003000,0.249982,0,0);}
.m18_c00283{transform:matrix(0.306303,0.003676,-0.003000,0.249982,0,0);-ms-transform:matrix(0.306303,0.003676,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.306303,0.003676,-0.003000,0.249982,0,0);}
.m107_c00283{transform:matrix(0.308220,0.005548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.308220,0.005548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.308220,0.005548,-0.004499,0.249960,0,0);}
.m11e_c00283{transform:matrix(0.308400,0.005551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.308400,0.005551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.308400,0.005551,-0.004499,0.249960,0,0);}
.m100_c00283{transform:matrix(0.322468,0.005804,-0.004499,0.249960,0,0);-ms-transform:matrix(0.322468,0.005804,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.322468,0.005804,-0.004499,0.249960,0,0);}
.m139_c00283{transform:matrix(0.327342,0.005892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.327342,0.005892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.327342,0.005892,-0.004499,0.249960,0,0);}
.m157_c00283{transform:matrix(0.331930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331930,0.000000,0.000000,0.250000,0,0);}
.m164_c00283{transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331995,0.000000,0.000000,0.250000,0,0);}
.m165_c00283{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);}
.m143_c00283{transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349170,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352900,0.000000,0.000000,0.250000,0,0);}
.m108_c00283{transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);-ms-transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);}
.md5_c00283{transform:matrix(0.359535,0.005393,-0.003750,0.249972,0,0);-ms-transform:matrix(0.359535,0.005393,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.359535,0.005393,-0.003750,0.249972,0,0);}
.m14e_c00283{transform:matrix(0.360690,0.011554,-0.008004,0.249872,0,0);-ms-transform:matrix(0.360690,0.011554,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.360690,0.011554,-0.008004,0.249872,0,0);}
.m13e_c00283{transform:matrix(0.367795,0.006620,-0.004499,0.249960,0,0);-ms-transform:matrix(0.367795,0.006620,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.367795,0.006620,-0.004499,0.249960,0,0);}
.m140_c00283{transform:matrix(0.369270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369270,0.000000,0.000000,0.250000,0,0);}
.md4_c00283{transform:matrix(0.374543,0.005618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.374543,0.005618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.374543,0.005618,-0.003750,0.249972,0,0);}
.m159_c00283{transform:matrix(0.379845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379845,0.000000,0.000000,0.250000,0,0);}
.m167_c00283{transform:matrix(0.396435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396435,0.000000,0.000000,0.250000,0,0);}
.m156_c00283{transform:matrix(0.398885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398885,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.412915,0.004955,-0.003000,0.249982,0,0);-ms-transform:matrix(0.412915,0.004955,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.412915,0.004955,-0.003000,0.249982,0,0);}
.m95_c00283{transform:matrix(0.420818,0.006312,-0.003750,0.249972,0,0);-ms-transform:matrix(0.420818,0.006312,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.420818,0.006312,-0.003750,0.249972,0,0);}
.m152_c00283{transform:matrix(0.426951,0.013676,-0.008004,0.249872,0,0);-ms-transform:matrix(0.426951,0.013676,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.426951,0.013676,-0.008004,0.249872,0,0);}
.m15f_c00283{transform:matrix(0.428800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428800,0.000000,0.000000,0.250000,0,0);}
.m141_c00283{transform:matrix(0.438065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438065,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443480,0.000000,0.000000,0.250000,0,0);}
.m16a_c00283{transform:matrix(0.450995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450995,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.455105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455105,0.000000,0.000000,0.250000,0,0);}
.m16b_c00283{transform:matrix(0.458970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458970,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.490820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490820,0.000000,0.000000,0.250000,0,0);}
.m14c_c00283{transform:matrix(0.517290,0.016570,-0.008004,0.249872,0,0);-ms-transform:matrix(0.517290,0.016570,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.517290,0.016570,-0.008004,0.249872,0,0);}
.m14b_c00283{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);}
.m15a_c00283{transform:matrix(0.594585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594585,0.000000,0.000000,0.250000,0,0);}
.m142_c00283{transform:matrix(0.595880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595880,0.000000,0.000000,0.250000,0,0);}
.m160_c00283{transform:matrix(0.603710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603710,0.000000,0.000000,0.250000,0,0);}
.m169_c00283{transform:matrix(0.632800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632800,0.000000,0.000000,0.250000,0,0);}
.m15b_c00283{transform:matrix(0.666905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666905,0.000000,0.000000,0.250000,0,0);}
.mca_c00283{transform:matrix(0.685133,0.010277,-0.003750,0.249972,0,0);-ms-transform:matrix(0.685133,0.010277,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.685133,0.010277,-0.003750,0.249972,0,0);}
.m161_c00283{transform:matrix(0.769230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769230,0.000000,0.000000,0.250000,0,0);}
.m162_c00283{transform:matrix(0.790055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790055,0.000000,0.000000,0.250000,0,0);}
.m166_c00283{transform:matrix(0.900995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900995,0.000000,0.000000,0.250000,0,0);}
.m168_c00283{transform:matrix(1.006250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.006250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.006250,0.000000,0.000000,0.250000,0,0);}
.m15e_c00283{transform:matrix(1.138110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.138110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.138110,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(1.365760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365760,0.000000,0.000000,0.250000,0,0);}
.m149_c00283{transform:matrix(1.399500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.399500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.399500,0.000000,0.000000,0.250000,0,0);}
.m15c_c00283{transform:matrix(1.936525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.936525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.936525,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;}
.fs2_c00283{font-size:18.900000px;}
.fs1a_c00283{font-size:22.050000px;}
.fs1c_c00283{font-size:23.100000px;}
.fs18_c00283{font-size:32.550000px;}
.fs1e_c00283{font-size:43.050000px;}
.fs1d_c00283{font-size:44.078496px;}
.fs17_c00283{font-size:44.100000px;}
.fs1f_c00283{font-size:46.200000px;}
.fs19_c00283{font-size:58.800000px;}
.fse_c00283{font-size:59.856733px;}
.fs1b_c00283{font-size:61.950000px;}
.fs8_c00283{font-size:61.954460px;}
.fs13_c00283{font-size:61.960035px;}
.fsf_c00283{font-size:63.007087px;}
.fs10_c00283{font-size:64.057205px;}
.fs20_c00283{font-size:65.100000px;}
.fs5_c00283{font-size:65.104687px;}
.fs14_c00283{font-size:66.160715px;}
.fsc_c00283{font-size:67.207560px;}
.fs9_c00283{font-size:68.254914px;}
.fs7_c00283{font-size:69.304989px;}
.fsa_c00283{font-size:70.357914px;}
.fs12_c00283{font-size:70.361396px;}
.fs4_c00283{font-size:71.405141px;}
.fs11_c00283{font-size:71.408032px;}
.fs15_c00283{font-size:71.411566px;}
.fs6_c00283{font-size:72.455216px;}
.fsb_c00283{font-size:72.458150px;}
.fs0_c00283{font-size:73.500000px;}
.fsd_c00283{font-size:73.508268px;}
.fs16_c00283{font-size:73.511906px;}
.fs1_c00283{font-size:109.200000px;}
.fs3_c00283{font-size:120.750000px;}
.y0_c00283{bottom:0.000000px;}
.y15b_c00283{bottom:106.044000px;}
.y15a_c00283{bottom:107.119500px;}
.y159_c00283{bottom:107.511000px;}
.y158_c00283{bottom:107.835000px;}
.y157_c00283{bottom:108.561000px;}
.y156_c00283{bottom:108.756000px;}
.y155_c00283{bottom:109.621500px;}
.y148_c00283{bottom:111.241500px;}
.y149_c00283{bottom:111.489000px;}
.y14a_c00283{bottom:112.054500px;}
.y14b_c00283{bottom:112.146000px;}
.y14c_c00283{bottom:112.878000px;}
.y14d_c00283{bottom:113.214000px;}
.y14e_c00283{bottom:113.767500px;}
.y14f_c00283{bottom:114.256500px;}
.y150_c00283{bottom:114.679500px;}
.y151_c00283{bottom:115.189500px;}
.y152_c00283{bottom:115.738500px;}
.y153_c00283{bottom:115.921500px;}
.y154_c00283{bottom:116.127000px;}
.y147_c00283{bottom:150.753000px;}
.y146_c00283{bottom:167.754888px;}
.y145_c00283{bottom:169.061256px;}
.y144_c00283{bottom:169.645224px;}
.y143_c00283{bottom:170.448312px;}
.y142_c00283{bottom:171.056856px;}
.y141_c00283{bottom:171.790872px;}
.y140_c00283{bottom:173.015448px;}
.y13f_c00283{bottom:174.183000px;}
.y13e_c00283{bottom:217.893000px;}
.y13d_c00283{bottom:237.496500px;}
.y138_c00283{bottom:260.832288px;}
.y137_c00283{bottom:261.392265px;}
.y136_c00283{bottom:262.422591px;}
.y135_c00283{bottom:263.420130px;}
.y134_c00283{bottom:264.028026px;}
.y133_c00283{bottom:264.861735px;}
.y132_c00283{bottom:265.349658px;}
.y131_c00283{bottom:265.456254px;}
.y130_c00283{bottom:265.729203px;}
.y12e_c00283{bottom:266.000667px;}
.y12f_c00283{bottom:266.038125px;}
.y12d_c00283{bottom:267.003672px;}
.y12c_c00283{bottom:267.533967px;}
.y12b_c00283{bottom:267.828297px;}
.y12a_c00283{bottom:284.452569px;}
.y129_c00283{bottom:285.036030px;}
.y128_c00283{bottom:285.976683px;}
.y127_c00283{bottom:286.743168px;}
.y126_c00283{bottom:287.270382px;}
.y125_c00283{bottom:287.688276px;}
.y124_c00283{bottom:288.985377px;}
.y123_c00283{bottom:290.108649px;}
.y122_c00283{bottom:290.744427px;}
.y121_c00283{bottom:291.490161px;}
.y120_c00283{bottom:291.879297px;}
.y11f_c00283{bottom:292.146138px;}
.y11e_c00283{bottom:292.943514px;}
.y11d_c00283{bottom:307.573443px;}
.y11c_c00283{bottom:308.016990px;}
.y11b_c00283{bottom:308.853858px;}
.y11a_c00283{bottom:309.314349px;}
.y119_c00283{bottom:310.572783px;}
.y118_c00283{bottom:311.232351px;}
.y117_c00283{bottom:312.238566px;}
.y116_c00283{bottom:312.898350px;}
.y115_c00283{bottom:314.358885px;}
.y114_c00283{bottom:314.790618px;}
.y113_c00283{bottom:315.604074px;}
.y112_c00283{bottom:316.708350px;}
.y111_c00283{bottom:330.922512px;}
.y110_c00283{bottom:332.298882px;}
.y10f_c00283{bottom:332.770584px;}
.y10e_c00283{bottom:333.478818px;}
.y10d_c00283{bottom:334.422855px;}
.y10c_c00283{bottom:334.882419px;}
.y10b_c00283{bottom:335.319504px;}
.y10a_c00283{bottom:336.298872px;}
.y109_c00283{bottom:337.191039px;}
.y108_c00283{bottom:337.444623px;}
.y107_c00283{bottom:338.905278px;}
.y106_c00283{bottom:339.658941px;}
.y105_c00283{bottom:353.881323px;}
.y104_c00283{bottom:354.280053px;}
.y103_c00283{bottom:354.606054px;}
.y102_c00283{bottom:355.546797px;}
.y101_c00283{bottom:355.768668px;}
.y100_c00283{bottom:356.655435px;}
.yff_c00283{bottom:357.291345px;}
.yfe_c00283{bottom:358.059981px;}
.yfd_c00283{bottom:359.008797px;}
.yfc_c00283{bottom:359.809362px;}
.yfb_c00283{bottom:360.274056px;}
.yfa_c00283{bottom:360.624318px;}
.yf9_c00283{bottom:360.897762px;}
.yf8_c00283{bottom:361.794249px;}
.yf7_c00283{bottom:362.609328px;}
.yf6_c00283{bottom:377.877765px;}
.yf5_c00283{bottom:378.431373px;}
.yf4_c00283{bottom:379.179948px;}
.yf3_c00283{bottom:379.762797px;}
.yf2_c00283{bottom:380.525790px;}
.yf1_c00283{bottom:381.658413px;}
.yf0_c00283{bottom:382.391112px;}
.yef_c00283{bottom:382.872360px;}
.yee_c00283{bottom:384.308625px;}
.yed_c00283{bottom:385.149000px;}
.yec_c00283{bottom:399.732788px;}
.yeb_c00283{bottom:400.397640px;}
.yea_c00283{bottom:400.722045px;}
.ye9_c00283{bottom:400.958385px;}
.ye8_c00283{bottom:401.318093px;}
.ye7_c00283{bottom:401.530605px;}
.ye6_c00283{bottom:401.910270px;}
.ye5_c00283{bottom:402.341550px;}
.ye4_c00283{bottom:402.701055px;}
.ye3_c00283{bottom:402.885585px;}
.ye2_c00283{bottom:403.033395px;}
.ye1_c00283{bottom:403.533563px;}
.ye0_c00283{bottom:403.920390px;}
.ydf_c00283{bottom:404.290028px;}
.yde_c00283{bottom:404.665913px;}
.ydd_c00283{bottom:404.863013px;}
.ydc_c00283{bottom:405.520208px;}
.ydb_c00283{bottom:424.164930px;}
.yda_c00283{bottom:424.379625px;}
.yd9_c00283{bottom:424.918208px;}
.yd8_c00283{bottom:426.786743px;}
.yd7_c00283{bottom:427.526543px;}
.yd6_c00283{bottom:428.364982px;}
.yd5_c00283{bottom:428.708400px;}
.yd4_c00283{bottom:429.397373px;}
.yd3_c00283{bottom:430.171935px;}
.yd2_c00283{bottom:430.634423px;}
.yd1_c00283{bottom:447.241793px;}
.yd0_c00283{bottom:447.684660px;}
.ycf_c00283{bottom:448.143563px;}
.yce_c00283{bottom:448.498455px;}
.ycd_c00283{bottom:449.370060px;}
.ycc_c00283{bottom:449.841915px;}
.ycb_c00283{bottom:450.969398px;}
.yca_c00283{bottom:451.555275px;}
.yc9_c00283{bottom:451.832633px;}
.yc8_c00283{bottom:452.693708px;}
.yc7_c00283{bottom:453.856193px;}
.yc6_c00283{bottom:469.609140px;}
.yc5_c00283{bottom:470.373218px;}
.yc4_c00283{bottom:471.004838px;}
.yc3_c00283{bottom:472.180725px;}
.yc2_c00283{bottom:472.456290px;}
.yc1_c00283{bottom:473.008635px;}
.yc0_c00283{bottom:473.889600px;}
.ybf_c00283{bottom:474.589328px;}
.ybe_c00283{bottom:474.831330px;}
.ybd_c00283{bottom:474.888480px;}
.ybc_c00283{bottom:475.360973px;}
.ybb_c00283{bottom:476.000018px;}
.yba_c00283{bottom:492.272775px;}
.yb9_c00283{bottom:493.005735px;}
.yb8_c00283{bottom:493.670520px;}
.yb7_c00283{bottom:495.497160px;}
.yb6_c00283{bottom:496.335668px;}
.yb5_c00283{bottom:497.292390px;}
.yb4_c00283{bottom:498.247718px;}
.yb3_c00283{bottom:498.952823px;}
.yb2_c00283{bottom:515.950935px;}
.yb1_c00283{bottom:516.220448px;}
.yb0_c00283{bottom:516.556658px;}
.yaf_c00283{bottom:517.019880px;}
.yae_c00283{bottom:518.211563px;}
.yad_c00283{bottom:518.666775px;}
.yac_c00283{bottom:519.463418px;}
.yab_c00283{bottom:519.830790px;}
.yaa_c00283{bottom:520.545263px;}
.ya9_c00283{bottom:520.840373px;}
.ya8_c00283{bottom:521.634195px;}
.ya7_c00283{bottom:538.273688px;}
.ya6_c00283{bottom:538.681530px;}
.ya5_c00283{bottom:538.901228px;}
.ya4_c00283{bottom:539.969258px;}
.ya3_c00283{bottom:540.320250px;}
.ya2_c00283{bottom:540.927765px;}
.ya1_c00283{bottom:541.668705px;}
.ya0_c00283{bottom:541.991783px;}
.y9f_c00283{bottom:542.932530px;}
.y9e_c00283{bottom:543.331868px;}
.y9d_c00283{bottom:543.904380px;}
.y9c_c00283{bottom:544.041458px;}
.y9b_c00283{bottom:544.587638px;}
.y9a_c00283{bottom:561.136215px;}
.y99_c00283{bottom:562.383698px;}
.y98_c00283{bottom:562.769865px;}
.y97_c00283{bottom:563.254058px;}
.y96_c00283{bottom:563.665350px;}
.y95_c00283{bottom:564.547103px;}
.y94_c00283{bottom:564.973695px;}
.y93_c00283{bottom:565.319917px;}
.y92_c00283{bottom:566.297078px;}
.y91_c00283{bottom:566.579963px;}
.y90_c00283{bottom:567.044213px;}
.y8f_c00283{bottom:567.539955px;}
.y8e_c00283{bottom:584.183258px;}
.y8d_c00283{bottom:584.227785px;}
.y8c_c00283{bottom:585.220013px;}
.y8b_c00283{bottom:585.545048px;}
.y8a_c00283{bottom:586.174800px;}
.y89_c00283{bottom:586.670250px;}
.y88_c00283{bottom:587.255318px;}
.y87_c00283{bottom:588.263768px;}
.y86_c00283{bottom:589.260203px;}
.y85_c00283{bottom:589.911623px;}
.y84_c00283{bottom:590.763000px;}
.y82_c00283{bottom:611.931648px;}
.y81_c00283{bottom:611.931972px;}
.y83_c00283{bottom:611.932266px;}
.y80_c00283{bottom:630.261402px;}
.y7f_c00283{bottom:630.703566px;}
.y7e_c00283{bottom:631.288512px;}
.y7d_c00283{bottom:631.946724px;}
.y7c_c00283{bottom:632.407002px;}
.y7b_c00283{bottom:632.823612px;}
.y7a_c00283{bottom:633.135900px;}
.y79_c00283{bottom:633.352038px;}
.y78_c00283{bottom:634.337898px;}
.y77_c00283{bottom:635.468556px;}
.y76_c00283{bottom:635.836464px;}
.y75_c00283{bottom:652.744032px;}
.y74_c00283{bottom:652.999398px;}
.y73_c00283{bottom:653.067306px;}
.y72_c00283{bottom:653.398458px;}
.y71_c00283{bottom:654.176082px;}
.y70_c00283{bottom:654.563754px;}
.y6f_c00283{bottom:655.092474px;}
.y6e_c00283{bottom:655.614750px;}
.y6d_c00283{bottom:656.378916px;}
.y6c_c00283{bottom:656.645922px;}
.y6b_c00283{bottom:656.918628px;}
.y6a_c00283{bottom:657.305418px;}
.y69_c00283{bottom:657.718188px;}
.y67_c00283{bottom:674.836200px;}
.y68_c00283{bottom:674.846556px;}
.y66_c00283{bottom:675.264594px;}
.y65_c00283{bottom:675.846504px;}
.y64_c00283{bottom:676.457880px;}
.y63_c00283{bottom:676.827918px;}
.y62_c00283{bottom:677.172780px;}
.y61_c00283{bottom:677.806632px;}
.y60_c00283{bottom:678.423882px;}
.y5f_c00283{bottom:678.641196px;}
.y5e_c00283{bottom:678.665094px;}
.y5d_c00283{bottom:679.557936px;}
.y5c_c00283{bottom:679.708068px;}
.y5b_c00283{bottom:680.525340px;}
.y5a_c00283{bottom:681.136986px;}
.y59_c00283{bottom:681.481470px;}
.y58_c00283{bottom:699.167838px;}
.y57_c00283{bottom:699.524166px;}
.y56_c00283{bottom:700.104234px;}
.y55_c00283{bottom:700.525794px;}
.y54_c00283{bottom:701.206266px;}
.y53_c00283{bottom:701.510448px;}
.y52_c00283{bottom:701.719626px;}
.y51_c00283{bottom:702.295194px;}
.y50_c00283{bottom:702.641118px;}
.y4f_c00283{bottom:703.455582px;}
.y4e_c00283{bottom:703.658208px;}
.y4d_c00283{bottom:704.150652px;}
.y13b_c00283{bottom:704.970000px;}
.y13a_c00283{bottom:706.320000px;}
.y4c_c00283{bottom:721.953288px;}
.y4b_c00283{bottom:722.321922px;}
.y4a_c00283{bottom:723.043440px;}
.y49_c00283{bottom:723.209754px;}
.y48_c00283{bottom:723.958716px;}
.y47_c00283{bottom:724.312866px;}
.y46_c00283{bottom:724.719282px;}
.y45_c00283{bottom:725.066304px;}
.y44_c00283{bottom:725.693970px;}
.y43_c00283{bottom:725.969664px;}
.y42_c00283{bottom:726.379248px;}
.y41_c00283{bottom:726.850944px;}
.y13c_c00283{bottom:738.180000px;}
.y40_c00283{bottom:744.225318px;}
.y3f_c00283{bottom:745.130292px;}
.y3e_c00283{bottom:745.611636px;}
.y3d_c00283{bottom:746.043372px;}
.y3c_c00283{bottom:746.893380px;}
.y3b_c00283{bottom:747.538392px;}
.y3a_c00283{bottom:748.422210px;}
.y39_c00283{bottom:748.898904px;}
.y38_c00283{bottom:749.598456px;}
.y37_c00283{bottom:749.784996px;}
.y36_c00283{bottom:767.289672px;}
.y35_c00283{bottom:767.395224px;}
.y34_c00283{bottom:767.739492px;}
.y33_c00283{bottom:768.245166px;}
.y32_c00283{bottom:768.494160px;}
.y31_c00283{bottom:769.133124px;}
.y30_c00283{bottom:769.586148px;}
.y2f_c00283{bottom:769.809726px;}
.y2e_c00283{bottom:770.257008px;}
.y2d_c00283{bottom:770.619276px;}
.y2c_c00283{bottom:771.274404px;}
.y2b_c00283{bottom:771.974316px;}
.y2a_c00283{bottom:772.466256px;}
.y29_c00283{bottom:789.469200px;}
.y28_c00283{bottom:790.146876px;}
.y27_c00283{bottom:790.630776px;}
.y26_c00283{bottom:791.080806px;}
.y25_c00283{bottom:791.488200px;}
.y24_c00283{bottom:791.856108px;}
.y23_c00283{bottom:792.604056px;}
.y22_c00283{bottom:792.943674px;}
.y21_c00283{bottom:793.550946px;}
.y20_c00283{bottom:793.964820px;}
.y1f_c00283{bottom:794.315748px;}
.y1e_c00283{bottom:795.418824px;}
.y139_c00283{bottom:805.680000px;}
.y1d_c00283{bottom:810.916062px;}
.y1c_c00283{bottom:811.374000px;}
.y1b_c00283{bottom:812.031900px;}
.y1a_c00283{bottom:812.326020px;}
.y19_c00283{bottom:812.780214px;}
.y18_c00283{bottom:813.239754px;}
.y17_c00283{bottom:813.684462px;}
.y16_c00283{bottom:814.046586px;}
.y15_c00283{bottom:814.899498px;}
.y14_c00283{bottom:815.187678px;}
.y13_c00283{bottom:815.897418px;}
.y12_c00283{bottom:816.399510px;}
.y11_c00283{bottom:816.921384px;}
.y10_c00283{bottom:817.559970px;}
.yf_c00283{bottom:834.201078px;}
.ye_c00283{bottom:834.517752px;}
.yd_c00283{bottom:834.997398px;}
.yc_c00283{bottom:835.953198px;}
.yb_c00283{bottom:836.319174px;}
.ya_c00283{bottom:837.320658px;}
.y9_c00283{bottom:838.043196px;}
.y8_c00283{bottom:838.603140px;}
.y7_c00283{bottom:838.905054px;}
.y6_c00283{bottom:840.129486px;}
.y5_c00283{bottom:840.781500px;}
.y4_c00283{bottom:879.525000px;}
.y3_c00283{bottom:913.980000px;}
.y2_c00283{bottom:923.769000px;}
.y1_c00283{bottom:939.181500px;}
.h4_c00283{height:18.900000px;}
.h1c_c00283{height:22.050000px;}
.h1e_c00283{height:23.100000px;}
.h1a_c00283{height:32.550000px;}
.h20_c00283{height:43.050000px;}
.h1f_c00283{height:44.078496px;}
.h19_c00283{height:44.100000px;}
.h21_c00283{height:46.200000px;}
.h1b_c00283{height:58.800000px;}
.h10_c00283{height:59.856733px;}
.h1d_c00283{height:61.950000px;}
.ha_c00283{height:61.954460px;}
.h15_c00283{height:61.960035px;}
.h11_c00283{height:63.007087px;}
.h12_c00283{height:64.057205px;}
.h22_c00283{height:65.100000px;}
.h7_c00283{height:65.104687px;}
.h16_c00283{height:66.160715px;}
.he_c00283{height:67.207560px;}
.hb_c00283{height:68.254914px;}
.h9_c00283{height:69.304989px;}
.hc_c00283{height:70.357914px;}
.h14_c00283{height:70.361396px;}
.h6_c00283{height:71.405141px;}
.h13_c00283{height:71.408032px;}
.h17_c00283{height:71.411566px;}
.h8_c00283{height:72.455216px;}
.hd_c00283{height:72.458150px;}
.h2_c00283{height:73.500000px;}
.hf_c00283{height:73.508268px;}
.h18_c00283{height:73.511906px;}
.h3_c00283{height:109.200000px;}
.h5_c00283{height:120.750000px;}
.h0_c00283{height:1008.450000px;}
.h1_c00283{height:1008.750000px;}
.w0_c00283{width:696.000000px;}
.x0_c00283{left:0.000000px;}
.xc7_c00283{left:85.132500px;}
.xc1_c00283{left:97.153500px;}
.x1_c00283{left:100.170000px;}
.xb_c00283{left:101.790000px;}
.xb6_c00283{left:103.410000px;}
.xa_c00283{left:105.300000px;}
.xba_c00283{left:112.860000px;}
.xb8_c00283{left:114.750000px;}
.xb7_c00283{left:115.830000px;}
.xb9_c00283{left:122.310000px;}
.xc2_c00283{left:124.717500px;}
.x23_c00283{left:148.609110px;}
.xc_c00283{left:150.660000px;}
.xa6_c00283{left:151.765590px;}
.x9e_c00283{left:152.859000px;}
.x3f_c00283{left:154.027194px;}
.xe_c00283{left:155.133000px;}
.x39_c00283{left:169.926414px;}
.x65_c00283{left:172.630500px;}
.x50_c00283{left:179.103816px;}
.x5e_c00283{left:183.634026px;}
.xae_c00283{left:188.105907px;}
.x6e_c00283{left:189.431078px;}
.x56_c00283{left:191.533668px;}
.x2f_c00283{left:196.418700px;}
.xc3_c00283{left:197.800500px;}
.x17_c00283{left:198.852576px;}
.x84_c00283{left:200.434838px;}
.x77_c00283{left:202.042395px;}
.x96_c00283{left:203.682113px;}
.x2_c00283{left:206.010000px;}
.xab_c00283{left:207.482289px;}
.xbb_c00283{left:212.146308px;}
.x48_c00283{left:213.618570px;}
.x7d_c00283{left:214.999927px;}
.x97_c00283{left:220.122855px;}
.x3_c00283{left:222.210000px;}
.x3a_c00283{left:223.721766px;}
.x57_c00283{left:226.641582px;}
.x66_c00283{left:229.389000px;}
.xbc_c00283{left:231.144291px;}
.x24_c00283{left:233.406084px;}
.x92_c00283{left:236.133345px;}
.x7e_c00283{left:237.674602px;}
.x18_c00283{left:240.693576px;}
.x6f_c00283{left:242.840888px;}
.xac_c00283{left:248.172831px;}
.x58_c00283{left:251.492388px;}
.x30_c00283{left:254.744700px;}
.xd_c00283{left:256.500000px;}
.xaf_c00283{left:258.142869px;}
.x40_c00283{left:259.317972px;}
.x25_c00283{left:260.399760px;}
.x8_c00283{left:261.630000px;}
.x85_c00283{left:264.123338px;}
.x4_c00283{left:265.680000px;}
.xa7_c00283{left:268.364511px;}
.x5f_c00283{left:270.604482px;}
.x67_c00283{left:272.817000px;}
.xbd_c00283{left:274.446445px;}
.x59_c00283{left:275.743176px;}
.x8b_c00283{left:279.895643px;}
.x51_c00283{left:281.177868px;}
.xf_c00283{left:282.328500px;}
.x5_c00283{left:283.770000px;}
.xb0_c00283{left:289.962735px;}
.x26_c00283{left:292.263882px;}
.x8c_c00283{left:297.185873px;}
.x19_c00283{left:299.838576px;}
.x88_c00283{left:303.867315px;}
.x93_c00283{left:304.959345px;}
.x9f_c00283{left:306.075000px;}
.x31_c00283{left:309.338700px;}
.x70_c00283{left:312.585923px;}
.x98_c00283{left:314.417085px;}
.x41_c00283{left:316.374156px;}
.x7f_c00283{left:320.900100px;}
.x1a_c00283{left:323.853576px;}
.x6_c00283{left:325.350000px;}
.x86_c00283{left:327.904838px;}
.x10_c00283{left:328.990500px;}
.x8d_c00283{left:333.843833px;}
.x71_c00283{left:337.367805px;}
.x27_c00283{left:338.994324px;}
.xa2_c00283{left:342.183450px;}
.x7_c00283{left:345.870000px;}
.x42_c00283{left:347.918034px;}
.x52_c00283{left:355.715586px;}
.x49_c00283{left:358.281570px;}
.x78_c00283{left:361.689780px;}
.x60_c00283{left:363.019866px;}
.x28_c00283{left:365.170518px;}
.x89_c00283{left:366.799260px;}
.x72_c00283{left:367.807755px;}
.x53_c00283{left:372.941172px;}
.x4a_c00283{left:375.713070px;}
.x32_c00283{left:376.801200px;}
.x3b_c00283{left:378.096930px;}
.xa8_c00283{left:380.258013px;}
.x80_c00283{left:382.211445px;}
.x87_c00283{left:383.805338px;}
.x43_c00283{left:384.911484px;}
.x9_c00283{left:386.100000px;}
.x11_c00283{left:389.202000px;}
.x5a_c00283{left:392.698080px;}
.x1b_c00283{left:394.929576px;}
.x4b_c00283{left:401.061570px;}
.xa9_c00283{left:403.290108px;}
.x8e_c00283{left:404.308275px;}
.x68_c00283{left:406.476000px;}
.x94_c00283{left:410.175345px;}
.x79_c00283{left:414.586568px;}
.x44_c00283{left:417.049362px;}
.x61_c00283{left:419.135700px;}
.x29_c00283{left:422.748834px;}
.x1c_c00283{left:425.106576px;}
.xaa_c00283{left:427.487676px;}
.x73_c00283{left:430.792200px;}
.xb1_c00283{left:431.889132px;}
.x33_c00283{left:433.184700px;}
.xc8_c00283{left:436.971000px;}
.x5b_c00283{left:440.758656px;}
.x3c_c00283{left:443.430138px;}
.x69_c00283{left:445.480500px;}
.x99_c00283{left:449.742683px;}
.x2a_c00283{left:451.032492px;}
.xa0_c00283{left:452.092500px;}
.x62_c00283{left:454.491768px;}
.x4c_c00283{left:457.767570px;}
.xad_c00283{left:459.072744px;}
.x74_c00283{left:460.212150px;}
.x1d_c00283{left:462.165576px;}
.xa3_c00283{left:466.090236px;}
.x12_c00283{left:472.659000px;}
.x3d_c00283{left:476.657742px;}
.x6a_c00283{left:478.510500px;}
.x9a_c00283{left:481.355100px;}
.x2b_c00283{left:482.356614px;}
.x45_c00283{left:485.088672px;}
.x34_c00283{left:486.431700px;}
.x8f_c00283{left:488.271015px;}
.xb4_c00283{left:489.560196px;}
.x4d_c00283{left:492.897570px;}
.x75_c00283{left:494.792168px;}
.xb2_c00283{left:496.592310px;}
.x9b_c00283{left:499.123410px;}
.x1e_c00283{left:500.460576px;}
.x13_c00283{left:503.157000px;}
.x63_c00283{left:505.092156px;}
.x35_c00283{left:507.181200px;}
.x81_c00283{left:508.908248px;}
.x90_c00283{left:510.430178px;}
.x3e_c00283{left:513.644292px;}
.x2c_c00283{left:516.983700px;}
.x6b_c00283{left:520.494000px;}
.x76_c00283{left:522.337072px;}
.xa4_c00283{left:524.430183px;}
.xa1_c00283{left:526.060500px;}
.x9c_c00283{left:529.105260px;}
.x95_c00283{left:534.744345px;}
.xc4_c00283{left:535.828500px;}
.x1f_c00283{left:538.310076px;}
.x4e_c00283{left:541.236570px;}
.x82_c00283{left:544.490805px;}
.x5c_c00283{left:546.617916px;}
.x36_c00283{left:549.320700px;}
.x2d_c00283{left:554.183250px;}
.x54_c00283{left:557.093262px;}
.x7a_c00283{left:559.391250px;}
.x20_c00283{left:562.820076px;}
.x46_c00283{left:565.825644px;}
.x91_c00283{left:566.847345px;}
.x4f_c00283{left:570.930570px;}
.xb3_c00283{left:572.762556px;}
.xa5_c00283{left:573.942792px;}
.x7b_c00283{left:575.037975px;}
.x5d_c00283{left:576.714276px;}
.x37_c00283{left:578.009700px;}
.x14_c00283{left:582.807000px;}
.x64_c00283{left:584.058702px;}
.x38_c00283{left:586.805700px;}
.xb5_c00283{left:588.997287px;}
.x83_c00283{left:591.173723px;}
.xc5_c00283{left:596.809500px;}
.x47_c00283{left:599.295540px;}
.x7c_c00283{left:604.127903px;}
.x2e_c00283{left:606.280620px;}
.x6c_c00283{left:608.311500px;}
.x8a_c00283{left:609.535883px;}
.x6d_c00283{left:611.280000px;}
.x21_c00283{left:617.645076px;}
.x15_c00283{left:622.777500px;}
.x55_c00283{left:629.283534px;}
.x9d_c00283{left:631.216350px;}
.xc6_c00283{left:639.949500px;}
.x16_c00283{left:649.167000px;}
.x22_c00283{left:655.806576px;}
.xbe_c00283{left:670.140000px;}
.xbf_c00283{left:682.290000px;}
.xc0_c00283{left:692.010000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
.fs2_c00283{font-size:16.800000pt;}
.fs1a_c00283{font-size:19.600000pt;}
.fs1c_c00283{font-size:20.533333pt;}
.fs18_c00283{font-size:28.933333pt;}
.fs1e_c00283{font-size:38.266667pt;}
.fs1d_c00283{font-size:39.180885pt;}
.fs17_c00283{font-size:39.200000pt;}
.fs1f_c00283{font-size:41.066667pt;}
.fs19_c00283{font-size:52.266667pt;}
.fse_c00283{font-size:53.205985pt;}
.fs1b_c00283{font-size:55.066667pt;}
.fs8_c00283{font-size:55.070631pt;}
.fs13_c00283{font-size:55.075587pt;}
.fsf_c00283{font-size:56.006300pt;}
.fs10_c00283{font-size:56.939738pt;}
.fs20_c00283{font-size:57.866667pt;}
.fs5_c00283{font-size:57.870833pt;}
.fs14_c00283{font-size:58.809525pt;}
.fsc_c00283{font-size:59.740053pt;}
.fs9_c00283{font-size:60.671035pt;}
.fs7_c00283{font-size:61.604435pt;}
.fsa_c00283{font-size:62.540368pt;}
.fs12_c00283{font-size:62.543463pt;}
.fs4_c00283{font-size:63.471236pt;}
.fs11_c00283{font-size:63.473806pt;}
.fs15_c00283{font-size:63.476947pt;}
.fs6_c00283{font-size:64.404637pt;}
.fsb_c00283{font-size:64.407245pt;}
.fs0_c00283{font-size:65.333333pt;}
.fsd_c00283{font-size:65.340683pt;}
.fs16_c00283{font-size:65.343916pt;}
.fs1_c00283{font-size:97.066667pt;}
.fs3_c00283{font-size:107.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y15b_c00283{bottom:94.261333pt;}
.y15a_c00283{bottom:95.217333pt;}
.y159_c00283{bottom:95.565333pt;}
.y158_c00283{bottom:95.853333pt;}
.y157_c00283{bottom:96.498667pt;}
.y156_c00283{bottom:96.672000pt;}
.y155_c00283{bottom:97.441333pt;}
.y148_c00283{bottom:98.881333pt;}
.y149_c00283{bottom:99.101333pt;}
.y14a_c00283{bottom:99.604000pt;}
.y14b_c00283{bottom:99.685333pt;}
.y14c_c00283{bottom:100.336000pt;}
.y14d_c00283{bottom:100.634667pt;}
.y14e_c00283{bottom:101.126667pt;}
.y14f_c00283{bottom:101.561333pt;}
.y150_c00283{bottom:101.937333pt;}
.y151_c00283{bottom:102.390667pt;}
.y152_c00283{bottom:102.878667pt;}
.y153_c00283{bottom:103.041333pt;}
.y154_c00283{bottom:103.224000pt;}
.y147_c00283{bottom:134.002667pt;}
.y146_c00283{bottom:149.115456pt;}
.y145_c00283{bottom:150.276672pt;}
.y144_c00283{bottom:150.795755pt;}
.y143_c00283{bottom:151.509611pt;}
.y142_c00283{bottom:152.050539pt;}
.y141_c00283{bottom:152.702997pt;}
.y140_c00283{bottom:153.791509pt;}
.y13f_c00283{bottom:154.829333pt;}
.y13e_c00283{bottom:193.682667pt;}
.y13d_c00283{bottom:211.108000pt;}
.y138_c00283{bottom:231.850923pt;}
.y137_c00283{bottom:232.348680pt;}
.y136_c00283{bottom:233.264525pt;}
.y135_c00283{bottom:234.151227pt;}
.y134_c00283{bottom:234.691579pt;}
.y133_c00283{bottom:235.432653pt;}
.y132_c00283{bottom:235.866363pt;}
.y131_c00283{bottom:235.961115pt;}
.y130_c00283{bottom:236.203736pt;}
.y12e_c00283{bottom:236.445037pt;}
.y12f_c00283{bottom:236.478333pt;}
.y12d_c00283{bottom:237.336597pt;}
.y12c_c00283{bottom:237.807971pt;}
.y12b_c00283{bottom:238.069597pt;}
.y12a_c00283{bottom:252.846728pt;}
.y129_c00283{bottom:253.365360pt;}
.y128_c00283{bottom:254.201496pt;}
.y127_c00283{bottom:254.882816pt;}
.y126_c00283{bottom:255.351451pt;}
.y125_c00283{bottom:255.722912pt;}
.y124_c00283{bottom:256.875891pt;}
.y123_c00283{bottom:257.874355pt;}
.y122_c00283{bottom:258.439491pt;}
.y121_c00283{bottom:259.102365pt;}
.y120_c00283{bottom:259.448264pt;}
.y11f_c00283{bottom:259.685456pt;}
.y11e_c00283{bottom:260.394235pt;}
.y11d_c00283{bottom:273.398616pt;}
.y11c_c00283{bottom:273.792880pt;}
.y11b_c00283{bottom:274.536763pt;}
.y11a_c00283{bottom:274.946088pt;}
.y119_c00283{bottom:276.064696pt;}
.y118_c00283{bottom:276.650979pt;}
.y117_c00283{bottom:277.545392pt;}
.y116_c00283{bottom:278.131867pt;}
.y115_c00283{bottom:279.430120pt;}
.y114_c00283{bottom:279.813883pt;}
.y113_c00283{bottom:280.536955pt;}
.y112_c00283{bottom:281.518533pt;}
.y111_c00283{bottom:294.153344pt;}
.y110_c00283{bottom:295.376784pt;}
.y10f_c00283{bottom:295.796075pt;}
.y10e_c00283{bottom:296.425616pt;}
.y10d_c00283{bottom:297.264760pt;}
.y10c_c00283{bottom:297.673261pt;}
.y10b_c00283{bottom:298.061781pt;}
.y10a_c00283{bottom:298.932331pt;}
.y109_c00283{bottom:299.725368pt;}
.y108_c00283{bottom:299.950776pt;}
.y107_c00283{bottom:301.249136pt;}
.y106_c00283{bottom:301.919059pt;}
.y105_c00283{bottom:314.561176pt;}
.y104_c00283{bottom:314.915603pt;}
.y103_c00283{bottom:315.205381pt;}
.y102_c00283{bottom:316.041597pt;}
.y101_c00283{bottom:316.238816pt;}
.y100_c00283{bottom:317.027053pt;}
.yff_c00283{bottom:317.592307pt;}
.yfe_c00283{bottom:318.275539pt;}
.yfd_c00283{bottom:319.118931pt;}
.yfc_c00283{bottom:319.830544pt;}
.yfb_c00283{bottom:320.243605pt;}
.yfa_c00283{bottom:320.554949pt;}
.yf9_c00283{bottom:320.798011pt;}
.yf8_c00283{bottom:321.594888pt;}
.yf7_c00283{bottom:322.319403pt;}
.yf6_c00283{bottom:335.891347pt;}
.yf5_c00283{bottom:336.383443pt;}
.yf4_c00283{bottom:337.048843pt;}
.yf3_c00283{bottom:337.566931pt;}
.yf2_c00283{bottom:338.245147pt;}
.yf1_c00283{bottom:339.251923pt;}
.yf0_c00283{bottom:339.903211pt;}
.yef_c00283{bottom:340.330987pt;}
.yee_c00283{bottom:341.607667pt;}
.yed_c00283{bottom:342.354667pt;}
.yec_c00283{bottom:355.318033pt;}
.yeb_c00283{bottom:355.909013pt;}
.yea_c00283{bottom:356.197373pt;}
.ye9_c00283{bottom:356.407453pt;}
.ye8_c00283{bottom:356.727193pt;}
.ye7_c00283{bottom:356.916093pt;}
.ye6_c00283{bottom:357.253573pt;}
.ye5_c00283{bottom:357.636933pt;}
.ye4_c00283{bottom:357.956493pt;}
.ye3_c00283{bottom:358.120520pt;}
.ye2_c00283{bottom:358.251907pt;}
.ye1_c00283{bottom:358.696500pt;}
.ye0_c00283{bottom:359.040347pt;}
.ydf_c00283{bottom:359.368913pt;}
.yde_c00283{bottom:359.703033pt;}
.ydd_c00283{bottom:359.878233pt;}
.ydc_c00283{bottom:360.462407pt;}
.ydb_c00283{bottom:377.035493pt;}
.yda_c00283{bottom:377.226333pt;}
.yd9_c00283{bottom:377.705073pt;}
.yd8_c00283{bottom:379.365993pt;}
.yd7_c00283{bottom:380.023593pt;}
.yd6_c00283{bottom:380.768873pt;}
.yd5_c00283{bottom:381.074133pt;}
.yd4_c00283{bottom:381.686553pt;}
.yd3_c00283{bottom:382.375053pt;}
.yd2_c00283{bottom:382.786153pt;}
.yd1_c00283{bottom:397.548260pt;}
.yd0_c00283{bottom:397.941920pt;}
.ycf_c00283{bottom:398.349833pt;}
.yce_c00283{bottom:398.665293pt;}
.ycd_c00283{bottom:399.440053pt;}
.ycc_c00283{bottom:399.859480pt;}
.ycb_c00283{bottom:400.861687pt;}
.yca_c00283{bottom:401.382467pt;}
.yc9_c00283{bottom:401.629007pt;}
.yc8_c00283{bottom:402.394407pt;}
.yc7_c00283{bottom:403.427727pt;}
.yc6_c00283{bottom:417.430347pt;}
.yc5_c00283{bottom:418.109527pt;}
.yc4_c00283{bottom:418.670967pt;}
.yc3_c00283{bottom:419.716200pt;}
.yc2_c00283{bottom:419.961147pt;}
.yc1_c00283{bottom:420.452120pt;}
.yc0_c00283{bottom:421.235200pt;}
.ybf_c00283{bottom:421.857180pt;}
.ybe_c00283{bottom:422.072293pt;}
.ybd_c00283{bottom:422.123093pt;}
.ybc_c00283{bottom:422.543087pt;}
.ybb_c00283{bottom:423.111127pt;}
.yba_c00283{bottom:437.575800pt;}
.yb9_c00283{bottom:438.227320pt;}
.yb8_c00283{bottom:438.818240pt;}
.yb7_c00283{bottom:440.441920pt;}
.yb6_c00283{bottom:441.187260pt;}
.yb5_c00283{bottom:442.037680pt;}
.yb4_c00283{bottom:442.886860pt;}
.yb3_c00283{bottom:443.513620pt;}
.yb2_c00283{bottom:458.623053pt;}
.yb1_c00283{bottom:458.862620pt;}
.yb0_c00283{bottom:459.161473pt;}
.yaf_c00283{bottom:459.573227pt;}
.yae_c00283{bottom:460.632500pt;}
.yad_c00283{bottom:461.037133pt;}
.yac_c00283{bottom:461.745260pt;}
.yab_c00283{bottom:462.071813pt;}
.yaa_c00283{bottom:462.706900pt;}
.ya9_c00283{bottom:462.969220pt;}
.ya8_c00283{bottom:463.674840pt;}
.ya7_c00283{bottom:478.465500pt;}
.ya6_c00283{bottom:478.828027pt;}
.ya5_c00283{bottom:479.023313pt;}
.ya4_c00283{bottom:479.972673pt;}
.ya3_c00283{bottom:480.284667pt;}
.ya2_c00283{bottom:480.824680pt;}
.ya1_c00283{bottom:481.483293pt;}
.ya0_c00283{bottom:481.770473pt;}
.y9f_c00283{bottom:482.606693pt;}
.y9e_c00283{bottom:482.961660pt;}
.y9d_c00283{bottom:483.470560pt;}
.y9c_c00283{bottom:483.592407pt;}
.y9b_c00283{bottom:484.077900pt;}
.y9a_c00283{bottom:498.787747pt;}
.y99_c00283{bottom:499.896620pt;}
.y98_c00283{bottom:500.239880pt;}
.y97_c00283{bottom:500.670273pt;}
.y96_c00283{bottom:501.035867pt;}
.y95_c00283{bottom:501.819647pt;}
.y94_c00283{bottom:502.198840pt;}
.y93_c00283{bottom:502.506593pt;}
.y92_c00283{bottom:503.375180pt;}
.y91_c00283{bottom:503.626633pt;}
.y90_c00283{bottom:504.039300pt;}
.y8f_c00283{bottom:504.479960pt;}
.y8e_c00283{bottom:519.274007pt;}
.y8d_c00283{bottom:519.313587pt;}
.y8c_c00283{bottom:520.195567pt;}
.y8b_c00283{bottom:520.484487pt;}
.y8a_c00283{bottom:521.044267pt;}
.y89_c00283{bottom:521.484667pt;}
.y88_c00283{bottom:522.004727pt;}
.y87_c00283{bottom:522.901127pt;}
.y86_c00283{bottom:523.786847pt;}
.y85_c00283{bottom:524.365887pt;}
.y84_c00283{bottom:525.122667pt;}
.y82_c00283{bottom:543.939243pt;}
.y81_c00283{bottom:543.939531pt;}
.y83_c00283{bottom:543.939792pt;}
.y80_c00283{bottom:560.232357pt;}
.y7f_c00283{bottom:560.625392pt;}
.y7e_c00283{bottom:561.145344pt;}
.y7d_c00283{bottom:561.730421pt;}
.y7c_c00283{bottom:562.139557pt;}
.y7b_c00283{bottom:562.509877pt;}
.y7a_c00283{bottom:562.787467pt;}
.y79_c00283{bottom:562.979589pt;}
.y78_c00283{bottom:563.855909pt;}
.y77_c00283{bottom:564.860939pt;}
.y76_c00283{bottom:565.187968pt;}
.y75_c00283{bottom:580.216917pt;}
.y74_c00283{bottom:580.443909pt;}
.y73_c00283{bottom:580.504272pt;}
.y72_c00283{bottom:580.798629pt;}
.y71_c00283{bottom:581.489851pt;}
.y70_c00283{bottom:581.834448pt;}
.y6f_c00283{bottom:582.304421pt;}
.y6e_c00283{bottom:582.768667pt;}
.y6d_c00283{bottom:583.447925pt;}
.y6c_c00283{bottom:583.685264pt;}
.y6b_c00283{bottom:583.927669pt;}
.y6a_c00283{bottom:584.271483pt;}
.y69_c00283{bottom:584.638389pt;}
.y67_c00283{bottom:599.854400pt;}
.y68_c00283{bottom:599.863605pt;}
.y66_c00283{bottom:600.235195pt;}
.y65_c00283{bottom:600.752448pt;}
.y64_c00283{bottom:601.295893pt;}
.y63_c00283{bottom:601.624816pt;}
.y62_c00283{bottom:601.931360pt;}
.y61_c00283{bottom:602.494784pt;}
.y60_c00283{bottom:603.043451pt;}
.y5f_c00283{bottom:603.236619pt;}
.y5e_c00283{bottom:603.257861pt;}
.y5d_c00283{bottom:604.051499pt;}
.y5c_c00283{bottom:604.184949pt;}
.y5b_c00283{bottom:604.911413pt;}
.y5a_c00283{bottom:605.455099pt;}
.y59_c00283{bottom:605.761307pt;}
.y58_c00283{bottom:621.482523pt;}
.y57_c00283{bottom:621.799259pt;}
.y56_c00283{bottom:622.314875pt;}
.y55_c00283{bottom:622.689595pt;}
.y54_c00283{bottom:623.294459pt;}
.y53_c00283{bottom:623.564843pt;}
.y52_c00283{bottom:623.750779pt;}
.y51_c00283{bottom:624.262395pt;}
.y50_c00283{bottom:624.569883pt;}
.y4f_c00283{bottom:625.293851pt;}
.y4e_c00283{bottom:625.473963pt;}
.y4d_c00283{bottom:625.911691pt;}
.y13b_c00283{bottom:626.640000pt;}
.y13a_c00283{bottom:627.840000pt;}
.y4c_c00283{bottom:641.736256pt;}
.y4b_c00283{bottom:642.063931pt;}
.y4a_c00283{bottom:642.705280pt;}
.y49_c00283{bottom:642.853115pt;}
.y48_c00283{bottom:643.518859pt;}
.y47_c00283{bottom:643.833659pt;}
.y46_c00283{bottom:644.194917pt;}
.y45_c00283{bottom:644.503381pt;}
.y44_c00283{bottom:645.061307pt;}
.y43_c00283{bottom:645.306368pt;}
.y42_c00283{bottom:645.670443pt;}
.y41_c00283{bottom:646.089728pt;}
.y13c_c00283{bottom:656.160000pt;}
.y40_c00283{bottom:661.533616pt;}
.y3f_c00283{bottom:662.338037pt;}
.y3e_c00283{bottom:662.765899pt;}
.y3d_c00283{bottom:663.149664pt;}
.y3c_c00283{bottom:663.905227pt;}
.y3b_c00283{bottom:664.478571pt;}
.y3a_c00283{bottom:665.264187pt;}
.y39_c00283{bottom:665.687915pt;}
.y38_c00283{bottom:666.309739pt;}
.y37_c00283{bottom:666.475552pt;}
.y36_c00283{bottom:682.035264pt;}
.y35_c00283{bottom:682.129088pt;}
.y34_c00283{bottom:682.435104pt;}
.y33_c00283{bottom:682.884592pt;}
.y32_c00283{bottom:683.105920pt;}
.y31_c00283{bottom:683.673888pt;}
.y30_c00283{bottom:684.076576pt;}
.y2f_c00283{bottom:684.275312pt;}
.y2e_c00283{bottom:684.672896pt;}
.y2d_c00283{bottom:684.994912pt;}
.y2c_c00283{bottom:685.577248pt;}
.y2b_c00283{bottom:686.199392pt;}
.y2a_c00283{bottom:686.636672pt;}
.y29_c00283{bottom:701.750400pt;}
.y28_c00283{bottom:702.352779pt;}
.y27_c00283{bottom:702.782912pt;}
.y26_c00283{bottom:703.182939pt;}
.y25_c00283{bottom:703.545067pt;}
.y24_c00283{bottom:703.872096pt;}
.y23_c00283{bottom:704.536939pt;}
.y22_c00283{bottom:704.838821pt;}
.y21_c00283{bottom:705.378619pt;}
.y20_c00283{bottom:705.746507pt;}
.y1f_c00283{bottom:706.058443pt;}
.y1e_c00283{bottom:707.038955pt;}
.y139_c00283{bottom:716.160000pt;}
.y1d_c00283{bottom:720.814277pt;}
.y1c_c00283{bottom:721.221333pt;}
.y1b_c00283{bottom:721.806133pt;}
.y1a_c00283{bottom:722.067573pt;}
.y19_c00283{bottom:722.471301pt;}
.y18_c00283{bottom:722.879781pt;}
.y17_c00283{bottom:723.275077pt;}
.y16_c00283{bottom:723.596965pt;}
.y15_c00283{bottom:724.355109pt;}
.y14_c00283{bottom:724.611269pt;}
.y13_c00283{bottom:725.242149pt;}
.y12_c00283{bottom:725.688453pt;}
.y11_c00283{bottom:726.152341pt;}
.y10_c00283{bottom:726.719973pt;}
.yf_c00283{bottom:741.512069pt;}
.ye_c00283{bottom:741.793557pt;}
.yd_c00283{bottom:742.219909pt;}
.yc_c00283{bottom:743.069509pt;}
.yb_c00283{bottom:743.394821pt;}
.ya_c00283{bottom:744.285029pt;}
.y9_c00283{bottom:744.927285pt;}
.y8_c00283{bottom:745.425013pt;}
.y7_c00283{bottom:745.693381pt;}
.y6_c00283{bottom:746.781765pt;}
.y5_c00283{bottom:747.361333pt;}
.y4_c00283{bottom:781.800000pt;}
.y3_c00283{bottom:812.426667pt;}
.y2_c00283{bottom:821.128000pt;}
.y1_c00283{bottom:834.828000pt;}
.h4_c00283{height:16.800000pt;}
.h1c_c00283{height:19.600000pt;}
.h1e_c00283{height:20.533333pt;}
.h1a_c00283{height:28.933333pt;}
.h20_c00283{height:38.266667pt;}
.h1f_c00283{height:39.180885pt;}
.h19_c00283{height:39.200000pt;}
.h21_c00283{height:41.066667pt;}
.h1b_c00283{height:52.266667pt;}
.h10_c00283{height:53.205985pt;}
.h1d_c00283{height:55.066667pt;}
.ha_c00283{height:55.070631pt;}
.h15_c00283{height:55.075587pt;}
.h11_c00283{height:56.006300pt;}
.h12_c00283{height:56.939738pt;}
.h22_c00283{height:57.866667pt;}
.h7_c00283{height:57.870833pt;}
.h16_c00283{height:58.809525pt;}
.he_c00283{height:59.740053pt;}
.hb_c00283{height:60.671035pt;}
.h9_c00283{height:61.604435pt;}
.hc_c00283{height:62.540368pt;}
.h14_c00283{height:62.543463pt;}
.h6_c00283{height:63.471236pt;}
.h13_c00283{height:63.473806pt;}
.h17_c00283{height:63.476947pt;}
.h8_c00283{height:64.404637pt;}
.hd_c00283{height:64.407245pt;}
.h2_c00283{height:65.333333pt;}
.hf_c00283{height:65.340683pt;}
.h18_c00283{height:65.343916pt;}
.h3_c00283{height:97.066667pt;}
.h5_c00283{height:107.333333pt;}
.h0_c00283{height:896.400000pt;}
.h1_c00283{height:896.666667pt;}
.w0_c00283{width:618.666667pt;}
.x0_c00283{left:0.000000pt;}
.xc7_c00283{left:75.673333pt;}
.xc1_c00283{left:86.358667pt;}
.x1_c00283{left:89.040000pt;}
.xb_c00283{left:90.480000pt;}
.xb6_c00283{left:91.920000pt;}
.xa_c00283{left:93.600000pt;}
.xba_c00283{left:100.320000pt;}
.xb8_c00283{left:102.000000pt;}
.xb7_c00283{left:102.960000pt;}
.xb9_c00283{left:108.720000pt;}
.xc2_c00283{left:110.860000pt;}
.x23_c00283{left:132.096987pt;}
.xc_c00283{left:133.920000pt;}
.xa6_c00283{left:134.902747pt;}
.x9e_c00283{left:135.874667pt;}
.x3f_c00283{left:136.913061pt;}
.xe_c00283{left:137.896000pt;}
.x39_c00283{left:151.045701pt;}
.x65_c00283{left:153.449333pt;}
.x50_c00283{left:159.203392pt;}
.x5e_c00283{left:163.230245pt;}
.xae_c00283{left:167.205251pt;}
.x6e_c00283{left:168.383180pt;}
.x56_c00283{left:170.252149pt;}
.x2f_c00283{left:174.594400pt;}
.xc3_c00283{left:175.822667pt;}
.x17_c00283{left:176.757845pt;}
.x84_c00283{left:178.164300pt;}
.x77_c00283{left:179.593240pt;}
.x96_c00283{left:181.050767pt;}
.x2_c00283{left:183.120000pt;}
.xab_c00283{left:184.428701pt;}
.xbb_c00283{left:188.574496pt;}
.x48_c00283{left:189.883173pt;}
.x7d_c00283{left:191.111047pt;}
.x97_c00283{left:195.664760pt;}
.x3_c00283{left:197.520000pt;}
.x3a_c00283{left:198.863792pt;}
.x57_c00283{left:201.459184pt;}
.x66_c00283{left:203.901333pt;}
.xbc_c00283{left:205.461592pt;}
.x24_c00283{left:207.472075pt;}
.x92_c00283{left:209.896307pt;}
.x7e_c00283{left:211.266313pt;}
.x18_c00283{left:213.949845pt;}
.x6f_c00283{left:215.858567pt;}
.xac_c00283{left:220.598072pt;}
.x58_c00283{left:223.548789pt;}
.x30_c00283{left:226.439733pt;}
.xd_c00283{left:228.000000pt;}
.xaf_c00283{left:229.460328pt;}
.x40_c00283{left:230.504864pt;}
.x25_c00283{left:231.466453pt;}
.x8_c00283{left:232.560000pt;}
.x85_c00283{left:234.776300pt;}
.x4_c00283{left:236.160000pt;}
.xa7_c00283{left:238.546232pt;}
.x5f_c00283{left:240.537317pt;}
.x67_c00283{left:242.504000pt;}
.xbd_c00283{left:243.952396pt;}
.x59_c00283{left:245.105045pt;}
.x8b_c00283{left:248.796127pt;}
.x51_c00283{left:249.935883pt;}
.xf_c00283{left:250.958667pt;}
.x5_c00283{left:252.240000pt;}
.xb0_c00283{left:257.744653pt;}
.x26_c00283{left:259.790117pt;}
.x8c_c00283{left:264.165220pt;}
.x19_c00283{left:266.523179pt;}
.x88_c00283{left:270.104280pt;}
.x93_c00283{left:271.074973pt;}
.x9f_c00283{left:272.066667pt;}
.x31_c00283{left:274.967733pt;}
.x70_c00283{left:277.854153pt;}
.x98_c00283{left:279.481853pt;}
.x41_c00283{left:281.221472pt;}
.x7f_c00283{left:285.244533pt;}
.x1a_c00283{left:287.869845pt;}
.x6_c00283{left:289.200000pt;}
.x86_c00283{left:291.470967pt;}
.x10_c00283{left:292.436000pt;}
.x8d_c00283{left:296.750073pt;}
.x71_c00283{left:299.882493pt;}
.x27_c00283{left:301.328288pt;}
.xa2_c00283{left:304.163067pt;}
.x7_c00283{left:307.440000pt;}
.x42_c00283{left:309.260475pt;}
.x52_c00283{left:316.191632pt;}
.x49_c00283{left:318.472507pt;}
.x78_c00283{left:321.502027pt;}
.x60_c00283{left:322.684325pt;}
.x28_c00283{left:324.596016pt;}
.x89_c00283{left:326.043787pt;}
.x72_c00283{left:326.940227pt;}
.x53_c00283{left:331.503264pt;}
.x4a_c00283{left:333.967173pt;}
.x32_c00283{left:334.934400pt;}
.x3b_c00283{left:336.086160pt;}
.xa8_c00283{left:338.007123pt;}
.x80_c00283{left:339.743507pt;}
.x87_c00283{left:341.160300pt;}
.x43_c00283{left:342.143541pt;}
.x9_c00283{left:343.200000pt;}
.x11_c00283{left:345.957333pt;}
.x5a_c00283{left:349.064960pt;}
.x1b_c00283{left:351.048512pt;}
.x4b_c00283{left:356.499173pt;}
.xa9_c00283{left:358.480096pt;}
.x8e_c00283{left:359.385133pt;}
.x68_c00283{left:361.312000pt;}
.x94_c00283{left:364.600307pt;}
.x79_c00283{left:368.521393pt;}
.x44_c00283{left:370.710544pt;}
.x61_c00283{left:372.565067pt;}
.x29_c00283{left:375.776741pt;}
.x1c_c00283{left:377.872512pt;}
.xaa_c00283{left:379.989045pt;}
.x73_c00283{left:382.926400pt;}
.xb1_c00283{left:383.901451pt;}
.x33_c00283{left:385.053067pt;}
.xc8_c00283{left:388.418667pt;}
.x5b_c00283{left:391.785472pt;}
.x3c_c00283{left:394.160123pt;}
.x69_c00283{left:395.982667pt;}
.x99_c00283{left:399.771273pt;}
.x2a_c00283{left:400.917771pt;}
.xa0_c00283{left:401.860000pt;}
.x62_c00283{left:403.992683pt;}
.x4c_c00283{left:406.904507pt;}
.xad_c00283{left:408.064661pt;}
.x74_c00283{left:409.077467pt;}
.x1d_c00283{left:410.813845pt;}
.xa3_c00283{left:414.302432pt;}
.x12_c00283{left:420.141333pt;}
.x3d_c00283{left:423.695771pt;}
.x6a_c00283{left:425.342667pt;}
.x9a_c00283{left:427.871200pt;}
.x2b_c00283{left:428.761435pt;}
.x45_c00283{left:431.189931pt;}
.x34_c00283{left:432.383733pt;}
.x8f_c00283{left:434.018680pt;}
.xb4_c00283{left:435.164619pt;}
.x4d_c00283{left:438.131173pt;}
.x75_c00283{left:439.815260pt;}
.xb2_c00283{left:441.415387pt;}
.x9b_c00283{left:443.665253pt;}
.x1e_c00283{left:444.853845pt;}
.x13_c00283{left:447.250667pt;}
.x63_c00283{left:448.970805pt;}
.x35_c00283{left:450.827733pt;}
.x81_c00283{left:452.362887pt;}
.x90_c00283{left:453.715713pt;}
.x3e_c00283{left:456.572704pt;}
.x2c_c00283{left:459.541067pt;}
.x6b_c00283{left:462.661333pt;}
.x76_c00283{left:464.299620pt;}
.xa4_c00283{left:466.160163pt;}
.xa1_c00283{left:467.609333pt;}
.x9c_c00283{left:470.315787pt;}
.x95_c00283{left:475.328307pt;}
.xc4_c00283{left:476.292000pt;}
.x1f_c00283{left:478.497845pt;}
.x4e_c00283{left:481.099173pt;}
.x82_c00283{left:483.991827pt;}
.x5c_c00283{left:485.882592pt;}
.x36_c00283{left:488.285067pt;}
.x2d_c00283{left:492.607333pt;}
.x54_c00283{left:495.194011pt;}
.x7a_c00283{left:497.236667pt;}
.x20_c00283{left:500.284512pt;}
.x46_c00283{left:502.956128pt;}
.x91_c00283{left:503.864307pt;}
.x4f_c00283{left:507.493840pt;}
.xb3_c00283{left:509.122272pt;}
.xa5_c00283{left:510.171371pt;}
.x7b_c00283{left:511.144867pt;}
.x5d_c00283{left:512.634912pt;}
.x37_c00283{left:513.786400pt;}
.x14_c00283{left:518.050667pt;}
.x64_c00283{left:519.163291pt;}
.x38_c00283{left:521.605067pt;}
.xb5_c00283{left:523.553144pt;}
.x83_c00283{left:525.487753pt;}
.xc5_c00283{left:530.497333pt;}
.x47_c00283{left:532.707147pt;}
.x7c_c00283{left:537.002580pt;}
.x2e_c00283{left:538.916107pt;}
.x6c_c00283{left:540.721333pt;}
.x8a_c00283{left:541.809673pt;}
.x6d_c00283{left:543.360000pt;}
.x21_c00283{left:549.017845pt;}
.x15_c00283{left:553.580000pt;}
.x55_c00283{left:559.363141pt;}
.x9d_c00283{left:561.081200pt;}
.xc6_c00283{left:568.844000pt;}
.x16_c00283{left:577.037333pt;}
.x22_c00283{left:582.939179pt;}
.xbe_c00283{left:595.680000pt;}
.xbf_c00283{left:606.480000pt;}
.xc0_c00283{left:615.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m134_c00284{transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);}
.mb2_c00284{transform:matrix(0.015364,0.000154,-0.002500,0.249988,0,0);-ms-transform:matrix(0.015364,0.000154,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.015364,0.000154,-0.002500,0.249988,0,0);}
.mb8_c00284{transform:matrix(0.085196,0.000852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.085196,0.000852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.085196,0.000852,-0.002500,0.249988,0,0);}
.ma5_c00284{transform:matrix(0.093385,0.000934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.093385,0.000934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.093385,0.000934,-0.002500,0.249988,0,0);}
.m119_c00284{transform:matrix(0.096485,0.000965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.096485,0.000965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.096485,0.000965,-0.002500,0.249988,0,0);}
.mfc_c00284{transform:matrix(0.105870,0.001059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.105870,0.001059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.105870,0.001059,-0.002500,0.249988,0,0);}
.m23_c00284{transform:matrix(0.122490,0.001102,-0.002250,0.249990,0,0);-ms-transform:matrix(0.122490,0.001102,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.122490,0.001102,-0.002250,0.249990,0,0);}
.m2b_c00284{transform:matrix(0.138399,0.001246,-0.002250,0.249990,0,0);-ms-transform:matrix(0.138399,0.001246,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.138399,0.001246,-0.002250,0.249990,0,0);}
.m5e_c00284{transform:matrix(0.142543,0.001425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.142543,0.001425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.142543,0.001425,-0.002500,0.249988,0,0);}
.m52_c00284{transform:matrix(0.142821,0.001571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142821,0.001571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142821,0.001571,-0.002750,0.249985,0,0);}
.m121_c00284{transform:matrix(0.143018,0.001430,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143018,0.001430,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143018,0.001430,-0.002500,0.249988,0,0);}
.mc3_c00284{transform:matrix(0.143713,0.001437,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143713,0.001437,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143713,0.001437,-0.002500,0.249988,0,0);}
.m34_c00284{transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143848,0.001438,-0.002500,0.249988,0,0);}
.mc6_c00284{transform:matrix(0.144048,0.001440,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144048,0.001440,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144048,0.001440,-0.002500,0.249988,0,0);}
.mf0_c00284{transform:matrix(0.144713,0.001447,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144713,0.001447,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144713,0.001447,-0.002500,0.249988,0,0);}
.mff_c00284{transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);}
.m75_c00284{transform:matrix(0.145528,0.001455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145528,0.001455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145528,0.001455,-0.002500,0.249988,0,0);}
.m2c_c00284{transform:matrix(0.145884,0.001313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145884,0.001313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145884,0.001313,-0.002250,0.249990,0,0);}
.mbb_c00284{transform:matrix(0.146133,0.001461,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146133,0.001461,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146133,0.001461,-0.002500,0.249988,0,0);}
.m1c_c00284{transform:matrix(0.147289,0.001326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147289,0.001326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147289,0.001326,-0.002250,0.249990,0,0);}
.m7_c00284{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);}
.mf5_c00284{transform:matrix(0.148648,0.001486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148648,0.001486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148648,0.001486,-0.002500,0.249988,0,0);}
.m35_c00284{transform:matrix(0.149083,0.001491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149083,0.001491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149083,0.001491,-0.002500,0.249988,0,0);}
.m76_c00284{transform:matrix(0.150017,0.001500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150017,0.001500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150017,0.001500,-0.002500,0.249988,0,0);}
.m109_c00284{transform:matrix(0.150217,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150217,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150217,0.001502,-0.002500,0.249988,0,0);}
.m8c_c00284{transform:matrix(0.151147,0.001511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151147,0.001511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151147,0.001511,-0.002500,0.249988,0,0);}
.m102_c00284{transform:matrix(0.152437,0.001524,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152437,0.001524,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152437,0.001524,-0.002500,0.249988,0,0);}
.m122_c00284{transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.153194,0.001379,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153194,0.001379,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153194,0.001379,-0.002250,0.249990,0,0);}
.mb5_c00284{transform:matrix(0.153337,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153337,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153337,0.001533,-0.002500,0.249988,0,0);}
.mf2_c00284{transform:matrix(0.153512,0.001535,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153512,0.001535,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153512,0.001535,-0.002500,0.249988,0,0);}
.m10_c00284{transform:matrix(0.154049,0.001386,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154049,0.001386,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154049,0.001386,-0.002250,0.249990,0,0);}
.m131_c00284{transform:matrix(0.154136,0.001695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154136,0.001695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154136,0.001695,-0.002750,0.249985,0,0);}
.m7c_c00284{transform:matrix(0.154947,0.001549,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154947,0.001549,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154947,0.001549,-0.002500,0.249988,0,0);}
.mc4_c00284{transform:matrix(0.155242,0.001552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155242,0.001552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155242,0.001552,-0.002500,0.249988,0,0);}
.m2e_c00284{transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);}
.m21_c00284{transform:matrix(0.155599,0.001400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155599,0.001400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155599,0.001400,-0.002250,0.249990,0,0);}
.mba_c00284{transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);}
.m40_c00284{transform:matrix(0.156849,0.001412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156849,0.001412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156849,0.001412,-0.002250,0.249990,0,0);}
.m138_c00284{transform:matrix(0.156861,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156861,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156861,0.001725,-0.002750,0.249985,0,0);}
.m15_c00284{transform:matrix(0.157014,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157014,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157014,0.001413,-0.002250,0.249990,0,0);}
.m6f_c00284{transform:matrix(0.157027,0.001570,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157027,0.001570,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157027,0.001570,-0.002500,0.249988,0,0);}
.m91_c00284{transform:matrix(0.157227,0.001572,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157227,0.001572,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157227,0.001572,-0.002500,0.249988,0,0);}
.m42_c00284{transform:matrix(0.157689,0.001419,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157689,0.001419,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157689,0.001419,-0.002250,0.249990,0,0);}
.m48_c00284{transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158119,0.001423,-0.002250,0.249990,0,0);}
.mbc_c00284{transform:matrix(0.158447,0.001584,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158447,0.001584,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158447,0.001584,-0.002500,0.249988,0,0);}
.m114_c00284{transform:matrix(0.158492,0.001585,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158492,0.001585,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158492,0.001585,-0.002500,0.249988,0,0);}
.m4c_c00284{transform:matrix(0.158814,0.001429,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158814,0.001429,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158814,0.001429,-0.002250,0.249990,0,0);}
.md5_c00284{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);}
.m9e_c00284{transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);}
.m6c_c00284{transform:matrix(0.159537,0.001595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159537,0.001595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159537,0.001595,-0.002500,0.249988,0,0);}
.m88_c00284{transform:matrix(0.159572,0.001596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159572,0.001596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159572,0.001596,-0.002500,0.249988,0,0);}
.m2d_c00284{transform:matrix(0.159689,0.001437,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159689,0.001437,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159689,0.001437,-0.002250,0.249990,0,0);}
.m6e_c00284{transform:matrix(0.159882,0.001599,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159882,0.001599,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159882,0.001599,-0.002500,0.249988,0,0);}
.m110_c00284{transform:matrix(0.160012,0.001600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160012,0.001600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160012,0.001600,-0.002500,0.249988,0,0);}
.ma_c00284{transform:matrix(0.160169,0.001442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160169,0.001442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160169,0.001442,-0.002250,0.249990,0,0);}
.m7a_c00284{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);}
.m99_c00284{transform:matrix(0.160587,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160587,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160587,0.001606,-0.002500,0.249988,0,0);}
.m2a_c00284{transform:matrix(0.161368,0.001452,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161368,0.001452,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161368,0.001452,-0.002250,0.249990,0,0);}
.m96_c00284{transform:matrix(0.161897,0.001619,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161897,0.001619,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161897,0.001619,-0.002500,0.249988,0,0);}
.m7f_c00284{transform:matrix(0.162502,0.001625,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162502,0.001625,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162502,0.001625,-0.002500,0.249988,0,0);}
.mf3_c00284{transform:matrix(0.162662,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162662,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162662,0.001627,-0.002500,0.249988,0,0);}
.md0_c00284{transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);}
.mf4_c00284{transform:matrix(0.163062,0.001631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163062,0.001631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163062,0.001631,-0.002500,0.249988,0,0);}
.m58_c00284{transform:matrix(0.163300,0.001796,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163300,0.001796,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163300,0.001796,-0.002750,0.249985,0,0);}
.m8_c00284{transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);}
.m74_c00284{transform:matrix(0.163567,0.001636,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163567,0.001636,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163567,0.001636,-0.002500,0.249988,0,0);}
.m120_c00284{transform:matrix(0.164032,0.001640,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164032,0.001640,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164032,0.001640,-0.002500,0.249988,0,0);}
.m4d_c00284{transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);}
.m70_c00284{transform:matrix(0.164347,0.001643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164347,0.001643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164347,0.001643,-0.002500,0.249988,0,0);}
.m101_c00284{transform:matrix(0.164567,0.001646,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164567,0.001646,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164567,0.001646,-0.002500,0.249988,0,0);}
.mc7_c00284{transform:matrix(0.165287,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165287,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165287,0.001653,-0.002500,0.249988,0,0);}
.me5_c00284{transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);}
.m28_c00284{transform:matrix(0.165823,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165823,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165823,0.001492,-0.002250,0.249990,0,0);}
.mf8_c00284{transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166007,0.001660,-0.002500,0.249988,0,0);}
.mcb_c00284{transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166412,0.001664,-0.002500,0.249988,0,0);}
.mc0_c00284{transform:matrix(0.166647,0.001666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166647,0.001666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166647,0.001666,-0.002500,0.249988,0,0);}
.m104_c00284{transform:matrix(0.166677,0.001667,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166677,0.001667,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166677,0.001667,-0.002500,0.249988,0,0);}
.m10c_c00284{transform:matrix(0.166867,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166867,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166867,0.001669,-0.002500,0.249988,0,0);}
.m8a_c00284{transform:matrix(0.167247,0.001672,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167247,0.001672,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167247,0.001672,-0.002500,0.249988,0,0);}
.m26_c00284{transform:matrix(0.167813,0.001510,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167813,0.001510,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167813,0.001510,-0.002250,0.249990,0,0);}
.meb_c00284{transform:matrix(0.167947,0.001679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167947,0.001679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167947,0.001679,-0.002500,0.249988,0,0);}
.mf6_c00284{transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168337,0.001683,-0.002500,0.249988,0,0);}
.m4b_c00284{transform:matrix(0.168518,0.001517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168518,0.001517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168518,0.001517,-0.002250,0.249990,0,0);}
.mce_c00284{transform:matrix(0.168852,0.001689,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168852,0.001689,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168852,0.001689,-0.002500,0.249988,0,0);}
.mf9_c00284{transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169377,0.001694,-0.002500,0.249988,0,0);}
.m128_c00284{transform:matrix(0.170368,0.002385,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170368,0.002385,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170368,0.002385,-0.003500,0.249976,0,0);}
.m3e_c00284{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);}
.m47_c00284{transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);}
.md1_c00284{transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171221,0.001712,-0.002500,0.249988,0,0);}
.mcf_c00284{transform:matrix(0.171366,0.001714,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171366,0.001714,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171366,0.001714,-0.002500,0.249988,0,0);}
.mb9_c00284{transform:matrix(0.171841,0.001718,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171841,0.001718,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171841,0.001718,-0.002500,0.249988,0,0);}
.m55_c00284{transform:matrix(0.172090,0.001893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172090,0.001893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172090,0.001893,-0.002750,0.249985,0,0);}
.m63_c00284{transform:matrix(0.172833,0.002074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172833,0.002074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172833,0.002074,-0.003000,0.249982,0,0);}
.m10d_c00284{transform:matrix(0.173036,0.001730,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173036,0.001730,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173036,0.001730,-0.002500,0.249988,0,0);}
.mdc_c00284{transform:matrix(0.173296,0.001733,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173296,0.001733,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173296,0.001733,-0.002500,0.249988,0,0);}
.m130_c00284{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);}
.mca_c00284{transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);}
.mda_c00284{transform:matrix(0.175251,0.001753,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175251,0.001753,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175251,0.001753,-0.002500,0.249988,0,0);}
.m85_c00284{transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);}
.m100_c00284{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);}
.mc9_c00284{transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175851,0.001759,-0.002500,0.249988,0,0);}
.m27_c00284{transform:matrix(0.176448,0.001588,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176448,0.001588,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176448,0.001588,-0.002250,0.249990,0,0);}
.mec_c00284{transform:matrix(0.176761,0.001768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176761,0.001768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176761,0.001768,-0.002500,0.249988,0,0);}
.m89_c00284{transform:matrix(0.176996,0.001770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176996,0.001770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176996,0.001770,-0.002500,0.249988,0,0);}
.m83_c00284{transform:matrix(0.177226,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177226,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177226,0.001772,-0.002500,0.249988,0,0);}
.mfa_c00284{transform:matrix(0.177381,0.001774,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177381,0.001774,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177381,0.001774,-0.002500,0.249988,0,0);}
.m84_c00284{transform:matrix(0.177671,0.001777,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177671,0.001777,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177671,0.001777,-0.002500,0.249988,0,0);}
.m6a_c00284{transform:matrix(0.178326,0.001783,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178326,0.001783,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178326,0.001783,-0.002500,0.249988,0,0);}
.md4_c00284{transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);}
.m71_c00284{transform:matrix(0.178821,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178821,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178821,0.001788,-0.002500,0.249988,0,0);}
.m107_c00284{transform:matrix(0.178906,0.001789,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178906,0.001789,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178906,0.001789,-0.002500,0.249988,0,0);}
.m78_c00284{transform:matrix(0.178996,0.001790,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178996,0.001790,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178996,0.001790,-0.002500,0.249988,0,0);}
.mae_c00284{transform:matrix(0.179721,0.001797,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179721,0.001797,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179721,0.001797,-0.002500,0.249988,0,0);}
.m31_c00284{transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);}
.md3_c00284{transform:matrix(0.180606,0.001806,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180606,0.001806,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180606,0.001806,-0.002500,0.249988,0,0);}
.m11d_c00284{transform:matrix(0.180651,0.001807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180651,0.001807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180651,0.001807,-0.002500,0.249988,0,0);}
.mbd_c00284{transform:matrix(0.180746,0.001807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180746,0.001807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180746,0.001807,-0.002500,0.249988,0,0);}
.me0_c00284{transform:matrix(0.180966,0.001810,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180966,0.001810,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180966,0.001810,-0.002500,0.249988,0,0);}
.mc_c00284{transform:matrix(0.181123,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181123,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181123,0.001630,-0.002250,0.249990,0,0);}
.m68_c00284{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);}
.m1b_c00284{transform:matrix(0.181338,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181338,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181338,0.001632,-0.002250,0.249990,0,0);}
.mbe_c00284{transform:matrix(0.181631,0.001816,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181631,0.001816,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181631,0.001816,-0.002500,0.249988,0,0);}
.m60_c00284{transform:matrix(0.181651,0.001817,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181651,0.001817,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181651,0.001817,-0.002500,0.249988,0,0);}
.m5a_c00284{transform:matrix(0.181851,0.001819,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181851,0.001819,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181851,0.001819,-0.002500,0.249988,0,0);}
.md_c00284{transform:matrix(0.182028,0.001638,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182028,0.001638,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182028,0.001638,-0.002250,0.249990,0,0);}
.md7_c00284{transform:matrix(0.182141,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182141,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182141,0.001821,-0.002500,0.249988,0,0);}
.me7_c00284{transform:matrix(0.182276,0.001823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182276,0.001823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182276,0.001823,-0.002500,0.249988,0,0);}
.m29_c00284{transform:matrix(0.182708,0.001644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182708,0.001644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182708,0.001644,-0.002250,0.249990,0,0);}
.mb0_c00284{transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183106,0.001831,-0.002500,0.249988,0,0);}
.m7e_c00284{transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183236,0.001832,-0.002500,0.249988,0,0);}
.m82_c00284{transform:matrix(0.183451,0.001835,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183451,0.001835,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183451,0.001835,-0.002500,0.249988,0,0);}
.mc5_c00284{transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183771,0.001838,-0.002500,0.249988,0,0);}
.mfb_c00284{transform:matrix(0.183776,0.001838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183776,0.001838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183776,0.001838,-0.002500,0.249988,0,0);}
.m46_c00284{transform:matrix(0.183808,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183808,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183808,0.001654,-0.002250,0.249990,0,0);}
.m97_c00284{transform:matrix(0.183816,0.001838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183816,0.001838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183816,0.001838,-0.002500,0.249988,0,0);}
.md6_c00284{transform:matrix(0.183906,0.001839,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183906,0.001839,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183906,0.001839,-0.002500,0.249988,0,0);}
.m66_c00284{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);}
.m86_c00284{transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184216,0.001842,-0.002500,0.249988,0,0);}
.m54_c00284{transform:matrix(0.184294,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184294,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184294,0.002027,-0.002750,0.249985,0,0);}
.m103_c00284{transform:matrix(0.184531,0.001845,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184531,0.001845,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184531,0.001845,-0.002500,0.249988,0,0);}
.maa_c00284{transform:matrix(0.184846,0.001848,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184846,0.001848,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184846,0.001848,-0.002500,0.249988,0,0);}
.mc2_c00284{transform:matrix(0.184906,0.001849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184906,0.001849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184906,0.001849,-0.002500,0.249988,0,0);}
.m64_c00284{transform:matrix(0.185352,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185352,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185352,0.002224,-0.003000,0.249982,0,0);}
.m111_c00284{transform:matrix(0.185461,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185461,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185461,0.001855,-0.002500,0.249988,0,0);}
.m11c_c00284{transform:matrix(0.186066,0.001861,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186066,0.001861,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186066,0.001861,-0.002500,0.249988,0,0);}
.m11e_c00284{transform:matrix(0.186506,0.001865,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186506,0.001865,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186506,0.001865,-0.002500,0.249988,0,0);}
.m126_c00284{transform:matrix(0.186962,0.002617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186962,0.002617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186962,0.002617,-0.003500,0.249976,0,0);}
.m73_c00284{transform:matrix(0.186991,0.001870,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186991,0.001870,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186991,0.001870,-0.002500,0.249988,0,0);}
.m95_c00284{transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);}
.mbf_c00284{transform:matrix(0.187581,0.001876,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187581,0.001876,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187581,0.001876,-0.002500,0.249988,0,0);}
.m1a_c00284{transform:matrix(0.187732,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187732,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187732,0.001690,-0.002250,0.249990,0,0);}
.m65_c00284{transform:matrix(0.188086,0.002257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188086,0.002257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188086,0.002257,-0.003000,0.249982,0,0);}
.m39_c00284{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);}
.m7d_c00284{transform:matrix(0.188901,0.001889,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188901,0.001889,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188901,0.001889,-0.002500,0.249988,0,0);}
.m9b_c00284{transform:matrix(0.189081,0.001891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189081,0.001891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189081,0.001891,-0.002500,0.249988,0,0);}
.m61_c00284{transform:matrix(0.189381,0.002273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189381,0.002273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189381,0.002273,-0.003000,0.249982,0,0);}
.mc1_c00284{transform:matrix(0.189896,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189896,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189896,0.001899,-0.002500,0.249988,0,0);}
.m92_c00284{transform:matrix(0.189901,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189901,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189901,0.001899,-0.002500,0.249988,0,0);}
.m1f_c00284{transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);}
.m93_c00284{transform:matrix(0.190245,0.001902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190245,0.001902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190245,0.001902,-0.002500,0.249988,0,0);}
.me1_c00284{transform:matrix(0.190285,0.001903,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190285,0.001903,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190285,0.001903,-0.002500,0.249988,0,0);}
.md2_c00284{transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190290,0.001903,-0.002500,0.249988,0,0);}
.m108_c00284{transform:matrix(0.190455,0.001905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190455,0.001905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190455,0.001905,-0.002500,0.249988,0,0);}
.m98_c00284{transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191140,0.001911,-0.002500,0.249988,0,0);}
.mc8_c00284{transform:matrix(0.191560,0.001916,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191560,0.001916,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191560,0.001916,-0.002500,0.249988,0,0);}
.m22_c00284{transform:matrix(0.191817,0.001726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191817,0.001726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191817,0.001726,-0.002250,0.249990,0,0);}
.m87_c00284{transform:matrix(0.192240,0.001922,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192240,0.001922,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192240,0.001922,-0.002500,0.249988,0,0);}
.m9f_c00284{transform:matrix(0.192285,0.001923,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192285,0.001923,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192285,0.001923,-0.002500,0.249988,0,0);}
.m6b_c00284{transform:matrix(0.192830,0.001928,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192830,0.001928,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192830,0.001928,-0.002500,0.249988,0,0);}
.m7b_c00284{transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192835,0.001928,-0.002500,0.249988,0,0);}
.m57_c00284{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);}
.m32_c00284{transform:matrix(0.193695,0.001937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193695,0.001937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193695,0.001937,-0.002500,0.249988,0,0);}
.m72_c00284{transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);}
.ma8_c00284{transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);}
.maf_c00284{transform:matrix(0.193815,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193815,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193815,0.001938,-0.002500,0.249988,0,0);}
.m11a_c00284{transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);}
.m8d_c00284{transform:matrix(0.193950,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193950,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193950,0.001940,-0.002500,0.249988,0,0);}
.m105_c00284{transform:matrix(0.194355,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194355,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194355,0.001944,-0.002500,0.249988,0,0);}
.mb1_c00284{transform:matrix(0.194425,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194425,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194425,0.001944,-0.002500,0.249988,0,0);}
.mee_c00284{transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);}
.m10e_c00284{transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);}
.m49_c00284{transform:matrix(0.194997,0.001755,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194997,0.001755,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194997,0.001755,-0.002250,0.249990,0,0);}
.m62_c00284{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);}
.m43_c00284{transform:matrix(0.195407,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195407,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195407,0.001759,-0.002250,0.249990,0,0);}
.m10f_c00284{transform:matrix(0.195550,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195550,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195550,0.001956,-0.002500,0.249988,0,0);}
.mde_c00284{transform:matrix(0.195725,0.001957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195725,0.001957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195725,0.001957,-0.002500,0.249988,0,0);}
.m1e_c00284{transform:matrix(0.196317,0.001767,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196317,0.001767,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196317,0.001767,-0.002250,0.249990,0,0);}
.mb7_c00284{transform:matrix(0.196510,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196510,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196510,0.001965,-0.002500,0.249988,0,0);}
.ma0_c00284{transform:matrix(0.196530,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196530,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196530,0.001965,-0.002500,0.249988,0,0);}
.m41_c00284{transform:matrix(0.196857,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196857,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196857,0.001772,-0.002250,0.249990,0,0);}
.mdf_c00284{transform:matrix(0.197295,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197295,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197295,0.001973,-0.002500,0.249988,0,0);}
.m3a_c00284{transform:matrix(0.197621,0.002371,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197621,0.002371,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197621,0.002371,-0.003000,0.249982,0,0);}
.m6d_c00284{transform:matrix(0.198015,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198015,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198015,0.001980,-0.002500,0.249988,0,0);}
.m106_c00284{transform:matrix(0.198840,0.001988,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198840,0.001988,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198840,0.001988,-0.002500,0.249988,0,0);}
.m9c_c00284{transform:matrix(0.199320,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199320,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199320,0.001993,-0.002500,0.249988,0,0);}
.mfd_c00284{transform:matrix(0.199560,0.001996,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199560,0.001996,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199560,0.001996,-0.002500,0.249988,0,0);}
.m16_c00284{transform:matrix(0.199707,0.001797,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199707,0.001797,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199707,0.001797,-0.002250,0.249990,0,0);}
.mf1_c00284{transform:matrix(0.200145,0.002001,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200145,0.002001,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200145,0.002001,-0.002500,0.249988,0,0);}
.m14_c00284{transform:matrix(0.200837,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200837,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200837,0.001808,-0.002250,0.249990,0,0);}
.m112_c00284{transform:matrix(0.201050,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201050,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201050,0.002010,-0.002500,0.249988,0,0);}
.m11_c00284{transform:matrix(0.201112,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201112,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201112,0.001810,-0.002250,0.249990,0,0);}
.m12f_c00284{transform:matrix(0.201225,0.002817,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201225,0.002817,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201225,0.002817,-0.003500,0.249976,0,0);}
.m9a_c00284{transform:matrix(0.201245,0.002012,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201245,0.002012,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201245,0.002012,-0.002500,0.249988,0,0);}
.m125_c00284{transform:matrix(0.201455,0.002820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201455,0.002820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201455,0.002820,-0.003500,0.249976,0,0);}
.m4e_c00284{transform:matrix(0.201557,0.001814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201557,0.001814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201557,0.001814,-0.002250,0.249990,0,0);}
.me2_c00284{transform:matrix(0.201735,0.002017,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201735,0.002017,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201735,0.002017,-0.002500,0.249988,0,0);}
.m3c_c00284{transform:matrix(0.201795,0.002422,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201795,0.002422,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201795,0.002422,-0.003000,0.249982,0,0);}
.mb3_c00284{transform:matrix(0.201840,0.002018,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201840,0.002018,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201840,0.002018,-0.002500,0.249988,0,0);}
.m3d_c00284{transform:matrix(0.202110,0.002425,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202110,0.002425,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202110,0.002425,-0.003000,0.249982,0,0);}
.mac_c00284{transform:matrix(0.202165,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202165,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202165,0.002022,-0.002500,0.249988,0,0);}
.m36_c00284{transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);}
.m19_c00284{transform:matrix(0.202287,0.001821,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202287,0.001821,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202287,0.001821,-0.002250,0.249990,0,0);}
.mf7_c00284{transform:matrix(0.202340,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202340,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202340,0.002023,-0.002500,0.249988,0,0);}
.me6_c00284{transform:matrix(0.202745,0.002027,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202745,0.002027,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202745,0.002027,-0.002500,0.249988,0,0);}
.m94_c00284{transform:matrix(0.203195,0.002032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203195,0.002032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203195,0.002032,-0.002500,0.249988,0,0);}
.m11b_c00284{transform:matrix(0.203415,0.002034,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203415,0.002034,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203415,0.002034,-0.002500,0.249988,0,0);}
.m30_c00284{transform:matrix(0.203705,0.002037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203705,0.002037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203705,0.002037,-0.002500,0.249988,0,0);}
.med_c00284{transform:matrix(0.203885,0.002039,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203885,0.002039,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203885,0.002039,-0.002500,0.249988,0,0);}
.m13_c00284{transform:matrix(0.204242,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204242,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204242,0.001838,-0.002250,0.249990,0,0);}
.me9_c00284{transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);}
.m51_c00284{transform:matrix(0.204863,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204863,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204863,0.002253,-0.002750,0.249985,0,0);}
.ma1_c00284{transform:matrix(0.206335,0.002063,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206335,0.002063,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206335,0.002063,-0.002500,0.249988,0,0);}
.ma4_c00284{transform:matrix(0.206630,0.002066,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206630,0.002066,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206630,0.002066,-0.002500,0.249988,0,0);}
.mea_c00284{transform:matrix(0.206715,0.002067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206715,0.002067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206715,0.002067,-0.002500,0.249988,0,0);}
.m77_c00284{transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);}
.m18_c00284{transform:matrix(0.206937,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206937,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206937,0.001862,-0.002250,0.249990,0,0);}
.me3_c00284{transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);}
.ma7_c00284{transform:matrix(0.207175,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207175,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207175,0.002072,-0.002500,0.249988,0,0);}
.m12b_c00284{transform:matrix(0.207180,0.002901,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207180,0.002901,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207180,0.002901,-0.003500,0.249976,0,0);}
.mef_c00284{transform:matrix(0.207620,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207620,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207620,0.002076,-0.002500,0.249988,0,0);}
.m17_c00284{transform:matrix(0.207657,0.001869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207657,0.001869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207657,0.001869,-0.002250,0.249990,0,0);}
.m10b_c00284{transform:matrix(0.207805,0.002078,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207805,0.002078,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207805,0.002078,-0.002500,0.249988,0,0);}
.me_c00284{transform:matrix(0.208417,0.001876,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208417,0.001876,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208417,0.001876,-0.002250,0.249990,0,0);}
.m11f_c00284{transform:matrix(0.209070,0.002091,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209070,0.002091,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209070,0.002091,-0.002500,0.249988,0,0);}
.m38_c00284{transform:matrix(0.210450,0.002525,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210450,0.002525,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210450,0.002525,-0.003000,0.249982,0,0);}
.m5f_c00284{transform:matrix(0.211419,0.002114,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211419,0.002114,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211419,0.002114,-0.002500,0.249988,0,0);}
.m113_c00284{transform:matrix(0.211904,0.002119,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211904,0.002119,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211904,0.002119,-0.002500,0.249988,0,0);}
.m8e_c00284{transform:matrix(0.212669,0.002127,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212669,0.002127,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212669,0.002127,-0.002500,0.249988,0,0);}
.m67_c00284{transform:matrix(0.213560,0.002563,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213560,0.002563,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213560,0.002563,-0.003000,0.249982,0,0);}
.mad_c00284{transform:matrix(0.213609,0.002136,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213609,0.002136,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213609,0.002136,-0.002500,0.249988,0,0);}
.m3f_c00284{transform:matrix(0.213806,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213806,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213806,0.001924,-0.002250,0.249990,0,0);}
.m129_c00284{transform:matrix(0.213859,0.002994,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213859,0.002994,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213859,0.002994,-0.003500,0.249976,0,0);}
.m80_c00284{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);}
.m1d_c00284{transform:matrix(0.214201,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214201,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214201,0.001928,-0.002250,0.249990,0,0);}
.mdd_c00284{transform:matrix(0.214274,0.002143,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214274,0.002143,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214274,0.002143,-0.002500,0.249988,0,0);}
.m116_c00284{transform:matrix(0.214319,0.002143,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214319,0.002143,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214319,0.002143,-0.002500,0.249988,0,0);}
.m79_c00284{transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);}
.mb_c00284{transform:matrix(0.214976,0.001935,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214976,0.001935,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214976,0.001935,-0.002250,0.249990,0,0);}
.m56_c00284{transform:matrix(0.215352,0.002369,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215352,0.002369,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215352,0.002369,-0.002750,0.249985,0,0);}
.m53_c00284{transform:matrix(0.215647,0.002372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215647,0.002372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215647,0.002372,-0.002750,0.249985,0,0);}
.m69_c00284{transform:matrix(0.219089,0.002191,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219089,0.002191,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219089,0.002191,-0.002500,0.249988,0,0);}
.m117_c00284{transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);}
.md9_c00284{transform:matrix(0.219344,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219344,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219344,0.002193,-0.002500,0.249988,0,0);}
.m12a_c00284{transform:matrix(0.219693,0.003076,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219693,0.003076,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219693,0.003076,-0.003500,0.249976,0,0);}
.m12c_c00284{transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);}
.m81_c00284{transform:matrix(0.220714,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220714,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220714,0.002207,-0.002500,0.249988,0,0);}
.m115_c00284{transform:matrix(0.220974,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220974,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220974,0.002210,-0.002500,0.249988,0,0);}
.mb4_c00284{transform:matrix(0.221054,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221054,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221054,0.002211,-0.002500,0.249988,0,0);}
.m4f_c00284{transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);}
.ma2_c00284{transform:matrix(0.225174,0.002252,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225174,0.002252,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225174,0.002252,-0.002500,0.249988,0,0);}
.mcc_c00284{transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);}
.m9_c00284{transform:matrix(0.226951,0.002043,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226951,0.002043,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226951,0.002043,-0.002250,0.249990,0,0);}
.m12e_c00284{transform:matrix(0.227488,0.003185,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227488,0.003185,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227488,0.003185,-0.003500,0.249976,0,0);}
.m20_c00284{transform:matrix(0.228001,0.002052,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228001,0.002052,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228001,0.002052,-0.002250,0.249990,0,0);}
.m5c_c00284{transform:matrix(0.228694,0.002287,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228694,0.002287,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228694,0.002287,-0.002500,0.249988,0,0);}
.m8f_c00284{transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);}
.m45_c00284{transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229606,0.002066,-0.002250,0.249990,0,0);}
.m37_c00284{transform:matrix(0.231753,0.002781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231753,0.002781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231753,0.002781,-0.003000,0.249982,0,0);}
.m12d_c00284{transform:matrix(0.233027,0.003262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233027,0.003262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233027,0.003262,-0.003500,0.249976,0,0);}
.mfe_c00284{transform:matrix(0.233953,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233953,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233953,0.002340,-0.002500,0.249988,0,0);}
.m124_c00284{transform:matrix(0.235177,0.003292,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235177,0.003292,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235177,0.003292,-0.003500,0.249976,0,0);}
.m24_c00284{transform:matrix(0.236370,0.002127,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236370,0.002127,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236370,0.002127,-0.002250,0.249990,0,0);}
.m127_c00284{transform:matrix(0.236952,0.003317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236952,0.003317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236952,0.003317,-0.003500,0.249976,0,0);}
.m33_c00284{transform:matrix(0.237558,0.002376,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237558,0.002376,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237558,0.002376,-0.002500,0.249988,0,0);}
.m9d_c00284{transform:matrix(0.240703,0.002407,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240703,0.002407,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240703,0.002407,-0.002500,0.249988,0,0);}
.m44_c00284{transform:matrix(0.243240,0.002189,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243240,0.002189,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243240,0.002189,-0.002250,0.249990,0,0);}
.m8b_c00284{transform:matrix(0.247663,0.002477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247663,0.002477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247663,0.002477,-0.002500,0.249988,0,0);}
.m2_c00284{transform:matrix(0.250045,0.002250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250045,0.002250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250045,0.002250,-0.002250,0.249990,0,0);}
.m123_c00284{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);}
.m12_c00284{transform:matrix(0.250830,0.002257,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250830,0.002257,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250830,0.002257,-0.002250,0.249990,0,0);}
.me4_c00284{transform:matrix(0.255932,0.002559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255932,0.002559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255932,0.002559,-0.002500,0.249988,0,0);}
.m90_c00284{transform:matrix(0.259812,0.002598,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259812,0.002598,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259812,0.002598,-0.002500,0.249988,0,0);}
.m25_c00284{transform:matrix(0.259874,0.002339,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259874,0.002339,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259874,0.002339,-0.002250,0.249990,0,0);}
.m13e_c00284{transform:matrix(0.260741,0.003129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260741,0.003129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260741,0.003129,-0.003000,0.249982,0,0);}
.m59_c00284{transform:matrix(0.262282,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262282,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262282,0.002623,-0.002500,0.249988,0,0);}
.me8_c00284{transform:matrix(0.266287,0.002663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266287,0.002663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266287,0.002663,-0.002500,0.249988,0,0);}
.mdb_c00284{transform:matrix(0.268552,0.002686,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268552,0.002686,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268552,0.002686,-0.002500,0.249988,0,0);}
.md8_c00284{transform:matrix(0.273031,0.002730,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273031,0.002730,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273031,0.002730,-0.002500,0.249988,0,0);}
.mcd_c00284{transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);}
.ma3_c00284{transform:matrix(0.275941,0.002759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275941,0.002759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275941,0.002759,-0.002500,0.249988,0,0);}
.mab_c00284{transform:matrix(0.282651,0.002827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282651,0.002827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282651,0.002827,-0.002500,0.249988,0,0);}
.m5b_c00284{transform:matrix(0.287976,0.002880,-0.002500,0.249988,0,0);-ms-transform:matrix(0.287976,0.002880,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.287976,0.002880,-0.002500,0.249988,0,0);}
.m142_c00284{transform:matrix(0.295664,0.003548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295664,0.003548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295664,0.003548,-0.003000,0.249982,0,0);}
.m135_c00284{transform:matrix(0.310486,0.003415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.310486,0.003415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.310486,0.003415,-0.002750,0.249985,0,0);}
.m140_c00284{transform:matrix(0.313192,0.003758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.313192,0.003758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.313192,0.003758,-0.003000,0.249982,0,0);}
.m139_c00284{transform:matrix(0.313892,0.003767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.313892,0.003767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.313892,0.003767,-0.003000,0.249982,0,0);}
.m10a_c00284{transform:matrix(0.314609,0.003146,-0.002500,0.249988,0,0);-ms-transform:matrix(0.314609,0.003146,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.314609,0.003146,-0.002500,0.249988,0,0);}
.m3b_c00284{transform:matrix(0.320892,0.003851,-0.003000,0.249982,0,0);-ms-transform:matrix(0.320892,0.003851,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.320892,0.003851,-0.003000,0.249982,0,0);}
.m2f_c00284{transform:matrix(0.324912,0.002924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.324912,0.002924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.324912,0.002924,-0.002250,0.249990,0,0);}
.m13d_c00284{transform:matrix(0.331001,0.003972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.331001,0.003972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.331001,0.003972,-0.003000,0.249982,0,0);}
.m50_c00284{transform:matrix(0.332457,0.002992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.332457,0.002992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.332457,0.002992,-0.002250,0.249990,0,0);}
.m133_c00284{transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);}
.m132_c00284{transform:matrix(0.343859,0.003782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.343859,0.003782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.343859,0.003782,-0.002750,0.249985,0,0);}
.m5d_c00284{transform:matrix(0.345178,0.003452,-0.002500,0.249988,0,0);-ms-transform:matrix(0.345178,0.003452,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.345178,0.003452,-0.002500,0.249988,0,0);}
.m4a_c00284{transform:matrix(0.348671,0.003138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.348671,0.003138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.348671,0.003138,-0.002250,0.249990,0,0);}
.m6_c00284{transform:matrix(0.366195,0.003296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.366195,0.003296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.366195,0.003296,-0.002250,0.249990,0,0);}
.m5_c00284{transform:matrix(0.380950,0.003429,-0.002250,0.249990,0,0);-ms-transform:matrix(0.380950,0.003429,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.380950,0.003429,-0.002250,0.249990,0,0);}
.m0_c00284{transform:matrix(0.382000,0.003438,-0.002250,0.249990,0,0);-ms-transform:matrix(0.382000,0.003438,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.382000,0.003438,-0.002250,0.249990,0,0);}
.m137_c00284{transform:matrix(0.397791,0.004376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.397791,0.004376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.397791,0.004376,-0.002750,0.249985,0,0);}
.mb6_c00284{transform:matrix(0.400610,0.004006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.400610,0.004006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.400610,0.004006,-0.002500,0.249988,0,0);}
.ma6_c00284{transform:matrix(0.401655,0.004017,-0.002500,0.249988,0,0);-ms-transform:matrix(0.401655,0.004017,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.401655,0.004017,-0.002500,0.249988,0,0);}
.m13c_c00284{transform:matrix(0.407911,0.004895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.407911,0.004895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.407911,0.004895,-0.003000,0.249982,0,0);}
.m4_c00284{transform:matrix(0.408288,0.003675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.408288,0.003675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.408288,0.003675,-0.002250,0.249990,0,0);}
.ma9_c00284{transform:matrix(0.411299,0.004113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.411299,0.004113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.411299,0.004113,-0.002500,0.249988,0,0);}
.m118_c00284{transform:matrix(0.414899,0.004149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.414899,0.004149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.414899,0.004149,-0.002500,0.249988,0,0);}
.m3_c00284{transform:matrix(0.452142,0.004069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.452142,0.004069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.452142,0.004069,-0.002250,0.249990,0,0);}
.m1_c00284{transform:matrix(0.467701,0.004209,-0.002250,0.249990,0,0);-ms-transform:matrix(0.467701,0.004209,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.467701,0.004209,-0.002250,0.249990,0,0);}
.m13b_c00284{transform:matrix(0.516893,0.006203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.516893,0.006203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.516893,0.006203,-0.003000,0.249982,0,0);}
.m136_c00284{transform:matrix(0.556146,0.006118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.556146,0.006118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.556146,0.006118,-0.002750,0.249985,0,0);}
.m13a_c00284{transform:matrix(0.665622,0.007987,-0.003000,0.249982,0,0);-ms-transform:matrix(0.665622,0.007987,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.665622,0.007987,-0.003000,0.249982,0,0);}
.m143_c00284{transform:matrix(0.712614,0.008551,-0.003000,0.249982,0,0);-ms-transform:matrix(0.712614,0.008551,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.712614,0.008551,-0.003000,0.249982,0,0);}
.m141_c00284{transform:matrix(0.749571,0.008995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.749571,0.008995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.749571,0.008995,-0.003000,0.249982,0,0);}
.m13f_c00284{transform:matrix(0.816861,0.009802,-0.003000,0.249982,0,0);-ms-transform:matrix(0.816861,0.009802,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.816861,0.009802,-0.003000,0.249982,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;}
.fs2_c00284{font-size:24.150000px;}
.fs10_c00284{font-size:33.600000px;}
.fs14_c00284{font-size:39.902873px;}
.fs11_c00284{font-size:50.404939px;}
.fs15_c00284{font-size:55.654007px;}
.fs13_c00284{font-size:57.753494px;}
.fsf_c00284{font-size:66.153307px;}
.fse_c00284{font-size:67.203360px;}
.fs4_c00284{font-size:69.302807px;}
.fs6_c00284{font-size:70.353517px;}
.fsa_c00284{font-size:70.354256px;}
.fs9_c00284{font-size:71.402892px;}
.fsb_c00284{font-size:71.403570px;}
.fs12_c00284{font-size:71.404320px;}
.fs7_c00284{font-size:71.405141px;}
.fs8_c00284{font-size:72.452934px;}
.fsc_c00284{font-size:72.453622px;}
.fs3_c00284{font-size:73.502977px;}
.fsd_c00284{font-size:76.653832px;}
.fs5_c00284{font-size:82.953359px;}
.fs1_c00284{font-size:86.103487px;}
.fs0_c00284{font-size:135.455486px;}
.y0_c00284{bottom:0.000000px;}
.y145_c00284{bottom:96.448056px;}
.y144_c00284{bottom:96.860328px;}
.y143_c00284{bottom:99.936720px;}
.y142_c00284{bottom:100.104288px;}
.y141_c00284{bottom:101.312868px;}
.y140_c00284{bottom:114.734712px;}
.y13f_c00284{bottom:114.752784px;}
.y13e_c00284{bottom:114.987414px;}
.y13d_c00284{bottom:115.483638px;}
.y13c_c00284{bottom:118.507476px;}
.y13b_c00284{bottom:119.653500px;}
.y139_c00284{bottom:124.852029px;}
.y13a_c00284{bottom:124.852079px;}
.y138_c00284{bottom:141.996190px;}
.y137_c00284{bottom:143.756575px;}
.y136_c00284{bottom:144.245487px;}
.y135_c00284{bottom:145.607430px;}
.y134_c00284{bottom:146.120877px;}
.y133_c00284{bottom:146.893159px;}
.y132_c00284{bottom:147.151500px;}
.y131_c00284{bottom:163.810641px;}
.y130_c00284{bottom:164.030280px;}
.y12f_c00284{bottom:164.801064px;}
.y12e_c00284{bottom:165.197397px;}
.y12d_c00284{bottom:165.656583px;}
.y12c_c00284{bottom:166.023957px;}
.y12b_c00284{bottom:166.429992px;}
.y12a_c00284{bottom:166.626048px;}
.y129_c00284{bottom:167.881365px;}
.y128_c00284{bottom:168.108186px;}
.y127_c00284{bottom:168.513234px;}
.y126_c00284{bottom:168.751500px;}
.y125_c00284{bottom:182.379000px;}
.y124_c00284{bottom:214.473660px;}
.y123_c00284{bottom:214.715325px;}
.y122_c00284{bottom:215.172780px;}
.y121_c00284{bottom:215.606370px;}
.y120_c00284{bottom:216.049200px;}
.y11f_c00284{bottom:216.431775px;}
.y11e_c00284{bottom:216.660870px;}
.y11d_c00284{bottom:217.282200px;}
.y11c_c00284{bottom:217.754640px;}
.y11b_c00284{bottom:217.943460px;}
.y11a_c00284{bottom:218.714400px;}
.y119_c00284{bottom:219.130320px;}
.y118_c00284{bottom:219.505320px;}
.y117_c00284{bottom:237.406020px;}
.y116_c00284{bottom:237.628035px;}
.y115_c00284{bottom:237.977580px;}
.y114_c00284{bottom:238.574835px;}
.y113_c00284{bottom:238.990395px;}
.y112_c00284{bottom:239.269650px;}
.y111_c00284{bottom:239.790210px;}
.y110_c00284{bottom:240.167145px;}
.y10f_c00284{bottom:240.550455px;}
.y10e_c00284{bottom:241.013745px;}
.y10d_c00284{bottom:241.346220px;}
.y10c_c00284{bottom:241.851660px;}
.y10b_c00284{bottom:242.184540px;}
.y10a_c00284{bottom:259.224390px;}
.y109_c00284{bottom:259.593285px;}
.y108_c00284{bottom:259.936305px;}
.y107_c00284{bottom:260.636595px;}
.y106_c00284{bottom:261.146520px;}
.y105_c00284{bottom:261.756120px;}
.y104_c00284{bottom:262.290180px;}
.y103_c00284{bottom:262.809345px;}
.y102_c00284{bottom:263.161635px;}
.y101_c00284{bottom:263.443665px;}
.y100_c00284{bottom:263.667420px;}
.yff_c00284{bottom:264.273045px;}
.yfe_c00284{bottom:264.865875px;}
.yfd_c00284{bottom:282.353325px;}
.yfc_c00284{bottom:282.907260px;}
.yfb_c00284{bottom:283.222365px;}
.yfa_c00284{bottom:283.658295px;}
.yf9_c00284{bottom:283.931640px;}
.yf8_c00284{bottom:284.713320px;}
.yf7_c00284{bottom:284.949825px;}
.yf6_c00284{bottom:285.214140px;}
.yf5_c00284{bottom:285.843945px;}
.yf4_c00284{bottom:286.407705px;}
.yf3_c00284{bottom:286.681650px;}
.yf2_c00284{bottom:287.276265px;}
.yf1_c00284{bottom:304.882230px;}
.yf0_c00284{bottom:305.517930px;}
.yef_c00284{bottom:306.299280px;}
.yee_c00284{bottom:306.730965px;}
.yed_c00284{bottom:307.359210px;}
.yec_c00284{bottom:307.679970px;}
.yeb_c00284{bottom:308.137695px;}
.yea_c00284{bottom:308.769285px;}
.ye9_c00284{bottom:309.076860px;}
.ye8_c00284{bottom:309.608220px;}
.ye7_c00284{bottom:310.048890px;}
.ye6_c00284{bottom:310.499265px;}
.ye5_c00284{bottom:327.147690px;}
.ye4_c00284{bottom:328.206870px;}
.ye3_c00284{bottom:328.626570px;}
.ye2_c00284{bottom:329.151270px;}
.ye1_c00284{bottom:329.696220px;}
.ye0_c00284{bottom:330.028755px;}
.ydf_c00284{bottom:330.978720px;}
.yde_c00284{bottom:331.336590px;}
.ydd_c00284{bottom:331.714605px;}
.ydc_c00284{bottom:331.929390px;}
.ydb_c00284{bottom:332.466660px;}
.yda_c00284{bottom:333.290655px;}
.yd9_c00284{bottom:333.721455px;}
.yd8_c00284{bottom:350.967450px;}
.yd7_c00284{bottom:351.525240px;}
.yd6_c00284{bottom:351.803595px;}
.yd5_c00284{bottom:352.185165px;}
.yd4_c00284{bottom:352.566840px;}
.yd3_c00284{bottom:352.997370px;}
.yd2_c00284{bottom:353.622090px;}
.yd1_c00284{bottom:353.858700px;}
.yd0_c00284{bottom:354.435300px;}
.ycf_c00284{bottom:354.911775px;}
.yce_c00284{bottom:355.128600px;}
.ycd_c00284{bottom:355.640895px;}
.ycc_c00284{bottom:356.017065px;}
.ycb_c00284{bottom:356.334180px;}
.yca_c00284{bottom:374.196525px;}
.yc9_c00284{bottom:374.621160px;}
.yc8_c00284{bottom:375.268815px;}
.yc7_c00284{bottom:375.690660px;}
.yc6_c00284{bottom:376.142100px;}
.yc5_c00284{bottom:376.545300px;}
.yc4_c00284{bottom:376.892685px;}
.yc3_c00284{bottom:377.338245px;}
.yc2_c00284{bottom:378.024645px;}
.yc1_c00284{bottom:378.342150px;}
.yc0_c00284{bottom:378.604125px;}
.ybf_c00284{bottom:379.079595px;}
.ybe_c00284{bottom:396.487935px;}
.ybd_c00284{bottom:396.681405px;}
.ybc_c00284{bottom:396.919050px;}
.ybb_c00284{bottom:397.440075px;}
.yba_c00284{bottom:398.034105px;}
.yb9_c00284{bottom:398.168130px;}
.yb8_c00284{bottom:398.740125px;}
.yb7_c00284{bottom:399.118155px;}
.yb6_c00284{bottom:399.270810px;}
.yb5_c00284{bottom:399.686190px;}
.yb4_c00284{bottom:400.696500px;}
.yb3_c00284{bottom:420.389115px;}
.yb2_c00284{bottom:421.539900px;}
.yb1_c00284{bottom:423.430770px;}
.yb0_c00284{bottom:423.763830px;}
.yaf_c00284{bottom:424.145595px;}
.yae_c00284{bottom:424.436190px;}
.yad_c00284{bottom:443.142135px;}
.yac_c00284{bottom:443.612040px;}
.yab_c00284{bottom:443.687805px;}
.yaa_c00284{bottom:444.052050px;}
.ya9_c00284{bottom:444.219330px;}
.ya8_c00284{bottom:444.997110px;}
.ya7_c00284{bottom:445.169880px;}
.ya6_c00284{bottom:445.274280px;}
.ya5_c00284{bottom:445.607415px;}
.ya4_c00284{bottom:445.820625px;}
.ya3_c00284{bottom:446.430900px;}
.ya2_c00284{bottom:446.768490px;}
.ya1_c00284{bottom:447.386730px;}
.ya0_c00284{bottom:465.631350px;}
.y9f_c00284{bottom:465.836970px;}
.y9e_c00284{bottom:466.055580px;}
.y9d_c00284{bottom:466.814430px;}
.y9c_c00284{bottom:467.057445px;}
.y9b_c00284{bottom:467.662245px;}
.y9a_c00284{bottom:467.924130px;}
.y99_c00284{bottom:468.707220px;}
.y98_c00284{bottom:468.969195px;}
.y97_c00284{bottom:469.384980px;}
.y96_c00284{bottom:469.787265px;}
.y95_c00284{bottom:470.068110px;}
.y94_c00284{bottom:488.631915px;}
.y93_c00284{bottom:489.485220px;}
.y92_c00284{bottom:489.796230px;}
.y91_c00284{bottom:490.303500px;}
.y90_c00284{bottom:490.777545px;}
.y8f_c00284{bottom:491.423880px;}
.y8e_c00284{bottom:491.767065px;}
.y8d_c00284{bottom:491.932785px;}
.y8c_c00284{bottom:492.209070px;}
.y8b_c00284{bottom:510.809565px;}
.y8a_c00284{bottom:511.363545px;}
.y89_c00284{bottom:511.565985px;}
.y88_c00284{bottom:511.894965px;}
.y87_c00284{bottom:512.480895px;}
.y86_c00284{bottom:512.994405px;}
.y85_c00284{bottom:513.452925px;}
.y84_c00284{bottom:513.742380px;}
.y83_c00284{bottom:514.347225px;}
.y82_c00284{bottom:514.638810px;}
.y81_c00284{bottom:515.175945px;}
.y80_c00284{bottom:515.429520px;}
.y7f_c00284{bottom:533.755095px;}
.y7e_c00284{bottom:534.462465px;}
.y7d_c00284{bottom:534.673050px;}
.y7c_c00284{bottom:534.926895px;}
.y7b_c00284{bottom:535.396695px;}
.y7a_c00284{bottom:535.776945px;}
.y79_c00284{bottom:536.228040px;}
.y78_c00284{bottom:536.503755px;}
.y77_c00284{bottom:536.973660px;}
.y76_c00284{bottom:537.151395px;}
.y75_c00284{bottom:537.702660px;}
.y74_c00284{bottom:538.380510px;}
.y73_c00284{bottom:556.525290px;}
.y72_c00284{bottom:556.938390px;}
.y71_c00284{bottom:557.356890px;}
.y70_c00284{bottom:557.532300px;}
.y6f_c00284{bottom:557.915760px;}
.y6e_c00284{bottom:558.486075px;}
.y6d_c00284{bottom:558.885090px;}
.y6c_c00284{bottom:559.319520px;}
.y6b_c00284{bottom:559.946295px;}
.y6a_c00284{bottom:561.061500px;}
.y69_c00284{bottom:587.516748px;}
.y68_c00284{bottom:588.012036px;}
.y67_c00284{bottom:588.238818px;}
.y66_c00284{bottom:588.685902px;}
.y65_c00284{bottom:589.229754px;}
.y64_c00284{bottom:589.608384px;}
.y63_c00284{bottom:590.292564px;}
.y62_c00284{bottom:591.031500px;}
.y61_c00284{bottom:609.532335px;}
.y60_c00284{bottom:610.161915px;}
.y5f_c00284{bottom:610.272090px;}
.y5e_c00284{bottom:610.566705px;}
.y5d_c00284{bottom:611.184870px;}
.y5c_c00284{bottom:611.565450px;}
.y5b_c00284{bottom:612.111045px;}
.y5a_c00284{bottom:612.367500px;}
.y59_c00284{bottom:631.604511px;}
.y58_c00284{bottom:632.118354px;}
.y57_c00284{bottom:632.444543px;}
.y56_c00284{bottom:632.771936px;}
.y55_c00284{bottom:633.309473px;}
.y54_c00284{bottom:633.819751px;}
.y53_c00284{bottom:634.101951px;}
.y52_c00284{bottom:634.536000px;}
.y51_c00284{bottom:654.098527px;}
.y50_c00284{bottom:655.036599px;}
.y4f_c00284{bottom:655.542876px;}
.y4e_c00284{bottom:656.035147px;}
.y4d_c00284{bottom:657.377180px;}
.y4c_c00284{bottom:657.886955px;}
.y4b_c00284{bottom:658.531892px;}
.y4a_c00284{bottom:676.014391px;}
.y49_c00284{bottom:676.517469px;}
.y48_c00284{bottom:676.735764px;}
.y47_c00284{bottom:677.076328px;}
.y46_c00284{bottom:677.428341px;}
.y45_c00284{bottom:677.601492px;}
.y44_c00284{bottom:678.320610px;}
.y43_c00284{bottom:678.580593px;}
.y42_c00284{bottom:678.864566px;}
.y41_c00284{bottom:679.080876px;}
.y40_c00284{bottom:679.591500px;}
.y3f_c00284{bottom:699.371628px;}
.y3e_c00284{bottom:699.798570px;}
.y3d_c00284{bottom:700.363374px;}
.y3c_c00284{bottom:700.599714px;}
.y3b_c00284{bottom:701.451114px;}
.y3a_c00284{bottom:701.892348px;}
.y39_c00284{bottom:702.391200px;}
.y38_c00284{bottom:703.081500px;}
.y37_c00284{bottom:722.486235px;}
.y36_c00284{bottom:722.890950px;}
.y35_c00284{bottom:723.095865px;}
.y34_c00284{bottom:723.320655px;}
.y33_c00284{bottom:724.038840px;}
.y32_c00284{bottom:724.529940px;}
.y31_c00284{bottom:724.951500px;}
.y30_c00284{bottom:753.701544px;}
.y2f_c00284{bottom:754.312008px;}
.y2e_c00284{bottom:754.557151px;}
.y2d_c00284{bottom:754.975883px;}
.y2c_c00284{bottom:755.154208px;}
.y2b_c00284{bottom:755.991562px;}
.y2a_c00284{bottom:756.210906px;}
.y29_c00284{bottom:756.451095px;}
.y28_c00284{bottom:757.110028px;}
.y27_c00284{bottom:757.350406px;}
.y26_c00284{bottom:775.959639px;}
.y25_c00284{bottom:776.737614px;}
.y24_c00284{bottom:776.915548px;}
.y23_c00284{bottom:777.668964px;}
.y22_c00284{bottom:777.838648px;}
.y21_c00284{bottom:778.067685px;}
.y20_c00284{bottom:778.328760px;}
.y1f_c00284{bottom:778.582396px;}
.y1e_c00284{bottom:779.653998px;}
.y1d_c00284{bottom:779.940091px;}
.y1c_c00284{bottom:780.299362px;}
.y1b_c00284{bottom:798.300849px;}
.y1a_c00284{bottom:798.978292px;}
.y19_c00284{bottom:799.282802px;}
.y18_c00284{bottom:799.825042px;}
.y17_c00284{bottom:800.539021px;}
.y16_c00284{bottom:800.804121px;}
.y15_c00284{bottom:801.233586px;}
.y14_c00284{bottom:801.581569px;}
.y13_c00284{bottom:801.797374px;}
.y12_c00284{bottom:802.710322px;}
.y11_c00284{bottom:820.909851px;}
.y10_c00284{bottom:821.172304px;}
.yf_c00284{bottom:822.013138px;}
.ye_c00284{bottom:822.581839px;}
.yd_c00284{bottom:823.126402px;}
.yc_c00284{bottom:823.723980px;}
.yb_c00284{bottom:823.981506px;}
.ya_c00284{bottom:824.324149px;}
.y9_c00284{bottom:824.851500px;}
.y8_c00284{bottom:848.070000px;}
.y7_c00284{bottom:868.173066px;}
.y6_c00284{bottom:870.171268px;}
.y5_c00284{bottom:870.916007px;}
.y4_c00284{bottom:872.102224px;}
.y3_c00284{bottom:908.302035px;}
.y2_c00284{bottom:912.208368px;}
.y1_c00284{bottom:912.873000px;}
.h4_c00284{height:24.150000px;}
.h12_c00284{height:33.600000px;}
.h16_c00284{height:39.902873px;}
.h13_c00284{height:50.404939px;}
.h17_c00284{height:55.654007px;}
.h15_c00284{height:57.753494px;}
.h11_c00284{height:66.153307px;}
.h10_c00284{height:67.203360px;}
.h6_c00284{height:69.302807px;}
.h8_c00284{height:70.353517px;}
.hc_c00284{height:70.354256px;}
.hb_c00284{height:71.402892px;}
.hd_c00284{height:71.403570px;}
.h14_c00284{height:71.404320px;}
.h9_c00284{height:71.405141px;}
.ha_c00284{height:72.452934px;}
.he_c00284{height:72.453622px;}
.h5_c00284{height:73.502977px;}
.hf_c00284{height:76.653832px;}
.h7_c00284{height:82.953359px;}
.h3_c00284{height:86.103487px;}
.h2_c00284{height:135.455486px;}
.h1_c00284{height:1005.000000px;}
.h0_c00284{height:1005.150000px;}
.w0_c00284{width:702.540000px;}
.w1_c00284{width:702.750000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:66.427500px;}
.xa9_c00284{left:78.380145px;}
.x71_c00284{left:81.145005px;}
.x26_c00284{left:83.569014px;}
.x69_c00284{left:85.232595px;}
.x5b_c00284{left:86.541000px;}
.x12_c00284{left:88.153591px;}
.x9_c00284{left:90.055500px;}
.xb4_c00284{left:96.786000px;}
.x27_c00284{left:107.610798px;}
.xaa_c00284{left:108.667845px;}
.x6a_c00284{left:110.590095px;}
.x72_c00284{left:111.923820px;}
.x78_c00284{left:114.354630px;}
.x3c_c00284{left:118.416000px;}
.x35_c00284{left:119.464500px;}
.x2f_c00284{left:121.332000px;}
.x4a_c00284{left:122.443500px;}
.x1c_c00284{left:123.810564px;}
.x8f_c00284{left:126.490515px;}
.x73_c00284{left:130.296000px;}
.xa5_c00284{left:131.305800px;}
.xb9_c00284{left:136.215000px;}
.xa0_c00284{left:139.170150px;}
.x2_c00284{left:140.275500px;}
.x86_c00284{left:141.840690px;}
.x50_c00284{left:145.363500px;}
.x7e_c00284{left:147.555285px;}
.xa_c00284{left:148.650000px;}
.x90_c00284{left:150.287775px;}
.x1d_c00284{left:152.431807px;}
.x62_c00284{left:154.048185px;}
.xad_c00284{left:156.717300px;}
.x9d_c00284{left:159.144390px;}
.x4b_c00284{left:161.902500px;}
.x30_c00284{left:163.488000px;}
.x74_c00284{left:168.364875px;}
.x87_c00284{left:169.596135px;}
.x28_c00284{left:173.491704px;}
.x3d_c00284{left:175.152000px;}
.x36_c00284{left:176.989500px;}
.x13_c00284{left:179.424768px;}
.x7f_c00284{left:181.314285px;}
.x55_c00284{left:185.089500px;}
.xb_c00284{left:186.721500px;}
.x6b_c00284{left:193.462095px;}
.x79_c00284{left:196.161630px;}
.x29_c00284{left:197.512488px;}
.x3e_c00284{left:199.186500px;}
.x14_c00284{left:201.069579px;}
.x95_c00284{left:202.896255px;}
.x4_c00284{left:204.991316px;}
.xba_c00284{left:206.422500px;}
.x63_c00284{left:209.174685px;}
.x31_c00284{left:212.598000px;}
.xc_c00284{left:215.335500px;}
.x2a_c00284{left:219.383786px;}
.x7a_c00284{left:222.359130px;}
.x97_c00284{left:223.933410px;}
.x64_c00284{left:226.948185px;}
.x9e_c00284{left:229.086495px;}
.x3f_c00284{left:230.739000px;}
.x4c_c00284{left:233.946000px;}
.x15_c00284{left:235.900768px;}
.x51_c00284{left:237.981000px;}
.x75_c00284{left:240.199095px;}
.x56_c00284{left:242.104500px;}
.xae_c00284{left:243.992430px;}
.xb5_c00284{left:248.604000px;}
.x89_c00284{left:249.891000px;}
.x98_c00284{left:250.933830px;}
.x6c_c00284{left:253.946595px;}
.x37_c00284{left:255.330000px;}
.xb3_c00284{left:258.660000px;}
.x1e_c00284{left:259.664349px;}
.x5c_c00284{left:260.739000px;}
.xab_c00284{left:261.817815px;}
.x80_c00284{left:263.662785px;}
.x8a_c00284{left:265.156500px;}
.xa1_c00284{left:272.569815px;}
.x57_c00284{left:273.657000px;}
.x99_c00284{left:276.519810px;}
.x16_c00284{left:278.785377px;}
.xc3_c00284{left:280.619448px;}
.xd_c00284{left:281.733000px;}
.x4d_c00284{left:282.813000px;}
.x1f_c00284{left:285.012620px;}
.x46_c00284{left:286.090090px;}
.x96_c00284{left:290.652000px;}
.x76_c00284{left:292.854120px;}
.x81_c00284{left:296.976285px;}
.x52_c00284{left:299.797500px;}
.x65_c00284{left:301.510185px;}
.x5_c00284{left:303.790643px;}
.x17_c00284{left:305.240634px;}
.x32_c00284{left:306.895500px;}
.x20_c00284{left:311.187390px;}
.x4e_c00284{left:312.576000px;}
.x91_c00284{left:313.621140px;}
.xb6_c00284{left:317.851500px;}
.x47_c00284{left:318.951822px;}
.x2b_c00284{left:320.902868px;}
.x82_c00284{left:324.693285px;}
.x38_c00284{left:326.280000px;}
.x33_c00284{left:327.387000px;}
.x53_c00284{left:329.259000px;}
.x21_c00284{left:334.135688px;}
.x40_c00284{left:339.528000px;}
.xa6_c00284{left:341.144115px;}
.xe_c00284{left:342.240000px;}
.x5d_c00284{left:344.083500px;}
.x39_c00284{left:345.975000px;}
.x77_c00284{left:349.281690px;}
.x22_c00284{left:351.156039px;}
.x48_c00284{left:352.702999px;}
.x58_c00284{left:356.235000px;}
.x41_c00284{left:358.767000px;}
.x8b_c00284{left:360.159000px;}
.x2c_c00284{left:362.761490px;}
.xaf_c00284{left:364.127715px;}
.x6_c00284{left:365.870969px;}
.x34_c00284{left:367.858500px;}
.x8c_c00284{left:373.561500px;}
.x59_c00284{left:375.133500px;}
.x18_c00284{left:376.570986px;}
.xb7_c00284{left:378.960000px;}
.x6d_c00284{left:380.095095px;}
.x66_c00284{left:384.644685px;}
.x2d_c00284{left:387.332774px;}
.x4f_c00284{left:388.942500px;}
.x92_c00284{left:391.434375px;}
.x3a_c00284{left:393.042000px;}
.x42_c00284{left:397.879500px;}
.xb0_c00284{left:398.934870px;}
.x5e_c00284{left:401.115000px;}
.x54_c00284{left:403.234500px;}
.xf_c00284{left:405.429000px;}
.x9a_c00284{left:407.059590px;}
.x7b_c00284{left:411.638130px;}
.xa2_c00284{left:414.052905px;}
.x49_c00284{left:415.263125px;}
.x5a_c00284{left:416.407500px;}
.x83_c00284{left:419.199285px;}
.xbb_c00284{left:421.359000px;}
.x88_c00284{left:423.056565px;}
.x23_c00284{left:426.534864px;}
.x3b_c00284{left:428.620500px;}
.x93_c00284{left:429.718485px;}
.x19_c00284{left:430.819500px;}
.x8d_c00284{left:432.964500px;}
.xa7_c00284{left:434.344740px;}
.x43_c00284{left:435.720000px;}
.x5f_c00284{left:439.461000px;}
.x24_c00284{left:444.305202px;}
.x2e_c00284{left:448.328220px;}
.xb8_c00284{left:449.704500px;}
.xa3_c00284{left:453.745515px;}
.x84_c00284{left:455.623785px;}
.x60_c00284{left:457.002000px;}
.x44_c00284{left:459.975000px;}
.x1a_c00284{left:461.320230px;}
.x85_c00284{left:463.200285px;}
.x6e_c00284{left:471.586095px;}
.x9b_c00284{left:474.496890px;}
.x67_c00284{left:478.067685px;}
.xa4_c00284{left:482.405730px;}
.x8e_c00284{left:485.067000px;}
.x7c_c00284{left:487.523130px;}
.x94_c00284{left:488.633400px;}
.x6f_c00284{left:491.830095px;}
.x10_c00284{left:498.855000px;}
.x9f_c00284{left:499.916565px;}
.xbd_c00284{left:507.893044px;}
.x7d_c00284{left:509.384130px;}
.xac_c00284{left:512.877810px;}
.x45_c00284{left:515.872500px;}
.xb1_c00284{left:520.171155px;}
.x25_c00284{left:522.079500px;}
.x11_c00284{left:528.016500px;}
.x1b_c00284{left:529.091122px;}
.x7_c00284{left:532.388973px;}
.x61_c00284{left:540.162000px;}
.xb2_c00284{left:542.087430px;}
.xbf_c00284{left:544.729500px;}
.x70_c00284{left:547.228095px;}
.x68_c00284{left:548.804685px;}
.x9c_c00284{left:550.111860px;}
.xa8_c00284{left:552.012885px;}
.x8_c00284{left:553.500000px;}
.x3_c00284{left:574.312500px;}
.xbc_c00284{left:581.394000px;}
.xc0_c00284{left:586.081500px;}
.xbe_c00284{left:588.898346px;}
.xc1_c00284{left:605.634000px;}
.xc2_c00284{left:607.140000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.fs2_c00284{font-size:21.466667pt;}
.fs10_c00284{font-size:29.866667pt;}
.fs14_c00284{font-size:35.469220pt;}
.fs11_c00284{font-size:44.804390pt;}
.fs15_c00284{font-size:49.470228pt;}
.fs13_c00284{font-size:51.336439pt;}
.fsf_c00284{font-size:58.802940pt;}
.fse_c00284{font-size:59.736320pt;}
.fs4_c00284{font-size:61.602495pt;}
.fs6_c00284{font-size:62.536460pt;}
.fsa_c00284{font-size:62.537116pt;}
.fs9_c00284{font-size:63.469237pt;}
.fsb_c00284{font-size:63.469840pt;}
.fs12_c00284{font-size:63.470506pt;}
.fs7_c00284{font-size:63.471236pt;}
.fs8_c00284{font-size:64.402608pt;}
.fsc_c00284{font-size:64.403220pt;}
.fs3_c00284{font-size:65.335979pt;}
.fsd_c00284{font-size:68.136740pt;}
.fs5_c00284{font-size:73.736319pt;}
.fs1_c00284{font-size:76.536433pt;}
.fs0_c00284{font-size:120.404876pt;}
.y0_c00284{bottom:0.000000pt;}
.y145_c00284{bottom:85.731605pt;}
.y144_c00284{bottom:86.098069pt;}
.y143_c00284{bottom:88.832640pt;}
.y142_c00284{bottom:88.981589pt;}
.y141_c00284{bottom:90.055883pt;}
.y140_c00284{bottom:101.986411pt;}
.y13f_c00284{bottom:102.002475pt;}
.y13e_c00284{bottom:102.211035pt;}
.y13d_c00284{bottom:102.652123pt;}
.y13c_c00284{bottom:105.339979pt;}
.y13b_c00284{bottom:106.358667pt;}
.y139_c00284{bottom:110.979581pt;}
.y13a_c00284{bottom:110.979625pt;}
.y138_c00284{bottom:126.218836pt;}
.y137_c00284{bottom:127.783623pt;}
.y136_c00284{bottom:128.218211pt;}
.y135_c00284{bottom:129.428827pt;}
.y134_c00284{bottom:129.885224pt;}
.y133_c00284{bottom:130.571697pt;}
.y132_c00284{bottom:130.801333pt;}
.y131_c00284{bottom:145.609459pt;}
.y130_c00284{bottom:145.804693pt;}
.y12f_c00284{bottom:146.489835pt;}
.y12e_c00284{bottom:146.842131pt;}
.y12d_c00284{bottom:147.250296pt;}
.y12c_c00284{bottom:147.576851pt;}
.y12b_c00284{bottom:147.937771pt;}
.y12a_c00284{bottom:148.112043pt;}
.y129_c00284{bottom:149.227880pt;}
.y128_c00284{bottom:149.429499pt;}
.y127_c00284{bottom:149.789541pt;}
.y126_c00284{bottom:150.001333pt;}
.y125_c00284{bottom:162.114667pt;}
.y124_c00284{bottom:190.643253pt;}
.y123_c00284{bottom:190.858067pt;}
.y122_c00284{bottom:191.264693pt;}
.y121_c00284{bottom:191.650107pt;}
.y120_c00284{bottom:192.043733pt;}
.y11f_c00284{bottom:192.383800pt;}
.y11e_c00284{bottom:192.587440pt;}
.y11d_c00284{bottom:193.139733pt;}
.y11c_c00284{bottom:193.559680pt;}
.y11b_c00284{bottom:193.727520pt;}
.y11a_c00284{bottom:194.412800pt;}
.y119_c00284{bottom:194.782507pt;}
.y118_c00284{bottom:195.115840pt;}
.y117_c00284{bottom:211.027573pt;}
.y116_c00284{bottom:211.224920pt;}
.y115_c00284{bottom:211.535627pt;}
.y114_c00284{bottom:212.066520pt;}
.y113_c00284{bottom:212.435907pt;}
.y112_c00284{bottom:212.684133pt;}
.y111_c00284{bottom:213.146853pt;}
.y110_c00284{bottom:213.481907pt;}
.y10f_c00284{bottom:213.822627pt;}
.y10e_c00284{bottom:214.234440pt;}
.y10d_c00284{bottom:214.529973pt;}
.y10c_c00284{bottom:214.979253pt;}
.y10b_c00284{bottom:215.275147pt;}
.y10a_c00284{bottom:230.421680pt;}
.y109_c00284{bottom:230.749587pt;}
.y108_c00284{bottom:231.054493pt;}
.y107_c00284{bottom:231.676973pt;}
.y106_c00284{bottom:232.130240pt;}
.y105_c00284{bottom:232.672107pt;}
.y104_c00284{bottom:233.146827pt;}
.y103_c00284{bottom:233.608307pt;}
.y102_c00284{bottom:233.921453pt;}
.y101_c00284{bottom:234.172147pt;}
.y100_c00284{bottom:234.371040pt;}
.yff_c00284{bottom:234.909373pt;}
.yfe_c00284{bottom:235.436333pt;}
.yfd_c00284{bottom:250.980733pt;}
.yfc_c00284{bottom:251.473120pt;}
.yfb_c00284{bottom:251.753213pt;}
.yfa_c00284{bottom:252.140707pt;}
.yf9_c00284{bottom:252.383680pt;}
.yf8_c00284{bottom:253.078507pt;}
.yf7_c00284{bottom:253.288733pt;}
.yf6_c00284{bottom:253.523680pt;}
.yf5_c00284{bottom:254.083507pt;}
.yf4_c00284{bottom:254.584627pt;}
.yf3_c00284{bottom:254.828133pt;}
.yf2_c00284{bottom:255.356680pt;}
.yf1_c00284{bottom:271.006427pt;}
.yf0_c00284{bottom:271.571493pt;}
.yef_c00284{bottom:272.266027pt;}
.yee_c00284{bottom:272.649747pt;}
.yed_c00284{bottom:273.208187pt;}
.yec_c00284{bottom:273.493307pt;}
.yeb_c00284{bottom:273.900173pt;}
.yea_c00284{bottom:274.461587pt;}
.ye9_c00284{bottom:274.734987pt;}
.ye8_c00284{bottom:275.207307pt;}
.ye7_c00284{bottom:275.599013pt;}
.ye6_c00284{bottom:275.999347pt;}
.ye5_c00284{bottom:290.797947pt;}
.ye4_c00284{bottom:291.739440pt;}
.ye3_c00284{bottom:292.112507pt;}
.ye2_c00284{bottom:292.578907pt;}
.ye1_c00284{bottom:293.063307pt;}
.ye0_c00284{bottom:293.358893pt;}
.ydf_c00284{bottom:294.203307pt;}
.yde_c00284{bottom:294.521413pt;}
.ydd_c00284{bottom:294.857427pt;}
.ydc_c00284{bottom:295.048347pt;}
.ydb_c00284{bottom:295.525920pt;}
.yda_c00284{bottom:296.258360pt;}
.yd9_c00284{bottom:296.641293pt;}
.yd8_c00284{bottom:311.971067pt;}
.yd7_c00284{bottom:312.466880pt;}
.yd6_c00284{bottom:312.714307pt;}
.yd5_c00284{bottom:313.053480pt;}
.yd4_c00284{bottom:313.392747pt;}
.yd3_c00284{bottom:313.775440pt;}
.yd2_c00284{bottom:314.330747pt;}
.yd1_c00284{bottom:314.541067pt;}
.yd0_c00284{bottom:315.053600pt;}
.ycf_c00284{bottom:315.477133pt;}
.yce_c00284{bottom:315.669867pt;}
.ycd_c00284{bottom:316.125240pt;}
.ycc_c00284{bottom:316.459613pt;}
.ycb_c00284{bottom:316.741493pt;}
.yca_c00284{bottom:332.619133pt;}
.yc9_c00284{bottom:332.996587pt;}
.yc8_c00284{bottom:333.572280pt;}
.yc7_c00284{bottom:333.947253pt;}
.yc6_c00284{bottom:334.348533pt;}
.yc5_c00284{bottom:334.706933pt;}
.yc4_c00284{bottom:335.015720pt;}
.yc3_c00284{bottom:335.411773pt;}
.yc2_c00284{bottom:336.021907pt;}
.yc1_c00284{bottom:336.304133pt;}
.yc0_c00284{bottom:336.537000pt;}
.ybf_c00284{bottom:336.959640pt;}
.ybe_c00284{bottom:352.433720pt;}
.ybd_c00284{bottom:352.605693pt;}
.ybc_c00284{bottom:352.816933pt;}
.ybb_c00284{bottom:353.280067pt;}
.yba_c00284{bottom:353.808093pt;}
.yb9_c00284{bottom:353.927227pt;}
.yb8_c00284{bottom:354.435667pt;}
.yb7_c00284{bottom:354.771693pt;}
.yb6_c00284{bottom:354.907387pt;}
.yb5_c00284{bottom:355.276613pt;}
.yb4_c00284{bottom:356.174667pt;}
.yb3_c00284{bottom:373.679213pt;}
.yb2_c00284{bottom:374.702133pt;}
.yb1_c00284{bottom:376.382907pt;}
.yb0_c00284{bottom:376.678960pt;}
.yaf_c00284{bottom:377.018307pt;}
.yae_c00284{bottom:377.276613pt;}
.yad_c00284{bottom:393.904120pt;}
.yac_c00284{bottom:394.321813pt;}
.yab_c00284{bottom:394.389160pt;}
.yaa_c00284{bottom:394.712933pt;}
.ya9_c00284{bottom:394.861627pt;}
.ya8_c00284{bottom:395.552987pt;}
.ya7_c00284{bottom:395.706560pt;}
.ya6_c00284{bottom:395.799360pt;}
.ya5_c00284{bottom:396.095480pt;}
.ya4_c00284{bottom:396.285000pt;}
.ya3_c00284{bottom:396.827467pt;}
.ya2_c00284{bottom:397.127547pt;}
.ya1_c00284{bottom:397.677093pt;}
.ya0_c00284{bottom:413.894533pt;}
.y9f_c00284{bottom:414.077307pt;}
.y9e_c00284{bottom:414.271627pt;}
.y9d_c00284{bottom:414.946160pt;}
.y9c_c00284{bottom:415.162173pt;}
.y9b_c00284{bottom:415.699773pt;}
.y9a_c00284{bottom:415.932560pt;}
.y99_c00284{bottom:416.628640pt;}
.y98_c00284{bottom:416.861507pt;}
.y97_c00284{bottom:417.231093pt;}
.y96_c00284{bottom:417.588680pt;}
.y95_c00284{bottom:417.838320pt;}
.y94_c00284{bottom:434.339480pt;}
.y93_c00284{bottom:435.097973pt;}
.y92_c00284{bottom:435.374427pt;}
.y91_c00284{bottom:435.825333pt;}
.y90_c00284{bottom:436.246707pt;}
.y8f_c00284{bottom:436.821227pt;}
.y8e_c00284{bottom:437.126280pt;}
.y8d_c00284{bottom:437.273587pt;}
.y8c_c00284{bottom:437.519173pt;}
.y8b_c00284{bottom:454.052947pt;}
.y8a_c00284{bottom:454.545373pt;}
.y89_c00284{bottom:454.725320pt;}
.y88_c00284{bottom:455.017747pt;}
.y87_c00284{bottom:455.538573pt;}
.y86_c00284{bottom:455.995027pt;}
.y85_c00284{bottom:456.402600pt;}
.y84_c00284{bottom:456.659893pt;}
.y83_c00284{bottom:457.197533pt;}
.y82_c00284{bottom:457.456720pt;}
.y81_c00284{bottom:457.934173pt;}
.y80_c00284{bottom:458.159573pt;}
.y7f_c00284{bottom:474.448973pt;}
.y7e_c00284{bottom:475.077747pt;}
.y7d_c00284{bottom:475.264933pt;}
.y7c_c00284{bottom:475.490573pt;}
.y7b_c00284{bottom:475.908173pt;}
.y7a_c00284{bottom:476.246173pt;}
.y79_c00284{bottom:476.647147pt;}
.y78_c00284{bottom:476.892227pt;}
.y77_c00284{bottom:477.309920pt;}
.y76_c00284{bottom:477.467907pt;}
.y75_c00284{bottom:477.957920pt;}
.y74_c00284{bottom:478.560453pt;}
.y73_c00284{bottom:494.689147pt;}
.y72_c00284{bottom:495.056347pt;}
.y71_c00284{bottom:495.428347pt;}
.y70_c00284{bottom:495.584267pt;}
.y6f_c00284{bottom:495.925120pt;}
.y6e_c00284{bottom:496.432067pt;}
.y6d_c00284{bottom:496.786747pt;}
.y6c_c00284{bottom:497.172907pt;}
.y6b_c00284{bottom:497.730040pt;}
.y6a_c00284{bottom:498.721333pt;}
.y69_c00284{bottom:522.237109pt;}
.y68_c00284{bottom:522.677365pt;}
.y67_c00284{bottom:522.878949pt;}
.y66_c00284{bottom:523.276357pt;}
.y65_c00284{bottom:523.759781pt;}
.y64_c00284{bottom:524.096341pt;}
.y63_c00284{bottom:524.704501pt;}
.y62_c00284{bottom:525.361333pt;}
.y61_c00284{bottom:541.806520pt;}
.y60_c00284{bottom:542.366147pt;}
.y5f_c00284{bottom:542.464080pt;}
.y5e_c00284{bottom:542.725960pt;}
.y5d_c00284{bottom:543.275440pt;}
.y5c_c00284{bottom:543.613733pt;}
.y5b_c00284{bottom:544.098707pt;}
.y5a_c00284{bottom:544.326667pt;}
.y59_c00284{bottom:561.426232pt;}
.y58_c00284{bottom:561.882981pt;}
.y57_c00284{bottom:562.172927pt;}
.y56_c00284{bottom:562.463943pt;}
.y55_c00284{bottom:562.941753pt;}
.y54_c00284{bottom:563.395335pt;}
.y53_c00284{bottom:563.646179pt;}
.y52_c00284{bottom:564.032000pt;}
.y51_c00284{bottom:581.420913pt;}
.y50_c00284{bottom:582.254755pt;}
.y4f_c00284{bottom:582.704779pt;}
.y4e_c00284{bottom:583.142353pt;}
.y4d_c00284{bottom:584.335271pt;}
.y4c_c00284{bottom:584.788404pt;}
.y4b_c00284{bottom:585.361681pt;}
.y4a_c00284{bottom:600.901681pt;}
.y49_c00284{bottom:601.348861pt;}
.y48_c00284{bottom:601.542901pt;}
.y47_c00284{bottom:601.845625pt;}
.y46_c00284{bottom:602.158525pt;}
.y45_c00284{bottom:602.312437pt;}
.y44_c00284{bottom:602.951653pt;}
.y43_c00284{bottom:603.182749pt;}
.y42_c00284{bottom:603.435169pt;}
.y41_c00284{bottom:603.627445pt;}
.y40_c00284{bottom:604.081333pt;}
.y3f_c00284{bottom:621.663669pt;}
.y3e_c00284{bottom:622.043173pt;}
.y3d_c00284{bottom:622.545221pt;}
.y3c_c00284{bottom:622.755301pt;}
.y3b_c00284{bottom:623.512101pt;}
.y3a_c00284{bottom:623.904309pt;}
.y39_c00284{bottom:624.347733pt;}
.y38_c00284{bottom:624.961333pt;}
.y37_c00284{bottom:642.209987pt;}
.y36_c00284{bottom:642.569733pt;}
.y35_c00284{bottom:642.751880pt;}
.y34_c00284{bottom:642.951693pt;}
.y33_c00284{bottom:643.590080pt;}
.y32_c00284{bottom:644.026613pt;}
.y31_c00284{bottom:644.401333pt;}
.y30_c00284{bottom:669.956928pt;}
.y2f_c00284{bottom:670.499563pt;}
.y2e_c00284{bottom:670.717468pt;}
.y2d_c00284{bottom:671.089673pt;}
.y2c_c00284{bottom:671.248185pt;}
.y2b_c00284{bottom:671.992500pt;}
.y2a_c00284{bottom:672.187472pt;}
.y29_c00284{bottom:672.400973pt;}
.y28_c00284{bottom:672.986692pt;}
.y27_c00284{bottom:673.200361pt;}
.y26_c00284{bottom:689.741901pt;}
.y25_c00284{bottom:690.433435pt;}
.y24_c00284{bottom:690.591599pt;}
.y23_c00284{bottom:691.261301pt;}
.y22_c00284{bottom:691.412132pt;}
.y21_c00284{bottom:691.615720pt;}
.y20_c00284{bottom:691.847787pt;}
.y1f_c00284{bottom:692.073241pt;}
.y1e_c00284{bottom:693.025776pt;}
.y1d_c00284{bottom:693.280081pt;}
.y1c_c00284{bottom:693.599433pt;}
.y1b_c00284{bottom:709.600755pt;}
.y1a_c00284{bottom:710.202927pt;}
.y19_c00284{bottom:710.473601pt;}
.y18_c00284{bottom:710.955593pt;}
.y17_c00284{bottom:711.590241pt;}
.y16_c00284{bottom:711.825885pt;}
.y15_c00284{bottom:712.207632pt;}
.y14_c00284{bottom:712.516951pt;}
.y13_c00284{bottom:712.708777pt;}
.y12_c00284{bottom:713.520287pt;}
.y11_c00284{bottom:729.697645pt;}
.y10_c00284{bottom:729.930937pt;}
.yf_c00284{bottom:730.678345pt;}
.ye_c00284{bottom:731.183857pt;}
.yd_c00284{bottom:731.667913pt;}
.yc_c00284{bottom:732.199093pt;}
.yb_c00284{bottom:732.428005pt;}
.ya_c00284{bottom:732.732577pt;}
.y9_c00284{bottom:733.201333pt;}
.y8_c00284{bottom:753.840000pt;}
.y7_c00284{bottom:771.709392pt;}
.y6_c00284{bottom:773.485572pt;}
.y5_c00284{bottom:774.147561pt;}
.y4_c00284{bottom:775.201977pt;}
.y3_c00284{bottom:807.379587pt;}
.y2_c00284{bottom:810.851883pt;}
.y1_c00284{bottom:811.442667pt;}
.h4_c00284{height:21.466667pt;}
.h12_c00284{height:29.866667pt;}
.h16_c00284{height:35.469220pt;}
.h13_c00284{height:44.804390pt;}
.h17_c00284{height:49.470228pt;}
.h15_c00284{height:51.336439pt;}
.h11_c00284{height:58.802940pt;}
.h10_c00284{height:59.736320pt;}
.h6_c00284{height:61.602495pt;}
.h8_c00284{height:62.536460pt;}
.hc_c00284{height:62.537116pt;}
.hb_c00284{height:63.469237pt;}
.hd_c00284{height:63.469840pt;}
.h14_c00284{height:63.470506pt;}
.h9_c00284{height:63.471236pt;}
.ha_c00284{height:64.402608pt;}
.he_c00284{height:64.403220pt;}
.h5_c00284{height:65.335979pt;}
.hf_c00284{height:68.136740pt;}
.h7_c00284{height:73.736319pt;}
.h3_c00284{height:76.536433pt;}
.h2_c00284{height:120.404876pt;}
.h1_c00284{height:893.333333pt;}
.h0_c00284{height:893.466667pt;}
.w0_c00284{width:624.480000pt;}
.w1_c00284{width:624.666667pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:59.046667pt;}
.xa9_c00284{left:69.671240pt;}
.x71_c00284{left:72.128893pt;}
.x26_c00284{left:74.283568pt;}
.x69_c00284{left:75.762307pt;}
.x5b_c00284{left:76.925333pt;}
.x12_c00284{left:78.358748pt;}
.x9_c00284{left:80.049333pt;}
.xb4_c00284{left:86.032000pt;}
.x27_c00284{left:95.654043pt;}
.xaa_c00284{left:96.593640pt;}
.x6a_c00284{left:98.302307pt;}
.x72_c00284{left:99.487840pt;}
.x78_c00284{left:101.648560pt;}
.x3c_c00284{left:105.258667pt;}
.x35_c00284{left:106.190667pt;}
.x2f_c00284{left:107.850667pt;}
.x4a_c00284{left:108.838667pt;}
.x1c_c00284{left:110.053835pt;}
.x8f_c00284{left:112.436013pt;}
.x73_c00284{left:115.818667pt;}
.xa5_c00284{left:116.716267pt;}
.xb9_c00284{left:121.080000pt;}
.xa0_c00284{left:123.706800pt;}
.x2_c00284{left:124.689333pt;}
.x86_c00284{left:126.080613pt;}
.x50_c00284{left:129.212000pt;}
.x7e_c00284{left:131.160253pt;}
.xa_c00284{left:132.133333pt;}
.x90_c00284{left:133.589133pt;}
.x1d_c00284{left:135.494940pt;}
.x62_c00284{left:136.931720pt;}
.xad_c00284{left:139.304267pt;}
.x9d_c00284{left:141.461680pt;}
.x4b_c00284{left:143.913333pt;}
.x30_c00284{left:145.322667pt;}
.x74_c00284{left:149.657667pt;}
.x87_c00284{left:150.752120pt;}
.x28_c00284{left:154.214848pt;}
.x3d_c00284{left:155.690667pt;}
.x36_c00284{left:157.324000pt;}
.x13_c00284{left:159.488683pt;}
.x7f_c00284{left:161.168253pt;}
.x55_c00284{left:164.524000pt;}
.xb_c00284{left:165.974667pt;}
.x6b_c00284{left:171.966307pt;}
.x79_c00284{left:174.365893pt;}
.x29_c00284{left:175.566656pt;}
.x3e_c00284{left:177.054667pt;}
.x14_c00284{left:178.728515pt;}
.x95_c00284{left:180.352227pt;}
.x4_c00284{left:182.214503pt;}
.xba_c00284{left:183.486667pt;}
.x63_c00284{left:185.933053pt;}
.x31_c00284{left:188.976000pt;}
.xc_c00284{left:191.409333pt;}
.x2a_c00284{left:195.007809pt;}
.x7a_c00284{left:197.652560pt;}
.x97_c00284{left:199.051920pt;}
.x64_c00284{left:201.731720pt;}
.x9e_c00284{left:203.632440pt;}
.x3f_c00284{left:205.101333pt;}
.x4c_c00284{left:207.952000pt;}
.x15_c00284{left:209.689572pt;}
.x51_c00284{left:211.538667pt;}
.x75_c00284{left:213.510307pt;}
.x56_c00284{left:215.204000pt;}
.xae_c00284{left:216.882160pt;}
.xb5_c00284{left:220.981333pt;}
.x89_c00284{left:222.125333pt;}
.x98_c00284{left:223.052293pt;}
.x6c_c00284{left:225.730307pt;}
.x37_c00284{left:226.960000pt;}
.xb3_c00284{left:229.920000pt;}
.x1e_c00284{left:230.812755pt;}
.x5c_c00284{left:231.768000pt;}
.xab_c00284{left:232.726947pt;}
.x80_c00284{left:234.366920pt;}
.x8a_c00284{left:235.694667pt;}
.xa1_c00284{left:242.284280pt;}
.x57_c00284{left:243.250667pt;}
.x99_c00284{left:245.795387pt;}
.x16_c00284{left:247.809224pt;}
.xc3_c00284{left:249.439509pt;}
.xd_c00284{left:250.429333pt;}
.x4d_c00284{left:251.389333pt;}
.x1f_c00284{left:253.344551pt;}
.x46_c00284{left:254.302303pt;}
.x96_c00284{left:258.357333pt;}
.x76_c00284{left:260.314773pt;}
.x81_c00284{left:263.978920pt;}
.x52_c00284{left:266.486667pt;}
.x65_c00284{left:268.009053pt;}
.x5_c00284{left:270.036127pt;}
.x17_c00284{left:271.325008pt;}
.x32_c00284{left:272.796000pt;}
.x20_c00284{left:276.611013pt;}
.x4e_c00284{left:277.845333pt;}
.x91_c00284{left:278.774347pt;}
.xb6_c00284{left:282.534667pt;}
.x47_c00284{left:283.512731pt;}
.x2b_c00284{left:285.246993pt;}
.x82_c00284{left:288.616253pt;}
.x38_c00284{left:290.026667pt;}
.x33_c00284{left:291.010667pt;}
.x53_c00284{left:292.674667pt;}
.x21_c00284{left:297.009500pt;}
.x40_c00284{left:301.802667pt;}
.xa6_c00284{left:303.239213pt;}
.xe_c00284{left:304.213333pt;}
.x5d_c00284{left:305.852000pt;}
.x39_c00284{left:307.533333pt;}
.x77_c00284{left:310.472613pt;}
.x22_c00284{left:312.138701pt;}
.x48_c00284{left:313.513777pt;}
.x58_c00284{left:316.653333pt;}
.x41_c00284{left:318.904000pt;}
.x8b_c00284{left:320.141333pt;}
.x2c_c00284{left:322.454657pt;}
.xaf_c00284{left:323.669080pt;}
.x6_c00284{left:325.218639pt;}
.x34_c00284{left:326.985333pt;}
.x8c_c00284{left:332.054667pt;}
.x59_c00284{left:333.452000pt;}
.x18_c00284{left:334.729765pt;}
.xb7_c00284{left:336.853333pt;}
.x6d_c00284{left:337.862307pt;}
.x66_c00284{left:341.906387pt;}
.x2d_c00284{left:344.295799pt;}
.x4f_c00284{left:345.726667pt;}
.x92_c00284{left:347.941667pt;}
.x3a_c00284{left:349.370667pt;}
.x42_c00284{left:353.670667pt;}
.xb0_c00284{left:354.608773pt;}
.x5e_c00284{left:356.546667pt;}
.x54_c00284{left:358.430667pt;}
.xf_c00284{left:360.381333pt;}
.x9a_c00284{left:361.830747pt;}
.x7b_c00284{left:365.900560pt;}
.xa2_c00284{left:368.047027pt;}
.x49_c00284{left:369.122777pt;}
.x5a_c00284{left:370.140000pt;}
.x83_c00284{left:372.621587pt;}
.xbb_c00284{left:374.541333pt;}
.x88_c00284{left:376.050280pt;}
.x23_c00284{left:379.142101pt;}
.x3b_c00284{left:380.996000pt;}
.x93_c00284{left:381.971987pt;}
.x19_c00284{left:382.950667pt;}
.x8d_c00284{left:384.857333pt;}
.xa7_c00284{left:386.084213pt;}
.x43_c00284{left:387.306667pt;}
.x5f_c00284{left:390.632000pt;}
.x24_c00284{left:394.937957pt;}
.x2e_c00284{left:398.513973pt;}
.xb8_c00284{left:399.737333pt;}
.xa3_c00284{left:403.329347pt;}
.x84_c00284{left:404.998920pt;}
.x60_c00284{left:406.224000pt;}
.x44_c00284{left:408.866667pt;}
.x1a_c00284{left:410.062427pt;}
.x85_c00284{left:411.733587pt;}
.x6e_c00284{left:419.187640pt;}
.x9b_c00284{left:421.775013pt;}
.x67_c00284{left:424.949053pt;}
.xa4_c00284{left:428.805093pt;}
.x8e_c00284{left:431.170667pt;}
.x7c_c00284{left:433.353893pt;}
.x94_c00284{left:434.340800pt;}
.x6f_c00284{left:437.182307pt;}
.x10_c00284{left:443.426667pt;}
.x9f_c00284{left:444.370280pt;}
.xbd_c00284{left:451.460484pt;}
.x7d_c00284{left:452.785893pt;}
.xac_c00284{left:455.891387pt;}
.x45_c00284{left:458.553333pt;}
.xb1_c00284{left:462.374360pt;}
.x25_c00284{left:464.070667pt;}
.x11_c00284{left:469.348000pt;}
.x1b_c00284{left:470.303220pt;}
.x7_c00284{left:473.234643pt;}
.x61_c00284{left:480.144000pt;}
.xb2_c00284{left:481.855493pt;}
.xbf_c00284{left:484.204000pt;}
.x70_c00284{left:486.424973pt;}
.x68_c00284{left:487.826387pt;}
.x9c_c00284{left:488.988320pt;}
.xa8_c00284{left:490.678120pt;}
.x8_c00284{left:492.000000pt;}
.x3_c00284{left:510.500000pt;}
.xbc_c00284{left:516.794667pt;}
.xc0_c00284{left:520.961333pt;}
.xbe_c00284{left:523.465196pt;}
.xc1_c00284{left:538.341333pt;}
.xc2_c00284{left:539.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7e_c00285{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);}
.m9a_c00285{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.md5_c00285{transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);}
.m42_c00285{transform:matrix(0.014920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014920,0.000000,0.000000,0.250000,0,0);}
.med_c00285{transform:matrix(0.017410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017410,0.000000,0.000000,0.250000,0,0);}
.mec_c00285{transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);}
.me9_c00285{transform:matrix(0.028380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028380,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);}
.m53_c00285{transform:matrix(0.070225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070225,0.000000,0.000000,0.250000,0,0);}
.mee_c00285{transform:matrix(0.095065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095065,0.000000,0.000000,0.250000,0,0);}
.mc8_c00285{transform:matrix(0.097942,-0.000784,0.002000,0.249992,0,0);-ms-transform:matrix(0.097942,-0.000784,0.002000,0.249992,0,0);-webkit-transform:matrix(0.097942,-0.000784,0.002000,0.249992,0,0);}
.m45_c00285{transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);}
.me0_c00285{transform:matrix(0.113247,0.001359,-0.003000,0.249982,0,0);-ms-transform:matrix(0.113247,0.001359,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.113247,0.001359,-0.003000,0.249982,0,0);}
.m7f_c00285{transform:matrix(0.113785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113785,0.000000,0.000000,0.250000,0,0);}
.mb5_c00285{transform:matrix(0.116911,-0.000935,0.002000,0.249992,0,0);-ms-transform:matrix(0.116911,-0.000935,0.002000,0.249992,0,0);-webkit-transform:matrix(0.116911,-0.000935,0.002000,0.249992,0,0);}
.m18_c00285{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.mf2_c00285{transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145080,0.000000,0.000000,0.250000,0,0);}
.m63_c00285{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);}
.m8e_c00285{transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);}
.maf_c00285{transform:matrix(0.150460,-0.001204,0.002000,0.249992,0,0);-ms-transform:matrix(0.150460,-0.001204,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150460,-0.001204,0.002000,0.249992,0,0);}
.me1_c00285{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m85_c00285{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);}
.m9_c00285{transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);-ms-transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);}
.m10_c00285{transform:matrix(0.153184,-0.001379,0.002250,0.249990,0,0);-ms-transform:matrix(0.153184,-0.001379,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153184,-0.001379,0.002250,0.249990,0,0);}
.m9c_c00285{transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00285{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);}
.m95_c00285{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);}
.m5a_c00285{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);}
.mad_c00285{transform:matrix(0.160205,-0.001282,0.002000,0.249992,0,0);-ms-transform:matrix(0.160205,-0.001282,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160205,-0.001282,0.002000,0.249992,0,0);}
.m2c_c00285{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);}
.m22_c00285{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);}
.m41_c00285{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);}
.mbb_c00285{transform:matrix(0.163520,-0.001308,0.002000,0.249992,0,0);-ms-transform:matrix(0.163520,-0.001308,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163520,-0.001308,0.002000,0.249992,0,0);}
.m37_c00285{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);}
.m1f_c00285{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);}
.me_c00285{transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);-ms-transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);}
.m12_c00285{transform:matrix(0.167553,-0.001508,0.002250,0.249990,0,0);-ms-transform:matrix(0.167553,-0.001508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167553,-0.001508,0.002250,0.249990,0,0);}
.m59_c00285{transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);}
.md3_c00285{transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);}
.md7_c00285{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);}
.mf4_c00285{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);}
.m8a_c00285{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);}
.m2d_c00285{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);}
.m20_c00285{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);}
.m21_c00285{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);}
.m70_c00285{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);}
.m33_c00285{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);}
.m1b_c00285{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);}
.m31_c00285{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);}
.m87_c00285{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);}
.m16_c00285{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);}
.ma6_c00285{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);}
.m1d_c00285{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);}
.m32_c00285{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);}
.m9d_c00285{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);}
.ma5_c00285{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);}
.mc6_c00285{transform:matrix(0.177784,-0.001422,0.002000,0.249992,0,0);-ms-transform:matrix(0.177784,-0.001422,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177784,-0.001422,0.002000,0.249992,0,0);}
.mf_c00285{transform:matrix(0.179133,-0.001612,0.002250,0.249990,0,0);-ms-transform:matrix(0.179133,-0.001612,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179133,-0.001612,0.002250,0.249990,0,0);}
.m55_c00285{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);}
.m30_c00285{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);}
.m28_c00285{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);}
.m5d_c00285{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);}
.mf5_c00285{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);}
.m15_c00285{transform:matrix(0.180933,-0.001628,0.002250,0.249990,0,0);-ms-transform:matrix(0.180933,-0.001628,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180933,-0.001628,0.002250,0.249990,0,0);}
.ma4_c00285{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_c00285{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);}
.mcd_c00285{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);}
.m97_c00285{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);}
.m71_c00285{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);}
.md_c00285{transform:matrix(0.183773,-0.001654,0.002250,0.249990,0,0);-ms-transform:matrix(0.183773,-0.001654,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183773,-0.001654,0.002250,0.249990,0,0);}
.mb1_c00285{transform:matrix(0.183984,-0.001472,0.002000,0.249992,0,0);-ms-transform:matrix(0.183984,-0.001472,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183984,-0.001472,0.002000,0.249992,0,0);}
.ma_c00285{transform:matrix(0.184268,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184268,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184268,-0.001658,0.002250,0.249990,0,0);}
.m88_c00285{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);}
.m5b_c00285{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);}
.m6f_c00285{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);}
.m57_c00285{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);}
.ma3_c00285{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);}
.m61_c00285{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);}
.ma2_c00285{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);}
.m56_c00285{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);}
.m6c_c00285{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);}
.me2_c00285{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);}
.mf3_c00285{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);}
.m91_c00285{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);}
.m13_c00285{transform:matrix(0.189387,-0.001704,0.002250,0.249990,0,0);-ms-transform:matrix(0.189387,-0.001704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189387,-0.001704,0.002250,0.249990,0,0);}
.m5_c00285{transform:matrix(0.189447,-0.001705,0.002250,0.249990,0,0);-ms-transform:matrix(0.189447,-0.001705,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189447,-0.001705,0.002250,0.249990,0,0);}
.mf1_c00285{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);}
.m64_c00285{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);}
.m27_c00285{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);}
.m58_c00285{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);}
.m3f_c00285{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);}
.m39_c00285{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);}
.mcc_c00285{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);}
.meb_c00285{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);}
.m7d_c00285{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);}
.ma7_c00285{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);}
.m11_c00285{transform:matrix(0.191942,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191942,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191942,-0.001727,0.002250,0.249990,0,0);}
.m40_c00285{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);}
.m34_c00285{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);}
.m4_c00285{transform:matrix(0.194112,-0.001747,0.002250,0.249990,0,0);-ms-transform:matrix(0.194112,-0.001747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194112,-0.001747,0.002250,0.249990,0,0);}
.m60_c00285{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);}
.m5f_c00285{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);}
.m8_c00285{transform:matrix(0.194802,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194802,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194802,-0.001753,0.002250,0.249990,0,0);}
.m7c_c00285{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);}
.m8b_c00285{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);}
.m3e_c00285{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);}
.mb4_c00285{transform:matrix(0.197269,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197269,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197269,-0.001578,0.002000,0.249992,0,0);}
.m5e_c00285{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);}
.m1c_c00285{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);}
.m3d_c00285{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);}
.mca_c00285{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);}
.ma9_c00285{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_c00285{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);}
.md9_c00285{transform:matrix(0.199961,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199961,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199961,0.002400,-0.003000,0.249982,0,0);}
.m9b_c00285{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);}
.m7a_c00285{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);}
.m4c_c00285{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);}
.md0_c00285{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);}
.mac_c00285{transform:matrix(0.202144,-0.001617,0.002000,0.249992,0,0);-ms-transform:matrix(0.202144,-0.001617,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202144,-0.001617,0.002000,0.249992,0,0);}
.m29_c00285{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);}
.mb2_c00285{transform:matrix(0.203913,-0.001631,0.002000,0.249992,0,0);-ms-transform:matrix(0.203913,-0.001631,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203913,-0.001631,0.002000,0.249992,0,0);}
.m35_c00285{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);}
.m79_c00285{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);}
.m8d_c00285{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);}
.mb3_c00285{transform:matrix(0.205648,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205648,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205648,-0.001645,0.002000,0.249992,0,0);}
.m23_c00285{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);}
.m5c_c00285{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);}
.m48_c00285{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);}
.mb9_c00285{transform:matrix(0.209643,-0.001677,0.002000,0.249992,0,0);-ms-transform:matrix(0.209643,-0.001677,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209643,-0.001677,0.002000,0.249992,0,0);}
.m43_c00285{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);}
.m19_c00285{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);}
.m26_c00285{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);}
.m84_c00285{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);}
.maa_c00285{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);}
.mae_c00285{transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);}
.mde_c00285{transform:matrix(0.211285,0.002535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211285,0.002535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211285,0.002535,-0.003000,0.249982,0,0);}
.mf0_c00285{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);}
.m7b_c00285{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);}
.m67_c00285{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);}
.m86_c00285{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);}
.m2_c00285{transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);-ms-transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);}
.m2a_c00285{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);}
.m83_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);}
.me3_c00285{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);}
.m9e_c00285{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);}
.m51_c00285{transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);}
.m38_c00285{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);}
.mb0_c00285{transform:matrix(0.218453,-0.001748,0.002000,0.249992,0,0);-ms-transform:matrix(0.218453,-0.001748,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218453,-0.001748,0.002000,0.249992,0,0);}
.m90_c00285{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);}
.m3a_c00285{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);}
.m81_c00285{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);}
.mb_c00285{transform:matrix(0.223141,-0.002008,0.002250,0.249990,0,0);-ms-transform:matrix(0.223141,-0.002008,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223141,-0.002008,0.002250,0.249990,0,0);}
.m4e_c00285{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);}
.m14_c00285{transform:matrix(0.224541,-0.002021,0.002250,0.249990,0,0);-ms-transform:matrix(0.224541,-0.002021,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224541,-0.002021,0.002250,0.249990,0,0);}
.m98_c00285{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);}
.mdb_c00285{transform:matrix(0.226224,0.002715,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226224,0.002715,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226224,0.002715,-0.003000,0.249982,0,0);}
.mab_c00285{transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);-ms-transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);}
.ma1_c00285{transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);}
.mbf_c00285{transform:matrix(0.227978,-0.001824,0.002000,0.249992,0,0);-ms-transform:matrix(0.227978,-0.001824,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227978,-0.001824,0.002000,0.249992,0,0);}
.m82_c00285{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);}
.mc_c00285{transform:matrix(0.231421,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231421,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231421,-0.002083,0.002250,0.249990,0,0);}
.m25_c00285{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);}
.mba_c00285{transform:matrix(0.231788,-0.001854,0.002000,0.249992,0,0);-ms-transform:matrix(0.231788,-0.001854,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231788,-0.001854,0.002000,0.249992,0,0);}
.m72_c00285{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);}
.m1e_c00285{transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);}
.mc0_c00285{transform:matrix(0.238752,-0.001910,0.002000,0.249992,0,0);-ms-transform:matrix(0.238752,-0.001910,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238752,-0.001910,0.002000,0.249992,0,0);}
.mb7_c00285{transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);-ms-transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);}
.m6e_c00285{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);}
.md6_c00285{transform:matrix(0.242133,0.002906,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242133,0.002906,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242133,0.002906,-0.003000,0.249982,0,0);}
.me4_c00285{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);}
.m36_c00285{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);}
.mc9_c00285{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);}
.m47_c00285{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m80_c00285{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);}
.m24_c00285{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);}
.m7_c00285{transform:matrix(0.248000,-0.002232,0.002250,0.249990,0,0);-ms-transform:matrix(0.248000,-0.002232,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248000,-0.002232,0.002250,0.249990,0,0);}
.m50_c00285{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);}
.mb6_c00285{transform:matrix(0.250607,-0.002005,0.002000,0.249992,0,0);-ms-transform:matrix(0.250607,-0.002005,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250607,-0.002005,0.002000,0.249992,0,0);}
.mc5_c00285{transform:matrix(0.251912,-0.002015,0.002000,0.249992,0,0);-ms-transform:matrix(0.251912,-0.002015,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251912,-0.002015,0.002000,0.249992,0,0);}
.m96_c00285{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);}
.m6a_c00285{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);}
.m65_c00285{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m78_c00285{transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);}
.m89_c00285{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.mc3_c00285{transform:matrix(0.264297,-0.002114,0.002000,0.249992,0,0);-ms-transform:matrix(0.264297,-0.002114,0.002000,0.249992,0,0);-webkit-transform:matrix(0.264297,-0.002114,0.002000,0.249992,0,0);}
.m73_c00285{transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);}
.m6d_c00285{transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);}
.mc2_c00285{transform:matrix(0.273676,-0.002189,0.002000,0.249992,0,0);-ms-transform:matrix(0.273676,-0.002189,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273676,-0.002189,0.002000,0.249992,0,0);}
.me8_c00285{transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);}
.mbc_c00285{transform:matrix(0.276091,-0.002209,0.002000,0.249992,0,0);-ms-transform:matrix(0.276091,-0.002209,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276091,-0.002209,0.002000,0.249992,0,0);}
.m74_c00285{transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);}
.me6_c00285{transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277820,0.000000,0.000000,0.250000,0,0);}
.m44_c00285{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);}
.m99_c00285{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);}
.m8f_c00285{transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280730,0.000000,0.000000,0.250000,0,0);}
.m6b_c00285{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.mc1_c00285{transform:matrix(0.286156,-0.002289,0.002000,0.249992,0,0);-ms-transform:matrix(0.286156,-0.002289,0.002000,0.249992,0,0);-webkit-transform:matrix(0.286156,-0.002289,0.002000,0.249992,0,0);}
.mbe_c00285{transform:matrix(0.292166,-0.002337,0.002000,0.249992,0,0);-ms-transform:matrix(0.292166,-0.002337,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292166,-0.002337,0.002000,0.249992,0,0);}
.m93_c00285{transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.298798,-0.002689,0.002250,0.249990,0,0);-ms-transform:matrix(0.298798,-0.002689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.298798,-0.002689,0.002250,0.249990,0,0);}
.m8c_c00285{transform:matrix(0.300130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300130,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303105,0.000000,0.000000,0.250000,0,0);}
.m9f_c00285{transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);}
.mb8_c00285{transform:matrix(0.308180,-0.002465,0.002000,0.249992,0,0);-ms-transform:matrix(0.308180,-0.002465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.308180,-0.002465,0.002000,0.249992,0,0);}
.m0_c00285{transform:matrix(0.310187,-0.002792,0.002250,0.249990,0,0);-ms-transform:matrix(0.310187,-0.002792,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310187,-0.002792,0.002250,0.249990,0,0);}
.mdf_c00285{transform:matrix(0.314047,0.003769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314047,0.003769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314047,0.003769,-0.003000,0.249982,0,0);}
.m4a_c00285{transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318875,0.000000,0.000000,0.250000,0,0);}
.m76_c00285{transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);}
.m66_c00285{transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322885,0.000000,0.000000,0.250000,0,0);}
.m94_c00285{transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);}
.md4_c00285{transform:matrix(0.327226,0.003927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.327226,0.003927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.327226,0.003927,-0.003000,0.249982,0,0);}
.m3b_c00285{transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);}
.m77_c00285{transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{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);}
.ma0_c00285{transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);}
.mbd_c00285{transform:matrix(0.351934,-0.002815,0.002000,0.249992,0,0);-ms-transform:matrix(0.351934,-0.002815,0.002000,0.249992,0,0);-webkit-transform:matrix(0.351934,-0.002815,0.002000,0.249992,0,0);}
.m75_c00285{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);}
.m3c_c00285{transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);}
.m49_c00285{transform:matrix(0.361325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361325,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.362095,-0.003259,0.002250,0.249990,0,0);-ms-transform:matrix(0.362095,-0.003259,0.002250,0.249990,0,0);-webkit-transform:matrix(0.362095,-0.003259,0.002250,0.249990,0,0);}
.mdd_c00285{transform:matrix(0.394402,0.004733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.394402,0.004733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.394402,0.004733,-0.003000,0.249982,0,0);}
.m92_c00285{transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);}
.m68_c00285{transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403990,0.000000,0.000000,0.250000,0,0);}
.md8_c00285{transform:matrix(0.411380,0.004937,-0.003000,0.249982,0,0);-ms-transform:matrix(0.411380,0.004937,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.411380,0.004937,-0.003000,0.249982,0,0);}
.m4b_c00285{transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.467791,-0.004210,0.002250,0.249990,0,0);-ms-transform:matrix(0.467791,-0.004210,0.002250,0.249990,0,0);-webkit-transform:matrix(0.467791,-0.004210,0.002250,0.249990,0,0);}
.m54_c00285{transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484340,0.000000,0.000000,0.250000,0,0);}
.mce_c00285{transform:matrix(0.484885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484885,0.000000,0.000000,0.250000,0,0);}
.mcb_c00285{transform:matrix(0.488705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488705,0.000000,0.000000,0.250000,0,0);}
.me5_c00285{transform:matrix(0.507155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507155,0.000000,0.000000,0.250000,0,0);}
.mcf_c00285{transform:matrix(0.523890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523890,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.525750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00285{transform:matrix(0.528643,-0.004229,0.002000,0.249992,0,0);-ms-transform:matrix(0.528643,-0.004229,0.002000,0.249992,0,0);-webkit-transform:matrix(0.528643,-0.004229,0.002000,0.249992,0,0);}
.mef_c00285{transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);}
.md2_c00285{transform:matrix(0.573654,0.006884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.573654,0.006884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.573654,0.006884,-0.003000,0.249982,0,0);}
.m69_c00285{transform:matrix(0.578640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578640,0.000000,0.000000,0.250000,0,0);}
.mea_c00285{transform:matrix(0.602105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602105,0.000000,0.000000,0.250000,0,0);}
.mdc_c00285{transform:matrix(0.654133,0.007850,-0.003000,0.249982,0,0);-ms-transform:matrix(0.654133,0.007850,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.654133,0.007850,-0.003000,0.249982,0,0);}
.md1_c00285{transform:matrix(0.698940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698940,0.000000,0.000000,0.250000,0,0);}
.mda_c00285{transform:matrix(0.737997,0.008856,-0.003000,0.249982,0,0);-ms-transform:matrix(0.737997,0.008856,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.737997,0.008856,-0.003000,0.249982,0,0);}
.me7_c00285{transform:matrix(0.885560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885560,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{transform:matrix(0.894535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894535,0.000000,0.000000,0.250000,0,0);}
.mc4_c00285{transform:matrix(1.200717,-0.009606,0.002000,0.249992,0,0);-ms-transform:matrix(1.200717,-0.009606,0.002000,0.249992,0,0);-webkit-transform:matrix(1.200717,-0.009606,0.002000,0.249992,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;}
.fs10_c00285{font-size:22.050000px;}
.fs6_c00285{font-size:63.000000px;}
.fs11_c00285{font-size:64.050000px;}
.fs8_c00285{font-size:65.100000px;}
.fs7_c00285{font-size:66.150000px;}
.fs9_c00285{font-size:67.200000px;}
.fsd_c00285{font-size:67.202150px;}
.fse_c00285{font-size:68.252184px;}
.fs5_c00285{font-size:69.300000px;}
.fs2_c00285{font-size:69.302807px;}
.fsf_c00285{font-size:69.304989px;}
.fs4_c00285{font-size:70.350000px;}
.fsc_c00285{font-size:70.352251px;}
.fsb_c00285{font-size:71.400000px;}
.fsa_c00285{font-size:72.450000px;}
.fs3_c00285{font-size:74.550000px;}
.fs1_c00285{font-size:91.353700px;}
.fs0_c00285{font-size:235.209525px;}
.y0_c00285{bottom:0.000000px;}
.y5d_c00285{bottom:165.184500px;}
.y5c_c00285{bottom:192.375000px;}
.y5b_c00285{bottom:219.892500px;}
.y5a_c00285{bottom:238.908000px;}
.y59_c00285{bottom:304.512630px;}
.y58_c00285{bottom:304.962828px;}
.y57_c00285{bottom:305.208150px;}
.y56_c00285{bottom:305.644398px;}
.y55_c00285{bottom:306.322170px;}
.y54_c00285{bottom:307.126950px;}
.y53_c00285{bottom:307.676436px;}
.y52_c00285{bottom:308.152644px;}
.y51_c00285{bottom:308.535252px;}
.y50_c00285{bottom:308.768442px;}
.y4f_c00285{bottom:309.313464px;}
.y4e_c00285{bottom:309.470784px;}
.y4d_c00285{bottom:309.652980px;}
.y4c_c00285{bottom:309.759234px;}
.y4b_c00285{bottom:310.132500px;}
.y4a_c00285{bottom:340.084500px;}
.y47_c00285{bottom:369.363360px;}
.y48_c00285{bottom:373.169880px;}
.y49_c00285{bottom:378.593100px;}
.y45_c00285{bottom:392.553108px;}
.y46_c00285{bottom:392.553144px;}
.y3d_c00285{bottom:392.553768px;}
.y44_c00285{bottom:392.553780px;}
.y3e_c00285{bottom:392.553996px;}
.y43_c00285{bottom:392.554080px;}
.y40_c00285{bottom:392.554236px;}
.y3c_c00285{bottom:392.554248px;}
.y41_c00285{bottom:392.554284px;}
.y3b_c00285{bottom:392.554320px;}
.y3f_c00285{bottom:392.554536px;}
.y42_c00285{bottom:392.554692px;}
.y2c_c00285{bottom:414.991500px;}
.y2d_c00285{bottom:415.235280px;}
.y2e_c00285{bottom:415.542192px;}
.y2f_c00285{bottom:415.699848px;}
.y30_c00285{bottom:416.252760px;}
.y31_c00285{bottom:416.475444px;}
.y32_c00285{bottom:416.771148px;}
.y33_c00285{bottom:417.036540px;}
.y34_c00285{bottom:417.356508px;}
.y35_c00285{bottom:417.604896px;}
.y36_c00285{bottom:417.917700px;}
.y37_c00285{bottom:418.028328px;}
.y38_c00285{bottom:418.188108px;}
.y39_c00285{bottom:418.430328px;}
.y3a_c00285{bottom:418.714608px;}
.y2b_c00285{bottom:440.307000px;}
.y2a_c00285{bottom:440.571000px;}
.y29_c00285{bottom:441.001500px;}
.y28_c00285{bottom:441.219000px;}
.y27_c00285{bottom:441.715500px;}
.y26_c00285{bottom:442.192500px;}
.y25_c00285{bottom:442.315500px;}
.y24_c00285{bottom:442.801500px;}
.y23_c00285{bottom:469.368000px;}
.y22_c00285{bottom:496.174500px;}
.y21_c00285{bottom:524.788500px;}
.y20_c00285{bottom:547.654500px;}
.y1f_c00285{bottom:570.043500px;}
.y1e_c00285{bottom:604.291500px;}
.y1d_c00285{bottom:626.571000px;}
.y1c_c00285{bottom:653.671500px;}
.y1b_c00285{bottom:677.161500px;}
.y1a_c00285{bottom:700.333500px;}
.y19_c00285{bottom:722.764500px;}
.y18_c00285{bottom:745.624500px;}
.y17_c00285{bottom:775.792500px;}
.y16_c00285{bottom:810.111073px;}
.y15_c00285{bottom:810.111117px;}
.y14_c00285{bottom:810.111280px;}
.y13_c00285{bottom:810.111954px;}
.y12_c00285{bottom:810.112027px;}
.y5_c00285{bottom:832.411500px;}
.y6_c00285{bottom:832.890304px;}
.y7_c00285{bottom:833.451256px;}
.y8_c00285{bottom:833.597245px;}
.y9_c00285{bottom:833.771935px;}
.ya_c00285{bottom:834.148936px;}
.yb_c00285{bottom:834.389587px;}
.yc_c00285{bottom:835.159870px;}
.yd_c00285{bottom:835.351530px;}
.ye_c00285{bottom:836.044080px;}
.yf_c00285{bottom:836.299554px;}
.y10_c00285{bottom:836.452401px;}
.y11_c00285{bottom:836.790292px;}
.y3_c00285{bottom:876.421725px;}
.y4_c00285{bottom:877.723198px;}
.y1_c00285{bottom:919.623000px;}
.y2_c00285{bottom:921.863582px;}
.h12_c00285{height:22.050000px;}
.h8_c00285{height:63.000000px;}
.h13_c00285{height:64.050000px;}
.ha_c00285{height:65.100000px;}
.h9_c00285{height:66.150000px;}
.hb_c00285{height:67.200000px;}
.hf_c00285{height:67.202150px;}
.h10_c00285{height:68.252184px;}
.h7_c00285{height:69.300000px;}
.h4_c00285{height:69.302807px;}
.h11_c00285{height:69.304989px;}
.h6_c00285{height:70.350000px;}
.he_c00285{height:70.352251px;}
.hd_c00285{height:71.400000px;}
.hc_c00285{height:72.450000px;}
.h5_c00285{height:74.550000px;}
.h3_c00285{height:91.353700px;}
.h2_c00285{height:235.209525px;}
.h0_c00285{height:1008.450000px;}
.h1_c00285{height:1008.750000px;}
.w0_c00285{width:696.000000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:101.269500px;}
.x3_c00285{left:154.687607px;}
.x5_c00285{left:155.914500px;}
.x89_c00285{left:157.458840px;}
.x8d_c00285{left:161.034000px;}
.x1d_c00285{left:169.560000px;}
.x70_c00285{left:170.640000px;}
.x7a_c00285{left:175.612500px;}
.x95_c00285{left:178.200000px;}
.x65_c00285{left:185.760000px;}
.x5f_c00285{left:186.840000px;}
.x16_c00285{left:192.780000px;}
.x71_c00285{left:196.290000px;}
.x12_c00285{left:198.724647px;}
.x56_c00285{left:199.800000px;}
.x8e_c00285{left:200.994000px;}
.x4c_c00285{left:206.820000px;}
.x26_c00285{left:207.900000px;}
.x6_c00285{left:209.115000px;}
.x1e_c00285{left:214.110000px;}
.x39_c00285{left:216.540000px;}
.x60_c00285{left:218.430000px;}
.x3a_c00285{left:221.130000px;}
.x83_c00285{left:225.451176px;}
.x27_c00285{left:228.690000px;}
.x3b_c00285{left:234.360000px;}
.x13_c00285{left:235.986171px;}
.x8a_c00285{left:237.870000px;}
.x7b_c00285{left:244.449000px;}
.x4_c00285{left:247.624922px;}
.x57_c00285{left:250.560000px;}
.x46_c00285{left:251.640000px;}
.x72_c00285{left:253.260000px;}
.x61_c00285{left:255.960000px;}
.x3c_c00285{left:259.200000px;}
.x14_c00285{left:261.636750px;}
.x7c_c00285{left:264.156000px;}
.x1f_c00285{left:265.410000px;}
.x79_c00285{left:269.088000px;}
.x4d_c00285{left:270.270000px;}
.x7_c00285{left:271.443000px;}
.x66_c00285{left:275.670000px;}
.x15_c00285{left:282.966978px;}
.x8_c00285{left:287.664000px;}
.x28_c00285{left:290.790000px;}
.x62_c00285{left:293.220000px;}
.x17_c00285{left:295.650000px;}
.x58_c00285{left:297.000000px;}
.x29_c00285{left:299.160000px;}
.x73_c00285{left:301.860000px;}
.x9_c00285{left:307.074000px;}
.x49_c00285{left:308.880000px;}
.x30_c00285{left:310.230000px;}
.x67_c00285{left:312.930000px;}
.x3d_c00285{left:315.900000px;}
.x96_c00285{left:317.250000px;}
.x8f_c00285{left:326.022000px;}
.x59_c00285{left:327.510000px;}
.x74_c00285{left:329.400000px;}
.x20_c00285{left:331.020000px;}
.x7d_c00285{left:333.270000px;}
.x68_c00285{left:336.420000px;}
.x2a_c00285{left:343.440000px;}
.x84_c00285{left:346.957452px;}
.xa_c00285{left:348.963000px;}
.x2_c00285{left:350.223000px;}
.x18_c00285{left:355.320000px;}
.x21_c00285{left:357.210000px;}
.x31_c00285{left:360.720000px;}
.x3e_c00285{left:364.770000px;}
.x75_c00285{left:369.360000px;}
.x5a_c00285{left:371.520000px;}
.xb_c00285{left:375.702000px;}
.x32_c00285{left:378.540000px;}
.x3f_c00285{left:382.050000px;}
.x45_c00285{left:384.210000px;}
.x4e_c00285{left:389.340000px;}
.x19_c00285{left:391.230000px;}
.x4f_c00285{left:398.520000px;}
.x40_c00285{left:402.300000px;}
.x69_c00285{left:404.190000px;}
.x5b_c00285{left:405.810000px;}
.x1a_c00285{left:410.400000px;}
.x90_c00285{left:411.496500px;}
.x4a_c00285{left:413.640000px;}
.x33_c00285{left:418.500000px;}
.x50_c00285{left:424.170000px;}
.x47_c00285{left:425.520000px;}
.x76_c00285{left:427.680000px;}
.x85_c00285{left:428.769684px;}
.x7e_c00285{left:431.242500px;}
.x63_c00285{left:432.270000px;}
.x22_c00285{left:437.940000px;}
.x97_c00285{left:439.560000px;}
.x5c_c00285{left:441.990000px;}
.x6a_c00285{left:445.500000px;}
.x41_c00285{left:450.090000px;}
.x2b_c00285{left:451.440000px;}
.x1b_c00285{left:453.600000px;}
.x98_c00285{left:459.810000px;}
.xc_c00285{left:461.289000px;}
.x48_c00285{left:462.780000px;}
.x77_c00285{left:464.400000px;}
.x51_c00285{left:466.830000px;}
.x8b_c00285{left:469.800000px;}
.x34_c00285{left:471.150000px;}
.x23_c00285{left:474.120000px;}
.x4b_c00285{left:477.090000px;}
.x86_c00285{left:478.721388px;}
.x64_c00285{left:480.330000px;}
.xd_c00285{left:482.584500px;}
.x2c_c00285{left:484.110000px;}
.x6b_c00285{left:485.460000px;}
.x52_c00285{left:488.430000px;}
.x8c_c00285{left:496.260000px;}
.x24_c00285{left:499.500000px;}
.x78_c00285{left:501.390000px;}
.x5d_c00285{left:505.170000px;}
.x2d_c00285{left:510.570000px;}
.x1c_c00285{left:514.890000px;}
.x99_c00285{left:522.720000px;}
.x53_c00285{left:524.610000px;}
.x35_c00285{left:530.280000px;}
.x91_c00285{left:535.042500px;}
.x87_c00285{left:539.203764px;}
.x7f_c00285{left:541.387500px;}
.x2e_c00285{left:542.700000px;}
.x80_c00285{left:555.216000px;}
.x5e_c00285{left:558.090000px;}
.xe_c00285{left:559.534500px;}
.x36_c00285{left:565.380000px;}
.x6c_c00285{left:566.730000px;}
.x92_c00285{left:571.396500px;}
.x81_c00285{left:575.188500px;}
.x54_c00285{left:579.420000px;}
.x25_c00285{left:583.470000px;}
.x42_c00285{left:585.360000px;}
.xf_c00285{left:587.920500px;}
.x93_c00285{left:591.840000px;}
.x55_c00285{left:599.130000px;}
.x10_c00285{left:604.903500px;}
.x2f_c00285{left:607.770000px;}
.x37_c00285{left:614.250000px;}
.x88_c00285{left:617.775792px;}
.x6d_c00285{left:622.080000px;}
.x94_c00285{left:629.356500px;}
.x82_c00285{left:641.001000px;}
.x11_c00285{left:642.447000px;}
.x43_c00285{left:644.760000px;}
.x6e_c00285{left:650.430000px;}
.x38_c00285{left:662.850000px;}
.x6f_c00285{left:664.470000px;}
.x44_c00285{left:666.090000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fs10_c00285{font-size:19.600000pt;}
.fs6_c00285{font-size:56.000000pt;}
.fs11_c00285{font-size:56.933333pt;}
.fs8_c00285{font-size:57.866667pt;}
.fs7_c00285{font-size:58.800000pt;}
.fs9_c00285{font-size:59.733333pt;}
.fsd_c00285{font-size:59.735245pt;}
.fse_c00285{font-size:60.668608pt;}
.fs5_c00285{font-size:61.600000pt;}
.fs2_c00285{font-size:61.602495pt;}
.fsf_c00285{font-size:61.604435pt;}
.fs4_c00285{font-size:62.533333pt;}
.fsc_c00285{font-size:62.535334pt;}
.fsb_c00285{font-size:63.466667pt;}
.fsa_c00285{font-size:64.400000pt;}
.fs3_c00285{font-size:66.266667pt;}
.fs1_c00285{font-size:81.203289pt;}
.fs0_c00285{font-size:209.075134pt;}
.y0_c00285{bottom:0.000000pt;}
.y5d_c00285{bottom:146.830667pt;}
.y5c_c00285{bottom:171.000000pt;}
.y5b_c00285{bottom:195.460000pt;}
.y5a_c00285{bottom:212.362667pt;}
.y59_c00285{bottom:270.677893pt;}
.y58_c00285{bottom:271.078069pt;}
.y57_c00285{bottom:271.296133pt;}
.y56_c00285{bottom:271.683909pt;}
.y55_c00285{bottom:272.286373pt;}
.y54_c00285{bottom:273.001733pt;}
.y53_c00285{bottom:273.490165pt;}
.y52_c00285{bottom:273.913461pt;}
.y51_c00285{bottom:274.253557pt;}
.y50_c00285{bottom:274.460837pt;}
.y4f_c00285{bottom:274.945301pt;}
.y4e_c00285{bottom:275.085141pt;}
.y4d_c00285{bottom:275.247093pt;}
.y4c_c00285{bottom:275.341541pt;}
.y4b_c00285{bottom:275.673333pt;}
.y4a_c00285{bottom:302.297333pt;}
.y47_c00285{bottom:328.322987pt;}
.y48_c00285{bottom:331.706560pt;}
.y49_c00285{bottom:336.527200pt;}
.y45_c00285{bottom:348.936096pt;}
.y46_c00285{bottom:348.936128pt;}
.y3d_c00285{bottom:348.936683pt;}
.y44_c00285{bottom:348.936693pt;}
.y3e_c00285{bottom:348.936885pt;}
.y43_c00285{bottom:348.936960pt;}
.y40_c00285{bottom:348.937099pt;}
.y3c_c00285{bottom:348.937109pt;}
.y41_c00285{bottom:348.937141pt;}
.y3b_c00285{bottom:348.937173pt;}
.y3f_c00285{bottom:348.937365pt;}
.y42_c00285{bottom:348.937504pt;}
.y2c_c00285{bottom:368.881333pt;}
.y2d_c00285{bottom:369.098027pt;}
.y2e_c00285{bottom:369.370837pt;}
.y2f_c00285{bottom:369.510976pt;}
.y30_c00285{bottom:370.002453pt;}
.y31_c00285{bottom:370.200395pt;}
.y32_c00285{bottom:370.463243pt;}
.y33_c00285{bottom:370.699147pt;}
.y34_c00285{bottom:370.983563pt;}
.y35_c00285{bottom:371.204352pt;}
.y36_c00285{bottom:371.482400pt;}
.y37_c00285{bottom:371.580736pt;}
.y38_c00285{bottom:371.722763pt;}
.y39_c00285{bottom:371.938069pt;}
.y3a_c00285{bottom:372.190763pt;}
.y2b_c00285{bottom:391.384000pt;}
.y2a_c00285{bottom:391.618667pt;}
.y29_c00285{bottom:392.001333pt;}
.y28_c00285{bottom:392.194667pt;}
.y27_c00285{bottom:392.636000pt;}
.y26_c00285{bottom:393.060000pt;}
.y25_c00285{bottom:393.169333pt;}
.y24_c00285{bottom:393.601333pt;}
.y23_c00285{bottom:417.216000pt;}
.y22_c00285{bottom:441.044000pt;}
.y21_c00285{bottom:466.478667pt;}
.y20_c00285{bottom:486.804000pt;}
.y1f_c00285{bottom:506.705333pt;}
.y1e_c00285{bottom:537.148000pt;}
.y1d_c00285{bottom:556.952000pt;}
.y1c_c00285{bottom:581.041333pt;}
.y1b_c00285{bottom:601.921333pt;}
.y1a_c00285{bottom:622.518667pt;}
.y19_c00285{bottom:642.457333pt;}
.y18_c00285{bottom:662.777333pt;}
.y17_c00285{bottom:689.593333pt;}
.y16_c00285{bottom:720.098732pt;}
.y15_c00285{bottom:720.098771pt;}
.y14_c00285{bottom:720.098916pt;}
.y13_c00285{bottom:720.099515pt;}
.y12_c00285{bottom:720.099580pt;}
.y5_c00285{bottom:739.921333pt;}
.y6_c00285{bottom:740.346937pt;}
.y7_c00285{bottom:740.845561pt;}
.y8_c00285{bottom:740.975329pt;}
.y9_c00285{bottom:741.130609pt;}
.ya_c00285{bottom:741.465721pt;}
.yb_c00285{bottom:741.679633pt;}
.yc_c00285{bottom:742.364329pt;}
.yd_c00285{bottom:742.534693pt;}
.ye_c00285{bottom:743.150293pt;}
.yf_c00285{bottom:743.377381pt;}
.y10_c00285{bottom:743.513245pt;}
.y11_c00285{bottom:743.813593pt;}
.y3_c00285{bottom:779.041533pt;}
.y4_c00285{bottom:780.198399pt;}
.y1_c00285{bottom:817.442667pt;}
.y2_c00285{bottom:819.434295pt;}
.h12_c00285{height:19.600000pt;}
.h8_c00285{height:56.000000pt;}
.h13_c00285{height:56.933333pt;}
.ha_c00285{height:57.866667pt;}
.h9_c00285{height:58.800000pt;}
.hb_c00285{height:59.733333pt;}
.hf_c00285{height:59.735245pt;}
.h10_c00285{height:60.668608pt;}
.h7_c00285{height:61.600000pt;}
.h4_c00285{height:61.602495pt;}
.h11_c00285{height:61.604435pt;}
.h6_c00285{height:62.533333pt;}
.he_c00285{height:62.535334pt;}
.hd_c00285{height:63.466667pt;}
.hc_c00285{height:64.400000pt;}
.h5_c00285{height:66.266667pt;}
.h3_c00285{height:81.203289pt;}
.h2_c00285{height:209.075134pt;}
.h0_c00285{height:896.400000pt;}
.h1_c00285{height:896.666667pt;}
.w0_c00285{width:618.666667pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:90.017333pt;}
.x3_c00285{left:137.500095pt;}
.x5_c00285{left:138.590667pt;}
.x89_c00285{left:139.963413pt;}
.x8d_c00285{left:143.141333pt;}
.x1d_c00285{left:150.720000pt;}
.x70_c00285{left:151.680000pt;}
.x7a_c00285{left:156.100000pt;}
.x95_c00285{left:158.400000pt;}
.x65_c00285{left:165.120000pt;}
.x5f_c00285{left:166.080000pt;}
.x16_c00285{left:171.360000pt;}
.x71_c00285{left:174.480000pt;}
.x12_c00285{left:176.644131pt;}
.x56_c00285{left:177.600000pt;}
.x8e_c00285{left:178.661333pt;}
.x4c_c00285{left:183.840000pt;}
.x26_c00285{left:184.800000pt;}
.x6_c00285{left:185.880000pt;}
.x1e_c00285{left:190.320000pt;}
.x39_c00285{left:192.480000pt;}
.x60_c00285{left:194.160000pt;}
.x3a_c00285{left:196.560000pt;}
.x83_c00285{left:200.401045pt;}
.x27_c00285{left:203.280000pt;}
.x3b_c00285{left:208.320000pt;}
.x13_c00285{left:209.765485pt;}
.x8a_c00285{left:211.440000pt;}
.x7b_c00285{left:217.288000pt;}
.x4_c00285{left:220.111041pt;}
.x57_c00285{left:222.720000pt;}
.x46_c00285{left:223.680000pt;}
.x72_c00285{left:225.120000pt;}
.x61_c00285{left:227.520000pt;}
.x3c_c00285{left:230.400000pt;}
.x14_c00285{left:232.566000pt;}
.x7c_c00285{left:234.805333pt;}
.x1f_c00285{left:235.920000pt;}
.x79_c00285{left:239.189333pt;}
.x4d_c00285{left:240.240000pt;}
.x7_c00285{left:241.282667pt;}
.x66_c00285{left:245.040000pt;}
.x15_c00285{left:251.526203pt;}
.x8_c00285{left:255.701333pt;}
.x28_c00285{left:258.480000pt;}
.x62_c00285{left:260.640000pt;}
.x17_c00285{left:262.800000pt;}
.x58_c00285{left:264.000000pt;}
.x29_c00285{left:265.920000pt;}
.x73_c00285{left:268.320000pt;}
.x9_c00285{left:272.954667pt;}
.x49_c00285{left:274.560000pt;}
.x30_c00285{left:275.760000pt;}
.x67_c00285{left:278.160000pt;}
.x3d_c00285{left:280.800000pt;}
.x96_c00285{left:282.000000pt;}
.x8f_c00285{left:289.797333pt;}
.x59_c00285{left:291.120000pt;}
.x74_c00285{left:292.800000pt;}
.x20_c00285{left:294.240000pt;}
.x7d_c00285{left:296.240000pt;}
.x68_c00285{left:299.040000pt;}
.x2a_c00285{left:305.280000pt;}
.x84_c00285{left:308.406624pt;}
.xa_c00285{left:310.189333pt;}
.x2_c00285{left:311.309333pt;}
.x18_c00285{left:315.840000pt;}
.x21_c00285{left:317.520000pt;}
.x31_c00285{left:320.640000pt;}
.x3e_c00285{left:324.240000pt;}
.x75_c00285{left:328.320000pt;}
.x5a_c00285{left:330.240000pt;}
.xb_c00285{left:333.957333pt;}
.x32_c00285{left:336.480000pt;}
.x3f_c00285{left:339.600000pt;}
.x45_c00285{left:341.520000pt;}
.x4e_c00285{left:346.080000pt;}
.x19_c00285{left:347.760000pt;}
.x4f_c00285{left:354.240000pt;}
.x40_c00285{left:357.600000pt;}
.x69_c00285{left:359.280000pt;}
.x5b_c00285{left:360.720000pt;}
.x1a_c00285{left:364.800000pt;}
.x90_c00285{left:365.774667pt;}
.x4a_c00285{left:367.680000pt;}
.x33_c00285{left:372.000000pt;}
.x50_c00285{left:377.040000pt;}
.x47_c00285{left:378.240000pt;}
.x76_c00285{left:380.160000pt;}
.x85_c00285{left:381.128608pt;}
.x7e_c00285{left:383.326667pt;}
.x63_c00285{left:384.240000pt;}
.x22_c00285{left:389.280000pt;}
.x97_c00285{left:390.720000pt;}
.x5c_c00285{left:392.880000pt;}
.x6a_c00285{left:396.000000pt;}
.x41_c00285{left:400.080000pt;}
.x2b_c00285{left:401.280000pt;}
.x1b_c00285{left:403.200000pt;}
.x98_c00285{left:408.720000pt;}
.xc_c00285{left:410.034667pt;}
.x48_c00285{left:411.360000pt;}
.x77_c00285{left:412.800000pt;}
.x51_c00285{left:414.960000pt;}
.x8b_c00285{left:417.600000pt;}
.x34_c00285{left:418.800000pt;}
.x23_c00285{left:421.440000pt;}
.x4b_c00285{left:424.080000pt;}
.x86_c00285{left:425.530123pt;}
.x64_c00285{left:426.960000pt;}
.xd_c00285{left:428.964000pt;}
.x2c_c00285{left:430.320000pt;}
.x6b_c00285{left:431.520000pt;}
.x52_c00285{left:434.160000pt;}
.x8c_c00285{left:441.120000pt;}
.x24_c00285{left:444.000000pt;}
.x78_c00285{left:445.680000pt;}
.x5d_c00285{left:449.040000pt;}
.x2d_c00285{left:453.840000pt;}
.x1c_c00285{left:457.680000pt;}
.x99_c00285{left:464.640000pt;}
.x53_c00285{left:466.320000pt;}
.x35_c00285{left:471.360000pt;}
.x91_c00285{left:475.593333pt;}
.x87_c00285{left:479.292235pt;}
.x7f_c00285{left:481.233333pt;}
.x2e_c00285{left:482.400000pt;}
.x80_c00285{left:493.525333pt;}
.x5e_c00285{left:496.080000pt;}
.xe_c00285{left:497.364000pt;}
.x36_c00285{left:502.560000pt;}
.x6c_c00285{left:503.760000pt;}
.x92_c00285{left:507.908000pt;}
.x81_c00285{left:511.278667pt;}
.x54_c00285{left:515.040000pt;}
.x25_c00285{left:518.640000pt;}
.x42_c00285{left:520.320000pt;}
.xf_c00285{left:522.596000pt;}
.x93_c00285{left:526.080000pt;}
.x55_c00285{left:532.560000pt;}
.x10_c00285{left:537.692000pt;}
.x2f_c00285{left:540.240000pt;}
.x37_c00285{left:546.000000pt;}
.x88_c00285{left:549.134037pt;}
.x6d_c00285{left:552.960000pt;}
.x94_c00285{left:559.428000pt;}
.x82_c00285{left:569.778667pt;}
.x11_c00285{left:571.064000pt;}
.x43_c00285{left:573.120000pt;}
.x6e_c00285{left:578.160000pt;}
.x38_c00285{left:589.200000pt;}
.x6f_c00285{left:590.640000pt;}
.x44_c00285{left:592.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mf_c00286{transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);-ms-transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);-webkit-transform:matrix(0.010855,-0.000076,0.001750,0.249994,0,0);}
.m64_c00286{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);}
.m95_c00286{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);}
.m10_c00286{transform:matrix(0.016285,-0.000114,0.001750,0.249994,0,0);-ms-transform:matrix(0.016285,-0.000114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.016285,-0.000114,0.001750,0.249994,0,0);}
.m94_c00286{transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{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);}
.mb0_c00286{transform:matrix(0.055785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055785,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.091548,-0.000641,0.001750,0.249994,0,0);-ms-transform:matrix(0.091548,-0.000641,0.001750,0.249994,0,0);-webkit-transform:matrix(0.091548,-0.000641,0.001750,0.249994,0,0);}
.m55_c00286{transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.094540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094540,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);}
.mad_c00286{transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);}
.m12c_c00286{transform:matrix(0.106995,-0.001070,0.002500,0.249988,0,0);-ms-transform:matrix(0.106995,-0.001070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.106995,-0.001070,0.002500,0.249988,0,0);}
.meb_c00286{transform:matrix(0.109695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109695,0.000000,0.000000,0.250000,0,0);}
.m118_c00286{transform:matrix(0.112274,-0.001123,0.002500,0.249988,0,0);-ms-transform:matrix(0.112274,-0.001123,0.002500,0.249988,0,0);-webkit-transform:matrix(0.112274,-0.001123,0.002500,0.249988,0,0);}
.mce_c00286{transform:matrix(0.119406,-0.001433,0.003000,0.249982,0,0);-ms-transform:matrix(0.119406,-0.001433,0.003000,0.249982,0,0);-webkit-transform:matrix(0.119406,-0.001433,0.003000,0.249982,0,0);}
.m65_c00286{transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{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);}
.m6f_c00286{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);}
.mb1_c00286{transform:matrix(0.143235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.143660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143660,0.000000,0.000000,0.250000,0,0);}
.mb2_c00286{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);}
.mdb_c00286{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);}
.m4d_c00286{transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150340,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.150870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150870,0.000000,0.000000,0.250000,0,0);}
.m11a_c00286{transform:matrix(0.154227,-0.001542,0.002500,0.249988,0,0);-ms-transform:matrix(0.154227,-0.001542,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154227,-0.001542,0.002500,0.249988,0,0);}
.m56_c00286{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);}
.m20_c00286{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);}
.m53_c00286{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);}
.md3_c00286{transform:matrix(0.158949,-0.001907,0.003000,0.249982,0,0);-ms-transform:matrix(0.158949,-0.001907,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158949,-0.001907,0.003000,0.249982,0,0);}
.m1c_c00286{transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);}
.md4_c00286{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);}
.m4f_c00286{transform:matrix(0.162620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162620,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{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);}
.m2a_c00286{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);}
.mf6_c00286{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{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);}
.m102_c00286{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);}
.m92_c00286{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);}
.m78_c00286{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);}
.m4e_c00286{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);}
.m76_c00286{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);}
.m9c_c00286{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);}
.m103_c00286{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);}
.mc3_c00286{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);}
.m61_c00286{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);}
.m6b_c00286{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);}
.ma6_c00286{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);}
.mfd_c00286{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);}
.mb_c00286{transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);-ms-transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173281,-0.001213,0.001750,0.249994,0,0);}
.m13_c00286{transform:matrix(0.173481,-0.001214,0.001750,0.249994,0,0);-ms-transform:matrix(0.173481,-0.001214,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173481,-0.001214,0.001750,0.249994,0,0);}
.mf0_c00286{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);}
.ma1_c00286{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);}
.m1d_c00286{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);}
.m68_c00286{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);}
.m58_c00286{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);}
.m75_c00286{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);}
.m79_c00286{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);}
.m27_c00286{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);}
.m7c_c00286{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);}
.m5d_c00286{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);}
.m1f_c00286{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);}
.m77_c00286{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);}
.m43_c00286{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);}
.m91_c00286{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);}
.mfc_c00286{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);}
.m7a_c00286{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);}
.m54_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);}
.m9e_c00286{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);}
.m7d_c00286{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);}
.md1_c00286{transform:matrix(0.182332,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182332,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182332,-0.002188,0.003000,0.249982,0,0);}
.m8f_c00286{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);}
.mf5_c00286{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);}
.mc9_c00286{transform:matrix(0.182957,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182957,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182957,-0.002195,0.003000,0.249982,0,0);}
.m1b_c00286{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);}
.m7e_c00286{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);}
.m98_c00286{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);}
.m105_c00286{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);}
.m1e_c00286{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);}
.m9_c00286{transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);-ms-transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);}
.m28_c00286{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);}
.m49_c00286{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);}
.m21_c00286{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);}
.m15_c00286{transform:matrix(0.186860,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186860,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186860,-0.001308,0.001750,0.249994,0,0);}
.med_c00286{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);}
.m93_c00286{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);}
.m14_c00286{transform:matrix(0.187350,-0.001311,0.001750,0.249994,0,0);-ms-transform:matrix(0.187350,-0.001311,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187350,-0.001311,0.001750,0.249994,0,0);}
.m9b_c00286{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);}
.ma5_c00286{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);}
.m2e_c00286{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);}
.m35_c00286{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{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);}
.m48_c00286{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);}
.md_c00286{transform:matrix(0.188920,-0.001322,0.001750,0.249994,0,0);-ms-transform:matrix(0.188920,-0.001322,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188920,-0.001322,0.001750,0.249994,0,0);}
.ma8_c00286{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);}
.m5a_c00286{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);}
.m8d_c00286{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);}
.md2_c00286{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);}
.m45_c00286{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);}
.m26_c00286{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);}
.m106_c00286{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);}
.m10c_c00286{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);}
.mb6_c00286{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);}
.m124_c00286{transform:matrix(0.192910,-0.001929,0.002500,0.249988,0,0);-ms-transform:matrix(0.192910,-0.001929,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192910,-0.001929,0.002500,0.249988,0,0);}
.mc1_c00286{transform:matrix(0.192921,-0.002315,0.003000,0.249982,0,0);-ms-transform:matrix(0.192921,-0.002315,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192921,-0.002315,0.003000,0.249982,0,0);}
.ma4_c00286{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);}
.m31_c00286{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);}
.mfb_c00286{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);}
.mda_c00286{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);}
.m8_c00286{transform:matrix(0.196145,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196145,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196145,-0.001373,0.001750,0.249994,0,0);}
.mf9_c00286{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);}
.me7_c00286{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);}
.m25_c00286{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);}
.m11f_c00286{transform:matrix(0.199015,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.199015,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199015,-0.001990,0.002500,0.249988,0,0);}
.m12_c00286{transform:matrix(0.199275,-0.001395,0.001750,0.249994,0,0);-ms-transform:matrix(0.199275,-0.001395,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199275,-0.001395,0.001750,0.249994,0,0);}
.m16_c00286{transform:matrix(0.199590,-0.001397,0.001750,0.249994,0,0);-ms-transform:matrix(0.199590,-0.001397,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199590,-0.001397,0.001750,0.249994,0,0);}
.m6_c00286{transform:matrix(0.200190,-0.001401,0.001750,0.249994,0,0);-ms-transform:matrix(0.200190,-0.001401,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200190,-0.001401,0.001750,0.249994,0,0);}
.mf3_c00286{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);}
.mea_c00286{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_c00286{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);}
.m10f_c00286{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);}
.m18_c00286{transform:matrix(0.201725,-0.001412,0.001750,0.249994,0,0);-ms-transform:matrix(0.201725,-0.001412,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201725,-0.001412,0.001750,0.249994,0,0);}
.mb4_c00286{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);}
.m111_c00286{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);}
.mff_c00286{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);}
.m7_c00286{transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);}
.m6c_c00286{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);}
.m6e_c00286{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);}
.m11e_c00286{transform:matrix(0.205025,-0.002050,0.002500,0.249988,0,0);-ms-transform:matrix(0.205025,-0.002050,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205025,-0.002050,0.002500,0.249988,0,0);}
.ma9_c00286{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);}
.mc8_c00286{transform:matrix(0.205730,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205730,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205730,-0.002469,0.003000,0.249982,0,0);}
.m8e_c00286{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);}
.m34_c00286{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);}
.m3b_c00286{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);}
.mf4_c00286{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);}
.m44_c00286{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);}
.m52_c00286{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);}
.m80_c00286{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);}
.m115_c00286{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);}
.m100_c00286{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);}
.ma7_c00286{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);}
.m3c_c00286{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);}
.m83_c00286{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);}
.md0_c00286{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);}
.m8b_c00286{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);}
.m8c_c00286{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);}
.mee_c00286{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);}
.m62_c00286{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);}
.mc_c00286{transform:matrix(0.213330,-0.001493,0.001750,0.249994,0,0);-ms-transform:matrix(0.213330,-0.001493,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213330,-0.001493,0.001750,0.249994,0,0);}
.m22_c00286{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);}
.m5_c00286{transform:matrix(0.213515,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213515,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213515,-0.001495,0.001750,0.249994,0,0);}
.mc4_c00286{transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);-ms-transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);}
.m17_c00286{transform:matrix(0.214500,-0.001501,0.001750,0.249994,0,0);-ms-transform:matrix(0.214500,-0.001501,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214500,-0.001501,0.001750,0.249994,0,0);}
.m41_c00286{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);}
.m23_c00286{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);}
.m107_c00286{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);}
.m11d_c00286{transform:matrix(0.216134,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216134,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216134,-0.002161,0.002500,0.249988,0,0);}
.mc7_c00286{transform:matrix(0.216349,-0.002596,0.003000,0.249982,0,0);-ms-transform:matrix(0.216349,-0.002596,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216349,-0.002596,0.003000,0.249982,0,0);}
.m67_c00286{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);}
.mcd_c00286{transform:matrix(0.217659,-0.002612,0.003000,0.249982,0,0);-ms-transform:matrix(0.217659,-0.002612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217659,-0.002612,0.003000,0.249982,0,0);}
.m5b_c00286{transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218340,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{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);}
.mc2_c00286{transform:matrix(0.219074,-0.002629,0.003000,0.249982,0,0);-ms-transform:matrix(0.219074,-0.002629,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219074,-0.002629,0.003000,0.249982,0,0);}
.ma3_c00286{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);}
.md5_c00286{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);}
.m11b_c00286{transform:matrix(0.219729,-0.002197,0.002500,0.249988,0,0);-ms-transform:matrix(0.219729,-0.002197,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219729,-0.002197,0.002500,0.249988,0,0);}
.me2_c00286{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);}
.mac_c00286{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);}
.mbc_c00286{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);}
.m4a_c00286{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);}
.m30_c00286{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);}
.m90_c00286{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);}
.m42_c00286{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);}
.md8_c00286{transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);}
.md9_c00286{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);}
.mdf_c00286{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);}
.m37_c00286{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);}
.m60_c00286{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);}
.mf2_c00286{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);}
.mfa_c00286{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);}
.m40_c00286{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);}
.m82_c00286{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00286{transform:matrix(0.232388,-0.002789,0.003000,0.249982,0,0);-ms-transform:matrix(0.232388,-0.002789,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232388,-0.002789,0.003000,0.249982,0,0);}
.m47_c00286{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);}
.ma2_c00286{transform:matrix(0.232795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232795,0.000000,0.000000,0.250000,0,0);}
.mdd_c00286{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{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);}
.m97_c00286{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);}
.me9_c00286{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{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);}
.m101_c00286{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);}
.m1a_c00286{transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{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);}
.mbf_c00286{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);}
.m3a_c00286{transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{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);}
.m2b_c00286{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);}
.m110_c00286{transform:matrix(0.239160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239160,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{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);}
.m2d_c00286{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);}
.m88_c00286{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);}
.m104_c00286{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);}
.mb9_c00286{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);}
.md6_c00286{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{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);}
.m125_c00286{transform:matrix(0.244023,-0.002440,0.002500,0.249988,0,0);-ms-transform:matrix(0.244023,-0.002440,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244023,-0.002440,0.002500,0.249988,0,0);}
.m96_c00286{transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{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);}
.m113_c00286{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);}
.m3e_c00286{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);}
.m8a_c00286{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);}
.me4_c00286{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);}
.mc0_c00286{transform:matrix(0.253737,-0.003045,0.003000,0.249982,0,0);-ms-transform:matrix(0.253737,-0.003045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253737,-0.003045,0.003000,0.249982,0,0);}
.me6_c00286{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{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);}
.mba_c00286{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{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);}
.m87_c00286{transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);}
.md7_c00286{transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262200,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264840,0.000000,0.000000,0.250000,0,0);}
.m126_c00286{transform:matrix(0.265187,-0.002652,0.002500,0.249988,0,0);-ms-transform:matrix(0.265187,-0.002652,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265187,-0.002652,0.002500,0.249988,0,0);}
.me1_c00286{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.mde_c00286{transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00286{transform:matrix(0.267866,-0.003214,0.003000,0.249982,0,0);-ms-transform:matrix(0.267866,-0.003214,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267866,-0.003214,0.003000,0.249982,0,0);}
.maf_c00286{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);}
.m11c_c00286{transform:matrix(0.269172,-0.002692,0.002500,0.249988,0,0);-ms-transform:matrix(0.269172,-0.002692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269172,-0.002692,0.002500,0.249988,0,0);}
.mb5_c00286{transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);}
.m129_c00286{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);}
.mc5_c00286{transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);-ms-transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);}
.m10e_c00286{transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270405,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.273808,-0.001917,0.001750,0.249994,0,0);-ms-transform:matrix(0.273808,-0.001917,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273808,-0.001917,0.001750,0.249994,0,0);}
.me0_c00286{transform:matrix(0.274225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274225,0.000000,0.000000,0.250000,0,0);}
.mb7_c00286{transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274310,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276110,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276245,0.000000,0.000000,0.250000,0,0);}
.mcb_c00286{transform:matrix(0.277210,-0.003327,0.003000,0.249982,0,0);-ms-transform:matrix(0.277210,-0.003327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277210,-0.003327,0.003000,0.249982,0,0);}
.me8_c00286{transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);}
.m10d_c00286{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);}
.m50_c00286{transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.mf7_c00286{transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{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);}
.m112_c00286{transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);}
.m120_c00286{transform:matrix(0.291590,-0.002916,0.002500,0.249988,0,0);-ms-transform:matrix(0.291590,-0.002916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.291590,-0.002916,0.002500,0.249988,0,0);}
.m85_c00286{transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292295,0.000000,0.000000,0.250000,0,0);}
.me5_c00286{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);}
.m12a_c00286{transform:matrix(0.298685,-0.002987,0.002500,0.249988,0,0);-ms-transform:matrix(0.298685,-0.002987,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298685,-0.002987,0.002500,0.249988,0,0);}
.mf8_c00286{transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);}
.mab_c00286{transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);}
.m127_c00286{transform:matrix(0.312864,-0.003129,0.002500,0.249988,0,0);-ms-transform:matrix(0.312864,-0.003129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.312864,-0.003129,0.002500,0.249988,0,0);}
.mc6_c00286{transform:matrix(0.313017,-0.003756,0.003000,0.249982,0,0);-ms-transform:matrix(0.313017,-0.003756,0.003000,0.249982,0,0);-webkit-transform:matrix(0.313017,-0.003756,0.003000,0.249982,0,0);}
.m51_c00286{transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318220,0.000000,0.000000,0.250000,0,0);}
.mbd_c00286{transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320265,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.322957,-0.002261,0.001750,0.249994,0,0);-ms-transform:matrix(0.322957,-0.002261,0.001750,0.249994,0,0);-webkit-transform:matrix(0.322957,-0.002261,0.001750,0.249994,0,0);}
.mf1_c00286{transform:matrix(0.331835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331835,0.000000,0.000000,0.250000,0,0);}
.me3_c00286{transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);}
.m116_c00286{transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336045,0.000000,0.000000,0.250000,0,0);}
.m114_c00286{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.338525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338525,0.000000,0.000000,0.250000,0,0);}
.m121_c00286{transform:matrix(0.342963,-0.003430,0.002500,0.249988,0,0);-ms-transform:matrix(0.342963,-0.003430,0.002500,0.249988,0,0);-webkit-transform:matrix(0.342963,-0.003430,0.002500,0.249988,0,0);}
.m74_c00286{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);}
.mbb_c00286{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);}
.m119_c00286{transform:matrix(0.345788,-0.003458,0.002500,0.249988,0,0);-ms-transform:matrix(0.345788,-0.003458,0.002500,0.249988,0,0);-webkit-transform:matrix(0.345788,-0.003458,0.002500,0.249988,0,0);}
.mec_c00286{transform:matrix(0.362620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362620,0.000000,0.000000,0.250000,0,0);}
.maa_c00286{transform:matrix(0.370360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370360,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.373360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373360,0.000000,0.000000,0.250000,0,0);}
.m10a_c00286{transform:matrix(0.377015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377015,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);}
.mb3_c00286{transform:matrix(0.381040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381040,0.000000,0.000000,0.250000,0,0);}
.mb8_c00286{transform:matrix(0.382055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382055,0.000000,0.000000,0.250000,0,0);}
.m123_c00286{transform:matrix(0.386461,-0.003865,0.002500,0.249988,0,0);-ms-transform:matrix(0.386461,-0.003865,0.002500,0.249988,0,0);-webkit-transform:matrix(0.386461,-0.003865,0.002500,0.249988,0,0);}
.ma0_c00286{transform:matrix(0.393585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393585,0.000000,0.000000,0.250000,0,0);}
.m109_c00286{transform:matrix(0.396735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396735,0.000000,0.000000,0.250000,0,0);}
.mfe_c00286{transform:matrix(0.408460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408460,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.426540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426540,0.000000,0.000000,0.250000,0,0);}
.m108_c00286{transform:matrix(0.454310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454310,0.000000,0.000000,0.250000,0,0);}
.m128_c00286{transform:matrix(0.456937,-0.004569,0.002500,0.249988,0,0);-ms-transform:matrix(0.456937,-0.004569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.456937,-0.004569,0.002500,0.249988,0,0);}
.mbe_c00286{transform:matrix(0.461075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461075,0.000000,0.000000,0.250000,0,0);}
.m10b_c00286{transform:matrix(0.477265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477265,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.488940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488940,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.515095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515095,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.532870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532870,0.000000,0.000000,0.250000,0,0);}
.mef_c00286{transform:matrix(0.534690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534690,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.632760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632760,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.645195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645195,0.000000,0.000000,0.250000,0,0);}
.m117_c00286{transform:matrix(0.703475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703475,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.762985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762985,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.770650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770650,0.000000,0.000000,0.250000,0,0);}
.mdc_c00286{transform:matrix(0.770935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770935,0.000000,0.000000,0.250000,0,0);}
.m12b_c00286{transform:matrix(0.816604,-0.008166,0.002500,0.249988,0,0);-ms-transform:matrix(0.816604,-0.008166,0.002500,0.249988,0,0);-webkit-transform:matrix(0.816604,-0.008166,0.002500,0.249988,0,0);}
.m11_c00286{transform:matrix(0.863324,-0.006043,0.001750,0.249994,0,0);-ms-transform:matrix(0.863324,-0.006043,0.001750,0.249994,0,0);-webkit-transform:matrix(0.863324,-0.006043,0.001750,0.249994,0,0);}
.mca_c00286{transform:matrix(0.922084,-0.011065,0.003000,0.249982,0,0);-ms-transform:matrix(0.922084,-0.011065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.922084,-0.011065,0.003000,0.249982,0,0);}
.m122_c00286{transform:matrix(0.988711,-0.009887,0.002500,0.249988,0,0);-ms-transform:matrix(0.988711,-0.009887,0.002500,0.249988,0,0);-webkit-transform:matrix(0.988711,-0.009887,0.002500,0.249988,0,0);}
.mae_c00286{transform:matrix(1.009820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.009820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.009820,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;}
._0_c00286{margin-left:-8.936500px;}
.fc0_c00286{color:transparent;}
.fs7_c00286{font-size:22.050000px;}
.fsb_c00286{font-size:47.250000px;}
.fsd_c00286{font-size:58.800000px;}
.fs0_c00286{font-size:64.050000px;}
.fse_c00286{font-size:65.104687px;}
.fsf_c00286{font-size:67.200000px;}
.fsc_c00286{font-size:68.250000px;}
.fsa_c00286{font-size:69.300000px;}
.fs3_c00286{font-size:69.301698px;}
.fs11_c00286{font-size:69.303465px;}
.fs5_c00286{font-size:70.350000px;}
.fs2_c00286{font-size:70.351724px;}
.fs6_c00286{font-size:71.400000px;}
.fs4_c00286{font-size:72.450000px;}
.fs8_c00286{font-size:73.500000px;}
.fs9_c00286{font-size:74.550000px;}
.fs10_c00286{font-size:77.703885px;}
.fs1_c00286{font-size:144.900000px;}
.y0_c00286{bottom:0.000000px;}
.y5e_c00286{bottom:140.418270px;}
.y5d_c00286{bottom:140.418915px;}
.y5b_c00286{bottom:140.419230px;}
.y5c_c00286{bottom:140.419515px;}
.y4a_c00286{bottom:160.908000px;}
.y4b_c00286{bottom:161.327985px;}
.y4c_c00286{bottom:161.757690px;}
.y4d_c00286{bottom:162.149175px;}
.y4e_c00286{bottom:162.472920px;}
.y4f_c00286{bottom:162.778035px;}
.y50_c00286{bottom:163.164195px;}
.y51_c00286{bottom:163.474575px;}
.y52_c00286{bottom:163.812225px;}
.y53_c00286{bottom:164.052510px;}
.y54_c00286{bottom:164.246985px;}
.y55_c00286{bottom:164.978250px;}
.y56_c00286{bottom:165.154275px;}
.y57_c00286{bottom:165.453630px;}
.y58_c00286{bottom:165.699075px;}
.y59_c00286{bottom:165.882915px;}
.y5a_c00286{bottom:166.191165px;}
.y49_c00286{bottom:187.050000px;}
.y48_c00286{bottom:213.424500px;}
.y47_c00286{bottom:241.540500px;}
.y46_c00286{bottom:268.573500px;}
.y45_c00286{bottom:296.560500px;}
.y44_c00286{bottom:319.984500px;}
.y43_c00286{bottom:346.932000px;}
.y3e_c00286{bottom:374.227884px;}
.y3f_c00286{bottom:375.322356px;}
.y40_c00286{bottom:377.139480px;}
.y41_c00286{bottom:382.056384px;}
.y42_c00286{bottom:385.053846px;}
.y2f_c00286{bottom:394.203000px;}
.y30_c00286{bottom:394.766184px;}
.y31_c00286{bottom:395.157576px;}
.y32_c00286{bottom:395.563566px;}
.y33_c00286{bottom:396.075414px;}
.y34_c00286{bottom:396.477642px;}
.y35_c00286{bottom:396.959862px;}
.y36_c00286{bottom:397.170210px;}
.y37_c00286{bottom:397.585092px;}
.y38_c00286{bottom:397.704540px;}
.y39_c00286{bottom:398.019342px;}
.y3a_c00286{bottom:399.098028px;}
.y3b_c00286{bottom:399.292374px;}
.y3c_c00286{bottom:399.681336px;}
.y3d_c00286{bottom:400.149192px;}
.y2e_c00286{bottom:420.564000px;}
.y2d_c00286{bottom:447.001500px;}
.y2c_c00286{bottom:475.629000px;}
.y2b_c00286{bottom:503.070000px;}
.y2a_c00286{bottom:530.709000px;}
.y29_c00286{bottom:554.283000px;}
.y28_c00286{bottom:576.478500px;}
.y27_c00286{bottom:599.413500px;}
.y26_c00286{bottom:625.186500px;}
.y25_c00286{bottom:650.881500px;}
.y24_c00286{bottom:651.643500px;}
.y23_c00286{bottom:653.109000px;}
.y22_c00286{bottom:653.508000px;}
.y21_c00286{bottom:653.650500px;}
.y20_c00286{bottom:653.830500px;}
.y1f_c00286{bottom:653.949000px;}
.y1e_c00286{bottom:676.869000px;}
.y1d_c00286{bottom:703.642500px;}
.y1c_c00286{bottom:731.982000px;}
.y1b_c00286{bottom:748.170000px;}
.y1a_c00286{bottom:755.184000px;}
.y19_c00286{bottom:778.125000px;}
.y18_c00286{bottom:792.180000px;}
.y13_c00286{bottom:805.564881px;}
.y14_c00286{bottom:805.565200px;}
.y12_c00286{bottom:805.565461px;}
.y17_c00286{bottom:805.565668px;}
.y15_c00286{bottom:805.565680px;}
.y16_c00286{bottom:805.565760px;}
.y11_c00286{bottom:805.565832px;}
.y10_c00286{bottom:805.566502px;}
.y3_c00286{bottom:827.281500px;}
.y4_c00286{bottom:827.449605px;}
.y5_c00286{bottom:827.574397px;}
.y6_c00286{bottom:827.856155px;}
.y7_c00286{bottom:828.105624px;}
.y8_c00286{bottom:828.521298px;}
.y9_c00286{bottom:828.700974px;}
.ya_c00286{bottom:828.989976px;}
.yb_c00286{bottom:829.354693px;}
.yc_c00286{bottom:829.588612px;}
.yd_c00286{bottom:830.049783px;}
.ye_c00286{bottom:830.367219px;}
.yf_c00286{bottom:830.548732px;}
.y2_c00286{bottom:873.312000px;}
.y1_c00286{bottom:901.260000px;}
.h9_c00286{height:22.050000px;}
.hd_c00286{height:47.250000px;}
.hf_c00286{height:58.800000px;}
.h2_c00286{height:64.050000px;}
.h10_c00286{height:65.104687px;}
.h11_c00286{height:67.200000px;}
.he_c00286{height:68.250000px;}
.hc_c00286{height:69.300000px;}
.h5_c00286{height:69.301698px;}
.h13_c00286{height:69.303465px;}
.h7_c00286{height:70.350000px;}
.h4_c00286{height:70.351724px;}
.h8_c00286{height:71.400000px;}
.h6_c00286{height:72.450000px;}
.ha_c00286{height:73.500000px;}
.hb_c00286{height:74.550000px;}
.h12_c00286{height:77.703885px;}
.h3_c00286{height:144.900000px;}
.h1_c00286{height:1005.000000px;}
.h0_c00286{height:1005.150000px;}
.w0_c00286{width:702.540000px;}
.w1_c00286{width:702.750000px;}
.x0_c00286{left:0.000000px;}
.xbe_c00286{left:51.843000px;}
.xc5_c00286{left:56.971380px;}
.x88_c00286{left:83.160000px;}
.x92_c00286{left:88.260000px;}
.x9f_c00286{left:90.281958px;}
.x5e_c00286{left:92.070000px;}
.x26_c00286{left:94.500000px;}
.x69_c00286{left:96.120000px;}
.xc6_c00286{left:97.203900px;}
.xb1_c00286{left:100.440000px;}
.xa7_c00286{left:102.870000px;}
.xc7_c00286{left:107.194905px;}
.x48_c00286{left:111.510000px;}
.x19_c00286{left:113.400000px;}
.xa1_c00286{left:114.750000px;}
.xab_c00286{left:116.640000px;}
.x79_c00286{left:118.800000px;}
.xb5_c00286{left:119.880000px;}
.x27_c00286{left:126.630000px;}
.x3e_c00286{left:127.980000px;}
.x6_c00286{left:130.519500px;}
.x12_c00286{left:132.029072px;}
.x7a_c00286{left:133.920000px;}
.x93_c00286{left:135.192000px;}
.x89_c00286{left:136.350000px;}
.x55_c00286{left:137.430000px;}
.x80_c00286{left:138.510000px;}
.x6a_c00286{left:140.130000px;}
.x5f_c00286{left:142.020000px;}
.x28_c00286{left:143.640000px;}
.x6b_c00286{left:146.340000px;}
.x1a_c00286{left:149.040000px;}
.x36_c00286{left:150.660000px;}
.x86_c00286{left:152.280000px;}
.x49_c00286{left:153.360000px;}
.x7_c00286{left:154.534500px;}
.x56_c00286{left:158.760000px;}
.x7b_c00286{left:161.190000px;}
.x3f_c00286{left:165.510000px;}
.x51_c00286{left:167.589000px;}
.xa8_c00286{left:169.290000px;}
.x4a_c00286{left:170.910000px;}
.x8_c00286{left:172.362000px;}
.xbf_c00286{left:175.960500px;}
.x81_c00286{left:182.250000px;}
.x29_c00286{left:183.870000px;}
.x40_c00286{left:185.760000px;}
.x1b_c00286{left:187.650000px;}
.xba_c00286{left:189.270000px;}
.xb2_c00286{left:192.510000px;}
.x74_c00286{left:195.210000px;}
.x60_c00286{left:197.100000px;}
.x7c_c00286{left:198.720000px;}
.x57_c00286{left:200.070000px;}
.x94_c00286{left:201.640500px;}
.xa2_c00286{left:208.710000px;}
.x9_c00286{left:212.613000px;}
.x13_c00286{left:214.651625px;}
.x1c_c00286{left:218.700000px;}
.x2_c00286{left:220.050000px;}
.x8a_c00286{left:222.480000px;}
.x6c_c00286{left:225.180000px;}
.x41_c00286{left:232.470000px;}
.x52_c00286{left:234.039000px;}
.x61_c00286{left:235.170000px;}
.x2a_c00286{left:237.330000px;}
.xc0_c00286{left:238.846500px;}
.x37_c00286{left:242.730000px;}
.x95_c00286{left:244.294500px;}
.x8b_c00286{left:246.780000px;}
.xa_c00286{left:248.251500px;}
.x6d_c00286{left:253.260000px;}
.xb3_c00286{left:254.340000px;}
.x1d_c00286{left:257.040000px;}
.x4b_c00286{left:260.010000px;}
.x75_c00286{left:261.630000px;}
.xa9_c00286{left:262.980000px;}
.x42_c00286{left:264.600000px;}
.x82_c00286{left:268.380000px;}
.xb4_c00286{left:270.540000px;}
.x2b_c00286{left:272.700000px;}
.x4c_c00286{left:274.050000px;}
.x62_c00286{left:275.670000px;}
.x96_c00286{left:277.813500px;}
.x87_c00286{left:281.610000px;}
.x2c_c00286{left:282.960000px;}
.x76_c00286{left:284.580000px;}
.x14_c00286{left:285.662111px;}
.xb6_c00286{left:287.280000px;}
.x4d_c00286{left:290.250000px;}
.x1e_c00286{left:291.600000px;}
.xa3_c00286{left:294.840000px;}
.x6e_c00286{left:301.860000px;}
.x3_c00286{left:303.750000px;}
.x8c_c00286{left:305.100000px;}
.xb_c00286{left:307.633500px;}
.x38_c00286{left:309.420000px;}
.x1f_c00286{left:311.580000px;}
.x7d_c00286{left:316.440000px;}
.x97_c00286{left:317.998500px;}
.x6f_c00286{left:321.030000px;}
.xad_c00286{left:322.380000px;}
.xb7_c00286{left:323.460000px;}
.x39_c00286{left:326.970000px;}
.x2d_c00286{left:329.940000px;}
.x77_c00286{left:331.830000px;}
.xc_c00286{left:333.301500px;}
.x98_c00286{left:335.527500px;}
.x83_c00286{left:337.500000px;}
.x15_c00286{left:338.853215px;}
.xc1_c00286{left:342.265500px;}
.x70_c00286{left:349.920000px;}
.xac_c00286{left:352.080000px;}
.x58_c00286{left:353.970000px;}
.xae_c00286{left:356.400000px;}
.x43_c00286{left:358.290000px;}
.x3a_c00286{left:359.370000px;}
.x16_c00286{left:360.994296px;}
.x7e_c00286{left:363.420000px;}
.xa4_c00286{left:366.390000px;}
.x4_c00286{left:367.740000px;}
.x99_c00286{left:370.101000px;}
.x63_c00286{left:372.330000px;}
.xd_c00286{left:374.587500px;}
.x59_c00286{left:376.920000px;}
.x44_c00286{left:378.540000px;}
.x8d_c00286{left:380.160000px;}
.xa5_c00286{left:382.590000px;}
.x8e_c00286{left:385.290000px;}
.xa0_c00286{left:391.356378px;}
.x54_c00286{left:392.850000px;}
.x17_c00286{left:396.364529px;}
.x2e_c00286{left:398.250000px;}
.x84_c00286{left:402.840000px;}
.x9a_c00286{left:406.288500px;}
.x4e_c00286{left:408.780000px;}
.x2f_c00286{left:410.130000px;}
.x78_c00286{left:413.640000px;}
.x64_c00286{left:415.530000px;}
.x7f_c00286{left:417.690000px;}
.xaf_c00286{left:419.580000px;}
.xbb_c00286{left:420.930000px;}
.xaa_c00286{left:423.090000px;}
.xe_c00286{left:426.690000px;}
.x20_c00286{left:428.760000px;}
.x5a_c00286{left:430.380000px;}
.x30_c00286{left:432.540000px;}
.xb0_c00286{left:434.160000px;}
.x8f_c00286{left:435.240000px;}
.x85_c00286{left:438.210000px;}
.x45_c00286{left:439.290000px;}
.x65_c00286{left:446.850000px;}
.x71_c00286{left:448.740000px;}
.x21_c00286{left:450.630000px;}
.x3b_c00286{left:453.060000px;}
.xa6_c00286{left:454.140000px;}
.xc2_c00286{left:458.868000px;}
.xf_c00286{left:460.107000px;}
.xbc_c00286{left:461.700000px;}
.x5b_c00286{left:463.590000px;}
.x31_c00286{left:464.940000px;}
.x22_c00286{left:468.720000px;}
.x66_c00286{left:471.690000px;}
.x3c_c00286{left:474.660000px;}
.x72_c00286{left:476.820000px;}
.x4f_c00286{left:478.710000px;}
.x90_c00286{left:482.760000px;}
.x32_c00286{left:494.100000px;}
.x9b_c00286{left:496.179000px;}
.x3d_c00286{left:505.440000px;}
.x23_c00286{left:507.060000px;}
.x50_c00286{left:510.030000px;}
.x9c_c00286{left:512.374500px;}
.x73_c00286{left:513.540000px;}
.x91_c00286{left:516.240000px;}
.x67_c00286{left:520.830000px;}
.x10_c00286{left:525.988500px;}
.xc3_c00286{left:530.950500px;}
.x46_c00286{left:537.030000px;}
.x68_c00286{left:540.810000px;}
.x24_c00286{left:542.430000px;}
.x9d_c00286{left:544.788000px;}
.x5c_c00286{left:547.560000px;}
.x5_c00286{left:550.260000px;}
.xb8_c00286{left:557.010000px;}
.xbd_c00286{left:568.890000px;}
.x11_c00286{left:571.336500px;}
.xc4_c00286{left:580.159500px;}
.x9e_c00286{left:583.776000px;}
.x5d_c00286{left:592.920000px;}
.x34_c00286{left:595.350000px;}
.x25_c00286{left:596.700000px;}
.x1_c00286{left:597.780000px;}
.x33_c00286{left:599.130000px;}
.x53_c00286{left:605.278500px;}
.xb9_c00286{left:607.230000px;}
.x47_c00286{left:611.550000px;}
.x18_c00286{left:612.630000px;}
.x35_c00286{left:613.710000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
._0_c00286{margin-left:-7.943556pt;}
.fs7_c00286{font-size:19.600000pt;}
.fsb_c00286{font-size:42.000000pt;}
.fsd_c00286{font-size:52.266667pt;}
.fs0_c00286{font-size:56.933333pt;}
.fse_c00286{font-size:57.870833pt;}
.fsf_c00286{font-size:59.733333pt;}
.fsc_c00286{font-size:60.666667pt;}
.fsa_c00286{font-size:61.600000pt;}
.fs3_c00286{font-size:61.601509pt;}
.fs11_c00286{font-size:61.603080pt;}
.fs5_c00286{font-size:62.533333pt;}
.fs2_c00286{font-size:62.534865pt;}
.fs6_c00286{font-size:63.466667pt;}
.fs4_c00286{font-size:64.400000pt;}
.fs8_c00286{font-size:65.333333pt;}
.fs9_c00286{font-size:66.266667pt;}
.fs10_c00286{font-size:69.070120pt;}
.fs1_c00286{font-size:128.800000pt;}
.y0_c00286{bottom:0.000000pt;}
.y5e_c00286{bottom:124.816240pt;}
.y5d_c00286{bottom:124.816813pt;}
.y5b_c00286{bottom:124.817093pt;}
.y5c_c00286{bottom:124.817347pt;}
.y4a_c00286{bottom:143.029333pt;}
.y4b_c00286{bottom:143.402653pt;}
.y4c_c00286{bottom:143.784613pt;}
.y4d_c00286{bottom:144.132600pt;}
.y4e_c00286{bottom:144.420373pt;}
.y4f_c00286{bottom:144.691587pt;}
.y50_c00286{bottom:145.034840pt;}
.y51_c00286{bottom:145.310733pt;}
.y52_c00286{bottom:145.610867pt;}
.y53_c00286{bottom:145.824453pt;}
.y54_c00286{bottom:145.997320pt;}
.y55_c00286{bottom:146.647333pt;}
.y56_c00286{bottom:146.803800pt;}
.y57_c00286{bottom:147.069893pt;}
.y58_c00286{bottom:147.288067pt;}
.y59_c00286{bottom:147.451480pt;}
.y5a_c00286{bottom:147.725480pt;}
.y49_c00286{bottom:166.266667pt;}
.y48_c00286{bottom:189.710667pt;}
.y47_c00286{bottom:214.702667pt;}
.y46_c00286{bottom:238.732000pt;}
.y45_c00286{bottom:263.609333pt;}
.y44_c00286{bottom:284.430667pt;}
.y43_c00286{bottom:308.384000pt;}
.y3e_c00286{bottom:332.647008pt;}
.y3f_c00286{bottom:333.619872pt;}
.y40_c00286{bottom:335.235093pt;}
.y41_c00286{bottom:339.605675pt;}
.y42_c00286{bottom:342.270085pt;}
.y2f_c00286{bottom:350.402667pt;}
.y30_c00286{bottom:350.903275pt;}
.y31_c00286{bottom:351.251179pt;}
.y32_c00286{bottom:351.612059pt;}
.y33_c00286{bottom:352.067035pt;}
.y34_c00286{bottom:352.424571pt;}
.y35_c00286{bottom:352.853211pt;}
.y36_c00286{bottom:353.040187pt;}
.y37_c00286{bottom:353.408971pt;}
.y38_c00286{bottom:353.515147pt;}
.y39_c00286{bottom:353.794971pt;}
.y3a_c00286{bottom:354.753803pt;}
.y3b_c00286{bottom:354.926555pt;}
.y3c_c00286{bottom:355.272299pt;}
.y3d_c00286{bottom:355.688171pt;}
.y2e_c00286{bottom:373.834667pt;}
.y2d_c00286{bottom:397.334667pt;}
.y2c_c00286{bottom:422.781333pt;}
.y2b_c00286{bottom:447.173333pt;}
.y2a_c00286{bottom:471.741333pt;}
.y29_c00286{bottom:492.696000pt;}
.y28_c00286{bottom:512.425333pt;}
.y27_c00286{bottom:532.812000pt;}
.y26_c00286{bottom:555.721333pt;}
.y25_c00286{bottom:578.561333pt;}
.y24_c00286{bottom:579.238667pt;}
.y23_c00286{bottom:580.541333pt;}
.y22_c00286{bottom:580.896000pt;}
.y21_c00286{bottom:581.022667pt;}
.y20_c00286{bottom:581.182667pt;}
.y1f_c00286{bottom:581.288000pt;}
.y1e_c00286{bottom:601.661333pt;}
.y1d_c00286{bottom:625.460000pt;}
.y1c_c00286{bottom:650.650667pt;}
.y1b_c00286{bottom:665.040000pt;}
.y1a_c00286{bottom:671.274667pt;}
.y19_c00286{bottom:691.666667pt;}
.y18_c00286{bottom:704.160000pt;}
.y13_c00286{bottom:716.057672pt;}
.y14_c00286{bottom:716.057956pt;}
.y12_c00286{bottom:716.058188pt;}
.y17_c00286{bottom:716.058372pt;}
.y15_c00286{bottom:716.058383pt;}
.y16_c00286{bottom:716.058453pt;}
.y11_c00286{bottom:716.058517pt;}
.y10_c00286{bottom:716.059113pt;}
.y3_c00286{bottom:735.361333pt;}
.y4_c00286{bottom:735.510760pt;}
.y5_c00286{bottom:735.621687pt;}
.y6_c00286{bottom:735.872137pt;}
.y7_c00286{bottom:736.093888pt;}
.y8_c00286{bottom:736.463376pt;}
.y9_c00286{bottom:736.623088pt;}
.ya_c00286{bottom:736.879979pt;}
.yb_c00286{bottom:737.204172pt;}
.yc_c00286{bottom:737.412100pt;}
.yd_c00286{bottom:737.822029pt;}
.ye_c00286{bottom:738.104195pt;}
.yf_c00286{bottom:738.265540pt;}
.y2_c00286{bottom:776.277333pt;}
.y1_c00286{bottom:801.120000pt;}
.h9_c00286{height:19.600000pt;}
.hd_c00286{height:42.000000pt;}
.hf_c00286{height:52.266667pt;}
.h2_c00286{height:56.933333pt;}
.h10_c00286{height:57.870833pt;}
.h11_c00286{height:59.733333pt;}
.he_c00286{height:60.666667pt;}
.hc_c00286{height:61.600000pt;}
.h5_c00286{height:61.601509pt;}
.h13_c00286{height:61.603080pt;}
.h7_c00286{height:62.533333pt;}
.h4_c00286{height:62.534865pt;}
.h8_c00286{height:63.466667pt;}
.h6_c00286{height:64.400000pt;}
.ha_c00286{height:65.333333pt;}
.hb_c00286{height:66.266667pt;}
.h12_c00286{height:69.070120pt;}
.h3_c00286{height:128.800000pt;}
.h1_c00286{height:893.333333pt;}
.h0_c00286{height:893.466667pt;}
.w0_c00286{width:624.480000pt;}
.w1_c00286{width:624.666667pt;}
.x0_c00286{left:0.000000pt;}
.xbe_c00286{left:46.082667pt;}
.xc5_c00286{left:50.641227pt;}
.x88_c00286{left:73.920000pt;}
.x92_c00286{left:78.453333pt;}
.x9f_c00286{left:80.250629pt;}
.x5e_c00286{left:81.840000pt;}
.x26_c00286{left:84.000000pt;}
.x69_c00286{left:85.440000pt;}
.xc6_c00286{left:86.403467pt;}
.xb1_c00286{left:89.280000pt;}
.xa7_c00286{left:91.440000pt;}
.xc7_c00286{left:95.284360pt;}
.x48_c00286{left:99.120000pt;}
.x19_c00286{left:100.800000pt;}
.xa1_c00286{left:102.000000pt;}
.xab_c00286{left:103.680000pt;}
.x79_c00286{left:105.600000pt;}
.xb5_c00286{left:106.560000pt;}
.x27_c00286{left:112.560000pt;}
.x3e_c00286{left:113.760000pt;}
.x6_c00286{left:116.017333pt;}
.x12_c00286{left:117.359175pt;}
.x7a_c00286{left:119.040000pt;}
.x93_c00286{left:120.170667pt;}
.x89_c00286{left:121.200000pt;}
.x55_c00286{left:122.160000pt;}
.x80_c00286{left:123.120000pt;}
.x6a_c00286{left:124.560000pt;}
.x5f_c00286{left:126.240000pt;}
.x28_c00286{left:127.680000pt;}
.x6b_c00286{left:130.080000pt;}
.x1a_c00286{left:132.480000pt;}
.x36_c00286{left:133.920000pt;}
.x86_c00286{left:135.360000pt;}
.x49_c00286{left:136.320000pt;}
.x7_c00286{left:137.364000pt;}
.x56_c00286{left:141.120000pt;}
.x7b_c00286{left:143.280000pt;}
.x3f_c00286{left:147.120000pt;}
.x51_c00286{left:148.968000pt;}
.xa8_c00286{left:150.480000pt;}
.x4a_c00286{left:151.920000pt;}
.x8_c00286{left:153.210667pt;}
.xbf_c00286{left:156.409333pt;}
.x81_c00286{left:162.000000pt;}
.x29_c00286{left:163.440000pt;}
.x40_c00286{left:165.120000pt;}
.x1b_c00286{left:166.800000pt;}
.xba_c00286{left:168.240000pt;}
.xb2_c00286{left:171.120000pt;}
.x74_c00286{left:173.520000pt;}
.x60_c00286{left:175.200000pt;}
.x7c_c00286{left:176.640000pt;}
.x57_c00286{left:177.840000pt;}
.x94_c00286{left:179.236000pt;}
.xa2_c00286{left:185.520000pt;}
.x9_c00286{left:188.989333pt;}
.x13_c00286{left:190.801444pt;}
.x1c_c00286{left:194.400000pt;}
.x2_c00286{left:195.600000pt;}
.x8a_c00286{left:197.760000pt;}
.x6c_c00286{left:200.160000pt;}
.x41_c00286{left:206.640000pt;}
.x52_c00286{left:208.034667pt;}
.x61_c00286{left:209.040000pt;}
.x2a_c00286{left:210.960000pt;}
.xc0_c00286{left:212.308000pt;}
.x37_c00286{left:215.760000pt;}
.x95_c00286{left:217.150667pt;}
.x8b_c00286{left:219.360000pt;}
.xa_c00286{left:220.668000pt;}
.x6d_c00286{left:225.120000pt;}
.xb3_c00286{left:226.080000pt;}
.x1d_c00286{left:228.480000pt;}
.x4b_c00286{left:231.120000pt;}
.x75_c00286{left:232.560000pt;}
.xa9_c00286{left:233.760000pt;}
.x42_c00286{left:235.200000pt;}
.x82_c00286{left:238.560000pt;}
.xb4_c00286{left:240.480000pt;}
.x2b_c00286{left:242.400000pt;}
.x4c_c00286{left:243.600000pt;}
.x62_c00286{left:245.040000pt;}
.x96_c00286{left:246.945333pt;}
.x87_c00286{left:250.320000pt;}
.x2c_c00286{left:251.520000pt;}
.x76_c00286{left:252.960000pt;}
.x14_c00286{left:253.921876pt;}
.xb6_c00286{left:255.360000pt;}
.x4d_c00286{left:258.000000pt;}
.x1e_c00286{left:259.200000pt;}
.xa3_c00286{left:262.080000pt;}
.x6e_c00286{left:268.320000pt;}
.x3_c00286{left:270.000000pt;}
.x8c_c00286{left:271.200000pt;}
.xb_c00286{left:273.452000pt;}
.x38_c00286{left:275.040000pt;}
.x1f_c00286{left:276.960000pt;}
.x7d_c00286{left:281.280000pt;}
.x97_c00286{left:282.665333pt;}
.x6f_c00286{left:285.360000pt;}
.xad_c00286{left:286.560000pt;}
.xb7_c00286{left:287.520000pt;}
.x39_c00286{left:290.640000pt;}
.x2d_c00286{left:293.280000pt;}
.x77_c00286{left:294.960000pt;}
.xc_c00286{left:296.268000pt;}
.x98_c00286{left:298.246667pt;}
.x83_c00286{left:300.000000pt;}
.x15_c00286{left:301.202857pt;}
.xc1_c00286{left:304.236000pt;}
.x70_c00286{left:311.040000pt;}
.xac_c00286{left:312.960000pt;}
.x58_c00286{left:314.640000pt;}
.xae_c00286{left:316.800000pt;}
.x43_c00286{left:318.480000pt;}
.x3a_c00286{left:319.440000pt;}
.x16_c00286{left:320.883819pt;}
.x7e_c00286{left:323.040000pt;}
.xa4_c00286{left:325.680000pt;}
.x4_c00286{left:326.880000pt;}
.x99_c00286{left:328.978667pt;}
.x63_c00286{left:330.960000pt;}
.xd_c00286{left:332.966667pt;}
.x59_c00286{left:335.040000pt;}
.x44_c00286{left:336.480000pt;}
.x8d_c00286{left:337.920000pt;}
.xa5_c00286{left:340.080000pt;}
.x8e_c00286{left:342.480000pt;}
.xa0_c00286{left:347.872336pt;}
.x54_c00286{left:349.200000pt;}
.x17_c00286{left:352.324025pt;}
.x2e_c00286{left:354.000000pt;}
.x84_c00286{left:358.080000pt;}
.x9a_c00286{left:361.145333pt;}
.x4e_c00286{left:363.360000pt;}
.x2f_c00286{left:364.560000pt;}
.x78_c00286{left:367.680000pt;}
.x64_c00286{left:369.360000pt;}
.x7f_c00286{left:371.280000pt;}
.xaf_c00286{left:372.960000pt;}
.xbb_c00286{left:374.160000pt;}
.xaa_c00286{left:376.080000pt;}
.xe_c00286{left:379.280000pt;}
.x20_c00286{left:381.120000pt;}
.x5a_c00286{left:382.560000pt;}
.x30_c00286{left:384.480000pt;}
.xb0_c00286{left:385.920000pt;}
.x8f_c00286{left:386.880000pt;}
.x85_c00286{left:389.520000pt;}
.x45_c00286{left:390.480000pt;}
.x65_c00286{left:397.200000pt;}
.x71_c00286{left:398.880000pt;}
.x21_c00286{left:400.560000pt;}
.x3b_c00286{left:402.720000pt;}
.xa6_c00286{left:403.680000pt;}
.xc2_c00286{left:407.882667pt;}
.xf_c00286{left:408.984000pt;}
.xbc_c00286{left:410.400000pt;}
.x5b_c00286{left:412.080000pt;}
.x31_c00286{left:413.280000pt;}
.x22_c00286{left:416.640000pt;}
.x66_c00286{left:419.280000pt;}
.x3c_c00286{left:421.920000pt;}
.x72_c00286{left:423.840000pt;}
.x4f_c00286{left:425.520000pt;}
.x90_c00286{left:429.120000pt;}
.x32_c00286{left:439.200000pt;}
.x9b_c00286{left:441.048000pt;}
.x3d_c00286{left:449.280000pt;}
.x23_c00286{left:450.720000pt;}
.x50_c00286{left:453.360000pt;}
.x9c_c00286{left:455.444000pt;}
.x73_c00286{left:456.480000pt;}
.x91_c00286{left:458.880000pt;}
.x67_c00286{left:462.960000pt;}
.x10_c00286{left:467.545333pt;}
.xc3_c00286{left:471.956000pt;}
.x46_c00286{left:477.360000pt;}
.x68_c00286{left:480.720000pt;}
.x24_c00286{left:482.160000pt;}
.x9d_c00286{left:484.256000pt;}
.x5c_c00286{left:486.720000pt;}
.x5_c00286{left:489.120000pt;}
.xb8_c00286{left:495.120000pt;}
.xbd_c00286{left:505.680000pt;}
.x11_c00286{left:507.854667pt;}
.xc4_c00286{left:515.697333pt;}
.x9e_c00286{left:518.912000pt;}
.x5d_c00286{left:527.040000pt;}
.x34_c00286{left:529.200000pt;}
.x25_c00286{left:530.400000pt;}
.x1_c00286{left:531.360000pt;}
.x33_c00286{left:532.560000pt;}
.x53_c00286{left:538.025333pt;}
.xb9_c00286{left:539.760000pt;}
.x47_c00286{left:543.600000pt;}
.x18_c00286{left:544.560000pt;}
.x35_c00286{left:545.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_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_ef4e99a7aa2876b3106553d3.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;}
.mb1_c00287{transform:matrix(0.010694,0.000139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010694,0.000139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010694,0.000139,-0.003250,0.249979,0,0);}
.m94_c00287{transform:matrix(0.011454,0.000137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011454,0.000137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011454,0.000137,-0.003000,0.249982,0,0);}
.m5d_c00287{transform:matrix(0.011614,0.000151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011614,0.000151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011614,0.000151,-0.003250,0.249979,0,0);}
.mb5_c00287{transform:matrix(0.061356,0.000736,-0.003000,0.249982,0,0);-ms-transform:matrix(0.061356,0.000736,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.061356,0.000736,-0.003000,0.249982,0,0);}
.ma0_c00287{transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);}
.md4_c00287{transform:matrix(0.084273,0.001433,-0.004249,0.249964,0,0);-ms-transform:matrix(0.084273,0.001433,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.084273,0.001433,-0.004249,0.249964,0,0);}
.m71_c00287{transform:matrix(0.093390,0.000934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.093390,0.000934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.093390,0.000934,-0.002500,0.249988,0,0);}
.ma9_c00287{transform:matrix(0.107041,0.001392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.107041,0.001392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.107041,0.001392,-0.003250,0.249979,0,0);}
.m40_c00287{transform:matrix(0.108845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00287{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);}
.m26_c00287{transform:matrix(0.139065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139065,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);}
.m77_c00287{transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145393,0.001454,-0.002500,0.249988,0,0);}
.m0_c00287{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);}
.m52_c00287{transform:matrix(0.149414,0.001345,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149414,0.001345,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149414,0.001345,-0.002250,0.249990,0,0);}
.m35_c00287{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);}
.mf_c00287{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);}
.m8e_c00287{transform:matrix(0.152409,0.001829,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152409,0.001829,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152409,0.001829,-0.003000,0.249982,0,0);}
.m3e_c00287{transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);}
.m28_c00287{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);}
.m80_c00287{transform:matrix(0.157917,0.001579,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157917,0.001579,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157917,0.001579,-0.002500,0.249988,0,0);}
.m6f_c00287{transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);}
.me_c00287{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);}
.m4f_c00287{transform:matrix(0.161783,0.001456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161783,0.001456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161783,0.001456,-0.002250,0.249990,0,0);}
.m1c_c00287{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);}
.mdc_c00287{transform:matrix(0.164926,0.002144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164926,0.002144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164926,0.002144,-0.003250,0.249979,0,0);}
.m1d_c00287{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);}
.m4d_c00287{transform:matrix(0.166033,0.001494,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166033,0.001494,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166033,0.001494,-0.002250,0.249990,0,0);}
.m33_c00287{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);}
.m5a_c00287{transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167771,0.002181,-0.003250,0.249979,0,0);}
.m2b_c00287{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);}
.m6_c00287{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);}
.m2e_c00287{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);}
.maa_c00287{transform:matrix(0.170321,0.002214,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170321,0.002214,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170321,0.002214,-0.003250,0.249979,0,0);}
.m55_c00287{transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170418,0.001534,-0.002250,0.249990,0,0);}
.m3f_c00287{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);}
.mb0_c00287{transform:matrix(0.171126,0.002225,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171126,0.002225,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171126,0.002225,-0.003250,0.249979,0,0);}
.m14_c00287{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);}
.m13_c00287{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);}
.mb3_c00287{transform:matrix(0.173333,0.002080,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173333,0.002080,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173333,0.002080,-0.003000,0.249982,0,0);}
.m34_c00287{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);}
.m8b_c00287{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);}
.ma4_c00287{transform:matrix(0.174130,0.002264,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174130,0.002264,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174130,0.002264,-0.003250,0.249979,0,0);}
.ma_c00287{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);}
.m59_c00287{transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);}
.mca_c00287{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);}
.m8c_c00287{transform:matrix(0.175762,0.002109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175762,0.002109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175762,0.002109,-0.003000,0.249982,0,0);}
.m38_c00287{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);}
.m8d_c00287{transform:matrix(0.176412,0.002117,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176412,0.002117,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176412,0.002117,-0.003000,0.249982,0,0);}
.m2c_c00287{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);}
.m56_c00287{transform:matrix(0.177458,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177458,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177458,0.001597,-0.002250,0.249990,0,0);}
.m31_c00287{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);}
.m6e_c00287{transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178571,0.001786,-0.002500,0.249988,0,0);}
.mb_c00287{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);}
.m98_c00287{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);}
.m2f_c00287{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);}
.m23_c00287{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);}
.m41_c00287{transform:matrix(0.180893,0.001628,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180893,0.001628,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180893,0.001628,-0.002250,0.249990,0,0);}
.m4e_c00287{transform:matrix(0.182133,0.001639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182133,0.001639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182133,0.001639,-0.002250,0.249990,0,0);}
.m3d_c00287{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);}
.m67_c00287{transform:matrix(0.182846,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182846,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182846,0.001828,-0.002500,0.249988,0,0);}
.md_c00287{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);}
.m57_c00287{transform:matrix(0.183288,0.001650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183288,0.001650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183288,0.001650,-0.002250,0.249990,0,0);}
.mdd_c00287{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);}
.mad_c00287{transform:matrix(0.184389,0.002397,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184389,0.002397,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184389,0.002397,-0.003250,0.249979,0,0);}
.m2a_c00287{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);}
.m6a_c00287{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);}
.mce_c00287{transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184753,0.003141,-0.004249,0.249964,0,0);}
.m36_c00287{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);}
.m29_c00287{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);}
.m10_c00287{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);}
.m78_c00287{transform:matrix(0.186196,0.001862,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186196,0.001862,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186196,0.001862,-0.002500,0.249988,0,0);}
.m20_c00287{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);}
.m51_c00287{transform:matrix(0.186992,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186992,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186992,0.001683,-0.002250,0.249990,0,0);}
.mcb_c00287{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);}
.m4a_c00287{transform:matrix(0.187322,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187322,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187322,0.001686,-0.002250,0.249990,0,0);}
.m27_c00287{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);}
.m69_c00287{transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);}
.m1f_c00287{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);}
.m58_c00287{transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);}
.mc9_c00287{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);}
.m8f_c00287{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);}
.m1e_c00287{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);}
.m90_c00287{transform:matrix(0.189496,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189496,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189496,0.002274,-0.003000,0.249982,0,0);}
.m43_c00287{transform:matrix(0.189547,0.001706,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189547,0.001706,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189547,0.001706,-0.002250,0.249990,0,0);}
.m25_c00287{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);}
.m3a_c00287{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);}
.m97_c00287{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);}
.mb6_c00287{transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);}
.m66_c00287{transform:matrix(0.191410,0.001914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191410,0.001914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191410,0.001914,-0.002500,0.249988,0,0);}
.m74_c00287{transform:matrix(0.191440,0.001914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191440,0.001914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191440,0.001914,-0.002500,0.249988,0,0);}
.m61_c00287{transform:matrix(0.191735,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191735,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191735,0.001917,-0.002500,0.249988,0,0);}
.m53_c00287{transform:matrix(0.192592,0.001733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192592,0.001733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192592,0.001733,-0.002250,0.249990,0,0);}
.m50_c00287{transform:matrix(0.192882,0.001736,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192882,0.001736,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192882,0.001736,-0.002250,0.249990,0,0);}
.mc_c00287{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);}
.m6d_c00287{transform:matrix(0.192970,0.001930,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192970,0.001930,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192970,0.001930,-0.002500,0.249988,0,0);}
.maf_c00287{transform:matrix(0.193329,0.002513,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193329,0.002513,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193329,0.002513,-0.003250,0.249979,0,0);}
.m45_c00287{transform:matrix(0.193517,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193517,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193517,0.001742,-0.002250,0.249990,0,0);}
.m16_c00287{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);}
.mae_c00287{transform:matrix(0.193954,0.002521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193954,0.002521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193954,0.002521,-0.003250,0.249979,0,0);}
.mac_c00287{transform:matrix(0.194579,0.002530,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194579,0.002530,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194579,0.002530,-0.003250,0.249979,0,0);}
.m15_c00287{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);}
.m1b_c00287{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);}
.m5_c00287{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);}
.m93_c00287{transform:matrix(0.196406,0.002357,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196406,0.002357,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196406,0.002357,-0.003000,0.249982,0,0);}
.mbb_c00287{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);}
.m75_c00287{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);}
.mb4_c00287{transform:matrix(0.197811,0.002374,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197811,0.002374,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197811,0.002374,-0.003000,0.249982,0,0);}
.m11_c00287{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);}
.m39_c00287{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);}
.m4_c00287{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);}
.mab_c00287{transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);}
.m8_c00287{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);}
.m84_c00287{transform:matrix(0.199358,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199358,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199358,0.002193,-0.002750,0.249985,0,0);}
.m73_c00287{transform:matrix(0.199770,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199770,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199770,0.001998,-0.002500,0.249988,0,0);}
.m7d_c00287{transform:matrix(0.200205,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200205,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200205,0.002002,-0.002500,0.249988,0,0);}
.m5e_c00287{transform:matrix(0.200250,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200250,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200250,0.002002,-0.002500,0.249988,0,0);}
.m9_c00287{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);}
.ma3_c00287{transform:matrix(0.201033,0.002613,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201033,0.002613,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201033,0.002613,-0.003250,0.249979,0,0);}
.m6b_c00287{transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);}
.m70_c00287{transform:matrix(0.202925,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202925,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202925,0.002029,-0.002500,0.249988,0,0);}
.md6_c00287{transform:matrix(0.203086,0.003452,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203086,0.003452,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203086,0.003452,-0.004249,0.249964,0,0);}
.mcf_c00287{transform:matrix(0.205840,0.003499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205840,0.003499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205840,0.003499,-0.004249,0.249964,0,0);}
.mbd_c00287{transform:matrix(0.205895,0.002471,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205895,0.002471,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205895,0.002471,-0.003000,0.249982,0,0);}
.m62_c00287{transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206135,0.002061,-0.002500,0.249988,0,0);}
.m46_c00287{transform:matrix(0.206177,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206177,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206177,0.001856,-0.002250,0.249990,0,0);}
.m4c_c00287{transform:matrix(0.206397,0.001858,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206397,0.001858,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206397,0.001858,-0.002250,0.249990,0,0);}
.m3_c00287{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);}
.m60_c00287{transform:matrix(0.208040,0.002080,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208040,0.002080,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208040,0.002080,-0.002500,0.249988,0,0);}
.m9c_c00287{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);}
.m21_c00287{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{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);}
.m1a_c00287{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);}
.m49_c00287{transform:matrix(0.211146,0.001900,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211146,0.001900,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211146,0.001900,-0.002250,0.249990,0,0);}
.m5f_c00287{transform:matrix(0.211239,0.002112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211239,0.002112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211239,0.002112,-0.002500,0.249988,0,0);}
.m42_c00287{transform:matrix(0.212141,0.001909,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212141,0.001909,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212141,0.001909,-0.002250,0.249990,0,0);}
.m32_c00287{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);}
.mcd_c00287{transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);}
.md8_c00287{transform:matrix(0.213282,0.002773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213282,0.002773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213282,0.002773,-0.003250,0.249979,0,0);}
.m96_c00287{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);}
.m22_c00287{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);}
.ma2_c00287{transform:matrix(0.215762,0.002805,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215762,0.002805,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215762,0.002805,-0.003250,0.249979,0,0);}
.m76_c00287{transform:matrix(0.216139,0.002161,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216139,0.002161,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216139,0.002161,-0.002500,0.249988,0,0);}
.mcc_c00287{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);}
.mda_c00287{transform:matrix(0.218492,0.002840,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218492,0.002840,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218492,0.002840,-0.003250,0.249979,0,0);}
.mb7_c00287{transform:matrix(0.219339,0.002632,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219339,0.002632,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219339,0.002632,-0.003000,0.249982,0,0);}
.ma6_c00287{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);}
.m89_c00287{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);}
.m2_c00287{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);}
.m30_c00287{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);}
.m3c_c00287{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);}
.m92_c00287{transform:matrix(0.223314,0.002680,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223314,0.002680,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223314,0.002680,-0.003000,0.249982,0,0);}
.m3b_c00287{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_c00287{transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);}
.m47_c00287{transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226176,0.002036,-0.002250,0.249990,0,0);}
.m65_c00287{transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);}
.m99_c00287{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);}
.m68_c00287{transform:matrix(0.226879,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226879,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226879,0.002269,-0.002500,0.249988,0,0);}
.m44_c00287{transform:matrix(0.227121,0.002044,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227121,0.002044,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227121,0.002044,-0.002250,0.249990,0,0);}
.m8a_c00287{transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227319,0.002728,-0.003000,0.249982,0,0);}
.m83_c00287{transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);}
.m9f_c00287{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);}
.m17_c00287{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);}
.m24_c00287{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);}
.m9a_c00287{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);}
.mdb_c00287{transform:matrix(0.234840,0.003053,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234840,0.003053,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234840,0.003053,-0.003250,0.249979,0,0);}
.m37_c00287{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);}
.md9_c00287{transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);}
.m82_c00287{transform:matrix(0.238866,0.002628,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238866,0.002628,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238866,0.002628,-0.002750,0.249985,0,0);}
.md2_c00287{transform:matrix(0.239255,0.004067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239255,0.004067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239255,0.004067,-0.004249,0.249964,0,0);}
.mbc_c00287{transform:matrix(0.240223,0.002883,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240223,0.002883,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240223,0.002883,-0.003000,0.249982,0,0);}
.m54_c00287{transform:matrix(0.240880,0.002168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240880,0.002168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240880,0.002168,-0.002250,0.249990,0,0);}
.md5_c00287{transform:matrix(0.242605,0.004124,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242605,0.004124,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242605,0.004124,-0.004249,0.249964,0,0);}
.ma5_c00287{transform:matrix(0.244669,0.003181,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244669,0.003181,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244669,0.003181,-0.003250,0.249979,0,0);}
.m5c_c00287{transform:matrix(0.245174,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245174,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245174,0.003187,-0.003250,0.249979,0,0);}
.m18_c00287{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.md3_c00287{transform:matrix(0.250314,0.004255,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250314,0.004255,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250314,0.004255,-0.004249,0.249964,0,0);}
.mbf_c00287{transform:matrix(0.251790,0.004784,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251790,0.004784,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251790,0.004784,-0.004749,0.249955,0,0);}
.m6c_c00287{transform:matrix(0.253522,0.002535,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253522,0.002535,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253522,0.002535,-0.002500,0.249988,0,0);}
.m72_c00287{transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);}
.mbe_c00287{transform:matrix(0.264112,0.005018,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264112,0.005018,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264112,0.005018,-0.004749,0.249955,0,0);}
.m95_c00287{transform:matrix(0.266101,0.003193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266101,0.003193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266101,0.003193,-0.003000,0.249982,0,0);}
.mc6_c00287{transform:matrix(0.268761,0.005106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268761,0.005106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268761,0.005106,-0.004749,0.249955,0,0);}
.mc4_c00287{transform:matrix(0.268986,0.005111,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268986,0.005111,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268986,0.005111,-0.004749,0.249955,0,0);}
.me0_c00287{transform:matrix(0.275077,0.003576,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275077,0.003576,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275077,0.003576,-0.003250,0.249979,0,0);}
.m86_c00287{transform:matrix(0.276943,0.003046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276943,0.003046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276943,0.003046,-0.002750,0.249985,0,0);}
.m4b_c00287{transform:matrix(0.278469,0.002506,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278469,0.002506,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278469,0.002506,-0.002250,0.249990,0,0);}
.m7a_c00287{transform:matrix(0.279356,0.002794,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279356,0.002794,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279356,0.002794,-0.002500,0.249988,0,0);}
.ma1_c00287{transform:matrix(0.284726,0.003701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284726,0.003701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284726,0.003701,-0.003250,0.249979,0,0);}
.ma8_c00287{transform:matrix(0.285056,0.003706,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285056,0.003706,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285056,0.003706,-0.003250,0.249979,0,0);}
.m5b_c00287{transform:matrix(0.289121,0.003759,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289121,0.003759,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289121,0.003759,-0.003250,0.249979,0,0);}
.mc5_c00287{transform:matrix(0.291772,0.005544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.291772,0.005544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.291772,0.005544,-0.004749,0.249955,0,0);}
.mdf_c00287{transform:matrix(0.298235,0.003877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.298235,0.003877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.298235,0.003877,-0.003250,0.249979,0,0);}
.m81_c00287{transform:matrix(0.305400,0.003054,-0.002500,0.249988,0,0);-ms-transform:matrix(0.305400,0.003054,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.305400,0.003054,-0.002500,0.249988,0,0);}
.mb8_c00287{transform:matrix(0.305848,0.003670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305848,0.003670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305848,0.003670,-0.003000,0.249982,0,0);}
.me2_c00287{transform:matrix(0.307839,0.004002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307839,0.004002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307839,0.004002,-0.003250,0.249979,0,0);}
.mc1_c00287{transform:matrix(0.319267,0.006066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.319267,0.006066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.319267,0.006066,-0.004749,0.249955,0,0);}
.m7c_c00287{transform:matrix(0.328884,0.003289,-0.002500,0.249988,0,0);-ms-transform:matrix(0.328884,0.003289,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.328884,0.003289,-0.002500,0.249988,0,0);}
.m48_c00287{transform:matrix(0.333177,0.002999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.333177,0.002999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.333177,0.002999,-0.002250,0.249990,0,0);}
.m1_c00287{transform:matrix(0.336160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336160,0.000000,0.000000,0.250000,0,0);}
.mc7_c00287{transform:matrix(0.339460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339460,0.000000,0.000000,0.250000,0,0);}
.m7e_c00287{transform:matrix(0.340873,0.003409,-0.002500,0.249988,0,0);-ms-transform:matrix(0.340873,0.003409,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.340873,0.003409,-0.002500,0.249988,0,0);}
.m63_c00287{transform:matrix(0.351717,0.003517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.351717,0.003517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.351717,0.003517,-0.002500,0.249988,0,0);}
.mc2_c00287{transform:matrix(0.364799,0.006931,-0.004749,0.249955,0,0);-ms-transform:matrix(0.364799,0.006931,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.364799,0.006931,-0.004749,0.249955,0,0);}
.m9b_c00287{transform:matrix(0.372545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372545,0.000000,0.000000,0.250000,0,0);}
.mba_c00287{transform:matrix(0.377788,0.004533,-0.003000,0.249982,0,0);-ms-transform:matrix(0.377788,0.004533,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.377788,0.004533,-0.003000,0.249982,0,0);}
.m64_c00287{transform:matrix(0.388311,0.003883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.388311,0.003883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.388311,0.003883,-0.002500,0.249988,0,0);}
.m7b_c00287{transform:matrix(0.391730,0.003917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391730,0.003917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391730,0.003917,-0.002500,0.249988,0,0);}
.m9d_c00287{transform:matrix(0.391875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391875,0.000000,0.000000,0.250000,0,0);}
.m7f_c00287{transform:matrix(0.393125,0.003931,-0.002500,0.249988,0,0);-ms-transform:matrix(0.393125,0.003931,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.393125,0.003931,-0.002500,0.249988,0,0);}
.md1_c00287{transform:matrix(0.398837,0.006780,-0.004249,0.249964,0,0);-ms-transform:matrix(0.398837,0.006780,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.398837,0.006780,-0.004249,0.249964,0,0);}
.m87_c00287{transform:matrix(0.419320,0.004613,-0.002750,0.249985,0,0);-ms-transform:matrix(0.419320,0.004613,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.419320,0.004613,-0.002750,0.249985,0,0);}
.md7_c00287{transform:matrix(0.426989,0.005551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.426989,0.005551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.426989,0.005551,-0.003250,0.249979,0,0);}
.mc3_c00287{transform:matrix(0.441465,0.008388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.441465,0.008388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.441465,0.008388,-0.004749,0.249955,0,0);}
.ma7_c00287{transform:matrix(0.447732,0.005821,-0.003250,0.249979,0,0);-ms-transform:matrix(0.447732,0.005821,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.447732,0.005821,-0.003250,0.249979,0,0);}
.mb9_c00287{transform:matrix(0.467461,0.005610,-0.003000,0.249982,0,0);-ms-transform:matrix(0.467461,0.005610,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.467461,0.005610,-0.003000,0.249982,0,0);}
.me1_c00287{transform:matrix(0.488844,0.006355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.488844,0.006355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.488844,0.006355,-0.003250,0.249979,0,0);}
.mde_c00287{transform:matrix(0.497928,0.006473,-0.003250,0.249979,0,0);-ms-transform:matrix(0.497928,0.006473,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.497928,0.006473,-0.003250,0.249979,0,0);}
.m79_c00287{transform:matrix(0.516199,0.005162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.516199,0.005162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.516199,0.005162,-0.002500,0.249988,0,0);}
.mc0_c00287{transform:matrix(0.533899,0.010144,-0.004749,0.249955,0,0);-ms-transform:matrix(0.533899,0.010144,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.533899,0.010144,-0.004749,0.249955,0,0);}
.m88_c00287{transform:matrix(0.534768,0.005882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.534768,0.005882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.534768,0.005882,-0.002750,0.249985,0,0);}
.md0_c00287{transform:matrix(0.545776,0.009278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.545776,0.009278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.545776,0.009278,-0.004249,0.249964,0,0);}
.m85_c00287{transform:matrix(0.548642,0.006035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.548642,0.006035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.548642,0.006035,-0.002750,0.249985,0,0);}
.mc8_c00287{transform:matrix(0.664450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664450,0.000000,0.000000,0.250000,0,0);}
.m9e_c00287{transform:matrix(0.772205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772205,0.000000,0.000000,0.250000,0,0);}
.m91_c00287{transform:matrix(0.989059,0.011869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.989059,0.011869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.989059,0.011869,-0.003000,0.249982,0,0);}
.mb2_c00287{transform:matrix(1.246175,0.014954,-0.003000,0.249982,0,0);-ms-transform:matrix(1.246175,0.014954,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.246175,0.014954,-0.003000,0.249982,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;}
.fs17_c00287{font-size:63.000000px;}
.fs3_c00287{font-size:65.100000px;}
.fs18_c00287{font-size:66.150000px;}
.fs7_c00287{font-size:67.202722px;}
.fs9_c00287{font-size:68.252764px;}
.fs12_c00287{font-size:68.255767px;}
.fs10_c00287{font-size:69.304989px;}
.fs19_c00287{font-size:69.310013px;}
.fs16_c00287{font-size:69.312508px;}
.fs2_c00287{font-size:70.350000px;}
.fsd_c00287{font-size:70.353517px;}
.fse_c00287{font-size:70.354256px;}
.fs1_c00287{font-size:71.400000px;}
.fs8_c00287{font-size:71.402892px;}
.fsc_c00287{font-size:71.403570px;}
.fs15_c00287{font-size:71.405141px;}
.fs13_c00287{font-size:71.406033px;}
.fs4_c00287{font-size:72.450000px;}
.fsb_c00287{font-size:72.453622px;}
.fs14_c00287{font-size:72.455216px;}
.fs11_c00287{font-size:73.500000px;}
.fsa_c00287{font-size:73.506210px;}
.fs6_c00287{font-size:74.550000px;}
.fsf_c00287{font-size:74.555367px;}
.fs5_c00287{font-size:78.750000px;}
.fs0_c00287{font-size:126.000000px;}
.y0_c00287{bottom:0.000000px;}
.yac_c00287{bottom:165.845509px;}
.yab_c00287{bottom:166.091600px;}
.yaa_c00287{bottom:166.715873px;}
.ya8_c00287{bottom:166.871307px;}
.ya9_c00287{bottom:166.890261px;}
.ya7_c00287{bottom:167.659711px;}
.ya6_c00287{bottom:167.985478px;}
.ya5_c00287{bottom:168.938385px;}
.ya4_c00287{bottom:169.959932px;}
.ya3_c00287{bottom:170.510046px;}
.ya2_c00287{bottom:171.026191px;}
.ya1_c00287{bottom:171.392206px;}
.ya0_c00287{bottom:171.991500px;}
.y9f_c00287{bottom:194.348436px;}
.y9e_c00287{bottom:194.804657px;}
.y9d_c00287{bottom:195.048054px;}
.y9c_c00287{bottom:195.197790px;}
.y9b_c00287{bottom:196.019910px;}
.y9a_c00287{bottom:196.613346px;}
.y99_c00287{bottom:197.290320px;}
.y98_c00287{bottom:197.845379px;}
.y97_c00287{bottom:198.841026px;}
.y96_c00287{bottom:199.263000px;}
.y95_c00287{bottom:226.635000px;}
.y94_c00287{bottom:244.591500px;}
.y93_c00287{bottom:245.697135px;}
.y92_c00287{bottom:247.081608px;}
.y91_c00287{bottom:247.610083px;}
.y90_c00287{bottom:248.149332px;}
.y8f_c00287{bottom:248.354304px;}
.y8e_c00287{bottom:249.266247px;}
.y8d_c00287{bottom:249.650940px;}
.y8c_c00287{bottom:250.109932px;}
.y8b_c00287{bottom:250.567500px;}
.y88_c00287{bottom:274.458918px;}
.y89_c00287{bottom:274.458996px;}
.y87_c00287{bottom:274.459302px;}
.y8a_c00287{bottom:274.459392px;}
.y86_c00287{bottom:296.369970px;}
.y85_c00287{bottom:296.662164px;}
.y84_c00287{bottom:297.091770px;}
.y83_c00287{bottom:297.556188px;}
.y82_c00287{bottom:297.719700px;}
.y81_c00287{bottom:298.300326px;}
.y80_c00287{bottom:298.611348px;}
.y7f_c00287{bottom:299.656500px;}
.y7e_c00287{bottom:321.985317px;}
.y7d_c00287{bottom:324.979737px;}
.y7c_c00287{bottom:325.267479px;}
.y7b_c00287{bottom:325.843080px;}
.y7a_c00287{bottom:326.183472px;}
.y79_c00287{bottom:327.338613px;}
.y78_c00287{bottom:327.893057px;}
.y77_c00287{bottom:328.321706px;}
.y76_c00287{bottom:344.083614px;}
.y75_c00287{bottom:344.806206px;}
.y74_c00287{bottom:345.346200px;}
.y73_c00287{bottom:345.520823px;}
.y72_c00287{bottom:347.485896px;}
.y71_c00287{bottom:348.100497px;}
.y70_c00287{bottom:348.664730px;}
.y6f_c00287{bottom:349.357057px;}
.y6e_c00287{bottom:350.736000px;}
.y6d_c00287{bottom:375.628500px;}
.y6c_c00287{bottom:405.728412px;}
.y6b_c00287{bottom:423.073968px;}
.y6a_c00287{bottom:423.519990px;}
.y69_c00287{bottom:423.675960px;}
.y68_c00287{bottom:423.887262px;}
.y67_c00287{bottom:424.435092px;}
.y66_c00287{bottom:425.802660px;}
.y65_c00287{bottom:425.990094px;}
.y64_c00287{bottom:426.453882px;}
.y63_c00287{bottom:426.702876px;}
.y62_c00287{bottom:427.344432px;}
.y61_c00287{bottom:427.849368px;}
.y60_c00287{bottom:428.137674px;}
.y5f_c00287{bottom:428.491500px;}
.y5e_c00287{bottom:453.020827px;}
.y5d_c00287{bottom:453.389734px;}
.y5c_c00287{bottom:453.698466px;}
.y5b_c00287{bottom:453.884553px;}
.y5a_c00287{bottom:454.482331px;}
.y59_c00287{bottom:455.456145px;}
.y58_c00287{bottom:455.823253px;}
.y57_c00287{bottom:456.031500px;}
.y56_c00287{bottom:484.645230px;}
.y55_c00287{bottom:502.306950px;}
.y54_c00287{bottom:503.417340px;}
.y53_c00287{bottom:503.695020px;}
.y52_c00287{bottom:503.888160px;}
.y51_c00287{bottom:504.180090px;}
.y50_c00287{bottom:504.749700px;}
.y4f_c00287{bottom:505.118610px;}
.y4e_c00287{bottom:506.072925px;}
.y4d_c00287{bottom:506.715795px;}
.y4c_c00287{bottom:507.000330px;}
.y4b_c00287{bottom:507.370290px;}
.y4a_c00287{bottom:508.138365px;}
.y49_c00287{bottom:525.544530px;}
.y48_c00287{bottom:525.957300px;}
.y47_c00287{bottom:526.171155px;}
.y46_c00287{bottom:526.351155px;}
.y45_c00287{bottom:526.925850px;}
.y44_c00287{bottom:527.122005px;}
.y43_c00287{bottom:527.811930px;}
.y42_c00287{bottom:528.271455px;}
.y41_c00287{bottom:528.944190px;}
.y40_c00287{bottom:529.462890px;}
.y3f_c00287{bottom:529.893300px;}
.y3e_c00287{bottom:530.341290px;}
.y3d_c00287{bottom:530.550345px;}
.y3c_c00287{bottom:547.993020px;}
.y3b_c00287{bottom:548.303880px;}
.y3a_c00287{bottom:548.923125px;}
.y39_c00287{bottom:549.193080px;}
.y38_c00287{bottom:549.915075px;}
.y37_c00287{bottom:550.353585px;}
.y36_c00287{bottom:550.728900px;}
.y35_c00287{bottom:551.517180px;}
.y34_c00287{bottom:551.881695px;}
.y33_c00287{bottom:552.151500px;}
.y32_c00287{bottom:576.515226px;}
.y31_c00287{bottom:578.115240px;}
.y30_c00287{bottom:578.420454px;}
.y2f_c00287{bottom:579.394109px;}
.y2e_c00287{bottom:579.961500px;}
.y2d_c00287{bottom:607.475413px;}
.y2c_c00287{bottom:607.475460px;}
.y2b_c00287{bottom:626.418204px;}
.y2a_c00287{bottom:626.641737px;}
.y29_c00287{bottom:626.807274px;}
.y28_c00287{bottom:627.769338px;}
.y27_c00287{bottom:628.005372px;}
.y26_c00287{bottom:628.479249px;}
.y25_c00287{bottom:628.858275px;}
.y24_c00287{bottom:629.618986px;}
.y23_c00287{bottom:629.815762px;}
.y22_c00287{bottom:630.126424px;}
.y21_c00287{bottom:630.449952px;}
.y20_c00287{bottom:649.107150px;}
.y1f_c00287{bottom:649.625482px;}
.y1e_c00287{bottom:650.164902px;}
.y1d_c00287{bottom:650.414571px;}
.y1c_c00287{bottom:650.813158px;}
.y1b_c00287{bottom:651.221641px;}
.y1a_c00287{bottom:651.454651px;}
.y19_c00287{bottom:652.048138px;}
.y18_c00287{bottom:652.254216px;}
.y17_c00287{bottom:652.592580px;}
.y16_c00287{bottom:653.131500px;}
.y15_c00287{bottom:679.008000px;}
.y14_c00287{bottom:707.481000px;}
.y13_c00287{bottom:727.861500px;}
.y12_c00287{bottom:728.037000px;}
.y11_c00287{bottom:728.194500px;}
.y10_c00287{bottom:728.670000px;}
.yf_c00287{bottom:728.872500px;}
.ye_c00287{bottom:729.096000px;}
.yd_c00287{bottom:729.252000px;}
.yc_c00287{bottom:729.825000px;}
.yb_c00287{bottom:730.002000px;}
.ya_c00287{bottom:730.192500px;}
.y9_c00287{bottom:730.753500px;}
.y8_c00287{bottom:730.936500px;}
.y7_c00287{bottom:731.221500px;}
.y6_c00287{bottom:731.431500px;}
.y5_c00287{bottom:757.488000px;}
.y4_c00287{bottom:785.677500px;}
.y3_c00287{bottom:808.317000px;}
.y2_c00287{bottom:835.902000px;}
.y1_c00287{bottom:881.329500px;}
.h19_c00287{height:63.000000px;}
.h5_c00287{height:65.100000px;}
.h1a_c00287{height:66.150000px;}
.h9_c00287{height:67.202722px;}
.hb_c00287{height:68.252764px;}
.h14_c00287{height:68.255767px;}
.h12_c00287{height:69.304989px;}
.h1b_c00287{height:69.310013px;}
.h18_c00287{height:69.312508px;}
.h4_c00287{height:70.350000px;}
.hf_c00287{height:70.353517px;}
.h10_c00287{height:70.354256px;}
.h3_c00287{height:71.400000px;}
.ha_c00287{height:71.402892px;}
.he_c00287{height:71.403570px;}
.h17_c00287{height:71.405141px;}
.h15_c00287{height:71.406033px;}
.h6_c00287{height:72.450000px;}
.hd_c00287{height:72.453622px;}
.h16_c00287{height:72.455216px;}
.h13_c00287{height:73.500000px;}
.hc_c00287{height:73.506210px;}
.h8_c00287{height:74.550000px;}
.h11_c00287{height:74.555367px;}
.h7_c00287{height:78.750000px;}
.h2_c00287{height:126.000000px;}
.h0_c00287{height:1008.450000px;}
.h1_c00287{height:1008.750000px;}
.w0_c00287{width:696.000000px;}
.x0_c00287{left:0.000000px;}
.x72_c00287{left:133.194000px;}
.x64_c00287{left:145.557780px;}
.x49_c00287{left:149.041521px;}
.x1_c00287{left:152.010000px;}
.x19_c00287{left:153.360000px;}
.x8b_c00287{left:166.422000px;}
.x4d_c00287{left:167.808000px;}
.x37_c00287{left:168.894000px;}
.xc_c00287{left:170.370000px;}
.x77_c00287{left:181.554763px;}
.x85_c00287{left:183.942000px;}
.x65_c00287{left:185.635500px;}
.x3_c00287{left:187.380000px;}
.x80_c00287{left:192.147000px;}
.x4e_c00287{left:194.788500px;}
.x25_c00287{left:197.020500px;}
.x84_c00287{left:198.990000px;}
.x30_c00287{left:205.201500px;}
.x54_c00287{left:209.109570px;}
.xd_c00287{left:213.030000px;}
.x1a_c00287{left:215.190000px;}
.x81_c00287{left:216.304500px;}
.x4_c00287{left:220.590000px;}
.x41_c00287{left:221.825962px;}
.x78_c00287{left:224.204263px;}
.x38_c00287{left:228.774000px;}
.x4f_c00287{left:231.240000px;}
.x26_c00287{left:232.635000px;}
.x5e_c00287{left:237.230475px;}
.x1b_c00287{left:240.030000px;}
.x42_c00287{left:243.689962px;}
.x6e_c00287{left:245.430000px;}
.x55_c00287{left:248.250180px;}
.x31_c00287{left:251.101500px;}
.x2_c00287{left:255.150000px;}
.xe_c00287{left:258.660000px;}
.x5_c00287{left:264.330000px;}
.x39_c00287{left:266.370000px;}
.x1c_c00287{left:268.380000px;}
.x32_c00287{left:277.831500px;}
.xf_c00287{left:280.800000px;}
.x1d_c00287{left:282.690000px;}
.x82_c00287{left:284.548500px;}
.x3a_c00287{left:289.267500px;}
.x7e_c00287{left:292.421208px;}
.x6_c00287{left:293.490000px;}
.x56_c00287{left:295.469715px;}
.x86_c00287{left:299.982000px;}
.x5f_c00287{left:308.518830px;}
.x50_c00287{left:310.068000px;}
.x33_c00287{left:311.851500px;}
.x10_c00287{left:312.930000px;}
.x1e_c00287{left:314.820000px;}
.x68_c00287{left:317.376000px;}
.x8c_c00287{left:322.696500px;}
.x22_c00287{left:324.270000px;}
.x7_c00287{left:325.620000px;}
.x43_c00287{left:328.213462px;}
.x11_c00287{left:330.210000px;}
.x73_c00287{left:335.925000px;}
.x4a_c00287{left:338.697000px;}
.x87_c00287{left:339.804000px;}
.x7b_c00287{left:342.183000px;}
.x23_c00287{left:348.300000px;}
.x1f_c00287{left:349.650000px;}
.x7f_c00287{left:351.015150px;}
.x3b_c00287{left:355.210500px;}
.x57_c00287{left:356.592600px;}
.x4b_c00287{left:362.175000px;}
.x12_c00287{left:363.690000px;}
.x8_c00287{left:366.390000px;}
.x44_c00287{left:370.327462px;}
.x27_c00287{left:371.683500px;}
.x88_c00287{left:374.712000px;}
.x69_c00287{left:376.774500px;}
.x2f_c00287{left:379.621500px;}
.x3c_c00287{left:381.100500px;}
.x20_c00287{left:383.670000px;}
.x51_c00287{left:391.450500px;}
.x6f_c00287{left:395.820000px;}
.x66_c00287{left:397.729500px;}
.x21_c00287{left:398.790000px;}
.x34_c00287{left:401.221500px;}
.x13_c00287{left:403.110000px;}
.x79_c00287{left:405.656263px;}
.x24_c00287{left:408.780000px;}
.x60_c00287{left:410.238270px;}
.x7c_c00287{left:416.685000px;}
.x9_c00287{left:422.550000px;}
.x83_c00287{left:424.399500px;}
.x3d_c00287{left:426.487500px;}
.x89_c00287{left:431.880000px;}
.x35_c00287{left:437.131500px;}
.x7d_c00287{left:441.034500px;}
.x28_c00287{left:443.238000px;}
.x70_c00287{left:446.580000px;}
.x45_c00287{left:449.206462px;}
.xa_c00287{left:453.330000px;}
.x67_c00287{left:459.333000px;}
.x58_c00287{left:461.036550px;}
.x29_c00287{left:462.711000px;}
.x14_c00287{left:466.560000px;}
.x3e_c00287{left:470.775000px;}
.x8a_c00287{left:473.034000px;}
.x8d_c00287{left:474.577500px;}
.x61_c00287{left:476.440275px;}
.x59_c00287{left:478.851870px;}
.x4c_c00287{left:485.253000px;}
.xb_c00287{left:489.240000px;}
.x2a_c00287{left:490.737000px;}
.x15_c00287{left:495.450000px;}
.x3f_c00287{left:498.516000px;}
.x8e_c00287{left:499.636500px;}
.x71_c00287{left:504.630000px;}
.x6a_c00287{left:506.358000px;}
.x62_c00287{left:512.571180px;}
.x2b_c00287{left:516.120000px;}
.x36_c00287{left:523.531500px;}
.x5a_c00287{left:531.070845px;}
.x74_c00287{left:534.361500px;}
.x16_c00287{left:538.650000px;}
.x5b_c00287{left:547.420680px;}
.x52_c00287{left:552.570000px;}
.x46_c00287{left:556.102463px;}
.x40_c00287{left:558.451500px;}
.x17_c00287{left:560.250000px;}
.x5c_c00287{left:566.855985px;}
.x6b_c00287{left:569.619000px;}
.x8f_c00287{left:572.239500px;}
.x47_c00287{left:574.495462px;}
.x2c_c00287{left:575.535000px;}
.x6c_c00287{left:582.616500px;}
.x53_c00287{left:583.656000px;}
.x75_c00287{left:589.332000px;}
.x2d_c00287{left:595.242000px;}
.x63_c00287{left:597.957615px;}
.x48_c00287{left:599.332462px;}
.x5d_c00287{left:604.382610px;}
.x18_c00287{left:615.330000px;}
.x2e_c00287{left:617.115000px;}
.x6d_c00287{left:619.785000px;}
.x7a_c00287{left:635.996263px;}
.x90_c00287{left:639.190500px;}
.x76_c00287{left:644.916000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.fs17_c00287{font-size:56.000000pt;}
.fs3_c00287{font-size:57.866667pt;}
.fs18_c00287{font-size:58.800000pt;}
.fs7_c00287{font-size:59.735752pt;}
.fs9_c00287{font-size:60.669124pt;}
.fs12_c00287{font-size:60.671793pt;}
.fs10_c00287{font-size:61.604435pt;}
.fs19_c00287{font-size:61.608901pt;}
.fs16_c00287{font-size:61.611118pt;}
.fs2_c00287{font-size:62.533333pt;}
.fsd_c00287{font-size:62.536460pt;}
.fse_c00287{font-size:62.537116pt;}
.fs1_c00287{font-size:63.466667pt;}
.fs8_c00287{font-size:63.469237pt;}
.fsc_c00287{font-size:63.469840pt;}
.fs15_c00287{font-size:63.471236pt;}
.fs13_c00287{font-size:63.472029pt;}
.fs4_c00287{font-size:64.400000pt;}
.fsb_c00287{font-size:64.403220pt;}
.fs14_c00287{font-size:64.404637pt;}
.fs11_c00287{font-size:65.333333pt;}
.fsa_c00287{font-size:65.338854pt;}
.fs6_c00287{font-size:66.266667pt;}
.fsf_c00287{font-size:66.271438pt;}
.fs5_c00287{font-size:70.000000pt;}
.fs0_c00287{font-size:112.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.yac_c00287{bottom:147.418231pt;}
.yab_c00287{bottom:147.636977pt;}
.yaa_c00287{bottom:148.191887pt;}
.ya8_c00287{bottom:148.330051pt;}
.ya9_c00287{bottom:148.346899pt;}
.ya7_c00287{bottom:149.030855pt;}
.ya6_c00287{bottom:149.320425pt;}
.ya5_c00287{bottom:150.167453pt;}
.ya4_c00287{bottom:151.075495pt;}
.ya3_c00287{bottom:151.564485pt;}
.ya2_c00287{bottom:152.023281pt;}
.ya1_c00287{bottom:152.348628pt;}
.ya0_c00287{bottom:152.881333pt;}
.y9f_c00287{bottom:172.754165pt;}
.y9e_c00287{bottom:173.159695pt;}
.y9d_c00287{bottom:173.376048pt;}
.y9c_c00287{bottom:173.509147pt;}
.y9b_c00287{bottom:174.239920pt;}
.y9a_c00287{bottom:174.767419pt;}
.y99_c00287{bottom:175.369173pt;}
.y98_c00287{bottom:175.862559pt;}
.y97_c00287{bottom:176.747579pt;}
.y96_c00287{bottom:177.122667pt;}
.y95_c00287{bottom:201.453333pt;}
.y94_c00287{bottom:217.414667pt;}
.y93_c00287{bottom:218.397453pt;}
.y92_c00287{bottom:219.628096pt;}
.y91_c00287{bottom:220.097852pt;}
.y90_c00287{bottom:220.577184pt;}
.y8f_c00287{bottom:220.759381pt;}
.y8e_c00287{bottom:221.569997pt;}
.y8d_c00287{bottom:221.911947pt;}
.y8c_c00287{bottom:222.319940pt;}
.y8b_c00287{bottom:222.726667pt;}
.y88_c00287{bottom:243.963483pt;}
.y89_c00287{bottom:243.963552pt;}
.y87_c00287{bottom:243.963824pt;}
.y8a_c00287{bottom:243.963904pt;}
.y86_c00287{bottom:263.439973pt;}
.y85_c00287{bottom:263.699701pt;}
.y84_c00287{bottom:264.081573pt;}
.y83_c00287{bottom:264.494389pt;}
.y82_c00287{bottom:264.639733pt;}
.y81_c00287{bottom:265.155845pt;}
.y80_c00287{bottom:265.432309pt;}
.y7f_c00287{bottom:266.361333pt;}
.y7e_c00287{bottom:286.209171pt;}
.y7d_c00287{bottom:288.870877pt;}
.y7c_c00287{bottom:289.126648pt;}
.y7b_c00287{bottom:289.638293pt;}
.y7a_c00287{bottom:289.940864pt;}
.y79_c00287{bottom:290.967656pt;}
.y78_c00287{bottom:291.460495pt;}
.y77_c00287{bottom:291.841516pt;}
.y76_c00287{bottom:305.852101pt;}
.y75_c00287{bottom:306.494405pt;}
.y74_c00287{bottom:306.974400pt;}
.y73_c00287{bottom:307.129620pt;}
.y72_c00287{bottom:308.876352pt;}
.y71_c00287{bottom:309.422664pt;}
.y70_c00287{bottom:309.924204pt;}
.y6f_c00287{bottom:310.539607pt;}
.y6e_c00287{bottom:311.765333pt;}
.y6d_c00287{bottom:333.892000pt;}
.y6c_c00287{bottom:360.647477pt;}
.y6b_c00287{bottom:376.065749pt;}
.y6a_c00287{bottom:376.462213pt;}
.y69_c00287{bottom:376.600853pt;}
.y68_c00287{bottom:376.788677pt;}
.y67_c00287{bottom:377.275637pt;}
.y66_c00287{bottom:378.491253pt;}
.y65_c00287{bottom:378.657861pt;}
.y64_c00287{bottom:379.070117pt;}
.y63_c00287{bottom:379.291445pt;}
.y62_c00287{bottom:379.861717pt;}
.y61_c00287{bottom:380.310549pt;}
.y60_c00287{bottom:380.566821pt;}
.y5f_c00287{bottom:380.881333pt;}
.y5e_c00287{bottom:402.685180pt;}
.y5d_c00287{bottom:403.013097pt;}
.y5c_c00287{bottom:403.287525pt;}
.y5b_c00287{bottom:403.452936pt;}
.y5a_c00287{bottom:403.984295pt;}
.y59_c00287{bottom:404.849907pt;}
.y58_c00287{bottom:405.176225pt;}
.y57_c00287{bottom:405.361333pt;}
.y56_c00287{bottom:430.795760pt;}
.y55_c00287{bottom:446.495067pt;}
.y54_c00287{bottom:447.482080pt;}
.y53_c00287{bottom:447.728907pt;}
.y52_c00287{bottom:447.900587pt;}
.y51_c00287{bottom:448.160080pt;}
.y50_c00287{bottom:448.666400pt;}
.y4f_c00287{bottom:448.994320pt;}
.y4e_c00287{bottom:449.842600pt;}
.y4d_c00287{bottom:450.414040pt;}
.y4c_c00287{bottom:450.666960pt;}
.y4b_c00287{bottom:450.995813pt;}
.y4a_c00287{bottom:451.678547pt;}
.y49_c00287{bottom:467.150693pt;}
.y48_c00287{bottom:467.517600pt;}
.y47_c00287{bottom:467.707693pt;}
.y46_c00287{bottom:467.867693pt;}
.y45_c00287{bottom:468.378533pt;}
.y44_c00287{bottom:468.552893pt;}
.y43_c00287{bottom:469.166160pt;}
.y42_c00287{bottom:469.574627pt;}
.y41_c00287{bottom:470.172613pt;}
.y40_c00287{bottom:470.633680pt;}
.y3f_c00287{bottom:471.016267pt;}
.y3e_c00287{bottom:471.414480pt;}
.y3d_c00287{bottom:471.600307pt;}
.y3c_c00287{bottom:487.104907pt;}
.y3b_c00287{bottom:487.381227pt;}
.y3a_c00287{bottom:487.931667pt;}
.y39_c00287{bottom:488.171627pt;}
.y38_c00287{bottom:488.813400pt;}
.y37_c00287{bottom:489.203187pt;}
.y36_c00287{bottom:489.536800pt;}
.y35_c00287{bottom:490.237493pt;}
.y34_c00287{bottom:490.561507pt;}
.y33_c00287{bottom:490.801333pt;}
.y32_c00287{bottom:512.457979pt;}
.y31_c00287{bottom:513.880213pt;}
.y30_c00287{bottom:514.151515pt;}
.y2f_c00287{bottom:515.016985pt;}
.y2e_c00287{bottom:515.521333pt;}
.y2d_c00287{bottom:539.978145pt;}
.y2c_c00287{bottom:539.978187pt;}
.y2b_c00287{bottom:556.816181pt;}
.y2a_c00287{bottom:557.014877pt;}
.y29_c00287{bottom:557.162021pt;}
.y28_c00287{bottom:558.017189pt;}
.y27_c00287{bottom:558.226997pt;}
.y26_c00287{bottom:558.648221pt;}
.y25_c00287{bottom:558.985133pt;}
.y24_c00287{bottom:559.661321pt;}
.y23_c00287{bottom:559.836233pt;}
.y22_c00287{bottom:560.112377pt;}
.y21_c00287{bottom:560.399957pt;}
.y20_c00287{bottom:576.984133pt;}
.y1f_c00287{bottom:577.444873pt;}
.y1e_c00287{bottom:577.924357pt;}
.y1d_c00287{bottom:578.146285pt;}
.y1c_c00287{bottom:578.500585pt;}
.y1b_c00287{bottom:578.863681pt;}
.y1a_c00287{bottom:579.070801pt;}
.y19_c00287{bottom:579.598345pt;}
.y18_c00287{bottom:579.781525pt;}
.y17_c00287{bottom:580.082293pt;}
.y16_c00287{bottom:580.561333pt;}
.y15_c00287{bottom:603.562667pt;}
.y14_c00287{bottom:628.872000pt;}
.y13_c00287{bottom:646.988000pt;}
.y12_c00287{bottom:647.144000pt;}
.y11_c00287{bottom:647.284000pt;}
.y10_c00287{bottom:647.706667pt;}
.yf_c00287{bottom:647.886667pt;}
.ye_c00287{bottom:648.085333pt;}
.yd_c00287{bottom:648.224000pt;}
.yc_c00287{bottom:648.733333pt;}
.yb_c00287{bottom:648.890667pt;}
.ya_c00287{bottom:649.060000pt;}
.y9_c00287{bottom:649.558667pt;}
.y8_c00287{bottom:649.721333pt;}
.y7_c00287{bottom:649.974667pt;}
.y6_c00287{bottom:650.161333pt;}
.y5_c00287{bottom:673.322667pt;}
.y4_c00287{bottom:698.380000pt;}
.y3_c00287{bottom:718.504000pt;}
.y2_c00287{bottom:743.024000pt;}
.y1_c00287{bottom:783.404000pt;}
.h19_c00287{height:56.000000pt;}
.h5_c00287{height:57.866667pt;}
.h1a_c00287{height:58.800000pt;}
.h9_c00287{height:59.735752pt;}
.hb_c00287{height:60.669124pt;}
.h14_c00287{height:60.671793pt;}
.h12_c00287{height:61.604435pt;}
.h1b_c00287{height:61.608901pt;}
.h18_c00287{height:61.611118pt;}
.h4_c00287{height:62.533333pt;}
.hf_c00287{height:62.536460pt;}
.h10_c00287{height:62.537116pt;}
.h3_c00287{height:63.466667pt;}
.ha_c00287{height:63.469237pt;}
.he_c00287{height:63.469840pt;}
.h17_c00287{height:63.471236pt;}
.h15_c00287{height:63.472029pt;}
.h6_c00287{height:64.400000pt;}
.hd_c00287{height:64.403220pt;}
.h16_c00287{height:64.404637pt;}
.h13_c00287{height:65.333333pt;}
.hc_c00287{height:65.338854pt;}
.h8_c00287{height:66.266667pt;}
.h11_c00287{height:66.271438pt;}
.h7_c00287{height:70.000000pt;}
.h2_c00287{height:112.000000pt;}
.h0_c00287{height:896.400000pt;}
.h1_c00287{height:896.666667pt;}
.w0_c00287{width:618.666667pt;}
.x0_c00287{left:0.000000pt;}
.x72_c00287{left:118.394667pt;}
.x64_c00287{left:129.384693pt;}
.x49_c00287{left:132.481352pt;}
.x1_c00287{left:135.120000pt;}
.x19_c00287{left:136.320000pt;}
.x8b_c00287{left:147.930667pt;}
.x4d_c00287{left:149.162667pt;}
.x37_c00287{left:150.128000pt;}
.xc_c00287{left:151.440000pt;}
.x77_c00287{left:161.382012pt;}
.x85_c00287{left:163.504000pt;}
.x65_c00287{left:165.009333pt;}
.x3_c00287{left:166.560000pt;}
.x80_c00287{left:170.797333pt;}
.x4e_c00287{left:173.145333pt;}
.x25_c00287{left:175.129333pt;}
.x84_c00287{left:176.880000pt;}
.x30_c00287{left:182.401333pt;}
.x54_c00287{left:185.875173pt;}
.xd_c00287{left:189.360000pt;}
.x1a_c00287{left:191.280000pt;}
.x81_c00287{left:192.270667pt;}
.x4_c00287{left:196.080000pt;}
.x41_c00287{left:197.178633pt;}
.x78_c00287{left:199.292679pt;}
.x38_c00287{left:203.354667pt;}
.x4f_c00287{left:205.546667pt;}
.x26_c00287{left:206.786667pt;}
.x5e_c00287{left:210.871533pt;}
.x1b_c00287{left:213.360000pt;}
.x42_c00287{left:216.613300pt;}
.x6e_c00287{left:218.160000pt;}
.x55_c00287{left:220.666827pt;}
.x31_c00287{left:223.201333pt;}
.x2_c00287{left:226.800000pt;}
.xe_c00287{left:229.920000pt;}
.x5_c00287{left:234.960000pt;}
.x39_c00287{left:236.773333pt;}
.x1c_c00287{left:238.560000pt;}
.x32_c00287{left:246.961333pt;}
.xf_c00287{left:249.600000pt;}
.x1d_c00287{left:251.280000pt;}
.x82_c00287{left:252.932000pt;}
.x3a_c00287{left:257.126667pt;}
.x7e_c00287{left:259.929963pt;}
.x6_c00287{left:260.880000pt;}
.x56_c00287{left:262.639747pt;}
.x86_c00287{left:266.650667pt;}
.x5f_c00287{left:274.238960pt;}
.x50_c00287{left:275.616000pt;}
.x33_c00287{left:277.201333pt;}
.x10_c00287{left:278.160000pt;}
.x1e_c00287{left:279.840000pt;}
.x68_c00287{left:282.112000pt;}
.x8c_c00287{left:286.841333pt;}
.x22_c00287{left:288.240000pt;}
.x7_c00287{left:289.440000pt;}
.x43_c00287{left:291.745300pt;}
.x11_c00287{left:293.520000pt;}
.x73_c00287{left:298.600000pt;}
.x4a_c00287{left:301.064000pt;}
.x87_c00287{left:302.048000pt;}
.x7b_c00287{left:304.162667pt;}
.x23_c00287{left:309.600000pt;}
.x1f_c00287{left:310.800000pt;}
.x7f_c00287{left:312.013467pt;}
.x3b_c00287{left:315.742667pt;}
.x57_c00287{left:316.971200pt;}
.x4b_c00287{left:321.933333pt;}
.x12_c00287{left:323.280000pt;}
.x8_c00287{left:325.680000pt;}
.x44_c00287{left:329.179967pt;}
.x27_c00287{left:330.385333pt;}
.x88_c00287{left:333.077333pt;}
.x69_c00287{left:334.910667pt;}
.x2f_c00287{left:337.441333pt;}
.x3c_c00287{left:338.756000pt;}
.x20_c00287{left:341.040000pt;}
.x51_c00287{left:347.956000pt;}
.x6f_c00287{left:351.840000pt;}
.x66_c00287{left:353.537333pt;}
.x21_c00287{left:354.480000pt;}
.x34_c00287{left:356.641333pt;}
.x13_c00287{left:358.320000pt;}
.x79_c00287{left:360.583345pt;}
.x24_c00287{left:363.360000pt;}
.x60_c00287{left:364.656240pt;}
.x7c_c00287{left:370.386667pt;}
.x9_c00287{left:375.600000pt;}
.x83_c00287{left:377.244000pt;}
.x3d_c00287{left:379.100000pt;}
.x89_c00287{left:383.893333pt;}
.x35_c00287{left:388.561333pt;}
.x7d_c00287{left:392.030667pt;}
.x28_c00287{left:393.989333pt;}
.x70_c00287{left:396.960000pt;}
.x45_c00287{left:399.294633pt;}
.xa_c00287{left:402.960000pt;}
.x67_c00287{left:408.296000pt;}
.x58_c00287{left:409.810267pt;}
.x29_c00287{left:411.298667pt;}
.x14_c00287{left:414.720000pt;}
.x3e_c00287{left:418.466667pt;}
.x8a_c00287{left:420.474667pt;}
.x8d_c00287{left:421.846667pt;}
.x61_c00287{left:423.502467pt;}
.x59_c00287{left:425.646107pt;}
.x4c_c00287{left:431.336000pt;}
.xb_c00287{left:434.880000pt;}
.x2a_c00287{left:436.210667pt;}
.x15_c00287{left:440.400000pt;}
.x3f_c00287{left:443.125333pt;}
.x8e_c00287{left:444.121333pt;}
.x71_c00287{left:448.560000pt;}
.x6a_c00287{left:450.096000pt;}
.x62_c00287{left:455.618827pt;}
.x2b_c00287{left:458.773333pt;}
.x36_c00287{left:465.361333pt;}
.x5a_c00287{left:472.062973pt;}
.x74_c00287{left:474.988000pt;}
.x16_c00287{left:478.800000pt;}
.x5b_c00287{left:486.596160pt;}
.x52_c00287{left:491.173333pt;}
.x46_c00287{left:494.313300pt;}
.x40_c00287{left:496.401333pt;}
.x17_c00287{left:498.000000pt;}
.x5c_c00287{left:503.871987pt;}
.x6b_c00287{left:506.328000pt;}
.x8f_c00287{left:508.657333pt;}
.x47_c00287{left:510.662633pt;}
.x2c_c00287{left:511.586667pt;}
.x6c_c00287{left:517.881333pt;}
.x53_c00287{left:518.805333pt;}
.x75_c00287{left:523.850667pt;}
.x2d_c00287{left:529.104000pt;}
.x63_c00287{left:531.517880pt;}
.x48_c00287{left:532.739967pt;}
.x5d_c00287{left:537.228987pt;}
.x18_c00287{left:546.960000pt;}
.x2e_c00287{left:548.546667pt;}
.x6d_c00287{left:550.920000pt;}
.x7a_c00287{left:565.330012pt;}
.x90_c00287{left:568.169333pt;}
.x76_c00287{left:573.258667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mc3_c00288{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);}
.m9b_c00288{transform:matrix(0.008845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008845,0.000000,0.000000,0.250000,0,0);}
.mf5_c00288{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.mf6_c00288{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-ms-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);}
.m44_c00288{transform:matrix(0.016044,-0.000144,0.002250,0.249990,0,0);-ms-transform:matrix(0.016044,-0.000144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.016044,-0.000144,0.002250,0.249990,0,0);}
.m36_c00288{transform:matrix(0.018464,-0.000166,0.002250,0.249990,0,0);-ms-transform:matrix(0.018464,-0.000166,0.002250,0.249990,0,0);-webkit-transform:matrix(0.018464,-0.000166,0.002250,0.249990,0,0);}
.m4d_c00288{transform:matrix(0.022049,-0.000198,0.002250,0.249990,0,0);-ms-transform:matrix(0.022049,-0.000198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.022049,-0.000198,0.002250,0.249990,0,0);}
.m45_c00288{transform:matrix(0.048948,-0.000441,0.002250,0.249990,0,0);-ms-transform:matrix(0.048948,-0.000441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.048948,-0.000441,0.002250,0.249990,0,0);}
.me0_c00288{transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);-ms-transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);}
.mf4_c00288{transform:matrix(0.088315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088315,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.093392,-0.000747,0.002000,0.249992,0,0);-ms-transform:matrix(0.093392,-0.000747,0.002000,0.249992,0,0);-webkit-transform:matrix(0.093392,-0.000747,0.002000,0.249992,0,0);}
.m3b_c00288{transform:matrix(0.094441,-0.000850,0.002250,0.249990,0,0);-ms-transform:matrix(0.094441,-0.000850,0.002250,0.249990,0,0);-webkit-transform:matrix(0.094441,-0.000850,0.002250,0.249990,0,0);}
.m88_c00288{transform:matrix(0.100120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100120,0.000000,0.000000,0.250000,0,0);}
.m78_c00288{transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107720,0.000000,0.000000,0.250000,0,0);}
.md8_c00288{transform:matrix(0.109262,-0.000874,0.002000,0.249992,0,0);-ms-transform:matrix(0.109262,-0.000874,0.002000,0.249992,0,0);-webkit-transform:matrix(0.109262,-0.000874,0.002000,0.249992,0,0);}
.mdd_c00288{transform:matrix(0.132071,-0.001057,0.002000,0.249992,0,0);-ms-transform:matrix(0.132071,-0.001057,0.002000,0.249992,0,0);-webkit-transform:matrix(0.132071,-0.001057,0.002000,0.249992,0,0);}
.mdc_c00288{transform:matrix(0.136626,-0.001093,0.002000,0.249992,0,0);-ms-transform:matrix(0.136626,-0.001093,0.002000,0.249992,0,0);-webkit-transform:matrix(0.136626,-0.001093,0.002000,0.249992,0,0);}
.md_c00288{transform:matrix(0.139449,-0.001255,0.002250,0.249990,0,0);-ms-transform:matrix(0.139449,-0.001255,0.002250,0.249990,0,0);-webkit-transform:matrix(0.139449,-0.001255,0.002250,0.249990,0,0);}
.m46_c00288{transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);-ms-transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144484,-0.001300,0.002250,0.249990,0,0);}
.m81_c00288{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);}
.m101_c00288{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);}
.m1e_c00288{transform:matrix(0.152656,-0.001679,0.002750,0.249985,0,0);-ms-transform:matrix(0.152656,-0.001679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152656,-0.001679,0.002750,0.249985,0,0);}
.m69_c00288{transform:matrix(0.153620,-0.001229,0.002000,0.249992,0,0);-ms-transform:matrix(0.153620,-0.001229,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153620,-0.001229,0.002000,0.249992,0,0);}
.mdb_c00288{transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);-ms-transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154125,-0.001233,0.002000,0.249992,0,0);}
.m22_c00288{transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);-ms-transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);}
.m1a_c00288{transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);}
.me5_c00288{transform:matrix(0.158075,-0.001265,0.002000,0.249992,0,0);-ms-transform:matrix(0.158075,-0.001265,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158075,-0.001265,0.002000,0.249992,0,0);}
.m27_c00288{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.m73_c00288{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);}
.m2_c00288{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);}
.m5_c00288{transform:matrix(0.159779,-0.001438,0.002250,0.249990,0,0);-ms-transform:matrix(0.159779,-0.001438,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159779,-0.001438,0.002250,0.249990,0,0);}
.md7_c00288{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);}
.mda_c00288{transform:matrix(0.160200,-0.001282,0.002000,0.249992,0,0);-ms-transform:matrix(0.160200,-0.001282,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160200,-0.001282,0.002000,0.249992,0,0);}
.m42_c00288{transform:matrix(0.161273,-0.001451,0.002250,0.249990,0,0);-ms-transform:matrix(0.161273,-0.001451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161273,-0.001451,0.002250,0.249990,0,0);}
.m34_c00288{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);}
.m84_c00288{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);}
.mba_c00288{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);}
.m3_c00288{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);}
.m5c_c00288{transform:matrix(0.168325,-0.001347,0.002000,0.249992,0,0);-ms-transform:matrix(0.168325,-0.001347,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168325,-0.001347,0.002000,0.249992,0,0);}
.m6c_c00288{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);}
.me_c00288{transform:matrix(0.169418,-0.001525,0.002250,0.249990,0,0);-ms-transform:matrix(0.169418,-0.001525,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169418,-0.001525,0.002250,0.249990,0,0);}
.m41_c00288{transform:matrix(0.169438,-0.001525,0.002250,0.249990,0,0);-ms-transform:matrix(0.169438,-0.001525,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169438,-0.001525,0.002250,0.249990,0,0);}
.m5e_c00288{transform:matrix(0.170175,-0.001361,0.002000,0.249992,0,0);-ms-transform:matrix(0.170175,-0.001361,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170175,-0.001361,0.002000,0.249992,0,0);}
.mdf_c00288{transform:matrix(0.170365,-0.001363,0.002000,0.249992,0,0);-ms-transform:matrix(0.170365,-0.001363,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170365,-0.001363,0.002000,0.249992,0,0);}
.md6_c00288{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);}
.md4_c00288{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);}
.m3d_c00288{transform:matrix(0.171803,-0.001546,0.002250,0.249990,0,0);-ms-transform:matrix(0.171803,-0.001546,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171803,-0.001546,0.002250,0.249990,0,0);}
.mbb_c00288{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);}
.m30_c00288{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);}
.m5f_c00288{transform:matrix(0.172719,-0.001382,0.002000,0.249992,0,0);-ms-transform:matrix(0.172719,-0.001382,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172719,-0.001382,0.002000,0.249992,0,0);}
.m7d_c00288{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);}
.mef_c00288{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);}
.m1f_c00288{transform:matrix(0.173669,-0.001910,0.002750,0.249985,0,0);-ms-transform:matrix(0.173669,-0.001910,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173669,-0.001910,0.002750,0.249985,0,0);}
.m3c_c00288{transform:matrix(0.173788,-0.001564,0.002250,0.249990,0,0);-ms-transform:matrix(0.173788,-0.001564,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173788,-0.001564,0.002250,0.249990,0,0);}
.m7c_c00288{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);}
.m52_c00288{transform:matrix(0.174214,-0.001394,0.002000,0.249992,0,0);-ms-transform:matrix(0.174214,-0.001394,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174214,-0.001394,0.002000,0.249992,0,0);}
.m85_c00288{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);}
.m8_c00288{transform:matrix(0.174833,-0.001573,0.002250,0.249990,0,0);-ms-transform:matrix(0.174833,-0.001573,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174833,-0.001573,0.002250,0.249990,0,0);}
.m6f_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);}
.mf3_c00288{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_c00288{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);}
.ma8_c00288{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00288{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);}
.m6_c00288{transform:matrix(0.177248,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177248,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177248,-0.001595,0.002250,0.249990,0,0);}
.md3_c00288{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);}
.mde_c00288{transform:matrix(0.178029,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.178029,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178029,-0.001424,0.002000,0.249992,0,0);}
.m63_c00288{transform:matrix(0.178709,-0.001430,0.002000,0.249992,0,0);-ms-transform:matrix(0.178709,-0.001430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178709,-0.001430,0.002000,0.249992,0,0);}
.mc1_c00288{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);}
.m38_c00288{transform:matrix(0.179253,-0.001613,0.002250,0.249990,0,0);-ms-transform:matrix(0.179253,-0.001613,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179253,-0.001613,0.002250,0.249990,0,0);}
.m32_c00288{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);}
.m67_c00288{transform:matrix(0.182234,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182234,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182234,-0.001458,0.002000,0.249992,0,0);}
.m6a_c00288{transform:matrix(0.182684,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182684,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182684,-0.001461,0.002000,0.249992,0,0);}
.m3e_c00288{transform:matrix(0.182703,-0.001644,0.002250,0.249990,0,0);-ms-transform:matrix(0.182703,-0.001644,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182703,-0.001644,0.002250,0.249990,0,0);}
.m77_c00288{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);}
.m87_c00288{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);}
.m24_c00288{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);}
.m28_c00288{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);}
.m6d_c00288{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);}
.m31_c00288{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);}
.md0_c00288{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);}
.m26_c00288{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);}
.m65_c00288{transform:matrix(0.185684,-0.001485,0.002000,0.249992,0,0);-ms-transform:matrix(0.185684,-0.001485,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185684,-0.001485,0.002000,0.249992,0,0);}
.m20_c00288{transform:matrix(0.186079,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186079,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186079,-0.002047,0.002750,0.249985,0,0);}
.mee_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);}
.m35_c00288{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);}
.m80_c00288{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);}
.mf1_c00288{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);}
.m3a_c00288{transform:matrix(0.188512,-0.001697,0.002250,0.249990,0,0);-ms-transform:matrix(0.188512,-0.001697,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188512,-0.001697,0.002250,0.249990,0,0);}
.m19_c00288{transform:matrix(0.188969,-0.002079,0.002750,0.249985,0,0);-ms-transform:matrix(0.188969,-0.002079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188969,-0.002079,0.002750,0.249985,0,0);}
.m9f_c00288{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_c00288{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);}
.mad_c00288{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);}
.mc7_c00288{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);}
.m93_c00288{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);}
.m3f_c00288{transform:matrix(0.191037,-0.001719,0.002250,0.249990,0,0);-ms-transform:matrix(0.191037,-0.001719,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191037,-0.001719,0.002250,0.249990,0,0);}
.m8b_c00288{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);}
.m89_c00288{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);}
.m7_c00288{transform:matrix(0.191657,-0.001725,0.002250,0.249990,0,0);-ms-transform:matrix(0.191657,-0.001725,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191657,-0.001725,0.002250,0.249990,0,0);}
.m76_c00288{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);}
.mfe_c00288{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);}
.m39_c00288{transform:matrix(0.192927,-0.001736,0.002250,0.249990,0,0);-ms-transform:matrix(0.192927,-0.001736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192927,-0.001736,0.002250,0.249990,0,0);}
.md2_c00288{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{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);}
.m92_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);}
.m2c_c00288{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);}
.m13_c00288{transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194363,-0.002138,0.002750,0.249985,0,0);}
.m58_c00288{transform:matrix(0.194369,-0.001555,0.002000,0.249992,0,0);-ms-transform:matrix(0.194369,-0.001555,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194369,-0.001555,0.002000,0.249992,0,0);}
.mc_c00288{transform:matrix(0.194377,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194377,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194377,-0.001749,0.002250,0.249990,0,0);}
.md5_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);}
.m96_c00288{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);}
.mc5_c00288{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);}
.mae_c00288{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);}
.mab_c00288{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);}
.mce_c00288{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);}
.m23_c00288{transform:matrix(0.196703,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196703,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196703,-0.002164,0.002750,0.249985,0,0);}
.m15_c00288{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);}
.m64_c00288{transform:matrix(0.198684,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198684,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198684,-0.001589,0.002000,0.249992,0,0);}
.me4_c00288{transform:matrix(0.199274,-0.001594,0.002000,0.249992,0,0);-ms-transform:matrix(0.199274,-0.001594,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199274,-0.001594,0.002000,0.249992,0,0);}
.m51_c00288{transform:matrix(0.200314,-0.001603,0.002000,0.249992,0,0);-ms-transform:matrix(0.200314,-0.001603,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200314,-0.001603,0.002000,0.249992,0,0);}
.m18_c00288{transform:matrix(0.200433,-0.002205,0.002750,0.249985,0,0);-ms-transform:matrix(0.200433,-0.002205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200433,-0.002205,0.002750,0.249985,0,0);}
.m71_c00288{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);}
.ma1_c00288{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);}
.mb7_c00288{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);}
.m75_c00288{transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);}
.ma0_c00288{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);}
.m2b_c00288{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);}
.md1_c00288{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);}
.mb_c00288{transform:matrix(0.204682,-0.001842,0.002250,0.249990,0,0);-ms-transform:matrix(0.204682,-0.001842,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204682,-0.001842,0.002250,0.249990,0,0);}
.m50_c00288{transform:matrix(0.204753,-0.001638,0.002000,0.249992,0,0);-ms-transform:matrix(0.204753,-0.001638,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204753,-0.001638,0.002000,0.249992,0,0);}
.m33_c00288{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);}
.m2a_c00288{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);}
.m7b_c00288{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);}
.m66_c00288{transform:matrix(0.206683,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206683,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206683,-0.001653,0.002000,0.249992,0,0);}
.m8c_c00288{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);}
.m7a_c00288{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);}
.mc6_c00288{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);}
.maf_c00288{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);}
.m62_c00288{transform:matrix(0.209883,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209883,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209883,-0.001679,0.002000,0.249992,0,0);}
.md9_c00288{transform:matrix(0.210193,-0.001682,0.002000,0.249992,0,0);-ms-transform:matrix(0.210193,-0.001682,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210193,-0.001682,0.002000,0.249992,0,0);}
.m57_c00288{transform:matrix(0.210463,-0.001684,0.002000,0.249992,0,0);-ms-transform:matrix(0.210463,-0.001684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210463,-0.001684,0.002000,0.249992,0,0);}
.m9_c00288{transform:matrix(0.210651,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210651,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210651,-0.001896,0.002250,0.249990,0,0);}
.m9c_c00288{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);}
.me6_c00288{transform:matrix(0.211298,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211298,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211298,-0.001690,0.002000,0.249992,0,0);}
.m2f_c00288{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);}
.m7e_c00288{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);}
.m1c_c00288{transform:matrix(0.212207,-0.002334,0.002750,0.249985,0,0);-ms-transform:matrix(0.212207,-0.002334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212207,-0.002334,0.002750,0.249985,0,0);}
.ma_c00288{transform:matrix(0.212571,-0.001913,0.002250,0.249990,0,0);-ms-transform:matrix(0.212571,-0.001913,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212571,-0.001913,0.002250,0.249990,0,0);}
.m60_c00288{transform:matrix(0.213578,-0.001709,0.002000,0.249992,0,0);-ms-transform:matrix(0.213578,-0.001709,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213578,-0.001709,0.002000,0.249992,0,0);}
.m70_c00288{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);}
.m11_c00288{transform:matrix(0.213912,-0.002353,0.002750,0.249985,0,0);-ms-transform:matrix(0.213912,-0.002353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213912,-0.002353,0.002750,0.249985,0,0);}
.m37_c00288{transform:matrix(0.214211,-0.001928,0.002250,0.249990,0,0);-ms-transform:matrix(0.214211,-0.001928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214211,-0.001928,0.002250,0.249990,0,0);}
.m79_c00288{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);}
.m83_c00288{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);}
.m55_c00288{transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);}
.m5d_c00288{transform:matrix(0.215678,-0.001725,0.002000,0.249992,0,0);-ms-transform:matrix(0.215678,-0.001725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215678,-0.001725,0.002000,0.249992,0,0);}
.m98_c00288{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);}
.m25_c00288{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);}
.m12_c00288{transform:matrix(0.218587,-0.002404,0.002750,0.249985,0,0);-ms-transform:matrix(0.218587,-0.002404,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218587,-0.002404,0.002750,0.249985,0,0);}
.me7_c00288{transform:matrix(0.219163,-0.001753,0.002000,0.249992,0,0);-ms-transform:matrix(0.219163,-0.001753,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219163,-0.001753,0.002000,0.249992,0,0);}
.me2_c00288{transform:matrix(0.219818,-0.001759,0.002000,0.249992,0,0);-ms-transform:matrix(0.219818,-0.001759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219818,-0.001759,0.002000,0.249992,0,0);}
.mb6_c00288{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);}
.mbc_c00288{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);}
.mb2_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);}
.m40_c00288{transform:matrix(0.221696,-0.001995,0.002250,0.249990,0,0);-ms-transform:matrix(0.221696,-0.001995,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221696,-0.001995,0.002250,0.249990,0,0);}
.m68_c00288{transform:matrix(0.221848,-0.001775,0.002000,0.249992,0,0);-ms-transform:matrix(0.221848,-0.001775,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221848,-0.001775,0.002000,0.249992,0,0);}
.mf2_c00288{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);}
.mf9_c00288{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);}
.m14_c00288{transform:matrix(0.222527,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222527,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222527,-0.002448,0.002750,0.249985,0,0);}
.m8f_c00288{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);}
.m29_c00288{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);}
.mcb_c00288{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);}
.m72_c00288{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);}
.m9e_c00288{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);}
.m4c_c00288{transform:matrix(0.227276,-0.002045,0.002250,0.249990,0,0);-ms-transform:matrix(0.227276,-0.002045,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227276,-0.002045,0.002250,0.249990,0,0);}
.mac_c00288{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);}
.m4f_c00288{transform:matrix(0.229138,-0.001833,0.002000,0.249992,0,0);-ms-transform:matrix(0.229138,-0.001833,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229138,-0.001833,0.002000,0.249992,0,0);}
.mb0_c00288{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);}
.mb8_c00288{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);}
.m86_c00288{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);}
.m97_c00288{transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{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);}
.m48_c00288{transform:matrix(0.234351,-0.002109,0.002250,0.249990,0,0);-ms-transform:matrix(0.234351,-0.002109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234351,-0.002109,0.002250,0.249990,0,0);}
.m10_c00288{transform:matrix(0.234366,-0.002578,0.002750,0.249985,0,0);-ms-transform:matrix(0.234366,-0.002578,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234366,-0.002578,0.002750,0.249985,0,0);}
.mb5_c00288{transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.236497,-0.001892,0.002000,0.249992,0,0);-ms-transform:matrix(0.236497,-0.001892,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236497,-0.001892,0.002000,0.249992,0,0);}
.ma7_c00288{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);}
.m2d_c00288{transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);}
.ma3_c00288{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);}
.m100_c00288{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);}
.mbd_c00288{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);}
.m47_c00288{transform:matrix(0.242920,-0.002186,0.002250,0.249990,0,0);-ms-transform:matrix(0.242920,-0.002186,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242920,-0.002186,0.002250,0.249990,0,0);}
.mb1_c00288{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.mf0_c00288{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.mfd_c00288{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);}
.mea_c00288{transform:matrix(0.251222,-0.002010,0.002000,0.249992,0,0);-ms-transform:matrix(0.251222,-0.002010,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251222,-0.002010,0.002000,0.249992,0,0);}
.mb3_c00288{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.meb_c00288{transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);}
.m74_c00288{transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);}
.me3_c00288{transform:matrix(0.254752,-0.002038,0.002000,0.249992,0,0);-ms-transform:matrix(0.254752,-0.002038,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254752,-0.002038,0.002000,0.249992,0,0);}
.ma9_c00288{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.m90_c00288{transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);}
.m99_c00288{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);}
.ma2_c00288{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.mec_c00288{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.m8e_c00288{transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);-ms-transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269249,-0.002962,0.002750,0.249985,0,0);}
.m6e_c00288{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);}
.mc2_c00288{transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270835,0.000000,0.000000,0.250000,0,0);}
.ma4_c00288{transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);}
.mfc_c00288{transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);}
.m8a_c00288{transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);}
.ma6_c00288{transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284330,0.000000,0.000000,0.250000,0,0);}
.me9_c00288{transform:matrix(0.285551,-0.002284,0.002000,0.249992,0,0);-ms-transform:matrix(0.285551,-0.002284,0.002000,0.249992,0,0);-webkit-transform:matrix(0.285551,-0.002284,0.002000,0.249992,0,0);}
.mff_c00288{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{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);}
.mb4_c00288{transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289285,0.000000,0.000000,0.250000,0,0);}
.mbf_c00288{transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292050,0.000000,0.000000,0.250000,0,0);}
.med_c00288{transform:matrix(0.299705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299705,0.000000,0.000000,0.250000,0,0);}
.mf8_c00288{transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300890,0.000000,0.000000,0.250000,0,0);}
.m82_c00288{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.m9d_c00288{transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314225,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.314931,-0.003464,0.002750,0.249985,0,0);-ms-transform:matrix(0.314931,-0.003464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.314931,-0.003464,0.002750,0.249985,0,0);}
.m4_c00288{transform:matrix(0.320957,-0.002889,0.002250,0.249990,0,0);-ms-transform:matrix(0.320957,-0.002889,0.002250,0.249990,0,0);-webkit-transform:matrix(0.320957,-0.002889,0.002250,0.249990,0,0);}
.mcd_c00288{transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323730,0.000000,0.000000,0.250000,0,0);}
.m94_c00288{transform:matrix(0.325140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325140,0.000000,0.000000,0.250000,0,0);}
.m59_c00288{transform:matrix(0.327925,-0.002623,0.002000,0.249992,0,0);-ms-transform:matrix(0.327925,-0.002623,0.002000,0.249992,0,0);-webkit-transform:matrix(0.327925,-0.002623,0.002000,0.249992,0,0);}
.maa_c00288{transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335805,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.338780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338780,0.000000,0.000000,0.250000,0,0);}
.m9a_c00288{transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);}
.m61_c00288{transform:matrix(0.350714,-0.002806,0.002000,0.249992,0,0);-ms-transform:matrix(0.350714,-0.002806,0.002000,0.249992,0,0);-webkit-transform:matrix(0.350714,-0.002806,0.002000,0.249992,0,0);}
.mcc_c00288{transform:matrix(0.357675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357675,0.000000,0.000000,0.250000,0,0);}
.m102_c00288{transform:matrix(0.365920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365920,0.000000,0.000000,0.250000,0,0);}
.mca_c00288{transform:matrix(0.367525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367525,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.382555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382555,0.000000,0.000000,0.250000,0,0);}
.mb9_c00288{transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);}
.m103_c00288{transform:matrix(0.384915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384915,0.000000,0.000000,0.250000,0,0);}
.m104_c00288{transform:matrix(0.385310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385310,0.000000,0.000000,0.250000,0,0);}
.mfb_c00288{transform:matrix(0.395415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.400781,-0.004409,0.002750,0.249985,0,0);-ms-transform:matrix(0.400781,-0.004409,0.002750,0.249985,0,0);-webkit-transform:matrix(0.400781,-0.004409,0.002750,0.249985,0,0);}
.m5a_c00288{transform:matrix(0.402907,-0.003223,0.002000,0.249992,0,0);-ms-transform:matrix(0.402907,-0.003223,0.002000,0.249992,0,0);-webkit-transform:matrix(0.402907,-0.003223,0.002000,0.249992,0,0);}
.mc4_c00288{transform:matrix(0.423405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423405,0.000000,0.000000,0.250000,0,0);}
.mc0_c00288{transform:matrix(0.426640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426640,0.000000,0.000000,0.250000,0,0);}
.m6b_c00288{transform:matrix(0.428426,-0.003427,0.002000,0.249992,0,0);-ms-transform:matrix(0.428426,-0.003427,0.002000,0.249992,0,0);-webkit-transform:matrix(0.428426,-0.003427,0.002000,0.249992,0,0);}
.m95_c00288{transform:matrix(0.430980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430980,0.000000,0.000000,0.250000,0,0);}
.ma5_c00288{transform:matrix(0.434755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434755,0.000000,0.000000,0.250000,0,0);}
.mc8_c00288{transform:matrix(0.453045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453045,0.000000,0.000000,0.250000,0,0);}
.me1_c00288{transform:matrix(0.453195,-0.003626,0.002000,0.249992,0,0);-ms-transform:matrix(0.453195,-0.003626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.453195,-0.003626,0.002000,0.249992,0,0);}
.m43_c00288{transform:matrix(0.467151,-0.004204,0.002250,0.249990,0,0);-ms-transform:matrix(0.467151,-0.004204,0.002250,0.249990,0,0);-webkit-transform:matrix(0.467151,-0.004204,0.002250,0.249990,0,0);}
.mbe_c00288{transform:matrix(0.473420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473420,0.000000,0.000000,0.250000,0,0);}
.me8_c00288{transform:matrix(0.525298,-0.004202,0.002000,0.249992,0,0);-ms-transform:matrix(0.525298,-0.004202,0.002000,0.249992,0,0);-webkit-transform:matrix(0.525298,-0.004202,0.002000,0.249992,0,0);}
.m4b_c00288{transform:matrix(0.527564,-0.004748,0.002250,0.249990,0,0);-ms-transform:matrix(0.527564,-0.004748,0.002250,0.249990,0,0);-webkit-transform:matrix(0.527564,-0.004748,0.002250,0.249990,0,0);}
.m56_c00288{transform:matrix(0.570887,-0.004567,0.002000,0.249992,0,0);-ms-transform:matrix(0.570887,-0.004567,0.002000,0.249992,0,0);-webkit-transform:matrix(0.570887,-0.004567,0.002000,0.249992,0,0);}
.mfa_c00288{transform:matrix(0.598620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598620,0.000000,0.000000,0.250000,0,0);}
.m5b_c00288{transform:matrix(0.676528,-0.005412,0.002000,0.249992,0,0);-ms-transform:matrix(0.676528,-0.005412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.676528,-0.005412,0.002000,0.249992,0,0);}
.mf7_c00288{transform:matrix(0.679250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00288{transform:matrix(0.693545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.778383,-0.007005,0.002250,0.249990,0,0);-ms-transform:matrix(0.778383,-0.007005,0.002250,0.249990,0,0);-webkit-transform:matrix(0.778383,-0.007005,0.002250,0.249990,0,0);}
.mf_c00288{transform:matrix(0.883777,-0.009722,0.002750,0.249985,0,0);-ms-transform:matrix(0.883777,-0.009722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.883777,-0.009722,0.002750,0.249985,0,0);}
.m91_c00288{transform:matrix(1.109475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.109475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.109475,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;}
.fsc_c00288{font-size:64.050000px;}
.fs2_c00288{font-size:66.154002px;}
.fsd_c00288{font-size:68.250000px;}
.fsa_c00288{font-size:68.252184px;}
.fs5_c00288{font-size:69.300000px;}
.fs4_c00288{font-size:70.350000px;}
.fs10_c00288{font-size:70.352251px;}
.fsb_c00288{font-size:71.400000px;}
.fs8_c00288{font-size:71.402285px;}
.fs1_c00288{font-size:71.402892px;}
.fs3_c00288{font-size:71.404320px;}
.fs6_c00288{font-size:72.450000px;}
.fs9_c00288{font-size:72.452318px;}
.fse_c00288{font-size:73.500000px;}
.fs7_c00288{font-size:74.553019px;}
.fsf_c00288{font-size:75.602419px;}
.fs0_c00288{font-size:116.550000px;}
.y0_c00288{bottom:0.000000px;}
.y87_c00288{bottom:164.752500px;}
.y86_c00288{bottom:191.962500px;}
.y7c_c00288{bottom:218.965776px;}
.y83_c00288{bottom:218.966340px;}
.y7d_c00288{bottom:218.966364px;}
.y7e_c00288{bottom:218.966412px;}
.y7f_c00288{bottom:218.966760px;}
.y82_c00288{bottom:218.966784px;}
.y80_c00288{bottom:218.966868px;}
.y85_c00288{bottom:218.966916px;}
.y84_c00288{bottom:218.966928px;}
.y81_c00288{bottom:218.967216px;}
.y73_c00288{bottom:244.255500px;}
.y74_c00288{bottom:244.305300px;}
.y75_c00288{bottom:244.629432px;}
.y76_c00288{bottom:245.009580px;}
.y77_c00288{bottom:245.322636px;}
.y78_c00288{bottom:245.607552px;}
.y79_c00288{bottom:245.754756px;}
.y7a_c00288{bottom:246.288036px;}
.y7b_c00288{bottom:247.505544px;}
.y72_c00288{bottom:273.717000px;}
.y71_c00288{bottom:301.209000px;}
.y6c_c00288{bottom:327.675000px;}
.y6d_c00288{bottom:328.120500px;}
.y6e_c00288{bottom:328.356000px;}
.y6f_c00288{bottom:331.228500px;}
.y70_c00288{bottom:331.795500px;}
.y6b_c00288{bottom:351.174000px;}
.y6a_c00288{bottom:378.610500px;}
.y69_c00288{bottom:406.405500px;}
.y60_c00288{bottom:427.141500px;}
.y61_c00288{bottom:427.470000px;}
.y62_c00288{bottom:427.780500px;}
.y63_c00288{bottom:428.052000px;}
.y64_c00288{bottom:428.391000px;}
.y65_c00288{bottom:428.551500px;}
.y66_c00288{bottom:429.177000px;}
.y67_c00288{bottom:429.538500px;}
.y68_c00288{bottom:430.098000px;}
.y5f_c00288{bottom:452.367000px;}
.y5e_c00288{bottom:474.774000px;}
.y5d_c00288{bottom:497.413500px;}
.y5c_c00288{bottom:524.227500px;}
.y59_c00288{bottom:542.920908px;}
.y58_c00288{bottom:542.920980px;}
.y5b_c00288{bottom:542.921280px;}
.y5a_c00288{bottom:542.921508px;}
.y4c_c00288{bottom:564.298800px;}
.y4d_c00288{bottom:564.494364px;}
.y4e_c00288{bottom:564.805416px;}
.y4f_c00288{bottom:565.018704px;}
.y50_c00288{bottom:565.224024px;}
.y51_c00288{bottom:565.419648px;}
.y52_c00288{bottom:565.497372px;}
.y53_c00288{bottom:565.715004px;}
.y54_c00288{bottom:565.940232px;}
.y55_c00288{bottom:566.287092px;}
.y56_c00288{bottom:566.613324px;}
.y57_c00288{bottom:566.848512px;}
.y3f_c00288{bottom:586.707000px;}
.y40_c00288{bottom:587.013360px;}
.y41_c00288{bottom:587.276376px;}
.y42_c00288{bottom:587.518908px;}
.y43_c00288{bottom:588.012396px;}
.y44_c00288{bottom:588.123180px;}
.y45_c00288{bottom:588.324384px;}
.y46_c00288{bottom:588.595272px;}
.y47_c00288{bottom:588.952884px;}
.y48_c00288{bottom:589.147296px;}
.y49_c00288{bottom:589.489236px;}
.y4a_c00288{bottom:589.810968px;}
.y4b_c00288{bottom:589.897656px;}
.y37_c00288{bottom:615.071608px;}
.y38_c00288{bottom:615.072075px;}
.y36_c00288{bottom:615.072239px;}
.y3d_c00288{bottom:615.072441px;}
.y3a_c00288{bottom:615.072481px;}
.y3e_c00288{bottom:615.072583px;}
.y39_c00288{bottom:615.072645px;}
.y3c_c00288{bottom:615.073024px;}
.y3b_c00288{bottom:615.073068px;}
.y33_c00288{bottom:635.977249px;}
.y34_c00288{bottom:635.977719px;}
.y35_c00288{bottom:635.977918px;}
.y26_c00288{bottom:658.419000px;}
.y27_c00288{bottom:658.531320px;}
.y28_c00288{bottom:658.928841px;}
.y29_c00288{bottom:659.201406px;}
.y2a_c00288{bottom:659.643517px;}
.y2b_c00288{bottom:660.024379px;}
.y2c_c00288{bottom:660.190416px;}
.y2d_c00288{bottom:660.610792px;}
.y2e_c00288{bottom:660.965586px;}
.y2f_c00288{bottom:661.247560px;}
.y30_c00288{bottom:661.959915px;}
.y31_c00288{bottom:662.248788px;}
.y32_c00288{bottom:662.445280px;}
.y25_c00288{bottom:687.426000px;}
.y24_c00288{bottom:710.524500px;}
.y23_c00288{bottom:732.877500px;}
.y22_c00288{bottom:755.692500px;}
.y19_c00288{bottom:780.029881px;}
.y1a_c00288{bottom:780.464323px;}
.y1b_c00288{bottom:781.065781px;}
.y1c_c00288{bottom:781.458118px;}
.y1d_c00288{bottom:781.911930px;}
.y1e_c00288{bottom:782.403870px;}
.y1f_c00288{bottom:783.337246px;}
.y20_c00288{bottom:783.680550px;}
.y21_c00288{bottom:783.891765px;}
.y2_c00288{bottom:803.791500px;}
.y3_c00288{bottom:804.296656px;}
.y4_c00288{bottom:804.658713px;}
.y5_c00288{bottom:805.013520px;}
.y6_c00288{bottom:805.210404px;}
.y7_c00288{bottom:805.628782px;}
.y8_c00288{bottom:805.968685px;}
.y9_c00288{bottom:807.159034px;}
.ya_c00288{bottom:807.511762px;}
.yb_c00288{bottom:808.124095px;}
.yc_c00288{bottom:808.347453px;}
.yd_c00288{bottom:825.933000px;}
.ye_c00288{bottom:826.446101px;}
.yf_c00288{bottom:826.930112px;}
.y10_c00288{bottom:827.580789px;}
.y11_c00288{bottom:828.367789px;}
.y12_c00288{bottom:828.884141px;}
.y13_c00288{bottom:829.689588px;}
.y14_c00288{bottom:829.900408px;}
.y15_c00288{bottom:830.328221px;}
.y16_c00288{bottom:830.518152px;}
.y17_c00288{bottom:830.983996px;}
.y18_c00288{bottom:831.568954px;}
.y1_c00288{bottom:878.893500px;}
.he_c00288{height:64.050000px;}
.h4_c00288{height:66.154002px;}
.hf_c00288{height:68.250000px;}
.hc_c00288{height:68.252184px;}
.h7_c00288{height:69.300000px;}
.h6_c00288{height:70.350000px;}
.h12_c00288{height:70.352251px;}
.hd_c00288{height:71.400000px;}
.ha_c00288{height:71.402285px;}
.h3_c00288{height:71.402892px;}
.h5_c00288{height:71.404320px;}
.h8_c00288{height:72.450000px;}
.hb_c00288{height:72.452318px;}
.h10_c00288{height:73.500000px;}
.h9_c00288{height:74.553019px;}
.h11_c00288{height:75.602419px;}
.h2_c00288{height:116.550000px;}
.h1_c00288{height:1005.000000px;}
.h0_c00288{height:1005.150000px;}
.w0_c00288{width:702.540000px;}
.w1_c00288{width:702.750000px;}
.x0_c00288{left:0.000000px;}
.x5_c00288{left:22.018500px;}
.x10_c00288{left:30.730500px;}
.x1_c00288{left:36.180000px;}
.x1a_c00288{left:41.453171px;}
.x75_c00288{left:54.936000px;}
.x6c_c00288{left:66.960000px;}
.x8b_c00288{left:68.439000px;}
.x64_c00288{left:76.950000px;}
.x6_c00288{left:78.147000px;}
.x54_c00288{left:79.649664px;}
.x6d_c00288{left:81.000000px;}
.x31_c00288{left:83.292000px;}
.x97_c00288{left:84.779796px;}
.x81_c00288{left:92.880000px;}
.x32_c00288{left:95.772000px;}
.x43_c00288{left:96.865500px;}
.x59_c00288{left:98.550000px;}
.x3e_c00288{left:100.710000px;}
.x94_c00288{left:108.357000px;}
.x4c_c00288{left:111.589632px;}
.x82_c00288{left:113.940000px;}
.x5a_c00288{left:115.560000px;}
.x3f_c00288{left:116.641296px;}
.x7_c00288{left:118.375500px;}
.x65_c00288{left:119.880000px;}
.x11_c00288{left:121.377000px;}
.x8c_c00288{left:124.047000px;}
.x1b_c00288{left:127.852230px;}
.x55_c00288{left:129.331344px;}
.x44_c00288{left:135.160500px;}
.x5b_c00288{left:137.430000px;}
.x33_c00288{left:139.941000px;}
.x98_c00288{left:141.481920px;}
.x56_c00288{left:145.532376px;}
.x66_c00288{left:147.690000px;}
.x8e_c00288{left:148.770000px;}
.x83_c00288{left:150.120000px;}
.x6e_c00288{left:151.470000px;}
.x40_c00288{left:153.362766px;}
.x95_c00288{left:155.098500px;}
.x8_c00288{left:157.798500px;}
.x1c_c00288{left:160.518867px;}
.x4d_c00288{left:163.409460px;}
.x41_c00288{left:166.593833px;}
.x45_c00288{left:168.037500px;}
.x34_c00288{left:170.226000px;}
.x5c_c00288{left:175.230000px;}
.x9_c00288{left:179.674500px;}
.x9d_c00288{left:182.520000px;}
.x22_c00288{left:186.030000px;}
.x29_c00288{left:187.110000px;}
.x2d_c00288{left:188.460000px;}
.x2_c00288{left:191.970000px;}
.x58_c00288{left:193.590000px;}
.x67_c00288{left:195.480000px;}
.x1d_c00288{left:198.364955px;}
.x3c_c00288{left:201.694545px;}
.x26_c00288{left:206.010000px;}
.x23_c00288{left:208.710000px;}
.x76_c00288{left:211.285500px;}
.x2e_c00288{left:214.380000px;}
.x2a_c00288{left:215.730000px;}
.x35_c00288{left:219.349500px;}
.x68_c00288{left:220.590000px;}
.x9e_c00288{left:222.480000px;}
.x79_c00288{left:224.640000px;}
.xa_c00288{left:226.161000px;}
.x90_c00288{left:228.150000px;}
.x5d_c00288{left:232.200000px;}
.x2b_c00288{left:234.360000px;}
.x1e_c00288{left:239.404509px;}
.x84_c00288{left:242.460000px;}
.x5e_c00288{left:248.940000px;}
.x12_c00288{left:252.075000px;}
.x6f_c00288{left:253.260000px;}
.x46_c00288{left:260.040000px;}
.x24_c00288{left:261.630000px;}
.xb_c00288{left:263.928000px;}
.x4e_c00288{left:266.065116px;}
.x2f_c00288{left:274.050000px;}
.x27_c00288{left:275.670000px;}
.x7d_c00288{left:277.290000px;}
.x4f_c00288{left:278.968320px;}
.x36_c00288{left:280.116000px;}
.x5f_c00288{left:282.150000px;}
.x91_c00288{left:283.230000px;}
.x2c_c00288{left:284.580000px;}
.x70_c00288{left:287.280000px;}
.x85_c00288{left:292.950000px;}
.x96_c00288{left:295.764000px;}
.x13_c00288{left:299.016000px;}
.x3d_c00288{left:301.058091px;}
.x9f_c00288{left:302.400000px;}
.x69_c00288{left:303.480000px;}
.x60_c00288{left:308.880000px;}
.x50_c00288{left:315.172896px;}
.x1f_c00288{left:317.165151px;}
.x25_c00288{left:321.840000px;}
.x86_c00288{left:324.270000px;}
.x30_c00288{left:326.700000px;}
.x7a_c00288{left:331.290000px;}
.x28_c00288{left:332.370000px;}
.x7e_c00288{left:338.310000px;}
.x20_c00288{left:345.783338px;}
.x71_c00288{left:349.650000px;}
.x51_c00288{left:352.701996px;}
.x77_c00288{left:354.628500px;}
.x8f_c00288{left:357.750000px;}
.x7b_c00288{left:360.720000px;}
.x7f_c00288{left:362.070000px;}
.x21_c00288{left:363.348140px;}
.x37_c00288{left:366.246000px;}
.x72_c00288{left:368.280000px;}
.x14_c00288{left:372.238500px;}
.xa0_c00288{left:373.410000px;}
.x47_c00288{left:377.601000px;}
.x7c_c00288{left:385.830000px;}
.xa1_c00288{left:390.150000px;}
.x15_c00288{left:391.404000px;}
.x80_c00288{left:393.930000px;}
.xc_c00288{left:396.189000px;}
.x38_c00288{left:397.576500px;}
.x48_c00288{left:401.902500px;}
.x3_c00288{left:403.110000px;}
.x61_c00288{left:404.190000px;}
.x52_c00288{left:410.497920px;}
.x78_c00288{left:424.498500px;}
.xa2_c00288{left:426.060000px;}
.x16_c00288{left:430.296000px;}
.xd_c00288{left:435.381000px;}
.x87_c00288{left:437.400000px;}
.x62_c00288{left:438.750000px;}
.x92_c00288{left:441.720000px;}
.x49_c00288{left:444.645000px;}
.x17_c00288{left:447.562500px;}
.x63_c00288{left:451.980000px;}
.x93_c00288{left:459.540000px;}
.x53_c00288{left:464.777784px;}
.xa3_c00288{left:467.910000px;}
.x88_c00288{left:470.610000px;}
.x6a_c00288{left:474.660000px;}
.x39_c00288{left:476.727000px;}
.x4a_c00288{left:484.861500px;}
.x99_c00288{left:486.011964px;}
.x9b_c00288{left:487.350000px;}
.x18_c00288{left:489.912000px;}
.x4b_c00288{left:495.697500px;}
.x42_c00288{left:501.947495px;}
.xe_c00288{left:503.418000px;}
.x73_c00288{left:505.980000px;}
.x3a_c00288{left:508.824000px;}
.x8d_c00288{left:512.469000px;}
.x6b_c00288{left:514.620000px;}
.x4_c00288{left:521.910000px;}
.xf_c00288{left:528.235500px;}
.x3b_c00288{left:530.656500px;}
.x74_c00288{left:532.440000px;}
.xa4_c00288{left:539.460000px;}
.x89_c00288{left:540.810000px;}
.x19_c00288{left:543.090000px;}
.x9a_c00288{left:553.514784px;}
.x9c_c00288{left:566.460000px;}
.x57_c00288{left:582.406836px;}
.x8a_c00288{left:585.900000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.fsc_c00288{font-size:56.933333pt;}
.fs2_c00288{font-size:58.803557pt;}
.fsd_c00288{font-size:60.666667pt;}
.fsa_c00288{font-size:60.668608pt;}
.fs5_c00288{font-size:61.600000pt;}
.fs4_c00288{font-size:62.533333pt;}
.fs10_c00288{font-size:62.535334pt;}
.fsb_c00288{font-size:63.466667pt;}
.fs8_c00288{font-size:63.468698pt;}
.fs1_c00288{font-size:63.469237pt;}
.fs3_c00288{font-size:63.470506pt;}
.fs6_c00288{font-size:64.400000pt;}
.fs9_c00288{font-size:64.402061pt;}
.fse_c00288{font-size:65.333333pt;}
.fs7_c00288{font-size:66.269350pt;}
.fsf_c00288{font-size:67.202150pt;}
.fs0_c00288{font-size:103.600000pt;}
.y0_c00288{bottom:0.000000pt;}
.y87_c00288{bottom:146.446667pt;}
.y86_c00288{bottom:170.633333pt;}
.y7c_c00288{bottom:194.636245pt;}
.y83_c00288{bottom:194.636747pt;}
.y7d_c00288{bottom:194.636768pt;}
.y7e_c00288{bottom:194.636811pt;}
.y7f_c00288{bottom:194.637120pt;}
.y82_c00288{bottom:194.637141pt;}
.y80_c00288{bottom:194.637216pt;}
.y85_c00288{bottom:194.637259pt;}
.y84_c00288{bottom:194.637269pt;}
.y81_c00288{bottom:194.637525pt;}
.y73_c00288{bottom:217.116000pt;}
.y74_c00288{bottom:217.160267pt;}
.y75_c00288{bottom:217.448384pt;}
.y76_c00288{bottom:217.786293pt;}
.y77_c00288{bottom:218.064565pt;}
.y78_c00288{bottom:218.317824pt;}
.y79_c00288{bottom:218.448672pt;}
.y7a_c00288{bottom:218.922699pt;}
.y7b_c00288{bottom:220.004928pt;}
.y72_c00288{bottom:243.304000pt;}
.y71_c00288{bottom:267.741333pt;}
.y6c_c00288{bottom:291.266667pt;}
.y6d_c00288{bottom:291.662667pt;}
.y6e_c00288{bottom:291.872000pt;}
.y6f_c00288{bottom:294.425333pt;}
.y70_c00288{bottom:294.929333pt;}
.y6b_c00288{bottom:312.154667pt;}
.y6a_c00288{bottom:336.542667pt;}
.y69_c00288{bottom:361.249333pt;}
.y60_c00288{bottom:379.681333pt;}
.y61_c00288{bottom:379.973333pt;}
.y62_c00288{bottom:380.249333pt;}
.y63_c00288{bottom:380.490667pt;}
.y64_c00288{bottom:380.792000pt;}
.y65_c00288{bottom:380.934667pt;}
.y66_c00288{bottom:381.490667pt;}
.y67_c00288{bottom:381.812000pt;}
.y68_c00288{bottom:382.309333pt;}
.y5f_c00288{bottom:402.104000pt;}
.y5e_c00288{bottom:422.021333pt;}
.y5d_c00288{bottom:442.145333pt;}
.y5c_c00288{bottom:465.980000pt;}
.y59_c00288{bottom:482.596363pt;}
.y58_c00288{bottom:482.596427pt;}
.y5b_c00288{bottom:482.596693pt;}
.y5a_c00288{bottom:482.596896pt;}
.y4c_c00288{bottom:501.598933pt;}
.y4d_c00288{bottom:501.772768pt;}
.y4e_c00288{bottom:502.049259pt;}
.y4f_c00288{bottom:502.238848pt;}
.y50_c00288{bottom:502.421355pt;}
.y51_c00288{bottom:502.595243pt;}
.y52_c00288{bottom:502.664331pt;}
.y53_c00288{bottom:502.857781pt;}
.y54_c00288{bottom:503.057984pt;}
.y55_c00288{bottom:503.366304pt;}
.y56_c00288{bottom:503.656288pt;}
.y57_c00288{bottom:503.865344pt;}
.y3f_c00288{bottom:521.517333pt;}
.y40_c00288{bottom:521.789653pt;}
.y41_c00288{bottom:522.023445pt;}
.y42_c00288{bottom:522.239029pt;}
.y43_c00288{bottom:522.677685pt;}
.y44_c00288{bottom:522.776160pt;}
.y45_c00288{bottom:522.955008pt;}
.y46_c00288{bottom:523.195797pt;}
.y47_c00288{bottom:523.513675pt;}
.y48_c00288{bottom:523.686485pt;}
.y49_c00288{bottom:523.990432pt;}
.y4a_c00288{bottom:524.276416pt;}
.y4b_c00288{bottom:524.353472pt;}
.y37_c00288{bottom:546.730319pt;}
.y38_c00288{bottom:546.730733pt;}
.y36_c00288{bottom:546.730879pt;}
.y3d_c00288{bottom:546.731059pt;}
.y3a_c00288{bottom:546.731095pt;}
.y3e_c00288{bottom:546.731185pt;}
.y39_c00288{bottom:546.731240pt;}
.y3c_c00288{bottom:546.731577pt;}
.y3b_c00288{bottom:546.731616pt;}
.y33_c00288{bottom:565.313111pt;}
.y34_c00288{bottom:565.313528pt;}
.y35_c00288{bottom:565.313705pt;}
.y26_c00288{bottom:585.261333pt;}
.y27_c00288{bottom:585.361173pt;}
.y28_c00288{bottom:585.714525pt;}
.y29_c00288{bottom:585.956805pt;}
.y2a_c00288{bottom:586.349793pt;}
.y2b_c00288{bottom:586.688337pt;}
.y2c_c00288{bottom:586.835925pt;}
.y2d_c00288{bottom:587.209593pt;}
.y2e_c00288{bottom:587.524965pt;}
.y2f_c00288{bottom:587.775609pt;}
.y30_c00288{bottom:588.408813pt;}
.y31_c00288{bottom:588.665589pt;}
.y32_c00288{bottom:588.840249pt;}
.y25_c00288{bottom:611.045333pt;}
.y24_c00288{bottom:631.577333pt;}
.y23_c00288{bottom:651.446667pt;}
.y22_c00288{bottom:671.726667pt;}
.y19_c00288{bottom:693.359895pt;}
.y1a_c00288{bottom:693.746065pt;}
.y1b_c00288{bottom:694.280695pt;}
.y1c_c00288{bottom:694.629439pt;}
.y1d_c00288{bottom:695.032827pt;}
.y1e_c00288{bottom:695.470107pt;}
.y1f_c00288{bottom:696.299775pt;}
.y20_c00288{bottom:696.604933pt;}
.y21_c00288{bottom:696.792680pt;}
.y2_c00288{bottom:714.481333pt;}
.y3_c00288{bottom:714.930361pt;}
.y4_c00288{bottom:715.252189pt;}
.y5_c00288{bottom:715.567573pt;}
.y6_c00288{bottom:715.742581pt;}
.y7_c00288{bottom:716.114473pt;}
.y8_c00288{bottom:716.416609pt;}
.y9_c00288{bottom:717.474697pt;}
.ya_c00288{bottom:717.788233pt;}
.yb_c00288{bottom:718.332529pt;}
.yc_c00288{bottom:718.531069pt;}
.yd_c00288{bottom:734.162667pt;}
.ye_c00288{bottom:734.618756pt;}
.yf_c00288{bottom:735.048988pt;}
.y10_c00288{bottom:735.627368pt;}
.y11_c00288{bottom:736.326924pt;}
.y12_c00288{bottom:736.785903pt;}
.y13_c00288{bottom:737.501856pt;}
.y14_c00288{bottom:737.689252pt;}
.y15_c00288{bottom:738.069529pt;}
.y16_c00288{bottom:738.238357pt;}
.y17_c00288{bottom:738.652441pt;}
.y18_c00288{bottom:739.172404pt;}
.y1_c00288{bottom:781.238667pt;}
.he_c00288{height:56.933333pt;}
.h4_c00288{height:58.803557pt;}
.hf_c00288{height:60.666667pt;}
.hc_c00288{height:60.668608pt;}
.h7_c00288{height:61.600000pt;}
.h6_c00288{height:62.533333pt;}
.h12_c00288{height:62.535334pt;}
.hd_c00288{height:63.466667pt;}
.ha_c00288{height:63.468698pt;}
.h3_c00288{height:63.469237pt;}
.h5_c00288{height:63.470506pt;}
.h8_c00288{height:64.400000pt;}
.hb_c00288{height:64.402061pt;}
.h10_c00288{height:65.333333pt;}
.h9_c00288{height:66.269350pt;}
.h11_c00288{height:67.202150pt;}
.h2_c00288{height:103.600000pt;}
.h1_c00288{height:893.333333pt;}
.h0_c00288{height:893.466667pt;}
.w0_c00288{width:624.480000pt;}
.w1_c00288{width:624.666667pt;}
.x0_c00288{left:0.000000pt;}
.x5_c00288{left:19.572000pt;}
.x10_c00288{left:27.316000pt;}
.x1_c00288{left:32.160000pt;}
.x1a_c00288{left:36.847263pt;}
.x75_c00288{left:48.832000pt;}
.x6c_c00288{left:59.520000pt;}
.x8b_c00288{left:60.834667pt;}
.x64_c00288{left:68.400000pt;}
.x6_c00288{left:69.464000pt;}
.x54_c00288{left:70.799701pt;}
.x6d_c00288{left:72.000000pt;}
.x31_c00288{left:74.037333pt;}
.x97_c00288{left:75.359819pt;}
.x81_c00288{left:82.560000pt;}
.x32_c00288{left:85.130667pt;}
.x43_c00288{left:86.102667pt;}
.x59_c00288{left:87.600000pt;}
.x3e_c00288{left:89.520000pt;}
.x94_c00288{left:96.317333pt;}
.x4c_c00288{left:99.190784pt;}
.x82_c00288{left:101.280000pt;}
.x5a_c00288{left:102.720000pt;}
.x3f_c00288{left:103.681152pt;}
.x7_c00288{left:105.222667pt;}
.x65_c00288{left:106.560000pt;}
.x11_c00288{left:107.890667pt;}
.x8c_c00288{left:110.264000pt;}
.x1b_c00288{left:113.646427pt;}
.x55_c00288{left:114.961195pt;}
.x44_c00288{left:120.142667pt;}
.x5b_c00288{left:122.160000pt;}
.x33_c00288{left:124.392000pt;}
.x98_c00288{left:125.761707pt;}
.x56_c00288{left:129.362112pt;}
.x66_c00288{left:131.280000pt;}
.x8e_c00288{left:132.240000pt;}
.x83_c00288{left:133.440000pt;}
.x6e_c00288{left:134.640000pt;}
.x40_c00288{left:136.322459pt;}
.x95_c00288{left:137.865333pt;}
.x8_c00288{left:140.265333pt;}
.x1c_c00288{left:142.683437pt;}
.x4d_c00288{left:145.252853pt;}
.x41_c00288{left:148.083407pt;}
.x45_c00288{left:149.366667pt;}
.x34_c00288{left:151.312000pt;}
.x5c_c00288{left:155.760000pt;}
.x9_c00288{left:159.710667pt;}
.x9d_c00288{left:162.240000pt;}
.x22_c00288{left:165.360000pt;}
.x29_c00288{left:166.320000pt;}
.x2d_c00288{left:167.520000pt;}
.x2_c00288{left:170.640000pt;}
.x58_c00288{left:172.080000pt;}
.x67_c00288{left:173.760000pt;}
.x1d_c00288{left:176.324404pt;}
.x3c_c00288{left:179.284040pt;}
.x26_c00288{left:183.120000pt;}
.x23_c00288{left:185.520000pt;}
.x76_c00288{left:187.809333pt;}
.x2e_c00288{left:190.560000pt;}
.x2a_c00288{left:191.760000pt;}
.x35_c00288{left:194.977333pt;}
.x68_c00288{left:196.080000pt;}
.x9e_c00288{left:197.760000pt;}
.x79_c00288{left:199.680000pt;}
.xa_c00288{left:201.032000pt;}
.x90_c00288{left:202.800000pt;}
.x5d_c00288{left:206.400000pt;}
.x2b_c00288{left:208.320000pt;}
.x1e_c00288{left:212.804008pt;}
.x84_c00288{left:215.520000pt;}
.x5e_c00288{left:221.280000pt;}
.x12_c00288{left:224.066667pt;}
.x6f_c00288{left:225.120000pt;}
.x46_c00288{left:231.146667pt;}
.x24_c00288{left:232.560000pt;}
.xb_c00288{left:234.602667pt;}
.x4e_c00288{left:236.502325pt;}
.x2f_c00288{left:243.600000pt;}
.x27_c00288{left:245.040000pt;}
.x7d_c00288{left:246.480000pt;}
.x4f_c00288{left:247.971840pt;}
.x36_c00288{left:248.992000pt;}
.x5f_c00288{left:250.800000pt;}
.x91_c00288{left:251.760000pt;}
.x2c_c00288{left:252.960000pt;}
.x70_c00288{left:255.360000pt;}
.x85_c00288{left:260.400000pt;}
.x96_c00288{left:262.901333pt;}
.x13_c00288{left:265.792000pt;}
.x3d_c00288{left:267.607192pt;}
.x9f_c00288{left:268.800000pt;}
.x69_c00288{left:269.760000pt;}
.x60_c00288{left:274.560000pt;}
.x50_c00288{left:280.153685pt;}
.x1f_c00288{left:281.924579pt;}
.x25_c00288{left:286.080000pt;}
.x86_c00288{left:288.240000pt;}
.x30_c00288{left:290.400000pt;}
.x7a_c00288{left:294.480000pt;}
.x28_c00288{left:295.440000pt;}
.x7e_c00288{left:300.720000pt;}
.x20_c00288{left:307.362967pt;}
.x71_c00288{left:310.800000pt;}
.x51_c00288{left:313.512885pt;}
.x77_c00288{left:315.225333pt;}
.x8f_c00288{left:318.000000pt;}
.x7b_c00288{left:320.640000pt;}
.x7f_c00288{left:321.840000pt;}
.x21_c00288{left:322.976124pt;}
.x37_c00288{left:325.552000pt;}
.x72_c00288{left:327.360000pt;}
.x14_c00288{left:330.878667pt;}
.xa0_c00288{left:331.920000pt;}
.x47_c00288{left:335.645333pt;}
.x7c_c00288{left:342.960000pt;}
.xa1_c00288{left:346.800000pt;}
.x15_c00288{left:347.914667pt;}
.x80_c00288{left:350.160000pt;}
.xc_c00288{left:352.168000pt;}
.x38_c00288{left:353.401333pt;}
.x48_c00288{left:357.246667pt;}
.x3_c00288{left:358.320000pt;}
.x61_c00288{left:359.280000pt;}
.x52_c00288{left:364.887040pt;}
.x78_c00288{left:377.332000pt;}
.xa2_c00288{left:378.720000pt;}
.x16_c00288{left:382.485333pt;}
.xd_c00288{left:387.005333pt;}
.x87_c00288{left:388.800000pt;}
.x62_c00288{left:390.000000pt;}
.x92_c00288{left:392.640000pt;}
.x49_c00288{left:395.240000pt;}
.x17_c00288{left:397.833333pt;}
.x63_c00288{left:401.760000pt;}
.x93_c00288{left:408.480000pt;}
.x53_c00288{left:413.135808pt;}
.xa3_c00288{left:415.920000pt;}
.x88_c00288{left:418.320000pt;}
.x6a_c00288{left:421.920000pt;}
.x39_c00288{left:423.757333pt;}
.x4a_c00288{left:430.988000pt;}
.x99_c00288{left:432.010635pt;}
.x9b_c00288{left:433.200000pt;}
.x18_c00288{left:435.477333pt;}
.x4b_c00288{left:440.620000pt;}
.x42_c00288{left:446.175551pt;}
.xe_c00288{left:447.482667pt;}
.x73_c00288{left:449.760000pt;}
.x3a_c00288{left:452.288000pt;}
.x8d_c00288{left:455.528000pt;}
.x6b_c00288{left:457.440000pt;}
.x4_c00288{left:463.920000pt;}
.xf_c00288{left:469.542667pt;}
.x3b_c00288{left:471.694667pt;}
.x74_c00288{left:473.280000pt;}
.xa4_c00288{left:479.520000pt;}
.x89_c00288{left:480.720000pt;}
.x19_c00288{left:482.746667pt;}
.x9a_c00288{left:492.013141pt;}
.x9c_c00288{left:503.520000pt;}
.x57_c00288{left:517.694965pt;}
.x8a_c00288{left:520.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_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;}
.m51_c00289{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);}
.m6_c00289{transform:matrix(0.012775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.017380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017380,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.020785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020785,0.000000,0.000000,0.250000,0,0);}
.mfa_c00289{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);}
.m73_c00289{transform:matrix(0.079485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079485,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095790,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{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);}
.m9c_c00289{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);}
.m21_c00289{transform:matrix(0.139280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139280,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139990,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.140540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140540,0.000000,0.000000,0.250000,0,0);}
.m104_c00289{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{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);}
.m10_c00289{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{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);}
.m7d_c00289{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);}
.me_c00289{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{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);}
.mb_c00289{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);}
.m8b_c00289{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);}
.m24_c00289{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);}
.m14_c00289{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);}
.me7_c00289{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);}
.m1f_c00289{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{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);}
.m27_c00289{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);}
.ma1_c00289{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);}
.m23_c00289{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);}
.m8_c00289{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);}
.m3a_c00289{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);}
.md6_c00289{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);}
.m2a_c00289{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);}
.m31_c00289{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);}
.m2f_c00289{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);}
.m22_c00289{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);}
.mee_c00289{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);}
.m6e_c00289{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);}
.mb5_c00289{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);}
.m7f_c00289{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);}
.m20_c00289{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);}
.mfd_c00289{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);}
.mb8_c00289{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);}
.m75_c00289{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);}
.m5f_c00289{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);}
.mbe_c00289{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);}
.mf2_c00289{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);}
.md_c00289{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);}
.m96_c00289{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);}
.mb1_c00289{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);}
.m30_c00289{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);}
.m89_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);}
.m39_c00289{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);}
.m1e_c00289{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);}
.m37_c00289{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);}
.m4d_c00289{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);}
.m10f_c00289{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);}
.m54_c00289{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);}
.mea_c00289{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.mc0_c00289{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);}
.ma9_c00289{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);}
.m9f_c00289{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);}
.m53_c00289{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{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);}
.m81_c00289{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);}
.m83_c00289{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);}
.mf_c00289{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);}
.me9_c00289{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);}
.mac_c00289{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);}
.m13_c00289{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);}
.m29_c00289{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);}
.ma0_c00289{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);}
.m1b_c00289{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);}
.m5_c00289{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);}
.m71_c00289{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);}
.m52_c00289{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);}
.md3_c00289{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);}
.m95_c00289{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);}
.m3d_c00289{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_c00289{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);}
.me5_c00289{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);}
.mf7_c00289{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);}
.m2e_c00289{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);}
.m6a_c00289{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);}
.mb2_c00289{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);}
.mb0_c00289{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);}
.m38_c00289{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);}
.m32_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);}
.mb3_c00289{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);}
.m9e_c00289{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_c00289{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);}
.m3e_c00289{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);}
.m62_c00289{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);}
.m44_c00289{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);}
.m28_c00289{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);}
.m93_c00289{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);}
.m79_c00289{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);}
.m7b_c00289{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);}
.me8_c00289{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);}
.mef_c00289{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);}
.m55_c00289{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);}
.m1a_c00289{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);}
.m5e_c00289{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);}
.mc1_c00289{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);}
.ma_c00289{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);}
.md0_c00289{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);}
.ma2_c00289{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);}
.m9_c00289{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);}
.m5c_c00289{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);}
.mdd_c00289{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);}
.m85_c00289{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);}
.m60_c00289{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);}
.m50_c00289{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);}
.m1c_c00289{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);}
.m4a_c00289{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);}
.m67_c00289{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);}
.me0_c00289{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);}
.mf1_c00289{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);}
.m7c_c00289{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);}
.m9d_c00289{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);}
.m18_c00289{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);}
.maf_c00289{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);}
.m77_c00289{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);}
.m3f_c00289{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);}
.mbc_c00289{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);}
.m2b_c00289{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);}
.m10c_c00289{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);}
.mc7_c00289{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);}
.m64_c00289{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);}
.mb7_c00289{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);}
.m106_c00289{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);}
.mec_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);}
.mf4_c00289{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);}
.md4_c00289{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);}
.m82_c00289{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);}
.md5_c00289{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);}
.md2_c00289{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{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);}
.ma3_c00289{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);}
.m9a_c00289{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);}
.m94_c00289{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);}
.m47_c00289{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);}
.mdf_c00289{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);}
.ma5_c00289{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);}
.mf0_c00289{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);}
.m84_c00289{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);}
.mc5_c00289{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);}
.m48_c00289{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);}
.me2_c00289{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);}
.m16_c00289{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);}
.mfb_c00289{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);}
.m6f_c00289{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);}
.m8d_c00289{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_c00289{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);}
.mc3_c00289{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);}
.mba_c00289{transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{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);}
.m4c_c00289{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);}
.mce_c00289{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);}
.m2d_c00289{transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{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);}
.maa_c00289{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);}
.m7e_c00289{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);}
.m8c_c00289{transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);}
.mc9_c00289{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);}
.m98_c00289{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);}
.m34_c00289{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);}
.mde_c00289{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);}
.m15_c00289{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);}
.m8f_c00289{transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225795,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);}
.mbf_c00289{transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.mae_c00289{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);}
.m6b_c00289{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{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);}
.m11_c00289{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);}
.m35_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);}
.md7_c00289{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);}
.md8_c00289{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);}
.m8e_c00289{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);}
.m8a_c00289{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);}
.mbd_c00289{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);}
.mb4_c00289{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{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);}
.m69_c00289{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);}
.m6c_c00289{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);}
.m72_c00289{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);}
.m80_c00289{transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{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);}
.m76_c00289{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);}
.mcd_c00289{transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234370,0.000000,0.000000,0.250000,0,0);}
.mcb_c00289{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);}
.mcf_c00289{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);}
.mcc_c00289{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);}
.ma7_c00289{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);}
.m5b_c00289{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);}
.m61_c00289{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);}
.m109_c00289{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{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);}
.m3c_c00289{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);}
.m63_c00289{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);}
.mdb_c00289{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);}
.m42_c00289{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);}
.m110_c00289{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);}
.mbb_c00289{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);}
.m10d_c00289{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);}
.m49_c00289{transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244520,0.000000,0.000000,0.250000,0,0);}
.mfc_c00289{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);}
.m36_c00289{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);}
.m66_c00289{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.me1_c00289{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);}
.m46_c00289{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);}
.ma4_c00289{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{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);}
.mc4_c00289{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);}
.me6_c00289{transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);}
.mca_c00289{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);}
.mad_c00289{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);}
.m4b_c00289{transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);}
.mb6_c00289{transform:matrix(0.263845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263845,0.000000,0.000000,0.250000,0,0);}
.mc8_c00289{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);}
.m70_c00289{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.m10e_c00289{transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);}
.mdc_c00289{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);}
.mf6_c00289{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);}
.m10a_c00289{transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);}
.m107_c00289{transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);}
.me3_c00289{transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286255,0.000000,0.000000,0.250000,0,0);}
.mf3_c00289{transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);}
.md9_c00289{transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);}
.ma8_c00289{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);}
.mc2_c00289{transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);}
.meb_c00289{transform:matrix(0.298185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298185,0.000000,0.000000,0.250000,0,0);}
.mf9_c00289{transform:matrix(0.298385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298385,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298505,0.000000,0.000000,0.250000,0,0);}
.m102_c00289{transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299440,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.m108_c00289{transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306110,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306970,0.000000,0.000000,0.250000,0,0);}
.med_c00289{transform:matrix(0.307765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307765,0.000000,0.000000,0.250000,0,0);}
.mc6_c00289{transform:matrix(0.311350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311350,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311780,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{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);}
.m45_c00289{transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);}
.m111_c00289{transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00289{transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321475,0.000000,0.000000,0.250000,0,0);}
.mda_c00289{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);}
.m0_c00289{transform:matrix(0.330060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330060,0.000000,0.000000,0.250000,0,0);}
.mf5_c00289{transform:matrix(0.333530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333530,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);}
.m100_c00289{transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342175,0.000000,0.000000,0.250000,0,0);}
.me4_c00289{transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);}
.m101_c00289{transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343210,0.000000,0.000000,0.250000,0,0);}
.mff_c00289{transform:matrix(0.346855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.347710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347710,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{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);}
.m3_c00289{transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359930,0.000000,0.000000,0.250000,0,0);}
.m103_c00289{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);}
.m19_c00289{transform:matrix(0.401025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401025,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);}
.mab_c00289{transform:matrix(0.432610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432610,0.000000,0.000000,0.250000,0,0);}
.mf8_c00289{transform:matrix(0.435740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435740,0.000000,0.000000,0.250000,0,0);}
.mfe_c00289{transform:matrix(0.451425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451425,0.000000,0.000000,0.250000,0,0);}
.md1_c00289{transform:matrix(0.507705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507705,0.000000,0.000000,0.250000,0,0);}
.m10b_c00289{transform:matrix(0.510125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510125,0.000000,0.000000,0.250000,0,0);}
.m105_c00289{transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633945,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(1.151245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.151245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.151245,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;}
.fse_c00289{font-size:46.200000px;}
.fs8_c00289{font-size:61.950000px;}
.fs6_c00289{font-size:63.000000px;}
.fs4_c00289{font-size:64.050000px;}
.fsd_c00289{font-size:65.100000px;}
.fsc_c00289{font-size:67.200000px;}
.fsa_c00289{font-size:68.250000px;}
.fsb_c00289{font-size:69.300000px;}
.fs9_c00289{font-size:70.350000px;}
.fs3_c00289{font-size:71.400000px;}
.fs5_c00289{font-size:72.450000px;}
.fs7_c00289{font-size:73.500000px;}
.fsf_c00289{font-size:75.600000px;}
.fs2_c00289{font-size:87.150000px;}
.fs1_c00289{font-size:89.250000px;}
.fs0_c00289{font-size:228.900000px;}
.y0_c00289{bottom:0.000000px;}
.y28_c00289{bottom:190.500000px;}
.y27_c00289{bottom:217.626000px;}
.y26_c00289{bottom:291.408000px;}
.y25_c00289{bottom:319.410000px;}
.y24_c00289{bottom:347.262000px;}
.y23_c00289{bottom:370.108500px;}
.y22_c00289{bottom:392.530500px;}
.y21_c00289{bottom:415.990500px;}
.y20_c00289{bottom:438.724500px;}
.y1f_c00289{bottom:461.400000px;}
.y1e_c00289{bottom:484.285500px;}
.y1d_c00289{bottom:507.930000px;}
.y1c_c00289{bottom:529.993500px;}
.y1b_c00289{bottom:557.518500px;}
.y1a_c00289{bottom:580.326000px;}
.y19_c00289{bottom:603.526500px;}
.y18_c00289{bottom:625.860000px;}
.y17_c00289{bottom:653.602500px;}
.y16_c00289{bottom:676.045500px;}
.y15_c00289{bottom:703.542000px;}
.y14_c00289{bottom:731.877000px;}
.y13_c00289{bottom:754.486500px;}
.y12_c00289{bottom:781.864500px;}
.y11_c00289{bottom:805.515000px;}
.y10_c00289{bottom:806.943000px;}
.yf_c00289{bottom:807.516000px;}
.ye_c00289{bottom:807.904500px;}
.yd_c00289{bottom:808.200000px;}
.yc_c00289{bottom:808.954500px;}
.yb_c00289{bottom:809.194500px;}
.ya_c00289{bottom:809.956500px;}
.y9_c00289{bottom:810.270000px;}
.y8_c00289{bottom:832.570500px;}
.y2_c00289{bottom:863.334000px;}
.y5_c00289{bottom:863.760000px;}
.y3_c00289{bottom:865.645500px;}
.y4_c00289{bottom:872.737500px;}
.y6_c00289{bottom:875.827500px;}
.y7_c00289{bottom:884.673000px;}
.y1_c00289{bottom:906.142500px;}
.h10_c00289{height:46.200000px;}
.ha_c00289{height:61.950000px;}
.h8_c00289{height:63.000000px;}
.h6_c00289{height:64.050000px;}
.hf_c00289{height:65.100000px;}
.he_c00289{height:67.200000px;}
.hc_c00289{height:68.250000px;}
.hd_c00289{height:69.300000px;}
.hb_c00289{height:70.350000px;}
.h5_c00289{height:71.400000px;}
.h7_c00289{height:72.450000px;}
.h9_c00289{height:73.500000px;}
.h11_c00289{height:75.600000px;}
.h4_c00289{height:87.150000px;}
.h3_c00289{height:89.250000px;}
.h2_c00289{height:228.900000px;}
.h0_c00289{height:1008.450000px;}
.h1_c00289{height:1008.750000px;}
.w0_c00289{width:696.000000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:107.190000px;}
.x3_c00289{left:110.095500px;}
.x4_c00289{left:152.113500px;}
.x8_c00289{left:161.190000px;}
.x72_c00289{left:162.270000px;}
.xb4_c00289{left:168.750000px;}
.x32_c00289{left:173.340000px;}
.x5f_c00289{left:176.310000px;}
.x21_c00289{left:179.551500px;}
.xa5_c00289{left:183.330000px;}
.x3f_c00289{left:185.490000px;}
.x6b_c00289{left:189.540000px;}
.x73_c00289{left:194.130000px;}
.x2d_c00289{left:196.290000px;}
.x15_c00289{left:197.845500px;}
.x22_c00289{left:200.341500px;}
.x33_c00289{left:203.310000px;}
.x9_c00289{left:205.200000px;}
.x2a_c00289{left:208.711500px;}
.x7c_c00289{left:210.060000px;}
.xb5_c00289{left:211.140000px;}
.x60_c00289{left:214.650000px;}
.xa1_c00289{left:216.540000px;}
.x52_c00289{left:221.130000px;}
.x16_c00289{left:224.005500px;}
.x7d_c00289{left:225.450000px;}
.xa_c00289{left:227.880000px;}
.x40_c00289{left:229.230000px;}
.x87_c00289{left:231.930000px;}
.x57_c00289{left:235.440000px;}
.x9c_c00289{left:236.520000px;}
.x34_c00289{left:238.410000px;}
.x2b_c00289{left:241.381500px;}
.x23_c00289{left:242.461500px;}
.x96_c00289{left:245.160000px;}
.x6c_c00289{left:246.780000px;}
.xb6_c00289{left:248.130000px;}
.x1d_c00289{left:250.291500px;}
.x41_c00289{left:254.880000px;}
.xaa_c00289{left:256.230000px;}
.x58_c00289{left:261.630000px;}
.x7e_c00289{left:263.520000px;}
.x45_c00289{left:264.600000px;}
.x61_c00289{left:266.760000px;}
.x8f_c00289{left:268.650000px;}
.xa6_c00289{left:271.080000px;}
.x2c_c00289{left:272.431500px;}
.x4d_c00289{left:274.320000px;}
.x2e_c00289{left:276.480000px;}
.x24_c00289{left:278.371500px;}
.x5_c00289{left:281.065500px;}
.x53_c00289{left:282.150000px;}
.xb_c00289{left:283.770000px;}
.x7f_c00289{left:285.660000px;}
.x17_c00289{left:287.446500px;}
.x2_c00289{left:290.520000px;}
.x97_c00289{left:292.680000px;}
.x74_c00289{left:294.030000px;}
.x2f_c00289{left:295.650000px;}
.x35_c00289{left:303.210000px;}
.xa7_c00289{left:305.910000px;}
.xc_c00289{left:308.070000px;}
.x59_c00289{left:309.960000px;}
.x80_c00289{left:312.120000px;}
.x42_c00289{left:313.200000px;}
.x36_c00289{left:318.330000px;}
.x6d_c00289{left:323.730000px;}
.x4e_c00289{left:324.810000px;}
.x46_c00289{left:329.400000px;}
.x75_c00289{left:332.370000px;}
.xab_c00289{left:333.450000px;}
.x6e_c00289{left:336.150000px;}
.x90_c00289{left:340.740000px;}
.x54_c00289{left:344.520000px;}
.x6_c00289{left:345.736500px;}
.x5a_c00289{left:348.300000px;}
.x37_c00289{left:349.380000px;}
.x62_c00289{left:350.460000px;}
.x1e_c00289{left:352.081500px;}
.xd_c00289{left:353.160000px;}
.x4f_c00289{left:354.240000px;}
.x5b_c00289{left:356.940000px;}
.x76_c00289{left:358.560000px;}
.x47_c00289{left:362.070000px;}
.x43_c00289{left:363.420000px;}
.x25_c00289{left:366.391500px;}
.x18_c00289{left:370.305000px;}
.x88_c00289{left:374.760000px;}
.xa8_c00289{left:376.110000px;}
.x81_c00289{left:377.730000px;}
.x98_c00289{left:379.890000px;}
.x1f_c00289{left:381.241500px;}
.x63_c00289{left:383.670000px;}
.x5c_c00289{left:389.340000px;}
.xac_c00289{left:393.390000px;}
.x19_c00289{left:394.878000px;}
.xe_c00289{left:399.060000px;}
.x89_c00289{left:400.140000px;}
.x64_c00289{left:401.490000px;}
.x91_c00289{left:406.350000px;}
.x77_c00289{left:410.400000px;}
.x48_c00289{left:413.370000px;}
.x9d_c00289{left:415.530000px;}
.x99_c00289{left:416.610000px;}
.x38_c00289{left:419.580000px;}
.x30_c00289{left:420.930000px;}
.x92_c00289{left:423.900000px;}
.xf_c00289{left:425.250000px;}
.x1a_c00289{left:427.270500px;}
.x20_c00289{left:429.571500px;}
.x5d_c00289{left:431.190000px;}
.x49_c00289{left:435.240000px;}
.x26_c00289{left:436.861500px;}
.xa2_c00289{left:438.480000px;}
.xa3_c00289{left:440.370000px;}
.x39_c00289{left:441.720000px;}
.xa9_c00289{left:443.610000px;}
.xad_c00289{left:446.040000px;}
.x9a_c00289{left:448.470000px;}
.x31_c00289{left:450.360000px;}
.xa4_c00289{left:452.520000px;}
.x50_c00289{left:453.600000px;}
.x65_c00289{left:456.840000px;}
.x55_c00289{left:458.730000px;}
.x5e_c00289{left:461.430000px;}
.xae_c00289{left:466.560000px;}
.x10_c00289{left:469.530000px;}
.x1b_c00289{left:475.057500px;}
.xaf_c00289{left:477.090000px;}
.x51_c00289{left:478.170000px;}
.x66_c00289{left:479.520000px;}
.xb2_c00289{left:482.220000px;}
.x6f_c00289{left:486.270000px;}
.x11_c00289{left:487.890000px;}
.x8a_c00289{left:495.990000px;}
.x44_c00289{left:498.420000px;}
.x27_c00289{left:501.391500px;}
.x12_c00289{left:502.470000px;}
.x82_c00289{left:503.820000px;}
.x78_c00289{left:504.900000px;}
.x9e_c00289{left:505.980000px;}
.x56_c00289{left:509.490000px;}
.xb7_c00289{left:511.920000px;}
.x3b_c00289{left:515.700000px;}
.x3a_c00289{left:517.860000px;}
.x7_c00289{left:519.165000px;}
.x93_c00289{left:520.290000px;}
.x8b_c00289{left:521.370000px;}
.x4a_c00289{left:523.530000px;}
.x70_c00289{left:527.850000px;}
.x79_c00289{left:528.930000px;}
.x83_c00289{left:533.520000px;}
.x3c_c00289{left:537.570000px;}
.x67_c00289{left:538.650000px;}
.x4b_c00289{left:542.160000px;}
.x8c_c00289{left:543.510000px;}
.x13_c00289{left:546.480000px;}
.xb3_c00289{left:547.830000px;}
.x94_c00289{left:549.180000px;}
.x9f_c00289{left:551.070000px;}
.x28_c00289{left:554.851500px;}
.x9b_c00289{left:560.520000px;}
.x68_c00289{left:564.030000px;}
.x7a_c00289{left:566.730000px;}
.x4c_c00289{left:572.940000px;}
.x3d_c00289{left:577.260000px;}
.x84_c00289{left:579.150000px;}
.x71_c00289{left:581.580000px;}
.x14_c00289{left:586.440000px;}
.x1c_c00289{left:594.019500px;}
.x85_c00289{left:597.780000px;}
.x69_c00289{left:603.180000px;}
.x8d_c00289{left:604.260000px;}
.x3e_c00289{left:607.500000px;}
.xa0_c00289{left:617.490000px;}
.x29_c00289{left:623.161500px;}
.xb0_c00289{left:631.530000px;}
.xb1_c00289{left:632.610000px;}
.x95_c00289{left:650.430000px;}
.x86_c00289{left:651.510000px;}
.x7b_c00289{left:657.990000px;}
.x8e_c00289{left:665.550000px;}
.x6a_c00289{left:670.410000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fse_c00289{font-size:41.066667pt;}
.fs8_c00289{font-size:55.066667pt;}
.fs6_c00289{font-size:56.000000pt;}
.fs4_c00289{font-size:56.933333pt;}
.fsd_c00289{font-size:57.866667pt;}
.fsc_c00289{font-size:59.733333pt;}
.fsa_c00289{font-size:60.666667pt;}
.fsb_c00289{font-size:61.600000pt;}
.fs9_c00289{font-size:62.533333pt;}
.fs3_c00289{font-size:63.466667pt;}
.fs5_c00289{font-size:64.400000pt;}
.fs7_c00289{font-size:65.333333pt;}
.fsf_c00289{font-size:67.200000pt;}
.fs2_c00289{font-size:77.466667pt;}
.fs1_c00289{font-size:79.333333pt;}
.fs0_c00289{font-size:203.466667pt;}
.y0_c00289{bottom:0.000000pt;}
.y28_c00289{bottom:169.333333pt;}
.y27_c00289{bottom:193.445333pt;}
.y26_c00289{bottom:259.029333pt;}
.y25_c00289{bottom:283.920000pt;}
.y24_c00289{bottom:308.677333pt;}
.y23_c00289{bottom:328.985333pt;}
.y22_c00289{bottom:348.916000pt;}
.y21_c00289{bottom:369.769333pt;}
.y20_c00289{bottom:389.977333pt;}
.y1f_c00289{bottom:410.133333pt;}
.y1e_c00289{bottom:430.476000pt;}
.y1d_c00289{bottom:451.493333pt;}
.y1c_c00289{bottom:471.105333pt;}
.y1b_c00289{bottom:495.572000pt;}
.y1a_c00289{bottom:515.845333pt;}
.y19_c00289{bottom:536.468000pt;}
.y18_c00289{bottom:556.320000pt;}
.y17_c00289{bottom:580.980000pt;}
.y16_c00289{bottom:600.929333pt;}
.y15_c00289{bottom:625.370667pt;}
.y14_c00289{bottom:650.557333pt;}
.y13_c00289{bottom:670.654667pt;}
.y12_c00289{bottom:694.990667pt;}
.y11_c00289{bottom:716.013333pt;}
.y10_c00289{bottom:717.282667pt;}
.yf_c00289{bottom:717.792000pt;}
.ye_c00289{bottom:718.137333pt;}
.yd_c00289{bottom:718.400000pt;}
.yc_c00289{bottom:719.070667pt;}
.yb_c00289{bottom:719.284000pt;}
.ya_c00289{bottom:719.961333pt;}
.y9_c00289{bottom:720.240000pt;}
.y8_c00289{bottom:740.062667pt;}
.y2_c00289{bottom:767.408000pt;}
.y5_c00289{bottom:767.786667pt;}
.y3_c00289{bottom:769.462667pt;}
.y4_c00289{bottom:775.766667pt;}
.y6_c00289{bottom:778.513333pt;}
.y7_c00289{bottom:786.376000pt;}
.y1_c00289{bottom:805.460000pt;}
.h10_c00289{height:41.066667pt;}
.ha_c00289{height:55.066667pt;}
.h8_c00289{height:56.000000pt;}
.h6_c00289{height:56.933333pt;}
.hf_c00289{height:57.866667pt;}
.he_c00289{height:59.733333pt;}
.hc_c00289{height:60.666667pt;}
.hd_c00289{height:61.600000pt;}
.hb_c00289{height:62.533333pt;}
.h5_c00289{height:63.466667pt;}
.h7_c00289{height:64.400000pt;}
.h9_c00289{height:65.333333pt;}
.h11_c00289{height:67.200000pt;}
.h4_c00289{height:77.466667pt;}
.h3_c00289{height:79.333333pt;}
.h2_c00289{height:203.466667pt;}
.h0_c00289{height:896.400000pt;}
.h1_c00289{height:896.666667pt;}
.w0_c00289{width:618.666667pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:95.280000pt;}
.x3_c00289{left:97.862667pt;}
.x4_c00289{left:135.212000pt;}
.x8_c00289{left:143.280000pt;}
.x72_c00289{left:144.240000pt;}
.xb4_c00289{left:150.000000pt;}
.x32_c00289{left:154.080000pt;}
.x5f_c00289{left:156.720000pt;}
.x21_c00289{left:159.601333pt;}
.xa5_c00289{left:162.960000pt;}
.x3f_c00289{left:164.880000pt;}
.x6b_c00289{left:168.480000pt;}
.x73_c00289{left:172.560000pt;}
.x2d_c00289{left:174.480000pt;}
.x15_c00289{left:175.862667pt;}
.x22_c00289{left:178.081333pt;}
.x33_c00289{left:180.720000pt;}
.x9_c00289{left:182.400000pt;}
.x2a_c00289{left:185.521333pt;}
.x7c_c00289{left:186.720000pt;}
.xb5_c00289{left:187.680000pt;}
.x60_c00289{left:190.800000pt;}
.xa1_c00289{left:192.480000pt;}
.x52_c00289{left:196.560000pt;}
.x16_c00289{left:199.116000pt;}
.x7d_c00289{left:200.400000pt;}
.xa_c00289{left:202.560000pt;}
.x40_c00289{left:203.760000pt;}
.x87_c00289{left:206.160000pt;}
.x57_c00289{left:209.280000pt;}
.x9c_c00289{left:210.240000pt;}
.x34_c00289{left:211.920000pt;}
.x2b_c00289{left:214.561333pt;}
.x23_c00289{left:215.521333pt;}
.x96_c00289{left:217.920000pt;}
.x6c_c00289{left:219.360000pt;}
.xb6_c00289{left:220.560000pt;}
.x1d_c00289{left:222.481333pt;}
.x41_c00289{left:226.560000pt;}
.xaa_c00289{left:227.760000pt;}
.x58_c00289{left:232.560000pt;}
.x7e_c00289{left:234.240000pt;}
.x45_c00289{left:235.200000pt;}
.x61_c00289{left:237.120000pt;}
.x8f_c00289{left:238.800000pt;}
.xa6_c00289{left:240.960000pt;}
.x2c_c00289{left:242.161333pt;}
.x4d_c00289{left:243.840000pt;}
.x2e_c00289{left:245.760000pt;}
.x24_c00289{left:247.441333pt;}
.x5_c00289{left:249.836000pt;}
.x53_c00289{left:250.800000pt;}
.xb_c00289{left:252.240000pt;}
.x7f_c00289{left:253.920000pt;}
.x17_c00289{left:255.508000pt;}
.x2_c00289{left:258.240000pt;}
.x97_c00289{left:260.160000pt;}
.x74_c00289{left:261.360000pt;}
.x2f_c00289{left:262.800000pt;}
.x35_c00289{left:269.520000pt;}
.xa7_c00289{left:271.920000pt;}
.xc_c00289{left:273.840000pt;}
.x59_c00289{left:275.520000pt;}
.x80_c00289{left:277.440000pt;}
.x42_c00289{left:278.400000pt;}
.x36_c00289{left:282.960000pt;}
.x6d_c00289{left:287.760000pt;}
.x4e_c00289{left:288.720000pt;}
.x46_c00289{left:292.800000pt;}
.x75_c00289{left:295.440000pt;}
.xab_c00289{left:296.400000pt;}
.x6e_c00289{left:298.800000pt;}
.x90_c00289{left:302.880000pt;}
.x54_c00289{left:306.240000pt;}
.x6_c00289{left:307.321333pt;}
.x5a_c00289{left:309.600000pt;}
.x37_c00289{left:310.560000pt;}
.x62_c00289{left:311.520000pt;}
.x1e_c00289{left:312.961333pt;}
.xd_c00289{left:313.920000pt;}
.x4f_c00289{left:314.880000pt;}
.x5b_c00289{left:317.280000pt;}
.x76_c00289{left:318.720000pt;}
.x47_c00289{left:321.840000pt;}
.x43_c00289{left:323.040000pt;}
.x25_c00289{left:325.681333pt;}
.x18_c00289{left:329.160000pt;}
.x88_c00289{left:333.120000pt;}
.xa8_c00289{left:334.320000pt;}
.x81_c00289{left:335.760000pt;}
.x98_c00289{left:337.680000pt;}
.x1f_c00289{left:338.881333pt;}
.x63_c00289{left:341.040000pt;}
.x5c_c00289{left:346.080000pt;}
.xac_c00289{left:349.680000pt;}
.x19_c00289{left:351.002667pt;}
.xe_c00289{left:354.720000pt;}
.x89_c00289{left:355.680000pt;}
.x64_c00289{left:356.880000pt;}
.x91_c00289{left:361.200000pt;}
.x77_c00289{left:364.800000pt;}
.x48_c00289{left:367.440000pt;}
.x9d_c00289{left:369.360000pt;}
.x99_c00289{left:370.320000pt;}
.x38_c00289{left:372.960000pt;}
.x30_c00289{left:374.160000pt;}
.x92_c00289{left:376.800000pt;}
.xf_c00289{left:378.000000pt;}
.x1a_c00289{left:379.796000pt;}
.x20_c00289{left:381.841333pt;}
.x5d_c00289{left:383.280000pt;}
.x49_c00289{left:386.880000pt;}
.x26_c00289{left:388.321333pt;}
.xa2_c00289{left:389.760000pt;}
.xa3_c00289{left:391.440000pt;}
.x39_c00289{left:392.640000pt;}
.xa9_c00289{left:394.320000pt;}
.xad_c00289{left:396.480000pt;}
.x9a_c00289{left:398.640000pt;}
.x31_c00289{left:400.320000pt;}
.xa4_c00289{left:402.240000pt;}
.x50_c00289{left:403.200000pt;}
.x65_c00289{left:406.080000pt;}
.x55_c00289{left:407.760000pt;}
.x5e_c00289{left:410.160000pt;}
.xae_c00289{left:414.720000pt;}
.x10_c00289{left:417.360000pt;}
.x1b_c00289{left:422.273333pt;}
.xaf_c00289{left:424.080000pt;}
.x51_c00289{left:425.040000pt;}
.x66_c00289{left:426.240000pt;}
.xb2_c00289{left:428.640000pt;}
.x6f_c00289{left:432.240000pt;}
.x11_c00289{left:433.680000pt;}
.x8a_c00289{left:440.880000pt;}
.x44_c00289{left:443.040000pt;}
.x27_c00289{left:445.681333pt;}
.x12_c00289{left:446.640000pt;}
.x82_c00289{left:447.840000pt;}
.x78_c00289{left:448.800000pt;}
.x9e_c00289{left:449.760000pt;}
.x56_c00289{left:452.880000pt;}
.xb7_c00289{left:455.040000pt;}
.x3b_c00289{left:458.400000pt;}
.x3a_c00289{left:460.320000pt;}
.x7_c00289{left:461.480000pt;}
.x93_c00289{left:462.480000pt;}
.x8b_c00289{left:463.440000pt;}
.x4a_c00289{left:465.360000pt;}
.x70_c00289{left:469.200000pt;}
.x79_c00289{left:470.160000pt;}
.x83_c00289{left:474.240000pt;}
.x3c_c00289{left:477.840000pt;}
.x67_c00289{left:478.800000pt;}
.x4b_c00289{left:481.920000pt;}
.x8c_c00289{left:483.120000pt;}
.x13_c00289{left:485.760000pt;}
.xb3_c00289{left:486.960000pt;}
.x94_c00289{left:488.160000pt;}
.x9f_c00289{left:489.840000pt;}
.x28_c00289{left:493.201333pt;}
.x9b_c00289{left:498.240000pt;}
.x68_c00289{left:501.360000pt;}
.x7a_c00289{left:503.760000pt;}
.x4c_c00289{left:509.280000pt;}
.x3d_c00289{left:513.120000pt;}
.x84_c00289{left:514.800000pt;}
.x71_c00289{left:516.960000pt;}
.x14_c00289{left:521.280000pt;}
.x1c_c00289{left:528.017333pt;}
.x85_c00289{left:531.360000pt;}
.x69_c00289{left:536.160000pt;}
.x8d_c00289{left:537.120000pt;}
.x3e_c00289{left:540.000000pt;}
.xa0_c00289{left:548.880000pt;}
.x29_c00289{left:553.921333pt;}
.xb0_c00289{left:561.360000pt;}
.xb1_c00289{left:562.320000pt;}
.x95_c00289{left:578.160000pt;}
.x86_c00289{left:579.120000pt;}
.x7b_c00289{left:584.880000pt;}
.x8e_c00289{left:591.600000pt;}
.x6a_c00289{left:595.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m96_c00290{transform:matrix(0.011189,-0.000123,0.002750,0.249985,0,0);-ms-transform:matrix(0.011189,-0.000123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.011189,-0.000123,0.002750,0.249985,0,0);}
.m34_c00290{transform:matrix(0.025328,-0.000279,0.002750,0.249985,0,0);-ms-transform:matrix(0.025328,-0.000279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.025328,-0.000279,0.002750,0.249985,0,0);}
.m6e_c00290{transform:matrix(0.049414,-0.000741,0.003750,0.249972,0,0);-ms-transform:matrix(0.049414,-0.000741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.049414,-0.000741,0.003750,0.249972,0,0);}
.m57_c00290{transform:matrix(0.065055,-0.000846,0.003250,0.249979,0,0);-ms-transform:matrix(0.065055,-0.000846,0.003250,0.249979,0,0);-webkit-transform:matrix(0.065055,-0.000846,0.003250,0.249979,0,0);}
.m6f_c00290{transform:matrix(0.089670,-0.001345,0.003750,0.249972,0,0);-ms-transform:matrix(0.089670,-0.001345,0.003750,0.249972,0,0);-webkit-transform:matrix(0.089670,-0.001345,0.003750,0.249972,0,0);}
.m48_c00290{transform:matrix(0.094227,-0.001225,0.003250,0.249979,0,0);-ms-transform:matrix(0.094227,-0.001225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.094227,-0.001225,0.003250,0.249979,0,0);}
.m85_c00290{transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100130,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.109086,-0.001418,0.003250,0.249979,0,0);-ms-transform:matrix(0.109086,-0.001418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.109086,-0.001418,0.003250,0.249979,0,0);}
.m12_c00290{transform:matrix(0.111655,-0.002121,0.004749,0.249955,0,0);-ms-transform:matrix(0.111655,-0.002121,0.004749,0.249955,0,0);-webkit-transform:matrix(0.111655,-0.002121,0.004749,0.249955,0,0);}
.m7c_c00290{transform:matrix(0.112972,-0.001695,0.003750,0.249972,0,0);-ms-transform:matrix(0.112972,-0.001695,0.003750,0.249972,0,0);-webkit-transform:matrix(0.112972,-0.001695,0.003750,0.249972,0,0);}
.mbf_c00290{transform:matrix(0.113752,-0.001365,0.003000,0.249982,0,0);-ms-transform:matrix(0.113752,-0.001365,0.003000,0.249982,0,0);-webkit-transform:matrix(0.113752,-0.001365,0.003000,0.249982,0,0);}
.m1b_c00290{transform:matrix(0.119358,-0.002268,0.004749,0.249955,0,0);-ms-transform:matrix(0.119358,-0.002268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.119358,-0.002268,0.004749,0.249955,0,0);}
.mae_c00290{transform:matrix(0.127297,-0.001400,0.002750,0.249985,0,0);-ms-transform:matrix(0.127297,-0.001400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.127297,-0.001400,0.002750,0.249985,0,0);}
.md2_c00290{transform:matrix(0.128561,-0.001543,0.003000,0.249982,0,0);-ms-transform:matrix(0.128561,-0.001543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.128561,-0.001543,0.003000,0.249982,0,0);}
.m8_c00290{transform:matrix(0.142763,-0.001856,0.003250,0.249979,0,0);-ms-transform:matrix(0.142763,-0.001856,0.003250,0.249979,0,0);-webkit-transform:matrix(0.142763,-0.001856,0.003250,0.249979,0,0);}
.m92_c00290{transform:matrix(0.142846,-0.001571,0.002750,0.249985,0,0);-ms-transform:matrix(0.142846,-0.001571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142846,-0.001571,0.002750,0.249985,0,0);}
.m6a_c00290{transform:matrix(0.149188,-0.002238,0.003750,0.249972,0,0);-ms-transform:matrix(0.149188,-0.002238,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149188,-0.002238,0.003750,0.249972,0,0);}
.mc1_c00290{transform:matrix(0.149739,-0.001797,0.003000,0.249982,0,0);-ms-transform:matrix(0.149739,-0.001797,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149739,-0.001797,0.003000,0.249982,0,0);}
.m68_c00290{transform:matrix(0.149977,-0.001950,0.003250,0.249979,0,0);-ms-transform:matrix(0.149977,-0.001950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149977,-0.001950,0.003250,0.249979,0,0);}
.m25_c00290{transform:matrix(0.150806,-0.001659,0.002750,0.249985,0,0);-ms-transform:matrix(0.150806,-0.001659,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150806,-0.001659,0.002750,0.249985,0,0);}
.mb7_c00290{transform:matrix(0.154369,-0.001852,0.003000,0.249982,0,0);-ms-transform:matrix(0.154369,-0.001852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154369,-0.001852,0.003000,0.249982,0,0);}
.mc2_c00290{transform:matrix(0.155924,-0.001871,0.003000,0.249982,0,0);-ms-transform:matrix(0.155924,-0.001871,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155924,-0.001871,0.003000,0.249982,0,0);}
.m10_c00290{transform:matrix(0.157152,-0.002986,0.004749,0.249955,0,0);-ms-transform:matrix(0.157152,-0.002986,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157152,-0.002986,0.004749,0.249955,0,0);}
.m1f_c00290{transform:matrix(0.157852,-0.002999,0.004749,0.249955,0,0);-ms-transform:matrix(0.157852,-0.002999,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157852,-0.002999,0.004749,0.249955,0,0);}
.mce_c00290{transform:matrix(0.158719,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158719,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158719,-0.001905,0.003000,0.249982,0,0);}
.m5d_c00290{transform:matrix(0.159846,-0.002078,0.003250,0.249979,0,0);-ms-transform:matrix(0.159846,-0.002078,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159846,-0.002078,0.003250,0.249979,0,0);}
.m9f_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);}
.m61_c00290{transform:matrix(0.160336,-0.002084,0.003250,0.249979,0,0);-ms-transform:matrix(0.160336,-0.002084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160336,-0.002084,0.003250,0.249979,0,0);}
.m23_c00290{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);}
.mbc_c00290{transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);-ms-transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);}
.mca_c00290{transform:matrix(0.163278,-0.001959,0.003000,0.249982,0,0);-ms-transform:matrix(0.163278,-0.001959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163278,-0.001959,0.003000,0.249982,0,0);}
.m59_c00290{transform:matrix(0.163561,-0.002126,0.003250,0.249979,0,0);-ms-transform:matrix(0.163561,-0.002126,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163561,-0.002126,0.003250,0.249979,0,0);}
.m5a_c00290{transform:matrix(0.163691,-0.002128,0.003250,0.249979,0,0);-ms-transform:matrix(0.163691,-0.002128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163691,-0.002128,0.003250,0.249979,0,0);}
.m51_c00290{transform:matrix(0.166011,-0.002158,0.003250,0.249979,0,0);-ms-transform:matrix(0.166011,-0.002158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166011,-0.002158,0.003250,0.249979,0,0);}
.mb0_c00290{transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);-ms-transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166230,-0.001829,0.002750,0.249985,0,0);}
.mf_c00290{transform:matrix(0.167785,-0.003188,0.004749,0.249955,0,0);-ms-transform:matrix(0.167785,-0.003188,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167785,-0.003188,0.004749,0.249955,0,0);}
.m6c_c00290{transform:matrix(0.168521,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168521,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168521,-0.002528,0.003750,0.249972,0,0);}
.m75_c00290{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);}
.m5b_c00290{transform:matrix(0.169576,-0.002204,0.003250,0.249979,0,0);-ms-transform:matrix(0.169576,-0.002204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169576,-0.002204,0.003250,0.249979,0,0);}
.m58_c00290{transform:matrix(0.170681,-0.002219,0.003250,0.249979,0,0);-ms-transform:matrix(0.170681,-0.002219,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170681,-0.002219,0.003250,0.249979,0,0);}
.m72_c00290{transform:matrix(0.171806,-0.002577,0.003750,0.249972,0,0);-ms-transform:matrix(0.171806,-0.002577,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171806,-0.002577,0.003750,0.249972,0,0);}
.m73_c00290{transform:matrix(0.172211,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172211,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172211,-0.002583,0.003750,0.249972,0,0);}
.m38_c00290{transform:matrix(0.172493,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172493,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172493,-0.002070,0.003000,0.249982,0,0);}
.m82_c00290{transform:matrix(0.172666,-0.002590,0.003750,0.249972,0,0);-ms-transform:matrix(0.172666,-0.002590,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172666,-0.002590,0.003750,0.249972,0,0);}
.m2_c00290{transform:matrix(0.173675,-0.002258,0.003250,0.249979,0,0);-ms-transform:matrix(0.173675,-0.002258,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173675,-0.002258,0.003250,0.249979,0,0);}
.m6d_c00290{transform:matrix(0.173735,-0.002606,0.003750,0.249972,0,0);-ms-transform:matrix(0.173735,-0.002606,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173735,-0.002606,0.003750,0.249972,0,0);}
.m60_c00290{transform:matrix(0.174165,-0.002264,0.003250,0.249979,0,0);-ms-transform:matrix(0.174165,-0.002264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174165,-0.002264,0.003250,0.249979,0,0);}
.mc9_c00290{transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);}
.m4c_c00290{transform:matrix(0.175250,-0.002278,0.003250,0.249979,0,0);-ms-transform:matrix(0.175250,-0.002278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175250,-0.002278,0.003250,0.249979,0,0);}
.mc6_c00290{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);}
.md8_c00290{transform:matrix(0.178127,-0.002138,0.003000,0.249982,0,0);-ms-transform:matrix(0.178127,-0.002138,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178127,-0.002138,0.003000,0.249982,0,0);}
.md0_c00290{transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);-ms-transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);}
.md_c00290{transform:matrix(0.179298,-0.003407,0.004749,0.249955,0,0);-ms-transform:matrix(0.179298,-0.003407,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179298,-0.003407,0.004749,0.249955,0,0);}
.m31_c00290{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);}
.m5c_c00290{transform:matrix(0.180340,-0.002344,0.003250,0.249979,0,0);-ms-transform:matrix(0.180340,-0.002344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180340,-0.002344,0.003250,0.249979,0,0);}
.m4d_c00290{transform:matrix(0.180390,-0.002345,0.003250,0.249979,0,0);-ms-transform:matrix(0.180390,-0.002345,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180390,-0.002345,0.003250,0.249979,0,0);}
.m3a_c00290{transform:matrix(0.180852,-0.002170,0.003000,0.249982,0,0);-ms-transform:matrix(0.180852,-0.002170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180852,-0.002170,0.003000,0.249982,0,0);}
.m29_c00290{transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);-ms-transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);}
.m22_c00290{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);}
.mc4_c00290{transform:matrix(0.184157,-0.002210,0.003000,0.249982,0,0);-ms-transform:matrix(0.184157,-0.002210,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184157,-0.002210,0.003000,0.249982,0,0);}
.mb1_c00290{transform:matrix(0.185104,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185104,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185104,-0.002036,0.002750,0.249985,0,0);}
.m3d_c00290{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);}
.m99_c00290{transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);-ms-transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);}
.m2b_c00290{transform:matrix(0.188979,-0.002079,0.002750,0.249985,0,0);-ms-transform:matrix(0.188979,-0.002079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188979,-0.002079,0.002750,0.249985,0,0);}
.m9a_c00290{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);}
.m45_c00290{transform:matrix(0.189824,-0.002468,0.003250,0.249979,0,0);-ms-transform:matrix(0.189824,-0.002468,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189824,-0.002468,0.003250,0.249979,0,0);}
.m6b_c00290{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);}
.m3c_c00290{transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);}
.m87_c00290{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);}
.m4f_c00290{transform:matrix(0.191344,-0.002487,0.003250,0.249979,0,0);-ms-transform:matrix(0.191344,-0.002487,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191344,-0.002487,0.003250,0.249979,0,0);}
.m95_c00290{transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);}
.m26_c00290{transform:matrix(0.192168,-0.002114,0.002750,0.249985,0,0);-ms-transform:matrix(0.192168,-0.002114,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192168,-0.002114,0.002750,0.249985,0,0);}
.m42_c00290{transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);}
.mc3_c00290{transform:matrix(0.194356,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194356,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194356,-0.002332,0.003000,0.249982,0,0);}
.m50_c00290{transform:matrix(0.195174,-0.002537,0.003250,0.249979,0,0);-ms-transform:matrix(0.195174,-0.002537,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195174,-0.002537,0.003250,0.249979,0,0);}
.m66_c00290{transform:matrix(0.195563,-0.002542,0.003250,0.249979,0,0);-ms-transform:matrix(0.195563,-0.002542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195563,-0.002542,0.003250,0.249979,0,0);}
.m74_c00290{transform:matrix(0.195658,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195658,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195658,-0.002935,0.003750,0.249972,0,0);}
.mb_c00290{transform:matrix(0.195925,-0.003723,0.004749,0.249955,0,0);-ms-transform:matrix(0.195925,-0.003723,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195925,-0.003723,0.004749,0.249955,0,0);}
.m44_c00290{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);}
.ma_c00290{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);}
.m5e_c00290{transform:matrix(0.197898,-0.002573,0.003250,0.249979,0,0);-ms-transform:matrix(0.197898,-0.002573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197898,-0.002573,0.003250,0.249979,0,0);}
.m36_c00290{transform:matrix(0.198316,-0.002380,0.003000,0.249982,0,0);-ms-transform:matrix(0.198316,-0.002380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198316,-0.002380,0.003000,0.249982,0,0);}
.m3e_c00290{transform:matrix(0.198611,-0.002383,0.003000,0.249982,0,0);-ms-transform:matrix(0.198611,-0.002383,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198611,-0.002383,0.003000,0.249982,0,0);}
.m9d_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);}
.mb4_c00290{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);}
.m3b_c00290{transform:matrix(0.200241,-0.002403,0.003000,0.249982,0,0);-ms-transform:matrix(0.200241,-0.002403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200241,-0.002403,0.003000,0.249982,0,0);}
.md4_c00290{transform:matrix(0.200431,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200431,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200431,-0.002405,0.003000,0.249982,0,0);}
.m11_c00290{transform:matrix(0.201914,-0.003836,0.004749,0.249955,0,0);-ms-transform:matrix(0.201914,-0.003836,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201914,-0.003836,0.004749,0.249955,0,0);}
.me_c00290{transform:matrix(0.202688,-0.003851,0.004749,0.249955,0,0);-ms-transform:matrix(0.202688,-0.003851,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202688,-0.003851,0.004749,0.249955,0,0);}
.m27_c00290{transform:matrix(0.203613,-0.002240,0.002750,0.249985,0,0);-ms-transform:matrix(0.203613,-0.002240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203613,-0.002240,0.002750,0.249985,0,0);}
.m40_c00290{transform:matrix(0.204048,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204048,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204048,-0.002653,0.003250,0.249979,0,0);}
.m1d_c00290{transform:matrix(0.205268,-0.003900,0.004749,0.249955,0,0);-ms-transform:matrix(0.205268,-0.003900,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205268,-0.003900,0.004749,0.249955,0,0);}
.m52_c00290{transform:matrix(0.205278,-0.002669,0.003250,0.249979,0,0);-ms-transform:matrix(0.205278,-0.002669,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205278,-0.002669,0.003250,0.249979,0,0);}
.m98_c00290{transform:matrix(0.206992,-0.002277,0.002750,0.249985,0,0);-ms-transform:matrix(0.206992,-0.002277,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206992,-0.002277,0.002750,0.249985,0,0);}
.m62_c00290{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);}
.m4a_c00290{transform:matrix(0.208097,-0.002705,0.003250,0.249979,0,0);-ms-transform:matrix(0.208097,-0.002705,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208097,-0.002705,0.003250,0.249979,0,0);}
.m2e_c00290{transform:matrix(0.208767,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208767,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208767,-0.002296,0.002750,0.249985,0,0);}
.m70_c00290{transform:matrix(0.209186,-0.003138,0.003750,0.249972,0,0);-ms-transform:matrix(0.209186,-0.003138,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209186,-0.003138,0.003750,0.249972,0,0);}
.m71_c00290{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);}
.m13_c00290{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);}
.m15_c00290{transform:matrix(0.210752,-0.004004,0.004749,0.249955,0,0);-ms-transform:matrix(0.210752,-0.004004,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210752,-0.004004,0.004749,0.249955,0,0);}
.m7_c00290{transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212057,-0.002757,0.003250,0.249979,0,0);}
.m1e_c00290{transform:matrix(0.212282,-0.004033,0.004749,0.249955,0,0);-ms-transform:matrix(0.212282,-0.004033,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212282,-0.004033,0.004749,0.249955,0,0);}
.m91_c00290{transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);-ms-transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);}
.m47_c00290{transform:matrix(0.212497,-0.002762,0.003250,0.249979,0,0);-ms-transform:matrix(0.212497,-0.002762,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212497,-0.002762,0.003250,0.249979,0,0);}
.md7_c00290{transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);-ms-transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);}
.mbe_c00290{transform:matrix(0.214155,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214155,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214155,-0.002570,0.003000,0.249982,0,0);}
.mc5_c00290{transform:matrix(0.216919,-0.002603,0.003000,0.249982,0,0);-ms-transform:matrix(0.216919,-0.002603,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216919,-0.002603,0.003000,0.249982,0,0);}
.ma2_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);}
.m9e_c00290{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);}
.m39_c00290{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);}
.m9b_c00290{transform:matrix(0.219967,-0.002420,0.002750,0.249985,0,0);-ms-transform:matrix(0.219967,-0.002420,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219967,-0.002420,0.002750,0.249985,0,0);}
.mc8_c00290{transform:matrix(0.222449,-0.002669,0.003000,0.249982,0,0);-ms-transform:matrix(0.222449,-0.002669,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222449,-0.002669,0.003000,0.249982,0,0);}
.mc_c00290{transform:matrix(0.222945,-0.004236,0.004749,0.249955,0,0);-ms-transform:matrix(0.222945,-0.004236,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222945,-0.004236,0.004749,0.249955,0,0);}
.m14_c00290{transform:matrix(0.223030,-0.004238,0.004749,0.249955,0,0);-ms-transform:matrix(0.223030,-0.004238,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223030,-0.004238,0.004749,0.249955,0,0);}
.m63_c00290{transform:matrix(0.223191,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223191,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223191,-0.002901,0.003250,0.249979,0,0);}
.md1_c00290{transform:matrix(0.223739,-0.002685,0.003000,0.249982,0,0);-ms-transform:matrix(0.223739,-0.002685,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223739,-0.002685,0.003000,0.249982,0,0);}
.m7d_c00290{transform:matrix(0.224075,-0.003361,0.003750,0.249972,0,0);-ms-transform:matrix(0.224075,-0.003361,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224075,-0.003361,0.003750,0.249972,0,0);}
.mda_c00290{transform:matrix(0.225164,-0.002702,0.003000,0.249982,0,0);-ms-transform:matrix(0.225164,-0.002702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225164,-0.002702,0.003000,0.249982,0,0);}
.md5_c00290{transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);}
.m1c_c00290{transform:matrix(0.226494,-0.004303,0.004749,0.249955,0,0);-ms-transform:matrix(0.226494,-0.004303,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226494,-0.004303,0.004749,0.249955,0,0);}
.m37_c00290{transform:matrix(0.227159,-0.002726,0.003000,0.249982,0,0);-ms-transform:matrix(0.227159,-0.002726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227159,-0.002726,0.003000,0.249982,0,0);}
.m30_c00290{transform:matrix(0.228241,-0.002511,0.002750,0.249985,0,0);-ms-transform:matrix(0.228241,-0.002511,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228241,-0.002511,0.002750,0.249985,0,0);}
.ma1_c00290{transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,-0.002521,0.002750,0.249985,0,0);}
.m67_c00290{transform:matrix(0.229221,-0.002980,0.003250,0.249979,0,0);-ms-transform:matrix(0.229221,-0.002980,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229221,-0.002980,0.003250,0.249979,0,0);}
.m7f_c00290{transform:matrix(0.229454,-0.003442,0.003750,0.249972,0,0);-ms-transform:matrix(0.229454,-0.003442,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229454,-0.003442,0.003750,0.249972,0,0);}
.m21_c00290{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);}
.md9_c00290{transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);-ms-transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);}
.m6_c00290{transform:matrix(0.232325,-0.003020,0.003250,0.249979,0,0);-ms-transform:matrix(0.232325,-0.003020,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232325,-0.003020,0.003250,0.249979,0,0);}
.mcd_c00290{transform:matrix(0.232468,-0.002790,0.003000,0.249982,0,0);-ms-transform:matrix(0.232468,-0.002790,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232468,-0.002790,0.003000,0.249982,0,0);}
.m17_c00290{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);}
.m2c_c00290{transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);-ms-transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235056,-0.002586,0.002750,0.249985,0,0);}
.m90_c00290{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);}
.m9c_c00290{transform:matrix(0.235561,-0.002591,0.002750,0.249985,0,0);-ms-transform:matrix(0.235561,-0.002591,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235561,-0.002591,0.002750,0.249985,0,0);}
.m8e_c00290{transform:matrix(0.236046,-0.002597,0.002750,0.249985,0,0);-ms-transform:matrix(0.236046,-0.002597,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236046,-0.002597,0.002750,0.249985,0,0);}
.m93_c00290{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);}
.m76_c00290{transform:matrix(0.236703,-0.003551,0.003750,0.249972,0,0);-ms-transform:matrix(0.236703,-0.003551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236703,-0.003551,0.003750,0.249972,0,0);}
.m97_c00290{transform:matrix(0.237321,-0.002611,0.002750,0.249985,0,0);-ms-transform:matrix(0.237321,-0.002611,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237321,-0.002611,0.002750,0.249985,0,0);}
.maa_c00290{transform:matrix(0.238046,-0.002619,0.002750,0.249985,0,0);-ms-transform:matrix(0.238046,-0.002619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238046,-0.002619,0.002750,0.249985,0,0);}
.m2a_c00290{transform:matrix(0.238491,-0.002623,0.002750,0.249985,0,0);-ms-transform:matrix(0.238491,-0.002623,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238491,-0.002623,0.002750,0.249985,0,0);}
.ma3_c00290{transform:matrix(0.238511,-0.002624,0.002750,0.249985,0,0);-ms-transform:matrix(0.238511,-0.002624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238511,-0.002624,0.002750,0.249985,0,0);}
.m20_c00290{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);}
.mbb_c00290{transform:matrix(0.238983,-0.002868,0.003000,0.249982,0,0);-ms-transform:matrix(0.238983,-0.002868,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238983,-0.002868,0.003000,0.249982,0,0);}
.m8b_c00290{transform:matrix(0.239076,-0.002630,0.002750,0.249985,0,0);-ms-transform:matrix(0.239076,-0.002630,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239076,-0.002630,0.002750,0.249985,0,0);}
.m43_c00290{transform:matrix(0.239760,-0.003117,0.003250,0.249979,0,0);-ms-transform:matrix(0.239760,-0.003117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239760,-0.003117,0.003250,0.249979,0,0);}
.m33_c00290{transform:matrix(0.239885,-0.002639,0.002750,0.249985,0,0);-ms-transform:matrix(0.239885,-0.002639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239885,-0.002639,0.002750,0.249985,0,0);}
.m65_c00290{transform:matrix(0.243364,-0.003164,0.003250,0.249979,0,0);-ms-transform:matrix(0.243364,-0.003164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243364,-0.003164,0.003250,0.249979,0,0);}
.m28_c00290{transform:matrix(0.244215,-0.002686,0.002750,0.249985,0,0);-ms-transform:matrix(0.244215,-0.002686,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244215,-0.002686,0.002750,0.249985,0,0);}
.m49_c00290{transform:matrix(0.244579,-0.003180,0.003250,0.249979,0,0);-ms-transform:matrix(0.244579,-0.003180,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244579,-0.003180,0.003250,0.249979,0,0);}
.m16_c00290{transform:matrix(0.245086,-0.004657,0.004749,0.249955,0,0);-ms-transform:matrix(0.245086,-0.004657,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245086,-0.004657,0.004749,0.249955,0,0);}
.m8f_c00290{transform:matrix(0.245920,-0.002705,0.002750,0.249985,0,0);-ms-transform:matrix(0.245920,-0.002705,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245920,-0.002705,0.002750,0.249985,0,0);}
.m8c_c00290{transform:matrix(0.246175,-0.002708,0.002750,0.249985,0,0);-ms-transform:matrix(0.246175,-0.002708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246175,-0.002708,0.002750,0.249985,0,0);}
.mc0_c00290{transform:matrix(0.247202,-0.002966,0.003000,0.249982,0,0);-ms-transform:matrix(0.247202,-0.002966,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247202,-0.002966,0.003000,0.249982,0,0);}
.m24_c00290{transform:matrix(0.247250,-0.002720,0.002750,0.249985,0,0);-ms-transform:matrix(0.247250,-0.002720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247250,-0.002720,0.002750,0.249985,0,0);}
.m84_c00290{transform:matrix(0.247927,-0.003719,0.003750,0.249972,0,0);-ms-transform:matrix(0.247927,-0.003719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247927,-0.003719,0.003750,0.249972,0,0);}
.mc7_c00290{transform:matrix(0.247977,-0.002976,0.003000,0.249982,0,0);-ms-transform:matrix(0.247977,-0.002976,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247977,-0.002976,0.003000,0.249982,0,0);}
.m32_c00290{transform:matrix(0.251755,-0.002769,0.002750,0.249985,0,0);-ms-transform:matrix(0.251755,-0.002769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251755,-0.002769,0.002750,0.249985,0,0);}
.maf_c00290{transform:matrix(0.251770,-0.002769,0.002750,0.249985,0,0);-ms-transform:matrix(0.251770,-0.002769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251770,-0.002769,0.002750,0.249985,0,0);}
.ma6_c00290{transform:matrix(0.252035,-0.002772,0.002750,0.249985,0,0);-ms-transform:matrix(0.252035,-0.002772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252035,-0.002772,0.002750,0.249985,0,0);}
.m81_c00290{transform:matrix(0.255036,-0.003826,0.003750,0.249972,0,0);-ms-transform:matrix(0.255036,-0.003826,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255036,-0.003826,0.003750,0.249972,0,0);}
.m78_c00290{transform:matrix(0.255576,-0.003834,0.003750,0.249972,0,0);-ms-transform:matrix(0.255576,-0.003834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255576,-0.003834,0.003750,0.249972,0,0);}
.md6_c00290{transform:matrix(0.256442,-0.003077,0.003000,0.249982,0,0);-ms-transform:matrix(0.256442,-0.003077,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256442,-0.003077,0.003000,0.249982,0,0);}
.ma5_c00290{transform:matrix(0.257979,-0.002838,0.002750,0.249985,0,0);-ms-transform:matrix(0.257979,-0.002838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257979,-0.002838,0.002750,0.249985,0,0);}
.mac_c00290{transform:matrix(0.261174,-0.002873,0.002750,0.249985,0,0);-ms-transform:matrix(0.261174,-0.002873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261174,-0.002873,0.002750,0.249985,0,0);}
.m83_c00290{transform:matrix(0.268560,-0.004028,0.003750,0.249972,0,0);-ms-transform:matrix(0.268560,-0.004028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268560,-0.004028,0.003750,0.249972,0,0);}
.m1a_c00290{transform:matrix(0.272366,-0.005175,0.004749,0.249955,0,0);-ms-transform:matrix(0.272366,-0.005175,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272366,-0.005175,0.004749,0.249955,0,0);}
.ma0_c00290{transform:matrix(0.272464,-0.002997,0.002750,0.249985,0,0);-ms-transform:matrix(0.272464,-0.002997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272464,-0.002997,0.002750,0.249985,0,0);}
.m5_c00290{transform:matrix(0.274247,-0.003565,0.003250,0.249979,0,0);-ms-transform:matrix(0.274247,-0.003565,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274247,-0.003565,0.003250,0.249979,0,0);}
.m5f_c00290{transform:matrix(0.280491,-0.003646,0.003250,0.249979,0,0);-ms-transform:matrix(0.280491,-0.003646,0.003250,0.249979,0,0);-webkit-transform:matrix(0.280491,-0.003646,0.003250,0.249979,0,0);}
.mad_c00290{transform:matrix(0.280933,-0.003090,0.002750,0.249985,0,0);-ms-transform:matrix(0.280933,-0.003090,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280933,-0.003090,0.002750,0.249985,0,0);}
.m8d_c00290{transform:matrix(0.283148,-0.003115,0.002750,0.249985,0,0);-ms-transform:matrix(0.283148,-0.003115,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283148,-0.003115,0.002750,0.249985,0,0);}
.m2f_c00290{transform:matrix(0.284438,-0.003129,0.002750,0.249985,0,0);-ms-transform:matrix(0.284438,-0.003129,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284438,-0.003129,0.002750,0.249985,0,0);}
.m79_c00290{transform:matrix(0.287628,-0.004314,0.003750,0.249972,0,0);-ms-transform:matrix(0.287628,-0.004314,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287628,-0.004314,0.003750,0.249972,0,0);}
.m3f_c00290{transform:matrix(0.287771,-0.003741,0.003250,0.249979,0,0);-ms-transform:matrix(0.287771,-0.003741,0.003250,0.249979,0,0);-webkit-transform:matrix(0.287771,-0.003741,0.003250,0.249979,0,0);}
.mcc_c00290{transform:matrix(0.287799,-0.003454,0.003000,0.249982,0,0);-ms-transform:matrix(0.287799,-0.003454,0.003000,0.249982,0,0);-webkit-transform:matrix(0.287799,-0.003454,0.003000,0.249982,0,0);}
.m41_c00290{transform:matrix(0.288391,-0.003749,0.003250,0.249979,0,0);-ms-transform:matrix(0.288391,-0.003749,0.003250,0.249979,0,0);-webkit-transform:matrix(0.288391,-0.003749,0.003250,0.249979,0,0);}
.m2d_c00290{transform:matrix(0.294552,-0.003240,0.002750,0.249985,0,0);-ms-transform:matrix(0.294552,-0.003240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294552,-0.003240,0.002750,0.249985,0,0);}
.m4b_c00290{transform:matrix(0.301570,-0.003920,0.003250,0.249979,0,0);-ms-transform:matrix(0.301570,-0.003920,0.003250,0.249979,0,0);-webkit-transform:matrix(0.301570,-0.003920,0.003250,0.249979,0,0);}
.mb5_c00290{transform:matrix(0.301768,-0.003621,0.003000,0.249982,0,0);-ms-transform:matrix(0.301768,-0.003621,0.003000,0.249982,0,0);-webkit-transform:matrix(0.301768,-0.003621,0.003000,0.249982,0,0);}
.m86_c00290{transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302220,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.307674,-0.005846,0.004749,0.249955,0,0);-ms-transform:matrix(0.307674,-0.005846,0.004749,0.249955,0,0);-webkit-transform:matrix(0.307674,-0.005846,0.004749,0.249955,0,0);}
.ma8_c00290{transform:matrix(0.312361,-0.003436,0.002750,0.249985,0,0);-ms-transform:matrix(0.312361,-0.003436,0.002750,0.249985,0,0);-webkit-transform:matrix(0.312361,-0.003436,0.002750,0.249985,0,0);}
.m94_c00290{transform:matrix(0.314051,-0.003455,0.002750,0.249985,0,0);-ms-transform:matrix(0.314051,-0.003455,0.002750,0.249985,0,0);-webkit-transform:matrix(0.314051,-0.003455,0.002750,0.249985,0,0);}
.mb8_c00290{transform:matrix(0.323872,-0.003886,0.003000,0.249982,0,0);-ms-transform:matrix(0.323872,-0.003886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.323872,-0.003886,0.003000,0.249982,0,0);}
.m19_c00290{transform:matrix(0.329815,-0.006266,0.004749,0.249955,0,0);-ms-transform:matrix(0.329815,-0.006266,0.004749,0.249955,0,0);-webkit-transform:matrix(0.329815,-0.006266,0.004749,0.249955,0,0);}
.m9_c00290{transform:matrix(0.335262,-0.004358,0.003250,0.249979,0,0);-ms-transform:matrix(0.335262,-0.004358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.335262,-0.004358,0.003250,0.249979,0,0);}
.m55_c00290{transform:matrix(0.336637,-0.004376,0.003250,0.249979,0,0);-ms-transform:matrix(0.336637,-0.004376,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336637,-0.004376,0.003250,0.249979,0,0);}
.m89_c00290{transform:matrix(0.336705,-0.003704,0.002750,0.249985,0,0);-ms-transform:matrix(0.336705,-0.003704,0.002750,0.249985,0,0);-webkit-transform:matrix(0.336705,-0.003704,0.002750,0.249985,0,0);}
.mb9_c00290{transform:matrix(0.343360,-0.004120,0.003000,0.249982,0,0);-ms-transform:matrix(0.343360,-0.004120,0.003000,0.249982,0,0);-webkit-transform:matrix(0.343360,-0.004120,0.003000,0.249982,0,0);}
.md3_c00290{transform:matrix(0.343420,-0.004121,0.003000,0.249982,0,0);-ms-transform:matrix(0.343420,-0.004121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.343420,-0.004121,0.003000,0.249982,0,0);}
.m64_c00290{transform:matrix(0.345936,-0.004497,0.003250,0.249979,0,0);-ms-transform:matrix(0.345936,-0.004497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.345936,-0.004497,0.003250,0.249979,0,0);}
.m69_c00290{transform:matrix(0.350601,-0.005259,0.003750,0.249972,0,0);-ms-transform:matrix(0.350601,-0.005259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.350601,-0.005259,0.003750,0.249972,0,0);}
.mba_c00290{transform:matrix(0.351560,-0.004219,0.003000,0.249982,0,0);-ms-transform:matrix(0.351560,-0.004219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.351560,-0.004219,0.003000,0.249982,0,0);}
.m77_c00290{transform:matrix(0.355615,-0.005334,0.003750,0.249972,0,0);-ms-transform:matrix(0.355615,-0.005334,0.003750,0.249972,0,0);-webkit-transform:matrix(0.355615,-0.005334,0.003750,0.249972,0,0);}
.m54_c00290{transform:matrix(0.355720,-0.004624,0.003250,0.249979,0,0);-ms-transform:matrix(0.355720,-0.004624,0.003250,0.249979,0,0);-webkit-transform:matrix(0.355720,-0.004624,0.003250,0.249979,0,0);}
.mcb_c00290{transform:matrix(0.362334,-0.004348,0.003000,0.249982,0,0);-ms-transform:matrix(0.362334,-0.004348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.362334,-0.004348,0.003000,0.249982,0,0);}
.mbd_c00290{transform:matrix(0.376918,-0.004523,0.003000,0.249982,0,0);-ms-transform:matrix(0.376918,-0.004523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.376918,-0.004523,0.003000,0.249982,0,0);}
.m80_c00290{transform:matrix(0.390506,-0.005858,0.003750,0.249972,0,0);-ms-transform:matrix(0.390506,-0.005858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.390506,-0.005858,0.003750,0.249972,0,0);}
.mab_c00290{transform:matrix(0.395801,-0.004354,0.002750,0.249985,0,0);-ms-transform:matrix(0.395801,-0.004354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.395801,-0.004354,0.002750,0.249985,0,0);}
.mcf_c00290{transform:matrix(0.411000,-0.004932,0.003000,0.249982,0,0);-ms-transform:matrix(0.411000,-0.004932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.411000,-0.004932,0.003000,0.249982,0,0);}
.mb3_c00290{transform:matrix(0.419080,-0.005029,0.003000,0.249982,0,0);-ms-transform:matrix(0.419080,-0.005029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.419080,-0.005029,0.003000,0.249982,0,0);}
.mb2_c00290{transform:matrix(0.425914,-0.005111,0.003000,0.249982,0,0);-ms-transform:matrix(0.425914,-0.005111,0.003000,0.249982,0,0);-webkit-transform:matrix(0.425914,-0.005111,0.003000,0.249982,0,0);}
.ma9_c00290{transform:matrix(0.427529,-0.004703,0.002750,0.249985,0,0);-ms-transform:matrix(0.427529,-0.004703,0.002750,0.249985,0,0);-webkit-transform:matrix(0.427529,-0.004703,0.002750,0.249985,0,0);}
.m4e_c00290{transform:matrix(0.430909,-0.005602,0.003250,0.249979,0,0);-ms-transform:matrix(0.430909,-0.005602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.430909,-0.005602,0.003250,0.249979,0,0);}
.m3_c00290{transform:matrix(0.436278,-0.005672,0.003250,0.249979,0,0);-ms-transform:matrix(0.436278,-0.005672,0.003250,0.249979,0,0);-webkit-transform:matrix(0.436278,-0.005672,0.003250,0.249979,0,0);}
.m88_c00290{transform:matrix(0.436405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436405,0.000000,0.000000,0.250000,0,0);}
.m7b_c00290{transform:matrix(0.437366,-0.006560,0.003750,0.249972,0,0);-ms-transform:matrix(0.437366,-0.006560,0.003750,0.249972,0,0);-webkit-transform:matrix(0.437366,-0.006560,0.003750,0.249972,0,0);}
.m7a_c00290{transform:matrix(0.452319,-0.006785,0.003750,0.249972,0,0);-ms-transform:matrix(0.452319,-0.006785,0.003750,0.249972,0,0);-webkit-transform:matrix(0.452319,-0.006785,0.003750,0.249972,0,0);}
.ma7_c00290{transform:matrix(0.453268,-0.004986,0.002750,0.249985,0,0);-ms-transform:matrix(0.453268,-0.004986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.453268,-0.004986,0.002750,0.249985,0,0);}
.m46_c00290{transform:matrix(0.459271,-0.005971,0.003250,0.249979,0,0);-ms-transform:matrix(0.459271,-0.005971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.459271,-0.005971,0.003250,0.249979,0,0);}
.ma4_c00290{transform:matrix(0.476721,-0.005244,0.002750,0.249985,0,0);-ms-transform:matrix(0.476721,-0.005244,0.002750,0.249985,0,0);-webkit-transform:matrix(0.476721,-0.005244,0.002750,0.249985,0,0);}
.m8a_c00290{transform:matrix(0.528333,-0.005812,0.002750,0.249985,0,0);-ms-transform:matrix(0.528333,-0.005812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.528333,-0.005812,0.002750,0.249985,0,0);}
.m53_c00290{transform:matrix(0.529365,-0.006882,0.003250,0.249979,0,0);-ms-transform:matrix(0.529365,-0.006882,0.003250,0.249979,0,0);-webkit-transform:matrix(0.529365,-0.006882,0.003250,0.249979,0,0);}
.m7e_c00290{transform:matrix(0.540024,-0.008100,0.003750,0.249972,0,0);-ms-transform:matrix(0.540024,-0.008100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.540024,-0.008100,0.003750,0.249972,0,0);}
.m35_c00290{transform:matrix(0.541341,-0.006496,0.003000,0.249982,0,0);-ms-transform:matrix(0.541341,-0.006496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.541341,-0.006496,0.003000,0.249982,0,0);}
.m1_c00290{transform:matrix(0.546314,-0.007102,0.003250,0.249979,0,0);-ms-transform:matrix(0.546314,-0.007102,0.003250,0.249979,0,0);-webkit-transform:matrix(0.546314,-0.007102,0.003250,0.249979,0,0);}
.m4_c00290{transform:matrix(0.591530,-0.007690,0.003250,0.249979,0,0);-ms-transform:matrix(0.591530,-0.007690,0.003250,0.249979,0,0);-webkit-transform:matrix(0.591530,-0.007690,0.003250,0.249979,0,0);}
.m56_c00290{transform:matrix(0.597090,-0.007762,0.003250,0.249979,0,0);-ms-transform:matrix(0.597090,-0.007762,0.003250,0.249979,0,0);-webkit-transform:matrix(0.597090,-0.007762,0.003250,0.249979,0,0);}
.mb6_c00290{transform:matrix(0.664497,-0.007974,0.003000,0.249982,0,0);-ms-transform:matrix(0.664497,-0.007974,0.003000,0.249982,0,0);-webkit-transform:matrix(0.664497,-0.007974,0.003000,0.249982,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;}
.fs3_c00290{font-size:64.061560px;}
.fsf_c00290{font-size:66.154002px;}
.fs8_c00290{font-size:66.154763px;}
.fs5_c00290{font-size:67.200000px;}
.fs7_c00290{font-size:68.254129px;}
.fs4_c00290{font-size:68.262318px;}
.fs9_c00290{font-size:69.305856px;}
.fsd_c00290{font-size:69.307796px;}
.fs10_c00290{font-size:70.355065px;}
.fs6_c00290{font-size:71.404320px;}
.fs11_c00290{font-size:71.405141px;}
.fsa_c00290{font-size:71.406033px;}
.fs2_c00290{font-size:72.463076px;}
.fs12_c00290{font-size:73.505292px;}
.fsc_c00290{font-size:73.508268px;}
.fsb_c00290{font-size:74.556299px;}
.fse_c00290{font-size:76.650000px;}
.fs1_c00290{font-size:123.910469px;}
.fs0_c00290{font-size:126.010647px;}
.y0_c00290{bottom:0.000000px;}
.yc8_c00290{bottom:242.996886px;}
.yc9_c00290{bottom:243.574524px;}
.yca_c00290{bottom:243.854160px;}
.ycb_c00290{bottom:243.990618px;}
.ycc_c00290{bottom:244.586238px;}
.ycd_c00290{bottom:244.797978px;}
.yce_c00290{bottom:245.146350px;}
.ycf_c00290{bottom:245.275578px;}
.yd0_c00290{bottom:245.422410px;}
.yd1_c00290{bottom:245.887680px;}
.yd2_c00290{bottom:245.971326px;}
.yd3_c00290{bottom:246.248736px;}
.yd4_c00290{bottom:246.667074px;}
.yd5_c00290{bottom:246.966576px;}
.yd6_c00290{bottom:247.151748px;}
.ybb_c00290{bottom:264.597654px;}
.ybc_c00290{bottom:264.802026px;}
.ybd_c00290{bottom:265.532526px;}
.ybe_c00290{bottom:265.818624px;}
.ybf_c00290{bottom:266.010612px;}
.yc0_c00290{bottom:266.204166px;}
.yc1_c00290{bottom:266.792082px;}
.yc2_c00290{bottom:267.595884px;}
.yc3_c00290{bottom:268.067760px;}
.yc4_c00290{bottom:268.637304px;}
.yc5_c00290{bottom:269.057148px;}
.yc6_c00290{bottom:269.368470px;}
.yc7_c00290{bottom:269.897226px;}
.yae_c00290{bottom:288.712500px;}
.yaf_c00290{bottom:288.893508px;}
.yb0_c00290{bottom:289.439970px;}
.yb1_c00290{bottom:289.830174px;}
.yb2_c00290{bottom:290.212584px;}
.yb3_c00290{bottom:291.191748px;}
.yb4_c00290{bottom:291.290460px;}
.yb5_c00290{bottom:291.640362px;}
.yb6_c00290{bottom:291.674112px;}
.yb7_c00290{bottom:292.149690px;}
.yb8_c00290{bottom:292.676568px;}
.yb9_c00290{bottom:292.898436px;}
.yba_c00290{bottom:293.328078px;}
.ya0_c00290{bottom:366.658158px;}
.ya1_c00290{bottom:367.162702px;}
.ya2_c00290{bottom:367.354498px;}
.ya3_c00290{bottom:367.724694px;}
.ya4_c00290{bottom:368.376076px;}
.ya5_c00290{bottom:368.710602px;}
.ya6_c00290{bottom:369.158391px;}
.ya7_c00290{bottom:369.763741px;}
.ya8_c00290{bottom:370.201120px;}
.ya9_c00290{bottom:370.496331px;}
.yaa_c00290{bottom:371.113165px;}
.yab_c00290{bottom:371.240667px;}
.yac_c00290{bottom:371.748528px;}
.yad_c00290{bottom:371.968686px;}
.y92_c00290{bottom:389.609041px;}
.y93_c00290{bottom:390.007219px;}
.y94_c00290{bottom:390.699097px;}
.y95_c00290{bottom:391.091236px;}
.y96_c00290{bottom:391.623427px;}
.y97_c00290{bottom:392.000172px;}
.y98_c00290{bottom:392.234142px;}
.y99_c00290{bottom:392.454004px;}
.y9a_c00290{bottom:392.612355px;}
.y9b_c00290{bottom:393.406797px;}
.y9c_c00290{bottom:393.586004px;}
.y9d_c00290{bottom:393.766711px;}
.y9e_c00290{bottom:394.296312px;}
.y9f_c00290{bottom:394.925853px;}
.y85_c00290{bottom:412.242000px;}
.y86_c00290{bottom:412.523935px;}
.y87_c00290{bottom:413.271220px;}
.y88_c00290{bottom:413.734573px;}
.y89_c00290{bottom:414.212710px;}
.y8a_c00290{bottom:414.506988px;}
.y8b_c00290{bottom:414.929124px;}
.y8c_c00290{bottom:415.226239px;}
.y8d_c00290{bottom:415.558995px;}
.y8e_c00290{bottom:416.204656px;}
.y8f_c00290{bottom:416.328637px;}
.y90_c00290{bottom:416.916764px;}
.y91_c00290{bottom:417.142467px;}
.y84_c00290{bottom:441.990000px;}
.y76_c00290{bottom:468.468998px;}
.y77_c00290{bottom:468.967282px;}
.y78_c00290{bottom:469.159492px;}
.y79_c00290{bottom:469.644090px;}
.y7a_c00290{bottom:469.896870px;}
.y7b_c00290{bottom:470.442555px;}
.y7c_c00290{bottom:470.629740px;}
.y7d_c00290{bottom:470.816925px;}
.y7e_c00290{bottom:471.199200px;}
.y7f_c00290{bottom:471.585442px;}
.y80_c00290{bottom:472.272832px;}
.y81_c00290{bottom:472.968277px;}
.y82_c00290{bottom:473.167650px;}
.y83_c00290{bottom:473.437410px;}
.y68_c00290{bottom:492.286500px;}
.y69_c00290{bottom:492.913080px;}
.y6a_c00290{bottom:493.496392px;}
.y6b_c00290{bottom:494.233650px;}
.y6c_c00290{bottom:494.968927px;}
.y6e_c00290{bottom:495.847485px;}
.y6d_c00290{bottom:495.852503px;}
.y6f_c00290{bottom:496.060492px;}
.y70_c00290{bottom:496.434082px;}
.y71_c00290{bottom:496.859400px;}
.y72_c00290{bottom:497.606557px;}
.y73_c00290{bottom:497.961000px;}
.y74_c00290{bottom:498.943102px;}
.y75_c00290{bottom:499.199445px;}
.y5e_c00290{bottom:519.211500px;}
.y5f_c00290{bottom:519.597015px;}
.y60_c00290{bottom:519.787861px;}
.y61_c00290{bottom:520.321109px;}
.y62_c00290{bottom:520.622891px;}
.y64_c00290{bottom:521.494404px;}
.y63_c00290{bottom:521.521841px;}
.y65_c00290{bottom:521.826099px;}
.y66_c00290{bottom:522.258395px;}
.y67_c00290{bottom:522.939998px;}
.y56_c00290{bottom:547.828609px;}
.y57_c00290{bottom:547.988275px;}
.y58_c00290{bottom:548.559801px;}
.y59_c00290{bottom:548.894050px;}
.y5a_c00290{bottom:549.381121px;}
.y5b_c00290{bottom:549.813144px;}
.y5c_c00290{bottom:550.505336px;}
.y5d_c00290{bottom:550.659815px;}
.y4a_c00290{bottom:571.324500px;}
.y4b_c00290{bottom:571.662981px;}
.y4c_c00290{bottom:572.139853px;}
.y4d_c00290{bottom:572.806832px;}
.y4e_c00290{bottom:573.453159px;}
.y4f_c00290{bottom:574.162296px;}
.y50_c00290{bottom:574.608163px;}
.y51_c00290{bottom:574.900605px;}
.y52_c00290{bottom:575.862267px;}
.y53_c00290{bottom:576.192265px;}
.y54_c00290{bottom:576.469477px;}
.y55_c00290{bottom:576.629202px;}
.y3e_c00290{bottom:649.081500px;}
.y3f_c00290{bottom:649.446091px;}
.y40_c00290{bottom:649.923958px;}
.y41_c00290{bottom:650.162619px;}
.y42_c00290{bottom:650.772618px;}
.y43_c00290{bottom:651.043141px;}
.y44_c00290{bottom:651.577441px;}
.y45_c00290{bottom:652.823530px;}
.y46_c00290{bottom:653.157858px;}
.y47_c00290{bottom:654.075021px;}
.y48_c00290{bottom:654.231372px;}
.y49_c00290{bottom:654.797398px;}
.y34_c00290{bottom:676.887000px;}
.y35_c00290{bottom:677.394870px;}
.y36_c00290{bottom:677.906520px;}
.y37_c00290{bottom:678.252786px;}
.y38_c00290{bottom:678.609042px;}
.y39_c00290{bottom:679.338654px;}
.y3a_c00290{bottom:679.659630px;}
.y3b_c00290{bottom:679.951356px;}
.y3c_c00290{bottom:680.314218px;}
.y3d_c00290{bottom:680.596314px;}
.y2f_c00290{bottom:703.891083px;}
.y30_c00290{bottom:704.344218px;}
.y31_c00290{bottom:704.691234px;}
.y32_c00290{bottom:705.070455px;}
.y33_c00290{bottom:707.087890px;}
.y23_c00290{bottom:727.314000px;}
.y24_c00290{bottom:727.616098px;}
.y25_c00290{bottom:728.100175px;}
.y26_c00290{bottom:728.655665px;}
.y27_c00290{bottom:729.033746px;}
.y28_c00290{bottom:729.698992px;}
.y29_c00290{bottom:730.226877px;}
.y2a_c00290{bottom:730.449742px;}
.y2b_c00290{bottom:730.732140px;}
.y2c_c00290{bottom:731.192754px;}
.y2d_c00290{bottom:731.508300px;}
.y2e_c00290{bottom:732.115995px;}
.y22_c00290{bottom:755.748000px;}
.y20_c00290{bottom:783.011898px;}
.y21_c00290{bottom:783.011967px;}
.y14_c00290{bottom:805.408034px;}
.y15_c00290{bottom:806.095587px;}
.y16_c00290{bottom:807.396261px;}
.y17_c00290{bottom:807.745079px;}
.y18_c00290{bottom:808.648746px;}
.y19_c00290{bottom:809.036889px;}
.y1a_c00290{bottom:809.711055px;}
.y1b_c00290{bottom:809.971055px;}
.y1c_c00290{bottom:810.136205px;}
.y1d_c00290{bottom:811.186979px;}
.y1e_c00290{bottom:811.417392px;}
.y1f_c00290{bottom:812.349573px;}
.yb_c00290{bottom:833.224500px;}
.yc_c00290{bottom:833.989326px;}
.yd_c00290{bottom:834.416114px;}
.ye_c00290{bottom:835.297533px;}
.yf_c00290{bottom:835.790327px;}
.y10_c00290{bottom:837.102096px;}
.y11_c00290{bottom:837.948973px;}
.y12_c00290{bottom:838.750679px;}
.y13_c00290{bottom:839.807060px;}
.y6_c00290{bottom:879.928933px;}
.y7_c00290{bottom:880.935901px;}
.y8_c00290{bottom:881.660400px;}
.y9_c00290{bottom:883.430658px;}
.ya_c00290{bottom:884.093505px;}
.y2_c00290{bottom:918.962630px;}
.y1_c00290{bottom:919.002000px;}
.y3_c00290{bottom:921.100220px;}
.y4_c00290{bottom:921.287692px;}
.y5_c00290{bottom:923.277063px;}
.h5_c00290{height:64.061560px;}
.h11_c00290{height:66.154002px;}
.ha_c00290{height:66.154763px;}
.h7_c00290{height:67.200000px;}
.h9_c00290{height:68.254129px;}
.h6_c00290{height:68.262318px;}
.hb_c00290{height:69.305856px;}
.hf_c00290{height:69.307796px;}
.h12_c00290{height:70.355065px;}
.h8_c00290{height:71.404320px;}
.h13_c00290{height:71.405141px;}
.hc_c00290{height:71.406033px;}
.h4_c00290{height:72.463076px;}
.h14_c00290{height:73.505292px;}
.he_c00290{height:73.508268px;}
.hd_c00290{height:74.556299px;}
.h10_c00290{height:76.650000px;}
.h3_c00290{height:123.910469px;}
.h2_c00290{height:126.010647px;}
.h1_c00290{height:1005.000000px;}
.h0_c00290{height:1005.150000px;}
.w0_c00290{width:702.540000px;}
.w1_c00290{width:702.750000px;}
.x0_c00290{left:0.000000px;}
.x63_c00290{left:48.522945px;}
.x78_c00290{left:51.428220px;}
.x2_c00290{left:61.425000px;}
.x1_c00290{left:64.453500px;}
.x8e_c00290{left:66.932760px;}
.x4c_c00290{left:73.468781px;}
.x30_c00290{left:75.991920px;}
.x81_c00290{left:79.285519px;}
.x1f_c00290{left:81.264342px;}
.x4d_c00290{left:85.750781px;}
.x64_c00290{left:86.843092px;}
.x59_c00290{left:91.809000px;}
.x25_c00290{left:94.183500px;}
.x13_c00290{left:99.299977px;}
.x3b_c00290{left:101.688000px;}
.x44_c00290{left:103.737000px;}
.x70_c00290{left:106.909500px;}
.x21_c00290{left:113.400000px;}
.xb_c00290{left:116.881500px;}
.x33_c00290{left:118.506000px;}
.x26_c00290{left:121.647000px;}
.x3c_c00290{left:129.733500px;}
.x71_c00290{left:132.540000px;}
.x5a_c00290{left:133.581000px;}
.x20_c00290{left:134.734636px;}
.x82_c00290{left:137.270376px;}
.x65_c00290{left:138.965168px;}
.x14_c00290{left:142.278928px;}
.x79_c00290{left:150.524220px;}
.x52_c00290{left:152.127000px;}
.x4e_c00290{left:155.425781px;}
.xc_c00290{left:157.135500px;}
.x66_c00290{left:158.417753px;}
.x22_c00290{left:160.920000px;}
.x27_c00290{left:165.654000px;}
.x53_c00290{left:166.807500px;}
.x83_c00290{left:168.060529px;}
.x5b_c00290{left:172.468500px;}
.x31_c00290{left:174.342848px;}
.x88_c00290{left:176.311500px;}
.x8f_c00290{left:177.806574px;}
.xd_c00290{left:179.598000px;}
.x3d_c00290{left:184.851000px;}
.x7a_c00290{left:186.173220px;}
.x4f_c00290{left:192.892781px;}
.x90_c00290{left:195.305790px;}
.x67_c00290{left:200.398013px;}
.x23_c00290{left:202.230000px;}
.x34_c00290{left:203.466000px;}
.x6_c00290{left:204.864589px;}
.x54_c00290{left:207.826500px;}
.x91_c00290{left:212.935506px;}
.x68_c00290{left:214.777440px;}
.x28_c00290{left:216.153000px;}
.x45_c00290{left:217.762500px;}
.x5c_c00290{left:221.619000px;}
.x15_c00290{left:223.529546px;}
.x3_c00290{left:225.855000px;}
.x69_c00290{left:229.156868px;}
.x55_c00290{left:231.040500px;}
.x35_c00290{left:232.321500px;}
.x7b_c00290{left:234.554220px;}
.x4_c00290{left:240.276000px;}
.x72_c00290{left:242.598000px;}
.x16_c00290{left:245.363300px;}
.x29_c00290{left:250.524000px;}
.xe_c00290{left:251.925000px;}
.x89_c00290{left:254.367000px;}
.x24_c00290{left:257.310000px;}
.x6a_c00290{left:258.542745px;}
.x36_c00290{left:262.009500px;}
.x92_c00290{left:266.429154px;}
.x46_c00290{left:267.480000px;}
.x7c_c00290{left:268.803720px;}
.x5d_c00290{left:270.637500px;}
.x50_c00290{left:279.370781px;}
.x73_c00290{left:286.065000px;}
.x6b_c00290{left:288.293145px;}
.x7d_c00290{left:290.073720px;}
.x51_c00290{left:291.253781px;}
.x3e_c00290{left:293.683500px;}
.x7_c00290{left:296.402968px;}
.x57_c00290{left:298.080000px;}
.x56_c00290{left:300.190500px;}
.x17_c00290{left:301.849020px;}
.x99_c00290{left:305.133438px;}
.x2a_c00290{left:311.001000px;}
.x6e_c00290{left:312.930000px;}
.x9a_c00290{left:319.527960px;}
.xf_c00290{left:320.965500px;}
.x37_c00290{left:322.810500px;}
.x7e_c00290{left:324.456720px;}
.x18_c00290{left:326.147416px;}
.x5e_c00290{left:329.542500px;}
.x9b_c00290{left:335.764536px;}
.x84_c00290{left:337.881148px;}
.x93_c00290{left:339.538536px;}
.x6c_c00290{left:341.220743px;}
.x32_c00290{left:342.471500px;}
.x38_c00290{left:349.558500px;}
.x74_c00290{left:351.193500px;}
.x47_c00290{left:356.326500px;}
.x2b_c00290{left:358.990500px;}
.x8_c00290{left:362.289184px;}
.x10_c00290{left:365.538000px;}
.x19_c00290{left:368.263810px;}
.x39_c00290{left:373.869000px;}
.x8a_c00290{left:376.057500px;}
.x75_c00290{left:378.204000px;}
.x2c_c00290{left:379.251000px;}
.x94_c00290{left:382.487058px;}
.x1a_c00290{left:384.475222px;}
.x9c_c00290{left:387.538908px;}
.x3f_c00290{left:389.536500px;}
.x5_c00290{left:393.304500px;}
.x1b_c00290{left:394.825821px;}
.x5f_c00290{left:396.669000px;}
.x6f_c00290{left:399.870000px;}
.x2d_c00290{left:404.923500px;}
.x11_c00290{left:407.733000px;}
.x58_c00290{left:409.279500px;}
.x7f_c00290{left:412.970220px;}
.x40_c00290{left:415.254000px;}
.x3a_c00290{left:427.615500px;}
.x80_c00290{left:429.398220px;}
.x6d_c00290{left:430.861942px;}
.x95_c00290{left:434.324688px;}
.x2e_c00290{left:446.797500px;}
.x85_c00290{left:450.463927px;}
.x48_c00290{left:452.796000px;}
.x1c_c00290{left:460.475554px;}
.x12_c00290{left:463.332000px;}
.x76_c00290{left:467.151000px;}
.x60_c00290{left:470.109000px;}
.x96_c00290{left:472.437138px;}
.x1d_c00290{left:474.892881px;}
.x49_c00290{left:478.180500px;}
.x41_c00290{left:485.805000px;}
.x8b_c00290{left:491.566500px;}
.x42_c00290{left:497.832000px;}
.x4a_c00290{left:499.504500px;}
.x97_c00290{left:500.755980px;}
.x86_c00290{left:503.450850px;}
.x9d_c00290{left:507.201192px;}
.x8c_c00290{left:510.055500px;}
.x4b_c00290{left:511.791000px;}
.x87_c00290{left:521.828652px;}
.x9_c00290{left:523.159358px;}
.x9e_c00290{left:527.757930px;}
.x2f_c00290{left:530.728500px;}
.x77_c00290{left:531.888000px;}
.x1e_c00290{left:533.195216px;}
.x61_c00290{left:535.582500px;}
.x43_c00290{left:541.372500px;}
.x8d_c00290{left:545.859000px;}
.x98_c00290{left:548.819556px;}
.x62_c00290{left:552.672000px;}
.xa_c00290{left:583.379918px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fs3_c00290{font-size:56.943609pt;}
.fsf_c00290{font-size:58.803557pt;}
.fs8_c00290{font-size:58.804233pt;}
.fs5_c00290{font-size:59.733333pt;}
.fs7_c00290{font-size:60.670337pt;}
.fs4_c00290{font-size:60.677616pt;}
.fs9_c00290{font-size:61.605205pt;}
.fsd_c00290{font-size:61.606930pt;}
.fs10_c00290{font-size:62.537836pt;}
.fs6_c00290{font-size:63.470506pt;}
.fs11_c00290{font-size:63.471236pt;}
.fsa_c00290{font-size:63.472029pt;}
.fs2_c00290{font-size:64.411623pt;}
.fs12_c00290{font-size:65.338037pt;}
.fsc_c00290{font-size:65.340683pt;}
.fsb_c00290{font-size:66.272266pt;}
.fse_c00290{font-size:68.133333pt;}
.fs1_c00290{font-size:110.142639pt;}
.fs0_c00290{font-size:112.009464pt;}
.y0_c00290{bottom:0.000000pt;}
.yc8_c00290{bottom:215.997232pt;}
.yc9_c00290{bottom:216.510688pt;}
.yca_c00290{bottom:216.759253pt;}
.ycb_c00290{bottom:216.880549pt;}
.ycc_c00290{bottom:217.409989pt;}
.ycd_c00290{bottom:217.598203pt;}
.yce_c00290{bottom:217.907867pt;}
.ycf_c00290{bottom:218.022736pt;}
.yd0_c00290{bottom:218.153253pt;}
.yd1_c00290{bottom:218.566827pt;}
.yd2_c00290{bottom:218.641179pt;}
.yd3_c00290{bottom:218.887765pt;}
.yd4_c00290{bottom:219.259621pt;}
.yd5_c00290{bottom:219.525845pt;}
.yd6_c00290{bottom:219.690443pt;}
.ybb_c00290{bottom:235.197915pt;}
.ybc_c00290{bottom:235.379579pt;}
.ybd_c00290{bottom:236.028912pt;}
.ybe_c00290{bottom:236.283221pt;}
.ybf_c00290{bottom:236.453877pt;}
.yc0_c00290{bottom:236.625925pt;}
.yc1_c00290{bottom:237.148517pt;}
.yc2_c00290{bottom:237.863008pt;}
.yc3_c00290{bottom:238.282453pt;}
.yc4_c00290{bottom:238.788715pt;}
.yc5_c00290{bottom:239.161909pt;}
.yc6_c00290{bottom:239.438640pt;}
.yc7_c00290{bottom:239.908645pt;}
.yae_c00290{bottom:256.633333pt;}
.yaf_c00290{bottom:256.794229pt;}
.yb0_c00290{bottom:257.279973pt;}
.yb1_c00290{bottom:257.626821pt;}
.yb2_c00290{bottom:257.966741pt;}
.yb3_c00290{bottom:258.837109pt;}
.yb4_c00290{bottom:258.924853pt;}
.yb5_c00290{bottom:259.235877pt;}
.yb6_c00290{bottom:259.265877pt;}
.yb7_c00290{bottom:259.688613pt;}
.yb8_c00290{bottom:260.156949pt;}
.yb9_c00290{bottom:260.354165pt;}
.yba_c00290{bottom:260.736069pt;}
.ya0_c00290{bottom:325.918363pt;}
.ya1_c00290{bottom:326.366847pt;}
.ya2_c00290{bottom:326.537332pt;}
.ya3_c00290{bottom:326.866395pt;}
.ya4_c00290{bottom:327.445401pt;}
.ya5_c00290{bottom:327.742757pt;}
.ya6_c00290{bottom:328.140792pt;}
.ya7_c00290{bottom:328.678881pt;}
.ya8_c00290{bottom:329.067663pt;}
.ya9_c00290{bottom:329.330072pt;}
.yaa_c00290{bottom:329.878369pt;}
.yab_c00290{bottom:329.991704pt;}
.yac_c00290{bottom:330.443136pt;}
.yad_c00290{bottom:330.638832pt;}
.y92_c00290{bottom:346.319148pt;}
.y93_c00290{bottom:346.673084pt;}
.y94_c00290{bottom:347.288087pt;}
.y95_c00290{bottom:347.636655pt;}
.y96_c00290{bottom:348.109713pt;}
.y97_c00290{bottom:348.444597pt;}
.y98_c00290{bottom:348.652571pt;}
.y99_c00290{bottom:348.848004pt;}
.y9a_c00290{bottom:348.988760pt;}
.y9b_c00290{bottom:349.694931pt;}
.y9c_c00290{bottom:349.854225pt;}
.y9d_c00290{bottom:350.014855pt;}
.y9e_c00290{bottom:350.485611pt;}
.y9f_c00290{bottom:351.045203pt;}
.y85_c00290{bottom:366.437333pt;}
.y86_c00290{bottom:366.687943pt;}
.y87_c00290{bottom:367.352196pt;}
.y88_c00290{bottom:367.764065pt;}
.y89_c00290{bottom:368.189076pt;}
.y8a_c00290{bottom:368.450656pt;}
.y8b_c00290{bottom:368.825888pt;}
.y8c_c00290{bottom:369.089991pt;}
.y8d_c00290{bottom:369.385773pt;}
.y8e_c00290{bottom:369.959695pt;}
.y8f_c00290{bottom:370.069900pt;}
.y90_c00290{bottom:370.592679pt;}
.y91_c00290{bottom:370.793304pt;}
.y84_c00290{bottom:392.880000pt;}
.y76_c00290{bottom:416.416887pt;}
.y77_c00290{bottom:416.859807pt;}
.y78_c00290{bottom:417.030660pt;}
.y79_c00290{bottom:417.461413pt;}
.y7a_c00290{bottom:417.686107pt;}
.y7b_c00290{bottom:418.171160pt;}
.y7c_c00290{bottom:418.337547pt;}
.y7d_c00290{bottom:418.503933pt;}
.y7e_c00290{bottom:418.843733pt;}
.y7f_c00290{bottom:419.187060pt;}
.y80_c00290{bottom:419.798073pt;}
.y81_c00290{bottom:420.416247pt;}
.y82_c00290{bottom:420.593467pt;}
.y83_c00290{bottom:420.833253pt;}
.y68_c00290{bottom:437.588000pt;}
.y69_c00290{bottom:438.144960pt;}
.y6a_c00290{bottom:438.663460pt;}
.y6b_c00290{bottom:439.318800pt;}
.y6c_c00290{bottom:439.972380pt;}
.y6e_c00290{bottom:440.753320pt;}
.y6d_c00290{bottom:440.757780pt;}
.y6f_c00290{bottom:440.942660pt;}
.y70_c00290{bottom:441.274740pt;}
.y71_c00290{bottom:441.652800pt;}
.y72_c00290{bottom:442.316940pt;}
.y73_c00290{bottom:442.632000pt;}
.y74_c00290{bottom:443.504980pt;}
.y75_c00290{bottom:443.732840pt;}
.y5e_c00290{bottom:461.521333pt;}
.y5f_c00290{bottom:461.864013pt;}
.y60_c00290{bottom:462.033655pt;}
.y61_c00290{bottom:462.507652pt;}
.y62_c00290{bottom:462.775903pt;}
.y64_c00290{bottom:463.550581pt;}
.y63_c00290{bottom:463.574969pt;}
.y65_c00290{bottom:463.845421pt;}
.y66_c00290{bottom:464.229684pt;}
.y67_c00290{bottom:464.835553pt;}
.y56_c00290{bottom:486.958764pt;}
.y57_c00290{bottom:487.100689pt;}
.y58_c00290{bottom:487.608712pt;}
.y59_c00290{bottom:487.905823pt;}
.y5a_c00290{bottom:488.338775pt;}
.y5b_c00290{bottom:488.722795pt;}
.y5c_c00290{bottom:489.338076pt;}
.y5d_c00290{bottom:489.475391pt;}
.y4a_c00290{bottom:507.844000pt;}
.y4b_c00290{bottom:508.144872pt;}
.y4c_c00290{bottom:508.568759pt;}
.y4d_c00290{bottom:509.161628pt;}
.y4e_c00290{bottom:509.736141pt;}
.y4f_c00290{bottom:510.366485pt;}
.y50_c00290{bottom:510.762812pt;}
.y51_c00290{bottom:511.022760pt;}
.y52_c00290{bottom:511.877571pt;}
.y53_c00290{bottom:512.170903pt;}
.y54_c00290{bottom:512.417313pt;}
.y55_c00290{bottom:512.559291pt;}
.y3e_c00290{bottom:576.961333pt;}
.y3f_c00290{bottom:577.285415pt;}
.y40_c00290{bottom:577.710185pt;}
.y41_c00290{bottom:577.922328pt;}
.y42_c00290{bottom:578.464549pt;}
.y43_c00290{bottom:578.705015pt;}
.y44_c00290{bottom:579.179948pt;}
.y45_c00290{bottom:580.287583pt;}
.y46_c00290{bottom:580.584763pt;}
.y47_c00290{bottom:581.400019pt;}
.y48_c00290{bottom:581.538997pt;}
.y49_c00290{bottom:582.042132pt;}
.y34_c00290{bottom:601.677333pt;}
.y35_c00290{bottom:602.128773pt;}
.y36_c00290{bottom:602.583573pt;}
.y37_c00290{bottom:602.891365pt;}
.y38_c00290{bottom:603.208037pt;}
.y39_c00290{bottom:603.856581pt;}
.y3a_c00290{bottom:604.141893pt;}
.y3b_c00290{bottom:604.401205pt;}
.y3c_c00290{bottom:604.723749pt;}
.y3d_c00290{bottom:604.974501pt;}
.y2f_c00290{bottom:625.680963pt;}
.y30_c00290{bottom:626.083749pt;}
.y31_c00290{bottom:626.392208pt;}
.y32_c00290{bottom:626.729293pt;}
.y33_c00290{bottom:628.522569pt;}
.y23_c00290{bottom:646.501333pt;}
.y24_c00290{bottom:646.769865pt;}
.y25_c00290{bottom:647.200156pt;}
.y26_c00290{bottom:647.693924pt;}
.y27_c00290{bottom:648.029996pt;}
.y28_c00290{bottom:648.621327pt;}
.y29_c00290{bottom:649.090557pt;}
.y2a_c00290{bottom:649.288660pt;}
.y2b_c00290{bottom:649.539680pt;}
.y2c_c00290{bottom:649.949115pt;}
.y2d_c00290{bottom:650.229600pt;}
.y2e_c00290{bottom:650.769773pt;}
.y22_c00290{bottom:671.776000pt;}
.y20_c00290{bottom:696.010576pt;}
.y21_c00290{bottom:696.010637pt;}
.y14_c00290{bottom:715.918252pt;}
.y15_c00290{bottom:716.529411pt;}
.y16_c00290{bottom:717.685565pt;}
.y17_c00290{bottom:717.995625pt;}
.y18_c00290{bottom:718.798885pt;}
.y19_c00290{bottom:719.143901pt;}
.y1a_c00290{bottom:719.743160pt;}
.y1b_c00290{bottom:719.974271pt;}
.y1c_c00290{bottom:720.121071pt;}
.y1d_c00290{bottom:721.055092pt;}
.y1e_c00290{bottom:721.259904pt;}
.y1f_c00290{bottom:722.088509pt;}
.yb_c00290{bottom:740.644000pt;}
.yc_c00290{bottom:741.323845pt;}
.yd_c00290{bottom:741.703212pt;}
.ye_c00290{bottom:742.486696pt;}
.yf_c00290{bottom:742.924735pt;}
.y10_c00290{bottom:744.090752pt;}
.y11_c00290{bottom:744.843532pt;}
.y12_c00290{bottom:745.556159pt;}
.y13_c00290{bottom:746.495164pt;}
.y6_c00290{bottom:782.159052pt;}
.y7_c00290{bottom:783.054135pt;}
.y8_c00290{bottom:783.698133pt;}
.y9_c00290{bottom:785.271696pt;}
.ya_c00290{bottom:785.860893pt;}
.y2_c00290{bottom:816.855671pt;}
.y1_c00290{bottom:816.890667pt;}
.y3_c00290{bottom:818.755751pt;}
.y4_c00290{bottom:818.922393pt;}
.y5_c00290{bottom:820.690723pt;}
.h5_c00290{height:56.943609pt;}
.h11_c00290{height:58.803557pt;}
.ha_c00290{height:58.804233pt;}
.h7_c00290{height:59.733333pt;}
.h9_c00290{height:60.670337pt;}
.h6_c00290{height:60.677616pt;}
.hb_c00290{height:61.605205pt;}
.hf_c00290{height:61.606930pt;}
.h12_c00290{height:62.537836pt;}
.h8_c00290{height:63.470506pt;}
.h13_c00290{height:63.471236pt;}
.hc_c00290{height:63.472029pt;}
.h4_c00290{height:64.411623pt;}
.h14_c00290{height:65.338037pt;}
.he_c00290{height:65.340683pt;}
.hd_c00290{height:66.272266pt;}
.h10_c00290{height:68.133333pt;}
.h3_c00290{height:110.142639pt;}
.h2_c00290{height:112.009464pt;}
.h1_c00290{height:893.333333pt;}
.h0_c00290{height:893.466667pt;}
.w0_c00290{width:624.480000pt;}
.w1_c00290{width:624.666667pt;}
.x0_c00290{left:0.000000pt;}
.x63_c00290{left:43.131507pt;}
.x78_c00290{left:45.713973pt;}
.x2_c00290{left:54.600000pt;}
.x1_c00290{left:57.292000pt;}
.x8e_c00290{left:59.495787pt;}
.x4c_c00290{left:65.305583pt;}
.x30_c00290{left:67.548373pt;}
.x81_c00290{left:70.476017pt;}
.x1f_c00290{left:72.234971pt;}
.x4d_c00290{left:76.222916pt;}
.x64_c00290{left:77.193860pt;}
.x59_c00290{left:81.608000pt;}
.x25_c00290{left:83.718667pt;}
.x13_c00290{left:88.266647pt;}
.x3b_c00290{left:90.389333pt;}
.x44_c00290{left:92.210667pt;}
.x70_c00290{left:95.030667pt;}
.x21_c00290{left:100.800000pt;}
.xb_c00290{left:103.894667pt;}
.x33_c00290{left:105.338667pt;}
.x26_c00290{left:108.130667pt;}
.x3c_c00290{left:115.318667pt;}
.x71_c00290{left:117.813333pt;}
.x5a_c00290{left:118.738667pt;}
.x20_c00290{left:119.764121pt;}
.x82_c00290{left:122.018112pt;}
.x65_c00290{left:123.524593pt;}
.x14_c00290{left:126.470159pt;}
.x79_c00290{left:133.799307pt;}
.x52_c00290{left:135.224000pt;}
.x4e_c00290{left:138.156249pt;}
.xc_c00290{left:139.676000pt;}
.x66_c00290{left:140.815780pt;}
.x22_c00290{left:143.040000pt;}
.x27_c00290{left:147.248000pt;}
.x53_c00290{left:148.273333pt;}
.x83_c00290{left:149.387137pt;}
.x5b_c00290{left:153.305333pt;}
.x31_c00290{left:154.971420pt;}
.x88_c00290{left:156.721333pt;}
.x8f_c00290{left:158.050288pt;}
.xd_c00290{left:159.642667pt;}
.x3d_c00290{left:164.312000pt;}
.x7a_c00290{left:165.487307pt;}
.x4f_c00290{left:171.460249pt;}
.x90_c00290{left:173.605147pt;}
.x67_c00290{left:178.131567pt;}
.x23_c00290{left:179.760000pt;}
.x34_c00290{left:180.858667pt;}
.x6_c00290{left:182.101857pt;}
.x54_c00290{left:184.734667pt;}
.x91_c00290{left:189.276005pt;}
.x68_c00290{left:190.913280pt;}
.x28_c00290{left:192.136000pt;}
.x45_c00290{left:193.566667pt;}
.x5c_c00290{left:196.994667pt;}
.x15_c00290{left:198.692929pt;}
.x3_c00290{left:200.760000pt;}
.x69_c00290{left:203.694993pt;}
.x55_c00290{left:205.369333pt;}
.x35_c00290{left:206.508000pt;}
.x7b_c00290{left:208.492640pt;}
.x4_c00290{left:213.578667pt;}
.x72_c00290{left:215.642667pt;}
.x16_c00290{left:218.100711pt;}
.x29_c00290{left:222.688000pt;}
.xe_c00290{left:223.933333pt;}
.x89_c00290{left:226.104000pt;}
.x24_c00290{left:228.720000pt;}
.x6a_c00290{left:229.815773pt;}
.x36_c00290{left:232.897333pt;}
.x92_c00290{left:236.825915pt;}
.x46_c00290{left:237.760000pt;}
.x7c_c00290{left:238.936640pt;}
.x5d_c00290{left:240.566667pt;}
.x50_c00290{left:248.329583pt;}
.x73_c00290{left:254.280000pt;}
.x6b_c00290{left:256.260573pt;}
.x7d_c00290{left:257.843307pt;}
.x51_c00290{left:258.892249pt;}
.x3e_c00290{left:261.052000pt;}
.x7_c00290{left:263.469305pt;}
.x57_c00290{left:264.960000pt;}
.x56_c00290{left:266.836000pt;}
.x17_c00290{left:268.310240pt;}
.x99_c00290{left:271.229723pt;}
.x2a_c00290{left:276.445333pt;}
.x6e_c00290{left:278.160000pt;}
.x9a_c00290{left:284.024853pt;}
.xf_c00290{left:285.302667pt;}
.x37_c00290{left:286.942667pt;}
.x7e_c00290{left:288.405973pt;}
.x18_c00290{left:289.908815pt;}
.x5e_c00290{left:292.926667pt;}
.x9b_c00290{left:298.457365pt;}
.x84_c00290{left:300.338799pt;}
.x93_c00290{left:301.812032pt;}
.x6c_c00290{left:303.307327pt;}
.x32_c00290{left:304.419111pt;}
.x38_c00290{left:310.718667pt;}
.x74_c00290{left:312.172000pt;}
.x47_c00290{left:316.734667pt;}
.x2b_c00290{left:319.102667pt;}
.x8_c00290{left:322.034831pt;}
.x10_c00290{left:324.922667pt;}
.x19_c00290{left:327.345609pt;}
.x39_c00290{left:332.328000pt;}
.x8a_c00290{left:334.273333pt;}
.x75_c00290{left:336.181333pt;}
.x2c_c00290{left:337.112000pt;}
.x94_c00290{left:339.988496pt;}
.x1a_c00290{left:341.755753pt;}
.x9c_c00290{left:344.479029pt;}
.x3f_c00290{left:346.254667pt;}
.x5_c00290{left:349.604000pt;}
.x1b_c00290{left:350.956285pt;}
.x5f_c00290{left:352.594667pt;}
.x6f_c00290{left:355.440000pt;}
.x2d_c00290{left:359.932000pt;}
.x11_c00290{left:362.429333pt;}
.x58_c00290{left:363.804000pt;}
.x7f_c00290{left:367.084640pt;}
.x40_c00290{left:369.114667pt;}
.x3a_c00290{left:380.102667pt;}
.x80_c00290{left:381.687307pt;}
.x6d_c00290{left:382.988393pt;}
.x95_c00290{left:386.066389pt;}
.x2e_c00290{left:397.153333pt;}
.x85_c00290{left:400.412380pt;}
.x48_c00290{left:402.485333pt;}
.x1c_c00290{left:409.311604pt;}
.x12_c00290{left:411.850667pt;}
.x76_c00290{left:415.245333pt;}
.x60_c00290{left:417.874667pt;}
.x96_c00290{left:419.944123pt;}
.x1d_c00290{left:422.127005pt;}
.x49_c00290{left:425.049333pt;}
.x41_c00290{left:431.826667pt;}
.x8b_c00290{left:436.948000pt;}
.x42_c00290{left:442.517333pt;}
.x4a_c00290{left:444.004000pt;}
.x97_c00290{left:445.116427pt;}
.x86_c00290{left:447.511867pt;}
.x9d_c00290{left:450.845504pt;}
.x8c_c00290{left:453.382667pt;}
.x4b_c00290{left:454.925333pt;}
.x87_c00290{left:463.847691pt;}
.x9_c00290{left:465.030540pt;}
.x9e_c00290{left:469.118160pt;}
.x2f_c00290{left:471.758667pt;}
.x77_c00290{left:472.789333pt;}
.x1e_c00290{left:473.951303pt;}
.x61_c00290{left:476.073333pt;}
.x43_c00290{left:481.220000pt;}
.x8d_c00290{left:485.208000pt;}
.x98_c00290{left:487.839605pt;}
.x62_c00290{left:491.264000pt;}
.xa_c00290{left:518.559927pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mb6_c00291{transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{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);}
.ma5_c00291{transform:matrix(0.059730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059730,0.000000,0.000000,0.250000,0,0);}
.mc7_c00291{transform:matrix(0.082438,0.000577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.082438,0.000577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.082438,0.000577,-0.001750,0.249994,0,0);}
.mf2_c00291{transform:matrix(0.087058,0.000609,-0.001750,0.249994,0,0);-ms-transform:matrix(0.087058,0.000609,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.087058,0.000609,-0.001750,0.249994,0,0);}
.mcb_c00291{transform:matrix(0.091408,0.000640,-0.001750,0.249994,0,0);-ms-transform:matrix(0.091408,0.000640,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.091408,0.000640,-0.001750,0.249994,0,0);}
.m51_c00291{transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099560,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.109060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109060,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.109515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109515,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.mf1_c00291{transform:matrix(0.118632,0.000830,-0.001750,0.249994,0,0);-ms-transform:matrix(0.118632,0.000830,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.118632,0.000830,-0.001750,0.249994,0,0);}
.m77_c00291{transform:matrix(0.127620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127620,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{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);}
.m113_c00291{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.mce_c00291{transform:matrix(0.134587,0.000942,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134587,0.000942,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134587,0.000942,-0.001750,0.249994,0,0);}
.ma_c00291{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.me0_c00291{transform:matrix(0.137497,0.000962,-0.001750,0.249994,0,0);-ms-transform:matrix(0.137497,0.000962,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.137497,0.000962,-0.001750,0.249994,0,0);}
.m4_c00291{transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.146190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146190,0.000000,0.000000,0.250000,0,0);}
.md8_c00291{transform:matrix(0.146266,0.001024,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146266,0.001024,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146266,0.001024,-0.001750,0.249994,0,0);}
.mdc_c00291{transform:matrix(0.146771,0.001027,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146771,0.001027,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146771,0.001027,-0.001750,0.249994,0,0);}
.m8_c00291{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{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);}
.m23_c00291{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);}
.md_c00291{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{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);}
.m11_c00291{transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{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);}
.m6e_c00291{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);}
.mb_c00291{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);}
.m75_c00291{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{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);}
.mb7_c00291{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);}
.md5_c00291{transform:matrix(0.159131,0.001114,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159131,0.001114,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159131,0.001114,-0.001750,0.249994,0,0);}
.md9_c00291{transform:matrix(0.159951,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159951,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159951,0.001120,-0.001750,0.249994,0,0);}
.m112_c00291{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);}
.mda_c00291{transform:matrix(0.160846,0.001126,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160846,0.001126,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160846,0.001126,-0.001750,0.249994,0,0);}
.mcd_c00291{transform:matrix(0.161646,0.001132,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161646,0.001132,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161646,0.001132,-0.001750,0.249994,0,0);}
.m104_c00291{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);}
.md4_c00291{transform:matrix(0.162666,0.001139,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162666,0.001139,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162666,0.001139,-0.001750,0.249994,0,0);}
.m22_c00291{transform:matrix(0.163295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163295,0.000000,0.000000,0.250000,0,0);}
.m11b_c00291{transform:matrix(0.164463,0.001480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164463,0.001480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164463,0.001480,-0.002250,0.249990,0,0);}
.m2e_c00291{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);}
.m91_c00291{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);}
.m10b_c00291{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);}
.mee_c00291{transform:matrix(0.165811,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165811,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165811,0.001161,-0.001750,0.249994,0,0);}
.m5f_c00291{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);}
.mf_c00291{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);}
.m24_c00291{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);}
.m27_c00291{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);}
.m61_c00291{transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{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);}
.m40_c00291{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);}
.m64_c00291{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);}
.md3_c00291{transform:matrix(0.169891,0.001189,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169891,0.001189,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169891,0.001189,-0.001750,0.249994,0,0);}
.ma1_c00291{transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{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);}
.mf8_c00291{transform:matrix(0.170306,0.001192,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170306,0.001192,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170306,0.001192,-0.001750,0.249994,0,0);}
.m6_c00291{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);}
.m6f_c00291{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);}
.ma3_c00291{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);}
.m10c_c00291{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);}
.mcc_c00291{transform:matrix(0.173471,0.001214,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173471,0.001214,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173471,0.001214,-0.001750,0.249994,0,0);}
.m68_c00291{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);}
.m3e_c00291{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);}
.m29_c00291{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);}
.m5c_c00291{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);}
.md2_c00291{transform:matrix(0.174546,0.001222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174546,0.001222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174546,0.001222,-0.001750,0.249994,0,0);}
.m2c_c00291{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);}
.m3d_c00291{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);}
.m3b_c00291{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);}
.m8c_c00291{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);}
.mfa_c00291{transform:matrix(0.175471,0.001228,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175471,0.001228,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175471,0.001228,-0.001750,0.249994,0,0);}
.m17_c00291{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);}
.m59_c00291{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);}
.m79_c00291{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);}
.m4e_c00291{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);}
.m60_c00291{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);}
.m32_c00291{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);}
.mb9_c00291{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_c00291{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);}
.m1b_c00291{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);}
.mc9_c00291{transform:matrix(0.178461,0.001249,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178461,0.001249,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178461,0.001249,-0.001750,0.249994,0,0);}
.ma8_c00291{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);}
.m4b_c00291{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);}
.m10_c00291{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_c00291{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);}
.m1e_c00291{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);}
.m46_c00291{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);}
.ma6_c00291{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);}
.m26_c00291{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);}
.m3a_c00291{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);}
.m3f_c00291{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);}
.mdb_c00291{transform:matrix(0.182241,0.001276,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182241,0.001276,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182241,0.001276,-0.001750,0.249994,0,0);}
.m35_c00291{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);}
.m16_c00291{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);}
.mb3_c00291{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);}
.md7_c00291{transform:matrix(0.183276,0.001283,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183276,0.001283,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183276,0.001283,-0.001750,0.249994,0,0);}
.mdd_c00291{transform:matrix(0.183461,0.001284,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183461,0.001284,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183461,0.001284,-0.001750,0.249994,0,0);}
.m4d_c00291{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);}
.m41_c00291{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);}
.m1d_c00291{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);}
.m36_c00291{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);}
.m9b_c00291{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);}
.m7c_c00291{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);}
.ma4_c00291{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);}
.m6c_c00291{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);}
.m2f_c00291{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);}
.m21_c00291{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_c00291{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);}
.m4a_c00291{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);}
.m25_c00291{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);}
.m5_c00291{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);}
.m4c_c00291{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);}
.mea_c00291{transform:matrix(0.188110,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188110,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188110,0.001317,-0.001750,0.249994,0,0);}
.m2a_c00291{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);}
.md1_c00291{transform:matrix(0.188360,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188360,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188360,0.001319,-0.001750,0.249994,0,0);}
.m19_c00291{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);}
.mbf_c00291{transform:matrix(0.188925,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188925,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188925,0.001322,-0.001750,0.249994,0,0);}
.m1a_c00291{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);}
.m66_c00291{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);}
.m42_c00291{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);}
.mba_c00291{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);}
.med_c00291{transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190625,0.001334,-0.001750,0.249994,0,0);}
.m50_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);}
.m7e_c00291{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);}
.ma7_c00291{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);}
.me1_c00291{transform:matrix(0.191630,0.001341,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191630,0.001341,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191630,0.001341,-0.001750,0.249994,0,0);}
.m71_c00291{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);}
.m6d_c00291{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);}
.m9a_c00291{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);}
.m55_c00291{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);}
.m8f_c00291{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);}
.m82_c00291{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);}
.m70_c00291{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);}
.m20_c00291{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);}
.m54_c00291{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);}
.m9_c00291{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);}
.m49_c00291{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);}
.m99_c00291{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);}
.m73_c00291{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);}
.mde_c00291{transform:matrix(0.194100,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194100,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194100,0.001359,-0.001750,0.249994,0,0);}
.md6_c00291{transform:matrix(0.194515,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194515,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194515,0.001362,-0.001750,0.249994,0,0);}
.m81_c00291{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);}
.me_c00291{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);}
.m86_c00291{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);}
.m2b_c00291{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);}
.m67_c00291{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);}
.m90_c00291{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);}
.m96_c00291{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);}
.m11c_c00291{transform:matrix(0.197227,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197227,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197227,0.001775,-0.002250,0.249990,0,0);}
.maa_c00291{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);}
.m116_c00291{transform:matrix(0.197987,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197987,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197987,0.001782,-0.002250,0.249990,0,0);}
.m1c_c00291{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);}
.m98_c00291{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);}
.m44_c00291{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);}
.mbe_c00291{transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);}
.m83_c00291{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);}
.m95_c00291{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);}
.m78_c00291{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);}
.m105_c00291{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);}
.m30_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);}
.m6b_c00291{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{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);}
.m87_c00291{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);}
.m110_c00291{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);}
.me6_c00291{transform:matrix(0.202960,0.001421,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202960,0.001421,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202960,0.001421,-0.001750,0.249994,0,0);}
.m7f_c00291{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);}
.m74_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);}
.m7a_c00291{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);}
.mc_c00291{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);}
.m47_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);}
.mef_c00291{transform:matrix(0.205000,0.001435,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205000,0.001435,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205000,0.001435,-0.001750,0.249994,0,0);}
.m12_c00291{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);}
.mb8_c00291{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);}
.m37_c00291{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);}
.m80_c00291{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);}
.mff_c00291{transform:matrix(0.208550,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208550,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208550,0.001460,-0.001750,0.249994,0,0);}
.m48_c00291{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);}
.m9f_c00291{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.md0_c00291{transform:matrix(0.209335,0.001465,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209335,0.001465,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209335,0.001465,-0.001750,0.249994,0,0);}
.m119_c00291{transform:matrix(0.209432,0.001885,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209432,0.001885,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209432,0.001885,-0.002250,0.249990,0,0);}
.m118_c00291{transform:matrix(0.209941,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209941,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209941,0.001889,-0.002250,0.249990,0,0);}
.m45_c00291{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);}
.mcf_c00291{transform:matrix(0.211990,0.001484,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211990,0.001484,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211990,0.001484,-0.001750,0.249994,0,0);}
.maf_c00291{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);}
.me9_c00291{transform:matrix(0.212660,0.001489,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212660,0.001489,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212660,0.001489,-0.001750,0.249994,0,0);}
.m33_c00291{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_c00291{transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);}
.mfc_c00291{transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);}
.mec_c00291{transform:matrix(0.213335,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213335,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213335,0.001493,-0.001750,0.249994,0,0);}
.m18_c00291{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);}
.mb0_c00291{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);}
.m100_c00291{transform:matrix(0.217905,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217905,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217905,0.001525,-0.001750,0.249994,0,0);}
.mab_c00291{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);}
.m11a_c00291{transform:matrix(0.218966,0.001971,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218966,0.001971,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218966,0.001971,-0.002250,0.249990,0,0);}
.m93_c00291{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);}
.m15_c00291{transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{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);}
.m5b_c00291{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);}
.mdf_c00291{transform:matrix(0.220175,0.001541,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220175,0.001541,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220175,0.001541,-0.001750,0.249994,0,0);}
.m84_c00291{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);}
.m92_c00291{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);}
.m111_c00291{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);}
.ma9_c00291{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);}
.mf6_c00291{transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);}
.m10d_c00291{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);}
.m69_c00291{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);}
.m53_c00291{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);}
.m94_c00291{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);}
.m4f_c00291{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);}
.m7b_c00291{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);}
.m88_c00291{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);}
.m85_c00291{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);}
.m108_c00291{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{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);}
.m76_c00291{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);}
.m56_c00291{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);}
.m8e_c00291{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);}
.mb4_c00291{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);}
.me4_c00291{transform:matrix(0.232964,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232964,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232964,0.001631,-0.001750,0.249994,0,0);}
.m5a_c00291{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(0.236254,0.001654,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236254,0.001654,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236254,0.001654,-0.001750,0.249994,0,0);}
.mf7_c00291{transform:matrix(0.236529,0.001656,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236529,0.001656,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236529,0.001656,-0.001750,0.249994,0,0);}
.m8b_c00291{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);}
.mc3_c00291{transform:matrix(0.240104,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240104,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240104,0.001681,-0.001750,0.249994,0,0);}
.mf9_c00291{transform:matrix(0.242899,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242899,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242899,0.001700,-0.001750,0.249994,0,0);}
.mad_c00291{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mf5_c00291{transform:matrix(0.251369,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251369,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251369,0.001760,-0.001750,0.249994,0,0);}
.m89_c00291{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{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);}
.m9e_c00291{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);}
.mbd_c00291{transform:matrix(0.255134,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255134,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255134,0.001786,-0.001750,0.249994,0,0);}
.mfd_c00291{transform:matrix(0.255639,0.001789,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255639,0.001789,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255639,0.001789,-0.001750,0.249994,0,0);}
.meb_c00291{transform:matrix(0.258389,0.001809,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258389,0.001809,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258389,0.001809,-0.001750,0.249994,0,0);}
.m58_c00291{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);}
.mc6_c00291{transform:matrix(0.265269,0.001857,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265269,0.001857,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265269,0.001857,-0.001750,0.249994,0,0);}
.m10a_c00291{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m10e_c00291{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.265968,0.001862,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265968,0.001862,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265968,0.001862,-0.001750,0.249994,0,0);}
.me3_c00291{transform:matrix(0.269223,0.001885,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269223,0.001885,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269223,0.001885,-0.001750,0.249994,0,0);}
.mc4_c00291{transform:matrix(0.269903,0.001889,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269903,0.001889,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269903,0.001889,-0.001750,0.249994,0,0);}
.m107_c00291{transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{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);}
.m114_c00291{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m102_c00291{transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);}
.me7_c00291{transform:matrix(0.275653,0.001930,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275653,0.001930,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275653,0.001930,-0.001750,0.249994,0,0);}
.me5_c00291{transform:matrix(0.275998,0.001932,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275998,0.001932,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275998,0.001932,-0.001750,0.249994,0,0);}
.m0_c00291{transform:matrix(0.278615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278615,0.000000,0.000000,0.250000,0,0);}
.mf4_c00291{transform:matrix(0.280748,0.001965,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280748,0.001965,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280748,0.001965,-0.001750,0.249994,0,0);}
.mf3_c00291{transform:matrix(0.281988,0.001974,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281988,0.001974,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281988,0.001974,-0.001750,0.249994,0,0);}
.me8_c00291{transform:matrix(0.283758,0.001986,-0.001750,0.249994,0,0);-ms-transform:matrix(0.283758,0.001986,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.283758,0.001986,-0.001750,0.249994,0,0);}
.mc2_c00291{transform:matrix(0.284153,0.001989,-0.001750,0.249994,0,0);-ms-transform:matrix(0.284153,0.001989,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.284153,0.001989,-0.001750,0.249994,0,0);}
.m14_c00291{transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285630,0.000000,0.000000,0.250000,0,0);}
.m106_c00291{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.mf0_c00291{transform:matrix(0.289553,0.002027,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289553,0.002027,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289553,0.002027,-0.001750,0.249994,0,0);}
.mb2_c00291{transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291230,0.000000,0.000000,0.250000,0,0);}
.m103_c00291{transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298205,0.000000,0.000000,0.250000,0,0);}
.mc8_c00291{transform:matrix(0.301628,0.002111,-0.001750,0.249994,0,0);-ms-transform:matrix(0.301628,0.002111,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.301628,0.002111,-0.001750,0.249994,0,0);}
.m117_c00291{transform:matrix(0.302873,0.002726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.302873,0.002726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.302873,0.002726,-0.002250,0.249990,0,0);}
.m109_c00291{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);}
.mfe_c00291{transform:matrix(0.305078,0.002136,-0.001750,0.249994,0,0);-ms-transform:matrix(0.305078,0.002136,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.305078,0.002136,-0.001750,0.249994,0,0);}
.m101_c00291{transform:matrix(0.306108,0.002143,-0.001750,0.249994,0,0);-ms-transform:matrix(0.306108,0.002143,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.306108,0.002143,-0.001750,0.249994,0,0);}
.m65_c00291{transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);}
.mca_c00291{transform:matrix(0.319262,0.002235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.319262,0.002235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.319262,0.002235,-0.001750,0.249994,0,0);}
.m3_c00291{transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.326265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326265,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.335045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335045,0.000000,0.000000,0.250000,0,0);}
.m10f_c00291{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);}
.me2_c00291{transform:matrix(0.340262,0.002382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.340262,0.002382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.340262,0.002382,-0.001750,0.249994,0,0);}
.mc0_c00291{transform:matrix(0.340942,0.002387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.340942,0.002387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.340942,0.002387,-0.001750,0.249994,0,0);}
.mac_c00291{transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{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);}
.ma2_c00291{transform:matrix(0.361865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361865,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393060,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.401990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401990,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.448090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448090,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.553935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553935,0.000000,0.000000,0.250000,0,0);}
.mfb_c00291{transform:matrix(0.555611,0.003889,-0.001750,0.249994,0,0);-ms-transform:matrix(0.555611,0.003889,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.555611,0.003889,-0.001750,0.249994,0,0);}
.m115_c00291{transform:matrix(0.658293,0.005925,-0.002250,0.249990,0,0);-ms-transform:matrix(0.658293,0.005925,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.658293,0.005925,-0.002250,0.249990,0,0);}
.mc5_c00291{transform:matrix(0.669674,0.004688,-0.001750,0.249994,0,0);-ms-transform:matrix(0.669674,0.004688,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.669674,0.004688,-0.001750,0.249994,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;}
.fs1_c00291{font-size:22.050000px;}
.fsa_c00291{font-size:59.850000px;}
.fs6_c00291{font-size:63.000000px;}
.fsb_c00291{font-size:64.050000px;}
.fse_c00291{font-size:65.100000px;}
.fs14_c00291{font-size:66.150000px;}
.fsc_c00291{font-size:67.200000px;}
.fsf_c00291{font-size:67.201646px;}
.fs3_c00291{font-size:68.250000px;}
.fs5_c00291{font-size:69.300000px;}
.fs8_c00291{font-size:70.350000px;}
.fs4_c00291{font-size:71.400000px;}
.fs13_c00291{font-size:71.401749px;}
.fs12_c00291{font-size:72.451775px;}
.fs15_c00291{font-size:72.452934px;}
.fs9_c00291{font-size:74.550000px;}
.fs10_c00291{font-size:74.551826px;}
.fs7_c00291{font-size:75.600000px;}
.fsd_c00291{font-size:76.650000px;}
.fs2_c00291{font-size:77.700000px;}
.fs11_c00291{font-size:79.801955px;}
.fs0_c00291{font-size:86.100000px;}
.y0_c00291{bottom:0.000000px;}
.y79_c00291{bottom:166.510044px;}
.y78_c00291{bottom:167.033223px;}
.y77_c00291{bottom:167.293787px;}
.y76_c00291{bottom:167.818532px;}
.y75_c00291{bottom:167.982894px;}
.y74_c00291{bottom:168.603395px;}
.y73_c00291{bottom:169.217658px;}
.y72_c00291{bottom:169.645500px;}
.y71_c00291{bottom:197.142000px;}
.y70_c00291{bottom:219.882000px;}
.y6e_c00291{bottom:241.791282px;}
.y6f_c00291{bottom:241.791292px;}
.y6d_c00291{bottom:241.791901px;}
.y6b_c00291{bottom:241.792221px;}
.y6c_c00291{bottom:241.792321px;}
.y6a_c00291{bottom:241.792540px;}
.y69_c00291{bottom:241.793260px;}
.y68_c00291{bottom:241.793790px;}
.y5f_c00291{bottom:263.604060px;}
.y61_c00291{bottom:263.604321px;}
.y60_c00291{bottom:263.604611px;}
.y63_c00291{bottom:263.604612px;}
.y62_c00291{bottom:263.604692px;}
.y67_c00291{bottom:263.605244px;}
.y64_c00291{bottom:263.605282px;}
.y66_c00291{bottom:263.605514px;}
.y65_c00291{bottom:263.605563px;}
.y5e_c00291{bottom:285.280323px;}
.y5d_c00291{bottom:285.435899px;}
.y5c_c00291{bottom:285.751783px;}
.y5b_c00291{bottom:286.039860px;}
.y5a_c00291{bottom:286.734932px;}
.y59_c00291{bottom:286.917024px;}
.y58_c00291{bottom:287.330002px;}
.y57_c00291{bottom:287.717273px;}
.y56_c00291{bottom:287.894505px;}
.y55_c00291{bottom:288.702311px;}
.y54_c00291{bottom:289.243623px;}
.y53_c00291{bottom:289.354185px;}
.y52_c00291{bottom:289.653296px;}
.y48_c00291{bottom:311.914633px;}
.y46_c00291{bottom:311.914672px;}
.y45_c00291{bottom:311.915112px;}
.y49_c00291{bottom:311.915244px;}
.y4c_c00291{bottom:311.915255px;}
.y47_c00291{bottom:311.915313px;}
.y4d_c00291{bottom:311.915535px;}
.y4e_c00291{bottom:311.915565px;}
.y4b_c00291{bottom:311.915644px;}
.y4a_c00291{bottom:311.915664px;}
.y4f_c00291{bottom:311.916145px;}
.y50_c00291{bottom:311.916685px;}
.y51_c00291{bottom:311.916696px;}
.y44_c00291{bottom:331.875228px;}
.y43_c00291{bottom:332.406294px;}
.y42_c00291{bottom:332.968949px;}
.y41_c00291{bottom:333.411876px;}
.y40_c00291{bottom:333.729840px;}
.y3f_c00291{bottom:334.142367px;}
.y3e_c00291{bottom:334.283487px;}
.y3d_c00291{bottom:334.426497px;}
.y3c_c00291{bottom:334.687595px;}
.y3b_c00291{bottom:335.105758px;}
.y3a_c00291{bottom:335.530893px;}
.y39_c00291{bottom:336.024315px;}
.y38_c00291{bottom:336.145028px;}
.y37_c00291{bottom:336.421484px;}
.y36_c00291{bottom:355.006457px;}
.y35_c00291{bottom:355.264536px;}
.y34_c00291{bottom:355.370282px;}
.y33_c00291{bottom:355.466388px;}
.y32_c00291{bottom:355.912932px;}
.y31_c00291{bottom:356.061801px;}
.y30_c00291{bottom:356.326464px;}
.y2f_c00291{bottom:356.568342px;}
.y2e_c00291{bottom:356.825319px;}
.y2d_c00291{bottom:357.008712px;}
.y2c_c00291{bottom:357.643668px;}
.y2b_c00291{bottom:357.828710px;}
.y2a_c00291{bottom:358.091755px;}
.y29_c00291{bottom:358.305000px;}
.y28_c00291{bottom:383.184000px;}
.y27_c00291{bottom:407.211000px;}
.y26_c00291{bottom:409.443000px;}
.y25_c00291{bottom:412.977000px;}
.y24_c00291{bottom:413.487000px;}
.y23_c00291{bottom:413.902500px;}
.y22_c00291{bottom:414.183000px;}
.y21_c00291{bottom:434.493000px;}
.y20_c00291{bottom:434.718000px;}
.y1f_c00291{bottom:434.886000px;}
.y1e_c00291{bottom:434.986500px;}
.y1d_c00291{bottom:435.313500px;}
.y1c_c00291{bottom:435.358500px;}
.y1b_c00291{bottom:435.577500px;}
.y1a_c00291{bottom:436.075500px;}
.y19_c00291{bottom:436.257000px;}
.y18_c00291{bottom:436.633500px;}
.y17_c00291{bottom:436.843500px;}
.y16_c00291{bottom:437.026500px;}
.y15_c00291{bottom:437.104500px;}
.y14_c00291{bottom:437.140500px;}
.y13_c00291{bottom:437.400000px;}
.y12_c00291{bottom:458.265000px;}
.y11_c00291{bottom:485.985000px;}
.y10_c00291{bottom:513.441000px;}
.yf_c00291{bottom:537.421500px;}
.ye_c00291{bottom:565.090500px;}
.yd_c00291{bottom:593.109000px;}
.yc_c00291{bottom:615.742500px;}
.yb_c00291{bottom:643.410000px;}
.ya_c00291{bottom:671.709000px;}
.y9_c00291{bottom:695.346000px;}
.y8_c00291{bottom:717.282000px;}
.y7_c00291{bottom:745.141500px;}
.y6_c00291{bottom:772.785000px;}
.y5_c00291{bottom:795.450000px;}
.y4_c00291{bottom:818.386500px;}
.y3_c00291{bottom:841.081500px;}
.y2_c00291{bottom:866.833500px;}
.y1_c00291{bottom:884.449500px;}
.h3_c00291{height:22.050000px;}
.hc_c00291{height:59.850000px;}
.h8_c00291{height:63.000000px;}
.hd_c00291{height:64.050000px;}
.h10_c00291{height:65.100000px;}
.h16_c00291{height:66.150000px;}
.he_c00291{height:67.200000px;}
.h11_c00291{height:67.201646px;}
.h5_c00291{height:68.250000px;}
.h7_c00291{height:69.300000px;}
.ha_c00291{height:70.350000px;}
.h6_c00291{height:71.400000px;}
.h15_c00291{height:71.401749px;}
.h14_c00291{height:72.451775px;}
.h17_c00291{height:72.452934px;}
.hb_c00291{height:74.550000px;}
.h12_c00291{height:74.551826px;}
.h9_c00291{height:75.600000px;}
.hf_c00291{height:76.650000px;}
.h4_c00291{height:77.700000px;}
.h13_c00291{height:79.801955px;}
.h2_c00291{height:86.100000px;}
.h0_c00291{height:1008.450000px;}
.h1_c00291{height:1008.750000px;}
.w0_c00291{width:696.000000px;}
.x0_c00291{left:0.000000px;}
.xa9_c00291{left:160.110000px;}
.x92_c00291{left:162.315549px;}
.x5e_c00291{left:163.350000px;}
.x1_c00291{left:164.970000px;}
.x11_c00291{left:166.050000px;}
.x89_c00291{left:178.110000px;}
.x49_c00291{left:181.710000px;}
.x34_c00291{left:183.060000px;}
.x5_c00291{left:189.810000px;}
.x93_c00291{left:193.023119px;}
.x4a_c00291{left:196.290000px;}
.x4f_c00291{left:200.070000px;}
.x2b_c00291{left:201.150000px;}
.x9a_c00291{left:204.119058px;}
.x5f_c00291{left:206.550000px;}
.x1c_c00291{left:208.980000px;}
.x64_c00291{left:210.870000px;}
.x7c_c00291{left:211.938000px;}
.x26_c00291{left:214.110000px;}
.x4b_c00291{left:215.730000px;}
.x3f_c00291{left:219.780000px;}
.x72_c00291{left:220.860000px;}
.x6e_c00291{left:222.210000px;}
.x35_c00291{left:223.560000px;}
.x7d_c00291{left:224.865000px;}
.x55_c00291{left:227.340000px;}
.x6_c00291{left:229.230000px;}
.xaa_c00291{left:233.550000px;}
.x1d_c00291{left:235.170000px;}
.xb1_c00291{left:236.415000px;}
.xa2_c00291{left:237.870054px;}
.x12_c00291{left:240.570000px;}
.x2c_c00291{left:243.270000px;}
.x40_c00291{left:245.160000px;}
.x86_c00291{left:248.758500px;}
.x50_c00291{left:250.560000px;}
.x56_c00291{left:252.180000px;}
.x9b_c00291{left:253.529984px;}
.x4c_c00291{left:256.230000px;}
.x13_c00291{left:257.850000px;}
.x2d_c00291{left:258.930000px;}
.x65_c00291{left:261.360000px;}
.x70_c00291{left:265.140000px;}
.xa0_c00291{left:268.225721px;}
.x2_c00291{left:270.270000px;}
.x8a_c00291{left:272.586000px;}
.xab_c00291{left:278.100000px;}
.x14_c00291{left:279.450000px;}
.x41_c00291{left:281.340000px;}
.x73_c00291{left:283.500000px;}
.x9c_c00291{left:286.200080px;}
.x7_c00291{left:288.900000px;}
.x7e_c00291{left:290.472000px;}
.x4d_c00291{left:291.600000px;}
.x60_c00291{left:295.650000px;}
.x2e_c00291{left:297.000000px;}
.x8_c00291{left:299.430000px;}
.x42_c00291{left:305.370000px;}
.x57_c00291{left:306.450000px;}
.x94_c00291{left:308.488502px;}
.x1e_c00291{left:315.090000px;}
.x27_c00291{left:316.440000px;}
.x36_c00291{left:318.330000px;}
.x74_c00291{left:319.950000px;}
.x9_c00291{left:321.030000px;}
.x6f_c00291{left:323.730000px;}
.x43_c00291{left:327.780000px;}
.x66_c00291{left:329.670000px;}
.x15_c00291{left:331.020000px;}
.x2f_c00291{left:332.640000px;}
.x58_c00291{left:334.530000px;}
.x71_c00291{left:337.230000px;}
.xa_c00291{left:340.470000px;}
.xa6_c00291{left:341.550966px;}
.x51_c00291{left:349.380000px;}
.x7f_c00291{left:353.341500px;}
.x95_c00291{left:354.939851px;}
.xb_c00291{left:356.940000px;}
.x16_c00291{left:358.020000px;}
.x61_c00291{left:359.100000px;}
.x67_c00291{left:361.260000px;}
.x37_c00291{left:363.150000px;}
.x1f_c00291{left:364.770000px;}
.xaf_c00291{left:366.120000px;}
.x52_c00291{left:367.470000px;}
.xac_c00291{left:372.870000px;}
.x4e_c00291{left:374.220000px;}
.x17_c00291{left:378.540000px;}
.x20_c00291{left:381.780000px;}
.x80_c00291{left:383.595000px;}
.xc_c00291{left:386.370000px;}
.x8b_c00291{left:389.493000px;}
.xb2_c00291{left:391.873500px;}
.x53_c00291{left:393.120000px;}
.x59_c00291{left:396.360000px;}
.x75_c00291{left:397.710000px;}
.x30_c00291{left:399.060000px;}
.x21_c00291{left:404.190000px;}
.x62_c00291{left:409.050000px;}
.x9d_c00291{left:410.133159px;}
.x38_c00291{left:416.070000px;}
.x31_c00291{left:417.690000px;}
.xa1_c00291{left:420.767589px;}
.x28_c00291{left:422.550000px;}
.xa3_c00291{left:424.443200px;}
.x68_c00291{left:426.600000px;}
.x18_c00291{left:427.950000px;}
.x63_c00291{left:430.650000px;}
.x76_c00291{left:432.270000px;}
.x9e_c00291{left:437.404493px;}
.x22_c00291{left:439.830000px;}
.x32_c00291{left:441.990000px;}
.x39_c00291{left:443.070000px;}
.xad_c00291{left:444.150000px;}
.x3_c00291{left:446.040000px;}
.xa7_c00291{left:448.204685px;}
.xb3_c00291{left:450.178500px;}
.x69_c00291{left:451.440000px;}
.x19_c00291{left:454.680000px;}
.x8c_c00291{left:460.758000px;}
.x4_c00291{left:463.860000px;}
.x81_c00291{left:466.483500px;}
.x33_c00291{left:473.850000px;}
.x3a_c00291{left:479.250000px;}
.x54_c00291{left:484.650000px;}
.x5a_c00291{left:487.890000px;}
.x23_c00291{left:490.320000px;}
.x44_c00291{left:494.100000px;}
.x96_c00291{left:496.683366px;}
.x8d_c00291{left:498.567000px;}
.x87_c00291{left:501.223500px;}
.x82_c00291{left:502.924500px;}
.x29_c00291{left:505.710000px;}
.x83_c00291{left:510.499500px;}
.x45_c00291{left:511.650000px;}
.x24_c00291{left:512.730000px;}
.xd_c00291{left:515.970000px;}
.x8e_c00291{left:519.834000px;}
.xa8_c00291{left:520.836744px;}
.x5b_c00291{left:523.260000px;}
.x6a_c00291{left:524.340000px;}
.xae_c00291{left:532.440000px;}
.xa4_c00291{left:535.955670px;}
.xb4_c00291{left:537.261000px;}
.x46_c00291{left:542.700000px;}
.x97_c00291{left:545.815173px;}
.xe_c00291{left:548.640000px;}
.x6b_c00291{left:550.800000px;}
.x3b_c00291{left:557.010000px;}
.x77_c00291{left:564.300000px;}
.x2a_c00291{left:566.730000px;}
.x1a_c00291{left:568.350000px;}
.x47_c00291{left:572.670000px;}
.x6c_c00291{left:579.420000px;}
.x25_c00291{left:582.390000px;}
.x8f_c00291{left:583.626000px;}
.xf_c00291{left:586.980000px;}
.x3c_c00291{left:588.330000px;}
.x9f_c00291{left:590.499000px;}
.x78_c00291{left:595.080000px;}
.x5c_c00291{left:596.700000px;}
.x1b_c00291{left:599.670000px;}
.x98_c00291{left:608.407802px;}
.x84_c00291{left:609.850500px;}
.x90_c00291{left:612.462000px;}
.x48_c00291{left:613.710000px;}
.x3d_c00291{left:615.060000px;}
.xa5_c00291{left:616.148097px;}
.x10_c00291{left:621.000000px;}
.x6d_c00291{left:624.510000px;}
.x3e_c00291{left:631.260000px;}
.xb0_c00291{left:633.150000px;}
.x79_c00291{left:642.870000px;}
.x85_c00291{left:647.410500px;}
.x91_c00291{left:649.330500px;}
.x88_c00291{left:650.430000px;}
.x7a_c00291{left:656.640000px;}
.x5d_c00291{left:660.420000px;}
.x99_c00291{left:667.344972px;}
.x7b_c00291{left:669.870000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
.fs1_c00291{font-size:19.600000pt;}
.fsa_c00291{font-size:53.200000pt;}
.fs6_c00291{font-size:56.000000pt;}
.fsb_c00291{font-size:56.933333pt;}
.fse_c00291{font-size:57.866667pt;}
.fs14_c00291{font-size:58.800000pt;}
.fsc_c00291{font-size:59.733333pt;}
.fsf_c00291{font-size:59.734797pt;}
.fs3_c00291{font-size:60.666667pt;}
.fs5_c00291{font-size:61.600000pt;}
.fs8_c00291{font-size:62.533333pt;}
.fs4_c00291{font-size:63.466667pt;}
.fs13_c00291{font-size:63.468222pt;}
.fs12_c00291{font-size:64.401578pt;}
.fs15_c00291{font-size:64.402608pt;}
.fs9_c00291{font-size:66.266667pt;}
.fs10_c00291{font-size:66.268290pt;}
.fs7_c00291{font-size:67.200000pt;}
.fsd_c00291{font-size:68.133333pt;}
.fs2_c00291{font-size:69.066667pt;}
.fs11_c00291{font-size:70.935071pt;}
.fs0_c00291{font-size:76.533333pt;}
.y0_c00291{bottom:0.000000pt;}
.y79_c00291{bottom:148.008928pt;}
.y78_c00291{bottom:148.473976pt;}
.y77_c00291{bottom:148.705588pt;}
.y76_c00291{bottom:149.172028pt;}
.y75_c00291{bottom:149.318128pt;}
.y74_c00291{bottom:149.869684pt;}
.y73_c00291{bottom:150.415696pt;}
.y72_c00291{bottom:150.796000pt;}
.y71_c00291{bottom:175.237333pt;}
.y70_c00291{bottom:195.450667pt;}
.y6e_c00291{bottom:214.925584pt;}
.y6f_c00291{bottom:214.925593pt;}
.y6d_c00291{bottom:214.926135pt;}
.y6b_c00291{bottom:214.926419pt;}
.y6c_c00291{bottom:214.926508pt;}
.y6a_c00291{bottom:214.926703pt;}
.y69_c00291{bottom:214.927343pt;}
.y68_c00291{bottom:214.927813pt;}
.y5f_c00291{bottom:234.314720pt;}
.y61_c00291{bottom:234.314952pt;}
.y60_c00291{bottom:234.315209pt;}
.y63_c00291{bottom:234.315211pt;}
.y62_c00291{bottom:234.315281pt;}
.y67_c00291{bottom:234.315772pt;}
.y64_c00291{bottom:234.315807pt;}
.y66_c00291{bottom:234.316012pt;}
.y65_c00291{bottom:234.316056pt;}
.y5e_c00291{bottom:253.582509pt;}
.y5d_c00291{bottom:253.720799pt;}
.y5c_c00291{bottom:254.001585pt;}
.y5b_c00291{bottom:254.257653pt;}
.y5a_c00291{bottom:254.875495pt;}
.y59_c00291{bottom:255.037355pt;}
.y58_c00291{bottom:255.404447pt;}
.y57_c00291{bottom:255.748687pt;}
.y56_c00291{bottom:255.906227pt;}
.y55_c00291{bottom:256.624276pt;}
.y54_c00291{bottom:257.105443pt;}
.y53_c00291{bottom:257.203720pt;}
.y52_c00291{bottom:257.469596pt;}
.y48_c00291{bottom:277.257452pt;}
.y46_c00291{bottom:277.257487pt;}
.y45_c00291{bottom:277.257877pt;}
.y49_c00291{bottom:277.257995pt;}
.y4c_c00291{bottom:277.258004pt;}
.y47_c00291{bottom:277.258056pt;}
.y4d_c00291{bottom:277.258253pt;}
.y4e_c00291{bottom:277.258280pt;}
.y4b_c00291{bottom:277.258351pt;}
.y4a_c00291{bottom:277.258368pt;}
.y4f_c00291{bottom:277.258796pt;}
.y50_c00291{bottom:277.259276pt;}
.y51_c00291{bottom:277.259285pt;}
.y44_c00291{bottom:295.000203pt;}
.y43_c00291{bottom:295.472261pt;}
.y42_c00291{bottom:295.972399pt;}
.y41_c00291{bottom:296.366112pt;}
.y40_c00291{bottom:296.648747pt;}
.y3f_c00291{bottom:297.015437pt;}
.y3e_c00291{bottom:297.140877pt;}
.y3d_c00291{bottom:297.267997pt;}
.y3c_c00291{bottom:297.500084pt;}
.y3b_c00291{bottom:297.871785pt;}
.y3a_c00291{bottom:298.249683pt;}
.y39_c00291{bottom:298.688280pt;}
.y38_c00291{bottom:298.795580pt;}
.y37_c00291{bottom:299.041319pt;}
.y36_c00291{bottom:315.561295pt;}
.y35_c00291{bottom:315.790699pt;}
.y34_c00291{bottom:315.884695pt;}
.y33_c00291{bottom:315.970123pt;}
.y32_c00291{bottom:316.367051pt;}
.y31_c00291{bottom:316.499379pt;}
.y30_c00291{bottom:316.734635pt;}
.y2f_c00291{bottom:316.949637pt;}
.y2e_c00291{bottom:317.178061pt;}
.y2d_c00291{bottom:317.341077pt;}
.y2c_c00291{bottom:317.905483pt;}
.y2b_c00291{bottom:318.069964pt;}
.y2a_c00291{bottom:318.303783pt;}
.y29_c00291{bottom:318.493333pt;}
.y28_c00291{bottom:340.608000pt;}
.y27_c00291{bottom:361.965333pt;}
.y26_c00291{bottom:363.949333pt;}
.y25_c00291{bottom:367.090667pt;}
.y24_c00291{bottom:367.544000pt;}
.y23_c00291{bottom:367.913333pt;}
.y22_c00291{bottom:368.162667pt;}
.y21_c00291{bottom:386.216000pt;}
.y20_c00291{bottom:386.416000pt;}
.y1f_c00291{bottom:386.565333pt;}
.y1e_c00291{bottom:386.654667pt;}
.y1d_c00291{bottom:386.945333pt;}
.y1c_c00291{bottom:386.985333pt;}
.y1b_c00291{bottom:387.180000pt;}
.y1a_c00291{bottom:387.622667pt;}
.y19_c00291{bottom:387.784000pt;}
.y18_c00291{bottom:388.118667pt;}
.y17_c00291{bottom:388.305333pt;}
.y16_c00291{bottom:388.468000pt;}
.y15_c00291{bottom:388.537333pt;}
.y14_c00291{bottom:388.569333pt;}
.y13_c00291{bottom:388.800000pt;}
.y12_c00291{bottom:407.346667pt;}
.y11_c00291{bottom:431.986667pt;}
.y10_c00291{bottom:456.392000pt;}
.yf_c00291{bottom:477.708000pt;}
.ye_c00291{bottom:502.302667pt;}
.yd_c00291{bottom:527.208000pt;}
.yc_c00291{bottom:547.326667pt;}
.yb_c00291{bottom:571.920000pt;}
.ya_c00291{bottom:597.074667pt;}
.y9_c00291{bottom:618.085333pt;}
.y8_c00291{bottom:637.584000pt;}
.y7_c00291{bottom:662.348000pt;}
.y6_c00291{bottom:686.920000pt;}
.y5_c00291{bottom:707.066667pt;}
.y4_c00291{bottom:727.454667pt;}
.y3_c00291{bottom:747.628000pt;}
.y2_c00291{bottom:770.518667pt;}
.y1_c00291{bottom:786.177333pt;}
.h3_c00291{height:19.600000pt;}
.hc_c00291{height:53.200000pt;}
.h8_c00291{height:56.000000pt;}
.hd_c00291{height:56.933333pt;}
.h10_c00291{height:57.866667pt;}
.h16_c00291{height:58.800000pt;}
.he_c00291{height:59.733333pt;}
.h11_c00291{height:59.734797pt;}
.h5_c00291{height:60.666667pt;}
.h7_c00291{height:61.600000pt;}
.ha_c00291{height:62.533333pt;}
.h6_c00291{height:63.466667pt;}
.h15_c00291{height:63.468222pt;}
.h14_c00291{height:64.401578pt;}
.h17_c00291{height:64.402608pt;}
.hb_c00291{height:66.266667pt;}
.h12_c00291{height:66.268290pt;}
.h9_c00291{height:67.200000pt;}
.hf_c00291{height:68.133333pt;}
.h4_c00291{height:69.066667pt;}
.h13_c00291{height:70.935071pt;}
.h2_c00291{height:76.533333pt;}
.h0_c00291{height:896.400000pt;}
.h1_c00291{height:896.666667pt;}
.w0_c00291{width:618.666667pt;}
.x0_c00291{left:0.000000pt;}
.xa9_c00291{left:142.320000pt;}
.x92_c00291{left:144.280488pt;}
.x5e_c00291{left:145.200000pt;}
.x1_c00291{left:146.640000pt;}
.x11_c00291{left:147.600000pt;}
.x89_c00291{left:158.320000pt;}
.x49_c00291{left:161.520000pt;}
.x34_c00291{left:162.720000pt;}
.x5_c00291{left:168.720000pt;}
.x93_c00291{left:171.576105pt;}
.x4a_c00291{left:174.480000pt;}
.x4f_c00291{left:177.840000pt;}
.x2b_c00291{left:178.800000pt;}
.x9a_c00291{left:181.439163pt;}
.x5f_c00291{left:183.600000pt;}
.x1c_c00291{left:185.760000pt;}
.x64_c00291{left:187.440000pt;}
.x7c_c00291{left:188.389333pt;}
.x26_c00291{left:190.320000pt;}
.x4b_c00291{left:191.760000pt;}
.x3f_c00291{left:195.360000pt;}
.x72_c00291{left:196.320000pt;}
.x6e_c00291{left:197.520000pt;}
.x35_c00291{left:198.720000pt;}
.x7d_c00291{left:199.880000pt;}
.x55_c00291{left:202.080000pt;}
.x6_c00291{left:203.760000pt;}
.xaa_c00291{left:207.600000pt;}
.x1d_c00291{left:209.040000pt;}
.xb1_c00291{left:210.146667pt;}
.xa2_c00291{left:211.440048pt;}
.x12_c00291{left:213.840000pt;}
.x2c_c00291{left:216.240000pt;}
.x40_c00291{left:217.920000pt;}
.x86_c00291{left:221.118667pt;}
.x50_c00291{left:222.720000pt;}
.x56_c00291{left:224.160000pt;}
.x9b_c00291{left:225.359985pt;}
.x4c_c00291{left:227.760000pt;}
.x13_c00291{left:229.200000pt;}
.x2d_c00291{left:230.160000pt;}
.x65_c00291{left:232.320000pt;}
.x70_c00291{left:235.680000pt;}
.xa0_c00291{left:238.422863pt;}
.x2_c00291{left:240.240000pt;}
.x8a_c00291{left:242.298667pt;}
.xab_c00291{left:247.200000pt;}
.x14_c00291{left:248.400000pt;}
.x41_c00291{left:250.080000pt;}
.x73_c00291{left:252.000000pt;}
.x9c_c00291{left:254.400071pt;}
.x7_c00291{left:256.800000pt;}
.x7e_c00291{left:258.197333pt;}
.x4d_c00291{left:259.200000pt;}
.x60_c00291{left:262.800000pt;}
.x2e_c00291{left:264.000000pt;}
.x8_c00291{left:266.160000pt;}
.x42_c00291{left:271.440000pt;}
.x57_c00291{left:272.400000pt;}
.x94_c00291{left:274.212001pt;}
.x1e_c00291{left:280.080000pt;}
.x27_c00291{left:281.280000pt;}
.x36_c00291{left:282.960000pt;}
.x74_c00291{left:284.400000pt;}
.x9_c00291{left:285.360000pt;}
.x6f_c00291{left:287.760000pt;}
.x43_c00291{left:291.360000pt;}
.x66_c00291{left:293.040000pt;}
.x15_c00291{left:294.240000pt;}
.x2f_c00291{left:295.680000pt;}
.x58_c00291{left:297.360000pt;}
.x71_c00291{left:299.760000pt;}
.xa_c00291{left:302.640000pt;}
.xa6_c00291{left:303.600859pt;}
.x51_c00291{left:310.560000pt;}
.x7f_c00291{left:314.081333pt;}
.x95_c00291{left:315.502089pt;}
.xb_c00291{left:317.280000pt;}
.x16_c00291{left:318.240000pt;}
.x61_c00291{left:319.200000pt;}
.x67_c00291{left:321.120000pt;}
.x37_c00291{left:322.800000pt;}
.x1f_c00291{left:324.240000pt;}
.xaf_c00291{left:325.440000pt;}
.x52_c00291{left:326.640000pt;}
.xac_c00291{left:331.440000pt;}
.x4e_c00291{left:332.640000pt;}
.x17_c00291{left:336.480000pt;}
.x20_c00291{left:339.360000pt;}
.x80_c00291{left:340.973333pt;}
.xc_c00291{left:343.440000pt;}
.x8b_c00291{left:346.216000pt;}
.xb2_c00291{left:348.332000pt;}
.x53_c00291{left:349.440000pt;}
.x59_c00291{left:352.320000pt;}
.x75_c00291{left:353.520000pt;}
.x30_c00291{left:354.720000pt;}
.x21_c00291{left:359.280000pt;}
.x62_c00291{left:363.600000pt;}
.x9d_c00291{left:364.562808pt;}
.x38_c00291{left:369.840000pt;}
.x31_c00291{left:371.280000pt;}
.xa1_c00291{left:374.015635pt;}
.x28_c00291{left:375.600000pt;}
.xa3_c00291{left:377.282844pt;}
.x68_c00291{left:379.200000pt;}
.x18_c00291{left:380.400000pt;}
.x63_c00291{left:382.800000pt;}
.x76_c00291{left:384.240000pt;}
.x9e_c00291{left:388.803993pt;}
.x22_c00291{left:390.960000pt;}
.x32_c00291{left:392.880000pt;}
.x39_c00291{left:393.840000pt;}
.xad_c00291{left:394.800000pt;}
.x3_c00291{left:396.480000pt;}
.xa7_c00291{left:398.404164pt;}
.xb3_c00291{left:400.158667pt;}
.x69_c00291{left:401.280000pt;}
.x19_c00291{left:404.160000pt;}
.x8c_c00291{left:409.562667pt;}
.x4_c00291{left:412.320000pt;}
.x81_c00291{left:414.652000pt;}
.x33_c00291{left:421.200000pt;}
.x3a_c00291{left:426.000000pt;}
.x54_c00291{left:430.800000pt;}
.x5a_c00291{left:433.680000pt;}
.x23_c00291{left:435.840000pt;}
.x44_c00291{left:439.200000pt;}
.x96_c00291{left:441.496325pt;}
.x8d_c00291{left:443.170667pt;}
.x87_c00291{left:445.532000pt;}
.x82_c00291{left:447.044000pt;}
.x29_c00291{left:449.520000pt;}
.x83_c00291{left:453.777333pt;}
.x45_c00291{left:454.800000pt;}
.x24_c00291{left:455.760000pt;}
.xd_c00291{left:458.640000pt;}
.x8e_c00291{left:462.074667pt;}
.xa8_c00291{left:462.965995pt;}
.x5b_c00291{left:465.120000pt;}
.x6a_c00291{left:466.080000pt;}
.xae_c00291{left:473.280000pt;}
.xa4_c00291{left:476.405040pt;}
.xb4_c00291{left:477.565333pt;}
.x46_c00291{left:482.400000pt;}
.x97_c00291{left:485.169043pt;}
.xe_c00291{left:487.680000pt;}
.x6b_c00291{left:489.600000pt;}
.x3b_c00291{left:495.120000pt;}
.x77_c00291{left:501.600000pt;}
.x2a_c00291{left:503.760000pt;}
.x1a_c00291{left:505.200000pt;}
.x47_c00291{left:509.040000pt;}
.x6c_c00291{left:515.040000pt;}
.x25_c00291{left:517.680000pt;}
.x8f_c00291{left:518.778667pt;}
.xf_c00291{left:521.760000pt;}
.x3c_c00291{left:522.960000pt;}
.x9f_c00291{left:524.888000pt;}
.x78_c00291{left:528.960000pt;}
.x5c_c00291{left:530.400000pt;}
.x1b_c00291{left:533.040000pt;}
.x98_c00291{left:540.806935pt;}
.x84_c00291{left:542.089333pt;}
.x90_c00291{left:544.410667pt;}
.x48_c00291{left:545.520000pt;}
.x3d_c00291{left:546.720000pt;}
.xa5_c00291{left:547.687197pt;}
.x10_c00291{left:552.000000pt;}
.x6d_c00291{left:555.120000pt;}
.x3e_c00291{left:561.120000pt;}
.xb0_c00291{left:562.800000pt;}
.x79_c00291{left:571.440000pt;}
.x85_c00291{left:575.476000pt;}
.x91_c00291{left:577.182667pt;}
.x88_c00291{left:578.160000pt;}
.x7a_c00291{left:583.680000pt;}
.x5d_c00291{left:587.040000pt;}
.x99_c00291{left:593.195531pt;}
.x7b_c00291{left:595.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_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_2f6c0d3825a5d54c0b922384.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;}
.m8f_c00292{transform:matrix(0.004170,0.000042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.004170,0.000042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.004170,0.000042,-0.002500,0.249988,0,0);}
.m4c_c00292{transform:matrix(0.005150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005150,0.000000,0.000000,0.250000,0,0);}
.m90_c00292{transform:matrix(0.008340,0.000083,-0.002500,0.249988,0,0);-ms-transform:matrix(0.008340,0.000083,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.008340,0.000083,-0.002500,0.249988,0,0);}
.m4d_c00292{transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);}
.mc1_c00292{transform:matrix(0.011364,0.000114,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011364,0.000114,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011364,0.000114,-0.002500,0.249988,0,0);}
.m26_c00292{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mb3_c00292{transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.012134,0.000121,-0.002500,0.249988,0,0);}
.m8c_c00292{transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);}
.mfb_c00292{transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00292{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);}
.mb2_c00292{transform:matrix(0.017424,0.000174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.017424,0.000174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.017424,0.000174,-0.002500,0.249988,0,0);}
.mf7_c00292{transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);}
.m11e_c00292{transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026745,0.000000,0.000000,0.250000,0,0);}
.m113_c00292{transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);}
.mb5_c00292{transform:matrix(0.047178,0.000472,-0.002500,0.249988,0,0);-ms-transform:matrix(0.047178,0.000472,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.047178,0.000472,-0.002500,0.249988,0,0);}
.m92_c00292{transform:matrix(0.073561,0.000736,-0.002500,0.249988,0,0);-ms-transform:matrix(0.073561,0.000736,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.073561,0.000736,-0.002500,0.249988,0,0);}
.m91_c00292{transform:matrix(0.085901,0.000859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.085901,0.000859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.085901,0.000859,-0.002500,0.249988,0,0);}
.m2e_c00292{transform:matrix(0.088605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088605,0.000000,0.000000,0.250000,0,0);}
.m59_c00292{transform:matrix(0.089695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089695,0.000000,0.000000,0.250000,0,0);}
.m65_c00292{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00292{transform:matrix(0.101395,0.001014,-0.002500,0.249988,0,0);-ms-transform:matrix(0.101395,0.001014,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.101395,0.001014,-0.002500,0.249988,0,0);}
.mb4_c00292{transform:matrix(0.106235,0.001062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.106235,0.001062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.106235,0.001062,-0.002500,0.249988,0,0);}
.m4f_c00292{transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);}
.m54_c00292{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.mab_c00292{transform:matrix(0.134043,0.001340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.134043,0.001340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.134043,0.001340,-0.002500,0.249988,0,0);}
.mdb_c00292{transform:matrix(0.141428,0.001414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.141428,0.001414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.141428,0.001414,-0.002500,0.249988,0,0);}
.m8a_c00292{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);}
.m8e_c00292{transform:matrix(0.147698,0.001477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147698,0.001477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147698,0.001477,-0.002500,0.249988,0,0);}
.m88_c00292{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);}
.m106_c00292{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);}
.m80_c00292{transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);}
.m63_c00292{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);}
.m23_c00292{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);}
.m7c_c00292{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);}
.m83_c00292{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);}
.md2_c00292{transform:matrix(0.154707,0.001547,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154707,0.001547,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154707,0.001547,-0.002500,0.249988,0,0);}
.m1b_c00292{transform:matrix(0.155035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155035,0.000000,0.000000,0.250000,0,0);}
.me_c00292{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);}
.m50_c00292{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);}
.m53_c00292{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);}
.m32_c00292{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);}
.ma_c00292{transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{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);}
.m1a_c00292{transform:matrix(0.163670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163670,0.000000,0.000000,0.250000,0,0);}
.m35_c00292{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);}
.m16_c00292{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);}
.me4_c00292{transform:matrix(0.164487,0.001645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164487,0.001645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164487,0.001645,-0.002500,0.249988,0,0);}
.m18_c00292{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);}
.md7_c00292{transform:matrix(0.164802,0.001648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164802,0.001648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164802,0.001648,-0.002500,0.249988,0,0);}
.m2d_c00292{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);}
.m10c_c00292{transform:matrix(0.167342,0.001673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167342,0.001673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167342,0.001673,-0.002500,0.249988,0,0);}
.mfc_c00292{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_c00292{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);}
.m45_c00292{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{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);}
.m19_c00292{transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);}
.m41_c00292{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_c00292{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);}
.md8_c00292{transform:matrix(0.170096,0.001701,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170096,0.001701,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170096,0.001701,-0.002500,0.249988,0,0);}
.m6f_c00292{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);}
.m3b_c00292{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);}
.m71_c00292{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);}
.md_c00292{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);}
.mcb_c00292{transform:matrix(0.173666,0.001737,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173666,0.001737,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173666,0.001737,-0.002500,0.249988,0,0);}
.m51_c00292{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);}
.m6a_c00292{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);}
.mdf_c00292{transform:matrix(0.175766,0.001758,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175766,0.001758,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175766,0.001758,-0.002500,0.249988,0,0);}
.m20_c00292{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);}
.m6e_c00292{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);}
.m70_c00292{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);}
.m28_c00292{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);}
.m5d_c00292{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);}
.m52_c00292{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);}
.mf_c00292{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);}
.m62_c00292{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);}
.m5f_c00292{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);}
.m33_c00292{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);}
.m66_c00292{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);}
.m6_c00292{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);}
.m86_c00292{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);}
.m6d_c00292{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);}
.m3e_c00292{transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00292{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_c00292{transform:matrix(0.184001,0.001840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184001,0.001840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184001,0.001840,-0.002500,0.249988,0,0);}
.me8_c00292{transform:matrix(0.184716,0.001847,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184716,0.001847,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184716,0.001847,-0.002500,0.249988,0,0);}
.m6c_c00292{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);}
.ma5_c00292{transform:matrix(0.185721,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185721,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185721,0.001857,-0.002500,0.249988,0,0);}
.m9_c00292{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);}
.m2c_c00292{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);}
.m29_c00292{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);}
.m14_c00292{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);}
.m24_c00292{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);}
.mcc_c00292{transform:matrix(0.188756,0.001888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188756,0.001888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188756,0.001888,-0.002500,0.249988,0,0);}
.m2a_c00292{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);}
.m68_c00292{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);}
.m60_c00292{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);}
.m69_c00292{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);}
.m61_c00292{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);}
.m3a_c00292{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);}
.m3_c00292{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);}
.ma4_c00292{transform:matrix(0.191900,0.001919,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191900,0.001919,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191900,0.001919,-0.002500,0.249988,0,0);}
.m15_c00292{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);}
.m34_c00292{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);}
.me2_c00292{transform:matrix(0.193265,0.001933,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193265,0.001933,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193265,0.001933,-0.002500,0.249988,0,0);}
.m3c_c00292{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);}
.m74_c00292{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);}
.m9e_c00292{transform:matrix(0.194125,0.001941,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194125,0.001941,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194125,0.001941,-0.002500,0.249988,0,0);}
.m6b_c00292{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);}
.med_c00292{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);}
.mc0_c00292{transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);}
.m57_c00292{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);}
.m7f_c00292{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);}
.me3_c00292{transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);}
.m2_c00292{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);}
.m5e_c00292{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);}
.m25_c00292{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);}
.m2b_c00292{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);}
.m10_c00292{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);}
.md0_c00292{transform:matrix(0.198390,0.001984,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198390,0.001984,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198390,0.001984,-0.002500,0.249988,0,0);}
.m67_c00292{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);}
.m73_c00292{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);}
.m7e_c00292{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);}
.mfe_c00292{transform:matrix(0.200465,0.002005,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200465,0.002005,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200465,0.002005,-0.002500,0.249988,0,0);}
.m4_c00292{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);}
.m76_c00292{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);}
.m79_c00292{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);}
.m7a_c00292{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);}
.m48_c00292{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);}
.mdd_c00292{transform:matrix(0.204025,0.002040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204025,0.002040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204025,0.002040,-0.002500,0.249988,0,0);}
.m7d_c00292{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);}
.mcd_c00292{transform:matrix(0.205080,0.002051,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205080,0.002051,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205080,0.002051,-0.002500,0.249988,0,0);}
.mb7_c00292{transform:matrix(0.205165,0.002052,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205165,0.002052,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205165,0.002052,-0.002500,0.249988,0,0);}
.m87_c00292{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);}
.me9_c00292{transform:matrix(0.205760,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205760,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205760,0.002058,-0.002500,0.249988,0,0);}
.mc_c00292{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);}
.m75_c00292{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);}
.m56_c00292{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{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);}
.mac_c00292{transform:matrix(0.208620,0.002086,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208620,0.002086,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208620,0.002086,-0.002500,0.249988,0,0);}
.m2f_c00292{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);}
.mea_c00292{transform:matrix(0.208825,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208825,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208825,0.002088,-0.002500,0.249988,0,0);}
.m11_c00292{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);}
.m7b_c00292{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);}
.mdc_c00292{transform:matrix(0.210424,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210424,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210424,0.002104,-0.002500,0.249988,0,0);}
.ma2_c00292{transform:matrix(0.211169,0.002112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211169,0.002112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211169,0.002112,-0.002500,0.249988,0,0);}
.mef_c00292{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);}
.m104_c00292{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);}
.m9f_c00292{transform:matrix(0.211549,0.002115,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211549,0.002115,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211549,0.002115,-0.002500,0.249988,0,0);}
.m82_c00292{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);}
.mde_c00292{transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);}
.m39_c00292{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);}
.m1c_c00292{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);}
.m21_c00292{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);}
.md6_c00292{transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213209,0.002132,-0.002500,0.249988,0,0);}
.m38_c00292{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);}
.m37_c00292{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);}
.ma3_c00292{transform:matrix(0.215589,0.002156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215589,0.002156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215589,0.002156,-0.002500,0.249988,0,0);}
.md1_c00292{transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);}
.m27_c00292{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);}
.mb8_c00292{transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);}
.ma0_c00292{transform:matrix(0.217979,0.002180,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217979,0.002180,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217979,0.002180,-0.002500,0.249988,0,0);}
.md9_c00292{transform:matrix(0.219064,0.002191,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219064,0.002191,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219064,0.002191,-0.002500,0.249988,0,0);}
.m85_c00292{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);}
.m13_c00292{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);}
.m9a_c00292{transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);}
.m1d_c00292{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);}
.mb0_c00292{transform:matrix(0.221314,0.002213,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221314,0.002213,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221314,0.002213,-0.002500,0.249988,0,0);}
.m31_c00292{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);}
.maa_c00292{transform:matrix(0.222229,0.002222,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222229,0.002222,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222229,0.002222,-0.002500,0.249988,0,0);}
.m103_c00292{transform:matrix(0.223889,0.002239,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223889,0.002239,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223889,0.002239,-0.002500,0.249988,0,0);}
.mee_c00292{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);}
.m49_c00292{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);}
.m22_c00292{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00292{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);}
.mbf_c00292{transform:matrix(0.226899,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226899,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226899,0.002269,-0.002500,0.249988,0,0);}
.ma6_c00292{transform:matrix(0.226914,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226914,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226914,0.002269,-0.002500,0.249988,0,0);}
.mc5_c00292{transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);}
.m64_c00292{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);}
.me1_c00292{transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);}
.m58_c00292{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);}
.m119_c00292{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);}
.mda_c00292{transform:matrix(0.228884,0.002289,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228884,0.002289,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228884,0.002289,-0.002500,0.249988,0,0);}
.mff_c00292{transform:matrix(0.229264,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229264,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229264,0.002293,-0.002500,0.249988,0,0);}
.md5_c00292{transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229984,0.002300,-0.002500,0.249988,0,0);}
.m42_c00292{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);}
.mb6_c00292{transform:matrix(0.231943,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231943,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231943,0.002319,-0.002500,0.249988,0,0);}
.m30_c00292{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);}
.m95_c00292{transform:matrix(0.232343,0.002323,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232343,0.002323,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232343,0.002323,-0.002500,0.249988,0,0);}
.mbb_c00292{transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233993,0.002340,-0.002500,0.249988,0,0);}
.m55_c00292{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);}
.m11f_c00292{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.mf5_c00292{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);}
.md3_c00292{transform:matrix(0.235333,0.002353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235333,0.002353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235333,0.002353,-0.002500,0.249988,0,0);}
.me0_c00292{transform:matrix(0.235653,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235653,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235653,0.002357,-0.002500,0.249988,0,0);}
.mc2_c00292{transform:matrix(0.235933,0.002359,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235933,0.002359,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235933,0.002359,-0.002500,0.249988,0,0);}
.m105_c00292{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.mfa_c00292{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);}
.mca_c00292{transform:matrix(0.240768,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240768,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240768,0.002408,-0.002500,0.249988,0,0);}
.m11d_c00292{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);}
.m9d_c00292{transform:matrix(0.241178,0.002412,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241178,0.002412,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241178,0.002412,-0.002500,0.249988,0,0);}
.m4a_c00292{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);}
.m47_c00292{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);}
.mf3_c00292{transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244890,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{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);}
.md4_c00292{transform:matrix(0.246288,0.002463,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246288,0.002463,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246288,0.002463,-0.002500,0.249988,0,0);}
.mb_c00292{transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);}
.m72_c00292{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.mf8_c00292{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);}
.mc8_c00292{transform:matrix(0.247453,0.002475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247453,0.002475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247453,0.002475,-0.002500,0.249988,0,0);}
.m111_c00292{transform:matrix(0.251762,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251762,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251762,0.002518,-0.002500,0.249988,0,0);}
.ma7_c00292{transform:matrix(0.252642,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252642,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252642,0.002526,-0.002500,0.249988,0,0);}
.m99_c00292{transform:matrix(0.253917,0.002539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253917,0.002539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253917,0.002539,-0.002500,0.249988,0,0);}
.mc9_c00292{transform:matrix(0.256192,0.002562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256192,0.002562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256192,0.002562,-0.002500,0.249988,0,0);}
.mce_c00292{transform:matrix(0.256287,0.002563,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256287,0.002563,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256287,0.002563,-0.002500,0.249988,0,0);}
.ma1_c00292{transform:matrix(0.257582,0.002576,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257582,0.002576,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257582,0.002576,-0.002500,0.249988,0,0);}
.mcf_c00292{transform:matrix(0.259472,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259472,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259472,0.002595,-0.002500,0.249988,0,0);}
.mc7_c00292{transform:matrix(0.263562,0.002636,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263562,0.002636,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263562,0.002636,-0.002500,0.249988,0,0);}
.m11b_c00292{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.mba_c00292{transform:matrix(0.266642,0.002666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266642,0.002666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266642,0.002666,-0.002500,0.249988,0,0);}
.m40_c00292{transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266960,0.000000,0.000000,0.250000,0,0);}
.mfd_c00292{transform:matrix(0.267812,0.002678,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267812,0.002678,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267812,0.002678,-0.002500,0.249988,0,0);}
.m7_c00292{transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267875,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.mad_c00292{transform:matrix(0.271106,0.002711,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271106,0.002711,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271106,0.002711,-0.002500,0.249988,0,0);}
.m96_c00292{transform:matrix(0.271691,0.002717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271691,0.002717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271691,0.002717,-0.002500,0.249988,0,0);}
.m0_c00292{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.mc3_c00292{transform:matrix(0.275446,0.002754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275446,0.002754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275446,0.002754,-0.002500,0.249988,0,0);}
.m11a_c00292{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);}
.m5b_c00292{transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);}
.m77_c00292{transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);}
.mbd_c00292{transform:matrix(0.290875,0.002909,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290875,0.002909,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290875,0.002909,-0.002500,0.249988,0,0);}
.mc4_c00292{transform:matrix(0.293565,0.002936,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293565,0.002936,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293565,0.002936,-0.002500,0.249988,0,0);}
.mf0_c00292{transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294585,0.000000,0.000000,0.250000,0,0);}
.maf_c00292{transform:matrix(0.298805,0.002988,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298805,0.002988,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298805,0.002988,-0.002500,0.249988,0,0);}
.mc6_c00292{transform:matrix(0.299085,0.002991,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299085,0.002991,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299085,0.002991,-0.002500,0.249988,0,0);}
.mf6_c00292{transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309180,0.000000,0.000000,0.250000,0,0);}
.ma8_c00292{transform:matrix(0.310234,0.003102,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310234,0.003102,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310234,0.003102,-0.002500,0.249988,0,0);}
.mf2_c00292{transform:matrix(0.322210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322210,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);}
.m8d_c00292{transform:matrix(0.339920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339920,0.000000,0.000000,0.250000,0,0);}
.m9c_c00292{transform:matrix(0.341348,0.003413,-0.002500,0.249988,0,0);-ms-transform:matrix(0.341348,0.003413,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.341348,0.003413,-0.002500,0.249988,0,0);}
.m4b_c00292{transform:matrix(0.345335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345335,0.000000,0.000000,0.250000,0,0);}
.m11c_c00292{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.meb_c00292{transform:matrix(0.355232,0.003552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.355232,0.003552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.355232,0.003552,-0.002500,0.249988,0,0);}
.m78_c00292{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);}
.m115_c00292{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);}
.m84_c00292{transform:matrix(0.360490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00292{transform:matrix(0.371165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371165,0.000000,0.000000,0.250000,0,0);}
.mb1_c00292{transform:matrix(0.373591,0.003736,-0.002500,0.249988,0,0);-ms-transform:matrix(0.373591,0.003736,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.373591,0.003736,-0.002500,0.249988,0,0);}
.m36_c00292{transform:matrix(0.378305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378305,0.000000,0.000000,0.250000,0,0);}
.m10a_c00292{transform:matrix(0.380526,0.003805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.380526,0.003805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.380526,0.003805,-0.002500,0.249988,0,0);}
.ma9_c00292{transform:matrix(0.385956,0.003860,-0.002500,0.249988,0,0);-ms-transform:matrix(0.385956,0.003860,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.385956,0.003860,-0.002500,0.249988,0,0);}
.mb9_c00292{transform:matrix(0.386876,0.003869,-0.002500,0.249988,0,0);-ms-transform:matrix(0.386876,0.003869,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.386876,0.003869,-0.002500,0.249988,0,0);}
.m10d_c00292{transform:matrix(0.399780,0.003998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.399780,0.003998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.399780,0.003998,-0.002500,0.249988,0,0);}
.m109_c00292{transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402760,0.000000,0.000000,0.250000,0,0);}
.m97_c00292{transform:matrix(0.405520,0.004055,-0.002500,0.249988,0,0);-ms-transform:matrix(0.405520,0.004055,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.405520,0.004055,-0.002500,0.249988,0,0);}
.m9b_c00292{transform:matrix(0.409240,0.004092,-0.002500,0.249988,0,0);-ms-transform:matrix(0.409240,0.004092,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.409240,0.004092,-0.002500,0.249988,0,0);}
.m118_c00292{transform:matrix(0.413485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413485,0.000000,0.000000,0.250000,0,0);}
.mbe_c00292{transform:matrix(0.415279,0.004153,-0.002500,0.249988,0,0);-ms-transform:matrix(0.415279,0.004153,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.415279,0.004153,-0.002500,0.249988,0,0);}
.m112_c00292{transform:matrix(0.435513,0.004355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.435513,0.004355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.435513,0.004355,-0.002500,0.249988,0,0);}
.m93_c00292{transform:matrix(0.472621,0.004726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.472621,0.004726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.472621,0.004726,-0.002500,0.249988,0,0);}
.m108_c00292{transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);}
.mf4_c00292{transform:matrix(0.487135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487135,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);}
.m98_c00292{transform:matrix(0.501075,0.005011,-0.002500,0.249988,0,0);-ms-transform:matrix(0.501075,0.005011,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.501075,0.005011,-0.002500,0.249988,0,0);}
.m44_c00292{transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513015,0.000000,0.000000,0.250000,0,0);}
.m10e_c00292{transform:matrix(0.517569,0.005176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.517569,0.005176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.517569,0.005176,-0.002500,0.249988,0,0);}
.mec_c00292{transform:matrix(0.522690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522690,0.000000,0.000000,0.250000,0,0);}
.m117_c00292{transform:matrix(0.524465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524465,0.000000,0.000000,0.250000,0,0);}
.m94_c00292{transform:matrix(0.526144,0.005261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.526144,0.005261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.526144,0.005261,-0.002500,0.249988,0,0);}
.m114_c00292{transform:matrix(0.527645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527645,0.000000,0.000000,0.250000,0,0);}
.m100_c00292{transform:matrix(0.567482,0.005675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.567482,0.005675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.567482,0.005675,-0.002500,0.249988,0,0);}
.me7_c00292{transform:matrix(0.591515,0.005915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.591515,0.005915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.591515,0.005915,-0.002500,0.249988,0,0);}
.m116_c00292{transform:matrix(0.594980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594980,0.000000,0.000000,0.250000,0,0);}
.m89_c00292{transform:matrix(0.608860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608860,0.000000,0.000000,0.250000,0,0);}
.m10f_c00292{transform:matrix(0.616144,0.006161,-0.002500,0.249988,0,0);-ms-transform:matrix(0.616144,0.006161,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.616144,0.006161,-0.002500,0.249988,0,0);}
.mae_c00292{transform:matrix(0.624024,0.006240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.624024,0.006240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.624024,0.006240,-0.002500,0.249988,0,0);}
.m46_c00292{transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628065,0.000000,0.000000,0.250000,0,0);}
.m102_c00292{transform:matrix(0.632233,0.006322,-0.002500,0.249988,0,0);-ms-transform:matrix(0.632233,0.006322,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.632233,0.006322,-0.002500,0.249988,0,0);}
.m43_c00292{transform:matrix(0.645965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645965,0.000000,0.000000,0.250000,0,0);}
.m107_c00292{transform:matrix(0.667690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667690,0.000000,0.000000,0.250000,0,0);}
.m101_c00292{transform:matrix(0.682746,0.006827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.682746,0.006827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.682746,0.006827,-0.002500,0.249988,0,0);}
.mf9_c00292{transform:matrix(0.732400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732400,0.000000,0.000000,0.250000,0,0);}
.me5_c00292{transform:matrix(0.749693,0.007497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.749693,0.007497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.749693,0.007497,-0.002500,0.249988,0,0);}
.mf1_c00292{transform:matrix(0.757305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757305,0.000000,0.000000,0.250000,0,0);}
.m8b_c00292{transform:matrix(0.886830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886830,0.000000,0.000000,0.250000,0,0);}
.m110_c00292{transform:matrix(1.349223,0.013492,-0.002500,0.249988,0,0);-ms-transform:matrix(1.349223,0.013492,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.349223,0.013492,-0.002500,0.249988,0,0);}
.m10b_c00292{transform:matrix(2.559612,0.025596,-0.002500,0.249988,0,0);-ms-transform:matrix(2.559612,0.025596,-0.002500,0.249988,0,0);-webkit-transform:matrix(2.559612,0.025596,-0.002500,0.249988,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;}
.fs12_c00292{font-size:23.101155px;}
.fs14_c00292{font-size:45.150000px;}
.fsf_c00292{font-size:51.450000px;}
.fs13_c00292{font-size:53.550000px;}
.fs11_c00292{font-size:53.552677px;}
.fs10_c00292{font-size:55.650000px;}
.fs8_c00292{font-size:58.800000px;}
.fs6_c00292{font-size:63.000000px;}
.fs4_c00292{font-size:66.150000px;}
.fs7_c00292{font-size:67.200000px;}
.fsd_c00292{font-size:67.203360px;}
.fs9_c00292{font-size:68.253412px;}
.fs2_c00292{font-size:69.300000px;}
.fsb_c00292{font-size:69.303465px;}
.fsc_c00292{font-size:70.353517px;}
.fs1_c00292{font-size:71.400000px;}
.fsa_c00292{font-size:71.403570px;}
.fs5_c00292{font-size:72.450000px;}
.fse_c00292{font-size:74.553727px;}
.fs3_c00292{font-size:75.600000px;}
.fs0_c00292{font-size:135.450000px;}
.y0_c00292{bottom:0.000000px;}
.ycd_c00292{bottom:126.716175px;}
.ycc_c00292{bottom:127.086300px;}
.ycb_c00292{bottom:127.272840px;}
.yca_c00292{bottom:127.939350px;}
.yc9_c00292{bottom:128.285100px;}
.yc8_c00292{bottom:128.678820px;}
.yc7_c00292{bottom:128.914065px;}
.yc6_c00292{bottom:129.297660px;}
.yc5_c00292{bottom:129.871980px;}
.yc4_c00292{bottom:130.140000px;}
.yc3_c00292{bottom:142.954500px;}
.yc2_c00292{bottom:161.893875px;}
.yc1_c00292{bottom:163.409100px;}
.yc0_c00292{bottom:163.769400px;}
.ybf_c00292{bottom:164.458005px;}
.ybe_c00292{bottom:164.775645px;}
.ybd_c00292{bottom:165.053535px;}
.ybc_c00292{bottom:165.480000px;}
.ybb_c00292{bottom:180.940500px;}
.ycf_c00292{bottom:183.060000px;}
.yba_c00292{bottom:198.054000px;}
.yce_c00292{bottom:199.932000px;}
.yb9_c00292{bottom:244.746825px;}
.yb8_c00292{bottom:245.277375px;}
.yb7_c00292{bottom:245.954445px;}
.yb6_c00292{bottom:246.218205px;}
.yb5_c00292{bottom:246.789360px;}
.yb4_c00292{bottom:247.040490px;}
.yb3_c00292{bottom:247.463805px;}
.yb2_c00292{bottom:247.652745px;}
.yb1_c00292{bottom:248.076375px;}
.yb0_c00292{bottom:268.151280px;}
.yaf_c00292{bottom:268.562535px;}
.yae_c00292{bottom:268.832175px;}
.yad_c00292{bottom:269.300490px;}
.yac_c00292{bottom:269.959125px;}
.yab_c00292{bottom:270.160695px;}
.yaa_c00292{bottom:270.818940px;}
.ya9_c00292{bottom:270.954690px;}
.ya8_c00292{bottom:271.292940px;}
.ya7_c00292{bottom:272.078250px;}
.ya1_c00292{bottom:292.062975px;}
.ya0_c00292{bottom:292.063260px;}
.ya2_c00292{bottom:292.063590px;}
.y9c_c00292{bottom:292.063770px;}
.y9d_c00292{bottom:292.063785px;}
.y9f_c00292{bottom:292.063860px;}
.ya4_c00292{bottom:292.063935px;}
.ya5_c00292{bottom:292.063980px;}
.y9b_c00292{bottom:292.064040px;}
.ya3_c00292{bottom:292.064220px;}
.ya6_c00292{bottom:292.064295px;}
.y9e_c00292{bottom:292.064415px;}
.y9a_c00292{bottom:312.862095px;}
.y99_c00292{bottom:313.091070px;}
.y98_c00292{bottom:313.640430px;}
.y97_c00292{bottom:313.951215px;}
.y96_c00292{bottom:314.339790px;}
.y95_c00292{bottom:314.724285px;}
.y94_c00292{bottom:314.914185px;}
.y93_c00292{bottom:315.240870px;}
.y92_c00292{bottom:315.419775px;}
.y91_c00292{bottom:315.760905px;}
.y90_c00292{bottom:316.089330px;}
.y8f_c00292{bottom:316.166730px;}
.y8e_c00292{bottom:335.261115px;}
.y8d_c00292{bottom:335.538465px;}
.y8c_c00292{bottom:335.747610px;}
.y8b_c00292{bottom:336.328365px;}
.y8a_c00292{bottom:336.407220px;}
.y89_c00292{bottom:336.840990px;}
.y88_c00292{bottom:337.253760px;}
.y87_c00292{bottom:337.487715px;}
.y86_c00292{bottom:337.914240px;}
.y85_c00292{bottom:338.261280px;}
.y84_c00292{bottom:338.623425px;}
.y83_c00292{bottom:338.708310px;}
.y82_c00292{bottom:338.984550px;}
.y81_c00292{bottom:339.383970px;}
.y80_c00292{bottom:357.067830px;}
.y7f_c00292{bottom:360.189375px;}
.y7e_c00292{bottom:361.203975px;}
.y7d_c00292{bottom:361.618425px;}
.y7c_c00292{bottom:362.354220px;}
.y7b_c00292{bottom:381.135570px;}
.y7a_c00292{bottom:381.396345px;}
.y79_c00292{bottom:381.720285px;}
.y78_c00292{bottom:381.879555px;}
.y77_c00292{bottom:382.169535px;}
.y76_c00292{bottom:382.320855px;}
.y75_c00292{bottom:382.979730px;}
.y74_c00292{bottom:383.167770px;}
.y73_c00292{bottom:383.357400px;}
.y72_c00292{bottom:384.001515px;}
.y71_c00292{bottom:384.191325px;}
.y70_c00292{bottom:384.448035px;}
.y6f_c00292{bottom:384.748320px;}
.y6e_c00292{bottom:404.333505px;}
.y6d_c00292{bottom:404.667465px;}
.y6c_c00292{bottom:404.827500px;}
.y6b_c00292{bottom:405.085185px;}
.y6a_c00292{bottom:405.261750px;}
.y69_c00292{bottom:405.725610px;}
.y68_c00292{bottom:406.020180px;}
.y67_c00292{bottom:406.246710px;}
.y66_c00292{bottom:406.629255px;}
.y65_c00292{bottom:406.888185px;}
.y64_c00292{bottom:407.162745px;}
.y63_c00292{bottom:431.605605px;}
.y62_c00292{bottom:431.897625px;}
.y61_c00292{bottom:432.322050px;}
.y60_c00292{bottom:433.405155px;}
.y5f_c00292{bottom:434.919855px;}
.y5e_c00292{bottom:435.152175px;}
.y5d_c00292{bottom:435.456780px;}
.y5c_c00292{bottom:435.765000px;}
.y5b_c00292{bottom:455.994000px;}
.y5a_c00292{bottom:476.256000px;}
.y59_c00292{bottom:476.664000px;}
.y58_c00292{bottom:476.815500px;}
.y57_c00292{bottom:477.334500px;}
.y56_c00292{bottom:477.537000px;}
.y55_c00292{bottom:478.144500px;}
.y54_c00292{bottom:478.530000px;}
.y53_c00292{bottom:478.689000px;}
.y52_c00292{bottom:479.430000px;}
.y51_c00292{bottom:479.737500px;}
.y50_c00292{bottom:479.829000px;}
.y4f_c00292{bottom:480.631500px;}
.y4e_c00292{bottom:480.867000px;}
.y4d_c00292{bottom:499.270500px;}
.y4c_c00292{bottom:499.509000px;}
.y4b_c00292{bottom:499.908000px;}
.y4a_c00292{bottom:500.172000px;}
.y49_c00292{bottom:500.677500px;}
.y48_c00292{bottom:500.785500px;}
.y47_c00292{bottom:501.556500px;}
.y46_c00292{bottom:502.035000px;}
.y45_c00292{bottom:502.318500px;}
.y44_c00292{bottom:502.788000px;}
.y43_c00292{bottom:503.230500px;}
.y42_c00292{bottom:503.815500px;}
.y41_c00292{bottom:522.046500px;}
.y40_c00292{bottom:522.562500px;}
.y3f_c00292{bottom:522.849000px;}
.y3e_c00292{bottom:523.233000px;}
.y3d_c00292{bottom:523.665000px;}
.y3c_c00292{bottom:524.445000px;}
.y3b_c00292{bottom:525.249000px;}
.y3a_c00292{bottom:525.535500px;}
.y39_c00292{bottom:526.497000px;}
.y38_c00292{bottom:545.470500px;}
.y37_c00292{bottom:546.190500px;}
.y36_c00292{bottom:546.373500px;}
.y35_c00292{bottom:546.484500px;}
.y34_c00292{bottom:546.889500px;}
.y33_c00292{bottom:547.075500px;}
.y32_c00292{bottom:547.456500px;}
.y31_c00292{bottom:547.828500px;}
.y30_c00292{bottom:548.613000px;}
.y2f_c00292{bottom:548.794500px;}
.y2e_c00292{bottom:549.178500px;}
.y2d_c00292{bottom:567.679500px;}
.y2c_c00292{bottom:568.062000px;}
.y2b_c00292{bottom:568.431000px;}
.y2a_c00292{bottom:568.543500px;}
.y29_c00292{bottom:568.683000px;}
.y28_c00292{bottom:569.335500px;}
.y27_c00292{bottom:569.572500px;}
.y26_c00292{bottom:570.447000px;}
.y25_c00292{bottom:570.666000px;}
.y24_c00292{bottom:570.817500px;}
.y23_c00292{bottom:571.272000px;}
.y22_c00292{bottom:571.669500px;}
.y21_c00292{bottom:572.361000px;}
.y20_c00292{bottom:572.563500px;}
.y1f_c00292{bottom:593.073000px;}
.y1e_c00292{bottom:658.765500px;}
.y1d_c00292{bottom:658.893000px;}
.y1c_c00292{bottom:659.506500px;}
.y1b_c00292{bottom:659.754000px;}
.y1a_c00292{bottom:660.556500px;}
.y19_c00292{bottom:661.191000px;}
.y18_c00292{bottom:661.497000px;}
.y17_c00292{bottom:681.241500px;}
.y16_c00292{bottom:681.417000px;}
.y15_c00292{bottom:682.098000px;}
.y14_c00292{bottom:682.608000px;}
.y13_c00292{bottom:682.830000px;}
.y12_c00292{bottom:683.203500px;}
.y11_c00292{bottom:683.430000px;}
.y10_c00292{bottom:683.770500px;}
.yf_c00292{bottom:684.178500px;}
.ye_c00292{bottom:704.671500px;}
.yd_c00292{bottom:727.962000px;}
.yc_c00292{bottom:749.931000px;}
.yb_c00292{bottom:771.534000px;}
.ya_c00292{bottom:771.637500px;}
.y9_c00292{bottom:771.964500px;}
.y8_c00292{bottom:772.470000px;}
.y7_c00292{bottom:773.055000px;}
.y6_c00292{bottom:773.232000px;}
.y5_c00292{bottom:773.688000px;}
.y4_c00292{bottom:774.090000px;}
.y3_c00292{bottom:795.384000px;}
.y2_c00292{bottom:818.500500px;}
.y1_c00292{bottom:864.522000px;}
.h14_c00292{height:23.101155px;}
.h16_c00292{height:45.150000px;}
.h11_c00292{height:51.450000px;}
.h15_c00292{height:53.550000px;}
.h13_c00292{height:53.552677px;}
.h12_c00292{height:55.650000px;}
.ha_c00292{height:58.800000px;}
.h8_c00292{height:63.000000px;}
.h6_c00292{height:66.150000px;}
.h9_c00292{height:67.200000px;}
.hf_c00292{height:67.203360px;}
.hb_c00292{height:68.253412px;}
.h4_c00292{height:69.300000px;}
.hd_c00292{height:69.303465px;}
.he_c00292{height:70.353517px;}
.h3_c00292{height:71.400000px;}
.hc_c00292{height:71.403570px;}
.h7_c00292{height:72.450000px;}
.h10_c00292{height:74.553727px;}
.h5_c00292{height:75.600000px;}
.h2_c00292{height:135.450000px;}
.h1_c00292{height:1005.000000px;}
.h0_c00292{height:1005.150000px;}
.w0_c00292{width:702.540000px;}
.w1_c00292{width:702.750000px;}
.x0_c00292{left:0.000000px;}
.xad_c00292{left:29.154000px;}
.xa8_c00292{left:31.320000px;}
.xae_c00292{left:55.956000px;}
.x96_c00292{left:68.178690px;}
.x8a_c00292{left:70.071720px;}
.x99_c00292{left:72.776655px;}
.x81_c00292{left:75.080370px;}
.x8e_c00292{left:78.300540px;}
.x62_c00292{left:80.601000px;}
.x6b_c00292{left:81.805500px;}
.x3a_c00292{left:83.430000px;}
.x44_c00292{left:84.930000px;}
.xa9_c00292{left:91.260000px;}
.x71_c00292{left:99.183000px;}
.xb8_c00292{left:102.600000px;}
.x63_c00292{left:104.088000px;}
.x2e_c00292{left:105.699000px;}
.x24_c00292{left:110.430000px;}
.xaf_c00292{left:113.388000px;}
.x15_c00292{left:116.268000px;}
.xc_c00292{left:120.150000px;}
.xb9_c00292{left:121.230000px;}
.x5_c00292{left:122.310000px;}
.xaa_c00292{left:124.740000px;}
.x8f_c00292{left:130.682775px;}
.x4d_c00292{left:132.469500px;}
.x6d_c00292{left:135.066000px;}
.xba_c00292{left:136.890000px;}
.x72_c00292{left:138.340170px;}
.x5a_c00292{left:141.873000px;}
.x3b_c00292{left:143.640000px;}
.x2f_c00292{left:146.434500px;}
.x25_c00292{left:147.960000px;}
.x82_c00292{left:150.297135px;}
.x79_c00292{left:151.350525px;}
.x36_c00292{left:153.003000px;}
.xa6_c00292{left:154.062000px;}
.x4e_c00292{left:155.146500px;}
.xd_c00292{left:157.140000px;}
.x83_c00292{left:159.685725px;}
.x8b_c00292{left:163.519095px;}
.x2b_c00292{left:165.240000px;}
.x16_c00292{left:166.513500px;}
.x1d_c00292{left:167.670000px;}
.xb5_c00292{left:173.070000px;}
.x45_c00292{left:174.295500px;}
.x73_c00292{left:175.334280px;}
.x30_c00292{left:180.516000px;}
.xa7_c00292{left:181.851000px;}
.x3c_c00292{left:184.140000px;}
.x6_c00292{left:186.030000px;}
.x1e_c00292{left:188.190000px;}
.x64_c00292{left:193.425000px;}
.xe_c00292{left:197.640000px;}
.x84_c00292{left:199.950630px;}
.x26_c00292{left:201.690000px;}
.x31_c00292{left:203.148000px;}
.xb6_c00292{left:206.820000px;}
.x54_c00292{left:208.575000px;}
.x90_c00292{left:212.226435px;}
.x1_c00292{left:213.570000px;}
.xb0_c00292{left:214.644000px;}
.x37_c00292{left:216.463500px;}
.x27_c00292{left:220.860000px;}
.x17_c00292{left:223.458000px;}
.x1f_c00292{left:226.800000px;}
.x74_c00292{left:229.940415px;}
.x7_c00292{left:231.660000px;}
.x5b_c00292{left:233.151000px;}
.xf_c00292{left:234.900000px;}
.x85_c00292{left:238.555020px;}
.x32_c00292{left:240.436500px;}
.x18_c00292{left:245.595000px;}
.x3d_c00292{left:248.130000px;}
.xb1_c00292{left:249.219000px;}
.x8c_c00292{left:250.469835px;}
.x4f_c00292{left:253.159500px;}
.x7a_c00292{left:255.595110px;}
.x9a_c00292{left:256.683675px;}
.x10_c00292{left:258.660000px;}
.x80_c00292{left:260.366430px;}
.x5c_c00292{left:261.471000px;}
.x33_c00292{left:262.579500px;}
.xb7_c00292{left:265.410000px;}
.x46_c00292{left:274.471500px;}
.x7b_c00292{left:279.358590px;}
.x2c_c00292{left:281.880000px;}
.x8_c00292{left:283.770000px;}
.x20_c00292{left:286.470000px;}
.x3e_c00292{left:289.710000px;}
.x28_c00292{left:291.870000px;}
.x91_c00292{left:294.850185px;}
.x38_c00292{left:296.650500px;}
.x65_c00292{left:298.260000px;}
.x9_c00292{left:300.240000px;}
.x2_c00292{left:301.860000px;}
.x75_c00292{left:304.402650px;}
.x5d_c00292{left:309.300000px;}
.x86_c00292{left:311.953755px;}
.x34_c00292{left:313.585500px;}
.xb2_c00292{left:315.870000px;}
.x19_c00292{left:318.771000px;}
.x9d_c00292{left:320.220000px;}
.x11_c00292{left:322.110000px;}
.x3f_c00292{left:329.940000px;}
.xb3_c00292{left:334.524000px;}
.x9b_c00292{left:338.251620px;}
.x6e_c00292{left:340.228500px;}
.x2d_c00292{left:341.280000px;}
.x21_c00292{left:345.060000px;}
.x50_c00292{left:347.152500px;}
.x29_c00292{left:350.460000px;}
.x66_c00292{left:352.747500px;}
.xa3_c00292{left:354.510000px;}
.xa_c00292{left:356.400000px;}
.x6c_c00292{left:358.555500px;}
.x55_c00292{left:367.068000px;}
.x3_c00292{left:368.820000px;}
.x51_c00292{left:370.356000px;}
.xb4_c00292{left:371.536500px;}
.x12_c00292{left:373.950000px;}
.x9c_c00292{left:376.028760px;}
.x22_c00292{left:377.190000px;}
.x2a_c00292{left:378.540000px;}
.x1a_c00292{left:381.930000px;}
.xb_c00292{left:383.130000px;}
.x7c_c00292{left:385.202205px;}
.x5e_c00292{left:386.458500px;}
.xab_c00292{left:388.800000px;}
.x9e_c00292{left:390.420000px;}
.x39_c00292{left:395.427000px;}
.x23_c00292{left:397.710000px;}
.x35_c00292{left:399.196500px;}
.x7d_c00292{left:404.084580px;}
.x87_c00292{left:406.058700px;}
.x47_c00292{left:407.481000px;}
.x56_c00292{left:410.266500px;}
.x92_c00292{left:411.765885px;}
.x13_c00292{left:412.830000px;}
.x88_c00292{left:414.844290px;}
.x4_c00292{left:416.340000px;}
.xac_c00292{left:420.120000px;}
.x40_c00292{left:421.200000px;}
.x1b_c00292{left:422.712000px;}
.x14_c00292{left:429.570000px;}
.x76_c00292{left:432.467475px;}
.x67_c00292{left:433.780500px;}
.x1c_c00292{left:435.655500px;}
.x93_c00292{left:438.497055px;}
.x7e_c00292{left:440.283300px;}
.xa4_c00292{left:446.040000px;}
.x57_c00292{left:448.645500px;}
.x77_c00292{left:455.371665px;}
.x52_c00292{left:457.807500px;}
.x97_c00292{left:458.904105px;}
.x7f_c00292{left:460.260705px;}
.x9f_c00292{left:467.100000px;}
.x41_c00292{left:469.260000px;}
.xa5_c00292{left:471.690000px;}
.x48_c00292{left:472.741500px;}
.x5f_c00292{left:474.259500px;}
.xa0_c00292{left:475.740000px;}
.x58_c00292{left:477.229500px;}
.x89_c00292{left:479.370435px;}
.x8d_c00292{left:483.193485px;}
.x68_c00292{left:485.634000px;}
.x49_c00292{left:486.679500px;}
.x6f_c00292{left:490.981500px;}
.x4a_c00292{left:497.926500px;}
.x69_c00292{left:500.709000px;}
.x78_c00292{left:503.169105px;}
.x98_c00292{left:504.530055px;}
.xa1_c00292{left:508.140000px;}
.x60_c00292{left:514.221000px;}
.x94_c00292{left:516.800385px;}
.x70_c00292{left:520.183500px;}
.xa2_c00292{left:525.960000px;}
.x59_c00292{left:528.796500px;}
.x42_c00292{left:532.980000px;}
.x4b_c00292{left:534.883500px;}
.x61_c00292{left:538.005000px;}
.x6a_c00292{left:541.531500px;}
.x95_c00292{left:544.071615px;}
.x53_c00292{left:547.726500px;}
.x43_c00292{left:564.300000px;}
.x4c_c00292{left:573.082500px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs12_c00292{font-size:20.534360pt;}
.fs14_c00292{font-size:40.133333pt;}
.fsf_c00292{font-size:45.733333pt;}
.fs13_c00292{font-size:47.600000pt;}
.fs11_c00292{font-size:47.602380pt;}
.fs10_c00292{font-size:49.466667pt;}
.fs8_c00292{font-size:52.266667pt;}
.fs6_c00292{font-size:56.000000pt;}
.fs4_c00292{font-size:58.800000pt;}
.fs7_c00292{font-size:59.733333pt;}
.fsd_c00292{font-size:59.736320pt;}
.fs9_c00292{font-size:60.669700pt;}
.fs2_c00292{font-size:61.600000pt;}
.fsb_c00292{font-size:61.603080pt;}
.fsc_c00292{font-size:62.536460pt;}
.fs1_c00292{font-size:63.466667pt;}
.fsa_c00292{font-size:63.469840pt;}
.fs5_c00292{font-size:64.400000pt;}
.fse_c00292{font-size:66.269980pt;}
.fs3_c00292{font-size:67.200000pt;}
.fs0_c00292{font-size:120.400000pt;}
.y0_c00292{bottom:0.000000pt;}
.ycd_c00292{bottom:112.636600pt;}
.ycc_c00292{bottom:112.965600pt;}
.ycb_c00292{bottom:113.131413pt;}
.yca_c00292{bottom:113.723867pt;}
.yc9_c00292{bottom:114.031200pt;}
.yc8_c00292{bottom:114.381173pt;}
.yc7_c00292{bottom:114.590280pt;}
.yc6_c00292{bottom:114.931253pt;}
.yc5_c00292{bottom:115.441760pt;}
.yc4_c00292{bottom:115.680000pt;}
.yc3_c00292{bottom:127.070667pt;}
.yc2_c00292{bottom:143.905667pt;}
.yc1_c00292{bottom:145.252533pt;}
.yc0_c00292{bottom:145.572800pt;}
.ybf_c00292{bottom:146.184893pt;}
.ybe_c00292{bottom:146.467240pt;}
.ybd_c00292{bottom:146.714253pt;}
.ybc_c00292{bottom:147.093333pt;}
.ybb_c00292{bottom:160.836000pt;}
.ycf_c00292{bottom:162.720000pt;}
.yba_c00292{bottom:176.048000pt;}
.yce_c00292{bottom:177.717333pt;}
.yb9_c00292{bottom:217.552733pt;}
.yb8_c00292{bottom:218.024333pt;}
.yb7_c00292{bottom:218.626173pt;}
.yb6_c00292{bottom:218.860627pt;}
.yb5_c00292{bottom:219.368320pt;}
.yb4_c00292{bottom:219.591547pt;}
.yb3_c00292{bottom:219.967827pt;}
.yb2_c00292{bottom:220.135773pt;}
.yb1_c00292{bottom:220.512333pt;}
.yb0_c00292{bottom:238.356693pt;}
.yaf_c00292{bottom:238.722253pt;}
.yae_c00292{bottom:238.961933pt;}
.yad_c00292{bottom:239.378213pt;}
.yac_c00292{bottom:239.963667pt;}
.yab_c00292{bottom:240.142840pt;}
.yaa_c00292{bottom:240.727947pt;}
.ya9_c00292{bottom:240.848613pt;}
.ya8_c00292{bottom:241.149280pt;}
.ya7_c00292{bottom:241.847333pt;}
.ya1_c00292{bottom:259.611533pt;}
.ya0_c00292{bottom:259.611787pt;}
.ya2_c00292{bottom:259.612080pt;}
.y9c_c00292{bottom:259.612240pt;}
.y9d_c00292{bottom:259.612253pt;}
.y9f_c00292{bottom:259.612320pt;}
.ya4_c00292{bottom:259.612387pt;}
.ya5_c00292{bottom:259.612427pt;}
.y9b_c00292{bottom:259.612480pt;}
.ya3_c00292{bottom:259.612640pt;}
.ya6_c00292{bottom:259.612707pt;}
.y9e_c00292{bottom:259.612813pt;}
.y9a_c00292{bottom:278.099640pt;}
.y99_c00292{bottom:278.303173pt;}
.y98_c00292{bottom:278.791493pt;}
.y97_c00292{bottom:279.067747pt;}
.y96_c00292{bottom:279.413147pt;}
.y95_c00292{bottom:279.754920pt;}
.y94_c00292{bottom:279.923720pt;}
.y93_c00292{bottom:280.214107pt;}
.y92_c00292{bottom:280.373133pt;}
.y91_c00292{bottom:280.676360pt;}
.y90_c00292{bottom:280.968293pt;}
.y8f_c00292{bottom:281.037093pt;}
.y8e_c00292{bottom:298.009880pt;}
.y8d_c00292{bottom:298.256413pt;}
.y8c_c00292{bottom:298.442320pt;}
.y8b_c00292{bottom:298.958547pt;}
.y8a_c00292{bottom:299.028640pt;}
.y89_c00292{bottom:299.414213pt;}
.y88_c00292{bottom:299.781120pt;}
.y87_c00292{bottom:299.989080pt;}
.y86_c00292{bottom:300.368213pt;}
.y85_c00292{bottom:300.676693pt;}
.y84_c00292{bottom:300.998600pt;}
.y83_c00292{bottom:301.074053pt;}
.y82_c00292{bottom:301.319600pt;}
.y81_c00292{bottom:301.674640pt;}
.y80_c00292{bottom:317.393627pt;}
.y7f_c00292{bottom:320.168333pt;}
.y7e_c00292{bottom:321.070200pt;}
.y7d_c00292{bottom:321.438600pt;}
.y7c_c00292{bottom:322.092640pt;}
.y7b_c00292{bottom:338.787173pt;}
.y7a_c00292{bottom:339.018973pt;}
.y79_c00292{bottom:339.306920pt;}
.y78_c00292{bottom:339.448493pt;}
.y77_c00292{bottom:339.706253pt;}
.y76_c00292{bottom:339.840760pt;}
.y75_c00292{bottom:340.426427pt;}
.y74_c00292{bottom:340.593573pt;}
.y73_c00292{bottom:340.762133pt;}
.y72_c00292{bottom:341.334680pt;}
.y71_c00292{bottom:341.503400pt;}
.y70_c00292{bottom:341.731587pt;}
.y6f_c00292{bottom:341.998507pt;}
.y6e_c00292{bottom:359.407560pt;}
.y6d_c00292{bottom:359.704413pt;}
.y6c_c00292{bottom:359.846667pt;}
.y6b_c00292{bottom:360.075720pt;}
.y6a_c00292{bottom:360.232667pt;}
.y69_c00292{bottom:360.644987pt;}
.y68_c00292{bottom:360.906827pt;}
.y67_c00292{bottom:361.108187pt;}
.y66_c00292{bottom:361.448227pt;}
.y65_c00292{bottom:361.678387pt;}
.y64_c00292{bottom:361.922440pt;}
.y63_c00292{bottom:383.649427pt;}
.y62_c00292{bottom:383.909000pt;}
.y61_c00292{bottom:384.286267pt;}
.y60_c00292{bottom:385.249027pt;}
.y5f_c00292{bottom:386.595427pt;}
.y5e_c00292{bottom:386.801933pt;}
.y5d_c00292{bottom:387.072693pt;}
.y5c_c00292{bottom:387.346667pt;}
.y5b_c00292{bottom:405.328000pt;}
.y5a_c00292{bottom:423.338667pt;}
.y59_c00292{bottom:423.701333pt;}
.y58_c00292{bottom:423.836000pt;}
.y57_c00292{bottom:424.297333pt;}
.y56_c00292{bottom:424.477333pt;}
.y55_c00292{bottom:425.017333pt;}
.y54_c00292{bottom:425.360000pt;}
.y53_c00292{bottom:425.501333pt;}
.y52_c00292{bottom:426.160000pt;}
.y51_c00292{bottom:426.433333pt;}
.y50_c00292{bottom:426.514667pt;}
.y4f_c00292{bottom:427.228000pt;}
.y4e_c00292{bottom:427.437333pt;}
.y4d_c00292{bottom:443.796000pt;}
.y4c_c00292{bottom:444.008000pt;}
.y4b_c00292{bottom:444.362667pt;}
.y4a_c00292{bottom:444.597333pt;}
.y49_c00292{bottom:445.046667pt;}
.y48_c00292{bottom:445.142667pt;}
.y47_c00292{bottom:445.828000pt;}
.y46_c00292{bottom:446.253333pt;}
.y45_c00292{bottom:446.505333pt;}
.y44_c00292{bottom:446.922667pt;}
.y43_c00292{bottom:447.316000pt;}
.y42_c00292{bottom:447.836000pt;}
.y41_c00292{bottom:464.041333pt;}
.y40_c00292{bottom:464.500000pt;}
.y3f_c00292{bottom:464.754667pt;}
.y3e_c00292{bottom:465.096000pt;}
.y3d_c00292{bottom:465.480000pt;}
.y3c_c00292{bottom:466.173333pt;}
.y3b_c00292{bottom:466.888000pt;}
.y3a_c00292{bottom:467.142667pt;}
.y39_c00292{bottom:467.997333pt;}
.y38_c00292{bottom:484.862667pt;}
.y37_c00292{bottom:485.502667pt;}
.y36_c00292{bottom:485.665333pt;}
.y35_c00292{bottom:485.764000pt;}
.y34_c00292{bottom:486.124000pt;}
.y33_c00292{bottom:486.289333pt;}
.y32_c00292{bottom:486.628000pt;}
.y31_c00292{bottom:486.958667pt;}
.y30_c00292{bottom:487.656000pt;}
.y2f_c00292{bottom:487.817333pt;}
.y2e_c00292{bottom:488.158667pt;}
.y2d_c00292{bottom:504.604000pt;}
.y2c_c00292{bottom:504.944000pt;}
.y2b_c00292{bottom:505.272000pt;}
.y2a_c00292{bottom:505.372000pt;}
.y29_c00292{bottom:505.496000pt;}
.y28_c00292{bottom:506.076000pt;}
.y27_c00292{bottom:506.286667pt;}
.y26_c00292{bottom:507.064000pt;}
.y25_c00292{bottom:507.258667pt;}
.y24_c00292{bottom:507.393333pt;}
.y23_c00292{bottom:507.797333pt;}
.y22_c00292{bottom:508.150667pt;}
.y21_c00292{bottom:508.765333pt;}
.y20_c00292{bottom:508.945333pt;}
.y1f_c00292{bottom:527.176000pt;}
.y1e_c00292{bottom:585.569333pt;}
.y1d_c00292{bottom:585.682667pt;}
.y1c_c00292{bottom:586.228000pt;}
.y1b_c00292{bottom:586.448000pt;}
.y1a_c00292{bottom:587.161333pt;}
.y19_c00292{bottom:587.725333pt;}
.y18_c00292{bottom:587.997333pt;}
.y17_c00292{bottom:605.548000pt;}
.y16_c00292{bottom:605.704000pt;}
.y15_c00292{bottom:606.309333pt;}
.y14_c00292{bottom:606.762667pt;}
.y13_c00292{bottom:606.960000pt;}
.y12_c00292{bottom:607.292000pt;}
.y11_c00292{bottom:607.493333pt;}
.y10_c00292{bottom:607.796000pt;}
.yf_c00292{bottom:608.158667pt;}
.ye_c00292{bottom:626.374667pt;}
.yd_c00292{bottom:647.077333pt;}
.yc_c00292{bottom:666.605333pt;}
.yb_c00292{bottom:685.808000pt;}
.ya_c00292{bottom:685.900000pt;}
.y9_c00292{bottom:686.190667pt;}
.y8_c00292{bottom:686.640000pt;}
.y7_c00292{bottom:687.160000pt;}
.y6_c00292{bottom:687.317333pt;}
.y5_c00292{bottom:687.722667pt;}
.y4_c00292{bottom:688.080000pt;}
.y3_c00292{bottom:707.008000pt;}
.y2_c00292{bottom:727.556000pt;}
.y1_c00292{bottom:768.464000pt;}
.h14_c00292{height:20.534360pt;}
.h16_c00292{height:40.133333pt;}
.h11_c00292{height:45.733333pt;}
.h15_c00292{height:47.600000pt;}
.h13_c00292{height:47.602380pt;}
.h12_c00292{height:49.466667pt;}
.ha_c00292{height:52.266667pt;}
.h8_c00292{height:56.000000pt;}
.h6_c00292{height:58.800000pt;}
.h9_c00292{height:59.733333pt;}
.hf_c00292{height:59.736320pt;}
.hb_c00292{height:60.669700pt;}
.h4_c00292{height:61.600000pt;}
.hd_c00292{height:61.603080pt;}
.he_c00292{height:62.536460pt;}
.h3_c00292{height:63.466667pt;}
.hc_c00292{height:63.469840pt;}
.h7_c00292{height:64.400000pt;}
.h10_c00292{height:66.269980pt;}
.h5_c00292{height:67.200000pt;}
.h2_c00292{height:120.400000pt;}
.h1_c00292{height:893.333333pt;}
.h0_c00292{height:893.466667pt;}
.w0_c00292{width:624.480000pt;}
.w1_c00292{width:624.666667pt;}
.x0_c00292{left:0.000000pt;}
.xad_c00292{left:25.914667pt;}
.xa8_c00292{left:27.840000pt;}
.xae_c00292{left:49.738667pt;}
.x96_c00292{left:60.603280pt;}
.x8a_c00292{left:62.285973pt;}
.x99_c00292{left:64.690360pt;}
.x81_c00292{left:66.738107pt;}
.x8e_c00292{left:69.600480pt;}
.x62_c00292{left:71.645333pt;}
.x6b_c00292{left:72.716000pt;}
.x3a_c00292{left:74.160000pt;}
.x44_c00292{left:75.493333pt;}
.xa9_c00292{left:81.120000pt;}
.x71_c00292{left:88.162667pt;}
.xb8_c00292{left:91.200000pt;}
.x63_c00292{left:92.522667pt;}
.x2e_c00292{left:93.954667pt;}
.x24_c00292{left:98.160000pt;}
.xaf_c00292{left:100.789333pt;}
.x15_c00292{left:103.349333pt;}
.xc_c00292{left:106.800000pt;}
.xb9_c00292{left:107.760000pt;}
.x5_c00292{left:108.720000pt;}
.xaa_c00292{left:110.880000pt;}
.x8f_c00292{left:116.162467pt;}
.x4d_c00292{left:117.750667pt;}
.x6d_c00292{left:120.058667pt;}
.xba_c00292{left:121.680000pt;}
.x72_c00292{left:122.969040pt;}
.x5a_c00292{left:126.109333pt;}
.x3b_c00292{left:127.680000pt;}
.x2f_c00292{left:130.164000pt;}
.x25_c00292{left:131.520000pt;}
.x82_c00292{left:133.597453pt;}
.x79_c00292{left:134.533800pt;}
.x36_c00292{left:136.002667pt;}
.xa6_c00292{left:136.944000pt;}
.x4e_c00292{left:137.908000pt;}
.xd_c00292{left:139.680000pt;}
.x83_c00292{left:141.942867pt;}
.x8b_c00292{left:145.350307pt;}
.x2b_c00292{left:146.880000pt;}
.x16_c00292{left:148.012000pt;}
.x1d_c00292{left:149.040000pt;}
.xb5_c00292{left:153.840000pt;}
.x45_c00292{left:154.929333pt;}
.x73_c00292{left:155.852693pt;}
.x30_c00292{left:160.458667pt;}
.xa7_c00292{left:161.645333pt;}
.x3c_c00292{left:163.680000pt;}
.x6_c00292{left:165.360000pt;}
.x1e_c00292{left:167.280000pt;}
.x64_c00292{left:171.933333pt;}
.xe_c00292{left:175.680000pt;}
.x84_c00292{left:177.733893pt;}
.x26_c00292{left:179.280000pt;}
.x31_c00292{left:180.576000pt;}
.xb6_c00292{left:183.840000pt;}
.x54_c00292{left:185.400000pt;}
.x90_c00292{left:188.645720pt;}
.x1_c00292{left:189.840000pt;}
.xb0_c00292{left:190.794667pt;}
.x37_c00292{left:192.412000pt;}
.x27_c00292{left:196.320000pt;}
.x17_c00292{left:198.629333pt;}
.x1f_c00292{left:201.600000pt;}
.x74_c00292{left:204.391480pt;}
.x7_c00292{left:205.920000pt;}
.x5b_c00292{left:207.245333pt;}
.xf_c00292{left:208.800000pt;}
.x85_c00292{left:212.048907pt;}
.x32_c00292{left:213.721333pt;}
.x18_c00292{left:218.306667pt;}
.x3d_c00292{left:220.560000pt;}
.xb1_c00292{left:221.528000pt;}
.x8c_c00292{left:222.639853pt;}
.x4f_c00292{left:225.030667pt;}
.x7a_c00292{left:227.195653pt;}
.x9a_c00292{left:228.163267pt;}
.x10_c00292{left:229.920000pt;}
.x80_c00292{left:231.436827pt;}
.x5c_c00292{left:232.418667pt;}
.x33_c00292{left:233.404000pt;}
.xb7_c00292{left:235.920000pt;}
.x46_c00292{left:243.974667pt;}
.x7b_c00292{left:248.318747pt;}
.x2c_c00292{left:250.560000pt;}
.x8_c00292{left:252.240000pt;}
.x20_c00292{left:254.640000pt;}
.x3e_c00292{left:257.520000pt;}
.x28_c00292{left:259.440000pt;}
.x91_c00292{left:262.089053pt;}
.x38_c00292{left:263.689333pt;}
.x65_c00292{left:265.120000pt;}
.x9_c00292{left:266.880000pt;}
.x2_c00292{left:268.320000pt;}
.x75_c00292{left:270.580133pt;}
.x5d_c00292{left:274.933333pt;}
.x86_c00292{left:277.292227pt;}
.x34_c00292{left:278.742667pt;}
.xb2_c00292{left:280.773333pt;}
.x19_c00292{left:283.352000pt;}
.x9d_c00292{left:284.640000pt;}
.x11_c00292{left:286.320000pt;}
.x3f_c00292{left:293.280000pt;}
.xb3_c00292{left:297.354667pt;}
.x9b_c00292{left:300.668107pt;}
.x6e_c00292{left:302.425333pt;}
.x2d_c00292{left:303.360000pt;}
.x21_c00292{left:306.720000pt;}
.x50_c00292{left:308.580000pt;}
.x29_c00292{left:311.520000pt;}
.x66_c00292{left:313.553333pt;}
.xa3_c00292{left:315.120000pt;}
.xa_c00292{left:316.800000pt;}
.x6c_c00292{left:318.716000pt;}
.x55_c00292{left:326.282667pt;}
.x3_c00292{left:327.840000pt;}
.x51_c00292{left:329.205333pt;}
.xb4_c00292{left:330.254667pt;}
.x12_c00292{left:332.400000pt;}
.x9c_c00292{left:334.247787pt;}
.x22_c00292{left:335.280000pt;}
.x2a_c00292{left:336.480000pt;}
.x1a_c00292{left:339.493333pt;}
.xb_c00292{left:340.560000pt;}
.x7c_c00292{left:342.401960pt;}
.x5e_c00292{left:343.518667pt;}
.xab_c00292{left:345.600000pt;}
.x9e_c00292{left:347.040000pt;}
.x39_c00292{left:351.490667pt;}
.x23_c00292{left:353.520000pt;}
.x35_c00292{left:354.841333pt;}
.x7d_c00292{left:359.186293pt;}
.x87_c00292{left:360.941067pt;}
.x47_c00292{left:362.205333pt;}
.x56_c00292{left:364.681333pt;}
.x92_c00292{left:366.014120pt;}
.x13_c00292{left:366.960000pt;}
.x88_c00292{left:368.750480pt;}
.x4_c00292{left:370.080000pt;}
.xac_c00292{left:373.440000pt;}
.x40_c00292{left:374.400000pt;}
.x1b_c00292{left:375.744000pt;}
.x14_c00292{left:381.840000pt;}
.x76_c00292{left:384.415533pt;}
.x67_c00292{left:385.582667pt;}
.x1c_c00292{left:387.249333pt;}
.x93_c00292{left:389.775160pt;}
.x7e_c00292{left:391.362933pt;}
.xa4_c00292{left:396.480000pt;}
.x57_c00292{left:398.796000pt;}
.x77_c00292{left:404.774813pt;}
.x52_c00292{left:406.940000pt;}
.x97_c00292{left:407.914760pt;}
.x7f_c00292{left:409.120627pt;}
.x9f_c00292{left:415.200000pt;}
.x41_c00292{left:417.120000pt;}
.xa5_c00292{left:419.280000pt;}
.x48_c00292{left:420.214667pt;}
.x5f_c00292{left:421.564000pt;}
.xa0_c00292{left:422.880000pt;}
.x58_c00292{left:424.204000pt;}
.x89_c00292{left:426.107053pt;}
.x8d_c00292{left:429.505320pt;}
.x68_c00292{left:431.674667pt;}
.x49_c00292{left:432.604000pt;}
.x6f_c00292{left:436.428000pt;}
.x4a_c00292{left:442.601333pt;}
.x69_c00292{left:445.074667pt;}
.x78_c00292{left:447.261427pt;}
.x98_c00292{left:448.471160pt;}
.xa1_c00292{left:451.680000pt;}
.x60_c00292{left:457.085333pt;}
.x94_c00292{left:459.378120pt;}
.x70_c00292{left:462.385333pt;}
.xa2_c00292{left:467.520000pt;}
.x59_c00292{left:470.041333pt;}
.x42_c00292{left:473.760000pt;}
.x4b_c00292{left:475.452000pt;}
.x61_c00292{left:478.226667pt;}
.x6a_c00292{left:481.361333pt;}
.x95_c00292{left:483.619213pt;}
.x53_c00292{left:486.868000pt;}
.x43_c00292{left:501.600000pt;}
.x4c_c00292{left:509.406667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m111_c00293{transform:matrix(0.010852,-0.000271,0.006248,0.249922,0,0);-ms-transform:matrix(0.010852,-0.000271,0.006248,0.249922,0,0);-webkit-transform:matrix(0.010852,-0.000271,0.006248,0.249922,0,0);}
.m15b_c00293{transform:matrix(0.027147,-0.000380,0.003500,0.249976,0,0);-ms-transform:matrix(0.027147,-0.000380,0.003500,0.249976,0,0);-webkit-transform:matrix(0.027147,-0.000380,0.003500,0.249976,0,0);}
.m3b_c00293{transform:matrix(0.089667,-0.002242,0.006248,0.249922,0,0);-ms-transform:matrix(0.089667,-0.002242,0.006248,0.249922,0,0);-webkit-transform:matrix(0.089667,-0.002242,0.006248,0.249922,0,0);}
.m21_c00293{transform:matrix(0.099199,-0.002480,0.006248,0.249922,0,0);-ms-transform:matrix(0.099199,-0.002480,0.006248,0.249922,0,0);-webkit-transform:matrix(0.099199,-0.002480,0.006248,0.249922,0,0);}
.m36_c00293{transform:matrix(0.120302,-0.003008,0.006248,0.249922,0,0);-ms-transform:matrix(0.120302,-0.003008,0.006248,0.249922,0,0);-webkit-transform:matrix(0.120302,-0.003008,0.006248,0.249922,0,0);}
.m143_c00293{transform:matrix(0.122268,-0.001712,0.003500,0.249976,0,0);-ms-transform:matrix(0.122268,-0.001712,0.003500,0.249976,0,0);-webkit-transform:matrix(0.122268,-0.001712,0.003500,0.249976,0,0);}
.m2_c00293{transform:matrix(0.134818,-0.002157,0.003999,0.249968,0,0);-ms-transform:matrix(0.134818,-0.002157,0.003999,0.249968,0,0);-webkit-transform:matrix(0.134818,-0.002157,0.003999,0.249968,0,0);}
.m8c_c00293{transform:matrix(0.145415,-0.003635,0.006248,0.249922,0,0);-ms-transform:matrix(0.145415,-0.003635,0.006248,0.249922,0,0);-webkit-transform:matrix(0.145415,-0.003635,0.006248,0.249922,0,0);}
.m79_c00293{transform:matrix(0.146154,-0.003654,0.006248,0.249922,0,0);-ms-transform:matrix(0.146154,-0.003654,0.006248,0.249922,0,0);-webkit-transform:matrix(0.146154,-0.003654,0.006248,0.249922,0,0);}
.m4f_c00293{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);}
.m3c_c00293{transform:matrix(0.147249,-0.003681,0.006248,0.249922,0,0);-ms-transform:matrix(0.147249,-0.003681,0.006248,0.249922,0,0);-webkit-transform:matrix(0.147249,-0.003681,0.006248,0.249922,0,0);}
.m17_c00293{transform:matrix(0.147279,-0.003682,0.006248,0.249922,0,0);-ms-transform:matrix(0.147279,-0.003682,0.006248,0.249922,0,0);-webkit-transform:matrix(0.147279,-0.003682,0.006248,0.249922,0,0);}
.m11_c00293{transform:matrix(0.148264,-0.003707,0.006248,0.249922,0,0);-ms-transform:matrix(0.148264,-0.003707,0.006248,0.249922,0,0);-webkit-transform:matrix(0.148264,-0.003707,0.006248,0.249922,0,0);}
.m106_c00293{transform:matrix(0.151213,-0.003780,0.006248,0.249922,0,0);-ms-transform:matrix(0.151213,-0.003780,0.006248,0.249922,0,0);-webkit-transform:matrix(0.151213,-0.003780,0.006248,0.249922,0,0);}
.m84_c00293{transform:matrix(0.152023,-0.003801,0.006248,0.249922,0,0);-ms-transform:matrix(0.152023,-0.003801,0.006248,0.249922,0,0);-webkit-transform:matrix(0.152023,-0.003801,0.006248,0.249922,0,0);}
.mb_c00293{transform:matrix(0.153527,-0.003838,0.006248,0.249922,0,0);-ms-transform:matrix(0.153527,-0.003838,0.006248,0.249922,0,0);-webkit-transform:matrix(0.153527,-0.003838,0.006248,0.249922,0,0);}
.md4_c00293{transform:matrix(0.154717,-0.003868,0.006248,0.249922,0,0);-ms-transform:matrix(0.154717,-0.003868,0.006248,0.249922,0,0);-webkit-transform:matrix(0.154717,-0.003868,0.006248,0.249922,0,0);}
.m20_c00293{transform:matrix(0.154782,-0.003870,0.006248,0.249922,0,0);-ms-transform:matrix(0.154782,-0.003870,0.006248,0.249922,0,0);-webkit-transform:matrix(0.154782,-0.003870,0.006248,0.249922,0,0);}
.mb1_c00293{transform:matrix(0.155187,-0.003880,0.006248,0.249922,0,0);-ms-transform:matrix(0.155187,-0.003880,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155187,-0.003880,0.006248,0.249922,0,0);}
.me_c00293{transform:matrix(0.155326,-0.003883,0.006248,0.249922,0,0);-ms-transform:matrix(0.155326,-0.003883,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155326,-0.003883,0.006248,0.249922,0,0);}
.m37_c00293{transform:matrix(0.155556,-0.003889,0.006248,0.249922,0,0);-ms-transform:matrix(0.155556,-0.003889,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155556,-0.003889,0.006248,0.249922,0,0);}
.m76_c00293{transform:matrix(0.155716,-0.003893,0.006248,0.249922,0,0);-ms-transform:matrix(0.155716,-0.003893,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155716,-0.003893,0.006248,0.249922,0,0);}
.mf7_c00293{transform:matrix(0.155886,-0.003897,0.006248,0.249922,0,0);-ms-transform:matrix(0.155886,-0.003897,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155886,-0.003897,0.006248,0.249922,0,0);}
.m35_c00293{transform:matrix(0.156171,-0.003904,0.006248,0.249922,0,0);-ms-transform:matrix(0.156171,-0.003904,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156171,-0.003904,0.006248,0.249922,0,0);}
.m63_c00293{transform:matrix(0.156426,-0.003911,0.006248,0.249922,0,0);-ms-transform:matrix(0.156426,-0.003911,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156426,-0.003911,0.006248,0.249922,0,0);}
.m50_c00293{transform:matrix(0.156821,-0.003921,0.006248,0.249922,0,0);-ms-transform:matrix(0.156821,-0.003921,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156821,-0.003921,0.006248,0.249922,0,0);}
.m2a_c00293{transform:matrix(0.156866,-0.003922,0.006248,0.249922,0,0);-ms-transform:matrix(0.156866,-0.003922,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156866,-0.003922,0.006248,0.249922,0,0);}
.m1d_c00293{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);}
.m59_c00293{transform:matrix(0.158910,-0.003973,0.006248,0.249922,0,0);-ms-transform:matrix(0.158910,-0.003973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.158910,-0.003973,0.006248,0.249922,0,0);}
.m8_c00293{transform:matrix(0.159830,-0.003996,0.006248,0.249922,0,0);-ms-transform:matrix(0.159830,-0.003996,0.006248,0.249922,0,0);-webkit-transform:matrix(0.159830,-0.003996,0.006248,0.249922,0,0);}
.m82_c00293{transform:matrix(0.161734,-0.004043,0.006248,0.249922,0,0);-ms-transform:matrix(0.161734,-0.004043,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161734,-0.004043,0.006248,0.249922,0,0);}
.mb5_c00293{transform:matrix(0.162499,-0.004062,0.006248,0.249922,0,0);-ms-transform:matrix(0.162499,-0.004062,0.006248,0.249922,0,0);-webkit-transform:matrix(0.162499,-0.004062,0.006248,0.249922,0,0);}
.mf_c00293{transform:matrix(0.163064,-0.004077,0.006248,0.249922,0,0);-ms-transform:matrix(0.163064,-0.004077,0.006248,0.249922,0,0);-webkit-transform:matrix(0.163064,-0.004077,0.006248,0.249922,0,0);}
.mf0_c00293{transform:matrix(0.163744,-0.004094,0.006248,0.249922,0,0);-ms-transform:matrix(0.163744,-0.004094,0.006248,0.249922,0,0);-webkit-transform:matrix(0.163744,-0.004094,0.006248,0.249922,0,0);}
.m4d_c00293{transform:matrix(0.164104,-0.004103,0.006248,0.249922,0,0);-ms-transform:matrix(0.164104,-0.004103,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164104,-0.004103,0.006248,0.249922,0,0);}
.mbe_c00293{transform:matrix(0.164129,-0.004103,0.006248,0.249922,0,0);-ms-transform:matrix(0.164129,-0.004103,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164129,-0.004103,0.006248,0.249922,0,0);}
.m28_c00293{transform:matrix(0.164724,-0.004118,0.006248,0.249922,0,0);-ms-transform:matrix(0.164724,-0.004118,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164724,-0.004118,0.006248,0.249922,0,0);}
.m2c_c00293{transform:matrix(0.164973,-0.004124,0.006248,0.249922,0,0);-ms-transform:matrix(0.164973,-0.004124,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164973,-0.004124,0.006248,0.249922,0,0);}
.m43_c00293{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);}
.mbd_c00293{transform:matrix(0.166248,-0.004156,0.006248,0.249922,0,0);-ms-transform:matrix(0.166248,-0.004156,0.006248,0.249922,0,0);-webkit-transform:matrix(0.166248,-0.004156,0.006248,0.249922,0,0);}
.m73_c00293{transform:matrix(0.167808,-0.004195,0.006248,0.249922,0,0);-ms-transform:matrix(0.167808,-0.004195,0.006248,0.249922,0,0);-webkit-transform:matrix(0.167808,-0.004195,0.006248,0.249922,0,0);}
.me2_c00293{transform:matrix(0.168492,-0.004212,0.006248,0.249922,0,0);-ms-transform:matrix(0.168492,-0.004212,0.006248,0.249922,0,0);-webkit-transform:matrix(0.168492,-0.004212,0.006248,0.249922,0,0);}
.m7d_c00293{transform:matrix(0.169762,-0.004244,0.006248,0.249922,0,0);-ms-transform:matrix(0.169762,-0.004244,0.006248,0.249922,0,0);-webkit-transform:matrix(0.169762,-0.004244,0.006248,0.249922,0,0);}
.m15a_c00293{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);}
.m4_c00293{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);}
.mc_c00293{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);}
.m159_c00293{transform:matrix(0.170908,-0.002393,0.003500,0.249976,0,0);-ms-transform:matrix(0.170908,-0.002393,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170908,-0.002393,0.003500,0.249976,0,0);}
.m5e_c00293{transform:matrix(0.170987,-0.004275,0.006248,0.249922,0,0);-ms-transform:matrix(0.170987,-0.004275,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170987,-0.004275,0.006248,0.249922,0,0);}
.me5_c00293{transform:matrix(0.171112,-0.004278,0.006248,0.249922,0,0);-ms-transform:matrix(0.171112,-0.004278,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171112,-0.004278,0.006248,0.249922,0,0);}
.m18_c00293{transform:matrix(0.171391,-0.004285,0.006248,0.249922,0,0);-ms-transform:matrix(0.171391,-0.004285,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171391,-0.004285,0.006248,0.249922,0,0);}
.m11f_c00293{transform:matrix(0.171518,-0.002401,0.003500,0.249976,0,0);-ms-transform:matrix(0.171518,-0.002401,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171518,-0.002401,0.003500,0.249976,0,0);}
.m6_c00293{transform:matrix(0.171561,-0.004289,0.006248,0.249922,0,0);-ms-transform:matrix(0.171561,-0.004289,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171561,-0.004289,0.006248,0.249922,0,0);}
.mb8_c00293{transform:matrix(0.171631,-0.004291,0.006248,0.249922,0,0);-ms-transform:matrix(0.171631,-0.004291,0.006248,0.249922,0,0);-webkit-transform:matrix(0.171631,-0.004291,0.006248,0.249922,0,0);}
.mac_c00293{transform:matrix(0.172441,-0.004311,0.006248,0.249922,0,0);-ms-transform:matrix(0.172441,-0.004311,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172441,-0.004311,0.006248,0.249922,0,0);}
.m3d_c00293{transform:matrix(0.172471,-0.004312,0.006248,0.249922,0,0);-ms-transform:matrix(0.172471,-0.004312,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172471,-0.004312,0.006248,0.249922,0,0);}
.m123_c00293{transform:matrix(0.172518,-0.002415,0.003500,0.249976,0,0);-ms-transform:matrix(0.172518,-0.002415,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172518,-0.002415,0.003500,0.249976,0,0);}
.m6f_c00293{transform:matrix(0.173061,-0.004327,0.006248,0.249922,0,0);-ms-transform:matrix(0.173061,-0.004327,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173061,-0.004327,0.006248,0.249922,0,0);}
.m1f_c00293{transform:matrix(0.173181,-0.004330,0.006248,0.249922,0,0);-ms-transform:matrix(0.173181,-0.004330,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173181,-0.004330,0.006248,0.249922,0,0);}
.mc7_c00293{transform:matrix(0.173286,-0.004332,0.006248,0.249922,0,0);-ms-transform:matrix(0.173286,-0.004332,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173286,-0.004332,0.006248,0.249922,0,0);}
.m10_c00293{transform:matrix(0.173661,-0.004342,0.006248,0.249922,0,0);-ms-transform:matrix(0.173661,-0.004342,0.006248,0.249922,0,0);-webkit-transform:matrix(0.173661,-0.004342,0.006248,0.249922,0,0);}
.m29_c00293{transform:matrix(0.174026,-0.004351,0.006248,0.249922,0,0);-ms-transform:matrix(0.174026,-0.004351,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174026,-0.004351,0.006248,0.249922,0,0);}
.m6b_c00293{transform:matrix(0.174565,-0.004364,0.006248,0.249922,0,0);-ms-transform:matrix(0.174565,-0.004364,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174565,-0.004364,0.006248,0.249922,0,0);}
.mae_c00293{transform:matrix(0.174570,-0.004364,0.006248,0.249922,0,0);-ms-transform:matrix(0.174570,-0.004364,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174570,-0.004364,0.006248,0.249922,0,0);}
.mfd_c00293{transform:matrix(0.174770,-0.004369,0.006248,0.249922,0,0);-ms-transform:matrix(0.174770,-0.004369,0.006248,0.249922,0,0);-webkit-transform:matrix(0.174770,-0.004369,0.006248,0.249922,0,0);}
.ma8_c00293{transform:matrix(0.175470,-0.004387,0.006248,0.249922,0,0);-ms-transform:matrix(0.175470,-0.004387,0.006248,0.249922,0,0);-webkit-transform:matrix(0.175470,-0.004387,0.006248,0.249922,0,0);}
.m1b_c00293{transform:matrix(0.176390,-0.004410,0.006248,0.249922,0,0);-ms-transform:matrix(0.176390,-0.004410,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176390,-0.004410,0.006248,0.249922,0,0);}
.m10b_c00293{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);}
.m93_c00293{transform:matrix(0.176790,-0.004420,0.006248,0.249922,0,0);-ms-transform:matrix(0.176790,-0.004420,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176790,-0.004420,0.006248,0.249922,0,0);}
.m13_c00293{transform:matrix(0.176865,-0.004422,0.006248,0.249922,0,0);-ms-transform:matrix(0.176865,-0.004422,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176865,-0.004422,0.006248,0.249922,0,0);}
.m26_c00293{transform:matrix(0.177600,-0.004440,0.006248,0.249922,0,0);-ms-transform:matrix(0.177600,-0.004440,0.006248,0.249922,0,0);-webkit-transform:matrix(0.177600,-0.004440,0.006248,0.249922,0,0);}
.m6a_c00293{transform:matrix(0.178689,-0.004467,0.006248,0.249922,0,0);-ms-transform:matrix(0.178689,-0.004467,0.006248,0.249922,0,0);-webkit-transform:matrix(0.178689,-0.004467,0.006248,0.249922,0,0);}
.m90_c00293{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);}
.m155_c00293{transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);-ms-transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179397,-0.002512,0.003500,0.249976,0,0);}
.mf3_c00293{transform:matrix(0.179519,-0.004488,0.006248,0.249922,0,0);-ms-transform:matrix(0.179519,-0.004488,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179519,-0.004488,0.006248,0.249922,0,0);}
.m74_c00293{transform:matrix(0.179619,-0.004490,0.006248,0.249922,0,0);-ms-transform:matrix(0.179619,-0.004490,0.006248,0.249922,0,0);-webkit-transform:matrix(0.179619,-0.004490,0.006248,0.249922,0,0);}
.me1_c00293{transform:matrix(0.180209,-0.004505,0.006248,0.249922,0,0);-ms-transform:matrix(0.180209,-0.004505,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180209,-0.004505,0.006248,0.249922,0,0);}
.md5_c00293{transform:matrix(0.180784,-0.004520,0.006248,0.249922,0,0);-ms-transform:matrix(0.180784,-0.004520,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180784,-0.004520,0.006248,0.249922,0,0);}
.m56_c00293{transform:matrix(0.180943,-0.004524,0.006248,0.249922,0,0);-ms-transform:matrix(0.180943,-0.004524,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180943,-0.004524,0.006248,0.249922,0,0);}
.m15e_c00293{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);}
.m5d_c00293{transform:matrix(0.181258,-0.004531,0.006248,0.249922,0,0);-ms-transform:matrix(0.181258,-0.004531,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181258,-0.004531,0.006248,0.249922,0,0);}
.m5_c00293{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);}
.md_c00293{transform:matrix(0.181463,-0.004537,0.006248,0.249922,0,0);-ms-transform:matrix(0.181463,-0.004537,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181463,-0.004537,0.006248,0.249922,0,0);}
.m12_c00293{transform:matrix(0.181788,-0.004545,0.006248,0.249922,0,0);-ms-transform:matrix(0.181788,-0.004545,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181788,-0.004545,0.006248,0.249922,0,0);}
.me6_c00293{transform:matrix(0.181858,-0.004546,0.006248,0.249922,0,0);-ms-transform:matrix(0.181858,-0.004546,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181858,-0.004546,0.006248,0.249922,0,0);}
.m110_c00293{transform:matrix(0.182683,-0.004567,0.006248,0.249922,0,0);-ms-transform:matrix(0.182683,-0.004567,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182683,-0.004567,0.006248,0.249922,0,0);}
.m121_c00293{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);}
.m146_c00293{transform:matrix(0.183117,-0.002564,0.003500,0.249976,0,0);-ms-transform:matrix(0.183117,-0.002564,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183117,-0.002564,0.003500,0.249976,0,0);}
.m68_c00293{transform:matrix(0.183593,-0.004590,0.006248,0.249922,0,0);-ms-transform:matrix(0.183593,-0.004590,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183593,-0.004590,0.006248,0.249922,0,0);}
.me0_c00293{transform:matrix(0.183718,-0.004593,0.006248,0.249922,0,0);-ms-transform:matrix(0.183718,-0.004593,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183718,-0.004593,0.006248,0.249922,0,0);}
.m41_c00293{transform:matrix(0.183733,-0.004593,0.006248,0.249922,0,0);-ms-transform:matrix(0.183733,-0.004593,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183733,-0.004593,0.006248,0.249922,0,0);}
.m71_c00293{transform:matrix(0.183773,-0.004594,0.006248,0.249922,0,0);-ms-transform:matrix(0.183773,-0.004594,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183773,-0.004594,0.006248,0.249922,0,0);}
.m22_c00293{transform:matrix(0.184142,-0.004604,0.006248,0.249922,0,0);-ms-transform:matrix(0.184142,-0.004604,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184142,-0.004604,0.006248,0.249922,0,0);}
.m69_c00293{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);}
.m57_c00293{transform:matrix(0.184302,-0.004608,0.006248,0.249922,0,0);-ms-transform:matrix(0.184302,-0.004608,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184302,-0.004608,0.006248,0.249922,0,0);}
.m85_c00293{transform:matrix(0.185237,-0.004631,0.006248,0.249922,0,0);-ms-transform:matrix(0.185237,-0.004631,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185237,-0.004631,0.006248,0.249922,0,0);}
.m16_c00293{transform:matrix(0.185787,-0.004645,0.006248,0.249922,0,0);-ms-transform:matrix(0.185787,-0.004645,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185787,-0.004645,0.006248,0.249922,0,0);}
.m39_c00293{transform:matrix(0.185887,-0.004647,0.006248,0.249922,0,0);-ms-transform:matrix(0.185887,-0.004647,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185887,-0.004647,0.006248,0.249922,0,0);}
.mee_c00293{transform:matrix(0.185967,-0.004649,0.006248,0.249922,0,0);-ms-transform:matrix(0.185967,-0.004649,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185967,-0.004649,0.006248,0.249922,0,0);}
.me7_c00293{transform:matrix(0.186452,-0.004661,0.006248,0.249922,0,0);-ms-transform:matrix(0.186452,-0.004661,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186452,-0.004661,0.006248,0.249922,0,0);}
.m87_c00293{transform:matrix(0.186767,-0.004669,0.006248,0.249922,0,0);-ms-transform:matrix(0.186767,-0.004669,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186767,-0.004669,0.006248,0.249922,0,0);}
.md8_c00293{transform:matrix(0.186852,-0.004671,0.006248,0.249922,0,0);-ms-transform:matrix(0.186852,-0.004671,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186852,-0.004671,0.006248,0.249922,0,0);}
.m12e_c00293{transform:matrix(0.186927,-0.002617,0.003500,0.249976,0,0);-ms-transform:matrix(0.186927,-0.002617,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186927,-0.002617,0.003500,0.249976,0,0);}
.mbf_c00293{transform:matrix(0.187177,-0.004679,0.006248,0.249922,0,0);-ms-transform:matrix(0.187177,-0.004679,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187177,-0.004679,0.006248,0.249922,0,0);}
.mea_c00293{transform:matrix(0.187212,-0.004680,0.006248,0.249922,0,0);-ms-transform:matrix(0.187212,-0.004680,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187212,-0.004680,0.006248,0.249922,0,0);}
.m34_c00293{transform:matrix(0.187241,-0.004681,0.006248,0.249922,0,0);-ms-transform:matrix(0.187241,-0.004681,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187241,-0.004681,0.006248,0.249922,0,0);}
.m9f_c00293{transform:matrix(0.187351,-0.004684,0.006248,0.249922,0,0);-ms-transform:matrix(0.187351,-0.004684,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187351,-0.004684,0.006248,0.249922,0,0);}
.ma_c00293{transform:matrix(0.187486,-0.004687,0.006248,0.249922,0,0);-ms-transform:matrix(0.187486,-0.004687,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187486,-0.004687,0.006248,0.249922,0,0);}
.mf1_c00293{transform:matrix(0.187601,-0.004690,0.006248,0.249922,0,0);-ms-transform:matrix(0.187601,-0.004690,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187601,-0.004690,0.006248,0.249922,0,0);}
.m77_c00293{transform:matrix(0.187671,-0.004692,0.006248,0.249922,0,0);-ms-transform:matrix(0.187671,-0.004692,0.006248,0.249922,0,0);-webkit-transform:matrix(0.187671,-0.004692,0.006248,0.249922,0,0);}
.m33_c00293{transform:matrix(0.188216,-0.004705,0.006248,0.249922,0,0);-ms-transform:matrix(0.188216,-0.004705,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188216,-0.004705,0.006248,0.249922,0,0);}
.m7_c00293{transform:matrix(0.188391,-0.004710,0.006248,0.249922,0,0);-ms-transform:matrix(0.188391,-0.004710,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188391,-0.004710,0.006248,0.249922,0,0);}
.m13c_c00293{transform:matrix(0.188647,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188647,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188647,-0.002641,0.003500,0.249976,0,0);}
.m5b_c00293{transform:matrix(0.188651,-0.004716,0.006248,0.249922,0,0);-ms-transform:matrix(0.188651,-0.004716,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188651,-0.004716,0.006248,0.249922,0,0);}
.m163_c00293{transform:matrix(0.188816,-0.002643,0.003500,0.249976,0,0);-ms-transform:matrix(0.188816,-0.002643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188816,-0.002643,0.003500,0.249976,0,0);}
.m119_c00293{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);}
.m149_c00293{transform:matrix(0.189431,-0.002652,0.003500,0.249976,0,0);-ms-transform:matrix(0.189431,-0.002652,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189431,-0.002652,0.003500,0.249976,0,0);}
.m2b_c00293{transform:matrix(0.189921,-0.004748,0.006248,0.249922,0,0);-ms-transform:matrix(0.189921,-0.004748,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189921,-0.004748,0.006248,0.249922,0,0);}
.mb0_c00293{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);}
.m25_c00293{transform:matrix(0.190595,-0.004765,0.006248,0.249922,0,0);-ms-transform:matrix(0.190595,-0.004765,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190595,-0.004765,0.006248,0.249922,0,0);}
.me3_c00293{transform:matrix(0.190745,-0.004769,0.006248,0.249922,0,0);-ms-transform:matrix(0.190745,-0.004769,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190745,-0.004769,0.006248,0.249922,0,0);}
.m4a_c00293{transform:matrix(0.191000,-0.004775,0.006248,0.249922,0,0);-ms-transform:matrix(0.191000,-0.004775,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191000,-0.004775,0.006248,0.249922,0,0);}
.mf9_c00293{transform:matrix(0.191640,-0.004791,0.006248,0.249922,0,0);-ms-transform:matrix(0.191640,-0.004791,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191640,-0.004791,0.006248,0.249922,0,0);}
.m72_c00293{transform:matrix(0.191695,-0.004792,0.006248,0.249922,0,0);-ms-transform:matrix(0.191695,-0.004792,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191695,-0.004792,0.006248,0.249922,0,0);}
.m1a_c00293{transform:matrix(0.191810,-0.004795,0.006248,0.249922,0,0);-ms-transform:matrix(0.191810,-0.004795,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191810,-0.004795,0.006248,0.249922,0,0);}
.m7c_c00293{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);}
.m40_c00293{transform:matrix(0.191890,-0.004797,0.006248,0.249922,0,0);-ms-transform:matrix(0.191890,-0.004797,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191890,-0.004797,0.006248,0.249922,0,0);}
.m78_c00293{transform:matrix(0.192085,-0.004802,0.006248,0.249922,0,0);-ms-transform:matrix(0.192085,-0.004802,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192085,-0.004802,0.006248,0.249922,0,0);}
.m3f_c00293{transform:matrix(0.192110,-0.004803,0.006248,0.249922,0,0);-ms-transform:matrix(0.192110,-0.004803,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192110,-0.004803,0.006248,0.249922,0,0);}
.ma3_c00293{transform:matrix(0.192165,-0.004804,0.006248,0.249922,0,0);-ms-transform:matrix(0.192165,-0.004804,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192165,-0.004804,0.006248,0.249922,0,0);}
.me4_c00293{transform:matrix(0.192175,-0.004804,0.006248,0.249922,0,0);-ms-transform:matrix(0.192175,-0.004804,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192175,-0.004804,0.006248,0.249922,0,0);}
.ma6_c00293{transform:matrix(0.192535,-0.004813,0.006248,0.249922,0,0);-ms-transform:matrix(0.192535,-0.004813,0.006248,0.249922,0,0);-webkit-transform:matrix(0.192535,-0.004813,0.006248,0.249922,0,0);}
.m4e_c00293{transform:matrix(0.193095,-0.004827,0.006248,0.249922,0,0);-ms-transform:matrix(0.193095,-0.004827,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193095,-0.004827,0.006248,0.249922,0,0);}
.m0_c00293{transform:matrix(0.193095,-0.003090,0.003999,0.249968,0,0);-ms-transform:matrix(0.193095,-0.003090,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193095,-0.003090,0.003999,0.249968,0,0);}
.m83_c00293{transform:matrix(0.193225,-0.004831,0.006248,0.249922,0,0);-ms-transform:matrix(0.193225,-0.004831,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193225,-0.004831,0.006248,0.249922,0,0);}
.mbb_c00293{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);}
.m11a_c00293{transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);-ms-transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);}
.m58_c00293{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);}
.maf_c00293{transform:matrix(0.194164,-0.004854,0.006248,0.249922,0,0);-ms-transform:matrix(0.194164,-0.004854,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194164,-0.004854,0.006248,0.249922,0,0);}
.m148_c00293{transform:matrix(0.194801,-0.002727,0.003500,0.249976,0,0);-ms-transform:matrix(0.194801,-0.002727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194801,-0.002727,0.003500,0.249976,0,0);}
.m61_c00293{transform:matrix(0.195234,-0.004881,0.006248,0.249922,0,0);-ms-transform:matrix(0.195234,-0.004881,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195234,-0.004881,0.006248,0.249922,0,0);}
.m31_c00293{transform:matrix(0.195489,-0.004887,0.006248,0.249922,0,0);-ms-transform:matrix(0.195489,-0.004887,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195489,-0.004887,0.006248,0.249922,0,0);}
.m32_c00293{transform:matrix(0.195869,-0.004897,0.006248,0.249922,0,0);-ms-transform:matrix(0.195869,-0.004897,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195869,-0.004897,0.006248,0.249922,0,0);}
.mcb_c00293{transform:matrix(0.195879,-0.004897,0.006248,0.249922,0,0);-ms-transform:matrix(0.195879,-0.004897,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195879,-0.004897,0.006248,0.249922,0,0);}
.m7a_c00293{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);}
.m9e_c00293{transform:matrix(0.196584,-0.004915,0.006248,0.249922,0,0);-ms-transform:matrix(0.196584,-0.004915,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196584,-0.004915,0.006248,0.249922,0,0);}
.m70_c00293{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);}
.m156_c00293{transform:matrix(0.196771,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196771,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196771,-0.002755,0.003500,0.249976,0,0);}
.m45_c00293{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);}
.m88_c00293{transform:matrix(0.196888,-0.004922,0.006248,0.249922,0,0);-ms-transform:matrix(0.196888,-0.004922,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196888,-0.004922,0.006248,0.249922,0,0);}
.m51_c00293{transform:matrix(0.197418,-0.004935,0.006248,0.249922,0,0);-ms-transform:matrix(0.197418,-0.004935,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197418,-0.004935,0.006248,0.249922,0,0);}
.m47_c00293{transform:matrix(0.197433,-0.004936,0.006248,0.249922,0,0);-ms-transform:matrix(0.197433,-0.004936,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197433,-0.004936,0.006248,0.249922,0,0);}
.md7_c00293{transform:matrix(0.197443,-0.004936,0.006248,0.249922,0,0);-ms-transform:matrix(0.197443,-0.004936,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197443,-0.004936,0.006248,0.249922,0,0);}
.m9_c00293{transform:matrix(0.197458,-0.004936,0.006248,0.249922,0,0);-ms-transform:matrix(0.197458,-0.004936,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197458,-0.004936,0.006248,0.249922,0,0);}
.mc2_c00293{transform:matrix(0.197473,-0.004937,0.006248,0.249922,0,0);-ms-transform:matrix(0.197473,-0.004937,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197473,-0.004937,0.006248,0.249922,0,0);}
.m115_c00293{transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);}
.m24_c00293{transform:matrix(0.197933,-0.004948,0.006248,0.249922,0,0);-ms-transform:matrix(0.197933,-0.004948,0.006248,0.249922,0,0);-webkit-transform:matrix(0.197933,-0.004948,0.006248,0.249922,0,0);}
.m12f_c00293{transform:matrix(0.198036,-0.002772,0.003500,0.249976,0,0);-ms-transform:matrix(0.198036,-0.002772,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198036,-0.002772,0.003500,0.249976,0,0);}
.m27_c00293{transform:matrix(0.198333,-0.004958,0.006248,0.249922,0,0);-ms-transform:matrix(0.198333,-0.004958,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198333,-0.004958,0.006248,0.249922,0,0);}
.mad_c00293{transform:matrix(0.198513,-0.004963,0.006248,0.249922,0,0);-ms-transform:matrix(0.198513,-0.004963,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198513,-0.004963,0.006248,0.249922,0,0);}
.mce_c00293{transform:matrix(0.198568,-0.004964,0.006248,0.249922,0,0);-ms-transform:matrix(0.198568,-0.004964,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198568,-0.004964,0.006248,0.249922,0,0);}
.m10e_c00293{transform:matrix(0.198618,-0.004965,0.006248,0.249922,0,0);-ms-transform:matrix(0.198618,-0.004965,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198618,-0.004965,0.006248,0.249922,0,0);}
.m13d_c00293{transform:matrix(0.198666,-0.002781,0.003500,0.249976,0,0);-ms-transform:matrix(0.198666,-0.002781,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198666,-0.002781,0.003500,0.249976,0,0);}
.m7e_c00293{transform:matrix(0.198868,-0.004972,0.006248,0.249922,0,0);-ms-transform:matrix(0.198868,-0.004972,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198868,-0.004972,0.006248,0.249922,0,0);}
.md3_c00293{transform:matrix(0.198903,-0.004973,0.006248,0.249922,0,0);-ms-transform:matrix(0.198903,-0.004973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198903,-0.004973,0.006248,0.249922,0,0);}
.m42_c00293{transform:matrix(0.198978,-0.004974,0.006248,0.249922,0,0);-ms-transform:matrix(0.198978,-0.004974,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198978,-0.004974,0.006248,0.249922,0,0);}
.mfa_c00293{transform:matrix(0.199393,-0.004985,0.006248,0.249922,0,0);-ms-transform:matrix(0.199393,-0.004985,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199393,-0.004985,0.006248,0.249922,0,0);}
.m81_c00293{transform:matrix(0.200132,-0.005003,0.006248,0.249922,0,0);-ms-transform:matrix(0.200132,-0.005003,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200132,-0.005003,0.006248,0.249922,0,0);}
.m157_c00293{transform:matrix(0.200350,-0.002805,0.003500,0.249976,0,0);-ms-transform:matrix(0.200350,-0.002805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200350,-0.002805,0.003500,0.249976,0,0);}
.m113_c00293{transform:matrix(0.200550,-0.002808,0.003500,0.249976,0,0);-ms-transform:matrix(0.200550,-0.002808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200550,-0.002808,0.003500,0.249976,0,0);}
.ma4_c00293{transform:matrix(0.200757,-0.005019,0.006248,0.249922,0,0);-ms-transform:matrix(0.200757,-0.005019,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200757,-0.005019,0.006248,0.249922,0,0);}
.m120_c00293{transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);}
.m19_c00293{transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);-ms-transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);}
.mb7_c00293{transform:matrix(0.201282,-0.005032,0.006248,0.249922,0,0);-ms-transform:matrix(0.201282,-0.005032,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201282,-0.005032,0.006248,0.249922,0,0);}
.m53_c00293{transform:matrix(0.201402,-0.005035,0.006248,0.249922,0,0);-ms-transform:matrix(0.201402,-0.005035,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201402,-0.005035,0.006248,0.249922,0,0);}
.m4c_c00293{transform:matrix(0.202237,-0.005056,0.006248,0.249922,0,0);-ms-transform:matrix(0.202237,-0.005056,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202237,-0.005056,0.006248,0.249922,0,0);}
.m134_c00293{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);}
.m49_c00293{transform:matrix(0.202767,-0.005069,0.006248,0.249922,0,0);-ms-transform:matrix(0.202767,-0.005069,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202767,-0.005069,0.006248,0.249922,0,0);}
.mb2_c00293{transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);-ms-transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203087,-0.005077,0.006248,0.249922,0,0);}
.mf5_c00293{transform:matrix(0.203351,-0.005084,0.006248,0.249922,0,0);-ms-transform:matrix(0.203351,-0.005084,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203351,-0.005084,0.006248,0.249922,0,0);}
.med_c00293{transform:matrix(0.203471,-0.005087,0.006248,0.249922,0,0);-ms-transform:matrix(0.203471,-0.005087,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203471,-0.005087,0.006248,0.249922,0,0);}
.m161_c00293{transform:matrix(0.203590,-0.002850,0.003500,0.249976,0,0);-ms-transform:matrix(0.203590,-0.002850,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203590,-0.002850,0.003500,0.249976,0,0);}
.m140_c00293{transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203835,-0.002854,0.003500,0.249976,0,0);}
.m62_c00293{transform:matrix(0.204666,-0.005117,0.006248,0.249922,0,0);-ms-transform:matrix(0.204666,-0.005117,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204666,-0.005117,0.006248,0.249922,0,0);}
.m54_c00293{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);}
.mda_c00293{transform:matrix(0.206450,-0.005161,0.006248,0.249922,0,0);-ms-transform:matrix(0.206450,-0.005161,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206450,-0.005161,0.006248,0.249922,0,0);}
.mfe_c00293{transform:matrix(0.206590,-0.005165,0.006248,0.249922,0,0);-ms-transform:matrix(0.206590,-0.005165,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206590,-0.005165,0.006248,0.249922,0,0);}
.m7b_c00293{transform:matrix(0.207060,-0.005177,0.006248,0.249922,0,0);-ms-transform:matrix(0.207060,-0.005177,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207060,-0.005177,0.006248,0.249922,0,0);}
.ma0_c00293{transform:matrix(0.207095,-0.005177,0.006248,0.249922,0,0);-ms-transform:matrix(0.207095,-0.005177,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207095,-0.005177,0.006248,0.249922,0,0);}
.m30_c00293{transform:matrix(0.207735,-0.005193,0.006248,0.249922,0,0);-ms-transform:matrix(0.207735,-0.005193,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207735,-0.005193,0.006248,0.249922,0,0);}
.m6d_c00293{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);}
.mc5_c00293{transform:matrix(0.207875,-0.005197,0.006248,0.249922,0,0);-ms-transform:matrix(0.207875,-0.005197,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207875,-0.005197,0.006248,0.249922,0,0);}
.m4b_c00293{transform:matrix(0.208030,-0.005201,0.006248,0.249922,0,0);-ms-transform:matrix(0.208030,-0.005201,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208030,-0.005201,0.006248,0.249922,0,0);}
.m65_c00293{transform:matrix(0.208050,-0.005201,0.006248,0.249922,0,0);-ms-transform:matrix(0.208050,-0.005201,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208050,-0.005201,0.006248,0.249922,0,0);}
.m124_c00293{transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);-ms-transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);}
.mc6_c00293{transform:matrix(0.208485,-0.005212,0.006248,0.249922,0,0);-ms-transform:matrix(0.208485,-0.005212,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208485,-0.005212,0.006248,0.249922,0,0);}
.me8_c00293{transform:matrix(0.208655,-0.005216,0.006248,0.249922,0,0);-ms-transform:matrix(0.208655,-0.005216,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208655,-0.005216,0.006248,0.249922,0,0);}
.md9_c00293{transform:matrix(0.208710,-0.005218,0.006248,0.249922,0,0);-ms-transform:matrix(0.208710,-0.005218,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208710,-0.005218,0.006248,0.249922,0,0);}
.m8b_c00293{transform:matrix(0.209285,-0.005232,0.006248,0.249922,0,0);-ms-transform:matrix(0.209285,-0.005232,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209285,-0.005232,0.006248,0.249922,0,0);}
.m64_c00293{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);}
.m135_c00293{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);}
.m152_c00293{transform:matrix(0.209584,-0.002934,0.003500,0.249976,0,0);-ms-transform:matrix(0.209584,-0.002934,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209584,-0.002934,0.003500,0.249976,0,0);}
.mc4_c00293{transform:matrix(0.209759,-0.005244,0.006248,0.249922,0,0);-ms-transform:matrix(0.209759,-0.005244,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209759,-0.005244,0.006248,0.249922,0,0);}
.m5a_c00293{transform:matrix(0.209809,-0.005245,0.006248,0.249922,0,0);-ms-transform:matrix(0.209809,-0.005245,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209809,-0.005245,0.006248,0.249922,0,0);}
.m13e_c00293{transform:matrix(0.210029,-0.002940,0.003500,0.249976,0,0);-ms-transform:matrix(0.210029,-0.002940,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210029,-0.002940,0.003500,0.249976,0,0);}
.me9_c00293{transform:matrix(0.210399,-0.005260,0.006248,0.249922,0,0);-ms-transform:matrix(0.210399,-0.005260,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210399,-0.005260,0.006248,0.249922,0,0);}
.m154_c00293{transform:matrix(0.210484,-0.002947,0.003500,0.249976,0,0);-ms-transform:matrix(0.210484,-0.002947,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210484,-0.002947,0.003500,0.249976,0,0);}
.m100_c00293{transform:matrix(0.210559,-0.005264,0.006248,0.249922,0,0);-ms-transform:matrix(0.210559,-0.005264,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210559,-0.005264,0.006248,0.249922,0,0);}
.m23_c00293{transform:matrix(0.210864,-0.005272,0.006248,0.249922,0,0);-ms-transform:matrix(0.210864,-0.005272,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210864,-0.005272,0.006248,0.249922,0,0);}
.mec_c00293{transform:matrix(0.211329,-0.005283,0.006248,0.249922,0,0);-ms-transform:matrix(0.211329,-0.005283,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211329,-0.005283,0.006248,0.249922,0,0);}
.m10d_c00293{transform:matrix(0.211794,-0.005295,0.006248,0.249922,0,0);-ms-transform:matrix(0.211794,-0.005295,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211794,-0.005295,0.006248,0.249922,0,0);}
.mfc_c00293{transform:matrix(0.211914,-0.005298,0.006248,0.249922,0,0);-ms-transform:matrix(0.211914,-0.005298,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211914,-0.005298,0.006248,0.249922,0,0);}
.m97_c00293{transform:matrix(0.211969,-0.005299,0.006248,0.249922,0,0);-ms-transform:matrix(0.211969,-0.005299,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211969,-0.005299,0.006248,0.249922,0,0);}
.m15c_c00293{transform:matrix(0.212369,-0.002973,0.003500,0.249976,0,0);-ms-transform:matrix(0.212369,-0.002973,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212369,-0.002973,0.003500,0.249976,0,0);}
.m6e_c00293{transform:matrix(0.212489,-0.005312,0.006248,0.249922,0,0);-ms-transform:matrix(0.212489,-0.005312,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212489,-0.005312,0.006248,0.249922,0,0);}
.m153_c00293{transform:matrix(0.212859,-0.002980,0.003500,0.249976,0,0);-ms-transform:matrix(0.212859,-0.002980,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212859,-0.002980,0.003500,0.249976,0,0);}
.m5f_c00293{transform:matrix(0.212938,-0.005323,0.006248,0.249922,0,0);-ms-transform:matrix(0.212938,-0.005323,0.006248,0.249922,0,0);-webkit-transform:matrix(0.212938,-0.005323,0.006248,0.249922,0,0);}
.mef_c00293{transform:matrix(0.213228,-0.005331,0.006248,0.249922,0,0);-ms-transform:matrix(0.213228,-0.005331,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213228,-0.005331,0.006248,0.249922,0,0);}
.m12a_c00293{transform:matrix(0.213849,-0.002994,0.003500,0.249976,0,0);-ms-transform:matrix(0.213849,-0.002994,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213849,-0.002994,0.003500,0.249976,0,0);}
.m10a_c00293{transform:matrix(0.214303,-0.005358,0.006248,0.249922,0,0);-ms-transform:matrix(0.214303,-0.005358,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214303,-0.005358,0.006248,0.249922,0,0);}
.m14d_c00293{transform:matrix(0.215364,-0.003015,0.003500,0.249976,0,0);-ms-transform:matrix(0.215364,-0.003015,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215364,-0.003015,0.003500,0.249976,0,0);}
.mdc_c00293{transform:matrix(0.215533,-0.005388,0.006248,0.249922,0,0);-ms-transform:matrix(0.215533,-0.005388,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215533,-0.005388,0.006248,0.249922,0,0);}
.m147_c00293{transform:matrix(0.215534,-0.003017,0.003500,0.249976,0,0);-ms-transform:matrix(0.215534,-0.003017,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215534,-0.003017,0.003500,0.249976,0,0);}
.mb4_c00293{transform:matrix(0.215603,-0.005390,0.006248,0.249922,0,0);-ms-transform:matrix(0.215603,-0.005390,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215603,-0.005390,0.006248,0.249922,0,0);}
.m1c_c00293{transform:matrix(0.215638,-0.005391,0.006248,0.249922,0,0);-ms-transform:matrix(0.215638,-0.005391,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215638,-0.005391,0.006248,0.249922,0,0);}
.m114_c00293{transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);-ms-transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);}
.mbc_c00293{transform:matrix(0.217017,-0.005425,0.006248,0.249922,0,0);-ms-transform:matrix(0.217017,-0.005425,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217017,-0.005425,0.006248,0.249922,0,0);}
.m150_c00293{transform:matrix(0.217194,-0.003041,0.003500,0.249976,0,0);-ms-transform:matrix(0.217194,-0.003041,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217194,-0.003041,0.003500,0.249976,0,0);}
.m80_c00293{transform:matrix(0.217217,-0.005430,0.006248,0.249922,0,0);-ms-transform:matrix(0.217217,-0.005430,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217217,-0.005430,0.006248,0.249922,0,0);}
.m125_c00293{transform:matrix(0.217394,-0.003044,0.003500,0.249976,0,0);-ms-transform:matrix(0.217394,-0.003044,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217394,-0.003044,0.003500,0.249976,0,0);}
.m91_c00293{transform:matrix(0.217997,-0.005450,0.006248,0.249922,0,0);-ms-transform:matrix(0.217997,-0.005450,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217997,-0.005450,0.006248,0.249922,0,0);}
.m160_c00293{transform:matrix(0.218764,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218764,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218764,-0.003063,0.003500,0.249976,0,0);}
.mc0_c00293{transform:matrix(0.219152,-0.005479,0.006248,0.249922,0,0);-ms-transform:matrix(0.219152,-0.005479,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219152,-0.005479,0.006248,0.249922,0,0);}
.meb_c00293{transform:matrix(0.219406,-0.005485,0.006248,0.249922,0,0);-ms-transform:matrix(0.219406,-0.005485,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219406,-0.005485,0.006248,0.249922,0,0);}
.m8a_c00293{transform:matrix(0.219456,-0.005486,0.006248,0.249922,0,0);-ms-transform:matrix(0.219456,-0.005486,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219456,-0.005486,0.006248,0.249922,0,0);}
.mb6_c00293{transform:matrix(0.219931,-0.005498,0.006248,0.249922,0,0);-ms-transform:matrix(0.219931,-0.005498,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219931,-0.005498,0.006248,0.249922,0,0);}
.m101_c00293{transform:matrix(0.220231,-0.005506,0.006248,0.249922,0,0);-ms-transform:matrix(0.220231,-0.005506,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220231,-0.005506,0.006248,0.249922,0,0);}
.ma9_c00293{transform:matrix(0.220691,-0.005517,0.006248,0.249922,0,0);-ms-transform:matrix(0.220691,-0.005517,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220691,-0.005517,0.006248,0.249922,0,0);}
.m122_c00293{transform:matrix(0.220843,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220843,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220843,-0.003092,0.003500,0.249976,0,0);}
.m11c_c00293{transform:matrix(0.221373,-0.003099,0.003500,0.249976,0,0);-ms-transform:matrix(0.221373,-0.003099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221373,-0.003099,0.003500,0.249976,0,0);}
.m55_c00293{transform:matrix(0.221566,-0.005539,0.006248,0.249922,0,0);-ms-transform:matrix(0.221566,-0.005539,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221566,-0.005539,0.006248,0.249922,0,0);}
.m8f_c00293{transform:matrix(0.221781,-0.005545,0.006248,0.249922,0,0);-ms-transform:matrix(0.221781,-0.005545,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221781,-0.005545,0.006248,0.249922,0,0);}
.m102_c00293{transform:matrix(0.221861,-0.005547,0.006248,0.249922,0,0);-ms-transform:matrix(0.221861,-0.005547,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221861,-0.005547,0.006248,0.249922,0,0);}
.m128_c00293{transform:matrix(0.222163,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222163,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222163,-0.003110,0.003500,0.249976,0,0);}
.m7f_c00293{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);}
.m144_c00293{transform:matrix(0.222738,-0.003118,0.003500,0.249976,0,0);-ms-transform:matrix(0.222738,-0.003118,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222738,-0.003118,0.003500,0.249976,0,0);}
.m89_c00293{transform:matrix(0.223855,-0.005596,0.006248,0.249922,0,0);-ms-transform:matrix(0.223855,-0.005596,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223855,-0.005596,0.006248,0.249922,0,0);}
.m5c_c00293{transform:matrix(0.223915,-0.005598,0.006248,0.249922,0,0);-ms-transform:matrix(0.223915,-0.005598,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223915,-0.005598,0.006248,0.249922,0,0);}
.mf2_c00293{transform:matrix(0.224140,-0.005603,0.006248,0.249922,0,0);-ms-transform:matrix(0.224140,-0.005603,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224140,-0.005603,0.006248,0.249922,0,0);}
.m112_c00293{transform:matrix(0.224433,-0.003142,0.003500,0.249976,0,0);-ms-transform:matrix(0.224433,-0.003142,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224433,-0.003142,0.003500,0.249976,0,0);}
.m116_c00293{transform:matrix(0.226083,-0.003165,0.003500,0.249976,0,0);-ms-transform:matrix(0.226083,-0.003165,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226083,-0.003165,0.003500,0.249976,0,0);}
.m117_c00293{transform:matrix(0.226498,-0.003171,0.003500,0.249976,0,0);-ms-transform:matrix(0.226498,-0.003171,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226498,-0.003171,0.003500,0.249976,0,0);}
.m104_c00293{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);}
.m158_c00293{transform:matrix(0.227283,-0.003182,0.003500,0.249976,0,0);-ms-transform:matrix(0.227283,-0.003182,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227283,-0.003182,0.003500,0.249976,0,0);}
.m3a_c00293{transform:matrix(0.227799,-0.005695,0.006248,0.249922,0,0);-ms-transform:matrix(0.227799,-0.005695,0.006248,0.249922,0,0);-webkit-transform:matrix(0.227799,-0.005695,0.006248,0.249922,0,0);}
.m132_c00293{transform:matrix(0.229163,-0.003208,0.003500,0.249976,0,0);-ms-transform:matrix(0.229163,-0.003208,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229163,-0.003208,0.003500,0.249976,0,0);}
.mdf_c00293{transform:matrix(0.230398,-0.005760,0.006248,0.249922,0,0);-ms-transform:matrix(0.230398,-0.005760,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230398,-0.005760,0.006248,0.249922,0,0);}
.mde_c00293{transform:matrix(0.230983,-0.005775,0.006248,0.249922,0,0);-ms-transform:matrix(0.230983,-0.005775,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230983,-0.005775,0.006248,0.249922,0,0);}
.mc1_c00293{transform:matrix(0.231183,-0.005780,0.006248,0.249922,0,0);-ms-transform:matrix(0.231183,-0.005780,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231183,-0.005780,0.006248,0.249922,0,0);}
.m2f_c00293{transform:matrix(0.231388,-0.005785,0.006248,0.249922,0,0);-ms-transform:matrix(0.231388,-0.005785,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231388,-0.005785,0.006248,0.249922,0,0);}
.m98_c00293{transform:matrix(0.231508,-0.005788,0.006248,0.249922,0,0);-ms-transform:matrix(0.231508,-0.005788,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231508,-0.005788,0.006248,0.249922,0,0);}
.mab_c00293{transform:matrix(0.231538,-0.005788,0.006248,0.249922,0,0);-ms-transform:matrix(0.231538,-0.005788,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231538,-0.005788,0.006248,0.249922,0,0);}
.m107_c00293{transform:matrix(0.231748,-0.005794,0.006248,0.249922,0,0);-ms-transform:matrix(0.231748,-0.005794,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231748,-0.005794,0.006248,0.249922,0,0);}
.m15d_c00293{transform:matrix(0.233057,-0.003263,0.003500,0.249976,0,0);-ms-transform:matrix(0.233057,-0.003263,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233057,-0.003263,0.003500,0.249976,0,0);}
.m6c_c00293{transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);-ms-transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);}
.m2e_c00293{transform:matrix(0.234407,-0.005860,0.006248,0.249922,0,0);-ms-transform:matrix(0.234407,-0.005860,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234407,-0.005860,0.006248,0.249922,0,0);}
.m75_c00293{transform:matrix(0.234777,-0.005869,0.006248,0.249922,0,0);-ms-transform:matrix(0.234777,-0.005869,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234777,-0.005869,0.006248,0.249922,0,0);}
.m127_c00293{transform:matrix(0.234962,-0.003289,0.003500,0.249976,0,0);-ms-transform:matrix(0.234962,-0.003289,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234962,-0.003289,0.003500,0.249976,0,0);}
.mb9_c00293{transform:matrix(0.235296,-0.005882,0.006248,0.249922,0,0);-ms-transform:matrix(0.235296,-0.005882,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235296,-0.005882,0.006248,0.249922,0,0);}
.m60_c00293{transform:matrix(0.236246,-0.005906,0.006248,0.249922,0,0);-ms-transform:matrix(0.236246,-0.005906,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236246,-0.005906,0.006248,0.249922,0,0);}
.mb3_c00293{transform:matrix(0.236421,-0.005911,0.006248,0.249922,0,0);-ms-transform:matrix(0.236421,-0.005911,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236421,-0.005911,0.006248,0.249922,0,0);}
.m12c_c00293{transform:matrix(0.236922,-0.003317,0.003500,0.249976,0,0);-ms-transform:matrix(0.236922,-0.003317,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236922,-0.003317,0.003500,0.249976,0,0);}
.mc3_c00293{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);}
.m9d_c00293{transform:matrix(0.238016,-0.005950,0.006248,0.249922,0,0);-ms-transform:matrix(0.238016,-0.005950,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238016,-0.005950,0.006248,0.249922,0,0);}
.m142_c00293{transform:matrix(0.238287,-0.003336,0.003500,0.249976,0,0);-ms-transform:matrix(0.238287,-0.003336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238287,-0.003336,0.003500,0.249976,0,0);}
.m126_c00293{transform:matrix(0.238417,-0.003338,0.003500,0.249976,0,0);-ms-transform:matrix(0.238417,-0.003338,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238417,-0.003338,0.003500,0.249976,0,0);}
.mdd_c00293{transform:matrix(0.238455,-0.005961,0.006248,0.249922,0,0);-ms-transform:matrix(0.238455,-0.005961,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238455,-0.005961,0.006248,0.249922,0,0);}
.mcf_c00293{transform:matrix(0.238570,-0.005964,0.006248,0.249922,0,0);-ms-transform:matrix(0.238570,-0.005964,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238570,-0.005964,0.006248,0.249922,0,0);}
.m9a_c00293{transform:matrix(0.238745,-0.005969,0.006248,0.249922,0,0);-ms-transform:matrix(0.238745,-0.005969,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238745,-0.005969,0.006248,0.249922,0,0);}
.m2d_c00293{transform:matrix(0.239390,-0.005985,0.006248,0.249922,0,0);-ms-transform:matrix(0.239390,-0.005985,0.006248,0.249922,0,0);-webkit-transform:matrix(0.239390,-0.005985,0.006248,0.249922,0,0);}
.md2_c00293{transform:matrix(0.240090,-0.006002,0.006248,0.249922,0,0);-ms-transform:matrix(0.240090,-0.006002,0.006248,0.249922,0,0);-webkit-transform:matrix(0.240090,-0.006002,0.006248,0.249922,0,0);}
.m48_c00293{transform:matrix(0.240770,-0.006019,0.006248,0.249922,0,0);-ms-transform:matrix(0.240770,-0.006019,0.006248,0.249922,0,0);-webkit-transform:matrix(0.240770,-0.006019,0.006248,0.249922,0,0);}
.m145_c00293{transform:matrix(0.240846,-0.003372,0.003500,0.249976,0,0);-ms-transform:matrix(0.240846,-0.003372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240846,-0.003372,0.003500,0.249976,0,0);}
.m3e_c00293{transform:matrix(0.241580,-0.006039,0.006248,0.249922,0,0);-ms-transform:matrix(0.241580,-0.006039,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241580,-0.006039,0.006248,0.249922,0,0);}
.m12d_c00293{transform:matrix(0.242441,-0.003394,0.003500,0.249976,0,0);-ms-transform:matrix(0.242441,-0.003394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242441,-0.003394,0.003500,0.249976,0,0);}
.m14_c00293{transform:matrix(0.242699,-0.006067,0.006248,0.249922,0,0);-ms-transform:matrix(0.242699,-0.006067,0.006248,0.249922,0,0);-webkit-transform:matrix(0.242699,-0.006067,0.006248,0.249922,0,0);}
.mca_c00293{transform:matrix(0.244968,-0.006124,0.006248,0.249922,0,0);-ms-transform:matrix(0.244968,-0.006124,0.006248,0.249922,0,0);-webkit-transform:matrix(0.244968,-0.006124,0.006248,0.249922,0,0);}
.m14f_c00293{transform:matrix(0.245086,-0.003431,0.003500,0.249976,0,0);-ms-transform:matrix(0.245086,-0.003431,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245086,-0.003431,0.003500,0.249976,0,0);}
.m12b_c00293{transform:matrix(0.245261,-0.003434,0.003500,0.249976,0,0);-ms-transform:matrix(0.245261,-0.003434,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245261,-0.003434,0.003500,0.249976,0,0);}
.m44_c00293{transform:matrix(0.246298,-0.006157,0.006248,0.249922,0,0);-ms-transform:matrix(0.246298,-0.006157,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246298,-0.006157,0.006248,0.249922,0,0);}
.m46_c00293{transform:matrix(0.246328,-0.006158,0.006248,0.249922,0,0);-ms-transform:matrix(0.246328,-0.006158,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246328,-0.006158,0.006248,0.249922,0,0);}
.m118_c00293{transform:matrix(0.246856,-0.003456,0.003500,0.249976,0,0);-ms-transform:matrix(0.246856,-0.003456,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246856,-0.003456,0.003500,0.249976,0,0);}
.mff_c00293{transform:matrix(0.247558,-0.006189,0.006248,0.249922,0,0);-ms-transform:matrix(0.247558,-0.006189,0.006248,0.249922,0,0);-webkit-transform:matrix(0.247558,-0.006189,0.006248,0.249922,0,0);}
.m11b_c00293{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);}
.m10c_c00293{transform:matrix(0.249687,-0.006242,0.006248,0.249922,0,0);-ms-transform:matrix(0.249687,-0.006242,0.006248,0.249922,0,0);-webkit-transform:matrix(0.249687,-0.006242,0.006248,0.249922,0,0);}
.m3_c00293{transform:matrix(0.251187,-0.006280,0.006248,0.249922,0,0);-ms-transform:matrix(0.251187,-0.006280,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251187,-0.006280,0.006248,0.249922,0,0);}
.mba_c00293{transform:matrix(0.251766,-0.006294,0.006248,0.249922,0,0);-ms-transform:matrix(0.251766,-0.006294,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251766,-0.006294,0.006248,0.249922,0,0);}
.m92_c00293{transform:matrix(0.251931,-0.006298,0.006248,0.249922,0,0);-ms-transform:matrix(0.251931,-0.006298,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251931,-0.006298,0.006248,0.249922,0,0);}
.m133_c00293{transform:matrix(0.252715,-0.003538,0.003500,0.249976,0,0);-ms-transform:matrix(0.252715,-0.003538,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252715,-0.003538,0.003500,0.249976,0,0);}
.m151_c00293{transform:matrix(0.253740,-0.003552,0.003500,0.249976,0,0);-ms-transform:matrix(0.253740,-0.003552,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253740,-0.003552,0.003500,0.249976,0,0);}
.m141_c00293{transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);-ms-transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);}
.mcd_c00293{transform:matrix(0.254910,-0.006373,0.006248,0.249922,0,0);-ms-transform:matrix(0.254910,-0.006373,0.006248,0.249922,0,0);-webkit-transform:matrix(0.254910,-0.006373,0.006248,0.249922,0,0);}
.m99_c00293{transform:matrix(0.256460,-0.006411,0.006248,0.249922,0,0);-ms-transform:matrix(0.256460,-0.006411,0.006248,0.249922,0,0);-webkit-transform:matrix(0.256460,-0.006411,0.006248,0.249922,0,0);}
.ma2_c00293{transform:matrix(0.257125,-0.006428,0.006248,0.249922,0,0);-ms-transform:matrix(0.257125,-0.006428,0.006248,0.249922,0,0);-webkit-transform:matrix(0.257125,-0.006428,0.006248,0.249922,0,0);}
.mc8_c00293{transform:matrix(0.257420,-0.006435,0.006248,0.249922,0,0);-ms-transform:matrix(0.257420,-0.006435,0.006248,0.249922,0,0);-webkit-transform:matrix(0.257420,-0.006435,0.006248,0.249922,0,0);}
.mf8_c00293{transform:matrix(0.259464,-0.006487,0.006248,0.249922,0,0);-ms-transform:matrix(0.259464,-0.006487,0.006248,0.249922,0,0);-webkit-transform:matrix(0.259464,-0.006487,0.006248,0.249922,0,0);}
.m67_c00293{transform:matrix(0.259839,-0.006496,0.006248,0.249922,0,0);-ms-transform:matrix(0.259839,-0.006496,0.006248,0.249922,0,0);-webkit-transform:matrix(0.259839,-0.006496,0.006248,0.249922,0,0);}
.m9c_c00293{transform:matrix(0.260729,-0.006518,0.006248,0.249922,0,0);-ms-transform:matrix(0.260729,-0.006518,0.006248,0.249922,0,0);-webkit-transform:matrix(0.260729,-0.006518,0.006248,0.249922,0,0);}
.m10f_c00293{transform:matrix(0.261448,-0.006536,0.006248,0.249922,0,0);-ms-transform:matrix(0.261448,-0.006536,0.006248,0.249922,0,0);-webkit-transform:matrix(0.261448,-0.006536,0.006248,0.249922,0,0);}
.m137_c00293{transform:matrix(0.262469,-0.003675,0.003500,0.249976,0,0);-ms-transform:matrix(0.262469,-0.003675,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262469,-0.003675,0.003500,0.249976,0,0);}
.m8e_c00293{transform:matrix(0.264207,-0.006605,0.006248,0.249922,0,0);-ms-transform:matrix(0.264207,-0.006605,0.006248,0.249922,0,0);-webkit-transform:matrix(0.264207,-0.006605,0.006248,0.249922,0,0);}
.m86_c00293{transform:matrix(0.265507,-0.006638,0.006248,0.249922,0,0);-ms-transform:matrix(0.265507,-0.006638,0.006248,0.249922,0,0);-webkit-transform:matrix(0.265507,-0.006638,0.006248,0.249922,0,0);}
.m15f_c00293{transform:matrix(0.267579,-0.003746,0.003500,0.249976,0,0);-ms-transform:matrix(0.267579,-0.003746,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267579,-0.003746,0.003500,0.249976,0,0);}
.md6_c00293{transform:matrix(0.267581,-0.006690,0.006248,0.249922,0,0);-ms-transform:matrix(0.267581,-0.006690,0.006248,0.249922,0,0);-webkit-transform:matrix(0.267581,-0.006690,0.006248,0.249922,0,0);}
.m1e_c00293{transform:matrix(0.267831,-0.006696,0.006248,0.249922,0,0);-ms-transform:matrix(0.267831,-0.006696,0.006248,0.249922,0,0);-webkit-transform:matrix(0.267831,-0.006696,0.006248,0.249922,0,0);}
.m66_c00293{transform:matrix(0.270176,-0.006754,0.006248,0.249922,0,0);-ms-transform:matrix(0.270176,-0.006754,0.006248,0.249922,0,0);-webkit-transform:matrix(0.270176,-0.006754,0.006248,0.249922,0,0);}
.m13f_c00293{transform:matrix(0.270294,-0.003784,0.003500,0.249976,0,0);-ms-transform:matrix(0.270294,-0.003784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270294,-0.003784,0.003500,0.249976,0,0);}
.md0_c00293{transform:matrix(0.271330,-0.006783,0.006248,0.249922,0,0);-ms-transform:matrix(0.271330,-0.006783,0.006248,0.249922,0,0);-webkit-transform:matrix(0.271330,-0.006783,0.006248,0.249922,0,0);}
.m11e_c00293{transform:matrix(0.274793,-0.003847,0.003500,0.249976,0,0);-ms-transform:matrix(0.274793,-0.003847,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274793,-0.003847,0.003500,0.249976,0,0);}
.m162_c00293{transform:matrix(0.275398,-0.003856,0.003500,0.249976,0,0);-ms-transform:matrix(0.275398,-0.003856,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275398,-0.003856,0.003500,0.249976,0,0);}
.m9b_c00293{transform:matrix(0.277438,-0.006936,0.006248,0.249922,0,0);-ms-transform:matrix(0.277438,-0.006936,0.006248,0.249922,0,0);-webkit-transform:matrix(0.277438,-0.006936,0.006248,0.249922,0,0);}
.mcc_c00293{transform:matrix(0.277738,-0.006943,0.006248,0.249922,0,0);-ms-transform:matrix(0.277738,-0.006943,0.006248,0.249922,0,0);-webkit-transform:matrix(0.277738,-0.006943,0.006248,0.249922,0,0);}
.m14b_c00293{transform:matrix(0.278113,-0.003894,0.003500,0.249976,0,0);-ms-transform:matrix(0.278113,-0.003894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278113,-0.003894,0.003500,0.249976,0,0);}
.m14c_c00293{transform:matrix(0.278708,-0.003902,0.003500,0.249976,0,0);-ms-transform:matrix(0.278708,-0.003902,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278708,-0.003902,0.003500,0.249976,0,0);}
.m130_c00293{transform:matrix(0.280393,-0.003925,0.003500,0.249976,0,0);-ms-transform:matrix(0.280393,-0.003925,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280393,-0.003925,0.003500,0.249976,0,0);}
.m138_c00293{transform:matrix(0.280852,-0.003932,0.003500,0.249976,0,0);-ms-transform:matrix(0.280852,-0.003932,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280852,-0.003932,0.003500,0.249976,0,0);}
.mf4_c00293{transform:matrix(0.280867,-0.007022,0.006248,0.249922,0,0);-ms-transform:matrix(0.280867,-0.007022,0.006248,0.249922,0,0);-webkit-transform:matrix(0.280867,-0.007022,0.006248,0.249922,0,0);}
.m105_c00293{transform:matrix(0.282492,-0.007062,0.006248,0.249922,0,0);-ms-transform:matrix(0.282492,-0.007062,0.006248,0.249922,0,0);-webkit-transform:matrix(0.282492,-0.007062,0.006248,0.249922,0,0);}
.md1_c00293{transform:matrix(0.286151,-0.007154,0.006248,0.249922,0,0);-ms-transform:matrix(0.286151,-0.007154,0.006248,0.249922,0,0);-webkit-transform:matrix(0.286151,-0.007154,0.006248,0.249922,0,0);}
.m11d_c00293{transform:matrix(0.286497,-0.004011,0.003500,0.249976,0,0);-ms-transform:matrix(0.286497,-0.004011,0.003500,0.249976,0,0);-webkit-transform:matrix(0.286497,-0.004011,0.003500,0.249976,0,0);}
.m108_c00293{transform:matrix(0.286630,-0.007166,0.006248,0.249922,0,0);-ms-transform:matrix(0.286630,-0.007166,0.006248,0.249922,0,0);-webkit-transform:matrix(0.286630,-0.007166,0.006248,0.249922,0,0);}
.ma1_c00293{transform:matrix(0.287780,-0.007195,0.006248,0.249922,0,0);-ms-transform:matrix(0.287780,-0.007195,0.006248,0.249922,0,0);-webkit-transform:matrix(0.287780,-0.007195,0.006248,0.249922,0,0);}
.m95_c00293{transform:matrix(0.288575,-0.007214,0.006248,0.249922,0,0);-ms-transform:matrix(0.288575,-0.007214,0.006248,0.249922,0,0);-webkit-transform:matrix(0.288575,-0.007214,0.006248,0.249922,0,0);}
.m94_c00293{transform:matrix(0.289590,-0.007240,0.006248,0.249922,0,0);-ms-transform:matrix(0.289590,-0.007240,0.006248,0.249922,0,0);-webkit-transform:matrix(0.289590,-0.007240,0.006248,0.249922,0,0);}
.m52_c00293{transform:matrix(0.291049,-0.007276,0.006248,0.249922,0,0);-ms-transform:matrix(0.291049,-0.007276,0.006248,0.249922,0,0);-webkit-transform:matrix(0.291049,-0.007276,0.006248,0.249922,0,0);}
.m14a_c00293{transform:matrix(0.293991,-0.004116,0.003500,0.249976,0,0);-ms-transform:matrix(0.293991,-0.004116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.293991,-0.004116,0.003500,0.249976,0,0);}
.maa_c00293{transform:matrix(0.294108,-0.007353,0.006248,0.249922,0,0);-ms-transform:matrix(0.294108,-0.007353,0.006248,0.249922,0,0);-webkit-transform:matrix(0.294108,-0.007353,0.006248,0.249922,0,0);}
.ma7_c00293{transform:matrix(0.294268,-0.007357,0.006248,0.249922,0,0);-ms-transform:matrix(0.294268,-0.007357,0.006248,0.249922,0,0);-webkit-transform:matrix(0.294268,-0.007357,0.006248,0.249922,0,0);}
.mc9_c00293{transform:matrix(0.297732,-0.007443,0.006248,0.249922,0,0);-ms-transform:matrix(0.297732,-0.007443,0.006248,0.249922,0,0);-webkit-transform:matrix(0.297732,-0.007443,0.006248,0.249922,0,0);}
.m1_c00293{transform:matrix(0.303456,-0.004855,0.003999,0.249968,0,0);-ms-transform:matrix(0.303456,-0.004855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.303456,-0.004855,0.003999,0.249968,0,0);}
.m136_c00293{transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);-ms-transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);}
.m131_c00293{transform:matrix(0.321893,-0.004507,0.003500,0.249976,0,0);-ms-transform:matrix(0.321893,-0.004507,0.003500,0.249976,0,0);-webkit-transform:matrix(0.321893,-0.004507,0.003500,0.249976,0,0);}
.m96_c00293{transform:matrix(0.323584,-0.008090,0.006248,0.249922,0,0);-ms-transform:matrix(0.323584,-0.008090,0.006248,0.249922,0,0);-webkit-transform:matrix(0.323584,-0.008090,0.006248,0.249922,0,0);}
.ma5_c00293{transform:matrix(0.324769,-0.008119,0.006248,0.249922,0,0);-ms-transform:matrix(0.324769,-0.008119,0.006248,0.249922,0,0);-webkit-transform:matrix(0.324769,-0.008119,0.006248,0.249922,0,0);}
.mdb_c00293{transform:matrix(0.325473,-0.008137,0.006248,0.249922,0,0);-ms-transform:matrix(0.325473,-0.008137,0.006248,0.249922,0,0);-webkit-transform:matrix(0.325473,-0.008137,0.006248,0.249922,0,0);}
.mf6_c00293{transform:matrix(0.325803,-0.008145,0.006248,0.249922,0,0);-ms-transform:matrix(0.325803,-0.008145,0.006248,0.249922,0,0);-webkit-transform:matrix(0.325803,-0.008145,0.006248,0.249922,0,0);}
.m15_c00293{transform:matrix(0.340754,-0.008519,0.006248,0.249922,0,0);-ms-transform:matrix(0.340754,-0.008519,0.006248,0.249922,0,0);-webkit-transform:matrix(0.340754,-0.008519,0.006248,0.249922,0,0);}
.m8d_c00293{transform:matrix(0.342253,-0.008556,0.006248,0.249922,0,0);-ms-transform:matrix(0.342253,-0.008556,0.006248,0.249922,0,0);-webkit-transform:matrix(0.342253,-0.008556,0.006248,0.249922,0,0);}
.m139_c00293{transform:matrix(0.345971,-0.004844,0.003500,0.249976,0,0);-ms-transform:matrix(0.345971,-0.004844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.345971,-0.004844,0.003500,0.249976,0,0);}
.m103_c00293{transform:matrix(0.347941,-0.008699,0.006248,0.249922,0,0);-ms-transform:matrix(0.347941,-0.008699,0.006248,0.249922,0,0);-webkit-transform:matrix(0.347941,-0.008699,0.006248,0.249922,0,0);}
.m109_c00293{transform:matrix(0.359203,-0.008980,0.006248,0.249922,0,0);-ms-transform:matrix(0.359203,-0.008980,0.006248,0.249922,0,0);-webkit-transform:matrix(0.359203,-0.008980,0.006248,0.249922,0,0);}
.m13b_c00293{transform:matrix(0.364654,-0.005105,0.003500,0.249976,0,0);-ms-transform:matrix(0.364654,-0.005105,0.003500,0.249976,0,0);-webkit-transform:matrix(0.364654,-0.005105,0.003500,0.249976,0,0);}
.m129_c00293{transform:matrix(0.374963,-0.005249,0.003500,0.249976,0,0);-ms-transform:matrix(0.374963,-0.005249,0.003500,0.249976,0,0);-webkit-transform:matrix(0.374963,-0.005249,0.003500,0.249976,0,0);}
.m13a_c00293{transform:matrix(0.384037,-0.005377,0.003500,0.249976,0,0);-ms-transform:matrix(0.384037,-0.005377,0.003500,0.249976,0,0);-webkit-transform:matrix(0.384037,-0.005377,0.003500,0.249976,0,0);}
.mfb_c00293{transform:matrix(0.408362,-0.010209,0.006248,0.249922,0,0);-ms-transform:matrix(0.408362,-0.010209,0.006248,0.249922,0,0);-webkit-transform:matrix(0.408362,-0.010209,0.006248,0.249922,0,0);}
.m14e_c00293{transform:matrix(0.415189,-0.005813,0.003500,0.249976,0,0);-ms-transform:matrix(0.415189,-0.005813,0.003500,0.249976,0,0);-webkit-transform:matrix(0.415189,-0.005813,0.003500,0.249976,0,0);}
.m164_c00293{transform:matrix(0.428433,-0.005998,0.003500,0.249976,0,0);-ms-transform:matrix(0.428433,-0.005998,0.003500,0.249976,0,0);-webkit-transform:matrix(0.428433,-0.005998,0.003500,0.249976,0,0);}
.m38_c00293{transform:matrix(0.543775,-0.013594,0.006248,0.249922,0,0);-ms-transform:matrix(0.543775,-0.013594,0.006248,0.249922,0,0);-webkit-transform:matrix(0.543775,-0.013594,0.006248,0.249922,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;}
.fsc_c00293{font-size:49.354836px;}
.fsb_c00293{font-size:50.404939px;}
.fsa_c00293{font-size:52.505145px;}
.fsd_c00293{font-size:53.555248px;}
.fs8_c00293{font-size:54.617060px;}
.fs9_c00293{font-size:64.070012px;}
.fs5_c00293{font-size:66.170669px;}
.fs6_c00293{font-size:67.220997px;}
.fs7_c00293{font-size:68.271325px;}
.fs4_c00293{font-size:69.321653px;}
.fs3_c00293{font-size:70.371981px;}
.fs2_c00293{font-size:71.422309px;}
.fs1_c00293{font-size:72.472637px;}
.fs0_c00293{font-size:128.116396px;}
.y0_c00293{bottom:0.000000px;}
.y156_c00293{bottom:165.234897px;}
.y157_c00293{bottom:165.434052px;}
.y158_c00293{bottom:165.920430px;}
.y159_c00293{bottom:166.288293px;}
.y15a_c00293{bottom:166.632693px;}
.y15b_c00293{bottom:166.872978px;}
.y15c_c00293{bottom:167.176059px;}
.y15d_c00293{bottom:167.657079px;}
.y15e_c00293{bottom:167.802282px;}
.y15f_c00293{bottom:168.152658px;}
.y160_c00293{bottom:168.288975px;}
.y161_c00293{bottom:168.689733px;}
.y162_c00293{bottom:168.883794px;}
.y163_c00293{bottom:169.296588px;}
.y164_c00293{bottom:169.631745px;}
.y165_c00293{bottom:169.750134px;}
.y166_c00293{bottom:170.336361px;}
.y146_c00293{bottom:183.595575px;}
.y147_c00293{bottom:183.826929px;}
.y148_c00293{bottom:184.108392px;}
.y149_c00293{bottom:184.274094px;}
.y14a_c00293{bottom:184.941189px;}
.y14b_c00293{bottom:185.146143px;}
.y14c_c00293{bottom:185.991720px;}
.y14d_c00293{bottom:186.617925px;}
.y14e_c00293{bottom:187.017219px;}
.y14f_c00293{bottom:187.350882px;}
.y150_c00293{bottom:187.929729px;}
.y151_c00293{bottom:188.061294px;}
.y152_c00293{bottom:188.339523px;}
.y153_c00293{bottom:188.635404px;}
.y154_c00293{bottom:189.190686px;}
.y155_c00293{bottom:189.672621px;}
.y135_c00293{bottom:201.415962px;}
.y136_c00293{bottom:201.543159px;}
.y137_c00293{bottom:201.709299px;}
.y138_c00293{bottom:202.235202px;}
.y139_c00293{bottom:202.370166px;}
.y13a_c00293{bottom:202.479948px;}
.y13b_c00293{bottom:202.709646px;}
.y13c_c00293{bottom:202.961058px;}
.y13d_c00293{bottom:203.027253px;}
.y13e_c00293{bottom:203.476746px;}
.y13f_c00293{bottom:203.586150px;}
.y140_c00293{bottom:203.763327px;}
.y141_c00293{bottom:204.023925px;}
.y142_c00293{bottom:204.151248px;}
.y143_c00293{bottom:204.314793px;}
.y144_c00293{bottom:204.430629px;}
.y145_c00293{bottom:204.674283px;}
.y125_c00293{bottom:218.968692px;}
.y126_c00293{bottom:219.154827px;}
.y127_c00293{bottom:219.910353px;}
.y128_c00293{bottom:220.299051px;}
.y129_c00293{bottom:220.781877px;}
.y12a_c00293{bottom:220.927833px;}
.y12b_c00293{bottom:221.284419px;}
.y12c_c00293{bottom:221.432235px;}
.y12d_c00293{bottom:221.963433px;}
.y12e_c00293{bottom:222.139221px;}
.y12f_c00293{bottom:222.339420px;}
.y130_c00293{bottom:222.549798px;}
.y131_c00293{bottom:222.674997px;}
.y132_c00293{bottom:223.239177px;}
.y133_c00293{bottom:223.383420px;}
.y134_c00293{bottom:223.524396px;}
.y114_c00293{bottom:236.791500px;}
.y115_c00293{bottom:237.249363px;}
.y116_c00293{bottom:237.714303px;}
.y117_c00293{bottom:238.005552px;}
.y118_c00293{bottom:238.349448px;}
.y119_c00293{bottom:238.575912px;}
.y11a_c00293{bottom:238.856073px;}
.y11b_c00293{bottom:239.090412px;}
.y11c_c00293{bottom:239.498400px;}
.y11d_c00293{bottom:239.811993px;}
.y11e_c00293{bottom:239.972013px;}
.y11f_c00293{bottom:240.802899px;}
.y120_c00293{bottom:240.950718px;}
.y121_c00293{bottom:241.215234px;}
.y122_c00293{bottom:241.822533px;}
.y123_c00293{bottom:241.956135px;}
.y124_c00293{bottom:242.519670px;}
.y10a_c00293{bottom:340.839375px;}
.y10b_c00293{bottom:341.315175px;}
.y10c_c00293{bottom:341.489738px;}
.y10d_c00293{bottom:342.333825px;}
.y10e_c00293{bottom:342.891563px;}
.y10f_c00293{bottom:343.211850px;}
.y110_c00293{bottom:343.795650px;}
.y111_c00293{bottom:344.650200px;}
.y112_c00293{bottom:344.989388px;}
.y113_c00293{bottom:345.949575px;}
.yfe_c00293{bottom:364.089713px;}
.yff_c00293{bottom:365.216400px;}
.y100_c00293{bottom:365.912700px;}
.y101_c00293{bottom:366.719250px;}
.y102_c00293{bottom:367.437000px;}
.y103_c00293{bottom:367.623450px;}
.y104_c00293{bottom:368.186850px;}
.y106_c00293{bottom:369.391838px;}
.y105_c00293{bottom:369.393188px;}
.y107_c00293{bottom:369.561413px;}
.y108_c00293{bottom:370.167413px;}
.y109_c00293{bottom:370.266225px;}
.yf0_c00293{bottom:387.318900px;}
.yf1_c00293{bottom:387.982200px;}
.yf2_c00293{bottom:388.287525px;}
.yf3_c00293{bottom:388.796813px;}
.yf4_c00293{bottom:389.231775px;}
.yf5_c00293{bottom:389.428988px;}
.yf6_c00293{bottom:390.191063px;}
.yf7_c00293{bottom:390.555713px;}
.yf8_c00293{bottom:390.993450px;}
.yf9_c00293{bottom:391.309575px;}
.yfa_c00293{bottom:391.561763px;}
.yfb_c00293{bottom:391.895400px;}
.yfc_c00293{bottom:392.372513px;}
.yfd_c00293{bottom:393.219263px;}
.ye2_c00293{bottom:410.277600px;}
.ye3_c00293{bottom:411.275063px;}
.ye4_c00293{bottom:411.544688px;}
.ye5_c00293{bottom:412.007888px;}
.ye6_c00293{bottom:412.482675px;}
.ye7_c00293{bottom:412.826325px;}
.ye8_c00293{bottom:413.276175px;}
.ye9_c00293{bottom:413.616113px;}
.yea_c00293{bottom:414.195750px;}
.yeb_c00293{bottom:414.441413px;}
.yec_c00293{bottom:415.164113px;}
.yed_c00293{bottom:415.524075px;}
.yee_c00293{bottom:415.978913px;}
.yef_c00293{bottom:416.634600px;}
.yd5_c00293{bottom:432.693113px;}
.yd6_c00293{bottom:433.444538px;}
.yd7_c00293{bottom:433.833150px;}
.yd8_c00293{bottom:434.606288px;}
.yd9_c00293{bottom:435.618863px;}
.yda_c00293{bottom:435.913013px;}
.ydb_c00293{bottom:436.635300px;}
.ydc_c00293{bottom:437.131125px;}
.ydd_c00293{bottom:437.758613px;}
.yde_c00293{bottom:438.074813px;}
.ydf_c00293{bottom:439.207988px;}
.ye0_c00293{bottom:439.510163px;}
.ye1_c00293{bottom:440.149088px;}
.yca_c00293{bottom:455.381438px;}
.ycb_c00293{bottom:456.684975px;}
.ycc_c00293{bottom:457.528088px;}
.ycd_c00293{bottom:457.819088px;}
.yce_c00293{bottom:457.949963px;}
.ycf_c00293{bottom:458.590500px;}
.yd0_c00293{bottom:459.220688px;}
.yd1_c00293{bottom:459.779550px;}
.yd2_c00293{bottom:460.525575px;}
.yd3_c00293{bottom:460.870838px;}
.yd4_c00293{bottom:461.748113px;}
.ybc_c00293{bottom:478.071038px;}
.ybd_c00293{bottom:478.528650px;}
.ybe_c00293{bottom:478.835550px;}
.ybf_c00293{bottom:479.812163px;}
.yc0_c00293{bottom:480.362513px;}
.yc1_c00293{bottom:480.732188px;}
.yc2_c00293{bottom:481.268850px;}
.yc3_c00293{bottom:481.679625px;}
.yc4_c00293{bottom:482.304075px;}
.yc5_c00293{bottom:482.842763px;}
.yc6_c00293{bottom:483.113438px;}
.yc7_c00293{bottom:483.737175px;}
.yc8_c00293{bottom:484.414275px;}
.yc9_c00293{bottom:484.849425px;}
.yaf_c00293{bottom:500.488088px;}
.yb0_c00293{bottom:501.150788px;}
.yb1_c00293{bottom:501.839175px;}
.yb2_c00293{bottom:502.317675px;}
.yb3_c00293{bottom:502.605338px;}
.yb4_c00293{bottom:503.091525px;}
.yb5_c00293{bottom:504.173700px;}
.yb6_c00293{bottom:504.494175px;}
.yb7_c00293{bottom:504.853425px;}
.yb8_c00293{bottom:505.234313px;}
.yb9_c00293{bottom:505.762988px;}
.yba_c00293{bottom:506.681588px;}
.ybb_c00293{bottom:507.399075px;}
.ya2_c00293{bottom:523.716413px;}
.ya3_c00293{bottom:524.454863px;}
.ya4_c00293{bottom:524.762925px;}
.ya5_c00293{bottom:525.315750px;}
.ya6_c00293{bottom:525.767138px;}
.ya7_c00293{bottom:527.144288px;}
.ya8_c00293{bottom:527.416350px;}
.ya9_c00293{bottom:528.346463px;}
.yaa_c00293{bottom:529.086263px;}
.yab_c00293{bottom:529.562175px;}
.yac_c00293{bottom:530.448338px;}
.yad_c00293{bottom:530.603850px;}
.yae_c00293{bottom:530.999963px;}
.y95_c00293{bottom:546.674138px;}
.y96_c00293{bottom:548.039775px;}
.y97_c00293{bottom:548.977650px;}
.y98_c00293{bottom:549.314888px;}
.y99_c00293{bottom:549.815850px;}
.y9a_c00293{bottom:551.049075px;}
.y9b_c00293{bottom:551.382863px;}
.y9c_c00293{bottom:551.786550px;}
.y9d_c00293{bottom:552.138638px;}
.y9e_c00293{bottom:552.610875px;}
.y9f_c00293{bottom:552.936675px;}
.ya0_c00293{bottom:554.397600px;}
.ya1_c00293{bottom:555.070125px;}
.y88_c00293{bottom:568.821675px;}
.y89_c00293{bottom:569.811525px;}
.y8a_c00293{bottom:570.252675px;}
.y8b_c00293{bottom:571.171425px;}
.y8c_c00293{bottom:571.949700px;}
.y8d_c00293{bottom:572.654438px;}
.y8e_c00293{bottom:573.935400px;}
.y8f_c00293{bottom:574.108200px;}
.y90_c00293{bottom:574.954725px;}
.y91_c00293{bottom:575.481300px;}
.y92_c00293{bottom:575.970113px;}
.y93_c00293{bottom:576.734550px;}
.y94_c00293{bottom:577.878638px;}
.y7e_c00293{bottom:592.048838px;}
.y7f_c00293{bottom:593.378925px;}
.y80_c00293{bottom:593.860538px;}
.y81_c00293{bottom:595.097025px;}
.y82_c00293{bottom:596.797613px;}
.y83_c00293{bottom:597.400913px;}
.y84_c00293{bottom:597.833925px;}
.y85_c00293{bottom:598.649963px;}
.y86_c00293{bottom:599.664000px;}
.y87_c00293{bottom:599.971838px;}
.y71_c00293{bottom:614.735325px;}
.y72_c00293{bottom:615.344925px;}
.y73_c00293{bottom:616.905938px;}
.y74_c00293{bottom:617.353163px;}
.y75_c00293{bottom:618.250838px;}
.y76_c00293{bottom:618.613388px;}
.y77_c00293{bottom:619.775363px;}
.y78_c00293{bottom:620.249925px;}
.y79_c00293{bottom:621.066563px;}
.y7a_c00293{bottom:621.994575px;}
.y7b_c00293{bottom:622.863713px;}
.y7c_c00293{bottom:623.319300px;}
.y7d_c00293{bottom:623.901563px;}
.y66_c00293{bottom:637.693650px;}
.y67_c00293{bottom:639.166275px;}
.y68_c00293{bottom:639.924675px;}
.y69_c00293{bottom:640.490213px;}
.y6a_c00293{bottom:641.815500px;}
.y6b_c00293{bottom:642.400988px;}
.y6c_c00293{bottom:643.509600px;}
.y6d_c00293{bottom:643.977525px;}
.y6e_c00293{bottom:644.379075px;}
.y6f_c00293{bottom:645.635213px;}
.y70_c00293{bottom:646.122600px;}
.y5a_c00293{bottom:660.647850px;}
.y5b_c00293{bottom:661.038300px;}
.y5c_c00293{bottom:661.655888px;}
.y5d_c00293{bottom:662.112975px;}
.y5e_c00293{bottom:663.037575px;}
.y5f_c00293{bottom:663.528713px;}
.y60_c00293{bottom:664.626188px;}
.y61_c00293{bottom:665.127638px;}
.y62_c00293{bottom:666.449550px;}
.y63_c00293{bottom:667.216125px;}
.y64_c00293{bottom:668.036925px;}
.y65_c00293{bottom:668.688863px;}
.y4f_c00293{bottom:683.604413px;}
.y50_c00293{bottom:684.319575px;}
.y51_c00293{bottom:685.402613px;}
.y52_c00293{bottom:685.866038px;}
.y53_c00293{bottom:686.330325px;}
.y54_c00293{bottom:687.452288px;}
.y55_c00293{bottom:687.689888px;}
.y56_c00293{bottom:689.066850px;}
.y57_c00293{bottom:689.623538px;}
.y58_c00293{bottom:690.713438px;}
.y59_c00293{bottom:691.266600px;}
.y43_c00293{bottom:705.481613px;}
.y44_c00293{bottom:706.386900px;}
.y45_c00293{bottom:707.155275px;}
.y46_c00293{bottom:707.604188px;}
.y47_c00293{bottom:709.349438px;}
.y48_c00293{bottom:709.909763px;}
.y49_c00293{bottom:710.528625px;}
.y4a_c00293{bottom:712.015500px;}
.y4b_c00293{bottom:712.713188px;}
.y4c_c00293{bottom:713.749538px;}
.y4d_c00293{bottom:714.335888px;}
.y4e_c00293{bottom:715.119675px;}
.y34_c00293{bottom:727.901175px;}
.y35_c00293{bottom:728.369250px;}
.y36_c00293{bottom:729.074963px;}
.y37_c00293{bottom:729.506063px;}
.y38_c00293{bottom:730.148550px;}
.y39_c00293{bottom:730.464113px;}
.y3a_c00293{bottom:730.735950px;}
.y3b_c00293{bottom:731.949113px;}
.y3c_c00293{bottom:732.454725px;}
.y3d_c00293{bottom:734.050125px;}
.y3e_c00293{bottom:734.349300px;}
.y3f_c00293{bottom:734.979075px;}
.y40_c00293{bottom:735.992700px;}
.y41_c00293{bottom:736.548825px;}
.y42_c00293{bottom:737.240700px;}
.y28_c00293{bottom:750.589200px;}
.y29_c00293{bottom:751.844325px;}
.y2a_c00293{bottom:753.093713px;}
.y2b_c00293{bottom:753.999113px;}
.y2c_c00293{bottom:755.227913px;}
.y2d_c00293{bottom:756.227100px;}
.y2e_c00293{bottom:757.392300px;}
.y2f_c00293{bottom:758.074350px;}
.y30_c00293{bottom:759.141525px;}
.y31_c00293{bottom:760.372013px;}
.y32_c00293{bottom:761.065350px;}
.y33_c00293{bottom:761.508188px;}
.y1c_c00293{bottom:773.005575px;}
.y1d_c00293{bottom:774.276075px;}
.y1e_c00293{bottom:775.259138px;}
.y1f_c00293{bottom:776.600175px;}
.y20_c00293{bottom:778.011000px;}
.y21_c00293{bottom:778.982850px;}
.y22_c00293{bottom:780.147188px;}
.y23_c00293{bottom:780.504750px;}
.y24_c00293{bottom:781.431638px;}
.y25_c00293{bottom:782.234850px;}
.y26_c00293{bottom:783.391988px;}
.y27_c00293{bottom:785.015100px;}
.y10_c00293{bottom:795.687975px;}
.y11_c00293{bottom:796.692075px;}
.y12_c00293{bottom:797.754975px;}
.y13_c00293{bottom:798.228825px;}
.y14_c00293{bottom:799.187700px;}
.y15_c00293{bottom:799.764750px;}
.y16_c00293{bottom:800.980013px;}
.y17_c00293{bottom:801.513150px;}
.y18_c00293{bottom:803.437088px;}
.y19_c00293{bottom:805.066425px;}
.y1a_c00293{bottom:806.049300px;}
.y1b_c00293{bottom:807.205388px;}
.y4_c00293{bottom:818.655000px;}
.y5_c00293{bottom:819.147075px;}
.y6_c00293{bottom:820.321875px;}
.y7_c00293{bottom:820.970363px;}
.y8_c00293{bottom:822.442088px;}
.y9_c00293{bottom:823.543688px;}
.ya_c00293{bottom:824.220150px;}
.yb_c00293{bottom:826.018463px;}
.yc_c00293{bottom:826.790925px;}
.yd_c00293{bottom:827.527275px;}
.ye_c00293{bottom:829.107113px;}
.yf_c00293{bottom:829.981800px;}
.y1_c00293{bottom:866.433000px;}
.y2_c00293{bottom:867.679632px;}
.y3_c00293{bottom:872.214984px;}
.he_c00293{height:49.354836px;}
.hd_c00293{height:50.404939px;}
.hc_c00293{height:52.505145px;}
.hf_c00293{height:53.555248px;}
.ha_c00293{height:54.617060px;}
.hb_c00293{height:64.070012px;}
.h7_c00293{height:66.170669px;}
.h8_c00293{height:67.220997px;}
.h9_c00293{height:68.271325px;}
.h6_c00293{height:69.321653px;}
.h5_c00293{height:70.371981px;}
.h4_c00293{height:71.422309px;}
.h3_c00293{height:72.472637px;}
.h2_c00293{height:128.116396px;}
.h0_c00293{height:1008.450000px;}
.h1_c00293{height:1008.750000px;}
.w0_c00293{width:696.000000px;}
.x0_c00293{left:0.000000px;}
.x62_c00293{left:150.406012px;}
.x1_c00293{left:155.178000px;}
.x4_c00293{left:156.681000px;}
.x24_c00293{left:158.010412px;}
.x51_c00293{left:159.349875px;}
.x6b_c00293{left:161.164575px;}
.x72_c00293{left:162.750150px;}
.x80_c00293{left:164.656763px;}
.x8a_c00293{left:165.734175px;}
.x98_c00293{left:167.320313px;}
.xb2_c00293{left:173.684418px;}
.x5_c00293{left:176.364000px;}
.x4a_c00293{left:179.785387px;}
.x2e_c00293{left:180.821812px;}
.xa8_c00293{left:186.709500px;}
.xb8_c00293{left:187.987911px;}
.x55_c00293{left:190.338600px;}
.xb3_c00293{left:192.337968px;}
.x10_c00293{left:195.176775px;}
.x42_c00293{left:198.166200px;}
.x39_c00293{left:201.069675px;}
.x63_c00293{left:202.487812px;}
.x1a_c00293{left:204.442612px;}
.xb9_c00293{left:206.075175px;}
.x25_c00293{left:208.215412px;}
.x8b_c00293{left:212.721750px;}
.x2f_c00293{left:214.393650px;}
.x81_c00293{left:215.650013px;}
.x99_c00293{left:218.347613px;}
.xa9_c00293{left:219.414000px;}
.x6_c00293{left:223.356000px;}
.x64_c00293{left:225.717300px;}
.x73_c00293{left:228.145350px;}
.xba_c00293{left:229.837506px;}
.x2_c00293{left:233.092500px;}
.x30_c00293{left:234.939712px;}
.x11_c00293{left:236.071762px;}
.x3a_c00293{left:237.628312px;}
.x4b_c00293{left:239.522850px;}
.x1b_c00293{left:242.264175px;}
.x7_c00293{left:249.295500px;}
.x7a_c00293{left:251.262525px;}
.xaa_c00293{left:252.624000px;}
.x12_c00293{left:254.305312px;}
.x26_c00293{left:258.190912px;}
.x5e_c00293{left:260.763862px;}
.x74_c00293{left:262.686113px;}
.x31_c00293{left:265.562287px;}
.x56_c00293{left:268.388850px;}
.x65_c00293{left:274.054537px;}
.x52_c00293{left:276.808500px;}
.x32_c00293{left:280.586287px;}
.x43_c00293{left:284.039700px;}
.x8c_c00293{left:285.308063px;}
.x6c_c00293{left:289.147462px;}
.x13_c00293{left:291.159375px;}
.x1c_c00293{left:293.864400px;}
.xa6_c00293{left:295.937138px;}
.xab_c00293{left:297.991500px;}
.x92_c00293{left:299.045250px;}
.x7b_c00293{left:302.381813px;}
.xbb_c00293{left:304.909356px;}
.x53_c00293{left:306.574462px;}
.x8_c00293{left:308.164500px;}
.x44_c00293{left:309.815700px;}
.x14_c00293{left:313.340812px;}
.x66_c00293{left:315.031687px;}
.x4c_c00293{left:318.126075px;}
.xbc_c00293{left:324.087225px;}
.x86_c00293{left:327.426413px;}
.x5f_c00293{left:329.435362px;}
.xac_c00293{left:334.179000px;}
.x57_c00293{left:335.633250px;}
.xc5_c00293{left:337.894794px;}
.xbd_c00293{left:339.751758px;}
.x3b_c00293{left:342.145275px;}
.x27_c00293{left:343.558912px;}
.x1d_c00293{left:348.136050px;}
.xad_c00293{left:350.917500px;}
.x9_c00293{left:352.228500px;}
.x58_c00293{left:353.737500px;}
.xb4_c00293{left:355.172103px;}
.x15_c00293{left:360.090150px;}
.x93_c00293{left:362.041650px;}
.xc6_c00293{left:365.437449px;}
.x8d_c00293{left:366.935400px;}
.x3c_c00293{left:368.820937px;}
.x45_c00293{left:372.165112px;}
.x33_c00293{left:375.400275px;}
.x75_c00293{left:376.953300px;}
.xa_c00293{left:379.287000px;}
.x16_c00293{left:380.575125px;}
.x28_c00293{left:383.526412px;}
.x1e_c00293{left:385.509112px;}
.x9a_c00293{left:388.233038px;}
.xa1_c00293{left:390.760613px;}
.x76_c00293{left:393.959625px;}
.x94_c00293{left:396.606000px;}
.x3d_c00293{left:398.258362px;}
.xa2_c00293{left:403.201725px;}
.x6d_c00293{left:404.244600px;}
.x82_c00293{left:405.300413px;}
.x4d_c00293{left:406.998637px;}
.xbe_c00293{left:408.623520px;}
.x59_c00293{left:411.803737px;}
.xae_c00293{left:413.889000px;}
.x9b_c00293{left:416.327475px;}
.xbf_c00293{left:418.066944px;}
.x67_c00293{left:419.495325px;}
.x87_c00293{left:420.893775px;}
.x6e_c00293{left:422.759325px;}
.x60_c00293{left:423.875362px;}
.xa7_c00293{left:427.099650px;}
.x68_c00293{left:428.568675px;}
.x1f_c00293{left:430.281487px;}
.x5a_c00293{left:435.529200px;}
.xa3_c00293{left:440.747100px;}
.x8e_c00293{left:443.037000px;}
.x20_c00293{left:444.043650px;}
.x6f_c00293{left:445.210763px;}
.x83_c00293{left:446.908800px;}
.x9c_c00293{left:450.047100px;}
.xb_c00293{left:451.219500px;}
.x7c_c00293{left:452.222738px;}
.x17_c00293{left:454.590787px;}
.x29_c00293{left:457.416412px;}
.x46_c00293{left:461.843287px;}
.x34_c00293{left:465.592275px;}
.x95_c00293{left:467.370225px;}
.x3e_c00293{left:469.080450px;}
.x69_c00293{left:473.116350px;}
.x9d_c00293{left:474.399413px;}
.x5b_c00293{left:476.359800px;}
.x7d_c00293{left:477.604575px;}
.x21_c00293{left:479.678250px;}
.xc_c00293{left:482.118000px;}
.xaf_c00293{left:483.796500px;}
.x96_c00293{left:486.322425px;}
.x54_c00293{left:490.134487px;}
.x47_c00293{left:492.756187px;}
.x9e_c00293{left:493.852763px;}
.x35_c00293{left:495.586275px;}
.x77_c00293{left:498.399638px;}
.x2a_c00293{left:500.103412px;}
.x3f_c00293{left:502.331287px;}
.x88_c00293{left:507.971063px;}
.x70_c00293{left:509.046900px;}
.x22_c00293{left:510.545962px;}
.xd_c00293{left:511.572000px;}
.x7e_c00293{left:512.800350px;}
.x3_c00293{left:516.552000px;}
.x9f_c00293{left:519.505950px;}
.xa4_c00293{left:521.120663px;}
.x4e_c00293{left:523.018425px;}
.x61_c00293{left:526.847400px;}
.x78_c00293{left:528.182850px;}
.x89_c00293{left:530.967300px;}
.xa5_c00293{left:532.292438px;}
.x84_c00293{left:542.476688px;}
.x36_c00293{left:543.876112px;}
.xb0_c00293{left:546.069000px;}
.x2b_c00293{left:549.322912px;}
.x40_c00293{left:551.650200px;}
.x48_c00293{left:553.342800px;}
.x18_c00293{left:555.056775px;}
.xa0_c00293{left:556.241475px;}
.xc7_c00293{left:558.269055px;}
.xc0_c00293{left:560.628930px;}
.x5c_c00293{left:566.197012px;}
.x4f_c00293{left:568.638412px;}
.x37_c00293{left:570.383775px;}
.x8f_c00293{left:572.760638px;}
.xe_c00293{left:574.765500px;}
.xc4_c00293{left:575.845809px;}
.x2c_c00293{left:577.056412px;}
.x41_c00293{left:579.546975px;}
.x49_c00293{left:584.054662px;}
.x85_c00293{left:587.631975px;}
.x5d_c00293{left:588.983362px;}
.x71_c00293{left:590.238112px;}
.x90_c00293{left:591.631875px;}
.x79_c00293{left:593.264475px;}
.x2d_c00293{left:594.769912px;}
.xb1_c00293{left:595.864500px;}
.x19_c00293{left:599.499150px;}
.xb5_c00293{left:600.885858px;}
.xc1_c00293{left:602.195004px;}
.x38_c00293{left:603.342075px;}
.x50_c00293{left:604.862250px;}
.xf_c00293{left:609.753000px;}
.xb6_c00293{left:615.261156px;}
.x23_c00293{left:617.433262px;}
.xc2_c00293{left:618.720621px;}
.x7f_c00293{left:621.891113px;}
.x6a_c00293{left:627.055950px;}
.xb7_c00293{left:629.295933px;}
.x91_c00293{left:631.597875px;}
.xc3_c00293{left:653.485023px;}
.x97_c00293{left:655.100550px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fsc_c00293{font-size:43.870965pt;}
.fsb_c00293{font-size:44.804390pt;}
.fsa_c00293{font-size:46.671240pt;}
.fsd_c00293{font-size:47.604665pt;}
.fs8_c00293{font-size:48.548498pt;}
.fs9_c00293{font-size:56.951122pt;}
.fs5_c00293{font-size:58.818372pt;}
.fs6_c00293{font-size:59.751997pt;}
.fs7_c00293{font-size:60.685622pt;}
.fs4_c00293{font-size:61.619247pt;}
.fs3_c00293{font-size:62.552872pt;}
.fs2_c00293{font-size:63.486497pt;}
.fs1_c00293{font-size:64.420122pt;}
.fs0_c00293{font-size:113.881241pt;}
.y0_c00293{bottom:0.000000pt;}
.y156_c00293{bottom:146.875464pt;}
.y157_c00293{bottom:147.052491pt;}
.y158_c00293{bottom:147.484827pt;}
.y159_c00293{bottom:147.811816pt;}
.y15a_c00293{bottom:148.117949pt;}
.y15b_c00293{bottom:148.331536pt;}
.y15c_c00293{bottom:148.600941pt;}
.y15d_c00293{bottom:149.028515pt;}
.y15e_c00293{bottom:149.157584pt;}
.y15f_c00293{bottom:149.469029pt;}
.y160_c00293{bottom:149.590200pt;}
.y161_c00293{bottom:149.946429pt;}
.y162_c00293{bottom:150.118928pt;}
.y163_c00293{bottom:150.485856pt;}
.y164_c00293{bottom:150.783773pt;}
.y165_c00293{bottom:150.889008pt;}
.y166_c00293{bottom:151.410099pt;}
.y146_c00293{bottom:163.196067pt;}
.y147_c00293{bottom:163.401715pt;}
.y148_c00293{bottom:163.651904pt;}
.y149_c00293{bottom:163.799195pt;}
.y14a_c00293{bottom:164.392168pt;}
.y14b_c00293{bottom:164.574349pt;}
.y14c_c00293{bottom:165.325973pt;}
.y14d_c00293{bottom:165.882600pt;}
.y14e_c00293{bottom:166.237528pt;}
.y14f_c00293{bottom:166.534117pt;}
.y150_c00293{bottom:167.048648pt;}
.y151_c00293{bottom:167.165595pt;}
.y152_c00293{bottom:167.412909pt;}
.y153_c00293{bottom:167.675915pt;}
.y154_c00293{bottom:168.169499pt;}
.y155_c00293{bottom:168.597885pt;}
.y135_c00293{bottom:179.036411pt;}
.y136_c00293{bottom:179.149475pt;}
.y137_c00293{bottom:179.297155pt;}
.y138_c00293{bottom:179.764624pt;}
.y139_c00293{bottom:179.884592pt;}
.y13a_c00293{bottom:179.982176pt;}
.y13b_c00293{bottom:180.186352pt;}
.y13c_c00293{bottom:180.409829pt;}
.y13d_c00293{bottom:180.468669pt;}
.y13e_c00293{bottom:180.868219pt;}
.y13f_c00293{bottom:180.965467pt;}
.y140_c00293{bottom:181.122957pt;}
.y141_c00293{bottom:181.354600pt;}
.y142_c00293{bottom:181.467776pt;}
.y143_c00293{bottom:181.613149pt;}
.y144_c00293{bottom:181.716115pt;}
.y145_c00293{bottom:181.932696pt;}
.y125_c00293{bottom:194.638837pt;}
.y126_c00293{bottom:194.804291pt;}
.y127_c00293{bottom:195.475869pt;}
.y128_c00293{bottom:195.821379pt;}
.y129_c00293{bottom:196.250557pt;}
.y12a_c00293{bottom:196.380296pt;}
.y12b_c00293{bottom:196.697261pt;}
.y12c_c00293{bottom:196.828653pt;}
.y12d_c00293{bottom:197.300829pt;}
.y12e_c00293{bottom:197.457085pt;}
.y12f_c00293{bottom:197.635040pt;}
.y130_c00293{bottom:197.822043pt;}
.y131_c00293{bottom:197.933331pt;}
.y132_c00293{bottom:198.434824pt;}
.y133_c00293{bottom:198.563040pt;}
.y134_c00293{bottom:198.688352pt;}
.y114_c00293{bottom:210.481333pt;}
.y115_c00293{bottom:210.888323pt;}
.y116_c00293{bottom:211.301603pt;}
.y117_c00293{bottom:211.560491pt;}
.y118_c00293{bottom:211.866176pt;}
.y119_c00293{bottom:212.067477pt;}
.y11a_c00293{bottom:212.316509pt;}
.y11b_c00293{bottom:212.524811pt;}
.y11c_c00293{bottom:212.887467pt;}
.y11d_c00293{bottom:213.166216pt;}
.y11e_c00293{bottom:213.308456pt;}
.y11f_c00293{bottom:214.047021pt;}
.y120_c00293{bottom:214.178416pt;}
.y121_c00293{bottom:214.413541pt;}
.y122_c00293{bottom:214.953363pt;}
.y123_c00293{bottom:215.072120pt;}
.y124_c00293{bottom:215.573040pt;}
.y10a_c00293{bottom:302.968333pt;}
.y10b_c00293{bottom:303.391267pt;}
.y10c_c00293{bottom:303.546433pt;}
.y10d_c00293{bottom:304.296733pt;}
.y10e_c00293{bottom:304.792500pt;}
.y10f_c00293{bottom:305.077200pt;}
.y110_c00293{bottom:305.596133pt;}
.y111_c00293{bottom:306.355733pt;}
.y112_c00293{bottom:306.657233pt;}
.y113_c00293{bottom:307.510733pt;}
.yfe_c00293{bottom:323.635300pt;}
.yff_c00293{bottom:324.636800pt;}
.y100_c00293{bottom:325.255733pt;}
.y101_c00293{bottom:325.972667pt;}
.y102_c00293{bottom:326.610667pt;}
.y103_c00293{bottom:326.776400pt;}
.y104_c00293{bottom:327.277200pt;}
.y106_c00293{bottom:328.348300pt;}
.y105_c00293{bottom:328.349500pt;}
.y107_c00293{bottom:328.499033pt;}
.y108_c00293{bottom:329.037700pt;}
.y109_c00293{bottom:329.125533pt;}
.yf0_c00293{bottom:344.283467pt;}
.yf1_c00293{bottom:344.873067pt;}
.yf2_c00293{bottom:345.144467pt;}
.yf3_c00293{bottom:345.597167pt;}
.yf4_c00293{bottom:345.983800pt;}
.yf5_c00293{bottom:346.159100pt;}
.yf6_c00293{bottom:346.836500pt;}
.yf7_c00293{bottom:347.160633pt;}
.yf8_c00293{bottom:347.549733pt;}
.yf9_c00293{bottom:347.830733pt;}
.yfa_c00293{bottom:348.054900pt;}
.yfb_c00293{bottom:348.351467pt;}
.yfc_c00293{bottom:348.775567pt;}
.yfd_c00293{bottom:349.528233pt;}
.ye2_c00293{bottom:364.691200pt;}
.ye3_c00293{bottom:365.577833pt;}
.ye4_c00293{bottom:365.817500pt;}
.ye5_c00293{bottom:366.229233pt;}
.ye6_c00293{bottom:366.651267pt;}
.ye7_c00293{bottom:366.956733pt;}
.ye8_c00293{bottom:367.356600pt;}
.ye9_c00293{bottom:367.658767pt;}
.yea_c00293{bottom:368.174000pt;}
.yeb_c00293{bottom:368.392367pt;}
.yec_c00293{bottom:369.034767pt;}
.yed_c00293{bottom:369.354733pt;}
.yee_c00293{bottom:369.759033pt;}
.yef_c00293{bottom:370.341867pt;}
.yd5_c00293{bottom:384.616100pt;}
.yd6_c00293{bottom:385.284033pt;}
.yd7_c00293{bottom:385.629467pt;}
.yd8_c00293{bottom:386.316700pt;}
.yd9_c00293{bottom:387.216767pt;}
.yda_c00293{bottom:387.478233pt;}
.ydb_c00293{bottom:388.120267pt;}
.ydc_c00293{bottom:388.561000pt;}
.ydd_c00293{bottom:389.118767pt;}
.yde_c00293{bottom:389.399833pt;}
.ydf_c00293{bottom:390.407100pt;}
.ye0_c00293{bottom:390.675700pt;}
.ye1_c00293{bottom:391.243633pt;}
.yca_c00293{bottom:404.783500pt;}
.ycb_c00293{bottom:405.942200pt;}
.ycc_c00293{bottom:406.691633pt;}
.ycd_c00293{bottom:406.950300pt;}
.yce_c00293{bottom:407.066633pt;}
.ycf_c00293{bottom:407.636000pt;}
.yd0_c00293{bottom:408.196167pt;}
.yd1_c00293{bottom:408.692933pt;}
.yd2_c00293{bottom:409.356067pt;}
.yd3_c00293{bottom:409.662967pt;}
.yd4_c00293{bottom:410.442767pt;}
.ybc_c00293{bottom:424.952033pt;}
.ybd_c00293{bottom:425.358800pt;}
.ybe_c00293{bottom:425.631600pt;}
.ybf_c00293{bottom:426.499700pt;}
.yc0_c00293{bottom:426.988900pt;}
.yc1_c00293{bottom:427.317500pt;}
.yc2_c00293{bottom:427.794533pt;}
.yc3_c00293{bottom:428.159667pt;}
.yc4_c00293{bottom:428.714733pt;}
.yc5_c00293{bottom:429.193567pt;}
.yc6_c00293{bottom:429.434167pt;}
.yc7_c00293{bottom:429.988600pt;}
.yc8_c00293{bottom:430.590467pt;}
.yc9_c00293{bottom:430.977267pt;}
.yaf_c00293{bottom:444.878300pt;}
.yb0_c00293{bottom:445.467367pt;}
.yb1_c00293{bottom:446.079267pt;}
.yb2_c00293{bottom:446.504600pt;}
.yb3_c00293{bottom:446.760300pt;}
.yb4_c00293{bottom:447.192467pt;}
.yb5_c00293{bottom:448.154400pt;}
.yb6_c00293{bottom:448.439267pt;}
.yb7_c00293{bottom:448.758600pt;}
.yb8_c00293{bottom:449.097167pt;}
.yb9_c00293{bottom:449.567100pt;}
.yba_c00293{bottom:450.383633pt;}
.ybb_c00293{bottom:451.021400pt;}
.ya2_c00293{bottom:465.525700pt;}
.ya3_c00293{bottom:466.182100pt;}
.ya4_c00293{bottom:466.455933pt;}
.ya5_c00293{bottom:466.947333pt;}
.ya6_c00293{bottom:467.348567pt;}
.ya7_c00293{bottom:468.572700pt;}
.ya8_c00293{bottom:468.814533pt;}
.ya9_c00293{bottom:469.641300pt;}
.yaa_c00293{bottom:470.298900pt;}
.yab_c00293{bottom:470.721933pt;}
.yac_c00293{bottom:471.509633pt;}
.yad_c00293{bottom:471.647867pt;}
.yae_c00293{bottom:471.999967pt;}
.y95_c00293{bottom:485.932567pt;}
.y96_c00293{bottom:487.146467pt;}
.y97_c00293{bottom:487.980133pt;}
.y98_c00293{bottom:488.279900pt;}
.y99_c00293{bottom:488.725200pt;}
.y9a_c00293{bottom:489.821400pt;}
.y9b_c00293{bottom:490.118100pt;}
.y9c_c00293{bottom:490.476933pt;}
.y9d_c00293{bottom:490.789900pt;}
.y9e_c00293{bottom:491.209667pt;}
.y9f_c00293{bottom:491.499267pt;}
.ya0_c00293{bottom:492.797867pt;}
.ya1_c00293{bottom:493.395667pt;}
.y88_c00293{bottom:505.619267pt;}
.y89_c00293{bottom:506.499133pt;}
.y8a_c00293{bottom:506.891267pt;}
.y8b_c00293{bottom:507.707933pt;}
.y8c_c00293{bottom:508.399733pt;}
.y8d_c00293{bottom:509.026167pt;}
.y8e_c00293{bottom:510.164800pt;}
.y8f_c00293{bottom:510.318400pt;}
.y90_c00293{bottom:511.070867pt;}
.y91_c00293{bottom:511.538933pt;}
.y92_c00293{bottom:511.973433pt;}
.y93_c00293{bottom:512.652933pt;}
.y94_c00293{bottom:513.669900pt;}
.y7e_c00293{bottom:526.265633pt;}
.y7f_c00293{bottom:527.447933pt;}
.y80_c00293{bottom:527.876033pt;}
.y81_c00293{bottom:528.975133pt;}
.y82_c00293{bottom:530.486767pt;}
.y83_c00293{bottom:531.023033pt;}
.y84_c00293{bottom:531.407933pt;}
.y85_c00293{bottom:532.133300pt;}
.y86_c00293{bottom:533.034667pt;}
.y87_c00293{bottom:533.308300pt;}
.y71_c00293{bottom:546.431400pt;}
.y72_c00293{bottom:546.973267pt;}
.y73_c00293{bottom:548.360833pt;}
.y74_c00293{bottom:548.758367pt;}
.y75_c00293{bottom:549.556300pt;}
.y76_c00293{bottom:549.878567pt;}
.y77_c00293{bottom:550.911433pt;}
.y78_c00293{bottom:551.333267pt;}
.y79_c00293{bottom:552.059167pt;}
.y7a_c00293{bottom:552.884067pt;}
.y7b_c00293{bottom:553.656633pt;}
.y7c_c00293{bottom:554.061600pt;}
.y7d_c00293{bottom:554.579167pt;}
.y66_c00293{bottom:566.838800pt;}
.y67_c00293{bottom:568.147800pt;}
.y68_c00293{bottom:568.821933pt;}
.y69_c00293{bottom:569.324633pt;}
.y6a_c00293{bottom:570.502667pt;}
.y6b_c00293{bottom:571.023100pt;}
.y6c_c00293{bottom:572.008533pt;}
.y6d_c00293{bottom:572.424467pt;}
.y6e_c00293{bottom:572.781400pt;}
.y6f_c00293{bottom:573.897967pt;}
.y70_c00293{bottom:574.331200pt;}
.y5a_c00293{bottom:587.242533pt;}
.y5b_c00293{bottom:587.589600pt;}
.y5c_c00293{bottom:588.138567pt;}
.y5d_c00293{bottom:588.544867pt;}
.y5e_c00293{bottom:589.366733pt;}
.y5f_c00293{bottom:589.803300pt;}
.y60_c00293{bottom:590.778833pt;}
.y61_c00293{bottom:591.224567pt;}
.y62_c00293{bottom:592.399600pt;}
.y63_c00293{bottom:593.081000pt;}
.y64_c00293{bottom:593.810600pt;}
.y65_c00293{bottom:594.390100pt;}
.y4f_c00293{bottom:607.648367pt;}
.y50_c00293{bottom:608.284067pt;}
.y51_c00293{bottom:609.246767pt;}
.y52_c00293{bottom:609.658700pt;}
.y53_c00293{bottom:610.071400pt;}
.y54_c00293{bottom:611.068700pt;}
.y55_c00293{bottom:611.279900pt;}
.y56_c00293{bottom:612.503867pt;}
.y57_c00293{bottom:612.998700pt;}
.y58_c00293{bottom:613.967500pt;}
.y59_c00293{bottom:614.459200pt;}
.y43_c00293{bottom:627.094767pt;}
.y44_c00293{bottom:627.899467pt;}
.y45_c00293{bottom:628.582467pt;}
.y46_c00293{bottom:628.981500pt;}
.y47_c00293{bottom:630.532833pt;}
.y48_c00293{bottom:631.030900pt;}
.y49_c00293{bottom:631.581000pt;}
.y4a_c00293{bottom:632.902667pt;}
.y4b_c00293{bottom:633.522833pt;}
.y4c_c00293{bottom:634.444033pt;}
.y4d_c00293{bottom:634.965233pt;}
.y4e_c00293{bottom:635.661933pt;}
.y34_c00293{bottom:647.023267pt;}
.y35_c00293{bottom:647.439333pt;}
.y36_c00293{bottom:648.066633pt;}
.y37_c00293{bottom:648.449833pt;}
.y38_c00293{bottom:649.020933pt;}
.y39_c00293{bottom:649.301433pt;}
.y3a_c00293{bottom:649.543067pt;}
.y3b_c00293{bottom:650.621433pt;}
.y3c_c00293{bottom:651.070867pt;}
.y3d_c00293{bottom:652.489000pt;}
.y3e_c00293{bottom:652.754933pt;}
.y3f_c00293{bottom:653.314733pt;}
.y40_c00293{bottom:654.215733pt;}
.y41_c00293{bottom:654.710067pt;}
.y42_c00293{bottom:655.325067pt;}
.y28_c00293{bottom:667.190400pt;}
.y29_c00293{bottom:668.306067pt;}
.y2a_c00293{bottom:669.416633pt;}
.y2b_c00293{bottom:670.221433pt;}
.y2c_c00293{bottom:671.313700pt;}
.y2d_c00293{bottom:672.201867pt;}
.y2e_c00293{bottom:673.237600pt;}
.y2f_c00293{bottom:673.843867pt;}
.y30_c00293{bottom:674.792467pt;}
.y31_c00293{bottom:675.886233pt;}
.y32_c00293{bottom:676.502533pt;}
.y33_c00293{bottom:676.896167pt;}
.y1c_c00293{bottom:687.116067pt;}
.y1d_c00293{bottom:688.245400pt;}
.y1e_c00293{bottom:689.119233pt;}
.y1f_c00293{bottom:690.311267pt;}
.y20_c00293{bottom:691.565333pt;}
.y21_c00293{bottom:692.429200pt;}
.y22_c00293{bottom:693.464167pt;}
.y23_c00293{bottom:693.782000pt;}
.y24_c00293{bottom:694.605900pt;}
.y25_c00293{bottom:695.319867pt;}
.y26_c00293{bottom:696.348433pt;}
.y27_c00293{bottom:697.791200pt;}
.y10_c00293{bottom:707.278200pt;}
.y11_c00293{bottom:708.170733pt;}
.y12_c00293{bottom:709.115533pt;}
.y13_c00293{bottom:709.536733pt;}
.y14_c00293{bottom:710.389067pt;}
.y15_c00293{bottom:710.902000pt;}
.y16_c00293{bottom:711.982233pt;}
.y17_c00293{bottom:712.456133pt;}
.y18_c00293{bottom:714.166300pt;}
.y19_c00293{bottom:715.614600pt;}
.y1a_c00293{bottom:716.488267pt;}
.y1b_c00293{bottom:717.515900pt;}
.y4_c00293{bottom:727.693333pt;}
.y5_c00293{bottom:728.130733pt;}
.y6_c00293{bottom:729.175000pt;}
.y7_c00293{bottom:729.751433pt;}
.y8_c00293{bottom:731.059633pt;}
.y9_c00293{bottom:732.038833pt;}
.ya_c00293{bottom:732.640133pt;}
.yb_c00293{bottom:734.238633pt;}
.yc_c00293{bottom:734.925267pt;}
.yd_c00293{bottom:735.579800pt;}
.ye_c00293{bottom:736.984100pt;}
.yf_c00293{bottom:737.761600pt;}
.y1_c00293{bottom:770.162667pt;}
.y2_c00293{bottom:771.270784pt;}
.y3_c00293{bottom:775.302208pt;}
.he_c00293{height:43.870965pt;}
.hd_c00293{height:44.804390pt;}
.hc_c00293{height:46.671240pt;}
.hf_c00293{height:47.604665pt;}
.ha_c00293{height:48.548498pt;}
.hb_c00293{height:56.951122pt;}
.h7_c00293{height:58.818372pt;}
.h8_c00293{height:59.751997pt;}
.h9_c00293{height:60.685622pt;}
.h6_c00293{height:61.619247pt;}
.h5_c00293{height:62.552872pt;}
.h4_c00293{height:63.486497pt;}
.h3_c00293{height:64.420122pt;}
.h2_c00293{height:113.881241pt;}
.h0_c00293{height:896.400000pt;}
.h1_c00293{height:896.666667pt;}
.w0_c00293{width:618.666667pt;}
.x0_c00293{left:0.000000pt;}
.x62_c00293{left:133.694233pt;}
.x1_c00293{left:137.936000pt;}
.x4_c00293{left:139.272000pt;}
.x24_c00293{left:140.453700pt;}
.x51_c00293{left:141.644333pt;}
.x6b_c00293{left:143.257400pt;}
.x72_c00293{left:144.666800pt;}
.x80_c00293{left:146.361567pt;}
.x8a_c00293{left:147.319267pt;}
.x98_c00293{left:148.729167pt;}
.xb2_c00293{left:154.386149pt;}
.x5_c00293{left:156.768000pt;}
.x4a_c00293{left:159.809233pt;}
.x2e_c00293{left:160.730500pt;}
.xa8_c00293{left:165.964000pt;}
.xb8_c00293{left:167.100365pt;}
.x55_c00293{left:169.189867pt;}
.xb3_c00293{left:170.967083pt;}
.x10_c00293{left:173.490467pt;}
.x42_c00293{left:176.147733pt;}
.x39_c00293{left:178.728600pt;}
.x63_c00293{left:179.989167pt;}
.x1a_c00293{left:181.726767pt;}
.xb9_c00293{left:183.177933pt;}
.x25_c00293{left:185.080367pt;}
.x8b_c00293{left:189.086000pt;}
.x2f_c00293{left:190.572133pt;}
.x81_c00293{left:191.688900pt;}
.x99_c00293{left:194.086767pt;}
.xa9_c00293{left:195.034667pt;}
.x6_c00293{left:198.538667pt;}
.x64_c00293{left:200.637600pt;}
.x73_c00293{left:202.795867pt;}
.xba_c00293{left:204.300005pt;}
.x2_c00293{left:207.193333pt;}
.x30_c00293{left:208.835300pt;}
.x11_c00293{left:209.841567pt;}
.x3a_c00293{left:211.225167pt;}
.x4b_c00293{left:212.909200pt;}
.x1b_c00293{left:215.345933pt;}
.x7_c00293{left:221.596000pt;}
.x7a_c00293{left:223.344467pt;}
.xaa_c00293{left:224.554667pt;}
.x12_c00293{left:226.049167pt;}
.x26_c00293{left:229.503033pt;}
.x5e_c00293{left:231.790100pt;}
.x74_c00293{left:233.498767pt;}
.x31_c00293{left:236.055367pt;}
.x56_c00293{left:238.567867pt;}
.x65_c00293{left:243.604033pt;}
.x52_c00293{left:246.052000pt;}
.x32_c00293{left:249.410033pt;}
.x43_c00293{left:252.479733pt;}
.x8c_c00293{left:253.607167pt;}
.x6c_c00293{left:257.019967pt;}
.x13_c00293{left:258.808333pt;}
.x1c_c00293{left:261.212800pt;}
.xa6_c00293{left:263.055233pt;}
.xab_c00293{left:264.881333pt;}
.x92_c00293{left:265.818000pt;}
.x7b_c00293{left:268.783833pt;}
.xbb_c00293{left:271.030539pt;}
.x53_c00293{left:272.510633pt;}
.x8_c00293{left:273.924000pt;}
.x44_c00293{left:275.391733pt;}
.x14_c00293{left:278.525167pt;}
.x66_c00293{left:280.028167pt;}
.x4c_c00293{left:282.778733pt;}
.xbc_c00293{left:288.077533pt;}
.x86_c00293{left:291.045700pt;}
.x5f_c00293{left:292.831433pt;}
.xac_c00293{left:297.048000pt;}
.x57_c00293{left:298.340667pt;}
.xc5_c00293{left:300.350928pt;}
.xbd_c00293{left:302.001563pt;}
.x3b_c00293{left:304.129133pt;}
.x27_c00293{left:305.385700pt;}
.x1d_c00293{left:309.454267pt;}
.xad_c00293{left:311.926667pt;}
.x9_c00293{left:313.092000pt;}
.x58_c00293{left:314.433333pt;}
.xb4_c00293{left:315.708536pt;}
.x15_c00293{left:320.080133pt;}
.x93_c00293{left:321.814800pt;}
.xc6_c00293{left:324.833288pt;}
.x8d_c00293{left:326.164800pt;}
.x3c_c00293{left:327.840833pt;}
.x45_c00293{left:330.813433pt;}
.x33_c00293{left:333.689133pt;}
.x75_c00293{left:335.069600pt;}
.xa_c00293{left:337.144000pt;}
.x16_c00293{left:338.289000pt;}
.x28_c00293{left:340.912367pt;}
.x1e_c00293{left:342.674767pt;}
.x9a_c00293{left:345.096033pt;}
.xa1_c00293{left:347.342767pt;}
.x76_c00293{left:350.186333pt;}
.x94_c00293{left:352.538667pt;}
.x3d_c00293{left:354.007433pt;}
.xa2_c00293{left:358.401533pt;}
.x6d_c00293{left:359.328533pt;}
.x82_c00293{left:360.267033pt;}
.x4d_c00293{left:361.776567pt;}
.xbe_c00293{left:363.220907pt;}
.x59_c00293{left:366.047767pt;}
.xae_c00293{left:367.901333pt;}
.x9b_c00293{left:370.068867pt;}
.xbf_c00293{left:371.615061pt;}
.x67_c00293{left:372.884733pt;}
.x87_c00293{left:374.127800pt;}
.x6e_c00293{left:375.786067pt;}
.x60_c00293{left:376.778100pt;}
.xa7_c00293{left:379.644133pt;}
.x68_c00293{left:380.949933pt;}
.x1f_c00293{left:382.472433pt;}
.x5a_c00293{left:387.137067pt;}
.xa3_c00293{left:391.775200pt;}
.x8e_c00293{left:393.810667pt;}
.x20_c00293{left:394.705467pt;}
.x6f_c00293{left:395.742900pt;}
.x83_c00293{left:397.252267pt;}
.x9c_c00293{left:400.041867pt;}
.xb_c00293{left:401.084000pt;}
.x7c_c00293{left:401.975767pt;}
.x17_c00293{left:404.080700pt;}
.x29_c00293{left:406.592367pt;}
.x46_c00293{left:410.527367pt;}
.x34_c00293{left:413.859800pt;}
.x95_c00293{left:415.440200pt;}
.x3e_c00293{left:416.960400pt;}
.x69_c00293{left:420.547867pt;}
.x9d_c00293{left:421.688367pt;}
.x5b_c00293{left:423.430933pt;}
.x7d_c00293{left:424.537400pt;}
.x21_c00293{left:426.380667pt;}
.xc_c00293{left:428.549333pt;}
.xaf_c00293{left:430.041333pt;}
.x96_c00293{left:432.286600pt;}
.x54_c00293{left:435.675100pt;}
.x47_c00293{left:438.005500pt;}
.x9e_c00293{left:438.980233pt;}
.x35_c00293{left:440.521133pt;}
.x77_c00293{left:443.021900pt;}
.x2a_c00293{left:444.536367pt;}
.x3f_c00293{left:446.516700pt;}
.x88_c00293{left:451.529833pt;}
.x70_c00293{left:452.486133pt;}
.x22_c00293{left:453.818633pt;}
.xd_c00293{left:454.730667pt;}
.x7e_c00293{left:455.822533pt;}
.x3_c00293{left:459.157333pt;}
.x9f_c00293{left:461.783067pt;}
.xa4_c00293{left:463.218367pt;}
.x4e_c00293{left:464.905267pt;}
.x61_c00293{left:468.308800pt;}
.x78_c00293{left:469.495867pt;}
.x89_c00293{left:471.970933pt;}
.xa5_c00293{left:473.148833pt;}
.x84_c00293{left:482.201500pt;}
.x36_c00293{left:483.445433pt;}
.xb0_c00293{left:485.394667pt;}
.x2b_c00293{left:488.287033pt;}
.x40_c00293{left:490.355733pt;}
.x48_c00293{left:491.860267pt;}
.x18_c00293{left:493.383800pt;}
.xa0_c00293{left:494.436867pt;}
.xc7_c00293{left:496.239160pt;}
.xc0_c00293{left:498.336827pt;}
.x5c_c00293{left:503.286233pt;}
.x4f_c00293{left:505.456367pt;}
.x37_c00293{left:507.007800pt;}
.x8f_c00293{left:509.120567pt;}
.xe_c00293{left:510.902667pt;}
.xc4_c00293{left:511.862941pt;}
.x2c_c00293{left:512.939033pt;}
.x41_c00293{left:515.152867pt;}
.x49_c00293{left:519.159700pt;}
.x85_c00293{left:522.339533pt;}
.x5d_c00293{left:523.540767pt;}
.x71_c00293{left:524.656100pt;}
.x90_c00293{left:525.895000pt;}
.x79_c00293{left:527.346200pt;}
.x2d_c00293{left:528.684367pt;}
.xb1_c00293{left:529.657333pt;}
.x19_c00293{left:532.888133pt;}
.xb5_c00293{left:534.120763pt;}
.xc1_c00293{left:535.284448pt;}
.x38_c00293{left:536.304067pt;}
.x50_c00293{left:537.655333pt;}
.xf_c00293{left:542.002667pt;}
.xb6_c00293{left:546.898805pt;}
.x23_c00293{left:548.829567pt;}
.xc2_c00293{left:549.973885pt;}
.x7f_c00293{left:552.792100pt;}
.x6a_c00293{left:557.383067pt;}
.xb7_c00293{left:559.374163pt;}
.x91_c00293{left:561.420333pt;}
.xc3_c00293{left:580.875576pt;}
.x97_c00293{left:582.311600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m43_c00294{transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);-ms-transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);}
.med_c00294{transform:matrix(0.016937,-0.000322,0.004749,0.249955,0,0);-ms-transform:matrix(0.016937,-0.000322,0.004749,0.249955,0,0);-webkit-transform:matrix(0.016937,-0.000322,0.004749,0.249955,0,0);}
.mde_c00294{transform:matrix(0.054662,-0.000929,0.004249,0.249964,0,0);-ms-transform:matrix(0.054662,-0.000929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.054662,-0.000929,0.004249,0.249964,0,0);}
.mfc_c00294{transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);}
.mab_c00294{transform:matrix(0.106623,-0.001599,0.003750,0.249972,0,0);-ms-transform:matrix(0.106623,-0.001599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.106623,-0.001599,0.003750,0.249972,0,0);}
.m7_c00294{transform:matrix(0.115520,-0.001848,0.003999,0.249968,0,0);-ms-transform:matrix(0.115520,-0.001848,0.003999,0.249968,0,0);-webkit-transform:matrix(0.115520,-0.001848,0.003999,0.249968,0,0);}
.m6_c00294{transform:matrix(0.146706,-0.002347,0.003999,0.249968,0,0);-ms-transform:matrix(0.146706,-0.002347,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146706,-0.002347,0.003999,0.249968,0,0);}
.m2f_c00294{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);}
.m1e_c00294{transform:matrix(0.150373,-0.002256,0.003750,0.249972,0,0);-ms-transform:matrix(0.150373,-0.002256,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150373,-0.002256,0.003750,0.249972,0,0);}
.m41_c00294{transform:matrix(0.150838,-0.002263,0.003750,0.249972,0,0);-ms-transform:matrix(0.150838,-0.002263,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150838,-0.002263,0.003750,0.249972,0,0);}
.m8d_c00294{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);}
.m76_c00294{transform:matrix(0.157537,-0.002363,0.003750,0.249972,0,0);-ms-transform:matrix(0.157537,-0.002363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157537,-0.002363,0.003750,0.249972,0,0);}
.m87_c00294{transform:matrix(0.160602,-0.002409,0.003750,0.249972,0,0);-ms-transform:matrix(0.160602,-0.002409,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160602,-0.002409,0.003750,0.249972,0,0);}
.m4a_c00294{transform:matrix(0.161277,-0.002419,0.003750,0.249972,0,0);-ms-transform:matrix(0.161277,-0.002419,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161277,-0.002419,0.003750,0.249972,0,0);}
.m2d_c00294{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);}
.m30_c00294{transform:matrix(0.162497,-0.002437,0.003750,0.249972,0,0);-ms-transform:matrix(0.162497,-0.002437,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162497,-0.002437,0.003750,0.249972,0,0);}
.mac_c00294{transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);-ms-transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);}
.mcb_c00294{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);}
.m5_c00294{transform:matrix(0.166189,-0.002659,0.003999,0.249968,0,0);-ms-transform:matrix(0.166189,-0.002659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166189,-0.002659,0.003999,0.249968,0,0);}
.mb1_c00294{transform:matrix(0.167906,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167906,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167906,-0.002519,0.003750,0.249972,0,0);}
.mbf_c00294{transform:matrix(0.168181,-0.002523,0.003750,0.249972,0,0);-ms-transform:matrix(0.168181,-0.002523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168181,-0.002523,0.003750,0.249972,0,0);}
.m90_c00294{transform:matrix(0.169336,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169336,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169336,-0.002540,0.003750,0.249972,0,0);}
.md9_c00294{transform:matrix(0.169750,-0.002886,0.004249,0.249964,0,0);-ms-transform:matrix(0.169750,-0.002886,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169750,-0.002886,0.004249,0.249964,0,0);}
.m3f_c00294{transform:matrix(0.169751,-0.002546,0.003750,0.249972,0,0);-ms-transform:matrix(0.169751,-0.002546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169751,-0.002546,0.003750,0.249972,0,0);}
.m21_c00294{transform:matrix(0.172016,-0.002580,0.003750,0.249972,0,0);-ms-transform:matrix(0.172016,-0.002580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172016,-0.002580,0.003750,0.249972,0,0);}
.mb3_c00294{transform:matrix(0.172781,-0.002592,0.003750,0.249972,0,0);-ms-transform:matrix(0.172781,-0.002592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172781,-0.002592,0.003750,0.249972,0,0);}
.m67_c00294{transform:matrix(0.173395,-0.002601,0.003750,0.249972,0,0);-ms-transform:matrix(0.173395,-0.002601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173395,-0.002601,0.003750,0.249972,0,0);}
.md3_c00294{transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);-ms-transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173480,-0.002949,0.004249,0.249964,0,0);}
.m3e_c00294{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);}
.m40_c00294{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);}
.m96_c00294{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);}
.m2a_c00294{transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);}
.md7_c00294{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);}
.m19_c00294{transform:matrix(0.177335,-0.002660,0.003750,0.249972,0,0);-ms-transform:matrix(0.177335,-0.002660,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177335,-0.002660,0.003750,0.249972,0,0);}
.m38_c00294{transform:matrix(0.177920,-0.002669,0.003750,0.249972,0,0);-ms-transform:matrix(0.177920,-0.002669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177920,-0.002669,0.003750,0.249972,0,0);}
.m16_c00294{transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-ms-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);}
.me8_c00294{transform:matrix(0.179638,-0.003413,0.004749,0.249955,0,0);-ms-transform:matrix(0.179638,-0.003413,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179638,-0.003413,0.004749,0.249955,0,0);}
.m2b_c00294{transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);}
.m99_c00294{transform:matrix(0.179790,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179790,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179790,-0.002697,0.003750,0.249972,0,0);}
.m44_c00294{transform:matrix(0.180405,-0.002706,0.003750,0.249972,0,0);-ms-transform:matrix(0.180405,-0.002706,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180405,-0.002706,0.003750,0.249972,0,0);}
.mcc_c00294{transform:matrix(0.181240,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181240,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181240,-0.002719,0.003750,0.249972,0,0);}
.m4f_c00294{transform:matrix(0.181285,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181285,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181285,-0.002719,0.003750,0.249972,0,0);}
.m94_c00294{transform:matrix(0.181575,-0.002724,0.003750,0.249972,0,0);-ms-transform:matrix(0.181575,-0.002724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181575,-0.002724,0.003750,0.249972,0,0);}
.m4_c00294{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);}
.mf8_c00294{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);}
.mb2_c00294{transform:matrix(0.183109,-0.002747,0.003750,0.249972,0,0);-ms-transform:matrix(0.183109,-0.002747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183109,-0.002747,0.003750,0.249972,0,0);}
.m98_c00294{transform:matrix(0.183669,-0.002755,0.003750,0.249972,0,0);-ms-transform:matrix(0.183669,-0.002755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183669,-0.002755,0.003750,0.249972,0,0);}
.ma3_c00294{transform:matrix(0.184774,-0.002772,0.003750,0.249972,0,0);-ms-transform:matrix(0.184774,-0.002772,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184774,-0.002772,0.003750,0.249972,0,0);}
.m93_c00294{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);}
.ma5_c00294{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);}
.md4_c00294{transform:matrix(0.186013,-0.003162,0.004249,0.249964,0,0);-ms-transform:matrix(0.186013,-0.003162,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186013,-0.003162,0.004249,0.249964,0,0);}
.m3b_c00294{transform:matrix(0.187374,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187374,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187374,-0.002811,0.003750,0.249972,0,0);}
.m23_c00294{transform:matrix(0.188264,-0.002824,0.003750,0.249972,0,0);-ms-transform:matrix(0.188264,-0.002824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188264,-0.002824,0.003750,0.249972,0,0);}
.mee_c00294{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);}
.m3a_c00294{transform:matrix(0.188864,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188864,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188864,-0.002833,0.003750,0.249972,0,0);}
.m95_c00294{transform:matrix(0.189354,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189354,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189354,-0.002840,0.003750,0.249972,0,0);}
.m33_c00294{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);}
.m97_c00294{transform:matrix(0.190024,-0.002850,0.003750,0.249972,0,0);-ms-transform:matrix(0.190024,-0.002850,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190024,-0.002850,0.003750,0.249972,0,0);}
.m37_c00294{transform:matrix(0.190049,-0.002851,0.003750,0.249972,0,0);-ms-transform:matrix(0.190049,-0.002851,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190049,-0.002851,0.003750,0.249972,0,0);}
.m82_c00294{transform:matrix(0.190374,-0.002856,0.003750,0.249972,0,0);-ms-transform:matrix(0.190374,-0.002856,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190374,-0.002856,0.003750,0.249972,0,0);}
.m31_c00294{transform:matrix(0.190479,-0.002857,0.003750,0.249972,0,0);-ms-transform:matrix(0.190479,-0.002857,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190479,-0.002857,0.003750,0.249972,0,0);}
.m85_c00294{transform:matrix(0.191059,-0.002866,0.003750,0.249972,0,0);-ms-transform:matrix(0.191059,-0.002866,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191059,-0.002866,0.003750,0.249972,0,0);}
.m22_c00294{transform:matrix(0.191493,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191493,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191493,-0.002872,0.003750,0.249972,0,0);}
.m8c_c00294{transform:matrix(0.191638,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191638,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191638,-0.002875,0.003750,0.249972,0,0);}
.m4e_c00294{transform:matrix(0.191733,-0.002876,0.003750,0.249972,0,0);-ms-transform:matrix(0.191733,-0.002876,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191733,-0.002876,0.003750,0.249972,0,0);}
.m48_c00294{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);}
.m24_c00294{transform:matrix(0.191923,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191923,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191923,-0.002879,0.003750,0.249972,0,0);}
.m47_c00294{transform:matrix(0.192033,-0.002881,0.003750,0.249972,0,0);-ms-transform:matrix(0.192033,-0.002881,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192033,-0.002881,0.003750,0.249972,0,0);}
.mfa_c00294{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);}
.m81_c00294{transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);}
.mf7_c00294{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);}
.mf5_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);}
.m2e_c00294{transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);-ms-transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);}
.md2_c00294{transform:matrix(0.192882,-0.003279,0.004249,0.249964,0,0);-ms-transform:matrix(0.192882,-0.003279,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192882,-0.003279,0.004249,0.249964,0,0);}
.m89_c00294{transform:matrix(0.193138,-0.002897,0.003750,0.249972,0,0);-ms-transform:matrix(0.193138,-0.002897,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193138,-0.002897,0.003750,0.249972,0,0);}
.m8a_c00294{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);}
.me2_c00294{transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);-ms-transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);}
.m91_c00294{transform:matrix(0.193868,-0.002908,0.003750,0.249972,0,0);-ms-transform:matrix(0.193868,-0.002908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193868,-0.002908,0.003750,0.249972,0,0);}
.m45_c00294{transform:matrix(0.194098,-0.002911,0.003750,0.249972,0,0);-ms-transform:matrix(0.194098,-0.002911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194098,-0.002911,0.003750,0.249972,0,0);}
.m5f_c00294{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);}
.mf9_c00294{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);}
.m39_c00294{transform:matrix(0.195018,-0.002925,0.003750,0.249972,0,0);-ms-transform:matrix(0.195018,-0.002925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195018,-0.002925,0.003750,0.249972,0,0);}
.mc4_c00294{transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);-ms-transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195273,-0.002929,0.003750,0.249972,0,0);}
.m32_c00294{transform:matrix(0.195483,-0.002932,0.003750,0.249972,0,0);-ms-transform:matrix(0.195483,-0.002932,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195483,-0.002932,0.003750,0.249972,0,0);}
.m8f_c00294{transform:matrix(0.195993,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.195993,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195993,-0.002940,0.003750,0.249972,0,0);}
.m58_c00294{transform:matrix(0.196248,-0.002944,0.003750,0.249972,0,0);-ms-transform:matrix(0.196248,-0.002944,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196248,-0.002944,0.003750,0.249972,0,0);}
.mda_c00294{transform:matrix(0.196402,-0.003339,0.004249,0.249964,0,0);-ms-transform:matrix(0.196402,-0.003339,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196402,-0.003339,0.004249,0.249964,0,0);}
.m26_c00294{transform:matrix(0.196408,-0.002946,0.003750,0.249972,0,0);-ms-transform:matrix(0.196408,-0.002946,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196408,-0.002946,0.003750,0.249972,0,0);}
.mff_c00294{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);}
.mb7_c00294{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);}
.m52_c00294{transform:matrix(0.197613,-0.002964,0.003750,0.249972,0,0);-ms-transform:matrix(0.197613,-0.002964,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197613,-0.002964,0.003750,0.249972,0,0);}
.m35_c00294{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);}
.m57_c00294{transform:matrix(0.197918,-0.002969,0.003750,0.249972,0,0);-ms-transform:matrix(0.197918,-0.002969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197918,-0.002969,0.003750,0.249972,0,0);}
.md0_c00294{transform:matrix(0.199051,-0.003384,0.004249,0.249964,0,0);-ms-transform:matrix(0.199051,-0.003384,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199051,-0.003384,0.004249,0.249964,0,0);}
.mfb_c00294{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);}
.maf_c00294{transform:matrix(0.199693,-0.002995,0.003750,0.249972,0,0);-ms-transform:matrix(0.199693,-0.002995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199693,-0.002995,0.003750,0.249972,0,0);}
.m49_c00294{transform:matrix(0.200132,-0.003002,0.003750,0.249972,0,0);-ms-transform:matrix(0.200132,-0.003002,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200132,-0.003002,0.003750,0.249972,0,0);}
.m9f_c00294{transform:matrix(0.200357,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200357,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200357,-0.003005,0.003750,0.249972,0,0);}
.m7b_c00294{transform:matrix(0.200872,-0.003013,0.003750,0.249972,0,0);-ms-transform:matrix(0.200872,-0.003013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200872,-0.003013,0.003750,0.249972,0,0);}
.m28_c00294{transform:matrix(0.201522,-0.003023,0.003750,0.249972,0,0);-ms-transform:matrix(0.201522,-0.003023,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201522,-0.003023,0.003750,0.249972,0,0);}
.m18_c00294{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);}
.mc2_c00294{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);}
.m8e_c00294{transform:matrix(0.203287,-0.003049,0.003750,0.249972,0,0);-ms-transform:matrix(0.203287,-0.003049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203287,-0.003049,0.003750,0.249972,0,0);}
.m51_c00294{transform:matrix(0.203307,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203307,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203307,-0.003050,0.003750,0.249972,0,0);}
.mba_c00294{transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);}
.mf4_c00294{transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);-ms-transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203568,-0.003868,0.004749,0.249955,0,0);}
.md8_c00294{transform:matrix(0.203736,-0.003464,0.004249,0.249964,0,0);-ms-transform:matrix(0.203736,-0.003464,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203736,-0.003464,0.004249,0.249964,0,0);}
.m50_c00294{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);}
.m109_c00294{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);}
.maa_c00294{transform:matrix(0.204657,-0.003070,0.003750,0.249972,0,0);-ms-transform:matrix(0.204657,-0.003070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204657,-0.003070,0.003750,0.249972,0,0);}
.m6e_c00294{transform:matrix(0.204882,-0.003073,0.003750,0.249972,0,0);-ms-transform:matrix(0.204882,-0.003073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204882,-0.003073,0.003750,0.249972,0,0);}
.m7f_c00294{transform:matrix(0.204982,-0.003075,0.003750,0.249972,0,0);-ms-transform:matrix(0.204982,-0.003075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204982,-0.003075,0.003750,0.249972,0,0);}
.m10e_c00294{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);}
.m1d_c00294{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);}
.m25_c00294{transform:matrix(0.205372,-0.003081,0.003750,0.249972,0,0);-ms-transform:matrix(0.205372,-0.003081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205372,-0.003081,0.003750,0.249972,0,0);}
.mea_c00294{transform:matrix(0.206023,-0.003914,0.004749,0.249955,0,0);-ms-transform:matrix(0.206023,-0.003914,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206023,-0.003914,0.004749,0.249955,0,0);}
.mc9_c00294{transform:matrix(0.207192,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207192,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207192,-0.003108,0.003750,0.249972,0,0);}
.mbe_c00294{transform:matrix(0.207752,-0.003116,0.003750,0.249972,0,0);-ms-transform:matrix(0.207752,-0.003116,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207752,-0.003116,0.003750,0.249972,0,0);}
.m5a_c00294{transform:matrix(0.207787,-0.003117,0.003750,0.249972,0,0);-ms-transform:matrix(0.207787,-0.003117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207787,-0.003117,0.003750,0.249972,0,0);}
.m10c_c00294{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);}
.m27_c00294{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);}
.me1_c00294{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_c00294{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);}
.m5c_c00294{transform:matrix(0.209096,-0.003136,0.003750,0.249972,0,0);-ms-transform:matrix(0.209096,-0.003136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209096,-0.003136,0.003750,0.249972,0,0);}
.m102_c00294{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);}
.m34_c00294{transform:matrix(0.209646,-0.003145,0.003750,0.249972,0,0);-ms-transform:matrix(0.209646,-0.003145,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209646,-0.003145,0.003750,0.249972,0,0);}
.ma4_c00294{transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);-ms-transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);}
.m4b_c00294{transform:matrix(0.209941,-0.003149,0.003750,0.249972,0,0);-ms-transform:matrix(0.209941,-0.003149,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209941,-0.003149,0.003750,0.249972,0,0);}
.m29_c00294{transform:matrix(0.210171,-0.003153,0.003750,0.249972,0,0);-ms-transform:matrix(0.210171,-0.003153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210171,-0.003153,0.003750,0.249972,0,0);}
.m10b_c00294{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);}
.m8b_c00294{transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);-ms-transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);}
.m69_c00294{transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-ms-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);}
.m61_c00294{transform:matrix(0.212346,-0.003185,0.003750,0.249972,0,0);-ms-transform:matrix(0.212346,-0.003185,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212346,-0.003185,0.003750,0.249972,0,0);}
.m72_c00294{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);}
.mb9_c00294{transform:matrix(0.213666,-0.003205,0.003750,0.249972,0,0);-ms-transform:matrix(0.213666,-0.003205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213666,-0.003205,0.003750,0.249972,0,0);}
.m70_c00294{transform:matrix(0.214451,-0.003217,0.003750,0.249972,0,0);-ms-transform:matrix(0.214451,-0.003217,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214451,-0.003217,0.003750,0.249972,0,0);}
.me6_c00294{transform:matrix(0.215036,-0.004086,0.004749,0.249955,0,0);-ms-transform:matrix(0.215036,-0.004086,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215036,-0.004086,0.004749,0.249955,0,0);}
.mcf_c00294{transform:matrix(0.215039,-0.003656,0.004249,0.249964,0,0);-ms-transform:matrix(0.215039,-0.003656,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215039,-0.003656,0.004249,0.249964,0,0);}
.m64_c00294{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);}
.m84_c00294{transform:matrix(0.216026,-0.003240,0.003750,0.249972,0,0);-ms-transform:matrix(0.216026,-0.003240,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216026,-0.003240,0.003750,0.249972,0,0);}
.m10a_c00294{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m83_c00294{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);}
.mc8_c00294{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);}
.m56_c00294{transform:matrix(0.218180,-0.003273,0.003750,0.249972,0,0);-ms-transform:matrix(0.218180,-0.003273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218180,-0.003273,0.003750,0.249972,0,0);}
.m92_c00294{transform:matrix(0.218600,-0.003279,0.003750,0.249972,0,0);-ms-transform:matrix(0.218600,-0.003279,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218600,-0.003279,0.003750,0.249972,0,0);}
.m6d_c00294{transform:matrix(0.218900,-0.003284,0.003750,0.249972,0,0);-ms-transform:matrix(0.218900,-0.003284,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218900,-0.003284,0.003750,0.249972,0,0);}
.me5_c00294{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);}
.m54_c00294{transform:matrix(0.219670,-0.003295,0.003750,0.249972,0,0);-ms-transform:matrix(0.219670,-0.003295,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219670,-0.003295,0.003750,0.249972,0,0);}
.m71_c00294{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);}
.m2c_c00294{transform:matrix(0.220820,-0.003312,0.003750,0.249972,0,0);-ms-transform:matrix(0.220820,-0.003312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220820,-0.003312,0.003750,0.249972,0,0);}
.m9d_c00294{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);}
.m88_c00294{transform:matrix(0.221170,-0.003318,0.003750,0.249972,0,0);-ms-transform:matrix(0.221170,-0.003318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221170,-0.003318,0.003750,0.249972,0,0);}
.m60_c00294{transform:matrix(0.221215,-0.003318,0.003750,0.249972,0,0);-ms-transform:matrix(0.221215,-0.003318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221215,-0.003318,0.003750,0.249972,0,0);}
.m20_c00294{transform:matrix(0.221905,-0.003329,0.003750,0.249972,0,0);-ms-transform:matrix(0.221905,-0.003329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221905,-0.003329,0.003750,0.249972,0,0);}
.ma2_c00294{transform:matrix(0.221960,-0.003329,0.003750,0.249972,0,0);-ms-transform:matrix(0.221960,-0.003329,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221960,-0.003329,0.003750,0.249972,0,0);}
.mbd_c00294{transform:matrix(0.222045,-0.003331,0.003750,0.249972,0,0);-ms-transform:matrix(0.222045,-0.003331,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222045,-0.003331,0.003750,0.249972,0,0);}
.mfe_c00294{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);}
.mbb_c00294{transform:matrix(0.223310,-0.003350,0.003750,0.249972,0,0);-ms-transform:matrix(0.223310,-0.003350,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223310,-0.003350,0.003750,0.249972,0,0);}
.mc1_c00294{transform:matrix(0.223895,-0.003358,0.003750,0.249972,0,0);-ms-transform:matrix(0.223895,-0.003358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223895,-0.003358,0.003750,0.249972,0,0);}
.me3_c00294{transform:matrix(0.224140,-0.004259,0.004749,0.249955,0,0);-ms-transform:matrix(0.224140,-0.004259,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224140,-0.004259,0.004749,0.249955,0,0);}
.ma8_c00294{transform:matrix(0.224200,-0.003363,0.003750,0.249972,0,0);-ms-transform:matrix(0.224200,-0.003363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224200,-0.003363,0.003750,0.249972,0,0);}
.m80_c00294{transform:matrix(0.224805,-0.003372,0.003750,0.249972,0,0);-ms-transform:matrix(0.224805,-0.003372,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224805,-0.003372,0.003750,0.249972,0,0);}
.m55_c00294{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);}
.mc6_c00294{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);}
.mca_c00294{transform:matrix(0.227139,-0.003407,0.003750,0.249972,0,0);-ms-transform:matrix(0.227139,-0.003407,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227139,-0.003407,0.003750,0.249972,0,0);}
.m77_c00294{transform:matrix(0.227424,-0.003411,0.003750,0.249972,0,0);-ms-transform:matrix(0.227424,-0.003411,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227424,-0.003411,0.003750,0.249972,0,0);}
.m10d_c00294{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);}
.md1_c00294{transform:matrix(0.228537,-0.003885,0.004249,0.249964,0,0);-ms-transform:matrix(0.228537,-0.003885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228537,-0.003885,0.004249,0.249964,0,0);}
.mae_c00294{transform:matrix(0.229054,-0.003436,0.003750,0.249972,0,0);-ms-transform:matrix(0.229054,-0.003436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229054,-0.003436,0.003750,0.249972,0,0);}
.ma0_c00294{transform:matrix(0.229114,-0.003437,0.003750,0.249972,0,0);-ms-transform:matrix(0.229114,-0.003437,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229114,-0.003437,0.003750,0.249972,0,0);}
.mce_c00294{transform:matrix(0.229792,-0.003906,0.004249,0.249964,0,0);-ms-transform:matrix(0.229792,-0.003906,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229792,-0.003906,0.004249,0.249964,0,0);}
.m101_c00294{transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);}
.mb4_c00294{transform:matrix(0.230929,-0.003464,0.003750,0.249972,0,0);-ms-transform:matrix(0.230929,-0.003464,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230929,-0.003464,0.003750,0.249972,0,0);}
.m73_c00294{transform:matrix(0.231189,-0.003468,0.003750,0.249972,0,0);-ms-transform:matrix(0.231189,-0.003468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231189,-0.003468,0.003750,0.249972,0,0);}
.m103_c00294{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);}
.m68_c00294{transform:matrix(0.231714,-0.003476,0.003750,0.249972,0,0);-ms-transform:matrix(0.231714,-0.003476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231714,-0.003476,0.003750,0.249972,0,0);}
.mc0_c00294{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);}
.m59_c00294{transform:matrix(0.232944,-0.003494,0.003750,0.249972,0,0);-ms-transform:matrix(0.232944,-0.003494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232944,-0.003494,0.003750,0.249972,0,0);}
.m17_c00294{transform:matrix(0.233739,-0.003506,0.003750,0.249972,0,0);-ms-transform:matrix(0.233739,-0.003506,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233739,-0.003506,0.003750,0.249972,0,0);}
.m74_c00294{transform:matrix(0.233824,-0.003507,0.003750,0.249972,0,0);-ms-transform:matrix(0.233824,-0.003507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233824,-0.003507,0.003750,0.249972,0,0);}
.m4d_c00294{transform:matrix(0.233869,-0.003508,0.003750,0.249972,0,0);-ms-transform:matrix(0.233869,-0.003508,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233869,-0.003508,0.003750,0.249972,0,0);}
.m75_c00294{transform:matrix(0.235189,-0.003528,0.003750,0.249972,0,0);-ms-transform:matrix(0.235189,-0.003528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235189,-0.003528,0.003750,0.249972,0,0);}
.m63_c00294{transform:matrix(0.235608,-0.003534,0.003750,0.249972,0,0);-ms-transform:matrix(0.235608,-0.003534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235608,-0.003534,0.003750,0.249972,0,0);}
.m46_c00294{transform:matrix(0.235908,-0.003539,0.003750,0.249972,0,0);-ms-transform:matrix(0.235908,-0.003539,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235908,-0.003539,0.003750,0.249972,0,0);}
.mb0_c00294{transform:matrix(0.236988,-0.003555,0.003750,0.249972,0,0);-ms-transform:matrix(0.236988,-0.003555,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236988,-0.003555,0.003750,0.249972,0,0);}
.m5b_c00294{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);}
.mdb_c00294{transform:matrix(0.238326,-0.004052,0.004249,0.249964,0,0);-ms-transform:matrix(0.238326,-0.004052,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238326,-0.004052,0.004249,0.249964,0,0);}
.mc5_c00294{transform:matrix(0.238798,-0.003582,0.003750,0.249972,0,0);-ms-transform:matrix(0.238798,-0.003582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238798,-0.003582,0.003750,0.249972,0,0);}
.m107_c00294{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);}
.mc3_c00294{transform:matrix(0.239248,-0.003589,0.003750,0.249972,0,0);-ms-transform:matrix(0.239248,-0.003589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239248,-0.003589,0.003750,0.249972,0,0);}
.mb8_c00294{transform:matrix(0.240753,-0.003611,0.003750,0.249972,0,0);-ms-transform:matrix(0.240753,-0.003611,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240753,-0.003611,0.003750,0.249972,0,0);}
.m115_c00294{transform:matrix(0.242104,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242104,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242104,-0.001695,0.001750,0.249994,0,0);}
.mdf_c00294{transform:matrix(0.242441,-0.004606,0.004749,0.249955,0,0);-ms-transform:matrix(0.242441,-0.004606,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242441,-0.004606,0.004749,0.249955,0,0);}
.m36_c00294{transform:matrix(0.242468,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242468,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242468,-0.003637,0.003750,0.249972,0,0);}
.md6_c00294{transform:matrix(0.242815,-0.004128,0.004249,0.249964,0,0);-ms-transform:matrix(0.242815,-0.004128,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242815,-0.004128,0.004249,0.249964,0,0);}
.m7c_c00294{transform:matrix(0.244572,-0.003669,0.003750,0.249972,0,0);-ms-transform:matrix(0.244572,-0.003669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244572,-0.003669,0.003750,0.249972,0,0);}
.ma9_c00294{transform:matrix(0.244812,-0.003672,0.003750,0.249972,0,0);-ms-transform:matrix(0.244812,-0.003672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244812,-0.003672,0.003750,0.249972,0,0);}
.mbc_c00294{transform:matrix(0.246457,-0.003697,0.003750,0.249972,0,0);-ms-transform:matrix(0.246457,-0.003697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246457,-0.003697,0.003750,0.249972,0,0);}
.mf3_c00294{transform:matrix(0.247105,-0.004695,0.004749,0.249955,0,0);-ms-transform:matrix(0.247105,-0.004695,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247105,-0.004695,0.004749,0.249955,0,0);}
.me9_c00294{transform:matrix(0.250285,-0.004755,0.004749,0.249955,0,0);-ms-transform:matrix(0.250285,-0.004755,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250285,-0.004755,0.004749,0.249955,0,0);}
.mf6_c00294{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);}
.mef_c00294{transform:matrix(0.251100,-0.004771,0.004749,0.249955,0,0);-ms-transform:matrix(0.251100,-0.004771,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251100,-0.004771,0.004749,0.249955,0,0);}
.m3_c00294{transform:matrix(0.251428,-0.004023,0.003999,0.249968,0,0);-ms-transform:matrix(0.251428,-0.004023,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251428,-0.004023,0.003999,0.249968,0,0);}
.m7e_c00294{transform:matrix(0.251447,-0.003772,0.003750,0.249972,0,0);-ms-transform:matrix(0.251447,-0.003772,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251447,-0.003772,0.003750,0.249972,0,0);}
.m9c_c00294{transform:matrix(0.251687,-0.003775,0.003750,0.249972,0,0);-ms-transform:matrix(0.251687,-0.003775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251687,-0.003775,0.003750,0.249972,0,0);}
.m8_c00294{transform:matrix(0.251738,-0.004028,0.003999,0.249968,0,0);-ms-transform:matrix(0.251738,-0.004028,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251738,-0.004028,0.003999,0.249968,0,0);}
.m86_c00294{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);}
.m7a_c00294{transform:matrix(0.252552,-0.003788,0.003750,0.249972,0,0);-ms-transform:matrix(0.252552,-0.003788,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252552,-0.003788,0.003750,0.249972,0,0);}
.meb_c00294{transform:matrix(0.253954,-0.004825,0.004749,0.249955,0,0);-ms-transform:matrix(0.253954,-0.004825,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253954,-0.004825,0.004749,0.249955,0,0);}
.m111_c00294{transform:matrix(0.254864,-0.001784,0.001750,0.249994,0,0);-ms-transform:matrix(0.254864,-0.001784,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254864,-0.001784,0.001750,0.249994,0,0);}
.m5e_c00294{transform:matrix(0.254916,-0.003824,0.003750,0.249972,0,0);-ms-transform:matrix(0.254916,-0.003824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254916,-0.003824,0.003750,0.249972,0,0);}
.mf1_c00294{transform:matrix(0.256404,-0.004872,0.004749,0.249955,0,0);-ms-transform:matrix(0.256404,-0.004872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256404,-0.004872,0.004749,0.249955,0,0);}
.m6a_c00294{transform:matrix(0.258301,-0.003875,0.003750,0.249972,0,0);-ms-transform:matrix(0.258301,-0.003875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258301,-0.003875,0.003750,0.249972,0,0);}
.me7_c00294{transform:matrix(0.260038,-0.004941,0.004749,0.249955,0,0);-ms-transform:matrix(0.260038,-0.004941,0.004749,0.249955,0,0);-webkit-transform:matrix(0.260038,-0.004941,0.004749,0.249955,0,0);}
.mfd_c00294{transform:matrix(0.260395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260395,0.000000,0.000000,0.250000,0,0);}
.m66_c00294{transform:matrix(0.260811,-0.003912,0.003750,0.249972,0,0);-ms-transform:matrix(0.260811,-0.003912,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260811,-0.003912,0.003750,0.249972,0,0);}
.ma1_c00294{transform:matrix(0.261151,-0.003917,0.003750,0.249972,0,0);-ms-transform:matrix(0.261151,-0.003917,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261151,-0.003917,0.003750,0.249972,0,0);}
.m78_c00294{transform:matrix(0.261736,-0.003926,0.003750,0.249972,0,0);-ms-transform:matrix(0.261736,-0.003926,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261736,-0.003926,0.003750,0.249972,0,0);}
.m108_c00294{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);}
.m6f_c00294{transform:matrix(0.263635,-0.003955,0.003750,0.249972,0,0);-ms-transform:matrix(0.263635,-0.003955,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263635,-0.003955,0.003750,0.249972,0,0);}
.m113_c00294{transform:matrix(0.263784,-0.001846,0.001750,0.249994,0,0);-ms-transform:matrix(0.263784,-0.001846,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263784,-0.001846,0.001750,0.249994,0,0);}
.ma7_c00294{transform:matrix(0.264865,-0.003973,0.003750,0.249972,0,0);-ms-transform:matrix(0.264865,-0.003973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264865,-0.003973,0.003750,0.249972,0,0);}
.mc7_c00294{transform:matrix(0.264950,-0.003974,0.003750,0.249972,0,0);-ms-transform:matrix(0.264950,-0.003974,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264950,-0.003974,0.003750,0.249972,0,0);}
.me0_c00294{transform:matrix(0.266567,-0.005065,0.004749,0.249955,0,0);-ms-transform:matrix(0.266567,-0.005065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.266567,-0.005065,0.004749,0.249955,0,0);}
.m3d_c00294{transform:matrix(0.268705,-0.004031,0.003750,0.249972,0,0);-ms-transform:matrix(0.268705,-0.004031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268705,-0.004031,0.003750,0.249972,0,0);}
.m119_c00294{transform:matrix(0.269838,-0.001889,0.001750,0.249994,0,0);-ms-transform:matrix(0.269838,-0.001889,0.001750,0.249994,0,0);-webkit-transform:matrix(0.269838,-0.001889,0.001750,0.249994,0,0);}
.m7d_c00294{transform:matrix(0.270220,-0.004053,0.003750,0.249972,0,0);-ms-transform:matrix(0.270220,-0.004053,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270220,-0.004053,0.003750,0.249972,0,0);}
.m62_c00294{transform:matrix(0.273624,-0.004104,0.003750,0.249972,0,0);-ms-transform:matrix(0.273624,-0.004104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273624,-0.004104,0.003750,0.249972,0,0);}
.m9b_c00294{transform:matrix(0.277949,-0.004169,0.003750,0.249972,0,0);-ms-transform:matrix(0.277949,-0.004169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277949,-0.004169,0.003750,0.249972,0,0);}
.m65_c00294{transform:matrix(0.279089,-0.004186,0.003750,0.249972,0,0);-ms-transform:matrix(0.279089,-0.004186,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279089,-0.004186,0.003750,0.249972,0,0);}
.mf0_c00294{transform:matrix(0.279345,-0.005308,0.004749,0.249955,0,0);-ms-transform:matrix(0.279345,-0.005308,0.004749,0.249955,0,0);-webkit-transform:matrix(0.279345,-0.005308,0.004749,0.249955,0,0);}
.mad_c00294{transform:matrix(0.279739,-0.004196,0.003750,0.249972,0,0);-ms-transform:matrix(0.279739,-0.004196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279739,-0.004196,0.003750,0.249972,0,0);}
.mdd_c00294{transform:matrix(0.280215,-0.004764,0.004249,0.249964,0,0);-ms-transform:matrix(0.280215,-0.004764,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280215,-0.004764,0.004249,0.249964,0,0);}
.mdc_c00294{transform:matrix(0.280349,-0.004766,0.004249,0.249964,0,0);-ms-transform:matrix(0.280349,-0.004766,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280349,-0.004766,0.004249,0.249964,0,0);}
.m1f_c00294{transform:matrix(0.280563,-0.004208,0.003750,0.249972,0,0);-ms-transform:matrix(0.280563,-0.004208,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280563,-0.004208,0.003750,0.249972,0,0);}
.m42_c00294{transform:matrix(0.282458,-0.004237,0.003750,0.249972,0,0);-ms-transform:matrix(0.282458,-0.004237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282458,-0.004237,0.003750,0.249972,0,0);}
.m100_c00294{transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);}
.ma6_c00294{transform:matrix(0.283468,-0.004252,0.003750,0.249972,0,0);-ms-transform:matrix(0.283468,-0.004252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283468,-0.004252,0.003750,0.249972,0,0);}
.md5_c00294{transform:matrix(0.284844,-0.004842,0.004249,0.249964,0,0);-ms-transform:matrix(0.284844,-0.004842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.284844,-0.004842,0.004249,0.249964,0,0);}
.m105_c00294{transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.290182,-0.004353,0.003750,0.249972,0,0);-ms-transform:matrix(0.290182,-0.004353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.290182,-0.004353,0.003750,0.249972,0,0);}
.m112_c00294{transform:matrix(0.291058,-0.002037,0.001750,0.249994,0,0);-ms-transform:matrix(0.291058,-0.002037,0.001750,0.249994,0,0);-webkit-transform:matrix(0.291058,-0.002037,0.001750,0.249994,0,0);}
.m6b_c00294{transform:matrix(0.292232,-0.004383,0.003750,0.249972,0,0);-ms-transform:matrix(0.292232,-0.004383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292232,-0.004383,0.003750,0.249972,0,0);}
.m9a_c00294{transform:matrix(0.295942,-0.004439,0.003750,0.249972,0,0);-ms-transform:matrix(0.295942,-0.004439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.295942,-0.004439,0.003750,0.249972,0,0);}
.m6c_c00294{transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);-ms-transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);}
.m110_c00294{transform:matrix(0.303548,-0.002125,0.001750,0.249994,0,0);-ms-transform:matrix(0.303548,-0.002125,0.001750,0.249994,0,0);-webkit-transform:matrix(0.303548,-0.002125,0.001750,0.249994,0,0);}
.m79_c00294{transform:matrix(0.304071,-0.004561,0.003750,0.249972,0,0);-ms-transform:matrix(0.304071,-0.004561,0.003750,0.249972,0,0);-webkit-transform:matrix(0.304071,-0.004561,0.003750,0.249972,0,0);}
.m9e_c00294{transform:matrix(0.304731,-0.004571,0.003750,0.249972,0,0);-ms-transform:matrix(0.304731,-0.004571,0.003750,0.249972,0,0);-webkit-transform:matrix(0.304731,-0.004571,0.003750,0.249972,0,0);}
.m3c_c00294{transform:matrix(0.306805,-0.004602,0.003750,0.249972,0,0);-ms-transform:matrix(0.306805,-0.004602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.306805,-0.004602,0.003750,0.249972,0,0);}
.m15_c00294{transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307215,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.311250,-0.004980,0.003999,0.249968,0,0);-ms-transform:matrix(0.311250,-0.004980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311250,-0.004980,0.003999,0.249968,0,0);}
.m1_c00294{transform:matrix(0.311405,-0.004982,0.003999,0.249968,0,0);-ms-transform:matrix(0.311405,-0.004982,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311405,-0.004982,0.003999,0.249968,0,0);}
.m13_c00294{transform:matrix(0.317594,-0.004764,0.003750,0.249972,0,0);-ms-transform:matrix(0.317594,-0.004764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.317594,-0.004764,0.003750,0.249972,0,0);}
.m117_c00294{transform:matrix(0.328052,-0.002296,0.001750,0.249994,0,0);-ms-transform:matrix(0.328052,-0.002296,0.001750,0.249994,0,0);-webkit-transform:matrix(0.328052,-0.002296,0.001750,0.249994,0,0);}
.mf2_c00294{transform:matrix(0.328916,-0.006249,0.004749,0.249955,0,0);-ms-transform:matrix(0.328916,-0.006249,0.004749,0.249955,0,0);-webkit-transform:matrix(0.328916,-0.006249,0.004749,0.249955,0,0);}
.m1a_c00294{transform:matrix(0.342172,-0.005133,0.003750,0.249972,0,0);-ms-transform:matrix(0.342172,-0.005133,0.003750,0.249972,0,0);-webkit-transform:matrix(0.342172,-0.005133,0.003750,0.249972,0,0);}
.m12_c00294{transform:matrix(0.345201,-0.005178,0.003750,0.249972,0,0);-ms-transform:matrix(0.345201,-0.005178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.345201,-0.005178,0.003750,0.249972,0,0);}
.m4c_c00294{transform:matrix(0.348101,-0.005222,0.003750,0.249972,0,0);-ms-transform:matrix(0.348101,-0.005222,0.003750,0.249972,0,0);-webkit-transform:matrix(0.348101,-0.005222,0.003750,0.249972,0,0);}
.me4_c00294{transform:matrix(0.350617,-0.006662,0.004749,0.249955,0,0);-ms-transform:matrix(0.350617,-0.006662,0.004749,0.249955,0,0);-webkit-transform:matrix(0.350617,-0.006662,0.004749,0.249955,0,0);}
.mf_c00294{transform:matrix(0.358600,-0.005379,0.003750,0.249972,0,0);-ms-transform:matrix(0.358600,-0.005379,0.003750,0.249972,0,0);-webkit-transform:matrix(0.358600,-0.005379,0.003750,0.249972,0,0);}
.m114_c00294{transform:matrix(0.364366,-0.002551,0.001750,0.249994,0,0);-ms-transform:matrix(0.364366,-0.002551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.364366,-0.002551,0.001750,0.249994,0,0);}
.mb5_c00294{transform:matrix(0.371768,-0.005577,0.003750,0.249972,0,0);-ms-transform:matrix(0.371768,-0.005577,0.003750,0.249972,0,0);-webkit-transform:matrix(0.371768,-0.005577,0.003750,0.249972,0,0);}
.m104_c00294{transform:matrix(0.381850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381850,0.000000,0.000000,0.250000,0,0);}
.mec_c00294{transform:matrix(0.392959,-0.007466,0.004749,0.249955,0,0);-ms-transform:matrix(0.392959,-0.007466,0.004749,0.249955,0,0);-webkit-transform:matrix(0.392959,-0.007466,0.004749,0.249955,0,0);}
.mc_c00294{transform:matrix(0.393761,-0.005906,0.003750,0.249972,0,0);-ms-transform:matrix(0.393761,-0.005906,0.003750,0.249972,0,0);-webkit-transform:matrix(0.393761,-0.005906,0.003750,0.249972,0,0);}
.m11_c00294{transform:matrix(0.395610,-0.005934,0.003750,0.249972,0,0);-ms-transform:matrix(0.395610,-0.005934,0.003750,0.249972,0,0);-webkit-transform:matrix(0.395610,-0.005934,0.003750,0.249972,0,0);}
.m10_c00294{transform:matrix(0.406579,-0.006099,0.003750,0.249972,0,0);-ms-transform:matrix(0.406579,-0.006099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.406579,-0.006099,0.003750,0.249972,0,0);}
.m116_c00294{transform:matrix(0.408790,-0.002862,0.001750,0.249994,0,0);-ms-transform:matrix(0.408790,-0.002862,0.001750,0.249994,0,0);-webkit-transform:matrix(0.408790,-0.002862,0.001750,0.249994,0,0);}
.mb6_c00294{transform:matrix(0.417598,-0.006264,0.003750,0.249972,0,0);-ms-transform:matrix(0.417598,-0.006264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.417598,-0.006264,0.003750,0.249972,0,0);}
.m53_c00294{transform:matrix(0.419153,-0.006287,0.003750,0.249972,0,0);-ms-transform:matrix(0.419153,-0.006287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.419153,-0.006287,0.003750,0.249972,0,0);}
.m14_c00294{transform:matrix(0.424690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424690,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.431326,-0.006470,0.003750,0.249972,0,0);-ms-transform:matrix(0.431326,-0.006470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.431326,-0.006470,0.003750,0.249972,0,0);}
.m118_c00294{transform:matrix(0.456329,-0.003194,0.001750,0.249994,0,0);-ms-transform:matrix(0.456329,-0.003194,0.001750,0.249994,0,0);-webkit-transform:matrix(0.456329,-0.003194,0.001750,0.249994,0,0);}
.m10f_c00294{transform:matrix(0.474258,-0.003320,0.001750,0.249994,0,0);-ms-transform:matrix(0.474258,-0.003320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.474258,-0.003320,0.001750,0.249994,0,0);}
.m2_c00294{transform:matrix(0.481988,-0.007712,0.003999,0.249968,0,0);-ms-transform:matrix(0.481988,-0.007712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.481988,-0.007712,0.003999,0.249968,0,0);}
.m9_c00294{transform:matrix(0.496556,-0.007945,0.003999,0.249968,0,0);-ms-transform:matrix(0.496556,-0.007945,0.003999,0.249968,0,0);-webkit-transform:matrix(0.496556,-0.007945,0.003999,0.249968,0,0);}
.m1b_c00294{transform:matrix(0.506403,-0.007596,0.003750,0.249972,0,0);-ms-transform:matrix(0.506403,-0.007596,0.003750,0.249972,0,0);-webkit-transform:matrix(0.506403,-0.007596,0.003750,0.249972,0,0);}
.mb_c00294{transform:matrix(0.510070,-0.008161,0.003999,0.249968,0,0);-ms-transform:matrix(0.510070,-0.008161,0.003999,0.249968,0,0);-webkit-transform:matrix(0.510070,-0.008161,0.003999,0.249968,0,0);}
.me_c00294{transform:matrix(0.532860,-0.007993,0.003750,0.249972,0,0);-ms-transform:matrix(0.532860,-0.007993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.532860,-0.007993,0.003750,0.249972,0,0);}
.mcd_c00294{transform:matrix(0.729460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729460,0.000000,0.000000,0.250000,0,0);}
.m106_c00294{transform:matrix(0.802390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802390,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.880672,-0.014091,0.003999,0.249968,0,0);-ms-transform:matrix(0.880672,-0.014091,0.003999,0.249968,0,0);-webkit-transform:matrix(0.880672,-0.014091,0.003999,0.249968,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:22.050000px;}
.fs13_c00294{font-size:38.850952px;}
.fs12_c00294{font-size:49.350000px;}
.fs10_c00294{font-size:50.409096px;}
.fsf_c00294{font-size:52.507586px;}
.fs11_c00294{font-size:57.750000px;}
.fsd_c00294{font-size:61.956969px;}
.fsa_c00294{font-size:65.107323px;}
.fsb_c00294{font-size:66.157441px;}
.fs3_c00294{font-size:66.158467px;}
.fs9_c00294{font-size:67.207560px;}
.fs7_c00294{font-size:68.257678px;}
.fs6_c00294{font-size:69.307796px;}
.fsc_c00294{font-size:70.357914px;}
.fs8_c00294{font-size:72.458150px;}
.fs4_c00294{font-size:75.608505px;}
.fs5_c00294{font-size:107.100000px;}
.fs2_c00294{font-size:134.417202px;}
.fs1_c00294{font-size:135.467336px;}
.fs0_c00294{font-size:144.918546px;}
.y0_c00294{bottom:0.000000px;}
.y10b_c00294{bottom:167.940000px;}
.y10c_c00294{bottom:168.070211px;}
.y10d_c00294{bottom:168.310104px;}
.y10e_c00294{bottom:168.444452px;}
.y10f_c00294{bottom:168.497645px;}
.y110_c00294{bottom:168.841352px;}
.y111_c00294{bottom:168.960442px;}
.y112_c00294{bottom:169.775201px;}
.y113_c00294{bottom:170.034152px;}
.y114_c00294{bottom:170.510327px;}
.y115_c00294{bottom:170.633460px;}
.yf9_c00294{bottom:183.601500px;}
.yfa_c00294{bottom:184.042500px;}
.yfb_c00294{bottom:184.246500px;}
.yfc_c00294{bottom:184.719000px;}
.yfd_c00294{bottom:184.999500px;}
.yfe_c00294{bottom:185.931000px;}
.yff_c00294{bottom:186.190500px;}
.y100_c00294{bottom:186.556500px;}
.y101_c00294{bottom:186.847500px;}
.y102_c00294{bottom:187.258500px;}
.y103_c00294{bottom:187.468500px;}
.y104_c00294{bottom:188.104500px;}
.y105_c00294{bottom:188.706000px;}
.y106_c00294{bottom:188.946000px;}
.y107_c00294{bottom:189.480000px;}
.y108_c00294{bottom:189.780000px;}
.y109_c00294{bottom:189.990000px;}
.y10a_c00294{bottom:190.663500px;}
.yf8_c00294{bottom:202.318500px;}
.yf0_c00294{bottom:203.850861px;}
.yf1_c00294{bottom:204.061852px;}
.yf2_c00294{bottom:204.696811px;}
.yf3_c00294{bottom:206.118615px;}
.yf4_c00294{bottom:206.517067px;}
.yf5_c00294{bottom:207.389074px;}
.yf6_c00294{bottom:208.229154px;}
.yf7_c00294{bottom:208.606755px;}
.ye2_c00294{bottom:218.434500px;}
.ye3_c00294{bottom:218.930941px;}
.ye4_c00294{bottom:219.209187px;}
.ye5_c00294{bottom:219.793124px;}
.ye6_c00294{bottom:220.490860px;}
.ye7_c00294{bottom:221.758711px;}
.ye8_c00294{bottom:221.998909px;}
.ye9_c00294{bottom:222.703942px;}
.yea_c00294{bottom:223.445997px;}
.yeb_c00294{bottom:223.821598px;}
.yec_c00294{bottom:224.692672px;}
.yed_c00294{bottom:225.018342px;}
.yee_c00294{bottom:225.913498px;}
.yef_c00294{bottom:225.950292px;}
.yd1_c00294{bottom:235.173000px;}
.yd2_c00294{bottom:235.436160px;}
.yd3_c00294{bottom:236.122442px;}
.yd4_c00294{bottom:236.517131px;}
.yd5_c00294{bottom:237.435385px;}
.yd6_c00294{bottom:237.930340px;}
.yd7_c00294{bottom:238.298025px;}
.yd8_c00294{bottom:238.900233px;}
.yd9_c00294{bottom:239.914241px;}
.yda_c00294{bottom:240.322853px;}
.ydb_c00294{bottom:240.607560px;}
.ydc_c00294{bottom:241.337421px;}
.ydd_c00294{bottom:241.599179px;}
.yde_c00294{bottom:242.333783px;}
.ydf_c00294{bottom:242.799260px;}
.ye0_c00294{bottom:243.199788px;}
.ye1_c00294{bottom:243.746304px;}
.yd0_c00294{bottom:268.648500px;}
.yc3_c00294{bottom:286.980322px;}
.yc4_c00294{bottom:287.638350px;}
.yc5_c00294{bottom:288.370455px;}
.yc6_c00294{bottom:288.665505px;}
.yc7_c00294{bottom:289.299180px;}
.yc8_c00294{bottom:290.239417px;}
.yc9_c00294{bottom:290.758432px;}
.yca_c00294{bottom:291.392602px;}
.ycb_c00294{bottom:292.071277px;}
.ycc_c00294{bottom:292.779855px;}
.ycd_c00294{bottom:293.111107px;}
.yce_c00294{bottom:294.152490px;}
.ycf_c00294{bottom:294.446572px;}
.yb7_c00294{bottom:309.930795px;}
.yb8_c00294{bottom:310.404615px;}
.yb9_c00294{bottom:311.598120px;}
.yba_c00294{bottom:311.988892px;}
.ybb_c00294{bottom:312.617017px;}
.ybc_c00294{bottom:313.049415px;}
.ybd_c00294{bottom:314.205750px;}
.ybe_c00294{bottom:314.546467px;}
.ybf_c00294{bottom:315.376500px;}
.yc0_c00294{bottom:315.772357px;}
.yc1_c00294{bottom:316.886715px;}
.yc2_c00294{bottom:317.570805px;}
.ya9_c00294{bottom:332.570190px;}
.yaa_c00294{bottom:332.855130px;}
.yab_c00294{bottom:333.705772px;}
.yac_c00294{bottom:334.082212px;}
.yad_c00294{bottom:334.367940px;}
.yaf_c00294{bottom:335.125095px;}
.yae_c00294{bottom:335.131080px;}
.yb0_c00294{bottom:335.266777px;}
.yb1_c00294{bottom:335.608470px;}
.yb2_c00294{bottom:336.470872px;}
.yb3_c00294{bottom:337.115317px;}
.yb4_c00294{bottom:337.486455px;}
.yb5_c00294{bottom:338.402842px;}
.yb6_c00294{bottom:339.585255px;}
.y9c_c00294{bottom:355.567357px;}
.y9d_c00294{bottom:355.817167px;}
.y9e_c00294{bottom:356.651610px;}
.y9f_c00294{bottom:357.424650px;}
.ya0_c00294{bottom:357.786472px;}
.ya1_c00294{bottom:358.360987px;}
.ya2_c00294{bottom:359.328907px;}
.ya3_c00294{bottom:359.735062px;}
.ya4_c00294{bottom:360.038287px;}
.ya5_c00294{bottom:360.525870px;}
.ya6_c00294{bottom:361.204215px;}
.ya7_c00294{bottom:362.339932px;}
.ya8_c00294{bottom:362.643090px;}
.y8e_c00294{bottom:378.222232px;}
.y8f_c00294{bottom:378.791662px;}
.y90_c00294{bottom:379.246470px;}
.y91_c00294{bottom:379.538790px;}
.y92_c00294{bottom:379.906530px;}
.y93_c00294{bottom:380.796487px;}
.y94_c00294{bottom:381.094027px;}
.y95_c00294{bottom:381.431467px;}
.y96_c00294{bottom:382.024132px;}
.y97_c00294{bottom:383.172510px;}
.y98_c00294{bottom:383.479987px;}
.y99_c00294{bottom:383.782177px;}
.y9a_c00294{bottom:384.471562px;}
.y9b_c00294{bottom:385.473577px;}
.y81_c00294{bottom:400.930837px;}
.y82_c00294{bottom:401.628382px;}
.y83_c00294{bottom:401.984377px;}
.y84_c00294{bottom:403.312440px;}
.y85_c00294{bottom:403.726822px;}
.y86_c00294{bottom:404.099197px;}
.y87_c00294{bottom:404.941372px;}
.y88_c00294{bottom:405.538815px;}
.y89_c00294{bottom:405.811222px;}
.y8a_c00294{bottom:406.244640px;}
.y8b_c00294{bottom:406.511175px;}
.y8c_c00294{bottom:407.051467px;}
.y8d_c00294{bottom:407.558325px;}
.y72_c00294{bottom:424.017075px;}
.y73_c00294{bottom:424.362502px;}
.y74_c00294{bottom:425.381490px;}
.y75_c00294{bottom:425.386057px;}
.y76_c00294{bottom:425.808015px;}
.y77_c00294{bottom:426.042705px;}
.y78_c00294{bottom:426.206700px;}
.y79_c00294{bottom:426.735457px;}
.y7a_c00294{bottom:426.920947px;}
.y7b_c00294{bottom:427.207725px;}
.y7c_c00294{bottom:427.820932px;}
.y7d_c00294{bottom:428.840370px;}
.y7e_c00294{bottom:429.384165px;}
.y7f_c00294{bottom:429.563010px;}
.y80_c00294{bottom:429.892170px;}
.y61_c00294{bottom:446.027587px;}
.y62_c00294{bottom:446.262217px;}
.y63_c00294{bottom:446.619067px;}
.y64_c00294{bottom:446.894737px;}
.y65_c00294{bottom:447.936780px;}
.y66_c00294{bottom:448.185922px;}
.y67_c00294{bottom:448.736115px;}
.y68_c00294{bottom:449.060385px;}
.y69_c00294{bottom:449.380852px;}
.y6a_c00294{bottom:450.295860px;}
.y6b_c00294{bottom:450.515257px;}
.y6c_c00294{bottom:451.227967px;}
.y6d_c00294{bottom:451.693357px;}
.y6e_c00294{bottom:452.078175px;}
.y6f_c00294{bottom:452.340907px;}
.y70_c00294{bottom:452.718480px;}
.y71_c00294{bottom:453.043537px;}
.y54_c00294{bottom:468.703620px;}
.y55_c00294{bottom:469.302165px;}
.y56_c00294{bottom:470.117160px;}
.y57_c00294{bottom:470.890755px;}
.y58_c00294{bottom:471.413205px;}
.y59_c00294{bottom:471.717112px;}
.y5a_c00294{bottom:472.697032px;}
.y5b_c00294{bottom:473.279377px;}
.y5c_c00294{bottom:473.693535px;}
.y5d_c00294{bottom:473.875875px;}
.y5e_c00294{bottom:474.405570px;}
.y5f_c00294{bottom:474.852172px;}
.y60_c00294{bottom:475.702875px;}
.y44_c00294{bottom:491.121667px;}
.y45_c00294{bottom:491.407455px;}
.y46_c00294{bottom:491.978392px;}
.y47_c00294{bottom:492.199965px;}
.y48_c00294{bottom:492.734527px;}
.y49_c00294{bottom:493.021417px;}
.y4a_c00294{bottom:493.436130px;}
.y4b_c00294{bottom:494.309445px;}
.y4c_c00294{bottom:494.529435px;}
.y4d_c00294{bottom:495.341820px;}
.y4e_c00294{bottom:495.523102px;}
.y4f_c00294{bottom:495.885975px;}
.y50_c00294{bottom:496.169505px;}
.y51_c00294{bottom:496.563127px;}
.y52_c00294{bottom:497.246767px;}
.y53_c00294{bottom:497.615767px;}
.y36_c00294{bottom:513.807090px;}
.y37_c00294{bottom:514.102897px;}
.y38_c00294{bottom:514.523085px;}
.y39_c00294{bottom:515.078902px;}
.y3a_c00294{bottom:515.969992px;}
.y3b_c00294{bottom:516.310215px;}
.y3c_c00294{bottom:516.671115px;}
.y3d_c00294{bottom:517.375972px;}
.y3e_c00294{bottom:517.727917px;}
.y3f_c00294{bottom:518.387212px;}
.y40_c00294{bottom:518.978557px;}
.y41_c00294{bottom:519.481680px;}
.y42_c00294{bottom:520.121805px;}
.y43_c00294{bottom:520.587510px;}
.y29_c00294{bottom:536.759580px;}
.y2a_c00294{bottom:537.459308px;}
.y2b_c00294{bottom:537.879105px;}
.y2c_c00294{bottom:538.819898px;}
.y2d_c00294{bottom:539.129520px;}
.y2e_c00294{bottom:539.557305px;}
.y2f_c00294{bottom:540.157755px;}
.y30_c00294{bottom:540.569160px;}
.y31_c00294{bottom:540.799912px;}
.y32_c00294{bottom:541.419757px;}
.y33_c00294{bottom:541.858057px;}
.y34_c00294{bottom:542.402257px;}
.y35_c00294{bottom:542.588197px;}
.y20_c00294{bottom:559.710952px;}
.y21_c00294{bottom:560.890777px;}
.y22_c00294{bottom:561.914940px;}
.y23_c00294{bottom:563.229930px;}
.y24_c00294{bottom:564.057435px;}
.y25_c00294{bottom:564.655448px;}
.y26_c00294{bottom:565.026225px;}
.y27_c00294{bottom:565.684650px;}
.y28_c00294{bottom:566.172937px;}
.y16_c00294{bottom:581.584500px;}
.y17_c00294{bottom:582.373440px;}
.y18_c00294{bottom:582.790545px;}
.y19_c00294{bottom:583.843252px;}
.y1a_c00294{bottom:584.862188px;}
.y1b_c00294{bottom:585.696757px;}
.y1c_c00294{bottom:586.306912px;}
.y1d_c00294{bottom:586.979617px;}
.y1e_c00294{bottom:587.971507px;}
.y1f_c00294{bottom:588.093232px;}
.y15_c00294{bottom:635.863500px;}
.yd_c00294{bottom:698.763000px;}
.ye_c00294{bottom:699.528720px;}
.yf_c00294{bottom:700.108658px;}
.y10_c00294{bottom:700.825485px;}
.y11_c00294{bottom:701.450513px;}
.y12_c00294{bottom:703.177838px;}
.y13_c00294{bottom:704.977905px;}
.y14_c00294{bottom:705.588780px;}
.ya_c00294{bottom:738.423000px;}
.yb_c00294{bottom:739.801584px;}
.yc_c00294{bottom:741.750480px;}
.y4_c00294{bottom:778.136412px;}
.y5_c00294{bottom:780.621480px;}
.y6_c00294{bottom:781.094940px;}
.y7_c00294{bottom:781.568328px;}
.y8_c00294{bottom:782.202348px;}
.y9_c00294{bottom:782.689152px;}
.y3_c00294{bottom:818.905680px;}
.y1_c00294{bottom:858.601500px;}
.y2_c00294{bottom:861.250284px;}
.h10_c00294{height:22.050000px;}
.h15_c00294{height:38.850952px;}
.h14_c00294{height:49.350000px;}
.h12_c00294{height:50.409096px;}
.h11_c00294{height:52.507586px;}
.h13_c00294{height:57.750000px;}
.hf_c00294{height:61.956969px;}
.hc_c00294{height:65.107323px;}
.hd_c00294{height:66.157441px;}
.h5_c00294{height:66.158467px;}
.hb_c00294{height:67.207560px;}
.h9_c00294{height:68.257678px;}
.h8_c00294{height:69.307796px;}
.he_c00294{height:70.357914px;}
.ha_c00294{height:72.458150px;}
.h6_c00294{height:75.608505px;}
.h7_c00294{height:107.100000px;}
.h4_c00294{height:134.417202px;}
.h3_c00294{height:135.467336px;}
.h2_c00294{height:144.918546px;}
.h1_c00294{height:1005.000000px;}
.h0_c00294{height:1005.150000px;}
.w0_c00294{width:702.540000px;}
.w1_c00294{width:702.750000px;}
.x0_c00294{left:0.000000px;}
.x39_c00294{left:66.945638px;}
.xaa_c00294{left:68.391000px;}
.x87_c00294{left:70.141500px;}
.x4b_c00294{left:72.051045px;}
.xb_c00294{left:75.847500px;}
.x9f_c00294{left:81.121500px;}
.x1_c00294{left:84.087000px;}
.x88_c00294{left:85.621500px;}
.x13_c00294{left:86.949000px;}
.x58_c00294{left:88.217265px;}
.x4_c00294{left:102.498324px;}
.x6d_c00294{left:104.683238px;}
.x2e_c00294{left:107.392095px;}
.x4c_c00294{left:111.483045px;}
.x59_c00294{left:112.846125px;}
.x77_c00294{left:116.663468px;}
.xab_c00294{left:121.263000px;}
.x66_c00294{left:122.975813px;}
.xa0_c00294{left:124.131000px;}
.xc_c00294{left:126.895500px;}
.x3a_c00294{left:128.161560px;}
.x4d_c00294{left:129.861045px;}
.x12_c00294{left:132.300000px;}
.x2f_c00294{left:135.404595px;}
.x24_c00294{left:137.342565px;}
.x14_c00294{left:139.545000px;}
.x3_c00294{left:143.717232px;}
.xac_c00294{left:148.054500px;}
.x89_c00294{left:149.208000px;}
.x67_c00294{left:151.395885px;}
.xa1_c00294{left:155.641500px;}
.x6e_c00294{left:156.811950px;}
.x5f_c00294{left:158.717040px;}
.x9_c00294{left:161.668500px;}
.xd_c00294{left:165.558000px;}
.x15_c00294{left:167.352000px;}
.x68_c00294{left:169.683615px;}
.x1d_c00294{left:171.096765px;}
.x30_c00294{left:172.459095px;}
.xa2_c00294{left:174.348000px;}
.x91_c00294{left:176.230500px;}
.x74_c00294{left:180.629273px;}
.x3b_c00294{left:182.171370px;}
.x5a_c00294{left:185.679728px;}
.x78_c00294{left:186.828353px;}
.x92_c00294{left:190.875000px;}
.x69_c00294{left:192.699278px;}
.xad_c00294{left:197.155500px;}
.x4e_c00294{left:199.330545px;}
.x3c_c00294{left:202.697685px;}
.x6f_c00294{left:205.147230px;}
.x79_c00294{left:209.779155px;}
.xe_c00294{left:213.346500px;}
.x4f_c00294{left:215.940045px;}
.x7f_c00294{left:220.074240px;}
.x93_c00294{left:221.608500px;}
.x70_c00294{left:227.768393px;}
.x31_c00294{left:231.865095px;}
.x25_c00294{left:234.550028px;}
.xa3_c00294{left:236.401500px;}
.x16_c00294{left:237.532500px;}
.x1e_c00294{left:244.275368px;}
.x75_c00294{left:246.152783px;}
.xa_c00294{left:247.830000px;}
.x2_c00294{left:249.636000px;}
.x50_c00294{left:252.619545px;}
.x8a_c00294{left:253.966500px;}
.xf_c00294{left:255.015000px;}
.x26_c00294{left:256.691865px;}
.x94_c00294{left:258.331500px;}
.x71_c00294{left:263.668853px;}
.x6a_c00294{left:266.964675px;}
.x44_c00294{left:268.044878px;}
.x7a_c00294{left:272.178788px;}
.x51_c00294{left:274.237545px;}
.x80_c00294{left:275.355075px;}
.x5_c00294{left:276.528540px;}
.x32_c00294{left:278.606595px;}
.x5b_c00294{left:282.345668px;}
.x27_c00294{left:287.211315px;}
.x8b_c00294{left:289.390500px;}
.x3d_c00294{left:294.767580px;}
.xa4_c00294{left:297.403500px;}
.x60_c00294{left:299.705040px;}
.x6_c00294{left:304.333584px;}
.x17_c00294{left:305.461500px;}
.x3e_c00294{left:310.433805px;}
.x5c_c00294{left:316.130685px;}
.x72_c00294{left:324.195953px;}
.x33_c00294{left:325.597095px;}
.x9e_c00294{left:326.700000px;}
.x9a_c00294{left:327.962173px;}
.x28_c00294{left:330.141968px;}
.x45_c00294{left:333.372878px;}
.x1f_c00294{left:338.242785px;}
.x7b_c00294{left:340.165740px;}
.x7_c00294{left:341.615484px;}
.x81_c00294{left:343.132028px;}
.x34_c00294{left:349.060095px;}
.x52_c00294{left:356.602545px;}
.x29_c00294{left:359.569418px;}
.x18_c00294{left:361.099500px;}
.x3f_c00294{left:368.493683px;}
.x8_c00294{left:370.259028px;}
.x46_c00294{left:372.195878px;}
.x95_c00294{left:374.809500px;}
.x2a_c00294{left:376.053165px;}
.x40_c00294{left:381.479385px;}
.x82_c00294{left:383.075835px;}
.x8c_c00294{left:389.821500px;}
.x35_c00294{left:393.013095px;}
.x61_c00294{left:395.679540px;}
.x20_c00294{left:397.310663px;}
.x47_c00294{left:399.806378px;}
.x19_c00294{left:401.776500px;}
.x41_c00294{left:407.371268px;}
.x7c_c00294{left:409.013670px;}
.x48_c00294{left:411.962378px;}
.x62_c00294{left:413.840040px;}
.x6b_c00294{left:416.026425px;}
.x53_c00294{left:418.743045px;}
.x2b_c00294{left:420.276818px;}
.xa5_c00294{left:421.282500px;}
.x83_c00294{left:424.713075px;}
.x42_c00294{left:427.573560px;}
.x36_c00294{left:432.436095px;}
.x96_c00294{left:433.633500px;}
.x6c_c00294{left:434.872133px;}
.x9b_c00294{left:436.024098px;}
.xa6_c00294{left:437.253000px;}
.x21_c00294{left:439.978793px;}
.x73_c00294{left:441.414698px;}
.x63_c00294{left:442.734540px;}
.x84_c00294{left:444.195990px;}
.x1a_c00294{left:446.623500px;}
.x8d_c00294{left:448.152000px;}
.x54_c00294{left:449.769045px;}
.x2c_c00294{left:451.597290px;}
.xae_c00294{left:453.171000px;}
.x43_c00294{left:455.715488px;}
.x64_c00294{left:460.503540px;}
.x22_c00294{left:466.497698px;}
.x5d_c00294{left:471.629025px;}
.xa7_c00294{left:472.900500px;}
.x55_c00294{left:475.423545px;}
.x49_c00294{left:477.048878px;}
.x97_c00294{left:479.479500px;}
.x5e_c00294{left:484.352205px;}
.x10_c00294{left:490.174500px;}
.x8e_c00294{left:491.364000px;}
.x56_c00294{left:492.939045px;}
.x65_c00294{left:496.523040px;}
.x7d_c00294{left:497.892015px;}
.x2d_c00294{left:503.774078px;}
.x85_c00294{left:505.419645px;}
.xa8_c00294{left:506.896500px;}
.x37_c00294{left:508.652595px;}
.x1b_c00294{left:512.749500px;}
.x57_c00294{left:518.110545px;}
.x1c_c00294{left:520.864500px;}
.x86_c00294{left:522.724628px;}
.x76_c00294{left:524.593620px;}
.x11_c00294{left:530.899500px;}
.x4a_c00294{left:533.762378px;}
.x9c_c00294{left:536.601307px;}
.x7e_c00294{left:538.096800px;}
.x38_c00294{left:539.699595px;}
.x8f_c00294{left:542.305500px;}
.x98_c00294{left:543.733500px;}
.x99_c00294{left:545.670000px;}
.x23_c00294{left:548.346413px;}
.xa9_c00294{left:551.751000px;}
.x9d_c00294{left:554.579623px;}
.x90_c00294{left:574.453500px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fse_c00294{font-size:19.600000pt;}
.fs13_c00294{font-size:34.534179pt;}
.fs12_c00294{font-size:43.866667pt;}
.fs10_c00294{font-size:44.808086pt;}
.fsf_c00294{font-size:46.673410pt;}
.fs11_c00294{font-size:51.333333pt;}
.fsd_c00294{font-size:55.072861pt;}
.fsa_c00294{font-size:57.873176pt;}
.fsb_c00294{font-size:58.806615pt;}
.fs3_c00294{font-size:58.807526pt;}
.fs9_c00294{font-size:59.740053pt;}
.fs7_c00294{font-size:60.673491pt;}
.fs6_c00294{font-size:61.606930pt;}
.fsc_c00294{font-size:62.540368pt;}
.fs8_c00294{font-size:64.407245pt;}
.fs4_c00294{font-size:67.207560pt;}
.fs5_c00294{font-size:95.200000pt;}
.fs2_c00294{font-size:119.481957pt;}
.fs1_c00294{font-size:120.415410pt;}
.fs0_c00294{font-size:128.816485pt;}
.y0_c00294{bottom:0.000000pt;}
.y10b_c00294{bottom:149.280000pt;}
.y10c_c00294{bottom:149.395743pt;}
.y10d_c00294{bottom:149.608981pt;}
.y10e_c00294{bottom:149.728401pt;}
.y10f_c00294{bottom:149.775684pt;}
.y110_c00294{bottom:150.081201pt;}
.y111_c00294{bottom:150.187060pt;}
.y112_c00294{bottom:150.911289pt;}
.y113_c00294{bottom:151.141468pt;}
.y114_c00294{bottom:151.564735pt;}
.y115_c00294{bottom:151.674187pt;}
.yf9_c00294{bottom:163.201333pt;}
.yfa_c00294{bottom:163.593333pt;}
.yfb_c00294{bottom:163.774667pt;}
.yfc_c00294{bottom:164.194667pt;}
.yfd_c00294{bottom:164.444000pt;}
.yfe_c00294{bottom:165.272000pt;}
.yff_c00294{bottom:165.502667pt;}
.y100_c00294{bottom:165.828000pt;}
.y101_c00294{bottom:166.086667pt;}
.y102_c00294{bottom:166.452000pt;}
.y103_c00294{bottom:166.638667pt;}
.y104_c00294{bottom:167.204000pt;}
.y105_c00294{bottom:167.738667pt;}
.y106_c00294{bottom:167.952000pt;}
.y107_c00294{bottom:168.426667pt;}
.y108_c00294{bottom:168.693333pt;}
.y109_c00294{bottom:168.880000pt;}
.y10a_c00294{bottom:169.478667pt;}
.yf8_c00294{bottom:179.838667pt;}
.yf0_c00294{bottom:181.200765pt;}
.yf1_c00294{bottom:181.388313pt;}
.yf2_c00294{bottom:181.952721pt;}
.yf3_c00294{bottom:183.216547pt;}
.yf4_c00294{bottom:183.570727pt;}
.yf5_c00294{bottom:184.345844pt;}
.yf6_c00294{bottom:185.092581pt;}
.yf7_c00294{bottom:185.428227pt;}
.ye2_c00294{bottom:194.164000pt;}
.ye3_c00294{bottom:194.605281pt;}
.ye4_c00294{bottom:194.852611pt;}
.ye5_c00294{bottom:195.371665pt;}
.ye6_c00294{bottom:195.991876pt;}
.ye7_c00294{bottom:197.118855pt;}
.ye8_c00294{bottom:197.332364pt;}
.ye9_c00294{bottom:197.959060pt;}
.yea_c00294{bottom:198.618664pt;}
.yeb_c00294{bottom:198.952532pt;}
.yec_c00294{bottom:199.726820pt;}
.yed_c00294{bottom:200.016304pt;}
.yee_c00294{bottom:200.811999pt;}
.yef_c00294{bottom:200.844704pt;}
.yd1_c00294{bottom:209.042667pt;}
.yd2_c00294{bottom:209.276587pt;}
.yd3_c00294{bottom:209.886615pt;}
.yd4_c00294{bottom:210.237449pt;}
.yd5_c00294{bottom:211.053676pt;}
.yd6_c00294{bottom:211.493636pt;}
.yd7_c00294{bottom:211.820467pt;}
.yd8_c00294{bottom:212.355763pt;}
.yd9_c00294{bottom:213.257103pt;}
.yda_c00294{bottom:213.620313pt;}
.ydb_c00294{bottom:213.873387pt;}
.ydc_c00294{bottom:214.522152pt;}
.ydd_c00294{bottom:214.754825pt;}
.yde_c00294{bottom:215.407807pt;}
.ydf_c00294{bottom:215.821564pt;}
.ye0_c00294{bottom:216.177589pt;}
.ye1_c00294{bottom:216.663381pt;}
.yd0_c00294{bottom:238.798667pt;}
.yc3_c00294{bottom:255.093620pt;}
.yc4_c00294{bottom:255.678533pt;}
.yc5_c00294{bottom:256.329293pt;}
.yc6_c00294{bottom:256.591560pt;}
.yc7_c00294{bottom:257.154827pt;}
.yc8_c00294{bottom:257.990593pt;}
.yc9_c00294{bottom:258.451940pt;}
.yca_c00294{bottom:259.015647pt;}
.ycb_c00294{bottom:259.618913pt;}
.ycc_c00294{bottom:260.248760pt;}
.ycd_c00294{bottom:260.543207pt;}
.yce_c00294{bottom:261.468880pt;}
.ycf_c00294{bottom:261.730287pt;}
.yb7_c00294{bottom:275.494040pt;}
.yb8_c00294{bottom:275.915213pt;}
.yb9_c00294{bottom:276.976107pt;}
.yba_c00294{bottom:277.323460pt;}
.ybb_c00294{bottom:277.881793pt;}
.ybc_c00294{bottom:278.266147pt;}
.ybd_c00294{bottom:279.294000pt;}
.ybe_c00294{bottom:279.596860pt;}
.ybf_c00294{bottom:280.334667pt;}
.yc0_c00294{bottom:280.686540pt;}
.yc1_c00294{bottom:281.677080pt;}
.yc2_c00294{bottom:282.285160pt;}
.ya9_c00294{bottom:295.617947pt;}
.yaa_c00294{bottom:295.871227pt;}
.yab_c00294{bottom:296.627353pt;}
.yac_c00294{bottom:296.961967pt;}
.yad_c00294{bottom:297.215947pt;}
.yaf_c00294{bottom:297.888973pt;}
.yae_c00294{bottom:297.894293pt;}
.yb0_c00294{bottom:298.014913pt;}
.yb1_c00294{bottom:298.318640pt;}
.yb2_c00294{bottom:299.085220pt;}
.yb3_c00294{bottom:299.658060pt;}
.yb4_c00294{bottom:299.987960pt;}
.yb5_c00294{bottom:300.802527pt;}
.yb6_c00294{bottom:301.853560pt;}
.y9c_c00294{bottom:316.059873pt;}
.y9d_c00294{bottom:316.281927pt;}
.y9e_c00294{bottom:317.023653pt;}
.y9f_c00294{bottom:317.710800pt;}
.ya0_c00294{bottom:318.032420pt;}
.ya1_c00294{bottom:318.543100pt;}
.ya2_c00294{bottom:319.403473pt;}
.ya3_c00294{bottom:319.764500pt;}
.ya4_c00294{bottom:320.034033pt;}
.ya5_c00294{bottom:320.467440pt;}
.ya6_c00294{bottom:321.070413pt;}
.ya7_c00294{bottom:322.079940pt;}
.ya8_c00294{bottom:322.349413pt;}
.y8e_c00294{bottom:336.197540pt;}
.y8f_c00294{bottom:336.703700pt;}
.y90_c00294{bottom:337.107973pt;}
.y91_c00294{bottom:337.367813pt;}
.y92_c00294{bottom:337.694693pt;}
.y93_c00294{bottom:338.485767pt;}
.y94_c00294{bottom:338.750247pt;}
.y95_c00294{bottom:339.050193pt;}
.y96_c00294{bottom:339.577007pt;}
.y97_c00294{bottom:340.597787pt;}
.y98_c00294{bottom:340.871100pt;}
.y99_c00294{bottom:341.139713pt;}
.y9a_c00294{bottom:341.752500pt;}
.y9b_c00294{bottom:342.643180pt;}
.y81_c00294{bottom:356.382967pt;}
.y82_c00294{bottom:357.003007pt;}
.y83_c00294{bottom:357.319447pt;}
.y84_c00294{bottom:358.499947pt;}
.y85_c00294{bottom:358.868287pt;}
.y86_c00294{bottom:359.199287pt;}
.y87_c00294{bottom:359.947887pt;}
.y88_c00294{bottom:360.478947pt;}
.y89_c00294{bottom:360.721087pt;}
.y8a_c00294{bottom:361.106347pt;}
.y8b_c00294{bottom:361.343267pt;}
.y8c_c00294{bottom:361.823527pt;}
.y8d_c00294{bottom:362.274067pt;}
.y72_c00294{bottom:376.904067pt;}
.y73_c00294{bottom:377.211113pt;}
.y74_c00294{bottom:378.116880pt;}
.y75_c00294{bottom:378.120940pt;}
.y76_c00294{bottom:378.496013pt;}
.y77_c00294{bottom:378.704627pt;}
.y78_c00294{bottom:378.850400pt;}
.y79_c00294{bottom:379.320407pt;}
.y7a_c00294{bottom:379.485287pt;}
.y7b_c00294{bottom:379.740200pt;}
.y7c_c00294{bottom:380.285273pt;}
.y7d_c00294{bottom:381.191440pt;}
.y7e_c00294{bottom:381.674813pt;}
.y7f_c00294{bottom:381.833787pt;}
.y80_c00294{bottom:382.126373pt;}
.y61_c00294{bottom:396.468967pt;}
.y62_c00294{bottom:396.677527pt;}
.y63_c00294{bottom:396.994727pt;}
.y64_c00294{bottom:397.239767pt;}
.y65_c00294{bottom:398.166027pt;}
.y66_c00294{bottom:398.387487pt;}
.y67_c00294{bottom:398.876547pt;}
.y68_c00294{bottom:399.164787pt;}
.y69_c00294{bottom:399.449647pt;}
.y6a_c00294{bottom:400.262987pt;}
.y6b_c00294{bottom:400.458007pt;}
.y6c_c00294{bottom:401.091527pt;}
.y6d_c00294{bottom:401.505207pt;}
.y6e_c00294{bottom:401.847267pt;}
.y6f_c00294{bottom:402.080807pt;}
.y70_c00294{bottom:402.416427pt;}
.y71_c00294{bottom:402.705367pt;}
.y54_c00294{bottom:416.625440pt;}
.y55_c00294{bottom:417.157480pt;}
.y56_c00294{bottom:417.881920pt;}
.y57_c00294{bottom:418.569560pt;}
.y58_c00294{bottom:419.033960pt;}
.y59_c00294{bottom:419.304100pt;}
.y5a_c00294{bottom:420.175140pt;}
.y5b_c00294{bottom:420.692780pt;}
.y5c_c00294{bottom:421.060920pt;}
.y5d_c00294{bottom:421.223000pt;}
.y5e_c00294{bottom:421.693840pt;}
.y5f_c00294{bottom:422.090820pt;}
.y60_c00294{bottom:422.847000pt;}
.y44_c00294{bottom:436.552593pt;}
.y45_c00294{bottom:436.806627pt;}
.y46_c00294{bottom:437.314127pt;}
.y47_c00294{bottom:437.511080pt;}
.y48_c00294{bottom:437.986247pt;}
.y49_c00294{bottom:438.241260pt;}
.y4a_c00294{bottom:438.609893pt;}
.y4b_c00294{bottom:439.386173pt;}
.y4c_c00294{bottom:439.581720pt;}
.y4d_c00294{bottom:440.303840pt;}
.y4e_c00294{bottom:440.464980pt;}
.y4f_c00294{bottom:440.787533pt;}
.y50_c00294{bottom:441.039560pt;}
.y51_c00294{bottom:441.389447pt;}
.y52_c00294{bottom:441.997127pt;}
.y53_c00294{bottom:442.325127pt;}
.y36_c00294{bottom:456.717413pt;}
.y37_c00294{bottom:456.980353pt;}
.y38_c00294{bottom:457.353853pt;}
.y39_c00294{bottom:457.847913pt;}
.y3a_c00294{bottom:458.639993pt;}
.y3b_c00294{bottom:458.942413pt;}
.y3c_c00294{bottom:459.263213pt;}
.y3d_c00294{bottom:459.889753pt;}
.y3e_c00294{bottom:460.202593pt;}
.y3f_c00294{bottom:460.788633pt;}
.y40_c00294{bottom:461.314273pt;}
.y41_c00294{bottom:461.761493pt;}
.y42_c00294{bottom:462.330493pt;}
.y43_c00294{bottom:462.744453pt;}
.y29_c00294{bottom:477.119627pt;}
.y2a_c00294{bottom:477.741607pt;}
.y2b_c00294{bottom:478.114760pt;}
.y2c_c00294{bottom:478.951020pt;}
.y2d_c00294{bottom:479.226240pt;}
.y2e_c00294{bottom:479.606493pt;}
.y2f_c00294{bottom:480.140227pt;}
.y30_c00294{bottom:480.505920pt;}
.y31_c00294{bottom:480.711033pt;}
.y32_c00294{bottom:481.262007pt;}
.y33_c00294{bottom:481.651607pt;}
.y34_c00294{bottom:482.135340pt;}
.y35_c00294{bottom:482.300620pt;}
.y20_c00294{bottom:497.520847pt;}
.y21_c00294{bottom:498.569580pt;}
.y22_c00294{bottom:499.479947pt;}
.y23_c00294{bottom:500.648827pt;}
.y24_c00294{bottom:501.384387pt;}
.y25_c00294{bottom:501.915953pt;}
.y26_c00294{bottom:502.245533pt;}
.y27_c00294{bottom:502.830800pt;}
.y28_c00294{bottom:503.264833pt;}
.y16_c00294{bottom:516.964000pt;}
.y17_c00294{bottom:517.665280pt;}
.y18_c00294{bottom:518.036040pt;}
.y19_c00294{bottom:518.971780pt;}
.y1a_c00294{bottom:519.877500pt;}
.y1b_c00294{bottom:520.619340pt;}
.y1c_c00294{bottom:521.161700pt;}
.y1d_c00294{bottom:521.759660pt;}
.y1e_c00294{bottom:522.641340pt;}
.y1f_c00294{bottom:522.749540pt;}
.y15_c00294{bottom:565.212000pt;}
.yd_c00294{bottom:621.122667pt;}
.ye_c00294{bottom:621.803307pt;}
.yf_c00294{bottom:622.318807pt;}
.y10_c00294{bottom:622.955987pt;}
.y11_c00294{bottom:623.511567pt;}
.y12_c00294{bottom:625.046967pt;}
.y13_c00294{bottom:626.647027pt;}
.y14_c00294{bottom:627.190027pt;}
.ya_c00294{bottom:656.376000pt;}
.yb_c00294{bottom:657.601408pt;}
.yc_c00294{bottom:659.333760pt;}
.y4_c00294{bottom:691.676811pt;}
.y5_c00294{bottom:693.885760pt;}
.y6_c00294{bottom:694.306613pt;}
.y7_c00294{bottom:694.727403pt;}
.y8_c00294{bottom:695.290976pt;}
.y9_c00294{bottom:695.723691pt;}
.y3_c00294{bottom:727.916160pt;}
.y1_c00294{bottom:763.201333pt;}
.y2_c00294{bottom:765.555808pt;}
.h10_c00294{height:19.600000pt;}
.h15_c00294{height:34.534179pt;}
.h14_c00294{height:43.866667pt;}
.h12_c00294{height:44.808086pt;}
.h11_c00294{height:46.673410pt;}
.h13_c00294{height:51.333333pt;}
.hf_c00294{height:55.072861pt;}
.hc_c00294{height:57.873176pt;}
.hd_c00294{height:58.806615pt;}
.h5_c00294{height:58.807526pt;}
.hb_c00294{height:59.740053pt;}
.h9_c00294{height:60.673491pt;}
.h8_c00294{height:61.606930pt;}
.he_c00294{height:62.540368pt;}
.ha_c00294{height:64.407245pt;}
.h6_c00294{height:67.207560pt;}
.h7_c00294{height:95.200000pt;}
.h4_c00294{height:119.481957pt;}
.h3_c00294{height:120.415410pt;}
.h2_c00294{height:128.816485pt;}
.h1_c00294{height:893.333333pt;}
.h0_c00294{height:893.466667pt;}
.w0_c00294{width:624.480000pt;}
.w1_c00294{width:624.666667pt;}
.x0_c00294{left:0.000000pt;}
.x39_c00294{left:59.507233pt;}
.xaa_c00294{left:60.792000pt;}
.x87_c00294{left:62.348000pt;}
.x4b_c00294{left:64.045373pt;}
.xb_c00294{left:67.420000pt;}
.x9f_c00294{left:72.108000pt;}
.x1_c00294{left:74.744000pt;}
.x88_c00294{left:76.108000pt;}
.x13_c00294{left:77.288000pt;}
.x58_c00294{left:78.415347pt;}
.x4_c00294{left:91.109621pt;}
.x6d_c00294{left:93.051767pt;}
.x2e_c00294{left:95.459640pt;}
.x4c_c00294{left:99.096040pt;}
.x59_c00294{left:100.307667pt;}
.x77_c00294{left:103.700860pt;}
.xab_c00294{left:107.789333pt;}
.x66_c00294{left:109.311833pt;}
.xa0_c00294{left:110.338667pt;}
.xc_c00294{left:112.796000pt;}
.x3a_c00294{left:113.921387pt;}
.x4d_c00294{left:115.432040pt;}
.x12_c00294{left:117.600000pt;}
.x2f_c00294{left:120.359640pt;}
.x24_c00294{left:122.082280pt;}
.x14_c00294{left:124.040000pt;}
.x3_c00294{left:127.748651pt;}
.xac_c00294{left:131.604000pt;}
.x89_c00294{left:132.629333pt;}
.x67_c00294{left:134.574120pt;}
.xa1_c00294{left:138.348000pt;}
.x6e_c00294{left:139.388400pt;}
.x5f_c00294{left:141.081813pt;}
.x9_c00294{left:143.705333pt;}
.xd_c00294{left:147.162667pt;}
.x15_c00294{left:148.757333pt;}
.x68_c00294{left:150.829880pt;}
.x1d_c00294{left:152.086013pt;}
.x30_c00294{left:153.296973pt;}
.xa2_c00294{left:154.976000pt;}
.x91_c00294{left:156.649333pt;}
.x74_c00294{left:160.559353pt;}
.x3b_c00294{left:161.930107pt;}
.x5a_c00294{left:165.048647pt;}
.x78_c00294{left:166.069647pt;}
.x92_c00294{left:169.666667pt;}
.x69_c00294{left:171.288247pt;}
.xad_c00294{left:175.249333pt;}
.x4e_c00294{left:177.182707pt;}
.x3c_c00294{left:180.175720pt;}
.x6f_c00294{left:182.353093pt;}
.x79_c00294{left:186.470360pt;}
.xe_c00294{left:189.641333pt;}
.x4f_c00294{left:191.946707pt;}
.x7f_c00294{left:195.621547pt;}
.x93_c00294{left:196.985333pt;}
.x70_c00294{left:202.460793pt;}
.x31_c00294{left:206.102307pt;}
.x25_c00294{left:208.488913pt;}
.xa3_c00294{left:210.134667pt;}
.x16_c00294{left:211.140000pt;}
.x1e_c00294{left:217.133660pt;}
.x75_c00294{left:218.802473pt;}
.xa_c00294{left:220.293333pt;}
.x2_c00294{left:221.898667pt;}
.x50_c00294{left:224.550707pt;}
.x8a_c00294{left:225.748000pt;}
.xf_c00294{left:226.680000pt;}
.x26_c00294{left:228.170547pt;}
.x94_c00294{left:229.628000pt;}
.x71_c00294{left:234.372313pt;}
.x6a_c00294{left:237.301933pt;}
.x44_c00294{left:238.262113pt;}
.x7a_c00294{left:241.936700pt;}
.x51_c00294{left:243.766707pt;}
.x80_c00294{left:244.760067pt;}
.x5_c00294{left:245.803147pt;}
.x32_c00294{left:247.650307pt;}
.x5b_c00294{left:250.973927pt;}
.x27_c00294{left:255.298947pt;}
.x8b_c00294{left:257.236000pt;}
.x3d_c00294{left:262.015627pt;}
.xa4_c00294{left:264.358667pt;}
.x60_c00294{left:266.404480pt;}
.x6_c00294{left:270.518741pt;}
.x17_c00294{left:271.521333pt;}
.x3e_c00294{left:275.941160pt;}
.x5c_c00294{left:281.005053pt;}
.x72_c00294{left:288.174180pt;}
.x33_c00294{left:289.419640pt;}
.x9e_c00294{left:290.400000pt;}
.x9a_c00294{left:291.521932pt;}
.x28_c00294{left:293.459527pt;}
.x45_c00294{left:296.331447pt;}
.x1f_c00294{left:300.660253pt;}
.x7b_c00294{left:302.369547pt;}
.x7_c00294{left:303.658208pt;}
.x81_c00294{left:305.006247pt;}
.x34_c00294{left:310.275640pt;}
.x52_c00294{left:316.980040pt;}
.x29_c00294{left:319.617260pt;}
.x18_c00294{left:320.977333pt;}
.x3f_c00294{left:327.549940pt;}
.x8_c00294{left:329.119136pt;}
.x46_c00294{left:330.840780pt;}
.x95_c00294{left:333.164000pt;}
.x2a_c00294{left:334.269480pt;}
.x40_c00294{left:339.092787pt;}
.x82_c00294{left:340.511853pt;}
.x8c_c00294{left:346.508000pt;}
.x35_c00294{left:349.344973pt;}
.x61_c00294{left:351.715147pt;}
.x20_c00294{left:353.165033pt;}
.x47_c00294{left:355.383447pt;}
.x19_c00294{left:357.134667pt;}
.x41_c00294{left:362.107793pt;}
.x7c_c00294{left:363.567707pt;}
.x48_c00294{left:366.188780pt;}
.x62_c00294{left:367.857813pt;}
.x6b_c00294{left:369.801267pt;}
.x53_c00294{left:372.216040pt;}
.x2b_c00294{left:373.579393pt;}
.xa5_c00294{left:374.473333pt;}
.x83_c00294{left:377.522733pt;}
.x42_c00294{left:380.065387pt;}
.x36_c00294{left:384.387640pt;}
.x96_c00294{left:385.452000pt;}
.x6c_c00294{left:386.553007pt;}
.x9b_c00294{left:387.576976pt;}
.xa6_c00294{left:388.669333pt;}
.x21_c00294{left:391.092260pt;}
.x73_c00294{left:392.368620pt;}
.x63_c00294{left:393.541813pt;}
.x84_c00294{left:394.840880pt;}
.x1a_c00294{left:396.998667pt;}
.x8d_c00294{left:398.357333pt;}
.x54_c00294{left:399.794707pt;}
.x2c_c00294{left:401.419813pt;}
.xae_c00294{left:402.818667pt;}
.x43_c00294{left:405.080433pt;}
.x64_c00294{left:409.336480pt;}
.x22_c00294{left:414.664620pt;}
.x5d_c00294{left:419.225800pt;}
.xa7_c00294{left:420.356000pt;}
.x55_c00294{left:422.598707pt;}
.x49_c00294{left:424.043447pt;}
.x97_c00294{left:426.204000pt;}
.x5e_c00294{left:430.535293pt;}
.x10_c00294{left:435.710667pt;}
.x8e_c00294{left:436.768000pt;}
.x56_c00294{left:438.168040pt;}
.x65_c00294{left:441.353813pt;}
.x7d_c00294{left:442.570680pt;}
.x2d_c00294{left:447.799180pt;}
.x85_c00294{left:449.261907pt;}
.xa8_c00294{left:450.574667pt;}
.x37_c00294{left:452.135640pt;}
.x1b_c00294{left:455.777333pt;}
.x57_c00294{left:460.542707pt;}
.x1c_c00294{left:462.990667pt;}
.x86_c00294{left:464.644113pt;}
.x76_c00294{left:466.305440pt;}
.x11_c00294{left:471.910667pt;}
.x4a_c00294{left:474.455447pt;}
.x9c_c00294{left:476.978940pt;}
.x7e_c00294{left:478.308267pt;}
.x38_c00294{left:479.732973pt;}
.x8f_c00294{left:482.049333pt;}
.x98_c00294{left:483.318667pt;}
.x99_c00294{left:485.040000pt;}
.x23_c00294{left:487.419033pt;}
.xa9_c00294{left:490.445333pt;}
.x9d_c00294{left:492.959665pt;}
.x90_c00294{left:510.625333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mfe_c00295{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);}
.m91_c00295{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);}
.m126_c00295{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);}
.mfd_c00295{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);}
.m137_c00295{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);}
.m15a_c00295{transform:matrix(0.018650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018650,0.000000,0.000000,0.250000,0,0);}
.m125_c00295{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021710,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.050440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050440,0.000000,0.000000,0.250000,0,0);}
.m65_c00295{transform:matrix(0.065485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065485,0.000000,0.000000,0.250000,0,0);}
.m15f_c00295{transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071320,0.000000,0.000000,0.250000,0,0);}
.m141_c00295{transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);}
.m112_c00295{transform:matrix(0.126910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126910,0.000000,0.000000,0.250000,0,0);}
.m114_c00295{transform:matrix(0.130345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130345,0.000000,0.000000,0.250000,0,0);}
.m75_c00295{transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00295{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m8a_c00295{transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);}
.m131_c00295{transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);}
.m154_c00295{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);}
.m14a_c00295{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);}
.m14_c00295{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);}
.m9a_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);}
.m11f_c00295{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);}
.m14f_c00295{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);}
.m18_c00295{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);}
.m3c_c00295{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{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);}
.m8b_c00295{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);}
.m89_c00295{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);}
.m86_c00295{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);}
.m83_c00295{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m82_c00295{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);}
.m11e_c00295{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);}
.m27_c00295{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);}
.m12f_c00295{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);}
.m158_c00295{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);}
.m3e_c00295{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);}
.m118_c00295{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);}
.m55_c00295{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);}
.m7d_c00295{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);}
.m29_c00295{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);}
.mc0_c00295{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);}
.m5c_c00295{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);}
.mee_c00295{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);}
.mb6_c00295{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);}
.m63_c00295{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);}
.m11a_c00295{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);}
.mf1_c00295{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);}
.m94_c00295{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);}
.m21_c00295{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);}
.mad_c00295{transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);}
.m41_c00295{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);}
.md8_c00295{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);}
.m1f_c00295{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);}
.m5f_c00295{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_c00295{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);}
.mbd_c00295{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);}
.m99_c00295{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);}
.m1c_c00295{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);}
.mea_c00295{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);}
.m5e_c00295{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);}
.m5a_c00295{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);}
.m6e_c00295{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);}
.m8d_c00295{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);}
.meb_c00295{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);}
.mb8_c00295{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);}
.m13b_c00295{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);}
.me9_c00295{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);}
.m2c_c00295{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);}
.m88_c00295{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);}
.m11_c00295{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);}
.mb0_c00295{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);}
.mb_c00295{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);}
.m12a_c00295{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);}
.m7f_c00295{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.ma1_c00295{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);}
.m2d_c00295{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);}
.m46_c00295{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);}
.m3f_c00295{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);}
.m2b_c00295{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);}
.m87_c00295{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);}
.m1b_c00295{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);}
.m31_c00295{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);}
.m16_c00295{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);}
.m49_c00295{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);}
.mec_c00295{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);}
.mfb_c00295{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);}
.mb5_c00295{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);}
.m53_c00295{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);}
.mae_c00295{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);}
.m1a_c00295{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);}
.m61_c00295{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);}
.m9_c00295{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);}
.m9f_c00295{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);}
.m108_c00295{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);}
.m102_c00295{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);}
.mb2_c00295{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);}
.m23_c00295{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);}
.mf3_c00295{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);}
.m6b_c00295{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);}
.mbf_c00295{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);}
.m19_c00295{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);}
.m34_c00295{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);}
.m95_c00295{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);}
.m15_c00295{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);}
.m6d_c00295{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);}
.m5b_c00295{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);}
.mf5_c00295{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);}
.m71_c00295{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);}
.m35_c00295{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);}
.md9_c00295{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);}
.m12e_c00295{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);}
.mc9_c00295{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);}
.m9b_c00295{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);}
.m20_c00295{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);}
.m79_c00295{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);}
.m116_c00295{transform:matrix(0.195445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195445,0.000000,0.000000,0.250000,0,0);}
.mf6_c00295{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);}
.m12_c00295{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);}
.me8_c00295{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);}
.m110_c00295{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);}
.mc6_c00295{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);}
.m11d_c00295{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);}
.mf7_c00295{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);}
.m2a_c00295{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);}
.mff_c00295{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);}
.m28_c00295{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);}
.m7a_c00295{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);}
.m81_c00295{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);}
.m153_c00295{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);}
.m12c_c00295{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_c00295{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);}
.m37_c00295{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);}
.mdf_c00295{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);}
.ma3_c00295{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);}
.m140_c00295{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);}
.mb4_c00295{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);}
.m111_c00295{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);}
.mac_c00295{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);}
.m33_c00295{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);}
.m103_c00295{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);}
.m1e_c00295{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);}
.m67_c00295{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);}
.m6a_c00295{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);}
.m2f_c00295{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);}
.m101_c00295{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);}
.m70_c00295{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);}
.m123_c00295{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);}
.m25_c00295{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);}
.m130_c00295{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);}
.m136_c00295{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);}
.m30_c00295{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);}
.m40_c00295{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);}
.m3a_c00295{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_c00295{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);}
.m7c_c00295{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);}
.mfc_c00295{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m84_c00295{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);}
.mc5_c00295{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);}
.m109_c00295{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);}
.m9d_c00295{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m151_c00295{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);}
.mce_c00295{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);}
.m17_c00295{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);}
.mde_c00295{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);}
.m143_c00295{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);}
.m38_c00295{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);}
.m78_c00295{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);}
.mc4_c00295{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);}
.m12d_c00295{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);}
.m58_c00295{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);}
.m74_c00295{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);}
.me3_c00295{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);}
.m5d_c00295{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);}
.mef_c00295{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);}
.m47_c00295{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);}
.m4e_c00295{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);}
.m4d_c00295{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);}
.md7_c00295{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);}
.m5_c00295{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);}
.m72_c00295{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);}
.md6_c00295{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);}
.m60_c00295{transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);}
.m138_c00295{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);}
.mdd_c00295{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);}
.m68_c00295{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);}
.m90_c00295{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);}
.mdc_c00295{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);}
.m7_c00295{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);}
.m57_c00295{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);}
.m42_c00295{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);}
.m32_c00295{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);}
.mb9_c00295{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);}
.m105_c00295{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);}
.m146_c00295{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);}
.m69_c00295{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);}
.m77_c00295{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);}
.m10d_c00295{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);}
.m24_c00295{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);}
.me6_c00295{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);}
.m59_c00295{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);}
.m10f_c00295{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);}
.m4c_c00295{transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);}
.m155_c00295{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);}
.mab_c00295{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);}
.m50_c00295{transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{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);}
.mbe_c00295{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);}
.m85_c00295{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);}
.m97_c00295{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);}
.m56_c00295{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);}
.m127_c00295{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);}
.m6c_c00295{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);}
.mf4_c00295{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);}
.m107_c00295{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);}
.mf8_c00295{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);}
.ma9_c00295{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);}
.mb1_c00295{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);}
.m2e_c00295{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);}
.mb3_c00295{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);}
.m54_c00295{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);}
.m64_c00295{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);}
.m8f_c00295{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);}
.m11b_c00295{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);}
.m51_c00295{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);}
.md2_c00295{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);}
.maa_c00295{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);}
.mcd_c00295{transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228330,0.000000,0.000000,0.250000,0,0);}
.ma2_c00295{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);}
.ma8_c00295{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);}
.m39_c00295{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);}
.m4f_c00295{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);}
.mf_c00295{transform:matrix(0.228934,-0.003434,0.003750,0.249972,0,0);-ms-transform:matrix(0.228934,-0.003434,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228934,-0.003434,0.003750,0.249972,0,0);}
.md4_c00295{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);}
.mda_c00295{transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);}
.m11c_c00295{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);}
.m3b_c00295{transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00295{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);}
.mc7_c00295{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);}
.m148_c00295{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);}
.m100_c00295{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);}
.mdb_c00295{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);}
.me2_c00295{transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{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);}
.me7_c00295{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);}
.m13d_c00295{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);}
.m132_c00295{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);}
.m156_c00295{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);}
.m113_c00295{transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);}
.m15e_c00295{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);}
.md3_c00295{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);}
.m76_c00295{transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239845,0.000000,0.000000,0.250000,0,0);}
.m8e_c00295{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);}
.m8c_c00295{transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);}
.m52_c00295{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);}
.m96_c00295{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);}
.mc8_c00295{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);}
.m115_c00295{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);}
.ma7_c00295{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);}
.m152_c00295{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);}
.ma0_c00295{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);}
.m66_c00295{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);}
.mc1_c00295{transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);}
.mcc_c00295{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);}
.m128_c00295{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.m157_c00295{transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00295{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);}
.m80_c00295{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);}
.mf0_c00295{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);}
.m44_c00295{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);}
.m73_c00295{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);}
.m14e_c00295{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m15c_c00295{transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);}
.m104_c00295{transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);}
.md5_c00295{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);}
.m121_c00295{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);}
.m13f_c00295{transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260705,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{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);}
.m10a_c00295{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);}
.m144_c00295{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.m10b_c00295{transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);}
.m7b_c00295{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.265915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265915,0.000000,0.000000,0.250000,0,0);}
.mb7_c00295{transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);}
.m9e_c00295{transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268840,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269265,0.000000,0.000000,0.250000,0,0);}
.m93_c00295{transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);}
.md1_c00295{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);}
.m10e_c00295{transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);}
.m36_c00295{transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);}
.m62_c00295{transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279790,0.000000,0.000000,0.250000,0,0);}
.me4_c00295{transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);}
.md0_c00295{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);}
.m149_c00295{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.me1_c00295{transform:matrix(0.283155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283155,0.000000,0.000000,0.250000,0,0);}
.m13e_c00295{transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);}
.mcb_c00295{transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);}
.m129_c00295{transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286620,0.000000,0.000000,0.250000,0,0);}
.m14c_c00295{transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);}
.ma5_c00295{transform:matrix(0.287270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287270,0.000000,0.000000,0.250000,0,0);}
.ma6_c00295{transform:matrix(0.289785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289785,0.000000,0.000000,0.250000,0,0);}
.mf9_c00295{transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00295{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m43_c00295{transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295665,0.000000,0.000000,0.250000,0,0);}
.m106_c00295{transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299965,0.000000,0.000000,0.250000,0,0);}
.mcf_c00295{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);}
.mc3_c00295{transform:matrix(0.303525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303525,0.000000,0.000000,0.250000,0,0);}
.mfa_c00295{transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306260,0.000000,0.000000,0.250000,0,0);}
.m12b_c00295{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);}
.m6_c00295{transform:matrix(0.311355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311355,0.000000,0.000000,0.250000,0,0);}
.m122_c00295{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);}
.mca_c00295{transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);}
.m13c_c00295{transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313490,0.000000,0.000000,0.250000,0,0);}
.m124_c00295{transform:matrix(0.314200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314200,0.000000,0.000000,0.250000,0,0);}
.m150_c00295{transform:matrix(0.315680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315680,0.000000,0.000000,0.250000,0,0);}
.ma4_c00295{transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316930,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.316984,-0.004755,0.003750,0.249972,0,0);-ms-transform:matrix(0.316984,-0.004755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.316984,-0.004755,0.003750,0.249972,0,0);}
.maf_c00295{transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317595,0.000000,0.000000,0.250000,0,0);}
.me0_c00295{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);}
.m92_c00295{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00295{transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);}
.mba_c00295{transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332555,0.000000,0.000000,0.250000,0,0);}
.m120_c00295{transform:matrix(0.336690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336690,0.000000,0.000000,0.250000,0,0);}
.m10c_c00295{transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340275,0.000000,0.000000,0.250000,0,0);}
.m134_c00295{transform:matrix(0.343695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343695,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.351925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351925,0.000000,0.000000,0.250000,0,0);}
.mc2_c00295{transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);}
.m14d_c00295{transform:matrix(0.363730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363730,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.379367,-0.005691,0.003750,0.249972,0,0);-ms-transform:matrix(0.379367,-0.005691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.379367,-0.005691,0.003750,0.249972,0,0);}
.m142_c00295{transform:matrix(0.384785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384785,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.389300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389300,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.399340,-0.005990,0.003750,0.249972,0,0);-ms-transform:matrix(0.399340,-0.005990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.399340,-0.005990,0.003750,0.249972,0,0);}
.m13a_c00295{transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406235,0.000000,0.000000,0.250000,0,0);}
.me5_c00295{transform:matrix(0.421050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421050,0.000000,0.000000,0.250000,0,0);}
.m117_c00295{transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);}
.m119_c00295{transform:matrix(0.435990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435990,0.000000,0.000000,0.250000,0,0);}
.med_c00295{transform:matrix(0.443230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443230,0.000000,0.000000,0.250000,0,0);}
.m15d_c00295{transform:matrix(0.450760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450760,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.460005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460005,0.000000,0.000000,0.250000,0,0);}
.m139_c00295{transform:matrix(0.496420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496420,0.000000,0.000000,0.250000,0,0);}
.m14b_c00295{transform:matrix(0.499230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499230,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.506508,-0.007598,0.003750,0.249972,0,0);-ms-transform:matrix(0.506508,-0.007598,0.003750,0.249972,0,0);-webkit-transform:matrix(0.506508,-0.007598,0.003750,0.249972,0,0);}
.m159_c00295{transform:matrix(0.523375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523375,0.000000,0.000000,0.250000,0,0);}
.m133_c00295{transform:matrix(0.524975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524975,0.000000,0.000000,0.250000,0,0);}
.m15b_c00295{transform:matrix(0.560215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560215,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.629470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629470,0.000000,0.000000,0.250000,0,0);}
.m145_c00295{transform:matrix(0.676010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676010,0.000000,0.000000,0.250000,0,0);}
.m147_c00295{transform:matrix(0.699045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699045,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.733320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733320,0.000000,0.000000,0.250000,0,0);}
.m135_c00295{transform:matrix(0.797820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797820,0.000000,0.000000,0.250000,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;}
.fs15_c00295{font-size:13.650000px;}
.fs14_c00295{font-size:23.100000px;}
.fs0_c00295{font-size:24.150000px;}
.fs13_c00295{font-size:27.300000px;}
.fs12_c00295{font-size:45.150000px;}
.fsf_c00295{font-size:48.300000px;}
.fs1_c00295{font-size:49.350000px;}
.fsd_c00295{font-size:50.400000px;}
.fs10_c00295{font-size:51.450000px;}
.fse_c00295{font-size:52.500000px;}
.fs11_c00295{font-size:53.550000px;}
.fs6_c00295{font-size:60.900000px;}
.fsc_c00295{font-size:61.950000px;}
.fs5_c00295{font-size:63.000000px;}
.fs9_c00295{font-size:64.050000px;}
.fs8_c00295{font-size:68.250000px;}
.fsa_c00295{font-size:69.300000px;}
.fs3_c00295{font-size:70.350000px;}
.fs4_c00295{font-size:71.400000px;}
.fsb_c00295{font-size:72.450000px;}
.fs7_c00295{font-size:73.500000px;}
.fs2_c00295{font-size:117.613229px;}
.y0_c00295{bottom:0.000000px;}
.y52_c00295{bottom:102.060000px;}
.y4f_c00295{bottom:110.160000px;}
.y51_c00295{bottom:114.366000px;}
.y50_c00295{bottom:120.000000px;}
.y4e_c00295{bottom:168.958500px;}
.y4d_c00295{bottom:183.612000px;}
.y4c_c00295{bottom:183.966000px;}
.y4b_c00295{bottom:184.278000px;}
.y4a_c00295{bottom:184.485000px;}
.y49_c00295{bottom:184.552500px;}
.y48_c00295{bottom:184.809000px;}
.y47_c00295{bottom:185.124000px;}
.y46_c00295{bottom:185.313000px;}
.y45_c00295{bottom:185.664000px;}
.y44_c00295{bottom:185.973000px;}
.y43_c00295{bottom:186.133500px;}
.y42_c00295{bottom:186.436500px;}
.y41_c00295{bottom:186.949500px;}
.y40_c00295{bottom:187.066500px;}
.y3f_c00295{bottom:187.668000px;}
.y3e_c00295{bottom:187.920000px;}
.y3d_c00295{bottom:200.961000px;}
.y3c_c00295{bottom:201.678000px;}
.y3b_c00295{bottom:201.771000px;}
.y3a_c00295{bottom:201.831000px;}
.y39_c00295{bottom:202.416000px;}
.y38_c00295{bottom:202.629000px;}
.y37_c00295{bottom:202.881000px;}
.y36_c00295{bottom:203.337000px;}
.y35_c00295{bottom:204.390000px;}
.y34_c00295{bottom:220.335000px;}
.y33_c00295{bottom:220.996500px;}
.y32_c00295{bottom:221.886000px;}
.y31_c00295{bottom:222.324000px;}
.y30_c00295{bottom:222.439500px;}
.y2f_c00295{bottom:222.750000px;}
.y2e_c00295{bottom:222.840000px;}
.y2d_c00295{bottom:223.020000px;}
.y2c_c00295{bottom:241.017000px;}
.y2b_c00295{bottom:324.876000px;}
.y2a_c00295{bottom:344.617500px;}
.y29_c00295{bottom:344.961000px;}
.y28_c00295{bottom:345.325500px;}
.y27_c00295{bottom:345.436500px;}
.y26_c00295{bottom:345.735000px;}
.y25_c00295{bottom:345.850500px;}
.y24_c00295{bottom:346.318500px;}
.y23_c00295{bottom:346.636500px;}
.y22_c00295{bottom:347.004000px;}
.y21_c00295{bottom:347.170500px;}
.y20_c00295{bottom:347.581500px;}
.y1f_c00295{bottom:347.793000px;}
.y1e_c00295{bottom:348.303000px;}
.y1d_c00295{bottom:348.573000px;}
.y1c_c00295{bottom:370.237500px;}
.y1b_c00295{bottom:392.916000px;}
.y1a_c00295{bottom:415.861500px;}
.y19_c00295{bottom:438.567000px;}
.y18_c00295{bottom:461.517000px;}
.y17_c00295{bottom:483.955500px;}
.y16_c00295{bottom:507.391500px;}
.y15_c00295{bottom:529.795500px;}
.y14_c00295{bottom:553.324500px;}
.y13_c00295{bottom:575.953500px;}
.y12_c00295{bottom:598.669500px;}
.y11_c00295{bottom:621.513000px;}
.y10_c00295{bottom:644.460000px;}
.yf_c00295{bottom:666.391500px;}
.ye_c00295{bottom:689.944500px;}
.yd_c00295{bottom:712.861500px;}
.yc_c00295{bottom:735.796500px;}
.yb_c00295{bottom:758.727000px;}
.ya_c00295{bottom:781.443000px;}
.y9_c00295{bottom:804.330000px;}
.y8_c00295{bottom:827.010000px;}
.y3_c00295{bottom:870.220500px;}
.y4_c00295{bottom:870.918922px;}
.y5_c00295{bottom:872.272252px;}
.y6_c00295{bottom:873.337402px;}
.y7_c00295{bottom:873.896235px;}
.y2_c00295{bottom:929.869500px;}
.y1_c00295{bottom:934.218000px;}
.h17_c00295{height:13.650000px;}
.h16_c00295{height:23.100000px;}
.h2_c00295{height:24.150000px;}
.h15_c00295{height:27.300000px;}
.h14_c00295{height:45.150000px;}
.h11_c00295{height:48.300000px;}
.h3_c00295{height:49.350000px;}
.hf_c00295{height:50.400000px;}
.h12_c00295{height:51.450000px;}
.h10_c00295{height:52.500000px;}
.h13_c00295{height:53.550000px;}
.h8_c00295{height:60.900000px;}
.he_c00295{height:61.950000px;}
.h7_c00295{height:63.000000px;}
.hb_c00295{height:64.050000px;}
.ha_c00295{height:68.250000px;}
.hc_c00295{height:69.300000px;}
.h5_c00295{height:70.350000px;}
.h6_c00295{height:71.400000px;}
.hd_c00295{height:72.450000px;}
.h9_c00295{height:73.500000px;}
.h4_c00295{height:117.613229px;}
.h0_c00295{height:1008.450000px;}
.h1_c00295{height:1008.750000px;}
.w0_c00295{width:696.000000px;}
.x0_c00295{left:0.000000px;}
.xa2_c00295{left:139.590000px;}
.x2f_c00295{left:142.020000px;}
.x59_c00295{left:143.370000px;}
.xf_c00295{left:144.990000px;}
.xa_c00295{left:146.197500px;}
.x98_c00295{left:147.690000px;}
.x88_c00295{left:148.770000px;}
.xb8_c00295{left:150.315000px;}
.xb2_c00295{left:154.440000px;}
.xbd_c00295{left:158.650500px;}
.x89_c00295{left:165.780000px;}
.x51_c00295{left:168.750000px;}
.x7b_c00295{left:170.100000px;}
.x75_c00295{left:171.180000px;}
.x83_c00295{left:172.260000px;}
.xb3_c00295{left:175.770000px;}
.x4a_c00295{left:177.390000px;}
.xb6_c00295{left:178.681500px;}
.x1a_c00295{left:180.090000px;}
.xbe_c00295{left:181.606500px;}
.x30_c00295{left:185.220000px;}
.x66_c00295{left:187.650000px;}
.xc3_c00295{left:190.080000px;}
.xb_c00295{left:192.759000px;}
.x84_c00295{left:194.400000px;}
.xb4_c00295{left:197.100000px;}
.x70_c00295{left:198.990000px;}
.x10_c00295{left:205.470000px;}
.x7c_c00295{left:206.820000px;}
.x1b_c00295{left:209.250000px;}
.x76_c00295{left:212.490000px;}
.x8f_c00295{left:214.650000px;}
.x29_c00295{left:216.810000px;}
.xc4_c00295{left:218.430000px;}
.x8a_c00295{left:221.130000px;}
.x42_c00295{left:223.020000px;}
.x85_c00295{left:224.100000px;}
.x5a_c00295{left:226.530000px;}
.x24_c00295{left:227.880000px;}
.x1c_c00295{left:233.010000px;}
.x31_c00295{left:234.630000px;}
.x11_c00295{left:236.250000px;}
.x3c_c00295{left:238.140000px;}
.x60_c00295{left:240.300000px;}
.x90_c00295{left:241.650000px;}
.x43_c00295{left:242.730000px;}
.x2a_c00295{left:246.240000px;}
.x67_c00295{left:247.590000px;}
.x25_c00295{left:250.830000px;}
.x3d_c00295{left:251.910000px;}
.x99_c00295{left:254.880000px;}
.x71_c00295{left:257.310000px;}
.xc5_c00295{left:261.630000px;}
.x1d_c00295{left:264.600000px;}
.x52_c00295{left:265.950000px;}
.xa7_c00295{left:267.406500px;}
.xb5_c00295{left:272.430000px;}
.x4b_c00295{left:274.320000px;}
.x9a_c00295{left:275.670000px;}
.xc6_c00295{left:281.340000px;}
.xc_c00295{left:282.981000px;}
.x7d_c00295{left:284.580000px;}
.x68_c00295{left:286.470000px;}
.xca_c00295{left:288.900000px;}
.x8b_c00295{left:290.520000px;}
.x69_c00295{left:292.410000px;}
.xbf_c00295{left:293.541000px;}
.xac_c00295{left:296.191500px;}
.x12_c00295{left:297.270000px;}
.x44_c00295{left:301.320000px;}
.x32_c00295{left:303.210000px;}
.xc9_c00295{left:304.560000px;}
.x61_c00295{left:307.530000px;}
.x5b_c00295{left:309.960000px;}
.x26_c00295{left:313.740000px;}
.xad_c00295{left:317.251500px;}
.xa8_c00295{left:318.757500px;}
.x45_c00295{left:320.490000px;}
.x77_c00295{left:322.650000px;}
.x1e_c00295{left:324.540000px;}
.x53_c00295{left:325.620000px;}
.x4c_c00295{left:329.130000px;}
.xc7_c00295{left:332.370000px;}
.x5c_c00295{left:333.990000px;}
.x3e_c00295{left:335.610000px;}
.xa3_c00295{left:338.580000px;}
.x54_c00295{left:341.820000px;}
.xcb_c00295{left:345.600000px;}
.x13_c00295{left:346.680000px;}
.xc8_c00295{left:348.300000px;}
.x27_c00295{left:349.380000px;}
.x78_c00295{left:350.730000px;}
.x33_c00295{left:352.080000px;}
.xd_c00295{left:353.991000px;}
.x62_c00295{left:356.130000px;}
.x9b_c00295{left:358.020000px;}
.x6a_c00295{left:363.690000px;}
.xb9_c00295{left:365.796000px;}
.x2b_c00295{left:367.200000px;}
.x55_c00295{left:371.250000px;}
.x7e_c00295{left:373.680000px;}
.x86_c00295{left:374.760000px;}
.x34_c00295{left:376.380000px;}
.x14_c00295{left:378.000000px;}
.x72_c00295{left:380.700000px;}
.x5d_c00295{left:385.290000px;}
.x46_c00295{left:389.340000px;}
.xe_c00295{left:391.246500px;}
.x9c_c00295{left:392.580000px;}
.xc0_c00295{left:395.740500px;}
.x63_c00295{left:397.440000px;}
.xba_c00295{left:401.886000px;}
.x91_c00295{left:404.730000px;}
.x15_c00295{left:408.780000px;}
.x1f_c00295{left:410.400000px;}
.x35_c00295{left:411.750000px;}
.x47_c00295{left:413.100000px;}
.x3f_c00295{left:414.450000px;}
.xa4_c00295{left:417.150000px;}
.x1_c00295{left:418.500000px;}
.x9d_c00295{left:420.390000px;}
.x64_c00295{left:423.090000px;}
.x20_c00295{left:425.520000px;}
.x8_c00295{left:427.950000px;}
.x2c_c00295{left:430.110000px;}
.xbb_c00295{left:432.421500px;}
.xae_c00295{left:433.891500px;}
.x92_c00295{left:435.510000px;}
.x2_c00295{left:437.940000px;}
.x6b_c00295{left:439.020000px;}
.xc1_c00295{left:441.591000px;}
.x16_c00295{left:446.310000px;}
.x7f_c00295{left:447.660000px;}
.x36_c00295{left:454.680000px;}
.x3_c00295{left:457.110000px;}
.x4d_c00295{left:458.190000px;}
.x87_c00295{left:460.890000px;}
.x73_c00295{left:465.750000px;}
.x4e_c00295{left:469.530000px;}
.x9e_c00295{left:470.880000px;}
.x8c_c00295{left:472.230000px;}
.x2d_c00295{left:474.120000px;}
.x56_c00295{left:476.280000px;}
.x93_c00295{left:477.630000px;}
.xaf_c00295{left:480.871500px;}
.xa9_c00295{left:483.541500px;}
.xb7_c00295{left:485.974500px;}
.x40_c00295{left:487.350000px;}
.xc2_c00295{left:489.919500px;}
.x6c_c00295{left:491.400000px;}
.x17_c00295{left:495.180000px;}
.x4_c00295{left:497.880000px;}
.x4f_c00295{left:500.040000px;}
.x94_c00295{left:502.200000px;}
.x5e_c00295{left:504.630000px;}
.x57_c00295{left:506.790000px;}
.x9_c00295{left:510.300000px;}
.x5_c00295{left:511.650000px;}
.x48_c00295{left:515.970000px;}
.x79_c00295{left:518.940000px;}
.x9f_c00295{left:521.100000px;}
.x37_c00295{left:522.990000px;}
.x80_c00295{left:524.070000px;}
.x81_c00295{left:526.500000px;}
.x6d_c00295{left:531.360000px;}
.x2e_c00295{left:532.710000px;}
.xaa_c00295{left:535.378500px;}
.x95_c00295{left:536.760000px;}
.xa5_c00295{left:537.840000px;}
.x7a_c00295{left:541.350000px;}
.x38_c00295{left:542.700000px;}
.x6_c00295{left:544.320000px;}
.x21_c00295{left:546.210000px;}
.xa0_c00295{left:548.100000px;}
.xab_c00295{left:549.316500px;}
.x49_c00295{left:551.340000px;}
.x74_c00295{left:559.440000px;}
.x18_c00295{left:560.790000px;}
.x39_c00295{left:562.680000px;}
.xb0_c00295{left:564.841500px;}
.x5f_c00295{left:566.190000px;}
.x22_c00295{left:567.810000px;}
.x6e_c00295{left:568.890000px;}
.x8d_c00295{left:570.510000px;}
.x7_c00295{left:571.860000px;}
.x65_c00295{left:573.480000px;}
.x3a_c00295{left:583.200000px;}
.x82_c00295{left:585.360000px;}
.x19_c00295{left:589.680000px;}
.x41_c00295{left:592.380000px;}
.x28_c00295{left:595.080000px;}
.x50_c00295{left:596.430000px;}
.x23_c00295{left:597.510000px;}
.x8e_c00295{left:607.500000px;}
.x96_c00295{left:609.660000px;}
.x6f_c00295{left:612.630000px;}
.x58_c00295{left:619.380000px;}
.xa6_c00295{left:631.800000px;}
.x3b_c00295{left:634.500000px;}
.x97_c00295{left:637.740000px;}
.xbc_c00295{left:640.096500px;}
.xa1_c00295{left:643.140000px;}
.xb1_c00295{left:657.451500px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
.fs15_c00295{font-size:12.133333pt;}
.fs14_c00295{font-size:20.533333pt;}
.fs0_c00295{font-size:21.466667pt;}
.fs13_c00295{font-size:24.266667pt;}
.fs12_c00295{font-size:40.133333pt;}
.fsf_c00295{font-size:42.933333pt;}
.fs1_c00295{font-size:43.866667pt;}
.fsd_c00295{font-size:44.800000pt;}
.fs10_c00295{font-size:45.733333pt;}
.fse_c00295{font-size:46.666667pt;}
.fs11_c00295{font-size:47.600000pt;}
.fs6_c00295{font-size:54.133333pt;}
.fsc_c00295{font-size:55.066667pt;}
.fs5_c00295{font-size:56.000000pt;}
.fs9_c00295{font-size:56.933333pt;}
.fs8_c00295{font-size:60.666667pt;}
.fsa_c00295{font-size:61.600000pt;}
.fs3_c00295{font-size:62.533333pt;}
.fs4_c00295{font-size:63.466667pt;}
.fsb_c00295{font-size:64.400000pt;}
.fs7_c00295{font-size:65.333333pt;}
.fs2_c00295{font-size:104.545093pt;}
.y0_c00295{bottom:0.000000pt;}
.y52_c00295{bottom:90.720000pt;}
.y4f_c00295{bottom:97.920000pt;}
.y51_c00295{bottom:101.658667pt;}
.y50_c00295{bottom:106.666667pt;}
.y4e_c00295{bottom:150.185333pt;}
.y4d_c00295{bottom:163.210667pt;}
.y4c_c00295{bottom:163.525333pt;}
.y4b_c00295{bottom:163.802667pt;}
.y4a_c00295{bottom:163.986667pt;}
.y49_c00295{bottom:164.046667pt;}
.y48_c00295{bottom:164.274667pt;}
.y47_c00295{bottom:164.554667pt;}
.y46_c00295{bottom:164.722667pt;}
.y45_c00295{bottom:165.034667pt;}
.y44_c00295{bottom:165.309333pt;}
.y43_c00295{bottom:165.452000pt;}
.y42_c00295{bottom:165.721333pt;}
.y41_c00295{bottom:166.177333pt;}
.y40_c00295{bottom:166.281333pt;}
.y3f_c00295{bottom:166.816000pt;}
.y3e_c00295{bottom:167.040000pt;}
.y3d_c00295{bottom:178.632000pt;}
.y3c_c00295{bottom:179.269333pt;}
.y3b_c00295{bottom:179.352000pt;}
.y3a_c00295{bottom:179.405333pt;}
.y39_c00295{bottom:179.925333pt;}
.y38_c00295{bottom:180.114667pt;}
.y37_c00295{bottom:180.338667pt;}
.y36_c00295{bottom:180.744000pt;}
.y35_c00295{bottom:181.680000pt;}
.y34_c00295{bottom:195.853333pt;}
.y33_c00295{bottom:196.441333pt;}
.y32_c00295{bottom:197.232000pt;}
.y31_c00295{bottom:197.621333pt;}
.y30_c00295{bottom:197.724000pt;}
.y2f_c00295{bottom:198.000000pt;}
.y2e_c00295{bottom:198.080000pt;}
.y2d_c00295{bottom:198.240000pt;}
.y2c_c00295{bottom:214.237333pt;}
.y2b_c00295{bottom:288.778667pt;}
.y2a_c00295{bottom:306.326667pt;}
.y29_c00295{bottom:306.632000pt;}
.y28_c00295{bottom:306.956000pt;}
.y27_c00295{bottom:307.054667pt;}
.y26_c00295{bottom:307.320000pt;}
.y25_c00295{bottom:307.422667pt;}
.y24_c00295{bottom:307.838667pt;}
.y23_c00295{bottom:308.121333pt;}
.y22_c00295{bottom:308.448000pt;}
.y21_c00295{bottom:308.596000pt;}
.y20_c00295{bottom:308.961333pt;}
.y1f_c00295{bottom:309.149333pt;}
.y1e_c00295{bottom:309.602667pt;}
.y1d_c00295{bottom:309.842667pt;}
.y1c_c00295{bottom:329.100000pt;}
.y1b_c00295{bottom:349.258667pt;}
.y1a_c00295{bottom:369.654667pt;}
.y19_c00295{bottom:389.837333pt;}
.y18_c00295{bottom:410.237333pt;}
.y17_c00295{bottom:430.182667pt;}
.y16_c00295{bottom:451.014667pt;}
.y15_c00295{bottom:470.929333pt;}
.y14_c00295{bottom:491.844000pt;}
.y13_c00295{bottom:511.958667pt;}
.y12_c00295{bottom:532.150667pt;}
.y11_c00295{bottom:552.456000pt;}
.y10_c00295{bottom:572.853333pt;}
.yf_c00295{bottom:592.348000pt;}
.ye_c00295{bottom:613.284000pt;}
.yd_c00295{bottom:633.654667pt;}
.yc_c00295{bottom:654.041333pt;}
.yb_c00295{bottom:674.424000pt;}
.ya_c00295{bottom:694.616000pt;}
.y9_c00295{bottom:714.960000pt;}
.y8_c00295{bottom:735.120000pt;}
.y3_c00295{bottom:773.529333pt;}
.y4_c00295{bottom:774.150153pt;}
.y5_c00295{bottom:775.353113pt;}
.y6_c00295{bottom:776.299913pt;}
.y7_c00295{bottom:776.796653pt;}
.y2_c00295{bottom:826.550667pt;}
.y1_c00295{bottom:830.416000pt;}
.h17_c00295{height:12.133333pt;}
.h16_c00295{height:20.533333pt;}
.h2_c00295{height:21.466667pt;}
.h15_c00295{height:24.266667pt;}
.h14_c00295{height:40.133333pt;}
.h11_c00295{height:42.933333pt;}
.h3_c00295{height:43.866667pt;}
.hf_c00295{height:44.800000pt;}
.h12_c00295{height:45.733333pt;}
.h10_c00295{height:46.666667pt;}
.h13_c00295{height:47.600000pt;}
.h8_c00295{height:54.133333pt;}
.he_c00295{height:55.066667pt;}
.h7_c00295{height:56.000000pt;}
.hb_c00295{height:56.933333pt;}
.ha_c00295{height:60.666667pt;}
.hc_c00295{height:61.600000pt;}
.h5_c00295{height:62.533333pt;}
.h6_c00295{height:63.466667pt;}
.hd_c00295{height:64.400000pt;}
.h9_c00295{height:65.333333pt;}
.h4_c00295{height:104.545093pt;}
.h0_c00295{height:896.400000pt;}
.h1_c00295{height:896.666667pt;}
.w0_c00295{width:618.666667pt;}
.x0_c00295{left:0.000000pt;}
.xa2_c00295{left:124.080000pt;}
.x2f_c00295{left:126.240000pt;}
.x59_c00295{left:127.440000pt;}
.xf_c00295{left:128.880000pt;}
.xa_c00295{left:129.953333pt;}
.x98_c00295{left:131.280000pt;}
.x88_c00295{left:132.240000pt;}
.xb8_c00295{left:133.613333pt;}
.xb2_c00295{left:137.280000pt;}
.xbd_c00295{left:141.022667pt;}
.x89_c00295{left:147.360000pt;}
.x51_c00295{left:150.000000pt;}
.x7b_c00295{left:151.200000pt;}
.x75_c00295{left:152.160000pt;}
.x83_c00295{left:153.120000pt;}
.xb3_c00295{left:156.240000pt;}
.x4a_c00295{left:157.680000pt;}
.xb6_c00295{left:158.828000pt;}
.x1a_c00295{left:160.080000pt;}
.xbe_c00295{left:161.428000pt;}
.x30_c00295{left:164.640000pt;}
.x66_c00295{left:166.800000pt;}
.xc3_c00295{left:168.960000pt;}
.xb_c00295{left:171.341333pt;}
.x84_c00295{left:172.800000pt;}
.xb4_c00295{left:175.200000pt;}
.x70_c00295{left:176.880000pt;}
.x10_c00295{left:182.640000pt;}
.x7c_c00295{left:183.840000pt;}
.x1b_c00295{left:186.000000pt;}
.x76_c00295{left:188.880000pt;}
.x8f_c00295{left:190.800000pt;}
.x29_c00295{left:192.720000pt;}
.xc4_c00295{left:194.160000pt;}
.x8a_c00295{left:196.560000pt;}
.x42_c00295{left:198.240000pt;}
.x85_c00295{left:199.200000pt;}
.x5a_c00295{left:201.360000pt;}
.x24_c00295{left:202.560000pt;}
.x1c_c00295{left:207.120000pt;}
.x31_c00295{left:208.560000pt;}
.x11_c00295{left:210.000000pt;}
.x3c_c00295{left:211.680000pt;}
.x60_c00295{left:213.600000pt;}
.x90_c00295{left:214.800000pt;}
.x43_c00295{left:215.760000pt;}
.x2a_c00295{left:218.880000pt;}
.x67_c00295{left:220.080000pt;}
.x25_c00295{left:222.960000pt;}
.x3d_c00295{left:223.920000pt;}
.x99_c00295{left:226.560000pt;}
.x71_c00295{left:228.720000pt;}
.xc5_c00295{left:232.560000pt;}
.x1d_c00295{left:235.200000pt;}
.x52_c00295{left:236.400000pt;}
.xa7_c00295{left:237.694667pt;}
.xb5_c00295{left:242.160000pt;}
.x4b_c00295{left:243.840000pt;}
.x9a_c00295{left:245.040000pt;}
.xc6_c00295{left:250.080000pt;}
.xc_c00295{left:251.538667pt;}
.x7d_c00295{left:252.960000pt;}
.x68_c00295{left:254.640000pt;}
.xca_c00295{left:256.800000pt;}
.x8b_c00295{left:258.240000pt;}
.x69_c00295{left:259.920000pt;}
.xbf_c00295{left:260.925333pt;}
.xac_c00295{left:263.281333pt;}
.x12_c00295{left:264.240000pt;}
.x44_c00295{left:267.840000pt;}
.x32_c00295{left:269.520000pt;}
.xc9_c00295{left:270.720000pt;}
.x61_c00295{left:273.360000pt;}
.x5b_c00295{left:275.520000pt;}
.x26_c00295{left:278.880000pt;}
.xad_c00295{left:282.001333pt;}
.xa8_c00295{left:283.340000pt;}
.x45_c00295{left:284.880000pt;}
.x77_c00295{left:286.800000pt;}
.x1e_c00295{left:288.480000pt;}
.x53_c00295{left:289.440000pt;}
.x4c_c00295{left:292.560000pt;}
.xc7_c00295{left:295.440000pt;}
.x5c_c00295{left:296.880000pt;}
.x3e_c00295{left:298.320000pt;}
.xa3_c00295{left:300.960000pt;}
.x54_c00295{left:303.840000pt;}
.xcb_c00295{left:307.200000pt;}
.x13_c00295{left:308.160000pt;}
.xc8_c00295{left:309.600000pt;}
.x27_c00295{left:310.560000pt;}
.x78_c00295{left:311.760000pt;}
.x33_c00295{left:312.960000pt;}
.xd_c00295{left:314.658667pt;}
.x62_c00295{left:316.560000pt;}
.x9b_c00295{left:318.240000pt;}
.x6a_c00295{left:323.280000pt;}
.xb9_c00295{left:325.152000pt;}
.x2b_c00295{left:326.400000pt;}
.x55_c00295{left:330.000000pt;}
.x7e_c00295{left:332.160000pt;}
.x86_c00295{left:333.120000pt;}
.x34_c00295{left:334.560000pt;}
.x14_c00295{left:336.000000pt;}
.x72_c00295{left:338.400000pt;}
.x5d_c00295{left:342.480000pt;}
.x46_c00295{left:346.080000pt;}
.xe_c00295{left:347.774667pt;}
.x9c_c00295{left:348.960000pt;}
.xc0_c00295{left:351.769333pt;}
.x63_c00295{left:353.280000pt;}
.xba_c00295{left:357.232000pt;}
.x91_c00295{left:359.760000pt;}
.x15_c00295{left:363.360000pt;}
.x1f_c00295{left:364.800000pt;}
.x35_c00295{left:366.000000pt;}
.x47_c00295{left:367.200000pt;}
.x3f_c00295{left:368.400000pt;}
.xa4_c00295{left:370.800000pt;}
.x1_c00295{left:372.000000pt;}
.x9d_c00295{left:373.680000pt;}
.x64_c00295{left:376.080000pt;}
.x20_c00295{left:378.240000pt;}
.x8_c00295{left:380.400000pt;}
.x2c_c00295{left:382.320000pt;}
.xbb_c00295{left:384.374667pt;}
.xae_c00295{left:385.681333pt;}
.x92_c00295{left:387.120000pt;}
.x2_c00295{left:389.280000pt;}
.x6b_c00295{left:390.240000pt;}
.xc1_c00295{left:392.525333pt;}
.x16_c00295{left:396.720000pt;}
.x7f_c00295{left:397.920000pt;}
.x36_c00295{left:404.160000pt;}
.x3_c00295{left:406.320000pt;}
.x4d_c00295{left:407.280000pt;}
.x87_c00295{left:409.680000pt;}
.x73_c00295{left:414.000000pt;}
.x4e_c00295{left:417.360000pt;}
.x9e_c00295{left:418.560000pt;}
.x8c_c00295{left:419.760000pt;}
.x2d_c00295{left:421.440000pt;}
.x56_c00295{left:423.360000pt;}
.x93_c00295{left:424.560000pt;}
.xaf_c00295{left:427.441333pt;}
.xa9_c00295{left:429.814667pt;}
.xb7_c00295{left:431.977333pt;}
.x40_c00295{left:433.200000pt;}
.xc2_c00295{left:435.484000pt;}
.x6c_c00295{left:436.800000pt;}
.x17_c00295{left:440.160000pt;}
.x4_c00295{left:442.560000pt;}
.x4f_c00295{left:444.480000pt;}
.x94_c00295{left:446.400000pt;}
.x5e_c00295{left:448.560000pt;}
.x57_c00295{left:450.480000pt;}
.x9_c00295{left:453.600000pt;}
.x5_c00295{left:454.800000pt;}
.x48_c00295{left:458.640000pt;}
.x79_c00295{left:461.280000pt;}
.x9f_c00295{left:463.200000pt;}
.x37_c00295{left:464.880000pt;}
.x80_c00295{left:465.840000pt;}
.x81_c00295{left:468.000000pt;}
.x6d_c00295{left:472.320000pt;}
.x2e_c00295{left:473.520000pt;}
.xaa_c00295{left:475.892000pt;}
.x95_c00295{left:477.120000pt;}
.xa5_c00295{left:478.080000pt;}
.x7a_c00295{left:481.200000pt;}
.x38_c00295{left:482.400000pt;}
.x6_c00295{left:483.840000pt;}
.x21_c00295{left:485.520000pt;}
.xa0_c00295{left:487.200000pt;}
.xab_c00295{left:488.281333pt;}
.x49_c00295{left:490.080000pt;}
.x74_c00295{left:497.280000pt;}
.x18_c00295{left:498.480000pt;}
.x39_c00295{left:500.160000pt;}
.xb0_c00295{left:502.081333pt;}
.x5f_c00295{left:503.280000pt;}
.x22_c00295{left:504.720000pt;}
.x6e_c00295{left:505.680000pt;}
.x8d_c00295{left:507.120000pt;}
.x7_c00295{left:508.320000pt;}
.x65_c00295{left:509.760000pt;}
.x3a_c00295{left:518.400000pt;}
.x82_c00295{left:520.320000pt;}
.x19_c00295{left:524.160000pt;}
.x41_c00295{left:526.560000pt;}
.x28_c00295{left:528.960000pt;}
.x50_c00295{left:530.160000pt;}
.x23_c00295{left:531.120000pt;}
.x8e_c00295{left:540.000000pt;}
.x96_c00295{left:541.920000pt;}
.x6f_c00295{left:544.560000pt;}
.x58_c00295{left:550.560000pt;}
.xa6_c00295{left:561.600000pt;}
.x3b_c00295{left:564.000000pt;}
.x97_c00295{left:566.880000pt;}
.xbc_c00295{left:568.974667pt;}
.xa1_c00295{left:571.680000pt;}
.xb1_c00295{left:584.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_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_ef4e99a7aa2876b3106553d3.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;}
.m51_c00296{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mc2_c00296{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);}
.m78_c00296{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);}
.m6d_c00296{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);}
.m151_c00296{transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.071875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071875,0.000000,0.000000,0.250000,0,0);}
.md7_c00296{transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086735,0.000000,0.000000,0.250000,0,0);}
.m121_c00296{transform:matrix(0.092970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092970,0.000000,0.000000,0.250000,0,0);}
.med_c00296{transform:matrix(0.097180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097180,0.000000,0.000000,0.250000,0,0);}
.m11a_c00296{transform:matrix(0.100771,-0.000907,0.002250,0.249990,0,0);-ms-transform:matrix(0.100771,-0.000907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.100771,-0.000907,0.002250,0.249990,0,0);}
.m23_c00296{transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);}
.mf5_c00296{transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);}
.m6b_c00296{transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);}
.m125_c00296{transform:matrix(0.127330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127330,0.000000,0.000000,0.250000,0,0);}
.m155_c00296{transform:matrix(0.128060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128060,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130970,0.000000,0.000000,0.250000,0,0);}
.m8d_c00296{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);}
.m26_c00296{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);}
.m79_c00296{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);}
.m67_c00296{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);}
.m136_c00296{transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);}
.me7_c00296{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);}
.m3e_c00296{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);}
.mbe_c00296{transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);}
.m66_c00296{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);}
.m49_c00296{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);}
.m60_c00296{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);}
.m83_c00296{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);}
.ma_c00296{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);}
.m6a_c00296{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);}
.mb6_c00296{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);}
.m92_c00296{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);}
.m17_c00296{transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166265,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{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);}
.m10b_c00296{transform:matrix(0.167958,-0.001512,0.002250,0.249990,0,0);-ms-transform:matrix(0.167958,-0.001512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167958,-0.001512,0.002250,0.249990,0,0);}
.me1_c00296{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);}
.mb7_c00296{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);}
.m84_c00296{transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{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);}
.m94_c00296{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);}
.m31_c00296{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);}
.m11f_c00296{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);}
.m95_c00296{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);}
.mec_c00296{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);}
.m5c_c00296{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);}
.m12f_c00296{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);}
.m5d_c00296{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);}
.m82_c00296{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);}
.mad_c00296{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);}
.m3c_c00296{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);}
.m65_c00296{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);}
.m87_c00296{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);}
.m48_c00296{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);}
.m20_c00296{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);}
.m19_c00296{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);}
.m55_c00296{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);}
.m74_c00296{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);}
.ma4_c00296{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);}
.meb_c00296{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);}
.m12c_c00296{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);}
.m62_c00296{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);}
.mb9_c00296{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);}
.m2c_c00296{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);}
.m91_c00296{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);}
.m22_c00296{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);}
.mb8_c00296{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);}
.m36_c00296{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);}
.m1e_c00296{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_c00296{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);}
.m58_c00296{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);}
.mea_c00296{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);}
.ma3_c00296{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);}
.m14e_c00296{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);}
.m25_c00296{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);}
.m41_c00296{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);}
.m30_c00296{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);}
.mdd_c00296{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);}
.m4a_c00296{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);}
.m24_c00296{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);}
.m21_c00296{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);}
.m71_c00296{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);}
.m131_c00296{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);}
.m57_c00296{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);}
.m5f_c00296{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);}
.m11_c00296{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);}
.m35_c00296{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);}
.m113_c00296{transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);}
.m12_c00296{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);}
.m7d_c00296{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);}
.mf0_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);}
.m1d_c00296{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);}
.m4c_c00296{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);}
.mdb_c00296{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);}
.me8_c00296{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);}
.m9f_c00296{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);}
.m97_c00296{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);}
.ma7_c00296{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);}
.m122_c00296{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);}
.m9e_c00296{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);}
.mcc_c00296{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);}
.m123_c00296{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);}
.m3b_c00296{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);}
.m81_c00296{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);}
.m59_c00296{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);}
.m8f_c00296{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);}
.m53_c00296{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);}
.m128_c00296{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);}
.m70_c00296{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);}
.mb2_c00296{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);}
.m107_c00296{transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);-ms-transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);}
.m112_c00296{transform:matrix(0.192627,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192627,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192627,-0.001734,0.002250,0.249990,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);}
.ma9_c00296{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);}
.mb3_c00296{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);}
.m40_c00296{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);}
.m1a_c00296{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);}
.m117_c00296{transform:matrix(0.196072,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196072,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196072,-0.001765,0.002250,0.249990,0,0);}
.mfe_c00296{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);}
.m4d_c00296{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);}
.mbd_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);}
.ma1_c00296{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);}
.mb0_c00296{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);}
.mba_c00296{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);}
.m32_c00296{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);}
.mdc_c00296{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);}
.m2d_c00296{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);}
.m80_c00296{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);}
.mb1_c00296{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);}
.md3_c00296{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);}
.m99_c00296{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);}
.m5a_c00296{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{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);}
.m43_c00296{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);}
.m64_c00296{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);}
.m28_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);}
.m109_c00296{transform:matrix(0.200252,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200252,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200252,-0.001802,0.002250,0.249990,0,0);}
.m42_c00296{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);}
.m14f_c00296{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);}
.mef_c00296{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);}
.m7c_c00296{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);}
.m72_c00296{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);}
.mab_c00296{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);}
.mcb_c00296{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);}
.m54_c00296{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);}
.mbb_c00296{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);}
.mbc_c00296{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_c00296{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);}
.m93_c00296{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);}
.m1b_c00296{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);}
.m108_c00296{transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205012,-0.001845,0.002250,0.249990,0,0);}
.me6_c00296{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);}
.m15_c00296{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);}
.mc_c00296{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);}
.m37_c00296{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);}
.m127_c00296{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);}
.m116_c00296{transform:matrix(0.206362,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206362,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206362,-0.001857,0.002250,0.249990,0,0);}
.m4f_c00296{transform:matrix(0.206655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206655,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{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_c00296{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);}
.m33_c00296{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);}
.mda_c00296{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);}
.maa_c00296{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);}
.m11e_c00296{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);}
.m5_c00296{transform:matrix(0.208603,-0.006682,0.008004,0.249872,0,0);-ms-transform:matrix(0.208603,-0.006682,0.008004,0.249872,0,0);-webkit-transform:matrix(0.208603,-0.006682,0.008004,0.249872,0,0);}
.mf_c00296{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);}
.m138_c00296{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);}
.m88_c00296{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);}
.m3f_c00296{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);}
.me4_c00296{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{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);}
.m4b_c00296{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);}
.ma6_c00296{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);}
.m8c_c00296{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);}
.mac_c00296{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);}
.m45_c00296{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);}
.m38_c00296{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);}
.mc0_c00296{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);}
.m9b_c00296{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);}
.m75_c00296{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);}
.mae_c00296{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);}
.maf_c00296{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{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);}
.me9_c00296{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);}
.m12b_c00296{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);}
.md2_c00296{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);}
.m114_c00296{transform:matrix(0.214156,-0.001927,0.002250,0.249990,0,0);-ms-transform:matrix(0.214156,-0.001927,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214156,-0.001927,0.002250,0.249990,0,0);}
.m9_c00296{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);}
.mbf_c00296{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);}
.mde_c00296{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);}
.m6_c00296{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);}
.m14a_c00296{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);}
.m7e_c00296{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);}
.m6e_c00296{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);}
.ma2_c00296{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);}
.me0_c00296{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);}
.m50_c00296{transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);}
.m111_c00296{transform:matrix(0.218321,-0.001965,0.002250,0.249990,0,0);-ms-transform:matrix(0.218321,-0.001965,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218321,-0.001965,0.002250,0.249990,0,0);}
.mff_c00296{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);}
.mf9_c00296{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);}
.mb5_c00296{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);}
.mb4_c00296{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);}
.ma5_c00296{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);}
.mee_c00296{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);}
.md6_c00296{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_c00296{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);}
.m149_c00296{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);}
.m100_c00296{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);}
.m29_c00296{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);}
.m13f_c00296{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);}
.mdf_c00296{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);}
.m11d_c00296{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);}
.m47_c00296{transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224960,0.000000,0.000000,0.250000,0,0);}
.mc8_c00296{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m146_c00296{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);}
.mc6_c00296{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);}
.me3_c00296{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);}
.m5b_c00296{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);}
.m5e_c00296{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);}
.m18_c00296{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);}
.me2_c00296{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);}
.mfb_c00296{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);}
.m11b_c00296{transform:matrix(0.229216,-0.002063,0.002250,0.249990,0,0);-ms-transform:matrix(0.229216,-0.002063,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229216,-0.002063,0.002250,0.249990,0,0);}
.mfd_c00296{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);}
.m115_c00296{transform:matrix(0.231031,-0.002079,0.002250,0.249990,0,0);-ms-transform:matrix(0.231031,-0.002079,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231031,-0.002079,0.002250,0.249990,0,0);}
.m96_c00296{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);}
.mf1_c00296{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);}
.md1_c00296{transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);}
.m10c_c00296{transform:matrix(0.233576,-0.002102,0.002250,0.249990,0,0);-ms-transform:matrix(0.233576,-0.002102,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233576,-0.002102,0.002250,0.249990,0,0);}
.mc4_c00296{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);}
.m34_c00296{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{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);}
.m86_c00296{transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);}
.m12e_c00296{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{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);}
.m12a_c00296{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m106_c00296{transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{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);}
.m2e_c00296{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);}
.m124_c00296{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);}
.m8e_c00296{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);}
.m90_c00296{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);}
.m13b_c00296{transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);}
.mfc_c00296{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);}
.m1f_c00296{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);}
.m89_c00296{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);}
.m140_c00296{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.md0_c00296{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{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);}
.m3a_c00296{transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);}
.m10a_c00296{transform:matrix(0.248670,-0.002238,0.002250,0.249990,0,0);-ms-transform:matrix(0.248670,-0.002238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248670,-0.002238,0.002250,0.249990,0,0);}
.m10f_c00296{transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);-ms-transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);}
.m16_c00296{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mf2_c00296{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);}
.m0_c00296{transform:matrix(0.252286,-0.008081,0.008004,0.249872,0,0);-ms-transform:matrix(0.252286,-0.008081,0.008004,0.249872,0,0);-webkit-transform:matrix(0.252286,-0.008081,0.008004,0.249872,0,0);}
.md9_c00296{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m110_c00296{transform:matrix(0.252650,-0.002274,0.002250,0.249990,0,0);-ms-transform:matrix(0.252650,-0.002274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252650,-0.002274,0.002250,0.249990,0,0);}
.ma0_c00296{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);}
.mf4_c00296{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);}
.m135_c00296{transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);}
.m141_c00296{transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);}
.m126_c00296{transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266365,0.000000,0.000000,0.250000,0,0);}
.m13d_c00296{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.m13c_c00296{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);}
.m73_c00296{transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);}
.m85_c00296{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m147_c00296{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);}
.mcd_c00296{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.mfa_c00296{transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286510,0.000000,0.000000,0.250000,0,0);}
.m105_c00296{transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286515,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287720,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{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);}
.m150_c00296{transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292685,0.000000,0.000000,0.250000,0,0);}
.m143_c00296{transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);}
.mf6_c00296{transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302735,0.000000,0.000000,0.250000,0,0);}
.m129_c00296{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);}
.m68_c00296{transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);}
.m10e_c00296{transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);-ms-transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);}
.mc7_c00296{transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308040,0.000000,0.000000,0.250000,0,0);}
.m152_c00296{transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);}
.m132_c00296{transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311940,0.000000,0.000000,0.250000,0,0);}
.m156_c00296{transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316215,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322870,0.000000,0.000000,0.250000,0,0);}
.m145_c00296{transform:matrix(0.323180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323180,0.000000,0.000000,0.250000,0,0);}
.m61_c00296{transform:matrix(0.330795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330795,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334970,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.336950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336950,0.000000,0.000000,0.250000,0,0);}
.m101_c00296{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.mc5_c00296{transform:matrix(0.342580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342580,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);}
.m120_c00296{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);}
.m119_c00296{transform:matrix(0.358915,-0.003230,0.002250,0.249990,0,0);-ms-transform:matrix(0.358915,-0.003230,0.002250,0.249990,0,0);-webkit-transform:matrix(0.358915,-0.003230,0.002250,0.249990,0,0);}
.m77_c00296{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.mc9_c00296{transform:matrix(0.367400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367400,0.000000,0.000000,0.250000,0,0);}
.m14b_c00296{transform:matrix(0.368280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368280,0.000000,0.000000,0.250000,0,0);}
.md5_c00296{transform:matrix(0.369100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369100,0.000000,0.000000,0.250000,0,0);}
.m139_c00296{transform:matrix(0.371885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371885,0.000000,0.000000,0.250000,0,0);}
.m10d_c00296{transform:matrix(0.377215,-0.003395,0.002250,0.249990,0,0);-ms-transform:matrix(0.377215,-0.003395,0.002250,0.249990,0,0);-webkit-transform:matrix(0.377215,-0.003395,0.002250,0.249990,0,0);}
.m14d_c00296{transform:matrix(0.378400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378400,0.000000,0.000000,0.250000,0,0);}
.m142_c00296{transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384245,0.000000,0.000000,0.250000,0,0);}
.m134_c00296{transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);}
.m137_c00296{transform:matrix(0.386990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386990,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.389150,-0.012465,0.008004,0.249872,0,0);-ms-transform:matrix(0.389150,-0.012465,0.008004,0.249872,0,0);-webkit-transform:matrix(0.389150,-0.012465,0.008004,0.249872,0,0);}
.me5_c00296{transform:matrix(0.393265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393265,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.398905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398905,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.400360,-0.012824,0.008004,0.249872,0,0);-ms-transform:matrix(0.400360,-0.012824,0.008004,0.249872,0,0);-webkit-transform:matrix(0.400360,-0.012824,0.008004,0.249872,0,0);}
.m8a_c00296{transform:matrix(0.402470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402470,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.406870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406870,0.000000,0.000000,0.250000,0,0);}
.mce_c00296{transform:matrix(0.416790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416790,0.000000,0.000000,0.250000,0,0);}
.m14c_c00296{transform:matrix(0.419105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419105,0.000000,0.000000,0.250000,0,0);}
.m103_c00296{transform:matrix(0.434305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434305,0.000000,0.000000,0.250000,0,0);}
.m13e_c00296{transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438850,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.439565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439565,0.000000,0.000000,0.250000,0,0);}
.m104_c00296{transform:matrix(0.444090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444090,0.000000,0.000000,0.250000,0,0);}
.m157_c00296{transform:matrix(0.444425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444425,0.000000,0.000000,0.250000,0,0);}
.mf3_c00296{transform:matrix(0.447345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447345,0.000000,0.000000,0.250000,0,0);}
.m153_c00296{transform:matrix(0.462085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462085,0.000000,0.000000,0.250000,0,0);}
.m13a_c00296{transform:matrix(0.468340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468340,0.000000,0.000000,0.250000,0,0);}
.mf7_c00296{transform:matrix(0.473010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473010,0.000000,0.000000,0.250000,0,0);}
.m118_c00296{transform:matrix(0.486170,-0.004376,0.002250,0.249990,0,0);-ms-transform:matrix(0.486170,-0.004376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.486170,-0.004376,0.002250,0.249990,0,0);}
.md_c00296{transform:matrix(0.511740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511740,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.525665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525665,0.000000,0.000000,0.250000,0,0);}
.m11c_c00296{transform:matrix(0.549465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549465,0.000000,0.000000,0.250000,0,0);}
.md8_c00296{transform:matrix(0.549915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549915,0.000000,0.000000,0.250000,0,0);}
.m130_c00296{transform:matrix(0.575835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575835,0.000000,0.000000,0.250000,0,0);}
.mca_c00296{transform:matrix(0.579175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579175,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.580577,-0.018597,0.008004,0.249872,0,0);-ms-transform:matrix(0.580577,-0.018597,0.008004,0.249872,0,0);-webkit-transform:matrix(0.580577,-0.018597,0.008004,0.249872,0,0);}
.m63_c00296{transform:matrix(0.587105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587105,0.000000,0.000000,0.250000,0,0);}
.m12d_c00296{transform:matrix(0.607280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607280,0.000000,0.000000,0.250000,0,0);}
.md4_c00296{transform:matrix(0.632825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632825,0.000000,0.000000,0.250000,0,0);}
.m102_c00296{transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.693574,-0.022217,0.008004,0.249872,0,0);-ms-transform:matrix(0.693574,-0.022217,0.008004,0.249872,0,0);-webkit-transform:matrix(0.693574,-0.022217,0.008004,0.249872,0,0);}
.m2b_c00296{transform:matrix(0.703725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703725,0.000000,0.000000,0.250000,0,0);}
.m8b_c00296{transform:matrix(0.734600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734600,0.000000,0.000000,0.250000,0,0);}
.mf8_c00296{transform:matrix(0.752940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752940,0.000000,0.000000,0.250000,0,0);}
.mcf_c00296{transform:matrix(0.798045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798045,0.000000,0.000000,0.250000,0,0);}
.m144_c00296{transform:matrix(0.945475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945475,0.000000,0.000000,0.250000,0,0);}
.m133_c00296{transform:matrix(1.161195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.161195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.161195,0.000000,0.000000,0.250000,0,0);}
.m154_c00296{transform:matrix(1.214485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.214485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.214485,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;}
.fse_c00296{font-size:14.700000px;}
.fs9_c00296{font-size:22.050000px;}
.fs18_c00296{font-size:25.200000px;}
.fs10_c00296{font-size:27.300000px;}
.fsd_c00296{font-size:30.450000px;}
.fsb_c00296{font-size:31.500000px;}
.fsa_c00296{font-size:42.000000px;}
.fs16_c00296{font-size:45.150000px;}
.fs19_c00296{font-size:47.250000px;}
.fs12_c00296{font-size:48.301956px;}
.fs17_c00296{font-size:49.350000px;}
.fs11_c00296{font-size:49.351999px;}
.fs15_c00296{font-size:50.400000px;}
.fs14_c00296{font-size:52.500000px;}
.fs13_c00296{font-size:53.550000px;}
.fs7_c00296{font-size:56.700000px;}
.fs8_c00296{font-size:65.100000px;}
.fsc_c00296{font-size:66.150000px;}
.fs1_c00296{font-size:67.200000px;}
.fs5_c00296{font-size:69.300000px;}
.fs3_c00296{font-size:70.350000px;}
.fs4_c00296{font-size:71.400000px;}
.fs2_c00296{font-size:72.450000px;}
.fs6_c00296{font-size:73.500000px;}
.fs0_c00296{font-size:85.008528px;}
.fsf_c00296{font-size:89.250000px;}
.y0_c00296{bottom:0.000000px;}
.y55_c00296{bottom:95.962500px;}
.y54_c00296{bottom:101.982000px;}
.y53_c00296{bottom:115.428000px;}
.y52_c00296{bottom:117.112500px;}
.y50_c00296{bottom:165.850500px;}
.y51_c00296{bottom:166.755000px;}
.y4e_c00296{bottom:183.733500px;}
.y4f_c00296{bottom:185.271000px;}
.y4b_c00296{bottom:220.050000px;}
.y4d_c00296{bottom:237.181500px;}
.y49_c00296{bottom:237.457269px;}
.y4a_c00296{bottom:237.457599px;}
.y4c_c00296{bottom:254.857500px;}
.y44_c00296{bottom:256.198295px;}
.y46_c00296{bottom:256.198451px;}
.y45_c00296{bottom:256.198868px;}
.y47_c00296{bottom:256.199187px;}
.y48_c00296{bottom:256.199294px;}
.y36_c00296{bottom:271.081500px;}
.y37_c00296{bottom:271.552772px;}
.y38_c00296{bottom:271.754448px;}
.y39_c00296{bottom:272.208791px;}
.y3a_c00296{bottom:272.344884px;}
.y3b_c00296{bottom:272.512594px;}
.y3c_c00296{bottom:273.176214px;}
.y3d_c00296{bottom:273.263599px;}
.y3e_c00296{bottom:273.426801px;}
.y3f_c00296{bottom:273.801291px;}
.y40_c00296{bottom:274.374447px;}
.y41_c00296{bottom:274.733507px;}
.y42_c00296{bottom:274.988521px;}
.y43_c00296{bottom:275.141868px;}
.y35_c00296{bottom:295.920000px;}
.y33_c00296{bottom:301.590000px;}
.y32_c00296{bottom:302.400000px;}
.y31_c00296{bottom:306.990000px;}
.y34_c00296{bottom:310.770000px;}
.y23_c00296{bottom:346.675500px;}
.y24_c00296{bottom:346.888500px;}
.y25_c00296{bottom:346.923000px;}
.y26_c00296{bottom:347.119500px;}
.y27_c00296{bottom:347.343000px;}
.y28_c00296{bottom:347.976000px;}
.y29_c00296{bottom:348.279000px;}
.y2a_c00296{bottom:348.400500px;}
.y2b_c00296{bottom:348.750000px;}
.y2c_c00296{bottom:349.119000px;}
.y2d_c00296{bottom:349.243500px;}
.y2e_c00296{bottom:349.537500px;}
.y2f_c00296{bottom:350.205000px;}
.y30_c00296{bottom:350.305500px;}
.y22_c00296{bottom:360.180000px;}
.y21_c00296{bottom:370.372500px;}
.y20_c00296{bottom:393.100500px;}
.y1f_c00296{bottom:407.428500px;}
.y1e_c00296{bottom:415.630500px;}
.y1d_c00296{bottom:460.840500px;}
.y1c_c00296{bottom:483.709500px;}
.y1b_c00296{bottom:506.367000px;}
.y1a_c00296{bottom:528.795000px;}
.y19_c00296{bottom:551.719500px;}
.y18_c00296{bottom:574.399500px;}
.y17_c00296{bottom:596.578500px;}
.ye_c00296{bottom:664.311000px;}
.yd_c00296{bottom:686.997000px;}
.yc_c00296{bottom:709.659000px;}
.y15_c00296{bottom:729.000000px;}
.yb_c00296{bottom:732.415500px;}
.y14_c00296{bottom:738.720000px;}
.y16_c00296{bottom:738.990000px;}
.y12_c00296{bottom:744.120000px;}
.y13_c00296{bottom:744.930000px;}
.ya_c00296{bottom:755.413500px;}
.y11_c00296{bottom:761.400000px;}
.y9_c00296{bottom:777.988500px;}
.y10_c00296{bottom:788.670000px;}
.y8_c00296{bottom:800.394000px;}
.yf_c00296{bottom:810.810000px;}
.y7_c00296{bottom:823.477500px;}
.y1_c00296{bottom:857.275500px;}
.y2_c00296{bottom:858.053244px;}
.y3_c00296{bottom:858.517548px;}
.y4_c00296{bottom:862.890828px;}
.y5_c00296{bottom:863.710908px;}
.y6_c00296{bottom:867.189948px;}
.h10_c00296{height:14.700000px;}
.hb_c00296{height:22.050000px;}
.h1a_c00296{height:25.200000px;}
.h12_c00296{height:27.300000px;}
.hf_c00296{height:30.450000px;}
.hd_c00296{height:31.500000px;}
.hc_c00296{height:42.000000px;}
.h18_c00296{height:45.150000px;}
.h1b_c00296{height:47.250000px;}
.h14_c00296{height:48.301956px;}
.h19_c00296{height:49.350000px;}
.h13_c00296{height:49.351999px;}
.h17_c00296{height:50.400000px;}
.h16_c00296{height:52.500000px;}
.h15_c00296{height:53.550000px;}
.h9_c00296{height:56.700000px;}
.ha_c00296{height:65.100000px;}
.he_c00296{height:66.150000px;}
.h3_c00296{height:67.200000px;}
.h7_c00296{height:69.300000px;}
.h5_c00296{height:70.350000px;}
.h6_c00296{height:71.400000px;}
.h4_c00296{height:72.450000px;}
.h8_c00296{height:73.500000px;}
.h2_c00296{height:85.008528px;}
.h11_c00296{height:89.250000px;}
.h1_c00296{height:1005.000000px;}
.h0_c00296{height:1005.150000px;}
.w0_c00296{width:702.540000px;}
.w1_c00296{width:702.750000px;}
.x0_c00296{left:0.000000px;}
.x15_c00296{left:70.470000px;}
.x67_c00296{left:73.710000px;}
.x20_c00296{left:75.060000px;}
.x78_c00296{left:76.410000px;}
.x8a_c00296{left:79.110000px;}
.x91_c00296{left:80.460000px;}
.x7_c00296{left:82.620000px;}
.x5f_c00296{left:84.780000px;}
.x79_c00296{left:86.400000px;}
.x97_c00296{left:88.290000px;}
.xac_c00296{left:90.567000px;}
.x3c_c00296{left:108.270000px;}
.x16_c00296{left:115.020000px;}
.x68_c00296{left:116.100000px;}
.x4d_c00296{left:117.180000px;}
.x8_c00296{left:119.610000px;}
.xc5_c00296{left:122.040000px;}
.xa4_c00296{left:124.035000px;}
.x60_c00296{left:126.090000px;}
.x9_c00296{left:129.870000px;}
.x71_c00296{left:131.490000px;}
.x31_c00296{left:133.380000px;}
.xbd_c00296{left:136.080000px;}
.x69_c00296{left:138.510000px;}
.x86_c00296{left:139.860000px;}
.xad_c00296{left:142.930500px;}
.x61_c00296{left:145.800000px;}
.x1_c00296{left:148.240500px;}
.xa5_c00296{left:152.091000px;}
.x3d_c00296{left:153.360000px;}
.x17_c00296{left:156.330000px;}
.x21_c00296{left:157.680000px;}
.x2a_c00296{left:159.300000px;}
.xbc_c00296{left:160.380000px;}
.x72_c00296{left:162.270000px;}
.x62_c00296{left:163.620000px;}
.xae_c00296{left:165.339000px;}
.xbe_c00296{left:167.400000px;}
.x4e_c00296{left:169.290000px;}
.xa_c00296{left:171.180000px;}
.x2_c00296{left:172.520695px;}
.x3e_c00296{left:173.880000px;}
.x92_c00296{left:175.500000px;}
.x99_c00296{left:177.390000px;}
.x87_c00296{left:179.820000px;}
.x18_c00296{left:181.170000px;}
.xa6_c00296{left:183.970500px;}
.x3_c00296{left:187.015686px;}
.xbf_c00296{left:189.270000px;}
.x4f_c00296{left:190.350000px;}
.x22_c00296{left:191.430000px;}
.x7f_c00296{left:196.830000px;}
.x6a_c00296{left:200.340000px;}
.x46_c00296{left:202.230000px;}
.x9a_c00296{left:203.850000px;}
.x32_c00296{left:206.280000px;}
.x3f_c00296{left:207.630000px;}
.xcc_c00296{left:211.950000px;}
.xb_c00296{left:213.570000px;}
.xaf_c00296{left:215.821500px;}
.x40_c00296{left:218.430000px;}
.x93_c00296{left:219.780000px;}
.x19_c00296{left:221.670000px;}
.x80_c00296{left:224.640000px;}
.xcd_c00296{left:227.340000px;}
.x6b_c00296{left:231.390000px;}
.xc0_c00296{left:235.440000px;}
.xc6_c00296{left:236.520000px;}
.x73_c00296{left:239.760000px;}
.x2b_c00296{left:241.110000px;}
.x1a_c00296{left:242.730000px;}
.xc_c00296{left:245.970000px;}
.x7a_c00296{left:249.480000px;}
.x50_c00296{left:251.370000px;}
.x47_c00296{left:255.150000px;}
.x41_c00296{left:258.120000px;}
.x9b_c00296{left:259.470000px;}
.x33_c00296{left:263.250000px;}
.xc1_c00296{left:265.410000px;}
.x8b_c00296{left:267.840000px;}
.x51_c00296{left:269.460000px;}
.x81_c00296{left:272.160000px;}
.xd_c00296{left:274.050000px;}
.x23_c00296{left:277.560000px;}
.x63_c00296{left:280.530000px;}
.x34_c00296{left:286.200000px;}
.x9c_c00296{left:287.820000px;}
.x24_c00296{left:291.600000px;}
.x82_c00296{left:295.920000px;}
.xc7_c00296{left:298.350000px;}
.x7b_c00296{left:299.700000px;}
.xe_c00296{left:301.860000px;}
.x48_c00296{left:305.640000px;}
.xc2_c00296{left:309.150000px;}
.x2c_c00296{left:311.310000px;}
.x52_c00296{left:315.900000px;}
.xa7_c00296{left:317.622000px;}
.x8c_c00296{left:319.140000px;}
.x6c_c00296{left:320.490000px;}
.x4_c00296{left:323.544021px;}
.x2d_c00296{left:325.890000px;}
.x25_c00296{left:331.020000px;}
.xb0_c00296{left:333.022500px;}
.x42_c00296{left:334.260000px;}
.x1b_c00296{left:336.420000px;}
.x49_c00296{left:340.200000px;}
.x64_c00296{left:345.060000px;}
.xf_c00296{left:347.760000px;}
.x5_c00296{left:349.145893px;}
.xb9_c00296{left:350.190000px;}
.x35_c00296{left:351.810000px;}
.xc8_c00296{left:356.940000px;}
.x10_c00296{left:358.560000px;}
.x83_c00296{left:361.260000px;}
.x2e_c00296{left:364.500000px;}
.x26_c00296{left:367.200000px;}
.x9d_c00296{left:369.360000px;}
.x43_c00296{left:371.250000px;}
.x36_c00296{left:373.680000px;}
.xba_c00296{left:380.160000px;}
.x53_c00296{left:382.050000px;}
.x8d_c00296{left:383.670000px;}
.xa8_c00296{left:384.798000px;}
.x4a_c00296{left:385.830000px;}
.x6d_c00296{left:390.960000px;}
.xb1_c00296{left:392.766000px;}
.x27_c00296{left:394.470000px;}
.x7c_c00296{left:397.710000px;}
.x2f_c00296{left:400.410000px;}
.x74_c00296{left:403.920000px;}
.x1c_c00296{left:409.320000px;}
.x28_c00296{left:411.210000px;}
.x94_c00296{left:412.290000px;}
.xb5_c00296{left:417.434907px;}
.x9e_c00296{left:419.580000px;}
.x37_c00296{left:423.630000px;}
.x75_c00296{left:425.250000px;}
.x4b_c00296{left:427.680000px;}
.x11_c00296{left:429.030000px;}
.x9f_c00296{left:431.460000px;}
.x84_c00296{left:434.700000px;}
.x38_c00296{left:436.860000px;}
.x7d_c00296{left:438.480000px;}
.x6e_c00296{left:441.990000px;}
.x98_c00296{left:443.070000px;}
.x44_c00296{left:444.420000px;}
.x65_c00296{left:446.580000px;}
.x12_c00296{left:447.660000px;}
.x88_c00296{left:449.820000px;}
.xc3_c00296{left:451.170000px;}
.x39_c00296{left:453.600000px;}
.xa9_c00296{left:455.277000px;}
.xb2_c00296{left:456.450000px;}
.x6_c00296{left:457.757174px;}
.x8e_c00296{left:459.000000px;}
.xc9_c00296{left:460.350000px;}
.x85_c00296{left:463.860000px;}
.x29_c00296{left:465.480000px;}
.x8f_c00296{left:469.530000px;}
.x1d_c00296{left:475.200000px;}
.xb6_c00296{left:478.726875px;}
.x4c_c00296{left:479.790000px;}
.xa0_c00296{left:483.840000px;}
.x30_c00296{left:484.920000px;}
.x54_c00296{left:488.430000px;}
.x3a_c00296{left:490.320000px;}
.x6f_c00296{left:491.400000px;}
.x76_c00296{left:493.560000px;}
.xb3_c00296{left:496.345500px;}
.x1e_c00296{left:497.880000px;}
.x13_c00296{left:507.060000px;}
.x77_c00296{left:509.220000px;}
.xb7_c00296{left:512.478102px;}
.x55_c00296{left:514.890000px;}
.xbb_c00296{left:515.970000px;}
.x89_c00296{left:518.940000px;}
.x70_c00296{left:521.640000px;}
.x90_c00296{left:523.260000px;}
.x1f_c00296{left:525.150000px;}
.xa1_c00296{left:527.040000px;}
.x45_c00296{left:528.930000px;}
.x7e_c00296{left:531.090000px;}
.xc4_c00296{left:534.330000px;}
.x56_c00296{left:538.110000px;}
.xb4_c00296{left:541.719000px;}
.x95_c00296{left:544.320000px;}
.x3b_c00296{left:545.670000px;}
.xb8_c00296{left:548.659531px;}
.x66_c00296{left:552.960000px;}
.xca_c00296{left:554.850000px;}
.xcb_c00296{left:576.180000px;}
.x14_c00296{left:583.200000px;}
.x5c_c00296{left:585.630000px;}
.xa2_c00296{left:588.060000px;}
.x96_c00296{left:589.680000px;}
.x57_c00296{left:590.760000px;}
.xaa_c00296{left:592.428000px;}
.xa3_c00296{left:594.270000px;}
.x5e_c00296{left:596.970000px;}
.x58_c00296{left:598.860000px;}
.x5d_c00296{left:601.020000px;}
.x59_c00296{left:602.370000px;}
.x5a_c00296{left:604.530000px;}
.xab_c00296{left:606.742500px;}
.x5b_c00296{left:608.580000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
.fse_c00296{font-size:13.066667pt;}
.fs9_c00296{font-size:19.600000pt;}
.fs18_c00296{font-size:22.400000pt;}
.fs10_c00296{font-size:24.266667pt;}
.fsd_c00296{font-size:27.066667pt;}
.fsb_c00296{font-size:28.000000pt;}
.fsa_c00296{font-size:37.333333pt;}
.fs16_c00296{font-size:40.133333pt;}
.fs19_c00296{font-size:42.000000pt;}
.fs12_c00296{font-size:42.935072pt;}
.fs17_c00296{font-size:43.866667pt;}
.fs11_c00296{font-size:43.868443pt;}
.fs15_c00296{font-size:44.800000pt;}
.fs14_c00296{font-size:46.666667pt;}
.fs13_c00296{font-size:47.600000pt;}
.fs7_c00296{font-size:50.400000pt;}
.fs8_c00296{font-size:57.866667pt;}
.fsc_c00296{font-size:58.800000pt;}
.fs1_c00296{font-size:59.733333pt;}
.fs5_c00296{font-size:61.600000pt;}
.fs3_c00296{font-size:62.533333pt;}
.fs4_c00296{font-size:63.466667pt;}
.fs2_c00296{font-size:64.400000pt;}
.fs6_c00296{font-size:65.333333pt;}
.fs0_c00296{font-size:75.563136pt;}
.fsf_c00296{font-size:79.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y55_c00296{bottom:85.300000pt;}
.y54_c00296{bottom:90.650667pt;}
.y53_c00296{bottom:102.602667pt;}
.y52_c00296{bottom:104.100000pt;}
.y50_c00296{bottom:147.422667pt;}
.y51_c00296{bottom:148.226667pt;}
.y4e_c00296{bottom:163.318667pt;}
.y4f_c00296{bottom:164.685333pt;}
.y4b_c00296{bottom:195.600000pt;}
.y4d_c00296{bottom:210.828000pt;}
.y49_c00296{bottom:211.073128pt;}
.y4a_c00296{bottom:211.073421pt;}
.y4c_c00296{bottom:226.540000pt;}
.y44_c00296{bottom:227.731817pt;}
.y46_c00296{bottom:227.731956pt;}
.y45_c00296{bottom:227.732327pt;}
.y47_c00296{bottom:227.732611pt;}
.y48_c00296{bottom:227.732705pt;}
.y36_c00296{bottom:240.961333pt;}
.y37_c00296{bottom:241.380241pt;}
.y38_c00296{bottom:241.559509pt;}
.y39_c00296{bottom:241.963369pt;}
.y3a_c00296{bottom:242.084341pt;}
.y3b_c00296{bottom:242.233417pt;}
.y3c_c00296{bottom:242.823301pt;}
.y3d_c00296{bottom:242.900977pt;}
.y3e_c00296{bottom:243.046045pt;}
.y3f_c00296{bottom:243.378925pt;}
.y40_c00296{bottom:243.888397pt;}
.y41_c00296{bottom:244.207561pt;}
.y42_c00296{bottom:244.434241pt;}
.y43_c00296{bottom:244.570549pt;}
.y35_c00296{bottom:263.040000pt;}
.y33_c00296{bottom:268.080000pt;}
.y32_c00296{bottom:268.800000pt;}
.y31_c00296{bottom:272.880000pt;}
.y34_c00296{bottom:276.240000pt;}
.y23_c00296{bottom:308.156000pt;}
.y24_c00296{bottom:308.345333pt;}
.y25_c00296{bottom:308.376000pt;}
.y26_c00296{bottom:308.550667pt;}
.y27_c00296{bottom:308.749333pt;}
.y28_c00296{bottom:309.312000pt;}
.y29_c00296{bottom:309.581333pt;}
.y2a_c00296{bottom:309.689333pt;}
.y2b_c00296{bottom:310.000000pt;}
.y2c_c00296{bottom:310.328000pt;}
.y2d_c00296{bottom:310.438667pt;}
.y2e_c00296{bottom:310.700000pt;}
.y2f_c00296{bottom:311.293333pt;}
.y30_c00296{bottom:311.382667pt;}
.y22_c00296{bottom:320.160000pt;}
.y21_c00296{bottom:329.220000pt;}
.y20_c00296{bottom:349.422667pt;}
.y1f_c00296{bottom:362.158667pt;}
.y1e_c00296{bottom:369.449333pt;}
.y1d_c00296{bottom:409.636000pt;}
.y1c_c00296{bottom:429.964000pt;}
.y1b_c00296{bottom:450.104000pt;}
.y1a_c00296{bottom:470.040000pt;}
.y19_c00296{bottom:490.417333pt;}
.y18_c00296{bottom:510.577333pt;}
.y17_c00296{bottom:530.292000pt;}
.ye_c00296{bottom:590.498667pt;}
.yd_c00296{bottom:610.664000pt;}
.yc_c00296{bottom:630.808000pt;}
.y15_c00296{bottom:648.000000pt;}
.yb_c00296{bottom:651.036000pt;}
.y14_c00296{bottom:656.640000pt;}
.y16_c00296{bottom:656.880000pt;}
.y12_c00296{bottom:661.440000pt;}
.y13_c00296{bottom:662.160000pt;}
.ya_c00296{bottom:671.478667pt;}
.y11_c00296{bottom:676.800000pt;}
.y9_c00296{bottom:691.545333pt;}
.y10_c00296{bottom:701.040000pt;}
.y8_c00296{bottom:711.461333pt;}
.yf_c00296{bottom:720.720000pt;}
.y7_c00296{bottom:731.980000pt;}
.y1_c00296{bottom:762.022667pt;}
.y2_c00296{bottom:762.713995pt;}
.y3_c00296{bottom:763.126709pt;}
.y4_c00296{bottom:767.014069pt;}
.y5_c00296{bottom:767.743029pt;}
.y6_c00296{bottom:770.835509pt;}
.h10_c00296{height:13.066667pt;}
.hb_c00296{height:19.600000pt;}
.h1a_c00296{height:22.400000pt;}
.h12_c00296{height:24.266667pt;}
.hf_c00296{height:27.066667pt;}
.hd_c00296{height:28.000000pt;}
.hc_c00296{height:37.333333pt;}
.h18_c00296{height:40.133333pt;}
.h1b_c00296{height:42.000000pt;}
.h14_c00296{height:42.935072pt;}
.h19_c00296{height:43.866667pt;}
.h13_c00296{height:43.868443pt;}
.h17_c00296{height:44.800000pt;}
.h16_c00296{height:46.666667pt;}
.h15_c00296{height:47.600000pt;}
.h9_c00296{height:50.400000pt;}
.ha_c00296{height:57.866667pt;}
.he_c00296{height:58.800000pt;}
.h3_c00296{height:59.733333pt;}
.h7_c00296{height:61.600000pt;}
.h5_c00296{height:62.533333pt;}
.h6_c00296{height:63.466667pt;}
.h4_c00296{height:64.400000pt;}
.h8_c00296{height:65.333333pt;}
.h2_c00296{height:75.563136pt;}
.h11_c00296{height:79.333333pt;}
.h1_c00296{height:893.333333pt;}
.h0_c00296{height:893.466667pt;}
.w0_c00296{width:624.480000pt;}
.w1_c00296{width:624.666667pt;}
.x0_c00296{left:0.000000pt;}
.x15_c00296{left:62.640000pt;}
.x67_c00296{left:65.520000pt;}
.x20_c00296{left:66.720000pt;}
.x78_c00296{left:67.920000pt;}
.x8a_c00296{left:70.320000pt;}
.x91_c00296{left:71.520000pt;}
.x7_c00296{left:73.440000pt;}
.x5f_c00296{left:75.360000pt;}
.x79_c00296{left:76.800000pt;}
.x97_c00296{left:78.480000pt;}
.xac_c00296{left:80.504000pt;}
.x3c_c00296{left:96.240000pt;}
.x16_c00296{left:102.240000pt;}
.x68_c00296{left:103.200000pt;}
.x4d_c00296{left:104.160000pt;}
.x8_c00296{left:106.320000pt;}
.xc5_c00296{left:108.480000pt;}
.xa4_c00296{left:110.253333pt;}
.x60_c00296{left:112.080000pt;}
.x9_c00296{left:115.440000pt;}
.x71_c00296{left:116.880000pt;}
.x31_c00296{left:118.560000pt;}
.xbd_c00296{left:120.960000pt;}
.x69_c00296{left:123.120000pt;}
.x86_c00296{left:124.320000pt;}
.xad_c00296{left:127.049333pt;}
.x61_c00296{left:129.600000pt;}
.x1_c00296{left:131.769333pt;}
.xa5_c00296{left:135.192000pt;}
.x3d_c00296{left:136.320000pt;}
.x17_c00296{left:138.960000pt;}
.x21_c00296{left:140.160000pt;}
.x2a_c00296{left:141.600000pt;}
.xbc_c00296{left:142.560000pt;}
.x72_c00296{left:144.240000pt;}
.x62_c00296{left:145.440000pt;}
.xae_c00296{left:146.968000pt;}
.xbe_c00296{left:148.800000pt;}
.x4e_c00296{left:150.480000pt;}
.xa_c00296{left:152.160000pt;}
.x2_c00296{left:153.351729pt;}
.x3e_c00296{left:154.560000pt;}
.x92_c00296{left:156.000000pt;}
.x99_c00296{left:157.680000pt;}
.x87_c00296{left:159.840000pt;}
.x18_c00296{left:161.040000pt;}
.xa6_c00296{left:163.529333pt;}
.x3_c00296{left:166.236165pt;}
.xbf_c00296{left:168.240000pt;}
.x4f_c00296{left:169.200000pt;}
.x22_c00296{left:170.160000pt;}
.x7f_c00296{left:174.960000pt;}
.x6a_c00296{left:178.080000pt;}
.x46_c00296{left:179.760000pt;}
.x9a_c00296{left:181.200000pt;}
.x32_c00296{left:183.360000pt;}
.x3f_c00296{left:184.560000pt;}
.xcc_c00296{left:188.400000pt;}
.xb_c00296{left:189.840000pt;}
.xaf_c00296{left:191.841333pt;}
.x40_c00296{left:194.160000pt;}
.x93_c00296{left:195.360000pt;}
.x19_c00296{left:197.040000pt;}
.x80_c00296{left:199.680000pt;}
.xcd_c00296{left:202.080000pt;}
.x6b_c00296{left:205.680000pt;}
.xc0_c00296{left:209.280000pt;}
.xc6_c00296{left:210.240000pt;}
.x73_c00296{left:213.120000pt;}
.x2b_c00296{left:214.320000pt;}
.x1a_c00296{left:215.760000pt;}
.xc_c00296{left:218.640000pt;}
.x7a_c00296{left:221.760000pt;}
.x50_c00296{left:223.440000pt;}
.x47_c00296{left:226.800000pt;}
.x41_c00296{left:229.440000pt;}
.x9b_c00296{left:230.640000pt;}
.x33_c00296{left:234.000000pt;}
.xc1_c00296{left:235.920000pt;}
.x8b_c00296{left:238.080000pt;}
.x51_c00296{left:239.520000pt;}
.x81_c00296{left:241.920000pt;}
.xd_c00296{left:243.600000pt;}
.x23_c00296{left:246.720000pt;}
.x63_c00296{left:249.360000pt;}
.x34_c00296{left:254.400000pt;}
.x9c_c00296{left:255.840000pt;}
.x24_c00296{left:259.200000pt;}
.x82_c00296{left:263.040000pt;}
.xc7_c00296{left:265.200000pt;}
.x7b_c00296{left:266.400000pt;}
.xe_c00296{left:268.320000pt;}
.x48_c00296{left:271.680000pt;}
.xc2_c00296{left:274.800000pt;}
.x2c_c00296{left:276.720000pt;}
.x52_c00296{left:280.800000pt;}
.xa7_c00296{left:282.330667pt;}
.x8c_c00296{left:283.680000pt;}
.x6c_c00296{left:284.880000pt;}
.x4_c00296{left:287.594685pt;}
.x2d_c00296{left:289.680000pt;}
.x25_c00296{left:294.240000pt;}
.xb0_c00296{left:296.020000pt;}
.x42_c00296{left:297.120000pt;}
.x1b_c00296{left:299.040000pt;}
.x49_c00296{left:302.400000pt;}
.x64_c00296{left:306.720000pt;}
.xf_c00296{left:309.120000pt;}
.x5_c00296{left:310.351905pt;}
.xb9_c00296{left:311.280000pt;}
.x35_c00296{left:312.720000pt;}
.xc8_c00296{left:317.280000pt;}
.x10_c00296{left:318.720000pt;}
.x83_c00296{left:321.120000pt;}
.x2e_c00296{left:324.000000pt;}
.x26_c00296{left:326.400000pt;}
.x9d_c00296{left:328.320000pt;}
.x43_c00296{left:330.000000pt;}
.x36_c00296{left:332.160000pt;}
.xba_c00296{left:337.920000pt;}
.x53_c00296{left:339.600000pt;}
.x8d_c00296{left:341.040000pt;}
.xa8_c00296{left:342.042667pt;}
.x4a_c00296{left:342.960000pt;}
.x6d_c00296{left:347.520000pt;}
.xb1_c00296{left:349.125333pt;}
.x27_c00296{left:350.640000pt;}
.x7c_c00296{left:353.520000pt;}
.x2f_c00296{left:355.920000pt;}
.x74_c00296{left:359.040000pt;}
.x1c_c00296{left:363.840000pt;}
.x28_c00296{left:365.520000pt;}
.x94_c00296{left:366.480000pt;}
.xb5_c00296{left:371.053251pt;}
.x9e_c00296{left:372.960000pt;}
.x37_c00296{left:376.560000pt;}
.x75_c00296{left:378.000000pt;}
.x4b_c00296{left:380.160000pt;}
.x11_c00296{left:381.360000pt;}
.x9f_c00296{left:383.520000pt;}
.x84_c00296{left:386.400000pt;}
.x38_c00296{left:388.320000pt;}
.x7d_c00296{left:389.760000pt;}
.x6e_c00296{left:392.880000pt;}
.x98_c00296{left:393.840000pt;}
.x44_c00296{left:395.040000pt;}
.x65_c00296{left:396.960000pt;}
.x12_c00296{left:397.920000pt;}
.x88_c00296{left:399.840000pt;}
.xc3_c00296{left:401.040000pt;}
.x39_c00296{left:403.200000pt;}
.xa9_c00296{left:404.690667pt;}
.xb2_c00296{left:405.733333pt;}
.x6_c00296{left:406.895265pt;}
.x8e_c00296{left:408.000000pt;}
.xc9_c00296{left:409.200000pt;}
.x85_c00296{left:412.320000pt;}
.x29_c00296{left:413.760000pt;}
.x8f_c00296{left:417.360000pt;}
.x1d_c00296{left:422.400000pt;}
.xb6_c00296{left:425.535000pt;}
.x4c_c00296{left:426.480000pt;}
.xa0_c00296{left:430.080000pt;}
.x30_c00296{left:431.040000pt;}
.x54_c00296{left:434.160000pt;}
.x3a_c00296{left:435.840000pt;}
.x6f_c00296{left:436.800000pt;}
.x76_c00296{left:438.720000pt;}
.xb3_c00296{left:441.196000pt;}
.x1e_c00296{left:442.560000pt;}
.x13_c00296{left:450.720000pt;}
.x77_c00296{left:452.640000pt;}
.xb7_c00296{left:455.536091pt;}
.x55_c00296{left:457.680000pt;}
.xbb_c00296{left:458.640000pt;}
.x89_c00296{left:461.280000pt;}
.x70_c00296{left:463.680000pt;}
.x90_c00296{left:465.120000pt;}
.x1f_c00296{left:466.800000pt;}
.xa1_c00296{left:468.480000pt;}
.x45_c00296{left:470.160000pt;}
.x7e_c00296{left:472.080000pt;}
.xc4_c00296{left:474.960000pt;}
.x56_c00296{left:478.320000pt;}
.xb4_c00296{left:481.528000pt;}
.x95_c00296{left:483.840000pt;}
.x3b_c00296{left:485.040000pt;}
.xb8_c00296{left:487.697361pt;}
.x66_c00296{left:491.520000pt;}
.xca_c00296{left:493.200000pt;}
.xcb_c00296{left:512.160000pt;}
.x14_c00296{left:518.400000pt;}
.x5c_c00296{left:520.560000pt;}
.xa2_c00296{left:522.720000pt;}
.x96_c00296{left:524.160000pt;}
.x57_c00296{left:525.120000pt;}
.xaa_c00296{left:526.602667pt;}
.xa3_c00296{left:528.240000pt;}
.x5e_c00296{left:530.640000pt;}
.x58_c00296{left:532.320000pt;}
.x5d_c00296{left:534.240000pt;}
.x59_c00296{left:535.440000pt;}
.x5a_c00296{left:537.360000pt;}
.xab_c00296{left:539.326667pt;}
.x5b_c00296{left:540.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m168_c00297{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m137_c00297{transform:matrix(0.030288,-0.000303,0.002500,0.249988,0,0);-ms-transform:matrix(0.030288,-0.000303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.030288,-0.000303,0.002500,0.249988,0,0);}
.m188_c00297{transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039455,0.000000,0.000000,0.250000,0,0);}
.mac_c00297{transform:matrix(0.064071,-0.000705,0.002750,0.249985,0,0);-ms-transform:matrix(0.064071,-0.000705,0.002750,0.249985,0,0);-webkit-transform:matrix(0.064071,-0.000705,0.002750,0.249985,0,0);}
.m76_c00297{transform:matrix(0.099624,-0.001096,0.002750,0.249985,0,0);-ms-transform:matrix(0.099624,-0.001096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.099624,-0.001096,0.002750,0.249985,0,0);}
.m13e_c00297{transform:matrix(0.100625,-0.001006,0.002500,0.249988,0,0);-ms-transform:matrix(0.100625,-0.001006,0.002500,0.249988,0,0);-webkit-transform:matrix(0.100625,-0.001006,0.002500,0.249988,0,0);}
.m2c_c00297{transform:matrix(0.110503,-0.001216,0.002750,0.249985,0,0);-ms-transform:matrix(0.110503,-0.001216,0.002750,0.249985,0,0);-webkit-transform:matrix(0.110503,-0.001216,0.002750,0.249985,0,0);}
.m14d_c00297{transform:matrix(0.113004,-0.001130,0.002500,0.249988,0,0);-ms-transform:matrix(0.113004,-0.001130,0.002500,0.249988,0,0);-webkit-transform:matrix(0.113004,-0.001130,0.002500,0.249988,0,0);}
.m132_c00297{transform:matrix(0.122335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122335,0.000000,0.000000,0.250000,0,0);}
.m138_c00297{transform:matrix(0.126459,-0.001265,0.002500,0.249988,0,0);-ms-transform:matrix(0.126459,-0.001265,0.002500,0.249988,0,0);-webkit-transform:matrix(0.126459,-0.001265,0.002500,0.249988,0,0);}
.mfe_c00297{transform:matrix(0.136395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136395,0.000000,0.000000,0.250000,0,0);}
.mbe_c00297{transform:matrix(0.139840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139840,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.141911,-0.001561,0.002750,0.249985,0,0);-ms-transform:matrix(0.141911,-0.001561,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141911,-0.001561,0.002750,0.249985,0,0);}
.m30_c00297{transform:matrix(0.142561,-0.001568,0.002750,0.249985,0,0);-ms-transform:matrix(0.142561,-0.001568,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142561,-0.001568,0.002750,0.249985,0,0);}
.m7c_c00297{transform:matrix(0.143856,-0.001582,0.002750,0.249985,0,0);-ms-transform:matrix(0.143856,-0.001582,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143856,-0.001582,0.002750,0.249985,0,0);}
.m2f_c00297{transform:matrix(0.146176,-0.001608,0.002750,0.249985,0,0);-ms-transform:matrix(0.146176,-0.001608,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146176,-0.001608,0.002750,0.249985,0,0);}
.m40_c00297{transform:matrix(0.147306,-0.001620,0.002750,0.249985,0,0);-ms-transform:matrix(0.147306,-0.001620,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147306,-0.001620,0.002750,0.249985,0,0);}
.m59_c00297{transform:matrix(0.147676,-0.001624,0.002750,0.249985,0,0);-ms-transform:matrix(0.147676,-0.001624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147676,-0.001624,0.002750,0.249985,0,0);}
.mdc_c00297{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);}
.m15_c00297{transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);-ms-transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);}
.m17f_c00297{transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);}
.me9_c00297{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);}
.mb4_c00297{transform:matrix(0.151821,-0.001670,0.002750,0.249985,0,0);-ms-transform:matrix(0.151821,-0.001670,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151821,-0.001670,0.002750,0.249985,0,0);}
.mfa_c00297{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);}
.m36_c00297{transform:matrix(0.154416,-0.001699,0.002750,0.249985,0,0);-ms-transform:matrix(0.154416,-0.001699,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154416,-0.001699,0.002750,0.249985,0,0);}
.mdb_c00297{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);}
.mf5_c00297{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);}
.m66_c00297{transform:matrix(0.155476,-0.001710,0.002750,0.249985,0,0);-ms-transform:matrix(0.155476,-0.001710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155476,-0.001710,0.002750,0.249985,0,0);}
.m9b_c00297{transform:matrix(0.156431,-0.001721,0.002750,0.249985,0,0);-ms-transform:matrix(0.156431,-0.001721,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156431,-0.001721,0.002750,0.249985,0,0);}
.me3_c00297{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);}
.m3f_c00297{transform:matrix(0.156671,-0.001723,0.002750,0.249985,0,0);-ms-transform:matrix(0.156671,-0.001723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156671,-0.001723,0.002750,0.249985,0,0);}
.m92_c00297{transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);-ms-transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157040,-0.001727,0.002750,0.249985,0,0);}
.m9f_c00297{transform:matrix(0.157180,-0.001729,0.002750,0.249985,0,0);-ms-transform:matrix(0.157180,-0.001729,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157180,-0.001729,0.002750,0.249985,0,0);}
.m4c_c00297{transform:matrix(0.157605,-0.001734,0.002750,0.249985,0,0);-ms-transform:matrix(0.157605,-0.001734,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157605,-0.001734,0.002750,0.249985,0,0);}
.mf2_c00297{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);}
.mc1_c00297{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);}
.mf9_c00297{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);}
.maf_c00297{transform:matrix(0.160595,-0.001767,0.002750,0.249985,0,0);-ms-transform:matrix(0.160595,-0.001767,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160595,-0.001767,0.002750,0.249985,0,0);}
.mda_c00297{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);}
.m115_c00297{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);}
.mc4_c00297{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);}
.ma9_c00297{transform:matrix(0.161885,-0.001781,0.002750,0.249985,0,0);-ms-transform:matrix(0.161885,-0.001781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161885,-0.001781,0.002750,0.249985,0,0);}
.m25_c00297{transform:matrix(0.161935,-0.001781,0.002750,0.249985,0,0);-ms-transform:matrix(0.161935,-0.001781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161935,-0.001781,0.002750,0.249985,0,0);}
.m87_c00297{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);}
.me0_c00297{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);}
.me4_c00297{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);}
.m37_c00297{transform:matrix(0.162880,-0.001792,0.002750,0.249985,0,0);-ms-transform:matrix(0.162880,-0.001792,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162880,-0.001792,0.002750,0.249985,0,0);}
.m41_c00297{transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);-ms-transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);}
.ma4_c00297{transform:matrix(0.163350,-0.001797,0.002750,0.249985,0,0);-ms-transform:matrix(0.163350,-0.001797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163350,-0.001797,0.002750,0.249985,0,0);}
.ma7_c00297{transform:matrix(0.163555,-0.001799,0.002750,0.249985,0,0);-ms-transform:matrix(0.163555,-0.001799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163555,-0.001799,0.002750,0.249985,0,0);}
.ma5_c00297{transform:matrix(0.163590,-0.001799,0.002750,0.249985,0,0);-ms-transform:matrix(0.163590,-0.001799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163590,-0.001799,0.002750,0.249985,0,0);}
.meb_c00297{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);}
.m4e_c00297{transform:matrix(0.164700,-0.001812,0.002750,0.249985,0,0);-ms-transform:matrix(0.164700,-0.001812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164700,-0.001812,0.002750,0.249985,0,0);}
.ma6_c00297{transform:matrix(0.164730,-0.001812,0.002750,0.249985,0,0);-ms-transform:matrix(0.164730,-0.001812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164730,-0.001812,0.002750,0.249985,0,0);}
.m72_c00297{transform:matrix(0.165475,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165475,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165475,-0.001820,0.002750,0.249985,0,0);}
.mb_c00297{transform:matrix(0.165505,-0.001821,0.002750,0.249985,0,0);-ms-transform:matrix(0.165505,-0.001821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165505,-0.001821,0.002750,0.249985,0,0);}
.m70_c00297{transform:matrix(0.166945,-0.001836,0.002750,0.249985,0,0);-ms-transform:matrix(0.166945,-0.001836,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166945,-0.001836,0.002750,0.249985,0,0);}
.m67_c00297{transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);-ms-transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);}
.m89_c00297{transform:matrix(0.167485,-0.001842,0.002750,0.249985,0,0);-ms-transform:matrix(0.167485,-0.001842,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167485,-0.001842,0.002750,0.249985,0,0);}
.m125_c00297{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);}
.m48_c00297{transform:matrix(0.167615,-0.001844,0.002750,0.249985,0,0);-ms-transform:matrix(0.167615,-0.001844,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167615,-0.001844,0.002750,0.249985,0,0);}
.mb0_c00297{transform:matrix(0.167770,-0.001845,0.002750,0.249985,0,0);-ms-transform:matrix(0.167770,-0.001845,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167770,-0.001845,0.002750,0.249985,0,0);}
.m8b_c00297{transform:matrix(0.167830,-0.001846,0.002750,0.249985,0,0);-ms-transform:matrix(0.167830,-0.001846,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167830,-0.001846,0.002750,0.249985,0,0);}
.mfd_c00297{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);}
.m8a_c00297{transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-ms-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168205,-0.001850,0.002750,0.249985,0,0);}
.mec_c00297{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);}
.m2b_c00297{transform:matrix(0.168685,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168685,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168685,-0.001856,0.002750,0.249985,0,0);}
.m3b_c00297{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);}
.m134_c00297{transform:matrix(0.169717,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169717,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169717,-0.001697,0.002500,0.249988,0,0);}
.mc0_c00297{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);}
.m27_c00297{transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);-ms-transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);}
.m9d_c00297{transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);}
.m101_c00297{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);}
.m81_c00297{transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);-ms-transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);}
.m120_c00297{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);}
.m1b_c00297{transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);-ms-transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);}
.m94_c00297{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);}
.m90_c00297{transform:matrix(0.173300,-0.001906,0.002750,0.249985,0,0);-ms-transform:matrix(0.173300,-0.001906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173300,-0.001906,0.002750,0.249985,0,0);}
.mbd_c00297{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);}
.md7_c00297{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);}
.m4a_c00297{transform:matrix(0.173584,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173584,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173584,-0.001909,0.002750,0.249985,0,0);}
.m10d_c00297{transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173665,0.000000,0.000000,0.250000,0,0);}
.mee_c00297{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);}
.m117_c00297{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);}
.m171_c00297{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);}
.m116_c00297{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);}
.m3c_c00297{transform:matrix(0.174434,-0.001919,0.002750,0.249985,0,0);-ms-transform:matrix(0.174434,-0.001919,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174434,-0.001919,0.002750,0.249985,0,0);}
.m80_c00297{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);}
.mef_c00297{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);}
.m44_c00297{transform:matrix(0.176144,-0.001938,0.002750,0.249985,0,0);-ms-transform:matrix(0.176144,-0.001938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176144,-0.001938,0.002750,0.249985,0,0);}
.mea_c00297{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);}
.ma8_c00297{transform:matrix(0.176894,-0.001946,0.002750,0.249985,0,0);-ms-transform:matrix(0.176894,-0.001946,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176894,-0.001946,0.002750,0.249985,0,0);}
.m32_c00297{transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177199,-0.001949,0.002750,0.249985,0,0);}
.m31_c00297{transform:matrix(0.177234,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177234,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177234,-0.001950,0.002750,0.249985,0,0);}
.m4_c00297{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);}
.m2d_c00297{transform:matrix(0.178224,-0.001960,0.002750,0.249985,0,0);-ms-transform:matrix(0.178224,-0.001960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178224,-0.001960,0.002750,0.249985,0,0);}
.ma2_c00297{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);}
.m166_c00297{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);}
.m42_c00297{transform:matrix(0.178334,-0.001962,0.002750,0.249985,0,0);-ms-transform:matrix(0.178334,-0.001962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178334,-0.001962,0.002750,0.249985,0,0);}
.md5_c00297{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);}
.m13c_c00297{transform:matrix(0.178871,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178871,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178871,-0.001789,0.002500,0.249988,0,0);}
.m8d_c00297{transform:matrix(0.179019,-0.001969,0.002750,0.249985,0,0);-ms-transform:matrix(0.179019,-0.001969,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179019,-0.001969,0.002750,0.249985,0,0);}
.m4b_c00297{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);}
.m10_c00297{transform:matrix(0.179499,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179499,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179499,-0.001974,0.002750,0.249985,0,0);}
.m8f_c00297{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);}
.md6_c00297{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);}
.mae_c00297{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_c00297{transform:matrix(0.180024,-0.001980,0.002750,0.249985,0,0);-ms-transform:matrix(0.180024,-0.001980,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180024,-0.001980,0.002750,0.249985,0,0);}
.m6a_c00297{transform:matrix(0.180094,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180094,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180094,-0.001981,0.002750,0.249985,0,0);}
.mf4_c00297{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);}
.m5b_c00297{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);}
.m35_c00297{transform:matrix(0.181059,-0.001992,0.002750,0.249985,0,0);-ms-transform:matrix(0.181059,-0.001992,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181059,-0.001992,0.002750,0.249985,0,0);}
.m161_c00297{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_c00297{transform:matrix(0.181359,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181359,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181359,-0.001995,0.002750,0.249985,0,0);}
.m164_c00297{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);}
.m3a_c00297{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);}
.m10a_c00297{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);}
.mb1_c00297{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);}
.mdd_c00297{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);}
.m7f_c00297{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);}
.m16c_c00297{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);}
.mce_c00297{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);}
.m8e_c00297{transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);}
.mf7_c00297{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);}
.m136_c00297{transform:matrix(0.183796,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183796,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183796,-0.001838,0.002500,0.249988,0,0);}
.m5f_c00297{transform:matrix(0.184044,-0.002024,0.002750,0.249985,0,0);-ms-transform:matrix(0.184044,-0.002024,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184044,-0.002024,0.002750,0.249985,0,0);}
.m195_c00297{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);}
.mf1_c00297{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);}
.m196_c00297{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);}
.m19b_c00297{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);}
.m9c_c00297{transform:matrix(0.184704,-0.002032,0.002750,0.249985,0,0);-ms-transform:matrix(0.184704,-0.002032,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184704,-0.002032,0.002750,0.249985,0,0);}
.m100_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);}
.m21_c00297{transform:matrix(0.184809,-0.002033,0.002750,0.249985,0,0);-ms-transform:matrix(0.184809,-0.002033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184809,-0.002033,0.002750,0.249985,0,0);}
.m11f_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);}
.m13d_c00297{transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);}
.m3d_c00297{transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);-ms-transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185014,-0.002035,0.002750,0.249985,0,0);}
.m103_c00297{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);}
.m192_c00297{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);}
.m179_c00297{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);}
.m11e_c00297{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);}
.md9_c00297{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);}
.mb5_c00297{transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186419,-0.002051,0.002750,0.249985,0,0);}
.m18_c00297{transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);}
.m96_c00297{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);}
.me7_c00297{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);}
.m17_c00297{transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);}
.m1_c00297{transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187589,-0.002063,0.002750,0.249985,0,0);}
.m11a_c00297{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);}
.ma3_c00297{transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);}
.m4d_c00297{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);}
.mb9_c00297{transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);-ms-transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188059,-0.002069,0.002750,0.249985,0,0);}
.m16d_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);}
.m12_c00297{transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);-ms-transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);}
.maa_c00297{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);}
.m34_c00297{transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);}
.mb7_c00297{transform:matrix(0.189484,-0.002084,0.002750,0.249985,0,0);-ms-transform:matrix(0.189484,-0.002084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189484,-0.002084,0.002750,0.249985,0,0);}
.mbb_c00297{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);}
.m93_c00297{transform:matrix(0.189569,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189569,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189569,-0.002085,0.002750,0.249985,0,0);}
.m82_c00297{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);}
.ma1_c00297{transform:matrix(0.189819,-0.002088,0.002750,0.249985,0,0);-ms-transform:matrix(0.189819,-0.002088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189819,-0.002088,0.002750,0.249985,0,0);}
.m1d_c00297{transform:matrix(0.190328,-0.002094,0.002750,0.249985,0,0);-ms-transform:matrix(0.190328,-0.002094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190328,-0.002094,0.002750,0.249985,0,0);}
.m17b_c00297{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);}
.m19_c00297{transform:matrix(0.190548,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190548,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190548,-0.002096,0.002750,0.249985,0,0);}
.m119_c00297{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);}
.mad_c00297{transform:matrix(0.190698,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190698,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190698,-0.002098,0.002750,0.249985,0,0);}
.m64_c00297{transform:matrix(0.190853,-0.002099,0.002750,0.249985,0,0);-ms-transform:matrix(0.190853,-0.002099,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190853,-0.002099,0.002750,0.249985,0,0);}
.m135_c00297{transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);}
.m173_c00297{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);}
.me5_c00297{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);}
.m102_c00297{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);}
.m7e_c00297{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);}
.m124_c00297{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);}
.m191_c00297{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);}
.m95_c00297{transform:matrix(0.192228,-0.002115,0.002750,0.249985,0,0);-ms-transform:matrix(0.192228,-0.002115,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192228,-0.002115,0.002750,0.249985,0,0);}
.mde_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);}
.m86_c00297{transform:matrix(0.192798,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192798,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192798,-0.002121,0.002750,0.249985,0,0);}
.mbc_c00297{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);}
.mff_c00297{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);}
.mc6_c00297{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);}
.m123_c00297{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);}
.mc9_c00297{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);}
.me8_c00297{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);}
.m14a_c00297{transform:matrix(0.194065,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194065,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194065,-0.001941,0.002500,0.249988,0,0);}
.mcf_c00297{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);}
.m83_c00297{transform:matrix(0.194153,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194153,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194153,-0.002136,0.002750,0.249985,0,0);}
.m199_c00297{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);}
.m91_c00297{transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194788,-0.002143,0.002750,0.249985,0,0);}
.mf6_c00297{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);}
.mb3_c00297{transform:matrix(0.194958,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.194958,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194958,-0.002145,0.002750,0.249985,0,0);}
.m152_c00297{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);}
.m19a_c00297{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);}
.m33_c00297{transform:matrix(0.195448,-0.002150,0.002750,0.249985,0,0);-ms-transform:matrix(0.195448,-0.002150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195448,-0.002150,0.002750,0.249985,0,0);}
.m54_c00297{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);}
.m118_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);}
.mb8_c00297{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);}
.m85_c00297{transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195968,-0.002156,0.002750,0.249985,0,0);}
.m11_c00297{transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);}
.me_c00297{transform:matrix(0.196343,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196343,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196343,-0.002160,0.002750,0.249985,0,0);}
.m5_c00297{transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);}
.mfb_c00297{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.m139_c00297{transform:matrix(0.196745,-0.001967,0.002500,0.249988,0,0);-ms-transform:matrix(0.196745,-0.001967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196745,-0.001967,0.002500,0.249988,0,0);}
.m9e_c00297{transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196973,-0.002167,0.002750,0.249985,0,0);}
.md8_c00297{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);}
.m18d_c00297{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);}
.m156_c00297{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);}
.m16f_c00297{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);}
.m38_c00297{transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198058,-0.002179,0.002750,0.249985,0,0);}
.m193_c00297{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);}
.m50_c00297{transform:matrix(0.199013,-0.002189,0.002750,0.249985,0,0);-ms-transform:matrix(0.199013,-0.002189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199013,-0.002189,0.002750,0.249985,0,0);}
.m28_c00297{transform:matrix(0.199063,-0.002190,0.002750,0.249985,0,0);-ms-transform:matrix(0.199063,-0.002190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199063,-0.002190,0.002750,0.249985,0,0);}
.m114_c00297{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);}
.m150_c00297{transform:matrix(0.199305,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199305,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199305,-0.001993,0.002500,0.249988,0,0);}
.m20_c00297{transform:matrix(0.199578,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199578,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199578,-0.002195,0.002750,0.249985,0,0);}
.m9_c00297{transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);}
.m14_c00297{transform:matrix(0.199993,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.199993,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199993,-0.002200,0.002750,0.249985,0,0);}
.m5c_c00297{transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200308,-0.002203,0.002750,0.249985,0,0);}
.m11c_c00297{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);}
.mb2_c00297{transform:matrix(0.200558,-0.002206,0.002750,0.249985,0,0);-ms-transform:matrix(0.200558,-0.002206,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200558,-0.002206,0.002750,0.249985,0,0);}
.m2a_c00297{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);}
.m143_c00297{transform:matrix(0.200755,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200755,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200755,-0.002008,0.002500,0.249988,0,0);}
.m109_c00297{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);}
.m5a_c00297{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);}
.m144_c00297{transform:matrix(0.201240,-0.002012,0.002500,0.249988,0,0);-ms-transform:matrix(0.201240,-0.002012,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201240,-0.002012,0.002500,0.249988,0,0);}
.m13_c00297{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);}
.med_c00297{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);}
.ma0_c00297{transform:matrix(0.201743,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201743,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201743,-0.002219,0.002750,0.249985,0,0);}
.m8c_c00297{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);}
.m15a_c00297{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);}
.m15b_c00297{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);}
.m8_c00297{transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);}
.m5d_c00297{transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202858,-0.002231,0.002750,0.249985,0,0);}
.m3e_c00297{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);}
.m46_c00297{transform:matrix(0.203038,-0.002233,0.002750,0.249985,0,0);-ms-transform:matrix(0.203038,-0.002233,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203038,-0.002233,0.002750,0.249985,0,0);}
.m106_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);}
.m15d_c00297{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);}
.m2_c00297{transform:matrix(0.203913,-0.002243,0.002750,0.249985,0,0);-ms-transform:matrix(0.203913,-0.002243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203913,-0.002243,0.002750,0.249985,0,0);}
.m107_c00297{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);}
.m22_c00297{transform:matrix(0.204518,-0.002250,0.002750,0.249985,0,0);-ms-transform:matrix(0.204518,-0.002250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204518,-0.002250,0.002750,0.249985,0,0);}
.m15e_c00297{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);}
.m61_c00297{transform:matrix(0.204658,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204658,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204658,-0.002251,0.002750,0.249985,0,0);}
.mf3_c00297{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);}
.m14f_c00297{transform:matrix(0.204850,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204850,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204850,-0.002048,0.002500,0.249988,0,0);}
.m65_c00297{transform:matrix(0.205178,-0.002257,0.002750,0.249985,0,0);-ms-transform:matrix(0.205178,-0.002257,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205178,-0.002257,0.002750,0.249985,0,0);}
.m121_c00297{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);}
.m4f_c00297{transform:matrix(0.205363,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205363,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205363,-0.002259,0.002750,0.249985,0,0);}
.m7_c00297{transform:matrix(0.205393,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205393,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205393,-0.002259,0.002750,0.249985,0,0);}
.m112_c00297{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);}
.mcc_c00297{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);}
.mc2_c00297{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);}
.m24_c00297{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);}
.mba_c00297{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);}
.m45_c00297{transform:matrix(0.206243,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206243,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206243,-0.002269,0.002750,0.249985,0,0);}
.m16b_c00297{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);}
.m26_c00297{transform:matrix(0.206807,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206807,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206807,-0.002275,0.002750,0.249985,0,0);}
.m6e_c00297{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);}
.m154_c00297{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);}
.m12e_c00297{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);}
.m11b_c00297{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);}
.mdf_c00297{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);}
.m167_c00297{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);}
.ma_c00297{transform:matrix(0.208747,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208747,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208747,-0.002296,0.002750,0.249985,0,0);}
.m16e_c00297{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);}
.m163_c00297{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);}
.m14c_c00297{transform:matrix(0.209145,-0.002091,0.002500,0.249988,0,0);-ms-transform:matrix(0.209145,-0.002091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209145,-0.002091,0.002500,0.249988,0,0);}
.m9a_c00297{transform:matrix(0.209267,-0.002302,0.002750,0.249985,0,0);-ms-transform:matrix(0.209267,-0.002302,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209267,-0.002302,0.002750,0.249985,0,0);}
.m3_c00297{transform:matrix(0.209402,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209402,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209402,-0.002303,0.002750,0.249985,0,0);}
.m6f_c00297{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);}
.mf_c00297{transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);-ms-transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210882,-0.002320,0.002750,0.249985,0,0);}
.mca_c00297{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);}
.m53_c00297{transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);}
.m17c_c00297{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);}
.m151_c00297{transform:matrix(0.211654,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211654,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211654,-0.002117,0.002500,0.249988,0,0);}
.m194_c00297{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);}
.m17a_c00297{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);}
.m197_c00297{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);}
.m6c_c00297{transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);-ms-transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212382,-0.002336,0.002750,0.249985,0,0);}
.m55_c00297{transform:matrix(0.212492,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212492,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212492,-0.002337,0.002750,0.249985,0,0);}
.m29_c00297{transform:matrix(0.212592,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212592,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212592,-0.002339,0.002750,0.249985,0,0);}
.m180_c00297{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);}
.m49_c00297{transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);}
.mf0_c00297{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);}
.m51_c00297{transform:matrix(0.213137,-0.002345,0.002750,0.249985,0,0);-ms-transform:matrix(0.213137,-0.002345,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213137,-0.002345,0.002750,0.249985,0,0);}
.m68_c00297{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);}
.m10e_c00297{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);}
.m165_c00297{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);}
.m111_c00297{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);}
.m6_c00297{transform:matrix(0.213867,-0.002353,0.002750,0.249985,0,0);-ms-transform:matrix(0.213867,-0.002353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213867,-0.002353,0.002750,0.249985,0,0);}
.m182_c00297{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);}
.mc8_c00297{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);}
.m7a_c00297{transform:matrix(0.214632,-0.002361,0.002750,0.249985,0,0);-ms-transform:matrix(0.214632,-0.002361,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214632,-0.002361,0.002750,0.249985,0,0);}
.m184_c00297{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);}
.m11d_c00297{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);}
.mf8_c00297{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);}
.m1f_c00297{transform:matrix(0.215922,-0.002375,0.002750,0.249985,0,0);-ms-transform:matrix(0.215922,-0.002375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215922,-0.002375,0.002750,0.249985,0,0);}
.m181_c00297{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);}
.md_c00297{transform:matrix(0.216207,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216207,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216207,-0.002378,0.002750,0.249985,0,0);}
.m177_c00297{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);}
.m7b_c00297{transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);}
.m19c_c00297{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);}
.m7d_c00297{transform:matrix(0.218412,-0.002403,0.002750,0.249985,0,0);-ms-transform:matrix(0.218412,-0.002403,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218412,-0.002403,0.002750,0.249985,0,0);}
.m69_c00297{transform:matrix(0.218502,-0.002404,0.002750,0.249985,0,0);-ms-transform:matrix(0.218502,-0.002404,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218502,-0.002404,0.002750,0.249985,0,0);}
.m1c_c00297{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);}
.m18c_c00297{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m10c_c00297{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);}
.m79_c00297{transform:matrix(0.218887,-0.002408,0.002750,0.249985,0,0);-ms-transform:matrix(0.218887,-0.002408,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218887,-0.002408,0.002750,0.249985,0,0);}
.mc3_c00297{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);}
.mcb_c00297{transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);}
.m176_c00297{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);}
.m84_c00297{transform:matrix(0.220172,-0.002422,0.002750,0.249985,0,0);-ms-transform:matrix(0.220172,-0.002422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220172,-0.002422,0.002750,0.249985,0,0);}
.m15c_c00297{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);}
.m19f_c00297{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);}
.m189_c00297{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.221057,-0.002432,0.002750,0.249985,0,0);-ms-transform:matrix(0.221057,-0.002432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221057,-0.002432,0.002750,0.249985,0,0);}
.m6b_c00297{transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);}
.m97_c00297{transform:matrix(0.221172,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221172,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221172,-0.002433,0.002750,0.249985,0,0);}
.m74_c00297{transform:matrix(0.221497,-0.002436,0.002750,0.249985,0,0);-ms-transform:matrix(0.221497,-0.002436,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221497,-0.002436,0.002750,0.249985,0,0);}
.mbf_c00297{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);}
.m153_c00297{transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);}
.m186_c00297{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);}
.m71_c00297{transform:matrix(0.223946,-0.002463,0.002750,0.249985,0,0);-ms-transform:matrix(0.223946,-0.002463,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223946,-0.002463,0.002750,0.249985,0,0);}
.m58_c00297{transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);-ms-transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224046,-0.002465,0.002750,0.249985,0,0);}
.m113_c00297{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);}
.m2e_c00297{transform:matrix(0.225171,-0.002477,0.002750,0.249985,0,0);-ms-transform:matrix(0.225171,-0.002477,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225171,-0.002477,0.002750,0.249985,0,0);}
.m185_c00297{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);}
.md1_c00297{transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);}
.m162_c00297{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);}
.m12c_c00297{transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);}
.m104_c00297{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);}
.me6_c00297{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);}
.m60_c00297{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);}
.mab_c00297{transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);-ms-transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229681,-0.002526,0.002750,0.249985,0,0);}
.m6d_c00297{transform:matrix(0.229996,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.229996,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229996,-0.002530,0.002750,0.249985,0,0);}
.m47_c00297{transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);}
.m18a_c00297{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);}
.mb6_c00297{transform:matrix(0.232056,-0.002553,0.002750,0.249985,0,0);-ms-transform:matrix(0.232056,-0.002553,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232056,-0.002553,0.002750,0.249985,0,0);}
.m198_c00297{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);}
.m52_c00297{transform:matrix(0.233006,-0.002563,0.002750,0.249985,0,0);-ms-transform:matrix(0.233006,-0.002563,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233006,-0.002563,0.002750,0.249985,0,0);}
.m155_c00297{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);}
.m77_c00297{transform:matrix(0.233886,-0.002573,0.002750,0.249985,0,0);-ms-transform:matrix(0.233886,-0.002573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233886,-0.002573,0.002750,0.249985,0,0);}
.m126_c00297{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.mfc_c00297{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);}
.m108_c00297{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);}
.m130_c00297{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{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);}
.m78_c00297{transform:matrix(0.237021,-0.002607,0.002750,0.249985,0,0);-ms-transform:matrix(0.237021,-0.002607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237021,-0.002607,0.002750,0.249985,0,0);}
.m105_c00297{transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237135,0.000000,0.000000,0.250000,0,0);}
.m110_c00297{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);}
.mcd_c00297{transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);}
.m19e_c00297{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);}
.m16a_c00297{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m122_c00297{transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.241060,-0.002652,0.002750,0.249985,0,0);-ms-transform:matrix(0.241060,-0.002652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241060,-0.002652,0.002750,0.249985,0,0);}
.m175_c00297{transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.241975,-0.002662,0.002750,0.249985,0,0);-ms-transform:matrix(0.241975,-0.002662,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241975,-0.002662,0.002750,0.249985,0,0);}
.m146_c00297{transform:matrix(0.243123,-0.002431,0.002500,0.249988,0,0);-ms-transform:matrix(0.243123,-0.002431,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243123,-0.002431,0.002500,0.249988,0,0);}
.m10b_c00297{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m17e_c00297{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);}
.me1_c00297{transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);}
.m174_c00297{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);}
.m17d_c00297{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00297{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);}
.mc5_c00297{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.m187_c00297{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.mc7_c00297{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);}
.m5e_c00297{transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);-ms-transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250025,-0.002750,0.002750,0.249985,0,0);}
.m1a0_c00297{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);}
.me2_c00297{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);}
.mc_c00297{transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);-ms-transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254230,-0.002797,0.002750,0.249985,0,0);}
.m145_c00297{transform:matrix(0.254417,-0.002544,0.002500,0.249988,0,0);-ms-transform:matrix(0.254417,-0.002544,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254417,-0.002544,0.002500,0.249988,0,0);}
.m56_c00297{transform:matrix(0.254910,-0.002804,0.002750,0.249985,0,0);-ms-transform:matrix(0.254910,-0.002804,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254910,-0.002804,0.002750,0.249985,0,0);}
.md3_c00297{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);}
.m15f_c00297{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m13f_c00297{transform:matrix(0.255497,-0.002555,0.002500,0.249988,0,0);-ms-transform:matrix(0.255497,-0.002555,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255497,-0.002555,0.002500,0.249988,0,0);}
.m39_c00297{transform:matrix(0.255720,-0.002813,0.002750,0.249985,0,0);-ms-transform:matrix(0.255720,-0.002813,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255720,-0.002813,0.002750,0.249985,0,0);}
.m57_c00297{transform:matrix(0.257184,-0.002829,0.002750,0.249985,0,0);-ms-transform:matrix(0.257184,-0.002829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257184,-0.002829,0.002750,0.249985,0,0);}
.m1e_c00297{transform:matrix(0.258319,-0.002842,0.002750,0.249985,0,0);-ms-transform:matrix(0.258319,-0.002842,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258319,-0.002842,0.002750,0.249985,0,0);}
.m148_c00297{transform:matrix(0.261582,-0.002616,0.002500,0.249988,0,0);-ms-transform:matrix(0.261582,-0.002616,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261582,-0.002616,0.002500,0.249988,0,0);}
.m169_c00297{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.m99_c00297{transform:matrix(0.262499,-0.002887,0.002750,0.249985,0,0);-ms-transform:matrix(0.262499,-0.002887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262499,-0.002887,0.002750,0.249985,0,0);}
.m159_c00297{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);}
.m10f_c00297{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);}
.m63_c00297{transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);-ms-transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);}
.m141_c00297{transform:matrix(0.274916,-0.002749,0.002500,0.249988,0,0);-ms-transform:matrix(0.274916,-0.002749,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274916,-0.002749,0.002500,0.249988,0,0);}
.md2_c00297{transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);}
.m18e_c00297{transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);}
.m18b_c00297{transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284525,0.000000,0.000000,0.250000,0,0);}
.m14b_c00297{transform:matrix(0.285366,-0.002854,0.002500,0.249988,0,0);-ms-transform:matrix(0.285366,-0.002854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285366,-0.002854,0.002500,0.249988,0,0);}
.m183_c00297{transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);}
.m147_c00297{transform:matrix(0.289251,-0.002893,0.002500,0.249988,0,0);-ms-transform:matrix(0.289251,-0.002893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.289251,-0.002893,0.002500,0.249988,0,0);}
.m98_c00297{transform:matrix(0.290022,-0.003190,0.002750,0.249985,0,0);-ms-transform:matrix(0.290022,-0.003190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290022,-0.003190,0.002750,0.249985,0,0);}
.md4_c00297{transform:matrix(0.291520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291520,0.000000,0.000000,0.250000,0,0);}
.md0_c00297{transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);}
.m172_c00297{transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);}
.m12f_c00297{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);}
.m62_c00297{transform:matrix(0.296237,-0.003259,0.002750,0.249985,0,0);-ms-transform:matrix(0.296237,-0.003259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.296237,-0.003259,0.002750,0.249985,0,0);}
.m18f_c00297{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);}
.m178_c00297{transform:matrix(0.307410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307410,0.000000,0.000000,0.250000,0,0);}
.m128_c00297{transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);}
.m14e_c00297{transform:matrix(0.315144,-0.003151,0.002500,0.249988,0,0);-ms-transform:matrix(0.315144,-0.003151,0.002500,0.249988,0,0);-webkit-transform:matrix(0.315144,-0.003151,0.002500,0.249988,0,0);}
.m142_c00297{transform:matrix(0.317334,-0.003173,0.002500,0.249988,0,0);-ms-transform:matrix(0.317334,-0.003173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.317334,-0.003173,0.002500,0.249988,0,0);}
.m19d_c00297{transform:matrix(0.318580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318580,0.000000,0.000000,0.250000,0,0);}
.m160_c00297{transform:matrix(0.327905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327905,0.000000,0.000000,0.250000,0,0);}
.m190_c00297{transform:matrix(0.333570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333570,0.000000,0.000000,0.250000,0,0);}
.m170_c00297{transform:matrix(0.337840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337840,0.000000,0.000000,0.250000,0,0);}
.m127_c00297{transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);}
.m13a_c00297{transform:matrix(0.351437,-0.003514,0.002500,0.249988,0,0);-ms-transform:matrix(0.351437,-0.003514,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351437,-0.003514,0.002500,0.249988,0,0);}
.m157_c00297{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m140_c00297{transform:matrix(0.366207,-0.003662,0.002500,0.249988,0,0);-ms-transform:matrix(0.366207,-0.003662,0.002500,0.249988,0,0);-webkit-transform:matrix(0.366207,-0.003662,0.002500,0.249988,0,0);}
.m158_c00297{transform:matrix(0.391005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391005,0.000000,0.000000,0.250000,0,0);}
.m133_c00297{transform:matrix(0.408945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408945,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.480040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480040,0.000000,0.000000,0.250000,0,0);}
.m129_c00297{transform:matrix(0.513350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513350,0.000000,0.000000,0.250000,0,0);}
.m12d_c00297{transform:matrix(0.525170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525170,0.000000,0.000000,0.250000,0,0);}
.m13b_c00297{transform:matrix(0.624224,-0.006242,0.002500,0.249988,0,0);-ms-transform:matrix(0.624224,-0.006242,0.002500,0.249988,0,0);-webkit-transform:matrix(0.624224,-0.006242,0.002500,0.249988,0,0);}
.m131_c00297{transform:matrix(0.670470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670470,0.000000,0.000000,0.250000,0,0);}
.m149_c00297{transform:matrix(0.674411,-0.006744,0.002500,0.249988,0,0);-ms-transform:matrix(0.674411,-0.006744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.674411,-0.006744,0.002500,0.249988,0,0);}
.m12b_c00297{transform:matrix(0.718695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718695,0.000000,0.000000,0.250000,0,0);}
.m12a_c00297{transform:matrix(0.958240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958240,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;}
.fs13_c00297{font-size:49.350000px;}
.fs16_c00297{font-size:50.400000px;}
.fs12_c00297{font-size:50.402520px;}
.fs14_c00297{font-size:51.450000px;}
.fs15_c00297{font-size:53.550000px;}
.fs11_c00297{font-size:58.802940px;}
.fs9_c00297{font-size:60.903684px;}
.fsd_c00297{font-size:61.950000px;}
.fs3_c00297{font-size:64.053875px;}
.fs7_c00297{font-size:65.103938px;}
.fs1_c00297{font-size:66.154002px;}
.fs6_c00297{font-size:67.204065px;}
.fs10_c00297{font-size:68.250000px;}
.fs8_c00297{font-size:68.254129px;}
.fs2_c00297{font-size:69.304193px;}
.fse_c00297{font-size:70.350000px;}
.fsa_c00297{font-size:70.354256px;}
.fsc_c00297{font-size:71.400000px;}
.fs5_c00297{font-size:72.454383px;}
.fsf_c00297{font-size:73.500000px;}
.fs4_c00297{font-size:73.504447px;}
.fsb_c00297{font-size:74.554510px;}
.fs0_c00297{font-size:105.000000px;}
.y0_c00297{bottom:0.000000px;}
.ye9_c00297{bottom:145.021500px;}
.ye8_c00297{bottom:162.507000px;}
.ye7_c00297{bottom:180.900000px;}
.ye6_c00297{bottom:198.694500px;}
.ye5_c00297{bottom:216.538500px;}
.yda_c00297{bottom:233.750865px;}
.ydb_c00297{bottom:233.751450px;}
.yd9_c00297{bottom:233.751480px;}
.yd7_c00297{bottom:233.751840px;}
.ydc_c00297{bottom:233.752020px;}
.yd8_c00297{bottom:233.752125px;}
.ye3_c00297{bottom:233.752530px;}
.ye2_c00297{bottom:233.752545px;}
.yde_c00297{bottom:233.752575px;}
.ydd_c00297{bottom:233.752605px;}
.ye0_c00297{bottom:233.752845px;}
.ydf_c00297{bottom:233.752860px;}
.ye4_c00297{bottom:233.753115px;}
.ye1_c00297{bottom:233.753145px;}
.yc7_c00297{bottom:246.781500px;}
.yc8_c00297{bottom:246.936330px;}
.yc9_c00297{bottom:247.393950px;}
.yca_c00297{bottom:247.690590px;}
.ycb_c00297{bottom:247.863405px;}
.ycc_c00297{bottom:248.123430px;}
.ycd_c00297{bottom:248.604120px;}
.yce_c00297{bottom:248.895645px;}
.ycf_c00297{bottom:249.322410px;}
.yd0_c00297{bottom:249.748995px;}
.yd1_c00297{bottom:250.196385px;}
.yd2_c00297{bottom:250.305300px;}
.yd3_c00297{bottom:250.542975px;}
.yd4_c00297{bottom:250.707450px;}
.yd5_c00297{bottom:250.864500px;}
.yd6_c00297{bottom:251.099280px;}
.yc6_c00297{bottom:302.434500px;}
.yc5_c00297{bottom:324.108000px;}
.yc4_c00297{bottom:347.728500px;}
.yc3_c00297{bottom:370.344000px;}
.yc2_c00297{bottom:393.334500px;}
.yc1_c00297{bottom:416.037000px;}
.yc0_c00297{bottom:438.636000px;}
.ybf_c00297{bottom:461.065500px;}
.ybe_c00297{bottom:484.060500px;}
.yb4_c00297{bottom:506.680227px;}
.yb2_c00297{bottom:506.680577px;}
.yb5_c00297{bottom:506.680687px;}
.yb3_c00297{bottom:506.680813px;}
.yb1_c00297{bottom:506.681180px;}
.yb0_c00297{bottom:506.681346px;}
.yb6_c00297{bottom:506.681391px;}
.yb7_c00297{bottom:506.681614px;}
.ybb_c00297{bottom:506.681755px;}
.yb9_c00297{bottom:506.681758px;}
.ybd_c00297{bottom:506.681962px;}
.yb8_c00297{bottom:506.682015px;}
.ybc_c00297{bottom:506.682369px;}
.yba_c00297{bottom:506.682432px;}
.ya3_c00297{bottom:529.110925px;}
.ya4_c00297{bottom:529.111629px;}
.ya5_c00297{bottom:529.111866px;}
.ya8_c00297{bottom:529.111977px;}
.ya7_c00297{bottom:529.112113px;}
.ya6_c00297{bottom:529.112329px;}
.yab_c00297{bottom:529.112601px;}
.yaa_c00297{bottom:529.112634px;}
.yad_c00297{bottom:529.112671px;}
.ya9_c00297{bottom:529.112711px;}
.yae_c00297{bottom:529.113105px;}
.yac_c00297{bottom:529.113334px;}
.yaf_c00297{bottom:529.113509px;}
.y99_c00297{bottom:552.042414px;}
.y9a_c00297{bottom:552.042487px;}
.ya1_c00297{bottom:552.042557px;}
.y9b_c00297{bottom:552.042841px;}
.ya0_c00297{bottom:552.042980px;}
.ya2_c00297{bottom:552.043060px;}
.y9c_c00297{bottom:552.043125px;}
.y9f_c00297{bottom:552.043326px;}
.y9d_c00297{bottom:552.043452px;}
.y9e_c00297{bottom:552.043509px;}
.y97_c00297{bottom:574.932055px;}
.y8b_c00297{bottom:574.932169px;}
.y90_c00297{bottom:574.932307px;}
.y8c_c00297{bottom:574.932406px;}
.y98_c00297{bottom:574.932429px;}
.y8f_c00297{bottom:574.932564px;}
.y96_c00297{bottom:574.932582px;}
.y8e_c00297{bottom:574.932583px;}
.y8d_c00297{bottom:574.932600px;}
.y94_c00297{bottom:574.932601px;}
.y93_c00297{bottom:574.932678px;}
.y91_c00297{bottom:574.932711px;}
.y95_c00297{bottom:574.932765px;}
.y92_c00297{bottom:574.933144px;}
.y81_c00297{bottom:597.577282px;}
.y7f_c00297{bottom:597.577378px;}
.y82_c00297{bottom:597.577416px;}
.y80_c00297{bottom:597.577675px;}
.y83_c00297{bottom:597.577789px;}
.y84_c00297{bottom:597.578463px;}
.y85_c00297{bottom:597.578837px;}
.y86_c00297{bottom:597.579477px;}
.y8a_c00297{bottom:597.579542px;}
.y88_c00297{bottom:597.579667px;}
.y89_c00297{bottom:597.580068px;}
.y87_c00297{bottom:597.580104px;}
.y71_c00297{bottom:618.829992px;}
.y72_c00297{bottom:619.132279px;}
.y73_c00297{bottom:619.395456px;}
.y74_c00297{bottom:619.550133px;}
.y75_c00297{bottom:619.767199px;}
.y76_c00297{bottom:620.033200px;}
.y77_c00297{bottom:620.249590px;}
.y78_c00297{bottom:620.331592px;}
.y79_c00297{bottom:620.902686px;}
.y7a_c00297{bottom:621.121503px;}
.y7b_c00297{bottom:621.237862px;}
.y7c_c00297{bottom:621.495162px;}
.y7d_c00297{bottom:621.878692px;}
.y7e_c00297{bottom:621.952951px;}
.y68_c00297{bottom:643.210686px;}
.y6f_c00297{bottom:643.210692px;}
.y69_c00297{bottom:643.210713px;}
.y6b_c00297{bottom:643.211257px;}
.y6a_c00297{bottom:643.211307px;}
.y70_c00297{bottom:643.211365px;}
.y6e_c00297{bottom:643.211368px;}
.y6d_c00297{bottom:643.211371px;}
.y67_c00297{bottom:643.211422px;}
.y6c_c00297{bottom:643.211901px;}
.y5b_c00297{bottom:664.459497px;}
.y5c_c00297{bottom:664.580264px;}
.y5d_c00297{bottom:664.728435px;}
.y5e_c00297{bottom:664.948257px;}
.y5f_c00297{bottom:665.258485px;}
.y60_c00297{bottom:665.642280px;}
.y61_c00297{bottom:666.480960px;}
.y62_c00297{bottom:666.713989px;}
.y63_c00297{bottom:666.975580px;}
.y64_c00297{bottom:667.204599px;}
.y65_c00297{bottom:667.346365px;}
.y66_c00297{bottom:667.684479px;}
.y50_c00297{bottom:686.332512px;}
.y51_c00297{bottom:686.750334px;}
.y52_c00297{bottom:687.179047px;}
.y53_c00297{bottom:687.502876px;}
.y54_c00297{bottom:687.880747px;}
.y55_c00297{bottom:688.237299px;}
.y56_c00297{bottom:688.829229px;}
.y57_c00297{bottom:689.115681px;}
.y58_c00297{bottom:689.569740px;}
.y59_c00297{bottom:689.718172px;}
.y5a_c00297{bottom:691.054162px;}
.y43_c00297{bottom:709.013844px;}
.y44_c00297{bottom:709.509580px;}
.y45_c00297{bottom:710.012250px;}
.y46_c00297{bottom:710.182666px;}
.y47_c00297{bottom:710.595621px;}
.y48_c00297{bottom:710.869830px;}
.y49_c00297{bottom:711.392880px;}
.y4a_c00297{bottom:711.772612px;}
.y4b_c00297{bottom:711.965342px;}
.y4c_c00297{bottom:712.299706px;}
.y4d_c00297{bottom:712.546221px;}
.y4e_c00297{bottom:712.854361px;}
.y4f_c00297{bottom:713.033691px;}
.y38_c00297{bottom:731.154855px;}
.y39_c00297{bottom:731.526402px;}
.y3a_c00297{bottom:732.240863px;}
.y3b_c00297{bottom:732.423442px;}
.y3c_c00297{bottom:733.297511px;}
.y3d_c00297{bottom:733.487104px;}
.y3e_c00297{bottom:734.036395px;}
.y3f_c00297{bottom:734.306659px;}
.y40_c00297{bottom:734.692779px;}
.y41_c00297{bottom:734.884453px;}
.y42_c00297{bottom:735.258838px;}
.y2c_c00297{bottom:753.566377px;}
.y2d_c00297{bottom:754.097248px;}
.y2e_c00297{bottom:754.254774px;}
.y2f_c00297{bottom:754.676580px;}
.y30_c00297{bottom:755.375140px;}
.y31_c00297{bottom:755.841331px;}
.y32_c00297{bottom:756.064329px;}
.y33_c00297{bottom:756.720732px;}
.y34_c00297{bottom:757.415580px;}
.y35_c00297{bottom:757.671181px;}
.y36_c00297{bottom:758.095248px;}
.y37_c00297{bottom:758.526393px;}
.y1c_c00297{bottom:775.977222px;}
.y1d_c00297{bottom:776.277572px;}
.y1e_c00297{bottom:776.405248px;}
.y1f_c00297{bottom:777.023140px;}
.y20_c00297{bottom:777.352827px;}
.y21_c00297{bottom:777.611233px;}
.y22_c00297{bottom:777.803822px;}
.y23_c00297{bottom:778.047345px;}
.y24_c00297{bottom:778.490436px;}
.y25_c00297{bottom:778.692478px;}
.y26_c00297{bottom:779.164741px;}
.y27_c00297{bottom:779.485419px;}
.y28_c00297{bottom:779.713729px;}
.y29_c00297{bottom:780.103196px;}
.y2a_c00297{bottom:780.325467px;}
.y2b_c00297{bottom:780.756711px;}
.y10_c00297{bottom:798.660836px;}
.y11_c00297{bottom:798.823029px;}
.y12_c00297{bottom:799.396759px;}
.y13_c00297{bottom:799.831227px;}
.y14_c00297{bottom:800.354214px;}
.y15_c00297{bottom:801.118000px;}
.y16_c00297{bottom:801.798084px;}
.y17_c00297{bottom:802.451840px;}
.y18_c00297{bottom:803.028210px;}
.y19_c00297{bottom:803.558670px;}
.y1a_c00297{bottom:804.447169px;}
.y1b_c00297{bottom:805.051287px;}
.y2_c00297{bottom:821.071500px;}
.y3_c00297{bottom:821.368549px;}
.y4_c00297{bottom:821.843749px;}
.y5_c00297{bottom:822.648108px;}
.y6_c00297{bottom:822.876880px;}
.y7_c00297{bottom:823.174458px;}
.y8_c00297{bottom:823.432865px;}
.y9_c00297{bottom:823.767996px;}
.ya_c00297{bottom:824.115535px;}
.yb_c00297{bottom:824.534800px;}
.yc_c00297{bottom:825.117052px;}
.yd_c00297{bottom:825.535707px;}
.ye_c00297{bottom:825.725358px;}
.yf_c00297{bottom:826.085190px;}
.y1_c00297{bottom:911.536500px;}
.h15_c00297{height:49.350000px;}
.h18_c00297{height:50.400000px;}
.h14_c00297{height:50.402520px;}
.h16_c00297{height:51.450000px;}
.h17_c00297{height:53.550000px;}
.h13_c00297{height:58.802940px;}
.hb_c00297{height:60.903684px;}
.hf_c00297{height:61.950000px;}
.h5_c00297{height:64.053875px;}
.h9_c00297{height:65.103938px;}
.h3_c00297{height:66.154002px;}
.h8_c00297{height:67.204065px;}
.h12_c00297{height:68.250000px;}
.ha_c00297{height:68.254129px;}
.h4_c00297{height:69.304193px;}
.h10_c00297{height:70.350000px;}
.hc_c00297{height:70.354256px;}
.he_c00297{height:71.400000px;}
.h7_c00297{height:72.454383px;}
.h11_c00297{height:73.500000px;}
.h6_c00297{height:73.504447px;}
.hd_c00297{height:74.554510px;}
.h2_c00297{height:105.000000px;}
.h0_c00297{height:1008.450000px;}
.h1_c00297{height:1008.750000px;}
.w0_c00297{width:696.000000px;}
.x0_c00297{left:0.000000px;}
.x72_c00297{left:151.200867px;}
.xa7_c00297{left:152.280000px;}
.x2_c00297{left:153.769500px;}
.x28_c00297{left:154.864599px;}
.xb1_c00297{left:157.555500px;}
.xcf_c00297{left:158.760000px;}
.x10_c00297{left:165.154581px;}
.xac_c00297{left:168.480000px;}
.x4a_c00297{left:170.971277px;}
.xb2_c00297{left:173.038500px;}
.x51_c00297{left:174.154199px;}
.x3_c00297{left:180.774000px;}
.x79_c00297{left:183.065420px;}
.x9d_c00297{left:184.140000px;}
.x73_c00297{left:185.223476px;}
.xc7_c00297{left:189.000000px;}
.x82_c00297{left:190.890000px;}
.x1a_c00297{left:192.378941px;}
.xc1_c00297{left:194.400000px;}
.x30_c00297{left:195.841467px;}
.x59_c00297{left:197.430345px;}
.xb9_c00297{left:198.720000px;}
.xd0_c00297{left:199.800000px;}
.x9e_c00297{left:201.960000px;}
.x29_c00297{left:203.125599px;}
.x11_c00297{left:206.128728px;}
.x38_c00297{left:209.328755px;}
.x8d_c00297{left:214.380000px;}
.xba_c00297{left:215.460000px;}
.x2a_c00297{left:217.446099px;}
.xb3_c00297{left:218.800500px;}
.x83_c00297{left:222.480000px;}
.x4_c00297{left:223.974000px;}
.x96_c00297{left:225.990000px;}
.x52_c00297{left:227.617667px;}
.x5a_c00297{left:234.993495px;}
.x12_c00297{left:237.170205px;}
.x43_c00297{left:239.575020px;}
.x7a_c00297{left:242.199581px;}
.x68_c00297{left:244.086128px;}
.x74_c00297{left:245.976318px;}
.x1b_c00297{left:248.550941px;}
.xa8_c00297{left:251.640000px;}
.xd1_c00297{left:252.720000px;}
.xc8_c00297{left:254.610000px;}
.x2b_c00297{left:255.792099px;}
.x5b_c00297{left:257.101469px;}
.x9f_c00297{left:261.090000px;}
.x39_c00297{left:265.254492px;}
.x84_c00297{left:266.490000px;}
.x4b_c00297{left:267.677517px;}
.x44_c00297{left:272.014383px;}
.x13_c00297{left:274.485968px;}
.x1c_c00297{left:278.522441px;}
.x7b_c00297{left:280.271184px;}
.x85_c00297{left:282.150000px;}
.x3a_c00297{left:284.156405px;}
.xc2_c00297{left:286.740000px;}
.x5c_c00297{left:288.154338px;}
.xb4_c00297{left:291.748500px;}
.x31_c00297{left:295.529161px;}
.x5_c00297{left:297.097500px;}
.x7c_c00297{left:298.901945px;}
.x86_c00297{left:300.510000px;}
.x1d_c00297{left:302.013941px;}
.x8e_c00297{left:304.020000px;}
.xa0_c00297{left:306.720000px;}
.x6e_c00297{left:308.622189px;}
.x45_c00297{left:309.775796px;}
.x63_c00297{left:311.591228px;}
.xc9_c00297{left:312.660000px;}
.x53_c00297{left:316.182375px;}
.x6_c00297{left:317.895000px;}
.x1e_c00297{left:319.521941px;}
.x91_c00297{left:321.030000px;}
.x4c_c00297{left:322.479426px;}
.xad_c00297{left:324.270000px;}
.x5d_c00297{left:326.247021px;}
.x87_c00297{left:328.050000px;}
.x14_c00297{left:329.055669px;}
.xa9_c00297{left:330.210000px;}
.xb7_c00297{left:331.298160px;}
.x64_c00297{left:332.382236px;}
.x1_c00297{left:338.310000px;}
.x69_c00297{left:340.481793px;}
.x1f_c00297{left:341.660441px;}
.x7_c00297{left:344.947500px;}
.xca_c00297{left:346.140000px;}
.xcb_c00297{left:347.490000px;}
.x9b_c00297{left:350.460000px;}
.xc3_c00297{left:352.080000px;}
.x97_c00297{left:353.160000px;}
.xbb_c00297{left:354.510000px;}
.x92_c00297{left:355.860000px;}
.x5e_c00297{left:357.238391px;}
.x3b_c00297{left:360.536587px;}
.x2c_c00297{left:361.678599px;}
.xc4_c00297{left:365.040000px;}
.x88_c00297{left:366.120000px;}
.x8_c00297{left:368.439000px;}
.x75_c00297{left:369.913817px;}
.x15_c00297{left:377.652569px;}
.xcc_c00297{left:380.700000px;}
.x20_c00297{left:381.941440px;}
.xa1_c00297{left:384.210000px;}
.xa4_c00297{left:385.560000px;}
.x98_c00297{left:388.260000px;}
.x32_c00297{left:392.719306px;}
.xcd_c00297{left:395.280000px;}
.x54_c00297{left:397.187676px;}
.x9_c00297{left:398.905500px;}
.x21_c00297{left:400.308941px;}
.x46_c00297{left:404.593335px;}
.xce_c00297{left:406.080000px;}
.x7d_c00297{left:407.177529px;}
.x93_c00297{left:409.590000px;}
.x89_c00297{left:412.020000px;}
.x33_c00297{left:413.773769px;}
.x99_c00297{left:416.610000px;}
.x3c_c00297{left:418.587858px;}
.xbc_c00297{left:420.390000px;}
.x16_c00297{left:424.401534px;}
.xa2_c00297{left:426.060000px;}
.xa_c00297{left:430.500000px;}
.x47_c00297{left:433.225649px;}
.x94_c00297{left:437.130000px;}
.x2d_c00297{left:441.624099px;}
.x22_c00297{left:443.241941px;}
.x6a_c00297{left:444.709899px;}
.xaa_c00297{left:446.850000px;}
.x8a_c00297{left:449.280000px;}
.x5f_c00297{left:450.432983px;}
.x8f_c00297{left:451.980000px;}
.xb5_c00297{left:454.305000px;}
.xa5_c00297{left:455.490000px;}
.x3d_c00297{left:460.746282px;}
.x17_c00297{left:465.615681px;}
.xb_c00297{left:468.615000px;}
.x6f_c00297{left:470.901324px;}
.x23_c00297{left:472.394440px;}
.x34_c00297{left:474.756105px;}
.xab_c00297{left:476.550000px;}
.x48_c00297{left:478.595144px;}
.x3e_c00297{left:482.085744px;}
.xae_c00297{left:483.570000px;}
.x76_c00297{left:485.211759px;}
.x7e_c00297{left:486.291099px;}
.x55_c00297{left:490.072913px;}
.x24_c00297{left:493.149940px;}
.x8b_c00297{left:495.180000px;}
.x60_c00297{left:498.496611px;}
.xc5_c00297{left:501.930000px;}
.x18_c00297{left:503.474427px;}
.x2e_c00297{left:504.792099px;}
.x7f_c00297{left:507.082107px;}
.x65_c00297{left:509.513153px;}
.x90_c00297{left:511.380000px;}
.x4d_c00297{left:512.833292px;}
.x70_c00297{left:514.913654px;}
.xd2_c00297{left:518.130000px;}
.x3f_c00297{left:519.301569px;}
.xc_c00297{left:521.547000px;}
.xc6_c00297{left:524.610000px;}
.xbd_c00297{left:525.690000px;}
.xa6_c00297{left:527.310000px;}
.x25_c00297{left:528.555941px;}
.xaf_c00297{left:533.790000px;}
.x61_c00297{left:535.252728px;}
.xd3_c00297{left:536.490000px;}
.x80_c00297{left:540.024600px;}
.x56_c00297{left:543.806414px;}
.x4e_c00297{left:545.518227px;}
.x40_c00297{left:546.621663px;}
.x35_c00297{left:547.656206px;}
.x26_c00297{left:548.762441px;}
.xb6_c00297{left:550.150500px;}
.xbe_c00297{left:551.340000px;}
.x6b_c00297{left:552.987000px;}
.xa3_c00297{left:554.580000px;}
.xd_c00297{left:559.606500px;}
.x9a_c00297{left:561.600000px;}
.x57_c00297{left:563.247273px;}
.x4f_c00297{left:565.770618px;}
.x19_c00297{left:566.926832px;}
.x36_c00297{left:569.036184px;}
.x6c_c00297{left:571.077695px;}
.x66_c00297{left:572.966325px;}
.x81_c00297{left:574.857308px;}
.xe_c00297{left:576.847500px;}
.x77_c00297{left:578.638562px;}
.x41_c00297{left:580.907922px;}
.xbf_c00297{left:585.630000px;}
.x27_c00297{left:587.966440px;}
.x62_c00297{left:590.030637px;}
.x67_c00297{left:591.057020px;}
.x6d_c00297{left:594.569033px;}
.x58_c00297{left:597.539915px;}
.x42_c00297{left:600.892867px;}
.xb8_c00297{left:602.391750px;}
.x71_c00297{left:604.288461px;}
.x2f_c00297{left:605.775099px;}
.xf_c00297{left:609.559500px;}
.x37_c00297{left:610.572091px;}
.x50_c00297{left:614.101247px;}
.xb0_c00297{left:623.160000px;}
.x49_c00297{left:627.044277px;}
.x78_c00297{left:638.312772px;}
.x8c_c00297{left:647.730000px;}
.x95_c00297{left:648.810000px;}
.x9c_c00297{left:652.320000px;}
.xc0_c00297{left:655.560000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fs13_c00297{font-size:43.866667pt;}
.fs16_c00297{font-size:44.800000pt;}
.fs12_c00297{font-size:44.802240pt;}
.fs14_c00297{font-size:45.733333pt;}
.fs15_c00297{font-size:47.600000pt;}
.fs11_c00297{font-size:52.269280pt;}
.fs9_c00297{font-size:54.136608pt;}
.fsd_c00297{font-size:55.066667pt;}
.fs3_c00297{font-size:56.936778pt;}
.fs7_c00297{font-size:57.870167pt;}
.fs1_c00297{font-size:58.803557pt;}
.fs6_c00297{font-size:59.736947pt;}
.fs10_c00297{font-size:60.666667pt;}
.fs8_c00297{font-size:60.670337pt;}
.fs2_c00297{font-size:61.603727pt;}
.fse_c00297{font-size:62.533333pt;}
.fsa_c00297{font-size:62.537116pt;}
.fsc_c00297{font-size:63.466667pt;}
.fs5_c00297{font-size:64.403896pt;}
.fsf_c00297{font-size:65.333333pt;}
.fs4_c00297{font-size:65.337286pt;}
.fsb_c00297{font-size:66.270676pt;}
.fs0_c00297{font-size:93.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.ye9_c00297{bottom:128.908000pt;}
.ye8_c00297{bottom:144.450667pt;}
.ye7_c00297{bottom:160.800000pt;}
.ye6_c00297{bottom:176.617333pt;}
.ye5_c00297{bottom:192.478667pt;}
.yda_c00297{bottom:207.778547pt;}
.ydb_c00297{bottom:207.779067pt;}
.yd9_c00297{bottom:207.779093pt;}
.yd7_c00297{bottom:207.779413pt;}
.ydc_c00297{bottom:207.779573pt;}
.yd8_c00297{bottom:207.779667pt;}
.ye3_c00297{bottom:207.780027pt;}
.ye2_c00297{bottom:207.780040pt;}
.yde_c00297{bottom:207.780067pt;}
.ydd_c00297{bottom:207.780093pt;}
.ye0_c00297{bottom:207.780307pt;}
.ydf_c00297{bottom:207.780320pt;}
.ye4_c00297{bottom:207.780547pt;}
.ye1_c00297{bottom:207.780573pt;}
.yc7_c00297{bottom:219.361333pt;}
.yc8_c00297{bottom:219.498960pt;}
.yc9_c00297{bottom:219.905733pt;}
.yca_c00297{bottom:220.169413pt;}
.ycb_c00297{bottom:220.323027pt;}
.ycc_c00297{bottom:220.554160pt;}
.ycd_c00297{bottom:220.981440pt;}
.yce_c00297{bottom:221.240573pt;}
.ycf_c00297{bottom:221.619920pt;}
.yd0_c00297{bottom:221.999107pt;}
.yd1_c00297{bottom:222.396787pt;}
.yd2_c00297{bottom:222.493600pt;}
.yd3_c00297{bottom:222.704867pt;}
.yd4_c00297{bottom:222.851067pt;}
.yd5_c00297{bottom:222.990667pt;}
.yd6_c00297{bottom:223.199360pt;}
.yc6_c00297{bottom:268.830667pt;}
.yc5_c00297{bottom:288.096000pt;}
.yc4_c00297{bottom:309.092000pt;}
.yc3_c00297{bottom:329.194667pt;}
.yc2_c00297{bottom:349.630667pt;}
.yc1_c00297{bottom:369.810667pt;}
.yc0_c00297{bottom:389.898667pt;}
.ybf_c00297{bottom:409.836000pt;}
.ybe_c00297{bottom:430.276000pt;}
.yb4_c00297{bottom:450.382424pt;}
.yb2_c00297{bottom:450.382735pt;}
.yb5_c00297{bottom:450.382833pt;}
.yb3_c00297{bottom:450.382945pt;}
.yb1_c00297{bottom:450.383271pt;}
.yb0_c00297{bottom:450.383419pt;}
.yb6_c00297{bottom:450.383459pt;}
.yb7_c00297{bottom:450.383657pt;}
.ybb_c00297{bottom:450.383783pt;}
.yb9_c00297{bottom:450.383785pt;}
.ybd_c00297{bottom:450.383967pt;}
.yb8_c00297{bottom:450.384013pt;}
.ybc_c00297{bottom:450.384328pt;}
.yba_c00297{bottom:450.384384pt;}
.ya3_c00297{bottom:470.320823pt;}
.ya4_c00297{bottom:470.321448pt;}
.ya5_c00297{bottom:470.321659pt;}
.ya8_c00297{bottom:470.321757pt;}
.ya7_c00297{bottom:470.321879pt;}
.ya6_c00297{bottom:470.322071pt;}
.yab_c00297{bottom:470.322312pt;}
.yaa_c00297{bottom:470.322341pt;}
.yad_c00297{bottom:470.322375pt;}
.ya9_c00297{bottom:470.322409pt;}
.yae_c00297{bottom:470.322760pt;}
.yac_c00297{bottom:470.322964pt;}
.yaf_c00297{bottom:470.323119pt;}
.y99_c00297{bottom:490.704368pt;}
.y9a_c00297{bottom:490.704433pt;}
.ya1_c00297{bottom:490.704495pt;}
.y9b_c00297{bottom:490.704748pt;}
.ya0_c00297{bottom:490.704871pt;}
.ya2_c00297{bottom:490.704943pt;}
.y9c_c00297{bottom:490.705000pt;}
.y9f_c00297{bottom:490.705179pt;}
.y9d_c00297{bottom:490.705291pt;}
.y9e_c00297{bottom:490.705341pt;}
.y97_c00297{bottom:511.050716pt;}
.y8b_c00297{bottom:511.050817pt;}
.y90_c00297{bottom:511.050940pt;}
.y8c_c00297{bottom:511.051028pt;}
.y98_c00297{bottom:511.051048pt;}
.y8f_c00297{bottom:511.051168pt;}
.y96_c00297{bottom:511.051184pt;}
.y8e_c00297{bottom:511.051185pt;}
.y8d_c00297{bottom:511.051200pt;}
.y94_c00297{bottom:511.051201pt;}
.y93_c00297{bottom:511.051269pt;}
.y91_c00297{bottom:511.051299pt;}
.y95_c00297{bottom:511.051347pt;}
.y92_c00297{bottom:511.051684pt;}
.y81_c00297{bottom:531.179807pt;}
.y7f_c00297{bottom:531.179892pt;}
.y82_c00297{bottom:531.179925pt;}
.y80_c00297{bottom:531.180156pt;}
.y83_c00297{bottom:531.180257pt;}
.y84_c00297{bottom:531.180856pt;}
.y85_c00297{bottom:531.181188pt;}
.y86_c00297{bottom:531.181757pt;}
.y8a_c00297{bottom:531.181815pt;}
.y88_c00297{bottom:531.181927pt;}
.y89_c00297{bottom:531.182283pt;}
.y87_c00297{bottom:531.182315pt;}
.y71_c00297{bottom:550.071104pt;}
.y72_c00297{bottom:550.339804pt;}
.y73_c00297{bottom:550.573739pt;}
.y74_c00297{bottom:550.711229pt;}
.y75_c00297{bottom:550.904177pt;}
.y76_c00297{bottom:551.140623pt;}
.y77_c00297{bottom:551.332969pt;}
.y78_c00297{bottom:551.405860pt;}
.y79_c00297{bottom:551.913499pt;}
.y7a_c00297{bottom:552.108003pt;}
.y7b_c00297{bottom:552.211433pt;}
.y7c_c00297{bottom:552.440144pt;}
.y7d_c00297{bottom:552.781060pt;}
.y7e_c00297{bottom:552.847068pt;}
.y68_c00297{bottom:571.742832pt;}
.y6f_c00297{bottom:571.742837pt;}
.y69_c00297{bottom:571.742856pt;}
.y6b_c00297{bottom:571.743340pt;}
.y6a_c00297{bottom:571.743384pt;}
.y70_c00297{bottom:571.743436pt;}
.y6e_c00297{bottom:571.743439pt;}
.y6d_c00297{bottom:571.743441pt;}
.y67_c00297{bottom:571.743487pt;}
.y6c_c00297{bottom:571.743912pt;}
.y5b_c00297{bottom:590.630664pt;}
.y5c_c00297{bottom:590.738012pt;}
.y5d_c00297{bottom:590.869720pt;}
.y5e_c00297{bottom:591.065117pt;}
.y5f_c00297{bottom:591.340876pt;}
.y60_c00297{bottom:591.682027pt;}
.y61_c00297{bottom:592.427520pt;}
.y62_c00297{bottom:592.634657pt;}
.y63_c00297{bottom:592.867183pt;}
.y64_c00297{bottom:593.070755pt;}
.y65_c00297{bottom:593.196769pt;}
.y66_c00297{bottom:593.497315pt;}
.y50_c00297{bottom:610.073344pt;}
.y51_c00297{bottom:610.444741pt;}
.y52_c00297{bottom:610.825820pt;}
.y53_c00297{bottom:611.113668pt;}
.y54_c00297{bottom:611.449553pt;}
.y55_c00297{bottom:611.766488pt;}
.y56_c00297{bottom:612.292648pt;}
.y57_c00297{bottom:612.547272pt;}
.y58_c00297{bottom:612.950880pt;}
.y59_c00297{bottom:613.082820pt;}
.y5a_c00297{bottom:614.270367pt;}
.y43_c00297{bottom:630.234528pt;}
.y44_c00297{bottom:630.675183pt;}
.y45_c00297{bottom:631.122000pt;}
.y46_c00297{bottom:631.273481pt;}
.y47_c00297{bottom:631.640552pt;}
.y48_c00297{bottom:631.884293pt;}
.y49_c00297{bottom:632.349227pt;}
.y4a_c00297{bottom:632.686767pt;}
.y4b_c00297{bottom:632.858081pt;}
.y4c_c00297{bottom:633.155295pt;}
.y4d_c00297{bottom:633.374419pt;}
.y4e_c00297{bottom:633.648321pt;}
.y4f_c00297{bottom:633.807725pt;}
.y38_c00297{bottom:649.915427pt;}
.y39_c00297{bottom:650.245691pt;}
.y3a_c00297{bottom:650.880767pt;}
.y3b_c00297{bottom:651.043060pt;}
.y3c_c00297{bottom:651.820009pt;}
.y3d_c00297{bottom:651.988537pt;}
.y3e_c00297{bottom:652.476796pt;}
.y3f_c00297{bottom:652.717031pt;}
.y40_c00297{bottom:653.060248pt;}
.y41_c00297{bottom:653.230625pt;}
.y42_c00297{bottom:653.563412pt;}
.y2c_c00297{bottom:669.836780pt;}
.y2d_c00297{bottom:670.308665pt;}
.y2e_c00297{bottom:670.448688pt;}
.y2f_c00297{bottom:670.823627pt;}
.y30_c00297{bottom:671.444569pt;}
.y31_c00297{bottom:671.858961pt;}
.y32_c00297{bottom:672.057181pt;}
.y33_c00297{bottom:672.640651pt;}
.y34_c00297{bottom:673.258293pt;}
.y35_c00297{bottom:673.485495pt;}
.y36_c00297{bottom:673.862443pt;}
.y37_c00297{bottom:674.245683pt;}
.y1c_c00297{bottom:689.757531pt;}
.y1d_c00297{bottom:690.024508pt;}
.y1e_c00297{bottom:690.137999pt;}
.y1f_c00297{bottom:690.687236pt;}
.y20_c00297{bottom:690.980291pt;}
.y21_c00297{bottom:691.209985pt;}
.y22_c00297{bottom:691.381175pt;}
.y23_c00297{bottom:691.597640pt;}
.y24_c00297{bottom:691.991499pt;}
.y25_c00297{bottom:692.171092pt;}
.y26_c00297{bottom:692.590881pt;}
.y27_c00297{bottom:692.875928pt;}
.y28_c00297{bottom:693.078871pt;}
.y29_c00297{bottom:693.425063pt;}
.y2a_c00297{bottom:693.622637pt;}
.y2b_c00297{bottom:694.005965pt;}
.y10_c00297{bottom:709.920743pt;}
.y11_c00297{bottom:710.064915pt;}
.y12_c00297{bottom:710.574897pt;}
.y13_c00297{bottom:710.961091pt;}
.y14_c00297{bottom:711.425968pt;}
.y15_c00297{bottom:712.104889pt;}
.y16_c00297{bottom:712.709408pt;}
.y17_c00297{bottom:713.290524pt;}
.y18_c00297{bottom:713.802853pt;}
.y19_c00297{bottom:714.274373pt;}
.y1a_c00297{bottom:715.064151pt;}
.y1b_c00297{bottom:715.601144pt;}
.y2_c00297{bottom:729.841333pt;}
.y3_c00297{bottom:730.105377pt;}
.y4_c00297{bottom:730.527777pt;}
.y5_c00297{bottom:731.242763pt;}
.y6_c00297{bottom:731.446116pt;}
.y7_c00297{bottom:731.710629pt;}
.y8_c00297{bottom:731.940324pt;}
.y9_c00297{bottom:732.238219pt;}
.ya_c00297{bottom:732.547143pt;}
.yb_c00297{bottom:732.919823pt;}
.yc_c00297{bottom:733.437380pt;}
.yd_c00297{bottom:733.809517pt;}
.ye_c00297{bottom:733.978096pt;}
.yf_c00297{bottom:734.297947pt;}
.y1_c00297{bottom:810.254667pt;}
.h15_c00297{height:43.866667pt;}
.h18_c00297{height:44.800000pt;}
.h14_c00297{height:44.802240pt;}
.h16_c00297{height:45.733333pt;}
.h17_c00297{height:47.600000pt;}
.h13_c00297{height:52.269280pt;}
.hb_c00297{height:54.136608pt;}
.hf_c00297{height:55.066667pt;}
.h5_c00297{height:56.936778pt;}
.h9_c00297{height:57.870167pt;}
.h3_c00297{height:58.803557pt;}
.h8_c00297{height:59.736947pt;}
.h12_c00297{height:60.666667pt;}
.ha_c00297{height:60.670337pt;}
.h4_c00297{height:61.603727pt;}
.h10_c00297{height:62.533333pt;}
.hc_c00297{height:62.537116pt;}
.he_c00297{height:63.466667pt;}
.h7_c00297{height:64.403896pt;}
.h11_c00297{height:65.333333pt;}
.h6_c00297{height:65.337286pt;}
.hd_c00297{height:66.270676pt;}
.h2_c00297{height:93.333333pt;}
.h0_c00297{height:896.400000pt;}
.h1_c00297{height:896.666667pt;}
.w0_c00297{width:618.666667pt;}
.x0_c00297{left:0.000000pt;}
.x72_c00297{left:134.400771pt;}
.xa7_c00297{left:135.360000pt;}
.x2_c00297{left:136.684000pt;}
.x28_c00297{left:137.657421pt;}
.xb1_c00297{left:140.049333pt;}
.xcf_c00297{left:141.120000pt;}
.x10_c00297{left:146.804072pt;}
.xac_c00297{left:149.760000pt;}
.x4a_c00297{left:151.974468pt;}
.xb2_c00297{left:153.812000pt;}
.x51_c00297{left:154.803732pt;}
.x3_c00297{left:160.688000pt;}
.x79_c00297{left:162.724817pt;}
.x9d_c00297{left:163.680000pt;}
.x73_c00297{left:164.643089pt;}
.xc7_c00297{left:168.000000pt;}
.x82_c00297{left:169.680000pt;}
.x1a_c00297{left:171.003503pt;}
.xc1_c00297{left:172.800000pt;}
.x30_c00297{left:174.081304pt;}
.x59_c00297{left:175.493640pt;}
.xb9_c00297{left:176.640000pt;}
.xd0_c00297{left:177.600000pt;}
.x9e_c00297{left:179.520000pt;}
.x29_c00297{left:180.556088pt;}
.x11_c00297{left:183.225536pt;}
.x38_c00297{left:186.070004pt;}
.x8d_c00297{left:190.560000pt;}
.xba_c00297{left:191.520000pt;}
.x2a_c00297{left:193.285421pt;}
.xb3_c00297{left:194.489333pt;}
.x83_c00297{left:197.760000pt;}
.x4_c00297{left:199.088000pt;}
.x96_c00297{left:200.880000pt;}
.x52_c00297{left:202.326815pt;}
.x5a_c00297{left:208.883107pt;}
.x12_c00297{left:210.817960pt;}
.x43_c00297{left:212.955573pt;}
.x7a_c00297{left:215.288516pt;}
.x68_c00297{left:216.965447pt;}
.x74_c00297{left:218.645616pt;}
.x1b_c00297{left:220.934169pt;}
.xa8_c00297{left:223.680000pt;}
.xd1_c00297{left:224.640000pt;}
.xc8_c00297{left:226.320000pt;}
.x2b_c00297{left:227.370755pt;}
.x5b_c00297{left:228.534639pt;}
.x9f_c00297{left:232.080000pt;}
.x39_c00297{left:235.781771pt;}
.x84_c00297{left:236.880000pt;}
.x4b_c00297{left:237.935571pt;}
.x44_c00297{left:241.790563pt;}
.x13_c00297{left:243.987527pt;}
.x1c_c00297{left:247.575503pt;}
.x7b_c00297{left:249.129941pt;}
.x85_c00297{left:250.800000pt;}
.x3a_c00297{left:252.583471pt;}
.xc2_c00297{left:254.880000pt;}
.x5c_c00297{left:256.137189pt;}
.xb4_c00297{left:259.332000pt;}
.x31_c00297{left:262.692588pt;}
.x5_c00297{left:264.086667pt;}
.x7c_c00297{left:265.690617pt;}
.x86_c00297{left:267.120000pt;}
.x1d_c00297{left:268.456836pt;}
.x8e_c00297{left:270.240000pt;}
.xa0_c00297{left:272.640000pt;}
.x6e_c00297{left:274.330835pt;}
.x45_c00297{left:275.356263pt;}
.x63_c00297{left:276.969980pt;}
.xc9_c00297{left:277.920000pt;}
.x53_c00297{left:281.051000pt;}
.x6_c00297{left:282.573333pt;}
.x1e_c00297{left:284.019503pt;}
.x91_c00297{left:285.360000pt;}
.x4c_c00297{left:286.648379pt;}
.xad_c00297{left:288.240000pt;}
.x5d_c00297{left:289.997352pt;}
.x87_c00297{left:291.600000pt;}
.x14_c00297{left:292.493928pt;}
.xa9_c00297{left:293.520000pt;}
.xb7_c00297{left:294.487253pt;}
.x64_c00297{left:295.450876pt;}
.x1_c00297{left:300.720000pt;}
.x69_c00297{left:302.650483pt;}
.x1f_c00297{left:303.698169pt;}
.x7_c00297{left:306.620000pt;}
.xca_c00297{left:307.680000pt;}
.xcb_c00297{left:308.880000pt;}
.x9b_c00297{left:311.520000pt;}
.xc3_c00297{left:312.960000pt;}
.x97_c00297{left:313.920000pt;}
.xbb_c00297{left:315.120000pt;}
.x92_c00297{left:316.320000pt;}
.x5e_c00297{left:317.545236pt;}
.x3b_c00297{left:320.476967pt;}
.x2c_c00297{left:321.492088pt;}
.xc4_c00297{left:324.480000pt;}
.x88_c00297{left:325.440000pt;}
.x8_c00297{left:327.501333pt;}
.x75_c00297{left:328.812281pt;}
.x15_c00297{left:335.691172pt;}
.xcc_c00297{left:338.400000pt;}
.x20_c00297{left:339.503503pt;}
.xa1_c00297{left:341.520000pt;}
.xa4_c00297{left:342.720000pt;}
.x98_c00297{left:345.120000pt;}
.x32_c00297{left:349.083828pt;}
.xcd_c00297{left:351.360000pt;}
.x54_c00297{left:353.055712pt;}
.x9_c00297{left:354.582667pt;}
.x21_c00297{left:355.830169pt;}
.x46_c00297{left:359.638520pt;}
.xce_c00297{left:360.960000pt;}
.x7d_c00297{left:361.935581pt;}
.x93_c00297{left:364.080000pt;}
.x89_c00297{left:366.240000pt;}
.x33_c00297{left:367.798905pt;}
.x99_c00297{left:370.320000pt;}
.x3c_c00297{left:372.078096pt;}
.xbc_c00297{left:373.680000pt;}
.x16_c00297{left:377.245808pt;}
.xa2_c00297{left:378.720000pt;}
.xa_c00297{left:382.666667pt;}
.x47_c00297{left:385.089465pt;}
.x94_c00297{left:388.560000pt;}
.x2d_c00297{left:392.554755pt;}
.x22_c00297{left:393.992836pt;}
.x6a_c00297{left:395.297688pt;}
.xaa_c00297{left:397.200000pt;}
.x8a_c00297{left:399.360000pt;}
.x5f_c00297{left:400.384873pt;}
.x8f_c00297{left:401.760000pt;}
.xb5_c00297{left:403.826667pt;}
.xa5_c00297{left:404.880000pt;}
.x3d_c00297{left:409.552251pt;}
.x17_c00297{left:413.880605pt;}
.xb_c00297{left:416.546667pt;}
.x6f_c00297{left:418.578955pt;}
.x23_c00297{left:419.906169pt;}
.x34_c00297{left:422.005427pt;}
.xab_c00297{left:423.600000pt;}
.x48_c00297{left:425.417905pt;}
.x3e_c00297{left:428.520661pt;}
.xae_c00297{left:429.840000pt;}
.x76_c00297{left:431.299341pt;}
.x7e_c00297{left:432.258755pt;}
.x55_c00297{left:435.620367pt;}
.x24_c00297{left:438.355503pt;}
.x8b_c00297{left:440.160000pt;}
.x60_c00297{left:443.108099pt;}
.xc5_c00297{left:446.160000pt;}
.x18_c00297{left:447.532824pt;}
.x2e_c00297{left:448.704088pt;}
.x7f_c00297{left:450.739651pt;}
.x65_c00297{left:452.900580pt;}
.x90_c00297{left:454.560000pt;}
.x4d_c00297{left:455.851815pt;}
.x70_c00297{left:457.701025pt;}
.xd2_c00297{left:460.560000pt;}
.x3f_c00297{left:461.601395pt;}
.xc_c00297{left:463.597333pt;}
.xc6_c00297{left:466.320000pt;}
.xbd_c00297{left:467.280000pt;}
.xa6_c00297{left:468.720000pt;}
.x25_c00297{left:469.827503pt;}
.xaf_c00297{left:474.480000pt;}
.x61_c00297{left:475.780203pt;}
.xd3_c00297{left:476.880000pt;}
.x80_c00297{left:480.021867pt;}
.x56_c00297{left:483.383479pt;}
.x4e_c00297{left:484.905091pt;}
.x40_c00297{left:485.885923pt;}
.x35_c00297{left:486.805516pt;}
.x26_c00297{left:487.788836pt;}
.xb6_c00297{left:489.022667pt;}
.xbe_c00297{left:490.080000pt;}
.x6b_c00297{left:491.544000pt;}
.xa3_c00297{left:492.960000pt;}
.xd_c00297{left:497.428000pt;}
.x9a_c00297{left:499.200000pt;}
.x57_c00297{left:500.664243pt;}
.x4f_c00297{left:502.907216pt;}
.x19_c00297{left:503.934961pt;}
.x36_c00297{left:505.809941pt;}
.x6c_c00297{left:507.624617pt;}
.x66_c00297{left:509.303400pt;}
.x81_c00297{left:510.984273pt;}
.xe_c00297{left:512.753333pt;}
.x77_c00297{left:514.345388pt;}
.x41_c00297{left:516.362597pt;}
.xbf_c00297{left:520.560000pt;}
.x27_c00297{left:522.636836pt;}
.x62_c00297{left:524.471677pt;}
.x67_c00297{left:525.384017pt;}
.x6d_c00297{left:528.505807pt;}
.x58_c00297{left:531.146591pt;}
.x42_c00297{left:534.126993pt;}
.xb8_c00297{left:535.459333pt;}
.x71_c00297{left:537.145299pt;}
.x2f_c00297{left:538.466755pt;}
.xf_c00297{left:541.830667pt;}
.x37_c00297{left:542.730748pt;}
.x50_c00297{left:545.867775pt;}
.xb0_c00297{left:553.920000pt;}
.x49_c00297{left:557.372691pt;}
.x78_c00297{left:567.389131pt;}
.x8c_c00297{left:575.760000pt;}
.x95_c00297{left:576.720000pt;}
.x9c_c00297{left:579.840000pt;}
.xc0_c00297{left:582.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m8c_c00298{transform:matrix(0.007260,-0.000080,0.002750,0.249985,0,0);-ms-transform:matrix(0.007260,-0.000080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.007260,-0.000080,0.002750,0.249985,0,0);}
.m8e_c00298{transform:matrix(0.007425,-0.000082,0.002750,0.249985,0,0);-ms-transform:matrix(0.007425,-0.000082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.007425,-0.000082,0.002750,0.249985,0,0);}
.mfd_c00298{transform:matrix(0.012704,-0.000127,0.002500,0.249988,0,0);-ms-transform:matrix(0.012704,-0.000127,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012704,-0.000127,0.002500,0.249988,0,0);}
.m10c_c00298{transform:matrix(0.015809,-0.000126,0.002000,0.249992,0,0);-ms-transform:matrix(0.015809,-0.000126,0.002000,0.249992,0,0);-webkit-transform:matrix(0.015809,-0.000126,0.002000,0.249992,0,0);}
.m8a_c00298{transform:matrix(0.053597,-0.000590,0.002750,0.249985,0,0);-ms-transform:matrix(0.053597,-0.000590,0.002750,0.249985,0,0);-webkit-transform:matrix(0.053597,-0.000590,0.002750,0.249985,0,0);}
.m13a_c00298{transform:matrix(0.062548,-0.000500,0.002000,0.249992,0,0);-ms-transform:matrix(0.062548,-0.000500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.062548,-0.000500,0.002000,0.249992,0,0);}
.m8d_c00298{transform:matrix(0.069101,-0.000760,0.002750,0.249985,0,0);-ms-transform:matrix(0.069101,-0.000760,0.002750,0.249985,0,0);-webkit-transform:matrix(0.069101,-0.000760,0.002750,0.249985,0,0);}
.m52_c00298{transform:matrix(0.072356,-0.000796,0.002750,0.249985,0,0);-ms-transform:matrix(0.072356,-0.000796,0.002750,0.249985,0,0);-webkit-transform:matrix(0.072356,-0.000796,0.002750,0.249985,0,0);}
.m8b_c00298{transform:matrix(0.091444,-0.001006,0.002750,0.249985,0,0);-ms-transform:matrix(0.091444,-0.001006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.091444,-0.001006,0.002750,0.249985,0,0);}
.m11e_c00298{transform:matrix(0.096497,-0.000772,0.002000,0.249992,0,0);-ms-transform:matrix(0.096497,-0.000772,0.002000,0.249992,0,0);-webkit-transform:matrix(0.096497,-0.000772,0.002000,0.249992,0,0);}
.m50_c00298{transform:matrix(0.097174,-0.001069,0.002750,0.249985,0,0);-ms-transform:matrix(0.097174,-0.001069,0.002750,0.249985,0,0);-webkit-transform:matrix(0.097174,-0.001069,0.002750,0.249985,0,0);}
.m9e_c00298{transform:matrix(0.101765,-0.001018,0.002500,0.249988,0,0);-ms-transform:matrix(0.101765,-0.001018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.101765,-0.001018,0.002500,0.249988,0,0);}
.mfe_c00298{transform:matrix(0.110539,-0.001105,0.002500,0.249988,0,0);-ms-transform:matrix(0.110539,-0.001105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.110539,-0.001105,0.002500,0.249988,0,0);}
.m14d_c00298{transform:matrix(0.115640,-0.001041,0.002250,0.249990,0,0);-ms-transform:matrix(0.115640,-0.001041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.115640,-0.001041,0.002250,0.249990,0,0);}
.m40_c00298{transform:matrix(0.123108,-0.001354,0.002750,0.249985,0,0);-ms-transform:matrix(0.123108,-0.001354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.123108,-0.001354,0.002750,0.249985,0,0);}
.ma0_c00298{transform:matrix(0.125439,-0.001254,0.002500,0.249988,0,0);-ms-transform:matrix(0.125439,-0.001254,0.002500,0.249988,0,0);-webkit-transform:matrix(0.125439,-0.001254,0.002500,0.249988,0,0);}
.m94_c00298{transform:matrix(0.135962,-0.001496,0.002750,0.249985,0,0);-ms-transform:matrix(0.135962,-0.001496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.135962,-0.001496,0.002750,0.249985,0,0);}
.m36_c00298{transform:matrix(0.141391,-0.001555,0.002750,0.249985,0,0);-ms-transform:matrix(0.141391,-0.001555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141391,-0.001555,0.002750,0.249985,0,0);}
.m3b_c00298{transform:matrix(0.141486,-0.001556,0.002750,0.249985,0,0);-ms-transform:matrix(0.141486,-0.001556,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141486,-0.001556,0.002750,0.249985,0,0);}
.m2e_c00298{transform:matrix(0.142091,-0.001563,0.002750,0.249985,0,0);-ms-transform:matrix(0.142091,-0.001563,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142091,-0.001563,0.002750,0.249985,0,0);}
.m3d_c00298{transform:matrix(0.144766,-0.001592,0.002750,0.249985,0,0);-ms-transform:matrix(0.144766,-0.001592,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144766,-0.001592,0.002750,0.249985,0,0);}
.m3c_c00298{transform:matrix(0.147771,-0.001625,0.002750,0.249985,0,0);-ms-transform:matrix(0.147771,-0.001625,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147771,-0.001625,0.002750,0.249985,0,0);}
.m53_c00298{transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-ms-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147936,-0.001627,0.002750,0.249985,0,0);}
.mb9_c00298{transform:matrix(0.149283,-0.001493,0.002500,0.249988,0,0);-ms-transform:matrix(0.149283,-0.001493,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149283,-0.001493,0.002500,0.249988,0,0);}
.m9d_c00298{transform:matrix(0.150572,-0.001506,0.002500,0.249988,0,0);-ms-transform:matrix(0.150572,-0.001506,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150572,-0.001506,0.002500,0.249988,0,0);}
.m39_c00298{transform:matrix(0.151951,-0.001671,0.002750,0.249985,0,0);-ms-transform:matrix(0.151951,-0.001671,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151951,-0.001671,0.002750,0.249985,0,0);}
.mdf_c00298{transform:matrix(0.152702,-0.001527,0.002500,0.249988,0,0);-ms-transform:matrix(0.152702,-0.001527,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152702,-0.001527,0.002500,0.249988,0,0);}
.m62_c00298{transform:matrix(0.153366,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153366,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153366,-0.001687,0.002750,0.249985,0,0);}
.m19_c00298{transform:matrix(0.154356,-0.001698,0.002750,0.249985,0,0);-ms-transform:matrix(0.154356,-0.001698,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154356,-0.001698,0.002750,0.249985,0,0);}
.md0_c00298{transform:matrix(0.154692,-0.001547,0.002500,0.249988,0,0);-ms-transform:matrix(0.154692,-0.001547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154692,-0.001547,0.002500,0.249988,0,0);}
.mbf_c00298{transform:matrix(0.155807,-0.001558,0.002500,0.249988,0,0);-ms-transform:matrix(0.155807,-0.001558,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155807,-0.001558,0.002500,0.249988,0,0);}
.mb4_c00298{transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);-ms-transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156632,-0.001566,0.002500,0.249988,0,0);}
.ma1_c00298{transform:matrix(0.157557,-0.001576,0.002500,0.249988,0,0);-ms-transform:matrix(0.157557,-0.001576,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157557,-0.001576,0.002500,0.249988,0,0);}
.m55_c00298{transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);-ms-transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);}
.m43_c00298{transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);-ms-transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);}
.mb5_c00298{transform:matrix(0.160942,-0.001609,0.002500,0.249988,0,0);-ms-transform:matrix(0.160942,-0.001609,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160942,-0.001609,0.002500,0.249988,0,0);}
.m9f_c00298{transform:matrix(0.161547,-0.001615,0.002500,0.249988,0,0);-ms-transform:matrix(0.161547,-0.001615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161547,-0.001615,0.002500,0.249988,0,0);}
.md4_c00298{transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);-ms-transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);}
.m6e_c00298{transform:matrix(0.162465,-0.001787,0.002750,0.249985,0,0);-ms-transform:matrix(0.162465,-0.001787,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162465,-0.001787,0.002750,0.249985,0,0);}
.mbb_c00298{transform:matrix(0.162492,-0.001625,0.002500,0.249988,0,0);-ms-transform:matrix(0.162492,-0.001625,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162492,-0.001625,0.002500,0.249988,0,0);}
.m6b_c00298{transform:matrix(0.162860,-0.001791,0.002750,0.249985,0,0);-ms-transform:matrix(0.162860,-0.001791,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162860,-0.001791,0.002750,0.249985,0,0);}
.m69_c00298{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);}
.m2b_c00298{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);}
.m7c_c00298{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);}
.m1b_c00298{transform:matrix(0.165390,-0.001819,0.002750,0.249985,0,0);-ms-transform:matrix(0.165390,-0.001819,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165390,-0.001819,0.002750,0.249985,0,0);}
.m75_c00298{transform:matrix(0.166385,-0.001830,0.002750,0.249985,0,0);-ms-transform:matrix(0.166385,-0.001830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166385,-0.001830,0.002750,0.249985,0,0);}
.m3a_c00298{transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166500,-0.001831,0.002750,0.249985,0,0);}
.me0_c00298{transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);-ms-transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);}
.m117_c00298{transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);-ms-transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);}
.m4d_c00298{transform:matrix(0.168935,-0.001858,0.002750,0.249985,0,0);-ms-transform:matrix(0.168935,-0.001858,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168935,-0.001858,0.002750,0.249985,0,0);}
.m84_c00298{transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);-ms-transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);}
.mb2_c00298{transform:matrix(0.169897,-0.001699,0.002500,0.249988,0,0);-ms-transform:matrix(0.169897,-0.001699,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169897,-0.001699,0.002500,0.249988,0,0);}
.mb3_c00298{transform:matrix(0.170246,-0.001702,0.002500,0.249988,0,0);-ms-transform:matrix(0.170246,-0.001702,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170246,-0.001702,0.002500,0.249988,0,0);}
.md7_c00298{transform:matrix(0.170621,-0.001706,0.002500,0.249988,0,0);-ms-transform:matrix(0.170621,-0.001706,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170621,-0.001706,0.002500,0.249988,0,0);}
.m2c_c00298{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);}
.m1a_c00298{transform:matrix(0.171310,-0.001884,0.002750,0.249985,0,0);-ms-transform:matrix(0.171310,-0.001884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171310,-0.001884,0.002750,0.249985,0,0);}
.m138_c00298{transform:matrix(0.171934,-0.001375,0.002000,0.249992,0,0);-ms-transform:matrix(0.171934,-0.001375,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171934,-0.001375,0.002000,0.249992,0,0);}
.ma9_c00298{transform:matrix(0.172591,-0.001726,0.002500,0.249988,0,0);-ms-transform:matrix(0.172591,-0.001726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172591,-0.001726,0.002500,0.249988,0,0);}
.m92_c00298{transform:matrix(0.173110,-0.001904,0.002750,0.249985,0,0);-ms-transform:matrix(0.173110,-0.001904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173110,-0.001904,0.002750,0.249985,0,0);}
.mca_c00298{transform:matrix(0.173461,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173461,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173461,-0.001735,0.002500,0.249988,0,0);}
.ma4_c00298{transform:matrix(0.173691,-0.001737,0.002500,0.249988,0,0);-ms-transform:matrix(0.173691,-0.001737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173691,-0.001737,0.002500,0.249988,0,0);}
.m56_c00298{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);}
.m33_c00298{transform:matrix(0.174324,-0.001918,0.002750,0.249985,0,0);-ms-transform:matrix(0.174324,-0.001918,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174324,-0.001918,0.002750,0.249985,0,0);}
.m14a_c00298{transform:matrix(0.174658,-0.001572,0.002250,0.249990,0,0);-ms-transform:matrix(0.174658,-0.001572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174658,-0.001572,0.002250,0.249990,0,0);}
.ma5_c00298{transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);}
.m64_c00298{transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);-ms-transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);}
.m79_c00298{transform:matrix(0.177359,-0.001951,0.002750,0.249985,0,0);-ms-transform:matrix(0.177359,-0.001951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177359,-0.001951,0.002750,0.249985,0,0);}
.md3_c00298{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);}
.m2f_c00298{transform:matrix(0.178879,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178879,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178879,-0.001968,0.002750,0.249985,0,0);}
.m12_c00298{transform:matrix(0.178899,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178899,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178899,-0.001968,0.002750,0.249985,0,0);}
.m13b_c00298{transform:matrix(0.179053,-0.001611,0.002250,0.249990,0,0);-ms-transform:matrix(0.179053,-0.001611,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179053,-0.001611,0.002250,0.249990,0,0);}
.m72_c00298{transform:matrix(0.179094,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179094,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179094,-0.001970,0.002750,0.249985,0,0);}
.m4c_c00298{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);}
.m77_c00298{transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);}
.m134_c00298{transform:matrix(0.180749,-0.001446,0.002000,0.249992,0,0);-ms-transform:matrix(0.180749,-0.001446,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180749,-0.001446,0.002000,0.249992,0,0);}
.mab_c00298{transform:matrix(0.180826,-0.001808,0.002500,0.249988,0,0);-ms-transform:matrix(0.180826,-0.001808,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180826,-0.001808,0.002500,0.249988,0,0);}
.m2d_c00298{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);}
.mcc_c00298{transform:matrix(0.181341,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181341,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181341,-0.001813,0.002500,0.249988,0,0);}
.m34_c00298{transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);}
.m47_c00298{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);}
.m32_c00298{transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);-ms-transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182469,-0.002007,0.002750,0.249985,0,0);}
.mcf_c00298{transform:matrix(0.182621,-0.001826,0.002500,0.249988,0,0);-ms-transform:matrix(0.182621,-0.001826,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182621,-0.001826,0.002500,0.249988,0,0);}
.mc0_c00298{transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);}
.m48_c00298{transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);}
.mbc_c00298{transform:matrix(0.182801,-0.001828,0.002500,0.249988,0,0);-ms-transform:matrix(0.182801,-0.001828,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182801,-0.001828,0.002500,0.249988,0,0);}
.m71_c00298{transform:matrix(0.183014,-0.002013,0.002750,0.249985,0,0);-ms-transform:matrix(0.183014,-0.002013,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183014,-0.002013,0.002750,0.249985,0,0);}
.m5a_c00298{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);}
.mb8_c00298{transform:matrix(0.183031,-0.001830,0.002500,0.249988,0,0);-ms-transform:matrix(0.183031,-0.001830,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183031,-0.001830,0.002500,0.249988,0,0);}
.m6d_c00298{transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);}
.mba_c00298{transform:matrix(0.183861,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183861,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183861,-0.001839,0.002500,0.249988,0,0);}
.m10_c00298{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);}
.m14c_c00298{transform:matrix(0.184363,-0.001659,0.002250,0.249990,0,0);-ms-transform:matrix(0.184363,-0.001659,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184363,-0.001659,0.002250,0.249990,0,0);}
.m136_c00298{transform:matrix(0.185029,-0.001480,0.002000,0.249992,0,0);-ms-transform:matrix(0.185029,-0.001480,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185029,-0.001480,0.002000,0.249992,0,0);}
.m102_c00298{transform:matrix(0.185124,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185124,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185124,-0.001481,0.002000,0.249992,0,0);}
.m88_c00298{transform:matrix(0.185204,-0.002037,0.002750,0.249985,0,0);-ms-transform:matrix(0.185204,-0.002037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185204,-0.002037,0.002750,0.249985,0,0);}
.me3_c00298{transform:matrix(0.185511,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185511,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185511,-0.001855,0.002500,0.249988,0,0);}
.ma7_c00298{transform:matrix(0.185611,-0.001856,0.002500,0.249988,0,0);-ms-transform:matrix(0.185611,-0.001856,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185611,-0.001856,0.002500,0.249988,0,0);}
.m107_c00298{transform:matrix(0.185859,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185859,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185859,-0.001487,0.002000,0.249992,0,0);}
.m8f_c00298{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);}
.mc5_c00298{transform:matrix(0.186206,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186206,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186206,-0.001862,0.002500,0.249988,0,0);}
.m68_c00298{transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186754,-0.002054,0.002750,0.249985,0,0);}
.m151_c00298{transform:matrix(0.186937,-0.001682,0.002250,0.249990,0,0);-ms-transform:matrix(0.186937,-0.001682,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186937,-0.001682,0.002250,0.249990,0,0);}
.m119_c00298{transform:matrix(0.187109,-0.001497,0.002000,0.249992,0,0);-ms-transform:matrix(0.187109,-0.001497,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187109,-0.001497,0.002000,0.249992,0,0);}
.md6_c00298{transform:matrix(0.187111,-0.001871,0.002500,0.249988,0,0);-ms-transform:matrix(0.187111,-0.001871,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187111,-0.001871,0.002500,0.249988,0,0);}
.m123_c00298{transform:matrix(0.188079,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188079,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188079,-0.001505,0.002000,0.249992,0,0);}
.mdd_c00298{transform:matrix(0.188106,-0.001881,0.002500,0.249988,0,0);-ms-transform:matrix(0.188106,-0.001881,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188106,-0.001881,0.002500,0.249988,0,0);}
.m140_c00298{transform:matrix(0.188682,-0.001698,0.002250,0.249990,0,0);-ms-transform:matrix(0.188682,-0.001698,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188682,-0.001698,0.002250,0.249990,0,0);}
.m109_c00298{transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);-ms-transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189009,-0.001512,0.002000,0.249992,0,0);}
.mc2_c00298{transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);}
.mb6_c00298{transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);}
.m15_c00298{transform:matrix(0.191043,-0.002101,0.002750,0.249985,0,0);-ms-transform:matrix(0.191043,-0.002101,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191043,-0.002101,0.002750,0.249985,0,0);}
.m3e_c00298{transform:matrix(0.191158,-0.002103,0.002750,0.249985,0,0);-ms-transform:matrix(0.191158,-0.002103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191158,-0.002103,0.002750,0.249985,0,0);}
.m7d_c00298{transform:matrix(0.191218,-0.002103,0.002750,0.249985,0,0);-ms-transform:matrix(0.191218,-0.002103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191218,-0.002103,0.002750,0.249985,0,0);}
.m112_c00298{transform:matrix(0.191369,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191369,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191369,-0.001531,0.002000,0.249992,0,0);}
.m9b_c00298{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);}
.m85_c00298{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);}
.mf_c00298{transform:matrix(0.191578,-0.002107,0.002750,0.249985,0,0);-ms-transform:matrix(0.191578,-0.002107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191578,-0.002107,0.002750,0.249985,0,0);}
.maa_c00298{transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);}
.mcd_c00298{transform:matrix(0.191825,-0.001918,0.002500,0.249988,0,0);-ms-transform:matrix(0.191825,-0.001918,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191825,-0.001918,0.002500,0.249988,0,0);}
.m18_c00298{transform:matrix(0.191873,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191873,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191873,-0.002111,0.002750,0.249985,0,0);}
.mce_c00298{transform:matrix(0.191880,-0.001919,0.002500,0.249988,0,0);-ms-transform:matrix(0.191880,-0.001919,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191880,-0.001919,0.002500,0.249988,0,0);}
.m70_c00298{transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);}
.m137_c00298{transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);}
.m73_c00298{transform:matrix(0.192518,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192518,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192518,-0.002118,0.002750,0.249985,0,0);}
.m65_c00298{transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);}
.m5c_c00298{transform:matrix(0.192693,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192693,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192693,-0.002120,0.002750,0.249985,0,0);}
.m129_c00298{transform:matrix(0.192944,-0.001544,0.002000,0.249992,0,0);-ms-transform:matrix(0.192944,-0.001544,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192944,-0.001544,0.002000,0.249992,0,0);}
.mde_c00298{transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);}
.m28_c00298{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);}
.m14_c00298{transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);-ms-transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194468,-0.002139,0.002750,0.249985,0,0);}
.m60_c00298{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);}
.m10e_c00298{transform:matrix(0.195184,-0.001561,0.002000,0.249992,0,0);-ms-transform:matrix(0.195184,-0.001561,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195184,-0.001561,0.002000,0.249992,0,0);}
.mfb_c00298{transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);-ms-transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);}
.mc1_c00298{transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);-ms-transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195690,-0.001957,0.002500,0.249988,0,0);}
.md1_c00298{transform:matrix(0.196470,-0.001965,0.002500,0.249988,0,0);-ms-transform:matrix(0.196470,-0.001965,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196470,-0.001965,0.002500,0.249988,0,0);}
.mdc_c00298{transform:matrix(0.196510,-0.001965,0.002500,0.249988,0,0);-ms-transform:matrix(0.196510,-0.001965,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196510,-0.001965,0.002500,0.249988,0,0);}
.m1c_c00298{transform:matrix(0.196523,-0.002162,0.002750,0.249985,0,0);-ms-transform:matrix(0.196523,-0.002162,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196523,-0.002162,0.002750,0.249985,0,0);}
.m59_c00298{transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);}
.mbd_c00298{transform:matrix(0.196830,-0.001968,0.002500,0.249988,0,0);-ms-transform:matrix(0.196830,-0.001968,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196830,-0.001968,0.002500,0.249988,0,0);}
.m31_c00298{transform:matrix(0.196843,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196843,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196843,-0.002165,0.002750,0.249985,0,0);}
.m141_c00298{transform:matrix(0.197342,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197342,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197342,-0.001776,0.002250,0.249990,0,0);}
.md5_c00298{transform:matrix(0.197665,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197665,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197665,-0.001977,0.002500,0.249988,0,0);}
.m67_c00298{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);}
.mdb_c00298{transform:matrix(0.198205,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198205,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198205,-0.001982,0.002500,0.249988,0,0);}
.md2_c00298{transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);}
.m76_c00298{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);}
.m145_c00298{transform:matrix(0.199197,-0.001793,0.002250,0.249990,0,0);-ms-transform:matrix(0.199197,-0.001793,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199197,-0.001793,0.002250,0.249990,0,0);}
.m66_c00298{transform:matrix(0.199248,-0.002192,0.002750,0.249985,0,0);-ms-transform:matrix(0.199248,-0.002192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199248,-0.002192,0.002750,0.249985,0,0);}
.m44_c00298{transform:matrix(0.199693,-0.002197,0.002750,0.249985,0,0);-ms-transform:matrix(0.199693,-0.002197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199693,-0.002197,0.002750,0.249985,0,0);}
.m80_c00298{transform:matrix(0.199853,-0.002198,0.002750,0.249985,0,0);-ms-transform:matrix(0.199853,-0.002198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199853,-0.002198,0.002750,0.249985,0,0);}
.me1_c00298{transform:matrix(0.199890,-0.001999,0.002500,0.249988,0,0);-ms-transform:matrix(0.199890,-0.001999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199890,-0.001999,0.002500,0.249988,0,0);}
.mb1_c00298{transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);}
.m38_c00298{transform:matrix(0.200783,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200783,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200783,-0.002209,0.002750,0.249985,0,0);}
.mb7_c00298{transform:matrix(0.201245,-0.002012,0.002500,0.249988,0,0);-ms-transform:matrix(0.201245,-0.002012,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201245,-0.002012,0.002500,0.249988,0,0);}
.mac_c00298{transform:matrix(0.202105,-0.002021,0.002500,0.249988,0,0);-ms-transform:matrix(0.202105,-0.002021,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202105,-0.002021,0.002500,0.249988,0,0);}
.m78_c00298{transform:matrix(0.203003,-0.002233,0.002750,0.249985,0,0);-ms-transform:matrix(0.203003,-0.002233,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203003,-0.002233,0.002750,0.249985,0,0);}
.m54_c00298{transform:matrix(0.203053,-0.002234,0.002750,0.249985,0,0);-ms-transform:matrix(0.203053,-0.002234,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203053,-0.002234,0.002750,0.249985,0,0);}
.m49_c00298{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);}
.m21_c00298{transform:matrix(0.203423,-0.002238,0.002750,0.249985,0,0);-ms-transform:matrix(0.203423,-0.002238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203423,-0.002238,0.002750,0.249985,0,0);}
.md8_c00298{transform:matrix(0.203785,-0.002038,0.002500,0.249988,0,0);-ms-transform:matrix(0.203785,-0.002038,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203785,-0.002038,0.002500,0.249988,0,0);}
.m111_c00298{transform:matrix(0.204283,-0.001634,0.002000,0.249992,0,0);-ms-transform:matrix(0.204283,-0.001634,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204283,-0.001634,0.002000,0.249992,0,0);}
.mc3_c00298{transform:matrix(0.204470,-0.002045,0.002500,0.249988,0,0);-ms-transform:matrix(0.204470,-0.002045,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204470,-0.002045,0.002500,0.249988,0,0);}
.md9_c00298{transform:matrix(0.204765,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204765,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204765,-0.002048,0.002500,0.249988,0,0);}
.mda_c00298{transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);}
.m110_c00298{transform:matrix(0.205218,-0.001642,0.002000,0.249992,0,0);-ms-transform:matrix(0.205218,-0.001642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205218,-0.001642,0.002000,0.249992,0,0);}
.m4b_c00298{transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);}
.m27_c00298{transform:matrix(0.205608,-0.002262,0.002750,0.249985,0,0);-ms-transform:matrix(0.205608,-0.002262,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205608,-0.002262,0.002750,0.249985,0,0);}
.m139_c00298{transform:matrix(0.206788,-0.001654,0.002000,0.249992,0,0);-ms-transform:matrix(0.206788,-0.001654,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206788,-0.001654,0.002000,0.249992,0,0);}
.m152_c00298{transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);-ms-transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);}
.m14e_c00298{transform:matrix(0.207327,-0.001866,0.002250,0.249990,0,0);-ms-transform:matrix(0.207327,-0.001866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207327,-0.001866,0.002250,0.249990,0,0);}
.m23_c00298{transform:matrix(0.207417,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207417,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207417,-0.002282,0.002750,0.249985,0,0);}
.m14b_c00298{transform:matrix(0.207492,-0.001867,0.002250,0.249990,0,0);-ms-transform:matrix(0.207492,-0.001867,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207492,-0.001867,0.002250,0.249990,0,0);}
.m11c_c00298{transform:matrix(0.207523,-0.001660,0.002000,0.249992,0,0);-ms-transform:matrix(0.207523,-0.001660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207523,-0.001660,0.002000,0.249992,0,0);}
.m87_c00298{transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);}
.m58_c00298{transform:matrix(0.208022,-0.002288,0.002750,0.249985,0,0);-ms-transform:matrix(0.208022,-0.002288,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208022,-0.002288,0.002750,0.249985,0,0);}
.m3f_c00298{transform:matrix(0.208822,-0.002297,0.002750,0.249985,0,0);-ms-transform:matrix(0.208822,-0.002297,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208822,-0.002297,0.002750,0.249985,0,0);}
.m106_c00298{transform:matrix(0.209258,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209258,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209258,-0.001674,0.002000,0.249992,0,0);}
.m133_c00298{transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);-ms-transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);}
.ma6_c00298{transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209865,-0.002099,0.002500,0.249988,0,0);}
.m130_c00298{transform:matrix(0.209908,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209908,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209908,-0.001679,0.002000,0.249992,0,0);}
.m126_c00298{transform:matrix(0.210188,-0.001682,0.002000,0.249992,0,0);-ms-transform:matrix(0.210188,-0.001682,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210188,-0.001682,0.002000,0.249992,0,0);}
.m12f_c00298{transform:matrix(0.210213,-0.001682,0.002000,0.249992,0,0);-ms-transform:matrix(0.210213,-0.001682,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210213,-0.001682,0.002000,0.249992,0,0);}
.me7_c00298{transform:matrix(0.210229,-0.002102,0.002500,0.249988,0,0);-ms-transform:matrix(0.210229,-0.002102,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210229,-0.002102,0.002500,0.249988,0,0);}
.meb_c00298{transform:matrix(0.210649,-0.002106,0.002500,0.249988,0,0);-ms-transform:matrix(0.210649,-0.002106,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210649,-0.002106,0.002500,0.249988,0,0);}
.m89_c00298{transform:matrix(0.211282,-0.002324,0.002750,0.249985,0,0);-ms-transform:matrix(0.211282,-0.002324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211282,-0.002324,0.002750,0.249985,0,0);}
.m4f_c00298{transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);}
.m90_c00298{transform:matrix(0.211637,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211637,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211637,-0.002328,0.002750,0.249985,0,0);}
.mb0_c00298{transform:matrix(0.211849,-0.002118,0.002500,0.249988,0,0);-ms-transform:matrix(0.211849,-0.002118,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211849,-0.002118,0.002500,0.249988,0,0);}
.m6c_c00298{transform:matrix(0.212292,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212292,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212292,-0.002335,0.002750,0.249985,0,0);}
.m143_c00298{transform:matrix(0.212386,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212386,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212386,-0.001911,0.002250,0.249990,0,0);}
.mc6_c00298{transform:matrix(0.212959,-0.002130,0.002500,0.249988,0,0);-ms-transform:matrix(0.212959,-0.002130,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212959,-0.002130,0.002500,0.249988,0,0);}
.m13_c00298{transform:matrix(0.213062,-0.002344,0.002750,0.249985,0,0);-ms-transform:matrix(0.213062,-0.002344,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213062,-0.002344,0.002750,0.249985,0,0);}
.m5b_c00298{transform:matrix(0.213352,-0.002347,0.002750,0.249985,0,0);-ms-transform:matrix(0.213352,-0.002347,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213352,-0.002347,0.002750,0.249985,0,0);}
.m124_c00298{transform:matrix(0.213888,-0.001711,0.002000,0.249992,0,0);-ms-transform:matrix(0.213888,-0.001711,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213888,-0.001711,0.002000,0.249992,0,0);}
.me5_c00298{transform:matrix(0.214004,-0.002140,0.002500,0.249988,0,0);-ms-transform:matrix(0.214004,-0.002140,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214004,-0.002140,0.002500,0.249988,0,0);}
.m114_c00298{transform:matrix(0.214028,-0.001712,0.002000,0.249992,0,0);-ms-transform:matrix(0.214028,-0.001712,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214028,-0.001712,0.002000,0.249992,0,0);}
.me2_c00298{transform:matrix(0.214114,-0.002141,0.002500,0.249988,0,0);-ms-transform:matrix(0.214114,-0.002141,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214114,-0.002141,0.002500,0.249988,0,0);}
.m144_c00298{transform:matrix(0.216016,-0.001944,0.002250,0.249990,0,0);-ms-transform:matrix(0.216016,-0.001944,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216016,-0.001944,0.002250,0.249990,0,0);}
.mf9_c00298{transform:matrix(0.216064,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216064,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216064,-0.002161,0.002500,0.249988,0,0);}
.m100_c00298{transform:matrix(0.216208,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216208,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216208,-0.001730,0.002000,0.249992,0,0);}
.mf1_c00298{transform:matrix(0.216579,-0.002166,0.002500,0.249988,0,0);-ms-transform:matrix(0.216579,-0.002166,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216579,-0.002166,0.002500,0.249988,0,0);}
.m5e_c00298{transform:matrix(0.216772,-0.002384,0.002750,0.249985,0,0);-ms-transform:matrix(0.216772,-0.002384,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216772,-0.002384,0.002750,0.249985,0,0);}
.mc7_c00298{transform:matrix(0.216779,-0.002168,0.002500,0.249988,0,0);-ms-transform:matrix(0.216779,-0.002168,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216779,-0.002168,0.002500,0.249988,0,0);}
.m1d_c00298{transform:matrix(0.216952,-0.002386,0.002750,0.249985,0,0);-ms-transform:matrix(0.216952,-0.002386,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216952,-0.002386,0.002750,0.249985,0,0);}
.m46_c00298{transform:matrix(0.217537,-0.002393,0.002750,0.249985,0,0);-ms-transform:matrix(0.217537,-0.002393,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217537,-0.002393,0.002750,0.249985,0,0);}
.m115_c00298{transform:matrix(0.218633,-0.001749,0.002000,0.249992,0,0);-ms-transform:matrix(0.218633,-0.001749,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218633,-0.001749,0.002000,0.249992,0,0);}
.m125_c00298{transform:matrix(0.218738,-0.001750,0.002000,0.249992,0,0);-ms-transform:matrix(0.218738,-0.001750,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218738,-0.001750,0.002000,0.249992,0,0);}
.m149_c00298{transform:matrix(0.219711,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219711,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219711,-0.001977,0.002250,0.249990,0,0);}
.m103_c00298{transform:matrix(0.220093,-0.001761,0.002000,0.249992,0,0);-ms-transform:matrix(0.220093,-0.001761,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220093,-0.001761,0.002000,0.249992,0,0);}
.m131_c00298{transform:matrix(0.220583,-0.001765,0.002000,0.249992,0,0);-ms-transform:matrix(0.220583,-0.001765,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220583,-0.001765,0.002000,0.249992,0,0);}
.m11_c00298{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);}
.mf7_c00298{transform:matrix(0.220829,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220829,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220829,-0.002208,0.002500,0.249988,0,0);}
.mad_c00298{transform:matrix(0.220874,-0.002209,0.002500,0.249988,0,0);-ms-transform:matrix(0.220874,-0.002209,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220874,-0.002209,0.002500,0.249988,0,0);}
.m74_c00298{transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-ms-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);}
.m11d_c00298{transform:matrix(0.222613,-0.001781,0.002000,0.249992,0,0);-ms-transform:matrix(0.222613,-0.001781,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222613,-0.001781,0.002000,0.249992,0,0);}
.m108_c00298{transform:matrix(0.223308,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223308,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223308,-0.001786,0.002000,0.249992,0,0);}
.m82_c00298{transform:matrix(0.224121,-0.002465,0.002750,0.249985,0,0);-ms-transform:matrix(0.224121,-0.002465,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224121,-0.002465,0.002750,0.249985,0,0);}
.m86_c00298{transform:matrix(0.224341,-0.002468,0.002750,0.249985,0,0);-ms-transform:matrix(0.224341,-0.002468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224341,-0.002468,0.002750,0.249985,0,0);}
.m118_c00298{transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);-ms-transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225068,-0.001801,0.002000,0.249992,0,0);}
.m146_c00298{transform:matrix(0.225506,-0.002030,0.002250,0.249990,0,0);-ms-transform:matrix(0.225506,-0.002030,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225506,-0.002030,0.002250,0.249990,0,0);}
.ma8_c00298{transform:matrix(0.226559,-0.002266,0.002500,0.249988,0,0);-ms-transform:matrix(0.226559,-0.002266,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226559,-0.002266,0.002500,0.249988,0,0);}
.m4e_c00298{transform:matrix(0.226906,-0.002496,0.002750,0.249985,0,0);-ms-transform:matrix(0.226906,-0.002496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226906,-0.002496,0.002750,0.249985,0,0);}
.m41_c00298{transform:matrix(0.227001,-0.002497,0.002750,0.249985,0,0);-ms-transform:matrix(0.227001,-0.002497,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227001,-0.002497,0.002750,0.249985,0,0);}
.med_c00298{transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);-ms-transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);}
.mbe_c00298{transform:matrix(0.227764,-0.002278,0.002500,0.249988,0,0);-ms-transform:matrix(0.227764,-0.002278,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227764,-0.002278,0.002500,0.249988,0,0);}
.m6f_c00298{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);}
.m7e_c00298{transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);-ms-transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228191,-0.002510,0.002750,0.249985,0,0);}
.m96_c00298{transform:matrix(0.228304,-0.002283,0.002500,0.249988,0,0);-ms-transform:matrix(0.228304,-0.002283,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228304,-0.002283,0.002500,0.249988,0,0);}
.m20_c00298{transform:matrix(0.228531,-0.002514,0.002750,0.249985,0,0);-ms-transform:matrix(0.228531,-0.002514,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228531,-0.002514,0.002750,0.249985,0,0);}
.m42_c00298{transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229981,-0.002530,0.002750,0.249985,0,0);}
.m128_c00298{transform:matrix(0.230278,-0.001842,0.002000,0.249992,0,0);-ms-transform:matrix(0.230278,-0.001842,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230278,-0.001842,0.002000,0.249992,0,0);}
.me9_c00298{transform:matrix(0.230283,-0.002303,0.002500,0.249988,0,0);-ms-transform:matrix(0.230283,-0.002303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230283,-0.002303,0.002500,0.249988,0,0);}
.m22_c00298{transform:matrix(0.232911,-0.002562,0.002750,0.249985,0,0);-ms-transform:matrix(0.232911,-0.002562,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232911,-0.002562,0.002750,0.249985,0,0);}
.m11f_c00298{transform:matrix(0.233483,-0.001868,0.002000,0.249992,0,0);-ms-transform:matrix(0.233483,-0.001868,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233483,-0.001868,0.002000,0.249992,0,0);}
.mc4_c00298{transform:matrix(0.233573,-0.002336,0.002500,0.249988,0,0);-ms-transform:matrix(0.233573,-0.002336,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233573,-0.002336,0.002500,0.249988,0,0);}
.mc9_c00298{transform:matrix(0.233633,-0.002336,0.002500,0.249988,0,0);-ms-transform:matrix(0.233633,-0.002336,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233633,-0.002336,0.002500,0.249988,0,0);}
.m13f_c00298{transform:matrix(0.233891,-0.002105,0.002250,0.249990,0,0);-ms-transform:matrix(0.233891,-0.002105,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233891,-0.002105,0.002250,0.249990,0,0);}
.m135_c00298{transform:matrix(0.235302,-0.001882,0.002000,0.249992,0,0);-ms-transform:matrix(0.235302,-0.001882,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235302,-0.001882,0.002000,0.249992,0,0);}
.m10a_c00298{transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);-ms-transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);}
.me_c00298{transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);}
.m29_c00298{transform:matrix(0.236596,-0.002603,0.002750,0.249985,0,0);-ms-transform:matrix(0.236596,-0.002603,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236596,-0.002603,0.002750,0.249985,0,0);}
.m105_c00298{transform:matrix(0.236837,-0.001895,0.002000,0.249992,0,0);-ms-transform:matrix(0.236837,-0.001895,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236837,-0.001895,0.002000,0.249992,0,0);}
.m7b_c00298{transform:matrix(0.237566,-0.002613,0.002750,0.249985,0,0);-ms-transform:matrix(0.237566,-0.002613,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237566,-0.002613,0.002750,0.249985,0,0);}
.mf2_c00298{transform:matrix(0.237943,-0.002379,0.002500,0.249988,0,0);-ms-transform:matrix(0.237943,-0.002379,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237943,-0.002379,0.002500,0.249988,0,0);}
.m10f_c00298{transform:matrix(0.238352,-0.001907,0.002000,0.249992,0,0);-ms-transform:matrix(0.238352,-0.001907,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238352,-0.001907,0.002000,0.249992,0,0);}
.m11b_c00298{transform:matrix(0.238617,-0.001909,0.002000,0.249992,0,0);-ms-transform:matrix(0.238617,-0.001909,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238617,-0.001909,0.002000,0.249992,0,0);}
.mcb_c00298{transform:matrix(0.240693,-0.002407,0.002500,0.249988,0,0);-ms-transform:matrix(0.240693,-0.002407,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240693,-0.002407,0.002500,0.249988,0,0);}
.m5d_c00298{transform:matrix(0.241330,-0.002655,0.002750,0.249985,0,0);-ms-transform:matrix(0.241330,-0.002655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241330,-0.002655,0.002750,0.249985,0,0);}
.m12e_c00298{transform:matrix(0.241502,-0.001932,0.002000,0.249992,0,0);-ms-transform:matrix(0.241502,-0.001932,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241502,-0.001932,0.002000,0.249992,0,0);}
.m37_c00298{transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);-ms-transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);}
.m6a_c00298{transform:matrix(0.242300,-0.002665,0.002750,0.249985,0,0);-ms-transform:matrix(0.242300,-0.002665,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242300,-0.002665,0.002750,0.249985,0,0);}
.m10b_c00298{transform:matrix(0.242332,-0.001939,0.002000,0.249992,0,0);-ms-transform:matrix(0.242332,-0.001939,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242332,-0.001939,0.002000,0.249992,0,0);}
.m25_c00298{transform:matrix(0.243555,-0.002679,0.002750,0.249985,0,0);-ms-transform:matrix(0.243555,-0.002679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243555,-0.002679,0.002750,0.249985,0,0);}
.m132_c00298{transform:matrix(0.244072,-0.001953,0.002000,0.249992,0,0);-ms-transform:matrix(0.244072,-0.001953,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244072,-0.001953,0.002000,0.249992,0,0);}
.mf5_c00298{transform:matrix(0.244443,-0.002444,0.002500,0.249988,0,0);-ms-transform:matrix(0.244443,-0.002444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244443,-0.002444,0.002500,0.249988,0,0);}
.m2a_c00298{transform:matrix(0.244545,-0.002690,0.002750,0.249985,0,0);-ms-transform:matrix(0.244545,-0.002690,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244545,-0.002690,0.002750,0.249985,0,0);}
.m104_c00298{transform:matrix(0.244842,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244842,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244842,-0.001959,0.002000,0.249992,0,0);}
.m30_c00298{transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);-ms-transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);}
.me6_c00298{transform:matrix(0.246653,-0.002467,0.002500,0.249988,0,0);-ms-transform:matrix(0.246653,-0.002467,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246653,-0.002467,0.002500,0.249988,0,0);}
.m9a_c00298{transform:matrix(0.246768,-0.002468,0.002500,0.249988,0,0);-ms-transform:matrix(0.246768,-0.002468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246768,-0.002468,0.002500,0.249988,0,0);}
.me8_c00298{transform:matrix(0.247093,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247093,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247093,-0.002471,0.002500,0.249988,0,0);}
.m1_c00298{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);}
.mfa_c00298{transform:matrix(0.247828,-0.002478,0.002500,0.249988,0,0);-ms-transform:matrix(0.247828,-0.002478,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247828,-0.002478,0.002500,0.249988,0,0);}
.m24_c00298{transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);-ms-transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248305,-0.002731,0.002750,0.249985,0,0);}
.m7a_c00298{transform:matrix(0.248790,-0.002737,0.002750,0.249985,0,0);-ms-transform:matrix(0.248790,-0.002737,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248790,-0.002737,0.002750,0.249985,0,0);}
.m113_c00298{transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);-ms-transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);}
.m26_c00298{transform:matrix(0.249465,-0.002744,0.002750,0.249985,0,0);-ms-transform:matrix(0.249465,-0.002744,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249465,-0.002744,0.002750,0.249985,0,0);}
.mf3_c00298{transform:matrix(0.252867,-0.002529,0.002500,0.249988,0,0);-ms-transform:matrix(0.252867,-0.002529,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252867,-0.002529,0.002500,0.249988,0,0);}
.mae_c00298{transform:matrix(0.253422,-0.002534,0.002500,0.249988,0,0);-ms-transform:matrix(0.253422,-0.002534,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253422,-0.002534,0.002500,0.249988,0,0);}
.m7f_c00298{transform:matrix(0.253715,-0.002791,0.002750,0.249985,0,0);-ms-transform:matrix(0.253715,-0.002791,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253715,-0.002791,0.002750,0.249985,0,0);}
.m57_c00298{transform:matrix(0.257649,-0.002834,0.002750,0.249985,0,0);-ms-transform:matrix(0.257649,-0.002834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257649,-0.002834,0.002750,0.249985,0,0);}
.m11a_c00298{transform:matrix(0.258602,-0.002069,0.002000,0.249992,0,0);-ms-transform:matrix(0.258602,-0.002069,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258602,-0.002069,0.002000,0.249992,0,0);}
.m5f_c00298{transform:matrix(0.261414,-0.002876,0.002750,0.249985,0,0);-ms-transform:matrix(0.261414,-0.002876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261414,-0.002876,0.002750,0.249985,0,0);}
.m61_c00298{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);}
.m12a_c00298{transform:matrix(0.262487,-0.002100,0.002000,0.249992,0,0);-ms-transform:matrix(0.262487,-0.002100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262487,-0.002100,0.002000,0.249992,0,0);}
.m4a_c00298{transform:matrix(0.263039,-0.002893,0.002750,0.249985,0,0);-ms-transform:matrix(0.263039,-0.002893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263039,-0.002893,0.002750,0.249985,0,0);}
.m83_c00298{transform:matrix(0.267104,-0.002938,0.002750,0.249985,0,0);-ms-transform:matrix(0.267104,-0.002938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267104,-0.002938,0.002750,0.249985,0,0);}
.m13e_c00298{transform:matrix(0.269654,-0.002427,0.002250,0.249990,0,0);-ms-transform:matrix(0.269654,-0.002427,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269654,-0.002427,0.002250,0.249990,0,0);}
.mec_c00298{transform:matrix(0.269992,-0.002700,0.002500,0.249988,0,0);-ms-transform:matrix(0.269992,-0.002700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269992,-0.002700,0.002500,0.249988,0,0);}
.m150_c00298{transform:matrix(0.271514,-0.002444,0.002250,0.249990,0,0);-ms-transform:matrix(0.271514,-0.002444,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271514,-0.002444,0.002250,0.249990,0,0);}
.m17_c00298{transform:matrix(0.271909,-0.002991,0.002750,0.249985,0,0);-ms-transform:matrix(0.271909,-0.002991,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271909,-0.002991,0.002750,0.249985,0,0);}
.md_c00298{transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);}
.me4_c00298{transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);}
.m9_c00298{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);}
.m147_c00298{transform:matrix(0.274209,-0.002468,0.002250,0.249990,0,0);-ms-transform:matrix(0.274209,-0.002468,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274209,-0.002468,0.002250,0.249990,0,0);}
.mf0_c00298{transform:matrix(0.280491,-0.002805,0.002500,0.249988,0,0);-ms-transform:matrix(0.280491,-0.002805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.280491,-0.002805,0.002500,0.249988,0,0);}
.m101_c00298{transform:matrix(0.282641,-0.002261,0.002000,0.249992,0,0);-ms-transform:matrix(0.282641,-0.002261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.282641,-0.002261,0.002000,0.249992,0,0);}
.m8_c00298{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.m10d_c00298{transform:matrix(0.283061,-0.002264,0.002000,0.249992,0,0);-ms-transform:matrix(0.283061,-0.002264,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283061,-0.002264,0.002000,0.249992,0,0);}
.m1f_c00298{transform:matrix(0.284968,-0.003135,0.002750,0.249985,0,0);-ms-transform:matrix(0.284968,-0.003135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284968,-0.003135,0.002750,0.249985,0,0);}
.mc_c00298{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);}
.m122_c00298{transform:matrix(0.292416,-0.002339,0.002000,0.249992,0,0);-ms-transform:matrix(0.292416,-0.002339,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292416,-0.002339,0.002000,0.249992,0,0);}
.m97_c00298{transform:matrix(0.293315,-0.002933,0.002500,0.249988,0,0);-ms-transform:matrix(0.293315,-0.002933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293315,-0.002933,0.002500,0.249988,0,0);}
.m121_c00298{transform:matrix(0.293456,-0.002348,0.002000,0.249992,0,0);-ms-transform:matrix(0.293456,-0.002348,0.002000,0.249992,0,0);-webkit-transform:matrix(0.293456,-0.002348,0.002000,0.249992,0,0);}
.m9c_c00298{transform:matrix(0.297310,-0.002973,0.002500,0.249988,0,0);-ms-transform:matrix(0.297310,-0.002973,0.002500,0.249988,0,0);-webkit-transform:matrix(0.297310,-0.002973,0.002500,0.249988,0,0);}
.mef_c00298{transform:matrix(0.298525,-0.002985,0.002500,0.249988,0,0);-ms-transform:matrix(0.298525,-0.002985,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298525,-0.002985,0.002500,0.249988,0,0);}
.m91_c00298{transform:matrix(0.302937,-0.003332,0.002750,0.249985,0,0);-ms-transform:matrix(0.302937,-0.003332,0.002750,0.249985,0,0);-webkit-transform:matrix(0.302937,-0.003332,0.002750,0.249985,0,0);}
.mff_c00298{transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);-ms-transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);}
.mf8_c00298{transform:matrix(0.305685,-0.003057,0.002500,0.249988,0,0);-ms-transform:matrix(0.305685,-0.003057,0.002500,0.249988,0,0);-webkit-transform:matrix(0.305685,-0.003057,0.002500,0.249988,0,0);}
.m14f_c00298{transform:matrix(0.310532,-0.002795,0.002250,0.249990,0,0);-ms-transform:matrix(0.310532,-0.002795,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310532,-0.002795,0.002250,0.249990,0,0);}
.m1e_c00298{transform:matrix(0.314266,-0.003457,0.002750,0.249985,0,0);-ms-transform:matrix(0.314266,-0.003457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.314266,-0.003457,0.002750,0.249985,0,0);}
.m12b_c00298{transform:matrix(0.316650,-0.002533,0.002000,0.249992,0,0);-ms-transform:matrix(0.316650,-0.002533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.316650,-0.002533,0.002000,0.249992,0,0);}
.m35_c00298{transform:matrix(0.321371,-0.003535,0.002750,0.249985,0,0);-ms-transform:matrix(0.321371,-0.003535,0.002750,0.249985,0,0);-webkit-transform:matrix(0.321371,-0.003535,0.002750,0.249985,0,0);}
.mfc_c00298{transform:matrix(0.324939,-0.003249,0.002500,0.249988,0,0);-ms-transform:matrix(0.324939,-0.003249,0.002500,0.249988,0,0);-webkit-transform:matrix(0.324939,-0.003249,0.002500,0.249988,0,0);}
.m120_c00298{transform:matrix(0.330324,-0.002643,0.002000,0.249992,0,0);-ms-transform:matrix(0.330324,-0.002643,0.002000,0.249992,0,0);-webkit-transform:matrix(0.330324,-0.002643,0.002000,0.249992,0,0);}
.ma2_c00298{transform:matrix(0.336368,-0.003364,0.002500,0.249988,0,0);-ms-transform:matrix(0.336368,-0.003364,0.002500,0.249988,0,0);-webkit-transform:matrix(0.336368,-0.003364,0.002500,0.249988,0,0);}
.m63_c00298{transform:matrix(0.336890,-0.003706,0.002750,0.249985,0,0);-ms-transform:matrix(0.336890,-0.003706,0.002750,0.249985,0,0);-webkit-transform:matrix(0.336890,-0.003706,0.002750,0.249985,0,0);}
.m13c_c00298{transform:matrix(0.338911,-0.003050,0.002250,0.249990,0,0);-ms-transform:matrix(0.338911,-0.003050,0.002250,0.249990,0,0);-webkit-transform:matrix(0.338911,-0.003050,0.002250,0.249990,0,0);}
.m51_c00298{transform:matrix(0.339109,-0.003730,0.002750,0.249985,0,0);-ms-transform:matrix(0.339109,-0.003730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.339109,-0.003730,0.002750,0.249985,0,0);}
.ma_c00298{transform:matrix(0.345605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345605,0.000000,0.000000,0.250000,0,0);}
.m127_c00298{transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);-ms-transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);-webkit-transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);}
.m116_c00298{transform:matrix(0.347519,-0.002780,0.002000,0.249992,0,0);-ms-transform:matrix(0.347519,-0.002780,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347519,-0.002780,0.002000,0.249992,0,0);}
.mb_c00298{transform:matrix(0.347900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347900,0.000000,0.000000,0.250000,0,0);}
.m95_c00298{transform:matrix(0.348194,-0.003830,0.002750,0.249985,0,0);-ms-transform:matrix(0.348194,-0.003830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.348194,-0.003830,0.002750,0.249985,0,0);}
.m45_c00298{transform:matrix(0.349049,-0.003840,0.002750,0.249985,0,0);-ms-transform:matrix(0.349049,-0.003840,0.002750,0.249985,0,0);-webkit-transform:matrix(0.349049,-0.003840,0.002750,0.249985,0,0);}
.mc8_c00298{transform:matrix(0.349068,-0.003491,0.002500,0.249988,0,0);-ms-transform:matrix(0.349068,-0.003491,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349068,-0.003491,0.002500,0.249988,0,0);}
.m93_c00298{transform:matrix(0.349754,-0.003847,0.002750,0.249985,0,0);-ms-transform:matrix(0.349754,-0.003847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.349754,-0.003847,0.002750,0.249985,0,0);}
.m16_c00298{transform:matrix(0.353049,-0.003884,0.002750,0.249985,0,0);-ms-transform:matrix(0.353049,-0.003884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.353049,-0.003884,0.002750,0.249985,0,0);}
.mea_c00298{transform:matrix(0.357027,-0.003570,0.002500,0.249988,0,0);-ms-transform:matrix(0.357027,-0.003570,0.002500,0.249988,0,0);-webkit-transform:matrix(0.357027,-0.003570,0.002500,0.249988,0,0);}
.m98_c00298{transform:matrix(0.357552,-0.003576,0.002500,0.249988,0,0);-ms-transform:matrix(0.357552,-0.003576,0.002500,0.249988,0,0);-webkit-transform:matrix(0.357552,-0.003576,0.002500,0.249988,0,0);}
.m142_c00298{transform:matrix(0.357646,-0.003219,0.002250,0.249990,0,0);-ms-transform:matrix(0.357646,-0.003219,0.002250,0.249990,0,0);-webkit-transform:matrix(0.357646,-0.003219,0.002250,0.249990,0,0);}
.m12d_c00298{transform:matrix(0.358189,-0.002866,0.002000,0.249992,0,0);-ms-transform:matrix(0.358189,-0.002866,0.002000,0.249992,0,0);-webkit-transform:matrix(0.358189,-0.002866,0.002000,0.249992,0,0);}
.mf6_c00298{transform:matrix(0.377986,-0.003780,0.002500,0.249988,0,0);-ms-transform:matrix(0.377986,-0.003780,0.002500,0.249988,0,0);-webkit-transform:matrix(0.377986,-0.003780,0.002500,0.249988,0,0);}
.m0_c00298{transform:matrix(0.380275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380275,0.000000,0.000000,0.250000,0,0);}
.ma3_c00298{transform:matrix(0.382616,-0.003826,0.002500,0.249988,0,0);-ms-transform:matrix(0.382616,-0.003826,0.002500,0.249988,0,0);-webkit-transform:matrix(0.382616,-0.003826,0.002500,0.249988,0,0);}
.m148_c00298{transform:matrix(0.388369,-0.003495,0.002250,0.249990,0,0);-ms-transform:matrix(0.388369,-0.003495,0.002250,0.249990,0,0);-webkit-transform:matrix(0.388369,-0.003495,0.002250,0.249990,0,0);}
.m5_c00298{transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);}
.m13d_c00298{transform:matrix(0.406614,-0.003660,0.002250,0.249990,0,0);-ms-transform:matrix(0.406614,-0.003660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.406614,-0.003660,0.002250,0.249990,0,0);}
.m99_c00298{transform:matrix(0.422249,-0.004222,0.002500,0.249988,0,0);-ms-transform:matrix(0.422249,-0.004222,0.002500,0.249988,0,0);-webkit-transform:matrix(0.422249,-0.004222,0.002500,0.249988,0,0);}
.mee_c00298{transform:matrix(0.430163,-0.004302,0.002500,0.249988,0,0);-ms-transform:matrix(0.430163,-0.004302,0.002500,0.249988,0,0);-webkit-transform:matrix(0.430163,-0.004302,0.002500,0.249988,0,0);}
.m12c_c00298{transform:matrix(0.527503,-0.004220,0.002000,0.249992,0,0);-ms-transform:matrix(0.527503,-0.004220,0.002000,0.249992,0,0);-webkit-transform:matrix(0.527503,-0.004220,0.002000,0.249992,0,0);}
.mf4_c00298{transform:matrix(0.583226,-0.005832,0.002500,0.249988,0,0);-ms-transform:matrix(0.583226,-0.005832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.583226,-0.005832,0.002500,0.249988,0,0);}
.m7_c00298{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);}
.m81_c00298{transform:matrix(0.593579,-0.006529,0.002750,0.249985,0,0);-ms-transform:matrix(0.593579,-0.006529,0.002750,0.249985,0,0);-webkit-transform:matrix(0.593579,-0.006529,0.002750,0.249985,0,0);}
.maf_c00298{transform:matrix(0.595460,-0.005955,0.002500,0.249988,0,0);-ms-transform:matrix(0.595460,-0.005955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.595460,-0.005955,0.002500,0.249988,0,0);}
.m6_c00298{transform:matrix(0.609050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609050,0.000000,0.000000,0.250000,0,0);}
.m153_c00298{transform:matrix(0.642960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642960,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.754120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754120,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.780870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780870,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.847355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847355,0.000000,0.000000,0.250000,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;}
.fsf_c00298{font-size:48.301546px;}
.fse_c00298{font-size:49.351579px;}
.fs12_c00298{font-size:50.402041px;}
.fs11_c00298{font-size:52.502126px;}
.fs10_c00298{font-size:54.601747px;}
.fs0_c00298{font-size:57.750000px;}
.fs3_c00298{font-size:61.953748px;}
.fsd_c00298{font-size:67.203360px;}
.fs8_c00298{font-size:67.204065px;}
.fsb_c00298{font-size:69.303465px;}
.fsc_c00298{font-size:70.353517px;}
.fs7_c00298{font-size:70.354256px;}
.fs5_c00298{font-size:71.404320px;}
.fs6_c00298{font-size:72.454383px;}
.fs2_c00298{font-size:73.504447px;}
.fs4_c00298{font-size:75.604574px;}
.fs9_c00298{font-size:76.654637px;}
.fsa_c00298{font-size:77.703885px;}
.fs13_c00298{font-size:88.200000px;}
.fs1_c00298{font-size:114.450000px;}
.y0_c00298{bottom:0.000000px;}
.y14b_c00298{bottom:142.254000px;}
.y143_c00298{bottom:172.436273px;}
.y144_c00298{bottom:172.436905px;}
.y145_c00298{bottom:172.437228px;}
.y146_c00298{bottom:172.437768px;}
.y148_c00298{bottom:172.438041px;}
.y147_c00298{bottom:172.438415px;}
.y149_c00298{bottom:172.438761px;}
.y14a_c00298{bottom:172.439121px;}
.y133_c00298{bottom:189.001500px;}
.y134_c00298{bottom:189.186409px;}
.y135_c00298{bottom:189.545766px;}
.y136_c00298{bottom:189.769691px;}
.y137_c00298{bottom:190.126928px;}
.y138_c00298{bottom:190.401139px;}
.y139_c00298{bottom:190.787402px;}
.y13a_c00298{bottom:191.198315px;}
.y13b_c00298{bottom:191.470353px;}
.y13c_c00298{bottom:191.715769px;}
.y13d_c00298{bottom:191.840091px;}
.y13e_c00298{bottom:192.070860px;}
.y13f_c00298{bottom:192.525446px;}
.y140_c00298{bottom:192.696045px;}
.y141_c00298{bottom:192.901718px;}
.y142_c00298{bottom:193.113141px;}
.y127_c00298{bottom:206.819208px;}
.y128_c00298{bottom:207.116988px;}
.y129_c00298{bottom:207.197232px;}
.y12a_c00298{bottom:207.480144px;}
.y12b_c00298{bottom:207.726408px;}
.y12c_c00298{bottom:207.856044px;}
.y12d_c00298{bottom:208.154100px;}
.y12e_c00298{bottom:208.452156px;}
.y12f_c00298{bottom:208.834740px;}
.y130_c00298{bottom:209.203644px;}
.y131_c00298{bottom:209.417580px;}
.y132_c00298{bottom:209.894424px;}
.y116_c00298{bottom:224.099160px;}
.y117_c00298{bottom:224.205708px;}
.y118_c00298{bottom:224.564016px;}
.y119_c00298{bottom:224.568192px;}
.y11a_c00298{bottom:224.654724px;}
.y11b_c00298{bottom:224.913936px;}
.y11c_c00298{bottom:225.356640px;}
.y11d_c00298{bottom:225.650376px;}
.y11e_c00298{bottom:225.855936px;}
.y11f_c00298{bottom:226.084956px;}
.y120_c00298{bottom:226.175280px;}
.y121_c00298{bottom:226.525416px;}
.y122_c00298{bottom:226.968168px;}
.y123_c00298{bottom:227.287980px;}
.y124_c00298{bottom:227.391636px;}
.y125_c00298{bottom:227.853792px;}
.y126_c00298{bottom:227.935692px;}
.y104_c00298{bottom:242.190000px;}
.y105_c00298{bottom:242.259156px;}
.y106_c00298{bottom:242.892012px;}
.y107_c00298{bottom:243.224688px;}
.y108_c00298{bottom:243.734520px;}
.y109_c00298{bottom:244.043340px;}
.y10a_c00298{bottom:244.214304px;}
.y10b_c00298{bottom:244.300440px;}
.y10c_c00298{bottom:244.468896px;}
.y10d_c00298{bottom:244.622256px;}
.y10e_c00298{bottom:244.985232px;}
.y10f_c00298{bottom:245.049948px;}
.y110_c00298{bottom:245.181708px;}
.y111_c00298{bottom:245.412840px;}
.y112_c00298{bottom:245.514360px;}
.y113_c00298{bottom:245.866428px;}
.y114_c00298{bottom:245.987448px;}
.y115_c00298{bottom:246.175032px;}
.yf7_c00298{bottom:260.280000px;}
.yf8_c00298{bottom:260.489544px;}
.yf9_c00298{bottom:261.068388px;}
.yfa_c00298{bottom:261.210912px;}
.yfb_c00298{bottom:261.470256px;}
.yfc_c00298{bottom:261.820188px;}
.yfd_c00298{bottom:262.236948px;}
.yfe_c00298{bottom:262.427196px;}
.yff_c00298{bottom:262.822416px;}
.y100_c00298{bottom:263.107488px;}
.y101_c00298{bottom:263.196048px;}
.y102_c00298{bottom:263.543916px;}
.y103_c00298{bottom:263.982228px;}
.ye9_c00298{bottom:424.431375px;}
.yea_c00298{bottom:424.790265px;}
.yeb_c00298{bottom:425.097975px;}
.yec_c00298{bottom:425.303145px;}
.yed_c00298{bottom:425.530470px;}
.yee_c00298{bottom:425.981370px;}
.yef_c00298{bottom:426.275325px;}
.yf0_c00298{bottom:426.467070px;}
.yf1_c00298{bottom:426.874665px;}
.yf2_c00298{bottom:426.879390px;}
.yf3_c00298{bottom:426.983010px;}
.yf4_c00298{bottom:427.406505px;}
.yf5_c00298{bottom:427.838265px;}
.yf6_c00298{bottom:428.396730px;}
.yd9_c00298{bottom:447.638685px;}
.yda_c00298{bottom:447.867615px;}
.ydb_c00298{bottom:448.049160px;}
.ydc_c00298{bottom:448.151265px;}
.yde_c00298{bottom:448.499115px;}
.ydd_c00298{bottom:448.499460px;}
.ydf_c00298{bottom:448.553940px;}
.ye0_c00298{bottom:448.741635px;}
.ye1_c00298{bottom:449.208945px;}
.ye2_c00298{bottom:449.328135px;}
.ye3_c00298{bottom:449.821290px;}
.ye4_c00298{bottom:449.900340px;}
.ye5_c00298{bottom:450.301590px;}
.ye6_c00298{bottom:450.486480px;}
.ye7_c00298{bottom:450.745665px;}
.ye8_c00298{bottom:450.930120px;}
.yce_c00298{bottom:470.026470px;}
.ycf_c00298{bottom:470.534460px;}
.yd0_c00298{bottom:470.846805px;}
.yd1_c00298{bottom:471.045750px;}
.yd2_c00298{bottom:471.746055px;}
.yd3_c00298{bottom:472.420005px;}
.yd4_c00298{bottom:472.788195px;}
.yd5_c00298{bottom:473.636970px;}
.yd6_c00298{bottom:473.888445px;}
.yd7_c00298{bottom:474.173760px;}
.yd8_c00298{bottom:475.055085px;}
.yc1_c00298{bottom:492.989760px;}
.yc2_c00298{bottom:493.277070px;}
.yc3_c00298{bottom:493.507860px;}
.yc4_c00298{bottom:493.802010px;}
.yc5_c00298{bottom:494.293065px;}
.yc6_c00298{bottom:494.610720px;}
.yc7_c00298{bottom:494.832435px;}
.yc8_c00298{bottom:495.629565px;}
.yc9_c00298{bottom:495.792090px;}
.yca_c00298{bottom:495.996840px;}
.ycb_c00298{bottom:496.317195px;}
.ycc_c00298{bottom:496.699095px;}
.ycd_c00298{bottom:497.199750px;}
.yb3_c00298{bottom:515.698995px;}
.yb4_c00298{bottom:515.956950px;}
.yb5_c00298{bottom:516.232215px;}
.yb6_c00298{bottom:516.528165px;}
.yb7_c00298{bottom:516.795585px;}
.yb8_c00298{bottom:516.914040px;}
.yb9_c00298{bottom:517.261560px;}
.yba_c00298{bottom:517.851270px;}
.ybb_c00298{bottom:518.331870px;}
.ybc_c00298{bottom:518.676615px;}
.ybd_c00298{bottom:518.946375px;}
.ybe_c00298{bottom:519.444570px;}
.ybf_c00298{bottom:519.539130px;}
.yc0_c00298{bottom:519.694065px;}
.ya6_c00298{bottom:538.354815px;}
.ya7_c00298{bottom:538.719390px;}
.ya8_c00298{bottom:539.199150px;}
.ya9_c00298{bottom:539.483610px;}
.yaa_c00298{bottom:539.910765px;}
.yab_c00298{bottom:540.065655px;}
.yac_c00298{bottom:540.426975px;}
.yad_c00298{bottom:540.729390px;}
.yae_c00298{bottom:541.086735px;}
.yaf_c00298{bottom:541.436985px;}
.yb0_c00298{bottom:541.699605px;}
.yb1_c00298{bottom:541.987155px;}
.yb2_c00298{bottom:542.419785px;}
.y9a_c00298{bottom:561.331110px;}
.y9b_c00298{bottom:561.850905px;}
.y9c_c00298{bottom:562.069980px;}
.y9d_c00298{bottom:562.258050px;}
.y9e_c00298{bottom:562.554480px;}
.y9f_c00298{bottom:563.230080px;}
.ya0_c00298{bottom:563.467485px;}
.ya1_c00298{bottom:564.059085px;}
.ya2_c00298{bottom:564.484395px;}
.ya3_c00298{bottom:564.764760px;}
.ya4_c00298{bottom:564.950730px;}
.ya5_c00298{bottom:565.224720px;}
.y8c_c00298{bottom:583.203000px;}
.y8d_c00298{bottom:583.869765px;}
.y8e_c00298{bottom:584.023815px;}
.y8f_c00298{bottom:584.647755px;}
.y90_c00298{bottom:585.581775px;}
.y91_c00298{bottom:585.821685px;}
.y92_c00298{bottom:586.363920px;}
.y93_c00298{bottom:586.630755px;}
.y94_c00298{bottom:586.844040px;}
.y95_c00298{bottom:586.952055px;}
.y96_c00298{bottom:587.421885px;}
.y97_c00298{bottom:587.678340px;}
.y98_c00298{bottom:587.806320px;}
.y99_c00298{bottom:588.422400px;}
.y80_c00298{bottom:628.819125px;}
.y81_c00298{bottom:628.994239px;}
.y82_c00298{bottom:629.136700px;}
.y83_c00298{bottom:629.380257px;}
.y84_c00298{bottom:630.671679px;}
.y85_c00298{bottom:630.820558px;}
.y86_c00298{bottom:631.144437px;}
.y87_c00298{bottom:631.637655px;}
.y88_c00298{bottom:631.673097px;}
.y89_c00298{bottom:632.222580px;}
.y8a_c00298{bottom:632.227926px;}
.y8b_c00298{bottom:632.248782px;}
.y71_c00298{bottom:650.959933px;}
.y72_c00298{bottom:651.294381px;}
.y73_c00298{bottom:651.461827px;}
.y74_c00298{bottom:651.714795px;}
.y75_c00298{bottom:651.779985px;}
.y76_c00298{bottom:652.128277px;}
.y77_c00298{bottom:652.329804px;}
.y78_c00298{bottom:653.066181px;}
.y79_c00298{bottom:653.346676px;}
.y7a_c00298{bottom:653.525659px;}
.y7b_c00298{bottom:653.814952px;}
.y7c_c00298{bottom:653.989594px;}
.y7d_c00298{bottom:654.487659px;}
.y7e_c00298{bottom:654.727408px;}
.y7f_c00298{bottom:654.973313px;}
.y64_c00298{bottom:673.639569px;}
.y65_c00298{bottom:673.942572px;}
.y66_c00298{bottom:674.277093px;}
.y67_c00298{bottom:674.662819px;}
.y68_c00298{bottom:674.962984px;}
.y69_c00298{bottom:675.370905px;}
.y6a_c00298{bottom:675.633660px;}
.y6b_c00298{bottom:675.752340px;}
.y6c_c00298{bottom:676.016449px;}
.y6d_c00298{bottom:677.283248px;}
.y6e_c00298{bottom:677.493511px;}
.y6f_c00298{bottom:677.737339px;}
.y70_c00298{bottom:678.306976px;}
.y55_c00298{bottom:696.052297px;}
.y56_c00298{bottom:696.334695px;}
.y57_c00298{bottom:697.180963px;}
.y58_c00298{bottom:697.208997px;}
.y59_c00298{bottom:697.311643px;}
.y5a_c00298{bottom:697.546125px;}
.y5b_c00298{bottom:698.023585px;}
.y5c_c00298{bottom:698.269914px;}
.y5d_c00298{bottom:698.532462px;}
.y5e_c00298{bottom:699.283492px;}
.y5f_c00298{bottom:699.660534px;}
.y60_c00298{bottom:700.290718px;}
.y61_c00298{bottom:700.452913px;}
.y62_c00298{bottom:700.622550px;}
.y63_c00298{bottom:701.049982px;}
.y4a_c00298{bottom:718.464327px;}
.y4b_c00298{bottom:718.807267px;}
.y4c_c00298{bottom:719.024241px;}
.y4d_c00298{bottom:719.620353px;}
.y4e_c00298{bottom:719.875389px;}
.y4f_c00298{bottom:720.206632px;}
.y50_c00298{bottom:721.359589px;}
.y51_c00298{bottom:721.683424px;}
.y52_c00298{bottom:722.275758px;}
.y53_c00298{bottom:722.853342px;}
.y54_c00298{bottom:723.877477px;}
.y3c_c00298{bottom:740.875846px;}
.y3d_c00298{bottom:741.998473px;}
.y3e_c00298{bottom:742.533172px;}
.y3f_c00298{bottom:742.922292px;}
.y40_c00298{bottom:743.257985px;}
.y41_c00298{bottom:743.616810px;}
.y42_c00298{bottom:743.872213px;}
.y43_c00298{bottom:744.305800px;}
.y44_c00298{bottom:744.591910px;}
.y45_c00298{bottom:745.301724px;}
.y46_c00298{bottom:745.787269px;}
.y47_c00298{bottom:745.919352px;}
.y49_c00298{bottom:746.129347px;}
.y48_c00298{bottom:746.141854px;}
.y2d_c00298{bottom:764.096383px;}
.y2e_c00298{bottom:764.595442px;}
.y2f_c00298{bottom:764.859426px;}
.y30_c00298{bottom:765.201405px;}
.y31_c00298{bottom:765.608361px;}
.y32_c00298{bottom:765.985600px;}
.y33_c00298{bottom:766.404370px;}
.y34_c00298{bottom:766.576135px;}
.y35_c00298{bottom:767.019820px;}
.y36_c00298{bottom:768.121294px;}
.y37_c00298{bottom:768.123571px;}
.y38_c00298{bottom:768.245589px;}
.y39_c00298{bottom:768.682344px;}
.y3a_c00298{bottom:768.884386px;}
.y3b_c00298{bottom:769.267632px;}
.y20_c00298{bottom:786.778035px;}
.y21_c00298{bottom:786.958314px;}
.y22_c00298{bottom:787.199907px;}
.y23_c00298{bottom:787.923696px;}
.y24_c00298{bottom:788.262870px;}
.y25_c00298{bottom:788.473212px;}
.y26_c00298{bottom:788.744059px;}
.y27_c00298{bottom:789.424338px;}
.y28_c00298{bottom:789.641758px;}
.y29_c00298{bottom:790.280144px;}
.y2a_c00298{bottom:790.719291px;}
.y2b_c00298{bottom:791.610439px;}
.y2c_c00298{bottom:791.776496px;}
.y12_c00298{bottom:809.460421px;}
.y13_c00298{bottom:809.783920px;}
.y14_c00298{bottom:809.942485px;}
.y15_c00298{bottom:810.107683px;}
.y16_c00298{bottom:810.755208px;}
.y17_c00298{bottom:811.101231px;}
.y18_c00298{bottom:811.395456px;}
.y19_c00298{bottom:811.984086px;}
.y1a_c00298{bottom:812.100241px;}
.y1b_c00298{bottom:812.353674px;}
.y1c_c00298{bottom:812.718838px;}
.y1d_c00298{bottom:813.347419px;}
.y1e_c00298{bottom:813.544218px;}
.y1f_c00298{bottom:813.822090px;}
.y3_c00298{bottom:831.601500px;}
.y4_c00298{bottom:831.810109px;}
.y5_c00298{bottom:832.177845px;}
.y6_c00298{bottom:832.434255px;}
.y7_c00298{bottom:832.817204px;}
.y8_c00298{bottom:833.221041px;}
.y9_c00298{bottom:833.468096px;}
.ya_c00298{bottom:834.277915px;}
.yb_c00298{bottom:834.359277px;}
.yc_c00298{bottom:834.688567px;}
.yd_c00298{bottom:834.990732px;}
.ye_c00298{bottom:835.412967px;}
.yf_c00298{bottom:835.638737px;}
.y10_c00298{bottom:836.252900px;}
.y11_c00298{bottom:836.553381px;}
.y2_c00298{bottom:877.990500px;}
.y1_c00298{bottom:939.741000px;}
.h11_c00298{height:48.301546px;}
.h10_c00298{height:49.351579px;}
.h14_c00298{height:50.402041px;}
.h13_c00298{height:52.502126px;}
.h12_c00298{height:54.601747px;}
.h2_c00298{height:57.750000px;}
.h5_c00298{height:61.953748px;}
.hf_c00298{height:67.203360px;}
.ha_c00298{height:67.204065px;}
.hd_c00298{height:69.303465px;}
.he_c00298{height:70.353517px;}
.h9_c00298{height:70.354256px;}
.h7_c00298{height:71.404320px;}
.h8_c00298{height:72.454383px;}
.h4_c00298{height:73.504447px;}
.h6_c00298{height:75.604574px;}
.hb_c00298{height:76.654637px;}
.hc_c00298{height:77.703885px;}
.h15_c00298{height:88.200000px;}
.h3_c00298{height:114.450000px;}
.h1_c00298{height:1005.000000px;}
.h0_c00298{height:1005.150000px;}
.w0_c00298{width:702.540000px;}
.w1_c00298{width:702.750000px;}
.x0_c00298{left:0.000000px;}
.xf_c00298{left:76.231500px;}
.x75_c00298{left:77.716500px;}
.x1d_c00298{left:80.332019px;}
.x4d_c00298{left:81.733524px;}
.x5d_c00298{left:82.748660px;}
.x64_c00298{left:84.667838px;}
.x7f_c00298{left:85.696995px;}
.x8a_c00298{left:87.291930px;}
.x1_c00298{left:89.370000px;}
.x10_c00298{left:95.196000px;}
.x2a_c00298{left:97.299064px;}
.x53_c00298{left:101.467308px;}
.x4e_c00298{left:110.318711px;}
.x1e_c00298{left:112.741382px;}
.x8b_c00298{left:115.937715px;}
.xa2_c00298{left:117.330930px;}
.x2b_c00298{left:119.262064px;}
.x65_c00298{left:121.891163px;}
.x86_c00298{left:124.554975px;}
.x36_c00298{left:126.242028px;}
.xba_c00298{left:127.489692px;}
.x11_c00298{left:128.626500px;}
.x96_c00298{left:131.594460px;}
.xbb_c00298{left:137.520192px;}
.x66_c00298{left:140.523075px;}
.x90_c00298{left:142.405830px;}
.x1f_c00298{left:145.174745px;}
.x5e_c00298{left:146.433353px;}
.xa3_c00298{left:148.101930px;}
.xb_c00298{left:149.850000px;}
.x12_c00298{left:151.936500px;}
.xbf_c00298{left:157.231500px;}
.x76_c00298{left:159.798000px;}
.x2_c00298{left:165.240000px;}
.xad_c00298{left:166.396500px;}
.xc5_c00298{left:167.401791px;}
.x67_c00298{left:168.566186px;}
.xbc_c00298{left:172.884192px;}
.x68_c00298{left:175.856351px;}
.x41_c00298{left:177.817805px;}
.x8c_c00298{left:179.359845px;}
.x37_c00298{left:181.329528px;}
.x2c_c00298{left:185.061064px;}
.x13_c00298{left:186.750000px;}
.x54_c00298{left:190.280808px;}
.xa4_c00298{left:191.351430px;}
.x4f_c00298{left:199.374237px;}
.x80_c00298{left:201.493305px;}
.xa6_c00298{left:203.379000px;}
.x6e_c00298{left:204.852398px;}
.x3_c00298{left:207.360000px;}
.x20_c00298{left:209.904954px;}
.x55_c00298{left:211.597308px;}
.x69_c00298{left:214.474692px;}
.x2d_c00298{left:215.895064px;}
.x38_c00298{left:218.325528px;}
.x6f_c00298{left:220.771898px;}
.x77_c00298{left:222.192000px;}
.x14_c00298{left:223.462500px;}
.x42_c00298{left:226.426805px;}
.x91_c00298{left:229.627200px;}
.x70_c00298{left:233.722898px;}
.x2e_c00298{left:235.017064px;}
.x6a_c00298{left:236.886687px;}
.x81_c00298{left:238.487040px;}
.xb6_c00298{left:240.370008px;}
.x97_c00298{left:241.802865px;}
.x21_c00298{left:244.498334px;}
.x15_c00298{left:245.922000px;}
.x39_c00298{left:252.620028px;}
.x56_c00298{left:255.002808px;}
.x87_c00298{left:256.893795px;}
.x2f_c00298{left:259.639564px;}
.x4_c00298{left:261.900000px;}
.x92_c00298{left:264.993060px;}
.xae_c00298{left:271.710000px;}
.x22_c00298{left:273.973664px;}
.xb7_c00298{left:277.087008px;}
.xc_c00298{left:278.100000px;}
.xa7_c00298{left:279.538500px;}
.x5f_c00298{left:282.031838px;}
.xa5_c00298{left:285.011430px;}
.x93_c00298{left:289.564800px;}
.x3a_c00298{left:290.690028px;}
.x43_c00298{left:292.318804px;}
.x60_c00298{left:293.911970px;}
.xc0_c00298{left:295.191000px;}
.x57_c00298{left:301.264308px;}
.x98_c00298{left:303.047250px;}
.x3b_c00298{left:306.305028px;}
.xaf_c00298{left:310.312500px;}
.x9d_c00298{left:311.674200px;}
.x5_c00298{left:315.090000px;}
.x16_c00298{left:319.542000px;}
.x30_c00298{left:321.483064px;}
.x50_c00298{left:323.118384px;}
.x44_c00298{left:324.939304px;}
.xd_c00298{left:326.430000px;}
.x9e_c00298{left:328.693710px;}
.xa8_c00298{left:331.633500px;}
.x23_c00298{left:332.804307px;}
.x99_c00298{left:336.565920px;}
.x78_c00298{left:339.585000px;}
.x31_c00298{left:341.248564px;}
.xb0_c00298{left:342.450000px;}
.x24_c00298{left:344.454939px;}
.x3c_c00298{left:346.640028px;}
.x45_c00298{left:348.157804px;}
.x51_c00298{left:350.103087px;}
.x82_c00298{left:352.739835px;}
.xa9_c00298{left:355.414500px;}
.x17_c00298{left:356.874000px;}
.xb1_c00298{left:363.507000px;}
.x25_c00298{left:369.812720px;}
.xc1_c00298{left:371.074500px;}
.x71_c00298{left:373.266398px;}
.x6_c00298{left:378.540000px;}
.x8d_c00298{left:379.982370px;}
.xb2_c00298{left:382.677000px;}
.x18_c00298{left:384.343500px;}
.xb8_c00298{left:386.467008px;}
.x46_c00298{left:387.574804px;}
.x79_c00298{left:393.808500px;}
.x94_c00298{left:396.181365px;}
.x32_c00298{left:399.283564px;}
.x6b_c00298{left:401.903817px;}
.x58_c00298{left:403.816308px;}
.xaa_c00298{left:404.817000px;}
.x26_c00298{left:406.282616px;}
.x9f_c00298{left:410.516670px;}
.xc2_c00298{left:412.156500px;}
.x47_c00298{left:413.584805px;}
.xbd_c00298{left:415.063692px;}
.x72_c00298{left:416.244398px;}
.x7_c00298{left:419.040000px;}
.x6c_c00298{left:421.326246px;}
.x19_c00298{left:422.728500px;}
.x83_c00298{left:426.751320px;}
.xb3_c00298{left:428.049000px;}
.x9a_c00298{left:436.689930px;}
.xc3_c00298{left:437.797500px;}
.x33_c00298{left:439.206064px;}
.xab_c00298{left:440.451000px;}
.x7a_c00298{left:441.820500px;}
.x1a_c00298{left:443.253000px;}
.x3d_c00298{left:446.774028px;}
.x8e_c00298{left:448.333560px;}
.xac_c00298{left:451.521000px;}
.x7b_c00298{left:452.622000px;}
.x95_c00298{left:454.542450px;}
.x88_c00298{left:455.579775px;}
.x3e_c00298{left:458.073528px;}
.x59_c00298{left:461.105808px;}
.x9b_c00298{left:462.671175px;}
.x73_c00298{left:464.304398px;}
.x61_c00298{left:468.020384px;}
.x27_c00298{left:469.154309px;}
.xbe_c00298{left:474.669192px;}
.x5a_c00298{left:475.850808px;}
.x48_c00298{left:478.113305px;}
.x84_c00298{left:479.933385px;}
.xb4_c00298{left:481.500000px;}
.x89_c00298{left:487.485090px;}
.x28_c00298{left:488.818023px;}
.x5b_c00298{left:491.272308px;}
.x62_c00298{left:492.368648px;}
.xa0_c00298{left:494.183175px;}
.x3f_c00298{left:497.778528px;}
.x1b_c00298{left:499.086000px;}
.x8_c00298{left:502.200000px;}
.x6d_c00298{left:503.402061px;}
.xc4_c00298{left:507.262500px;}
.x74_c00298{left:514.257398px;}
.x29_c00298{left:516.670336px;}
.x34_c00298{left:520.219564px;}
.x49_c00298{left:522.253805px;}
.xe_c00298{left:523.260000px;}
.x7c_c00298{left:525.250500px;}
.x1c_c00298{left:526.402500px;}
.x5c_c00298{left:530.129808px;}
.x8f_c00298{left:531.503400px;}
.x52_c00298{left:532.924074px;}
.x4a_c00298{left:534.261305px;}
.x35_c00298{left:535.315564px;}
.x7d_c00298{left:538.048500px;}
.x9c_c00298{left:542.852880px;}
.x63_c00298{left:549.336275px;}
.x40_c00298{left:550.986528px;}
.x4c_c00298{left:553.351805px;}
.x4b_c00298{left:554.488805px;}
.xa1_c00298{left:557.599080px;}
.xb9_c00298{left:562.751508px;}
.x9_c00298{left:570.510000px;}
.x85_c00298{left:572.567745px;}
.xb5_c00298{left:576.774000px;}
.x7e_c00298{left:599.656500px;}
.xa_c00298{left:606.690000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.fsf_c00298{font-size:42.934707pt;}
.fse_c00298{font-size:43.868070pt;}
.fs12_c00298{font-size:44.801814pt;}
.fs11_c00298{font-size:46.668557pt;}
.fs10_c00298{font-size:48.534886pt;}
.fs0_c00298{font-size:51.333333pt;}
.fs3_c00298{font-size:55.069998pt;}
.fsd_c00298{font-size:59.736320pt;}
.fs8_c00298{font-size:59.736947pt;}
.fsb_c00298{font-size:61.603080pt;}
.fsc_c00298{font-size:62.536460pt;}
.fs7_c00298{font-size:62.537116pt;}
.fs5_c00298{font-size:63.470506pt;}
.fs6_c00298{font-size:64.403896pt;}
.fs2_c00298{font-size:65.337286pt;}
.fs4_c00298{font-size:67.204065pt;}
.fs9_c00298{font-size:68.137455pt;}
.fsa_c00298{font-size:69.070120pt;}
.fs13_c00298{font-size:78.400000pt;}
.fs1_c00298{font-size:101.733333pt;}
.y0_c00298{bottom:0.000000pt;}
.y14b_c00298{bottom:126.448000pt;}
.y143_c00298{bottom:153.276687pt;}
.y144_c00298{bottom:153.277249pt;}
.y145_c00298{bottom:153.277536pt;}
.y146_c00298{bottom:153.278016pt;}
.y148_c00298{bottom:153.278259pt;}
.y147_c00298{bottom:153.278591pt;}
.y149_c00298{bottom:153.278899pt;}
.y14a_c00298{bottom:153.279219pt;}
.y133_c00298{bottom:168.001333pt;}
.y134_c00298{bottom:168.165697pt;}
.y135_c00298{bottom:168.485125pt;}
.y136_c00298{bottom:168.684169pt;}
.y137_c00298{bottom:169.001713pt;}
.y138_c00298{bottom:169.245457pt;}
.y139_c00298{bottom:169.588801pt;}
.y13a_c00298{bottom:169.954057pt;}
.y13b_c00298{bottom:170.195869pt;}
.y13c_c00298{bottom:170.414017pt;}
.y13d_c00298{bottom:170.524525pt;}
.y13e_c00298{bottom:170.729653pt;}
.y13f_c00298{bottom:171.133729pt;}
.y140_c00298{bottom:171.285373pt;}
.y141_c00298{bottom:171.468193pt;}
.y142_c00298{bottom:171.656125pt;}
.y127_c00298{bottom:183.839296pt;}
.y128_c00298{bottom:184.103989pt;}
.y129_c00298{bottom:184.175317pt;}
.y12a_c00298{bottom:184.426795pt;}
.y12b_c00298{bottom:184.645696pt;}
.y12c_c00298{bottom:184.760928pt;}
.y12d_c00298{bottom:185.025867pt;}
.y12e_c00298{bottom:185.290805pt;}
.y12f_c00298{bottom:185.630880pt;}
.y130_c00298{bottom:185.958795pt;}
.y131_c00298{bottom:186.148960pt;}
.y132_c00298{bottom:186.572821pt;}
.y116_c00298{bottom:199.199253pt;}
.y117_c00298{bottom:199.293963pt;}
.y118_c00298{bottom:199.612459pt;}
.y119_c00298{bottom:199.616171pt;}
.y11a_c00298{bottom:199.693088pt;}
.y11b_c00298{bottom:199.923499pt;}
.y11c_c00298{bottom:200.317013pt;}
.y11d_c00298{bottom:200.578112pt;}
.y11e_c00298{bottom:200.760832pt;}
.y11f_c00298{bottom:200.964405pt;}
.y120_c00298{bottom:201.044693pt;}
.y121_c00298{bottom:201.355925pt;}
.y122_c00298{bottom:201.749483pt;}
.y123_c00298{bottom:202.033760pt;}
.y124_c00298{bottom:202.125899pt;}
.y125_c00298{bottom:202.536704pt;}
.y126_c00298{bottom:202.609504pt;}
.y104_c00298{bottom:215.280000pt;}
.y105_c00298{bottom:215.341472pt;}
.y106_c00298{bottom:215.904011pt;}
.y107_c00298{bottom:216.199723pt;}
.y108_c00298{bottom:216.652907pt;}
.y109_c00298{bottom:216.927413pt;}
.y10a_c00298{bottom:217.079381pt;}
.y10b_c00298{bottom:217.155947pt;}
.y10c_c00298{bottom:217.305685pt;}
.y10d_c00298{bottom:217.442005pt;}
.y10e_c00298{bottom:217.764651pt;}
.y10f_c00298{bottom:217.822176pt;}
.y110_c00298{bottom:217.939296pt;}
.y111_c00298{bottom:218.144747pt;}
.y112_c00298{bottom:218.234987pt;}
.y113_c00298{bottom:218.547936pt;}
.y114_c00298{bottom:218.655509pt;}
.y115_c00298{bottom:218.822251pt;}
.yf7_c00298{bottom:231.360000pt;}
.yf8_c00298{bottom:231.546261pt;}
.yf9_c00298{bottom:232.060789pt;}
.yfa_c00298{bottom:232.187477pt;}
.yfb_c00298{bottom:232.418005pt;}
.yfc_c00298{bottom:232.729056pt;}
.yfd_c00298{bottom:233.099509pt;}
.yfe_c00298{bottom:233.268619pt;}
.yff_c00298{bottom:233.619925pt;}
.y100_c00298{bottom:233.873323pt;}
.y101_c00298{bottom:233.952043pt;}
.y102_c00298{bottom:234.261259pt;}
.y103_c00298{bottom:234.650869pt;}
.ye9_c00298{bottom:377.272333pt;}
.yea_c00298{bottom:377.591347pt;}
.yeb_c00298{bottom:377.864867pt;}
.yec_c00298{bottom:378.047240pt;}
.yed_c00298{bottom:378.249307pt;}
.yee_c00298{bottom:378.650107pt;}
.yef_c00298{bottom:378.911400pt;}
.yf0_c00298{bottom:379.081840pt;}
.yf1_c00298{bottom:379.444147pt;}
.yf2_c00298{bottom:379.448347pt;}
.yf3_c00298{bottom:379.540453pt;}
.yf4_c00298{bottom:379.916893pt;}
.yf5_c00298{bottom:380.300680pt;}
.yf6_c00298{bottom:380.797093pt;}
.yd9_c00298{bottom:397.901053pt;}
.yda_c00298{bottom:398.104547pt;}
.ydb_c00298{bottom:398.265920pt;}
.ydc_c00298{bottom:398.356680pt;}
.yde_c00298{bottom:398.665880pt;}
.ydd_c00298{bottom:398.666187pt;}
.ydf_c00298{bottom:398.714613pt;}
.ye0_c00298{bottom:398.881453pt;}
.ye1_c00298{bottom:399.296840pt;}
.ye2_c00298{bottom:399.402787pt;}
.ye3_c00298{bottom:399.841147pt;}
.ye4_c00298{bottom:399.911413pt;}
.ye5_c00298{bottom:400.268080pt;}
.ye6_c00298{bottom:400.432427pt;}
.ye7_c00298{bottom:400.662813pt;}
.ye8_c00298{bottom:400.826773pt;}
.yce_c00298{bottom:417.801307pt;}
.ycf_c00298{bottom:418.252853pt;}
.yd0_c00298{bottom:418.530493pt;}
.yd1_c00298{bottom:418.707333pt;}
.yd2_c00298{bottom:419.329827pt;}
.yd3_c00298{bottom:419.928893pt;}
.yd4_c00298{bottom:420.256173pt;}
.yd5_c00298{bottom:421.010640pt;}
.yd6_c00298{bottom:421.234173pt;}
.yd7_c00298{bottom:421.487787pt;}
.yd8_c00298{bottom:422.271187pt;}
.yc1_c00298{bottom:438.213120pt;}
.yc2_c00298{bottom:438.468507pt;}
.yc3_c00298{bottom:438.673653pt;}
.yc4_c00298{bottom:438.935120pt;}
.yc5_c00298{bottom:439.371613pt;}
.yc6_c00298{bottom:439.653973pt;}
.yc7_c00298{bottom:439.851053pt;}
.yc8_c00298{bottom:440.559613pt;}
.yc9_c00298{bottom:440.704080pt;}
.yca_c00298{bottom:440.886080pt;}
.ycb_c00298{bottom:441.170840pt;}
.ycc_c00298{bottom:441.510307pt;}
.ycd_c00298{bottom:441.955333pt;}
.yb3_c00298{bottom:458.399107pt;}
.yb4_c00298{bottom:458.628400pt;}
.yb5_c00298{bottom:458.873080pt;}
.yb6_c00298{bottom:459.136147pt;}
.yb7_c00298{bottom:459.373853pt;}
.yb8_c00298{bottom:459.479147pt;}
.yb9_c00298{bottom:459.788053pt;}
.yba_c00298{bottom:460.312240pt;}
.ybb_c00298{bottom:460.739440pt;}
.ybc_c00298{bottom:461.045880pt;}
.ybd_c00298{bottom:461.285667pt;}
.ybe_c00298{bottom:461.728507pt;}
.ybf_c00298{bottom:461.812560pt;}
.yc0_c00298{bottom:461.950280pt;}
.ya6_c00298{bottom:478.537613pt;}
.ya7_c00298{bottom:478.861680pt;}
.ya8_c00298{bottom:479.288133pt;}
.ya9_c00298{bottom:479.540987pt;}
.yaa_c00298{bottom:479.920680pt;}
.yab_c00298{bottom:480.058360pt;}
.yac_c00298{bottom:480.379533pt;}
.yad_c00298{bottom:480.648347pt;}
.yae_c00298{bottom:480.965987pt;}
.yaf_c00298{bottom:481.277320pt;}
.yb0_c00298{bottom:481.510760pt;}
.yb1_c00298{bottom:481.766360pt;}
.yb2_c00298{bottom:482.150920pt;}
.y9a_c00298{bottom:498.960987pt;}
.y9b_c00298{bottom:499.423027pt;}
.y9c_c00298{bottom:499.617760pt;}
.y9d_c00298{bottom:499.784933pt;}
.y9e_c00298{bottom:500.048427pt;}
.y9f_c00298{bottom:500.648960pt;}
.ya0_c00298{bottom:500.859987pt;}
.ya1_c00298{bottom:501.385853pt;}
.ya2_c00298{bottom:501.763907pt;}
.ya3_c00298{bottom:502.013120pt;}
.ya4_c00298{bottom:502.178427pt;}
.ya5_c00298{bottom:502.421973pt;}
.y8c_c00298{bottom:518.402667pt;}
.y8d_c00298{bottom:518.995347pt;}
.y8e_c00298{bottom:519.132280pt;}
.y8f_c00298{bottom:519.686893pt;}
.y90_c00298{bottom:520.517133pt;}
.y91_c00298{bottom:520.730387pt;}
.y92_c00298{bottom:521.212373pt;}
.y93_c00298{bottom:521.449560pt;}
.y94_c00298{bottom:521.639147pt;}
.y95_c00298{bottom:521.735160pt;}
.y96_c00298{bottom:522.152787pt;}
.y97_c00298{bottom:522.380747pt;}
.y98_c00298{bottom:522.494507pt;}
.y99_c00298{bottom:523.042133pt;}
.y80_c00298{bottom:558.950333pt;}
.y81_c00298{bottom:559.105991pt;}
.y82_c00298{bottom:559.232623pt;}
.y83_c00298{bottom:559.449117pt;}
.y84_c00298{bottom:560.597048pt;}
.y85_c00298{bottom:560.729385pt;}
.y86_c00298{bottom:561.017277pt;}
.y87_c00298{bottom:561.455693pt;}
.y88_c00298{bottom:561.487197pt;}
.y89_c00298{bottom:561.975627pt;}
.y8a_c00298{bottom:561.980379pt;}
.y8b_c00298{bottom:561.998917pt;}
.y71_c00298{bottom:578.631052pt;}
.y72_c00298{bottom:578.928339pt;}
.y73_c00298{bottom:579.077180pt;}
.y74_c00298{bottom:579.302040pt;}
.y75_c00298{bottom:579.359987pt;}
.y76_c00298{bottom:579.669580pt;}
.y77_c00298{bottom:579.848715pt;}
.y78_c00298{bottom:580.503272pt;}
.y79_c00298{bottom:580.752601pt;}
.y7a_c00298{bottom:580.911697pt;}
.y7b_c00298{bottom:581.168847pt;}
.y7c_c00298{bottom:581.324084pt;}
.y7d_c00298{bottom:581.766808pt;}
.y7e_c00298{bottom:581.979919pt;}
.y7f_c00298{bottom:582.198500pt;}
.y64_c00298{bottom:598.790728pt;}
.y65_c00298{bottom:599.060064pt;}
.y66_c00298{bottom:599.357416pt;}
.y67_c00298{bottom:599.700284pt;}
.y68_c00298{bottom:599.967097pt;}
.y69_c00298{bottom:600.329693pt;}
.y6a_c00298{bottom:600.563253pt;}
.y6b_c00298{bottom:600.668747pt;}
.y6c_c00298{bottom:600.903511pt;}
.y6d_c00298{bottom:602.029553pt;}
.y6e_c00298{bottom:602.216455pt;}
.y6f_c00298{bottom:602.433191pt;}
.y70_c00298{bottom:602.939535pt;}
.y55_c00298{bottom:618.713153pt;}
.y56_c00298{bottom:618.964173pt;}
.y57_c00298{bottom:619.716412pt;}
.y58_c00298{bottom:619.741331pt;}
.y59_c00298{bottom:619.832572pt;}
.y5a_c00298{bottom:620.041000pt;}
.y5b_c00298{bottom:620.465409pt;}
.y5c_c00298{bottom:620.684368pt;}
.y5d_c00298{bottom:620.917744pt;}
.y5e_c00298{bottom:621.585327pt;}
.y5f_c00298{bottom:621.920475pt;}
.y60_c00298{bottom:622.480639pt;}
.y61_c00298{bottom:622.624812pt;}
.y62_c00298{bottom:622.775600pt;}
.y63_c00298{bottom:623.155540pt;}
.y4a_c00298{bottom:638.634957pt;}
.y4b_c00298{bottom:638.939793pt;}
.y4c_c00298{bottom:639.132659pt;}
.y4d_c00298{bottom:639.662536pt;}
.y4e_c00298{bottom:639.889235pt;}
.y4f_c00298{bottom:640.183673pt;}
.y50_c00298{bottom:641.208524pt;}
.y51_c00298{bottom:641.496377pt;}
.y52_c00298{bottom:642.022896pt;}
.y53_c00298{bottom:642.536304pt;}
.y54_c00298{bottom:643.446647pt;}
.y3c_c00298{bottom:658.556308pt;}
.y3d_c00298{bottom:659.554199pt;}
.y3e_c00298{bottom:660.029487pt;}
.y3f_c00298{bottom:660.375371pt;}
.y40_c00298{bottom:660.673764pt;}
.y41_c00298{bottom:660.992720pt;}
.y42_c00298{bottom:661.219745pt;}
.y43_c00298{bottom:661.605156pt;}
.y44_c00298{bottom:661.859476pt;}
.y45_c00298{bottom:662.490421pt;}
.y46_c00298{bottom:662.922017pt;}
.y47_c00298{bottom:663.039424pt;}
.y49_c00298{bottom:663.226087pt;}
.y48_c00298{bottom:663.237204pt;}
.y2d_c00298{bottom:679.196785pt;}
.y2e_c00298{bottom:679.640393pt;}
.y2f_c00298{bottom:679.875045pt;}
.y30_c00298{bottom:680.179027pt;}
.y31_c00298{bottom:680.540765pt;}
.y32_c00298{bottom:680.876089pt;}
.y33_c00298{bottom:681.248329pt;}
.y34_c00298{bottom:681.401009pt;}
.y35_c00298{bottom:681.795396pt;}
.y36_c00298{bottom:682.774484pt;}
.y37_c00298{bottom:682.776508pt;}
.y38_c00298{bottom:682.884968pt;}
.y39_c00298{bottom:683.273195pt;}
.y3a_c00298{bottom:683.452788pt;}
.y3b_c00298{bottom:683.793451pt;}
.y20_c00298{bottom:699.358253pt;}
.y21_c00298{bottom:699.518501pt;}
.y22_c00298{bottom:699.733251pt;}
.y23_c00298{bottom:700.376619pt;}
.y24_c00298{bottom:700.678107pt;}
.y25_c00298{bottom:700.865077pt;}
.y26_c00298{bottom:701.105831pt;}
.y27_c00298{bottom:701.710523pt;}
.y28_c00298{bottom:701.903785pt;}
.y29_c00298{bottom:702.471239pt;}
.y2a_c00298{bottom:702.861592pt;}
.y2b_c00298{bottom:703.653724pt;}
.y2c_c00298{bottom:703.801329pt;}
.y12_c00298{bottom:719.520375pt;}
.y13_c00298{bottom:719.807929pt;}
.y14_c00298{bottom:719.948876pt;}
.y15_c00298{bottom:720.095719pt;}
.y16_c00298{bottom:720.671296pt;}
.y17_c00298{bottom:720.978872pt;}
.y18_c00298{bottom:721.240405pt;}
.y19_c00298{bottom:721.763632pt;}
.y1a_c00298{bottom:721.866881pt;}
.y1b_c00298{bottom:722.092155pt;}
.y1c_c00298{bottom:722.416745pt;}
.y1d_c00298{bottom:722.975484pt;}
.y1e_c00298{bottom:723.150416pt;}
.y1f_c00298{bottom:723.397413pt;}
.y3_c00298{bottom:739.201333pt;}
.y4_c00298{bottom:739.386764pt;}
.y5_c00298{bottom:739.713640pt;}
.y6_c00298{bottom:739.941560pt;}
.y7_c00298{bottom:740.281959pt;}
.y8_c00298{bottom:740.640925pt;}
.y9_c00298{bottom:740.860529pt;}
.ya_c00298{bottom:741.580369pt;}
.yb_c00298{bottom:741.652691pt;}
.yc_c00298{bottom:741.945393pt;}
.yd_c00298{bottom:742.213984pt;}
.ye_c00298{bottom:742.589304pt;}
.yf_c00298{bottom:742.789988pt;}
.y10_c00298{bottom:743.335911pt;}
.y11_c00298{bottom:743.603005pt;}
.y2_c00298{bottom:780.436000pt;}
.y1_c00298{bottom:835.325333pt;}
.h11_c00298{height:42.934707pt;}
.h10_c00298{height:43.868070pt;}
.h14_c00298{height:44.801814pt;}
.h13_c00298{height:46.668557pt;}
.h12_c00298{height:48.534886pt;}
.h2_c00298{height:51.333333pt;}
.h5_c00298{height:55.069998pt;}
.hf_c00298{height:59.736320pt;}
.ha_c00298{height:59.736947pt;}
.hd_c00298{height:61.603080pt;}
.he_c00298{height:62.536460pt;}
.h9_c00298{height:62.537116pt;}
.h7_c00298{height:63.470506pt;}
.h8_c00298{height:64.403896pt;}
.h4_c00298{height:65.337286pt;}
.h6_c00298{height:67.204065pt;}
.hb_c00298{height:68.137455pt;}
.hc_c00298{height:69.070120pt;}
.h15_c00298{height:78.400000pt;}
.h3_c00298{height:101.733333pt;}
.h1_c00298{height:893.333333pt;}
.h0_c00298{height:893.466667pt;}
.w0_c00298{width:624.480000pt;}
.w1_c00298{width:624.666667pt;}
.x0_c00298{left:0.000000pt;}
.xf_c00298{left:67.761333pt;}
.x75_c00298{left:69.081333pt;}
.x1d_c00298{left:71.406239pt;}
.x4d_c00298{left:72.652021pt;}
.x5d_c00298{left:73.554364pt;}
.x64_c00298{left:75.260300pt;}
.x7f_c00298{left:76.175107pt;}
.x8a_c00298{left:77.592827pt;}
.x1_c00298{left:79.440000pt;}
.x10_c00298{left:84.618667pt;}
.x2a_c00298{left:86.488057pt;}
.x53_c00298{left:90.193163pt;}
.x4e_c00298{left:98.061076pt;}
.x1e_c00298{left:100.214561pt;}
.x8b_c00298{left:103.055747pt;}
.xa2_c00298{left:104.294160pt;}
.x2b_c00298{left:106.010724pt;}
.x65_c00298{left:108.347700pt;}
.x86_c00298{left:110.715533pt;}
.x36_c00298{left:112.215136pt;}
.xba_c00298{left:113.324171pt;}
.x11_c00298{left:114.334667pt;}
.x96_c00298{left:116.972853pt;}
.xbb_c00298{left:122.240171pt;}
.x66_c00298{left:124.909400pt;}
.x90_c00298{left:126.582960pt;}
.x1f_c00298{left:129.044217pt;}
.x5e_c00298{left:130.162980pt;}
.xa3_c00298{left:131.646160pt;}
.xb_c00298{left:133.200000pt;}
.x12_c00298{left:135.054667pt;}
.xbf_c00298{left:139.761333pt;}
.x76_c00298{left:142.042667pt;}
.x2_c00298{left:146.880000pt;}
.xad_c00298{left:147.908000pt;}
.xc5_c00298{left:148.801592pt;}
.x67_c00298{left:149.836609pt;}
.xbc_c00298{left:153.674837pt;}
.x68_c00298{left:156.316756pt;}
.x41_c00298{left:158.060271pt;}
.x8c_c00298{left:159.430973pt;}
.x37_c00298{left:161.181803pt;}
.x2c_c00298{left:164.498724pt;}
.x13_c00298{left:166.000000pt;}
.x54_c00298{left:169.138496pt;}
.xa4_c00298{left:170.090160pt;}
.x4f_c00298{left:177.221544pt;}
.x80_c00298{left:179.105160pt;}
.xa6_c00298{left:180.781333pt;}
.x6e_c00298{left:182.091020pt;}
.x3_c00298{left:184.320000pt;}
.x20_c00298{left:186.582181pt;}
.x55_c00298{left:188.086496pt;}
.x69_c00298{left:190.644171pt;}
.x2d_c00298{left:191.906724pt;}
.x38_c00298{left:194.067136pt;}
.x6f_c00298{left:196.241687pt;}
.x77_c00298{left:197.504000pt;}
.x14_c00298{left:198.633333pt;}
.x42_c00298{left:201.268271pt;}
.x91_c00298{left:204.113067pt;}
.x70_c00298{left:207.753687pt;}
.x2e_c00298{left:208.904057pt;}
.x6a_c00298{left:210.565944pt;}
.x81_c00298{left:211.988480pt;}
.xb6_c00298{left:213.662229pt;}
.x97_c00298{left:214.935880pt;}
.x21_c00298{left:217.331852pt;}
.x15_c00298{left:218.597333pt;}
.x39_c00298{left:224.551136pt;}
.x56_c00298{left:226.669163pt;}
.x87_c00298{left:228.350040pt;}
.x2f_c00298{left:230.790724pt;}
.x4_c00298{left:232.800000pt;}
.x92_c00298{left:235.549387pt;}
.xae_c00298{left:241.520000pt;}
.x22_c00298{left:243.532145pt;}
.xb7_c00298{left:246.299563pt;}
.xc_c00298{left:247.200000pt;}
.xa7_c00298{left:248.478667pt;}
.x5f_c00298{left:250.694967pt;}
.xa5_c00298{left:253.343493pt;}
.x93_c00298{left:257.390933pt;}
.x3a_c00298{left:258.391136pt;}
.x43_c00298{left:259.838937pt;}
.x60_c00298{left:261.255084pt;}
.xc0_c00298{left:262.392000pt;}
.x57_c00298{left:267.790496pt;}
.x98_c00298{left:269.375333pt;}
.x3b_c00298{left:272.271136pt;}
.xaf_c00298{left:275.833333pt;}
.x9d_c00298{left:277.043733pt;}
.x5_c00298{left:280.080000pt;}
.x16_c00298{left:284.037333pt;}
.x30_c00298{left:285.762724pt;}
.x50_c00298{left:287.216341pt;}
.x44_c00298{left:288.834937pt;}
.xd_c00298{left:290.160000pt;}
.x9e_c00298{left:292.172187pt;}
.xa8_c00298{left:294.785333pt;}
.x23_c00298{left:295.826051pt;}
.x99_c00298{left:299.169707pt;}
.x78_c00298{left:301.853333pt;}
.x31_c00298{left:303.332057pt;}
.xb0_c00298{left:304.400000pt;}
.x24_c00298{left:306.182168pt;}
.x3c_c00298{left:308.124469pt;}
.x45_c00298{left:309.473604pt;}
.x51_c00298{left:311.202744pt;}
.x82_c00298{left:313.546520pt;}
.xa9_c00298{left:315.924000pt;}
.x17_c00298{left:317.221333pt;}
.xb1_c00298{left:323.117333pt;}
.x25_c00298{left:328.722417pt;}
.xc1_c00298{left:329.844000pt;}
.x71_c00298{left:331.792353pt;}
.x6_c00298{left:336.480000pt;}
.x8d_c00298{left:337.762107pt;}
.xb2_c00298{left:340.157333pt;}
.x18_c00298{left:341.638667pt;}
.xb8_c00298{left:343.526229pt;}
.x46_c00298{left:344.510937pt;}
.x79_c00298{left:350.052000pt;}
.x94_c00298{left:352.161213pt;}
.x32_c00298{left:354.918724pt;}
.x6b_c00298{left:357.247837pt;}
.x58_c00298{left:358.947829pt;}
.xaa_c00298{left:359.837333pt;}
.x26_c00298{left:361.140103pt;}
.x9f_c00298{left:364.903707pt;}
.xc2_c00298{left:366.361333pt;}
.x47_c00298{left:367.630937pt;}
.xbd_c00298{left:368.945504pt;}
.x72_c00298{left:369.995020pt;}
.x7_c00298{left:372.480000pt;}
.x6c_c00298{left:374.512219pt;}
.x19_c00298{left:375.758667pt;}
.x83_c00298{left:379.334507pt;}
.xb3_c00298{left:380.488000pt;}
.x9a_c00298{left:388.168827pt;}
.xc3_c00298{left:389.153333pt;}
.x33_c00298{left:390.405391pt;}
.xab_c00298{left:391.512000pt;}
.x7a_c00298{left:392.729333pt;}
.x1a_c00298{left:394.002667pt;}
.x3d_c00298{left:397.132469pt;}
.x8e_c00298{left:398.518720pt;}
.xac_c00298{left:401.352000pt;}
.x7b_c00298{left:402.330667pt;}
.x95_c00298{left:404.037733pt;}
.x88_c00298{left:404.959800pt;}
.x3e_c00298{left:407.176469pt;}
.x59_c00298{left:409.871829pt;}
.x9b_c00298{left:411.263267pt;}
.x73_c00298{left:412.715020pt;}
.x61_c00298{left:416.018119pt;}
.x27_c00298{left:417.026052pt;}
.xbe_c00298{left:421.928171pt;}
.x5a_c00298{left:422.978496pt;}
.x48_c00298{left:424.989604pt;}
.x84_c00298{left:426.607453pt;}
.xb4_c00298{left:428.000000pt;}
.x89_c00298{left:433.320080pt;}
.x28_c00298{left:434.504909pt;}
.x5b_c00298{left:436.686496pt;}
.x62_c00298{left:437.661020pt;}
.xa0_c00298{left:439.273933pt;}
.x3f_c00298{left:442.469803pt;}
.x1b_c00298{left:443.632000pt;}
.x8_c00298{left:446.400000pt;}
.x6d_c00298{left:447.468499pt;}
.xc4_c00298{left:450.900000pt;}
.x74_c00298{left:457.117687pt;}
.x29_c00298{left:459.262521pt;}
.x34_c00298{left:462.417391pt;}
.x49_c00298{left:464.225604pt;}
.xe_c00298{left:465.120000pt;}
.x7c_c00298{left:466.889333pt;}
.x1c_c00298{left:467.913333pt;}
.x5c_c00298{left:471.226496pt;}
.x8f_c00298{left:472.447467pt;}
.x52_c00298{left:473.710288pt;}
.x4a_c00298{left:474.898937pt;}
.x35_c00298{left:475.836057pt;}
.x7d_c00298{left:478.265333pt;}
.x9c_c00298{left:482.535893pt;}
.x63_c00298{left:488.298911pt;}
.x40_c00298{left:489.765803pt;}
.x4c_c00298{left:491.868271pt;}
.x4b_c00298{left:492.878937pt;}
.xa1_c00298{left:495.643627pt;}
.xb9_c00298{left:500.223563pt;}
.x9_c00298{left:507.120000pt;}
.x85_c00298{left:508.949107pt;}
.xb5_c00298{left:512.688000pt;}
.x7e_c00298{left:533.028000pt;}
.xa_c00298{left:539.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_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_ef4e99a7aa2876b3106553d3.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;}
.m10a_c00299{transform:matrix(0.011785,-0.000082,0.001750,0.249994,0,0);-ms-transform:matrix(0.011785,-0.000082,0.001750,0.249994,0,0);-webkit-transform:matrix(0.011785,-0.000082,0.001750,0.249994,0,0);}
.m57_c00299{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);}
.m40_c00299{transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);}
.me7_c00299{transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086245,0.000000,0.000000,0.250000,0,0);}
.ma8_c00299{transform:matrix(0.099958,0.000700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.099958,0.000700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.099958,0.000700,-0.001750,0.249994,0,0);}
.m2a_c00299{transform:matrix(0.123972,0.000868,-0.001750,0.249994,0,0);-ms-transform:matrix(0.123972,0.000868,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.123972,0.000868,-0.001750,0.249994,0,0);}
.m109_c00299{transform:matrix(0.124142,-0.000869,0.001750,0.249994,0,0);-ms-transform:matrix(0.124142,-0.000869,0.001750,0.249994,0,0);-webkit-transform:matrix(0.124142,-0.000869,0.001750,0.249994,0,0);}
.m84_c00299{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);}
.m33_c00299{transform:matrix(0.145411,0.001018,-0.001750,0.249994,0,0);-ms-transform:matrix(0.145411,0.001018,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.145411,0.001018,-0.001750,0.249994,0,0);}
.m67_c00299{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m7a_c00299{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);}
.mde_c00299{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);}
.mba_c00299{transform:matrix(0.148446,0.001039,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148446,0.001039,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148446,0.001039,-0.001750,0.249994,0,0);}
.ma0_c00299{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00299{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);}
.m2b_c00299{transform:matrix(0.152276,0.001066,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152276,0.001066,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152276,0.001066,-0.001750,0.249994,0,0);}
.m4b_c00299{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);}
.mb6_c00299{transform:matrix(0.153531,0.001075,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153531,0.001075,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153531,0.001075,-0.001750,0.249994,0,0);}
.m50_c00299{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);}
.m53_c00299{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);}
.me3_c00299{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);}
.mf5_c00299{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);}
.m73_c00299{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);}
.ma1_c00299{transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);}
.m101_c00299{transform:matrix(0.160431,-0.001123,0.001750,0.249994,0,0);-ms-transform:matrix(0.160431,-0.001123,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160431,-0.001123,0.001750,0.249994,0,0);}
.m7b_c00299{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);}
.m32_c00299{transform:matrix(0.161956,0.001134,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161956,0.001134,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161956,0.001134,-0.001750,0.249994,0,0);}
.m9a_c00299{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);}
.m17_c00299{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);}
.mfb_c00299{transform:matrix(0.163461,-0.001144,0.001750,0.249994,0,0);-ms-transform:matrix(0.163461,-0.001144,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163461,-0.001144,0.001750,0.249994,0,0);}
.m4e_c00299{transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);}
.me4_c00299{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);}
.m105_c00299{transform:matrix(0.166381,-0.001165,0.001750,0.249994,0,0);-ms-transform:matrix(0.166381,-0.001165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166381,-0.001165,0.001750,0.249994,0,0);}
.m6f_c00299{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);}
.m5d_c00299{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);}
.m85_c00299{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);}
.ma2_c00299{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);}
.m9b_c00299{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);}
.m98_c00299{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);}
.m102_c00299{transform:matrix(0.170971,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.170971,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170971,-0.001197,0.001750,0.249994,0,0);}
.m69_c00299{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);}
.m28_c00299{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);}
.m6e_c00299{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);}
.m89_c00299{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);}
.mb0_c00299{transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);}
.m77_c00299{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);}
.m23_c00299{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);}
.m30_c00299{transform:matrix(0.173936,0.001218,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173936,0.001218,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173936,0.001218,-0.001750,0.249994,0,0);}
.mcb_c00299{transform:matrix(0.174081,0.001219,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174081,0.001219,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174081,0.001219,-0.001750,0.249994,0,0);}
.m96_c00299{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);}
.mae_c00299{transform:matrix(0.175736,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175736,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175736,0.001230,-0.001750,0.249994,0,0);}
.m87_c00299{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);}
.m93_c00299{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);}
.ma6_c00299{transform:matrix(0.177036,0.001239,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177036,0.001239,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177036,0.001239,-0.001750,0.249994,0,0);}
.md8_c00299{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);}
.mc7_c00299{transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178386,0.001249,-0.001750,0.249994,0,0);}
.md5_c00299{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);}
.m88_c00299{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);}
.m55_c00299{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);}
.m107_c00299{transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);}
.mb7_c00299{transform:matrix(0.181091,0.001268,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181091,0.001268,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181091,0.001268,-0.001750,0.249994,0,0);}
.mff_c00299{transform:matrix(0.181241,-0.001269,0.001750,0.249994,0,0);-ms-transform:matrix(0.181241,-0.001269,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181241,-0.001269,0.001750,0.249994,0,0);}
.m9f_c00299{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00299{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);}
.m82_c00299{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);}
.m9e_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);}
.m7c_c00299{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);}
.m31_c00299{transform:matrix(0.183735,0.001286,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183735,0.001286,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183735,0.001286,-0.001750,0.249994,0,0);}
.me9_c00299{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);}
.m100_c00299{transform:matrix(0.185520,-0.001299,0.001750,0.249994,0,0);-ms-transform:matrix(0.185520,-0.001299,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185520,-0.001299,0.001750,0.249994,0,0);}
.m54_c00299{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);}
.m39_c00299{transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);}
.m6c_c00299{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);}
.m72_c00299{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);}
.m9c_c00299{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);}
.m104_c00299{transform:matrix(0.187715,-0.001314,0.001750,0.249994,0,0);-ms-transform:matrix(0.187715,-0.001314,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187715,-0.001314,0.001750,0.249994,0,0);}
.m52_c00299{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);}
.m8b_c00299{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);}
.m49_c00299{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);}
.m99_c00299{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);}
.mac_c00299{transform:matrix(0.189565,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189565,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189565,0.001327,-0.001750,0.249994,0,0);}
.m86_c00299{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);}
.m63_c00299{transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);}
.m106_c00299{transform:matrix(0.190720,-0.001335,0.001750,0.249994,0,0);-ms-transform:matrix(0.190720,-0.001335,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190720,-0.001335,0.001750,0.249994,0,0);}
.ma3_c00299{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);}
.m92_c00299{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);}
.m3e_c00299{transform:matrix(0.191385,0.001340,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191385,0.001340,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191385,0.001340,-0.001750,0.249994,0,0);}
.ma4_c00299{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);}
.mc5_c00299{transform:matrix(0.192815,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192815,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192815,0.001350,-0.001750,0.249994,0,0);}
.mb2_c00299{transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);}
.m34_c00299{transform:matrix(0.194290,0.001360,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194290,0.001360,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194290,0.001360,-0.001750,0.249994,0,0);}
.mf4_c00299{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);}
.m75_c00299{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);}
.mbb_c00299{transform:matrix(0.194655,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194655,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194655,0.001363,-0.001750,0.249994,0,0);}
.m2c_c00299{transform:matrix(0.194915,0.001364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194915,0.001364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194915,0.001364,-0.001750,0.249994,0,0);}
.m3f_c00299{transform:matrix(0.195100,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195100,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195100,0.001366,-0.001750,0.249994,0,0);}
.m108_c00299{transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);}
.m5c_c00299{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);}
.m97_c00299{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);}
.m68_c00299{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);}
.mbf_c00299{transform:matrix(0.196125,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196125,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196125,0.001373,-0.001750,0.249994,0,0);}
.mb1_c00299{transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);}
.m58_c00299{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);}
.m3b_c00299{transform:matrix(0.197025,0.001379,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197025,0.001379,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197025,0.001379,-0.001750,0.249994,0,0);}
.m51_c00299{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);}
.m2f_c00299{transform:matrix(0.197720,0.001384,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197720,0.001384,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197720,0.001384,-0.001750,0.249994,0,0);}
.m8c_c00299{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);}
.m70_c00299{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);}
.m74_c00299{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);}
.m6d_c00299{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);}
.mb9_c00299{transform:matrix(0.198635,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198635,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198635,0.001390,-0.001750,0.249994,0,0);}
.m90_c00299{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);}
.mc6_c00299{transform:matrix(0.198955,0.001393,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198955,0.001393,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198955,0.001393,-0.001750,0.249994,0,0);}
.m5b_c00299{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);}
.ma7_c00299{transform:matrix(0.199100,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199100,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199100,0.001394,-0.001750,0.249994,0,0);}
.m66_c00299{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);}
.m64_c00299{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);}
.m4c_c00299{transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);}
.mf3_c00299{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);}
.mfd_c00299{transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);-ms-transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);}
.mb5_c00299{transform:matrix(0.200825,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200825,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200825,0.001406,-0.001750,0.249994,0,0);}
.mca_c00299{transform:matrix(0.201220,0.001409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201220,0.001409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201220,0.001409,-0.001750,0.249994,0,0);}
.m7e_c00299{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);}
.m7d_c00299{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);}
.m71_c00299{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);}
.mfe_c00299{transform:matrix(0.201895,-0.001413,0.001750,0.249994,0,0);-ms-transform:matrix(0.201895,-0.001413,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201895,-0.001413,0.001750,0.249994,0,0);}
.me6_c00299{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);}
.m10b_c00299{transform:matrix(0.202420,-0.001417,0.001750,0.249994,0,0);-ms-transform:matrix(0.202420,-0.001417,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202420,-0.001417,0.001750,0.249994,0,0);}
.m8e_c00299{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);}
.m46_c00299{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);}
.m5a_c00299{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);}
.maf_c00299{transform:matrix(0.205180,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205180,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205180,0.001436,-0.001750,0.249994,0,0);}
.m6a_c00299{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);}
.m48_c00299{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);}
.m25_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);}
.m2d_c00299{transform:matrix(0.209410,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209410,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209410,0.001466,-0.001750,0.249994,0,0);}
.mad_c00299{transform:matrix(0.210480,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210480,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210480,0.001473,-0.001750,0.249994,0,0);}
.m56_c00299{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);}
.m1e_c00299{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);}
.md9_c00299{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);}
.m47_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);}
.m4a_c00299{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);}
.m81_c00299{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);}
.mc1_c00299{transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);}
.me2_c00299{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);}
.m76_c00299{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);}
.m94_c00299{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);}
.mc2_c00299{transform:matrix(0.214845,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214845,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214845,0.001504,-0.001750,0.249994,0,0);}
.mcf_c00299{transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);}
.m20_c00299{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);}
.mf7_c00299{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);}
.m1c_c00299{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);}
.mc9_c00299{transform:matrix(0.215515,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215515,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215515,0.001509,-0.001750,0.249994,0,0);}
.md7_c00299{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);}
.m79_c00299{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);}
.m35_c00299{transform:matrix(0.217670,0.001524,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217670,0.001524,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217670,0.001524,-0.001750,0.249994,0,0);}
.mbd_c00299{transform:matrix(0.217910,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217910,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217910,0.001525,-0.001750,0.249994,0,0);}
.m6b_c00299{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);}
.m22_c00299{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);}
.m5f_c00299{transform:matrix(0.219310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219310,0.000000,0.000000,0.250000,0,0);}
.m9d_c00299{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);}
.m5e_c00299{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);}
.m1f_c00299{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);}
.ma5_c00299{transform:matrix(0.222355,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222355,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222355,0.001556,-0.001750,0.249994,0,0);}
.mb4_c00299{transform:matrix(0.222670,0.001559,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222670,0.001559,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222670,0.001559,-0.001750,0.249994,0,0);}
.mbc_c00299{transform:matrix(0.223675,0.001566,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223675,0.001566,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223675,0.001566,-0.001750,0.249994,0,0);}
.mf6_c00299{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);}
.mb3_c00299{transform:matrix(0.223955,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223955,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223955,0.001568,-0.001750,0.249994,0,0);}
.me8_c00299{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);}
.m41_c00299{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);}
.mab_c00299{transform:matrix(0.224984,0.001575,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224984,0.001575,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224984,0.001575,-0.001750,0.249994,0,0);}
.m62_c00299{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);}
.m3d_c00299{transform:matrix(0.226209,0.001583,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226209,0.001583,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226209,0.001583,-0.001750,0.249994,0,0);}
.mf2_c00299{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);}
.maa_c00299{transform:matrix(0.227724,0.001594,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227724,0.001594,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227724,0.001594,-0.001750,0.249994,0,0);}
.m1b_c00299{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);}
.mcd_c00299{transform:matrix(0.227934,0.001596,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227934,0.001596,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227934,0.001596,-0.001750,0.249994,0,0);}
.mc4_c00299{transform:matrix(0.228129,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228129,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228129,0.001597,-0.001750,0.249994,0,0);}
.mc_c00299{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);}
.m4f_c00299{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_c00299{transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);}
.mce_c00299{transform:matrix(0.230814,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230814,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230814,0.001616,-0.001750,0.249994,0,0);}
.mf1_c00299{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);}
.me5_c00299{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);}
.m91_c00299{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);}
.mc0_c00299{transform:matrix(0.233524,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233524,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233524,0.001635,-0.001750,0.249994,0,0);}
.mee_c00299{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);}
.mc3_c00299{transform:matrix(0.237089,0.001660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237089,0.001660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237089,0.001660,-0.001750,0.249994,0,0);}
.mf8_c00299{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);}
.m95_c00299{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);}
.m10_c00299{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);}
.mf_c00299{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);}
.m12_c00299{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);}
.m18_c00299{transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240430,0.000000,0.000000,0.250000,0,0);}
.m65_c00299{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m103_c00299{transform:matrix(0.243454,-0.001704,0.001750,0.249994,0,0);-ms-transform:matrix(0.243454,-0.001704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243454,-0.001704,0.001750,0.249994,0,0);}
.m80_c00299{transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243720,0.000000,0.000000,0.250000,0,0);}
.m8f_c00299{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{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);}
.m60_c00299{transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);}
.med_c00299{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.me_c00299{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);}
.m21_c00299{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);}
.m4d_c00299{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{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);}
.m78_c00299{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.mea_c00299{transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{transform:matrix(0.253699,0.001776,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253699,0.001776,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253699,0.001776,-0.001750,0.249994,0,0);}
.md1_c00299{transform:matrix(0.254594,0.001782,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254594,0.001782,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254594,0.001782,-0.001750,0.249994,0,0);}
.mb8_c00299{transform:matrix(0.254689,0.001783,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254689,0.001783,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254689,0.001783,-0.001750,0.249994,0,0);}
.mcc_c00299{transform:matrix(0.256754,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256754,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256754,0.001797,-0.001750,0.249994,0,0);}
.m1d_c00299{transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);}
.mdc_c00299{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);}
.m13_c00299{transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);}
.mdb_c00299{transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);}
.m83_c00299{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);}
.ma9_c00299{transform:matrix(0.265034,0.001855,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265034,0.001855,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265034,0.001855,-0.001750,0.249994,0,0);}
.m3a_c00299{transform:matrix(0.266253,0.001864,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266253,0.001864,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266253,0.001864,-0.001750,0.249994,0,0);}
.mfa_c00299{transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);}
.mda_c00299{transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272315,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275720,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286580,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287535,0.000000,0.000000,0.250000,0,0);}
.mdf_c00299{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.md3_c00299{transform:matrix(0.296188,0.002073,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296188,0.002073,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296188,0.002073,-0.001750,0.249994,0,0);}
.m2e_c00299{transform:matrix(0.298308,0.002088,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298308,0.002088,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298308,0.002088,-0.001750,0.249994,0,0);}
.m9_c00299{transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300430,0.000000,0.000000,0.250000,0,0);}
.md6_c00299{transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301830,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mec_c00299{transform:matrix(0.304880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304880,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309415,0.000000,0.000000,0.250000,0,0);}
.me1_c00299{transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316325,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);}
.mbe_c00299{transform:matrix(0.326622,0.002286,-0.001750,0.249994,0,0);-ms-transform:matrix(0.326622,0.002286,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.326622,0.002286,-0.001750,0.249994,0,0);}
.mfc_c00299{transform:matrix(0.338707,-0.002371,0.001750,0.249994,0,0);-ms-transform:matrix(0.338707,-0.002371,0.001750,0.249994,0,0);-webkit-transform:matrix(0.338707,-0.002371,0.001750,0.249994,0,0);}
.m7_c00299{transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342070,0.000000,0.000000,0.250000,0,0);}
.mf9_c00299{transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347345,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.349076,0.002444,-0.001750,0.249994,0,0);-ms-transform:matrix(0.349076,0.002444,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.349076,0.002444,-0.001750,0.249994,0,0);}
.mdd_c00299{transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354775,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373140,0.000000,0.000000,0.250000,0,0);}
.md2_c00299{transform:matrix(0.374631,0.002622,-0.001750,0.249994,0,0);-ms-transform:matrix(0.374631,0.002622,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.374631,0.002622,-0.001750,0.249994,0,0);}
.md0_c00299{transform:matrix(0.383651,0.002686,-0.001750,0.249994,0,0);-ms-transform:matrix(0.383651,0.002686,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.383651,0.002686,-0.001750,0.249994,0,0);}
.mef_c00299{transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.391295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00299{transform:matrix(0.399255,0.002795,-0.001750,0.249994,0,0);-ms-transform:matrix(0.399255,0.002795,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.399255,0.002795,-0.001750,0.249994,0,0);}
.meb_c00299{transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);}
.mf0_c00299{transform:matrix(0.415365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415365,0.000000,0.000000,0.250000,0,0);}
.me0_c00299{transform:matrix(0.416610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416610,0.000000,0.000000,0.250000,0,0);}
.m8d_c00299{transform:matrix(0.420505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420505,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.509490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509490,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.518245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518245,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.527275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527275,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.535055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535055,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.545172,0.003816,-0.001750,0.249994,0,0);-ms-transform:matrix(0.545172,0.003816,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.545172,0.003816,-0.001750,0.249994,0,0);}
.m29_c00299{transform:matrix(0.584011,0.004088,-0.001750,0.249994,0,0);-ms-transform:matrix(0.584011,0.004088,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.584011,0.004088,-0.001750,0.249994,0,0);}
.m2_c00299{transform:matrix(0.600415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600415,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.654580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654580,0.000000,0.000000,0.250000,0,0);}
.md4_c00299{transform:matrix(0.680738,0.004765,-0.001750,0.249994,0,0);-ms-transform:matrix(0.680738,0.004765,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.680738,0.004765,-0.001750,0.249994,0,0);}
.m3_c00299{transform:matrix(0.721435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721435,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{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);}
.m1_c00299{transform:matrix(1.005880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005880,0.000000,0.000000,0.250000,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;}
.fs11_c00299{font-size:46.200000px;}
.fs10_c00299{font-size:61.950000px;}
.fsc_c00299{font-size:63.001543px;}
.fsb_c00299{font-size:68.250000px;}
.fsd_c00299{font-size:68.251672px;}
.fs2_c00299{font-size:69.300000px;}
.fsf_c00299{font-size:69.301698px;}
.fs9_c00299{font-size:70.350000px;}
.fs8_c00299{font-size:70.351724px;}
.fsa_c00299{font-size:71.400000px;}
.fse_c00299{font-size:71.401749px;}
.fs12_c00299{font-size:72.451775px;}
.fs4_c00299{font-size:73.500000px;}
.fs7_c00299{font-size:75.601852px;}
.fs0_c00299{font-size:78.750000px;}
.fs3_c00299{font-size:86.100000px;}
.fs6_c00299{font-size:88.200000px;}
.fs1_c00299{font-size:96.600000px;}
.fs5_c00299{font-size:141.750000px;}
.y0_c00299{bottom:0.000000px;}
.y90_c00299{bottom:146.638714px;}
.y8f_c00299{bottom:150.116650px;}
.y8e_c00299{bottom:168.761432px;}
.y8d_c00299{bottom:169.360561px;}
.y8c_c00299{bottom:170.003392px;}
.y8b_c00299{bottom:170.888247px;}
.y8a_c00299{bottom:171.415262px;}
.y89_c00299{bottom:172.075885px;}
.y88_c00299{bottom:172.434921px;}
.y87_c00299{bottom:172.996526px;}
.y86_c00299{bottom:173.345999px;}
.y85_c00299{bottom:174.449191px;}
.y84_c00299{bottom:174.997270px;}
.y83_c00299{bottom:176.272332px;}
.y82_c00299{bottom:176.545947px;}
.y81_c00299{bottom:177.392091px;}
.y80_c00299{bottom:181.710000px;}
.y7f_c00299{bottom:191.709000px;}
.y7e_c00299{bottom:191.772000px;}
.y7d_c00299{bottom:192.505500px;}
.y7c_c00299{bottom:192.753000px;}
.y7b_c00299{bottom:193.660500px;}
.y7a_c00299{bottom:193.830000px;}
.y79_c00299{bottom:194.668500px;}
.y78_c00299{bottom:195.214500px;}
.y77_c00299{bottom:195.837000px;}
.y76_c00299{bottom:196.360500px;}
.y75_c00299{bottom:196.830000px;}
.y74_c00299{bottom:214.021500px;}
.y73_c00299{bottom:214.455000px;}
.y72_c00299{bottom:214.726500px;}
.y71_c00299{bottom:215.422500px;}
.y70_c00299{bottom:215.760000px;}
.y6f_c00299{bottom:216.364500px;}
.y6e_c00299{bottom:216.579000px;}
.y6d_c00299{bottom:216.906000px;}
.y6c_c00299{bottom:217.062000px;}
.y6b_c00299{bottom:218.175000px;}
.y6a_c00299{bottom:218.572500px;}
.y69_c00299{bottom:218.847000px;}
.y68_c00299{bottom:219.198000px;}
.y67_c00299{bottom:219.751500px;}
.y66_c00299{bottom:220.321500px;}
.y65_c00299{bottom:227.320500px;}
.y64_c00299{bottom:240.522000px;}
.y63_c00299{bottom:260.755043px;}
.y62_c00299{bottom:261.230088px;}
.y61_c00299{bottom:261.700400px;}
.y60_c00299{bottom:262.075410px;}
.y5f_c00299{bottom:262.290858px;}
.y5e_c00299{bottom:262.981730px;}
.y5d_c00299{bottom:263.172909px;}
.y5c_c00299{bottom:263.586905px;}
.y5b_c00299{bottom:264.000638px;}
.y5a_c00299{bottom:264.389503px;}
.y59_c00299{bottom:264.648650px;}
.y58_c00299{bottom:264.873356px;}
.y57_c00299{bottom:265.408454px;}
.y56_c00299{bottom:284.244141px;}
.y55_c00299{bottom:284.554332px;}
.y54_c00299{bottom:284.767702px;}
.y53_c00299{bottom:285.168351px;}
.y52_c00299{bottom:285.351702px;}
.y51_c00299{bottom:285.897922px;}
.y50_c00299{bottom:286.277833px;}
.y4f_c00299{bottom:286.442264px;}
.y4e_c00299{bottom:287.007720px;}
.y4d_c00299{bottom:306.387196px;}
.y4c_c00299{bottom:306.851111px;}
.y4b_c00299{bottom:307.044563px;}
.y4a_c00299{bottom:307.220342px;}
.y49_c00299{bottom:307.418121px;}
.y48_c00299{bottom:307.607741px;}
.y47_c00299{bottom:307.758011px;}
.y46_c00299{bottom:308.247812px;}
.y45_c00299{bottom:308.411722px;}
.y44_c00299{bottom:308.836581px;}
.y43_c00299{bottom:309.142633px;}
.y42_c00299{bottom:309.320565px;}
.y41_c00299{bottom:309.421182px;}
.y40_c00299{bottom:328.531008px;}
.y3f_c00299{bottom:328.671687px;}
.y3e_c00299{bottom:329.206399px;}
.y3d_c00299{bottom:329.501061px;}
.y3c_c00299{bottom:330.026670px;}
.y3b_c00299{bottom:330.493448px;}
.y3a_c00299{bottom:330.801454px;}
.y39_c00299{bottom:331.020569px;}
.y38_c00299{bottom:331.175779px;}
.y37_c00299{bottom:331.279268px;}
.y36_c00299{bottom:331.794041px;}
.y35_c00299{bottom:331.982851px;}
.y34_c00299{bottom:332.100000px;}
.y33_c00299{bottom:352.764000px;}
.y32_c00299{bottom:376.981500px;}
.y31_c00299{bottom:399.154500px;}
.y30_c00299{bottom:421.552500px;}
.y2f_c00299{bottom:444.817500px;}
.y2e_c00299{bottom:467.499000px;}
.y2d_c00299{bottom:490.171500px;}
.y2c_c00299{bottom:511.129500px;}
.y2b_c00299{bottom:511.630500px;}
.y2a_c00299{bottom:511.756500px;}
.y29_c00299{bottom:511.939500px;}
.y28_c00299{bottom:512.194500px;}
.y27_c00299{bottom:512.716500px;}
.y26_c00299{bottom:513.118500px;}
.y25_c00299{bottom:513.313500px;}
.y24_c00299{bottom:513.481500px;}
.y23_c00299{bottom:514.026000px;}
.y22_c00299{bottom:514.207500px;}
.y21_c00299{bottom:514.620000px;}
.y20_c00299{bottom:535.557000px;}
.y1b_c00299{bottom:558.164693px;}
.y1a_c00299{bottom:558.165022px;}
.y1d_c00299{bottom:558.165303px;}
.y1e_c00299{bottom:558.165343px;}
.y1c_c00299{bottom:558.165382px;}
.y19_c00299{bottom:558.165522px;}
.y1f_c00299{bottom:558.165594px;}
.y15_c00299{bottom:558.165901px;}
.y18_c00299{bottom:558.166182px;}
.y14_c00299{bottom:558.166401px;}
.y16_c00299{bottom:558.166482px;}
.y17_c00299{bottom:558.166752px;}
.y13_c00299{bottom:580.210315px;}
.y12_c00299{bottom:580.414488px;}
.y11_c00299{bottom:581.060910px;}
.y10_c00299{bottom:581.317719px;}
.yf_c00299{bottom:581.781031px;}
.ye_c00299{bottom:581.913310px;}
.yd_c00299{bottom:582.120937px;}
.yc_c00299{bottom:582.642819px;}
.yb_c00299{bottom:583.096398px;}
.ya_c00299{bottom:583.215310px;}
.y9_c00299{bottom:583.471500px;}
.y8_c00299{bottom:640.875000px;}
.y7_c00299{bottom:666.075000px;}
.y6_c00299{bottom:692.382000px;}
.y5_c00299{bottom:736.830000px;}
.y4_c00299{bottom:777.667500px;}
.y3_c00299{bottom:824.136000px;}
.y2_c00299{bottom:867.882000px;}
.y1_c00299{bottom:935.010000px;}
.h13_c00299{height:46.200000px;}
.h12_c00299{height:61.950000px;}
.he_c00299{height:63.001543px;}
.hd_c00299{height:68.250000px;}
.hf_c00299{height:68.251672px;}
.h4_c00299{height:69.300000px;}
.h11_c00299{height:69.301698px;}
.hb_c00299{height:70.350000px;}
.ha_c00299{height:70.351724px;}
.hc_c00299{height:71.400000px;}
.h10_c00299{height:71.401749px;}
.h14_c00299{height:72.451775px;}
.h6_c00299{height:73.500000px;}
.h9_c00299{height:75.601852px;}
.h2_c00299{height:78.750000px;}
.h5_c00299{height:86.100000px;}
.h8_c00299{height:88.200000px;}
.h3_c00299{height:96.600000px;}
.h7_c00299{height:141.750000px;}
.h0_c00299{height:1008.450000px;}
.h1_c00299{height:1008.750000px;}
.w0_c00299{width:696.000000px;}
.x0_c00299{left:0.000000px;}
.xab_c00299{left:100.609910px;}
.xa5_c00299{left:104.101500px;}
.x8e_c00299{left:105.393045px;}
.x97_c00299{left:107.730000px;}
.x99_c00299{left:119.487000px;}
.x94_c00299{left:122.310000px;}
.x1_c00299{left:132.300000px;}
.x86_c00299{left:143.027463px;}
.x38_c00299{left:148.500000px;}
.x57_c00299{left:149.581500px;}
.xa6_c00299{left:151.071000px;}
.x39_c00299{left:157.950000px;}
.x74_c00299{left:159.570000px;}
.x42_c00299{left:160.819500px;}
.x8_c00299{left:162.270000px;}
.x1a_c00299{left:167.400000px;}
.x2_c00299{left:169.290000px;}
.x7d_c00299{left:175.948500px;}
.x11_c00299{left:178.470000px;}
.x8f_c00299{left:181.363449px;}
.x87_c00299{left:189.463289px;}
.x95_c00299{left:192.510000px;}
.x58_c00299{left:195.481500px;}
.x17_c00299{left:198.450000px;}
.x7e_c00299{left:202.921500px;}
.x64_c00299{left:204.660000px;}
.x2d_c00299{left:206.011997px;}
.x90_c00299{left:207.240903px;}
.x68_c00299{left:209.520000px;}
.x9a_c00299{left:213.151500px;}
.x26_c00299{left:216.187500px;}
.x43_c00299{left:219.666000px;}
.x75_c00299{left:221.670000px;}
.xb_c00299{left:227.610000px;}
.x6e_c00299{left:230.040000px;}
.x3a_c00299{left:231.120000px;}
.x4c_c00299{left:237.331500px;}
.x88_c00299{left:240.471146px;}
.x2e_c00299{left:243.002313px;}
.x44_c00299{left:245.563500px;}
.x65_c00299{left:247.320000px;}
.x3b_c00299{left:250.560000px;}
.x23_c00299{left:251.640000px;}
.x96_c00299{left:252.990000px;}
.x59_c00299{left:255.421500px;}
.x8d_c00299{left:263.706881px;}
.x9b_c00299{left:265.273500px;}
.x1b_c00299{left:268.380000px;}
.x2f_c00299{left:271.893731px;}
.x69_c00299{left:272.970000px;}
.x4d_c00299{left:275.131500px;}
.x5a_c00299{left:277.021500px;}
.x27_c00299{left:280.984500px;}
.x24_c00299{left:282.150000px;}
.xc_c00299{left:283.500000px;}
.x91_c00299{left:287.396213px;}
.x16_c00299{left:289.170000px;}
.x7f_c00299{left:291.244500px;}
.x12_c00299{left:292.950000px;}
.x9_c00299{left:296.460000px;}
.x9c_c00299{left:298.426500px;}
.x76_c00299{left:299.700000px;}
.x30_c00299{left:302.405222px;}
.x89_c00299{left:311.237139px;}
.x31_c00299{left:314.285799px;}
.x25_c00299{left:316.980000px;}
.xa7_c00299{left:320.320500px;}
.xd_c00299{left:323.190000px;}
.x77_c00299{left:324.810000px;}
.x6a_c00299{left:329.130000px;}
.x1c_c00299{left:333.990000px;}
.x5b_c00299{left:336.961500px;}
.x8a_c00299{left:338.510328px;}
.x4e_c00299{left:341.011500px;}
.x5f_c00299{left:342.360000px;}
.x80_c00299{left:344.719500px;}
.x45_c00299{left:347.395500px;}
.x13_c00299{left:351.810000px;}
.x3c_c00299{left:353.430000px;}
.x28_c00299{left:355.539000px;}
.x3_c00299{left:359.640000px;}
.x4f_c00299{left:361.801500px;}
.x32_c00299{left:370.717061px;}
.x46_c00299{left:375.208500px;}
.x14_c00299{left:380.160000px;}
.x18_c00299{left:381.510000px;}
.x29_c00299{left:385.200000px;}
.x3d_c00299{left:386.370000px;}
.x81_c00299{left:388.720500px;}
.x9d_c00299{left:391.198500px;}
.x78_c00299{left:392.310000px;}
.x33_c00299{left:396.908342px;}
.x1d_c00299{left:399.600000px;}
.x6f_c00299{left:401.490000px;}
.x2a_c00299{left:404.097000px;}
.x15_c00299{left:412.290000px;}
.x50_c00299{left:415.261500px;}
.x92_c00299{left:417.042993px;}
.x34_c00299{left:418.239392px;}
.x6b_c00299{left:419.310000px;}
.xa8_c00299{left:421.033500px;}
.x4_c00299{left:422.280000px;}
.x79_c00299{left:424.440000px;}
.x1e_c00299{left:427.410000px;}
.x51_c00299{left:430.381500px;}
.x9e_c00299{left:431.524500px;}
.x47_c00299{left:432.714000px;}
.x70_c00299{left:437.940000px;}
.x8b_c00299{left:445.164074px;}
.x9f_c00299{left:449.341500px;}
.x19_c00299{left:450.360000px;}
.x82_c00299{left:455.403000px;}
.x7a_c00299{left:457.110000px;}
.x3e_c00299{left:461.700000px;}
.xe_c00299{left:464.400000px;}
.x6c_c00299{left:467.640000px;}
.x2b_c00299{left:470.284500px;}
.x5c_c00299{left:471.421500px;}
.x8c_c00299{left:476.752794px;}
.x52_c00299{left:480.331500px;}
.x60_c00299{left:484.110000px;}
.x71_c00299{left:494.100000px;}
.x1f_c00299{left:497.880000px;}
.xa0_c00299{left:499.714500px;}
.xa_c00299{left:501.390000px;}
.x53_c00299{left:504.901500px;}
.xf_c00299{left:506.250000px;}
.x35_c00299{left:507.612270px;}
.x7b_c00299{left:509.760000px;}
.xa9_c00299{left:511.839000px;}
.x20_c00299{left:513.000000px;}
.x3f_c00299{left:517.320000px;}
.x61_c00299{left:518.670000px;}
.x93_c00299{left:523.150767px;}
.x72_c00299{left:525.420000px;}
.xa1_c00299{left:527.781000px;}
.x83_c00299{left:530.490000px;}
.xac_c00299{left:535.307553px;}
.x10_c00299{left:536.760000px;}
.x5d_c00299{left:538.111500px;}
.x21_c00299{left:539.460000px;}
.x48_c00299{left:543.687000px;}
.x40_c00299{left:547.560000px;}
.x5_c00299{left:550.260000px;}
.x7c_c00299{left:552.690000px;}
.x36_c00299{left:554.323059px;}
.x54_c00299{left:564.841500px;}
.xaa_c00299{left:567.599591px;}
.x49_c00299{left:569.877000px;}
.x6d_c00299{left:572.130000px;}
.x55_c00299{left:582.931500px;}
.x22_c00299{left:584.010000px;}
.xa2_c00299{left:585.727500px;}
.x4a_c00299{left:587.970000px;}
.x66_c00299{left:595.620000px;}
.x2c_c00299{left:599.317500px;}
.x6_c00299{left:600.480000px;}
.x62_c00299{left:606.150000px;}
.xa3_c00299{left:608.290500px;}
.x56_c00299{left:609.661500px;}
.x5e_c00299{left:612.631500px;}
.x67_c00299{left:615.870000px;}
.x37_c00299{left:617.504657px;}
.x73_c00299{left:619.380000px;}
.x41_c00299{left:622.350000px;}
.x7_c00299{left:627.750000px;}
.x98_c00299{left:640.980000px;}
.xa4_c00299{left:644.415000px;}
.x84_c00299{left:648.972000px;}
.x63_c00299{left:651.780000px;}
.x4b_c00299{left:659.641500px;}
.x85_c00299{left:669.069000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs11_c00299{font-size:41.066667pt;}
.fs10_c00299{font-size:55.066667pt;}
.fsc_c00299{font-size:56.001372pt;}
.fsb_c00299{font-size:60.666667pt;}
.fsd_c00299{font-size:60.668153pt;}
.fs2_c00299{font-size:61.600000pt;}
.fsf_c00299{font-size:61.601509pt;}
.fs9_c00299{font-size:62.533333pt;}
.fs8_c00299{font-size:62.534865pt;}
.fsa_c00299{font-size:63.466667pt;}
.fse_c00299{font-size:63.468222pt;}
.fs12_c00299{font-size:64.401578pt;}
.fs4_c00299{font-size:65.333333pt;}
.fs7_c00299{font-size:67.201646pt;}
.fs0_c00299{font-size:70.000000pt;}
.fs3_c00299{font-size:76.533333pt;}
.fs6_c00299{font-size:78.400000pt;}
.fs1_c00299{font-size:85.866667pt;}
.fs5_c00299{font-size:126.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y90_c00299{bottom:130.345524pt;}
.y8f_c00299{bottom:133.437023pt;}
.y8e_c00299{bottom:150.010161pt;}
.y8d_c00299{bottom:150.542721pt;}
.y8c_c00299{bottom:151.114127pt;}
.y8b_c00299{bottom:151.900664pt;}
.y8a_c00299{bottom:152.369121pt;}
.y89_c00299{bottom:152.956343pt;}
.y88_c00299{bottom:153.275485pt;}
.y87_c00299{bottom:153.774689pt;}
.y86_c00299{bottom:154.085332pt;}
.y85_c00299{bottom:155.065948pt;}
.y84_c00299{bottom:155.553129pt;}
.y83_c00299{bottom:156.686517pt;}
.y82_c00299{bottom:156.929731pt;}
.y81_c00299{bottom:157.681859pt;}
.y80_c00299{bottom:161.520000pt;}
.y7f_c00299{bottom:170.408000pt;}
.y7e_c00299{bottom:170.464000pt;}
.y7d_c00299{bottom:171.116000pt;}
.y7c_c00299{bottom:171.336000pt;}
.y7b_c00299{bottom:172.142667pt;}
.y7a_c00299{bottom:172.293333pt;}
.y79_c00299{bottom:173.038667pt;}
.y78_c00299{bottom:173.524000pt;}
.y77_c00299{bottom:174.077333pt;}
.y76_c00299{bottom:174.542667pt;}
.y75_c00299{bottom:174.960000pt;}
.y74_c00299{bottom:190.241333pt;}
.y73_c00299{bottom:190.626667pt;}
.y72_c00299{bottom:190.868000pt;}
.y71_c00299{bottom:191.486667pt;}
.y70_c00299{bottom:191.786667pt;}
.y6f_c00299{bottom:192.324000pt;}
.y6e_c00299{bottom:192.514667pt;}
.y6d_c00299{bottom:192.805333pt;}
.y6c_c00299{bottom:192.944000pt;}
.y6b_c00299{bottom:193.933333pt;}
.y6a_c00299{bottom:194.286667pt;}
.y69_c00299{bottom:194.530667pt;}
.y68_c00299{bottom:194.842667pt;}
.y67_c00299{bottom:195.334667pt;}
.y66_c00299{bottom:195.841333pt;}
.y65_c00299{bottom:202.062667pt;}
.y64_c00299{bottom:213.797333pt;}
.y63_c00299{bottom:231.782260pt;}
.y62_c00299{bottom:232.204523pt;}
.y61_c00299{bottom:232.622577pt;}
.y60_c00299{bottom:232.955920pt;}
.y5f_c00299{bottom:233.147429pt;}
.y5e_c00299{bottom:233.761537pt;}
.y5d_c00299{bottom:233.931475pt;}
.y5c_c00299{bottom:234.299471pt;}
.y5b_c00299{bottom:234.667233pt;}
.y5a_c00299{bottom:235.012892pt;}
.y59_c00299{bottom:235.243244pt;}
.y58_c00299{bottom:235.442983pt;}
.y57_c00299{bottom:235.918625pt;}
.y56_c00299{bottom:252.661459pt;}
.y55_c00299{bottom:252.937184pt;}
.y54_c00299{bottom:253.126847pt;}
.y53_c00299{bottom:253.482979pt;}
.y52_c00299{bottom:253.645957pt;}
.y51_c00299{bottom:254.131487pt;}
.y50_c00299{bottom:254.469185pt;}
.y4f_c00299{bottom:254.615345pt;}
.y4e_c00299{bottom:255.117973pt;}
.y4d_c00299{bottom:272.344175pt;}
.y4c_c00299{bottom:272.756543pt;}
.y4b_c00299{bottom:272.928500pt;}
.y4a_c00299{bottom:273.084748pt;}
.y49_c00299{bottom:273.260552pt;}
.y48_c00299{bottom:273.429103pt;}
.y47_c00299{bottom:273.562676pt;}
.y46_c00299{bottom:273.998055pt;}
.y45_c00299{bottom:274.143753pt;}
.y44_c00299{bottom:274.521405pt;}
.y43_c00299{bottom:274.793452pt;}
.y42_c00299{bottom:274.951613pt;}
.y41_c00299{bottom:275.041051pt;}
.y40_c00299{bottom:292.027563pt;}
.y3f_c00299{bottom:292.152611pt;}
.y3e_c00299{bottom:292.627911pt;}
.y3d_c00299{bottom:292.889832pt;}
.y3c_c00299{bottom:293.357040pt;}
.y3b_c00299{bottom:293.771953pt;}
.y3a_c00299{bottom:294.045737pt;}
.y39_c00299{bottom:294.240505pt;}
.y38_c00299{bottom:294.378471pt;}
.y37_c00299{bottom:294.470460pt;}
.y36_c00299{bottom:294.928036pt;}
.y35_c00299{bottom:295.095868pt;}
.y34_c00299{bottom:295.200000pt;}
.y33_c00299{bottom:313.568000pt;}
.y32_c00299{bottom:335.094667pt;}
.y31_c00299{bottom:354.804000pt;}
.y30_c00299{bottom:374.713333pt;}
.y2f_c00299{bottom:395.393333pt;}
.y2e_c00299{bottom:415.554667pt;}
.y2d_c00299{bottom:435.708000pt;}
.y2c_c00299{bottom:454.337333pt;}
.y2b_c00299{bottom:454.782667pt;}
.y2a_c00299{bottom:454.894667pt;}
.y29_c00299{bottom:455.057333pt;}
.y28_c00299{bottom:455.284000pt;}
.y27_c00299{bottom:455.748000pt;}
.y26_c00299{bottom:456.105333pt;}
.y25_c00299{bottom:456.278667pt;}
.y24_c00299{bottom:456.428000pt;}
.y23_c00299{bottom:456.912000pt;}
.y22_c00299{bottom:457.073333pt;}
.y21_c00299{bottom:457.440000pt;}
.y20_c00299{bottom:476.050667pt;}
.y1b_c00299{bottom:496.146393pt;}
.y1a_c00299{bottom:496.146687pt;}
.y1d_c00299{bottom:496.146936pt;}
.y1e_c00299{bottom:496.146972pt;}
.y1c_c00299{bottom:496.147007pt;}
.y19_c00299{bottom:496.147131pt;}
.y1f_c00299{bottom:496.147195pt;}
.y15_c00299{bottom:496.147468pt;}
.y18_c00299{bottom:496.147717pt;}
.y14_c00299{bottom:496.147912pt;}
.y16_c00299{bottom:496.147984pt;}
.y17_c00299{bottom:496.148224pt;}
.y13_c00299{bottom:515.742503pt;}
.y12_c00299{bottom:515.923989pt;}
.y11_c00299{bottom:516.498587pt;}
.y10_c00299{bottom:516.726861pt;}
.yf_c00299{bottom:517.138695pt;}
.ye_c00299{bottom:517.256276pt;}
.yd_c00299{bottom:517.440833pt;}
.yc_c00299{bottom:517.904728pt;}
.yb_c00299{bottom:518.307909pt;}
.ya_c00299{bottom:518.413609pt;}
.y9_c00299{bottom:518.641333pt;}
.y8_c00299{bottom:569.666667pt;}
.y7_c00299{bottom:592.066667pt;}
.y6_c00299{bottom:615.450667pt;}
.y5_c00299{bottom:654.960000pt;}
.y4_c00299{bottom:691.260000pt;}
.y3_c00299{bottom:732.565333pt;}
.y2_c00299{bottom:771.450667pt;}
.y1_c00299{bottom:831.120000pt;}
.h13_c00299{height:41.066667pt;}
.h12_c00299{height:55.066667pt;}
.he_c00299{height:56.001372pt;}
.hd_c00299{height:60.666667pt;}
.hf_c00299{height:60.668153pt;}
.h4_c00299{height:61.600000pt;}
.h11_c00299{height:61.601509pt;}
.hb_c00299{height:62.533333pt;}
.ha_c00299{height:62.534865pt;}
.hc_c00299{height:63.466667pt;}
.h10_c00299{height:63.468222pt;}
.h14_c00299{height:64.401578pt;}
.h6_c00299{height:65.333333pt;}
.h9_c00299{height:67.201646pt;}
.h2_c00299{height:70.000000pt;}
.h5_c00299{height:76.533333pt;}
.h8_c00299{height:78.400000pt;}
.h3_c00299{height:85.866667pt;}
.h7_c00299{height:126.000000pt;}
.h0_c00299{height:896.400000pt;}
.h1_c00299{height:896.666667pt;}
.w0_c00299{width:618.666667pt;}
.x0_c00299{left:0.000000pt;}
.xab_c00299{left:89.431031pt;}
.xa5_c00299{left:92.534667pt;}
.x8e_c00299{left:93.682707pt;}
.x97_c00299{left:95.760000pt;}
.x99_c00299{left:106.210667pt;}
.x94_c00299{left:108.720000pt;}
.x1_c00299{left:117.600000pt;}
.x86_c00299{left:127.135523pt;}
.x38_c00299{left:132.000000pt;}
.x57_c00299{left:132.961333pt;}
.xa6_c00299{left:134.285333pt;}
.x39_c00299{left:140.400000pt;}
.x74_c00299{left:141.840000pt;}
.x42_c00299{left:142.950667pt;}
.x8_c00299{left:144.240000pt;}
.x1a_c00299{left:148.800000pt;}
.x2_c00299{left:150.480000pt;}
.x7d_c00299{left:156.398667pt;}
.x11_c00299{left:158.640000pt;}
.x8f_c00299{left:161.211955pt;}
.x87_c00299{left:168.411812pt;}
.x95_c00299{left:171.120000pt;}
.x58_c00299{left:173.761333pt;}
.x17_c00299{left:176.400000pt;}
.x7e_c00299{left:180.374667pt;}
.x64_c00299{left:181.920000pt;}
.x2d_c00299{left:183.121775pt;}
.x90_c00299{left:184.214136pt;}
.x68_c00299{left:186.240000pt;}
.x9a_c00299{left:189.468000pt;}
.x26_c00299{left:192.166667pt;}
.x43_c00299{left:195.258667pt;}
.x75_c00299{left:197.040000pt;}
.xb_c00299{left:202.320000pt;}
.x6e_c00299{left:204.480000pt;}
.x3a_c00299{left:205.440000pt;}
.x4c_c00299{left:210.961333pt;}
.x88_c00299{left:213.752129pt;}
.x2e_c00299{left:216.002056pt;}
.x44_c00299{left:218.278667pt;}
.x65_c00299{left:219.840000pt;}
.x3b_c00299{left:222.720000pt;}
.x23_c00299{left:223.680000pt;}
.x96_c00299{left:224.880000pt;}
.x59_c00299{left:227.041333pt;}
.x8d_c00299{left:234.406116pt;}
.x9b_c00299{left:235.798667pt;}
.x1b_c00299{left:238.560000pt;}
.x2f_c00299{left:241.683316pt;}
.x69_c00299{left:242.640000pt;}
.x4d_c00299{left:244.561333pt;}
.x5a_c00299{left:246.241333pt;}
.x27_c00299{left:249.764000pt;}
.x24_c00299{left:250.800000pt;}
.xc_c00299{left:252.000000pt;}
.x91_c00299{left:255.463300pt;}
.x16_c00299{left:257.040000pt;}
.x7f_c00299{left:258.884000pt;}
.x12_c00299{left:260.400000pt;}
.x9_c00299{left:263.520000pt;}
.x9c_c00299{left:265.268000pt;}
.x76_c00299{left:266.400000pt;}
.x30_c00299{left:268.804641pt;}
.x89_c00299{left:276.655235pt;}
.x31_c00299{left:279.365155pt;}
.x25_c00299{left:281.760000pt;}
.xa7_c00299{left:284.729333pt;}
.xd_c00299{left:287.280000pt;}
.x77_c00299{left:288.720000pt;}
.x6a_c00299{left:292.560000pt;}
.x1c_c00299{left:296.880000pt;}
.x5b_c00299{left:299.521333pt;}
.x8a_c00299{left:300.898069pt;}
.x4e_c00299{left:303.121333pt;}
.x5f_c00299{left:304.320000pt;}
.x80_c00299{left:306.417333pt;}
.x45_c00299{left:308.796000pt;}
.x13_c00299{left:312.720000pt;}
.x3c_c00299{left:314.160000pt;}
.x28_c00299{left:316.034667pt;}
.x3_c00299{left:319.680000pt;}
.x4f_c00299{left:321.601333pt;}
.x32_c00299{left:329.526276pt;}
.x46_c00299{left:333.518667pt;}
.x14_c00299{left:337.920000pt;}
.x18_c00299{left:339.120000pt;}
.x29_c00299{left:342.400000pt;}
.x3d_c00299{left:343.440000pt;}
.x81_c00299{left:345.529333pt;}
.x9d_c00299{left:347.732000pt;}
.x78_c00299{left:348.720000pt;}
.x33_c00299{left:352.807415pt;}
.x1d_c00299{left:355.200000pt;}
.x6f_c00299{left:356.880000pt;}
.x2a_c00299{left:359.197333pt;}
.x15_c00299{left:366.480000pt;}
.x50_c00299{left:369.121333pt;}
.x92_c00299{left:370.704883pt;}
.x34_c00299{left:371.768348pt;}
.x6b_c00299{left:372.720000pt;}
.xa8_c00299{left:374.252000pt;}
.x4_c00299{left:375.360000pt;}
.x79_c00299{left:377.280000pt;}
.x1e_c00299{left:379.920000pt;}
.x51_c00299{left:382.561333pt;}
.x9e_c00299{left:383.577333pt;}
.x47_c00299{left:384.634667pt;}
.x70_c00299{left:389.280000pt;}
.x8b_c00299{left:395.701399pt;}
.x9f_c00299{left:399.414667pt;}
.x19_c00299{left:400.320000pt;}
.x82_c00299{left:404.802667pt;}
.x7a_c00299{left:406.320000pt;}
.x3e_c00299{left:410.400000pt;}
.xe_c00299{left:412.800000pt;}
.x6c_c00299{left:415.680000pt;}
.x2b_c00299{left:418.030667pt;}
.x5c_c00299{left:419.041333pt;}
.x8c_c00299{left:423.780261pt;}
.x52_c00299{left:426.961333pt;}
.x60_c00299{left:430.320000pt;}
.x71_c00299{left:439.200000pt;}
.x1f_c00299{left:442.560000pt;}
.xa0_c00299{left:444.190667pt;}
.xa_c00299{left:445.680000pt;}
.x53_c00299{left:448.801333pt;}
.xf_c00299{left:450.000000pt;}
.x35_c00299{left:451.210907pt;}
.x7b_c00299{left:453.120000pt;}
.xa9_c00299{left:454.968000pt;}
.x20_c00299{left:456.000000pt;}
.x3f_c00299{left:459.840000pt;}
.x61_c00299{left:461.040000pt;}
.x93_c00299{left:465.022904pt;}
.x72_c00299{left:467.040000pt;}
.xa1_c00299{left:469.138667pt;}
.x83_c00299{left:471.546667pt;}
.xac_c00299{left:475.828936pt;}
.x10_c00299{left:477.120000pt;}
.x5d_c00299{left:478.321333pt;}
.x21_c00299{left:479.520000pt;}
.x48_c00299{left:483.277333pt;}
.x40_c00299{left:486.720000pt;}
.x5_c00299{left:489.120000pt;}
.x7c_c00299{left:491.280000pt;}
.x36_c00299{left:492.731608pt;}
.x54_c00299{left:502.081333pt;}
.xaa_c00299{left:504.532969pt;}
.x49_c00299{left:506.557333pt;}
.x6d_c00299{left:508.560000pt;}
.x55_c00299{left:518.161333pt;}
.x22_c00299{left:519.120000pt;}
.xa2_c00299{left:520.646667pt;}
.x4a_c00299{left:522.640000pt;}
.x66_c00299{left:529.440000pt;}
.x2c_c00299{left:532.726667pt;}
.x6_c00299{left:533.760000pt;}
.x62_c00299{left:538.800000pt;}
.xa3_c00299{left:540.702667pt;}
.x56_c00299{left:541.921333pt;}
.x5e_c00299{left:544.561333pt;}
.x67_c00299{left:547.440000pt;}
.x37_c00299{left:548.893028pt;}
.x73_c00299{left:550.560000pt;}
.x41_c00299{left:553.200000pt;}
.x7_c00299{left:558.000000pt;}
.x98_c00299{left:569.760000pt;}
.xa4_c00299{left:572.813333pt;}
.x84_c00299{left:576.864000pt;}
.x63_c00299{left:579.360000pt;}
.x4b_c00299{left:586.348000pt;}
.x85_c00299{left:594.728000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m51_c00300{transform:matrix(0.011019,-0.000110,0.002500,0.249988,0,0);-ms-transform:matrix(0.011019,-0.000110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011019,-0.000110,0.002500,0.249988,0,0);}
.m16f_c00300{transform:matrix(0.011959,-0.000155,0.003250,0.249979,0,0);-ms-transform:matrix(0.011959,-0.000155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.011959,-0.000155,0.003250,0.249979,0,0);}
.m11a_c00300{transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);-ms-transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);}
.m11_c00300{transform:matrix(0.019189,-0.000192,0.002500,0.249988,0,0);-ms-transform:matrix(0.019189,-0.000192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.019189,-0.000192,0.002500,0.249988,0,0);}
.me4_c00300{transform:matrix(0.020167,-0.000323,0.003999,0.249968,0,0);-ms-transform:matrix(0.020167,-0.000323,0.003999,0.249968,0,0);-webkit-transform:matrix(0.020167,-0.000323,0.003999,0.249968,0,0);}
.mb6_c00300{transform:matrix(0.023087,-0.000369,0.003999,0.249968,0,0);-ms-transform:matrix(0.023087,-0.000369,0.003999,0.249968,0,0);-webkit-transform:matrix(0.023087,-0.000369,0.003999,0.249968,0,0);}
.m85_c00300{transform:matrix(0.109871,-0.001758,0.003999,0.249968,0,0);-ms-transform:matrix(0.109871,-0.001758,0.003999,0.249968,0,0);-webkit-transform:matrix(0.109871,-0.001758,0.003999,0.249968,0,0);}
.m171_c00300{transform:matrix(0.117695,-0.001530,0.003250,0.249979,0,0);-ms-transform:matrix(0.117695,-0.001530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.117695,-0.001530,0.003250,0.249979,0,0);}
.m4_c00300{transform:matrix(0.117750,-0.001060,0.002250,0.249990,0,0);-ms-transform:matrix(0.117750,-0.001060,0.002250,0.249990,0,0);-webkit-transform:matrix(0.117750,-0.001060,0.002250,0.249990,0,0);}
.mc_c00300{transform:matrix(0.119479,-0.001195,0.002500,0.249988,0,0);-ms-transform:matrix(0.119479,-0.001195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.119479,-0.001195,0.002500,0.249988,0,0);}
.m68_c00300{transform:matrix(0.126079,-0.001261,0.002500,0.249988,0,0);-ms-transform:matrix(0.126079,-0.001261,0.002500,0.249988,0,0);-webkit-transform:matrix(0.126079,-0.001261,0.002500,0.249988,0,0);}
.md_c00300{transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);-ms-transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);}
.m149_c00300{transform:matrix(0.143495,-0.001722,0.003000,0.249982,0,0);-ms-transform:matrix(0.143495,-0.001722,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143495,-0.001722,0.003000,0.249982,0,0);}
.m101_c00300{transform:matrix(0.146046,-0.002337,0.003999,0.249968,0,0);-ms-transform:matrix(0.146046,-0.002337,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146046,-0.002337,0.003999,0.249968,0,0);}
.m92_c00300{transform:matrix(0.147056,-0.002353,0.003999,0.249968,0,0);-ms-transform:matrix(0.147056,-0.002353,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147056,-0.002353,0.003999,0.249968,0,0);}
.m60_c00300{transform:matrix(0.148238,-0.001482,0.002500,0.249988,0,0);-ms-transform:matrix(0.148238,-0.001482,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148238,-0.001482,0.002500,0.249988,0,0);}
.me1_c00300{transform:matrix(0.148326,-0.002373,0.003999,0.249968,0,0);-ms-transform:matrix(0.148326,-0.002373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148326,-0.002373,0.003999,0.249968,0,0);}
.mf9_c00300{transform:matrix(0.148336,-0.002373,0.003999,0.249968,0,0);-ms-transform:matrix(0.148336,-0.002373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148336,-0.002373,0.003999,0.249968,0,0);}
.m83_c00300{transform:matrix(0.149506,-0.002392,0.003999,0.249968,0,0);-ms-transform:matrix(0.149506,-0.002392,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149506,-0.002392,0.003999,0.249968,0,0);}
.m47_c00300{transform:matrix(0.149853,-0.001499,0.002500,0.249988,0,0);-ms-transform:matrix(0.149853,-0.001499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149853,-0.001499,0.002500,0.249988,0,0);}
.m10d_c00300{transform:matrix(0.150476,-0.002408,0.003999,0.249968,0,0);-ms-transform:matrix(0.150476,-0.002408,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150476,-0.002408,0.003999,0.249968,0,0);}
.m128_c00300{transform:matrix(0.150584,-0.001807,0.003000,0.249982,0,0);-ms-transform:matrix(0.150584,-0.001807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150584,-0.001807,0.003000,0.249982,0,0);}
.m1d_c00300{transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-ms-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);}
.m10c_c00300{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);}
.m11c_c00300{transform:matrix(0.153439,-0.001841,0.003000,0.249982,0,0);-ms-transform:matrix(0.153439,-0.001841,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153439,-0.001841,0.003000,0.249982,0,0);}
.m70_c00300{transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);-ms-transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);}
.mab_c00300{transform:matrix(0.153770,-0.002460,0.003999,0.249968,0,0);-ms-transform:matrix(0.153770,-0.002460,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153770,-0.002460,0.003999,0.249968,0,0);}
.m105_c00300{transform:matrix(0.154170,-0.002467,0.003999,0.249968,0,0);-ms-transform:matrix(0.154170,-0.002467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154170,-0.002467,0.003999,0.249968,0,0);}
.m3_c00300{transform:matrix(0.154474,-0.001390,0.002250,0.249990,0,0);-ms-transform:matrix(0.154474,-0.001390,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154474,-0.001390,0.002250,0.249990,0,0);}
.m2e_c00300{transform:matrix(0.154542,-0.001545,0.002500,0.249988,0,0);-ms-transform:matrix(0.154542,-0.001545,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154542,-0.001545,0.002500,0.249988,0,0);}
.m8_c00300{transform:matrix(0.156192,-0.001562,0.002500,0.249988,0,0);-ms-transform:matrix(0.156192,-0.001562,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156192,-0.001562,0.002500,0.249988,0,0);}
.m15_c00300{transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);-ms-transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);}
.m148_c00300{transform:matrix(0.157024,-0.001884,0.003000,0.249982,0,0);-ms-transform:matrix(0.157024,-0.001884,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157024,-0.001884,0.003000,0.249982,0,0);}
.m14d_c00300{transform:matrix(0.157334,-0.001888,0.003000,0.249982,0,0);-ms-transform:matrix(0.157334,-0.001888,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157334,-0.001888,0.003000,0.249982,0,0);}
.m33_c00300{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);}
.m146_c00300{transform:matrix(0.157919,-0.001895,0.003000,0.249982,0,0);-ms-transform:matrix(0.157919,-0.001895,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157919,-0.001895,0.003000,0.249982,0,0);}
.ma8_c00300{transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);-ms-transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);}
.mc7_c00300{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);}
.mef_c00300{transform:matrix(0.158345,-0.002534,0.003999,0.249968,0,0);-ms-transform:matrix(0.158345,-0.002534,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158345,-0.002534,0.003999,0.249968,0,0);}
.m62_c00300{transform:matrix(0.158382,-0.001584,0.002500,0.249988,0,0);-ms-transform:matrix(0.158382,-0.001584,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158382,-0.001584,0.002500,0.249988,0,0);}
.md7_c00300{transform:matrix(0.159125,-0.002546,0.003999,0.249968,0,0);-ms-transform:matrix(0.159125,-0.002546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159125,-0.002546,0.003999,0.249968,0,0);}
.md1_c00300{transform:matrix(0.159565,-0.002553,0.003999,0.249968,0,0);-ms-transform:matrix(0.159565,-0.002553,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159565,-0.002553,0.003999,0.249968,0,0);}
.m102_c00300{transform:matrix(0.159845,-0.002558,0.003999,0.249968,0,0);-ms-transform:matrix(0.159845,-0.002558,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159845,-0.002558,0.003999,0.249968,0,0);}
.mf3_c00300{transform:matrix(0.159850,-0.002558,0.003999,0.249968,0,0);-ms-transform:matrix(0.159850,-0.002558,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159850,-0.002558,0.003999,0.249968,0,0);}
.m14b_c00300{transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);}
.m98_c00300{transform:matrix(0.160239,-0.002564,0.003999,0.249968,0,0);-ms-transform:matrix(0.160239,-0.002564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160239,-0.002564,0.003999,0.249968,0,0);}
.me0_c00300{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);}
.m12d_c00300{transform:matrix(0.160368,-0.001924,0.003000,0.249982,0,0);-ms-transform:matrix(0.160368,-0.001924,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160368,-0.001924,0.003000,0.249982,0,0);}
.mc4_c00300{transform:matrix(0.160539,-0.002569,0.003999,0.249968,0,0);-ms-transform:matrix(0.160539,-0.002569,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160539,-0.002569,0.003999,0.249968,0,0);}
.m161_c00300{transform:matrix(0.160736,-0.002090,0.003250,0.249979,0,0);-ms-transform:matrix(0.160736,-0.002090,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160736,-0.002090,0.003250,0.249979,0,0);}
.m158_c00300{transform:matrix(0.161056,-0.002094,0.003250,0.249979,0,0);-ms-transform:matrix(0.161056,-0.002094,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161056,-0.002094,0.003250,0.249979,0,0);}
.m64_c00300{transform:matrix(0.161142,-0.001611,0.002500,0.249988,0,0);-ms-transform:matrix(0.161142,-0.001611,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161142,-0.001611,0.002500,0.249988,0,0);}
.m65_c00300{transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);-ms-transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162147,-0.001621,0.002500,0.249988,0,0);}
.m61_c00300{transform:matrix(0.162272,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162272,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162272,-0.001623,0.002500,0.249988,0,0);}
.ma9_c00300{transform:matrix(0.163089,-0.002609,0.003999,0.249968,0,0);-ms-transform:matrix(0.163089,-0.002609,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163089,-0.002609,0.003999,0.249968,0,0);}
.m2f_c00300{transform:matrix(0.164772,-0.001648,0.002500,0.249988,0,0);-ms-transform:matrix(0.164772,-0.001648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164772,-0.001648,0.002500,0.249988,0,0);}
.m9b_c00300{transform:matrix(0.165169,-0.002643,0.003999,0.249968,0,0);-ms-transform:matrix(0.165169,-0.002643,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165169,-0.002643,0.003999,0.249968,0,0);}
.m96_c00300{transform:matrix(0.165269,-0.002644,0.003999,0.249968,0,0);-ms-transform:matrix(0.165269,-0.002644,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165269,-0.002644,0.003999,0.249968,0,0);}
.m88_c00300{transform:matrix(0.165284,-0.002645,0.003999,0.249968,0,0);-ms-transform:matrix(0.165284,-0.002645,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165284,-0.002645,0.003999,0.249968,0,0);}
.mca_c00300{transform:matrix(0.165644,-0.002650,0.003999,0.249968,0,0);-ms-transform:matrix(0.165644,-0.002650,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165644,-0.002650,0.003999,0.249968,0,0);}
.m99_c00300{transform:matrix(0.165774,-0.002652,0.003999,0.249968,0,0);-ms-transform:matrix(0.165774,-0.002652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165774,-0.002652,0.003999,0.249968,0,0);}
.m122_c00300{transform:matrix(0.166308,-0.001996,0.003000,0.249982,0,0);-ms-transform:matrix(0.166308,-0.001996,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166308,-0.001996,0.003000,0.249982,0,0);}
.m93_c00300{transform:matrix(0.166709,-0.002667,0.003999,0.249968,0,0);-ms-transform:matrix(0.166709,-0.002667,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166709,-0.002667,0.003999,0.249968,0,0);}
.m16e_c00300{transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);-ms-transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);}
.mcf_c00300{transform:matrix(0.166974,-0.002672,0.003999,0.249968,0,0);-ms-transform:matrix(0.166974,-0.002672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166974,-0.002672,0.003999,0.249968,0,0);}
.mbb_c00300{transform:matrix(0.167004,-0.002672,0.003999,0.249968,0,0);-ms-transform:matrix(0.167004,-0.002672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167004,-0.002672,0.003999,0.249968,0,0);}
.mf6_c00300{transform:matrix(0.167234,-0.002676,0.003999,0.249968,0,0);-ms-transform:matrix(0.167234,-0.002676,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167234,-0.002676,0.003999,0.249968,0,0);}
.m82_c00300{transform:matrix(0.167284,-0.002677,0.003999,0.249968,0,0);-ms-transform:matrix(0.167284,-0.002677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167284,-0.002677,0.003999,0.249968,0,0);}
.mb0_c00300{transform:matrix(0.167344,-0.002677,0.003999,0.249968,0,0);-ms-transform:matrix(0.167344,-0.002677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167344,-0.002677,0.003999,0.249968,0,0);}
.mf7_c00300{transform:matrix(0.167504,-0.002680,0.003999,0.249968,0,0);-ms-transform:matrix(0.167504,-0.002680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167504,-0.002680,0.003999,0.249968,0,0);}
.m5c_c00300{transform:matrix(0.167577,-0.001676,0.002500,0.249988,0,0);-ms-transform:matrix(0.167577,-0.001676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167577,-0.001676,0.002500,0.249988,0,0);}
.m8c_c00300{transform:matrix(0.167739,-0.002684,0.003999,0.249968,0,0);-ms-transform:matrix(0.167739,-0.002684,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167739,-0.002684,0.003999,0.249968,0,0);}
.ma6_c00300{transform:matrix(0.167769,-0.002684,0.003999,0.249968,0,0);-ms-transform:matrix(0.167769,-0.002684,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167769,-0.002684,0.003999,0.249968,0,0);}
.m81_c00300{transform:matrix(0.167829,-0.002685,0.003999,0.249968,0,0);-ms-transform:matrix(0.167829,-0.002685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167829,-0.002685,0.003999,0.249968,0,0);}
.m30_c00300{transform:matrix(0.167947,-0.001679,0.002500,0.249988,0,0);-ms-transform:matrix(0.167947,-0.001679,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167947,-0.001679,0.002500,0.249988,0,0);}
.m5a_c00300{transform:matrix(0.168012,-0.001680,0.002500,0.249988,0,0);-ms-transform:matrix(0.168012,-0.001680,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168012,-0.001680,0.002500,0.249988,0,0);}
.m36_c00300{transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-ms-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);}
.m129_c00300{transform:matrix(0.168438,-0.002021,0.003000,0.249982,0,0);-ms-transform:matrix(0.168438,-0.002021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168438,-0.002021,0.003000,0.249982,0,0);}
.m6a_c00300{transform:matrix(0.168557,-0.001686,0.002500,0.249988,0,0);-ms-transform:matrix(0.168557,-0.001686,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168557,-0.001686,0.002500,0.249988,0,0);}
.m147_c00300{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);}
.me8_c00300{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);}
.m6d_c00300{transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);}
.m166_c00300{transform:matrix(0.169531,-0.002204,0.003250,0.249979,0,0);-ms-transform:matrix(0.169531,-0.002204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169531,-0.002204,0.003250,0.249979,0,0);}
.md0_c00300{transform:matrix(0.170048,-0.002721,0.003999,0.249968,0,0);-ms-transform:matrix(0.170048,-0.002721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170048,-0.002721,0.003999,0.249968,0,0);}
.m3d_c00300{transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170521,-0.001705,0.002500,0.249988,0,0);}
.m5b_c00300{transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-ms-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);}
.m9d_c00300{transform:matrix(0.171118,-0.002738,0.003999,0.249968,0,0);-ms-transform:matrix(0.171118,-0.002738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171118,-0.002738,0.003999,0.249968,0,0);}
.ma1_c00300{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);}
.m4b_c00300{transform:matrix(0.171406,-0.001714,0.002500,0.249988,0,0);-ms-transform:matrix(0.171406,-0.001714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171406,-0.001714,0.002500,0.249988,0,0);}
.m130_c00300{transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);-ms-transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171548,-0.002059,0.003000,0.249982,0,0);}
.m16_c00300{transform:matrix(0.171751,-0.001718,0.002500,0.249988,0,0);-ms-transform:matrix(0.171751,-0.001718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171751,-0.001718,0.002500,0.249988,0,0);}
.mcc_c00300{transform:matrix(0.171803,-0.002749,0.003999,0.249968,0,0);-ms-transform:matrix(0.171803,-0.002749,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171803,-0.002749,0.003999,0.249968,0,0);}
.m3a_c00300{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);}
.mae_c00300{transform:matrix(0.172163,-0.002755,0.003999,0.249968,0,0);-ms-transform:matrix(0.172163,-0.002755,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172163,-0.002755,0.003999,0.249968,0,0);}
.mdb_c00300{transform:matrix(0.172398,-0.002758,0.003999,0.249968,0,0);-ms-transform:matrix(0.172398,-0.002758,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172398,-0.002758,0.003999,0.249968,0,0);}
.m69_c00300{transform:matrix(0.172491,-0.001725,0.002500,0.249988,0,0);-ms-transform:matrix(0.172491,-0.001725,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172491,-0.001725,0.002500,0.249988,0,0);}
.m7f_c00300{transform:matrix(0.173033,-0.002769,0.003999,0.249968,0,0);-ms-transform:matrix(0.173033,-0.002769,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173033,-0.002769,0.003999,0.249968,0,0);}
.mc1_c00300{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);}
.m116_c00300{transform:matrix(0.173208,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173208,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173208,-0.002078,0.003000,0.249982,0,0);}
.m108_c00300{transform:matrix(0.173303,-0.002773,0.003999,0.249968,0,0);-ms-transform:matrix(0.173303,-0.002773,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173303,-0.002773,0.003999,0.249968,0,0);}
.m8b_c00300{transform:matrix(0.173463,-0.002775,0.003999,0.249968,0,0);-ms-transform:matrix(0.173463,-0.002775,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173463,-0.002775,0.003999,0.249968,0,0);}
.m17_c00300{transform:matrix(0.173811,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173811,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173811,-0.001738,0.002500,0.249988,0,0);}
.mda_c00300{transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);-ms-transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);}
.mb4_c00300{transform:matrix(0.173973,-0.002784,0.003999,0.249968,0,0);-ms-transform:matrix(0.173973,-0.002784,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173973,-0.002784,0.003999,0.249968,0,0);}
.ma7_c00300{transform:matrix(0.174423,-0.002791,0.003999,0.249968,0,0);-ms-transform:matrix(0.174423,-0.002791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174423,-0.002791,0.003999,0.249968,0,0);}
.mac_c00300{transform:matrix(0.174663,-0.002795,0.003999,0.249968,0,0);-ms-transform:matrix(0.174663,-0.002795,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174663,-0.002795,0.003999,0.249968,0,0);}
.me9_c00300{transform:matrix(0.174798,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174798,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174798,-0.002797,0.003999,0.249968,0,0);}
.md5_c00300{transform:matrix(0.174828,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174828,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174828,-0.002797,0.003999,0.249968,0,0);}
.m5d_c00300{transform:matrix(0.175016,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.175016,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175016,-0.001750,0.002500,0.249988,0,0);}
.m115_c00300{transform:matrix(0.175082,-0.002101,0.003000,0.249982,0,0);-ms-transform:matrix(0.175082,-0.002101,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175082,-0.002101,0.003000,0.249982,0,0);}
.m39_c00300{transform:matrix(0.175116,-0.001751,0.002500,0.249988,0,0);-ms-transform:matrix(0.175116,-0.001751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175116,-0.001751,0.002500,0.249988,0,0);}
.m155_c00300{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);}
.m13_c00300{transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);-ms-transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175311,-0.001753,0.002500,0.249988,0,0);}
.m10b_c00300{transform:matrix(0.175383,-0.002806,0.003999,0.249968,0,0);-ms-transform:matrix(0.175383,-0.002806,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175383,-0.002806,0.003999,0.249968,0,0);}
.ma2_c00300{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);}
.md2_c00300{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);}
.m8e_c00300{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);}
.mb3_c00300{transform:matrix(0.175932,-0.002815,0.003999,0.249968,0,0);-ms-transform:matrix(0.175932,-0.002815,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175932,-0.002815,0.003999,0.249968,0,0);}
.mfd_c00300{transform:matrix(0.176462,-0.002823,0.003999,0.249968,0,0);-ms-transform:matrix(0.176462,-0.002823,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176462,-0.002823,0.003999,0.249968,0,0);}
.ma0_c00300{transform:matrix(0.176642,-0.002826,0.003999,0.249968,0,0);-ms-transform:matrix(0.176642,-0.002826,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176642,-0.002826,0.003999,0.249968,0,0);}
.m145_c00300{transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);-ms-transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);}
.m131_c00300{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);}
.m107_c00300{transform:matrix(0.177482,-0.002840,0.003999,0.249968,0,0);-ms-transform:matrix(0.177482,-0.002840,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177482,-0.002840,0.003999,0.249968,0,0);}
.m11e_c00300{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);}
.m114_c00300{transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);}
.md9_c00300{transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);-ms-transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);}
.me3_c00300{transform:matrix(0.177977,-0.002848,0.003999,0.249968,0,0);-ms-transform:matrix(0.177977,-0.002848,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177977,-0.002848,0.003999,0.249968,0,0);}
.m19_c00300{transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178386,-0.001784,0.002500,0.249988,0,0);}
.mec_c00300{transform:matrix(0.179047,-0.002865,0.003999,0.249968,0,0);-ms-transform:matrix(0.179047,-0.002865,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179047,-0.002865,0.003999,0.249968,0,0);}
.m9a_c00300{transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);-ms-transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);}
.m25_c00300{transform:matrix(0.179301,-0.001793,0.002500,0.249988,0,0);-ms-transform:matrix(0.179301,-0.001793,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179301,-0.001793,0.002500,0.249988,0,0);}
.mad_c00300{transform:matrix(0.179422,-0.002871,0.003999,0.249968,0,0);-ms-transform:matrix(0.179422,-0.002871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179422,-0.002871,0.003999,0.249968,0,0);}
.ma5_c00300{transform:matrix(0.179482,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179482,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179482,-0.002872,0.003999,0.249968,0,0);}
.m111_c00300{transform:matrix(0.179787,-0.002157,0.003000,0.249982,0,0);-ms-transform:matrix(0.179787,-0.002157,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179787,-0.002157,0.003000,0.249982,0,0);}
.m142_c00300{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);}
.m14_c00300{transform:matrix(0.180786,-0.001808,0.002500,0.249988,0,0);-ms-transform:matrix(0.180786,-0.001808,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180786,-0.001808,0.002500,0.249988,0,0);}
.m84_c00300{transform:matrix(0.180912,-0.002895,0.003999,0.249968,0,0);-ms-transform:matrix(0.180912,-0.002895,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180912,-0.002895,0.003999,0.249968,0,0);}
.mdc_c00300{transform:matrix(0.181517,-0.002904,0.003999,0.249968,0,0);-ms-transform:matrix(0.181517,-0.002904,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181517,-0.002904,0.003999,0.249968,0,0);}
.mba_c00300{transform:matrix(0.181702,-0.002907,0.003999,0.249968,0,0);-ms-transform:matrix(0.181702,-0.002907,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181702,-0.002907,0.003999,0.249968,0,0);}
.m159_c00300{transform:matrix(0.181870,-0.002364,0.003250,0.249979,0,0);-ms-transform:matrix(0.181870,-0.002364,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181870,-0.002364,0.003250,0.249979,0,0);}
.m123_c00300{transform:matrix(0.182117,-0.002185,0.003000,0.249982,0,0);-ms-transform:matrix(0.182117,-0.002185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182117,-0.002185,0.003000,0.249982,0,0);}
.m132_c00300{transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);-ms-transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);}
.m4a_c00300{transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);}
.m44_c00300{transform:matrix(0.182486,-0.001825,0.002500,0.249988,0,0);-ms-transform:matrix(0.182486,-0.001825,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182486,-0.001825,0.002500,0.249988,0,0);}
.m87_c00300{transform:matrix(0.183062,-0.002929,0.003999,0.249968,0,0);-ms-transform:matrix(0.183062,-0.002929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183062,-0.002929,0.003999,0.249968,0,0);}
.m1a_c00300{transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183071,-0.001831,0.002500,0.249988,0,0);}
.m55_c00300{transform:matrix(0.183086,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183086,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183086,-0.001831,0.002500,0.249988,0,0);}
.m168_c00300{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);}
.m89_c00300{transform:matrix(0.183312,-0.002933,0.003999,0.249968,0,0);-ms-transform:matrix(0.183312,-0.002933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183312,-0.002933,0.003999,0.249968,0,0);}
.m141_c00300{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);}
.m126_c00300{transform:matrix(0.183547,-0.002203,0.003000,0.249982,0,0);-ms-transform:matrix(0.183547,-0.002203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183547,-0.002203,0.003000,0.249982,0,0);}
.m71_c00300{transform:matrix(0.183806,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183806,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183806,-0.001838,0.002500,0.249988,0,0);}
.m75_c00300{transform:matrix(0.183901,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183901,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183901,-0.001839,0.002500,0.249988,0,0);}
.m46_c00300{transform:matrix(0.184181,-0.001842,0.002500,0.249988,0,0);-ms-transform:matrix(0.184181,-0.001842,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184181,-0.001842,0.002500,0.249988,0,0);}
.mb2_c00300{transform:matrix(0.184341,-0.002949,0.003999,0.249968,0,0);-ms-transform:matrix(0.184341,-0.002949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184341,-0.002949,0.003999,0.249968,0,0);}
.m15e_c00300{transform:matrix(0.185409,-0.002410,0.003250,0.249979,0,0);-ms-transform:matrix(0.185409,-0.002410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185409,-0.002410,0.003250,0.249979,0,0);}
.m10f_c00300{transform:matrix(0.185442,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185442,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185442,-0.002225,0.003000,0.249982,0,0);}
.m38_c00300{transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);}
.m9c_c00300{transform:matrix(0.185506,-0.002968,0.003999,0.249968,0,0);-ms-transform:matrix(0.185506,-0.002968,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185506,-0.002968,0.003999,0.249968,0,0);}
.m121_c00300{transform:matrix(0.185597,-0.002227,0.003000,0.249982,0,0);-ms-transform:matrix(0.185597,-0.002227,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185597,-0.002227,0.003000,0.249982,0,0);}
.md6_c00300{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);}
.m6e_c00300{transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);-ms-transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185796,-0.001858,0.002500,0.249988,0,0);}
.m104_c00300{transform:matrix(0.185921,-0.002975,0.003999,0.249968,0,0);-ms-transform:matrix(0.185921,-0.002975,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185921,-0.002975,0.003999,0.249968,0,0);}
.m100_c00300{transform:matrix(0.186251,-0.002980,0.003999,0.249968,0,0);-ms-transform:matrix(0.186251,-0.002980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186251,-0.002980,0.003999,0.249968,0,0);}
.m12c_c00300{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);}
.mfb_c00300{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);}
.m15d_c00300{transform:matrix(0.186824,-0.002429,0.003250,0.249979,0,0);-ms-transform:matrix(0.186824,-0.002429,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186824,-0.002429,0.003250,0.249979,0,0);}
.m140_c00300{transform:matrix(0.187087,-0.002245,0.003000,0.249982,0,0);-ms-transform:matrix(0.187087,-0.002245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187087,-0.002245,0.003000,0.249982,0,0);}
.m7_c00300{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);}
.m66_c00300{transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);}
.mff_c00300{transform:matrix(0.187436,-0.002999,0.003999,0.249968,0,0);-ms-transform:matrix(0.187436,-0.002999,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187436,-0.002999,0.003999,0.249968,0,0);}
.mf0_c00300{transform:matrix(0.187561,-0.003001,0.003999,0.249968,0,0);-ms-transform:matrix(0.187561,-0.003001,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187561,-0.003001,0.003999,0.249968,0,0);}
.m12e_c00300{transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);-ms-transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187576,-0.002251,0.003000,0.249982,0,0);}
.m125_c00300{transform:matrix(0.188456,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188456,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188456,-0.002261,0.003000,0.249982,0,0);}
.m28_c00300{transform:matrix(0.188506,-0.001885,0.002500,0.249988,0,0);-ms-transform:matrix(0.188506,-0.001885,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188506,-0.001885,0.002500,0.249988,0,0);}
.mcb_c00300{transform:matrix(0.188626,-0.003018,0.003999,0.249968,0,0);-ms-transform:matrix(0.188626,-0.003018,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188626,-0.003018,0.003999,0.249968,0,0);}
.maf_c00300{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);}
.m45_c00300{transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189251,-0.001893,0.002500,0.249988,0,0);}
.m109_c00300{transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);-ms-transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);}
.m6b_c00300{transform:matrix(0.189506,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189506,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189506,-0.001895,0.002500,0.249988,0,0);}
.m15f_c00300{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);}
.m58_c00300{transform:matrix(0.189746,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189746,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189746,-0.001897,0.002500,0.249988,0,0);}
.m34_c00300{transform:matrix(0.190040,-0.001900,0.002500,0.249988,0,0);-ms-transform:matrix(0.190040,-0.001900,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190040,-0.001900,0.002500,0.249988,0,0);}
.m113_c00300{transform:matrix(0.190166,-0.002282,0.003000,0.249982,0,0);-ms-transform:matrix(0.190166,-0.002282,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190166,-0.002282,0.003000,0.249982,0,0);}
.m79_c00300{transform:matrix(0.190216,-0.003043,0.003999,0.249968,0,0);-ms-transform:matrix(0.190216,-0.003043,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190216,-0.003043,0.003999,0.249968,0,0);}
.m15c_c00300{transform:matrix(0.190284,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190284,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190284,-0.002474,0.003250,0.249979,0,0);}
.m63_c00300{transform:matrix(0.190470,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190470,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190470,-0.001905,0.002500,0.249988,0,0);}
.mf8_c00300{transform:matrix(0.190526,-0.003048,0.003999,0.249968,0,0);-ms-transform:matrix(0.190526,-0.003048,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190526,-0.003048,0.003999,0.249968,0,0);}
.m13b_c00300{transform:matrix(0.190746,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190746,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190746,-0.002289,0.003000,0.249982,0,0);}
.m160_c00300{transform:matrix(0.190834,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190834,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190834,-0.002481,0.003250,0.249979,0,0);}
.m9e_c00300{transform:matrix(0.191066,-0.003057,0.003999,0.249968,0,0);-ms-transform:matrix(0.191066,-0.003057,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191066,-0.003057,0.003999,0.249968,0,0);}
.m78_c00300{transform:matrix(0.191306,-0.003061,0.003999,0.249968,0,0);-ms-transform:matrix(0.191306,-0.003061,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191306,-0.003061,0.003999,0.249968,0,0);}
.mb1_c00300{transform:matrix(0.191875,-0.003070,0.003999,0.249968,0,0);-ms-transform:matrix(0.191875,-0.003070,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191875,-0.003070,0.003999,0.249968,0,0);}
.m37_c00300{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);}
.m14c_c00300{transform:matrix(0.192081,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192081,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192081,-0.002305,0.003000,0.249982,0,0);}
.meb_c00300{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);}
.m139_c00300{transform:matrix(0.192236,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192236,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192236,-0.002307,0.003000,0.249982,0,0);}
.m43_c00300{transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192355,-0.001924,0.002500,0.249988,0,0);}
.me6_c00300{transform:matrix(0.192580,-0.003081,0.003999,0.249968,0,0);-ms-transform:matrix(0.192580,-0.003081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192580,-0.003081,0.003999,0.249968,0,0);}
.med_c00300{transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);-ms-transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);}
.m35_c00300{transform:matrix(0.192810,-0.001928,0.002500,0.249988,0,0);-ms-transform:matrix(0.192810,-0.001928,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192810,-0.001928,0.002500,0.249988,0,0);}
.m136_c00300{transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);}
.m2c_c00300{transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);}
.m11f_c00300{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);}
.mee_c00300{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);}
.m3c_c00300{transform:matrix(0.193340,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193340,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193340,-0.001933,0.002500,0.249988,0,0);}
.mde_c00300{transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);-ms-transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);}
.mbf_c00300{transform:matrix(0.193430,-0.003095,0.003999,0.249968,0,0);-ms-transform:matrix(0.193430,-0.003095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193430,-0.003095,0.003999,0.249968,0,0);}
.mea_c00300{transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);-ms-transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);}
.m4c_c00300{transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);}
.mdf_c00300{transform:matrix(0.193825,-0.003101,0.003999,0.249968,0,0);-ms-transform:matrix(0.193825,-0.003101,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193825,-0.003101,0.003999,0.249968,0,0);}
.m154_c00300{transform:matrix(0.194074,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194074,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194074,-0.002523,0.003250,0.249979,0,0);}
.m137_c00300{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);}
.m94_c00300{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);}
.m3e_c00300{transform:matrix(0.194625,-0.001946,0.002500,0.249988,0,0);-ms-transform:matrix(0.194625,-0.001946,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194625,-0.001946,0.002500,0.249988,0,0);}
.m95_c00300{transform:matrix(0.194815,-0.003117,0.003999,0.249968,0,0);-ms-transform:matrix(0.194815,-0.003117,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194815,-0.003117,0.003999,0.249968,0,0);}
.m11d_c00300{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);}
.me5_c00300{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);}
.mc2_c00300{transform:matrix(0.195810,-0.003133,0.003999,0.249968,0,0);-ms-transform:matrix(0.195810,-0.003133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195810,-0.003133,0.003999,0.249968,0,0);}
.mce_c00300{transform:matrix(0.196105,-0.003138,0.003999,0.249968,0,0);-ms-transform:matrix(0.196105,-0.003138,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196105,-0.003138,0.003999,0.249968,0,0);}
.m8a_c00300{transform:matrix(0.196180,-0.003139,0.003999,0.249968,0,0);-ms-transform:matrix(0.196180,-0.003139,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196180,-0.003139,0.003999,0.249968,0,0);}
.mbc_c00300{transform:matrix(0.196235,-0.003140,0.003999,0.249968,0,0);-ms-transform:matrix(0.196235,-0.003140,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196235,-0.003140,0.003999,0.249968,0,0);}
.m153_c00300{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);}
.m133_c00300{transform:matrix(0.196531,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196531,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196531,-0.002358,0.003000,0.249982,0,0);}
.m167_c00300{transform:matrix(0.196843,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196843,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196843,-0.002559,0.003250,0.249979,0,0);}
.m50_c00300{transform:matrix(0.196845,-0.001968,0.002500,0.249988,0,0);-ms-transform:matrix(0.196845,-0.001968,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196845,-0.001968,0.002500,0.249988,0,0);}
.m12b_c00300{transform:matrix(0.197606,-0.002371,0.003000,0.249982,0,0);-ms-transform:matrix(0.197606,-0.002371,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197606,-0.002371,0.003000,0.249982,0,0);}
.m124_c00300{transform:matrix(0.197776,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197776,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197776,-0.002373,0.003000,0.249982,0,0);}
.m156_c00300{transform:matrix(0.197913,-0.002573,0.003250,0.249979,0,0);-ms-transform:matrix(0.197913,-0.002573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197913,-0.002573,0.003250,0.249979,0,0);}
.ma3_c00300{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);}
.m1b_c00300{transform:matrix(0.198595,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198595,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198595,-0.001986,0.002500,0.249988,0,0);}
.me2_c00300{transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);-ms-transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);}
.mbd_c00300{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);}
.mb7_c00300{transform:matrix(0.198920,-0.003183,0.003999,0.249968,0,0);-ms-transform:matrix(0.198920,-0.003183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198920,-0.003183,0.003999,0.249968,0,0);}
.maa_c00300{transform:matrix(0.199060,-0.003185,0.003999,0.249968,0,0);-ms-transform:matrix(0.199060,-0.003185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199060,-0.003185,0.003999,0.249968,0,0);}
.m57_c00300{transform:matrix(0.199385,-0.001994,0.002500,0.249988,0,0);-ms-transform:matrix(0.199385,-0.001994,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199385,-0.001994,0.002500,0.249988,0,0);}
.m119_c00300{transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199511,-0.002394,0.003000,0.249982,0,0);}
.m13c_c00300{transform:matrix(0.199541,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199541,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199541,-0.002394,0.003000,0.249982,0,0);}
.m120_c00300{transform:matrix(0.199566,-0.002395,0.003000,0.249982,0,0);-ms-transform:matrix(0.199566,-0.002395,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199566,-0.002395,0.003000,0.249982,0,0);}
.m18_c00300{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);}
.m118_c00300{transform:matrix(0.199646,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199646,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199646,-0.002396,0.003000,0.249982,0,0);}
.m138_c00300{transform:matrix(0.200051,-0.002401,0.003000,0.249982,0,0);-ms-transform:matrix(0.200051,-0.002401,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200051,-0.002401,0.003000,0.249982,0,0);}
.mc8_c00300{transform:matrix(0.200254,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200254,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200254,-0.003204,0.003999,0.249968,0,0);}
.m110_c00300{transform:matrix(0.200406,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200406,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200406,-0.002405,0.003000,0.249982,0,0);}
.m5e_c00300{transform:matrix(0.200550,-0.002005,0.002500,0.249988,0,0);-ms-transform:matrix(0.200550,-0.002005,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200550,-0.002005,0.002500,0.249988,0,0);}
.md3_c00300{transform:matrix(0.201179,-0.003219,0.003999,0.249968,0,0);-ms-transform:matrix(0.201179,-0.003219,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201179,-0.003219,0.003999,0.249968,0,0);}
.m15a_c00300{transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);-ms-transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);}
.m13a_c00300{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);}
.m97_c00300{transform:matrix(0.201444,-0.003223,0.003999,0.249968,0,0);-ms-transform:matrix(0.201444,-0.003223,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201444,-0.003223,0.003999,0.249968,0,0);}
.mb8_c00300{transform:matrix(0.201499,-0.003224,0.003999,0.249968,0,0);-ms-transform:matrix(0.201499,-0.003224,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201499,-0.003224,0.003999,0.249968,0,0);}
.mc6_c00300{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);}
.m7c_c00300{transform:matrix(0.201724,-0.003228,0.003999,0.249968,0,0);-ms-transform:matrix(0.201724,-0.003228,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201724,-0.003228,0.003999,0.249968,0,0);}
.md8_c00300{transform:matrix(0.201749,-0.003228,0.003999,0.249968,0,0);-ms-transform:matrix(0.201749,-0.003228,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201749,-0.003228,0.003999,0.249968,0,0);}
.mfc_c00300{transform:matrix(0.201829,-0.003229,0.003999,0.249968,0,0);-ms-transform:matrix(0.201829,-0.003229,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201829,-0.003229,0.003999,0.249968,0,0);}
.m12_c00300{transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);-ms-transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);}
.mf5_c00300{transform:matrix(0.202969,-0.003248,0.003999,0.249968,0,0);-ms-transform:matrix(0.202969,-0.003248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202969,-0.003248,0.003999,0.249968,0,0);}
.m2_c00300{transform:matrix(0.203062,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203062,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203062,-0.001828,0.002250,0.249990,0,0);}
.me7_c00300{transform:matrix(0.204169,-0.003267,0.003999,0.249968,0,0);-ms-transform:matrix(0.204169,-0.003267,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204169,-0.003267,0.003999,0.249968,0,0);}
.m32_c00300{transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);-ms-transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);}
.m12f_c00300{transform:matrix(0.204615,-0.002455,0.003000,0.249982,0,0);-ms-transform:matrix(0.204615,-0.002455,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204615,-0.002455,0.003000,0.249982,0,0);}
.mf_c00300{transform:matrix(0.204775,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204775,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204775,-0.002048,0.002500,0.249988,0,0);}
.m80_c00300{transform:matrix(0.204999,-0.003280,0.003999,0.249968,0,0);-ms-transform:matrix(0.204999,-0.003280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204999,-0.003280,0.003999,0.249968,0,0);}
.m134_c00300{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);}
.m4d_c00300{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);}
.mf2_c00300{transform:matrix(0.205949,-0.003295,0.003999,0.249968,0,0);-ms-transform:matrix(0.205949,-0.003295,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205949,-0.003295,0.003999,0.249968,0,0);}
.m2a_c00300{transform:matrix(0.206345,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206345,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206345,-0.002063,0.002500,0.249988,0,0);}
.m106_c00300{transform:matrix(0.207004,-0.003312,0.003999,0.249968,0,0);-ms-transform:matrix(0.207004,-0.003312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207004,-0.003312,0.003999,0.249968,0,0);}
.m6f_c00300{transform:matrix(0.207580,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207580,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207580,-0.002076,0.002500,0.249988,0,0);}
.mc9_c00300{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);}
.mf1_c00300{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);}
.m117_c00300{transform:matrix(0.207765,-0.002493,0.003000,0.249982,0,0);-ms-transform:matrix(0.207765,-0.002493,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207765,-0.002493,0.003000,0.249982,0,0);}
.m103_c00300{transform:matrix(0.207833,-0.003325,0.003999,0.249968,0,0);-ms-transform:matrix(0.207833,-0.003325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207833,-0.003325,0.003999,0.249968,0,0);}
.m14a_c00300{transform:matrix(0.207970,-0.002496,0.003000,0.249982,0,0);-ms-transform:matrix(0.207970,-0.002496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207970,-0.002496,0.003000,0.249982,0,0);}
.m40_c00300{transform:matrix(0.208135,-0.002081,0.002500,0.249988,0,0);-ms-transform:matrix(0.208135,-0.002081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208135,-0.002081,0.002500,0.249988,0,0);}
.mc5_c00300{transform:matrix(0.208363,-0.003334,0.003999,0.249968,0,0);-ms-transform:matrix(0.208363,-0.003334,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208363,-0.003334,0.003999,0.249968,0,0);}
.m54_c00300{transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);-ms-transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);}
.m91_c00300{transform:matrix(0.209003,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.209003,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209003,-0.003344,0.003999,0.249968,0,0);}
.m56_c00300{transform:matrix(0.209075,-0.002091,0.002500,0.249988,0,0);-ms-transform:matrix(0.209075,-0.002091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209075,-0.002091,0.002500,0.249988,0,0);}
.m31_c00300{transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);-ms-transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);}
.m3f_c00300{transform:matrix(0.210000,-0.002100,0.002500,0.249988,0,0);-ms-transform:matrix(0.210000,-0.002100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210000,-0.002100,0.002500,0.249988,0,0);}
.m29_c00300{transform:matrix(0.210614,-0.002106,0.002500,0.249988,0,0);-ms-transform:matrix(0.210614,-0.002106,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210614,-0.002106,0.002500,0.249988,0,0);}
.m12a_c00300{transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);}
.md4_c00300{transform:matrix(0.211048,-0.003377,0.003999,0.249968,0,0);-ms-transform:matrix(0.211048,-0.003377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211048,-0.003377,0.003999,0.249968,0,0);}
.m23_c00300{transform:matrix(0.211734,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211734,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211734,-0.002117,0.002500,0.249988,0,0);}
.m162_c00300{transform:matrix(0.211897,-0.002755,0.003250,0.249979,0,0);-ms-transform:matrix(0.211897,-0.002755,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211897,-0.002755,0.003250,0.249979,0,0);}
.m112_c00300{transform:matrix(0.212135,-0.002546,0.003000,0.249982,0,0);-ms-transform:matrix(0.212135,-0.002546,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212135,-0.002546,0.003000,0.249982,0,0);}
.m15b_c00300{transform:matrix(0.212547,-0.002763,0.003250,0.249979,0,0);-ms-transform:matrix(0.212547,-0.002763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212547,-0.002763,0.003250,0.249979,0,0);}
.m169_c00300{transform:matrix(0.213372,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213372,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213372,-0.002774,0.003250,0.249979,0,0);}
.mdd_c00300{transform:matrix(0.215312,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215312,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215312,-0.003445,0.003999,0.249968,0,0);}
.m143_c00300{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);}
.m13e_c00300{transform:matrix(0.217249,-0.002607,0.003000,0.249982,0,0);-ms-transform:matrix(0.217249,-0.002607,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217249,-0.002607,0.003000,0.249982,0,0);}
.m135_c00300{transform:matrix(0.217304,-0.002608,0.003000,0.249982,0,0);-ms-transform:matrix(0.217304,-0.002608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217304,-0.002608,0.003000,0.249982,0,0);}
.mb9_c00300{transform:matrix(0.218287,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218287,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218287,-0.003493,0.003999,0.249968,0,0);}
.m1f_c00300{transform:matrix(0.218699,-0.002187,0.002500,0.249988,0,0);-ms-transform:matrix(0.218699,-0.002187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218699,-0.002187,0.002500,0.249988,0,0);}
.mfa_c00300{transform:matrix(0.219147,-0.003506,0.003999,0.249968,0,0);-ms-transform:matrix(0.219147,-0.003506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219147,-0.003506,0.003999,0.249968,0,0);}
.m163_c00300{transform:matrix(0.219406,-0.002852,0.003250,0.249979,0,0);-ms-transform:matrix(0.219406,-0.002852,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219406,-0.002852,0.003250,0.249979,0,0);}
.ma_c00300{transform:matrix(0.220189,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220189,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220189,-0.002202,0.002500,0.249988,0,0);}
.mf4_c00300{transform:matrix(0.220462,-0.003527,0.003999,0.249968,0,0);-ms-transform:matrix(0.220462,-0.003527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220462,-0.003527,0.003999,0.249968,0,0);}
.ma4_c00300{transform:matrix(0.220602,-0.003530,0.003999,0.249968,0,0);-ms-transform:matrix(0.220602,-0.003530,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220602,-0.003530,0.003999,0.249968,0,0);}
.mc0_c00300{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);}
.m22_c00300{transform:matrix(0.221419,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221419,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221419,-0.002214,0.002500,0.249988,0,0);}
.m26_c00300{transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);-ms-transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);}
.m144_c00300{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);}
.m0_c00300{transform:matrix(0.223616,-0.002013,0.002250,0.249990,0,0);-ms-transform:matrix(0.223616,-0.002013,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223616,-0.002013,0.002250,0.249990,0,0);}
.m16a_c00300{transform:matrix(0.224521,-0.002919,0.003250,0.249979,0,0);-ms-transform:matrix(0.224521,-0.002919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224521,-0.002919,0.003250,0.249979,0,0);}
.m151_c00300{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);}
.m2d_c00300{transform:matrix(0.225304,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225304,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225304,-0.002253,0.002500,0.249988,0,0);}
.mfe_c00300{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);}
.me_c00300{transform:matrix(0.226759,-0.002268,0.002500,0.249988,0,0);-ms-transform:matrix(0.226759,-0.002268,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226759,-0.002268,0.002500,0.249988,0,0);}
.m21_c00300{transform:matrix(0.227114,-0.002271,0.002500,0.249988,0,0);-ms-transform:matrix(0.227114,-0.002271,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227114,-0.002271,0.002500,0.249988,0,0);}
.m1_c00300{transform:matrix(0.227251,-0.002045,0.002250,0.249990,0,0);-ms-transform:matrix(0.227251,-0.002045,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227251,-0.002045,0.002250,0.249990,0,0);}
.m77_c00300{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);}
.m9f_c00300{transform:matrix(0.232105,-0.003714,0.003999,0.249968,0,0);-ms-transform:matrix(0.232105,-0.003714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232105,-0.003714,0.003999,0.249968,0,0);}
.mb5_c00300{transform:matrix(0.233075,-0.003729,0.003999,0.249968,0,0);-ms-transform:matrix(0.233075,-0.003729,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233075,-0.003729,0.003999,0.249968,0,0);}
.m27_c00300{transform:matrix(0.236693,-0.002367,0.002500,0.249988,0,0);-ms-transform:matrix(0.236693,-0.002367,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236693,-0.002367,0.002500,0.249988,0,0);}
.mcd_c00300{transform:matrix(0.237225,-0.003796,0.003999,0.249968,0,0);-ms-transform:matrix(0.237225,-0.003796,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237225,-0.003796,0.003999,0.249968,0,0);}
.m67_c00300{transform:matrix(0.237808,-0.002378,0.002500,0.249988,0,0);-ms-transform:matrix(0.237808,-0.002378,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237808,-0.002378,0.002500,0.249988,0,0);}
.m157_c00300{transform:matrix(0.238570,-0.003101,0.003250,0.249979,0,0);-ms-transform:matrix(0.238570,-0.003101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238570,-0.003101,0.003250,0.249979,0,0);}
.m14f_c00300{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);}
.m48_c00300{transform:matrix(0.239158,-0.002392,0.002500,0.249988,0,0);-ms-transform:matrix(0.239158,-0.002392,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239158,-0.002392,0.002500,0.249988,0,0);}
.m165_c00300{transform:matrix(0.239345,-0.003111,0.003250,0.249979,0,0);-ms-transform:matrix(0.239345,-0.003111,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239345,-0.003111,0.003250,0.249979,0,0);}
.m53_c00300{transform:matrix(0.240133,-0.002401,0.002500,0.249988,0,0);-ms-transform:matrix(0.240133,-0.002401,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240133,-0.002401,0.002500,0.249988,0,0);}
.m13d_c00300{transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);-ms-transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);}
.m90_c00300{transform:matrix(0.243219,-0.003892,0.003999,0.249968,0,0);-ms-transform:matrix(0.243219,-0.003892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243219,-0.003892,0.003999,0.249968,0,0);}
.m6c_c00300{transform:matrix(0.244213,-0.002442,0.002500,0.249988,0,0);-ms-transform:matrix(0.244213,-0.002442,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244213,-0.002442,0.002500,0.249988,0,0);}
.m10a_c00300{transform:matrix(0.245299,-0.003925,0.003999,0.249968,0,0);-ms-transform:matrix(0.245299,-0.003925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245299,-0.003925,0.003999,0.249968,0,0);}
.m59_c00300{transform:matrix(0.247933,-0.002479,0.002500,0.249988,0,0);-ms-transform:matrix(0.247933,-0.002479,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247933,-0.002479,0.002500,0.249988,0,0);}
.m9_c00300{transform:matrix(0.248333,-0.002483,0.002500,0.249988,0,0);-ms-transform:matrix(0.248333,-0.002483,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248333,-0.002483,0.002500,0.249988,0,0);}
.m4f_c00300{transform:matrix(0.252552,-0.002526,0.002500,0.249988,0,0);-ms-transform:matrix(0.252552,-0.002526,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252552,-0.002526,0.002500,0.249988,0,0);}
.mc3_c00300{transform:matrix(0.253553,-0.004057,0.003999,0.249968,0,0);-ms-transform:matrix(0.253553,-0.004057,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253553,-0.004057,0.003999,0.249968,0,0);}
.m3b_c00300{transform:matrix(0.255417,-0.002554,0.002500,0.249988,0,0);-ms-transform:matrix(0.255417,-0.002554,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255417,-0.002554,0.002500,0.249988,0,0);}
.m86_c00300{transform:matrix(0.256992,-0.004112,0.003999,0.249968,0,0);-ms-transform:matrix(0.256992,-0.004112,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256992,-0.004112,0.003999,0.249968,0,0);}
.m164_c00300{transform:matrix(0.258913,-0.003366,0.003250,0.249979,0,0);-ms-transform:matrix(0.258913,-0.003366,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258913,-0.003366,0.003250,0.249979,0,0);}
.m74_c00300{transform:matrix(0.259702,-0.002597,0.002500,0.249988,0,0);-ms-transform:matrix(0.259702,-0.002597,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259702,-0.002597,0.002500,0.249988,0,0);}
.m1c_c00300{transform:matrix(0.260662,-0.002607,0.002500,0.249988,0,0);-ms-transform:matrix(0.260662,-0.002607,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260662,-0.002607,0.002500,0.249988,0,0);}
.m7a_c00300{transform:matrix(0.266791,-0.004269,0.003999,0.249968,0,0);-ms-transform:matrix(0.266791,-0.004269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266791,-0.004269,0.003999,0.249968,0,0);}
.m10e_c00300{transform:matrix(0.270236,-0.003243,0.003000,0.249982,0,0);-ms-transform:matrix(0.270236,-0.003243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270236,-0.003243,0.003000,0.249982,0,0);}
.m24_c00300{transform:matrix(0.274651,-0.002747,0.002500,0.249988,0,0);-ms-transform:matrix(0.274651,-0.002747,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274651,-0.002747,0.002500,0.249988,0,0);}
.m42_c00300{transform:matrix(0.286671,-0.002867,0.002500,0.249988,0,0);-ms-transform:matrix(0.286671,-0.002867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.286671,-0.002867,0.002500,0.249988,0,0);}
.m14e_c00300{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);}
.m7b_c00300{transform:matrix(0.308561,-0.004937,0.003999,0.249968,0,0);-ms-transform:matrix(0.308561,-0.004937,0.003999,0.249968,0,0);-webkit-transform:matrix(0.308561,-0.004937,0.003999,0.249968,0,0);}
.m4e_c00300{transform:matrix(0.314539,-0.003145,0.002500,0.249988,0,0);-ms-transform:matrix(0.314539,-0.003145,0.002500,0.249988,0,0);-webkit-transform:matrix(0.314539,-0.003145,0.002500,0.249988,0,0);}
.m16b_c00300{transform:matrix(0.338686,-0.004403,0.003250,0.249979,0,0);-ms-transform:matrix(0.338686,-0.004403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.338686,-0.004403,0.003250,0.249979,0,0);}
.m49_c00300{transform:matrix(0.348558,-0.003486,0.002500,0.249988,0,0);-ms-transform:matrix(0.348558,-0.003486,0.002500,0.249988,0,0);-webkit-transform:matrix(0.348558,-0.003486,0.002500,0.249988,0,0);}
.mbe_c00300{transform:matrix(0.357839,-0.005725,0.003999,0.249968,0,0);-ms-transform:matrix(0.357839,-0.005725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.357839,-0.005725,0.003999,0.249968,0,0);}
.m20_c00300{transform:matrix(0.367642,-0.003676,0.002500,0.249988,0,0);-ms-transform:matrix(0.367642,-0.003676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.367642,-0.003676,0.002500,0.249988,0,0);}
.m11b_c00300{transform:matrix(0.372788,-0.004473,0.003000,0.249982,0,0);-ms-transform:matrix(0.372788,-0.004473,0.003000,0.249982,0,0);-webkit-transform:matrix(0.372788,-0.004473,0.003000,0.249982,0,0);}
.m152_c00300{transform:matrix(0.379055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379055,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.379671,-0.006075,0.003999,0.249968,0,0);-ms-transform:matrix(0.379671,-0.006075,0.003999,0.249968,0,0);-webkit-transform:matrix(0.379671,-0.006075,0.003999,0.249968,0,0);}
.m5_c00300{transform:matrix(0.380361,-0.003804,0.002500,0.249988,0,0);-ms-transform:matrix(0.380361,-0.003804,0.002500,0.249988,0,0);-webkit-transform:matrix(0.380361,-0.003804,0.002500,0.249988,0,0);}
.m72_c00300{transform:matrix(0.380886,-0.003809,0.002500,0.249988,0,0);-ms-transform:matrix(0.380886,-0.003809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.380886,-0.003809,0.002500,0.249988,0,0);}
.m8f_c00300{transform:matrix(0.408493,-0.006536,0.003999,0.249968,0,0);-ms-transform:matrix(0.408493,-0.006536,0.003999,0.249968,0,0);-webkit-transform:matrix(0.408493,-0.006536,0.003999,0.249968,0,0);}
.m16d_c00300{transform:matrix(0.409000,-0.005317,0.003250,0.249979,0,0);-ms-transform:matrix(0.409000,-0.005317,0.003250,0.249979,0,0);-webkit-transform:matrix(0.409000,-0.005317,0.003250,0.249979,0,0);}
.m150_c00300{transform:matrix(0.425440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425440,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.429509,-0.004295,0.002500,0.249988,0,0);-ms-transform:matrix(0.429509,-0.004295,0.002500,0.249988,0,0);-webkit-transform:matrix(0.429509,-0.004295,0.002500,0.249988,0,0);}
.m7d_c00300{transform:matrix(0.432760,-0.006924,0.003999,0.249968,0,0);-ms-transform:matrix(0.432760,-0.006924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.432760,-0.006924,0.003999,0.249968,0,0);}
.m1e_c00300{transform:matrix(0.463952,-0.004640,0.002500,0.249988,0,0);-ms-transform:matrix(0.463952,-0.004640,0.002500,0.249988,0,0);-webkit-transform:matrix(0.463952,-0.004640,0.002500,0.249988,0,0);}
.m8d_c00300{transform:matrix(0.510575,-0.008169,0.003999,0.249968,0,0);-ms-transform:matrix(0.510575,-0.008169,0.003999,0.249968,0,0);-webkit-transform:matrix(0.510575,-0.008169,0.003999,0.249968,0,0);}
.m6_c00300{transform:matrix(0.611004,-0.006110,0.002500,0.249988,0,0);-ms-transform:matrix(0.611004,-0.006110,0.002500,0.249988,0,0);-webkit-transform:matrix(0.611004,-0.006110,0.002500,0.249988,0,0);}
.m41_c00300{transform:matrix(0.666037,-0.006660,0.002500,0.249988,0,0);-ms-transform:matrix(0.666037,-0.006660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.666037,-0.006660,0.002500,0.249988,0,0);}
.m127_c00300{transform:matrix(0.670142,-0.008042,0.003000,0.249982,0,0);-ms-transform:matrix(0.670142,-0.008042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.670142,-0.008042,0.003000,0.249982,0,0);}
.m16c_c00300{transform:matrix(0.729358,-0.009482,0.003250,0.249979,0,0);-ms-transform:matrix(0.729358,-0.009482,0.003250,0.249979,0,0);-webkit-transform:matrix(0.729358,-0.009482,0.003250,0.249979,0,0);}
.m76_c00300{transform:matrix(0.738121,-0.011810,0.003999,0.249968,0,0);-ms-transform:matrix(0.738121,-0.011810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.738121,-0.011810,0.003999,0.249968,0,0);}
.m2b_c00300{transform:matrix(0.762047,-0.007620,0.002500,0.249988,0,0);-ms-transform:matrix(0.762047,-0.007620,0.002500,0.249988,0,0);-webkit-transform:matrix(0.762047,-0.007620,0.002500,0.249988,0,0);}
.m13f_c00300{transform:matrix(0.780144,-0.009362,0.003000,0.249982,0,0);-ms-transform:matrix(0.780144,-0.009362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.780144,-0.009362,0.003000,0.249982,0,0);}
.m10_c00300{transform:matrix(0.810159,-0.008102,0.002500,0.249988,0,0);-ms-transform:matrix(0.810159,-0.008102,0.002500,0.249988,0,0);-webkit-transform:matrix(0.810159,-0.008102,0.002500,0.249988,0,0);}
.m73_c00300{transform:matrix(0.819894,-0.008199,0.002500,0.249988,0,0);-ms-transform:matrix(0.819894,-0.008199,0.002500,0.249988,0,0);-webkit-transform:matrix(0.819894,-0.008199,0.002500,0.249988,0,0);}
.m52_c00300{transform:matrix(0.834823,-0.008348,0.002500,0.249988,0,0);-ms-transform:matrix(0.834823,-0.008348,0.002500,0.249988,0,0);-webkit-transform:matrix(0.834823,-0.008348,0.002500,0.249988,0,0);}
.m170_c00300{transform:matrix(0.840114,-0.010921,0.003250,0.249979,0,0);-ms-transform:matrix(0.840114,-0.010921,0.003250,0.249979,0,0);-webkit-transform:matrix(0.840114,-0.010921,0.003250,0.249979,0,0);}
.mb_c00300{transform:matrix(1.439703,-0.014397,0.002500,0.249988,0,0);-ms-transform:matrix(1.439703,-0.014397,0.002500,0.249988,0,0);-webkit-transform:matrix(1.439703,-0.014397,0.002500,0.249988,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;}
.fs3_c00300{font-size:60.903045px;}
.fs11_c00300{font-size:66.150000px;}
.fs13_c00300{font-size:66.155589px;}
.fsc_c00300{font-size:66.158467px;}
.fse_c00300{font-size:67.204838px;}
.fsb_c00300{font-size:68.258735px;}
.fs5_c00300{font-size:69.303465px;}
.fsf_c00300{font-size:69.304989px;}
.fs7_c00300{font-size:69.308870px;}
.fs2_c00300{font-size:70.353517px;}
.fsd_c00300{font-size:70.359004px;}
.fs4_c00300{font-size:71.403570px;}
.fs10_c00300{font-size:71.405141px;}
.fs12_c00300{font-size:71.406033px;}
.fs9_c00300{font-size:71.409139px;}
.fsa_c00300{font-size:72.459273px;}
.fs1_c00300{font-size:73.503675px;}
.fs6_c00300{font-size:76.653832px;}
.fs8_c00300{font-size:77.709945px;}
.fs0_c00300{font-size:148.055996px;}
.y0_c00300{bottom:0.000000px;}
.y16d_c00300{bottom:137.968736px;}
.y16e_c00300{bottom:138.564861px;}
.y16f_c00300{bottom:138.782304px;}
.y170_c00300{bottom:139.816669px;}
.y171_c00300{bottom:140.390193px;}
.y172_c00300{bottom:141.591396px;}
.y173_c00300{bottom:142.035019px;}
.y174_c00300{bottom:142.572094px;}
.y161_c00300{bottom:162.448665px;}
.y162_c00300{bottom:163.164492px;}
.y163_c00300{bottom:163.890595px;}
.y164_c00300{bottom:164.078493px;}
.y165_c00300{bottom:164.364231px;}
.y166_c00300{bottom:165.126530px;}
.y167_c00300{bottom:165.407705px;}
.y168_c00300{bottom:165.970931px;}
.y169_c00300{bottom:166.233482px;}
.y16a_c00300{bottom:166.684047px;}
.y16b_c00300{bottom:166.953072px;}
.y16c_c00300{bottom:167.177321px;}
.y156_c00300{bottom:184.951500px;}
.y157_c00300{bottom:185.506860px;}
.y158_c00300{bottom:185.881670px;}
.y159_c00300{bottom:186.813652px;}
.y15a_c00300{bottom:187.156501px;}
.y15b_c00300{bottom:187.419322px;}
.y15c_c00300{bottom:188.111417px;}
.y15d_c00300{bottom:188.388726px;}
.y15e_c00300{bottom:188.967057px;}
.y15f_c00300{bottom:189.414524px;}
.y160_c00300{bottom:190.123797px;}
.y146_c00300{bottom:207.621798px;}
.y148_c00300{bottom:208.169358px;}
.y147_c00300{bottom:208.175262px;}
.y149_c00300{bottom:208.409298px;}
.y14a_c00300{bottom:208.982652px;}
.y14b_c00300{bottom:209.866524px;}
.y14c_c00300{bottom:210.230070px;}
.y14d_c00300{bottom:210.754788px;}
.y14e_c00300{bottom:211.065414px;}
.y14f_c00300{bottom:211.500168px;}
.y150_c00300{bottom:211.707708px;}
.y151_c00300{bottom:212.200116px;}
.y152_c00300{bottom:212.621406px;}
.y153_c00300{bottom:212.954514px;}
.y154_c00300{bottom:213.360306px;}
.y13b_c00300{bottom:230.033946px;}
.y13c_c00300{bottom:230.636154px;}
.y13d_c00300{bottom:231.157956px;}
.y13e_c00300{bottom:231.915396px;}
.y13f_c00300{bottom:232.450266px;}
.y140_c00300{bottom:233.273820px;}
.y141_c00300{bottom:234.530886px;}
.y142_c00300{bottom:234.864660px;}
.y143_c00300{bottom:235.357230px;}
.y144_c00300{bottom:235.839990px;}
.y145_c00300{bottom:236.099172px;}
.y12e_c00300{bottom:252.990162px;}
.y12f_c00300{bottom:253.655106px;}
.y130_c00300{bottom:254.033418px;}
.y131_c00300{bottom:254.575008px;}
.y132_c00300{bottom:254.910882px;}
.y133_c00300{bottom:255.301296px;}
.y134_c00300{bottom:255.739350px;}
.y135_c00300{bottom:256.286880px;}
.y136_c00300{bottom:256.626642px;}
.y137_c00300{bottom:257.591106px;}
.y138_c00300{bottom:258.013122px;}
.y139_c00300{bottom:258.974346px;}
.y13a_c00300{bottom:259.307664px;}
.y121_c00300{bottom:275.129952px;}
.y122_c00300{bottom:275.336892px;}
.y123_c00300{bottom:276.044010px;}
.y124_c00300{bottom:276.392292px;}
.y125_c00300{bottom:277.228350px;}
.y126_c00300{bottom:277.579314px;}
.y127_c00300{bottom:278.331966px;}
.y128_c00300{bottom:278.770770px;}
.y129_c00300{bottom:279.285504px;}
.y12a_c00300{bottom:280.252494px;}
.y12b_c00300{bottom:281.324970px;}
.y12c_c00300{bottom:281.764548px;}
.y12d_c00300{bottom:282.277968px;}
.y115_c00300{bottom:299.161500px;}
.y116_c00300{bottom:299.718852px;}
.y117_c00300{bottom:300.136200px;}
.y118_c00300{bottom:300.519240px;}
.y119_c00300{bottom:301.241742px;}
.y11a_c00300{bottom:301.562484px;}
.y11b_c00300{bottom:301.905978px;}
.y11c_c00300{bottom:302.417232px;}
.y11d_c00300{bottom:302.699328px;}
.y11e_c00300{bottom:303.075798px;}
.y11f_c00300{bottom:304.083330px;}
.y120_c00300{bottom:304.553220px;}
.y109_c00300{bottom:322.621092px;}
.y10a_c00300{bottom:323.395416px;}
.y10b_c00300{bottom:323.677572px;}
.y10c_c00300{bottom:323.924376px;}
.y10d_c00300{bottom:324.459024px;}
.y10e_c00300{bottom:325.305480px;}
.y10f_c00300{bottom:325.582104px;}
.y110_c00300{bottom:326.080932px;}
.y111_c00300{bottom:326.443260px;}
.y112_c00300{bottom:326.662656px;}
.y113_c00300{bottom:327.256632px;}
.y114_c00300{bottom:327.604620px;}
.y101_c00300{bottom:345.842388px;}
.y102_c00300{bottom:346.242564px;}
.y103_c00300{bottom:347.665560px;}
.y104_c00300{bottom:348.202716px;}
.y105_c00300{bottom:348.658368px;}
.y106_c00300{bottom:349.611948px;}
.y107_c00300{bottom:350.141328px;}
.y108_c00300{bottom:350.315316px;}
.yf5_c00300{bottom:368.795640px;}
.yf6_c00300{bottom:369.116580px;}
.yf7_c00300{bottom:369.685812px;}
.yf8_c00300{bottom:369.993888px;}
.yf9_c00300{bottom:370.180656px;}
.yfa_c00300{bottom:370.691472px;}
.yfb_c00300{bottom:371.552856px;}
.yfc_c00300{bottom:371.809452px;}
.yfd_c00300{bottom:372.138540px;}
.yfe_c00300{bottom:372.783300px;}
.yff_c00300{bottom:373.115160px;}
.y100_c00300{bottom:373.310088px;}
.ye8_c00300{bottom:391.206048px;}
.ye9_c00300{bottom:391.312944px;}
.yea_c00300{bottom:391.988520px;}
.yeb_c00300{bottom:392.849820px;}
.yec_c00300{bottom:393.194772px;}
.yed_c00300{bottom:393.572652px;}
.yee_c00300{bottom:393.967776px;}
.yef_c00300{bottom:394.220364px;}
.yf0_c00300{bottom:394.692360px;}
.yf1_c00300{bottom:394.960068px;}
.yf2_c00300{bottom:395.209068px;}
.yf3_c00300{bottom:395.547948px;}
.yf4_c00300{bottom:395.856756px;}
.ydc_c00300{bottom:414.967212px;}
.ydd_c00300{bottom:415.400172px;}
.yde_c00300{bottom:415.645464px;}
.ydf_c00300{bottom:415.983900px;}
.ye0_c00300{bottom:416.268216px;}
.ye1_c00300{bottom:416.701020px;}
.ye2_c00300{bottom:417.481020px;}
.ye3_c00300{bottom:417.835740px;}
.ye4_c00300{bottom:418.029936px;}
.ye5_c00300{bottom:418.361004px;}
.ye6_c00300{bottom:418.635516px;}
.ye7_c00300{bottom:418.944732px;}
.yce_c00300{bottom:437.380200px;}
.ycf_c00300{bottom:437.790360px;}
.yd0_c00300{bottom:438.087792px;}
.yd1_c00300{bottom:438.423276px;}
.yd2_c00300{bottom:438.685152px;}
.yd3_c00300{bottom:439.234500px;}
.yd4_c00300{bottom:439.531428px;}
.yd5_c00300{bottom:440.230152px;}
.yd6_c00300{bottom:440.475468px;}
.yd7_c00300{bottom:440.743680px;}
.yd8_c00300{bottom:441.108540px;}
.yd9_c00300{bottom:441.580872px;}
.yda_c00300{bottom:441.850968px;}
.ydb_c00300{bottom:442.082136px;}
.yc3_c00300{bottom:460.602108px;}
.yc4_c00300{bottom:460.826220px;}
.yc5_c00300{bottom:461.272668px;}
.yc6_c00300{bottom:461.683752px;}
.yc7_c00300{bottom:462.128640px;}
.yc8_c00300{bottom:462.398832px;}
.yc9_c00300{bottom:462.814548px;}
.yca_c00300{bottom:463.080336px;}
.ycb_c00300{bottom:463.471068px;}
.ycc_c00300{bottom:464.083140px;}
.ycd_c00300{bottom:464.267604px;}
.yb7_c00300{bottom:483.285852px;}
.yb8_c00300{bottom:484.260384px;}
.yb9_c00300{bottom:484.297128px;}
.yba_c00300{bottom:484.716132px;}
.ybb_c00300{bottom:484.891212px;}
.ybc_c00300{bottom:485.115492px;}
.ybd_c00300{bottom:485.406528px;}
.ybe_c00300{bottom:485.668116px;}
.ybf_c00300{bottom:486.313524px;}
.yc0_c00300{bottom:486.880992px;}
.yc1_c00300{bottom:487.074504px;}
.yc2_c00300{bottom:487.790232px;}
.yab_c00300{bottom:505.967244px;}
.yac_c00300{bottom:506.356176px;}
.yad_c00300{bottom:506.677596px;}
.yae_c00300{bottom:506.964660px;}
.yaf_c00300{bottom:507.612792px;}
.yb0_c00300{bottom:508.114764px;}
.yb1_c00300{bottom:508.411560px;}
.yb2_c00300{bottom:508.666068px;}
.yb3_c00300{bottom:509.089356px;}
.yb4_c00300{bottom:509.626728px;}
.yb5_c00300{bottom:510.056292px;}
.yb6_c00300{bottom:510.356556px;}
.y9e_c00300{bottom:528.381972px;}
.y9f_c00300{bottom:528.612168px;}
.ya0_c00300{bottom:529.505940px;}
.ya1_c00300{bottom:529.723572px;}
.ya2_c00300{bottom:530.232216px;}
.ya3_c00300{bottom:530.604540px;}
.ya4_c00300{bottom:531.366408px;}
.ya5_c00300{bottom:531.689544px;}
.ya6_c00300{bottom:532.168500px;}
.ya7_c00300{bottom:532.796316px;}
.ya8_c00300{bottom:533.101404px;}
.ya9_c00300{bottom:533.619312px;}
.yaa_c00300{bottom:533.895852px;}
.y92_c00300{bottom:551.603976px;}
.y93_c00300{bottom:551.968344px;}
.y94_c00300{bottom:552.419832px;}
.y95_c00300{bottom:553.044276px;}
.y96_c00300{bottom:553.297404px;}
.y97_c00300{bottom:553.716456px;}
.y98_c00300{bottom:554.308608px;}
.y99_c00300{bottom:554.746020px;}
.y9a_c00300{bottom:555.196668px;}
.y9b_c00300{bottom:555.444852px;}
.y9c_c00300{bottom:555.905544px;}
.y9d_c00300{bottom:556.211352px;}
.y87_c00300{bottom:574.288344px;}
.y88_c00300{bottom:574.876932px;}
.y89_c00300{bottom:575.460576px;}
.y8a_c00300{bottom:575.918976px;}
.y8b_c00300{bottom:576.502668px;}
.y8c_c00300{bottom:577.132056px;}
.y8d_c00300{bottom:577.545744px;}
.y8e_c00300{bottom:578.053812px;}
.y8f_c00300{bottom:578.482260px;}
.y90_c00300{bottom:578.830716px;}
.y91_c00300{bottom:579.200652px;}
.y7e_c00300{bottom:596.166048px;}
.y7f_c00300{bottom:596.622972px;}
.y80_c00300{bottom:597.026628px;}
.y81_c00300{bottom:597.410184px;}
.y82_c00300{bottom:597.680328px;}
.y83_c00300{bottom:597.958980px;}
.y84_c00300{bottom:598.518480px;}
.y85_c00300{bottom:599.109180px;}
.y86_c00300{bottom:601.070940px;}
.y77_c00300{bottom:617.752500px;}
.y78_c00300{bottom:619.099404px;}
.y79_c00300{bottom:619.737636px;}
.y7a_c00300{bottom:620.058516px;}
.y7b_c00300{bottom:620.693604px;}
.y7c_c00300{bottom:621.058020px;}
.y7d_c00300{bottom:621.360180px;}
.y155_c00300{bottom:623.278500px;}
.y6d_c00300{bottom:641.511720px;}
.y6e_c00300{bottom:641.977740px;}
.y6f_c00300{bottom:642.407595px;}
.y70_c00300{bottom:643.122015px;}
.y71_c00300{bottom:643.767960px;}
.y72_c00300{bottom:643.989480px;}
.y73_c00300{bottom:644.238255px;}
.y74_c00300{bottom:644.495730px;}
.y75_c00300{bottom:645.609540px;}
.y76_c00300{bottom:645.816600px;}
.y60_c00300{bottom:664.733280px;}
.y61_c00300{bottom:665.129745px;}
.y62_c00300{bottom:665.301960px;}
.y63_c00300{bottom:665.785335px;}
.y64_c00300{bottom:666.067095px;}
.y65_c00300{bottom:666.502305px;}
.y66_c00300{bottom:666.716010px;}
.y67_c00300{bottom:667.408980px;}
.y68_c00300{bottom:667.658445px;}
.y69_c00300{bottom:667.996380px;}
.y6a_c00300{bottom:668.176695px;}
.y6b_c00300{bottom:668.650725px;}
.y6c_c00300{bottom:669.012660px;}
.y59_c00300{bottom:693.909150px;}
.y5a_c00300{bottom:693.909405px;}
.y58_c00300{bottom:693.909465px;}
.y57_c00300{bottom:693.909480px;}
.y56_c00300{bottom:693.909495px;}
.y5e_c00300{bottom:693.909630px;}
.y5d_c00300{bottom:693.909660px;}
.y5b_c00300{bottom:693.909690px;}
.y5c_c00300{bottom:693.909975px;}
.y55_c00300{bottom:693.910110px;}
.y5f_c00300{bottom:693.910215px;}
.y54_c00300{bottom:693.910425px;}
.y53_c00300{bottom:693.910755px;}
.y52_c00300{bottom:693.911055px;}
.y42_c00300{bottom:711.176955px;}
.y43_c00300{bottom:711.500055px;}
.y44_c00300{bottom:711.770415px;}
.y45_c00300{bottom:712.098015px;}
.y46_c00300{bottom:712.320930px;}
.y47_c00300{bottom:712.506690px;}
.y48_c00300{bottom:712.726350px;}
.y49_c00300{bottom:712.932360px;}
.y4a_c00300{bottom:713.418510px;}
.y4b_c00300{bottom:713.515545px;}
.y4c_c00300{bottom:713.688150px;}
.y4d_c00300{bottom:714.122805px;}
.y4e_c00300{bottom:714.345510px;}
.y4f_c00300{bottom:714.777660px;}
.y50_c00300{bottom:714.989835px;}
.y51_c00300{bottom:715.142310px;}
.y37_c00300{bottom:734.127495px;}
.y38_c00300{bottom:734.332230px;}
.y39_c00300{bottom:734.859165px;}
.y3a_c00300{bottom:735.144090px;}
.y3b_c00300{bottom:735.603315px;}
.y3c_c00300{bottom:735.786300px;}
.y3d_c00300{bottom:736.242735px;}
.y3e_c00300{bottom:736.731285px;}
.y3f_c00300{bottom:736.950765px;}
.y40_c00300{bottom:737.673945px;}
.y41_c00300{bottom:737.914800px;}
.y2c_c00300{bottom:756.000375px;}
.y2d_c00300{bottom:756.506550px;}
.y2e_c00300{bottom:756.865770px;}
.y2f_c00300{bottom:757.521885px;}
.y30_c00300{bottom:757.905705px;}
.y31_c00300{bottom:758.459175px;}
.y32_c00300{bottom:758.761620px;}
.y33_c00300{bottom:759.387615px;}
.y34_c00300{bottom:759.757905px;}
.y35_c00300{bottom:759.930540px;}
.y36_c00300{bottom:760.397940px;}
.y1f_c00300{bottom:778.950000px;}
.y20_c00300{bottom:779.336430px;}
.y21_c00300{bottom:779.768790px;}
.y22_c00300{bottom:779.979435px;}
.y23_c00300{bottom:780.184740px;}
.y24_c00300{bottom:780.616695px;}
.y25_c00300{bottom:781.086690px;}
.y26_c00300{bottom:781.669800px;}
.y27_c00300{bottom:782.047815px;}
.y28_c00300{bottom:782.951865px;}
.y29_c00300{bottom:783.295230px;}
.y2a_c00300{bottom:783.503145px;}
.y2b_c00300{bottom:783.813660px;}
.y11_c00300{bottom:801.361560px;}
.y12_c00300{bottom:801.725610px;}
.y13_c00300{bottom:801.869265px;}
.y14_c00300{bottom:802.145115px;}
.y15_c00300{bottom:802.860180px;}
.y16_c00300{bottom:803.133345px;}
.y17_c00300{bottom:803.551875px;}
.y18_c00300{bottom:803.989815px;}
.y19_c00300{bottom:804.658890px;}
.y1a_c00300{bottom:804.923175px;}
.y1b_c00300{bottom:805.244835px;}
.y1c_c00300{bottom:805.717305px;}
.y1d_c00300{bottom:805.941345px;}
.y1e_c00300{bottom:806.457150px;}
.y6_c00300{bottom:824.311500px;}
.y7_c00300{bottom:824.856255px;}
.y8_c00300{bottom:825.922275px;}
.y9_c00300{bottom:826.257540px;}
.ya_c00300{bottom:826.456095px;}
.yb_c00300{bottom:826.854675px;}
.yc_c00300{bottom:827.214735px;}
.yd_c00300{bottom:828.192675px;}
.ye_c00300{bottom:828.382065px;}
.yf_c00300{bottom:828.633585px;}
.y10_c00300{bottom:829.106115px;}
.y1_c00300{bottom:867.759000px;}
.y2_c00300{bottom:868.990983px;}
.y3_c00300{bottom:869.569998px;}
.y4_c00300{bottom:870.985270px;}
.y5_c00300{bottom:871.449495px;}
.h5_c00300{height:60.903045px;}
.h13_c00300{height:66.150000px;}
.h15_c00300{height:66.155589px;}
.he_c00300{height:66.158467px;}
.h10_c00300{height:67.204838px;}
.hd_c00300{height:68.258735px;}
.h7_c00300{height:69.303465px;}
.h11_c00300{height:69.304989px;}
.h9_c00300{height:69.308870px;}
.h4_c00300{height:70.353517px;}
.hf_c00300{height:70.359004px;}
.h6_c00300{height:71.403570px;}
.h12_c00300{height:71.405141px;}
.h14_c00300{height:71.406033px;}
.hb_c00300{height:71.409139px;}
.hc_c00300{height:72.459273px;}
.h3_c00300{height:73.503675px;}
.h8_c00300{height:76.653832px;}
.ha_c00300{height:77.709945px;}
.h2_c00300{height:148.055996px;}
.h1_c00300{height:1005.000000px;}
.h0_c00300{height:1005.150000px;}
.w0_c00300{width:702.540000px;}
.w1_c00300{width:702.750000px;}
.x0_c00300{left:0.000000px;}
.xb6_c00300{left:23.145660px;}
.x44_c00300{left:28.893990px;}
.x6_c00300{left:31.798500px;}
.x11_c00300{left:35.184315px;}
.xb7_c00300{left:37.890300px;}
.x4e_c00300{left:42.259575px;}
.xc4_c00300{left:43.904130px;}
.x1d_c00300{left:47.040000px;}
.x12_c00300{left:71.589315px;}
.x39_c00300{left:75.672795px;}
.x9c_c00300{left:78.451752px;}
.x5f_c00300{left:84.736500px;}
.x7_c00300{left:86.274000px;}
.x67_c00300{left:87.352548px;}
.xb8_c00300{left:88.440594px;}
.xc5_c00300{left:90.026130px;}
.xd3_c00300{left:96.271344px;}
.x4f_c00300{left:105.428205px;}
.x74_c00300{left:106.831080px;}
.x30_c00300{left:108.665295px;}
.x45_c00300{left:112.057815px;}
.x13_c00300{left:113.539815px;}
.x1_c00300{left:117.961500px;}
.xa6_c00300{left:120.317808px;}
.x28_c00300{left:122.145330px;}
.x60_c00300{left:124.626000px;}
.x7d_c00300{left:126.192540px;}
.xac_c00300{left:127.872132px;}
.x1e_c00300{left:128.919000px;}
.xcc_c00300{left:130.590000px;}
.xbe_c00300{left:132.480990px;}
.x59_c00300{left:134.323515px;}
.x98_c00300{left:135.680892px;}
.x46_c00300{left:143.649480px;}
.x61_c00300{left:144.681000px;}
.xce_c00300{left:147.047183px;}
.x1f_c00300{left:149.983500px;}
.x63_c00300{left:152.185380px;}
.xb3_c00300{left:154.884000px;}
.xc6_c00300{left:157.308630px;}
.x50_c00300{left:159.166245px;}
.x8a_c00300{left:162.109884px;}
.x31_c00300{left:167.209380px;}
.x6c_c00300{left:169.445280px;}
.x20_c00300{left:170.514000px;}
.xb9_c00300{left:173.008560px;}
.xa7_c00300{left:177.275280px;}
.x3a_c00300{left:178.312350px;}
.x64_c00300{left:180.010044px;}
.x75_c00300{left:181.352856px;}
.x90_c00300{left:182.643636px;}
.xaf_c00300{left:183.997944px;}
.x14_c00300{left:185.046315px;}
.x29_c00300{left:187.756830px;}
.x51_c00300{left:190.492560px;}
.x68_c00300{left:191.584056px;}
.x8_c00300{left:192.876000px;}
.xbf_c00300{left:195.600990px;}
.x32_c00300{left:198.852195px;}
.x99_c00300{left:200.483640px;}
.x3b_c00300{left:201.538815px;}
.x62_c00300{left:207.150000px;}
.x15_c00300{left:212.362815px;}
.x21_c00300{left:213.709500px;}
.xb4_c00300{left:215.092500px;}
.x47_c00300{left:220.604175px;}
.xcf_c00300{left:223.125158px;}
.x9_c00300{left:226.402500px;}
.x9d_c00300{left:227.793180px;}
.x3c_c00300{left:229.055370px;}
.x84_c00300{left:230.468880px;}
.x6d_c00300{left:231.822756px;}
.x65_c00300{left:235.890396px;}
.x52_c00300{left:238.814040px;}
.xc0_c00300{left:240.173490px;}
.x76_c00300{left:241.842720px;}
.xa_c00300{left:246.258000px;}
.x85_c00300{left:247.975560px;}
.x33_c00300{left:249.875205px;}
.x7e_c00300{left:251.805588px;}
.x2_c00300{left:254.848500px;}
.x6e_c00300{left:257.208204px;}
.x9e_c00300{left:259.105176px;}
.x22_c00300{left:260.709000px;}
.x48_c00300{left:262.726890px;}
.x34_c00300{left:270.123900px;}
.x77_c00300{left:272.896212px;}
.xa8_c00300{left:277.732404px;}
.x9a_c00300{left:280.187568px;}
.x2a_c00300{left:281.485830px;}
.x91_c00300{left:283.411200px;}
.xb_c00300{left:286.116000px;}
.x8b_c00300{left:287.165376px;}
.xbb_c00300{left:291.529386px;}
.x9f_c00300{left:293.412912px;}
.x66_c00300{left:295.033584px;}
.x16_c00300{left:298.009815px;}
.x6f_c00300{left:299.059212px;}
.x7f_c00300{left:302.027412px;}
.xc7_c00300{left:304.986630px;}
.xc1_c00300{left:308.802990px;}
.x5a_c00300{left:310.063770px;}
.x2b_c00300{left:311.730330px;}
.x69_c00300{left:312.788172px;}
.x3d_c00300{left:315.523095px;}
.xbc_c00300{left:317.717580px;}
.x3_c00300{left:319.183500px;}
.x35_c00300{left:320.867910px;}
.xc_c00300{left:322.122000px;}
.xad_c00300{left:323.900448px;}
.x86_c00300{left:325.789548px;}
.x3e_c00300{left:327.626835px;}
.xa0_c00300{left:329.267268px;}
.x80_c00300{left:331.736268px;}
.x8c_c00300{left:333.309036px;}
.x78_c00300{left:336.360768px;}
.x5b_c00300{left:337.641540px;}
.x53_c00300{left:339.532545px;}
.x92_c00300{left:346.867764px;}
.x3f_c00300{left:349.237770px;}
.xa1_c00300{left:352.274616px;}
.x49_c00300{left:354.261540px;}
.x23_c00300{left:356.821500px;}
.x70_c00300{left:358.199376px;}
.x79_c00300{left:363.308496px;}
.x17_c00300{left:364.917315px;}
.x5c_c00300{left:366.239325px;}
.x54_c00300{left:367.329330px;}
.x93_c00300{left:369.233064px;}
.x2c_c00300{left:374.329830px;}
.x4a_c00300{left:378.292440px;}
.xd0_c00300{left:380.814705px;}
.xc8_c00300{left:384.396630px;}
.xd4_c00300{left:385.479607px;}
.xba_c00300{left:389.015376px;}
.x87_c00300{left:390.321240px;}
.x18_c00300{left:391.345815px;}
.x94_c00300{left:393.592008px;}
.xa2_c00300{left:395.184048px;}
.xcd_c00300{left:396.759000px;}
.x36_c00300{left:399.471690px;}
.x71_c00300{left:401.948076px;}
.x40_c00300{left:403.504350px;}
.x55_c00300{left:404.873205px;}
.x8d_c00300{left:406.224696px;}
.x2d_c00300{left:411.358830px;}
.xc2_c00300{left:413.558490px;}
.x4b_c00300{left:418.524960px;}
.xd_c00300{left:419.916000px;}
.xa9_c00300{left:422.469300px;}
.x19_c00300{left:423.511815px;}
.x56_c00300{left:424.854900px;}
.x95_c00300{left:426.804672px;}
.x2e_c00300{left:428.622330px;}
.xd5_c00300{left:430.255193px;}
.x41_c00300{left:431.325405px;}
.xb0_c00300{left:435.436056px;}
.xe_c00300{left:438.855000px;}
.xd1_c00300{left:440.285985px;}
.xa3_c00300{left:442.200816px;}
.x4c_c00300{left:444.446055px;}
.x24_c00300{left:447.226500px;}
.xb5_c00300{left:451.891500px;}
.x81_c00300{left:453.258432px;}
.x7a_c00300{left:455.643924px;}
.xc9_c00300{left:460.538130px;}
.xd2_c00300{left:462.711277px;}
.xf_c00300{left:464.007000px;}
.x88_c00300{left:466.483560px;}
.x96_c00300{left:469.735104px;}
.x1a_c00300{left:470.758815px;}
.x72_c00300{left:471.881796px;}
.xa4_c00300{left:472.945764px;}
.x8e_c00300{left:474.299328px;}
.x2f_c00300{left:475.362330px;}
.x4_c00300{left:476.436000px;}
.x57_c00300{left:477.508425px;}
.x37_c00300{left:479.890500px;}
.x25_c00300{left:481.563000px;}
.x6a_c00300{left:482.814516px;}
.x42_c00300{left:485.341485px;}
.xaa_c00300{left:486.960492px;}
.xca_c00300{left:488.297130px;}
.x5d_c00300{left:489.921555px;}
.x4d_c00300{left:491.697780px;}
.x1b_c00300{left:493.162815px;}
.x8f_c00300{left:494.830632px;}
.x82_c00300{left:496.141536px;}
.xbd_c00300{left:498.357420px;}
.xa5_c00300{left:501.061020px;}
.x26_c00300{left:502.354500px;}
.x38_c00300{left:506.676270px;}
.xb1_c00300{left:509.433984px;}
.x10_c00300{left:511.260000px;}
.x5e_c00300{left:512.877780px;}
.x97_c00300{left:515.317752px;}
.x58_c00300{left:517.752330px;}
.x6b_c00300{left:519.814068px;}
.xc3_c00300{left:522.650490px;}
.x7b_c00300{left:524.241816px;}
.x83_c00300{left:526.160916px;}
.x5_c00300{left:528.016500px;}
.x9b_c00300{left:529.384956px;}
.x43_c00300{left:530.957400px;}
.x27_c00300{left:533.406000px;}
.xae_c00300{left:535.083204px;}
.x89_c00300{left:538.035924px;}
.xab_c00300{left:539.671056px;}
.xb2_c00300{left:541.029504px;}
.xcb_c00300{left:542.430000px;}
.x1c_c00300{left:544.743315px;}
.x7c_c00300{left:547.245780px;}
.x73_c00300{left:548.576664px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fs3_c00300{font-size:54.136040pt;}
.fs11_c00300{font-size:58.800000pt;}
.fs13_c00300{font-size:58.804968pt;}
.fsc_c00300{font-size:58.807526pt;}
.fse_c00300{font-size:59.737634pt;}
.fsb_c00300{font-size:60.674432pt;}
.fs5_c00300{font-size:61.603080pt;}
.fsf_c00300{font-size:61.604435pt;}
.fs7_c00300{font-size:61.607884pt;}
.fs2_c00300{font-size:62.536460pt;}
.fsd_c00300{font-size:62.541337pt;}
.fs4_c00300{font-size:63.469840pt;}
.fs10_c00300{font-size:63.471236pt;}
.fs12_c00300{font-size:63.472029pt;}
.fs9_c00300{font-size:63.474790pt;}
.fsa_c00300{font-size:64.408243pt;}
.fs1_c00300{font-size:65.336600pt;}
.fs6_c00300{font-size:68.136740pt;}
.fs8_c00300{font-size:69.075507pt;}
.fs0_c00300{font-size:131.605330pt;}
.y0_c00300{bottom:0.000000pt;}
.y16d_c00300{bottom:122.638876pt;}
.y16e_c00300{bottom:123.168765pt;}
.y16f_c00300{bottom:123.362048pt;}
.y170_c00300{bottom:124.281484pt;}
.y171_c00300{bottom:124.791283pt;}
.y172_c00300{bottom:125.859019pt;}
.y173_c00300{bottom:126.253351pt;}
.y174_c00300{bottom:126.730751pt;}
.y161_c00300{bottom:144.398813pt;}
.y162_c00300{bottom:145.035104pt;}
.y163_c00300{bottom:145.680529pt;}
.y164_c00300{bottom:145.847549pt;}
.y165_c00300{bottom:146.101539pt;}
.y166_c00300{bottom:146.779137pt;}
.y167_c00300{bottom:147.029071pt;}
.y168_c00300{bottom:147.529716pt;}
.y169_c00300{bottom:147.763095pt;}
.y16a_c00300{bottom:148.163597pt;}
.y16b_c00300{bottom:148.402731pt;}
.y16c_c00300{bottom:148.602063pt;}
.y156_c00300{bottom:164.401333pt;}
.y157_c00300{bottom:164.894987pt;}
.y158_c00300{bottom:165.228151pt;}
.y159_c00300{bottom:166.056580pt;}
.y15a_c00300{bottom:166.361335pt;}
.y15b_c00300{bottom:166.594953pt;}
.y15c_c00300{bottom:167.210148pt;}
.y15d_c00300{bottom:167.456645pt;}
.y15e_c00300{bottom:167.970717pt;}
.y15f_c00300{bottom:168.368465pt;}
.y160_c00300{bottom:168.998931pt;}
.y146_c00300{bottom:184.552709pt;}
.y148_c00300{bottom:185.039429pt;}
.y147_c00300{bottom:185.044677pt;}
.y149_c00300{bottom:185.252709pt;}
.y14a_c00300{bottom:185.762357pt;}
.y14b_c00300{bottom:186.548021pt;}
.y14c_c00300{bottom:186.871173pt;}
.y14d_c00300{bottom:187.337589pt;}
.y14e_c00300{bottom:187.613701pt;}
.y14f_c00300{bottom:188.000149pt;}
.y150_c00300{bottom:188.184629pt;}
.y151_c00300{bottom:188.622325pt;}
.y152_c00300{bottom:188.996805pt;}
.y153_c00300{bottom:189.292901pt;}
.y154_c00300{bottom:189.653605pt;}
.y13b_c00300{bottom:204.474619pt;}
.y13c_c00300{bottom:205.009915pt;}
.y13d_c00300{bottom:205.473739pt;}
.y13e_c00300{bottom:206.147019pt;}
.y13f_c00300{bottom:206.622459pt;}
.y140_c00300{bottom:207.354507pt;}
.y141_c00300{bottom:208.471899pt;}
.y142_c00300{bottom:208.768587pt;}
.y143_c00300{bottom:209.206427pt;}
.y144_c00300{bottom:209.635547pt;}
.y145_c00300{bottom:209.865931pt;}
.y12e_c00300{bottom:224.880144pt;}
.y12f_c00300{bottom:225.471205pt;}
.y130_c00300{bottom:225.807483pt;}
.y131_c00300{bottom:226.288896pt;}
.y132_c00300{bottom:226.587451pt;}
.y133_c00300{bottom:226.934485pt;}
.y134_c00300{bottom:227.323867pt;}
.y135_c00300{bottom:227.810560pt;}
.y136_c00300{bottom:228.112571pt;}
.y137_c00300{bottom:228.969872pt;}
.y138_c00300{bottom:229.344997pt;}
.y139_c00300{bottom:230.199419pt;}
.y13a_c00300{bottom:230.495701pt;}
.y121_c00300{bottom:244.559957pt;}
.y122_c00300{bottom:244.743904pt;}
.y123_c00300{bottom:245.372453pt;}
.y124_c00300{bottom:245.682037pt;}
.y125_c00300{bottom:246.425200pt;}
.y126_c00300{bottom:246.737168pt;}
.y127_c00300{bottom:247.406192pt;}
.y128_c00300{bottom:247.796240pt;}
.y129_c00300{bottom:248.253781pt;}
.y12a_c00300{bottom:249.113328pt;}
.y12b_c00300{bottom:250.066640pt;}
.y12c_c00300{bottom:250.457376pt;}
.y12d_c00300{bottom:250.913749pt;}
.y115_c00300{bottom:265.921333pt;}
.y116_c00300{bottom:266.416757pt;}
.y117_c00300{bottom:266.787733pt;}
.y118_c00300{bottom:267.128213pt;}
.y119_c00300{bottom:267.770437pt;}
.y11a_c00300{bottom:268.055541pt;}
.y11b_c00300{bottom:268.360869pt;}
.y11c_c00300{bottom:268.815317pt;}
.y11d_c00300{bottom:269.066069pt;}
.y11e_c00300{bottom:269.400709pt;}
.y11f_c00300{bottom:270.296293pt;}
.y120_c00300{bottom:270.713973pt;}
.y109_c00300{bottom:286.774304pt;}
.y10a_c00300{bottom:287.462592pt;}
.y10b_c00300{bottom:287.713397pt;}
.y10c_c00300{bottom:287.932779pt;}
.y10d_c00300{bottom:288.408021pt;}
.y10e_c00300{bottom:289.160427pt;}
.y10f_c00300{bottom:289.406315pt;}
.y110_c00300{bottom:289.849717pt;}
.y111_c00300{bottom:290.171787pt;}
.y112_c00300{bottom:290.366805pt;}
.y113_c00300{bottom:290.894784pt;}
.y114_c00300{bottom:291.204107pt;}
.y101_c00300{bottom:307.415456pt;}
.y102_c00300{bottom:307.771168pt;}
.y103_c00300{bottom:309.036053pt;}
.y104_c00300{bottom:309.513525pt;}
.y105_c00300{bottom:309.918549pt;}
.y106_c00300{bottom:310.766176pt;}
.y107_c00300{bottom:311.236736pt;}
.y108_c00300{bottom:311.391392pt;}
.yf5_c00300{bottom:327.818347pt;}
.yf6_c00300{bottom:328.103627pt;}
.yf7_c00300{bottom:328.609611pt;}
.yf8_c00300{bottom:328.883456pt;}
.yf9_c00300{bottom:329.049472pt;}
.yfa_c00300{bottom:329.503531pt;}
.yfb_c00300{bottom:330.269205pt;}
.yfc_c00300{bottom:330.497291pt;}
.yfd_c00300{bottom:330.789813pt;}
.yfe_c00300{bottom:331.362933pt;}
.yff_c00300{bottom:331.657920pt;}
.y100_c00300{bottom:331.831189pt;}
.ye8_c00300{bottom:347.738709pt;}
.ye9_c00300{bottom:347.833728pt;}
.yea_c00300{bottom:348.434240pt;}
.yeb_c00300{bottom:349.199840pt;}
.yec_c00300{bottom:349.506464pt;}
.yed_c00300{bottom:349.842357pt;}
.yee_c00300{bottom:350.193579pt;}
.yef_c00300{bottom:350.418101pt;}
.yf0_c00300{bottom:350.837653pt;}
.yf1_c00300{bottom:351.075616pt;}
.yf2_c00300{bottom:351.296949pt;}
.yf3_c00300{bottom:351.598176pt;}
.yf4_c00300{bottom:351.872672pt;}
.ydc_c00300{bottom:368.859744pt;}
.ydd_c00300{bottom:369.244597pt;}
.yde_c00300{bottom:369.462635pt;}
.ydf_c00300{bottom:369.763467pt;}
.ye0_c00300{bottom:370.016192pt;}
.ye1_c00300{bottom:370.400907pt;}
.ye2_c00300{bottom:371.094240pt;}
.ye3_c00300{bottom:371.409547pt;}
.ye4_c00300{bottom:371.582165pt;}
.ye5_c00300{bottom:371.876448pt;}
.ye6_c00300{bottom:372.120459pt;}
.ye7_c00300{bottom:372.395317pt;}
.yce_c00300{bottom:388.782400pt;}
.ycf_c00300{bottom:389.146987pt;}
.yd0_c00300{bottom:389.411371pt;}
.yd1_c00300{bottom:389.709579pt;}
.yd2_c00300{bottom:389.942357pt;}
.yd3_c00300{bottom:390.430667pt;}
.yd4_c00300{bottom:390.694603pt;}
.yd5_c00300{bottom:391.315691pt;}
.yd6_c00300{bottom:391.533749pt;}
.yd7_c00300{bottom:391.772160pt;}
.yd8_c00300{bottom:392.096480pt;}
.yd9_c00300{bottom:392.516331pt;}
.yda_c00300{bottom:392.756416pt;}
.ydb_c00300{bottom:392.961899pt;}
.yc3_c00300{bottom:409.424096pt;}
.yc4_c00300{bottom:409.623307pt;}
.yc5_c00300{bottom:410.020149pt;}
.yc6_c00300{bottom:410.385557pt;}
.yc7_c00300{bottom:410.781013pt;}
.yc8_c00300{bottom:411.021184pt;}
.yc9_c00300{bottom:411.390709pt;}
.yca_c00300{bottom:411.626965pt;}
.ycb_c00300{bottom:411.974283pt;}
.ycc_c00300{bottom:412.518347pt;}
.ycd_c00300{bottom:412.682315pt;}
.yb7_c00300{bottom:429.587424pt;}
.yb8_c00300{bottom:430.453675pt;}
.yb9_c00300{bottom:430.486336pt;}
.yba_c00300{bottom:430.858784pt;}
.ybb_c00300{bottom:431.014411pt;}
.ybc_c00300{bottom:431.213771pt;}
.ybd_c00300{bottom:431.472469pt;}
.ybe_c00300{bottom:431.704992pt;}
.ybf_c00300{bottom:432.278688pt;}
.yc0_c00300{bottom:432.783104pt;}
.yc1_c00300{bottom:432.955115pt;}
.yc2_c00300{bottom:433.591317pt;}
.yab_c00300{bottom:449.748661pt;}
.yac_c00300{bottom:450.094379pt;}
.yad_c00300{bottom:450.380085pt;}
.yae_c00300{bottom:450.635253pt;}
.yaf_c00300{bottom:451.211371pt;}
.yb0_c00300{bottom:451.657568pt;}
.yb1_c00300{bottom:451.921387pt;}
.yb2_c00300{bottom:452.147616pt;}
.yb3_c00300{bottom:452.523872pt;}
.yb4_c00300{bottom:453.001536pt;}
.yb5_c00300{bottom:453.383371pt;}
.yb6_c00300{bottom:453.650272pt;}
.y9e_c00300{bottom:469.672864pt;}
.y9f_c00300{bottom:469.877483pt;}
.ya0_c00300{bottom:470.671947pt;}
.ya1_c00300{bottom:470.865397pt;}
.ya2_c00300{bottom:471.317525pt;}
.ya3_c00300{bottom:471.648480pt;}
.ya4_c00300{bottom:472.325696pt;}
.ya5_c00300{bottom:472.612928pt;}
.ya6_c00300{bottom:473.038667pt;}
.ya7_c00300{bottom:473.596725pt;}
.ya8_c00300{bottom:473.867915pt;}
.ya9_c00300{bottom:474.328277pt;}
.yaa_c00300{bottom:474.574091pt;}
.y92_c00300{bottom:490.314645pt;}
.y93_c00300{bottom:490.638528pt;}
.y94_c00300{bottom:491.039851pt;}
.y95_c00300{bottom:491.594912pt;}
.y96_c00300{bottom:491.819915pt;}
.y97_c00300{bottom:492.192405pt;}
.y98_c00300{bottom:492.718763pt;}
.y99_c00300{bottom:493.107573pt;}
.y9a_c00300{bottom:493.508149pt;}
.y9b_c00300{bottom:493.728757pt;}
.y9c_c00300{bottom:494.138261pt;}
.y9d_c00300{bottom:494.410091pt;}
.y87_c00300{bottom:510.478528pt;}
.y88_c00300{bottom:511.001717pt;}
.y89_c00300{bottom:511.520512pt;}
.y8a_c00300{bottom:511.927979pt;}
.y8b_c00300{bottom:512.446816pt;}
.y8c_c00300{bottom:513.006272pt;}
.y8d_c00300{bottom:513.373995pt;}
.y8e_c00300{bottom:513.825611pt;}
.y8f_c00300{bottom:514.206453pt;}
.y90_c00300{bottom:514.516192pt;}
.y91_c00300{bottom:514.845024pt;}
.y7e_c00300{bottom:529.925376pt;}
.y7f_c00300{bottom:530.331531pt;}
.y80_c00300{bottom:530.690336pt;}
.y81_c00300{bottom:531.031275pt;}
.y82_c00300{bottom:531.271403pt;}
.y83_c00300{bottom:531.519093pt;}
.y84_c00300{bottom:532.016427pt;}
.y85_c00300{bottom:532.541493pt;}
.y86_c00300{bottom:534.285280pt;}
.y77_c00300{bottom:549.113333pt;}
.y78_c00300{bottom:550.310581pt;}
.y79_c00300{bottom:550.877899pt;}
.y7a_c00300{bottom:551.163125pt;}
.y7b_c00300{bottom:551.727648pt;}
.y7c_c00300{bottom:552.051573pt;}
.y7d_c00300{bottom:552.320160pt;}
.y155_c00300{bottom:554.025333pt;}
.y6d_c00300{bottom:570.232640pt;}
.y6e_c00300{bottom:570.646880pt;}
.y6f_c00300{bottom:571.028973pt;}
.y70_c00300{bottom:571.664013pt;}
.y71_c00300{bottom:572.238187pt;}
.y72_c00300{bottom:572.435093pt;}
.y73_c00300{bottom:572.656227pt;}
.y74_c00300{bottom:572.885093pt;}
.y75_c00300{bottom:573.875147pt;}
.y76_c00300{bottom:574.059200pt;}
.y60_c00300{bottom:590.874027pt;}
.y61_c00300{bottom:591.226440pt;}
.y62_c00300{bottom:591.379520pt;}
.y63_c00300{bottom:591.809187pt;}
.y64_c00300{bottom:592.059640pt;}
.y65_c00300{bottom:592.446493pt;}
.y66_c00300{bottom:592.636453pt;}
.y67_c00300{bottom:593.252427pt;}
.y68_c00300{bottom:593.474173pt;}
.y69_c00300{bottom:593.774560pt;}
.y6a_c00300{bottom:593.934840pt;}
.y6b_c00300{bottom:594.356200pt;}
.y6c_c00300{bottom:594.677920pt;}
.y59_c00300{bottom:616.808133pt;}
.y5a_c00300{bottom:616.808360pt;}
.y58_c00300{bottom:616.808413pt;}
.y57_c00300{bottom:616.808427pt;}
.y56_c00300{bottom:616.808440pt;}
.y5e_c00300{bottom:616.808560pt;}
.y5d_c00300{bottom:616.808587pt;}
.y5b_c00300{bottom:616.808613pt;}
.y5c_c00300{bottom:616.808867pt;}
.y55_c00300{bottom:616.808987pt;}
.y5f_c00300{bottom:616.809080pt;}
.y54_c00300{bottom:616.809267pt;}
.y53_c00300{bottom:616.809560pt;}
.y52_c00300{bottom:616.809827pt;}
.y42_c00300{bottom:632.157293pt;}
.y43_c00300{bottom:632.444493pt;}
.y44_c00300{bottom:632.684813pt;}
.y45_c00300{bottom:632.976013pt;}
.y46_c00300{bottom:633.174160pt;}
.y47_c00300{bottom:633.339280pt;}
.y48_c00300{bottom:633.534533pt;}
.y49_c00300{bottom:633.717653pt;}
.y4a_c00300{bottom:634.149787pt;}
.y4b_c00300{bottom:634.236040pt;}
.y4c_c00300{bottom:634.389467pt;}
.y4d_c00300{bottom:634.775827pt;}
.y4e_c00300{bottom:634.973787pt;}
.y4f_c00300{bottom:635.357920pt;}
.y50_c00300{bottom:635.546520pt;}
.y51_c00300{bottom:635.682053pt;}
.y37_c00300{bottom:652.557773pt;}
.y38_c00300{bottom:652.739760pt;}
.y39_c00300{bottom:653.208147pt;}
.y3a_c00300{bottom:653.461413pt;}
.y3b_c00300{bottom:653.869613pt;}
.y3c_c00300{bottom:654.032267pt;}
.y3d_c00300{bottom:654.437987pt;}
.y3e_c00300{bottom:654.872253pt;}
.y3f_c00300{bottom:655.067347pt;}
.y40_c00300{bottom:655.710173pt;}
.y41_c00300{bottom:655.924267pt;}
.y2c_c00300{bottom:672.000333pt;}
.y2d_c00300{bottom:672.450267pt;}
.y2e_c00300{bottom:672.769573pt;}
.y2f_c00300{bottom:673.352787pt;}
.y30_c00300{bottom:673.693960pt;}
.y31_c00300{bottom:674.185933pt;}
.y32_c00300{bottom:674.454773pt;}
.y33_c00300{bottom:675.011213pt;}
.y34_c00300{bottom:675.340360pt;}
.y35_c00300{bottom:675.493813pt;}
.y36_c00300{bottom:675.909280pt;}
.y1f_c00300{bottom:692.400000pt;}
.y20_c00300{bottom:692.743493pt;}
.y21_c00300{bottom:693.127813pt;}
.y22_c00300{bottom:693.315053pt;}
.y23_c00300{bottom:693.497547pt;}
.y24_c00300{bottom:693.881507pt;}
.y25_c00300{bottom:694.299280pt;}
.y26_c00300{bottom:694.817600pt;}
.y27_c00300{bottom:695.153613pt;}
.y28_c00300{bottom:695.957213pt;}
.y29_c00300{bottom:696.262427pt;}
.y2a_c00300{bottom:696.447240pt;}
.y2b_c00300{bottom:696.723253pt;}
.y11_c00300{bottom:712.321387pt;}
.y12_c00300{bottom:712.644987pt;}
.y13_c00300{bottom:712.772680pt;}
.y14_c00300{bottom:713.017880pt;}
.y15_c00300{bottom:713.653493pt;}
.y16_c00300{bottom:713.896307pt;}
.y17_c00300{bottom:714.268333pt;}
.y18_c00300{bottom:714.657613pt;}
.y19_c00300{bottom:715.252347pt;}
.y1a_c00300{bottom:715.487267pt;}
.y1b_c00300{bottom:715.773187pt;}
.y1c_c00300{bottom:716.193160pt;}
.y1d_c00300{bottom:716.392307pt;}
.y1e_c00300{bottom:716.850800pt;}
.y6_c00300{bottom:732.721333pt;}
.y7_c00300{bottom:733.205560pt;}
.y8_c00300{bottom:734.153133pt;}
.y9_c00300{bottom:734.451147pt;}
.ya_c00300{bottom:734.627640pt;}
.yb_c00300{bottom:734.981933pt;}
.yc_c00300{bottom:735.301987pt;}
.yd_c00300{bottom:736.171267pt;}
.ye_c00300{bottom:736.339613pt;}
.yf_c00300{bottom:736.563187pt;}
.y10_c00300{bottom:736.983213pt;}
.y1_c00300{bottom:771.341333pt;}
.y2_c00300{bottom:772.436429pt;}
.y3_c00300{bottom:772.951109pt;}
.y4_c00300{bottom:774.209129pt;}
.y5_c00300{bottom:774.621773pt;}
.h5_c00300{height:54.136040pt;}
.h13_c00300{height:58.800000pt;}
.h15_c00300{height:58.804968pt;}
.he_c00300{height:58.807526pt;}
.h10_c00300{height:59.737634pt;}
.hd_c00300{height:60.674432pt;}
.h7_c00300{height:61.603080pt;}
.h11_c00300{height:61.604435pt;}
.h9_c00300{height:61.607884pt;}
.h4_c00300{height:62.536460pt;}
.hf_c00300{height:62.541337pt;}
.h6_c00300{height:63.469840pt;}
.h12_c00300{height:63.471236pt;}
.h14_c00300{height:63.472029pt;}
.hb_c00300{height:63.474790pt;}
.hc_c00300{height:64.408243pt;}
.h3_c00300{height:65.336600pt;}
.h8_c00300{height:68.136740pt;}
.ha_c00300{height:69.075507pt;}
.h2_c00300{height:131.605330pt;}
.h1_c00300{height:893.333333pt;}
.h0_c00300{height:893.466667pt;}
.w0_c00300{width:624.480000pt;}
.w1_c00300{width:624.666667pt;}
.x0_c00300{left:0.000000pt;}
.xb6_c00300{left:20.573920pt;}
.x44_c00300{left:25.683547pt;}
.x6_c00300{left:28.265333pt;}
.x11_c00300{left:31.274947pt;}
.xb7_c00300{left:33.680267pt;}
.x4e_c00300{left:37.564067pt;}
.xc4_c00300{left:39.025893pt;}
.x1d_c00300{left:41.813333pt;}
.x12_c00300{left:63.634947pt;}
.x39_c00300{left:67.264707pt;}
.x9c_c00300{left:69.734891pt;}
.x5f_c00300{left:75.321333pt;}
.x7_c00300{left:76.688000pt;}
.x67_c00300{left:77.646709pt;}
.xb8_c00300{left:78.613861pt;}
.xc5_c00300{left:80.023227pt;}
.xd3_c00300{left:85.574528pt;}
.x4f_c00300{left:93.713960pt;}
.x74_c00300{left:94.960960pt;}
.x30_c00300{left:96.591373pt;}
.x45_c00300{left:99.606947pt;}
.x13_c00300{left:100.924280pt;}
.x1_c00300{left:104.854667pt;}
.xa6_c00300{left:106.949163pt;}
.x28_c00300{left:108.573627pt;}
.x60_c00300{left:110.778667pt;}
.x7d_c00300{left:112.171147pt;}
.xac_c00300{left:113.664117pt;}
.x1e_c00300{left:114.594667pt;}
.xcc_c00300{left:116.080000pt;}
.xbe_c00300{left:117.760880pt;}
.x59_c00300{left:119.398680pt;}
.x98_c00300{left:120.605237pt;}
.x46_c00300{left:127.688427pt;}
.x61_c00300{left:128.605333pt;}
.xce_c00300{left:130.708607pt;}
.x1f_c00300{left:133.318667pt;}
.x63_c00300{left:135.275893pt;}
.xb3_c00300{left:137.674667pt;}
.xc6_c00300{left:139.829893pt;}
.x50_c00300{left:141.481107pt;}
.x8a_c00300{left:144.097675pt;}
.x31_c00300{left:148.630560pt;}
.x6c_c00300{left:150.618027pt;}
.x20_c00300{left:151.568000pt;}
.xb9_c00300{left:153.785387pt;}
.xa7_c00300{left:157.578027pt;}
.x3a_c00300{left:158.499867pt;}
.x64_c00300{left:160.008928pt;}
.x75_c00300{left:161.202539pt;}
.x90_c00300{left:162.349899pt;}
.xaf_c00300{left:163.553728pt;}
.x14_c00300{left:164.485613pt;}
.x29_c00300{left:166.894960pt;}
.x51_c00300{left:169.326720pt;}
.x68_c00300{left:170.296939pt;}
.x8_c00300{left:171.445333pt;}
.xbf_c00300{left:173.867547pt;}
.x32_c00300{left:176.757507pt;}
.x99_c00300{left:178.207680pt;}
.x3b_c00300{left:179.145613pt;}
.x62_c00300{left:184.133333pt;}
.x15_c00300{left:188.766947pt;}
.x21_c00300{left:189.964000pt;}
.xb4_c00300{left:191.193333pt;}
.x47_c00300{left:196.092600pt;}
.xcf_c00300{left:198.333473pt;}
.x9_c00300{left:201.246667pt;}
.x9d_c00300{left:202.482827pt;}
.x3c_c00300{left:203.604773pt;}
.x84_c00300{left:204.861227pt;}
.x6d_c00300{left:206.064672pt;}
.x65_c00300{left:209.680352pt;}
.x52_c00300{left:212.279147pt;}
.xc0_c00300{left:213.487547pt;}
.x76_c00300{left:214.971307pt;}
.xa_c00300{left:218.896000pt;}
.x85_c00300{left:220.422720pt;}
.x33_c00300{left:222.111293pt;}
.x7e_c00300{left:223.827189pt;}
.x2_c00300{left:226.532000pt;}
.x6e_c00300{left:228.629515pt;}
.x9e_c00300{left:230.315712pt;}
.x22_c00300{left:231.741333pt;}
.x48_c00300{left:233.535013pt;}
.x34_c00300{left:240.110133pt;}
.x77_c00300{left:242.574411pt;}
.xa8_c00300{left:246.873248pt;}
.x9a_c00300{left:249.055616pt;}
.x2a_c00300{left:250.209627pt;}
.x91_c00300{left:251.921067pt;}
.xb_c00300{left:254.325333pt;}
.x8b_c00300{left:255.258112pt;}
.xbb_c00300{left:259.137232pt;}
.x9f_c00300{left:260.811477pt;}
.x66_c00300{left:262.252075pt;}
.x16_c00300{left:264.897613pt;}
.x6f_c00300{left:265.830411pt;}
.x7f_c00300{left:268.468811pt;}
.xc7_c00300{left:271.099227pt;}
.xc1_c00300{left:274.491547pt;}
.x5a_c00300{left:275.612240pt;}
.x2b_c00300{left:277.093627pt;}
.x69_c00300{left:278.033931pt;}
.x3d_c00300{left:280.464973pt;}
.xbc_c00300{left:282.415627pt;}
.x3_c00300{left:283.718667pt;}
.x35_c00300{left:285.215920pt;}
.xc_c00300{left:286.330667pt;}
.xad_c00300{left:287.911509pt;}
.x86_c00300{left:289.590709pt;}
.x3e_c00300{left:291.223853pt;}
.xa0_c00300{left:292.682016pt;}
.x80_c00300{left:294.876683pt;}
.x8c_c00300{left:296.274699pt;}
.x78_c00300{left:298.987349pt;}
.x5b_c00300{left:300.125813pt;}
.x53_c00300{left:301.806707pt;}
.x92_c00300{left:308.326901pt;}
.x3f_c00300{left:310.433573pt;}
.xa1_c00300{left:313.132992pt;}
.x49_c00300{left:314.899147pt;}
.x23_c00300{left:317.174667pt;}
.x70_c00300{left:318.399445pt;}
.x79_c00300{left:322.940885pt;}
.x17_c00300{left:324.370947pt;}
.x5c_c00300{left:325.546067pt;}
.x54_c00300{left:326.514960pt;}
.x93_c00300{left:328.207168pt;}
.x2c_c00300{left:332.737627pt;}
.x4a_c00300{left:336.259947pt;}
.xd0_c00300{left:338.501960pt;}
.xc8_c00300{left:341.685893pt;}
.xd4_c00300{left:342.648540pt;}
.xba_c00300{left:345.791445pt;}
.x87_c00300{left:346.952213pt;}
.x18_c00300{left:347.862947pt;}
.x94_c00300{left:349.859563pt;}
.xa2_c00300{left:351.274709pt;}
.xcd_c00300{left:352.674667pt;}
.x36_c00300{left:355.085947pt;}
.x71_c00300{left:357.287179pt;}
.x40_c00300{left:358.670533pt;}
.x55_c00300{left:359.887293pt;}
.x8d_c00300{left:361.088619pt;}
.x2d_c00300{left:365.652293pt;}
.xc2_c00300{left:367.607547pt;}
.x4b_c00300{left:372.022187pt;}
.xd_c00300{left:373.258667pt;}
.xa9_c00300{left:375.528267pt;}
.x19_c00300{left:376.454947pt;}
.x56_c00300{left:377.648800pt;}
.x95_c00300{left:379.381931pt;}
.x2e_c00300{left:380.997627pt;}
.xd5_c00300{left:382.449060pt;}
.x41_c00300{left:383.400360pt;}
.xb0_c00300{left:387.054272pt;}
.xe_c00300{left:390.093333pt;}
.xd1_c00300{left:391.365320pt;}
.xa3_c00300{left:393.067392pt;}
.x4c_c00300{left:395.063160pt;}
.x24_c00300{left:397.534667pt;}
.xb5_c00300{left:401.681333pt;}
.x81_c00300{left:402.896384pt;}
.x7a_c00300{left:405.016821pt;}
.xc9_c00300{left:409.367227pt;}
.xd2_c00300{left:411.298913pt;}
.xf_c00300{left:412.450667pt;}
.x88_c00300{left:414.652053pt;}
.x96_c00300{left:417.542315pt;}
.x1a_c00300{left:418.452280pt;}
.x72_c00300{left:419.450485pt;}
.xa4_c00300{left:420.396235pt;}
.x8e_c00300{left:421.599403pt;}
.x2f_c00300{left:422.544293pt;}
.x4_c00300{left:423.498667pt;}
.x57_c00300{left:424.451933pt;}
.x37_c00300{left:426.569333pt;}
.x25_c00300{left:428.056000pt;}
.x6a_c00300{left:429.168459pt;}
.x42_c00300{left:431.414653pt;}
.xaa_c00300{left:432.853771pt;}
.xca_c00300{left:434.041893pt;}
.x5d_c00300{left:435.485827pt;}
.x4d_c00300{left:437.064693pt;}
.x1b_c00300{left:438.366947pt;}
.x8f_c00300{left:439.849451pt;}
.x82_c00300{left:441.014699pt;}
.xbd_c00300{left:442.984373pt;}
.xa5_c00300{left:445.387573pt;}
.x26_c00300{left:446.537333pt;}
.x38_c00300{left:450.378907pt;}
.xb1_c00300{left:452.830208pt;}
.x10_c00300{left:454.453333pt;}
.x5e_c00300{left:455.891360pt;}
.x97_c00300{left:458.060224pt;}
.x58_c00300{left:460.224293pt;}
.x6b_c00300{left:462.056949pt;}
.xc3_c00300{left:464.578213pt;}
.x7b_c00300{left:465.992725pt;}
.x83_c00300{left:467.698592pt;}
.x5_c00300{left:469.348000pt;}
.x9b_c00300{left:470.564405pt;}
.x43_c00300{left:471.962133pt;}
.x27_c00300{left:474.138667pt;}
.xae_c00300{left:475.629515pt;}
.x89_c00300{left:478.254155pt;}
.xab_c00300{left:479.707605pt;}
.xb2_c00300{left:480.915115pt;}
.xcb_c00300{left:482.160000pt;}
.x1c_c00300{left:484.216280pt;}
.x7c_c00300{left:486.440693pt;}
.x73_c00300{left:487.623701pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m3b_c00301{transform:matrix(0.034358,-0.000344,0.002500,0.249988,0,0);-ms-transform:matrix(0.034358,-0.000344,0.002500,0.249988,0,0);-webkit-transform:matrix(0.034358,-0.000344,0.002500,0.249988,0,0);}
.m64_c00301{transform:matrix(0.051297,-0.000513,0.002500,0.249988,0,0);-ms-transform:matrix(0.051297,-0.000513,0.002500,0.249988,0,0);-webkit-transform:matrix(0.051297,-0.000513,0.002500,0.249988,0,0);}
.m3c_c00301{transform:matrix(0.085446,-0.000854,0.002500,0.249988,0,0);-ms-transform:matrix(0.085446,-0.000854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.085446,-0.000854,0.002500,0.249988,0,0);}
.m72_c00301{transform:matrix(0.088351,-0.000884,0.002500,0.249988,0,0);-ms-transform:matrix(0.088351,-0.000884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.088351,-0.000884,0.002500,0.249988,0,0);}
.m2d_c00301{transform:matrix(0.092445,-0.000924,0.002500,0.249988,0,0);-ms-transform:matrix(0.092445,-0.000924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.092445,-0.000924,0.002500,0.249988,0,0);}
.m82_c00301{transform:matrix(0.103365,-0.001034,0.002500,0.249988,0,0);-ms-transform:matrix(0.103365,-0.001034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.103365,-0.001034,0.002500,0.249988,0,0);}
.m71_c00301{transform:matrix(0.105980,-0.001060,0.002500,0.249988,0,0);-ms-transform:matrix(0.105980,-0.001060,0.002500,0.249988,0,0);-webkit-transform:matrix(0.105980,-0.001060,0.002500,0.249988,0,0);}
.m137_c00301{transform:matrix(0.108895,-0.001089,0.002500,0.249988,0,0);-ms-transform:matrix(0.108895,-0.001089,0.002500,0.249988,0,0);-webkit-transform:matrix(0.108895,-0.001089,0.002500,0.249988,0,0);}
.m47_c00301{transform:matrix(0.117454,-0.001175,0.002500,0.249988,0,0);-ms-transform:matrix(0.117454,-0.001175,0.002500,0.249988,0,0);-webkit-transform:matrix(0.117454,-0.001175,0.002500,0.249988,0,0);}
.m8b_c00301{transform:matrix(0.127054,-0.001271,0.002500,0.249988,0,0);-ms-transform:matrix(0.127054,-0.001271,0.002500,0.249988,0,0);-webkit-transform:matrix(0.127054,-0.001271,0.002500,0.249988,0,0);}
.m146_c00301{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m10c_c00301{transform:matrix(0.136073,-0.001361,0.002500,0.249988,0,0);-ms-transform:matrix(0.136073,-0.001361,0.002500,0.249988,0,0);-webkit-transform:matrix(0.136073,-0.001361,0.002500,0.249988,0,0);}
.m1c_c00301{transform:matrix(0.138348,-0.001383,0.002500,0.249988,0,0);-ms-transform:matrix(0.138348,-0.001383,0.002500,0.249988,0,0);-webkit-transform:matrix(0.138348,-0.001383,0.002500,0.249988,0,0);}
.m15f_c00301{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m15e_c00301{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m160_c00301{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m152_c00301{transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);}
.m166_c00301{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);}
.m2f_c00301{transform:matrix(0.143483,-0.001435,0.002500,0.249988,0,0);-ms-transform:matrix(0.143483,-0.001435,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143483,-0.001435,0.002500,0.249988,0,0);}
.m164_c00301{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.144818,-0.001448,0.002500,0.249988,0,0);-ms-transform:matrix(0.144818,-0.001448,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144818,-0.001448,0.002500,0.249988,0,0);}
.m123_c00301{transform:matrix(0.145323,-0.001453,0.002500,0.249988,0,0);-ms-transform:matrix(0.145323,-0.001453,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145323,-0.001453,0.002500,0.249988,0,0);}
.m12a_c00301{transform:matrix(0.145428,-0.001454,0.002500,0.249988,0,0);-ms-transform:matrix(0.145428,-0.001454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145428,-0.001454,0.002500,0.249988,0,0);}
.m118_c00301{transform:matrix(0.145783,-0.001458,0.002500,0.249988,0,0);-ms-transform:matrix(0.145783,-0.001458,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145783,-0.001458,0.002500,0.249988,0,0);}
.m127_c00301{transform:matrix(0.146153,-0.001462,0.002500,0.249988,0,0);-ms-transform:matrix(0.146153,-0.001462,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146153,-0.001462,0.002500,0.249988,0,0);}
.m11d_c00301{transform:matrix(0.146348,-0.001463,0.002500,0.249988,0,0);-ms-transform:matrix(0.146348,-0.001463,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146348,-0.001463,0.002500,0.249988,0,0);}
.me0_c00301{transform:matrix(0.148443,-0.001484,0.002500,0.249988,0,0);-ms-transform:matrix(0.148443,-0.001484,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148443,-0.001484,0.002500,0.249988,0,0);}
.mec_c00301{transform:matrix(0.149208,-0.001492,0.002500,0.249988,0,0);-ms-transform:matrix(0.149208,-0.001492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149208,-0.001492,0.002500,0.249988,0,0);}
.m24_c00301{transform:matrix(0.149508,-0.001495,0.002500,0.249988,0,0);-ms-transform:matrix(0.149508,-0.001495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149508,-0.001495,0.002500,0.249988,0,0);}
.me9_c00301{transform:matrix(0.149843,-0.001498,0.002500,0.249988,0,0);-ms-transform:matrix(0.149843,-0.001498,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149843,-0.001498,0.002500,0.249988,0,0);}
.m86_c00301{transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);-ms-transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149868,-0.001499,0.002500,0.249988,0,0);}
.m15d_c00301{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);}
.m3e_c00301{transform:matrix(0.153022,-0.001530,0.002500,0.249988,0,0);-ms-transform:matrix(0.153022,-0.001530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153022,-0.001530,0.002500,0.249988,0,0);}
.m9a_c00301{transform:matrix(0.153482,-0.001535,0.002500,0.249988,0,0);-ms-transform:matrix(0.153482,-0.001535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153482,-0.001535,0.002500,0.249988,0,0);}
.maf_c00301{transform:matrix(0.154797,-0.001548,0.002500,0.249988,0,0);-ms-transform:matrix(0.154797,-0.001548,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154797,-0.001548,0.002500,0.249988,0,0);}
.m4e_c00301{transform:matrix(0.156042,-0.001560,0.002500,0.249988,0,0);-ms-transform:matrix(0.156042,-0.001560,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156042,-0.001560,0.002500,0.249988,0,0);}
.m94_c00301{transform:matrix(0.157057,-0.001571,0.002500,0.249988,0,0);-ms-transform:matrix(0.157057,-0.001571,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157057,-0.001571,0.002500,0.249988,0,0);}
.m116_c00301{transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);-ms-transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);}
.m119_c00301{transform:matrix(0.157847,-0.001578,0.002500,0.249988,0,0);-ms-transform:matrix(0.157847,-0.001578,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157847,-0.001578,0.002500,0.249988,0,0);}
.m153_c00301{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);}
.m11_c00301{transform:matrix(0.158927,-0.001589,0.002500,0.249988,0,0);-ms-transform:matrix(0.158927,-0.001589,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158927,-0.001589,0.002500,0.249988,0,0);}
.meb_c00301{transform:matrix(0.159567,-0.001596,0.002500,0.249988,0,0);-ms-transform:matrix(0.159567,-0.001596,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159567,-0.001596,0.002500,0.249988,0,0);}
.mef_c00301{transform:matrix(0.159972,-0.001600,0.002500,0.249988,0,0);-ms-transform:matrix(0.159972,-0.001600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159972,-0.001600,0.002500,0.249988,0,0);}
.m16_c00301{transform:matrix(0.160122,-0.001601,0.002500,0.249988,0,0);-ms-transform:matrix(0.160122,-0.001601,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160122,-0.001601,0.002500,0.249988,0,0);}
.m4c_c00301{transform:matrix(0.160262,-0.001603,0.002500,0.249988,0,0);-ms-transform:matrix(0.160262,-0.001603,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160262,-0.001603,0.002500,0.249988,0,0);}
.m9c_c00301{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);}
.m38_c00301{transform:matrix(0.160722,-0.001607,0.002500,0.249988,0,0);-ms-transform:matrix(0.160722,-0.001607,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160722,-0.001607,0.002500,0.249988,0,0);}
.m148_c00301{transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);}
.m14d_c00301{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);}
.m39_c00301{transform:matrix(0.161232,-0.001612,0.002500,0.249988,0,0);-ms-transform:matrix(0.161232,-0.001612,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161232,-0.001612,0.002500,0.249988,0,0);}
.mc_c00301{transform:matrix(0.161367,-0.001614,0.002500,0.249988,0,0);-ms-transform:matrix(0.161367,-0.001614,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161367,-0.001614,0.002500,0.249988,0,0);}
.m2c_c00301{transform:matrix(0.161392,-0.001614,0.002500,0.249988,0,0);-ms-transform:matrix(0.161392,-0.001614,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161392,-0.001614,0.002500,0.249988,0,0);}
.md2_c00301{transform:matrix(0.162112,-0.001621,0.002500,0.249988,0,0);-ms-transform:matrix(0.162112,-0.001621,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162112,-0.001621,0.002500,0.249988,0,0);}
.mf0_c00301{transform:matrix(0.162217,-0.001622,0.002500,0.249988,0,0);-ms-transform:matrix(0.162217,-0.001622,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162217,-0.001622,0.002500,0.249988,0,0);}
.mea_c00301{transform:matrix(0.162372,-0.001624,0.002500,0.249988,0,0);-ms-transform:matrix(0.162372,-0.001624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162372,-0.001624,0.002500,0.249988,0,0);}
.m126_c00301{transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);-ms-transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162377,-0.001624,0.002500,0.249988,0,0);}
.m84_c00301{transform:matrix(0.163147,-0.001631,0.002500,0.249988,0,0);-ms-transform:matrix(0.163147,-0.001631,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163147,-0.001631,0.002500,0.249988,0,0);}
.m4_c00301{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);}
.m139_c00301{transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);}
.m169_c00301{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);}
.m33_c00301{transform:matrix(0.164917,-0.001649,0.002500,0.249988,0,0);-ms-transform:matrix(0.164917,-0.001649,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164917,-0.001649,0.002500,0.249988,0,0);}
.me3_c00301{transform:matrix(0.165222,-0.001652,0.002500,0.249988,0,0);-ms-transform:matrix(0.165222,-0.001652,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165222,-0.001652,0.002500,0.249988,0,0);}
.m168_c00301{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);}
.m120_c00301{transform:matrix(0.165382,-0.001654,0.002500,0.249988,0,0);-ms-transform:matrix(0.165382,-0.001654,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165382,-0.001654,0.002500,0.249988,0,0);}
.mb_c00301{transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);}
.m95_c00301{transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);-ms-transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);}
.m134_c00301{transform:matrix(0.166447,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166447,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166447,-0.001664,0.002500,0.249988,0,0);}
.m149_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);}
.m114_c00301{transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);}
.m32_c00301{transform:matrix(0.167992,-0.001680,0.002500,0.249988,0,0);-ms-transform:matrix(0.167992,-0.001680,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167992,-0.001680,0.002500,0.249988,0,0);}
.mf_c00301{transform:matrix(0.168182,-0.001682,0.002500,0.249988,0,0);-ms-transform:matrix(0.168182,-0.001682,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168182,-0.001682,0.002500,0.249988,0,0);}
.m14e_c00301{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);}
.m161_c00301{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);}
.m31_c00301{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);}
.mba_c00301{transform:matrix(0.169322,-0.001693,0.002500,0.249988,0,0);-ms-transform:matrix(0.169322,-0.001693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169322,-0.001693,0.002500,0.249988,0,0);}
.m97_c00301{transform:matrix(0.169557,-0.001696,0.002500,0.249988,0,0);-ms-transform:matrix(0.169557,-0.001696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169557,-0.001696,0.002500,0.249988,0,0);}
.m5d_c00301{transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);}
.mff_c00301{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);}
.mee_c00301{transform:matrix(0.169752,-0.001698,0.002500,0.249988,0,0);-ms-transform:matrix(0.169752,-0.001698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169752,-0.001698,0.002500,0.249988,0,0);}
.m101_c00301{transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);}
.m11e_c00301{transform:matrix(0.170006,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.170006,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170006,-0.001700,0.002500,0.249988,0,0);}
.m113_c00301{transform:matrix(0.170771,-0.001708,0.002500,0.249988,0,0);-ms-transform:matrix(0.170771,-0.001708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170771,-0.001708,0.002500,0.249988,0,0);}
.mf1_c00301{transform:matrix(0.171946,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171946,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171946,-0.001719,0.002500,0.249988,0,0);}
.m2e_c00301{transform:matrix(0.172091,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172091,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172091,-0.001721,0.002500,0.249988,0,0);}
.m4f_c00301{transform:matrix(0.172396,-0.001724,0.002500,0.249988,0,0);-ms-transform:matrix(0.172396,-0.001724,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172396,-0.001724,0.002500,0.249988,0,0);}
.m28_c00301{transform:matrix(0.173021,-0.001730,0.002500,0.249988,0,0);-ms-transform:matrix(0.173021,-0.001730,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173021,-0.001730,0.002500,0.249988,0,0);}
.m41_c00301{transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173106,-0.001731,0.002500,0.249988,0,0);}
.m108_c00301{transform:matrix(0.173191,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173191,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173191,-0.001732,0.002500,0.249988,0,0);}
.md6_c00301{transform:matrix(0.173241,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173241,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173241,-0.001732,0.002500,0.249988,0,0);}
.m13e_c00301{transform:matrix(0.173441,-0.001734,0.002500,0.249988,0,0);-ms-transform:matrix(0.173441,-0.001734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173441,-0.001734,0.002500,0.249988,0,0);}
.mf2_c00301{transform:matrix(0.173471,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173471,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173471,-0.001735,0.002500,0.249988,0,0);}
.ma6_c00301{transform:matrix(0.173696,-0.001737,0.002500,0.249988,0,0);-ms-transform:matrix(0.173696,-0.001737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173696,-0.001737,0.002500,0.249988,0,0);}
.m167_c00301{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);}
.m7e_c00301{transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);-ms-transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174536,-0.001745,0.002500,0.249988,0,0);}
.m155_c00301{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);}
.m10_c00301{transform:matrix(0.175006,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.175006,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175006,-0.001750,0.002500,0.249988,0,0);}
.m151_c00301{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);}
.m27_c00301{transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);}
.m78_c00301{transform:matrix(0.175456,-0.001755,0.002500,0.249988,0,0);-ms-transform:matrix(0.175456,-0.001755,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175456,-0.001755,0.002500,0.249988,0,0);}
.med_c00301{transform:matrix(0.175776,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175776,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175776,-0.001758,0.002500,0.249988,0,0);}
.m11c_c00301{transform:matrix(0.176146,-0.001761,0.002500,0.249988,0,0);-ms-transform:matrix(0.176146,-0.001761,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176146,-0.001761,0.002500,0.249988,0,0);}
.m8a_c00301{transform:matrix(0.176416,-0.001764,0.002500,0.249988,0,0);-ms-transform:matrix(0.176416,-0.001764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176416,-0.001764,0.002500,0.249988,0,0);}
.m9e_c00301{transform:matrix(0.176501,-0.001765,0.002500,0.249988,0,0);-ms-transform:matrix(0.176501,-0.001765,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176501,-0.001765,0.002500,0.249988,0,0);}
.mb7_c00301{transform:matrix(0.176751,-0.001768,0.002500,0.249988,0,0);-ms-transform:matrix(0.176751,-0.001768,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176751,-0.001768,0.002500,0.249988,0,0);}
.m1_c00301{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);}
.mac_c00301{transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);}
.mb9_c00301{transform:matrix(0.177056,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177056,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177056,-0.001771,0.002500,0.249988,0,0);}
.m2a_c00301{transform:matrix(0.177131,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177131,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177131,-0.001771,0.002500,0.249988,0,0);}
.m54_c00301{transform:matrix(0.177401,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177401,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177401,-0.001774,0.002500,0.249988,0,0);}
.mc1_c00301{transform:matrix(0.177816,-0.001778,0.002500,0.249988,0,0);-ms-transform:matrix(0.177816,-0.001778,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177816,-0.001778,0.002500,0.249988,0,0);}
.m88_c00301{transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);}
.m43_c00301{transform:matrix(0.178231,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178231,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178231,-0.001782,0.002500,0.249988,0,0);}
.ma_c00301{transform:matrix(0.178491,-0.001785,0.002500,0.249988,0,0);-ms-transform:matrix(0.178491,-0.001785,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178491,-0.001785,0.002500,0.249988,0,0);}
.m69_c00301{transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);}
.m14f_c00301{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);}
.mfb_c00301{transform:matrix(0.179316,-0.001793,0.002500,0.249988,0,0);-ms-transform:matrix(0.179316,-0.001793,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179316,-0.001793,0.002500,0.249988,0,0);}
.m87_c00301{transform:matrix(0.179361,-0.001794,0.002500,0.249988,0,0);-ms-transform:matrix(0.179361,-0.001794,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179361,-0.001794,0.002500,0.249988,0,0);}
.m8e_c00301{transform:matrix(0.180451,-0.001805,0.002500,0.249988,0,0);-ms-transform:matrix(0.180451,-0.001805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180451,-0.001805,0.002500,0.249988,0,0);}
.m125_c00301{transform:matrix(0.180661,-0.001807,0.002500,0.249988,0,0);-ms-transform:matrix(0.180661,-0.001807,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180661,-0.001807,0.002500,0.249988,0,0);}
.m147_c00301{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);}
.m130_c00301{transform:matrix(0.181071,-0.001811,0.002500,0.249988,0,0);-ms-transform:matrix(0.181071,-0.001811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181071,-0.001811,0.002500,0.249988,0,0);}
.m40_c00301{transform:matrix(0.181251,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181251,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181251,-0.001813,0.002500,0.249988,0,0);}
.m91_c00301{transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);}
.m138_c00301{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);}
.m11a_c00301{transform:matrix(0.181836,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181836,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181836,-0.001818,0.002500,0.249988,0,0);}
.m62_c00301{transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182656,-0.001827,0.002500,0.249988,0,0);}
.md_c00301{transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);}
.m50_c00301{transform:matrix(0.183091,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183091,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183091,-0.001831,0.002500,0.249988,0,0);}
.m89_c00301{transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);-ms-transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);}
.mc9_c00301{transform:matrix(0.183656,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183656,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183656,-0.001837,0.002500,0.249988,0,0);}
.m45_c00301{transform:matrix(0.183691,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183691,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183691,-0.001837,0.002500,0.249988,0,0);}
.m70_c00301{transform:matrix(0.183981,-0.001840,0.002500,0.249988,0,0);-ms-transform:matrix(0.183981,-0.001840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183981,-0.001840,0.002500,0.249988,0,0);}
.m128_c00301{transform:matrix(0.184056,-0.001841,0.002500,0.249988,0,0);-ms-transform:matrix(0.184056,-0.001841,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184056,-0.001841,0.002500,0.249988,0,0);}
.mf8_c00301{transform:matrix(0.184551,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184551,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184551,-0.001846,0.002500,0.249988,0,0);}
.mf3_c00301{transform:matrix(0.184721,-0.001847,0.002500,0.249988,0,0);-ms-transform:matrix(0.184721,-0.001847,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184721,-0.001847,0.002500,0.249988,0,0);}
.me7_c00301{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);}
.mb4_c00301{transform:matrix(0.184871,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184871,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184871,-0.001849,0.002500,0.249988,0,0);}
.mc4_c00301{transform:matrix(0.185001,-0.001850,0.002500,0.249988,0,0);-ms-transform:matrix(0.185001,-0.001850,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185001,-0.001850,0.002500,0.249988,0,0);}
.m14b_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);}
.md7_c00301{transform:matrix(0.185176,-0.001852,0.002500,0.249988,0,0);-ms-transform:matrix(0.185176,-0.001852,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185176,-0.001852,0.002500,0.249988,0,0);}
.m117_c00301{transform:matrix(0.185726,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185726,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185726,-0.001857,0.002500,0.249988,0,0);}
.mcc_c00301{transform:matrix(0.185871,-0.001859,0.002500,0.249988,0,0);-ms-transform:matrix(0.185871,-0.001859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185871,-0.001859,0.002500,0.249988,0,0);}
.m135_c00301{transform:matrix(0.186191,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186191,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186191,-0.001862,0.002500,0.249988,0,0);}
.m14_c00301{transform:matrix(0.186196,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186196,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186196,-0.001862,0.002500,0.249988,0,0);}
.ma7_c00301{transform:matrix(0.186536,-0.001865,0.002500,0.249988,0,0);-ms-transform:matrix(0.186536,-0.001865,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186536,-0.001865,0.002500,0.249988,0,0);}
.m52_c00301{transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186616,-0.001866,0.002500,0.249988,0,0);}
.m53_c00301{transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);}
.ma9_c00301{transform:matrix(0.186796,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186796,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186796,-0.001868,0.002500,0.249988,0,0);}
.m23_c00301{transform:matrix(0.186831,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186831,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186831,-0.001868,0.002500,0.249988,0,0);}
.m21_c00301{transform:matrix(0.186916,-0.001869,0.002500,0.249988,0,0);-ms-transform:matrix(0.186916,-0.001869,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186916,-0.001869,0.002500,0.249988,0,0);}
.mb0_c00301{transform:matrix(0.187016,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.187016,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187016,-0.001870,0.002500,0.249988,0,0);}
.m17_c00301{transform:matrix(0.187351,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187351,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187351,-0.001874,0.002500,0.249988,0,0);}
.m42_c00301{transform:matrix(0.187591,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187591,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187591,-0.001876,0.002500,0.249988,0,0);}
.m36_c00301{transform:matrix(0.187996,-0.001880,0.002500,0.249988,0,0);-ms-transform:matrix(0.187996,-0.001880,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187996,-0.001880,0.002500,0.249988,0,0);}
.mce_c00301{transform:matrix(0.188016,-0.001880,0.002500,0.249988,0,0);-ms-transform:matrix(0.188016,-0.001880,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188016,-0.001880,0.002500,0.249988,0,0);}
.me4_c00301{transform:matrix(0.188126,-0.001881,0.002500,0.249988,0,0);-ms-transform:matrix(0.188126,-0.001881,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188126,-0.001881,0.002500,0.249988,0,0);}
.m112_c00301{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);}
.me_c00301{transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);-ms-transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);}
.m12b_c00301{transform:matrix(0.188556,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188556,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188556,-0.001886,0.002500,0.249988,0,0);}
.ma8_c00301{transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);}
.mf9_c00301{transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188916,-0.001889,0.002500,0.249988,0,0);}
.m1d_c00301{transform:matrix(0.189026,-0.001890,0.002500,0.249988,0,0);-ms-transform:matrix(0.189026,-0.001890,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189026,-0.001890,0.002500,0.249988,0,0);}
.m12c_c00301{transform:matrix(0.189301,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189301,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189301,-0.001893,0.002500,0.249988,0,0);}
.m92_c00301{transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189476,-0.001895,0.002500,0.249988,0,0);}
.m44_c00301{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);}
.m20_c00301{transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);}
.mc6_c00301{transform:matrix(0.189946,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189946,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189946,-0.001899,0.002500,0.249988,0,0);}
.md1_c00301{transform:matrix(0.190085,-0.001901,0.002500,0.249988,0,0);-ms-transform:matrix(0.190085,-0.001901,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190085,-0.001901,0.002500,0.249988,0,0);}
.m131_c00301{transform:matrix(0.190325,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190325,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190325,-0.001903,0.002500,0.249988,0,0);}
.m102_c00301{transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);-ms-transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);}
.me6_c00301{transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-ms-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);}
.m103_c00301{transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190970,-0.001910,0.002500,0.249988,0,0);}
.m4d_c00301{transform:matrix(0.191170,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191170,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191170,-0.001912,0.002500,0.249988,0,0);}
.m16b_c00301{transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.191370,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191370,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191370,-0.001914,0.002500,0.249988,0,0);}
.m115_c00301{transform:matrix(0.191630,-0.001916,0.002500,0.249988,0,0);-ms-transform:matrix(0.191630,-0.001916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191630,-0.001916,0.002500,0.249988,0,0);}
.m55_c00301{transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191680,-0.001917,0.002500,0.249988,0,0);}
.m150_c00301{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);}
.me5_c00301{transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);}
.m22_c00301{transform:matrix(0.192125,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192125,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192125,-0.001921,0.002500,0.249988,0,0);}
.md8_c00301{transform:matrix(0.192520,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192520,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192520,-0.001925,0.002500,0.249988,0,0);}
.mfc_c00301{transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192550,-0.001926,0.002500,0.249988,0,0);}
.m7a_c00301{transform:matrix(0.192995,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192995,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192995,-0.001930,0.002500,0.249988,0,0);}
.m7b_c00301{transform:matrix(0.193175,-0.001932,0.002500,0.249988,0,0);-ms-transform:matrix(0.193175,-0.001932,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193175,-0.001932,0.002500,0.249988,0,0);}
.ma4_c00301{transform:matrix(0.193425,-0.001934,0.002500,0.249988,0,0);-ms-transform:matrix(0.193425,-0.001934,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193425,-0.001934,0.002500,0.249988,0,0);}
.mfe_c00301{transform:matrix(0.193690,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193690,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193690,-0.001937,0.002500,0.249988,0,0);}
.mb8_c00301{transform:matrix(0.193740,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193740,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193740,-0.001937,0.002500,0.249988,0,0);}
.m140_c00301{transform:matrix(0.194365,-0.001944,0.002500,0.249988,0,0);-ms-transform:matrix(0.194365,-0.001944,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194365,-0.001944,0.002500,0.249988,0,0);}
.m4b_c00301{transform:matrix(0.194690,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194690,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194690,-0.001947,0.002500,0.249988,0,0);}
.m12f_c00301{transform:matrix(0.194710,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194710,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194710,-0.001947,0.002500,0.249988,0,0);}
.m124_c00301{transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);-ms-transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195255,-0.001953,0.002500,0.249988,0,0);}
.m6c_c00301{transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195920,-0.001959,0.002500,0.249988,0,0);}
.m19_c00301{transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);-ms-transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);}
.m16a_c00301{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);}
.mf5_c00301{transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);}
.m165_c00301{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);}
.mc5_c00301{transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);}
.m8d_c00301{transform:matrix(0.196580,-0.001966,0.002500,0.249988,0,0);-ms-transform:matrix(0.196580,-0.001966,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196580,-0.001966,0.002500,0.249988,0,0);}
.m1b_c00301{transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);-ms-transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);}
.m3d_c00301{transform:matrix(0.197360,-0.001974,0.002500,0.249988,0,0);-ms-transform:matrix(0.197360,-0.001974,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197360,-0.001974,0.002500,0.249988,0,0);}
.m37_c00301{transform:matrix(0.197490,-0.001975,0.002500,0.249988,0,0);-ms-transform:matrix(0.197490,-0.001975,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197490,-0.001975,0.002500,0.249988,0,0);}
.mae_c00301{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);}
.m12d_c00301{transform:matrix(0.197815,-0.001978,0.002500,0.249988,0,0);-ms-transform:matrix(0.197815,-0.001978,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197815,-0.001978,0.002500,0.249988,0,0);}
.mb5_c00301{transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);-ms-transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);}
.mc3_c00301{transform:matrix(0.197940,-0.001979,0.002500,0.249988,0,0);-ms-transform:matrix(0.197940,-0.001979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197940,-0.001979,0.002500,0.249988,0,0);}
.mf4_c00301{transform:matrix(0.198135,-0.001981,0.002500,0.249988,0,0);-ms-transform:matrix(0.198135,-0.001981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198135,-0.001981,0.002500,0.249988,0,0);}
.mad_c00301{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);}
.m104_c00301{transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);}
.me1_c00301{transform:matrix(0.198880,-0.001989,0.002500,0.249988,0,0);-ms-transform:matrix(0.198880,-0.001989,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198880,-0.001989,0.002500,0.249988,0,0);}
.ma5_c00301{transform:matrix(0.198950,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.198950,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198950,-0.001990,0.002500,0.249988,0,0);}
.m8f_c00301{transform:matrix(0.198985,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.198985,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198985,-0.001990,0.002500,0.249988,0,0);}
.m10e_c00301{transform:matrix(0.199460,-0.001995,0.002500,0.249988,0,0);-ms-transform:matrix(0.199460,-0.001995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199460,-0.001995,0.002500,0.249988,0,0);}
.mf6_c00301{transform:matrix(0.199675,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199675,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199675,-0.001997,0.002500,0.249988,0,0);}
.m25_c00301{transform:matrix(0.199695,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199695,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199695,-0.001997,0.002500,0.249988,0,0);}
.m93_c00301{transform:matrix(0.199725,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199725,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199725,-0.001997,0.002500,0.249988,0,0);}
.m13c_c00301{transform:matrix(0.199910,-0.001999,0.002500,0.249988,0,0);-ms-transform:matrix(0.199910,-0.001999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199910,-0.001999,0.002500,0.249988,0,0);}
.m136_c00301{transform:matrix(0.200235,-0.002002,0.002500,0.249988,0,0);-ms-transform:matrix(0.200235,-0.002002,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200235,-0.002002,0.002500,0.249988,0,0);}
.ma2_c00301{transform:matrix(0.200290,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200290,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200290,-0.002003,0.002500,0.249988,0,0);}
.m30_c00301{transform:matrix(0.201130,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201130,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201130,-0.002011,0.002500,0.249988,0,0);}
.mf7_c00301{transform:matrix(0.201580,-0.002016,0.002500,0.249988,0,0);-ms-transform:matrix(0.201580,-0.002016,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201580,-0.002016,0.002500,0.249988,0,0);}
.md9_c00301{transform:matrix(0.201875,-0.002019,0.002500,0.249988,0,0);-ms-transform:matrix(0.201875,-0.002019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201875,-0.002019,0.002500,0.249988,0,0);}
.m107_c00301{transform:matrix(0.202135,-0.002021,0.002500,0.249988,0,0);-ms-transform:matrix(0.202135,-0.002021,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202135,-0.002021,0.002500,0.249988,0,0);}
.m13a_c00301{transform:matrix(0.202570,-0.002026,0.002500,0.249988,0,0);-ms-transform:matrix(0.202570,-0.002026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202570,-0.002026,0.002500,0.249988,0,0);}
.m51_c00301{transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);-ms-transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202640,-0.002026,0.002500,0.249988,0,0);}
.m80_c00301{transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);}
.m163_c00301{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);}
.mbc_c00301{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);}
.mb3_c00301{transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);-ms-transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204790,-0.002048,0.002500,0.249988,0,0);}
.md5_c00301{transform:matrix(0.205230,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205230,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205230,-0.002052,0.002500,0.249988,0,0);}
.m90_c00301{transform:matrix(0.205705,-0.002057,0.002500,0.249988,0,0);-ms-transform:matrix(0.205705,-0.002057,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205705,-0.002057,0.002500,0.249988,0,0);}
.m66_c00301{transform:matrix(0.206430,-0.002064,0.002500,0.249988,0,0);-ms-transform:matrix(0.206430,-0.002064,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206430,-0.002064,0.002500,0.249988,0,0);}
.m110_c00301{transform:matrix(0.206845,-0.002068,0.002500,0.249988,0,0);-ms-transform:matrix(0.206845,-0.002068,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206845,-0.002068,0.002500,0.249988,0,0);}
.m96_c00301{transform:matrix(0.207520,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207520,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207520,-0.002075,0.002500,0.249988,0,0);}
.m85_c00301{transform:matrix(0.208020,-0.002080,0.002500,0.249988,0,0);-ms-transform:matrix(0.208020,-0.002080,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208020,-0.002080,0.002500,0.249988,0,0);}
.mca_c00301{transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);-ms-transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);}
.m156_c00301{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.mda_c00301{transform:matrix(0.208630,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208630,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208630,-0.002086,0.002500,0.249988,0,0);}
.md3_c00301{transform:matrix(0.208745,-0.002087,0.002500,0.249988,0,0);-ms-transform:matrix(0.208745,-0.002087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208745,-0.002087,0.002500,0.249988,0,0);}
.ma1_c00301{transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);-ms-transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208825,-0.002088,0.002500,0.249988,0,0);}
.ma0_c00301{transform:matrix(0.209315,-0.002093,0.002500,0.249988,0,0);-ms-transform:matrix(0.209315,-0.002093,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209315,-0.002093,0.002500,0.249988,0,0);}
.m5b_c00301{transform:matrix(0.209600,-0.002096,0.002500,0.249988,0,0);-ms-transform:matrix(0.209600,-0.002096,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209600,-0.002096,0.002500,0.249988,0,0);}
.m77_c00301{transform:matrix(0.209860,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209860,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209860,-0.002099,0.002500,0.249988,0,0);}
.m6e_c00301{transform:matrix(0.210469,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210469,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210469,-0.002105,0.002500,0.249988,0,0);}
.m154_c00301{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);}
.m11f_c00301{transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);}
.m9b_c00301{transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);}
.mbd_c00301{transform:matrix(0.212024,-0.002120,0.002500,0.249988,0,0);-ms-transform:matrix(0.212024,-0.002120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212024,-0.002120,0.002500,0.249988,0,0);}
.m162_c00301{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);}
.m10b_c00301{transform:matrix(0.214244,-0.002142,0.002500,0.249988,0,0);-ms-transform:matrix(0.214244,-0.002142,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214244,-0.002142,0.002500,0.249988,0,0);}
.m6b_c00301{transform:matrix(0.214864,-0.002149,0.002500,0.249988,0,0);-ms-transform:matrix(0.214864,-0.002149,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214864,-0.002149,0.002500,0.249988,0,0);}
.m1a_c00301{transform:matrix(0.215159,-0.002152,0.002500,0.249988,0,0);-ms-transform:matrix(0.215159,-0.002152,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215159,-0.002152,0.002500,0.249988,0,0);}
.m1e_c00301{transform:matrix(0.215199,-0.002152,0.002500,0.249988,0,0);-ms-transform:matrix(0.215199,-0.002152,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215199,-0.002152,0.002500,0.249988,0,0);}
.mdb_c00301{transform:matrix(0.216034,-0.002160,0.002500,0.249988,0,0);-ms-transform:matrix(0.216034,-0.002160,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216034,-0.002160,0.002500,0.249988,0,0);}
.m10a_c00301{transform:matrix(0.216364,-0.002164,0.002500,0.249988,0,0);-ms-transform:matrix(0.216364,-0.002164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216364,-0.002164,0.002500,0.249988,0,0);}
.mb2_c00301{transform:matrix(0.216714,-0.002167,0.002500,0.249988,0,0);-ms-transform:matrix(0.216714,-0.002167,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216714,-0.002167,0.002500,0.249988,0,0);}
.m11b_c00301{transform:matrix(0.217039,-0.002170,0.002500,0.249988,0,0);-ms-transform:matrix(0.217039,-0.002170,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217039,-0.002170,0.002500,0.249988,0,0);}
.m56_c00301{transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217684,-0.002177,0.002500,0.249988,0,0);}
.m34_c00301{transform:matrix(0.217864,-0.002179,0.002500,0.249988,0,0);-ms-transform:matrix(0.217864,-0.002179,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217864,-0.002179,0.002500,0.249988,0,0);}
.m12e_c00301{transform:matrix(0.218109,-0.002181,0.002500,0.249988,0,0);-ms-transform:matrix(0.218109,-0.002181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218109,-0.002181,0.002500,0.249988,0,0);}
.m46_c00301{transform:matrix(0.218174,-0.002182,0.002500,0.249988,0,0);-ms-transform:matrix(0.218174,-0.002182,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218174,-0.002182,0.002500,0.249988,0,0);}
.m60_c00301{transform:matrix(0.218674,-0.002187,0.002500,0.249988,0,0);-ms-transform:matrix(0.218674,-0.002187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218674,-0.002187,0.002500,0.249988,0,0);}
.m4a_c00301{transform:matrix(0.219459,-0.002195,0.002500,0.249988,0,0);-ms-transform:matrix(0.219459,-0.002195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219459,-0.002195,0.002500,0.249988,0,0);}
.m75_c00301{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);}
.m159_c00301{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);}
.m15a_c00301{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);}
.m111_c00301{transform:matrix(0.222069,-0.002221,0.002500,0.249988,0,0);-ms-transform:matrix(0.222069,-0.002221,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222069,-0.002221,0.002500,0.249988,0,0);}
.m5f_c00301{transform:matrix(0.222579,-0.002226,0.002500,0.249988,0,0);-ms-transform:matrix(0.222579,-0.002226,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222579,-0.002226,0.002500,0.249988,0,0);}
.m5_c00301{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);}
.mcd_c00301{transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);}
.m9d_c00301{transform:matrix(0.225869,-0.002259,0.002500,0.249988,0,0);-ms-transform:matrix(0.225869,-0.002259,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225869,-0.002259,0.002500,0.249988,0,0);}
.m9_c00301{transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);-ms-transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);}
.m109_c00301{transform:matrix(0.226419,-0.002264,0.002500,0.249988,0,0);-ms-transform:matrix(0.226419,-0.002264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226419,-0.002264,0.002500,0.249988,0,0);}
.mfd_c00301{transform:matrix(0.226654,-0.002267,0.002500,0.249988,0,0);-ms-transform:matrix(0.226654,-0.002267,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226654,-0.002267,0.002500,0.249988,0,0);}
.me8_c00301{transform:matrix(0.227139,-0.002271,0.002500,0.249988,0,0);-ms-transform:matrix(0.227139,-0.002271,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227139,-0.002271,0.002500,0.249988,0,0);}
.mbe_c00301{transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);-ms-transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);}
.m76_c00301{transform:matrix(0.228879,-0.002289,0.002500,0.249988,0,0);-ms-transform:matrix(0.228879,-0.002289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228879,-0.002289,0.002500,0.249988,0,0);}
.m10f_c00301{transform:matrix(0.228944,-0.002289,0.002500,0.249988,0,0);-ms-transform:matrix(0.228944,-0.002289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228944,-0.002289,0.002500,0.249988,0,0);}
.m16c_c00301{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);}
.m105_c00301{transform:matrix(0.230728,-0.002307,0.002500,0.249988,0,0);-ms-transform:matrix(0.230728,-0.002307,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230728,-0.002307,0.002500,0.249988,0,0);}
.m106_c00301{transform:matrix(0.230773,-0.002308,0.002500,0.249988,0,0);-ms-transform:matrix(0.230773,-0.002308,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230773,-0.002308,0.002500,0.249988,0,0);}
.m79_c00301{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);}
.m1f_c00301{transform:matrix(0.232013,-0.002320,0.002500,0.249988,0,0);-ms-transform:matrix(0.232013,-0.002320,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232013,-0.002320,0.002500,0.249988,0,0);}
.m61_c00301{transform:matrix(0.232858,-0.002329,0.002500,0.249988,0,0);-ms-transform:matrix(0.232858,-0.002329,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232858,-0.002329,0.002500,0.249988,0,0);}
.m13d_c00301{transform:matrix(0.233308,-0.002333,0.002500,0.249988,0,0);-ms-transform:matrix(0.233308,-0.002333,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233308,-0.002333,0.002500,0.249988,0,0);}
.m26_c00301{transform:matrix(0.233783,-0.002338,0.002500,0.249988,0,0);-ms-transform:matrix(0.233783,-0.002338,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233783,-0.002338,0.002500,0.249988,0,0);}
.mfa_c00301{transform:matrix(0.235413,-0.002354,0.002500,0.249988,0,0);-ms-transform:matrix(0.235413,-0.002354,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235413,-0.002354,0.002500,0.249988,0,0);}
.m7_c00301{transform:matrix(0.236483,-0.002365,0.002500,0.249988,0,0);-ms-transform:matrix(0.236483,-0.002365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236483,-0.002365,0.002500,0.249988,0,0);}
.m59_c00301{transform:matrix(0.237698,-0.002377,0.002500,0.249988,0,0);-ms-transform:matrix(0.237698,-0.002377,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237698,-0.002377,0.002500,0.249988,0,0);}
.m9f_c00301{transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);-ms-transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);}
.m14c_c00301{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);}
.m100_c00301{transform:matrix(0.240013,-0.002400,0.002500,0.249988,0,0);-ms-transform:matrix(0.240013,-0.002400,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240013,-0.002400,0.002500,0.249988,0,0);}
.mbb_c00301{transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);-ms-transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);}
.m63_c00301{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);}
.m14a_c00301{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);}
.m5e_c00301{transform:matrix(0.243948,-0.002439,0.002500,0.249988,0,0);-ms-transform:matrix(0.243948,-0.002439,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243948,-0.002439,0.002500,0.249988,0,0);}
.md4_c00301{transform:matrix(0.244018,-0.002440,0.002500,0.249988,0,0);-ms-transform:matrix(0.244018,-0.002440,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244018,-0.002440,0.002500,0.249988,0,0);}
.m158_c00301{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.244873,-0.002449,0.002500,0.249988,0,0);-ms-transform:matrix(0.244873,-0.002449,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244873,-0.002449,0.002500,0.249988,0,0);}
.m129_c00301{transform:matrix(0.245278,-0.002453,0.002500,0.249988,0,0);-ms-transform:matrix(0.245278,-0.002453,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245278,-0.002453,0.002500,0.249988,0,0);}
.mc2_c00301{transform:matrix(0.245413,-0.002454,0.002500,0.249988,0,0);-ms-transform:matrix(0.245413,-0.002454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245413,-0.002454,0.002500,0.249988,0,0);}
.m8_c00301{transform:matrix(0.245783,-0.002458,0.002500,0.249988,0,0);-ms-transform:matrix(0.245783,-0.002458,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245783,-0.002458,0.002500,0.249988,0,0);}
.m15b_c00301{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);}
.m3f_c00301{transform:matrix(0.246398,-0.002464,0.002500,0.249988,0,0);-ms-transform:matrix(0.246398,-0.002464,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246398,-0.002464,0.002500,0.249988,0,0);}
.m10d_c00301{transform:matrix(0.246948,-0.002469,0.002500,0.249988,0,0);-ms-transform:matrix(0.246948,-0.002469,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246948,-0.002469,0.002500,0.249988,0,0);}
.m6f_c00301{transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);}
.mcf_c00301{transform:matrix(0.247188,-0.002472,0.002500,0.249988,0,0);-ms-transform:matrix(0.247188,-0.002472,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247188,-0.002472,0.002500,0.249988,0,0);}
.m6d_c00301{transform:matrix(0.247453,-0.002475,0.002500,0.249988,0,0);-ms-transform:matrix(0.247453,-0.002475,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247453,-0.002475,0.002500,0.249988,0,0);}
.m121_c00301{transform:matrix(0.248948,-0.002489,0.002500,0.249988,0,0);-ms-transform:matrix(0.248948,-0.002489,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248948,-0.002489,0.002500,0.249988,0,0);}
.mb6_c00301{transform:matrix(0.250947,-0.002509,0.002500,0.249988,0,0);-ms-transform:matrix(0.250947,-0.002509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250947,-0.002509,0.002500,0.249988,0,0);}
.mab_c00301{transform:matrix(0.251227,-0.002512,0.002500,0.249988,0,0);-ms-transform:matrix(0.251227,-0.002512,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251227,-0.002512,0.002500,0.249988,0,0);}
.me2_c00301{transform:matrix(0.251287,-0.002513,0.002500,0.249988,0,0);-ms-transform:matrix(0.251287,-0.002513,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251287,-0.002513,0.002500,0.249988,0,0);}
.mdc_c00301{transform:matrix(0.251757,-0.002518,0.002500,0.249988,0,0);-ms-transform:matrix(0.251757,-0.002518,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251757,-0.002518,0.002500,0.249988,0,0);}
.mb1_c00301{transform:matrix(0.251762,-0.002518,0.002500,0.249988,0,0);-ms-transform:matrix(0.251762,-0.002518,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251762,-0.002518,0.002500,0.249988,0,0);}
.m5c_c00301{transform:matrix(0.252352,-0.002524,0.002500,0.249988,0,0);-ms-transform:matrix(0.252352,-0.002524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252352,-0.002524,0.002500,0.249988,0,0);}
.m35_c00301{transform:matrix(0.253182,-0.002532,0.002500,0.249988,0,0);-ms-transform:matrix(0.253182,-0.002532,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253182,-0.002532,0.002500,0.249988,0,0);}
.m99_c00301{transform:matrix(0.253502,-0.002535,0.002500,0.249988,0,0);-ms-transform:matrix(0.253502,-0.002535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253502,-0.002535,0.002500,0.249988,0,0);}
.m5a_c00301{transform:matrix(0.255282,-0.002553,0.002500,0.249988,0,0);-ms-transform:matrix(0.255282,-0.002553,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255282,-0.002553,0.002500,0.249988,0,0);}
.m13f_c00301{transform:matrix(0.255317,-0.002553,0.002500,0.249988,0,0);-ms-transform:matrix(0.255317,-0.002553,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255317,-0.002553,0.002500,0.249988,0,0);}
.m144_c00301{transform:matrix(0.255857,-0.002559,0.002500,0.249988,0,0);-ms-transform:matrix(0.255857,-0.002559,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255857,-0.002559,0.002500,0.249988,0,0);}
.md0_c00301{transform:matrix(0.256122,-0.002561,0.002500,0.249988,0,0);-ms-transform:matrix(0.256122,-0.002561,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256122,-0.002561,0.002500,0.249988,0,0);}
.mdf_c00301{transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);-ms-transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);}
.mc8_c00301{transform:matrix(0.261722,-0.002617,0.002500,0.249988,0,0);-ms-transform:matrix(0.261722,-0.002617,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261722,-0.002617,0.002500,0.249988,0,0);}
.m83_c00301{transform:matrix(0.264642,-0.002646,0.002500,0.249988,0,0);-ms-transform:matrix(0.264642,-0.002646,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264642,-0.002646,0.002500,0.249988,0,0);}
.mde_c00301{transform:matrix(0.265852,-0.002659,0.002500,0.249988,0,0);-ms-transform:matrix(0.265852,-0.002659,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265852,-0.002659,0.002500,0.249988,0,0);}
.m132_c00301{transform:matrix(0.266317,-0.002663,0.002500,0.249988,0,0);-ms-transform:matrix(0.266317,-0.002663,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266317,-0.002663,0.002500,0.249988,0,0);}
.mc0_c00301{transform:matrix(0.268057,-0.002681,0.002500,0.249988,0,0);-ms-transform:matrix(0.268057,-0.002681,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268057,-0.002681,0.002500,0.249988,0,0);}
.m74_c00301{transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);-ms-transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);}
.m2b_c00301{transform:matrix(0.278216,-0.002782,0.002500,0.249988,0,0);-ms-transform:matrix(0.278216,-0.002782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.278216,-0.002782,0.002500,0.249988,0,0);}
.m142_c00301{transform:matrix(0.285226,-0.002852,0.002500,0.249988,0,0);-ms-transform:matrix(0.285226,-0.002852,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285226,-0.002852,0.002500,0.249988,0,0);}
.m15_c00301{transform:matrix(0.288346,-0.002883,0.002500,0.249988,0,0);-ms-transform:matrix(0.288346,-0.002883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.288346,-0.002883,0.002500,0.249988,0,0);}
.m13b_c00301{transform:matrix(0.293995,-0.002940,0.002500,0.249988,0,0);-ms-transform:matrix(0.293995,-0.002940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293995,-0.002940,0.002500,0.249988,0,0);}
.m143_c00301{transform:matrix(0.294145,-0.002941,0.002500,0.249988,0,0);-ms-transform:matrix(0.294145,-0.002941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294145,-0.002941,0.002500,0.249988,0,0);}
.m6a_c00301{transform:matrix(0.294660,-0.002947,0.002500,0.249988,0,0);-ms-transform:matrix(0.294660,-0.002947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294660,-0.002947,0.002500,0.249988,0,0);}
.m68_c00301{transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);-ms-transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);}
.m3a_c00301{transform:matrix(0.299980,-0.003000,0.002500,0.249988,0,0);-ms-transform:matrix(0.299980,-0.003000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299980,-0.003000,0.002500,0.249988,0,0);}
.m67_c00301{transform:matrix(0.312919,-0.003129,0.002500,0.249988,0,0);-ms-transform:matrix(0.312919,-0.003129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.312919,-0.003129,0.002500,0.249988,0,0);}
.m2_c00301{transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322155,0.000000,0.000000,0.250000,0,0);}
.mdd_c00301{transform:matrix(0.335033,-0.003350,0.002500,0.249988,0,0);-ms-transform:matrix(0.335033,-0.003350,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335033,-0.003350,0.002500,0.249988,0,0);}
.m7c_c00301{transform:matrix(0.335118,-0.003351,0.002500,0.249988,0,0);-ms-transform:matrix(0.335118,-0.003351,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335118,-0.003351,0.002500,0.249988,0,0);}
.m157_c00301{transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336995,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.339703,-0.003397,0.002500,0.249988,0,0);-ms-transform:matrix(0.339703,-0.003397,0.002500,0.249988,0,0);-webkit-transform:matrix(0.339703,-0.003397,0.002500,0.249988,0,0);}
.m133_c00301{transform:matrix(0.344958,-0.003450,0.002500,0.249988,0,0);-ms-transform:matrix(0.344958,-0.003450,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344958,-0.003450,0.002500,0.249988,0,0);}
.m7d_c00301{transform:matrix(0.345933,-0.003459,0.002500,0.249988,0,0);-ms-transform:matrix(0.345933,-0.003459,0.002500,0.249988,0,0);-webkit-transform:matrix(0.345933,-0.003459,0.002500,0.249988,0,0);}
.m29_c00301{transform:matrix(0.347258,-0.003473,0.002500,0.249988,0,0);-ms-transform:matrix(0.347258,-0.003473,0.002500,0.249988,0,0);-webkit-transform:matrix(0.347258,-0.003473,0.002500,0.249988,0,0);}
.mbf_c00301{transform:matrix(0.348883,-0.003489,0.002500,0.249988,0,0);-ms-transform:matrix(0.348883,-0.003489,0.002500,0.249988,0,0);-webkit-transform:matrix(0.348883,-0.003489,0.002500,0.249988,0,0);}
.m13_c00301{transform:matrix(0.349238,-0.003492,0.002500,0.249988,0,0);-ms-transform:matrix(0.349238,-0.003492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349238,-0.003492,0.002500,0.249988,0,0);}
.m48_c00301{transform:matrix(0.349638,-0.003496,0.002500,0.249988,0,0);-ms-transform:matrix(0.349638,-0.003496,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349638,-0.003496,0.002500,0.249988,0,0);}
.m6_c00301{transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);}
.m141_c00301{transform:matrix(0.382026,-0.003820,0.002500,0.249988,0,0);-ms-transform:matrix(0.382026,-0.003820,0.002500,0.249988,0,0);-webkit-transform:matrix(0.382026,-0.003820,0.002500,0.249988,0,0);}
.m98_c00301{transform:matrix(0.389006,-0.003890,0.002500,0.249988,0,0);-ms-transform:matrix(0.389006,-0.003890,0.002500,0.249988,0,0);-webkit-transform:matrix(0.389006,-0.003890,0.002500,0.249988,0,0);}
.mc7_c00301{transform:matrix(0.397330,-0.003973,0.002500,0.249988,0,0);-ms-transform:matrix(0.397330,-0.003973,0.002500,0.249988,0,0);-webkit-transform:matrix(0.397330,-0.003973,0.002500,0.249988,0,0);}
.m122_c00301{transform:matrix(0.398255,-0.003983,0.002500,0.249988,0,0);-ms-transform:matrix(0.398255,-0.003983,0.002500,0.249988,0,0);-webkit-transform:matrix(0.398255,-0.003983,0.002500,0.249988,0,0);}
.maa_c00301{transform:matrix(0.404165,-0.004042,0.002500,0.249988,0,0);-ms-transform:matrix(0.404165,-0.004042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.404165,-0.004042,0.002500,0.249988,0,0);}
.m73_c00301{transform:matrix(0.406205,-0.004062,0.002500,0.249988,0,0);-ms-transform:matrix(0.406205,-0.004062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.406205,-0.004062,0.002500,0.249988,0,0);}
.m15c_c00301{transform:matrix(0.412340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412340,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.417244,-0.004172,0.002500,0.249988,0,0);-ms-transform:matrix(0.417244,-0.004172,0.002500,0.249988,0,0);-webkit-transform:matrix(0.417244,-0.004172,0.002500,0.249988,0,0);}
.mcb_c00301{transform:matrix(0.427079,-0.004271,0.002500,0.249988,0,0);-ms-transform:matrix(0.427079,-0.004271,0.002500,0.249988,0,0);-webkit-transform:matrix(0.427079,-0.004271,0.002500,0.249988,0,0);}
.m8c_c00301{transform:matrix(0.459362,-0.004594,0.002500,0.249988,0,0);-ms-transform:matrix(0.459362,-0.004594,0.002500,0.249988,0,0);-webkit-transform:matrix(0.459362,-0.004594,0.002500,0.249988,0,0);}
.m49_c00301{transform:matrix(0.473126,-0.004731,0.002500,0.249988,0,0);-ms-transform:matrix(0.473126,-0.004731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.473126,-0.004731,0.002500,0.249988,0,0);}
.m3_c00301{transform:matrix(0.473870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473870,0.000000,0.000000,0.250000,0,0);}
.m145_c00301{transform:matrix(0.489045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489045,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.625194,-0.006252,0.002500,0.249988,0,0);-ms-transform:matrix(0.625194,-0.006252,0.002500,0.249988,0,0);-webkit-transform:matrix(0.625194,-0.006252,0.002500,0.249988,0,0);}
.m7f_c00301{transform:matrix(0.664832,-0.006648,0.002500,0.249988,0,0);-ms-transform:matrix(0.664832,-0.006648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.664832,-0.006648,0.002500,0.249988,0,0);}
.m65_c00301{transform:matrix(0.667307,-0.006673,0.002500,0.249988,0,0);-ms-transform:matrix(0.667307,-0.006673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.667307,-0.006673,0.002500,0.249988,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;}
.fs0_c00301{font-size:21.000000px;}
.fsd_c00301{font-size:22.050000px;}
.fs1_c00301{font-size:45.150000px;}
.fsf_c00301{font-size:48.300000px;}
.fs11_c00301{font-size:50.400000px;}
.fse_c00301{font-size:57.750000px;}
.fsb_c00301{font-size:61.953097px;}
.fs5_c00301{font-size:64.053202px;}
.fs8_c00301{font-size:65.103255px;}
.fs12_c00301{font-size:67.200000px;}
.fsc_c00301{font-size:67.203360px;}
.fs7_c00301{font-size:68.253412px;}
.fs4_c00301{font-size:69.303465px;}
.fs3_c00301{font-size:70.353517px;}
.fs10_c00301{font-size:71.400000px;}
.fs9_c00301{font-size:71.403570px;}
.fs6_c00301{font-size:72.453622px;}
.fsa_c00301{font-size:73.503675px;}
.fs2_c00301{font-size:103.950000px;}
.y0_c00301{bottom:0.000000px;}
.y146_c00301{bottom:168.436500px;}
.y148_c00301{bottom:169.020000px;}
.y147_c00301{bottom:188.365500px;}
.y145_c00301{bottom:188.520000px;}
.y144_c00301{bottom:205.678500px;}
.y143_c00301{bottom:239.760000px;}
.y142_c00301{bottom:258.370695px;}
.y141_c00301{bottom:258.371025px;}
.y13f_c00301{bottom:258.371100px;}
.y13d_c00301{bottom:258.371130px;}
.y140_c00301{bottom:258.371640px;}
.y13e_c00301{bottom:258.371715px;}
.y13c_c00301{bottom:258.371760px;}
.y13b_c00301{bottom:258.371775px;}
.y137_c00301{bottom:258.371850px;}
.y13a_c00301{bottom:258.372390px;}
.y138_c00301{bottom:258.372435px;}
.y139_c00301{bottom:258.373020px;}
.y131_c00301{bottom:280.627980px;}
.y136_c00301{bottom:280.628145px;}
.y134_c00301{bottom:280.628190px;}
.y12c_c00301{bottom:280.628385px;}
.y135_c00301{bottom:280.628460px;}
.y132_c00301{bottom:280.628565px;}
.y130_c00301{bottom:280.628595px;}
.y12f_c00301{bottom:280.628625px;}
.y12e_c00301{bottom:280.628655px;}
.y133_c00301{bottom:280.628835px;}
.y12d_c00301{bottom:280.628970px;}
.y12b_c00301{bottom:303.279540px;}
.y127_c00301{bottom:303.279615px;}
.y12a_c00301{bottom:303.279870px;}
.y128_c00301{bottom:303.279900px;}
.y126_c00301{bottom:303.279945px;}
.y124_c00301{bottom:303.280005px;}
.y122_c00301{bottom:303.280050px;}
.y129_c00301{bottom:303.280185px;}
.y125_c00301{bottom:303.280290px;}
.y123_c00301{bottom:303.280620px;}
.y11f_c00301{bottom:325.948320px;}
.y120_c00301{bottom:325.948605px;}
.y121_c00301{bottom:325.948890px;}
.y11e_c00301{bottom:325.948965px;}
.y11d_c00301{bottom:325.949580px;}
.y11c_c00301{bottom:325.949910px;}
.y11b_c00301{bottom:325.950225px;}
.y11a_c00301{bottom:325.950240px;}
.y119_c00301{bottom:325.950255px;}
.y118_c00301{bottom:325.950285px;}
.y117_c00301{bottom:325.950615px;}
.y10a_c00301{bottom:349.385355px;}
.y10b_c00301{bottom:349.385940px;}
.y10c_c00301{bottom:349.386510px;}
.y112_c00301{bottom:349.386705px;}
.y110_c00301{bottom:349.386735px;}
.y10d_c00301{bottom:349.386780px;}
.y113_c00301{bottom:349.386990px;}
.y111_c00301{bottom:349.387020px;}
.y10f_c00301{bottom:349.387350px;}
.y10e_c00301{bottom:349.387365px;}
.y114_c00301{bottom:349.387575px;}
.y116_c00301{bottom:349.388130px;}
.y115_c00301{bottom:349.388145px;}
.y101_c00301{bottom:372.819420px;}
.y109_c00301{bottom:372.819840px;}
.y107_c00301{bottom:372.819915px;}
.y104_c00301{bottom:372.819960px;}
.y103_c00301{bottom:372.819990px;}
.y102_c00301{bottom:372.820005px;}
.y100_c00301{bottom:372.820050px;}
.yff_c00301{bottom:372.820080px;}
.y106_c00301{bottom:372.820230px;}
.y105_c00301{bottom:372.820245px;}
.y108_c00301{bottom:372.820485px;}
.yfe_c00301{bottom:395.508720px;}
.yfd_c00301{bottom:395.509035px;}
.yfc_c00301{bottom:395.509050px;}
.yfb_c00301{bottom:395.509065px;}
.yfa_c00301{bottom:395.509095px;}
.yf9_c00301{bottom:395.509725px;}
.yf6_c00301{bottom:395.510070px;}
.yf4_c00301{bottom:395.510115px;}
.yf8_c00301{bottom:395.510340px;}
.yf7_c00301{bottom:395.510355px;}
.yf5_c00301{bottom:395.510385px;}
.yf3_c00301{bottom:395.510430px;}
.yf2_c00301{bottom:395.511045px;}
.ye6_c00301{bottom:418.192710px;}
.yef_c00301{bottom:418.192830px;}
.yea_c00301{bottom:418.192935px;}
.ye9_c00301{bottom:418.192950px;}
.yf0_c00301{bottom:418.193115px;}
.yee_c00301{bottom:418.193145px;}
.ye7_c00301{bottom:418.193295px;}
.yf1_c00301{bottom:418.193400px;}
.yec_c00301{bottom:418.193475px;}
.yeb_c00301{bottom:418.193490px;}
.ye8_c00301{bottom:418.193565px;}
.yed_c00301{bottom:418.193760px;}
.ydc_c00301{bottom:440.871630px;}
.ydd_c00301{bottom:440.871915px;}
.yd9_c00301{bottom:440.871990px;}
.ydf_c00301{bottom:440.872170px;}
.ydb_c00301{bottom:440.872260px;}
.yda_c00301{bottom:440.872275px;}
.ye0_c00301{bottom:440.872455px;}
.yde_c00301{bottom:440.872500px;}
.ye1_c00301{bottom:440.873040px;}
.ye2_c00301{bottom:440.873310px;}
.ye3_c00301{bottom:440.873895px;}
.ye4_c00301{bottom:440.874480px;}
.ye5_c00301{bottom:440.875065px;}
.yd8_c00301{bottom:463.793475px;}
.yd7_c00301{bottom:463.793520px;}
.yd5_c00301{bottom:463.793565px;}
.yd3_c00301{bottom:463.793625px;}
.yd2_c00301{bottom:463.793640px;}
.yd0_c00301{bottom:463.793670px;}
.ycf_c00301{bottom:463.793700px;}
.yd6_c00301{bottom:463.793850px;}
.yd1_c00301{bottom:463.793955px;}
.yd4_c00301{bottom:463.794195px;}
.yc9_c00301{bottom:487.824795px;}
.yc8_c00301{bottom:487.824810px;}
.yc7_c00301{bottom:487.824855px;}
.yc6_c00301{bottom:487.824870px;}
.ycc_c00301{bottom:487.825035px;}
.yc5_c00301{bottom:487.825185px;}
.yce_c00301{bottom:487.825290px;}
.ycb_c00301{bottom:487.825350px;}
.yca_c00301{bottom:487.825365px;}
.ycd_c00301{bottom:487.825605px;}
.yc4_c00301{bottom:487.825800px;}
.yc3_c00301{bottom:487.825815px;}
.yb9_c00301{bottom:510.169950px;}
.ybb_c00301{bottom:510.170505px;}
.yba_c00301{bottom:510.170520px;}
.yc1_c00301{bottom:510.170640px;}
.ybc_c00301{bottom:510.170790px;}
.yc0_c00301{bottom:510.170985px;}
.yc2_c00301{bottom:510.171225px;}
.ybf_c00301{bottom:510.171315px;}
.ybd_c00301{bottom:510.171360px;}
.ybe_c00301{bottom:510.171945px;}
.yb5_c00301{bottom:533.453625px;}
.yb4_c00301{bottom:533.453640px;}
.yb2_c00301{bottom:533.453970px;}
.yb6_c00301{bottom:533.454195px;}
.yb3_c00301{bottom:533.454255px;}
.yb8_c00301{bottom:533.454465px;}
.yb1_c00301{bottom:533.454585px;}
.yb0_c00301{bottom:533.454615px;}
.yb7_c00301{bottom:533.454765px;}
.yaf_c00301{bottom:533.454930px;}
.yae_c00301{bottom:533.455245px;}
.ya6_c00301{bottom:556.104120px;}
.ya7_c00301{bottom:556.104705px;}
.ya5_c00301{bottom:556.104765px;}
.ya8_c00301{bottom:556.104975px;}
.ya3_c00301{bottom:556.105095px;}
.ya9_c00301{bottom:556.105260px;}
.ya4_c00301{bottom:556.105380px;}
.yac_c00301{bottom:556.105500px;}
.yaa_c00301{bottom:556.105830px;}
.yad_c00301{bottom:556.106085px;}
.yab_c00301{bottom:556.106115px;}
.ya1_c00301{bottom:579.420225px;}
.y9f_c00301{bottom:579.420555px;}
.y9a_c00301{bottom:579.420645px;}
.ya2_c00301{bottom:579.420810px;}
.ya0_c00301{bottom:579.420840px;}
.y9e_c00301{bottom:579.421185px;}
.y9b_c00301{bottom:579.421230px;}
.y99_c00301{bottom:579.421260px;}
.y9c_c00301{bottom:579.421500px;}
.y9d_c00301{bottom:579.421785px;}
.y98_c00301{bottom:579.421875px;}
.y97_c00301{bottom:579.422490px;}
.y95_c00301{bottom:579.422835px;}
.y96_c00301{bottom:579.423120px;}
.y94_c00301{bottom:579.423450px;}
.y8a_c00301{bottom:601.824540px;}
.y90_c00301{bottom:601.824705px;}
.y8b_c00301{bottom:601.824810px;}
.y92_c00301{bottom:601.824975px;}
.y91_c00301{bottom:601.824990px;}
.y8f_c00301{bottom:601.825035px;}
.y89_c00301{bottom:601.825155px;}
.y88_c00301{bottom:601.825185px;}
.y93_c00301{bottom:601.825230px;}
.y8c_c00301{bottom:601.825395px;}
.y8e_c00301{bottom:601.825650px;}
.y8d_c00301{bottom:601.825980px;}
.y7d_c00301{bottom:624.774420px;}
.y7c_c00301{bottom:624.774450px;}
.y7e_c00301{bottom:624.774705px;}
.y7b_c00301{bottom:624.774780px;}
.y87_c00301{bottom:624.774810px;}
.y85_c00301{bottom:624.775155px;}
.y84_c00301{bottom:624.775185px;}
.y7f_c00301{bottom:624.775290px;}
.y86_c00301{bottom:624.775440px;}
.y83_c00301{bottom:624.775500px;}
.y80_c00301{bottom:624.775845px;}
.y82_c00301{bottom:624.776115px;}
.y81_c00301{bottom:624.776430px;}
.y71_c00301{bottom:647.426985px;}
.y72_c00301{bottom:647.427270px;}
.y70_c00301{bottom:647.427300px;}
.y6f_c00301{bottom:647.427315px;}
.y73_c00301{bottom:647.427855px;}
.y78_c00301{bottom:647.428050px;}
.y79_c00301{bottom:647.428320px;}
.y77_c00301{bottom:647.428365px;}
.y76_c00301{bottom:647.428380px;}
.y75_c00301{bottom:647.428410px;}
.y74_c00301{bottom:647.428425px;}
.y7a_c00301{bottom:647.428890px;}
.y62_c00301{bottom:668.517765px;}
.y63_c00301{bottom:668.775840px;}
.y64_c00301{bottom:669.064440px;}
.y65_c00301{bottom:669.612630px;}
.y66_c00301{bottom:669.814950px;}
.y67_c00301{bottom:669.926265px;}
.y68_c00301{bottom:670.226340px;}
.y69_c00301{bottom:670.456650px;}
.y6a_c00301{bottom:670.565610px;}
.y6b_c00301{bottom:670.899825px;}
.y6c_c00301{bottom:671.245440px;}
.y6d_c00301{bottom:671.379570px;}
.y6e_c00301{bottom:671.909820px;}
.y55_c00301{bottom:690.116745px;}
.y56_c00301{bottom:690.541965px;}
.y57_c00301{bottom:690.706590px;}
.y58_c00301{bottom:690.873480px;}
.y59_c00301{bottom:691.132650px;}
.y5a_c00301{bottom:691.383765px;}
.y5b_c00301{bottom:691.588080px;}
.y5c_c00301{bottom:691.848495px;}
.y5d_c00301{bottom:692.225415px;}
.y5e_c00301{bottom:692.828580px;}
.y5f_c00301{bottom:693.317580px;}
.y60_c00301{bottom:693.662325px;}
.y61_c00301{bottom:693.953085px;}
.y46_c00301{bottom:714.147330px;}
.y47_c00301{bottom:714.465465px;}
.y48_c00301{bottom:714.633810px;}
.y49_c00301{bottom:714.900810px;}
.y4a_c00301{bottom:715.051740px;}
.y4b_c00301{bottom:715.420770px;}
.y4c_c00301{bottom:715.537440px;}
.y4d_c00301{bottom:715.772955px;}
.y4e_c00301{bottom:715.890540px;}
.y4f_c00301{bottom:716.019630px;}
.y50_c00301{bottom:716.532240px;}
.y51_c00301{bottom:716.658870px;}
.y52_c00301{bottom:716.780565px;}
.y53_c00301{bottom:717.148755px;}
.y54_c00301{bottom:717.506910px;}
.y39_c00301{bottom:736.556220px;}
.y3a_c00301{bottom:736.901640px;}
.y3b_c00301{bottom:737.644695px;}
.y3c_c00301{bottom:738.075510px;}
.y3d_c00301{bottom:738.281685px;}
.y3e_c00301{bottom:738.797940px;}
.y3f_c00301{bottom:738.984570px;}
.y40_c00301{bottom:739.280700px;}
.y41_c00301{bottom:739.437570px;}
.y42_c00301{bottom:739.589085px;}
.y43_c00301{bottom:739.708185px;}
.y44_c00301{bottom:740.204760px;}
.y45_c00301{bottom:740.385435px;}
.y2b_c00301{bottom:759.776655px;}
.y2c_c00301{bottom:760.008225px;}
.y2d_c00301{bottom:760.177800px;}
.y2e_c00301{bottom:760.651200px;}
.y2f_c00301{bottom:760.985415px;}
.y30_c00301{bottom:761.180385px;}
.y31_c00301{bottom:761.341215px;}
.y32_c00301{bottom:761.693085px;}
.y33_c00301{bottom:761.809665px;}
.y34_c00301{bottom:761.972715px;}
.y35_c00301{bottom:762.336090px;}
.y36_c00301{bottom:762.522015px;}
.y37_c00301{bottom:762.779250px;}
.y38_c00301{bottom:762.908940px;}
.y1f_c00301{bottom:782.729700px;}
.y20_c00301{bottom:783.249630px;}
.y21_c00301{bottom:783.561885px;}
.y22_c00301{bottom:783.702990px;}
.y23_c00301{bottom:784.114500px;}
.y24_c00301{bottom:784.418775px;}
.y25_c00301{bottom:784.702275px;}
.y26_c00301{bottom:784.896195px;}
.y27_c00301{bottom:785.430945px;}
.y28_c00301{bottom:785.625090px;}
.y29_c00301{bottom:785.916435px;}
.y2a_c00301{bottom:786.267525px;}
.y11_c00301{bottom:804.870810px;}
.y12_c00301{bottom:805.424310px;}
.y13_c00301{bottom:805.753755px;}
.y14_c00301{bottom:806.015190px;}
.y15_c00301{bottom:806.323035px;}
.y16_c00301{bottom:806.518020px;}
.y17_c00301{bottom:807.289395px;}
.y18_c00301{bottom:807.430545px;}
.y19_c00301{bottom:807.729795px;}
.y1a_c00301{bottom:807.854550px;}
.y1b_c00301{bottom:808.380945px;}
.y1c_c00301{bottom:808.591095px;}
.y1d_c00301{bottom:808.977615px;}
.y1e_c00301{bottom:809.193690px;}
.y4_c00301{bottom:827.281500px;}
.y5_c00301{bottom:827.492220px;}
.y6_c00301{bottom:828.140325px;}
.y7_c00301{bottom:828.396300px;}
.y8_c00301{bottom:828.982230px;}
.y9_c00301{bottom:829.263930px;}
.ya_c00301{bottom:829.733355px;}
.yb_c00301{bottom:830.008740px;}
.yc_c00301{bottom:830.235555px;}
.yd_c00301{bottom:830.740455px;}
.ye_c00301{bottom:831.428895px;}
.yf_c00301{bottom:831.866385px;}
.y10_c00301{bottom:832.107000px;}
.y3_c00301{bottom:875.424000px;}
.y2_c00301{bottom:989.820000px;}
.y1_c00301{bottom:1000.620000px;}
.h2_c00301{height:21.000000px;}
.hf_c00301{height:22.050000px;}
.h3_c00301{height:45.150000px;}
.h11_c00301{height:48.300000px;}
.h13_c00301{height:50.400000px;}
.h10_c00301{height:57.750000px;}
.hd_c00301{height:61.953097px;}
.h7_c00301{height:64.053202px;}
.ha_c00301{height:65.103255px;}
.h14_c00301{height:67.200000px;}
.he_c00301{height:67.203360px;}
.h9_c00301{height:68.253412px;}
.h6_c00301{height:69.303465px;}
.h5_c00301{height:70.353517px;}
.h12_c00301{height:71.400000px;}
.hb_c00301{height:71.403570px;}
.h8_c00301{height:72.453622px;}
.hc_c00301{height:73.503675px;}
.h4_c00301{height:103.950000px;}
.h0_c00301{height:1008.450000px;}
.h1_c00301{height:1008.750000px;}
.w0_c00301{width:696.000000px;}
.x0_c00301{left:0.000000px;}
.x6e_c00301{left:93.964170px;}
.x42_c00301{left:95.725710px;}
.x57_c00301{left:101.626050px;}
.x38_c00301{left:106.641735px;}
.x7b_c00301{left:109.624710px;}
.x63_c00301{left:111.242895px;}
.xb3_c00301{left:139.329825px;}
.x58_c00301{left:144.535260px;}
.x43_c00301{left:148.841340px;}
.x7c_c00301{left:152.557500px;}
.x3_c00301{left:154.440000px;}
.x8_c00301{left:155.917500px;}
.xc9_c00301{left:167.670000px;}
.x86_c00301{left:173.618760px;}
.x9_c00301{left:176.989500px;}
.x4d_c00301{left:179.644485px;}
.xa9_c00301{left:181.180305px;}
.xa4_c00301{left:187.390620px;}
.xd2_c00301{left:188.460000px;}
.x59_c00301{left:192.597180px;}
.x2c_c00301{left:193.666440px;}
.x9f_c00301{left:195.761190px;}
.x89_c00301{left:199.002780px;}
.x64_c00301{left:200.618835px;}
.xca_c00301{left:201.960000px;}
.x4e_c00301{left:203.384190px;}
.xaf_c00301{left:208.721940px;}
.x15_c00301{left:211.272585px;}
.x91_c00301{left:213.046005px;}
.x6f_c00301{left:218.440620px;}
.xaa_c00301{left:220.602750px;}
.x2d_c00301{left:222.025080px;}
.xbe_c00301{left:224.925885px;}
.x65_c00301{left:227.350005px;}
.x21_c00301{left:229.028085px;}
.x8a_c00301{left:231.674550px;}
.x95_c00301{left:235.188150px;}
.x4f_c00301{left:240.402300px;}
.xa_c00301{left:241.800000px;}
.x16_c00301{left:244.217085px;}
.x7d_c00301{left:245.442300px;}
.x44_c00301{left:246.622755px;}
.xbf_c00301{left:249.766875px;}
.x92_c00301{left:254.898690px;}
.x75_c00301{left:256.512900px;}
.x70_c00301{left:258.673140px;}
.xa5_c00301{left:260.024880px;}
.x39_c00301{left:261.993885px;}
.x4_c00301{left:265.950000px;}
.xb_c00301{left:267.397500px;}
.xc2_c00301{left:269.207310px;}
.x17_c00301{left:270.360585px;}
.x66_c00301{left:271.362900px;}
.x22_c00301{left:273.604920px;}
.xc4_c00301{left:274.606890px;}
.x50_c00301{left:276.314880px;}
.x5a_c00301{left:283.869825px;}
.xcb_c00301{left:286.470000px;}
.x96_c00301{left:288.110445px;}
.xc5_c00301{left:289.996935px;}
.x76_c00301{left:291.074850px;}
.x23_c00301{left:293.866035px;}
.x9b_c00301{left:295.128435px;}
.x8b_c00301{left:296.478030px;}
.x18_c00301{left:301.145085px;}
.x51_c00301{left:305.447250px;}
.x45_c00301{left:308.128215px;}
.xb4_c00301{left:309.439320px;}
.x7e_c00301{left:311.325900px;}
.xbb_c00301{left:315.920310px;}
.x5b_c00301{left:317.603175px;}
.x19_c00301{left:320.643585px;}
.x3a_c00301{left:323.527230px;}
.xc_c00301{left:325.990500px;}
.x46_c00301{left:327.595995px;}
.xcc_c00301{left:333.180000px;}
.x67_c00301{left:334.276185px;}
.x5c_c00301{left:336.235425px;}
.x8c_c00301{left:337.520640px;}
.x7f_c00301{left:339.137175px;}
.xb5_c00301{left:341.301000px;}
.x52_c00301{left:342.739875px;}
.x87_c00301{left:344.268330px;}
.x9c_c00301{left:347.240640px;}
.xd3_c00301{left:349.650000px;}
.x24_c00301{left:352.718805px;}
.xd_c00301{left:354.160500px;}
.xab_c00301{left:355.340220px;}
.x2e_c00301{left:356.491950px;}
.x68_c00301{left:361.277385px;}
.x97_c00301{left:363.713505px;}
.x47_c00301{left:366.749055px;}
.xb6_c00301{left:372.352605px;}
.x8d_c00301{left:373.702755px;}
.xc0_c00301{left:378.023700px;}
.xa0_c00301{left:379.370550px;}
.x5_c00301{left:382.590000px;}
.xac_c00301{left:383.691555px;}
.x48_c00301{left:386.458350px;}
.x80_c00301{left:387.469005px;}
.x2f_c00301{left:388.890240px;}
.xcd_c00301{left:390.150000px;}
.x98_c00301{left:394.765110px;}
.x25_c00301{left:396.197610px;}
.x1a_c00301{left:397.781085px;}
.x9d_c00301{left:399.082830px;}
.xe_c00301{left:401.103000px;}
.xa6_c00301{left:403.131690px;}
.x71_c00301{left:406.910445px;}
.x49_c00301{left:408.068220px;}
.x1b_c00301{left:411.896085px;}
.x69_c00301{left:413.929650px;}
.x30_c00301{left:415.624305px;}
.x8e_c00301{left:417.445635px;}
.x6_c00301{left:420.120000px;}
.x81_c00301{left:422.300985px;}
.x5d_c00301{left:424.527450px;}
.x3b_c00301{left:426.673320px;}
.xf_c00301{left:428.641500px;}
.x9e_c00301{left:429.864405px;}
.xb7_c00301{left:432.025575px;}
.x82_c00301{left:434.992260px;}
.x26_c00301{left:436.698825px;}
.x1_c00301{left:439.830000px;}
.x2_c00301{left:440.910000px;}
.x5e_c00301{left:442.624170px;}
.x88_c00301{left:444.983895px;}
.xc1_c00301{left:449.576355px;}
.x10_c00301{left:451.323000px;}
.x1c_c00301{left:454.296585px;}
.xb0_c00301{left:455.514615px;}
.x7_c00301{left:457.920000px;}
.xce_c00301{left:459.810000px;}
.x27_c00301{left:464.491665px;}
.xd4_c00301{left:466.290000px;}
.x6a_c00301{left:468.202080px;}
.xbc_c00301{left:469.558185px;}
.xb8_c00301{left:472.798155px;}
.x31_c00301{left:474.213645px;}
.x77_c00301{left:476.574405px;}
.xcf_c00301{left:477.630000px;}
.x53_c00301{left:482.602560px;}
.x72_c00301{left:486.293895px;}
.x83_c00301{left:489.534720px;}
.x93_c00301{left:490.620255px;}
.xa1_c00301{left:491.695770px;}
.x32_c00301{left:493.672425px;}
.x3c_c00301{left:495.801405px;}
.x5f_c00301{left:498.247890px;}
.x11_c00301{left:501.813000px;}
.x78_c00301{left:503.305575px;}
.x8f_c00301{left:504.659850px;}
.x1d_c00301{left:506.936085px;}
.xb9_c00301{left:508.980270px;}
.xd0_c00301{left:512.190000px;}
.x4a_c00301{left:514.446465px;}
.x6b_c00301{left:516.533910px;}
.x3d_c00301{left:518.239080px;}
.x33_c00301{left:520.928520px;}
.x79_c00301{left:523.556100px;}
.xa2_c00301{left:526.257720px;}
.x1e_c00301{left:527.951085px;}
.xa7_c00301{left:529.228305px;}
.x84_c00301{left:531.117375px;}
.x4b_c00301{left:534.716775px;}
.xc3_c00301{left:538.140705px;}
.x3e_c00301{left:539.841225px;}
.x28_c00301{left:540.918960px;}
.x73_c00301{left:545.696835px;}
.xbd_c00301{left:547.051440px;}
.xb1_c00301{left:548.399400px;}
.x99_c00301{left:550.561680px;}
.x54_c00301{left:552.504660px;}
.x60_c00301{left:555.761685px;}
.x3f_c00301{left:556.851735px;}
.x90_c00301{left:558.122190px;}
.xad_c00301{left:564.330630px;}
.x1f_c00301{left:566.603085px;}
.x29_c00301{left:568.734300px;}
.x12_c00301{left:570.657000px;}
.x74_c00301{left:572.428005px;}
.xa3_c00301{left:575.129595px;}
.xc6_c00301{left:576.212055px;}
.x61_c00301{left:578.175585px;}
.x34_c00301{left:581.418435px;}
.x6c_c00301{left:584.847735px;}
.x20_c00301{left:588.210585px;}
.x9a_c00301{left:589.984125px;}
.xa8_c00301{left:592.141590px;}
.x85_c00301{left:593.220585px;}
.xd5_c00301{left:594.540000px;}
.x4c_c00301{left:595.988220px;}
.x6d_c00301{left:598.349085px;}
.xd1_c00301{left:600.210000px;}
.x55_c00301{left:601.680630px;}
.xae_c00301{left:603.751575px;}
.xc7_c00301{left:605.103450px;}
.x7a_c00301{left:606.989940px;}
.x2a_c00301{left:610.320045px;}
.x35_c00301{left:612.462180px;}
.x13_c00301{left:614.406000px;}
.x94_c00301{left:615.906780px;}
.xba_c00301{left:619.955355px;}
.x40_c00301{left:627.811365px;}
.x14_c00301{left:638.467500px;}
.x56_c00301{left:643.207875px;}
.xd6_c00301{left:648.000000px;}
.xb2_c00301{left:650.195085px;}
.x41_c00301{left:653.529630px;}
.x36_c00301{left:655.437405px;}
.x2b_c00301{left:660.430545px;}
.x62_c00301{left:666.454110px;}
.xc8_c00301{left:674.227365px;}
.x37_c00301{left:676.957260px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
.fs0_c00301{font-size:18.666667pt;}
.fsd_c00301{font-size:19.600000pt;}
.fs1_c00301{font-size:40.133333pt;}
.fsf_c00301{font-size:42.933333pt;}
.fs11_c00301{font-size:44.800000pt;}
.fse_c00301{font-size:51.333333pt;}
.fsb_c00301{font-size:55.069420pt;}
.fs5_c00301{font-size:56.936180pt;}
.fs8_c00301{font-size:57.869560pt;}
.fs12_c00301{font-size:59.733333pt;}
.fsc_c00301{font-size:59.736320pt;}
.fs7_c00301{font-size:60.669700pt;}
.fs4_c00301{font-size:61.603080pt;}
.fs3_c00301{font-size:62.536460pt;}
.fs10_c00301{font-size:63.466667pt;}
.fs9_c00301{font-size:63.469840pt;}
.fs6_c00301{font-size:64.403220pt;}
.fsa_c00301{font-size:65.336600pt;}
.fs2_c00301{font-size:92.400000pt;}
.y0_c00301{bottom:0.000000pt;}
.y146_c00301{bottom:149.721333pt;}
.y148_c00301{bottom:150.240000pt;}
.y147_c00301{bottom:167.436000pt;}
.y145_c00301{bottom:167.573333pt;}
.y144_c00301{bottom:182.825333pt;}
.y143_c00301{bottom:213.120000pt;}
.y142_c00301{bottom:229.662840pt;}
.y141_c00301{bottom:229.663133pt;}
.y13f_c00301{bottom:229.663200pt;}
.y13d_c00301{bottom:229.663227pt;}
.y140_c00301{bottom:229.663680pt;}
.y13e_c00301{bottom:229.663747pt;}
.y13c_c00301{bottom:229.663787pt;}
.y13b_c00301{bottom:229.663800pt;}
.y137_c00301{bottom:229.663867pt;}
.y13a_c00301{bottom:229.664347pt;}
.y138_c00301{bottom:229.664387pt;}
.y139_c00301{bottom:229.664907pt;}
.y131_c00301{bottom:249.447093pt;}
.y136_c00301{bottom:249.447240pt;}
.y134_c00301{bottom:249.447280pt;}
.y12c_c00301{bottom:249.447453pt;}
.y135_c00301{bottom:249.447520pt;}
.y132_c00301{bottom:249.447613pt;}
.y130_c00301{bottom:249.447640pt;}
.y12f_c00301{bottom:249.447667pt;}
.y12e_c00301{bottom:249.447693pt;}
.y133_c00301{bottom:249.447853pt;}
.y12d_c00301{bottom:249.447973pt;}
.y12b_c00301{bottom:269.581813pt;}
.y127_c00301{bottom:269.581880pt;}
.y12a_c00301{bottom:269.582107pt;}
.y128_c00301{bottom:269.582133pt;}
.y126_c00301{bottom:269.582173pt;}
.y124_c00301{bottom:269.582227pt;}
.y122_c00301{bottom:269.582267pt;}
.y129_c00301{bottom:269.582387pt;}
.y125_c00301{bottom:269.582480pt;}
.y123_c00301{bottom:269.582773pt;}
.y11f_c00301{bottom:289.731840pt;}
.y120_c00301{bottom:289.732093pt;}
.y121_c00301{bottom:289.732347pt;}
.y11e_c00301{bottom:289.732413pt;}
.y11d_c00301{bottom:289.732960pt;}
.y11c_c00301{bottom:289.733253pt;}
.y11b_c00301{bottom:289.733533pt;}
.y11a_c00301{bottom:289.733547pt;}
.y119_c00301{bottom:289.733560pt;}
.y118_c00301{bottom:289.733587pt;}
.y117_c00301{bottom:289.733880pt;}
.y10a_c00301{bottom:310.564760pt;}
.y10b_c00301{bottom:310.565280pt;}
.y10c_c00301{bottom:310.565787pt;}
.y112_c00301{bottom:310.565960pt;}
.y110_c00301{bottom:310.565987pt;}
.y10d_c00301{bottom:310.566027pt;}
.y113_c00301{bottom:310.566213pt;}
.y111_c00301{bottom:310.566240pt;}
.y10f_c00301{bottom:310.566533pt;}
.y10e_c00301{bottom:310.566547pt;}
.y114_c00301{bottom:310.566733pt;}
.y116_c00301{bottom:310.567227pt;}
.y115_c00301{bottom:310.567240pt;}
.y101_c00301{bottom:331.395040pt;}
.y109_c00301{bottom:331.395413pt;}
.y107_c00301{bottom:331.395480pt;}
.y104_c00301{bottom:331.395520pt;}
.y103_c00301{bottom:331.395547pt;}
.y102_c00301{bottom:331.395560pt;}
.y100_c00301{bottom:331.395600pt;}
.yff_c00301{bottom:331.395627pt;}
.y106_c00301{bottom:331.395760pt;}
.y105_c00301{bottom:331.395773pt;}
.y108_c00301{bottom:331.395987pt;}
.yfe_c00301{bottom:351.563307pt;}
.yfd_c00301{bottom:351.563587pt;}
.yfc_c00301{bottom:351.563600pt;}
.yfb_c00301{bottom:351.563613pt;}
.yfa_c00301{bottom:351.563640pt;}
.yf9_c00301{bottom:351.564200pt;}
.yf6_c00301{bottom:351.564507pt;}
.yf4_c00301{bottom:351.564547pt;}
.yf8_c00301{bottom:351.564747pt;}
.yf7_c00301{bottom:351.564760pt;}
.yf5_c00301{bottom:351.564787pt;}
.yf3_c00301{bottom:351.564827pt;}
.yf2_c00301{bottom:351.565373pt;}
.ye6_c00301{bottom:371.726853pt;}
.yef_c00301{bottom:371.726960pt;}
.yea_c00301{bottom:371.727053pt;}
.ye9_c00301{bottom:371.727067pt;}
.yf0_c00301{bottom:371.727213pt;}
.yee_c00301{bottom:371.727240pt;}
.ye7_c00301{bottom:371.727373pt;}
.yf1_c00301{bottom:371.727467pt;}
.yec_c00301{bottom:371.727533pt;}
.yeb_c00301{bottom:371.727547pt;}
.ye8_c00301{bottom:371.727613pt;}
.yed_c00301{bottom:371.727787pt;}
.ydc_c00301{bottom:391.885893pt;}
.ydd_c00301{bottom:391.886147pt;}
.yd9_c00301{bottom:391.886213pt;}
.ydf_c00301{bottom:391.886373pt;}
.ydb_c00301{bottom:391.886453pt;}
.yda_c00301{bottom:391.886467pt;}
.ye0_c00301{bottom:391.886627pt;}
.yde_c00301{bottom:391.886667pt;}
.ye1_c00301{bottom:391.887147pt;}
.ye2_c00301{bottom:391.887387pt;}
.ye3_c00301{bottom:391.887907pt;}
.ye4_c00301{bottom:391.888427pt;}
.ye5_c00301{bottom:391.888947pt;}
.yd8_c00301{bottom:412.260867pt;}
.yd7_c00301{bottom:412.260907pt;}
.yd5_c00301{bottom:412.260947pt;}
.yd3_c00301{bottom:412.261000pt;}
.yd2_c00301{bottom:412.261013pt;}
.yd0_c00301{bottom:412.261040pt;}
.ycf_c00301{bottom:412.261067pt;}
.yd6_c00301{bottom:412.261200pt;}
.yd1_c00301{bottom:412.261293pt;}
.yd4_c00301{bottom:412.261507pt;}
.yc9_c00301{bottom:433.622040pt;}
.yc8_c00301{bottom:433.622053pt;}
.yc7_c00301{bottom:433.622093pt;}
.yc6_c00301{bottom:433.622107pt;}
.ycc_c00301{bottom:433.622253pt;}
.yc5_c00301{bottom:433.622387pt;}
.yce_c00301{bottom:433.622480pt;}
.ycb_c00301{bottom:433.622533pt;}
.yca_c00301{bottom:433.622547pt;}
.ycd_c00301{bottom:433.622760pt;}
.yc4_c00301{bottom:433.622933pt;}
.yc3_c00301{bottom:433.622947pt;}
.yb9_c00301{bottom:453.484400pt;}
.ybb_c00301{bottom:453.484893pt;}
.yba_c00301{bottom:453.484907pt;}
.yc1_c00301{bottom:453.485013pt;}
.ybc_c00301{bottom:453.485147pt;}
.yc0_c00301{bottom:453.485320pt;}
.yc2_c00301{bottom:453.485533pt;}
.ybf_c00301{bottom:453.485613pt;}
.ybd_c00301{bottom:453.485653pt;}
.ybe_c00301{bottom:453.486173pt;}
.yb5_c00301{bottom:474.181000pt;}
.yb4_c00301{bottom:474.181013pt;}
.yb2_c00301{bottom:474.181307pt;}
.yb6_c00301{bottom:474.181507pt;}
.yb3_c00301{bottom:474.181560pt;}
.yb8_c00301{bottom:474.181747pt;}
.yb1_c00301{bottom:474.181853pt;}
.yb0_c00301{bottom:474.181880pt;}
.yb7_c00301{bottom:474.182013pt;}
.yaf_c00301{bottom:474.182160pt;}
.yae_c00301{bottom:474.182440pt;}
.ya6_c00301{bottom:494.314773pt;}
.ya7_c00301{bottom:494.315293pt;}
.ya5_c00301{bottom:494.315347pt;}
.ya8_c00301{bottom:494.315533pt;}
.ya3_c00301{bottom:494.315640pt;}
.ya9_c00301{bottom:494.315787pt;}
.ya4_c00301{bottom:494.315893pt;}
.yac_c00301{bottom:494.316000pt;}
.yaa_c00301{bottom:494.316293pt;}
.yad_c00301{bottom:494.316520pt;}
.yab_c00301{bottom:494.316547pt;}
.ya1_c00301{bottom:515.040200pt;}
.y9f_c00301{bottom:515.040493pt;}
.y9a_c00301{bottom:515.040573pt;}
.ya2_c00301{bottom:515.040720pt;}
.ya0_c00301{bottom:515.040747pt;}
.y9e_c00301{bottom:515.041053pt;}
.y9b_c00301{bottom:515.041093pt;}
.y99_c00301{bottom:515.041120pt;}
.y9c_c00301{bottom:515.041333pt;}
.y9d_c00301{bottom:515.041587pt;}
.y98_c00301{bottom:515.041667pt;}
.y97_c00301{bottom:515.042213pt;}
.y95_c00301{bottom:515.042520pt;}
.y96_c00301{bottom:515.042773pt;}
.y94_c00301{bottom:515.043067pt;}
.y8a_c00301{bottom:534.955147pt;}
.y90_c00301{bottom:534.955293pt;}
.y8b_c00301{bottom:534.955387pt;}
.y92_c00301{bottom:534.955533pt;}
.y91_c00301{bottom:534.955547pt;}
.y8f_c00301{bottom:534.955587pt;}
.y89_c00301{bottom:534.955693pt;}
.y88_c00301{bottom:534.955720pt;}
.y93_c00301{bottom:534.955760pt;}
.y8c_c00301{bottom:534.955907pt;}
.y8e_c00301{bottom:534.956133pt;}
.y8d_c00301{bottom:534.956427pt;}
.y7d_c00301{bottom:555.355040pt;}
.y7c_c00301{bottom:555.355067pt;}
.y7e_c00301{bottom:555.355293pt;}
.y7b_c00301{bottom:555.355360pt;}
.y87_c00301{bottom:555.355387pt;}
.y85_c00301{bottom:555.355693pt;}
.y84_c00301{bottom:555.355720pt;}
.y7f_c00301{bottom:555.355813pt;}
.y86_c00301{bottom:555.355947pt;}
.y83_c00301{bottom:555.356000pt;}
.y80_c00301{bottom:555.356307pt;}
.y82_c00301{bottom:555.356547pt;}
.y81_c00301{bottom:555.356827pt;}
.y71_c00301{bottom:575.490653pt;}
.y72_c00301{bottom:575.490907pt;}
.y70_c00301{bottom:575.490933pt;}
.y6f_c00301{bottom:575.490947pt;}
.y73_c00301{bottom:575.491427pt;}
.y78_c00301{bottom:575.491600pt;}
.y79_c00301{bottom:575.491840pt;}
.y77_c00301{bottom:575.491880pt;}
.y76_c00301{bottom:575.491893pt;}
.y75_c00301{bottom:575.491920pt;}
.y74_c00301{bottom:575.491933pt;}
.y7a_c00301{bottom:575.492347pt;}
.y62_c00301{bottom:594.238013pt;}
.y63_c00301{bottom:594.467413pt;}
.y64_c00301{bottom:594.723947pt;}
.y65_c00301{bottom:595.211227pt;}
.y66_c00301{bottom:595.391067pt;}
.y67_c00301{bottom:595.490013pt;}
.y68_c00301{bottom:595.756747pt;}
.y69_c00301{bottom:595.961467pt;}
.y6a_c00301{bottom:596.058320pt;}
.y6b_c00301{bottom:596.355400pt;}
.y6c_c00301{bottom:596.662613pt;}
.y6d_c00301{bottom:596.781840pt;}
.y6e_c00301{bottom:597.253173pt;}
.y55_c00301{bottom:613.437107pt;}
.y56_c00301{bottom:613.815080pt;}
.y57_c00301{bottom:613.961413pt;}
.y58_c00301{bottom:614.109760pt;}
.y59_c00301{bottom:614.340133pt;}
.y5a_c00301{bottom:614.563347pt;}
.y5b_c00301{bottom:614.744960pt;}
.y5c_c00301{bottom:614.976440pt;}
.y5d_c00301{bottom:615.311480pt;}
.y5e_c00301{bottom:615.847627pt;}
.y5f_c00301{bottom:616.282293pt;}
.y60_c00301{bottom:616.588733pt;}
.y61_c00301{bottom:616.847187pt;}
.y46_c00301{bottom:634.797627pt;}
.y47_c00301{bottom:635.080413pt;}
.y48_c00301{bottom:635.230053pt;}
.y49_c00301{bottom:635.467387pt;}
.y4a_c00301{bottom:635.601547pt;}
.y4b_c00301{bottom:635.929573pt;}
.y4c_c00301{bottom:636.033280pt;}
.y4d_c00301{bottom:636.242627pt;}
.y4e_c00301{bottom:636.347147pt;}
.y4f_c00301{bottom:636.461893pt;}
.y50_c00301{bottom:636.917547pt;}
.y51_c00301{bottom:637.030107pt;}
.y52_c00301{bottom:637.138280pt;}
.y53_c00301{bottom:637.465560pt;}
.y54_c00301{bottom:637.783920pt;}
.y39_c00301{bottom:654.716640pt;}
.y3a_c00301{bottom:655.023680pt;}
.y3b_c00301{bottom:655.684173pt;}
.y3c_c00301{bottom:656.067120pt;}
.y3d_c00301{bottom:656.250387pt;}
.y3e_c00301{bottom:656.709280pt;}
.y3f_c00301{bottom:656.875173pt;}
.y40_c00301{bottom:657.138400pt;}
.y41_c00301{bottom:657.277840pt;}
.y42_c00301{bottom:657.412520pt;}
.y43_c00301{bottom:657.518387pt;}
.y44_c00301{bottom:657.959787pt;}
.y45_c00301{bottom:658.120387pt;}
.y2b_c00301{bottom:675.357027pt;}
.y2c_c00301{bottom:675.562867pt;}
.y2d_c00301{bottom:675.713600pt;}
.y2e_c00301{bottom:676.134400pt;}
.y2f_c00301{bottom:676.431480pt;}
.y30_c00301{bottom:676.604787pt;}
.y31_c00301{bottom:676.747747pt;}
.y32_c00301{bottom:677.060520pt;}
.y33_c00301{bottom:677.164147pt;}
.y34_c00301{bottom:677.309080pt;}
.y35_c00301{bottom:677.632080pt;}
.y36_c00301{bottom:677.797347pt;}
.y37_c00301{bottom:678.026000pt;}
.y38_c00301{bottom:678.141280pt;}
.y1f_c00301{bottom:695.759733pt;}
.y20_c00301{bottom:696.221893pt;}
.y21_c00301{bottom:696.499453pt;}
.y22_c00301{bottom:696.624880pt;}
.y23_c00301{bottom:696.990667pt;}
.y24_c00301{bottom:697.261133pt;}
.y25_c00301{bottom:697.513133pt;}
.y26_c00301{bottom:697.685507pt;}
.y27_c00301{bottom:698.160840pt;}
.y28_c00301{bottom:698.333413pt;}
.y29_c00301{bottom:698.592387pt;}
.y2a_c00301{bottom:698.904467pt;}
.y11_c00301{bottom:715.440720pt;}
.y12_c00301{bottom:715.932720pt;}
.y13_c00301{bottom:716.225560pt;}
.y14_c00301{bottom:716.457947pt;}
.y15_c00301{bottom:716.731587pt;}
.y16_c00301{bottom:716.904907pt;}
.y17_c00301{bottom:717.590573pt;}
.y18_c00301{bottom:717.716040pt;}
.y19_c00301{bottom:717.982040pt;}
.y1a_c00301{bottom:718.092933pt;}
.y1b_c00301{bottom:718.560840pt;}
.y1c_c00301{bottom:718.747640pt;}
.y1d_c00301{bottom:719.091213pt;}
.y1e_c00301{bottom:719.283280pt;}
.y4_c00301{bottom:735.361333pt;}
.y5_c00301{bottom:735.548640pt;}
.y6_c00301{bottom:736.124733pt;}
.y7_c00301{bottom:736.352267pt;}
.y8_c00301{bottom:736.873093pt;}
.y9_c00301{bottom:737.123493pt;}
.ya_c00301{bottom:737.540760pt;}
.yb_c00301{bottom:737.785547pt;}
.yc_c00301{bottom:737.987160pt;}
.yd_c00301{bottom:738.435960pt;}
.ye_c00301{bottom:739.047907pt;}
.yf_c00301{bottom:739.436787pt;}
.y10_c00301{bottom:739.650667pt;}
.y3_c00301{bottom:778.154667pt;}
.y2_c00301{bottom:879.840000pt;}
.y1_c00301{bottom:889.440000pt;}
.h2_c00301{height:18.666667pt;}
.hf_c00301{height:19.600000pt;}
.h3_c00301{height:40.133333pt;}
.h11_c00301{height:42.933333pt;}
.h13_c00301{height:44.800000pt;}
.h10_c00301{height:51.333333pt;}
.hd_c00301{height:55.069420pt;}
.h7_c00301{height:56.936180pt;}
.ha_c00301{height:57.869560pt;}
.h14_c00301{height:59.733333pt;}
.he_c00301{height:59.736320pt;}
.h9_c00301{height:60.669700pt;}
.h6_c00301{height:61.603080pt;}
.h5_c00301{height:62.536460pt;}
.h12_c00301{height:63.466667pt;}
.hb_c00301{height:63.469840pt;}
.h8_c00301{height:64.403220pt;}
.hc_c00301{height:65.336600pt;}
.h4_c00301{height:92.400000pt;}
.h0_c00301{height:896.400000pt;}
.h1_c00301{height:896.666667pt;}
.w0_c00301{width:618.666667pt;}
.x0_c00301{left:0.000000pt;}
.x6e_c00301{left:83.523707pt;}
.x42_c00301{left:85.089520pt;}
.x57_c00301{left:90.334267pt;}
.x38_c00301{left:94.792653pt;}
.x7b_c00301{left:97.444187pt;}
.x63_c00301{left:98.882573pt;}
.xb3_c00301{left:123.848733pt;}
.x58_c00301{left:128.475787pt;}
.x43_c00301{left:132.303413pt;}
.x7c_c00301{left:135.606667pt;}
.x3_c00301{left:137.280000pt;}
.x8_c00301{left:138.593333pt;}
.xc9_c00301{left:149.040000pt;}
.x86_c00301{left:154.327787pt;}
.x9_c00301{left:157.324000pt;}
.x4d_c00301{left:159.683987pt;}
.xa9_c00301{left:161.049160pt;}
.xa4_c00301{left:166.569440pt;}
.xd2_c00301{left:167.520000pt;}
.x59_c00301{left:171.197493pt;}
.x2c_c00301{left:172.147947pt;}
.x9f_c00301{left:174.009947pt;}
.x89_c00301{left:176.891360pt;}
.x64_c00301{left:178.327853pt;}
.xca_c00301{left:179.520000pt;}
.x4e_c00301{left:180.785947pt;}
.xaf_c00301{left:185.530613pt;}
.x15_c00301{left:187.797853pt;}
.x91_c00301{left:189.374227pt;}
.x6f_c00301{left:194.169440pt;}
.xaa_c00301{left:196.091333pt;}
.x2d_c00301{left:197.355627pt;}
.xbe_c00301{left:199.934120pt;}
.x65_c00301{left:202.088893pt;}
.x21_c00301{left:203.580520pt;}
.x8a_c00301{left:205.932933pt;}
.x95_c00301{left:209.056133pt;}
.x4f_c00301{left:213.690933pt;}
.xa_c00301{left:214.933333pt;}
.x16_c00301{left:217.081853pt;}
.x7d_c00301{left:218.170933pt;}
.x44_c00301{left:219.220227pt;}
.xbf_c00301{left:222.015000pt;}
.x92_c00301{left:226.576613pt;}
.x75_c00301{left:228.011467pt;}
.x70_c00301{left:229.931680pt;}
.xa5_c00301{left:231.133227pt;}
.x39_c00301{left:232.883453pt;}
.x4_c00301{left:236.400000pt;}
.xb_c00301{left:237.686667pt;}
.xc2_c00301{left:239.295387pt;}
.x17_c00301{left:240.320520pt;}
.x66_c00301{left:241.211467pt;}
.x22_c00301{left:243.204373pt;}
.xc4_c00301{left:244.095013pt;}
.x50_c00301{left:245.613227pt;}
.x5a_c00301{left:252.328733pt;}
.xcb_c00301{left:254.640000pt;}
.x96_c00301{left:256.098173pt;}
.xc5_c00301{left:257.775053pt;}
.x76_c00301{left:258.733200pt;}
.x23_c00301{left:261.214253pt;}
.x9b_c00301{left:262.336387pt;}
.x8b_c00301{left:263.536027pt;}
.x18_c00301{left:267.684520pt;}
.x51_c00301{left:271.508667pt;}
.x45_c00301{left:273.891747pt;}
.xb4_c00301{left:275.057173pt;}
.x7e_c00301{left:276.734133pt;}
.xbb_c00301{left:280.818053pt;}
.x5b_c00301{left:282.313933pt;}
.x19_c00301{left:285.016520pt;}
.x3a_c00301{left:287.579760pt;}
.xc_c00301{left:289.769333pt;}
.x46_c00301{left:291.196440pt;}
.xcc_c00301{left:296.160000pt;}
.x67_c00301{left:297.134387pt;}
.x5c_c00301{left:298.875933pt;}
.x8c_c00301{left:300.018347pt;}
.x7f_c00301{left:301.455267pt;}
.xb5_c00301{left:303.378667pt;}
.x52_c00301{left:304.657667pt;}
.x87_c00301{left:306.016293pt;}
.x9c_c00301{left:308.658347pt;}
.xd3_c00301{left:310.800000pt;}
.x24_c00301{left:313.527827pt;}
.xd_c00301{left:314.809333pt;}
.xab_c00301{left:315.857973pt;}
.x2e_c00301{left:316.881733pt;}
.x68_c00301{left:321.135453pt;}
.x97_c00301{left:323.300893pt;}
.x47_c00301{left:325.999160pt;}
.xb6_c00301{left:330.980093pt;}
.x8d_c00301{left:332.180227pt;}
.xc0_c00301{left:336.021067pt;}
.xa0_c00301{left:337.218267pt;}
.x5_c00301{left:340.080000pt;}
.xac_c00301{left:341.059160pt;}
.x48_c00301{left:343.518533pt;}
.x80_c00301{left:344.416893pt;}
.x2f_c00301{left:345.680213pt;}
.xcd_c00301{left:346.800000pt;}
.x98_c00301{left:350.902320pt;}
.x25_c00301{left:352.175653pt;}
.x1a_c00301{left:353.583187pt;}
.x9d_c00301{left:354.740293pt;}
.xe_c00301{left:356.536000pt;}
.xa6_c00301{left:358.339280pt;}
.x71_c00301{left:361.698173pt;}
.x49_c00301{left:362.727307pt;}
.x1b_c00301{left:366.129853pt;}
.x69_c00301{left:367.937467pt;}
.x30_c00301{left:369.443827pt;}
.x8e_c00301{left:371.062787pt;}
.x6_c00301{left:373.440000pt;}
.x81_c00301{left:375.378653pt;}
.x5d_c00301{left:377.357733pt;}
.x3b_c00301{left:379.265173pt;}
.xf_c00301{left:381.014667pt;}
.x9e_c00301{left:382.101693pt;}
.xb7_c00301{left:384.022733pt;}
.x82_c00301{left:386.659787pt;}
.x26_c00301{left:388.176733pt;}
.x1_c00301{left:390.960000pt;}
.x2_c00301{left:391.920000pt;}
.x5e_c00301{left:393.443707pt;}
.x88_c00301{left:395.541240pt;}
.xc1_c00301{left:399.623427pt;}
.x10_c00301{left:401.176000pt;}
.x1c_c00301{left:403.819187pt;}
.xb0_c00301{left:404.901880pt;}
.x7_c00301{left:407.040000pt;}
.xce_c00301{left:408.720000pt;}
.x27_c00301{left:412.881480pt;}
.xd4_c00301{left:414.480000pt;}
.x6a_c00301{left:416.179627pt;}
.xbc_c00301{left:417.385053pt;}
.xb8_c00301{left:420.265027pt;}
.x31_c00301{left:421.523240pt;}
.x77_c00301{left:423.621693pt;}
.xcf_c00301{left:424.560000pt;}
.x53_c00301{left:428.980053pt;}
.x72_c00301{left:432.261240pt;}
.x83_c00301{left:435.141973pt;}
.x93_c00301{left:436.106893pt;}
.xa1_c00301{left:437.062907pt;}
.x32_c00301{left:438.819933pt;}
.x3c_c00301{left:440.712360pt;}
.x5f_c00301{left:442.887013pt;}
.x11_c00301{left:446.056000pt;}
.x78_c00301{left:447.382733pt;}
.x8f_c00301{left:448.586533pt;}
.x1d_c00301{left:450.609853pt;}
.xb9_c00301{left:452.426907pt;}
.xd0_c00301{left:455.280000pt;}
.x4a_c00301{left:457.285747pt;}
.x6b_c00301{left:459.141253pt;}
.x3d_c00301{left:460.656960pt;}
.x33_c00301{left:463.047573pt;}
.x79_c00301{left:465.383200pt;}
.xa2_c00301{left:467.784640pt;}
.x1e_c00301{left:469.289853pt;}
.xa7_c00301{left:470.425160pt;}
.x84_c00301{left:472.104333pt;}
.x4b_c00301{left:475.303800pt;}
.xc3_c00301{left:478.347293pt;}
.x3e_c00301{left:479.858867pt;}
.x28_c00301{left:480.816853pt;}
.x73_c00301{left:485.063853pt;}
.xbd_c00301{left:486.267947pt;}
.xb1_c00301{left:487.466133pt;}
.x99_c00301{left:489.388160pt;}
.x54_c00301{left:491.115253pt;}
.x60_c00301{left:494.010387pt;}
.x3f_c00301{left:494.979320pt;}
.x90_c00301{left:496.108613pt;}
.xad_c00301{left:501.627227pt;}
.x1f_c00301{left:503.647187pt;}
.x29_c00301{left:505.541600pt;}
.x12_c00301{left:507.250667pt;}
.x74_c00301{left:508.824893pt;}
.xa3_c00301{left:511.226307pt;}
.xc6_c00301{left:512.188493pt;}
.x61_c00301{left:513.933853pt;}
.x34_c00301{left:516.816387pt;}
.x6c_c00301{left:519.864653pt;}
.x20_c00301{left:522.853853pt;}
.x9a_c00301{left:524.430333pt;}
.xa8_c00301{left:526.348080pt;}
.x85_c00301{left:527.307187pt;}
.xd5_c00301{left:528.480000pt;}
.x4c_c00301{left:529.767307pt;}
.x6d_c00301{left:531.865853pt;}
.xd1_c00301{left:533.520000pt;}
.x55_c00301{left:534.827227pt;}
.xae_c00301{left:536.668067pt;}
.xc7_c00301{left:537.869733pt;}
.x7a_c00301{left:539.546613pt;}
.x2a_c00301{left:542.506707pt;}
.x35_c00301{left:544.410827pt;}
.x13_c00301{left:546.138667pt;}
.x94_c00301{left:547.472693pt;}
.xba_c00301{left:551.071427pt;}
.x40_c00301{left:558.054547pt;}
.x14_c00301{left:567.526667pt;}
.x56_c00301{left:571.740333pt;}
.xd6_c00301{left:576.000000pt;}
.xb2_c00301{left:577.951187pt;}
.x41_c00301{left:580.915227pt;}
.x36_c00301{left:582.611027pt;}
.x2b_c00301{left:587.049373pt;}
.x62_c00301{left:592.403653pt;}
.xc8_c00301{left:599.313213pt;}
.x37_c00301{left:601.739787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m25_c00302{transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);-ms-transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);}
.m20_c00302{transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);-ms-transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);-webkit-transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);}
.m7a_c00302{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);}
.m68_c00302{transform:matrix(0.015985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015985,0.000000,0.000000,0.250000,0,0);}
.m109_c00302{transform:matrix(0.016159,-0.000129,0.002000,0.249992,0,0);-ms-transform:matrix(0.016159,-0.000129,0.002000,0.249992,0,0);-webkit-transform:matrix(0.016159,-0.000129,0.002000,0.249992,0,0);}
.mc8_c00302{transform:matrix(0.021979,-0.000198,0.002250,0.249990,0,0);-ms-transform:matrix(0.021979,-0.000198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.021979,-0.000198,0.002250,0.249990,0,0);}
.m79_c00302{transform:matrix(0.039000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039000,0.000000,0.000000,0.250000,0,0);}
.md6_c00302{transform:matrix(0.077299,0.002940,-0.009503,0.249819,0,0);-ms-transform:matrix(0.077299,0.002940,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.077299,0.002940,-0.009503,0.249819,0,0);}
.m1e_c00302{transform:matrix(0.088352,-0.000707,0.002000,0.249992,0,0);-ms-transform:matrix(0.088352,-0.000707,0.002000,0.249992,0,0);-webkit-transform:matrix(0.088352,-0.000707,0.002000,0.249992,0,0);}
.mad_c00302{transform:matrix(0.100683,-0.001208,0.003000,0.249982,0,0);-ms-transform:matrix(0.100683,-0.001208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.100683,-0.001208,0.003000,0.249982,0,0);}
.m73_c00302{transform:matrix(0.110310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110310,0.000000,0.000000,0.250000,0,0);}
.mae_c00302{transform:matrix(0.122991,-0.001476,0.003000,0.249982,0,0);-ms-transform:matrix(0.122991,-0.001476,0.003000,0.249982,0,0);-webkit-transform:matrix(0.122991,-0.001476,0.003000,0.249982,0,0);}
.md7_c00302{transform:matrix(0.129886,0.004941,-0.009503,0.249819,0,0);-ms-transform:matrix(0.129886,0.004941,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.129886,0.004941,-0.009503,0.249819,0,0);}
.m23_c00302{transform:matrix(0.134971,-0.001080,0.002000,0.249992,0,0);-ms-transform:matrix(0.134971,-0.001080,0.002000,0.249992,0,0);-webkit-transform:matrix(0.134971,-0.001080,0.002000,0.249992,0,0);}
.m7d_c00302{transform:matrix(0.136845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136845,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.142727,-0.002284,0.003999,0.249968,0,0);-ms-transform:matrix(0.142727,-0.002284,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142727,-0.002284,0.003999,0.249968,0,0);}
.m99_c00302{transform:matrix(0.146854,-0.001762,0.003000,0.249982,0,0);-ms-transform:matrix(0.146854,-0.001762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146854,-0.001762,0.003000,0.249982,0,0);}
.m35_c00302{transform:matrix(0.147020,-0.001176,0.002000,0.249992,0,0);-ms-transform:matrix(0.147020,-0.001176,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147020,-0.001176,0.002000,0.249992,0,0);}
.m8b_c00302{transform:matrix(0.149644,-0.001796,0.003000,0.249982,0,0);-ms-transform:matrix(0.149644,-0.001796,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149644,-0.001796,0.003000,0.249982,0,0);}
.m3e_c00302{transform:matrix(0.150145,-0.001201,0.002000,0.249992,0,0);-ms-transform:matrix(0.150145,-0.001201,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150145,-0.001201,0.002000,0.249992,0,0);}
.m97_c00302{transform:matrix(0.151549,-0.001819,0.003000,0.249982,0,0);-ms-transform:matrix(0.151549,-0.001819,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151549,-0.001819,0.003000,0.249982,0,0);}
.m33_c00302{transform:matrix(0.152730,-0.001222,0.002000,0.249992,0,0);-ms-transform:matrix(0.152730,-0.001222,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152730,-0.001222,0.002000,0.249992,0,0);}
.mb2_c00302{transform:matrix(0.153046,-0.001684,0.002750,0.249985,0,0);-ms-transform:matrix(0.153046,-0.001684,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153046,-0.001684,0.002750,0.249985,0,0);}
.m51_c00302{transform:matrix(0.153404,-0.001381,0.002250,0.249990,0,0);-ms-transform:matrix(0.153404,-0.001381,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153404,-0.001381,0.002250,0.249990,0,0);}
.m9c_c00302{transform:matrix(0.154794,-0.001858,0.003000,0.249982,0,0);-ms-transform:matrix(0.154794,-0.001858,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154794,-0.001858,0.003000,0.249982,0,0);}
.ma5_c00302{transform:matrix(0.157654,-0.001892,0.003000,0.249982,0,0);-ms-transform:matrix(0.157654,-0.001892,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157654,-0.001892,0.003000,0.249982,0,0);}
.me8_c00302{transform:matrix(0.157865,-0.001263,0.002000,0.249992,0,0);-ms-transform:matrix(0.157865,-0.001263,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157865,-0.001263,0.002000,0.249992,0,0);}
.m3a_c00302{transform:matrix(0.158090,-0.001265,0.002000,0.249992,0,0);-ms-transform:matrix(0.158090,-0.001265,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158090,-0.001265,0.002000,0.249992,0,0);}
.m2d_c00302{transform:matrix(0.158785,-0.001270,0.002000,0.249992,0,0);-ms-transform:matrix(0.158785,-0.001270,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158785,-0.001270,0.002000,0.249992,0,0);}
.mca_c00302{transform:matrix(0.159244,-0.001433,0.002250,0.249990,0,0);-ms-transform:matrix(0.159244,-0.001433,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159244,-0.001433,0.002250,0.249990,0,0);}
.m38_c00302{transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);-ms-transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);}
.ma2_c00302{transform:matrix(0.160333,-0.001924,0.003000,0.249982,0,0);-ms-transform:matrix(0.160333,-0.001924,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160333,-0.001924,0.003000,0.249982,0,0);}
.m89_c00302{transform:matrix(0.160583,-0.001927,0.003000,0.249982,0,0);-ms-transform:matrix(0.160583,-0.001927,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160583,-0.001927,0.003000,0.249982,0,0);}
.ma6_c00302{transform:matrix(0.161043,-0.001933,0.003000,0.249982,0,0);-ms-transform:matrix(0.161043,-0.001933,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161043,-0.001933,0.003000,0.249982,0,0);}
.m22_c00302{transform:matrix(0.161270,-0.001290,0.002000,0.249992,0,0);-ms-transform:matrix(0.161270,-0.001290,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161270,-0.001290,0.002000,0.249992,0,0);}
.m10_c00302{transform:matrix(0.161514,-0.002584,0.003999,0.249968,0,0);-ms-transform:matrix(0.161514,-0.002584,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161514,-0.002584,0.003999,0.249968,0,0);}
.md5_c00302{transform:matrix(0.162338,-0.001461,0.002250,0.249990,0,0);-ms-transform:matrix(0.162338,-0.001461,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162338,-0.001461,0.002250,0.249990,0,0);}
.mc1_c00302{transform:matrix(0.165568,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165568,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165568,-0.001490,0.002250,0.249990,0,0);}
.m48_c00302{transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);-ms-transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166065,-0.001329,0.002000,0.249992,0,0);}
.m9a_c00302{transform:matrix(0.166323,-0.001996,0.003000,0.249982,0,0);-ms-transform:matrix(0.166323,-0.001996,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166323,-0.001996,0.003000,0.249982,0,0);}
.m1c_c00302{transform:matrix(0.166600,-0.001333,0.002000,0.249992,0,0);-ms-transform:matrix(0.166600,-0.001333,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166600,-0.001333,0.002000,0.249992,0,0);}
.m8_c00302{transform:matrix(0.167104,-0.002674,0.003999,0.249968,0,0);-ms-transform:matrix(0.167104,-0.002674,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167104,-0.002674,0.003999,0.249968,0,0);}
.m61_c00302{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);}
.me3_c00302{transform:matrix(0.169620,-0.001357,0.002000,0.249992,0,0);-ms-transform:matrix(0.169620,-0.001357,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169620,-0.001357,0.002000,0.249992,0,0);}
.mb6_c00302{transform:matrix(0.170500,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170500,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170500,-0.001875,0.002750,0.249985,0,0);}
.mdd_c00302{transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);-ms-transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171120,-0.001369,0.002000,0.249992,0,0);}
.mf1_c00302{transform:matrix(0.171160,-0.001369,0.002000,0.249992,0,0);-ms-transform:matrix(0.171160,-0.001369,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171160,-0.001369,0.002000,0.249992,0,0);}
.mea_c00302{transform:matrix(0.171595,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171595,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171595,-0.001373,0.002000,0.249992,0,0);}
.me5_c00302{transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);}
.m28_c00302{transform:matrix(0.171989,-0.001376,0.002000,0.249992,0,0);-ms-transform:matrix(0.171989,-0.001376,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171989,-0.001376,0.002000,0.249992,0,0);}
.m9_c00302{transform:matrix(0.172258,-0.002756,0.003999,0.249968,0,0);-ms-transform:matrix(0.172258,-0.002756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172258,-0.002756,0.003999,0.249968,0,0);}
.m65_c00302{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);}
.mb5_c00302{transform:matrix(0.174404,-0.001918,0.002750,0.249985,0,0);-ms-transform:matrix(0.174404,-0.001918,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174404,-0.001918,0.002750,0.249985,0,0);}
.m4c_c00302{transform:matrix(0.175389,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175389,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175389,-0.001403,0.002000,0.249992,0,0);}
.mcd_c00302{transform:matrix(0.175443,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175443,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175443,-0.001579,0.002250,0.249990,0,0);}
.md3_c00302{transform:matrix(0.175788,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175788,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175788,-0.001582,0.002250,0.249990,0,0);}
.maf_c00302{transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);-ms-transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176997,-0.002124,0.003000,0.249982,0,0);}
.m96_c00302{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);}
.m27_c00302{transform:matrix(0.178094,-0.001425,0.002000,0.249992,0,0);-ms-transform:matrix(0.178094,-0.001425,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178094,-0.001425,0.002000,0.249992,0,0);}
.m83_c00302{transform:matrix(0.178122,-0.002137,0.003000,0.249982,0,0);-ms-transform:matrix(0.178122,-0.002137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178122,-0.002137,0.003000,0.249982,0,0);}
.mda_c00302{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);}
.m0_c00302{transform:matrix(0.178777,-0.002860,0.003999,0.249968,0,0);-ms-transform:matrix(0.178777,-0.002860,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178777,-0.002860,0.003999,0.249968,0,0);}
.m46_c00302{transform:matrix(0.178794,-0.001430,0.002000,0.249992,0,0);-ms-transform:matrix(0.178794,-0.001430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178794,-0.001430,0.002000,0.249992,0,0);}
.m8f_c00302{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);}
.m3f_c00302{transform:matrix(0.180249,-0.001442,0.002000,0.249992,0,0);-ms-transform:matrix(0.180249,-0.001442,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180249,-0.001442,0.002000,0.249992,0,0);}
.m9b_c00302{transform:matrix(0.181627,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181627,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181627,-0.002180,0.003000,0.249982,0,0);}
.mbc_c00302{transform:matrix(0.181724,-0.001999,0.002750,0.249985,0,0);-ms-transform:matrix(0.181724,-0.001999,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181724,-0.001999,0.002750,0.249985,0,0);}
.mb1_c00302{transform:matrix(0.182109,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182109,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182109,-0.002003,0.002750,0.249985,0,0);}
.m9d_c00302{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);}
.ma7_c00302{transform:matrix(0.182372,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182372,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182372,-0.002188,0.003000,0.249982,0,0);}
.mc6_c00302{transform:matrix(0.182828,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182828,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182828,-0.001645,0.002250,0.249990,0,0);}
.m37_c00302{transform:matrix(0.182869,-0.001463,0.002000,0.249992,0,0);-ms-transform:matrix(0.182869,-0.001463,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182869,-0.001463,0.002000,0.249992,0,0);}
.md2_c00302{transform:matrix(0.183098,-0.001648,0.002250,0.249990,0,0);-ms-transform:matrix(0.183098,-0.001648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183098,-0.001648,0.002250,0.249990,0,0);}
.mdf_c00302{transform:matrix(0.183524,-0.001468,0.002000,0.249992,0,0);-ms-transform:matrix(0.183524,-0.001468,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183524,-0.001468,0.002000,0.249992,0,0);}
.m88_c00302{transform:matrix(0.184302,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184302,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184302,-0.002212,0.003000,0.249982,0,0);}
.me9_c00302{transform:matrix(0.184409,-0.001475,0.002000,0.249992,0,0);-ms-transform:matrix(0.184409,-0.001475,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184409,-0.001475,0.002000,0.249992,0,0);}
.ma1_c00302{transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);-ms-transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);}
.med_c00302{transform:matrix(0.185154,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185154,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185154,-0.001481,0.002000,0.249992,0,0);}
.mf6_c00302{transform:matrix(0.185374,-0.001483,0.002000,0.249992,0,0);-ms-transform:matrix(0.185374,-0.001483,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185374,-0.001483,0.002000,0.249992,0,0);}
.md1_c00302{transform:matrix(0.186292,-0.001677,0.002250,0.249990,0,0);-ms-transform:matrix(0.186292,-0.001677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186292,-0.001677,0.002250,0.249990,0,0);}
.me2_c00302{transform:matrix(0.186409,-0.001491,0.002000,0.249992,0,0);-ms-transform:matrix(0.186409,-0.001491,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186409,-0.001491,0.002000,0.249992,0,0);}
.mb0_c00302{transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);}
.m21_c00302{transform:matrix(0.186784,-0.001494,0.002000,0.249992,0,0);-ms-transform:matrix(0.186784,-0.001494,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186784,-0.001494,0.002000,0.249992,0,0);}
.mbf_c00302{transform:matrix(0.186962,-0.001683,0.002250,0.249990,0,0);-ms-transform:matrix(0.186962,-0.001683,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186962,-0.001683,0.002250,0.249990,0,0);}
.mac_c00302{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);}
.mc_c00302{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);}
.m66_c00302{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);}
.ma8_c00302{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);}
.mc2_c00302{transform:matrix(0.188732,-0.001699,0.002250,0.249990,0,0);-ms-transform:matrix(0.188732,-0.001699,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188732,-0.001699,0.002250,0.249990,0,0);}
.m3b_c00302{transform:matrix(0.188879,-0.001511,0.002000,0.249992,0,0);-ms-transform:matrix(0.188879,-0.001511,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188879,-0.001511,0.002000,0.249992,0,0);}
.ma9_c00302{transform:matrix(0.189481,-0.002274,0.003000,0.249982,0,0);-ms-transform:matrix(0.189481,-0.002274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189481,-0.002274,0.003000,0.249982,0,0);}
.m4a_c00302{transform:matrix(0.191124,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191124,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191124,-0.001529,0.002000,0.249992,0,0);}
.mf8_c00302{transform:matrix(0.191169,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191169,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191169,-0.001529,0.002000,0.249992,0,0);}
.m8a_c00302{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);}
.m3d_c00302{transform:matrix(0.191329,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191329,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191329,-0.001531,0.002000,0.249992,0,0);}
.m5_c00302{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);}
.mcc_c00302{transform:matrix(0.191557,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191557,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191557,-0.001724,0.002250,0.249990,0,0);}
.m6_c00302{transform:matrix(0.191860,-0.003070,0.003999,0.249968,0,0);-ms-transform:matrix(0.191860,-0.003070,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191860,-0.003070,0.003999,0.249968,0,0);}
.me1_c00302{transform:matrix(0.192024,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.192024,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192024,-0.001536,0.002000,0.249992,0,0);}
.me7_c00302{transform:matrix(0.192249,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192249,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192249,-0.001538,0.002000,0.249992,0,0);}
.md_c00302{transform:matrix(0.192340,-0.003077,0.003999,0.249968,0,0);-ms-transform:matrix(0.192340,-0.003077,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192340,-0.003077,0.003999,0.249968,0,0);}
.m2_c00302{transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);}
.mfe_c00302{transform:matrix(0.192794,-0.001542,0.002000,0.249992,0,0);-ms-transform:matrix(0.192794,-0.001542,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192794,-0.001542,0.002000,0.249992,0,0);}
.m41_c00302{transform:matrix(0.193729,-0.001550,0.002000,0.249992,0,0);-ms-transform:matrix(0.193729,-0.001550,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193729,-0.001550,0.002000,0.249992,0,0);}
.m6f_c00302{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);}
.m62_c00302{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);}
.md0_c00302{transform:matrix(0.195107,-0.001756,0.002250,0.249990,0,0);-ms-transform:matrix(0.195107,-0.001756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195107,-0.001756,0.002250,0.249990,0,0);}
.m36_c00302{transform:matrix(0.195159,-0.001561,0.002000,0.249992,0,0);-ms-transform:matrix(0.195159,-0.001561,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195159,-0.001561,0.002000,0.249992,0,0);}
.m42_c00302{transform:matrix(0.195319,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195319,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195319,-0.001563,0.002000,0.249992,0,0);}
.mdb_c00302{transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);-ms-transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195499,-0.001564,0.002000,0.249992,0,0);}
.m94_c00302{transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);}
.m31_c00302{transform:matrix(0.196499,-0.001572,0.002000,0.249992,0,0);-ms-transform:matrix(0.196499,-0.001572,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196499,-0.001572,0.002000,0.249992,0,0);}
.mf3_c00302{transform:matrix(0.196614,-0.001573,0.002000,0.249992,0,0);-ms-transform:matrix(0.196614,-0.001573,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196614,-0.001573,0.002000,0.249992,0,0);}
.ma4_c00302{transform:matrix(0.196626,-0.002360,0.003000,0.249982,0,0);-ms-transform:matrix(0.196626,-0.002360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196626,-0.002360,0.003000,0.249982,0,0);}
.m7e_c00302{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);}
.mb9_c00302{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);}
.mcb_c00302{transform:matrix(0.197032,-0.001773,0.002250,0.249990,0,0);-ms-transform:matrix(0.197032,-0.001773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197032,-0.001773,0.002250,0.249990,0,0);}
.meb_c00302{transform:matrix(0.197259,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197259,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197259,-0.001578,0.002000,0.249992,0,0);}
.me6_c00302{transform:matrix(0.197274,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197274,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197274,-0.001578,0.002000,0.249992,0,0);}
.mb8_c00302{transform:matrix(0.197713,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197713,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197713,-0.002175,0.002750,0.249985,0,0);}
.mdc_c00302{transform:matrix(0.198989,-0.001592,0.002000,0.249992,0,0);-ms-transform:matrix(0.198989,-0.001592,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198989,-0.001592,0.002000,0.249992,0,0);}
.mb3_c00302{transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);}
.m2f_c00302{transform:matrix(0.199519,-0.001596,0.002000,0.249992,0,0);-ms-transform:matrix(0.199519,-0.001596,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199519,-0.001596,0.002000,0.249992,0,0);}
.m71_c00302{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);}
.m10b_c00302{transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);}
.mcf_c00302{transform:matrix(0.200562,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200562,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200562,-0.001805,0.002250,0.249990,0,0);}
.m84_c00302{transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);}
.m8c_c00302{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);}
.m8e_c00302{transform:matrix(0.201875,-0.002423,0.003000,0.249982,0,0);-ms-transform:matrix(0.201875,-0.002423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201875,-0.002423,0.003000,0.249982,0,0);}
.mc4_c00302{transform:matrix(0.202192,-0.001820,0.002250,0.249990,0,0);-ms-transform:matrix(0.202192,-0.001820,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202192,-0.001820,0.002250,0.249990,0,0);}
.m30_c00302{transform:matrix(0.202644,-0.001621,0.002000,0.249992,0,0);-ms-transform:matrix(0.202644,-0.001621,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202644,-0.001621,0.002000,0.249992,0,0);}
.m16_c00302{transform:matrix(0.202709,-0.003243,0.003999,0.249968,0,0);-ms-transform:matrix(0.202709,-0.003243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202709,-0.003243,0.003999,0.249968,0,0);}
.m87_c00302{transform:matrix(0.202910,-0.002435,0.003000,0.249982,0,0);-ms-transform:matrix(0.202910,-0.002435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202910,-0.002435,0.003000,0.249982,0,0);}
.mde_c00302{transform:matrix(0.203138,-0.001625,0.002000,0.249992,0,0);-ms-transform:matrix(0.203138,-0.001625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203138,-0.001625,0.002000,0.249992,0,0);}
.m56_c00302{transform:matrix(0.203307,-0.001830,0.002250,0.249990,0,0);-ms-transform:matrix(0.203307,-0.001830,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203307,-0.001830,0.002250,0.249990,0,0);}
.ma0_c00302{transform:matrix(0.203475,-0.002442,0.003000,0.249982,0,0);-ms-transform:matrix(0.203475,-0.002442,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203475,-0.002442,0.003000,0.249982,0,0);}
.m49_c00302{transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);}
.mf5_c00302{transform:matrix(0.205108,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205108,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205108,-0.001641,0.002000,0.249992,0,0);}
.m2c_c00302{transform:matrix(0.205248,-0.001642,0.002000,0.249992,0,0);-ms-transform:matrix(0.205248,-0.001642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205248,-0.001642,0.002000,0.249992,0,0);}
.mc9_c00302{transform:matrix(0.205582,-0.001850,0.002250,0.249990,0,0);-ms-transform:matrix(0.205582,-0.001850,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205582,-0.001850,0.002250,0.249990,0,0);}
.m32_c00302{transform:matrix(0.205758,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205758,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205758,-0.001646,0.002000,0.249992,0,0);}
.m8d_c00302{transform:matrix(0.205985,-0.002472,0.003000,0.249982,0,0);-ms-transform:matrix(0.205985,-0.002472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205985,-0.002472,0.003000,0.249982,0,0);}
.m5c_c00302{transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);-ms-transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);}
.m29_c00302{transform:matrix(0.206473,-0.001652,0.002000,0.249992,0,0);-ms-transform:matrix(0.206473,-0.001652,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206473,-0.001652,0.002000,0.249992,0,0);}
.mc3_c00302{transform:matrix(0.206802,-0.001861,0.002250,0.249990,0,0);-ms-transform:matrix(0.206802,-0.001861,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206802,-0.001861,0.002250,0.249990,0,0);}
.mce_c00302{transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);}
.m34_c00302{transform:matrix(0.207983,-0.001664,0.002000,0.249992,0,0);-ms-transform:matrix(0.207983,-0.001664,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207983,-0.001664,0.002000,0.249992,0,0);}
.mee_c00302{transform:matrix(0.208298,-0.001666,0.002000,0.249992,0,0);-ms-transform:matrix(0.208298,-0.001666,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208298,-0.001666,0.002000,0.249992,0,0);}
.mfc_c00302{transform:matrix(0.208753,-0.001670,0.002000,0.249992,0,0);-ms-transform:matrix(0.208753,-0.001670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208753,-0.001670,0.002000,0.249992,0,0);}
.mf0_c00302{transform:matrix(0.208848,-0.001671,0.002000,0.249992,0,0);-ms-transform:matrix(0.208848,-0.001671,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208848,-0.001671,0.002000,0.249992,0,0);}
.md8_c00302{transform:matrix(0.208919,0.007947,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208919,0.007947,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208919,0.007947,-0.009503,0.249819,0,0);}
.ma3_c00302{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);}
.mab_c00302{transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209835,-0.002518,0.003000,0.249982,0,0);}
.m7_c00302{transform:matrix(0.210228,-0.003364,0.003999,0.249968,0,0);-ms-transform:matrix(0.210228,-0.003364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210228,-0.003364,0.003999,0.249968,0,0);}
.mfd_c00302{transform:matrix(0.211223,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211223,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211223,-0.001690,0.002000,0.249992,0,0);}
.maa_c00302{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);}
.m4b_c00302{transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);}
.m1_c00302{transform:matrix(0.212673,-0.003403,0.003999,0.249968,0,0);-ms-transform:matrix(0.212673,-0.003403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212673,-0.003403,0.003999,0.249968,0,0);}
.mbd_c00302{transform:matrix(0.213597,-0.002350,0.002750,0.249985,0,0);-ms-transform:matrix(0.213597,-0.002350,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213597,-0.002350,0.002750,0.249985,0,0);}
.m24_c00302{transform:matrix(0.213963,-0.001712,0.002000,0.249992,0,0);-ms-transform:matrix(0.213963,-0.001712,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213963,-0.001712,0.002000,0.249992,0,0);}
.m45_c00302{transform:matrix(0.214133,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214133,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214133,-0.001713,0.002000,0.249992,0,0);}
.m90_c00302{transform:matrix(0.215055,-0.002581,0.003000,0.249982,0,0);-ms-transform:matrix(0.215055,-0.002581,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215055,-0.002581,0.003000,0.249982,0,0);}
.m2a_c00302{transform:matrix(0.216023,-0.001728,0.002000,0.249992,0,0);-ms-transform:matrix(0.216023,-0.001728,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216023,-0.001728,0.002000,0.249992,0,0);}
.m72_c00302{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);}
.mba_c00302{transform:matrix(0.216857,-0.002385,0.002750,0.249985,0,0);-ms-transform:matrix(0.216857,-0.002385,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216857,-0.002385,0.002750,0.249985,0,0);}
.m5b_c00302{transform:matrix(0.217431,-0.001957,0.002250,0.249990,0,0);-ms-transform:matrix(0.217431,-0.001957,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217431,-0.001957,0.002250,0.249990,0,0);}
.m6c_c00302{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);}
.m82_c00302{transform:matrix(0.219094,-0.002629,0.003000,0.249982,0,0);-ms-transform:matrix(0.219094,-0.002629,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219094,-0.002629,0.003000,0.249982,0,0);}
.mc5_c00302{transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);-ms-transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219156,-0.001972,0.002250,0.249990,0,0);}
.m6e_c00302{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);}
.m75_c00302{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);}
.m64_c00302{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);}
.m108_c00302{transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);}
.m55_c00302{transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222226,-0.002000,0.002250,0.249990,0,0);}
.m39_c00302{transform:matrix(0.222378,-0.001779,0.002000,0.249992,0,0);-ms-transform:matrix(0.222378,-0.001779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222378,-0.001779,0.002000,0.249992,0,0);}
.mf9_c00302{transform:matrix(0.222468,-0.001780,0.002000,0.249992,0,0);-ms-transform:matrix(0.222468,-0.001780,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222468,-0.001780,0.002000,0.249992,0,0);}
.mf2_c00302{transform:matrix(0.222938,-0.001784,0.002000,0.249992,0,0);-ms-transform:matrix(0.222938,-0.001784,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222938,-0.001784,0.002000,0.249992,0,0);}
.m43_c00302{transform:matrix(0.223248,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223248,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223248,-0.001786,0.002000,0.249992,0,0);}
.m2b_c00302{transform:matrix(0.224898,-0.001799,0.002000,0.249992,0,0);-ms-transform:matrix(0.224898,-0.001799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224898,-0.001799,0.002000,0.249992,0,0);}
.m9f_c00302{transform:matrix(0.224899,-0.002699,0.003000,0.249982,0,0);-ms-transform:matrix(0.224899,-0.002699,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224899,-0.002699,0.003000,0.249982,0,0);}
.m2e_c00302{transform:matrix(0.224938,-0.001800,0.002000,0.249992,0,0);-ms-transform:matrix(0.224938,-0.001800,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224938,-0.001800,0.002000,0.249992,0,0);}
.m19_c00302{transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);-ms-transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);}
.mf4_c00302{transform:matrix(0.227233,-0.001818,0.002000,0.249992,0,0);-ms-transform:matrix(0.227233,-0.001818,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227233,-0.001818,0.002000,0.249992,0,0);}
.mc7_c00302{transform:matrix(0.227916,-0.002051,0.002250,0.249990,0,0);-ms-transform:matrix(0.227916,-0.002051,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227916,-0.002051,0.002250,0.249990,0,0);}
.mfa_c00302{transform:matrix(0.228028,-0.001824,0.002000,0.249992,0,0);-ms-transform:matrix(0.228028,-0.001824,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228028,-0.001824,0.002000,0.249992,0,0);}
.m12_c00302{transform:matrix(0.228191,-0.003651,0.003999,0.249968,0,0);-ms-transform:matrix(0.228191,-0.003651,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228191,-0.003651,0.003999,0.249968,0,0);}
.m106_c00302{transform:matrix(0.230028,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.230028,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230028,-0.001840,0.002000,0.249992,0,0);}
.m14_c00302{transform:matrix(0.230980,-0.003696,0.003999,0.249968,0,0);-ms-transform:matrix(0.230980,-0.003696,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230980,-0.003696,0.003999,0.249968,0,0);}
.m102_c00302{transform:matrix(0.232563,-0.001861,0.002000,0.249992,0,0);-ms-transform:matrix(0.232563,-0.001861,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232563,-0.001861,0.002000,0.249992,0,0);}
.m98_c00302{transform:matrix(0.232653,-0.002792,0.003000,0.249982,0,0);-ms-transform:matrix(0.232653,-0.002792,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232653,-0.002792,0.003000,0.249982,0,0);}
.m47_c00302{transform:matrix(0.232973,-0.001864,0.002000,0.249992,0,0);-ms-transform:matrix(0.232973,-0.001864,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232973,-0.001864,0.002000,0.249992,0,0);}
.m100_c00302{transform:matrix(0.233253,-0.001866,0.002000,0.249992,0,0);-ms-transform:matrix(0.233253,-0.001866,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233253,-0.001866,0.002000,0.249992,0,0);}
.m3c_c00302{transform:matrix(0.234183,-0.001873,0.002000,0.249992,0,0);-ms-transform:matrix(0.234183,-0.001873,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234183,-0.001873,0.002000,0.249992,0,0);}
.mec_c00302{transform:matrix(0.237092,-0.001897,0.002000,0.249992,0,0);-ms-transform:matrix(0.237092,-0.001897,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237092,-0.001897,0.002000,0.249992,0,0);}
.mb4_c00302{transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);-ms-transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238066,-0.002619,0.002750,0.249985,0,0);}
.m4e_c00302{transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238335,0.000000,0.000000,0.250000,0,0);}
.mb7_c00302{transform:matrix(0.240360,-0.002644,0.002750,0.249985,0,0);-ms-transform:matrix(0.240360,-0.002644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240360,-0.002644,0.002750,0.249985,0,0);}
.m40_c00302{transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);-ms-transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);}
.m44_c00302{transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);-ms-transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243377,-0.001947,0.002000,0.249992,0,0);}
.m52_c00302{transform:matrix(0.244415,-0.002200,0.002250,0.249990,0,0);-ms-transform:matrix(0.244415,-0.002200,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244415,-0.002200,0.002250,0.249990,0,0);}
.md4_c00302{transform:matrix(0.244475,-0.002200,0.002250,0.249990,0,0);-ms-transform:matrix(0.244475,-0.002200,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244475,-0.002200,0.002250,0.249990,0,0);}
.m95_c00302{transform:matrix(0.245187,-0.002942,0.003000,0.249982,0,0);-ms-transform:matrix(0.245187,-0.002942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245187,-0.002942,0.003000,0.249982,0,0);}
.m5f_c00302{transform:matrix(0.246175,-0.002216,0.002250,0.249990,0,0);-ms-transform:matrix(0.246175,-0.002216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246175,-0.002216,0.002250,0.249990,0,0);}
.me4_c00302{transform:matrix(0.246222,-0.001970,0.002000,0.249992,0,0);-ms-transform:matrix(0.246222,-0.001970,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246222,-0.001970,0.002000,0.249992,0,0);}
.m91_c00302{transform:matrix(0.246337,-0.002956,0.003000,0.249982,0,0);-ms-transform:matrix(0.246337,-0.002956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246337,-0.002956,0.003000,0.249982,0,0);}
.m59_c00302{transform:matrix(0.246800,-0.002221,0.002250,0.249990,0,0);-ms-transform:matrix(0.246800,-0.002221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246800,-0.002221,0.002250,0.249990,0,0);}
.me_c00302{transform:matrix(0.248073,-0.003969,0.003999,0.249968,0,0);-ms-transform:matrix(0.248073,-0.003969,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248073,-0.003969,0.003999,0.249968,0,0);}
.m76_c00302{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{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);}
.m111_c00302{transform:matrix(0.253137,-0.002025,0.002000,0.249992,0,0);-ms-transform:matrix(0.253137,-0.002025,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253137,-0.002025,0.002000,0.249992,0,0);}
.m10e_c00302{transform:matrix(0.253637,-0.002029,0.002000,0.249992,0,0);-ms-transform:matrix(0.253637,-0.002029,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253637,-0.002029,0.002000,0.249992,0,0);}
.m5e_c00302{transform:matrix(0.253645,-0.002283,0.002250,0.249990,0,0);-ms-transform:matrix(0.253645,-0.002283,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253645,-0.002283,0.002250,0.249990,0,0);}
.m7f_c00302{transform:matrix(0.253942,-0.003047,0.003000,0.249982,0,0);-ms-transform:matrix(0.253942,-0.003047,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253942,-0.003047,0.003000,0.249982,0,0);}
.m26_c00302{transform:matrix(0.257347,-0.002059,0.002000,0.249992,0,0);-ms-transform:matrix(0.257347,-0.002059,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257347,-0.002059,0.002000,0.249992,0,0);}
.ma_c00302{transform:matrix(0.257407,-0.004119,0.003999,0.249968,0,0);-ms-transform:matrix(0.257407,-0.004119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257407,-0.004119,0.003999,0.249968,0,0);}
.m4_c00302{transform:matrix(0.259557,-0.004153,0.003999,0.249968,0,0);-ms-transform:matrix(0.259557,-0.004153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259557,-0.004153,0.003999,0.249968,0,0);}
.m77_c00302{transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);}
.mf7_c00302{transform:matrix(0.261147,-0.002089,0.002000,0.249992,0,0);-ms-transform:matrix(0.261147,-0.002089,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261147,-0.002089,0.002000,0.249992,0,0);}
.m104_c00302{transform:matrix(0.261287,-0.002090,0.002000,0.249992,0,0);-ms-transform:matrix(0.261287,-0.002090,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261287,-0.002090,0.002000,0.249992,0,0);}
.m105_c00302{transform:matrix(0.261557,-0.002092,0.002000,0.249992,0,0);-ms-transform:matrix(0.261557,-0.002092,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261557,-0.002092,0.002000,0.249992,0,0);}
.m93_c00302{transform:matrix(0.262846,-0.003154,0.003000,0.249982,0,0);-ms-transform:matrix(0.262846,-0.003154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262846,-0.003154,0.003000,0.249982,0,0);}
.m85_c00302{transform:matrix(0.264946,-0.003179,0.003000,0.249982,0,0);-ms-transform:matrix(0.264946,-0.003179,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264946,-0.003179,0.003000,0.249982,0,0);}
.m57_c00302{transform:matrix(0.269134,-0.002422,0.002250,0.249990,0,0);-ms-transform:matrix(0.269134,-0.002422,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269134,-0.002422,0.002250,0.249990,0,0);}
.m11_c00302{transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);-ms-transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);}
.m10a_c00302{transform:matrix(0.271306,-0.002170,0.002000,0.249992,0,0);-ms-transform:matrix(0.271306,-0.002170,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271306,-0.002170,0.002000,0.249992,0,0);}
.m67_c00302{transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276765,0.000000,0.000000,0.250000,0,0);}
.m110_c00302{transform:matrix(0.276841,-0.002215,0.002000,0.249992,0,0);-ms-transform:matrix(0.276841,-0.002215,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276841,-0.002215,0.002000,0.249992,0,0);}
.m10c_c00302{transform:matrix(0.279646,-0.002237,0.002000,0.249992,0,0);-ms-transform:matrix(0.279646,-0.002237,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279646,-0.002237,0.002000,0.249992,0,0);}
.m107_c00302{transform:matrix(0.281171,-0.002249,0.002000,0.249992,0,0);-ms-transform:matrix(0.281171,-0.002249,0.002000,0.249992,0,0);-webkit-transform:matrix(0.281171,-0.002249,0.002000,0.249992,0,0);}
.m15_c00302{transform:matrix(0.281834,-0.004509,0.003999,0.249968,0,0);-ms-transform:matrix(0.281834,-0.004509,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281834,-0.004509,0.003999,0.249968,0,0);}
.m4d_c00302{transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284290,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.285139,-0.003422,0.003000,0.249982,0,0);-ms-transform:matrix(0.285139,-0.003422,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285139,-0.003422,0.003000,0.249982,0,0);}
.m81_c00302{transform:matrix(0.285399,-0.003425,0.003000,0.249982,0,0);-ms-transform:matrix(0.285399,-0.003425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285399,-0.003425,0.003000,0.249982,0,0);}
.m4f_c00302{transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287295,0.000000,0.000000,0.250000,0,0);}
.md9_c00302{transform:matrix(0.287880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287880,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.288131,-0.002305,0.002000,0.249992,0,0);-ms-transform:matrix(0.288131,-0.002305,0.002000,0.249992,0,0);-webkit-transform:matrix(0.288131,-0.002305,0.002000,0.249992,0,0);}
.m60_c00302{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);}
.m5d_c00302{transform:matrix(0.290858,-0.002618,0.002250,0.249990,0,0);-ms-transform:matrix(0.290858,-0.002618,0.002250,0.249990,0,0);-webkit-transform:matrix(0.290858,-0.002618,0.002250,0.249990,0,0);}
.mff_c00302{transform:matrix(0.298375,-0.002387,0.002000,0.249992,0,0);-ms-transform:matrix(0.298375,-0.002387,0.002000,0.249992,0,0);-webkit-transform:matrix(0.298375,-0.002387,0.002000,0.249992,0,0);}
.m80_c00302{transform:matrix(0.299483,-0.003594,0.003000,0.249982,0,0);-ms-transform:matrix(0.299483,-0.003594,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299483,-0.003594,0.003000,0.249982,0,0);}
.m17_c00302{transform:matrix(0.302950,-0.002424,0.002000,0.249992,0,0);-ms-transform:matrix(0.302950,-0.002424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.302950,-0.002424,0.002000,0.249992,0,0);}
.m6b_c00302{transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304665,0.000000,0.000000,0.250000,0,0);}
.me0_c00302{transform:matrix(0.306130,-0.002449,0.002000,0.249992,0,0);-ms-transform:matrix(0.306130,-0.002449,0.002000,0.249992,0,0);-webkit-transform:matrix(0.306130,-0.002449,0.002000,0.249992,0,0);}
.mbb_c00302{transform:matrix(0.319446,-0.003514,0.002750,0.249985,0,0);-ms-transform:matrix(0.319446,-0.003514,0.002750,0.249985,0,0);-webkit-transform:matrix(0.319446,-0.003514,0.002750,0.249985,0,0);}
.m7c_c00302{transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321335,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.323202,-0.002909,0.002250,0.249990,0,0);-ms-transform:matrix(0.323202,-0.002909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.323202,-0.002909,0.002250,0.249990,0,0);}
.mf_c00302{transform:matrix(0.323959,-0.005183,0.003999,0.249968,0,0);-ms-transform:matrix(0.323959,-0.005183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.323959,-0.005183,0.003999,0.249968,0,0);}
.m6a_c00302{transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);}
.mef_c00302{transform:matrix(0.332534,-0.002660,0.002000,0.249992,0,0);-ms-transform:matrix(0.332534,-0.002660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.332534,-0.002660,0.002000,0.249992,0,0);}
.m5a_c00302{transform:matrix(0.333322,-0.003000,0.002250,0.249990,0,0);-ms-transform:matrix(0.333322,-0.003000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.333322,-0.003000,0.002250,0.249990,0,0);}
.m10d_c00302{transform:matrix(0.333774,-0.002670,0.002000,0.249992,0,0);-ms-transform:matrix(0.333774,-0.002670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.333774,-0.002670,0.002000,0.249992,0,0);}
.m9e_c00302{transform:matrix(0.338276,-0.004059,0.003000,0.249982,0,0);-ms-transform:matrix(0.338276,-0.004059,0.003000,0.249982,0,0);-webkit-transform:matrix(0.338276,-0.004059,0.003000,0.249982,0,0);}
.m58_c00302{transform:matrix(0.344321,-0.003099,0.002250,0.249990,0,0);-ms-transform:matrix(0.344321,-0.003099,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344321,-0.003099,0.002250,0.249990,0,0);}
.m70_c00302{transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354705,0.000000,0.000000,0.250000,0,0);}
.m103_c00302{transform:matrix(0.359808,-0.002878,0.002000,0.249992,0,0);-ms-transform:matrix(0.359808,-0.002878,0.002000,0.249992,0,0);-webkit-transform:matrix(0.359808,-0.002878,0.002000,0.249992,0,0);}
.m101_c00302{transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.368290,-0.003315,0.002250,0.249990,0,0);-ms-transform:matrix(0.368290,-0.003315,0.002250,0.249990,0,0);-webkit-transform:matrix(0.368290,-0.003315,0.002250,0.249990,0,0);}
.m18_c00302{transform:matrix(0.368593,-0.002949,0.002000,0.249992,0,0);-ms-transform:matrix(0.368593,-0.002949,0.002000,0.249992,0,0);-webkit-transform:matrix(0.368593,-0.002949,0.002000,0.249992,0,0);}
.m13_c00302{transform:matrix(0.389335,-0.006229,0.003999,0.249968,0,0);-ms-transform:matrix(0.389335,-0.006229,0.003999,0.249968,0,0);-webkit-transform:matrix(0.389335,-0.006229,0.003999,0.249968,0,0);}
.m63_c00302{transform:matrix(0.395400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395400,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.404121,-0.004849,0.003000,0.249982,0,0);-ms-transform:matrix(0.404121,-0.004849,0.003000,0.249982,0,0);-webkit-transform:matrix(0.404121,-0.004849,0.003000,0.249982,0,0);}
.mb_c00302{transform:matrix(0.412822,-0.006605,0.003999,0.249968,0,0);-ms-transform:matrix(0.412822,-0.006605,0.003999,0.249968,0,0);-webkit-transform:matrix(0.412822,-0.006605,0.003999,0.249968,0,0);}
.m7b_c00302{transform:matrix(0.414695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414695,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.415637,-0.003325,0.002000,0.249992,0,0);-ms-transform:matrix(0.415637,-0.003325,0.002000,0.249992,0,0);-webkit-transform:matrix(0.415637,-0.003325,0.002000,0.249992,0,0);}
.m6d_c00302{transform:matrix(0.416890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416890,0.000000,0.000000,0.250000,0,0);}
.mfb_c00302{transform:matrix(0.422316,-0.003379,0.002000,0.249992,0,0);-ms-transform:matrix(0.422316,-0.003379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.422316,-0.003379,0.002000,0.249992,0,0);}
.m1d_c00302{transform:matrix(0.465790,-0.003726,0.002000,0.249992,0,0);-ms-transform:matrix(0.465790,-0.003726,0.002000,0.249992,0,0);-webkit-transform:matrix(0.465790,-0.003726,0.002000,0.249992,0,0);}
.m78_c00302{transform:matrix(0.479755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479755,0.000000,0.000000,0.250000,0,0);}
.m10f_c00302{transform:matrix(0.527493,-0.004220,0.002000,0.249992,0,0);-ms-transform:matrix(0.527493,-0.004220,0.002000,0.249992,0,0);-webkit-transform:matrix(0.527493,-0.004220,0.002000,0.249992,0,0);}
.m54_c00302{transform:matrix(0.740595,-0.006665,0.002250,0.249990,0,0);-ms-transform:matrix(0.740595,-0.006665,0.002250,0.249990,0,0);-webkit-transform:matrix(0.740595,-0.006665,0.002250,0.249990,0,0);}
.mbe_c00302{transform:matrix(0.792702,-0.008720,0.002750,0.249985,0,0);-ms-transform:matrix(0.792702,-0.008720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.792702,-0.008720,0.002750,0.249985,0,0);}
.m1a_c00302{transform:matrix(0.840988,-0.006728,0.002000,0.249992,0,0);-ms-transform:matrix(0.840988,-0.006728,0.002000,0.249992,0,0);-webkit-transform:matrix(0.840988,-0.006728,0.002000,0.249992,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;}
.fs12_c00302{font-size:22.050000px;}
.fs13_c00302{font-size:47.251512px;}
.fs6_c00302{font-size:49.351999px;}
.fs8_c00302{font-size:50.400000px;}
.fs5_c00302{font-size:59.850000px;}
.fs7_c00302{font-size:60.900000px;}
.fse_c00302{font-size:66.152679px;}
.fsd_c00302{font-size:67.204065px;}
.fs3_c00302{font-size:68.252184px;}
.fs4_c00302{font-size:69.302218px;}
.fsb_c00302{font-size:69.304989px;}
.fs1_c00302{font-size:69.308870px;}
.fs2_c00302{font-size:70.352251px;}
.fsf_c00302{font-size:70.352849px;}
.fsa_c00302{font-size:71.405141px;}
.fsc_c00302{font-size:72.455216px;}
.fs0_c00302{font-size:72.459273px;}
.fs11_c00302{font-size:76.650000px;}
.fs10_c00302{font-size:91.324647px;}
.fs9_c00302{font-size:124.950000px;}
.y0_c00302{bottom:0.000000px;}
.y69_c00302{bottom:156.111000px;}
.y68_c00302{bottom:157.314000px;}
.y67_c00302{bottom:158.098500px;}
.y66_c00302{bottom:158.185500px;}
.y65_c00302{bottom:158.794500px;}
.y64_c00302{bottom:159.139500px;}
.y63_c00302{bottom:159.301500px;}
.y62_c00302{bottom:159.409500px;}
.y61_c00302{bottom:159.684000px;}
.y60_c00302{bottom:159.889500px;}
.y5f_c00302{bottom:160.110000px;}
.y5e_c00302{bottom:175.437000px;}
.yed_c00302{bottom:196.020000px;}
.yee_c00302{bottom:196.220892px;}
.yef_c00302{bottom:196.383072px;}
.yf0_c00302{bottom:196.814976px;}
.yf1_c00302{bottom:196.972620px;}
.yf2_c00302{bottom:197.216508px;}
.yf3_c00302{bottom:197.430444px;}
.yf4_c00302{bottom:197.954604px;}
.yf5_c00302{bottom:198.020340px;}
.yf6_c00302{bottom:198.322524px;}
.yf7_c00302{bottom:198.482376px;}
.yf8_c00302{bottom:198.618672px;}
.yf9_c00302{bottom:198.791604px;}
.yfa_c00302{bottom:199.150104px;}
.yfb_c00302{bottom:199.312080px;}
.yfc_c00302{bottom:199.495728px;}
.y4f_c00302{bottom:213.570000px;}
.y50_c00302{bottom:213.755220px;}
.y51_c00302{bottom:214.194659px;}
.y52_c00302{bottom:214.256111px;}
.y53_c00302{bottom:214.503107px;}
.y54_c00302{bottom:214.731608px;}
.y55_c00302{bottom:215.103425px;}
.y56_c00302{bottom:215.239437px;}
.y57_c00302{bottom:215.387721px;}
.y58_c00302{bottom:215.864096px;}
.y59_c00302{bottom:216.009774px;}
.y5a_c00302{bottom:216.335529px;}
.y5b_c00302{bottom:216.760739px;}
.y5c_c00302{bottom:217.028822px;}
.y5d_c00302{bottom:217.570752px;}
.yec_c00302{bottom:403.920000px;}
.y4e_c00302{bottom:420.556500px;}
.ye0_c00302{bottom:443.610168px;}
.ye1_c00302{bottom:443.829432px;}
.ye2_c00302{bottom:444.108120px;}
.ye3_c00302{bottom:444.266916px;}
.ye4_c00302{bottom:444.679044px;}
.ye5_c00302{bottom:444.859104px;}
.ye6_c00302{bottom:445.224144px;}
.ye7_c00302{bottom:445.421928px;}
.ye8_c00302{bottom:445.751208px;}
.ye9_c00302{bottom:445.995372px;}
.yea_c00302{bottom:446.252832px;}
.yeb_c00302{bottom:446.605920px;}
.yd3_c00302{bottom:466.561500px;}
.yd4_c00302{bottom:466.775328px;}
.yd5_c00302{bottom:467.075556px;}
.yd6_c00302{bottom:467.423028px;}
.yd7_c00302{bottom:467.663112px;}
.yd8_c00302{bottom:467.868276px;}
.yd9_c00302{bottom:468.332712px;}
.yda_c00302{bottom:468.611304px;}
.ydb_c00302{bottom:468.773160px;}
.ydc_c00302{bottom:469.045524px;}
.ydd_c00302{bottom:469.283172px;}
.yde_c00302{bottom:469.609404px;}
.ydf_c00302{bottom:470.045676px;}
.y41_c00302{bottom:488.971500px;}
.y42_c00302{bottom:489.323256px;}
.y43_c00302{bottom:489.574080px;}
.y44_c00302{bottom:489.729372px;}
.y45_c00302{bottom:490.293360px;}
.y46_c00302{bottom:490.446780px;}
.y47_c00302{bottom:490.725168px;}
.y48_c00302{bottom:491.040504px;}
.y49_c00302{bottom:491.351844px;}
.y4a_c00302{bottom:491.513940px;}
.y4b_c00302{bottom:492.006372px;}
.y4c_c00302{bottom:492.170532px;}
.y4d_c00302{bottom:492.380172px;}
.y33_c00302{bottom:512.190000px;}
.y34_c00302{bottom:512.531532px;}
.y35_c00302{bottom:512.784120px;}
.y36_c00302{bottom:513.094980px;}
.y37_c00302{bottom:513.261324px;}
.y38_c00302{bottom:513.533784px;}
.y39_c00302{bottom:513.760644px;}
.y3a_c00302{bottom:513.987408px;}
.y3b_c00302{bottom:514.358640px;}
.y3c_c00302{bottom:514.583328px;}
.y3d_c00302{bottom:515.134368px;}
.y3e_c00302{bottom:515.283504px;}
.y3f_c00302{bottom:515.587764px;}
.y40_c00302{bottom:515.836500px;}
.yc6_c00302{bottom:534.870000px;}
.yc7_c00302{bottom:535.144584px;}
.yc8_c00302{bottom:535.310640px;}
.yc9_c00302{bottom:535.533132px;}
.yca_c00302{bottom:535.997568px;}
.ycb_c00302{bottom:536.222508px;}
.ycc_c00302{bottom:536.781648px;}
.ycd_c00302{bottom:537.054096px;}
.yce_c00302{bottom:537.414564px;}
.ycf_c00302{bottom:537.674016px;}
.yd0_c00302{bottom:537.846756px;}
.yd1_c00302{bottom:538.162296px;}
.yd2_c00302{bottom:538.555092px;}
.y27_c00302{bottom:557.550840px;}
.y28_c00302{bottom:557.728320px;}
.y29_c00302{bottom:558.110988px;}
.y2a_c00302{bottom:558.385452px;}
.y2b_c00302{bottom:559.116624px;}
.y2c_c00302{bottom:559.656072px;}
.y2d_c00302{bottom:559.847784px;}
.y2e_c00302{bottom:559.991700px;}
.y2f_c00302{bottom:560.185572px;}
.y30_c00302{bottom:560.877684px;}
.y31_c00302{bottom:561.234252px;}
.y32_c00302{bottom:561.487476px;}
.y18_c00302{bottom:580.317000px;}
.y19_c00302{bottom:580.472328px;}
.y1a_c00302{bottom:580.671036px;}
.y1b_c00302{bottom:580.697400px;}
.y1c_c00302{bottom:581.299704px;}
.y1d_c00302{bottom:581.497704px;}
.y1e_c00302{bottom:581.662860px;}
.y1f_c00302{bottom:582.127800px;}
.y20_c00302{bottom:582.193788px;}
.y21_c00302{bottom:582.243792px;}
.y22_c00302{bottom:582.390684px;}
.y23_c00302{bottom:582.847728px;}
.y24_c00302{bottom:582.990348px;}
.y25_c00302{bottom:583.199916px;}
.y26_c00302{bottom:583.706340px;}
.yc5_c00302{bottom:583.854000px;}
.yc4_c00302{bottom:623.210010px;}
.yc3_c00302{bottom:625.229406px;}
.yc2_c00302{bottom:629.655000px;}
.yd_c00302{bottom:647.453604px;}
.ye_c00302{bottom:647.702640px;}
.yf_c00302{bottom:647.896536px;}
.y10_c00302{bottom:648.665664px;}
.y11_c00302{bottom:648.933252px;}
.y12_c00302{bottom:649.264128px;}
.y13_c00302{bottom:649.863192px;}
.y14_c00302{bottom:650.190252px;}
.y15_c00302{bottom:650.513844px;}
.y16_c00302{bottom:651.118404px;}
.y17_c00302{bottom:651.491928px;}
.yb7_c00302{bottom:669.589291px;}
.yb8_c00302{bottom:670.069978px;}
.yb9_c00302{bottom:670.833948px;}
.yba_c00302{bottom:671.620465px;}
.ybb_c00302{bottom:672.008850px;}
.ybc_c00302{bottom:672.350313px;}
.ybd_c00302{bottom:673.181767px;}
.ybe_c00302{bottom:673.568653px;}
.ybf_c00302{bottom:674.061682px;}
.yc0_c00302{bottom:674.385390px;}
.yc1_c00302{bottom:674.658409px;}
.yab_c00302{bottom:692.821500px;}
.yac_c00302{bottom:693.327034px;}
.yad_c00302{bottom:693.665182px;}
.yae_c00302{bottom:693.961345px;}
.yaf_c00302{bottom:694.324104px;}
.yb0_c00302{bottom:694.746276px;}
.yb1_c00302{bottom:695.305311px;}
.yb2_c00302{bottom:695.611369px;}
.yb3_c00302{bottom:695.922504px;}
.yb4_c00302{bottom:696.516774px;}
.yb5_c00302{bottom:696.627217px;}
.yb6_c00302{bottom:697.035066px;}
.y1_c00302{bottom:713.344500px;}
.y2_c00302{bottom:714.610380px;}
.y3_c00302{bottom:715.681812px;}
.y4_c00302{bottom:716.350092px;}
.y5_c00302{bottom:716.693412px;}
.y6_c00302{bottom:716.986452px;}
.y7_c00302{bottom:718.147980px;}
.y8_c00302{bottom:718.489980px;}
.y9_c00302{bottom:718.952364px;}
.ya_c00302{bottom:719.325780px;}
.yb_c00302{bottom:720.714420px;}
.yc_c00302{bottom:721.674228px;}
.y9d_c00302{bottom:738.451500px;}
.y9e_c00302{bottom:738.887612px;}
.y9f_c00302{bottom:739.148955px;}
.ya0_c00302{bottom:739.488063px;}
.ya1_c00302{bottom:739.906965px;}
.ya2_c00302{bottom:740.168308px;}
.ya3_c00302{bottom:740.468427px;}
.ya4_c00302{bottom:740.949369px;}
.ya5_c00302{bottom:741.181177px;}
.ya6_c00302{bottom:742.093017px;}
.ya7_c00302{bottom:742.627089px;}
.ya8_c00302{bottom:742.829659px;}
.ya9_c00302{bottom:743.251795px;}
.yaa_c00302{bottom:744.065955px;}
.y8e_c00302{bottom:760.587474px;}
.y8f_c00302{bottom:760.960056px;}
.y90_c00302{bottom:761.257524px;}
.y91_c00302{bottom:761.595204px;}
.y92_c00302{bottom:762.016494px;}
.y93_c00302{bottom:762.508974px;}
.y94_c00302{bottom:762.781116px;}
.y95_c00302{bottom:763.665726px;}
.y96_c00302{bottom:763.944348px;}
.y97_c00302{bottom:764.566734px;}
.y98_c00302{bottom:764.813388px;}
.y99_c00302{bottom:765.521580px;}
.y9a_c00302{bottom:765.530832px;}
.y9b_c00302{bottom:765.703128px;}
.y9c_c00302{bottom:765.969060px;}
.y83_c00302{bottom:783.795408px;}
.y84_c00302{bottom:784.110546px;}
.y85_c00302{bottom:784.758186px;}
.y86_c00302{bottom:785.048868px;}
.y87_c00302{bottom:785.607024px;}
.y88_c00302{bottom:785.867694px;}
.y89_c00302{bottom:786.324690px;}
.y8a_c00302{bottom:786.954948px;}
.y8b_c00302{bottom:787.468716px;}
.y8c_c00302{bottom:787.976076px;}
.y8d_c00302{bottom:788.875314px;}
.y78_c00302{bottom:806.220378px;}
.y79_c00302{bottom:807.110064px;}
.y7a_c00302{bottom:807.444060px;}
.y7b_c00302{bottom:808.304670px;}
.y7c_c00302{bottom:808.530756px;}
.y7d_c00302{bottom:809.056416px;}
.y7e_c00302{bottom:809.294418px;}
.y7f_c00302{bottom:809.594604px;}
.y80_c00302{bottom:810.097380px;}
.y81_c00302{bottom:810.708960px;}
.y82_c00302{bottom:810.955542px;}
.y6b_c00302{bottom:828.633000px;}
.y6c_c00302{bottom:829.026822px;}
.y6d_c00302{bottom:829.746984px;}
.y6e_c00302{bottom:829.926102px;}
.y6f_c00302{bottom:830.315856px;}
.y70_c00302{bottom:830.575812px;}
.y71_c00302{bottom:831.063720px;}
.y72_c00302{bottom:831.543132px;}
.y73_c00302{bottom:831.931896px;}
.y74_c00302{bottom:832.727280px;}
.y75_c00302{bottom:833.239128px;}
.y76_c00302{bottom:833.491938px;}
.y77_c00302{bottom:834.204072px;}
.y6a_c00302{bottom:876.103500px;}
.h14_c00302{height:22.050000px;}
.h15_c00302{height:47.251512px;}
.h8_c00302{height:49.351999px;}
.ha_c00302{height:50.400000px;}
.h7_c00302{height:59.850000px;}
.h9_c00302{height:60.900000px;}
.h10_c00302{height:66.152679px;}
.hf_c00302{height:67.204065px;}
.h5_c00302{height:68.252184px;}
.h6_c00302{height:69.302218px;}
.hd_c00302{height:69.304989px;}
.h3_c00302{height:69.308870px;}
.h4_c00302{height:70.352251px;}
.h11_c00302{height:70.352849px;}
.hc_c00302{height:71.405141px;}
.he_c00302{height:72.455216px;}
.h2_c00302{height:72.459273px;}
.h13_c00302{height:76.650000px;}
.h12_c00302{height:91.324647px;}
.hb_c00302{height:124.950000px;}
.h1_c00302{height:1005.000000px;}
.h0_c00302{height:1005.150000px;}
.w0_c00302{width:702.540000px;}
.w1_c00302{width:702.750000px;}
.x0_c00302{left:0.000000px;}
.x59_c00302{left:61.752000px;}
.x4e_c00302{left:65.610000px;}
.x44_c00302{left:68.388000px;}
.x1_c00302{left:75.841500px;}
.x41_c00302{left:82.080000px;}
.x3a_c00302{left:83.536500px;}
.x23_c00302{left:84.616956px;}
.xd_c00302{left:86.529720px;}
.x94_c00302{left:87.583500px;}
.x45_c00302{left:88.968000px;}
.x9a_c00302{left:97.200000px;}
.x24_c00302{left:104.364300px;}
.x18_c00302{left:106.558500px;}
.xe_c00302{left:111.378096px;}
.x72_c00302{left:113.015484px;}
.x5a_c00302{left:114.945000px;}
.x78_c00302{left:117.336372px;}
.x63_c00302{left:119.500500px;}
.x8c_c00302{left:121.597500px;}
.x4f_c00302{left:124.740000px;}
.x2f_c00302{left:127.000500px;}
.x87_c00302{left:128.939859px;}
.xf_c00302{left:130.810968px;}
.x19_c00302{left:134.692500px;}
.x46_c00302{left:137.794500px;}
.x50_c00302{left:141.480000px;}
.x47_c00302{left:144.622500px;}
.x25_c00302{left:146.947464px;}
.x42_c00302{left:149.580000px;}
.x95_c00302{left:151.840500px;}
.x2_c00302{left:154.959000px;}
.x30_c00302{left:158.574000px;}
.x5b_c00302{left:162.735000px;}
.x6b_c00302{left:167.498874px;}
.x79_c00302{left:170.265372px;}
.x43_c00302{left:171.450000px;}
.x26_c00302{left:177.505224px;}
.x64_c00302{left:179.514000px;}
.x5c_c00302{left:182.953500px;}
.x9b_c00302{left:188.284500px;}
.x65_c00302{left:194.440500px;}
.x31_c00302{left:197.431500px;}
.x51_c00302{left:198.450000px;}
.x7a_c00302{left:205.372872px;}
.x10_c00302{left:207.763860px;}
.x1a_c00302{left:209.980500px;}
.x82_c00302{left:210.994500px;}
.x32_c00302{left:218.224500px;}
.x3_c00302{left:221.923500px;}
.x5d_c00302{left:226.144500px;}
.x8d_c00302{left:228.220500px;}
.x11_c00302{left:234.521928px;}
.x48_c00302{left:238.768500px;}
.x7f_c00302{left:241.797000px;}
.x52_c00302{left:244.350000px;}
.x7b_c00302{left:246.412872px;}
.x3b_c00302{left:248.769000px;}
.x96_c00302{left:250.930500px;}
.x33_c00302{left:252.282000px;}
.x49_c00302{left:253.881000px;}
.x1b_c00302{left:255.375000px;}
.x27_c00302{left:258.776076px;}
.x4_c00302{left:263.691000px;}
.x9c_c00302{left:265.218000px;}
.x98_c00302{left:266.594064px;}
.x12_c00302{left:267.673620px;}
.x7c_c00302{left:269.091372px;}
.x4a_c00302{left:270.357000px;}
.x73_c00302{left:272.821410px;}
.x6c_c00302{left:276.050670px;}
.x34_c00302{left:280.639500px;}
.x5_c00302{left:285.148500px;}
.x66_c00302{left:289.242000px;}
.x6d_c00302{left:296.641422px;}
.x83_c00302{left:298.209000px;}
.x5e_c00302{left:302.271000px;}
.x6_c00302{left:303.463500px;}
.x88_c00302{left:305.200186px;}
.x35_c00302{left:308.985000px;}
.x53_c00302{left:311.850000px;}
.x1c_c00302{left:313.492500px;}
.x28_c00302{left:318.706596px;}
.x1d_c00302{left:321.741000px;}
.x4b_c00302{left:323.287500px;}
.x8e_c00302{left:326.230500px;}
.x13_c00302{left:327.620880px;}
.x67_c00302{left:329.193000px;}
.x54_c00302{left:330.750000px;}
.x80_c00302{left:333.876000px;}
.x55_c00302{left:337.230000px;}
.x9d_c00302{left:338.955000px;}
.x29_c00302{left:340.045428px;}
.x3c_c00302{left:342.162000px;}
.x6e_c00302{left:344.446998px;}
.x1e_c00302{left:346.353000px;}
.x2a_c00302{left:355.972296px;}
.x14_c00302{left:360.346524px;}
.x68_c00302{left:361.590000px;}
.x97_c00302{left:364.041000px;}
.x6f_c00302{left:366.030750px;}
.x74_c00302{left:371.677098px;}
.x7_c00302{left:376.059000px;}
.x2b_c00302{left:377.581128px;}
.x3d_c00302{left:381.079500px;}
.x36_c00302{left:383.475000px;}
.x15_c00302{left:392.761644px;}
.x84_c00302{left:394.330500px;}
.x8_c00302{left:397.434000px;}
.x3e_c00302{left:401.341500px;}
.x1f_c00302{left:403.483500px;}
.x8f_c00302{left:405.345000px;}
.x5f_c00302{left:411.154500px;}
.x56_c00302{left:414.720000px;}
.x81_c00302{left:416.770500px;}
.x75_c00302{left:418.366656px;}
.x20_c00302{left:421.311000px;}
.x4c_c00302{left:422.914500px;}
.x9_c00302{left:426.333000px;}
.x57_c00302{left:428.760000px;}
.x9e_c00302{left:435.363000px;}
.x90_c00302{left:437.776500px;}
.x70_c00302{left:438.945114px;}
.x21_c00302{left:447.507000px;}
.xa_c00302{left:449.671500px;}
.x16_c00302{left:453.239952px;}
.x2c_c00302{left:454.532016px;}
.x61_c00302{left:455.760000px;}
.x91_c00302{left:459.369000px;}
.x3f_c00302{left:462.895500px;}
.x76_c00302{left:464.522214px;}
.x99_c00302{left:465.561648px;}
.x58_c00302{left:468.180000px;}
.x37_c00302{left:470.997000px;}
.x9f_c00302{left:480.175500px;}
.x40_c00302{left:483.415500px;}
.x17_c00302{left:490.557528px;}
.x69_c00302{left:491.593500px;}
.x8a_c00302{left:492.876537px;}
.x2d_c00302{left:494.227704px;}
.x7d_c00302{left:497.463372px;}
.x92_c00302{left:498.811500px;}
.xa0_c00302{left:500.422500px;}
.x85_c00302{left:507.202500px;}
.x38_c00302{left:509.029500px;}
.x22_c00302{left:510.810000px;}
.x4d_c00302{left:512.916000px;}
.x8b_c00302{left:514.890000px;}
.x71_c00302{left:516.959550px;}
.x89_c00302{left:521.256298px;}
.x2e_c00302{left:522.317976px;}
.xa1_c00302{left:523.378500px;}
.x62_c00302{left:530.550000px;}
.x7e_c00302{left:534.753372px;}
.xb_c00302{left:536.461500px;}
.x39_c00302{left:540.121500px;}
.x77_c00302{left:546.334704px;}
.x93_c00302{left:547.911000px;}
.x6a_c00302{left:550.938000px;}
.x86_c00302{left:552.519000px;}
.x60_c00302{left:561.459000px;}
.xc_c00302{left:596.449500px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.fs12_c00302{font-size:19.600000pt;}
.fs13_c00302{font-size:42.001344pt;}
.fs6_c00302{font-size:43.868443pt;}
.fs8_c00302{font-size:44.800000pt;}
.fs5_c00302{font-size:53.200000pt;}
.fs7_c00302{font-size:54.133333pt;}
.fse_c00302{font-size:58.802381pt;}
.fsd_c00302{font-size:59.736947pt;}
.fs3_c00302{font-size:60.668608pt;}
.fs4_c00302{font-size:61.601971pt;}
.fsb_c00302{font-size:61.604435pt;}
.fs1_c00302{font-size:61.607884pt;}
.fs2_c00302{font-size:62.535334pt;}
.fsf_c00302{font-size:62.535866pt;}
.fsa_c00302{font-size:63.471236pt;}
.fsc_c00302{font-size:64.404637pt;}
.fs0_c00302{font-size:64.408243pt;}
.fs11_c00302{font-size:68.133333pt;}
.fs10_c00302{font-size:81.177464pt;}
.fs9_c00302{font-size:111.066667pt;}
.y0_c00302{bottom:0.000000pt;}
.y69_c00302{bottom:138.765333pt;}
.y68_c00302{bottom:139.834667pt;}
.y67_c00302{bottom:140.532000pt;}
.y66_c00302{bottom:140.609333pt;}
.y65_c00302{bottom:141.150667pt;}
.y64_c00302{bottom:141.457333pt;}
.y63_c00302{bottom:141.601333pt;}
.y62_c00302{bottom:141.697333pt;}
.y61_c00302{bottom:141.941333pt;}
.y60_c00302{bottom:142.124000pt;}
.y5f_c00302{bottom:142.320000pt;}
.y5e_c00302{bottom:155.944000pt;}
.yed_c00302{bottom:174.240000pt;}
.yee_c00302{bottom:174.418571pt;}
.yef_c00302{bottom:174.562731pt;}
.yf0_c00302{bottom:174.946645pt;}
.yf1_c00302{bottom:175.086773pt;}
.yf2_c00302{bottom:175.303563pt;}
.yf3_c00302{bottom:175.493728pt;}
.yf4_c00302{bottom:175.959648pt;}
.yf5_c00302{bottom:176.018080pt;}
.yf6_c00302{bottom:176.286688pt;}
.yf7_c00302{bottom:176.428779pt;}
.yf8_c00302{bottom:176.549931pt;}
.yf9_c00302{bottom:176.703648pt;}
.yfa_c00302{bottom:177.022315pt;}
.yfb_c00302{bottom:177.166293pt;}
.yfc_c00302{bottom:177.329536pt;}
.y4f_c00302{bottom:189.840000pt;}
.y50_c00302{bottom:190.004640pt;}
.y51_c00302{bottom:190.395252pt;}
.y52_c00302{bottom:190.449876pt;}
.y53_c00302{bottom:190.669428pt;}
.y54_c00302{bottom:190.872540pt;}
.y55_c00302{bottom:191.203044pt;}
.y56_c00302{bottom:191.323944pt;}
.y57_c00302{bottom:191.455752pt;}
.y58_c00302{bottom:191.879196pt;}
.y59_c00302{bottom:192.008688pt;}
.y5a_c00302{bottom:192.298248pt;}
.y5b_c00302{bottom:192.676212pt;}
.y5c_c00302{bottom:192.914508pt;}
.y5d_c00302{bottom:193.396224pt;}
.yec_c00302{bottom:359.040000pt;}
.y4e_c00302{bottom:373.828000pt;}
.ye0_c00302{bottom:394.320149pt;}
.ye1_c00302{bottom:394.515051pt;}
.ye2_c00302{bottom:394.762773pt;}
.ye3_c00302{bottom:394.903925pt;}
.ye4_c00302{bottom:395.270261pt;}
.ye5_c00302{bottom:395.430315pt;}
.ye6_c00302{bottom:395.754795pt;}
.ye7_c00302{bottom:395.930603pt;}
.ye8_c00302{bottom:396.223296pt;}
.ye9_c00302{bottom:396.440331pt;}
.yea_c00302{bottom:396.669184pt;}
.yeb_c00302{bottom:396.983040pt;}
.yd3_c00302{bottom:414.721333pt;}
.yd4_c00302{bottom:414.911403pt;}
.yd5_c00302{bottom:415.178272pt;}
.yd6_c00302{bottom:415.487136pt;}
.yd7_c00302{bottom:415.700544pt;}
.yd8_c00302{bottom:415.882912pt;}
.yd9_c00302{bottom:416.295744pt;}
.yda_c00302{bottom:416.543381pt;}
.ydb_c00302{bottom:416.687253pt;}
.ydc_c00302{bottom:416.929355pt;}
.ydd_c00302{bottom:417.140597pt;}
.yde_c00302{bottom:417.430581pt;}
.ydf_c00302{bottom:417.818379pt;}
.y41_c00302{bottom:434.641333pt;}
.y42_c00302{bottom:434.954005pt;}
.y43_c00302{bottom:435.176960pt;}
.y44_c00302{bottom:435.314997pt;}
.y45_c00302{bottom:435.816320pt;}
.y46_c00302{bottom:435.952693pt;}
.y47_c00302{bottom:436.200149pt;}
.y48_c00302{bottom:436.480448pt;}
.y49_c00302{bottom:436.757195pt;}
.y4a_c00302{bottom:436.901280pt;}
.y4b_c00302{bottom:437.338997pt;}
.y4c_c00302{bottom:437.484917pt;}
.y4d_c00302{bottom:437.671264pt;}
.y33_c00302{bottom:455.280000pt;}
.y34_c00302{bottom:455.583584pt;}
.y35_c00302{bottom:455.808107pt;}
.y36_c00302{bottom:456.084427pt;}
.y37_c00302{bottom:456.232288pt;}
.y38_c00302{bottom:456.474475pt;}
.y39_c00302{bottom:456.676128pt;}
.y3a_c00302{bottom:456.877696pt;}
.y3b_c00302{bottom:457.207680pt;}
.y3c_c00302{bottom:457.407403pt;}
.y3d_c00302{bottom:457.897216pt;}
.y3e_c00302{bottom:458.029781pt;}
.y3f_c00302{bottom:458.300235pt;}
.y40_c00302{bottom:458.521333pt;}
.yc6_c00302{bottom:475.440000pt;}
.yc7_c00302{bottom:475.684075pt;}
.yc8_c00302{bottom:475.831680pt;}
.yc9_c00302{bottom:476.029451pt;}
.yca_c00302{bottom:476.442283pt;}
.ycb_c00302{bottom:476.642229pt;}
.ycc_c00302{bottom:477.139243pt;}
.ycd_c00302{bottom:477.381419pt;}
.yce_c00302{bottom:477.701835pt;}
.ycf_c00302{bottom:477.932459pt;}
.yd0_c00302{bottom:478.086005pt;}
.yd1_c00302{bottom:478.366485pt;}
.yd2_c00302{bottom:478.715637pt;}
.y27_c00302{bottom:495.600747pt;}
.y28_c00302{bottom:495.758507pt;}
.y29_c00302{bottom:496.098656pt;}
.y2a_c00302{bottom:496.342624pt;}
.y2b_c00302{bottom:496.992555pt;}
.y2c_c00302{bottom:497.472064pt;}
.y2d_c00302{bottom:497.642475pt;}
.y2e_c00302{bottom:497.770400pt;}
.y2f_c00302{bottom:497.942731pt;}
.y30_c00302{bottom:498.557941pt;}
.y31_c00302{bottom:498.874891pt;}
.y32_c00302{bottom:499.099979pt;}
.y18_c00302{bottom:515.837333pt;}
.y19_c00302{bottom:515.975403pt;}
.y1a_c00302{bottom:516.152032pt;}
.y1b_c00302{bottom:516.175467pt;}
.y1c_c00302{bottom:516.710848pt;}
.y1d_c00302{bottom:516.886848pt;}
.y1e_c00302{bottom:517.033653pt;}
.y1f_c00302{bottom:517.446933pt;}
.y20_c00302{bottom:517.505589pt;}
.y21_c00302{bottom:517.550037pt;}
.y22_c00302{bottom:517.680608pt;}
.y23_c00302{bottom:518.086869pt;}
.y24_c00302{bottom:518.213643pt;}
.y25_c00302{bottom:518.399925pt;}
.y26_c00302{bottom:518.850080pt;}
.yc5_c00302{bottom:518.981333pt;}
.yc4_c00302{bottom:553.964453pt;}
.yc3_c00302{bottom:555.759472pt;}
.yc2_c00302{bottom:559.693333pt;}
.yd_c00302{bottom:575.514315pt;}
.ye_c00302{bottom:575.735680pt;}
.yf_c00302{bottom:575.908032pt;}
.y10_c00302{bottom:576.591701pt;}
.y11_c00302{bottom:576.829557pt;}
.y12_c00302{bottom:577.123669pt;}
.y13_c00302{bottom:577.656171pt;}
.y14_c00302{bottom:577.946891pt;}
.y15_c00302{bottom:578.234528pt;}
.y16_c00302{bottom:578.771915pt;}
.y17_c00302{bottom:579.103936pt;}
.yb7_c00302{bottom:595.190481pt;}
.yb8_c00302{bottom:595.617759pt;}
.yb9_c00302{bottom:596.296843pt;}
.yba_c00302{bottom:596.995969pt;}
.ybb_c00302{bottom:597.341200pt;}
.ybc_c00302{bottom:597.644723pt;}
.ybd_c00302{bottom:598.383793pt;}
.ybe_c00302{bottom:598.727692pt;}
.ybf_c00302{bottom:599.165940pt;}
.yc0_c00302{bottom:599.453680pt;}
.yc1_c00302{bottom:599.696364pt;}
.yab_c00302{bottom:615.841333pt;}
.yac_c00302{bottom:616.290697pt;}
.yad_c00302{bottom:616.591273pt;}
.yae_c00302{bottom:616.854529pt;}
.yaf_c00302{bottom:617.176981pt;}
.yb0_c00302{bottom:617.552245pt;}
.yb1_c00302{bottom:618.049165pt;}
.yb2_c00302{bottom:618.321217pt;}
.yb3_c00302{bottom:618.597781pt;}
.yb4_c00302{bottom:619.126021pt;}
.yb5_c00302{bottom:619.224193pt;}
.yb6_c00302{bottom:619.586725pt;}
.y1_c00302{bottom:634.084000pt;}
.y2_c00302{bottom:635.209227pt;}
.y3_c00302{bottom:636.161611pt;}
.y4_c00302{bottom:636.755637pt;}
.y5_c00302{bottom:637.060811pt;}
.y6_c00302{bottom:637.321291pt;}
.y7_c00302{bottom:638.353760pt;}
.y8_c00302{bottom:638.657760pt;}
.y9_c00302{bottom:639.068768pt;}
.ya_c00302{bottom:639.400693pt;}
.yb_c00302{bottom:640.635040pt;}
.yc_c00302{bottom:641.488203pt;}
.y9d_c00302{bottom:656.401333pt;}
.y9e_c00302{bottom:656.788988pt;}
.y9f_c00302{bottom:657.021293pt;}
.ya0_c00302{bottom:657.322723pt;}
.ya1_c00302{bottom:657.695080pt;}
.ya2_c00302{bottom:657.927385pt;}
.ya3_c00302{bottom:658.194157pt;}
.ya4_c00302{bottom:658.621661pt;}
.ya5_c00302{bottom:658.827713pt;}
.ya6_c00302{bottom:659.638237pt;}
.ya7_c00302{bottom:660.112968pt;}
.ya8_c00302{bottom:660.293031pt;}
.ya9_c00302{bottom:660.668263pt;}
.yaa_c00302{bottom:661.391960pt;}
.y8e_c00302{bottom:676.077755pt;}
.y8f_c00302{bottom:676.408939pt;}
.y90_c00302{bottom:676.673355pt;}
.y91_c00302{bottom:676.973515pt;}
.y92_c00302{bottom:677.347995pt;}
.y93_c00302{bottom:677.785755pt;}
.y94_c00302{bottom:678.027659pt;}
.y95_c00302{bottom:678.813979pt;}
.y96_c00302{bottom:679.061643pt;}
.y97_c00302{bottom:679.614875pt;}
.y98_c00302{bottom:679.834123pt;}
.y99_c00302{bottom:680.463627pt;}
.y9a_c00302{bottom:680.471851pt;}
.y9b_c00302{bottom:680.625003pt;}
.y9c_c00302{bottom:680.861387pt;}
.y83_c00302{bottom:696.707029pt;}
.y84_c00302{bottom:696.987152pt;}
.y85_c00302{bottom:697.562832pt;}
.y86_c00302{bottom:697.821216pt;}
.y87_c00302{bottom:698.317355pt;}
.y88_c00302{bottom:698.549061pt;}
.y89_c00302{bottom:698.955280pt;}
.y8a_c00302{bottom:699.515509pt;}
.y8b_c00302{bottom:699.972192pt;}
.y8c_c00302{bottom:700.423179pt;}
.y8d_c00302{bottom:701.222501pt;}
.y78_c00302{bottom:716.640336pt;}
.y79_c00302{bottom:717.431168pt;}
.y7a_c00302{bottom:717.728053pt;}
.y7b_c00302{bottom:718.493040pt;}
.y7c_c00302{bottom:718.694005pt;}
.y7d_c00302{bottom:719.161259pt;}
.y7e_c00302{bottom:719.372816pt;}
.y7f_c00302{bottom:719.639648pt;}
.y80_c00302{bottom:720.086560pt;}
.y81_c00302{bottom:720.630187pt;}
.y82_c00302{bottom:720.849371pt;}
.y6b_c00302{bottom:736.562667pt;}
.y6c_c00302{bottom:736.912731pt;}
.y6d_c00302{bottom:737.552875pt;}
.y6e_c00302{bottom:737.712091pt;}
.y6f_c00302{bottom:738.058539pt;}
.y70_c00302{bottom:738.289611pt;}
.y71_c00302{bottom:738.723307pt;}
.y72_c00302{bottom:739.149451pt;}
.y73_c00302{bottom:739.495019pt;}
.y74_c00302{bottom:740.202027pt;}
.y75_c00302{bottom:740.657003pt;}
.y76_c00302{bottom:740.881723pt;}
.y77_c00302{bottom:741.514731pt;}
.y6a_c00302{bottom:778.758667pt;}
.h14_c00302{height:19.600000pt;}
.h15_c00302{height:42.001344pt;}
.h8_c00302{height:43.868443pt;}
.ha_c00302{height:44.800000pt;}
.h7_c00302{height:53.200000pt;}
.h9_c00302{height:54.133333pt;}
.h10_c00302{height:58.802381pt;}
.hf_c00302{height:59.736947pt;}
.h5_c00302{height:60.668608pt;}
.h6_c00302{height:61.601971pt;}
.hd_c00302{height:61.604435pt;}
.h3_c00302{height:61.607884pt;}
.h4_c00302{height:62.535334pt;}
.h11_c00302{height:62.535866pt;}
.hc_c00302{height:63.471236pt;}
.he_c00302{height:64.404637pt;}
.h2_c00302{height:64.408243pt;}
.h13_c00302{height:68.133333pt;}
.h12_c00302{height:81.177464pt;}
.hb_c00302{height:111.066667pt;}
.h1_c00302{height:893.333333pt;}
.h0_c00302{height:893.466667pt;}
.w0_c00302{width:624.480000pt;}
.w1_c00302{width:624.666667pt;}
.x0_c00302{left:0.000000pt;}
.x59_c00302{left:54.890667pt;}
.x4e_c00302{left:58.320000pt;}
.x44_c00302{left:60.789333pt;}
.x1_c00302{left:67.414667pt;}
.x41_c00302{left:72.960000pt;}
.x3a_c00302{left:74.254667pt;}
.x23_c00302{left:75.215072pt;}
.xd_c00302{left:76.915307pt;}
.x94_c00302{left:77.852000pt;}
.x45_c00302{left:79.082667pt;}
.x9a_c00302{left:86.400000pt;}
.x24_c00302{left:92.768267pt;}
.x18_c00302{left:94.718667pt;}
.xe_c00302{left:99.002752pt;}
.x72_c00302{left:100.458208pt;}
.x5a_c00302{left:102.173333pt;}
.x78_c00302{left:104.298997pt;}
.x63_c00302{left:106.222667pt;}
.x8c_c00302{left:108.086667pt;}
.x4f_c00302{left:110.880000pt;}
.x2f_c00302{left:112.889333pt;}
.x87_c00302{left:114.613208pt;}
.xf_c00302{left:116.276416pt;}
.x19_c00302{left:119.726667pt;}
.x46_c00302{left:122.484000pt;}
.x50_c00302{left:125.760000pt;}
.x47_c00302{left:128.553333pt;}
.x25_c00302{left:130.619968pt;}
.x42_c00302{left:132.960000pt;}
.x95_c00302{left:134.969333pt;}
.x2_c00302{left:137.741333pt;}
.x30_c00302{left:140.954667pt;}
.x5b_c00302{left:144.653333pt;}
.x6b_c00302{left:148.887888pt;}
.x79_c00302{left:151.346997pt;}
.x43_c00302{left:152.400000pt;}
.x26_c00302{left:157.782421pt;}
.x64_c00302{left:159.568000pt;}
.x5c_c00302{left:162.625333pt;}
.x9b_c00302{left:167.364000pt;}
.x65_c00302{left:172.836000pt;}
.x31_c00302{left:175.494667pt;}
.x51_c00302{left:176.400000pt;}
.x7a_c00302{left:182.553664pt;}
.x10_c00302{left:184.678987pt;}
.x1a_c00302{left:186.649333pt;}
.x82_c00302{left:187.550667pt;}
.x32_c00302{left:193.977333pt;}
.x3_c00302{left:197.265333pt;}
.x5d_c00302{left:201.017333pt;}
.x8d_c00302{left:202.862667pt;}
.x11_c00302{left:208.463936pt;}
.x48_c00302{left:212.238667pt;}
.x7f_c00302{left:214.930667pt;}
.x52_c00302{left:217.200000pt;}
.x7b_c00302{left:219.033664pt;}
.x3b_c00302{left:221.128000pt;}
.x96_c00302{left:223.049333pt;}
.x33_c00302{left:224.250667pt;}
.x49_c00302{left:225.672000pt;}
.x1b_c00302{left:227.000000pt;}
.x27_c00302{left:230.023179pt;}
.x4_c00302{left:234.392000pt;}
.x9c_c00302{left:235.749333pt;}
.x98_c00302{left:236.972501pt;}
.x12_c00302{left:237.932107pt;}
.x7c_c00302{left:239.192331pt;}
.x4a_c00302{left:240.317333pt;}
.x73_c00302{left:242.507920pt;}
.x6c_c00302{left:245.378373pt;}
.x34_c00302{left:249.457333pt;}
.x5_c00302{left:253.465333pt;}
.x66_c00302{left:257.104000pt;}
.x6d_c00302{left:263.681264pt;}
.x83_c00302{left:265.074667pt;}
.x5e_c00302{left:268.685333pt;}
.x6_c00302{left:269.745333pt;}
.x88_c00302{left:271.289055pt;}
.x35_c00302{left:274.653333pt;}
.x53_c00302{left:277.200000pt;}
.x1c_c00302{left:278.660000pt;}
.x28_c00302{left:283.294752pt;}
.x1d_c00302{left:285.992000pt;}
.x4b_c00302{left:287.366667pt;}
.x8e_c00302{left:289.982667pt;}
.x13_c00302{left:291.218560pt;}
.x67_c00302{left:292.616000pt;}
.x54_c00302{left:294.000000pt;}
.x80_c00302{left:296.778667pt;}
.x55_c00302{left:299.760000pt;}
.x9d_c00302{left:301.293333pt;}
.x29_c00302{left:302.262603pt;}
.x3c_c00302{left:304.144000pt;}
.x6e_c00302{left:306.175109pt;}
.x1e_c00302{left:307.869333pt;}
.x2a_c00302{left:316.419819pt;}
.x14_c00302{left:320.308021pt;}
.x68_c00302{left:321.413333pt;}
.x97_c00302{left:323.592000pt;}
.x6f_c00302{left:325.360667pt;}
.x74_c00302{left:330.379643pt;}
.x7_c00302{left:334.274667pt;}
.x2b_c00302{left:335.627669pt;}
.x3d_c00302{left:338.737333pt;}
.x36_c00302{left:340.866667pt;}
.x15_c00302{left:349.121461pt;}
.x84_c00302{left:350.516000pt;}
.x8_c00302{left:353.274667pt;}
.x3e_c00302{left:356.748000pt;}
.x1f_c00302{left:358.652000pt;}
.x8f_c00302{left:360.306667pt;}
.x5f_c00302{left:365.470667pt;}
.x56_c00302{left:368.640000pt;}
.x81_c00302{left:370.462667pt;}
.x75_c00302{left:371.881472pt;}
.x20_c00302{left:374.498667pt;}
.x4c_c00302{left:375.924000pt;}
.x9_c00302{left:378.962667pt;}
.x57_c00302{left:381.120000pt;}
.x9e_c00302{left:386.989333pt;}
.x90_c00302{left:389.134667pt;}
.x70_c00302{left:390.173435pt;}
.x21_c00302{left:397.784000pt;}
.xa_c00302{left:399.708000pt;}
.x16_c00302{left:402.879957pt;}
.x2c_c00302{left:404.028459pt;}
.x61_c00302{left:405.120000pt;}
.x91_c00302{left:408.328000pt;}
.x3f_c00302{left:411.462667pt;}
.x76_c00302{left:412.908635pt;}
.x99_c00302{left:413.832576pt;}
.x58_c00302{left:416.160000pt;}
.x37_c00302{left:418.664000pt;}
.x9f_c00302{left:426.822667pt;}
.x40_c00302{left:429.702667pt;}
.x17_c00302{left:436.051136pt;}
.x69_c00302{left:436.972000pt;}
.x8a_c00302{left:438.112477pt;}
.x2d_c00302{left:439.313515pt;}
.x7d_c00302{left:442.189664pt;}
.x92_c00302{left:443.388000pt;}
.xa0_c00302{left:444.820000pt;}
.x85_c00302{left:450.846667pt;}
.x38_c00302{left:452.470667pt;}
.x22_c00302{left:454.053333pt;}
.x4d_c00302{left:455.925333pt;}
.x8b_c00302{left:457.680000pt;}
.x71_c00302{left:459.519600pt;}
.x89_c00302{left:463.338932pt;}
.x2e_c00302{left:464.282645pt;}
.xa1_c00302{left:465.225333pt;}
.x62_c00302{left:471.600000pt;}
.x7e_c00302{left:475.336331pt;}
.xb_c00302{left:476.854667pt;}
.x39_c00302{left:480.108000pt;}
.x77_c00302{left:485.630848pt;}
.x93_c00302{left:487.032000pt;}
.x6a_c00302{left:489.722667pt;}
.x86_c00302{left:491.128000pt;}
.x60_c00302{left:499.074667pt;}
.xc_c00302{left:530.177333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.mc_c00303{transform:matrix(0.008170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008170,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{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);}
.me7_c00303{transform:matrix(0.032930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032930,0.000000,0.000000,0.250000,0,0);}
.m102_c00303{transform:matrix(0.078661,0.001180,-0.003750,0.249972,0,0);-ms-transform:matrix(0.078661,0.001180,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.078661,0.001180,-0.003750,0.249972,0,0);}
.mf0_c00303{transform:matrix(0.121936,0.001829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.121936,0.001829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.121936,0.001829,-0.003750,0.249972,0,0);}
.m103_c00303{transform:matrix(0.128556,0.001928,-0.003750,0.249972,0,0);-ms-transform:matrix(0.128556,0.001928,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.128556,0.001928,-0.003750,0.249972,0,0);}
.m34_c00303{transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130415,0.000000,0.000000,0.250000,0,0);}
.me9_c00303{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);}
.m3d_c00303{transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);}
.mf9_c00303{transform:matrix(0.145134,0.002177,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145134,0.002177,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145134,0.002177,-0.003750,0.249972,0,0);}
.mc4_c00303{transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);}
.mcb_c00303{transform:matrix(0.150105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150105,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{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);}
.m2d_c00303{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);}
.m6_c00303{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);}
.mba_c00303{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);}
.m25_c00303{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{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);}
.me4_c00303{transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159945,0.000000,0.000000,0.250000,0,0);}
.me1_c00303{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);}
.mfa_c00303{transform:matrix(0.160027,0.002400,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160027,0.002400,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160027,0.002400,-0.003750,0.249972,0,0);}
.m30_c00303{transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{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);}
.ma0_c00303{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);}
.mbc_c00303{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);}
.mb6_c00303{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);}
.m47_c00303{transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);}
.mfd_c00303{transform:matrix(0.164521,0.002468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164521,0.002468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164521,0.002468,-0.003750,0.249972,0,0);}
.mc5_c00303{transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164690,0.000000,0.000000,0.250000,0,0);}
.mb1_c00303{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);}
.m6a_c00303{transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{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);}
.m15_c00303{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);}
.m5b_c00303{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);}
.m88_c00303{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);}
.m4e_c00303{transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);}
.mc1_c00303{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);}
.mc7_c00303{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{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);}
.m4c_c00303{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{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_c00303{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_c00303{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);}
.md3_c00303{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);}
.mb0_c00303{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);}
.mfc_c00303{transform:matrix(0.170276,0.002554,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170276,0.002554,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170276,0.002554,-0.003750,0.249972,0,0);}
.m26_c00303{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_c00303{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);}
.m8b_c00303{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);}
.md2_c00303{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);}
.ma9_c00303{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);}
.m31_c00303{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);}
.mf7_c00303{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);}
.m89_c00303{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);}
.m20_c00303{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);}
.mfb_c00303{transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);}
.m28_c00303{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_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);}
.m54_c00303{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);}
.m10_c00303{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{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);}
.mc6_c00303{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);}
.m2_c00303{transform:matrix(0.177091,-0.011889,0.016746,0.249439,0,0);-ms-transform:matrix(0.177091,-0.011889,0.016746,0.249439,0,0);-webkit-transform:matrix(0.177091,-0.011889,0.016746,0.249439,0,0);}
.m83_c00303{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);}
.m4a_c00303{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);}
.m37_c00303{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);}
.m92_c00303{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);}
.m6d_c00303{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);}
.m49_c00303{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);}
.ma7_c00303{transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180535,0.000000,0.000000,0.250000,0,0);}
.m76_c00303{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);}
.m22_c00303{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);}
.m39_c00303{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);}
.mc3_c00303{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);}
.mdb_c00303{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);}
.m7d_c00303{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);}
.m85_c00303{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);}
.mae_c00303{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);}
.m8c_c00303{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);}
.m100_c00303{transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183024,0.002745,-0.003750,0.249972,0,0);}
.m43_c00303{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);}
.m5c_c00303{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);}
.m82_c00303{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);}
.m6f_c00303{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);}
.m5e_c00303{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);}
.m33_c00303{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);}
.mbf_c00303{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);}
.ma4_c00303{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);}
.m77_c00303{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);}
.m80_c00303{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);}
.m3a_c00303{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);}
.m2f_c00303{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);}
.m38_c00303{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);}
.m2c_c00303{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);}
.m1b_c00303{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);}
.m86_c00303{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);}
.m41_c00303{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);}
.m63_c00303{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);}
.m90_c00303{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);}
.m78_c00303{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);}
.m3e_c00303{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);}
.m57_c00303{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{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);}
.md8_c00303{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);}
.m7a_c00303{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);}
.m11_c00303{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);}
.mcc_c00303{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);}
.m68_c00303{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);}
.mea_c00303{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);}
.m56_c00303{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);}
.m5d_c00303{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);}
.m44_c00303{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);}
.mb7_c00303{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);}
.m23_c00303{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);}
.m84_c00303{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);}
.m18_c00303{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);}
.m21_c00303{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);}
.m19_c00303{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);}
.m72_c00303{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);}
.mf_c00303{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);}
.mef_c00303{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);}
.m27_c00303{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);}
.ma2_c00303{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);}
.m73_c00303{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);}
.me_c00303{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{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);}
.mee_c00303{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);}
.m29_c00303{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);}
.m51_c00303{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);}
.mf2_c00303{transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199118,0.002987,-0.003750,0.249972,0,0);}
.mf4_c00303{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);}
.m3c_c00303{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);}
.mab_c00303{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);}
.m70_c00303{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);}
.me3_c00303{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.mfe_c00303{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);}
.m48_c00303{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);}
.md6_c00303{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);}
.mb5_c00303{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);}
.m6e_c00303{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);}
.m9e_c00303{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);}
.m91_c00303{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);}
.m97_c00303{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);}
.m81_c00303{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);}
.m24_c00303{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);}
.mf3_c00303{transform:matrix(0.203692,0.003055,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203692,0.003055,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203692,0.003055,-0.003750,0.249972,0,0);}
.m1d_c00303{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);}
.mf8_c00303{transform:matrix(0.204357,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204357,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204357,0.003065,-0.003750,0.249972,0,0);}
.mf1_c00303{transform:matrix(0.204442,0.003067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204442,0.003067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204442,0.003067,-0.003750,0.249972,0,0);}
.m94_c00303{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);}
.mc0_c00303{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);}
.m5f_c00303{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);}
.md9_c00303{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);}
.mf6_c00303{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);}
.m2e_c00303{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);}
.m2a_c00303{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);}
.m9d_c00303{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);}
.m79_c00303{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);}
.mb9_c00303{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);}
.m95_c00303{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);}
.mb8_c00303{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);}
.ma8_c00303{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);}
.mec_c00303{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);}
.me8_c00303{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);}
.m3f_c00303{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);}
.m50_c00303{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);}
.m40_c00303{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);}
.me2_c00303{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);}
.m9c_c00303{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);}
.m7e_c00303{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);}
.m98_c00303{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);}
.maf_c00303{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);}
.m36_c00303{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);}
.maa_c00303{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);}
.m3b_c00303{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);}
.mbd_c00303{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);}
.mac_c00303{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);}
.ma3_c00303{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);}
.m53_c00303{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);}
.m99_c00303{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);}
.md1_c00303{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);}
.mb3_c00303{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);}
.md7_c00303{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);}
.m64_c00303{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);}
.mc2_c00303{transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213560,0.000000,0.000000,0.250000,0,0);}
.me6_c00303{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);}
.m5a_c00303{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);}
.m55_c00303{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);}
.ma5_c00303{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);}
.m96_c00303{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);}
.m52_c00303{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);}
.m1c_c00303{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);}
.m9a_c00303{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);}
.m66_c00303{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);}
.m13_c00303{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);}
.mca_c00303{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);}
.m101_c00303{transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);}
.m65_c00303{transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);}
.mff_c00303{transform:matrix(0.223490,0.003352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223490,0.003352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223490,0.003352,-0.003750,0.249972,0,0);}
.mdc_c00303{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);}
.m6c_c00303{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);}
.mc8_c00303{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);}
.mce_c00303{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);}
.m8_c00303{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{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);}
.md4_c00303{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);}
.m7c_c00303{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);}
.mdf_c00303{transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232040,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.235705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235705,0.000000,0.000000,0.250000,0,0);}
.mc9_c00303{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{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);}
.mcf_c00303{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);}
.mf5_c00303{transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);}
.mda_c00303{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);}
.m4_c00303{transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240255,0.000000,0.000000,0.250000,0,0);}
.mad_c00303{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);}
.m67_c00303{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);}
.ma1_c00303{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);}
.m8a_c00303{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{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);}
.med_c00303{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);}
.mdd_c00303{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);}
.m58_c00303{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);}
.me5_c00303{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m7_c00303{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.md5_c00303{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);}
.m12_c00303{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{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);}
.m74_c00303{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);}
.m71_c00303{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);}
.m9_c00303{transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);}
.md0_c00303{transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266695,0.000000,0.000000,0.250000,0,0);}
.mbe_c00303{transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);}
.mcd_c00303{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.mb2_c00303{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.278380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278380,0.000000,0.000000,0.250000,0,0);}
.meb_c00303{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287115,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{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);}
.m9f_c00303{transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298020,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306575,0.000000,0.000000,0.250000,0,0);}
.mde_c00303{transform:matrix(0.315690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315690,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);}
.m104_c00303{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);}
.m9b_c00303{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);}
.m3_c00303{transform:matrix(0.398235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398235,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.519225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519225,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.576008,-0.038670,0.016746,0.249439,0,0);-ms-transform:matrix(0.576008,-0.038670,0.016746,0.249439,0,0);-webkit-transform:matrix(0.576008,-0.038670,0.016746,0.249439,0,0);}
.m0_c00303{transform:matrix(1.203830,-0.080818,0.016746,0.249439,0,0);-ms-transform:matrix(1.203830,-0.080818,0.016746,0.249439,0,0);-webkit-transform:matrix(1.203830,-0.080818,0.016746,0.249439,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;}
.fs16_c00303{font-size:22.050000px;}
.fs11_c00303{font-size:52.500000px;}
.fs15_c00303{font-size:52.505906px;}
.fs13_c00303{font-size:53.556024px;}
.fs12_c00303{font-size:54.600000px;}
.fs14_c00303{font-size:59.856733px;}
.fsc_c00303{font-size:61.950000px;}
.fsd_c00303{font-size:63.000000px;}
.fsf_c00303{font-size:67.200000px;}
.fse_c00303{font-size:68.250000px;}
.fs8_c00303{font-size:69.300000px;}
.fs9_c00303{font-size:70.350000px;}
.fs5_c00303{font-size:71.400000px;}
.fs6_c00303{font-size:72.450000px;}
.fsa_c00303{font-size:73.500000px;}
.fs10_c00303{font-size:74.550000px;}
.fsb_c00303{font-size:76.650000px;}
.fs7_c00303{font-size:78.750000px;}
.fs0_c00303{font-size:89.271997px;}
.fs4_c00303{font-size:93.450000px;}
.fs2_c00303{font-size:95.550000px;}
.fs3_c00303{font-size:142.800000px;}
.fs1_c00303{font-size:171.150000px;}
.y0_c00303{bottom:0.000000px;}
.y81_c00303{bottom:159.300000px;}
.y80_c00303{bottom:169.327282px;}
.y7f_c00303{bottom:170.666693px;}
.y7e_c00303{bottom:171.376590px;}
.y7d_c00303{bottom:171.903173px;}
.y7c_c00303{bottom:172.159050px;}
.y7b_c00303{bottom:172.799130px;}
.y6c_c00303{bottom:173.650500px;}
.y7a_c00303{bottom:187.680278px;}
.y79_c00303{bottom:188.426055px;}
.y78_c00303{bottom:189.053175px;}
.y6b_c00303{bottom:189.096000px;}
.y77_c00303{bottom:189.634763px;}
.y76_c00303{bottom:189.875828px;}
.y75_c00303{bottom:190.193663px;}
.y74_c00303{bottom:190.681725px;}
.y73_c00303{bottom:190.889340px;}
.y72_c00303{bottom:205.845368px;}
.y71_c00303{bottom:206.290867px;}
.y70_c00303{bottom:206.590725px;}
.y6f_c00303{bottom:207.952718px;}
.y6e_c00303{bottom:208.867005px;}
.y6d_c00303{bottom:208.984500px;}
.y6a_c00303{bottom:209.740500px;}
.y69_c00303{bottom:253.795500px;}
.y68_c00303{bottom:254.287500px;}
.y67_c00303{bottom:255.474000px;}
.y66_c00303{bottom:255.928500px;}
.y65_c00303{bottom:256.941000px;}
.y64_c00303{bottom:257.757000px;}
.y63_c00303{bottom:258.117000px;}
.y62_c00303{bottom:258.649500px;}
.y61_c00303{bottom:259.753500px;}
.y60_c00303{bottom:260.281500px;}
.y5f_c00303{bottom:281.260500px;}
.y5e_c00303{bottom:300.175500px;}
.y5d_c00303{bottom:301.473000px;}
.y5c_c00303{bottom:301.797000px;}
.y5b_c00303{bottom:302.463000px;}
.y5a_c00303{bottom:303.474000px;}
.y59_c00303{bottom:304.587000px;}
.y58_c00303{bottom:305.490000px;}
.y57_c00303{bottom:306.039000px;}
.y56_c00303{bottom:306.627000px;}
.y55_c00303{bottom:308.151000px;}
.y54_c00303{bottom:308.611500px;}
.y53_c00303{bottom:324.709500px;}
.y52_c00303{bottom:325.029000px;}
.y51_c00303{bottom:325.219500px;}
.y50_c00303{bottom:325.908000px;}
.y4f_c00303{bottom:326.118000px;}
.y4e_c00303{bottom:326.497500px;}
.y4d_c00303{bottom:326.749500px;}
.y4c_c00303{bottom:327.039000px;}
.y4b_c00303{bottom:327.304500px;}
.y4a_c00303{bottom:327.628500px;}
.y49_c00303{bottom:327.775500px;}
.y48_c00303{bottom:328.050000px;}
.y47_c00303{bottom:347.209500px;}
.y46_c00303{bottom:347.574000px;}
.y45_c00303{bottom:347.995500px;}
.y44_c00303{bottom:348.105000px;}
.y43_c00303{bottom:348.619500px;}
.y42_c00303{bottom:349.096500px;}
.y41_c00303{bottom:349.333500px;}
.y40_c00303{bottom:349.798500px;}
.y3f_c00303{bottom:349.954500px;}
.y3e_c00303{bottom:350.154000px;}
.y3d_c00303{bottom:350.730000px;}
.y3c_c00303{bottom:370.897500px;}
.y3b_c00303{bottom:371.068500px;}
.y3a_c00303{bottom:371.541000px;}
.y39_c00303{bottom:371.829000px;}
.y38_c00303{bottom:372.603000px;}
.y37_c00303{bottom:373.068000px;}
.y36_c00303{bottom:373.456500px;}
.y35_c00303{bottom:373.711500px;}
.y34_c00303{bottom:374.152500px;}
.y33_c00303{bottom:374.491500px;}
.y32_c00303{bottom:392.985000px;}
.y31_c00303{bottom:393.514500px;}
.y30_c00303{bottom:393.781500px;}
.y2f_c00303{bottom:394.533000px;}
.y2e_c00303{bottom:394.645500px;}
.y2d_c00303{bottom:395.136000px;}
.y2c_c00303{bottom:395.509500px;}
.y2b_c00303{bottom:395.844000px;}
.y2a_c00303{bottom:396.069000px;}
.y29_c00303{bottom:396.261000px;}
.y28_c00303{bottom:396.630000px;}
.y27_c00303{bottom:415.491000px;}
.y26_c00303{bottom:415.845000px;}
.y25_c00303{bottom:416.424000px;}
.y24_c00303{bottom:416.910000px;}
.y23_c00303{bottom:417.153000px;}
.y22_c00303{bottom:417.550500px;}
.y21_c00303{bottom:417.696000px;}
.y20_c00303{bottom:418.021500px;}
.y1f_c00303{bottom:418.198500px;}
.y1e_c00303{bottom:418.501500px;}
.y1d_c00303{bottom:438.735000px;}
.y1c_c00303{bottom:438.940500px;}
.y1b_c00303{bottom:439.240500px;}
.y1a_c00303{bottom:439.381500px;}
.y19_c00303{bottom:439.830000px;}
.y18_c00303{bottom:440.062500px;}
.y17_c00303{bottom:440.578500px;}
.y16_c00303{bottom:440.878500px;}
.y15_c00303{bottom:441.115500px;}
.y14_c00303{bottom:441.502500px;}
.y13_c00303{bottom:441.720000px;}
.y12_c00303{bottom:463.198500px;}
.y11_c00303{bottom:485.632500px;}
.y10_c00303{bottom:509.284500px;}
.yf_c00303{bottom:530.980500px;}
.ye_c00303{bottom:554.652000px;}
.yd_c00303{bottom:578.100000px;}
.yc_c00303{bottom:600.544500px;}
.yb_c00303{bottom:623.430000px;}
.ya_c00303{bottom:645.873000px;}
.y9_c00303{bottom:668.790000px;}
.y8_c00303{bottom:691.438500px;}
.y7_c00303{bottom:730.179000px;}
.y6_c00303{bottom:779.305500px;}
.y5_c00303{bottom:841.860000px;}
.y4_c00303{bottom:869.418000px;}
.y1_c00303{bottom:920.164500px;}
.y2_c00303{bottom:930.901619px;}
.y3_c00303{bottom:945.415728px;}
.h18_c00303{height:22.050000px;}
.h13_c00303{height:52.500000px;}
.h17_c00303{height:52.505906px;}
.h15_c00303{height:53.556024px;}
.h14_c00303{height:54.600000px;}
.h16_c00303{height:59.856733px;}
.he_c00303{height:61.950000px;}
.hf_c00303{height:63.000000px;}
.h11_c00303{height:67.200000px;}
.h10_c00303{height:68.250000px;}
.ha_c00303{height:69.300000px;}
.hb_c00303{height:70.350000px;}
.h7_c00303{height:71.400000px;}
.h8_c00303{height:72.450000px;}
.hc_c00303{height:73.500000px;}
.h12_c00303{height:74.550000px;}
.hd_c00303{height:76.650000px;}
.h9_c00303{height:78.750000px;}
.h2_c00303{height:89.271997px;}
.h6_c00303{height:93.450000px;}
.h4_c00303{height:95.550000px;}
.h5_c00303{height:142.800000px;}
.h3_c00303{height:171.150000px;}
.h0_c00303{height:1008.450000px;}
.h1_c00303{height:1008.750000px;}
.w0_c00303{width:696.000000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:92.620500px;}
.x44_c00303{left:139.590000px;}
.x4_c00303{left:152.280000px;}
.xb_c00303{left:154.170000px;}
.x17_c00303{left:165.240000px;}
.x93_c00303{left:167.400000px;}
.x84_c00303{left:177.745500px;}
.x94_c00303{left:180.360000px;}
.x97_c00303{left:181.440000px;}
.xe_c00303{left:183.600000px;}
.x9_c00303{left:185.220000px;}
.x18_c00303{left:186.840000px;}
.x7f_c00303{left:188.365500px;}
.x98_c00303{left:190.350000px;}
.x8f_c00303{left:192.016500px;}
.x45_c00303{left:194.940000px;}
.x6a_c00303{left:197.002500px;}
.x88_c00303{left:198.187500px;}
.x21_c00303{left:200.610000px;}
.x3c_c00303{left:203.040000px;}
.x80_c00303{left:206.718000px;}
.x2a_c00303{left:219.240000px;}
.x19_c00303{left:221.400000px;}
.x22_c00303{left:223.560000px;}
.x4a_c00303{left:224.910000px;}
.x4f_c00303{left:226.800000px;}
.x5c_c00303{left:230.310000px;}
.x46_c00303{left:233.280000px;}
.x89_c00303{left:237.337500px;}
.xf_c00303{left:241.110000px;}
.x3d_c00303{left:243.000000px;}
.x99_c00303{left:244.620000px;}
.x81_c00303{left:247.218000px;}
.x33_c00303{left:248.670000px;}
.x72_c00303{left:251.269500px;}
.x2_c00303{left:252.555489px;}
.x1a_c00303{left:255.690000px;}
.x50_c00303{left:258.660000px;}
.x4b_c00303{left:262.980000px;}
.x3e_c00303{left:265.410000px;}
.x6b_c00303{left:268.822500px;}
.x77_c00303{left:270.702000px;}
.x47_c00303{left:272.430000px;}
.x65_c00303{left:273.957000px;}
.x34_c00303{left:275.130000px;}
.x82_c00303{left:280.429500px;}
.x73_c00303{left:283.128000px;}
.x95_c00303{left:287.820000px;}
.x2b_c00303{left:289.440000px;}
.x51_c00303{left:293.490000px;}
.x1b_c00303{left:294.570000px;}
.x5_c00303{left:298.620000px;}
.x5d_c00303{left:299.700000px;}
.x23_c00303{left:306.450000px;}
.x90_c00303{left:308.919000px;}
.x4c_c00303{left:311.040000px;}
.x35_c00303{left:314.550000px;}
.x10_c00303{left:316.710000px;}
.x85_c00303{left:317.829000px;}
.x5e_c00303{left:319.680000px;}
.x3f_c00303{left:326.430000px;}
.x78_c00303{left:328.789500px;}
.x74_c00303{left:331.731000px;}
.x24_c00303{left:334.800000px;}
.x96_c00303{left:338.850000px;}
.x6d_c00303{left:340.636500px;}
.x52_c00303{left:344.250000px;}
.x36_c00303{left:345.330000px;}
.x48_c00303{left:346.680000px;}
.x4d_c00303{left:347.760000px;}
.x79_c00303{left:358.453500px;}
.x40_c00303{left:361.530000px;}
.x6_c00303{left:362.880000px;}
.x86_c00303{left:365.352000px;}
.x8a_c00303{left:369.097500px;}
.x2c_c00303{left:370.710000px;}
.x5f_c00303{left:375.030000px;}
.x59_c00303{left:376.380000px;}
.x1c_c00303{left:380.700000px;}
.x8_c00303{left:382.050000px;}
.x11_c00303{left:383.400000px;}
.x9c_c00303{left:388.945620px;}
.x66_c00303{left:390.597000px;}
.x91_c00303{left:392.928000px;}
.x83_c00303{left:395.722500px;}
.xa_c00303{left:396.900000px;}
.x2d_c00303{left:398.250000px;}
.x25_c00303{left:400.410000px;}
.x6e_c00303{left:401.907000px;}
.x9a_c00303{left:403.507500px;}
.x60_c00303{left:406.350000px;}
.x7_c00303{left:409.590000px;}
.x1d_c00303{left:415.260000px;}
.x7a_c00303{left:418.132500px;}
.x26_c00303{left:420.930000px;}
.x67_c00303{left:423.811500px;}
.x41_c00303{left:426.060000px;}
.x12_c00303{left:429.570000px;}
.x37_c00303{left:432.000000px;}
.x53_c00303{left:436.590000px;}
.x9d_c00303{left:438.624862px;}
.xa0_c00303{left:443.462993px;}
.x6c_c00303{left:450.538500px;}
.x38_c00303{left:452.790000px;}
.x1e_c00303{left:455.490000px;}
.x13_c00303{left:457.920000px;}
.xa1_c00303{left:459.421245px;}
.x27_c00303{left:460.620000px;}
.x2e_c00303{left:463.590000px;}
.x8b_c00303{left:465.217500px;}
.x61_c00303{left:467.100000px;}
.x3_c00303{left:468.750732px;}
.x54_c00303{left:470.340000px;}
.x87_c00303{left:477.117000px;}
.x9e_c00303{left:478.585470px;}
.x7b_c00303{left:482.392500px;}
.x39_c00303{left:483.840000px;}
.x75_c00303{left:486.448500px;}
.x68_c00303{left:487.806000px;}
.x42_c00303{left:488.970000px;}
.x55_c00303{left:490.590000px;}
.xa2_c00303{left:492.326250px;}
.x7c_c00303{left:496.129500px;}
.x92_c00303{left:497.671500px;}
.x2f_c00303{left:499.230000px;}
.x8c_c00303{left:504.367500px;}
.x62_c00303{left:507.060000px;}
.x4e_c00303{left:508.680000px;}
.x6f_c00303{left:509.965500px;}
.xc_c00303{left:512.460000px;}
.x5a_c00303{left:520.830000px;}
.x28_c00303{left:522.990000px;}
.x56_c00303{left:525.420000px;}
.x14_c00303{left:529.740000px;}
.x3a_c00303{left:532.710000px;}
.xa3_c00303{left:536.652075px;}
.x30_c00303{left:541.620000px;}
.x70_c00303{left:543.411000px;}
.x1f_c00303{left:547.560000px;}
.x7d_c00303{left:548.815500px;}
.x63_c00303{left:550.260000px;}
.x9b_c00303{left:555.259500px;}
.x15_c00303{left:557.820000px;}
.x57_c00303{left:562.410000px;}
.x9f_c00303{left:564.967275px;}
.x8d_c00303{left:566.197500px;}
.x43_c00303{left:571.590000px;}
.x20_c00303{left:575.370000px;}
.x29_c00303{left:576.720000px;}
.x69_c00303{left:580.446000px;}
.x76_c00303{left:581.493000px;}
.x31_c00303{left:584.010000px;}
.x58_c00303{left:589.410000px;}
.x7e_c00303{left:594.441000px;}
.x64_c00303{left:597.510000px;}
.x16_c00303{left:598.590000px;}
.x8e_c00303{left:600.757500px;}
.x32_c00303{left:603.180000px;}
.x3b_c00303{left:604.260000px;}
.xd_c00303{left:607.770000px;}
.x71_c00303{left:609.559500px;}
.x49_c00303{left:618.030000px;}
.x5b_c00303{left:620.730000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
.fs16_c00303{font-size:19.600000pt;}
.fs11_c00303{font-size:46.666667pt;}
.fs15_c00303{font-size:46.671916pt;}
.fs13_c00303{font-size:47.605355pt;}
.fs12_c00303{font-size:48.533333pt;}
.fs14_c00303{font-size:53.205985pt;}
.fsc_c00303{font-size:55.066667pt;}
.fsd_c00303{font-size:56.000000pt;}
.fsf_c00303{font-size:59.733333pt;}
.fse_c00303{font-size:60.666667pt;}
.fs8_c00303{font-size:61.600000pt;}
.fs9_c00303{font-size:62.533333pt;}
.fs5_c00303{font-size:63.466667pt;}
.fs6_c00303{font-size:64.400000pt;}
.fsa_c00303{font-size:65.333333pt;}
.fs10_c00303{font-size:66.266667pt;}
.fsb_c00303{font-size:68.133333pt;}
.fs7_c00303{font-size:70.000000pt;}
.fs0_c00303{font-size:79.352887pt;}
.fs4_c00303{font-size:83.066667pt;}
.fs2_c00303{font-size:84.933333pt;}
.fs3_c00303{font-size:126.933333pt;}
.fs1_c00303{font-size:152.133333pt;}
.y0_c00303{bottom:0.000000pt;}
.y81_c00303{bottom:141.600000pt;}
.y80_c00303{bottom:150.513140pt;}
.y7f_c00303{bottom:151.703727pt;}
.y7e_c00303{bottom:152.334747pt;}
.y7d_c00303{bottom:152.802820pt;}
.y7c_c00303{bottom:153.030267pt;}
.y7b_c00303{bottom:153.599227pt;}
.y6c_c00303{bottom:154.356000pt;}
.y7a_c00303{bottom:166.826913pt;}
.y79_c00303{bottom:167.489827pt;}
.y78_c00303{bottom:168.047267pt;}
.y6b_c00303{bottom:168.085333pt;}
.y77_c00303{bottom:168.564233pt;}
.y76_c00303{bottom:168.778513pt;}
.y75_c00303{bottom:169.061033pt;}
.y74_c00303{bottom:169.494867pt;}
.y73_c00303{bottom:169.679413pt;}
.y72_c00303{bottom:182.973660pt;}
.y71_c00303{bottom:183.369660pt;}
.y70_c00303{bottom:183.636200pt;}
.y6f_c00303{bottom:184.846860pt;}
.y6e_c00303{bottom:185.659560pt;}
.y6d_c00303{bottom:185.764000pt;}
.y6a_c00303{bottom:186.436000pt;}
.y69_c00303{bottom:225.596000pt;}
.y68_c00303{bottom:226.033333pt;}
.y67_c00303{bottom:227.088000pt;}
.y66_c00303{bottom:227.492000pt;}
.y65_c00303{bottom:228.392000pt;}
.y64_c00303{bottom:229.117333pt;}
.y63_c00303{bottom:229.437333pt;}
.y62_c00303{bottom:229.910667pt;}
.y61_c00303{bottom:230.892000pt;}
.y60_c00303{bottom:231.361333pt;}
.y5f_c00303{bottom:250.009333pt;}
.y5e_c00303{bottom:266.822667pt;}
.y5d_c00303{bottom:267.976000pt;}
.y5c_c00303{bottom:268.264000pt;}
.y5b_c00303{bottom:268.856000pt;}
.y5a_c00303{bottom:269.754667pt;}
.y59_c00303{bottom:270.744000pt;}
.y58_c00303{bottom:271.546667pt;}
.y57_c00303{bottom:272.034667pt;}
.y56_c00303{bottom:272.557333pt;}
.y55_c00303{bottom:273.912000pt;}
.y54_c00303{bottom:274.321333pt;}
.y53_c00303{bottom:288.630667pt;}
.y52_c00303{bottom:288.914667pt;}
.y51_c00303{bottom:289.084000pt;}
.y50_c00303{bottom:289.696000pt;}
.y4f_c00303{bottom:289.882667pt;}
.y4e_c00303{bottom:290.220000pt;}
.y4d_c00303{bottom:290.444000pt;}
.y4c_c00303{bottom:290.701333pt;}
.y4b_c00303{bottom:290.937333pt;}
.y4a_c00303{bottom:291.225333pt;}
.y49_c00303{bottom:291.356000pt;}
.y48_c00303{bottom:291.600000pt;}
.y47_c00303{bottom:308.630667pt;}
.y46_c00303{bottom:308.954667pt;}
.y45_c00303{bottom:309.329333pt;}
.y44_c00303{bottom:309.426667pt;}
.y43_c00303{bottom:309.884000pt;}
.y42_c00303{bottom:310.308000pt;}
.y41_c00303{bottom:310.518667pt;}
.y40_c00303{bottom:310.932000pt;}
.y3f_c00303{bottom:311.070667pt;}
.y3e_c00303{bottom:311.248000pt;}
.y3d_c00303{bottom:311.760000pt;}
.y3c_c00303{bottom:329.686667pt;}
.y3b_c00303{bottom:329.838667pt;}
.y3a_c00303{bottom:330.258667pt;}
.y39_c00303{bottom:330.514667pt;}
.y38_c00303{bottom:331.202667pt;}
.y37_c00303{bottom:331.616000pt;}
.y36_c00303{bottom:331.961333pt;}
.y35_c00303{bottom:332.188000pt;}
.y34_c00303{bottom:332.580000pt;}
.y33_c00303{bottom:332.881333pt;}
.y32_c00303{bottom:349.320000pt;}
.y31_c00303{bottom:349.790667pt;}
.y30_c00303{bottom:350.028000pt;}
.y2f_c00303{bottom:350.696000pt;}
.y2e_c00303{bottom:350.796000pt;}
.y2d_c00303{bottom:351.232000pt;}
.y2c_c00303{bottom:351.564000pt;}
.y2b_c00303{bottom:351.861333pt;}
.y2a_c00303{bottom:352.061333pt;}
.y29_c00303{bottom:352.232000pt;}
.y28_c00303{bottom:352.560000pt;}
.y27_c00303{bottom:369.325333pt;}
.y26_c00303{bottom:369.640000pt;}
.y25_c00303{bottom:370.154667pt;}
.y24_c00303{bottom:370.586667pt;}
.y23_c00303{bottom:370.802667pt;}
.y22_c00303{bottom:371.156000pt;}
.y21_c00303{bottom:371.285333pt;}
.y20_c00303{bottom:371.574667pt;}
.y1f_c00303{bottom:371.732000pt;}
.y1e_c00303{bottom:372.001333pt;}
.y1d_c00303{bottom:389.986667pt;}
.y1c_c00303{bottom:390.169333pt;}
.y1b_c00303{bottom:390.436000pt;}
.y1a_c00303{bottom:390.561333pt;}
.y19_c00303{bottom:390.960000pt;}
.y18_c00303{bottom:391.166667pt;}
.y17_c00303{bottom:391.625333pt;}
.y16_c00303{bottom:391.892000pt;}
.y15_c00303{bottom:392.102667pt;}
.y14_c00303{bottom:392.446667pt;}
.y13_c00303{bottom:392.640000pt;}
.y12_c00303{bottom:411.732000pt;}
.y11_c00303{bottom:431.673333pt;}
.y10_c00303{bottom:452.697333pt;}
.yf_c00303{bottom:471.982667pt;}
.ye_c00303{bottom:493.024000pt;}
.yd_c00303{bottom:513.866667pt;}
.yc_c00303{bottom:533.817333pt;}
.yb_c00303{bottom:554.160000pt;}
.ya_c00303{bottom:574.109333pt;}
.y9_c00303{bottom:594.480000pt;}
.y8_c00303{bottom:614.612000pt;}
.y7_c00303{bottom:649.048000pt;}
.y6_c00303{bottom:692.716000pt;}
.y5_c00303{bottom:748.320000pt;}
.y4_c00303{bottom:772.816000pt;}
.y1_c00303{bottom:817.924000pt;}
.y2_c00303{bottom:827.468105pt;}
.y3_c00303{bottom:840.369536pt;}
.h18_c00303{height:19.600000pt;}
.h13_c00303{height:46.666667pt;}
.h17_c00303{height:46.671916pt;}
.h15_c00303{height:47.605355pt;}
.h14_c00303{height:48.533333pt;}
.h16_c00303{height:53.205985pt;}
.he_c00303{height:55.066667pt;}
.hf_c00303{height:56.000000pt;}
.h11_c00303{height:59.733333pt;}
.h10_c00303{height:60.666667pt;}
.ha_c00303{height:61.600000pt;}
.hb_c00303{height:62.533333pt;}
.h7_c00303{height:63.466667pt;}
.h8_c00303{height:64.400000pt;}
.hc_c00303{height:65.333333pt;}
.h12_c00303{height:66.266667pt;}
.hd_c00303{height:68.133333pt;}
.h9_c00303{height:70.000000pt;}
.h2_c00303{height:79.352887pt;}
.h6_c00303{height:83.066667pt;}
.h4_c00303{height:84.933333pt;}
.h5_c00303{height:126.933333pt;}
.h3_c00303{height:152.133333pt;}
.h0_c00303{height:896.400000pt;}
.h1_c00303{height:896.666667pt;}
.w0_c00303{width:618.666667pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:82.329333pt;}
.x44_c00303{left:124.080000pt;}
.x4_c00303{left:135.360000pt;}
.xb_c00303{left:137.040000pt;}
.x17_c00303{left:146.880000pt;}
.x93_c00303{left:148.800000pt;}
.x84_c00303{left:157.996000pt;}
.x94_c00303{left:160.320000pt;}
.x97_c00303{left:161.280000pt;}
.xe_c00303{left:163.200000pt;}
.x9_c00303{left:164.640000pt;}
.x18_c00303{left:166.080000pt;}
.x7f_c00303{left:167.436000pt;}
.x98_c00303{left:169.200000pt;}
.x8f_c00303{left:170.681333pt;}
.x45_c00303{left:173.280000pt;}
.x6a_c00303{left:175.113333pt;}
.x88_c00303{left:176.166667pt;}
.x21_c00303{left:178.320000pt;}
.x3c_c00303{left:180.480000pt;}
.x80_c00303{left:183.749333pt;}
.x2a_c00303{left:194.880000pt;}
.x19_c00303{left:196.800000pt;}
.x22_c00303{left:198.720000pt;}
.x4a_c00303{left:199.920000pt;}
.x4f_c00303{left:201.600000pt;}
.x5c_c00303{left:204.720000pt;}
.x46_c00303{left:207.360000pt;}
.x89_c00303{left:210.966667pt;}
.xf_c00303{left:214.320000pt;}
.x3d_c00303{left:216.000000pt;}
.x99_c00303{left:217.440000pt;}
.x81_c00303{left:219.749333pt;}
.x33_c00303{left:221.040000pt;}
.x72_c00303{left:223.350667pt;}
.x2_c00303{left:224.493768pt;}
.x1a_c00303{left:227.280000pt;}
.x50_c00303{left:229.920000pt;}
.x4b_c00303{left:233.760000pt;}
.x3e_c00303{left:235.920000pt;}
.x6b_c00303{left:238.953333pt;}
.x77_c00303{left:240.624000pt;}
.x47_c00303{left:242.160000pt;}
.x65_c00303{left:243.517333pt;}
.x34_c00303{left:244.560000pt;}
.x82_c00303{left:249.270667pt;}
.x73_c00303{left:251.669333pt;}
.x95_c00303{left:255.840000pt;}
.x2b_c00303{left:257.280000pt;}
.x51_c00303{left:260.880000pt;}
.x1b_c00303{left:261.840000pt;}
.x5_c00303{left:265.440000pt;}
.x5d_c00303{left:266.400000pt;}
.x23_c00303{left:272.400000pt;}
.x90_c00303{left:274.594667pt;}
.x4c_c00303{left:276.480000pt;}
.x35_c00303{left:279.600000pt;}
.x10_c00303{left:281.520000pt;}
.x85_c00303{left:282.514667pt;}
.x5e_c00303{left:284.160000pt;}
.x3f_c00303{left:290.160000pt;}
.x78_c00303{left:292.257333pt;}
.x74_c00303{left:294.872000pt;}
.x24_c00303{left:297.600000pt;}
.x96_c00303{left:301.200000pt;}
.x6d_c00303{left:302.788000pt;}
.x52_c00303{left:306.000000pt;}
.x36_c00303{left:306.960000pt;}
.x48_c00303{left:308.160000pt;}
.x4d_c00303{left:309.120000pt;}
.x79_c00303{left:318.625333pt;}
.x40_c00303{left:321.360000pt;}
.x6_c00303{left:322.560000pt;}
.x86_c00303{left:324.757333pt;}
.x8a_c00303{left:328.086667pt;}
.x2c_c00303{left:329.520000pt;}
.x5f_c00303{left:333.360000pt;}
.x59_c00303{left:334.560000pt;}
.x1c_c00303{left:338.400000pt;}
.x8_c00303{left:339.600000pt;}
.x11_c00303{left:340.800000pt;}
.x9c_c00303{left:345.729440pt;}
.x66_c00303{left:347.197333pt;}
.x91_c00303{left:349.269333pt;}
.x83_c00303{left:351.753333pt;}
.xa_c00303{left:352.800000pt;}
.x2d_c00303{left:354.000000pt;}
.x25_c00303{left:355.920000pt;}
.x6e_c00303{left:357.250667pt;}
.x9a_c00303{left:358.673333pt;}
.x60_c00303{left:361.200000pt;}
.x7_c00303{left:364.080000pt;}
.x1d_c00303{left:369.120000pt;}
.x7a_c00303{left:371.673333pt;}
.x26_c00303{left:374.160000pt;}
.x67_c00303{left:376.721333pt;}
.x41_c00303{left:378.720000pt;}
.x12_c00303{left:381.840000pt;}
.x37_c00303{left:384.000000pt;}
.x53_c00303{left:388.080000pt;}
.x9d_c00303{left:389.888767pt;}
.xa0_c00303{left:394.189327pt;}
.x6c_c00303{left:400.478667pt;}
.x38_c00303{left:402.480000pt;}
.x1e_c00303{left:404.880000pt;}
.x13_c00303{left:407.040000pt;}
.xa1_c00303{left:408.374440pt;}
.x27_c00303{left:409.440000pt;}
.x2e_c00303{left:412.080000pt;}
.x8b_c00303{left:413.526667pt;}
.x61_c00303{left:415.200000pt;}
.x3_c00303{left:416.667317pt;}
.x54_c00303{left:418.080000pt;}
.x87_c00303{left:424.104000pt;}
.x9e_c00303{left:425.409307pt;}
.x7b_c00303{left:428.793333pt;}
.x39_c00303{left:430.080000pt;}
.x75_c00303{left:432.398667pt;}
.x68_c00303{left:433.605333pt;}
.x42_c00303{left:434.640000pt;}
.x55_c00303{left:436.080000pt;}
.xa2_c00303{left:437.623333pt;}
.x7c_c00303{left:441.004000pt;}
.x92_c00303{left:442.374667pt;}
.x2f_c00303{left:443.760000pt;}
.x8c_c00303{left:448.326667pt;}
.x62_c00303{left:450.720000pt;}
.x4e_c00303{left:452.160000pt;}
.x6f_c00303{left:453.302667pt;}
.xc_c00303{left:455.520000pt;}
.x5a_c00303{left:462.960000pt;}
.x28_c00303{left:464.880000pt;}
.x56_c00303{left:467.040000pt;}
.x14_c00303{left:470.880000pt;}
.x3a_c00303{left:473.520000pt;}
.xa3_c00303{left:477.024067pt;}
.x30_c00303{left:481.440000pt;}
.x70_c00303{left:483.032000pt;}
.x1f_c00303{left:486.720000pt;}
.x7d_c00303{left:487.836000pt;}
.x63_c00303{left:489.120000pt;}
.x9b_c00303{left:493.564000pt;}
.x15_c00303{left:495.840000pt;}
.x57_c00303{left:499.920000pt;}
.x9f_c00303{left:502.193133pt;}
.x8d_c00303{left:503.286667pt;}
.x43_c00303{left:508.080000pt;}
.x20_c00303{left:511.440000pt;}
.x29_c00303{left:512.640000pt;}
.x69_c00303{left:515.952000pt;}
.x76_c00303{left:516.882667pt;}
.x31_c00303{left:519.120000pt;}
.x58_c00303{left:523.920000pt;}
.x7e_c00303{left:528.392000pt;}
.x64_c00303{left:531.120000pt;}
.x16_c00303{left:532.080000pt;}
.x8e_c00303{left:534.006667pt;}
.x32_c00303{left:536.160000pt;}
.x3b_c00303{left:537.120000pt;}
.xd_c00303{left:540.240000pt;}
.x71_c00303{left:541.830667pt;}
.x49_c00303{left:549.360000pt;}
.x5b_c00303{left:551.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m76_c00304{transform:matrix(0.006180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006180,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{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);}
.ma_c00304{transform:matrix(0.046568,-0.002191,0.011749,0.249724,0,0);-ms-transform:matrix(0.046568,-0.002191,0.011749,0.249724,0,0);-webkit-transform:matrix(0.046568,-0.002191,0.011749,0.249724,0,0);}
.m75_c00304{transform:matrix(0.054305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054305,0.000000,0.000000,0.250000,0,0);}
.m14a_c00304{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);}
.m103_c00304{transform:matrix(0.110730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111895,0.000000,0.000000,0.250000,0,0);}
.m119_c00304{transform:matrix(0.116115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116115,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{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);}
.m27_c00304{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);}
.m7c_c00304{transform:matrix(0.130745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130745,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{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);}
.m4c_c00304{transform:matrix(0.138140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138140,0.000000,0.000000,0.250000,0,0);}
.m121_c00304{transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);}
.m150_c00304{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);}
.ma6_c00304{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);}
.m54_c00304{transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{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);}
.m5b_c00304{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);}
.m65_c00304{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);}
.m50_c00304{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);}
.m1a_c00304{transform:matrix(0.151365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151365,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{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);}
.m6f_c00304{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);}
.m34_c00304{transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{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);}
.m8f_c00304{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);}
.m91_c00304{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);}
.m9e_c00304{transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{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);}
.m62_c00304{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);}
.m5a_c00304{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);}
.mf0_c00304{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);}
.m104_c00304{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);}
.mbd_c00304{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);}
.m124_c00304{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);}
.m97_c00304{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);}
.m144_c00304{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);}
.m10d_c00304{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);}
.mcb_c00304{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);}
.m70_c00304{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);}
.m51_c00304{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);}
.m44_c00304{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{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);}
.m122_c00304{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);}
.m81_c00304{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);}
.mc2_c00304{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);}
.m131_c00304{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);}
.m4d_c00304{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);}
.m3c_c00304{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);}
.m14c_c00304{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);}
.med_c00304{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);}
.mce_c00304{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);}
.m100_c00304{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);}
.m106_c00304{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);}
.m18_c00304{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{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);}
.m113_c00304{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_c00304{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);}
.m101_c00304{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{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);}
.m88_c00304{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);}
.m29_c00304{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);}
.ma7_c00304{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);}
.meb_c00304{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);}
.m33_c00304{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);}
.mbe_c00304{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);}
.m11e_c00304{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);}
.mc1_c00304{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);}
.m12c_c00304{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);}
.md3_c00304{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);}
.m2a_c00304{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);}
.mb7_c00304{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);}
.m67_c00304{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);}
.mfb_c00304{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);}
.m39_c00304{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);}
.mf5_c00304{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);}
.mac_c00304{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);}
.m108_c00304{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);}
.mc0_c00304{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);}
.m84_c00304{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);}
.m10b_c00304{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);}
.ma5_c00304{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);}
.md1_c00304{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);}
.mcc_c00304{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);}
.m3e_c00304{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);}
.mdc_c00304{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);}
.mc9_c00304{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);}
.m48_c00304{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);}
.m14f_c00304{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);}
.m94_c00304{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.m128_c00304{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);}
.m10f_c00304{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);}
.ma1_c00304{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);}
.ma4_c00304{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);}
.md8_c00304{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);}
.mcf_c00304{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);}
.me0_c00304{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_c00304{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);}
.mba_c00304{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);}
.m132_c00304{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);}
.m61_c00304{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);}
.m79_c00304{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);}
.m4f_c00304{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);}
.m55_c00304{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);}
.m3a_c00304{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);}
.ma0_c00304{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);}
.m112_c00304{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);}
.m1b_c00304{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);}
.m38_c00304{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);}
.mb0_c00304{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);}
.m4e_c00304{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);}
.m135_c00304{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);}
.m20_c00304{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);}
.mdf_c00304{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);}
.mff_c00304{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);}
.m10c_c00304{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);}
.md2_c00304{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);}
.m64_c00304{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);}
.m123_c00304{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);}
.m11_c00304{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{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);}
.mec_c00304{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);}
.m5c_c00304{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);}
.ma3_c00304{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);}
.maf_c00304{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);}
.m6e_c00304{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_c00304{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);}
.m16_c00304{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);}
.m8c_c00304{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);}
.m2d_c00304{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);}
.m13e_c00304{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);}
.mea_c00304{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);}
.mdb_c00304{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_c00304{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);}
.m0_c00304{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);}
.mef_c00304{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);}
.m59_c00304{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);}
.m17_c00304{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);}
.m43_c00304{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);}
.m1e_c00304{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);}
.m12_c00304{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);}
.m151_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);}
.m9a_c00304{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);}
.m5f_c00304{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);}
.m71_c00304{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);}
.m19_c00304{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);}
.mbf_c00304{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);}
.me5_c00304{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);}
.m6d_c00304{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);}
.m87_c00304{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);}
.mc6_c00304{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);}
.m155_c00304{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);}
.m143_c00304{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);}
.m96_c00304{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);}
.m125_c00304{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);}
.mf4_c00304{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);}
.mde_c00304{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);}
.m56_c00304{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);}
.m46_c00304{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);}
.m142_c00304{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);}
.mdd_c00304{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);}
.m89_c00304{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);}
.m137_c00304{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);}
.m154_c00304{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);}
.md9_c00304{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);}
.mf1_c00304{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);}
.mb4_c00304{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);}
.m40_c00304{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);}
.m21_c00304{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);}
.m57_c00304{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);}
.m13_c00304{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.mfa_c00304{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);}
.md5_c00304{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);}
.m138_c00304{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);}
.me6_c00304{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);}
.m60_c00304{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);}
.m110_c00304{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);}
.mc4_c00304{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);}
.mb3_c00304{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);}
.me7_c00304{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);}
.ma2_c00304{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);}
.mf7_c00304{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);}
.m49_c00304{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);}
.m107_c00304{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);}
.m82_c00304{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);}
.mf3_c00304{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);}
.m13d_c00304{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);}
.mf2_c00304{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);}
.me1_c00304{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);}
.m14b_c00304{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);}
.m52_c00304{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);}
.m152_c00304{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);}
.m95_c00304{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);}
.m9f_c00304{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);}
.m4a_c00304{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);}
.m93_c00304{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);}
.m136_c00304{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);}
.m109_c00304{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);}
.m129_c00304{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);}
.me4_c00304{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);}
.m11c_c00304{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);}
.m12a_c00304{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);}
.me9_c00304{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);}
.m5e_c00304{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);}
.m13f_c00304{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);}
.m8d_c00304{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);}
.ma9_c00304{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);}
.m30_c00304{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);}
.m111_c00304{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);}
.mf6_c00304{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);}
.me2_c00304{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);}
.m105_c00304{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);}
.m31_c00304{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);}
.m7d_c00304{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);}
.m12b_c00304{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);}
.m63_c00304{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);}
.m102_c00304{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);}
.m10a_c00304{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);}
.mb8_c00304{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);}
.m22_c00304{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);}
.mb2_c00304{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);}
.md7_c00304{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);}
.m41_c00304{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);}
.m140_c00304{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);}
.m11d_c00304{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);}
.m3b_c00304{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);}
.m146_c00304{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);}
.mcd_c00304{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);}
.m116_c00304{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);}
.m115_c00304{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);}
.m12e_c00304{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);}
.m92_c00304{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);}
.m23_c00304{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);}
.m90_c00304{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);}
.mee_c00304{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);}
.m72_c00304{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);}
.m98_c00304{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);}
.m66_c00304{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);}
.m130_c00304{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);}
.m86_c00304{transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);}
.mfe_c00304{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);}
.m139_c00304{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);}
.mc3_c00304{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);}
.mbc_c00304{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);}
.ma8_c00304{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);}
.m126_c00304{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);}
.m11b_c00304{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);}
.m68_c00304{transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);}
.m10e_c00304{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);}
.m32_c00304{transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);}
.md0_c00304{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_c00304{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);}
.m35_c00304{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);}
.m114_c00304{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);}
.m3d_c00304{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);}
.mb9_c00304{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);}
.md4_c00304{transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);}
.m9c_c00304{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);}
.m25_c00304{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);}
.m147_c00304{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);}
.m117_c00304{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);}
.m99_c00304{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);}
.m83_c00304{transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{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);}
.m1f_c00304{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);}
.m47_c00304{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);}
.m45_c00304{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);}
.m12d_c00304{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);}
.m1d_c00304{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{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);}
.m80_c00304{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);}
.m11f_c00304{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);}
.mc5_c00304{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.m127_c00304{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);}
.m148_c00304{transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{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);}
.m13c_c00304{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);}
.m145_c00304{transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{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);}
.m118_c00304{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);}
.m133_c00304{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.mda_c00304{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);}
.m7f_c00304{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m14e_c00304{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.mfc_c00304{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);}
.mca_c00304{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);}
.me8_c00304{transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.255800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255800,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.257545,-0.012117,0.011749,0.249724,0,0);-ms-transform:matrix(0.257545,-0.012117,0.011749,0.249724,0,0);-webkit-transform:matrix(0.257545,-0.012117,0.011749,0.249724,0,0);}
.m2e_c00304{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);}
.md6_c00304{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);}
.mf9_c00304{transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);}
.mc8_c00304{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);}
.me3_c00304{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);}
.m12f_c00304{transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266300,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266935,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.269757,-0.012691,0.011749,0.249724,0,0);-ms-transform:matrix(0.269757,-0.012691,0.011749,0.249724,0,0);-webkit-transform:matrix(0.269757,-0.012691,0.011749,0.249724,0,0);}
.mc7_c00304{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);}
.m53_c00304{transform:matrix(0.277735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277735,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);}
.m11a_c00304{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);}
.m24_c00304{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.m120_c00304{transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.292355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292355,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.mfd_c00304{transform:matrix(0.294980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294980,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.295975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295975,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.298515,-0.014044,0.011749,0.249724,0,0);-ms-transform:matrix(0.298515,-0.014044,0.011749,0.249724,0,0);-webkit-transform:matrix(0.298515,-0.014044,0.011749,0.249724,0,0);}
.mf8_c00304{transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307305,0.000000,0.000000,0.250000,0,0);}
.m153_c00304{transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.342811,-0.016128,0.011749,0.249724,0,0);-ms-transform:matrix(0.342811,-0.016128,0.011749,0.249724,0,0);-webkit-transform:matrix(0.342811,-0.016128,0.011749,0.249724,0,0);}
.me_c00304{transform:matrix(0.358439,-0.016863,0.011749,0.249724,0,0);-ms-transform:matrix(0.358439,-0.016863,0.011749,0.249724,0,0);-webkit-transform:matrix(0.358439,-0.016863,0.011749,0.249724,0,0);}
.mb_c00304{transform:matrix(0.360571,-0.016964,0.011749,0.249724,0,0);-ms-transform:matrix(0.360571,-0.016964,0.011749,0.249724,0,0);-webkit-transform:matrix(0.360571,-0.016964,0.011749,0.249724,0,0);}
.m134_c00304{transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);}
.m149_c00304{transform:matrix(0.367435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367435,0.000000,0.000000,0.250000,0,0);}
.m141_c00304{transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);}
.m13a_c00304{transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.389439,-0.018322,0.011749,0.249724,0,0);-ms-transform:matrix(0.389439,-0.018322,0.011749,0.249724,0,0);-webkit-transform:matrix(0.389439,-0.018322,0.011749,0.249724,0,0);}
.m14d_c00304{transform:matrix(0.392650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392650,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.419955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419955,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.452499,-0.021289,0.011749,0.249724,0,0);-ms-transform:matrix(0.452499,-0.021289,0.011749,0.249724,0,0);-webkit-transform:matrix(0.452499,-0.021289,0.011749,0.249724,0,0);}
.m6b_c00304{transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);}
.m156_c00304{transform:matrix(0.461235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461235,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.507235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507235,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.581865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581865,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.598103,-0.028139,0.011749,0.249724,0,0);-ms-transform:matrix(0.598103,-0.028139,0.011749,0.249724,0,0);-webkit-transform:matrix(0.598103,-0.028139,0.011749,0.249724,0,0);}
.m13b_c00304{transform:matrix(0.669965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669965,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.675588,-0.031784,0.011749,0.249724,0,0);-ms-transform:matrix(0.675588,-0.031784,0.011749,0.249724,0,0);-webkit-transform:matrix(0.675588,-0.031784,0.011749,0.249724,0,0);}
.m4_c00304{transform:matrix(0.682380,-0.032104,0.011749,0.249724,0,0);-ms-transform:matrix(0.682380,-0.032104,0.011749,0.249724,0,0);-webkit-transform:matrix(0.682380,-0.032104,0.011749,0.249724,0,0);}
.m6_c00304{transform:matrix(0.805804,-0.037911,0.011749,0.249724,0,0);-ms-transform:matrix(0.805804,-0.037911,0.011749,0.249724,0,0);-webkit-transform:matrix(0.805804,-0.037911,0.011749,0.249724,0,0);}
.m1_c00304{transform:matrix(0.872780,-0.041062,0.011749,0.249724,0,0);-ms-transform:matrix(0.872780,-0.041062,0.011749,0.249724,0,0);-webkit-transform:matrix(0.872780,-0.041062,0.011749,0.249724,0,0);}
.m8_c00304{transform:matrix(1.128826,-0.053108,0.011749,0.249724,0,0);-ms-transform:matrix(1.128826,-0.053108,0.011749,0.249724,0,0);-webkit-transform:matrix(1.128826,-0.053108,0.011749,0.249724,0,0);}
.m5_c00304{transform:matrix(1.301735,-0.061243,0.011749,0.249724,0,0);-ms-transform:matrix(1.301735,-0.061243,0.011749,0.249724,0,0);-webkit-transform:matrix(1.301735,-0.061243,0.011749,0.249724,0,0);}
.m157_c00304{transform:matrix(1.484430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.484430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.484430,0.000000,0.000000,0.250000,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;}
.fs0_c00304{font-size:22.050000px;}
.fs10_c00304{font-size:52.500000px;}
.fsf_c00304{font-size:54.600000px;}
.fs11_c00304{font-size:58.800000px;}
.fs4_c00304{font-size:59.850000px;}
.fs5_c00304{font-size:60.900000px;}
.fse_c00304{font-size:61.950000px;}
.fs9_c00304{font-size:63.000000px;}
.fsb_c00304{font-size:66.150000px;}
.fsd_c00304{font-size:67.200000px;}
.fs7_c00304{font-size:68.250000px;}
.fs6_c00304{font-size:69.300000px;}
.fs8_c00304{font-size:70.350000px;}
.fs3_c00304{font-size:71.400000px;}
.fsc_c00304{font-size:72.450000px;}
.fs1_c00304{font-size:72.457607px;}
.fsa_c00304{font-size:74.550000px;}
.fs2_c00304{font-size:86.109040px;}
.y0_c00304{bottom:0.000000px;}
.y2f_c00304{bottom:149.970000px;}
.y2e_c00304{bottom:172.101000px;}
.y2d_c00304{bottom:190.129500px;}
.y2c_c00304{bottom:207.510000px;}
.y2a_c00304{bottom:262.354500px;}
.y29_c00304{bottom:283.891500px;}
.y28_c00304{bottom:306.603000px;}
.y27_c00304{bottom:330.001500px;}
.y26_c00304{bottom:352.683000px;}
.y25_c00304{bottom:375.685500px;}
.y24_c00304{bottom:398.355000px;}
.y23_c00304{bottom:423.328500px;}
.y22_c00304{bottom:445.738500px;}
.y21_c00304{bottom:467.181000px;}
.y20_c00304{bottom:490.173000px;}
.y1f_c00304{bottom:512.556000px;}
.y1e_c00304{bottom:535.026000px;}
.y1d_c00304{bottom:558.484500px;}
.y1c_c00304{bottom:580.929000px;}
.y1b_c00304{bottom:602.926500px;}
.y1a_c00304{bottom:625.129500px;}
.y19_c00304{bottom:648.330000px;}
.y18_c00304{bottom:671.250000px;}
.y17_c00304{bottom:693.930000px;}
.y16_c00304{bottom:716.895000px;}
.y15_c00304{bottom:739.830000px;}
.y14_c00304{bottom:762.478500px;}
.y13_c00304{bottom:785.367000px;}
.y12_c00304{bottom:808.857000px;}
.y2b_c00304{bottom:831.627000px;}
.y11_c00304{bottom:878.519799px;}
.y10_c00304{bottom:880.740526px;}
.yf_c00304{bottom:882.164704px;}
.ye_c00304{bottom:883.184962px;}
.yd_c00304{bottom:883.591000px;}
.yc_c00304{bottom:883.801069px;}
.yb_c00304{bottom:884.037217px;}
.ya_c00304{bottom:884.761455px;}
.y2_c00304{bottom:912.130500px;}
.y3_c00304{bottom:915.831327px;}
.y4_c00304{bottom:916.518208px;}
.y5_c00304{bottom:920.084310px;}
.y6_c00304{bottom:923.192303px;}
.y7_c00304{bottom:929.110778px;}
.y8_c00304{bottom:932.556465px;}
.y9_c00304{bottom:932.605745px;}
.y1_c00304{bottom:944.190000px;}
.h2_c00304{height:22.050000px;}
.h12_c00304{height:52.500000px;}
.h11_c00304{height:54.600000px;}
.h13_c00304{height:58.800000px;}
.h6_c00304{height:59.850000px;}
.h7_c00304{height:60.900000px;}
.h10_c00304{height:61.950000px;}
.hb_c00304{height:63.000000px;}
.hd_c00304{height:66.150000px;}
.hf_c00304{height:67.200000px;}
.h9_c00304{height:68.250000px;}
.h8_c00304{height:69.300000px;}
.ha_c00304{height:70.350000px;}
.h5_c00304{height:71.400000px;}
.he_c00304{height:72.450000px;}
.h3_c00304{height:72.457607px;}
.hc_c00304{height:74.550000px;}
.h4_c00304{height:86.109040px;}
.h1_c00304{height:1005.000000px;}
.h0_c00304{height:1005.150000px;}
.w0_c00304{width:702.540000px;}
.w1_c00304{width:702.750000px;}
.x0_c00304{left:0.000000px;}
.xa_c00304{left:35.713530px;}
.x2_c00304{left:37.404000px;}
.x65_c00304{left:61.560000px;}
.x3b_c00304{left:75.600000px;}
.xb5_c00304{left:82.890000px;}
.x12_c00304{left:83.970000px;}
.x42_c00304{left:85.320000px;}
.x53_c00304{left:86.400000px;}
.x66_c00304{left:88.020000px;}
.x95_c00304{left:89.100000px;}
.xb_c00304{left:91.568633px;}
.xc1_c00304{left:93.150000px;}
.xb7_c00304{left:104.760000px;}
.x30_c00304{left:106.110000px;}
.x13_c00304{left:108.000000px;}
.xc_c00304{left:109.756232px;}
.x79_c00304{left:113.130000px;}
.x3_c00304{left:116.066259px;}
.x3c_c00304{left:117.450000px;}
.x43_c00304{left:120.690000px;}
.x89_c00304{left:124.200000px;}
.xd_c00304{left:126.008264px;}
.x4_c00304{left:130.666144px;}
.xc2_c00304{left:133.650000px;}
.x96_c00304{left:136.620000px;}
.x81_c00304{left:138.510000px;}
.x9b_c00304{left:139.590000px;}
.x54_c00304{left:140.670000px;}
.x74_c00304{left:142.560000px;}
.x31_c00304{left:146.070000px;}
.x24_c00304{left:149.580000px;}
.x7a_c00304{left:154.170000px;}
.xe_c00304{left:157.311713px;}
.x55_c00304{left:159.030000px;}
.xa3_c00304{left:160.650000px;}
.x25_c00304{left:163.350000px;}
.x1d_c00304{left:164.430000px;}
.x4c_c00304{left:169.020000px;}
.x67_c00304{left:170.640000px;}
.x5f_c00304{left:172.530000px;}
.x56_c00304{left:174.420000px;}
.x14_c00304{left:176.850000px;}
.x44_c00304{left:181.710000px;}
.x60_c00304{left:183.600000px;}
.xb1_c00304{left:184.680000px;}
.x80_c00304{left:186.030000px;}
.x3d_c00304{left:187.380000px;}
.x26_c00304{left:189.000000px;}
.x8a_c00304{left:192.780000px;}
.xa4_c00304{left:194.130000px;}
.x68_c00304{left:196.560000px;}
.xaa_c00304{left:200.070000px;}
.x1e_c00304{left:202.500000px;}
.x32_c00304{left:204.390000px;}
.x5_c00304{left:206.464770px;}
.x15_c00304{left:209.250000px;}
.x90_c00304{left:213.300000px;}
.xc3_c00304{left:215.730000px;}
.x7b_c00304{left:217.080000px;}
.x82_c00304{left:220.860000px;}
.x86_c00304{left:224.640000px;}
.x4d_c00304{left:227.070000px;}
.x1f_c00304{left:228.150000px;}
.x33_c00304{left:230.580000px;}
.xbb_c00304{left:231.660000px;}
.x7c_c00304{left:234.360000px;}
.xf_c00304{left:236.114987px;}
.x8b_c00304{left:237.600000px;}
.x45_c00304{left:242.460000px;}
.x27_c00304{left:244.350000px;}
.x6b_c00304{left:245.970000px;}
.x75_c00304{left:248.940000px;}
.x83_c00304{left:251.100000px;}
.xc4_c00304{left:252.180000px;}
.x34_c00304{left:254.340000px;}
.x28_c00304{left:258.660000px;}
.x16_c00304{left:263.520000px;}
.x76_c00304{left:267.570000px;}
.x8c_c00304{left:270.270000px;}
.x6_c00304{left:272.526142px;}
.x97_c00304{left:275.130000px;}
.x57_c00304{left:276.210000px;}
.x91_c00304{left:277.290000px;}
.x6c_c00304{left:279.990000px;}
.x46_c00304{left:281.070000px;}
.x29_c00304{left:282.960000px;}
.x3e_c00304{left:286.200000px;}
.x17_c00304{left:291.600000px;}
.x61_c00304{left:293.760000px;}
.xb8_c00304{left:299.160000px;}
.x6d_c00304{left:301.590000px;}
.x2a_c00304{left:304.290000px;}
.xa5_c00304{left:305.370000px;}
.x35_c00304{left:306.720000px;}
.x4e_c00304{left:311.580000px;}
.x92_c00304{left:313.200000px;}
.x47_c00304{left:315.090000px;}
.x84_c00304{left:316.170000px;}
.x7d_c00304{left:325.080000px;}
.x36_c00304{left:326.160000px;}
.x3f_c00304{left:327.780000px;}
.x9c_c00304{left:329.130000px;}
.x58_c00304{left:331.020000px;}
.xa6_c00304{left:335.880000px;}
.x8d_c00304{left:338.040000px;}
.x70_c00304{left:340.200000px;}
.x6e_c00304{left:342.090000px;}
.x2b_c00304{left:343.440000px;}
.x10_c00304{left:346.011356px;}
.x1_c00304{left:348.570000px;}
.x18_c00304{left:351.810000px;}
.x9e_c00304{left:353.970000px;}
.x59_c00304{left:356.670000px;}
.x48_c00304{left:360.720000px;}
.xb9_c00304{left:363.150000px;}
.xb2_c00304{left:364.230000px;}
.x93_c00304{left:365.580000px;}
.x71_c00304{left:367.740000px;}
.xc5_c00304{left:369.090000px;}
.xab_c00304{left:372.330000px;}
.x9d_c00304{left:373.410000px;}
.x4f_c00304{left:375.300000px;}
.xbc_c00304{left:377.190000px;}
.x7e_c00304{left:378.270000px;}
.x8e_c00304{left:379.350000px;}
.xa7_c00304{left:380.970000px;}
.x20_c00304{left:383.130000px;}
.x37_c00304{left:384.210000px;}
.x19_c00304{left:387.720000px;}
.x85_c00304{left:392.850000px;}
.x62_c00304{left:393.930000px;}
.x87_c00304{left:395.820000px;}
.x7_c00304{left:398.325218px;}
.xb6_c00304{left:402.030000px;}
.x40_c00304{left:408.780000px;}
.x98_c00304{left:410.130000px;}
.x5a_c00304{left:412.020000px;}
.xac_c00304{left:414.180000px;}
.x9f_c00304{left:415.260000px;}
.x77_c00304{left:417.960000px;}
.xba_c00304{left:424.710000px;}
.x5b_c00304{left:425.790000px;}
.xad_c00304{left:428.490000px;}
.x50_c00304{left:429.570000px;}
.x49_c00304{left:431.730000px;}
.x1a_c00304{left:433.620000px;}
.xbd_c00304{left:434.970000px;}
.x2c_c00304{left:436.320000px;}
.x21_c00304{left:439.290000px;}
.xa0_c00304{left:440.910000px;}
.x5c_c00304{left:444.960000px;}
.x2d_c00304{left:448.200000px;}
.xa8_c00304{left:450.360000px;}
.x38_c00304{left:453.600000px;}
.x99_c00304{left:455.760000px;}
.xb3_c00304{left:457.380000px;}
.x8f_c00304{left:460.620000px;}
.x51_c00304{left:462.240000px;}
.x72_c00304{left:463.860000px;}
.x1b_c00304{left:466.560000px;}
.x8_c00304{left:471.564405px;}
.x9_c00304{left:472.611856px;}
.x78_c00304{left:474.120000px;}
.x6f_c00304{left:475.200000px;}
.xae_c00304{left:480.330000px;}
.xbe_c00304{left:482.760000px;}
.x4a_c00304{left:486.810000px;}
.x9a_c00304{left:488.430000px;}
.x7f_c00304{left:491.670000px;}
.x73_c00304{left:494.640000px;}
.x1c_c00304{left:498.150000px;}
.x2e_c00304{left:501.120000px;}
.x88_c00304{left:502.740000px;}
.x39_c00304{left:506.250000px;}
.xaf_c00304{left:507.600000px;}
.x69_c00304{left:509.760000px;}
.x22_c00304{left:511.380000px;}
.x63_c00304{left:513.000000px;}
.x4b_c00304{left:515.970000px;}
.x11_c00304{left:517.440093px;}
.x5d_c00304{left:521.370000px;}
.xa1_c00304{left:522.720000px;}
.x6a_c00304{left:525.960000px;}
.x41_c00304{left:530.010000px;}
.x2f_c00304{left:531.090000px;}
.xbf_c00304{left:532.710000px;}
.x5e_c00304{left:534.060000px;}
.x94_c00304{left:535.410000px;}
.x23_c00304{left:537.570000px;}
.x52_c00304{left:538.920000px;}
.xb4_c00304{left:540.810000px;}
.xa9_c00304{left:545.670000px;}
.xb0_c00304{left:549.450000px;}
.x3a_c00304{left:550.800000px;}
.xc0_c00304{left:552.690000px;}
.xa2_c00304{left:553.770000px;}
.x64_c00304{left:572.130000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.fs0_c00304{font-size:19.600000pt;}
.fs10_c00304{font-size:46.666667pt;}
.fsf_c00304{font-size:48.533333pt;}
.fs11_c00304{font-size:52.266667pt;}
.fs4_c00304{font-size:53.200000pt;}
.fs5_c00304{font-size:54.133333pt;}
.fse_c00304{font-size:55.066667pt;}
.fs9_c00304{font-size:56.000000pt;}
.fsb_c00304{font-size:58.800000pt;}
.fsd_c00304{font-size:59.733333pt;}
.fs7_c00304{font-size:60.666667pt;}
.fs6_c00304{font-size:61.600000pt;}
.fs8_c00304{font-size:62.533333pt;}
.fs3_c00304{font-size:63.466667pt;}
.fsc_c00304{font-size:64.400000pt;}
.fs1_c00304{font-size:64.406762pt;}
.fsa_c00304{font-size:66.266667pt;}
.fs2_c00304{font-size:76.541369pt;}
.y0_c00304{bottom:0.000000pt;}
.y2f_c00304{bottom:133.306667pt;}
.y2e_c00304{bottom:152.978667pt;}
.y2d_c00304{bottom:169.004000pt;}
.y2c_c00304{bottom:184.453333pt;}
.y2a_c00304{bottom:233.204000pt;}
.y29_c00304{bottom:252.348000pt;}
.y28_c00304{bottom:272.536000pt;}
.y27_c00304{bottom:293.334667pt;}
.y26_c00304{bottom:313.496000pt;}
.y25_c00304{bottom:333.942667pt;}
.y24_c00304{bottom:354.093333pt;}
.y23_c00304{bottom:376.292000pt;}
.y22_c00304{bottom:396.212000pt;}
.y21_c00304{bottom:415.272000pt;}
.y20_c00304{bottom:435.709333pt;}
.y1f_c00304{bottom:455.605333pt;}
.y1e_c00304{bottom:475.578667pt;}
.y1d_c00304{bottom:496.430667pt;}
.y1c_c00304{bottom:516.381333pt;}
.y1b_c00304{bottom:535.934667pt;}
.y1a_c00304{bottom:555.670667pt;}
.y19_c00304{bottom:576.293333pt;}
.y18_c00304{bottom:596.666667pt;}
.y17_c00304{bottom:616.826667pt;}
.y16_c00304{bottom:637.240000pt;}
.y15_c00304{bottom:657.626667pt;}
.y14_c00304{bottom:677.758667pt;}
.y13_c00304{bottom:698.104000pt;}
.y12_c00304{bottom:718.984000pt;}
.y2b_c00304{bottom:739.224000pt;}
.y11_c00304{bottom:780.906488pt;}
.y10_c00304{bottom:782.880468pt;}
.yf_c00304{bottom:784.146404pt;}
.ye_c00304{bottom:785.053300pt;}
.yd_c00304{bottom:785.414223pt;}
.yc_c00304{bottom:785.600951pt;}
.yb_c00304{bottom:785.810860pt;}
.ya_c00304{bottom:786.454627pt;}
.y2_c00304{bottom:810.782667pt;}
.y3_c00304{bottom:814.072291pt;}
.y4_c00304{bottom:814.682852pt;}
.y5_c00304{bottom:817.852720pt;}
.y6_c00304{bottom:820.615380pt;}
.y7_c00304{bottom:825.876247pt;}
.y8_c00304{bottom:828.939080pt;}
.y9_c00304{bottom:828.982884pt;}
.y1_c00304{bottom:839.280000pt;}
.h2_c00304{height:19.600000pt;}
.h12_c00304{height:46.666667pt;}
.h11_c00304{height:48.533333pt;}
.h13_c00304{height:52.266667pt;}
.h6_c00304{height:53.200000pt;}
.h7_c00304{height:54.133333pt;}
.h10_c00304{height:55.066667pt;}
.hb_c00304{height:56.000000pt;}
.hd_c00304{height:58.800000pt;}
.hf_c00304{height:59.733333pt;}
.h9_c00304{height:60.666667pt;}
.h8_c00304{height:61.600000pt;}
.ha_c00304{height:62.533333pt;}
.h5_c00304{height:63.466667pt;}
.he_c00304{height:64.400000pt;}
.h3_c00304{height:64.406762pt;}
.hc_c00304{height:66.266667pt;}
.h4_c00304{height:76.541369pt;}
.h1_c00304{height:893.333333pt;}
.h0_c00304{height:893.466667pt;}
.w0_c00304{width:624.480000pt;}
.w1_c00304{width:624.666667pt;}
.x0_c00304{left:0.000000pt;}
.xa_c00304{left:31.745360pt;}
.x2_c00304{left:33.248000pt;}
.x65_c00304{left:54.720000pt;}
.x3b_c00304{left:67.200000pt;}
.xb5_c00304{left:73.680000pt;}
.x12_c00304{left:74.640000pt;}
.x42_c00304{left:75.840000pt;}
.x53_c00304{left:76.800000pt;}
.x66_c00304{left:78.240000pt;}
.x95_c00304{left:79.200000pt;}
.xb_c00304{left:81.394340pt;}
.xc1_c00304{left:82.800000pt;}
.xb7_c00304{left:93.120000pt;}
.x30_c00304{left:94.320000pt;}
.x13_c00304{left:96.000000pt;}
.xc_c00304{left:97.561095pt;}
.x79_c00304{left:100.560000pt;}
.x3_c00304{left:103.170008pt;}
.x3c_c00304{left:104.400000pt;}
.x43_c00304{left:107.280000pt;}
.x89_c00304{left:110.400000pt;}
.xd_c00304{left:112.007345pt;}
.x4_c00304{left:116.147684pt;}
.xc2_c00304{left:118.800000pt;}
.x96_c00304{left:121.440000pt;}
.x81_c00304{left:123.120000pt;}
.x9b_c00304{left:124.080000pt;}
.x54_c00304{left:125.040000pt;}
.x74_c00304{left:126.720000pt;}
.x31_c00304{left:129.840000pt;}
.x24_c00304{left:132.960000pt;}
.x7a_c00304{left:137.040000pt;}
.xe_c00304{left:139.832633pt;}
.x55_c00304{left:141.360000pt;}
.xa3_c00304{left:142.800000pt;}
.x25_c00304{left:145.200000pt;}
.x1d_c00304{left:146.160000pt;}
.x4c_c00304{left:150.240000pt;}
.x67_c00304{left:151.680000pt;}
.x5f_c00304{left:153.360000pt;}
.x56_c00304{left:155.040000pt;}
.x14_c00304{left:157.200000pt;}
.x44_c00304{left:161.520000pt;}
.x60_c00304{left:163.200000pt;}
.xb1_c00304{left:164.160000pt;}
.x80_c00304{left:165.360000pt;}
.x3d_c00304{left:166.560000pt;}
.x26_c00304{left:168.000000pt;}
.x8a_c00304{left:171.360000pt;}
.xa4_c00304{left:172.560000pt;}
.x68_c00304{left:174.720000pt;}
.xaa_c00304{left:177.840000pt;}
.x1e_c00304{left:180.000000pt;}
.x32_c00304{left:181.680000pt;}
.x5_c00304{left:183.524240pt;}
.x15_c00304{left:186.000000pt;}
.x90_c00304{left:189.600000pt;}
.xc3_c00304{left:191.760000pt;}
.x7b_c00304{left:192.960000pt;}
.x82_c00304{left:196.320000pt;}
.x86_c00304{left:199.680000pt;}
.x4d_c00304{left:201.840000pt;}
.x1f_c00304{left:202.800000pt;}
.x33_c00304{left:204.960000pt;}
.xbb_c00304{left:205.920000pt;}
.x7c_c00304{left:208.320000pt;}
.xf_c00304{left:209.879988pt;}
.x8b_c00304{left:211.200000pt;}
.x45_c00304{left:215.520000pt;}
.x27_c00304{left:217.200000pt;}
.x6b_c00304{left:218.640000pt;}
.x75_c00304{left:221.280000pt;}
.x83_c00304{left:223.200000pt;}
.xc4_c00304{left:224.160000pt;}
.x34_c00304{left:226.080000pt;}
.x28_c00304{left:229.920000pt;}
.x16_c00304{left:234.240000pt;}
.x76_c00304{left:237.840000pt;}
.x8c_c00304{left:240.240000pt;}
.x6_c00304{left:242.245460pt;}
.x97_c00304{left:244.560000pt;}
.x57_c00304{left:245.520000pt;}
.x91_c00304{left:246.480000pt;}
.x6c_c00304{left:248.880000pt;}
.x46_c00304{left:249.840000pt;}
.x29_c00304{left:251.520000pt;}
.x3e_c00304{left:254.400000pt;}
.x17_c00304{left:259.200000pt;}
.x61_c00304{left:261.120000pt;}
.xb8_c00304{left:265.920000pt;}
.x6d_c00304{left:268.080000pt;}
.x2a_c00304{left:270.480000pt;}
.xa5_c00304{left:271.440000pt;}
.x35_c00304{left:272.640000pt;}
.x4e_c00304{left:276.960000pt;}
.x92_c00304{left:278.400000pt;}
.x47_c00304{left:280.080000pt;}
.x84_c00304{left:281.040000pt;}
.x7d_c00304{left:288.960000pt;}
.x36_c00304{left:289.920000pt;}
.x3f_c00304{left:291.360000pt;}
.x9c_c00304{left:292.560000pt;}
.x58_c00304{left:294.240000pt;}
.xa6_c00304{left:298.560000pt;}
.x8d_c00304{left:300.480000pt;}
.x70_c00304{left:302.400000pt;}
.x6e_c00304{left:304.080000pt;}
.x2b_c00304{left:305.280000pt;}
.x10_c00304{left:307.565649pt;}
.x1_c00304{left:309.840000pt;}
.x18_c00304{left:312.720000pt;}
.x9e_c00304{left:314.640000pt;}
.x59_c00304{left:317.040000pt;}
.x48_c00304{left:320.640000pt;}
.xb9_c00304{left:322.800000pt;}
.xb2_c00304{left:323.760000pt;}
.x93_c00304{left:324.960000pt;}
.x71_c00304{left:326.880000pt;}
.xc5_c00304{left:328.080000pt;}
.xab_c00304{left:330.960000pt;}
.x9d_c00304{left:331.920000pt;}
.x4f_c00304{left:333.600000pt;}
.xbc_c00304{left:335.280000pt;}
.x7e_c00304{left:336.240000pt;}
.x8e_c00304{left:337.200000pt;}
.xa7_c00304{left:338.640000pt;}
.x20_c00304{left:340.560000pt;}
.x37_c00304{left:341.520000pt;}
.x19_c00304{left:344.640000pt;}
.x85_c00304{left:349.200000pt;}
.x62_c00304{left:350.160000pt;}
.x87_c00304{left:351.840000pt;}
.x7_c00304{left:354.066860pt;}
.xb6_c00304{left:357.360000pt;}
.x40_c00304{left:363.360000pt;}
.x98_c00304{left:364.560000pt;}
.x5a_c00304{left:366.240000pt;}
.xac_c00304{left:368.160000pt;}
.x9f_c00304{left:369.120000pt;}
.x77_c00304{left:371.520000pt;}
.xba_c00304{left:377.520000pt;}
.x5b_c00304{left:378.480000pt;}
.xad_c00304{left:380.880000pt;}
.x50_c00304{left:381.840000pt;}
.x49_c00304{left:383.760000pt;}
.x1a_c00304{left:385.440000pt;}
.xbd_c00304{left:386.640000pt;}
.x2c_c00304{left:387.840000pt;}
.x21_c00304{left:390.480000pt;}
.xa0_c00304{left:391.920000pt;}
.x5c_c00304{left:395.520000pt;}
.x2d_c00304{left:398.400000pt;}
.xa8_c00304{left:400.320000pt;}
.x38_c00304{left:403.200000pt;}
.x99_c00304{left:405.120000pt;}
.xb3_c00304{left:406.560000pt;}
.x8f_c00304{left:409.440000pt;}
.x51_c00304{left:410.880000pt;}
.x72_c00304{left:412.320000pt;}
.x1b_c00304{left:414.720000pt;}
.x8_c00304{left:419.168360pt;}
.x9_c00304{left:420.099428pt;}
.x78_c00304{left:421.440000pt;}
.x6f_c00304{left:422.400000pt;}
.xae_c00304{left:426.960000pt;}
.xbe_c00304{left:429.120000pt;}
.x4a_c00304{left:432.720000pt;}
.x9a_c00304{left:434.160000pt;}
.x7f_c00304{left:437.040000pt;}
.x73_c00304{left:439.680000pt;}
.x1c_c00304{left:442.800000pt;}
.x2e_c00304{left:445.440000pt;}
.x88_c00304{left:446.880000pt;}
.x39_c00304{left:450.000000pt;}
.xaf_c00304{left:451.200000pt;}
.x69_c00304{left:453.120000pt;}
.x22_c00304{left:454.560000pt;}
.x63_c00304{left:456.000000pt;}
.x4b_c00304{left:458.640000pt;}
.x11_c00304{left:459.946749pt;}
.x5d_c00304{left:463.440000pt;}
.xa1_c00304{left:464.640000pt;}
.x6a_c00304{left:467.520000pt;}
.x41_c00304{left:471.120000pt;}
.x2f_c00304{left:472.080000pt;}
.xbf_c00304{left:473.520000pt;}
.x5e_c00304{left:474.720000pt;}
.x94_c00304{left:475.920000pt;}
.x23_c00304{left:477.840000pt;}
.x52_c00304{left:479.040000pt;}
.xb4_c00304{left:480.720000pt;}
.xa9_c00304{left:485.040000pt;}
.xb0_c00304{left:488.400000pt;}
.x3a_c00304{left:489.600000pt;}
.xc0_c00304{left:491.280000pt;}
.xa2_c00304{left:492.240000pt;}
.x64_c00304{left:508.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_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_4ab86c84425994a9e06b01c2.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;}
.m8c_c00305{transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);-ms-transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);-webkit-transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);}
.m14b_c00305{transform:matrix(0.075728,-0.000530,0.001750,0.249994,0,0);-ms-transform:matrix(0.075728,-0.000530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.075728,-0.000530,0.001750,0.249994,0,0);}
.m15f_c00305{transform:matrix(0.119485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119485,0.000000,0.000000,0.250000,0,0);}
.m5f_c00305{transform:matrix(0.130027,-0.000910,0.001750,0.249994,0,0);-ms-transform:matrix(0.130027,-0.000910,0.001750,0.249994,0,0);-webkit-transform:matrix(0.130027,-0.000910,0.001750,0.249994,0,0);}
.m15c_c00305{transform:matrix(0.142935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142935,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.144841,-0.001014,0.001750,0.249994,0,0);-ms-transform:matrix(0.144841,-0.001014,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144841,-0.001014,0.001750,0.249994,0,0);}
.m74_c00305{transform:matrix(0.146131,-0.001023,0.001750,0.249994,0,0);-ms-transform:matrix(0.146131,-0.001023,0.001750,0.249994,0,0);-webkit-transform:matrix(0.146131,-0.001023,0.001750,0.249994,0,0);}
.m78_c00305{transform:matrix(0.151171,-0.001058,0.001750,0.249994,0,0);-ms-transform:matrix(0.151171,-0.001058,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151171,-0.001058,0.001750,0.249994,0,0);}
.md0_c00305{transform:matrix(0.151276,-0.001059,0.001750,0.249994,0,0);-ms-transform:matrix(0.151276,-0.001059,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151276,-0.001059,0.001750,0.249994,0,0);}
.md6_c00305{transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);-ms-transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151456,-0.001060,0.001750,0.249994,0,0);}
.ma8_c00305{transform:matrix(0.152516,-0.001068,0.001750,0.249994,0,0);-ms-transform:matrix(0.152516,-0.001068,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152516,-0.001068,0.001750,0.249994,0,0);}
.m7d_c00305{transform:matrix(0.153921,-0.001077,0.001750,0.249994,0,0);-ms-transform:matrix(0.153921,-0.001077,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153921,-0.001077,0.001750,0.249994,0,0);}
.meb_c00305{transform:matrix(0.155111,-0.001086,0.001750,0.249994,0,0);-ms-transform:matrix(0.155111,-0.001086,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155111,-0.001086,0.001750,0.249994,0,0);}
.mcd_c00305{transform:matrix(0.155366,-0.001088,0.001750,0.249994,0,0);-ms-transform:matrix(0.155366,-0.001088,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155366,-0.001088,0.001750,0.249994,0,0);}
.m20_c00305{transform:matrix(0.155416,-0.001088,0.001750,0.249994,0,0);-ms-transform:matrix(0.155416,-0.001088,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155416,-0.001088,0.001750,0.249994,0,0);}
.md7_c00305{transform:matrix(0.155681,-0.001090,0.001750,0.249994,0,0);-ms-transform:matrix(0.155681,-0.001090,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155681,-0.001090,0.001750,0.249994,0,0);}
.m15a_c00305{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);}
.ma_c00305{transform:matrix(0.156266,-0.001094,0.001750,0.249994,0,0);-ms-transform:matrix(0.156266,-0.001094,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156266,-0.001094,0.001750,0.249994,0,0);}
.m150_c00305{transform:matrix(0.156561,-0.001096,0.001750,0.249994,0,0);-ms-transform:matrix(0.156561,-0.001096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156561,-0.001096,0.001750,0.249994,0,0);}
.m158_c00305{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);}
.mea_c00305{transform:matrix(0.157661,-0.001104,0.001750,0.249994,0,0);-ms-transform:matrix(0.157661,-0.001104,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157661,-0.001104,0.001750,0.249994,0,0);}
.m25_c00305{transform:matrix(0.158056,-0.001106,0.001750,0.249994,0,0);-ms-transform:matrix(0.158056,-0.001106,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158056,-0.001106,0.001750,0.249994,0,0);}
.m79_c00305{transform:matrix(0.158241,-0.001108,0.001750,0.249994,0,0);-ms-transform:matrix(0.158241,-0.001108,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158241,-0.001108,0.001750,0.249994,0,0);}
.md_c00305{transform:matrix(0.158726,-0.001111,0.001750,0.249994,0,0);-ms-transform:matrix(0.158726,-0.001111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158726,-0.001111,0.001750,0.249994,0,0);}
.m155_c00305{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);}
.m13a_c00305{transform:matrix(0.159776,-0.001118,0.001750,0.249994,0,0);-ms-transform:matrix(0.159776,-0.001118,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159776,-0.001118,0.001750,0.249994,0,0);}
.m7_c00305{transform:matrix(0.160711,-0.001125,0.001750,0.249994,0,0);-ms-transform:matrix(0.160711,-0.001125,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160711,-0.001125,0.001750,0.249994,0,0);}
.mf6_c00305{transform:matrix(0.161696,-0.001132,0.001750,0.249994,0,0);-ms-transform:matrix(0.161696,-0.001132,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161696,-0.001132,0.001750,0.249994,0,0);}
.m151_c00305{transform:matrix(0.164231,-0.001150,0.001750,0.249994,0,0);-ms-transform:matrix(0.164231,-0.001150,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164231,-0.001150,0.001750,0.249994,0,0);}
.m46_c00305{transform:matrix(0.164246,-0.001150,0.001750,0.249994,0,0);-ms-transform:matrix(0.164246,-0.001150,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164246,-0.001150,0.001750,0.249994,0,0);}
.m35_c00305{transform:matrix(0.164861,-0.001154,0.001750,0.249994,0,0);-ms-transform:matrix(0.164861,-0.001154,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164861,-0.001154,0.001750,0.249994,0,0);}
.mcf_c00305{transform:matrix(0.164961,-0.001155,0.001750,0.249994,0,0);-ms-transform:matrix(0.164961,-0.001155,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164961,-0.001155,0.001750,0.249994,0,0);}
.ma5_c00305{transform:matrix(0.165501,-0.001159,0.001750,0.249994,0,0);-ms-transform:matrix(0.165501,-0.001159,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165501,-0.001159,0.001750,0.249994,0,0);}
.m52_c00305{transform:matrix(0.165676,-0.001160,0.001750,0.249994,0,0);-ms-transform:matrix(0.165676,-0.001160,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165676,-0.001160,0.001750,0.249994,0,0);}
.m13d_c00305{transform:matrix(0.166021,-0.001162,0.001750,0.249994,0,0);-ms-transform:matrix(0.166021,-0.001162,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166021,-0.001162,0.001750,0.249994,0,0);}
.m14e_c00305{transform:matrix(0.166271,-0.001164,0.001750,0.249994,0,0);-ms-transform:matrix(0.166271,-0.001164,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166271,-0.001164,0.001750,0.249994,0,0);}
.mc7_c00305{transform:matrix(0.166406,-0.001165,0.001750,0.249994,0,0);-ms-transform:matrix(0.166406,-0.001165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166406,-0.001165,0.001750,0.249994,0,0);}
.m144_c00305{transform:matrix(0.167561,-0.001173,0.001750,0.249994,0,0);-ms-transform:matrix(0.167561,-0.001173,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167561,-0.001173,0.001750,0.249994,0,0);}
.md2_c00305{transform:matrix(0.167676,-0.001174,0.001750,0.249994,0,0);-ms-transform:matrix(0.167676,-0.001174,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167676,-0.001174,0.001750,0.249994,0,0);}
.m154_c00305{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);}
.m15d_c00305{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);}
.m21_c00305{transform:matrix(0.168481,-0.001179,0.001750,0.249994,0,0);-ms-transform:matrix(0.168481,-0.001179,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168481,-0.001179,0.001750,0.249994,0,0);}
.m31_c00305{transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-ms-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168871,-0.001182,0.001750,0.249994,0,0);}
.m36_c00305{transform:matrix(0.168976,-0.001183,0.001750,0.249994,0,0);-ms-transform:matrix(0.168976,-0.001183,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168976,-0.001183,0.001750,0.249994,0,0);}
.m32_c00305{transform:matrix(0.169196,-0.001184,0.001750,0.249994,0,0);-ms-transform:matrix(0.169196,-0.001184,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169196,-0.001184,0.001750,0.249994,0,0);}
.m23_c00305{transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169486,-0.001186,0.001750,0.249994,0,0);}
.m3c_c00305{transform:matrix(0.169961,-0.001190,0.001750,0.249994,0,0);-ms-transform:matrix(0.169961,-0.001190,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169961,-0.001190,0.001750,0.249994,0,0);}
.m62_c00305{transform:matrix(0.170021,-0.001190,0.001750,0.249994,0,0);-ms-transform:matrix(0.170021,-0.001190,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170021,-0.001190,0.001750,0.249994,0,0);}
.m77_c00305{transform:matrix(0.170526,-0.001194,0.001750,0.249994,0,0);-ms-transform:matrix(0.170526,-0.001194,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170526,-0.001194,0.001750,0.249994,0,0);}
.m6c_c00305{transform:matrix(0.170931,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.170931,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170931,-0.001197,0.001750,0.249994,0,0);}
.m14a_c00305{transform:matrix(0.170941,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.170941,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170941,-0.001197,0.001750,0.249994,0,0);}
.m13b_c00305{transform:matrix(0.171211,-0.001198,0.001750,0.249994,0,0);-ms-transform:matrix(0.171211,-0.001198,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171211,-0.001198,0.001750,0.249994,0,0);}
.mc9_c00305{transform:matrix(0.171821,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171821,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171821,-0.001203,0.001750,0.249994,0,0);}
.m8e_c00305{transform:matrix(0.171906,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171906,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171906,-0.001203,0.001750,0.249994,0,0);}
.m14_c00305{transform:matrix(0.171941,-0.001204,0.001750,0.249994,0,0);-ms-transform:matrix(0.171941,-0.001204,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171941,-0.001204,0.001750,0.249994,0,0);}
.m70_c00305{transform:matrix(0.172366,-0.001207,0.001750,0.249994,0,0);-ms-transform:matrix(0.172366,-0.001207,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172366,-0.001207,0.001750,0.249994,0,0);}
.m12_c00305{transform:matrix(0.172796,-0.001210,0.001750,0.249994,0,0);-ms-transform:matrix(0.172796,-0.001210,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172796,-0.001210,0.001750,0.249994,0,0);}
.mc3_c00305{transform:matrix(0.172841,-0.001210,0.001750,0.249994,0,0);-ms-transform:matrix(0.172841,-0.001210,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172841,-0.001210,0.001750,0.249994,0,0);}
.m10_c00305{transform:matrix(0.173056,-0.001211,0.001750,0.249994,0,0);-ms-transform:matrix(0.173056,-0.001211,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173056,-0.001211,0.001750,0.249994,0,0);}
.m145_c00305{transform:matrix(0.174101,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174101,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174101,-0.001219,0.001750,0.249994,0,0);}
.m42_c00305{transform:matrix(0.174106,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174106,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174106,-0.001219,0.001750,0.249994,0,0);}
.md9_c00305{transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);-ms-transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174906,-0.001224,0.001750,0.249994,0,0);}
.mf0_c00305{transform:matrix(0.175121,-0.001226,0.001750,0.249994,0,0);-ms-transform:matrix(0.175121,-0.001226,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175121,-0.001226,0.001750,0.249994,0,0);}
.m113_c00305{transform:matrix(0.175231,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175231,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175231,-0.001227,0.001750,0.249994,0,0);}
.m13e_c00305{transform:matrix(0.175266,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175266,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175266,-0.001227,0.001750,0.249994,0,0);}
.mc_c00305{transform:matrix(0.175276,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175276,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175276,-0.001227,0.001750,0.249994,0,0);}
.mde_c00305{transform:matrix(0.175316,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175316,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175316,-0.001227,0.001750,0.249994,0,0);}
.m22_c00305{transform:matrix(0.175791,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175791,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175791,-0.001231,0.001750,0.249994,0,0);}
.mda_c00305{transform:matrix(0.175826,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175826,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175826,-0.001231,0.001750,0.249994,0,0);}
.mc8_c00305{transform:matrix(0.176136,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176136,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176136,-0.001233,0.001750,0.249994,0,0);}
.mca_c00305{transform:matrix(0.176266,-0.001234,0.001750,0.249994,0,0);-ms-transform:matrix(0.176266,-0.001234,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176266,-0.001234,0.001750,0.249994,0,0);}
.m24_c00305{transform:matrix(0.176386,-0.001235,0.001750,0.249994,0,0);-ms-transform:matrix(0.176386,-0.001235,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176386,-0.001235,0.001750,0.249994,0,0);}
.m19_c00305{transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);}
.m115_c00305{transform:matrix(0.177141,-0.001240,0.001750,0.249994,0,0);-ms-transform:matrix(0.177141,-0.001240,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177141,-0.001240,0.001750,0.249994,0,0);}
.m47_c00305{transform:matrix(0.177306,-0.001241,0.001750,0.249994,0,0);-ms-transform:matrix(0.177306,-0.001241,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177306,-0.001241,0.001750,0.249994,0,0);}
.m3a_c00305{transform:matrix(0.177336,-0.001241,0.001750,0.249994,0,0);-ms-transform:matrix(0.177336,-0.001241,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177336,-0.001241,0.001750,0.249994,0,0);}
.m11f_c00305{transform:matrix(0.177441,-0.001242,0.001750,0.249994,0,0);-ms-transform:matrix(0.177441,-0.001242,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177441,-0.001242,0.001750,0.249994,0,0);}
.mef_c00305{transform:matrix(0.177466,-0.001242,0.001750,0.249994,0,0);-ms-transform:matrix(0.177466,-0.001242,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177466,-0.001242,0.001750,0.249994,0,0);}
.m6f_c00305{transform:matrix(0.177716,-0.001244,0.001750,0.249994,0,0);-ms-transform:matrix(0.177716,-0.001244,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177716,-0.001244,0.001750,0.249994,0,0);}
.m4f_c00305{transform:matrix(0.178616,-0.001250,0.001750,0.249994,0,0);-ms-transform:matrix(0.178616,-0.001250,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178616,-0.001250,0.001750,0.249994,0,0);}
.md8_c00305{transform:matrix(0.179046,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.179046,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179046,-0.001253,0.001750,0.249994,0,0);}
.m153_c00305{transform:matrix(0.179166,-0.001254,0.001750,0.249994,0,0);-ms-transform:matrix(0.179166,-0.001254,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179166,-0.001254,0.001750,0.249994,0,0);}
.me_c00305{transform:matrix(0.179396,-0.001256,0.001750,0.249994,0,0);-ms-transform:matrix(0.179396,-0.001256,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179396,-0.001256,0.001750,0.249994,0,0);}
.m10a_c00305{transform:matrix(0.180151,-0.001261,0.001750,0.249994,0,0);-ms-transform:matrix(0.180151,-0.001261,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180151,-0.001261,0.001750,0.249994,0,0);}
.m140_c00305{transform:matrix(0.180491,-0.001263,0.001750,0.249994,0,0);-ms-transform:matrix(0.180491,-0.001263,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180491,-0.001263,0.001750,0.249994,0,0);}
.m39_c00305{transform:matrix(0.180666,-0.001265,0.001750,0.249994,0,0);-ms-transform:matrix(0.180666,-0.001265,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180666,-0.001265,0.001750,0.249994,0,0);}
.mb9_c00305{transform:matrix(0.181026,-0.001267,0.001750,0.249994,0,0);-ms-transform:matrix(0.181026,-0.001267,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181026,-0.001267,0.001750,0.249994,0,0);}
.mbf_c00305{transform:matrix(0.181386,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181386,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181386,-0.001270,0.001750,0.249994,0,0);}
.mdc_c00305{transform:matrix(0.181441,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181441,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181441,-0.001270,0.001750,0.249994,0,0);}
.m1b_c00305{transform:matrix(0.181466,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181466,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181466,-0.001270,0.001750,0.249994,0,0);}
.m50_c00305{transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181721,-0.001272,0.001750,0.249994,0,0);}
.mfa_c00305{transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);}
.m11a_c00305{transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);}
.mb6_c00305{transform:matrix(0.182031,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.182031,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182031,-0.001274,0.001750,0.249994,0,0);}
.m91_c00305{transform:matrix(0.182041,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.182041,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182041,-0.001274,0.001750,0.249994,0,0);}
.m5c_c00305{transform:matrix(0.182156,-0.001275,0.001750,0.249994,0,0);-ms-transform:matrix(0.182156,-0.001275,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182156,-0.001275,0.001750,0.249994,0,0);}
.mdf_c00305{transform:matrix(0.182166,-0.001275,0.001750,0.249994,0,0);-ms-transform:matrix(0.182166,-0.001275,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182166,-0.001275,0.001750,0.249994,0,0);}
.m3_c00305{transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);-ms-transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);}
.md1_c00305{transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);}
.m7e_c00305{transform:matrix(0.183461,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183461,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183461,-0.001284,0.001750,0.249994,0,0);}
.m40_c00305{transform:matrix(0.183725,-0.001286,0.001750,0.249994,0,0);-ms-transform:matrix(0.183725,-0.001286,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183725,-0.001286,0.001750,0.249994,0,0);}
.m8_c00305{transform:matrix(0.183820,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183820,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183820,-0.001287,0.001750,0.249994,0,0);}
.m3d_c00305{transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183865,-0.001287,0.001750,0.249994,0,0);}
.mcb_c00305{transform:matrix(0.183975,-0.001288,0.001750,0.249994,0,0);-ms-transform:matrix(0.183975,-0.001288,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183975,-0.001288,0.001750,0.249994,0,0);}
.mc2_c00305{transform:matrix(0.183995,-0.001288,0.001750,0.249994,0,0);-ms-transform:matrix(0.183995,-0.001288,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183995,-0.001288,0.001750,0.249994,0,0);}
.mbd_c00305{transform:matrix(0.184270,-0.001290,0.001750,0.249994,0,0);-ms-transform:matrix(0.184270,-0.001290,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184270,-0.001290,0.001750,0.249994,0,0);}
.m9f_c00305{transform:matrix(0.185995,-0.001302,0.001750,0.249994,0,0);-ms-transform:matrix(0.185995,-0.001302,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185995,-0.001302,0.001750,0.249994,0,0);}
.me8_c00305{transform:matrix(0.186075,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186075,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186075,-0.001303,0.001750,0.249994,0,0);}
.mae_c00305{transform:matrix(0.186230,-0.001304,0.001750,0.249994,0,0);-ms-transform:matrix(0.186230,-0.001304,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186230,-0.001304,0.001750,0.249994,0,0);}
.me2_c00305{transform:matrix(0.186330,-0.001304,0.001750,0.249994,0,0);-ms-transform:matrix(0.186330,-0.001304,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186330,-0.001304,0.001750,0.249994,0,0);}
.m13_c00305{transform:matrix(0.186445,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186445,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186445,-0.001305,0.001750,0.249994,0,0);}
.me9_c00305{transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);-ms-transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186775,-0.001307,0.001750,0.249994,0,0);}
.m7c_c00305{transform:matrix(0.186910,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186910,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186910,-0.001308,0.001750,0.249994,0,0);}
.m41_c00305{transform:matrix(0.187080,-0.001310,0.001750,0.249994,0,0);-ms-transform:matrix(0.187080,-0.001310,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187080,-0.001310,0.001750,0.249994,0,0);}
.m43_c00305{transform:matrix(0.187725,-0.001314,0.001750,0.249994,0,0);-ms-transform:matrix(0.187725,-0.001314,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187725,-0.001314,0.001750,0.249994,0,0);}
.m11b_c00305{transform:matrix(0.187820,-0.001315,0.001750,0.249994,0,0);-ms-transform:matrix(0.187820,-0.001315,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187820,-0.001315,0.001750,0.249994,0,0);}
.md4_c00305{transform:matrix(0.188395,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188395,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188395,-0.001319,0.001750,0.249994,0,0);}
.m6a_c00305{transform:matrix(0.188530,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188530,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188530,-0.001320,0.001750,0.249994,0,0);}
.m4d_c00305{transform:matrix(0.188625,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188625,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188625,-0.001320,0.001750,0.249994,0,0);}
.ma2_c00305{transform:matrix(0.188750,-0.001321,0.001750,0.249994,0,0);-ms-transform:matrix(0.188750,-0.001321,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188750,-0.001321,0.001750,0.249994,0,0);}
.mbe_c00305{transform:matrix(0.188755,-0.001321,0.001750,0.249994,0,0);-ms-transform:matrix(0.188755,-0.001321,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188755,-0.001321,0.001750,0.249994,0,0);}
.m1d_c00305{transform:matrix(0.188975,-0.001323,0.001750,0.249994,0,0);-ms-transform:matrix(0.188975,-0.001323,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188975,-0.001323,0.001750,0.249994,0,0);}
.m1f_c00305{transform:matrix(0.189045,-0.001323,0.001750,0.249994,0,0);-ms-transform:matrix(0.189045,-0.001323,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189045,-0.001323,0.001750,0.249994,0,0);}
.m6d_c00305{transform:matrix(0.189145,-0.001324,0.001750,0.249994,0,0);-ms-transform:matrix(0.189145,-0.001324,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189145,-0.001324,0.001750,0.249994,0,0);}
.m29_c00305{transform:matrix(0.189170,-0.001324,0.001750,0.249994,0,0);-ms-transform:matrix(0.189170,-0.001324,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189170,-0.001324,0.001750,0.249994,0,0);}
.m116_c00305{transform:matrix(0.189485,-0.001326,0.001750,0.249994,0,0);-ms-transform:matrix(0.189485,-0.001326,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189485,-0.001326,0.001750,0.249994,0,0);}
.mce_c00305{transform:matrix(0.189525,-0.001327,0.001750,0.249994,0,0);-ms-transform:matrix(0.189525,-0.001327,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189525,-0.001327,0.001750,0.249994,0,0);}
.mc0_c00305{transform:matrix(0.189815,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189815,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189815,-0.001329,0.001750,0.249994,0,0);}
.md5_c00305{transform:matrix(0.190275,-0.001332,0.001750,0.249994,0,0);-ms-transform:matrix(0.190275,-0.001332,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190275,-0.001332,0.001750,0.249994,0,0);}
.m106_c00305{transform:matrix(0.191070,-0.001337,0.001750,0.249994,0,0);-ms-transform:matrix(0.191070,-0.001337,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191070,-0.001337,0.001750,0.249994,0,0);}
.mfe_c00305{transform:matrix(0.191285,-0.001339,0.001750,0.249994,0,0);-ms-transform:matrix(0.191285,-0.001339,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191285,-0.001339,0.001750,0.249994,0,0);}
.m66_c00305{transform:matrix(0.191330,-0.001339,0.001750,0.249994,0,0);-ms-transform:matrix(0.191330,-0.001339,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191330,-0.001339,0.001750,0.249994,0,0);}
.mcc_c00305{transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);}
.m16_c00305{transform:matrix(0.191875,-0.001343,0.001750,0.249994,0,0);-ms-transform:matrix(0.191875,-0.001343,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191875,-0.001343,0.001750,0.249994,0,0);}
.mdb_c00305{transform:matrix(0.192090,-0.001345,0.001750,0.249994,0,0);-ms-transform:matrix(0.192090,-0.001345,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192090,-0.001345,0.001750,0.249994,0,0);}
.m76_c00305{transform:matrix(0.192440,-0.001347,0.001750,0.249994,0,0);-ms-transform:matrix(0.192440,-0.001347,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192440,-0.001347,0.001750,0.249994,0,0);}
.m14f_c00305{transform:matrix(0.192500,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192500,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192500,-0.001348,0.001750,0.249994,0,0);}
.m98_c00305{transform:matrix(0.193055,-0.001351,0.001750,0.249994,0,0);-ms-transform:matrix(0.193055,-0.001351,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193055,-0.001351,0.001750,0.249994,0,0);}
.m84_c00305{transform:matrix(0.193200,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193200,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193200,-0.001352,0.001750,0.249994,0,0);}
.ma4_c00305{transform:matrix(0.193785,-0.001356,0.001750,0.249994,0,0);-ms-transform:matrix(0.193785,-0.001356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193785,-0.001356,0.001750,0.249994,0,0);}
.m68_c00305{transform:matrix(0.193790,-0.001357,0.001750,0.249994,0,0);-ms-transform:matrix(0.193790,-0.001357,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193790,-0.001357,0.001750,0.249994,0,0);}
.m109_c00305{transform:matrix(0.193980,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.193980,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193980,-0.001358,0.001750,0.249994,0,0);}
.m75_c00305{transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194040,-0.001358,0.001750,0.249994,0,0);}
.m67_c00305{transform:matrix(0.194055,-0.001358,0.001750,0.249994,0,0);-ms-transform:matrix(0.194055,-0.001358,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194055,-0.001358,0.001750,0.249994,0,0);}
.m146_c00305{transform:matrix(0.194130,-0.001359,0.001750,0.249994,0,0);-ms-transform:matrix(0.194130,-0.001359,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194130,-0.001359,0.001750,0.249994,0,0);}
.m85_c00305{transform:matrix(0.194175,-0.001359,0.001750,0.249994,0,0);-ms-transform:matrix(0.194175,-0.001359,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194175,-0.001359,0.001750,0.249994,0,0);}
.mbc_c00305{transform:matrix(0.194220,-0.001360,0.001750,0.249994,0,0);-ms-transform:matrix(0.194220,-0.001360,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194220,-0.001360,0.001750,0.249994,0,0);}
.m126_c00305{transform:matrix(0.194500,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194500,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194500,-0.001362,0.001750,0.249994,0,0);}
.m114_c00305{transform:matrix(0.194505,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194505,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194505,-0.001362,0.001750,0.249994,0,0);}
.m4e_c00305{transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195050,-0.001365,0.001750,0.249994,0,0);}
.ma3_c00305{transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);-ms-transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195090,-0.001366,0.001750,0.249994,0,0);}
.m119_c00305{transform:matrix(0.195285,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195285,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195285,-0.001367,0.001750,0.249994,0,0);}
.m1e_c00305{transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);-ms-transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);}
.m3b_c00305{transform:matrix(0.196355,-0.001374,0.001750,0.249994,0,0);-ms-transform:matrix(0.196355,-0.001374,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196355,-0.001374,0.001750,0.249994,0,0);}
.m139_c00305{transform:matrix(0.196685,-0.001377,0.001750,0.249994,0,0);-ms-transform:matrix(0.196685,-0.001377,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196685,-0.001377,0.001750,0.249994,0,0);}
.m45_c00305{transform:matrix(0.196830,-0.001378,0.001750,0.249994,0,0);-ms-transform:matrix(0.196830,-0.001378,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196830,-0.001378,0.001750,0.249994,0,0);}
.m44_c00305{transform:matrix(0.196885,-0.001378,0.001750,0.249994,0,0);-ms-transform:matrix(0.196885,-0.001378,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196885,-0.001378,0.001750,0.249994,0,0);}
.m49_c00305{transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);}
.m7b_c00305{transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);-ms-transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);}
.m38_c00305{transform:matrix(0.197605,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197605,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197605,-0.001383,0.001750,0.249994,0,0);}
.m34_c00305{transform:matrix(0.197955,-0.001386,0.001750,0.249994,0,0);-ms-transform:matrix(0.197955,-0.001386,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197955,-0.001386,0.001750,0.249994,0,0);}
.mfb_c00305{transform:matrix(0.198030,-0.001386,0.001750,0.249994,0,0);-ms-transform:matrix(0.198030,-0.001386,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198030,-0.001386,0.001750,0.249994,0,0);}
.m3e_c00305{transform:matrix(0.198135,-0.001387,0.001750,0.249994,0,0);-ms-transform:matrix(0.198135,-0.001387,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198135,-0.001387,0.001750,0.249994,0,0);}
.m18_c00305{transform:matrix(0.198220,-0.001388,0.001750,0.249994,0,0);-ms-transform:matrix(0.198220,-0.001388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198220,-0.001388,0.001750,0.249994,0,0);}
.m97_c00305{transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-ms-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);}
.m143_c00305{transform:matrix(0.198750,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198750,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198750,-0.001391,0.001750,0.249994,0,0);}
.m6_c00305{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);}
.m30_c00305{transform:matrix(0.198795,-0.001392,0.001750,0.249994,0,0);-ms-transform:matrix(0.198795,-0.001392,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198795,-0.001392,0.001750,0.249994,0,0);}
.m1c_c00305{transform:matrix(0.198820,-0.001392,0.001750,0.249994,0,0);-ms-transform:matrix(0.198820,-0.001392,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198820,-0.001392,0.001750,0.249994,0,0);}
.m3f_c00305{transform:matrix(0.198935,-0.001393,0.001750,0.249994,0,0);-ms-transform:matrix(0.198935,-0.001393,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198935,-0.001393,0.001750,0.249994,0,0);}
.m7a_c00305{transform:matrix(0.198985,-0.001393,0.001750,0.249994,0,0);-ms-transform:matrix(0.198985,-0.001393,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198985,-0.001393,0.001750,0.249994,0,0);}
.m10b_c00305{transform:matrix(0.199260,-0.001395,0.001750,0.249994,0,0);-ms-transform:matrix(0.199260,-0.001395,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199260,-0.001395,0.001750,0.249994,0,0);}
.m107_c00305{transform:matrix(0.199455,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199455,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199455,-0.001396,0.001750,0.249994,0,0);}
.m73_c00305{transform:matrix(0.199585,-0.001397,0.001750,0.249994,0,0);-ms-transform:matrix(0.199585,-0.001397,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199585,-0.001397,0.001750,0.249994,0,0);}
.m13f_c00305{transform:matrix(0.199665,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199665,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199665,-0.001398,0.001750,0.249994,0,0);}
.m101_c00305{transform:matrix(0.199695,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199695,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199695,-0.001398,0.001750,0.249994,0,0);}
.me1_c00305{transform:matrix(0.199740,-0.001398,0.001750,0.249994,0,0);-ms-transform:matrix(0.199740,-0.001398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199740,-0.001398,0.001750,0.249994,0,0);}
.m1a_c00305{transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);}
.m110_c00305{transform:matrix(0.200010,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200010,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200010,-0.001400,0.001750,0.249994,0,0);}
.m105_c00305{transform:matrix(0.200505,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200505,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200505,-0.001404,0.001750,0.249994,0,0);}
.m48_c00305{transform:matrix(0.200795,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200795,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200795,-0.001406,0.001750,0.249994,0,0);}
.m96_c00305{transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200830,-0.001406,0.001750,0.249994,0,0);}
.m80_c00305{transform:matrix(0.201220,-0.001409,0.001750,0.249994,0,0);-ms-transform:matrix(0.201220,-0.001409,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201220,-0.001409,0.001750,0.249994,0,0);}
.m10e_c00305{transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);-ms-transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);}
.mfd_c00305{transform:matrix(0.201435,-0.001410,0.001750,0.249994,0,0);-ms-transform:matrix(0.201435,-0.001410,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201435,-0.001410,0.001750,0.249994,0,0);}
.m9_c00305{transform:matrix(0.201665,-0.001412,0.001750,0.249994,0,0);-ms-transform:matrix(0.201665,-0.001412,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201665,-0.001412,0.001750,0.249994,0,0);}
.m11e_c00305{transform:matrix(0.201780,-0.001412,0.001750,0.249994,0,0);-ms-transform:matrix(0.201780,-0.001412,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201780,-0.001412,0.001750,0.249994,0,0);}
.m159_c00305{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);}
.m124_c00305{transform:matrix(0.202190,-0.001415,0.001750,0.249994,0,0);-ms-transform:matrix(0.202190,-0.001415,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202190,-0.001415,0.001750,0.249994,0,0);}
.m142_c00305{transform:matrix(0.202730,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202730,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202730,-0.001419,0.001750,0.249994,0,0);}
.m2d_c00305{transform:matrix(0.203425,-0.001424,0.001750,0.249994,0,0);-ms-transform:matrix(0.203425,-0.001424,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203425,-0.001424,0.001750,0.249994,0,0);}
.m141_c00305{transform:matrix(0.203615,-0.001425,0.001750,0.249994,0,0);-ms-transform:matrix(0.203615,-0.001425,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203615,-0.001425,0.001750,0.249994,0,0);}
.mb3_c00305{transform:matrix(0.203935,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.203935,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203935,-0.001428,0.001750,0.249994,0,0);}
.ma9_c00305{transform:matrix(0.203960,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.203960,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203960,-0.001428,0.001750,0.249994,0,0);}
.m72_c00305{transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203970,-0.001428,0.001750,0.249994,0,0);}
.m6e_c00305{transform:matrix(0.204865,-0.001434,0.001750,0.249994,0,0);-ms-transform:matrix(0.204865,-0.001434,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204865,-0.001434,0.001750,0.249994,0,0);}
.m90_c00305{transform:matrix(0.205250,-0.001437,0.001750,0.249994,0,0);-ms-transform:matrix(0.205250,-0.001437,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205250,-0.001437,0.001750,0.249994,0,0);}
.m94_c00305{transform:matrix(0.205595,-0.001439,0.001750,0.249994,0,0);-ms-transform:matrix(0.205595,-0.001439,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205595,-0.001439,0.001750,0.249994,0,0);}
.m9e_c00305{transform:matrix(0.205815,-0.001441,0.001750,0.249994,0,0);-ms-transform:matrix(0.205815,-0.001441,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205815,-0.001441,0.001750,0.249994,0,0);}
.me0_c00305{transform:matrix(0.206370,-0.001445,0.001750,0.249994,0,0);-ms-transform:matrix(0.206370,-0.001445,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206370,-0.001445,0.001750,0.249994,0,0);}
.m7f_c00305{transform:matrix(0.206375,-0.001445,0.001750,0.249994,0,0);-ms-transform:matrix(0.206375,-0.001445,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206375,-0.001445,0.001750,0.249994,0,0);}
.m138_c00305{transform:matrix(0.206565,-0.001446,0.001750,0.249994,0,0);-ms-transform:matrix(0.206565,-0.001446,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206565,-0.001446,0.001750,0.249994,0,0);}
.m123_c00305{transform:matrix(0.207240,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207240,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207240,-0.001451,0.001750,0.249994,0,0);}
.m13c_c00305{transform:matrix(0.207310,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207310,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207310,-0.001451,0.001750,0.249994,0,0);}
.m0_c00305{transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207348,-0.001659,0.002000,0.249992,0,0);}
.m14d_c00305{transform:matrix(0.207550,-0.001453,0.001750,0.249994,0,0);-ms-transform:matrix(0.207550,-0.001453,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207550,-0.001453,0.001750,0.249994,0,0);}
.m37_c00305{transform:matrix(0.207605,-0.001453,0.001750,0.249994,0,0);-ms-transform:matrix(0.207605,-0.001453,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207605,-0.001453,0.001750,0.249994,0,0);}
.maa_c00305{transform:matrix(0.207805,-0.001455,0.001750,0.249994,0,0);-ms-transform:matrix(0.207805,-0.001455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207805,-0.001455,0.001750,0.249994,0,0);}
.mec_c00305{transform:matrix(0.208400,-0.001459,0.001750,0.249994,0,0);-ms-transform:matrix(0.208400,-0.001459,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208400,-0.001459,0.001750,0.249994,0,0);}
.m51_c00305{transform:matrix(0.208460,-0.001459,0.001750,0.249994,0,0);-ms-transform:matrix(0.208460,-0.001459,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208460,-0.001459,0.001750,0.249994,0,0);}
.mee_c00305{transform:matrix(0.208515,-0.001460,0.001750,0.249994,0,0);-ms-transform:matrix(0.208515,-0.001460,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208515,-0.001460,0.001750,0.249994,0,0);}
.m28_c00305{transform:matrix(0.208625,-0.001460,0.001750,0.249994,0,0);-ms-transform:matrix(0.208625,-0.001460,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208625,-0.001460,0.001750,0.249994,0,0);}
.m5a_c00305{transform:matrix(0.208905,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208905,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208905,-0.001462,0.001750,0.249994,0,0);}
.m6b_c00305{transform:matrix(0.208940,-0.001463,0.001750,0.249994,0,0);-ms-transform:matrix(0.208940,-0.001463,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208940,-0.001463,0.001750,0.249994,0,0);}
.mb7_c00305{transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);}
.m2c_c00305{transform:matrix(0.209270,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209270,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209270,-0.001465,0.001750,0.249994,0,0);}
.ma0_c00305{transform:matrix(0.209350,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209350,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209350,-0.001465,0.001750,0.249994,0,0);}
.m88_c00305{transform:matrix(0.211000,-0.001477,0.001750,0.249994,0,0);-ms-transform:matrix(0.211000,-0.001477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211000,-0.001477,0.001750,0.249994,0,0);}
.m15b_c00305{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);}
.m71_c00305{transform:matrix(0.212105,-0.001485,0.001750,0.249994,0,0);-ms-transform:matrix(0.212105,-0.001485,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212105,-0.001485,0.001750,0.249994,0,0);}
.m4c_c00305{transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);-ms-transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);}
.m122_c00305{transform:matrix(0.213075,-0.001492,0.001750,0.249994,0,0);-ms-transform:matrix(0.213075,-0.001492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213075,-0.001492,0.001750,0.249994,0,0);}
.mf9_c00305{transform:matrix(0.213280,-0.001493,0.001750,0.249994,0,0);-ms-transform:matrix(0.213280,-0.001493,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213280,-0.001493,0.001750,0.249994,0,0);}
.m56_c00305{transform:matrix(0.214280,-0.001500,0.001750,0.249994,0,0);-ms-transform:matrix(0.214280,-0.001500,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214280,-0.001500,0.001750,0.249994,0,0);}
.m132_c00305{transform:matrix(0.214590,-0.001502,0.001750,0.249994,0,0);-ms-transform:matrix(0.214590,-0.001502,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214590,-0.001502,0.001750,0.249994,0,0);}
.m8d_c00305{transform:matrix(0.215245,-0.001507,0.001750,0.249994,0,0);-ms-transform:matrix(0.215245,-0.001507,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215245,-0.001507,0.001750,0.249994,0,0);}
.m15_c00305{transform:matrix(0.215625,-0.001509,0.001750,0.249994,0,0);-ms-transform:matrix(0.215625,-0.001509,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215625,-0.001509,0.001750,0.249994,0,0);}
.ma1_c00305{transform:matrix(0.216290,-0.001514,0.001750,0.249994,0,0);-ms-transform:matrix(0.216290,-0.001514,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216290,-0.001514,0.001750,0.249994,0,0);}
.m136_c00305{transform:matrix(0.216835,-0.001518,0.001750,0.249994,0,0);-ms-transform:matrix(0.216835,-0.001518,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216835,-0.001518,0.001750,0.249994,0,0);}
.mf7_c00305{transform:matrix(0.217340,-0.001521,0.001750,0.249994,0,0);-ms-transform:matrix(0.217340,-0.001521,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217340,-0.001521,0.001750,0.249994,0,0);}
.mf4_c00305{transform:matrix(0.217820,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217820,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217820,-0.001525,0.001750,0.249994,0,0);}
.m117_c00305{transform:matrix(0.217835,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217835,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217835,-0.001525,0.001750,0.249994,0,0);}
.m10f_c00305{transform:matrix(0.218090,-0.001527,0.001750,0.249994,0,0);-ms-transform:matrix(0.218090,-0.001527,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218090,-0.001527,0.001750,0.249994,0,0);}
.m118_c00305{transform:matrix(0.218185,-0.001527,0.001750,0.249994,0,0);-ms-transform:matrix(0.218185,-0.001527,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218185,-0.001527,0.001750,0.249994,0,0);}
.m2f_c00305{transform:matrix(0.218280,-0.001528,0.001750,0.249994,0,0);-ms-transform:matrix(0.218280,-0.001528,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218280,-0.001528,0.001750,0.249994,0,0);}
.mc1_c00305{transform:matrix(0.218315,-0.001528,0.001750,0.249994,0,0);-ms-transform:matrix(0.218315,-0.001528,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218315,-0.001528,0.001750,0.249994,0,0);}
.m5b_c00305{transform:matrix(0.218750,-0.001531,0.001750,0.249994,0,0);-ms-transform:matrix(0.218750,-0.001531,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218750,-0.001531,0.001750,0.249994,0,0);}
.m83_c00305{transform:matrix(0.219105,-0.001534,0.001750,0.249994,0,0);-ms-transform:matrix(0.219105,-0.001534,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219105,-0.001534,0.001750,0.249994,0,0);}
.m102_c00305{transform:matrix(0.219745,-0.001538,0.001750,0.249994,0,0);-ms-transform:matrix(0.219745,-0.001538,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219745,-0.001538,0.001750,0.249994,0,0);}
.m148_c00305{transform:matrix(0.219980,-0.001540,0.001750,0.249994,0,0);-ms-transform:matrix(0.219980,-0.001540,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219980,-0.001540,0.001750,0.249994,0,0);}
.m14c_c00305{transform:matrix(0.220355,-0.001542,0.001750,0.249994,0,0);-ms-transform:matrix(0.220355,-0.001542,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220355,-0.001542,0.001750,0.249994,0,0);}
.mf5_c00305{transform:matrix(0.221285,-0.001549,0.001750,0.249994,0,0);-ms-transform:matrix(0.221285,-0.001549,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221285,-0.001549,0.001750,0.249994,0,0);}
.m135_c00305{transform:matrix(0.221305,-0.001549,0.001750,0.249994,0,0);-ms-transform:matrix(0.221305,-0.001549,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221305,-0.001549,0.001750,0.249994,0,0);}
.mba_c00305{transform:matrix(0.221385,-0.001550,0.001750,0.249994,0,0);-ms-transform:matrix(0.221385,-0.001550,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221385,-0.001550,0.001750,0.249994,0,0);}
.m86_c00305{transform:matrix(0.221670,-0.001552,0.001750,0.249994,0,0);-ms-transform:matrix(0.221670,-0.001552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221670,-0.001552,0.001750,0.249994,0,0);}
.m64_c00305{transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);-ms-transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221690,-0.001552,0.001750,0.249994,0,0);}
.ma6_c00305{transform:matrix(0.222030,-0.001554,0.001750,0.249994,0,0);-ms-transform:matrix(0.222030,-0.001554,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222030,-0.001554,0.001750,0.249994,0,0);}
.m108_c00305{transform:matrix(0.222290,-0.001556,0.001750,0.249994,0,0);-ms-transform:matrix(0.222290,-0.001556,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222290,-0.001556,0.001750,0.249994,0,0);}
.mad_c00305{transform:matrix(0.222590,-0.001558,0.001750,0.249994,0,0);-ms-transform:matrix(0.222590,-0.001558,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222590,-0.001558,0.001750,0.249994,0,0);}
.md3_c00305{transform:matrix(0.222830,-0.001560,0.001750,0.249994,0,0);-ms-transform:matrix(0.222830,-0.001560,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222830,-0.001560,0.001750,0.249994,0,0);}
.m27_c00305{transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);-ms-transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);}
.m15e_c00305{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);}
.mac_c00305{transform:matrix(0.223830,-0.001567,0.001750,0.249994,0,0);-ms-transform:matrix(0.223830,-0.001567,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223830,-0.001567,0.001750,0.249994,0,0);}
.me7_c00305{transform:matrix(0.224220,-0.001570,0.001750,0.249994,0,0);-ms-transform:matrix(0.224220,-0.001570,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224220,-0.001570,0.001750,0.249994,0,0);}
.mf3_c00305{transform:matrix(0.224519,-0.001572,0.001750,0.249994,0,0);-ms-transform:matrix(0.224519,-0.001572,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224519,-0.001572,0.001750,0.249994,0,0);}
.m147_c00305{transform:matrix(0.224614,-0.001572,0.001750,0.249994,0,0);-ms-transform:matrix(0.224614,-0.001572,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224614,-0.001572,0.001750,0.249994,0,0);}
.m81_c00305{transform:matrix(0.225529,-0.001579,0.001750,0.249994,0,0);-ms-transform:matrix(0.225529,-0.001579,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225529,-0.001579,0.001750,0.249994,0,0);}
.mbb_c00305{transform:matrix(0.226304,-0.001584,0.001750,0.249994,0,0);-ms-transform:matrix(0.226304,-0.001584,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226304,-0.001584,0.001750,0.249994,0,0);}
.mc4_c00305{transform:matrix(0.226579,-0.001586,0.001750,0.249994,0,0);-ms-transform:matrix(0.226579,-0.001586,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226579,-0.001586,0.001750,0.249994,0,0);}
.m12f_c00305{transform:matrix(0.226824,-0.001588,0.001750,0.249994,0,0);-ms-transform:matrix(0.226824,-0.001588,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226824,-0.001588,0.001750,0.249994,0,0);}
.me5_c00305{transform:matrix(0.227004,-0.001589,0.001750,0.249994,0,0);-ms-transform:matrix(0.227004,-0.001589,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227004,-0.001589,0.001750,0.249994,0,0);}
.ma7_c00305{transform:matrix(0.227159,-0.001590,0.001750,0.249994,0,0);-ms-transform:matrix(0.227159,-0.001590,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227159,-0.001590,0.001750,0.249994,0,0);}
.m9b_c00305{transform:matrix(0.227844,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227844,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227844,-0.001595,0.001750,0.249994,0,0);}
.m8b_c00305{transform:matrix(0.228029,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.228029,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228029,-0.001596,0.001750,0.249994,0,0);}
.m5e_c00305{transform:matrix(0.228214,-0.001598,0.001750,0.249994,0,0);-ms-transform:matrix(0.228214,-0.001598,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228214,-0.001598,0.001750,0.249994,0,0);}
.m69_c00305{transform:matrix(0.228414,-0.001599,0.001750,0.249994,0,0);-ms-transform:matrix(0.228414,-0.001599,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228414,-0.001599,0.001750,0.249994,0,0);}
.m149_c00305{transform:matrix(0.229859,-0.001609,0.001750,0.249994,0,0);-ms-transform:matrix(0.229859,-0.001609,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229859,-0.001609,0.001750,0.249994,0,0);}
.mb_c00305{transform:matrix(0.230014,-0.001610,0.001750,0.249994,0,0);-ms-transform:matrix(0.230014,-0.001610,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230014,-0.001610,0.001750,0.249994,0,0);}
.mab_c00305{transform:matrix(0.230234,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230234,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230234,-0.001612,0.001750,0.249994,0,0);}
.mf8_c00305{transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);-ms-transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);}
.m9d_c00305{transform:matrix(0.231664,-0.001622,0.001750,0.249994,0,0);-ms-transform:matrix(0.231664,-0.001622,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231664,-0.001622,0.001750,0.249994,0,0);}
.m89_c00305{transform:matrix(0.231859,-0.001623,0.001750,0.249994,0,0);-ms-transform:matrix(0.231859,-0.001623,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231859,-0.001623,0.001750,0.249994,0,0);}
.mb4_c00305{transform:matrix(0.232344,-0.001626,0.001750,0.249994,0,0);-ms-transform:matrix(0.232344,-0.001626,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232344,-0.001626,0.001750,0.249994,0,0);}
.m131_c00305{transform:matrix(0.232419,-0.001627,0.001750,0.249994,0,0);-ms-transform:matrix(0.232419,-0.001627,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232419,-0.001627,0.001750,0.249994,0,0);}
.mf_c00305{transform:matrix(0.232764,-0.001629,0.001750,0.249994,0,0);-ms-transform:matrix(0.232764,-0.001629,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232764,-0.001629,0.001750,0.249994,0,0);}
.m95_c00305{transform:matrix(0.232899,-0.001630,0.001750,0.249994,0,0);-ms-transform:matrix(0.232899,-0.001630,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232899,-0.001630,0.001750,0.249994,0,0);}
.m61_c00305{transform:matrix(0.233314,-0.001633,0.001750,0.249994,0,0);-ms-transform:matrix(0.233314,-0.001633,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233314,-0.001633,0.001750,0.249994,0,0);}
.m4b_c00305{transform:matrix(0.233889,-0.001637,0.001750,0.249994,0,0);-ms-transform:matrix(0.233889,-0.001637,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233889,-0.001637,0.001750,0.249994,0,0);}
.m2b_c00305{transform:matrix(0.233894,-0.001637,0.001750,0.249994,0,0);-ms-transform:matrix(0.233894,-0.001637,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233894,-0.001637,0.001750,0.249994,0,0);}
.m134_c00305{transform:matrix(0.234254,-0.001640,0.001750,0.249994,0,0);-ms-transform:matrix(0.234254,-0.001640,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234254,-0.001640,0.001750,0.249994,0,0);}
.m152_c00305{transform:matrix(0.235074,-0.001646,0.001750,0.249994,0,0);-ms-transform:matrix(0.235074,-0.001646,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235074,-0.001646,0.001750,0.249994,0,0);}
.mc6_c00305{transform:matrix(0.235219,-0.001647,0.001750,0.249994,0,0);-ms-transform:matrix(0.235219,-0.001647,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235219,-0.001647,0.001750,0.249994,0,0);}
.med_c00305{transform:matrix(0.236284,-0.001654,0.001750,0.249994,0,0);-ms-transform:matrix(0.236284,-0.001654,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236284,-0.001654,0.001750,0.249994,0,0);}
.m127_c00305{transform:matrix(0.236354,-0.001654,0.001750,0.249994,0,0);-ms-transform:matrix(0.236354,-0.001654,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236354,-0.001654,0.001750,0.249994,0,0);}
.m125_c00305{transform:matrix(0.236754,-0.001657,0.001750,0.249994,0,0);-ms-transform:matrix(0.236754,-0.001657,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236754,-0.001657,0.001750,0.249994,0,0);}
.m33_c00305{transform:matrix(0.237079,-0.001660,0.001750,0.249994,0,0);-ms-transform:matrix(0.237079,-0.001660,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237079,-0.001660,0.001750,0.249994,0,0);}
.m53_c00305{transform:matrix(0.237254,-0.001661,0.001750,0.249994,0,0);-ms-transform:matrix(0.237254,-0.001661,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237254,-0.001661,0.001750,0.249994,0,0);}
.m133_c00305{transform:matrix(0.237334,-0.001661,0.001750,0.249994,0,0);-ms-transform:matrix(0.237334,-0.001661,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237334,-0.001661,0.001750,0.249994,0,0);}
.mf1_c00305{transform:matrix(0.237414,-0.001662,0.001750,0.249994,0,0);-ms-transform:matrix(0.237414,-0.001662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237414,-0.001662,0.001750,0.249994,0,0);}
.mdd_c00305{transform:matrix(0.237794,-0.001665,0.001750,0.249994,0,0);-ms-transform:matrix(0.237794,-0.001665,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237794,-0.001665,0.001750,0.249994,0,0);}
.m93_c00305{transform:matrix(0.240074,-0.001681,0.001750,0.249994,0,0);-ms-transform:matrix(0.240074,-0.001681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240074,-0.001681,0.001750,0.249994,0,0);}
.m58_c00305{transform:matrix(0.240629,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240629,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240629,-0.001684,0.001750,0.249994,0,0);}
.m2e_c00305{transform:matrix(0.240824,-0.001686,0.001750,0.249994,0,0);-ms-transform:matrix(0.240824,-0.001686,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240824,-0.001686,0.001750,0.249994,0,0);}
.m17_c00305{transform:matrix(0.241159,-0.001688,0.001750,0.249994,0,0);-ms-transform:matrix(0.241159,-0.001688,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241159,-0.001688,0.001750,0.249994,0,0);}
.m99_c00305{transform:matrix(0.242569,-0.001698,0.001750,0.249994,0,0);-ms-transform:matrix(0.242569,-0.001698,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242569,-0.001698,0.001750,0.249994,0,0);}
.m65_c00305{transform:matrix(0.242994,-0.001701,0.001750,0.249994,0,0);-ms-transform:matrix(0.242994,-0.001701,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242994,-0.001701,0.001750,0.249994,0,0);}
.m121_c00305{transform:matrix(0.245179,-0.001716,0.001750,0.249994,0,0);-ms-transform:matrix(0.245179,-0.001716,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245179,-0.001716,0.001750,0.249994,0,0);}
.m2a_c00305{transform:matrix(0.246164,-0.001723,0.001750,0.249994,0,0);-ms-transform:matrix(0.246164,-0.001723,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246164,-0.001723,0.001750,0.249994,0,0);}
.m156_c00305{transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);}
.mb2_c00305{transform:matrix(0.247074,-0.001730,0.001750,0.249994,0,0);-ms-transform:matrix(0.247074,-0.001730,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247074,-0.001730,0.001750,0.249994,0,0);}
.me6_c00305{transform:matrix(0.247669,-0.001734,0.001750,0.249994,0,0);-ms-transform:matrix(0.247669,-0.001734,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247669,-0.001734,0.001750,0.249994,0,0);}
.m9a_c00305{transform:matrix(0.249424,-0.001746,0.001750,0.249994,0,0);-ms-transform:matrix(0.249424,-0.001746,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249424,-0.001746,0.001750,0.249994,0,0);}
.m59_c00305{transform:matrix(0.249939,-0.001750,0.001750,0.249994,0,0);-ms-transform:matrix(0.249939,-0.001750,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249939,-0.001750,0.001750,0.249994,0,0);}
.m104_c00305{transform:matrix(0.250274,-0.001752,0.001750,0.249994,0,0);-ms-transform:matrix(0.250274,-0.001752,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250274,-0.001752,0.001750,0.249994,0,0);}
.mff_c00305{transform:matrix(0.250709,-0.001755,0.001750,0.249994,0,0);-ms-transform:matrix(0.250709,-0.001755,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250709,-0.001755,0.001750,0.249994,0,0);}
.m55_c00305{transform:matrix(0.251174,-0.001758,0.001750,0.249994,0,0);-ms-transform:matrix(0.251174,-0.001758,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251174,-0.001758,0.001750,0.249994,0,0);}
.m5d_c00305{transform:matrix(0.251674,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251674,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251674,-0.001762,0.001750,0.249994,0,0);}
.m111_c00305{transform:matrix(0.251779,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251779,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251779,-0.001762,0.001750,0.249994,0,0);}
.m12c_c00305{transform:matrix(0.252339,-0.001766,0.001750,0.249994,0,0);-ms-transform:matrix(0.252339,-0.001766,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252339,-0.001766,0.001750,0.249994,0,0);}
.m57_c00305{transform:matrix(0.254424,-0.001781,0.001750,0.249994,0,0);-ms-transform:matrix(0.254424,-0.001781,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254424,-0.001781,0.001750,0.249994,0,0);}
.m63_c00305{transform:matrix(0.256844,-0.001798,0.001750,0.249994,0,0);-ms-transform:matrix(0.256844,-0.001798,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256844,-0.001798,0.001750,0.249994,0,0);}
.mfc_c00305{transform:matrix(0.257329,-0.001801,0.001750,0.249994,0,0);-ms-transform:matrix(0.257329,-0.001801,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257329,-0.001801,0.001750,0.249994,0,0);}
.me3_c00305{transform:matrix(0.257399,-0.001802,0.001750,0.249994,0,0);-ms-transform:matrix(0.257399,-0.001802,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257399,-0.001802,0.001750,0.249994,0,0);}
.m8a_c00305{transform:matrix(0.261314,-0.001829,0.001750,0.249994,0,0);-ms-transform:matrix(0.261314,-0.001829,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261314,-0.001829,0.001750,0.249994,0,0);}
.m26_c00305{transform:matrix(0.261679,-0.001832,0.001750,0.249994,0,0);-ms-transform:matrix(0.261679,-0.001832,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261679,-0.001832,0.001750,0.249994,0,0);}
.m82_c00305{transform:matrix(0.261984,-0.001834,0.001750,0.249994,0,0);-ms-transform:matrix(0.261984,-0.001834,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261984,-0.001834,0.001750,0.249994,0,0);}
.m4_c00305{transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);-ms-transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);}
.m112_c00305{transform:matrix(0.262999,-0.001841,0.001750,0.249994,0,0);-ms-transform:matrix(0.262999,-0.001841,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262999,-0.001841,0.001750,0.249994,0,0);}
.mb5_c00305{transform:matrix(0.263419,-0.001844,0.001750,0.249994,0,0);-ms-transform:matrix(0.263419,-0.001844,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263419,-0.001844,0.001750,0.249994,0,0);}
.m100_c00305{transform:matrix(0.263924,-0.001847,0.001750,0.249994,0,0);-ms-transform:matrix(0.263924,-0.001847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263924,-0.001847,0.001750,0.249994,0,0);}
.maf_c00305{transform:matrix(0.264584,-0.001852,0.001750,0.249994,0,0);-ms-transform:matrix(0.264584,-0.001852,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264584,-0.001852,0.001750,0.249994,0,0);}
.m60_c00305{transform:matrix(0.265428,-0.001858,0.001750,0.249994,0,0);-ms-transform:matrix(0.265428,-0.001858,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265428,-0.001858,0.001750,0.249994,0,0);}
.m129_c00305{transform:matrix(0.268353,-0.001878,0.001750,0.249994,0,0);-ms-transform:matrix(0.268353,-0.001878,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268353,-0.001878,0.001750,0.249994,0,0);}
.mb1_c00305{transform:matrix(0.268458,-0.001879,0.001750,0.249994,0,0);-ms-transform:matrix(0.268458,-0.001879,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268458,-0.001879,0.001750,0.249994,0,0);}
.mf2_c00305{transform:matrix(0.269783,-0.001888,0.001750,0.249994,0,0);-ms-transform:matrix(0.269783,-0.001888,0.001750,0.249994,0,0);-webkit-transform:matrix(0.269783,-0.001888,0.001750,0.249994,0,0);}
.mb8_c00305{transform:matrix(0.270053,-0.001890,0.001750,0.249994,0,0);-ms-transform:matrix(0.270053,-0.001890,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270053,-0.001890,0.001750,0.249994,0,0);}
.m137_c00305{transform:matrix(0.276453,-0.001935,0.001750,0.249994,0,0);-ms-transform:matrix(0.276453,-0.001935,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276453,-0.001935,0.001750,0.249994,0,0);}
.m9c_c00305{transform:matrix(0.277403,-0.001942,0.001750,0.249994,0,0);-ms-transform:matrix(0.277403,-0.001942,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277403,-0.001942,0.001750,0.249994,0,0);}
.m12d_c00305{transform:matrix(0.284653,-0.001993,0.001750,0.249994,0,0);-ms-transform:matrix(0.284653,-0.001993,0.001750,0.249994,0,0);-webkit-transform:matrix(0.284653,-0.001993,0.001750,0.249994,0,0);}
.m5_c00305{transform:matrix(0.284761,-0.002278,0.002000,0.249992,0,0);-ms-transform:matrix(0.284761,-0.002278,0.002000,0.249992,0,0);-webkit-transform:matrix(0.284761,-0.002278,0.002000,0.249992,0,0);}
.m2_c00305{transform:matrix(0.285286,-0.002282,0.002000,0.249992,0,0);-ms-transform:matrix(0.285286,-0.002282,0.002000,0.249992,0,0);-webkit-transform:matrix(0.285286,-0.002282,0.002000,0.249992,0,0);}
.m92_c00305{transform:matrix(0.285903,-0.002001,0.001750,0.249994,0,0);-ms-transform:matrix(0.285903,-0.002001,0.001750,0.249994,0,0);-webkit-transform:matrix(0.285903,-0.002001,0.001750,0.249994,0,0);}
.m8f_c00305{transform:matrix(0.286148,-0.002003,0.001750,0.249994,0,0);-ms-transform:matrix(0.286148,-0.002003,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286148,-0.002003,0.001750,0.249994,0,0);}
.m10d_c00305{transform:matrix(0.289143,-0.002024,0.001750,0.249994,0,0);-ms-transform:matrix(0.289143,-0.002024,0.001750,0.249994,0,0);-webkit-transform:matrix(0.289143,-0.002024,0.001750,0.249994,0,0);}
.m87_c00305{transform:matrix(0.297343,-0.002081,0.001750,0.249994,0,0);-ms-transform:matrix(0.297343,-0.002081,0.001750,0.249994,0,0);-webkit-transform:matrix(0.297343,-0.002081,0.001750,0.249994,0,0);}
.m11d_c00305{transform:matrix(0.299633,-0.002097,0.001750,0.249994,0,0);-ms-transform:matrix(0.299633,-0.002097,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299633,-0.002097,0.001750,0.249994,0,0);}
.mc5_c00305{transform:matrix(0.300778,-0.002105,0.001750,0.249994,0,0);-ms-transform:matrix(0.300778,-0.002105,0.001750,0.249994,0,0);-webkit-transform:matrix(0.300778,-0.002105,0.001750,0.249994,0,0);}
.m12b_c00305{transform:matrix(0.302918,-0.002120,0.001750,0.249994,0,0);-ms-transform:matrix(0.302918,-0.002120,0.001750,0.249994,0,0);-webkit-transform:matrix(0.302918,-0.002120,0.001750,0.249994,0,0);}
.m128_c00305{transform:matrix(0.304253,-0.002130,0.001750,0.249994,0,0);-ms-transform:matrix(0.304253,-0.002130,0.001750,0.249994,0,0);-webkit-transform:matrix(0.304253,-0.002130,0.001750,0.249994,0,0);}
.me4_c00305{transform:matrix(0.304773,-0.002133,0.001750,0.249994,0,0);-ms-transform:matrix(0.304773,-0.002133,0.001750,0.249994,0,0);-webkit-transform:matrix(0.304773,-0.002133,0.001750,0.249994,0,0);}
.mb0_c00305{transform:matrix(0.309902,-0.002169,0.001750,0.249994,0,0);-ms-transform:matrix(0.309902,-0.002169,0.001750,0.249994,0,0);-webkit-transform:matrix(0.309902,-0.002169,0.001750,0.249994,0,0);}
.m120_c00305{transform:matrix(0.311677,-0.002182,0.001750,0.249994,0,0);-ms-transform:matrix(0.311677,-0.002182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.311677,-0.002182,0.001750,0.249994,0,0);}
.m54_c00305{transform:matrix(0.312972,-0.002191,0.001750,0.249994,0,0);-ms-transform:matrix(0.312972,-0.002191,0.001750,0.249994,0,0);-webkit-transform:matrix(0.312972,-0.002191,0.001750,0.249994,0,0);}
.m11c_c00305{transform:matrix(0.316572,-0.002216,0.001750,0.249994,0,0);-ms-transform:matrix(0.316572,-0.002216,0.001750,0.249994,0,0);-webkit-transform:matrix(0.316572,-0.002216,0.001750,0.249994,0,0);}
.m157_c00305{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);}
.m10c_c00305{transform:matrix(0.331027,-0.002317,0.001750,0.249994,0,0);-ms-transform:matrix(0.331027,-0.002317,0.001750,0.249994,0,0);-webkit-transform:matrix(0.331027,-0.002317,0.001750,0.249994,0,0);}
.m130_c00305{transform:matrix(0.333407,-0.002334,0.001750,0.249994,0,0);-ms-transform:matrix(0.333407,-0.002334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.333407,-0.002334,0.001750,0.249994,0,0);}
.m4a_c00305{transform:matrix(0.349621,-0.002447,0.001750,0.249994,0,0);-ms-transform:matrix(0.349621,-0.002447,0.001750,0.249994,0,0);-webkit-transform:matrix(0.349621,-0.002447,0.001750,0.249994,0,0);}
.m12e_c00305{transform:matrix(0.376396,-0.002635,0.001750,0.249994,0,0);-ms-transform:matrix(0.376396,-0.002635,0.001750,0.249994,0,0);-webkit-transform:matrix(0.376396,-0.002635,0.001750,0.249994,0,0);}
.m12a_c00305{transform:matrix(0.427380,-0.002992,0.001750,0.249994,0,0);-ms-transform:matrix(0.427380,-0.002992,0.001750,0.249994,0,0);-webkit-transform:matrix(0.427380,-0.002992,0.001750,0.249994,0,0);}
.m1_c00305{transform:matrix(0.450071,-0.003601,0.002000,0.249992,0,0);-ms-transform:matrix(0.450071,-0.003601,0.002000,0.249992,0,0);-webkit-transform:matrix(0.450071,-0.003601,0.002000,0.249992,0,0);}
.m103_c00305{transform:matrix(0.509008,-0.003563,0.001750,0.249994,0,0);-ms-transform:matrix(0.509008,-0.003563,0.001750,0.249994,0,0);-webkit-transform:matrix(0.509008,-0.003563,0.001750,0.249994,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;}
.fs1_c00305{font-size:22.050000px;}
.fs8_c00305{font-size:60.901492px;}
.fs4_c00305{font-size:63.001543px;}
.fs9_c00305{font-size:65.101595px;}
.fsa_c00305{font-size:66.151621px;}
.fs7_c00305{font-size:67.201646px;}
.fs5_c00305{font-size:68.251672px;}
.fs6_c00305{font-size:69.301698px;}
.fs3_c00305{font-size:70.351724px;}
.fs2_c00305{font-size:71.401749px;}
.fsc_c00305{font-size:73.500000px;}
.fsb_c00305{font-size:73.501801px;}
.fs0_c00305{font-size:103.953326px;}
.y0_c00305{bottom:0.000000px;}
.y159_c00305{bottom:167.661000px;}
.y157_c00305{bottom:189.366205px;}
.y156_c00305{bottom:189.366306px;}
.y155_c00305{bottom:189.366516px;}
.y158_c00305{bottom:189.366795px;}
.y152_c00305{bottom:189.366927px;}
.y154_c00305{bottom:189.367176px;}
.y153_c00305{bottom:189.367336px;}
.y151_c00305{bottom:189.367447px;}
.y14c_c00305{bottom:189.367498px;}
.y150_c00305{bottom:189.367788px;}
.y14f_c00305{bottom:189.367818px;}
.y14d_c00305{bottom:189.368038px;}
.y14e_c00305{bottom:189.368188px;}
.y14b_c00305{bottom:212.060778px;}
.y14a_c00305{bottom:212.060898px;}
.y146_c00305{bottom:212.060929px;}
.y141_c00305{bottom:212.060991px;}
.y140_c00305{bottom:212.061121px;}
.y149_c00305{bottom:212.061268px;}
.y13f_c00305{bottom:212.061331px;}
.y13e_c00305{bottom:212.061342px;}
.y142_c00305{bottom:212.061471px;}
.y147_c00305{bottom:212.061489px;}
.y145_c00305{bottom:212.061510px;}
.y144_c00305{bottom:212.061900px;}
.y143_c00305{bottom:212.061910px;}
.y148_c00305{bottom:212.061958px;}
.y135_c00305{bottom:235.032735px;}
.y13d_c00305{bottom:235.033002px;}
.y13b_c00305{bottom:235.033282px;}
.y136_c00305{bottom:235.033395px;}
.y13c_c00305{bottom:235.033492px;}
.y139_c00305{bottom:235.033663px;}
.y13a_c00305{bottom:235.033803px;}
.y138_c00305{bottom:235.033914px;}
.y137_c00305{bottom:235.034094px;}
.y12a_c00305{bottom:258.492298px;}
.y12b_c00305{bottom:258.493038px;}
.y12e_c00305{bottom:258.493567px;}
.y12c_c00305{bottom:258.493608px;}
.y131_c00305{bottom:258.493846px;}
.y130_c00305{bottom:258.493917px;}
.y133_c00305{bottom:258.493986px;}
.y12f_c00305{bottom:258.494077px;}
.y132_c00305{bottom:258.494176px;}
.y12d_c00305{bottom:258.494257px;}
.y134_c00305{bottom:258.494466px;}
.y120_c00305{bottom:281.475571px;}
.y121_c00305{bottom:281.476201px;}
.y11f_c00305{bottom:281.476261px;}
.y122_c00305{bottom:281.476281px;}
.y125_c00305{bottom:281.476309px;}
.y123_c00305{bottom:281.476330px;}
.y126_c00305{bottom:281.476369px;}
.y11e_c00305{bottom:281.476482px;}
.y124_c00305{bottom:281.476560px;}
.y129_c00305{bottom:281.476708px;}
.y128_c00305{bottom:281.476768px;}
.y127_c00305{bottom:281.476929px;}
.y113_c00305{bottom:304.594786px;}
.y11c_c00305{bottom:304.594803px;}
.y117_c00305{bottom:304.594915px;}
.y11d_c00305{bottom:304.595302px;}
.y11b_c00305{bottom:304.595383px;}
.y114_c00305{bottom:304.595476px;}
.y116_c00305{bottom:304.595526px;}
.y115_c00305{bottom:304.595536px;}
.y118_c00305{bottom:304.595595px;}
.y11a_c00305{bottom:304.596084px;}
.y119_c00305{bottom:304.596334px;}
.y106_c00305{bottom:327.271740px;}
.y107_c00305{bottom:327.272029px;}
.y108_c00305{bottom:327.272179px;}
.y109_c00305{bottom:327.272619px;}
.y10a_c00305{bottom:327.273118px;}
.y10b_c00305{bottom:327.273408px;}
.y10c_c00305{bottom:327.273937px;}
.y10d_c00305{bottom:327.274347px;}
.y10e_c00305{bottom:327.274756px;}
.y10f_c00305{bottom:327.274906px;}
.y110_c00305{bottom:327.275196px;}
.y111_c00305{bottom:327.275785px;}
.y112_c00305{bottom:327.275905px;}
.yff_c00305{bottom:350.258491px;}
.y100_c00305{bottom:350.258721px;}
.yfe_c00305{bottom:350.259132px;}
.yfa_c00305{bottom:350.259213px;}
.yfc_c00305{bottom:350.259322px;}
.y101_c00305{bottom:350.259460px;}
.yfb_c00305{bottom:350.259633px;}
.yf9_c00305{bottom:350.259793px;}
.yfd_c00305{bottom:350.259832px;}
.y102_c00305{bottom:350.259880px;}
.y103_c00305{bottom:350.260000px;}
.y105_c00305{bottom:350.260620px;}
.y104_c00305{bottom:350.260680px;}
.yef_c00305{bottom:373.741297px;}
.yf2_c00305{bottom:373.741437px;}
.yee_c00305{bottom:373.741518px;}
.yf4_c00305{bottom:373.741566px;}
.yf1_c00305{bottom:373.741598px;}
.yf3_c00305{bottom:373.741637px;}
.yf0_c00305{bottom:373.741717px;}
.yf5_c00305{bottom:373.741896px;}
.yf6_c00305{bottom:373.742425px;}
.yf7_c00305{bottom:373.742535px;}
.yf8_c00305{bottom:373.742764px;}
.ye4_c00305{bottom:397.229652px;}
.ye7_c00305{bottom:397.229721px;}
.ye5_c00305{bottom:397.229942px;}
.ye6_c00305{bottom:397.230152px;}
.ye3_c00305{bottom:397.230263px;}
.ye8_c00305{bottom:397.230431px;}
.ye9_c00305{bottom:397.230900px;}
.yea_c00305{bottom:397.231550px;}
.yeb_c00305{bottom:397.232019px;}
.yec_c00305{bottom:397.232289px;}
.yed_c00305{bottom:397.232649px;}
.yd7_c00305{bottom:420.621697px;}
.yd8_c00305{bottom:420.622448px;}
.yda_c00305{bottom:420.622516px;}
.ydd_c00305{bottom:420.622525px;}
.ydb_c00305{bottom:420.622776px;}
.ydc_c00305{bottom:420.622806px;}
.yde_c00305{bottom:420.622995px;}
.yd9_c00305{bottom:420.623187px;}
.ye0_c00305{bottom:420.623364px;}
.ye1_c00305{bottom:420.623634px;}
.ydf_c00305{bottom:420.623705px;}
.ye2_c00305{bottom:420.624194px;}
.yd3_c00305{bottom:443.365638px;}
.yd4_c00305{bottom:443.365657px;}
.yd6_c00305{bottom:443.365947px;}
.yd1_c00305{bottom:443.366039px;}
.ycf_c00305{bottom:443.366089px;}
.yd5_c00305{bottom:443.366107px;}
.yd2_c00305{bottom:443.366188px;}
.yd0_c00305{bottom:443.366229px;}
.ycc_c00305{bottom:443.366291px;}
.ycb_c00305{bottom:443.366661px;}
.ycd_c00305{bottom:443.366730px;}
.yce_c00305{bottom:443.366780px;}
.yca_c00305{bottom:466.286511px;}
.yc6_c00305{bottom:466.286622px;}
.yc5_c00305{bottom:466.286753px;}
.yc7_c00305{bottom:466.286892px;}
.yc4_c00305{bottom:466.287183px;}
.yc9_c00305{bottom:466.287212px;}
.yc2_c00305{bottom:466.287264px;}
.yc3_c00305{bottom:466.287284px;}
.ybe_c00305{bottom:466.287345px;}
.yc1_c00305{bottom:466.287365px;}
.yc8_c00305{bottom:466.287572px;}
.ybf_c00305{bottom:466.287695px;}
.yc0_c00305{bottom:466.288025px;}
.yba_c00305{bottom:488.998826px;}
.yb2_c00305{bottom:488.998977px;}
.yb9_c00305{bottom:488.999006px;}
.yb4_c00305{bottom:488.999097px;}
.ybd_c00305{bottom:488.999135px;}
.ybb_c00305{bottom:488.999186px;}
.yb1_c00305{bottom:488.999217px;}
.ybc_c00305{bottom:488.999235px;}
.yb3_c00305{bottom:488.999547px;}
.yb8_c00305{bottom:488.999556px;}
.yb6_c00305{bottom:488.999676px;}
.yb5_c00305{bottom:488.999837px;}
.yb7_c00305{bottom:489.000186px;}
.yb0_c00305{bottom:512.158118px;}
.ya5_c00305{bottom:512.158451px;}
.yaf_c00305{bottom:512.158478px;}
.yae_c00305{bottom:512.158638px;}
.ya6_c00305{bottom:512.158800px;}
.ya7_c00305{bottom:512.158830px;}
.yac_c00305{bottom:512.158888px;}
.ya9_c00305{bottom:512.158940px;}
.yad_c00305{bottom:512.159009px;}
.ya8_c00305{bottom:512.159270px;}
.yab_c00305{bottom:512.159349px;}
.yaa_c00305{bottom:512.159510px;}
.y9a_c00305{bottom:535.109844px;}
.y9c_c00305{bottom:535.110554px;}
.y9b_c00305{bottom:535.110584px;}
.y9d_c00305{bottom:535.110903px;}
.ya4_c00305{bottom:535.110951px;}
.y9e_c00305{bottom:535.111133px;}
.ya3_c00305{bottom:535.111281px;}
.ya2_c00305{bottom:535.111532px;}
.y9f_c00305{bottom:535.111752px;}
.ya1_c00305{bottom:535.111922px;}
.ya0_c00305{bottom:535.112072px;}
.y98_c00305{bottom:558.384934px;}
.y99_c00305{bottom:558.385085px;}
.y97_c00305{bottom:558.385185px;}
.y93_c00305{bottom:558.385476px;}
.y90_c00305{bottom:558.385477px;}
.y8f_c00305{bottom:558.385578px;}
.y92_c00305{bottom:558.385637px;}
.y96_c00305{bottom:558.385646px;}
.y91_c00305{bottom:558.385827px;}
.y94_c00305{bottom:558.385926px;}
.y8e_c00305{bottom:558.386219px;}
.y8d_c00305{bottom:558.386338px;}
.y95_c00305{bottom:558.386366px;}
.y82_c00305{bottom:581.369562px;}
.y87_c00305{bottom:581.370150px;}
.y84_c00305{bottom:581.370212px;}
.y83_c00305{bottom:581.370301px;}
.y86_c00305{bottom:581.370611px;}
.y85_c00305{bottom:581.370681px;}
.y88_c00305{bottom:581.370709px;}
.y89_c00305{bottom:581.371100px;}
.y8a_c00305{bottom:581.371569px;}
.y8c_c00305{bottom:581.371588px;}
.y8b_c00305{bottom:581.372219px;}
.y74_c00305{bottom:605.037787px;}
.y7a_c00305{bottom:605.037876px;}
.y77_c00305{bottom:605.037916px;}
.y76_c00305{bottom:605.038167px;}
.y78_c00305{bottom:605.038186px;}
.y79_c00305{bottom:605.038307px;}
.y7b_c00305{bottom:605.038405px;}
.y7d_c00305{bottom:605.038515px;}
.y75_c00305{bottom:605.038537px;}
.y7c_c00305{bottom:605.038845px;}
.y7e_c00305{bottom:605.039014px;}
.y81_c00305{bottom:605.039174px;}
.y7f_c00305{bottom:605.039634px;}
.y80_c00305{bottom:605.039683px;}
.y70_c00305{bottom:627.986218px;}
.y6f_c00305{bottom:627.986369px;}
.y6c_c00305{bottom:627.986389px;}
.y6e_c00305{bottom:627.986559px;}
.y6b_c00305{bottom:627.986680px;}
.y68_c00305{bottom:627.986751px;}
.y69_c00305{bottom:627.986871px;}
.y71_c00305{bottom:627.986898px;}
.y6d_c00305{bottom:627.987019px;}
.y6a_c00305{bottom:627.987310px;}
.y72_c00305{bottom:627.987318px;}
.y73_c00305{bottom:627.987488px;}
.y5b_c00305{bottom:650.641492px;}
.y5c_c00305{bottom:650.641972px;}
.y5d_c00305{bottom:650.642152px;}
.y5f_c00305{bottom:650.642172px;}
.y5e_c00305{bottom:650.642472px;}
.y60_c00305{bottom:650.642592px;}
.y61_c00305{bottom:650.642982px;}
.y62_c00305{bottom:650.643061px;}
.y63_c00305{bottom:650.643392px;}
.y64_c00305{bottom:650.643741px;}
.y65_c00305{bottom:650.643791px;}
.y66_c00305{bottom:650.643900px;}
.y67_c00305{bottom:650.644380px;}
.y55_c00305{bottom:673.882656px;}
.y56_c00305{bottom:673.883305px;}
.y54_c00305{bottom:673.883346px;}
.y57_c00305{bottom:673.883524px;}
.y58_c00305{bottom:673.883944px;}
.y53_c00305{bottom:673.884076px;}
.y59_c00305{bottom:673.884514px;}
.y5a_c00305{bottom:673.884973px;}
.y48_c00305{bottom:697.245901px;}
.y4a_c00305{bottom:697.246131px;}
.y49_c00305{bottom:697.246581px;}
.y4b_c00305{bottom:697.246810px;}
.y4c_c00305{bottom:697.247479px;}
.y4e_c00305{bottom:697.247959px;}
.y4d_c00305{bottom:697.248019px;}
.y4f_c00305{bottom:697.248219px;}
.y50_c00305{bottom:697.248268px;}
.y51_c00305{bottom:697.248768px;}
.y52_c00305{bottom:697.249327px;}
.y43_c00305{bottom:719.920842px;}
.y42_c00305{bottom:719.921302px;}
.y44_c00305{bottom:719.921502px;}
.y41_c00305{bottom:719.921692px;}
.y46_c00305{bottom:719.921841px;}
.y45_c00305{bottom:719.921851px;}
.y40_c00305{bottom:719.922273px;}
.y47_c00305{bottom:719.922400px;}
.y3f_c00305{bottom:719.922663px;}
.y3e_c00305{bottom:719.923123px;}
.y3d_c00305{bottom:719.923684px;}
.y3a_c00305{bottom:742.604554px;}
.y3b_c00305{bottom:742.604705px;}
.y3c_c00305{bottom:742.604953px;}
.y38_c00305{bottom:742.604965px;}
.y39_c00305{bottom:742.605015px;}
.y33_c00305{bottom:742.605057px;}
.y37_c00305{bottom:742.605175px;}
.y32_c00305{bottom:742.605177px;}
.y34_c00305{bottom:742.605466px;}
.y36_c00305{bottom:742.605516px;}
.y35_c00305{bottom:742.606176px;}
.y31_c00305{bottom:765.520846px;}
.y30_c00305{bottom:765.521176px;}
.y2f_c00305{bottom:765.521847px;}
.y2e_c00305{bottom:765.522477px;}
.y2d_c00305{bottom:765.522697px;}
.y2c_c00305{bottom:765.523248px;}
.y29_c00305{bottom:765.523279px;}
.y28_c00305{bottom:765.523680px;}
.y2a_c00305{bottom:765.523689px;}
.y2b_c00305{bottom:765.523798px;}
.y1d_c00305{bottom:787.047065px;}
.y1e_c00305{bottom:787.341909px;}
.y1f_c00305{bottom:787.704177px;}
.y20_c00305{bottom:788.086486px;}
.y21_c00305{bottom:788.414529px;}
.y22_c00305{bottom:788.723788px;}
.y23_c00305{bottom:788.967337px;}
.y24_c00305{bottom:789.315159px;}
.y25_c00305{bottom:789.863904px;}
.y26_c00305{bottom:790.091043px;}
.y27_c00305{bottom:790.477479px;}
.y17_c00305{bottom:811.182876px;}
.y1c_c00305{bottom:811.182943px;}
.y18_c00305{bottom:811.182985px;}
.y1b_c00305{bottom:811.183344px;}
.y16_c00305{bottom:811.183456px;}
.y14_c00305{bottom:811.183647px;}
.y19_c00305{bottom:811.183665px;}
.y1a_c00305{bottom:811.183954px;}
.y15_c00305{bottom:811.184157px;}
.y8_c00305{bottom:832.950000px;}
.y9_c00305{bottom:833.144638px;}
.ya_c00305{bottom:833.329869px;}
.yb_c00305{bottom:833.787302px;}
.yc_c00305{bottom:834.316449px;}
.yd_c00305{bottom:834.467701px;}
.ye_c00305{bottom:834.634053px;}
.yf_c00305{bottom:834.936411px;}
.y10_c00305{bottom:835.348378px;}
.y11_c00305{bottom:835.520431px;}
.y12_c00305{bottom:835.845280px;}
.y13_c00305{bottom:836.034511px;}
.y7_c00305{bottom:857.790000px;}
.y1_c00305{bottom:878.041500px;}
.y2_c00305{bottom:878.458488px;}
.y3_c00305{bottom:879.493392px;}
.y4_c00305{bottom:879.871140px;}
.y5_c00305{bottom:880.171320px;}
.y6_c00305{bottom:880.584036px;}
.h3_c00305{height:22.050000px;}
.ha_c00305{height:60.901492px;}
.h6_c00305{height:63.001543px;}
.hb_c00305{height:65.101595px;}
.hc_c00305{height:66.151621px;}
.h9_c00305{height:67.201646px;}
.h7_c00305{height:68.251672px;}
.h8_c00305{height:69.301698px;}
.h5_c00305{height:70.351724px;}
.h4_c00305{height:71.401749px;}
.he_c00305{height:73.500000px;}
.hd_c00305{height:73.501801px;}
.h2_c00305{height:103.953326px;}
.h0_c00305{height:1008.450000px;}
.h1_c00305{height:1008.750000px;}
.w0_c00305{width:696.000000px;}
.x0_c00305{left:0.000000px;}
.x6d_c00305{left:141.752633px;}
.xa7_c00305{left:148.774791px;}
.x77_c00305{left:151.202523px;}
.x64_c00305{left:152.552787px;}
.x46_c00305{left:153.629460px;}
.x3e_c00305{left:154.978836px;}
.x1_c00305{left:156.463500px;}
.xc2_c00305{left:158.220000px;}
.x7_c00305{left:159.300000px;}
.x96_c00305{left:172.805454px;}
.x5b_c00305{left:173.884658px;}
.x47_c00305{left:175.770542px;}
.xbd_c00305{left:177.937407px;}
.xb8_c00305{left:180.097371px;}
.x2a_c00305{left:181.710623px;}
.x8_c00305{left:184.231500px;}
.x13_c00305{left:186.030804px;}
.x93_c00305{left:188.196009px;}
.xc3_c00305{left:190.080000px;}
.x48_c00305{left:192.511361px;}
.x1a_c00305{left:193.734069px;}
.x3f_c00305{left:196.019352px;}
.x22_c00305{left:197.368470px;}
.x65_c00305{left:199.803597px;}
.xbe_c00305{left:200.888531px;}
.x6e_c00305{left:202.504115px;}
.xb4_c00305{left:204.393348px;}
.x81_c00305{left:207.363924px;}
.x2_c00305{left:208.587000px;}
.x9_c00305{left:210.693000px;}
.x78_c00305{left:211.953995px;}
.x8d_c00305{left:213.308798px;}
.x36_c00305{left:215.461770px;}
.x40_c00305{left:217.350402px;}
.x66_c00305{left:218.434511px;}
.x97_c00305{left:220.056264px;}
.x9d_c00305{left:222.215117px;}
.xc4_c00305{left:224.640000px;}
.x51_c00305{left:226.265591px;}
.x2b_c00305{left:229.771475px;}
.x79_c00305{left:231.664961px;}
.xa3_c00305{left:232.746540px;}
.xb2_c00305{left:237.604605px;}
.x1b_c00305{left:239.057754px;}
.x37_c00305{left:241.113030px;}
.x5c_c00305{left:244.085102px;}
.x49_c00305{left:245.702465px;}
.x52_c00305{left:248.676693px;}
.x2f_c00305{left:254.882474px;}
.x41_c00305{left:256.230803px;}
.xa4_c00305{left:257.587758px;}
.x14_c00305{left:261.363000px;}
.x82_c00305{left:262.715133px;}
.x4a_c00305{left:267.303525px;}
.x5d_c00305{left:269.196330px;}
.xc5_c00305{left:271.080000px;}
.x23_c00305{left:272.430645px;}
.x38_c00305{left:273.783126px;}
.xa_c00305{left:276.040500px;}
.x9e_c00305{left:281.616525px;}
.x42_c00305{left:283.232126px;}
.xa8_c00305{left:284.858459px;}
.x1c_c00305{left:286.815918px;}
.x4b_c00305{left:288.364554px;}
.x83_c00305{left:290.526498px;}
.x88_c00305{left:292.959723px;}
.x30_c00305{left:294.032895px;}
.x6f_c00305{left:295.115651px;}
.x2c_c00305{left:296.733251px;}
.x5e_c00305{left:298.357758px;}
.x98_c00305{left:300.787223px;}
.x9f_c00305{left:305.647701px;}
.x67_c00305{left:306.995847px;}
.xb9_c00305{left:311.320797px;}
.x4c_c00305{left:315.635888px;}
.x7a_c00305{left:319.147745px;}
.x31_c00305{left:320.764208px;}
.x89_c00305{left:324.009746px;}
.x15_c00305{left:325.354639px;}
.x1d_c00305{left:327.893135px;}
.x5f_c00305{left:331.297875px;}
.xb5_c00305{left:334.538222px;}
.xc6_c00305{left:335.880000px;}
.x3_c00305{left:337.950000px;}
.x24_c00305{left:342.092558px;}
.x70_c00305{left:345.876639px;}
.xb_c00305{left:351.633000px;}
.x8a_c00305{left:353.441184px;}
.xb0_c00305{left:357.219138px;}
.x53_c00305{left:358.569080px;}
.x68_c00305{left:359.646930px;}
.x8e_c00305{left:361.543064px;}
.x7b_c00305{left:363.968439px;}
.x1e_c00305{left:366.501362px;}
.xc_c00305{left:373.240500px;}
.x54_c00305{left:376.659962px;}
.x4d_c00305{left:378.007443px;}
.x16_c00305{left:381.515890px;}
.xa9_c00305{left:382.600257px;}
.x39_c00305{left:383.675502px;}
.x4_c00305{left:385.168500px;}
.xad_c00305{left:388.539432px;}
.x71_c00305{left:390.427323px;}
.x84_c00305{left:392.589996px;}
.x8f_c00305{left:393.673139px;}
.xd_c00305{left:397.005000px;}
.x25_c00305{left:399.873893px;}
.xba_c00305{left:401.503718px;}
.x43_c00305{left:403.114995px;}
.x4e_c00305{left:404.198724px;}
.xc7_c00305{left:406.080000px;}
.x7c_c00305{left:409.059144px;}
.x32_c00305{left:411.487160px;}
.xaa_c00305{left:413.920290px;}
.x55_c00305{left:415.810383px;}
.x72_c00305{left:418.778709px;}
.x94_c00305{left:420.671402px;}
.x5_c00305{left:422.691000px;}
.x90_c00305{left:426.613256px;}
.x69_c00305{left:430.658906px;}
.x44_c00305{left:433.626486px;}
.x2d_c00305{left:438.217191px;}
.xe_c00305{left:440.199000px;}
.x26_c00305{left:444.154566px;}
.x85_c00305{left:445.241079px;}
.x7d_c00305{left:448.749587px;}
.x33_c00305{left:450.637581px;}
.x99_c00305{left:453.611709px;}
.xa0_c00305{left:454.690499px;}
.x6a_c00305{left:457.930239px;}
.xa5_c00305{left:459.283139px;}
.x73_c00305{left:460.629257px;}
.x3a_c00305{left:461.707824px;}
.xbb_c00305{left:464.955326px;}
.x56_c00305{left:466.571372px;}
.x17_c00305{left:468.188632px;}
.x6_c00305{left:474.280500px;}
.x34_c00305{left:476.018820px;}
.x4f_c00305{left:478.180847px;}
.x7e_c00305{left:479.531099px;}
.xbf_c00305{left:482.234828px;}
.x57_c00305{left:484.122233px;}
.xb6_c00305{left:485.202603px;}
.x74_c00305{left:488.170611px;}
.x9a_c00305{left:493.572162px;}
.xf_c00305{left:499.051500px;}
.x27_c00305{left:501.125859px;}
.x3b_c00305{left:503.288361px;}
.x2e_c00305{left:504.368936px;}
.xae_c00305{left:507.612260px;}
.x1f_c00305{left:509.016864px;}
.xc0_c00305{left:512.206298px;}
.xbc_c00305{left:516.526356px;}
.x50_c00305{left:519.761384px;}
.x60_c00305{left:521.112668px;}
.x10_c00305{left:523.630500px;}
.xb1_c00305{left:525.971412px;}
.x18_c00305{left:527.590041px;}
.x7f_c00305{left:529.212035px;}
.x58_c00305{left:530.292990px;}
.x9b_c00305{left:534.882689px;}
.x91_c00305{left:536.235621px;}
.x20_c00305{left:537.393664px;}
.xab_c00305{left:538.394880px;}
.x75_c00305{left:540.821694px;}
.xc1_c00305{left:544.336373px;}
.x3c_c00305{left:546.218961px;}
.xb3_c00305{left:548.652341px;}
.x45_c00305{left:550.269198px;}
.x59_c00305{left:551.354019px;}
.x61_c00305{left:552.702711px;}
.x80_c00305{left:557.023400px;}
.x8b_c00305{left:559.458285px;}
.x95_c00305{left:564.045426px;}
.x86_c00305{left:566.474022px;}
.x11_c00305{left:570.037500px;}
.x6b_c00305{left:572.952867px;}
.x35_c00305{left:577.000766px;}
.xa6_c00305{left:579.166008px;}
.xa1_c00305{left:581.323694px;}
.xac_c00305{left:584.565638px;}
.x21_c00305{left:585.741329px;}
.x87_c00305{left:586.995030px;}
.x3d_c00305{left:590.229614px;}
.x92_c00305{left:591.586841px;}
.x28_c00305{left:592.658853px;}
.x62_c00305{left:594.283248px;}
.x6c_c00305{left:595.363970px;}
.x12_c00305{left:597.070500px;}
.xb7_c00305{left:598.606658px;}
.x76_c00305{left:599.953092px;}
.xa2_c00305{left:601.304670px;}
.x9c_c00305{left:604.004570px;}
.x8c_c00305{left:605.089022px;}
.xaf_c00305{left:606.974121px;}
.x5a_c00305{left:608.595323px;}
.x19_c00305{left:611.021136px;}
.x63_c00305{left:618.854456px;}
.x29_c00305{left:620.470218px;}
.xc8_c00305{left:661.500000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fs1_c00305{font-size:19.600000pt;}
.fs8_c00305{font-size:54.134660pt;}
.fs4_c00305{font-size:56.001372pt;}
.fs9_c00305{font-size:57.868084pt;}
.fsa_c00305{font-size:58.801441pt;}
.fs7_c00305{font-size:59.734797pt;}
.fs5_c00305{font-size:60.668153pt;}
.fs6_c00305{font-size:61.601509pt;}
.fs3_c00305{font-size:62.534865pt;}
.fs2_c00305{font-size:63.468222pt;}
.fsc_c00305{font-size:65.333333pt;}
.fsb_c00305{font-size:65.334934pt;}
.fs0_c00305{font-size:92.402957pt;}
.y0_c00305{bottom:0.000000pt;}
.y159_c00305{bottom:149.032000pt;}
.y157_c00305{bottom:168.325516pt;}
.y156_c00305{bottom:168.325605pt;}
.y155_c00305{bottom:168.325792pt;}
.y158_c00305{bottom:168.326040pt;}
.y152_c00305{bottom:168.326157pt;}
.y154_c00305{bottom:168.326379pt;}
.y153_c00305{bottom:168.326521pt;}
.y151_c00305{bottom:168.326620pt;}
.y14c_c00305{bottom:168.326665pt;}
.y150_c00305{bottom:168.326923pt;}
.y14f_c00305{bottom:168.326949pt;}
.y14d_c00305{bottom:168.327145pt;}
.y14e_c00305{bottom:168.327279pt;}
.y14b_c00305{bottom:188.498469pt;}
.y14a_c00305{bottom:188.498576pt;}
.y146_c00305{bottom:188.498604pt;}
.y141_c00305{bottom:188.498659pt;}
.y140_c00305{bottom:188.498775pt;}
.y149_c00305{bottom:188.498905pt;}
.y13f_c00305{bottom:188.498961pt;}
.y13e_c00305{bottom:188.498971pt;}
.y142_c00305{bottom:188.499085pt;}
.y147_c00305{bottom:188.499101pt;}
.y145_c00305{bottom:188.499120pt;}
.y144_c00305{bottom:188.499467pt;}
.y143_c00305{bottom:188.499476pt;}
.y148_c00305{bottom:188.499519pt;}
.y135_c00305{bottom:208.917987pt;}
.y13d_c00305{bottom:208.918224pt;}
.y13b_c00305{bottom:208.918473pt;}
.y136_c00305{bottom:208.918573pt;}
.y13c_c00305{bottom:208.918660pt;}
.y139_c00305{bottom:208.918812pt;}
.y13a_c00305{bottom:208.918936pt;}
.y138_c00305{bottom:208.919035pt;}
.y137_c00305{bottom:208.919195pt;}
.y12a_c00305{bottom:229.770932pt;}
.y12b_c00305{bottom:229.771589pt;}
.y12e_c00305{bottom:229.772060pt;}
.y12c_c00305{bottom:229.772096pt;}
.y131_c00305{bottom:229.772308pt;}
.y130_c00305{bottom:229.772371pt;}
.y133_c00305{bottom:229.772432pt;}
.y12f_c00305{bottom:229.772513pt;}
.y132_c00305{bottom:229.772601pt;}
.y12d_c00305{bottom:229.772673pt;}
.y134_c00305{bottom:229.772859pt;}
.y120_c00305{bottom:250.200508pt;}
.y121_c00305{bottom:250.201068pt;}
.y11f_c00305{bottom:250.201121pt;}
.y122_c00305{bottom:250.201139pt;}
.y125_c00305{bottom:250.201164pt;}
.y123_c00305{bottom:250.201183pt;}
.y126_c00305{bottom:250.201217pt;}
.y11e_c00305{bottom:250.201317pt;}
.y124_c00305{bottom:250.201387pt;}
.y129_c00305{bottom:250.201519pt;}
.y128_c00305{bottom:250.201572pt;}
.y127_c00305{bottom:250.201715pt;}
.y113_c00305{bottom:270.750921pt;}
.y11c_c00305{bottom:270.750936pt;}
.y117_c00305{bottom:270.751036pt;}
.y11d_c00305{bottom:270.751380pt;}
.y11b_c00305{bottom:270.751452pt;}
.y114_c00305{bottom:270.751535pt;}
.y116_c00305{bottom:270.751579pt;}
.y115_c00305{bottom:270.751588pt;}
.y118_c00305{bottom:270.751640pt;}
.y11a_c00305{bottom:270.752075pt;}
.y119_c00305{bottom:270.752297pt;}
.y106_c00305{bottom:290.908213pt;}
.y107_c00305{bottom:290.908471pt;}
.y108_c00305{bottom:290.908604pt;}
.y109_c00305{bottom:290.908995pt;}
.y10a_c00305{bottom:290.909439pt;}
.y10b_c00305{bottom:290.909696pt;}
.y10c_c00305{bottom:290.910167pt;}
.y10d_c00305{bottom:290.910531pt;}
.y10e_c00305{bottom:290.910895pt;}
.y10f_c00305{bottom:290.911028pt;}
.y110_c00305{bottom:290.911285pt;}
.y111_c00305{bottom:290.911809pt;}
.y112_c00305{bottom:290.911916pt;}
.yff_c00305{bottom:311.340881pt;}
.y100_c00305{bottom:311.341085pt;}
.yfe_c00305{bottom:311.341451pt;}
.yfa_c00305{bottom:311.341523pt;}
.yfc_c00305{bottom:311.341620pt;}
.y101_c00305{bottom:311.341743pt;}
.yfb_c00305{bottom:311.341896pt;}
.yf9_c00305{bottom:311.342039pt;}
.yfd_c00305{bottom:311.342073pt;}
.y102_c00305{bottom:311.342116pt;}
.y103_c00305{bottom:311.342223pt;}
.y105_c00305{bottom:311.342773pt;}
.y104_c00305{bottom:311.342827pt;}
.yef_c00305{bottom:332.214487pt;}
.yf2_c00305{bottom:332.214611pt;}
.yee_c00305{bottom:332.214683pt;}
.yf4_c00305{bottom:332.214725pt;}
.yf1_c00305{bottom:332.214753pt;}
.yf3_c00305{bottom:332.214788pt;}
.yf0_c00305{bottom:332.214860pt;}
.yf5_c00305{bottom:332.215019pt;}
.yf6_c00305{bottom:332.215489pt;}
.yf7_c00305{bottom:332.215587pt;}
.yf8_c00305{bottom:332.215791pt;}
.ye4_c00305{bottom:353.093024pt;}
.ye7_c00305{bottom:353.093085pt;}
.ye5_c00305{bottom:353.093281pt;}
.ye6_c00305{bottom:353.093468pt;}
.ye3_c00305{bottom:353.093567pt;}
.ye8_c00305{bottom:353.093716pt;}
.ye9_c00305{bottom:353.094133pt;}
.yea_c00305{bottom:353.094711pt;}
.yeb_c00305{bottom:353.095128pt;}
.yec_c00305{bottom:353.095368pt;}
.yed_c00305{bottom:353.095688pt;}
.yd7_c00305{bottom:373.885953pt;}
.yd8_c00305{bottom:373.886620pt;}
.yda_c00305{bottom:373.886681pt;}
.ydd_c00305{bottom:373.886689pt;}
.ydb_c00305{bottom:373.886912pt;}
.ydc_c00305{bottom:373.886939pt;}
.yde_c00305{bottom:373.887107pt;}
.yd9_c00305{bottom:373.887277pt;}
.ye0_c00305{bottom:373.887435pt;}
.ye1_c00305{bottom:373.887675pt;}
.ydf_c00305{bottom:373.887737pt;}
.ye2_c00305{bottom:373.888172pt;}
.yd3_c00305{bottom:394.102789pt;}
.yd4_c00305{bottom:394.102807pt;}
.yd6_c00305{bottom:394.103064pt;}
.yd1_c00305{bottom:394.103145pt;}
.ycf_c00305{bottom:394.103191pt;}
.yd5_c00305{bottom:394.103207pt;}
.yd2_c00305{bottom:394.103279pt;}
.yd0_c00305{bottom:394.103315pt;}
.ycc_c00305{bottom:394.103369pt;}
.ycb_c00305{bottom:394.103699pt;}
.ycd_c00305{bottom:394.103760pt;}
.yce_c00305{bottom:394.103804pt;}
.yca_c00305{bottom:414.476899pt;}
.yc6_c00305{bottom:414.476997pt;}
.yc5_c00305{bottom:414.477113pt;}
.yc7_c00305{bottom:414.477237pt;}
.yc4_c00305{bottom:414.477496pt;}
.yc9_c00305{bottom:414.477521pt;}
.yc2_c00305{bottom:414.477568pt;}
.yc3_c00305{bottom:414.477585pt;}
.ybe_c00305{bottom:414.477640pt;}
.yc1_c00305{bottom:414.477657pt;}
.yc8_c00305{bottom:414.477841pt;}
.ybf_c00305{bottom:414.477951pt;}
.yc0_c00305{bottom:414.478244pt;}
.yba_c00305{bottom:434.665623pt;}
.yb2_c00305{bottom:434.665757pt;}
.yb9_c00305{bottom:434.665783pt;}
.yb4_c00305{bottom:434.665864pt;}
.ybd_c00305{bottom:434.665897pt;}
.ybb_c00305{bottom:434.665943pt;}
.yb1_c00305{bottom:434.665971pt;}
.ybc_c00305{bottom:434.665987pt;}
.yb3_c00305{bottom:434.666264pt;}
.yb8_c00305{bottom:434.666272pt;}
.yb6_c00305{bottom:434.666379pt;}
.yb5_c00305{bottom:434.666521pt;}
.yb7_c00305{bottom:434.666832pt;}
.yb0_c00305{bottom:455.251660pt;}
.ya5_c00305{bottom:455.251956pt;}
.yaf_c00305{bottom:455.251980pt;}
.yae_c00305{bottom:455.252123pt;}
.ya6_c00305{bottom:455.252267pt;}
.ya7_c00305{bottom:455.252293pt;}
.yac_c00305{bottom:455.252345pt;}
.ya9_c00305{bottom:455.252391pt;}
.yad_c00305{bottom:455.252452pt;}
.ya8_c00305{bottom:455.252684pt;}
.yab_c00305{bottom:455.252755pt;}
.yaa_c00305{bottom:455.252897pt;}
.y9a_c00305{bottom:475.653195pt;}
.y9c_c00305{bottom:475.653825pt;}
.y9b_c00305{bottom:475.653852pt;}
.y9d_c00305{bottom:475.654136pt;}
.ya4_c00305{bottom:475.654179pt;}
.y9e_c00305{bottom:475.654340pt;}
.ya3_c00305{bottom:475.654472pt;}
.ya2_c00305{bottom:475.654695pt;}
.y9f_c00305{bottom:475.654891pt;}
.ya1_c00305{bottom:475.655041pt;}
.ya0_c00305{bottom:475.655175pt;}
.y98_c00305{bottom:496.342164pt;}
.y99_c00305{bottom:496.342297pt;}
.y97_c00305{bottom:496.342387pt;}
.y93_c00305{bottom:496.342645pt;}
.y90_c00305{bottom:496.342647pt;}
.y8f_c00305{bottom:496.342736pt;}
.y92_c00305{bottom:496.342788pt;}
.y96_c00305{bottom:496.342796pt;}
.y91_c00305{bottom:496.342957pt;}
.y94_c00305{bottom:496.343045pt;}
.y8e_c00305{bottom:496.343305pt;}
.y8d_c00305{bottom:496.343412pt;}
.y95_c00305{bottom:496.343436pt;}
.y82_c00305{bottom:516.772944pt;}
.y87_c00305{bottom:516.773467pt;}
.y84_c00305{bottom:516.773521pt;}
.y83_c00305{bottom:516.773601pt;}
.y86_c00305{bottom:516.773876pt;}
.y85_c00305{bottom:516.773939pt;}
.y88_c00305{bottom:516.773964pt;}
.y89_c00305{bottom:516.774311pt;}
.y8a_c00305{bottom:516.774728pt;}
.y8c_c00305{bottom:516.774745pt;}
.y8b_c00305{bottom:516.775305pt;}
.y74_c00305{bottom:537.811367pt;}
.y7a_c00305{bottom:537.811445pt;}
.y77_c00305{bottom:537.811481pt;}
.y76_c00305{bottom:537.811704pt;}
.y78_c00305{bottom:537.811721pt;}
.y79_c00305{bottom:537.811828pt;}
.y7b_c00305{bottom:537.811916pt;}
.y7d_c00305{bottom:537.812013pt;}
.y75_c00305{bottom:537.812033pt;}
.y7c_c00305{bottom:537.812307pt;}
.y7e_c00305{bottom:537.812457pt;}
.y81_c00305{bottom:537.812599pt;}
.y7f_c00305{bottom:537.813008pt;}
.y80_c00305{bottom:537.813052pt;}
.y70_c00305{bottom:558.209972pt;}
.y6f_c00305{bottom:558.210105pt;}
.y6c_c00305{bottom:558.210124pt;}
.y6e_c00305{bottom:558.210275pt;}
.y6b_c00305{bottom:558.210383pt;}
.y68_c00305{bottom:558.210445pt;}
.y69_c00305{bottom:558.210552pt;}
.y71_c00305{bottom:558.210576pt;}
.y6d_c00305{bottom:558.210684pt;}
.y6a_c00305{bottom:558.210943pt;}
.y72_c00305{bottom:558.210949pt;}
.y73_c00305{bottom:558.211100pt;}
.y5b_c00305{bottom:578.347993pt;}
.y5c_c00305{bottom:578.348420pt;}
.y5d_c00305{bottom:578.348580pt;}
.y5f_c00305{bottom:578.348597pt;}
.y5e_c00305{bottom:578.348864pt;}
.y60_c00305{bottom:578.348971pt;}
.y61_c00305{bottom:578.349317pt;}
.y62_c00305{bottom:578.349388pt;}
.y63_c00305{bottom:578.349681pt;}
.y64_c00305{bottom:578.349992pt;}
.y65_c00305{bottom:578.350036pt;}
.y66_c00305{bottom:578.350133pt;}
.y67_c00305{bottom:578.350560pt;}
.y55_c00305{bottom:599.006805pt;}
.y56_c00305{bottom:599.007383pt;}
.y54_c00305{bottom:599.007419pt;}
.y57_c00305{bottom:599.007577pt;}
.y58_c00305{bottom:599.007951pt;}
.y53_c00305{bottom:599.008068pt;}
.y59_c00305{bottom:599.008457pt;}
.y5a_c00305{bottom:599.008865pt;}
.y48_c00305{bottom:619.774135pt;}
.y4a_c00305{bottom:619.774339pt;}
.y49_c00305{bottom:619.774739pt;}
.y4b_c00305{bottom:619.774943pt;}
.y4c_c00305{bottom:619.775537pt;}
.y4e_c00305{bottom:619.775964pt;}
.y4d_c00305{bottom:619.776017pt;}
.y4f_c00305{bottom:619.776195pt;}
.y50_c00305{bottom:619.776239pt;}
.y51_c00305{bottom:619.776683pt;}
.y52_c00305{bottom:619.777180pt;}
.y43_c00305{bottom:639.929637pt;}
.y42_c00305{bottom:639.930047pt;}
.y44_c00305{bottom:639.930224pt;}
.y41_c00305{bottom:639.930393pt;}
.y46_c00305{bottom:639.930525pt;}
.y45_c00305{bottom:639.930535pt;}
.y40_c00305{bottom:639.930909pt;}
.y47_c00305{bottom:639.931023pt;}
.y3f_c00305{bottom:639.931256pt;}
.y3e_c00305{bottom:639.931665pt;}
.y3d_c00305{bottom:639.932164pt;}
.y3a_c00305{bottom:660.092937pt;}
.y3b_c00305{bottom:660.093071pt;}
.y3c_c00305{bottom:660.093292pt;}
.y38_c00305{bottom:660.093303pt;}
.y39_c00305{bottom:660.093347pt;}
.y33_c00305{bottom:660.093384pt;}
.y37_c00305{bottom:660.093489pt;}
.y32_c00305{bottom:660.093491pt;}
.y34_c00305{bottom:660.093748pt;}
.y36_c00305{bottom:660.093792pt;}
.y35_c00305{bottom:660.094379pt;}
.y31_c00305{bottom:680.462975pt;}
.y30_c00305{bottom:680.463268pt;}
.y2f_c00305{bottom:680.463864pt;}
.y2e_c00305{bottom:680.464424pt;}
.y2d_c00305{bottom:680.464620pt;}
.y2c_c00305{bottom:680.465109pt;}
.y29_c00305{bottom:680.465137pt;}
.y28_c00305{bottom:680.465493pt;}
.y2a_c00305{bottom:680.465501pt;}
.y2b_c00305{bottom:680.465599pt;}
.y1d_c00305{bottom:699.597391pt;}
.y1e_c00305{bottom:699.859475pt;}
.y1f_c00305{bottom:700.181491pt;}
.y20_c00305{bottom:700.521321pt;}
.y21_c00305{bottom:700.812915pt;}
.y22_c00305{bottom:701.087812pt;}
.y23_c00305{bottom:701.304300pt;}
.y24_c00305{bottom:701.613475pt;}
.y25_c00305{bottom:702.101248pt;}
.y26_c00305{bottom:702.303149pt;}
.y27_c00305{bottom:702.646648pt;}
.y17_c00305{bottom:721.051445pt;}
.y1c_c00305{bottom:721.051505pt;}
.y18_c00305{bottom:721.051543pt;}
.y1b_c00305{bottom:721.051861pt;}
.y16_c00305{bottom:721.051961pt;}
.y14_c00305{bottom:721.052131pt;}
.y19_c00305{bottom:721.052147pt;}
.y1a_c00305{bottom:721.052404pt;}
.y15_c00305{bottom:721.052584pt;}
.y8_c00305{bottom:740.400000pt;}
.y9_c00305{bottom:740.573012pt;}
.ya_c00305{bottom:740.737661pt;}
.yb_c00305{bottom:741.144268pt;}
.yc_c00305{bottom:741.614621pt;}
.yd_c00305{bottom:741.749068pt;}
.ye_c00305{bottom:741.896936pt;}
.yf_c00305{bottom:742.165699pt;}
.y10_c00305{bottom:742.531892pt;}
.y11_c00305{bottom:742.684828pt;}
.y12_c00305{bottom:742.973583pt;}
.y13_c00305{bottom:743.141788pt;}
.y7_c00305{bottom:762.480000pt;}
.y1_c00305{bottom:780.481333pt;}
.y2_c00305{bottom:780.851989pt;}
.y3_c00305{bottom:781.771904pt;}
.y4_c00305{bottom:782.107680pt;}
.y5_c00305{bottom:782.374507pt;}
.y6_c00305{bottom:782.741365pt;}
.h3_c00305{height:19.600000pt;}
.ha_c00305{height:54.134660pt;}
.h6_c00305{height:56.001372pt;}
.hb_c00305{height:57.868084pt;}
.hc_c00305{height:58.801441pt;}
.h9_c00305{height:59.734797pt;}
.h7_c00305{height:60.668153pt;}
.h8_c00305{height:61.601509pt;}
.h5_c00305{height:62.534865pt;}
.h4_c00305{height:63.468222pt;}
.he_c00305{height:65.333333pt;}
.hd_c00305{height:65.334934pt;}
.h2_c00305{height:92.402957pt;}
.h0_c00305{height:896.400000pt;}
.h1_c00305{height:896.666667pt;}
.w0_c00305{width:618.666667pt;}
.x0_c00305{left:0.000000pt;}
.x6d_c00305{left:126.002340pt;}
.xa7_c00305{left:132.244259pt;}
.x77_c00305{left:134.402243pt;}
.x64_c00305{left:135.602477pt;}
.x46_c00305{left:136.559520pt;}
.x3e_c00305{left:137.758965pt;}
.x1_c00305{left:139.078667pt;}
.xc2_c00305{left:140.640000pt;}
.x7_c00305{left:141.600000pt;}
.x96_c00305{left:153.604848pt;}
.x5b_c00305{left:154.564140pt;}
.x47_c00305{left:156.240481pt;}
.xbd_c00305{left:158.166584pt;}
.xb8_c00305{left:160.086552pt;}
.x2a_c00305{left:161.520553pt;}
.x8_c00305{left:163.761333pt;}
.x13_c00305{left:165.360715pt;}
.x93_c00305{left:167.285341pt;}
.xc3_c00305{left:168.960000pt;}
.x48_c00305{left:171.121209pt;}
.x1a_c00305{left:172.208061pt;}
.x3f_c00305{left:174.239424pt;}
.x22_c00305{left:175.438640pt;}
.x65_c00305{left:177.603197pt;}
.xbe_c00305{left:178.567583pt;}
.x6e_c00305{left:180.003657pt;}
.xb4_c00305{left:181.682976pt;}
.x81_c00305{left:184.323488pt;}
.x2_c00305{left:185.410667pt;}
.x9_c00305{left:187.282667pt;}
.x78_c00305{left:188.403551pt;}
.x8d_c00305{left:189.607820pt;}
.x36_c00305{left:191.521573pt;}
.x40_c00305{left:193.200357pt;}
.x66_c00305{left:194.164009pt;}
.x97_c00305{left:195.605568pt;}
.x9d_c00305{left:197.524548pt;}
.xc4_c00305{left:199.680000pt;}
.x51_c00305{left:201.124969pt;}
.x2b_c00305{left:204.241311pt;}
.x79_c00305{left:205.924409pt;}
.xa3_c00305{left:206.885813pt;}
.xb2_c00305{left:211.204093pt;}
.x1b_c00305{left:212.495781pt;}
.x37_c00305{left:214.322693pt;}
.x5c_c00305{left:216.964535pt;}
.x49_c00305{left:218.402191pt;}
.x52_c00305{left:221.045949pt;}
.x2f_c00305{left:226.562199pt;}
.x41_c00305{left:227.760713pt;}
.xa4_c00305{left:228.966896pt;}
.x14_c00305{left:232.322667pt;}
.x82_c00305{left:233.524563pt;}
.x4a_c00305{left:237.603133pt;}
.x5d_c00305{left:239.285627pt;}
.xc5_c00305{left:240.960000pt;}
.x23_c00305{left:242.160573pt;}
.x38_c00305{left:243.362779pt;}
.xa_c00305{left:245.369333pt;}
.x9e_c00305{left:250.325800pt;}
.x42_c00305{left:251.761889pt;}
.xa8_c00305{left:253.207519pt;}
.x1c_c00305{left:254.947483pt;}
.x4b_c00305{left:256.324048pt;}
.x83_c00305{left:258.245776pt;}
.x88_c00305{left:260.408643pt;}
.x30_c00305{left:261.362573pt;}
.x6f_c00305{left:262.325023pt;}
.x2c_c00305{left:263.762889pt;}
.x5e_c00305{left:265.206896pt;}
.x98_c00305{left:267.366420pt;}
.x9f_c00305{left:271.686845pt;}
.x67_c00305{left:272.885197pt;}
.xb9_c00305{left:276.729597pt;}
.x4c_c00305{left:280.565233pt;}
.x7a_c00305{left:283.686884pt;}
.x31_c00305{left:285.123740pt;}
.x89_c00305{left:288.008663pt;}
.x15_c00305{left:289.204124pt;}
.x1d_c00305{left:291.460564pt;}
.x5f_c00305{left:294.487000pt;}
.xb5_c00305{left:297.367308pt;}
.xc6_c00305{left:298.560000pt;}
.x3_c00305{left:300.400000pt;}
.x24_c00305{left:304.082273pt;}
.x70_c00305{left:307.445901pt;}
.xb_c00305{left:312.562667pt;}
.x8a_c00305{left:314.169941pt;}
.xb0_c00305{left:317.528123pt;}
.x53_c00305{left:318.728071pt;}
.x68_c00305{left:319.686160pt;}
.x8e_c00305{left:321.371612pt;}
.x7b_c00305{left:323.527501pt;}
.x1e_c00305{left:325.778988pt;}
.xc_c00305{left:331.769333pt;}
.x54_c00305{left:334.808855pt;}
.x4d_c00305{left:336.006616pt;}
.x16_c00305{left:339.125236pt;}
.xa9_c00305{left:340.089117pt;}
.x39_c00305{left:341.044891pt;}
.x4_c00305{left:342.372000pt;}
.xad_c00305{left:345.368384pt;}
.x71_c00305{left:347.046509pt;}
.x84_c00305{left:348.968885pt;}
.x8f_c00305{left:349.931679pt;}
.xd_c00305{left:352.893333pt;}
.x25_c00305{left:355.443460pt;}
.xba_c00305{left:356.892193pt;}
.x43_c00305{left:358.324440pt;}
.x4e_c00305{left:359.287755pt;}
.xc7_c00305{left:360.960000pt;}
.x7c_c00305{left:363.608128pt;}
.x32_c00305{left:365.766364pt;}
.xaa_c00305{left:367.929147pt;}
.x55_c00305{left:369.609229pt;}
.x72_c00305{left:372.247741pt;}
.x94_c00305{left:373.930135pt;}
.x5_c00305{left:375.725333pt;}
.x90_c00305{left:379.211783pt;}
.x69_c00305{left:382.807916pt;}
.x44_c00305{left:385.445765pt;}
.x2d_c00305{left:389.526392pt;}
.xe_c00305{left:391.288000pt;}
.x26_c00305{left:394.804059pt;}
.x85_c00305{left:395.769848pt;}
.x7d_c00305{left:398.888521pt;}
.x33_c00305{left:400.566739pt;}
.x99_c00305{left:403.210408pt;}
.xa0_c00305{left:404.169332pt;}
.x6a_c00305{left:407.049101pt;}
.xa5_c00305{left:408.251679pt;}
.x73_c00305{left:409.448228pt;}
.x3a_c00305{left:410.406955pt;}
.xbb_c00305{left:413.293623pt;}
.x56_c00305{left:414.730108pt;}
.x17_c00305{left:416.167673pt;}
.x6_c00305{left:421.582667pt;}
.x34_c00305{left:423.127840pt;}
.x4f_c00305{left:425.049641pt;}
.x7e_c00305{left:426.249865pt;}
.xbf_c00305{left:428.653180pt;}
.x57_c00305{left:430.330873pt;}
.xb6_c00305{left:431.291203pt;}
.x74_c00305{left:433.929432pt;}
.x9a_c00305{left:438.730811pt;}
.xf_c00305{left:443.601333pt;}
.x27_c00305{left:445.445208pt;}
.x3b_c00305{left:447.367432pt;}
.x2e_c00305{left:448.327943pt;}
.xae_c00305{left:451.210897pt;}
.x1f_c00305{left:452.459435pt;}
.xc0_c00305{left:455.294487pt;}
.xbc_c00305{left:459.134539pt;}
.x50_c00305{left:462.010119pt;}
.x60_c00305{left:463.211260pt;}
.x10_c00305{left:465.449333pt;}
.xb1_c00305{left:467.530144pt;}
.x18_c00305{left:468.968925pt;}
.x7f_c00305{left:470.410697pt;}
.x58_c00305{left:471.371547pt;}
.x9b_c00305{left:475.451279pt;}
.x91_c00305{left:476.653885pt;}
.x20_c00305{left:477.683257pt;}
.xab_c00305{left:478.573227pt;}
.x75_c00305{left:480.730395pt;}
.xc1_c00305{left:483.854553pt;}
.x3c_c00305{left:485.527965pt;}
.xb3_c00305{left:487.690969pt;}
.x45_c00305{left:489.128176pt;}
.x59_c00305{left:490.092461pt;}
.x61_c00305{left:491.291299pt;}
.x80_c00305{left:495.131911pt;}
.x8b_c00305{left:497.296253pt;}
.x95_c00305{left:501.373712pt;}
.x86_c00305{left:503.532464pt;}
.x11_c00305{left:506.700000pt;}
.x6b_c00305{left:509.291437pt;}
.x35_c00305{left:512.889569pt;}
.xa6_c00305{left:514.814229pt;}
.xa1_c00305{left:516.732172pt;}
.xac_c00305{left:519.613900pt;}
.x21_c00305{left:520.658959pt;}
.x87_c00305{left:521.773360pt;}
.x3d_c00305{left:524.648545pt;}
.x92_c00305{left:525.854969pt;}
.x28_c00305{left:526.807869pt;}
.x62_c00305{left:528.251776pt;}
.x6c_c00305{left:529.212417pt;}
.x12_c00305{left:530.729333pt;}
.xb7_c00305{left:532.094807pt;}
.x76_c00305{left:533.291637pt;}
.xa2_c00305{left:534.493040pt;}
.x9c_c00305{left:536.892951pt;}
.x8c_c00305{left:537.856908pt;}
.xaf_c00305{left:539.532552pt;}
.x5a_c00305{left:540.973620pt;}
.x19_c00305{left:543.129899pt;}
.x63_c00305{left:550.092849pt;}
.x29_c00305{left:551.529083pt;}
.xc8_c00305{left:588.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_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;}
.m7_c00306{transform:matrix(0.010535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010535,0.000000,0.000000,0.250000,0,0);}
.m4b_c00306{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);}
.m37_c00306{transform:matrix(0.118905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118905,0.000000,0.000000,0.250000,0,0);}
.md_c00306{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);}
.m46_c00306{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);}
.m5_c00306{transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00306{transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);}
.maa_c00306{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);}
.ma1_c00306{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);}
.mac_c00306{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);}
.m34_c00306{transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);}
.mb2_c00306{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);}
.m9d_c00306{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);}
.m39_c00306{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);}
.m51_c00306{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{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);}
.m4d_c00306{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);}
.mb1_c00306{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);}
.m0_c00306{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);}
.m38_c00306{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);}
.m12_c00306{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);}
.m6d_c00306{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);}
.m65_c00306{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);}
.m90_c00306{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);}
.m40_c00306{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);}
.m91_c00306{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);}
.m6_c00306{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);}
.m4c_c00306{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);}
.m49_c00306{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);}
.m53_c00306{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00306{transform:matrix(0.164680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164680,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{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);}
.mb3_c00306{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.m54_c00306{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);}
.m7e_c00306{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.mab_c00306{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);}
.m8c_c00306{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);}
.m10_c00306{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);}
.m97_c00306{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);}
.m47_c00306{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);}
.m6b_c00306{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);}
.m13_c00306{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);}
.m3e_c00306{transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{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);}
.m8f_c00306{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);}
.m35_c00306{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);}
.mb0_c00306{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{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);}
.m7f_c00306{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);}
.m9c_c00306{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);}
.mb6_c00306{transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);}
.m8d_c00306{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);}
.m68_c00306{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);}
.m73_c00306{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);}
.m76_c00306{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);}
.m67_c00306{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);}
.m72_c00306{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);}
.m9a_c00306{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);}
.m4e_c00306{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);}
.mb4_c00306{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);}
.m33_c00306{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);}
.m3b_c00306{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);}
.ma2_c00306{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);}
.m3f_c00306{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);}
.m69_c00306{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);}
.m92_c00306{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);}
.m41_c00306{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);}
.m80_c00306{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);}
.mb5_c00306{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);}
.m82_c00306{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);}
.m60_c00306{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);}
.m9_c00306{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);}
.m42_c00306{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);}
.m8b_c00306{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);}
.m83_c00306{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);}
.m85_c00306{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);}
.m26_c00306{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);}
.maf_c00306{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);}
.m96_c00306{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);}
.m87_c00306{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);}
.m2e_c00306{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);}
.m3a_c00306{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);}
.m2b_c00306{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);}
.m59_c00306{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);}
.m43_c00306{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);}
.m19_c00306{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);}
.m30_c00306{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);}
.m8e_c00306{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_c00306{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);}
.m5d_c00306{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);}
.m89_c00306{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);}
.m1a_c00306{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);}
.m16_c00306{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);}
.m7b_c00306{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);}
.m63_c00306{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);}
.m27_c00306{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);}
.m58_c00306{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);}
.m3d_c00306{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);}
.m28_c00306{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);}
.m75_c00306{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);}
.m88_c00306{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);}
.m9f_c00306{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);}
.mb8_c00306{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);}
.m99_c00306{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);}
.mc_c00306{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_c00306{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);}
.m2c_c00306{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);}
.m6e_c00306{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);}
.m24_c00306{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);}
.m3c_c00306{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);}
.m79_c00306{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);}
.m9b_c00306{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);}
.m71_c00306{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);}
.m93_c00306{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);}
.m6a_c00306{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);}
.m5c_c00306{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);}
.m98_c00306{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);}
.m1d_c00306{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);}
.m1e_c00306{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_c00306{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);}
.m4f_c00306{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);}
.m2d_c00306{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);}
.m36_c00306{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);}
.m1c_c00306{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);}
.m4a_c00306{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);}
.m66_c00306{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);}
.m50_c00306{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);}
.m64_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);}
.m5b_c00306{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);}
.m52_c00306{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);}
.m61_c00306{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);}
.ma7_c00306{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);}
.m62_c00306{transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222010,0.000000,0.000000,0.250000,0,0);}
.ma0_c00306{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);}
.m6c_c00306{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);}
.mb_c00306{transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);}
.m5a_c00306{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);}
.m57_c00306{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);}
.m22_c00306{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);}
.ma5_c00306{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);}
.m20_c00306{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);}
.mb7_c00306{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);}
.m4_c00306{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.237710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237710,0.000000,0.000000,0.250000,0,0);}
.m77_c00306{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);}
.m7c_c00306{transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);}
.m56_c00306{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);}
.m48_c00306{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.mae_c00306{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);}
.m81_c00306{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);}
.m2a_c00306{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);}
.m45_c00306{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.ma9_c00306{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);}
.m25_c00306{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);}
.m5f_c00306{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m95_c00306{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);}
.ma8_c00306{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{transform:matrix(0.256910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256910,0.000000,0.000000,0.250000,0,0);}
.me_c00306{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);}
.m84_c00306{transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262790,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{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);}
.m1f_c00306{transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{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);}
.m74_c00306{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.ma4_c00306{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);}
.m94_c00306{transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00306{transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);}
.m86_c00306{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);}
.m31_c00306{transform:matrix(0.293985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293985,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294630,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);}
.m55_c00306{transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310510,0.000000,0.000000,0.250000,0,0);}
.mad_c00306{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);}
.m78_c00306{transform:matrix(0.338615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338615,0.000000,0.000000,0.250000,0,0);}
.ma3_c00306{transform:matrix(0.342645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342645,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.389420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389420,0.000000,0.000000,0.250000,0,0);}
.m8a_c00306{transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403845,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.480495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480495,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.569540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569540,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;}
.fc0_c00306{color:transparent;}
.fs0_c00306{font-size:22.050000px;}
.fsd_c00306{font-size:26.250000px;}
.fsc_c00306{font-size:36.750000px;}
.fs6_c00306{font-size:64.050000px;}
.fsb_c00306{font-size:69.300000px;}
.fs9_c00306{font-size:70.350000px;}
.fs5_c00306{font-size:71.400000px;}
.fs7_c00306{font-size:72.450000px;}
.fs8_c00306{font-size:75.600000px;}
.fse_c00306{font-size:77.700000px;}
.fsa_c00306{font-size:82.950000px;}
.fs1_c00306{font-size:92.400000px;}
.fs3_c00306{font-size:144.900000px;}
.fs2_c00306{font-size:151.200000px;}
.fs4_c00306{font-size:191.100000px;}
.y0_c00306{bottom:0.000000px;}
.y23_c00306{bottom:427.677000px;}
.y22_c00306{bottom:485.703000px;}
.y21_c00306{bottom:508.774500px;}
.y20_c00306{bottom:532.596000px;}
.y1f_c00306{bottom:555.006000px;}
.y1e_c00306{bottom:578.157000px;}
.y1d_c00306{bottom:622.459500px;}
.y1c_c00306{bottom:631.260000px;}
.y1b_c00306{bottom:631.662000px;}
.y1a_c00306{bottom:647.005500px;}
.y19_c00306{bottom:669.486000px;}
.y18_c00306{bottom:692.848500px;}
.y17_c00306{bottom:715.785000px;}
.y16_c00306{bottom:738.720000px;}
.y15_c00306{bottom:761.607000px;}
.y14_c00306{bottom:784.194000px;}
.y7_c00306{bottom:806.490000px;}
.y8_c00306{bottom:806.691000px;}
.y9_c00306{bottom:806.919000px;}
.ya_c00306{bottom:807.411000px;}
.yb_c00306{bottom:807.526500px;}
.yc_c00306{bottom:807.943500px;}
.yd_c00306{bottom:808.345500px;}
.ye_c00306{bottom:808.477500px;}
.yf_c00306{bottom:808.753500px;}
.y10_c00306{bottom:808.927500px;}
.y11_c00306{bottom:809.107500px;}
.y12_c00306{bottom:809.397000px;}
.y13_c00306{bottom:809.587500px;}
.y6_c00306{bottom:831.330000px;}
.y4_c00306{bottom:874.314000px;}
.y5_c00306{bottom:903.690000px;}
.y3_c00306{bottom:916.621500px;}
.y2_c00306{bottom:934.935000px;}
.y1_c00306{bottom:943.920000px;}
.h2_c00306{height:22.050000px;}
.hf_c00306{height:26.250000px;}
.he_c00306{height:36.750000px;}
.h8_c00306{height:64.050000px;}
.hd_c00306{height:69.300000px;}
.hb_c00306{height:70.350000px;}
.h7_c00306{height:71.400000px;}
.h9_c00306{height:72.450000px;}
.ha_c00306{height:75.600000px;}
.h10_c00306{height:77.700000px;}
.hc_c00306{height:82.950000px;}
.h3_c00306{height:92.400000px;}
.h5_c00306{height:144.900000px;}
.h4_c00306{height:151.200000px;}
.h6_c00306{height:191.100000px;}
.h1_c00306{height:1005.000000px;}
.h0_c00306{height:1005.150000px;}
.w0_c00306{width:702.540000px;}
.w1_c00306{width:702.750000px;}
.x0_c00306{left:0.000000px;}
.x41_c00306{left:62.910000px;}
.x39_c00306{left:82.890000px;}
.x23_c00306{left:86.133000px;}
.x10_c00306{left:87.750000px;}
.x7d_c00306{left:97.470000px;}
.x56_c00306{left:108.000000px;}
.x11_c00306{left:110.970000px;}
.x19_c00306{left:116.205000px;}
.x42_c00306{left:121.230000px;}
.x3a_c00306{left:123.120000px;}
.x30_c00306{left:124.200000px;}
.x24_c00306{left:125.553000px;}
.xb_c00306{left:131.220000px;}
.x63_c00306{left:141.480000px;}
.x43_c00306{left:144.450000px;}
.x6a_c00306{left:147.420000px;}
.x1a_c00306{left:148.864500px;}
.x4b_c00306{left:150.390000px;}
.x4f_c00306{left:153.900000px;}
.x12_c00306{left:156.060000px;}
.xc_c00306{left:160.920000px;}
.x25_c00306{left:165.243000px;}
.x57_c00306{left:167.940000px;}
.x50_c00306{left:173.610000px;}
.x31_c00306{left:174.960000px;}
.x73_c00306{left:176.850000px;}
.x26_c00306{left:184.143000px;}
.x64_c00306{left:187.380000px;}
.x58_c00306{left:189.810000px;}
.x44_c00306{left:192.240000px;}
.x3b_c00306{left:196.830000px;}
.x13_c00306{left:197.910000px;}
.x32_c00306{left:201.150000px;}
.x7e_c00306{left:206.010000px;}
.x74_c00306{left:209.520000px;}
.x27_c00306{left:211.143000px;}
.x65_c00306{left:212.220000px;}
.x1b_c00306{left:219.061500px;}
.x3c_c00306{left:222.480000px;}
.x51_c00306{left:224.100000px;}
.x33_c00306{left:225.450000px;}
.x45_c00306{left:229.500000px;}
.x59_c00306{left:231.930000px;}
.x14_c00306{left:233.010000px;}
.x1c_c00306{left:235.534500px;}
.x6f_c00306{left:240.840000px;}
.x28_c00306{left:242.463000px;}
.x6b_c00306{left:244.620000px;}
.x34_c00306{left:246.240000px;}
.x4c_c00306{left:257.040000px;}
.x46_c00306{left:258.390000px;}
.x7a_c00306{left:264.060000px;}
.x15_c00306{left:268.110000px;}
.x75_c00306{left:272.970000px;}
.x3d_c00306{left:275.130000px;}
.x9_c00306{left:277.020000px;}
.x29_c00306{left:278.103000px;}
.x4d_c00306{left:283.770000px;}
.x7b_c00306{left:285.930000px;}
.x1d_c00306{left:295.206000px;}
.x35_c00306{left:299.700000px;}
.x52_c00306{left:302.130000px;}
.x2_c00306{left:305.100000px;}
.x47_c00306{left:308.070000px;}
.x76_c00306{left:315.900000px;}
.x4e_c00306{left:322.110000px;}
.x48_c00306{left:324.540000px;}
.x5a_c00306{left:328.050000px;}
.x2a_c00306{left:335.073000px;}
.x70_c00306{left:339.390000px;}
.x77_c00306{left:341.550000px;}
.x53_c00306{left:346.680000px;}
.xd_c00306{left:348.030000px;}
.x1e_c00306{left:352.710000px;}
.x6c_c00306{left:355.860000px;}
.x36_c00306{left:362.340000px;}
.x71_c00306{left:364.500000px;}
.x3e_c00306{left:367.200000px;}
.x1f_c00306{left:371.620500px;}
.x3_c00306{left:372.870000px;}
.x2b_c00306{left:387.183000px;}
.x1_c00306{left:393.120000px;}
.x4_c00306{left:395.550000px;}
.x66_c00306{left:397.440000px;}
.x6d_c00306{left:398.520000px;}
.x78_c00306{left:402.570000px;}
.x72_c00306{left:404.730000px;}
.x20_c00306{left:411.031500px;}
.xf_c00306{left:420.120000px;}
.x6e_c00306{left:422.010000px;}
.x5f_c00306{left:429.840000px;}
.x7c_c00306{left:433.890000px;}
.x5_c00306{left:435.780000px;}
.x2c_c00306{left:442.533000px;}
.x5b_c00306{left:443.880000px;}
.x54_c00306{left:447.660000px;}
.x37_c00306{left:450.630000px;}
.x16_c00306{left:454.140000px;}
.x6_c00306{left:457.650000px;}
.x21_c00306{left:461.518500px;}
.x2d_c00306{left:465.483000px;}
.x5c_c00306{left:467.640000px;}
.x3f_c00306{left:471.150000px;}
.xa_c00306{left:473.580000px;}
.x49_c00306{left:475.740000px;}
.x67_c00306{left:478.440000px;}
.x79_c00306{left:487.080000px;}
.x61_c00306{left:490.860000px;}
.x60_c00306{left:493.020000px;}
.x4a_c00306{left:500.580000px;}
.x22_c00306{left:502.792500px;}
.x5d_c00306{left:504.900000px;}
.x7_c00306{left:508.950000px;}
.x2e_c00306{left:511.383000px;}
.x68_c00306{left:515.970000px;}
.x17_c00306{left:517.590000px;}
.x55_c00306{left:527.580000px;}
.xe_c00306{left:531.090000px;}
.x2f_c00306{left:539.463000px;}
.x40_c00306{left:546.750000px;}
.x38_c00306{left:548.640000px;}
.x5e_c00306{left:549.990000px;}
.x18_c00306{left:551.880000px;}
.x69_c00306{left:575.100000px;}
.x8_c00306{left:589.410000px;}
.x62_c00306{left:598.860000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
.fs0_c00306{font-size:19.600000pt;}
.fsd_c00306{font-size:23.333333pt;}
.fsc_c00306{font-size:32.666667pt;}
.fs6_c00306{font-size:56.933333pt;}
.fsb_c00306{font-size:61.600000pt;}
.fs9_c00306{font-size:62.533333pt;}
.fs5_c00306{font-size:63.466667pt;}
.fs7_c00306{font-size:64.400000pt;}
.fs8_c00306{font-size:67.200000pt;}
.fse_c00306{font-size:69.066667pt;}
.fsa_c00306{font-size:73.733333pt;}
.fs1_c00306{font-size:82.133333pt;}
.fs3_c00306{font-size:128.800000pt;}
.fs2_c00306{font-size:134.400000pt;}
.fs4_c00306{font-size:169.866667pt;}
.y0_c00306{bottom:0.000000pt;}
.y23_c00306{bottom:380.157333pt;}
.y22_c00306{bottom:431.736000pt;}
.y21_c00306{bottom:452.244000pt;}
.y20_c00306{bottom:473.418667pt;}
.y1f_c00306{bottom:493.338667pt;}
.y1e_c00306{bottom:513.917333pt;}
.y1d_c00306{bottom:553.297333pt;}
.y1c_c00306{bottom:561.120000pt;}
.y1b_c00306{bottom:561.477333pt;}
.y1a_c00306{bottom:575.116000pt;}
.y19_c00306{bottom:595.098667pt;}
.y18_c00306{bottom:615.865333pt;}
.y17_c00306{bottom:636.253333pt;}
.y16_c00306{bottom:656.640000pt;}
.y15_c00306{bottom:676.984000pt;}
.y14_c00306{bottom:697.061333pt;}
.y7_c00306{bottom:716.880000pt;}
.y8_c00306{bottom:717.058667pt;}
.y9_c00306{bottom:717.261333pt;}
.ya_c00306{bottom:717.698667pt;}
.yb_c00306{bottom:717.801333pt;}
.yc_c00306{bottom:718.172000pt;}
.yd_c00306{bottom:718.529333pt;}
.ye_c00306{bottom:718.646667pt;}
.yf_c00306{bottom:718.892000pt;}
.y10_c00306{bottom:719.046667pt;}
.y11_c00306{bottom:719.206667pt;}
.y12_c00306{bottom:719.464000pt;}
.y13_c00306{bottom:719.633333pt;}
.y6_c00306{bottom:738.960000pt;}
.y4_c00306{bottom:777.168000pt;}
.y5_c00306{bottom:803.280000pt;}
.y3_c00306{bottom:814.774667pt;}
.y2_c00306{bottom:831.053333pt;}
.y1_c00306{bottom:839.040000pt;}
.h2_c00306{height:19.600000pt;}
.hf_c00306{height:23.333333pt;}
.he_c00306{height:32.666667pt;}
.h8_c00306{height:56.933333pt;}
.hd_c00306{height:61.600000pt;}
.hb_c00306{height:62.533333pt;}
.h7_c00306{height:63.466667pt;}
.h9_c00306{height:64.400000pt;}
.ha_c00306{height:67.200000pt;}
.h10_c00306{height:69.066667pt;}
.hc_c00306{height:73.733333pt;}
.h3_c00306{height:82.133333pt;}
.h5_c00306{height:128.800000pt;}
.h4_c00306{height:134.400000pt;}
.h6_c00306{height:169.866667pt;}
.h1_c00306{height:893.333333pt;}
.h0_c00306{height:893.466667pt;}
.w0_c00306{width:624.480000pt;}
.w1_c00306{width:624.666667pt;}
.x0_c00306{left:0.000000pt;}
.x41_c00306{left:55.920000pt;}
.x39_c00306{left:73.680000pt;}
.x23_c00306{left:76.562667pt;}
.x10_c00306{left:78.000000pt;}
.x7d_c00306{left:86.640000pt;}
.x56_c00306{left:96.000000pt;}
.x11_c00306{left:98.640000pt;}
.x19_c00306{left:103.293333pt;}
.x42_c00306{left:107.760000pt;}
.x3a_c00306{left:109.440000pt;}
.x30_c00306{left:110.400000pt;}
.x24_c00306{left:111.602667pt;}
.xb_c00306{left:116.640000pt;}
.x63_c00306{left:125.760000pt;}
.x43_c00306{left:128.400000pt;}
.x6a_c00306{left:131.040000pt;}
.x1a_c00306{left:132.324000pt;}
.x4b_c00306{left:133.680000pt;}
.x4f_c00306{left:136.800000pt;}
.x12_c00306{left:138.720000pt;}
.xc_c00306{left:143.040000pt;}
.x25_c00306{left:146.882667pt;}
.x57_c00306{left:149.280000pt;}
.x50_c00306{left:154.320000pt;}
.x31_c00306{left:155.520000pt;}
.x73_c00306{left:157.200000pt;}
.x26_c00306{left:163.682667pt;}
.x64_c00306{left:166.560000pt;}
.x58_c00306{left:168.720000pt;}
.x44_c00306{left:170.880000pt;}
.x3b_c00306{left:174.960000pt;}
.x13_c00306{left:175.920000pt;}
.x32_c00306{left:178.800000pt;}
.x7e_c00306{left:183.120000pt;}
.x74_c00306{left:186.240000pt;}
.x27_c00306{left:187.682667pt;}
.x65_c00306{left:188.640000pt;}
.x1b_c00306{left:194.721333pt;}
.x3c_c00306{left:197.760000pt;}
.x51_c00306{left:199.200000pt;}
.x33_c00306{left:200.400000pt;}
.x45_c00306{left:204.000000pt;}
.x59_c00306{left:206.160000pt;}
.x14_c00306{left:207.120000pt;}
.x1c_c00306{left:209.364000pt;}
.x6f_c00306{left:214.080000pt;}
.x28_c00306{left:215.522667pt;}
.x6b_c00306{left:217.440000pt;}
.x34_c00306{left:218.880000pt;}
.x4c_c00306{left:228.480000pt;}
.x46_c00306{left:229.680000pt;}
.x7a_c00306{left:234.720000pt;}
.x15_c00306{left:238.320000pt;}
.x75_c00306{left:242.640000pt;}
.x3d_c00306{left:244.560000pt;}
.x9_c00306{left:246.240000pt;}
.x29_c00306{left:247.202667pt;}
.x4d_c00306{left:252.240000pt;}
.x7b_c00306{left:254.160000pt;}
.x1d_c00306{left:262.405333pt;}
.x35_c00306{left:266.400000pt;}
.x52_c00306{left:268.560000pt;}
.x2_c00306{left:271.200000pt;}
.x47_c00306{left:273.840000pt;}
.x76_c00306{left:280.800000pt;}
.x4e_c00306{left:286.320000pt;}
.x48_c00306{left:288.480000pt;}
.x5a_c00306{left:291.600000pt;}
.x2a_c00306{left:297.842667pt;}
.x70_c00306{left:301.680000pt;}
.x77_c00306{left:303.600000pt;}
.x53_c00306{left:308.160000pt;}
.xd_c00306{left:309.360000pt;}
.x1e_c00306{left:313.520000pt;}
.x6c_c00306{left:316.320000pt;}
.x36_c00306{left:322.080000pt;}
.x71_c00306{left:324.000000pt;}
.x3e_c00306{left:326.400000pt;}
.x1f_c00306{left:330.329333pt;}
.x3_c00306{left:331.440000pt;}
.x2b_c00306{left:344.162667pt;}
.x1_c00306{left:349.440000pt;}
.x4_c00306{left:351.600000pt;}
.x66_c00306{left:353.280000pt;}
.x6d_c00306{left:354.240000pt;}
.x78_c00306{left:357.840000pt;}
.x72_c00306{left:359.760000pt;}
.x20_c00306{left:365.361333pt;}
.xf_c00306{left:373.440000pt;}
.x6e_c00306{left:375.120000pt;}
.x5f_c00306{left:382.080000pt;}
.x7c_c00306{left:385.680000pt;}
.x5_c00306{left:387.360000pt;}
.x2c_c00306{left:393.362667pt;}
.x5b_c00306{left:394.560000pt;}
.x54_c00306{left:397.920000pt;}
.x37_c00306{left:400.560000pt;}
.x16_c00306{left:403.680000pt;}
.x6_c00306{left:406.800000pt;}
.x21_c00306{left:410.238667pt;}
.x2d_c00306{left:413.762667pt;}
.x5c_c00306{left:415.680000pt;}
.x3f_c00306{left:418.800000pt;}
.xa_c00306{left:420.960000pt;}
.x49_c00306{left:422.880000pt;}
.x67_c00306{left:425.280000pt;}
.x79_c00306{left:432.960000pt;}
.x61_c00306{left:436.320000pt;}
.x60_c00306{left:438.240000pt;}
.x4a_c00306{left:444.960000pt;}
.x22_c00306{left:446.926667pt;}
.x5d_c00306{left:448.800000pt;}
.x7_c00306{left:452.400000pt;}
.x2e_c00306{left:454.562667pt;}
.x68_c00306{left:458.640000pt;}
.x17_c00306{left:460.080000pt;}
.x55_c00306{left:468.960000pt;}
.xe_c00306{left:472.080000pt;}
.x2f_c00306{left:479.522667pt;}
.x40_c00306{left:486.000000pt;}
.x38_c00306{left:487.680000pt;}
.x5e_c00306{left:488.880000pt;}
.x18_c00306{left:490.560000pt;}
.x69_c00306{left:511.200000pt;}
.x8_c00306{left:523.920000pt;}
.x62_c00306{left:532.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m92_c00307{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);}
.mdb_c00307{transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);}
.mdc_c00307{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);}
.md2_c00307{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);}
.md5_c00307{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{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);}
.ma4_c00307{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);}
.m8d_c00307{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);}
.md8_c00307{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);}
.mc7_c00307{transform:matrix(0.153045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153045,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{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);}
.md6_c00307{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);}
.m50_c00307{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);}
.md7_c00307{transform:matrix(0.155905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155905,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{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);}
.m32_c00307{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);}
.mc3_c00307{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);}
.m34_c00307{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);}
.m22_c00307{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);}
.m69_c00307{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);}
.mb3_c00307{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);}
.m67_c00307{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);}
.m35_c00307{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_c00307{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);}
.m81_c00307{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);}
.m7b_c00307{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);}
.mb9_c00307{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);}
.m74_c00307{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);}
.m43_c00307{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);}
.m37_c00307{transform:matrix(0.162260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162260,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{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);}
.mce_c00307{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);}
.m27_c00307{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);}
.m11_c00307{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);}
.m8b_c00307{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);}
.md0_c00307{transform:matrix(0.164315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164315,0.000000,0.000000,0.250000,0,0);}
.md9_c00307{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);}
.m7_c00307{transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165245,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{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);}
.maf_c00307{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);}
.m86_c00307{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);}
.md3_c00307{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);}
.md_c00307{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{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);}
.m2a_c00307{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{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);}
.m31_c00307{transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{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);}
.m9e_c00307{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);}
.md4_c00307{transform:matrix(0.168815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168815,0.000000,0.000000,0.250000,0,0);}
.m68_c00307{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);}
.mf_c00307{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);}
.mda_c00307{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);}
.m96_c00307{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);}
.m4d_c00307{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);}
.m30_c00307{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);}
.m28_c00307{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);}
.mac_c00307{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);}
.m36_c00307{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);}
.m3a_c00307{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);}
.m21_c00307{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);}
.m80_c00307{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);}
.m53_c00307{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);}
.m17_c00307{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);}
.me5_c00307{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);}
.m94_c00307{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);}
.m15_c00307{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);}
.m8e_c00307{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);}
.m8a_c00307{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);}
.mc6_c00307{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);}
.mf3_c00307{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);}
.m90_c00307{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);}
.m97_c00307{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);}
.m48_c00307{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);}
.m3d_c00307{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);}
.mf4_c00307{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);}
.md1_c00307{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);}
.m2d_c00307{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);}
.m23_c00307{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);}
.mb_c00307{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);}
.m7f_c00307{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);}
.m6c_c00307{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);}
.m54_c00307{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);}
.m4e_c00307{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);}
.mb5_c00307{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);}
.mc2_c00307{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);}
.m78_c00307{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);}
.m70_c00307{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);}
.m95_c00307{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);}
.mb8_c00307{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);}
.m4b_c00307{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);}
.m2e_c00307{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);}
.m5e_c00307{transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{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);}
.m19_c00307{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);}
.m5c_c00307{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);}
.m75_c00307{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);}
.m57_c00307{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);}
.m4c_c00307{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);}
.m2f_c00307{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);}
.m79_c00307{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);}
.m82_c00307{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);}
.m6e_c00307{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);}
.m7c_c00307{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);}
.m44_c00307{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);}
.mcc_c00307{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);}
.m6a_c00307{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);}
.m77_c00307{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);}
.mb2_c00307{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);}
.m5b_c00307{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);}
.mf7_c00307{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);}
.ma2_c00307{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);}
.m99_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);}
.m88_c00307{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);}
.m83_c00307{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);}
.mb7_c00307{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);}
.m29_c00307{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);}
.m56_c00307{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);}
.m8c_c00307{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);}
.mcb_c00307{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);}
.meb_c00307{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);}
.mea_c00307{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);}
.m42_c00307{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);}
.mf2_c00307{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);}
.mf5_c00307{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);}
.m1e_c00307{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);}
.m26_c00307{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);}
.m89_c00307{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_c00307{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);}
.m55_c00307{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);}
.m9a_c00307{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);}
.me3_c00307{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);}
.med_c00307{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);}
.m9d_c00307{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);}
.ma5_c00307{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);}
.m87_c00307{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);}
.ma3_c00307{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);}
.m6f_c00307{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);}
.mca_c00307{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);}
.m3_c00307{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);}
.m73_c00307{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);}
.m4_c00307{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);}
.m84_c00307{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);}
.ma8_c00307{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);}
.m2b_c00307{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);}
.m18_c00307{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);}
.mcf_c00307{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);}
.m60_c00307{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);}
.mfa_c00307{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);}
.m4f_c00307{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);}
.m1b_c00307{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);}
.m61_c00307{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_c00307{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);}
.m5f_c00307{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);}
.m16_c00307{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);}
.m3c_c00307{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);}
.m9f_c00307{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);}
.m5d_c00307{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);}
.m62_c00307{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);}
.mc_c00307{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);}
.mc0_c00307{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);}
.m3f_c00307{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);}
.mbb_c00307{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.mf1_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);}
.m9b_c00307{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);}
.mcd_c00307{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);}
.mf0_c00307{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);}
.me6_c00307{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);}
.mc1_c00307{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);}
.m10_c00307{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);}
.mad_c00307{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);}
.m1a_c00307{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);}
.m40_c00307{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);}
.m58_c00307{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);}
.m1_c00307{transform:matrix(0.208997,-0.001881,0.002250,0.249990,0,0);-ms-transform:matrix(0.208997,-0.001881,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208997,-0.001881,0.002250,0.249990,0,0);}
.mba_c00307{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);}
.ma7_c00307{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);}
.m12_c00307{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);}
.mc5_c00307{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);}
.m9c_c00307{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{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);}
.me_c00307{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);}
.m64_c00307{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);}
.mbd_c00307{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);}
.mc4_c00307{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);}
.maa_c00307{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);}
.m71_c00307{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);}
.mef_c00307{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);}
.me1_c00307{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);}
.ma_c00307{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);}
.me7_c00307{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);}
.m76_c00307{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);}
.m47_c00307{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);}
.ma1_c00307{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);}
.mbf_c00307{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);}
.m5a_c00307{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{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);}
.mbc_c00307{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);}
.mf8_c00307{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{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);}
.mb1_c00307{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);}
.m39_c00307{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);}
.m41_c00307{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);}
.mdd_c00307{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);}
.mb6_c00307{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);}
.mf9_c00307{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);}
.me2_c00307{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);}
.m2c_c00307{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);}
.mb0_c00307{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);}
.mec_c00307{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{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);}
.m7a_c00307{transform:matrix(0.234045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234045,0.000000,0.000000,0.250000,0,0);}
.mbe_c00307{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);}
.me0_c00307{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);}
.m3e_c00307{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);}
.m33_c00307{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);}
.mde_c00307{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);}
.m59_c00307{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.mc8_c00307{transform:matrix(0.241135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241135,0.000000,0.000000,0.250000,0,0);}
.me8_c00307{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{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);}
.m91_c00307{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);}
.mdf_c00307{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{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);}
.m93_c00307{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253140,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.254305,-0.002289,0.002250,0.249990,0,0);-ms-transform:matrix(0.254305,-0.002289,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254305,-0.002289,0.002250,0.249990,0,0);}
.m8_c00307{transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);}
.mc9_c00307{transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263020,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{transform:matrix(0.268930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268930,0.000000,0.000000,0.250000,0,0);}
.mb4_c00307{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);}
.me9_c00307{transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297885,0.000000,0.000000,0.250000,0,0);}
.mee_c00307{transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303215,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313090,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.365055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365055,0.000000,0.000000,0.250000,0,0);}
.me4_c00307{transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367620,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.399905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399905,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.618220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618220,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.648660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648660,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.658015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658015,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.715370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715370,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;}
.fsf_c00307{font-size:22.050000px;}
.fs11_c00307{font-size:48.300000px;}
.fs10_c00307{font-size:50.400000px;}
.fs9_c00307{font-size:65.100000px;}
.fsb_c00307{font-size:67.200000px;}
.fs4_c00307{font-size:68.250000px;}
.fs7_c00307{font-size:69.300000px;}
.fs5_c00307{font-size:70.350000px;}
.fs3_c00307{font-size:71.400000px;}
.fs6_c00307{font-size:72.450000px;}
.fse_c00307{font-size:73.500000px;}
.fsc_c00307{font-size:74.550000px;}
.fs8_c00307{font-size:75.600000px;}
.fsa_c00307{font-size:77.700000px;}
.fsd_c00307{font-size:82.950000px;}
.fs1_c00307{font-size:100.800000px;}
.fs2_c00307{font-size:143.850000px;}
.fs0_c00307{font-size:199.508080px;}
.y0_c00307{bottom:0.000000px;}
.y25_c00307{bottom:156.919500px;}
.y24_c00307{bottom:157.068000px;}
.y23_c00307{bottom:157.587000px;}
.y22_c00307{bottom:157.908000px;}
.y21_c00307{bottom:158.142000px;}
.y20_c00307{bottom:158.371500px;}
.y1f_c00307{bottom:158.539500px;}
.y1e_c00307{bottom:158.662500px;}
.y1d_c00307{bottom:158.748000px;}
.y1c_c00307{bottom:159.159000px;}
.y1b_c00307{bottom:159.345000px;}
.y1a_c00307{bottom:159.571500px;}
.y19_c00307{bottom:175.471500px;}
.y18_c00307{bottom:198.849000px;}
.y17_c00307{bottom:225.217500px;}
.y16_c00307{bottom:249.409500px;}
.y15_c00307{bottom:272.059500px;}
.y14_c00307{bottom:294.733500px;}
.y13_c00307{bottom:317.652000px;}
.y12_c00307{bottom:341.074500px;}
.y11_c00307{bottom:363.814500px;}
.y10_c00307{bottom:388.308000px;}
.yf_c00307{bottom:410.836500px;}
.ye_c00307{bottom:433.719000px;}
.yd_c00307{bottom:456.906000px;}
.yc_c00307{bottom:479.080500px;}
.yb_c00307{bottom:502.233000px;}
.ya_c00307{bottom:525.150000px;}
.y9_c00307{bottom:547.561500px;}
.y8_c00307{bottom:571.054500px;}
.y7_c00307{bottom:593.997000px;}
.y6_c00307{bottom:617.221500px;}
.y5_c00307{bottom:639.904500px;}
.y4_c00307{bottom:684.408000px;}
.y3_c00307{bottom:731.160000px;}
.y1_c00307{bottom:765.993000px;}
.y2_c00307{bottom:768.239562px;}
.h11_c00307{height:22.050000px;}
.h13_c00307{height:48.300000px;}
.h12_c00307{height:50.400000px;}
.hb_c00307{height:65.100000px;}
.hd_c00307{height:67.200000px;}
.h6_c00307{height:68.250000px;}
.h9_c00307{height:69.300000px;}
.h7_c00307{height:70.350000px;}
.h5_c00307{height:71.400000px;}
.h8_c00307{height:72.450000px;}
.h10_c00307{height:73.500000px;}
.he_c00307{height:74.550000px;}
.ha_c00307{height:75.600000px;}
.hc_c00307{height:77.700000px;}
.hf_c00307{height:82.950000px;}
.h3_c00307{height:100.800000px;}
.h4_c00307{height:143.850000px;}
.h2_c00307{height:199.508080px;}
.h0_c00307{height:1008.450000px;}
.h1_c00307{height:1008.750000px;}
.w0_c00307{width:696.000000px;}
.x0_c00307{left:0.000000px;}
.x4_c00307{left:87.210000px;}
.x3b_c00307{left:124.470000px;}
.x1d_c00307{left:139.860000px;}
.x1_c00307{left:147.787500px;}
.x44_c00307{left:149.040000px;}
.x32_c00307{left:150.660000px;}
.x98_c00307{left:163.350000px;}
.x72_c00307{left:167.400000px;}
.x5_c00307{left:172.260000px;}
.x55_c00307{left:175.500000px;}
.x33_c00307{left:177.390000px;}
.xa2_c00307{left:178.957500px;}
.x29_c00307{left:180.630000px;}
.x9_c00307{left:183.330000px;}
.x1e_c00307{left:187.110000px;}
.x13_c00307{left:188.190000px;}
.x45_c00307{left:189.540000px;}
.x5e_c00307{left:193.590000px;}
.x6b_c00307{left:195.210000px;}
.x56_c00307{left:196.290000px;}
.x99_c00307{left:197.370000px;}
.x68_c00307{left:198.720000px;}
.x8f_c00307{left:200.610000px;}
.xa3_c00307{left:202.156500px;}
.x4c_c00307{left:207.360000px;}
.x85_c00307{left:209.250000px;}
.x3c_c00307{left:210.870000px;}
.x46_c00307{left:213.570000px;}
.x14_c00307{left:216.270000px;}
.x5f_c00307{left:220.320000px;}
.xa_c00307{left:221.670000px;}
.x1f_c00307{left:222.750000px;}
.x6c_c00307{left:225.720000px;}
.x6_c00307{left:227.070000px;}
.x4d_c00307{left:230.310000px;}
.x86_c00307{left:234.360000px;}
.x73_c00307{left:235.710000px;}
.x20_c00307{left:241.110000px;}
.x60_c00307{left:245.430000px;}
.x34_c00307{left:246.510000px;}
.x3d_c00307{left:247.590000px;}
.xb_c00307{left:250.560000px;}
.x7e_c00307{left:252.450000px;}
.xa4_c00307{left:253.479000px;}
.x9a_c00307{left:257.040000px;}
.x4e_c00307{left:258.390000px;}
.x6d_c00307{left:259.740000px;}
.x47_c00307{left:264.060000px;}
.x74_c00307{left:266.490000px;}
.x57_c00307{left:268.920000px;}
.x8b_c00307{left:271.350000px;}
.x9b_c00307{left:276.210000px;}
.xc_c00307{left:279.990000px;}
.x15_c00307{left:281.340000px;}
.x2a_c00307{left:286.740000px;}
.x58_c00307{left:289.440000px;}
.x21_c00307{left:294.570000px;}
.x3e_c00307{left:298.080000px;}
.x87_c00307{left:299.700000px;}
.x90_c00307{left:301.590000px;}
.x16_c00307{left:303.480000px;}
.x6e_c00307{left:306.180000px;}
.x61_c00307{left:307.800000px;}
.x88_c00307{left:325.890000px;}
.x7a_c00307{left:327.780000px;}
.x6f_c00307{left:329.670000px;}
.x75_c00307{left:331.020000px;}
.x7f_c00307{left:332.100000px;}
.x69_c00307{left:335.880000px;}
.x9c_c00307{left:337.770000px;}
.x48_c00307{left:338.850000px;}
.x62_c00307{left:342.630000px;}
.xd_c00307{left:345.870000px;}
.x59_c00307{left:348.300000px;}
.x3_c00307{left:354.510000px;}
.x91_c00307{left:355.860000px;}
.x22_c00307{left:359.100000px;}
.x7b_c00307{left:360.720000px;}
.x17_c00307{left:365.310000px;}
.x2b_c00307{left:368.820000px;}
.x23_c00307{left:378.810000px;}
.x3f_c00307{left:380.700000px;}
.x89_c00307{left:382.860000px;}
.xe_c00307{left:384.480000px;}
.x4f_c00307{left:386.370000px;}
.x35_c00307{left:389.880000px;}
.x5a_c00307{left:390.960000px;}
.x63_c00307{left:394.470000px;}
.x2_c00307{left:397.405500px;}
.x18_c00307{left:398.520000px;}
.x80_c00307{left:399.870000px;}
.xf_c00307{left:408.240000px;}
.x36_c00307{left:410.940000px;}
.x49_c00307{left:412.020000px;}
.x50_c00307{left:415.260000px;}
.x70_c00307{left:418.770000px;}
.x40_c00307{left:420.390000px;}
.x9d_c00307{left:422.550000px;}
.x8c_c00307{left:426.060000px;}
.x5b_c00307{left:428.220000px;}
.x76_c00307{left:429.300000px;}
.x92_c00307{left:431.460000px;}
.x81_c00307{left:434.160000px;}
.x24_c00307{left:438.210000px;}
.x64_c00307{left:447.120000px;}
.x8d_c00307{left:448.200000px;}
.x37_c00307{left:449.550000px;}
.x77_c00307{left:451.710000px;}
.x9e_c00307{left:453.060000px;}
.x2c_c00307{left:455.220000px;}
.x10_c00307{left:456.570000px;}
.x7c_c00307{left:459.540000px;}
.x19_c00307{left:460.620000px;}
.x51_c00307{left:462.780000px;}
.x4a_c00307{left:464.400000px;}
.x93_c00307{left:467.640000px;}
.x41_c00307{left:469.260000px;}
.x65_c00307{left:471.690000px;}
.x2d_c00307{left:473.850000px;}
.xa5_c00307{left:482.145000px;}
.x7_c00307{left:483.570000px;}
.x25_c00307{left:484.920000px;}
.x8a_c00307{left:493.020000px;}
.x2e_c00307{left:494.640000px;}
.x9f_c00307{left:496.260000px;}
.x66_c00307{left:498.420000px;}
.x78_c00307{left:501.120000px;}
.xa0_c00307{left:510.300000px;}
.x26_c00307{left:512.460000px;}
.x52_c00307{left:514.620000px;}
.x1a_c00307{left:519.210000px;}
.x11_c00307{left:522.180000px;}
.x82_c00307{left:523.260000px;}
.x42_c00307{left:524.610000px;}
.x8e_c00307{left:530.820000px;}
.x2f_c00307{left:532.980000px;}
.x38_c00307{left:537.300000px;}
.x8_c00307{left:542.970000px;}
.x53_c00307{left:545.130000px;}
.x27_c00307{left:549.450000px;}
.x7d_c00307{left:554.850000px;}
.x1b_c00307{left:556.470000px;}
.x5c_c00307{left:558.360000px;}
.x12_c00307{left:559.710000px;}
.x39_c00307{left:561.330000px;}
.x94_c00307{left:564.030000px;}
.xa1_c00307{left:567.270000px;}
.x30_c00307{left:569.430000px;}
.x28_c00307{left:572.130000px;}
.x6a_c00307{left:580.500000px;}
.x1c_c00307{left:582.120000px;}
.x67_c00307{left:583.740000px;}
.x43_c00307{left:585.090000px;}
.x83_c00307{left:586.440000px;}
.x5d_c00307{left:590.220000px;}
.x97_c00307{left:591.570000px;}
.x71_c00307{left:594.000000px;}
.x4b_c00307{left:595.350000px;}
.x31_c00307{left:596.970000px;}
.x95_c00307{left:599.130000px;}
.x3a_c00307{left:601.560000px;}
.x96_c00307{left:606.960000px;}
.x79_c00307{left:608.040000px;}
.x84_c00307{left:612.090000px;}
.x54_c00307{left:616.680000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
.fsf_c00307{font-size:19.600000pt;}
.fs11_c00307{font-size:42.933333pt;}
.fs10_c00307{font-size:44.800000pt;}
.fs9_c00307{font-size:57.866667pt;}
.fsb_c00307{font-size:59.733333pt;}
.fs4_c00307{font-size:60.666667pt;}
.fs7_c00307{font-size:61.600000pt;}
.fs5_c00307{font-size:62.533333pt;}
.fs3_c00307{font-size:63.466667pt;}
.fs6_c00307{font-size:64.400000pt;}
.fse_c00307{font-size:65.333333pt;}
.fsc_c00307{font-size:66.266667pt;}
.fs8_c00307{font-size:67.200000pt;}
.fsa_c00307{font-size:69.066667pt;}
.fsd_c00307{font-size:73.733333pt;}
.fs1_c00307{font-size:89.600000pt;}
.fs2_c00307{font-size:127.866667pt;}
.fs0_c00307{font-size:177.340515pt;}
.y0_c00307{bottom:0.000000pt;}
.y25_c00307{bottom:139.484000pt;}
.y24_c00307{bottom:139.616000pt;}
.y23_c00307{bottom:140.077333pt;}
.y22_c00307{bottom:140.362667pt;}
.y21_c00307{bottom:140.570667pt;}
.y20_c00307{bottom:140.774667pt;}
.y1f_c00307{bottom:140.924000pt;}
.y1e_c00307{bottom:141.033333pt;}
.y1d_c00307{bottom:141.109333pt;}
.y1c_c00307{bottom:141.474667pt;}
.y1b_c00307{bottom:141.640000pt;}
.y1a_c00307{bottom:141.841333pt;}
.y19_c00307{bottom:155.974667pt;}
.y18_c00307{bottom:176.754667pt;}
.y17_c00307{bottom:200.193333pt;}
.y16_c00307{bottom:221.697333pt;}
.y15_c00307{bottom:241.830667pt;}
.y14_c00307{bottom:261.985333pt;}
.y13_c00307{bottom:282.357333pt;}
.y12_c00307{bottom:303.177333pt;}
.y11_c00307{bottom:323.390667pt;}
.y10_c00307{bottom:345.162667pt;}
.yf_c00307{bottom:365.188000pt;}
.ye_c00307{bottom:385.528000pt;}
.yd_c00307{bottom:406.138667pt;}
.yc_c00307{bottom:425.849333pt;}
.yb_c00307{bottom:446.429333pt;}
.ya_c00307{bottom:466.800000pt;}
.y9_c00307{bottom:486.721333pt;}
.y8_c00307{bottom:507.604000pt;}
.y7_c00307{bottom:527.997333pt;}
.y6_c00307{bottom:548.641333pt;}
.y5_c00307{bottom:568.804000pt;}
.y4_c00307{bottom:608.362667pt;}
.y3_c00307{bottom:649.920000pt;}
.y1_c00307{bottom:680.882667pt;}
.y2_c00307{bottom:682.879611pt;}
.h11_c00307{height:19.600000pt;}
.h13_c00307{height:42.933333pt;}
.h12_c00307{height:44.800000pt;}
.hb_c00307{height:57.866667pt;}
.hd_c00307{height:59.733333pt;}
.h6_c00307{height:60.666667pt;}
.h9_c00307{height:61.600000pt;}
.h7_c00307{height:62.533333pt;}
.h5_c00307{height:63.466667pt;}
.h8_c00307{height:64.400000pt;}
.h10_c00307{height:65.333333pt;}
.he_c00307{height:66.266667pt;}
.ha_c00307{height:67.200000pt;}
.hc_c00307{height:69.066667pt;}
.hf_c00307{height:73.733333pt;}
.h3_c00307{height:89.600000pt;}
.h4_c00307{height:127.866667pt;}
.h2_c00307{height:177.340515pt;}
.h0_c00307{height:896.400000pt;}
.h1_c00307{height:896.666667pt;}
.w0_c00307{width:618.666667pt;}
.x0_c00307{left:0.000000pt;}
.x4_c00307{left:77.520000pt;}
.x3b_c00307{left:110.640000pt;}
.x1d_c00307{left:124.320000pt;}
.x1_c00307{left:131.366667pt;}
.x44_c00307{left:132.480000pt;}
.x32_c00307{left:133.920000pt;}
.x98_c00307{left:145.200000pt;}
.x72_c00307{left:148.800000pt;}
.x5_c00307{left:153.120000pt;}
.x55_c00307{left:156.000000pt;}
.x33_c00307{left:157.680000pt;}
.xa2_c00307{left:159.073333pt;}
.x29_c00307{left:160.560000pt;}
.x9_c00307{left:162.960000pt;}
.x1e_c00307{left:166.320000pt;}
.x13_c00307{left:167.280000pt;}
.x45_c00307{left:168.480000pt;}
.x5e_c00307{left:172.080000pt;}
.x6b_c00307{left:173.520000pt;}
.x56_c00307{left:174.480000pt;}
.x99_c00307{left:175.440000pt;}
.x68_c00307{left:176.640000pt;}
.x8f_c00307{left:178.320000pt;}
.xa3_c00307{left:179.694667pt;}
.x4c_c00307{left:184.320000pt;}
.x85_c00307{left:186.000000pt;}
.x3c_c00307{left:187.440000pt;}
.x46_c00307{left:189.840000pt;}
.x14_c00307{left:192.240000pt;}
.x5f_c00307{left:195.840000pt;}
.xa_c00307{left:197.040000pt;}
.x1f_c00307{left:198.000000pt;}
.x6c_c00307{left:200.640000pt;}
.x6_c00307{left:201.840000pt;}
.x4d_c00307{left:204.720000pt;}
.x86_c00307{left:208.320000pt;}
.x73_c00307{left:209.520000pt;}
.x20_c00307{left:214.320000pt;}
.x60_c00307{left:218.160000pt;}
.x34_c00307{left:219.120000pt;}
.x3d_c00307{left:220.080000pt;}
.xb_c00307{left:222.720000pt;}
.x7e_c00307{left:224.400000pt;}
.xa4_c00307{left:225.314667pt;}
.x9a_c00307{left:228.480000pt;}
.x4e_c00307{left:229.680000pt;}
.x6d_c00307{left:230.880000pt;}
.x47_c00307{left:234.720000pt;}
.x74_c00307{left:236.880000pt;}
.x57_c00307{left:239.040000pt;}
.x8b_c00307{left:241.200000pt;}
.x9b_c00307{left:245.520000pt;}
.xc_c00307{left:248.880000pt;}
.x15_c00307{left:250.080000pt;}
.x2a_c00307{left:254.880000pt;}
.x58_c00307{left:257.280000pt;}
.x21_c00307{left:261.840000pt;}
.x3e_c00307{left:264.960000pt;}
.x87_c00307{left:266.400000pt;}
.x90_c00307{left:268.080000pt;}
.x16_c00307{left:269.760000pt;}
.x6e_c00307{left:272.160000pt;}
.x61_c00307{left:273.600000pt;}
.x88_c00307{left:289.680000pt;}
.x7a_c00307{left:291.360000pt;}
.x6f_c00307{left:293.040000pt;}
.x75_c00307{left:294.240000pt;}
.x7f_c00307{left:295.200000pt;}
.x69_c00307{left:298.560000pt;}
.x9c_c00307{left:300.240000pt;}
.x48_c00307{left:301.200000pt;}
.x62_c00307{left:304.560000pt;}
.xd_c00307{left:307.440000pt;}
.x59_c00307{left:309.600000pt;}
.x3_c00307{left:315.120000pt;}
.x91_c00307{left:316.320000pt;}
.x22_c00307{left:319.200000pt;}
.x7b_c00307{left:320.640000pt;}
.x17_c00307{left:324.720000pt;}
.x2b_c00307{left:327.840000pt;}
.x23_c00307{left:336.720000pt;}
.x3f_c00307{left:338.400000pt;}
.x89_c00307{left:340.320000pt;}
.xe_c00307{left:341.760000pt;}
.x4f_c00307{left:343.440000pt;}
.x35_c00307{left:346.560000pt;}
.x5a_c00307{left:347.520000pt;}
.x63_c00307{left:350.640000pt;}
.x2_c00307{left:353.249333pt;}
.x18_c00307{left:354.240000pt;}
.x80_c00307{left:355.440000pt;}
.xf_c00307{left:362.880000pt;}
.x36_c00307{left:365.280000pt;}
.x49_c00307{left:366.240000pt;}
.x50_c00307{left:369.120000pt;}
.x70_c00307{left:372.240000pt;}
.x40_c00307{left:373.680000pt;}
.x9d_c00307{left:375.600000pt;}
.x8c_c00307{left:378.720000pt;}
.x5b_c00307{left:380.640000pt;}
.x76_c00307{left:381.600000pt;}
.x92_c00307{left:383.520000pt;}
.x81_c00307{left:385.920000pt;}
.x24_c00307{left:389.520000pt;}
.x64_c00307{left:397.440000pt;}
.x8d_c00307{left:398.400000pt;}
.x37_c00307{left:399.600000pt;}
.x77_c00307{left:401.520000pt;}
.x9e_c00307{left:402.720000pt;}
.x2c_c00307{left:404.640000pt;}
.x10_c00307{left:405.840000pt;}
.x7c_c00307{left:408.480000pt;}
.x19_c00307{left:409.440000pt;}
.x51_c00307{left:411.360000pt;}
.x4a_c00307{left:412.800000pt;}
.x93_c00307{left:415.680000pt;}
.x41_c00307{left:417.120000pt;}
.x65_c00307{left:419.280000pt;}
.x2d_c00307{left:421.200000pt;}
.xa5_c00307{left:428.573333pt;}
.x7_c00307{left:429.840000pt;}
.x25_c00307{left:431.040000pt;}
.x8a_c00307{left:438.240000pt;}
.x2e_c00307{left:439.680000pt;}
.x9f_c00307{left:441.120000pt;}
.x66_c00307{left:443.040000pt;}
.x78_c00307{left:445.440000pt;}
.xa0_c00307{left:453.600000pt;}
.x26_c00307{left:455.520000pt;}
.x52_c00307{left:457.440000pt;}
.x1a_c00307{left:461.520000pt;}
.x11_c00307{left:464.160000pt;}
.x82_c00307{left:465.120000pt;}
.x42_c00307{left:466.320000pt;}
.x8e_c00307{left:471.840000pt;}
.x2f_c00307{left:473.760000pt;}
.x38_c00307{left:477.600000pt;}
.x8_c00307{left:482.640000pt;}
.x53_c00307{left:484.560000pt;}
.x27_c00307{left:488.400000pt;}
.x7d_c00307{left:493.200000pt;}
.x1b_c00307{left:494.640000pt;}
.x5c_c00307{left:496.320000pt;}
.x12_c00307{left:497.520000pt;}
.x39_c00307{left:498.960000pt;}
.x94_c00307{left:501.360000pt;}
.xa1_c00307{left:504.240000pt;}
.x30_c00307{left:506.160000pt;}
.x28_c00307{left:508.560000pt;}
.x6a_c00307{left:516.000000pt;}
.x1c_c00307{left:517.440000pt;}
.x67_c00307{left:518.880000pt;}
.x43_c00307{left:520.080000pt;}
.x83_c00307{left:521.280000pt;}
.x5d_c00307{left:524.640000pt;}
.x97_c00307{left:525.840000pt;}
.x71_c00307{left:528.000000pt;}
.x4b_c00307{left:529.200000pt;}
.x31_c00307{left:530.640000pt;}
.x95_c00307{left:532.560000pt;}
.x3a_c00307{left:534.720000pt;}
.x96_c00307{left:539.520000pt;}
.x79_c00307{left:540.480000pt;}
.x84_c00307{left:544.080000pt;}
.x54_c00307{left:548.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_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_4ab86c84425994a9e06b01c2.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;}
.m40_c00308{transform:matrix(0.011960,-0.000084,0.001750,0.249994,0,0);-ms-transform:matrix(0.011960,-0.000084,0.001750,0.249994,0,0);-webkit-transform:matrix(0.011960,-0.000084,0.001750,0.249994,0,0);}
.m14d_c00308{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);}
.m3f_c00308{transform:matrix(0.013245,-0.000093,0.001750,0.249994,0,0);-ms-transform:matrix(0.013245,-0.000093,0.001750,0.249994,0,0);-webkit-transform:matrix(0.013245,-0.000093,0.001750,0.249994,0,0);}
.m104_c00308{transform:matrix(0.018185,-0.000109,0.001500,0.249996,0,0);-ms-transform:matrix(0.018185,-0.000109,0.001500,0.249996,0,0);-webkit-transform:matrix(0.018185,-0.000109,0.001500,0.249996,0,0);}
.m81_c00308{transform:matrix(0.026135,-0.000157,0.001500,0.249996,0,0);-ms-transform:matrix(0.026135,-0.000157,0.001500,0.249996,0,0);-webkit-transform:matrix(0.026135,-0.000157,0.001500,0.249996,0,0);}
.mc5_c00308{transform:matrix(0.092933,-0.000558,0.001500,0.249996,0,0);-ms-transform:matrix(0.092933,-0.000558,0.001500,0.249996,0,0);-webkit-transform:matrix(0.092933,-0.000558,0.001500,0.249996,0,0);}
.m56_c00308{transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);-ms-transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);}
.m13c_c00308{transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.102228,-0.000613,0.001500,0.249996,0,0);-ms-transform:matrix(0.102228,-0.000613,0.001500,0.249996,0,0);-webkit-transform:matrix(0.102228,-0.000613,0.001500,0.249996,0,0);}
.m94_c00308{transform:matrix(0.143342,-0.000860,0.001500,0.249996,0,0);-ms-transform:matrix(0.143342,-0.000860,0.001500,0.249996,0,0);-webkit-transform:matrix(0.143342,-0.000860,0.001500,0.249996,0,0);}
.ma5_c00308{transform:matrix(0.144542,-0.000867,0.001500,0.249996,0,0);-ms-transform:matrix(0.144542,-0.000867,0.001500,0.249996,0,0);-webkit-transform:matrix(0.144542,-0.000867,0.001500,0.249996,0,0);}
.md1_c00308{transform:matrix(0.147592,-0.000886,0.001500,0.249996,0,0);-ms-transform:matrix(0.147592,-0.000886,0.001500,0.249996,0,0);-webkit-transform:matrix(0.147592,-0.000886,0.001500,0.249996,0,0);}
.m31_c00308{transform:matrix(0.147602,-0.000886,0.001500,0.249996,0,0);-ms-transform:matrix(0.147602,-0.000886,0.001500,0.249996,0,0);-webkit-transform:matrix(0.147602,-0.000886,0.001500,0.249996,0,0);}
.m97_c00308{transform:matrix(0.147672,-0.000886,0.001500,0.249996,0,0);-ms-transform:matrix(0.147672,-0.000886,0.001500,0.249996,0,0);-webkit-transform:matrix(0.147672,-0.000886,0.001500,0.249996,0,0);}
.m6c_c00308{transform:matrix(0.148071,-0.001036,0.001750,0.249994,0,0);-ms-transform:matrix(0.148071,-0.001036,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148071,-0.001036,0.001750,0.249994,0,0);}
.me1_c00308{transform:matrix(0.148252,-0.000890,0.001500,0.249996,0,0);-ms-transform:matrix(0.148252,-0.000890,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148252,-0.000890,0.001500,0.249996,0,0);}
.m5c_c00308{transform:matrix(0.148451,-0.001039,0.001750,0.249994,0,0);-ms-transform:matrix(0.148451,-0.001039,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148451,-0.001039,0.001750,0.249994,0,0);}
.m62_c00308{transform:matrix(0.148551,-0.001040,0.001750,0.249994,0,0);-ms-transform:matrix(0.148551,-0.001040,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148551,-0.001040,0.001750,0.249994,0,0);}
.m46_c00308{transform:matrix(0.148971,-0.001043,0.001750,0.249994,0,0);-ms-transform:matrix(0.148971,-0.001043,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148971,-0.001043,0.001750,0.249994,0,0);}
.md2_c00308{transform:matrix(0.149237,-0.000895,0.001500,0.249996,0,0);-ms-transform:matrix(0.149237,-0.000895,0.001500,0.249996,0,0);-webkit-transform:matrix(0.149237,-0.000895,0.001500,0.249996,0,0);}
.m36_c00308{transform:matrix(0.149297,-0.000896,0.001500,0.249996,0,0);-ms-transform:matrix(0.149297,-0.000896,0.001500,0.249996,0,0);-webkit-transform:matrix(0.149297,-0.000896,0.001500,0.249996,0,0);}
.m114_c00308{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);}
.m124_c00308{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);}
.mf1_c00308{transform:matrix(0.151152,-0.000907,0.001500,0.249996,0,0);-ms-transform:matrix(0.151152,-0.000907,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151152,-0.000907,0.001500,0.249996,0,0);}
.m85_c00308{transform:matrix(0.151292,-0.000908,0.001500,0.249996,0,0);-ms-transform:matrix(0.151292,-0.000908,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151292,-0.000908,0.001500,0.249996,0,0);}
.m6b_c00308{transform:matrix(0.151746,-0.001062,0.001750,0.249994,0,0);-ms-transform:matrix(0.151746,-0.001062,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151746,-0.001062,0.001750,0.249994,0,0);}
.m83_c00308{transform:matrix(0.151947,-0.000912,0.001500,0.249996,0,0);-ms-transform:matrix(0.151947,-0.000912,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151947,-0.000912,0.001500,0.249996,0,0);}
.m87_c00308{transform:matrix(0.152147,-0.000913,0.001500,0.249996,0,0);-ms-transform:matrix(0.152147,-0.000913,0.001500,0.249996,0,0);-webkit-transform:matrix(0.152147,-0.000913,0.001500,0.249996,0,0);}
.m58_c00308{transform:matrix(0.153091,-0.001072,0.001750,0.249994,0,0);-ms-transform:matrix(0.153091,-0.001072,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153091,-0.001072,0.001750,0.249994,0,0);}
.m141_c00308{transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);}
.mea_c00308{transform:matrix(0.154672,-0.000928,0.001500,0.249996,0,0);-ms-transform:matrix(0.154672,-0.000928,0.001500,0.249996,0,0);-webkit-transform:matrix(0.154672,-0.000928,0.001500,0.249996,0,0);}
.m37_c00308{transform:matrix(0.155112,-0.000931,0.001500,0.249996,0,0);-ms-transform:matrix(0.155112,-0.000931,0.001500,0.249996,0,0);-webkit-transform:matrix(0.155112,-0.000931,0.001500,0.249996,0,0);}
.m50_c00308{transform:matrix(0.155911,-0.001091,0.001750,0.249994,0,0);-ms-transform:matrix(0.155911,-0.001091,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155911,-0.001091,0.001750,0.249994,0,0);}
.m33_c00308{transform:matrix(0.156142,-0.000937,0.001500,0.249996,0,0);-ms-transform:matrix(0.156142,-0.000937,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156142,-0.000937,0.001500,0.249996,0,0);}
.m28_c00308{transform:matrix(0.156157,-0.000937,0.001500,0.249996,0,0);-ms-transform:matrix(0.156157,-0.000937,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156157,-0.000937,0.001500,0.249996,0,0);}
.m14c_c00308{transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.156742,-0.000940,0.001500,0.249996,0,0);-ms-transform:matrix(0.156742,-0.000940,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156742,-0.000940,0.001500,0.249996,0,0);}
.m3e_c00308{transform:matrix(0.157721,-0.001104,0.001750,0.249994,0,0);-ms-transform:matrix(0.157721,-0.001104,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157721,-0.001104,0.001750,0.249994,0,0);}
.mdc_c00308{transform:matrix(0.158067,-0.000948,0.001500,0.249996,0,0);-ms-transform:matrix(0.158067,-0.000948,0.001500,0.249996,0,0);-webkit-transform:matrix(0.158067,-0.000948,0.001500,0.249996,0,0);}
.m52_c00308{transform:matrix(0.158741,-0.001111,0.001750,0.249994,0,0);-ms-transform:matrix(0.158741,-0.001111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158741,-0.001111,0.001750,0.249994,0,0);}
.mb_c00308{transform:matrix(0.159087,-0.000955,0.001500,0.249996,0,0);-ms-transform:matrix(0.159087,-0.000955,0.001500,0.249996,0,0);-webkit-transform:matrix(0.159087,-0.000955,0.001500,0.249996,0,0);}
.ma2_c00308{transform:matrix(0.159372,-0.000956,0.001500,0.249996,0,0);-ms-transform:matrix(0.159372,-0.000956,0.001500,0.249996,0,0);-webkit-transform:matrix(0.159372,-0.000956,0.001500,0.249996,0,0);}
.md8_c00308{transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);-ms-transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);-webkit-transform:matrix(0.160557,-0.000963,0.001500,0.249996,0,0);}
.m42_c00308{transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);-ms-transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160591,-0.001124,0.001750,0.249994,0,0);}
.m118_c00308{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);}
.m120_c00308{transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.160956,-0.001127,0.001750,0.249994,0,0);-ms-transform:matrix(0.160956,-0.001127,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160956,-0.001127,0.001750,0.249994,0,0);}
.m11c_c00308{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);}
.m130_c00308{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);}
.m59_c00308{transform:matrix(0.161806,-0.001133,0.001750,0.249994,0,0);-ms-transform:matrix(0.161806,-0.001133,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161806,-0.001133,0.001750,0.249994,0,0);}
.m2e_c00308{transform:matrix(0.161967,-0.000972,0.001500,0.249996,0,0);-ms-transform:matrix(0.161967,-0.000972,0.001500,0.249996,0,0);-webkit-transform:matrix(0.161967,-0.000972,0.001500,0.249996,0,0);}
.m9a_c00308{transform:matrix(0.162382,-0.000974,0.001500,0.249996,0,0);-ms-transform:matrix(0.162382,-0.000974,0.001500,0.249996,0,0);-webkit-transform:matrix(0.162382,-0.000974,0.001500,0.249996,0,0);}
.me0_c00308{transform:matrix(0.162462,-0.000975,0.001500,0.249996,0,0);-ms-transform:matrix(0.162462,-0.000975,0.001500,0.249996,0,0);-webkit-transform:matrix(0.162462,-0.000975,0.001500,0.249996,0,0);}
.m60_c00308{transform:matrix(0.163016,-0.001141,0.001750,0.249994,0,0);-ms-transform:matrix(0.163016,-0.001141,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163016,-0.001141,0.001750,0.249994,0,0);}
.m96_c00308{transform:matrix(0.163472,-0.000981,0.001500,0.249996,0,0);-ms-transform:matrix(0.163472,-0.000981,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163472,-0.000981,0.001500,0.249996,0,0);}
.meb_c00308{transform:matrix(0.164542,-0.000987,0.001500,0.249996,0,0);-ms-transform:matrix(0.164542,-0.000987,0.001500,0.249996,0,0);-webkit-transform:matrix(0.164542,-0.000987,0.001500,0.249996,0,0);}
.m29_c00308{transform:matrix(0.164772,-0.000989,0.001500,0.249996,0,0);-ms-transform:matrix(0.164772,-0.000989,0.001500,0.249996,0,0);-webkit-transform:matrix(0.164772,-0.000989,0.001500,0.249996,0,0);}
.m11a_c00308{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);}
.m3d_c00308{transform:matrix(0.165171,-0.001156,0.001750,0.249994,0,0);-ms-transform:matrix(0.165171,-0.001156,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165171,-0.001156,0.001750,0.249994,0,0);}
.m55_c00308{transform:matrix(0.165976,-0.001162,0.001750,0.249994,0,0);-ms-transform:matrix(0.165976,-0.001162,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165976,-0.001162,0.001750,0.249994,0,0);}
.m61_c00308{transform:matrix(0.166751,-0.001167,0.001750,0.249994,0,0);-ms-transform:matrix(0.166751,-0.001167,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166751,-0.001167,0.001750,0.249994,0,0);}
.mab_c00308{transform:matrix(0.166992,-0.001002,0.001500,0.249996,0,0);-ms-transform:matrix(0.166992,-0.001002,0.001500,0.249996,0,0);-webkit-transform:matrix(0.166992,-0.001002,0.001500,0.249996,0,0);}
.m6a_c00308{transform:matrix(0.168606,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168606,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168606,-0.001180,0.001750,0.249994,0,0);}
.m113_c00308{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);}
.m32_c00308{transform:matrix(0.169487,-0.001017,0.001500,0.249996,0,0);-ms-transform:matrix(0.169487,-0.001017,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169487,-0.001017,0.001500,0.249996,0,0);}
.m72_c00308{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);}
.m1a_c00308{transform:matrix(0.170057,-0.001020,0.001500,0.249996,0,0);-ms-transform:matrix(0.170057,-0.001020,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170057,-0.001020,0.001500,0.249996,0,0);}
.mba_c00308{transform:matrix(0.170407,-0.001022,0.001500,0.249996,0,0);-ms-transform:matrix(0.170407,-0.001022,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170407,-0.001022,0.001500,0.249996,0,0);}
.mca_c00308{transform:matrix(0.170422,-0.001023,0.001500,0.249996,0,0);-ms-transform:matrix(0.170422,-0.001023,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170422,-0.001023,0.001500,0.249996,0,0);}
.md9_c00308{transform:matrix(0.170742,-0.001024,0.001500,0.249996,0,0);-ms-transform:matrix(0.170742,-0.001024,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170742,-0.001024,0.001500,0.249996,0,0);}
.m112_c00308{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);}
.m14a_c00308{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);}
.m119_c00308{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);}
.me6_c00308{transform:matrix(0.171502,-0.001029,0.001500,0.249996,0,0);-ms-transform:matrix(0.171502,-0.001029,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171502,-0.001029,0.001500,0.249996,0,0);}
.m5a_c00308{transform:matrix(0.171846,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171846,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171846,-0.001203,0.001750,0.249994,0,0);}
.m57_c00308{transform:matrix(0.171851,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171851,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171851,-0.001203,0.001750,0.249994,0,0);}
.m8c_c00308{transform:matrix(0.171917,-0.001032,0.001500,0.249996,0,0);-ms-transform:matrix(0.171917,-0.001032,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171917,-0.001032,0.001500,0.249996,0,0);}
.m123_c00308{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);}
.mdd_c00308{transform:matrix(0.172057,-0.001032,0.001500,0.249996,0,0);-ms-transform:matrix(0.172057,-0.001032,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172057,-0.001032,0.001500,0.249996,0,0);}
.m70_c00308{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_c00308{transform:matrix(0.172417,-0.001035,0.001500,0.249996,0,0);-ms-transform:matrix(0.172417,-0.001035,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172417,-0.001035,0.001500,0.249996,0,0);}
.m3a_c00308{transform:matrix(0.172967,-0.001038,0.001500,0.249996,0,0);-ms-transform:matrix(0.172967,-0.001038,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172967,-0.001038,0.001500,0.249996,0,0);}
.mde_c00308{transform:matrix(0.173257,-0.001040,0.001500,0.249996,0,0);-ms-transform:matrix(0.173257,-0.001040,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173257,-0.001040,0.001500,0.249996,0,0);}
.m82_c00308{transform:matrix(0.173547,-0.001041,0.001500,0.249996,0,0);-ms-transform:matrix(0.173547,-0.001041,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173547,-0.001041,0.001500,0.249996,0,0);}
.m121_c00308{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);}
.m7e_c00308{transform:matrix(0.174517,-0.001047,0.001500,0.249996,0,0);-ms-transform:matrix(0.174517,-0.001047,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174517,-0.001047,0.001500,0.249996,0,0);}
.me5_c00308{transform:matrix(0.174732,-0.001048,0.001500,0.249996,0,0);-ms-transform:matrix(0.174732,-0.001048,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174732,-0.001048,0.001500,0.249996,0,0);}
.m41_c00308{transform:matrix(0.174836,-0.001224,0.001750,0.249994,0,0);-ms-transform:matrix(0.174836,-0.001224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174836,-0.001224,0.001750,0.249994,0,0);}
.m122_c00308{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);}
.m10c_c00308{transform:matrix(0.175737,-0.001054,0.001500,0.249996,0,0);-ms-transform:matrix(0.175737,-0.001054,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175737,-0.001054,0.001500,0.249996,0,0);}
.m10f_c00308{transform:matrix(0.176102,-0.001057,0.001500,0.249996,0,0);-ms-transform:matrix(0.176102,-0.001057,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176102,-0.001057,0.001500,0.249996,0,0);}
.me7_c00308{transform:matrix(0.176112,-0.001057,0.001500,0.249996,0,0);-ms-transform:matrix(0.176112,-0.001057,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176112,-0.001057,0.001500,0.249996,0,0);}
.m20_c00308{transform:matrix(0.176142,-0.001057,0.001500,0.249996,0,0);-ms-transform:matrix(0.176142,-0.001057,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176142,-0.001057,0.001500,0.249996,0,0);}
.m147_c00308{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);}
.ma8_c00308{transform:matrix(0.177447,-0.001065,0.001500,0.249996,0,0);-ms-transform:matrix(0.177447,-0.001065,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177447,-0.001065,0.001500,0.249996,0,0);}
.m30_c00308{transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);-ms-transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);}
.m12_c00308{transform:matrix(0.177642,-0.001066,0.001500,0.249996,0,0);-ms-transform:matrix(0.177642,-0.001066,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177642,-0.001066,0.001500,0.249996,0,0);}
.m4e_c00308{transform:matrix(0.177766,-0.001244,0.001750,0.249994,0,0);-ms-transform:matrix(0.177766,-0.001244,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177766,-0.001244,0.001750,0.249994,0,0);}
.m146_c00308{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);}
.mcc_c00308{transform:matrix(0.178047,-0.001068,0.001500,0.249996,0,0);-ms-transform:matrix(0.178047,-0.001068,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178047,-0.001068,0.001500,0.249996,0,0);}
.mf0_c00308{transform:matrix(0.178797,-0.001073,0.001500,0.249996,0,0);-ms-transform:matrix(0.178797,-0.001073,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178797,-0.001073,0.001500,0.249996,0,0);}
.m9f_c00308{transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);-ms-transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);}
.m5d_c00308{transform:matrix(0.179741,-0.001258,0.001750,0.249994,0,0);-ms-transform:matrix(0.179741,-0.001258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179741,-0.001258,0.001750,0.249994,0,0);}
.m4b_c00308{transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180286,-0.001262,0.001750,0.249994,0,0);}
.ma0_c00308{transform:matrix(0.180347,-0.001082,0.001500,0.249996,0,0);-ms-transform:matrix(0.180347,-0.001082,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180347,-0.001082,0.001500,0.249996,0,0);}
.me2_c00308{transform:matrix(0.180357,-0.001082,0.001500,0.249996,0,0);-ms-transform:matrix(0.180357,-0.001082,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180357,-0.001082,0.001500,0.249996,0,0);}
.m14_c00308{transform:matrix(0.180527,-0.001083,0.001500,0.249996,0,0);-ms-transform:matrix(0.180527,-0.001083,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180527,-0.001083,0.001500,0.249996,0,0);}
.m15_c00308{transform:matrix(0.180582,-0.001083,0.001500,0.249996,0,0);-ms-transform:matrix(0.180582,-0.001083,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180582,-0.001083,0.001500,0.249996,0,0);}
.m149_c00308{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);}
.m4a_c00308{transform:matrix(0.180761,-0.001265,0.001750,0.249994,0,0);-ms-transform:matrix(0.180761,-0.001265,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180761,-0.001265,0.001750,0.249994,0,0);}
.m13_c00308{transform:matrix(0.180822,-0.001085,0.001500,0.249996,0,0);-ms-transform:matrix(0.180822,-0.001085,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180822,-0.001085,0.001500,0.249996,0,0);}
.m126_c00308{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);}
.m8d_c00308{transform:matrix(0.181832,-0.001091,0.001500,0.249996,0,0);-ms-transform:matrix(0.181832,-0.001091,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181832,-0.001091,0.001500,0.249996,0,0);}
.mf7_c00308{transform:matrix(0.181967,-0.001092,0.001500,0.249996,0,0);-ms-transform:matrix(0.181967,-0.001092,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181967,-0.001092,0.001500,0.249996,0,0);}
.ma9_c00308{transform:matrix(0.182137,-0.001093,0.001500,0.249996,0,0);-ms-transform:matrix(0.182137,-0.001093,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182137,-0.001093,0.001500,0.249996,0,0);}
.m89_c00308{transform:matrix(0.182277,-0.001094,0.001500,0.249996,0,0);-ms-transform:matrix(0.182277,-0.001094,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182277,-0.001094,0.001500,0.249996,0,0);}
.mee_c00308{transform:matrix(0.182307,-0.001094,0.001500,0.249996,0,0);-ms-transform:matrix(0.182307,-0.001094,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182307,-0.001094,0.001500,0.249996,0,0);}
.me_c00308{transform:matrix(0.182452,-0.001095,0.001500,0.249996,0,0);-ms-transform:matrix(0.182452,-0.001095,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182452,-0.001095,0.001500,0.249996,0,0);}
.m48_c00308{transform:matrix(0.182641,-0.001278,0.001750,0.249994,0,0);-ms-transform:matrix(0.182641,-0.001278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182641,-0.001278,0.001750,0.249994,0,0);}
.mb6_c00308{transform:matrix(0.182877,-0.001097,0.001500,0.249996,0,0);-ms-transform:matrix(0.182877,-0.001097,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182877,-0.001097,0.001500,0.249996,0,0);}
.m11_c00308{transform:matrix(0.182907,-0.001097,0.001500,0.249996,0,0);-ms-transform:matrix(0.182907,-0.001097,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182907,-0.001097,0.001500,0.249996,0,0);}
.m2d_c00308{transform:matrix(0.183167,-0.001099,0.001500,0.249996,0,0);-ms-transform:matrix(0.183167,-0.001099,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183167,-0.001099,0.001500,0.249996,0,0);}
.m13e_c00308{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_c00308{transform:matrix(0.183262,-0.001100,0.001500,0.249996,0,0);-ms-transform:matrix(0.183262,-0.001100,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183262,-0.001100,0.001500,0.249996,0,0);}
.m93_c00308{transform:matrix(0.183722,-0.001102,0.001500,0.249996,0,0);-ms-transform:matrix(0.183722,-0.001102,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183722,-0.001102,0.001500,0.249996,0,0);}
.m12b_c00308{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);}
.m7c_c00308{transform:matrix(0.184232,-0.001105,0.001500,0.249996,0,0);-ms-transform:matrix(0.184232,-0.001105,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184232,-0.001105,0.001500,0.249996,0,0);}
.m13d_c00308{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);}
.m11e_c00308{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);}
.m25_c00308{transform:matrix(0.184957,-0.001110,0.001500,0.249996,0,0);-ms-transform:matrix(0.184957,-0.001110,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184957,-0.001110,0.001500,0.249996,0,0);}
.m24_c00308{transform:matrix(0.185332,-0.001112,0.001500,0.249996,0,0);-ms-transform:matrix(0.185332,-0.001112,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185332,-0.001112,0.001500,0.249996,0,0);}
.m9b_c00308{transform:matrix(0.185817,-0.001115,0.001500,0.249996,0,0);-ms-transform:matrix(0.185817,-0.001115,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185817,-0.001115,0.001500,0.249996,0,0);}
.md4_c00308{transform:matrix(0.185942,-0.001116,0.001500,0.249996,0,0);-ms-transform:matrix(0.185942,-0.001116,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185942,-0.001116,0.001500,0.249996,0,0);}
.m45_c00308{transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186145,-0.001303,0.001750,0.249994,0,0);}
.m10a_c00308{transform:matrix(0.186262,-0.001118,0.001500,0.249996,0,0);-ms-transform:matrix(0.186262,-0.001118,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186262,-0.001118,0.001500,0.249996,0,0);}
.m140_c00308{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);}
.mf4_c00308{transform:matrix(0.186492,-0.001119,0.001500,0.249996,0,0);-ms-transform:matrix(0.186492,-0.001119,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186492,-0.001119,0.001500,0.249996,0,0);}
.m5b_c00308{transform:matrix(0.186925,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186925,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186925,-0.001308,0.001750,0.249994,0,0);}
.m125_c00308{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.187062,-0.001122,0.001500,0.249996,0,0);-ms-transform:matrix(0.187062,-0.001122,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187062,-0.001122,0.001500,0.249996,0,0);}
.m51_c00308{transform:matrix(0.187095,-0.001310,0.001750,0.249994,0,0);-ms-transform:matrix(0.187095,-0.001310,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187095,-0.001310,0.001750,0.249994,0,0);}
.mc4_c00308{transform:matrix(0.187287,-0.001124,0.001500,0.249996,0,0);-ms-transform:matrix(0.187287,-0.001124,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187287,-0.001124,0.001500,0.249996,0,0);}
.m49_c00308{transform:matrix(0.187460,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187460,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187460,-0.001312,0.001750,0.249994,0,0);}
.mff_c00308{transform:matrix(0.187897,-0.001127,0.001500,0.249996,0,0);-ms-transform:matrix(0.187897,-0.001127,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187897,-0.001127,0.001500,0.249996,0,0);}
.m7_c00308{transform:matrix(0.187988,-0.006774,0.009003,0.249838,0,0);-ms-transform:matrix(0.187988,-0.006774,0.009003,0.249838,0,0);-webkit-transform:matrix(0.187988,-0.006774,0.009003,0.249838,0,0);}
.m92_c00308{transform:matrix(0.188392,-0.001130,0.001500,0.249996,0,0);-ms-transform:matrix(0.188392,-0.001130,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188392,-0.001130,0.001500,0.249996,0,0);}
.ma4_c00308{transform:matrix(0.188782,-0.001133,0.001500,0.249996,0,0);-ms-transform:matrix(0.188782,-0.001133,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188782,-0.001133,0.001500,0.249996,0,0);}
.mac_c00308{transform:matrix(0.188932,-0.001134,0.001500,0.249996,0,0);-ms-transform:matrix(0.188932,-0.001134,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188932,-0.001134,0.001500,0.249996,0,0);}
.m13f_c00308{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);}
.m98_c00308{transform:matrix(0.189412,-0.001136,0.001500,0.249996,0,0);-ms-transform:matrix(0.189412,-0.001136,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189412,-0.001136,0.001500,0.249996,0,0);}
.mf2_c00308{transform:matrix(0.189627,-0.001138,0.001500,0.249996,0,0);-ms-transform:matrix(0.189627,-0.001138,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189627,-0.001138,0.001500,0.249996,0,0);}
.m6d_c00308{transform:matrix(0.189890,-0.001329,0.001750,0.249994,0,0);-ms-transform:matrix(0.189890,-0.001329,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189890,-0.001329,0.001750,0.249994,0,0);}
.m3b_c00308{transform:matrix(0.190012,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.190012,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190012,-0.001140,0.001500,0.249996,0,0);}
.mae_c00308{transform:matrix(0.190297,-0.001142,0.001500,0.249996,0,0);-ms-transform:matrix(0.190297,-0.001142,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190297,-0.001142,0.001500,0.249996,0,0);}
.m137_c00308{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);}
.m134_c00308{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.191072,-0.001146,0.001500,0.249996,0,0);-ms-transform:matrix(0.191072,-0.001146,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191072,-0.001146,0.001500,0.249996,0,0);}
.me4_c00308{transform:matrix(0.191287,-0.001148,0.001500,0.249996,0,0);-ms-transform:matrix(0.191287,-0.001148,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191287,-0.001148,0.001500,0.249996,0,0);}
.m99_c00308{transform:matrix(0.191367,-0.001148,0.001500,0.249996,0,0);-ms-transform:matrix(0.191367,-0.001148,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191367,-0.001148,0.001500,0.249996,0,0);}
.m27_c00308{transform:matrix(0.191442,-0.001149,0.001500,0.249996,0,0);-ms-transform:matrix(0.191442,-0.001149,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191442,-0.001149,0.001500,0.249996,0,0);}
.mcb_c00308{transform:matrix(0.191682,-0.001150,0.001500,0.249996,0,0);-ms-transform:matrix(0.191682,-0.001150,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191682,-0.001150,0.001500,0.249996,0,0);}
.m9c_c00308{transform:matrix(0.191742,-0.001150,0.001500,0.249996,0,0);-ms-transform:matrix(0.191742,-0.001150,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191742,-0.001150,0.001500,0.249996,0,0);}
.m138_c00308{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);}
.m136_c00308{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);}
.m67_c00308{transform:matrix(0.192200,-0.001345,0.001750,0.249994,0,0);-ms-transform:matrix(0.192200,-0.001345,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192200,-0.001345,0.001750,0.249994,0,0);}
.mbb_c00308{transform:matrix(0.192262,-0.001154,0.001500,0.249996,0,0);-ms-transform:matrix(0.192262,-0.001154,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192262,-0.001154,0.001500,0.249996,0,0);}
.m12f_c00308{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);}
.m34_c00308{transform:matrix(0.193137,-0.001159,0.001500,0.249996,0,0);-ms-transform:matrix(0.193137,-0.001159,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193137,-0.001159,0.001500,0.249996,0,0);}
.m13b_c00308{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);}
.m13a_c00308{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);}
.m53_c00308{transform:matrix(0.193770,-0.001356,0.001750,0.249994,0,0);-ms-transform:matrix(0.193770,-0.001356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193770,-0.001356,0.001750,0.249994,0,0);}
.mad_c00308{transform:matrix(0.193972,-0.001164,0.001500,0.249996,0,0);-ms-transform:matrix(0.193972,-0.001164,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193972,-0.001164,0.001500,0.249996,0,0);}
.m19_c00308{transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-ms-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);}
.m107_c00308{transform:matrix(0.194721,-0.001168,0.001500,0.249996,0,0);-ms-transform:matrix(0.194721,-0.001168,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194721,-0.001168,0.001500,0.249996,0,0);}
.m2c_c00308{transform:matrix(0.194726,-0.001168,0.001500,0.249996,0,0);-ms-transform:matrix(0.194726,-0.001168,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194726,-0.001168,0.001500,0.249996,0,0);}
.mce_c00308{transform:matrix(0.194821,-0.001169,0.001500,0.249996,0,0);-ms-transform:matrix(0.194821,-0.001169,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194821,-0.001169,0.001500,0.249996,0,0);}
.md6_c00308{transform:matrix(0.195161,-0.001171,0.001500,0.249996,0,0);-ms-transform:matrix(0.195161,-0.001171,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195161,-0.001171,0.001500,0.249996,0,0);}
.m131_c00308{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);}
.m1e_c00308{transform:matrix(0.195401,-0.001172,0.001500,0.249996,0,0);-ms-transform:matrix(0.195401,-0.001172,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195401,-0.001172,0.001500,0.249996,0,0);}
.m54_c00308{transform:matrix(0.195650,-0.001370,0.001750,0.249994,0,0);-ms-transform:matrix(0.195650,-0.001370,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195650,-0.001370,0.001750,0.249994,0,0);}
.me9_c00308{transform:matrix(0.195711,-0.001174,0.001500,0.249996,0,0);-ms-transform:matrix(0.195711,-0.001174,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195711,-0.001174,0.001500,0.249996,0,0);}
.m8f_c00308{transform:matrix(0.195726,-0.001174,0.001500,0.249996,0,0);-ms-transform:matrix(0.195726,-0.001174,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195726,-0.001174,0.001500,0.249996,0,0);}
.mf5_c00308{transform:matrix(0.195751,-0.001175,0.001500,0.249996,0,0);-ms-transform:matrix(0.195751,-0.001175,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195751,-0.001175,0.001500,0.249996,0,0);}
.m2a_c00308{transform:matrix(0.195826,-0.001175,0.001500,0.249996,0,0);-ms-transform:matrix(0.195826,-0.001175,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195826,-0.001175,0.001500,0.249996,0,0);}
.mec_c00308{transform:matrix(0.195856,-0.001175,0.001500,0.249996,0,0);-ms-transform:matrix(0.195856,-0.001175,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195856,-0.001175,0.001500,0.249996,0,0);}
.m100_c00308{transform:matrix(0.196396,-0.001178,0.001500,0.249996,0,0);-ms-transform:matrix(0.196396,-0.001178,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196396,-0.001178,0.001500,0.249996,0,0);}
.m10e_c00308{transform:matrix(0.196911,-0.001181,0.001500,0.249996,0,0);-ms-transform:matrix(0.196911,-0.001181,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196911,-0.001181,0.001500,0.249996,0,0);}
.mcd_c00308{transform:matrix(0.196941,-0.001182,0.001500,0.249996,0,0);-ms-transform:matrix(0.196941,-0.001182,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196941,-0.001182,0.001500,0.249996,0,0);}
.mb1_c00308{transform:matrix(0.196961,-0.001182,0.001500,0.249996,0,0);-ms-transform:matrix(0.196961,-0.001182,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196961,-0.001182,0.001500,0.249996,0,0);}
.m47_c00308{transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197000,-0.001379,0.001750,0.249994,0,0);}
.m1d_c00308{transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);}
.m8b_c00308{transform:matrix(0.197531,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197531,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197531,-0.001185,0.001500,0.249996,0,0);}
.ma6_c00308{transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);}
.m44_c00308{transform:matrix(0.197610,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197610,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197610,-0.001383,0.001750,0.249994,0,0);}
.m8a_c00308{transform:matrix(0.197871,-0.001187,0.001500,0.249996,0,0);-ms-transform:matrix(0.197871,-0.001187,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197871,-0.001187,0.001500,0.249996,0,0);}
.m144_c00308{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);}
.me3_c00308{transform:matrix(0.198146,-0.001189,0.001500,0.249996,0,0);-ms-transform:matrix(0.198146,-0.001189,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198146,-0.001189,0.001500,0.249996,0,0);}
.maf_c00308{transform:matrix(0.198301,-0.001190,0.001500,0.249996,0,0);-ms-transform:matrix(0.198301,-0.001190,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198301,-0.001190,0.001500,0.249996,0,0);}
.mc2_c00308{transform:matrix(0.198546,-0.001191,0.001500,0.249996,0,0);-ms-transform:matrix(0.198546,-0.001191,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198546,-0.001191,0.001500,0.249996,0,0);}
.m17_c00308{transform:matrix(0.198631,-0.001192,0.001500,0.249996,0,0);-ms-transform:matrix(0.198631,-0.001192,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198631,-0.001192,0.001500,0.249996,0,0);}
.mda_c00308{transform:matrix(0.198671,-0.001192,0.001500,0.249996,0,0);-ms-transform:matrix(0.198671,-0.001192,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198671,-0.001192,0.001500,0.249996,0,0);}
.m90_c00308{transform:matrix(0.198971,-0.001194,0.001500,0.249996,0,0);-ms-transform:matrix(0.198971,-0.001194,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198971,-0.001194,0.001500,0.249996,0,0);}
.ma1_c00308{transform:matrix(0.199161,-0.001195,0.001500,0.249996,0,0);-ms-transform:matrix(0.199161,-0.001195,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199161,-0.001195,0.001500,0.249996,0,0);}
.m35_c00308{transform:matrix(0.199836,-0.001199,0.001500,0.249996,0,0);-ms-transform:matrix(0.199836,-0.001199,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199836,-0.001199,0.001500,0.249996,0,0);}
.m43_c00308{transform:matrix(0.200035,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200035,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200035,-0.001400,0.001750,0.249994,0,0);}
.m2b_c00308{transform:matrix(0.200096,-0.001201,0.001500,0.249996,0,0);-ms-transform:matrix(0.200096,-0.001201,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200096,-0.001201,0.001500,0.249996,0,0);}
.mb3_c00308{transform:matrix(0.200521,-0.001203,0.001500,0.249996,0,0);-ms-transform:matrix(0.200521,-0.001203,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200521,-0.001203,0.001500,0.249996,0,0);}
.m6e_c00308{transform:matrix(0.200840,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200840,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200840,-0.001406,0.001750,0.249994,0,0);}
.m139_c00308{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.201300,-0.001409,0.001750,0.249994,0,0);-ms-transform:matrix(0.201300,-0.001409,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201300,-0.001409,0.001750,0.249994,0,0);}
.m91_c00308{transform:matrix(0.201306,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201306,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201306,-0.001208,0.001500,0.249996,0,0);}
.mbd_c00308{transform:matrix(0.201326,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201326,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201326,-0.001208,0.001500,0.249996,0,0);}
.m10_c00308{transform:matrix(0.201436,-0.001209,0.001500,0.249996,0,0);-ms-transform:matrix(0.201436,-0.001209,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201436,-0.001209,0.001500,0.249996,0,0);}
.mcf_c00308{transform:matrix(0.201506,-0.001209,0.001500,0.249996,0,0);-ms-transform:matrix(0.201506,-0.001209,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201506,-0.001209,0.001500,0.249996,0,0);}
.m3c_c00308{transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);-ms-transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202070,-0.001414,0.001750,0.249994,0,0);}
.m12a_c00308{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);}
.mf6_c00308{transform:matrix(0.202631,-0.001216,0.001500,0.249996,0,0);-ms-transform:matrix(0.202631,-0.001216,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202631,-0.001216,0.001500,0.249996,0,0);}
.m143_c00308{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);}
.m4c_c00308{transform:matrix(0.202825,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202825,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202825,-0.001420,0.001750,0.249994,0,0);}
.mf3_c00308{transform:matrix(0.202951,-0.001218,0.001500,0.249996,0,0);-ms-transform:matrix(0.202951,-0.001218,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202951,-0.001218,0.001500,0.249996,0,0);}
.ma7_c00308{transform:matrix(0.203366,-0.001220,0.001500,0.249996,0,0);-ms-transform:matrix(0.203366,-0.001220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203366,-0.001220,0.001500,0.249996,0,0);}
.mb7_c00308{transform:matrix(0.203671,-0.001222,0.001500,0.249996,0,0);-ms-transform:matrix(0.203671,-0.001222,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203671,-0.001222,0.001500,0.249996,0,0);}
.m106_c00308{transform:matrix(0.204296,-0.001226,0.001500,0.249996,0,0);-ms-transform:matrix(0.204296,-0.001226,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204296,-0.001226,0.001500,0.249996,0,0);}
.m110_c00308{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);}
.mfc_c00308{transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-ms-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);}
.m111_c00308{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);}
.m95_c00308{transform:matrix(0.204966,-0.001230,0.001500,0.249996,0,0);-ms-transform:matrix(0.204966,-0.001230,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204966,-0.001230,0.001500,0.249996,0,0);}
.mb5_c00308{transform:matrix(0.206031,-0.001236,0.001500,0.249996,0,0);-ms-transform:matrix(0.206031,-0.001236,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206031,-0.001236,0.001500,0.249996,0,0);}
.me8_c00308{transform:matrix(0.206141,-0.001237,0.001500,0.249996,0,0);-ms-transform:matrix(0.206141,-0.001237,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206141,-0.001237,0.001500,0.249996,0,0);}
.m64_c00308{transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);-ms-transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206165,-0.001443,0.001750,0.249994,0,0);}
.m129_c00308{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);}
.m148_c00308{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);}
.mf9_c00308{transform:matrix(0.206706,-0.001240,0.001500,0.249996,0,0);-ms-transform:matrix(0.206706,-0.001240,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206706,-0.001240,0.001500,0.249996,0,0);}
.m103_c00308{transform:matrix(0.206921,-0.001242,0.001500,0.249996,0,0);-ms-transform:matrix(0.206921,-0.001242,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206921,-0.001242,0.001500,0.249996,0,0);}
.md7_c00308{transform:matrix(0.207011,-0.001242,0.001500,0.249996,0,0);-ms-transform:matrix(0.207011,-0.001242,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207011,-0.001242,0.001500,0.249996,0,0);}
.m9d_c00308{transform:matrix(0.207256,-0.001244,0.001500,0.249996,0,0);-ms-transform:matrix(0.207256,-0.001244,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207256,-0.001244,0.001500,0.249996,0,0);}
.mdf_c00308{transform:matrix(0.207541,-0.001245,0.001500,0.249996,0,0);-ms-transform:matrix(0.207541,-0.001245,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207541,-0.001245,0.001500,0.249996,0,0);}
.m108_c00308{transform:matrix(0.207671,-0.001246,0.001500,0.249996,0,0);-ms-transform:matrix(0.207671,-0.001246,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207671,-0.001246,0.001500,0.249996,0,0);}
.mfd_c00308{transform:matrix(0.208141,-0.001249,0.001500,0.249996,0,0);-ms-transform:matrix(0.208141,-0.001249,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208141,-0.001249,0.001500,0.249996,0,0);}
.md3_c00308{transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-ms-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);}
.m8_c00308{transform:matrix(0.208934,-0.007529,0.009003,0.249838,0,0);-ms-transform:matrix(0.208934,-0.007529,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208934,-0.007529,0.009003,0.249838,0,0);}
.mc_c00308{transform:matrix(0.210601,-0.001264,0.001500,0.249996,0,0);-ms-transform:matrix(0.210601,-0.001264,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210601,-0.001264,0.001500,0.249996,0,0);}
.m73_c00308{transform:matrix(0.211411,-0.001268,0.001500,0.249996,0,0);-ms-transform:matrix(0.211411,-0.001268,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211411,-0.001268,0.001500,0.249996,0,0);}
.m88_c00308{transform:matrix(0.211666,-0.001270,0.001500,0.249996,0,0);-ms-transform:matrix(0.211666,-0.001270,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211666,-0.001270,0.001500,0.249996,0,0);}
.m117_c00308{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);}
.m7d_c00308{transform:matrix(0.212326,-0.001274,0.001500,0.249996,0,0);-ms-transform:matrix(0.212326,-0.001274,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212326,-0.001274,0.001500,0.249996,0,0);}
.m1c_c00308{transform:matrix(0.214091,-0.001285,0.001500,0.249996,0,0);-ms-transform:matrix(0.214091,-0.001285,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214091,-0.001285,0.001500,0.249996,0,0);}
.m22_c00308{transform:matrix(0.214491,-0.001287,0.001500,0.249996,0,0);-ms-transform:matrix(0.214491,-0.001287,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214491,-0.001287,0.001500,0.249996,0,0);}
.mc9_c00308{transform:matrix(0.214891,-0.001289,0.001500,0.249996,0,0);-ms-transform:matrix(0.214891,-0.001289,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214891,-0.001289,0.001500,0.249996,0,0);}
.mc1_c00308{transform:matrix(0.214986,-0.001290,0.001500,0.249996,0,0);-ms-transform:matrix(0.214986,-0.001290,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214986,-0.001290,0.001500,0.249996,0,0);}
.m11b_c00308{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);}
.m135_c00308{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);}
.mc7_c00308{transform:matrix(0.215386,-0.001292,0.001500,0.249996,0,0);-ms-transform:matrix(0.215386,-0.001292,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215386,-0.001292,0.001500,0.249996,0,0);}
.m109_c00308{transform:matrix(0.215866,-0.001295,0.001500,0.249996,0,0);-ms-transform:matrix(0.215866,-0.001295,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215866,-0.001295,0.001500,0.249996,0,0);}
.mc8_c00308{transform:matrix(0.216011,-0.001296,0.001500,0.249996,0,0);-ms-transform:matrix(0.216011,-0.001296,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216011,-0.001296,0.001500,0.249996,0,0);}
.mbf_c00308{transform:matrix(0.216561,-0.001299,0.001500,0.249996,0,0);-ms-transform:matrix(0.216561,-0.001299,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216561,-0.001299,0.001500,0.249996,0,0);}
.m10d_c00308{transform:matrix(0.217391,-0.001304,0.001500,0.249996,0,0);-ms-transform:matrix(0.217391,-0.001304,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217391,-0.001304,0.001500,0.249996,0,0);}
.m86_c00308{transform:matrix(0.217411,-0.001304,0.001500,0.249996,0,0);-ms-transform:matrix(0.217411,-0.001304,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217411,-0.001304,0.001500,0.249996,0,0);}
.m6f_c00308{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);}
.mb2_c00308{transform:matrix(0.217936,-0.001308,0.001500,0.249996,0,0);-ms-transform:matrix(0.217936,-0.001308,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217936,-0.001308,0.001500,0.249996,0,0);}
.m7b_c00308{transform:matrix(0.218436,-0.001311,0.001500,0.249996,0,0);-ms-transform:matrix(0.218436,-0.001311,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218436,-0.001311,0.001500,0.249996,0,0);}
.mfe_c00308{transform:matrix(0.218576,-0.001311,0.001500,0.249996,0,0);-ms-transform:matrix(0.218576,-0.001311,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218576,-0.001311,0.001500,0.249996,0,0);}
.m145_c00308{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);}
.mb8_c00308{transform:matrix(0.219901,-0.001319,0.001500,0.249996,0,0);-ms-transform:matrix(0.219901,-0.001319,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219901,-0.001319,0.001500,0.249996,0,0);}
.m102_c00308{transform:matrix(0.221186,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221186,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221186,-0.001327,0.001500,0.249996,0,0);}
.maa_c00308{transform:matrix(0.221486,-0.001329,0.001500,0.249996,0,0);-ms-transform:matrix(0.221486,-0.001329,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221486,-0.001329,0.001500,0.249996,0,0);}
.ma3_c00308{transform:matrix(0.221676,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221676,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221676,-0.001330,0.001500,0.249996,0,0);}
.md5_c00308{transform:matrix(0.221861,-0.001331,0.001500,0.249996,0,0);-ms-transform:matrix(0.221861,-0.001331,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221861,-0.001331,0.001500,0.249996,0,0);}
.mb9_c00308{transform:matrix(0.223596,-0.001342,0.001500,0.249996,0,0);-ms-transform:matrix(0.223596,-0.001342,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223596,-0.001342,0.001500,0.249996,0,0);}
.mfb_c00308{transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);-ms-transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);}
.mc3_c00308{transform:matrix(0.223941,-0.001344,0.001500,0.249996,0,0);-ms-transform:matrix(0.223941,-0.001344,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223941,-0.001344,0.001500,0.249996,0,0);}
.m18_c00308{transform:matrix(0.224261,-0.001346,0.001500,0.249996,0,0);-ms-transform:matrix(0.224261,-0.001346,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224261,-0.001346,0.001500,0.249996,0,0);}
.m1f_c00308{transform:matrix(0.224586,-0.001348,0.001500,0.249996,0,0);-ms-transform:matrix(0.224586,-0.001348,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224586,-0.001348,0.001500,0.249996,0,0);}
.mf_c00308{transform:matrix(0.225706,-0.001354,0.001500,0.249996,0,0);-ms-transform:matrix(0.225706,-0.001354,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225706,-0.001354,0.001500,0.249996,0,0);}
.m12c_c00308{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);}
.m12d_c00308{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);}
.m11f_c00308{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);}
.mbc_c00308{transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);-ms-transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);}
.m5f_c00308{transform:matrix(0.231949,-0.001624,0.001750,0.249994,0,0);-ms-transform:matrix(0.231949,-0.001624,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231949,-0.001624,0.001750,0.249994,0,0);}
.m21_c00308{transform:matrix(0.233371,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233371,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233371,-0.001400,0.001500,0.249996,0,0);}
.m105_c00308{transform:matrix(0.236146,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236146,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236146,-0.001417,0.001500,0.249996,0,0);}
.m5e_c00308{transform:matrix(0.236324,-0.001654,0.001750,0.249994,0,0);-ms-transform:matrix(0.236324,-0.001654,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236324,-0.001654,0.001750,0.249994,0,0);}
.m7a_c00308{transform:matrix(0.236586,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236586,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236586,-0.001420,0.001500,0.249996,0,0);}
.med_c00308{transform:matrix(0.237391,-0.001424,0.001500,0.249996,0,0);-ms-transform:matrix(0.237391,-0.001424,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237391,-0.001424,0.001500,0.249996,0,0);}
.m7f_c00308{transform:matrix(0.238301,-0.001430,0.001500,0.249996,0,0);-ms-transform:matrix(0.238301,-0.001430,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238301,-0.001430,0.001500,0.249996,0,0);}
.m11d_c00308{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);}
.m23_c00308{transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);-ms-transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);}
.mc6_c00308{transform:matrix(0.240661,-0.001444,0.001500,0.249996,0,0);-ms-transform:matrix(0.240661,-0.001444,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240661,-0.001444,0.001500,0.249996,0,0);}
.mbe_c00308{transform:matrix(0.241001,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.241001,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241001,-0.001446,0.001500,0.249996,0,0);}
.m26_c00308{transform:matrix(0.241666,-0.001450,0.001500,0.249996,0,0);-ms-transform:matrix(0.241666,-0.001450,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241666,-0.001450,0.001500,0.249996,0,0);}
.m69_c00308{transform:matrix(0.241739,-0.001692,0.001750,0.249994,0,0);-ms-transform:matrix(0.241739,-0.001692,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241739,-0.001692,0.001750,0.249994,0,0);}
.m142_c00308{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);}
.m133_c00308{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.242496,-0.001455,0.001500,0.249996,0,0);-ms-transform:matrix(0.242496,-0.001455,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242496,-0.001455,0.001500,0.249996,0,0);}
.mb0_c00308{transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);}
.m128_c00308{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);}
.mdb_c00308{transform:matrix(0.245326,-0.001472,0.001500,0.249996,0,0);-ms-transform:matrix(0.245326,-0.001472,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245326,-0.001472,0.001500,0.249996,0,0);}
.m14b_c00308{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);}
.m5_c00308{transform:matrix(0.248199,-0.008944,0.009003,0.249838,0,0);-ms-transform:matrix(0.248199,-0.008944,0.009003,0.249838,0,0);-webkit-transform:matrix(0.248199,-0.008944,0.009003,0.249838,0,0);}
.m12e_c00308{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);}
.m63_c00308{transform:matrix(0.251684,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251684,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251684,-0.001762,0.001750,0.249994,0,0);}
.m80_c00308{transform:matrix(0.252430,-0.001515,0.001500,0.249996,0,0);-ms-transform:matrix(0.252430,-0.001515,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252430,-0.001515,0.001500,0.249996,0,0);}
.m10b_c00308{transform:matrix(0.252740,-0.001516,0.001500,0.249996,0,0);-ms-transform:matrix(0.252740,-0.001516,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252740,-0.001516,0.001500,0.249996,0,0);}
.m101_c00308{transform:matrix(0.255910,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255910,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255910,-0.001535,0.001500,0.249996,0,0);}
.m116_c00308{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);}
.m127_c00308{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.263630,-0.001582,0.001500,0.249996,0,0);-ms-transform:matrix(0.263630,-0.001582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263630,-0.001582,0.001500,0.249996,0,0);}
.m66_c00308{transform:matrix(0.276858,-0.001938,0.001750,0.249994,0,0);-ms-transform:matrix(0.276858,-0.001938,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276858,-0.001938,0.001750,0.249994,0,0);}
.m6_c00308{transform:matrix(0.278659,-0.010042,0.009003,0.249838,0,0);-ms-transform:matrix(0.278659,-0.010042,0.009003,0.249838,0,0);-webkit-transform:matrix(0.278659,-0.010042,0.009003,0.249838,0,0);}
.m115_c00308{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);}
.m4_c00308{transform:matrix(0.281592,-0.010147,0.009003,0.249838,0,0);-ms-transform:matrix(0.281592,-0.010147,0.009003,0.249838,0,0);-webkit-transform:matrix(0.281592,-0.010147,0.009003,0.249838,0,0);}
.m68_c00308{transform:matrix(0.283033,-0.001981,0.001750,0.249994,0,0);-ms-transform:matrix(0.283033,-0.001981,0.001750,0.249994,0,0);-webkit-transform:matrix(0.283033,-0.001981,0.001750,0.249994,0,0);}
.m75_c00308{transform:matrix(0.310549,-0.001863,0.001500,0.249996,0,0);-ms-transform:matrix(0.310549,-0.001863,0.001500,0.249996,0,0);-webkit-transform:matrix(0.310549,-0.001863,0.001500,0.249996,0,0);}
.mb4_c00308{transform:matrix(0.321924,-0.001932,0.001500,0.249996,0,0);-ms-transform:matrix(0.321924,-0.001932,0.001500,0.249996,0,0);-webkit-transform:matrix(0.321924,-0.001932,0.001500,0.249996,0,0);}
.m132_c00308{transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.327039,-0.001962,0.001500,0.249996,0,0);-ms-transform:matrix(0.327039,-0.001962,0.001500,0.249996,0,0);-webkit-transform:matrix(0.327039,-0.001962,0.001500,0.249996,0,0);}
.m65_c00308{transform:matrix(0.327307,-0.002291,0.001750,0.249994,0,0);-ms-transform:matrix(0.327307,-0.002291,0.001750,0.249994,0,0);-webkit-transform:matrix(0.327307,-0.002291,0.001750,0.249994,0,0);}
.ma_c00308{transform:matrix(0.330624,-0.001984,0.001500,0.249996,0,0);-ms-transform:matrix(0.330624,-0.001984,0.001500,0.249996,0,0);-webkit-transform:matrix(0.330624,-0.001984,0.001500,0.249996,0,0);}
.m79_c00308{transform:matrix(0.331664,-0.001990,0.001500,0.249996,0,0);-ms-transform:matrix(0.331664,-0.001990,0.001500,0.249996,0,0);-webkit-transform:matrix(0.331664,-0.001990,0.001500,0.249996,0,0);}
.m1_c00308{transform:matrix(0.334213,-0.012044,0.009003,0.249838,0,0);-ms-transform:matrix(0.334213,-0.012044,0.009003,0.249838,0,0);-webkit-transform:matrix(0.334213,-0.012044,0.009003,0.249838,0,0);}
.mc0_c00308{transform:matrix(0.338959,-0.002034,0.001500,0.249996,0,0);-ms-transform:matrix(0.338959,-0.002034,0.001500,0.249996,0,0);-webkit-transform:matrix(0.338959,-0.002034,0.001500,0.249996,0,0);}
.mfa_c00308{transform:matrix(0.339624,-0.002038,0.001500,0.249996,0,0);-ms-transform:matrix(0.339624,-0.002038,0.001500,0.249996,0,0);-webkit-transform:matrix(0.339624,-0.002038,0.001500,0.249996,0,0);}
.m71_c00308{transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367420,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.382753,-0.002297,0.001500,0.249996,0,0);-ms-transform:matrix(0.382753,-0.002297,0.001500,0.249996,0,0);-webkit-transform:matrix(0.382753,-0.002297,0.001500,0.249996,0,0);}
.m76_c00308{transform:matrix(0.390358,-0.002342,0.001500,0.249996,0,0);-ms-transform:matrix(0.390358,-0.002342,0.001500,0.249996,0,0);-webkit-transform:matrix(0.390358,-0.002342,0.001500,0.249996,0,0);}
.m2f_c00308{transform:matrix(0.397103,-0.002383,0.001500,0.249996,0,0);-ms-transform:matrix(0.397103,-0.002383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.397103,-0.002383,0.001500,0.249996,0,0);}
.mf8_c00308{transform:matrix(0.422417,-0.002535,0.001500,0.249996,0,0);-ms-transform:matrix(0.422417,-0.002535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.422417,-0.002535,0.001500,0.249996,0,0);}
.mef_c00308{transform:matrix(0.480826,-0.002885,0.001500,0.249996,0,0);-ms-transform:matrix(0.480826,-0.002885,0.001500,0.249996,0,0);-webkit-transform:matrix(0.480826,-0.002885,0.001500,0.249996,0,0);}
.m78_c00308{transform:matrix(0.491261,-0.002948,0.001500,0.249996,0,0);-ms-transform:matrix(0.491261,-0.002948,0.001500,0.249996,0,0);-webkit-transform:matrix(0.491261,-0.002948,0.001500,0.249996,0,0);}
.m2_c00308{transform:matrix(0.561975,-0.020251,0.009003,0.249838,0,0);-ms-transform:matrix(0.561975,-0.020251,0.009003,0.249838,0,0);-webkit-transform:matrix(0.561975,-0.020251,0.009003,0.249838,0,0);}
.m39_c00308{transform:matrix(0.572045,-0.003432,0.001500,0.249996,0,0);-ms-transform:matrix(0.572045,-0.003432,0.001500,0.249996,0,0);-webkit-transform:matrix(0.572045,-0.003432,0.001500,0.249996,0,0);}
.m3_c00308{transform:matrix(0.608620,-0.021932,0.009003,0.249838,0,0);-ms-transform:matrix(0.608620,-0.021932,0.009003,0.249838,0,0);-webkit-transform:matrix(0.608620,-0.021932,0.009003,0.249838,0,0);}
.m16_c00308{transform:matrix(0.638229,-0.003829,0.001500,0.249996,0,0);-ms-transform:matrix(0.638229,-0.003829,0.001500,0.249996,0,0);-webkit-transform:matrix(0.638229,-0.003829,0.001500,0.249996,0,0);}
.m0_c00308{transform:matrix(0.765298,-0.027578,0.009003,0.249838,0,0);-ms-transform:matrix(0.765298,-0.027578,0.009003,0.249838,0,0);-webkit-transform:matrix(0.765298,-0.027578,0.009003,0.249838,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;}
._0_c00308{width:17660.407792px;}
.fc0_c00308{color:transparent;}
.fsf_c00308{font-size:23.100000px;}
.fs0_c00308{font-size:60.878590px;}
.fs3_c00308{font-size:63.001134px;}
.fsd_c00308{font-size:65.101172px;}
.fs9_c00308{font-size:68.250000px;}
.fs2_c00308{font-size:68.251228px;}
.fs10_c00308{font-size:69.300000px;}
.fsb_c00308{font-size:69.301247px;}
.fs8_c00308{font-size:69.301698px;}
.fs12_c00308{font-size:70.350000px;}
.fs4_c00308{font-size:70.351266px;}
.fs11_c00308{font-size:71.400000px;}
.fsc_c00308{font-size:71.401285px;}
.fs6_c00308{font-size:71.401749px;}
.fse_c00308{font-size:72.451304px;}
.fs7_c00308{font-size:72.451775px;}
.fsa_c00308{font-size:73.501323px;}
.fs5_c00308{font-size:73.501801px;}
.fs1_c00308{font-size:127.005334px;}
.y0_c00308{bottom:0.000000px;}
.y111_c00308{bottom:146.005500px;}
.y110_c00308{bottom:169.861500px;}
.y10f_c00308{bottom:193.764000px;}
.y10e_c00308{bottom:216.486000px;}
.y10d_c00308{bottom:239.158500px;}
.y10c_c00308{bottom:263.635500px;}
.y10b_c00308{bottom:272.160000px;}
.y101_c00308{bottom:286.050969px;}
.yff_c00308{bottom:286.051038px;}
.y102_c00308{bottom:286.051149px;}
.y100_c00308{bottom:286.051638px;}
.y103_c00308{bottom:286.051680px;}
.y104_c00308{bottom:286.051911px;}
.y107_c00308{bottom:286.052313px;}
.y105_c00308{bottom:286.052622px;}
.y108_c00308{bottom:286.052673px;}
.y106_c00308{bottom:286.052982px;}
.y109_c00308{bottom:286.053384px;}
.y10a_c00308{bottom:286.053435px;}
.yf6_c00308{bottom:308.855988px;}
.yf5_c00308{bottom:308.856348px;}
.yf7_c00308{bottom:308.856399px;}
.yf8_c00308{bottom:308.856459px;}
.yfd_c00308{bottom:308.856492px;}
.yfe_c00308{bottom:308.856612px;}
.yf9_c00308{bottom:308.856630px;}
.yfc_c00308{bottom:308.856801px;}
.yfa_c00308{bottom:308.857050px;}
.yfb_c00308{bottom:308.857110px;}
.yea_c00308{bottom:330.746088px;}
.yeb_c00308{bottom:331.239318px;}
.yec_c00308{bottom:331.494036px;}
.yed_c00308{bottom:331.590246px;}
.yee_c00308{bottom:331.911858px;}
.yef_c00308{bottom:332.072103px;}
.yf0_c00308{bottom:332.408715px;}
.yf1_c00308{bottom:332.825097px;}
.yf2_c00308{bottom:332.982012px;}
.yf3_c00308{bottom:333.240336px;}
.yf4_c00308{bottom:334.027872px;}
.ye9_c00308{bottom:354.351330px;}
.ye7_c00308{bottom:354.351450px;}
.ye8_c00308{bottom:354.351630px;}
.ye6_c00308{bottom:354.352119px;}
.ye5_c00308{bottom:354.352839px;}
.ye3_c00308{bottom:354.352848px;}
.ye4_c00308{bottom:354.353328px;}
.yd6_c00308{bottom:376.108740px;}
.yd7_c00308{bottom:376.332861px;}
.yd8_c00308{bottom:376.777839px;}
.yd9_c00308{bottom:377.096532px;}
.yda_c00308{bottom:377.681916px;}
.ydb_c00308{bottom:377.822385px;}
.ydc_c00308{bottom:378.038592px;}
.ydd_c00308{bottom:378.527658px;}
.yde_c00308{bottom:378.721749px;}
.ydf_c00308{bottom:379.054707px;}
.ye0_c00308{bottom:379.221996px;}
.ye1_c00308{bottom:379.375110px;}
.ye2_c00308{bottom:379.977987px;}
.ycb_c00308{bottom:399.597921px;}
.ycc_c00308{bottom:399.867849px;}
.ycd_c00308{bottom:400.059903px;}
.yce_c00308{bottom:400.403181px;}
.ycf_c00308{bottom:400.576290px;}
.yd0_c00308{bottom:401.127129px;}
.yd1_c00308{bottom:401.373588px;}
.yd2_c00308{bottom:402.304272px;}
.yd3_c00308{bottom:402.512301px;}
.yd4_c00308{bottom:402.852276px;}
.yd5_c00308{bottom:403.331763px;}
.ybe_c00308{bottom:422.279979px;}
.ybf_c00308{bottom:422.814690px;}
.yc0_c00308{bottom:422.905914px;}
.yc1_c00308{bottom:423.085266px;}
.yc2_c00308{bottom:423.464814px;}
.yc3_c00308{bottom:423.722139px;}
.yc4_c00308{bottom:423.909498px;}
.yc5_c00308{bottom:424.214382px;}
.yc6_c00308{bottom:424.546443px;}
.yc7_c00308{bottom:424.786182px;}
.yc8_c00308{bottom:425.235696px;}
.yc9_c00308{bottom:425.413635px;}
.yca_c00308{bottom:425.948769px;}
.yb4_c00308{bottom:444.960339px;}
.yb5_c00308{bottom:445.440042px;}
.yb6_c00308{bottom:445.968879px;}
.yb7_c00308{bottom:446.216463px;}
.yb8_c00308{bottom:446.523228px;}
.yb9_c00308{bottom:447.088857px;}
.yba_c00308{bottom:447.633633px;}
.ybb_c00308{bottom:447.695352px;}
.ybc_c00308{bottom:447.909795px;}
.ybd_c00308{bottom:448.634004px;}
.ya9_c00308{bottom:467.912622px;}
.yaa_c00308{bottom:468.424125px;}
.yab_c00308{bottom:468.713196px;}
.yac_c00308{bottom:469.272240px;}
.yad_c00308{bottom:469.526238px;}
.yae_c00308{bottom:470.025129px;}
.yaf_c00308{bottom:470.198040px;}
.yb0_c00308{bottom:470.533329px;}
.yb1_c00308{bottom:470.982807px;}
.yb2_c00308{bottom:471.289221px;}
.yb3_c00308{bottom:471.541950px;}
.ya0_c00308{bottom:490.861932px;}
.ya1_c00308{bottom:491.417862px;}
.ya2_c00308{bottom:492.024564px;}
.ya3_c00308{bottom:492.191250px;}
.ya4_c00308{bottom:493.032897px;}
.ya5_c00308{bottom:493.213959px;}
.ya6_c00308{bottom:493.519104px;}
.ya7_c00308{bottom:494.165259px;}
.ya8_c00308{bottom:494.430744px;}
.y99_c00308{bottom:515.788764px;}
.y97_c00308{bottom:515.788833px;}
.y9a_c00308{bottom:515.788944px;}
.y9b_c00308{bottom:515.789355px;}
.y98_c00308{bottom:515.789484px;}
.y9d_c00308{bottom:515.789886px;}
.y9c_c00308{bottom:515.790066px;}
.y9e_c00308{bottom:515.790537px;}
.y9f_c00308{bottom:515.791017px;}
.y91_c00308{bottom:538.531467px;}
.y8f_c00308{bottom:538.531776px;}
.y95_c00308{bottom:538.531827px;}
.y92_c00308{bottom:538.531947px;}
.y93_c00308{bottom:538.532007px;}
.y96_c00308{bottom:538.532118px;}
.y90_c00308{bottom:538.532136px;}
.y8e_c00308{bottom:538.532385px;}
.y94_c00308{bottom:538.532607px;}
.y7f_c00308{bottom:561.535635px;}
.y80_c00308{bottom:561.536055px;}
.y81_c00308{bottom:561.536295px;}
.y82_c00308{bottom:561.536415px;}
.y88_c00308{bottom:561.536586px;}
.y8b_c00308{bottom:561.536757px;}
.y83_c00308{bottom:561.537015px;}
.y89_c00308{bottom:561.537117px;}
.y8c_c00308{bottom:561.537177px;}
.y87_c00308{bottom:561.537306px;}
.y8a_c00308{bottom:561.537477px;}
.y84_c00308{bottom:561.537555px;}
.y8d_c00308{bottom:561.537828px;}
.y85_c00308{bottom:561.537855px;}
.y86_c00308{bottom:561.537915px;}
.y71_c00308{bottom:582.660000px;}
.y72_c00308{bottom:582.806097px;}
.y73_c00308{bottom:583.023267px;}
.y74_c00308{bottom:583.130070px;}
.y75_c00308{bottom:583.465356px;}
.y76_c00308{bottom:583.635600px;}
.y77_c00308{bottom:583.805700px;}
.y78_c00308{bottom:584.144190px;}
.y79_c00308{bottom:584.416008px;}
.y7a_c00308{bottom:584.684919px;}
.y7b_c00308{bottom:585.021879px;}
.y7c_c00308{bottom:585.170937px;}
.y7d_c00308{bottom:585.438498px;}
.y7e_c00308{bottom:585.670095px;}
.y70_c00308{bottom:629.623500px;}
.y69_c00308{bottom:652.224954px;}
.y68_c00308{bottom:652.224964px;}
.y6b_c00308{bottom:652.225023px;}
.y6d_c00308{bottom:652.225073px;}
.y6c_c00308{bottom:652.225282px;}
.y67_c00308{bottom:652.225305px;}
.y65_c00308{bottom:652.225346px;}
.y64_c00308{bottom:652.225386px;}
.y6a_c00308{bottom:652.225483px;}
.y6e_c00308{bottom:652.225692px;}
.y6f_c00308{bottom:652.225752px;}
.y66_c00308{bottom:652.225995px;}
.y61_c00308{bottom:674.665965px;}
.y60_c00308{bottom:674.666325px;}
.y5f_c00308{bottom:674.666365px;}
.y62_c00308{bottom:674.666404px;}
.y5b_c00308{bottom:674.666667px;}
.y5e_c00308{bottom:674.666936px;}
.y63_c00308{bottom:674.667064px;}
.y5c_c00308{bottom:674.667166px;}
.y5a_c00308{bottom:674.667267px;}
.y5d_c00308{bottom:674.667336px;}
.y58_c00308{bottom:674.667518px;}
.y59_c00308{bottom:674.667567px;}
.y4e_c00308{bottom:697.313790px;}
.y4c_c00308{bottom:697.313800px;}
.y50_c00308{bottom:697.314249px;}
.y4f_c00308{bottom:697.314350px;}
.y4d_c00308{bottom:697.314450px;}
.y51_c00308{bottom:697.314838px;}
.y52_c00308{bottom:697.315158px;}
.y57_c00308{bottom:697.315337px;}
.y55_c00308{bottom:697.315347px;}
.y54_c00308{bottom:697.315568px;}
.y56_c00308{bottom:697.315797px;}
.y53_c00308{bottom:697.315867px;}
.y49_c00308{bottom:720.084070px;}
.y4a_c00308{bottom:720.084250px;}
.y48_c00308{bottom:720.084291px;}
.y47_c00308{bottom:720.084842px;}
.y4b_c00308{bottom:720.084870px;}
.y43_c00308{bottom:720.085293px;}
.y44_c00308{bottom:720.085323px;}
.y46_c00308{bottom:720.085572px;}
.y45_c00308{bottom:720.085912px;}
.y42_c00308{bottom:720.085923px;}
.y41_c00308{bottom:720.086623px;}
.y3d_c00308{bottom:741.397500px;}
.y3e_c00308{bottom:741.614756px;}
.y3f_c00308{bottom:741.913607px;}
.y40_c00308{bottom:744.511747px;}
.y30_c00308{bottom:764.098899px;}
.y31_c00308{bottom:764.320236px;}
.y32_c00308{bottom:764.749410px;}
.y33_c00308{bottom:764.898459px;}
.y34_c00308{bottom:765.041199px;}
.y35_c00308{bottom:765.233808px;}
.y36_c00308{bottom:765.439557px;}
.y37_c00308{bottom:765.697281px;}
.y38_c00308{bottom:765.841488px;}
.y39_c00308{bottom:766.074750px;}
.y3a_c00308{bottom:766.423041px;}
.y3b_c00308{bottom:766.894326px;}
.y3c_c00308{bottom:767.035266px;}
.y24_c00308{bottom:786.779286px;}
.y25_c00308{bottom:787.202274px;}
.y26_c00308{bottom:787.739034px;}
.y27_c00308{bottom:788.152125px;}
.y28_c00308{bottom:788.297703px;}
.y29_c00308{bottom:788.539788px;}
.y2a_c00308{bottom:788.687130px;}
.y2b_c00308{bottom:788.940012px;}
.y2c_c00308{bottom:789.273321px;}
.y2d_c00308{bottom:789.752217px;}
.y2e_c00308{bottom:790.245528px;}
.y2f_c00308{bottom:790.423317px;}
.y17_c00308{bottom:810.000999px;}
.y18_c00308{bottom:810.304464px;}
.y19_c00308{bottom:810.565623px;}
.y1a_c00308{bottom:810.743340px;}
.y1b_c00308{bottom:810.879489px;}
.y1c_c00308{bottom:811.295457px;}
.y1d_c00308{bottom:811.403202px;}
.y1e_c00308{bottom:811.720380px;}
.y1f_c00308{bottom:811.930227px;}
.y20_c00308{bottom:812.652549px;}
.y21_c00308{bottom:812.865618px;}
.y22_c00308{bottom:813.064227px;}
.y23_c00308{bottom:813.547947px;}
.ya_c00308{bottom:833.220000px;}
.yb_c00308{bottom:833.296320px;}
.yc_c00308{bottom:833.552109px;}
.yd_c00308{bottom:833.707467px;}
.ye_c00308{bottom:834.203349px;}
.yf_c00308{bottom:834.401025px;}
.y10_c00308{bottom:834.770511px;}
.y11_c00308{bottom:834.994080px;}
.y12_c00308{bottom:835.358274px;}
.y13_c00308{bottom:835.509105px;}
.y14_c00308{bottom:835.802154px;}
.y15_c00308{bottom:835.987005px;}
.y16_c00308{bottom:836.171523px;}
.y3_c00308{bottom:874.802872px;}
.y4_c00308{bottom:875.869062px;}
.y5_c00308{bottom:877.036096px;}
.y6_c00308{bottom:880.310737px;}
.y7_c00308{bottom:881.561283px;}
.y8_c00308{bottom:882.436879px;}
.y9_c00308{bottom:883.847859px;}
.y1_c00308{bottom:902.755500px;}
.y2_c00308{bottom:922.373376px;}
.h11_c00308{height:23.100000px;}
.h2_c00308{height:60.878590px;}
.h5_c00308{height:63.001134px;}
.hf_c00308{height:65.101172px;}
.hb_c00308{height:68.250000px;}
.h4_c00308{height:68.251228px;}
.h12_c00308{height:69.300000px;}
.hd_c00308{height:69.301247px;}
.ha_c00308{height:69.301698px;}
.h14_c00308{height:70.350000px;}
.h6_c00308{height:70.351266px;}
.h13_c00308{height:71.400000px;}
.he_c00308{height:71.401285px;}
.h8_c00308{height:71.401749px;}
.h10_c00308{height:72.451304px;}
.h9_c00308{height:72.451775px;}
.hc_c00308{height:73.501323px;}
.h7_c00308{height:73.501801px;}
.h3_c00308{height:127.005334px;}
.h1_c00308{height:1005.000000px;}
.h0_c00308{height:1005.150000px;}
.w0_c00308{width:702.540000px;}
.w1_c00308{width:702.750000px;}
.x0_c00308{left:0.000000px;}
.x3_c00308{left:1.032359px;}
.x20_c00308{left:28.697469px;}
.xa_c00308{left:33.288000px;}
.x16_c00308{left:45.594252px;}
.x1_c00308{left:46.939500px;}
.x2a_c00308{left:52.019886px;}
.x36_c00308{left:58.131000px;}
.x4_c00308{left:63.637556px;}
.xa3_c00308{left:72.211740px;}
.x68_c00308{left:81.001869px;}
.xb_c00308{left:88.639500px;}
.x41_c00308{left:89.912628px;}
.x5e_c00308{left:91.353000px;}
.x7f_c00308{left:92.725818px;}
.x94_c00308{left:94.354941px;}
.xae_c00308{left:96.390000px;}
.xb7_c00308{left:97.740000px;}
.x38_c00308{left:108.271631px;}
.x9e_c00308{left:109.361439px;}
.xc_c00308{left:114.532500px;}
.x5f_c00308{left:115.702500px;}
.x9a_c00308{left:119.485431px;}
.xa5_c00308{left:121.244841px;}
.x52_c00308{left:123.664886px;}
.xbb_c00308{left:124.740000px;}
.x17_c00308{left:126.197766px;}
.x95_c00308{left:128.092536px;}
.xaf_c00308{left:129.600000px;}
.x39_c00308{left:130.682733px;}
.x5_c00308{left:132.122367px;}
.x69_c00308{left:140.133993px;}
.x42_c00308{left:142.293690px;}
.x49_c00308{left:144.183303px;}
.xbc_c00308{left:147.420000px;}
.xc0_c00308{left:149.310000px;}
.x18_c00308{left:151.567113px;}
.x8b_c00308{left:152.685498px;}
.x85_c00308{left:156.728244px;}
.x2b_c00308{left:160.438386px;}
.x6a_c00308{left:161.734767px;}
.x72_c00308{left:164.166381px;}
.x21_c00308{left:165.904650px;}
.x60_c00308{left:169.698000px;}
.x19_c00308{left:171.008496px;}
.xb1_c00308{left:173.340000px;}
.x53_c00308{left:176.045948px;}
.x73_c00308{left:178.476894px;}
.x6b_c00308{left:179.825415px;}
.x9f_c00308{left:182.532576px;}
.x2c_c00308{left:185.279886px;}
.x79_c00308{left:189.551748px;}
.x86_c00308{left:192.906312px;}
.x90_c00308{left:194.275119px;}
.x4a_c00308{left:195.485823px;}
.xd_c00308{left:197.179500px;}
.x9b_c00308{left:204.262401px;}
.xa0_c00308{left:207.913494px;}
.x2d_c00308{left:209.069886px;}
.xb2_c00308{left:210.330000px;}
.xb3_c00308{left:212.490000px;}
.x7a_c00308{left:213.582612px;}
.x43_c00308{left:214.925750px;}
.x3a_c00308{left:216.275423px;}
.x8c_c00308{left:218.824206px;}
.xa9_c00308{left:221.417268px;}
.x22_c00308{left:225.002799px;}
.xc1_c00308{left:227.880000px;}
.xe_c00308{left:230.125500px;}
.xa6_c00308{left:237.077508px;}
.x54_c00308{left:238.687524px;}
.x2e_c00308{left:241.171386px;}
.x1a_c00308{left:245.793546px;}
.x44_c00308{left:247.055825px;}
.x8d_c00308{left:249.837837px;}
.x61_c00308{left:253.953000px;}
.xa1_c00308{left:257.053767px;}
.x80_c00308{left:258.776820px;}
.xa4_c00308{left:261.713106px;}
.x87_c00308{left:262.829475px;}
.x4b_c00308{left:265.417746px;}
.x74_c00308{left:268.118625px;}
.x9c_c00308{left:269.325231px;}
.x7b_c00308{left:271.903209px;}
.x91_c00308{left:273.919665px;}
.x2f_c00308{left:275.462886px;}
.xbd_c00308{left:277.290000px;}
.xc2_c00308{left:279.180000px;}
.x23_c00308{left:280.362966px;}
.x62_c00308{left:282.303000px;}
.x96_c00308{left:285.470646px;}
.x6c_c00308{left:287.287785px;}
.xf_c00308{left:291.706500px;}
.x88_c00308{left:294.662097px;}
.x3b_c00308{left:298.087934px;}
.x24_c00308{left:301.419840px;}
.x55_c00308{left:306.189332px;}
.x4c_c00308{left:309.158388px;}
.xa2_c00308{left:310.785702px;}
.x6d_c00308{left:312.668703px;}
.x97_c00308{left:316.296777px;}
.x30_c00308{left:318.416886px;}
.x1b_c00308{left:321.130596px;}
.x6_c00308{left:324.339026px;}
.x10_c00308{left:328.968000px;}
.xa7_c00308{left:332.929455px;}
.x92_c00308{left:335.459427px;}
.x25_c00308{left:337.566624px;}
.x3c_c00308{left:339.128450px;}
.x31_c00308{left:342.451386px;}
.xaa_c00308{left:345.888741px;}
.x75_c00308{left:346.961460px;}
.x4d_c00308{left:349.388862px;}
.x7c_c00308{left:354.524679px;}
.x56_c00308{left:356.410289px;}
.x8e_c00308{left:358.985532px;}
.xb8_c00308{left:361.530000px;}
.x81_c00308{left:364.050060px;}
.x3d_c00308{left:369.908462px;}
.x7d_c00308{left:370.995273px;}
.x4e_c00308{left:372.880017px;}
.x76_c00308{left:373.962432px;}
.x45_c00308{left:378.007730px;}
.x32_c00308{left:381.328386px;}
.x63_c00308{left:384.021000px;}
.x26_c00308{left:385.117836px;}
.x82_c00308{left:386.726790px;}
.x11_c00308{left:389.667000px;}
.x6e_c00308{left:391.510038px;}
.xab_c00308{left:395.029014px;}
.x7_c00308{left:397.722784px;}
.x46_c00308{left:399.608790px;}
.xb4_c00308{left:403.380000px;}
.x93_c00308{left:407.008572px;}
.x57_c00308{left:409.061372px;}
.xb0_c00308{left:410.670000px;}
.xa8_c00308{left:413.390853px;}
.x12_c00308{left:414.805500px;}
.x89_c00308{left:420.509085px;}
.x9d_c00308{left:421.870986px;}
.x1c_c00308{left:424.266975px;}
.x6f_c00308{left:426.071280px;}
.x64_c00308{left:428.839500px;}
.xb5_c00308{left:430.380000px;}
.x5b_c00308{left:431.730000px;}
.x4f_c00308{left:433.091468px;}
.x8f_c00308{left:434.817123px;}
.xac_c00308{left:436.340499px;}
.x33_c00308{left:439.376886px;}
.x3e_c00308{left:440.380416px;}
.x7e_c00308{left:443.356374px;}
.x8_c00308{left:449.126519px;}
.x70_c00308{left:451.452198px;}
.x27_c00308{left:453.433422px;}
.x1d_c00308{left:454.778295px;}
.x77_c00308{left:458.205465px;}
.x58_c00308{left:461.172423px;}
.x13_c00308{left:463.647000px;}
.x3f_c00308{left:470.621897px;}
.x71_c00308{left:476.023080px;}
.x59_c00308{left:477.643232px;}
.x1e_c00308{left:483.129624px;}
.x65_c00308{left:484.999500px;}
.xb9_c00308{left:486.270000px;}
.xb6_c00308{left:488.430000px;}
.xbe_c00308{left:490.320000px;}
.xad_c00308{left:491.960997px;}
.x14_c00308{left:494.455500px;}
.x98_c00308{left:500.992554px;}
.x37_c00308{left:503.023500px;}
.x83_c00308{left:505.525359px;}
.x50_c00308{left:508.963685px;}
.x47_c00308{left:511.932792px;}
.x5c_c00308{left:515.160000px;}
.x34_c00308{left:517.924386px;}
.xbf_c00308{left:519.480000px;}
.x28_c00308{left:523.901499px;}
.x15_c00308{left:525.208500px;}
.x9_c00308{left:531.958806px;}
.x51_c00308{left:534.344924px;}
.x5a_c00308{left:537.314651px;}
.x84_c00308{left:538.772463px;}
.x35_c00308{left:541.414386px;}
.x40_c00308{left:542.713925px;}
.x8a_c00308{left:546.611073px;}
.x29_c00308{left:549.282846px;}
.x1f_c00308{left:552.249210px;}
.x66_c00308{left:554.436000px;}
.x78_c00308{left:556.487502px;}
.x5d_c00308{left:559.170000px;}
.x99_c00308{left:560.906334px;}
.x48_c00308{left:564.583875px;}
.xba_c00308{left:569.970000px;}
.x2_c00308{left:591.335559px;}
.x67_c00308{left:593.035500px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
._0_c00308{width:15698.140260pt;}
.fsf_c00308{font-size:20.533333pt;}
.fs0_c00308{font-size:54.114302pt;}
.fs3_c00308{font-size:56.001008pt;}
.fsd_c00308{font-size:57.867708pt;}
.fs9_c00308{font-size:60.666667pt;}
.fs2_c00308{font-size:60.667759pt;}
.fs10_c00308{font-size:61.600000pt;}
.fsb_c00308{font-size:61.601109pt;}
.fs8_c00308{font-size:61.601509pt;}
.fs12_c00308{font-size:62.533333pt;}
.fs4_c00308{font-size:62.534459pt;}
.fs11_c00308{font-size:63.466667pt;}
.fsc_c00308{font-size:63.467809pt;}
.fs6_c00308{font-size:63.468222pt;}
.fse_c00308{font-size:64.401159pt;}
.fs7_c00308{font-size:64.401578pt;}
.fsa_c00308{font-size:65.334509pt;}
.fs5_c00308{font-size:65.334934pt;}
.fs1_c00308{font-size:112.893630pt;}
.y0_c00308{bottom:0.000000pt;}
.y111_c00308{bottom:129.782667pt;}
.y110_c00308{bottom:150.988000pt;}
.y10f_c00308{bottom:172.234667pt;}
.y10e_c00308{bottom:192.432000pt;}
.y10d_c00308{bottom:212.585333pt;}
.y10c_c00308{bottom:234.342667pt;}
.y10b_c00308{bottom:241.920000pt;}
.y101_c00308{bottom:254.267528pt;}
.yff_c00308{bottom:254.267589pt;}
.y102_c00308{bottom:254.267688pt;}
.y100_c00308{bottom:254.268123pt;}
.y103_c00308{bottom:254.268160pt;}
.y104_c00308{bottom:254.268365pt;}
.y107_c00308{bottom:254.268723pt;}
.y105_c00308{bottom:254.268997pt;}
.y108_c00308{bottom:254.269043pt;}
.y106_c00308{bottom:254.269317pt;}
.y109_c00308{bottom:254.269675pt;}
.y10a_c00308{bottom:254.269720pt;}
.yf6_c00308{bottom:274.538656pt;}
.yf5_c00308{bottom:274.538976pt;}
.yf7_c00308{bottom:274.539021pt;}
.yf8_c00308{bottom:274.539075pt;}
.yfd_c00308{bottom:274.539104pt;}
.yfe_c00308{bottom:274.539211pt;}
.yf9_c00308{bottom:274.539227pt;}
.yfc_c00308{bottom:274.539379pt;}
.yfa_c00308{bottom:274.539600pt;}
.yfb_c00308{bottom:274.539653pt;}
.yea_c00308{bottom:293.996523pt;}
.yeb_c00308{bottom:294.434949pt;}
.yec_c00308{bottom:294.661365pt;}
.yed_c00308{bottom:294.746885pt;}
.yee_c00308{bottom:295.032763pt;}
.yef_c00308{bottom:295.175203pt;}
.yf0_c00308{bottom:295.474413pt;}
.yf1_c00308{bottom:295.844531pt;}
.yf2_c00308{bottom:295.984011pt;}
.yf3_c00308{bottom:296.213632pt;}
.yf4_c00308{bottom:296.913664pt;}
.ye9_c00308{bottom:314.978960pt;}
.ye7_c00308{bottom:314.979067pt;}
.ye8_c00308{bottom:314.979227pt;}
.ye6_c00308{bottom:314.979661pt;}
.ye5_c00308{bottom:314.980301pt;}
.ye3_c00308{bottom:314.980309pt;}
.ye4_c00308{bottom:314.980736pt;}
.yd6_c00308{bottom:334.318880pt;}
.yd7_c00308{bottom:334.518099pt;}
.yd8_c00308{bottom:334.913635pt;}
.yd9_c00308{bottom:335.196917pt;}
.yda_c00308{bottom:335.717259pt;}
.ydb_c00308{bottom:335.842120pt;}
.ydc_c00308{bottom:336.034304pt;}
.ydd_c00308{bottom:336.469029pt;}
.yde_c00308{bottom:336.641555pt;}
.ydf_c00308{bottom:336.937517pt;}
.ye0_c00308{bottom:337.086219pt;}
.ye1_c00308{bottom:337.222320pt;}
.ye2_c00308{bottom:337.758211pt;}
.ycb_c00308{bottom:355.198152pt;}
.ycc_c00308{bottom:355.438088pt;}
.ycd_c00308{bottom:355.608803pt;}
.yce_c00308{bottom:355.913939pt;}
.ycf_c00308{bottom:356.067813pt;}
.yd0_c00308{bottom:356.557448pt;}
.yd1_c00308{bottom:356.776523pt;}
.yd2_c00308{bottom:357.603797pt;}
.yd3_c00308{bottom:357.788712pt;}
.yd4_c00308{bottom:358.090912pt;}
.yd5_c00308{bottom:358.517123pt;}
.ybe_c00308{bottom:375.359981pt;}
.ybf_c00308{bottom:375.835280pt;}
.yc0_c00308{bottom:375.916368pt;}
.yc1_c00308{bottom:376.075792pt;}
.yc2_c00308{bottom:376.413168pt;}
.yc3_c00308{bottom:376.641901pt;}
.yc4_c00308{bottom:376.808443pt;}
.yc5_c00308{bottom:377.079451pt;}
.yc6_c00308{bottom:377.374616pt;}
.yc7_c00308{bottom:377.587717pt;}
.yc8_c00308{bottom:377.987285pt;}
.yc9_c00308{bottom:378.145453pt;}
.yca_c00308{bottom:378.621128pt;}
.yb4_c00308{bottom:395.520301pt;}
.yb5_c00308{bottom:395.946704pt;}
.yb6_c00308{bottom:396.416781pt;}
.yb7_c00308{bottom:396.636856pt;}
.yb8_c00308{bottom:396.909536pt;}
.yb9_c00308{bottom:397.412317pt;}
.yba_c00308{bottom:397.896563pt;}
.ybb_c00308{bottom:397.951424pt;}
.ybc_c00308{bottom:398.142040pt;}
.ybd_c00308{bottom:398.785781pt;}
.ya9_c00308{bottom:415.922331pt;}
.yaa_c00308{bottom:416.377000pt;}
.yab_c00308{bottom:416.633952pt;}
.yac_c00308{bottom:417.130880pt;}
.yad_c00308{bottom:417.356656pt;}
.yae_c00308{bottom:417.800115pt;}
.yaf_c00308{bottom:417.953813pt;}
.yb0_c00308{bottom:418.251848pt;}
.yb1_c00308{bottom:418.651384pt;}
.yb2_c00308{bottom:418.923752pt;}
.yb3_c00308{bottom:419.148400pt;}
.ya0_c00308{bottom:436.321717pt;}
.ya1_c00308{bottom:436.815877pt;}
.ya2_c00308{bottom:437.355168pt;}
.ya3_c00308{bottom:437.503333pt;}
.ya4_c00308{bottom:438.251464pt;}
.ya5_c00308{bottom:438.412408pt;}
.ya6_c00308{bottom:438.683648pt;}
.ya7_c00308{bottom:439.258008pt;}
.ya8_c00308{bottom:439.493995pt;}
.y99_c00308{bottom:458.478901pt;}
.y97_c00308{bottom:458.478963pt;}
.y9a_c00308{bottom:458.479061pt;}
.y9b_c00308{bottom:458.479427pt;}
.y98_c00308{bottom:458.479541pt;}
.y9d_c00308{bottom:458.479899pt;}
.y9c_c00308{bottom:458.480059pt;}
.y9e_c00308{bottom:458.480477pt;}
.y9f_c00308{bottom:458.480904pt;}
.y91_c00308{bottom:478.694637pt;}
.y8f_c00308{bottom:478.694912pt;}
.y95_c00308{bottom:478.694957pt;}
.y92_c00308{bottom:478.695064pt;}
.y93_c00308{bottom:478.695117pt;}
.y96_c00308{bottom:478.695216pt;}
.y90_c00308{bottom:478.695232pt;}
.y8e_c00308{bottom:478.695453pt;}
.y94_c00308{bottom:478.695651pt;}
.y7f_c00308{bottom:499.142787pt;}
.y80_c00308{bottom:499.143160pt;}
.y81_c00308{bottom:499.143373pt;}
.y82_c00308{bottom:499.143480pt;}
.y88_c00308{bottom:499.143632pt;}
.y8b_c00308{bottom:499.143784pt;}
.y83_c00308{bottom:499.144013pt;}
.y89_c00308{bottom:499.144104pt;}
.y8c_c00308{bottom:499.144157pt;}
.y87_c00308{bottom:499.144272pt;}
.y8a_c00308{bottom:499.144424pt;}
.y84_c00308{bottom:499.144493pt;}
.y8d_c00308{bottom:499.144736pt;}
.y85_c00308{bottom:499.144760pt;}
.y86_c00308{bottom:499.144813pt;}
.y71_c00308{bottom:517.920000pt;}
.y72_c00308{bottom:518.049864pt;}
.y73_c00308{bottom:518.242904pt;}
.y74_c00308{bottom:518.337840pt;}
.y75_c00308{bottom:518.635872pt;}
.y76_c00308{bottom:518.787200pt;}
.y77_c00308{bottom:518.938400pt;}
.y78_c00308{bottom:519.239280pt;}
.y79_c00308{bottom:519.480896pt;}
.y7a_c00308{bottom:519.719928pt;}
.y7b_c00308{bottom:520.019448pt;}
.y7c_c00308{bottom:520.151944pt;}
.y7d_c00308{bottom:520.389776pt;}
.y7e_c00308{bottom:520.595640pt;}
.y70_c00308{bottom:559.665333pt;}
.y69_c00308{bottom:579.755515pt;}
.y68_c00308{bottom:579.755524pt;}
.y6b_c00308{bottom:579.755576pt;}
.y6d_c00308{bottom:579.755620pt;}
.y6c_c00308{bottom:579.755807pt;}
.y67_c00308{bottom:579.755827pt;}
.y65_c00308{bottom:579.755863pt;}
.y64_c00308{bottom:579.755899pt;}
.y6a_c00308{bottom:579.755985pt;}
.y6e_c00308{bottom:579.756171pt;}
.y6f_c00308{bottom:579.756224pt;}
.y66_c00308{bottom:579.756440pt;}
.y61_c00308{bottom:599.703080pt;}
.y60_c00308{bottom:599.703400pt;}
.y5f_c00308{bottom:599.703436pt;}
.y62_c00308{bottom:599.703471pt;}
.y5b_c00308{bottom:599.703704pt;}
.y5e_c00308{bottom:599.703943pt;}
.y63_c00308{bottom:599.704057pt;}
.y5c_c00308{bottom:599.704148pt;}
.y5a_c00308{bottom:599.704237pt;}
.y5d_c00308{bottom:599.704299pt;}
.y58_c00308{bottom:599.704460pt;}
.y59_c00308{bottom:599.704504pt;}
.y4e_c00308{bottom:619.834480pt;}
.y4c_c00308{bottom:619.834489pt;}
.y50_c00308{bottom:619.834888pt;}
.y4f_c00308{bottom:619.834977pt;}
.y4d_c00308{bottom:619.835067pt;}
.y51_c00308{bottom:619.835412pt;}
.y52_c00308{bottom:619.835696pt;}
.y57_c00308{bottom:619.835855pt;}
.y55_c00308{bottom:619.835864pt;}
.y54_c00308{bottom:619.836060pt;}
.y56_c00308{bottom:619.836264pt;}
.y53_c00308{bottom:619.836327pt;}
.y49_c00308{bottom:640.074729pt;}
.y4a_c00308{bottom:640.074889pt;}
.y48_c00308{bottom:640.074925pt;}
.y47_c00308{bottom:640.075415pt;}
.y4b_c00308{bottom:640.075440pt;}
.y43_c00308{bottom:640.075816pt;}
.y44_c00308{bottom:640.075843pt;}
.y46_c00308{bottom:640.076064pt;}
.y45_c00308{bottom:640.076367pt;}
.y42_c00308{bottom:640.076376pt;}
.y41_c00308{bottom:640.076999pt;}
.y3d_c00308{bottom:659.020000pt;}
.y3e_c00308{bottom:659.213116pt;}
.y3f_c00308{bottom:659.478761pt;}
.y40_c00308{bottom:661.788220pt;}
.y30_c00308{bottom:679.199021pt;}
.y31_c00308{bottom:679.395765pt;}
.y32_c00308{bottom:679.777253pt;}
.y33_c00308{bottom:679.909741pt;}
.y34_c00308{bottom:680.036621pt;}
.y35_c00308{bottom:680.207829pt;}
.y36_c00308{bottom:680.390717pt;}
.y37_c00308{bottom:680.619805pt;}
.y38_c00308{bottom:680.747989pt;}
.y39_c00308{bottom:680.955333pt;}
.y3a_c00308{bottom:681.264925pt;}
.y3b_c00308{bottom:681.683845pt;}
.y3c_c00308{bottom:681.809125pt;}
.y24_c00308{bottom:699.359365pt;}
.y25_c00308{bottom:699.735355pt;}
.y26_c00308{bottom:700.212475pt;}
.y27_c00308{bottom:700.579667pt;}
.y28_c00308{bottom:700.709069pt;}
.y29_c00308{bottom:700.924256pt;}
.y2a_c00308{bottom:701.055227pt;}
.y2b_c00308{bottom:701.280011pt;}
.y2c_c00308{bottom:701.576285pt;}
.y2d_c00308{bottom:702.001971pt;}
.y2e_c00308{bottom:702.440469pt;}
.y2f_c00308{bottom:702.598504pt;}
.y17_c00308{bottom:720.000888pt;}
.y18_c00308{bottom:720.270635pt;}
.y19_c00308{bottom:720.502776pt;}
.y1a_c00308{bottom:720.660747pt;}
.y1b_c00308{bottom:720.781768pt;}
.y1c_c00308{bottom:721.151517pt;}
.y1d_c00308{bottom:721.247291pt;}
.y1e_c00308{bottom:721.529227pt;}
.y1f_c00308{bottom:721.715757pt;}
.y20_c00308{bottom:722.357821pt;}
.y21_c00308{bottom:722.547216pt;}
.y22_c00308{bottom:722.723757pt;}
.y23_c00308{bottom:723.153731pt;}
.ya_c00308{bottom:740.640000pt;}
.yb_c00308{bottom:740.707840pt;}
.yc_c00308{bottom:740.935208pt;}
.yd_c00308{bottom:741.073304pt;}
.ye_c00308{bottom:741.514088pt;}
.yf_c00308{bottom:741.689800pt;}
.y10_c00308{bottom:742.018232pt;}
.y11_c00308{bottom:742.216960pt;}
.y12_c00308{bottom:742.540688pt;}
.y13_c00308{bottom:742.674760pt;}
.y14_c00308{bottom:742.935248pt;}
.y15_c00308{bottom:743.099560pt;}
.y16_c00308{bottom:743.263576pt;}
.y3_c00308{bottom:777.602553pt;}
.y4_c00308{bottom:778.550277pt;}
.y5_c00308{bottom:779.587641pt;}
.y6_c00308{bottom:782.498433pt;}
.y7_c00308{bottom:783.610029pt;}
.y8_c00308{bottom:784.388337pt;}
.y9_c00308{bottom:785.642541pt;}
.y1_c00308{bottom:802.449333pt;}
.y2_c00308{bottom:819.887445pt;}
.h11_c00308{height:20.533333pt;}
.h2_c00308{height:54.114302pt;}
.h5_c00308{height:56.001008pt;}
.hf_c00308{height:57.867708pt;}
.hb_c00308{height:60.666667pt;}
.h4_c00308{height:60.667759pt;}
.h12_c00308{height:61.600000pt;}
.hd_c00308{height:61.601109pt;}
.ha_c00308{height:61.601509pt;}
.h14_c00308{height:62.533333pt;}
.h6_c00308{height:62.534459pt;}
.h13_c00308{height:63.466667pt;}
.he_c00308{height:63.467809pt;}
.h8_c00308{height:63.468222pt;}
.h10_c00308{height:64.401159pt;}
.h9_c00308{height:64.401578pt;}
.hc_c00308{height:65.334509pt;}
.h7_c00308{height:65.334934pt;}
.h3_c00308{height:112.893630pt;}
.h1_c00308{height:893.333333pt;}
.h0_c00308{height:893.466667pt;}
.w0_c00308{width:624.480000pt;}
.w1_c00308{width:624.666667pt;}
.x0_c00308{left:0.000000pt;}
.x3_c00308{left:0.917652pt;}
.x20_c00308{left:25.508861pt;}
.xa_c00308{left:29.589333pt;}
.x16_c00308{left:40.528224pt;}
.x1_c00308{left:41.724000pt;}
.x2a_c00308{left:46.239899pt;}
.x36_c00308{left:51.672000pt;}
.x4_c00308{left:56.566716pt;}
.xa3_c00308{left:64.188213pt;}
.x68_c00308{left:72.001661pt;}
.xb_c00308{left:78.790667pt;}
.x41_c00308{left:79.922336pt;}
.x5e_c00308{left:81.202667pt;}
.x7f_c00308{left:82.422949pt;}
.x94_c00308{left:83.871059pt;}
.xae_c00308{left:85.680000pt;}
.xb7_c00308{left:86.880000pt;}
.x38_c00308{left:96.241449pt;}
.x9e_c00308{left:97.210168pt;}
.xc_c00308{left:101.806667pt;}
.x5f_c00308{left:102.846667pt;}
.x9a_c00308{left:106.209272pt;}
.xa5_c00308{left:107.773192pt;}
.x52_c00308{left:109.924343pt;}
.xbb_c00308{left:110.880000pt;}
.x17_c00308{left:112.175792pt;}
.x95_c00308{left:113.860032pt;}
.xaf_c00308{left:115.200000pt;}
.x39_c00308{left:116.162429pt;}
.x5_c00308{left:117.442104pt;}
.x69_c00308{left:124.563549pt;}
.x42_c00308{left:126.483280pt;}
.x49_c00308{left:128.162936pt;}
.xbc_c00308{left:131.040000pt;}
.xc0_c00308{left:132.720000pt;}
.x18_c00308{left:134.726323pt;}
.x8b_c00308{left:135.720443pt;}
.x85_c00308{left:139.313995pt;}
.x2b_c00308{left:142.611899pt;}
.x6a_c00308{left:143.764237pt;}
.x72_c00308{left:145.925672pt;}
.x21_c00308{left:147.470800pt;}
.x60_c00308{left:150.842667pt;}
.x19_c00308{left:152.007552pt;}
.xb1_c00308{left:154.080000pt;}
.x53_c00308{left:156.485287pt;}
.x73_c00308{left:158.646128pt;}
.x6b_c00308{left:159.844813pt;}
.x9f_c00308{left:162.251179pt;}
.x2c_c00308{left:164.693232pt;}
.x79_c00308{left:168.490443pt;}
.x86_c00308{left:171.472277pt;}
.x90_c00308{left:172.688995pt;}
.x4a_c00308{left:173.765176pt;}
.xd_c00308{left:175.270667pt;}
.x9b_c00308{left:181.566579pt;}
.xa0_c00308{left:184.811995pt;}
.x2d_c00308{left:185.839899pt;}
.xb2_c00308{left:186.960000pt;}
.xb3_c00308{left:188.880000pt;}
.x7a_c00308{left:189.851211pt;}
.x43_c00308{left:191.045111pt;}
.x3a_c00308{left:192.244820pt;}
.x8c_c00308{left:194.510405pt;}
.xa9_c00308{left:196.815349pt;}
.x22_c00308{left:200.002488pt;}
.xc1_c00308{left:202.560000pt;}
.xe_c00308{left:204.556000pt;}
.xa6_c00308{left:210.735563pt;}
.x54_c00308{left:212.166688pt;}
.x2e_c00308{left:214.374565pt;}
.x1a_c00308{left:218.483152pt;}
.x44_c00308{left:219.605177pt;}
.x8d_c00308{left:222.078077pt;}
.x61_c00308{left:225.736000pt;}
.xa1_c00308{left:228.492237pt;}
.x80_c00308{left:230.023840pt;}
.xa4_c00308{left:232.633872pt;}
.x87_c00308{left:233.626200pt;}
.x4b_c00308{left:235.926885pt;}
.x74_c00308{left:238.327667pt;}
.x9c_c00308{left:239.400205pt;}
.x7b_c00308{left:241.691741pt;}
.x91_c00308{left:243.484147pt;}
.x2f_c00308{left:244.855899pt;}
.xbd_c00308{left:246.480000pt;}
.xc2_c00308{left:248.160000pt;}
.x23_c00308{left:249.211525pt;}
.x62_c00308{left:250.936000pt;}
.x96_c00308{left:253.751685pt;}
.x6c_c00308{left:255.366920pt;}
.xf_c00308{left:259.294667pt;}
.x88_c00308{left:261.921864pt;}
.x3b_c00308{left:264.967052pt;}
.x24_c00308{left:267.928747pt;}
.x55_c00308{left:272.168295pt;}
.x4c_c00308{left:274.807456pt;}
.xa2_c00308{left:276.253957pt;}
.x6d_c00308{left:277.927736pt;}
.x97_c00308{left:281.152691pt;}
.x30_c00308{left:283.037232pt;}
.x1b_c00308{left:285.449419pt;}
.x6_c00308{left:288.301356pt;}
.x10_c00308{left:292.416000pt;}
.xa7_c00308{left:295.937293pt;}
.x92_c00308{left:298.186157pt;}
.x25_c00308{left:300.059221pt;}
.x3c_c00308{left:301.447511pt;}
.x31_c00308{left:304.401232pt;}
.xaa_c00308{left:307.456659pt;}
.x75_c00308{left:308.410187pt;}
.x4d_c00308{left:310.567877pt;}
.x7c_c00308{left:315.133048pt;}
.x56_c00308{left:316.809145pt;}
.x8e_c00308{left:319.098251pt;}
.xb8_c00308{left:321.360000pt;}
.x81_c00308{left:323.600053pt;}
.x3d_c00308{left:328.807521pt;}
.x7d_c00308{left:329.773576pt;}
.x4e_c00308{left:331.448904pt;}
.x76_c00308{left:332.411051pt;}
.x45_c00308{left:336.006871pt;}
.x32_c00308{left:338.958565pt;}
.x63_c00308{left:341.352000pt;}
.x26_c00308{left:342.326965pt;}
.x82_c00308{left:343.757147pt;}
.x11_c00308{left:346.370667pt;}
.x6e_c00308{left:348.008923pt;}
.xab_c00308{left:351.136901pt;}
.x7_c00308{left:353.531364pt;}
.x46_c00308{left:355.207813pt;}
.xb4_c00308{left:358.560000pt;}
.x93_c00308{left:361.785397pt;}
.x57_c00308{left:363.610108pt;}
.xb0_c00308{left:365.040000pt;}
.xa8_c00308{left:367.458536pt;}
.x12_c00308{left:368.716000pt;}
.x89_c00308{left:373.785853pt;}
.x9d_c00308{left:374.996432pt;}
.x1c_c00308{left:377.126200pt;}
.x6f_c00308{left:378.730027pt;}
.x64_c00308{left:381.190667pt;}
.xb5_c00308{left:382.560000pt;}
.x5b_c00308{left:383.760000pt;}
.x4f_c00308{left:384.970193pt;}
.x8f_c00308{left:386.504109pt;}
.xac_c00308{left:387.858221pt;}
.x33_c00308{left:390.557232pt;}
.x3e_c00308{left:391.449259pt;}
.x7e_c00308{left:394.094555pt;}
.x8_c00308{left:399.223572pt;}
.x70_c00308{left:401.290843pt;}
.x27_c00308{left:403.051931pt;}
.x1d_c00308{left:404.247373pt;}
.x77_c00308{left:407.293747pt;}
.x58_c00308{left:409.931043pt;}
.x13_c00308{left:412.130667pt;}
.x3f_c00308{left:418.330575pt;}
.x71_c00308{left:423.131627pt;}
.x59_c00308{left:424.571761pt;}
.x1e_c00308{left:429.448555pt;}
.x65_c00308{left:431.110667pt;}
.xb9_c00308{left:432.240000pt;}
.xb6_c00308{left:434.160000pt;}
.xbe_c00308{left:435.840000pt;}
.xad_c00308{left:437.298664pt;}
.x14_c00308{left:439.516000pt;}
.x98_c00308{left:445.326715pt;}
.x37_c00308{left:447.132000pt;}
.x83_c00308{left:449.355875pt;}
.x50_c00308{left:452.412164pt;}
.x47_c00308{left:455.051371pt;}
.x5c_c00308{left:457.920000pt;}
.x34_c00308{left:460.377232pt;}
.xbf_c00308{left:461.760000pt;}
.x28_c00308{left:465.690221pt;}
.x15_c00308{left:466.852000pt;}
.x9_c00308{left:472.852272pt;}
.x51_c00308{left:474.973265pt;}
.x5a_c00308{left:477.613023pt;}
.x84_c00308{left:478.908856pt;}
.x35_c00308{left:481.257232pt;}
.x40_c00308{left:482.412377pt;}
.x8a_c00308{left:485.876509pt;}
.x29_c00308{left:488.251419pt;}
.x1f_c00308{left:490.888187pt;}
.x66_c00308{left:492.832000pt;}
.x78_c00308{left:494.655557pt;}
.x5d_c00308{left:497.040000pt;}
.x99_c00308{left:498.583408pt;}
.x48_c00308{left:501.852333pt;}
.xba_c00308{left:506.640000pt;}
.x2_c00308{left:525.631608pt;}
.x67_c00308{left:527.142667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m128_c00309{transform:matrix(0.013838,0.000221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.013838,0.000221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.013838,0.000221,-0.003999,0.249968,0,0);}
.m138_c00309{transform:matrix(0.070304,0.001265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.070304,0.001265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.070304,0.001265,-0.004499,0.249960,0,0);}
.ma_c00309{transform:matrix(0.090978,0.000637,-0.001750,0.249994,0,0);-ms-transform:matrix(0.090978,0.000637,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.090978,0.000637,-0.001750,0.249994,0,0);}
.m8a_c00309{transform:matrix(0.094360,0.000944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.094360,0.000944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.094360,0.000944,-0.002500,0.249988,0,0);}
.m15e_c00309{transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112170,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.120000,0.001560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.120000,0.001560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.120000,0.001560,-0.003250,0.249979,0,0);}
.m160_c00309{transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);}
.m113_c00309{transform:matrix(0.134943,0.002159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134943,0.002159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134943,0.002159,-0.003999,0.249968,0,0);}
.m101_c00309{transform:matrix(0.140382,0.001544,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140382,0.001544,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140382,0.001544,-0.002750,0.249985,0,0);}
.m11b_c00309{transform:matrix(0.142812,0.002285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.142812,0.002285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.142812,0.002285,-0.003999,0.249968,0,0);}
.m5_c00309{transform:matrix(0.145396,0.001018,-0.001750,0.249994,0,0);-ms-transform:matrix(0.145396,0.001018,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.145396,0.001018,-0.001750,0.249994,0,0);}
.m54_c00309{transform:matrix(0.145783,0.001895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145783,0.001895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145783,0.001895,-0.003250,0.249979,0,0);}
.m53_c00309{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);}
.m45_c00309{transform:matrix(0.146291,0.001024,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146291,0.001024,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146291,0.001024,-0.001750,0.249994,0,0);}
.m9e_c00309{transform:matrix(0.146703,0.001467,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146703,0.001467,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146703,0.001467,-0.002500,0.249988,0,0);}
.mc7_c00309{transform:matrix(0.146931,0.001616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146931,0.001616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146931,0.001616,-0.002750,0.249985,0,0);}
.ma3_c00309{transform:matrix(0.147946,0.001627,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147946,0.001627,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147946,0.001627,-0.002750,0.249985,0,0);}
.m7c_c00309{transform:matrix(0.148238,0.001482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148238,0.001482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148238,0.001482,-0.002500,0.249988,0,0);}
.m81_c00309{transform:matrix(0.148608,0.001486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148608,0.001486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148608,0.001486,-0.002500,0.249988,0,0);}
.mce_c00309{transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);}
.ma6_c00309{transform:matrix(0.151166,0.001663,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151166,0.001663,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151166,0.001663,-0.002750,0.249985,0,0);}
.m36_c00309{transform:matrix(0.151606,0.001061,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151606,0.001061,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151606,0.001061,-0.001750,0.249994,0,0);}
.mba_c00309{transform:matrix(0.151701,0.001669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151701,0.001669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151701,0.001669,-0.002750,0.249985,0,0);}
.m127_c00309{transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151966,0.002431,-0.003999,0.249968,0,0);}
.m6_c00309{transform:matrix(0.152661,0.001069,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152661,0.001069,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152661,0.001069,-0.001750,0.249994,0,0);}
.me3_c00309{transform:matrix(0.152736,0.001680,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152736,0.001680,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152736,0.001680,-0.002750,0.249985,0,0);}
.mb0_c00309{transform:matrix(0.152836,0.001681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152836,0.001681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152836,0.001681,-0.002750,0.249985,0,0);}
.m139_c00309{transform:matrix(0.152905,0.002752,-0.004499,0.249960,0,0);-ms-transform:matrix(0.152905,0.002752,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.152905,0.002752,-0.004499,0.249960,0,0);}
.md4_c00309{transform:matrix(0.153121,0.001684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153121,0.001684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153121,0.001684,-0.002750,0.249985,0,0);}
.mc5_c00309{transform:matrix(0.153151,0.001685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153151,0.001685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153151,0.001685,-0.002750,0.249985,0,0);}
.m76_c00309{transform:matrix(0.153152,0.001532,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153152,0.001532,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153152,0.001532,-0.002500,0.249988,0,0);}
.m65_c00309{transform:matrix(0.153464,0.001842,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153464,0.001842,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153464,0.001842,-0.003000,0.249982,0,0);}
.mda_c00309{transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153531,0.001689,-0.002750,0.249985,0,0);}
.m4b_c00309{transform:matrix(0.154501,0.001082,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154501,0.001082,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154501,0.001082,-0.001750,0.249994,0,0);}
.m18_c00309{transform:matrix(0.155156,0.001086,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155156,0.001086,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155156,0.001086,-0.001750,0.249994,0,0);}
.mcb_c00309{transform:matrix(0.155216,0.001707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155216,0.001707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155216,0.001707,-0.002750,0.249985,0,0);}
.m3d_c00309{transform:matrix(0.156596,0.001096,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156596,0.001096,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156596,0.001096,-0.001750,0.249994,0,0);}
.m3a_c00309{transform:matrix(0.156851,0.001098,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156851,0.001098,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156851,0.001098,-0.001750,0.249994,0,0);}
.m146_c00309{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);}
.ma0_c00309{transform:matrix(0.158350,0.001742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158350,0.001742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158350,0.001742,-0.002750,0.249985,0,0);}
.mfe_c00309{transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);}
.ma4_c00309{transform:matrix(0.158890,0.001748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158890,0.001748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158890,0.001748,-0.002750,0.249985,0,0);}
.md2_c00309{transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);}
.mc8_c00309{transform:matrix(0.160650,0.001767,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160650,0.001767,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160650,0.001767,-0.002750,0.249985,0,0);}
.m8f_c00309{transform:matrix(0.160762,0.001608,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160762,0.001608,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160762,0.001608,-0.002500,0.249988,0,0);}
.m25_c00309{transform:matrix(0.161036,0.001127,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161036,0.001127,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161036,0.001127,-0.001750,0.249994,0,0);}
.m38_c00309{transform:matrix(0.161236,0.001129,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161236,0.001129,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161236,0.001129,-0.001750,0.249994,0,0);}
.m1b_c00309{transform:matrix(0.161361,0.001130,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161361,0.001130,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161361,0.001130,-0.001750,0.249994,0,0);}
.m60_c00309{transform:matrix(0.161643,0.001940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161643,0.001940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161643,0.001940,-0.003000,0.249982,0,0);}
.m129_c00309{transform:matrix(0.162347,0.002760,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162347,0.002760,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162347,0.002760,-0.004249,0.249964,0,0);}
.m5e_c00309{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);}
.mbf_c00309{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);}
.m87_c00309{transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162697,0.001627,-0.002500,0.249988,0,0);}
.m70_c00309{transform:matrix(0.162907,0.001629,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162907,0.001629,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162907,0.001629,-0.002500,0.249988,0,0);}
.m13f_c00309{transform:matrix(0.163294,0.002939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163294,0.002939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163294,0.002939,-0.004499,0.249960,0,0);}
.m33_c00309{transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163716,0.001146,-0.001750,0.249994,0,0);}
.me_c00309{transform:matrix(0.163996,0.001148,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163996,0.001148,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163996,0.001148,-0.001750,0.249994,0,0);}
.m41_c00309{transform:matrix(0.164316,0.001150,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164316,0.001150,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164316,0.001150,-0.001750,0.249994,0,0);}
.mf7_c00309{transform:matrix(0.164725,0.001812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164725,0.001812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164725,0.001812,-0.002750,0.249985,0,0);}
.m15_c00309{transform:matrix(0.165021,0.001155,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165021,0.001155,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165021,0.001155,-0.001750,0.249994,0,0);}
.m2d_c00309{transform:matrix(0.165226,0.001157,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165226,0.001157,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165226,0.001157,-0.001750,0.249994,0,0);}
.m23_c00309{transform:matrix(0.165401,0.001158,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165401,0.001158,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165401,0.001158,-0.001750,0.249994,0,0);}
.mb6_c00309{transform:matrix(0.165475,0.001820,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165475,0.001820,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165475,0.001820,-0.002750,0.249985,0,0);}
.m95_c00309{transform:matrix(0.165557,0.001656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165557,0.001656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165557,0.001656,-0.002500,0.249988,0,0);}
.m10_c00309{transform:matrix(0.165786,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165786,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165786,0.001161,-0.001750,0.249994,0,0);}
.m4a_c00309{transform:matrix(0.165976,0.001162,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165976,0.001162,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165976,0.001162,-0.001750,0.249994,0,0);}
.m144_c00309{transform:matrix(0.166031,0.002823,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166031,0.002823,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166031,0.002823,-0.004249,0.249964,0,0);}
.m47_c00309{transform:matrix(0.166116,0.001163,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166116,0.001163,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166116,0.001163,-0.001750,0.249994,0,0);}
.md9_c00309{transform:matrix(0.166225,0.001828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166225,0.001828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166225,0.001828,-0.002750,0.249985,0,0);}
.me0_c00309{transform:matrix(0.166250,0.001829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166250,0.001829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166250,0.001829,-0.002750,0.249985,0,0);}
.m4_c00309{transform:matrix(0.166491,0.001165,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166491,0.001165,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166491,0.001165,-0.001750,0.249994,0,0);}
.m3_c00309{transform:matrix(0.166551,0.001166,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166551,0.001166,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166551,0.001166,-0.001750,0.249994,0,0);}
.m126_c00309{transform:matrix(0.166814,0.002669,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166814,0.002669,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166814,0.002669,-0.003999,0.249968,0,0);}
.m154_c00309{transform:matrix(0.166861,0.002837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166861,0.002837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166861,0.002837,-0.004249,0.249964,0,0);}
.m7_c00309{transform:matrix(0.166931,0.001169,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166931,0.001169,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166931,0.001169,-0.001750,0.249994,0,0);}
.m147_c00309{transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);}
.m59_c00309{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);}
.mf6_c00309{transform:matrix(0.167960,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167960,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167960,0.001848,-0.002750,0.249985,0,0);}
.md8_c00309{transform:matrix(0.168285,0.001851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168285,0.001851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168285,0.001851,-0.002750,0.249985,0,0);}
.mef_c00309{transform:matrix(0.168520,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168520,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168520,0.001854,-0.002750,0.249985,0,0);}
.m157_c00309{transform:matrix(0.168891,0.002871,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168891,0.002871,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168891,0.002871,-0.004249,0.249964,0,0);}
.mde_c00309{transform:matrix(0.169035,0.001859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169035,0.001859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169035,0.001859,-0.002750,0.249985,0,0);}
.m140_c00309{transform:matrix(0.169071,0.002874,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169071,0.002874,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169071,0.002874,-0.004249,0.249964,0,0);}
.m11e_c00309{transform:matrix(0.169143,0.002706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169143,0.002706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169143,0.002706,-0.003999,0.249968,0,0);}
.m13a_c00309{transform:matrix(0.169493,0.003051,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169493,0.003051,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169493,0.003051,-0.004499,0.249960,0,0);}
.m7a_c00309{transform:matrix(0.169562,0.001696,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169562,0.001696,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169562,0.001696,-0.002500,0.249988,0,0);}
.m44_c00309{transform:matrix(0.169686,0.001188,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169686,0.001188,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169686,0.001188,-0.001750,0.249994,0,0);}
.m17_c00309{transform:matrix(0.169816,0.001189,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169816,0.001189,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169816,0.001189,-0.001750,0.249994,0,0);}
.m3f_c00309{transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);}
.m150_c00309{transform:matrix(0.170130,0.002892,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170130,0.002892,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170130,0.002892,-0.004249,0.249964,0,0);}
.ma1_c00309{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);}
.mc2_c00309{transform:matrix(0.170735,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170735,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170735,0.001878,-0.002750,0.249985,0,0);}
.mbe_c00309{transform:matrix(0.171250,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171250,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171250,0.001884,-0.002750,0.249985,0,0);}
.m153_c00309{transform:matrix(0.171275,0.002912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171275,0.002912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171275,0.002912,-0.004249,0.249964,0,0);}
.m31_c00309{transform:matrix(0.171291,0.001199,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171291,0.001199,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171291,0.001199,-0.001750,0.249994,0,0);}
.md_c00309{transform:matrix(0.171326,0.001199,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171326,0.001199,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171326,0.001199,-0.001750,0.249994,0,0);}
.m137_c00309{transform:matrix(0.171347,0.003084,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171347,0.003084,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171347,0.003084,-0.004499,0.249960,0,0);}
.m43_c00309{transform:matrix(0.171571,0.001201,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171571,0.001201,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171571,0.001201,-0.001750,0.249994,0,0);}
.mb9_c00309{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);}
.m7b_c00309{transform:matrix(0.172106,0.001721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172106,0.001721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172106,0.001721,-0.002500,0.249988,0,0);}
.mcf_c00309{transform:matrix(0.172335,0.001896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172335,0.001896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172335,0.001896,-0.002750,0.249985,0,0);}
.m11d_c00309{transform:matrix(0.172353,0.002758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172353,0.002758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172353,0.002758,-0.003999,0.249968,0,0);}
.m58_c00309{transform:matrix(0.172645,0.002244,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172645,0.002244,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172645,0.002244,-0.003250,0.249979,0,0);}
.mad_c00309{transform:matrix(0.172660,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172660,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172660,0.001899,-0.002750,0.249985,0,0);}
.m3e_c00309{transform:matrix(0.172831,0.001210,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172831,0.001210,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172831,0.001210,-0.001750,0.249994,0,0);}
.m39_c00309{transform:matrix(0.172886,0.001210,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172886,0.001210,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172886,0.001210,-0.001750,0.249994,0,0);}
.mdb_c00309{transform:matrix(0.173025,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173025,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173025,0.001903,-0.002750,0.249985,0,0);}
.meb_c00309{transform:matrix(0.173030,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173030,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173030,0.001903,-0.002750,0.249985,0,0);}
.m27_c00309{transform:matrix(0.173266,0.001213,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173266,0.001213,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173266,0.001213,-0.001750,0.249994,0,0);}
.mff_c00309{transform:matrix(0.173395,0.001907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173395,0.001907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173395,0.001907,-0.002750,0.249985,0,0);}
.m6c_c00309{transform:matrix(0.173886,0.001739,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173886,0.001739,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173886,0.001739,-0.002500,0.249988,0,0);}
.m1c_c00309{transform:matrix(0.174006,0.001218,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174006,0.001218,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174006,0.001218,-0.001750,0.249994,0,0);}
.m46_c00309{transform:matrix(0.174136,0.001219,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174136,0.001219,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174136,0.001219,-0.001750,0.249994,0,0);}
.m120_c00309{transform:matrix(0.174553,0.002793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174553,0.002793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174553,0.002793,-0.003999,0.249968,0,0);}
.m8_c00309{transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174611,0.001222,-0.001750,0.249994,0,0);}
.m28_c00309{transform:matrix(0.174951,0.001225,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174951,0.001225,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174951,0.001225,-0.001750,0.249994,0,0);}
.m48_c00309{transform:matrix(0.174971,0.001225,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174971,0.001225,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174971,0.001225,-0.001750,0.249994,0,0);}
.m40_c00309{transform:matrix(0.175326,0.001227,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175326,0.001227,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175326,0.001227,-0.001750,0.249994,0,0);}
.mb4_c00309{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);}
.mb2_c00309{transform:matrix(0.175524,0.001931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175524,0.001931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175524,0.001931,-0.002750,0.249985,0,0);}
.mb5_c00309{transform:matrix(0.176069,0.001937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176069,0.001937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176069,0.001937,-0.002750,0.249985,0,0);}
.m2e_c00309{transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);}
.md3_c00309{transform:matrix(0.176369,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176369,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176369,0.001940,-0.002750,0.249985,0,0);}
.m12b_c00309{transform:matrix(0.176475,0.003000,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176475,0.003000,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176475,0.003000,-0.004249,0.249964,0,0);}
.m85_c00309{transform:matrix(0.176556,0.001766,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176556,0.001766,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176556,0.001766,-0.002500,0.249988,0,0);}
.m7d_c00309{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);}
.m71_c00309{transform:matrix(0.177571,0.001776,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177571,0.001776,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177571,0.001776,-0.002500,0.249988,0,0);}
.m56_c00309{transform:matrix(0.177650,0.002309,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177650,0.002309,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177650,0.002309,-0.003250,0.249979,0,0);}
.mbd_c00309{transform:matrix(0.177689,0.001955,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177689,0.001955,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177689,0.001955,-0.002750,0.249985,0,0);}
.m9d_c00309{transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177986,0.001780,-0.002500,0.249988,0,0);}
.m30_c00309{transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);}
.mf1_c00309{transform:matrix(0.178229,0.001961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178229,0.001961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178229,0.001961,-0.002750,0.249985,0,0);}
.m155_c00309{transform:matrix(0.178274,0.003031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178274,0.003031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178274,0.003031,-0.004249,0.249964,0,0);}
.m92_c00309{transform:matrix(0.178281,0.001783,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178281,0.001783,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178281,0.001783,-0.002500,0.249988,0,0);}
.m50_c00309{transform:matrix(0.178330,0.002318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178330,0.002318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178330,0.002318,-0.003250,0.249979,0,0);}
.mc_c00309{transform:matrix(0.178496,0.001249,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178496,0.001249,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178496,0.001249,-0.001750,0.249994,0,0);}
.m72_c00309{transform:matrix(0.179031,0.001790,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179031,0.001790,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179031,0.001790,-0.002500,0.249988,0,0);}
.m148_c00309{transform:matrix(0.179079,0.003044,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179079,0.003044,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179079,0.003044,-0.004249,0.249964,0,0);}
.m14e_c00309{transform:matrix(0.179124,0.003045,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179124,0.003045,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179124,0.003045,-0.004249,0.249964,0,0);}
.mdf_c00309{transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179189,0.001971,-0.002750,0.249985,0,0);}
.med_c00309{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);}
.mdc_c00309{transform:matrix(0.179474,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179474,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179474,0.001974,-0.002750,0.249985,0,0);}
.m12_c00309{transform:matrix(0.179496,0.001256,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179496,0.001256,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179496,0.001256,-0.001750,0.249994,0,0);}
.m2b_c00309{transform:matrix(0.179916,0.001259,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179916,0.001259,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179916,0.001259,-0.001750,0.249994,0,0);}
.mc0_c00309{transform:matrix(0.179964,0.001980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179964,0.001980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179964,0.001980,-0.002750,0.249985,0,0);}
.mae_c00309{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);}
.m67_c00309{transform:matrix(0.180111,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180111,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180111,0.001801,-0.002500,0.249988,0,0);}
.mcc_c00309{transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);}
.m3b_c00309{transform:matrix(0.180526,0.001264,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180526,0.001264,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180526,0.001264,-0.001750,0.249994,0,0);}
.m10b_c00309{transform:matrix(0.180727,0.002892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180727,0.002892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180727,0.002892,-0.003999,0.249968,0,0);}
.mf2_c00309{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);}
.m135_c00309{transform:matrix(0.181421,0.003266,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181421,0.003266,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181421,0.003266,-0.004499,0.249960,0,0);}
.m136_c00309{transform:matrix(0.181506,0.003267,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181506,0.003267,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181506,0.003267,-0.004499,0.249960,0,0);}
.m14d_c00309{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);}
.md6_c00309{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);}
.ma5_c00309{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);}
.m4c_c00309{transform:matrix(0.182226,0.001276,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182226,0.001276,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182226,0.001276,-0.001750,0.249994,0,0);}
.m13b_c00309{transform:matrix(0.182475,0.003285,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182475,0.003285,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182475,0.003285,-0.004499,0.249960,0,0);}
.m74_c00309{transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);}
.m3c_c00309{transform:matrix(0.182836,0.001280,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182836,0.001280,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182836,0.001280,-0.001750,0.249994,0,0);}
.mfb_c00309{transform:matrix(0.183004,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183004,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183004,0.002013,-0.002750,0.249985,0,0);}
.m89_c00309{transform:matrix(0.183356,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183356,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183356,0.001834,-0.002500,0.249988,0,0);}
.m9a_c00309{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);}
.m105_c00309{transform:matrix(0.183512,0.002936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183512,0.002936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183512,0.002936,-0.003999,0.249968,0,0);}
.m86_c00309{transform:matrix(0.183526,0.001835,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183526,0.001835,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183526,0.001835,-0.002500,0.249988,0,0);}
.m1a_c00309{transform:matrix(0.183666,0.001286,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183666,0.001286,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183666,0.001286,-0.001750,0.249994,0,0);}
.m109_c00309{transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);}
.m122_c00309{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);}
.ma2_c00309{transform:matrix(0.183844,0.002022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183844,0.002022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183844,0.002022,-0.002750,0.249985,0,0);}
.m6b_c00309{transform:matrix(0.184161,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184161,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184161,0.001842,-0.002500,0.249988,0,0);}
.m159_c00309{transform:matrix(0.184213,0.003132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184213,0.003132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184213,0.003132,-0.004249,0.249964,0,0);}
.m16_c00309{transform:matrix(0.184330,0.001290,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184330,0.001290,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184330,0.001290,-0.001750,0.249994,0,0);}
.m100_c00309{transform:matrix(0.184429,0.002029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184429,0.002029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184429,0.002029,-0.002750,0.249985,0,0);}
.m145_c00309{transform:matrix(0.184518,0.003137,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184518,0.003137,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184518,0.003137,-0.004249,0.249964,0,0);}
.mc1_c00309{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);}
.m125_c00309{transform:matrix(0.185086,0.002961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185086,0.002961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185086,0.002961,-0.003999,0.249968,0,0);}
.me6_c00309{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);}
.mf5_c00309{transform:matrix(0.185259,0.002038,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185259,0.002038,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185259,0.002038,-0.002750,0.249985,0,0);}
.m99_c00309{transform:matrix(0.185411,0.001854,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185411,0.001854,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185411,0.001854,-0.002500,0.249988,0,0);}
.me2_c00309{transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);}
.m102_c00309{transform:matrix(0.185511,0.002968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185511,0.002968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185511,0.002968,-0.003999,0.249968,0,0);}
.mbb_c00309{transform:matrix(0.185704,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185704,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185704,0.002043,-0.002750,0.249985,0,0);}
.ma9_c00309{transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);}
.m57_c00309{transform:matrix(0.185814,0.002416,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185814,0.002416,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185814,0.002416,-0.003250,0.249979,0,0);}
.m96_c00309{transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);}
.m6d_c00309{transform:matrix(0.185871,0.001859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185871,0.001859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185871,0.001859,-0.002500,0.249988,0,0);}
.m11_c00309{transform:matrix(0.185890,0.001301,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185890,0.001301,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185890,0.001301,-0.001750,0.249994,0,0);}
.m4e_c00309{transform:matrix(0.185919,0.002417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185919,0.002417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185919,0.002417,-0.003250,0.249979,0,0);}
.mf8_c00309{transform:matrix(0.186299,0.002049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186299,0.002049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186299,0.002049,-0.002750,0.249985,0,0);}
.mb_c00309{transform:matrix(0.186335,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186335,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186335,0.001304,-0.001750,0.249994,0,0);}
.me7_c00309{transform:matrix(0.186449,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186449,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186449,0.002051,-0.002750,0.249985,0,0);}
.m14f_c00309{transform:matrix(0.186543,0.003171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186543,0.003171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186543,0.003171,-0.004249,0.249964,0,0);}
.m42_c00309{transform:matrix(0.187025,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187025,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187025,0.001309,-0.001750,0.249994,0,0);}
.m6f_c00309{transform:matrix(0.187026,0.001870,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187026,0.001870,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187026,0.001870,-0.002500,0.249988,0,0);}
.m24_c00309{transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);}
.m4f_c00309{transform:matrix(0.187544,0.002438,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187544,0.002438,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187544,0.002438,-0.003250,0.249979,0,0);}
.m69_c00309{transform:matrix(0.188326,0.001883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188326,0.001883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188326,0.001883,-0.002500,0.249988,0,0);}
.m82_c00309{transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188391,0.001884,-0.002500,0.249988,0,0);}
.m49_c00309{transform:matrix(0.188440,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188440,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188440,0.001319,-0.001750,0.249994,0,0);}
.m73_c00309{transform:matrix(0.188706,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188706,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188706,0.001887,-0.002500,0.249988,0,0);}
.m141_c00309{transform:matrix(0.189083,0.003214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189083,0.003214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189083,0.003214,-0.004249,0.249964,0,0);}
.mfc_c00309{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);}
.m32_c00309{transform:matrix(0.189390,0.001326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189390,0.001326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189390,0.001326,-0.001750,0.249994,0,0);}
.m79_c00309{transform:matrix(0.189436,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189436,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189436,0.001894,-0.002500,0.249988,0,0);}
.m1f_c00309{transform:matrix(0.189525,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189525,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189525,0.001327,-0.001750,0.249994,0,0);}
.m88_c00309{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);}
.m13c_c00309{transform:matrix(0.189614,0.003413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189614,0.003413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189614,0.003413,-0.004499,0.249960,0,0);}
.md1_c00309{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);}
.m151_c00309{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);}
.m55_c00309{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);}
.m152_c00309{transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);}
.m94_c00309{transform:matrix(0.190985,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190985,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190985,0.001910,-0.002500,0.249988,0,0);}
.m11a_c00309{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_c00309{transform:matrix(0.191165,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191165,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191165,0.001338,-0.001750,0.249994,0,0);}
.mc3_c00309{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);}
.ma8_c00309{transform:matrix(0.191773,0.002110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191773,0.002110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191773,0.002110,-0.002750,0.249985,0,0);}
.mf0_c00309{transform:matrix(0.191848,0.002110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191848,0.002110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191848,0.002110,-0.002750,0.249985,0,0);}
.ma7_c00309{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);}
.m93_c00309{transform:matrix(0.192300,0.001923,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192300,0.001923,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192300,0.001923,-0.002500,0.249988,0,0);}
.m61_c00309{transform:matrix(0.192831,0.002314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192831,0.002314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192831,0.002314,-0.003000,0.249982,0,0);}
.m64_c00309{transform:matrix(0.192956,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192956,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192956,0.002315,-0.003000,0.249982,0,0);}
.m75_c00309{transform:matrix(0.193045,0.001930,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193045,0.001930,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193045,0.001930,-0.002500,0.249988,0,0);}
.m9_c00309{transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);}
.m5f_c00309{transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193616,0.002323,-0.003000,0.249982,0,0);}
.md5_c00309{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);}
.m8c_c00309{transform:matrix(0.194020,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194020,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194020,0.001940,-0.002500,0.249988,0,0);}
.m12e_c00309{transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194032,0.003299,-0.004249,0.249964,0,0);}
.m78_c00309{transform:matrix(0.194135,0.001941,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194135,0.001941,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194135,0.001941,-0.002500,0.249988,0,0);}
.mdd_c00309{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);}
.m123_c00309{transform:matrix(0.194285,0.003109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194285,0.003109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194285,0.003109,-0.003999,0.249968,0,0);}
.m14_c00309{transform:matrix(0.194315,0.001360,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194315,0.001360,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194315,0.001360,-0.001750,0.249994,0,0);}
.m14b_c00309{transform:matrix(0.194352,0.003304,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194352,0.003304,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194352,0.003304,-0.004249,0.249964,0,0);}
.mcd_c00309{transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);}
.m2a_c00309{transform:matrix(0.194545,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194545,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194545,0.001362,-0.001750,0.249994,0,0);}
.mf3_c00309{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);}
.m13_c00309{transform:matrix(0.194695,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194695,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194695,0.001363,-0.001750,0.249994,0,0);}
.m2c_c00309{transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194805,0.001364,-0.001750,0.249994,0,0);}
.m80_c00309{transform:matrix(0.195070,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195070,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195070,0.001951,-0.002500,0.249988,0,0);}
.m10f_c00309{transform:matrix(0.195120,0.003122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195120,0.003122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195120,0.003122,-0.003999,0.249968,0,0);}
.m11c_c00309{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);}
.mf_c00309{transform:matrix(0.195245,0.001367,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195245,0.001367,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195245,0.001367,-0.001750,0.249994,0,0);}
.mb8_c00309{transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195278,0.002148,-0.002750,0.249985,0,0);}
.m104_c00309{transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);}
.mab_c00309{transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195978,0.002156,-0.002750,0.249985,0,0);}
.m5a_c00309{transform:matrix(0.196231,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196231,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196231,0.002355,-0.003000,0.249982,0,0);}
.m26_c00309{transform:matrix(0.196260,0.001374,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196260,0.001374,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196260,0.001374,-0.001750,0.249994,0,0);}
.m7e_c00309{transform:matrix(0.196340,0.001963,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196340,0.001963,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196340,0.001963,-0.002500,0.249988,0,0);}
.m20_c00309{transform:matrix(0.197185,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197185,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197185,0.001380,-0.001750,0.249994,0,0);}
.m121_c00309{transform:matrix(0.197545,0.003161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197545,0.003161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197545,0.003161,-0.003999,0.249968,0,0);}
.m10d_c00309{transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197775,0.003164,-0.003999,0.249968,0,0);}
.m12a_c00309{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);}
.m131_c00309{transform:matrix(0.197931,0.003365,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197931,0.003365,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197931,0.003365,-0.004249,0.249964,0,0);}
.m77_c00309{transform:matrix(0.197950,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197950,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197950,0.001980,-0.002500,0.249988,0,0);}
.m116_c00309{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);}
.mf9_c00309{transform:matrix(0.198268,0.002181,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198268,0.002181,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198268,0.002181,-0.002750,0.249985,0,0);}
.m143_c00309{transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);}
.m91_c00309{transform:matrix(0.198435,0.001984,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198435,0.001984,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198435,0.001984,-0.002500,0.249988,0,0);}
.m106_c00309{transform:matrix(0.198610,0.003178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198610,0.003178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198610,0.003178,-0.003999,0.249968,0,0);}
.m1d_c00309{transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199480,0.001396,-0.001750,0.249994,0,0);}
.mee_c00309{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);}
.mb3_c00309{transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);}
.m62_c00309{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);}
.mf4_c00309{transform:matrix(0.200553,0.002206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200553,0.002206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200553,0.002206,-0.002750,0.249985,0,0);}
.mca_c00309{transform:matrix(0.200893,0.002210,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200893,0.002210,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200893,0.002210,-0.002750,0.249985,0,0);}
.m124_c00309{transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);}
.m14a_c00309{transform:matrix(0.201741,0.003430,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201741,0.003430,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201741,0.003430,-0.004249,0.249964,0,0);}
.mc4_c00309{transform:matrix(0.202418,0.002227,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202418,0.002227,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202418,0.002227,-0.002750,0.249985,0,0);}
.maf_c00309{transform:matrix(0.202528,0.002228,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202528,0.002228,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202528,0.002228,-0.002750,0.249985,0,0);}
.m97_c00309{transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);}
.me8_c00309{transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);}
.m6a_c00309{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);}
.me4_c00309{transform:matrix(0.204788,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204788,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204788,0.002253,-0.002750,0.249985,0,0);}
.m83_c00309{transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);}
.m111_c00309{transform:matrix(0.205944,0.003295,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205944,0.003295,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205944,0.003295,-0.003999,0.249968,0,0);}
.m5b_c00309{transform:matrix(0.206165,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206165,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206165,0.002474,-0.003000,0.249982,0,0);}
.m11f_c00309{transform:matrix(0.206614,0.003306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206614,0.003306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206614,0.003306,-0.003999,0.249968,0,0);}
.m15d_c00309{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);}
.m98_c00309{transform:matrix(0.207560,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207560,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207560,0.002076,-0.002500,0.249988,0,0);}
.m6e_c00309{transform:matrix(0.207635,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207635,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207635,0.002076,-0.002500,0.249988,0,0);}
.m15c_c00309{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);}
.m84_c00309{transform:matrix(0.208795,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208795,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208795,0.002088,-0.002500,0.249988,0,0);}
.mc6_c00309{transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);}
.m130_c00309{transform:matrix(0.209445,0.003561,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209445,0.003561,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209445,0.003561,-0.004249,0.249964,0,0);}
.m108_c00309{transform:matrix(0.209623,0.003354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209623,0.003354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209623,0.003354,-0.003999,0.249968,0,0);}
.mfa_c00309{transform:matrix(0.211267,0.002324,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211267,0.002324,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211267,0.002324,-0.002750,0.249985,0,0);}
.m117_c00309{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);}
.m133_c00309{transform:matrix(0.212054,0.003605,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212054,0.003605,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212054,0.003605,-0.004249,0.249964,0,0);}
.m10a_c00309{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);}
.maa_c00309{transform:matrix(0.213127,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213127,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213127,0.002344,-0.002750,0.249985,0,0);}
.m90_c00309{transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);}
.m107_c00309{transform:matrix(0.214158,0.003427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214158,0.003427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214158,0.003427,-0.003999,0.249968,0,0);}
.m13d_c00309{transform:matrix(0.215715,0.003883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215715,0.003883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215715,0.003883,-0.004499,0.249960,0,0);}
.m63_c00309{transform:matrix(0.215764,0.002589,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215764,0.002589,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215764,0.002589,-0.003000,0.249982,0,0);}
.m21_c00309{transform:matrix(0.216280,0.001514,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216280,0.001514,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216280,0.001514,-0.001750,0.249994,0,0);}
.m29_c00309{transform:matrix(0.217495,0.001522,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217495,0.001522,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217495,0.001522,-0.001750,0.249994,0,0);}
.m34_c00309{transform:matrix(0.218490,0.001529,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218490,0.001529,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218490,0.001529,-0.001750,0.249994,0,0);}
.m0_c00309{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);}
.mb7_c00309{transform:matrix(0.218812,0.002407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218812,0.002407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218812,0.002407,-0.002750,0.249985,0,0);}
.me5_c00309{transform:matrix(0.219047,0.002410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219047,0.002410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219047,0.002410,-0.002750,0.249985,0,0);}
.m19_c00309{transform:matrix(0.219440,0.001536,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219440,0.001536,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219440,0.001536,-0.001750,0.249994,0,0);}
.mea_c00309{transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);}
.m134_c00309{transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219904,0.003958,-0.004499,0.249960,0,0);}
.me1_c00309{transform:matrix(0.221087,0.002432,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221087,0.002432,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221087,0.002432,-0.002750,0.249985,0,0);}
.md7_c00309{transform:matrix(0.221412,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221412,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221412,0.002436,-0.002750,0.249985,0,0);}
.m142_c00309{transform:matrix(0.223073,0.003792,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223073,0.003792,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223073,0.003792,-0.004249,0.249964,0,0);}
.m22_c00309{transform:matrix(0.223770,0.001566,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223770,0.001566,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223770,0.001566,-0.001750,0.249994,0,0);}
.m156_c00309{transform:matrix(0.224428,0.003815,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224428,0.003815,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224428,0.003815,-0.004249,0.249964,0,0);}
.mec_c00309{transform:matrix(0.224746,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224746,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224746,0.002472,-0.002750,0.249985,0,0);}
.m2f_c00309{transform:matrix(0.225354,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225354,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225354,0.001577,-0.001750,0.249994,0,0);}
.m119_c00309{transform:matrix(0.226061,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226061,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226061,0.003617,-0.003999,0.249968,0,0);}
.m9f_c00309{transform:matrix(0.226366,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226366,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226366,0.002490,-0.002750,0.249985,0,0);}
.m10e_c00309{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);}
.mfd_c00309{transform:matrix(0.227161,0.002499,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227161,0.002499,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227161,0.002499,-0.002750,0.249985,0,0);}
.mc9_c00309{transform:matrix(0.227571,0.002503,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227571,0.002503,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227571,0.002503,-0.002750,0.249985,0,0);}
.m8e_c00309{transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227729,0.002277,-0.002500,0.249988,0,0);}
.m12d_c00309{transform:matrix(0.228522,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228522,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228522,0.003885,-0.004249,0.249964,0,0);}
.m5c_c00309{transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);}
.m13e_c00309{transform:matrix(0.232472,0.004185,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232472,0.004185,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232472,0.004185,-0.004499,0.249960,0,0);}
.m8b_c00309{transform:matrix(0.233108,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233108,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233108,0.002331,-0.002500,0.249988,0,0);}
.m110_c00309{transform:matrix(0.233495,0.003736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233495,0.003736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233495,0.003736,-0.003999,0.249968,0,0);}
.m114_c00309{transform:matrix(0.235015,0.003760,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235015,0.003760,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235015,0.003760,-0.003999,0.249968,0,0);}
.m7f_c00309{transform:matrix(0.235538,0.002355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235538,0.002355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235538,0.002355,-0.002500,0.249988,0,0);}
.m4d_c00309{transform:matrix(0.236045,0.003069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236045,0.003069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236045,0.003069,-0.003250,0.249979,0,0);}
.m9b_c00309{transform:matrix(0.236313,0.002363,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236313,0.002363,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236313,0.002363,-0.002500,0.249988,0,0);}
.m68_c00309{transform:matrix(0.236898,0.002369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236898,0.002369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236898,0.002369,-0.002500,0.249988,0,0);}
.m15a_c00309{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);}
.m112_c00309{transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);}
.m10c_c00309{transform:matrix(0.241009,0.003856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241009,0.003856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241009,0.003856,-0.003999,0.249968,0,0);}
.md0_c00309{transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);}
.m132_c00309{transform:matrix(0.242955,0.004130,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242955,0.004130,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242955,0.004130,-0.004249,0.249964,0,0);}
.m66_c00309{transform:matrix(0.243517,0.002922,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243517,0.002922,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243517,0.002922,-0.003000,0.249982,0,0);}
.m1e_c00309{transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);}
.m12c_c00309{transform:matrix(0.244335,0.004154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244335,0.004154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244335,0.004154,-0.004249,0.249964,0,0);}
.mb1_c00309{transform:matrix(0.246600,0.002713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246600,0.002713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246600,0.002713,-0.002750,0.249985,0,0);}
.mac_c00309{transform:matrix(0.247675,0.002724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247675,0.002724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247675,0.002724,-0.002750,0.249985,0,0);}
.m115_c00309{transform:matrix(0.248373,0.003974,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248373,0.003974,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248373,0.003974,-0.003999,0.249968,0,0);}
.m8d_c00309{transform:matrix(0.248973,0.002490,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248973,0.002490,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248973,0.002490,-0.002500,0.249988,0,0);}
.me9_c00309{transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);}
.m118_c00309{transform:matrix(0.254802,0.004077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254802,0.004077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254802,0.004077,-0.003999,0.249968,0,0);}
.m5d_c00309{transform:matrix(0.256367,0.003076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256367,0.003076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256367,0.003076,-0.003000,0.249982,0,0);}
.m161_c00309{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);}
.m149_c00309{transform:matrix(0.257378,0.004375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257378,0.004375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257378,0.004375,-0.004249,0.249964,0,0);}
.m15f_c00309{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00309{transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);}
.m52_c00309{transform:matrix(0.261643,0.003401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261643,0.003401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261643,0.003401,-0.003250,0.249979,0,0);}
.m1_c00309{transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267110,0.000000,0.000000,0.250000,0,0);}
.m14c_c00309{transform:matrix(0.292248,0.004968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292248,0.004968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292248,0.004968,-0.004249,0.249964,0,0);}
.m12f_c00309{transform:matrix(0.300627,0.005111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.300627,0.005111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.300627,0.005111,-0.004249,0.249964,0,0);}
.m158_c00309{transform:matrix(0.320429,0.005447,-0.004249,0.249964,0,0);-ms-transform:matrix(0.320429,0.005447,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.320429,0.005447,-0.004249,0.249964,0,0);}
.m35_c00309{transform:matrix(0.321582,0.002251,-0.001750,0.249994,0,0);-ms-transform:matrix(0.321582,0.002251,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.321582,0.002251,-0.001750,0.249994,0,0);}
.m103_c00309{transform:matrix(0.323219,0.005171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.323219,0.005171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.323219,0.005171,-0.003999,0.249968,0,0);}
.m9c_c00309{transform:matrix(0.338213,0.003382,-0.002500,0.249988,0,0);-ms-transform:matrix(0.338213,0.003382,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.338213,0.003382,-0.002500,0.249988,0,0);}
.m15b_c00309{transform:matrix(0.353745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353745,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.586135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586135,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;}
.fs17_c00309{font-size:21.000000px;}
.fs11_c00309{font-size:24.150000px;}
.fs10_c00309{font-size:64.058198px;}
.fs9_c00309{font-size:68.253412px;}
.fs15_c00309{font-size:68.259861px;}
.fs3_c00309{font-size:69.301698px;}
.fsd_c00309{font-size:69.304193px;}
.fsf_c00309{font-size:69.308870px;}
.fs8_c00309{font-size:70.353517px;}
.fsc_c00309{font-size:70.354256px;}
.fs12_c00309{font-size:70.359004px;}
.fs16_c00309{font-size:70.360165px;}
.fs2_c00309{font-size:71.401749px;}
.fs7_c00309{font-size:71.403570px;}
.fs13_c00309{font-size:71.410317px;}
.fs1_c00309{font-size:72.451775px;}
.fsa_c00309{font-size:72.453622px;}
.fse_c00309{font-size:72.454383px;}
.fs6_c00309{font-size:72.455216px;}
.fs5_c00309{font-size:72.456122px;}
.fs14_c00309{font-size:72.461736px;}
.fs4_c00309{font-size:73.501801px;}
.fsb_c00309{font-size:73.504447px;}
.fs0_c00309{font-size:85.050000px;}
.y0_c00309{bottom:0.000000px;}
.y15b_c00309{bottom:170.727814px;}
.y15a_c00309{bottom:171.096137px;}
.y159_c00309{bottom:171.908923px;}
.y158_c00309{bottom:172.353924px;}
.y157_c00309{bottom:172.845054px;}
.y156_c00309{bottom:173.400980px;}
.y155_c00309{bottom:174.539299px;}
.y154_c00309{bottom:174.920524px;}
.y153_c00309{bottom:175.474588px;}
.y152_c00309{bottom:176.279292px;}
.y151_c00309{bottom:176.673904px;}
.y150_c00309{bottom:177.381121px;}
.y14f_c00309{bottom:177.959308px;}
.y14e_c00309{bottom:178.743000px;}
.y14d_c00309{bottom:194.012732px;}
.y14c_c00309{bottom:194.499425px;}
.y14b_c00309{bottom:194.880344px;}
.y14a_c00309{bottom:195.945606px;}
.y149_c00309{bottom:196.850091px;}
.y148_c00309{bottom:197.318195px;}
.y147_c00309{bottom:198.124836px;}
.y146_c00309{bottom:198.773403px;}
.y145_c00309{bottom:199.301253px;}
.y144_c00309{bottom:200.209640px;}
.y143_c00309{bottom:200.862108px;}
.y142_c00309{bottom:201.693000px;}
.y141_c00309{bottom:216.702483px;}
.y140_c00309{bottom:217.402566px;}
.y13f_c00309{bottom:217.878954px;}
.y13e_c00309{bottom:219.124410px;}
.y13d_c00309{bottom:219.706719px;}
.y13c_c00309{bottom:220.286355px;}
.y13a_c00309{bottom:220.503813px;}
.y13b_c00309{bottom:220.526439px;}
.y139_c00309{bottom:221.711010px;}
.y138_c00309{bottom:223.135800px;}
.y137_c00309{bottom:224.178162px;}
.y136_c00309{bottom:224.664000px;}
.y135_c00309{bottom:240.038421px;}
.y134_c00309{bottom:241.098635px;}
.y133_c00309{bottom:242.548386px;}
.y132_c00309{bottom:243.099263px;}
.y131_c00309{bottom:243.525520px;}
.y130_c00309{bottom:244.550672px;}
.y12f_c00309{bottom:245.110346px;}
.y12e_c00309{bottom:246.006058px;}
.y12d_c00309{bottom:246.304587px;}
.y12c_c00309{bottom:246.583200px;}
.y12b_c00309{bottom:247.593000px;}
.y11b_c00309{bottom:263.566248px;}
.y11a_c00309{bottom:264.051648px;}
.y119_c00309{bottom:264.940428px;}
.y118_c00309{bottom:266.013492px;}
.y117_c00309{bottom:266.398272px;}
.y116_c00309{bottom:266.685324px;}
.y115_c00309{bottom:266.954724px;}
.y114_c00309{bottom:267.001764px;}
.y113_c00309{bottom:267.836664px;}
.y112_c00309{bottom:268.200840px;}
.y111_c00309{bottom:268.930992px;}
.y110_c00309{bottom:269.729748px;}
.y10f_c00309{bottom:285.364992px;}
.y10e_c00309{bottom:285.724752px;}
.y10d_c00309{bottom:286.423464px;}
.y10c_c00309{bottom:287.262888px;}
.y10b_c00309{bottom:288.269328px;}
.y10a_c00309{bottom:288.926304px;}
.y109_c00309{bottom:289.280496px;}
.y108_c00309{bottom:289.789080px;}
.y107_c00309{bottom:290.780448px;}
.y106_c00309{bottom:291.466488px;}
.y105_c00309{bottom:291.704328px;}
.y104_c00309{bottom:292.413000px;}
.y12a_c00309{bottom:307.327296px;}
.y129_c00309{bottom:308.055168px;}
.y128_c00309{bottom:308.642832px;}
.y127_c00309{bottom:309.027336px;}
.y126_c00309{bottom:309.843360px;}
.y125_c00309{bottom:310.746744px;}
.y124_c00309{bottom:311.308416px;}
.y123_c00309{bottom:311.965248px;}
.y122_c00309{bottom:312.423240px;}
.y121_c00309{bottom:313.487136px;}
.y120_c00309{bottom:314.108304px;}
.y11f_c00309{bottom:314.522904px;}
.y11e_c00309{bottom:315.374184px;}
.y11d_c00309{bottom:315.633000px;}
.y103_c00309{bottom:331.568544px;}
.y102_c00309{bottom:332.211510px;}
.y101_c00309{bottom:332.857248px;}
.y100_c00309{bottom:333.166970px;}
.yff_c00309{bottom:333.427334px;}
.yfe_c00309{bottom:334.141779px;}
.yfd_c00309{bottom:334.583736px;}
.yfc_c00309{bottom:334.910135px;}
.yfb_c00309{bottom:335.680916px;}
.yfa_c00309{bottom:336.399485px;}
.yf9_c00309{bottom:337.303326px;}
.yf8_c00309{bottom:337.757358px;}
.yf7_c00309{bottom:355.934731px;}
.yf6_c00309{bottom:356.299926px;}
.yf5_c00309{bottom:357.140519px;}
.yf4_c00309{bottom:357.954315px;}
.yf3_c00309{bottom:358.180085px;}
.yf2_c00309{bottom:358.690397px;}
.yf1_c00309{bottom:358.933953px;}
.yf0_c00309{bottom:359.358696px;}
.yef_c00309{bottom:359.891085px;}
.yee_c00309{bottom:360.205757px;}
.yed_c00309{bottom:360.707357px;}
.yec_c00309{bottom:377.439849px;}
.yeb_c00309{bottom:377.901479px;}
.yea_c00309{bottom:378.833678px;}
.ye9_c00309{bottom:379.853618px;}
.ye8_c00309{bottom:380.489391px;}
.ye7_c00309{bottom:380.996169px;}
.ye6_c00309{bottom:382.069092px;}
.ye5_c00309{bottom:382.469853px;}
.ye4_c00309{bottom:382.997036px;}
.ye3_c00309{bottom:383.661198px;}
.ye2_c00309{bottom:400.692962px;}
.ye1_c00309{bottom:401.101698px;}
.ye0_c00309{bottom:401.376698px;}
.ydf_c00309{bottom:401.746679px;}
.yde_c00309{bottom:402.897062px;}
.ydd_c00309{bottom:403.215204px;}
.ydc_c00309{bottom:403.640422px;}
.y11c_c00309{bottom:403.650000px;}
.ydb_c00309{bottom:404.115980px;}
.yda_c00309{bottom:404.741722px;}
.yd9_c00309{bottom:405.450718px;}
.yd8_c00309{bottom:406.073409px;}
.yd7_c00309{bottom:423.664958px;}
.yd6_c00309{bottom:424.683120px;}
.yd5_c00309{bottom:425.182533px;}
.yd4_c00309{bottom:425.717583px;}
.yd3_c00309{bottom:425.928616px;}
.yd2_c00309{bottom:426.293666px;}
.yd1_c00309{bottom:426.552860px;}
.yd0_c00309{bottom:427.311005px;}
.ycf_c00309{bottom:427.629048px;}
.yce_c00309{bottom:428.123348px;}
.ycd_c00309{bottom:429.024701px;}
.ycc_c00309{bottom:446.805004px;}
.ycb_c00309{bottom:447.099084px;}
.yca_c00309{bottom:447.508433px;}
.yc9_c00309{bottom:447.794130px;}
.yc8_c00309{bottom:448.156387px;}
.yc7_c00309{bottom:448.364337px;}
.yc6_c00309{bottom:449.196053px;}
.yc5_c00309{bottom:449.499075px;}
.yc4_c00309{bottom:450.045522px;}
.yc3_c00309{bottom:450.425171px;}
.yc2_c00309{bottom:450.853874px;}
.yc1_c00309{bottom:451.144488px;}
.yc0_c00309{bottom:451.705950px;}
.ybf_c00309{bottom:469.467398px;}
.ybe_c00309{bottom:470.393702px;}
.ybd_c00309{bottom:470.628042px;}
.ybc_c00309{bottom:471.333124px;}
.ybb_c00309{bottom:471.776094px;}
.yba_c00309{bottom:472.097414px;}
.yb9_c00309{bottom:472.627182px;}
.yb8_c00309{bottom:473.338320px;}
.yb7_c00309{bottom:473.665020px;}
.yb6_c00309{bottom:474.118568px;}
.yb5_c00309{bottom:492.225535px;}
.yb4_c00309{bottom:492.613995px;}
.yb3_c00309{bottom:493.018311px;}
.yb2_c00309{bottom:493.582479px;}
.yb1_c00309{bottom:493.903388px;}
.yb0_c00309{bottom:494.104852px;}
.yaf_c00309{bottom:494.637044px;}
.yae_c00309{bottom:495.359001px;}
.yad_c00309{bottom:496.247014px;}
.yac_c00309{bottom:496.457769px;}
.yab_c00309{bottom:497.339942px;}
.yaa_c00309{bottom:515.501379px;}
.ya9_c00309{bottom:516.317881px;}
.ya8_c00309{bottom:516.914785px;}
.ya7_c00309{bottom:517.253580px;}
.ya6_c00309{bottom:517.648441px;}
.ya5_c00309{bottom:517.915230px;}
.ya4_c00309{bottom:518.206306px;}
.ya3_c00309{bottom:518.646460px;}
.ya2_c00309{bottom:518.892987px;}
.ya1_c00309{bottom:519.576335px;}
.ya0_c00309{bottom:520.072159px;}
.y9f_c00309{bottom:520.330500px;}
.y9e_c00309{bottom:540.318045px;}
.y9d_c00309{bottom:540.606990px;}
.y9c_c00309{bottom:540.761370px;}
.y9b_c00309{bottom:541.374135px;}
.y9a_c00309{bottom:541.562310px;}
.y99_c00309{bottom:541.946745px;}
.y98_c00309{bottom:542.151660px;}
.y97_c00309{bottom:542.537790px;}
.y96_c00309{bottom:542.853000px;}
.y95_c00309{bottom:543.239655px;}
.y94_c00309{bottom:561.263100px;}
.y93_c00309{bottom:561.795510px;}
.y92_c00309{bottom:562.021860px;}
.y91_c00309{bottom:562.554270px;}
.y90_c00309{bottom:562.948425px;}
.y8f_c00309{bottom:563.105010px;}
.y8e_c00309{bottom:563.793390px;}
.y8d_c00309{bottom:564.071670px;}
.y8c_c00309{bottom:564.430785px;}
.y8b_c00309{bottom:564.695430px;}
.y8a_c00309{bottom:564.832200px;}
.y89_c00309{bottom:565.316505px;}
.y88_c00309{bottom:565.650795px;}
.y87_c00309{bottom:584.256750px;}
.y86_c00309{bottom:585.233730px;}
.y85_c00309{bottom:585.664230px;}
.y84_c00309{bottom:585.852930px;}
.y83_c00309{bottom:586.991115px;}
.y82_c00309{bottom:587.521875px;}
.y81_c00309{bottom:587.804400px;}
.y80_c00309{bottom:588.166365px;}
.y7f_c00309{bottom:588.413430px;}
.y7e_c00309{bottom:589.140915px;}
.y7d_c00309{bottom:607.188000px;}
.y7c_c00309{bottom:607.505505px;}
.y7b_c00309{bottom:607.716720px;}
.y7a_c00309{bottom:608.577795px;}
.y79_c00309{bottom:609.111345px;}
.y78_c00309{bottom:609.556815px;}
.y77_c00309{bottom:610.579065px;}
.y76_c00309{bottom:610.876140px;}
.y75_c00309{bottom:611.228925px;}
.y74_c00309{bottom:611.812815px;}
.y73_c00309{bottom:612.089940px;}
.y72_c00309{bottom:630.688950px;}
.y71_c00309{bottom:631.009755px;}
.y70_c00309{bottom:631.423395px;}
.y6f_c00309{bottom:632.363025px;}
.y6e_c00309{bottom:632.541240px;}
.y6d_c00309{bottom:633.142875px;}
.y6c_c00309{bottom:633.518700px;}
.y6b_c00309{bottom:633.931425px;}
.y6a_c00309{bottom:634.148280px;}
.y69_c00309{bottom:634.583070px;}
.y68_c00309{bottom:634.690740px;}
.y67_c00309{bottom:635.041500px;}
.y66_c00309{bottom:653.021898px;}
.y65_c00309{bottom:653.185878px;}
.y64_c00309{bottom:653.819262px;}
.y63_c00309{bottom:654.176418px;}
.y62_c00309{bottom:654.643068px;}
.y61_c00309{bottom:654.924066px;}
.y60_c00309{bottom:655.487934px;}
.y5f_c00309{bottom:655.728252px;}
.y5e_c00309{bottom:656.123622px;}
.y5d_c00309{bottom:656.372382px;}
.y5c_c00309{bottom:656.640654px;}
.y5b_c00309{bottom:657.422754px;}
.y5a_c00309{bottom:658.261500px;}
.y59_c00309{bottom:675.549171px;}
.y58_c00309{bottom:675.945080px;}
.y57_c00309{bottom:676.412007px;}
.y56_c00309{bottom:677.041155px;}
.y55_c00309{bottom:677.866668px;}
.y54_c00309{bottom:678.196023px;}
.y53_c00309{bottom:678.427663px;}
.y52_c00309{bottom:678.697816px;}
.y51_c00309{bottom:678.893577px;}
.y50_c00309{bottom:679.582531px;}
.y4f_c00309{bottom:679.979123px;}
.y4e_c00309{bottom:681.067222px;}
.y4d_c00309{bottom:681.481500px;}
.y4c_c00309{bottom:698.895294px;}
.y4b_c00309{bottom:699.546715px;}
.y4a_c00309{bottom:700.201254px;}
.y49_c00309{bottom:700.950169px;}
.y48_c00309{bottom:701.419219px;}
.y47_c00309{bottom:702.102957px;}
.y46_c00309{bottom:702.542955px;}
.y45_c00309{bottom:702.863638px;}
.y44_c00309{bottom:703.622451px;}
.y43_c00309{bottom:704.072776px;}
.y42_c00309{bottom:704.429071px;}
.y41_c00309{bottom:722.045692px;}
.y40_c00309{bottom:723.209625px;}
.y3f_c00309{bottom:723.577527px;}
.y3e_c00309{bottom:724.358107px;}
.y3d_c00309{bottom:724.584237px;}
.y3c_c00309{bottom:725.014308px;}
.y3b_c00309{bottom:725.616747px;}
.y3a_c00309{bottom:726.053829px;}
.y39_c00309{bottom:726.528393px;}
.y38_c00309{bottom:726.837831px;}
.y37_c00309{bottom:744.907381px;}
.y36_c00309{bottom:745.163001px;}
.y35_c00309{bottom:745.312360px;}
.y34_c00309{bottom:745.843596px;}
.y33_c00309{bottom:746.057374px;}
.y32_c00309{bottom:746.278365px;}
.y31_c00309{bottom:747.034359px;}
.y30_c00309{bottom:747.338851px;}
.y2f_c00309{bottom:748.252591px;}
.y2e_c00309{bottom:748.922227px;}
.y2d_c00309{bottom:749.248218px;}
.y2c_c00309{bottom:768.636058px;}
.y2b_c00309{bottom:768.888699px;}
.y2a_c00309{bottom:769.657591px;}
.y29_c00309{bottom:769.822452px;}
.y28_c00309{bottom:770.321863px;}
.y27_c00309{bottom:770.503123px;}
.y26_c00309{bottom:770.830620px;}
.y25_c00309{bottom:771.195324px;}
.y24_c00309{bottom:771.410998px;}
.y23_c00309{bottom:771.843334px;}
.y22_c00309{bottom:772.198389px;}
.y21_c00309{bottom:791.161150px;}
.y20_c00309{bottom:792.200664px;}
.y1f_c00309{bottom:792.540510px;}
.y1e_c00309{bottom:792.761763px;}
.y1d_c00309{bottom:793.415748px;}
.y1c_c00309{bottom:794.125786px;}
.y1b_c00309{bottom:794.370888px;}
.y1a_c00309{bottom:795.079414px;}
.y19_c00309{bottom:795.338770px;}
.y18_c00309{bottom:795.689586px;}
.y17_c00309{bottom:815.547480px;}
.y16_c00309{bottom:816.055953px;}
.y15_c00309{bottom:816.407545px;}
.y14_c00309{bottom:816.787372px;}
.y13_c00309{bottom:816.955393px;}
.y12_c00309{bottom:817.325875px;}
.y11_c00309{bottom:817.482913px;}
.y10_c00309{bottom:817.720822px;}
.yf_c00309{bottom:817.904163px;}
.ye_c00309{bottom:818.392140px;}
.yd_c00309{bottom:818.639646px;}
.yc_c00309{bottom:838.458207px;}
.yb_c00309{bottom:838.586853px;}
.ya_c00309{bottom:838.879666px;}
.y9_c00309{bottom:838.986945px;}
.y8_c00309{bottom:839.467477px;}
.y7_c00309{bottom:840.162997px;}
.y6_c00309{bottom:840.369007px;}
.y5_c00309{bottom:840.690328px;}
.y4_c00309{bottom:840.807487px;}
.y3_c00309{bottom:841.289479px;}
.y2_c00309{bottom:841.590000px;}
.y1_c00309{bottom:885.156000px;}
.y15c_c00309{bottom:924.750000px;}
.h19_c00309{height:21.000000px;}
.h13_c00309{height:24.150000px;}
.h12_c00309{height:64.058198px;}
.hb_c00309{height:68.253412px;}
.h17_c00309{height:68.259861px;}
.h5_c00309{height:69.301698px;}
.hf_c00309{height:69.304193px;}
.h11_c00309{height:69.308870px;}
.ha_c00309{height:70.353517px;}
.he_c00309{height:70.354256px;}
.h14_c00309{height:70.359004px;}
.h18_c00309{height:70.360165px;}
.h4_c00309{height:71.401749px;}
.h9_c00309{height:71.403570px;}
.h15_c00309{height:71.410317px;}
.h3_c00309{height:72.451775px;}
.hc_c00309{height:72.453622px;}
.h10_c00309{height:72.454383px;}
.h8_c00309{height:72.455216px;}
.h7_c00309{height:72.456122px;}
.h16_c00309{height:72.461736px;}
.h6_c00309{height:73.501801px;}
.hd_c00309{height:73.504447px;}
.h2_c00309{height:85.050000px;}
.h0_c00309{height:1008.450000px;}
.h1_c00309{height:1008.750000px;}
.w0_c00309{width:696.000000px;}
.x0_c00309{left:0.000000px;}
.xa4_c00309{left:117.808500px;}
.x3d_c00309{left:126.195000px;}
.xa9_c00309{left:132.366000px;}
.x99_c00309{left:133.969371px;}
.x69_c00309{left:135.128910px;}
.x46_c00309{left:136.728000px;}
.x17_c00309{left:138.380658px;}
.x1_c00309{left:139.860000px;}
.x6d_c00309{left:151.057500px;}
.x3e_c00309{left:158.062500px;}
.xaa_c00309{left:159.357000px;}
.x56_c00309{left:162.451305px;}
.xb6_c00309{left:164.491500px;}
.x2f_c00309{left:166.496931px;}
.x35_c00309{left:167.499299px;}
.x61_c00309{left:169.418085px;}
.x27_c00309{left:171.320417px;}
.xd_c00309{left:174.319329px;}
.x91_c00309{left:178.819874px;}
.x7c_c00309{left:180.727832px;}
.x4_c00309{left:182.431500px;}
.x83_c00309{left:185.892761px;}
.x9f_c00309{left:186.902292px;}
.x9c_c00309{left:193.671000px;}
.x2_c00309{left:198.450000px;}
.x5c_c00309{left:202.359825px;}
.x36_c00309{left:205.044486px;}
.x47_c00309{left:206.623500px;}
.x96_c00309{left:208.564838px;}
.x30_c00309{left:209.647724px;}
.x84_c00309{left:212.312261px;}
.x7d_c00309{left:213.428195px;}
.x57_c00309{left:215.589780px;}
.x62_c00309{left:217.848585px;}
.x6e_c00309{left:219.618000px;}
.x5d_c00309{left:224.816100px;}
.x4f_c00309{left:226.084500px;}
.x63_c00309{left:231.525585px;}
.x74_c00309{left:234.483207px;}
.xa0_c00309{left:235.537560px;}
.x1e_c00309{left:236.728035px;}
.x28_c00309{left:238.267010px;}
.x92_c00309{left:240.675651px;}
.x3f_c00309{left:241.762500px;}
.xe_c00309{left:244.030329px;}
.x8d_c00309{left:245.550110px;}
.x50_c00309{left:247.770000px;}
.x31_c00309{left:249.372611px;}
.x87_c00309{left:250.681961px;}
.x3_c00309{left:252.180000px;}
.x5e_c00309{left:257.712270px;}
.xa1_c00309{left:259.798944px;}
.x1f_c00309{left:263.681346px;}
.x5_c00309{left:268.024500px;}
.xf_c00309{left:270.221829px;}
.x40_c00309{left:272.269500px;}
.xb0_c00309{left:273.585000px;}
.x58_c00309{left:274.725195px;}
.x88_c00309{left:277.140164px;}
.xa7_c00309{left:279.481500px;}
.x6f_c00309{left:281.740500px;}
.x5f_c00309{left:283.414515px;}
.x7e_c00309{left:284.486970px;}
.x85_c00309{left:285.798761px;}
.x51_c00309{left:289.042500px;}
.x18_c00309{left:294.705872px;}
.xab_c00309{left:296.421000px;}
.x8e_c00309{left:297.662532px;}
.x6a_c00309{left:302.863410px;}
.x10_c00309{left:304.208829px;}
.x20_c00309{left:309.353031px;}
.xb7_c00309{left:310.651500px;}
.x93_c00309{left:312.165500px;}
.x6_c00309{left:313.927500px;}
.x75_c00309{left:315.211707px;}
.x97_c00309{left:317.718338px;}
.x64_c00309{left:321.729585px;}
.x41_c00309{left:325.266000px;}
.x11_c00309{left:326.642829px;}
.x29_c00309{left:329.585088px;}
.x37_c00309{left:331.682055px;}
.x86_c00309{left:335.475761px;}
.x7f_c00309{left:337.421048px;}
.x42_c00309{left:340.324500px;}
.x7_c00309{left:343.357500px;}
.x94_c00309{left:345.962015px;}
.x48_c00309{left:347.832000px;}
.x21_c00309{left:350.352248px;}
.x9d_c00309{left:352.432500px;}
.xa2_c00309{left:355.699980px;}
.x2a_c00309{left:360.011948px;}
.x43_c00309{left:361.105500px;}
.xac_c00309{left:362.230500px;}
.x32_c00309{left:363.817908px;}
.x19_c00309{left:365.709881px;}
.x49_c00309{left:367.858500px;}
.x80_c00309{left:369.495894px;}
.x70_c00309{left:370.627500px;}
.x22_c00309{left:373.032090px;}
.xad_c00309{left:375.568500px;}
.x12_c00309{left:379.568829px;}
.x76_c00309{left:380.844207px;}
.x6b_c00309{left:382.957410px;}
.x98_c00309{left:384.634838px;}
.x52_c00309{left:386.788500px;}
.x38_c00309{left:388.642560px;}
.x65_c00309{left:390.567585px;}
.x89_c00309{left:392.446910px;}
.x9e_c00309{left:393.493500px;}
.x71_c00309{left:394.881000px;}
.x6c_c00309{left:398.395410px;}
.x13_c00309{left:403.571829px;}
.x53_c00309{left:404.610000px;}
.x66_c00309{left:406.226085px;}
.x59_c00309{left:408.145860px;}
.x8a_c00309{left:409.995212px;}
.x81_c00309{left:413.720873px;}
.x4a_c00309{left:414.847500px;}
.xb1_c00309{left:417.771000px;}
.xa5_c00309{left:423.199500px;}
.x39_c00309{left:427.791195px;}
.x77_c00309{left:429.225207px;}
.x1a_c00309{left:431.063505px;}
.xb8_c00309{left:432.628500px;}
.x23_c00309{left:435.376149px;}
.x4b_c00309{left:438.264000px;}
.xae_c00309{left:440.121000px;}
.x8_c00309{left:442.717500px;}
.x67_c00309{left:445.641585px;}
.x78_c00309{left:447.540207px;}
.x1b_c00309{left:453.242043px;}
.x8b_c00309{left:454.544717px;}
.x24_c00309{left:455.927502px;}
.x14_c00309{left:457.832829px;}
.x72_c00309{left:461.577000px;}
.xb9_c00309{left:465.330000px;}
.x33_c00309{left:468.312489px;}
.xb2_c00309{left:470.976000px;}
.x4c_c00309{left:477.151500px;}
.x2b_c00309{left:479.118449px;}
.x82_c00309{left:484.229148px;}
.x1c_c00309{left:487.219329px;}
.x3a_c00309{left:490.205511px;}
.x60_c00309{left:491.526945px;}
.x8f_c00309{left:495.051354px;}
.x8c_c00309{left:496.127255px;}
.x54_c00309{left:498.573000px;}
.x4d_c00309{left:506.914500px;}
.x15_c00309{left:508.060329px;}
.xaf_c00309{left:509.313000px;}
.x9_c00309{left:511.365000px;}
.x44_c00309{left:516.156000px;}
.x95_c00309{left:518.491925px;}
.xba_c00309{left:520.396500px;}
.x68_c00309{left:521.517585px;}
.xa_c00309{left:526.690500px;}
.x79_c00309{left:528.001707px;}
.x9a_c00309{left:530.124303px;}
.x2c_c00309{left:532.293836px;}
.xb3_c00309{left:533.638500px;}
.x5a_c00309{left:535.007100px;}
.x55_c00309{left:539.937000px;}
.x3b_c00309{left:544.709100px;}
.x2d_c00309{left:547.202021px;}
.x90_c00309{left:548.776260px;}
.x25_c00309{left:552.054330px;}
.x5b_c00309{left:554.178405px;}
.xb4_c00309{left:556.045500px;}
.x4e_c00309{left:559.696500px;}
.x7a_c00309{left:564.757707px;}
.xb_c00309{left:568.521000px;}
.x2e_c00309{left:572.789985px;}
.x34_c00309{left:574.157028px;}
.x9b_c00309{left:576.028785px;}
.xa8_c00309{left:577.830000px;}
.x16_c00309{left:580.699329px;}
.x45_c00309{left:582.528000px;}
.x26_c00309{left:583.645610px;}
.xb5_c00309{left:584.674500px;}
.xc_c00309{left:586.899000px;}
.x73_c00309{left:590.068500px;}
.x1d_c00309{left:591.147645px;}
.x3c_c00309{left:598.981700px;}
.x7b_c00309{left:600.072207px;}
.xa3_c00309{left:619.110000px;}
.xa6_c00309{left:636.915000px;}
.xbc_c00309{left:691.200000px;}
.xbb_c00309{left:692.550000px;}
.xbd_c00309{left:693.630000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.fs17_c00309{font-size:18.666667pt;}
.fs11_c00309{font-size:21.466667pt;}
.fs10_c00309{font-size:56.940620pt;}
.fs9_c00309{font-size:60.669700pt;}
.fs15_c00309{font-size:60.675432pt;}
.fs3_c00309{font-size:61.601509pt;}
.fsd_c00309{font-size:61.603727pt;}
.fsf_c00309{font-size:61.607884pt;}
.fs8_c00309{font-size:62.536460pt;}
.fsc_c00309{font-size:62.537116pt;}
.fs12_c00309{font-size:62.541337pt;}
.fs16_c00309{font-size:62.542369pt;}
.fs2_c00309{font-size:63.468222pt;}
.fs7_c00309{font-size:63.469840pt;}
.fs13_c00309{font-size:63.475837pt;}
.fs1_c00309{font-size:64.401578pt;}
.fsa_c00309{font-size:64.403220pt;}
.fse_c00309{font-size:64.403896pt;}
.fs6_c00309{font-size:64.404637pt;}
.fs5_c00309{font-size:64.405442pt;}
.fs14_c00309{font-size:64.410432pt;}
.fs4_c00309{font-size:65.334934pt;}
.fsb_c00309{font-size:65.337286pt;}
.fs0_c00309{font-size:75.600000pt;}
.y0_c00309{bottom:0.000000pt;}
.y15b_c00309{bottom:151.758057pt;}
.y15a_c00309{bottom:152.085455pt;}
.y159_c00309{bottom:152.807932pt;}
.y158_c00309{bottom:153.203488pt;}
.y157_c00309{bottom:153.640048pt;}
.y156_c00309{bottom:154.134204pt;}
.y155_c00309{bottom:155.146044pt;}
.y154_c00309{bottom:155.484911pt;}
.y153_c00309{bottom:155.977412pt;}
.y152_c00309{bottom:156.692704pt;}
.y151_c00309{bottom:157.043471pt;}
.y150_c00309{bottom:157.672108pt;}
.y14f_c00309{bottom:158.186052pt;}
.y14e_c00309{bottom:158.882667pt;}
.y14d_c00309{bottom:172.455761pt;}
.y14c_c00309{bottom:172.888377pt;}
.y14b_c00309{bottom:173.226972pt;}
.y14a_c00309{bottom:174.173872pt;}
.y149_c00309{bottom:174.977859pt;}
.y148_c00309{bottom:175.393951pt;}
.y147_c00309{bottom:176.110965pt;}
.y146_c00309{bottom:176.687469pt;}
.y145_c00309{bottom:177.156669pt;}
.y144_c00309{bottom:177.964124pt;}
.y143_c00309{bottom:178.544096pt;}
.y142_c00309{bottom:179.282667pt;}
.y141_c00309{bottom:192.624429pt;}
.y140_c00309{bottom:193.246725pt;}
.y13f_c00309{bottom:193.670181pt;}
.y13e_c00309{bottom:194.777253pt;}
.y13d_c00309{bottom:195.294861pt;}
.y13c_c00309{bottom:195.810093pt;}
.y13a_c00309{bottom:196.003389pt;}
.y13b_c00309{bottom:196.023501pt;}
.y139_c00309{bottom:197.076453pt;}
.y138_c00309{bottom:198.342933pt;}
.y137_c00309{bottom:199.269477pt;}
.y136_c00309{bottom:199.701333pt;}
.y135_c00309{bottom:213.367485pt;}
.y134_c00309{bottom:214.309897pt;}
.y133_c00309{bottom:215.598565pt;}
.y132_c00309{bottom:216.088233pt;}
.y131_c00309{bottom:216.467129pt;}
.y130_c00309{bottom:217.378375pt;}
.y12f_c00309{bottom:217.875863pt;}
.y12e_c00309{bottom:218.672052pt;}
.y12d_c00309{bottom:218.937411pt;}
.y12c_c00309{bottom:219.185067pt;}
.y12b_c00309{bottom:220.082667pt;}
.y11b_c00309{bottom:234.281109pt;}
.y11a_c00309{bottom:234.712576pt;}
.y119_c00309{bottom:235.502603pt;}
.y118_c00309{bottom:236.456437pt;}
.y117_c00309{bottom:236.798464pt;}
.y116_c00309{bottom:237.053621pt;}
.y115_c00309{bottom:237.293088pt;}
.y114_c00309{bottom:237.334901pt;}
.y113_c00309{bottom:238.077035pt;}
.y112_c00309{bottom:238.400747pt;}
.y111_c00309{bottom:239.049771pt;}
.y110_c00309{bottom:239.759776pt;}
.y10f_c00309{bottom:253.657771pt;}
.y10e_c00309{bottom:253.977557pt;}
.y10d_c00309{bottom:254.598635pt;}
.y10c_c00309{bottom:255.344789pt;}
.y10b_c00309{bottom:256.239403pt;}
.y10a_c00309{bottom:256.823381pt;}
.y109_c00309{bottom:257.138219pt;}
.y108_c00309{bottom:257.590293pt;}
.y107_c00309{bottom:258.471509pt;}
.y106_c00309{bottom:259.081323pt;}
.y105_c00309{bottom:259.292736pt;}
.y104_c00309{bottom:259.922667pt;}
.y12a_c00309{bottom:273.179819pt;}
.y129_c00309{bottom:273.826816pt;}
.y128_c00309{bottom:274.349184pt;}
.y127_c00309{bottom:274.690965pt;}
.y126_c00309{bottom:275.416320pt;}
.y125_c00309{bottom:276.219328pt;}
.y124_c00309{bottom:276.718592pt;}
.y123_c00309{bottom:277.302443pt;}
.y122_c00309{bottom:277.709547pt;}
.y121_c00309{bottom:278.655232pt;}
.y120_c00309{bottom:279.207381pt;}
.y11f_c00309{bottom:279.575915pt;}
.y11e_c00309{bottom:280.332608pt;}
.y11d_c00309{bottom:280.562667pt;}
.y103_c00309{bottom:294.727595pt;}
.y102_c00309{bottom:295.299120pt;}
.y101_c00309{bottom:295.873109pt;}
.y100_c00309{bottom:296.148417pt;}
.yff_c00309{bottom:296.379852pt;}
.yfe_c00309{bottom:297.014915pt;}
.yfd_c00309{bottom:297.407765pt;}
.yfc_c00309{bottom:297.697897pt;}
.yfb_c00309{bottom:298.383036pt;}
.yfa_c00309{bottom:299.021764pt;}
.yf9_c00309{bottom:299.825179pt;}
.yf8_c00309{bottom:300.228763pt;}
.yf7_c00309{bottom:316.386428pt;}
.yf6_c00309{bottom:316.711045pt;}
.yf5_c00309{bottom:317.458239pt;}
.yf4_c00309{bottom:318.181613pt;}
.yf3_c00309{bottom:318.382297pt;}
.yf2_c00309{bottom:318.835908pt;}
.yf1_c00309{bottom:319.052403pt;}
.yf0_c00309{bottom:319.429952pt;}
.yef_c00309{bottom:319.903187pt;}
.yee_c00309{bottom:320.182895pt;}
.yed_c00309{bottom:320.628761pt;}
.yec_c00309{bottom:335.502088pt;}
.yeb_c00309{bottom:335.912425pt;}
.yea_c00309{bottom:336.741047pt;}
.ye9_c00309{bottom:337.647660pt;}
.ye8_c00309{bottom:338.212792pt;}
.ye7_c00309{bottom:338.663261pt;}
.ye6_c00309{bottom:339.616971pt;}
.ye5_c00309{bottom:339.973203pt;}
.ye4_c00309{bottom:340.441809pt;}
.ye3_c00309{bottom:341.032176pt;}
.ye2_c00309{bottom:356.171521pt;}
.ye1_c00309{bottom:356.534843pt;}
.ye0_c00309{bottom:356.779287pt;}
.ydf_c00309{bottom:357.108159pt;}
.yde_c00309{bottom:358.130721pt;}
.ydd_c00309{bottom:358.413515pt;}
.ydc_c00309{bottom:358.791487pt;}
.y11c_c00309{bottom:358.800000pt;}
.ydb_c00309{bottom:359.214204pt;}
.yda_c00309{bottom:359.770420pt;}
.yd9_c00309{bottom:360.400639pt;}
.yd8_c00309{bottom:360.954141pt;}
.yd7_c00309{bottom:376.591073pt;}
.yd6_c00309{bottom:377.496107pt;}
.yd5_c00309{bottom:377.940029pt;}
.yd4_c00309{bottom:378.415629pt;}
.yd3_c00309{bottom:378.603215pt;}
.yd2_c00309{bottom:378.927703pt;}
.yd1_c00309{bottom:379.158097pt;}
.yd0_c00309{bottom:379.832004pt;}
.ycf_c00309{bottom:380.114709pt;}
.yce_c00309{bottom:380.554087pt;}
.ycd_c00309{bottom:381.355289pt;}
.ycc_c00309{bottom:397.160004pt;}
.ycb_c00309{bottom:397.421408pt;}
.yca_c00309{bottom:397.785273pt;}
.yc9_c00309{bottom:398.039227pt;}
.yc8_c00309{bottom:398.361233pt;}
.yc7_c00309{bottom:398.546077pt;}
.yc6_c00309{bottom:399.285380pt;}
.yc5_c00309{bottom:399.554733pt;}
.yc4_c00309{bottom:400.040464pt;}
.yc3_c00309{bottom:400.377929pt;}
.yc2_c00309{bottom:400.758999pt;}
.yc1_c00309{bottom:401.017323pt;}
.yc0_c00309{bottom:401.516400pt;}
.ybf_c00309{bottom:417.304353pt;}
.ybe_c00309{bottom:418.127735pt;}
.ybd_c00309{bottom:418.336037pt;}
.ybc_c00309{bottom:418.962777pt;}
.ybb_c00309{bottom:419.356528pt;}
.yba_c00309{bottom:419.642145pt;}
.yb9_c00309{bottom:420.113051pt;}
.yb8_c00309{bottom:420.745173pt;}
.yb7_c00309{bottom:421.035573pt;}
.yb6_c00309{bottom:421.438727pt;}
.yb5_c00309{bottom:437.533809pt;}
.yb4_c00309{bottom:437.879107pt;}
.yb3_c00309{bottom:438.238499pt;}
.yb2_c00309{bottom:438.739981pt;}
.yb1_c00309{bottom:439.025233pt;}
.yb0_c00309{bottom:439.204313pt;}
.yaf_c00309{bottom:439.677372pt;}
.yae_c00309{bottom:440.319112pt;}
.yad_c00309{bottom:441.108457pt;}
.yac_c00309{bottom:441.295795pt;}
.yab_c00309{bottom:442.079948pt;}
.yaa_c00309{bottom:458.223448pt;}
.ya9_c00309{bottom:458.949228pt;}
.ya8_c00309{bottom:459.479809pt;}
.ya7_c00309{bottom:459.780960pt;}
.ya6_c00309{bottom:460.131948pt;}
.ya5_c00309{bottom:460.369093pt;}
.ya4_c00309{bottom:460.627828pt;}
.ya3_c00309{bottom:461.019076pt;}
.ya2_c00309{bottom:461.238211pt;}
.ya1_c00309{bottom:461.845631pt;}
.ya0_c00309{bottom:462.286364pt;}
.y9f_c00309{bottom:462.516000pt;}
.y9e_c00309{bottom:480.282707pt;}
.y9d_c00309{bottom:480.539547pt;}
.y9c_c00309{bottom:480.676773pt;}
.y9b_c00309{bottom:481.221453pt;}
.y9a_c00309{bottom:481.388720pt;}
.y99_c00309{bottom:481.730440pt;}
.y98_c00309{bottom:481.912587pt;}
.y97_c00309{bottom:482.255813pt;}
.y96_c00309{bottom:482.536000pt;}
.y95_c00309{bottom:482.879693pt;}
.y94_c00309{bottom:498.900533pt;}
.y93_c00309{bottom:499.373787pt;}
.y92_c00309{bottom:499.574987pt;}
.y91_c00309{bottom:500.048240pt;}
.y90_c00309{bottom:500.398600pt;}
.y8f_c00309{bottom:500.537787pt;}
.y8e_c00309{bottom:501.149680pt;}
.y8d_c00309{bottom:501.397040pt;}
.y8c_c00309{bottom:501.716253pt;}
.y8b_c00309{bottom:501.951493pt;}
.y8a_c00309{bottom:502.073067pt;}
.y89_c00309{bottom:502.503560pt;}
.y88_c00309{bottom:502.800707pt;}
.y87_c00309{bottom:519.339333pt;}
.y86_c00309{bottom:520.207760pt;}
.y85_c00309{bottom:520.590427pt;}
.y84_c00309{bottom:520.758160pt;}
.y83_c00309{bottom:521.769880pt;}
.y82_c00309{bottom:522.241667pt;}
.y81_c00309{bottom:522.492800pt;}
.y80_c00309{bottom:522.814547pt;}
.y7f_c00309{bottom:523.034160pt;}
.y7e_c00309{bottom:523.680813pt;}
.y7d_c00309{bottom:539.722667pt;}
.y7c_c00309{bottom:540.004893pt;}
.y7b_c00309{bottom:540.192640pt;}
.y7a_c00309{bottom:540.958040pt;}
.y79_c00309{bottom:541.432307pt;}
.y78_c00309{bottom:541.828280pt;}
.y77_c00309{bottom:542.736947pt;}
.y76_c00309{bottom:543.001013pt;}
.y75_c00309{bottom:543.314600pt;}
.y74_c00309{bottom:543.833613pt;}
.y73_c00309{bottom:544.079947pt;}
.y72_c00309{bottom:560.612400pt;}
.y71_c00309{bottom:560.897560pt;}
.y70_c00309{bottom:561.265240pt;}
.y6f_c00309{bottom:562.100467pt;}
.y6e_c00309{bottom:562.258880pt;}
.y6d_c00309{bottom:562.793667pt;}
.y6c_c00309{bottom:563.127733pt;}
.y6b_c00309{bottom:563.494600pt;}
.y6a_c00309{bottom:563.687360pt;}
.y69_c00309{bottom:564.073840pt;}
.y68_c00309{bottom:564.169547pt;}
.y67_c00309{bottom:564.481333pt;}
.y66_c00309{bottom:580.463909pt;}
.y65_c00309{bottom:580.609669pt;}
.y64_c00309{bottom:581.172677pt;}
.y63_c00309{bottom:581.490149pt;}
.y62_c00309{bottom:581.904949pt;}
.y61_c00309{bottom:582.154725pt;}
.y60_c00309{bottom:582.655941pt;}
.y5f_c00309{bottom:582.869557pt;}
.y5e_c00309{bottom:583.220997pt;}
.y5d_c00309{bottom:583.442117pt;}
.y5c_c00309{bottom:583.680581pt;}
.y5b_c00309{bottom:584.375781pt;}
.y5a_c00309{bottom:585.121333pt;}
.y59_c00309{bottom:600.488152pt;}
.y58_c00309{bottom:600.840071pt;}
.y57_c00309{bottom:601.255117pt;}
.y56_c00309{bottom:601.814360pt;}
.y55_c00309{bottom:602.548149pt;}
.y54_c00309{bottom:602.840909pt;}
.y53_c00309{bottom:603.046812pt;}
.y52_c00309{bottom:603.286948pt;}
.y51_c00309{bottom:603.460957pt;}
.y50_c00309{bottom:604.073361pt;}
.y4f_c00309{bottom:604.425887pt;}
.y4e_c00309{bottom:605.393087pt;}
.y4d_c00309{bottom:605.761333pt;}
.y4c_c00309{bottom:621.240261pt;}
.y4b_c00309{bottom:621.819303pt;}
.y4a_c00309{bottom:622.401115pt;}
.y49_c00309{bottom:623.066817pt;}
.y48_c00309{bottom:623.483751pt;}
.y47_c00309{bottom:624.091517pt;}
.y46_c00309{bottom:624.482627pt;}
.y45_c00309{bottom:624.767679pt;}
.y44_c00309{bottom:625.442179pt;}
.y43_c00309{bottom:625.842468pt;}
.y42_c00309{bottom:626.159175pt;}
.y41_c00309{bottom:641.818393pt;}
.y40_c00309{bottom:642.853000pt;}
.y3f_c00309{bottom:643.180024pt;}
.y3e_c00309{bottom:643.873873pt;}
.y3d_c00309{bottom:644.074877pt;}
.y3c_c00309{bottom:644.457163pt;}
.y3b_c00309{bottom:644.992664pt;}
.y3a_c00309{bottom:645.381181pt;}
.y39_c00309{bottom:645.803016pt;}
.y38_c00309{bottom:646.078072pt;}
.y37_c00309{bottom:662.139895pt;}
.y36_c00309{bottom:662.367112pt;}
.y35_c00309{bottom:662.499876pt;}
.y34_c00309{bottom:662.972085pt;}
.y33_c00309{bottom:663.162111pt;}
.y32_c00309{bottom:663.358547pt;}
.y31_c00309{bottom:664.030541pt;}
.y30_c00309{bottom:664.301201pt;}
.y2f_c00309{bottom:665.113415pt;}
.y2e_c00309{bottom:665.708647pt;}
.y2d_c00309{bottom:665.998416pt;}
.y2c_c00309{bottom:683.232052pt;}
.y2b_c00309{bottom:683.456621pt;}
.y2a_c00309{bottom:684.140081pt;}
.y29_c00309{bottom:684.286624pt;}
.y28_c00309{bottom:684.730545pt;}
.y27_c00309{bottom:684.891665pt;}
.y26_c00309{bottom:685.182773pt;}
.y25_c00309{bottom:685.506955pt;}
.y24_c00309{bottom:685.698665pt;}
.y23_c00309{bottom:686.082964pt;}
.y22_c00309{bottom:686.398568pt;}
.y21_c00309{bottom:703.254356pt;}
.y20_c00309{bottom:704.178368pt;}
.y1f_c00309{bottom:704.480453pt;}
.y1e_c00309{bottom:704.677123pt;}
.y1d_c00309{bottom:705.258443pt;}
.y1c_c00309{bottom:705.889588pt;}
.y1b_c00309{bottom:706.107456pt;}
.y1a_c00309{bottom:706.737257pt;}
.y19_c00309{bottom:706.967796pt;}
.y18_c00309{bottom:707.279632pt;}
.y17_c00309{bottom:724.931093pt;}
.y16_c00309{bottom:725.383069pt;}
.y15_c00309{bottom:725.695596pt;}
.y14_c00309{bottom:726.033220pt;}
.y13_c00309{bottom:726.182572pt;}
.y12_c00309{bottom:726.511889pt;}
.y11_c00309{bottom:726.651479pt;}
.y10_c00309{bottom:726.862953pt;}
.yf_c00309{bottom:727.025923pt;}
.ye_c00309{bottom:727.459680pt;}
.yd_c00309{bottom:727.679685pt;}
.yc_c00309{bottom:745.296184pt;}
.yb_c00309{bottom:745.410536pt;}
.ya_c00309{bottom:745.670815pt;}
.y9_c00309{bottom:745.766173pt;}
.y8_c00309{bottom:746.193313pt;}
.y7_c00309{bottom:746.811553pt;}
.y6_c00309{bottom:746.994673pt;}
.y5_c00309{bottom:747.280292pt;}
.y4_c00309{bottom:747.384433pt;}
.y3_c00309{bottom:747.812871pt;}
.y2_c00309{bottom:748.080000pt;}
.y1_c00309{bottom:786.805333pt;}
.y15c_c00309{bottom:822.000000pt;}
.h19_c00309{height:18.666667pt;}
.h13_c00309{height:21.466667pt;}
.h12_c00309{height:56.940620pt;}
.hb_c00309{height:60.669700pt;}
.h17_c00309{height:60.675432pt;}
.h5_c00309{height:61.601509pt;}
.hf_c00309{height:61.603727pt;}
.h11_c00309{height:61.607884pt;}
.ha_c00309{height:62.536460pt;}
.he_c00309{height:62.537116pt;}
.h14_c00309{height:62.541337pt;}
.h18_c00309{height:62.542369pt;}
.h4_c00309{height:63.468222pt;}
.h9_c00309{height:63.469840pt;}
.h15_c00309{height:63.475837pt;}
.h3_c00309{height:64.401578pt;}
.hc_c00309{height:64.403220pt;}
.h10_c00309{height:64.403896pt;}
.h8_c00309{height:64.404637pt;}
.h7_c00309{height:64.405442pt;}
.h16_c00309{height:64.410432pt;}
.h6_c00309{height:65.334934pt;}
.hd_c00309{height:65.337286pt;}
.h2_c00309{height:75.600000pt;}
.h0_c00309{height:896.400000pt;}
.h1_c00309{height:896.666667pt;}
.w0_c00309{width:618.666667pt;}
.x0_c00309{left:0.000000pt;}
.xa4_c00309{left:104.718667pt;}
.x3d_c00309{left:112.173333pt;}
.xa9_c00309{left:117.658667pt;}
.x99_c00309{left:119.083885pt;}
.x69_c00309{left:120.114587pt;}
.x46_c00309{left:121.536000pt;}
.x17_c00309{left:123.005029pt;}
.x1_c00309{left:124.320000pt;}
.x6d_c00309{left:134.273333pt;}
.x3e_c00309{left:140.500000pt;}
.xaa_c00309{left:141.650667pt;}
.x56_c00309{left:144.401160pt;}
.xb6_c00309{left:146.214667pt;}
.x2f_c00309{left:147.997272pt;}
.x35_c00309{left:148.888265pt;}
.x61_c00309{left:150.593853pt;}
.x27_c00309{left:152.284815pt;}
.xd_c00309{left:154.950515pt;}
.x91_c00309{left:158.950999pt;}
.x7c_c00309{left:160.646961pt;}
.x4_c00309{left:162.161333pt;}
.x83_c00309{left:165.238009pt;}
.x9f_c00309{left:166.135371pt;}
.x9c_c00309{left:172.152000pt;}
.x2_c00309{left:176.400000pt;}
.x5c_c00309{left:179.875400pt;}
.x36_c00309{left:182.261765pt;}
.x47_c00309{left:183.665333pt;}
.x96_c00309{left:185.390967pt;}
.x30_c00309{left:186.353532pt;}
.x84_c00309{left:188.722009pt;}
.x7d_c00309{left:189.713951pt;}
.x57_c00309{left:191.635360pt;}
.x62_c00309{left:193.643187pt;}
.x6e_c00309{left:195.216000pt;}
.x5d_c00309{left:199.836533pt;}
.x4f_c00309{left:200.964000pt;}
.x63_c00309{left:205.800520pt;}
.x74_c00309{left:208.429517pt;}
.xa0_c00309{left:209.366720pt;}
.x1e_c00309{left:210.424920pt;}
.x28_c00309{left:211.792897pt;}
.x92_c00309{left:213.933912pt;}
.x3f_c00309{left:214.900000pt;}
.xe_c00309{left:216.915848pt;}
.x8d_c00309{left:218.266764pt;}
.x50_c00309{left:220.240000pt;}
.x31_c00309{left:221.664543pt;}
.x87_c00309{left:222.828409pt;}
.x3_c00309{left:224.160000pt;}
.x5e_c00309{left:229.077573pt;}
.xa1_c00309{left:230.932395pt;}
.x1f_c00309{left:234.383419pt;}
.x5_c00309{left:238.244000pt;}
.xf_c00309{left:240.197181pt;}
.x40_c00309{left:242.017333pt;}
.xb0_c00309{left:243.186667pt;}
.x58_c00309{left:244.200173pt;}
.x88_c00309{left:246.346812pt;}
.xa7_c00309{left:248.428000pt;}
.x6f_c00309{left:250.436000pt;}
.x5f_c00309{left:251.924013pt;}
.x7e_c00309{left:252.877307pt;}
.x85_c00309{left:254.043343pt;}
.x51_c00309{left:256.926667pt;}
.x18_c00309{left:261.960775pt;}
.xab_c00309{left:263.485333pt;}
.x8e_c00309{left:264.588917pt;}
.x6a_c00309{left:269.211920pt;}
.x10_c00309{left:270.407848pt;}
.x20_c00309{left:274.980472pt;}
.xb7_c00309{left:276.134667pt;}
.x93_c00309{left:277.480444pt;}
.x6_c00309{left:279.046667pt;}
.x75_c00309{left:280.188184pt;}
.x97_c00309{left:282.416300pt;}
.x64_c00309{left:285.981853pt;}
.x41_c00309{left:289.125333pt;}
.x11_c00309{left:290.349181pt;}
.x29_c00309{left:292.964523pt;}
.x37_c00309{left:294.828493pt;}
.x86_c00309{left:298.200676pt;}
.x7f_c00309{left:299.929820pt;}
.x42_c00309{left:302.510667pt;}
.x7_c00309{left:305.206667pt;}
.x94_c00309{left:307.521791pt;}
.x48_c00309{left:309.184000pt;}
.x21_c00309{left:311.424220pt;}
.x9d_c00309{left:313.273333pt;}
.xa2_c00309{left:316.177760pt;}
.x2a_c00309{left:320.010620pt;}
.x43_c00309{left:320.982667pt;}
.xac_c00309{left:321.982667pt;}
.x32_c00309{left:323.393696pt;}
.x19_c00309{left:325.075449pt;}
.x49_c00309{left:326.985333pt;}
.x80_c00309{left:328.440795pt;}
.x70_c00309{left:329.446667pt;}
.x22_c00309{left:331.584080pt;}
.xad_c00309{left:333.838667pt;}
.x12_c00309{left:337.394515pt;}
.x76_c00309{left:338.528184pt;}
.x6b_c00309{left:340.406587pt;}
.x98_c00309{left:341.897633pt;}
.x52_c00309{left:343.812000pt;}
.x38_c00309{left:345.460053pt;}
.x65_c00309{left:347.171187pt;}
.x89_c00309{left:348.841697pt;}
.x9e_c00309{left:349.772000pt;}
.x71_c00309{left:351.005333pt;}
.x6c_c00309{left:354.129253pt;}
.x13_c00309{left:358.730515pt;}
.x53_c00309{left:359.653333pt;}
.x66_c00309{left:361.089853pt;}
.x59_c00309{left:362.796320pt;}
.x8a_c00309{left:364.440188pt;}
.x81_c00309{left:367.751887pt;}
.x4a_c00309{left:368.753333pt;}
.xb1_c00309{left:371.352000pt;}
.xa5_c00309{left:376.177333pt;}
.x39_c00309{left:380.258840pt;}
.x77_c00309{left:381.533517pt;}
.x1a_c00309{left:383.167560pt;}
.xb8_c00309{left:384.558667pt;}
.x23_c00309{left:387.001021pt;}
.x4b_c00309{left:389.568000pt;}
.xae_c00309{left:391.218667pt;}
.x8_c00309{left:393.526667pt;}
.x67_c00309{left:396.125853pt;}
.x78_c00309{left:397.813517pt;}
.x1b_c00309{left:402.881816pt;}
.x8b_c00309{left:404.039748pt;}
.x24_c00309{left:405.268891pt;}
.x14_c00309{left:406.962515pt;}
.x72_c00309{left:410.290667pt;}
.xb9_c00309{left:413.626667pt;}
.x33_c00309{left:416.277768pt;}
.xb2_c00309{left:418.645333pt;}
.x4c_c00309{left:424.134667pt;}
.x2b_c00309{left:425.883065pt;}
.x82_c00309{left:430.425909pt;}
.x1c_c00309{left:433.083848pt;}
.x3a_c00309{left:435.738232pt;}
.x60_c00309{left:436.912840pt;}
.x8f_c00309{left:440.045648pt;}
.x8c_c00309{left:441.002004pt;}
.x54_c00309{left:443.176000pt;}
.x4d_c00309{left:450.590667pt;}
.x15_c00309{left:451.609181pt;}
.xaf_c00309{left:452.722667pt;}
.x9_c00309{left:454.546667pt;}
.x44_c00309{left:458.805333pt;}
.x95_c00309{left:460.881711pt;}
.xba_c00309{left:462.574667pt;}
.x68_c00309{left:463.571187pt;}
.xa_c00309{left:468.169333pt;}
.x79_c00309{left:469.334851pt;}
.x9a_c00309{left:471.221603pt;}
.x2c_c00309{left:473.150076pt;}
.xb3_c00309{left:474.345333pt;}
.x5a_c00309{left:475.561867pt;}
.x55_c00309{left:479.944000pt;}
.x3b_c00309{left:484.185867pt;}
.x2d_c00309{left:486.401796pt;}
.x90_c00309{left:487.801120pt;}
.x25_c00309{left:490.714960pt;}
.x5b_c00309{left:492.603027pt;}
.xb4_c00309{left:494.262667pt;}
.x4e_c00309{left:497.508000pt;}
.x7a_c00309{left:502.006851pt;}
.xb_c00309{left:505.352000pt;}
.x2e_c00309{left:509.146653pt;}
.x34_c00309{left:510.361803pt;}
.x9b_c00309{left:512.025587pt;}
.xa8_c00309{left:513.626667pt;}
.x16_c00309{left:516.177181pt;}
.x45_c00309{left:517.802667pt;}
.x26_c00309{left:518.796097pt;}
.xb5_c00309{left:519.710667pt;}
.xc_c00309{left:521.688000pt;}
.x73_c00309{left:524.505333pt;}
.x1d_c00309{left:525.464573pt;}
.x3c_c00309{left:532.428177pt;}
.x7b_c00309{left:533.397517pt;}
.xa3_c00309{left:550.320000pt;}
.xa6_c00309{left:566.146667pt;}
.xbc_c00309{left:614.400000pt;}
.xbb_c00309{left:615.600000pt;}
.xbd_c00309{left:616.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.ma6_c00310{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);}
.m7_c00310{transform:matrix(0.018175,0.000600,-0.008254,0.249864,0,0);-ms-transform:matrix(0.018175,0.000600,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.018175,0.000600,-0.008254,0.249864,0,0);}
.m11_c00310{transform:matrix(0.022729,0.000250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.022729,0.000250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.022729,0.000250,-0.002750,0.249985,0,0);}
.m14_c00310{transform:matrix(0.028973,0.000319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.028973,0.000319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.028973,0.000319,-0.002750,0.249985,0,0);}
.m13_c00310{transform:matrix(0.057941,0.000637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.057941,0.000637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.057941,0.000637,-0.002750,0.249985,0,0);}
.m13e_c00310{transform:matrix(0.089040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089040,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092045,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.095610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095610,0.000000,0.000000,0.250000,0,0);}
.mc3_c00310{transform:matrix(0.098565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098565,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);}
.m112_c00310{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);}
.ma2_c00310{transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126690,0.000000,0.000000,0.250000,0,0);}
.m12c_c00310{transform:matrix(0.136190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136190,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.139380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139380,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);}
.m146_c00310{transform:matrix(0.140510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140510,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{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);}
.m120_c00310{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);}
.mbc_c00310{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.ma3_c00310{transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);}
.m123_c00310{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);}
.m12b_c00310{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.144995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144995,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{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);}
.m11e_c00310{transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147315,0.000000,0.000000,0.250000,0,0);}
.m12f_c00310{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);}
.ma8_c00310{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);}
.m14b_c00310{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);}
.m6a_c00310{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);}
.m30_c00310{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);}
.m7a_c00310{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);}
.mec_c00310{transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);}
.m133_c00310{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);}
.m36_c00310{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);}
.m1d_c00310{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);}
.mbd_c00310{transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);}
.med_c00310{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);}
.mac_c00310{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);}
.me1_c00310{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);}
.me8_c00310{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);}
.m71_c00310{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);}
.m33_c00310{transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{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);}
.m5a_c00310{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);}
.m52_c00310{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);}
.mc7_c00310{transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);}
.m12d_c00310{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);}
.m137_c00310{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);}
.m64_c00310{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);}
.m14d_c00310{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);}
.m128_c00310{transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{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);}
.m66_c00310{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);}
.m11b_c00310{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);}
.m103_c00310{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);}
.m57_c00310{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);}
.mb1_c00310{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);}
.m1c_c00310{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);}
.m153_c00310{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);}
.m25_c00310{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);}
.m10e_c00310{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);}
.m60_c00310{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);}
.m2b_c00310{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);}
.m13b_c00310{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{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);}
.mdf_c00310{transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);}
.maa_c00310{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);}
.m62_c00310{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);}
.m41_c00310{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);}
.m8f_c00310{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);}
.m29_c00310{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);}
.m39_c00310{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);}
.md2_c00310{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);}
.m11f_c00310{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);}
.m4e_c00310{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);}
.m10c_c00310{transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);}
.md3_c00310{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);}
.m7b_c00310{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);}
.md8_c00310{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);}
.mab_c00310{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);}
.m9e_c00310{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);}
.m1a_c00310{transform:matrix(0.173065,0.001904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173065,0.001904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173065,0.001904,-0.002750,0.249985,0,0);}
.m3d_c00310{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);}
.mcd_c00310{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);}
.m1f_c00310{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);}
.m47_c00310{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);}
.m5f_c00310{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);}
.mba_c00310{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);}
.m105_c00310{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);}
.m9b_c00310{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);}
.m107_c00310{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);}
.m45_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);}
.m74_c00310{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);}
.mf4_c00310{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);}
.m11d_c00310{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);}
.m121_c00310{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);}
.mf6_c00310{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);}
.m21_c00310{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);}
.mb6_c00310{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);}
.m53_c00310{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);}
.m11c_c00310{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);}
.m12e_c00310{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m10a_c00310{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);}
.mb2_c00310{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);}
.m72_c00310{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);}
.ma7_c00310{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);}
.m73_c00310{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);}
.me0_c00310{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.md5_c00310{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);}
.m129_c00310{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);}
.m157_c00310{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);}
.m148_c00310{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);}
.m69_c00310{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);}
.mc2_c00310{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);}
.m4a_c00310{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);}
.m130_c00310{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00310{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);}
.m114_c00310{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);}
.m116_c00310{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);}
.m5e_c00310{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);}
.mae_c00310{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);}
.md7_c00310{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);}
.mee_c00310{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);}
.m154_c00310{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);}
.mc0_c00310{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);}
.m159_c00310{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);}
.m65_c00310{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);}
.mdb_c00310{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);}
.m6b_c00310{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);}
.m51_c00310{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);}
.m68_c00310{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);}
.m8e_c00310{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);}
.mb3_c00310{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);}
.m1e_c00310{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);}
.m90_c00310{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);}
.m38_c00310{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);}
.m20_c00310{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);}
.m11a_c00310{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);}
.me4_c00310{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);}
.mcc_c00310{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);}
.m119_c00310{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);}
.m15b_c00310{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);}
.m5c_c00310{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);}
.m67_c00310{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);}
.mb9_c00310{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);}
.mc1_c00310{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);}
.mcb_c00310{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);}
.m13a_c00310{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);}
.md6_c00310{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);}
.m2c_c00310{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);}
.m151_c00310{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{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);}
.m46_c00310{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);}
.mbb_c00310{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);}
.m113_c00310{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);}
.md4_c00310{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);}
.m135_c00310{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);}
.m109_c00310{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);}
.m152_c00310{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);}
.m14f_c00310{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);}
.m145_c00310{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);}
.ma0_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);}
.m149_c00310{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);}
.m155_c00310{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);}
.m140_c00310{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);}
.m12a_c00310{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);}
.m131_c00310{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);}
.mc4_c00310{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);}
.m26_c00310{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);}
.m10d_c00310{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);}
.mf5_c00310{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);}
.maf_c00310{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);}
.me5_c00310{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);}
.m3f_c00310{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);}
.m156_c00310{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);}
.m32_c00310{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);}
.m7e_c00310{transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{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);}
.m4f_c00310{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);}
.m3c_c00310{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);}
.m106_c00310{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);}
.m14a_c00310{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);}
.m9f_c00310{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);}
.mdd_c00310{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);}
.m91_c00310{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);}
.m49_c00310{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);}
.m3e_c00310{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);}
.me6_c00310{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);}
.md9_c00310{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);}
.mfe_c00310{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);}
.m147_c00310{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);}
.m48_c00310{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);}
.m12_c00310{transform:matrix(0.197518,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197518,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197518,0.002173,-0.002750,0.249985,0,0);}
.mea_c00310{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);}
.m97_c00310{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);}
.m138_c00310{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);}
.m158_c00310{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);}
.mad_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);}
.m125_c00310{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);}
.m9c_c00310{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);}
.mde_c00310{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);}
.m70_c00310{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);}
.m7f_c00310{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);}
.m142_c00310{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);}
.me3_c00310{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);}
.m7d_c00310{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);}
.m141_c00310{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);}
.m59_c00310{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);}
.mef_c00310{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);}
.m2f_c00310{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);}
.m126_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);}
.mf9_c00310{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);}
.m76_c00310{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);}
.m3a_c00310{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);}
.mb0_c00310{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);}
.mf1_c00310{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);}
.m6f_c00310{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);}
.m110_c00310{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);}
.m15_c00310{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);}
.m61_c00310{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);}
.mca_c00310{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);}
.m94_c00310{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);}
.m14c_c00310{transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{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);}
.m43_c00310{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);}
.m37_c00310{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);}
.m35_c00310{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);}
.md1_c00310{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);}
.m102_c00310{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);}
.mf2_c00310{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);}
.m2d_c00310{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);}
.m31_c00310{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);}
.m143_c00310{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);}
.m42_c00310{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);}
.m13f_c00310{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);}
.m96_c00310{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);}
.me9_c00310{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);}
.m95_c00310{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);}
.mfd_c00310{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);}
.m77_c00310{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);}
.m8b_c00310{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);}
.mce_c00310{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);}
.m15c_c00310{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);}
.mfb_c00310{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);}
.m13c_c00310{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.meb_c00310{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);}
.m15a_c00310{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);}
.mf7_c00310{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);}
.mc8_c00310{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);}
.m118_c00310{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);}
.mf0_c00310{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);}
.m9a_c00310{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);}
.m15e_c00310{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);}
.m117_c00310{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);}
.m124_c00310{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);}
.m7c_c00310{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);}
.m23_c00310{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);}
.m136_c00310{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);}
.m14e_c00310{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);}
.m2a_c00310{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.216302,0.007145,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216302,0.007145,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216302,0.007145,-0.008254,0.249864,0,0);}
.m144_c00310{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);}
.m8c_c00310{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);}
.mbe_c00310{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);}
.m44_c00310{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);}
.m92_c00310{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);}
.m104_c00310{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);}
.m89_c00310{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);}
.ma1_c00310{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);}
.m150_c00310{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);}
.m99_c00310{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);}
.ma9_c00310{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);}
.me2_c00310{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);}
.m6e_c00310{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);}
.mf3_c00310{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);}
.m6c_c00310{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);}
.mfa_c00310{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);}
.mff_c00310{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);}
.m93_c00310{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);}
.m108_c00310{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);}
.mb5_c00310{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);}
.md0_c00310{transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);}
.mb4_c00310{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);}
.m3b_c00310{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);}
.mf8_c00310{transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);}
.m10f_c00310{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);}
.mcf_c00310{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{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);}
.m100_c00310{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);}
.m15d_c00310{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);}
.m139_c00310{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);}
.me_c00310{transform:matrix(0.236461,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236461,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236461,0.002601,-0.002750,0.249985,0,0);}
.m13d_c00310{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);}
.m4d_c00310{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);}
.mfc_c00310{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);}
.m83_c00310{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);}
.m127_c00310{transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);}
.mb8_c00310{transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{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);}
.mb7_c00310{transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{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);}
.m134_c00310{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);}
.m55_c00310{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.mc9_c00310{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);}
.md_c00310{transform:matrix(0.246105,0.002707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246105,0.002707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246105,0.002707,-0.002750,0.249985,0,0);}
.m87_c00310{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.m101_c00310{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.m10b_c00310{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);}
.me7_c00310{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.251273,0.008300,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251273,0.008300,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251273,0.008300,-0.008254,0.249864,0,0);}
.mdc_c00310{transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);}
.mbf_c00310{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);}
.m115_c00310{transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.270158,0.008924,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270158,0.008924,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270158,0.008924,-0.008254,0.249864,0,0);}
.mda_c00310{transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274110,0.000000,0.000000,0.250000,0,0);}
.m160_c00310{transform:matrix(0.276030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276030,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.278633,0.009204,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278633,0.009204,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278633,0.009204,-0.008254,0.249864,0,0);}
.m19_c00310{transform:matrix(0.279288,0.003072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279288,0.003072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279288,0.003072,-0.002750,0.249985,0,0);}
.m5_c00310{transform:matrix(0.285159,0.009420,-0.008254,0.249864,0,0);-ms-transform:matrix(0.285159,0.009420,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.285159,0.009420,-0.008254,0.249864,0,0);}
.m18_c00310{transform:matrix(0.287888,0.003167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287888,0.003167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287888,0.003167,-0.002750,0.249985,0,0);}
.m8d_c00310{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);}
.m9_c00310{transform:matrix(0.288473,0.009529,-0.008254,0.249864,0,0);-ms-transform:matrix(0.288473,0.009529,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.288473,0.009529,-0.008254,0.249864,0,0);}
.ma5_c00310{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{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);}
.m80_c00310{transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292545,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.300247,0.003303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.300247,0.003303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.300247,0.003303,-0.002750,0.249985,0,0);}
.m132_c00310{transform:matrix(0.302860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302860,0.000000,0.000000,0.250000,0,0);}
.m122_c00310{transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307155,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.309566,0.010226,-0.008254,0.249864,0,0);-ms-transform:matrix(0.309566,0.010226,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.309566,0.010226,-0.008254,0.249864,0,0);}
.m88_c00310{transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313565,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{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);}
.m17_c00310{transform:matrix(0.351559,0.003867,-0.002750,0.249985,0,0);-ms-transform:matrix(0.351559,0.003867,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.351559,0.003867,-0.002750,0.249985,0,0);}
.mc5_c00310{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.364261,0.012033,-0.008254,0.249864,0,0);-ms-transform:matrix(0.364261,0.012033,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.364261,0.012033,-0.008254,0.249864,0,0);}
.m58_c00310{transform:matrix(0.383410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383410,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.395950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395950,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.409825,0.004508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.409825,0.004508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.409825,0.004508,-0.002750,0.249985,0,0);}
.m82_c00310{transform:matrix(0.412130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412130,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.413665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413665,0.000000,0.000000,0.250000,0,0);}
.m162_c00310{transform:matrix(0.414645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414645,0.000000,0.000000,0.250000,0,0);}
.ma4_c00310{transform:matrix(0.426405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426405,0.000000,0.000000,0.250000,0,0);}
.m15f_c00310{transform:matrix(0.439530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439530,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.439815,0.014528,-0.008254,0.249864,0,0);-ms-transform:matrix(0.439815,0.014528,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.439815,0.014528,-0.008254,0.249864,0,0);}
.m16_c00310{transform:matrix(0.455167,0.005007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.455167,0.005007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.455167,0.005007,-0.002750,0.249985,0,0);}
.m34_c00310{transform:matrix(0.461820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461820,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.469709,0.015516,-0.008254,0.249864,0,0);-ms-transform:matrix(0.469709,0.015516,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.469709,0.015516,-0.008254,0.249864,0,0);}
.m111_c00310{transform:matrix(0.521385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521385,0.000000,0.000000,0.250000,0,0);}
.m163_c00310{transform:matrix(0.664955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664955,0.000000,0.000000,0.250000,0,0);}
.m161_c00310{transform:matrix(0.699225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699225,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.713492,0.007848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.713492,0.007848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.713492,0.007848,-0.002750,0.249985,0,0);}
.m63_c00310{transform:matrix(0.749330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749330,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.768430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768430,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.843655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843655,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.873627,0.009610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.873627,0.009610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.873627,0.009610,-0.002750,0.249985,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;}
.fs2_c00310{font-size:33.602033px;}
.fsb_c00310{font-size:61.950000px;}
.fs0_c00310{font-size:62.971328px;}
.fsa_c00310{font-size:65.100000px;}
.fsd_c00310{font-size:67.200000px;}
.fse_c00310{font-size:68.250000px;}
.fs6_c00310{font-size:69.300000px;}
.fs9_c00310{font-size:70.350000px;}
.fsc_c00310{font-size:71.400000px;}
.fs5_c00310{font-size:72.450000px;}
.fs4_c00310{font-size:73.500000px;}
.fs7_c00310{font-size:74.550000px;}
.fs8_c00310{font-size:75.600000px;}
.fsf_c00310{font-size:76.650000px;}
.fs11_c00310{font-size:86.100000px;}
.fs3_c00310{font-size:107.106479px;}
.fs10_c00310{font-size:119.700000px;}
.fs1_c00310{font-size:147.008893px;}
.y0_c00310{bottom:0.000000px;}
.y51_c00310{bottom:93.568500px;}
.y50_c00310{bottom:112.320000px;}
.y4f_c00310{bottom:162.019500px;}
.y4e_c00310{bottom:185.556000px;}
.y4d_c00310{bottom:208.221000px;}
.y4c_c00310{bottom:230.944500px;}
.y4b_c00310{bottom:253.846500px;}
.y4a_c00310{bottom:276.844500px;}
.y49_c00310{bottom:299.523000px;}
.y48_c00310{bottom:322.267500px;}
.y47_c00310{bottom:345.181500px;}
.y46_c00310{bottom:367.855500px;}
.y45_c00310{bottom:390.792000px;}
.y44_c00310{bottom:413.523000px;}
.y43_c00310{bottom:436.710000px;}
.y42_c00310{bottom:458.569500px;}
.y41_c00310{bottom:458.832000px;}
.y40_c00310{bottom:459.063000px;}
.y3f_c00310{bottom:459.264000px;}
.y3e_c00310{bottom:459.757500px;}
.y3d_c00310{bottom:459.862500px;}
.y3c_c00310{bottom:460.252500px;}
.y3b_c00310{bottom:460.468500px;}
.y3a_c00310{bottom:460.707000px;}
.y39_c00310{bottom:460.846500px;}
.y38_c00310{bottom:461.481000px;}
.y37_c00310{bottom:461.701500px;}
.y36_c00310{bottom:482.644500px;}
.y35_c00310{bottom:505.060500px;}
.y34_c00310{bottom:529.455000px;}
.y33_c00310{bottom:550.255500px;}
.y32_c00310{bottom:550.473000px;}
.y31_c00310{bottom:550.713000px;}
.y30_c00310{bottom:551.113500px;}
.y2f_c00310{bottom:551.722500px;}
.y2e_c00310{bottom:551.899500px;}
.y2d_c00310{bottom:552.108000px;}
.y2c_c00310{bottom:552.720000px;}
.y2b_c00310{bottom:553.186500px;}
.y2a_c00310{bottom:553.386000px;}
.y29_c00310{bottom:553.932000px;}
.y28_c00310{bottom:554.040000px;}
.y27_c00310{bottom:574.371000px;}
.y26_c00310{bottom:596.995500px;}
.y25_c00310{bottom:619.750500px;}
.y24_c00310{bottom:641.812500px;}
.y23_c00310{bottom:664.762500px;}
.y22_c00310{bottom:687.709500px;}
.y21_c00310{bottom:710.116500px;}
.y20_c00310{bottom:733.077000px;}
.y1f_c00310{bottom:755.464500px;}
.y1e_c00310{bottom:778.951500px;}
.y1d_c00310{bottom:801.630000px;}
.y1c_c00310{bottom:823.783500px;}
.y1b_c00310{bottom:869.232067px;}
.y1a_c00310{bottom:870.565354px;}
.y19_c00310{bottom:871.091985px;}
.y18_c00310{bottom:871.898262px;}
.y17_c00310{bottom:873.180033px;}
.y12_c00310{bottom:890.701156px;}
.y11_c00310{bottom:890.701414px;}
.y13_c00310{bottom:890.701893px;}
.y15_c00310{bottom:890.702355px;}
.y14_c00310{bottom:890.702592px;}
.y16_c00310{bottom:890.702724px;}
.y10_c00310{bottom:911.020132px;}
.yf_c00310{bottom:912.011832px;}
.ye_c00310{bottom:912.888295px;}
.yd_c00310{bottom:913.752285px;}
.yc_c00310{bottom:915.843000px;}
.yb_c00310{bottom:929.934725px;}
.ya_c00310{bottom:931.743950px;}
.y9_c00310{bottom:933.777558px;}
.y8_c00310{bottom:934.279983px;}
.y7_c00310{bottom:935.559162px;}
.y6_c00310{bottom:937.196226px;}
.y5_c00310{bottom:938.166228px;}
.y4_c00310{bottom:939.458425px;}
.y3_c00310{bottom:941.725625px;}
.y2_c00310{bottom:943.189686px;}
.y1_c00310{bottom:945.396000px;}
.h4_c00310{height:33.602033px;}
.hd_c00310{height:61.950000px;}
.h2_c00310{height:62.971328px;}
.hc_c00310{height:65.100000px;}
.hf_c00310{height:67.200000px;}
.h10_c00310{height:68.250000px;}
.h8_c00310{height:69.300000px;}
.hb_c00310{height:70.350000px;}
.he_c00310{height:71.400000px;}
.h7_c00310{height:72.450000px;}
.h6_c00310{height:73.500000px;}
.h9_c00310{height:74.550000px;}
.ha_c00310{height:75.600000px;}
.h11_c00310{height:76.650000px;}
.h13_c00310{height:86.100000px;}
.h5_c00310{height:107.106479px;}
.h12_c00310{height:119.700000px;}
.h3_c00310{height:147.008893px;}
.h1_c00310{height:1005.000000px;}
.h0_c00310{height:1005.150000px;}
.w0_c00310{width:702.540000px;}
.w1_c00310{width:702.750000px;}
.x0_c00310{left:0.000000px;}
.xc_c00310{left:29.967000px;}
.x15_c00310{left:32.495070px;}
.x24_c00310{left:34.560000px;}
.x3e_c00310{left:38.880000px;}
.x48_c00310{left:45.090000px;}
.x1a_c00310{left:46.170000px;}
.x6d_c00310{left:58.590000px;}
.x77_c00310{left:69.654000px;}
.x99_c00310{left:72.360000px;}
.x49_c00310{left:75.600000px;}
.x3f_c00310{left:81.000000px;}
.x1b_c00310{left:82.080000px;}
.x7e_c00310{left:83.161500px;}
.xbd_c00310{left:84.780000px;}
.xb6_c00310{left:95.580000px;}
.x7f_c00310{left:101.250000px;}
.x1_c00310{left:103.846500px;}
.x5b_c00310{left:105.030000px;}
.xb9_c00310{left:106.920000px;}
.x86_c00310{left:109.890000px;}
.x61_c00310{left:110.970000px;}
.x8b_c00310{left:114.400500px;}
.x2e_c00310{left:116.100000px;}
.x40_c00310{left:117.450000px;}
.xa2_c00310{left:119.880000px;}
.xaf_c00310{left:126.090000px;}
.x52_c00310{left:133.110000px;}
.x1c_c00310{left:138.240000px;}
.x62_c00310{left:140.130000px;}
.x80_c00310{left:141.210000px;}
.x25_c00310{left:142.830000px;}
.x6e_c00310{left:145.800000px;}
.x2f_c00310{left:152.010000px;}
.x53_c00310{left:153.630000px;}
.x4a_c00310{left:156.600000px;}
.x26_c00310{left:159.300000px;}
.x9a_c00310{left:162.000000px;}
.x41_c00310{left:165.240000px;}
.x1d_c00310{left:166.860000px;}
.x91_c00310{left:168.210000px;}
.x2_c00310{left:170.637642px;}
.x78_c00310{left:176.250000px;}
.x72_c00310{left:180.360000px;}
.x38_c00310{left:183.060000px;}
.x6a_c00310{left:187.110000px;}
.x81_c00310{left:188.460000px;}
.xb7_c00310{left:189.810000px;}
.x16_c00310{left:192.661350px;}
.x6f_c00310{left:196.020000px;}
.x96_c00310{left:197.370000px;}
.x42_c00310{left:200.610000px;}
.x63_c00310{left:201.960000px;}
.x27_c00310{left:205.470000px;}
.x4b_c00310{left:207.630000px;}
.x54_c00310{left:210.600000px;}
.xb8_c00310{left:212.760000px;}
.x3_c00310{left:214.958777px;}
.x73_c00310{left:218.430000px;}
.xd_c00310{left:220.032000px;}
.xad_c00310{left:222.750000px;}
.x1e_c00310{left:224.640000px;}
.x43_c00310{left:225.720000px;}
.x11_c00310{left:228.973050px;}
.xb0_c00310{left:231.660000px;}
.x79_c00310{left:234.528000px;}
.x30_c00310{left:237.330000px;}
.x39_c00310{left:238.680000px;}
.x5c_c00310{left:239.760000px;}
.x1f_c00310{left:247.050000px;}
.x9b_c00310{left:248.130000px;}
.x4c_c00310{left:250.290000px;}
.x64_c00310{left:252.450000px;}
.x28_c00310{left:257.580000px;}
.x8c_c00310{left:259.110000px;}
.xbe_c00310{left:260.550000px;}
.x12_c00310{left:262.455609px;}
.x55_c00310{left:265.410000px;}
.x5d_c00310{left:266.760000px;}
.xa7_c00310{left:268.380000px;}
.x31_c00310{left:272.160000px;}
.x9f_c00310{left:273.780000px;}
.xb2_c00310{left:275.670000px;}
.x92_c00310{left:278.910000px;}
.x6b_c00310{left:281.880000px;}
.x4_c00310{left:283.593074px;}
.x70_c00310{left:288.360000px;}
.x8d_c00310{left:289.917000px;}
.x17_c00310{left:293.371667px;}
.xe_c00310{left:298.576500px;}
.x32_c00310{left:300.780000px;}
.xa8_c00310{left:304.560000px;}
.x6c_c00310{left:310.230000px;}
.xa0_c00310{left:311.310000px;}
.x65_c00310{left:313.470000px;}
.x4d_c00310{left:314.820000px;}
.x93_c00310{left:318.330000px;}
.xa9_c00310{left:319.950000px;}
.x5_c00310{left:322.711416px;}
.x82_c00310{left:323.730000px;}
.x87_c00310{left:328.320000px;}
.x29_c00310{left:329.670000px;}
.xbf_c00310{left:332.640000px;}
.xae_c00310{left:334.800000px;}
.x7a_c00310{left:337.128000px;}
.x2a_c00310{left:341.820000px;}
.x8e_c00310{left:345.543000px;}
.x4e_c00310{left:349.110000px;}
.x71_c00310{left:350.190000px;}
.x6_c00310{left:352.076022px;}
.x44_c00310{left:353.160000px;}
.x56_c00310{left:354.240000px;}
.xaa_c00310{left:356.130000px;}
.xba_c00310{left:358.020000px;}
.x18_c00310{left:359.249345px;}
.x33_c00310{left:360.450000px;}
.x66_c00310{left:362.340000px;}
.x9c_c00310{left:363.420000px;}
.x74_c00310{left:367.200000px;}
.x2b_c00310{left:368.820000px;}
.xc0_c00310{left:370.980000px;}
.xa1_c00310{left:372.600000px;}
.x5e_c00310{left:375.570000px;}
.xf_c00310{left:378.255000px;}
.xa3_c00310{left:380.700000px;}
.x34_c00310{left:381.780000px;}
.x83_c00310{left:384.210000px;}
.x20_c00310{left:385.290000px;}
.x57_c00310{left:386.910000px;}
.x45_c00310{left:389.610000px;}
.xc3_c00310{left:393.120000px;}
.x2c_c00310{left:394.200000px;}
.x67_c00310{left:395.280000px;}
.x3a_c00310{left:396.630000px;}
.x7_c00310{left:401.634414px;}
.x13_c00310{left:402.863604px;}
.xc1_c00310{left:408.240000px;}
.x84_c00310{left:409.590000px;}
.xa4_c00310{left:410.670000px;}
.x46_c00310{left:412.560000px;}
.x58_c00310{left:414.450000px;}
.x9d_c00310{left:417.960000px;}
.x4f_c00310{left:419.310000px;}
.xc4_c00310{left:422.550000px;}
.xc2_c00310{left:425.790000px;}
.x97_c00310{left:429.570000px;}
.x35_c00310{left:431.190000px;}
.x88_c00310{left:433.890000px;}
.x7b_c00310{left:435.409500px;}
.x3b_c00310{left:436.590000px;}
.x21_c00310{left:438.210000px;}
.x8_c00310{left:440.358651px;}
.xa5_c00310{left:447.390000px;}
.x50_c00310{left:448.470000px;}
.x9_c00310{left:455.568426px;}
.xb3_c00310{left:456.570000px;}
.xb1_c00310{left:458.190000px;}
.x89_c00310{left:459.270000px;}
.x10_c00310{left:468.409500px;}
.xc5_c00310{left:469.530000px;}
.x22_c00310{left:470.610000px;}
.x36_c00310{left:473.850000px;}
.x3c_c00310{left:475.740000px;}
.x85_c00310{left:477.630000px;}
.x51_c00310{left:480.870000px;}
.x7c_c00310{left:485.391000px;}
.x9e_c00310{left:487.620000px;}
.x68_c00310{left:488.700000px;}
.xbb_c00310{left:490.320000px;}
.x8f_c00310{left:492.615000px;}
.x59_c00310{left:493.830000px;}
.x75_c00310{left:496.800000px;}
.x23_c00310{left:498.420000px;}
.x37_c00310{left:502.200000px;}
.xab_c00310{left:503.550000px;}
.x3d_c00310{left:507.330000px;}
.x94_c00310{left:508.680000px;}
.xa6_c00310{left:514.080000px;}
.x5a_c00310{left:515.430000px;}
.xa_c00310{left:517.131301px;}
.x47_c00310{left:518.400000px;}
.xbc_c00310{left:519.480000px;}
.x69_c00310{left:524.070000px;}
.x19_c00310{left:525.871839px;}
.x90_c00310{left:530.190000px;}
.x5f_c00310{left:531.630000px;}
.xb4_c00310{left:533.250000px;}
.x98_c00310{left:535.680000px;}
.x76_c00310{left:538.380000px;}
.x8a_c00310{left:540.810000px;}
.x7d_c00310{left:542.595000px;}
.x95_c00310{left:546.480000px;}
.x2d_c00310{left:548.640000px;}
.xac_c00310{left:555.930000px;}
.xb_c00310{left:571.901476px;}
.xb5_c00310{left:579.690000px;}
.x60_c00310{left:586.170000px;}
.x14_c00310{left:591.874473px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.fs2_c00310{font-size:29.868474pt;}
.fsb_c00310{font-size:55.066667pt;}
.fs0_c00310{font-size:55.974514pt;}
.fsa_c00310{font-size:57.866667pt;}
.fsd_c00310{font-size:59.733333pt;}
.fse_c00310{font-size:60.666667pt;}
.fs6_c00310{font-size:61.600000pt;}
.fs9_c00310{font-size:62.533333pt;}
.fsc_c00310{font-size:63.466667pt;}
.fs5_c00310{font-size:64.400000pt;}
.fs4_c00310{font-size:65.333333pt;}
.fs7_c00310{font-size:66.266667pt;}
.fs8_c00310{font-size:67.200000pt;}
.fsf_c00310{font-size:68.133333pt;}
.fs11_c00310{font-size:76.533333pt;}
.fs3_c00310{font-size:95.205759pt;}
.fs10_c00310{font-size:106.400000pt;}
.fs1_c00310{font-size:130.674572pt;}
.y0_c00310{bottom:0.000000pt;}
.y51_c00310{bottom:83.172000pt;}
.y50_c00310{bottom:99.840000pt;}
.y4f_c00310{bottom:144.017333pt;}
.y4e_c00310{bottom:164.938667pt;}
.y4d_c00310{bottom:185.085333pt;}
.y4c_c00310{bottom:205.284000pt;}
.y4b_c00310{bottom:225.641333pt;}
.y4a_c00310{bottom:246.084000pt;}
.y49_c00310{bottom:266.242667pt;}
.y48_c00310{bottom:286.460000pt;}
.y47_c00310{bottom:306.828000pt;}
.y46_c00310{bottom:326.982667pt;}
.y45_c00310{bottom:347.370667pt;}
.y44_c00310{bottom:367.576000pt;}
.y43_c00310{bottom:388.186667pt;}
.y42_c00310{bottom:407.617333pt;}
.y41_c00310{bottom:407.850667pt;}
.y40_c00310{bottom:408.056000pt;}
.y3f_c00310{bottom:408.234667pt;}
.y3e_c00310{bottom:408.673333pt;}
.y3d_c00310{bottom:408.766667pt;}
.y3c_c00310{bottom:409.113333pt;}
.y3b_c00310{bottom:409.305333pt;}
.y3a_c00310{bottom:409.517333pt;}
.y39_c00310{bottom:409.641333pt;}
.y38_c00310{bottom:410.205333pt;}
.y37_c00310{bottom:410.401333pt;}
.y36_c00310{bottom:429.017333pt;}
.y35_c00310{bottom:448.942667pt;}
.y34_c00310{bottom:470.626667pt;}
.y33_c00310{bottom:489.116000pt;}
.y32_c00310{bottom:489.309333pt;}
.y31_c00310{bottom:489.522667pt;}
.y30_c00310{bottom:489.878667pt;}
.y2f_c00310{bottom:490.420000pt;}
.y2e_c00310{bottom:490.577333pt;}
.y2d_c00310{bottom:490.762667pt;}
.y2c_c00310{bottom:491.306667pt;}
.y2b_c00310{bottom:491.721333pt;}
.y2a_c00310{bottom:491.898667pt;}
.y29_c00310{bottom:492.384000pt;}
.y28_c00310{bottom:492.480000pt;}
.y27_c00310{bottom:510.552000pt;}
.y26_c00310{bottom:530.662667pt;}
.y25_c00310{bottom:550.889333pt;}
.y24_c00310{bottom:570.500000pt;}
.y23_c00310{bottom:590.900000pt;}
.y22_c00310{bottom:611.297333pt;}
.y21_c00310{bottom:631.214667pt;}
.y20_c00310{bottom:651.624000pt;}
.y1f_c00310{bottom:671.524000pt;}
.y1e_c00310{bottom:692.401333pt;}
.y1d_c00310{bottom:712.560000pt;}
.y1c_c00310{bottom:732.252000pt;}
.y1b_c00310{bottom:772.650727pt;}
.y1a_c00310{bottom:773.835871pt;}
.y19_c00310{bottom:774.303987pt;}
.y18_c00310{bottom:775.020677pt;}
.y17_c00310{bottom:776.160029pt;}
.y12_c00310{bottom:791.734361pt;}
.y11_c00310{bottom:791.734591pt;}
.y13_c00310{bottom:791.735016pt;}
.y15_c00310{bottom:791.735427pt;}
.y14_c00310{bottom:791.735637pt;}
.y16_c00310{bottom:791.735755pt;}
.y10_c00310{bottom:809.795673pt;}
.yf_c00310{bottom:810.677184pt;}
.ye_c00310{bottom:811.456263pt;}
.yd_c00310{bottom:812.224253pt;}
.yc_c00310{bottom:814.082667pt;}
.yb_c00310{bottom:826.608644pt;}
.ya_c00310{bottom:828.216844pt;}
.y9_c00310{bottom:830.024496pt;}
.y8_c00310{bottom:830.471096pt;}
.y7_c00310{bottom:831.608144pt;}
.y6_c00310{bottom:833.063312pt;}
.y5_c00310{bottom:833.925536pt;}
.y4_c00310{bottom:835.074156pt;}
.y3_c00310{bottom:837.089444pt;}
.y2_c00310{bottom:838.390832pt;}
.y1_c00310{bottom:840.352000pt;}
.h4_c00310{height:29.868474pt;}
.hd_c00310{height:55.066667pt;}
.h2_c00310{height:55.974514pt;}
.hc_c00310{height:57.866667pt;}
.hf_c00310{height:59.733333pt;}
.h10_c00310{height:60.666667pt;}
.h8_c00310{height:61.600000pt;}
.hb_c00310{height:62.533333pt;}
.he_c00310{height:63.466667pt;}
.h7_c00310{height:64.400000pt;}
.h6_c00310{height:65.333333pt;}
.h9_c00310{height:66.266667pt;}
.ha_c00310{height:67.200000pt;}
.h11_c00310{height:68.133333pt;}
.h13_c00310{height:76.533333pt;}
.h5_c00310{height:95.205759pt;}
.h12_c00310{height:106.400000pt;}
.h3_c00310{height:130.674572pt;}
.h1_c00310{height:893.333333pt;}
.h0_c00310{height:893.466667pt;}
.w0_c00310{width:624.480000pt;}
.w1_c00310{width:624.666667pt;}
.x0_c00310{left:0.000000pt;}
.xc_c00310{left:26.637333pt;}
.x15_c00310{left:28.884507pt;}
.x24_c00310{left:30.720000pt;}
.x3e_c00310{left:34.560000pt;}
.x48_c00310{left:40.080000pt;}
.x1a_c00310{left:41.040000pt;}
.x6d_c00310{left:52.080000pt;}
.x77_c00310{left:61.914667pt;}
.x99_c00310{left:64.320000pt;}
.x49_c00310{left:67.200000pt;}
.x3f_c00310{left:72.000000pt;}
.x1b_c00310{left:72.960000pt;}
.x7e_c00310{left:73.921333pt;}
.xbd_c00310{left:75.360000pt;}
.xb6_c00310{left:84.960000pt;}
.x7f_c00310{left:90.000000pt;}
.x1_c00310{left:92.308000pt;}
.x5b_c00310{left:93.360000pt;}
.xb9_c00310{left:95.040000pt;}
.x86_c00310{left:97.680000pt;}
.x61_c00310{left:98.640000pt;}
.x8b_c00310{left:101.689333pt;}
.x2e_c00310{left:103.200000pt;}
.x40_c00310{left:104.400000pt;}
.xa2_c00310{left:106.560000pt;}
.xaf_c00310{left:112.080000pt;}
.x52_c00310{left:118.320000pt;}
.x1c_c00310{left:122.880000pt;}
.x62_c00310{left:124.560000pt;}
.x80_c00310{left:125.520000pt;}
.x25_c00310{left:126.960000pt;}
.x6e_c00310{left:129.600000pt;}
.x2f_c00310{left:135.120000pt;}
.x53_c00310{left:136.560000pt;}
.x4a_c00310{left:139.200000pt;}
.x26_c00310{left:141.600000pt;}
.x9a_c00310{left:144.000000pt;}
.x41_c00310{left:146.880000pt;}
.x1d_c00310{left:148.320000pt;}
.x91_c00310{left:149.520000pt;}
.x2_c00310{left:151.677904pt;}
.x78_c00310{left:156.666667pt;}
.x72_c00310{left:160.320000pt;}
.x38_c00310{left:162.720000pt;}
.x6a_c00310{left:166.320000pt;}
.x81_c00310{left:167.520000pt;}
.xb7_c00310{left:168.720000pt;}
.x16_c00310{left:171.254533pt;}
.x6f_c00310{left:174.240000pt;}
.x96_c00310{left:175.440000pt;}
.x42_c00310{left:178.320000pt;}
.x63_c00310{left:179.520000pt;}
.x27_c00310{left:182.640000pt;}
.x4b_c00310{left:184.560000pt;}
.x54_c00310{left:187.200000pt;}
.xb8_c00310{left:189.120000pt;}
.x3_c00310{left:191.074468pt;}
.x73_c00310{left:194.160000pt;}
.xd_c00310{left:195.584000pt;}
.xad_c00310{left:198.000000pt;}
.x1e_c00310{left:199.680000pt;}
.x43_c00310{left:200.640000pt;}
.x11_c00310{left:203.531600pt;}
.xb0_c00310{left:205.920000pt;}
.x79_c00310{left:208.469333pt;}
.x30_c00310{left:210.960000pt;}
.x39_c00310{left:212.160000pt;}
.x5c_c00310{left:213.120000pt;}
.x1f_c00310{left:219.600000pt;}
.x9b_c00310{left:220.560000pt;}
.x4c_c00310{left:222.480000pt;}
.x64_c00310{left:224.400000pt;}
.x28_c00310{left:228.960000pt;}
.x8c_c00310{left:230.320000pt;}
.xbe_c00310{left:231.600000pt;}
.x12_c00310{left:233.293875pt;}
.x55_c00310{left:235.920000pt;}
.x5d_c00310{left:237.120000pt;}
.xa7_c00310{left:238.560000pt;}
.x31_c00310{left:241.920000pt;}
.x9f_c00310{left:243.360000pt;}
.xb2_c00310{left:245.040000pt;}
.x92_c00310{left:247.920000pt;}
.x6b_c00310{left:250.560000pt;}
.x4_c00310{left:252.082732pt;}
.x70_c00310{left:256.320000pt;}
.x8d_c00310{left:257.704000pt;}
.x17_c00310{left:260.774815pt;}
.xe_c00310{left:265.401333pt;}
.x32_c00310{left:267.360000pt;}
.xa8_c00310{left:270.720000pt;}
.x6c_c00310{left:275.760000pt;}
.xa0_c00310{left:276.720000pt;}
.x65_c00310{left:278.640000pt;}
.x4d_c00310{left:279.840000pt;}
.x93_c00310{left:282.960000pt;}
.xa9_c00310{left:284.400000pt;}
.x5_c00310{left:286.854592pt;}
.x82_c00310{left:287.760000pt;}
.x87_c00310{left:291.840000pt;}
.x29_c00310{left:293.040000pt;}
.xbf_c00310{left:295.680000pt;}
.xae_c00310{left:297.600000pt;}
.x7a_c00310{left:299.669333pt;}
.x2a_c00310{left:303.840000pt;}
.x8e_c00310{left:307.149333pt;}
.x4e_c00310{left:310.320000pt;}
.x71_c00310{left:311.280000pt;}
.x6_c00310{left:312.956464pt;}
.x44_c00310{left:313.920000pt;}
.x56_c00310{left:314.880000pt;}
.xaa_c00310{left:316.560000pt;}
.xba_c00310{left:318.240000pt;}
.x18_c00310{left:319.332751pt;}
.x33_c00310{left:320.400000pt;}
.x66_c00310{left:322.080000pt;}
.x9c_c00310{left:323.040000pt;}
.x74_c00310{left:326.400000pt;}
.x2b_c00310{left:327.840000pt;}
.xc0_c00310{left:329.760000pt;}
.xa1_c00310{left:331.200000pt;}
.x5e_c00310{left:333.840000pt;}
.xf_c00310{left:336.226667pt;}
.xa3_c00310{left:338.400000pt;}
.x34_c00310{left:339.360000pt;}
.x83_c00310{left:341.520000pt;}
.x20_c00310{left:342.480000pt;}
.x57_c00310{left:343.920000pt;}
.x45_c00310{left:346.320000pt;}
.xc3_c00310{left:349.440000pt;}
.x2c_c00310{left:350.400000pt;}
.x67_c00310{left:351.360000pt;}
.x3a_c00310{left:352.560000pt;}
.x7_c00310{left:357.008368pt;}
.x13_c00310{left:358.100981pt;}
.xc1_c00310{left:362.880000pt;}
.x84_c00310{left:364.080000pt;}
.xa4_c00310{left:365.040000pt;}
.x46_c00310{left:366.720000pt;}
.x58_c00310{left:368.400000pt;}
.x9d_c00310{left:371.520000pt;}
.x4f_c00310{left:372.720000pt;}
.xc4_c00310{left:375.600000pt;}
.xc2_c00310{left:378.480000pt;}
.x97_c00310{left:381.840000pt;}
.x35_c00310{left:383.280000pt;}
.x88_c00310{left:385.680000pt;}
.x7b_c00310{left:387.030667pt;}
.x3b_c00310{left:388.080000pt;}
.x21_c00310{left:389.520000pt;}
.x8_c00310{left:391.429912pt;}
.xa5_c00310{left:397.680000pt;}
.x50_c00310{left:398.640000pt;}
.x9_c00310{left:404.949712pt;}
.xb3_c00310{left:405.840000pt;}
.xb1_c00310{left:407.280000pt;}
.x89_c00310{left:408.240000pt;}
.x10_c00310{left:416.364000pt;}
.xc5_c00310{left:417.360000pt;}
.x22_c00310{left:418.320000pt;}
.x36_c00310{left:421.200000pt;}
.x3c_c00310{left:422.880000pt;}
.x85_c00310{left:424.560000pt;}
.x51_c00310{left:427.440000pt;}
.x7c_c00310{left:431.458667pt;}
.x9e_c00310{left:433.440000pt;}
.x68_c00310{left:434.400000pt;}
.xbb_c00310{left:435.840000pt;}
.x8f_c00310{left:437.880000pt;}
.x59_c00310{left:438.960000pt;}
.x75_c00310{left:441.600000pt;}
.x23_c00310{left:443.040000pt;}
.x37_c00310{left:446.400000pt;}
.xab_c00310{left:447.600000pt;}
.x3d_c00310{left:450.960000pt;}
.x94_c00310{left:452.160000pt;}
.xa6_c00310{left:456.960000pt;}
.x5a_c00310{left:458.160000pt;}
.xa_c00310{left:459.672268pt;}
.x47_c00310{left:460.800000pt;}
.xbc_c00310{left:461.760000pt;}
.x69_c00310{left:465.840000pt;}
.x19_c00310{left:467.441635pt;}
.x90_c00310{left:471.280000pt;}
.x5f_c00310{left:472.560000pt;}
.xb4_c00310{left:474.000000pt;}
.x98_c00310{left:476.160000pt;}
.x76_c00310{left:478.560000pt;}
.x8a_c00310{left:480.720000pt;}
.x7d_c00310{left:482.306667pt;}
.x95_c00310{left:485.760000pt;}
.x2d_c00310{left:487.680000pt;}
.xac_c00310{left:494.160000pt;}
.xb_c00310{left:508.356868pt;}
.xb5_c00310{left:515.280000pt;}
.x60_c00310{left:521.040000pt;}
.x14_c00310{left:526.110643pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mf3_c00311{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);}
.me1_c00311{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);}
.m0_c00311{transform:matrix(0.063010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063010,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.083707,-0.001758,0.005249,0.249945,0,0);-ms-transform:matrix(0.083707,-0.001758,0.005249,0.249945,0,0);-webkit-transform:matrix(0.083707,-0.001758,0.005249,0.249945,0,0);}
.mea_c00311{transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);}
.m14e_c00311{transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);}
.m122_c00311{transform:matrix(0.112068,0.002690,-0.005998,0.249928,0,0);-ms-transform:matrix(0.112068,0.002690,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.112068,0.002690,-0.005998,0.249928,0,0);}
.m84_c00311{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m144_c00311{transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);}
.m153_c00311{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);}
.m73_c00311{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);}
.m58_c00311{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);}
.m9d_c00311{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);}
.m5f_c00311{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);}
.m164_c00311{transform:matrix(0.147526,0.001033,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147526,0.001033,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147526,0.001033,-0.001750,0.249994,0,0);}
.m44_c00311{transform:matrix(0.148260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148260,0.000000,0.000000,0.250000,0,0);}
.m57_c00311{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.me6_c00311{transform:matrix(0.149280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149280,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{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);}
.m5b_c00311{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);}
.mb2_c00311{transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);}
.mbf_c00311{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);}
.m20_c00311{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);}
.m1c_c00311{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m95_c00311{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);}
.m6b_c00311{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);}
.maf_c00311{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_c00311{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);}
.me7_c00311{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);}
.m14_c00311{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);}
.m43_c00311{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);}
.m88_c00311{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);}
.m8d_c00311{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);}
.m151_c00311{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);}
.m15a_c00311{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);}
.m157_c00311{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);}
.m5_c00311{transform:matrix(0.163370,-0.008667,0.013245,0.249649,0,0);-ms-transform:matrix(0.163370,-0.008667,0.013245,0.249649,0,0);-webkit-transform:matrix(0.163370,-0.008667,0.013245,0.249649,0,0);}
.m158_c00311{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);}
.m41_c00311{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);}
.me9_c00311{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);}
.me5_c00311{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{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);}
.m6a_c00311{transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165040,0.000000,0.000000,0.250000,0,0);}
.m74_c00311{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);}
.m22_c00311{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);}
.m52_c00311{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);}
.m8b_c00311{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);}
.m9e_c00311{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);}
.med_c00311{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);}
.m9c_c00311{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);}
.mdf_c00311{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);}
.m11f_c00311{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);}
.mb9_c00311{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);}
.m11d_c00311{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);}
.m21_c00311{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);}
.m86_c00311{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);}
.m3f_c00311{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);}
.m45_c00311{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);}
.m72_c00311{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);}
.m4c_c00311{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_c00311{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);}
.m3d_c00311{transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{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);}
.m9a_c00311{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);}
.m40_c00311{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);}
.md5_c00311{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);}
.m2b_c00311{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);}
.m3a_c00311{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);}
.m3b_c00311{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);}
.m16c_c00311{transform:matrix(0.174906,0.001224,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174906,0.001224,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174906,0.001224,-0.001750,0.249994,0,0);}
.mfa_c00311{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);}
.m42_c00311{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);}
.me8_c00311{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);}
.m11_c00311{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);}
.m9_c00311{transform:matrix(0.176900,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176900,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176900,-0.002300,0.003250,0.249979,0,0);}
.mad_c00311{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);}
.m1f_c00311{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);}
.m54_c00311{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);}
.mf8_c00311{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);}
.m18_c00311{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);}
.m160_c00311{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);}
.m76_c00311{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);}
.ma6_c00311{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);}
.mbc_c00311{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);}
.ma0_c00311{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);}
.m108_c00311{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);}
.m5c_c00311{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);}
.m50_c00311{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);}
.m11e_c00311{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);}
.m31_c00311{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);}
.m39_c00311{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);}
.m117_c00311{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);}
.m8f_c00311{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);}
.mb7_c00311{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);}
.m114_c00311{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);}
.m96_c00311{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);}
.m150_c00311{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);}
.m9f_c00311{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);}
.mc8_c00311{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);}
.m55_c00311{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);}
.m9b_c00311{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);}
.mef_c00311{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);}
.m24_c00311{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);}
.m91_c00311{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);}
.mcd_c00311{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);}
.mdb_c00311{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);}
.m77_c00311{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);}
.md2_c00311{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);}
.m7b_c00311{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);}
.m13b_c00311{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);}
.ma4_c00311{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);}
.mec_c00311{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);}
.mcf_c00311{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);}
.m12_c00311{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{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);}
.ma_c00311{transform:matrix(0.187334,-0.003934,0.005249,0.249945,0,0);-ms-transform:matrix(0.187334,-0.003934,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187334,-0.003934,0.005249,0.249945,0,0);}
.m56_c00311{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);}
.m5a_c00311{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);}
.m11c_c00311{transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);}
.m155_c00311{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);}
.mc1_c00311{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);}
.m119_c00311{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m87_c00311{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);}
.mdc_c00311{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);}
.m90_c00311{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);}
.m132_c00311{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);}
.mfb_c00311{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);}
.m51_c00311{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);}
.me3_c00311{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);}
.mc0_c00311{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);}
.mb0_c00311{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);}
.m11a_c00311{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);}
.m46_c00311{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);}
.m47_c00311{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);}
.me2_c00311{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);}
.m10e_c00311{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);}
.m167_c00311{transform:matrix(0.191825,0.001343,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191825,0.001343,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191825,0.001343,-0.001750,0.249994,0,0);}
.mcc_c00311{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);}
.md3_c00311{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);}
.m7c_c00311{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);}
.meb_c00311{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);}
.m165_c00311{transform:matrix(0.193040,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193040,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193040,0.001351,-0.001750,0.249994,0,0);}
.mb4_c00311{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);}
.md7_c00311{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);}
.mc6_c00311{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);}
.mba_c00311{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);}
.mee_c00311{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);}
.m10a_c00311{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);}
.m68_c00311{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);}
.mc5_c00311{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);}
.m10f_c00311{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);}
.m80_c00311{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);}
.m8c_c00311{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);}
.m2d_c00311{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00311{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);}
.m99_c00311{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);}
.m4a_c00311{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);}
.mc9_c00311{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);}
.mfd_c00311{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);}
.m4b_c00311{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);}
.m127_c00311{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);}
.m85_c00311{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);}
.m1b_c00311{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);}
.m49_c00311{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);}
.m65_c00311{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m156_c00311{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);}
.mc3_c00311{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);}
.m11b_c00311{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);}
.mf5_c00311{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);}
.mf6_c00311{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);}
.mbd_c00311{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);}
.m30_c00311{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);}
.m75_c00311{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);}
.mdd_c00311{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);}
.m2c_c00311{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);}
.mb5_c00311{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);}
.m3c_c00311{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);}
.m59_c00311{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);}
.m116_c00311{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);}
.m48_c00311{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);}
.mb8_c00311{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);}
.m7d_c00311{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);}
.m166_c00311{transform:matrix(0.200035,0.001400,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200035,0.001400,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200035,0.001400,-0.001750,0.249994,0,0);}
.m109_c00311{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);}
.m135_c00311{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);}
.m6d_c00311{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);}
.ma5_c00311{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);}
.m23_c00311{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);}
.mb3_c00311{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m124_c00311{transform:matrix(0.202457,0.004859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202457,0.004859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202457,0.004859,-0.005998,0.249928,0,0);}
.m2e_c00311{transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);}
.m118_c00311{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);}
.mae_c00311{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);}
.m3e_c00311{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);}
.mf9_c00311{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);}
.m19_c00311{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);}
.m26_c00311{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);}
.m10c_c00311{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);}
.m8e_c00311{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);}
.m5e_c00311{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);}
.m17_c00311{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);}
.m128_c00311{transform:matrix(0.206036,0.004945,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206036,0.004945,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206036,0.004945,-0.005998,0.249928,0,0);}
.mf2_c00311{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);}
.m4f_c00311{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);}
.m81_c00311{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);}
.md4_c00311{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);}
.m28_c00311{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);}
.m101_c00311{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);}
.m38_c00311{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.m123_c00311{transform:matrix(0.208870,0.005013,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208870,0.005013,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208870,0.005013,-0.005998,0.249928,0,0);}
.m62_c00311{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);}
.m27_c00311{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);}
.mde_c00311{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);}
.m5d_c00311{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);}
.m79_c00311{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);}
.m89_c00311{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);}
.m15f_c00311{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);}
.m112_c00311{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);}
.m14a_c00311{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);}
.m7f_c00311{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);}
.m13e_c00311{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);}
.m98_c00311{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);}
.m134_c00311{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);}
.mbe_c00311{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);}
.m37_c00311{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);}
.m163_c00311{transform:matrix(0.214415,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214415,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214415,0.001501,-0.001750,0.249994,0,0);}
.mf7_c00311{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);}
.mbb_c00311{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);}
.m1e_c00311{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);}
.m110_c00311{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);}
.m143_c00311{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_c00311{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);}
.m12d_c00311{transform:matrix(0.215943,0.005183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215943,0.005183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215943,0.005183,-0.005998,0.249928,0,0);}
.m16e_c00311{transform:matrix(0.216180,0.001513,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216180,0.001513,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216180,0.001513,-0.001750,0.249994,0,0);}
.me4_c00311{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);}
.mcb_c00311{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);}
.m34_c00311{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);}
.m32_c00311{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);}
.m64_c00311{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);}
.mce_c00311{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);}
.ma7_c00311{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);}
.m115_c00311{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);}
.m82_c00311{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);}
.m13d_c00311{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);}
.m92_c00311{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);}
.m139_c00311{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);}
.md9_c00311{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);}
.m138_c00311{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);}
.mfe_c00311{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);}
.mff_c00311{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);}
.m33_c00311{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);}
.mc4_c00311{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);}
.m16d_c00311{transform:matrix(0.220930,0.001547,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220930,0.001547,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220930,0.001547,-0.001750,0.249994,0,0);}
.m15e_c00311{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);}
.maa_c00311{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);}
.m15d_c00311{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);}
.m8a_c00311{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);}
.m146_c00311{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);}
.m129_c00311{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);}
.m147_c00311{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);}
.md8_c00311{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);}
.m97_c00311{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);}
.mc7_c00311{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);}
.m125_c00311{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);}
.m100_c00311{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);}
.m66_c00311{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);}
.m7e_c00311{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);}
.m25_c00311{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);}
.m133_c00311{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);}
.mb1_c00311{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);}
.m70_c00311{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);}
.md0_c00311{transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);}
.m13a_c00311{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);}
.mf4_c00311{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);}
.m6e_c00311{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);}
.mf0_c00311{transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.230521,-0.012230,0.013245,0.249649,0,0);-ms-transform:matrix(0.230521,-0.012230,0.013245,0.249649,0,0);-webkit-transform:matrix(0.230521,-0.012230,0.013245,0.249649,0,0);}
.m1d_c00311{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);}
.m126_c00311{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);}
.m169_c00311{transform:matrix(0.230924,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230924,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230924,0.001616,-0.001750,0.249994,0,0);}
.m137_c00311{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);}
.m12a_c00311{transform:matrix(0.232738,0.005586,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232738,0.005586,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232738,0.005586,-0.005998,0.249928,0,0);}
.m12b_c00311{transform:matrix(0.233248,0.005598,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233248,0.005598,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233248,0.005598,-0.005998,0.249928,0,0);}
.m2a_c00311{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);}
.m16f_c00311{transform:matrix(0.234149,0.001639,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234149,0.001639,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234149,0.001639,-0.001750,0.249994,0,0);}
.m113_c00311{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);}
.m12e_c00311{transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{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);}
.m35_c00311{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);}
.mab_c00311{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);}
.mb6_c00311{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{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);}
.m63_c00311{transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);}
.m107_c00311{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);}
.mca_c00311{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m78_c00311{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);}
.mfc_c00311{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);}
.m2f_c00311{transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);}
.m121_c00311{transform:matrix(0.242300,0.005815,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242300,0.005815,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242300,0.005815,-0.005998,0.249928,0,0);}
.m6f_c00311{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);}
.m142_c00311{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{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);}
.ma2_c00311{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);}
.m83_c00311{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m10b_c00311{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m14f_c00311{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00311{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);}
.m145_c00311{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);}
.m105_c00311{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{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);}
.md6_c00311{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);}
.ma3_c00311{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{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);}
.m141_c00311{transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);}
.m168_c00311{transform:matrix(0.257819,0.001805,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257819,0.001805,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257819,0.001805,-0.001750,0.249994,0,0);}
.mda_c00311{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);}
.m10_c00311{transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);}
.m14d_c00311{transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);}
.m103_c00311{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);}
.m94_c00311{transform:matrix(0.266090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266090,0.000000,0.000000,0.250000,0,0);}
.me0_c00311{transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266830,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.m159_c00311{transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275335,0.000000,0.000000,0.250000,0,0);}
.m131_c00311{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.m16b_c00311{transform:matrix(0.278588,0.001950,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278588,0.001950,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278588,0.001950,-0.001750,0.249994,0,0);}
.m15c_c00311{transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281930,0.000000,0.000000,0.250000,0,0);}
.m104_c00311{transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);}
.m16a_c00311{transform:matrix(0.284123,0.001989,-0.001750,0.249994,0,0);-ms-transform:matrix(0.284123,0.001989,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.284123,0.001989,-0.001750,0.249994,0,0);}
.m12c_c00311{transform:matrix(0.286567,0.006878,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286567,0.006878,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286567,0.006878,-0.005998,0.249928,0,0);}
.m10d_c00311{transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.292935,-0.006152,0.005249,0.249945,0,0);-ms-transform:matrix(0.292935,-0.006152,0.005249,0.249945,0,0);-webkit-transform:matrix(0.292935,-0.006152,0.005249,0.249945,0,0);}
.mc2_c00311{transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);}
.m170_c00311{transform:matrix(0.303228,0.002123,-0.001750,0.249994,0,0);-ms-transform:matrix(0.303228,0.002123,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.303228,0.002123,-0.001750,0.249994,0,0);}
.m162_c00311{transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304270,0.000000,0.000000,0.250000,0,0);}
.mf1_c00311{transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);}
.m136_c00311{transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);}
.m140_c00311{transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310400,0.000000,0.000000,0.250000,0,0);}
.m130_c00311{transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);}
.m106_c00311{transform:matrix(0.314470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314470,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319135,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.320944,-0.017027,0.013245,0.249649,0,0);-ms-transform:matrix(0.320944,-0.017027,0.013245,0.249649,0,0);-webkit-transform:matrix(0.320944,-0.017027,0.013245,0.249649,0,0);}
.m13c_c00311{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);}
.m12f_c00311{transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329220,0.000000,0.000000,0.250000,0,0);}
.m93_c00311{transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329975,0.000000,0.000000,0.250000,0,0);}
.m120_c00311{transform:matrix(0.330530,0.007933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.330530,0.007933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.330530,0.007933,-0.005998,0.249928,0,0);}
.mc_c00311{transform:matrix(0.335921,-0.007054,0.005249,0.249945,0,0);-ms-transform:matrix(0.335921,-0.007054,0.005249,0.249945,0,0);-webkit-transform:matrix(0.335921,-0.007054,0.005249,0.249945,0,0);}
.ma1_c00311{transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);}
.m111_c00311{transform:matrix(0.354465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354465,0.000000,0.000000,0.250000,0,0);}
.md1_c00311{transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);}
.m161_c00311{transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);}
.m148_c00311{transform:matrix(0.374590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374590,0.000000,0.000000,0.250000,0,0);}
.m102_c00311{transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);}
.m14b_c00311{transform:matrix(0.416705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416705,0.000000,0.000000,0.250000,0,0);}
.m152_c00311{transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433145,0.000000,0.000000,0.250000,0,0);}
.m154_c00311{transform:matrix(0.436875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436875,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.445725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445725,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{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);}
.m149_c00311{transform:matrix(0.513360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513360,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.514157,-0.027278,0.013245,0.249649,0,0);-ms-transform:matrix(0.514157,-0.027278,0.013245,0.249649,0,0);-webkit-transform:matrix(0.514157,-0.027278,0.013245,0.249649,0,0);}
.m7_c00311{transform:matrix(0.547684,-0.007120,0.003250,0.249979,0,0);-ms-transform:matrix(0.547684,-0.007120,0.003250,0.249979,0,0);-webkit-transform:matrix(0.547684,-0.007120,0.003250,0.249979,0,0);}
.m4_c00311{transform:matrix(0.557366,-0.029570,0.013245,0.249649,0,0);-ms-transform:matrix(0.557366,-0.029570,0.013245,0.249649,0,0);-webkit-transform:matrix(0.557366,-0.029570,0.013245,0.249649,0,0);}
.m8_c00311{transform:matrix(0.681812,-0.008864,0.003250,0.249979,0,0);-ms-transform:matrix(0.681812,-0.008864,0.003250,0.249979,0,0);-webkit-transform:matrix(0.681812,-0.008864,0.003250,0.249979,0,0);}
.m15b_c00311{transform:matrix(0.831300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831300,0.000000,0.000000,0.250000,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;}
.fs2_c00311{font-size:30.462330px;}
.fsf_c00311{font-size:35.700000px;}
.fs11_c00311{font-size:50.401235px;}
.fsd_c00311{font-size:58.816932px;}
.fs10_c00311{font-size:59.850000px;}
.fs0_c00311{font-size:60.900000px;}
.fsb_c00311{font-size:61.950000px;}
.fs8_c00311{font-size:65.100000px;}
.fs1_c00311{font-size:65.126360px;}
.fsc_c00311{font-size:66.150000px;}
.fsa_c00311{font-size:67.200000px;}
.fse_c00311{font-size:68.269653px;}
.fs5_c00311{font-size:69.300000px;}
.fs7_c00311{font-size:70.350000px;}
.fs9_c00311{font-size:71.400000px;}
.fs6_c00311{font-size:72.450000px;}
.fs3_c00311{font-size:75.606388px;}
.fs4_c00311{font-size:151.233336px;}
.y0_c00311{bottom:0.000000px;}
.y8_c00311{bottom:118.263000px;}
.y9_c00311{bottom:120.412270px;}
.ya_c00311{bottom:121.347042px;}
.y65_c00311{bottom:167.985921px;}
.y64_c00311{bottom:168.282829px;}
.y63_c00311{bottom:168.458452px;}
.y62_c00311{bottom:168.859185px;}
.y61_c00311{bottom:168.945936px;}
.y60_c00311{bottom:169.119942px;}
.y5f_c00311{bottom:169.250383px;}
.y5e_c00311{bottom:169.356265px;}
.y5d_c00311{bottom:169.749574px;}
.y5c_c00311{bottom:169.919317px;}
.y5b_c00311{bottom:170.359813px;}
.y5a_c00311{bottom:170.597817px;}
.y59_c00311{bottom:170.862585px;}
.y58_c00311{bottom:171.180000px;}
.y57_c00311{bottom:189.288000px;}
.y56_c00311{bottom:212.893500px;}
.y54_c00311{bottom:236.440500px;}
.y53_c00311{bottom:259.680000px;}
.y55_c00311{bottom:260.824500px;}
.y51_c00311{bottom:279.430524px;}
.y50_c00311{bottom:279.431232px;}
.y52_c00311{bottom:283.387500px;}
.y4f_c00311{bottom:304.836036px;}
.y4e_c00311{bottom:305.568060px;}
.y4d_c00311{bottom:306.194568px;}
.y4c_c00311{bottom:307.790844px;}
.y4b_c00311{bottom:308.397300px;}
.y4a_c00311{bottom:309.330456px;}
.y49_c00311{bottom:311.594136px;}
.y48_c00311{bottom:312.416232px;}
.y47_c00311{bottom:313.667772px;}
.y46_c00311{bottom:314.011068px;}
.y45_c00311{bottom:315.166884px;}
.y44_c00311{bottom:315.901500px;}
.y43_c00311{bottom:328.416000px;}
.y42_c00311{bottom:351.030000px;}
.y41_c00311{bottom:374.251500px;}
.y40_c00311{bottom:397.408500px;}
.y3f_c00311{bottom:420.630000px;}
.y3e_c00311{bottom:443.013000px;}
.y3d_c00311{bottom:465.988500px;}
.y3c_c00311{bottom:489.166500px;}
.y3b_c00311{bottom:511.836000px;}
.y3a_c00311{bottom:534.423000px;}
.y39_c00311{bottom:557.223000px;}
.y38_c00311{bottom:579.898500px;}
.y37_c00311{bottom:602.799000px;}
.y36_c00311{bottom:625.390500px;}
.y35_c00311{bottom:648.546000px;}
.y34_c00311{bottom:671.065500px;}
.y33_c00311{bottom:693.807000px;}
.y32_c00311{bottom:716.694000px;}
.y27_c00311{bottom:737.910000px;}
.y28_c00311{bottom:738.213000px;}
.y29_c00311{bottom:738.331500px;}
.y2a_c00311{bottom:738.688500px;}
.y2b_c00311{bottom:739.287000px;}
.y2c_c00311{bottom:739.705500px;}
.y2d_c00311{bottom:740.059500px;}
.y2e_c00311{bottom:740.296500px;}
.y2f_c00311{bottom:740.935500px;}
.y30_c00311{bottom:741.195000px;}
.y31_c00311{bottom:741.513000px;}
.y26_c00311{bottom:762.559500px;}
.y1b_c00311{bottom:783.000000px;}
.y1c_c00311{bottom:783.318000px;}
.y1d_c00311{bottom:783.498000px;}
.y1e_c00311{bottom:783.915000px;}
.y1f_c00311{bottom:784.110000px;}
.y20_c00311{bottom:784.662000px;}
.y21_c00311{bottom:784.941000px;}
.y22_c00311{bottom:785.071500px;}
.y23_c00311{bottom:785.364000px;}
.y24_c00311{bottom:785.572500px;}
.y25_c00311{bottom:785.974500px;}
.y1a_c00311{bottom:809.236500px;}
.y19_c00311{bottom:809.737500px;}
.y18_c00311{bottom:809.941500px;}
.y17_c00311{bottom:810.117000px;}
.y16_c00311{bottom:810.576000px;}
.y15_c00311{bottom:810.939000px;}
.y14_c00311{bottom:811.111500px;}
.y13_c00311{bottom:811.768500px;}
.y12_c00311{bottom:811.969500px;}
.y11_c00311{bottom:812.259000px;}
.y10_c00311{bottom:812.430000px;}
.yf_c00311{bottom:830.577000px;}
.yb_c00311{bottom:871.567500px;}
.yc_c00311{bottom:873.248056px;}
.yd_c00311{bottom:873.921180px;}
.ye_c00311{bottom:876.281916px;}
.y7_c00311{bottom:899.490587px;}
.y3_c00311{bottom:931.810500px;}
.y4_c00311{bottom:934.754226px;}
.y5_c00311{bottom:938.215418px;}
.y2_c00311{bottom:939.385500px;}
.y6_c00311{bottom:943.659816px;}
.y1_c00311{bottom:946.350000px;}
.h4_c00311{height:30.462330px;}
.h11_c00311{height:35.700000px;}
.h13_c00311{height:50.401235px;}
.hf_c00311{height:58.816932px;}
.h12_c00311{height:59.850000px;}
.h2_c00311{height:60.900000px;}
.hd_c00311{height:61.950000px;}
.ha_c00311{height:65.100000px;}
.h3_c00311{height:65.126360px;}
.he_c00311{height:66.150000px;}
.hc_c00311{height:67.200000px;}
.h10_c00311{height:68.269653px;}
.h7_c00311{height:69.300000px;}
.h9_c00311{height:70.350000px;}
.hb_c00311{height:71.400000px;}
.h8_c00311{height:72.450000px;}
.h5_c00311{height:75.606388px;}
.h6_c00311{height:151.233336px;}
.h0_c00311{height:1008.450000px;}
.h1_c00311{height:1008.750000px;}
.w0_c00311{width:696.000000px;}
.x0_c00311{left:0.000000px;}
.x3_c00311{left:89.061000px;}
.x8_c00311{left:90.114000px;}
.x7_c00311{left:95.585869px;}
.xb3_c00311{left:135.271512px;}
.xac_c00311{left:137.365500px;}
.xb_c00311{left:140.470500px;}
.x7b_c00311{left:141.750000px;}
.x94_c00311{left:143.100000px;}
.x4_c00311{left:144.547458px;}
.x75_c00311{left:148.230000px;}
.x82_c00311{left:151.740000px;}
.xf_c00311{left:159.030000px;}
.xa1_c00311{left:161.190000px;}
.x4d_c00311{left:163.891500px;}
.x18_c00311{left:164.902500px;}
.x7c_c00311{left:166.590000px;}
.x58_c00311{left:167.671500px;}
.xb4_c00311{left:169.570740px;}
.x66_c00311{left:171.990000px;}
.x2c_c00311{left:173.878500px;}
.xbf_c00311{left:175.230000px;}
.x83_c00311{left:177.660000px;}
.x37_c00311{left:178.842000px;}
.xbe_c00311{left:182.790000px;}
.x22_c00311{left:186.399000px;}
.x8a_c00311{left:189.270000px;}
.xc4_c00311{left:190.284000px;}
.x3d_c00311{left:192.511500px;}
.x38_c00311{left:193.702500px;}
.x44_c00311{left:198.181500px;}
.x67_c00311{left:199.260000px;}
.x6c_c00311{left:200.340000px;}
.x2_c00311{left:202.770000px;}
.x19_c00311{left:206.223000px;}
.x7d_c00311{left:207.900000px;}
.x5_c00311{left:209.787652px;}
.x23_c00311{left:212.065500px;}
.x87_c00311{left:215.190000px;}
.x6d_c00311{left:217.080000px;}
.xb5_c00311{left:218.160000px;}
.xc_c00311{left:220.497000px;}
.x99_c00311{left:224.640000px;}
.x1_c00311{left:227.610000px;}
.x4e_c00311{left:228.961500px;}
.xad_c00311{left:230.437500px;}
.x45_c00311{left:231.931500px;}
.xb7_c00311{left:233.010000px;}
.x1a_c00311{left:234.831000px;}
.x2d_c00311{left:237.058500px;}
.x39_c00311{left:238.252500px;}
.x60_c00311{left:239.490000px;}
.x68_c00311{left:240.840000px;}
.x59_c00311{left:242.461500px;}
.x9a_c00311{left:243.540000px;}
.x10_c00311{left:247.860000px;}
.xd_c00311{left:252.550500px;}
.x9_c00311{left:255.442500px;}
.xb8_c00311{left:257.310000px;}
.x61_c00311{left:259.740000px;}
.x95_c00311{left:261.900000px;}
.xa2_c00311{left:263.250000px;}
.x71_c00311{left:265.950000px;}
.x24_c00311{left:271.720500px;}
.x2e_c00311{left:275.128500px;}
.x5a_c00311{left:276.751500px;}
.x4f_c00311{left:281.611500px;}
.x46_c00311{left:285.391500px;}
.xb6_c00311{left:287.280000px;}
.x6e_c00311{left:288.630000px;}
.x5b_c00311{left:291.061500px;}
.x84_c00311{left:294.300000px;}
.x96_c00311{left:295.920000px;}
.x72_c00311{left:297.540000px;}
.x25_c00311{left:299.542500px;}
.x47_c00311{left:302.401500px;}
.x97_c00311{left:306.450000px;}
.x88_c00311{left:308.610000px;}
.x2f_c00311{left:310.498500px;}
.x6_c00311{left:312.409428px;}
.x5c_c00311{left:314.281500px;}
.xae_c00311{left:316.839000px;}
.x8b_c00311{left:322.110000px;}
.x3e_c00311{left:324.271500px;}
.xa_c00311{left:327.348000px;}
.x1b_c00311{left:328.779000px;}
.x73_c00311{left:330.480000px;}
.x62_c00311{left:331.830000px;}
.x30_c00311{left:334.798500px;}
.xa3_c00311{left:337.500000px;}
.x7e_c00311{left:341.820000px;}
.x11_c00311{left:343.440000px;}
.x48_c00311{left:346.411500px;}
.x3f_c00311{left:347.491500px;}
.x5d_c00311{left:349.921500px;}
.x50_c00311{left:351.541500px;}
.x1c_c00311{left:353.341500px;}
.xa4_c00311{left:354.510000px;}
.x9b_c00311{left:356.400000px;}
.x74_c00311{left:360.990000px;}
.xe_c00311{left:364.966500px;}
.x90_c00311{left:366.660000px;}
.x31_c00311{left:369.358500px;}
.x6f_c00311{left:373.680000px;}
.xa5_c00311{left:375.030000px;}
.x12_c00311{left:376.380000px;}
.x26_c00311{left:378.378000px;}
.x5e_c00311{left:379.891500px;}
.x9c_c00311{left:383.670000px;}
.x51_c00311{left:385.021500px;}
.xbb_c00311{left:391.500000px;}
.x40_c00311{left:393.121500px;}
.xa6_c00311{left:395.010000px;}
.x49_c00311{left:396.091500px;}
.x76_c00311{left:397.710000px;}
.x32_c00311{left:399.868500px;}
.x8c_c00311{left:401.760000px;}
.x63_c00311{left:403.380000px;}
.x1d_c00311{left:405.181500px;}
.x3a_c00311{left:409.710000px;}
.xaf_c00311{left:411.159000px;}
.x7f_c00311{left:414.450000px;}
.x27_c00311{left:418.308000px;}
.x33_c00311{left:420.118500px;}
.x91_c00311{left:423.900000px;}
.xa7_c00311{left:424.980000px;}
.x77_c00311{left:427.950000px;}
.x52_c00311{left:432.541500px;}
.x98_c00311{left:434.430000px;}
.x28_c00311{left:436.965000px;}
.x34_c00311{left:438.748500px;}
.x4a_c00311{left:441.721500px;}
.x80_c00311{left:444.150000px;}
.x13_c00311{left:445.770000px;}
.xb0_c00311{left:450.040500px;}
.x53_c00311{left:454.141500px;}
.x9d_c00311{left:458.730000px;}
.x69_c00311{left:459.810000px;}
.xbc_c00311{left:463.320000px;}
.x4b_c00311{left:466.021500px;}
.xa8_c00311{left:468.720000px;}
.x1e_c00311{left:470.790000px;}
.x14_c00311{left:473.580000px;}
.xb1_c00311{left:475.309500px;}
.x9e_c00311{left:477.090000px;}
.x29_c00311{left:478.803000px;}
.x54_c00311{left:480.331500px;}
.x70_c00311{left:482.490000px;}
.xc0_c00311{left:483.570000px;}
.x35_c00311{left:484.918500px;}
.x8d_c00311{left:486.270000px;}
.x41_c00311{left:491.401500px;}
.x8e_c00311{left:492.480000px;}
.x1f_c00311{left:495.897000px;}
.xa9_c00311{left:498.420000px;}
.x2a_c00311{left:508.507500px;}
.xc1_c00311{left:510.030000px;}
.x78_c00311{left:513.270000px;}
.x15_c00311{left:514.620000px;}
.x42_c00311{left:517.591500px;}
.x3b_c00311{left:519.310500px;}
.x8f_c00311{left:521.370000px;}
.x20_c00311{left:525.057000px;}
.x64_c00311{left:527.850000px;}
.x4c_c00311{left:530.281500px;}
.x79_c00311{left:532.980000px;}
.x6a_c00311{left:542.430000px;}
.xb9_c00311{left:544.050000px;}
.x55_c00311{left:545.401500px;}
.xc2_c00311{left:548.370000px;}
.x16_c00311{left:552.420000px;}
.x5f_c00311{left:555.931500px;}
.x92_c00311{left:557.550000px;}
.xc5_c00311{left:558.820500px;}
.x17_c00311{left:562.680000px;}
.x2b_c00311{left:566.013000px;}
.xaa_c00311{left:567.270000px;}
.x7a_c00311{left:568.620000px;}
.x85_c00311{left:572.400000px;}
.x56_c00311{left:574.291500px;}
.x9f_c00311{left:575.910000px;}
.xbd_c00311{left:578.880000px;}
.x43_c00311{left:582.391500px;}
.x89_c00311{left:584.010000px;}
.xab_c00311{left:588.060000px;}
.x81_c00311{left:589.140000px;}
.x3c_c00311{left:591.378000px;}
.xa0_c00311{left:593.730000px;}
.x21_c00311{left:596.613000px;}
.xb2_c00311{left:598.426500px;}
.xc6_c00311{left:601.236000px;}
.x93_c00311{left:603.450000px;}
.x86_c00311{left:605.610000px;}
.x36_c00311{left:606.958500px;}
.x57_c00311{left:609.121500px;}
.x6b_c00311{left:610.470000px;}
.x65_c00311{left:614.790000px;}
.xba_c00311{left:628.560000px;}
.xc3_c00311{left:633.420000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs2_c00311{font-size:27.077626pt;}
.fsf_c00311{font-size:31.733333pt;}
.fs11_c00311{font-size:44.801098pt;}
.fsd_c00311{font-size:52.281717pt;}
.fs10_c00311{font-size:53.200000pt;}
.fs0_c00311{font-size:54.133333pt;}
.fsb_c00311{font-size:55.066667pt;}
.fs8_c00311{font-size:57.866667pt;}
.fs1_c00311{font-size:57.890098pt;}
.fsc_c00311{font-size:58.800000pt;}
.fsa_c00311{font-size:59.733333pt;}
.fse_c00311{font-size:60.684136pt;}
.fs5_c00311{font-size:61.600000pt;}
.fs7_c00311{font-size:62.533333pt;}
.fs9_c00311{font-size:63.466667pt;}
.fs6_c00311{font-size:64.400000pt;}
.fs3_c00311{font-size:67.205678pt;}
.fs4_c00311{font-size:134.429632pt;}
.y0_c00311{bottom:0.000000pt;}
.y8_c00311{bottom:105.122667pt;}
.y9_c00311{bottom:107.033129pt;}
.ya_c00311{bottom:107.864037pt;}
.y65_c00311{bottom:149.320819pt;}
.y64_c00311{bottom:149.584737pt;}
.y63_c00311{bottom:149.740847pt;}
.y62_c00311{bottom:150.097053pt;}
.y61_c00311{bottom:150.174165pt;}
.y60_c00311{bottom:150.328837pt;}
.y5f_c00311{bottom:150.444785pt;}
.y5e_c00311{bottom:150.538903pt;}
.y5d_c00311{bottom:150.888511pt;}
.y5c_c00311{bottom:151.039393pt;}
.y5b_c00311{bottom:151.430945pt;}
.y5a_c00311{bottom:151.642504pt;}
.y59_c00311{bottom:151.877853pt;}
.y58_c00311{bottom:152.160000pt;}
.y57_c00311{bottom:168.256000pt;}
.y56_c00311{bottom:189.238667pt;}
.y54_c00311{bottom:210.169333pt;}
.y53_c00311{bottom:230.826667pt;}
.y55_c00311{bottom:231.844000pt;}
.y51_c00311{bottom:248.382688pt;}
.y50_c00311{bottom:248.383317pt;}
.y52_c00311{bottom:251.900000pt;}
.y4f_c00311{bottom:270.965365pt;}
.y4e_c00311{bottom:271.616053pt;}
.y4d_c00311{bottom:272.172949pt;}
.y4c_c00311{bottom:273.591861pt;}
.y4b_c00311{bottom:274.130933pt;}
.y4a_c00311{bottom:274.960405pt;}
.y49_c00311{bottom:276.972565pt;}
.y48_c00311{bottom:277.703317pt;}
.y47_c00311{bottom:278.815797pt;}
.y46_c00311{bottom:279.120949pt;}
.y45_c00311{bottom:280.148341pt;}
.y44_c00311{bottom:280.801333pt;}
.y43_c00311{bottom:291.925333pt;}
.y42_c00311{bottom:312.026667pt;}
.y41_c00311{bottom:332.668000pt;}
.y40_c00311{bottom:353.252000pt;}
.y3f_c00311{bottom:373.893333pt;}
.y3e_c00311{bottom:393.789333pt;}
.y3d_c00311{bottom:414.212000pt;}
.y3c_c00311{bottom:434.814667pt;}
.y3b_c00311{bottom:454.965333pt;}
.y3a_c00311{bottom:475.042667pt;}
.y39_c00311{bottom:495.309333pt;}
.y38_c00311{bottom:515.465333pt;}
.y37_c00311{bottom:535.821333pt;}
.y36_c00311{bottom:555.902667pt;}
.y35_c00311{bottom:576.485333pt;}
.y34_c00311{bottom:596.502667pt;}
.y33_c00311{bottom:616.717333pt;}
.y32_c00311{bottom:637.061333pt;}
.y27_c00311{bottom:655.920000pt;}
.y28_c00311{bottom:656.189333pt;}
.y29_c00311{bottom:656.294667pt;}
.y2a_c00311{bottom:656.612000pt;}
.y2b_c00311{bottom:657.144000pt;}
.y2c_c00311{bottom:657.516000pt;}
.y2d_c00311{bottom:657.830667pt;}
.y2e_c00311{bottom:658.041333pt;}
.y2f_c00311{bottom:658.609333pt;}
.y30_c00311{bottom:658.840000pt;}
.y31_c00311{bottom:659.122667pt;}
.y26_c00311{bottom:677.830667pt;}
.y1b_c00311{bottom:696.000000pt;}
.y1c_c00311{bottom:696.282667pt;}
.y1d_c00311{bottom:696.442667pt;}
.y1e_c00311{bottom:696.813333pt;}
.y1f_c00311{bottom:696.986667pt;}
.y20_c00311{bottom:697.477333pt;}
.y21_c00311{bottom:697.725333pt;}
.y22_c00311{bottom:697.841333pt;}
.y23_c00311{bottom:698.101333pt;}
.y24_c00311{bottom:698.286667pt;}
.y25_c00311{bottom:698.644000pt;}
.y1a_c00311{bottom:719.321333pt;}
.y19_c00311{bottom:719.766667pt;}
.y18_c00311{bottom:719.948000pt;}
.y17_c00311{bottom:720.104000pt;}
.y16_c00311{bottom:720.512000pt;}
.y15_c00311{bottom:720.834667pt;}
.y14_c00311{bottom:720.988000pt;}
.y13_c00311{bottom:721.572000pt;}
.y12_c00311{bottom:721.750667pt;}
.y11_c00311{bottom:722.008000pt;}
.y10_c00311{bottom:722.160000pt;}
.yf_c00311{bottom:738.290667pt;}
.yb_c00311{bottom:774.726667pt;}
.yc_c00311{bottom:776.220495pt;}
.yd_c00311{bottom:776.818827pt;}
.ye_c00311{bottom:778.917259pt;}
.y7_c00311{bottom:799.547188pt;}
.y3_c00311{bottom:828.276000pt;}
.y4_c00311{bottom:830.892645pt;}
.y5_c00311{bottom:833.969260pt;}
.y2_c00311{bottom:835.009333pt;}
.y6_c00311{bottom:838.808725pt;}
.y1_c00311{bottom:841.200000pt;}
.h4_c00311{height:27.077626pt;}
.h11_c00311{height:31.733333pt;}
.h13_c00311{height:44.801098pt;}
.hf_c00311{height:52.281717pt;}
.h12_c00311{height:53.200000pt;}
.h2_c00311{height:54.133333pt;}
.hd_c00311{height:55.066667pt;}
.ha_c00311{height:57.866667pt;}
.h3_c00311{height:57.890098pt;}
.he_c00311{height:58.800000pt;}
.hc_c00311{height:59.733333pt;}
.h10_c00311{height:60.684136pt;}
.h7_c00311{height:61.600000pt;}
.h9_c00311{height:62.533333pt;}
.hb_c00311{height:63.466667pt;}
.h8_c00311{height:64.400000pt;}
.h5_c00311{height:67.205678pt;}
.h6_c00311{height:134.429632pt;}
.h0_c00311{height:896.400000pt;}
.h1_c00311{height:896.666667pt;}
.w0_c00311{width:618.666667pt;}
.x0_c00311{left:0.000000pt;}
.x3_c00311{left:79.165333pt;}
.x8_c00311{left:80.101333pt;}
.x7_c00311{left:84.965217pt;}
.xb3_c00311{left:120.241344pt;}
.xac_c00311{left:122.102667pt;}
.xb_c00311{left:124.862667pt;}
.x7b_c00311{left:126.000000pt;}
.x94_c00311{left:127.200000pt;}
.x4_c00311{left:128.486629pt;}
.x75_c00311{left:131.760000pt;}
.x82_c00311{left:134.880000pt;}
.xf_c00311{left:141.360000pt;}
.xa1_c00311{left:143.280000pt;}
.x4d_c00311{left:145.681333pt;}
.x18_c00311{left:146.580000pt;}
.x7c_c00311{left:148.080000pt;}
.x58_c00311{left:149.041333pt;}
.xb4_c00311{left:150.729547pt;}
.x66_c00311{left:152.880000pt;}
.x2c_c00311{left:154.558667pt;}
.xbf_c00311{left:155.760000pt;}
.x83_c00311{left:157.920000pt;}
.x37_c00311{left:158.970667pt;}
.xbe_c00311{left:162.480000pt;}
.x22_c00311{left:165.688000pt;}
.x8a_c00311{left:168.240000pt;}
.xc4_c00311{left:169.141333pt;}
.x3d_c00311{left:171.121333pt;}
.x38_c00311{left:172.180000pt;}
.x44_c00311{left:176.161333pt;}
.x67_c00311{left:177.120000pt;}
.x6c_c00311{left:178.080000pt;}
.x2_c00311{left:180.240000pt;}
.x19_c00311{left:183.309333pt;}
.x7d_c00311{left:184.800000pt;}
.x5_c00311{left:186.477913pt;}
.x23_c00311{left:188.502667pt;}
.x87_c00311{left:191.280000pt;}
.x6d_c00311{left:192.960000pt;}
.xb5_c00311{left:193.920000pt;}
.xc_c00311{left:195.997333pt;}
.x99_c00311{left:199.680000pt;}
.x1_c00311{left:202.320000pt;}
.x4e_c00311{left:203.521333pt;}
.xad_c00311{left:204.833333pt;}
.x45_c00311{left:206.161333pt;}
.xb7_c00311{left:207.120000pt;}
.x1a_c00311{left:208.738667pt;}
.x2d_c00311{left:210.718667pt;}
.x39_c00311{left:211.780000pt;}
.x60_c00311{left:212.880000pt;}
.x68_c00311{left:214.080000pt;}
.x59_c00311{left:215.521333pt;}
.x9a_c00311{left:216.480000pt;}
.x10_c00311{left:220.320000pt;}
.xd_c00311{left:224.489333pt;}
.x9_c00311{left:227.060000pt;}
.xb8_c00311{left:228.720000pt;}
.x61_c00311{left:230.880000pt;}
.x95_c00311{left:232.800000pt;}
.xa2_c00311{left:234.000000pt;}
.x71_c00311{left:236.400000pt;}
.x24_c00311{left:241.529333pt;}
.x2e_c00311{left:244.558667pt;}
.x5a_c00311{left:246.001333pt;}
.x4f_c00311{left:250.321333pt;}
.x46_c00311{left:253.681333pt;}
.xb6_c00311{left:255.360000pt;}
.x6e_c00311{left:256.560000pt;}
.x5b_c00311{left:258.721333pt;}
.x84_c00311{left:261.600000pt;}
.x96_c00311{left:263.040000pt;}
.x72_c00311{left:264.480000pt;}
.x25_c00311{left:266.260000pt;}
.x47_c00311{left:268.801333pt;}
.x97_c00311{left:272.400000pt;}
.x88_c00311{left:274.320000pt;}
.x2f_c00311{left:275.998667pt;}
.x6_c00311{left:277.697269pt;}
.x5c_c00311{left:279.361333pt;}
.xae_c00311{left:281.634667pt;}
.x8b_c00311{left:286.320000pt;}
.x3e_c00311{left:288.241333pt;}
.xa_c00311{left:290.976000pt;}
.x1b_c00311{left:292.248000pt;}
.x73_c00311{left:293.760000pt;}
.x62_c00311{left:294.960000pt;}
.x30_c00311{left:297.598667pt;}
.xa3_c00311{left:300.000000pt;}
.x7e_c00311{left:303.840000pt;}
.x11_c00311{left:305.280000pt;}
.x48_c00311{left:307.921333pt;}
.x3f_c00311{left:308.881333pt;}
.x5d_c00311{left:311.041333pt;}
.x50_c00311{left:312.481333pt;}
.x1c_c00311{left:314.081333pt;}
.xa4_c00311{left:315.120000pt;}
.x9b_c00311{left:316.800000pt;}
.x74_c00311{left:320.880000pt;}
.xe_c00311{left:324.414667pt;}
.x90_c00311{left:325.920000pt;}
.x31_c00311{left:328.318667pt;}
.x6f_c00311{left:332.160000pt;}
.xa5_c00311{left:333.360000pt;}
.x12_c00311{left:334.560000pt;}
.x26_c00311{left:336.336000pt;}
.x5e_c00311{left:337.681333pt;}
.x9c_c00311{left:341.040000pt;}
.x51_c00311{left:342.241333pt;}
.xbb_c00311{left:348.000000pt;}
.x40_c00311{left:349.441333pt;}
.xa6_c00311{left:351.120000pt;}
.x49_c00311{left:352.081333pt;}
.x76_c00311{left:353.520000pt;}
.x32_c00311{left:355.438667pt;}
.x8c_c00311{left:357.120000pt;}
.x63_c00311{left:358.560000pt;}
.x1d_c00311{left:360.161333pt;}
.x3a_c00311{left:364.186667pt;}
.xaf_c00311{left:365.474667pt;}
.x7f_c00311{left:368.400000pt;}
.x27_c00311{left:371.829333pt;}
.x33_c00311{left:373.438667pt;}
.x91_c00311{left:376.800000pt;}
.xa7_c00311{left:377.760000pt;}
.x77_c00311{left:380.400000pt;}
.x52_c00311{left:384.481333pt;}
.x98_c00311{left:386.160000pt;}
.x28_c00311{left:388.413333pt;}
.x34_c00311{left:389.998667pt;}
.x4a_c00311{left:392.641333pt;}
.x80_c00311{left:394.800000pt;}
.x13_c00311{left:396.240000pt;}
.xb0_c00311{left:400.036000pt;}
.x53_c00311{left:403.681333pt;}
.x9d_c00311{left:407.760000pt;}
.x69_c00311{left:408.720000pt;}
.xbc_c00311{left:411.840000pt;}
.x4b_c00311{left:414.241333pt;}
.xa8_c00311{left:416.640000pt;}
.x1e_c00311{left:418.480000pt;}
.x14_c00311{left:420.960000pt;}
.xb1_c00311{left:422.497333pt;}
.x9e_c00311{left:424.080000pt;}
.x29_c00311{left:425.602667pt;}
.x54_c00311{left:426.961333pt;}
.x70_c00311{left:428.880000pt;}
.xc0_c00311{left:429.840000pt;}
.x35_c00311{left:431.038667pt;}
.x8d_c00311{left:432.240000pt;}
.x41_c00311{left:436.801333pt;}
.x8e_c00311{left:437.760000pt;}
.x1f_c00311{left:440.797333pt;}
.xa9_c00311{left:443.040000pt;}
.x2a_c00311{left:452.006667pt;}
.xc1_c00311{left:453.360000pt;}
.x78_c00311{left:456.240000pt;}
.x15_c00311{left:457.440000pt;}
.x42_c00311{left:460.081333pt;}
.x3b_c00311{left:461.609333pt;}
.x8f_c00311{left:463.440000pt;}
.x20_c00311{left:466.717333pt;}
.x64_c00311{left:469.200000pt;}
.x4c_c00311{left:471.361333pt;}
.x79_c00311{left:473.760000pt;}
.x6a_c00311{left:482.160000pt;}
.xb9_c00311{left:483.600000pt;}
.x55_c00311{left:484.801333pt;}
.xc2_c00311{left:487.440000pt;}
.x16_c00311{left:491.040000pt;}
.x5f_c00311{left:494.161333pt;}
.x92_c00311{left:495.600000pt;}
.xc5_c00311{left:496.729333pt;}
.x17_c00311{left:500.160000pt;}
.x2b_c00311{left:503.122667pt;}
.xaa_c00311{left:504.240000pt;}
.x7a_c00311{left:505.440000pt;}
.x85_c00311{left:508.800000pt;}
.x56_c00311{left:510.481333pt;}
.x9f_c00311{left:511.920000pt;}
.xbd_c00311{left:514.560000pt;}
.x43_c00311{left:517.681333pt;}
.x89_c00311{left:519.120000pt;}
.xab_c00311{left:522.720000pt;}
.x81_c00311{left:523.680000pt;}
.x3c_c00311{left:525.669333pt;}
.xa0_c00311{left:527.760000pt;}
.x21_c00311{left:530.322667pt;}
.xb2_c00311{left:531.934667pt;}
.xc6_c00311{left:534.432000pt;}
.x93_c00311{left:536.400000pt;}
.x86_c00311{left:538.320000pt;}
.x36_c00311{left:539.518667pt;}
.x57_c00311{left:541.441333pt;}
.x6b_c00311{left:542.640000pt;}
.x65_c00311{left:546.480000pt;}
.xba_c00311{left:558.720000pt;}
.xc3_c00311{left:563.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_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_4ab86c84425994a9e06b01c2.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;}
.m123_c00312{transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);}
.m15e_c00312{transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);}
.m154_c00312{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);}
.mca_c00312{transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102065,0.000000,0.000000,0.250000,0,0);}
.m167_c00312{transform:matrix(0.108780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108780,0.000000,0.000000,0.250000,0,0);}
.m15a_c00312{transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);}
.m63_c00312{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);}
.m2f_c00312{transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137215,0.000000,0.000000,0.250000,0,0);}
.m86_c00312{transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);}
.m162_c00312{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);}
.m83_c00312{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);}
.m3f_c00312{transform:matrix(0.145620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145620,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{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);}
.md9_c00312{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m5d_c00312{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);}
.m87_c00312{transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{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);}
.m1f_c00312{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);}
.m7a_c00312{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);}
.m14f_c00312{transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{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);}
.m82_c00312{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);}
.m61_c00312{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m93_c00312{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);}
.mff_c00312{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);}
.m15_c00312{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m169_c00312{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);}
.m117_c00312{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);}
.m8e_c00312{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);}
.m44_c00312{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);}
.m2c_c00312{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);}
.mbf_c00312{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);}
.m9b_c00312{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{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);}
.m62_c00312{transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);}
.mcf_c00312{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);}
.m102_c00312{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);}
.m107_c00312{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);}
.m43_c00312{transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{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);}
.md5_c00312{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);}
.m91_c00312{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);}
.m3e_c00312{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_c00312{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);}
.ma8_c00312{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);}
.m29_c00312{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);}
.m9d_c00312{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);}
.m30_c00312{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);}
.m105_c00312{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);}
.m23_c00312{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);}
.mbd_c00312{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);}
.m100_c00312{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);}
.m75_c00312{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);}
.mb8_c00312{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);}
.m118_c00312{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);}
.m79_c00312{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);}
.m89_c00312{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);}
.m73_c00312{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);}
.m14_c00312{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);}
.m24_c00312{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);}
.m115_c00312{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);}
.m39_c00312{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);}
.m2e_c00312{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);}
.m106_c00312{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);}
.m22_c00312{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);}
.m168_c00312{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);}
.mfe_c00312{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);}
.m21_c00312{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);}
.m94_c00312{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);}
.m3c_c00312{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);}
.m130_c00312{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);}
.m5c_c00312{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);}
.m37_c00312{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);}
.m50_c00312{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);}
.m10_c00312{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);}
.m8b_c00312{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);}
.m33_c00312{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);}
.me2_c00312{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);}
.m28_c00312{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);}
.m64_c00312{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);}
.m27_c00312{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);}
.m77_c00312{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);}
.m131_c00312{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);}
.m17_c00312{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);}
.m16b_c00312{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);}
.me6_c00312{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);}
.m48_c00312{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);}
.m16_c00312{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);}
.m126_c00312{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);}
.m20_c00312{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);}
.mfb_c00312{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);}
.m148_c00312{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);}
.m7e_c00312{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);}
.mf0_c00312{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);}
.m12_c00312{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);}
.m92_c00312{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);}
.m96_c00312{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);}
.me9_c00312{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);}
.mb7_c00312{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);}
.m65_c00312{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m119_c00312{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);}
.m85_c00312{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);}
.m13e_c00312{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);}
.m7c_c00312{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);}
.mc3_c00312{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);}
.m13c_c00312{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);}
.m10d_c00312{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);}
.me5_c00312{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);}
.m166_c00312{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);}
.mfd_c00312{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);}
.mcd_c00312{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);}
.m12f_c00312{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);}
.mc0_c00312{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);}
.m26_c00312{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);}
.m84_c00312{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);}
.m70_c00312{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);}
.mc5_c00312{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);}
.m4a_c00312{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);}
.m7b_c00312{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);}
.m67_c00312{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);}
.m1d_c00312{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);}
.m52_c00312{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);}
.m98_c00312{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);}
.mfa_c00312{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);}
.mce_c00312{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);}
.m47_c00312{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);}
.me0_c00312{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);}
.md0_c00312{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);}
.m13_c00312{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);}
.mdc_c00312{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);}
.m140_c00312{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);}
.m74_c00312{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);}
.m149_c00312{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);}
.mfc_c00312{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);}
.m1e_c00312{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);}
.m15b_c00312{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);}
.me3_c00312{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);}
.mda_c00312{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);}
.m129_c00312{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);}
.m13a_c00312{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);}
.m12a_c00312{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);}
.m1b_c00312{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);}
.m2b_c00312{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);}
.m4c_c00312{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);}
.m5b_c00312{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);}
.m25_c00312{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);}
.m81_c00312{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);}
.me4_c00312{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);}
.m103_c00312{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);}
.m13b_c00312{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);}
.m9c_c00312{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);}
.m146_c00312{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);}
.mcc_c00312{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);}
.m132_c00312{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);}
.mc4_c00312{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);}
.m41_c00312{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);}
.mc_c00312{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);}
.m8f_c00312{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);}
.m3a_c00312{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);}
.m110_c00312{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);}
.m101_c00312{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);}
.mc1_c00312{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);}
.mf8_c00312{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);}
.m76_c00312{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);}
.ma5_c00312{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);}
.mf9_c00312{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);}
.mb2_c00312{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);}
.m16e_c00312{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);}
.m80_c00312{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);}
.m90_c00312{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);}
.md8_c00312{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);}
.m147_c00312{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);}
.mbe_c00312{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);}
.m113_c00312{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);}
.m3b_c00312{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_c00312{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);}
.m58_c00312{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);}
.m112_c00312{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);}
.m51_c00312{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);}
.mb5_c00312{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);}
.m141_c00312{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);}
.m68_c00312{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);}
.md6_c00312{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);}
.m13d_c00312{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);}
.m72_c00312{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);}
.ma1_c00312{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);}
.md2_c00312{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);}
.ma6_c00312{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);}
.m5f_c00312{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);}
.mee_c00312{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);}
.m19_c00312{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);}
.m55_c00312{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);}
.mc9_c00312{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);}
.mf4_c00312{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);}
.me_c00312{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);}
.m8a_c00312{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);}
.ma4_c00312{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);}
.m14b_c00312{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);}
.m9e_c00312{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);}
.m11_c00312{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);}
.m95_c00312{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);}
.md7_c00312{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);}
.mc7_c00312{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);}
.m2d_c00312{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);}
.m13f_c00312{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);}
.mdd_c00312{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);}
.maf_c00312{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);}
.m16f_c00312{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);}
.m136_c00312{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);}
.m7d_c00312{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);}
.maa_c00312{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);}
.mf_c00312{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);}
.mc6_c00312{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);}
.m97_c00312{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);}
.m9a_c00312{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);}
.md3_c00312{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);}
.m133_c00312{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);}
.m31_c00312{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);}
.m111_c00312{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);}
.md1_c00312{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);}
.m45_c00312{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);}
.m142_c00312{transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);}
.m71_c00312{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);}
.m10f_c00312{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);}
.mde_c00312{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);}
.me1_c00312{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);}
.m10c_c00312{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);}
.m14e_c00312{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);}
.m134_c00312{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);}
.ma9_c00312{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);}
.ma7_c00312{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);}
.mab_c00312{transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{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);}
.m14a_c00312{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);}
.m60_c00312{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);}
.mb4_c00312{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);}
.mb6_c00312{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);}
.mba_c00312{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);}
.mbb_c00312{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);}
.m4d_c00312{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);}
.m108_c00312{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);}
.m42_c00312{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);}
.m57_c00312{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);}
.m127_c00312{transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{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);}
.m104_c00312{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);}
.m34_c00312{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.m10e_c00312{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);}
.mf2_c00312{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);}
.m15f_c00312{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);}
.m138_c00312{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);}
.m9f_c00312{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);}
.m155_c00312{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);}
.m12b_c00312{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.mec_c00312{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);}
.m116_c00312{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);}
.m14c_c00312{transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);}
.m14d_c00312{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);}
.m99_c00312{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);}
.m35_c00312{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);}
.m137_c00312{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m150_c00312{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);}
.m10a_c00312{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{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);}
.m49_c00312{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);}
.m135_c00312{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);}
.m5e_c00312{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m16a_c00312{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);}
.m6d_c00312{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);}
.m114_c00312{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m11d_c00312{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);}
.mea_c00312{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);}
.mb3_c00312{transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{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);}
.mac_c00312{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);}
.m6f_c00312{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);}
.mad_c00312{transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);}
.md4_c00312{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);}
.m46_c00312{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);}
.ma3_c00312{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);}
.m2a_c00312{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);}
.m8d_c00312{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);}
.m125_c00312{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);}
.m124_c00312{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);}
.m78_c00312{transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);}
.mc8_c00312{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m122_c00312{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.mf7_c00312{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);}
.m164_c00312{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);}
.m59_c00312{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m159_c00312{transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242960,0.000000,0.000000,0.250000,0,0);}
.mdb_c00312{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.mb1_c00312{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);}
.m12c_c00312{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);}
.mf1_c00312{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m165_c00312{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);}
.ma2_c00312{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m160_c00312{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);}
.m143_c00312{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);}
.me8_c00312{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);}
.mbc_c00312{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);}
.m6e_c00312{transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{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);}
.mef_c00312{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m15c_c00312{transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);}
.m128_c00312{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m139_c00312{transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);}
.m109_c00312{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);}
.med_c00312{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);}
.m10b_c00312{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);}
.m66_c00312{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.m88_c00312{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);}
.m4f_c00312{transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261185,0.000000,0.000000,0.250000,0,0);}
.m152_c00312{transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);}
.m156_c00312{transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);}
.mcb_c00312{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);}
.m40_c00312{transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268705,0.000000,0.000000,0.250000,0,0);}
.m15d_c00312{transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.273185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273185,0.000000,0.000000,0.250000,0,0);}
.m145_c00312{transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);}
.mc2_c00312{transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);}
.mf5_c00312{transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.m56_c00312{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.m11c_c00312{transform:matrix(0.278085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278085,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);}
.m16d_c00312{transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282350,0.000000,0.000000,0.250000,0,0);}
.m121_c00312{transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285760,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289940,0.000000,0.000000,0.250000,0,0);}
.m5a_c00312{transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);}
.m120_c00312{transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293120,0.000000,0.000000,0.250000,0,0);}
.m158_c00312{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.m6c_c00312{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);}
.m12e_c00312{transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);}
.m12d_c00312{transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);}
.mf3_c00312{transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00312{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);}
.m163_c00312{transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314950,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326150,0.000000,0.000000,0.250000,0,0);}
.m16c_c00312{transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326650,0.000000,0.000000,0.250000,0,0);}
.m170_c00312{transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330215,0.000000,0.000000,0.250000,0,0);}
.m153_c00312{transform:matrix(0.333135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333135,0.000000,0.000000,0.250000,0,0);}
.m157_c00312{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);}
.ma0_c00312{transform:matrix(0.341115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341115,0.000000,0.000000,0.250000,0,0);}
.mb9_c00312{transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341605,0.000000,0.000000,0.250000,0,0);}
.me7_c00312{transform:matrix(0.350770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350770,0.000000,0.000000,0.250000,0,0);}
.meb_c00312{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377470,0.000000,0.000000,0.250000,0,0);}
.m144_c00312{transform:matrix(0.379460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379460,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.392445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392445,0.000000,0.000000,0.250000,0,0);}
.mf6_c00312{transform:matrix(0.401345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401345,0.000000,0.000000,0.250000,0,0);}
.m11a_c00312{transform:matrix(0.405590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405590,0.000000,0.000000,0.250000,0,0);}
.m161_c00312{transform:matrix(0.453310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453310,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.458020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458020,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.526375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526375,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.573205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573205,0.000000,0.000000,0.250000,0,0);}
.m11f_c00312{transform:matrix(0.598125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598125,0.000000,0.000000,0.250000,0,0);}
.m151_c00312{transform:matrix(0.790775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790775,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.856780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856780,0.000000,0.000000,0.250000,0,0);}
.m11e_c00312{transform:matrix(0.863335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.863335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.863335,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.956165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.956165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.956165,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(1.037505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037505,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(1.124510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.124510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.124510,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(1.181745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.181745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.181745,0.000000,0.000000,0.250000,0,0);}
.m11b_c00312{transform:matrix(1.477650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.477650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.477650,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(1.904115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.904115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.904115,0.000000,0.000000,0.250000,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;}
._0_c00312{width:34.021503px;}
.fc0_c00312{color:transparent;}
.fs17_c00312{font-size:24.150000px;}
.fse_c00312{font-size:25.200000px;}
.fs18_c00312{font-size:27.300000px;}
.fs16_c00312{font-size:28.350000px;}
.fs15_c00312{font-size:30.450000px;}
.fs19_c00312{font-size:33.600000px;}
.fs1b_c00312{font-size:35.700000px;}
.fs13_c00312{font-size:36.750000px;}
.fs1c_c00312{font-size:38.850000px;}
.fs1f_c00312{font-size:39.900000px;}
.fs1a_c00312{font-size:44.100000px;}
.fsf_c00312{font-size:45.150000px;}
.fs0_c00312{font-size:46.200000px;}
.fsa_c00312{font-size:51.450000px;}
.fs11_c00312{font-size:52.500000px;}
.fsb_c00312{font-size:55.650000px;}
.fs12_c00312{font-size:58.800000px;}
.fs9_c00312{font-size:60.900000px;}
.fs5_c00312{font-size:61.950000px;}
.fs10_c00312{font-size:63.000000px;}
.fs6_c00312{font-size:66.150000px;}
.fs7_c00312{font-size:67.200000px;}
.fs1_c00312{font-size:68.250000px;}
.fs8_c00312{font-size:69.300000px;}
.fs4_c00312{font-size:70.350000px;}
.fs3_c00312{font-size:71.400000px;}
.fs2_c00312{font-size:72.450000px;}
.fsd_c00312{font-size:76.650000px;}
.fs20_c00312{font-size:89.250000px;}
.fsc_c00312{font-size:94.500000px;}
.fs1d_c00312{font-size:106.050000px;}
.fs14_c00312{font-size:110.250000px;}
.fs1e_c00312{font-size:165.900000px;}
.y0_c00312{bottom:0.000000px;}
.y1c_c00312{bottom:144.469500px;}
.y1a_c00312{bottom:166.024500px;}
.y1b_c00312{bottom:166.338000px;}
.y24_c00312{bottom:184.116000px;}
.y19_c00312{bottom:184.452000px;}
.y23_c00312{bottom:234.850500px;}
.y22_c00312{bottom:256.593000px;}
.y18_c00312{bottom:280.351500px;}
.y17_c00312{bottom:303.058500px;}
.y16_c00312{bottom:325.822500px;}
.y15_c00312{bottom:349.216500px;}
.y14_c00312{bottom:371.916000px;}
.y13_c00312{bottom:394.767000px;}
.y12_c00312{bottom:417.813000px;}
.y11_c00312{bottom:440.517000px;}
.y10_c00312{bottom:463.204500px;}
.yf_c00312{bottom:486.424500px;}
.ye_c00312{bottom:509.644500px;}
.yd_c00312{bottom:532.324500px;}
.yc_c00312{bottom:554.973000px;}
.y21_c00312{bottom:577.332000px;}
.y20_c00312{bottom:622.464000px;}
.y3a_c00312{bottom:623.160000px;}
.y39_c00312{bottom:636.930000px;}
.y38_c00312{bottom:640.440000px;}
.yb_c00312{bottom:646.170000px;}
.y37_c00312{bottom:652.590000px;}
.y35_c00312{bottom:658.260000px;}
.ya_c00312{bottom:668.818500px;}
.y36_c00312{bottom:685.530000px;}
.y9_c00312{bottom:691.498500px;}
.y34_c00312{bottom:708.210000px;}
.y33_c00312{bottom:710.910000px;}
.y8_c00312{bottom:713.790000px;}
.y7_c00312{bottom:737.068500px;}
.y30_c00312{bottom:740.070000px;}
.y31_c00312{bottom:742.230000px;}
.y32_c00312{bottom:744.660000px;}
.y2f_c00312{bottom:749.520000px;}
.y28_c00312{bottom:751.680000px;}
.y6_c00312{bottom:760.018500px;}
.y2e_c00312{bottom:762.750000px;}
.y29_c00312{bottom:779.760000px;}
.y5_c00312{bottom:783.000000px;}
.y2d_c00312{bottom:783.270000px;}
.y2c_c00312{bottom:788.940000px;}
.y2b_c00312{bottom:789.750000px;}
.y2a_c00312{bottom:790.830000px;}
.y4_c00312{bottom:805.648500px;}
.y26_c00312{bottom:820.800000px;}
.y3_c00312{bottom:828.535500px;}
.y27_c00312{bottom:830.790000px;}
.y1f_c00312{bottom:867.240000px;}
.y1e_c00312{bottom:873.720000px;}
.y2_c00312{bottom:874.869000px;}
.y1d_c00312{bottom:913.680000px;}
.y25_c00312{bottom:915.030000px;}
.y1_c00312{bottom:938.727000px;}
.h19_c00312{height:24.150000px;}
.h10_c00312{height:25.200000px;}
.h1a_c00312{height:27.300000px;}
.h18_c00312{height:28.350000px;}
.h17_c00312{height:30.450000px;}
.h1b_c00312{height:33.600000px;}
.h1d_c00312{height:35.700000px;}
.h15_c00312{height:36.750000px;}
.h1e_c00312{height:38.850000px;}
.h21_c00312{height:39.900000px;}
.h1c_c00312{height:44.100000px;}
.h11_c00312{height:45.150000px;}
.h2_c00312{height:46.200000px;}
.hc_c00312{height:51.450000px;}
.h13_c00312{height:52.500000px;}
.hd_c00312{height:55.650000px;}
.h14_c00312{height:58.800000px;}
.hb_c00312{height:60.900000px;}
.h7_c00312{height:61.950000px;}
.h12_c00312{height:63.000000px;}
.h8_c00312{height:66.150000px;}
.h9_c00312{height:67.200000px;}
.h3_c00312{height:68.250000px;}
.ha_c00312{height:69.300000px;}
.h6_c00312{height:70.350000px;}
.h5_c00312{height:71.400000px;}
.h4_c00312{height:72.450000px;}
.hf_c00312{height:76.650000px;}
.h22_c00312{height:89.250000px;}
.he_c00312{height:94.500000px;}
.h1f_c00312{height:106.050000px;}
.h16_c00312{height:110.250000px;}
.h20_c00312{height:165.900000px;}
.h1_c00312{height:1005.000000px;}
.h0_c00312{height:1005.150000px;}
.w0_c00312{width:702.540000px;}
.w1_c00312{width:702.750000px;}
.x0_c00312{left:0.000000px;}
.x8e_c00312{left:72.900000px;}
.x3b_c00312{left:75.600000px;}
.x31_c00312{left:76.950000px;}
.xd_c00312{left:78.030000px;}
.x75_c00312{left:79.110000px;}
.x97_c00312{left:80.190000px;}
.xb0_c00312{left:81.270000px;}
.x9f_c00312{left:93.420000px;}
.xb8_c00312{left:96.390000px;}
.x55_c00312{left:100.710000px;}
.x9d_c00312{left:102.870000px;}
.xc1_c00312{left:109.620000px;}
.x20_c00312{left:112.050000px;}
.x15_c00312{left:114.750000px;}
.x45_c00312{left:116.100000px;}
.x3c_c00312{left:118.800000px;}
.x76_c00312{left:120.690000px;}
.xb1_c00312{left:124.470000px;}
.x7c_c00312{left:125.820000px;}
.x67_c00312{left:128.520000px;}
.x98_c00312{left:129.870000px;}
.x8b_c00312{left:130.950000px;}
.xe_c00312{left:134.190000px;}
.x3d_c00312{left:136.620000px;}
.xa6_c00312{left:137.970000px;}
.x56_c00312{left:139.320000px;}
.x6d_c00312{left:142.830000px;}
.x32_c00312{left:143.910000px;}
.x1_c00312{left:146.610000px;}
.x5e_c00312{left:147.960000px;}
.xa0_c00312{left:150.930000px;}
.x99_c00312{left:154.440000px;}
.x16_c00312{left:155.520000px;}
.xbd_c00312{left:158.220000px;}
.x21_c00312{left:159.840000px;}
.xf_c00312{left:161.730000px;}
.x7d_c00312{left:163.890000px;}
.x86_c00312{left:166.590000px;}
.x33_c00312{left:168.210000px;}
.x57_c00312{left:169.830000px;}
.x29_c00312{left:174.960000px;}
.x8f_c00312{left:178.740000px;}
.x5f_c00312{left:180.630000px;}
.xa1_c00312{left:181.980000px;}
.x4d_c00312{left:185.490000px;}
.x3e_c00312{left:192.240000px;}
.x58_c00312{left:195.750000px;}
.x17_c00312{left:196.830000px;}
.xc2_c00312{left:198.720000px;}
.x6e_c00312{left:200.070000px;}
.x34_c00312{left:201.960000px;}
.x7_c00312{left:205.740000px;}
.x8c_c00312{left:211.140000px;}
.xbe_c00312{left:212.220000px;}
.x4e_c00312{left:213.570000px;}
.x22_c00312{left:215.460000px;}
.x87_c00312{left:218.160000px;}
.x18_c00312{left:220.590000px;}
.x7e_c00312{left:222.210000px;}
.x68_c00312{left:223.290000px;}
.x8_c00312{left:225.990000px;}
.x90_c00312{left:227.880000px;}
.xb2_c00312{left:230.040000px;}
.x3f_c00312{left:231.120000px;}
.xa7_c00312{left:232.740000px;}
.xb9_c00312{left:234.360000px;}
.x35_c00312{left:237.870000px;}
.x6f_c00312{left:240.030000px;}
.xbf_c00312{left:241.380000px;}
.x2a_c00312{left:243.810000px;}
.x46_c00312{left:245.430000px;}
.x8d_c00312{left:248.400000px;}
.x88_c00312{left:250.560000px;}
.xba_c00312{left:252.180000px;}
.x60_c00312{left:255.420000px;}
.x23_c00312{left:258.120000px;}
.x9a_c00312{left:259.470000px;}
.x91_c00312{left:264.870000px;}
.x40_c00312{left:266.490000px;}
.x4f_c00312{left:268.650000px;}
.xa8_c00312{left:269.730000px;}
.x2b_c00312{left:270.810000px;}
.x2_c00312{left:272.970000px;}
.x9_c00312{left:277.560000px;}
.x36_c00312{left:278.910000px;}
.x7f_c00312{left:282.690000px;}
.x61_c00312{left:284.850000px;}
.x10_c00312{left:285.930000px;}
.xa2_c00312{left:288.630000px;}
.x59_c00312{left:290.250000px;}
.xae_c00312{left:292.950000px;}
.x19_c00312{left:295.380000px;}
.x9e_c00312{left:299.700000px;}
.x3_c00312{left:306.180000px;}
.x41_c00312{left:307.800000px;}
.x69_c00312{left:312.120000px;}
.x11_c00312{left:314.280000px;}
.x1a_c00312{left:315.360000px;}
.xa_c00312{left:317.790000px;}
.xbb_c00312{left:320.220000px;}
.x47_c00312{left:321.840000px;}
.xc3_c00312{left:323.730000px;}
.x77_c00312{left:325.080000px;}
.x37_c00312{left:326.970000px;}
.x50_c00312{left:331.290000px;}
.x80_c00312{left:332.370000px;}
.x4_c00312{left:335.340000px;}
.x70_c00312{left:338.310000px;}
.x12_c00312{left:340.470000px;}
.xa9_c00312{left:343.710000px;}
.xb_c00312{left:345.060000px;}
.x1b_c00312{left:346.950000px;}
.x89_c00312{left:349.380000px;}
.x5a_c00312{left:350.730000px;}
.x62_c00312{left:353.430000px;}
.x51_c00312{left:357.210000px;}
.x2c_c00312{left:359.640000px;}
.x78_c00312{left:361.800000px;}
.x81_c00312{left:362.880000px;}
.x92_c00312{left:364.230000px;}
.xaa_c00312{left:366.930000px;}
.x38_c00312{left:368.820000px;}
.x1c_c00312{left:370.980000px;}
.x24_c00312{left:375.300000px;}
.x63_c00312{left:377.190000px;}
.xb3_c00312{left:379.350000px;}
.xbc_c00312{left:380.970000px;}
.x71_c00312{left:384.480000px;}
.x2d_c00312{left:388.800000px;}
.x82_c00312{left:390.690000px;}
.x52_c00312{left:397.710000px;}
.x25_c00312{left:399.330000px;}
.x93_c00312{left:401.220000px;}
.x5_c00312{left:402.300000px;}
.x48_c00312{left:405.000000px;}
.x83_c00312{left:408.780000px;}
.x1d_c00312{left:409.860000px;}
.x6a_c00312{left:411.210000px;}
.x64_c00312{left:414.990000px;}
.x9b_c00312{left:417.150000px;}
.xaf_c00312{left:419.580000px;}
.x5b_c00312{left:420.660000px;}
.x13_c00312{left:421.740000px;}
.x26_c00312{left:424.170000px;}
.x49_c00312{left:426.060000px;}
.x39_c00312{left:427.950000px;}
.x42_c00312{left:430.920000px;}
.x84_c00312{left:433.350000px;}
.x94_c00312{left:436.320000px;}
.x2e_c00312{left:437.940000px;}
.x6b_c00312{left:439.560000px;}
.x65_c00312{left:443.340000px;}
.x79_c00312{left:444.960000px;}
.x6_c00312{left:453.060000px;}
.x72_c00312{left:454.950000px;}
.x5c_c00312{left:456.840000px;}
.xc0_c00312{left:458.730000px;}
.x4a_c00312{left:460.350000px;}
.x53_c00312{left:463.320000px;}
.x43_c00312{left:464.940000px;}
.x1e_c00312{left:466.290000px;}
.xab_c00312{left:468.990000px;}
.x27_c00312{left:471.690000px;}
.xa3_c00312{left:473.040000px;}
.x95_c00312{left:474.930000px;}
.x2f_c00312{left:480.330000px;}
.x7a_c00312{left:482.760000px;}
.x73_c00312{left:483.840000px;}
.x3a_c00312{left:487.080000px;}
.xac_c00312{left:489.240000px;}
.x9c_c00312{left:490.590000px;}
.x5d_c00312{left:495.180000px;}
.xa4_c00312{left:497.070000px;}
.x54_c00312{left:499.770000px;}
.x4b_c00312{left:501.120000px;}
.x96_c00312{left:503.280000px;}
.xc_c00312{left:504.900000px;}
.x66_c00312{left:506.790000px;}
.x1f_c00312{left:511.110000px;}
.x28_c00312{left:512.460000px;}
.x85_c00312{left:517.590000px;}
.x8a_c00312{left:520.290000px;}
.xad_c00312{left:523.260000px;}
.x7b_c00312{left:525.690000px;}
.x44_c00312{left:528.930000px;}
.x14_c00312{left:534.600000px;}
.x6c_c00312{left:537.300000px;}
.x74_c00312{left:539.460000px;}
.x4c_c00312{left:544.590000px;}
.x30_c00312{left:548.100000px;}
.xa5_c00312{left:549.450000px;}
.xc4_c00312{left:565.650000px;}
.xb5_c00312{left:579.420000px;}
.xb4_c00312{left:581.580000px;}
.xcd_c00312{left:583.470000px;}
.xcb_c00312{left:585.360000px;}
.xb6_c00312{left:594.270000px;}
.xb7_c00312{left:595.620000px;}
.xca_c00312{left:596.700000px;}
.xc6_c00312{left:597.780000px;}
.xc5_c00312{left:599.940000px;}
.xc7_c00312{left:601.290000px;}
.xc8_c00312{left:602.640000px;}
.xc9_c00312{left:604.530000px;}
.xcc_c00312{left:605.610000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
._0_c00312{width:30.241336pt;}
.fs17_c00312{font-size:21.466667pt;}
.fse_c00312{font-size:22.400000pt;}
.fs18_c00312{font-size:24.266667pt;}
.fs16_c00312{font-size:25.200000pt;}
.fs15_c00312{font-size:27.066667pt;}
.fs19_c00312{font-size:29.866667pt;}
.fs1b_c00312{font-size:31.733333pt;}
.fs13_c00312{font-size:32.666667pt;}
.fs1c_c00312{font-size:34.533333pt;}
.fs1f_c00312{font-size:35.466667pt;}
.fs1a_c00312{font-size:39.200000pt;}
.fsf_c00312{font-size:40.133333pt;}
.fs0_c00312{font-size:41.066667pt;}
.fsa_c00312{font-size:45.733333pt;}
.fs11_c00312{font-size:46.666667pt;}
.fsb_c00312{font-size:49.466667pt;}
.fs12_c00312{font-size:52.266667pt;}
.fs9_c00312{font-size:54.133333pt;}
.fs5_c00312{font-size:55.066667pt;}
.fs10_c00312{font-size:56.000000pt;}
.fs6_c00312{font-size:58.800000pt;}
.fs7_c00312{font-size:59.733333pt;}
.fs1_c00312{font-size:60.666667pt;}
.fs8_c00312{font-size:61.600000pt;}
.fs4_c00312{font-size:62.533333pt;}
.fs3_c00312{font-size:63.466667pt;}
.fs2_c00312{font-size:64.400000pt;}
.fsd_c00312{font-size:68.133333pt;}
.fs20_c00312{font-size:79.333333pt;}
.fsc_c00312{font-size:84.000000pt;}
.fs1d_c00312{font-size:94.266667pt;}
.fs14_c00312{font-size:98.000000pt;}
.fs1e_c00312{font-size:147.466667pt;}
.y0_c00312{bottom:0.000000pt;}
.y1c_c00312{bottom:128.417333pt;}
.y1a_c00312{bottom:147.577333pt;}
.y1b_c00312{bottom:147.856000pt;}
.y24_c00312{bottom:163.658667pt;}
.y19_c00312{bottom:163.957333pt;}
.y23_c00312{bottom:208.756000pt;}
.y22_c00312{bottom:228.082667pt;}
.y18_c00312{bottom:249.201333pt;}
.y17_c00312{bottom:269.385333pt;}
.y16_c00312{bottom:289.620000pt;}
.y15_c00312{bottom:310.414667pt;}
.y14_c00312{bottom:330.592000pt;}
.y13_c00312{bottom:350.904000pt;}
.y12_c00312{bottom:371.389333pt;}
.y11_c00312{bottom:391.570667pt;}
.y10_c00312{bottom:411.737333pt;}
.yf_c00312{bottom:432.377333pt;}
.ye_c00312{bottom:453.017333pt;}
.yd_c00312{bottom:473.177333pt;}
.yc_c00312{bottom:493.309333pt;}
.y21_c00312{bottom:513.184000pt;}
.y20_c00312{bottom:553.301333pt;}
.y3a_c00312{bottom:553.920000pt;}
.y39_c00312{bottom:566.160000pt;}
.y38_c00312{bottom:569.280000pt;}
.yb_c00312{bottom:574.373333pt;}
.y37_c00312{bottom:580.080000pt;}
.y35_c00312{bottom:585.120000pt;}
.ya_c00312{bottom:594.505333pt;}
.y36_c00312{bottom:609.360000pt;}
.y9_c00312{bottom:614.665333pt;}
.y34_c00312{bottom:629.520000pt;}
.y33_c00312{bottom:631.920000pt;}
.y8_c00312{bottom:634.480000pt;}
.y7_c00312{bottom:655.172000pt;}
.y30_c00312{bottom:657.840000pt;}
.y31_c00312{bottom:659.760000pt;}
.y32_c00312{bottom:661.920000pt;}
.y2f_c00312{bottom:666.240000pt;}
.y28_c00312{bottom:668.160000pt;}
.y6_c00312{bottom:675.572000pt;}
.y2e_c00312{bottom:678.000000pt;}
.y29_c00312{bottom:693.120000pt;}
.y5_c00312{bottom:696.000000pt;}
.y2d_c00312{bottom:696.240000pt;}
.y2c_c00312{bottom:701.280000pt;}
.y2b_c00312{bottom:702.000000pt;}
.y2a_c00312{bottom:702.960000pt;}
.y4_c00312{bottom:716.132000pt;}
.y26_c00312{bottom:729.600000pt;}
.y3_c00312{bottom:736.476000pt;}
.y27_c00312{bottom:738.480000pt;}
.y1f_c00312{bottom:770.880000pt;}
.y1e_c00312{bottom:776.640000pt;}
.y2_c00312{bottom:777.661333pt;}
.y1d_c00312{bottom:812.160000pt;}
.y25_c00312{bottom:813.360000pt;}
.y1_c00312{bottom:834.424000pt;}
.h19_c00312{height:21.466667pt;}
.h10_c00312{height:22.400000pt;}
.h1a_c00312{height:24.266667pt;}
.h18_c00312{height:25.200000pt;}
.h17_c00312{height:27.066667pt;}
.h1b_c00312{height:29.866667pt;}
.h1d_c00312{height:31.733333pt;}
.h15_c00312{height:32.666667pt;}
.h1e_c00312{height:34.533333pt;}
.h21_c00312{height:35.466667pt;}
.h1c_c00312{height:39.200000pt;}
.h11_c00312{height:40.133333pt;}
.h2_c00312{height:41.066667pt;}
.hc_c00312{height:45.733333pt;}
.h13_c00312{height:46.666667pt;}
.hd_c00312{height:49.466667pt;}
.h14_c00312{height:52.266667pt;}
.hb_c00312{height:54.133333pt;}
.h7_c00312{height:55.066667pt;}
.h12_c00312{height:56.000000pt;}
.h8_c00312{height:58.800000pt;}
.h9_c00312{height:59.733333pt;}
.h3_c00312{height:60.666667pt;}
.ha_c00312{height:61.600000pt;}
.h6_c00312{height:62.533333pt;}
.h5_c00312{height:63.466667pt;}
.h4_c00312{height:64.400000pt;}
.hf_c00312{height:68.133333pt;}
.h22_c00312{height:79.333333pt;}
.he_c00312{height:84.000000pt;}
.h1f_c00312{height:94.266667pt;}
.h16_c00312{height:98.000000pt;}
.h20_c00312{height:147.466667pt;}
.h1_c00312{height:893.333333pt;}
.h0_c00312{height:893.466667pt;}
.w0_c00312{width:624.480000pt;}
.w1_c00312{width:624.666667pt;}
.x0_c00312{left:0.000000pt;}
.x8e_c00312{left:64.800000pt;}
.x3b_c00312{left:67.200000pt;}
.x31_c00312{left:68.400000pt;}
.xd_c00312{left:69.360000pt;}
.x75_c00312{left:70.320000pt;}
.x97_c00312{left:71.280000pt;}
.xb0_c00312{left:72.240000pt;}
.x9f_c00312{left:83.040000pt;}
.xb8_c00312{left:85.680000pt;}
.x55_c00312{left:89.520000pt;}
.x9d_c00312{left:91.440000pt;}
.xc1_c00312{left:97.440000pt;}
.x20_c00312{left:99.600000pt;}
.x15_c00312{left:102.000000pt;}
.x45_c00312{left:103.200000pt;}
.x3c_c00312{left:105.600000pt;}
.x76_c00312{left:107.280000pt;}
.xb1_c00312{left:110.640000pt;}
.x7c_c00312{left:111.840000pt;}
.x67_c00312{left:114.240000pt;}
.x98_c00312{left:115.440000pt;}
.x8b_c00312{left:116.400000pt;}
.xe_c00312{left:119.280000pt;}
.x3d_c00312{left:121.440000pt;}
.xa6_c00312{left:122.640000pt;}
.x56_c00312{left:123.840000pt;}
.x6d_c00312{left:126.960000pt;}
.x32_c00312{left:127.920000pt;}
.x1_c00312{left:130.320000pt;}
.x5e_c00312{left:131.520000pt;}
.xa0_c00312{left:134.160000pt;}
.x99_c00312{left:137.280000pt;}
.x16_c00312{left:138.240000pt;}
.xbd_c00312{left:140.640000pt;}
.x21_c00312{left:142.080000pt;}
.xf_c00312{left:143.760000pt;}
.x7d_c00312{left:145.680000pt;}
.x86_c00312{left:148.080000pt;}
.x33_c00312{left:149.520000pt;}
.x57_c00312{left:150.960000pt;}
.x29_c00312{left:155.520000pt;}
.x8f_c00312{left:158.880000pt;}
.x5f_c00312{left:160.560000pt;}
.xa1_c00312{left:161.760000pt;}
.x4d_c00312{left:164.880000pt;}
.x3e_c00312{left:170.880000pt;}
.x58_c00312{left:174.000000pt;}
.x17_c00312{left:174.960000pt;}
.xc2_c00312{left:176.640000pt;}
.x6e_c00312{left:177.840000pt;}
.x34_c00312{left:179.520000pt;}
.x7_c00312{left:182.880000pt;}
.x8c_c00312{left:187.680000pt;}
.xbe_c00312{left:188.640000pt;}
.x4e_c00312{left:189.840000pt;}
.x22_c00312{left:191.520000pt;}
.x87_c00312{left:193.920000pt;}
.x18_c00312{left:196.080000pt;}
.x7e_c00312{left:197.520000pt;}
.x68_c00312{left:198.480000pt;}
.x8_c00312{left:200.880000pt;}
.x90_c00312{left:202.560000pt;}
.xb2_c00312{left:204.480000pt;}
.x3f_c00312{left:205.440000pt;}
.xa7_c00312{left:206.880000pt;}
.xb9_c00312{left:208.320000pt;}
.x35_c00312{left:211.440000pt;}
.x6f_c00312{left:213.360000pt;}
.xbf_c00312{left:214.560000pt;}
.x2a_c00312{left:216.720000pt;}
.x46_c00312{left:218.160000pt;}
.x8d_c00312{left:220.800000pt;}
.x88_c00312{left:222.720000pt;}
.xba_c00312{left:224.160000pt;}
.x60_c00312{left:227.040000pt;}
.x23_c00312{left:229.440000pt;}
.x9a_c00312{left:230.640000pt;}
.x91_c00312{left:235.440000pt;}
.x40_c00312{left:236.880000pt;}
.x4f_c00312{left:238.800000pt;}
.xa8_c00312{left:239.760000pt;}
.x2b_c00312{left:240.720000pt;}
.x2_c00312{left:242.640000pt;}
.x9_c00312{left:246.720000pt;}
.x36_c00312{left:247.920000pt;}
.x7f_c00312{left:251.280000pt;}
.x61_c00312{left:253.200000pt;}
.x10_c00312{left:254.160000pt;}
.xa2_c00312{left:256.560000pt;}
.x59_c00312{left:258.000000pt;}
.xae_c00312{left:260.400000pt;}
.x19_c00312{left:262.560000pt;}
.x9e_c00312{left:266.400000pt;}
.x3_c00312{left:272.160000pt;}
.x41_c00312{left:273.600000pt;}
.x69_c00312{left:277.440000pt;}
.x11_c00312{left:279.360000pt;}
.x1a_c00312{left:280.320000pt;}
.xa_c00312{left:282.480000pt;}
.xbb_c00312{left:284.640000pt;}
.x47_c00312{left:286.080000pt;}
.xc3_c00312{left:287.760000pt;}
.x77_c00312{left:288.960000pt;}
.x37_c00312{left:290.640000pt;}
.x50_c00312{left:294.480000pt;}
.x80_c00312{left:295.440000pt;}
.x4_c00312{left:298.080000pt;}
.x70_c00312{left:300.720000pt;}
.x12_c00312{left:302.640000pt;}
.xa9_c00312{left:305.520000pt;}
.xb_c00312{left:306.720000pt;}
.x1b_c00312{left:308.400000pt;}
.x89_c00312{left:310.560000pt;}
.x5a_c00312{left:311.760000pt;}
.x62_c00312{left:314.160000pt;}
.x51_c00312{left:317.520000pt;}
.x2c_c00312{left:319.680000pt;}
.x78_c00312{left:321.600000pt;}
.x81_c00312{left:322.560000pt;}
.x92_c00312{left:323.760000pt;}
.xaa_c00312{left:326.160000pt;}
.x38_c00312{left:327.840000pt;}
.x1c_c00312{left:329.760000pt;}
.x24_c00312{left:333.600000pt;}
.x63_c00312{left:335.280000pt;}
.xb3_c00312{left:337.200000pt;}
.xbc_c00312{left:338.640000pt;}
.x71_c00312{left:341.760000pt;}
.x2d_c00312{left:345.600000pt;}
.x82_c00312{left:347.280000pt;}
.x52_c00312{left:353.520000pt;}
.x25_c00312{left:354.960000pt;}
.x93_c00312{left:356.640000pt;}
.x5_c00312{left:357.600000pt;}
.x48_c00312{left:360.000000pt;}
.x83_c00312{left:363.360000pt;}
.x1d_c00312{left:364.320000pt;}
.x6a_c00312{left:365.520000pt;}
.x64_c00312{left:368.880000pt;}
.x9b_c00312{left:370.800000pt;}
.xaf_c00312{left:372.960000pt;}
.x5b_c00312{left:373.920000pt;}
.x13_c00312{left:374.880000pt;}
.x26_c00312{left:377.040000pt;}
.x49_c00312{left:378.720000pt;}
.x39_c00312{left:380.400000pt;}
.x42_c00312{left:383.040000pt;}
.x84_c00312{left:385.200000pt;}
.x94_c00312{left:387.840000pt;}
.x2e_c00312{left:389.280000pt;}
.x6b_c00312{left:390.720000pt;}
.x65_c00312{left:394.080000pt;}
.x79_c00312{left:395.520000pt;}
.x6_c00312{left:402.720000pt;}
.x72_c00312{left:404.400000pt;}
.x5c_c00312{left:406.080000pt;}
.xc0_c00312{left:407.760000pt;}
.x4a_c00312{left:409.200000pt;}
.x53_c00312{left:411.840000pt;}
.x43_c00312{left:413.280000pt;}
.x1e_c00312{left:414.480000pt;}
.xab_c00312{left:416.880000pt;}
.x27_c00312{left:419.280000pt;}
.xa3_c00312{left:420.480000pt;}
.x95_c00312{left:422.160000pt;}
.x2f_c00312{left:426.960000pt;}
.x7a_c00312{left:429.120000pt;}
.x73_c00312{left:430.080000pt;}
.x3a_c00312{left:432.960000pt;}
.xac_c00312{left:434.880000pt;}
.x9c_c00312{left:436.080000pt;}
.x5d_c00312{left:440.160000pt;}
.xa4_c00312{left:441.840000pt;}
.x54_c00312{left:444.240000pt;}
.x4b_c00312{left:445.440000pt;}
.x96_c00312{left:447.360000pt;}
.xc_c00312{left:448.800000pt;}
.x66_c00312{left:450.480000pt;}
.x1f_c00312{left:454.320000pt;}
.x28_c00312{left:455.520000pt;}
.x85_c00312{left:460.080000pt;}
.x8a_c00312{left:462.480000pt;}
.xad_c00312{left:465.120000pt;}
.x7b_c00312{left:467.280000pt;}
.x44_c00312{left:470.160000pt;}
.x14_c00312{left:475.200000pt;}
.x6c_c00312{left:477.600000pt;}
.x74_c00312{left:479.520000pt;}
.x4c_c00312{left:484.080000pt;}
.x30_c00312{left:487.200000pt;}
.xa5_c00312{left:488.400000pt;}
.xc4_c00312{left:502.800000pt;}
.xb5_c00312{left:515.040000pt;}
.xb4_c00312{left:516.960000pt;}
.xcd_c00312{left:518.640000pt;}
.xcb_c00312{left:520.320000pt;}
.xb6_c00312{left:528.240000pt;}
.xb7_c00312{left:529.440000pt;}
.xca_c00312{left:530.400000pt;}
.xc6_c00312{left:531.360000pt;}
.xc5_c00312{left:533.280000pt;}
.xc7_c00312{left:534.480000pt;}
.xc8_c00312{left:535.680000pt;}
.xc9_c00312{left:537.360000pt;}
.xcc_c00312{left:538.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m82_c00313{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.mf0_c00313{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);}
.m122_c00313{transform:matrix(0.085445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085445,0.000000,0.000000,0.250000,0,0);}
.m56_c00313{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.100159,-0.001102,0.002750,0.249985,0,0);-ms-transform:matrix(0.100159,-0.001102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.100159,-0.001102,0.002750,0.249985,0,0);}
.m10c_c00313{transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);}
.mba_c00313{transform:matrix(0.107760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107760,0.000000,0.000000,0.250000,0,0);}
.m98_c00313{transform:matrix(0.130120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130120,0.000000,0.000000,0.250000,0,0);}
.m13d_c00313{transform:matrix(0.132340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132340,0.000000,0.000000,0.250000,0,0);}
.m73_c00313{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);}
.m75_c00313{transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);}
.mf2_c00313{transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);}
.mab_c00313{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);}
.mac_c00313{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);}
.mef_c00313{transform:matrix(0.139890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139890,0.000000,0.000000,0.250000,0,0);}
.m6f_c00313{transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);}
.mc7_c00313{transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.143926,-0.001583,0.002750,0.249985,0,0);-ms-transform:matrix(0.143926,-0.001583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143926,-0.001583,0.002750,0.249985,0,0);}
.m84_c00313{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);}
.me3_c00313{transform:matrix(0.144085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144085,0.000000,0.000000,0.250000,0,0);}
.m96_c00313{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);}
.mfc_c00313{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);}
.m51_c00313{transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147610,0.000000,0.000000,0.250000,0,0);}
.m8d_c00313{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);}
.mee_c00313{transform:matrix(0.148370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148370,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{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);}
.mad_c00313{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_c00313{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);}
.m31_c00313{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);}
.ma1_c00313{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);}
.m9c_c00313{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);}
.mf4_c00313{transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);}
.m6b_c00313{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{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);}
.md3_c00313{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);}
.mdd_c00313{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.mbf_c00313{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);}
.m74_c00313{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);}
.m149_c00313{transform:matrix(0.154640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154640,0.000000,0.000000,0.250000,0,0);}
.m103_c00313{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);}
.m20_c00313{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);}
.m4d_c00313{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);}
.mcf_c00313{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);}
.m90_c00313{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);}
.md8_c00313{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);}
.m4e_c00313{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);}
.m108_c00313{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);}
.m59_c00313{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);}
.m3a_c00313{transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);}
.m148_c00313{transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);}
.m58_c00313{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);}
.me2_c00313{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);}
.mda_c00313{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);}
.m43_c00313{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);}
.m5c_c00313{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);}
.mc5_c00313{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);}
.m12a_c00313{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);}
.m145_c00313{transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);}
.m124_c00313{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);}
.m10f_c00313{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);}
.m4a_c00313{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);}
.m127_c00313{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);}
.med_c00313{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);}
.m24_c00313{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);}
.m53_c00313{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);}
.m36_c00313{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);}
.mb9_c00313{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);}
.ma5_c00313{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);}
.m107_c00313{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.mc0_c00313{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);}
.m54_c00313{transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);}
.m89_c00313{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);}
.m76_c00313{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);}
.m99_c00313{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);}
.m126_c00313{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);}
.mde_c00313{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);}
.m45_c00313{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);}
.m65_c00313{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);}
.m102_c00313{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);}
.m119_c00313{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);}
.m13a_c00313{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);}
.mf5_c00313{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);}
.mc9_c00313{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);}
.m12b_c00313{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);}
.m26_c00313{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);}
.mb7_c00313{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);}
.m72_c00313{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);}
.m11d_c00313{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);}
.m35_c00313{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);}
.m33_c00313{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);}
.mff_c00313{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);}
.m6d_c00313{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);}
.m52_c00313{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);}
.mc8_c00313{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);}
.mcd_c00313{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);}
.m9d_c00313{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);}
.m83_c00313{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);}
.m5b_c00313{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);}
.m116_c00313{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);}
.m100_c00313{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);}
.m9e_c00313{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);}
.m125_c00313{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);}
.m38_c00313{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);}
.mb1_c00313{transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);}
.m144_c00313{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);}
.m2b_c00313{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);}
.mfa_c00313{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);}
.m115_c00313{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);}
.m121_c00313{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);}
.m12c_c00313{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);}
.me1_c00313{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);}
.m93_c00313{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);}
.ma8_c00313{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);}
.m104_c00313{transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);}
.mcc_c00313{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);}
.m8f_c00313{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);}
.m40_c00313{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);}
.mf8_c00313{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);}
.ma6_c00313{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);}
.m16_c00313{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);}
.mb2_c00313{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);}
.m7d_c00313{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_c00313{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);}
.md9_c00313{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);}
.ma9_c00313{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);}
.mdb_c00313{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);}
.m50_c00313{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);}
.me5_c00313{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);}
.m6c_c00313{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);}
.mb8_c00313{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);}
.m46_c00313{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);}
.m4_c00313{transform:matrix(0.178739,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178739,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178739,-0.001966,0.002750,0.249985,0,0);}
.m68_c00313{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);}
.m128_c00313{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);}
.m62_c00313{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00313{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_c00313{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);}
.m1f_c00313{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);}
.mc_c00313{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);}
.m114_c00313{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);}
.m66_c00313{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);}
.m12d_c00313{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);}
.m120_c00313{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{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);}
.m123_c00313{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);}
.mea_c00313{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);}
.m132_c00313{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);}
.m78_c00313{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_c00313{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);}
.maa_c00313{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);}
.mfd_c00313{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);}
.m49_c00313{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);}
.md7_c00313{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);}
.m112_c00313{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.mae_c00313{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);}
.m11f_c00313{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m71_c00313{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);}
.m25_c00313{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);}
.me4_c00313{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);}
.m27_c00313{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);}
.maf_c00313{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);}
.ma2_c00313{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);}
.md0_c00313{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);}
.m9a_c00313{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);}
.mb3_c00313{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);}
.mb0_c00313{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);}
.mf1_c00313{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);}
.md5_c00313{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);}
.mbe_c00313{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);}
.m77_c00313{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);}
.mc4_c00313{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);}
.m118_c00313{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);}
.m42_c00313{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);}
.m113_c00313{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);}
.m47_c00313{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);}
.mce_c00313{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);}
.mc1_c00313{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);}
.m88_c00313{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);}
.mc6_c00313{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);}
.meb_c00313{transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);}
.m146_c00313{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);}
.m12e_c00313{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);}
.m3e_c00313{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);}
.m13_c00313{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);}
.m55_c00313{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);}
.m2a_c00313{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);}
.m5f_c00313{transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188770,0.000000,0.000000,0.250000,0,0);}
.m117_c00313{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);}
.md2_c00313{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);}
.mfe_c00313{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);}
.ma7_c00313{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);}
.m13c_c00313{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);}
.m3d_c00313{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);}
.m9b_c00313{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);}
.mdf_c00313{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);}
.mcb_c00313{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);}
.mbc_c00313{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);}
.m131_c00313{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_c00313{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);}
.me9_c00313{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);}
.m28_c00313{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);}
.mf_c00313{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);}
.mec_c00313{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);}
.m139_c00313{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);}
.m64_c00313{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);}
.m147_c00313{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);}
.m41_c00313{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);}
.m8c_c00313{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);}
.m70_c00313{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);}
.ma0_c00313{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);}
.m12f_c00313{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);}
.m4f_c00313{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);}
.m6a_c00313{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);}
.mf7_c00313{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);}
.m44_c00313{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);}
.m18_c00313{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);}
.m37_c00313{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);}
.m5d_c00313{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);}
.m7c_c00313{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);}
.me0_c00313{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);}
.m3b_c00313{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);}
.m19_c00313{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);}
.ma3_c00313{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);}
.m13b_c00313{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);}
.m11e_c00313{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);}
.m61_c00313{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);}
.m5a_c00313{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.m136_c00313{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);}
.m135_c00313{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);}
.mfb_c00313{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);}
.m105_c00313{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);}
.mf6_c00313{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_c00313{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);}
.m14_c00313{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);}
.m10b_c00313{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);}
.m3c_c00313{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);}
.m8a_c00313{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);}
.m87_c00313{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);}
.m34_c00313{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);}
.mb5_c00313{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);}
.m101_c00313{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);}
.m9f_c00313{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);}
.m6e_c00313{transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);}
.m8e_c00313{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);}
.md1_c00313{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);}
.m48_c00313{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);}
.mf9_c00313{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);}
.m15_c00313{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);}
.mf3_c00313{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);}
.md4_c00313{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);}
.m12_c00313{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);}
.m1b_c00313{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);}
.m4b_c00313{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{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);}
.m94_c00313{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);}
.m10e_c00313{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);}
.md6_c00313{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);}
.mbd_c00313{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);}
.m95_c00313{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);}
.m130_c00313{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);}
.m1d_c00313{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);}
.m11_c00313{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);}
.m1a_c00313{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);}
.m111_c00313{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);}
.m39_c00313{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);}
.m81_c00313{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);}
.m60_c00313{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);}
.m11b_c00313{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);}
.m79_c00313{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);}
.m7e_c00313{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);}
.m30_c00313{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);}
.mc3_c00313{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);}
.me6_c00313{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);}
.m67_c00313{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);}
.m134_c00313{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);}
.m63_c00313{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);}
.m21_c00313{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);}
.mb6_c00313{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);}
.m17_c00313{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);}
.m7f_c00313{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);}
.mbb_c00313{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);}
.m11c_c00313{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);}
.m80_c00313{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);}
.m137_c00313{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);}
.m2d_c00313{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);}
.m143_c00313{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);}
.m133_c00313{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);}
.m7b_c00313{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);}
.me7_c00313{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);}
.m10_c00313{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);}
.m10a_c00313{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);}
.m110_c00313{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);}
.mdc_c00313{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);}
.m86_c00313{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m97_c00313{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.mca_c00313{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);}
.m92_c00313{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.mc2_c00313{transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);}
.m57_c00313{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.m106_c00313{transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.m7a_c00313{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);}
.m10d_c00313{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);}
.m1e_c00313{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m69_c00313{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);}
.mb4_c00313{transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.266784,-0.002935,0.002750,0.249985,0,0);-ms-transform:matrix(0.266784,-0.002935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266784,-0.002935,0.002750,0.249985,0,0);}
.m13f_c00313{transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);}
.m138_c00313{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m142_c00313{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);}
.m5e_c00313{transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293745,0.000000,0.000000,0.250000,0,0);}
.m109_c00313{transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);}
.m129_c00313{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);}
.m11a_c00313{transform:matrix(0.327440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327440,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{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);}
.me8_c00313{transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.340109,-0.003741,0.002750,0.249985,0,0);-ms-transform:matrix(0.340109,-0.003741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.340109,-0.003741,0.002750,0.249985,0,0);}
.m1_c00313{transform:matrix(0.355214,-0.003907,0.002750,0.249985,0,0);-ms-transform:matrix(0.355214,-0.003907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.355214,-0.003907,0.002750,0.249985,0,0);}
.me_c00313{transform:matrix(0.357583,-0.003933,0.002750,0.249985,0,0);-ms-transform:matrix(0.357583,-0.003933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.357583,-0.003933,0.002750,0.249985,0,0);}
.m9_c00313{transform:matrix(0.364638,-0.004011,0.002750,0.249985,0,0);-ms-transform:matrix(0.364638,-0.004011,0.002750,0.249985,0,0);-webkit-transform:matrix(0.364638,-0.004011,0.002750,0.249985,0,0);}
.m141_c00313{transform:matrix(0.376435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376435,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.392801,-0.004321,0.002750,0.249985,0,0);-ms-transform:matrix(0.392801,-0.004321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.392801,-0.004321,0.002750,0.249985,0,0);}
.m5_c00313{transform:matrix(0.393101,-0.004324,0.002750,0.249985,0,0);-ms-transform:matrix(0.393101,-0.004324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.393101,-0.004324,0.002750,0.249985,0,0);}
.m0_c00313{transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);}
.m140_c00313{transform:matrix(0.404270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404270,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.410200,-0.004512,0.002750,0.249985,0,0);-ms-transform:matrix(0.410200,-0.004512,0.002750,0.249985,0,0);-webkit-transform:matrix(0.410200,-0.004512,0.002750,0.249985,0,0);}
.md_c00313{transform:matrix(0.419870,-0.004619,0.002750,0.249985,0,0);-ms-transform:matrix(0.419870,-0.004619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.419870,-0.004619,0.002750,0.249985,0,0);}
.m13e_c00313{transform:matrix(0.443680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443680,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.575855,-0.006334,0.002750,0.249985,0,0);-ms-transform:matrix(0.575855,-0.006334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.575855,-0.006334,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;}
.fse_c00313{font-size:57.750000px;}
.fs1_c00313{font-size:59.853621px;}
.fs3_c00313{font-size:64.050000px;}
.fsb_c00313{font-size:66.150000px;}
.fs8_c00313{font-size:67.200000px;}
.fs4_c00313{font-size:68.250000px;}
.fs6_c00313{font-size:69.300000px;}
.fs5_c00313{font-size:70.350000px;}
.fs7_c00313{font-size:71.400000px;}
.fsc_c00313{font-size:72.450000px;}
.fsd_c00313{font-size:73.500000px;}
.fsa_c00313{font-size:74.550000px;}
.fs9_c00313{font-size:77.700000px;}
.fs2_c00313{font-size:135.458194px;}
.fs0_c00313{font-size:145.950000px;}
.y0_c00313{bottom:0.000000px;}
.y48_c00313{bottom:177.420000px;}
.y39_c00313{bottom:235.581000px;}
.y47_c00313{bottom:258.181500px;}
.y38_c00313{bottom:281.149500px;}
.y37_c00313{bottom:304.114500px;}
.y36_c00313{bottom:326.779500px;}
.y35_c00313{bottom:349.984500px;}
.y3b_c00313{bottom:373.141500px;}
.y3c_c00313{bottom:373.510500px;}
.y3d_c00313{bottom:374.037000px;}
.y3e_c00313{bottom:374.394000px;}
.y3f_c00313{bottom:375.046500px;}
.y40_c00313{bottom:375.511500px;}
.y41_c00313{bottom:376.419000px;}
.y42_c00313{bottom:377.067000px;}
.y43_c00313{bottom:377.601000px;}
.y44_c00313{bottom:378.232500px;}
.y45_c00313{bottom:378.690000px;}
.y46_c00313{bottom:379.809000px;}
.y3a_c00313{bottom:396.868500px;}
.y34_c00313{bottom:418.597500px;}
.y33_c00313{bottom:442.056000px;}
.y32_c00313{bottom:464.466000px;}
.y31_c00313{bottom:487.383000px;}
.y30_c00313{bottom:510.333000px;}
.y2f_c00313{bottom:533.997000px;}
.y2e_c00313{bottom:556.536000px;}
.y2d_c00313{bottom:579.184500px;}
.y2c_c00313{bottom:603.160500px;}
.y2b_c00313{bottom:625.542000px;}
.y2a_c00313{bottom:648.747000px;}
.y29_c00313{bottom:670.890000px;}
.y28_c00313{bottom:694.074000px;}
.y27_c00313{bottom:717.025500px;}
.y26_c00313{bottom:739.434000px;}
.y25_c00313{bottom:762.354000px;}
.y1b_c00313{bottom:784.081500px;}
.y1c_c00313{bottom:784.309500px;}
.y1d_c00313{bottom:784.783500px;}
.y1e_c00313{bottom:785.802000px;}
.y1f_c00313{bottom:786.033000px;}
.y20_c00313{bottom:786.597000px;}
.y21_c00313{bottom:786.927000px;}
.y22_c00313{bottom:787.282500px;}
.y23_c00313{bottom:787.501500px;}
.y24_c00313{bottom:788.164500px;}
.y11_c00313{bottom:806.221500px;}
.y12_c00313{bottom:806.454000px;}
.y13_c00313{bottom:806.919000px;}
.y14_c00313{bottom:807.414000px;}
.y15_c00313{bottom:807.688500px;}
.y16_c00313{bottom:808.350000px;}
.y17_c00313{bottom:808.704000px;}
.y18_c00313{bottom:808.909500px;}
.y19_c00313{bottom:809.092500px;}
.y1a_c00313{bottom:809.502000px;}
.y10_c00313{bottom:830.116500px;}
.yc_c00313{bottom:871.289180px;}
.yd_c00313{bottom:871.715044px;}
.ye_c00313{bottom:872.707784px;}
.yf_c00313{bottom:873.867519px;}
.y9_c00313{bottom:912.604287px;}
.ya_c00313{bottom:914.516033px;}
.yb_c00313{bottom:915.578841px;}
.y2_c00313{bottom:930.151500px;}
.y1_c00313{bottom:930.690000px;}
.y3_c00313{bottom:930.875932px;}
.y4_c00313{bottom:931.606305px;}
.y5_c00313{bottom:932.467588px;}
.y6_c00313{bottom:933.070895px;}
.y7_c00313{bottom:934.107623px;}
.y8_c00313{bottom:934.784964px;}
.h10_c00313{height:57.750000px;}
.h3_c00313{height:59.853621px;}
.h5_c00313{height:64.050000px;}
.hd_c00313{height:66.150000px;}
.ha_c00313{height:67.200000px;}
.h6_c00313{height:68.250000px;}
.h8_c00313{height:69.300000px;}
.h7_c00313{height:70.350000px;}
.h9_c00313{height:71.400000px;}
.he_c00313{height:72.450000px;}
.hf_c00313{height:73.500000px;}
.hc_c00313{height:74.550000px;}
.hb_c00313{height:77.700000px;}
.h4_c00313{height:135.458194px;}
.h2_c00313{height:145.950000px;}
.h0_c00313{height:1008.450000px;}
.h1_c00313{height:1008.750000px;}
.w0_c00313{width:696.000000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:100.849500px;}
.xb_c00313{left:115.333160px;}
.x60_c00313{left:144.180000px;}
.x49_c00313{left:151.740000px;}
.xc_c00313{left:154.048160px;}
.xe_c00313{left:155.790000px;}
.x86_c00313{left:157.140000px;}
.xa6_c00313{left:158.220000px;}
.x3_c00313{left:166.707000px;}
.x52_c00313{left:175.230000px;}
.x4a_c00313{left:176.580000px;}
.x21_c00313{left:180.477000px;}
.x76_c00313{left:183.330000px;}
.xf_c00313{left:184.950000px;}
.x18_c00313{left:188.014500px;}
.x7b_c00313{left:190.620000px;}
.xbb_c00313{left:192.510000px;}
.x39_c00313{left:193.590000px;}
.x29_c00313{left:198.180000px;}
.x41_c00313{left:201.150000px;}
.x5b_c00313{left:204.120000px;}
.x7c_c00313{left:214.110000px;}
.x2a_c00313{left:216.270000px;}
.xb1_c00313{left:217.534500px;}
.x31_c00313{left:220.320000px;}
.x90_c00313{left:224.370000px;}
.x87_c00313{left:225.720000px;}
.x4b_c00313{left:227.070000px;}
.x10_c00313{left:231.120000px;}
.x4_c00313{left:233.104500px;}
.x8c_c00313{left:237.060000px;}
.x53_c00313{left:238.680000px;}
.xb2_c00313{left:241.285500px;}
.x42_c00313{left:243.270000px;}
.xd_c00313{left:244.297160px;}
.x6b_c00313{left:248.130000px;}
.x2b_c00313{left:249.480000px;}
.x3a_c00313{left:251.100000px;}
.x19_c00313{left:254.434500px;}
.x9_c00313{left:260.498285px;}
.xbc_c00313{left:261.630000px;}
.x2c_c00313{left:262.980000px;}
.x80_c00313{left:266.490000px;}
.x5c_c00313{left:267.840000px;}
.x96_c00313{left:276.210000px;}
.x54_c00313{left:277.560000px;}
.x43_c00313{left:279.990000px;}
.x9f_c00313{left:281.070000px;}
.xa7_c00313{left:282.960000px;}
.xb3_c00313{left:284.745000px;}
.x32_c00313{left:286.470000px;}
.x7d_c00313{left:289.980000px;}
.x11_c00313{left:291.060000px;}
.x5d_c00313{left:292.140000px;}
.x61_c00313{left:294.840000px;}
.x55_c00313{left:296.730000px;}
.xb7_c00313{left:301.050000px;}
.x81_c00313{left:305.370000px;}
.x97_c00313{left:306.990000px;}
.x6e_c00313{left:309.960000px;}
.x5_c00313{left:311.403000px;}
.x33_c00313{left:312.930000px;}
.x12_c00313{left:314.820000px;}
.x9c_c00313{left:315.900000px;}
.xa8_c00313{left:317.790000px;}
.x56_c00313{left:318.870000px;}
.xa0_c00313{left:319.950000px;}
.x91_c00313{left:322.110000px;}
.x1a_c00313{left:325.182000px;}
.xaa_c00313{left:331.290000px;}
.x66_c00313{left:333.450000px;}
.x4c_c00313{left:334.530000px;}
.x44_c00313{left:337.500000px;}
.x88_c00313{left:340.470000px;}
.xa9_c00313{left:343.440000px;}
.x22_c00313{left:346.215000px;}
.xa_c00313{left:349.070811px;}
.x13_c00313{left:351.270000px;}
.x62_c00313{left:353.970000px;}
.x3b_c00313{left:355.050000px;}
.xab_c00313{left:356.670000px;}
.xbd_c00313{left:359.100000px;}
.x1b_c00313{left:364.330500px;}
.x6_c00313{left:366.249000px;}
.x82_c00313{left:369.360000px;}
.x23_c00313{left:371.907000px;}
.x57_c00313{left:373.950000px;}
.x6f_c00313{left:375.300000px;}
.xa1_c00313{left:376.380000px;}
.x4d_c00313{left:377.730000px;}
.x92_c00313{left:379.620000px;}
.x3c_c00313{left:381.240000px;}
.x34_c00313{left:383.670000px;}
.x83_c00313{left:387.990000px;}
.x70_c00313{left:390.690000px;}
.xbe_c00313{left:391.770000px;}
.x7e_c00313{left:392.850000px;}
.x5e_c00313{left:395.280000px;}
.x93_c00313{left:396.360000px;}
.x45_c00313{left:398.250000px;}
.x14_c00313{left:399.330000px;}
.x4e_c00313{left:403.920000px;}
.x98_c00313{left:405.810000px;}
.x3d_c00313{left:410.670000px;}
.x71_c00313{left:412.830000px;}
.x67_c00313{left:418.230000px;}
.xb4_c00313{left:419.445000px;}
.x84_c00313{left:420.660000px;}
.x9d_c00313{left:423.360000px;}
.x2d_c00313{left:424.440000px;}
.x8d_c00313{left:426.330000px;}
.x46_c00313{left:427.410000px;}
.x6c_c00313{left:431.460000px;}
.x15_c00313{left:432.810000px;}
.x24_c00313{left:434.503500px;}
.x68_c00313{left:436.050000px;}
.xac_c00313{left:437.130000px;}
.xad_c00313{left:443.610000px;}
.x2e_c00313{left:446.850000px;}
.x8e_c00313{left:450.900000px;}
.x35_c00313{left:451.980000px;}
.x72_c00313{left:453.060000px;}
.xb5_c00313{left:455.065500px;}
.x1c_c00313{left:458.821500px;}
.x7_c00313{left:460.497000px;}
.x69_c00313{left:463.320000px;}
.x9e_c00313{left:470.070000px;}
.x25_c00313{left:471.232500px;}
.x5f_c00313{left:473.310000px;}
.xa2_c00313{left:478.170000px;}
.x99_c00313{left:479.790000px;}
.x3e_c00313{left:482.220000px;}
.x73_c00313{left:488.970000px;}
.xae_c00313{left:492.750000px;}
.x2f_c00313{left:497.070000px;}
.x47_c00313{left:500.040000px;}
.xa3_c00313{left:503.010000px;}
.x63_c00313{left:504.900000px;}
.x89_c00313{left:505.980000px;}
.x85_c00313{left:507.060000px;}
.x1d_c00313{left:509.322000px;}
.x26_c00313{left:510.684000px;}
.x77_c00313{left:514.620000px;}
.x16_c00313{left:518.130000px;}
.x58_c00313{left:519.480000px;}
.x64_c00313{left:520.830000px;}
.x8_c00313{left:522.073500px;}
.x30_c00313{left:524.340000px;}
.x4f_c00313{left:526.770000px;}
.x74_c00313{left:528.660000px;}
.x78_c00313{left:533.520000px;}
.x27_c00313{left:534.987000px;}
.x1e_c00313{left:538.743000px;}
.x8a_c00313{left:540.000000px;}
.x36_c00313{left:541.350000px;}
.x59_c00313{left:544.860000px;}
.xb8_c00313{left:546.480000px;}
.x9a_c00313{left:548.370000px;}
.x48_c00313{left:550.800000px;}
.x50_c00313{left:553.230000px;}
.x1_c00313{left:555.120000px;}
.xaf_c00313{left:558.090000px;}
.xa4_c00313{left:561.330000px;}
.x37_c00313{left:562.410000px;}
.x1f_c00313{left:564.937500px;}
.x7f_c00313{left:568.620000px;}
.x17_c00313{left:569.970000px;}
.x79_c00313{left:572.130000px;}
.x94_c00313{left:577.800000px;}
.x6d_c00313{left:581.310000px;}
.x3f_c00313{left:582.660000px;}
.x8b_c00313{left:584.550000px;}
.x65_c00313{left:586.980000px;}
.x6a_c00313{left:592.380000px;}
.x8f_c00313{left:593.460000px;}
.x75_c00313{left:594.540000px;}
.xb9_c00313{left:598.320000px;}
.x51_c00313{left:600.480000px;}
.xb6_c00313{left:602.185500px;}
.x38_c00313{left:605.070000px;}
.xa5_c00313{left:607.230000px;}
.x28_c00313{left:608.683500px;}
.x9b_c00313{left:611.820000px;}
.x40_c00313{left:612.900000px;}
.x5a_c00313{left:615.330000px;}
.x95_c00313{left:617.220000px;}
.x20_c00313{left:623.533500px;}
.x7a_c00313{left:627.480000px;}
.xba_c00313{left:642.060000px;}
.xb0_c00313{left:650.700000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
.fse_c00313{font-size:51.333333pt;}
.fs1_c00313{font-size:53.203219pt;}
.fs3_c00313{font-size:56.933333pt;}
.fsb_c00313{font-size:58.800000pt;}
.fs8_c00313{font-size:59.733333pt;}
.fs4_c00313{font-size:60.666667pt;}
.fs6_c00313{font-size:61.600000pt;}
.fs5_c00313{font-size:62.533333pt;}
.fs7_c00313{font-size:63.466667pt;}
.fsc_c00313{font-size:64.400000pt;}
.fsd_c00313{font-size:65.333333pt;}
.fsa_c00313{font-size:66.266667pt;}
.fs9_c00313{font-size:69.066667pt;}
.fs2_c00313{font-size:120.407284pt;}
.fs0_c00313{font-size:129.733333pt;}
.y0_c00313{bottom:0.000000pt;}
.y48_c00313{bottom:157.706667pt;}
.y39_c00313{bottom:209.405333pt;}
.y47_c00313{bottom:229.494667pt;}
.y38_c00313{bottom:249.910667pt;}
.y37_c00313{bottom:270.324000pt;}
.y36_c00313{bottom:290.470667pt;}
.y35_c00313{bottom:311.097333pt;}
.y3b_c00313{bottom:331.681333pt;}
.y3c_c00313{bottom:332.009333pt;}
.y3d_c00313{bottom:332.477333pt;}
.y3e_c00313{bottom:332.794667pt;}
.y3f_c00313{bottom:333.374667pt;}
.y40_c00313{bottom:333.788000pt;}
.y41_c00313{bottom:334.594667pt;}
.y42_c00313{bottom:335.170667pt;}
.y43_c00313{bottom:335.645333pt;}
.y44_c00313{bottom:336.206667pt;}
.y45_c00313{bottom:336.613333pt;}
.y46_c00313{bottom:337.608000pt;}
.y3a_c00313{bottom:352.772000pt;}
.y34_c00313{bottom:372.086667pt;}
.y33_c00313{bottom:392.938667pt;}
.y32_c00313{bottom:412.858667pt;}
.y31_c00313{bottom:433.229333pt;}
.y30_c00313{bottom:453.629333pt;}
.y2f_c00313{bottom:474.664000pt;}
.y2e_c00313{bottom:494.698667pt;}
.y2d_c00313{bottom:514.830667pt;}
.y2c_c00313{bottom:536.142667pt;}
.y2b_c00313{bottom:556.037333pt;}
.y2a_c00313{bottom:576.664000pt;}
.y29_c00313{bottom:596.346667pt;}
.y28_c00313{bottom:616.954667pt;}
.y27_c00313{bottom:637.356000pt;}
.y26_c00313{bottom:657.274667pt;}
.y25_c00313{bottom:677.648000pt;}
.y1b_c00313{bottom:696.961333pt;}
.y1c_c00313{bottom:697.164000pt;}
.y1d_c00313{bottom:697.585333pt;}
.y1e_c00313{bottom:698.490667pt;}
.y1f_c00313{bottom:698.696000pt;}
.y20_c00313{bottom:699.197333pt;}
.y21_c00313{bottom:699.490667pt;}
.y22_c00313{bottom:699.806667pt;}
.y23_c00313{bottom:700.001333pt;}
.y24_c00313{bottom:700.590667pt;}
.y11_c00313{bottom:716.641333pt;}
.y12_c00313{bottom:716.848000pt;}
.y13_c00313{bottom:717.261333pt;}
.y14_c00313{bottom:717.701333pt;}
.y15_c00313{bottom:717.945333pt;}
.y16_c00313{bottom:718.533333pt;}
.y17_c00313{bottom:718.848000pt;}
.y18_c00313{bottom:719.030667pt;}
.y19_c00313{bottom:719.193333pt;}
.y1a_c00313{bottom:719.557333pt;}
.y10_c00313{bottom:737.881333pt;}
.yc_c00313{bottom:774.479271pt;}
.yd_c00313{bottom:774.857817pt;}
.ye_c00313{bottom:775.740252pt;}
.yf_c00313{bottom:776.771128pt;}
.y9_c00313{bottom:811.203811pt;}
.ya_c00313{bottom:812.903140pt;}
.yb_c00313{bottom:813.847859pt;}
.y2_c00313{bottom:826.801333pt;}
.y1_c00313{bottom:827.280000pt;}
.y3_c00313{bottom:827.445273pt;}
.y4_c00313{bottom:828.094493pt;}
.y5_c00313{bottom:828.860079pt;}
.y6_c00313{bottom:829.396351pt;}
.y7_c00313{bottom:830.317887pt;}
.y8_c00313{bottom:830.919968pt;}
.h10_c00313{height:51.333333pt;}
.h3_c00313{height:53.203219pt;}
.h5_c00313{height:56.933333pt;}
.hd_c00313{height:58.800000pt;}
.ha_c00313{height:59.733333pt;}
.h6_c00313{height:60.666667pt;}
.h8_c00313{height:61.600000pt;}
.h7_c00313{height:62.533333pt;}
.h9_c00313{height:63.466667pt;}
.he_c00313{height:64.400000pt;}
.hf_c00313{height:65.333333pt;}
.hc_c00313{height:66.266667pt;}
.hb_c00313{height:69.066667pt;}
.h4_c00313{height:120.407284pt;}
.h2_c00313{height:129.733333pt;}
.h0_c00313{height:896.400000pt;}
.h1_c00313{height:896.666667pt;}
.w0_c00313{width:618.666667pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:89.644000pt;}
.xb_c00313{left:102.518364pt;}
.x60_c00313{left:128.160000pt;}
.x49_c00313{left:134.880000pt;}
.xc_c00313{left:136.931697pt;}
.xe_c00313{left:138.480000pt;}
.x86_c00313{left:139.680000pt;}
.xa6_c00313{left:140.640000pt;}
.x3_c00313{left:148.184000pt;}
.x52_c00313{left:155.760000pt;}
.x4a_c00313{left:156.960000pt;}
.x21_c00313{left:160.424000pt;}
.x76_c00313{left:162.960000pt;}
.xf_c00313{left:164.400000pt;}
.x18_c00313{left:167.124000pt;}
.x7b_c00313{left:169.440000pt;}
.xbb_c00313{left:171.120000pt;}
.x39_c00313{left:172.080000pt;}
.x29_c00313{left:176.160000pt;}
.x41_c00313{left:178.800000pt;}
.x5b_c00313{left:181.440000pt;}
.x7c_c00313{left:190.320000pt;}
.x2a_c00313{left:192.240000pt;}
.xb1_c00313{left:193.364000pt;}
.x31_c00313{left:195.840000pt;}
.x90_c00313{left:199.440000pt;}
.x87_c00313{left:200.640000pt;}
.x4b_c00313{left:201.840000pt;}
.x10_c00313{left:205.440000pt;}
.x4_c00313{left:207.204000pt;}
.x8c_c00313{left:210.720000pt;}
.x53_c00313{left:212.160000pt;}
.xb2_c00313{left:214.476000pt;}
.x42_c00313{left:216.240000pt;}
.xd_c00313{left:217.153031pt;}
.x6b_c00313{left:220.560000pt;}
.x2b_c00313{left:221.760000pt;}
.x3a_c00313{left:223.200000pt;}
.x19_c00313{left:226.164000pt;}
.x9_c00313{left:231.554031pt;}
.xbc_c00313{left:232.560000pt;}
.x2c_c00313{left:233.760000pt;}
.x80_c00313{left:236.880000pt;}
.x5c_c00313{left:238.080000pt;}
.x96_c00313{left:245.520000pt;}
.x54_c00313{left:246.720000pt;}
.x43_c00313{left:248.880000pt;}
.x9f_c00313{left:249.840000pt;}
.xa7_c00313{left:251.520000pt;}
.xb3_c00313{left:253.106667pt;}
.x32_c00313{left:254.640000pt;}
.x7d_c00313{left:257.760000pt;}
.x11_c00313{left:258.720000pt;}
.x5d_c00313{left:259.680000pt;}
.x61_c00313{left:262.080000pt;}
.x55_c00313{left:263.760000pt;}
.xb7_c00313{left:267.600000pt;}
.x81_c00313{left:271.440000pt;}
.x97_c00313{left:272.880000pt;}
.x6e_c00313{left:275.520000pt;}
.x5_c00313{left:276.802667pt;}
.x33_c00313{left:278.160000pt;}
.x12_c00313{left:279.840000pt;}
.x9c_c00313{left:280.800000pt;}
.xa8_c00313{left:282.480000pt;}
.x56_c00313{left:283.440000pt;}
.xa0_c00313{left:284.400000pt;}
.x91_c00313{left:286.320000pt;}
.x1a_c00313{left:289.050667pt;}
.xaa_c00313{left:294.480000pt;}
.x66_c00313{left:296.400000pt;}
.x4c_c00313{left:297.360000pt;}
.x44_c00313{left:300.000000pt;}
.x88_c00313{left:302.640000pt;}
.xa9_c00313{left:305.280000pt;}
.x22_c00313{left:307.746667pt;}
.xa_c00313{left:310.285165pt;}
.x13_c00313{left:312.240000pt;}
.x62_c00313{left:314.640000pt;}
.x3b_c00313{left:315.600000pt;}
.xab_c00313{left:317.040000pt;}
.xbd_c00313{left:319.200000pt;}
.x1b_c00313{left:323.849333pt;}
.x6_c00313{left:325.554667pt;}
.x82_c00313{left:328.320000pt;}
.x23_c00313{left:330.584000pt;}
.x57_c00313{left:332.400000pt;}
.x6f_c00313{left:333.600000pt;}
.xa1_c00313{left:334.560000pt;}
.x4d_c00313{left:335.760000pt;}
.x92_c00313{left:337.440000pt;}
.x3c_c00313{left:338.880000pt;}
.x34_c00313{left:341.040000pt;}
.x83_c00313{left:344.880000pt;}
.x70_c00313{left:347.280000pt;}
.xbe_c00313{left:348.240000pt;}
.x7e_c00313{left:349.200000pt;}
.x5e_c00313{left:351.360000pt;}
.x93_c00313{left:352.320000pt;}
.x45_c00313{left:354.000000pt;}
.x14_c00313{left:354.960000pt;}
.x4e_c00313{left:359.040000pt;}
.x98_c00313{left:360.720000pt;}
.x3d_c00313{left:365.040000pt;}
.x71_c00313{left:366.960000pt;}
.x67_c00313{left:371.760000pt;}
.xb4_c00313{left:372.840000pt;}
.x84_c00313{left:373.920000pt;}
.x9d_c00313{left:376.320000pt;}
.x2d_c00313{left:377.280000pt;}
.x8d_c00313{left:378.960000pt;}
.x46_c00313{left:379.920000pt;}
.x6c_c00313{left:383.520000pt;}
.x15_c00313{left:384.720000pt;}
.x24_c00313{left:386.225333pt;}
.x68_c00313{left:387.600000pt;}
.xac_c00313{left:388.560000pt;}
.xad_c00313{left:394.320000pt;}
.x2e_c00313{left:397.200000pt;}
.x8e_c00313{left:400.800000pt;}
.x35_c00313{left:401.760000pt;}
.x72_c00313{left:402.720000pt;}
.xb5_c00313{left:404.502667pt;}
.x1c_c00313{left:407.841333pt;}
.x7_c00313{left:409.330667pt;}
.x69_c00313{left:411.840000pt;}
.x9e_c00313{left:417.840000pt;}
.x25_c00313{left:418.873333pt;}
.x5f_c00313{left:420.720000pt;}
.xa2_c00313{left:425.040000pt;}
.x99_c00313{left:426.480000pt;}
.x3e_c00313{left:428.640000pt;}
.x73_c00313{left:434.640000pt;}
.xae_c00313{left:438.000000pt;}
.x2f_c00313{left:441.840000pt;}
.x47_c00313{left:444.480000pt;}
.xa3_c00313{left:447.120000pt;}
.x63_c00313{left:448.800000pt;}
.x89_c00313{left:449.760000pt;}
.x85_c00313{left:450.720000pt;}
.x1d_c00313{left:452.730667pt;}
.x26_c00313{left:453.941333pt;}
.x77_c00313{left:457.440000pt;}
.x16_c00313{left:460.560000pt;}
.x58_c00313{left:461.760000pt;}
.x64_c00313{left:462.960000pt;}
.x8_c00313{left:464.065333pt;}
.x30_c00313{left:466.080000pt;}
.x4f_c00313{left:468.240000pt;}
.x74_c00313{left:469.920000pt;}
.x78_c00313{left:474.240000pt;}
.x27_c00313{left:475.544000pt;}
.x1e_c00313{left:478.882667pt;}
.x8a_c00313{left:480.000000pt;}
.x36_c00313{left:481.200000pt;}
.x59_c00313{left:484.320000pt;}
.xb8_c00313{left:485.760000pt;}
.x9a_c00313{left:487.440000pt;}
.x48_c00313{left:489.600000pt;}
.x50_c00313{left:491.760000pt;}
.x1_c00313{left:493.440000pt;}
.xaf_c00313{left:496.080000pt;}
.xa4_c00313{left:498.960000pt;}
.x37_c00313{left:499.920000pt;}
.x1f_c00313{left:502.166667pt;}
.x7f_c00313{left:505.440000pt;}
.x17_c00313{left:506.640000pt;}
.x79_c00313{left:508.560000pt;}
.x94_c00313{left:513.600000pt;}
.x6d_c00313{left:516.720000pt;}
.x3f_c00313{left:517.920000pt;}
.x8b_c00313{left:519.600000pt;}
.x65_c00313{left:521.760000pt;}
.x6a_c00313{left:526.560000pt;}
.x8f_c00313{left:527.520000pt;}
.x75_c00313{left:528.480000pt;}
.xb9_c00313{left:531.840000pt;}
.x51_c00313{left:533.760000pt;}
.xb6_c00313{left:535.276000pt;}
.x38_c00313{left:537.840000pt;}
.xa5_c00313{left:539.760000pt;}
.x28_c00313{left:541.052000pt;}
.x9b_c00313{left:543.840000pt;}
.x40_c00313{left:544.800000pt;}
.x5a_c00313{left:546.960000pt;}
.x95_c00313{left:548.640000pt;}
.x20_c00313{left:554.252000pt;}
.x7a_c00313{left:557.760000pt;}
.xba_c00313{left:570.720000pt;}
.xb0_c00313{left:578.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_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_ef4e99a7aa2876b3106553d3.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;}
.m19_c00314{transform:matrix(0.007820,0.000070,-0.002250,0.249990,0,0);-ms-transform:matrix(0.007820,0.000070,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.007820,0.000070,-0.002250,0.249990,0,0);}
.m1a_c00314{transform:matrix(0.009970,0.000090,-0.002250,0.249990,0,0);-ms-transform:matrix(0.009970,0.000090,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.009970,0.000090,-0.002250,0.249990,0,0);}
.mbb_c00314{transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);-ms-transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);}
.m112_c00314{transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);}
.me9_c00314{transform:matrix(0.034864,0.000314,-0.002250,0.249990,0,0);-ms-transform:matrix(0.034864,0.000314,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.034864,0.000314,-0.002250,0.249990,0,0);}
.mdc_c00314{transform:matrix(0.037318,0.000336,-0.002250,0.249990,0,0);-ms-transform:matrix(0.037318,0.000336,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.037318,0.000336,-0.002250,0.249990,0,0);}
.m32_c00314{transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.084977,0.000765,-0.002250,0.249990,0,0);}
.m115_c00314{transform:matrix(0.092931,0.000836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.092931,0.000836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.092931,0.000836,-0.002250,0.249990,0,0);}
.mab_c00314{transform:matrix(0.093691,0.000843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.093691,0.000843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.093691,0.000843,-0.002250,0.249990,0,0);}
.m1c_c00314{transform:matrix(0.107006,0.000963,-0.002250,0.249990,0,0);-ms-transform:matrix(0.107006,0.000963,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.107006,0.000963,-0.002250,0.249990,0,0);}
.m80_c00314{transform:matrix(0.113910,0.001025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.113910,0.001025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.113910,0.001025,-0.002250,0.249990,0,0);}
.m91_c00314{transform:matrix(0.119640,0.001077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.119640,0.001077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.119640,0.001077,-0.002250,0.249990,0,0);}
.m3_c00314{transform:matrix(0.127269,0.001273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.127269,0.001273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.127269,0.001273,-0.002500,0.249988,0,0);}
.m87_c00314{transform:matrix(0.128470,0.001156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.128470,0.001156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.128470,0.001156,-0.002250,0.249990,0,0);}
.m92_c00314{transform:matrix(0.129540,0.001166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.129540,0.001166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.129540,0.001166,-0.002250,0.249990,0,0);}
.m86_c00314{transform:matrix(0.133665,0.001203,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133665,0.001203,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133665,0.001203,-0.002250,0.249990,0,0);}
.m8e_c00314{transform:matrix(0.134925,0.001214,-0.002250,0.249990,0,0);-ms-transform:matrix(0.134925,0.001214,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.134925,0.001214,-0.002250,0.249990,0,0);}
.m8c_c00314{transform:matrix(0.135280,0.001218,-0.002250,0.249990,0,0);-ms-transform:matrix(0.135280,0.001218,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.135280,0.001218,-0.002250,0.249990,0,0);}
.m16d_c00314{transform:matrix(0.140665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140665,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.142679,0.001284,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142679,0.001284,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142679,0.001284,-0.002250,0.249990,0,0);}
.m18_c00314{transform:matrix(0.144598,0.001446,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144598,0.001446,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144598,0.001446,-0.002500,0.249988,0,0);}
.m42_c00314{transform:matrix(0.144819,0.001303,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144819,0.001303,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144819,0.001303,-0.002250,0.249990,0,0);}
.mdb_c00314{transform:matrix(0.145024,0.001305,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145024,0.001305,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145024,0.001305,-0.002250,0.249990,0,0);}
.m5d_c00314{transform:matrix(0.146134,0.001315,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146134,0.001315,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146134,0.001315,-0.002250,0.249990,0,0);}
.mc8_c00314{transform:matrix(0.146169,0.001316,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146169,0.001316,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146169,0.001316,-0.002250,0.249990,0,0);}
.m12f_c00314{transform:matrix(0.148114,0.001333,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148114,0.001333,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148114,0.001333,-0.002250,0.249990,0,0);}
.mb1_c00314{transform:matrix(0.148139,0.001333,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148139,0.001333,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148139,0.001333,-0.002250,0.249990,0,0);}
.md4_c00314{transform:matrix(0.148259,0.001334,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148259,0.001334,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148259,0.001334,-0.002250,0.249990,0,0);}
.mc2_c00314{transform:matrix(0.149034,0.001341,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149034,0.001341,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149034,0.001341,-0.002250,0.249990,0,0);}
.m166_c00314{transform:matrix(0.149520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149520,0.000000,0.000000,0.250000,0,0);}
.m153_c00314{transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);}
.mae_c00314{transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149734,0.001348,-0.002250,0.249990,0,0);}
.mba_c00314{transform:matrix(0.149754,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149754,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149754,0.001348,-0.002250,0.249990,0,0);}
.m3c_c00314{transform:matrix(0.150119,0.001351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150119,0.001351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150119,0.001351,-0.002250,0.249990,0,0);}
.m163_c00314{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);}
.m1d_c00314{transform:matrix(0.150564,0.001355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150564,0.001355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150564,0.001355,-0.002250,0.249990,0,0);}
.m139_c00314{transform:matrix(0.151389,0.001362,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151389,0.001362,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151389,0.001362,-0.002250,0.249990,0,0);}
.m34_c00314{transform:matrix(0.151509,0.001364,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151509,0.001364,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151509,0.001364,-0.002250,0.249990,0,0);}
.md7_c00314{transform:matrix(0.152394,0.001372,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152394,0.001372,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152394,0.001372,-0.002250,0.249990,0,0);}
.m84_c00314{transform:matrix(0.153154,0.001378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153154,0.001378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153154,0.001378,-0.002250,0.249990,0,0);}
.m13f_c00314{transform:matrix(0.153599,0.001382,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153599,0.001382,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153599,0.001382,-0.002250,0.249990,0,0);}
.m8b_c00314{transform:matrix(0.154269,0.001388,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154269,0.001388,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154269,0.001388,-0.002250,0.249990,0,0);}
.mb9_c00314{transform:matrix(0.154339,0.001389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154339,0.001389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154339,0.001389,-0.002250,0.249990,0,0);}
.m140_c00314{transform:matrix(0.154899,0.001394,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154899,0.001394,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154899,0.001394,-0.002250,0.249990,0,0);}
.m10e_c00314{transform:matrix(0.155229,0.001397,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155229,0.001397,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155229,0.001397,-0.002250,0.249990,0,0);}
.m13d_c00314{transform:matrix(0.155364,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155364,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155364,0.001398,-0.002250,0.249990,0,0);}
.mc3_c00314{transform:matrix(0.155374,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155374,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155374,0.001398,-0.002250,0.249990,0,0);}
.mdd_c00314{transform:matrix(0.155514,0.001400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155514,0.001400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155514,0.001400,-0.002250,0.249990,0,0);}
.m47_c00314{transform:matrix(0.155734,0.001402,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155734,0.001402,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155734,0.001402,-0.002250,0.249990,0,0);}
.m10c_c00314{transform:matrix(0.156799,0.001411,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156799,0.001411,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156799,0.001411,-0.002250,0.249990,0,0);}
.m12d_c00314{transform:matrix(0.157219,0.001415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157219,0.001415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157219,0.001415,-0.002250,0.249990,0,0);}
.m161_c00314{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);}
.mc6_c00314{transform:matrix(0.157934,0.001421,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157934,0.001421,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157934,0.001421,-0.002250,0.249990,0,0);}
.m3e_c00314{transform:matrix(0.158234,0.001424,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158234,0.001424,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158234,0.001424,-0.002250,0.249990,0,0);}
.m157_c00314{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m113_c00314{transform:matrix(0.158629,0.001428,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158629,0.001428,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158629,0.001428,-0.002250,0.249990,0,0);}
.m142_c00314{transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158649,0.001428,-0.002250,0.249990,0,0);}
.m37_c00314{transform:matrix(0.158964,0.001431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158964,0.001431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158964,0.001431,-0.002250,0.249990,0,0);}
.m2d_c00314{transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158974,0.001431,-0.002250,0.249990,0,0);}
.m16b_c00314{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);}
.m44_c00314{transform:matrix(0.160044,0.001440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160044,0.001440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160044,0.001440,-0.002250,0.249990,0,0);}
.m100_c00314{transform:matrix(0.160124,0.001441,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160124,0.001441,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160124,0.001441,-0.002250,0.249990,0,0);}
.m165_c00314{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);}
.mea_c00314{transform:matrix(0.160588,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160588,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160588,0.001445,-0.002250,0.249990,0,0);}
.mc4_c00314{transform:matrix(0.160603,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160603,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160603,0.001445,-0.002250,0.249990,0,0);}
.m4e_c00314{transform:matrix(0.160633,0.001446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160633,0.001446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160633,0.001446,-0.002250,0.249990,0,0);}
.mcd_c00314{transform:matrix(0.160803,0.001447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160803,0.001447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160803,0.001447,-0.002250,0.249990,0,0);}
.m53_c00314{transform:matrix(0.161063,0.001450,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161063,0.001450,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161063,0.001450,-0.002250,0.249990,0,0);}
.mb6_c00314{transform:matrix(0.161233,0.001451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161233,0.001451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161233,0.001451,-0.002250,0.249990,0,0);}
.mda_c00314{transform:matrix(0.161533,0.001454,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161533,0.001454,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161533,0.001454,-0.002250,0.249990,0,0);}
.m134_c00314{transform:matrix(0.161963,0.001458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161963,0.001458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161963,0.001458,-0.002250,0.249990,0,0);}
.m6d_c00314{transform:matrix(0.162283,0.001461,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162283,0.001461,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162283,0.001461,-0.002250,0.249990,0,0);}
.maa_c00314{transform:matrix(0.162328,0.001461,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162328,0.001461,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162328,0.001461,-0.002250,0.249990,0,0);}
.ma5_c00314{transform:matrix(0.162588,0.001463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162588,0.001463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162588,0.001463,-0.002250,0.249990,0,0);}
.m33_c00314{transform:matrix(0.162693,0.001464,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162693,0.001464,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162693,0.001464,-0.002250,0.249990,0,0);}
.m127_c00314{transform:matrix(0.163148,0.001468,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163148,0.001468,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163148,0.001468,-0.002250,0.249990,0,0);}
.maf_c00314{transform:matrix(0.163273,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163273,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163273,0.001469,-0.002250,0.249990,0,0);}
.me5_c00314{transform:matrix(0.163883,0.001475,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163883,0.001475,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163883,0.001475,-0.002250,0.249990,0,0);}
.mf6_c00314{transform:matrix(0.163978,0.001476,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163978,0.001476,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163978,0.001476,-0.002250,0.249990,0,0);}
.m1e_c00314{transform:matrix(0.164058,0.001477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164058,0.001477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164058,0.001477,-0.002250,0.249990,0,0);}
.md2_c00314{transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164143,0.001477,-0.002250,0.249990,0,0);}
.mb4_c00314{transform:matrix(0.164543,0.001481,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164543,0.001481,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164543,0.001481,-0.002250,0.249990,0,0);}
.m111_c00314{transform:matrix(0.164733,0.001483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164733,0.001483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164733,0.001483,-0.002250,0.249990,0,0);}
.m13b_c00314{transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164883,0.001484,-0.002250,0.249990,0,0);}
.m120_c00314{transform:matrix(0.165458,0.001489,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165458,0.001489,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165458,0.001489,-0.002250,0.249990,0,0);}
.mce_c00314{transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);}
.m7b_c00314{transform:matrix(0.165793,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165793,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165793,0.001492,-0.002250,0.249990,0,0);}
.m104_c00314{transform:matrix(0.166063,0.001495,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166063,0.001495,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166063,0.001495,-0.002250,0.249990,0,0);}
.ma7_c00314{transform:matrix(0.166503,0.001499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166503,0.001499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166503,0.001499,-0.002250,0.249990,0,0);}
.m76_c00314{transform:matrix(0.166558,0.001499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166558,0.001499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166558,0.001499,-0.002250,0.249990,0,0);}
.md9_c00314{transform:matrix(0.167208,0.001505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167208,0.001505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167208,0.001505,-0.002250,0.249990,0,0);}
.mc1_c00314{transform:matrix(0.167248,0.001505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167248,0.001505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167248,0.001505,-0.002250,0.249990,0,0);}
.m3a_c00314{transform:matrix(0.167943,0.001511,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167943,0.001511,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167943,0.001511,-0.002250,0.249990,0,0);}
.m56_c00314{transform:matrix(0.168013,0.001512,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168013,0.001512,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168013,0.001512,-0.002250,0.249990,0,0);}
.md3_c00314{transform:matrix(0.168098,0.001513,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168098,0.001513,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168098,0.001513,-0.002250,0.249990,0,0);}
.m10a_c00314{transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);}
.m72_c00314{transform:matrix(0.168613,0.001518,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168613,0.001518,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168613,0.001518,-0.002250,0.249990,0,0);}
.ma0_c00314{transform:matrix(0.168803,0.001519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168803,0.001519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168803,0.001519,-0.002250,0.249990,0,0);}
.m12e_c00314{transform:matrix(0.168818,0.001519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168818,0.001519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168818,0.001519,-0.002250,0.249990,0,0);}
.m154_c00314{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);}
.m146_c00314{transform:matrix(0.169488,0.001525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169488,0.001525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169488,0.001525,-0.002250,0.249990,0,0);}
.mfd_c00314{transform:matrix(0.169603,0.001526,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169603,0.001526,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169603,0.001526,-0.002250,0.249990,0,0);}
.m7e_c00314{transform:matrix(0.169658,0.001527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169658,0.001527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169658,0.001527,-0.002250,0.249990,0,0);}
.m55_c00314{transform:matrix(0.169788,0.001528,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169788,0.001528,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169788,0.001528,-0.002250,0.249990,0,0);}
.m31_c00314{transform:matrix(0.170098,0.001531,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170098,0.001531,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170098,0.001531,-0.002250,0.249990,0,0);}
.mf3_c00314{transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170463,0.001534,-0.002250,0.249990,0,0);}
.m7c_c00314{transform:matrix(0.171073,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171073,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171073,0.001540,-0.002250,0.249990,0,0);}
.m117_c00314{transform:matrix(0.171428,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171428,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171428,0.001543,-0.002250,0.249990,0,0);}
.m159_c00314{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);}
.m5c_c00314{transform:matrix(0.171733,0.001546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171733,0.001546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171733,0.001546,-0.002250,0.249990,0,0);}
.mfa_c00314{transform:matrix(0.171913,0.001547,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171913,0.001547,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171913,0.001547,-0.002250,0.249990,0,0);}
.m131_c00314{transform:matrix(0.172778,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172778,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172778,0.001555,-0.002250,0.249990,0,0);}
.m4_c00314{transform:matrix(0.172871,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172871,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172871,0.001729,-0.002500,0.249988,0,0);}
.m40_c00314{transform:matrix(0.173388,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173388,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173388,0.001560,-0.002250,0.249990,0,0);}
.m15f_c00314{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);}
.mb8_c00314{transform:matrix(0.173868,0.001565,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173868,0.001565,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173868,0.001565,-0.002250,0.249990,0,0);}
.m2f_c00314{transform:matrix(0.173993,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173993,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173993,0.001566,-0.002250,0.249990,0,0);}
.mca_c00314{transform:matrix(0.174073,0.001567,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174073,0.001567,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174073,0.001567,-0.002250,0.249990,0,0);}
.m11a_c00314{transform:matrix(0.174328,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174328,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174328,0.001569,-0.002250,0.249990,0,0);}
.mf7_c00314{transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174513,0.001571,-0.002250,0.249990,0,0);}
.m121_c00314{transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);}
.md1_c00314{transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);}
.m10d_c00314{transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);}
.m102_c00314{transform:matrix(0.176148,0.001585,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176148,0.001585,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176148,0.001585,-0.002250,0.249990,0,0);}
.mff_c00314{transform:matrix(0.176373,0.001587,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176373,0.001587,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176373,0.001587,-0.002250,0.249990,0,0);}
.m16c_c00314{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);}
.m60_c00314{transform:matrix(0.177158,0.001594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177158,0.001594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177158,0.001594,-0.002250,0.249990,0,0);}
.m105_c00314{transform:matrix(0.177288,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177288,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177288,0.001596,-0.002250,0.249990,0,0);}
.md0_c00314{transform:matrix(0.177308,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177308,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177308,0.001596,-0.002250,0.249990,0,0);}
.m48_c00314{transform:matrix(0.177393,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177393,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177393,0.001597,-0.002250,0.249990,0,0);}
.m136_c00314{transform:matrix(0.177658,0.001599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177658,0.001599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177658,0.001599,-0.002250,0.249990,0,0);}
.m13a_c00314{transform:matrix(0.177883,0.001601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177883,0.001601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177883,0.001601,-0.002250,0.249990,0,0);}
.m8f_c00314{transform:matrix(0.177943,0.001601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177943,0.001601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177943,0.001601,-0.002250,0.249990,0,0);}
.m63_c00314{transform:matrix(0.178323,0.001605,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178323,0.001605,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178323,0.001605,-0.002250,0.249990,0,0);}
.m68_c00314{transform:matrix(0.178713,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178713,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178713,0.001608,-0.002250,0.249990,0,0);}
.m6e_c00314{transform:matrix(0.178743,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178743,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178743,0.001609,-0.002250,0.249990,0,0);}
.ma2_c00314{transform:matrix(0.179393,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179393,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179393,0.001615,-0.002250,0.249990,0,0);}
.m62_c00314{transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);}
.m12c_c00314{transform:matrix(0.179743,0.001618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179743,0.001618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179743,0.001618,-0.002250,0.249990,0,0);}
.m2a_c00314{transform:matrix(0.179813,0.001618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179813,0.001618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179813,0.001618,-0.002250,0.249990,0,0);}
.m109_c00314{transform:matrix(0.180363,0.001623,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180363,0.001623,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180363,0.001623,-0.002250,0.249990,0,0);}
.m135_c00314{transform:matrix(0.180848,0.001628,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180848,0.001628,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180848,0.001628,-0.002250,0.249990,0,0);}
.ma3_c00314{transform:matrix(0.180948,0.001629,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180948,0.001629,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180948,0.001629,-0.002250,0.249990,0,0);}
.m123_c00314{transform:matrix(0.181133,0.001630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181133,0.001630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181133,0.001630,-0.002250,0.249990,0,0);}
.m103_c00314{transform:matrix(0.181358,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181358,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181358,0.001632,-0.002250,0.249990,0,0);}
.m162_c00314{transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);}
.ma1_c00314{transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);}
.m96_c00314{transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181633,0.001635,-0.002250,0.249990,0,0);}
.m155_c00314{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);}
.mcf_c00314{transform:matrix(0.182013,0.001638,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182013,0.001638,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182013,0.001638,-0.002250,0.249990,0,0);}
.ma4_c00314{transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);}
.mfe_c00314{transform:matrix(0.182338,0.001641,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182338,0.001641,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182338,0.001641,-0.002250,0.249990,0,0);}
.m10b_c00314{transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);}
.md6_c00314{transform:matrix(0.182873,0.001646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182873,0.001646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182873,0.001646,-0.002250,0.249990,0,0);}
.md8_c00314{transform:matrix(0.183248,0.001649,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183248,0.001649,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183248,0.001649,-0.002250,0.249990,0,0);}
.m13c_c00314{transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);}
.m138_c00314{transform:matrix(0.183798,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183798,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183798,0.001654,-0.002250,0.249990,0,0);}
.m94_c00314{transform:matrix(0.183883,0.001655,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183883,0.001655,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183883,0.001655,-0.002250,0.249990,0,0);}
.m156_c00314{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);}
.m107_c00314{transform:matrix(0.184078,0.001657,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184078,0.001657,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184078,0.001657,-0.002250,0.249990,0,0);}
.m83_c00314{transform:matrix(0.184158,0.001657,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184158,0.001657,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184158,0.001657,-0.002250,0.249990,0,0);}
.m151_c00314{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);}
.m149_c00314{transform:matrix(0.184538,0.001661,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184538,0.001661,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184538,0.001661,-0.002250,0.249990,0,0);}
.mb7_c00314{transform:matrix(0.184648,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184648,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184648,0.001662,-0.002250,0.249990,0,0);}
.mc9_c00314{transform:matrix(0.184718,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184718,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184718,0.001662,-0.002250,0.249990,0,0);}
.m25_c00314{transform:matrix(0.184918,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184918,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184918,0.001664,-0.002250,0.249990,0,0);}
.md5_c00314{transform:matrix(0.185163,0.001666,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185163,0.001666,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185163,0.001666,-0.002250,0.249990,0,0);}
.m10f_c00314{transform:matrix(0.185212,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185212,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185212,0.001667,-0.002250,0.249990,0,0);}
.m11b_c00314{transform:matrix(0.185297,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185297,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185297,0.001668,-0.002250,0.249990,0,0);}
.m14c_c00314{transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);}
.m38_c00314{transform:matrix(0.185342,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185342,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185342,0.001668,-0.002250,0.249990,0,0);}
.m3b_c00314{transform:matrix(0.185692,0.001671,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185692,0.001671,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185692,0.001671,-0.002250,0.249990,0,0);}
.m21_c00314{transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185742,0.001672,-0.002250,0.249990,0,0);}
.mfb_c00314{transform:matrix(0.185832,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185832,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185832,0.001672,-0.002250,0.249990,0,0);}
.m2e_c00314{transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185872,0.001673,-0.002250,0.249990,0,0);}
.m132_c00314{transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);}
.m14d_c00314{transform:matrix(0.185967,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185967,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185967,0.001674,-0.002250,0.249990,0,0);}
.mc5_c00314{transform:matrix(0.186002,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186002,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186002,0.001674,-0.002250,0.249990,0,0);}
.mb3_c00314{transform:matrix(0.186152,0.001675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186152,0.001675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186152,0.001675,-0.002250,0.249990,0,0);}
.mef_c00314{transform:matrix(0.186192,0.001676,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186192,0.001676,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186192,0.001676,-0.002250,0.249990,0,0);}
.m14a_c00314{transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);}
.m20_c00314{transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);}
.mb5_c00314{transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);}
.m13e_c00314{transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);}
.m85_c00314{transform:matrix(0.187292,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187292,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187292,0.001686,-0.002250,0.249990,0,0);}
.m66_c00314{transform:matrix(0.187662,0.001689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187662,0.001689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187662,0.001689,-0.002250,0.249990,0,0);}
.m164_c00314{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);}
.m11c_c00314{transform:matrix(0.187767,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187767,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187767,0.001690,-0.002250,0.249990,0,0);}
.mbe_c00314{transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187902,0.001691,-0.002250,0.249990,0,0);}
.med_c00314{transform:matrix(0.188242,0.001694,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188242,0.001694,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188242,0.001694,-0.002250,0.249990,0,0);}
.m124_c00314{transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188292,0.001695,-0.002250,0.249990,0,0);}
.m125_c00314{transform:matrix(0.188777,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188777,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188777,0.001699,-0.002250,0.249990,0,0);}
.mbf_c00314{transform:matrix(0.188817,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188817,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188817,0.001699,-0.002250,0.249990,0,0);}
.mad_c00314{transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188842,0.001700,-0.002250,0.249990,0,0);}
.meb_c00314{transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188987,0.001701,-0.002250,0.249990,0,0);}
.m26_c00314{transform:matrix(0.189182,0.001703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189182,0.001703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189182,0.001703,-0.002250,0.249990,0,0);}
.m23_c00314{transform:matrix(0.189192,0.001703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189192,0.001703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189192,0.001703,-0.002250,0.249990,0,0);}
.mcc_c00314{transform:matrix(0.189487,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189487,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189487,0.001705,-0.002250,0.249990,0,0);}
.m90_c00314{transform:matrix(0.189682,0.001707,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189682,0.001707,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189682,0.001707,-0.002250,0.249990,0,0);}
.m1f_c00314{transform:matrix(0.190017,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190017,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190017,0.001710,-0.002250,0.249990,0,0);}
.m169_c00314{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);}
.mb2_c00314{transform:matrix(0.190382,0.001713,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190382,0.001713,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190382,0.001713,-0.002250,0.249990,0,0);}
.m108_c00314{transform:matrix(0.190497,0.001714,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190497,0.001714,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190497,0.001714,-0.002250,0.249990,0,0);}
.mec_c00314{transform:matrix(0.191037,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191037,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191037,0.001719,-0.002250,0.249990,0,0);}
.m3d_c00314{transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);}
.mf8_c00314{transform:matrix(0.191202,0.001721,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191202,0.001721,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191202,0.001721,-0.002250,0.249990,0,0);}
.m97_c00314{transform:matrix(0.191857,0.001727,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191857,0.001727,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191857,0.001727,-0.002250,0.249990,0,0);}
.mbc_c00314{transform:matrix(0.191982,0.001728,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191982,0.001728,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191982,0.001728,-0.002250,0.249990,0,0);}
.ma8_c00314{transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);}
.m36_c00314{transform:matrix(0.192432,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192432,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192432,0.001732,-0.002250,0.249990,0,0);}
.m110_c00314{transform:matrix(0.192472,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192472,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192472,0.001732,-0.002250,0.249990,0,0);}
.m11f_c00314{transform:matrix(0.192902,0.001736,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192902,0.001736,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192902,0.001736,-0.002250,0.249990,0,0);}
.mbd_c00314{transform:matrix(0.192942,0.001736,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192942,0.001736,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192942,0.001736,-0.002250,0.249990,0,0);}
.m61_c00314{transform:matrix(0.192947,0.001737,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192947,0.001737,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192947,0.001737,-0.002250,0.249990,0,0);}
.m54_c00314{transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);}
.m46_c00314{transform:matrix(0.193267,0.001739,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193267,0.001739,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193267,0.001739,-0.002250,0.249990,0,0);}
.m5b_c00314{transform:matrix(0.193932,0.001745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193932,0.001745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193932,0.001745,-0.002250,0.249990,0,0);}
.mfc_c00314{transform:matrix(0.193947,0.001746,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193947,0.001746,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193947,0.001746,-0.002250,0.249990,0,0);}
.mac_c00314{transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194067,0.001747,-0.002250,0.249990,0,0);}
.m43_c00314{transform:matrix(0.194142,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194142,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194142,0.001747,-0.002250,0.249990,0,0);}
.m5e_c00314{transform:matrix(0.194182,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194182,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194182,0.001748,-0.002250,0.249990,0,0);}
.m116_c00314{transform:matrix(0.194272,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194272,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194272,0.001748,-0.002250,0.249990,0,0);}
.m14b_c00314{transform:matrix(0.194792,0.001753,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194792,0.001753,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194792,0.001753,-0.002250,0.249990,0,0);}
.m35_c00314{transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);}
.m67_c00314{transform:matrix(0.194967,0.001755,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194967,0.001755,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194967,0.001755,-0.002250,0.249990,0,0);}
.m7d_c00314{transform:matrix(0.195052,0.001755,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195052,0.001755,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195052,0.001755,-0.002250,0.249990,0,0);}
.mf4_c00314{transform:matrix(0.195767,0.001762,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195767,0.001762,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195767,0.001762,-0.002250,0.249990,0,0);}
.mf2_c00314{transform:matrix(0.195857,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195857,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195857,0.001763,-0.002250,0.249990,0,0);}
.mf9_c00314{transform:matrix(0.196162,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196162,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196162,0.001765,-0.002250,0.249990,0,0);}
.m51_c00314{transform:matrix(0.196597,0.001769,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196597,0.001769,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196597,0.001769,-0.002250,0.249990,0,0);}
.m4d_c00314{transform:matrix(0.196667,0.001770,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196667,0.001770,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196667,0.001770,-0.002250,0.249990,0,0);}
.m106_c00314{transform:matrix(0.196917,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196917,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196917,0.001772,-0.002250,0.249990,0,0);}
.m101_c00314{transform:matrix(0.197032,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197032,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197032,0.001773,-0.002250,0.249990,0,0);}
.m69_c00314{transform:matrix(0.197157,0.001774,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197157,0.001774,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197157,0.001774,-0.002250,0.249990,0,0);}
.m141_c00314{transform:matrix(0.197272,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197272,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197272,0.001775,-0.002250,0.249990,0,0);}
.m122_c00314{transform:matrix(0.197422,0.001777,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197422,0.001777,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197422,0.001777,-0.002250,0.249990,0,0);}
.m4a_c00314{transform:matrix(0.197472,0.001777,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197472,0.001777,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197472,0.001777,-0.002250,0.249990,0,0);}
.m81_c00314{transform:matrix(0.197992,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197992,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197992,0.001782,-0.002250,0.249990,0,0);}
.m2c_c00314{transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);}
.m28_c00314{transform:matrix(0.198887,0.001790,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198887,0.001790,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198887,0.001790,-0.002250,0.249990,0,0);}
.me2_c00314{transform:matrix(0.199312,0.001794,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199312,0.001794,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199312,0.001794,-0.002250,0.249990,0,0);}
.m78_c00314{transform:matrix(0.199347,0.001794,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199347,0.001794,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199347,0.001794,-0.002250,0.249990,0,0);}
.m14e_c00314{transform:matrix(0.199582,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199582,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199582,0.001796,-0.002250,0.249990,0,0);}
.m45_c00314{transform:matrix(0.200792,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200792,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200792,0.001807,-0.002250,0.249990,0,0);}
.m6b_c00314{transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201032,0.001809,-0.002250,0.249990,0,0);}
.mf0_c00314{transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201217,0.001811,-0.002250,0.249990,0,0);}
.m119_c00314{transform:matrix(0.201507,0.001814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201507,0.001814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201507,0.001814,-0.002250,0.249990,0,0);}
.m0_c00314{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);}
.m12a_c00314{transform:matrix(0.202152,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202152,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202152,0.001819,-0.002250,0.249990,0,0);}
.m57_c00314{transform:matrix(0.202177,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202177,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202177,0.001820,-0.002250,0.249990,0,0);}
.m15b_c00314{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);}
.mcb_c00314{transform:matrix(0.203057,0.001828,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203057,0.001828,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203057,0.001828,-0.002250,0.249990,0,0);}
.m71_c00314{transform:matrix(0.204007,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204007,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204007,0.001836,-0.002250,0.249990,0,0);}
.m144_c00314{transform:matrix(0.204207,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204207,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204207,0.001838,-0.002250,0.249990,0,0);}
.m98_c00314{transform:matrix(0.204262,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204262,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204262,0.001838,-0.002250,0.249990,0,0);}
.m114_c00314{transform:matrix(0.204307,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204307,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204307,0.001839,-0.002250,0.249990,0,0);}
.m9d_c00314{transform:matrix(0.204312,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204312,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204312,0.001839,-0.002250,0.249990,0,0);}
.m9a_c00314{transform:matrix(0.204657,0.001842,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204657,0.001842,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204657,0.001842,-0.002250,0.249990,0,0);}
.m126_c00314{transform:matrix(0.205222,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205222,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205222,0.001847,-0.002250,0.249990,0,0);}
.m52_c00314{transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);}
.m93_c00314{transform:matrix(0.206217,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206217,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206217,0.001856,-0.002250,0.249990,0,0);}
.m118_c00314{transform:matrix(0.206872,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206872,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206872,0.001862,-0.002250,0.249990,0,0);}
.m145_c00314{transform:matrix(0.207202,0.001865,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207202,0.001865,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207202,0.001865,-0.002250,0.249990,0,0);}
.m64_c00314{transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);}
.mee_c00314{transform:matrix(0.208687,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208687,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208687,0.001878,-0.002250,0.249990,0,0);}
.m82_c00314{transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);}
.me1_c00314{transform:matrix(0.209682,0.001887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209682,0.001887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209682,0.001887,-0.002250,0.249990,0,0);}
.m133_c00314{transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);}
.m39_c00314{transform:matrix(0.210946,0.001899,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210946,0.001899,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210946,0.001899,-0.002250,0.249990,0,0);}
.m95_c00314{transform:matrix(0.210956,0.001899,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210956,0.001899,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210956,0.001899,-0.002250,0.249990,0,0);}
.m77_c00314{transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211151,0.001900,-0.002250,0.249990,0,0);}
.m75_c00314{transform:matrix(0.211346,0.001902,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211346,0.001902,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211346,0.001902,-0.002250,0.249990,0,0);}
.ma6_c00314{transform:matrix(0.211921,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211921,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211921,0.001907,-0.002250,0.249990,0,0);}
.m15c_c00314{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);}
.m89_c00314{transform:matrix(0.213316,0.001920,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213316,0.001920,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213316,0.001920,-0.002250,0.249990,0,0);}
.mb0_c00314{transform:matrix(0.213401,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213401,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213401,0.001921,-0.002250,0.249990,0,0);}
.mc0_c00314{transform:matrix(0.213481,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213481,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213481,0.001921,-0.002250,0.249990,0,0);}
.m41_c00314{transform:matrix(0.213901,0.001925,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213901,0.001925,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213901,0.001925,-0.002250,0.249990,0,0);}
.m152_c00314{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);}
.mc7_c00314{transform:matrix(0.214606,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214606,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214606,0.001931,-0.002250,0.249990,0,0);}
.m30_c00314{transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);}
.m7f_c00314{transform:matrix(0.215031,0.001935,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215031,0.001935,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215031,0.001935,-0.002250,0.249990,0,0);}
.m13_c00314{transform:matrix(0.215994,0.002160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215994,0.002160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215994,0.002160,-0.002500,0.249988,0,0);}
.m74_c00314{transform:matrix(0.216276,0.001946,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216276,0.001946,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216276,0.001946,-0.002250,0.249990,0,0);}
.m29_c00314{transform:matrix(0.216841,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216841,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216841,0.001952,-0.002250,0.249990,0,0);}
.m49_c00314{transform:matrix(0.217611,0.001959,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217611,0.001959,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217611,0.001959,-0.002250,0.249990,0,0);}
.me4_c00314{transform:matrix(0.218336,0.001965,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218336,0.001965,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218336,0.001965,-0.002250,0.249990,0,0);}
.me6_c00314{transform:matrix(0.219406,0.001975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219406,0.001975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219406,0.001975,-0.002250,0.249990,0,0);}
.m58_c00314{transform:matrix(0.219531,0.001976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219531,0.001976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219531,0.001976,-0.002250,0.249990,0,0);}
.m9e_c00314{transform:matrix(0.219991,0.001980,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219991,0.001980,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219991,0.001980,-0.002250,0.249990,0,0);}
.m9c_c00314{transform:matrix(0.221756,0.001996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221756,0.001996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221756,0.001996,-0.002250,0.249990,0,0);}
.m1_c00314{transform:matrix(0.223274,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223274,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223274,0.002233,-0.002500,0.249988,0,0);}
.m6a_c00314{transform:matrix(0.223631,0.002013,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223631,0.002013,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223631,0.002013,-0.002250,0.249990,0,0);}
.m22_c00314{transform:matrix(0.224156,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224156,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224156,0.002017,-0.002250,0.249990,0,0);}
.me3_c00314{transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);}
.m24_c00314{transform:matrix(0.226431,0.002038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226431,0.002038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226431,0.002038,-0.002250,0.249990,0,0);}
.m88_c00314{transform:matrix(0.227616,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227616,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227616,0.002049,-0.002250,0.249990,0,0);}
.m8d_c00314{transform:matrix(0.232411,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232411,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232411,0.002092,-0.002250,0.249990,0,0);}
.m2b_c00314{transform:matrix(0.232831,0.002095,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232831,0.002095,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232831,0.002095,-0.002250,0.249990,0,0);}
.m16a_c00314{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_c00314{transform:matrix(0.232896,0.002096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232896,0.002096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232896,0.002096,-0.002250,0.249990,0,0);}
.m8a_c00314{transform:matrix(0.233226,0.002099,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233226,0.002099,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233226,0.002099,-0.002250,0.249990,0,0);}
.ma9_c00314{transform:matrix(0.233551,0.002102,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233551,0.002102,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233551,0.002102,-0.002250,0.249990,0,0);}
.m15e_c00314{transform:matrix(0.234220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234220,0.000000,0.000000,0.250000,0,0);}
.mf1_c00314{transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235540,0.002120,-0.002250,0.249990,0,0);}
.m15d_c00314{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.237405,0.002137,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237405,0.002137,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237405,0.002137,-0.002250,0.249990,0,0);}
.mf5_c00314{transform:matrix(0.239925,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239925,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239925,0.002159,-0.002250,0.249990,0,0);}
.m5_c00314{transform:matrix(0.240108,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240108,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240108,0.002401,-0.002500,0.249988,0,0);}
.m15a_c00314{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);}
.m59_c00314{transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);}
.m14_c00314{transform:matrix(0.245913,0.002459,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245913,0.002459,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245913,0.002459,-0.002500,0.249988,0,0);}
.m150_c00314{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{transform:matrix(0.246835,0.002222,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246835,0.002222,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246835,0.002222,-0.002250,0.249990,0,0);}
.me7_c00314{transform:matrix(0.247435,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247435,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247435,0.002227,-0.002250,0.249990,0,0);}
.m16_c00314{transform:matrix(0.247508,0.002475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247508,0.002475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247508,0.002475,-0.002500,0.249988,0,0);}
.m6c_c00314{transform:matrix(0.248485,0.002236,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248485,0.002236,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248485,0.002236,-0.002250,0.249990,0,0);}
.m147_c00314{transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);}
.m14f_c00314{transform:matrix(0.251350,0.002262,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251350,0.002262,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251350,0.002262,-0.002250,0.249990,0,0);}
.mde_c00314{transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);}
.m6f_c00314{transform:matrix(0.253505,0.002282,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253505,0.002282,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253505,0.002282,-0.002250,0.249990,0,0);}
.m73_c00314{transform:matrix(0.254150,0.002287,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254150,0.002287,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254150,0.002287,-0.002250,0.249990,0,0);}
.m168_c00314{transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);}
.m4b_c00314{transform:matrix(0.256335,0.002307,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256335,0.002307,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256335,0.002307,-0.002250,0.249990,0,0);}
.m10_c00314{transform:matrix(0.257422,0.002574,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257422,0.002574,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257422,0.002574,-0.002500,0.249988,0,0);}
.m11d_c00314{transform:matrix(0.258350,0.002325,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258350,0.002325,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258350,0.002325,-0.002250,0.249990,0,0);}
.m70_c00314{transform:matrix(0.260274,0.002342,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260274,0.002342,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260274,0.002342,-0.002250,0.249990,0,0);}
.m129_c00314{transform:matrix(0.265029,0.002385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265029,0.002385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265029,0.002385,-0.002250,0.249990,0,0);}
.m7a_c00314{transform:matrix(0.268324,0.002415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268324,0.002415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268324,0.002415,-0.002250,0.249990,0,0);}
.me0_c00314{transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271379,0.002442,-0.002250,0.249990,0,0);}
.m4f_c00314{transform:matrix(0.272929,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272929,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272929,0.002456,-0.002250,0.249990,0,0);}
.m9b_c00314{transform:matrix(0.279494,0.002515,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279494,0.002515,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279494,0.002515,-0.002250,0.249990,0,0);}
.m9f_c00314{transform:matrix(0.280784,0.002527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280784,0.002527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280784,0.002527,-0.002250,0.249990,0,0);}
.m148_c00314{transform:matrix(0.280934,0.002528,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280934,0.002528,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280934,0.002528,-0.002250,0.249990,0,0);}
.m99_c00314{transform:matrix(0.284418,0.002560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284418,0.002560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284418,0.002560,-0.002250,0.249990,0,0);}
.m130_c00314{transform:matrix(0.292883,0.002636,-0.002250,0.249990,0,0);-ms-transform:matrix(0.292883,0.002636,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.292883,0.002636,-0.002250,0.249990,0,0);}
.m17_c00314{transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);}
.ma_c00314{transform:matrix(0.319044,0.003190,-0.002500,0.249988,0,0);-ms-transform:matrix(0.319044,0.003190,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.319044,0.003190,-0.002500,0.249988,0,0);}
.m160_c00314{transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325315,0.000000,0.000000,0.250000,0,0);}
.m137_c00314{transform:matrix(0.328462,0.002956,-0.002250,0.249990,0,0);-ms-transform:matrix(0.328462,0.002956,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.328462,0.002956,-0.002250,0.249990,0,0);}
.mc_c00314{transform:matrix(0.334268,0.003343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.334268,0.003343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.334268,0.003343,-0.002500,0.249988,0,0);}
.m12b_c00314{transform:matrix(0.335621,0.003021,-0.002250,0.249990,0,0);-ms-transform:matrix(0.335621,0.003021,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.335621,0.003021,-0.002250,0.249990,0,0);}
.m128_c00314{transform:matrix(0.339311,0.003054,-0.002250,0.249990,0,0);-ms-transform:matrix(0.339311,0.003054,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.339311,0.003054,-0.002250,0.249990,0,0);}
.m50_c00314{transform:matrix(0.341266,0.003071,-0.002250,0.249990,0,0);-ms-transform:matrix(0.341266,0.003071,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.341266,0.003071,-0.002250,0.249990,0,0);}
.me8_c00314{transform:matrix(0.344526,0.003101,-0.002250,0.249990,0,0);-ms-transform:matrix(0.344526,0.003101,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.344526,0.003101,-0.002250,0.249990,0,0);}
.mb_c00314{transform:matrix(0.345168,0.003452,-0.002500,0.249988,0,0);-ms-transform:matrix(0.345168,0.003452,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.345168,0.003452,-0.002500,0.249988,0,0);}
.m11e_c00314{transform:matrix(0.349071,0.003142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.349071,0.003142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.349071,0.003142,-0.002250,0.249990,0,0);}
.m167_c00314{transform:matrix(0.351880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351880,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.356572,0.003566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.356572,0.003566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.356572,0.003566,-0.002500,0.249988,0,0);}
.mf_c00314{transform:matrix(0.359007,0.003590,-0.002500,0.249988,0,0);-ms-transform:matrix(0.359007,0.003590,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.359007,0.003590,-0.002500,0.249988,0,0);}
.m7_c00314{transform:matrix(0.371771,0.003718,-0.002500,0.249988,0,0);-ms-transform:matrix(0.371771,0.003718,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.371771,0.003718,-0.002500,0.249988,0,0);}
.m9_c00314{transform:matrix(0.375126,0.003751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.375126,0.003751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.375126,0.003751,-0.002500,0.249988,0,0);}
.m143_c00314{transform:matrix(0.391674,0.003525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.391674,0.003525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.391674,0.003525,-0.002250,0.249990,0,0);}
.m15_c00314{transform:matrix(0.391765,0.003918,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391765,0.003918,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391765,0.003918,-0.002500,0.249988,0,0);}
.mdf_c00314{transform:matrix(0.405589,0.003650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.405589,0.003650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.405589,0.003650,-0.002250,0.249990,0,0);}
.m4c_c00314{transform:matrix(0.414803,0.003733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.414803,0.003733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.414803,0.003733,-0.002250,0.249990,0,0);}
.m8_c00314{transform:matrix(0.415104,0.004151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.415104,0.004151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.415104,0.004151,-0.002500,0.249988,0,0);}
.m27_c00314{transform:matrix(0.473376,0.004260,-0.002250,0.249990,0,0);-ms-transform:matrix(0.473376,0.004260,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.473376,0.004260,-0.002250,0.249990,0,0);}
.m11_c00314{transform:matrix(0.484631,0.004846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.484631,0.004846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.484631,0.004846,-0.002500,0.249988,0,0);}
.m6_c00314{transform:matrix(0.487666,0.004877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.487666,0.004877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.487666,0.004877,-0.002500,0.249988,0,0);}
.me_c00314{transform:matrix(0.491545,0.004915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.491545,0.004915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.491545,0.004915,-0.002500,0.249988,0,0);}
.m12_c00314{transform:matrix(0.530188,0.005302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.530188,0.005302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.530188,0.005302,-0.002500,0.249988,0,0);}
.m158_c00314{transform:matrix(0.530355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530355,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.540583,0.005406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.540583,0.005406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.540583,0.005406,-0.002500,0.249988,0,0);}
.m3f_c00314{transform:matrix(0.728930,0.006560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.728930,0.006560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.728930,0.006560,-0.002250,0.249990,0,0);}
.m5a_c00314{transform:matrix(0.810927,0.007298,-0.002250,0.249990,0,0);-ms-transform:matrix(0.810927,0.007298,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.810927,0.007298,-0.002250,0.249990,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;}
.fse_c00314{font-size:47.250000px;}
.fs0_c00314{font-size:52.502625px;}
.fsd_c00314{font-size:57.750000px;}
.fsf_c00314{font-size:59.850000px;}
.fs7_c00314{font-size:64.052594px;}
.fsc_c00314{font-size:66.152679px;}
.fsa_c00314{font-size:68.252764px;}
.fs5_c00314{font-size:69.302807px;}
.fs8_c00314{font-size:70.352849px;}
.fs6_c00314{font-size:71.402892px;}
.fs4_c00314{font-size:72.452934px;}
.fsb_c00314{font-size:75.603062px;}
.fs3_c00314{font-size:97.653955px;}
.fs9_c00314{font-size:99.754040px;}
.fs2_c00314{font-size:120.756037px;}
.fs1_c00314{font-size:148.057402px;}
.y0_c00314{bottom:0.000000px;}
.y159_c00314{bottom:153.801000px;}
.y158_c00314{bottom:171.046500px;}
.y157_c00314{bottom:175.291500px;}
.y156_c00314{bottom:225.199519px;}
.y155_c00314{bottom:225.747448px;}
.y154_c00314{bottom:226.565350px;}
.y153_c00314{bottom:227.763216px;}
.y152_c00314{bottom:228.264949px;}
.y151_c00314{bottom:229.296349px;}
.y150_c00314{bottom:229.879627px;}
.y14f_c00314{bottom:230.512491px;}
.y14e_c00314{bottom:231.472720px;}
.y14d_c00314{bottom:231.936700px;}
.y14c_c00314{bottom:232.638168px;}
.y14b_c00314{bottom:234.350572px;}
.y14a_c00314{bottom:234.880279px;}
.y149_c00314{bottom:248.157709px;}
.y148_c00314{bottom:248.497386px;}
.y147_c00314{bottom:248.993853px;}
.y146_c00314{bottom:249.305043px;}
.y145_c00314{bottom:249.777643px;}
.y144_c00314{bottom:250.569606px;}
.y143_c00314{bottom:251.723964px;}
.y142_c00314{bottom:252.277350px;}
.y141_c00314{bottom:252.647499px;}
.y140_c00314{bottom:253.591200px;}
.y13f_c00314{bottom:253.995292px;}
.y13e_c00314{bottom:254.812945px;}
.y13d_c00314{bottom:255.285775px;}
.y13c_c00314{bottom:256.628841px;}
.y13b_c00314{bottom:271.479502px;}
.y13a_c00314{bottom:271.972876px;}
.y139_c00314{bottom:272.779912px;}
.y138_c00314{bottom:273.643557px;}
.y137_c00314{bottom:274.603737px;}
.y136_c00314{bottom:275.179572px;}
.y135_c00314{bottom:275.805964px;}
.y134_c00314{bottom:276.406842px;}
.y133_c00314{bottom:277.059060px;}
.y132_c00314{bottom:278.284884px;}
.y131_c00314{bottom:279.151743px;}
.y130_c00314{bottom:279.967302px;}
.y12f_c00314{bottom:294.661708px;}
.y12e_c00314{bottom:295.084065px;}
.y12d_c00314{bottom:295.432026px;}
.y12c_c00314{bottom:296.116494px;}
.y12b_c00314{bottom:297.421962px;}
.y12a_c00314{bottom:297.779256px;}
.y129_c00314{bottom:298.210959px;}
.y128_c00314{bottom:298.882366px;}
.y127_c00314{bottom:299.718867px;}
.y126_c00314{bottom:299.956504px;}
.y125_c00314{bottom:300.568711px;}
.y124_c00314{bottom:301.420569px;}
.y123_c00314{bottom:301.693297px;}
.y122_c00314{bottom:302.382723px;}
.y121_c00314{bottom:316.200193px;}
.y120_c00314{bottom:316.937938px;}
.y11f_c00314{bottom:317.439889px;}
.y11e_c00314{bottom:317.980809px;}
.y11d_c00314{bottom:318.457339px;}
.y11c_c00314{bottom:319.226893px;}
.y11b_c00314{bottom:319.585912px;}
.y11a_c00314{bottom:320.184507px;}
.y119_c00314{bottom:320.455122px;}
.y118_c00314{bottom:322.372794px;}
.y117_c00314{bottom:323.156949px;}
.y116_c00314{bottom:323.855361px;}
.y115_c00314{bottom:324.254671px;}
.y114_c00314{bottom:342.856117px;}
.y113_c00314{bottom:344.003368px;}
.y112_c00314{bottom:344.539341px;}
.y111_c00314{bottom:345.650283px;}
.y110_c00314{bottom:346.025932px;}
.y10f_c00314{bottom:346.496109px;}
.y10e_c00314{bottom:347.205075px;}
.y10d_c00314{bottom:361.700299px;}
.y10c_c00314{bottom:362.484778px;}
.y10b_c00314{bottom:363.069136px;}
.y10a_c00314{bottom:364.269270px;}
.y109_c00314{bottom:365.069809px;}
.y108_c00314{bottom:365.676724px;}
.y107_c00314{bottom:366.816711px;}
.y106_c00314{bottom:367.124241px;}
.y105_c00314{bottom:367.545501px;}
.y104_c00314{bottom:368.817235px;}
.y103_c00314{bottom:369.883878px;}
.y102_c00314{bottom:384.834420px;}
.y101_c00314{bottom:385.400358px;}
.y100_c00314{bottom:386.463165px;}
.yff_c00314{bottom:386.898352px;}
.yfe_c00314{bottom:387.559696px;}
.yfd_c00314{bottom:388.680322px;}
.yfc_c00314{bottom:389.088970px;}
.yfb_c00314{bottom:389.763564px;}
.yfa_c00314{bottom:390.568786px;}
.yf9_c00314{bottom:391.039156px;}
.yf8_c00314{bottom:391.605054px;}
.yf7_c00314{bottom:392.249218px;}
.yf6_c00314{bottom:392.565162px;}
.yf5_c00314{bottom:407.652211px;}
.yf4_c00314{bottom:408.530413px;}
.yf3_c00314{bottom:408.834217px;}
.yf2_c00314{bottom:409.955260px;}
.yf1_c00314{bottom:410.401870px;}
.yf0_c00314{bottom:411.628606px;}
.yef_c00314{bottom:412.231650px;}
.yee_c00314{bottom:413.098831px;}
.yed_c00314{bottom:414.136546px;}
.yec_c00314{bottom:414.403372px;}
.yeb_c00314{bottom:414.972531px;}
.yea_c00314{bottom:429.824031px;}
.ye9_c00314{bottom:430.765276px;}
.ye8_c00314{bottom:431.522524px;}
.ye7_c00314{bottom:432.228019px;}
.ye6_c00314{bottom:433.179853px;}
.ye5_c00314{bottom:433.520514px;}
.ye4_c00314{bottom:434.117655px;}
.ye3_c00314{bottom:435.540138px;}
.ye2_c00314{bottom:435.933685px;}
.ye1_c00314{bottom:436.402876px;}
.ye0_c00314{bottom:436.803919px;}
.ydf_c00314{bottom:437.403262px;}
.yde_c00314{bottom:437.921545px;}
.ydd_c00314{bottom:452.692141px;}
.ydc_c00314{bottom:453.343977px;}
.ydb_c00314{bottom:454.005483px;}
.yda_c00314{bottom:454.402314px;}
.yd9_c00314{bottom:455.050921px;}
.yd8_c00314{bottom:455.750554px;}
.yd7_c00314{bottom:456.433048px;}
.yd6_c00314{bottom:457.499893px;}
.yd5_c00314{bottom:458.306344px;}
.yd4_c00314{bottom:458.807103px;}
.yd3_c00314{bottom:459.530209px;}
.yd2_c00314{bottom:460.064868px;}
.yd1_c00314{bottom:475.792621px;}
.yd0_c00314{bottom:476.171866px;}
.ycf_c00314{bottom:477.444178px;}
.yce_c00314{bottom:477.807202px;}
.ycd_c00314{bottom:479.161633px;}
.ycc_c00314{bottom:480.423937px;}
.ycb_c00314{bottom:481.070392px;}
.yca_c00314{bottom:481.315438px;}
.yc9_c00314{bottom:482.632430px;}
.yc8_c00314{bottom:483.288987px;}
.yc7_c00314{bottom:500.009436px;}
.yc6_c00314{bottom:500.476477px;}
.yc5_c00314{bottom:500.872234px;}
.yc4_c00314{bottom:501.128218px;}
.yc3_c00314{bottom:501.406239px;}
.yc2_c00314{bottom:502.311276px;}
.yc1_c00314{bottom:502.829103px;}
.yc0_c00314{bottom:503.706700px;}
.ybf_c00314{bottom:504.240678px;}
.ybe_c00314{bottom:505.158516px;}
.ybd_c00314{bottom:523.207479px;}
.ybc_c00314{bottom:528.922033px;}
.ybb_c00314{bottom:545.145741px;}
.yba_c00314{bottom:545.447709px;}
.yb9_c00314{bottom:546.502746px;}
.yb8_c00314{bottom:546.854776px;}
.yb7_c00314{bottom:547.387839px;}
.yb6_c00314{bottom:547.883344px;}
.yb5_c00314{bottom:548.378634px;}
.yb4_c00314{bottom:548.703127px;}
.yb3_c00314{bottom:548.909683px;}
.yb2_c00314{bottom:549.154620px;}
.yb1_c00314{bottom:549.711964px;}
.yb0_c00314{bottom:550.024060px;}
.yaf_c00314{bottom:550.481590px;}
.yae_c00314{bottom:550.675047px;}
.yad_c00314{bottom:550.896715px;}
.yac_c00314{bottom:551.602072px;}
.yab_c00314{bottom:568.337622px;}
.yaa_c00314{bottom:569.327220px;}
.ya9_c00314{bottom:569.635061px;}
.ya8_c00314{bottom:571.004895px;}
.ya7_c00314{bottom:571.349548px;}
.ya6_c00314{bottom:572.002609px;}
.ya5_c00314{bottom:572.739369px;}
.ya4_c00314{bottom:573.129207px;}
.ya3_c00314{bottom:573.694302px;}
.ya2_c00314{bottom:574.012433px;}
.ya1_c00314{bottom:590.671989px;}
.ya0_c00314{bottom:591.141282px;}
.y9f_c00314{bottom:592.165947px;}
.y9e_c00314{bottom:592.384604px;}
.y9d_c00314{bottom:592.808507px;}
.y9c_c00314{bottom:593.224279px;}
.y9b_c00314{bottom:593.391362px;}
.y9a_c00314{bottom:594.328474px;}
.y99_c00314{bottom:595.092388px;}
.y98_c00314{bottom:595.394667px;}
.y97_c00314{bottom:595.878450px;}
.y96_c00314{bottom:596.487234px;}
.y95_c00314{bottom:596.966601px;}
.y94_c00314{bottom:607.208830px;}
.y93_c00314{bottom:607.788679px;}
.y92_c00314{bottom:608.363856px;}
.y91_c00314{bottom:608.493513px;}
.y90_c00314{bottom:609.312147px;}
.y8f_c00314{bottom:609.697052px;}
.y8e_c00314{bottom:609.958445px;}
.y8d_c00314{bottom:610.771527px;}
.y8c_c00314{bottom:611.147910px;}
.y8b_c00314{bottom:612.512318px;}
.y8a_c00314{bottom:612.801303px;}
.y89_c00314{bottom:614.028166px;}
.y88_c00314{bottom:614.521065px;}
.y87_c00314{bottom:635.590286px;}
.y86_c00314{bottom:635.947260px;}
.y85_c00314{bottom:636.971658px;}
.y84_c00314{bottom:637.230692px;}
.y83_c00314{bottom:638.239073px;}
.y82_c00314{bottom:638.467976px;}
.y81_c00314{bottom:639.641150px;}
.y80_c00314{bottom:639.952692px;}
.y7f_c00314{bottom:641.025777px;}
.y7e_c00314{bottom:641.911947px;}
.y7d_c00314{bottom:642.328886px;}
.y7c_c00314{bottom:657.801143px;}
.y7b_c00314{bottom:658.539227px;}
.y7a_c00314{bottom:658.957977px;}
.y79_c00314{bottom:660.227519px;}
.y78_c00314{bottom:660.693959px;}
.y77_c00314{bottom:661.976669px;}
.y76_c00314{bottom:662.443149px;}
.y75_c00314{bottom:663.517085px;}
.y74_c00314{bottom:663.980337px;}
.y73_c00314{bottom:664.844499px;}
.y72_c00314{bottom:665.276418px;}
.y71_c00314{bottom:679.887831px;}
.y70_c00314{bottom:681.712654px;}
.y6f_c00314{bottom:682.071737px;}
.y6e_c00314{bottom:682.391030px;}
.y6d_c00314{bottom:683.725521px;}
.y6c_c00314{bottom:684.965904px;}
.y6b_c00314{bottom:685.470782px;}
.y6a_c00314{bottom:686.258676px;}
.y69_c00314{bottom:686.577699px;}
.y68_c00314{bottom:687.537159px;}
.y67_c00314{bottom:688.227283px;}
.y66_c00314{bottom:703.306433px;}
.y65_c00314{bottom:704.046456px;}
.y64_c00314{bottom:705.093201px;}
.y63_c00314{bottom:705.391617px;}
.y62_c00314{bottom:706.881767px;}
.y61_c00314{bottom:707.402931px;}
.y60_c00314{bottom:707.803119px;}
.y5f_c00314{bottom:708.274666px;}
.y5e_c00314{bottom:708.448108px;}
.y5d_c00314{bottom:709.397079px;}
.y5c_c00314{bottom:710.364186px;}
.y5b_c00314{bottom:725.748266px;}
.y5a_c00314{bottom:726.626751px;}
.y59_c00314{bottom:727.238275px;}
.y58_c00314{bottom:727.361108px;}
.y57_c00314{bottom:727.923945px;}
.y56_c00314{bottom:728.669619px;}
.y55_c00314{bottom:728.973383px;}
.y54_c00314{bottom:729.423072px;}
.y53_c00314{bottom:730.116088px;}
.y52_c00314{bottom:730.861830px;}
.y51_c00314{bottom:731.093799px;}
.y50_c00314{bottom:731.675085px;}
.y4f_c00314{bottom:731.930810px;}
.y4e_c00314{bottom:733.315559px;}
.y4d_c00314{bottom:748.880577px;}
.y4c_c00314{bottom:749.379136px;}
.y4b_c00314{bottom:750.144579px;}
.y4a_c00314{bottom:750.885039px;}
.y49_c00314{bottom:751.242601px;}
.y48_c00314{bottom:751.695666px;}
.y47_c00314{bottom:751.979442px;}
.y46_c00314{bottom:752.748653px;}
.y45_c00314{bottom:752.966799px;}
.y44_c00314{bottom:753.791457px;}
.y43_c00314{bottom:754.001743px;}
.y42_c00314{bottom:754.615980px;}
.y41_c00314{bottom:755.454764px;}
.y40_c00314{bottom:772.079253px;}
.y3f_c00314{bottom:772.767088px;}
.y3e_c00314{bottom:773.109710px;}
.y3d_c00314{bottom:773.547759px;}
.y3c_c00314{bottom:773.819447px;}
.y3b_c00314{bottom:774.678045px;}
.y3a_c00314{bottom:775.456205px;}
.y39_c00314{bottom:775.880481px;}
.y38_c00314{bottom:776.259736px;}
.y37_c00314{bottom:776.699312px;}
.y36_c00314{bottom:777.234369px;}
.y35_c00314{bottom:777.613246px;}
.y34_c00314{bottom:777.810990px;}
.y33_c00314{bottom:777.929820px;}
.y32_c00314{bottom:778.135031px;}
.y31_c00314{bottom:793.789914px;}
.y30_c00314{bottom:795.706277px;}
.y2f_c00314{bottom:796.354739px;}
.y2e_c00314{bottom:796.920845px;}
.y2d_c00314{bottom:798.153591px;}
.y2c_c00314{bottom:798.486365px;}
.y2b_c00314{bottom:799.514504px;}
.y2a_c00314{bottom:800.180955px;}
.y29_c00314{bottom:801.629382px;}
.y28_c00314{bottom:817.132488px;}
.y27_c00314{bottom:817.725678px;}
.y26_c00314{bottom:818.481462px;}
.y25_c00314{bottom:819.236720px;}
.y24_c00314{bottom:819.764337px;}
.y23_c00314{bottom:820.297208px;}
.y22_c00314{bottom:821.094123px;}
.y21_c00314{bottom:821.554156px;}
.y20_c00314{bottom:822.269795px;}
.y1f_c00314{bottom:822.695151px;}
.y1e_c00314{bottom:822.960397px;}
.y1d_c00314{bottom:835.948607px;}
.y1c_c00314{bottom:836.555796px;}
.y1b_c00314{bottom:837.100116px;}
.y1a_c00314{bottom:839.970000px;}
.y19_c00314{bottom:860.634855px;}
.y18_c00314{bottom:861.783450px;}
.y17_c00314{bottom:864.311835px;}
.y16_c00314{bottom:866.861265px;}
.y15_c00314{bottom:869.665290px;}
.y14_c00314{bottom:903.152790px;}
.y13_c00314{bottom:904.606560px;}
.y12_c00314{bottom:905.983110px;}
.y11_c00314{bottom:906.842760px;}
.y10_c00314{bottom:908.025825px;}
.yf_c00314{bottom:910.111230px;}
.ye_c00314{bottom:923.927970px;}
.yd_c00314{bottom:924.133815px;}
.yc_c00314{bottom:924.677160px;}
.yb_c00314{bottom:925.295625px;}
.ya_c00314{bottom:925.843800px;}
.y9_c00314{bottom:926.521635px;}
.y8_c00314{bottom:927.094200px;}
.y7_c00314{bottom:927.717945px;}
.y6_c00314{bottom:928.266120px;}
.y5_c00314{bottom:928.698720px;}
.y4_c00314{bottom:929.005830px;}
.y3_c00314{bottom:929.311920px;}
.y2_c00314{bottom:929.416320px;}
.y1_c00314{bottom:929.611500px;}
.h10_c00314{height:47.250000px;}
.h2_c00314{height:52.502625px;}
.hf_c00314{height:57.750000px;}
.h11_c00314{height:59.850000px;}
.h9_c00314{height:64.052594px;}
.he_c00314{height:66.152679px;}
.hc_c00314{height:68.252764px;}
.h7_c00314{height:69.302807px;}
.ha_c00314{height:70.352849px;}
.h8_c00314{height:71.402892px;}
.h6_c00314{height:72.452934px;}
.hd_c00314{height:75.603062px;}
.h5_c00314{height:97.653955px;}
.hb_c00314{height:99.754040px;}
.h4_c00314{height:120.756037px;}
.h3_c00314{height:148.057402px;}
.h1_c00314{height:1005.000000px;}
.h0_c00314{height:1005.150000px;}
.w0_c00314{width:702.540000px;}
.w1_c00314{width:702.750000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:13.848000px;}
.xf_c00314{left:25.531185px;}
.x14_c00314{left:26.920905px;}
.x98_c00314{left:31.097375px;}
.x2_c00314{left:33.366000px;}
.xc2_c00314{left:37.244649px;}
.xcf_c00314{left:41.040000px;}
.xa7_c00314{left:42.121593px;}
.x3_c00314{left:43.806000px;}
.xbd_c00314{left:49.148864px;}
.xca_c00314{left:54.810000px;}
.x6d_c00314{left:62.691723px;}
.xb8_c00314{left:64.582836px;}
.x99_c00314{left:65.682512px;}
.x8e_c00314{left:67.015058px;}
.x7d_c00314{left:68.120415px;}
.x5d_c00314{left:69.179976px;}
.x51_c00314{left:70.271117px;}
.x36_c00314{left:71.656227px;}
.x25_c00314{left:73.225392px;}
.x4_c00314{left:74.415000px;}
.xb3_c00314{left:81.564543px;}
.xa2_c00314{left:83.498571px;}
.x86_c00314{left:85.432359px;}
.x2c_c00314{left:90.131482px;}
.x1c_c00314{left:91.639347px;}
.x76_c00314{left:93.795809px;}
.x57_c00314{left:96.983352px;}
.xb0_c00314{left:98.828598px;}
.x2d_c00314{left:100.001212px;}
.xa8_c00314{left:102.129813px;}
.x5_c00314{left:105.126000px;}
.xcb_c00314{left:110.970000px;}
.x1d_c00314{left:113.777253px;}
.x2e_c00314{left:116.472267px;}
.x7e_c00314{left:118.491147px;}
.xac_c00314{left:122.072855px;}
.x9a_c00314{left:132.332907px;}
.x7f_c00314{left:134.286932px;}
.x37_c00314{left:136.185405px;}
.x77_c00314{left:137.249243px;}
.xb1_c00314{left:139.138251px;}
.x4b_c00314{left:140.767839px;}
.x93_c00314{left:145.677110px;}
.x6_c00314{left:148.386000px;}
.x58_c00314{left:150.997950px;}
.xa3_c00314{left:152.629832px;}
.x5e_c00314{left:156.131792px;}
.xbf_c00314{left:159.359919px;}
.x87_c00314{left:161.912294px;}
.x9b_c00314{left:163.630220px;}
.x41_c00314{left:165.058093px;}
.x78_c00314{left:167.230163px;}
.x26_c00314{left:169.823181px;}
.x52_c00314{left:173.385123px;}
.x6e_c00314{left:175.012674px;}
.x65_c00314{left:176.765463px;}
.x59_c00314{left:179.968628px;}
.x42_c00314{left:182.137675px;}
.x38_c00314{left:183.432204px;}
.xc3_c00314{left:184.461083px;}
.x10_c00314{left:185.916870px;}
.xd0_c00314{left:187.920000px;}
.x9c_c00314{left:189.856302px;}
.x2f_c00314{left:192.685215px;}
.x66_c00314{left:194.873829px;}
.x6f_c00314{left:196.598202px;}
.x39_c00314{left:199.630123px;}
.x15_c00314{left:202.162890px;}
.x7_c00314{left:203.203500px;}
.x88_c00314{left:206.408592px;}
.xc4_c00314{left:207.678788px;}
.x1e_c00314{left:208.885188px;}
.xa4_c00314{left:210.480213px;}
.xb9_c00314{left:212.554848px;}
.x27_c00314{left:214.204278px;}
.xa9_c00314{left:217.232564px;}
.x43_c00314{left:220.889583px;}
.x79_c00314{left:223.923624px;}
.x5f_c00314{left:227.692931px;}
.x30_c00314{left:229.359229px;}
.x44_c00314{left:236.329746px;}
.x53_c00314{left:242.538263px;}
.xcc_c00314{left:244.890000px;}
.x1f_c00314{left:247.165649px;}
.x60_c00314{left:248.474310px;}
.x70_c00314{left:251.141745px;}
.x4c_c00314{left:254.702722px;}
.xaa_c00314{left:259.351404px;}
.x31_c00314{left:260.997879px;}
.x3a_c00314{left:263.089842px;}
.x8_c00314{left:265.578000px;}
.xbe_c00314{left:268.166654px;}
.xb2_c00314{left:272.253387px;}
.x54_c00314{left:274.133778px;}
.x80_c00314{left:275.216100px;}
.x11_c00314{left:276.920640px;}
.x3b_c00314{left:279.827734px;}
.xb4_c00314{left:281.552048px;}
.x28_c00314{left:282.771579px;}
.x9d_c00314{left:284.738186px;}
.x45_c00314{left:286.020559px;}
.xad_c00314{left:287.336978px;}
.xc0_c00314{left:292.747404px;}
.x94_c00314{left:294.118268px;}
.x32_c00314{left:296.305420px;}
.x81_c00314{left:298.436561px;}
.x7a_c00314{left:300.611357px;}
.x67_c00314{left:303.621471px;}
.x29_c00314{left:304.911877px;}
.x8f_c00314{left:309.759075px;}
.x20_c00314{left:313.543353px;}
.xd1_c00314{left:315.360000px;}
.xc5_c00314{left:316.487015px;}
.x71_c00314{left:318.095735px;}
.xae_c00314{left:319.269102px;}
.x4d_c00314{left:320.572266px;}
.x9_c00314{left:322.834500px;}
.x9e_c00314{left:324.585039px;}
.x61_c00314{left:326.656085px;}
.x72_c00314{left:329.993195px;}
.x46_c00314{left:332.186562px;}
.x82_c00314{left:333.800468px;}
.x95_c00314{left:336.781581px;}
.x3c_c00314{left:338.960101px;}
.xba_c00314{left:340.089507px;}
.x62_c00314{left:341.922261px;}
.x12_c00314{left:343.083660px;}
.xb5_c00314{left:346.182729px;}
.x9f_c00314{left:347.268311px;}
.x55_c00314{left:351.615891px;}
.x68_c00314{left:354.460772px;}
.x5a_c00314{left:356.471517px;}
.x21_c00314{left:357.916652px;}
.x73_c00314{left:359.688858px;}
.x16_c00314{left:361.546335px;}
.xcd_c00314{left:363.690000px;}
.xc6_c00314{left:368.081912px;}
.x83_c00314{left:369.188375px;}
.x69_c00314{left:370.836746px;}
.x96_c00314{left:380.515827px;}
.x47_c00314{left:382.400848px;}
.x5b_c00314{left:385.629681px;}
.x2a_c00314{left:387.045936px;}
.x90_c00314{left:389.412338px;}
.xa_c00314{left:390.618000px;}
.xc7_c00314{left:393.160928px;}
.x3d_c00314{left:395.662563px;}
.x89_c00314{left:398.176922px;}
.x22_c00314{left:401.872964px;}
.x74_c00314{left:405.582293px;}
.x84_c00314{left:407.249160px;}
.x63_c00314{left:409.127630px;}
.x91_c00314{left:410.746799px;}
.xb6_c00314{left:411.797330px;}
.x8a_c00314{left:421.400801px;}
.x3e_c00314{left:423.224078px;}
.x2b_c00314{left:424.777897px;}
.x4e_c00314{left:426.972973px;}
.x7b_c00314{left:429.681713px;}
.x33_c00314{left:432.663735px;}
.x56_c00314{left:435.054140px;}
.xa5_c00314{left:436.960482px;}
.xd2_c00314{left:439.020000px;}
.xb7_c00314{left:440.230265px;}
.xce_c00314{left:441.450000px;}
.x8b_c00314{left:442.676220px;}
.xb_c00314{left:445.435500px;}
.x13_c00314{left:448.935480px;}
.xbb_c00314{left:450.684556px;}
.xc8_c00314{left:453.084501px;}
.x6a_c00314{left:454.130994px;}
.x34_c00314{left:455.350627px;}
.xa0_c00314{left:457.743344px;}
.x23_c00314{left:464.788763px;}
.x19_c00314{left:467.050500px;}
.x48_c00314{left:469.619637px;}
.x8c_c00314{left:475.648329px;}
.x49_c00314{left:477.767191px;}
.x3f_c00314{left:480.162026px;}
.x92_c00314{left:485.609412px;}
.x97_c00314{left:487.169604px;}
.x6b_c00314{left:490.037226px;}
.x35_c00314{left:491.855142px;}
.xbc_c00314{left:493.438587px;}
.x64_c00314{left:494.726513px;}
.xaf_c00314{left:496.643145px;}
.x7c_c00314{left:505.800972px;}
.xc_c00314{left:507.282000px;}
.xc1_c00314{left:509.632397px;}
.x75_c00314{left:512.239487px;}
.x8d_c00314{left:514.540776px;}
.xa6_c00314{left:515.790230px;}
.x4a_c00314{left:518.545491px;}
.x17_c00314{left:519.575355px;}
.xc9_c00314{left:521.336738px;}
.x4f_c00314{left:523.097653px;}
.xab_c00314{left:525.229151px;}
.x6c_c00314{left:526.295945px;}
.x1a_c00314{left:527.530500px;}
.x85_c00314{left:529.303166px;}
.x5c_c00314{left:537.384137px;}
.x40_c00314{left:539.042406px;}
.xd_c00314{left:561.616500px;}
.xa1_c00314{left:570.958728px;}
.x50_c00314{left:575.986778px;}
.x24_c00314{left:577.171725px;}
.xe_c00314{left:582.201000px;}
.x18_c00314{left:591.380550px;}
.x1b_c00314{left:594.996000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fse_c00314{font-size:42.000000pt;}
.fs0_c00314{font-size:46.669000pt;}
.fsd_c00314{font-size:51.333333pt;}
.fsf_c00314{font-size:53.200000pt;}
.fs7_c00314{font-size:56.935639pt;}
.fsc_c00314{font-size:58.802381pt;}
.fsa_c00314{font-size:60.669124pt;}
.fs5_c00314{font-size:61.602495pt;}
.fs8_c00314{font-size:62.535866pt;}
.fs6_c00314{font-size:63.469237pt;}
.fs4_c00314{font-size:64.402608pt;}
.fsb_c00314{font-size:67.202722pt;}
.fs3_c00314{font-size:86.803515pt;}
.fs9_c00314{font-size:88.670258pt;}
.fs2_c00314{font-size:107.338700pt;}
.fs1_c00314{font-size:131.606580pt;}
.y0_c00314{bottom:0.000000pt;}
.y159_c00314{bottom:136.712000pt;}
.y158_c00314{bottom:152.041333pt;}
.y157_c00314{bottom:155.814667pt;}
.y156_c00314{bottom:200.177351pt;}
.y155_c00314{bottom:200.664399pt;}
.y154_c00314{bottom:201.391423pt;}
.y153_c00314{bottom:202.456192pt;}
.y152_c00314{bottom:202.902177pt;}
.y151_c00314{bottom:203.818977pt;}
.y150_c00314{bottom:204.337447pt;}
.y14f_c00314{bottom:204.899992pt;}
.y14e_c00314{bottom:205.753529pt;}
.y14d_c00314{bottom:206.165956pt;}
.y14c_c00314{bottom:206.789483pt;}
.y14b_c00314{bottom:208.311620pt;}
.y14a_c00314{bottom:208.782471pt;}
.y149_c00314{bottom:220.584631pt;}
.y148_c00314{bottom:220.886565pt;}
.y147_c00314{bottom:221.327869pt;}
.y146_c00314{bottom:221.604483pt;}
.y145_c00314{bottom:222.024572pt;}
.y144_c00314{bottom:222.728539pt;}
.y143_c00314{bottom:223.754635pt;}
.y142_c00314{bottom:224.246533pt;}
.y141_c00314{bottom:224.575555pt;}
.y140_c00314{bottom:225.414400pt;}
.y13f_c00314{bottom:225.773593pt;}
.y13e_c00314{bottom:226.500396pt;}
.y13d_c00314{bottom:226.920689pt;}
.y13c_c00314{bottom:228.114525pt;}
.y13b_c00314{bottom:241.315113pt;}
.y13a_c00314{bottom:241.753668pt;}
.y139_c00314{bottom:242.471033pt;}
.y138_c00314{bottom:243.238717pt;}
.y137_c00314{bottom:244.092211pt;}
.y136_c00314{bottom:244.604064pt;}
.y135_c00314{bottom:245.160857pt;}
.y134_c00314{bottom:245.694971pt;}
.y133_c00314{bottom:246.274720pt;}
.y132_c00314{bottom:247.364341pt;}
.y131_c00314{bottom:248.134883pt;}
.y130_c00314{bottom:248.859824pt;}
.y12f_c00314{bottom:261.921519pt;}
.y12e_c00314{bottom:262.296947pt;}
.y12d_c00314{bottom:262.606245pt;}
.y12c_c00314{bottom:263.214661pt;}
.y12b_c00314{bottom:264.375077pt;}
.y12a_c00314{bottom:264.692672pt;}
.y129_c00314{bottom:265.076408pt;}
.y128_c00314{bottom:265.673215pt;}
.y127_c00314{bottom:266.416771pt;}
.y126_c00314{bottom:266.628004pt;}
.y125_c00314{bottom:267.172188pt;}
.y124_c00314{bottom:267.929395pt;}
.y123_c00314{bottom:268.171820pt;}
.y122_c00314{bottom:268.784643pt;}
.y121_c00314{bottom:281.066839pt;}
.y120_c00314{bottom:281.722612pt;}
.y11f_c00314{bottom:282.168791pt;}
.y11e_c00314{bottom:282.649608pt;}
.y11d_c00314{bottom:283.073191pt;}
.y11c_c00314{bottom:283.757239pt;}
.y11b_c00314{bottom:284.076367pt;}
.y11a_c00314{bottom:284.608451pt;}
.y119_c00314{bottom:284.848997pt;}
.y118_c00314{bottom:286.553595pt;}
.y117_c00314{bottom:287.250621pt;}
.y116_c00314{bottom:287.871432pt;}
.y115_c00314{bottom:288.226375pt;}
.y114_c00314{bottom:304.760993pt;}
.y113_c00314{bottom:305.780772pt;}
.y112_c00314{bottom:306.257192pt;}
.y111_c00314{bottom:307.244696pt;}
.y110_c00314{bottom:307.578607pt;}
.y10f_c00314{bottom:307.996541pt;}
.y10e_c00314{bottom:308.626733pt;}
.y10d_c00314{bottom:321.511377pt;}
.y10c_c00314{bottom:322.208692pt;}
.y10b_c00314{bottom:322.728121pt;}
.y10a_c00314{bottom:323.794907pt;}
.y109_c00314{bottom:324.506497pt;}
.y108_c00314{bottom:325.045977pt;}
.y107_c00314{bottom:326.059299pt;}
.y106_c00314{bottom:326.332659pt;}
.y105_c00314{bottom:326.707112pt;}
.y104_c00314{bottom:327.837543pt;}
.y103_c00314{bottom:328.785669pt;}
.y102_c00314{bottom:342.075040pt;}
.y101_c00314{bottom:342.578096pt;}
.y100_c00314{bottom:343.522813pt;}
.yff_c00314{bottom:343.909647pt;}
.yfe_c00314{bottom:344.497508pt;}
.yfd_c00314{bottom:345.493620pt;}
.yfc_c00314{bottom:345.856863pt;}
.yfb_c00314{bottom:346.456501pt;}
.yfa_c00314{bottom:347.172255pt;}
.yf9_c00314{bottom:347.590361pt;}
.yf8_c00314{bottom:348.093381pt;}
.yf7_c00314{bottom:348.665972pt;}
.yf6_c00314{bottom:348.946811pt;}
.yf5_c00314{bottom:362.357521pt;}
.yf4_c00314{bottom:363.138145pt;}
.yf3_c00314{bottom:363.408193pt;}
.yf2_c00314{bottom:364.404676pt;}
.yf1_c00314{bottom:364.801663pt;}
.yf0_c00314{bottom:365.892095pt;}
.yef_c00314{bottom:366.428133pt;}
.yee_c00314{bottom:367.198961pt;}
.yed_c00314{bottom:368.121375pt;}
.yec_c00314{bottom:368.358553pt;}
.yeb_c00314{bottom:368.864472pt;}
.yea_c00314{bottom:382.065805pt;}
.ye9_c00314{bottom:382.902468pt;}
.ye8_c00314{bottom:383.575577pt;}
.ye7_c00314{bottom:384.202684pt;}
.ye6_c00314{bottom:385.048759pt;}
.ye5_c00314{bottom:385.351568pt;}
.ye4_c00314{bottom:385.882360pt;}
.ye3_c00314{bottom:387.146789pt;}
.ye2_c00314{bottom:387.496609pt;}
.ye1_c00314{bottom:387.913668pt;}
.ye0_c00314{bottom:388.270151pt;}
.ydf_c00314{bottom:388.802900pt;}
.yde_c00314{bottom:389.263596pt;}
.ydd_c00314{bottom:402.393015pt;}
.ydc_c00314{bottom:402.972424pt;}
.ydb_c00314{bottom:403.560429pt;}
.yda_c00314{bottom:403.913168pt;}
.yd9_c00314{bottom:404.489708pt;}
.yd8_c00314{bottom:405.111604pt;}
.yd7_c00314{bottom:405.718265pt;}
.yd6_c00314{bottom:406.666572pt;}
.yd5_c00314{bottom:407.383417pt;}
.yd4_c00314{bottom:407.828536pt;}
.yd3_c00314{bottom:408.471297pt;}
.yd2_c00314{bottom:408.946549pt;}
.yd1_c00314{bottom:422.926775pt;}
.yd0_c00314{bottom:423.263881pt;}
.ycf_c00314{bottom:424.394825pt;}
.yce_c00314{bottom:424.717513pt;}
.ycd_c00314{bottom:425.921452pt;}
.ycc_c00314{bottom:427.043500pt;}
.ycb_c00314{bottom:427.618127pt;}
.yca_c00314{bottom:427.835945pt;}
.yc9_c00314{bottom:429.006604pt;}
.yc8_c00314{bottom:429.590211pt;}
.yc7_c00314{bottom:444.452832pt;}
.yc6_c00314{bottom:444.867980pt;}
.yc5_c00314{bottom:445.219764pt;}
.yc4_c00314{bottom:445.447305pt;}
.yc3_c00314{bottom:445.694435pt;}
.yc2_c00314{bottom:446.498912pt;}
.yc1_c00314{bottom:446.959203pt;}
.yc0_c00314{bottom:447.739289pt;}
.ybf_c00314{bottom:448.213936pt;}
.ybe_c00314{bottom:449.029792pt;}
.ybd_c00314{bottom:465.073315pt;}
.ybc_c00314{bottom:470.152919pt;}
.ybb_c00314{bottom:484.573992pt;}
.yba_c00314{bottom:484.842408pt;}
.yb9_c00314{bottom:485.780219pt;}
.yb8_c00314{bottom:486.093135pt;}
.yb7_c00314{bottom:486.566968pt;}
.yb6_c00314{bottom:487.007417pt;}
.yb5_c00314{bottom:487.447675pt;}
.yb4_c00314{bottom:487.736113pt;}
.yb3_c00314{bottom:487.919719pt;}
.yb2_c00314{bottom:488.137440pt;}
.yb1_c00314{bottom:488.632857pt;}
.yb0_c00314{bottom:488.910276pt;}
.yaf_c00314{bottom:489.316969pt;}
.yae_c00314{bottom:489.488931pt;}
.yad_c00314{bottom:489.685969pt;}
.yac_c00314{bottom:490.312953pt;}
.yab_c00314{bottom:505.188997pt;}
.yaa_c00314{bottom:506.068640pt;}
.ya9_c00314{bottom:506.342276pt;}
.ya8_c00314{bottom:507.559907pt;}
.ya7_c00314{bottom:507.866265pt;}
.ya6_c00314{bottom:508.446764pt;}
.ya5_c00314{bottom:509.101661pt;}
.ya4_c00314{bottom:509.448184pt;}
.ya3_c00314{bottom:509.950491pt;}
.ya2_c00314{bottom:510.233273pt;}
.ya1_c00314{bottom:525.041768pt;}
.ya0_c00314{bottom:525.458917pt;}
.y9f_c00314{bottom:526.369731pt;}
.y9e_c00314{bottom:526.564092pt;}
.y9d_c00314{bottom:526.940895pt;}
.y9c_c00314{bottom:527.310471pt;}
.y9b_c00314{bottom:527.458988pt;}
.y9a_c00314{bottom:528.291977pt;}
.y99_c00314{bottom:528.971012pt;}
.y98_c00314{bottom:529.239704pt;}
.y97_c00314{bottom:529.669733pt;}
.y96_c00314{bottom:530.210875pt;}
.y95_c00314{bottom:530.636979pt;}
.y94_c00314{bottom:539.741183pt;}
.y93_c00314{bottom:540.256604pt;}
.y92_c00314{bottom:540.767872pt;}
.y91_c00314{bottom:540.883123pt;}
.y90_c00314{bottom:541.610797pt;}
.y8f_c00314{bottom:541.952935pt;}
.y8e_c00314{bottom:542.185284pt;}
.y8d_c00314{bottom:542.908024pt;}
.y8c_c00314{bottom:543.242587pt;}
.y8b_c00314{bottom:544.455393pt;}
.y8a_c00314{bottom:544.712269pt;}
.y89_c00314{bottom:545.802815pt;}
.y88_c00314{bottom:546.240947pt;}
.y87_c00314{bottom:564.969143pt;}
.y86_c00314{bottom:565.286453pt;}
.y85_c00314{bottom:566.197029pt;}
.y84_c00314{bottom:566.427281pt;}
.y83_c00314{bottom:567.323620pt;}
.y82_c00314{bottom:567.527089pt;}
.y81_c00314{bottom:568.569911pt;}
.y80_c00314{bottom:568.846837pt;}
.y7f_c00314{bottom:569.800691pt;}
.y7e_c00314{bottom:570.588397pt;}
.y7d_c00314{bottom:570.959009pt;}
.y7c_c00314{bottom:584.712127pt;}
.y7b_c00314{bottom:585.368201pt;}
.y7a_c00314{bottom:585.740424pt;}
.y79_c00314{bottom:586.868905pt;}
.y78_c00314{bottom:587.283519pt;}
.y77_c00314{bottom:588.423705pt;}
.y76_c00314{bottom:588.838355pt;}
.y75_c00314{bottom:589.792964pt;}
.y74_c00314{bottom:590.204744pt;}
.y73_c00314{bottom:590.972888pt;}
.y72_c00314{bottom:591.356816pt;}
.y71_c00314{bottom:604.344739pt;}
.y70_c00314{bottom:605.966804pt;}
.y6f_c00314{bottom:606.285988pt;}
.y6e_c00314{bottom:606.569804pt;}
.y6d_c00314{bottom:607.756019pt;}
.y6c_c00314{bottom:608.858581pt;}
.y6b_c00314{bottom:609.307361pt;}
.y6a_c00314{bottom:610.007712pt;}
.y69_c00314{bottom:610.291288pt;}
.y68_c00314{bottom:611.144141pt;}
.y67_c00314{bottom:611.757585pt;}
.y66_c00314{bottom:625.161273pt;}
.y65_c00314{bottom:625.819072pt;}
.y64_c00314{bottom:626.749512pt;}
.y63_c00314{bottom:627.014771pt;}
.y62_c00314{bottom:628.339348pt;}
.y61_c00314{bottom:628.802605pt;}
.y60_c00314{bottom:629.158328pt;}
.y5f_c00314{bottom:629.577481pt;}
.y5e_c00314{bottom:629.731652pt;}
.y5d_c00314{bottom:630.575181pt;}
.y5c_c00314{bottom:631.434832pt;}
.y5b_c00314{bottom:645.109569pt;}
.y5a_c00314{bottom:645.890445pt;}
.y59_c00314{bottom:646.434023pt;}
.y58_c00314{bottom:646.543207pt;}
.y57_c00314{bottom:647.043507pt;}
.y56_c00314{bottom:647.706328pt;}
.y55_c00314{bottom:647.976340pt;}
.y54_c00314{bottom:648.376064pt;}
.y53_c00314{bottom:648.992079pt;}
.y52_c00314{bottom:649.654960pt;}
.y51_c00314{bottom:649.861155pt;}
.y50_c00314{bottom:650.377853pt;}
.y4f_c00314{bottom:650.605164pt;}
.y4e_c00314{bottom:651.836052pt;}
.y4d_c00314{bottom:665.671624pt;}
.y4c_c00314{bottom:666.114788pt;}
.y4b_c00314{bottom:666.795181pt;}
.y4a_c00314{bottom:667.453368pt;}
.y49_c00314{bottom:667.771201pt;}
.y48_c00314{bottom:668.173925pt;}
.y47_c00314{bottom:668.426171pt;}
.y46_c00314{bottom:669.109913pt;}
.y45_c00314{bottom:669.303821pt;}
.y44_c00314{bottom:670.036851pt;}
.y43_c00314{bottom:670.223772pt;}
.y42_c00314{bottom:670.769760pt;}
.y41_c00314{bottom:671.515345pt;}
.y40_c00314{bottom:686.292669pt;}
.y3f_c00314{bottom:686.904079pt;}
.y3e_c00314{bottom:687.208631pt;}
.y3d_c00314{bottom:687.598008pt;}
.y3c_c00314{bottom:687.839508pt;}
.y3b_c00314{bottom:688.602707pt;}
.y3a_c00314{bottom:689.294404pt;}
.y39_c00314{bottom:689.671539pt;}
.y38_c00314{bottom:690.008655pt;}
.y37_c00314{bottom:690.399388pt;}
.y36_c00314{bottom:690.874995pt;}
.y35_c00314{bottom:691.211775pt;}
.y34_c00314{bottom:691.387547pt;}
.y33_c00314{bottom:691.493173pt;}
.y32_c00314{bottom:691.675583pt;}
.y31_c00314{bottom:705.591035pt;}
.y30_c00314{bottom:707.294468pt;}
.y2f_c00314{bottom:707.870879pt;}
.y2e_c00314{bottom:708.374084pt;}
.y2d_c00314{bottom:709.469859pt;}
.y2c_c00314{bottom:709.765657pt;}
.y2b_c00314{bottom:710.679559pt;}
.y2a_c00314{bottom:711.271960pt;}
.y29_c00314{bottom:712.559451pt;}
.y28_c00314{bottom:726.339989pt;}
.y27_c00314{bottom:726.867269pt;}
.y26_c00314{bottom:727.539077pt;}
.y25_c00314{bottom:728.210417pt;}
.y24_c00314{bottom:728.679411pt;}
.y23_c00314{bottom:729.153073pt;}
.y22_c00314{bottom:729.861443pt;}
.y21_c00314{bottom:730.270361pt;}
.y20_c00314{bottom:730.906484pt;}
.y1f_c00314{bottom:731.284579pt;}
.y1e_c00314{bottom:731.520353pt;}
.y1d_c00314{bottom:743.065428pt;}
.y1c_c00314{bottom:743.605152pt;}
.y1b_c00314{bottom:744.088992pt;}
.y1a_c00314{bottom:746.640000pt;}
.y19_c00314{bottom:765.008760pt;}
.y18_c00314{bottom:766.029733pt;}
.y17_c00314{bottom:768.277187pt;}
.y16_c00314{bottom:770.543347pt;}
.y15_c00314{bottom:773.035813pt;}
.y14_c00314{bottom:802.802480pt;}
.y13_c00314{bottom:804.094720pt;}
.y12_c00314{bottom:805.318320pt;}
.y11_c00314{bottom:806.082453pt;}
.y10_c00314{bottom:807.134067pt;}
.yf_c00314{bottom:808.987760pt;}
.ye_c00314{bottom:821.269307pt;}
.yd_c00314{bottom:821.452280pt;}
.yc_c00314{bottom:821.935253pt;}
.yb_c00314{bottom:822.485000pt;}
.ya_c00314{bottom:822.972267pt;}
.y9_c00314{bottom:823.574787pt;}
.y8_c00314{bottom:824.083733pt;}
.y7_c00314{bottom:824.638173pt;}
.y6_c00314{bottom:825.125440pt;}
.y5_c00314{bottom:825.509973pt;}
.y4_c00314{bottom:825.782960pt;}
.y3_c00314{bottom:826.055040pt;}
.y2_c00314{bottom:826.147840pt;}
.y1_c00314{bottom:826.321333pt;}
.h10_c00314{height:42.000000pt;}
.h2_c00314{height:46.669000pt;}
.hf_c00314{height:51.333333pt;}
.h11_c00314{height:53.200000pt;}
.h9_c00314{height:56.935639pt;}
.he_c00314{height:58.802381pt;}
.hc_c00314{height:60.669124pt;}
.h7_c00314{height:61.602495pt;}
.ha_c00314{height:62.535866pt;}
.h8_c00314{height:63.469237pt;}
.h6_c00314{height:64.402608pt;}
.hd_c00314{height:67.202722pt;}
.h5_c00314{height:86.803515pt;}
.hb_c00314{height:88.670258pt;}
.h4_c00314{height:107.338700pt;}
.h3_c00314{height:131.606580pt;}
.h1_c00314{height:893.333333pt;}
.h0_c00314{height:893.466667pt;}
.w0_c00314{width:624.480000pt;}
.w1_c00314{width:624.666667pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:12.309333pt;}
.xf_c00314{left:22.694387pt;}
.x14_c00314{left:23.929693pt;}
.x98_c00314{left:27.642111pt;}
.x2_c00314{left:29.658667pt;}
.xc2_c00314{left:33.106355pt;}
.xcf_c00314{left:36.480000pt;}
.xa7_c00314{left:37.441416pt;}
.x3_c00314{left:38.938667pt;}
.xbd_c00314{left:43.687879pt;}
.xca_c00314{left:48.720000pt;}
.x6d_c00314{left:55.725976pt;}
.xb8_c00314{left:57.406965pt;}
.x99_c00314{left:58.384455pt;}
.x8e_c00314{left:59.568940pt;}
.x7d_c00314{left:60.551480pt;}
.x5d_c00314{left:61.493312pt;}
.x51_c00314{left:62.463215pt;}
.x36_c00314{left:63.694424pt;}
.x25_c00314{left:65.089237pt;}
.x4_c00314{left:66.146667pt;}
.xb3_c00314{left:72.501816pt;}
.xa2_c00314{left:74.220952pt;}
.x86_c00314{left:75.939875pt;}
.x2c_c00314{left:80.116873pt;}
.x1c_c00314{left:81.457197pt;}
.x76_c00314{left:83.374052pt;}
.x57_c00314{left:86.207424pt;}
.xb0_c00314{left:87.847643pt;}
.x2d_c00314{left:88.889967pt;}
.xa8_c00314{left:90.782056pt;}
.x5_c00314{left:93.445333pt;}
.xcb_c00314{left:98.640000pt;}
.x1d_c00314{left:101.135336pt;}
.x2e_c00314{left:103.530904pt;}
.x7e_c00314{left:105.325464pt;}
.xac_c00314{left:108.509204pt;}
.x9a_c00314{left:117.629251pt;}
.x7f_c00314{left:119.366161pt;}
.x37_c00314{left:121.053693pt;}
.x77_c00314{left:121.999327pt;}
.xb1_c00314{left:123.678445pt;}
.x4b_c00314{left:125.126968pt;}
.x93_c00314{left:129.490764pt;}
.x6_c00314{left:131.898667pt;}
.x58_c00314{left:134.220400pt;}
.xa3_c00314{left:135.670961pt;}
.x5e_c00314{left:138.783815pt;}
.xbf_c00314{left:141.653261pt;}
.x87_c00314{left:143.922039pt;}
.x9b_c00314{left:145.449084pt;}
.x41_c00314{left:146.718305pt;}
.x78_c00314{left:148.649033pt;}
.x26_c00314{left:150.953939pt;}
.x52_c00314{left:154.120109pt;}
.x6e_c00314{left:155.566821pt;}
.x65_c00314{left:157.124856pt;}
.x59_c00314{left:159.972113pt;}
.x42_c00314{left:161.900156pt;}
.x38_c00314{left:163.050848pt;}
.xc3_c00314{left:163.965407pt;}
.x10_c00314{left:165.259440pt;}
.xd0_c00314{left:167.040000pt;}
.x9c_c00314{left:168.761157pt;}
.x2f_c00314{left:171.275747pt;}
.x66_c00314{left:173.221181pt;}
.x6f_c00314{left:174.753957pt;}
.x39_c00314{left:177.448999pt;}
.x15_c00314{left:179.700347pt;}
.x7_c00314{left:180.625333pt;}
.x88_c00314{left:183.474304pt;}
.xc4_c00314{left:184.603367pt;}
.x1e_c00314{left:185.675723pt;}
.xa4_c00314{left:187.093523pt;}
.xb9_c00314{left:188.937643pt;}
.x27_c00314{left:190.403803pt;}
.xa9_c00314{left:193.095612pt;}
.x43_c00314{left:196.346296pt;}
.x79_c00314{left:199.043221pt;}
.x5f_c00314{left:202.393716pt;}
.x30_c00314{left:203.874871pt;}
.x44_c00314{left:210.070885pt;}
.x53_c00314{left:215.589567pt;}
.xcc_c00314{left:217.680000pt;}
.x1f_c00314{left:219.702799pt;}
.x60_c00314{left:220.866053pt;}
.x70_c00314{left:223.237107pt;}
.x4c_c00314{left:226.402420pt;}
.xaa_c00314{left:230.534581pt;}
.x31_c00314{left:231.998115pt;}
.x3a_c00314{left:233.857637pt;}
.x8_c00314{left:236.069333pt;}
.xbe_c00314{left:238.370359pt;}
.xb2_c00314{left:242.003011pt;}
.x54_c00314{left:243.674469pt;}
.x80_c00314{left:244.636533pt;}
.x11_c00314{left:246.151680pt;}
.x3b_c00314{left:248.735764pt;}
.xb4_c00314{left:250.268487pt;}
.x28_c00314{left:251.352515pt;}
.x9d_c00314{left:253.100609pt;}
.x45_c00314{left:254.240497pt;}
.xad_c00314{left:255.410647pt;}
.xc0_c00314{left:260.219915pt;}
.x94_c00314{left:261.438460pt;}
.x32_c00314{left:263.382596pt;}
.x81_c00314{left:265.276943pt;}
.x7a_c00314{left:267.210095pt;}
.x67_c00314{left:269.885752pt;}
.x29_c00314{left:271.032780pt;}
.x8f_c00314{left:275.341400pt;}
.x20_c00314{left:278.705203pt;}
.xd1_c00314{left:280.320000pt;}
.xc5_c00314{left:281.321791pt;}
.x71_c00314{left:282.751764pt;}
.xae_c00314{left:283.794757pt;}
.x4d_c00314{left:284.953125pt;}
.x9_c00314{left:286.964000pt;}
.x9e_c00314{left:288.520035pt;}
.x61_c00314{left:290.360964pt;}
.x72_c00314{left:293.327284pt;}
.x46_c00314{left:295.276944pt;}
.x82_c00314{left:296.711527pt;}
.x95_c00314{left:299.361405pt;}
.x3c_c00314{left:301.297868pt;}
.xba_c00314{left:302.301784pt;}
.x62_c00314{left:303.930899pt;}
.x12_c00314{left:304.963253pt;}
.xb5_c00314{left:307.717981pt;}
.x9f_c00314{left:308.682943pt;}
.x55_c00314{left:312.547459pt;}
.x68_c00314{left:315.076241pt;}
.x5a_c00314{left:316.863571pt;}
.x21_c00314{left:318.148135pt;}
.x73_c00314{left:319.723429pt;}
.x16_c00314{left:321.374520pt;}
.xcd_c00314{left:323.280000pt;}
.xc6_c00314{left:327.183921pt;}
.x83_c00314{left:328.167444pt;}
.x69_c00314{left:329.632663pt;}
.x96_c00314{left:338.236291pt;}
.x47_c00314{left:339.911865pt;}
.x5b_c00314{left:342.781939pt;}
.x2a_c00314{left:344.040832pt;}
.x90_c00314{left:346.144300pt;}
.xa_c00314{left:347.216000pt;}
.xc7_c00314{left:349.476380pt;}
.x3d_c00314{left:351.700056pt;}
.x89_c00314{left:353.935041pt;}
.x22_c00314{left:357.220412pt;}
.x74_c00314{left:360.517593pt;}
.x84_c00314{left:361.999253pt;}
.x63_c00314{left:363.669004pt;}
.x91_c00314{left:365.108265pt;}
.xb6_c00314{left:366.042071pt;}
.x8a_c00314{left:374.578489pt;}
.x3e_c00314{left:376.199180pt;}
.x2b_c00314{left:377.580353pt;}
.x4e_c00314{left:379.531532pt;}
.x7b_c00314{left:381.939300pt;}
.x33_c00314{left:384.589987pt;}
.x56_c00314{left:386.714791pt;}
.xa5_c00314{left:388.409317pt;}
.xd2_c00314{left:390.240000pt;}
.xb7_c00314{left:391.315791pt;}
.xce_c00314{left:392.400000pt;}
.x8b_c00314{left:393.489973pt;}
.xb_c00314{left:395.942667pt;}
.x13_c00314{left:399.053760pt;}
.xbb_c00314{left:400.608495pt;}
.xc8_c00314{left:402.741779pt;}
.x6a_c00314{left:403.671995pt;}
.x34_c00314{left:404.756113pt;}
.xa0_c00314{left:406.882972pt;}
.x23_c00314{left:413.145567pt;}
.x19_c00314{left:415.156000pt;}
.x48_c00314{left:417.439677pt;}
.x8c_c00314{left:422.798515pt;}
.x49_c00314{left:424.681948pt;}
.x3f_c00314{left:426.810689pt;}
.x92_c00314{left:431.652811pt;}
.x97_c00314{left:433.039648pt;}
.x6b_c00314{left:435.588645pt;}
.x35_c00314{left:437.204571pt;}
.xbc_c00314{left:438.612077pt;}
.x64_c00314{left:439.756900pt;}
.xaf_c00314{left:441.460573pt;}
.x7c_c00314{left:449.600864pt;}
.xc_c00314{left:450.917333pt;}
.xc1_c00314{left:453.006575pt;}
.x75_c00314{left:455.323988pt;}
.x8d_c00314{left:457.369579pt;}
.xa6_c00314{left:458.480204pt;}
.x4a_c00314{left:460.929325pt;}
.x17_c00314{left:461.844760pt;}
.xc9_c00314{left:463.410433pt;}
.x4f_c00314{left:464.975692pt;}
.xab_c00314{left:466.870356pt;}
.x6c_c00314{left:467.818617pt;}
.x1a_c00314{left:468.916000pt;}
.x85_c00314{left:470.491703pt;}
.x5c_c00314{left:477.674788pt;}
.x40_c00314{left:479.148805pt;}
.xd_c00314{left:499.214667pt;}
.xa1_c00314{left:507.518869pt;}
.x50_c00314{left:511.988247pt;}
.x24_c00314{left:513.041533pt;}
.xe_c00314{left:517.512000pt;}
.x18_c00314{left:525.671600pt;}
.x1b_c00314{left:528.885333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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.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);}
.me8_c00315{transform:matrix(0.078530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078530,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.088470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088470,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.111690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111690,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.121368,-0.001699,0.003500,0.249976,0,0);-ms-transform:matrix(0.121368,-0.001699,0.003500,0.249976,0,0);-webkit-transform:matrix(0.121368,-0.001699,0.003500,0.249976,0,0);}
.m36_c00315{transform:matrix(0.126768,-0.001775,0.003500,0.249976,0,0);-ms-transform:matrix(0.126768,-0.001775,0.003500,0.249976,0,0);-webkit-transform:matrix(0.126768,-0.001775,0.003500,0.249976,0,0);}
.m18_c00315{transform:matrix(0.131257,-0.001838,0.003500,0.249976,0,0);-ms-transform:matrix(0.131257,-0.001838,0.003500,0.249976,0,0);-webkit-transform:matrix(0.131257,-0.001838,0.003500,0.249976,0,0);}
.m117_c00315{transform:matrix(0.140623,-0.001406,0.002500,0.249988,0,0);-ms-transform:matrix(0.140623,-0.001406,0.002500,0.249988,0,0);-webkit-transform:matrix(0.140623,-0.001406,0.002500,0.249988,0,0);}
.m109_c00315{transform:matrix(0.143208,-0.003007,0.005249,0.249945,0,0);-ms-transform:matrix(0.143208,-0.003007,0.005249,0.249945,0,0);-webkit-transform:matrix(0.143208,-0.003007,0.005249,0.249945,0,0);}
.mc1_c00315{transform:matrix(0.146033,-0.001460,0.002500,0.249988,0,0);-ms-transform:matrix(0.146033,-0.001460,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146033,-0.001460,0.002500,0.249988,0,0);}
.m102_c00315{transform:matrix(0.146143,-0.003069,0.005249,0.249945,0,0);-ms-transform:matrix(0.146143,-0.003069,0.005249,0.249945,0,0);-webkit-transform:matrix(0.146143,-0.003069,0.005249,0.249945,0,0);}
.m17_c00315{transform:matrix(0.146476,-0.002051,0.003500,0.249976,0,0);-ms-transform:matrix(0.146476,-0.002051,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146476,-0.002051,0.003500,0.249976,0,0);}
.m41_c00315{transform:matrix(0.147236,-0.002061,0.003500,0.249976,0,0);-ms-transform:matrix(0.147236,-0.002061,0.003500,0.249976,0,0);-webkit-transform:matrix(0.147236,-0.002061,0.003500,0.249976,0,0);}
.m6a_c00315{transform:matrix(0.149436,-0.001644,0.002750,0.249985,0,0);-ms-transform:matrix(0.149436,-0.001644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149436,-0.001644,0.002750,0.249985,0,0);}
.m40_c00315{transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);-ms-transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);}
.m30_c00315{transform:matrix(0.151480,-0.002121,0.003500,0.249976,0,0);-ms-transform:matrix(0.151480,-0.002121,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151480,-0.002121,0.003500,0.249976,0,0);}
.m101_c00315{transform:matrix(0.152396,-0.003200,0.005249,0.249945,0,0);-ms-transform:matrix(0.152396,-0.003200,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152396,-0.003200,0.005249,0.249945,0,0);}
.mcb_c00315{transform:matrix(0.153107,-0.001531,0.002500,0.249988,0,0);-ms-transform:matrix(0.153107,-0.001531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153107,-0.001531,0.002500,0.249988,0,0);}
.m104_c00315{transform:matrix(0.155386,-0.003263,0.005249,0.249945,0,0);-ms-transform:matrix(0.155386,-0.003263,0.005249,0.249945,0,0);-webkit-transform:matrix(0.155386,-0.003263,0.005249,0.249945,0,0);}
.m34_c00315{transform:matrix(0.155440,-0.002176,0.003500,0.249976,0,0);-ms-transform:matrix(0.155440,-0.002176,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155440,-0.002176,0.003500,0.249976,0,0);}
.m3_c00315{transform:matrix(0.155686,-0.003269,0.005249,0.249945,0,0);-ms-transform:matrix(0.155686,-0.003269,0.005249,0.249945,0,0);-webkit-transform:matrix(0.155686,-0.003269,0.005249,0.249945,0,0);}
.m8e_c00315{transform:matrix(0.155826,-0.001714,0.002750,0.249985,0,0);-ms-transform:matrix(0.155826,-0.001714,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155826,-0.001714,0.002750,0.249985,0,0);}
.m3e_c00315{transform:matrix(0.155935,-0.002183,0.003500,0.249976,0,0);-ms-transform:matrix(0.155935,-0.002183,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155935,-0.002183,0.003500,0.249976,0,0);}
.mf0_c00315{transform:matrix(0.156547,-0.001565,0.002500,0.249988,0,0);-ms-transform:matrix(0.156547,-0.001565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156547,-0.001565,0.002500,0.249988,0,0);}
.m11e_c00315{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);}
.m7e_c00315{transform:matrix(0.158800,-0.001747,0.002750,0.249985,0,0);-ms-transform:matrix(0.158800,-0.001747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158800,-0.001747,0.002750,0.249985,0,0);}
.mf3_c00315{transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);-ms-transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159157,-0.001592,0.002500,0.249988,0,0);}
.m6d_c00315{transform:matrix(0.159195,-0.001751,0.002750,0.249985,0,0);-ms-transform:matrix(0.159195,-0.001751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159195,-0.001751,0.002750,0.249985,0,0);}
.m66_c00315{transform:matrix(0.159365,-0.001753,0.002750,0.249985,0,0);-ms-transform:matrix(0.159365,-0.001753,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159365,-0.001753,0.002750,0.249985,0,0);}
.m42_c00315{transform:matrix(0.159500,-0.001755,0.002750,0.249985,0,0);-ms-transform:matrix(0.159500,-0.001755,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159500,-0.001755,0.002750,0.249985,0,0);}
.m9_c00315{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);}
.mbd_c00315{transform:matrix(0.160057,-0.001601,0.002500,0.249988,0,0);-ms-transform:matrix(0.160057,-0.001601,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160057,-0.001601,0.002500,0.249988,0,0);}
.m120_c00315{transform:matrix(0.160237,-0.001602,0.002500,0.249988,0,0);-ms-transform:matrix(0.160237,-0.001602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160237,-0.001602,0.002500,0.249988,0,0);}
.m49_c00315{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);}
.m71_c00315{transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);-ms-transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160780,-0.001769,0.002750,0.249985,0,0);}
.mc4_c00315{transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);}
.m28_c00315{transform:matrix(0.162689,-0.002278,0.003500,0.249976,0,0);-ms-transform:matrix(0.162689,-0.002278,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162689,-0.002278,0.003500,0.249976,0,0);}
.md3_c00315{transform:matrix(0.162822,-0.001628,0.002500,0.249988,0,0);-ms-transform:matrix(0.162822,-0.001628,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162822,-0.001628,0.002500,0.249988,0,0);}
.m95_c00315{transform:matrix(0.163000,-0.001793,0.002750,0.249985,0,0);-ms-transform:matrix(0.163000,-0.001793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163000,-0.001793,0.002750,0.249985,0,0);}
.m99_c00315{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);}
.m8_c00315{transform:matrix(0.163314,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163314,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163314,-0.002286,0.003500,0.249976,0,0);}
.m106_c00315{transform:matrix(0.164249,-0.003449,0.005249,0.249945,0,0);-ms-transform:matrix(0.164249,-0.003449,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164249,-0.003449,0.005249,0.249945,0,0);}
.mb1_c00315{transform:matrix(0.164832,-0.001648,0.002500,0.249988,0,0);-ms-transform:matrix(0.164832,-0.001648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164832,-0.001648,0.002500,0.249988,0,0);}
.m12_c00315{transform:matrix(0.165514,-0.002317,0.003500,0.249976,0,0);-ms-transform:matrix(0.165514,-0.002317,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165514,-0.002317,0.003500,0.249976,0,0);}
.m43_c00315{transform:matrix(0.165575,-0.001821,0.002750,0.249985,0,0);-ms-transform:matrix(0.165575,-0.001821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165575,-0.001821,0.002750,0.249985,0,0);}
.m7f_c00315{transform:matrix(0.166010,-0.001826,0.002750,0.249985,0,0);-ms-transform:matrix(0.166010,-0.001826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166010,-0.001826,0.002750,0.249985,0,0);}
.m3a_c00315{transform:matrix(0.166179,-0.002327,0.003500,0.249976,0,0);-ms-transform:matrix(0.166179,-0.002327,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166179,-0.002327,0.003500,0.249976,0,0);}
.m112_c00315{transform:matrix(0.166502,-0.001665,0.002500,0.249988,0,0);-ms-transform:matrix(0.166502,-0.001665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166502,-0.001665,0.002500,0.249988,0,0);}
.m92_c00315{transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);-ms-transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);}
.md8_c00315{transform:matrix(0.166847,-0.001668,0.002500,0.249988,0,0);-ms-transform:matrix(0.166847,-0.001668,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166847,-0.001668,0.002500,0.249988,0,0);}
.m16_c00315{transform:matrix(0.166979,-0.002338,0.003500,0.249976,0,0);-ms-transform:matrix(0.166979,-0.002338,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166979,-0.002338,0.003500,0.249976,0,0);}
.m1e_c00315{transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);-ms-transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);}
.m44_c00315{transform:matrix(0.167325,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167325,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167325,-0.001841,0.002750,0.249985,0,0);}
.m11b_c00315{transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);-ms-transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167622,-0.001676,0.002500,0.249988,0,0);}
.m31_c00315{transform:matrix(0.167664,-0.002347,0.003500,0.249976,0,0);-ms-transform:matrix(0.167664,-0.002347,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167664,-0.002347,0.003500,0.249976,0,0);}
.mcc_c00315{transform:matrix(0.167762,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167762,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167762,-0.001678,0.002500,0.249988,0,0);}
.m118_c00315{transform:matrix(0.167902,-0.001679,0.002500,0.249988,0,0);-ms-transform:matrix(0.167902,-0.001679,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167902,-0.001679,0.002500,0.249988,0,0);}
.m10e_c00315{transform:matrix(0.168162,-0.001682,0.002500,0.249988,0,0);-ms-transform:matrix(0.168162,-0.001682,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168162,-0.001682,0.002500,0.249988,0,0);}
.m4d_c00315{transform:matrix(0.168330,-0.001852,0.002750,0.249985,0,0);-ms-transform:matrix(0.168330,-0.001852,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168330,-0.001852,0.002750,0.249985,0,0);}
.ma7_c00315{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);}
.m10b_c00315{transform:matrix(0.168812,-0.001688,0.002500,0.249988,0,0);-ms-transform:matrix(0.168812,-0.001688,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168812,-0.001688,0.002500,0.249988,0,0);}
.m2f_c00315{transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);-ms-transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169193,-0.002369,0.003500,0.249976,0,0);}
.mb5_c00315{transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);-ms-transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);}
.mf5_c00315{transform:matrix(0.169588,-0.003561,0.005249,0.249945,0,0);-ms-transform:matrix(0.169588,-0.003561,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169588,-0.003561,0.005249,0.249945,0,0);}
.mc2_c00315{transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);}
.m27_c00315{transform:matrix(0.170408,-0.002386,0.003500,0.249976,0,0);-ms-transform:matrix(0.170408,-0.002386,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170408,-0.002386,0.003500,0.249976,0,0);}
.md2_c00315{transform:matrix(0.170916,-0.001709,0.002500,0.249988,0,0);-ms-transform:matrix(0.170916,-0.001709,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170916,-0.001709,0.002500,0.249988,0,0);}
.m5c_c00315{transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);-ms-transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);}
.me6_c00315{transform:matrix(0.171341,-0.001713,0.002500,0.249988,0,0);-ms-transform:matrix(0.171341,-0.001713,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171341,-0.001713,0.002500,0.249988,0,0);}
.m20_c00315{transform:matrix(0.172278,-0.002412,0.003500,0.249976,0,0);-ms-transform:matrix(0.172278,-0.002412,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172278,-0.002412,0.003500,0.249976,0,0);}
.m78_c00315{transform:matrix(0.172390,-0.001896,0.002750,0.249985,0,0);-ms-transform:matrix(0.172390,-0.001896,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172390,-0.001896,0.002750,0.249985,0,0);}
.m46_c00315{transform:matrix(0.172480,-0.001897,0.002750,0.249985,0,0);-ms-transform:matrix(0.172480,-0.001897,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172480,-0.001897,0.002750,0.249985,0,0);}
.m9a_c00315{transform:matrix(0.172725,-0.001900,0.002750,0.249985,0,0);-ms-transform:matrix(0.172725,-0.001900,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172725,-0.001900,0.002750,0.249985,0,0);}
.m2e_c00315{transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);-ms-transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);}
.mae_c00315{transform:matrix(0.173210,-0.001905,0.002750,0.249985,0,0);-ms-transform:matrix(0.173210,-0.001905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173210,-0.001905,0.002750,0.249985,0,0);}
.m9d_c00315{transform:matrix(0.173320,-0.001907,0.002750,0.249985,0,0);-ms-transform:matrix(0.173320,-0.001907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173320,-0.001907,0.002750,0.249985,0,0);}
.m74_c00315{transform:matrix(0.173749,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173749,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173749,-0.001911,0.002750,0.249985,0,0);}
.m12e_c00315{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);}
.m105_c00315{transform:matrix(0.174352,-0.003661,0.005249,0.249945,0,0);-ms-transform:matrix(0.174352,-0.003661,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174352,-0.003661,0.005249,0.249945,0,0);}
.m6e_c00315{transform:matrix(0.174594,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174594,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174594,-0.001921,0.002750,0.249985,0,0);}
.mad_c00315{transform:matrix(0.174899,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174899,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174899,-0.001924,0.002750,0.249985,0,0);}
.ma_c00315{transform:matrix(0.174988,-0.002450,0.003500,0.249976,0,0);-ms-transform:matrix(0.174988,-0.002450,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174988,-0.002450,0.003500,0.249976,0,0);}
.mb2_c00315{transform:matrix(0.175066,-0.001751,0.002500,0.249988,0,0);-ms-transform:matrix(0.175066,-0.001751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175066,-0.001751,0.002500,0.249988,0,0);}
.mbe_c00315{transform:matrix(0.175246,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175246,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175246,-0.001752,0.002500,0.249988,0,0);}
.m125_c00315{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);}
.mbf_c00315{transform:matrix(0.175491,-0.001755,0.002500,0.249988,0,0);-ms-transform:matrix(0.175491,-0.001755,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175491,-0.001755,0.002500,0.249988,0,0);}
.m11d_c00315{transform:matrix(0.175706,-0.001757,0.002500,0.249988,0,0);-ms-transform:matrix(0.175706,-0.001757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175706,-0.001757,0.002500,0.249988,0,0);}
.m73_c00315{transform:matrix(0.175884,-0.001935,0.002750,0.249985,0,0);-ms-transform:matrix(0.175884,-0.001935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175884,-0.001935,0.002750,0.249985,0,0);}
.m25_c00315{transform:matrix(0.176548,-0.002472,0.003500,0.249976,0,0);-ms-transform:matrix(0.176548,-0.002472,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176548,-0.002472,0.003500,0.249976,0,0);}
.m119_c00315{transform:matrix(0.177416,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177416,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177416,-0.001774,0.002500,0.249988,0,0);}
.m90_c00315{transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);-ms-transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177469,-0.001952,0.002750,0.249985,0,0);}
.m10a_c00315{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);}
.m26_c00315{transform:matrix(0.178108,-0.002494,0.003500,0.249976,0,0);-ms-transform:matrix(0.178108,-0.002494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178108,-0.002494,0.003500,0.249976,0,0);}
.mfb_c00315{transform:matrix(0.178371,-0.003746,0.005249,0.249945,0,0);-ms-transform:matrix(0.178371,-0.003746,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178371,-0.003746,0.005249,0.249945,0,0);}
.m3d_c00315{transform:matrix(0.179192,-0.002509,0.003500,0.249976,0,0);-ms-transform:matrix(0.179192,-0.002509,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179192,-0.002509,0.003500,0.249976,0,0);}
.mec_c00315{transform:matrix(0.179591,-0.001796,0.002500,0.249988,0,0);-ms-transform:matrix(0.179591,-0.001796,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179591,-0.001796,0.002500,0.249988,0,0);}
.m57_c00315{transform:matrix(0.179979,-0.001980,0.002750,0.249985,0,0);-ms-transform:matrix(0.179979,-0.001980,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179979,-0.001980,0.002750,0.249985,0,0);}
.m3c_c00315{transform:matrix(0.180107,-0.002522,0.003500,0.249976,0,0);-ms-transform:matrix(0.180107,-0.002522,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180107,-0.002522,0.003500,0.249976,0,0);}
.m5_c00315{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);}
.m64_c00315{transform:matrix(0.180574,-0.001986,0.002750,0.249985,0,0);-ms-transform:matrix(0.180574,-0.001986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180574,-0.001986,0.002750,0.249985,0,0);}
.mba_c00315{transform:matrix(0.180721,-0.001807,0.002500,0.249988,0,0);-ms-transform:matrix(0.180721,-0.001807,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180721,-0.001807,0.002500,0.249988,0,0);}
.m81_c00315{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);}
.m6b_c00315{transform:matrix(0.181714,-0.001999,0.002750,0.249985,0,0);-ms-transform:matrix(0.181714,-0.001999,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181714,-0.001999,0.002750,0.249985,0,0);}
.md9_c00315{transform:matrix(0.181856,-0.001819,0.002500,0.249988,0,0);-ms-transform:matrix(0.181856,-0.001819,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181856,-0.001819,0.002500,0.249988,0,0);}
.m67_c00315{transform:matrix(0.182039,-0.002002,0.002750,0.249985,0,0);-ms-transform:matrix(0.182039,-0.002002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182039,-0.002002,0.002750,0.249985,0,0);}
.m63_c00315{transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);-ms-transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182139,-0.002004,0.002750,0.249985,0,0);}
.m10c_c00315{transform:matrix(0.182381,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182381,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182381,-0.001824,0.002500,0.249988,0,0);}
.m89_c00315{transform:matrix(0.182419,-0.002007,0.002750,0.249985,0,0);-ms-transform:matrix(0.182419,-0.002007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182419,-0.002007,0.002750,0.249985,0,0);}
.m11c_c00315{transform:matrix(0.182751,-0.001828,0.002500,0.249988,0,0);-ms-transform:matrix(0.182751,-0.001828,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182751,-0.001828,0.002500,0.249988,0,0);}
.m5b_c00315{transform:matrix(0.182769,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182769,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182769,-0.002010,0.002750,0.249985,0,0);}
.mcf_c00315{transform:matrix(0.183216,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183216,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183216,-0.001832,0.002500,0.249988,0,0);}
.mb9_c00315{transform:matrix(0.183231,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183231,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183231,-0.001832,0.002500,0.249988,0,0);}
.m65_c00315{transform:matrix(0.183234,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183234,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183234,-0.002016,0.002750,0.249985,0,0);}
.m70_c00315{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);}
.m88_c00315{transform:matrix(0.184069,-0.002025,0.002750,0.249985,0,0);-ms-transform:matrix(0.184069,-0.002025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184069,-0.002025,0.002750,0.249985,0,0);}
.m69_c00315{transform:matrix(0.184234,-0.002027,0.002750,0.249985,0,0);-ms-transform:matrix(0.184234,-0.002027,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184234,-0.002027,0.002750,0.249985,0,0);}
.m11_c00315{transform:matrix(0.184912,-0.002589,0.003500,0.249976,0,0);-ms-transform:matrix(0.184912,-0.002589,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184912,-0.002589,0.003500,0.249976,0,0);}
.md7_c00315{transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);}
.m129_c00315{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);}
.m85_c00315{transform:matrix(0.185114,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185114,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185114,-0.002036,0.002750,0.249985,0,0);}
.m35_c00315{transform:matrix(0.185582,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185582,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185582,-0.002598,0.003500,0.249976,0,0);}
.me9_c00315{transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);}
.mc3_c00315{transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);-ms-transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185936,-0.001859,0.002500,0.249988,0,0);}
.m6c_c00315{transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186014,-0.002046,0.002750,0.249985,0,0);}
.mc9_c00315{transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);-ms-transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186021,-0.001860,0.002500,0.249988,0,0);}
.m94_c00315{transform:matrix(0.186204,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186204,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186204,-0.002048,0.002750,0.249985,0,0);}
.m10f_c00315{transform:matrix(0.186406,-0.001864,0.002500,0.249988,0,0);-ms-transform:matrix(0.186406,-0.001864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186406,-0.001864,0.002500,0.249988,0,0);}
.md4_c00315{transform:matrix(0.186506,-0.001865,0.002500,0.249988,0,0);-ms-transform:matrix(0.186506,-0.001865,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186506,-0.001865,0.002500,0.249988,0,0);}
.m1b_c00315{transform:matrix(0.186607,-0.002612,0.003500,0.249976,0,0);-ms-transform:matrix(0.186607,-0.002612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186607,-0.002612,0.003500,0.249976,0,0);}
.m5a_c00315{transform:matrix(0.186654,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186654,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186654,-0.002053,0.002750,0.249985,0,0);}
.ma1_c00315{transform:matrix(0.187224,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187224,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187224,-0.002059,0.002750,0.249985,0,0);}
.m51_c00315{transform:matrix(0.187624,-0.002064,0.002750,0.249985,0,0);-ms-transform:matrix(0.187624,-0.002064,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187624,-0.002064,0.002750,0.249985,0,0);}
.m3b_c00315{transform:matrix(0.187702,-0.002628,0.003500,0.249976,0,0);-ms-transform:matrix(0.187702,-0.002628,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187702,-0.002628,0.003500,0.249976,0,0);}
.mef_c00315{transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);-ms-transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);}
.mf7_c00315{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);}
.m4b_c00315{transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-ms-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);}
.md5_c00315{transform:matrix(0.188376,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188376,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188376,-0.001884,0.002500,0.249988,0,0);}
.m47_c00315{transform:matrix(0.188384,-0.002072,0.002750,0.249985,0,0);-ms-transform:matrix(0.188384,-0.002072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188384,-0.002072,0.002750,0.249985,0,0);}
.m121_c00315{transform:matrix(0.188391,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188391,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188391,-0.001884,0.002500,0.249988,0,0);}
.m48_c00315{transform:matrix(0.188409,-0.002072,0.002750,0.249985,0,0);-ms-transform:matrix(0.188409,-0.002072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188409,-0.002072,0.002750,0.249985,0,0);}
.m126_c00315{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);}
.m80_c00315{transform:matrix(0.189049,-0.002080,0.002750,0.249985,0,0);-ms-transform:matrix(0.189049,-0.002080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189049,-0.002080,0.002750,0.249985,0,0);}
.m5f_c00315{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);}
.m61_c00315{transform:matrix(0.189374,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189374,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189374,-0.002083,0.002750,0.249985,0,0);}
.md0_c00315{transform:matrix(0.189491,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189491,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189491,-0.001895,0.002500,0.249988,0,0);}
.m2c_c00315{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);}
.mc6_c00315{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);}
.m58_c00315{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);}
.mb_c00315{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);}
.mbc_c00315{transform:matrix(0.190515,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190515,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190515,-0.001905,0.002500,0.249988,0,0);}
.m53_c00315{transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);}
.m122_c00315{transform:matrix(0.191200,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191200,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191200,-0.001912,0.002500,0.249988,0,0);}
.mc8_c00315{transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);}
.me5_c00315{transform:matrix(0.191295,-0.001913,0.002500,0.249988,0,0);-ms-transform:matrix(0.191295,-0.001913,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191295,-0.001913,0.002500,0.249988,0,0);}
.m4e_c00315{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);}
.m39_c00315{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);}
.m1d_c00315{transform:matrix(0.192231,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192231,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192231,-0.002691,0.003500,0.249976,0,0);}
.mc7_c00315{transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);-ms-transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);}
.md_c00315{transform:matrix(0.192901,-0.002701,0.003500,0.249976,0,0);-ms-transform:matrix(0.192901,-0.002701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192901,-0.002701,0.003500,0.249976,0,0);}
.ma0_c00315{transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);-ms-transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);}
.mf2_c00315{transform:matrix(0.193910,-0.001939,0.002500,0.249988,0,0);-ms-transform:matrix(0.193910,-0.001939,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193910,-0.001939,0.002500,0.249988,0,0);}
.m76_c00315{transform:matrix(0.194198,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194198,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194198,-0.002136,0.002750,0.249985,0,0);}
.m4c_c00315{transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);}
.mc5_c00315{transform:matrix(0.194335,-0.001943,0.002500,0.249988,0,0);-ms-transform:matrix(0.194335,-0.001943,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194335,-0.001943,0.002500,0.249988,0,0);}
.m1c_c00315{transform:matrix(0.194456,-0.002722,0.003500,0.249976,0,0);-ms-transform:matrix(0.194456,-0.002722,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194456,-0.002722,0.003500,0.249976,0,0);}
.m8a_c00315{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);}
.m2a_c00315{transform:matrix(0.194896,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194896,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194896,-0.002729,0.003500,0.249976,0,0);}
.m3f_c00315{transform:matrix(0.194986,-0.002730,0.003500,0.249976,0,0);-ms-transform:matrix(0.194986,-0.002730,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194986,-0.002730,0.003500,0.249976,0,0);}
.mac_c00315{transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195303,-0.002148,0.002750,0.249985,0,0);}
.m10d_c00315{transform:matrix(0.195505,-0.001955,0.002500,0.249988,0,0);-ms-transform:matrix(0.195505,-0.001955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195505,-0.001955,0.002500,0.249988,0,0);}
.m4a_c00315{transform:matrix(0.195618,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195618,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195618,-0.002152,0.002750,0.249985,0,0);}
.mee_c00315{transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);}
.m6f_c00315{transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196418,-0.002161,0.002750,0.249985,0,0);}
.m6_c00315{transform:matrix(0.196641,-0.002753,0.003500,0.249976,0,0);-ms-transform:matrix(0.196641,-0.002753,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196641,-0.002753,0.003500,0.249976,0,0);}
.m33_c00315{transform:matrix(0.197016,-0.002758,0.003500,0.249976,0,0);-ms-transform:matrix(0.197016,-0.002758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197016,-0.002758,0.003500,0.249976,0,0);}
.m110_c00315{transform:matrix(0.197660,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197660,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197660,-0.001977,0.002500,0.249988,0,0);}
.m115_c00315{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);}
.m8c_c00315{transform:matrix(0.197858,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197858,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197858,-0.002176,0.002750,0.249985,0,0);}
.m59_c00315{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);}
.mce_c00315{transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);}
.m96_c00315{transform:matrix(0.198673,-0.002185,0.002750,0.249985,0,0);-ms-transform:matrix(0.198673,-0.002185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198673,-0.002185,0.002750,0.249985,0,0);}
.m32_c00315{transform:matrix(0.198776,-0.002783,0.003500,0.249976,0,0);-ms-transform:matrix(0.198776,-0.002783,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198776,-0.002783,0.003500,0.249976,0,0);}
.mfd_c00315{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);}
.m2d_c00315{transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);-ms-transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);}
.m9f_c00315{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);}
.mfa_c00315{transform:matrix(0.199051,-0.004180,0.005249,0.249945,0,0);-ms-transform:matrix(0.199051,-0.004180,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199051,-0.004180,0.005249,0.249945,0,0);}
.mda_c00315{transform:matrix(0.199300,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199300,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199300,-0.001993,0.002500,0.249988,0,0);}
.mab_c00315{transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);}
.m5e_c00315{transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199528,-0.002195,0.002750,0.249985,0,0);}
.md1_c00315{transform:matrix(0.199980,-0.002000,0.002500,0.249988,0,0);-ms-transform:matrix(0.199980,-0.002000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199980,-0.002000,0.002500,0.249988,0,0);}
.m5d_c00315{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);}
.m7_c00315{transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);}
.mb8_c00315{transform:matrix(0.200780,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200780,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200780,-0.002008,0.002500,0.249988,0,0);}
.maf_c00315{transform:matrix(0.200980,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.200980,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200980,-0.002010,0.002500,0.249988,0,0);}
.m98_c00315{transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201253,-0.002214,0.002750,0.249985,0,0);}
.m29_c00315{transform:matrix(0.201660,-0.002823,0.003500,0.249976,0,0);-ms-transform:matrix(0.201660,-0.002823,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201660,-0.002823,0.003500,0.249976,0,0);}
.m75_c00315{transform:matrix(0.201668,-0.002218,0.002750,0.249985,0,0);-ms-transform:matrix(0.201668,-0.002218,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201668,-0.002218,0.002750,0.249985,0,0);}
.mf1_c00315{transform:matrix(0.201740,-0.002017,0.002500,0.249988,0,0);-ms-transform:matrix(0.201740,-0.002017,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201740,-0.002017,0.002500,0.249988,0,0);}
.m1f_c00315{transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);-ms-transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);}
.m68_c00315{transform:matrix(0.202183,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202183,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202183,-0.002224,0.002750,0.249985,0,0);}
.m8d_c00315{transform:matrix(0.202498,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202498,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202498,-0.002227,0.002750,0.249985,0,0);}
.m128_c00315{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);}
.m23_c00315{transform:matrix(0.202755,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202755,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202755,-0.002839,0.003500,0.249976,0,0);}
.mfe_c00315{transform:matrix(0.203030,-0.004264,0.005249,0.249945,0,0);-ms-transform:matrix(0.203030,-0.004264,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203030,-0.004264,0.005249,0.249945,0,0);}
.m86_c00315{transform:matrix(0.203208,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203208,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203208,-0.002235,0.002750,0.249985,0,0);}
.m8f_c00315{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);}
.m108_c00315{transform:matrix(0.203370,-0.004271,0.005249,0.249945,0,0);-ms-transform:matrix(0.203370,-0.004271,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203370,-0.004271,0.005249,0.249945,0,0);}
.m13_c00315{transform:matrix(0.203525,-0.002849,0.003500,0.249976,0,0);-ms-transform:matrix(0.203525,-0.002849,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203525,-0.002849,0.003500,0.249976,0,0);}
.m87_c00315{transform:matrix(0.203638,-0.002240,0.002750,0.249985,0,0);-ms-transform:matrix(0.203638,-0.002240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203638,-0.002240,0.002750,0.249985,0,0);}
.m19_c00315{transform:matrix(0.203715,-0.002852,0.003500,0.249976,0,0);-ms-transform:matrix(0.203715,-0.002852,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203715,-0.002852,0.003500,0.249976,0,0);}
.m84_c00315{transform:matrix(0.203918,-0.002243,0.002750,0.249985,0,0);-ms-transform:matrix(0.203918,-0.002243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203918,-0.002243,0.002750,0.249985,0,0);}
.mb3_c00315{transform:matrix(0.203925,-0.002039,0.002500,0.249988,0,0);-ms-transform:matrix(0.203925,-0.002039,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203925,-0.002039,0.002500,0.249988,0,0);}
.m50_c00315{transform:matrix(0.204068,-0.002245,0.002750,0.249985,0,0);-ms-transform:matrix(0.204068,-0.002245,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204068,-0.002245,0.002750,0.249985,0,0);}
.m21_c00315{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);}
.md6_c00315{transform:matrix(0.204300,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204300,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204300,-0.002043,0.002500,0.249988,0,0);}
.m100_c00315{transform:matrix(0.204435,-0.004293,0.005249,0.249945,0,0);-ms-transform:matrix(0.204435,-0.004293,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204435,-0.004293,0.005249,0.249945,0,0);}
.me4_c00315{transform:matrix(0.204485,-0.002045,0.002500,0.249988,0,0);-ms-transform:matrix(0.204485,-0.002045,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204485,-0.002045,0.002500,0.249988,0,0);}
.m111_c00315{transform:matrix(0.204645,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204645,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204645,-0.002046,0.002500,0.249988,0,0);}
.m55_c00315{transform:matrix(0.204693,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204693,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204693,-0.002252,0.002750,0.249985,0,0);}
.mb7_c00315{transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);}
.ma6_c00315{transform:matrix(0.204723,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204723,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204723,-0.002252,0.002750,0.249985,0,0);}
.m4f_c00315{transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);}
.mcd_c00315{transform:matrix(0.204995,-0.002050,0.002500,0.249988,0,0);-ms-transform:matrix(0.204995,-0.002050,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204995,-0.002050,0.002500,0.249988,0,0);}
.mb0_c00315{transform:matrix(0.205070,-0.002051,0.002500,0.249988,0,0);-ms-transform:matrix(0.205070,-0.002051,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205070,-0.002051,0.002500,0.249988,0,0);}
.mea_c00315{transform:matrix(0.206200,-0.002062,0.002500,0.249988,0,0);-ms-transform:matrix(0.206200,-0.002062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206200,-0.002062,0.002500,0.249988,0,0);}
.m124_c00315{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);}
.m9c_c00315{transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);}
.mfc_c00315{transform:matrix(0.206659,-0.004340,0.005249,0.249945,0,0);-ms-transform:matrix(0.206659,-0.004340,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206659,-0.004340,0.005249,0.249945,0,0);}
.m60_c00315{transform:matrix(0.206852,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206852,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206852,-0.002275,0.002750,0.249985,0,0);}
.ma5_c00315{transform:matrix(0.206887,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206887,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206887,-0.002276,0.002750,0.249985,0,0);}
.med_c00315{transform:matrix(0.207050,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.207050,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207050,-0.002070,0.002500,0.249988,0,0);}
.m7d_c00315{transform:matrix(0.207142,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207142,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207142,-0.002279,0.002750,0.249985,0,0);}
.m14_c00315{transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);-ms-transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);}
.ma8_c00315{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);}
.m52_c00315{transform:matrix(0.208352,-0.002292,0.002750,0.249985,0,0);-ms-transform:matrix(0.208352,-0.002292,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208352,-0.002292,0.002750,0.249985,0,0);}
.m15_c00315{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);}
.m11f_c00315{transform:matrix(0.208855,-0.002089,0.002500,0.249988,0,0);-ms-transform:matrix(0.208855,-0.002089,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208855,-0.002089,0.002500,0.249988,0,0);}
.me0_c00315{transform:matrix(0.208935,-0.002089,0.002500,0.249988,0,0);-ms-transform:matrix(0.208935,-0.002089,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208935,-0.002089,0.002500,0.249988,0,0);}
.mf6_c00315{transform:matrix(0.209394,-0.004397,0.005249,0.249945,0,0);-ms-transform:matrix(0.209394,-0.004397,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209394,-0.004397,0.005249,0.249945,0,0);}
.m9b_c00315{transform:matrix(0.209627,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209627,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209627,-0.002306,0.002750,0.249985,0,0);}
.m7a_c00315{transform:matrix(0.210262,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210262,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210262,-0.002313,0.002750,0.249985,0,0);}
.mf8_c00315{transform:matrix(0.210419,-0.004419,0.005249,0.249945,0,0);-ms-transform:matrix(0.210419,-0.004419,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210419,-0.004419,0.005249,0.249945,0,0);}
.m127_c00315{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);}
.mb4_c00315{transform:matrix(0.210704,-0.002107,0.002500,0.249988,0,0);-ms-transform:matrix(0.210704,-0.002107,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210704,-0.002107,0.002500,0.249988,0,0);}
.m12c_c00315{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);}
.mb6_c00315{transform:matrix(0.211704,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211704,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211704,-0.002117,0.002500,0.249988,0,0);}
.ma4_c00315{transform:matrix(0.212022,-0.002332,0.002750,0.249985,0,0);-ms-transform:matrix(0.212022,-0.002332,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212022,-0.002332,0.002750,0.249985,0,0);}
.ma9_c00315{transform:matrix(0.212137,-0.002334,0.002750,0.249985,0,0);-ms-transform:matrix(0.212137,-0.002334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212137,-0.002334,0.002750,0.249985,0,0);}
.m114_c00315{transform:matrix(0.215234,-0.002152,0.002500,0.249988,0,0);-ms-transform:matrix(0.215234,-0.002152,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215234,-0.002152,0.002500,0.249988,0,0);}
.m103_c00315{transform:matrix(0.215278,-0.004521,0.005249,0.249945,0,0);-ms-transform:matrix(0.215278,-0.004521,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215278,-0.004521,0.005249,0.249945,0,0);}
.m45_c00315{transform:matrix(0.215507,-0.002371,0.002750,0.249985,0,0);-ms-transform:matrix(0.215507,-0.002371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215507,-0.002371,0.002750,0.249985,0,0);}
.m24_c00315{transform:matrix(0.215559,-0.003018,0.003500,0.249976,0,0);-ms-transform:matrix(0.215559,-0.003018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215559,-0.003018,0.003500,0.249976,0,0);}
.ma3_c00315{transform:matrix(0.215942,-0.002375,0.002750,0.249985,0,0);-ms-transform:matrix(0.215942,-0.002375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215942,-0.002375,0.002750,0.249985,0,0);}
.mca_c00315{transform:matrix(0.216209,-0.002162,0.002500,0.249988,0,0);-ms-transform:matrix(0.216209,-0.002162,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216209,-0.002162,0.002500,0.249988,0,0);}
.me3_c00315{transform:matrix(0.216424,-0.002164,0.002500,0.249988,0,0);-ms-transform:matrix(0.216424,-0.002164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216424,-0.002164,0.002500,0.249988,0,0);}
.m62_c00315{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);}
.mf9_c00315{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);}
.m113_c00315{transform:matrix(0.217584,-0.002176,0.002500,0.249988,0,0);-ms-transform:matrix(0.217584,-0.002176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217584,-0.002176,0.002500,0.249988,0,0);}
.m10_c00315{transform:matrix(0.217749,-0.003048,0.003500,0.249976,0,0);-ms-transform:matrix(0.217749,-0.003048,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217749,-0.003048,0.003500,0.249976,0,0);}
.m12f_c00315{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);}
.mdf_c00315{transform:matrix(0.218489,-0.002185,0.002500,0.249988,0,0);-ms-transform:matrix(0.218489,-0.002185,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218489,-0.002185,0.002500,0.249988,0,0);}
.m107_c00315{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);}
.m22_c00315{transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);-ms-transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);}
.maa_c00315{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);}
.m1a_c00315{transform:matrix(0.220288,-0.003084,0.003500,0.249976,0,0);-ms-transform:matrix(0.220288,-0.003084,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220288,-0.003084,0.003500,0.249976,0,0);}
.m8b_c00315{transform:matrix(0.220932,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220932,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220932,-0.002430,0.002750,0.249985,0,0);}
.m91_c00315{transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221147,-0.002433,0.002750,0.249985,0,0);}
.m7b_c00315{transform:matrix(0.221417,-0.002436,0.002750,0.249985,0,0);-ms-transform:matrix(0.221417,-0.002436,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221417,-0.002436,0.002750,0.249985,0,0);}
.m12d_c00315{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);}
.mc0_c00315{transform:matrix(0.224479,-0.002245,0.002500,0.249988,0,0);-ms-transform:matrix(0.224479,-0.002245,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224479,-0.002245,0.002500,0.249988,0,0);}
.m7c_c00315{transform:matrix(0.226861,-0.002495,0.002750,0.249985,0,0);-ms-transform:matrix(0.226861,-0.002495,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226861,-0.002495,0.002750,0.249985,0,0);}
.mdc_c00315{transform:matrix(0.227304,-0.002273,0.002500,0.249988,0,0);-ms-transform:matrix(0.227304,-0.002273,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227304,-0.002273,0.002500,0.249988,0,0);}
.ma2_c00315{transform:matrix(0.228296,-0.002511,0.002750,0.249985,0,0);-ms-transform:matrix(0.228296,-0.002511,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228296,-0.002511,0.002750,0.249985,0,0);}
.m82_c00315{transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);-ms-transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228616,-0.002515,0.002750,0.249985,0,0);}
.mff_c00315{transform:matrix(0.229005,-0.004809,0.005249,0.249945,0,0);-ms-transform:matrix(0.229005,-0.004809,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229005,-0.004809,0.005249,0.249945,0,0);}
.m72_c00315{transform:matrix(0.230066,-0.002531,0.002750,0.249985,0,0);-ms-transform:matrix(0.230066,-0.002531,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230066,-0.002531,0.002750,0.249985,0,0);}
.m12b_c00315{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);}
.m9e_c00315{transform:matrix(0.231946,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231946,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231946,-0.002551,0.002750,0.249985,0,0);}
.m77_c00315{transform:matrix(0.232191,-0.002554,0.002750,0.249985,0,0);-ms-transform:matrix(0.232191,-0.002554,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232191,-0.002554,0.002750,0.249985,0,0);}
.meb_c00315{transform:matrix(0.232758,-0.002328,0.002500,0.249988,0,0);-ms-transform:matrix(0.232758,-0.002328,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232758,-0.002328,0.002500,0.249988,0,0);}
.m11a_c00315{transform:matrix(0.234533,-0.002345,0.002500,0.249988,0,0);-ms-transform:matrix(0.234533,-0.002345,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234533,-0.002345,0.002500,0.249988,0,0);}
.m56_c00315{transform:matrix(0.235036,-0.002585,0.002750,0.249985,0,0);-ms-transform:matrix(0.235036,-0.002585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235036,-0.002585,0.002750,0.249985,0,0);}
.mde_c00315{transform:matrix(0.236748,-0.002367,0.002500,0.249988,0,0);-ms-transform:matrix(0.236748,-0.002367,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236748,-0.002367,0.002500,0.249988,0,0);}
.m83_c00315{transform:matrix(0.237351,-0.002611,0.002750,0.249985,0,0);-ms-transform:matrix(0.237351,-0.002611,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237351,-0.002611,0.002750,0.249985,0,0);}
.m123_c00315{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);}
.mbb_c00315{transform:matrix(0.239863,-0.002399,0.002500,0.249988,0,0);-ms-transform:matrix(0.239863,-0.002399,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239863,-0.002399,0.002500,0.249988,0,0);}
.m37_c00315{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);}
.me_c00315{transform:matrix(0.241891,-0.003386,0.003500,0.249976,0,0);-ms-transform:matrix(0.241891,-0.003386,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241891,-0.003386,0.003500,0.249976,0,0);}
.mdd_c00315{transform:matrix(0.241963,-0.002420,0.002500,0.249988,0,0);-ms-transform:matrix(0.241963,-0.002420,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241963,-0.002420,0.002500,0.249988,0,0);}
.m12a_c00315{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);}
.me2_c00315{transform:matrix(0.243873,-0.002439,0.002500,0.249988,0,0);-ms-transform:matrix(0.243873,-0.002439,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243873,-0.002439,0.002500,0.249988,0,0);}
.m97_c00315{transform:matrix(0.250255,-0.002753,0.002750,0.249985,0,0);-ms-transform:matrix(0.250255,-0.002753,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250255,-0.002753,0.002750,0.249985,0,0);}
.m93_c00315{transform:matrix(0.255145,-0.002807,0.002750,0.249985,0,0);-ms-transform:matrix(0.255145,-0.002807,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255145,-0.002807,0.002750,0.249985,0,0);}
.m79_c00315{transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);-ms-transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);}
.mdb_c00315{transform:matrix(0.270401,-0.002704,0.002500,0.249988,0,0);-ms-transform:matrix(0.270401,-0.002704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270401,-0.002704,0.002500,0.249988,0,0);}
.me1_c00315{transform:matrix(0.299270,-0.002993,0.002500,0.249988,0,0);-ms-transform:matrix(0.299270,-0.002993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299270,-0.002993,0.002500,0.249988,0,0);}
.m54_c00315{transform:matrix(0.310671,-0.003417,0.002750,0.249985,0,0);-ms-transform:matrix(0.310671,-0.003417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.310671,-0.003417,0.002750,0.249985,0,0);}
.m2b_c00315{transform:matrix(0.313859,-0.004394,0.003500,0.249976,0,0);-ms-transform:matrix(0.313859,-0.004394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.313859,-0.004394,0.003500,0.249976,0,0);}
.m38_c00315{transform:matrix(0.322283,-0.004512,0.003500,0.249976,0,0);-ms-transform:matrix(0.322283,-0.004512,0.003500,0.249976,0,0);-webkit-transform:matrix(0.322283,-0.004512,0.003500,0.249976,0,0);}
.m116_c00315{transform:matrix(0.338423,-0.003384,0.002500,0.249988,0,0);-ms-transform:matrix(0.338423,-0.003384,0.002500,0.249988,0,0);-webkit-transform:matrix(0.338423,-0.003384,0.002500,0.249988,0,0);}
.mf4_c00315{transform:matrix(0.369952,-0.003700,0.002500,0.249988,0,0);-ms-transform:matrix(0.369952,-0.003700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.369952,-0.003700,0.002500,0.249988,0,0);}
.m4_c00315{transform:matrix(0.387844,-0.008145,0.005249,0.249945,0,0);-ms-transform:matrix(0.387844,-0.008145,0.005249,0.249945,0,0);-webkit-transform:matrix(0.387844,-0.008145,0.005249,0.249945,0,0);}
.mc_c00315{transform:matrix(0.392192,-0.005491,0.003500,0.249976,0,0);-ms-transform:matrix(0.392192,-0.005491,0.003500,0.249976,0,0);-webkit-transform:matrix(0.392192,-0.005491,0.003500,0.249976,0,0);}
.m1_c00315{transform:matrix(0.590080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590080,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;}
.fs14_c00315{font-size:52.500000px;}
.fs15_c00315{font-size:63.000000px;}
.fs11_c00315{font-size:63.013890px;}
.fse_c00315{font-size:67.203360px;}
.fs9_c00315{font-size:67.204065px;}
.fsa_c00315{font-size:68.253412px;}
.fs8_c00315{font-size:68.254129px;}
.fsf_c00315{font-size:69.300000px;}
.fsc_c00315{font-size:69.303465px;}
.fsd_c00315{font-size:70.353517px;}
.fs7_c00315{font-size:70.354256px;}
.fs2_c00315{font-size:70.356894px;}
.fs10_c00315{font-size:71.403570px;}
.fs6_c00315{font-size:71.404320px;}
.fs3_c00315{font-size:71.406997px;}
.fs12_c00315{font-size:71.415742px;}
.fs13_c00315{font-size:72.453622px;}
.fs5_c00315{font-size:72.454383px;}
.fs4_c00315{font-size:72.457100px;}
.fs0_c00315{font-size:73.500000px;}
.fsb_c00315{font-size:73.503675px;}
.fs1_c00315{font-size:126.027780px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:97.329000px;}
.ye7_c00315{bottom:210.060000px;}
.y123_c00315{bottom:229.501500px;}
.y124_c00315{bottom:230.169000px;}
.y125_c00315{bottom:230.328000px;}
.y126_c00315{bottom:230.679000px;}
.y127_c00315{bottom:231.091500px;}
.y128_c00315{bottom:231.591000px;}
.y129_c00315{bottom:232.134000px;}
.y12a_c00315{bottom:233.259000px;}
.y12b_c00315{bottom:233.394000px;}
.y12c_c00315{bottom:233.577000px;}
.y12d_c00315{bottom:233.751000px;}
.y12e_c00315{bottom:233.931000px;}
.y122_c00315{bottom:242.730000px;}
.yd9_c00315{bottom:252.718995px;}
.yda_c00315{bottom:253.064790px;}
.ydb_c00315{bottom:253.553490px;}
.ydc_c00315{bottom:253.847850px;}
.ydd_c00315{bottom:254.042025px;}
.yde_c00315{bottom:254.509560px;}
.ydf_c00315{bottom:255.084495px;}
.ye0_c00315{bottom:255.443745px;}
.ye1_c00315{bottom:255.627060px;}
.ye2_c00315{bottom:256.015815px;}
.ye3_c00315{bottom:256.318170px;}
.ye4_c00315{bottom:256.509945px;}
.ye5_c00315{bottom:256.917105px;}
.ye6_c00315{bottom:257.122755px;}
.ycd_c00315{bottom:275.670195px;}
.yce_c00315{bottom:275.934915px;}
.ycf_c00315{bottom:276.706830px;}
.yd0_c00315{bottom:276.844545px;}
.yd1_c00315{bottom:277.216635px;}
.yd2_c00315{bottom:277.546695px;}
.yd3_c00315{bottom:278.137395px;}
.yd4_c00315{bottom:278.334615px;}
.yd5_c00315{bottom:278.575305px;}
.yd6_c00315{bottom:279.245010px;}
.yd7_c00315{bottom:279.760740px;}
.yd8_c00315{bottom:279.995760px;}
.yc2_c00315{bottom:298.350690px;}
.yc3_c00315{bottom:298.599975px;}
.yc4_c00315{bottom:298.837200px;}
.yc5_c00315{bottom:299.795595px;}
.yc6_c00315{bottom:300.188475px;}
.yc7_c00315{bottom:300.429300px;}
.yc8_c00315{bottom:300.880620px;}
.yc9_c00315{bottom:301.469310px;}
.yca_c00315{bottom:302.194125px;}
.ycb_c00315{bottom:302.898540px;}
.ycc_c00315{bottom:303.160305px;}
.yb8_c00315{bottom:321.031500px;}
.yb9_c00315{bottom:321.358650px;}
.yba_c00315{bottom:321.801450px;}
.ybb_c00315{bottom:321.900990px;}
.ybc_c00315{bottom:322.392855px;}
.ybd_c00315{bottom:322.951695px;}
.ybe_c00315{bottom:323.381265px;}
.ybf_c00315{bottom:324.379965px;}
.yc0_c00315{bottom:324.876990px;}
.yc1_c00315{bottom:325.163205px;}
.y116_c00315{bottom:344.250435px;}
.y117_c00315{bottom:344.560410px;}
.y118_c00315{bottom:344.936205px;}
.y119_c00315{bottom:345.654285px;}
.y11a_c00315{bottom:345.838065px;}
.y11b_c00315{bottom:346.443045px;}
.y11c_c00315{bottom:347.144850px;}
.y11d_c00315{bottom:347.358090px;}
.y11e_c00315{bottom:347.560770px;}
.y11f_c00315{bottom:348.462195px;}
.y120_c00315{bottom:348.670110px;}
.y121_c00315{bottom:349.094505px;}
.y10a_c00315{bottom:367.201500px;}
.y10b_c00315{bottom:367.641870px;}
.y10c_c00315{bottom:368.308770px;}
.y10d_c00315{bottom:368.622060px;}
.y10e_c00315{bottom:368.854245px;}
.y10f_c00315{bottom:369.464385px;}
.y110_c00315{bottom:369.707505px;}
.y111_c00315{bottom:369.988365px;}
.y112_c00315{bottom:370.441920px;}
.y113_c00315{bottom:370.717710px;}
.y114_c00315{bottom:371.281815px;}
.y115_c00315{bottom:372.040200px;}
.yff_c00315{bottom:389.333346px;}
.y100_c00315{bottom:390.580446px;}
.y101_c00315{bottom:390.828528px;}
.y102_c00315{bottom:391.151585px;}
.y103_c00315{bottom:392.422047px;}
.y104_c00315{bottom:392.845682px;}
.y105_c00315{bottom:393.463085px;}
.y106_c00315{bottom:394.119149px;}
.y107_c00315{bottom:394.512581px;}
.y108_c00315{bottom:395.148527px;}
.y109_c00315{bottom:395.666120px;}
.yae_c00315{bottom:412.831500px;}
.yaf_c00315{bottom:413.258265px;}
.yb0_c00315{bottom:414.003375px;}
.yb1_c00315{bottom:414.416460px;}
.yb2_c00315{bottom:414.724245px;}
.yb3_c00315{bottom:415.175310px;}
.yb4_c00315{bottom:415.477635px;}
.yb5_c00315{bottom:415.993365px;}
.yb6_c00315{bottom:416.795415px;}
.yb7_c00315{bottom:417.071205px;}
.yf4_c00315{bottom:431.466000px;}
.yf5_c00315{bottom:432.100662px;}
.yf6_c00315{bottom:432.833825px;}
.yf7_c00315{bottom:433.763610px;}
.yf8_c00315{bottom:434.736740px;}
.yf9_c00315{bottom:435.978659px;}
.yfa_c00315{bottom:437.051832px;}
.yfb_c00315{bottom:438.446810px;}
.yfc_c00315{bottom:438.933359px;}
.yfd_c00315{bottom:439.893416px;}
.yfe_c00315{bottom:440.942240px;}
.ya1_c00315{bottom:458.683557px;}
.ya2_c00315{bottom:459.282649px;}
.ya3_c00315{bottom:459.730620px;}
.ya4_c00315{bottom:459.908656px;}
.ya5_c00315{bottom:460.589151px;}
.ya6_c00315{bottom:460.997550px;}
.ya7_c00315{bottom:461.234629px;}
.ya8_c00315{bottom:461.656345px;}
.ya9_c00315{bottom:461.920158px;}
.yaa_c00315{bottom:462.525322px;}
.yab_c00315{bottom:462.828540px;}
.yac_c00315{bottom:463.046659px;}
.yad_c00315{bottom:463.221643px;}
.y95_c00315{bottom:481.133419px;}
.y96_c00315{bottom:481.961934px;}
.y97_c00315{bottom:482.178249px;}
.y98_c00315{bottom:482.561808px;}
.y99_c00315{bottom:482.766787px;}
.y9a_c00315{bottom:483.098949px;}
.y9b_c00315{bottom:483.503529px;}
.y9c_c00315{bottom:484.417678px;}
.y9d_c00315{bottom:484.519368px;}
.y9e_c00315{bottom:485.294521px;}
.y9f_c00315{bottom:485.802391px;}
.ya0_c00315{bottom:486.081621px;}
.y89_c00315{bottom:504.084184px;}
.y8a_c00315{bottom:504.527275px;}
.y8b_c00315{bottom:505.127182px;}
.y8c_c00315{bottom:505.293552px;}
.y8d_c00315{bottom:506.134045px;}
.y8e_c00315{bottom:506.428290px;}
.y8f_c00315{bottom:506.737021px;}
.y90_c00315{bottom:507.595368px;}
.y91_c00315{bottom:507.880471px;}
.y92_c00315{bottom:508.314256px;}
.y93_c00315{bottom:508.661862px;}
.y94_c00315{bottom:509.211279px;}
.y81_c00315{bottom:526.766841px;}
.y82_c00315{bottom:527.634487px;}
.y83_c00315{bottom:527.984160px;}
.y84_c00315{bottom:528.987787px;}
.y85_c00315{bottom:529.646659px;}
.y86_c00315{bottom:530.599488px;}
.y87_c00315{bottom:531.344253px;}
.y88_c00315{bottom:531.992319px;}
.y76_c00315{bottom:549.331975px;}
.y77_c00315{bottom:549.957163px;}
.y78_c00315{bottom:550.416090px;}
.y79_c00315{bottom:550.736569px;}
.y7a_c00315{bottom:551.217388px;}
.y7b_c00315{bottom:551.617139px;}
.y7c_c00315{bottom:552.283884px;}
.y7d_c00315{bottom:553.189116px;}
.y7e_c00315{bottom:553.410677px;}
.y7f_c00315{bottom:553.916620px;}
.y80_c00315{bottom:554.861050px;}
.y6c_c00315{bottom:572.130354px;}
.y6d_c00315{bottom:572.454304px;}
.y6e_c00315{bottom:572.882345px;}
.y6f_c00315{bottom:573.945186px;}
.y70_c00315{bottom:574.900737px;}
.y71_c00315{bottom:575.166794px;}
.y72_c00315{bottom:575.726493px;}
.y73_c00315{bottom:576.002169px;}
.y74_c00315{bottom:576.941551px;}
.y75_c00315{bottom:577.230046px;}
.y62_c00315{bottom:595.891500px;}
.y63_c00315{bottom:596.511636px;}
.y64_c00315{bottom:597.025941px;}
.y65_c00315{bottom:597.447681px;}
.y66_c00315{bottom:597.631969px;}
.y67_c00315{bottom:598.671370px;}
.y68_c00315{bottom:598.938654px;}
.y69_c00315{bottom:599.339158px;}
.y6a_c00315{bottom:599.636917px;}
.y6b_c00315{bottom:600.649951px;}
.ye8_c00315{bottom:619.651500px;}
.ye9_c00315{bottom:620.128920px;}
.yea_c00315{bottom:620.828505px;}
.yeb_c00315{bottom:621.044655px;}
.yec_c00315{bottom:621.800610px;}
.yed_c00315{bottom:622.051485px;}
.yee_c00315{bottom:622.491435px;}
.yef_c00315{bottom:622.848390px;}
.yf0_c00315{bottom:623.121105px;}
.yf1_c00315{bottom:623.615340px;}
.yf2_c00315{bottom:624.279075px;}
.yf3_c00315{bottom:624.541590px;}
.y58_c00315{bottom:641.786075px;}
.y59_c00315{bottom:642.135813px;}
.y5a_c00315{bottom:643.231025px;}
.y5b_c00315{bottom:643.784784px;}
.y5c_c00315{bottom:644.239157px;}
.y5d_c00315{bottom:644.659196px;}
.y5e_c00315{bottom:645.504602px;}
.y5f_c00315{bottom:645.947919px;}
.y60_c00315{bottom:646.704381px;}
.y61_c00315{bottom:647.113250px;}
.y4d_c00315{bottom:663.661305px;}
.y4e_c00315{bottom:664.725552px;}
.y4f_c00315{bottom:665.390110px;}
.y50_c00315{bottom:665.802732px;}
.y51_c00315{bottom:666.478310px;}
.y52_c00315{bottom:667.109745px;}
.y53_c00315{bottom:667.908396px;}
.y54_c00315{bottom:668.308052px;}
.y55_c00315{bottom:669.057431px;}
.y56_c00315{bottom:669.422379px;}
.y57_c00315{bottom:670.382868px;}
.y41_c00315{bottom:687.961500px;}
.y42_c00315{bottom:688.192649px;}
.y43_c00315{bottom:688.505093px;}
.y44_c00315{bottom:688.890582px;}
.y45_c00315{bottom:689.312949px;}
.y46_c00315{bottom:689.562445px;}
.y47_c00315{bottom:690.334051px;}
.y48_c00315{bottom:690.723649px;}
.y49_c00315{bottom:690.964335px;}
.y4a_c00315{bottom:691.686095px;}
.y4b_c00315{bottom:691.989150px;}
.y4c_c00315{bottom:692.686605px;}
.y3e_c00315{bottom:710.734107px;}
.y40_c00315{bottom:710.734224px;}
.y3d_c00315{bottom:710.734230px;}
.y3f_c00315{bottom:710.734326px;}
.y3c_c00315{bottom:710.734812px;}
.y30_c00315{bottom:733.039854px;}
.y31_c00315{bottom:733.494630px;}
.y32_c00315{bottom:734.356554px;}
.y33_c00315{bottom:735.539043px;}
.y34_c00315{bottom:736.118076px;}
.y35_c00315{bottom:737.278536px;}
.y36_c00315{bottom:737.671509px;}
.y37_c00315{bottom:737.859753px;}
.y38_c00315{bottom:738.053415px;}
.y39_c00315{bottom:738.363459px;}
.y3a_c00315{bottom:738.926931px;}
.y3b_c00315{bottom:739.501596px;}
.y23_c00315{bottom:755.453985px;}
.y24_c00315{bottom:755.941458px;}
.y25_c00315{bottom:756.470826px;}
.y26_c00315{bottom:757.551066px;}
.y27_c00315{bottom:757.930032px;}
.y28_c00315{bottom:758.538507px;}
.y29_c00315{bottom:758.897565px;}
.y2a_c00315{bottom:759.491025px;}
.y2b_c00315{bottom:759.766293px;}
.y2c_c00315{bottom:760.205739px;}
.y2d_c00315{bottom:760.681914px;}
.y2e_c00315{bottom:761.248074px;}
.y2f_c00315{bottom:761.623365px;}
.y19_c00315{bottom:778.654662px;}
.y1a_c00315{bottom:779.624652px;}
.y1b_c00315{bottom:780.191904px;}
.y1c_c00315{bottom:781.163259px;}
.y1d_c00315{bottom:781.666587px;}
.y1e_c00315{bottom:782.097843px;}
.y1f_c00315{bottom:782.683848px;}
.y20_c00315{bottom:783.436047px;}
.y21_c00315{bottom:783.809910px;}
.y22_c00315{bottom:784.468260px;}
.yf_c00315{bottom:801.360000px;}
.y10_c00315{bottom:802.662966px;}
.y11_c00315{bottom:803.037564px;}
.y12_c00315{bottom:803.650701px;}
.y13_c00315{bottom:804.524007px;}
.y14_c00315{bottom:805.431060px;}
.y15_c00315{bottom:805.861140px;}
.y16_c00315{bottom:806.179626px;}
.y17_c00315{bottom:806.924055px;}
.y18_c00315{bottom:807.136197px;}
.y4_c00315{bottom:824.043000px;}
.y5_c00315{bottom:824.734614px;}
.y6_c00315{bottom:825.626505px;}
.y7_c00315{bottom:826.061205px;}
.y8_c00315{bottom:826.719072px;}
.y9_c00315{bottom:827.001753px;}
.ya_c00315{bottom:827.664240px;}
.yb_c00315{bottom:828.017859px;}
.yc_c00315{bottom:828.836187px;}
.yd_c00315{bottom:830.234598px;}
.ye_c00315{bottom:830.548464px;}
.y2_c00315{bottom:866.977500px;}
.y3_c00315{bottom:869.488617px;}
.h16_c00315{height:52.500000px;}
.h17_c00315{height:63.000000px;}
.h13_c00315{height:63.013890px;}
.h10_c00315{height:67.203360px;}
.hb_c00315{height:67.204065px;}
.hc_c00315{height:68.253412px;}
.ha_c00315{height:68.254129px;}
.h11_c00315{height:69.300000px;}
.he_c00315{height:69.303465px;}
.hf_c00315{height:70.353517px;}
.h9_c00315{height:70.354256px;}
.h4_c00315{height:70.356894px;}
.h12_c00315{height:71.403570px;}
.h8_c00315{height:71.404320px;}
.h5_c00315{height:71.406997px;}
.h14_c00315{height:71.415742px;}
.h15_c00315{height:72.453622px;}
.h7_c00315{height:72.454383px;}
.h6_c00315{height:72.457100px;}
.h2_c00315{height:73.500000px;}
.hd_c00315{height:73.503675px;}
.h3_c00315{height:126.027780px;}
.h0_c00315{height:1008.450000px;}
.h1_c00315{height:1008.750000px;}
.w0_c00315{width:696.000000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:138.780000px;}
.x49_c00315{left:145.386273px;}
.x2_c00315{left:149.850000px;}
.x4_c00315{left:153.453000px;}
.x10_c00315{left:155.464209px;}
.x23_c00315{left:156.534477px;}
.x43_c00315{left:157.622655px;}
.x6a_c00315{left:158.857916px;}
.x74_c00315{left:159.995481px;}
.xa7_c00315{left:161.287500px;}
.x86_c00315{left:162.624000px;}
.x92_c00315{left:165.647370px;}
.x38_c00315{left:175.102500px;}
.x59_c00315{left:184.028980px;}
.x8b_c00315{left:185.898120px;}
.x2d_c00315{left:189.465801px;}
.x24_c00315{left:191.353977px;}
.xae_c00315{left:192.858045px;}
.x39_c00315{left:196.116000px;}
.x6b_c00315{left:199.138916px;}
.x98_c00315{left:200.486385px;}
.x6_c00315{left:203.797500px;}
.x9d_c00315{left:205.281000px;}
.x8c_c00315{left:207.520410px;}
.x3_c00315{left:208.980000px;}
.x52_c00315{left:213.934500px;}
.x7d_c00315{left:216.672668px;}
.x5a_c00315{left:219.668584px;}
.xb2_c00315{left:220.716000px;}
.x1a_c00315{left:223.149708px;}
.x3a_c00315{left:224.520000px;}
.x25_c00315{left:229.165977px;}
.x36_c00315{left:231.398103px;}
.x75_c00315{left:235.314981px;}
.xb3_c00315{left:236.650500px;}
.x60_c00315{left:238.258433px;}
.x87_c00315{left:239.619000px;}
.x37_c00315{left:247.059669px;}
.x11_c00315{left:248.533209px;}
.x88_c00315{left:249.573000px;}
.x2e_c00315{left:251.031801px;}
.x6c_c00315{left:253.675916px;}
.x76_c00315{left:254.979981px;}
.x3b_c00315{left:259.564500px;}
.x53_c00315{left:260.689500px;}
.x1b_c00315{left:263.667708px;}
.x4a_c00315{left:265.834953px;}
.x7_c00315{left:267.504000px;}
.x6d_c00315{left:268.800416px;}
.xa8_c00315{left:272.014500px;}
.x5_c00315{left:273.030000px;}
.x12_c00315{left:275.290209px;}
.x82_c00315{left:277.419000px;}
.x7e_c00315{left:279.310361px;}
.x93_c00315{left:283.082370px;}
.x77_c00315{left:289.848981px;}
.x8d_c00315{left:294.659040px;}
.x9e_c00315{left:296.854500px;}
.x8_c00315{left:298.554000px;}
.x44_c00315{left:300.473385px;}
.xaf_c00315{left:302.245545px;}
.xa9_c00315{left:303.343500px;}
.x26_c00315{left:306.325977px;}
.x5b_c00315{left:308.244111px;}
.x4b_c00315{left:311.948941px;}
.xb4_c00315{left:313.045500px;}
.x54_c00315{left:315.783000px;}
.x13_c00315{left:319.085709px;}
.x3c_c00315{left:320.643000px;}
.xaa_c00315{left:326.562000px;}
.x61_c00315{left:330.669903px;}
.x1c_c00315{left:333.050208px;}
.x2f_c00315{left:335.495301px;}
.x78_c00315{left:338.679981px;}
.x66_c00315{left:342.479225px;}
.x9_c00315{left:345.544500px;}
.x7f_c00315{left:347.310603px;}
.x4c_c00315{left:349.846029px;}
.x8e_c00315{left:352.178955px;}
.x94_c00315{left:353.297370px;}
.x89_c00315{left:354.643500px;}
.xb5_c00315{left:363.004500px;}
.xa_c00315{left:365.736000px;}
.x1d_c00315{left:369.002208px;}
.x6e_c00315{left:371.958416px;}
.x79_c00315{left:375.459981px;}
.x27_c00315{left:376.857477px;}
.x14_c00315{left:381.464709px;}
.x4d_c00315{left:384.894649px;}
.x45_c00315{left:387.652557px;}
.x3d_c00315{left:390.789000px;}
.x8f_c00315{left:393.260550px;}
.x83_c00315{left:394.612500px;}
.x67_c00315{left:397.330614px;}
.x1e_c00315{left:399.806208px;}
.x28_c00315{left:402.504477px;}
.x55_c00315{left:410.274000px;}
.x80_c00315{left:411.854813px;}
.xb_c00315{left:413.056500px;}
.xb6_c00315{left:417.328500px;}
.x84_c00315{left:424.845000px;}
.x3e_c00315{left:426.207000px;}
.x95_c00315{left:432.089370px;}
.x56_c00315{left:434.572500px;}
.xc_c00315{left:438.315000px;}
.xab_c00315{left:439.974000px;}
.x1f_c00315{left:441.663708px;}
.x29_c00315{left:444.894477px;}
.x15_c00315{left:446.254209px;}
.x3f_c00315{left:448.087500px;}
.x62_c00315{left:451.619747px;}
.x81_c00315{left:454.011275px;}
.x4e_c00315{left:455.339874px;}
.x5c_c00315{left:456.679478px;}
.x7a_c00315{left:458.564481px;}
.x30_c00315{left:459.744801px;}
.x2a_c00315{left:464.556477px;}
.x46_c00315{left:467.540542px;}
.x63_c00315{left:468.624867px;}
.x57_c00315{left:470.982000px;}
.xb0_c00315{left:472.626045px;}
.x16_c00315{left:476.974209px;}
.x6f_c00315{left:478.056416px;}
.x5d_c00315{left:479.695230px;}
.xac_c00315{left:485.329500px;}
.x31_c00315{left:487.814301px;}
.x4f_c00315{left:492.231961px;}
.x20_c00315{left:495.392208px;}
.xd_c00315{left:496.767000px;}
.x58_c00315{left:498.051000px;}
.x17_c00315{left:499.723209px;}
.x32_c00315{left:501.260301px;}
.xa4_c00315{left:502.642920px;}
.x70_c00315{left:503.974916px;}
.x64_c00315{left:507.528009px;}
.x90_c00315{left:512.609850px;}
.x40_c00315{left:513.702000px;}
.x33_c00315{left:515.093301px;}
.x47_c00315{left:517.527348px;}
.x21_c00315{left:522.096708px;}
.x96_c00315{left:523.128870px;}
.x99_c00315{left:525.824385px;}
.x2b_c00315{left:529.957977px;}
.x34_c00315{left:537.239301px;}
.x68_c00315{left:538.837563px;}
.x41_c00315{left:541.252500px;}
.x71_c00315{left:543.409916px;}
.x9a_c00315{left:545.001885px;}
.x8a_c00315{left:547.173000px;}
.x18_c00315{left:552.896709px;}
.x9f_c00315{left:553.923000px;}
.x50_c00315{left:555.273268px;}
.x85_c00315{left:556.623000px;}
.x5e_c00315{left:558.001872px;}
.xa2_c00315{left:561.435000px;}
.x19_c00315{left:568.049709px;}
.x22_c00315{left:569.121708px;}
.x2c_c00315{left:570.397977px;}
.x72_c00315{left:575.010416px;}
.xa5_c00315{left:576.171725px;}
.x35_c00315{left:577.487301px;}
.xb7_c00315{left:579.055500px;}
.x65_c00315{left:580.156409px;}
.x5f_c00315{left:582.046608px;}
.x7b_c00315{left:584.447481px;}
.x9b_c00315{left:585.717885px;}
.x51_c00315{left:589.306389px;}
.x69_c00315{left:592.842969px;}
.xe_c00315{left:596.653500px;}
.x97_c00315{left:598.203870px;}
.x91_c00315{left:600.376965px;}
.x42_c00315{left:604.657500px;}
.x48_c00315{left:605.835954px;}
.x7c_c00315{left:609.831981px;}
.xa3_c00315{left:611.379000px;}
.xa6_c00315{left:613.110143px;}
.xf_c00315{left:619.072500px;}
.xa0_c00315{left:620.296500px;}
.x73_c00315{left:624.957416px;}
.x9c_c00315{left:643.950000px;}
.xad_c00315{left:645.157500px;}
.xa1_c00315{left:646.548000px;}
.xb1_c00315{left:669.600000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs14_c00315{font-size:46.666667pt;}
.fs15_c00315{font-size:56.000000pt;}
.fs11_c00315{font-size:56.012347pt;}
.fse_c00315{font-size:59.736320pt;}
.fs9_c00315{font-size:59.736947pt;}
.fsa_c00315{font-size:60.669700pt;}
.fs8_c00315{font-size:60.670337pt;}
.fsf_c00315{font-size:61.600000pt;}
.fsc_c00315{font-size:61.603080pt;}
.fsd_c00315{font-size:62.536460pt;}
.fs7_c00315{font-size:62.537116pt;}
.fs2_c00315{font-size:62.539461pt;}
.fs10_c00315{font-size:63.469840pt;}
.fs6_c00315{font-size:63.470506pt;}
.fs3_c00315{font-size:63.472886pt;}
.fs12_c00315{font-size:63.480660pt;}
.fs13_c00315{font-size:64.403220pt;}
.fs5_c00315{font-size:64.403896pt;}
.fs4_c00315{font-size:64.406311pt;}
.fs0_c00315{font-size:65.333333pt;}
.fsb_c00315{font-size:65.336600pt;}
.fs1_c00315{font-size:112.024693pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:86.514667pt;}
.ye7_c00315{bottom:186.720000pt;}
.y123_c00315{bottom:204.001333pt;}
.y124_c00315{bottom:204.594667pt;}
.y125_c00315{bottom:204.736000pt;}
.y126_c00315{bottom:205.048000pt;}
.y127_c00315{bottom:205.414667pt;}
.y128_c00315{bottom:205.858667pt;}
.y129_c00315{bottom:206.341333pt;}
.y12a_c00315{bottom:207.341333pt;}
.y12b_c00315{bottom:207.461333pt;}
.y12c_c00315{bottom:207.624000pt;}
.y12d_c00315{bottom:207.778667pt;}
.y12e_c00315{bottom:207.938667pt;}
.y122_c00315{bottom:215.760000pt;}
.yd9_c00315{bottom:224.639107pt;}
.yda_c00315{bottom:224.946480pt;}
.ydb_c00315{bottom:225.380880pt;}
.ydc_c00315{bottom:225.642533pt;}
.ydd_c00315{bottom:225.815133pt;}
.yde_c00315{bottom:226.230720pt;}
.ydf_c00315{bottom:226.741773pt;}
.ye0_c00315{bottom:227.061107pt;}
.ye1_c00315{bottom:227.224053pt;}
.ye2_c00315{bottom:227.569613pt;}
.ye3_c00315{bottom:227.838373pt;}
.ye4_c00315{bottom:228.008840pt;}
.ye5_c00315{bottom:228.370760pt;}
.ye6_c00315{bottom:228.553560pt;}
.ycd_c00315{bottom:245.040173pt;}
.yce_c00315{bottom:245.275480pt;}
.ycf_c00315{bottom:245.961627pt;}
.yd0_c00315{bottom:246.084040pt;}
.yd1_c00315{bottom:246.414787pt;}
.yd2_c00315{bottom:246.708173pt;}
.yd3_c00315{bottom:247.233240pt;}
.yd4_c00315{bottom:247.408547pt;}
.yd5_c00315{bottom:247.622493pt;}
.yd6_c00315{bottom:248.217787pt;}
.yd7_c00315{bottom:248.676213pt;}
.yd8_c00315{bottom:248.885120pt;}
.yc2_c00315{bottom:265.200613pt;}
.yc3_c00315{bottom:265.422200pt;}
.yc4_c00315{bottom:265.633067pt;}
.yc5_c00315{bottom:266.484973pt;}
.yc6_c00315{bottom:266.834200pt;}
.yc7_c00315{bottom:267.048267pt;}
.yc8_c00315{bottom:267.449440pt;}
.yc9_c00315{bottom:267.972720pt;}
.yca_c00315{bottom:268.617000pt;}
.ycb_c00315{bottom:269.243147pt;}
.ycc_c00315{bottom:269.475827pt;}
.yb8_c00315{bottom:285.361333pt;}
.yb9_c00315{bottom:285.652133pt;}
.yba_c00315{bottom:286.045733pt;}
.ybb_c00315{bottom:286.134213pt;}
.ybc_c00315{bottom:286.571427pt;}
.ybd_c00315{bottom:287.068173pt;}
.ybe_c00315{bottom:287.450013pt;}
.ybf_c00315{bottom:288.337747pt;}
.yc0_c00315{bottom:288.779547pt;}
.yc1_c00315{bottom:289.033960pt;}
.y116_c00315{bottom:306.000387pt;}
.y117_c00315{bottom:306.275920pt;}
.y118_c00315{bottom:306.609960pt;}
.y119_c00315{bottom:307.248253pt;}
.y11a_c00315{bottom:307.411613pt;}
.y11b_c00315{bottom:307.949373pt;}
.y11c_c00315{bottom:308.573200pt;}
.y11d_c00315{bottom:308.762747pt;}
.y11e_c00315{bottom:308.942907pt;}
.y11f_c00315{bottom:309.744173pt;}
.y120_c00315{bottom:309.928987pt;}
.y121_c00315{bottom:310.306227pt;}
.y10a_c00315{bottom:326.401333pt;}
.y10b_c00315{bottom:326.792773pt;}
.y10c_c00315{bottom:327.385573pt;}
.y10d_c00315{bottom:327.664053pt;}
.y10e_c00315{bottom:327.870440pt;}
.y10f_c00315{bottom:328.412787pt;}
.y110_c00315{bottom:328.628893pt;}
.y111_c00315{bottom:328.878547pt;}
.y112_c00315{bottom:329.281707pt;}
.y113_c00315{bottom:329.526853pt;}
.y114_c00315{bottom:330.028280pt;}
.y115_c00315{bottom:330.702400pt;}
.yff_c00315{bottom:346.074085pt;}
.y100_c00315{bottom:347.182619pt;}
.y101_c00315{bottom:347.403136pt;}
.y102_c00315{bottom:347.690297pt;}
.y103_c00315{bottom:348.819597pt;}
.y104_c00315{bottom:349.196161pt;}
.y105_c00315{bottom:349.744964pt;}
.y106_c00315{bottom:350.328132pt;}
.y107_c00315{bottom:350.677849pt;}
.y108_c00315{bottom:351.243135pt;}
.y109_c00315{bottom:351.703217pt;}
.yae_c00315{bottom:366.961333pt;}
.yaf_c00315{bottom:367.340680pt;}
.yb0_c00315{bottom:368.003000pt;}
.yb1_c00315{bottom:368.370187pt;}
.yb2_c00315{bottom:368.643773pt;}
.yb3_c00315{bottom:369.044720pt;}
.yb4_c00315{bottom:369.313453pt;}
.yb5_c00315{bottom:369.771880pt;}
.yb6_c00315{bottom:370.484813pt;}
.yb7_c00315{bottom:370.729960pt;}
.yf4_c00315{bottom:383.525333pt;}
.yf5_c00315{bottom:384.089477pt;}
.yf6_c00315{bottom:384.741177pt;}
.yf7_c00315{bottom:385.567653pt;}
.yf8_c00315{bottom:386.432657pt;}
.yf9_c00315{bottom:387.536585pt;}
.yfa_c00315{bottom:388.490517pt;}
.yfb_c00315{bottom:389.730497pt;}
.yfc_c00315{bottom:390.162985pt;}
.yfd_c00315{bottom:391.016369pt;}
.yfe_c00315{bottom:391.948657pt;}
.ya1_c00315{bottom:407.718717pt;}
.ya2_c00315{bottom:408.251244pt;}
.ya3_c00315{bottom:408.649440pt;}
.ya4_c00315{bottom:408.807695pt;}
.ya5_c00315{bottom:409.412579pt;}
.ya6_c00315{bottom:409.775600pt;}
.ya7_c00315{bottom:409.986337pt;}
.ya8_c00315{bottom:410.361196pt;}
.ya9_c00315{bottom:410.595696pt;}
.yaa_c00315{bottom:411.133620pt;}
.yab_c00315{bottom:411.403147pt;}
.yac_c00315{bottom:411.597031pt;}
.yad_c00315{bottom:411.752572pt;}
.y95_c00315{bottom:427.674151pt;}
.y96_c00315{bottom:428.410608pt;}
.y97_c00315{bottom:428.602888pt;}
.y98_c00315{bottom:428.943829pt;}
.y99_c00315{bottom:429.126033pt;}
.y9a_c00315{bottom:429.421288pt;}
.y9b_c00315{bottom:429.780915pt;}
.y9c_c00315{bottom:430.593492pt;}
.y9d_c00315{bottom:430.683883pt;}
.y9e_c00315{bottom:431.372908pt;}
.y9f_c00315{bottom:431.824348pt;}
.ya0_c00315{bottom:432.072552pt;}
.y89_c00315{bottom:448.074831pt;}
.y8a_c00315{bottom:448.468689pt;}
.y8b_c00315{bottom:449.001940pt;}
.y8c_c00315{bottom:449.149824pt;}
.y8d_c00315{bottom:449.896929pt;}
.y8e_c00315{bottom:450.158480pt;}
.y8f_c00315{bottom:450.432908pt;}
.y90_c00315{bottom:451.195883pt;}
.y91_c00315{bottom:451.449308pt;}
.y92_c00315{bottom:451.834895pt;}
.y93_c00315{bottom:452.143877pt;}
.y94_c00315{bottom:452.632248pt;}
.y81_c00315{bottom:468.237192pt;}
.y82_c00315{bottom:469.008433pt;}
.y83_c00315{bottom:469.319253pt;}
.y84_c00315{bottom:470.211367pt;}
.y85_c00315{bottom:470.797031pt;}
.y86_c00315{bottom:471.643989pt;}
.y87_c00315{bottom:472.306003pt;}
.y88_c00315{bottom:472.882061pt;}
.y76_c00315{bottom:488.295089pt;}
.y77_c00315{bottom:488.850812pt;}
.y78_c00315{bottom:489.258747pt;}
.y79_c00315{bottom:489.543617pt;}
.y7a_c00315{bottom:489.971012pt;}
.y7b_c00315{bottom:490.326345pt;}
.y7c_c00315{bottom:490.919008pt;}
.y7d_c00315{bottom:491.723659pt;}
.y7e_c00315{bottom:491.920601pt;}
.y7f_c00315{bottom:492.370329pt;}
.y80_c00315{bottom:493.209823pt;}
.y6c_c00315{bottom:508.560315pt;}
.y6d_c00315{bottom:508.848271pt;}
.y6e_c00315{bottom:509.228751pt;}
.y6f_c00315{bottom:510.173499pt;}
.y70_c00315{bottom:511.022877pt;}
.y71_c00315{bottom:511.259372pt;}
.y72_c00315{bottom:511.756883pt;}
.y73_c00315{bottom:512.001928pt;}
.y74_c00315{bottom:512.836935pt;}
.y75_c00315{bottom:513.093375pt;}
.y62_c00315{bottom:529.681333pt;}
.y63_c00315{bottom:530.232565pt;}
.y64_c00315{bottom:530.689725pt;}
.y65_c00315{bottom:531.064605pt;}
.y66_c00315{bottom:531.228417pt;}
.y67_c00315{bottom:532.152329pt;}
.y68_c00315{bottom:532.389915pt;}
.y69_c00315{bottom:532.745919pt;}
.y6a_c00315{bottom:533.010593pt;}
.y6b_c00315{bottom:533.911068pt;}
.ye8_c00315{bottom:550.801333pt;}
.ye9_c00315{bottom:551.225707pt;}
.yea_c00315{bottom:551.847560pt;}
.yeb_c00315{bottom:552.039693pt;}
.yec_c00315{bottom:552.711653pt;}
.yed_c00315{bottom:552.934653pt;}
.yee_c00315{bottom:553.325720pt;}
.yef_c00315{bottom:553.643013pt;}
.yf0_c00315{bottom:553.885427pt;}
.yf1_c00315{bottom:554.324747pt;}
.yf2_c00315{bottom:554.914733pt;}
.yf3_c00315{bottom:555.148080pt;}
.y58_c00315{bottom:570.476511pt;}
.y59_c00315{bottom:570.787389pt;}
.y5a_c00315{bottom:571.760911pt;}
.y5b_c00315{bottom:572.253141pt;}
.y5c_c00315{bottom:572.657028pt;}
.y5d_c00315{bottom:573.030396pt;}
.y5e_c00315{bottom:573.781868pt;}
.y5f_c00315{bottom:574.175928pt;}
.y60_c00315{bottom:574.848339pt;}
.y61_c00315{bottom:575.211777pt;}
.y4d_c00315{bottom:589.921160pt;}
.y4e_c00315{bottom:590.867157pt;}
.y4f_c00315{bottom:591.457876pt;}
.y50_c00315{bottom:591.824651pt;}
.y51_c00315{bottom:592.425164pt;}
.y52_c00315{bottom:592.986440pt;}
.y53_c00315{bottom:593.696352pt;}
.y54_c00315{bottom:594.051601pt;}
.y55_c00315{bottom:594.717716pt;}
.y56_c00315{bottom:595.042115pt;}
.y57_c00315{bottom:595.895883pt;}
.y41_c00315{bottom:611.521333pt;}
.y42_c00315{bottom:611.726799pt;}
.y43_c00315{bottom:612.004527pt;}
.y44_c00315{bottom:612.347184pt;}
.y45_c00315{bottom:612.722621pt;}
.y46_c00315{bottom:612.944396pt;}
.y47_c00315{bottom:613.630268pt;}
.y48_c00315{bottom:613.976577pt;}
.y49_c00315{bottom:614.190520pt;}
.y4a_c00315{bottom:614.832084pt;}
.y4b_c00315{bottom:615.101467pt;}
.y4c_c00315{bottom:615.721427pt;}
.y3e_c00315{bottom:631.763651pt;}
.y40_c00315{bottom:631.763755pt;}
.y3d_c00315{bottom:631.763760pt;}
.y3f_c00315{bottom:631.763845pt;}
.y3c_c00315{bottom:631.764277pt;}
.y30_c00315{bottom:651.590981pt;}
.y31_c00315{bottom:651.995227pt;}
.y32_c00315{bottom:652.761381pt;}
.y33_c00315{bottom:653.812483pt;}
.y34_c00315{bottom:654.327179pt;}
.y35_c00315{bottom:655.358699pt;}
.y36_c00315{bottom:655.708008pt;}
.y37_c00315{bottom:655.875336pt;}
.y38_c00315{bottom:656.047480pt;}
.y39_c00315{bottom:656.323075pt;}
.y3a_c00315{bottom:656.823939pt;}
.y3b_c00315{bottom:657.334752pt;}
.y23_c00315{bottom:671.514653pt;}
.y24_c00315{bottom:671.947963pt;}
.y25_c00315{bottom:672.418512pt;}
.y26_c00315{bottom:673.378725pt;}
.y27_c00315{bottom:673.715584pt;}
.y28_c00315{bottom:674.256451pt;}
.y29_c00315{bottom:674.575613pt;}
.y2a_c00315{bottom:675.103133pt;}
.y2b_c00315{bottom:675.347816pt;}
.y2c_c00315{bottom:675.738435pt;}
.y2d_c00315{bottom:676.161701pt;}
.y2e_c00315{bottom:676.664955pt;}
.y2f_c00315{bottom:676.998547pt;}
.y19_c00315{bottom:692.137477pt;}
.y1a_c00315{bottom:692.999691pt;}
.y1b_c00315{bottom:693.503915pt;}
.y1c_c00315{bottom:694.367341pt;}
.y1d_c00315{bottom:694.814744pt;}
.y1e_c00315{bottom:695.198083pt;}
.y1f_c00315{bottom:695.718976pt;}
.y20_c00315{bottom:696.387597pt;}
.y21_c00315{bottom:696.719920pt;}
.y22_c00315{bottom:697.305120pt;}
.yf_c00315{bottom:712.320000pt;}
.y10_c00315{bottom:713.478192pt;}
.y11_c00315{bottom:713.811168pt;}
.y12_c00315{bottom:714.356179pt;}
.y13_c00315{bottom:715.132451pt;}
.y14_c00315{bottom:715.938720pt;}
.y15_c00315{bottom:716.321013pt;}
.y16_c00315{bottom:716.604112pt;}
.y17_c00315{bottom:717.265827pt;}
.y18_c00315{bottom:717.454397pt;}
.y4_c00315{bottom:732.482667pt;}
.y5_c00315{bottom:733.097435pt;}
.y6_c00315{bottom:733.890227pt;}
.y7_c00315{bottom:734.276627pt;}
.y8_c00315{bottom:734.861397pt;}
.y9_c00315{bottom:735.112669pt;}
.ya_c00315{bottom:735.701547pt;}
.yb_c00315{bottom:736.015875pt;}
.yc_c00315{bottom:736.743277pt;}
.yd_c00315{bottom:737.986309pt;}
.ye_c00315{bottom:738.265301pt;}
.y2_c00315{bottom:770.646667pt;}
.y3_c00315{bottom:772.878771pt;}
.h16_c00315{height:46.666667pt;}
.h17_c00315{height:56.000000pt;}
.h13_c00315{height:56.012347pt;}
.h10_c00315{height:59.736320pt;}
.hb_c00315{height:59.736947pt;}
.hc_c00315{height:60.669700pt;}
.ha_c00315{height:60.670337pt;}
.h11_c00315{height:61.600000pt;}
.he_c00315{height:61.603080pt;}
.hf_c00315{height:62.536460pt;}
.h9_c00315{height:62.537116pt;}
.h4_c00315{height:62.539461pt;}
.h12_c00315{height:63.469840pt;}
.h8_c00315{height:63.470506pt;}
.h5_c00315{height:63.472886pt;}
.h14_c00315{height:63.480660pt;}
.h15_c00315{height:64.403220pt;}
.h7_c00315{height:64.403896pt;}
.h6_c00315{height:64.406311pt;}
.h2_c00315{height:65.333333pt;}
.hd_c00315{height:65.336600pt;}
.h3_c00315{height:112.024693pt;}
.h0_c00315{height:896.400000pt;}
.h1_c00315{height:896.666667pt;}
.w0_c00315{width:618.666667pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:123.360000pt;}
.x49_c00315{left:129.232243pt;}
.x2_c00315{left:133.200000pt;}
.x4_c00315{left:136.402667pt;}
.x10_c00315{left:138.190408pt;}
.x23_c00315{left:139.141757pt;}
.x43_c00315{left:140.109027pt;}
.x6a_c00315{left:141.207036pt;}
.x74_c00315{left:142.218205pt;}
.xa7_c00315{left:143.366667pt;}
.x86_c00315{left:144.554667pt;}
.x92_c00315{left:147.242107pt;}
.x38_c00315{left:155.646667pt;}
.x59_c00315{left:163.581316pt;}
.x8b_c00315{left:165.242773pt;}
.x2d_c00315{left:168.414045pt;}
.x24_c00315{left:170.092424pt;}
.xae_c00315{left:171.429373pt;}
.x39_c00315{left:174.325333pt;}
.x6b_c00315{left:177.012369pt;}
.x98_c00315{left:178.210120pt;}
.x6_c00315{left:181.153333pt;}
.x9d_c00315{left:182.472000pt;}
.x8c_c00315{left:184.462587pt;}
.x3_c00315{left:185.760000pt;}
.x52_c00315{left:190.164000pt;}
.x7d_c00315{left:192.597927pt;}
.x5a_c00315{left:195.260964pt;}
.xb2_c00315{left:196.192000pt;}
.x1a_c00315{left:198.355296pt;}
.x3a_c00315{left:199.573333pt;}
.x25_c00315{left:203.703091pt;}
.x36_c00315{left:205.687203pt;}
.x75_c00315{left:209.168872pt;}
.xb3_c00315{left:210.356000pt;}
.x60_c00315{left:211.785273pt;}
.x87_c00315{left:212.994667pt;}
.x37_c00315{left:219.608595pt;}
.x11_c00315{left:220.918408pt;}
.x88_c00315{left:221.842667pt;}
.x2e_c00315{left:223.139379pt;}
.x6c_c00315{left:225.489703pt;}
.x76_c00315{left:226.648872pt;}
.x3b_c00315{left:230.724000pt;}
.x53_c00315{left:231.724000pt;}
.x1b_c00315{left:234.371296pt;}
.x4a_c00315{left:236.297736pt;}
.x7_c00315{left:237.781333pt;}
.x6d_c00315{left:238.933703pt;}
.xa8_c00315{left:241.790667pt;}
.x5_c00315{left:242.693333pt;}
.x12_c00315{left:244.702408pt;}
.x82_c00315{left:246.594667pt;}
.x7e_c00315{left:248.275876pt;}
.x93_c00315{left:251.628773pt;}
.x77_c00315{left:257.643539pt;}
.x8d_c00315{left:261.919147pt;}
.x9e_c00315{left:263.870667pt;}
.x8_c00315{left:265.381333pt;}
.x44_c00315{left:267.087453pt;}
.xaf_c00315{left:268.662707pt;}
.xa9_c00315{left:269.638667pt;}
.x26_c00315{left:272.289757pt;}
.x5b_c00315{left:273.994765pt;}
.x4b_c00315{left:277.287948pt;}
.xb4_c00315{left:278.262667pt;}
.x54_c00315{left:280.696000pt;}
.x13_c00315{left:283.631741pt;}
.x3c_c00315{left:285.016000pt;}
.xaa_c00315{left:290.277333pt;}
.x61_c00315{left:293.928803pt;}
.x1c_c00315{left:296.044629pt;}
.x2f_c00315{left:298.218045pt;}
.x78_c00315{left:301.048872pt;}
.x66_c00315{left:304.425977pt;}
.x9_c00315{left:307.150667pt;}
.x7f_c00315{left:308.720536pt;}
.x4c_c00315{left:310.974248pt;}
.x8e_c00315{left:313.047960pt;}
.x94_c00315{left:314.042107pt;}
.x89_c00315{left:315.238667pt;}
.xb5_c00315{left:322.670667pt;}
.xa_c00315{left:325.098667pt;}
.x1d_c00315{left:328.001963pt;}
.x6e_c00315{left:330.629703pt;}
.x79_c00315{left:333.742205pt;}
.x27_c00315{left:334.984424pt;}
.x14_c00315{left:339.079741pt;}
.x4d_c00315{left:342.128577pt;}
.x45_c00315{left:344.580051pt;}
.x3d_c00315{left:347.368000pt;}
.x8f_c00315{left:349.564933pt;}
.x83_c00315{left:350.766667pt;}
.x67_c00315{left:353.182768pt;}
.x1e_c00315{left:355.383296pt;}
.x28_c00315{left:357.781757pt;}
.x55_c00315{left:364.688000pt;}
.x80_c00315{left:366.093167pt;}
.xb_c00315{left:367.161333pt;}
.xb6_c00315{left:370.958667pt;}
.x84_c00315{left:377.640000pt;}
.x3e_c00315{left:378.850667pt;}
.x95_c00315{left:384.079440pt;}
.x56_c00315{left:386.286667pt;}
.xc_c00315{left:389.613333pt;}
.xab_c00315{left:391.088000pt;}
.x1f_c00315{left:392.589963pt;}
.x29_c00315{left:395.461757pt;}
.x15_c00315{left:396.670408pt;}
.x3f_c00315{left:398.300000pt;}
.x62_c00315{left:401.439775pt;}
.x81_c00315{left:403.565577pt;}
.x4e_c00315{left:404.746555pt;}
.x5c_c00315{left:405.937313pt;}
.x7a_c00315{left:407.612872pt;}
.x30_c00315{left:408.662045pt;}
.x2a_c00315{left:412.939091pt;}
.x46_c00315{left:415.591593pt;}
.x63_c00315{left:416.555437pt;}
.x57_c00315{left:418.650667pt;}
.xb0_c00315{left:420.112040pt;}
.x16_c00315{left:423.977075pt;}
.x6f_c00315{left:424.939036pt;}
.x5d_c00315{left:426.395760pt;}
.xac_c00315{left:431.404000pt;}
.x31_c00315{left:433.612712pt;}
.x4f_c00315{left:437.539521pt;}
.x20_c00315{left:440.348629pt;}
.xd_c00315{left:441.570667pt;}
.x58_c00315{left:442.712000pt;}
.x17_c00315{left:444.198408pt;}
.x32_c00315{left:445.564712pt;}
.xa4_c00315{left:446.793707pt;}
.x70_c00315{left:447.977703pt;}
.x64_c00315{left:451.136008pt;}
.x90_c00315{left:455.653200pt;}
.x40_c00315{left:456.624000pt;}
.x33_c00315{left:457.860712pt;}
.x47_c00315{left:460.024309pt;}
.x21_c00315{left:464.085963pt;}
.x96_c00315{left:465.003440pt;}
.x99_c00315{left:467.399453pt;}
.x2b_c00315{left:471.073757pt;}
.x34_c00315{left:477.546045pt;}
.x68_c00315{left:478.966723pt;}
.x41_c00315{left:481.113333pt;}
.x71_c00315{left:483.031036pt;}
.x9a_c00315{left:484.446120pt;}
.x8a_c00315{left:486.376000pt;}
.x18_c00315{left:491.463741pt;}
.x9f_c00315{left:492.376000pt;}
.x50_c00315{left:493.576239pt;}
.x85_c00315{left:494.776000pt;}
.x5e_c00315{left:496.001664pt;}
.xa2_c00315{left:499.053333pt;}
.x19_c00315{left:504.933075pt;}
.x22_c00315{left:505.885963pt;}
.x2c_c00315{left:507.020424pt;}
.x72_c00315{left:511.120369pt;}
.xa5_c00315{left:512.152644pt;}
.x35_c00315{left:513.322045pt;}
.xb7_c00315{left:514.716000pt;}
.x65_c00315{left:515.694585pt;}
.x5f_c00315{left:517.374763pt;}
.x7b_c00315{left:519.508872pt;}
.x9b_c00315{left:520.638120pt;}
.x51_c00315{left:523.827901pt;}
.x69_c00315{left:526.971528pt;}
.xe_c00315{left:530.358667pt;}
.x97_c00315{left:531.736773pt;}
.x91_c00315{left:533.668413pt;}
.x42_c00315{left:537.473333pt;}
.x48_c00315{left:538.520848pt;}
.x7c_c00315{left:542.072872pt;}
.xa3_c00315{left:543.448000pt;}
.xa6_c00315{left:544.986793pt;}
.xf_c00315{left:550.286667pt;}
.xa0_c00315{left:551.374667pt;}
.x73_c00315{left:555.517703pt;}
.x9c_c00315{left:572.400000pt;}
.xad_c00315{left:573.473333pt;}
.xa1_c00315{left:574.709333pt;}
.xb1_c00315{left:595.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m69_c00316{transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);-ms-transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);}
.m6b_c00316{transform:matrix(0.056928,-0.000455,0.002000,0.249992,0,0);-ms-transform:matrix(0.056928,-0.000455,0.002000,0.249992,0,0);-webkit-transform:matrix(0.056928,-0.000455,0.002000,0.249992,0,0);}
.m68_c00316{transform:matrix(0.073733,-0.000590,0.002000,0.249992,0,0);-ms-transform:matrix(0.073733,-0.000590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.073733,-0.000590,0.002000,0.249992,0,0);}
.m6c_c00316{transform:matrix(0.079022,-0.000632,0.002000,0.249992,0,0);-ms-transform:matrix(0.079022,-0.000632,0.002000,0.249992,0,0);-webkit-transform:matrix(0.079022,-0.000632,0.002000,0.249992,0,0);}
.m86_c00316{transform:matrix(0.085532,-0.000684,0.002000,0.249992,0,0);-ms-transform:matrix(0.085532,-0.000684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.085532,-0.000684,0.002000,0.249992,0,0);}
.m148_c00316{transform:matrix(0.090485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090485,0.000000,0.000000,0.250000,0,0);}
.m75_c00316{transform:matrix(0.092932,-0.000743,0.002000,0.249992,0,0);-ms-transform:matrix(0.092932,-0.000743,0.002000,0.249992,0,0);-webkit-transform:matrix(0.092932,-0.000743,0.002000,0.249992,0,0);}
.m14e_c00316{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);}
.m4a_c00316{transform:matrix(0.141145,-0.001129,0.002000,0.249992,0,0);-ms-transform:matrix(0.141145,-0.001129,0.002000,0.249992,0,0);-webkit-transform:matrix(0.141145,-0.001129,0.002000,0.249992,0,0);}
.mfc_c00316{transform:matrix(0.142640,-0.001141,0.002000,0.249992,0,0);-ms-transform:matrix(0.142640,-0.001141,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142640,-0.001141,0.002000,0.249992,0,0);}
.m13a_c00316{transform:matrix(0.142710,-0.001142,0.002000,0.249992,0,0);-ms-transform:matrix(0.142710,-0.001142,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142710,-0.001142,0.002000,0.249992,0,0);}
.mec_c00316{transform:matrix(0.143740,-0.001150,0.002000,0.249992,0,0);-ms-transform:matrix(0.143740,-0.001150,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143740,-0.001150,0.002000,0.249992,0,0);}
.ma9_c00316{transform:matrix(0.144745,-0.001158,0.002000,0.249992,0,0);-ms-transform:matrix(0.144745,-0.001158,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144745,-0.001158,0.002000,0.249992,0,0);}
.mfd_c00316{transform:matrix(0.148295,-0.001186,0.002000,0.249992,0,0);-ms-transform:matrix(0.148295,-0.001186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148295,-0.001186,0.002000,0.249992,0,0);}
.mf_c00316{transform:matrix(0.149145,-0.001193,0.002000,0.249992,0,0);-ms-transform:matrix(0.149145,-0.001193,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149145,-0.001193,0.002000,0.249992,0,0);}
.m16_c00316{transform:matrix(0.149580,-0.001197,0.002000,0.249992,0,0);-ms-transform:matrix(0.149580,-0.001197,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149580,-0.001197,0.002000,0.249992,0,0);}
.m4f_c00316{transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);-ms-transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150600,-0.001205,0.002000,0.249992,0,0);}
.ma6_c00316{transform:matrix(0.151655,-0.001213,0.002000,0.249992,0,0);-ms-transform:matrix(0.151655,-0.001213,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151655,-0.001213,0.002000,0.249992,0,0);}
.m89_c00316{transform:matrix(0.152205,-0.001218,0.002000,0.249992,0,0);-ms-transform:matrix(0.152205,-0.001218,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152205,-0.001218,0.002000,0.249992,0,0);}
.m7e_c00316{transform:matrix(0.152780,-0.001222,0.002000,0.249992,0,0);-ms-transform:matrix(0.152780,-0.001222,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152780,-0.001222,0.002000,0.249992,0,0);}
.m45_c00316{transform:matrix(0.152995,-0.001224,0.002000,0.249992,0,0);-ms-transform:matrix(0.152995,-0.001224,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152995,-0.001224,0.002000,0.249992,0,0);}
.m44_c00316{transform:matrix(0.153280,-0.001226,0.002000,0.249992,0,0);-ms-transform:matrix(0.153280,-0.001226,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153280,-0.001226,0.002000,0.249992,0,0);}
.m5d_c00316{transform:matrix(0.153350,-0.001227,0.002000,0.249992,0,0);-ms-transform:matrix(0.153350,-0.001227,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153350,-0.001227,0.002000,0.249992,0,0);}
.mcb_c00316{transform:matrix(0.154765,-0.001238,0.002000,0.249992,0,0);-ms-transform:matrix(0.154765,-0.001238,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154765,-0.001238,0.002000,0.249992,0,0);}
.m10a_c00316{transform:matrix(0.155480,-0.001244,0.002000,0.249992,0,0);-ms-transform:matrix(0.155480,-0.001244,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155480,-0.001244,0.002000,0.249992,0,0);}
.m145_c00316{transform:matrix(0.155610,-0.001245,0.002000,0.249992,0,0);-ms-transform:matrix(0.155610,-0.001245,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155610,-0.001245,0.002000,0.249992,0,0);}
.m136_c00316{transform:matrix(0.156180,-0.001249,0.002000,0.249992,0,0);-ms-transform:matrix(0.156180,-0.001249,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156180,-0.001249,0.002000,0.249992,0,0);}
.m56_c00316{transform:matrix(0.156395,-0.001251,0.002000,0.249992,0,0);-ms-transform:matrix(0.156395,-0.001251,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156395,-0.001251,0.002000,0.249992,0,0);}
.m9d_c00316{transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);-ms-transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156470,-0.001252,0.002000,0.249992,0,0);}
.md5_c00316{transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);-ms-transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);}
.mc8_c00316{transform:matrix(0.156905,-0.001255,0.002000,0.249992,0,0);-ms-transform:matrix(0.156905,-0.001255,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156905,-0.001255,0.002000,0.249992,0,0);}
.me_c00316{transform:matrix(0.157095,-0.001257,0.002000,0.249992,0,0);-ms-transform:matrix(0.157095,-0.001257,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157095,-0.001257,0.002000,0.249992,0,0);}
.mc0_c00316{transform:matrix(0.157550,-0.001260,0.002000,0.249992,0,0);-ms-transform:matrix(0.157550,-0.001260,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157550,-0.001260,0.002000,0.249992,0,0);}
.mbd_c00316{transform:matrix(0.157890,-0.001263,0.002000,0.249992,0,0);-ms-transform:matrix(0.157890,-0.001263,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157890,-0.001263,0.002000,0.249992,0,0);}
.m84_c00316{transform:matrix(0.158115,-0.001265,0.002000,0.249992,0,0);-ms-transform:matrix(0.158115,-0.001265,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158115,-0.001265,0.002000,0.249992,0,0);}
.m4c_c00316{transform:matrix(0.158540,-0.001268,0.002000,0.249992,0,0);-ms-transform:matrix(0.158540,-0.001268,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158540,-0.001268,0.002000,0.249992,0,0);}
.m127_c00316{transform:matrix(0.159245,-0.001274,0.002000,0.249992,0,0);-ms-transform:matrix(0.159245,-0.001274,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159245,-0.001274,0.002000,0.249992,0,0);}
.mf7_c00316{transform:matrix(0.160135,-0.001281,0.002000,0.249992,0,0);-ms-transform:matrix(0.160135,-0.001281,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160135,-0.001281,0.002000,0.249992,0,0);}
.mdd_c00316{transform:matrix(0.161135,-0.001289,0.002000,0.249992,0,0);-ms-transform:matrix(0.161135,-0.001289,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161135,-0.001289,0.002000,0.249992,0,0);}
.mf9_c00316{transform:matrix(0.161265,-0.001290,0.002000,0.249992,0,0);-ms-transform:matrix(0.161265,-0.001290,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161265,-0.001290,0.002000,0.249992,0,0);}
.med_c00316{transform:matrix(0.161820,-0.001295,0.002000,0.249992,0,0);-ms-transform:matrix(0.161820,-0.001295,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161820,-0.001295,0.002000,0.249992,0,0);}
.m3e_c00316{transform:matrix(0.162225,-0.001298,0.002000,0.249992,0,0);-ms-transform:matrix(0.162225,-0.001298,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162225,-0.001298,0.002000,0.249992,0,0);}
.mde_c00316{transform:matrix(0.162835,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162835,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162835,-0.001303,0.002000,0.249992,0,0);}
.m98_c00316{transform:matrix(0.163280,-0.001306,0.002000,0.249992,0,0);-ms-transform:matrix(0.163280,-0.001306,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163280,-0.001306,0.002000,0.249992,0,0);}
.m4_c00316{transform:matrix(0.163395,-0.001307,0.002000,0.249992,0,0);-ms-transform:matrix(0.163395,-0.001307,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163395,-0.001307,0.002000,0.249992,0,0);}
.m24_c00316{transform:matrix(0.163825,-0.001311,0.002000,0.249992,0,0);-ms-transform:matrix(0.163825,-0.001311,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163825,-0.001311,0.002000,0.249992,0,0);}
.m111_c00316{transform:matrix(0.164005,-0.001312,0.002000,0.249992,0,0);-ms-transform:matrix(0.164005,-0.001312,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164005,-0.001312,0.002000,0.249992,0,0);}
.ma_c00316{transform:matrix(0.164105,-0.001313,0.002000,0.249992,0,0);-ms-transform:matrix(0.164105,-0.001313,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164105,-0.001313,0.002000,0.249992,0,0);}
.m13_c00316{transform:matrix(0.164540,-0.001316,0.002000,0.249992,0,0);-ms-transform:matrix(0.164540,-0.001316,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164540,-0.001316,0.002000,0.249992,0,0);}
.m17_c00316{transform:matrix(0.164570,-0.001317,0.002000,0.249992,0,0);-ms-transform:matrix(0.164570,-0.001317,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164570,-0.001317,0.002000,0.249992,0,0);}
.m78_c00316{transform:matrix(0.164950,-0.001320,0.002000,0.249992,0,0);-ms-transform:matrix(0.164950,-0.001320,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164950,-0.001320,0.002000,0.249992,0,0);}
.m7b_c00316{transform:matrix(0.165220,-0.001322,0.002000,0.249992,0,0);-ms-transform:matrix(0.165220,-0.001322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165220,-0.001322,0.002000,0.249992,0,0);}
.m39_c00316{transform:matrix(0.165385,-0.001323,0.002000,0.249992,0,0);-ms-transform:matrix(0.165385,-0.001323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165385,-0.001323,0.002000,0.249992,0,0);}
.m10_c00316{transform:matrix(0.165415,-0.001323,0.002000,0.249992,0,0);-ms-transform:matrix(0.165415,-0.001323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165415,-0.001323,0.002000,0.249992,0,0);}
.m76_c00316{transform:matrix(0.165685,-0.001325,0.002000,0.249992,0,0);-ms-transform:matrix(0.165685,-0.001325,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165685,-0.001325,0.002000,0.249992,0,0);}
.mf0_c00316{transform:matrix(0.166180,-0.001329,0.002000,0.249992,0,0);-ms-transform:matrix(0.166180,-0.001329,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166180,-0.001329,0.002000,0.249992,0,0);}
.me8_c00316{transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-ms-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);}
.m7f_c00316{transform:matrix(0.166950,-0.001336,0.002000,0.249992,0,0);-ms-transform:matrix(0.166950,-0.001336,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166950,-0.001336,0.002000,0.249992,0,0);}
.mce_c00316{transform:matrix(0.167470,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167470,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167470,-0.001340,0.002000,0.249992,0,0);}
.m2e_c00316{transform:matrix(0.167520,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167520,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167520,-0.001340,0.002000,0.249992,0,0);}
.m11a_c00316{transform:matrix(0.167970,-0.001344,0.002000,0.249992,0,0);-ms-transform:matrix(0.167970,-0.001344,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167970,-0.001344,0.002000,0.249992,0,0);}
.m80_c00316{transform:matrix(0.169050,-0.001352,0.002000,0.249992,0,0);-ms-transform:matrix(0.169050,-0.001352,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169050,-0.001352,0.002000,0.249992,0,0);}
.m94_c00316{transform:matrix(0.169105,-0.001353,0.002000,0.249992,0,0);-ms-transform:matrix(0.169105,-0.001353,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169105,-0.001353,0.002000,0.249992,0,0);}
.me0_c00316{transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);-ms-transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);}
.m133_c00316{transform:matrix(0.170505,-0.001364,0.002000,0.249992,0,0);-ms-transform:matrix(0.170505,-0.001364,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170505,-0.001364,0.002000,0.249992,0,0);}
.m5e_c00316{transform:matrix(0.170550,-0.001364,0.002000,0.249992,0,0);-ms-transform:matrix(0.170550,-0.001364,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170550,-0.001364,0.002000,0.249992,0,0);}
.m10c_c00316{transform:matrix(0.170710,-0.001366,0.002000,0.249992,0,0);-ms-transform:matrix(0.170710,-0.001366,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170710,-0.001366,0.002000,0.249992,0,0);}
.m107_c00316{transform:matrix(0.171790,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171790,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171790,-0.001374,0.002000,0.249992,0,0);}
.mb_c00316{transform:matrix(0.172369,-0.001379,0.002000,0.249992,0,0);-ms-transform:matrix(0.172369,-0.001379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172369,-0.001379,0.002000,0.249992,0,0);}
.m2f_c00316{transform:matrix(0.172429,-0.001379,0.002000,0.249992,0,0);-ms-transform:matrix(0.172429,-0.001379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172429,-0.001379,0.002000,0.249992,0,0);}
.mfb_c00316{transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);}
.m34_c00316{transform:matrix(0.172609,-0.001381,0.002000,0.249992,0,0);-ms-transform:matrix(0.172609,-0.001381,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172609,-0.001381,0.002000,0.249992,0,0);}
.m1c_c00316{transform:matrix(0.173039,-0.001384,0.002000,0.249992,0,0);-ms-transform:matrix(0.173039,-0.001384,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173039,-0.001384,0.002000,0.249992,0,0);}
.ma2_c00316{transform:matrix(0.173254,-0.001386,0.002000,0.249992,0,0);-ms-transform:matrix(0.173254,-0.001386,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173254,-0.001386,0.002000,0.249992,0,0);}
.mc6_c00316{transform:matrix(0.173544,-0.001388,0.002000,0.249992,0,0);-ms-transform:matrix(0.173544,-0.001388,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173544,-0.001388,0.002000,0.249992,0,0);}
.m26_c00316{transform:matrix(0.173634,-0.001389,0.002000,0.249992,0,0);-ms-transform:matrix(0.173634,-0.001389,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173634,-0.001389,0.002000,0.249992,0,0);}
.m30_c00316{transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);-ms-transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173729,-0.001390,0.002000,0.249992,0,0);}
.m12f_c00316{transform:matrix(0.174774,-0.001398,0.002000,0.249992,0,0);-ms-transform:matrix(0.174774,-0.001398,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174774,-0.001398,0.002000,0.249992,0,0);}
.mef_c00316{transform:matrix(0.175404,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175404,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175404,-0.001403,0.002000,0.249992,0,0);}
.mc_c00316{transform:matrix(0.175574,-0.001405,0.002000,0.249992,0,0);-ms-transform:matrix(0.175574,-0.001405,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175574,-0.001405,0.002000,0.249992,0,0);}
.m95_c00316{transform:matrix(0.176064,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176064,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176064,-0.001409,0.002000,0.249992,0,0);}
.m54_c00316{transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);}
.m1f_c00316{transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);}
.md4_c00316{transform:matrix(0.176804,-0.001414,0.002000,0.249992,0,0);-ms-transform:matrix(0.176804,-0.001414,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176804,-0.001414,0.002000,0.249992,0,0);}
.m10e_c00316{transform:matrix(0.176879,-0.001415,0.002000,0.249992,0,0);-ms-transform:matrix(0.176879,-0.001415,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176879,-0.001415,0.002000,0.249992,0,0);}
.m141_c00316{transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);-ms-transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177354,-0.001419,0.002000,0.249992,0,0);}
.m9c_c00316{transform:matrix(0.177564,-0.001421,0.002000,0.249992,0,0);-ms-transform:matrix(0.177564,-0.001421,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177564,-0.001421,0.002000,0.249992,0,0);}
.m106_c00316{transform:matrix(0.177679,-0.001421,0.002000,0.249992,0,0);-ms-transform:matrix(0.177679,-0.001421,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177679,-0.001421,0.002000,0.249992,0,0);}
.mf2_c00316{transform:matrix(0.178074,-0.001425,0.002000,0.249992,0,0);-ms-transform:matrix(0.178074,-0.001425,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178074,-0.001425,0.002000,0.249992,0,0);}
.m57_c00316{transform:matrix(0.178289,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178289,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178289,-0.001426,0.002000,0.249992,0,0);}
.mb5_c00316{transform:matrix(0.178489,-0.001428,0.002000,0.249992,0,0);-ms-transform:matrix(0.178489,-0.001428,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178489,-0.001428,0.002000,0.249992,0,0);}
.mba_c00316{transform:matrix(0.178659,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178659,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178659,-0.001429,0.002000,0.249992,0,0);}
.mbb_c00316{transform:matrix(0.178849,-0.001431,0.002000,0.249992,0,0);-ms-transform:matrix(0.178849,-0.001431,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178849,-0.001431,0.002000,0.249992,0,0);}
.m11c_c00316{transform:matrix(0.178944,-0.001432,0.002000,0.249992,0,0);-ms-transform:matrix(0.178944,-0.001432,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178944,-0.001432,0.002000,0.249992,0,0);}
.mb3_c00316{transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-ms-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);}
.m6e_c00316{transform:matrix(0.179114,-0.001433,0.002000,0.249992,0,0);-ms-transform:matrix(0.179114,-0.001433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179114,-0.001433,0.002000,0.249992,0,0);}
.m40_c00316{transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);-ms-transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180469,-0.001444,0.002000,0.249992,0,0);}
.mf8_c00316{transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);}
.m7_c00316{transform:matrix(0.180789,-0.001446,0.002000,0.249992,0,0);-ms-transform:matrix(0.180789,-0.001446,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180789,-0.001446,0.002000,0.249992,0,0);}
.m28_c00316{transform:matrix(0.182124,-0.001457,0.002000,0.249992,0,0);-ms-transform:matrix(0.182124,-0.001457,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182124,-0.001457,0.002000,0.249992,0,0);}
.mbf_c00316{transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);}
.m110_c00316{transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);}
.m13d_c00316{transform:matrix(0.182474,-0.001460,0.002000,0.249992,0,0);-ms-transform:matrix(0.182474,-0.001460,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182474,-0.001460,0.002000,0.249992,0,0);}
.ma7_c00316{transform:matrix(0.182589,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182589,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182589,-0.001461,0.002000,0.249992,0,0);}
.md1_c00316{transform:matrix(0.182659,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182659,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182659,-0.001461,0.002000,0.249992,0,0);}
.m49_c00316{transform:matrix(0.182734,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182734,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182734,-0.001462,0.002000,0.249992,0,0);}
.m1a_c00316{transform:matrix(0.183039,-0.001464,0.002000,0.249992,0,0);-ms-transform:matrix(0.183039,-0.001464,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183039,-0.001464,0.002000,0.249992,0,0);}
.ma3_c00316{transform:matrix(0.183144,-0.001465,0.002000,0.249992,0,0);-ms-transform:matrix(0.183144,-0.001465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183144,-0.001465,0.002000,0.249992,0,0);}
.m88_c00316{transform:matrix(0.183409,-0.001467,0.002000,0.249992,0,0);-ms-transform:matrix(0.183409,-0.001467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183409,-0.001467,0.002000,0.249992,0,0);}
.m58_c00316{transform:matrix(0.183694,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183694,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183694,-0.001470,0.002000,0.249992,0,0);}
.m131_c00316{transform:matrix(0.183884,-0.001471,0.002000,0.249992,0,0);-ms-transform:matrix(0.183884,-0.001471,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183884,-0.001471,0.002000,0.249992,0,0);}
.m12_c00316{transform:matrix(0.184189,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184189,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184189,-0.001474,0.002000,0.249992,0,0);}
.m12a_c00316{transform:matrix(0.184199,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184199,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184199,-0.001474,0.002000,0.249992,0,0);}
.m77_c00316{transform:matrix(0.184339,-0.001475,0.002000,0.249992,0,0);-ms-transform:matrix(0.184339,-0.001475,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184339,-0.001475,0.002000,0.249992,0,0);}
.m4b_c00316{transform:matrix(0.184804,-0.001478,0.002000,0.249992,0,0);-ms-transform:matrix(0.184804,-0.001478,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184804,-0.001478,0.002000,0.249992,0,0);}
.mc9_c00316{transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);-ms-transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);}
.m13f_c00316{transform:matrix(0.185159,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185159,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185159,-0.001481,0.002000,0.249992,0,0);}
.m4d_c00316{transform:matrix(0.185169,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185169,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185169,-0.001481,0.002000,0.249992,0,0);}
.m48_c00316{transform:matrix(0.185459,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185459,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185459,-0.001484,0.002000,0.249992,0,0);}
.ma4_c00316{transform:matrix(0.185514,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185514,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185514,-0.001484,0.002000,0.249992,0,0);}
.m21_c00316{transform:matrix(0.185844,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185844,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185844,-0.001487,0.002000,0.249992,0,0);}
.m5_c00316{transform:matrix(0.185969,-0.001488,0.002000,0.249992,0,0);-ms-transform:matrix(0.185969,-0.001488,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185969,-0.001488,0.002000,0.249992,0,0);}
.ma5_c00316{transform:matrix(0.186094,-0.001489,0.002000,0.249992,0,0);-ms-transform:matrix(0.186094,-0.001489,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186094,-0.001489,0.002000,0.249992,0,0);}
.ma0_c00316{transform:matrix(0.186179,-0.001489,0.002000,0.249992,0,0);-ms-transform:matrix(0.186179,-0.001489,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186179,-0.001489,0.002000,0.249992,0,0);}
.m9f_c00316{transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);-ms-transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);}
.md0_c00316{transform:matrix(0.186234,-0.001490,0.002000,0.249992,0,0);-ms-transform:matrix(0.186234,-0.001490,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186234,-0.001490,0.002000,0.249992,0,0);}
.m27_c00316{transform:matrix(0.186449,-0.001492,0.002000,0.249992,0,0);-ms-transform:matrix(0.186449,-0.001492,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186449,-0.001492,0.002000,0.249992,0,0);}
.m3_c00316{transform:matrix(0.186564,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186564,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186564,-0.001493,0.002000,0.249992,0,0);}
.m103_c00316{transform:matrix(0.186644,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186644,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186644,-0.001493,0.002000,0.249992,0,0);}
.md3_c00316{transform:matrix(0.186799,-0.001494,0.002000,0.249992,0,0);-ms-transform:matrix(0.186799,-0.001494,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186799,-0.001494,0.002000,0.249992,0,0);}
.m113_c00316{transform:matrix(0.186859,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186859,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186859,-0.001495,0.002000,0.249992,0,0);}
.mfa_c00316{transform:matrix(0.187209,-0.001498,0.002000,0.249992,0,0);-ms-transform:matrix(0.187209,-0.001498,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187209,-0.001498,0.002000,0.249992,0,0);}
.m96_c00316{transform:matrix(0.187424,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187424,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187424,-0.001499,0.002000,0.249992,0,0);}
.m10d_c00316{transform:matrix(0.187454,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187454,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187454,-0.001500,0.002000,0.249992,0,0);}
.m138_c00316{transform:matrix(0.187529,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187529,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187529,-0.001500,0.002000,0.249992,0,0);}
.m11_c00316{transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);}
.mb9_c00316{transform:matrix(0.188074,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188074,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188074,-0.001505,0.002000,0.249992,0,0);}
.m135_c00316{transform:matrix(0.188389,-0.001507,0.002000,0.249992,0,0);-ms-transform:matrix(0.188389,-0.001507,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188389,-0.001507,0.002000,0.249992,0,0);}
.m25_c00316{transform:matrix(0.188449,-0.001508,0.002000,0.249992,0,0);-ms-transform:matrix(0.188449,-0.001508,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188449,-0.001508,0.002000,0.249992,0,0);}
.m9b_c00316{transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);-ms-transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188579,-0.001509,0.002000,0.249992,0,0);}
.m114_c00316{transform:matrix(0.188754,-0.001510,0.002000,0.249992,0,0);-ms-transform:matrix(0.188754,-0.001510,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188754,-0.001510,0.002000,0.249992,0,0);}
.m7c_c00316{transform:matrix(0.188824,-0.001511,0.002000,0.249992,0,0);-ms-transform:matrix(0.188824,-0.001511,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188824,-0.001511,0.002000,0.249992,0,0);}
.m31_c00316{transform:matrix(0.188874,-0.001511,0.002000,0.249992,0,0);-ms-transform:matrix(0.188874,-0.001511,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188874,-0.001511,0.002000,0.249992,0,0);}
.maa_c00316{transform:matrix(0.189179,-0.001513,0.002000,0.249992,0,0);-ms-transform:matrix(0.189179,-0.001513,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189179,-0.001513,0.002000,0.249992,0,0);}
.m14_c00316{transform:matrix(0.189324,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189324,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189324,-0.001515,0.002000,0.249992,0,0);}
.m8a_c00316{transform:matrix(0.189434,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189434,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189434,-0.001515,0.002000,0.249992,0,0);}
.md6_c00316{transform:matrix(0.189864,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189864,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189864,-0.001519,0.002000,0.249992,0,0);}
.mdf_c00316{transform:matrix(0.189869,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189869,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189869,-0.001519,0.002000,0.249992,0,0);}
.m37_c00316{transform:matrix(0.189934,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189934,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189934,-0.001519,0.002000,0.249992,0,0);}
.m85_c00316{transform:matrix(0.190029,-0.001520,0.002000,0.249992,0,0);-ms-transform:matrix(0.190029,-0.001520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190029,-0.001520,0.002000,0.249992,0,0);}
.mfe_c00316{transform:matrix(0.190394,-0.001523,0.002000,0.249992,0,0);-ms-transform:matrix(0.190394,-0.001523,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190394,-0.001523,0.002000,0.249992,0,0);}
.m137_c00316{transform:matrix(0.190474,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190474,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190474,-0.001524,0.002000,0.249992,0,0);}
.m13b_c00316{transform:matrix(0.190499,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190499,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190499,-0.001524,0.002000,0.249992,0,0);}
.m23_c00316{transform:matrix(0.190569,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190569,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190569,-0.001525,0.002000,0.249992,0,0);}
.m10b_c00316{transform:matrix(0.190574,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190574,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190574,-0.001525,0.002000,0.249992,0,0);}
.m115_c00316{transform:matrix(0.190604,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190604,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190604,-0.001525,0.002000,0.249992,0,0);}
.m35_c00316{transform:matrix(0.191239,-0.001530,0.002000,0.249992,0,0);-ms-transform:matrix(0.191239,-0.001530,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191239,-0.001530,0.002000,0.249992,0,0);}
.ma8_c00316{transform:matrix(0.191364,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191364,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191364,-0.001531,0.002000,0.249992,0,0);}
.md_c00316{transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);}
.m90_c00316{transform:matrix(0.192059,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.192059,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192059,-0.001536,0.002000,0.249992,0,0);}
.m15_c00316{transform:matrix(0.192109,-0.001537,0.002000,0.249992,0,0);-ms-transform:matrix(0.192109,-0.001537,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192109,-0.001537,0.002000,0.249992,0,0);}
.m46_c00316{transform:matrix(0.192139,-0.001537,0.002000,0.249992,0,0);-ms-transform:matrix(0.192139,-0.001537,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192139,-0.001537,0.002000,0.249992,0,0);}
.mbe_c00316{transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);}
.m3f_c00316{transform:matrix(0.192684,-0.001541,0.002000,0.249992,0,0);-ms-transform:matrix(0.192684,-0.001541,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192684,-0.001541,0.002000,0.249992,0,0);}
.mc1_c00316{transform:matrix(0.192749,-0.001542,0.002000,0.249992,0,0);-ms-transform:matrix(0.192749,-0.001542,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192749,-0.001542,0.002000,0.249992,0,0);}
.m3a_c00316{transform:matrix(0.193184,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193184,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193184,-0.001545,0.002000,0.249992,0,0);}
.m108_c00316{transform:matrix(0.193499,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193499,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193499,-0.001548,0.002000,0.249992,0,0);}
.mf1_c00316{transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);}
.m109_c00316{transform:matrix(0.194034,-0.001552,0.002000,0.249992,0,0);-ms-transform:matrix(0.194034,-0.001552,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194034,-0.001552,0.002000,0.249992,0,0);}
.mf3_c00316{transform:matrix(0.194354,-0.001555,0.002000,0.249992,0,0);-ms-transform:matrix(0.194354,-0.001555,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194354,-0.001555,0.002000,0.249992,0,0);}
.m142_c00316{transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);-ms-transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194524,-0.001556,0.002000,0.249992,0,0);}
.md9_c00316{transform:matrix(0.194529,-0.001556,0.002000,0.249992,0,0);-ms-transform:matrix(0.194529,-0.001556,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194529,-0.001556,0.002000,0.249992,0,0);}
.mda_c00316{transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);}
.mc5_c00316{transform:matrix(0.195179,-0.001561,0.002000,0.249992,0,0);-ms-transform:matrix(0.195179,-0.001561,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195179,-0.001561,0.002000,0.249992,0,0);}
.mad_c00316{transform:matrix(0.195294,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195294,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195294,-0.001562,0.002000,0.249992,0,0);}
.m47_c00316{transform:matrix(0.195359,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195359,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195359,-0.001563,0.002000,0.249992,0,0);}
.m8d_c00316{transform:matrix(0.195764,-0.001566,0.002000,0.249992,0,0);-ms-transform:matrix(0.195764,-0.001566,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195764,-0.001566,0.002000,0.249992,0,0);}
.m12d_c00316{transform:matrix(0.196069,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196069,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196069,-0.001569,0.002000,0.249992,0,0);}
.mb2_c00316{transform:matrix(0.196149,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196149,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196149,-0.001569,0.002000,0.249992,0,0);}
.m42_c00316{transform:matrix(0.196634,-0.001573,0.002000,0.249992,0,0);-ms-transform:matrix(0.196634,-0.001573,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196634,-0.001573,0.002000,0.249992,0,0);}
.m83_c00316{transform:matrix(0.197019,-0.001576,0.002000,0.249992,0,0);-ms-transform:matrix(0.197019,-0.001576,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197019,-0.001576,0.002000,0.249992,0,0);}
.m2c_c00316{transform:matrix(0.197079,-0.001577,0.002000,0.249992,0,0);-ms-transform:matrix(0.197079,-0.001577,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197079,-0.001577,0.002000,0.249992,0,0);}
.m6d_c00316{transform:matrix(0.197159,-0.001577,0.002000,0.249992,0,0);-ms-transform:matrix(0.197159,-0.001577,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197159,-0.001577,0.002000,0.249992,0,0);}
.mff_c00316{transform:matrix(0.197194,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197194,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197194,-0.001578,0.002000,0.249992,0,0);}
.m92_c00316{transform:matrix(0.198284,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198284,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198284,-0.001586,0.002000,0.249992,0,0);}
.m10f_c00316{transform:matrix(0.198304,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198304,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198304,-0.001586,0.002000,0.249992,0,0);}
.m100_c00316{transform:matrix(0.199089,-0.001593,0.002000,0.249992,0,0);-ms-transform:matrix(0.199089,-0.001593,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199089,-0.001593,0.002000,0.249992,0,0);}
.m19_c00316{transform:matrix(0.199269,-0.001594,0.002000,0.249992,0,0);-ms-transform:matrix(0.199269,-0.001594,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199269,-0.001594,0.002000,0.249992,0,0);}
.mdc_c00316{transform:matrix(0.199329,-0.001595,0.002000,0.249992,0,0);-ms-transform:matrix(0.199329,-0.001595,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199329,-0.001595,0.002000,0.249992,0,0);}
.m55_c00316{transform:matrix(0.199419,-0.001595,0.002000,0.249992,0,0);-ms-transform:matrix(0.199419,-0.001595,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199419,-0.001595,0.002000,0.249992,0,0);}
.m129_c00316{transform:matrix(0.199834,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199834,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199834,-0.001599,0.002000,0.249992,0,0);}
.mdb_c00316{transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);}
.m6f_c00316{transform:matrix(0.199934,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199934,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199934,-0.001599,0.002000,0.249992,0,0);}
.m112_c00316{transform:matrix(0.200144,-0.001601,0.002000,0.249992,0,0);-ms-transform:matrix(0.200144,-0.001601,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200144,-0.001601,0.002000,0.249992,0,0);}
.m126_c00316{transform:matrix(0.200504,-0.001604,0.002000,0.249992,0,0);-ms-transform:matrix(0.200504,-0.001604,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200504,-0.001604,0.002000,0.249992,0,0);}
.m51_c00316{transform:matrix(0.200574,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200574,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200574,-0.001605,0.002000,0.249992,0,0);}
.m8c_c00316{transform:matrix(0.200609,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200609,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200609,-0.001605,0.002000,0.249992,0,0);}
.m12b_c00316{transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);-ms-transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);}
.m22_c00316{transform:matrix(0.201704,-0.001614,0.002000,0.249992,0,0);-ms-transform:matrix(0.201704,-0.001614,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201704,-0.001614,0.002000,0.249992,0,0);}
.m38_c00316{transform:matrix(0.201879,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201879,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201879,-0.001615,0.002000,0.249992,0,0);}
.m81_c00316{transform:matrix(0.201939,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.201939,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201939,-0.001616,0.002000,0.249992,0,0);}
.md8_c00316{transform:matrix(0.202099,-0.001617,0.002000,0.249992,0,0);-ms-transform:matrix(0.202099,-0.001617,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202099,-0.001617,0.002000,0.249992,0,0);}
.m9_c00316{transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);}
.m128_c00316{transform:matrix(0.202549,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202549,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202549,-0.001620,0.002000,0.249992,0,0);}
.m73_c00316{transform:matrix(0.203133,-0.001625,0.002000,0.249992,0,0);-ms-transform:matrix(0.203133,-0.001625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203133,-0.001625,0.002000,0.249992,0,0);}
.m70_c00316{transform:matrix(0.203208,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203208,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203208,-0.001626,0.002000,0.249992,0,0);}
.m104_c00316{transform:matrix(0.203308,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203308,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203308,-0.001626,0.002000,0.249992,0,0);}
.m9e_c00316{transform:matrix(0.203323,-0.001627,0.002000,0.249992,0,0);-ms-transform:matrix(0.203323,-0.001627,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203323,-0.001627,0.002000,0.249992,0,0);}
.mee_c00316{transform:matrix(0.203538,-0.001628,0.002000,0.249992,0,0);-ms-transform:matrix(0.203538,-0.001628,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203538,-0.001628,0.002000,0.249992,0,0);}
.m102_c00316{transform:matrix(0.203593,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203593,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203593,-0.001629,0.002000,0.249992,0,0);}
.mb4_c00316{transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);}
.mc2_c00316{transform:matrix(0.203688,-0.001630,0.002000,0.249992,0,0);-ms-transform:matrix(0.203688,-0.001630,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203688,-0.001630,0.002000,0.249992,0,0);}
.m1b_c00316{transform:matrix(0.204083,-0.001633,0.002000,0.249992,0,0);-ms-transform:matrix(0.204083,-0.001633,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204083,-0.001633,0.002000,0.249992,0,0);}
.m41_c00316{transform:matrix(0.204258,-0.001634,0.002000,0.249992,0,0);-ms-transform:matrix(0.204258,-0.001634,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204258,-0.001634,0.002000,0.249992,0,0);}
.mf5_c00316{transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);-ms-transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);}
.m1e_c00316{transform:matrix(0.204758,-0.001638,0.002000,0.249992,0,0);-ms-transform:matrix(0.204758,-0.001638,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204758,-0.001638,0.002000,0.249992,0,0);}
.m97_c00316{transform:matrix(0.204863,-0.001639,0.002000,0.249992,0,0);-ms-transform:matrix(0.204863,-0.001639,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204863,-0.001639,0.002000,0.249992,0,0);}
.m118_c00316{transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);}
.m74_c00316{transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);}
.m13e_c00316{transform:matrix(0.206673,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206673,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206673,-0.001653,0.002000,0.249992,0,0);}
.me3_c00316{transform:matrix(0.206783,-0.001654,0.002000,0.249992,0,0);-ms-transform:matrix(0.206783,-0.001654,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206783,-0.001654,0.002000,0.249992,0,0);}
.m32_c00316{transform:matrix(0.206978,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.206978,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206978,-0.001656,0.002000,0.249992,0,0);}
.maf_c00316{transform:matrix(0.207088,-0.001657,0.002000,0.249992,0,0);-ms-transform:matrix(0.207088,-0.001657,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207088,-0.001657,0.002000,0.249992,0,0);}
.m53_c00316{transform:matrix(0.207178,-0.001657,0.002000,0.249992,0,0);-ms-transform:matrix(0.207178,-0.001657,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207178,-0.001657,0.002000,0.249992,0,0);}
.m11f_c00316{transform:matrix(0.207353,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207353,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207353,-0.001659,0.002000,0.249992,0,0);}
.m8b_c00316{transform:matrix(0.208028,-0.001664,0.002000,0.249992,0,0);-ms-transform:matrix(0.208028,-0.001664,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208028,-0.001664,0.002000,0.249992,0,0);}
.m3b_c00316{transform:matrix(0.208703,-0.001670,0.002000,0.249992,0,0);-ms-transform:matrix(0.208703,-0.001670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208703,-0.001670,0.002000,0.249992,0,0);}
.m2d_c00316{transform:matrix(0.209053,-0.001672,0.002000,0.249992,0,0);-ms-transform:matrix(0.209053,-0.001672,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209053,-0.001672,0.002000,0.249992,0,0);}
.mb0_c00316{transform:matrix(0.210583,-0.001685,0.002000,0.249992,0,0);-ms-transform:matrix(0.210583,-0.001685,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210583,-0.001685,0.002000,0.249992,0,0);}
.me7_c00316{transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210923,-0.001687,0.002000,0.249992,0,0);}
.m130_c00316{transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211278,-0.001690,0.002000,0.249992,0,0);}
.me6_c00316{transform:matrix(0.211583,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211583,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211583,-0.001693,0.002000,0.249992,0,0);}
.me9_c00316{transform:matrix(0.212143,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212143,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212143,-0.001697,0.002000,0.249992,0,0);}
.mf6_c00316{transform:matrix(0.212193,-0.001698,0.002000,0.249992,0,0);-ms-transform:matrix(0.212193,-0.001698,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212193,-0.001698,0.002000,0.249992,0,0);}
.mb7_c00316{transform:matrix(0.212538,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212538,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212538,-0.001700,0.002000,0.249992,0,0);}
.md2_c00316{transform:matrix(0.212923,-0.001703,0.002000,0.249992,0,0);-ms-transform:matrix(0.212923,-0.001703,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212923,-0.001703,0.002000,0.249992,0,0);}
.m18_c00316{transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);}
.mca_c00316{transform:matrix(0.213538,-0.001708,0.002000,0.249992,0,0);-ms-transform:matrix(0.213538,-0.001708,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213538,-0.001708,0.002000,0.249992,0,0);}
.mb6_c00316{transform:matrix(0.213878,-0.001711,0.002000,0.249992,0,0);-ms-transform:matrix(0.213878,-0.001711,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213878,-0.001711,0.002000,0.249992,0,0);}
.m33_c00316{transform:matrix(0.213883,-0.001711,0.002000,0.249992,0,0);-ms-transform:matrix(0.213883,-0.001711,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213883,-0.001711,0.002000,0.249992,0,0);}
.mc3_c00316{transform:matrix(0.213928,-0.001711,0.002000,0.249992,0,0);-ms-transform:matrix(0.213928,-0.001711,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213928,-0.001711,0.002000,0.249992,0,0);}
.me4_c00316{transform:matrix(0.214428,-0.001715,0.002000,0.249992,0,0);-ms-transform:matrix(0.214428,-0.001715,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214428,-0.001715,0.002000,0.249992,0,0);}
.md7_c00316{transform:matrix(0.214573,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214573,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214573,-0.001717,0.002000,0.249992,0,0);}
.m87_c00316{transform:matrix(0.214638,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214638,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214638,-0.001717,0.002000,0.249992,0,0);}
.m99_c00316{transform:matrix(0.215103,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215103,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215103,-0.001721,0.002000,0.249992,0,0);}
.m29_c00316{transform:matrix(0.215263,-0.001722,0.002000,0.249992,0,0);-ms-transform:matrix(0.215263,-0.001722,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215263,-0.001722,0.002000,0.249992,0,0);}
.m105_c00316{transform:matrix(0.216358,-0.001731,0.002000,0.249992,0,0);-ms-transform:matrix(0.216358,-0.001731,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216358,-0.001731,0.002000,0.249992,0,0);}
.m67_c00316{transform:matrix(0.216953,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.216953,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216953,-0.001736,0.002000,0.249992,0,0);}
.m8_c00316{transform:matrix(0.217283,-0.001738,0.002000,0.249992,0,0);-ms-transform:matrix(0.217283,-0.001738,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217283,-0.001738,0.002000,0.249992,0,0);}
.me2_c00316{transform:matrix(0.217683,-0.001741,0.002000,0.249992,0,0);-ms-transform:matrix(0.217683,-0.001741,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217683,-0.001741,0.002000,0.249992,0,0);}
.m82_c00316{transform:matrix(0.218183,-0.001745,0.002000,0.249992,0,0);-ms-transform:matrix(0.218183,-0.001745,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218183,-0.001745,0.002000,0.249992,0,0);}
.m139_c00316{transform:matrix(0.218213,-0.001746,0.002000,0.249992,0,0);-ms-transform:matrix(0.218213,-0.001746,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218213,-0.001746,0.002000,0.249992,0,0);}
.m1d_c00316{transform:matrix(0.220073,-0.001761,0.002000,0.249992,0,0);-ms-transform:matrix(0.220073,-0.001761,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220073,-0.001761,0.002000,0.249992,0,0);}
.m52_c00316{transform:matrix(0.220228,-0.001762,0.002000,0.249992,0,0);-ms-transform:matrix(0.220228,-0.001762,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220228,-0.001762,0.002000,0.249992,0,0);}
.mbc_c00316{transform:matrix(0.220523,-0.001764,0.002000,0.249992,0,0);-ms-transform:matrix(0.220523,-0.001764,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220523,-0.001764,0.002000,0.249992,0,0);}
.m2_c00316{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);}
.ma1_c00316{transform:matrix(0.221398,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221398,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221398,-0.001771,0.002000,0.249992,0,0);}
.m6a_c00316{transform:matrix(0.221403,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221403,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221403,-0.001771,0.002000,0.249992,0,0);}
.me5_c00316{transform:matrix(0.222488,-0.001780,0.002000,0.249992,0,0);-ms-transform:matrix(0.222488,-0.001780,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222488,-0.001780,0.002000,0.249992,0,0);}
.m117_c00316{transform:matrix(0.222593,-0.001781,0.002000,0.249992,0,0);-ms-transform:matrix(0.222593,-0.001781,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222593,-0.001781,0.002000,0.249992,0,0);}
.m122_c00316{transform:matrix(0.222913,-0.001783,0.002000,0.249992,0,0);-ms-transform:matrix(0.222913,-0.001783,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222913,-0.001783,0.002000,0.249992,0,0);}
.m12e_c00316{transform:matrix(0.223193,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223193,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223193,-0.001786,0.002000,0.249992,0,0);}
.mcf_c00316{transform:matrix(0.224593,-0.001797,0.002000,0.249992,0,0);-ms-transform:matrix(0.224593,-0.001797,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224593,-0.001797,0.002000,0.249992,0,0);}
.mab_c00316{transform:matrix(0.225258,-0.001802,0.002000,0.249992,0,0);-ms-transform:matrix(0.225258,-0.001802,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225258,-0.001802,0.002000,0.249992,0,0);}
.m43_c00316{transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);-ms-transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226603,-0.001813,0.002000,0.249992,0,0);}
.m134_c00316{transform:matrix(0.227563,-0.001821,0.002000,0.249992,0,0);-ms-transform:matrix(0.227563,-0.001821,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227563,-0.001821,0.002000,0.249992,0,0);}
.me1_c00316{transform:matrix(0.228313,-0.001827,0.002000,0.249992,0,0);-ms-transform:matrix(0.228313,-0.001827,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228313,-0.001827,0.002000,0.249992,0,0);}
.m50_c00316{transform:matrix(0.228448,-0.001828,0.002000,0.249992,0,0);-ms-transform:matrix(0.228448,-0.001828,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228448,-0.001828,0.002000,0.249992,0,0);}
.m59_c00316{transform:matrix(0.228643,-0.001829,0.002000,0.249992,0,0);-ms-transform:matrix(0.228643,-0.001829,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228643,-0.001829,0.002000,0.249992,0,0);}
.m20_c00316{transform:matrix(0.229023,-0.001832,0.002000,0.249992,0,0);-ms-transform:matrix(0.229023,-0.001832,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229023,-0.001832,0.002000,0.249992,0,0);}
.m6_c00316{transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);}
.m140_c00316{transform:matrix(0.230398,-0.001843,0.002000,0.249992,0,0);-ms-transform:matrix(0.230398,-0.001843,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230398,-0.001843,0.002000,0.249992,0,0);}
.m124_c00316{transform:matrix(0.231888,-0.001855,0.002000,0.249992,0,0);-ms-transform:matrix(0.231888,-0.001855,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231888,-0.001855,0.002000,0.249992,0,0);}
.m79_c00316{transform:matrix(0.231903,-0.001855,0.002000,0.249992,0,0);-ms-transform:matrix(0.231903,-0.001855,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231903,-0.001855,0.002000,0.249992,0,0);}
.m5b_c00316{transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);}
.m11e_c00316{transform:matrix(0.233258,-0.001866,0.002000,0.249992,0,0);-ms-transform:matrix(0.233258,-0.001866,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233258,-0.001866,0.002000,0.249992,0,0);}
.m36_c00316{transform:matrix(0.233583,-0.001869,0.002000,0.249992,0,0);-ms-transform:matrix(0.233583,-0.001869,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233583,-0.001869,0.002000,0.249992,0,0);}
.m120_c00316{transform:matrix(0.234333,-0.001875,0.002000,0.249992,0,0);-ms-transform:matrix(0.234333,-0.001875,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234333,-0.001875,0.002000,0.249992,0,0);}
.mcc_c00316{transform:matrix(0.237522,-0.001900,0.002000,0.249992,0,0);-ms-transform:matrix(0.237522,-0.001900,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237522,-0.001900,0.002000,0.249992,0,0);}
.m7d_c00316{transform:matrix(0.239762,-0.001918,0.002000,0.249992,0,0);-ms-transform:matrix(0.239762,-0.001918,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239762,-0.001918,0.002000,0.249992,0,0);}
.m7a_c00316{transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);-ms-transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239817,-0.001919,0.002000,0.249992,0,0);}
.meb_c00316{transform:matrix(0.240242,-0.001922,0.002000,0.249992,0,0);-ms-transform:matrix(0.240242,-0.001922,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240242,-0.001922,0.002000,0.249992,0,0);}
.m91_c00316{transform:matrix(0.240707,-0.001926,0.002000,0.249992,0,0);-ms-transform:matrix(0.240707,-0.001926,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240707,-0.001926,0.002000,0.249992,0,0);}
.m3d_c00316{transform:matrix(0.241097,-0.001929,0.002000,0.249992,0,0);-ms-transform:matrix(0.241097,-0.001929,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241097,-0.001929,0.002000,0.249992,0,0);}
.m3c_c00316{transform:matrix(0.243167,-0.001945,0.002000,0.249992,0,0);-ms-transform:matrix(0.243167,-0.001945,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243167,-0.001945,0.002000,0.249992,0,0);}
.m93_c00316{transform:matrix(0.243557,-0.001948,0.002000,0.249992,0,0);-ms-transform:matrix(0.243557,-0.001948,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243557,-0.001948,0.002000,0.249992,0,0);}
.mae_c00316{transform:matrix(0.246397,-0.001971,0.002000,0.249992,0,0);-ms-transform:matrix(0.246397,-0.001971,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246397,-0.001971,0.002000,0.249992,0,0);}
.m5c_c00316{transform:matrix(0.247107,-0.001977,0.002000,0.249992,0,0);-ms-transform:matrix(0.247107,-0.001977,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247107,-0.001977,0.002000,0.249992,0,0);}
.m4e_c00316{transform:matrix(0.248487,-0.001988,0.002000,0.249992,0,0);-ms-transform:matrix(0.248487,-0.001988,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248487,-0.001988,0.002000,0.249992,0,0);}
.m147_c00316{transform:matrix(0.249907,-0.001999,0.002000,0.249992,0,0);-ms-transform:matrix(0.249907,-0.001999,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249907,-0.001999,0.002000,0.249992,0,0);}
.m101_c00316{transform:matrix(0.251237,-0.002010,0.002000,0.249992,0,0);-ms-transform:matrix(0.251237,-0.002010,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251237,-0.002010,0.002000,0.249992,0,0);}
.m9a_c00316{transform:matrix(0.252987,-0.002024,0.002000,0.249992,0,0);-ms-transform:matrix(0.252987,-0.002024,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252987,-0.002024,0.002000,0.249992,0,0);}
.m119_c00316{transform:matrix(0.253027,-0.002024,0.002000,0.249992,0,0);-ms-transform:matrix(0.253027,-0.002024,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253027,-0.002024,0.002000,0.249992,0,0);}
.m11d_c00316{transform:matrix(0.253497,-0.002028,0.002000,0.249992,0,0);-ms-transform:matrix(0.253497,-0.002028,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253497,-0.002028,0.002000,0.249992,0,0);}
.m8f_c00316{transform:matrix(0.253827,-0.002031,0.002000,0.249992,0,0);-ms-transform:matrix(0.253827,-0.002031,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253827,-0.002031,0.002000,0.249992,0,0);}
.mf4_c00316{transform:matrix(0.254807,-0.002038,0.002000,0.249992,0,0);-ms-transform:matrix(0.254807,-0.002038,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254807,-0.002038,0.002000,0.249992,0,0);}
.m13c_c00316{transform:matrix(0.255322,-0.002043,0.002000,0.249992,0,0);-ms-transform:matrix(0.255322,-0.002043,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255322,-0.002043,0.002000,0.249992,0,0);}
.m61_c00316{transform:matrix(0.255387,-0.002043,0.002000,0.249992,0,0);-ms-transform:matrix(0.255387,-0.002043,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255387,-0.002043,0.002000,0.249992,0,0);}
.m144_c00316{transform:matrix(0.255827,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255827,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255827,-0.002047,0.002000,0.249992,0,0);}
.m123_c00316{transform:matrix(0.257012,-0.002056,0.002000,0.249992,0,0);-ms-transform:matrix(0.257012,-0.002056,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257012,-0.002056,0.002000,0.249992,0,0);}
.mcd_c00316{transform:matrix(0.257677,-0.002061,0.002000,0.249992,0,0);-ms-transform:matrix(0.257677,-0.002061,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257677,-0.002061,0.002000,0.249992,0,0);}
.mc7_c00316{transform:matrix(0.258827,-0.002071,0.002000,0.249992,0,0);-ms-transform:matrix(0.258827,-0.002071,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258827,-0.002071,0.002000,0.249992,0,0);}
.m63_c00316{transform:matrix(0.259642,-0.002077,0.002000,0.249992,0,0);-ms-transform:matrix(0.259642,-0.002077,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259642,-0.002077,0.002000,0.249992,0,0);}
.mb1_c00316{transform:matrix(0.260572,-0.002085,0.002000,0.249992,0,0);-ms-transform:matrix(0.260572,-0.002085,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260572,-0.002085,0.002000,0.249992,0,0);}
.mb8_c00316{transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);-ms-transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262287,-0.002098,0.002000,0.249992,0,0);}
.m146_c00316{transform:matrix(0.262552,-0.002100,0.002000,0.249992,0,0);-ms-transform:matrix(0.262552,-0.002100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262552,-0.002100,0.002000,0.249992,0,0);}
.m71_c00316{transform:matrix(0.263002,-0.002104,0.002000,0.249992,0,0);-ms-transform:matrix(0.263002,-0.002104,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263002,-0.002104,0.002000,0.249992,0,0);}
.m0_c00316{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);}
.m5f_c00316{transform:matrix(0.270151,-0.002161,0.002000,0.249992,0,0);-ms-transform:matrix(0.270151,-0.002161,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270151,-0.002161,0.002000,0.249992,0,0);}
.m11b_c00316{transform:matrix(0.270276,-0.002162,0.002000,0.249992,0,0);-ms-transform:matrix(0.270276,-0.002162,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270276,-0.002162,0.002000,0.249992,0,0);}
.m132_c00316{transform:matrix(0.281651,-0.002253,0.002000,0.249992,0,0);-ms-transform:matrix(0.281651,-0.002253,0.002000,0.249992,0,0);-webkit-transform:matrix(0.281651,-0.002253,0.002000,0.249992,0,0);}
.m72_c00316{transform:matrix(0.283311,-0.002266,0.002000,0.249992,0,0);-ms-transform:matrix(0.283311,-0.002266,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283311,-0.002266,0.002000,0.249992,0,0);}
.m116_c00316{transform:matrix(0.285266,-0.002282,0.002000,0.249992,0,0);-ms-transform:matrix(0.285266,-0.002282,0.002000,0.249992,0,0);-webkit-transform:matrix(0.285266,-0.002282,0.002000,0.249992,0,0);}
.m12c_c00316{transform:matrix(0.289201,-0.002314,0.002000,0.249992,0,0);-ms-transform:matrix(0.289201,-0.002314,0.002000,0.249992,0,0);-webkit-transform:matrix(0.289201,-0.002314,0.002000,0.249992,0,0);}
.m121_c00316{transform:matrix(0.290661,-0.002325,0.002000,0.249992,0,0);-ms-transform:matrix(0.290661,-0.002325,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290661,-0.002325,0.002000,0.249992,0,0);}
.m60_c00316{transform:matrix(0.291116,-0.002329,0.002000,0.249992,0,0);-ms-transform:matrix(0.291116,-0.002329,0.002000,0.249992,0,0);-webkit-transform:matrix(0.291116,-0.002329,0.002000,0.249992,0,0);}
.m65_c00316{transform:matrix(0.292326,-0.002339,0.002000,0.249992,0,0);-ms-transform:matrix(0.292326,-0.002339,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292326,-0.002339,0.002000,0.249992,0,0);}
.m1_c00316{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);}
.mc4_c00316{transform:matrix(0.293806,-0.002350,0.002000,0.249992,0,0);-ms-transform:matrix(0.293806,-0.002350,0.002000,0.249992,0,0);-webkit-transform:matrix(0.293806,-0.002350,0.002000,0.249992,0,0);}
.m2a_c00316{transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);-ms-transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.304655,-0.002437,0.002000,0.249992,0,0);}
.m125_c00316{transform:matrix(0.309415,-0.002475,0.002000,0.249992,0,0);-ms-transform:matrix(0.309415,-0.002475,0.002000,0.249992,0,0);-webkit-transform:matrix(0.309415,-0.002475,0.002000,0.249992,0,0);}
.m8e_c00316{transform:matrix(0.314445,-0.002516,0.002000,0.249992,0,0);-ms-transform:matrix(0.314445,-0.002516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.314445,-0.002516,0.002000,0.249992,0,0);}
.m5a_c00316{transform:matrix(0.314760,-0.002518,0.002000,0.249992,0,0);-ms-transform:matrix(0.314760,-0.002518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.314760,-0.002518,0.002000,0.249992,0,0);}
.mac_c00316{transform:matrix(0.320805,-0.002566,0.002000,0.249992,0,0);-ms-transform:matrix(0.320805,-0.002566,0.002000,0.249992,0,0);-webkit-transform:matrix(0.320805,-0.002566,0.002000,0.249992,0,0);}
.mea_c00316{transform:matrix(0.335454,-0.002684,0.002000,0.249992,0,0);-ms-transform:matrix(0.335454,-0.002684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.335454,-0.002684,0.002000,0.249992,0,0);}
.m66_c00316{transform:matrix(0.346309,-0.002770,0.002000,0.249992,0,0);-ms-transform:matrix(0.346309,-0.002770,0.002000,0.249992,0,0);-webkit-transform:matrix(0.346309,-0.002770,0.002000,0.249992,0,0);}
.m2b_c00316{transform:matrix(0.349904,-0.002799,0.002000,0.249992,0,0);-ms-transform:matrix(0.349904,-0.002799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.349904,-0.002799,0.002000,0.249992,0,0);}
.m64_c00316{transform:matrix(0.351919,-0.002815,0.002000,0.249992,0,0);-ms-transform:matrix(0.351919,-0.002815,0.002000,0.249992,0,0);-webkit-transform:matrix(0.351919,-0.002815,0.002000,0.249992,0,0);}
.m14f_c00316{transform:matrix(0.375135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375135,0.000000,0.000000,0.250000,0,0);}
.m149_c00316{transform:matrix(0.397430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397430,0.000000,0.000000,0.250000,0,0);}
.m14a_c00316{transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424025,0.000000,0.000000,0.250000,0,0);}
.m14c_c00316{transform:matrix(0.441810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441810,0.000000,0.000000,0.250000,0,0);}
.m14b_c00316{transform:matrix(0.458710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458710,0.000000,0.000000,0.250000,0,0);}
.m143_c00316{transform:matrix(0.554067,-0.004433,0.002000,0.249992,0,0);-ms-transform:matrix(0.554067,-0.004433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.554067,-0.004433,0.002000,0.249992,0,0);}
.m14d_c00316{transform:matrix(0.641605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641605,0.000000,0.000000,0.250000,0,0);}
.m62_c00316{transform:matrix(0.694773,-0.005558,0.002000,0.249992,0,0);-ms-transform:matrix(0.694773,-0.005558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.694773,-0.005558,0.002000,0.249992,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;}
.fsb_c00316{font-size:44.100000px;}
.fs7_c00316{font-size:59.851915px;}
.fs8_c00316{font-size:63.002016px;}
.fs3_c00316{font-size:66.152117px;}
.fs5_c00316{font-size:67.202150px;}
.fs9_c00316{font-size:68.252184px;}
.fs4_c00316{font-size:69.302218px;}
.fs1_c00316{font-size:70.352251px;}
.fs6_c00316{font-size:71.402285px;}
.fs2_c00316{font-size:72.452318px;}
.fsa_c00316{font-size:87.150000px;}
.fs0_c00316{font-size:134.400000px;}
.y0_c00316{bottom:0.000000px;}
.y14b_c00316{bottom:85.453500px;}
.y146_c00316{bottom:128.498748px;}
.y14a_c00316{bottom:128.498760px;}
.y148_c00316{bottom:128.498784px;}
.y147_c00316{bottom:128.499096px;}
.y149_c00316{bottom:128.499492px;}
.y13c_c00316{bottom:152.316804px;}
.y13d_c00316{bottom:152.317512px;}
.y13e_c00316{bottom:152.317980px;}
.y13f_c00316{bottom:152.318100px;}
.y141_c00316{bottom:152.318136px;}
.y145_c00316{bottom:152.318256px;}
.y140_c00316{bottom:152.318328px;}
.y142_c00316{bottom:152.318784px;}
.y144_c00316{bottom:152.318868px;}
.y143_c00316{bottom:152.319072px;}
.y13a_c00316{bottom:174.845808px;}
.y13b_c00316{bottom:174.846096px;}
.y138_c00316{bottom:174.846132px;}
.y139_c00316{bottom:174.846240px;}
.y132_c00316{bottom:174.846372px;}
.y131_c00316{bottom:174.846504px;}
.y137_c00316{bottom:174.846564px;}
.y136_c00316{bottom:174.846576px;}
.y133_c00316{bottom:174.846600px;}
.y130_c00316{bottom:174.846756px;}
.y135_c00316{bottom:174.846876px;}
.y134_c00316{bottom:174.846888px;}
.y12d_c00316{bottom:197.717796px;}
.y128_c00316{bottom:197.717916px;}
.y12e_c00316{bottom:197.718204px;}
.y129_c00316{bottom:197.718264px;}
.y12c_c00316{bottom:197.718348px;}
.y127_c00316{bottom:197.718408px;}
.y126_c00316{bottom:197.718480px;}
.y12a_c00316{bottom:197.718612px;}
.y12f_c00316{bottom:197.718852px;}
.y12b_c00316{bottom:197.718900px;}
.y125_c00316{bottom:197.718912px;}
.y124_c00316{bottom:197.719524px;}
.y123_c00316{bottom:197.719776px;}
.y116_c00316{bottom:218.677020px;}
.y117_c00316{bottom:219.117240px;}
.y118_c00316{bottom:219.225300px;}
.y119_c00316{bottom:219.506628px;}
.y11a_c00316{bottom:219.840888px;}
.y11b_c00316{bottom:220.184544px;}
.y11c_c00316{bottom:220.443036px;}
.y11d_c00316{bottom:220.588044px;}
.y11e_c00316{bottom:220.768032px;}
.y11f_c00316{bottom:221.095020px;}
.y120_c00316{bottom:221.392284px;}
.y121_c00316{bottom:221.549160px;}
.y122_c00316{bottom:221.738244px;}
.y10c_c00316{bottom:241.089108px;}
.y10d_c00316{bottom:241.379796px;}
.y10e_c00316{bottom:241.762740px;}
.y10f_c00316{bottom:241.991172px;}
.y110_c00316{bottom:242.595384px;}
.y111_c00316{bottom:243.254736px;}
.y112_c00316{bottom:243.584040px;}
.y113_c00316{bottom:243.846792px;}
.y114_c00316{bottom:244.079208px;}
.y115_c00316{bottom:244.245636px;}
.y10a_c00316{bottom:265.562472px;}
.y102_c00316{bottom:265.562724px;}
.y10b_c00316{bottom:265.562820px;}
.y101_c00316{bottom:265.563024px;}
.y108_c00316{bottom:265.563036px;}
.y107_c00316{bottom:265.563108px;}
.y109_c00316{bottom:265.563144px;}
.y100_c00316{bottom:265.563216px;}
.y106_c00316{bottom:265.563240px;}
.yff_c00316{bottom:265.563396px;}
.y103_c00316{bottom:265.563432px;}
.y104_c00316{bottom:265.563552px;}
.y105_c00316{bottom:265.563660px;}
.yfe_c00316{bottom:265.563708px;}
.yfd_c00316{bottom:265.564320px;}
.yfa_c00316{bottom:287.909700px;}
.yf2_c00316{bottom:287.909712px;}
.yef_c00316{bottom:287.909736px;}
.yf3_c00316{bottom:287.909832px;}
.yfb_c00316{bottom:287.910048px;}
.yf4_c00316{bottom:287.910060px;}
.yf5_c00316{bottom:287.910168px;}
.yf0_c00316{bottom:287.910204px;}
.yf9_c00316{bottom:287.910240px;}
.yf8_c00316{bottom:287.910312px;}
.yfc_c00316{bottom:287.910348px;}
.yf1_c00316{bottom:287.910432px;}
.yf7_c00316{bottom:287.910564px;}
.yf6_c00316{bottom:287.910576px;}
.ye5_c00316{bottom:310.585752px;}
.ye4_c00316{bottom:310.586064px;}
.ye6_c00316{bottom:310.586280px;}
.ye1_c00316{bottom:310.586316px;}
.ye7_c00316{bottom:310.586568px;}
.ye0_c00316{bottom:310.586688px;}
.ye3_c00316{bottom:310.586784px;}
.ye2_c00316{bottom:310.586796px;}
.ye8_c00316{bottom:310.586988px;}
.yeb_c00316{bottom:310.587252px;}
.yea_c00316{bottom:310.587504px;}
.ye9_c00316{bottom:310.587516px;}
.yec_c00316{bottom:310.587780px;}
.yed_c00316{bottom:310.588500px;}
.yee_c00316{bottom:310.588968px;}
.yd6_c00316{bottom:331.790016px;}
.yd7_c00316{bottom:332.345544px;}
.yd8_c00316{bottom:332.570832px;}
.yd9_c00316{bottom:332.794236px;}
.yda_c00316{bottom:333.045588px;}
.ydb_c00316{bottom:333.571356px;}
.ydc_c00316{bottom:334.340904px;}
.ydd_c00316{bottom:334.522764px;}
.yde_c00316{bottom:334.826808px;}
.ydf_c00316{bottom:335.053212px;}
.ycd_c00316{bottom:356.205804px;}
.yce_c00316{bottom:356.206332px;}
.yd1_c00316{bottom:356.206356px;}
.ycf_c00316{bottom:356.206380px;}
.yd0_c00316{bottom:356.206848px;}
.yd2_c00316{bottom:356.207004px;}
.yd3_c00316{bottom:356.207100px;}
.yd4_c00316{bottom:356.207628px;}
.yd5_c00316{bottom:356.207676px;}
.yc5_c00316{bottom:379.132788px;}
.yc4_c00316{bottom:379.133160px;}
.yc6_c00316{bottom:379.133268px;}
.yc3_c00316{bottom:379.133712px;}
.yc7_c00316{bottom:379.133928px;}
.yc8_c00316{bottom:379.134576px;}
.ycb_c00316{bottom:379.134720px;}
.ycc_c00316{bottom:379.134840px;}
.yc9_c00316{bottom:379.134984px;}
.yca_c00316{bottom:379.135032px;}
.ybb_c00316{bottom:401.339268px;}
.ybd_c00316{bottom:401.339772px;}
.ybc_c00316{bottom:401.339856px;}
.yc2_c00316{bottom:401.339892px;}
.yc0_c00316{bottom:401.339976px;}
.yba_c00316{bottom:401.340000px;}
.ybe_c00316{bottom:401.340120px;}
.yc1_c00316{bottom:401.340564px;}
.ybf_c00316{bottom:401.340588px;}
.yb0_c00316{bottom:423.749928px;}
.yb1_c00316{bottom:423.750336px;}
.yb2_c00316{bottom:423.750984px;}
.yb9_c00316{bottom:423.751140px;}
.yb3_c00316{bottom:423.751212px;}
.yb8_c00316{bottom:423.751272px;}
.yb7_c00316{bottom:423.751584px;}
.yb4_c00316{bottom:423.751620px;}
.yb6_c00316{bottom:423.752256px;}
.yb5_c00316{bottom:423.752328px;}
.yae_c00316{bottom:446.130996px;}
.yad_c00316{bottom:446.131188px;}
.yab_c00316{bottom:446.131512px;}
.ya9_c00316{bottom:446.131548px;}
.yac_c00316{bottom:446.131860px;}
.yaf_c00316{bottom:446.132088px;}
.yaa_c00316{bottom:446.132136px;}
.ya1_c00316{bottom:468.811440px;}
.ya2_c00316{bottom:468.811488px;}
.ya0_c00316{bottom:468.811512px;}
.ya8_c00316{bottom:468.811920px;}
.ya3_c00316{bottom:468.811944px;}
.ya6_c00316{bottom:468.812364px;}
.ya4_c00316{bottom:468.812508px;}
.ya5_c00316{bottom:468.812556px;}
.ya7_c00316{bottom:468.812592px;}
.y9f_c00316{bottom:491.761008px;}
.y9e_c00316{bottom:491.761740px;}
.y9d_c00316{bottom:491.761992px;}
.y99_c00316{bottom:491.762628px;}
.y9c_c00316{bottom:491.762724px;}
.y97_c00316{bottom:491.762832px;}
.y98_c00316{bottom:491.763012px;}
.y9b_c00316{bottom:491.763036px;}
.y96_c00316{bottom:491.763252px;}
.y9a_c00316{bottom:491.763348px;}
.y95_c00316{bottom:491.763564px;}
.y93_c00316{bottom:491.763648px;}
.y94_c00316{bottom:491.764176px;}
.y8c_c00316{bottom:514.174488px;}
.y8b_c00316{bottom:514.174620px;}
.y91_c00316{bottom:514.174680px;}
.y92_c00316{bottom:514.174788px;}
.y8d_c00316{bottom:514.174956px;}
.y90_c00316{bottom:514.175040px;}
.y8a_c00316{bottom:514.175244px;}
.y8e_c00316{bottom:514.175364px;}
.y8f_c00316{bottom:514.175412px;}
.y89_c00316{bottom:537.395592px;}
.y84_c00316{bottom:537.395700px;}
.y85_c00316{bottom:537.395808px;}
.y86_c00316{bottom:537.396048px;}
.y83_c00316{bottom:537.396060px;}
.y88_c00316{bottom:537.396084px;}
.y87_c00316{bottom:537.396096px;}
.y82_c00316{bottom:537.396372px;}
.y81_c00316{bottom:537.396936px;}
.y80_c00316{bottom:537.397572px;}
.y7d_c00316{bottom:560.313900px;}
.y7e_c00316{bottom:560.314020px;}
.y77_c00316{bottom:560.314164px;}
.y75_c00316{bottom:560.314368px;}
.y7b_c00316{bottom:560.314416px;}
.y7f_c00316{bottom:560.314488px;}
.y7c_c00316{bottom:560.314572px;}
.y79_c00316{bottom:560.314620px;}
.y76_c00316{bottom:560.314656px;}
.y78_c00316{bottom:560.314812px;}
.y7a_c00316{bottom:560.314848px;}
.y6c_c00316{bottom:581.299392px;}
.y6d_c00316{bottom:581.599188px;}
.y6e_c00316{bottom:582.242280px;}
.y6f_c00316{bottom:583.290420px;}
.y70_c00316{bottom:583.640196px;}
.y71_c00316{bottom:584.392800px;}
.y72_c00316{bottom:584.827608px;}
.y73_c00316{bottom:585.194964px;}
.y74_c00316{bottom:586.011480px;}
.y63_c00316{bottom:603.443196px;}
.y64_c00316{bottom:603.741840px;}
.y65_c00316{bottom:604.351476px;}
.y66_c00316{bottom:604.504308px;}
.y67_c00316{bottom:605.472924px;}
.y68_c00316{bottom:606.274152px;}
.y69_c00316{bottom:606.573792px;}
.y6a_c00316{bottom:606.901128px;}
.y6b_c00316{bottom:607.608924px;}
.y58_c00316{bottom:625.853796px;}
.y59_c00316{bottom:626.376096px;}
.y5a_c00316{bottom:626.604960px;}
.y5b_c00316{bottom:627.467460px;}
.y14c_c00316{bottom:627.750000px;}
.y5c_c00316{bottom:627.788724px;}
.y5d_c00316{bottom:628.488660px;}
.y5e_c00316{bottom:628.811652px;}
.y5f_c00316{bottom:629.059296px;}
.y60_c00316{bottom:629.249916px;}
.y61_c00316{bottom:629.282028px;}
.y62_c00316{bottom:629.631816px;}
.y4d_c00316{bottom:647.986212px;}
.y4e_c00316{bottom:648.217344px;}
.y4f_c00316{bottom:648.460548px;}
.y50_c00316{bottom:648.838356px;}
.y51_c00316{bottom:649.301316px;}
.y52_c00316{bottom:650.034660px;}
.y53_c00316{bottom:650.578464px;}
.y54_c00316{bottom:650.881368px;}
.y55_c00316{bottom:651.733776px;}
.y56_c00316{bottom:652.563048px;}
.y57_c00316{bottom:652.892724px;}
.y4a_c00316{bottom:671.890248px;}
.y4b_c00316{bottom:671.890524px;}
.y4c_c00316{bottom:671.890932px;}
.y3d_c00316{bottom:693.629460px;}
.y3e_c00316{bottom:693.965004px;}
.y3f_c00316{bottom:694.368336px;}
.y40_c00316{bottom:694.605672px;}
.y41_c00316{bottom:694.819704px;}
.y42_c00316{bottom:695.410020px;}
.y43_c00316{bottom:695.982900px;}
.y44_c00316{bottom:696.154272px;}
.y45_c00316{bottom:696.314808px;}
.y46_c00316{bottom:696.869892px;}
.y47_c00316{bottom:697.568388px;}
.y48_c00316{bottom:697.987452px;}
.y49_c00316{bottom:698.698848px;}
.y31_c00316{bottom:716.160612px;}
.y32_c00316{bottom:717.413832px;}
.y33_c00316{bottom:717.610380px;}
.y34_c00316{bottom:717.820968px;}
.y35_c00316{bottom:718.482540px;}
.y36_c00316{bottom:718.660032px;}
.y37_c00316{bottom:719.090304px;}
.y38_c00316{bottom:719.672352px;}
.y39_c00316{bottom:720.102888px;}
.y3a_c00316{bottom:720.768168px;}
.y3b_c00316{bottom:721.151784px;}
.y3c_c00316{bottom:721.327452px;}
.y25_c00316{bottom:740.340648px;}
.y26_c00316{bottom:740.682660px;}
.y27_c00316{bottom:740.954400px;}
.y28_c00316{bottom:741.249024px;}
.y29_c00316{bottom:741.460980px;}
.y2a_c00316{bottom:741.881400px;}
.y2b_c00316{bottom:742.014948px;}
.y2c_c00316{bottom:742.344408px;}
.y2d_c00316{bottom:742.801824px;}
.y2e_c00316{bottom:743.143944px;}
.y2f_c00316{bottom:743.503764px;}
.y30_c00316{bottom:743.744988px;}
.y19_c00316{bottom:763.020948px;}
.y1a_c00316{bottom:763.206420px;}
.y1b_c00316{bottom:763.558728px;}
.y1c_c00316{bottom:763.852476px;}
.y1d_c00316{bottom:764.461368px;}
.y1e_c00316{bottom:764.813460px;}
.y1f_c00316{bottom:764.990880px;}
.y20_c00316{bottom:765.537084px;}
.y21_c00316{bottom:765.787632px;}
.y22_c00316{bottom:766.075212px;}
.y23_c00316{bottom:766.284792px;}
.y24_c00316{bottom:766.552296px;}
.ye_c00316{bottom:785.700456px;}
.yf_c00316{bottom:785.852580px;}
.y10_c00316{bottom:786.325176px;}
.y11_c00316{bottom:786.727884px;}
.y12_c00316{bottom:787.066848px;}
.y13_c00316{bottom:787.797288px;}
.y14_c00316{bottom:788.002560px;}
.y15_c00316{bottom:788.297508px;}
.y16_c00316{bottom:788.426460px;}
.y17_c00316{bottom:788.717028px;}
.y18_c00316{bottom:788.862360px;}
.y2_c00316{bottom:808.651500px;}
.y3_c00316{bottom:808.809156px;}
.y4_c00316{bottom:809.094540px;}
.y5_c00316{bottom:809.521944px;}
.y6_c00316{bottom:809.735832px;}
.y7_c00316{bottom:810.055836px;}
.y8_c00316{bottom:810.533004px;}
.y9_c00316{bottom:811.055688px;}
.ya_c00316{bottom:811.377444px;}
.yb_c00316{bottom:811.878588px;}
.yc_c00316{bottom:812.034132px;}
.yd_c00316{bottom:812.390556px;}
.y1_c00316{bottom:854.875500px;}
.hd_c00316{height:44.100000px;}
.h9_c00316{height:59.851915px;}
.ha_c00316{height:63.002016px;}
.h5_c00316{height:66.152117px;}
.h7_c00316{height:67.202150px;}
.hb_c00316{height:68.252184px;}
.h6_c00316{height:69.302218px;}
.h3_c00316{height:70.352251px;}
.h8_c00316{height:71.402285px;}
.h4_c00316{height:72.452318px;}
.hc_c00316{height:87.150000px;}
.h2_c00316{height:134.400000px;}
.h1_c00316{height:1005.000000px;}
.h0_c00316{height:1005.150000px;}
.w0_c00316{width:702.540000px;}
.w1_c00316{width:702.750000px;}
.x0_c00316{left:0.000000px;}
.x54_c00316{left:77.382012px;}
.x95_c00316{left:81.811068px;}
.x42_c00316{left:84.778944px;}
.x4_c00316{left:85.966500px;}
.x4c_c00316{left:87.403380px;}
.x8f_c00316{left:89.366640px;}
.xad_c00316{left:91.083036px;}
.x44_c00316{left:104.091900px;}
.x5_c00316{left:105.673500px;}
.x10_c00316{left:107.285244px;}
.x1a_c00316{left:108.884004px;}
.x55_c00316{left:110.587248px;}
.x6e_c00316{left:113.400192px;}
.xc4_c00316{left:115.560000px;}
.x3a_c00316{left:117.323940px;}
.xa8_c00316{left:120.964164px;}
.xc1_c00316{left:123.658248px;}
.x25_c00316{left:124.845204px;}
.xb4_c00316{left:127.984332px;}
.x5e_c00316{left:129.600360px;}
.x77_c00316{left:130.680408px;}
.x82_c00316{left:132.027960px;}
.x7e_c00316{left:137.699280px;}
.xc3_c00316{left:139.047768px;}
.x6_c00316{left:141.346500px;}
.x4d_c00316{left:145.377912px;}
.x45_c00316{left:147.257868px;}
.x1b_c00316{left:152.922504px;}
.x3b_c00316{left:154.052064px;}
.x26_c00316{left:155.062464px;}
.x90_c00316{left:158.489568px;}
.x89_c00316{left:160.649064px;}
.x6f_c00316{left:164.701980px;}
.x43_c00316{left:167.131212px;}
.x78_c00316{left:168.751344px;}
.x4e_c00316{left:170.798208px;}
.x11_c00316{left:174.797784px;}
.x5f_c00316{left:176.041836px;}
.x56_c00316{left:178.353708px;}
.x83_c00316{left:179.549496px;}
.x46_c00316{left:181.545540px;}
.x27_c00316{left:187.765200px;}
.x1c_c00316{left:189.641004px;}
.xa2_c00316{left:191.165400px;}
.x6a_c00316{left:192.781500px;}
.x7_c00316{left:194.772000px;}
.xb5_c00316{left:196.295712px;}
.x9a_c00316{left:198.511104px;}
.x2f_c00316{left:200.495184px;}
.x1_c00316{left:204.660000px;}
.x64_c00316{left:206.011080px;}
.xb0_c00316{left:209.890788px;}
.x28_c00316{left:211.259508px;}
.xa3_c00316{left:213.306816px;}
.x9d_c00316{left:215.467056px;}
.x30_c00316{left:218.313252px;}
.x91_c00316{left:220.322028px;}
.x8_c00316{left:221.508000px;}
.x47_c00316{left:223.664532px;}
.xb6_c00316{left:225.726096px;}
.x70_c00316{left:227.614512px;}
.x9b_c00316{left:230.374356px;}
.x12_c00316{left:232.261740px;}
.x92_c00316{left:234.632940px;}
.x31_c00316{left:237.511296px;}
.xbd_c00316{left:238.683888px;}
.x84_c00316{left:244.082124px;}
.x71_c00316{left:247.325772px;}
.x3c_c00316{left:248.822796px;}
.x79_c00316{left:250.563576px;}
.xb7_c00316{left:251.916276px;}
.x93_c00316{left:255.154248px;}
.x29_c00316{left:257.999136px;}
.x96_c00316{left:260.016468px;}
.x9_c00316{left:261.508500px;}
.x8a_c00316{left:264.332700px;}
.x1d_c00316{left:265.752504px;}
.xbe_c00316{left:267.034200px;}
.x2a_c00316{left:272.817516px;}
.x85_c00316{left:274.322556px;}
.x13_c00316{left:280.632624px;}
.x65_c00316{left:281.882940px;}
.x60_c00316{left:284.855796px;}
.xa9_c00316{left:285.940224px;}
.x5a_c00316{left:287.147148px;}
.x48_c00316{left:290.393436px;}
.x2_c00316{left:292.410000px;}
.xbf_c00316{left:294.034428px;}
.x7f_c00316{left:295.653396px;}
.x32_c00316{left:297.706356px;}
.xc2_c00316{left:299.434992px;}
.x3d_c00316{left:300.931548px;}
.x4f_c00316{left:302.267652px;}
.x6b_c00316{left:306.455772px;}
.xaa_c00316{left:308.081640px;}
.x1e_c00316{left:309.764004px;}
.x33_c00316{left:313.892472px;}
.x9e_c00316{left:315.098928px;}
.x3e_c00316{left:316.540176px;}
.xa_c00316{left:321.154500px;}
.x80_c00316{left:323.193660px;}
.x97_c00316{left:327.789300px;}
.xb8_c00316{left:330.758316px;}
.x1f_c00316{left:331.941504px;}
.x72_c00316{left:336.158460px;}
.xc5_c00316{left:337.500000px;}
.x49_c00316{left:339.805248px;}
.x66_c00316{left:341.285244px;}
.xa4_c00316{left:343.720656px;}
.x34_c00316{left:353.050536px;}
.x73_c00316{left:354.249612px;}
.x6c_c00316{left:356.947500px;}
.x8b_c00316{left:358.565724px;}
.x2b_c00316{left:360.301320px;}
.x67_c00316{left:362.616612px;}
.xb1_c00316{left:364.569036px;}
.x3_c00316{left:368.010000px;}
.xb9_c00316{left:372.609492px;}
.x7a_c00316{left:374.767020px;}
.x50_c00316{left:380.009028px;}
.x3f_c00316{left:381.616116px;}
.x8c_c00316{left:382.865784px;}
.x14_c00316{left:384.875952px;}
.xb_c00316{left:386.490000px;}
.x86_c00316{left:389.346912px;}
.x57_c00316{left:392.061504px;}
.x74_c00316{left:393.400620px;}
.x2c_c00316{left:398.378520px;}
.x20_c00316{left:400.217004px;}
.x35_c00316{left:405.930264px;}
.x68_c00316{left:408.788064px;}
.x15_c00316{left:414.285192px;}
.x51_c00316{left:415.882740px;}
.x75_c00316{left:419.050764px;}
.xa5_c00316{left:420.942600px;}
.x98_c00316{left:424.182468px;}
.x58_c00316{left:425.391240px;}
.xc_c00316{left:426.709500px;}
.xba_c00316{left:428.231556px;}
.x81_c00316{left:429.577464px;}
.x21_c00316{left:431.535504px;}
.xc0_c00316{left:433.088832px;}
.xb2_c00316{left:436.941612px;}
.x2d_c00316{left:438.293196px;}
.x7b_c00316{left:439.839684px;}
.x5b_c00316{left:440.855688px;}
.x52_c00316{left:443.463024px;}
.x36_c00316{left:445.121328px;}
.x8d_c00316{left:446.318340px;}
.xae_c00316{left:447.764904px;}
.x87_c00316{left:449.829288px;}
.x9c_c00316{left:451.272120px;}
.x9f_c00316{left:454.693356px;}
.x16_c00316{left:456.404028px;}
.xab_c00316{left:457.665216px;}
.x69_c00316{left:460.359864px;}
.x59_c00316{left:461.807952px;}
.xa6_c00316{left:463.873848px;}
.x2e_c00316{left:465.070980px;}
.x22_c00316{left:467.483004px;}
.x99_c00316{left:469.813884px;}
.x8e_c00316{left:473.048556px;}
.x17_c00316{left:474.773172px;}
.x5c_c00316{left:477.587100px;}
.xa0_c00316{left:480.073476px;}
.x88_c00316{left:482.229864px;}
.x40_c00316{left:483.246180px;}
.x94_c00316{left:484.392912px;}
.xa7_c00316{left:485.745252px;}
.x61_c00316{left:487.091244px;}
.xd_c00316{left:489.352500px;}
.x76_c00316{left:491.682420px;}
.x23_c00316{left:493.680504px;}
.xbb_c00316{left:500.593188px;}
.x62_c00316{left:502.482228px;}
.x37_c00316{left:505.592376px;}
.x53_c00316{left:507.152520px;}
.xe_c00316{left:508.795500px;}
.xac_c00316{left:511.397160px;}
.x6d_c00316{left:513.823044px;}
.x18_c00316{left:516.344508px;}
.x7c_c00316{left:518.411712px;}
.x4a_c00316{left:520.186416px;}
.x24_c00316{left:527.118504px;}
.xb3_c00316{left:528.782844px;}
.x63_c00316{left:530.292504px;}
.xa1_c00316{left:532.725336px;}
.xbc_c00316{left:534.613860px;}
.x19_c00316{left:537.136176px;}
.x38_c00316{left:540.418536px;}
.xaf_c00316{left:542.277660px;}
.x7d_c00316{left:545.141928px;}
.x41_c00316{left:547.981632px;}
.x4b_c00316{left:550.145196px;}
.xf_c00316{left:553.348500px;}
.x39_c00316{left:556.376652px;}
.x5d_c00316{left:559.212792px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
.fsb_c00316{font-size:39.200000pt;}
.fs7_c00316{font-size:53.201702pt;}
.fs8_c00316{font-size:56.001792pt;}
.fs3_c00316{font-size:58.801882pt;}
.fs5_c00316{font-size:59.735245pt;}
.fs9_c00316{font-size:60.668608pt;}
.fs4_c00316{font-size:61.601971pt;}
.fs1_c00316{font-size:62.535334pt;}
.fs6_c00316{font-size:63.468698pt;}
.fs2_c00316{font-size:64.402061pt;}
.fsa_c00316{font-size:77.466667pt;}
.fs0_c00316{font-size:119.466667pt;}
.y0_c00316{bottom:0.000000pt;}
.y14b_c00316{bottom:75.958667pt;}
.y146_c00316{bottom:114.221109pt;}
.y14a_c00316{bottom:114.221120pt;}
.y148_c00316{bottom:114.221141pt;}
.y147_c00316{bottom:114.221419pt;}
.y149_c00316{bottom:114.221771pt;}
.y13c_c00316{bottom:135.392715pt;}
.y13d_c00316{bottom:135.393344pt;}
.y13e_c00316{bottom:135.393760pt;}
.y13f_c00316{bottom:135.393867pt;}
.y141_c00316{bottom:135.393899pt;}
.y145_c00316{bottom:135.394005pt;}
.y140_c00316{bottom:135.394069pt;}
.y142_c00316{bottom:135.394475pt;}
.y144_c00316{bottom:135.394549pt;}
.y143_c00316{bottom:135.394731pt;}
.y13a_c00316{bottom:155.418496pt;}
.y13b_c00316{bottom:155.418752pt;}
.y138_c00316{bottom:155.418784pt;}
.y139_c00316{bottom:155.418880pt;}
.y132_c00316{bottom:155.418997pt;}
.y131_c00316{bottom:155.419115pt;}
.y137_c00316{bottom:155.419168pt;}
.y136_c00316{bottom:155.419179pt;}
.y133_c00316{bottom:155.419200pt;}
.y130_c00316{bottom:155.419339pt;}
.y135_c00316{bottom:155.419445pt;}
.y134_c00316{bottom:155.419456pt;}
.y12d_c00316{bottom:175.749152pt;}
.y128_c00316{bottom:175.749259pt;}
.y12e_c00316{bottom:175.749515pt;}
.y129_c00316{bottom:175.749568pt;}
.y12c_c00316{bottom:175.749643pt;}
.y127_c00316{bottom:175.749696pt;}
.y126_c00316{bottom:175.749760pt;}
.y12a_c00316{bottom:175.749877pt;}
.y12f_c00316{bottom:175.750091pt;}
.y12b_c00316{bottom:175.750133pt;}
.y125_c00316{bottom:175.750144pt;}
.y124_c00316{bottom:175.750688pt;}
.y123_c00316{bottom:175.750912pt;}
.y116_c00316{bottom:194.379573pt;}
.y117_c00316{bottom:194.770880pt;}
.y118_c00316{bottom:194.866933pt;}
.y119_c00316{bottom:195.117003pt;}
.y11a_c00316{bottom:195.414123pt;}
.y11b_c00316{bottom:195.719595pt;}
.y11c_c00316{bottom:195.949365pt;}
.y11d_c00316{bottom:196.078261pt;}
.y11e_c00316{bottom:196.238251pt;}
.y11f_c00316{bottom:196.528907pt;}
.y120_c00316{bottom:196.793141pt;}
.y121_c00316{bottom:196.932587pt;}
.y122_c00316{bottom:197.100661pt;}
.y10c_c00316{bottom:214.301429pt;}
.y10d_c00316{bottom:214.559819pt;}
.y10e_c00316{bottom:214.900213pt;}
.y10f_c00316{bottom:215.103264pt;}
.y110_c00316{bottom:215.640341pt;}
.y111_c00316{bottom:216.226432pt;}
.y112_c00316{bottom:216.519147pt;}
.y113_c00316{bottom:216.752704pt;}
.y114_c00316{bottom:216.959296pt;}
.y115_c00316{bottom:217.107232pt;}
.y10a_c00316{bottom:236.055531pt;}
.y102_c00316{bottom:236.055755pt;}
.y10b_c00316{bottom:236.055840pt;}
.y101_c00316{bottom:236.056021pt;}
.y108_c00316{bottom:236.056032pt;}
.y107_c00316{bottom:236.056096pt;}
.y109_c00316{bottom:236.056128pt;}
.y100_c00316{bottom:236.056192pt;}
.y106_c00316{bottom:236.056213pt;}
.yff_c00316{bottom:236.056352pt;}
.y103_c00316{bottom:236.056384pt;}
.y104_c00316{bottom:236.056491pt;}
.y105_c00316{bottom:236.056587pt;}
.yfe_c00316{bottom:236.056629pt;}
.yfd_c00316{bottom:236.057173pt;}
.yfa_c00316{bottom:255.919733pt;}
.yf2_c00316{bottom:255.919744pt;}
.yef_c00316{bottom:255.919765pt;}
.yf3_c00316{bottom:255.919851pt;}
.yfb_c00316{bottom:255.920043pt;}
.yf4_c00316{bottom:255.920053pt;}
.yf5_c00316{bottom:255.920149pt;}
.yf0_c00316{bottom:255.920181pt;}
.yf9_c00316{bottom:255.920213pt;}
.yf8_c00316{bottom:255.920277pt;}
.yfc_c00316{bottom:255.920309pt;}
.yf1_c00316{bottom:255.920384pt;}
.yf7_c00316{bottom:255.920501pt;}
.yf6_c00316{bottom:255.920512pt;}
.ye5_c00316{bottom:276.076224pt;}
.ye4_c00316{bottom:276.076501pt;}
.ye6_c00316{bottom:276.076693pt;}
.ye1_c00316{bottom:276.076725pt;}
.ye7_c00316{bottom:276.076949pt;}
.ye0_c00316{bottom:276.077056pt;}
.ye3_c00316{bottom:276.077141pt;}
.ye2_c00316{bottom:276.077152pt;}
.ye8_c00316{bottom:276.077323pt;}
.yeb_c00316{bottom:276.077557pt;}
.yea_c00316{bottom:276.077781pt;}
.ye9_c00316{bottom:276.077792pt;}
.yec_c00316{bottom:276.078027pt;}
.yed_c00316{bottom:276.078667pt;}
.yee_c00316{bottom:276.079083pt;}
.yd6_c00316{bottom:294.924459pt;}
.yd7_c00316{bottom:295.418261pt;}
.yd8_c00316{bottom:295.618517pt;}
.yd9_c00316{bottom:295.817099pt;}
.yda_c00316{bottom:296.040523pt;}
.ydb_c00316{bottom:296.507872pt;}
.ydc_c00316{bottom:297.191915pt;}
.ydd_c00316{bottom:297.353568pt;}
.yde_c00316{bottom:297.623829pt;}
.ydf_c00316{bottom:297.825077pt;}
.ycd_c00316{bottom:316.627381pt;}
.yce_c00316{bottom:316.627851pt;}
.yd1_c00316{bottom:316.627872pt;}
.ycf_c00316{bottom:316.627893pt;}
.yd0_c00316{bottom:316.628309pt;}
.yd2_c00316{bottom:316.628448pt;}
.yd3_c00316{bottom:316.628533pt;}
.yd4_c00316{bottom:316.629003pt;}
.yd5_c00316{bottom:316.629045pt;}
.yc5_c00316{bottom:337.006923pt;}
.yc4_c00316{bottom:337.007253pt;}
.yc6_c00316{bottom:337.007349pt;}
.yc3_c00316{bottom:337.007744pt;}
.yc7_c00316{bottom:337.007936pt;}
.yc8_c00316{bottom:337.008512pt;}
.ycb_c00316{bottom:337.008640pt;}
.ycc_c00316{bottom:337.008747pt;}
.yc9_c00316{bottom:337.008875pt;}
.yca_c00316{bottom:337.008917pt;}
.ybb_c00316{bottom:356.746016pt;}
.ybd_c00316{bottom:356.746464pt;}
.ybc_c00316{bottom:356.746539pt;}
.yc2_c00316{bottom:356.746571pt;}
.yc0_c00316{bottom:356.746645pt;}
.yba_c00316{bottom:356.746667pt;}
.ybe_c00316{bottom:356.746773pt;}
.yc1_c00316{bottom:356.747168pt;}
.ybf_c00316{bottom:356.747189pt;}
.yb0_c00316{bottom:376.666603pt;}
.yb1_c00316{bottom:376.666965pt;}
.yb2_c00316{bottom:376.667541pt;}
.yb9_c00316{bottom:376.667680pt;}
.yb3_c00316{bottom:376.667744pt;}
.yb8_c00316{bottom:376.667797pt;}
.yb7_c00316{bottom:376.668075pt;}
.yb4_c00316{bottom:376.668107pt;}
.yb6_c00316{bottom:376.668672pt;}
.yb5_c00316{bottom:376.668736pt;}
.yae_c00316{bottom:396.560885pt;}
.yad_c00316{bottom:396.561056pt;}
.yab_c00316{bottom:396.561344pt;}
.ya9_c00316{bottom:396.561376pt;}
.yac_c00316{bottom:396.561653pt;}
.yaf_c00316{bottom:396.561856pt;}
.yaa_c00316{bottom:396.561899pt;}
.ya1_c00316{bottom:416.721280pt;}
.ya2_c00316{bottom:416.721323pt;}
.ya0_c00316{bottom:416.721344pt;}
.ya8_c00316{bottom:416.721707pt;}
.ya3_c00316{bottom:416.721728pt;}
.ya6_c00316{bottom:416.722101pt;}
.ya4_c00316{bottom:416.722229pt;}
.ya5_c00316{bottom:416.722272pt;}
.ya7_c00316{bottom:416.722304pt;}
.y9f_c00316{bottom:437.120896pt;}
.y9e_c00316{bottom:437.121547pt;}
.y9d_c00316{bottom:437.121771pt;}
.y99_c00316{bottom:437.122336pt;}
.y9c_c00316{bottom:437.122421pt;}
.y97_c00316{bottom:437.122517pt;}
.y98_c00316{bottom:437.122677pt;}
.y9b_c00316{bottom:437.122699pt;}
.y96_c00316{bottom:437.122891pt;}
.y9a_c00316{bottom:437.122976pt;}
.y95_c00316{bottom:437.123168pt;}
.y93_c00316{bottom:437.123243pt;}
.y94_c00316{bottom:437.123712pt;}
.y8c_c00316{bottom:457.043989pt;}
.y8b_c00316{bottom:457.044107pt;}
.y91_c00316{bottom:457.044160pt;}
.y92_c00316{bottom:457.044256pt;}
.y8d_c00316{bottom:457.044405pt;}
.y90_c00316{bottom:457.044480pt;}
.y8a_c00316{bottom:457.044661pt;}
.y8e_c00316{bottom:457.044768pt;}
.y8f_c00316{bottom:457.044811pt;}
.y89_c00316{bottom:477.684971pt;}
.y84_c00316{bottom:477.685067pt;}
.y85_c00316{bottom:477.685163pt;}
.y86_c00316{bottom:477.685376pt;}
.y83_c00316{bottom:477.685387pt;}
.y88_c00316{bottom:477.685408pt;}
.y87_c00316{bottom:477.685419pt;}
.y82_c00316{bottom:477.685664pt;}
.y81_c00316{bottom:477.686165pt;}
.y80_c00316{bottom:477.686731pt;}
.y7d_c00316{bottom:498.056800pt;}
.y7e_c00316{bottom:498.056907pt;}
.y77_c00316{bottom:498.057035pt;}
.y75_c00316{bottom:498.057216pt;}
.y7b_c00316{bottom:498.057259pt;}
.y7f_c00316{bottom:498.057323pt;}
.y7c_c00316{bottom:498.057397pt;}
.y79_c00316{bottom:498.057440pt;}
.y76_c00316{bottom:498.057472pt;}
.y78_c00316{bottom:498.057611pt;}
.y7a_c00316{bottom:498.057643pt;}
.y6c_c00316{bottom:516.710571pt;}
.y6d_c00316{bottom:516.977056pt;}
.y6e_c00316{bottom:517.548693pt;}
.y6f_c00316{bottom:518.480373pt;}
.y70_c00316{bottom:518.791285pt;}
.y71_c00316{bottom:519.460267pt;}
.y72_c00316{bottom:519.846763pt;}
.y73_c00316{bottom:520.173301pt;}
.y74_c00316{bottom:520.899093pt;}
.y63_c00316{bottom:536.393952pt;}
.y64_c00316{bottom:536.659413pt;}
.y65_c00316{bottom:537.201312pt;}
.y66_c00316{bottom:537.337163pt;}
.y67_c00316{bottom:538.198155pt;}
.y68_c00316{bottom:538.910357pt;}
.y69_c00316{bottom:539.176704pt;}
.y6a_c00316{bottom:539.467669pt;}
.y6b_c00316{bottom:540.096821pt;}
.y58_c00316{bottom:556.314485pt;}
.y59_c00316{bottom:556.778752pt;}
.y5a_c00316{bottom:556.982187pt;}
.y5b_c00316{bottom:557.748853pt;}
.y14c_c00316{bottom:558.000000pt;}
.y5c_c00316{bottom:558.034421pt;}
.y5d_c00316{bottom:558.656587pt;}
.y5e_c00316{bottom:558.943691pt;}
.y5f_c00316{bottom:559.163819pt;}
.y60_c00316{bottom:559.333259pt;}
.y61_c00316{bottom:559.361803pt;}
.y62_c00316{bottom:559.672725pt;}
.y4d_c00316{bottom:575.987744pt;}
.y4e_c00316{bottom:576.193195pt;}
.y4f_c00316{bottom:576.409376pt;}
.y50_c00316{bottom:576.745205pt;}
.y51_c00316{bottom:577.156725pt;}
.y52_c00316{bottom:577.808587pt;}
.y53_c00316{bottom:578.291968pt;}
.y54_c00316{bottom:578.561216pt;}
.y55_c00316{bottom:579.318912pt;}
.y56_c00316{bottom:580.056043pt;}
.y57_c00316{bottom:580.349088pt;}
.y4a_c00316{bottom:597.235776pt;}
.y4b_c00316{bottom:597.236021pt;}
.y4c_c00316{bottom:597.236384pt;}
.y3d_c00316{bottom:616.559520pt;}
.y3e_c00316{bottom:616.857781pt;}
.y3f_c00316{bottom:617.216299pt;}
.y40_c00316{bottom:617.427264pt;}
.y41_c00316{bottom:617.617515pt;}
.y42_c00316{bottom:618.142240pt;}
.y43_c00316{bottom:618.651467pt;}
.y44_c00316{bottom:618.803797pt;}
.y45_c00316{bottom:618.946496pt;}
.y46_c00316{bottom:619.439904pt;}
.y47_c00316{bottom:620.060789pt;}
.y48_c00316{bottom:620.433291pt;}
.y49_c00316{bottom:621.065643pt;}
.y31_c00316{bottom:636.587211pt;}
.y32_c00316{bottom:637.701184pt;}
.y33_c00316{bottom:637.875893pt;}
.y34_c00316{bottom:638.063083pt;}
.y35_c00316{bottom:638.651147pt;}
.y36_c00316{bottom:638.808917pt;}
.y37_c00316{bottom:639.191381pt;}
.y38_c00316{bottom:639.708757pt;}
.y39_c00316{bottom:640.091456pt;}
.y3a_c00316{bottom:640.682816pt;}
.y3b_c00316{bottom:641.023808pt;}
.y3c_c00316{bottom:641.179957pt;}
.y25_c00316{bottom:658.080576pt;}
.y26_c00316{bottom:658.384587pt;}
.y27_c00316{bottom:658.626133pt;}
.y28_c00316{bottom:658.888021pt;}
.y29_c00316{bottom:659.076427pt;}
.y2a_c00316{bottom:659.450133pt;}
.y2b_c00316{bottom:659.568843pt;}
.y2c_c00316{bottom:659.861696pt;}
.y2d_c00316{bottom:660.268288pt;}
.y2e_c00316{bottom:660.572395pt;}
.y2f_c00316{bottom:660.892235pt;}
.y30_c00316{bottom:661.106656pt;}
.y19_c00316{bottom:678.240843pt;}
.y1a_c00316{bottom:678.405707pt;}
.y1b_c00316{bottom:678.718869pt;}
.y1c_c00316{bottom:678.979979pt;}
.y1d_c00316{bottom:679.521216pt;}
.y1e_c00316{bottom:679.834187pt;}
.y1f_c00316{bottom:679.991893pt;}
.y20_c00316{bottom:680.477408pt;}
.y21_c00316{bottom:680.700117pt;}
.y22_c00316{bottom:680.955744pt;}
.y23_c00316{bottom:681.142037pt;}
.y24_c00316{bottom:681.379819pt;}
.ye_c00316{bottom:698.400405pt;}
.yf_c00316{bottom:698.535627pt;}
.y10_c00316{bottom:698.955712pt;}
.y11_c00316{bottom:699.313675pt;}
.y12_c00316{bottom:699.614976pt;}
.y13_c00316{bottom:700.264256pt;}
.y14_c00316{bottom:700.446720pt;}
.y15_c00316{bottom:700.708896pt;}
.y16_c00316{bottom:700.823520pt;}
.y17_c00316{bottom:701.081803pt;}
.y18_c00316{bottom:701.210987pt;}
.y2_c00316{bottom:718.801333pt;}
.y3_c00316{bottom:718.941472pt;}
.y4_c00316{bottom:719.195147pt;}
.y5_c00316{bottom:719.575061pt;}
.y6_c00316{bottom:719.765184pt;}
.y7_c00316{bottom:720.049632pt;}
.y8_c00316{bottom:720.473781pt;}
.y9_c00316{bottom:720.938389pt;}
.ya_c00316{bottom:721.224395pt;}
.yb_c00316{bottom:721.669856pt;}
.yc_c00316{bottom:721.808117pt;}
.yd_c00316{bottom:722.124939pt;}
.y1_c00316{bottom:759.889333pt;}
.hd_c00316{height:39.200000pt;}
.h9_c00316{height:53.201702pt;}
.ha_c00316{height:56.001792pt;}
.h5_c00316{height:58.801882pt;}
.h7_c00316{height:59.735245pt;}
.hb_c00316{height:60.668608pt;}
.h6_c00316{height:61.601971pt;}
.h3_c00316{height:62.535334pt;}
.h8_c00316{height:63.468698pt;}
.h4_c00316{height:64.402061pt;}
.hc_c00316{height:77.466667pt;}
.h2_c00316{height:119.466667pt;}
.h1_c00316{height:893.333333pt;}
.h0_c00316{height:893.466667pt;}
.w0_c00316{width:624.480000pt;}
.w1_c00316{width:624.666667pt;}
.x0_c00316{left:0.000000pt;}
.x54_c00316{left:68.784011pt;}
.x95_c00316{left:72.720949pt;}
.x42_c00316{left:75.359061pt;}
.x4_c00316{left:76.414667pt;}
.x4c_c00316{left:77.691893pt;}
.x8f_c00316{left:79.437013pt;}
.xad_c00316{left:80.962699pt;}
.x44_c00316{left:92.526133pt;}
.x5_c00316{left:93.932000pt;}
.x10_c00316{left:95.364661pt;}
.x1a_c00316{left:96.785781pt;}
.x55_c00316{left:98.299776pt;}
.x6e_c00316{left:100.800171pt;}
.xc4_c00316{left:102.720000pt;}
.x3a_c00316{left:104.287947pt;}
.xa8_c00316{left:107.523701pt;}
.xc1_c00316{left:109.918443pt;}
.x25_c00316{left:110.973515pt;}
.xb4_c00316{left:113.763851pt;}
.x5e_c00316{left:115.200320pt;}
.x77_c00316{left:116.160363pt;}
.x82_c00316{left:117.358187pt;}
.x7e_c00316{left:122.399360pt;}
.xc3_c00316{left:123.598016pt;}
.x6_c00316{left:125.641333pt;}
.x4d_c00316{left:129.224811pt;}
.x45_c00316{left:130.895883pt;}
.x1b_c00316{left:135.931115pt;}
.x3b_c00316{left:136.935168pt;}
.x26_c00316{left:137.833301pt;}
.x90_c00316{left:140.879616pt;}
.x89_c00316{left:142.799168pt;}
.x6f_c00316{left:146.401760pt;}
.x43_c00316{left:148.561077pt;}
.x78_c00316{left:150.001195pt;}
.x4e_c00316{left:151.820629pt;}
.x11_c00316{left:155.375808pt;}
.x5f_c00316{left:156.481632pt;}
.x56_c00316{left:158.536629pt;}
.x83_c00316{left:159.599552pt;}
.x46_c00316{left:161.373813pt;}
.x27_c00316{left:166.902400pt;}
.x1c_c00316{left:168.569781pt;}
.xa2_c00316{left:169.924800pt;}
.x6a_c00316{left:171.361333pt;}
.x7_c00316{left:173.130667pt;}
.xb5_c00316{left:174.485077pt;}
.x9a_c00316{left:176.454315pt;}
.x2f_c00316{left:178.217941pt;}
.x1_c00316{left:181.920000pt;}
.x64_c00316{left:183.120960pt;}
.xb0_c00316{left:186.569589pt;}
.x28_c00316{left:187.786229pt;}
.xa3_c00316{left:189.606059pt;}
.x9d_c00316{left:191.526272pt;}
.x30_c00316{left:194.056224pt;}
.x91_c00316{left:195.841803pt;}
.x8_c00316{left:196.896000pt;}
.x47_c00316{left:198.812917pt;}
.xb6_c00316{left:200.645419pt;}
.x70_c00316{left:202.324011pt;}
.x9b_c00316{left:204.777205pt;}
.x12_c00316{left:206.454880pt;}
.x92_c00316{left:208.562613pt;}
.x31_c00316{left:211.121152pt;}
.xbd_c00316{left:212.163456pt;}
.x84_c00316{left:216.961888pt;}
.x71_c00316{left:219.845131pt;}
.x3c_c00316{left:221.175819pt;}
.x79_c00316{left:222.723179pt;}
.xb7_c00316{left:223.925579pt;}
.x93_c00316{left:226.803776pt;}
.x29_c00316{left:229.332565pt;}
.x96_c00316{left:231.125749pt;}
.x9_c00316{left:232.452000pt;}
.x8a_c00316{left:234.962400pt;}
.x1d_c00316{left:236.224448pt;}
.xbe_c00316{left:237.363733pt;}
.x2a_c00316{left:242.504459pt;}
.x85_c00316{left:243.842272pt;}
.x13_c00316{left:249.451221pt;}
.x65_c00316{left:250.562613pt;}
.x60_c00316{left:253.205152pt;}
.xa9_c00316{left:254.169088pt;}
.x5a_c00316{left:255.241909pt;}
.x48_c00316{left:258.127499pt;}
.x2_c00316{left:259.920000pt;}
.xbf_c00316{left:261.363936pt;}
.x7f_c00316{left:262.803019pt;}
.x32_c00316{left:264.627872pt;}
.xc2_c00316{left:266.164437pt;}
.x3d_c00316{left:267.494709pt;}
.x4f_c00316{left:268.682357pt;}
.x6b_c00316{left:272.405131pt;}
.xaa_c00316{left:273.850347pt;}
.x1e_c00316{left:275.345781pt;}
.x33_c00316{left:279.015531pt;}
.x9e_c00316{left:280.087936pt;}
.x3e_c00316{left:281.369045pt;}
.xa_c00316{left:285.470667pt;}
.x80_c00316{left:287.283253pt;}
.x97_c00316{left:291.368267pt;}
.xb8_c00316{left:294.007392pt;}
.x1f_c00316{left:295.059115pt;}
.x72_c00316{left:298.807520pt;}
.xc5_c00316{left:300.000000pt;}
.x49_c00316{left:302.049109pt;}
.x66_c00316{left:303.364661pt;}
.xa4_c00316{left:305.529472pt;}
.x34_c00316{left:313.822699pt;}
.x73_c00316{left:314.888544pt;}
.x6c_c00316{left:317.286667pt;}
.x8b_c00316{left:318.725088pt;}
.x2b_c00316{left:320.267840pt;}
.x67_c00316{left:322.325877pt;}
.xb1_c00316{left:324.061365pt;}
.x3_c00316{left:327.120000pt;}
.xb9_c00316{left:331.208437pt;}
.x7a_c00316{left:333.126240pt;}
.x50_c00316{left:337.785803pt;}
.x3f_c00316{left:339.214325pt;}
.x8c_c00316{left:340.325141pt;}
.x14_c00316{left:342.111957pt;}
.xb_c00316{left:343.546667pt;}
.x86_c00316{left:346.086144pt;}
.x57_c00316{left:348.499115pt;}
.x74_c00316{left:349.689440pt;}
.x2c_c00316{left:354.114240pt;}
.x20_c00316{left:355.748448pt;}
.x35_c00316{left:360.826901pt;}
.x68_c00316{left:363.367168pt;}
.x15_c00316{left:368.253504pt;}
.x51_c00316{left:369.673547pt;}
.x75_c00316{left:372.489568pt;}
.xa5_c00316{left:374.171200pt;}
.x98_c00316{left:377.051083pt;}
.x58_c00316{left:378.125547pt;}
.xc_c00316{left:379.297333pt;}
.xba_c00316{left:380.650272pt;}
.x81_c00316{left:381.846635pt;}
.x21_c00316{left:383.587115pt;}
.xc0_c00316{left:384.967851pt;}
.xb2_c00316{left:388.392544pt;}
.x2d_c00316{left:389.593952pt;}
.x7b_c00316{left:390.968608pt;}
.x5b_c00316{left:391.871723pt;}
.x52_c00316{left:394.189355pt;}
.x36_c00316{left:395.663403pt;}
.x8d_c00316{left:396.727413pt;}
.xae_c00316{left:398.013248pt;}
.x87_c00316{left:399.848256pt;}
.x9c_c00316{left:401.130773pt;}
.x9f_c00316{left:404.171872pt;}
.x16_c00316{left:405.692469pt;}
.xab_c00316{left:406.813525pt;}
.x69_c00316{left:409.208768pt;}
.x59_c00316{left:410.495957pt;}
.xa6_c00316{left:412.332309pt;}
.x2e_c00316{left:413.396427pt;}
.x22_c00316{left:415.540448pt;}
.x99_c00316{left:417.612341pt;}
.x8e_c00316{left:420.487605pt;}
.x17_c00316{left:422.020597pt;}
.x5c_c00316{left:424.521867pt;}
.xa0_c00316{left:426.731979pt;}
.x88_c00316{left:428.648768pt;}
.x40_c00316{left:429.552160pt;}
.x94_c00316{left:430.571477pt;}
.xa7_c00316{left:431.773557pt;}
.x61_c00316{left:432.969995pt;}
.xd_c00316{left:434.980000pt;}
.x76_c00316{left:437.051040pt;}
.x23_c00316{left:438.827115pt;}
.xbb_c00316{left:444.971723pt;}
.x62_c00316{left:446.650869pt;}
.x37_c00316{left:449.415445pt;}
.x53_c00316{left:450.802240pt;}
.xe_c00316{left:452.262667pt;}
.xac_c00316{left:454.575253pt;}
.x6d_c00316{left:456.731595pt;}
.x18_c00316{left:458.972896pt;}
.x7c_c00316{left:460.810411pt;}
.x4a_c00316{left:462.387925pt;}
.x24_c00316{left:468.549781pt;}
.xb3_c00316{left:470.029195pt;}
.x63_c00316{left:471.371115pt;}
.xa1_c00316{left:473.533632pt;}
.xbc_c00316{left:475.212320pt;}
.x19_c00316{left:477.454379pt;}
.x38_c00316{left:480.372032pt;}
.xaf_c00316{left:482.024587pt;}
.x7d_c00316{left:484.570603pt;}
.x41_c00316{left:487.094784pt;}
.x4b_c00316{left:489.017952pt;}
.xf_c00316{left:491.865333pt;}
.x39_c00316{left:494.557024pt;}
.x5d_c00316{left:497.078037pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m128_c00317{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);}
.m58_c00317{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);}
.m3_c00317{transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);}
.md1_c00317{transform:matrix(0.107255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107255,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.108155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108155,0.000000,0.000000,0.250000,0,0);}
.m8f_c00317{transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);}
.m12c_c00317{transform:matrix(0.126680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126680,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{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);}
.m130_c00317{transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);}
.m59_c00317{transform:matrix(0.133485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133485,0.000000,0.000000,0.250000,0,0);}
.m6e_c00317{transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);}
.mbd_c00317{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);}
.m40_c00317{transform:matrix(0.142095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142095,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);}
.mc7_c00317{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.mc0_c00317{transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145020,0.000000,0.000000,0.250000,0,0);}
.m66_c00317{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.mbf_c00317{transform:matrix(0.145830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{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);}
.m39_c00317{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);}
.m61_c00317{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.me1_c00317{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.mf2_c00317{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);}
.mc4_c00317{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mc5_c00317{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m55_c00317{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);}
.m1a_c00317{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);}
.m32_c00317{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{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);}
.m129_c00317{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);}
.m20_c00317{transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156145,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{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);}
.m69_c00317{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);}
.m7c_c00317{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);}
.m9f_c00317{transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);}
.m54_c00317{transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{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);}
.m30_c00317{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.me9_c00317{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);}
.me_c00317{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);}
.m84_c00317{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);}
.m103_c00317{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);}
.m99_c00317{transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);}
.me8_c00317{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);}
.mb_c00317{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);}
.m96_c00317{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);}
.m53_c00317{transform:matrix(0.163360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163360,0.000000,0.000000,0.250000,0,0);}
.m90_c00317{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);}
.m63_c00317{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);}
.mf1_c00317{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);}
.m29_c00317{transform:matrix(0.164540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164540,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{transform:matrix(0.164995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164995,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{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);}
.m2a_c00317{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);}
.m9a_c00317{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);}
.md7_c00317{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);}
.m52_c00317{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);}
.m51_c00317{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);}
.m85_c00317{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);}
.maa_c00317{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);}
.m6f_c00317{transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167980,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{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);}
.m101_c00317{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);}
.mdc_c00317{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);}
.m27_c00317{transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168515,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{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);}
.m8d_c00317{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_c00317{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);}
.me5_c00317{transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);}
.m13d_c00317{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);}
.m1f_c00317{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);}
.m133_c00317{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_c00317{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);}
.mc6_c00317{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);}
.md8_c00317{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);}
.mbb_c00317{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);}
.mdf_c00317{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);}
.m138_c00317{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);}
.m6c_c00317{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);}
.m159_c00317{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);}
.mcf_c00317{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);}
.m8e_c00317{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);}
.m80_c00317{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);}
.mcd_c00317{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);}
.m6d_c00317{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);}
.m75_c00317{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);}
.m82_c00317{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);}
.m9d_c00317{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_c00317{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);}
.m41_c00317{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);}
.mf4_c00317{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);}
.m5c_c00317{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);}
.m49_c00317{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);}
.m108_c00317{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);}
.m7f_c00317{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);}
.m64_c00317{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);}
.m4d_c00317{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);}
.mdb_c00317{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);}
.m23_c00317{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.m14b_c00317{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);}
.ma6_c00317{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);}
.m109_c00317{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);}
.m8b_c00317{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);}
.m77_c00317{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);}
.m33_c00317{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);}
.me6_c00317{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);}
.m7e_c00317{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);}
.m60_c00317{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);}
.m3f_c00317{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);}
.me0_c00317{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);}
.m70_c00317{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);}
.mca_c00317{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);}
.mf6_c00317{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);}
.med_c00317{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);}
.mcb_c00317{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);}
.m35_c00317{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);}
.mcc_c00317{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);}
.mf8_c00317{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);}
.m5a_c00317{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{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);}
.m7d_c00317{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);}
.m48_c00317{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);}
.m56_c00317{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);}
.mf7_c00317{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);}
.mea_c00317{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);}
.me4_c00317{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);}
.m5b_c00317{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);}
.mc1_c00317{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);}
.m152_c00317{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);}
.md6_c00317{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);}
.mbe_c00317{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);}
.md4_c00317{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);}
.m8a_c00317{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);}
.mde_c00317{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);}
.m7a_c00317{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);}
.m98_c00317{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);}
.m102_c00317{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.m132_c00317{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);}
.m9e_c00317{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);}
.m43_c00317{transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{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);}
.mb2_c00317{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);}
.m122_c00317{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);}
.m73_c00317{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);}
.m50_c00317{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);}
.md0_c00317{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);}
.m62_c00317{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);}
.m151_c00317{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);}
.ma5_c00317{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);}
.m22_c00317{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);}
.m57_c00317{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);}
.m94_c00317{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);}
.mc2_c00317{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);}
.m5e_c00317{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);}
.me2_c00317{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);}
.md2_c00317{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);}
.m144_c00317{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);}
.m4a_c00317{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);}
.m72_c00317{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);}
.mc9_c00317{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);}
.m67_c00317{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);}
.m4c_c00317{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);}
.m127_c00317{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);}
.mfb_c00317{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);}
.mf9_c00317{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);}
.m8_c00317{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);}
.md5_c00317{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);}
.mae_c00317{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);}
.ma2_c00317{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);}
.m141_c00317{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);}
.mb0_c00317{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_c00317{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);}
.m115_c00317{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);}
.m1b_c00317{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);}
.m11b_c00317{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);}
.maf_c00317{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);}
.mec_c00317{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);}
.m15a_c00317{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);}
.m1e_c00317{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);}
.m14a_c00317{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);}
.m104_c00317{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);}
.m16_c00317{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);}
.m131_c00317{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);}
.mbc_c00317{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);}
.m7b_c00317{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);}
.mb1_c00317{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);}
.m5f_c00317{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);}
.m47_c00317{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);}
.m86_c00317{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);}
.m6b_c00317{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);}
.m78_c00317{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);}
.m150_c00317{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{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);}
.ma1_c00317{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);}
.m97_c00317{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);}
.m4e_c00317{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);}
.mfa_c00317{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);}
.mfc_c00317{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);}
.m10e_c00317{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);}
.m87_c00317{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);}
.mef_c00317{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_c00317{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);}
.m6_c00317{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);}
.m74_c00317{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);}
.m107_c00317{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);}
.m15_c00317{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);}
.mad_c00317{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);}
.m95_c00317{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);}
.ma_c00317{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);}
.m88_c00317{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);}
.mda_c00317{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);}
.md_c00317{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);}
.mac_c00317{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);}
.m10_c00317{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);}
.m5_c00317{transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202685,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{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);}
.m14d_c00317{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);}
.m65_c00317{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);}
.m93_c00317{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);}
.mf0_c00317{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);}
.m76_c00317{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);}
.m1c_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);}
.m114_c00317{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);}
.m28_c00317{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);}
.m142_c00317{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);}
.mdd_c00317{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);}
.m38_c00317{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);}
.m12b_c00317{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);}
.m17_c00317{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);}
.m124_c00317{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);}
.m79_c00317{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);}
.m147_c00317{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);}
.m126_c00317{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);}
.mee_c00317{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);}
.me7_c00317{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);}
.m111_c00317{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);}
.ma4_c00317{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);}
.m13_c00317{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);}
.mf3_c00317{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);}
.m1d_c00317{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);}
.m31_c00317{transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213145,0.000000,0.000000,0.250000,0,0);}
.md3_c00317{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);}
.mf5_c00317{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);}
.mc3_c00317{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);}
.m157_c00317{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.m137_c00317{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);}
.m100_c00317{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);}
.m9b_c00317{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);}
.m37_c00317{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);}
.m18_c00317{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);}
.m83_c00317{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);}
.m45_c00317{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);}
.mb3_c00317{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);}
.m14f_c00317{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);}
.m2f_c00317{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);}
.m121_c00317{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);}
.m13a_c00317{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);}
.m34_c00317{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);}
.m139_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);}
.m116_c00317{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);}
.m106_c00317{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);}
.m156_c00317{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);}
.m10d_c00317{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);}
.m118_c00317{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);}
.m10a_c00317{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);}
.m11f_c00317{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);}
.m8c_c00317{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);}
.md9_c00317{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);}
.m3c_c00317{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);}
.m13e_c00317{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);}
.mb9_c00317{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);}
.m117_c00317{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);}
.m0_c00317{transform:matrix(0.224563,-0.003144,0.003500,0.249976,0,0);-ms-transform:matrix(0.224563,-0.003144,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224563,-0.003144,0.003500,0.249976,0,0);}
.m3d_c00317{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);}
.m120_c00317{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);}
.m136_c00317{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);}
.m13f_c00317{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);}
.m113_c00317{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);}
.m105_c00317{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);}
.m89_c00317{transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);}
.m154_c00317{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);}
.m125_c00317{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);}
.mb5_c00317{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);}
.m146_c00317{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);}
.mce_c00317{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);}
.mc8_c00317{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);}
.m149_c00317{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m148_c00317{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);}
.m134_c00317{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);}
.mfe_c00317{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m11d_c00317{transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);}
.mb7_c00317{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);}
.m145_c00317{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);}
.m12f_c00317{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);}
.m158_c00317{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m112_c00317{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);}
.m13c_c00317{transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);}
.m135_c00317{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);}
.m9c_c00317{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);}
.m11c_c00317{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);}
.m2b_c00317{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);}
.m6a_c00317{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.me3_c00317{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);}
.ma7_c00317{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m13b_c00317{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);}
.m14c_c00317{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);}
.m14e_c00317{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);}
.mb4_c00317{transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);}
.m11e_c00317{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);}
.mb8_c00317{transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);}
.m4b_c00317{transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254535,0.000000,0.000000,0.250000,0,0);}
.m92_c00317{transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{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);}
.meb_c00317{transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);}
.m119_c00317{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262845,0.000000,0.000000,0.250000,0,0);}
.m10c_c00317{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{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);}
.m140_c00317{transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);}
.mba_c00317{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);}
.m11a_c00317{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);}
.m10f_c00317{transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);}
.m12e_c00317{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m36_c00317{transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285025,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{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);}
.mb6_c00317{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);}
.ma8_c00317{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m91_c00317{transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324460,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);}
.mff_c00317{transform:matrix(0.346360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346360,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.356730,-0.004994,0.003500,0.249976,0,0);-ms-transform:matrix(0.356730,-0.004994,0.003500,0.249976,0,0);-webkit-transform:matrix(0.356730,-0.004994,0.003500,0.249976,0,0);}
.m10b_c00317{transform:matrix(0.357095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357095,0.000000,0.000000,0.250000,0,0);}
.m153_c00317{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.m143_c00317{transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);}
.m155_c00317{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);}
.m110_c00317{transform:matrix(0.410450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410450,0.000000,0.000000,0.250000,0,0);}
.m12a_c00317{transform:matrix(0.461780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461780,0.000000,0.000000,0.250000,0,0);}
.m123_c00317{transform:matrix(0.561935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561935,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.565660,-0.007919,0.003500,0.249976,0,0);-ms-transform:matrix(0.565660,-0.007919,0.003500,0.249976,0,0);-webkit-transform:matrix(0.565660,-0.007919,0.003500,0.249976,0,0);}
.m4_c00317{transform:matrix(0.648400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648400,0.000000,0.000000,0.250000,0,0);}
.m12d_c00317{transform:matrix(0.691535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691535,0.000000,0.000000,0.250000,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;}
.fs1_c00317{font-size:22.050000px;}
.fsb_c00317{font-size:48.300000px;}
.fsa_c00317{font-size:50.400000px;}
.fsc_c00317{font-size:51.450000px;}
.fs4_c00317{font-size:60.900000px;}
.fs9_c00317{font-size:61.950000px;}
.fs2_c00317{font-size:65.100000px;}
.fs8_c00317{font-size:68.250000px;}
.fs7_c00317{font-size:69.300000px;}
.fs3_c00317{font-size:70.350000px;}
.fs5_c00317{font-size:71.400000px;}
.fs6_c00317{font-size:72.450000px;}
.fs0_c00317{font-size:88.208643px;}
.y0_c00317{bottom:0.000000px;}
.y37_c00317{bottom:154.609500px;}
.y36_c00317{bottom:172.446000px;}
.y35_c00317{bottom:189.426000px;}
.y34_c00317{bottom:246.069000px;}
.y33_c00317{bottom:269.020500px;}
.y32_c00317{bottom:291.429000px;}
.y31_c00317{bottom:314.347500px;}
.y30_c00317{bottom:337.771500px;}
.y2f_c00317{bottom:359.431500px;}
.y2e_c00317{bottom:382.113000px;}
.y2d_c00317{bottom:405.303000px;}
.y2c_c00317{bottom:427.804500px;}
.y2b_c00317{bottom:450.249000px;}
.y2a_c00317{bottom:473.142000px;}
.y29_c00317{bottom:495.516000px;}
.y28_c00317{bottom:518.641500px;}
.y27_c00317{bottom:540.759000px;}
.y26_c00317{bottom:563.970000px;}
.y25_c00317{bottom:587.224500px;}
.y24_c00317{bottom:610.146000px;}
.y23_c00317{bottom:632.851500px;}
.y22_c00317{bottom:655.267500px;}
.y21_c00317{bottom:677.913000px;}
.y20_c00317{bottom:700.803000px;}
.y1f_c00317{bottom:723.709500px;}
.y13_c00317{bottom:744.121500px;}
.y14_c00317{bottom:744.723000px;}
.y15_c00317{bottom:745.107000px;}
.y16_c00317{bottom:745.201500px;}
.y17_c00317{bottom:745.593000px;}
.y18_c00317{bottom:745.708500px;}
.y19_c00317{bottom:745.873500px;}
.y1a_c00317{bottom:746.286000px;}
.y1b_c00317{bottom:746.497500px;}
.y1c_c00317{bottom:746.752500px;}
.y1d_c00317{bottom:746.955000px;}
.y1e_c00317{bottom:747.049500px;}
.y7_c00317{bottom:767.070000px;}
.y8_c00317{bottom:767.505000px;}
.y9_c00317{bottom:768.064500px;}
.ya_c00317{bottom:768.267000px;}
.yb_c00317{bottom:768.427500px;}
.yc_c00317{bottom:768.646500px;}
.yd_c00317{bottom:768.868500px;}
.ye_c00317{bottom:769.320000px;}
.yf_c00317{bottom:769.558500px;}
.y10_c00317{bottom:769.773000px;}
.y11_c00317{bottom:769.884000px;}
.y12_c00317{bottom:770.002500px;}
.y6_c00317{bottom:791.214000px;}
.y5_c00317{bottom:813.852000px;}
.y4_c00317{bottom:841.180500px;}
.y1_c00317{bottom:856.443000px;}
.y2_c00317{bottom:857.951241px;}
.y3_c00317{bottom:859.286148px;}
.h3_c00317{height:22.050000px;}
.hd_c00317{height:48.300000px;}
.hc_c00317{height:50.400000px;}
.he_c00317{height:51.450000px;}
.h6_c00317{height:60.900000px;}
.hb_c00317{height:61.950000px;}
.h4_c00317{height:65.100000px;}
.ha_c00317{height:68.250000px;}
.h9_c00317{height:69.300000px;}
.h5_c00317{height:70.350000px;}
.h7_c00317{height:71.400000px;}
.h8_c00317{height:72.450000px;}
.h2_c00317{height:88.208643px;}
.h0_c00317{height:1008.450000px;}
.h1_c00317{height:1008.750000px;}
.w0_c00317{width:696.000000px;}
.x0_c00317{left:0.000000px;}
.x4a_c00317{left:130.140000px;}
.x6a_c00317{left:134.460000px;}
.x40_c00317{left:139.050000px;}
.x1_c00317{left:141.186000px;}
.x11_c00317{left:142.830000px;}
.x6_c00317{left:144.720000px;}
.xac_c00317{left:153.090000px;}
.x64_c00317{left:160.650000px;}
.x12_c00317{left:162.270000px;}
.x41_c00317{left:163.890000px;}
.x39_c00317{left:166.590000px;}
.xa1_c00317{left:167.670000px;}
.x9d_c00317{left:170.910000px;}
.xb9_c00317{left:171.990000px;}
.xad_c00317{left:173.070000px;}
.x7_c00317{left:174.690000px;}
.x42_c00317{left:178.470000px;}
.x74_c00317{left:183.060000px;}
.x31_c00317{left:184.950000px;}
.x99_c00317{left:188.190000px;}
.x4b_c00317{left:190.350000px;}
.x13_c00317{left:191.700000px;}
.x53_c00317{left:194.940000px;}
.x43_c00317{left:197.910000px;}
.x3a_c00317{left:200.610000px;}
.x93_c00317{left:201.690000px;}
.xa7_c00317{left:203.310000px;}
.x1d_c00317{left:205.866000px;}
.x58_c00317{left:208.170000px;}
.x6b_c00317{left:209.520000px;}
.x32_c00317{left:212.490000px;}
.x65_c00317{left:214.920000px;}
.x75_c00317{left:216.270000px;}
.xae_c00317{left:219.780000px;}
.x60_c00317{left:221.940000px;}
.x14_c00317{left:225.450000px;}
.x4c_c00317{left:227.880000px;}
.x28_c00317{left:229.059000px;}
.x6c_c00317{left:232.740000px;}
.xa5_c00317{left:234.090000px;}
.x82_c00317{left:237.600000px;}
.x3b_c00317{left:238.680000px;}
.x54_c00317{left:240.570000px;}
.x59_c00317{left:243.000000px;}
.x76_c00317{left:244.350000px;}
.x2_c00317{left:248.917500px;}
.x7e_c00317{left:253.800000px;}
.x4d_c00317{left:255.960000px;}
.x4e_c00317{left:258.390000px;}
.xa2_c00317{left:260.280000px;}
.xaf_c00317{left:261.900000px;}
.x55_c00317{left:263.790000px;}
.x83_c00317{left:268.380000px;}
.x15_c00317{left:269.730000px;}
.x77_c00317{left:271.890000px;}
.x8_c00317{left:275.130000px;}
.x33_c00317{left:277.560000px;}
.xa8_c00317{left:281.070000px;}
.x29_c00317{left:283.827000px;}
.x1e_c00317{left:285.756000px;}
.x9e_c00317{left:287.550000px;}
.x3c_c00317{left:289.170000px;}
.x9a_c00317{left:291.330000px;}
.x9_c00317{left:292.950000px;}
.xa3_c00317{left:295.920000px;}
.x2a_c00317{left:297.381000px;}
.x34_c00317{left:300.780000px;}
.x94_c00317{left:302.670000px;}
.x66_c00317{left:304.560000px;}
.xb0_c00317{left:307.260000px;}
.x6d_c00317{left:311.040000px;}
.x16_c00317{left:313.200000px;}
.x1f_c00317{left:314.613000px;}
.x78_c00317{left:315.900000px;}
.x61_c00317{left:318.600000px;}
.x5a_c00317{left:321.840000px;}
.x6e_c00317{left:324.270000px;}
.x4f_c00317{left:326.430000px;}
.xb4_c00317{left:329.130000px;}
.x97_c00317{left:330.210000px;}
.x20_c00317{left:337.597500px;}
.xb1_c00317{left:339.120000px;}
.xba_c00317{left:341.550000px;}
.x9b_c00317{left:342.630000px;}
.x3_c00317{left:344.268000px;}
.xa9_c00317{left:347.760000px;}
.x5b_c00317{left:348.840000px;}
.x35_c00317{left:350.730000px;}
.x2b_c00317{left:353.251500px;}
.x50_c00317{left:359.100000px;}
.x79_c00317{left:364.230000px;}
.x17_c00317{left:366.660000px;}
.x21_c00317{left:368.880000px;}
.x84_c00317{left:372.060000px;}
.x44_c00317{left:374.220000px;}
.xb5_c00317{left:375.840000px;}
.x6f_c00317{left:377.190000px;}
.x56_c00317{left:382.590000px;}
.xa_c00317{left:386.910000px;}
.x9f_c00317{left:389.880000px;}
.x90_c00317{left:392.040000px;}
.x2c_c00317{left:393.214500px;}
.x8a_c00317{left:396.360000px;}
.x22_c00317{left:400.510500px;}
.x7f_c00317{left:402.840000px;}
.x18_c00317{left:405.270000px;}
.xb6_c00317{left:407.430000px;}
.x7a_c00317{left:410.400000px;}
.x45_c00317{left:413.100000px;}
.x62_c00317{left:418.770000px;}
.x67_c00317{left:420.120000px;}
.x51_c00317{left:424.170000px;}
.x19_c00317{left:425.790000px;}
.x85_c00317{left:427.140000px;}
.x36_c00317{left:429.300000px;}
.xb_c00317{left:430.650000px;}
.x7b_c00317{left:433.080000px;}
.x86_c00317{left:435.240000px;}
.x80_c00317{left:437.670000px;}
.x8b_c00317{left:439.020000px;}
.x5c_c00317{left:441.180000px;}
.xb2_c00317{left:447.120000px;}
.x57_c00317{left:450.630000px;}
.xc_c00317{left:452.250000px;}
.xb7_c00317{left:457.380000px;}
.x37_c00317{left:459.270000px;}
.x70_c00317{left:461.430000px;}
.x87_c00317{left:463.050000px;}
.x23_c00317{left:465.037500px;}
.x3d_c00317{left:468.450000px;}
.x5d_c00317{left:473.310000px;}
.x46_c00317{left:474.660000px;}
.xd_c00317{left:479.250000px;}
.x98_c00317{left:480.330000px;}
.x2d_c00317{left:482.311500px;}
.xaa_c00317{left:484.920000px;}
.x3e_c00317{left:486.270000px;}
.x8c_c00317{left:488.970000px;}
.x7c_c00317{left:491.130000px;}
.x91_c00317{left:493.560000px;}
.x95_c00317{left:497.340000px;}
.x24_c00317{left:499.020000px;}
.x47_c00317{left:500.850000px;}
.x4_c00317{left:503.550000px;}
.x5e_c00317{left:505.710000px;}
.x3f_c00317{left:506.790000px;}
.x38_c00317{left:508.140000px;}
.x88_c00317{left:512.190000px;}
.x5_c00317{left:513.270000px;}
.x2e_c00317{left:518.784000px;}
.xe_c00317{left:521.640000px;}
.xa6_c00317{left:525.150000px;}
.x71_c00317{left:526.230000px;}
.x7d_c00317{left:527.850000px;}
.x25_c00317{left:529.588500px;}
.x63_c00317{left:531.090000px;}
.xab_c00317{left:533.520000px;}
.x68_c00317{left:535.140000px;}
.x1a_c00317{left:536.220000px;}
.x48_c00317{left:538.650000px;}
.x8d_c00317{left:540.000000px;}
.xb8_c00317{left:543.510000px;}
.x26_c00317{left:545.487000px;}
.x2f_c00317{left:547.614000px;}
.x9c_c00317{left:549.180000px;}
.x52_c00317{left:551.610000px;}
.x1b_c00317{left:555.660000px;}
.xa0_c00317{left:558.360000px;}
.x5f_c00317{left:559.440000px;}
.x30_c00317{left:561.148500px;}
.x27_c00317{left:562.501500px;}
.xa4_c00317{left:564.570000px;}
.x72_c00317{left:566.730000px;}
.x89_c00317{left:569.430000px;}
.x81_c00317{left:576.450000px;}
.x1c_c00317{left:579.150000px;}
.xb3_c00317{left:581.850000px;}
.xf_c00317{left:583.740000px;}
.x69_c00317{left:586.440000px;}
.x73_c00317{left:587.520000px;}
.x8e_c00317{left:589.680000px;}
.x49_c00317{left:592.650000px;}
.x96_c00317{left:596.970000px;}
.xbb_c00317{left:598.320000px;}
.x10_c00317{left:602.640000px;}
.x8f_c00317{left:609.930000px;}
.x92_c00317{left:613.710000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fs1_c00317{font-size:19.600000pt;}
.fsb_c00317{font-size:42.933333pt;}
.fsa_c00317{font-size:44.800000pt;}
.fsc_c00317{font-size:45.733333pt;}
.fs4_c00317{font-size:54.133333pt;}
.fs9_c00317{font-size:55.066667pt;}
.fs2_c00317{font-size:57.866667pt;}
.fs8_c00317{font-size:60.666667pt;}
.fs7_c00317{font-size:61.600000pt;}
.fs3_c00317{font-size:62.533333pt;}
.fs5_c00317{font-size:63.466667pt;}
.fs6_c00317{font-size:64.400000pt;}
.fs0_c00317{font-size:78.407683pt;}
.y0_c00317{bottom:0.000000pt;}
.y37_c00317{bottom:137.430667pt;}
.y36_c00317{bottom:153.285333pt;}
.y35_c00317{bottom:168.378667pt;}
.y34_c00317{bottom:218.728000pt;}
.y33_c00317{bottom:239.129333pt;}
.y32_c00317{bottom:259.048000pt;}
.y31_c00317{bottom:279.420000pt;}
.y30_c00317{bottom:300.241333pt;}
.y2f_c00317{bottom:319.494667pt;}
.y2e_c00317{bottom:339.656000pt;}
.y2d_c00317{bottom:360.269333pt;}
.y2c_c00317{bottom:380.270667pt;}
.y2b_c00317{bottom:400.221333pt;}
.y2a_c00317{bottom:420.570667pt;}
.y29_c00317{bottom:440.458667pt;}
.y28_c00317{bottom:461.014667pt;}
.y27_c00317{bottom:480.674667pt;}
.y26_c00317{bottom:501.306667pt;}
.y25_c00317{bottom:521.977333pt;}
.y24_c00317{bottom:542.352000pt;}
.y23_c00317{bottom:562.534667pt;}
.y22_c00317{bottom:582.460000pt;}
.y21_c00317{bottom:602.589333pt;}
.y20_c00317{bottom:622.936000pt;}
.y1f_c00317{bottom:643.297333pt;}
.y13_c00317{bottom:661.441333pt;}
.y14_c00317{bottom:661.976000pt;}
.y15_c00317{bottom:662.317333pt;}
.y16_c00317{bottom:662.401333pt;}
.y17_c00317{bottom:662.749333pt;}
.y18_c00317{bottom:662.852000pt;}
.y19_c00317{bottom:662.998667pt;}
.y1a_c00317{bottom:663.365333pt;}
.y1b_c00317{bottom:663.553333pt;}
.y1c_c00317{bottom:663.780000pt;}
.y1d_c00317{bottom:663.960000pt;}
.y1e_c00317{bottom:664.044000pt;}
.y7_c00317{bottom:681.840000pt;}
.y8_c00317{bottom:682.226667pt;}
.y9_c00317{bottom:682.724000pt;}
.ya_c00317{bottom:682.904000pt;}
.yb_c00317{bottom:683.046667pt;}
.yc_c00317{bottom:683.241333pt;}
.yd_c00317{bottom:683.438667pt;}
.ye_c00317{bottom:683.840000pt;}
.yf_c00317{bottom:684.052000pt;}
.y10_c00317{bottom:684.242667pt;}
.y11_c00317{bottom:684.341333pt;}
.y12_c00317{bottom:684.446667pt;}
.y6_c00317{bottom:703.301333pt;}
.y5_c00317{bottom:723.424000pt;}
.y4_c00317{bottom:747.716000pt;}
.y1_c00317{bottom:761.282667pt;}
.y2_c00317{bottom:762.623325pt;}
.y3_c00317{bottom:763.809909pt;}
.h3_c00317{height:19.600000pt;}
.hd_c00317{height:42.933333pt;}
.hc_c00317{height:44.800000pt;}
.he_c00317{height:45.733333pt;}
.h6_c00317{height:54.133333pt;}
.hb_c00317{height:55.066667pt;}
.h4_c00317{height:57.866667pt;}
.ha_c00317{height:60.666667pt;}
.h9_c00317{height:61.600000pt;}
.h5_c00317{height:62.533333pt;}
.h7_c00317{height:63.466667pt;}
.h8_c00317{height:64.400000pt;}
.h2_c00317{height:78.407683pt;}
.h0_c00317{height:896.400000pt;}
.h1_c00317{height:896.666667pt;}
.w0_c00317{width:618.666667pt;}
.x0_c00317{left:0.000000pt;}
.x4a_c00317{left:115.680000pt;}
.x6a_c00317{left:119.520000pt;}
.x40_c00317{left:123.600000pt;}
.x1_c00317{left:125.498667pt;}
.x11_c00317{left:126.960000pt;}
.x6_c00317{left:128.640000pt;}
.xac_c00317{left:136.080000pt;}
.x64_c00317{left:142.800000pt;}
.x12_c00317{left:144.240000pt;}
.x41_c00317{left:145.680000pt;}
.x39_c00317{left:148.080000pt;}
.xa1_c00317{left:149.040000pt;}
.x9d_c00317{left:151.920000pt;}
.xb9_c00317{left:152.880000pt;}
.xad_c00317{left:153.840000pt;}
.x7_c00317{left:155.280000pt;}
.x42_c00317{left:158.640000pt;}
.x74_c00317{left:162.720000pt;}
.x31_c00317{left:164.400000pt;}
.x99_c00317{left:167.280000pt;}
.x4b_c00317{left:169.200000pt;}
.x13_c00317{left:170.400000pt;}
.x53_c00317{left:173.280000pt;}
.x43_c00317{left:175.920000pt;}
.x3a_c00317{left:178.320000pt;}
.x93_c00317{left:179.280000pt;}
.xa7_c00317{left:180.720000pt;}
.x1d_c00317{left:182.992000pt;}
.x58_c00317{left:185.040000pt;}
.x6b_c00317{left:186.240000pt;}
.x32_c00317{left:188.880000pt;}
.x65_c00317{left:191.040000pt;}
.x75_c00317{left:192.240000pt;}
.xae_c00317{left:195.360000pt;}
.x60_c00317{left:197.280000pt;}
.x14_c00317{left:200.400000pt;}
.x4c_c00317{left:202.560000pt;}
.x28_c00317{left:203.608000pt;}
.x6c_c00317{left:206.880000pt;}
.xa5_c00317{left:208.080000pt;}
.x82_c00317{left:211.200000pt;}
.x3b_c00317{left:212.160000pt;}
.x54_c00317{left:213.840000pt;}
.x59_c00317{left:216.000000pt;}
.x76_c00317{left:217.200000pt;}
.x2_c00317{left:221.260000pt;}
.x7e_c00317{left:225.600000pt;}
.x4d_c00317{left:227.520000pt;}
.x4e_c00317{left:229.680000pt;}
.xa2_c00317{left:231.360000pt;}
.xaf_c00317{left:232.800000pt;}
.x55_c00317{left:234.480000pt;}
.x83_c00317{left:238.560000pt;}
.x15_c00317{left:239.760000pt;}
.x77_c00317{left:241.680000pt;}
.x8_c00317{left:244.560000pt;}
.x33_c00317{left:246.720000pt;}
.xa8_c00317{left:249.840000pt;}
.x29_c00317{left:252.290667pt;}
.x1e_c00317{left:254.005333pt;}
.x9e_c00317{left:255.600000pt;}
.x3c_c00317{left:257.040000pt;}
.x9a_c00317{left:258.960000pt;}
.x9_c00317{left:260.400000pt;}
.xa3_c00317{left:263.040000pt;}
.x2a_c00317{left:264.338667pt;}
.x34_c00317{left:267.360000pt;}
.x94_c00317{left:269.040000pt;}
.x66_c00317{left:270.720000pt;}
.xb0_c00317{left:273.120000pt;}
.x6d_c00317{left:276.480000pt;}
.x16_c00317{left:278.400000pt;}
.x1f_c00317{left:279.656000pt;}
.x78_c00317{left:280.800000pt;}
.x61_c00317{left:283.200000pt;}
.x5a_c00317{left:286.080000pt;}
.x6e_c00317{left:288.240000pt;}
.x4f_c00317{left:290.160000pt;}
.xb4_c00317{left:292.560000pt;}
.x97_c00317{left:293.520000pt;}
.x20_c00317{left:300.086667pt;}
.xb1_c00317{left:301.440000pt;}
.xba_c00317{left:303.600000pt;}
.x9b_c00317{left:304.560000pt;}
.x3_c00317{left:306.016000pt;}
.xa9_c00317{left:309.120000pt;}
.x5b_c00317{left:310.080000pt;}
.x35_c00317{left:311.760000pt;}
.x2b_c00317{left:314.001333pt;}
.x50_c00317{left:319.200000pt;}
.x79_c00317{left:323.760000pt;}
.x17_c00317{left:325.920000pt;}
.x21_c00317{left:327.893333pt;}
.x84_c00317{left:330.720000pt;}
.x44_c00317{left:332.640000pt;}
.xb5_c00317{left:334.080000pt;}
.x6f_c00317{left:335.280000pt;}
.x56_c00317{left:340.080000pt;}
.xa_c00317{left:343.920000pt;}
.x9f_c00317{left:346.560000pt;}
.x90_c00317{left:348.480000pt;}
.x2c_c00317{left:349.524000pt;}
.x8a_c00317{left:352.320000pt;}
.x22_c00317{left:356.009333pt;}
.x7f_c00317{left:358.080000pt;}
.x18_c00317{left:360.240000pt;}
.xb6_c00317{left:362.160000pt;}
.x7a_c00317{left:364.800000pt;}
.x45_c00317{left:367.200000pt;}
.x62_c00317{left:372.240000pt;}
.x67_c00317{left:373.440000pt;}
.x51_c00317{left:377.040000pt;}
.x19_c00317{left:378.480000pt;}
.x85_c00317{left:379.680000pt;}
.x36_c00317{left:381.600000pt;}
.xb_c00317{left:382.800000pt;}
.x7b_c00317{left:384.960000pt;}
.x86_c00317{left:386.880000pt;}
.x80_c00317{left:389.040000pt;}
.x8b_c00317{left:390.240000pt;}
.x5c_c00317{left:392.160000pt;}
.xb2_c00317{left:397.440000pt;}
.x57_c00317{left:400.560000pt;}
.xc_c00317{left:402.000000pt;}
.xb7_c00317{left:406.560000pt;}
.x37_c00317{left:408.240000pt;}
.x70_c00317{left:410.160000pt;}
.x87_c00317{left:411.600000pt;}
.x23_c00317{left:413.366667pt;}
.x3d_c00317{left:416.400000pt;}
.x5d_c00317{left:420.720000pt;}
.x46_c00317{left:421.920000pt;}
.xd_c00317{left:426.000000pt;}
.x98_c00317{left:426.960000pt;}
.x2d_c00317{left:428.721333pt;}
.xaa_c00317{left:431.040000pt;}
.x3e_c00317{left:432.240000pt;}
.x8c_c00317{left:434.640000pt;}
.x7c_c00317{left:436.560000pt;}
.x91_c00317{left:438.720000pt;}
.x95_c00317{left:442.080000pt;}
.x24_c00317{left:443.573333pt;}
.x47_c00317{left:445.200000pt;}
.x4_c00317{left:447.600000pt;}
.x5e_c00317{left:449.520000pt;}
.x3f_c00317{left:450.480000pt;}
.x38_c00317{left:451.680000pt;}
.x88_c00317{left:455.280000pt;}
.x5_c00317{left:456.240000pt;}
.x2e_c00317{left:461.141333pt;}
.xe_c00317{left:463.680000pt;}
.xa6_c00317{left:466.800000pt;}
.x71_c00317{left:467.760000pt;}
.x7d_c00317{left:469.200000pt;}
.x25_c00317{left:470.745333pt;}
.x63_c00317{left:472.080000pt;}
.xab_c00317{left:474.240000pt;}
.x68_c00317{left:475.680000pt;}
.x1a_c00317{left:476.640000pt;}
.x48_c00317{left:478.800000pt;}
.x8d_c00317{left:480.000000pt;}
.xb8_c00317{left:483.120000pt;}
.x26_c00317{left:484.877333pt;}
.x2f_c00317{left:486.768000pt;}
.x9c_c00317{left:488.160000pt;}
.x52_c00317{left:490.320000pt;}
.x1b_c00317{left:493.920000pt;}
.xa0_c00317{left:496.320000pt;}
.x5f_c00317{left:497.280000pt;}
.x30_c00317{left:498.798667pt;}
.x27_c00317{left:500.001333pt;}
.xa4_c00317{left:501.840000pt;}
.x72_c00317{left:503.760000pt;}
.x89_c00317{left:506.160000pt;}
.x81_c00317{left:512.400000pt;}
.x1c_c00317{left:514.800000pt;}
.xb3_c00317{left:517.200000pt;}
.xf_c00317{left:518.880000pt;}
.x69_c00317{left:521.280000pt;}
.x73_c00317{left:522.240000pt;}
.x8e_c00317{left:524.160000pt;}
.x49_c00317{left:526.800000pt;}
.x96_c00317{left:530.640000pt;}
.xbb_c00317{left:531.840000pt;}
.x10_c00317{left:535.680000pt;}
.x8f_c00317{left:542.160000pt;}
.x92_c00317{left:545.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m37_c00318{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);}
.m38_c00318{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);}
.m136_c00318{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);}
.m6e_c00318{transform:matrix(0.082709,0.002068,-0.006248,0.249922,0,0);-ms-transform:matrix(0.082709,0.002068,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.082709,0.002068,-0.006248,0.249922,0,0);}
.m91_c00318{transform:matrix(0.085768,0.002144,-0.006248,0.249922,0,0);-ms-transform:matrix(0.085768,0.002144,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.085768,0.002144,-0.006248,0.249922,0,0);}
.mfc_c00318{transform:matrix(0.095085,0.002377,-0.006248,0.249922,0,0);-ms-transform:matrix(0.095085,0.002377,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.095085,0.002377,-0.006248,0.249922,0,0);}
.m107_c00318{transform:matrix(0.096195,0.002405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.096195,0.002405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.096195,0.002405,-0.006248,0.249922,0,0);}
.m4c_c00318{transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096580,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.125376,0.003134,-0.006248,0.249922,0,0);-ms-transform:matrix(0.125376,0.003134,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.125376,0.003134,-0.006248,0.249922,0,0);}
.m93_c00318{transform:matrix(0.130629,0.003266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.130629,0.003266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.130629,0.003266,-0.006248,0.249922,0,0);}
.m7d_c00318{transform:matrix(0.132289,0.003307,-0.006248,0.249922,0,0);-ms-transform:matrix(0.132289,0.003307,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.132289,0.003307,-0.006248,0.249922,0,0);}
.m3c_c00318{transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);}
.m8b_c00318{transform:matrix(0.141851,0.003546,-0.006248,0.249922,0,0);-ms-transform:matrix(0.141851,0.003546,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.141851,0.003546,-0.006248,0.249922,0,0);}
.mc3_c00318{transform:matrix(0.144000,0.003600,-0.006248,0.249922,0,0);-ms-transform:matrix(0.144000,0.003600,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.144000,0.003600,-0.006248,0.249922,0,0);}
.m7a_c00318{transform:matrix(0.144695,0.003617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.144695,0.003617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.144695,0.003617,-0.006248,0.249922,0,0);}
.mb6_c00318{transform:matrix(0.151248,0.003781,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151248,0.003781,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151248,0.003781,-0.006248,0.249922,0,0);}
.m36_c00318{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);}
.m96_c00318{transform:matrix(0.151573,0.003789,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151573,0.003789,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151573,0.003789,-0.006248,0.249922,0,0);}
.m144_c00318{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m113_c00318{transform:matrix(0.151663,0.003792,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151663,0.003792,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151663,0.003792,-0.006248,0.249922,0,0);}
.m9e_c00318{transform:matrix(0.152097,0.003802,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152097,0.003802,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152097,0.003802,-0.006248,0.249922,0,0);}
.mda_c00318{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);}
.mcb_c00318{transform:matrix(0.153312,0.003833,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153312,0.003833,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153312,0.003833,-0.006248,0.249922,0,0);}
.m83_c00318{transform:matrix(0.153467,0.003837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153467,0.003837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153467,0.003837,-0.006248,0.249922,0,0);}
.mf8_c00318{transform:matrix(0.153472,0.003837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153472,0.003837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153472,0.003837,-0.006248,0.249922,0,0);}
.m6b_c00318{transform:matrix(0.153927,0.003848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153927,0.003848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153927,0.003848,-0.006248,0.249922,0,0);}
.maa_c00318{transform:matrix(0.154347,0.003859,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154347,0.003859,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154347,0.003859,-0.006248,0.249922,0,0);}
.mea_c00318{transform:matrix(0.154822,0.003871,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154822,0.003871,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154822,0.003871,-0.006248,0.249922,0,0);}
.m92_c00318{transform:matrix(0.154907,0.003873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154907,0.003873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154907,0.003873,-0.006248,0.249922,0,0);}
.mf6_c00318{transform:matrix(0.156591,0.003915,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156591,0.003915,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156591,0.003915,-0.006248,0.249922,0,0);}
.m64_c00318{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);}
.m1a_c00318{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);}
.m10a_c00318{transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);}
.m2c_c00318{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);}
.mf4_c00318{transform:matrix(0.157936,0.003948,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157936,0.003948,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157936,0.003948,-0.006248,0.249922,0,0);}
.m45_c00318{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);}
.m15_c00318{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);}
.m121_c00318{transform:matrix(0.159820,0.003996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159820,0.003996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159820,0.003996,-0.006248,0.249922,0,0);}
.m9d_c00318{transform:matrix(0.159920,0.003998,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159920,0.003998,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159920,0.003998,-0.006248,0.249922,0,0);}
.m12d_c00318{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);}
.m4a_c00318{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);}
.m12e_c00318{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);}
.m42_c00318{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);}
.m11_c00318{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);}
.me1_c00318{transform:matrix(0.162239,0.004056,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162239,0.004056,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162239,0.004056,-0.006248,0.249922,0,0);}
.m6c_c00318{transform:matrix(0.162424,0.004061,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162424,0.004061,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162424,0.004061,-0.006248,0.249922,0,0);}
.m6_c00318{transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{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);}
.mc7_c00318{transform:matrix(0.163844,0.004096,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163844,0.004096,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163844,0.004096,-0.006248,0.249922,0,0);}
.m3f_c00318{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.m11f_c00318{transform:matrix(0.164948,0.004124,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164948,0.004124,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164948,0.004124,-0.006248,0.249922,0,0);}
.m10f_c00318{transform:matrix(0.165073,0.004127,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165073,0.004127,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165073,0.004127,-0.006248,0.249922,0,0);}
.m145_c00318{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);}
.m105_c00318{transform:matrix(0.165408,0.004135,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165408,0.004135,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165408,0.004135,-0.006248,0.249922,0,0);}
.mfe_c00318{transform:matrix(0.165578,0.004139,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165578,0.004139,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165578,0.004139,-0.006248,0.249922,0,0);}
.m29_c00318{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);}
.ma5_c00318{transform:matrix(0.166928,0.004173,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166928,0.004173,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166928,0.004173,-0.006248,0.249922,0,0);}
.m99_c00318{transform:matrix(0.167008,0.004175,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167008,0.004175,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167008,0.004175,-0.006248,0.249922,0,0);}
.m2d_c00318{transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{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);}
.m41_c00318{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);}
.m2_c00318{transform:matrix(0.168534,0.003708,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168534,0.003708,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168534,0.003708,-0.005499,0.249940,0,0);}
.m33_c00318{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);}
.m35_c00318{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);}
.mdb_c00318{transform:matrix(0.169382,0.004235,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169382,0.004235,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169382,0.004235,-0.006248,0.249922,0,0);}
.m11e_c00318{transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);}
.m8a_c00318{transform:matrix(0.169467,0.004237,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169467,0.004237,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169467,0.004237,-0.006248,0.249922,0,0);}
.m124_c00318{transform:matrix(0.169807,0.004245,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169807,0.004245,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169807,0.004245,-0.006248,0.249922,0,0);}
.m128_c00318{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_c00318{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);}
.ma2_c00318{transform:matrix(0.170577,0.004264,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170577,0.004264,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170577,0.004264,-0.006248,0.249922,0,0);}
.mdc_c00318{transform:matrix(0.170762,0.004269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170762,0.004269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170762,0.004269,-0.006248,0.249922,0,0);}
.ma6_c00318{transform:matrix(0.170867,0.004272,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170867,0.004272,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170867,0.004272,-0.006248,0.249922,0,0);}
.mfa_c00318{transform:matrix(0.170902,0.004273,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170902,0.004273,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170902,0.004273,-0.006248,0.249922,0,0);}
.me4_c00318{transform:matrix(0.170917,0.004273,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170917,0.004273,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170917,0.004273,-0.006248,0.249922,0,0);}
.m112_c00318{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);}
.m106_c00318{transform:matrix(0.171077,0.004277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171077,0.004277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171077,0.004277,-0.006248,0.249922,0,0);}
.m6d_c00318{transform:matrix(0.171381,0.004285,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171381,0.004285,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171381,0.004285,-0.006248,0.249922,0,0);}
.m5f_c00318{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);}
.m55_c00318{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);}
.m90_c00318{transform:matrix(0.172151,0.004304,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172151,0.004304,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172151,0.004304,-0.006248,0.249922,0,0);}
.m18_c00318{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);}
.m9a_c00318{transform:matrix(0.172816,0.004320,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172816,0.004320,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172816,0.004320,-0.006248,0.249922,0,0);}
.m1d_c00318{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);}
.m73_c00318{transform:matrix(0.173346,0.004334,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173346,0.004334,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173346,0.004334,-0.006248,0.249922,0,0);}
.m10e_c00318{transform:matrix(0.173611,0.004340,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173611,0.004340,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173611,0.004340,-0.006248,0.249922,0,0);}
.m32_c00318{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);}
.m3b_c00318{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);}
.mf9_c00318{transform:matrix(0.174520,0.004363,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174520,0.004363,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174520,0.004363,-0.006248,0.249922,0,0);}
.m2b_c00318{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);}
.md1_c00318{transform:matrix(0.174785,0.004370,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174785,0.004370,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174785,0.004370,-0.006248,0.249922,0,0);}
.mf_c00318{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);}
.mf3_c00318{transform:matrix(0.175815,0.004395,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175815,0.004395,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175815,0.004395,-0.006248,0.249922,0,0);}
.md3_c00318{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);}
.mb5_c00318{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);}
.m67_c00318{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);}
.m4b_c00318{transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);}
.mde_c00318{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);}
.mb_c00318{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);}
.m148_c00318{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);}
.m111_c00318{transform:matrix(0.176975,0.004424,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176975,0.004424,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176975,0.004424,-0.006248,0.249922,0,0);}
.mb4_c00318{transform:matrix(0.177055,0.004426,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177055,0.004426,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177055,0.004426,-0.006248,0.249922,0,0);}
.ma9_c00318{transform:matrix(0.177325,0.004433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177325,0.004433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177325,0.004433,-0.006248,0.249922,0,0);}
.m7e_c00318{transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);}
.m127_c00318{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);}
.me5_c00318{transform:matrix(0.178189,0.004455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178189,0.004455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178189,0.004455,-0.006248,0.249922,0,0);}
.m147_c00318{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);}
.mf5_c00318{transform:matrix(0.179359,0.004484,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179359,0.004484,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179359,0.004484,-0.006248,0.249922,0,0);}
.mf1_c00318{transform:matrix(0.179384,0.004485,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179384,0.004485,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179384,0.004485,-0.006248,0.249922,0,0);}
.m8d_c00318{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);}
.m1c_c00318{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);}
.m3_c00318{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);}
.m84_c00318{transform:matrix(0.180419,0.004510,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180419,0.004510,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180419,0.004510,-0.006248,0.249922,0,0);}
.mee_c00318{transform:matrix(0.180664,0.004517,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180664,0.004517,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180664,0.004517,-0.006248,0.249922,0,0);}
.m25_c00318{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);}
.maf_c00318{transform:matrix(0.181133,0.004528,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181133,0.004528,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181133,0.004528,-0.006248,0.249922,0,0);}
.m94_c00318{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);}
.m5c_c00318{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);}
.mdd_c00318{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);}
.mef_c00318{transform:matrix(0.182173,0.004554,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182173,0.004554,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182173,0.004554,-0.006248,0.249922,0,0);}
.me2_c00318{transform:matrix(0.182388,0.004560,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182388,0.004560,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182388,0.004560,-0.006248,0.249922,0,0);}
.m8c_c00318{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);}
.m17_c00318{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);}
.m30_c00318{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);}
.m77_c00318{transform:matrix(0.182978,0.004574,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182978,0.004574,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182978,0.004574,-0.006248,0.249922,0,0);}
.m86_c00318{transform:matrix(0.183033,0.004576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183033,0.004576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183033,0.004576,-0.006248,0.249922,0,0);}
.m24_c00318{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);}
.m7b_c00318{transform:matrix(0.183463,0.004587,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183463,0.004587,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183463,0.004587,-0.006248,0.249922,0,0);}
.m7_c00318{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);}
.me_c00318{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);}
.m9_c00318{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);}
.mc5_c00318{transform:matrix(0.183878,0.004597,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183878,0.004597,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183878,0.004597,-0.006248,0.249922,0,0);}
.m134_c00318{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);}
.mc4_c00318{transform:matrix(0.184652,0.004616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184652,0.004616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184652,0.004616,-0.006248,0.249922,0,0);}
.m71_c00318{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);}
.me9_c00318{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);}
.m40_c00318{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);}
.mf2_c00318{transform:matrix(0.186462,0.004662,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186462,0.004662,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186462,0.004662,-0.006248,0.249922,0,0);}
.me6_c00318{transform:matrix(0.186767,0.004669,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186767,0.004669,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186767,0.004669,-0.006248,0.249922,0,0);}
.md_c00318{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);}
.md9_c00318{transform:matrix(0.187361,0.004684,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187361,0.004684,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187361,0.004684,-0.006248,0.249922,0,0);}
.m12a_c00318{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);}
.md4_c00318{transform:matrix(0.188466,0.004712,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188466,0.004712,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188466,0.004712,-0.006248,0.249922,0,0);}
.ma7_c00318{transform:matrix(0.188516,0.004713,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188516,0.004713,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188516,0.004713,-0.006248,0.249922,0,0);}
.m8_c00318{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);}
.m12_c00318{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);}
.m7c_c00318{transform:matrix(0.189131,0.004728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189131,0.004728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189131,0.004728,-0.006248,0.249922,0,0);}
.mce_c00318{transform:matrix(0.189261,0.004732,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189261,0.004732,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189261,0.004732,-0.006248,0.249922,0,0);}
.m104_c00318{transform:matrix(0.189551,0.004739,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189551,0.004739,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189551,0.004739,-0.006248,0.249922,0,0);}
.m43_c00318{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);}
.mcc_c00318{transform:matrix(0.190216,0.004755,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190216,0.004755,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190216,0.004755,-0.006248,0.249922,0,0);}
.mb1_c00318{transform:matrix(0.190455,0.004761,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190455,0.004761,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190455,0.004761,-0.006248,0.249922,0,0);}
.meb_c00318{transform:matrix(0.190490,0.004762,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190490,0.004762,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190490,0.004762,-0.006248,0.249922,0,0);}
.mc6_c00318{transform:matrix(0.190965,0.004774,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190965,0.004774,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190965,0.004774,-0.006248,0.249922,0,0);}
.m34_c00318{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);}
.m133_c00318{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);}
.m49_c00318{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);}
.md0_c00318{transform:matrix(0.191600,0.004790,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191600,0.004790,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191600,0.004790,-0.006248,0.249922,0,0);}
.m16_c00318{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);}
.md8_c00318{transform:matrix(0.191985,0.004800,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191985,0.004800,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191985,0.004800,-0.006248,0.249922,0,0);}
.mb3_c00318{transform:matrix(0.192480,0.004812,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192480,0.004812,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192480,0.004812,-0.006248,0.249922,0,0);}
.ma8_c00318{transform:matrix(0.192730,0.004818,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192730,0.004818,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192730,0.004818,-0.006248,0.249922,0,0);}
.m12c_c00318{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);}
.m119_c00318{transform:matrix(0.193410,0.004835,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193410,0.004835,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193410,0.004835,-0.006248,0.249922,0,0);}
.m120_c00318{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);}
.m5b_c00318{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);}
.m125_c00318{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);}
.m100_c00318{transform:matrix(0.193689,0.004842,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193689,0.004842,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193689,0.004842,-0.006248,0.249922,0,0);}
.m11c_c00318{transform:matrix(0.193894,0.004847,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193894,0.004847,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193894,0.004847,-0.006248,0.249922,0,0);}
.m3e_c00318{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);}
.mab_c00318{transform:matrix(0.194899,0.004872,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194899,0.004872,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194899,0.004872,-0.006248,0.249922,0,0);}
.m13d_c00318{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);}
.m95_c00318{transform:matrix(0.195049,0.004876,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195049,0.004876,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195049,0.004876,-0.006248,0.249922,0,0);}
.m108_c00318{transform:matrix(0.195179,0.004879,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195179,0.004879,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195179,0.004879,-0.006248,0.249922,0,0);}
.m6f_c00318{transform:matrix(0.195209,0.004880,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195209,0.004880,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195209,0.004880,-0.006248,0.249922,0,0);}
.m4d_c00318{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);}
.m47_c00318{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);}
.md7_c00318{transform:matrix(0.196164,0.004904,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196164,0.004904,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196164,0.004904,-0.006248,0.249922,0,0);}
.m12b_c00318{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);}
.m10c_c00318{transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);}
.mc_c00318{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);}
.mc9_c00318{transform:matrix(0.196489,0.004912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196489,0.004912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196489,0.004912,-0.006248,0.249922,0,0);}
.m103_c00318{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);}
.m85_c00318{transform:matrix(0.196819,0.004920,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196819,0.004920,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196819,0.004920,-0.006248,0.249922,0,0);}
.m11a_c00318{transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);}
.m11d_c00318{transform:matrix(0.196943,0.004924,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196943,0.004924,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196943,0.004924,-0.006248,0.249922,0,0);}
.m9f_c00318{transform:matrix(0.197038,0.004926,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197038,0.004926,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197038,0.004926,-0.006248,0.249922,0,0);}
.m1b_c00318{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);}
.m14_c00318{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);}
.mb8_c00318{transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197758,0.004944,-0.006248,0.249922,0,0);}
.mf0_c00318{transform:matrix(0.197918,0.004948,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197918,0.004948,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197918,0.004948,-0.006248,0.249922,0,0);}
.m65_c00318{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);}
.mb9_c00318{transform:matrix(0.198473,0.004962,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198473,0.004962,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198473,0.004962,-0.006248,0.249922,0,0);}
.m5e_c00318{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);}
.m87_c00318{transform:matrix(0.199223,0.004981,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199223,0.004981,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199223,0.004981,-0.006248,0.249922,0,0);}
.m9b_c00318{transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199373,0.004984,-0.006248,0.249922,0,0);}
.m143_c00318{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m98_c00318{transform:matrix(0.199553,0.004989,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199553,0.004989,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199553,0.004989,-0.006248,0.249922,0,0);}
.m48_c00318{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);}
.mae_c00318{transform:matrix(0.200197,0.005005,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200197,0.005005,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200197,0.005005,-0.006248,0.249922,0,0);}
.m109_c00318{transform:matrix(0.200782,0.005020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200782,0.005020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200782,0.005020,-0.006248,0.249922,0,0);}
.m3d_c00318{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);}
.m11b_c00318{transform:matrix(0.201432,0.005036,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201432,0.005036,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201432,0.005036,-0.006248,0.249922,0,0);}
.m115_c00318{transform:matrix(0.201547,0.005039,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201547,0.005039,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201547,0.005039,-0.006248,0.249922,0,0);}
.mfb_c00318{transform:matrix(0.201577,0.005039,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201577,0.005039,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201577,0.005039,-0.006248,0.249922,0,0);}
.mb7_c00318{transform:matrix(0.201827,0.005046,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201827,0.005046,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201827,0.005046,-0.006248,0.249922,0,0);}
.m56_c00318{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);}
.m8e_c00318{transform:matrix(0.202787,0.005070,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202787,0.005070,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202787,0.005070,-0.006248,0.249922,0,0);}
.m2f_c00318{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);}
.m21_c00318{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);}
.m10d_c00318{transform:matrix(0.202952,0.005074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202952,0.005074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202952,0.005074,-0.006248,0.249922,0,0);}
.mad_c00318{transform:matrix(0.203002,0.005075,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203002,0.005075,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203002,0.005075,-0.006248,0.249922,0,0);}
.m129_c00318{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);}
.me7_c00318{transform:matrix(0.203446,0.005086,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203446,0.005086,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203446,0.005086,-0.006248,0.249922,0,0);}
.mdf_c00318{transform:matrix(0.203606,0.005090,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203606,0.005090,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203606,0.005090,-0.006248,0.249922,0,0);}
.mc8_c00318{transform:matrix(0.204336,0.005108,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204336,0.005108,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204336,0.005108,-0.006248,0.249922,0,0);}
.m13b_c00318{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);}
.md5_c00318{transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204456,0.005111,-0.006248,0.249922,0,0);}
.m12f_c00318{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);}
.m13_c00318{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);}
.med_c00318{transform:matrix(0.205931,0.005148,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205931,0.005148,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205931,0.005148,-0.006248,0.249922,0,0);}
.mbb_c00318{transform:matrix(0.205996,0.005150,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205996,0.005150,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205996,0.005150,-0.006248,0.249922,0,0);}
.mb0_c00318{transform:matrix(0.206081,0.005152,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206081,0.005152,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206081,0.005152,-0.006248,0.249922,0,0);}
.mb2_c00318{transform:matrix(0.206176,0.005154,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206176,0.005154,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206176,0.005154,-0.006248,0.249922,0,0);}
.m19_c00318{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);}
.me0_c00318{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);}
.m80_c00318{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);}
.m131_c00318{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);}
.m97_c00318{transform:matrix(0.208305,0.005208,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208305,0.005208,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208305,0.005208,-0.006248,0.249922,0,0);}
.m13c_c00318{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);}
.mbe_c00318{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);}
.m110_c00318{transform:matrix(0.209570,0.005239,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209570,0.005239,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209570,0.005239,-0.006248,0.249922,0,0);}
.m58_c00318{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);}
.mca_c00318{transform:matrix(0.210219,0.005255,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210219,0.005255,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210219,0.005255,-0.006248,0.249922,0,0);}
.m31_c00318{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);}
.m10_c00318{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);}
.ma4_c00318{transform:matrix(0.210689,0.005267,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210689,0.005267,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210689,0.005267,-0.006248,0.249922,0,0);}
.m88_c00318{transform:matrix(0.210749,0.005269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210749,0.005269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210749,0.005269,-0.006248,0.249922,0,0);}
.mff_c00318{transform:matrix(0.210829,0.005271,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210829,0.005271,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210829,0.005271,-0.006248,0.249922,0,0);}
.mf7_c00318{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);}
.m9c_c00318{transform:matrix(0.211979,0.005299,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211979,0.005299,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211979,0.005299,-0.006248,0.249922,0,0);}
.m72_c00318{transform:matrix(0.212069,0.005302,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212069,0.005302,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212069,0.005302,-0.006248,0.249922,0,0);}
.m8f_c00318{transform:matrix(0.212209,0.005305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212209,0.005305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212209,0.005305,-0.006248,0.249922,0,0);}
.m130_c00318{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);}
.m1f_c00318{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);}
.m63_c00318{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);}
.mcd_c00318{transform:matrix(0.214403,0.005360,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214403,0.005360,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214403,0.005360,-0.006248,0.249922,0,0);}
.m132_c00318{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);}
.m28_c00318{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);}
.m50_c00318{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);}
.m69_c00318{transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215633,0.005391,-0.006248,0.249922,0,0);}
.m1e_c00318{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);}
.m22_c00318{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);}
.m114_c00318{transform:matrix(0.216052,0.005401,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216052,0.005401,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216052,0.005401,-0.006248,0.249922,0,0);}
.mfd_c00318{transform:matrix(0.216127,0.005403,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216127,0.005403,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216127,0.005403,-0.006248,0.249922,0,0);}
.ma_c00318{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);}
.m51_c00318{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);}
.m4_c00318{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);}
.ma3_c00318{transform:matrix(0.217467,0.005437,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217467,0.005437,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217467,0.005437,-0.006248,0.249922,0,0);}
.mbf_c00318{transform:matrix(0.218432,0.005461,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218432,0.005461,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218432,0.005461,-0.006248,0.249922,0,0);}
.m60_c00318{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);}
.m74_c00318{transform:matrix(0.218907,0.005473,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218907,0.005473,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218907,0.005473,-0.006248,0.249922,0,0);}
.mec_c00318{transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);}
.m141_c00318{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{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);}
.m44_c00318{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);}
.m46_c00318{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);}
.m54_c00318{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m137_c00318{transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);}
.m117_c00318{transform:matrix(0.223445,0.005586,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223445,0.005586,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223445,0.005586,-0.006248,0.249922,0,0);}
.m140_c00318{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m146_c00318{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);}
.m126_c00318{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);}
.md6_c00318{transform:matrix(0.227104,0.005678,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227104,0.005678,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227104,0.005678,-0.006248,0.249922,0,0);}
.m39_c00318{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);}
.m5_c00318{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);}
.m4f_c00318{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);}
.m2e_c00318{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);}
.m26_c00318{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);}
.mc1_c00318{transform:matrix(0.232167,0.005804,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232167,0.005804,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232167,0.005804,-0.006248,0.249922,0,0);}
.m81_c00318{transform:matrix(0.232697,0.005817,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232697,0.005817,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232697,0.005817,-0.006248,0.249922,0,0);}
.m82_c00318{transform:matrix(0.232942,0.005824,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232942,0.005824,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232942,0.005824,-0.006248,0.249922,0,0);}
.ma0_c00318{transform:matrix(0.233402,0.005835,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233402,0.005835,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233402,0.005835,-0.006248,0.249922,0,0);}
.mba_c00318{transform:matrix(0.233427,0.005836,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233427,0.005836,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233427,0.005836,-0.006248,0.249922,0,0);}
.mc2_c00318{transform:matrix(0.237426,0.005936,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237426,0.005936,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237426,0.005936,-0.006248,0.249922,0,0);}
.m122_c00318{transform:matrix(0.237891,0.005947,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237891,0.005947,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237891,0.005947,-0.006248,0.249922,0,0);}
.m61_c00318{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);}
.m102_c00318{transform:matrix(0.239110,0.005978,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239110,0.005978,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239110,0.005978,-0.006248,0.249922,0,0);}
.me8_c00318{transform:matrix(0.239485,0.005987,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239485,0.005987,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239485,0.005987,-0.006248,0.249922,0,0);}
.m116_c00318{transform:matrix(0.239600,0.005990,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239600,0.005990,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239600,0.005990,-0.006248,0.249922,0,0);}
.mcf_c00318{transform:matrix(0.240055,0.006001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240055,0.006001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240055,0.006001,-0.006248,0.249922,0,0);}
.m62_c00318{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);}
.m135_c00318{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);}
.m2a_c00318{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);}
.mbd_c00318{transform:matrix(0.244719,0.006118,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244719,0.006118,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244719,0.006118,-0.006248,0.249922,0,0);}
.m13f_c00318{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00318{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m10b_c00318{transform:matrix(0.250382,0.006260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250382,0.006260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250382,0.006260,-0.006248,0.249922,0,0);}
.ma1_c00318{transform:matrix(0.252916,0.006323,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252916,0.006323,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252916,0.006323,-0.006248,0.249922,0,0);}
.m57_c00318{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);}
.me3_c00318{transform:matrix(0.253436,0.006336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253436,0.006336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253436,0.006336,-0.006248,0.249922,0,0);}
.m142_c00318{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.mac_c00318{transform:matrix(0.253951,0.006349,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253951,0.006349,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253951,0.006349,-0.006248,0.249922,0,0);}
.m118_c00318{transform:matrix(0.254031,0.006351,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254031,0.006351,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254031,0.006351,-0.006248,0.249922,0,0);}
.m66_c00318{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);}
.m53_c00318{transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);}
.m13a_c00318{transform:matrix(0.257105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257105,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.258124,0.006453,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258124,0.006453,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258124,0.006453,-0.006248,0.249922,0,0);}
.m139_c00318{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);}
.mbc_c00318{transform:matrix(0.267486,0.006687,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267486,0.006687,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267486,0.006687,-0.006248,0.249922,0,0);}
.m75_c00318{transform:matrix(0.269811,0.006745,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269811,0.006745,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269811,0.006745,-0.006248,0.249922,0,0);}
.m79_c00318{transform:matrix(0.273490,0.006837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273490,0.006837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273490,0.006837,-0.006248,0.249922,0,0);}
.m59_c00318{transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);}
.m68_c00318{transform:matrix(0.275444,0.006886,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275444,0.006886,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275444,0.006886,-0.006248,0.249922,0,0);}
.m0_c00318{transform:matrix(0.277453,0.006104,-0.005499,0.249940,0,0);-ms-transform:matrix(0.277453,0.006104,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.277453,0.006104,-0.005499,0.249940,0,0);}
.m138_c00318{transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.283876,0.006245,-0.005499,0.249940,0,0);-ms-transform:matrix(0.283876,0.006245,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.283876,0.006245,-0.005499,0.249940,0,0);}
.m52_c00318{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);}
.m70_c00318{transform:matrix(0.290119,0.007253,-0.006248,0.249922,0,0);-ms-transform:matrix(0.290119,0.007253,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.290119,0.007253,-0.006248,0.249922,0,0);}
.md2_c00318{transform:matrix(0.291609,0.007290,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291609,0.007290,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291609,0.007290,-0.006248,0.249922,0,0);}
.mc0_c00318{transform:matrix(0.291839,0.007296,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291839,0.007296,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291839,0.007296,-0.006248,0.249922,0,0);}
.m27_c00318{transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);}
.m7f_c00318{transform:matrix(0.295133,0.007378,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295133,0.007378,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295133,0.007378,-0.006248,0.249922,0,0);}
.m123_c00318{transform:matrix(0.300936,0.007523,-0.006248,0.249922,0,0);-ms-transform:matrix(0.300936,0.007523,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.300936,0.007523,-0.006248,0.249922,0,0);}
.m101_c00318{transform:matrix(0.319760,0.007994,-0.006248,0.249922,0,0);-ms-transform:matrix(0.319760,0.007994,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.319760,0.007994,-0.006248,0.249922,0,0);}
.m78_c00318{transform:matrix(0.325323,0.008133,-0.006248,0.249922,0,0);-ms-transform:matrix(0.325323,0.008133,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.325323,0.008133,-0.006248,0.249922,0,0);}
.m3a_c00318{transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327365,0.000000,0.000000,0.250000,0,0);}
.m13e_c00318{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m89_c00318{transform:matrix(0.359848,0.008996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.359848,0.008996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.359848,0.008996,-0.006248,0.249922,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;}
.fs12_c00318{font-size:22.050000px;}
.fs14_c00318{font-size:50.400000px;}
.fs15_c00318{font-size:52.500000px;}
.fs16_c00318{font-size:55.650000px;}
.fs13_c00318{font-size:57.750000px;}
.fsd_c00318{font-size:63.019684px;}
.fs7_c00318{font-size:64.050000px;}
.fs11_c00318{font-size:65.120341px;}
.fs2_c00318{font-size:67.200000px;}
.fsb_c00318{font-size:67.220997px;}
.fs6_c00318{font-size:68.250000px;}
.fsf_c00318{font-size:68.271325px;}
.fs3_c00318{font-size:69.300000px;}
.fsc_c00318{font-size:69.321653px;}
.fs4_c00318{font-size:70.350000px;}
.fs10_c00318{font-size:70.371981px;}
.fsa_c00318{font-size:71.422309px;}
.fs9_c00318{font-size:72.472637px;}
.fs1_c00318{font-size:73.500000px;}
.fs5_c00318{font-size:75.600000px;}
.fse_c00318{font-size:80.875262px;}
.fs8_c00318{font-size:102.932151px;}
.fs0_c00318{font-size:143.884807px;}
.y0_c00318{bottom:0.000000px;}
.yd0_c00318{bottom:171.226500px;}
.yd2_c00318{bottom:189.232500px;}
.ycf_c00318{bottom:189.507000px;}
.yd1_c00318{bottom:206.922000px;}
.yce_c00318{bottom:242.730000px;}
.ycd_c00318{bottom:256.421438px;}
.ycc_c00318{bottom:256.761788px;}
.ycb_c00318{bottom:256.905338px;}
.yca_c00318{bottom:257.279363px;}
.yc9_c00318{bottom:257.451563px;}
.yc8_c00318{bottom:257.747513px;}
.yc7_c00318{bottom:258.502350px;}
.yc6_c00318{bottom:258.747150px;}
.yc5_c00318{bottom:258.981113px;}
.yc4_c00318{bottom:260.009325px;}
.yc3_c00318{bottom:260.435025px;}
.yc2_c00318{bottom:280.985963px;}
.yc1_c00318{bottom:281.467050px;}
.yc0_c00318{bottom:281.769788px;}
.ybf_c00318{bottom:282.355838px;}
.ybe_c00318{bottom:283.158675px;}
.ybd_c00318{bottom:283.417875px;}
.ybc_c00318{bottom:283.933538px;}
.ybb_c00318{bottom:302.527088px;}
.yba_c00318{bottom:302.701013px;}
.yb9_c00318{bottom:302.843513px;}
.yb8_c00318{bottom:303.064725px;}
.yb7_c00318{bottom:303.184463px;}
.yb6_c00318{bottom:303.648713px;}
.yb5_c00318{bottom:303.932025px;}
.yb4_c00318{bottom:304.214175px;}
.yb3_c00318{bottom:304.406625px;}
.yb2_c00318{bottom:304.579088px;}
.yb1_c00318{bottom:304.759575px;}
.yb0_c00318{bottom:304.883513px;}
.yaf_c00318{bottom:305.180250px;}
.yae_c00318{bottom:305.359275px;}
.yad_c00318{bottom:305.452913px;}
.yac_c00318{bottom:305.808413px;}
.yab_c00318{bottom:324.864600px;}
.yaa_c00318{bottom:325.090425px;}
.ya9_c00318{bottom:325.467675px;}
.ya8_c00318{bottom:325.652400px;}
.ya7_c00318{bottom:325.994700px;}
.ya6_c00318{bottom:326.619525px;}
.ya5_c00318{bottom:326.964488px;}
.ya4_c00318{bottom:327.300225px;}
.ya3_c00318{bottom:327.552713px;}
.ya2_c00318{bottom:327.664050px;}
.ya1_c00318{bottom:328.525875px;}
.ya0_c00318{bottom:329.036888px;}
.y9f_c00318{bottom:348.271200px;}
.y9e_c00318{bottom:348.397013px;}
.y9d_c00318{bottom:348.536363px;}
.y9c_c00318{bottom:348.679575px;}
.y9b_c00318{bottom:349.300388px;}
.y9a_c00318{bottom:349.506600px;}
.y99_c00318{bottom:349.788413px;}
.y98_c00318{bottom:350.157263px;}
.y97_c00318{bottom:350.350650px;}
.y96_c00318{bottom:350.701838px;}
.y95_c00318{bottom:350.950050px;}
.y94_c00318{bottom:351.256837px;}
.y93_c00318{bottom:351.453338px;}
.y92_c00318{bottom:371.299875px;}
.y91_c00318{bottom:371.827013px;}
.y90_c00318{bottom:372.194250px;}
.y8f_c00318{bottom:372.379425px;}
.y8e_c00318{bottom:372.524775px;}
.y8d_c00318{bottom:372.896550px;}
.y8c_c00318{bottom:373.618650px;}
.y8b_c00318{bottom:373.796888px;}
.y8a_c00318{bottom:374.127525px;}
.y89_c00318{bottom:374.408587px;}
.y88_c00318{bottom:393.851513px;}
.y87_c00318{bottom:394.291800px;}
.y86_c00318{bottom:394.418325px;}
.y85_c00318{bottom:394.711387px;}
.y84_c00318{bottom:395.094562px;}
.y83_c00318{bottom:395.302275px;}
.y82_c00318{bottom:395.548950px;}
.y81_c00318{bottom:395.721975px;}
.y80_c00318{bottom:396.085725px;}
.y7f_c00318{bottom:396.257212px;}
.y7e_c00318{bottom:396.793387px;}
.y7d_c00318{bottom:397.093687px;}
.y7c_c00318{bottom:417.056513px;}
.y7b_c00318{bottom:417.374963px;}
.y7a_c00318{bottom:417.647175px;}
.y79_c00318{bottom:418.083487px;}
.y78_c00318{bottom:418.358100px;}
.y77_c00318{bottom:418.576988px;}
.y76_c00318{bottom:418.934775px;}
.y75_c00318{bottom:419.057175px;}
.y74_c00318{bottom:419.275050px;}
.y73_c00318{bottom:419.764275px;}
.y72_c00318{bottom:420.052050px;}
.y71_c00318{bottom:439.620412px;}
.y70_c00318{bottom:439.756725px;}
.y6f_c00318{bottom:439.883287px;}
.y6e_c00318{bottom:440.299163px;}
.y6d_c00318{bottom:440.505000px;}
.y6c_c00318{bottom:440.855025px;}
.y6b_c00318{bottom:441.040200px;}
.y6a_c00318{bottom:441.443662px;}
.y69_c00318{bottom:441.951637px;}
.y68_c00318{bottom:442.227788px;}
.y67_c00318{bottom:442.400775px;}
.y66_c00318{bottom:442.740338px;}
.y65_c00318{bottom:462.000375px;}
.y64_c00318{bottom:462.254363px;}
.y63_c00318{bottom:462.577013px;}
.y62_c00318{bottom:463.145663px;}
.y61_c00318{bottom:463.548637px;}
.y60_c00318{bottom:464.200388px;}
.y5f_c00318{bottom:464.868337px;}
.y5e_c00318{bottom:465.092175px;}
.y5d_c00318{bottom:465.494925px;}
.y5c_c00318{bottom:465.697950px;}
.y5b_c00318{bottom:485.336625px;}
.y5a_c00318{bottom:485.696438px;}
.y59_c00318{bottom:485.919037px;}
.y58_c00318{bottom:486.164925px;}
.y57_c00318{bottom:486.704700px;}
.y56_c00318{bottom:486.914738px;}
.y55_c00318{bottom:487.400550px;}
.y54_c00318{bottom:487.720575px;}
.y53_c00318{bottom:487.946887px;}
.y52_c00318{bottom:488.448337px;}
.y51_c00318{bottom:488.656800px;}
.y50_c00318{bottom:508.431225px;}
.y4f_c00318{bottom:508.933537px;}
.y4e_c00318{bottom:509.132438px;}
.y4d_c00318{bottom:509.369775px;}
.y4c_c00318{bottom:509.716238px;}
.y4b_c00318{bottom:509.999512px;}
.y4a_c00318{bottom:510.511425px;}
.y49_c00318{bottom:510.689813px;}
.y48_c00318{bottom:511.343662px;}
.y47_c00318{bottom:530.502825px;}
.y46_c00318{bottom:530.654175px;}
.y45_c00318{bottom:531.117600px;}
.y44_c00318{bottom:531.347850px;}
.y43_c00318{bottom:531.574275px;}
.y42_c00318{bottom:531.760800px;}
.y41_c00318{bottom:532.017975px;}
.y40_c00318{bottom:532.479075px;}
.y3f_c00318{bottom:532.762387px;}
.y3e_c00318{bottom:532.928700px;}
.y3d_c00318{bottom:533.153550px;}
.y3c_c00318{bottom:533.571825px;}
.y3b_c00318{bottom:533.759212px;}
.y3a_c00318{bottom:555.015487px;}
.y39_c00318{bottom:555.015750px;}
.y36_c00318{bottom:555.015975px;}
.y37_c00318{bottom:555.016087px;}
.y35_c00318{bottom:555.016200px;}
.y38_c00318{bottom:555.016237px;}
.y30_c00318{bottom:555.016613px;}
.y33_c00318{bottom:555.016650px;}
.y34_c00318{bottom:555.016725px;}
.y31_c00318{bottom:555.016837px;}
.y2f_c00318{bottom:555.017062px;}
.y32_c00318{bottom:555.017175px;}
.y2e_c00318{bottom:576.365812px;}
.y2d_c00318{bottom:577.080637px;}
.y2c_c00318{bottom:577.431187px;}
.y2b_c00318{bottom:577.635525px;}
.y2a_c00318{bottom:578.420400px;}
.y29_c00318{bottom:578.571750px;}
.y28_c00318{bottom:578.892637px;}
.y27_c00318{bottom:579.136875px;}
.y26_c00318{bottom:579.259688px;}
.y25_c00318{bottom:579.677588px;}
.y24_c00318{bottom:598.306200px;}
.y23_c00318{bottom:598.804913px;}
.y22_c00318{bottom:599.032500px;}
.y21_c00318{bottom:599.394712px;}
.y20_c00318{bottom:599.919787px;}
.y1f_c00318{bottom:600.070988px;}
.y1e_c00318{bottom:600.332175px;}
.y1d_c00318{bottom:600.795600px;}
.y1c_c00318{bottom:601.001588px;}
.y1b_c00318{bottom:601.324875px;}
.y1a_c00318{bottom:601.501988px;}
.y19_c00318{bottom:601.750050px;}
.y18_c00318{bottom:602.129625px;}
.y17_c00318{bottom:602.365650px;}
.y16_c00318{bottom:613.254675px;}
.y15_c00318{bottom:613.599488px;}
.y14_c00318{bottom:614.772937px;}
.y13_c00318{bottom:618.443287px;}
.y12_c00318{bottom:619.006237px;}
.y11_c00318{bottom:619.783087px;}
.y10_c00318{bottom:621.152063px;}
.yf_c00318{bottom:622.433812px;}
.ye_c00318{bottom:623.029500px;}
.yd_c00318{bottom:624.249000px;}
.yc_c00318{bottom:645.426000px;}
.yb_c00318{bottom:667.632000px;}
.ya_c00318{bottom:690.295500px;}
.y9_c00318{bottom:712.774500px;}
.y8_c00318{bottom:736.465500px;}
.y7_c00318{bottom:758.875500px;}
.y6_c00318{bottom:781.539000px;}
.y5_c00318{bottom:803.680500px;}
.y4_c00318{bottom:826.360500px;}
.y3_c00318{bottom:863.827275px;}
.y2_c00318{bottom:869.086419px;}
.y1_c00318{bottom:871.032000px;}
.h14_c00318{height:22.050000px;}
.h16_c00318{height:50.400000px;}
.h17_c00318{height:52.500000px;}
.h18_c00318{height:55.650000px;}
.h15_c00318{height:57.750000px;}
.hf_c00318{height:63.019684px;}
.h9_c00318{height:64.050000px;}
.h13_c00318{height:65.120341px;}
.h4_c00318{height:67.200000px;}
.hd_c00318{height:67.220997px;}
.h8_c00318{height:68.250000px;}
.h11_c00318{height:68.271325px;}
.h5_c00318{height:69.300000px;}
.he_c00318{height:69.321653px;}
.h6_c00318{height:70.350000px;}
.h12_c00318{height:70.371981px;}
.hc_c00318{height:71.422309px;}
.hb_c00318{height:72.472637px;}
.h3_c00318{height:73.500000px;}
.h7_c00318{height:75.600000px;}
.h10_c00318{height:80.875262px;}
.ha_c00318{height:102.932151px;}
.h2_c00318{height:143.884807px;}
.h1_c00318{height:1005.000000px;}
.h0_c00318{height:1005.150000px;}
.w0_c00318{width:702.540000px;}
.w1_c00318{width:702.750000px;}
.x0_c00318{left:0.000000px;}
.xb4_c00318{left:68.310000px;}
.x7c_c00318{left:76.323263px;}
.x25_c00318{left:78.570000px;}
.x81_c00318{left:81.206700px;}
.x48_c00318{left:82.890000px;}
.x4_c00318{left:83.970000px;}
.xaa_c00318{left:96.544913px;}
.x35_c00318{left:101.250000px;}
.x49_c00318{left:102.330000px;}
.x7d_c00318{left:106.035113px;}
.x5b_c00318{left:108.125175px;}
.x98_c00318{left:110.350163px;}
.xae_c00318{left:113.130000px;}
.x31_c00318{left:119.610000px;}
.x5_c00318{left:120.960000px;}
.x95_c00318{left:123.042000px;}
.x50_c00318{left:124.740000px;}
.x3f_c00318{left:130.680000px;}
.x4a_c00318{left:131.760000px;}
.x36_c00318{left:132.840000px;}
.x10_c00318{left:136.350000px;}
.x1c_c00318{left:137.430000px;}
.x9d_c00318{left:139.198763px;}
.x26_c00318{left:142.290000px;}
.x51_c00318{left:144.180000px;}
.xa0_c00318{left:146.568563px;}
.x6_c00318{left:147.960000px;}
.x5c_c00318{left:150.265012px;}
.xb1_c00318{left:151.740000px;}
.x40_c00318{left:153.630000px;}
.x37_c00318{left:154.710000px;}
.x52_c00318{left:156.060000px;}
.x27_c00318{left:158.220000px;}
.x65_c00318{left:159.752963px;}
.xaf_c00318{left:161.460000px;}
.x72_c00318{left:168.722700px;}
.x11_c00318{left:171.180000px;}
.x1d_c00318{left:173.070000px;}
.x78_c00318{left:176.255663px;}
.x5d_c00318{left:177.838537px;}
.x41_c00318{left:179.280000px;}
.x28_c00318{left:182.520000px;}
.x82_c00318{left:184.875225px;}
.x12_c00318{left:188.460000px;}
.x8c_c00318{left:190.010813px;}
.x32_c00318{left:194.130000px;}
.x96_c00318{left:195.689663px;}
.x5e_c00318{left:197.530912px;}
.x1_c00318{left:198.996000px;}
.x73_c00318{left:200.831138px;}
.x55_c00318{left:205.884000px;}
.x1e_c00318{left:210.870000px;}
.xa1_c00318{left:214.589663px;}
.x42_c00318{left:216.540000px;}
.xb0_c00318{left:219.240000px;}
.x7_c00318{left:220.590000px;}
.x6b_c00318{left:222.258375px;}
.x74_c00318{left:224.594325px;}
.x90_c00318{left:226.207050px;}
.xa2_c00318{left:232.395188px;}
.x5f_c00318{left:233.456775px;}
.x13_c00318{left:235.440000px;}
.xa8_c00318{left:236.747663px;}
.x8d_c00318{left:238.623675px;}
.x38_c00318{left:240.300000px;}
.x8_c00318{left:243.540000px;}
.x9e_c00318{left:247.288463px;}
.xb2_c00318{left:254.070000px;}
.x60_c00318{left:256.405462px;}
.xa3_c00318{left:258.106238px;}
.x56_c00318{left:260.643000px;}
.x66_c00318{left:262.138013px;}
.x29_c00318{left:264.600000px;}
.x99_c00318{left:267.263700px;}
.x83_c00318{left:268.328663px;}
.xb3_c00318{left:271.080000px;}
.x53_c00318{left:272.970000px;}
.x79_c00318{left:274.831988px;}
.x91_c00318{left:278.100375px;}
.x1f_c00318{left:280.260000px;}
.xa4_c00318{left:282.655763px;}
.x39_c00318{left:284.040000px;}
.x2_c00318{left:287.431500px;}
.x9_c00318{left:290.250000px;}
.x57_c00318{left:291.717000px;}
.x4b_c00318{left:294.030000px;}
.xa9_c00318{left:295.311600px;}
.x20_c00318{left:299.430000px;}
.x92_c00318{left:302.912550px;}
.x61_c00318{left:307.963087px;}
.xa5_c00318{left:310.226175px;}
.x4c_c00318{left:312.660000px;}
.x58_c00318{left:314.235000px;}
.x2a_c00318{left:315.360000px;}
.xb5_c00318{left:316.980000px;}
.x9a_c00318{left:319.961400px;}
.x8e_c00318{left:321.007725px;}
.x14_c00318{left:325.080000px;}
.x6c_c00318{left:327.321000px;}
.x2b_c00318{left:331.830000px;}
.xb6_c00318{left:332.910000px;}
.xa_c00318{left:335.070000px;}
.x3a_c00318{left:337.770000px;}
.x15_c00318{left:344.790000px;}
.x43_c00318{left:346.410000px;}
.x84_c00318{left:349.873313px;}
.x88_c00318{left:351.531863px;}
.x62_c00318{left:353.696850px;}
.x7e_c00318{left:355.052588px;}
.xb_c00318{left:359.910000px;}
.x7a_c00318{left:364.801950px;}
.x75_c00318{left:367.742213px;}
.x3b_c00318{left:369.900000px;}
.x16_c00318{left:370.980000px;}
.x97_c00318{left:372.898388px;}
.x67_c00318{left:374.223413px;}
.xb7_c00318{left:377.190000px;}
.x2c_c00318{left:381.240000px;}
.xb8_c00318{left:384.750000px;}
.x9b_c00318{left:389.613713px;}
.xa6_c00318{left:390.960975px;}
.x3c_c00318{left:392.580000px;}
.x76_c00318{left:394.475250px;}
.x21_c00318{left:398.250000px;}
.x85_c00318{left:400.153650px;}
.xc_c00318{left:401.760000px;}
.x68_c00318{left:403.350000px;}
.x4d_c00318{left:407.970000px;}
.x63_c00318{left:412.043175px;}
.x17_c00318{left:414.990000px;}
.x9f_c00318{left:420.378150px;}
.x6d_c00318{left:421.850025px;}
.x4e_c00318{left:426.600000px;}
.x22_c00318{left:428.490000px;}
.x89_c00318{left:430.922063px;}
.x44_c00318{left:432.000000px;}
.x2d_c00318{left:435.510000px;}
.x6e_c00318{left:436.974975px;}
.x18_c00318{left:442.530000px;}
.xab_c00318{left:447.131550px;}
.x4f_c00318{left:449.820000px;}
.x64_c00318{left:452.287762px;}
.x69_c00318{left:453.334463px;}
.xa7_c00318{left:457.380863px;}
.x6f_c00318{left:458.582475px;}
.x77_c00318{left:459.871688px;}
.x3d_c00318{left:460.890000px;}
.x33_c00318{left:463.050000px;}
.x93_c00318{left:464.430188px;}
.x7f_c00318{left:467.169488px;}
.x23_c00318{left:468.450000px;}
.x86_c00318{left:471.169800px;}
.x2e_c00318{left:474.930000px;}
.xd_c00318{left:478.440000px;}
.x54_c00318{left:479.520000px;}
.x19_c00318{left:481.950000px;}
.xac_c00318{left:488.689163px;}
.x8a_c00318{left:490.363800px;}
.x70_c00318{left:491.802713px;}
.x45_c00318{left:493.020000px;}
.x2f_c00318{left:497.880000px;}
.x7b_c00318{left:499.004325px;}
.xe_c00318{left:505.440000px;}
.x8f_c00318{left:506.834775px;}
.x59_c00318{left:507.987000px;}
.x46_c00318{left:509.760000px;}
.x1a_c00318{left:511.110000px;}
.x24_c00318{left:512.730000px;}
.xad_c00318{left:517.320000px;}
.x9c_c00318{left:518.746800px;}
.x3e_c00318{left:520.560000px;}
.x5a_c00318{left:521.779500px;}
.x1b_c00318{left:523.800000px;}
.x3_c00318{left:526.483500px;}
.x8b_c00318{left:527.895675px;}
.x34_c00318{left:530.280000px;}
.x47_c00318{left:532.710000px;}
.xf_c00318{left:536.760000px;}
.x87_c00318{left:543.285938px;}
.x94_c00318{left:545.459138px;}
.x30_c00318{left:548.100000px;}
.x80_c00318{left:550.323375px;}
.x71_c00318{left:552.571163px;}
.x6a_c00318{left:555.413363px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.fs12_c00318{font-size:19.600000pt;}
.fs14_c00318{font-size:44.800000pt;}
.fs15_c00318{font-size:46.666667pt;}
.fs16_c00318{font-size:49.466667pt;}
.fs13_c00318{font-size:51.333333pt;}
.fsd_c00318{font-size:56.017497pt;}
.fs7_c00318{font-size:56.933333pt;}
.fs11_c00318{font-size:57.884747pt;}
.fs2_c00318{font-size:59.733333pt;}
.fsb_c00318{font-size:59.751997pt;}
.fs6_c00318{font-size:60.666667pt;}
.fsf_c00318{font-size:60.685622pt;}
.fs3_c00318{font-size:61.600000pt;}
.fsc_c00318{font-size:61.619247pt;}
.fs4_c00318{font-size:62.533333pt;}
.fs10_c00318{font-size:62.552872pt;}
.fsa_c00318{font-size:63.486497pt;}
.fs9_c00318{font-size:64.420122pt;}
.fs1_c00318{font-size:65.333333pt;}
.fs5_c00318{font-size:67.200000pt;}
.fse_c00318{font-size:71.889121pt;}
.fs8_c00318{font-size:91.495246pt;}
.fs0_c00318{font-size:127.897607pt;}
.y0_c00318{bottom:0.000000pt;}
.yd0_c00318{bottom:152.201333pt;}
.yd2_c00318{bottom:168.206667pt;}
.ycf_c00318{bottom:168.450667pt;}
.yd1_c00318{bottom:183.930667pt;}
.yce_c00318{bottom:215.760000pt;}
.ycd_c00318{bottom:227.930167pt;}
.ycc_c00318{bottom:228.232700pt;}
.ycb_c00318{bottom:228.360300pt;}
.yca_c00318{bottom:228.692767pt;}
.yc9_c00318{bottom:228.845833pt;}
.yc8_c00318{bottom:229.108900pt;}
.yc7_c00318{bottom:229.779867pt;}
.yc6_c00318{bottom:229.997467pt;}
.yc5_c00318{bottom:230.205433pt;}
.yc4_c00318{bottom:231.119400pt;}
.yc3_c00318{bottom:231.497800pt;}
.yc2_c00318{bottom:249.765300pt;}
.yc1_c00318{bottom:250.192933pt;}
.yc0_c00318{bottom:250.462033pt;}
.ybf_c00318{bottom:250.982967pt;}
.ybe_c00318{bottom:251.696600pt;}
.ybd_c00318{bottom:251.927000pt;}
.ybc_c00318{bottom:252.385367pt;}
.ybb_c00318{bottom:268.912967pt;}
.yba_c00318{bottom:269.067567pt;}
.yb9_c00318{bottom:269.194233pt;}
.yb8_c00318{bottom:269.390867pt;}
.yb7_c00318{bottom:269.497300pt;}
.yb6_c00318{bottom:269.909967pt;}
.yb5_c00318{bottom:270.161800pt;}
.yb4_c00318{bottom:270.412600pt;}
.yb3_c00318{bottom:270.583667pt;}
.yb2_c00318{bottom:270.736967pt;}
.yb1_c00318{bottom:270.897400pt;}
.yb0_c00318{bottom:271.007567pt;}
.yaf_c00318{bottom:271.271333pt;}
.yae_c00318{bottom:271.430467pt;}
.yad_c00318{bottom:271.513700pt;}
.yac_c00318{bottom:271.829700pt;}
.yab_c00318{bottom:288.768533pt;}
.yaa_c00318{bottom:288.969267pt;}
.ya9_c00318{bottom:289.304600pt;}
.ya8_c00318{bottom:289.468800pt;}
.ya7_c00318{bottom:289.773067pt;}
.ya6_c00318{bottom:290.328467pt;}
.ya5_c00318{bottom:290.635100pt;}
.ya4_c00318{bottom:290.933533pt;}
.ya3_c00318{bottom:291.157967pt;}
.ya2_c00318{bottom:291.256933pt;}
.ya1_c00318{bottom:292.023000pt;}
.ya0_c00318{bottom:292.477233pt;}
.y9f_c00318{bottom:309.574400pt;}
.y9e_c00318{bottom:309.686233pt;}
.y9d_c00318{bottom:309.810100pt;}
.y9c_c00318{bottom:309.937400pt;}
.y9b_c00318{bottom:310.489233pt;}
.y9a_c00318{bottom:310.672533pt;}
.y99_c00318{bottom:310.923033pt;}
.y98_c00318{bottom:311.250900pt;}
.y97_c00318{bottom:311.422800pt;}
.y96_c00318{bottom:311.734967pt;}
.y95_c00318{bottom:311.955600pt;}
.y94_c00318{bottom:312.228300pt;}
.y93_c00318{bottom:312.402967pt;}
.y92_c00318{bottom:330.044333pt;}
.y91_c00318{bottom:330.512900pt;}
.y90_c00318{bottom:330.839333pt;}
.y8f_c00318{bottom:331.003933pt;}
.y8e_c00318{bottom:331.133133pt;}
.y8d_c00318{bottom:331.463600pt;}
.y8c_c00318{bottom:332.105467pt;}
.y8b_c00318{bottom:332.263900pt;}
.y8a_c00318{bottom:332.557800pt;}
.y89_c00318{bottom:332.807633pt;}
.y88_c00318{bottom:350.090233pt;}
.y87_c00318{bottom:350.481600pt;}
.y86_c00318{bottom:350.594067pt;}
.y85_c00318{bottom:350.854567pt;}
.y84_c00318{bottom:351.195167pt;}
.y83_c00318{bottom:351.379800pt;}
.y82_c00318{bottom:351.599067pt;}
.y81_c00318{bottom:351.752867pt;}
.y80_c00318{bottom:352.076200pt;}
.y7f_c00318{bottom:352.228633pt;}
.y7e_c00318{bottom:352.705233pt;}
.y7d_c00318{bottom:352.972167pt;}
.y7c_c00318{bottom:370.716900pt;}
.y7b_c00318{bottom:370.999967pt;}
.y7a_c00318{bottom:371.241933pt;}
.y79_c00318{bottom:371.629767pt;}
.y78_c00318{bottom:371.873867pt;}
.y77_c00318{bottom:372.068433pt;}
.y76_c00318{bottom:372.386467pt;}
.y75_c00318{bottom:372.495267pt;}
.y74_c00318{bottom:372.688933pt;}
.y73_c00318{bottom:373.123800pt;}
.y72_c00318{bottom:373.379600pt;}
.y71_c00318{bottom:390.773700pt;}
.y70_c00318{bottom:390.894867pt;}
.y6f_c00318{bottom:391.007367pt;}
.y6e_c00318{bottom:391.377033pt;}
.y6d_c00318{bottom:391.560000pt;}
.y6c_c00318{bottom:391.871133pt;}
.y6b_c00318{bottom:392.035733pt;}
.y6a_c00318{bottom:392.394367pt;}
.y69_c00318{bottom:392.845900pt;}
.y68_c00318{bottom:393.091367pt;}
.y67_c00318{bottom:393.245133pt;}
.y66_c00318{bottom:393.546967pt;}
.y65_c00318{bottom:410.667000pt;}
.y64_c00318{bottom:410.892767pt;}
.y63_c00318{bottom:411.179567pt;}
.y62_c00318{bottom:411.685033pt;}
.y61_c00318{bottom:412.043233pt;}
.y60_c00318{bottom:412.622567pt;}
.y5f_c00318{bottom:413.216300pt;}
.y5e_c00318{bottom:413.415267pt;}
.y5d_c00318{bottom:413.773267pt;}
.y5c_c00318{bottom:413.953733pt;}
.y5b_c00318{bottom:431.410333pt;}
.y5a_c00318{bottom:431.730167pt;}
.y59_c00318{bottom:431.928033pt;}
.y58_c00318{bottom:432.146600pt;}
.y57_c00318{bottom:432.626400pt;}
.y56_c00318{bottom:432.813100pt;}
.y55_c00318{bottom:433.244933pt;}
.y54_c00318{bottom:433.529400pt;}
.y53_c00318{bottom:433.730567pt;}
.y52_c00318{bottom:434.176300pt;}
.y51_c00318{bottom:434.361600pt;}
.y50_c00318{bottom:451.938867pt;}
.y4f_c00318{bottom:452.385367pt;}
.y4e_c00318{bottom:452.562167pt;}
.y4d_c00318{bottom:452.773133pt;}
.y4c_c00318{bottom:453.081100pt;}
.y4b_c00318{bottom:453.332900pt;}
.y4a_c00318{bottom:453.787933pt;}
.y49_c00318{bottom:453.946500pt;}
.y48_c00318{bottom:454.527700pt;}
.y47_c00318{bottom:471.558067pt;}
.y46_c00318{bottom:471.692600pt;}
.y45_c00318{bottom:472.104533pt;}
.y44_c00318{bottom:472.309200pt;}
.y43_c00318{bottom:472.510467pt;}
.y42_c00318{bottom:472.676267pt;}
.y41_c00318{bottom:472.904867pt;}
.y40_c00318{bottom:473.314733pt;}
.y3f_c00318{bottom:473.566567pt;}
.y3e_c00318{bottom:473.714400pt;}
.y3d_c00318{bottom:473.914267pt;}
.y3c_c00318{bottom:474.286067pt;}
.y3b_c00318{bottom:474.452633pt;}
.y3a_c00318{bottom:493.347100pt;}
.y39_c00318{bottom:493.347333pt;}
.y36_c00318{bottom:493.347533pt;}
.y37_c00318{bottom:493.347633pt;}
.y35_c00318{bottom:493.347733pt;}
.y38_c00318{bottom:493.347767pt;}
.y30_c00318{bottom:493.348100pt;}
.y33_c00318{bottom:493.348133pt;}
.y34_c00318{bottom:493.348200pt;}
.y31_c00318{bottom:493.348300pt;}
.y2f_c00318{bottom:493.348500pt;}
.y32_c00318{bottom:493.348600pt;}
.y2e_c00318{bottom:512.325167pt;}
.y2d_c00318{bottom:512.960567pt;}
.y2c_c00318{bottom:513.272167pt;}
.y2b_c00318{bottom:513.453800pt;}
.y2a_c00318{bottom:514.151467pt;}
.y29_c00318{bottom:514.286000pt;}
.y28_c00318{bottom:514.571233pt;}
.y27_c00318{bottom:514.788333pt;}
.y26_c00318{bottom:514.897500pt;}
.y25_c00318{bottom:515.268967pt;}
.y24_c00318{bottom:531.827733pt;}
.y23_c00318{bottom:532.271033pt;}
.y22_c00318{bottom:532.473333pt;}
.y21_c00318{bottom:532.795300pt;}
.y20_c00318{bottom:533.262033pt;}
.y1f_c00318{bottom:533.396433pt;}
.y1e_c00318{bottom:533.628600pt;}
.y1d_c00318{bottom:534.040533pt;}
.y1c_c00318{bottom:534.223633pt;}
.y1b_c00318{bottom:534.511000pt;}
.y1a_c00318{bottom:534.668433pt;}
.y19_c00318{bottom:534.888933pt;}
.y18_c00318{bottom:535.226333pt;}
.y17_c00318{bottom:535.436133pt;}
.y16_c00318{bottom:545.115267pt;}
.y15_c00318{bottom:545.421767pt;}
.y14_c00318{bottom:546.464833pt;}
.y13_c00318{bottom:549.727367pt;}
.y12_c00318{bottom:550.227767pt;}
.y11_c00318{bottom:550.918300pt;}
.y10_c00318{bottom:552.135167pt;}
.yf_c00318{bottom:553.274500pt;}
.ye_c00318{bottom:553.804000pt;}
.yd_c00318{bottom:554.888000pt;}
.yc_c00318{bottom:573.712000pt;}
.yb_c00318{bottom:593.450667pt;}
.ya_c00318{bottom:613.596000pt;}
.y9_c00318{bottom:633.577333pt;}
.y8_c00318{bottom:654.636000pt;}
.y7_c00318{bottom:674.556000pt;}
.y6_c00318{bottom:694.701333pt;}
.y5_c00318{bottom:714.382667pt;}
.y4_c00318{bottom:734.542667pt;}
.y3_c00318{bottom:767.846467pt;}
.y2_c00318{bottom:772.521261pt;}
.y1_c00318{bottom:774.250667pt;}
.h14_c00318{height:19.600000pt;}
.h16_c00318{height:44.800000pt;}
.h17_c00318{height:46.666667pt;}
.h18_c00318{height:49.466667pt;}
.h15_c00318{height:51.333333pt;}
.hf_c00318{height:56.017497pt;}
.h9_c00318{height:56.933333pt;}
.h13_c00318{height:57.884747pt;}
.h4_c00318{height:59.733333pt;}
.hd_c00318{height:59.751997pt;}
.h8_c00318{height:60.666667pt;}
.h11_c00318{height:60.685622pt;}
.h5_c00318{height:61.600000pt;}
.he_c00318{height:61.619247pt;}
.h6_c00318{height:62.533333pt;}
.h12_c00318{height:62.552872pt;}
.hc_c00318{height:63.486497pt;}
.hb_c00318{height:64.420122pt;}
.h3_c00318{height:65.333333pt;}
.h7_c00318{height:67.200000pt;}
.h10_c00318{height:71.889121pt;}
.ha_c00318{height:91.495246pt;}
.h2_c00318{height:127.897607pt;}
.h1_c00318{height:893.333333pt;}
.h0_c00318{height:893.466667pt;}
.w0_c00318{width:624.480000pt;}
.w1_c00318{width:624.666667pt;}
.x0_c00318{left:0.000000pt;}
.xb4_c00318{left:60.720000pt;}
.x7c_c00318{left:67.842900pt;}
.x25_c00318{left:69.840000pt;}
.x81_c00318{left:72.183733pt;}
.x48_c00318{left:73.680000pt;}
.x4_c00318{left:74.640000pt;}
.xaa_c00318{left:85.817700pt;}
.x35_c00318{left:90.000000pt;}
.x49_c00318{left:90.960000pt;}
.x7d_c00318{left:94.253433pt;}
.x5b_c00318{left:96.111267pt;}
.x98_c00318{left:98.089033pt;}
.xae_c00318{left:100.560000pt;}
.x31_c00318{left:106.320000pt;}
.x5_c00318{left:107.520000pt;}
.x95_c00318{left:109.370667pt;}
.x50_c00318{left:110.880000pt;}
.x3f_c00318{left:116.160000pt;}
.x4a_c00318{left:117.120000pt;}
.x36_c00318{left:118.080000pt;}
.x10_c00318{left:121.200000pt;}
.x1c_c00318{left:122.160000pt;}
.x9d_c00318{left:123.732233pt;}
.x26_c00318{left:126.480000pt;}
.x51_c00318{left:128.160000pt;}
.xa0_c00318{left:130.283167pt;}
.x6_c00318{left:131.520000pt;}
.x5c_c00318{left:133.568900pt;}
.xb1_c00318{left:134.880000pt;}
.x40_c00318{left:136.560000pt;}
.x37_c00318{left:137.520000pt;}
.x52_c00318{left:138.720000pt;}
.x27_c00318{left:140.640000pt;}
.x65_c00318{left:142.002633pt;}
.xaf_c00318{left:143.520000pt;}
.x72_c00318{left:149.975733pt;}
.x11_c00318{left:152.160000pt;}
.x1d_c00318{left:153.840000pt;}
.x78_c00318{left:156.671700pt;}
.x5d_c00318{left:158.078700pt;}
.x41_c00318{left:159.360000pt;}
.x28_c00318{left:162.240000pt;}
.x82_c00318{left:164.333533pt;}
.x12_c00318{left:167.520000pt;}
.x8c_c00318{left:168.898500pt;}
.x32_c00318{left:172.560000pt;}
.x96_c00318{left:173.946367pt;}
.x5e_c00318{left:175.583033pt;}
.x1_c00318{left:176.885333pt;}
.x73_c00318{left:178.516567pt;}
.x55_c00318{left:183.008000pt;}
.x1e_c00318{left:187.440000pt;}
.xa1_c00318{left:190.746367pt;}
.x42_c00318{left:192.480000pt;}
.xb0_c00318{left:194.880000pt;}
.x7_c00318{left:196.080000pt;}
.x6b_c00318{left:197.563000pt;}
.x74_c00318{left:199.639400pt;}
.x90_c00318{left:201.072933pt;}
.xa2_c00318{left:206.573500pt;}
.x5f_c00318{left:207.517133pt;}
.x13_c00318{left:209.280000pt;}
.xa8_c00318{left:210.442367pt;}
.x8d_c00318{left:212.109933pt;}
.x38_c00318{left:213.600000pt;}
.x8_c00318{left:216.480000pt;}
.x9e_c00318{left:219.811967pt;}
.xb2_c00318{left:225.840000pt;}
.x60_c00318{left:227.915967pt;}
.xa3_c00318{left:229.427767pt;}
.x56_c00318{left:231.682667pt;}
.x66_c00318{left:233.011567pt;}
.x29_c00318{left:235.200000pt;}
.x99_c00318{left:237.567733pt;}
.x83_c00318{left:238.514367pt;}
.xb3_c00318{left:240.960000pt;}
.x53_c00318{left:242.640000pt;}
.x79_c00318{left:244.295100pt;}
.x91_c00318{left:247.200333pt;}
.x1f_c00318{left:249.120000pt;}
.xa4_c00318{left:251.249567pt;}
.x39_c00318{left:252.480000pt;}
.x2_c00318{left:255.494667pt;}
.x9_c00318{left:258.000000pt;}
.x57_c00318{left:259.304000pt;}
.x4b_c00318{left:261.360000pt;}
.xa9_c00318{left:262.499200pt;}
.x20_c00318{left:266.160000pt;}
.x92_c00318{left:269.255600pt;}
.x61_c00318{left:273.744967pt;}
.xa5_c00318{left:275.756600pt;}
.x4c_c00318{left:277.920000pt;}
.x58_c00318{left:279.320000pt;}
.x2a_c00318{left:280.320000pt;}
.xb5_c00318{left:281.760000pt;}
.x9a_c00318{left:284.410133pt;}
.x8e_c00318{left:285.340200pt;}
.x14_c00318{left:288.960000pt;}
.x6c_c00318{left:290.952000pt;}
.x2b_c00318{left:294.960000pt;}
.xb6_c00318{left:295.920000pt;}
.xa_c00318{left:297.840000pt;}
.x3a_c00318{left:300.240000pt;}
.x15_c00318{left:306.480000pt;}
.x43_c00318{left:307.920000pt;}
.x84_c00318{left:310.998500pt;}
.x88_c00318{left:312.472767pt;}
.x62_c00318{left:314.397200pt;}
.x7e_c00318{left:315.602300pt;}
.xb_c00318{left:319.920000pt;}
.x7a_c00318{left:324.268400pt;}
.x75_c00318{left:326.881967pt;}
.x3b_c00318{left:328.800000pt;}
.x16_c00318{left:329.760000pt;}
.x97_c00318{left:331.465233pt;}
.x67_c00318{left:332.643033pt;}
.xb7_c00318{left:335.280000pt;}
.x2c_c00318{left:338.880000pt;}
.xb8_c00318{left:342.000000pt;}
.x9b_c00318{left:346.323300pt;}
.xa6_c00318{left:347.520867pt;}
.x3c_c00318{left:348.960000pt;}
.x76_c00318{left:350.644667pt;}
.x21_c00318{left:354.000000pt;}
.x85_c00318{left:355.692133pt;}
.xc_c00318{left:357.120000pt;}
.x68_c00318{left:358.533333pt;}
.x4d_c00318{left:362.640000pt;}
.x63_c00318{left:366.260600pt;}
.x17_c00318{left:368.880000pt;}
.x9f_c00318{left:373.669467pt;}
.x6d_c00318{left:374.977800pt;}
.x4e_c00318{left:379.200000pt;}
.x22_c00318{left:380.880000pt;}
.x89_c00318{left:383.041833pt;}
.x44_c00318{left:384.000000pt;}
.x2d_c00318{left:387.120000pt;}
.x6e_c00318{left:388.422200pt;}
.x18_c00318{left:393.360000pt;}
.xab_c00318{left:397.450267pt;}
.x4f_c00318{left:399.840000pt;}
.x64_c00318{left:402.033567pt;}
.x69_c00318{left:402.963967pt;}
.xa7_c00318{left:406.560767pt;}
.x6f_c00318{left:407.628867pt;}
.x77_c00318{left:408.774833pt;}
.x3d_c00318{left:409.680000pt;}
.x33_c00318{left:411.600000pt;}
.x93_c00318{left:412.826833pt;}
.x7f_c00318{left:415.261767pt;}
.x23_c00318{left:416.400000pt;}
.x86_c00318{left:418.817600pt;}
.x2e_c00318{left:422.160000pt;}
.xd_c00318{left:425.280000pt;}
.x54_c00318{left:426.240000pt;}
.x19_c00318{left:428.400000pt;}
.xac_c00318{left:434.390367pt;}
.x8a_c00318{left:435.878933pt;}
.x70_c00318{left:437.157967pt;}
.x45_c00318{left:438.240000pt;}
.x2f_c00318{left:442.560000pt;}
.x7b_c00318{left:443.559400pt;}
.xe_c00318{left:449.280000pt;}
.x8f_c00318{left:450.519800pt;}
.x59_c00318{left:451.544000pt;}
.x46_c00318{left:453.120000pt;}
.x1a_c00318{left:454.320000pt;}
.x24_c00318{left:455.760000pt;}
.xad_c00318{left:459.840000pt;}
.x9c_c00318{left:461.108267pt;}
.x3e_c00318{left:462.720000pt;}
.x5a_c00318{left:463.804000pt;}
.x1b_c00318{left:465.600000pt;}
.x3_c00318{left:467.985333pt;}
.x8b_c00318{left:469.240600pt;}
.x34_c00318{left:471.360000pt;}
.x47_c00318{left:473.520000pt;}
.xf_c00318{left:477.120000pt;}
.x87_c00318{left:482.920833pt;}
.x94_c00318{left:484.852567pt;}
.x30_c00318{left:487.200000pt;}
.x80_c00318{left:489.176333pt;}
.x71_c00318{left:491.174367pt;}
.x6a_c00318{left:493.700767pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m8_c00319{transform:matrix(0.007194,-0.000101,0.003500,0.249976,0,0);-ms-transform:matrix(0.007194,-0.000101,0.003500,0.249976,0,0);-webkit-transform:matrix(0.007194,-0.000101,0.003500,0.249976,0,0);}
.m137_c00319{transform:matrix(0.010695,0.000075,-0.001750,0.249994,0,0);-ms-transform:matrix(0.010695,0.000075,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.010695,0.000075,-0.001750,0.249994,0,0);}
.m147_c00319{transform:matrix(0.013114,-0.000170,0.003250,0.249979,0,0);-ms-transform:matrix(0.013114,-0.000170,0.003250,0.249979,0,0);-webkit-transform:matrix(0.013114,-0.000170,0.003250,0.249979,0,0);}
.m16b_c00319{transform:matrix(0.043121,-0.000561,0.003250,0.249979,0,0);-ms-transform:matrix(0.043121,-0.000561,0.003250,0.249979,0,0);-webkit-transform:matrix(0.043121,-0.000561,0.003250,0.249979,0,0);}
.m115_c00319{transform:matrix(0.065278,0.000457,-0.001750,0.249994,0,0);-ms-transform:matrix(0.065278,0.000457,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.065278,0.000457,-0.001750,0.249994,0,0);}
.m3e_c00319{transform:matrix(0.077260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077260,0.000000,0.000000,0.250000,0,0);}
.md9_c00319{transform:matrix(0.078615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078615,0.000000,0.000000,0.250000,0,0);}
.ma8_c00319{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);}
.m62_c00319{transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);}
.mea_c00319{transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);}
.m127_c00319{transform:matrix(0.104832,0.000734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.104832,0.000734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.104832,0.000734,-0.001750,0.249994,0,0);}
.md5_c00319{transform:matrix(0.106335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106335,0.000000,0.000000,0.250000,0,0);}
.m146_c00319{transform:matrix(0.123440,-0.001605,0.003250,0.249979,0,0);-ms-transform:matrix(0.123440,-0.001605,0.003250,0.249979,0,0);-webkit-transform:matrix(0.123440,-0.001605,0.003250,0.249979,0,0);}
.mc_c00319{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);}
.m163_c00319{transform:matrix(0.143793,-0.001869,0.003250,0.249979,0,0);-ms-transform:matrix(0.143793,-0.001869,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143793,-0.001869,0.003250,0.249979,0,0);}
.m50_c00319{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{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);}
.m161_c00319{transform:matrix(0.145718,-0.001894,0.003250,0.249979,0,0);-ms-transform:matrix(0.145718,-0.001894,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145718,-0.001894,0.003250,0.249979,0,0);}
.m141_c00319{transform:matrix(0.146673,-0.001907,0.003250,0.249979,0,0);-ms-transform:matrix(0.146673,-0.001907,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146673,-0.001907,0.003250,0.249979,0,0);}
.m28_c00319{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);}
.m14a_c00319{transform:matrix(0.147603,-0.001919,0.003250,0.249979,0,0);-ms-transform:matrix(0.147603,-0.001919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147603,-0.001919,0.003250,0.249979,0,0);}
.m5_c00319{transform:matrix(0.149020,-0.002086,0.003500,0.249976,0,0);-ms-transform:matrix(0.149020,-0.002086,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149020,-0.002086,0.003500,0.249976,0,0);}
.m43_c00319{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);}
.m47_c00319{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m114_c00319{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);}
.mf_c00319{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);}
.m117_c00319{transform:matrix(0.151296,0.001059,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151296,0.001059,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151296,0.001059,-0.001750,0.249994,0,0);}
.m53_c00319{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);}
.m46_c00319{transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00319{transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);}
.mf7_c00319{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);}
.md3_c00319{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_c00319{transform:matrix(0.155010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155010,0.000000,0.000000,0.250000,0,0);}
.m82_c00319{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);}
.m144_c00319{transform:matrix(0.155202,-0.002018,0.003250,0.249979,0,0);-ms-transform:matrix(0.155202,-0.002018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155202,-0.002018,0.003250,0.249979,0,0);}
.m33_c00319{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);}
.m56_c00319{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);}
.m13_c00319{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);}
.me2_c00319{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);}
.m29_c00319{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);}
.m16a_c00319{transform:matrix(0.156957,-0.002040,0.003250,0.249979,0,0);-ms-transform:matrix(0.156957,-0.002040,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156957,-0.002040,0.003250,0.249979,0,0);}
.m106_c00319{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);}
.m145_c00319{transform:matrix(0.157177,-0.002043,0.003250,0.249979,0,0);-ms-transform:matrix(0.157177,-0.002043,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157177,-0.002043,0.003250,0.249979,0,0);}
.m138_c00319{transform:matrix(0.157222,-0.002044,0.003250,0.249979,0,0);-ms-transform:matrix(0.157222,-0.002044,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157222,-0.002044,0.003250,0.249979,0,0);}
.m8e_c00319{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);}
.m101_c00319{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);}
.m96_c00319{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);}
.m3f_c00319{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);}
.mdb_c00319{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);}
.m112_c00319{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);}
.m21_c00319{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);}
.m18_c00319{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);}
.m131_c00319{transform:matrix(0.162821,0.001140,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162821,0.001140,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162821,0.001140,-0.001750,0.249994,0,0);}
.m2c_c00319{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);}
.m40_c00319{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);}
.med_c00319{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);}
.m35_c00319{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);}
.m3b_c00319{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);}
.mcc_c00319{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);}
.m34_c00319{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);}
.m26_c00319{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);}
.m15_c00319{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);}
.m6e_c00319{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);}
.m11f_c00319{transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);}
.mfd_c00319{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);}
.m7c_c00319{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);}
.m79_c00319{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);}
.mc3_c00319{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);}
.m90_c00319{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);}
.m44_c00319{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);}
.m6f_c00319{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);}
.mf0_c00319{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);}
.mb_c00319{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);}
.m102_c00319{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);}
.m13a_c00319{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);}
.mce_c00319{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);}
.m11b_c00319{transform:matrix(0.169461,0.001186,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169461,0.001186,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169461,0.001186,-0.001750,0.249994,0,0);}
.m10_c00319{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);}
.me5_c00319{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);}
.m25_c00319{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);}
.m3a_c00319{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);}
.md2_c00319{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);}
.me1_c00319{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);}
.m11a_c00319{transform:matrix(0.170376,0.001193,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170376,0.001193,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170376,0.001193,-0.001750,0.249994,0,0);}
.m15b_c00319{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);}
.mc6_c00319{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);}
.m20_c00319{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);}
.m37_c00319{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);}
.m98_c00319{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);}
.m12b_c00319{transform:matrix(0.171051,0.001197,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171051,0.001197,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171051,0.001197,-0.001750,0.249994,0,0);}
.m22_c00319{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);}
.m76_c00319{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.m91_c00319{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);}
.mee_c00319{transform:matrix(0.171740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171740,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{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);}
.mfc_c00319{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);}
.m3d_c00319{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);}
.m5c_c00319{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);}
.m4f_c00319{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);}
.m69_c00319{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);}
.ma4_c00319{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);}
.m38_c00319{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);}
.m8c_c00319{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);}
.m108_c00319{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);}
.mec_c00319{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);}
.m17_c00319{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);}
.m7b_c00319{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);}
.m88_c00319{transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);}
.me0_c00319{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);}
.m6a_c00319{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);}
.m14_c00319{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);}
.m41_c00319{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);}
.m128_c00319{transform:matrix(0.177306,0.001241,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177306,0.001241,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177306,0.001241,-0.001750,0.249994,0,0);}
.mf6_c00319{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);}
.m85_c00319{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);}
.m87_c00319{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);}
.ma1_c00319{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);}
.m12_c00319{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);}
.m6d_c00319{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);}
.m5f_c00319{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);}
.maa_c00319{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);}
.m71_c00319{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);}
.m78_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);}
.me3_c00319{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);}
.m150_c00319{transform:matrix(0.179785,-0.002337,0.003250,0.249979,0,0);-ms-transform:matrix(0.179785,-0.002337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179785,-0.002337,0.003250,0.249979,0,0);}
.mb1_c00319{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);}
.mc4_c00319{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);}
.m14c_c00319{transform:matrix(0.181090,-0.002354,0.003250,0.249979,0,0);-ms-transform:matrix(0.181090,-0.002354,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181090,-0.002354,0.003250,0.249979,0,0);}
.m7d_c00319{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);}
.m5b_c00319{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);}
.m57_c00319{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);}
.m159_c00319{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);}
.m11e_c00319{transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);}
.m66_c00319{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);}
.md6_c00319{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);}
.mb6_c00319{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);}
.m11c_c00319{transform:matrix(0.182696,0.001279,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182696,0.001279,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182696,0.001279,-0.001750,0.249994,0,0);}
.m154_c00319{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);}
.mdc_c00319{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);}
.m49_c00319{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);}
.mf3_c00319{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);}
.mf1_c00319{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);}
.m70_c00319{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);}
.m86_c00319{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);}
.m1e_c00319{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);}
.m134_c00319{transform:matrix(0.184195,0.001289,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184195,0.001289,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184195,0.001289,-0.001750,0.249994,0,0);}
.mc9_c00319{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);}
.m15f_c00319{transform:matrix(0.184669,-0.002401,0.003250,0.249979,0,0);-ms-transform:matrix(0.184669,-0.002401,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184669,-0.002401,0.003250,0.249979,0,0);}
.m55_c00319{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);}
.m5a_c00319{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);}
.m74_c00319{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);}
.m58_c00319{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);}
.m2a_c00319{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);}
.mcb_c00319{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);}
.m30_c00319{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_c00319{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);}
.m92_c00319{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);}
.md8_c00319{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);}
.mf5_c00319{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_c00319{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);}
.m39_c00319{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);}
.md_c00319{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);}
.m13e_c00319{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);}
.ma6_c00319{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);}
.m2_c00319{transform:matrix(0.187432,-0.002624,0.003500,0.249976,0,0);-ms-transform:matrix(0.187432,-0.002624,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187432,-0.002624,0.003500,0.249976,0,0);}
.m2f_c00319{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);}
.mf9_c00319{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);}
.m104_c00319{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);}
.m160_c00319{transform:matrix(0.187954,-0.002443,0.003250,0.249979,0,0);-ms-transform:matrix(0.187954,-0.002443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187954,-0.002443,0.003250,0.249979,0,0);}
.m10f_c00319{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);}
.mab_c00319{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);}
.me8_c00319{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);}
.m42_c00319{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);}
.m9a_c00319{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);}
.m14e_c00319{transform:matrix(0.188789,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188789,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188789,-0.002454,0.003250,0.249979,0,0);}
.me_c00319{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);}
.m148_c00319{transform:matrix(0.188934,-0.002456,0.003250,0.249979,0,0);-ms-transform:matrix(0.188934,-0.002456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188934,-0.002456,0.003250,0.249979,0,0);}
.ma5_c00319{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);}
.mca_c00319{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);}
.m16_c00319{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);}
.m72_c00319{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);}
.m2e_c00319{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);}
.m4c_c00319{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);}
.mb0_c00319{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);}
.mfe_c00319{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);}
.me6_c00319{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);}
.m149_c00319{transform:matrix(0.192454,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192454,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192454,-0.002502,0.003250,0.249979,0,0);}
.m2b_c00319{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);}
.m14b_c00319{transform:matrix(0.192854,-0.002507,0.003250,0.249979,0,0);-ms-transform:matrix(0.192854,-0.002507,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192854,-0.002507,0.003250,0.249979,0,0);}
.m51_c00319{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);}
.mde_c00319{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);}
.mb2_c00319{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);}
.m64_c00319{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);}
.m1c_c00319{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);}
.m1b_c00319{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);}
.m13b_c00319{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);}
.m1f_c00319{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);}
.m8b_c00319{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);}
.m14d_c00319{transform:matrix(0.194364,-0.002527,0.003250,0.249979,0,0);-ms-transform:matrix(0.194364,-0.002527,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194364,-0.002527,0.003250,0.249979,0,0);}
.m75_c00319{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_c00319{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);}
.m81_c00319{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);}
.mf2_c00319{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);}
.m10e_c00319{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);}
.me9_c00319{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);}
.m119_c00319{transform:matrix(0.195185,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195185,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195185,0.001366,-0.001750,0.249994,0,0);}
.m9_c00319{transform:matrix(0.195416,-0.002736,0.003500,0.249976,0,0);-ms-transform:matrix(0.195416,-0.002736,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195416,-0.002736,0.003500,0.249976,0,0);}
.mb3_c00319{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);}
.md1_c00319{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);}
.m2d_c00319{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);}
.m10b_c00319{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);}
.m9c_c00319{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);}
.m54_c00319{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);}
.m99_c00319{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);}
.m164_c00319{transform:matrix(0.196673,-0.002557,0.003250,0.249979,0,0);-ms-transform:matrix(0.196673,-0.002557,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196673,-0.002557,0.003250,0.249979,0,0);}
.m73_c00319{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);}
.m93_c00319{transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197815,0.000000,0.000000,0.250000,0,0);}
.m169_c00319{transform:matrix(0.197978,-0.002574,0.003250,0.249979,0,0);-ms-transform:matrix(0.197978,-0.002574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197978,-0.002574,0.003250,0.249979,0,0);}
.m9b_c00319{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);}
.m129_c00319{transform:matrix(0.198725,0.001391,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198725,0.001391,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198725,0.001391,-0.001750,0.249994,0,0);}
.md7_c00319{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);}
.m32_c00319{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);}
.m111_c00319{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);}
.m122_c00319{transform:matrix(0.199205,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199205,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199205,0.001394,-0.001750,0.249994,0,0);}
.mdd_c00319{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);}
.m126_c00319{transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199280,0.001395,-0.001750,0.249994,0,0);}
.m5d_c00319{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);}
.m83_c00319{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);}
.ma9_c00319{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);}
.m94_c00319{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);}
.m60_c00319{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);}
.m152_c00319{transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);-ms-transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201188,-0.002615,0.003250,0.249979,0,0);}
.m4a_c00319{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);}
.md4_c00319{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);}
.mcd_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);}
.m110_c00319{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);}
.m68_c00319{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);}
.m7e_c00319{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);}
.m16e_c00319{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);}
.m136_c00319{transform:matrix(0.203200,0.001422,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203200,0.001422,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203200,0.001422,-0.001750,0.249994,0,0);}
.m139_c00319{transform:matrix(0.203468,-0.002645,0.003250,0.249979,0,0);-ms-transform:matrix(0.203468,-0.002645,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203468,-0.002645,0.003250,0.249979,0,0);}
.m4b_c00319{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);}
.m165_c00319{transform:matrix(0.204428,-0.002658,0.003250,0.249979,0,0);-ms-transform:matrix(0.204428,-0.002658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204428,-0.002658,0.003250,0.249979,0,0);}
.m153_c00319{transform:matrix(0.204608,-0.002660,0.003250,0.249979,0,0);-ms-transform:matrix(0.204608,-0.002660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204608,-0.002660,0.003250,0.249979,0,0);}
.m10c_c00319{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);}
.m89_c00319{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);}
.m6c_c00319{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);}
.m113_c00319{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);}
.mc7_c00319{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);}
.m4_c00319{transform:matrix(0.206980,-0.002898,0.003500,0.249976,0,0);-ms-transform:matrix(0.206980,-0.002898,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206980,-0.002898,0.003500,0.249976,0,0);}
.mfb_c00319{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);}
.m12a_c00319{transform:matrix(0.207340,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207340,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207340,0.001451,-0.001750,0.249994,0,0);}
.m4d_c00319{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);}
.m155_c00319{transform:matrix(0.208292,-0.002708,0.003250,0.249979,0,0);-ms-transform:matrix(0.208292,-0.002708,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208292,-0.002708,0.003250,0.249979,0,0);}
.m135_c00319{transform:matrix(0.208640,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208640,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208640,0.001460,-0.001750,0.249994,0,0);}
.m95_c00319{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);}
.ma2_c00319{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);}
.m12c_c00319{transform:matrix(0.209165,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209165,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209165,0.001464,-0.001750,0.249994,0,0);}
.mb4_c00319{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);}
.m10a_c00319{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);}
.m15d_c00319{transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210517,-0.002737,0.003250,0.249979,0,0);}
.m124_c00319{transform:matrix(0.210540,0.001474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210540,0.001474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210540,0.001474,-0.001750,0.249994,0,0);}
.mf8_c00319{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);}
.m9d_c00319{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);}
.m16c_c00319{transform:matrix(0.211407,-0.002748,0.003250,0.249979,0,0);-ms-transform:matrix(0.211407,-0.002748,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211407,-0.002748,0.003250,0.249979,0,0);}
.m151_c00319{transform:matrix(0.211587,-0.002751,0.003250,0.249979,0,0);-ms-transform:matrix(0.211587,-0.002751,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211587,-0.002751,0.003250,0.249979,0,0);}
.m109_c00319{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);}
.m107_c00319{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);}
.maf_c00319{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);}
.m168_c00319{transform:matrix(0.212767,-0.002766,0.003250,0.249979,0,0);-ms-transform:matrix(0.212767,-0.002766,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212767,-0.002766,0.003250,0.249979,0,0);}
.m7_c00319{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);}
.mc5_c00319{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);}
.mff_c00319{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.mb8_c00319{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);}
.m7f_c00319{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);}
.mdf_c00319{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);}
.m84_c00319{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);}
.m1d_c00319{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);}
.m16d_c00319{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);}
.m103_c00319{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);}
.mba_c00319{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);}
.mc1_c00319{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);}
.m158_c00319{transform:matrix(0.217162,-0.002823,0.003250,0.249979,0,0);-ms-transform:matrix(0.217162,-0.002823,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217162,-0.002823,0.003250,0.249979,0,0);}
.ma3_c00319{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);}
.ma7_c00319{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);}
.m59_c00319{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);}
.mbb_c00319{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);}
.me4_c00319{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);}
.mbf_c00319{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);}
.m24_c00319{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);}
.m12e_c00319{transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);}
.m23_c00319{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);}
.m123_c00319{transform:matrix(0.218995,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218995,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218995,0.001533,-0.001750,0.249994,0,0);}
.m125_c00319{transform:matrix(0.219180,0.001534,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219180,0.001534,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219180,0.001534,-0.001750,0.249994,0,0);}
.mc0_c00319{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);}
.m8f_c00319{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00319{transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);}
.mf4_c00319{transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222220,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{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);}
.m140_c00319{transform:matrix(0.223521,-0.002906,0.003250,0.249979,0,0);-ms-transform:matrix(0.223521,-0.002906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223521,-0.002906,0.003250,0.249979,0,0);}
.mbd_c00319{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);}
.m8d_c00319{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);}
.mbc_c00319{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);}
.mad_c00319{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);}
.m105_c00319{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);}
.mc2_c00319{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);}
.m167_c00319{transform:matrix(0.226521,-0.002945,0.003250,0.249979,0,0);-ms-transform:matrix(0.226521,-0.002945,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226521,-0.002945,0.003250,0.249979,0,0);}
.m15a_c00319{transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);-ms-transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227156,-0.002953,0.003250,0.249979,0,0);}
.m11_c00319{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);}
.m77_c00319{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);}
.mae_c00319{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);}
.ma0_c00319{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);}
.m16f_c00319{transform:matrix(0.229586,-0.002985,0.003250,0.249979,0,0);-ms-transform:matrix(0.229586,-0.002985,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229586,-0.002985,0.003250,0.249979,0,0);}
.m166_c00319{transform:matrix(0.229746,-0.002987,0.003250,0.249979,0,0);-ms-transform:matrix(0.229746,-0.002987,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229746,-0.002987,0.003250,0.249979,0,0);}
.m118_c00319{transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);}
.mfa_c00319{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);}
.m6b_c00319{transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);}
.m10d_c00319{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);}
.m12d_c00319{transform:matrix(0.232164,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232164,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232164,0.001625,-0.001750,0.249994,0,0);}
.m52_c00319{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);}
.m7a_c00319{transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);}
.m11d_c00319{transform:matrix(0.233869,0.001637,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233869,0.001637,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233869,0.001637,-0.001750,0.249994,0,0);}
.mef_c00319{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);}
.m132_c00319{transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);}
.m61_c00319{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);}
.m19_c00319{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);}
.m9e_c00319{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);}
.m121_c00319{transform:matrix(0.240139,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240139,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240139,0.001681,-0.001750,0.249994,0,0);}
.m156_c00319{transform:matrix(0.240640,-0.003128,0.003250,0.249979,0,0);-ms-transform:matrix(0.240640,-0.003128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240640,-0.003128,0.003250,0.249979,0,0);}
.m36_c00319{transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);}
.m133_c00319{transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);}
.m120_c00319{transform:matrix(0.241254,0.001689,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241254,0.001689,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241254,0.001689,-0.001750,0.249994,0,0);}
.m6_c00319{transform:matrix(0.241441,-0.003380,0.003500,0.249976,0,0);-ms-transform:matrix(0.241441,-0.003380,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241441,-0.003380,0.003500,0.249976,0,0);}
.m97_c00319{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);}
.m63_c00319{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);}
.m143_c00319{transform:matrix(0.244814,-0.003183,0.003250,0.249979,0,0);-ms-transform:matrix(0.244814,-0.003183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244814,-0.003183,0.003250,0.249979,0,0);}
.mac_c00319{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);}
.me7_c00319{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.m13d_c00319{transform:matrix(0.246079,-0.003199,0.003250,0.249979,0,0);-ms-transform:matrix(0.246079,-0.003199,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246079,-0.003199,0.003250,0.249979,0,0);}
.mb9_c00319{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);}
.m13c_c00319{transform:matrix(0.248664,-0.003233,0.003250,0.249979,0,0);-ms-transform:matrix(0.248664,-0.003233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248664,-0.003233,0.003250,0.249979,0,0);}
.m100_c00319{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);}
.m157_c00319{transform:matrix(0.251079,-0.003264,0.003250,0.249979,0,0);-ms-transform:matrix(0.251079,-0.003264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251079,-0.003264,0.003250,0.249979,0,0);}
.m171_c00319{transform:matrix(0.252159,-0.003278,0.003250,0.249979,0,0);-ms-transform:matrix(0.252159,-0.003278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252159,-0.003278,0.003250,0.249979,0,0);}
.m170_c00319{transform:matrix(0.252784,-0.003286,0.003250,0.249979,0,0);-ms-transform:matrix(0.252784,-0.003286,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252784,-0.003286,0.003250,0.249979,0,0);}
.mb7_c00319{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.mbe_c00319{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);}
.m65_c00319{transform:matrix(0.256375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256375,0.000000,0.000000,0.250000,0,0);}
.meb_c00319{transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);}
.m116_c00319{transform:matrix(0.258479,0.001809,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258479,0.001809,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258479,0.001809,-0.001750,0.249994,0,0);}
.mb5_c00319{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);}
.m12f_c00319{transform:matrix(0.271103,0.001898,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271103,0.001898,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271103,0.001898,-0.001750,0.249994,0,0);}
.m9f_c00319{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m130_c00319{transform:matrix(0.276393,0.001935,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276393,0.001935,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276393,0.001935,-0.001750,0.249994,0,0);}
.m15c_c00319{transform:matrix(0.276532,-0.003595,0.003250,0.249979,0,0);-ms-transform:matrix(0.276532,-0.003595,0.003250,0.249979,0,0);-webkit-transform:matrix(0.276532,-0.003595,0.003250,0.249979,0,0);}
.mcf_c00319{transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283160,0.000000,0.000000,0.250000,0,0);}
.m142_c00319{transform:matrix(0.285941,-0.003717,0.003250,0.249979,0,0);-ms-transform:matrix(0.285941,-0.003717,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285941,-0.003717,0.003250,0.249979,0,0);}
.mc8_c00319{transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);}
.m162_c00319{transform:matrix(0.306134,-0.003980,0.003250,0.249979,0,0);-ms-transform:matrix(0.306134,-0.003980,0.003250,0.249979,0,0);-webkit-transform:matrix(0.306134,-0.003980,0.003250,0.249979,0,0);}
.md0_c00319{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);}
.m13f_c00319{transform:matrix(0.356675,-0.004637,0.003250,0.249979,0,0);-ms-transform:matrix(0.356675,-0.004637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356675,-0.004637,0.003250,0.249979,0,0);}
.m67_c00319{transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370080,0.000000,0.000000,0.250000,0,0);}
.m14f_c00319{transform:matrix(0.376573,-0.004895,0.003250,0.249979,0,0);-ms-transform:matrix(0.376573,-0.004895,0.003250,0.249979,0,0);-webkit-transform:matrix(0.376573,-0.004895,0.003250,0.249979,0,0);}
.m15e_c00319{transform:matrix(0.384043,-0.004993,0.003250,0.249979,0,0);-ms-transform:matrix(0.384043,-0.004993,0.003250,0.249979,0,0);-webkit-transform:matrix(0.384043,-0.004993,0.003250,0.249979,0,0);}
.m1_c00319{transform:matrix(0.399966,-0.005600,0.003500,0.249976,0,0);-ms-transform:matrix(0.399966,-0.005600,0.003500,0.249976,0,0);-webkit-transform:matrix(0.399966,-0.005600,0.003500,0.249976,0,0);}
.m3_c00319{transform:matrix(0.410670,-0.005749,0.003500,0.249976,0,0);-ms-transform:matrix(0.410670,-0.005749,0.003500,0.249976,0,0);-webkit-transform:matrix(0.410670,-0.005749,0.003500,0.249976,0,0);}
.ma_c00319{transform:matrix(0.426468,-0.005971,0.003500,0.249976,0,0);-ms-transform:matrix(0.426468,-0.005971,0.003500,0.249976,0,0);-webkit-transform:matrix(0.426468,-0.005971,0.003500,0.249976,0,0);}
.m0_c00319{transform:matrix(0.932374,-0.013053,0.003500,0.249976,0,0);-ms-transform:matrix(0.932374,-0.013053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.932374,-0.013053,0.003500,0.249976,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;}
.fs10_c00319{font-size:45.153815px;}
.fsf_c00319{font-size:50.404259px;}
.fse_c00319{font-size:54.604614px;}
.fsd_c00319{font-size:65.105501px;}
.fs9_c00319{font-size:66.150000px;}
.fs7_c00319{font-size:67.200000px;}
.fs4_c00319{font-size:68.250000px;}
.fs5_c00319{font-size:69.300000px;}
.fsc_c00319{font-size:69.301698px;}
.fs3_c00319{font-size:70.350000px;}
.fs8_c00319{font-size:71.400000px;}
.fsb_c00319{font-size:71.401749px;}
.fsa_c00319{font-size:72.450000px;}
.fs2_c00319{font-size:73.500000px;}
.fs6_c00319{font-size:75.600000px;}
.fs0_c00319{font-size:91.358952px;}
.fs1_c00319{font-size:118.661627px;}
.y0_c00319{bottom:0.000000px;}
.ya6_c00319{bottom:146.339613px;}
.ya7_c00319{bottom:146.607494px;}
.ya8_c00319{bottom:147.106745px;}
.ya9_c00319{bottom:147.418470px;}
.yaa_c00319{bottom:148.032675px;}
.yab_c00319{bottom:148.979183px;}
.yac_c00319{bottom:149.074614px;}
.yad_c00319{bottom:149.310119px;}
.yae_c00319{bottom:149.672436px;}
.yaf_c00319{bottom:149.833613px;}
.yb0_c00319{bottom:150.637647px;}
.yb1_c00319{bottom:150.842240px;}
.y9c_c00319{bottom:171.646079px;}
.ya2_c00319{bottom:171.646443px;}
.ya0_c00319{bottom:171.646491px;}
.ya1_c00319{bottom:171.646523px;}
.y9e_c00319{bottom:171.646550px;}
.y9b_c00319{bottom:171.646578px;}
.y9d_c00319{bottom:171.646599px;}
.ya3_c00319{bottom:171.646884px;}
.y9a_c00319{bottom:171.647096px;}
.y9f_c00319{bottom:171.647100px;}
.y99_c00319{bottom:171.647115px;}
.ya4_c00319{bottom:171.647195px;}
.y98_c00319{bottom:171.647634px;}
.ya5_c00319{bottom:171.647655px;}
.y97_c00319{bottom:171.648153px;}
.y91_c00319{bottom:188.829816px;}
.y8c_c00319{bottom:188.829824px;}
.y8f_c00319{bottom:188.829915px;}
.y88_c00319{bottom:188.830059px;}
.y92_c00319{bottom:188.830088px;}
.y8e_c00319{bottom:188.830115px;}
.y8d_c00319{bottom:188.830164px;}
.y8a_c00319{bottom:188.830251px;}
.y8b_c00319{bottom:188.830362px;}
.y90_c00319{bottom:188.830526px;}
.y93_c00319{bottom:188.830728px;}
.y89_c00319{bottom:188.830760px;}
.y94_c00319{bottom:188.831450px;}
.y96_c00319{bottom:188.832032px;}
.y95_c00319{bottom:188.832060px;}
.y78_c00319{bottom:200.073000px;}
.y79_c00319{bottom:200.374568px;}
.y7a_c00319{bottom:200.613228px;}
.y7b_c00319{bottom:201.297756px;}
.y7c_c00319{bottom:202.098290px;}
.y7d_c00319{bottom:202.344146px;}
.y7e_c00319{bottom:202.543416px;}
.y7f_c00319{bottom:202.968867px;}
.y80_c00319{bottom:203.186058px;}
.y81_c00319{bottom:204.098210px;}
.y82_c00319{bottom:204.494489px;}
.y83_c00319{bottom:204.818481px;}
.y84_c00319{bottom:205.052579px;}
.y85_c00319{bottom:205.491251px;}
.y86_c00319{bottom:205.740714px;}
.y87_c00319{bottom:206.270958px;}
.y77_c00319{bottom:255.013768px;}
.y76_c00319{bottom:255.268866px;}
.y75_c00319{bottom:255.865779px;}
.y74_c00319{bottom:256.581317px;}
.y73_c00319{bottom:256.701884px;}
.y72_c00319{bottom:256.954293px;}
.y71_c00319{bottom:257.340866px;}
.y70_c00319{bottom:257.642987px;}
.y6f_c00319{bottom:258.135406px;}
.y6e_c00319{bottom:258.210210px;}
.y6d_c00319{bottom:258.554892px;}
.y6c_c00319{bottom:258.939333px;}
.y6b_c00319{bottom:278.104555px;}
.y6a_c00319{bottom:278.323522px;}
.y69_c00319{bottom:278.754684px;}
.y68_c00319{bottom:278.924542px;}
.y67_c00319{bottom:279.024460px;}
.y66_c00319{bottom:279.427534px;}
.y65_c00319{bottom:279.608985px;}
.y64_c00319{bottom:280.051235px;}
.y63_c00319{bottom:280.227015px;}
.y62_c00319{bottom:280.966078px;}
.y61_c00319{bottom:281.134414px;}
.y60_c00319{bottom:281.340487px;}
.y5f_c00319{bottom:300.513008px;}
.y5e_c00319{bottom:300.844199px;}
.y5d_c00319{bottom:300.966807px;}
.y5c_c00319{bottom:301.355979px;}
.y5b_c00319{bottom:301.732236px;}
.y5a_c00319{bottom:302.023107px;}
.y59_c00319{bottom:302.267137px;}
.y58_c00319{bottom:303.161181px;}
.y57_c00319{bottom:303.405002px;}
.y56_c00319{bottom:303.607200px;}
.y55_c00319{bottom:303.750000px;}
.y54_c00319{bottom:323.781000px;}
.y53_c00319{bottom:324.549000px;}
.y52_c00319{bottom:325.008000px;}
.y51_c00319{bottom:325.318500px;}
.y50_c00319{bottom:325.891500px;}
.y4f_c00319{bottom:326.110500px;}
.y4e_c00319{bottom:326.394000px;}
.y4d_c00319{bottom:326.565000px;}
.y4c_c00319{bottom:326.703000px;}
.y4b_c00319{bottom:348.226500px;}
.y4a_c00319{bottom:371.145000px;}
.y49_c00319{bottom:394.113000px;}
.y48_c00319{bottom:415.585500px;}
.y47_c00319{bottom:415.990500px;}
.y46_c00319{bottom:416.097000px;}
.y45_c00319{bottom:416.643000px;}
.y44_c00319{bottom:416.904000px;}
.y43_c00319{bottom:417.048000px;}
.y42_c00319{bottom:417.291000px;}
.y41_c00319{bottom:417.562500px;}
.y40_c00319{bottom:418.188000px;}
.y3f_c00319{bottom:418.501500px;}
.y3e_c00319{bottom:440.029500px;}
.y3d_c00319{bottom:459.475500px;}
.y3c_c00319{bottom:459.807000px;}
.y3b_c00319{bottom:459.949500px;}
.y3a_c00319{bottom:460.842000px;}
.y39_c00319{bottom:461.001000px;}
.y38_c00319{bottom:461.334000px;}
.y37_c00319{bottom:461.668500px;}
.y36_c00319{bottom:461.853000px;}
.y35_c00319{bottom:462.393000px;}
.y34_c00319{bottom:462.541500px;}
.y33_c00319{bottom:462.906000px;}
.y32_c00319{bottom:463.287000px;}
.y31_c00319{bottom:463.497000px;}
.y30_c00319{bottom:463.864500px;}
.y2f_c00319{bottom:483.369000px;}
.y2e_c00319{bottom:483.658500px;}
.y2d_c00319{bottom:483.844500px;}
.y2c_c00319{bottom:484.215000px;}
.y2b_c00319{bottom:484.371000px;}
.y2a_c00319{bottom:484.845000px;}
.y29_c00319{bottom:485.086500px;}
.y28_c00319{bottom:485.544000px;}
.y27_c00319{bottom:485.682000px;}
.y26_c00319{bottom:486.273000px;}
.y25_c00319{bottom:506.122500px;}
.y24_c00319{bottom:506.391000px;}
.y23_c00319{bottom:506.818500px;}
.y22_c00319{bottom:506.994000px;}
.y21_c00319{bottom:507.154500px;}
.y20_c00319{bottom:507.598500px;}
.y1f_c00319{bottom:508.222500px;}
.y1e_c00319{bottom:508.440000px;}
.y1d_c00319{bottom:508.906500px;}
.y1c_c00319{bottom:509.083500px;}
.y1b_c00319{bottom:509.221500px;}
.y1a_c00319{bottom:530.679000px;}
.y19_c00319{bottom:553.294500px;}
.y18_c00319{bottom:575.737500px;}
.y17_c00319{bottom:598.351500px;}
.y16_c00319{bottom:620.730000px;}
.y15_c00319{bottom:643.680000px;}
.y14_c00319{bottom:666.090000px;}
.y13_c00319{bottom:689.040000px;}
.y12_c00319{bottom:711.751500px;}
.y11_c00319{bottom:734.194500px;}
.y10_c00319{bottom:757.144500px;}
.yf_c00319{bottom:779.523000px;}
.ye_c00319{bottom:802.203000px;}
.yd_c00319{bottom:824.343000px;}
.y9_c00319{bottom:864.281586px;}
.ya_c00319{bottom:865.279350px;}
.yb_c00319{bottom:868.149786px;}
.yc_c00319{bottom:877.897677px;}
.y1_c00319{bottom:925.293000px;}
.y2_c00319{bottom:928.057230px;}
.y3_c00319{bottom:929.057712px;}
.y4_c00319{bottom:929.466288px;}
.y5_c00319{bottom:930.362799px;}
.y6_c00319{bottom:931.510638px;}
.y7_c00319{bottom:932.186985px;}
.y8_c00319{bottom:932.698923px;}
.h12_c00319{height:45.153815px;}
.h11_c00319{height:50.404259px;}
.h10_c00319{height:54.604614px;}
.hf_c00319{height:65.105501px;}
.hb_c00319{height:66.150000px;}
.h9_c00319{height:67.200000px;}
.h6_c00319{height:68.250000px;}
.h7_c00319{height:69.300000px;}
.he_c00319{height:69.301698px;}
.h5_c00319{height:70.350000px;}
.ha_c00319{height:71.400000px;}
.hd_c00319{height:71.401749px;}
.hc_c00319{height:72.450000px;}
.h4_c00319{height:73.500000px;}
.h8_c00319{height:75.600000px;}
.h2_c00319{height:91.358952px;}
.h3_c00319{height:118.661627px;}
.h0_c00319{height:1008.450000px;}
.h1_c00319{height:1008.750000px;}
.w0_c00319{width:696.000000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:84.736500px;}
.x9_c00319{left:112.995030px;}
.x17_c00319{left:150.120000px;}
.xa_c00319{left:151.364583px;}
.x56_c00319{left:153.090000px;}
.x78_c00319{left:154.357500px;}
.x88_c00319{left:155.518500px;}
.xb1_c00319{left:157.948722px;}
.xae_c00319{left:169.261500px;}
.x9c_c00319{left:170.794500px;}
.x9f_c00319{left:172.984500px;}
.x18_c00319{left:174.150000px;}
.xb2_c00319{left:177.390498px;}
.x95_c00319{left:179.007000px;}
.x6c_c00319{left:181.710000px;}
.x5b_c00319{left:183.870000px;}
.xa5_c00319{left:185.654319px;}
.x3e_c00319{left:187.380000px;}
.x9d_c00319{left:189.712500px;}
.x81_c00319{left:191.844000px;}
.x79_c00319{left:199.437000px;}
.xa0_c00319{left:201.870000px;}
.xab_c00319{left:203.714655px;}
.x33_c00319{left:205.200000px;}
.x66_c00319{left:209.520000px;}
.xd_c00319{left:210.870000px;}
.x82_c00319{left:212.904000px;}
.x19_c00319{left:214.380000px;}
.x6d_c00319{left:218.970000px;}
.x9e_c00319{left:221.278500px;}
.x22_c00319{left:224.910000px;}
.x98_c00319{left:226.257000px;}
.xbe_c00319{left:227.786334px;}
.x34_c00319{left:229.230000px;}
.x73_c00319{left:230.310000px;}
.xe_c00319{left:232.740000px;}
.x7e_c00319{left:234.270000px;}
.x3f_c00319{left:235.980000px;}
.x89_c00319{left:240.298500px;}
.x23_c00319{left:241.380000px;}
.x99_c00319{left:243.537000px;}
.x46_c00319{left:244.620000px;}
.xac_c00319{left:246.740351px;}
.x35_c00319{left:248.400000px;}
.x83_c00319{left:251.022000px;}
.x1a_c00319{left:252.450000px;}
.x7f_c00319{left:253.983000px;}
.x2c_c00319{left:255.420000px;}
.x4f_c00319{left:259.740000px;}
.xb_c00319{left:261.770040px;}
.x24_c00319{left:262.980000px;}
.x62_c00319{left:264.870000px;}
.x7a_c00319{left:266.127000px;}
.x1b_c00319{left:270.540000px;}
.x2_c00319{left:282.181500px;}
.x84_c00319{left:287.425500px;}
.x8d_c00319{left:288.568500px;}
.x74_c00319{left:292.140000px;}
.x2d_c00319{left:295.110000px;}
.x40_c00319{left:297.810000px;}
.x85_c00319{left:302.277000px;}
.x63_c00319{left:304.290000px;}
.x6e_c00319{left:305.370000px;}
.x47_c00319{left:307.260000px;}
.x91_c00319{left:309.147000px;}
.xbf_c00319{left:311.937018px;}
.x50_c00319{left:313.470000px;}
.xa6_c00319{left:315.282819px;}
.x6f_c00319{left:317.790000px;}
.x51_c00319{left:319.950000px;}
.x5c_c00319{left:322.650000px;}
.xaf_c00319{left:325.053000px;}
.x25_c00319{left:326.430000px;}
.x8e_c00319{left:327.460500px;}
.x92_c00319{left:329.667000px;}
.x8a_c00319{left:331.288500px;}
.x75_c00319{left:336.690000px;}
.xf_c00319{left:338.310000px;}
.xa7_c00319{left:340.394319px;}
.x36_c00319{left:341.820000px;}
.x41_c00319{left:343.170000px;}
.x57_c00319{left:345.060000px;}
.x70_c00319{left:346.950000px;}
.xb9_c00319{left:350.206062px;}
.x3_c00319{left:353.644500px;}
.x10_c00319{left:355.320000px;}
.x52_c00319{left:356.940000px;}
.x48_c00319{left:359.100000px;}
.x2e_c00319{left:360.720000px;}
.x26_c00319{left:362.340000px;}
.x1c_c00319{left:364.770000px;}
.x67_c00319{left:367.740000px;}
.x11_c00319{left:375.300000px;}
.x37_c00319{left:376.380000px;}
.x5d_c00319{left:381.780000px;}
.x4_c00319{left:382.828500px;}
.x49_c00319{left:386.910000px;}
.x27_c00319{left:388.260000px;}
.xb3_c00319{left:389.899917px;}
.xba_c00319{left:390.979946px;}
.x68_c00319{left:392.040000px;}
.x1d_c00319{left:395.820000px;}
.xc0_c00319{left:398.016761px;}
.x2f_c00319{left:399.600000px;}
.x53_c00319{left:401.760000px;}
.xa8_c00319{left:403.572819px;}
.xb4_c00319{left:406.911284px;}
.x86_c00319{left:408.106500px;}
.x42_c00319{left:411.210000px;}
.x28_c00319{left:414.990000px;}
.x4a_c00319{left:416.070000px;}
.x38_c00319{left:419.580000px;}
.x80_c00319{left:421.653000px;}
.x1e_c00319{left:424.170000px;}
.x96_c00319{left:428.487000px;}
.x5e_c00319{left:430.110000px;}
.x12_c00319{left:434.700000px;}
.x54_c00319{left:436.320000px;}
.x30_c00319{left:439.290000px;}
.x69_c00319{left:440.640000px;}
.x43_c00319{left:441.990000px;}
.x71_c00319{left:443.610000px;}
.xbb_c00319{left:444.984572px;}
.x5_c00319{left:446.865000px;}
.x1f_c00319{left:450.090000px;}
.x4b_c00319{left:452.790000px;}
.x5f_c00319{left:454.140000px;}
.x13_c00319{left:455.490000px;}
.x87_c00319{left:457.209000px;}
.xc1_c00319{left:461.037899px;}
.x39_c00319{left:464.940000px;}
.x29_c00319{left:466.020000px;}
.x6a_c00319{left:468.990000px;}
.x8b_c00319{left:471.148500px;}
.x7b_c00319{left:472.651500px;}
.x58_c00319{left:475.200000px;}
.xb5_c00319{left:478.197335px;}
.x14_c00319{left:479.520000px;}
.x76_c00319{left:482.760000px;}
.x3a_c00319{left:484.110000px;}
.x60_c00319{left:486.810000px;}
.x2a_c00319{left:490.050000px;}
.x44_c00319{left:491.670000px;}
.xa1_c00319{left:494.587500px;}
.xb6_c00319{left:496.018838px;}
.x7c_c00319{left:497.793000px;}
.x4c_c00319{left:499.500000px;}
.xa9_c00319{left:501.350319px;}
.x31_c00319{left:504.360000px;}
.x8c_c00319{left:507.598500px;}
.xb0_c00319{left:509.376000px;}
.x8f_c00319{left:513.436500px;}
.x72_c00319{left:515.160000px;}
.x4d_c00319{left:518.400000px;}
.x93_c00319{left:520.017000px;}
.x20_c00319{left:522.450000px;}
.xaa_c00319{left:525.615819px;}
.x6_c00319{left:528.853500px;}
.x9a_c00319{left:531.087000px;}
.x59_c00319{left:535.140000px;}
.x45_c00319{left:538.110000px;}
.x2b_c00319{left:540.000000px;}
.xb7_c00319{left:544.082450px;}
.x55_c00319{left:545.400000px;}
.xc2_c00319{left:548.787180px;}
.xa2_c00319{left:550.183500px;}
.x15_c00319{left:551.610000px;}
.xbc_c00319{left:553.263863px;}
.x94_c00319{left:555.387000px;}
.x97_c00319{left:557.277000px;}
.x5a_c00319{left:559.710000px;}
.xb8_c00319{left:561.093816px;}
.x64_c00319{left:562.680000px;}
.x3b_c00319{left:563.760000px;}
.xa3_c00319{left:567.699000px;}
.x9b_c00319{left:569.427000px;}
.x90_c00319{left:571.206000px;}
.x21_c00319{left:574.290000px;}
.xbd_c00319{left:575.676146px;}
.x7_c00319{left:577.164000px;}
.x3c_c00319{left:581.310000px;}
.x6b_c00319{left:585.090000px;}
.x61_c00319{left:587.250000px;}
.x4e_c00319{left:593.190000px;}
.x7d_c00319{left:597.175500px;}
.x32_c00319{left:602.100000px;}
.x16_c00319{left:604.530000px;}
.x77_c00319{left:610.470000px;}
.x8_c00319{left:613.731000px;}
.xa4_c00319{left:615.012000px;}
.x3d_c00319{left:616.140000px;}
.x65_c00319{left:618.300000px;}
.xc_c00319{left:636.663561px;}
.xad_c00319{left:646.372058px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:0.000000pt;}
.fs10_c00319{font-size:40.136724pt;}
.fsf_c00319{font-size:44.803785pt;}
.fse_c00319{font-size:48.537434pt;}
.fsd_c00319{font-size:57.871556pt;}
.fs9_c00319{font-size:58.800000pt;}
.fs7_c00319{font-size:59.733333pt;}
.fs4_c00319{font-size:60.666667pt;}
.fs5_c00319{font-size:61.600000pt;}
.fsc_c00319{font-size:61.601509pt;}
.fs3_c00319{font-size:62.533333pt;}
.fs8_c00319{font-size:63.466667pt;}
.fsb_c00319{font-size:63.468222pt;}
.fsa_c00319{font-size:64.400000pt;}
.fs2_c00319{font-size:65.333333pt;}
.fs6_c00319{font-size:67.200000pt;}
.fs0_c00319{font-size:81.207957pt;}
.fs1_c00319{font-size:105.477002pt;}
.y0_c00319{bottom:0.000000pt;}
.ya6_c00319{bottom:130.079656pt;}
.ya7_c00319{bottom:130.317772pt;}
.ya8_c00319{bottom:130.761551pt;}
.ya9_c00319{bottom:131.038640pt;}
.yaa_c00319{bottom:131.584600pt;}
.yab_c00319{bottom:132.425940pt;}
.yac_c00319{bottom:132.510768pt;}
.yad_c00319{bottom:132.720105pt;}
.yae_c00319{bottom:133.042165pt;}
.yaf_c00319{bottom:133.185433pt;}
.yb0_c00319{bottom:133.900131pt;}
.yb1_c00319{bottom:134.081991pt;}
.y9c_c00319{bottom:152.574292pt;}
.ya2_c00319{bottom:152.574616pt;}
.ya0_c00319{bottom:152.574659pt;}
.ya1_c00319{bottom:152.574687pt;}
.y9e_c00319{bottom:152.574711pt;}
.y9b_c00319{bottom:152.574736pt;}
.y9d_c00319{bottom:152.574755pt;}
.ya3_c00319{bottom:152.575008pt;}
.y9a_c00319{bottom:152.575196pt;}
.y9f_c00319{bottom:152.575200pt;}
.y99_c00319{bottom:152.575213pt;}
.ya4_c00319{bottom:152.575284pt;}
.y98_c00319{bottom:152.575675pt;}
.ya5_c00319{bottom:152.575693pt;}
.y97_c00319{bottom:152.576136pt;}
.y91_c00319{bottom:167.848725pt;}
.y8c_c00319{bottom:167.848732pt;}
.y8f_c00319{bottom:167.848813pt;}
.y88_c00319{bottom:167.848941pt;}
.y92_c00319{bottom:167.848967pt;}
.y8e_c00319{bottom:167.848991pt;}
.y8d_c00319{bottom:167.849035pt;}
.y8a_c00319{bottom:167.849112pt;}
.y8b_c00319{bottom:167.849211pt;}
.y90_c00319{bottom:167.849356pt;}
.y93_c00319{bottom:167.849536pt;}
.y89_c00319{bottom:167.849564pt;}
.y94_c00319{bottom:167.850177pt;}
.y96_c00319{bottom:167.850695pt;}
.y95_c00319{bottom:167.850720pt;}
.y78_c00319{bottom:177.842667pt;}
.y79_c00319{bottom:178.110727pt;}
.y7a_c00319{bottom:178.322869pt;}
.y7b_c00319{bottom:178.931339pt;}
.y7c_c00319{bottom:179.642924pt;}
.y7d_c00319{bottom:179.861463pt;}
.y7e_c00319{bottom:180.038592pt;}
.y7f_c00319{bottom:180.416771pt;}
.y80_c00319{bottom:180.609829pt;}
.y81_c00319{bottom:181.420631pt;}
.y82_c00319{bottom:181.772879pt;}
.y83_c00319{bottom:182.060872pt;}
.y84_c00319{bottom:182.268959pt;}
.y85_c00319{bottom:182.658889pt;}
.y86_c00319{bottom:182.880635pt;}
.y87_c00319{bottom:183.351963pt;}
.y77_c00319{bottom:226.678905pt;}
.y76_c00319{bottom:226.905659pt;}
.y75_c00319{bottom:227.436248pt;}
.y74_c00319{bottom:228.072281pt;}
.y73_c00319{bottom:228.179452pt;}
.y72_c00319{bottom:228.403816pt;}
.y71_c00319{bottom:228.747436pt;}
.y70_c00319{bottom:229.015988pt;}
.y6f_c00319{bottom:229.453695pt;}
.y6e_c00319{bottom:229.520187pt;}
.y6d_c00319{bottom:229.826571pt;}
.y6c_c00319{bottom:230.168296pt;}
.y6b_c00319{bottom:247.204049pt;}
.y6a_c00319{bottom:247.398687pt;}
.y69_c00319{bottom:247.781941pt;}
.y68_c00319{bottom:247.932927pt;}
.y67_c00319{bottom:248.021743pt;}
.y66_c00319{bottom:248.380031pt;}
.y65_c00319{bottom:248.541320pt;}
.y64_c00319{bottom:248.934431pt;}
.y63_c00319{bottom:249.090680pt;}
.y62_c00319{bottom:249.747625pt;}
.y61_c00319{bottom:249.897257pt;}
.y60_c00319{bottom:250.080433pt;}
.y5f_c00319{bottom:267.122673pt;}
.y5e_c00319{bottom:267.417065pt;}
.y5d_c00319{bottom:267.526051pt;}
.y5c_c00319{bottom:267.871981pt;}
.y5b_c00319{bottom:268.206432pt;}
.y5a_c00319{bottom:268.464984pt;}
.y59_c00319{bottom:268.681900pt;}
.y58_c00319{bottom:269.476605pt;}
.y57_c00319{bottom:269.693335pt;}
.y56_c00319{bottom:269.873067pt;}
.y55_c00319{bottom:270.000000pt;}
.y54_c00319{bottom:287.805333pt;}
.y53_c00319{bottom:288.488000pt;}
.y52_c00319{bottom:288.896000pt;}
.y51_c00319{bottom:289.172000pt;}
.y50_c00319{bottom:289.681333pt;}
.y4f_c00319{bottom:289.876000pt;}
.y4e_c00319{bottom:290.128000pt;}
.y4d_c00319{bottom:290.280000pt;}
.y4c_c00319{bottom:290.402667pt;}
.y4b_c00319{bottom:309.534667pt;}
.y4a_c00319{bottom:329.906667pt;}
.y49_c00319{bottom:350.322667pt;}
.y48_c00319{bottom:369.409333pt;}
.y47_c00319{bottom:369.769333pt;}
.y46_c00319{bottom:369.864000pt;}
.y45_c00319{bottom:370.349333pt;}
.y44_c00319{bottom:370.581333pt;}
.y43_c00319{bottom:370.709333pt;}
.y42_c00319{bottom:370.925333pt;}
.y41_c00319{bottom:371.166667pt;}
.y40_c00319{bottom:371.722667pt;}
.y3f_c00319{bottom:372.001333pt;}
.y3e_c00319{bottom:391.137333pt;}
.y3d_c00319{bottom:408.422667pt;}
.y3c_c00319{bottom:408.717333pt;}
.y3b_c00319{bottom:408.844000pt;}
.y3a_c00319{bottom:409.637333pt;}
.y39_c00319{bottom:409.778667pt;}
.y38_c00319{bottom:410.074667pt;}
.y37_c00319{bottom:410.372000pt;}
.y36_c00319{bottom:410.536000pt;}
.y35_c00319{bottom:411.016000pt;}
.y34_c00319{bottom:411.148000pt;}
.y33_c00319{bottom:411.472000pt;}
.y32_c00319{bottom:411.810667pt;}
.y31_c00319{bottom:411.997333pt;}
.y30_c00319{bottom:412.324000pt;}
.y2f_c00319{bottom:429.661333pt;}
.y2e_c00319{bottom:429.918667pt;}
.y2d_c00319{bottom:430.084000pt;}
.y2c_c00319{bottom:430.413333pt;}
.y2b_c00319{bottom:430.552000pt;}
.y2a_c00319{bottom:430.973333pt;}
.y29_c00319{bottom:431.188000pt;}
.y28_c00319{bottom:431.594667pt;}
.y27_c00319{bottom:431.717333pt;}
.y26_c00319{bottom:432.242667pt;}
.y25_c00319{bottom:449.886667pt;}
.y24_c00319{bottom:450.125333pt;}
.y23_c00319{bottom:450.505333pt;}
.y22_c00319{bottom:450.661333pt;}
.y21_c00319{bottom:450.804000pt;}
.y20_c00319{bottom:451.198667pt;}
.y1f_c00319{bottom:451.753333pt;}
.y1e_c00319{bottom:451.946667pt;}
.y1d_c00319{bottom:452.361333pt;}
.y1c_c00319{bottom:452.518667pt;}
.y1b_c00319{bottom:452.641333pt;}
.y1a_c00319{bottom:471.714667pt;}
.y19_c00319{bottom:491.817333pt;}
.y18_c00319{bottom:511.766667pt;}
.y17_c00319{bottom:531.868000pt;}
.y16_c00319{bottom:551.760000pt;}
.y15_c00319{bottom:572.160000pt;}
.y14_c00319{bottom:592.080000pt;}
.y13_c00319{bottom:612.480000pt;}
.y12_c00319{bottom:632.668000pt;}
.y11_c00319{bottom:652.617333pt;}
.y10_c00319{bottom:673.017333pt;}
.yf_c00319{bottom:692.909333pt;}
.ye_c00319{bottom:713.069333pt;}
.yd_c00319{bottom:732.749333pt;}
.y9_c00319{bottom:768.250299pt;}
.ya_c00319{bottom:769.137200pt;}
.yb_c00319{bottom:771.688699pt;}
.yc_c00319{bottom:780.353491pt;}
.y1_c00319{bottom:822.482667pt;}
.y2_c00319{bottom:824.939760pt;}
.y3_c00319{bottom:825.829077pt;}
.y4_c00319{bottom:826.192256pt;}
.y5_c00319{bottom:826.989155pt;}
.y6_c00319{bottom:828.009456pt;}
.y7_c00319{bottom:828.610653pt;}
.y8_c00319{bottom:829.065709pt;}
.h12_c00319{height:40.136724pt;}
.h11_c00319{height:44.803785pt;}
.h10_c00319{height:48.537434pt;}
.hf_c00319{height:57.871556pt;}
.hb_c00319{height:58.800000pt;}
.h9_c00319{height:59.733333pt;}
.h6_c00319{height:60.666667pt;}
.h7_c00319{height:61.600000pt;}
.he_c00319{height:61.601509pt;}
.h5_c00319{height:62.533333pt;}
.ha_c00319{height:63.466667pt;}
.hd_c00319{height:63.468222pt;}
.hc_c00319{height:64.400000pt;}
.h4_c00319{height:65.333333pt;}
.h8_c00319{height:67.200000pt;}
.h2_c00319{height:81.207957pt;}
.h3_c00319{height:105.477002pt;}
.h0_c00319{height:896.400000pt;}
.h1_c00319{height:896.666667pt;}
.w0_c00319{width:618.666667pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:75.321333pt;}
.x9_c00319{left:100.440027pt;}
.x17_c00319{left:133.440000pt;}
.xa_c00319{left:134.546296pt;}
.x56_c00319{left:136.080000pt;}
.x78_c00319{left:137.206667pt;}
.x88_c00319{left:138.238667pt;}
.xb1_c00319{left:140.398864pt;}
.xae_c00319{left:150.454667pt;}
.x9c_c00319{left:151.817333pt;}
.x9f_c00319{left:153.764000pt;}
.x18_c00319{left:154.800000pt;}
.xb2_c00319{left:157.680443pt;}
.x95_c00319{left:159.117333pt;}
.x6c_c00319{left:161.520000pt;}
.x5b_c00319{left:163.440000pt;}
.xa5_c00319{left:165.026061pt;}
.x3e_c00319{left:166.560000pt;}
.x9d_c00319{left:168.633333pt;}
.x81_c00319{left:170.528000pt;}
.x79_c00319{left:177.277333pt;}
.xa0_c00319{left:179.440000pt;}
.xab_c00319{left:181.079693pt;}
.x33_c00319{left:182.400000pt;}
.x66_c00319{left:186.240000pt;}
.xd_c00319{left:187.440000pt;}
.x82_c00319{left:189.248000pt;}
.x19_c00319{left:190.560000pt;}
.x6d_c00319{left:194.640000pt;}
.x9e_c00319{left:196.692000pt;}
.x22_c00319{left:199.920000pt;}
.x98_c00319{left:201.117333pt;}
.xbe_c00319{left:202.476741pt;}
.x34_c00319{left:203.760000pt;}
.x73_c00319{left:204.720000pt;}
.xe_c00319{left:206.880000pt;}
.x7e_c00319{left:208.240000pt;}
.x3f_c00319{left:209.760000pt;}
.x89_c00319{left:213.598667pt;}
.x23_c00319{left:214.560000pt;}
.x99_c00319{left:216.477333pt;}
.x46_c00319{left:217.440000pt;}
.xac_c00319{left:219.324756pt;}
.x35_c00319{left:220.800000pt;}
.x83_c00319{left:223.130667pt;}
.x1a_c00319{left:224.400000pt;}
.x7f_c00319{left:225.762667pt;}
.x2c_c00319{left:227.040000pt;}
.x4f_c00319{left:230.880000pt;}
.xb_c00319{left:232.684480pt;}
.x24_c00319{left:233.760000pt;}
.x62_c00319{left:235.440000pt;}
.x7a_c00319{left:236.557333pt;}
.x1b_c00319{left:240.480000pt;}
.x2_c00319{left:250.828000pt;}
.x84_c00319{left:255.489333pt;}
.x8d_c00319{left:256.505333pt;}
.x74_c00319{left:259.680000pt;}
.x2d_c00319{left:262.320000pt;}
.x40_c00319{left:264.720000pt;}
.x85_c00319{left:268.690667pt;}
.x63_c00319{left:270.480000pt;}
.x6e_c00319{left:271.440000pt;}
.x47_c00319{left:273.120000pt;}
.x91_c00319{left:274.797333pt;}
.xbf_c00319{left:277.277349pt;}
.x50_c00319{left:278.640000pt;}
.xa6_c00319{left:280.251395pt;}
.x6f_c00319{left:282.480000pt;}
.x51_c00319{left:284.400000pt;}
.x5c_c00319{left:286.800000pt;}
.xaf_c00319{left:288.936000pt;}
.x25_c00319{left:290.160000pt;}
.x8e_c00319{left:291.076000pt;}
.x92_c00319{left:293.037333pt;}
.x8a_c00319{left:294.478667pt;}
.x75_c00319{left:299.280000pt;}
.xf_c00319{left:300.720000pt;}
.xa7_c00319{left:302.572728pt;}
.x36_c00319{left:303.840000pt;}
.x41_c00319{left:305.040000pt;}
.x57_c00319{left:306.720000pt;}
.x70_c00319{left:308.400000pt;}
.xb9_c00319{left:311.294277pt;}
.x3_c00319{left:314.350667pt;}
.x10_c00319{left:315.840000pt;}
.x52_c00319{left:317.280000pt;}
.x48_c00319{left:319.200000pt;}
.x2e_c00319{left:320.640000pt;}
.x26_c00319{left:322.080000pt;}
.x1c_c00319{left:324.240000pt;}
.x67_c00319{left:326.880000pt;}
.x11_c00319{left:333.600000pt;}
.x37_c00319{left:334.560000pt;}
.x5d_c00319{left:339.360000pt;}
.x4_c00319{left:340.292000pt;}
.x49_c00319{left:343.920000pt;}
.x27_c00319{left:345.120000pt;}
.xb3_c00319{left:346.577704pt;}
.xba_c00319{left:347.537729pt;}
.x68_c00319{left:348.480000pt;}
.x1d_c00319{left:351.840000pt;}
.xc0_c00319{left:353.792676pt;}
.x2f_c00319{left:355.200000pt;}
.x53_c00319{left:357.120000pt;}
.xa8_c00319{left:358.731395pt;}
.xb4_c00319{left:361.698919pt;}
.x86_c00319{left:362.761333pt;}
.x42_c00319{left:365.520000pt;}
.x28_c00319{left:368.880000pt;}
.x4a_c00319{left:369.840000pt;}
.x38_c00319{left:372.960000pt;}
.x80_c00319{left:374.802667pt;}
.x1e_c00319{left:377.040000pt;}
.x96_c00319{left:380.877333pt;}
.x5e_c00319{left:382.320000pt;}
.x12_c00319{left:386.400000pt;}
.x54_c00319{left:387.840000pt;}
.x30_c00319{left:390.480000pt;}
.x69_c00319{left:391.680000pt;}
.x43_c00319{left:392.880000pt;}
.x71_c00319{left:394.320000pt;}
.xbb_c00319{left:395.541841pt;}
.x5_c00319{left:397.213333pt;}
.x1f_c00319{left:400.080000pt;}
.x4b_c00319{left:402.480000pt;}
.x5f_c00319{left:403.680000pt;}
.x13_c00319{left:404.880000pt;}
.x87_c00319{left:406.408000pt;}
.xc1_c00319{left:409.811465pt;}
.x39_c00319{left:413.280000pt;}
.x29_c00319{left:414.240000pt;}
.x6a_c00319{left:416.880000pt;}
.x8b_c00319{left:418.798667pt;}
.x7b_c00319{left:420.134667pt;}
.x58_c00319{left:422.400000pt;}
.xb5_c00319{left:425.064297pt;}
.x14_c00319{left:426.240000pt;}
.x76_c00319{left:429.120000pt;}
.x3a_c00319{left:430.320000pt;}
.x60_c00319{left:432.720000pt;}
.x2a_c00319{left:435.600000pt;}
.x44_c00319{left:437.040000pt;}
.xa1_c00319{left:439.633333pt;}
.xb6_c00319{left:440.905633pt;}
.x7c_c00319{left:442.482667pt;}
.x4c_c00319{left:444.000000pt;}
.xa9_c00319{left:445.644728pt;}
.x31_c00319{left:448.320000pt;}
.x8c_c00319{left:451.198667pt;}
.xb0_c00319{left:452.778667pt;}
.x8f_c00319{left:456.388000pt;}
.x72_c00319{left:457.920000pt;}
.x4d_c00319{left:460.800000pt;}
.x93_c00319{left:462.237333pt;}
.x20_c00319{left:464.400000pt;}
.xaa_c00319{left:467.214061pt;}
.x6_c00319{left:470.092000pt;}
.x9a_c00319{left:472.077333pt;}
.x59_c00319{left:475.680000pt;}
.x45_c00319{left:478.320000pt;}
.x2b_c00319{left:480.000000pt;}
.xb7_c00319{left:483.628844pt;}
.x55_c00319{left:484.800000pt;}
.xc2_c00319{left:487.810827pt;}
.xa2_c00319{left:489.052000pt;}
.x15_c00319{left:490.320000pt;}
.xbc_c00319{left:491.790100pt;}
.x94_c00319{left:493.677333pt;}
.x97_c00319{left:495.357333pt;}
.x5a_c00319{left:497.520000pt;}
.xb8_c00319{left:498.750059pt;}
.x64_c00319{left:500.160000pt;}
.x3b_c00319{left:501.120000pt;}
.xa3_c00319{left:504.621333pt;}
.x9b_c00319{left:506.157333pt;}
.x90_c00319{left:507.738667pt;}
.x21_c00319{left:510.480000pt;}
.xbd_c00319{left:511.712129pt;}
.x7_c00319{left:513.034667pt;}
.x3c_c00319{left:516.720000pt;}
.x6b_c00319{left:520.080000pt;}
.x61_c00319{left:522.000000pt;}
.x4e_c00319{left:527.280000pt;}
.x7d_c00319{left:530.822667pt;}
.x32_c00319{left:535.200000pt;}
.x16_c00319{left:537.360000pt;}
.x77_c00319{left:542.640000pt;}
.x8_c00319{left:545.538667pt;}
.xa4_c00319{left:546.677333pt;}
.x3d_c00319{left:547.680000pt;}
.x65_c00319{left:549.600000pt;}
.xc_c00319{left:565.923165pt;}
.xad_c00319{left:574.552940pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m74_c00320{transform:matrix(0.009830,-0.000088,0.002250,0.249990,0,0);-ms-transform:matrix(0.009830,-0.000088,0.002250,0.249990,0,0);-webkit-transform:matrix(0.009830,-0.000088,0.002250,0.249990,0,0);}
.m7a_c00320{transform:matrix(0.014324,-0.000129,0.002250,0.249990,0,0);-ms-transform:matrix(0.014324,-0.000129,0.002250,0.249990,0,0);-webkit-transform:matrix(0.014324,-0.000129,0.002250,0.249990,0,0);}
.m41_c00320{transform:matrix(0.016784,-0.000185,0.002750,0.249985,0,0);-ms-transform:matrix(0.016784,-0.000185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.016784,-0.000185,0.002750,0.249985,0,0);}
.m7f_c00320{transform:matrix(0.024569,-0.000221,0.002250,0.249990,0,0);-ms-transform:matrix(0.024569,-0.000221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.024569,-0.000221,0.002250,0.249990,0,0);}
.m138_c00320{transform:matrix(0.024729,-0.000247,0.002500,0.249988,0,0);-ms-transform:matrix(0.024729,-0.000247,0.002500,0.249988,0,0);-webkit-transform:matrix(0.024729,-0.000247,0.002500,0.249988,0,0);}
.m3e_c00320{transform:matrix(0.056367,-0.000620,0.002750,0.249985,0,0);-ms-transform:matrix(0.056367,-0.000620,0.002750,0.249985,0,0);-webkit-transform:matrix(0.056367,-0.000620,0.002750,0.249985,0,0);}
.m75_c00320{transform:matrix(0.071297,-0.000642,0.002250,0.249990,0,0);-ms-transform:matrix(0.071297,-0.000642,0.002250,0.249990,0,0);-webkit-transform:matrix(0.071297,-0.000642,0.002250,0.249990,0,0);}
.m13d_c00320{transform:matrix(0.090560,-0.000906,0.002500,0.249988,0,0);-ms-transform:matrix(0.090560,-0.000906,0.002500,0.249988,0,0);-webkit-transform:matrix(0.090560,-0.000906,0.002500,0.249988,0,0);}
.m46_c00320{transform:matrix(0.091069,-0.001002,0.002750,0.249985,0,0);-ms-transform:matrix(0.091069,-0.001002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.091069,-0.001002,0.002750,0.249985,0,0);}
.m114_c00320{transform:matrix(0.095435,-0.000954,0.002500,0.249988,0,0);-ms-transform:matrix(0.095435,-0.000954,0.002500,0.249988,0,0);-webkit-transform:matrix(0.095435,-0.000954,0.002500,0.249988,0,0);}
.mf_c00320{transform:matrix(0.098945,-0.001385,0.003500,0.249976,0,0);-ms-transform:matrix(0.098945,-0.001385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.098945,-0.001385,0.003500,0.249976,0,0);}
.m12f_c00320{transform:matrix(0.117474,-0.001175,0.002500,0.249988,0,0);-ms-transform:matrix(0.117474,-0.001175,0.002500,0.249988,0,0);-webkit-transform:matrix(0.117474,-0.001175,0.002500,0.249988,0,0);}
.mbf_c00320{transform:matrix(0.131175,-0.001181,0.002250,0.249990,0,0);-ms-transform:matrix(0.131175,-0.001181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.131175,-0.001181,0.002250,0.249990,0,0);}
.m13_c00320{transform:matrix(0.133727,-0.001872,0.003500,0.249976,0,0);-ms-transform:matrix(0.133727,-0.001872,0.003500,0.249976,0,0);-webkit-transform:matrix(0.133727,-0.001872,0.003500,0.249976,0,0);}
.m82_c00320{transform:matrix(0.135265,-0.001217,0.002250,0.249990,0,0);-ms-transform:matrix(0.135265,-0.001217,0.002250,0.249990,0,0);-webkit-transform:matrix(0.135265,-0.001217,0.002250,0.249990,0,0);}
.mb0_c00320{transform:matrix(0.136234,-0.001226,0.002250,0.249990,0,0);-ms-transform:matrix(0.136234,-0.001226,0.002250,0.249990,0,0);-webkit-transform:matrix(0.136234,-0.001226,0.002250,0.249990,0,0);}
.m6_c00320{transform:matrix(0.143055,-0.001717,0.003000,0.249982,0,0);-ms-transform:matrix(0.143055,-0.001717,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143055,-0.001717,0.003000,0.249982,0,0);}
.ma_c00320{transform:matrix(0.143135,-0.001718,0.003000,0.249982,0,0);-ms-transform:matrix(0.143135,-0.001718,0.003000,0.249982,0,0);-webkit-transform:matrix(0.143135,-0.001718,0.003000,0.249982,0,0);}
.m22_c00320{transform:matrix(0.144821,-0.001593,0.002750,0.249985,0,0);-ms-transform:matrix(0.144821,-0.001593,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144821,-0.001593,0.002750,0.249985,0,0);}
.m31_c00320{transform:matrix(0.147931,-0.001627,0.002750,0.249985,0,0);-ms-transform:matrix(0.147931,-0.001627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147931,-0.001627,0.002750,0.249985,0,0);}
.m68_c00320{transform:matrix(0.148409,-0.001336,0.002250,0.249990,0,0);-ms-transform:matrix(0.148409,-0.001336,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148409,-0.001336,0.002250,0.249990,0,0);}
.ma2_c00320{transform:matrix(0.148884,-0.001340,0.002250,0.249990,0,0);-ms-transform:matrix(0.148884,-0.001340,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148884,-0.001340,0.002250,0.249990,0,0);}
.m10b_c00320{transform:matrix(0.148968,-0.001490,0.002500,0.249988,0,0);-ms-transform:matrix(0.148968,-0.001490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148968,-0.001490,0.002500,0.249988,0,0);}
.m81_c00320{transform:matrix(0.149834,-0.001349,0.002250,0.249990,0,0);-ms-transform:matrix(0.149834,-0.001349,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149834,-0.001349,0.002250,0.249990,0,0);}
.m5d_c00320{transform:matrix(0.150009,-0.001350,0.002250,0.249990,0,0);-ms-transform:matrix(0.150009,-0.001350,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150009,-0.001350,0.002250,0.249990,0,0);}
.mcc_c00320{transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-ms-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);}
.m76_c00320{transform:matrix(0.151024,-0.001359,0.002250,0.249990,0,0);-ms-transform:matrix(0.151024,-0.001359,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151024,-0.001359,0.002250,0.249990,0,0);}
.m108_c00320{transform:matrix(0.152422,-0.001524,0.002500,0.249988,0,0);-ms-transform:matrix(0.152422,-0.001524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152422,-0.001524,0.002500,0.249988,0,0);}
.m10c_c00320{transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);-ms-transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);}
.m94_c00320{transform:matrix(0.154019,-0.001386,0.002250,0.249990,0,0);-ms-transform:matrix(0.154019,-0.001386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154019,-0.001386,0.002250,0.249990,0,0);}
.m98_c00320{transform:matrix(0.154714,-0.001392,0.002250,0.249990,0,0);-ms-transform:matrix(0.154714,-0.001392,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154714,-0.001392,0.002250,0.249990,0,0);}
.m7d_c00320{transform:matrix(0.154834,-0.001394,0.002250,0.249990,0,0);-ms-transform:matrix(0.154834,-0.001394,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154834,-0.001394,0.002250,0.249990,0,0);}
.mb_c00320{transform:matrix(0.155504,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155504,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155504,-0.001866,0.003000,0.249982,0,0);}
.m0_c00320{transform:matrix(0.155829,-0.001870,0.003000,0.249982,0,0);-ms-transform:matrix(0.155829,-0.001870,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155829,-0.001870,0.003000,0.249982,0,0);}
.m134_c00320{transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);-ms-transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);}
.mc_c00320{transform:matrix(0.156449,-0.001877,0.003000,0.249982,0,0);-ms-transform:matrix(0.156449,-0.001877,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156449,-0.001877,0.003000,0.249982,0,0);}
.m102_c00320{transform:matrix(0.156752,-0.001568,0.002500,0.249988,0,0);-ms-transform:matrix(0.156752,-0.001568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156752,-0.001568,0.002500,0.249988,0,0);}
.mb4_c00320{transform:matrix(0.157144,-0.001414,0.002250,0.249990,0,0);-ms-transform:matrix(0.157144,-0.001414,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157144,-0.001414,0.002250,0.249990,0,0);}
.m2f_c00320{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);}
.m13f_c00320{transform:matrix(0.157467,-0.001575,0.002500,0.249988,0,0);-ms-transform:matrix(0.157467,-0.001575,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157467,-0.001575,0.002500,0.249988,0,0);}
.m57_c00320{transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);-ms-transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);}
.m9e_c00320{transform:matrix(0.157784,-0.001420,0.002250,0.249990,0,0);-ms-transform:matrix(0.157784,-0.001420,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157784,-0.001420,0.002250,0.249990,0,0);}
.m9b_c00320{transform:matrix(0.158899,-0.001430,0.002250,0.249990,0,0);-ms-transform:matrix(0.158899,-0.001430,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158899,-0.001430,0.002250,0.249990,0,0);}
.m10d_c00320{transform:matrix(0.158962,-0.001590,0.002500,0.249988,0,0);-ms-transform:matrix(0.158962,-0.001590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158962,-0.001590,0.002500,0.249988,0,0);}
.m80_c00320{transform:matrix(0.161878,-0.001457,0.002250,0.249990,0,0);-ms-transform:matrix(0.161878,-0.001457,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161878,-0.001457,0.002250,0.249990,0,0);}
.ma6_c00320{transform:matrix(0.161958,-0.001458,0.002250,0.249990,0,0);-ms-transform:matrix(0.161958,-0.001458,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161958,-0.001458,0.002250,0.249990,0,0);}
.mda_c00320{transform:matrix(0.162028,-0.001458,0.002250,0.249990,0,0);-ms-transform:matrix(0.162028,-0.001458,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162028,-0.001458,0.002250,0.249990,0,0);}
.m6c_c00320{transform:matrix(0.162103,-0.001459,0.002250,0.249990,0,0);-ms-transform:matrix(0.162103,-0.001459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162103,-0.001459,0.002250,0.249990,0,0);}
.ma5_c00320{transform:matrix(0.162463,-0.001462,0.002250,0.249990,0,0);-ms-transform:matrix(0.162463,-0.001462,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162463,-0.001462,0.002250,0.249990,0,0);}
.m2b_c00320{transform:matrix(0.162590,-0.001788,0.002750,0.249985,0,0);-ms-transform:matrix(0.162590,-0.001788,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162590,-0.001788,0.002750,0.249985,0,0);}
.m149_c00320{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);}
.m12e_c00320{transform:matrix(0.163272,-0.001633,0.002500,0.249988,0,0);-ms-transform:matrix(0.163272,-0.001633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163272,-0.001633,0.002500,0.249988,0,0);}
.m54_c00320{transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);-ms-transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163710,-0.001801,0.002750,0.249985,0,0);}
.m19_c00320{transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);-ms-transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164180,-0.001806,0.002750,0.249985,0,0);}
.m9f_c00320{transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);-ms-transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);}
.m153_c00320{transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165260,0.000000,0.000000,0.250000,0,0);}
.mfc_c00320{transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);-ms-transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);}
.ma3_c00320{transform:matrix(0.165553,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165553,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165553,-0.001490,0.002250,0.249990,0,0);}
.mf9_c00320{transform:matrix(0.165682,-0.001657,0.002500,0.249988,0,0);-ms-transform:matrix(0.165682,-0.001657,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165682,-0.001657,0.002500,0.249988,0,0);}
.m130_c00320{transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166007,-0.001660,0.002500,0.249988,0,0);}
.m5_c00320{transform:matrix(0.166393,-0.001997,0.003000,0.249982,0,0);-ms-transform:matrix(0.166393,-0.001997,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166393,-0.001997,0.003000,0.249982,0,0);}
.mdd_c00320{transform:matrix(0.166418,-0.001498,0.002250,0.249990,0,0);-ms-transform:matrix(0.166418,-0.001498,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166418,-0.001498,0.002250,0.249990,0,0);}
.m12d_c00320{transform:matrix(0.166437,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166437,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166437,-0.001664,0.002500,0.249988,0,0);}
.ma0_c00320{transform:matrix(0.166598,-0.001499,0.002250,0.249990,0,0);-ms-transform:matrix(0.166598,-0.001499,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166598,-0.001499,0.002250,0.249990,0,0);}
.m5a_c00320{transform:matrix(0.166758,-0.001501,0.002250,0.249990,0,0);-ms-transform:matrix(0.166758,-0.001501,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166758,-0.001501,0.002250,0.249990,0,0);}
.m13c_c00320{transform:matrix(0.166887,-0.001669,0.002500,0.249988,0,0);-ms-transform:matrix(0.166887,-0.001669,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166887,-0.001669,0.002500,0.249988,0,0);}
.m7_c00320{transform:matrix(0.167008,-0.002004,0.003000,0.249982,0,0);-ms-transform:matrix(0.167008,-0.002004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167008,-0.002004,0.003000,0.249982,0,0);}
.m101_c00320{transform:matrix(0.167047,-0.001670,0.002500,0.249988,0,0);-ms-transform:matrix(0.167047,-0.001670,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167047,-0.001670,0.002500,0.249988,0,0);}
.m117_c00320{transform:matrix(0.167127,-0.001671,0.002500,0.249988,0,0);-ms-transform:matrix(0.167127,-0.001671,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167127,-0.001671,0.002500,0.249988,0,0);}
.m30_c00320{transform:matrix(0.168100,-0.001849,0.002750,0.249985,0,0);-ms-transform:matrix(0.168100,-0.001849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168100,-0.001849,0.002750,0.249985,0,0);}
.m131_c00320{transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-ms-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);}
.m42_c00320{transform:matrix(0.168440,-0.001853,0.002750,0.249985,0,0);-ms-transform:matrix(0.168440,-0.001853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168440,-0.001853,0.002750,0.249985,0,0);}
.mef_c00320{transform:matrix(0.168542,-0.001685,0.002500,0.249988,0,0);-ms-transform:matrix(0.168542,-0.001685,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168542,-0.001685,0.002500,0.249988,0,0);}
.m5c_c00320{transform:matrix(0.168618,-0.001518,0.002250,0.249990,0,0);-ms-transform:matrix(0.168618,-0.001518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168618,-0.001518,0.002250,0.249990,0,0);}
.m156_c00320{transform:matrix(0.168829,0.005065,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168829,0.005065,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168829,0.005065,-0.007497,0.249888,0,0);}
.mb6_c00320{transform:matrix(0.169363,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169363,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169363,-0.001524,0.002250,0.249990,0,0);}
.m9c_c00320{transform:matrix(0.170238,-0.001532,0.002250,0.249990,0,0);-ms-transform:matrix(0.170238,-0.001532,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170238,-0.001532,0.002250,0.249990,0,0);}
.med_c00320{transform:matrix(0.170636,-0.001706,0.002500,0.249988,0,0);-ms-transform:matrix(0.170636,-0.001706,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170636,-0.001706,0.002500,0.249988,0,0);}
.m122_c00320{transform:matrix(0.170966,-0.001710,0.002500,0.249988,0,0);-ms-transform:matrix(0.170966,-0.001710,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170966,-0.001710,0.002500,0.249988,0,0);}
.m85_c00320{transform:matrix(0.171308,-0.001542,0.002250,0.249990,0,0);-ms-transform:matrix(0.171308,-0.001542,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171308,-0.001542,0.002250,0.249990,0,0);}
.m3_c00320{transform:matrix(0.171973,-0.002064,0.003000,0.249982,0,0);-ms-transform:matrix(0.171973,-0.002064,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171973,-0.002064,0.003000,0.249982,0,0);}
.mcb_c00320{transform:matrix(0.172048,-0.001548,0.002250,0.249990,0,0);-ms-transform:matrix(0.172048,-0.001548,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172048,-0.001548,0.002250,0.249990,0,0);}
.m17_c00320{transform:matrix(0.172195,-0.001894,0.002750,0.249985,0,0);-ms-transform:matrix(0.172195,-0.001894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172195,-0.001894,0.002750,0.249985,0,0);}
.m14e_c00320{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);}
.m12c_c00320{transform:matrix(0.173101,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173101,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173101,-0.001731,0.002500,0.249988,0,0);}
.m10e_c00320{transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);}
.mf8_c00320{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);}
.m13b_c00320{transform:matrix(0.174031,-0.001740,0.002500,0.249988,0,0);-ms-transform:matrix(0.174031,-0.001740,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174031,-0.001740,0.002500,0.249988,0,0);}
.m1f_c00320{transform:matrix(0.174109,-0.001915,0.002750,0.249985,0,0);-ms-transform:matrix(0.174109,-0.001915,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174109,-0.001915,0.002750,0.249985,0,0);}
.m8f_c00320{transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);-ms-transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);}
.m62_c00320{transform:matrix(0.174233,-0.001568,0.002250,0.249990,0,0);-ms-transform:matrix(0.174233,-0.001568,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174233,-0.001568,0.002250,0.249990,0,0);}
.m1_c00320{transform:matrix(0.174437,-0.002093,0.003000,0.249982,0,0);-ms-transform:matrix(0.174437,-0.002093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174437,-0.002093,0.003000,0.249982,0,0);}
.m4b_c00320{transform:matrix(0.174819,-0.001923,0.002750,0.249985,0,0);-ms-transform:matrix(0.174819,-0.001923,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174819,-0.001923,0.002750,0.249985,0,0);}
.mb3_c00320{transform:matrix(0.174843,-0.001574,0.002250,0.249990,0,0);-ms-transform:matrix(0.174843,-0.001574,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174843,-0.001574,0.002250,0.249990,0,0);}
.mc4_c00320{transform:matrix(0.174958,-0.001575,0.002250,0.249990,0,0);-ms-transform:matrix(0.174958,-0.001575,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174958,-0.001575,0.002250,0.249990,0,0);}
.m13e_c00320{transform:matrix(0.176406,-0.001764,0.002500,0.249988,0,0);-ms-transform:matrix(0.176406,-0.001764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176406,-0.001764,0.002500,0.249988,0,0);}
.m73_c00320{transform:matrix(0.176913,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176913,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176913,-0.001592,0.002250,0.249990,0,0);}
.m11a_c00320{transform:matrix(0.176976,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.176976,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176976,-0.001770,0.002500,0.249988,0,0);}
.m14c_c00320{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);}
.m106_c00320{transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);}
.m18_c00320{transform:matrix(0.177774,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177774,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177774,-0.001956,0.002750,0.249985,0,0);}
.m105_c00320{transform:matrix(0.177876,-0.001779,0.002500,0.249988,0,0);-ms-transform:matrix(0.177876,-0.001779,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177876,-0.001779,0.002500,0.249988,0,0);}
.mff_c00320{transform:matrix(0.178016,-0.001780,0.002500,0.249988,0,0);-ms-transform:matrix(0.178016,-0.001780,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178016,-0.001780,0.002500,0.249988,0,0);}
.m145_c00320{transform:matrix(0.178096,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178096,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178096,-0.001781,0.002500,0.249988,0,0);}
.m5e_c00320{transform:matrix(0.178168,-0.001604,0.002250,0.249990,0,0);-ms-transform:matrix(0.178168,-0.001604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178168,-0.001604,0.002250,0.249990,0,0);}
.m5b_c00320{transform:matrix(0.178223,-0.001604,0.002250,0.249990,0,0);-ms-transform:matrix(0.178223,-0.001604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178223,-0.001604,0.002250,0.249990,0,0);}
.mb5_c00320{transform:matrix(0.178463,-0.001606,0.002250,0.249990,0,0);-ms-transform:matrix(0.178463,-0.001606,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178463,-0.001606,0.002250,0.249990,0,0);}
.m27_c00320{transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178524,-0.001964,0.002750,0.249985,0,0);}
.m43_c00320{transform:matrix(0.178934,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178934,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178934,-0.001968,0.002750,0.249985,0,0);}
.m26_c00320{transform:matrix(0.179114,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179114,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179114,-0.001970,0.002750,0.249985,0,0);}
.ma1_c00320{transform:matrix(0.179193,-0.001613,0.002250,0.249990,0,0);-ms-transform:matrix(0.179193,-0.001613,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179193,-0.001613,0.002250,0.249990,0,0);}
.m28_c00320{transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);}
.m152_c00320{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);}
.m51_c00320{transform:matrix(0.180319,-0.001984,0.002750,0.249985,0,0);-ms-transform:matrix(0.180319,-0.001984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180319,-0.001984,0.002750,0.249985,0,0);}
.m6b_c00320{transform:matrix(0.180458,-0.001624,0.002250,0.249990,0,0);-ms-transform:matrix(0.180458,-0.001624,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180458,-0.001624,0.002250,0.249990,0,0);}
.mbc_c00320{transform:matrix(0.180578,-0.001625,0.002250,0.249990,0,0);-ms-transform:matrix(0.180578,-0.001625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180578,-0.001625,0.002250,0.249990,0,0);}
.m48_c00320{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);}
.m77_c00320{transform:matrix(0.181253,-0.001631,0.002250,0.249990,0,0);-ms-transform:matrix(0.181253,-0.001631,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181253,-0.001631,0.002250,0.249990,0,0);}
.m126_c00320{transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181271,-0.001813,0.002500,0.249988,0,0);}
.m9a_c00320{transform:matrix(0.182233,-0.001640,0.002250,0.249990,0,0);-ms-transform:matrix(0.182233,-0.001640,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182233,-0.001640,0.002250,0.249990,0,0);}
.m10f_c00320{transform:matrix(0.182236,-0.001822,0.002500,0.249988,0,0);-ms-transform:matrix(0.182236,-0.001822,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182236,-0.001822,0.002500,0.249988,0,0);}
.mc2_c00320{transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);-ms-transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182368,-0.001641,0.002250,0.249990,0,0);}
.m104_c00320{transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);}
.m2e_c00320{transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);}
.m2a_c00320{transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182729,-0.002010,0.002750,0.249985,0,0);}
.m1d_c00320{transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);-ms-transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);}
.m91_c00320{transform:matrix(0.182873,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182873,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182873,-0.001646,0.002250,0.249990,0,0);}
.m86_c00320{transform:matrix(0.183023,-0.001647,0.002250,0.249990,0,0);-ms-transform:matrix(0.183023,-0.001647,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183023,-0.001647,0.002250,0.249990,0,0);}
.m4_c00320{transform:matrix(0.183407,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183407,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183407,-0.002201,0.003000,0.249982,0,0);}
.m135_c00320{transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);-ms-transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183446,-0.001834,0.002500,0.249988,0,0);}
.m151_c00320{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);}
.m121_c00320{transform:matrix(0.183856,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183856,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183856,-0.001839,0.002500,0.249988,0,0);}
.m3f_c00320{transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);-ms-transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);}
.m103_c00320{transform:matrix(0.184521,-0.001845,0.002500,0.249988,0,0);-ms-transform:matrix(0.184521,-0.001845,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184521,-0.001845,0.002500,0.249988,0,0);}
.ma4_c00320{transform:matrix(0.184823,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184823,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184823,-0.001663,0.002250,0.249990,0,0);}
.m21_c00320{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);}
.m78_c00320{transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);-ms-transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);}
.ma9_c00320{transform:matrix(0.185367,-0.001668,0.002250,0.249990,0,0);-ms-transform:matrix(0.185367,-0.001668,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185367,-0.001668,0.002250,0.249990,0,0);}
.m79_c00320{transform:matrix(0.185802,-0.001672,0.002250,0.249990,0,0);-ms-transform:matrix(0.185802,-0.001672,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185802,-0.001672,0.002250,0.249990,0,0);}
.m6a_c00320{transform:matrix(0.185937,-0.001673,0.002250,0.249990,0,0);-ms-transform:matrix(0.185937,-0.001673,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185937,-0.001673,0.002250,0.249990,0,0);}
.m58_c00320{transform:matrix(0.186387,-0.001677,0.002250,0.249990,0,0);-ms-transform:matrix(0.186387,-0.001677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186387,-0.001677,0.002250,0.249990,0,0);}
.m107_c00320{transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186646,-0.001866,0.002500,0.249988,0,0);}
.maf_c00320{transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);-ms-transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);}
.m11f_c00320{transform:matrix(0.186826,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186826,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186826,-0.001868,0.002500,0.249988,0,0);}
.m8_c00320{transform:matrix(0.187132,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187132,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187132,-0.002246,0.003000,0.249982,0,0);}
.m14f_c00320{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);}
.mb8_c00320{transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);}
.md7_c00320{transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187752,-0.001690,0.002250,0.249990,0,0);}
.mfa_c00320{transform:matrix(0.187816,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187816,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187816,-0.001878,0.002500,0.249988,0,0);}
.m11e_c00320{transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);-ms-transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);}
.m14a_c00320{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);}
.m23_c00320{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);}
.m133_c00320{transform:matrix(0.189041,-0.001890,0.002500,0.249988,0,0);-ms-transform:matrix(0.189041,-0.001890,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189041,-0.001890,0.002500,0.249988,0,0);}
.m11b_c00320{transform:matrix(0.189161,-0.001892,0.002500,0.249988,0,0);-ms-transform:matrix(0.189161,-0.001892,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189161,-0.001892,0.002500,0.249988,0,0);}
.mbb_c00320{transform:matrix(0.189657,-0.001707,0.002250,0.249990,0,0);-ms-transform:matrix(0.189657,-0.001707,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189657,-0.001707,0.002250,0.249990,0,0);}
.m90_c00320{transform:matrix(0.189912,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189912,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189912,-0.001709,0.002250,0.249990,0,0);}
.m45_c00320{transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);-ms-transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);}
.me5_c00320{transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);-ms-transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);}
.mb2_c00320{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);}
.m141_c00320{transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);-ms-transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190430,-0.001904,0.002500,0.249988,0,0);}
.m7e_c00320{transform:matrix(0.190507,-0.001715,0.002250,0.249990,0,0);-ms-transform:matrix(0.190507,-0.001715,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190507,-0.001715,0.002250,0.249990,0,0);}
.m4a_c00320{transform:matrix(0.191063,-0.002102,0.002750,0.249985,0,0);-ms-transform:matrix(0.191063,-0.002102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191063,-0.002102,0.002750,0.249985,0,0);}
.m33_c00320{transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191443,-0.002106,0.002750,0.249985,0,0);}
.m132_c00320{transform:matrix(0.191525,-0.001915,0.002500,0.249988,0,0);-ms-transform:matrix(0.191525,-0.001915,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191525,-0.001915,0.002500,0.249988,0,0);}
.mae_c00320{transform:matrix(0.191527,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191527,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191527,-0.001724,0.002250,0.249990,0,0);}
.mfe_c00320{transform:matrix(0.191745,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191745,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191745,-0.001917,0.002500,0.249988,0,0);}
.m3a_c00320{transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);-ms-transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191758,-0.002109,0.002750,0.249985,0,0);}
.m13a_c00320{transform:matrix(0.191780,-0.001918,0.002500,0.249988,0,0);-ms-transform:matrix(0.191780,-0.001918,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191780,-0.001918,0.002500,0.249988,0,0);}
.m124_c00320{transform:matrix(0.191870,-0.001919,0.002500,0.249988,0,0);-ms-transform:matrix(0.191870,-0.001919,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191870,-0.001919,0.002500,0.249988,0,0);}
.mf2_c00320{transform:matrix(0.192145,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192145,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192145,-0.001921,0.002500,0.249988,0,0);}
.m4f_c00320{transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);-ms-transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192348,-0.002116,0.002750,0.249985,0,0);}
.m55_c00320{transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);-ms-transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192543,-0.002118,0.002750,0.249985,0,0);}
.m14d_c00320{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);}
.mdc_c00320{transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);-ms-transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192792,-0.001735,0.002250,0.249990,0,0);}
.ma8_c00320{transform:matrix(0.193082,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193082,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193082,-0.001738,0.002250,0.249990,0,0);}
.m38_c00320{transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193143,-0.002125,0.002750,0.249985,0,0);}
.mc5_c00320{transform:matrix(0.193652,-0.001743,0.002250,0.249990,0,0);-ms-transform:matrix(0.193652,-0.001743,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193652,-0.001743,0.002250,0.249990,0,0);}
.m150_c00320{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);}
.mfb_c00320{transform:matrix(0.193715,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193715,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193715,-0.001937,0.002500,0.249988,0,0);}
.m63_c00320{transform:matrix(0.194517,-0.001751,0.002250,0.249990,0,0);-ms-transform:matrix(0.194517,-0.001751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194517,-0.001751,0.002250,0.249990,0,0);}
.m2d_c00320{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);}
.mbd_c00320{transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);}
.m7c_c00320{transform:matrix(0.195057,-0.001756,0.002250,0.249990,0,0);-ms-transform:matrix(0.195057,-0.001756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195057,-0.001756,0.002250,0.249990,0,0);}
.m12b_c00320{transform:matrix(0.195095,-0.001951,0.002500,0.249988,0,0);-ms-transform:matrix(0.195095,-0.001951,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195095,-0.001951,0.002500,0.249988,0,0);}
.mc7_c00320{transform:matrix(0.195652,-0.001761,0.002250,0.249990,0,0);-ms-transform:matrix(0.195652,-0.001761,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195652,-0.001761,0.002250,0.249990,0,0);}
.m5f_c00320{transform:matrix(0.195687,-0.001761,0.002250,0.249990,0,0);-ms-transform:matrix(0.195687,-0.001761,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195687,-0.001761,0.002250,0.249990,0,0);}
.m61_c00320{transform:matrix(0.195767,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195767,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195767,-0.001762,0.002250,0.249990,0,0);}
.m95_c00320{transform:matrix(0.195797,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195797,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195797,-0.001762,0.002250,0.249990,0,0);}
.m32_c00320{transform:matrix(0.195808,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195808,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195808,-0.002154,0.002750,0.249985,0,0);}
.m1e_c00320{transform:matrix(0.195983,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.195983,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195983,-0.002156,0.002750,0.249985,0,0);}
.m99_c00320{transform:matrix(0.196597,-0.001769,0.002250,0.249990,0,0);-ms-transform:matrix(0.196597,-0.001769,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196597,-0.001769,0.002250,0.249990,0,0);}
.m59_c00320{transform:matrix(0.196612,-0.001770,0.002250,0.249990,0,0);-ms-transform:matrix(0.196612,-0.001770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196612,-0.001770,0.002250,0.249990,0,0);}
.m11c_c00320{transform:matrix(0.196665,-0.001967,0.002500,0.249988,0,0);-ms-transform:matrix(0.196665,-0.001967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196665,-0.001967,0.002500,0.249988,0,0);}
.mc8_c00320{transform:matrix(0.196712,-0.001770,0.002250,0.249990,0,0);-ms-transform:matrix(0.196712,-0.001770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196712,-0.001770,0.002250,0.249990,0,0);}
.m29_c00320{transform:matrix(0.196818,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196818,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196818,-0.002165,0.002750,0.249985,0,0);}
.m4e_c00320{transform:matrix(0.196963,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.196963,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196963,-0.002167,0.002750,0.249985,0,0);}
.mad_c00320{transform:matrix(0.197257,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197257,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197257,-0.001775,0.002250,0.249990,0,0);}
.m93_c00320{transform:matrix(0.197437,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197437,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197437,-0.001777,0.002250,0.249990,0,0);}
.m127_c00320{transform:matrix(0.197440,-0.001974,0.002500,0.249988,0,0);-ms-transform:matrix(0.197440,-0.001974,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197440,-0.001974,0.002500,0.249988,0,0);}
.m6e_c00320{transform:matrix(0.197547,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197547,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197547,-0.001778,0.002250,0.249990,0,0);}
.mc1_c00320{transform:matrix(0.197912,-0.001781,0.002250,0.249990,0,0);-ms-transform:matrix(0.197912,-0.001781,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197912,-0.001781,0.002250,0.249990,0,0);}
.m2c_c00320{transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);}
.me3_c00320{transform:matrix(0.198077,-0.001783,0.002250,0.249990,0,0);-ms-transform:matrix(0.198077,-0.001783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198077,-0.001783,0.002250,0.249990,0,0);}
.mee_c00320{transform:matrix(0.198220,-0.001982,0.002500,0.249988,0,0);-ms-transform:matrix(0.198220,-0.001982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198220,-0.001982,0.002500,0.249988,0,0);}
.md2_c00320{transform:matrix(0.198252,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198252,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198252,-0.001784,0.002250,0.249990,0,0);}
.m116_c00320{transform:matrix(0.198800,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198800,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198800,-0.001988,0.002500,0.249988,0,0);}
.m11d_c00320{transform:matrix(0.199040,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.199040,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199040,-0.001990,0.002500,0.249988,0,0);}
.m84_c00320{transform:matrix(0.200192,-0.001802,0.002250,0.249990,0,0);-ms-transform:matrix(0.200192,-0.001802,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200192,-0.001802,0.002250,0.249990,0,0);}
.m118_c00320{transform:matrix(0.200285,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200285,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200285,-0.002003,0.002500,0.249988,0,0);}
.m15_c00320{transform:matrix(0.200513,-0.002206,0.002750,0.249985,0,0);-ms-transform:matrix(0.200513,-0.002206,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200513,-0.002206,0.002750,0.249985,0,0);}
.m16_c00320{transform:matrix(0.200998,-0.002211,0.002750,0.249985,0,0);-ms-transform:matrix(0.200998,-0.002211,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200998,-0.002211,0.002750,0.249985,0,0);}
.m70_c00320{transform:matrix(0.201062,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201062,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201062,-0.001810,0.002250,0.249990,0,0);}
.m8d_c00320{transform:matrix(0.201577,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201577,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201577,-0.001814,0.002250,0.249990,0,0);}
.m8e_c00320{transform:matrix(0.201612,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201612,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201612,-0.001815,0.002250,0.249990,0,0);}
.m83_c00320{transform:matrix(0.201682,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201682,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201682,-0.001815,0.002250,0.249990,0,0);}
.mba_c00320{transform:matrix(0.201707,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201707,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201707,-0.001815,0.002250,0.249990,0,0);}
.m96_c00320{transform:matrix(0.201992,-0.001818,0.002250,0.249990,0,0);-ms-transform:matrix(0.201992,-0.001818,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201992,-0.001818,0.002250,0.249990,0,0);}
.mb7_c00320{transform:matrix(0.202042,-0.001818,0.002250,0.249990,0,0);-ms-transform:matrix(0.202042,-0.001818,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202042,-0.001818,0.002250,0.249990,0,0);}
.m4c_c00320{transform:matrix(0.202298,-0.002225,0.002750,0.249985,0,0);-ms-transform:matrix(0.202298,-0.002225,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202298,-0.002225,0.002750,0.249985,0,0);}
.m119_c00320{transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);-ms-transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);}
.m12a_c00320{transform:matrix(0.203130,-0.002031,0.002500,0.249988,0,0);-ms-transform:matrix(0.203130,-0.002031,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203130,-0.002031,0.002500,0.249988,0,0);}
.m49_c00320{transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203278,-0.002236,0.002750,0.249985,0,0);}
.m147_c00320{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);}
.mf3_c00320{transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);-ms-transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);}
.mc6_c00320{transform:matrix(0.203652,-0.001833,0.002250,0.249990,0,0);-ms-transform:matrix(0.203652,-0.001833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203652,-0.001833,0.002250,0.249990,0,0);}
.mc3_c00320{transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);-ms-transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);}
.m6d_c00320{transform:matrix(0.203907,-0.001835,0.002250,0.249990,0,0);-ms-transform:matrix(0.203907,-0.001835,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203907,-0.001835,0.002250,0.249990,0,0);}
.m88_c00320{transform:matrix(0.204177,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204177,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204177,-0.001838,0.002250,0.249990,0,0);}
.m100_c00320{transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);}
.m3b_c00320{transform:matrix(0.204828,-0.002253,0.002750,0.249985,0,0);-ms-transform:matrix(0.204828,-0.002253,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204828,-0.002253,0.002750,0.249985,0,0);}
.m92_c00320{transform:matrix(0.204872,-0.001844,0.002250,0.249990,0,0);-ms-transform:matrix(0.204872,-0.001844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204872,-0.001844,0.002250,0.249990,0,0);}
.m112_c00320{transform:matrix(0.205185,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205185,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205185,-0.002052,0.002500,0.249988,0,0);}
.mf1_c00320{transform:matrix(0.205240,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205240,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205240,-0.002052,0.002500,0.249988,0,0);}
.m2_c00320{transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205265,-0.002463,0.003000,0.249982,0,0);}
.m125_c00320{transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);-ms-transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);}
.md9_c00320{transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);}
.m136_c00320{transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);}
.maa_c00320{transform:matrix(0.206132,-0.001855,0.002250,0.249990,0,0);-ms-transform:matrix(0.206132,-0.001855,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206132,-0.001855,0.002250,0.249990,0,0);}
.m3c_c00320{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);}
.m9d_c00320{transform:matrix(0.206422,-0.001858,0.002250,0.249990,0,0);-ms-transform:matrix(0.206422,-0.001858,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206422,-0.001858,0.002250,0.249990,0,0);}
.m123_c00320{transform:matrix(0.207505,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207505,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207505,-0.002075,0.002500,0.249988,0,0);}
.me6_c00320{transform:matrix(0.207727,-0.001870,0.002250,0.249990,0,0);-ms-transform:matrix(0.207727,-0.001870,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207727,-0.001870,0.002250,0.249990,0,0);}
.m65_c00320{transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207972,-0.001872,0.002250,0.249990,0,0);}
.m6f_c00320{transform:matrix(0.208762,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208762,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208762,-0.001879,0.002250,0.249990,0,0);}
.m113_c00320{transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);-ms-transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208795,-0.002088,0.002500,0.249988,0,0);}
.m37_c00320{transform:matrix(0.208937,-0.002298,0.002750,0.249985,0,0);-ms-transform:matrix(0.208937,-0.002298,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208937,-0.002298,0.002750,0.249985,0,0);}
.m10a_c00320{transform:matrix(0.209505,-0.002095,0.002500,0.249988,0,0);-ms-transform:matrix(0.209505,-0.002095,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209505,-0.002095,0.002500,0.249988,0,0);}
.m34_c00320{transform:matrix(0.209822,-0.002308,0.002750,0.249985,0,0);-ms-transform:matrix(0.209822,-0.002308,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209822,-0.002308,0.002750,0.249985,0,0);}
.md6_c00320{transform:matrix(0.210326,-0.001893,0.002250,0.249990,0,0);-ms-transform:matrix(0.210326,-0.001893,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210326,-0.001893,0.002250,0.249990,0,0);}
.mab_c00320{transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);}
.m35_c00320{transform:matrix(0.210737,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210737,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210737,-0.002318,0.002750,0.249985,0,0);}
.m9_c00320{transform:matrix(0.211125,-0.002533,0.003000,0.249982,0,0);-ms-transform:matrix(0.211125,-0.002533,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211125,-0.002533,0.003000,0.249982,0,0);}
.m25_c00320{transform:matrix(0.211292,-0.002324,0.002750,0.249985,0,0);-ms-transform:matrix(0.211292,-0.002324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211292,-0.002324,0.002750,0.249985,0,0);}
.me2_c00320{transform:matrix(0.211496,-0.001903,0.002250,0.249990,0,0);-ms-transform:matrix(0.211496,-0.001903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211496,-0.001903,0.002250,0.249990,0,0);}
.m20_c00320{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);}
.mf4_c00320{transform:matrix(0.212239,-0.002122,0.002500,0.249988,0,0);-ms-transform:matrix(0.212239,-0.002122,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212239,-0.002122,0.002500,0.249988,0,0);}
.mdf_c00320{transform:matrix(0.212271,-0.001910,0.002250,0.249990,0,0);-ms-transform:matrix(0.212271,-0.001910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212271,-0.001910,0.002250,0.249990,0,0);}
.m7b_c00320{transform:matrix(0.212341,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212341,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212341,-0.001911,0.002250,0.249990,0,0);}
.me4_c00320{transform:matrix(0.213286,-0.001920,0.002250,0.249990,0,0);-ms-transform:matrix(0.213286,-0.001920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213286,-0.001920,0.002250,0.249990,0,0);}
.mf7_c00320{transform:matrix(0.213469,-0.002135,0.002500,0.249988,0,0);-ms-transform:matrix(0.213469,-0.002135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213469,-0.002135,0.002500,0.249988,0,0);}
.mac_c00320{transform:matrix(0.214151,-0.001927,0.002250,0.249990,0,0);-ms-transform:matrix(0.214151,-0.001927,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214151,-0.001927,0.002250,0.249990,0,0);}
.mb9_c00320{transform:matrix(0.214696,-0.001932,0.002250,0.249990,0,0);-ms-transform:matrix(0.214696,-0.001932,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214696,-0.001932,0.002250,0.249990,0,0);}
.m128_c00320{transform:matrix(0.215009,-0.002150,0.002500,0.249988,0,0);-ms-transform:matrix(0.215009,-0.002150,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215009,-0.002150,0.002500,0.249988,0,0);}
.m1c_c00320{transform:matrix(0.215827,-0.002374,0.002750,0.249985,0,0);-ms-transform:matrix(0.215827,-0.002374,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215827,-0.002374,0.002750,0.249985,0,0);}
.m111_c00320{transform:matrix(0.215984,-0.002160,0.002500,0.249988,0,0);-ms-transform:matrix(0.215984,-0.002160,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215984,-0.002160,0.002500,0.249988,0,0);}
.mec_c00320{transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);}
.m14_c00320{transform:matrix(0.216242,-0.002379,0.002750,0.249985,0,0);-ms-transform:matrix(0.216242,-0.002379,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216242,-0.002379,0.002750,0.249985,0,0);}
.m50_c00320{transform:matrix(0.216747,-0.002384,0.002750,0.249985,0,0);-ms-transform:matrix(0.216747,-0.002384,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216747,-0.002384,0.002750,0.249985,0,0);}
.m89_c00320{transform:matrix(0.216786,-0.001951,0.002250,0.249990,0,0);-ms-transform:matrix(0.216786,-0.001951,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216786,-0.001951,0.002250,0.249990,0,0);}
.mce_c00320{transform:matrix(0.216876,-0.001952,0.002250,0.249990,0,0);-ms-transform:matrix(0.216876,-0.001952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216876,-0.001952,0.002250,0.249990,0,0);}
.mf0_c00320{transform:matrix(0.217444,-0.002174,0.002500,0.249988,0,0);-ms-transform:matrix(0.217444,-0.002174,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217444,-0.002174,0.002500,0.249988,0,0);}
.m87_c00320{transform:matrix(0.218026,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.218026,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218026,-0.001962,0.002250,0.249990,0,0);}
.m143_c00320{transform:matrix(0.218139,-0.002181,0.002500,0.249988,0,0);-ms-transform:matrix(0.218139,-0.002181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218139,-0.002181,0.002500,0.249988,0,0);}
.m52_c00320{transform:matrix(0.218512,-0.002404,0.002750,0.249985,0,0);-ms-transform:matrix(0.218512,-0.002404,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218512,-0.002404,0.002750,0.249985,0,0);}
.m139_c00320{transform:matrix(0.218559,-0.002186,0.002500,0.249988,0,0);-ms-transform:matrix(0.218559,-0.002186,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218559,-0.002186,0.002500,0.249988,0,0);}
.me8_c00320{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);}
.m97_c00320{transform:matrix(0.219321,-0.001974,0.002250,0.249990,0,0);-ms-transform:matrix(0.219321,-0.001974,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219321,-0.001974,0.002250,0.249990,0,0);}
.m39_c00320{transform:matrix(0.219607,-0.002416,0.002750,0.249985,0,0);-ms-transform:matrix(0.219607,-0.002416,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219607,-0.002416,0.002750,0.249985,0,0);}
.m142_c00320{transform:matrix(0.220504,-0.002205,0.002500,0.249988,0,0);-ms-transform:matrix(0.220504,-0.002205,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220504,-0.002205,0.002500,0.249988,0,0);}
.m60_c00320{transform:matrix(0.221756,-0.001996,0.002250,0.249990,0,0);-ms-transform:matrix(0.221756,-0.001996,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221756,-0.001996,0.002250,0.249990,0,0);}
.mcd_c00320{transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);-ms-transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222331,-0.002001,0.002250,0.249990,0,0);}
.me0_c00320{transform:matrix(0.222846,-0.002006,0.002250,0.249990,0,0);-ms-transform:matrix(0.222846,-0.002006,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222846,-0.002006,0.002250,0.249990,0,0);}
.me1_c00320{transform:matrix(0.223806,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223806,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223806,-0.002014,0.002250,0.249990,0,0);}
.mde_c00320{transform:matrix(0.224646,-0.002022,0.002250,0.249990,0,0);-ms-transform:matrix(0.224646,-0.002022,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224646,-0.002022,0.002250,0.249990,0,0);}
.md0_c00320{transform:matrix(0.225066,-0.002026,0.002250,0.249990,0,0);-ms-transform:matrix(0.225066,-0.002026,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225066,-0.002026,0.002250,0.249990,0,0);}
.m72_c00320{transform:matrix(0.226046,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.226046,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226046,-0.002034,0.002250,0.249990,0,0);}
.m109_c00320{transform:matrix(0.227209,-0.002272,0.002500,0.249988,0,0);-ms-transform:matrix(0.227209,-0.002272,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227209,-0.002272,0.002500,0.249988,0,0);}
.ma7_c00320{transform:matrix(0.228786,-0.002059,0.002250,0.249990,0,0);-ms-transform:matrix(0.228786,-0.002059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228786,-0.002059,0.002250,0.249990,0,0);}
.m47_c00320{transform:matrix(0.229471,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229471,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229471,-0.002524,0.002750,0.249985,0,0);}
.meb_c00320{transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-ms-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);}
.m44_c00320{transform:matrix(0.230091,-0.002531,0.002750,0.249985,0,0);-ms-transform:matrix(0.230091,-0.002531,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230091,-0.002531,0.002750,0.249985,0,0);}
.m71_c00320{transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);}
.mfd_c00320{transform:matrix(0.232063,-0.002321,0.002500,0.249988,0,0);-ms-transform:matrix(0.232063,-0.002321,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232063,-0.002321,0.002500,0.249988,0,0);}
.m66_c00320{transform:matrix(0.232981,-0.002097,0.002250,0.249990,0,0);-ms-transform:matrix(0.232981,-0.002097,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232981,-0.002097,0.002250,0.249990,0,0);}
.mea_c00320{transform:matrix(0.233913,-0.002339,0.002500,0.249988,0,0);-ms-transform:matrix(0.233913,-0.002339,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233913,-0.002339,0.002500,0.249988,0,0);}
.md4_c00320{transform:matrix(0.235990,-0.002124,0.002250,0.249990,0,0);-ms-transform:matrix(0.235990,-0.002124,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235990,-0.002124,0.002250,0.249990,0,0);}
.mc9_c00320{transform:matrix(0.237660,-0.002139,0.002250,0.249990,0,0);-ms-transform:matrix(0.237660,-0.002139,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237660,-0.002139,0.002250,0.249990,0,0);}
.md3_c00320{transform:matrix(0.237970,-0.002142,0.002250,0.249990,0,0);-ms-transform:matrix(0.237970,-0.002142,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237970,-0.002142,0.002250,0.249990,0,0);}
.md1_c00320{transform:matrix(0.238075,-0.002143,0.002250,0.249990,0,0);-ms-transform:matrix(0.238075,-0.002143,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238075,-0.002143,0.002250,0.249990,0,0);}
.m8a_c00320{transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);-ms-transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);}
.m129_c00320{transform:matrix(0.242533,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242533,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242533,-0.002425,0.002500,0.249988,0,0);}
.mf6_c00320{transform:matrix(0.243033,-0.002430,0.002500,0.249988,0,0);-ms-transform:matrix(0.243033,-0.002430,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243033,-0.002430,0.002500,0.249988,0,0);}
.m120_c00320{transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);-ms-transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);}
.m69_c00320{transform:matrix(0.247055,-0.002223,0.002250,0.249990,0,0);-ms-transform:matrix(0.247055,-0.002223,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247055,-0.002223,0.002250,0.249990,0,0);}
.m148_c00320{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);}
.mca_c00320{transform:matrix(0.249895,-0.002249,0.002250,0.249990,0,0);-ms-transform:matrix(0.249895,-0.002249,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249895,-0.002249,0.002250,0.249990,0,0);}
.mb1_c00320{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m14b_c00320{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.253680,-0.002790,0.002750,0.249985,0,0);-ms-transform:matrix(0.253680,-0.002790,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253680,-0.002790,0.002750,0.249985,0,0);}
.m64_c00320{transform:matrix(0.255965,-0.002304,0.002250,0.249990,0,0);-ms-transform:matrix(0.255965,-0.002304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255965,-0.002304,0.002250,0.249990,0,0);}
.m115_c00320{transform:matrix(0.259112,-0.002591,0.002500,0.249988,0,0);-ms-transform:matrix(0.259112,-0.002591,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259112,-0.002591,0.002500,0.249988,0,0);}
.m1b_c00320{transform:matrix(0.259914,-0.002859,0.002750,0.249985,0,0);-ms-transform:matrix(0.259914,-0.002859,0.002750,0.249985,0,0);-webkit-transform:matrix(0.259914,-0.002859,0.002750,0.249985,0,0);}
.m11_c00320{transform:matrix(0.261884,-0.003666,0.003500,0.249976,0,0);-ms-transform:matrix(0.261884,-0.003666,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261884,-0.003666,0.003500,0.249976,0,0);}
.m36_c00320{transform:matrix(0.272793,-0.003001,0.002750,0.249985,0,0);-ms-transform:matrix(0.272793,-0.003001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272793,-0.003001,0.002750,0.249985,0,0);}
.md5_c00320{transform:matrix(0.273199,-0.002459,0.002250,0.249990,0,0);-ms-transform:matrix(0.273199,-0.002459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273199,-0.002459,0.002250,0.249990,0,0);}
.mcf_c00320{transform:matrix(0.275464,-0.002479,0.002250,0.249990,0,0);-ms-transform:matrix(0.275464,-0.002479,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275464,-0.002479,0.002250,0.249990,0,0);}
.m12_c00320{transform:matrix(0.277243,-0.003881,0.003500,0.249976,0,0);-ms-transform:matrix(0.277243,-0.003881,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277243,-0.003881,0.003500,0.249976,0,0);}
.m137_c00320{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.281738,-0.003099,0.002750,0.249985,0,0);-ms-transform:matrix(0.281738,-0.003099,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281738,-0.003099,0.002750,0.249985,0,0);}
.m56_c00320{transform:matrix(0.294613,-0.002652,0.002250,0.249990,0,0);-ms-transform:matrix(0.294613,-0.002652,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294613,-0.002652,0.002250,0.249990,0,0);}
.mc0_c00320{transform:matrix(0.297168,-0.002675,0.002250,0.249990,0,0);-ms-transform:matrix(0.297168,-0.002675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297168,-0.002675,0.002250,0.249990,0,0);}
.mf5_c00320{transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);-ms-transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298630,-0.002986,0.002500,0.249988,0,0);}
.m110_c00320{transform:matrix(0.299945,-0.002999,0.002500,0.249988,0,0);-ms-transform:matrix(0.299945,-0.002999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299945,-0.002999,0.002500,0.249988,0,0);}
.m67_c00320{transform:matrix(0.300393,-0.002704,0.002250,0.249990,0,0);-ms-transform:matrix(0.300393,-0.002704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300393,-0.002704,0.002250,0.249990,0,0);}
.m24_c00320{transform:matrix(0.301012,-0.003311,0.002750,0.249985,0,0);-ms-transform:matrix(0.301012,-0.003311,0.002750,0.249985,0,0);-webkit-transform:matrix(0.301012,-0.003311,0.002750,0.249985,0,0);}
.m40_c00320{transform:matrix(0.301842,-0.003320,0.002750,0.249985,0,0);-ms-transform:matrix(0.301842,-0.003320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.301842,-0.003320,0.002750,0.249985,0,0);}
.me_c00320{transform:matrix(0.304155,-0.004258,0.003500,0.249976,0,0);-ms-transform:matrix(0.304155,-0.004258,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304155,-0.004258,0.003500,0.249976,0,0);}
.md8_c00320{transform:matrix(0.311907,-0.002807,0.002250,0.249990,0,0);-ms-transform:matrix(0.311907,-0.002807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.311907,-0.002807,0.002250,0.249990,0,0);}
.m154_c00320{transform:matrix(0.315283,0.009458,-0.007497,0.249888,0,0);-ms-transform:matrix(0.315283,0.009458,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.315283,0.009458,-0.007497,0.249888,0,0);}
.m155_c00320{transform:matrix(0.324104,0.009723,-0.007497,0.249888,0,0);-ms-transform:matrix(0.324104,0.009723,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.324104,0.009723,-0.007497,0.249888,0,0);}
.me7_c00320{transform:matrix(0.324897,-0.002924,0.002250,0.249990,0,0);-ms-transform:matrix(0.324897,-0.002924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.324897,-0.002924,0.002250,0.249990,0,0);}
.m8b_c00320{transform:matrix(0.325062,-0.002926,0.002250,0.249990,0,0);-ms-transform:matrix(0.325062,-0.002926,0.002250,0.249990,0,0);-webkit-transform:matrix(0.325062,-0.002926,0.002250,0.249990,0,0);}
.m53_c00320{transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);-ms-transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.326000,-0.003586,0.002750,0.249985,0,0);}
.m157_c00320{transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);-ms-transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);}
.m15a_c00320{transform:matrix(0.348993,0.010470,-0.007497,0.249888,0,0);-ms-transform:matrix(0.348993,0.010470,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.348993,0.010470,-0.007497,0.249888,0,0);}
.m10_c00320{transform:matrix(0.349406,-0.004892,0.003500,0.249976,0,0);-ms-transform:matrix(0.349406,-0.004892,0.003500,0.249976,0,0);-webkit-transform:matrix(0.349406,-0.004892,0.003500,0.249976,0,0);}
.md_c00320{transform:matrix(0.372359,-0.005213,0.003500,0.249976,0,0);-ms-transform:matrix(0.372359,-0.005213,0.003500,0.249976,0,0);-webkit-transform:matrix(0.372359,-0.005213,0.003500,0.249976,0,0);}
.mbe_c00320{transform:matrix(0.386409,-0.003478,0.002250,0.249990,0,0);-ms-transform:matrix(0.386409,-0.003478,0.002250,0.249990,0,0);-webkit-transform:matrix(0.386409,-0.003478,0.002250,0.249990,0,0);}
.me9_c00320{transform:matrix(0.387230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387230,0.000000,0.000000,0.250000,0,0);}
.m146_c00320{transform:matrix(0.442668,-0.004427,0.002500,0.249988,0,0);-ms-transform:matrix(0.442668,-0.004427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.442668,-0.004427,0.002500,0.249988,0,0);}
.m144_c00320{transform:matrix(0.447298,-0.004473,0.002500,0.249988,0,0);-ms-transform:matrix(0.447298,-0.004473,0.002500,0.249988,0,0);-webkit-transform:matrix(0.447298,-0.004473,0.002500,0.249988,0,0);}
.m4d_c00320{transform:matrix(0.465982,-0.005126,0.002750,0.249985,0,0);-ms-transform:matrix(0.465982,-0.005126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.465982,-0.005126,0.002750,0.249985,0,0);}
.m8c_c00320{transform:matrix(0.528864,-0.004760,0.002250,0.249990,0,0);-ms-transform:matrix(0.528864,-0.004760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.528864,-0.004760,0.002250,0.249990,0,0);}
.m159_c00320{transform:matrix(0.653241,0.019597,-0.007497,0.249888,0,0);-ms-transform:matrix(0.653241,0.019597,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.653241,0.019597,-0.007497,0.249888,0,0);}
.mdb_c00320{transform:matrix(0.681102,-0.006130,0.002250,0.249990,0,0);-ms-transform:matrix(0.681102,-0.006130,0.002250,0.249990,0,0);-webkit-transform:matrix(0.681102,-0.006130,0.002250,0.249990,0,0);}
.m158_c00320{transform:matrix(0.692199,0.020766,-0.007497,0.249888,0,0);-ms-transform:matrix(0.692199,0.020766,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.692199,0.020766,-0.007497,0.249888,0,0);}
.m140_c00320{transform:matrix(0.762427,-0.007624,0.002500,0.249988,0,0);-ms-transform:matrix(0.762427,-0.007624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.762427,-0.007624,0.002500,0.249988,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;}
.fs18_c00320{font-size:25.200000px;}
.fs12_c00320{font-size:43.050000px;}
.fs11_c00320{font-size:45.150000px;}
.fs1a_c00320{font-size:53.550000px;}
.fs1b_c00320{font-size:57.750000px;}
.fs19_c00320{font-size:58.802940px;}
.fs10_c00320{font-size:63.002551px;}
.fs6_c00320{font-size:63.003811px;}
.fse_c00320{font-size:64.050000px;}
.fs13_c00320{font-size:65.103255px;}
.fsc_c00320{font-size:66.152679px;}
.fs16_c00320{font-size:66.153307px;}
.fsf_c00320{font-size:67.202722px;}
.fs14_c00320{font-size:67.203360px;}
.fsb_c00320{font-size:68.252764px;}
.fs3_c00320{font-size:68.254129px;}
.fs9_c00320{font-size:69.302807px;}
.fs7_c00320{font-size:69.304193px;}
.fs17_c00320{font-size:70.353517px;}
.fs4_c00320{font-size:70.354256px;}
.fs8_c00320{font-size:71.402892px;}
.fs15_c00320{font-size:71.403570px;}
.fs5_c00320{font-size:71.404320px;}
.fs1d_c00320{font-size:71.432123px;}
.fsa_c00320{font-size:77.703147px;}
.fs0_c00320{font-size:78.755670px;}
.fsd_c00320{font-size:80.850000px;}
.fs1c_c00320{font-size:99.794877px;}
.fs2_c00320{font-size:126.012347px;}
.fs1_c00320{font-size:131.262862px;}
.y0_c00320{bottom:0.000000px;}
.y153_c00320{bottom:101.018190px;}
.y151_c00320{bottom:101.018235px;}
.y154_c00320{bottom:101.018505px;}
.y152_c00320{bottom:101.018595px;}
.y150_c00320{bottom:116.380725px;}
.y14f_c00320{bottom:118.226220px;}
.y14e_c00320{bottom:122.046000px;}
.y14d_c00320{bottom:174.778500px;}
.y14c_c00320{bottom:192.714000px;}
.y13c_c00320{bottom:209.251500px;}
.y13d_c00320{bottom:209.359470px;}
.y13e_c00320{bottom:209.526840px;}
.y13f_c00320{bottom:209.942910px;}
.y140_c00320{bottom:210.528450px;}
.y141_c00320{bottom:211.038030px;}
.y142_c00320{bottom:211.106250px;}
.y143_c00320{bottom:211.238595px;}
.y144_c00320{bottom:211.597650px;}
.y145_c00320{bottom:211.727430px;}
.y146_c00320{bottom:212.388870px;}
.y147_c00320{bottom:212.928600px;}
.y148_c00320{bottom:213.172590px;}
.y149_c00320{bottom:213.513075px;}
.y14a_c00320{bottom:213.536130px;}
.y14b_c00320{bottom:213.629280px;}
.y13b_c00320{bottom:254.070000px;}
.y130_c00320{bottom:259.196385px;}
.y131_c00320{bottom:259.658460px;}
.y132_c00320{bottom:260.259660px;}
.y133_c00320{bottom:260.437755px;}
.y134_c00320{bottom:260.692815px;}
.y135_c00320{bottom:260.921475px;}
.y136_c00320{bottom:261.215265px;}
.y137_c00320{bottom:261.766620px;}
.y138_c00320{bottom:262.009215px;}
.y139_c00320{bottom:262.386165px;}
.y13a_c00320{bottom:262.641300px;}
.y126_c00320{bottom:281.877525px;}
.y127_c00320{bottom:282.566070px;}
.y128_c00320{bottom:282.919395px;}
.y129_c00320{bottom:283.292190px;}
.y12a_c00320{bottom:283.762395px;}
.y12b_c00320{bottom:284.550270px;}
.y12c_c00320{bottom:284.996700px;}
.y12d_c00320{bottom:285.552015px;}
.y12e_c00320{bottom:286.024950px;}
.y12f_c00320{bottom:286.311240px;}
.y11d_c00320{bottom:303.749310px;}
.y11e_c00320{bottom:304.321920px;}
.y11f_c00320{bottom:305.161440px;}
.y120_c00320{bottom:305.539530px;}
.y121_c00320{bottom:306.368385px;}
.y122_c00320{bottom:306.716670px;}
.y123_c00320{bottom:307.357080px;}
.y124_c00320{bottom:307.686030px;}
.y125_c00320{bottom:308.304330px;}
.y111_c00320{bottom:326.699115px;}
.y112_c00320{bottom:327.303090px;}
.y113_c00320{bottom:328.015260px;}
.y114_c00320{bottom:328.349895px;}
.y115_c00320{bottom:328.760295px;}
.y116_c00320{bottom:329.025060px;}
.y117_c00320{bottom:329.463765px;}
.y118_c00320{bottom:329.642820px;}
.y119_c00320{bottom:329.958000px;}
.y11a_c00320{bottom:330.627135px;}
.y11b_c00320{bottom:331.075305px;}
.y11c_c00320{bottom:331.585665px;}
.y106_c00320{bottom:349.380090px;}
.y107_c00320{bottom:349.920420px;}
.y108_c00320{bottom:350.295690px;}
.y109_c00320{bottom:350.987805px;}
.y10a_c00320{bottom:351.418365px;}
.y10b_c00320{bottom:352.173240px;}
.y10c_c00320{bottom:352.392030px;}
.y10d_c00320{bottom:352.855680px;}
.y10e_c00320{bottom:353.668995px;}
.y10f_c00320{bottom:354.076395px;}
.y110_c00320{bottom:354.280770px;}
.yf9_c00320{bottom:372.060360px;}
.yfa_c00320{bottom:372.341175px;}
.yfb_c00320{bottom:372.842940px;}
.yfc_c00320{bottom:373.070055px;}
.yfd_c00320{bottom:373.496880px;}
.yfe_c00320{bottom:373.985715px;}
.yff_c00320{bottom:374.571525px;}
.y100_c00320{bottom:374.765490px;}
.y101_c00320{bottom:375.160155px;}
.y102_c00320{bottom:375.421860px;}
.y103_c00320{bottom:376.002525px;}
.y104_c00320{bottom:376.234440px;}
.y105_c00320{bottom:376.682535px;}
.yed_c00320{bottom:394.741500px;}
.yee_c00320{bottom:395.362530px;}
.yef_c00320{bottom:395.710350px;}
.yf0_c00320{bottom:396.037500px;}
.yf1_c00320{bottom:396.261480px;}
.yf2_c00320{bottom:396.690945px;}
.yf3_c00320{bottom:396.893415px;}
.yf4_c00320{bottom:397.228410px;}
.yf5_c00320{bottom:397.900140px;}
.yf6_c00320{bottom:398.205735px;}
.yf7_c00320{bottom:398.554200px;}
.yf8_c00320{bottom:399.380175px;}
.yec_c00320{bottom:399.870000px;}
.ye0_c00320{bottom:417.687656px;}
.ye1_c00320{bottom:418.219407px;}
.ye2_c00320{bottom:418.412092px;}
.ye3_c00320{bottom:418.990473px;}
.ye4_c00320{bottom:419.751009px;}
.ye5_c00320{bottom:420.183144px;}
.ye6_c00320{bottom:420.472476px;}
.ye7_c00320{bottom:420.659951px;}
.ye8_c00320{bottom:421.087239px;}
.ye9_c00320{bottom:421.425104px;}
.yea_c00320{bottom:421.653470px;}
.yeb_c00320{bottom:422.210182px;}
.yd2_c00320{bottom:440.099124px;}
.yd3_c00320{bottom:440.524293px;}
.yd4_c00320{bottom:440.738295px;}
.yd5_c00320{bottom:441.253523px;}
.yd6_c00320{bottom:441.515949px;}
.yd7_c00320{bottom:442.142646px;}
.yd8_c00320{bottom:442.361684px;}
.yd9_c00320{bottom:442.818402px;}
.yda_c00320{bottom:443.056637px;}
.ydb_c00320{bottom:443.532849px;}
.ydc_c00320{bottom:443.855985px;}
.ydd_c00320{bottom:444.050399px;}
.yde_c00320{bottom:444.344105px;}
.ydf_c00320{bottom:444.600361px;}
.yc3_c00320{bottom:462.510627px;}
.yc4_c00320{bottom:462.677662px;}
.yc5_c00320{bottom:463.112633px;}
.yc6_c00320{bottom:463.319615px;}
.yc7_c00320{bottom:463.960865px;}
.yc8_c00320{bottom:464.396321px;}
.yc9_c00320{bottom:464.874882px;}
.yca_c00320{bottom:465.088709px;}
.ycb_c00320{bottom:465.226813px;}
.ycc_c00320{bottom:465.363285px;}
.ycd_c00320{bottom:465.758983px;}
.yce_c00320{bottom:466.026648px;}
.ycf_c00320{bottom:466.218672px;}
.yd0_c00320{bottom:466.578029px;}
.yd1_c00320{bottom:467.032951px;}
.yb6_c00320{bottom:485.461500px;}
.yb7_c00320{bottom:485.862018px;}
.yb8_c00320{bottom:486.044673px;}
.yb9_c00320{bottom:486.467493px;}
.yba_c00320{bottom:486.834099px;}
.ybb_c00320{bottom:486.985164px;}
.ybc_c00320{bottom:487.208697px;}
.ybd_c00320{bottom:487.427910px;}
.ybe_c00320{bottom:488.302265px;}
.ybf_c00320{bottom:488.783405px;}
.yc0_c00320{bottom:489.227730px;}
.yc1_c00320{bottom:489.986403px;}
.yc2_c00320{bottom:490.126196px;}
.yb4_c00320{bottom:502.470000px;}
.yb5_c00320{bottom:507.600000px;}
.ya9_c00320{bottom:507.866986px;}
.yaa_c00320{bottom:508.230254px;}
.yab_c00320{bottom:508.572274px;}
.yac_c00320{bottom:508.816635px;}
.yad_c00320{bottom:509.158562px;}
.yae_c00320{bottom:509.409225px;}
.yaf_c00320{bottom:509.789391px;}
.yb0_c00320{bottom:510.302488px;}
.yb1_c00320{bottom:510.566313px;}
.yb2_c00320{bottom:511.369746px;}
.yb3_c00320{bottom:511.546169px;}
.y9d_c00320{bottom:530.009806px;}
.y9e_c00320{bottom:530.375074px;}
.y9f_c00320{bottom:530.567403px;}
.ya0_c00320{bottom:531.043014px;}
.ya1_c00320{bottom:531.512751px;}
.ya2_c00320{bottom:532.118187px;}
.ya3_c00320{bottom:532.441624px;}
.ya4_c00320{bottom:532.980872px;}
.ya5_c00320{bottom:533.646637px;}
.ya6_c00320{bottom:533.937777px;}
.ya7_c00320{bottom:534.474702px;}
.ya8_c00320{bottom:534.843819px;}
.y91_c00320{bottom:552.959513px;}
.y92_c00320{bottom:553.302355px;}
.y93_c00320{bottom:553.513901px;}
.y94_c00320{bottom:553.969590px;}
.y95_c00320{bottom:554.148564px;}
.y96_c00320{bottom:554.620142px;}
.y97_c00320{bottom:554.983058px;}
.y98_c00320{bottom:555.217578px;}
.y99_c00320{bottom:555.659985px;}
.y9a_c00320{bottom:556.170425px;}
.y9b_c00320{bottom:556.386411px;}
.y9c_c00320{bottom:556.537065px;}
.y86_c00320{bottom:575.640473px;}
.y87_c00320{bottom:575.954307px;}
.y88_c00320{bottom:576.253292px;}
.y89_c00320{bottom:576.515705px;}
.y8a_c00320{bottom:576.957924px;}
.y8b_c00320{bottom:577.497128px;}
.y8c_c00320{bottom:577.655901px;}
.y8d_c00320{bottom:577.869336px;}
.y8e_c00320{bottom:578.137703px;}
.y8f_c00320{bottom:579.143547px;}
.y90_c00320{bottom:579.388748px;}
.y7c_c00320{bottom:597.782082px;}
.y7d_c00320{bottom:597.965864px;}
.y7e_c00320{bottom:598.808993px;}
.y7f_c00320{bottom:599.605055px;}
.y80_c00320{bottom:600.043764px;}
.y81_c00320{bottom:601.158068px;}
.y82_c00320{bottom:601.250729px;}
.y83_c00320{bottom:602.026196px;}
.y84_c00320{bottom:603.807571px;}
.y85_c00320{bottom:604.198202px;}
.y70_c00320{bottom:619.112201px;}
.y71_c00320{bottom:619.530635px;}
.y72_c00320{bottom:619.976801px;}
.y73_c00320{bottom:620.424965px;}
.y74_c00320{bottom:620.729541px;}
.y75_c00320{bottom:620.933250px;}
.y76_c00320{bottom:621.829092px;}
.y77_c00320{bottom:622.225626px;}
.y78_c00320{bottom:622.498259px;}
.y79_c00320{bottom:622.934933px;}
.y7a_c00320{bottom:623.129825px;}
.y7b_c00320{bottom:623.427813px;}
.y63_c00320{bottom:643.411148px;}
.y64_c00320{bottom:643.653254px;}
.y65_c00320{bottom:643.924907px;}
.y66_c00320{bottom:644.559880px;}
.y67_c00320{bottom:644.823449px;}
.y68_c00320{bottom:645.118050px;}
.y69_c00320{bottom:645.376178px;}
.y6a_c00320{bottom:645.739404px;}
.y6b_c00320{bottom:645.916232px;}
.y6c_c00320{bottom:646.195445px;}
.y6d_c00320{bottom:646.381911px;}
.y6e_c00320{bottom:646.792571px;}
.y6f_c00320{bottom:646.998015px;}
.y58_c00320{bottom:665.467500px;}
.y59_c00320{bottom:665.815044px;}
.y5a_c00320{bottom:666.120887px;}
.y5b_c00320{bottom:666.522242px;}
.y5c_c00320{bottom:667.137072px;}
.y5d_c00320{bottom:667.552602px;}
.y5e_c00320{bottom:667.933775px;}
.y5f_c00320{bottom:668.218463px;}
.y60_c00320{bottom:668.563550px;}
.y61_c00320{bottom:669.205016px;}
.y62_c00320{bottom:669.516285px;}
.y51_c00320{bottom:687.414018px;}
.y52_c00320{bottom:688.062365px;}
.y53_c00320{bottom:688.525893px;}
.y54_c00320{bottom:688.753392px;}
.y55_c00320{bottom:689.404527px;}
.y56_c00320{bottom:689.572137px;}
.y57_c00320{bottom:689.767002px;}
.y42_c00320{bottom:710.092130px;}
.y43_c00320{bottom:710.213691px;}
.y44_c00320{bottom:710.460361px;}
.y45_c00320{bottom:710.842470px;}
.y46_c00320{bottom:711.361418px;}
.y47_c00320{bottom:711.857613px;}
.y48_c00320{bottom:712.543032px;}
.y49_c00320{bottom:712.706336px;}
.y4a_c00320{bottom:712.901135px;}
.y4b_c00320{bottom:713.348461px;}
.y4c_c00320{bottom:714.037494px;}
.y4d_c00320{bottom:714.326583px;}
.y4e_c00320{bottom:714.952078px;}
.y4f_c00320{bottom:715.454461px;}
.y50_c00320{bottom:715.717020px;}
.y36_c00320{bottom:732.774911px;}
.y37_c00320{bottom:733.502412px;}
.y38_c00320{bottom:733.728215px;}
.y39_c00320{bottom:734.179786px;}
.y3a_c00320{bottom:734.444133px;}
.y3b_c00320{bottom:735.138585px;}
.y3c_c00320{bottom:735.406231px;}
.y3d_c00320{bottom:735.911362px;}
.y3e_c00320{bottom:736.178811px;}
.y3f_c00320{bottom:736.937712px;}
.y40_c00320{bottom:737.004587px;}
.y41_c00320{bottom:737.877552px;}
.y2a_c00320{bottom:755.187168px;}
.y2b_c00320{bottom:755.579505px;}
.y2c_c00320{bottom:755.961481px;}
.y2d_c00320{bottom:756.233759px;}
.y2e_c00320{bottom:756.726062px;}
.y2f_c00320{bottom:756.981741px;}
.y30_c00320{bottom:757.613457px;}
.y31_c00320{bottom:757.901903px;}
.y32_c00320{bottom:758.560313px;}
.y33_c00320{bottom:758.881541px;}
.y34_c00320{bottom:759.985629px;}
.y35_c00320{bottom:760.688636px;}
.y1f_c00320{bottom:777.870178px;}
.y20_c00320{bottom:778.696941px;}
.y21_c00320{bottom:779.053410px;}
.y22_c00320{bottom:780.388496px;}
.y23_c00320{bottom:780.659848px;}
.y24_c00320{bottom:780.914060px;}
.y25_c00320{bottom:781.808582px;}
.y26_c00320{bottom:782.008529px;}
.y27_c00320{bottom:782.338518px;}
.y28_c00320{bottom:782.591161px;}
.y29_c00320{bottom:783.028260px;}
.y15_c00320{bottom:800.551500px;}
.y16_c00320{bottom:801.181487px;}
.y17_c00320{bottom:802.247618px;}
.y18_c00320{bottom:802.533084px;}
.y19_c00320{bottom:802.986752px;}
.y1a_c00320{bottom:803.548742px;}
.y1b_c00320{bottom:803.848860px;}
.y1c_c00320{bottom:804.142280px;}
.y1d_c00320{bottom:804.985809px;}
.y1e_c00320{bottom:805.410849px;}
.y1_c00320{bottom:821.889000px;}
.y2_c00320{bottom:822.264228px;}
.y3_c00320{bottom:822.828096px;}
.y4_c00320{bottom:823.097970px;}
.y5_c00320{bottom:823.696704px;}
.y6_c00320{bottom:824.354424px;}
.y7_c00320{bottom:824.613336px;}
.y8_c00320{bottom:825.050898px;}
.y9_c00320{bottom:825.738084px;}
.ya_c00320{bottom:826.229556px;}
.yb_c00320{bottom:827.046594px;}
.yc_c00320{bottom:827.260488px;}
.yd_c00320{bottom:827.710776px;}
.y11_c00320{bottom:868.049886px;}
.y12_c00320{bottom:870.112446px;}
.y13_c00320{bottom:871.425231px;}
.y14_c00320{bottom:874.413333px;}
.ye_c00320{bottom:922.323000px;}
.yf_c00320{bottom:924.919986px;}
.y10_c00320{bottom:928.715484px;}
.h1a_c00320{height:25.200000px;}
.h14_c00320{height:43.050000px;}
.h13_c00320{height:45.150000px;}
.h1c_c00320{height:53.550000px;}
.h1d_c00320{height:57.750000px;}
.h1b_c00320{height:58.802940px;}
.h12_c00320{height:63.002551px;}
.h8_c00320{height:63.003811px;}
.h10_c00320{height:64.050000px;}
.h15_c00320{height:65.103255px;}
.he_c00320{height:66.152679px;}
.h18_c00320{height:66.153307px;}
.h11_c00320{height:67.202722px;}
.h16_c00320{height:67.203360px;}
.hd_c00320{height:68.252764px;}
.h5_c00320{height:68.254129px;}
.hb_c00320{height:69.302807px;}
.h9_c00320{height:69.304193px;}
.h19_c00320{height:70.353517px;}
.h6_c00320{height:70.354256px;}
.ha_c00320{height:71.402892px;}
.h17_c00320{height:71.403570px;}
.h7_c00320{height:71.404320px;}
.h1f_c00320{height:71.432123px;}
.hc_c00320{height:77.703147px;}
.h2_c00320{height:78.755670px;}
.hf_c00320{height:80.850000px;}
.h1e_c00320{height:99.794877px;}
.h4_c00320{height:126.012347px;}
.h3_c00320{height:131.262862px;}
.h1_c00320{height:1005.000000px;}
.h0_c00320{height:1005.150000px;}
.w0_c00320{width:702.540000px;}
.w1_c00320{width:702.750000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:52.887000px;}
.x38_c00320{left:75.648877px;}
.x2_c00320{left:84.156000px;}
.x24_c00320{left:85.157542px;}
.x5d_c00320{left:87.180798px;}
.x7c_c00320{left:88.408500px;}
.x82_c00320{left:89.518131px;}
.xa5_c00320{left:90.580815px;}
.xbc_c00320{left:91.911975px;}
.xb8_c00320{left:92.999295px;}
.x47_c00320{left:95.422500px;}
.xc1_c00320{left:104.331000px;}
.x39_c00320{left:106.260531px;}
.x83_c00320{left:108.077631px;}
.xc9_c00320{left:112.860000px;}
.x25_c00320{left:117.824179px;}
.xc2_c00320{left:121.068000px;}
.x62_c00320{left:122.153219px;}
.x3_c00320{left:131.145000px;}
.x7d_c00320{left:132.910500px;}
.x48_c00320{left:134.038500px;}
.x3a_c00320{left:138.133684px;}
.xe_c00320{left:140.661000px;}
.x5e_c00320{left:143.358761px;}
.xaf_c00320{left:145.456830px;}
.xb4_c00320{left:148.119885px;}
.x26_c00320{left:149.685333px;}
.x30_c00320{left:151.608085px;}
.x4_c00320{left:153.634500px;}
.x63_c00320{left:155.373719px;}
.x69_c00320{left:156.979487px;}
.x8e_c00320{left:158.071619px;}
.xb9_c00320{left:161.853795px;}
.x57_c00320{left:162.981855px;}
.x49_c00320{left:168.021000px;}
.x96_c00320{left:170.251025px;}
.x27_c00320{left:172.392085px;}
.xca_c00320{left:173.610000px;}
.x74_c00320{left:175.871459px;}
.x42_c00320{left:178.377006px;}
.x84_c00320{left:179.405631px;}
.x3b_c00320{left:181.355706px;}
.x1c_c00320{left:182.928874px;}
.x64_c00320{left:184.530719px;}
.x9f_c00320{left:187.203000px;}
.x11_c00320{left:191.779692px;}
.x43_c00320{left:197.285791px;}
.x7e_c00320{left:200.185500px;}
.x5_c00320{left:203.529000px;}
.x75_c00320{left:206.356229px;}
.x58_c00320{left:207.777450px;}
.xb0_c00320{left:210.223185px;}
.x28_c00320{left:213.464640px;}
.x8f_c00320{left:215.319119px;}
.x4e_c00320{left:219.885234px;}
.xc3_c00320{left:221.229000px;}
.x3c_c00320{left:222.645744px;}
.x5f_c00320{left:225.717819px;}
.xbd_c00320{left:229.850355px;}
.xab_c00320{left:231.000060px;}
.xb5_c00320{left:232.071885px;}
.x65_c00320{left:233.666219px;}
.x29_c00320{left:234.798909px;}
.x31_c00320{left:237.219085px;}
.x15_c00320{left:238.563000px;}
.x7f_c00320{left:240.919500px;}
.xa0_c00320{left:242.316000px;}
.x90_c00320{left:244.477619px;}
.x76_c00320{left:249.015107px;}
.x44_c00320{left:251.570197px;}
.x4f_c00320{left:252.837531px;}
.x6_c00320{left:258.339000px;}
.xc7_c00320{left:259.470000px;}
.x16_c00320{left:264.514500px;}
.x45_c00320{left:265.580049px;}
.xac_c00320{left:270.155670px;}
.xc4_c00320{left:272.187000px;}
.xb1_c00320{left:277.976010px;}
.x7_c00320{left:279.915000px;}
.x46_c00320{left:281.794867px;}
.xa6_c00320{left:283.116315px;}
.xa1_c00320{left:285.262500px;}
.x2a_c00320{left:287.454331px;}
.x50_c00320{left:289.571355px;}
.xc8_c00320{left:290.790000px;}
.xc5_c00320{left:292.243500px;}
.x1d_c00320{left:294.208153px;}
.x6a_c00320{left:295.229729px;}
.x85_c00320{left:299.039631px;}
.x12_c00320{left:300.312090px;}
.xb2_c00320{left:302.052270px;}
.x17_c00320{left:305.757000px;}
.x80_c00320{left:306.898500px;}
.x3d_c00320{left:309.601287px;}
.x2b_c00320{left:311.494567px;}
.x91_c00320{left:314.110619px;}
.x8_c00320{left:316.378500px;}
.x97_c00320{left:319.019525px;}
.x51_c00320{left:321.919152px;}
.x32_c00320{left:324.682585px;}
.xf_c00320{left:326.160000px;}
.x77_c00320{left:327.941322px;}
.x66_c00320{left:334.934219px;}
.x1e_c00320{left:338.031675px;}
.x6b_c00320{left:340.554134px;}
.xa7_c00320{left:341.697315px;}
.x3e_c00320{left:346.857874px;}
.x59_c00320{left:348.123681px;}
.x86_c00320{left:352.213131px;}
.x18_c00320{left:356.847000px;}
.x6f_c00320{left:358.399583px;}
.xa8_c00320{left:361.093815px;}
.xcb_c00320{left:363.060000px;}
.x67_c00320{left:364.752719px;}
.x2c_c00320{left:366.303957px;}
.x13_c00320{left:369.434760px;}
.x33_c00320{left:370.603585px;}
.x9_c00320{left:373.644000px;}
.x87_c00320{left:375.971631px;}
.xbe_c00320{left:377.588340px;}
.x19_c00320{left:384.130500px;}
.xb3_c00320{left:386.795415px;}
.x5a_c00320{left:387.849330px;}
.x52_c00320{left:389.425760px;}
.x88_c00320{left:391.316631px;}
.x2d_c00320{left:393.051660px;}
.x34_c00320{left:394.917085px;}
.x98_c00320{left:399.182525px;}
.x4a_c00320{left:401.085000px;}
.x3f_c00320{left:404.314747px;}
.x89_c00320{left:406.480131px;}
.x1a_c00320{left:410.805000px;}
.x1f_c00320{left:412.532850px;}
.xa_c00320{left:414.600000px;}
.x92_c00320{left:415.665119px;}
.x70_c00320{left:418.872489px;}
.x99_c00320{left:420.013025px;}
.x53_c00320{left:424.283070px;}
.xa9_c00320{left:426.730815px;}
.x20_c00320{left:429.209668px;}
.xa2_c00320{left:436.741500px;}
.x4b_c00320{left:439.428000px;}
.x71_c00320{left:445.387517px;}
.xbf_c00320{left:446.443530px;}
.x54_c00320{left:447.501773px;}
.x8a_c00320{left:450.446631px;}
.xb6_c00320{left:451.635885px;}
.x21_c00320{left:456.753871px;}
.x5b_c00320{left:458.827196px;}
.xba_c00320{left:460.448295px;}
.x35_c00320{left:463.908085px;}
.x9a_c00320{left:467.489525px;}
.x93_c00320{left:468.577619px;}
.x36_c00320{left:469.987585px;}
.xa3_c00320{left:471.588000px;}
.xad_c00320{left:474.816630px;}
.x60_c00320{left:476.571765px;}
.x22_c00320{left:477.812140px;}
.x40_c00320{left:480.503406px;}
.xb_c00320{left:482.686500px;}
.x2e_c00320{left:485.104153px;}
.x1b_c00320{left:487.489500px;}
.x6c_c00320{left:488.818457px;}
.x72_c00320{left:494.211639px;}
.x55_c00320{left:498.797732px;}
.xc_c00320{left:500.511000px;}
.x8b_c00320{left:501.523131px;}
.x61_c00320{left:502.640361px;}
.x68_c00320{left:503.757719px;}
.x9b_c00320{left:505.030025px;}
.x81_c00320{left:506.878500px;}
.x5c_c00320{left:508.091250px;}
.x4c_c00320{left:510.702000px;}
.xae_c00320{left:511.806255px;}
.x23_c00320{left:514.275244px;}
.x6d_c00320{left:515.817200px;}
.xc6_c00320{left:519.691500px;}
.x41_c00320{left:522.355944px;}
.x56_c00320{left:524.458461px;}
.x78_c00320{left:525.538104px;}
.x14_c00320{left:526.716756px;}
.x73_c00320{left:527.724032px;}
.x9c_c00320{left:530.404025px;}
.x6e_c00320{left:534.723375px;}
.xbb_c00320{left:536.370795px;}
.xd_c00320{left:538.035000px;}
.x8c_c00320{left:541.451631px;}
.x2f_c00320{left:543.695010px;}
.x4d_c00320{left:545.287500px;}
.xb7_c00320{left:546.360885px;}
.x79_c00320{left:547.640807px;}
.x37_c00320{left:549.348085px;}
.xaa_c00320{left:552.798315px;}
.xa4_c00320{left:554.185500px;}
.x94_c00320{left:558.717119px;}
.xc0_c00320{left:561.600000px;}
.x95_c00320{left:587.190119px;}
.x7a_c00320{left:590.490000px;}
.x8d_c00320{left:591.998631px;}
.x9d_c00320{left:595.350000px;}
.x10_c00320{left:597.267000px;}
.x7b_c00320{left:607.230000px;}
.x9e_c00320{left:609.120000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.fs18_c00320{font-size:22.400000pt;}
.fs12_c00320{font-size:38.266667pt;}
.fs11_c00320{font-size:40.133333pt;}
.fs1a_c00320{font-size:47.600000pt;}
.fs1b_c00320{font-size:51.333333pt;}
.fs19_c00320{font-size:52.269280pt;}
.fs10_c00320{font-size:56.002268pt;}
.fs6_c00320{font-size:56.003388pt;}
.fse_c00320{font-size:56.933333pt;}
.fs13_c00320{font-size:57.869560pt;}
.fsc_c00320{font-size:58.802381pt;}
.fs16_c00320{font-size:58.802940pt;}
.fsf_c00320{font-size:59.735752pt;}
.fs14_c00320{font-size:59.736320pt;}
.fsb_c00320{font-size:60.669124pt;}
.fs3_c00320{font-size:60.670337pt;}
.fs9_c00320{font-size:61.602495pt;}
.fs7_c00320{font-size:61.603727pt;}
.fs17_c00320{font-size:62.536460pt;}
.fs4_c00320{font-size:62.537116pt;}
.fs8_c00320{font-size:63.469237pt;}
.fs15_c00320{font-size:63.469840pt;}
.fs5_c00320{font-size:63.470506pt;}
.fs1d_c00320{font-size:63.495220pt;}
.fsa_c00320{font-size:69.069464pt;}
.fs0_c00320{font-size:70.005040pt;}
.fsd_c00320{font-size:71.866667pt;}
.fs1c_c00320{font-size:88.706558pt;}
.fs2_c00320{font-size:112.010975pt;}
.fs1_c00320{font-size:116.678099pt;}
.y0_c00320{bottom:0.000000pt;}
.y153_c00320{bottom:89.793947pt;}
.y151_c00320{bottom:89.793987pt;}
.y154_c00320{bottom:89.794227pt;}
.y152_c00320{bottom:89.794307pt;}
.y150_c00320{bottom:103.449533pt;}
.y14f_c00320{bottom:105.089973pt;}
.y14e_c00320{bottom:108.485333pt;}
.y14d_c00320{bottom:155.358667pt;}
.y14c_c00320{bottom:171.301333pt;}
.y13c_c00320{bottom:186.001333pt;}
.y13d_c00320{bottom:186.097307pt;}
.y13e_c00320{bottom:186.246080pt;}
.y13f_c00320{bottom:186.615920pt;}
.y140_c00320{bottom:187.136400pt;}
.y141_c00320{bottom:187.589360pt;}
.y142_c00320{bottom:187.650000pt;}
.y143_c00320{bottom:187.767640pt;}
.y144_c00320{bottom:188.086800pt;}
.y145_c00320{bottom:188.202160pt;}
.y146_c00320{bottom:188.790107pt;}
.y147_c00320{bottom:189.269867pt;}
.y148_c00320{bottom:189.486747pt;}
.y149_c00320{bottom:189.789400pt;}
.y14a_c00320{bottom:189.809893pt;}
.y14b_c00320{bottom:189.892693pt;}
.y13b_c00320{bottom:225.840000pt;}
.y130_c00320{bottom:230.396787pt;}
.y131_c00320{bottom:230.807520pt;}
.y132_c00320{bottom:231.341920pt;}
.y133_c00320{bottom:231.500227pt;}
.y134_c00320{bottom:231.726947pt;}
.y135_c00320{bottom:231.930200pt;}
.y136_c00320{bottom:232.191347pt;}
.y137_c00320{bottom:232.681440pt;}
.y138_c00320{bottom:232.897080pt;}
.y139_c00320{bottom:233.232147pt;}
.y13a_c00320{bottom:233.458933pt;}
.y126_c00320{bottom:250.557800pt;}
.y127_c00320{bottom:251.169840pt;}
.y128_c00320{bottom:251.483907pt;}
.y129_c00320{bottom:251.815280pt;}
.y12a_c00320{bottom:252.233240pt;}
.y12b_c00320{bottom:252.933573pt;}
.y12c_c00320{bottom:253.330400pt;}
.y12d_c00320{bottom:253.824013pt;}
.y12e_c00320{bottom:254.244400pt;}
.y12f_c00320{bottom:254.498880pt;}
.y11d_c00320{bottom:269.999387pt;}
.y11e_c00320{bottom:270.508373pt;}
.y11f_c00320{bottom:271.254613pt;}
.y120_c00320{bottom:271.590693pt;}
.y121_c00320{bottom:272.327453pt;}
.y122_c00320{bottom:272.637040pt;}
.y123_c00320{bottom:273.206293pt;}
.y124_c00320{bottom:273.498693pt;}
.y125_c00320{bottom:274.048293pt;}
.y111_c00320{bottom:290.399213pt;}
.y112_c00320{bottom:290.936080pt;}
.y113_c00320{bottom:291.569120pt;}
.y114_c00320{bottom:291.866573pt;}
.y115_c00320{bottom:292.231373pt;}
.y116_c00320{bottom:292.466720pt;}
.y117_c00320{bottom:292.856680pt;}
.y118_c00320{bottom:293.015840pt;}
.y119_c00320{bottom:293.296000pt;}
.y11a_c00320{bottom:293.890787pt;}
.y11b_c00320{bottom:294.289160pt;}
.y11c_c00320{bottom:294.742813pt;}
.y106_c00320{bottom:310.560080pt;}
.y107_c00320{bottom:311.040373pt;}
.y108_c00320{bottom:311.373947pt;}
.y109_c00320{bottom:311.989160pt;}
.y10a_c00320{bottom:312.371880pt;}
.y10b_c00320{bottom:313.042880pt;}
.y10c_c00320{bottom:313.237360pt;}
.y10d_c00320{bottom:313.649493pt;}
.y10e_c00320{bottom:314.372440pt;}
.y10f_c00320{bottom:314.734573pt;}
.y110_c00320{bottom:314.916240pt;}
.yf9_c00320{bottom:330.720320pt;}
.yfa_c00320{bottom:330.969933pt;}
.yfb_c00320{bottom:331.415947pt;}
.yfc_c00320{bottom:331.617827pt;}
.yfd_c00320{bottom:331.997227pt;}
.yfe_c00320{bottom:332.431747pt;}
.yff_c00320{bottom:332.952467pt;}
.y100_c00320{bottom:333.124880pt;}
.y101_c00320{bottom:333.475693pt;}
.y102_c00320{bottom:333.708320pt;}
.y103_c00320{bottom:334.224467pt;}
.y104_c00320{bottom:334.430613pt;}
.y105_c00320{bottom:334.828920pt;}
.yed_c00320{bottom:350.881333pt;}
.yee_c00320{bottom:351.433360pt;}
.yef_c00320{bottom:351.742533pt;}
.yf0_c00320{bottom:352.033333pt;}
.yf1_c00320{bottom:352.232427pt;}
.yf2_c00320{bottom:352.614173pt;}
.yf3_c00320{bottom:352.794147pt;}
.yf4_c00320{bottom:353.091920pt;}
.yf5_c00320{bottom:353.689013pt;}
.yf6_c00320{bottom:353.960653pt;}
.yf7_c00320{bottom:354.270400pt;}
.yf8_c00320{bottom:355.004600pt;}
.yec_c00320{bottom:355.440000pt;}
.ye0_c00320{bottom:371.277916pt;}
.ye1_c00320{bottom:371.750584pt;}
.ye2_c00320{bottom:371.921860pt;}
.ye3_c00320{bottom:372.435976pt;}
.ye4_c00320{bottom:373.112008pt;}
.ye5_c00320{bottom:373.496128pt;}
.ye6_c00320{bottom:373.753312pt;}
.ye7_c00320{bottom:373.919956pt;}
.ye8_c00320{bottom:374.299768pt;}
.ye9_c00320{bottom:374.600092pt;}
.yea_c00320{bottom:374.803084pt;}
.yeb_c00320{bottom:375.297940pt;}
.yd2_c00320{bottom:391.199221pt;}
.yd3_c00320{bottom:391.577149pt;}
.yd4_c00320{bottom:391.767373pt;}
.yd5_c00320{bottom:392.225353pt;}
.yd6_c00320{bottom:392.458621pt;}
.yd7_c00320{bottom:393.015685pt;}
.yd8_c00320{bottom:393.210385pt;}
.yd9_c00320{bottom:393.616357pt;}
.yda_c00320{bottom:393.828121pt;}
.ydb_c00320{bottom:394.251421pt;}
.ydc_c00320{bottom:394.538653pt;}
.ydd_c00320{bottom:394.711465pt;}
.yde_c00320{bottom:394.972537pt;}
.ydf_c00320{bottom:395.200321pt;}
.yc3_c00320{bottom:411.120557pt;}
.yc4_c00320{bottom:411.269033pt;}
.yc5_c00320{bottom:411.655673pt;}
.yc6_c00320{bottom:411.839657pt;}
.yc7_c00320{bottom:412.409657pt;}
.yc8_c00320{bottom:412.796729pt;}
.yc9_c00320{bottom:413.222117pt;}
.yca_c00320{bottom:413.412185pt;}
.ycb_c00320{bottom:413.534945pt;}
.ycc_c00320{bottom:413.656253pt;}
.ycd_c00320{bottom:414.007985pt;}
.yce_c00320{bottom:414.245909pt;}
.ycf_c00320{bottom:414.416597pt;}
.yd0_c00320{bottom:414.736025pt;}
.yd1_c00320{bottom:415.140401pt;}
.yb6_c00320{bottom:431.521333pt;}
.yb7_c00320{bottom:431.877349pt;}
.yb8_c00320{bottom:432.039709pt;}
.yb9_c00320{bottom:432.415549pt;}
.yba_c00320{bottom:432.741421pt;}
.ybb_c00320{bottom:432.875701pt;}
.ybc_c00320{bottom:433.074397pt;}
.ybd_c00320{bottom:433.269253pt;}
.ybe_c00320{bottom:434.046457pt;}
.ybf_c00320{bottom:434.474137pt;}
.yc0_c00320{bottom:434.869093pt;}
.yc1_c00320{bottom:435.543469pt;}
.yc2_c00320{bottom:435.667729pt;}
.yb4_c00320{bottom:446.640000pt;}
.yb5_c00320{bottom:451.200000pt;}
.ya9_c00320{bottom:451.437321pt;}
.yaa_c00320{bottom:451.760225pt;}
.yab_c00320{bottom:452.064244pt;}
.yac_c00320{bottom:452.281453pt;}
.yad_c00320{bottom:452.585388pt;}
.yae_c00320{bottom:452.808200pt;}
.yaf_c00320{bottom:453.146125pt;}
.yb0_c00320{bottom:453.602212pt;}
.yb1_c00320{bottom:453.836723pt;}
.yb2_c00320{bottom:454.550885pt;}
.yb3_c00320{bottom:454.707705pt;}
.y9d_c00320{bottom:471.119828pt;}
.y9e_c00320{bottom:471.444511pt;}
.y9f_c00320{bottom:471.615469pt;}
.ya0_c00320{bottom:472.038235pt;}
.ya1_c00320{bottom:472.455779pt;}
.ya2_c00320{bottom:472.993944pt;}
.ya3_c00320{bottom:473.281444pt;}
.ya4_c00320{bottom:473.760775pt;}
.ya5_c00320{bottom:474.352567pt;}
.ya6_c00320{bottom:474.611357pt;}
.ya7_c00320{bottom:475.088624pt;}
.ya8_c00320{bottom:475.416728pt;}
.y91_c00320{bottom:491.519567pt;}
.y92_c00320{bottom:491.824316pt;}
.y93_c00320{bottom:492.012356pt;}
.y94_c00320{bottom:492.417413pt;}
.y95_c00320{bottom:492.576501pt;}
.y96_c00320{bottom:492.995681pt;}
.y97_c00320{bottom:493.318273pt;}
.y98_c00320{bottom:493.526736pt;}
.y99_c00320{bottom:493.919987pt;}
.y9a_c00320{bottom:494.373711pt;}
.y9b_c00320{bottom:494.565699pt;}
.y9c_c00320{bottom:494.699613pt;}
.y86_c00320{bottom:511.680420pt;}
.y87_c00320{bottom:511.959384pt;}
.y88_c00320{bottom:512.225148pt;}
.y89_c00320{bottom:512.458404pt;}
.y8a_c00320{bottom:512.851488pt;}
.y8b_c00320{bottom:513.330780pt;}
.y8c_c00320{bottom:513.471912pt;}
.y8d_c00320{bottom:513.661632pt;}
.y8e_c00320{bottom:513.900180pt;}
.y8f_c00320{bottom:514.794264pt;}
.y90_c00320{bottom:515.012220pt;}
.y7c_c00320{bottom:531.361851pt;}
.y7d_c00320{bottom:531.525212pt;}
.y7e_c00320{bottom:532.274660pt;}
.y7f_c00320{bottom:532.982271pt;}
.y80_c00320{bottom:533.372235pt;}
.y81_c00320{bottom:534.362727pt;}
.y82_c00320{bottom:534.445092pt;}
.y83_c00320{bottom:535.134396pt;}
.y84_c00320{bottom:536.717841pt;}
.y85_c00320{bottom:537.065068pt;}
.y70_c00320{bottom:550.321956pt;}
.y71_c00320{bottom:550.693897pt;}
.y72_c00320{bottom:551.090489pt;}
.y73_c00320{bottom:551.488857pt;}
.y74_c00320{bottom:551.759592pt;}
.y75_c00320{bottom:551.940667pt;}
.y76_c00320{bottom:552.736971pt;}
.y77_c00320{bottom:553.089445pt;}
.y78_c00320{bottom:553.331785pt;}
.y79_c00320{bottom:553.719940pt;}
.y7a_c00320{bottom:553.893177pt;}
.y7b_c00320{bottom:554.158056pt;}
.y63_c00320{bottom:571.921020pt;}
.y64_c00320{bottom:572.136225pt;}
.y65_c00320{bottom:572.377695pt;}
.y66_c00320{bottom:572.942116pt;}
.y67_c00320{bottom:573.176399pt;}
.y68_c00320{bottom:573.438267pt;}
.y69_c00320{bottom:573.667713pt;}
.y6a_c00320{bottom:573.990581pt;}
.y6b_c00320{bottom:574.147761pt;}
.y6c_c00320{bottom:574.395951pt;}
.y6d_c00320{bottom:574.561699pt;}
.y6e_c00320{bottom:574.926729pt;}
.y6f_c00320{bottom:575.109347pt;}
.y58_c00320{bottom:591.526667pt;}
.y59_c00320{bottom:591.835595pt;}
.y5a_c00320{bottom:592.107455pt;}
.y5b_c00320{bottom:592.464215pt;}
.y5c_c00320{bottom:593.010731pt;}
.y5d_c00320{bottom:593.380091pt;}
.y5e_c00320{bottom:593.718911pt;}
.y5f_c00320{bottom:593.971967pt;}
.y60_c00320{bottom:594.278711pt;}
.y61_c00320{bottom:594.848903pt;}
.y62_c00320{bottom:595.125587pt;}
.y51_c00320{bottom:611.034683pt;}
.y52_c00320{bottom:611.610991pt;}
.y53_c00320{bottom:612.023016pt;}
.y54_c00320{bottom:612.225237pt;}
.y55_c00320{bottom:612.804024pt;}
.y56_c00320{bottom:612.953011pt;}
.y57_c00320{bottom:613.126224pt;}
.y42_c00320{bottom:631.193004pt;}
.y43_c00320{bottom:631.301059pt;}
.y44_c00320{bottom:631.520321pt;}
.y45_c00320{bottom:631.859973pt;}
.y46_c00320{bottom:632.321260pt;}
.y47_c00320{bottom:632.762323pt;}
.y48_c00320{bottom:633.371584pt;}
.y49_c00320{bottom:633.516743pt;}
.y4a_c00320{bottom:633.689897pt;}
.y4b_c00320{bottom:634.087521pt;}
.y4c_c00320{bottom:634.699995pt;}
.y4d_c00320{bottom:634.956963pt;}
.y4e_c00320{bottom:635.512959pt;}
.y4f_c00320{bottom:635.959521pt;}
.y50_c00320{bottom:636.192907pt;}
.y36_c00320{bottom:651.355476pt;}
.y37_c00320{bottom:652.002144pt;}
.y38_c00320{bottom:652.202857pt;}
.y39_c00320{bottom:652.604255pt;}
.y3a_c00320{bottom:652.839229pt;}
.y3b_c00320{bottom:653.456520pt;}
.y3c_c00320{bottom:653.694428pt;}
.y3d_c00320{bottom:654.143433pt;}
.y3e_c00320{bottom:654.381165pt;}
.y3f_c00320{bottom:655.055744pt;}
.y40_c00320{bottom:655.115188pt;}
.y41_c00320{bottom:655.891157pt;}
.y2a_c00320{bottom:671.277483pt;}
.y2b_c00320{bottom:671.626227pt;}
.y2c_c00320{bottom:671.965761pt;}
.y2d_c00320{bottom:672.207785pt;}
.y2e_c00320{bottom:672.645388pt;}
.y2f_c00320{bottom:672.872659pt;}
.y30_c00320{bottom:673.434184pt;}
.y31_c00320{bottom:673.690580pt;}
.y32_c00320{bottom:674.275833pt;}
.y33_c00320{bottom:674.561369pt;}
.y34_c00320{bottom:675.542781pt;}
.y35_c00320{bottom:676.167676pt;}
.y1f_c00320{bottom:691.440159pt;}
.y20_c00320{bottom:692.175059pt;}
.y21_c00320{bottom:692.491920pt;}
.y22_c00320{bottom:693.678663pt;}
.y23_c00320{bottom:693.919865pt;}
.y24_c00320{bottom:694.145831pt;}
.y25_c00320{bottom:694.940961pt;}
.y26_c00320{bottom:695.118692pt;}
.y27_c00320{bottom:695.412016pt;}
.y28_c00320{bottom:695.636588pt;}
.y29_c00320{bottom:696.025120pt;}
.y15_c00320{bottom:711.601333pt;}
.y16_c00320{bottom:712.161321pt;}
.y17_c00320{bottom:713.108993pt;}
.y18_c00320{bottom:713.362741pt;}
.y19_c00320{bottom:713.766001pt;}
.y1a_c00320{bottom:714.265548pt;}
.y1b_c00320{bottom:714.532320pt;}
.y1c_c00320{bottom:714.793137pt;}
.y1d_c00320{bottom:715.542941pt;}
.y1e_c00320{bottom:715.920755pt;}
.y1_c00320{bottom:730.568000pt;}
.y2_c00320{bottom:730.901536pt;}
.y3_c00320{bottom:731.402752pt;}
.y4_c00320{bottom:731.642640pt;}
.y5_c00320{bottom:732.174848pt;}
.y6_c00320{bottom:732.759488pt;}
.y7_c00320{bottom:732.989632pt;}
.y8_c00320{bottom:733.378576pt;}
.y9_c00320{bottom:733.989408pt;}
.ya_c00320{bottom:734.426272pt;}
.yb_c00320{bottom:735.152528pt;}
.yc_c00320{bottom:735.342656pt;}
.yd_c00320{bottom:735.742912pt;}
.y11_c00320{bottom:771.599899pt;}
.y12_c00320{bottom:773.433285pt;}
.y13_c00320{bottom:774.600205pt;}
.y14_c00320{bottom:777.256296pt;}
.ye_c00320{bottom:819.842667pt;}
.yf_c00320{bottom:822.151099pt;}
.y10_c00320{bottom:825.524875pt;}
.h1a_c00320{height:22.400000pt;}
.h14_c00320{height:38.266667pt;}
.h13_c00320{height:40.133333pt;}
.h1c_c00320{height:47.600000pt;}
.h1d_c00320{height:51.333333pt;}
.h1b_c00320{height:52.269280pt;}
.h12_c00320{height:56.002268pt;}
.h8_c00320{height:56.003388pt;}
.h10_c00320{height:56.933333pt;}
.h15_c00320{height:57.869560pt;}
.he_c00320{height:58.802381pt;}
.h18_c00320{height:58.802940pt;}
.h11_c00320{height:59.735752pt;}
.h16_c00320{height:59.736320pt;}
.hd_c00320{height:60.669124pt;}
.h5_c00320{height:60.670337pt;}
.hb_c00320{height:61.602495pt;}
.h9_c00320{height:61.603727pt;}
.h19_c00320{height:62.536460pt;}
.h6_c00320{height:62.537116pt;}
.ha_c00320{height:63.469237pt;}
.h17_c00320{height:63.469840pt;}
.h7_c00320{height:63.470506pt;}
.h1f_c00320{height:63.495220pt;}
.hc_c00320{height:69.069464pt;}
.h2_c00320{height:70.005040pt;}
.hf_c00320{height:71.866667pt;}
.h1e_c00320{height:88.706558pt;}
.h4_c00320{height:112.010975pt;}
.h3_c00320{height:116.678099pt;}
.h1_c00320{height:893.333333pt;}
.h0_c00320{height:893.466667pt;}
.w0_c00320{width:624.480000pt;}
.w1_c00320{width:624.666667pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:47.010667pt;}
.x38_c00320{left:67.243447pt;}
.x2_c00320{left:74.805333pt;}
.x24_c00320{left:75.695593pt;}
.x5d_c00320{left:77.494043pt;}
.x7c_c00320{left:78.585333pt;}
.x82_c00320{left:79.571672pt;}
.xa5_c00320{left:80.516280pt;}
.xbc_c00320{left:81.699533pt;}
.xb8_c00320{left:82.666040pt;}
.x47_c00320{left:84.820000pt;}
.xc1_c00320{left:92.738667pt;}
.x39_c00320{left:94.453805pt;}
.x83_c00320{left:96.069005pt;}
.xc9_c00320{left:100.320000pt;}
.x25_c00320{left:104.732604pt;}
.xc2_c00320{left:107.616000pt;}
.x62_c00320{left:108.580639pt;}
.x3_c00320{left:116.573333pt;}
.x7d_c00320{left:118.142667pt;}
.x48_c00320{left:119.145333pt;}
.x3a_c00320{left:122.785497pt;}
.xe_c00320{left:125.032000pt;}
.x5e_c00320{left:127.430009pt;}
.xaf_c00320{left:129.294960pt;}
.xb4_c00320{left:131.662120pt;}
.x26_c00320{left:133.053629pt;}
.x30_c00320{left:134.762743pt;}
.x4_c00320{left:136.564000pt;}
.x63_c00320{left:138.109972pt;}
.x69_c00320{left:139.537321pt;}
.x8e_c00320{left:140.508105pt;}
.xb9_c00320{left:143.870040pt;}
.x57_c00320{left:144.872760pt;}
.x49_c00320{left:149.352000pt;}
.x96_c00320{left:151.334244pt;}
.x27_c00320{left:153.237409pt;}
.xca_c00320{left:154.320000pt;}
.x74_c00320{left:156.330185pt;}
.x42_c00320{left:158.557339pt;}
.x84_c00320{left:159.471672pt;}
.x3b_c00320{left:161.205072pt;}
.x1c_c00320{left:162.603444pt;}
.x64_c00320{left:164.027305pt;}
.x9f_c00320{left:166.402667pt;}
.x11_c00320{left:170.470837pt;}
.x43_c00320{left:175.365148pt;}
.x7e_c00320{left:177.942667pt;}
.x5_c00320{left:180.914667pt;}
.x75_c00320{left:183.427759pt;}
.x58_c00320{left:184.691067pt;}
.xb0_c00320{left:186.865053pt;}
.x28_c00320{left:189.746347pt;}
.x8f_c00320{left:191.394772pt;}
.x4e_c00320{left:195.453541pt;}
.xc3_c00320{left:196.648000pt;}
.x3c_c00320{left:197.907328pt;}
.x5f_c00320{left:200.638061pt;}
.xbd_c00320{left:204.311427pt;}
.xab_c00320{left:205.333387pt;}
.xb5_c00320{left:206.286120pt;}
.x65_c00320{left:207.703305pt;}
.x29_c00320{left:208.710141pt;}
.x31_c00320{left:210.861409pt;}
.x15_c00320{left:212.056000pt;}
.x7f_c00320{left:214.150667pt;}
.xa0_c00320{left:215.392000pt;}
.x90_c00320{left:217.313439pt;}
.x76_c00320{left:221.346761pt;}
.x44_c00320{left:223.617953pt;}
.x4f_c00320{left:224.744472pt;}
.x6_c00320{left:229.634667pt;}
.xc7_c00320{left:230.640000pt;}
.x16_c00320{left:235.124000pt;}
.x45_c00320{left:236.071155pt;}
.xac_c00320{left:240.138373pt;}
.xc4_c00320{left:241.944000pt;}
.xb1_c00320{left:247.089787pt;}
.x7_c00320{left:248.813333pt;}
.x46_c00320{left:250.484327pt;}
.xa6_c00320{left:251.658947pt;}
.xa1_c00320{left:253.566667pt;}
.x2a_c00320{left:255.514961pt;}
.x50_c00320{left:257.396760pt;}
.xc8_c00320{left:258.480000pt;}
.xc5_c00320{left:259.772000pt;}
.x1d_c00320{left:261.518359pt;}
.x6a_c00320{left:262.426425pt;}
.x85_c00320{left:265.813005pt;}
.x12_c00320{left:266.944080pt;}
.xb2_c00320{left:268.490907pt;}
.x17_c00320{left:271.784000pt;}
.x80_c00320{left:272.798667pt;}
.x3d_c00320{left:275.201144pt;}
.x2b_c00320{left:276.884060pt;}
.x91_c00320{left:279.209439pt;}
.x8_c00320{left:281.225333pt;}
.x97_c00320{left:283.572911pt;}
.x51_c00320{left:286.150357pt;}
.x32_c00320{left:288.606743pt;}
.xf_c00320{left:289.920000pt;}
.x77_c00320{left:291.503397pt;}
.x66_c00320{left:297.719305pt;}
.x1e_c00320{left:300.472600pt;}
.x6b_c00320{left:302.714785pt;}
.xa7_c00320{left:303.730947pt;}
.x3e_c00320{left:308.318111pt;}
.x59_c00320{left:309.443272pt;}
.x86_c00320{left:313.078339pt;}
.x18_c00320{left:317.197333pt;}
.x6f_c00320{left:318.577407pt;}
.xa8_c00320{left:320.972280pt;}
.xcb_c00320{left:322.720000pt;}
.x67_c00320{left:324.224639pt;}
.x2c_c00320{left:325.603517pt;}
.x13_c00320{left:328.386453pt;}
.x33_c00320{left:329.425409pt;}
.x9_c00320{left:332.128000pt;}
.x87_c00320{left:334.197005pt;}
.xbe_c00320{left:335.634080pt;}
.x19_c00320{left:341.449333pt;}
.xb3_c00320{left:343.818147pt;}
.x5a_c00320{left:344.754960pt;}
.x52_c00320{left:346.156231pt;}
.x88_c00320{left:347.837005pt;}
.x2d_c00320{left:349.379253pt;}
.x34_c00320{left:351.037409pt;}
.x98_c00320{left:354.828911pt;}
.x4a_c00320{left:356.520000pt;}
.x3f_c00320{left:359.390887pt;}
.x89_c00320{left:361.315672pt;}
.x1a_c00320{left:365.160000pt;}
.x1f_c00320{left:366.695867pt;}
.xa_c00320{left:368.533333pt;}
.x92_c00320{left:369.480105pt;}
.x70_c00320{left:372.331101pt;}
.x99_c00320{left:373.344911pt;}
.x53_c00320{left:377.140507pt;}
.xa9_c00320{left:379.316280pt;}
.x20_c00320{left:381.519705pt;}
.xa2_c00320{left:388.214667pt;}
.x4b_c00320{left:390.602667pt;}
.x71_c00320{left:395.900015pt;}
.xbf_c00320{left:396.838693pt;}
.x54_c00320{left:397.779353pt;}
.x8a_c00320{left:400.397005pt;}
.xb6_c00320{left:401.454120pt;}
.x21_c00320{left:406.003441pt;}
.x5b_c00320{left:407.846396pt;}
.xba_c00320{left:409.287373pt;}
.x35_c00320{left:412.362743pt;}
.x9a_c00320{left:415.546244pt;}
.x93_c00320{left:416.513439pt;}
.x36_c00320{left:417.766743pt;}
.xa3_c00320{left:419.189333pt;}
.xad_c00320{left:422.059227pt;}
.x60_c00320{left:423.619347pt;}
.x22_c00320{left:424.721903pt;}
.x40_c00320{left:427.114139pt;}
.xb_c00320{left:429.054667pt;}
.x2e_c00320{left:431.203692pt;}
.x1b_c00320{left:433.324000pt;}
.x6c_c00320{left:434.505295pt;}
.x72_c00320{left:439.299235pt;}
.x55_c00320{left:443.375761pt;}
.xc_c00320{left:444.898667pt;}
.x8b_c00320{left:445.798339pt;}
.x61_c00320{left:446.791432pt;}
.x68_c00320{left:447.784639pt;}
.x9b_c00320{left:448.915577pt;}
.x81_c00320{left:450.558667pt;}
.x5c_c00320{left:451.636667pt;}
.x4c_c00320{left:453.957333pt;}
.xae_c00320{left:454.938893pt;}
.x23_c00320{left:457.133551pt;}
.x6d_c00320{left:458.504177pt;}
.xc6_c00320{left:461.948000pt;}
.x41_c00320{left:464.316395pt;}
.x56_c00320{left:466.185299pt;}
.x78_c00320{left:467.144981pt;}
.x14_c00320{left:468.192672pt;}
.x73_c00320{left:469.088028pt;}
.x9c_c00320{left:471.470244pt;}
.x6e_c00320{left:475.309667pt;}
.xbb_c00320{left:476.774040pt;}
.xd_c00320{left:478.253333pt;}
.x8c_c00320{left:481.290339pt;}
.x2f_c00320{left:483.284453pt;}
.x4d_c00320{left:484.700000pt;}
.xb7_c00320{left:485.654120pt;}
.x79_c00320{left:486.791828pt;}
.x37_c00320{left:488.309409pt;}
.xaa_c00320{left:491.376280pt;}
.xa4_c00320{left:492.609333pt;}
.x94_c00320{left:496.637439pt;}
.xc0_c00320{left:499.200000pt;}
.x95_c00320{left:521.946772pt;}
.x7a_c00320{left:524.880000pt;}
.x8d_c00320{left:526.221005pt;}
.x9d_c00320{left:529.200000pt;}
.x10_c00320{left:530.904000pt;}
.x7b_c00320{left:539.760000pt;}
.x9e_c00320{left:541.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m129_c00321{transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);}
.mc6_c00321{transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);}
.m173_c00321{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);}
.mc9_c00321{transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);}
.m17d_c00321{transform:matrix(0.091115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091115,0.000000,0.000000,0.250000,0,0);}
.m186_c00321{transform:matrix(0.094440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094440,0.000000,0.000000,0.250000,0,0);}
.m182_c00321{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);}
.m4_c00321{transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106715,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{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);}
.m8_c00321{transform:matrix(0.131611,-0.001053,0.002000,0.249992,0,0);-ms-transform:matrix(0.131611,-0.001053,0.002000,0.249992,0,0);-webkit-transform:matrix(0.131611,-0.001053,0.002000,0.249992,0,0);}
.m127_c00321{transform:matrix(0.131620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131620,0.000000,0.000000,0.250000,0,0);}
.m17b_c00321{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);}
.m89_c00321{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{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);}
.mf8_c00321{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);}
.m22_c00321{transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);}
.m115_c00321{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m11d_c00321{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{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);}
.m83_c00321{transform:matrix(0.145085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145085,0.000000,0.000000,0.250000,0,0);}
.m121_c00321{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);}
.m103_c00321{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);}
.m41_c00321{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);}
.m164_c00321{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);}
.m99_c00321{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);}
.m10_c00321{transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00321{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m128_c00321{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);}
.mae_c00321{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);}
.m134_c00321{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);}
.m34_c00321{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);}
.m71_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);}
.mf2_c00321{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);}
.m93_c00321{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);}
.me5_c00321{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);}
.m11a_c00321{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);}
.md2_c00321{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);}
.mea_c00321{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.m122_c00321{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);}
.m5d_c00321{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);}
.mbf_c00321{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);}
.m21_c00321{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);}
.m9a_c00321{transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);}
.m107_c00321{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);}
.m6a_c00321{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);}
.m126_c00321{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);}
.m1b_c00321{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{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);}
.m94_c00321{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);}
.m3d_c00321{transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158480,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{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);}
.m143_c00321{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);}
.m2d_c00321{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);}
.m32_c00321{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.md5_c00321{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);}
.m100_c00321{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);}
.m19_c00321{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);}
.ma1_c00321{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);}
.m70_c00321{transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);}
.mf3_c00321{transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);}
.m72_c00321{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);}
.m10f_c00321{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.mee_c00321{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);}
.m3a_c00321{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);}
.m8d_c00321{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);}
.m8f_c00321{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);}
.med_c00321{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164385,0.000000,0.000000,0.250000,0,0);}
.m9d_c00321{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);}
.m78_c00321{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m101_c00321{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);}
.m130_c00321{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);}
.m118_c00321{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);}
.me0_c00321{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);}
.me8_c00321{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);}
.m5e_c00321{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);}
.m16_c00321{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);}
.m12_c00321{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);}
.m5b_c00321{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_c00321{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m135_c00321{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);}
.m1e_c00321{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);}
.mc2_c00321{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);}
.m102_c00321{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);}
.m104_c00321{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);}
.m49_c00321{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);}
.md3_c00321{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);}
.m15e_c00321{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);}
.m54_c00321{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);}
.m1d_c00321{transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);}
.m97_c00321{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);}
.m2a_c00321{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);}
.m27_c00321{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);}
.mc0_c00321{transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);}
.mb2_c00321{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);}
.m87_c00321{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);}
.me4_c00321{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);}
.mc5_c00321{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.m15d_c00321{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);}
.ma4_c00321{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);}
.mcc_c00321{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);}
.m95_c00321{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);}
.mcf_c00321{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);}
.m175_c00321{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);}
.m68_c00321{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_c00321{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);}
.mf4_c00321{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);}
.me6_c00321{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);}
.m9f_c00321{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);}
.me_c00321{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);}
.mf6_c00321{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);}
.ma7_c00321{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);}
.m82_c00321{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);}
.m53_c00321{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);}
.m6b_c00321{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);}
.m146_c00321{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);}
.m5a_c00321{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);}
.m125_c00321{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);}
.m4b_c00321{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);}
.m8e_c00321{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);}
.m18_c00321{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);}
.m133_c00321{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);}
.mda_c00321{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);}
.m56_c00321{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);}
.mc8_c00321{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);}
.mca_c00321{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);}
.m33_c00321{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);}
.m13f_c00321{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);}
.m14e_c00321{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);}
.m153_c00321{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);}
.m35_c00321{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);}
.m13_c00321{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);}
.m90_c00321{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);}
.mbc_c00321{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);}
.m14_c00321{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);}
.m1a_c00321{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);}
.m55_c00321{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);}
.md8_c00321{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);}
.mf0_c00321{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);}
.m137_c00321{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);}
.md7_c00321{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);}
.m80_c00321{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);}
.m3f_c00321{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{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);}
.m124_c00321{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);}
.m12e_c00321{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);}
.m75_c00321{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);}
.mf9_c00321{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);}
.m7a_c00321{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);}
.me3_c00321{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);}
.m23_c00321{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);}
.m60_c00321{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);}
.md4_c00321{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);}
.m98_c00321{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);}
.m10b_c00321{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);}
.mff_c00321{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);}
.m20_c00321{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);}
.m114_c00321{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);}
.mb1_c00321{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);}
.m14f_c00321{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);}
.m3e_c00321{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);}
.mbb_c00321{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);}
.m7e_c00321{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);}
.m4d_c00321{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);}
.m10a_c00321{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);}
.ma2_c00321{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);}
.ma9_c00321{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);}
.m11c_c00321{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);}
.maf_c00321{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);}
.m46_c00321{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);}
.m16c_c00321{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);}
.maa_c00321{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_c00321{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);}
.m3c_c00321{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);}
.mdb_c00321{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);}
.mce_c00321{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);}
.mba_c00321{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);}
.mfc_c00321{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);}
.mb_c00321{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);}
.mec_c00321{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);}
.m12c_c00321{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);}
.mf7_c00321{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);}
.mbd_c00321{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);}
.meb_c00321{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);}
.m52_c00321{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);}
.md6_c00321{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);}
.m2f_c00321{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);}
.m7d_c00321{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);}
.m8c_c00321{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);}
.m37_c00321{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);}
.m139_c00321{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);}
.m4e_c00321{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);}
.mf1_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);}
.md9_c00321{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);}
.md0_c00321{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);}
.m10d_c00321{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);}
.m165_c00321{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);}
.ma6_c00321{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);}
.m85_c00321{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);}
.m79_c00321{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);}
.m110_c00321{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);}
.m4a_c00321{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);}
.m3b_c00321{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);}
.m136_c00321{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);}
.m116_c00321{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);}
.m120_c00321{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);}
.m148_c00321{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);}
.md_c00321{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);}
.ma3_c00321{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);}
.m47_c00321{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);}
.m67_c00321{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);}
.m105_c00321{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);}
.mde_c00321{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);}
.m123_c00321{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);}
.m140_c00321{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);}
.m96_c00321{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);}
.m43_c00321{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);}
.m77_c00321{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);}
.m113_c00321{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);}
.m131_c00321{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);}
.m111_c00321{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_c00321{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);}
.m7b_c00321{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);}
.m74_c00321{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);}
.m4f_c00321{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);}
.m10e_c00321{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);}
.m167_c00321{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);}
.m6d_c00321{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);}
.m76_c00321{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);}
.m65_c00321{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);}
.m7f_c00321{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);}
.m5f_c00321{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);}
.m48_c00321{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);}
.mac_c00321{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);}
.m50_c00321{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);}
.m112_c00321{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);}
.m171_c00321{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);}
.m11e_c00321{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);}
.me7_c00321{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);}
.m12d_c00321{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);}
.m39_c00321{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);}
.m88_c00321{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);}
.mf5_c00321{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);}
.m15a_c00321{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);}
.m92_c00321{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);}
.m86_c00321{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);}
.m109_c00321{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);}
.m132_c00321{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);}
.mfa_c00321{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);}
.mb6_c00321{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);}
.mbe_c00321{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);}
.m159_c00321{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);}
.mdf_c00321{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);}
.m57_c00321{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);}
.mc3_c00321{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);}
.mad_c00321{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);}
.m5c_c00321{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);}
.m15_c00321{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.me2_c00321{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);}
.m26_c00321{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);}
.m25_c00321{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);}
.m2c_c00321{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);}
.m154_c00321{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);}
.m14d_c00321{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);}
.m16f_c00321{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);}
.m13a_c00321{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);}
.mb4_c00321{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);}
.m59_c00321{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);}
.m29_c00321{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);}
.mc_c00321{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);}
.m108_c00321{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);}
.mb9_c00321{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);}
.m119_c00321{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);}
.m17_c00321{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);}
.m9b_c00321{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);}
.m117_c00321{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);}
.mef_c00321{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);}
.m38_c00321{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);}
.m151_c00321{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);}
.m10c_c00321{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);}
.m66_c00321{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);}
.m58_c00321{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);}
.m156_c00321{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);}
.m16e_c00321{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);}
.m44_c00321{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);}
.m14a_c00321{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);}
.m6e_c00321{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);}
.m157_c00321{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);}
.m36_c00321{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.mb7_c00321{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);}
.mab_c00321{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);}
.mdd_c00321{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);}
.mb3_c00321{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);}
.ma8_c00321{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);}
.m162_c00321{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);}
.m9c_c00321{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);}
.m138_c00321{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);}
.mdc_c00321{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);}
.m91_c00321{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);}
.m149_c00321{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);}
.m69_c00321{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);}
.mfe_c00321{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);}
.m155_c00321{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);}
.m40_c00321{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);}
.m11f_c00321{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);}
.ma0_c00321{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);}
.m15f_c00321{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);}
.m150_c00321{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);}
.m147_c00321{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);}
.m7c_c00321{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);}
.m73_c00321{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);}
.m12a_c00321{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);}
.m63_c00321{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);}
.me1_c00321{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);}
.m14c_c00321{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m13e_c00321{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);}
.m30_c00321{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);}
.mb0_c00321{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);}
.m84_c00321{transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{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);}
.mfb_c00321{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);}
.m12f_c00321{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);}
.m17f_c00321{transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);}
.m170_c00321{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);}
.md1_c00321{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);}
.mc7_c00321{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);}
.m9e_c00321{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);}
.m142_c00321{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);}
.m6f_c00321{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);}
.m160_c00321{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);}
.m106_c00321{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);}
.m12b_c00321{transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{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);}
.m16b_c00321{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);}
.m8b_c00321{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);}
.m166_c00321{transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{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);}
.m64_c00321{transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);}
.mfd_c00321{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);}
.m161_c00321{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);}
.m4c_c00321{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);}
.m183_c00321{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);}
.m16d_c00321{transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);}
.mb5_c00321{transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);}
.m189_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);}
.m152_c00321{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);}
.mc1_c00321{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.236827,-0.001895,0.002000,0.249992,0,0);-ms-transform:matrix(0.236827,-0.001895,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236827,-0.001895,0.002000,0.249992,0,0);}
.m168_c00321{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);}
.m11b_c00321{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);}
.m13b_c00321{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);}
.m62_c00321{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);}
.m8a_c00321{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);}
.m6c_c00321{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.m141_c00321{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);}
.m145_c00321{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{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);}
.m172_c00321{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);}
.m13d_c00321{transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);}
.mb8_c00321{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);}
.m7_c00321{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m177_c00321{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.m15c_c00321{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m163_c00321{transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);}
.m18a_c00321{transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269870,0.000000,0.000000,0.250000,0,0);}
.m169_c00321{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m158_c00321{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);}
.m3_c00321{transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);}
.m144_c00321{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);}
.m17e_c00321{transform:matrix(0.311185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311185,0.000000,0.000000,0.250000,0,0);}
.m18c_c00321{transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);}
.m14b_c00321{transform:matrix(0.331320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331320,0.000000,0.000000,0.250000,0,0);}
.m17a_c00321{transform:matrix(0.336525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336525,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.354889,-0.002839,0.002000,0.249992,0,0);-ms-transform:matrix(0.354889,-0.002839,0.002000,0.249992,0,0);-webkit-transform:matrix(0.354889,-0.002839,0.002000,0.249992,0,0);}
.m15b_c00321{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);}
.m18b_c00321{transform:matrix(0.366325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366325,0.000000,0.000000,0.250000,0,0);}
.m16a_c00321{transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);}
.m178_c00321{transform:matrix(0.371035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371035,0.000000,0.000000,0.250000,0,0);}
.m13c_c00321{transform:matrix(0.381150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381150,0.000000,0.000000,0.250000,0,0);}
.m188_c00321{transform:matrix(0.393795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393795,0.000000,0.000000,0.250000,0,0);}
.m176_c00321{transform:matrix(0.395055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395055,0.000000,0.000000,0.250000,0,0);}
.m18d_c00321{transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403620,0.000000,0.000000,0.250000,0,0);}
.m174_c00321{transform:matrix(0.449450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449450,0.000000,0.000000,0.250000,0,0);}
.m181_c00321{transform:matrix(0.502985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502985,0.000000,0.000000,0.250000,0,0);}
.m180_c00321{transform:matrix(0.529870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529870,0.000000,0.000000,0.250000,0,0);}
.m179_c00321{transform:matrix(0.678160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678160,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.692635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692635,0.000000,0.000000,0.250000,0,0);}
.m187_c00321{transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.801075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801075,0.000000,0.000000,0.250000,0,0);}
.m17c_c00321{transform:matrix(0.802415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802415,0.000000,0.000000,0.250000,0,0);}
.m185_c00321{transform:matrix(0.841300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841300,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.856540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856540,0.000000,0.000000,0.250000,0,0);}
.m184_c00321{transform:matrix(0.967910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967910,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;}
.fsf_c00321{font-size:22.050000px;}
.fs1_c00321{font-size:26.250000px;}
.fs15_c00321{font-size:39.900000px;}
.fsd_c00321{font-size:45.150000px;}
.fs11_c00321{font-size:46.200000px;}
.fs14_c00321{font-size:48.300000px;}
.fs10_c00321{font-size:50.400000px;}
.fs13_c00321{font-size:59.850000px;}
.fs12_c00321{font-size:63.000000px;}
.fs7_c00321{font-size:65.100000px;}
.fsa_c00321{font-size:66.150000px;}
.fs9_c00321{font-size:67.200000px;}
.fsb_c00321{font-size:68.250000px;}
.fs3_c00321{font-size:69.300000px;}
.fs5_c00321{font-size:70.350000px;}
.fs6_c00321{font-size:71.400000px;}
.fs8_c00321{font-size:72.450000px;}
.fs4_c00321{font-size:75.600000px;}
.fsc_c00321{font-size:79.800000px;}
.fs0_c00321{font-size:90.300000px;}
.fse_c00321{font-size:100.800000px;}
.fs2_c00321{font-size:141.754536px;}
.y0_c00321{bottom:0.000000px;}
.y3a_c00321{bottom:102.060000px;}
.y3d_c00321{bottom:103.006500px;}
.y3b_c00321{bottom:103.140000px;}
.y3c_c00321{bottom:104.107500px;}
.y39_c00321{bottom:115.830000px;}
.y38_c00321{bottom:121.146000px;}
.y37_c00321{bottom:122.427000px;}
.y36_c00321{bottom:122.620500px;}
.y35_c00321{bottom:123.396000px;}
.y34_c00321{bottom:125.271000px;}
.y33_c00321{bottom:126.858000px;}
.y32_c00321{bottom:159.669000px;}
.y31_c00321{bottom:177.019500px;}
.y30_c00321{bottom:195.006000px;}
.y2f_c00321{bottom:244.350000px;}
.y2c_c00321{bottom:244.792500px;}
.y2b_c00321{bottom:266.991000px;}
.y2a_c00321{bottom:290.421000px;}
.y2e_c00321{bottom:297.270000px;}
.y29_c00321{bottom:312.184500px;}
.y28_c00321{bottom:335.815500px;}
.y27_c00321{bottom:358.050000px;}
.y2d_c00321{bottom:358.830000px;}
.y26_c00321{bottom:381.036000px;}
.y25_c00321{bottom:403.143000px;}
.y24_c00321{bottom:426.093000px;}
.y23_c00321{bottom:449.280000px;}
.y22_c00321{bottom:470.962500px;}
.y21_c00321{bottom:494.809500px;}
.y20_c00321{bottom:516.778500px;}
.y1f_c00321{bottom:539.155500px;}
.y1e_c00321{bottom:562.105500px;}
.y1d_c00321{bottom:585.022500px;}
.y1c_c00321{bottom:607.978500px;}
.y1b_c00321{bottom:630.354000px;}
.y1a_c00321{bottom:653.031000px;}
.y19_c00321{bottom:675.921000px;}
.y18_c00321{bottom:698.566500px;}
.y17_c00321{bottom:721.003500px;}
.y16_c00321{bottom:743.953500px;}
.y9_c00321{bottom:765.451500px;}
.ya_c00321{bottom:765.918000px;}
.yb_c00321{bottom:766.089000px;}
.yc_c00321{bottom:766.219500px;}
.yd_c00321{bottom:766.510500px;}
.ye_c00321{bottom:766.720500px;}
.yf_c00321{bottom:766.918500px;}
.y10_c00321{bottom:767.209500px;}
.y11_c00321{bottom:767.395500px;}
.y12_c00321{bottom:767.703000px;}
.y13_c00321{bottom:768.033000px;}
.y14_c00321{bottom:768.328500px;}
.y15_c00321{bottom:768.459000px;}
.y8_c00321{bottom:789.328500px;}
.y7_c00321{bottom:811.498500px;}
.y6_c00321{bottom:833.962500px;}
.y3_c00321{bottom:876.691500px;}
.y4_c00321{bottom:877.387356px;}
.y5_c00321{bottom:877.908612px;}
.y2_c00321{bottom:915.028500px;}
.y1_c00321{bottom:934.506000px;}
.h11_c00321{height:22.050000px;}
.h3_c00321{height:26.250000px;}
.h17_c00321{height:39.900000px;}
.hf_c00321{height:45.150000px;}
.h13_c00321{height:46.200000px;}
.h16_c00321{height:48.300000px;}
.h12_c00321{height:50.400000px;}
.h15_c00321{height:59.850000px;}
.h14_c00321{height:63.000000px;}
.h9_c00321{height:65.100000px;}
.hc_c00321{height:66.150000px;}
.hb_c00321{height:67.200000px;}
.hd_c00321{height:68.250000px;}
.h5_c00321{height:69.300000px;}
.h7_c00321{height:70.350000px;}
.h8_c00321{height:71.400000px;}
.ha_c00321{height:72.450000px;}
.h6_c00321{height:75.600000px;}
.he_c00321{height:79.800000px;}
.h2_c00321{height:90.300000px;}
.h10_c00321{height:100.800000px;}
.h4_c00321{height:141.754536px;}
.h0_c00321{height:1008.450000px;}
.h1_c00321{height:1008.750000px;}
.w0_c00321{width:696.000000px;}
.x0_c00321{left:0.000000px;}
.xce_c00321{left:91.482000px;}
.xcb_c00321{left:93.150000px;}
.x1_c00321{left:101.250000px;}
.xd1_c00321{left:102.331500px;}
.xd2_c00321{left:132.301500px;}
.xd3_c00321{left:138.781500px;}
.xac_c00321{left:145.530000px;}
.xc_c00321{left:146.880000px;}
.x9_c00321{left:148.327500px;}
.x8b_c00321{left:150.120000px;}
.xd4_c00321{left:158.491500px;}
.xb3_c00321{left:159.840000px;}
.xc1_c00321{left:160.920000px;}
.xc4_c00321{left:164.700000px;}
.x18_c00321{left:165.780000px;}
.xb7_c00321{left:170.100000px;}
.xcc_c00321{left:171.990000px;}
.x7d_c00321{left:176.308500px;}
.xd_c00321{left:181.980000px;}
.x8c_c00321{left:185.220000px;}
.x6a_c00321{left:186.568500px;}
.x63_c00321{left:188.188500px;}
.x25_c00321{left:190.890000px;}
.x19_c00321{left:192.240000px;}
.x9c_c00321{left:193.320000px;}
.x78_c00321{left:196.828500px;}
.xcd_c00321{left:198.180000px;}
.x3f_c00321{left:199.798500px;}
.xd5_c00321{left:201.421500px;}
.x6e_c00321{left:204.928500px;}
.x64_c00321{left:206.818500px;}
.x91_c00321{left:209.520000px;}
.x49_c00321{left:212.758500px;}
.xe_c00321{left:214.380000px;}
.x2c_c00321{left:215.584500px;}
.xc9_c00321{left:218.430000px;}
.x4f_c00321{left:219.778500px;}
.x2_c00321{left:221.670000px;}
.x35_c00321{left:223.288500px;}
.xad_c00321{left:224.910000px;}
.x9d_c00321{left:228.420000px;}
.x57_c00321{left:230.308500px;}
.x8d_c00321{left:233.280000px;}
.xa_c00321{left:235.309500px;}
.x1a_c00321{left:238.140000px;}
.x2d_c00321{left:240.120000px;}
.x7_c00321{left:242.730000px;}
.xa9_c00321{left:244.350000px;}
.xcf_c00321{left:247.717500px;}
.xb4_c00321{left:249.750000px;}
.xf_c00321{left:250.830000px;}
.x36_c00321{left:254.068500px;}
.x8_c00321{left:256.770000px;}
.x2e_c00321{left:258.753000px;}
.xc5_c00321{left:260.820000px;}
.x50_c00321{left:262.168500px;}
.x40_c00321{left:263.518500px;}
.x6f_c00321{left:265.408500px;}
.x1b_c00321{left:267.300000px;}
.x65_c00321{left:270.538500px;}
.xb8_c00321{left:272.700000px;}
.x10_c00321{left:274.860000px;}
.x41_c00321{left:278.638500px;}
.x70_c00321{left:280.528500px;}
.x79_c00321{left:282.688500px;}
.xc2_c00321{left:283.770000px;}
.x5f_c00321{left:286.198500px;}
.x58_c00321{left:288.628500px;}
.x66_c00321{left:293.488500px;}
.x86_c00321{left:295.650000px;}
.x1c_c00321{left:297.270000px;}
.x81_c00321{left:298.348500px;}
.xb_c00321{left:300.466500px;}
.x87_c00321{left:303.750000px;}
.x92_c00321{left:310.230000px;}
.x59_c00321{left:312.118500px;}
.x26_c00321{left:313.740000px;}
.xca_c00321{left:314.820000px;}
.x51_c00321{left:317.788500px;}
.x11_c00321{left:320.490000px;}
.x4a_c00321{left:322.108500px;}
.x42_c00321{left:323.458500px;}
.x7e_c00321{left:326.428500px;}
.xc6_c00321{left:328.590000px;}
.x2f_c00321{left:330.303000px;}
.x27_c00321{left:333.720000px;}
.x1d_c00321{left:336.150000px;}
.x71_c00321{left:337.498500px;}
.x12_c00321{left:338.850000px;}
.x93_c00321{left:342.090000px;}
.x43_c00321{left:343.168500px;}
.xd9_c00321{left:344.250000px;}
.xaa_c00321{left:346.680000px;}
.xa2_c00321{left:348.300000px;}
.x82_c00321{left:350.458500px;}
.x4b_c00321{left:353.428500px;}
.x72_c00321{left:354.778500px;}
.x13_c00321{left:356.940000px;}
.x30_c00321{left:358.653000px;}
.x7a_c00321{left:361.258500px;}
.x9e_c00321{left:365.850000px;}
.x6b_c00321{left:368.818500px;}
.x83_c00321{left:369.898500px;}
.x37_c00321{left:371.518500px;}
.x7f_c00321{left:373.678500px;}
.xd6_c00321{left:377.731500px;}
.xb9_c00321{left:379.350000px;}
.x98_c00321{left:381.240000px;}
.x88_c00321{left:383.670000px;}
.xa3_c00321{left:385.290000px;}
.x60_c00321{left:391.228500px;}
.x52_c00321{left:393.118500px;}
.x38_c00321{left:395.008500px;}
.xb2_c00321{left:397.980000px;}
.x3_c00321{left:399.600000px;}
.x1e_c00321{left:402.570000px;}
.x14_c00321{left:404.460000px;}
.xab_c00321{left:405.810000px;}
.xb5_c00321{left:407.430000px;}
.xa4_c00321{left:408.780000px;}
.xc7_c00321{left:411.480000px;}
.x9f_c00321{left:416.880000px;}
.x94_c00321{left:418.500000px;}
.x39_c00321{left:420.388500px;}
.xc3_c00321{left:423.090000px;}
.x61_c00321{left:424.168500px;}
.x31_c00321{left:426.691500px;}
.x73_c00321{left:430.378500px;}
.x28_c00321{left:431.730000px;}
.x4c_c00321{left:432.808500px;}
.xae_c00321{left:433.890000px;}
.xd0_c00321{left:435.175500px;}
.x84_c00321{left:436.318500px;}
.xba_c00321{left:438.210000px;}
.xa5_c00321{left:441.450000px;}
.x8e_c00321{left:445.770000px;}
.x15_c00321{left:447.390000px;}
.x67_c00321{left:449.008500px;}
.xbb_c00321{left:450.360000px;}
.xa0_c00321{left:451.980000px;}
.x44_c00321{left:454.948500px;}
.x74_c00321{left:457.378500px;}
.x3a_c00321{left:458.998500px;}
.x5a_c00321{left:462.238500px;}
.xaf_c00321{left:464.130000px;}
.x53_c00321{left:469.258500px;}
.x32_c00321{left:470.697000px;}
.x5b_c00321{left:474.388500px;}
.x80_c00321{left:476.008500px;}
.x16_c00321{left:477.630000px;}
.x68_c00321{left:478.708500px;}
.xb6_c00321{left:482.490000px;}
.x99_c00321{left:483.840000px;}
.x29_c00321{left:485.190000px;}
.x45_c00321{left:487.348500px;}
.x3b_c00321{left:488.698500px;}
.x75_c00321{left:490.858500px;}
.x8f_c00321{left:492.480000px;}
.xa6_c00321{left:494.640000px;}
.x6c_c00321{left:497.878500px;}
.x9a_c00321{left:499.230000px;}
.x5c_c00321{left:500.848500px;}
.x89_c00321{left:502.740000px;}
.x46_c00321{left:504.088500px;}
.xa7_c00321{left:506.250000px;}
.x1f_c00321{left:508.140000px;}
.x4_c00321{left:510.300000px;}
.x95_c00321{left:514.080000px;}
.x62_c00321{left:515.968500px;}
.x33_c00321{left:517.912500px;}
.x76_c00321{left:519.748500px;}
.xb0_c00321{left:521.640000px;}
.x54_c00321{left:524.338500px;}
.x7b_c00321{left:526.768500px;}
.x20_c00321{left:528.660000px;}
.x2a_c00321{left:530.280000px;}
.xa8_c00321{left:531.360000px;}
.x3c_c00321{left:534.868500px;}
.x96_c00321{left:537.570000px;}
.x4d_c00321{left:538.918500px;}
.xb1_c00321{left:542.160000px;}
.x17_c00321{left:546.210000px;}
.x5d_c00321{left:547.288500px;}
.x55_c00321{left:552.148500px;}
.x7c_c00321{left:555.388500px;}
.x21_c00321{left:559.710000px;}
.x6d_c00321{left:561.598500px;}
.x2b_c00321{left:563.490000px;}
.x77_c00321{left:566.188500px;}
.x47_c00321{left:569.428500px;}
.x3d_c00321{left:571.318500px;}
.x5e_c00321{left:573.748500px;}
.x34_c00321{left:578.695500px;}
.x9b_c00321{left:581.850000px;}
.x22_c00321{left:582.930000px;}
.x69_c00321{left:584.278500px;}
.x90_c00321{left:586.170000px;}
.xc8_c00321{left:588.060000px;}
.x5_c00321{left:592.650000px;}
.xa1_c00321{left:594.270000px;}
.x3e_c00321{left:596.428500px;}
.x97_c00321{left:598.590000px;}
.x23_c00321{left:600.210000px;}
.x48_c00321{left:601.288500px;}
.x56_c00321{left:604.798500px;}
.x4e_c00321{left:608.308500px;}
.x8a_c00321{left:613.170000px;}
.x85_c00321{left:622.078500px;}
.x24_c00321{left:630.180000px;}
.x6_c00321{left:646.920000px;}
.xd7_c00321{left:656.370000px;}
.xd8_c00321{left:660.420000px;}
.xbd_c00321{left:680.670000px;}
.xbc_c00321{left:685.530000px;}
.xc0_c00321{left:692.280000px;}
.xbf_c00321{left:693.360000px;}
.xbe_c00321{left:694.980000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fsf_c00321{font-size:19.600000pt;}
.fs1_c00321{font-size:23.333333pt;}
.fs15_c00321{font-size:35.466667pt;}
.fsd_c00321{font-size:40.133333pt;}
.fs11_c00321{font-size:41.066667pt;}
.fs14_c00321{font-size:42.933333pt;}
.fs10_c00321{font-size:44.800000pt;}
.fs13_c00321{font-size:53.200000pt;}
.fs12_c00321{font-size:56.000000pt;}
.fs7_c00321{font-size:57.866667pt;}
.fsa_c00321{font-size:58.800000pt;}
.fs9_c00321{font-size:59.733333pt;}
.fsb_c00321{font-size:60.666667pt;}
.fs3_c00321{font-size:61.600000pt;}
.fs5_c00321{font-size:62.533333pt;}
.fs6_c00321{font-size:63.466667pt;}
.fs8_c00321{font-size:64.400000pt;}
.fs4_c00321{font-size:67.200000pt;}
.fsc_c00321{font-size:70.933333pt;}
.fs0_c00321{font-size:80.266667pt;}
.fse_c00321{font-size:89.600000pt;}
.fs2_c00321{font-size:126.004032pt;}
.y0_c00321{bottom:0.000000pt;}
.y3a_c00321{bottom:90.720000pt;}
.y3d_c00321{bottom:91.561333pt;}
.y3b_c00321{bottom:91.680000pt;}
.y3c_c00321{bottom:92.540000pt;}
.y39_c00321{bottom:102.960000pt;}
.y38_c00321{bottom:107.685333pt;}
.y37_c00321{bottom:108.824000pt;}
.y36_c00321{bottom:108.996000pt;}
.y35_c00321{bottom:109.685333pt;}
.y34_c00321{bottom:111.352000pt;}
.y33_c00321{bottom:112.762667pt;}
.y32_c00321{bottom:141.928000pt;}
.y31_c00321{bottom:157.350667pt;}
.y30_c00321{bottom:173.338667pt;}
.y2f_c00321{bottom:217.200000pt;}
.y2c_c00321{bottom:217.593333pt;}
.y2b_c00321{bottom:237.325333pt;}
.y2a_c00321{bottom:258.152000pt;}
.y2e_c00321{bottom:264.240000pt;}
.y29_c00321{bottom:277.497333pt;}
.y28_c00321{bottom:298.502667pt;}
.y27_c00321{bottom:318.266667pt;}
.y2d_c00321{bottom:318.960000pt;}
.y26_c00321{bottom:338.698667pt;}
.y25_c00321{bottom:358.349333pt;}
.y24_c00321{bottom:378.749333pt;}
.y23_c00321{bottom:399.360000pt;}
.y22_c00321{bottom:418.633333pt;}
.y21_c00321{bottom:439.830667pt;}
.y20_c00321{bottom:459.358667pt;}
.y1f_c00321{bottom:479.249333pt;}
.y1e_c00321{bottom:499.649333pt;}
.y1d_c00321{bottom:520.020000pt;}
.y1c_c00321{bottom:540.425333pt;}
.y1b_c00321{bottom:560.314667pt;}
.y1a_c00321{bottom:580.472000pt;}
.y19_c00321{bottom:600.818667pt;}
.y18_c00321{bottom:620.948000pt;}
.y17_c00321{bottom:640.892000pt;}
.y16_c00321{bottom:661.292000pt;}
.y9_c00321{bottom:680.401333pt;}
.ya_c00321{bottom:680.816000pt;}
.yb_c00321{bottom:680.968000pt;}
.yc_c00321{bottom:681.084000pt;}
.yd_c00321{bottom:681.342667pt;}
.ye_c00321{bottom:681.529333pt;}
.yf_c00321{bottom:681.705333pt;}
.y10_c00321{bottom:681.964000pt;}
.y11_c00321{bottom:682.129333pt;}
.y12_c00321{bottom:682.402667pt;}
.y13_c00321{bottom:682.696000pt;}
.y14_c00321{bottom:682.958667pt;}
.y15_c00321{bottom:683.074667pt;}
.y8_c00321{bottom:701.625333pt;}
.y7_c00321{bottom:721.332000pt;}
.y6_c00321{bottom:741.300000pt;}
.y3_c00321{bottom:779.281333pt;}
.y4_c00321{bottom:779.899872pt;}
.y5_c00321{bottom:780.363211pt;}
.y2_c00321{bottom:813.358667pt;}
.y1_c00321{bottom:830.672000pt;}
.h11_c00321{height:19.600000pt;}
.h3_c00321{height:23.333333pt;}
.h17_c00321{height:35.466667pt;}
.hf_c00321{height:40.133333pt;}
.h13_c00321{height:41.066667pt;}
.h16_c00321{height:42.933333pt;}
.h12_c00321{height:44.800000pt;}
.h15_c00321{height:53.200000pt;}
.h14_c00321{height:56.000000pt;}
.h9_c00321{height:57.866667pt;}
.hc_c00321{height:58.800000pt;}
.hb_c00321{height:59.733333pt;}
.hd_c00321{height:60.666667pt;}
.h5_c00321{height:61.600000pt;}
.h7_c00321{height:62.533333pt;}
.h8_c00321{height:63.466667pt;}
.ha_c00321{height:64.400000pt;}
.h6_c00321{height:67.200000pt;}
.he_c00321{height:70.933333pt;}
.h2_c00321{height:80.266667pt;}
.h10_c00321{height:89.600000pt;}
.h4_c00321{height:126.004032pt;}
.h0_c00321{height:896.400000pt;}
.h1_c00321{height:896.666667pt;}
.w0_c00321{width:618.666667pt;}
.x0_c00321{left:0.000000pt;}
.xce_c00321{left:81.317333pt;}
.xcb_c00321{left:82.800000pt;}
.x1_c00321{left:90.000000pt;}
.xd1_c00321{left:90.961333pt;}
.xd2_c00321{left:117.601333pt;}
.xd3_c00321{left:123.361333pt;}
.xac_c00321{left:129.360000pt;}
.xc_c00321{left:130.560000pt;}
.x9_c00321{left:131.846667pt;}
.x8b_c00321{left:133.440000pt;}
.xd4_c00321{left:140.881333pt;}
.xb3_c00321{left:142.080000pt;}
.xc1_c00321{left:143.040000pt;}
.xc4_c00321{left:146.400000pt;}
.x18_c00321{left:147.360000pt;}
.xb7_c00321{left:151.200000pt;}
.xcc_c00321{left:152.880000pt;}
.x7d_c00321{left:156.718667pt;}
.xd_c00321{left:161.760000pt;}
.x8c_c00321{left:164.640000pt;}
.x6a_c00321{left:165.838667pt;}
.x63_c00321{left:167.278667pt;}
.x25_c00321{left:169.680000pt;}
.x19_c00321{left:170.880000pt;}
.x9c_c00321{left:171.840000pt;}
.x78_c00321{left:174.958667pt;}
.xcd_c00321{left:176.160000pt;}
.x3f_c00321{left:177.598667pt;}
.xd5_c00321{left:179.041333pt;}
.x6e_c00321{left:182.158667pt;}
.x64_c00321{left:183.838667pt;}
.x91_c00321{left:186.240000pt;}
.x49_c00321{left:189.118667pt;}
.xe_c00321{left:190.560000pt;}
.x2c_c00321{left:191.630667pt;}
.xc9_c00321{left:194.160000pt;}
.x4f_c00321{left:195.358667pt;}
.x2_c00321{left:197.040000pt;}
.x35_c00321{left:198.478667pt;}
.xad_c00321{left:199.920000pt;}
.x9d_c00321{left:203.040000pt;}
.x57_c00321{left:204.718667pt;}
.x8d_c00321{left:207.360000pt;}
.xa_c00321{left:209.164000pt;}
.x1a_c00321{left:211.680000pt;}
.x2d_c00321{left:213.440000pt;}
.x7_c00321{left:215.760000pt;}
.xa9_c00321{left:217.200000pt;}
.xcf_c00321{left:220.193333pt;}
.xb4_c00321{left:222.000000pt;}
.xf_c00321{left:222.960000pt;}
.x36_c00321{left:225.838667pt;}
.x8_c00321{left:228.240000pt;}
.x2e_c00321{left:230.002667pt;}
.xc5_c00321{left:231.840000pt;}
.x50_c00321{left:233.038667pt;}
.x40_c00321{left:234.238667pt;}
.x6f_c00321{left:235.918667pt;}
.x1b_c00321{left:237.600000pt;}
.x65_c00321{left:240.478667pt;}
.xb8_c00321{left:242.400000pt;}
.x10_c00321{left:244.320000pt;}
.x41_c00321{left:247.678667pt;}
.x70_c00321{left:249.358667pt;}
.x79_c00321{left:251.278667pt;}
.xc2_c00321{left:252.240000pt;}
.x5f_c00321{left:254.398667pt;}
.x58_c00321{left:256.558667pt;}
.x66_c00321{left:260.878667pt;}
.x86_c00321{left:262.800000pt;}
.x1c_c00321{left:264.240000pt;}
.x81_c00321{left:265.198667pt;}
.xb_c00321{left:267.081333pt;}
.x87_c00321{left:270.000000pt;}
.x92_c00321{left:275.760000pt;}
.x59_c00321{left:277.438667pt;}
.x26_c00321{left:278.880000pt;}
.xca_c00321{left:279.840000pt;}
.x51_c00321{left:282.478667pt;}
.x11_c00321{left:284.880000pt;}
.x4a_c00321{left:286.318667pt;}
.x42_c00321{left:287.518667pt;}
.x7e_c00321{left:290.158667pt;}
.xc6_c00321{left:292.080000pt;}
.x2f_c00321{left:293.602667pt;}
.x27_c00321{left:296.640000pt;}
.x1d_c00321{left:298.800000pt;}
.x71_c00321{left:299.998667pt;}
.x12_c00321{left:301.200000pt;}
.x93_c00321{left:304.080000pt;}
.x43_c00321{left:305.038667pt;}
.xd9_c00321{left:306.000000pt;}
.xaa_c00321{left:308.160000pt;}
.xa2_c00321{left:309.600000pt;}
.x82_c00321{left:311.518667pt;}
.x4b_c00321{left:314.158667pt;}
.x72_c00321{left:315.358667pt;}
.x13_c00321{left:317.280000pt;}
.x30_c00321{left:318.802667pt;}
.x7a_c00321{left:321.118667pt;}
.x9e_c00321{left:325.200000pt;}
.x6b_c00321{left:327.838667pt;}
.x83_c00321{left:328.798667pt;}
.x37_c00321{left:330.238667pt;}
.x7f_c00321{left:332.158667pt;}
.xd6_c00321{left:335.761333pt;}
.xb9_c00321{left:337.200000pt;}
.x98_c00321{left:338.880000pt;}
.x88_c00321{left:341.040000pt;}
.xa3_c00321{left:342.480000pt;}
.x60_c00321{left:347.758667pt;}
.x52_c00321{left:349.438667pt;}
.x38_c00321{left:351.118667pt;}
.xb2_c00321{left:353.760000pt;}
.x3_c00321{left:355.200000pt;}
.x1e_c00321{left:357.840000pt;}
.x14_c00321{left:359.520000pt;}
.xab_c00321{left:360.720000pt;}
.xb5_c00321{left:362.160000pt;}
.xa4_c00321{left:363.360000pt;}
.xc7_c00321{left:365.760000pt;}
.x9f_c00321{left:370.560000pt;}
.x94_c00321{left:372.000000pt;}
.x39_c00321{left:373.678667pt;}
.xc3_c00321{left:376.080000pt;}
.x61_c00321{left:377.038667pt;}
.x31_c00321{left:379.281333pt;}
.x73_c00321{left:382.558667pt;}
.x28_c00321{left:383.760000pt;}
.x4c_c00321{left:384.718667pt;}
.xae_c00321{left:385.680000pt;}
.xd0_c00321{left:386.822667pt;}
.x84_c00321{left:387.838667pt;}
.xba_c00321{left:389.520000pt;}
.xa5_c00321{left:392.400000pt;}
.x8e_c00321{left:396.240000pt;}
.x15_c00321{left:397.680000pt;}
.x67_c00321{left:399.118667pt;}
.xbb_c00321{left:400.320000pt;}
.xa0_c00321{left:401.760000pt;}
.x44_c00321{left:404.398667pt;}
.x74_c00321{left:406.558667pt;}
.x3a_c00321{left:407.998667pt;}
.x5a_c00321{left:410.878667pt;}
.xaf_c00321{left:412.560000pt;}
.x53_c00321{left:417.118667pt;}
.x32_c00321{left:418.397333pt;}
.x5b_c00321{left:421.678667pt;}
.x80_c00321{left:423.118667pt;}
.x16_c00321{left:424.560000pt;}
.x68_c00321{left:425.518667pt;}
.xb6_c00321{left:428.880000pt;}
.x99_c00321{left:430.080000pt;}
.x29_c00321{left:431.280000pt;}
.x45_c00321{left:433.198667pt;}
.x3b_c00321{left:434.398667pt;}
.x75_c00321{left:436.318667pt;}
.x8f_c00321{left:437.760000pt;}
.xa6_c00321{left:439.680000pt;}
.x6c_c00321{left:442.558667pt;}
.x9a_c00321{left:443.760000pt;}
.x5c_c00321{left:445.198667pt;}
.x89_c00321{left:446.880000pt;}
.x46_c00321{left:448.078667pt;}
.xa7_c00321{left:450.000000pt;}
.x1f_c00321{left:451.680000pt;}
.x4_c00321{left:453.600000pt;}
.x95_c00321{left:456.960000pt;}
.x62_c00321{left:458.638667pt;}
.x33_c00321{left:460.366667pt;}
.x76_c00321{left:461.998667pt;}
.xb0_c00321{left:463.680000pt;}
.x54_c00321{left:466.078667pt;}
.x7b_c00321{left:468.238667pt;}
.x20_c00321{left:469.920000pt;}
.x2a_c00321{left:471.360000pt;}
.xa8_c00321{left:472.320000pt;}
.x3c_c00321{left:475.438667pt;}
.x96_c00321{left:477.840000pt;}
.x4d_c00321{left:479.038667pt;}
.xb1_c00321{left:481.920000pt;}
.x17_c00321{left:485.520000pt;}
.x5d_c00321{left:486.478667pt;}
.x55_c00321{left:490.798667pt;}
.x7c_c00321{left:493.678667pt;}
.x21_c00321{left:497.520000pt;}
.x6d_c00321{left:499.198667pt;}
.x2b_c00321{left:500.880000pt;}
.x77_c00321{left:503.278667pt;}
.x47_c00321{left:506.158667pt;}
.x3d_c00321{left:507.838667pt;}
.x5e_c00321{left:509.998667pt;}
.x34_c00321{left:514.396000pt;}
.x9b_c00321{left:517.200000pt;}
.x22_c00321{left:518.160000pt;}
.x69_c00321{left:519.358667pt;}
.x90_c00321{left:521.040000pt;}
.xc8_c00321{left:522.720000pt;}
.x5_c00321{left:526.800000pt;}
.xa1_c00321{left:528.240000pt;}
.x3e_c00321{left:530.158667pt;}
.x97_c00321{left:532.080000pt;}
.x23_c00321{left:533.520000pt;}
.x48_c00321{left:534.478667pt;}
.x56_c00321{left:537.598667pt;}
.x4e_c00321{left:540.718667pt;}
.x8a_c00321{left:545.040000pt;}
.x85_c00321{left:552.958667pt;}
.x24_c00321{left:560.160000pt;}
.x6_c00321{left:575.040000pt;}
.xd7_c00321{left:583.440000pt;}
.xd8_c00321{left:587.040000pt;}
.xbd_c00321{left:605.040000pt;}
.xbc_c00321{left:609.360000pt;}
.xc0_c00321{left:615.360000pt;}
.xbf_c00321{left:616.320000pt;}
.xbe_c00321{left:617.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_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_ef4e99a7aa2876b3106553d3.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;}
.ma_c00322{transform:matrix(0.007200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007200,0.000000,0.000000,0.250000,0,0);}
.m73_c00322{transform:matrix(0.014049,0.000197,-0.003500,0.249976,0,0);-ms-transform:matrix(0.014049,0.000197,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.014049,0.000197,-0.003500,0.249976,0,0);}
.m144_c00322{transform:matrix(0.014844,0.000193,-0.003250,0.249979,0,0);-ms-transform:matrix(0.014844,0.000193,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.014844,0.000193,-0.003250,0.249979,0,0);}
.m9f_c00322{transform:matrix(0.081812,0.001145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.081812,0.001145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.081812,0.001145,-0.003500,0.249976,0,0);}
.m87_c00322{transform:matrix(0.083027,0.001162,-0.003500,0.249976,0,0);-ms-transform:matrix(0.083027,0.001162,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.083027,0.001162,-0.003500,0.249976,0,0);}
.me0_c00322{transform:matrix(0.091541,0.001282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.091541,0.001282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.091541,0.001282,-0.003500,0.249976,0,0);}
.m1b_c00322{transform:matrix(0.092821,0.001299,-0.003500,0.249976,0,0);-ms-transform:matrix(0.092821,0.001299,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.092821,0.001299,-0.003500,0.249976,0,0);}
.md_c00322{transform:matrix(0.094051,0.001317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.094051,0.001317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.094051,0.001317,-0.003500,0.249976,0,0);}
.m94_c00322{transform:matrix(0.098600,0.001380,-0.003500,0.249976,0,0);-ms-transform:matrix(0.098600,0.001380,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.098600,0.001380,-0.003500,0.249976,0,0);}
.m12b_c00322{transform:matrix(0.134832,0.001888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.134832,0.001888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.134832,0.001888,-0.003500,0.249976,0,0);}
.m7d_c00322{transform:matrix(0.138176,0.001934,-0.003500,0.249976,0,0);-ms-transform:matrix(0.138176,0.001934,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.138176,0.001934,-0.003500,0.249976,0,0);}
.m84_c00322{transform:matrix(0.143471,0.002009,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143471,0.002009,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143471,0.002009,-0.003500,0.249976,0,0);}
.mca_c00322{transform:matrix(0.143721,0.002012,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143721,0.002012,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143721,0.002012,-0.003500,0.249976,0,0);}
.mfd_c00322{transform:matrix(0.144036,0.002017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144036,0.002017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144036,0.002017,-0.003500,0.249976,0,0);}
.mc3_c00322{transform:matrix(0.146506,0.002051,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146506,0.002051,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146506,0.002051,-0.003500,0.249976,0,0);}
.m95_c00322{transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);}
.m3f_c00322{transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);}
.mef_c00322{transform:matrix(0.148915,0.002085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148915,0.002085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148915,0.002085,-0.003500,0.249976,0,0);}
.ma2_c00322{transform:matrix(0.149350,0.002091,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149350,0.002091,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149350,0.002091,-0.003500,0.249976,0,0);}
.m20_c00322{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);}
.mea_c00322{transform:matrix(0.151015,0.002114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151015,0.002114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151015,0.002114,-0.003500,0.249976,0,0);}
.ma7_c00322{transform:matrix(0.151970,0.002128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151970,0.002128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151970,0.002128,-0.003500,0.249976,0,0);}
.m10a_c00322{transform:matrix(0.152780,0.002139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152780,0.002139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152780,0.002139,-0.003500,0.249976,0,0);}
.mc9_c00322{transform:matrix(0.153430,0.002148,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153430,0.002148,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153430,0.002148,-0.003500,0.249976,0,0);}
.m62_c00322{transform:matrix(0.154505,0.002163,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154505,0.002163,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154505,0.002163,-0.003500,0.249976,0,0);}
.m130_c00322{transform:matrix(0.155435,0.002176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155435,0.002176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155435,0.002176,-0.003500,0.249976,0,0);}
.m91_c00322{transform:matrix(0.155575,0.002178,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155575,0.002178,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155575,0.002178,-0.003500,0.249976,0,0);}
.mf_c00322{transform:matrix(0.156075,0.002185,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156075,0.002185,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156075,0.002185,-0.003500,0.249976,0,0);}
.maa_c00322{transform:matrix(0.156190,0.002187,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156190,0.002187,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156190,0.002187,-0.003500,0.249976,0,0);}
.m9c_c00322{transform:matrix(0.157535,0.002205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157535,0.002205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157535,0.002205,-0.003500,0.249976,0,0);}
.m146_c00322{transform:matrix(0.158312,0.002058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158312,0.002058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158312,0.002058,-0.003250,0.249979,0,0);}
.m131_c00322{transform:matrix(0.158319,0.002216,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158319,0.002216,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158319,0.002216,-0.003500,0.249976,0,0);}
.mbc_c00322{transform:matrix(0.159059,0.002227,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159059,0.002227,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159059,0.002227,-0.003500,0.249976,0,0);}
.m29_c00322{transform:matrix(0.159904,0.002239,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159904,0.002239,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159904,0.002239,-0.003500,0.249976,0,0);}
.m5d_c00322{transform:matrix(0.160324,0.002245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160324,0.002245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160324,0.002245,-0.003500,0.249976,0,0);}
.ma1_c00322{transform:matrix(0.161189,0.002257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161189,0.002257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161189,0.002257,-0.003500,0.249976,0,0);}
.mc1_c00322{transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);}
.ma4_c00322{transform:matrix(0.161504,0.002261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161504,0.002261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161504,0.002261,-0.003500,0.249976,0,0);}
.ma0_c00322{transform:matrix(0.161584,0.002262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161584,0.002262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161584,0.002262,-0.003500,0.249976,0,0);}
.m113_c00322{transform:matrix(0.161984,0.002268,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161984,0.002268,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161984,0.002268,-0.003500,0.249976,0,0);}
.m42_c00322{transform:matrix(0.162274,0.002272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162274,0.002272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162274,0.002272,-0.003500,0.249976,0,0);}
.m145_c00322{transform:matrix(0.163011,0.002119,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163011,0.002119,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163011,0.002119,-0.003250,0.249979,0,0);}
.mb_c00322{transform:matrix(0.163405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163405,0.000000,0.000000,0.250000,0,0);}
.mf3_c00322{transform:matrix(0.163709,0.002292,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163709,0.002292,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163709,0.002292,-0.003500,0.249976,0,0);}
.m57_c00322{transform:matrix(0.164409,0.002302,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164409,0.002302,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164409,0.002302,-0.003500,0.249976,0,0);}
.m63_c00322{transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164559,0.002304,-0.003500,0.249976,0,0);}
.m8b_c00322{transform:matrix(0.164574,0.002304,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164574,0.002304,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164574,0.002304,-0.003500,0.249976,0,0);}
.mba_c00322{transform:matrix(0.164704,0.002306,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164704,0.002306,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164704,0.002306,-0.003500,0.249976,0,0);}
.mde_c00322{transform:matrix(0.164874,0.002308,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164874,0.002308,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164874,0.002308,-0.003500,0.249976,0,0);}
.m98_c00322{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);}
.m11e_c00322{transform:matrix(0.165424,0.002316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165424,0.002316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165424,0.002316,-0.003500,0.249976,0,0);}
.m13e_c00322{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);}
.m71_c00322{transform:matrix(0.165709,0.002320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165709,0.002320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165709,0.002320,-0.003500,0.249976,0,0);}
.mf7_c00322{transform:matrix(0.165854,0.002322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165854,0.002322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165854,0.002322,-0.003500,0.249976,0,0);}
.mc6_c00322{transform:matrix(0.165979,0.002324,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165979,0.002324,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165979,0.002324,-0.003500,0.249976,0,0);}
.mcc_c00322{transform:matrix(0.166144,0.002326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166144,0.002326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166144,0.002326,-0.003500,0.249976,0,0);}
.m116_c00322{transform:matrix(0.166384,0.002329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166384,0.002329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166384,0.002329,-0.003500,0.249976,0,0);}
.m97_c00322{transform:matrix(0.166739,0.002334,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166739,0.002334,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166739,0.002334,-0.003500,0.249976,0,0);}
.m35_c00322{transform:matrix(0.166914,0.002337,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166914,0.002337,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166914,0.002337,-0.003500,0.249976,0,0);}
.me3_c00322{transform:matrix(0.167084,0.002339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167084,0.002339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167084,0.002339,-0.003500,0.249976,0,0);}
.m60_c00322{transform:matrix(0.167114,0.002340,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167114,0.002340,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167114,0.002340,-0.003500,0.249976,0,0);}
.mbe_c00322{transform:matrix(0.167239,0.002341,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167239,0.002341,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167239,0.002341,-0.003500,0.249976,0,0);}
.me7_c00322{transform:matrix(0.167279,0.002342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167279,0.002342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167279,0.002342,-0.003500,0.249976,0,0);}
.md5_c00322{transform:matrix(0.167804,0.002349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167804,0.002349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167804,0.002349,-0.003500,0.249976,0,0);}
.m86_c00322{transform:matrix(0.168289,0.002356,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168289,0.002356,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168289,0.002356,-0.003500,0.249976,0,0);}
.mb8_c00322{transform:matrix(0.168548,0.002360,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168548,0.002360,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168548,0.002360,-0.003500,0.249976,0,0);}
.mb9_c00322{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);}
.m93_c00322{transform:matrix(0.169213,0.002369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169213,0.002369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169213,0.002369,-0.003500,0.249976,0,0);}
.m4e_c00322{transform:matrix(0.169368,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169368,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169368,0.002371,-0.003500,0.249976,0,0);}
.mf5_c00322{transform:matrix(0.169373,0.002371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169373,0.002371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169373,0.002371,-0.003500,0.249976,0,0);}
.m43_c00322{transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);}
.mc0_c00322{transform:matrix(0.169563,0.002374,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169563,0.002374,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169563,0.002374,-0.003500,0.249976,0,0);}
.mb2_c00322{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);}
.m117_c00322{transform:matrix(0.170013,0.002380,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170013,0.002380,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170013,0.002380,-0.003500,0.249976,0,0);}
.m37_c00322{transform:matrix(0.170138,0.002382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170138,0.002382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170138,0.002382,-0.003500,0.249976,0,0);}
.m104_c00322{transform:matrix(0.170423,0.002386,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170423,0.002386,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170423,0.002386,-0.003500,0.249976,0,0);}
.m8a_c00322{transform:matrix(0.170483,0.002387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170483,0.002387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170483,0.002387,-0.003500,0.249976,0,0);}
.mf9_c00322{transform:matrix(0.170958,0.002393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170958,0.002393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170958,0.002393,-0.003500,0.249976,0,0);}
.m140_c00322{transform:matrix(0.171106,0.002224,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171106,0.002224,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171106,0.002224,-0.003250,0.249979,0,0);}
.m15_c00322{transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);}
.mc4_c00322{transform:matrix(0.171623,0.002403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171623,0.002403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171623,0.002403,-0.003500,0.249976,0,0);}
.m14b_c00322{transform:matrix(0.172025,0.002236,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172025,0.002236,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172025,0.002236,-0.003250,0.249979,0,0);}
.m92_c00322{transform:matrix(0.172353,0.002413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172353,0.002413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172353,0.002413,-0.003500,0.249976,0,0);}
.m40_c00322{transform:matrix(0.172373,0.002413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172373,0.002413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172373,0.002413,-0.003500,0.249976,0,0);}
.m122_c00322{transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172383,0.002413,-0.003500,0.249976,0,0);}
.m59_c00322{transform:matrix(0.172473,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172473,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172473,0.002415,-0.003500,0.249976,0,0);}
.mb1_c00322{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);}
.me2_c00322{transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173158,0.002424,-0.003500,0.249976,0,0);}
.m66_c00322{transform:matrix(0.173343,0.002427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173343,0.002427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173343,0.002427,-0.003500,0.249976,0,0);}
.mbd_c00322{transform:matrix(0.173378,0.002427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173378,0.002427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173378,0.002427,-0.003500,0.249976,0,0);}
.m8d_c00322{transform:matrix(0.173573,0.002430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173573,0.002430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173573,0.002430,-0.003500,0.249976,0,0);}
.m2a_c00322{transform:matrix(0.173633,0.002431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173633,0.002431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173633,0.002431,-0.003500,0.249976,0,0);}
.m11c_c00322{transform:matrix(0.173888,0.002434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173888,0.002434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173888,0.002434,-0.003500,0.249976,0,0);}
.m11d_c00322{transform:matrix(0.173918,0.002435,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173918,0.002435,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173918,0.002435,-0.003500,0.249976,0,0);}
.me6_c00322{transform:matrix(0.174133,0.002438,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174133,0.002438,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174133,0.002438,-0.003500,0.249976,0,0);}
.m27_c00322{transform:matrix(0.174353,0.002441,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174353,0.002441,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174353,0.002441,-0.003500,0.249976,0,0);}
.mb3_c00322{transform:matrix(0.174703,0.002446,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174703,0.002446,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174703,0.002446,-0.003500,0.249976,0,0);}
.ma3_c00322{transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175408,0.002456,-0.003500,0.249976,0,0);}
.m9e_c00322{transform:matrix(0.175733,0.002460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175733,0.002460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175733,0.002460,-0.003500,0.249976,0,0);}
.m55_c00322{transform:matrix(0.175783,0.002461,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175783,0.002461,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175783,0.002461,-0.003500,0.249976,0,0);}
.m85_c00322{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);}
.m2e_c00322{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);}
.mdf_c00322{transform:matrix(0.176233,0.002467,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176233,0.002467,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176233,0.002467,-0.003500,0.249976,0,0);}
.m58_c00322{transform:matrix(0.176348,0.002469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176348,0.002469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176348,0.002469,-0.003500,0.249976,0,0);}
.mb6_c00322{transform:matrix(0.176418,0.002470,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176418,0.002470,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176418,0.002470,-0.003500,0.249976,0,0);}
.m10_c00322{transform:matrix(0.176518,0.002471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176518,0.002471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176518,0.002471,-0.003500,0.249976,0,0);}
.med_c00322{transform:matrix(0.176763,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176763,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176763,0.002475,-0.003500,0.249976,0,0);}
.m25_c00322{transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177068,0.002479,-0.003500,0.249976,0,0);}
.mb5_c00322{transform:matrix(0.177223,0.002481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177223,0.002481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177223,0.002481,-0.003500,0.249976,0,0);}
.m19_c00322{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);}
.m143_c00322{transform:matrix(0.177430,0.002307,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177430,0.002307,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177430,0.002307,-0.003250,0.249979,0,0);}
.m54_c00322{transform:matrix(0.177523,0.002485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177523,0.002485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177523,0.002485,-0.003500,0.249976,0,0);}
.m9d_c00322{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);}
.m3c_c00322{transform:matrix(0.178193,0.002495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178193,0.002495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178193,0.002495,-0.003500,0.249976,0,0);}
.m118_c00322{transform:matrix(0.178278,0.002496,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178278,0.002496,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178278,0.002496,-0.003500,0.249976,0,0);}
.m64_c00322{transform:matrix(0.178353,0.002497,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178353,0.002497,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178353,0.002497,-0.003500,0.249976,0,0);}
.m11_c00322{transform:matrix(0.178438,0.002498,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178438,0.002498,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178438,0.002498,-0.003500,0.249976,0,0);}
.m51_c00322{transform:matrix(0.178612,0.002501,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178612,0.002501,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178612,0.002501,-0.003500,0.249976,0,0);}
.m101_c00322{transform:matrix(0.179077,0.002507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179077,0.002507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179077,0.002507,-0.003500,0.249976,0,0);}
.m9b_c00322{transform:matrix(0.179482,0.002513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179482,0.002513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179482,0.002513,-0.003500,0.249976,0,0);}
.m8f_c00322{transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179612,0.002515,-0.003500,0.249976,0,0);}
.m5b_c00322{transform:matrix(0.180012,0.002520,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180012,0.002520,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180012,0.002520,-0.003500,0.249976,0,0);}
.m99_c00322{transform:matrix(0.180102,0.002521,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180102,0.002521,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180102,0.002521,-0.003500,0.249976,0,0);}
.m90_c00322{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);}
.md9_c00322{transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);}
.mc8_c00322{transform:matrix(0.180322,0.002525,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180322,0.002525,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180322,0.002525,-0.003500,0.249976,0,0);}
.me5_c00322{transform:matrix(0.180647,0.002529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180647,0.002529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180647,0.002529,-0.003500,0.249976,0,0);}
.mda_c00322{transform:matrix(0.180662,0.002529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180662,0.002529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180662,0.002529,-0.003500,0.249976,0,0);}
.m10d_c00322{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);}
.mcd_c00322{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);}
.mb7_c00322{transform:matrix(0.182037,0.002549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182037,0.002549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182037,0.002549,-0.003500,0.249976,0,0);}
.m5c_c00322{transform:matrix(0.182217,0.002551,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182217,0.002551,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182217,0.002551,-0.003500,0.249976,0,0);}
.mab_c00322{transform:matrix(0.182617,0.002557,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182617,0.002557,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182617,0.002557,-0.003500,0.249976,0,0);}
.m82_c00322{transform:matrix(0.182897,0.002561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182897,0.002561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182897,0.002561,-0.003500,0.249976,0,0);}
.m10e_c00322{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);}
.mfc_c00322{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);}
.m9a_c00322{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);}
.mc_c00322{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);}
.m1e_c00322{transform:matrix(0.184862,0.002588,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184862,0.002588,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184862,0.002588,-0.003500,0.249976,0,0);}
.m11a_c00322{transform:matrix(0.185567,0.002598,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185567,0.002598,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185567,0.002598,-0.003500,0.249976,0,0);}
.m11b_c00322{transform:matrix(0.185592,0.002598,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185592,0.002598,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185592,0.002598,-0.003500,0.249976,0,0);}
.m106_c00322{transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186222,0.002607,-0.003500,0.249976,0,0);}
.mf0_c00322{transform:matrix(0.186377,0.002609,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186377,0.002609,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186377,0.002609,-0.003500,0.249976,0,0);}
.m12c_c00322{transform:matrix(0.186422,0.002610,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186422,0.002610,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186422,0.002610,-0.003500,0.249976,0,0);}
.m18_c00322{transform:matrix(0.186552,0.002612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186552,0.002612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186552,0.002612,-0.003500,0.249976,0,0);}
.m3e_c00322{transform:matrix(0.186582,0.002612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186582,0.002612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186582,0.002612,-0.003500,0.249976,0,0);}
.me4_c00322{transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);}
.m2d_c00322{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);}
.mbf_c00322{transform:matrix(0.187047,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187047,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187047,0.002619,-0.003500,0.249976,0,0);}
.m12e_c00322{transform:matrix(0.187127,0.002620,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187127,0.002620,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187127,0.002620,-0.003500,0.249976,0,0);}
.m14_c00322{transform:matrix(0.187237,0.002621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187237,0.002621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187237,0.002621,-0.003500,0.249976,0,0);}
.m53_c00322{transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187642,0.002627,-0.003500,0.249976,0,0);}
.m105_c00322{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);}
.m138_c00322{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);}
.mc2_c00322{transform:matrix(0.187942,0.002631,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187942,0.002631,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187942,0.002631,-0.003500,0.249976,0,0);}
.mdb_c00322{transform:matrix(0.187967,0.002632,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187967,0.002632,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187967,0.002632,-0.003500,0.249976,0,0);}
.m88_c00322{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);}
.m67_c00322{transform:matrix(0.188187,0.002635,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188187,0.002635,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188187,0.002635,-0.003500,0.249976,0,0);}
.m22_c00322{transform:matrix(0.188302,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188302,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188302,0.002636,-0.003500,0.249976,0,0);}
.m12a_c00322{transform:matrix(0.188332,0.002637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188332,0.002637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188332,0.002637,-0.003500,0.249976,0,0);}
.m2c_c00322{transform:matrix(0.188457,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188457,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188457,0.002638,-0.003500,0.249976,0,0);}
.m14c_c00322{transform:matrix(0.188629,0.002452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188629,0.002452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188629,0.002452,-0.003250,0.249979,0,0);}
.m1c_c00322{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);}
.m12_c00322{transform:matrix(0.189171,0.002648,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189171,0.002648,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189171,0.002648,-0.003500,0.249976,0,0);}
.m89_c00322{transform:matrix(0.189221,0.002649,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189221,0.002649,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189221,0.002649,-0.003500,0.249976,0,0);}
.m4b_c00322{transform:matrix(0.189346,0.002651,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189346,0.002651,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189346,0.002651,-0.003500,0.249976,0,0);}
.m10b_c00322{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);}
.me1_c00322{transform:matrix(0.190031,0.002660,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190031,0.002660,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190031,0.002660,-0.003500,0.249976,0,0);}
.mf1_c00322{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);}
.m126_c00322{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);}
.m56_c00322{transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191131,0.002676,-0.003500,0.249976,0,0);}
.m1f_c00322{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);}
.m5f_c00322{transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);}
.m4d_c00322{transform:matrix(0.191516,0.002681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191516,0.002681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191516,0.002681,-0.003500,0.249976,0,0);}
.md6_c00322{transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);}
.m2f_c00322{transform:matrix(0.191736,0.002684,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191736,0.002684,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191736,0.002684,-0.003500,0.249976,0,0);}
.md1_c00322{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);}
.m7c_c00322{transform:matrix(0.192326,0.002693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192326,0.002693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192326,0.002693,-0.003500,0.249976,0,0);}
.m31_c00322{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);}
.m108_c00322{transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192486,0.002695,-0.003500,0.249976,0,0);}
.m120_c00322{transform:matrix(0.193206,0.002705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193206,0.002705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193206,0.002705,-0.003500,0.249976,0,0);}
.mfa_c00322{transform:matrix(0.193211,0.002705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193211,0.002705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193211,0.002705,-0.003500,0.249976,0,0);}
.m12f_c00322{transform:matrix(0.193231,0.002705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193231,0.002705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193231,0.002705,-0.003500,0.249976,0,0);}
.m128_c00322{transform:matrix(0.193451,0.002708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193451,0.002708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193451,0.002708,-0.003500,0.249976,0,0);}
.m33_c00322{transform:matrix(0.193506,0.002709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193506,0.002709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193506,0.002709,-0.003500,0.249976,0,0);}
.m109_c00322{transform:matrix(0.193766,0.002713,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193766,0.002713,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193766,0.002713,-0.003500,0.249976,0,0);}
.m44_c00322{transform:matrix(0.193981,0.002716,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193981,0.002716,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193981,0.002716,-0.003500,0.249976,0,0);}
.mc5_c00322{transform:matrix(0.194086,0.002717,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194086,0.002717,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194086,0.002717,-0.003500,0.249976,0,0);}
.m8e_c00322{transform:matrix(0.194111,0.002718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194111,0.002718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194111,0.002718,-0.003500,0.249976,0,0);}
.ma9_c00322{transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194206,0.002719,-0.003500,0.249976,0,0);}
.m39_c00322{transform:matrix(0.194246,0.002719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194246,0.002719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194246,0.002719,-0.003500,0.249976,0,0);}
.m17_c00322{transform:matrix(0.194456,0.002722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194456,0.002722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194456,0.002722,-0.003500,0.249976,0,0);}
.mb4_c00322{transform:matrix(0.194956,0.002729,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194956,0.002729,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194956,0.002729,-0.003500,0.249976,0,0);}
.m1d_c00322{transform:matrix(0.195021,0.002730,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195021,0.002730,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195021,0.002730,-0.003500,0.249976,0,0);}
.m127_c00322{transform:matrix(0.195861,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195861,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195861,0.002742,-0.003500,0.249976,0,0);}
.mee_c00322{transform:matrix(0.196041,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196041,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196041,0.002745,-0.003500,0.249976,0,0);}
.m45_c00322{transform:matrix(0.196066,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196066,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196066,0.002745,-0.003500,0.249976,0,0);}
.m65_c00322{transform:matrix(0.196316,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196316,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196316,0.002748,-0.003500,0.249976,0,0);}
.mbb_c00322{transform:matrix(0.196581,0.002752,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196581,0.002752,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196581,0.002752,-0.003500,0.249976,0,0);}
.m52_c00322{transform:matrix(0.196881,0.002756,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196881,0.002756,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196881,0.002756,-0.003500,0.249976,0,0);}
.mf4_c00322{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);}
.mf2_c00322{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);}
.m36_c00322{transform:matrix(0.197726,0.002768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197726,0.002768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197726,0.002768,-0.003500,0.249976,0,0);}
.m81_c00322{transform:matrix(0.197771,0.002769,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197771,0.002769,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197771,0.002769,-0.003500,0.249976,0,0);}
.m4c_c00322{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);}
.md0_c00322{transform:matrix(0.197961,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197961,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197961,0.002771,-0.003500,0.249976,0,0);}
.m2b_c00322{transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198136,0.002774,-0.003500,0.249976,0,0);}
.m7f_c00322{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);}
.m13b_c00322{transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199178,0.002589,-0.003250,0.249979,0,0);}
.m77_c00322{transform:matrix(0.199620,0.002795,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199620,0.002795,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199620,0.002795,-0.003500,0.249976,0,0);}
.ma6_c00322{transform:matrix(0.199885,0.002798,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199885,0.002798,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199885,0.002798,-0.003500,0.249976,0,0);}
.m5a_c00322{transform:matrix(0.199895,0.002799,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199895,0.002799,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199895,0.002799,-0.003500,0.249976,0,0);}
.m38_c00322{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);}
.m10f_c00322{transform:matrix(0.200355,0.002805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200355,0.002805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200355,0.002805,-0.003500,0.249976,0,0);}
.m148_c00322{transform:matrix(0.200478,0.002606,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200478,0.002606,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200478,0.002606,-0.003250,0.249979,0,0);}
.mf8_c00322{transform:matrix(0.200825,0.002812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200825,0.002812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200825,0.002812,-0.003500,0.249976,0,0);}
.mfb_c00322{transform:matrix(0.200840,0.002812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200840,0.002812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200840,0.002812,-0.003500,0.249976,0,0);}
.m103_c00322{transform:matrix(0.200875,0.002812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200875,0.002812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200875,0.002812,-0.003500,0.249976,0,0);}
.m30_c00322{transform:matrix(0.200880,0.002812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200880,0.002812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200880,0.002812,-0.003500,0.249976,0,0);}
.m70_c00322{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);}
.m13_c00322{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);}
.m141_c00322{transform:matrix(0.202033,0.002626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202033,0.002626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202033,0.002626,-0.003250,0.249979,0,0);}
.m133_c00322{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);}
.m114_c00322{transform:matrix(0.202965,0.002842,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202965,0.002842,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202965,0.002842,-0.003500,0.249976,0,0);}
.m14d_c00322{transform:matrix(0.202988,0.002639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202988,0.002639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202988,0.002639,-0.003250,0.249979,0,0);}
.m3a_c00322{transform:matrix(0.203150,0.002844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203150,0.002844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203150,0.002844,-0.003500,0.249976,0,0);}
.maf_c00322{transform:matrix(0.203350,0.002847,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203350,0.002847,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203350,0.002847,-0.003500,0.249976,0,0);}
.m76_c00322{transform:matrix(0.203445,0.002848,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203445,0.002848,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203445,0.002848,-0.003500,0.249976,0,0);}
.mae_c00322{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);}
.m149_c00322{transform:matrix(0.204078,0.002653,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204078,0.002653,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204078,0.002653,-0.003250,0.249979,0,0);}
.mcf_c00322{transform:matrix(0.204105,0.002857,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204105,0.002857,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204105,0.002857,-0.003500,0.249976,0,0);}
.m123_c00322{transform:matrix(0.204235,0.002859,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204235,0.002859,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204235,0.002859,-0.003500,0.249976,0,0);}
.mac_c00322{transform:matrix(0.204580,0.002864,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204580,0.002864,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204580,0.002864,-0.003500,0.249976,0,0);}
.m119_c00322{transform:matrix(0.204700,0.002866,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204700,0.002866,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204700,0.002866,-0.003500,0.249976,0,0);}
.m16_c00322{transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);}
.mb0_c00322{transform:matrix(0.205700,0.002880,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205700,0.002880,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205700,0.002880,-0.003500,0.249976,0,0);}
.m1a_c00322{transform:matrix(0.205760,0.002881,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205760,0.002881,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205760,0.002881,-0.003500,0.249976,0,0);}
.m28_c00322{transform:matrix(0.205850,0.002882,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205850,0.002882,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205850,0.002882,-0.003500,0.249976,0,0);}
.md3_c00322{transform:matrix(0.205930,0.002883,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205930,0.002883,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205930,0.002883,-0.003500,0.249976,0,0);}
.m6b_c00322{transform:matrix(0.206460,0.002890,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206460,0.002890,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206460,0.002890,-0.003500,0.249976,0,0);}
.m41_c00322{transform:matrix(0.206545,0.002892,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206545,0.002892,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206545,0.002892,-0.003500,0.249976,0,0);}
.m129_c00322{transform:matrix(0.207060,0.002899,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207060,0.002899,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207060,0.002899,-0.003500,0.249976,0,0);}
.m75_c00322{transform:matrix(0.207510,0.002905,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207510,0.002905,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207510,0.002905,-0.003500,0.249976,0,0);}
.m83_c00322{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);}
.m26_c00322{transform:matrix(0.207805,0.002909,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207805,0.002909,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207805,0.002909,-0.003500,0.249976,0,0);}
.m142_c00322{transform:matrix(0.208137,0.002706,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208137,0.002706,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208137,0.002706,-0.003250,0.249979,0,0);}
.me_c00322{transform:matrix(0.208810,0.002923,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208810,0.002923,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208810,0.002923,-0.003500,0.249976,0,0);}
.md8_c00322{transform:matrix(0.209020,0.002926,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209020,0.002926,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209020,0.002926,-0.003500,0.249976,0,0);}
.m124_c00322{transform:matrix(0.209244,0.002929,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209244,0.002929,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209244,0.002929,-0.003500,0.249976,0,0);}
.mce_c00322{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);}
.m69_c00322{transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209534,0.002933,-0.003500,0.249976,0,0);}
.mfe_c00322{transform:matrix(0.209749,0.002936,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209749,0.002936,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209749,0.002936,-0.003500,0.249976,0,0);}
.m4a_c00322{transform:matrix(0.209974,0.002940,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209974,0.002940,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209974,0.002940,-0.003500,0.249976,0,0);}
.m125_c00322{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);}
.m4f_c00322{transform:matrix(0.211164,0.002956,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211164,0.002956,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211164,0.002956,-0.003500,0.249976,0,0);}
.m110_c00322{transform:matrix(0.211939,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211939,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211939,0.002967,-0.003500,0.249976,0,0);}
.m6f_c00322{transform:matrix(0.212004,0.002968,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212004,0.002968,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212004,0.002968,-0.003500,0.249976,0,0);}
.m100_c00322{transform:matrix(0.212444,0.002974,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212444,0.002974,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212444,0.002974,-0.003500,0.249976,0,0);}
.m46_c00322{transform:matrix(0.212949,0.002981,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212949,0.002981,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212949,0.002981,-0.003500,0.249976,0,0);}
.m137_c00322{transform:matrix(0.213047,0.002770,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213047,0.002770,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213047,0.002770,-0.003250,0.249979,0,0);}
.m34_c00322{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);}
.m12d_c00322{transform:matrix(0.213574,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213574,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213574,0.002990,-0.003500,0.249976,0,0);}
.m6a_c00322{transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);}
.m10c_c00322{transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);}
.m96_c00322{transform:matrix(0.214769,0.003007,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214769,0.003007,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214769,0.003007,-0.003500,0.249976,0,0);}
.m32_c00322{transform:matrix(0.215054,0.003011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215054,0.003011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215054,0.003011,-0.003500,0.249976,0,0);}
.m134_c00322{transform:matrix(0.215084,0.003011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215084,0.003011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215084,0.003011,-0.003500,0.249976,0,0);}
.m107_c00322{transform:matrix(0.216034,0.003024,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216034,0.003024,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216034,0.003024,-0.003500,0.249976,0,0);}
.m50_c00322{transform:matrix(0.216674,0.003033,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216674,0.003033,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216674,0.003033,-0.003500,0.249976,0,0);}
.m136_c00322{transform:matrix(0.217489,0.003045,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217489,0.003045,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217489,0.003045,-0.003500,0.249976,0,0);}
.mf6_c00322{transform:matrix(0.217629,0.003047,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217629,0.003047,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217629,0.003047,-0.003500,0.249976,0,0);}
.mcb_c00322{transform:matrix(0.218054,0.003053,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218054,0.003053,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218054,0.003053,-0.003500,0.249976,0,0);}
.md2_c00322{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);}
.m8c_c00322{transform:matrix(0.218794,0.003063,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218794,0.003063,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218794,0.003063,-0.003500,0.249976,0,0);}
.m14a_c00322{transform:matrix(0.219641,0.002855,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219641,0.002855,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219641,0.002855,-0.003250,0.249979,0,0);}
.m5e_c00322{transform:matrix(0.219833,0.003078,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219833,0.003078,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219833,0.003078,-0.003500,0.249976,0,0);}
.m74_c00322{transform:matrix(0.219933,0.003079,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219933,0.003079,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219933,0.003079,-0.003500,0.249976,0,0);}
.md7_c00322{transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);}
.m139_c00322{transform:matrix(0.220056,0.002861,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220056,0.002861,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220056,0.002861,-0.003250,0.249979,0,0);}
.m111_c00322{transform:matrix(0.220383,0.003085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220383,0.003085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220383,0.003085,-0.003500,0.249976,0,0);}
.m7b_c00322{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);}
.m24_c00322{transform:matrix(0.220748,0.003090,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220748,0.003090,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220748,0.003090,-0.003500,0.249976,0,0);}
.m3d_c00322{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);}
.m102_c00322{transform:matrix(0.220958,0.003093,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220958,0.003093,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220958,0.003093,-0.003500,0.249976,0,0);}
.m11f_c00322{transform:matrix(0.223768,0.003133,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223768,0.003133,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223768,0.003133,-0.003500,0.249976,0,0);}
.m6d_c00322{transform:matrix(0.223848,0.003134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223848,0.003134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223848,0.003134,-0.003500,0.249976,0,0);}
.mff_c00322{transform:matrix(0.226903,0.003177,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226903,0.003177,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226903,0.003177,-0.003500,0.249976,0,0);}
.m13f_c00322{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);}
.m47_c00322{transform:matrix(0.230312,0.003224,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230312,0.003224,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230312,0.003224,-0.003500,0.249976,0,0);}
.m61_c00322{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);}
.ma8_c00322{transform:matrix(0.233997,0.003276,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233997,0.003276,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233997,0.003276,-0.003500,0.249976,0,0);}
.m132_c00322{transform:matrix(0.236062,0.003305,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236062,0.003305,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236062,0.003305,-0.003500,0.249976,0,0);}
.m7a_c00322{transform:matrix(0.237172,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237172,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237172,0.003320,-0.003500,0.249976,0,0);}
.ma5_c00322{transform:matrix(0.239537,0.003354,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239537,0.003354,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239537,0.003354,-0.003500,0.249976,0,0);}
.mc7_c00322{transform:matrix(0.240681,0.003370,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240681,0.003370,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240681,0.003370,-0.003500,0.249976,0,0);}
.m78_c00322{transform:matrix(0.241111,0.003376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241111,0.003376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241111,0.003376,-0.003500,0.249976,0,0);}
.mad_c00322{transform:matrix(0.241646,0.003383,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241646,0.003383,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241646,0.003383,-0.003500,0.249976,0,0);}
.m115_c00322{transform:matrix(0.241976,0.003388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241976,0.003388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241976,0.003388,-0.003500,0.249976,0,0);}
.m6e_c00322{transform:matrix(0.243086,0.003403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243086,0.003403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243086,0.003403,-0.003500,0.249976,0,0);}
.m21_c00322{transform:matrix(0.243391,0.003407,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243391,0.003407,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243391,0.003407,-0.003500,0.249976,0,0);}
.m72_c00322{transform:matrix(0.244461,0.003422,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244461,0.003422,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244461,0.003422,-0.003500,0.249976,0,0);}
.m112_c00322{transform:matrix(0.246771,0.003455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246771,0.003455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246771,0.003455,-0.003500,0.249976,0,0);}
.m13a_c00322{transform:matrix(0.251134,0.003265,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251134,0.003265,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251134,0.003265,-0.003250,0.249979,0,0);}
.m121_c00322{transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);}
.m7e_c00322{transform:matrix(0.253975,0.003556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253975,0.003556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253975,0.003556,-0.003500,0.249976,0,0);}
.m23_c00322{transform:matrix(0.254105,0.003557,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254105,0.003557,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254105,0.003557,-0.003500,0.249976,0,0);}
.mdd_c00322{transform:matrix(0.255800,0.003581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255800,0.003581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255800,0.003581,-0.003500,0.249976,0,0);}
.m68_c00322{transform:matrix(0.256070,0.003585,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256070,0.003585,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256070,0.003585,-0.003500,0.249976,0,0);}
.me9_c00322{transform:matrix(0.257660,0.003607,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257660,0.003607,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257660,0.003607,-0.003500,0.249976,0,0);}
.m6c_c00322{transform:matrix(0.257980,0.003612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257980,0.003612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257980,0.003612,-0.003500,0.249976,0,0);}
.m147_c00322{transform:matrix(0.260453,0.003386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260453,0.003386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260453,0.003386,-0.003250,0.249979,0,0);}
.m80_c00322{transform:matrix(0.264464,0.003702,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264464,0.003702,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264464,0.003702,-0.003500,0.249976,0,0);}
.me8_c00322{transform:matrix(0.266579,0.003732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266579,0.003732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266579,0.003732,-0.003500,0.249976,0,0);}
.mec_c00322{transform:matrix(0.267069,0.003739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267069,0.003739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267069,0.003739,-0.003500,0.249976,0,0);}
.m8_c00322{transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267465,0.000000,0.000000,0.250000,0,0);}
.mdc_c00322{transform:matrix(0.272408,0.003814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272408,0.003814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272408,0.003814,-0.003500,0.249976,0,0);}
.m13c_c00322{transform:matrix(0.274497,0.003568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274497,0.003568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274497,0.003568,-0.003250,0.249979,0,0);}
.m3b_c00322{transform:matrix(0.275588,0.003858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275588,0.003858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275588,0.003858,-0.003500,0.249976,0,0);}
.m49_c00322{transform:matrix(0.278158,0.003894,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278158,0.003894,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278158,0.003894,-0.003500,0.249976,0,0);}
.m9_c00322{transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311850,0.000000,0.000000,0.250000,0,0);}
.md4_c00322{transform:matrix(0.341287,0.004778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.341287,0.004778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.341287,0.004778,-0.003500,0.249976,0,0);}
.m48_c00322{transform:matrix(0.344111,0.004818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.344111,0.004818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.344111,0.004818,-0.003500,0.249976,0,0);}
.m79_c00322{transform:matrix(0.349596,0.004894,-0.003500,0.249976,0,0);-ms-transform:matrix(0.349596,0.004894,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.349596,0.004894,-0.003500,0.249976,0,0);}
.m2_c00322{transform:matrix(0.355775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355775,0.000000,0.000000,0.250000,0,0);}
.meb_c00322{transform:matrix(0.358115,0.005014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.358115,0.005014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.358115,0.005014,-0.003500,0.249976,0,0);}
.m14f_c00322{transform:matrix(0.392259,0.018062,-0.011499,0.249735,0,0);-ms-transform:matrix(0.392259,0.018062,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.392259,0.018062,-0.011499,0.249735,0,0);}
.m4_c00322{transform:matrix(0.396030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396030,0.000000,0.000000,0.250000,0,0);}
.m135_c00322{transform:matrix(0.397071,0.005559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.397071,0.005559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.397071,0.005559,-0.003500,0.249976,0,0);}
.m13d_c00322{transform:matrix(0.480384,0.006245,-0.003250,0.249979,0,0);-ms-transform:matrix(0.480384,0.006245,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.480384,0.006245,-0.003250,0.249979,0,0);}
.m6_c00322{transform:matrix(0.499170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499170,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.609805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609805,0.000000,0.000000,0.250000,0,0);}
.m14e_c00322{transform:matrix(0.706716,0.032541,-0.011499,0.249735,0,0);-ms-transform:matrix(0.706716,0.032541,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.706716,0.032541,-0.011499,0.249735,0,0);}
.m3_c00322{transform:matrix(0.867370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867370,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(1.057860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057860,0.000000,0.000000,0.250000,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;}
._0_c00322{width:35.754320px;}
.fc0_c00322{color:transparent;}
.fs8_c00322{font-size:51.454347px;}
.fs9_c00322{font-size:53.554525px;}
.fs0_c00322{font-size:67.200000px;}
.fs4_c00322{font-size:67.206585px;}
.fs7_c00322{font-size:68.256688px;}
.fs5_c00322{font-size:69.306791px;}
.fs3_c00322{font-size:70.356894px;}
.fs6_c00322{font-size:71.406997px;}
.fs2_c00322{font-size:72.457100px;}
.fsa_c00322{font-size:73.504300px;}
.fs1_c00322{font-size:106.050000px;}
.y0_c00322{bottom:0.000000px;}
.y14c_c00322{bottom:96.573285px;}
.y14b_c00322{bottom:103.179000px;}
.y14a_c00322{bottom:151.426371px;}
.y149_c00322{bottom:151.872261px;}
.y148_c00322{bottom:152.086079px;}
.y147_c00322{bottom:152.401002px;}
.y146_c00322{bottom:152.677600px;}
.y145_c00322{bottom:153.156374px;}
.y144_c00322{bottom:153.438336px;}
.y143_c00322{bottom:153.648995px;}
.y142_c00322{bottom:154.168823px;}
.y141_c00322{bottom:165.171096px;}
.y140_c00322{bottom:165.579172px;}
.y13f_c00322{bottom:166.182756px;}
.y13e_c00322{bottom:166.572561px;}
.y13d_c00322{bottom:166.898835px;}
.y13c_c00322{bottom:167.615733px;}
.y13b_c00322{bottom:168.207967px;}
.y13a_c00322{bottom:168.396981px;}
.y139_c00322{bottom:168.766818px;}
.y138_c00322{bottom:169.313598px;}
.y137_c00322{bottom:169.685756px;}
.y136_c00322{bottom:170.272608px;}
.y135_c00322{bottom:170.661769px;}
.y134_c00322{bottom:171.451500px;}
.y131_c00322{bottom:218.442498px;}
.y132_c00322{bottom:218.442963px;}
.y133_c00322{bottom:218.443344px;}
.y130_c00322{bottom:238.053987px;}
.y12f_c00322{bottom:238.404198px;}
.y12e_c00322{bottom:238.574796px;}
.y12d_c00322{bottom:238.996560px;}
.y12c_c00322{bottom:239.285415px;}
.y12b_c00322{bottom:239.726244px;}
.y12a_c00322{bottom:240.131139px;}
.y129_c00322{bottom:240.574143px;}
.y128_c00322{bottom:240.898680px;}
.y127_c00322{bottom:241.328826px;}
.y126_c00322{bottom:242.136672px;}
.y125_c00322{bottom:261.016047px;}
.y124_c00322{bottom:261.431853px;}
.y123_c00322{bottom:261.708693px;}
.y122_c00322{bottom:262.157454px;}
.y121_c00322{bottom:263.230698px;}
.y120_c00322{bottom:263.523858px;}
.y11f_c00322{bottom:263.666712px;}
.y11e_c00322{bottom:263.824656px;}
.y11d_c00322{bottom:264.367041px;}
.y11c_c00322{bottom:264.561699px;}
.y11b_c00322{bottom:282.803394px;}
.y11a_c00322{bottom:283.216398px;}
.y119_c00322{bottom:283.822353px;}
.y118_c00322{bottom:284.246082px;}
.y117_c00322{bottom:284.884938px;}
.y116_c00322{bottom:285.082491px;}
.y115_c00322{bottom:285.406545px;}
.y114_c00322{bottom:285.817500px;}
.y113_c00322{bottom:286.180188px;}
.y112_c00322{bottom:286.677624px;}
.y111_c00322{bottom:287.031846px;}
.y110_c00322{bottom:287.234325px;}
.y10f_c00322{bottom:305.637246px;}
.y10e_c00322{bottom:306.348516px;}
.y10d_c00322{bottom:306.928674px;}
.y10c_c00322{bottom:307.046574px;}
.y10b_c00322{bottom:307.670859px;}
.y10a_c00322{bottom:308.683275px;}
.y109_c00322{bottom:309.134493px;}
.y108_c00322{bottom:309.545070px;}
.y107_c00322{bottom:310.188756px;}
.y106_c00322{bottom:328.483566px;}
.y105_c00322{bottom:328.892652px;}
.y104_c00322{bottom:329.266419px;}
.y103_c00322{bottom:329.491875px;}
.y102_c00322{bottom:329.816727px;}
.y101_c00322{bottom:330.262932px;}
.y100_c00322{bottom:330.466473px;}
.yff_c00322{bottom:330.625068px;}
.yfe_c00322{bottom:330.790566px;}
.yfd_c00322{bottom:331.138215px;}
.yfc_c00322{bottom:331.692093px;}
.yfb_c00322{bottom:332.039784px;}
.yfa_c00322{bottom:332.598369px;}
.yf9_c00322{bottom:352.008348px;}
.yf8_c00322{bottom:352.422297px;}
.yf7_c00322{bottom:353.202738px;}
.yf6_c00322{bottom:353.774661px;}
.yf5_c00322{bottom:354.050784px;}
.yf4_c00322{bottom:354.841761px;}
.yf3_c00322{bottom:354.985122px;}
.yf2_c00322{bottom:355.414617px;}
.yf1_c00322{bottom:355.911204px;}
.yf0_c00322{bottom:356.295153px;}
.yef_c00322{bottom:356.632695px;}
.yee_c00322{bottom:374.332887px;}
.yed_c00322{bottom:375.168690px;}
.yec_c00322{bottom:375.637971px;}
.yeb_c00322{bottom:375.878031px;}
.yea_c00322{bottom:376.370049px;}
.ye9_c00322{bottom:377.037162px;}
.ye8_c00322{bottom:377.317128px;}
.ye7_c00322{bottom:377.721225px;}
.ye6_c00322{bottom:377.919015px;}
.ye5_c00322{bottom:378.198204px;}
.ye4_c00322{bottom:378.784338px;}
.ye3_c00322{bottom:379.104705px;}
.ye2_c00322{bottom:379.584750px;}
.ye1_c00322{bottom:397.496136px;}
.ye0_c00322{bottom:397.786971px;}
.ydf_c00322{bottom:398.175168px;}
.yde_c00322{bottom:398.938695px;}
.ydd_c00322{bottom:399.422793px;}
.ydc_c00322{bottom:399.612243px;}
.ydb_c00322{bottom:400.061640px;}
.yda_c00322{bottom:400.269219px;}
.yd9_c00322{bottom:400.513788px;}
.yd8_c00322{bottom:400.934481px;}
.yd7_c00322{bottom:401.349765px;}
.yd6_c00322{bottom:401.622588px;}
.yd5_c00322{bottom:402.263673px;}
.yd4_c00322{bottom:419.808420px;}
.yd3_c00322{bottom:420.201981px;}
.yd2_c00322{bottom:420.602934px;}
.yd1_c00322{bottom:421.139757px;}
.yd0_c00322{bottom:421.430586px;}
.ycf_c00322{bottom:422.326614px;}
.yce_c00322{bottom:423.793527px;}
.ycd_c00322{bottom:424.129863px;}
.ycc_c00322{bottom:424.946952px;}
.ycb_c00322{bottom:425.486967px;}
.yca_c00322{bottom:443.021175px;}
.yc9_c00322{bottom:443.912868px;}
.yc8_c00322{bottom:444.326679px;}
.yc7_c00322{bottom:445.111422px;}
.yc6_c00322{bottom:445.286391px;}
.yc5_c00322{bottom:445.546089px;}
.yc4_c00322{bottom:446.091213px;}
.yc3_c00322{bottom:446.982318px;}
.yc2_c00322{bottom:447.296541px;}
.yc1_c00322{bottom:447.630402px;}
.yc0_c00322{bottom:464.596917px;}
.ybf_c00322{bottom:465.060969px;}
.ybe_c00322{bottom:465.466920px;}
.ybd_c00322{bottom:465.780201px;}
.ybc_c00322{bottom:466.260624px;}
.ybb_c00322{bottom:466.738074px;}
.yba_c00322{bottom:467.063988px;}
.yb9_c00322{bottom:467.900178px;}
.yb8_c00322{bottom:468.514380px;}
.yb7_c00322{bottom:468.819807px;}
.yb6_c00322{bottom:469.437171px;}
.yb5_c00322{bottom:469.886658px;}
.yb4_c00322{bottom:470.581140px;}
.yb3_c00322{bottom:488.005707px;}
.yb2_c00322{bottom:488.566059px;}
.yb1_c00322{bottom:489.380595px;}
.yb0_c00322{bottom:490.158774px;}
.yaf_c00322{bottom:490.451079px;}
.yae_c00322{bottom:491.124672px;}
.yad_c00322{bottom:491.883318px;}
.yac_c00322{bottom:492.045444px;}
.yab_c00322{bottom:492.713061px;}
.yaa_c00322{bottom:492.995484px;}
.ya9_c00322{bottom:510.087453px;}
.ya8_c00322{bottom:511.144422px;}
.ya7_c00322{bottom:511.579089px;}
.ya6_c00322{bottom:511.867446px;}
.ya5_c00322{bottom:512.213469px;}
.ya4_c00322{bottom:513.123792px;}
.ya3_c00322{bottom:513.406446px;}
.ya2_c00322{bottom:514.423950px;}
.ya1_c00322{bottom:515.087304px;}
.ya0_c00322{bottom:515.334735px;}
.y9f_c00322{bottom:515.677659px;}
.y9e_c00322{bottom:533.738193px;}
.y9d_c00322{bottom:534.000033px;}
.y9c_c00322{bottom:534.664689px;}
.y9b_c00322{bottom:534.805581px;}
.y9a_c00322{bottom:535.548402px;}
.y99_c00322{bottom:535.823139px;}
.y98_c00322{bottom:536.273013px;}
.y97_c00322{bottom:536.548338px;}
.y96_c00322{bottom:537.267582px;}
.y95_c00322{bottom:537.812622px;}
.y94_c00322{bottom:538.033914px;}
.y93_c00322{bottom:538.327512px;}
.y92_c00322{bottom:538.597491px;}
.y91_c00322{bottom:538.899195px;}
.y90_c00322{bottom:555.235194px;}
.y8f_c00322{bottom:556.234920px;}
.y8e_c00322{bottom:556.888965px;}
.y8d_c00322{bottom:557.153481px;}
.y8c_c00322{bottom:557.474865px;}
.y8b_c00322{bottom:558.442671px;}
.y8a_c00322{bottom:559.569048px;}
.y89_c00322{bottom:560.011266px;}
.y88_c00322{bottom:560.884635px;}
.y87_c00322{bottom:561.860253px;}
.y86_c00322{bottom:578.286300px;}
.y85_c00322{bottom:579.065148px;}
.y84_c00322{bottom:579.647103px;}
.y83_c00322{bottom:579.848616px;}
.y82_c00322{bottom:580.640232px;}
.y81_c00322{bottom:582.044745px;}
.y80_c00322{bottom:582.502011px;}
.y7f_c00322{bottom:582.961923px;}
.y7e_c00322{bottom:584.263521px;}
.y7d_c00322{bottom:600.591021px;}
.y7c_c00322{bottom:601.041108px;}
.y7b_c00322{bottom:602.042421px;}
.y79_c00322{bottom:602.634789px;}
.y7a_c00322{bottom:602.679627px;}
.y78_c00322{bottom:603.434181px;}
.y77_c00322{bottom:603.708246px;}
.y76_c00322{bottom:604.360422px;}
.y75_c00322{bottom:604.421280px;}
.y74_c00322{bottom:605.273604px;}
.y73_c00322{bottom:606.242457px;}
.y72_c00322{bottom:606.745917px;}
.y71_c00322{bottom:607.118496px;}
.y70_c00322{bottom:607.880493px;}
.y6f_c00322{bottom:608.026743px;}
.y6e_c00322{bottom:622.304058px;}
.y6d_c00322{bottom:623.523249px;}
.y6c_c00322{bottom:624.136551px;}
.y6b_c00322{bottom:625.241433px;}
.y6a_c00322{bottom:625.566420px;}
.y69_c00322{bottom:625.959795px;}
.y68_c00322{bottom:626.792625px;}
.y67_c00322{bottom:627.984993px;}
.y66_c00322{bottom:628.430211px;}
.y65_c00322{bottom:629.370894px;}
.y64_c00322{bottom:629.899146px;}
.y63_c00322{bottom:646.270521px;}
.y62_c00322{bottom:646.887372px;}
.y61_c00322{bottom:647.332464px;}
.y60_c00322{bottom:648.011529px;}
.y5f_c00322{bottom:648.372915px;}
.y5e_c00322{bottom:648.965472px;}
.y5d_c00322{bottom:649.340496px;}
.y5c_c00322{bottom:649.776297px;}
.y5b_c00322{bottom:650.497725px;}
.y5a_c00322{bottom:651.940623px;}
.y59_c00322{bottom:652.233747px;}
.y58_c00322{bottom:652.847112px;}
.y57_c00322{bottom:669.008817px;}
.y56_c00322{bottom:669.375957px;}
.y55_c00322{bottom:669.918708px;}
.y54_c00322{bottom:670.709190px;}
.y53_c00322{bottom:671.127093px;}
.y52_c00322{bottom:671.721690px;}
.y51_c00322{bottom:672.823455px;}
.y50_c00322{bottom:673.479357px;}
.y4f_c00322{bottom:673.856523px;}
.y4e_c00322{bottom:674.410980px;}
.y4d_c00322{bottom:675.258882px;}
.y4c_c00322{bottom:692.034861px;}
.y4b_c00322{bottom:692.711838px;}
.y4a_c00322{bottom:693.209598px;}
.y49_c00322{bottom:693.564399px;}
.y48_c00322{bottom:694.413327px;}
.y47_c00322{bottom:694.836972px;}
.y46_c00322{bottom:695.754102px;}
.y45_c00322{bottom:696.084930px;}
.y44_c00322{bottom:696.793881px;}
.y43_c00322{bottom:697.482051px;}
.y42_c00322{bottom:697.939392px;}
.y41_c00322{bottom:714.060240px;}
.y40_c00322{bottom:714.665154px;}
.y3f_c00322{bottom:715.507464px;}
.y3e_c00322{bottom:715.761837px;}
.y3d_c00322{bottom:716.988525px;}
.y3c_c00322{bottom:717.337197px;}
.y3b_c00322{bottom:717.929586px;}
.y3a_c00322{bottom:718.732473px;}
.y39_c00322{bottom:719.480421px;}
.y38_c00322{bottom:720.335382px;}
.y37_c00322{bottom:721.160820px;}
.y36_c00322{bottom:735.804723px;}
.y35_c00322{bottom:736.737972px;}
.y34_c00322{bottom:737.520408px;}
.y33_c00322{bottom:737.933280px;}
.y32_c00322{bottom:738.518466px;}
.y31_c00322{bottom:738.844881px;}
.y30_c00322{bottom:739.524912px;}
.y2f_c00322{bottom:740.493258px;}
.y2e_c00322{bottom:740.843085px;}
.y2d_c00322{bottom:741.525741px;}
.y2c_c00322{bottom:741.913059px;}
.y2b_c00322{bottom:742.545636px;}
.y2a_c00322{bottom:742.891431px;}
.y29_c00322{bottom:743.575431px;}
.y28_c00322{bottom:759.350988px;}
.y27_c00322{bottom:759.683574px;}
.y26_c00322{bottom:760.290948px;}
.y25_c00322{bottom:761.368701px;}
.y24_c00322{bottom:762.041223px;}
.y23_c00322{bottom:763.317633px;}
.y22_c00322{bottom:764.164611px;}
.y21_c00322{bottom:764.618202px;}
.y20_c00322{bottom:765.070428px;}
.y1f_c00322{bottom:765.500532px;}
.y1e_c00322{bottom:765.986334px;}
.y1d_c00322{bottom:782.181063px;}
.y1c_c00322{bottom:782.723520px;}
.y1b_c00322{bottom:783.201123px;}
.y1a_c00322{bottom:783.633243px;}
.y19_c00322{bottom:784.258266px;}
.y18_c00322{bottom:785.136249px;}
.y17_c00322{bottom:785.727171px;}
.y16_c00322{bottom:785.896944px;}
.y15_c00322{bottom:786.588060px;}
.y14_c00322{bottom:786.822342px;}
.y13_c00322{bottom:787.126926px;}
.y12_c00322{bottom:788.399493px;}
.y11_c00322{bottom:788.683614px;}
.y10_c00322{bottom:804.784644px;}
.yf_c00322{bottom:805.707447px;}
.ye_c00322{bottom:806.116380px;}
.yd_c00322{bottom:806.519097px;}
.yc_c00322{bottom:807.218649px;}
.yb_c00322{bottom:808.539759px;}
.ya_c00322{bottom:809.011146px;}
.y9_c00322{bottom:809.294625px;}
.y8_c00322{bottom:809.519703px;}
.y7_c00322{bottom:810.468000px;}
.y6_c00322{bottom:849.151500px;}
.y5_c00322{bottom:849.576000px;}
.y4_c00322{bottom:851.145000px;}
.y3_c00322{bottom:851.871000px;}
.y2_c00322{bottom:852.933000px;}
.y1_c00322{bottom:909.891000px;}
.hb_c00322{height:51.454347px;}
.hc_c00322{height:53.554525px;}
.h2_c00322{height:67.200000px;}
.h6_c00322{height:67.206585px;}
.ha_c00322{height:67.734637px;}
.h9_c00322{height:68.256688px;}
.h7_c00322{height:69.306791px;}
.h5_c00322{height:70.356894px;}
.h8_c00322{height:71.406997px;}
.h4_c00322{height:72.457100px;}
.hd_c00322{height:73.504300px;}
.h3_c00322{height:106.050000px;}
.h1_c00322{height:1005.000000px;}
.h0_c00322{height:1005.150000px;}
.w0_c00322{width:702.540000px;}
.w1_c00322{width:702.750000px;}
.x0_c00322{left:0.000000px;}
.x53_c00322{left:70.542624px;}
.x21_c00322{left:72.497508px;}
.xaa_c00322{left:75.998736px;}
.x90_c00322{left:77.595945px;}
.x54_c00322{left:79.167267px;}
.x15_c00322{left:80.796834px;}
.x5c_c00322{left:98.088402px;}
.x16_c00322{left:99.698061px;}
.x70_c00322{left:102.447801px;}
.xc_c00322{left:105.007500px;}
.x3c_c00322{left:107.279952px;}
.x94_c00322{left:112.462287px;}
.x83_c00322{left:118.045818px;}
.x4a_c00322{left:119.134923px;}
.xb5_c00322{left:120.732000px;}
.x2a_c00322{left:123.998835px;}
.x63_c00322{left:127.344657px;}
.x22_c00322{left:133.525647px;}
.x43_c00322{left:137.039352px;}
.x99_c00322{left:140.011677px;}
.x9d_c00322{left:142.748349px;}
.x91_c00322{left:144.305814px;}
.x2b_c00322{left:145.590726px;}
.x61_c00322{left:148.870113px;}
.x95_c00322{left:150.817929px;}
.x64_c00322{left:151.852350px;}
.xab_c00322{left:156.742251px;}
.x71_c00322{left:158.064855px;}
.x3d_c00322{left:160.185687px;}
.x8a_c00322{left:161.594556px;}
.x23_c00322{left:163.684227px;}
.x77_c00322{left:167.519754px;}
.x65_c00322{left:170.230854px;}
.x72_c00322{left:171.574233px;}
.xd_c00322{left:172.743000px;}
.x44_c00322{left:173.964327px;}
.x55_c00322{left:175.487214px;}
.x35_c00322{left:176.646462px;}
.x9a_c00322{left:178.670886px;}
.x6a_c00322{left:183.454068px;}
.x17_c00322{left:184.487364px;}
.xe_c00322{left:188.820000px;}
.x4e_c00322{left:191.220633px;}
.x24_c00322{left:193.940307px;}
.x45_c00322{left:199.082970px;}
.x84_c00322{left:200.433318px;}
.x18_c00322{left:204.743070px;}
.x7e_c00322{left:206.947701px;}
.xf_c00322{left:209.068500px;}
.x8_c00322{left:210.672000px;}
.xb3_c00322{left:213.243714px;}
.x3e_c00322{left:214.682943px;}
.x1_c00322{left:216.810000px;}
.x19_c00322{left:220.405860px;}
.x36_c00322{left:223.427160px;}
.x4b_c00322{left:227.704899px;}
.x9e_c00322{left:228.845658px;}
.x56_c00322{left:232.474320px;}
.x73_c00322{left:234.764997px;}
.x78_c00322{left:238.577262px;}
.x3f_c00322{left:240.135300px;}
.x10_c00322{left:242.739000px;}
.x5d_c00322{left:246.070344px;}
.x25_c00322{left:250.366509px;}
.x2c_c00322{left:251.984244px;}
.x96_c00322{left:257.748414px;}
.x8b_c00322{left:259.887693px;}
.xa2_c00322{left:260.971143px;}
.xb6_c00322{left:264.190898px;}
.x1a_c00322{left:266.449209px;}
.x6b_c00322{left:268.242441px;}
.x4c_c00322{left:272.805639px;}
.x2d_c00322{left:273.864135px;}
.x66_c00322{left:275.539794px;}
.x1b_c00322{left:277.718541px;}
.x8c_c00322{left:278.786991px;}
.x57_c00322{left:282.638220px;}
.xae_c00322{left:285.217500px;}
.x2_c00322{left:286.740000px;}
.x7f_c00322{left:288.506469px;}
.x92_c00322{left:289.893888px;}
.x6c_c00322{left:291.754092px;}
.xa3_c00322{left:293.333949px;}
.x9b_c00322{left:297.216681px;}
.x9_c00322{left:299.223000px;}
.x85_c00322{left:305.212818px;}
.x37_c00322{left:310.658724px;}
.xa4_c00322{left:313.124562px;}
.x74_c00322{left:315.224244px;}
.x1c_c00322{left:317.140995px;}
.x8d_c00322{left:319.674213px;}
.x3_c00322{left:324.000000px;}
.xb4_c00322{left:326.918159px;}
.xaf_c00322{left:328.206000px;}
.x9f_c00322{left:330.095328px;}
.x38_c00322{left:332.456115px;}
.x2e_c00322{left:334.351434px;}
.x26_c00322{left:335.430312px;}
.x11_c00322{left:337.104000px;}
.x58_c00322{left:340.714284px;}
.x40_c00322{left:343.299249px;}
.x93_c00322{left:345.474942px;}
.x79_c00322{left:350.106816px;}
.x80_c00322{left:353.882796px;}
.x46_c00322{left:355.956786px;}
.xa_c00322{left:359.665500px;}
.xac_c00322{left:360.890154px;}
.x4f_c00322{left:362.755845px;}
.x4_c00322{left:365.040000px;}
.x6d_c00322{left:367.600713px;}
.x86_c00322{left:369.214818px;}
.xb0_c00322{left:373.762500px;}
.x1d_c00322{left:375.674676px;}
.x2f_c00322{left:376.816737px;}
.xa8_c00322{left:377.925138px;}
.x27_c00322{left:380.252682px;}
.x47_c00322{left:383.770887px;}
.x59_c00322{left:385.073415px;}
.x12_c00322{left:387.072000px;}
.x81_c00322{left:388.370262px;}
.x87_c00322{left:389.988318px;}
.x5e_c00322{left:392.541807px;}
.x30_c00322{left:397.238670px;}
.xa0_c00322{left:404.326986px;}
.x5f_c00322{left:405.971118px;}
.x39_c00322{left:409.145973px;}
.x7a_c00322{left:411.883677px;}
.x13_c00322{left:415.837500px;}
.x1e_c00322{left:417.318588px;}
.xa5_c00322{left:419.458026px;}
.x67_c00322{left:420.919389px;}
.x5a_c00322{left:422.550840px;}
.x3a_c00322{left:425.065032px;}
.x88_c00322{left:428.332818px;}
.x50_c00322{left:431.816913px;}
.x31_c00322{left:433.786641px;}
.x41_c00322{left:435.924051px;}
.x5_c00322{left:440.640000px;}
.x60_c00322{left:444.753072px;}
.x6_c00322{left:445.770000px;}
.x75_c00322{left:447.850440px;}
.x7b_c00322{left:448.878702px;}
.x8e_c00322{left:450.292194px;}
.x28_c00322{left:452.091174px;}
.x4d_c00322{left:453.438099px;}
.x6e_c00322{left:456.713712px;}
.x32_c00322{left:459.633927px;}
.x82_c00322{left:462.671841px;}
.xa9_c00322{left:468.654261px;}
.x51_c00322{left:470.158842px;}
.x48_c00322{left:472.679148px;}
.x42_c00322{left:474.264597px;}
.x1f_c00322{left:478.012248px;}
.xa6_c00322{left:479.993907px;}
.x5b_c00322{left:481.427862px;}
.xad_c00322{left:483.999042px;}
.x89_c00322{left:485.083818px;}
.x68_c00322{left:488.103279px;}
.xb_c00322{left:490.429500px;}
.x29_c00322{left:492.581607px;}
.x76_c00322{left:494.519742px;}
.x49_c00322{left:497.188812px;}
.x97_c00322{left:499.687959px;}
.x7c_c00322{left:504.217479px;}
.x33_c00322{left:508.556562px;}
.x69_c00322{left:509.913888px;}
.x14_c00322{left:510.961500px;}
.x8f_c00322{left:512.082798px;}
.x20_c00322{left:514.187244px;}
.x3b_c00322{left:515.578512px;}
.xa7_c00322{left:521.282217px;}
.x7_c00322{left:526.230000px;}
.xb1_c00322{left:530.421000px;}
.xa1_c00322{left:533.436210px;}
.x9c_c00322{left:535.376376px;}
.x7d_c00322{left:539.935983px;}
.x98_c00322{left:541.043769px;}
.x6f_c00322{left:544.749669px;}
.x52_c00322{left:546.313200px;}
.x62_c00322{left:552.401613px;}
.xb2_c00322{left:561.811500px;}
.x34_c00322{left:566.858424px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
._0_c00322{width:31.781618pt;}
.fs8_c00322{font-size:45.737198pt;}
.fs9_c00322{font-size:47.604022pt;}
.fs0_c00322{font-size:59.733333pt;}
.fs4_c00322{font-size:59.739187pt;}
.fs7_c00322{font-size:60.672612pt;}
.fs5_c00322{font-size:61.606037pt;}
.fs3_c00322{font-size:62.539461pt;}
.fs6_c00322{font-size:63.472886pt;}
.fs2_c00322{font-size:64.406311pt;}
.fsa_c00322{font-size:65.337155pt;}
.fs1_c00322{font-size:94.266667pt;}
.y0_c00322{bottom:0.000000pt;}
.y14c_c00322{bottom:85.842920pt;}
.y14b_c00322{bottom:91.714667pt;}
.y14a_c00322{bottom:134.601219pt;}
.y149_c00322{bottom:134.997565pt;}
.y148_c00322{bottom:135.187625pt;}
.y147_c00322{bottom:135.467557pt;}
.y146_c00322{bottom:135.713423pt;}
.y145_c00322{bottom:136.138999pt;}
.y144_c00322{bottom:136.389632pt;}
.y143_c00322{bottom:136.576884pt;}
.y142_c00322{bottom:137.038953pt;}
.y141_c00322{bottom:146.818752pt;}
.y140_c00322{bottom:147.181487pt;}
.y13f_c00322{bottom:147.718005pt;}
.y13e_c00322{bottom:148.064499pt;}
.y13d_c00322{bottom:148.354520pt;}
.y13c_c00322{bottom:148.991763pt;}
.y13b_c00322{bottom:149.518193pt;}
.y13a_c00322{bottom:149.686205pt;}
.y139_c00322{bottom:150.014949pt;}
.y138_c00322{bottom:150.500976pt;}
.y137_c00322{bottom:150.831783pt;}
.y136_c00322{bottom:151.353429pt;}
.y135_c00322{bottom:151.699351pt;}
.y134_c00322{bottom:152.401333pt;}
.y131_c00322{bottom:194.171109pt;}
.y132_c00322{bottom:194.171523pt;}
.y133_c00322{bottom:194.171861pt;}
.y130_c00322{bottom:211.603544pt;}
.y12f_c00322{bottom:211.914843pt;}
.y12e_c00322{bottom:212.066485pt;}
.y12d_c00322{bottom:212.441387pt;}
.y12c_c00322{bottom:212.698147pt;}
.y12b_c00322{bottom:213.089995pt;}
.y12a_c00322{bottom:213.449901pt;}
.y129_c00322{bottom:213.843683pt;}
.y128_c00322{bottom:214.132160pt;}
.y127_c00322{bottom:214.514512pt;}
.y126_c00322{bottom:215.232597pt;}
.y125_c00322{bottom:232.014264pt;}
.y124_c00322{bottom:232.383869pt;}
.y123_c00322{bottom:232.629949pt;}
.y122_c00322{bottom:233.028848pt;}
.y121_c00322{bottom:233.982843pt;}
.y120_c00322{bottom:234.243429pt;}
.y11f_c00322{bottom:234.370411pt;}
.y11e_c00322{bottom:234.510805pt;}
.y11d_c00322{bottom:234.992925pt;}
.y11c_c00322{bottom:235.165955pt;}
.y11b_c00322{bottom:251.380795pt;}
.y11a_c00322{bottom:251.747909pt;}
.y119_c00322{bottom:252.286536pt;}
.y118_c00322{bottom:252.663184pt;}
.y117_c00322{bottom:253.231056pt;}
.y116_c00322{bottom:253.406659pt;}
.y115_c00322{bottom:253.694707pt;}
.y114_c00322{bottom:254.060000pt;}
.y113_c00322{bottom:254.382389pt;}
.y112_c00322{bottom:254.824555pt;}
.y111_c00322{bottom:255.139419pt;}
.y110_c00322{bottom:255.319400pt;}
.y10f_c00322{bottom:271.677552pt;}
.y10e_c00322{bottom:272.309792pt;}
.y10d_c00322{bottom:272.825488pt;}
.y10c_c00322{bottom:272.930288pt;}
.y10b_c00322{bottom:273.485208pt;}
.y10a_c00322{bottom:274.385133pt;}
.y109_c00322{bottom:274.786216pt;}
.y108_c00322{bottom:275.151173pt;}
.y107_c00322{bottom:275.723339pt;}
.y106_c00322{bottom:291.985392pt;}
.y105_c00322{bottom:292.349024pt;}
.y104_c00322{bottom:292.681261pt;}
.y103_c00322{bottom:292.881667pt;}
.y102_c00322{bottom:293.170424pt;}
.y101_c00322{bottom:293.567051pt;}
.y100_c00322{bottom:293.747976pt;}
.yff_c00322{bottom:293.888949pt;}
.yfe_c00322{bottom:294.036059pt;}
.yfd_c00322{bottom:294.345080pt;}
.yfc_c00322{bottom:294.837416pt;}
.yfb_c00322{bottom:295.146475pt;}
.yfa_c00322{bottom:295.642995pt;}
.yf9_c00322{bottom:312.896309pt;}
.yf8_c00322{bottom:313.264264pt;}
.yf7_c00322{bottom:313.957989pt;}
.yf6_c00322{bottom:314.466365pt;}
.yf5_c00322{bottom:314.711808pt;}
.yf4_c00322{bottom:315.414899pt;}
.yf3_c00322{bottom:315.542331pt;}
.yf2_c00322{bottom:315.924104pt;}
.yf1_c00322{bottom:316.365515pt;}
.yf0_c00322{bottom:316.706803pt;}
.yef_c00322{bottom:317.006840pt;}
.yee_c00322{bottom:332.740344pt;}
.yed_c00322{bottom:333.483280pt;}
.yec_c00322{bottom:333.900419pt;}
.yeb_c00322{bottom:334.113805pt;}
.yea_c00322{bottom:334.551155pt;}
.ye9_c00322{bottom:335.144144pt;}
.ye8_c00322{bottom:335.393003pt;}
.ye7_c00322{bottom:335.752200pt;}
.ye6_c00322{bottom:335.928013pt;}
.ye5_c00322{bottom:336.176181pt;}
.ye4_c00322{bottom:336.697189pt;}
.ye3_c00322{bottom:336.981960pt;}
.ye2_c00322{bottom:337.408667pt;}
.ye1_c00322{bottom:353.329899pt;}
.ye0_c00322{bottom:353.588419pt;}
.ydf_c00322{bottom:353.933483pt;}
.yde_c00322{bottom:354.612173pt;}
.ydd_c00322{bottom:355.042483pt;}
.ydc_c00322{bottom:355.210883pt;}
.ydb_c00322{bottom:355.610347pt;}
.yda_c00322{bottom:355.794861pt;}
.yd9_c00322{bottom:356.012256pt;}
.yd8_c00322{bottom:356.386205pt;}
.yd7_c00322{bottom:356.755347pt;}
.yd6_c00322{bottom:356.997856pt;}
.yd5_c00322{bottom:357.567709pt;}
.yd4_c00322{bottom:373.163040pt;}
.yd3_c00322{bottom:373.512872pt;}
.yd2_c00322{bottom:373.869275pt;}
.yd1_c00322{bottom:374.346451pt;}
.yd0_c00322{bottom:374.604965pt;}
.ycf_c00322{bottom:375.401435pt;}
.yce_c00322{bottom:376.705357pt;}
.ycd_c00322{bottom:377.004323pt;}
.ycc_c00322{bottom:377.730624pt;}
.ycb_c00322{bottom:378.210637pt;}
.yca_c00322{bottom:393.796600pt;}
.yc9_c00322{bottom:394.589216pt;}
.yc8_c00322{bottom:394.957048pt;}
.yc7_c00322{bottom:395.654597pt;}
.yc6_c00322{bottom:395.810125pt;}
.yc5_c00322{bottom:396.040968pt;}
.yc4_c00322{bottom:396.525523pt;}
.yc3_c00322{bottom:397.317616pt;}
.yc2_c00322{bottom:397.596925pt;}
.yc1_c00322{bottom:397.893691pt;}
.yc0_c00322{bottom:412.975037pt;}
.ybf_c00322{bottom:413.387528pt;}
.ybe_c00322{bottom:413.748373pt;}
.ybd_c00322{bottom:414.026845pt;}
.ybc_c00322{bottom:414.453888pt;}
.ybb_c00322{bottom:414.878288pt;}
.yba_c00322{bottom:415.167989pt;}
.yb9_c00322{bottom:415.911269pt;}
.yb8_c00322{bottom:416.457227pt;}
.yb7_c00322{bottom:416.728717pt;}
.yb6_c00322{bottom:417.277485pt;}
.yb5_c00322{bottom:417.677029pt;}
.yb4_c00322{bottom:418.294347pt;}
.yb3_c00322{bottom:433.782851pt;}
.yb2_c00322{bottom:434.280941pt;}
.yb1_c00322{bottom:435.004973pt;}
.yb0_c00322{bottom:435.696688pt;}
.yaf_c00322{bottom:435.956515pt;}
.yae_c00322{bottom:436.555264pt;}
.yad_c00322{bottom:437.229616pt;}
.yac_c00322{bottom:437.373728pt;}
.yab_c00322{bottom:437.967165pt;}
.yaa_c00322{bottom:438.218208pt;}
.ya9_c00322{bottom:453.411069pt;}
.ya8_c00322{bottom:454.350597pt;}
.ya7_c00322{bottom:454.736968pt;}
.ya6_c00322{bottom:454.993285pt;}
.ya5_c00322{bottom:455.300861pt;}
.ya4_c00322{bottom:456.110037pt;}
.ya3_c00322{bottom:456.361285pt;}
.ya2_c00322{bottom:457.265733pt;}
.ya1_c00322{bottom:457.855381pt;}
.ya0_c00322{bottom:458.075320pt;}
.y9f_c00322{bottom:458.380141pt;}
.y9e_c00322{bottom:474.433949pt;}
.y9d_c00322{bottom:474.666696pt;}
.y9c_c00322{bottom:475.257501pt;}
.y9b_c00322{bottom:475.382739pt;}
.y9a_c00322{bottom:476.043024pt;}
.y99_c00322{bottom:476.287235pt;}
.y98_c00322{bottom:476.687123pt;}
.y97_c00322{bottom:476.931856pt;}
.y96_c00322{bottom:477.571184pt;}
.y95_c00322{bottom:478.055664pt;}
.y94_c00322{bottom:478.252368pt;}
.y93_c00322{bottom:478.513344pt;}
.y92_c00322{bottom:478.753325pt;}
.y91_c00322{bottom:479.021507pt;}
.y90_c00322{bottom:493.542395pt;}
.y8f_c00322{bottom:494.431040pt;}
.y8e_c00322{bottom:495.012413pt;}
.y8d_c00322{bottom:495.247539pt;}
.y8c_c00322{bottom:495.533213pt;}
.y8b_c00322{bottom:496.393485pt;}
.y8a_c00322{bottom:497.394709pt;}
.y89_c00322{bottom:497.787792pt;}
.y88_c00322{bottom:498.564120pt;}
.y87_c00322{bottom:499.431336pt;}
.y86_c00322{bottom:514.032267pt;}
.y85_c00322{bottom:514.724576pt;}
.y84_c00322{bottom:515.241869pt;}
.y83_c00322{bottom:515.420992pt;}
.y82_c00322{bottom:516.124651pt;}
.y81_c00322{bottom:517.373107pt;}
.y80_c00322{bottom:517.779565pt;}
.y7f_c00322{bottom:518.188376pt;}
.y7e_c00322{bottom:519.345352pt;}
.y7d_c00322{bottom:533.858685pt;}
.y7c_c00322{bottom:534.258763pt;}
.y7b_c00322{bottom:535.148819pt;}
.y79_c00322{bottom:535.675368pt;}
.y7a_c00322{bottom:535.715224pt;}
.y78_c00322{bottom:536.385939pt;}
.y77_c00322{bottom:536.629552pt;}
.y76_c00322{bottom:537.209264pt;}
.y75_c00322{bottom:537.263360pt;}
.y74_c00322{bottom:538.020981pt;}
.y73_c00322{bottom:538.882184pt;}
.y72_c00322{bottom:539.329704pt;}
.y71_c00322{bottom:539.660885pt;}
.y70_c00322{bottom:540.338216pt;}
.y6f_c00322{bottom:540.468216pt;}
.y6e_c00322{bottom:553.159163pt;}
.y6d_c00322{bottom:554.242888pt;}
.y6c_c00322{bottom:554.788045pt;}
.y6b_c00322{bottom:555.770163pt;}
.y6a_c00322{bottom:556.059040pt;}
.y69_c00322{bottom:556.408707pt;}
.y68_c00322{bottom:557.149000pt;}
.y67_c00322{bottom:558.208883pt;}
.y66_c00322{bottom:558.604632pt;}
.y65_c00322{bottom:559.440795pt;}
.y64_c00322{bottom:559.910352pt;}
.y63_c00322{bottom:574.462685pt;}
.y62_c00322{bottom:575.010997pt;}
.y61_c00322{bottom:575.406635pt;}
.y60_c00322{bottom:576.010248pt;}
.y5f_c00322{bottom:576.331480pt;}
.y5e_c00322{bottom:576.858197pt;}
.y5d_c00322{bottom:577.191552pt;}
.y5c_c00322{bottom:577.578931pt;}
.y5b_c00322{bottom:578.220200pt;}
.y5a_c00322{bottom:579.502776pt;}
.y59_c00322{bottom:579.763331pt;}
.y58_c00322{bottom:580.308544pt;}
.y57_c00322{bottom:594.674504pt;}
.y56_c00322{bottom:595.000851pt;}
.y55_c00322{bottom:595.483296pt;}
.y54_c00322{bottom:596.185947pt;}
.y53_c00322{bottom:596.557416pt;}
.y52_c00322{bottom:597.085947pt;}
.y51_c00322{bottom:598.065293pt;}
.y50_c00322{bottom:598.648317pt;}
.y4f_c00322{bottom:598.983576pt;}
.y4e_c00322{bottom:599.476427pt;}
.y4d_c00322{bottom:600.230117pt;}
.y4c_c00322{bottom:615.142099pt;}
.y4b_c00322{bottom:615.743856pt;}
.y4a_c00322{bottom:616.186309pt;}
.y49_c00322{bottom:616.501688pt;}
.y48_c00322{bottom:617.256291pt;}
.y47_c00322{bottom:617.632864pt;}
.y46_c00322{bottom:618.448091pt;}
.y45_c00322{bottom:618.742160pt;}
.y44_c00322{bottom:619.372339pt;}
.y43_c00322{bottom:619.984045pt;}
.y42_c00322{bottom:620.390571pt;}
.y41_c00322{bottom:634.720213pt;}
.y40_c00322{bottom:635.257915pt;}
.y3f_c00322{bottom:636.006635pt;}
.y3e_c00322{bottom:636.232744pt;}
.y3d_c00322{bottom:637.323133pt;}
.y3c_c00322{bottom:637.633064pt;}
.y3b_c00322{bottom:638.159632pt;}
.y3a_c00322{bottom:638.873309pt;}
.y39_c00322{bottom:639.538152pt;}
.y38_c00322{bottom:640.298117pt;}
.y37_c00322{bottom:641.031840pt;}
.y36_c00322{bottom:654.048643pt;}
.y35_c00322{bottom:654.878197pt;}
.y34_c00322{bottom:655.573696pt;}
.y33_c00322{bottom:655.940693pt;}
.y32_c00322{bottom:656.460859pt;}
.y31_c00322{bottom:656.751005pt;}
.y30_c00322{bottom:657.355477pt;}
.y2f_c00322{bottom:658.216229pt;}
.y2e_c00322{bottom:658.527187pt;}
.y2d_c00322{bottom:659.133992pt;}
.y2c_c00322{bottom:659.478275pt;}
.y2b_c00322{bottom:660.040565pt;}
.y2a_c00322{bottom:660.347939pt;}
.y29_c00322{bottom:660.955939pt;}
.y28_c00322{bottom:674.978656pt;}
.y27_c00322{bottom:675.274288pt;}
.y26_c00322{bottom:675.814176pt;}
.y25_c00322{bottom:676.772179pt;}
.y24_c00322{bottom:677.369976pt;}
.y23_c00322{bottom:678.504563pt;}
.y22_c00322{bottom:679.257432pt;}
.y21_c00322{bottom:679.660624pt;}
.y20_c00322{bottom:680.062603pt;}
.y1f_c00322{bottom:680.444917pt;}
.y1e_c00322{bottom:680.876741pt;}
.y1d_c00322{bottom:695.272056pt;}
.y1c_c00322{bottom:695.754240pt;}
.y1b_c00322{bottom:696.178776pt;}
.y1a_c00322{bottom:696.562883pt;}
.y19_c00322{bottom:697.118459pt;}
.y18_c00322{bottom:697.898888pt;}
.y17_c00322{bottom:698.424152pt;}
.y16_c00322{bottom:698.575061pt;}
.y15_c00322{bottom:699.189387pt;}
.y14_c00322{bottom:699.397637pt;}
.y13_c00322{bottom:699.668379pt;}
.y12_c00322{bottom:700.799549pt;}
.y11_c00322{bottom:701.052101pt;}
.y10_c00322{bottom:715.364128pt;}
.yf_c00322{bottom:716.184397pt;}
.ye_c00322{bottom:716.547893pt;}
.yd_c00322{bottom:716.905864pt;}
.yc_c00322{bottom:717.527688pt;}
.yb_c00322{bottom:718.702008pt;}
.ya_c00322{bottom:719.121019pt;}
.y9_c00322{bottom:719.373000pt;}
.y8_c00322{bottom:719.573069pt;}
.y7_c00322{bottom:720.416000pt;}
.y6_c00322{bottom:754.801333pt;}
.y5_c00322{bottom:755.178667pt;}
.y4_c00322{bottom:756.573333pt;}
.y3_c00322{bottom:757.218667pt;}
.y2_c00322{bottom:758.162667pt;}
.y1_c00322{bottom:808.792000pt;}
.hb_c00322{height:45.737198pt;}
.hc_c00322{height:47.604022pt;}
.h2_c00322{height:59.733333pt;}
.h6_c00322{height:59.739187pt;}
.ha_c00322{height:60.208566pt;}
.h9_c00322{height:60.672612pt;}
.h7_c00322{height:61.606037pt;}
.h5_c00322{height:62.539461pt;}
.h8_c00322{height:63.472886pt;}
.h4_c00322{height:64.406311pt;}
.hd_c00322{height:65.337155pt;}
.h3_c00322{height:94.266667pt;}
.h1_c00322{height:893.333333pt;}
.h0_c00322{height:893.466667pt;}
.w0_c00322{width:624.480000pt;}
.w1_c00322{width:624.666667pt;}
.x0_c00322{left:0.000000pt;}
.x53_c00322{left:62.704555pt;}
.x21_c00322{left:64.442229pt;}
.xaa_c00322{left:67.554432pt;}
.x90_c00322{left:68.974173pt;}
.x54_c00322{left:70.370904pt;}
.x15_c00322{left:71.819408pt;}
.x5c_c00322{left:87.189691pt;}
.x16_c00322{left:88.620499pt;}
.x70_c00322{left:91.064712pt;}
.xc_c00322{left:93.340000pt;}
.x3c_c00322{left:95.359957pt;}
.x94_c00322{left:99.966477pt;}
.x83_c00322{left:104.929616pt;}
.x4a_c00322{left:105.897709pt;}
.xb5_c00322{left:107.317333pt;}
.x2a_c00322{left:110.221187pt;}
.x63_c00322{left:113.195251pt;}
.x22_c00322{left:118.689464pt;}
.x43_c00322{left:121.812757pt;}
.x99_c00322{left:124.454824pt;}
.x9d_c00322{left:126.887421pt;}
.x91_c00322{left:128.271835pt;}
.x2b_c00322{left:129.413979pt;}
.x61_c00322{left:132.328989pt;}
.x95_c00322{left:134.060381pt;}
.x64_c00322{left:134.979867pt;}
.xab_c00322{left:139.326445pt;}
.x71_c00322{left:140.502093pt;}
.x3d_c00322{left:142.387277pt;}
.x8a_c00322{left:143.639605pt;}
.x23_c00322{left:145.497091pt;}
.x77_c00322{left:148.906448pt;}
.x65_c00322{left:151.316315pt;}
.x72_c00322{left:152.510429pt;}
.xd_c00322{left:153.549333pt;}
.x44_c00322{left:154.634957pt;}
.x55_c00322{left:155.988635pt;}
.x35_c00322{left:157.019077pt;}
.x9a_c00322{left:158.818565pt;}
.x6a_c00322{left:163.070283pt;}
.x17_c00322{left:163.988768pt;}
.xe_c00322{left:167.840000pt;}
.x4e_c00322{left:169.973896pt;}
.x24_c00322{left:172.391384pt;}
.x45_c00322{left:176.962640pt;}
.x84_c00322{left:178.162949pt;}
.x18_c00322{left:181.993840pt;}
.x7e_c00322{left:183.953512pt;}
.xf_c00322{left:185.838667pt;}
.x8_c00322{left:187.264000pt;}
.xb3_c00322{left:189.549968pt;}
.x3e_c00322{left:190.829283pt;}
.x1_c00322{left:192.720000pt;}
.x19_c00322{left:195.916320pt;}
.x36_c00322{left:198.601920pt;}
.x4b_c00322{left:202.404355pt;}
.x9e_c00322{left:203.418363pt;}
.x56_c00322{left:206.643840pt;}
.x73_c00322{left:208.679997pt;}
.x78_c00322{left:212.068677pt;}
.x3f_c00322{left:213.453600pt;}
.x10_c00322{left:215.768000pt;}
.x5d_c00322{left:218.729195pt;}
.x25_c00322{left:222.548008pt;}
.x2c_c00322{left:223.985995pt;}
.x96_c00322{left:229.109701pt;}
.x8b_c00322{left:231.011283pt;}
.xa2_c00322{left:231.974349pt;}
.xb6_c00322{left:234.836353pt;}
.x1a_c00322{left:236.843741pt;}
.x6b_c00322{left:238.437725pt;}
.x4c_c00322{left:242.493901pt;}
.x2d_c00322{left:243.434787pt;}
.x66_c00322{left:244.924261pt;}
.x1b_c00322{left:246.860925pt;}
.x8c_c00322{left:247.810659pt;}
.x57_c00322{left:251.233973pt;}
.xae_c00322{left:253.526667pt;}
.x2_c00322{left:254.880000pt;}
.x7f_c00322{left:256.450195pt;}
.x92_c00322{left:257.683456pt;}
.x6c_c00322{left:259.336971pt;}
.xa3_c00322{left:260.741288pt;}
.x9b_c00322{left:264.192605pt;}
.x9_c00322{left:265.976000pt;}
.x85_c00322{left:271.300283pt;}
.x37_c00322{left:276.141088pt;}
.xa4_c00322{left:278.332944pt;}
.x74_c00322{left:280.199328pt;}
.x1c_c00322{left:281.903107pt;}
.x8d_c00322{left:284.154856pt;}
.x3_c00322{left:288.000000pt;}
.xb4_c00322{left:290.593919pt;}
.xaf_c00322{left:291.738667pt;}
.x9f_c00322{left:293.418069pt;}
.x38_c00322{left:295.516547pt;}
.x2e_c00322{left:297.201275pt;}
.x26_c00322{left:298.160277pt;}
.x11_c00322{left:299.648000pt;}
.x58_c00322{left:302.857141pt;}
.x40_c00322{left:305.154888pt;}
.x93_c00322{left:307.088837pt;}
.x79_c00322{left:311.206059pt;}
.x80_c00322{left:314.562485pt;}
.x46_c00322{left:316.406032pt;}
.xa_c00322{left:319.702667pt;}
.xac_c00322{left:320.791248pt;}
.x4f_c00322{left:322.449640pt;}
.x4_c00322{left:324.480000pt;}
.x6d_c00322{left:326.756189pt;}
.x86_c00322{left:328.190949pt;}
.xb0_c00322{left:332.233333pt;}
.x1d_c00322{left:333.933045pt;}
.x2f_c00322{left:334.948211pt;}
.xa8_c00322{left:335.933456pt;}
.x27_c00322{left:338.002384pt;}
.x47_c00322{left:341.129677pt;}
.x59_c00322{left:342.287480pt;}
.x12_c00322{left:344.064000pt;}
.x81_c00322{left:345.218011pt;}
.x87_c00322{left:346.656283pt;}
.x5e_c00322{left:348.926051pt;}
.x30_c00322{left:353.101040pt;}
.xa0_c00322{left:359.401765pt;}
.x5f_c00322{left:360.863216pt;}
.x39_c00322{left:363.685309pt;}
.x7a_c00322{left:366.118824pt;}
.x13_c00322{left:369.633333pt;}
.x1e_c00322{left:370.949856pt;}
.xa5_c00322{left:372.851579pt;}
.x67_c00322{left:374.150568pt;}
.x5a_c00322{left:375.600747pt;}
.x3a_c00322{left:377.835584pt;}
.x88_c00322{left:380.740283pt;}
.x50_c00322{left:383.837256pt;}
.x31_c00322{left:385.588125pt;}
.x41_c00322{left:387.488045pt;}
.x5_c00322{left:391.680000pt;}
.x60_c00322{left:395.336064pt;}
.x6_c00322{left:396.240000pt;}
.x75_c00322{left:398.089280pt;}
.x7b_c00322{left:399.003291pt;}
.x8e_c00322{left:400.259728pt;}
.x28_c00322{left:401.858821pt;}
.x4d_c00322{left:403.056088pt;}
.x6e_c00322{left:405.967744pt;}
.x32_c00322{left:408.563491pt;}
.x82_c00322{left:411.263859pt;}
.xa9_c00322{left:416.581565pt;}
.x51_c00322{left:417.918971pt;}
.x48_c00322{left:420.159243pt;}
.x42_c00322{left:421.568531pt;}
.x1f_c00322{left:424.899776pt;}
.xa6_c00322{left:426.661251pt;}
.x5b_c00322{left:427.935877pt;}
.xad_c00322{left:430.221371pt;}
.x89_c00322{left:431.185616pt;}
.x68_c00322{left:433.869581pt;}
.xb_c00322{left:435.937333pt;}
.x29_c00322{left:437.850317pt;}
.x76_c00322{left:439.573104pt;}
.x49_c00322{left:441.945611pt;}
.x97_c00322{left:444.167075pt;}
.x7c_c00322{left:448.193315pt;}
.x33_c00322{left:452.050277pt;}
.x69_c00322{left:453.256789pt;}
.x14_c00322{left:454.188000pt;}
.x8f_c00322{left:455.184709pt;}
.x20_c00322{left:457.055328pt;}
.x3b_c00322{left:458.292011pt;}
.xa7_c00322{left:463.361971pt;}
.x7_c00322{left:467.760000pt;}
.xb1_c00322{left:471.485333pt;}
.xa1_c00322{left:474.165520pt;}
.x9c_c00322{left:475.890112pt;}
.x7d_c00322{left:479.943096pt;}
.x98_c00322{left:480.927795pt;}
.x6f_c00322{left:484.221928pt;}
.x52_c00322{left:485.611733pt;}
.x62_c00322{left:491.023656pt;}
.xb2_c00322{left:499.388000pt;}
.x34_c00322{left:503.874155pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9_c00323{transform:matrix(0.047808,-0.001052,0.005499,0.249940,0,0);-ms-transform:matrix(0.047808,-0.001052,0.005499,0.249940,0,0);-webkit-transform:matrix(0.047808,-0.001052,0.005499,0.249940,0,0);}
.mdd_c00323{transform:matrix(0.094356,-0.001321,0.003500,0.249976,0,0);-ms-transform:matrix(0.094356,-0.001321,0.003500,0.249976,0,0);-webkit-transform:matrix(0.094356,-0.001321,0.003500,0.249976,0,0);}
.m133_c00323{transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);-ms-transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.095438,-0.000668,0.001750,0.249994,0,0);}
.m8_c00323{transform:matrix(0.095612,-0.002103,0.005499,0.249940,0,0);-ms-transform:matrix(0.095612,-0.002103,0.005499,0.249940,0,0);-webkit-transform:matrix(0.095612,-0.002103,0.005499,0.249940,0,0);}
.mb6_c00323{transform:matrix(0.099620,-0.001395,0.003500,0.249976,0,0);-ms-transform:matrix(0.099620,-0.001395,0.003500,0.249976,0,0);-webkit-transform:matrix(0.099620,-0.001395,0.003500,0.249976,0,0);}
.m149_c00323{transform:matrix(0.107021,-0.000963,0.002250,0.249990,0,0);-ms-transform:matrix(0.107021,-0.000963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.107021,-0.000963,0.002250,0.249990,0,0);}
.m11d_c00323{transform:matrix(0.120331,-0.001444,0.003000,0.249982,0,0);-ms-transform:matrix(0.120331,-0.001444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.120331,-0.001444,0.003000,0.249982,0,0);}
.m137_c00323{transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);-ms-transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);-webkit-transform:matrix(0.140677,-0.000985,0.001750,0.249994,0,0);}
.ma_c00323{transform:matrix(0.141316,-0.003109,0.005499,0.249940,0,0);-ms-transform:matrix(0.141316,-0.003109,0.005499,0.249940,0,0);-webkit-transform:matrix(0.141316,-0.003109,0.005499,0.249940,0,0);}
.m142_c00323{transform:matrix(0.143344,-0.001290,0.002250,0.249990,0,0);-ms-transform:matrix(0.143344,-0.001290,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143344,-0.001290,0.002250,0.249990,0,0);}
.m12e_c00323{transform:matrix(0.145966,-0.001022,0.001750,0.249994,0,0);-ms-transform:matrix(0.145966,-0.001022,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145966,-0.001022,0.001750,0.249994,0,0);}
.m7c_c00323{transform:matrix(0.146636,-0.002639,0.004499,0.249960,0,0);-ms-transform:matrix(0.146636,-0.002639,0.004499,0.249960,0,0);-webkit-transform:matrix(0.146636,-0.002639,0.004499,0.249960,0,0);}
.m70_c00323{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);}
.m16_c00323{transform:matrix(0.148303,-0.002818,0.004749,0.249955,0,0);-ms-transform:matrix(0.148303,-0.002818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148303,-0.002818,0.004749,0.249955,0,0);}
.m92_c00323{transform:matrix(0.150571,-0.002710,0.004499,0.249960,0,0);-ms-transform:matrix(0.150571,-0.002710,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150571,-0.002710,0.004499,0.249960,0,0);}
.mc6_c00323{transform:matrix(0.151185,-0.002117,0.003500,0.249976,0,0);-ms-transform:matrix(0.151185,-0.002117,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151185,-0.002117,0.003500,0.249976,0,0);}
.m115_c00323{transform:matrix(0.151974,-0.001824,0.003000,0.249982,0,0);-ms-transform:matrix(0.151974,-0.001824,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151974,-0.001824,0.003000,0.249982,0,0);}
.m60_c00323{transform:matrix(0.152125,-0.002738,0.004499,0.249960,0,0);-ms-transform:matrix(0.152125,-0.002738,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152125,-0.002738,0.004499,0.249960,0,0);}
.m5d_c00323{transform:matrix(0.154080,-0.002773,0.004499,0.249960,0,0);-ms-transform:matrix(0.154080,-0.002773,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154080,-0.002773,0.004499,0.249960,0,0);}
.m6d_c00323{transform:matrix(0.155235,-0.002794,0.004499,0.249960,0,0);-ms-transform:matrix(0.155235,-0.002794,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155235,-0.002794,0.004499,0.249960,0,0);}
.m10e_c00323{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);}
.m22_c00323{transform:matrix(0.156537,-0.002974,0.004749,0.249955,0,0);-ms-transform:matrix(0.156537,-0.002974,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156537,-0.002974,0.004749,0.249955,0,0);}
.m141_c00323{transform:matrix(0.156794,-0.001411,0.002250,0.249990,0,0);-ms-transform:matrix(0.156794,-0.001411,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156794,-0.001411,0.002250,0.249990,0,0);}
.m76_c00323{transform:matrix(0.157609,-0.002837,0.004499,0.249960,0,0);-ms-transform:matrix(0.157609,-0.002837,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157609,-0.002837,0.004499,0.249960,0,0);}
.m29_c00323{transform:matrix(0.158236,-0.003006,0.004749,0.249955,0,0);-ms-transform:matrix(0.158236,-0.003006,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158236,-0.003006,0.004749,0.249955,0,0);}
.ma1_c00323{transform:matrix(0.158649,-0.002221,0.003500,0.249976,0,0);-ms-transform:matrix(0.158649,-0.002221,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158649,-0.002221,0.003500,0.249976,0,0);}
.m9f_c00323{transform:matrix(0.159269,-0.002230,0.003500,0.249976,0,0);-ms-transform:matrix(0.159269,-0.002230,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159269,-0.002230,0.003500,0.249976,0,0);}
.m12c_c00323{transform:matrix(0.159696,-0.001118,0.001750,0.249994,0,0);-ms-transform:matrix(0.159696,-0.001118,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159696,-0.001118,0.001750,0.249994,0,0);}
.maf_c00323{transform:matrix(0.159764,-0.002237,0.003500,0.249976,0,0);-ms-transform:matrix(0.159764,-0.002237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159764,-0.002237,0.003500,0.249976,0,0);}
.mad_c00323{transform:matrix(0.160759,-0.002251,0.003500,0.249976,0,0);-ms-transform:matrix(0.160759,-0.002251,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160759,-0.002251,0.003500,0.249976,0,0);}
.m13a_c00323{transform:matrix(0.161006,-0.001127,0.001750,0.249994,0,0);-ms-transform:matrix(0.161006,-0.001127,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161006,-0.001127,0.001750,0.249994,0,0);}
.m138_c00323{transform:matrix(0.162396,-0.001137,0.001750,0.249994,0,0);-ms-transform:matrix(0.162396,-0.001137,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162396,-0.001137,0.001750,0.249994,0,0);}
.m111_c00323{transform:matrix(0.162758,-0.001953,0.003000,0.249982,0,0);-ms-transform:matrix(0.162758,-0.001953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162758,-0.001953,0.003000,0.249982,0,0);}
.m152_c00323{transform:matrix(0.162766,-0.001139,0.001750,0.249994,0,0);-ms-transform:matrix(0.162766,-0.001139,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162766,-0.001139,0.001750,0.249994,0,0);}
.mc8_c00323{transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);-ms-transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);}
.m9c_c00323{transform:matrix(0.163759,-0.002293,0.003500,0.249976,0,0);-ms-transform:matrix(0.163759,-0.002293,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163759,-0.002293,0.003500,0.249976,0,0);}
.mc9_c00323{transform:matrix(0.165119,-0.002312,0.003500,0.249976,0,0);-ms-transform:matrix(0.165119,-0.002312,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165119,-0.002312,0.003500,0.249976,0,0);}
.m8b_c00323{transform:matrix(0.165413,-0.002977,0.004499,0.249960,0,0);-ms-transform:matrix(0.165413,-0.002977,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165413,-0.002977,0.004499,0.249960,0,0);}
.mfe_c00323{transform:matrix(0.165533,-0.001986,0.003000,0.249982,0,0);-ms-transform:matrix(0.165533,-0.001986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165533,-0.001986,0.003000,0.249982,0,0);}
.m78_c00323{transform:matrix(0.165638,-0.002981,0.004499,0.249960,0,0);-ms-transform:matrix(0.165638,-0.002981,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165638,-0.002981,0.004499,0.249960,0,0);}
.m121_c00323{transform:matrix(0.165751,-0.001160,0.001750,0.249994,0,0);-ms-transform:matrix(0.165751,-0.001160,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165751,-0.001160,0.001750,0.249994,0,0);}
.m1a_c00323{transform:matrix(0.165760,-0.003149,0.004749,0.249955,0,0);-ms-transform:matrix(0.165760,-0.003149,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165760,-0.003149,0.004749,0.249955,0,0);}
.md5_c00323{transform:matrix(0.165764,-0.002321,0.003500,0.249976,0,0);-ms-transform:matrix(0.165764,-0.002321,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165764,-0.002321,0.003500,0.249976,0,0);}
.m14f_c00323{transform:matrix(0.166716,-0.001167,0.001750,0.249994,0,0);-ms-transform:matrix(0.166716,-0.001167,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166716,-0.001167,0.001750,0.249994,0,0);}
.m151_c00323{transform:matrix(0.167531,-0.001173,0.001750,0.249994,0,0);-ms-transform:matrix(0.167531,-0.001173,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167531,-0.001173,0.001750,0.249994,0,0);}
.m1b_c00323{transform:matrix(0.168345,-0.003199,0.004749,0.249955,0,0);-ms-transform:matrix(0.168345,-0.003199,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168345,-0.003199,0.004749,0.249955,0,0);}
.ma4_c00323{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);}
.mcc_c00323{transform:matrix(0.168513,-0.002359,0.003500,0.249976,0,0);-ms-transform:matrix(0.168513,-0.002359,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168513,-0.002359,0.003500,0.249976,0,0);}
.m41_c00323{transform:matrix(0.169183,-0.003045,0.004499,0.249960,0,0);-ms-transform:matrix(0.169183,-0.003045,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169183,-0.003045,0.004499,0.249960,0,0);}
.m23_c00323{transform:matrix(0.169304,-0.003217,0.004749,0.249955,0,0);-ms-transform:matrix(0.169304,-0.003217,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169304,-0.003217,0.004749,0.249955,0,0);}
.m14e_c00323{transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169396,-0.001186,0.001750,0.249994,0,0);}
.md3_c00323{transform:matrix(0.169438,-0.002372,0.003500,0.249976,0,0);-ms-transform:matrix(0.169438,-0.002372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169438,-0.002372,0.003500,0.249976,0,0);}
.mc0_c00323{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);}
.m20_c00323{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);}
.mdf_c00323{transform:matrix(0.170088,-0.002381,0.003500,0.249976,0,0);-ms-transform:matrix(0.170088,-0.002381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170088,-0.002381,0.003500,0.249976,0,0);}
.m38_c00323{transform:matrix(0.170177,-0.003063,0.004499,0.249960,0,0);-ms-transform:matrix(0.170177,-0.003063,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170177,-0.003063,0.004499,0.249960,0,0);}
.m17_c00323{transform:matrix(0.170379,-0.003237,0.004749,0.249955,0,0);-ms-transform:matrix(0.170379,-0.003237,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170379,-0.003237,0.004749,0.249955,0,0);}
.m2a_c00323{transform:matrix(0.170452,-0.003068,0.004499,0.249960,0,0);-ms-transform:matrix(0.170452,-0.003068,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170452,-0.003068,0.004499,0.249960,0,0);}
.m12f_c00323{transform:matrix(0.170891,-0.001196,0.001750,0.249994,0,0);-ms-transform:matrix(0.170891,-0.001196,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170891,-0.001196,0.001750,0.249994,0,0);}
.mce_c00323{transform:matrix(0.171058,-0.002395,0.003500,0.249976,0,0);-ms-transform:matrix(0.171058,-0.002395,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171058,-0.002395,0.003500,0.249976,0,0);}
.m35_c00323{transform:matrix(0.171137,-0.003080,0.004499,0.249960,0,0);-ms-transform:matrix(0.171137,-0.003080,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171137,-0.003080,0.004499,0.249960,0,0);}
.m85_c00323{transform:matrix(0.171852,-0.003093,0.004499,0.249960,0,0);-ms-transform:matrix(0.171852,-0.003093,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171852,-0.003093,0.004499,0.249960,0,0);}
.ma7_c00323{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);}
.m4f_c00323{transform:matrix(0.172027,-0.003096,0.004499,0.249960,0,0);-ms-transform:matrix(0.172027,-0.003096,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172027,-0.003096,0.004499,0.249960,0,0);}
.md0_c00323{transform:matrix(0.172043,-0.002409,0.003500,0.249976,0,0);-ms-transform:matrix(0.172043,-0.002409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172043,-0.002409,0.003500,0.249976,0,0);}
.m13c_c00323{transform:matrix(0.172051,-0.001204,0.001750,0.249994,0,0);-ms-transform:matrix(0.172051,-0.001204,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172051,-0.001204,0.001750,0.249994,0,0);}
.m57_c00323{transform:matrix(0.172772,-0.003110,0.004499,0.249960,0,0);-ms-transform:matrix(0.172772,-0.003110,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172772,-0.003110,0.004499,0.249960,0,0);}
.mc4_c00323{transform:matrix(0.173008,-0.002422,0.003500,0.249976,0,0);-ms-transform:matrix(0.173008,-0.002422,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173008,-0.002422,0.003500,0.249976,0,0);}
.m56_c00323{transform:matrix(0.173087,-0.003116,0.004499,0.249960,0,0);-ms-transform:matrix(0.173087,-0.003116,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173087,-0.003116,0.004499,0.249960,0,0);}
.m3c_c00323{transform:matrix(0.173147,-0.003117,0.004499,0.249960,0,0);-ms-transform:matrix(0.173147,-0.003117,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173147,-0.003117,0.004499,0.249960,0,0);}
.mfb_c00323{transform:matrix(0.173403,-0.002081,0.003000,0.249982,0,0);-ms-transform:matrix(0.173403,-0.002081,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173403,-0.002081,0.003000,0.249982,0,0);}
.mfa_c00323{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);}
.m112_c00323{transform:matrix(0.173538,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173538,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173538,-0.002082,0.003000,0.249982,0,0);}
.m69_c00323{transform:matrix(0.173852,-0.003129,0.004499,0.249960,0,0);-ms-transform:matrix(0.173852,-0.003129,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173852,-0.003129,0.004499,0.249960,0,0);}
.mc1_c00323{transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);-ms-transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);}
.m131_c00323{transform:matrix(0.173926,-0.001217,0.001750,0.249994,0,0);-ms-transform:matrix(0.173926,-0.001217,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173926,-0.001217,0.001750,0.249994,0,0);}
.me4_c00323{transform:matrix(0.174078,-0.002437,0.003500,0.249976,0,0);-ms-transform:matrix(0.174078,-0.002437,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174078,-0.002437,0.003500,0.249976,0,0);}
.m6c_c00323{transform:matrix(0.174257,-0.003137,0.004499,0.249960,0,0);-ms-transform:matrix(0.174257,-0.003137,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174257,-0.003137,0.004499,0.249960,0,0);}
.m73_c00323{transform:matrix(0.174462,-0.003140,0.004499,0.249960,0,0);-ms-transform:matrix(0.174462,-0.003140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174462,-0.003140,0.004499,0.249960,0,0);}
.m7e_c00323{transform:matrix(0.174702,-0.003145,0.004499,0.249960,0,0);-ms-transform:matrix(0.174702,-0.003145,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174702,-0.003145,0.004499,0.249960,0,0);}
.m100_c00323{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);}
.m5b_c00323{transform:matrix(0.174927,-0.003149,0.004499,0.249960,0,0);-ms-transform:matrix(0.174927,-0.003149,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174927,-0.003149,0.004499,0.249960,0,0);}
.m8e_c00323{transform:matrix(0.175437,-0.003158,0.004499,0.249960,0,0);-ms-transform:matrix(0.175437,-0.003158,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175437,-0.003158,0.004499,0.249960,0,0);}
.m139_c00323{transform:matrix(0.175776,-0.001230,0.001750,0.249994,0,0);-ms-transform:matrix(0.175776,-0.001230,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175776,-0.001230,0.001750,0.249994,0,0);}
.m64_c00323{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);}
.meb_c00323{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);}
.mbe_c00323{transform:matrix(0.176163,-0.002466,0.003500,0.249976,0,0);-ms-transform:matrix(0.176163,-0.002466,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176163,-0.002466,0.003500,0.249976,0,0);}
.mb0_c00323{transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);-ms-transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);}
.mdb_c00323{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);}
.m59_c00323{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);}
.m3f_c00323{transform:matrix(0.177146,-0.003189,0.004499,0.249960,0,0);-ms-transform:matrix(0.177146,-0.003189,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177146,-0.003189,0.004499,0.249960,0,0);}
.m43_c00323{transform:matrix(0.177226,-0.003190,0.004499,0.249960,0,0);-ms-transform:matrix(0.177226,-0.003190,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177226,-0.003190,0.004499,0.249960,0,0);}
.m2c_c00323{transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);-ms-transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);}
.me2_c00323{transform:matrix(0.177393,-0.002483,0.003500,0.249976,0,0);-ms-transform:matrix(0.177393,-0.002483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177393,-0.002483,0.003500,0.249976,0,0);}
.mbf_c00323{transform:matrix(0.178083,-0.002493,0.003500,0.249976,0,0);-ms-transform:matrix(0.178083,-0.002493,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178083,-0.002493,0.003500,0.249976,0,0);}
.m74_c00323{transform:matrix(0.178271,-0.003209,0.004499,0.249960,0,0);-ms-transform:matrix(0.178271,-0.003209,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178271,-0.003209,0.004499,0.249960,0,0);}
.m8d_c00323{transform:matrix(0.178331,-0.003210,0.004499,0.249960,0,0);-ms-transform:matrix(0.178331,-0.003210,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178331,-0.003210,0.004499,0.249960,0,0);}
.mc5_c00323{transform:matrix(0.178737,-0.002502,0.003500,0.249976,0,0);-ms-transform:matrix(0.178737,-0.002502,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178737,-0.002502,0.003500,0.249976,0,0);}
.m7d_c00323{transform:matrix(0.178856,-0.003219,0.004499,0.249960,0,0);-ms-transform:matrix(0.178856,-0.003219,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178856,-0.003219,0.004499,0.249960,0,0);}
.mef_c00323{transform:matrix(0.179082,-0.002507,0.003500,0.249976,0,0);-ms-transform:matrix(0.179082,-0.002507,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179082,-0.002507,0.003500,0.249976,0,0);}
.mf6_c00323{transform:matrix(0.179097,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179097,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179097,-0.002149,0.003000,0.249982,0,0);}
.m48_c00323{transform:matrix(0.179351,-0.003228,0.004499,0.249960,0,0);-ms-transform:matrix(0.179351,-0.003228,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179351,-0.003228,0.004499,0.249960,0,0);}
.m144_c00323{transform:matrix(0.179738,-0.001618,0.002250,0.249990,0,0);-ms-transform:matrix(0.179738,-0.001618,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179738,-0.001618,0.002250,0.249990,0,0);}
.m143_c00323{transform:matrix(0.180058,-0.001621,0.002250,0.249990,0,0);-ms-transform:matrix(0.180058,-0.001621,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180058,-0.001621,0.002250,0.249990,0,0);}
.me9_c00323{transform:matrix(0.180067,-0.002521,0.003500,0.249976,0,0);-ms-transform:matrix(0.180067,-0.002521,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180067,-0.002521,0.003500,0.249976,0,0);}
.m2e_c00323{transform:matrix(0.180236,-0.003244,0.004499,0.249960,0,0);-ms-transform:matrix(0.180236,-0.003244,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180236,-0.003244,0.004499,0.249960,0,0);}
.m130_c00323{transform:matrix(0.180261,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180261,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180261,-0.001262,0.001750,0.249994,0,0);}
.m148_c00323{transform:matrix(0.180563,-0.001625,0.002250,0.249990,0,0);-ms-transform:matrix(0.180563,-0.001625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180563,-0.001625,0.002250,0.249990,0,0);}
.md2_c00323{transform:matrix(0.180762,-0.002531,0.003500,0.249976,0,0);-ms-transform:matrix(0.180762,-0.002531,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180762,-0.002531,0.003500,0.249976,0,0);}
.m97_c00323{transform:matrix(0.181021,-0.003258,0.004499,0.249960,0,0);-ms-transform:matrix(0.181021,-0.003258,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181021,-0.003258,0.004499,0.249960,0,0);}
.md1_c00323{transform:matrix(0.181087,-0.002535,0.003500,0.249976,0,0);-ms-transform:matrix(0.181087,-0.002535,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181087,-0.002535,0.003500,0.249976,0,0);}
.m114_c00323{transform:matrix(0.181147,-0.002174,0.003000,0.249982,0,0);-ms-transform:matrix(0.181147,-0.002174,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181147,-0.002174,0.003000,0.249982,0,0);}
.m123_c00323{transform:matrix(0.181221,-0.001269,0.001750,0.249994,0,0);-ms-transform:matrix(0.181221,-0.001269,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181221,-0.001269,0.001750,0.249994,0,0);}
.m116_c00323{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);}
.m2b_c00323{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);}
.m65_c00323{transform:matrix(0.182250,-0.003281,0.004499,0.249960,0,0);-ms-transform:matrix(0.182250,-0.003281,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182250,-0.003281,0.004499,0.249960,0,0);}
.m12d_c00323{transform:matrix(0.182371,-0.001277,0.001750,0.249994,0,0);-ms-transform:matrix(0.182371,-0.001277,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182371,-0.001277,0.001750,0.249994,0,0);}
.m10c_c00323{transform:matrix(0.182567,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182567,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182567,-0.002191,0.003000,0.249982,0,0);}
.mb1_c00323{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);}
.ma3_c00323{transform:matrix(0.182797,-0.002559,0.003500,0.249976,0,0);-ms-transform:matrix(0.182797,-0.002559,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182797,-0.002559,0.003500,0.249976,0,0);}
.ma8_c00323{transform:matrix(0.182902,-0.002561,0.003500,0.249976,0,0);-ms-transform:matrix(0.182902,-0.002561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182902,-0.002561,0.003500,0.249976,0,0);}
.m19_c00323{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);}
.me8_c00323{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);}
.m91_c00323{transform:matrix(0.183200,-0.003298,0.004499,0.249960,0,0);-ms-transform:matrix(0.183200,-0.003298,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183200,-0.003298,0.004499,0.249960,0,0);}
.m9e_c00323{transform:matrix(0.183822,-0.002574,0.003500,0.249976,0,0);-ms-transform:matrix(0.183822,-0.002574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183822,-0.002574,0.003500,0.249976,0,0);}
.m4e_c00323{transform:matrix(0.183920,-0.003311,0.004499,0.249960,0,0);-ms-transform:matrix(0.183920,-0.003311,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183920,-0.003311,0.004499,0.249960,0,0);}
.mcb_c00323{transform:matrix(0.184107,-0.002577,0.003500,0.249976,0,0);-ms-transform:matrix(0.184107,-0.002577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184107,-0.002577,0.003500,0.249976,0,0);}
.m124_c00323{transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);-ms-transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184220,-0.001290,0.001750,0.249994,0,0);}
.mf3_c00323{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);}
.m24_c00323{transform:matrix(0.184902,-0.003513,0.004749,0.249955,0,0);-ms-transform:matrix(0.184902,-0.003513,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184902,-0.003513,0.004749,0.249955,0,0);}
.m30_c00323{transform:matrix(0.185020,-0.003330,0.004499,0.249960,0,0);-ms-transform:matrix(0.185020,-0.003330,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185020,-0.003330,0.004499,0.249960,0,0);}
.m103_c00323{transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);-ms-transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);}
.m6b_c00323{transform:matrix(0.185250,-0.003334,0.004499,0.249960,0,0);-ms-transform:matrix(0.185250,-0.003334,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185250,-0.003334,0.004499,0.249960,0,0);}
.mf1_c00323{transform:matrix(0.185637,-0.002599,0.003500,0.249976,0,0);-ms-transform:matrix(0.185637,-0.002599,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185637,-0.002599,0.003500,0.249976,0,0);}
.m8f_c00323{transform:matrix(0.185715,-0.003343,0.004499,0.249960,0,0);-ms-transform:matrix(0.185715,-0.003343,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185715,-0.003343,0.004499,0.249960,0,0);}
.mbd_c00323{transform:matrix(0.185892,-0.002602,0.003500,0.249976,0,0);-ms-transform:matrix(0.185892,-0.002602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185892,-0.002602,0.003500,0.249976,0,0);}
.m140_c00323{transform:matrix(0.186067,-0.001675,0.002250,0.249990,0,0);-ms-transform:matrix(0.186067,-0.001675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186067,-0.001675,0.002250,0.249990,0,0);}
.mf8_c00323{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);}
.ma2_c00323{transform:matrix(0.186552,-0.002612,0.003500,0.249976,0,0);-ms-transform:matrix(0.186552,-0.002612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186552,-0.002612,0.003500,0.249976,0,0);}
.m96_c00323{transform:matrix(0.186555,-0.003358,0.004499,0.249960,0,0);-ms-transform:matrix(0.186555,-0.003358,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186555,-0.003358,0.004499,0.249960,0,0);}
.mb4_c00323{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);}
.me7_c00323{transform:matrix(0.186647,-0.002613,0.003500,0.249976,0,0);-ms-transform:matrix(0.186647,-0.002613,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186647,-0.002613,0.003500,0.249976,0,0);}
.m32_c00323{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);}
.md7_c00323{transform:matrix(0.186792,-0.002615,0.003500,0.249976,0,0);-ms-transform:matrix(0.186792,-0.002615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186792,-0.002615,0.003500,0.249976,0,0);}
.mf7_c00323{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);}
.m120_c00323{transform:matrix(0.187037,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.187037,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187037,-0.002244,0.003000,0.249982,0,0);}
.m42_c00323{transform:matrix(0.187055,-0.003367,0.004499,0.249960,0,0);-ms-transform:matrix(0.187055,-0.003367,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187055,-0.003367,0.004499,0.249960,0,0);}
.m147_c00323{transform:matrix(0.187242,-0.001685,0.002250,0.249990,0,0);-ms-transform:matrix(0.187242,-0.001685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187242,-0.001685,0.002250,0.249990,0,0);}
.m132_c00323{transform:matrix(0.187305,-0.001311,0.001750,0.249994,0,0);-ms-transform:matrix(0.187305,-0.001311,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187305,-0.001311,0.001750,0.249994,0,0);}
.m82_c00323{transform:matrix(0.187435,-0.003374,0.004499,0.249960,0,0);-ms-transform:matrix(0.187435,-0.003374,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187435,-0.003374,0.004499,0.249960,0,0);}
.m1d_c00323{transform:matrix(0.187596,-0.003564,0.004749,0.249955,0,0);-ms-transform:matrix(0.187596,-0.003564,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187596,-0.003564,0.004749,0.249955,0,0);}
.m156_c00323{transform:matrix(0.187625,-0.001313,0.001750,0.249994,0,0);-ms-transform:matrix(0.187625,-0.001313,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187625,-0.001313,0.001750,0.249994,0,0);}
.me3_c00323{transform:matrix(0.187642,-0.002627,0.003500,0.249976,0,0);-ms-transform:matrix(0.187642,-0.002627,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187642,-0.002627,0.003500,0.249976,0,0);}
.mff_c00323{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);}
.m106_c00323{transform:matrix(0.187666,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187666,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187666,-0.002252,0.003000,0.249982,0,0);}
.mbb_c00323{transform:matrix(0.187872,-0.002630,0.003500,0.249976,0,0);-ms-transform:matrix(0.187872,-0.002630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187872,-0.002630,0.003500,0.249976,0,0);}
.m105_c00323{transform:matrix(0.188241,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188241,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188241,-0.002259,0.003000,0.249982,0,0);}
.m6e_c00323{transform:matrix(0.188255,-0.003389,0.004499,0.249960,0,0);-ms-transform:matrix(0.188255,-0.003389,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188255,-0.003389,0.004499,0.249960,0,0);}
.m5a_c00323{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_c00323{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);}
.m66_c00323{transform:matrix(0.189344,-0.003408,0.004499,0.249960,0,0);-ms-transform:matrix(0.189344,-0.003408,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189344,-0.003408,0.004499,0.249960,0,0);}
.m4b_c00323{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);}
.m8c_c00323{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);}
.mcd_c00323{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);}
.mf_c00323{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);}
.md9_c00323{transform:matrix(0.190396,-0.002666,0.003500,0.249976,0,0);-ms-transform:matrix(0.190396,-0.002666,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190396,-0.002666,0.003500,0.249976,0,0);}
.m13e_c00323{transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);-ms-transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190570,-0.001334,0.001750,0.249994,0,0);}
.mc7_c00323{transform:matrix(0.190646,-0.002669,0.003500,0.249976,0,0);-ms-transform:matrix(0.190646,-0.002669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190646,-0.002669,0.003500,0.249976,0,0);}
.m28_c00323{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);}
.m52_c00323{transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);-ms-transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);}
.m21_c00323{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);}
.m4c_c00323{transform:matrix(0.191269,-0.003443,0.004499,0.249960,0,0);-ms-transform:matrix(0.191269,-0.003443,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191269,-0.003443,0.004499,0.249960,0,0);}
.m13d_c00323{transform:matrix(0.191745,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191745,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191745,-0.001342,0.001750,0.249994,0,0);}
.m95_c00323{transform:matrix(0.191789,-0.003452,0.004499,0.249960,0,0);-ms-transform:matrix(0.191789,-0.003452,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191789,-0.003452,0.004499,0.249960,0,0);}
.m134_c00323{transform:matrix(0.192000,-0.001344,0.001750,0.249994,0,0);-ms-transform:matrix(0.192000,-0.001344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192000,-0.001344,0.001750,0.249994,0,0);}
.m4a_c00323{transform:matrix(0.192124,-0.003458,0.004499,0.249960,0,0);-ms-transform:matrix(0.192124,-0.003458,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192124,-0.003458,0.004499,0.249960,0,0);}
.m1c_c00323{transform:matrix(0.192185,-0.003652,0.004749,0.249955,0,0);-ms-transform:matrix(0.192185,-0.003652,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192185,-0.003652,0.004749,0.249955,0,0);}
.mc2_c00323{transform:matrix(0.192246,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192246,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192246,-0.002691,0.003500,0.249976,0,0);}
.m25_c00323{transform:matrix(0.192275,-0.003653,0.004749,0.249955,0,0);-ms-transform:matrix(0.192275,-0.003653,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192275,-0.003653,0.004749,0.249955,0,0);}
.m37_c00323{transform:matrix(0.193299,-0.003479,0.004499,0.249960,0,0);-ms-transform:matrix(0.193299,-0.003479,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193299,-0.003479,0.004499,0.249960,0,0);}
.m3e_c00323{transform:matrix(0.193419,-0.003482,0.004499,0.249960,0,0);-ms-transform:matrix(0.193419,-0.003482,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193419,-0.003482,0.004499,0.249960,0,0);}
.mee_c00323{transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);-ms-transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);}
.mc3_c00323{transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);-ms-transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193766,-0.002713,0.003500,0.249976,0,0);}
.m75_c00323{transform:matrix(0.194074,-0.003493,0.004499,0.249960,0,0);-ms-transform:matrix(0.194074,-0.003493,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194074,-0.003493,0.004499,0.249960,0,0);}
.m117_c00323{transform:matrix(0.194156,-0.002330,0.003000,0.249982,0,0);-ms-transform:matrix(0.194156,-0.002330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194156,-0.002330,0.003000,0.249982,0,0);}
.m1f_c00323{transform:matrix(0.194185,-0.003690,0.004749,0.249955,0,0);-ms-transform:matrix(0.194185,-0.003690,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194185,-0.003690,0.004749,0.249955,0,0);}
.m54_c00323{transform:matrix(0.194239,-0.003496,0.004499,0.249960,0,0);-ms-transform:matrix(0.194239,-0.003496,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194239,-0.003496,0.004499,0.249960,0,0);}
.m40_c00323{transform:matrix(0.194294,-0.003497,0.004499,0.249960,0,0);-ms-transform:matrix(0.194294,-0.003497,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194294,-0.003497,0.004499,0.249960,0,0);}
.mcf_c00323{transform:matrix(0.194306,-0.002720,0.003500,0.249976,0,0);-ms-transform:matrix(0.194306,-0.002720,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194306,-0.002720,0.003500,0.249976,0,0);}
.mf2_c00323{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);}
.me1_c00323{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);}
.m6a_c00323{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);}
.m79_c00323{transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-ms-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);}
.m5f_c00323{transform:matrix(0.195183,-0.003513,0.004499,0.249960,0,0);-ms-transform:matrix(0.195183,-0.003513,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195183,-0.003513,0.004499,0.249960,0,0);}
.m107_c00323{transform:matrix(0.195641,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195641,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195641,-0.002348,0.003000,0.249982,0,0);}
.m9a_c00323{transform:matrix(0.195743,-0.003523,0.004499,0.249960,0,0);-ms-transform:matrix(0.195743,-0.003523,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195743,-0.003523,0.004499,0.249960,0,0);}
.ma9_c00323{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);}
.m68_c00323{transform:matrix(0.195928,-0.003527,0.004499,0.249960,0,0);-ms-transform:matrix(0.195928,-0.003527,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195928,-0.003527,0.004499,0.249960,0,0);}
.m77_c00323{transform:matrix(0.196283,-0.003533,0.004499,0.249960,0,0);-ms-transform:matrix(0.196283,-0.003533,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196283,-0.003533,0.004499,0.249960,0,0);}
.m13b_c00323{transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);}
.mf4_c00323{transform:matrix(0.196671,-0.002753,0.003500,0.249976,0,0);-ms-transform:matrix(0.196671,-0.002753,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196671,-0.002753,0.003500,0.249976,0,0);}
.m136_c00323{transform:matrix(0.197085,-0.001380,0.001750,0.249994,0,0);-ms-transform:matrix(0.197085,-0.001380,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197085,-0.001380,0.001750,0.249994,0,0);}
.ma0_c00323{transform:matrix(0.197446,-0.002764,0.003500,0.249976,0,0);-ms-transform:matrix(0.197446,-0.002764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197446,-0.002764,0.003500,0.249976,0,0);}
.m14a_c00323{transform:matrix(0.197500,-0.001383,0.001750,0.249994,0,0);-ms-transform:matrix(0.197500,-0.001383,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197500,-0.001383,0.001750,0.249994,0,0);}
.m34_c00323{transform:matrix(0.197538,-0.003556,0.004499,0.249960,0,0);-ms-transform:matrix(0.197538,-0.003556,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197538,-0.003556,0.004499,0.249960,0,0);}
.m67_c00323{transform:matrix(0.197578,-0.003556,0.004499,0.249960,0,0);-ms-transform:matrix(0.197578,-0.003556,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197578,-0.003556,0.004499,0.249960,0,0);}
.m27_c00323{transform:matrix(0.198019,-0.003762,0.004749,0.249955,0,0);-ms-transform:matrix(0.198019,-0.003762,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198019,-0.003762,0.004749,0.249955,0,0);}
.m63_c00323{transform:matrix(0.199378,-0.003589,0.004499,0.249960,0,0);-ms-transform:matrix(0.199378,-0.003589,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199378,-0.003589,0.004499,0.249960,0,0);}
.ma5_c00323{transform:matrix(0.199580,-0.002794,0.003500,0.249976,0,0);-ms-transform:matrix(0.199580,-0.002794,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199580,-0.002794,0.003500,0.249976,0,0);}
.m128_c00323{transform:matrix(0.200450,-0.001403,0.001750,0.249994,0,0);-ms-transform:matrix(0.200450,-0.001403,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200450,-0.001403,0.001750,0.249994,0,0);}
.m14b_c00323{transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);}
.mdc_c00323{transform:matrix(0.200835,-0.002812,0.003500,0.249976,0,0);-ms-transform:matrix(0.200835,-0.002812,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200835,-0.002812,0.003500,0.249976,0,0);}
.m36_c00323{transform:matrix(0.200957,-0.003617,0.004499,0.249960,0,0);-ms-transform:matrix(0.200957,-0.003617,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200957,-0.003617,0.004499,0.249960,0,0);}
.m145_c00323{transform:matrix(0.201142,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201142,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201142,-0.001810,0.002250,0.249990,0,0);}
.mfc_c00323{transform:matrix(0.201286,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201286,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201286,-0.002415,0.003000,0.249982,0,0);}
.m104_c00323{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);}
.m126_c00323{transform:matrix(0.201795,-0.001413,0.001750,0.249994,0,0);-ms-transform:matrix(0.201795,-0.001413,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201795,-0.001413,0.001750,0.249994,0,0);}
.m10a_c00323{transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);-ms-transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);}
.m33_c00323{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);}
.m118_c00323{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);}
.m71_c00323{transform:matrix(0.202262,-0.003641,0.004499,0.249960,0,0);-ms-transform:matrix(0.202262,-0.003641,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202262,-0.003641,0.004499,0.249960,0,0);}
.m12a_c00323{transform:matrix(0.202325,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202325,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202325,-0.001416,0.001750,0.249994,0,0);}
.m88_c00323{transform:matrix(0.202347,-0.003642,0.004499,0.249960,0,0);-ms-transform:matrix(0.202347,-0.003642,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202347,-0.003642,0.004499,0.249960,0,0);}
.m13f_c00323{transform:matrix(0.202597,-0.001823,0.002250,0.249990,0,0);-ms-transform:matrix(0.202597,-0.001823,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202597,-0.001823,0.002250,0.249990,0,0);}
.m55_c00323{transform:matrix(0.202602,-0.003647,0.004499,0.249960,0,0);-ms-transform:matrix(0.202602,-0.003647,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202602,-0.003647,0.004499,0.249960,0,0);}
.m31_c00323{transform:matrix(0.202667,-0.003648,0.004499,0.249960,0,0);-ms-transform:matrix(0.202667,-0.003648,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202667,-0.003648,0.004499,0.249960,0,0);}
.m122_c00323{transform:matrix(0.202815,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202815,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202815,-0.001420,0.001750,0.249994,0,0);}
.m94_c00323{transform:matrix(0.202932,-0.003653,0.004499,0.249960,0,0);-ms-transform:matrix(0.202932,-0.003653,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202932,-0.003653,0.004499,0.249960,0,0);}
.mf0_c00323{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);}
.m84_c00323{transform:matrix(0.203182,-0.003657,0.004499,0.249960,0,0);-ms-transform:matrix(0.203182,-0.003657,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203182,-0.003657,0.004499,0.249960,0,0);}
.m108_c00323{transform:matrix(0.203205,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203205,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203205,-0.002438,0.003000,0.249982,0,0);}
.m7f_c00323{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);}
.m10_c00323{transform:matrix(0.205415,-0.004519,0.005499,0.249940,0,0);-ms-transform:matrix(0.205415,-0.004519,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205415,-0.004519,0.005499,0.249940,0,0);}
.m99_c00323{transform:matrix(0.205512,-0.003699,0.004499,0.249960,0,0);-ms-transform:matrix(0.205512,-0.003699,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205512,-0.003699,0.004499,0.249960,0,0);}
.m102_c00323{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);}
.mf9_c00323{transform:matrix(0.206725,-0.002481,0.003000,0.249982,0,0);-ms-transform:matrix(0.206725,-0.002481,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206725,-0.002481,0.003000,0.249982,0,0);}
.m62_c00323{transform:matrix(0.207091,-0.003728,0.004499,0.249960,0,0);-ms-transform:matrix(0.207091,-0.003728,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207091,-0.003728,0.004499,0.249960,0,0);}
.mab_c00323{transform:matrix(0.207270,-0.002902,0.003500,0.249976,0,0);-ms-transform:matrix(0.207270,-0.002902,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207270,-0.002902,0.003500,0.249976,0,0);}
.m135_c00323{transform:matrix(0.207270,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207270,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207270,-0.001451,0.001750,0.249994,0,0);}
.m155_c00323{transform:matrix(0.207335,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207335,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207335,-0.001451,0.001750,0.249994,0,0);}
.mb7_c00323{transform:matrix(0.207640,-0.002907,0.003500,0.249976,0,0);-ms-transform:matrix(0.207640,-0.002907,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207640,-0.002907,0.003500,0.249976,0,0);}
.m9d_c00323{transform:matrix(0.207665,-0.002907,0.003500,0.249976,0,0);-ms-transform:matrix(0.207665,-0.002907,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207665,-0.002907,0.003500,0.249976,0,0);}
.m46_c00323{transform:matrix(0.207921,-0.003743,0.004499,0.249960,0,0);-ms-transform:matrix(0.207921,-0.003743,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207921,-0.003743,0.004499,0.249960,0,0);}
.m15_c00323{transform:matrix(0.207977,-0.003952,0.004749,0.249955,0,0);-ms-transform:matrix(0.207977,-0.003952,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207977,-0.003952,0.004749,0.249955,0,0);}
.m87_c00323{transform:matrix(0.208306,-0.003750,0.004499,0.249960,0,0);-ms-transform:matrix(0.208306,-0.003750,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208306,-0.003750,0.004499,0.249960,0,0);}
.m72_c00323{transform:matrix(0.208311,-0.003750,0.004499,0.249960,0,0);-ms-transform:matrix(0.208311,-0.003750,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208311,-0.003750,0.004499,0.249960,0,0);}
.m61_c00323{transform:matrix(0.208321,-0.003750,0.004499,0.249960,0,0);-ms-transform:matrix(0.208321,-0.003750,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208321,-0.003750,0.004499,0.249960,0,0);}
.me0_c00323{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);}
.mb3_c00323{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);}
.m14c_c00323{transform:matrix(0.210145,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210145,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210145,-0.001471,0.001750,0.249994,0,0);}
.m8a_c00323{transform:matrix(0.210171,-0.003783,0.004499,0.249960,0,0);-ms-transform:matrix(0.210171,-0.003783,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210171,-0.003783,0.004499,0.249960,0,0);}
.m83_c00323{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);}
.mae_c00323{transform:matrix(0.210579,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210579,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210579,-0.002948,0.003500,0.249976,0,0);}
.m90_c00323{transform:matrix(0.211071,-0.003799,0.004499,0.249960,0,0);-ms-transform:matrix(0.211071,-0.003799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211071,-0.003799,0.004499,0.249960,0,0);}
.m154_c00323{transform:matrix(0.211190,-0.001478,0.001750,0.249994,0,0);-ms-transform:matrix(0.211190,-0.001478,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211190,-0.001478,0.001750,0.249994,0,0);}
.mda_c00323{transform:matrix(0.211404,-0.002960,0.003500,0.249976,0,0);-ms-transform:matrix(0.211404,-0.002960,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211404,-0.002960,0.003500,0.249976,0,0);}
.md4_c00323{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);}
.m49_c00323{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);}
.m119_c00323{transform:matrix(0.211545,-0.002539,0.003000,0.249982,0,0);-ms-transform:matrix(0.211545,-0.002539,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211545,-0.002539,0.003000,0.249982,0,0);}
.m39_c00323{transform:matrix(0.211896,-0.003814,0.004499,0.249960,0,0);-ms-transform:matrix(0.211896,-0.003814,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211896,-0.003814,0.004499,0.249960,0,0);}
.mb5_c00323{transform:matrix(0.212794,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212794,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212794,-0.002979,0.003500,0.249976,0,0);}
.m80_c00323{transform:matrix(0.213840,-0.003849,0.004499,0.249960,0,0);-ms-transform:matrix(0.213840,-0.003849,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213840,-0.003849,0.004499,0.249960,0,0);}
.mec_c00323{transform:matrix(0.214564,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214564,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214564,-0.003004,0.003500,0.249976,0,0);}
.m5c_c00323{transform:matrix(0.214965,-0.003869,0.004499,0.249960,0,0);-ms-transform:matrix(0.214965,-0.003869,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214965,-0.003869,0.004499,0.249960,0,0);}
.m3a_c00323{transform:matrix(0.215195,-0.003874,0.004499,0.249960,0,0);-ms-transform:matrix(0.215195,-0.003874,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215195,-0.003874,0.004499,0.249960,0,0);}
.m26_c00323{transform:matrix(0.215586,-0.004096,0.004749,0.249955,0,0);-ms-transform:matrix(0.215586,-0.004096,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215586,-0.004096,0.004749,0.249955,0,0);}
.md6_c00323{transform:matrix(0.216049,-0.003025,0.003500,0.249976,0,0);-ms-transform:matrix(0.216049,-0.003025,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216049,-0.003025,0.003500,0.249976,0,0);}
.ma6_c00323{transform:matrix(0.216749,-0.003034,0.003500,0.249976,0,0);-ms-transform:matrix(0.216749,-0.003034,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216749,-0.003034,0.003500,0.249976,0,0);}
.m5e_c00323{transform:matrix(0.217365,-0.003913,0.004499,0.249960,0,0);-ms-transform:matrix(0.217365,-0.003913,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217365,-0.003913,0.004499,0.249960,0,0);}
.m10f_c00323{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);}
.m53_c00323{transform:matrix(0.217635,-0.003917,0.004499,0.249960,0,0);-ms-transform:matrix(0.217635,-0.003917,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217635,-0.003917,0.004499,0.249960,0,0);}
.mb8_c00323{transform:matrix(0.218584,-0.003060,0.003500,0.249976,0,0);-ms-transform:matrix(0.218584,-0.003060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218584,-0.003060,0.003500,0.249976,0,0);}
.m81_c00323{transform:matrix(0.218820,-0.003939,0.004499,0.249960,0,0);-ms-transform:matrix(0.218820,-0.003939,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218820,-0.003939,0.004499,0.249960,0,0);}
.m3b_c00323{transform:matrix(0.219409,-0.003949,0.004499,0.249960,0,0);-ms-transform:matrix(0.219409,-0.003949,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219409,-0.003949,0.004499,0.249960,0,0);}
.mbc_c00323{transform:matrix(0.219838,-0.003078,0.003500,0.249976,0,0);-ms-transform:matrix(0.219838,-0.003078,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219838,-0.003078,0.003500,0.249976,0,0);}
.m58_c00323{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);}
.m157_c00323{transform:matrix(0.221525,-0.001551,0.001750,0.249994,0,0);-ms-transform:matrix(0.221525,-0.001551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221525,-0.001551,0.001750,0.249994,0,0);}
.m11f_c00323{transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221549,-0.002659,0.003000,0.249982,0,0);}
.m44_c00323{transform:matrix(0.222584,-0.004007,0.004499,0.249960,0,0);-ms-transform:matrix(0.222584,-0.004007,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222584,-0.004007,0.004499,0.249960,0,0);}
.m9b_c00323{transform:matrix(0.223133,-0.003124,0.003500,0.249976,0,0);-ms-transform:matrix(0.223133,-0.003124,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223133,-0.003124,0.003500,0.249976,0,0);}
.m153_c00323{transform:matrix(0.223180,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223180,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223180,-0.001562,0.001750,0.249994,0,0);}
.md8_c00323{transform:matrix(0.224043,-0.003137,0.003500,0.249976,0,0);-ms-transform:matrix(0.224043,-0.003137,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224043,-0.003137,0.003500,0.249976,0,0);}
.m11b_c00323{transform:matrix(0.224054,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224054,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224054,-0.002689,0.003000,0.249982,0,0);}
.m93_c00323{transform:matrix(0.226083,-0.004070,0.004499,0.249960,0,0);-ms-transform:matrix(0.226083,-0.004070,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226083,-0.004070,0.004499,0.249960,0,0);}
.mea_c00323{transform:matrix(0.226708,-0.003174,0.003500,0.249976,0,0);-ms-transform:matrix(0.226708,-0.003174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226708,-0.003174,0.003500,0.249976,0,0);}
.m10d_c00323{transform:matrix(0.227154,-0.002726,0.003000,0.249982,0,0);-ms-transform:matrix(0.227154,-0.002726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227154,-0.002726,0.003000,0.249982,0,0);}
.m109_c00323{transform:matrix(0.228204,-0.002738,0.003000,0.249982,0,0);-ms-transform:matrix(0.228204,-0.002738,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228204,-0.002738,0.003000,0.249982,0,0);}
.m11e_c00323{transform:matrix(0.228674,-0.002744,0.003000,0.249982,0,0);-ms-transform:matrix(0.228674,-0.002744,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228674,-0.002744,0.003000,0.249982,0,0);}
.m50_c00323{transform:matrix(0.229373,-0.004129,0.004499,0.249960,0,0);-ms-transform:matrix(0.229373,-0.004129,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229373,-0.004129,0.004499,0.249960,0,0);}
.me5_c00323{transform:matrix(0.230062,-0.003221,0.003500,0.249976,0,0);-ms-transform:matrix(0.230062,-0.003221,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230062,-0.003221,0.003500,0.249976,0,0);}
.me6_c00323{transform:matrix(0.230277,-0.003224,0.003500,0.249976,0,0);-ms-transform:matrix(0.230277,-0.003224,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230277,-0.003224,0.003500,0.249976,0,0);}
.m113_c00323{transform:matrix(0.231183,-0.002774,0.003000,0.249982,0,0);-ms-transform:matrix(0.231183,-0.002774,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231183,-0.002774,0.003000,0.249982,0,0);}
.m5_c00323{transform:matrix(0.232274,-0.005110,0.005499,0.249940,0,0);-ms-transform:matrix(0.232274,-0.005110,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232274,-0.005110,0.005499,0.249940,0,0);}
.mf5_c00323{transform:matrix(0.233163,-0.002798,0.003000,0.249982,0,0);-ms-transform:matrix(0.233163,-0.002798,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233163,-0.002798,0.003000,0.249982,0,0);}
.mb2_c00323{transform:matrix(0.234022,-0.003276,0.003500,0.249976,0,0);-ms-transform:matrix(0.234022,-0.003276,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234022,-0.003276,0.003500,0.249976,0,0);}
.m11a_c00323{transform:matrix(0.234413,-0.002813,0.003000,0.249982,0,0);-ms-transform:matrix(0.234413,-0.002813,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234413,-0.002813,0.003000,0.249982,0,0);}
.mca_c00323{transform:matrix(0.236062,-0.003305,0.003500,0.249976,0,0);-ms-transform:matrix(0.236062,-0.003305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236062,-0.003305,0.003500,0.249976,0,0);}
.mac_c00323{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);}
.m110_c00323{transform:matrix(0.237058,-0.002845,0.003000,0.249982,0,0);-ms-transform:matrix(0.237058,-0.002845,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237058,-0.002845,0.003000,0.249982,0,0);}
.m14d_c00323{transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);-ms-transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);}
.m101_c00323{transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);-ms-transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);}
.m86_c00323{transform:matrix(0.238856,-0.004299,0.004499,0.249960,0,0);-ms-transform:matrix(0.238856,-0.004299,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238856,-0.004299,0.004499,0.249960,0,0);}
.m18_c00323{transform:matrix(0.238877,-0.004539,0.004749,0.249955,0,0);-ms-transform:matrix(0.238877,-0.004539,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238877,-0.004539,0.004749,0.249955,0,0);}
.m6f_c00323{transform:matrix(0.239786,-0.004316,0.004499,0.249960,0,0);-ms-transform:matrix(0.239786,-0.004316,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239786,-0.004316,0.004499,0.249960,0,0);}
.m11_c00323{transform:matrix(0.240032,-0.005281,0.005499,0.249940,0,0);-ms-transform:matrix(0.240032,-0.005281,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240032,-0.005281,0.005499,0.249940,0,0);}
.m127_c00323{transform:matrix(0.240039,-0.001680,0.001750,0.249994,0,0);-ms-transform:matrix(0.240039,-0.001680,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240039,-0.001680,0.001750,0.249994,0,0);}
.m12b_c00323{transform:matrix(0.240994,-0.001687,0.001750,0.249994,0,0);-ms-transform:matrix(0.240994,-0.001687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240994,-0.001687,0.001750,0.249994,0,0);}
.m51_c00323{transform:matrix(0.241036,-0.004339,0.004499,0.249960,0,0);-ms-transform:matrix(0.241036,-0.004339,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241036,-0.004339,0.004499,0.249960,0,0);}
.m11c_c00323{transform:matrix(0.243018,-0.002916,0.003000,0.249982,0,0);-ms-transform:matrix(0.243018,-0.002916,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243018,-0.002916,0.003000,0.249982,0,0);}
.m1e_c00323{transform:matrix(0.243471,-0.004626,0.004749,0.249955,0,0);-ms-transform:matrix(0.243471,-0.004626,0.004749,0.249955,0,0);-webkit-transform:matrix(0.243471,-0.004626,0.004749,0.249955,0,0);}
.m158_c00323{transform:matrix(0.244084,0.003905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244084,0.003905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244084,0.003905,-0.003999,0.249968,0,0);}
.m4d_c00323{transform:matrix(0.245165,-0.004413,0.004499,0.249960,0,0);-ms-transform:matrix(0.245165,-0.004413,0.004499,0.249960,0,0);-webkit-transform:matrix(0.245165,-0.004413,0.004499,0.249960,0,0);}
.m125_c00323{transform:matrix(0.245774,-0.001720,0.001750,0.249994,0,0);-ms-transform:matrix(0.245774,-0.001720,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245774,-0.001720,0.001750,0.249994,0,0);}
.m150_c00323{transform:matrix(0.249349,-0.001745,0.001750,0.249994,0,0);-ms-transform:matrix(0.249349,-0.001745,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249349,-0.001745,0.001750,0.249994,0,0);}
.m98_c00323{transform:matrix(0.249970,-0.004499,0.004499,0.249960,0,0);-ms-transform:matrix(0.249970,-0.004499,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249970,-0.004499,0.004499,0.249960,0,0);}
.m10b_c00323{transform:matrix(0.252412,-0.003029,0.003000,0.249982,0,0);-ms-transform:matrix(0.252412,-0.003029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252412,-0.003029,0.003000,0.249982,0,0);}
.mb9_c00323{transform:matrix(0.252925,-0.003541,0.003500,0.249976,0,0);-ms-transform:matrix(0.252925,-0.003541,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252925,-0.003541,0.003500,0.249976,0,0);}
.maa_c00323{transform:matrix(0.255195,-0.003573,0.003500,0.249976,0,0);-ms-transform:matrix(0.255195,-0.003573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255195,-0.003573,0.003500,0.249976,0,0);}
.m129_c00323{transform:matrix(0.255504,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255504,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255504,-0.001789,0.001750,0.249994,0,0);}
.m3d_c00323{transform:matrix(0.264287,-0.004757,0.004499,0.249960,0,0);-ms-transform:matrix(0.264287,-0.004757,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264287,-0.004757,0.004499,0.249960,0,0);}
.m2f_c00323{transform:matrix(0.266137,-0.004790,0.004499,0.249960,0,0);-ms-transform:matrix(0.266137,-0.004790,0.004499,0.249960,0,0);-webkit-transform:matrix(0.266137,-0.004790,0.004499,0.249960,0,0);}
.m7a_c00323{transform:matrix(0.268197,-0.004828,0.004499,0.249960,0,0);-ms-transform:matrix(0.268197,-0.004828,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268197,-0.004828,0.004499,0.249960,0,0);}
.m2d_c00323{transform:matrix(0.268232,-0.004828,0.004499,0.249960,0,0);-ms-transform:matrix(0.268232,-0.004828,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268232,-0.004828,0.004499,0.249960,0,0);}
.m162_c00323{transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273805,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.276158,-0.006075,0.005499,0.249940,0,0);-ms-transform:matrix(0.276158,-0.006075,0.005499,0.249940,0,0);-webkit-transform:matrix(0.276158,-0.006075,0.005499,0.249940,0,0);}
.m89_c00323{transform:matrix(0.294682,-0.005304,0.004499,0.249960,0,0);-ms-transform:matrix(0.294682,-0.005304,0.004499,0.249960,0,0);-webkit-transform:matrix(0.294682,-0.005304,0.004499,0.249960,0,0);}
.me_c00323{transform:matrix(0.295728,-0.006506,0.005499,0.249940,0,0);-ms-transform:matrix(0.295728,-0.006506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.295728,-0.006506,0.005499,0.249940,0,0);}
.md_c00323{transform:matrix(0.304081,-0.006690,0.005499,0.249940,0,0);-ms-transform:matrix(0.304081,-0.006690,0.005499,0.249940,0,0);-webkit-transform:matrix(0.304081,-0.006690,0.005499,0.249940,0,0);}
.m15c_c00323{transform:matrix(0.315540,0.005049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.315540,0.005049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.315540,0.005049,-0.003999,0.249968,0,0);}
.m146_c00323{transform:matrix(0.325282,-0.002928,0.002250,0.249990,0,0);-ms-transform:matrix(0.325282,-0.002928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.325282,-0.002928,0.002250,0.249990,0,0);}
.mc_c00323{transform:matrix(0.341702,-0.007517,0.005499,0.249940,0,0);-ms-transform:matrix(0.341702,-0.007517,0.005499,0.249940,0,0);-webkit-transform:matrix(0.341702,-0.007517,0.005499,0.249940,0,0);}
.m7_c00323{transform:matrix(0.344737,-0.007584,0.005499,0.249940,0,0);-ms-transform:matrix(0.344737,-0.007584,0.005499,0.249940,0,0);-webkit-transform:matrix(0.344737,-0.007584,0.005499,0.249940,0,0);}
.mde_c00323{transform:matrix(0.345981,-0.004844,0.003500,0.249976,0,0);-ms-transform:matrix(0.345981,-0.004844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.345981,-0.004844,0.003500,0.249976,0,0);}
.m0_c00323{transform:matrix(0.347680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347680,0.000000,0.000000,0.250000,0,0);}
.mba_c00323{transform:matrix(0.347961,-0.004871,0.003500,0.249976,0,0);-ms-transform:matrix(0.347961,-0.004871,0.003500,0.249976,0,0);-webkit-transform:matrix(0.347961,-0.004871,0.003500,0.249976,0,0);}
.mb_c00323{transform:matrix(0.363612,-0.007999,0.005499,0.249940,0,0);-ms-transform:matrix(0.363612,-0.007999,0.005499,0.249940,0,0);-webkit-transform:matrix(0.363612,-0.007999,0.005499,0.249940,0,0);}
.m47_c00323{transform:matrix(0.364606,-0.006563,0.004499,0.249960,0,0);-ms-transform:matrix(0.364606,-0.006563,0.004499,0.249960,0,0);-webkit-transform:matrix(0.364606,-0.006563,0.004499,0.249960,0,0);}
.m7b_c00323{transform:matrix(0.364701,-0.006565,0.004499,0.249960,0,0);-ms-transform:matrix(0.364701,-0.006565,0.004499,0.249960,0,0);-webkit-transform:matrix(0.364701,-0.006565,0.004499,0.249960,0,0);}
.mfd_c00323{transform:matrix(0.365154,-0.004382,0.003000,0.249982,0,0);-ms-transform:matrix(0.365154,-0.004382,0.003000,0.249982,0,0);-webkit-transform:matrix(0.365154,-0.004382,0.003000,0.249982,0,0);}
.med_c00323{transform:matrix(0.371369,-0.005199,0.003500,0.249976,0,0);-ms-transform:matrix(0.371369,-0.005199,0.003500,0.249976,0,0);-webkit-transform:matrix(0.371369,-0.005199,0.003500,0.249976,0,0);}
.m12_c00323{transform:matrix(0.406942,-0.008953,0.005499,0.249940,0,0);-ms-transform:matrix(0.406942,-0.008953,0.005499,0.249940,0,0);-webkit-transform:matrix(0.406942,-0.008953,0.005499,0.249940,0,0);}
.m14_c00323{transform:matrix(0.421633,-0.009276,0.005499,0.249940,0,0);-ms-transform:matrix(0.421633,-0.009276,0.005499,0.249940,0,0);-webkit-transform:matrix(0.421633,-0.009276,0.005499,0.249940,0,0);}
.m161_c00323{transform:matrix(0.423606,0.006778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.423606,0.006778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.423606,0.006778,-0.003999,0.249968,0,0);}
.m15b_c00323{transform:matrix(0.437004,0.006992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.437004,0.006992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.437004,0.006992,-0.003999,0.249968,0,0);}
.m1_c00323{transform:matrix(0.437145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437145,0.000000,0.000000,0.250000,0,0);}
.m15f_c00323{transform:matrix(0.453437,0.007255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.453437,0.007255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.453437,0.007255,-0.003999,0.249968,0,0);}
.m159_c00323{transform:matrix(0.471465,0.007543,-0.003999,0.249968,0,0);-ms-transform:matrix(0.471465,0.007543,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.471465,0.007543,-0.003999,0.249968,0,0);}
.m6_c00323{transform:matrix(0.474525,-0.010440,0.005499,0.249940,0,0);-ms-transform:matrix(0.474525,-0.010440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.474525,-0.010440,0.005499,0.249940,0,0);}
.m4_c00323{transform:matrix(0.601339,-0.013229,0.005499,0.249940,0,0);-ms-transform:matrix(0.601339,-0.013229,0.005499,0.249940,0,0);-webkit-transform:matrix(0.601339,-0.013229,0.005499,0.249940,0,0);}
.m15a_c00323{transform:matrix(0.659416,0.010551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.659416,0.010551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.659416,0.010551,-0.003999,0.249968,0,0);}
.m15d_c00323{transform:matrix(0.703025,0.011248,-0.003999,0.249968,0,0);-ms-transform:matrix(0.703025,0.011248,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.703025,0.011248,-0.003999,0.249968,0,0);}
.m2_c00323{transform:matrix(0.731412,-0.013165,0.004499,0.249960,0,0);-ms-transform:matrix(0.731412,-0.013165,0.004499,0.249960,0,0);-webkit-transform:matrix(0.731412,-0.013165,0.004499,0.249960,0,0);}
.m160_c00323{transform:matrix(0.808721,0.012940,-0.003999,0.249968,0,0);-ms-transform:matrix(0.808721,0.012940,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.808721,0.012940,-0.003999,0.249968,0,0);}
.m15e_c00323{transform:matrix(0.844467,0.013511,-0.003999,0.249968,0,0);-ms-transform:matrix(0.844467,0.013511,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.844467,0.013511,-0.003999,0.249968,0,0);}
.m3_c00323{transform:matrix(1.387530,-0.024976,0.004499,0.249960,0,0);-ms-transform:matrix(1.387530,-0.024976,0.004499,0.249960,0,0);-webkit-transform:matrix(1.387530,-0.024976,0.004499,0.249960,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;}
.fs0_c00323{font-size:16.800000px;}
.fs3_c00323{font-size:22.055335px;}
.fs1_c00323{font-size:31.500000px;}
.fs17_c00323{font-size:31.504032px;}
.fs19_c00323{font-size:51.450000px;}
.fsd_c00323{font-size:60.905968px;}
.fs9_c00323{font-size:61.960035px;}
.fs11_c00323{font-size:67.204838px;}
.fsf_c00323{font-size:67.206585px;}
.fs16_c00323{font-size:68.251672px;}
.fs10_c00323{font-size:68.254914px;}
.fsc_c00323{font-size:68.256688px;}
.fs7_c00323{font-size:68.261056px;}
.fs5_c00323{font-size:68.262318px;}
.fs13_c00323{font-size:69.301698px;}
.fs12_c00323{font-size:69.304989px;}
.fse_c00323{font-size:69.306791px;}
.fs8_c00323{font-size:69.311226px;}
.fsb_c00323{font-size:70.356894px;}
.fs6_c00323{font-size:70.361396px;}
.fs14_c00323{font-size:71.401749px;}
.fsa_c00323{font-size:71.411566px;}
.fs15_c00323{font-size:75.603062px;}
.fs4_c00323{font-size:75.613645px;}
.fs18_c00323{font-size:78.760079px;}
.fs2_c00323{font-size:134.421771px;}
.y0_c00323{bottom:0.000000px;}
.y165_c00323{bottom:84.754764px;}
.y164_c00323{bottom:84.755232px;}
.y163_c00323{bottom:84.755844px;}
.y162_c00323{bottom:108.694104px;}
.y161_c00323{bottom:109.091496px;}
.y160_c00323{bottom:109.309848px;}
.y15f_c00323{bottom:110.064024px;}
.y15e_c00323{bottom:110.396616px;}
.y15d_c00323{bottom:111.071136px;}
.y15c_c00323{bottom:111.240000px;}
.y15a_c00323{bottom:129.176730px;}
.y15b_c00323{bottom:129.177110px;}
.y14e_c00323{bottom:148.770000px;}
.y14f_c00323{bottom:148.977900px;}
.y150_c00323{bottom:149.125131px;}
.y151_c00323{bottom:149.486320px;}
.y152_c00323{bottom:149.688582px;}
.y153_c00323{bottom:150.134874px;}
.y154_c00323{bottom:150.491801px;}
.y155_c00323{bottom:150.616646px;}
.y156_c00323{bottom:150.841472px;}
.y157_c00323{bottom:150.958557px;}
.y158_c00323{bottom:151.308301px;}
.y159_c00323{bottom:151.875249px;}
.y143_c00323{bottom:170.911500px;}
.y144_c00323{bottom:171.278106px;}
.y145_c00323{bottom:171.579413px;}
.y146_c00323{bottom:171.800975px;}
.y147_c00323{bottom:172.090172px;}
.y148_c00323{bottom:172.904235px;}
.y149_c00323{bottom:173.173979px;}
.y14a_c00323{bottom:173.703786px;}
.y14b_c00323{bottom:173.874453px;}
.y14c_c00323{bottom:174.337517px;}
.y14d_c00323{bottom:175.032929px;}
.y13f_c00323{bottom:195.212301px;}
.y13e_c00323{bottom:195.212852px;}
.y140_c00323{bottom:195.212921px;}
.y141_c00323{bottom:195.213270px;}
.y142_c00323{bottom:195.213360px;}
.y132_c00323{bottom:216.540000px;}
.y133_c00323{bottom:216.800841px;}
.y134_c00323{bottom:216.970994px;}
.y135_c00323{bottom:217.362213px;}
.y136_c00323{bottom:217.505916px;}
.y137_c00323{bottom:217.982207px;}
.y138_c00323{bottom:218.340834px;}
.y139_c00323{bottom:218.437760px;}
.y13a_c00323{bottom:218.622959px;}
.y13b_c00323{bottom:218.791431px;}
.y13c_c00323{bottom:219.390015px;}
.y13d_c00323{bottom:219.496086px;}
.y126_c00323{bottom:239.220000px;}
.y127_c00323{bottom:239.475192px;}
.y128_c00323{bottom:239.775471px;}
.y129_c00323{bottom:239.938347px;}
.y12a_c00323{bottom:240.219947px;}
.y12b_c00323{bottom:240.441129px;}
.y12c_c00323{bottom:240.987350px;}
.y12d_c00323{bottom:241.268991px;}
.y12e_c00323{bottom:241.588527px;}
.y12f_c00323{bottom:242.002259px;}
.y130_c00323{bottom:242.174154px;}
.y131_c00323{bottom:242.349956px;}
.y11c_c00323{bottom:261.630720px;}
.y11d_c00323{bottom:262.031766px;}
.y11e_c00323{bottom:262.391214px;}
.y11f_c00323{bottom:263.289528px;}
.y120_c00323{bottom:263.542974px;}
.y121_c00323{bottom:263.752830px;}
.y122_c00323{bottom:264.369282px;}
.y123_c00323{bottom:264.460008px;}
.y124_c00323{bottom:264.846168px;}
.y125_c00323{bottom:265.563396px;}
.y10f_c00323{bottom:283.770276px;}
.y110_c00323{bottom:284.191752px;}
.y111_c00323{bottom:284.747670px;}
.y112_c00323{bottom:285.110262px;}
.y113_c00323{bottom:285.511968px;}
.y114_c00323{bottom:285.793572px;}
.y115_c00323{bottom:286.379328px;}
.y116_c00323{bottom:286.730298px;}
.y117_c00323{bottom:286.936128px;}
.y118_c00323{bottom:287.314728px;}
.y119_c00323{bottom:287.619294px;}
.y11a_c00323{bottom:287.922228px;}
.y11b_c00323{bottom:288.216384px;}
.y106_c00323{bottom:305.886000px;}
.y107_c00323{bottom:306.809364px;}
.y108_c00323{bottom:307.331130px;}
.y109_c00323{bottom:308.263710px;}
.y10a_c00323{bottom:308.712270px;}
.y10b_c00323{bottom:309.362772px;}
.y10c_c00323{bottom:309.799704px;}
.y10d_c00323{bottom:310.273212px;}
.y10e_c00323{bottom:311.144718px;}
.yfa_c00323{bottom:328.591500px;}
.yfb_c00323{bottom:328.934418px;}
.yfc_c00323{bottom:329.466408px;}
.yfd_c00323{bottom:329.764578px;}
.yfe_c00323{bottom:330.600714px;}
.yff_c00323{bottom:331.367838px;}
.y100_c00323{bottom:331.676268px;}
.y101_c00323{bottom:332.136438px;}
.y102_c00323{bottom:332.868786px;}
.y103_c00323{bottom:333.066372px;}
.y104_c00323{bottom:333.510252px;}
.y105_c00323{bottom:333.986928px;}
.yee_c00323{bottom:351.258213px;}
.yef_c00323{bottom:351.685659px;}
.yf0_c00323{bottom:352.561524px;}
.yf1_c00323{bottom:352.846467px;}
.yf2_c00323{bottom:353.162277px;}
.yf3_c00323{bottom:353.569263px;}
.yf4_c00323{bottom:353.913222px;}
.yf5_c00323{bottom:354.539949px;}
.yf6_c00323{bottom:354.875652px;}
.yf7_c00323{bottom:355.161057px;}
.yf8_c00323{bottom:355.603731px;}
.yf9_c00323{bottom:356.124147px;}
.ye3_c00323{bottom:373.917027px;}
.ye4_c00323{bottom:374.185977px;}
.ye5_c00323{bottom:374.639694px;}
.ye6_c00323{bottom:375.212565px;}
.ye7_c00323{bottom:375.640176px;}
.ye8_c00323{bottom:375.986283px;}
.ye9_c00323{bottom:376.349748px;}
.yea_c00323{bottom:376.804263px;}
.yeb_c00323{bottom:377.375316px;}
.yec_c00323{bottom:378.250248px;}
.yed_c00323{bottom:379.189503px;}
.yd8_c00323{bottom:396.892557px;}
.yd9_c00323{bottom:397.311663px;}
.yda_c00323{bottom:398.062020px;}
.ydb_c00323{bottom:398.461086px;}
.ydc_c00323{bottom:399.268725px;}
.ydd_c00323{bottom:399.856791px;}
.yde_c00323{bottom:400.173558px;}
.ydf_c00323{bottom:400.610760px;}
.ye0_c00323{bottom:401.014470px;}
.ye1_c00323{bottom:401.350425px;}
.ye2_c00323{bottom:402.056385px;}
.ycd_c00323{bottom:419.844603px;}
.yce_c00323{bottom:420.053289px;}
.ycf_c00323{bottom:420.682008px;}
.yd0_c00323{bottom:421.122753px;}
.yd1_c00323{bottom:421.961703px;}
.yd2_c00323{bottom:422.210442px;}
.yd3_c00323{bottom:422.653404px;}
.yd4_c00323{bottom:422.899077px;}
.yd5_c00323{bottom:423.446682px;}
.yd6_c00323{bottom:423.776577px;}
.yd7_c00323{bottom:424.270380px;}
.yc2_c00323{bottom:442.256265px;}
.yc3_c00323{bottom:442.848027px;}
.yc4_c00323{bottom:443.112636px;}
.yc5_c00323{bottom:443.940609px;}
.yc6_c00323{bottom:444.810540px;}
.yc7_c00323{bottom:445.101921px;}
.yc8_c00323{bottom:445.521195px;}
.yc9_c00323{bottom:446.064477px;}
.yca_c00323{bottom:446.542515px;}
.ycb_c00323{bottom:446.902458px;}
.ycc_c00323{bottom:447.303300px;}
.yb6_c00323{bottom:464.935821px;}
.yb7_c00323{bottom:465.214224px;}
.yb8_c00323{bottom:465.783825px;}
.yb9_c00323{bottom:466.018206px;}
.yba_c00323{bottom:466.226871px;}
.ybb_c00323{bottom:466.657785px;}
.ybc_c00323{bottom:466.794213px;}
.ybd_c00323{bottom:467.455998px;}
.ybe_c00323{bottom:467.772720px;}
.ybf_c00323{bottom:468.318969px;}
.yc0_c00323{bottom:468.529641px;}
.yc1_c00323{bottom:469.010439px;}
.yaa_c00323{bottom:487.079220px;}
.yab_c00323{bottom:487.508178px;}
.yac_c00323{bottom:487.975065px;}
.yad_c00323{bottom:488.556705px;}
.yae_c00323{bottom:488.943156px;}
.yaf_c00323{bottom:489.644610px;}
.yb0_c00323{bottom:490.171992px;}
.yb1_c00323{bottom:490.891434px;}
.yb2_c00323{bottom:491.273517px;}
.yb3_c00323{bottom:491.923212px;}
.yb4_c00323{bottom:492.155448px;}
.yb5_c00323{bottom:492.877977px;}
.y9f_c00323{bottom:509.493000px;}
.ya0_c00323{bottom:510.096099px;}
.ya1_c00323{bottom:510.459042px;}
.ya2_c00323{bottom:510.907308px;}
.ya3_c00323{bottom:512.293476px;}
.ya4_c00323{bottom:512.637519px;}
.ya5_c00323{bottom:513.325416px;}
.ya6_c00323{bottom:513.831894px;}
.ya7_c00323{bottom:514.130493px;}
.ya8_c00323{bottom:514.489614px;}
.ya9_c00323{bottom:515.020872px;}
.y9a_c00323{bottom:532.141704px;}
.y9b_c00323{bottom:533.081817px;}
.y9c_c00323{bottom:533.858850px;}
.y9d_c00323{bottom:534.354489px;}
.y9e_c00323{bottom:534.694284px;}
.y8e_c00323{bottom:555.095625px;}
.y8f_c00323{bottom:555.863232px;}
.y90_c00323{bottom:556.206843px;}
.y91_c00323{bottom:556.917240px;}
.y92_c00323{bottom:557.629203px;}
.y93_c00323{bottom:557.999415px;}
.y94_c00323{bottom:558.695493px;}
.y95_c00323{bottom:559.055220px;}
.y96_c00323{bottom:559.647579px;}
.y97_c00323{bottom:559.818048px;}
.y98_c00323{bottom:560.547555px;}
.y99_c00323{bottom:561.118050px;}
.y82_c00323{bottom:577.506852px;}
.y83_c00323{bottom:578.445873px;}
.y84_c00323{bottom:579.054750px;}
.y85_c00323{bottom:579.766557px;}
.y86_c00323{bottom:580.261719px;}
.y87_c00323{bottom:581.044023px;}
.y88_c00323{bottom:581.437605px;}
.y89_c00323{bottom:582.227535px;}
.y8a_c00323{bottom:582.817407px;}
.y8b_c00323{bottom:583.316565px;}
.y8c_c00323{bottom:584.115606px;}
.y8d_c00323{bottom:584.403909px;}
.y76_c00323{bottom:600.192780px;}
.y77_c00323{bottom:601.225401px;}
.y78_c00323{bottom:601.751079px;}
.y79_c00323{bottom:602.037351px;}
.y7a_c00323{bottom:602.811399px;}
.y7b_c00323{bottom:603.109428px;}
.y7c_c00323{bottom:604.318863px;}
.y7d_c00323{bottom:604.880379px;}
.y7e_c00323{bottom:605.055546px;}
.y7f_c00323{bottom:605.286057px;}
.y80_c00323{bottom:605.973189px;}
.y81_c00323{bottom:606.460869px;}
.y6c_c00323{bottom:622.334589px;}
.y6d_c00323{bottom:623.500272px;}
.y6e_c00323{bottom:624.271050px;}
.y6f_c00323{bottom:625.060524px;}
.y70_c00323{bottom:625.773282px;}
.y71_c00323{bottom:627.026373px;}
.y72_c00323{bottom:627.392958px;}
.y73_c00323{bottom:627.812811px;}
.y74_c00323{bottom:629.764257px;}
.y75_c00323{bottom:630.172905px;}
.y62_c00323{bottom:644.748150px;}
.y63_c00323{bottom:645.633669px;}
.y64_c00323{bottom:646.492701px;}
.y65_c00323{bottom:646.915359px;}
.y66_c00323{bottom:647.485032px;}
.y67_c00323{bottom:648.499989px;}
.y68_c00323{bottom:649.517673px;}
.y69_c00323{bottom:650.008020px;}
.y6a_c00323{bottom:651.606879px;}
.y6b_c00323{bottom:652.622727px;}
.y58_c00323{bottom:667.700892px;}
.y59_c00323{bottom:668.081799px;}
.y5a_c00323{bottom:669.413739px;}
.y5b_c00323{bottom:670.492596px;}
.y5c_c00323{bottom:671.253654px;}
.y5d_c00323{bottom:671.974485px;}
.y5e_c00323{bottom:672.604101px;}
.y5f_c00323{bottom:673.196541px;}
.y60_c00323{bottom:674.551200px;}
.y61_c00323{bottom:675.669555px;}
.y4d_c00323{bottom:690.115560px;}
.y4e_c00323{bottom:691.612359px;}
.y4f_c00323{bottom:691.967517px;}
.y50_c00323{bottom:693.355938px;}
.y51_c00323{bottom:693.798468px;}
.y52_c00323{bottom:694.344111px;}
.y53_c00323{bottom:695.209407px;}
.y54_c00323{bottom:695.914161px;}
.y55_c00323{bottom:696.701886px;}
.y56_c00323{bottom:697.853787px;}
.y57_c00323{bottom:698.357742px;}
.y42_c00323{bottom:712.796934px;}
.y43_c00323{bottom:713.484228px;}
.y44_c00323{bottom:713.847657px;}
.y45_c00323{bottom:714.197061px;}
.y46_c00323{bottom:714.962334px;}
.y47_c00323{bottom:715.618689px;}
.y48_c00323{bottom:716.335341px;}
.y49_c00323{bottom:716.841123px;}
.y4a_c00323{bottom:717.204768px;}
.y4b_c00323{bottom:718.890546px;}
.y4c_c00323{bottom:720.057165px;}
.y36_c00323{bottom:735.209385px;}
.y37_c00323{bottom:735.915624px;}
.y38_c00323{bottom:736.615950px;}
.y39_c00323{bottom:737.656179px;}
.y3a_c00323{bottom:737.972646px;}
.y3b_c00323{bottom:739.104324px;}
.y3c_c00323{bottom:739.818987px;}
.y3d_c00323{bottom:740.076702px;}
.y3e_c00323{bottom:741.155190px;}
.y3f_c00323{bottom:742.098759px;}
.y40_c00323{bottom:742.730451px;}
.y41_c00323{bottom:743.064603px;}
.y2b_c00323{bottom:757.623000px;}
.y2c_c00323{bottom:758.547561px;}
.y2d_c00323{bottom:759.221859px;}
.y2e_c00323{bottom:759.675243px;}
.y2f_c00323{bottom:760.511730px;}
.y30_c00323{bottom:761.532249px;}
.y31_c00323{bottom:761.969676px;}
.y32_c00323{bottom:762.679479px;}
.y33_c00323{bottom:763.564026px;}
.y34_c00323{bottom:763.967784px;}
.y35_c00323{bottom:765.595884px;}
.y1e_c00323{bottom:780.034500px;}
.y1f_c00323{bottom:781.291037px;}
.y20_c00323{bottom:781.696905px;}
.y21_c00323{bottom:782.834283px;}
.y22_c00323{bottom:783.316617px;}
.y23_c00323{bottom:783.775040px;}
.y24_c00323{bottom:784.133969px;}
.y25_c00323{bottom:784.878075px;}
.y26_c00323{bottom:785.878454px;}
.y27_c00323{bottom:786.328839px;}
.y28_c00323{bottom:787.304736px;}
.y29_c00323{bottom:788.110203px;}
.y2a_c00323{bottom:788.536107px;}
.y16_c00323{bottom:802.444500px;}
.y17_c00323{bottom:802.932249px;}
.y18_c00323{bottom:803.527813px;}
.y19_c00323{bottom:804.988324px;}
.y1a_c00323{bottom:805.682613px;}
.y1b_c00323{bottom:807.104050px;}
.y1c_c00323{bottom:808.612584px;}
.y1d_c00323{bottom:809.849570px;}
.y5_c00323{bottom:828.901500px;}
.y6_c00323{bottom:829.340829px;}
.y7_c00323{bottom:829.549059px;}
.y8_c00323{bottom:830.059899px;}
.y9_c00323{bottom:830.612055px;}
.ya_c00323{bottom:830.701254px;}
.yb_c00323{bottom:830.826093px;}
.yc_c00323{bottom:830.970435px;}
.yd_c00323{bottom:831.332676px;}
.ye_c00323{bottom:831.617730px;}
.yf_c00323{bottom:831.932484px;}
.y10_c00323{bottom:832.063131px;}
.y11_c00323{bottom:832.217538px;}
.y12_c00323{bottom:832.691847px;}
.y13_c00323{bottom:832.930173px;}
.y14_c00323{bottom:833.013300px;}
.y15_c00323{bottom:833.202687px;}
.y3_c00323{bottom:846.469500px;}
.y4_c00323{bottom:847.849092px;}
.y2_c00323{bottom:889.110000px;}
.y166_c00323{bottom:897.210000px;}
.y1_c00323{bottom:919.350000px;}
.h2_c00323{height:16.800000px;}
.h5_c00323{height:22.055335px;}
.h3_c00323{height:31.500000px;}
.h19_c00323{height:31.504032px;}
.h1b_c00323{height:51.450000px;}
.hf_c00323{height:60.905968px;}
.hb_c00323{height:61.960035px;}
.h13_c00323{height:67.204838px;}
.h11_c00323{height:67.206585px;}
.h18_c00323{height:68.251672px;}
.h12_c00323{height:68.254914px;}
.he_c00323{height:68.256688px;}
.h9_c00323{height:68.261056px;}
.h7_c00323{height:68.262318px;}
.h15_c00323{height:69.301698px;}
.h14_c00323{height:69.304989px;}
.h10_c00323{height:69.306791px;}
.ha_c00323{height:69.311226px;}
.hd_c00323{height:70.356894px;}
.h8_c00323{height:70.361396px;}
.h16_c00323{height:71.401749px;}
.hc_c00323{height:71.411566px;}
.h17_c00323{height:75.603062px;}
.h6_c00323{height:75.613645px;}
.h1a_c00323{height:78.760079px;}
.h4_c00323{height:134.421771px;}
.h0_c00323{height:1008.450000px;}
.h1_c00323{height:1008.750000px;}
.w0_c00323{width:696.000000px;}
.x0_c00323{left:0.000000px;}
.x1d_c00323{left:153.627000px;}
.x3a_c00323{left:155.994855px;}
.x3_c00323{left:157.384500px;}
.x4e_c00323{left:158.732223px;}
.x70_c00323{left:160.011897px;}
.x82_c00323{left:161.045214px;}
.x9a_c00323{left:162.414657px;}
.xad_c00323{left:164.028450px;}
.xbf_c00323{left:165.063000px;}
.x2_c00323{left:170.910000px;}
.x16_c00323{left:174.126000px;}
.x73_c00323{left:178.723500px;}
.x47_c00323{left:180.049758px;}
.x8e_c00323{left:182.389629px;}
.xa2_c00323{left:184.789500px;}
.x83_c00323{left:188.861268px;}
.x78_c00323{left:193.761174px;}
.xc0_c00323{left:194.763000px;}
.x31_c00323{left:196.797069px;}
.x17_c00323{left:199.797000px;}
.x9b_c00323{left:201.305295px;}
.xab_c00323{left:205.349706px;}
.x29_c00323{left:208.140000px;}
.x71_c00323{left:212.240397px;}
.x69_c00323{left:214.298631px;}
.x89_c00323{left:215.344023px;}
.x1e_c00323{left:219.760500px;}
.x3b_c00323{left:221.620704px;}
.xb9_c00323{left:223.102500px;}
.xb5_c00323{left:225.276000px;}
.x53_c00323{left:228.116034px;}
.x79_c00323{left:229.682178px;}
.x18_c00323{left:231.142500px;}
.x4_c00323{left:234.028500px;}
.x32_c00323{left:235.704069px;}
.xa8_c00323{left:237.759000px;}
.x6a_c00323{left:238.889913px;}
.x1f_c00323{left:241.122000px;}
.x3c_c00323{left:243.449487px;}
.x2a_c00323{left:245.601000px;}
.x74_c00323{left:247.726500px;}
.xb7_c00323{left:252.990657px;}
.x59_c00323{left:254.227350px;}
.x5_c00323{left:255.480000px;}
.xba_c00323{left:256.581000px;}
.x48_c00323{left:258.381162px;}
.x41_c00323{left:260.547027px;}
.x61_c00323{left:262.397898px;}
.xb0_c00323{left:266.869500px;}
.x94_c00323{left:268.230768px;}
.x84_c00323{left:269.328783px;}
.x2b_c00323{left:270.789000px;}
.x5a_c00323{left:272.131998px;}
.x54_c00323{left:273.437844px;}
.x7a_c00323{left:274.442808px;}
.x6_c00323{left:275.449500px;}
.x4f_c00323{left:279.132723px;}
.x9c_c00323{left:280.906134px;}
.x72_c00323{left:282.944397px;}
.x7_c00323{left:284.914500px;}
.x6b_c00323{left:289.610058px;}
.x3d_c00323{left:291.299715px;}
.x33_c00323{left:293.494569px;}
.xac_c00323{left:297.144402px;}
.x20_c00323{left:300.984000px;}
.x7b_c00323{left:304.189728px;}
.x9d_c00323{left:306.831726px;}
.x8_c00323{left:308.134500px;}
.x62_c00323{left:309.861963px;}
.x34_c00323{left:311.076069px;}
.xb8_c00323{left:313.472118px;}
.x8a_c00323{left:314.711202px;}
.x2c_c00323{left:317.260500px;}
.x55_c00323{left:319.881681px;}
.x49_c00323{left:321.818796px;}
.xa3_c00323{left:323.647500px;}
.x21_c00323{left:326.370000px;}
.x9_c00323{left:333.232500px;}
.x9e_c00323{left:335.497923px;}
.xa_c00323{left:337.287000px;}
.x5b_c00323{left:339.110901px;}
.x6c_c00323{left:340.417203px;}
.xb_c00323{left:342.961500px;}
.x19_c00323{left:344.553000px;}
.x85_c00323{left:346.833609px;}
.xae_c00323{left:348.394092px;}
.xc_c00323{left:349.522500px;}
.x7c_c00323{left:358.151484px;}
.xc1_c00323{left:360.045000px;}
.x42_c00323{left:362.266527px;}
.x98_c00323{left:363.605370px;}
.xd_c00323{left:365.988000px;}
.x50_c00323{left:367.167723px;}
.x22_c00323{left:369.388500px;}
.x9f_c00323{left:372.498477px;}
.x2d_c00323{left:373.956000px;}
.x3e_c00323{left:377.164320px;}
.xe_c00323{left:378.945000px;}
.xa4_c00323{left:387.574500px;}
.xf_c00323{left:393.252000px;}
.x63_c00323{left:395.003553px;}
.xa9_c00323{left:396.334500px;}
.x8f_c00323{left:398.091204px;}
.x10_c00323{left:399.190500px;}
.x99_c00323{left:401.428920px;}
.x75_c00323{left:403.332000px;}
.x11_c00323{left:406.209000px;}
.x23_c00323{left:408.552000px;}
.xc2_c00323{left:411.034500px;}
.x35_c00323{left:413.650569px;}
.x5c_c00323{left:414.721128px;}
.x6d_c00323{left:416.577684px;}
.x1a_c00323{left:419.365500px;}
.x64_c00323{left:421.203957px;}
.x51_c00323{left:423.705723px;}
.x12_c00323{left:427.768500px;}
.xc3_c00323{left:428.869500px;}
.x3f_c00323{left:431.467764px;}
.xbb_c00323{left:433.755000px;}
.x56_c00323{left:435.514260px;}
.x13_c00323{left:438.601500px;}
.x43_c00323{left:440.652027px;}
.x14_c00323{left:442.380000px;}
.x86_c00323{left:444.589569px;}
.x4a_c00323{left:446.043537px;}
.x5d_c00323{left:449.834397px;}
.x15_c00323{left:450.988500px;}
.x76_c00323{left:452.467500px;}
.x7d_c00323{left:454.068828px;}
.x57_c00323{left:457.047138px;}
.x8b_c00323{left:458.366229px;}
.x24_c00323{left:461.203500px;}
.x90_c00323{left:466.997568px;}
.xaf_c00323{left:468.252894px;}
.x65_c00323{left:473.841792px;}
.x5e_c00323{left:475.206315px;}
.xc4_c00323{left:477.714000px;}
.x1_c00323{left:479.250000px;}
.x4b_c00323{left:480.874158px;}
.x7e_c00323{left:483.503748px;}
.x25_c00323{left:484.908000px;}
.x2e_c00323{left:486.832500px;}
.x36_c00323{left:487.884069px;}
.xc9_c00323{left:488.952000px;}
.xa0_c00323{left:491.316975px;}
.xbc_c00323{left:492.622500px;}
.x6e_c00323{left:496.780962px;}
.x1b_c00323{left:498.762000px;}
.x95_c00323{left:499.900491px;}
.xb1_c00323{left:502.609500px;}
.x8c_c00323{left:507.781308px;}
.x2f_c00323{left:509.263500px;}
.xbd_c00323{left:511.585500px;}
.x66_c00323{left:513.197925px;}
.x5f_c00323{left:518.131854px;}
.x87_c00323{left:520.195290px;}
.x91_c00323{left:521.758134px;}
.x44_c00323{left:523.567527px;}
.xaa_c00323{left:526.413000px;}
.xc5_c00323{left:527.677500px;}
.xa5_c00323{left:529.119000px;}
.x7f_c00323{left:533.446941px;}
.x26_c00323{left:536.271000px;}
.x37_c00323{left:540.304569px;}
.xca_c00323{left:541.663500px;}
.x67_c00323{left:546.430707px;}
.x60_c00323{left:548.642961px;}
.x80_c00323{left:551.321193px;}
.x92_c00323{left:554.752482px;}
.xa1_c00323{left:557.468247px;}
.xcd_c00323{left:558.906756px;}
.x4c_c00323{left:560.551089px;}
.xb2_c00323{left:561.714000px;}
.x1c_c00323{left:563.866500px;}
.xa6_c00323{left:566.109000px;}
.x96_c00323{left:567.200826px;}
.x88_c00323{left:568.254978px;}
.xb6_c00323{left:570.850500px;}
.x77_c00323{left:573.571500px;}
.x38_c00323{left:575.398569px;}
.x27_c00323{left:578.664000px;}
.x8d_c00323{left:583.926000px;}
.xb3_c00323{left:586.270500px;}
.x45_c00323{left:587.562027px;}
.xc7_c00323{left:588.610899px;}
.x6f_c00323{left:589.676658px;}
.x39_c00323{left:593.962569px;}
.x52_c00323{left:596.208723px;}
.x30_c00323{left:599.713500px;}
.x28_c00323{left:601.080000px;}
.x93_c00323{left:604.169754px;}
.xa7_c00323{left:605.832000px;}
.x81_c00323{left:606.895470px;}
.xc6_c00323{left:608.670000px;}
.x40_c00323{left:609.690663px;}
.xb4_c00323{left:611.385000px;}
.x46_c00323{left:615.559527px;}
.x68_c00323{left:618.842595px;}
.x58_c00323{left:620.491554px;}
.xcb_c00323{left:623.233500px;}
.x4d_c00323{left:626.349777px;}
.xc8_c00323{left:629.381394px;}
.x97_c00323{left:631.343514px;}
.xbe_c00323{left:640.305000px;}
.xcf_c00323{left:641.520000px;}
.xcc_c00323{left:648.070500px;}
.xce_c00323{left:650.178108px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs0_c00323{font-size:14.933333pt;}
.fs3_c00323{font-size:19.604743pt;}
.fs1_c00323{font-size:28.000000pt;}
.fs17_c00323{font-size:28.003584pt;}
.fs19_c00323{font-size:45.733333pt;}
.fsd_c00323{font-size:54.138638pt;}
.fs9_c00323{font-size:55.075587pt;}
.fs11_c00323{font-size:59.737634pt;}
.fsf_c00323{font-size:59.739187pt;}
.fs16_c00323{font-size:60.668153pt;}
.fs10_c00323{font-size:60.671035pt;}
.fsc_c00323{font-size:60.672612pt;}
.fs7_c00323{font-size:60.676494pt;}
.fs5_c00323{font-size:60.677616pt;}
.fs13_c00323{font-size:61.601509pt;}
.fs12_c00323{font-size:61.604435pt;}
.fse_c00323{font-size:61.606037pt;}
.fs8_c00323{font-size:61.609978pt;}
.fsb_c00323{font-size:62.539461pt;}
.fs6_c00323{font-size:62.543463pt;}
.fs14_c00323{font-size:63.468222pt;}
.fsa_c00323{font-size:63.476947pt;}
.fs15_c00323{font-size:67.202722pt;}
.fs4_c00323{font-size:67.212129pt;}
.fs18_c00323{font-size:70.008959pt;}
.fs2_c00323{font-size:119.486019pt;}
.y0_c00323{bottom:0.000000pt;}
.y165_c00323{bottom:75.337568pt;}
.y164_c00323{bottom:75.337984pt;}
.y163_c00323{bottom:75.338528pt;}
.y162_c00323{bottom:96.616981pt;}
.y161_c00323{bottom:96.970219pt;}
.y160_c00323{bottom:97.164309pt;}
.y15f_c00323{bottom:97.834688pt;}
.y15e_c00323{bottom:98.130325pt;}
.y15d_c00323{bottom:98.729899pt;}
.y15c_c00323{bottom:98.880000pt;}
.y15a_c00323{bottom:114.823760pt;}
.y15b_c00323{bottom:114.824097pt;}
.y14e_c00323{bottom:132.240000pt;}
.y14f_c00323{bottom:132.424800pt;}
.y150_c00323{bottom:132.555672pt;}
.y151_c00323{bottom:132.876729pt;}
.y152_c00323{bottom:133.056517pt;}
.y153_c00323{bottom:133.453221pt;}
.y154_c00323{bottom:133.770489pt;}
.y155_c00323{bottom:133.881463pt;}
.y156_c00323{bottom:134.081308pt;}
.y157_c00323{bottom:134.185384pt;}
.y158_c00323{bottom:134.496268pt;}
.y159_c00323{bottom:135.000221pt;}
.y143_c00323{bottom:151.921333pt;}
.y144_c00323{bottom:152.247205pt;}
.y145_c00323{bottom:152.515033pt;}
.y146_c00323{bottom:152.711977pt;}
.y147_c00323{bottom:152.969041pt;}
.y148_c00323{bottom:153.692653pt;}
.y149_c00323{bottom:153.932425pt;}
.y14a_c00323{bottom:154.403365pt;}
.y14b_c00323{bottom:154.555069pt;}
.y14c_c00323{bottom:154.966681pt;}
.y14d_c00323{bottom:155.584825pt;}
.y13f_c00323{bottom:173.522045pt;}
.y13e_c00323{bottom:173.522535pt;}
.y140_c00323{bottom:173.522596pt;}
.y141_c00323{bottom:173.522907pt;}
.y142_c00323{bottom:173.522987pt;}
.y132_c00323{bottom:192.480000pt;}
.y133_c00323{bottom:192.711859pt;}
.y134_c00323{bottom:192.863105pt;}
.y135_c00323{bottom:193.210856pt;}
.y136_c00323{bottom:193.338592pt;}
.y137_c00323{bottom:193.761961pt;}
.y138_c00323{bottom:194.080741pt;}
.y139_c00323{bottom:194.166897pt;}
.y13a_c00323{bottom:194.331519pt;}
.y13b_c00323{bottom:194.481272pt;}
.y13c_c00323{bottom:195.013347pt;}
.y13d_c00323{bottom:195.107632pt;}
.y126_c00323{bottom:212.640000pt;}
.y127_c00323{bottom:212.866837pt;}
.y128_c00323{bottom:213.133752pt;}
.y129_c00323{bottom:213.278531pt;}
.y12a_c00323{bottom:213.528841pt;}
.y12b_c00323{bottom:213.725448pt;}
.y12c_c00323{bottom:214.210977pt;}
.y12d_c00323{bottom:214.461325pt;}
.y12e_c00323{bottom:214.745357pt;}
.y12f_c00323{bottom:215.113119pt;}
.y130_c00323{bottom:215.265915pt;}
.y131_c00323{bottom:215.422183pt;}
.y11c_c00323{bottom:232.560640pt;}
.y11d_c00323{bottom:232.917125pt;}
.y11e_c00323{bottom:233.236635pt;}
.y11f_c00323{bottom:234.035136pt;}
.y120_c00323{bottom:234.260421pt;}
.y121_c00323{bottom:234.446960pt;}
.y122_c00323{bottom:234.994917pt;}
.y123_c00323{bottom:235.075563pt;}
.y124_c00323{bottom:235.418816pt;}
.y125_c00323{bottom:236.056352pt;}
.y10f_c00323{bottom:252.240245pt;}
.y110_c00323{bottom:252.614891pt;}
.y111_c00323{bottom:253.109040pt;}
.y112_c00323{bottom:253.431344pt;}
.y113_c00323{bottom:253.788416pt;}
.y114_c00323{bottom:254.038731pt;}
.y115_c00323{bottom:254.559403pt;}
.y116_c00323{bottom:254.871376pt;}
.y117_c00323{bottom:255.054336pt;}
.y118_c00323{bottom:255.390869pt;}
.y119_c00323{bottom:255.661595pt;}
.y11a_c00323{bottom:255.930869pt;}
.y11b_c00323{bottom:256.192341pt;}
.y106_c00323{bottom:271.898667pt;}
.y107_c00323{bottom:272.719435pt;}
.y108_c00323{bottom:273.183227pt;}
.y109_c00323{bottom:274.012187pt;}
.y10a_c00323{bottom:274.410907pt;}
.y10b_c00323{bottom:274.989131pt;}
.y10c_c00323{bottom:275.377515pt;}
.y10d_c00323{bottom:275.798411pt;}
.y10e_c00323{bottom:276.573083pt;}
.yfa_c00323{bottom:292.081333pt;}
.yfb_c00323{bottom:292.386149pt;}
.yfc_c00323{bottom:292.859029pt;}
.yfd_c00323{bottom:293.124069pt;}
.yfe_c00323{bottom:293.867301pt;}
.yff_c00323{bottom:294.549189pt;}
.y100_c00323{bottom:294.823349pt;}
.y101_c00323{bottom:295.232389pt;}
.y102_c00323{bottom:295.883365pt;}
.y103_c00323{bottom:296.058997pt;}
.y104_c00323{bottom:296.453557pt;}
.y105_c00323{bottom:296.877269pt;}
.yee_c00323{bottom:312.229523pt;}
.yef_c00323{bottom:312.609475pt;}
.yf0_c00323{bottom:313.388021pt;}
.yf1_c00323{bottom:313.641304pt;}
.yf2_c00323{bottom:313.922024pt;}
.yf3_c00323{bottom:314.283789pt;}
.yf4_c00323{bottom:314.589531pt;}
.yf5_c00323{bottom:315.146621pt;}
.yf6_c00323{bottom:315.445024pt;}
.yf7_c00323{bottom:315.698717pt;}
.yf8_c00323{bottom:316.092205pt;}
.yf9_c00323{bottom:316.554797pt;}
.ye3_c00323{bottom:332.370691pt;}
.ye4_c00323{bottom:332.609757pt;}
.ye5_c00323{bottom:333.013061pt;}
.ye6_c00323{bottom:333.522280pt;}
.ye7_c00323{bottom:333.902379pt;}
.ye8_c00323{bottom:334.210029pt;}
.ye9_c00323{bottom:334.533109pt;}
.yea_c00323{bottom:334.937123pt;}
.yeb_c00323{bottom:335.444725pt;}
.yec_c00323{bottom:336.222443pt;}
.yed_c00323{bottom:337.057336pt;}
.yd8_c00323{bottom:352.793384pt;}
.yd9_c00323{bottom:353.165923pt;}
.yda_c00323{bottom:353.832907pt;}
.ydb_c00323{bottom:354.187632pt;}
.ydc_c00323{bottom:354.905533pt;}
.ydd_c00323{bottom:355.428259pt;}
.yde_c00323{bottom:355.709829pt;}
.ydf_c00323{bottom:356.098453pt;}
.ye0_c00323{bottom:356.457307pt;}
.ye1_c00323{bottom:356.755933pt;}
.ye2_c00323{bottom:357.383453pt;}
.ycd_c00323{bottom:373.195203pt;}
.yce_c00323{bottom:373.380701pt;}
.ycf_c00323{bottom:373.939563pt;}
.yd0_c00323{bottom:374.331336pt;}
.yd1_c00323{bottom:375.077069pt;}
.yd2_c00323{bottom:375.298171pt;}
.yd3_c00323{bottom:375.691915pt;}
.yd4_c00323{bottom:375.910291pt;}
.yd5_c00323{bottom:376.397051pt;}
.yd6_c00323{bottom:376.690291pt;}
.yd7_c00323{bottom:377.129227pt;}
.yc2_c00323{bottom:393.116680pt;}
.yc3_c00323{bottom:393.642691pt;}
.yc4_c00323{bottom:393.877899pt;}
.yc5_c00323{bottom:394.613875pt;}
.yc6_c00323{bottom:395.387147pt;}
.yc7_c00323{bottom:395.646152pt;}
.yc8_c00323{bottom:396.018840pt;}
.yc9_c00323{bottom:396.501757pt;}
.yca_c00323{bottom:396.926680pt;}
.ycb_c00323{bottom:397.246629pt;}
.ycc_c00323{bottom:397.602933pt;}
.yb6_c00323{bottom:413.276285pt;}
.yb7_c00323{bottom:413.523755pt;}
.yb8_c00323{bottom:414.030067pt;}
.yb9_c00323{bottom:414.238405pt;}
.yba_c00323{bottom:414.423885pt;}
.ybb_c00323{bottom:414.806920pt;}
.ybc_c00323{bottom:414.928189pt;}
.ybd_c00323{bottom:415.516443pt;}
.ybe_c00323{bottom:415.797973pt;}
.ybf_c00323{bottom:416.283528pt;}
.yc0_c00323{bottom:416.470792pt;}
.yc1_c00323{bottom:416.898168pt;}
.yaa_c00323{bottom:432.959307pt;}
.yab_c00323{bottom:433.340603pt;}
.yac_c00323{bottom:433.755613pt;}
.yad_c00323{bottom:434.272627pt;}
.yae_c00323{bottom:434.616139pt;}
.yaf_c00323{bottom:435.239653pt;}
.yb0_c00323{bottom:435.708437pt;}
.yb1_c00323{bottom:436.347941pt;}
.yb2_c00323{bottom:436.687571pt;}
.yb3_c00323{bottom:437.265077pt;}
.yb4_c00323{bottom:437.471509pt;}
.yb5_c00323{bottom:438.113757pt;}
.y9f_c00323{bottom:452.882667pt;}
.ya0_c00323{bottom:453.418755pt;}
.ya1_c00323{bottom:453.741371pt;}
.ya2_c00323{bottom:454.139829pt;}
.ya3_c00323{bottom:455.371979pt;}
.ya4_c00323{bottom:455.677795pt;}
.ya5_c00323{bottom:456.289259pt;}
.ya6_c00323{bottom:456.739461pt;}
.ya7_c00323{bottom:457.004883pt;}
.ya8_c00323{bottom:457.324101pt;}
.ya9_c00323{bottom:457.796331pt;}
.y9a_c00323{bottom:473.014848pt;}
.y9b_c00323{bottom:473.850504pt;}
.y9c_c00323{bottom:474.541200pt;}
.y9d_c00323{bottom:474.981768pt;}
.y9e_c00323{bottom:475.283808pt;}
.y8e_c00323{bottom:493.418333pt;}
.y8f_c00323{bottom:494.100651pt;}
.y90_c00323{bottom:494.406083pt;}
.y91_c00323{bottom:495.037547pt;}
.y92_c00323{bottom:495.670403pt;}
.y93_c00323{bottom:495.999480pt;}
.y94_c00323{bottom:496.618216pt;}
.y95_c00323{bottom:496.937973pt;}
.y96_c00323{bottom:497.464515pt;}
.y97_c00323{bottom:497.616043pt;}
.y98_c00323{bottom:498.264493pt;}
.y99_c00323{bottom:498.771600pt;}
.y82_c00323{bottom:513.339424pt;}
.y83_c00323{bottom:514.174109pt;}
.y84_c00323{bottom:514.715333pt;}
.y85_c00323{bottom:515.348051pt;}
.y86_c00323{bottom:515.788195pt;}
.y87_c00323{bottom:516.483576pt;}
.y88_c00323{bottom:516.833427pt;}
.y89_c00323{bottom:517.535587pt;}
.y8a_c00323{bottom:518.059917pt;}
.y8b_c00323{bottom:518.503613pt;}
.y8c_c00323{bottom:519.213872pt;}
.y8d_c00323{bottom:519.470141pt;}
.y76_c00323{bottom:533.504693pt;}
.y77_c00323{bottom:534.422579pt;}
.y78_c00323{bottom:534.889848pt;}
.y79_c00323{bottom:535.144312pt;}
.y7a_c00323{bottom:535.832355pt;}
.y7b_c00323{bottom:536.097269pt;}
.y7c_c00323{bottom:537.172323pt;}
.y7d_c00323{bottom:537.671448pt;}
.y7e_c00323{bottom:537.827152pt;}
.y7f_c00323{bottom:538.032051pt;}
.y80_c00323{bottom:538.642835pt;}
.y81_c00323{bottom:539.076328pt;}
.y6c_c00323{bottom:553.186301pt;}
.y6d_c00323{bottom:554.222464pt;}
.y6e_c00323{bottom:554.907600pt;}
.y6f_c00323{bottom:555.609355pt;}
.y70_c00323{bottom:556.242917pt;}
.y71_c00323{bottom:557.356776pt;}
.y72_c00323{bottom:557.682629pt;}
.y73_c00323{bottom:558.055832pt;}
.y74_c00323{bottom:559.790451pt;}
.y75_c00323{bottom:560.153693pt;}
.y62_c00323{bottom:573.109467pt;}
.y63_c00323{bottom:573.896595pt;}
.y64_c00323{bottom:574.660179pt;}
.y65_c00323{bottom:575.035875pt;}
.y66_c00323{bottom:575.542251pt;}
.y67_c00323{bottom:576.444435pt;}
.y68_c00323{bottom:577.349043pt;}
.y69_c00323{bottom:577.784907pt;}
.y6a_c00323{bottom:579.206115pt;}
.y6b_c00323{bottom:580.109091pt;}
.y58_c00323{bottom:593.511904pt;}
.y59_c00323{bottom:593.850488pt;}
.y5a_c00323{bottom:595.034435pt;}
.y5b_c00323{bottom:595.993419pt;}
.y5c_c00323{bottom:596.669915pt;}
.y5d_c00323{bottom:597.310653pt;}
.y5e_c00323{bottom:597.870312pt;}
.y5f_c00323{bottom:598.396925pt;}
.y60_c00323{bottom:599.601067pt;}
.y61_c00323{bottom:600.595160pt;}
.y4d_c00323{bottom:613.436053pt;}
.y4e_c00323{bottom:614.766541pt;}
.y4f_c00323{bottom:615.082237pt;}
.y50_c00323{bottom:616.316389pt;}
.y51_c00323{bottom:616.709749pt;}
.y52_c00323{bottom:617.194765pt;}
.y53_c00323{bottom:617.963917pt;}
.y54_c00323{bottom:618.590365pt;}
.y55_c00323{bottom:619.290565pt;}
.y56_c00323{bottom:620.314477pt;}
.y57_c00323{bottom:620.762437pt;}
.y42_c00323{bottom:633.597275pt;}
.y43_c00323{bottom:634.208203pt;}
.y44_c00323{bottom:634.531251pt;}
.y45_c00323{bottom:634.841832pt;}
.y46_c00323{bottom:635.522075pt;}
.y47_c00323{bottom:636.105501pt;}
.y48_c00323{bottom:636.742525pt;}
.y49_c00323{bottom:637.192109pt;}
.y4a_c00323{bottom:637.515349pt;}
.y4b_c00323{bottom:639.013819pt;}
.y4c_c00323{bottom:640.050813pt;}
.y36_c00323{bottom:653.519453pt;}
.y37_c00323{bottom:654.147221pt;}
.y38_c00323{bottom:654.769733pt;}
.y39_c00323{bottom:655.694381pt;}
.y3a_c00323{bottom:655.975685pt;}
.y3b_c00323{bottom:656.981621pt;}
.y3c_c00323{bottom:657.616877pt;}
.y3d_c00323{bottom:657.845957pt;}
.y3e_c00323{bottom:658.804613pt;}
.y3f_c00323{bottom:659.643341pt;}
.y40_c00323{bottom:660.204845pt;}
.y41_c00323{bottom:660.501869pt;}
.y2b_c00323{bottom:673.442667pt;}
.y2c_c00323{bottom:674.264499pt;}
.y2d_c00323{bottom:674.863875pt;}
.y2e_c00323{bottom:675.266883pt;}
.y2f_c00323{bottom:676.010427pt;}
.y30_c00323{bottom:676.917555pt;}
.y31_c00323{bottom:677.306379pt;}
.y32_c00323{bottom:677.937315pt;}
.y33_c00323{bottom:678.723579pt;}
.y34_c00323{bottom:679.082475pt;}
.y35_c00323{bottom:680.529675pt;}
.y1e_c00323{bottom:693.364000pt;}
.y1f_c00323{bottom:694.480921pt;}
.y20_c00323{bottom:694.841693pt;}
.y21_c00323{bottom:695.852696pt;}
.y22_c00323{bottom:696.281437pt;}
.y23_c00323{bottom:696.688924pt;}
.y24_c00323{bottom:697.007972pt;}
.y25_c00323{bottom:697.669400pt;}
.y26_c00323{bottom:698.558625pt;}
.y27_c00323{bottom:698.958968pt;}
.y28_c00323{bottom:699.826432pt;}
.y29_c00323{bottom:700.542403pt;}
.y2a_c00323{bottom:700.920984pt;}
.y16_c00323{bottom:713.284000pt;}
.y17_c00323{bottom:713.717555pt;}
.y18_c00323{bottom:714.246945pt;}
.y19_c00323{bottom:715.545177pt;}
.y1a_c00323{bottom:716.162323pt;}
.y1b_c00323{bottom:717.425823pt;}
.y1c_c00323{bottom:718.766741pt;}
.y1d_c00323{bottom:719.866284pt;}
.y5_c00323{bottom:736.801333pt;}
.y6_c00323{bottom:737.191848pt;}
.y7_c00323{bottom:737.376941pt;}
.y8_c00323{bottom:737.831021pt;}
.y9_c00323{bottom:738.321827pt;}
.ya_c00323{bottom:738.401115pt;}
.yb_c00323{bottom:738.512083pt;}
.yc_c00323{bottom:738.640387pt;}
.yd_c00323{bottom:738.962379pt;}
.ye_c00323{bottom:739.215760pt;}
.yf_c00323{bottom:739.495541pt;}
.y10_c00323{bottom:739.611672pt;}
.y11_c00323{bottom:739.748923pt;}
.y12_c00323{bottom:740.170531pt;}
.y13_c00323{bottom:740.382376pt;}
.y14_c00323{bottom:740.456267pt;}
.y15_c00323{bottom:740.624611pt;}
.y3_c00323{bottom:752.417333pt;}
.y4_c00323{bottom:753.643637pt;}
.y2_c00323{bottom:790.320000pt;}
.y166_c00323{bottom:797.520000pt;}
.y1_c00323{bottom:817.200000pt;}
.h2_c00323{height:14.933333pt;}
.h5_c00323{height:19.604743pt;}
.h3_c00323{height:28.000000pt;}
.h19_c00323{height:28.003584pt;}
.h1b_c00323{height:45.733333pt;}
.hf_c00323{height:54.138638pt;}
.hb_c00323{height:55.075587pt;}
.h13_c00323{height:59.737634pt;}
.h11_c00323{height:59.739187pt;}
.h18_c00323{height:60.668153pt;}
.h12_c00323{height:60.671035pt;}
.he_c00323{height:60.672612pt;}
.h9_c00323{height:60.676494pt;}
.h7_c00323{height:60.677616pt;}
.h15_c00323{height:61.601509pt;}
.h14_c00323{height:61.604435pt;}
.h10_c00323{height:61.606037pt;}
.ha_c00323{height:61.609978pt;}
.hd_c00323{height:62.539461pt;}
.h8_c00323{height:62.543463pt;}
.h16_c00323{height:63.468222pt;}
.hc_c00323{height:63.476947pt;}
.h17_c00323{height:67.202722pt;}
.h6_c00323{height:67.212129pt;}
.h1a_c00323{height:70.008959pt;}
.h4_c00323{height:119.486019pt;}
.h0_c00323{height:896.400000pt;}
.h1_c00323{height:896.666667pt;}
.w0_c00323{width:618.666667pt;}
.x0_c00323{left:0.000000pt;}
.x1d_c00323{left:136.557333pt;}
.x3a_c00323{left:138.662093pt;}
.x3_c00323{left:139.897333pt;}
.x4e_c00323{left:141.095309pt;}
.x70_c00323{left:142.232797pt;}
.x82_c00323{left:143.151301pt;}
.x9a_c00323{left:144.368584pt;}
.xad_c00323{left:145.803067pt;}
.xbf_c00323{left:146.722667pt;}
.x2_c00323{left:151.920000pt;}
.x16_c00323{left:154.778667pt;}
.x73_c00323{left:158.865333pt;}
.x47_c00323{left:160.044229pt;}
.x8e_c00323{left:162.124115pt;}
.xa2_c00323{left:164.257333pt;}
.x83_c00323{left:167.876683pt;}
.x78_c00323{left:172.232155pt;}
.xc0_c00323{left:173.122667pt;}
.x31_c00323{left:174.930728pt;}
.x17_c00323{left:177.597333pt;}
.x9b_c00323{left:178.938040pt;}
.xab_c00323{left:182.533072pt;}
.x29_c00323{left:185.013333pt;}
.x71_c00323{left:188.658131pt;}
.x69_c00323{left:190.487672pt;}
.x89_c00323{left:191.416909pt;}
.x1e_c00323{left:195.342667pt;}
.x3b_c00323{left:196.996181pt;}
.xb9_c00323{left:198.313333pt;}
.xb5_c00323{left:200.245333pt;}
.x53_c00323{left:202.769808pt;}
.x79_c00323{left:204.161936pt;}
.x18_c00323{left:205.460000pt;}
.x4_c00323{left:208.025333pt;}
.x32_c00323{left:209.514728pt;}
.xa8_c00323{left:211.341333pt;}
.x6a_c00323{left:212.346589pt;}
.x1f_c00323{left:214.330667pt;}
.x3c_c00323{left:216.399544pt;}
.x2a_c00323{left:218.312000pt;}
.x74_c00323{left:220.201333pt;}
.xb7_c00323{left:224.880584pt;}
.x59_c00323{left:225.979867pt;}
.x5_c00323{left:227.093333pt;}
.xba_c00323{left:228.072000pt;}
.x48_c00323{left:229.672144pt;}
.x41_c00323{left:231.597357pt;}
.x61_c00323{left:233.242576pt;}
.xb0_c00323{left:237.217333pt;}
.x94_c00323{left:238.427349pt;}
.x84_c00323{left:239.403363pt;}
.x2b_c00323{left:240.701333pt;}
.x5a_c00323{left:241.895109pt;}
.x54_c00323{left:243.055861pt;}
.x7a_c00323{left:243.949163pt;}
.x6_c00323{left:244.844000pt;}
.x4f_c00323{left:248.117976pt;}
.x9c_c00323{left:249.694341pt;}
.x72_c00323{left:251.506131pt;}
.x7_c00323{left:253.257333pt;}
.x6b_c00323{left:257.431163pt;}
.x3d_c00323{left:258.933080pt;}
.x33_c00323{left:260.884061pt;}
.xac_c00323{left:264.128357pt;}
.x20_c00323{left:267.541333pt;}
.x7b_c00323{left:270.390869pt;}
.x9d_c00323{left:272.739312pt;}
.x8_c00323{left:273.897333pt;}
.x62_c00323{left:275.432856pt;}
.x34_c00323{left:276.512061pt;}
.xb8_c00323{left:278.641883pt;}
.x8a_c00323{left:279.743291pt;}
.x2c_c00323{left:282.009333pt;}
.x55_c00323{left:284.339272pt;}
.x49_c00323{left:286.061152pt;}
.xa3_c00323{left:287.686667pt;}
.x21_c00323{left:290.106667pt;}
.x9_c00323{left:296.206667pt;}
.x9e_c00323{left:298.220376pt;}
.xa_c00323{left:299.810667pt;}
.x5b_c00323{left:301.431912pt;}
.x6c_c00323{left:302.593069pt;}
.xb_c00323{left:304.854667pt;}
.x19_c00323{left:306.269333pt;}
.x85_c00323{left:308.296541pt;}
.xae_c00323{left:309.683637pt;}
.xc_c00323{left:310.686667pt;}
.x7c_c00323{left:318.356875pt;}
.xc1_c00323{left:320.040000pt;}
.x42_c00323{left:322.014691pt;}
.x98_c00323{left:323.204773pt;}
.xd_c00323{left:325.322667pt;}
.x50_c00323{left:326.371309pt;}
.x22_c00323{left:328.345333pt;}
.x9f_c00323{left:331.109757pt;}
.x2d_c00323{left:332.405333pt;}
.x3e_c00323{left:335.257173pt;}
.xe_c00323{left:336.840000pt;}
.xa4_c00323{left:344.510667pt;}
.xf_c00323{left:349.557333pt;}
.x63_c00323{left:351.114269pt;}
.xa9_c00323{left:352.297333pt;}
.x8f_c00323{left:353.858848pt;}
.x10_c00323{left:354.836000pt;}
.x99_c00323{left:356.825707pt;}
.x75_c00323{left:358.517333pt;}
.x11_c00323{left:361.074667pt;}
.x23_c00323{left:363.157333pt;}
.xc2_c00323{left:365.364000pt;}
.x35_c00323{left:367.689395pt;}
.x5c_c00323{left:368.641003pt;}
.x6d_c00323{left:370.291275pt;}
.x1a_c00323{left:372.769333pt;}
.x64_c00323{left:374.403517pt;}
.x51_c00323{left:376.627309pt;}
.x12_c00323{left:380.238667pt;}
.xc3_c00323{left:381.217333pt;}
.x3f_c00323{left:383.526901pt;}
.xbb_c00323{left:385.560000pt;}
.x56_c00323{left:387.123787pt;}
.x13_c00323{left:389.868000pt;}
.x43_c00323{left:391.690691pt;}
.x14_c00323{left:393.226667pt;}
.x86_c00323{left:395.190728pt;}
.x4a_c00323{left:396.483144pt;}
.x5d_c00323{left:399.852797pt;}
.x15_c00323{left:400.878667pt;}
.x76_c00323{left:402.193333pt;}
.x7d_c00323{left:403.616736pt;}
.x57_c00323{left:406.264123pt;}
.x8b_c00323{left:407.436648pt;}
.x24_c00323{left:409.958667pt;}
.x90_c00323{left:415.108949pt;}
.xaf_c00323{left:416.224795pt;}
.x65_c00323{left:421.192704pt;}
.x5e_c00323{left:422.405613pt;}
.xc4_c00323{left:424.634667pt;}
.x1_c00323{left:426.000000pt;}
.x4b_c00323{left:427.443696pt;}
.x7e_c00323{left:429.781109pt;}
.x25_c00323{left:431.029333pt;}
.x2e_c00323{left:432.740000pt;}
.x36_c00323{left:433.674728pt;}
.xc9_c00323{left:434.624000pt;}
.xa0_c00323{left:436.726200pt;}
.xbc_c00323{left:437.886667pt;}
.x6e_c00323{left:441.583077pt;}
.x1b_c00323{left:443.344000pt;}
.x95_c00323{left:444.355992pt;}
.xb1_c00323{left:446.764000pt;}
.x8c_c00323{left:451.361163pt;}
.x2f_c00323{left:452.678667pt;}
.xbd_c00323{left:454.742667pt;}
.x66_c00323{left:456.175933pt;}
.x5f_c00323{left:460.561648pt;}
.x87_c00323{left:462.395813pt;}
.x91_c00323{left:463.785008pt;}
.x44_c00323{left:465.393357pt;}
.xaa_c00323{left:467.922667pt;}
.xc5_c00323{left:469.046667pt;}
.xa5_c00323{left:470.328000pt;}
.x7f_c00323{left:474.175059pt;}
.x26_c00323{left:476.685333pt;}
.x37_c00323{left:480.270728pt;}
.xca_c00323{left:481.478667pt;}
.x67_c00323{left:485.716184pt;}
.x60_c00323{left:487.682632pt;}
.x80_c00323{left:490.063283pt;}
.x92_c00323{left:493.113317pt;}
.xa1_c00323{left:495.527331pt;}
.xcd_c00323{left:496.806005pt;}
.x4c_c00323{left:498.267635pt;}
.xb2_c00323{left:499.301333pt;}
.x1c_c00323{left:501.214667pt;}
.xa6_c00323{left:503.208000pt;}
.x96_c00323{left:504.178512pt;}
.x88_c00323{left:505.115536pt;}
.xb6_c00323{left:507.422667pt;}
.x77_c00323{left:509.841333pt;}
.x38_c00323{left:511.465395pt;}
.x27_c00323{left:514.368000pt;}
.x8d_c00323{left:519.045333pt;}
.xb3_c00323{left:521.129333pt;}
.x45_c00323{left:522.277357pt;}
.xc7_c00323{left:523.209688pt;}
.x6f_c00323{left:524.157029pt;}
.x39_c00323{left:527.966728pt;}
.x52_c00323{left:529.963309pt;}
.x30_c00323{left:533.078667pt;}
.x28_c00323{left:534.293333pt;}
.x93_c00323{left:537.039781pt;}
.xa7_c00323{left:538.517333pt;}
.x81_c00323{left:539.462640pt;}
.xc6_c00323{left:541.040000pt;}
.x40_c00323{left:541.947256pt;}
.xb4_c00323{left:543.453333pt;}
.x46_c00323{left:547.164024pt;}
.x68_c00323{left:550.082307pt;}
.x58_c00323{left:551.548048pt;}
.xcb_c00323{left:553.985333pt;}
.x4d_c00323{left:556.755357pt;}
.xc8_c00323{left:559.450128pt;}
.x97_c00323{left:561.194235pt;}
.xbe_c00323{left:569.160000pt;}
.xcf_c00323{left:570.240000pt;}
.xcc_c00323{left:576.062667pt;}
.xce_c00323{left:577.936096pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m9a_c00324{transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);-ms-transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);}
.m151_c00324{transform:matrix(0.015584,-0.000187,0.003000,0.249982,0,0);-ms-transform:matrix(0.015584,-0.000187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015584,-0.000187,0.003000,0.249982,0,0);}
.m46_c00324{transform:matrix(0.018184,-0.000182,0.002500,0.249988,0,0);-ms-transform:matrix(0.018184,-0.000182,0.002500,0.249988,0,0);-webkit-transform:matrix(0.018184,-0.000182,0.002500,0.249988,0,0);}
.mca_c00324{transform:matrix(0.083451,-0.000835,0.002500,0.249988,0,0);-ms-transform:matrix(0.083451,-0.000835,0.002500,0.249988,0,0);-webkit-transform:matrix(0.083451,-0.000835,0.002500,0.249988,0,0);}
.mfd_c00324{transform:matrix(0.088886,-0.001244,0.003500,0.249976,0,0);-ms-transform:matrix(0.088886,-0.001244,0.003500,0.249976,0,0);-webkit-transform:matrix(0.088886,-0.001244,0.003500,0.249976,0,0);}
.ma4_c00324{transform:matrix(0.088891,-0.000889,0.002500,0.249988,0,0);-ms-transform:matrix(0.088891,-0.000889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.088891,-0.000889,0.002500,0.249988,0,0);}
.m23_c00324{transform:matrix(0.090295,-0.000903,0.002500,0.249988,0,0);-ms-transform:matrix(0.090295,-0.000903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.090295,-0.000903,0.002500,0.249988,0,0);}
.mda_c00324{transform:matrix(0.098655,-0.001381,0.003500,0.249976,0,0);-ms-transform:matrix(0.098655,-0.001381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.098655,-0.001381,0.003500,0.249976,0,0);}
.m5f_c00324{transform:matrix(0.101745,-0.001017,0.002500,0.249988,0,0);-ms-transform:matrix(0.101745,-0.001017,0.002500,0.249988,0,0);-webkit-transform:matrix(0.101745,-0.001017,0.002500,0.249988,0,0);}
.m10_c00324{transform:matrix(0.114064,-0.001141,0.002500,0.249988,0,0);-ms-transform:matrix(0.114064,-0.001141,0.002500,0.249988,0,0);-webkit-transform:matrix(0.114064,-0.001141,0.002500,0.249988,0,0);}
.m5d_c00324{transform:matrix(0.137228,-0.001372,0.002500,0.249988,0,0);-ms-transform:matrix(0.137228,-0.001372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.137228,-0.001372,0.002500,0.249988,0,0);}
.mfe_c00324{transform:matrix(0.139206,-0.001949,0.003500,0.249976,0,0);-ms-transform:matrix(0.139206,-0.001949,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139206,-0.001949,0.003500,0.249976,0,0);}
.m35_c00324{transform:matrix(0.140108,-0.001401,0.002500,0.249988,0,0);-ms-transform:matrix(0.140108,-0.001401,0.002500,0.249988,0,0);-webkit-transform:matrix(0.140108,-0.001401,0.002500,0.249988,0,0);}
.m69_c00324{transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);-ms-transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);}
.m12a_c00324{transform:matrix(0.145345,-0.001744,0.003000,0.249982,0,0);-ms-transform:matrix(0.145345,-0.001744,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145345,-0.001744,0.003000,0.249982,0,0);}
.mff_c00324{transform:matrix(0.146446,-0.002050,0.003500,0.249976,0,0);-ms-transform:matrix(0.146446,-0.002050,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146446,-0.002050,0.003500,0.249976,0,0);}
.mbd_c00324{transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);-ms-transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146528,-0.001465,0.002500,0.249988,0,0);}
.m9d_c00324{transform:matrix(0.146708,-0.001467,0.002500,0.249988,0,0);-ms-transform:matrix(0.146708,-0.001467,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146708,-0.001467,0.002500,0.249988,0,0);}
.m67_c00324{transform:matrix(0.147678,-0.001477,0.002500,0.249988,0,0);-ms-transform:matrix(0.147678,-0.001477,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147678,-0.001477,0.002500,0.249988,0,0);}
.m153_c00324{transform:matrix(0.148874,-0.001786,0.003000,0.249982,0,0);-ms-transform:matrix(0.148874,-0.001786,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148874,-0.001786,0.003000,0.249982,0,0);}
.m72_c00324{transform:matrix(0.149223,-0.001492,0.002500,0.249988,0,0);-ms-transform:matrix(0.149223,-0.001492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149223,-0.001492,0.002500,0.249988,0,0);}
.mac_c00324{transform:matrix(0.149418,-0.001494,0.002500,0.249988,0,0);-ms-transform:matrix(0.149418,-0.001494,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149418,-0.001494,0.002500,0.249988,0,0);}
.m11c_c00324{transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);-ms-transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);}
.m92_c00324{transform:matrix(0.152127,-0.001521,0.002500,0.249988,0,0);-ms-transform:matrix(0.152127,-0.001521,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152127,-0.001521,0.002500,0.249988,0,0);}
.mf9_c00324{transform:matrix(0.152210,-0.002131,0.003500,0.249976,0,0);-ms-transform:matrix(0.152210,-0.002131,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152210,-0.002131,0.003500,0.249976,0,0);}
.ma8_c00324{transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);-ms-transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152737,-0.001527,0.002500,0.249988,0,0);}
.m89_c00324{transform:matrix(0.153092,-0.001531,0.002500,0.249988,0,0);-ms-transform:matrix(0.153092,-0.001531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153092,-0.001531,0.002500,0.249988,0,0);}
.m100_c00324{transform:matrix(0.153165,-0.002144,0.003500,0.249976,0,0);-ms-transform:matrix(0.153165,-0.002144,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153165,-0.002144,0.003500,0.249976,0,0);}
.m5a_c00324{transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);-ms-transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153672,-0.001537,0.002500,0.249988,0,0);}
.mee_c00324{transform:matrix(0.154190,-0.002159,0.003500,0.249976,0,0);-ms-transform:matrix(0.154190,-0.002159,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154190,-0.002159,0.003500,0.249976,0,0);}
.m1b_c00324{transform:matrix(0.155842,-0.001558,0.002500,0.249988,0,0);-ms-transform:matrix(0.155842,-0.001558,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155842,-0.001558,0.002500,0.249988,0,0);}
.m107_c00324{transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);-ms-transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);}
.ma5_c00324{transform:matrix(0.158102,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158102,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158102,-0.001581,0.002500,0.249988,0,0);}
.m41_c00324{transform:matrix(0.158327,-0.001583,0.002500,0.249988,0,0);-ms-transform:matrix(0.158327,-0.001583,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158327,-0.001583,0.002500,0.249988,0,0);}
.md3_c00324{transform:matrix(0.158762,-0.001588,0.002500,0.249988,0,0);-ms-transform:matrix(0.158762,-0.001588,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158762,-0.001588,0.002500,0.249988,0,0);}
.m135_c00324{transform:matrix(0.158999,-0.001908,0.003000,0.249982,0,0);-ms-transform:matrix(0.158999,-0.001908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158999,-0.001908,0.003000,0.249982,0,0);}
.m123_c00324{transform:matrix(0.159164,-0.001910,0.003000,0.249982,0,0);-ms-transform:matrix(0.159164,-0.001910,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159164,-0.001910,0.003000,0.249982,0,0);}
.m73_c00324{transform:matrix(0.159607,-0.001596,0.002500,0.249988,0,0);-ms-transform:matrix(0.159607,-0.001596,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159607,-0.001596,0.002500,0.249988,0,0);}
.m6f_c00324{transform:matrix(0.160472,-0.001605,0.002500,0.249988,0,0);-ms-transform:matrix(0.160472,-0.001605,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160472,-0.001605,0.002500,0.249988,0,0);}
.m9f_c00324{transform:matrix(0.160762,-0.001608,0.002500,0.249988,0,0);-ms-transform:matrix(0.160762,-0.001608,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160762,-0.001608,0.002500,0.249988,0,0);}
.m116_c00324{transform:matrix(0.161193,-0.001934,0.003000,0.249982,0,0);-ms-transform:matrix(0.161193,-0.001934,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161193,-0.001934,0.003000,0.249982,0,0);}
.m88_c00324{transform:matrix(0.161357,-0.001614,0.002500,0.249988,0,0);-ms-transform:matrix(0.161357,-0.001614,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161357,-0.001614,0.002500,0.249988,0,0);}
.m86_c00324{transform:matrix(0.162222,-0.001622,0.002500,0.249988,0,0);-ms-transform:matrix(0.162222,-0.001622,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162222,-0.001622,0.002500,0.249988,0,0);}
.ma0_c00324{transform:matrix(0.162477,-0.001625,0.002500,0.249988,0,0);-ms-transform:matrix(0.162477,-0.001625,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162477,-0.001625,0.002500,0.249988,0,0);}
.m140_c00324{transform:matrix(0.162503,-0.001950,0.003000,0.249982,0,0);-ms-transform:matrix(0.162503,-0.001950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162503,-0.001950,0.003000,0.249982,0,0);}
.m20_c00324{transform:matrix(0.162507,-0.001625,0.002500,0.249988,0,0);-ms-transform:matrix(0.162507,-0.001625,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162507,-0.001625,0.002500,0.249988,0,0);}
.m84_c00324{transform:matrix(0.163167,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163167,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163167,-0.001632,0.002500,0.249988,0,0);}
.m117_c00324{transform:matrix(0.163353,-0.001960,0.003000,0.249982,0,0);-ms-transform:matrix(0.163353,-0.001960,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163353,-0.001960,0.003000,0.249982,0,0);}
.m115_c00324{transform:matrix(0.163453,-0.001961,0.003000,0.249982,0,0);-ms-transform:matrix(0.163453,-0.001961,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163453,-0.001961,0.003000,0.249982,0,0);}
.m90_c00324{transform:matrix(0.163897,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163897,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163897,-0.001639,0.002500,0.249988,0,0);}
.m28_c00324{transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);}
.mae_c00324{transform:matrix(0.163977,-0.001640,0.002500,0.249988,0,0);-ms-transform:matrix(0.163977,-0.001640,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163977,-0.001640,0.002500,0.249988,0,0);}
.m57_c00324{transform:matrix(0.163992,-0.001640,0.002500,0.249988,0,0);-ms-transform:matrix(0.163992,-0.001640,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163992,-0.001640,0.002500,0.249988,0,0);}
.m1d_c00324{transform:matrix(0.164272,-0.001643,0.002500,0.249988,0,0);-ms-transform:matrix(0.164272,-0.001643,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164272,-0.001643,0.002500,0.249988,0,0);}
.m65_c00324{transform:matrix(0.164287,-0.001643,0.002500,0.249988,0,0);-ms-transform:matrix(0.164287,-0.001643,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164287,-0.001643,0.002500,0.249988,0,0);}
.m3f_c00324{transform:matrix(0.165292,-0.001653,0.002500,0.249988,0,0);-ms-transform:matrix(0.165292,-0.001653,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165292,-0.001653,0.002500,0.249988,0,0);}
.m105_c00324{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_c00324{transform:matrix(0.165862,-0.001659,0.002500,0.249988,0,0);-ms-transform:matrix(0.165862,-0.001659,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165862,-0.001659,0.002500,0.249988,0,0);}
.m10b_c00324{transform:matrix(0.165876,-0.002156,0.003250,0.249979,0,0);-ms-transform:matrix(0.165876,-0.002156,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165876,-0.002156,0.003250,0.249979,0,0);}
.m19_c00324{transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);-ms-transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166232,-0.001662,0.002500,0.249988,0,0);}
.me7_c00324{transform:matrix(0.166374,-0.002329,0.003500,0.249976,0,0);-ms-transform:matrix(0.166374,-0.002329,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166374,-0.002329,0.003500,0.249976,0,0);}
.m148_c00324{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);}
.m101_c00324{transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);-ms-transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);}
.mf3_c00324{transform:matrix(0.166964,-0.002337,0.003500,0.249976,0,0);-ms-transform:matrix(0.166964,-0.002337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166964,-0.002337,0.003500,0.249976,0,0);}
.m125_c00324{transform:matrix(0.166968,-0.002004,0.003000,0.249982,0,0);-ms-transform:matrix(0.166968,-0.002004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166968,-0.002004,0.003000,0.249982,0,0);}
.mf4_c00324{transform:matrix(0.166994,-0.002338,0.003500,0.249976,0,0);-ms-transform:matrix(0.166994,-0.002338,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166994,-0.002338,0.003500,0.249976,0,0);}
.m109_c00324{transform:matrix(0.167096,-0.002172,0.003250,0.249979,0,0);-ms-transform:matrix(0.167096,-0.002172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167096,-0.002172,0.003250,0.249979,0,0);}
.m128_c00324{transform:matrix(0.167228,-0.002007,0.003000,0.249982,0,0);-ms-transform:matrix(0.167228,-0.002007,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167228,-0.002007,0.003000,0.249982,0,0);}
.m61_c00324{transform:matrix(0.167297,-0.001673,0.002500,0.249988,0,0);-ms-transform:matrix(0.167297,-0.001673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167297,-0.001673,0.002500,0.249988,0,0);}
.md5_c00324{transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);-ms-transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);}
.m129_c00324{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);}
.m62_c00324{transform:matrix(0.168627,-0.001686,0.002500,0.249988,0,0);-ms-transform:matrix(0.168627,-0.001686,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168627,-0.001686,0.002500,0.249988,0,0);}
.m119_c00324{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);}
.me4_c00324{transform:matrix(0.168793,-0.002363,0.003500,0.249976,0,0);-ms-transform:matrix(0.168793,-0.002363,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168793,-0.002363,0.003500,0.249976,0,0);}
.m39_c00324{transform:matrix(0.168822,-0.001688,0.002500,0.249988,0,0);-ms-transform:matrix(0.168822,-0.001688,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168822,-0.001688,0.002500,0.249988,0,0);}
.m3e_c00324{transform:matrix(0.169197,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169197,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169197,-0.001692,0.002500,0.249988,0,0);}
.mf2_c00324{transform:matrix(0.169298,-0.002370,0.003500,0.249976,0,0);-ms-transform:matrix(0.169298,-0.002370,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169298,-0.002370,0.003500,0.249976,0,0);}
.m77_c00324{transform:matrix(0.170101,-0.001701,0.002500,0.249988,0,0);-ms-transform:matrix(0.170101,-0.001701,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170101,-0.001701,0.002500,0.249988,0,0);}
.m3d_c00324{transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);-ms-transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);}
.m58_c00324{transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);}
.m14f_c00324{transform:matrix(0.172118,-0.002065,0.003000,0.249982,0,0);-ms-transform:matrix(0.172118,-0.002065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172118,-0.002065,0.003000,0.249982,0,0);}
.m40_c00324{transform:matrix(0.172216,-0.001722,0.002500,0.249988,0,0);-ms-transform:matrix(0.172216,-0.001722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172216,-0.001722,0.002500,0.249988,0,0);}
.m3a_c00324{transform:matrix(0.172311,-0.001723,0.002500,0.249988,0,0);-ms-transform:matrix(0.172311,-0.001723,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172311,-0.001723,0.002500,0.249988,0,0);}
.m132_c00324{transform:matrix(0.172348,-0.002068,0.003000,0.249982,0,0);-ms-transform:matrix(0.172348,-0.002068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172348,-0.002068,0.003000,0.249982,0,0);}
.m113_c00324{transform:matrix(0.173075,-0.002250,0.003250,0.249979,0,0);-ms-transform:matrix(0.173075,-0.002250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173075,-0.002250,0.003250,0.249979,0,0);}
.ma2_c00324{transform:matrix(0.173211,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173211,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173211,-0.001732,0.002500,0.249988,0,0);}
.m13c_c00324{transform:matrix(0.173358,-0.002080,0.003000,0.249982,0,0);-ms-transform:matrix(0.173358,-0.002080,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173358,-0.002080,0.003000,0.249982,0,0);}
.md0_c00324{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);}
.mb3_c00324{transform:matrix(0.173636,-0.001736,0.002500,0.249988,0,0);-ms-transform:matrix(0.173636,-0.001736,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173636,-0.001736,0.002500,0.249988,0,0);}
.m137_c00324{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);}
.mad_c00324{transform:matrix(0.173926,-0.001739,0.002500,0.249988,0,0);-ms-transform:matrix(0.173926,-0.001739,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173926,-0.001739,0.002500,0.249988,0,0);}
.m131_c00324{transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174367,-0.002092,0.003000,0.249982,0,0);}
.m136_c00324{transform:matrix(0.174457,-0.002093,0.003000,0.249982,0,0);-ms-transform:matrix(0.174457,-0.002093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174457,-0.002093,0.003000,0.249982,0,0);}
.m54_c00324{transform:matrix(0.175381,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175381,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175381,-0.001754,0.002500,0.249988,0,0);}
.m6c_c00324{transform:matrix(0.175396,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175396,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175396,-0.001754,0.002500,0.249988,0,0);}
.m103_c00324{transform:matrix(0.175978,-0.002464,0.003500,0.249976,0,0);-ms-transform:matrix(0.175978,-0.002464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175978,-0.002464,0.003500,0.249976,0,0);}
.m11f_c00324{transform:matrix(0.176252,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176252,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176252,-0.002115,0.003000,0.249982,0,0);}
.m97_c00324{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);}
.mec_c00324{transform:matrix(0.177383,-0.002483,0.003500,0.249976,0,0);-ms-transform:matrix(0.177383,-0.002483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177383,-0.002483,0.003500,0.249976,0,0);}
.m102_c00324{transform:matrix(0.177453,-0.002484,0.003500,0.249976,0,0);-ms-transform:matrix(0.177453,-0.002484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177453,-0.002484,0.003500,0.249976,0,0);}
.m50_c00324{transform:matrix(0.178191,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178191,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178191,-0.001782,0.002500,0.249988,0,0);}
.m14e_c00324{transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);-ms-transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);}
.m64_c00324{transform:matrix(0.178371,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178371,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178371,-0.001784,0.002500,0.249988,0,0);}
.m2f_c00324{transform:matrix(0.178456,-0.001785,0.002500,0.249988,0,0);-ms-transform:matrix(0.178456,-0.001785,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178456,-0.001785,0.002500,0.249988,0,0);}
.m56_c00324{transform:matrix(0.178681,-0.001787,0.002500,0.249988,0,0);-ms-transform:matrix(0.178681,-0.001787,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178681,-0.001787,0.002500,0.249988,0,0);}
.m8f_c00324{transform:matrix(0.179036,-0.001790,0.002500,0.249988,0,0);-ms-transform:matrix(0.179036,-0.001790,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179036,-0.001790,0.002500,0.249988,0,0);}
.m2b_c00324{transform:matrix(0.179091,-0.001791,0.002500,0.249988,0,0);-ms-transform:matrix(0.179091,-0.001791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179091,-0.001791,0.002500,0.249988,0,0);}
.m143_c00324{transform:matrix(0.179172,-0.002150,0.003000,0.249982,0,0);-ms-transform:matrix(0.179172,-0.002150,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179172,-0.002150,0.003000,0.249982,0,0);}
.m14a_c00324{transform:matrix(0.179247,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179247,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179247,-0.002151,0.003000,0.249982,0,0);}
.m124_c00324{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);}
.m12b_c00324{transform:matrix(0.179807,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179807,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179807,-0.002158,0.003000,0.249982,0,0);}
.m36_c00324{transform:matrix(0.179826,-0.001798,0.002500,0.249988,0,0);-ms-transform:matrix(0.179826,-0.001798,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179826,-0.001798,0.002500,0.249988,0,0);}
.m120_c00324{transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);}
.m81_c00324{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);}
.m13_c00324{transform:matrix(0.180101,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180101,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180101,-0.001801,0.002500,0.249988,0,0);}
.m44_c00324{transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);-ms-transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180381,-0.001804,0.002500,0.249988,0,0);}
.mbf_c00324{transform:matrix(0.180906,-0.001809,0.002500,0.249988,0,0);-ms-transform:matrix(0.180906,-0.001809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180906,-0.001809,0.002500,0.249988,0,0);}
.me6_c00324{transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);}
.mb5_c00324{transform:matrix(0.181011,-0.001810,0.002500,0.249988,0,0);-ms-transform:matrix(0.181011,-0.001810,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181011,-0.001810,0.002500,0.249988,0,0);}
.m110_c00324{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);}
.m127_c00324{transform:matrix(0.181102,-0.002173,0.003000,0.249982,0,0);-ms-transform:matrix(0.181102,-0.002173,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181102,-0.002173,0.003000,0.249982,0,0);}
.mbe_c00324{transform:matrix(0.181211,-0.001812,0.002500,0.249988,0,0);-ms-transform:matrix(0.181211,-0.001812,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181211,-0.001812,0.002500,0.249988,0,0);}
.m111_c00324{transform:matrix(0.181380,-0.002358,0.003250,0.249979,0,0);-ms-transform:matrix(0.181380,-0.002358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181380,-0.002358,0.003250,0.249979,0,0);}
.ma_c00324{transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181531,-0.001815,0.002500,0.249988,0,0);}
.mab_c00324{transform:matrix(0.181631,-0.001816,0.002500,0.249988,0,0);-ms-transform:matrix(0.181631,-0.001816,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181631,-0.001816,0.002500,0.249988,0,0);}
.mb9_c00324{transform:matrix(0.181781,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181781,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181781,-0.001818,0.002500,0.249988,0,0);}
.mf5_c00324{transform:matrix(0.181977,-0.002548,0.003500,0.249976,0,0);-ms-transform:matrix(0.181977,-0.002548,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181977,-0.002548,0.003500,0.249976,0,0);}
.ma6_c00324{transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);-ms-transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);}
.m87_c00324{transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);}
.m2a_c00324{transform:matrix(0.183306,-0.001833,0.002500,0.249988,0,0);-ms-transform:matrix(0.183306,-0.001833,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183306,-0.001833,0.002500,0.249988,0,0);}
.m10e_c00324{transform:matrix(0.183854,-0.002390,0.003250,0.249979,0,0);-ms-transform:matrix(0.183854,-0.002390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183854,-0.002390,0.003250,0.249979,0,0);}
.m118_c00324{transform:matrix(0.183882,-0.002207,0.003000,0.249982,0,0);-ms-transform:matrix(0.183882,-0.002207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183882,-0.002207,0.003000,0.249982,0,0);}
.m155_c00324{transform:matrix(0.183992,-0.002208,0.003000,0.249982,0,0);-ms-transform:matrix(0.183992,-0.002208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183992,-0.002208,0.003000,0.249982,0,0);}
.m63_c00324{transform:matrix(0.184236,-0.001842,0.002500,0.249988,0,0);-ms-transform:matrix(0.184236,-0.001842,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184236,-0.001842,0.002500,0.249988,0,0);}
.m145_c00324{transform:matrix(0.184557,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184557,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184557,-0.002215,0.003000,0.249982,0,0);}
.mba_c00324{transform:matrix(0.184811,-0.001848,0.002500,0.249988,0,0);-ms-transform:matrix(0.184811,-0.001848,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184811,-0.001848,0.002500,0.249988,0,0);}
.m83_c00324{transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184901,-0.001849,0.002500,0.249988,0,0);}
.m11e_c00324{transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);-ms-transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185012,-0.002220,0.003000,0.249982,0,0);}
.m66_c00324{transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);}
.mfb_c00324{transform:matrix(0.185877,-0.002602,0.003500,0.249976,0,0);-ms-transform:matrix(0.185877,-0.002602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185877,-0.002602,0.003500,0.249976,0,0);}
.md1_c00324{transform:matrix(0.185966,-0.001860,0.002500,0.249988,0,0);-ms-transform:matrix(0.185966,-0.001860,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185966,-0.001860,0.002500,0.249988,0,0);}
.mb_c00324{transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186261,-0.001863,0.002500,0.249988,0,0);}
.mde_c00324{transform:matrix(0.186757,-0.002615,0.003500,0.249976,0,0);-ms-transform:matrix(0.186757,-0.002615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186757,-0.002615,0.003500,0.249976,0,0);}
.mf7_c00324{transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);}
.m1c_c00324{transform:matrix(0.186816,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186816,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186816,-0.001868,0.002500,0.249988,0,0);}
.m14d_c00324{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);}
.m8c_c00324{transform:matrix(0.187141,-0.001871,0.002500,0.249988,0,0);-ms-transform:matrix(0.187141,-0.001871,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187141,-0.001871,0.002500,0.249988,0,0);}
.m6d_c00324{transform:matrix(0.187476,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187476,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187476,-0.001875,0.002500,0.249988,0,0);}
.m4_c00324{transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);}
.m6_c00324{transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);}
.mcf_c00324{transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);-ms-transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187861,-0.001879,0.002500,0.249988,0,0);}
.m42_c00324{transform:matrix(0.188261,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188261,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188261,-0.001883,0.002500,0.249988,0,0);}
.mdc_c00324{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);}
.m43_c00324{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);}
.m53_c00324{transform:matrix(0.188666,-0.001887,0.002500,0.249988,0,0);-ms-transform:matrix(0.188666,-0.001887,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188666,-0.001887,0.002500,0.249988,0,0);}
.mef_c00324{transform:matrix(0.188737,-0.002642,0.003500,0.249976,0,0);-ms-transform:matrix(0.188737,-0.002642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188737,-0.002642,0.003500,0.249976,0,0);}
.mcb_c00324{transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189076,-0.001891,0.002500,0.249988,0,0);}
.ma1_c00324{transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);}
.md2_c00324{transform:matrix(0.189281,-0.001893,0.002500,0.249988,0,0);-ms-transform:matrix(0.189281,-0.001893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189281,-0.001893,0.002500,0.249988,0,0);}
.m133_c00324{transform:matrix(0.189316,-0.002272,0.003000,0.249982,0,0);-ms-transform:matrix(0.189316,-0.002272,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189316,-0.002272,0.003000,0.249982,0,0);}
.mdb_c00324{transform:matrix(0.189346,-0.002651,0.003500,0.249976,0,0);-ms-transform:matrix(0.189346,-0.002651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189346,-0.002651,0.003500,0.249976,0,0);}
.maf_c00324{transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189386,-0.001894,0.002500,0.249988,0,0);}
.m11a_c00324{transform:matrix(0.189391,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189391,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189391,-0.002273,0.003000,0.249982,0,0);}
.m9e_c00324{transform:matrix(0.189441,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189441,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189441,-0.001894,0.002500,0.249988,0,0);}
.m82_c00324{transform:matrix(0.189521,-0.001895,0.002500,0.249988,0,0);-ms-transform:matrix(0.189521,-0.001895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189521,-0.001895,0.002500,0.249988,0,0);}
.m74_c00324{transform:matrix(0.189781,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189781,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189781,-0.001898,0.002500,0.249988,0,0);}
.m139_c00324{transform:matrix(0.190016,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.190016,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190016,-0.002280,0.003000,0.249982,0,0);}
.m10c_c00324{transform:matrix(0.190079,-0.002471,0.003250,0.249979,0,0);-ms-transform:matrix(0.190079,-0.002471,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190079,-0.002471,0.003250,0.249979,0,0);}
.m68_c00324{transform:matrix(0.190240,-0.001902,0.002500,0.249988,0,0);-ms-transform:matrix(0.190240,-0.001902,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190240,-0.001902,0.002500,0.249988,0,0);}
.mb1_c00324{transform:matrix(0.190310,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190310,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190310,-0.001903,0.002500,0.249988,0,0);}
.m13e_c00324{transform:matrix(0.190501,-0.002286,0.003000,0.249982,0,0);-ms-transform:matrix(0.190501,-0.002286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190501,-0.002286,0.003000,0.249982,0,0);}
.m9_c00324{transform:matrix(0.191040,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.191040,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191040,-0.001910,0.002500,0.249988,0,0);}
.m1e_c00324{transform:matrix(0.191110,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191110,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191110,-0.001911,0.002500,0.249988,0,0);}
.m8a_c00324{transform:matrix(0.191160,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191160,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191160,-0.001912,0.002500,0.249988,0,0);}
.m5b_c00324{transform:matrix(0.191220,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191220,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191220,-0.001912,0.002500,0.249988,0,0);}
.m13f_c00324{transform:matrix(0.191356,-0.002296,0.003000,0.249982,0,0);-ms-transform:matrix(0.191356,-0.002296,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191356,-0.002296,0.003000,0.249982,0,0);}
.m12f_c00324{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);}
.m12e_c00324{transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);}
.m38_c00324{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);}
.m22_c00324{transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);-ms-transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);}
.m70_c00324{transform:matrix(0.192095,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192095,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192095,-0.001921,0.002500,0.249988,0,0);}
.m78_c00324{transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);-ms-transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192115,-0.001921,0.002500,0.249988,0,0);}
.mdf_c00324{transform:matrix(0.192181,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192181,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192181,-0.002691,0.003500,0.249976,0,0);}
.mb7_c00324{transform:matrix(0.192215,-0.001922,0.002500,0.249988,0,0);-ms-transform:matrix(0.192215,-0.001922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192215,-0.001922,0.002500,0.249988,0,0);}
.m6e_c00324{transform:matrix(0.192255,-0.001923,0.002500,0.249988,0,0);-ms-transform:matrix(0.192255,-0.001923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192255,-0.001923,0.002500,0.249988,0,0);}
.md8_c00324{transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);-ms-transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192601,-0.002696,0.003500,0.249976,0,0);}
.m149_c00324{transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);-ms-transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);}
.mc3_c00324{transform:matrix(0.193580,-0.001936,0.002500,0.249988,0,0);-ms-transform:matrix(0.193580,-0.001936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193580,-0.001936,0.002500,0.249988,0,0);}
.m14b_c00324{transform:matrix(0.193841,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193841,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193841,-0.002326,0.003000,0.249982,0,0);}
.m30_c00324{transform:matrix(0.194125,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194125,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194125,-0.001941,0.002500,0.249988,0,0);}
.m6a_c00324{transform:matrix(0.194465,-0.001945,0.002500,0.249988,0,0);-ms-transform:matrix(0.194465,-0.001945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194465,-0.001945,0.002500,0.249988,0,0);}
.m147_c00324{transform:matrix(0.194616,-0.002335,0.003000,0.249982,0,0);-ms-transform:matrix(0.194616,-0.002335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194616,-0.002335,0.003000,0.249982,0,0);}
.m106_c00324{transform:matrix(0.194629,-0.002530,0.003250,0.249979,0,0);-ms-transform:matrix(0.194629,-0.002530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194629,-0.002530,0.003250,0.249979,0,0);}
.mcc_c00324{transform:matrix(0.194650,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194650,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194650,-0.001947,0.002500,0.249988,0,0);}
.m3_c00324{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);}
.m55_c00324{transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194910,-0.001949,0.002500,0.249988,0,0);}
.m6b_c00324{transform:matrix(0.195040,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195040,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195040,-0.001950,0.002500,0.249988,0,0);}
.m10d_c00324{transform:matrix(0.195219,-0.002538,0.003250,0.249979,0,0);-ms-transform:matrix(0.195219,-0.002538,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195219,-0.002538,0.003250,0.249979,0,0);}
.mcd_c00324{transform:matrix(0.195385,-0.001954,0.002500,0.249988,0,0);-ms-transform:matrix(0.195385,-0.001954,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195385,-0.001954,0.002500,0.249988,0,0);}
.m4e_c00324{transform:matrix(0.195490,-0.001955,0.002500,0.249988,0,0);-ms-transform:matrix(0.195490,-0.001955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195490,-0.001955,0.002500,0.249988,0,0);}
.md4_c00324{transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);}
.m157_c00324{transform:matrix(0.195611,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195611,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195611,-0.002347,0.003000,0.249982,0,0);}
.m5c_c00324{transform:matrix(0.195675,-0.001957,0.002500,0.249988,0,0);-ms-transform:matrix(0.195675,-0.001957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195675,-0.001957,0.002500,0.249988,0,0);}
.mc9_c00324{transform:matrix(0.195985,-0.001960,0.002500,0.249988,0,0);-ms-transform:matrix(0.195985,-0.001960,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195985,-0.001960,0.002500,0.249988,0,0);}
.mf_c00324{transform:matrix(0.196205,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196205,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196205,-0.001962,0.002500,0.249988,0,0);}
.me3_c00324{transform:matrix(0.196206,-0.002747,0.003500,0.249976,0,0);-ms-transform:matrix(0.196206,-0.002747,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196206,-0.002747,0.003500,0.249976,0,0);}
.ma3_c00324{transform:matrix(0.196360,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196360,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196360,-0.001964,0.002500,0.249988,0,0);}
.mea_c00324{transform:matrix(0.196396,-0.002750,0.003500,0.249976,0,0);-ms-transform:matrix(0.196396,-0.002750,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196396,-0.002750,0.003500,0.249976,0,0);}
.m1f_c00324{transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196405,-0.001964,0.002500,0.249988,0,0);}
.m138_c00324{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);}
.mc7_c00324{transform:matrix(0.196865,-0.001969,0.002500,0.249988,0,0);-ms-transform:matrix(0.196865,-0.001969,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196865,-0.001969,0.002500,0.249988,0,0);}
.m71_c00324{transform:matrix(0.196880,-0.001969,0.002500,0.249988,0,0);-ms-transform:matrix(0.196880,-0.001969,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196880,-0.001969,0.002500,0.249988,0,0);}
.m8b_c00324{transform:matrix(0.197035,-0.001970,0.002500,0.249988,0,0);-ms-transform:matrix(0.197035,-0.001970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197035,-0.001970,0.002500,0.249988,0,0);}
.md_c00324{transform:matrix(0.197530,-0.001975,0.002500,0.249988,0,0);-ms-transform:matrix(0.197530,-0.001975,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197530,-0.001975,0.002500,0.249988,0,0);}
.maa_c00324{transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);-ms-transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197935,-0.001979,0.002500,0.249988,0,0);}
.m126_c00324{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);}
.mf1_c00324{transform:matrix(0.198376,-0.002777,0.003500,0.249976,0,0);-ms-transform:matrix(0.198376,-0.002777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198376,-0.002777,0.003500,0.249976,0,0);}
.m94_c00324{transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);}
.m29_c00324{transform:matrix(0.199030,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.199030,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199030,-0.001990,0.002500,0.249988,0,0);}
.m79_c00324{transform:matrix(0.199125,-0.001991,0.002500,0.249988,0,0);-ms-transform:matrix(0.199125,-0.001991,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199125,-0.001991,0.002500,0.249988,0,0);}
.mfc_c00324{transform:matrix(0.199520,-0.002793,0.003500,0.249976,0,0);-ms-transform:matrix(0.199520,-0.002793,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199520,-0.002793,0.003500,0.249976,0,0);}
.m7b_c00324{transform:matrix(0.199585,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199585,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199585,-0.001996,0.002500,0.249988,0,0);}
.mfa_c00324{transform:matrix(0.199800,-0.002797,0.003500,0.249976,0,0);-ms-transform:matrix(0.199800,-0.002797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199800,-0.002797,0.003500,0.249976,0,0);}
.m4f_c00324{transform:matrix(0.200100,-0.002001,0.002500,0.249988,0,0);-ms-transform:matrix(0.200100,-0.002001,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200100,-0.002001,0.002500,0.249988,0,0);}
.mc5_c00324{transform:matrix(0.200115,-0.002001,0.002500,0.249988,0,0);-ms-transform:matrix(0.200115,-0.002001,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200115,-0.002001,0.002500,0.249988,0,0);}
.m45_c00324{transform:matrix(0.200260,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200260,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200260,-0.002003,0.002500,0.249988,0,0);}
.m25_c00324{transform:matrix(0.200885,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200885,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200885,-0.002009,0.002500,0.249988,0,0);}
.m27_c00324{transform:matrix(0.201135,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201135,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201135,-0.002011,0.002500,0.249988,0,0);}
.m51_c00324{transform:matrix(0.201290,-0.002013,0.002500,0.249988,0,0);-ms-transform:matrix(0.201290,-0.002013,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201290,-0.002013,0.002500,0.249988,0,0);}
.m13b_c00324{transform:matrix(0.201765,-0.002421,0.003000,0.249982,0,0);-ms-transform:matrix(0.201765,-0.002421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201765,-0.002421,0.003000,0.249982,0,0);}
.me0_c00324{transform:matrix(0.201865,-0.002826,0.003500,0.249976,0,0);-ms-transform:matrix(0.201865,-0.002826,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201865,-0.002826,0.003500,0.249976,0,0);}
.m0_c00324{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);}
.mc0_c00324{transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-ms-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);}
.m32_c00324{transform:matrix(0.203030,-0.002030,0.002500,0.249988,0,0);-ms-transform:matrix(0.203030,-0.002030,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203030,-0.002030,0.002500,0.249988,0,0);}
.m8e_c00324{transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);-ms-transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203040,-0.002030,0.002500,0.249988,0,0);}
.m95_c00324{transform:matrix(0.203110,-0.002031,0.002500,0.249988,0,0);-ms-transform:matrix(0.203110,-0.002031,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203110,-0.002031,0.002500,0.249988,0,0);}
.m16_c00324{transform:matrix(0.203435,-0.002034,0.002500,0.249988,0,0);-ms-transform:matrix(0.203435,-0.002034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203435,-0.002034,0.002500,0.249988,0,0);}
.me9_c00324{transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203870,-0.002854,0.003500,0.249976,0,0);}
.mdd_c00324{transform:matrix(0.204175,-0.002858,0.003500,0.249976,0,0);-ms-transform:matrix(0.204175,-0.002858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204175,-0.002858,0.003500,0.249976,0,0);}
.m7e_c00324{transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-ms-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204635,-0.002046,0.002500,0.249988,0,0);}
.m4b_c00324{transform:matrix(0.204675,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204675,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204675,-0.002047,0.002500,0.249988,0,0);}
.m8_c00324{transform:matrix(0.204875,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204875,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204875,-0.002049,0.002500,0.249988,0,0);}
.m37_c00324{transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204905,-0.002049,0.002500,0.249988,0,0);}
.m13d_c00324{transform:matrix(0.205175,-0.002462,0.003000,0.249982,0,0);-ms-transform:matrix(0.205175,-0.002462,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205175,-0.002462,0.003000,0.249982,0,0);}
.m146_c00324{transform:matrix(0.205225,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205225,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205225,-0.002463,0.003000,0.249982,0,0);}
.m75_c00324{transform:matrix(0.205470,-0.002055,0.002500,0.249988,0,0);-ms-transform:matrix(0.205470,-0.002055,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205470,-0.002055,0.002500,0.249988,0,0);}
.m4c_c00324{transform:matrix(0.206180,-0.002062,0.002500,0.249988,0,0);-ms-transform:matrix(0.206180,-0.002062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206180,-0.002062,0.002500,0.249988,0,0);}
.m108_c00324{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);}
.m93_c00324{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);}
.m130_c00324{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);}
.m5_c00324{transform:matrix(0.208380,-0.002084,0.002500,0.249988,0,0);-ms-transform:matrix(0.208380,-0.002084,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208380,-0.002084,0.002500,0.249988,0,0);}
.mf0_c00324{transform:matrix(0.208475,-0.002919,0.003500,0.249976,0,0);-ms-transform:matrix(0.208475,-0.002919,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208475,-0.002919,0.003500,0.249976,0,0);}
.m15_c00324{transform:matrix(0.209105,-0.002091,0.002500,0.249988,0,0);-ms-transform:matrix(0.209105,-0.002091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209105,-0.002091,0.002500,0.249988,0,0);}
.m144_c00324{transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);-ms-transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);}
.m91_c00324{transform:matrix(0.209350,-0.002093,0.002500,0.249988,0,0);-ms-transform:matrix(0.209350,-0.002093,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209350,-0.002093,0.002500,0.249988,0,0);}
.m152_c00324{transform:matrix(0.209585,-0.002515,0.003000,0.249982,0,0);-ms-transform:matrix(0.209585,-0.002515,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209585,-0.002515,0.003000,0.249982,0,0);}
.m7_c00324{transform:matrix(0.209755,-0.002098,0.002500,0.249988,0,0);-ms-transform:matrix(0.209755,-0.002098,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209755,-0.002098,0.002500,0.249988,0,0);}
.m96_c00324{transform:matrix(0.210084,-0.002101,0.002500,0.249988,0,0);-ms-transform:matrix(0.210084,-0.002101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210084,-0.002101,0.002500,0.249988,0,0);}
.mb4_c00324{transform:matrix(0.210669,-0.002107,0.002500,0.249988,0,0);-ms-transform:matrix(0.210669,-0.002107,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210669,-0.002107,0.002500,0.249988,0,0);}
.m3c_c00324{transform:matrix(0.211164,-0.002112,0.002500,0.249988,0,0);-ms-transform:matrix(0.211164,-0.002112,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211164,-0.002112,0.002500,0.249988,0,0);}
.m47_c00324{transform:matrix(0.212914,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212914,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212914,-0.002129,0.002500,0.249988,0,0);}
.m31_c00324{transform:matrix(0.212919,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212919,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212919,-0.002129,0.002500,0.249988,0,0);}
.m14c_c00324{transform:matrix(0.212955,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212955,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212955,-0.002555,0.003000,0.249982,0,0);}
.m134_c00324{transform:matrix(0.213440,-0.002561,0.003000,0.249982,0,0);-ms-transform:matrix(0.213440,-0.002561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213440,-0.002561,0.003000,0.249982,0,0);}
.m122_c00324{transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);}
.m17_c00324{transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);-ms-transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);}
.m8d_c00324{transform:matrix(0.214894,-0.002149,0.002500,0.249988,0,0);-ms-transform:matrix(0.214894,-0.002149,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214894,-0.002149,0.002500,0.249988,0,0);}
.mc4_c00324{transform:matrix(0.215859,-0.002159,0.002500,0.249988,0,0);-ms-transform:matrix(0.215859,-0.002159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215859,-0.002159,0.002500,0.249988,0,0);}
.m85_c00324{transform:matrix(0.216049,-0.002160,0.002500,0.249988,0,0);-ms-transform:matrix(0.216049,-0.002160,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216049,-0.002160,0.002500,0.249988,0,0);}
.mf6_c00324{transform:matrix(0.216129,-0.003026,0.003500,0.249976,0,0);-ms-transform:matrix(0.216129,-0.003026,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216129,-0.003026,0.003500,0.249976,0,0);}
.me_c00324{transform:matrix(0.216319,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216319,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216319,-0.002163,0.002500,0.249988,0,0);}
.m7a_c00324{transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216334,-0.002163,0.002500,0.249988,0,0);}
.m4d_c00324{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);}
.m60_c00324{transform:matrix(0.217774,-0.002178,0.002500,0.249988,0,0);-ms-transform:matrix(0.217774,-0.002178,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217774,-0.002178,0.002500,0.249988,0,0);}
.m11d_c00324{transform:matrix(0.217929,-0.002615,0.003000,0.249982,0,0);-ms-transform:matrix(0.217929,-0.002615,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217929,-0.002615,0.003000,0.249982,0,0);}
.m141_c00324{transform:matrix(0.217979,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.217979,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217979,-0.002616,0.003000,0.249982,0,0);}
.m121_c00324{transform:matrix(0.218249,-0.002619,0.003000,0.249982,0,0);-ms-transform:matrix(0.218249,-0.002619,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218249,-0.002619,0.003000,0.249982,0,0);}
.me8_c00324{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);}
.ma9_c00324{transform:matrix(0.218844,-0.002188,0.002500,0.249988,0,0);-ms-transform:matrix(0.218844,-0.002188,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218844,-0.002188,0.002500,0.249988,0,0);}
.m12_c00324{transform:matrix(0.219164,-0.002192,0.002500,0.249988,0,0);-ms-transform:matrix(0.219164,-0.002192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219164,-0.002192,0.002500,0.249988,0,0);}
.mc6_c00324{transform:matrix(0.219264,-0.002193,0.002500,0.249988,0,0);-ms-transform:matrix(0.219264,-0.002193,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219264,-0.002193,0.002500,0.249988,0,0);}
.m142_c00324{transform:matrix(0.219504,-0.002634,0.003000,0.249982,0,0);-ms-transform:matrix(0.219504,-0.002634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219504,-0.002634,0.003000,0.249982,0,0);}
.mbc_c00324{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);}
.m7f_c00324{transform:matrix(0.220194,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220194,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220194,-0.002202,0.002500,0.249988,0,0);}
.m21_c00324{transform:matrix(0.220489,-0.002205,0.002500,0.249988,0,0);-ms-transform:matrix(0.220489,-0.002205,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220489,-0.002205,0.002500,0.249988,0,0);}
.m26_c00324{transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);-ms-transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);}
.me5_c00324{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);}
.m11b_c00324{transform:matrix(0.221214,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221214,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221214,-0.002655,0.003000,0.249982,0,0);}
.m7c_c00324{transform:matrix(0.221479,-0.002215,0.002500,0.249988,0,0);-ms-transform:matrix(0.221479,-0.002215,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221479,-0.002215,0.002500,0.249988,0,0);}
.m52_c00324{transform:matrix(0.221959,-0.002220,0.002500,0.249988,0,0);-ms-transform:matrix(0.221959,-0.002220,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221959,-0.002220,0.002500,0.249988,0,0);}
.m5e_c00324{transform:matrix(0.224189,-0.002242,0.002500,0.249988,0,0);-ms-transform:matrix(0.224189,-0.002242,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224189,-0.002242,0.002500,0.249988,0,0);}
.m33_c00324{transform:matrix(0.224339,-0.002243,0.002500,0.249988,0,0);-ms-transform:matrix(0.224339,-0.002243,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224339,-0.002243,0.002500,0.249988,0,0);}
.m12d_c00324{transform:matrix(0.226169,-0.002714,0.003000,0.249982,0,0);-ms-transform:matrix(0.226169,-0.002714,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226169,-0.002714,0.003000,0.249982,0,0);}
.meb_c00324{transform:matrix(0.226268,-0.003168,0.003500,0.249976,0,0);-ms-transform:matrix(0.226268,-0.003168,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226268,-0.003168,0.003500,0.249976,0,0);}
.m1a_c00324{transform:matrix(0.226764,-0.002268,0.002500,0.249988,0,0);-ms-transform:matrix(0.226764,-0.002268,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226764,-0.002268,0.002500,0.249988,0,0);}
.mc_c00324{transform:matrix(0.227594,-0.002276,0.002500,0.249988,0,0);-ms-transform:matrix(0.227594,-0.002276,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227594,-0.002276,0.002500,0.249988,0,0);}
.me2_c00324{transform:matrix(0.227693,-0.003188,0.003500,0.249976,0,0);-ms-transform:matrix(0.227693,-0.003188,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227693,-0.003188,0.003500,0.249976,0,0);}
.md7_c00324{transform:matrix(0.228568,-0.003200,0.003500,0.249976,0,0);-ms-transform:matrix(0.228568,-0.003200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228568,-0.003200,0.003500,0.249976,0,0);}
.mb6_c00324{transform:matrix(0.231353,-0.002314,0.002500,0.249988,0,0);-ms-transform:matrix(0.231353,-0.002314,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231353,-0.002314,0.002500,0.249988,0,0);}
.mb8_c00324{transform:matrix(0.231938,-0.002319,0.002500,0.249988,0,0);-ms-transform:matrix(0.231938,-0.002319,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231938,-0.002319,0.002500,0.249988,0,0);}
.m14_c00324{transform:matrix(0.232673,-0.002327,0.002500,0.249988,0,0);-ms-transform:matrix(0.232673,-0.002327,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232673,-0.002327,0.002500,0.249988,0,0);}
.mce_c00324{transform:matrix(0.235658,-0.002357,0.002500,0.249988,0,0);-ms-transform:matrix(0.235658,-0.002357,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235658,-0.002357,0.002500,0.249988,0,0);}
.md9_c00324{transform:matrix(0.237027,-0.003318,0.003500,0.249976,0,0);-ms-transform:matrix(0.237027,-0.003318,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237027,-0.003318,0.003500,0.249976,0,0);}
.m15e_c00324{transform:matrix(0.237901,-0.005710,0.005998,0.249928,0,0);-ms-transform:matrix(0.237901,-0.005710,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237901,-0.005710,0.005998,0.249928,0,0);}
.m59_c00324{transform:matrix(0.238103,-0.002381,0.002500,0.249988,0,0);-ms-transform:matrix(0.238103,-0.002381,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238103,-0.002381,0.002500,0.249988,0,0);}
.m7d_c00324{transform:matrix(0.238758,-0.002388,0.002500,0.249988,0,0);-ms-transform:matrix(0.238758,-0.002388,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238758,-0.002388,0.002500,0.249988,0,0);}
.mb0_c00324{transform:matrix(0.239123,-0.002391,0.002500,0.249988,0,0);-ms-transform:matrix(0.239123,-0.002391,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239123,-0.002391,0.002500,0.249988,0,0);}
.mc1_c00324{transform:matrix(0.239318,-0.002393,0.002500,0.249988,0,0);-ms-transform:matrix(0.239318,-0.002393,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239318,-0.002393,0.002500,0.249988,0,0);}
.m2e_c00324{transform:matrix(0.239418,-0.002394,0.002500,0.249988,0,0);-ms-transform:matrix(0.239418,-0.002394,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239418,-0.002394,0.002500,0.249988,0,0);}
.m2_c00324{transform:matrix(0.245668,-0.002457,0.002500,0.249988,0,0);-ms-transform:matrix(0.245668,-0.002457,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245668,-0.002457,0.002500,0.249988,0,0);}
.m4a_c00324{transform:matrix(0.246203,-0.002462,0.002500,0.249988,0,0);-ms-transform:matrix(0.246203,-0.002462,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246203,-0.002462,0.002500,0.249988,0,0);}
.m24_c00324{transform:matrix(0.246218,-0.002462,0.002500,0.249988,0,0);-ms-transform:matrix(0.246218,-0.002462,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246218,-0.002462,0.002500,0.249988,0,0);}
.m3b_c00324{transform:matrix(0.251912,-0.002519,0.002500,0.249988,0,0);-ms-transform:matrix(0.251912,-0.002519,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251912,-0.002519,0.002500,0.249988,0,0);}
.m98_c00324{transform:matrix(0.253787,-0.002538,0.002500,0.249988,0,0);-ms-transform:matrix(0.253787,-0.002538,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253787,-0.002538,0.002500,0.249988,0,0);}
.m2d_c00324{transform:matrix(0.264462,-0.002645,0.002500,0.249988,0,0);-ms-transform:matrix(0.264462,-0.002645,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264462,-0.002645,0.002500,0.249988,0,0);}
.m156_c00324{transform:matrix(0.268146,-0.003218,0.003000,0.249982,0,0);-ms-transform:matrix(0.268146,-0.003218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268146,-0.003218,0.003000,0.249982,0,0);}
.m15d_c00324{transform:matrix(0.268538,-0.006445,0.005998,0.249928,0,0);-ms-transform:matrix(0.268538,-0.006445,0.005998,0.249928,0,0);-webkit-transform:matrix(0.268538,-0.006445,0.005998,0.249928,0,0);}
.m49_c00324{transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);-ms-transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);}
.m80_c00324{transform:matrix(0.270021,-0.002700,0.002500,0.249988,0,0);-ms-transform:matrix(0.270021,-0.002700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270021,-0.002700,0.002500,0.249988,0,0);}
.m9b_c00324{transform:matrix(0.271821,-0.002718,0.002500,0.249988,0,0);-ms-transform:matrix(0.271821,-0.002718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271821,-0.002718,0.002500,0.249988,0,0);}
.m76_c00324{transform:matrix(0.273416,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273416,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273416,-0.002734,0.002500,0.249988,0,0);}
.m34_c00324{transform:matrix(0.274531,-0.002745,0.002500,0.249988,0,0);-ms-transform:matrix(0.274531,-0.002745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274531,-0.002745,0.002500,0.249988,0,0);}
.m112_c00324{transform:matrix(0.281031,-0.003653,0.003250,0.249979,0,0);-ms-transform:matrix(0.281031,-0.003653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.281031,-0.003653,0.003250,0.249979,0,0);}
.m18_c00324{transform:matrix(0.283736,-0.002837,0.002500,0.249988,0,0);-ms-transform:matrix(0.283736,-0.002837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.283736,-0.002837,0.002500,0.249988,0,0);}
.m15c_c00324{transform:matrix(0.287387,-0.006897,0.005998,0.249928,0,0);-ms-transform:matrix(0.287387,-0.006897,0.005998,0.249928,0,0);-webkit-transform:matrix(0.287387,-0.006897,0.005998,0.249928,0,0);}
.m154_c00324{transform:matrix(0.288194,-0.003458,0.003000,0.249982,0,0);-ms-transform:matrix(0.288194,-0.003458,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288194,-0.003458,0.003000,0.249982,0,0);}
.mc2_c00324{transform:matrix(0.294335,-0.002943,0.002500,0.249988,0,0);-ms-transform:matrix(0.294335,-0.002943,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294335,-0.002943,0.002500,0.249988,0,0);}
.m9c_c00324{transform:matrix(0.308220,-0.003082,0.002500,0.249988,0,0);-ms-transform:matrix(0.308220,-0.003082,0.002500,0.249988,0,0);-webkit-transform:matrix(0.308220,-0.003082,0.002500,0.249988,0,0);}
.m2c_c00324{transform:matrix(0.309080,-0.003091,0.002500,0.249988,0,0);-ms-transform:matrix(0.309080,-0.003091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.309080,-0.003091,0.002500,0.249988,0,0);}
.m11_c00324{transform:matrix(0.315839,-0.003158,0.002500,0.249988,0,0);-ms-transform:matrix(0.315839,-0.003158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.315839,-0.003158,0.002500,0.249988,0,0);}
.me1_c00324{transform:matrix(0.325733,-0.004560,0.003500,0.249976,0,0);-ms-transform:matrix(0.325733,-0.004560,0.003500,0.249976,0,0);-webkit-transform:matrix(0.325733,-0.004560,0.003500,0.249976,0,0);}
.m15b_c00324{transform:matrix(0.327621,-0.007863,0.005998,0.249928,0,0);-ms-transform:matrix(0.327621,-0.007863,0.005998,0.249928,0,0);-webkit-transform:matrix(0.327621,-0.007863,0.005998,0.249928,0,0);}
.m48_c00324{transform:matrix(0.332838,-0.003328,0.002500,0.249988,0,0);-ms-transform:matrix(0.332838,-0.003328,0.002500,0.249988,0,0);-webkit-transform:matrix(0.332838,-0.003328,0.002500,0.249988,0,0);}
.m158_c00324{transform:matrix(0.345360,-0.004144,0.003000,0.249982,0,0);-ms-transform:matrix(0.345360,-0.004144,0.003000,0.249982,0,0);-webkit-transform:matrix(0.345360,-0.004144,0.003000,0.249982,0,0);}
.med_c00324{transform:matrix(0.346016,-0.004844,0.003500,0.249976,0,0);-ms-transform:matrix(0.346016,-0.004844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.346016,-0.004844,0.003500,0.249976,0,0);}
.m12c_c00324{transform:matrix(0.348260,-0.004179,0.003000,0.249982,0,0);-ms-transform:matrix(0.348260,-0.004179,0.003000,0.249982,0,0);-webkit-transform:matrix(0.348260,-0.004179,0.003000,0.249982,0,0);}
.mf8_c00324{transform:matrix(0.367004,-0.005138,0.003500,0.249976,0,0);-ms-transform:matrix(0.367004,-0.005138,0.003500,0.249976,0,0);-webkit-transform:matrix(0.367004,-0.005138,0.003500,0.249976,0,0);}
.m10a_c00324{transform:matrix(0.373328,-0.004853,0.003250,0.249979,0,0);-ms-transform:matrix(0.373328,-0.004853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.373328,-0.004853,0.003250,0.249979,0,0);}
.m104_c00324{transform:matrix(0.376963,-0.005277,0.003500,0.249976,0,0);-ms-transform:matrix(0.376963,-0.005277,0.003500,0.249976,0,0);-webkit-transform:matrix(0.376963,-0.005277,0.003500,0.249976,0,0);}
.m15f_c00324{transform:matrix(0.379556,-0.009109,0.005998,0.249928,0,0);-ms-transform:matrix(0.379556,-0.009109,0.005998,0.249928,0,0);-webkit-transform:matrix(0.379556,-0.009109,0.005998,0.249928,0,0);}
.m15a_c00324{transform:matrix(0.393387,-0.009441,0.005998,0.249928,0,0);-ms-transform:matrix(0.393387,-0.009441,0.005998,0.249928,0,0);-webkit-transform:matrix(0.393387,-0.009441,0.005998,0.249928,0,0);}
.m166_c00324{transform:matrix(0.395291,-0.009487,0.005998,0.249928,0,0);-ms-transform:matrix(0.395291,-0.009487,0.005998,0.249928,0,0);-webkit-transform:matrix(0.395291,-0.009487,0.005998,0.249928,0,0);}
.m13a_c00324{transform:matrix(0.397091,-0.004765,0.003000,0.249982,0,0);-ms-transform:matrix(0.397091,-0.004765,0.003000,0.249982,0,0);-webkit-transform:matrix(0.397091,-0.004765,0.003000,0.249982,0,0);}
.m167_c00324{transform:matrix(0.403354,-0.009680,0.005998,0.249928,0,0);-ms-transform:matrix(0.403354,-0.009680,0.005998,0.249928,0,0);-webkit-transform:matrix(0.403354,-0.009680,0.005998,0.249928,0,0);}
.m159_c00324{transform:matrix(0.408457,-0.009803,0.005998,0.249928,0,0);-ms-transform:matrix(0.408457,-0.009803,0.005998,0.249928,0,0);-webkit-transform:matrix(0.408457,-0.009803,0.005998,0.249928,0,0);}
.mbb_c00324{transform:matrix(0.417589,-0.004176,0.002500,0.249988,0,0);-ms-transform:matrix(0.417589,-0.004176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.417589,-0.004176,0.002500,0.249988,0,0);}
.m160_c00324{transform:matrix(0.441798,-0.010603,0.005998,0.249928,0,0);-ms-transform:matrix(0.441798,-0.010603,0.005998,0.249928,0,0);-webkit-transform:matrix(0.441798,-0.010603,0.005998,0.249928,0,0);}
.md6_c00324{transform:matrix(0.468447,-0.004684,0.002500,0.249988,0,0);-ms-transform:matrix(0.468447,-0.004684,0.002500,0.249988,0,0);-webkit-transform:matrix(0.468447,-0.004684,0.002500,0.249988,0,0);}
.mb2_c00324{transform:matrix(0.472226,-0.004722,0.002500,0.249988,0,0);-ms-transform:matrix(0.472226,-0.004722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.472226,-0.004722,0.002500,0.249988,0,0);}
.m99_c00324{transform:matrix(0.483436,-0.004834,0.002500,0.249988,0,0);-ms-transform:matrix(0.483436,-0.004834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.483436,-0.004834,0.002500,0.249988,0,0);}
.mc8_c00324{transform:matrix(0.521854,-0.005219,0.002500,0.249988,0,0);-ms-transform:matrix(0.521854,-0.005219,0.002500,0.249988,0,0);-webkit-transform:matrix(0.521854,-0.005219,0.002500,0.249988,0,0);}
.m10f_c00324{transform:matrix(0.552653,-0.007184,0.003250,0.249979,0,0);-ms-transform:matrix(0.552653,-0.007184,0.003250,0.249979,0,0);-webkit-transform:matrix(0.552653,-0.007184,0.003250,0.249979,0,0);}
.m150_c00324{transform:matrix(0.677096,-0.008125,0.003000,0.249982,0,0);-ms-transform:matrix(0.677096,-0.008125,0.003000,0.249982,0,0);-webkit-transform:matrix(0.677096,-0.008125,0.003000,0.249982,0,0);}
.ma7_c00324{transform:matrix(0.730113,-0.007301,0.002500,0.249988,0,0);-ms-transform:matrix(0.730113,-0.007301,0.002500,0.249988,0,0);-webkit-transform:matrix(0.730113,-0.007301,0.002500,0.249988,0,0);}
.m114_c00324{transform:matrix(0.824385,-0.010717,0.003250,0.249979,0,0);-ms-transform:matrix(0.824385,-0.010717,0.003250,0.249979,0,0);-webkit-transform:matrix(0.824385,-0.010717,0.003250,0.249979,0,0);}
.m162_c00324{transform:matrix(1.014358,-0.024345,0.005998,0.249928,0,0);-ms-transform:matrix(1.014358,-0.024345,0.005998,0.249928,0,0);-webkit-transform:matrix(1.014358,-0.024345,0.005998,0.249928,0,0);}
.m165_c00324{transform:matrix(1.169718,-0.028073,0.005998,0.249928,0,0);-ms-transform:matrix(1.169718,-0.028073,0.005998,0.249928,0,0);-webkit-transform:matrix(1.169718,-0.028073,0.005998,0.249928,0,0);}
.m161_c00324{transform:matrix(1.232990,-0.029592,0.005998,0.249928,0,0);-ms-transform:matrix(1.232990,-0.029592,0.005998,0.249928,0,0);-webkit-transform:matrix(1.232990,-0.029592,0.005998,0.249928,0,0);}
.m164_c00324{transform:matrix(1.365677,-0.032776,0.005998,0.249928,0,0);-ms-transform:matrix(1.365677,-0.032776,0.005998,0.249928,0,0);-webkit-transform:matrix(1.365677,-0.032776,0.005998,0.249928,0,0);}
.m169_c00324{transform:matrix(1.513054,-0.036313,0.005998,0.249928,0,0);-ms-transform:matrix(1.513054,-0.036313,0.005998,0.249928,0,0);-webkit-transform:matrix(1.513054,-0.036313,0.005998,0.249928,0,0);}
.m163_c00324{transform:matrix(1.812203,-0.043493,0.005998,0.249928,0,0);-ms-transform:matrix(1.812203,-0.043493,0.005998,0.249928,0,0);-webkit-transform:matrix(1.812203,-0.043493,0.005998,0.249928,0,0);}
.m168_c00324{transform:matrix(2.012396,-0.048297,0.005998,0.249928,0,0);-ms-transform:matrix(2.012396,-0.048297,0.005998,0.249928,0,0);-webkit-transform:matrix(2.012396,-0.048297,0.005998,0.249928,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;}
.fs14_c00324{font-size:33.609675px;}
.fs1_c00324{font-size:61.953097px;}
.fs5_c00324{font-size:63.003150px;}
.fs8_c00324{font-size:63.006174px;}
.fs7_c00324{font-size:64.053202px;}
.fs13_c00324{font-size:66.169048px;}
.fs3_c00324{font-size:67.203360px;}
.fsf_c00324{font-size:67.204838px;}
.fs2_c00324{font-size:68.253412px;}
.fs10_c00324{font-size:68.254914px;}
.fsd_c00324{font-size:68.255767px;}
.fs9_c00324{font-size:68.256688px;}
.fs4_c00324{font-size:69.303465px;}
.fsb_c00324{font-size:70.350000px;}
.fs0_c00324{font-size:71.403570px;}
.fs11_c00324{font-size:71.405141px;}
.fsc_c00324{font-size:71.406033px;}
.fs6_c00324{font-size:72.453622px;}
.fse_c00324{font-size:72.455216px;}
.fsa_c00324{font-size:72.457100px;}
.fs12_c00324{font-size:73.505292px;}
.y0_c00324{bottom:0.000000px;}
.y166_c00324{bottom:110.138112px;}
.y167_c00324{bottom:110.400936px;}
.y168_c00324{bottom:111.285564px;}
.y169_c00324{bottom:112.419528px;}
.y16a_c00324{bottom:115.414632px;}
.y16b_c00324{bottom:117.731208px;}
.y16c_c00324{bottom:120.615216px;}
.y16d_c00324{bottom:120.931668px;}
.y16e_c00324{bottom:121.113588px;}
.y15f_c00324{bottom:122.587500px;}
.y16f_c00324{bottom:123.717108px;}
.y160_c00324{bottom:125.100552px;}
.y161_c00324{bottom:127.557624px;}
.y162_c00324{bottom:130.597104px;}
.y163_c00324{bottom:131.965968px;}
.y164_c00324{bottom:133.494708px;}
.y165_c00324{bottom:135.378300px;}
.y157_c00324{bottom:150.339858px;}
.y15e_c00324{bottom:150.340326px;}
.y159_c00324{bottom:150.340362px;}
.y15a_c00324{bottom:150.340410px;}
.y158_c00324{bottom:150.340440px;}
.y15d_c00324{bottom:150.340752px;}
.y15b_c00324{bottom:150.340902px;}
.y15c_c00324{bottom:150.341130px;}
.y14c_c00324{bottom:171.985788px;}
.y14d_c00324{bottom:172.351932px;}
.y14e_c00324{bottom:173.152296px;}
.y14f_c00324{bottom:173.583654px;}
.y150_c00324{bottom:173.884686px;}
.y151_c00324{bottom:174.340440px;}
.y152_c00324{bottom:175.078038px;}
.y153_c00324{bottom:176.559408px;}
.y154_c00324{bottom:177.412836px;}
.y155_c00324{bottom:177.701160px;}
.y156_c00324{bottom:178.469616px;}
.y141_c00324{bottom:194.937744px;}
.y142_c00324{bottom:195.746676px;}
.y143_c00324{bottom:196.351986px;}
.y144_c00324{bottom:196.707744px;}
.y145_c00324{bottom:197.327406px;}
.y146_c00324{bottom:197.939286px;}
.y147_c00324{bottom:198.222984px;}
.y148_c00324{bottom:199.043082px;}
.y149_c00324{bottom:199.406676px;}
.y14a_c00324{bottom:199.751124px;}
.y14b_c00324{bottom:201.055320px;}
.y133_c00324{bottom:217.888482px;}
.y134_c00324{bottom:218.575200px;}
.y135_c00324{bottom:219.002880px;}
.y136_c00324{bottom:219.313938px;}
.y137_c00324{bottom:219.783324px;}
.y138_c00324{bottom:220.256220px;}
.y139_c00324{bottom:220.655496px;}
.y13a_c00324{bottom:221.190060px;}
.y13b_c00324{bottom:221.805840px;}
.y13c_c00324{bottom:222.035700px;}
.y13d_c00324{bottom:222.469356px;}
.y13e_c00324{bottom:222.751452px;}
.y13f_c00324{bottom:223.214736px;}
.y140_c00324{bottom:223.982796px;}
.y127_c00324{bottom:240.300096px;}
.y128_c00324{bottom:240.688986px;}
.y129_c00324{bottom:241.019484px;}
.y12a_c00324{bottom:241.667358px;}
.y12b_c00324{bottom:242.156724px;}
.y12c_c00324{bottom:242.435382px;}
.y12d_c00324{bottom:243.018618px;}
.y12e_c00324{bottom:243.582486px;}
.y12f_c00324{bottom:244.093938px;}
.y130_c00324{bottom:244.586850px;}
.y131_c00324{bottom:244.920822px;}
.y132_c00324{bottom:246.431796px;}
.y11b_c00324{bottom:263.502000px;}
.y11c_c00324{bottom:263.773512px;}
.y11d_c00324{bottom:264.046356px;}
.y11e_c00324{bottom:264.461040px;}
.y11f_c00324{bottom:265.015044px;}
.y120_c00324{bottom:265.730562px;}
.y121_c00324{bottom:266.424696px;}
.y122_c00324{bottom:266.735286px;}
.y123_c00324{bottom:267.248952px;}
.y124_c00324{bottom:268.060338px;}
.y125_c00324{bottom:268.449768px;}
.y126_c00324{bottom:269.368002px;}
.y119_c00324{bottom:286.200926px;}
.y11a_c00324{bottom:292.253157px;}
.y10c_c00324{bottom:308.883000px;}
.y10d_c00324{bottom:309.988650px;}
.y10e_c00324{bottom:310.226531px;}
.y10f_c00324{bottom:310.581060px;}
.y110_c00324{bottom:310.872449px;}
.y111_c00324{bottom:311.550639px;}
.y112_c00324{bottom:311.845050px;}
.y113_c00324{bottom:312.333486px;}
.y114_c00324{bottom:313.014543px;}
.y115_c00324{bottom:313.417472px;}
.y116_c00324{bottom:314.211434px;}
.y117_c00324{bottom:314.684738px;}
.y118_c00324{bottom:315.453233px;}
.y10b_c00324{bottom:320.220000px;}
.yfe_c00324{bottom:331.825170px;}
.yff_c00324{bottom:332.347848px;}
.y100_c00324{bottom:333.789651px;}
.y101_c00324{bottom:334.184061px;}
.y102_c00324{bottom:335.302554px;}
.y103_c00324{bottom:335.483535px;}
.y104_c00324{bottom:335.743839px;}
.y105_c00324{bottom:336.073785px;}
.y106_c00324{bottom:336.613128px;}
.y107_c00324{bottom:336.960915px;}
.y108_c00324{bottom:337.501371px;}
.y109_c00324{bottom:337.821330px;}
.y10a_c00324{bottom:338.394705px;}
.yf3_c00324{bottom:354.238062px;}
.yf4_c00324{bottom:354.627663px;}
.yf5_c00324{bottom:356.017224px;}
.yf6_c00324{bottom:356.515971px;}
.yf7_c00324{bottom:357.499329px;}
.yf8_c00324{bottom:358.257477px;}
.yf9_c00324{bottom:358.573803px;}
.yfa_c00324{bottom:359.247105px;}
.yfb_c00324{bottom:360.243978px;}
.yfc_c00324{bottom:360.817395px;}
.yfd_c00324{bottom:361.002567px;}
.ye7_c00324{bottom:376.921935px;}
.ye8_c00324{bottom:377.423877px;}
.ye9_c00324{bottom:377.853957px;}
.yea_c00324{bottom:378.160536px;}
.yeb_c00324{bottom:379.642842px;}
.yec_c00324{bottom:379.968258px;}
.yed_c00324{bottom:380.799564px;}
.yee_c00324{bottom:381.170382px;}
.yef_c00324{bottom:382.027560px;}
.yf0_c00324{bottom:382.425216px;}
.yf1_c00324{bottom:383.283717px;}
.yf2_c00324{bottom:384.082431px;}
.ydc_c00324{bottom:400.143000px;}
.ydd_c00324{bottom:401.643576px;}
.yde_c00324{bottom:402.040644px;}
.ydf_c00324{bottom:403.153791px;}
.ye0_c00324{bottom:403.344723px;}
.ye1_c00324{bottom:403.813506px;}
.ye2_c00324{bottom:404.089425px;}
.ye3_c00324{bottom:404.762559px;}
.ye4_c00324{bottom:405.484371px;}
.ye5_c00324{bottom:405.862602px;}
.ye6_c00324{bottom:407.325378px;}
.yce_c00324{bottom:422.265615px;}
.ycf_c00324{bottom:422.759220px;}
.yd0_c00324{bottom:422.880975px;}
.yd1_c00324{bottom:423.206040px;}
.yd2_c00324{bottom:423.588885px;}
.yd3_c00324{bottom:424.836825px;}
.yd4_c00324{bottom:425.188290px;}
.yd5_c00324{bottom:425.746500px;}
.yd6_c00324{bottom:426.015510px;}
.yd7_c00324{bottom:426.945180px;}
.yd8_c00324{bottom:427.459410px;}
.yd9_c00324{bottom:428.384310px;}
.yda_c00324{bottom:428.804625px;}
.ydb_c00324{bottom:429.344790px;}
.yc1_c00324{bottom:446.029110px;}
.yc2_c00324{bottom:446.731965px;}
.yc3_c00324{bottom:447.032580px;}
.yc4_c00324{bottom:447.246900px;}
.yc5_c00324{bottom:447.648585px;}
.yc6_c00324{bottom:448.089870px;}
.yc7_c00324{bottom:449.083710px;}
.yc8_c00324{bottom:449.572470px;}
.yc9_c00324{bottom:449.906175px;}
.yca_c00324{bottom:450.780165px;}
.ycb_c00324{bottom:451.035510px;}
.ycc_c00324{bottom:451.397955px;}
.ycd_c00324{bottom:452.064030px;}
.yb7_c00324{bottom:468.709965px;}
.yb8_c00324{bottom:469.214415px;}
.yb9_c00324{bottom:469.854255px;}
.yba_c00324{bottom:470.100480px;}
.ybb_c00324{bottom:470.778315px;}
.ybc_c00324{bottom:471.537030px;}
.ybd_c00324{bottom:472.622490px;}
.ybe_c00324{bottom:473.005440px;}
.ybf_c00324{bottom:473.232765px;}
.yc0_c00324{bottom:473.754240px;}
.yab_c00324{bottom:491.662650px;}
.yac_c00324{bottom:491.947305px;}
.yad_c00324{bottom:493.057155px;}
.yae_c00324{bottom:493.530465px;}
.yaf_c00324{bottom:494.008665px;}
.yb0_c00324{bottom:494.358780px;}
.yb1_c00324{bottom:494.990490px;}
.yb2_c00324{bottom:495.299805px;}
.yb3_c00324{bottom:495.599940px;}
.yb4_c00324{bottom:496.155570px;}
.yb5_c00324{bottom:496.654620px;}
.yb6_c00324{bottom:497.198550px;}
.y9d_c00324{bottom:513.938055px;}
.y9e_c00324{bottom:514.033620px;}
.y9f_c00324{bottom:514.660170px;}
.ya0_c00324{bottom:514.867065px;}
.ya1_c00324{bottom:515.300835px;}
.ya2_c00324{bottom:515.666865px;}
.ya3_c00324{bottom:515.867970px;}
.ya4_c00324{bottom:516.225045px;}
.ya5_c00324{bottom:517.067505px;}
.ya6_c00324{bottom:517.438140px;}
.ya7_c00324{bottom:518.582490px;}
.ya8_c00324{bottom:518.759580px;}
.ya9_c00324{bottom:519.125925px;}
.yaa_c00324{bottom:519.891780px;}
.y9c_c00324{bottom:537.290070px;}
.y90_c00324{bottom:559.973505px;}
.y91_c00324{bottom:560.538240px;}
.y92_c00324{bottom:560.741430px;}
.y93_c00324{bottom:560.980590px;}
.y94_c00324{bottom:561.623220px;}
.y95_c00324{bottom:562.170450px;}
.y96_c00324{bottom:562.640325px;}
.y97_c00324{bottom:563.549100px;}
.y98_c00324{bottom:564.005070px;}
.y99_c00324{bottom:564.568275px;}
.y9a_c00324{bottom:565.275060px;}
.y9b_c00324{bottom:565.972815px;}
.y85_c00324{bottom:583.303260px;}
.y86_c00324{bottom:583.761030px;}
.y87_c00324{bottom:584.233920px;}
.y88_c00324{bottom:585.044505px;}
.y89_c00324{bottom:585.285660px;}
.y8a_c00324{bottom:585.520095px;}
.y8b_c00324{bottom:586.071315px;}
.y8c_c00324{bottom:586.317990px;}
.y8d_c00324{bottom:586.741200px;}
.y8e_c00324{bottom:587.584275px;}
.y8f_c00324{bottom:588.056805px;}
.y79_c00324{bottom:605.599965px;}
.y7a_c00324{bottom:606.221550px;}
.y7b_c00324{bottom:606.598485px;}
.y7c_c00324{bottom:606.905610px;}
.y7d_c00324{bottom:607.238025px;}
.y7e_c00324{bottom:607.615815px;}
.y7f_c00324{bottom:608.368350px;}
.y80_c00324{bottom:609.157800px;}
.y81_c00324{bottom:609.377115px;}
.y82_c00324{bottom:609.596550px;}
.y83_c00324{bottom:610.258470px;}
.y84_c00324{bottom:610.513335px;}
.y6f_c00324{bottom:628.285215px;}
.y70_c00324{bottom:628.710405px;}
.y71_c00324{bottom:629.500560px;}
.y72_c00324{bottom:629.755245px;}
.y73_c00324{bottom:630.170835px;}
.y74_c00324{bottom:631.051740px;}
.y75_c00324{bottom:631.328325px;}
.y76_c00324{bottom:631.590450px;}
.y77_c00324{bottom:631.955715px;}
.y78_c00324{bottom:633.164100px;}
.y62_c00324{bottom:650.694240px;}
.y63_c00324{bottom:651.225420px;}
.y64_c00324{bottom:651.519915px;}
.y65_c00324{bottom:652.035705px;}
.y66_c00324{bottom:652.378275px;}
.y67_c00324{bottom:652.818375px;}
.y68_c00324{bottom:653.011890px;}
.y69_c00324{bottom:653.947905px;}
.y6a_c00324{bottom:654.108660px;}
.y6b_c00324{bottom:654.352605px;}
.y6c_c00324{bottom:654.672240px;}
.y6d_c00324{bottom:655.088700px;}
.y6e_c00324{bottom:655.412595px;}
.y56_c00324{bottom:673.373610px;}
.y57_c00324{bottom:673.796520px;}
.y58_c00324{bottom:674.485650px;}
.y59_c00324{bottom:674.961480px;}
.y5a_c00324{bottom:675.180825px;}
.y5b_c00324{bottom:675.641295px;}
.y5c_c00324{bottom:675.867480px;}
.y5d_c00324{bottom:676.069185px;}
.y5e_c00324{bottom:676.746270px;}
.y5f_c00324{bottom:677.000985px;}
.y60_c00324{bottom:677.622375px;}
.y61_c00324{bottom:678.557280px;}
.y48_c00324{bottom:695.789100px;}
.y49_c00324{bottom:695.927235px;}
.y4a_c00324{bottom:696.739815px;}
.y4b_c00324{bottom:696.997125px;}
.y4c_c00324{bottom:697.304415px;}
.y4d_c00324{bottom:697.944930px;}
.y4e_c00324{bottom:698.307885px;}
.y4f_c00324{bottom:698.994240px;}
.y50_c00324{bottom:699.330030px;}
.y51_c00324{bottom:699.625860px;}
.y52_c00324{bottom:700.076040px;}
.y53_c00324{bottom:700.309530px;}
.y54_c00324{bottom:700.924230px;}
.y55_c00324{bottom:701.336565px;}
.y3b_c00324{bottom:719.008665px;}
.y3c_c00324{bottom:719.469015px;}
.y3d_c00324{bottom:719.977335px;}
.y3e_c00324{bottom:720.188580px;}
.y3f_c00324{bottom:720.408045px;}
.y40_c00324{bottom:720.913395px;}
.y41_c00324{bottom:721.560075px;}
.y42_c00324{bottom:721.784160px;}
.y43_c00324{bottom:722.455770px;}
.y44_c00324{bottom:722.704785px;}
.y45_c00324{bottom:723.156015px;}
.y46_c00324{bottom:723.530850px;}
.y47_c00324{bottom:724.094970px;}
.y31_c00324{bottom:741.958875px;}
.y32_c00324{bottom:742.720230px;}
.y33_c00324{bottom:742.907115px;}
.y34_c00324{bottom:743.730705px;}
.y35_c00324{bottom:744.594555px;}
.y36_c00324{bottom:745.002315px;}
.y37_c00324{bottom:745.180635px;}
.y38_c00324{bottom:745.671525px;}
.y39_c00324{bottom:745.963575px;}
.y3a_c00324{bottom:746.357835px;}
.y26_c00324{bottom:764.368050px;}
.y27_c00324{bottom:764.725155px;}
.y28_c00324{bottom:765.613530px;}
.y29_c00324{bottom:766.353345px;}
.y2a_c00324{bottom:766.627290px;}
.y2b_c00324{bottom:767.309400px;}
.y2c_c00324{bottom:767.719920px;}
.y2d_c00324{bottom:768.260880px;}
.y2e_c00324{bottom:768.451785px;}
.y2f_c00324{bottom:768.688650px;}
.y30_c00324{bottom:769.377975px;}
.y19_c00324{bottom:787.589025px;}
.y1a_c00324{bottom:788.001540px;}
.y1b_c00324{bottom:788.198715px;}
.y1c_c00324{bottom:788.887230px;}
.y1d_c00324{bottom:789.186915px;}
.y1e_c00324{bottom:789.421830px;}
.y1f_c00324{bottom:789.640545px;}
.y20_c00324{bottom:790.094115px;}
.y21_c00324{bottom:790.250790px;}
.y22_c00324{bottom:790.415880px;}
.y23_c00324{bottom:791.182350px;}
.y24_c00324{bottom:792.158835px;}
.y25_c00324{bottom:792.302790px;}
.yd_c00324{bottom:810.000690px;}
.ye_c00324{bottom:810.366660px;}
.yf_c00324{bottom:810.983520px;}
.y10_c00324{bottom:811.847205px;}
.y11_c00324{bottom:812.412780px;}
.y12_c00324{bottom:812.535075px;}
.y13_c00324{bottom:812.766660px;}
.y14_c00324{bottom:812.960325px;}
.y15_c00324{bottom:813.355350px;}
.y16_c00324{bottom:813.667035px;}
.y17_c00324{bottom:814.193295px;}
.y18_c00324{bottom:814.916010px;}
.y1_c00324{bottom:832.951500px;}
.y2_c00324{bottom:833.499600px;}
.y3_c00324{bottom:833.718315px;}
.y4_c00324{bottom:833.980395px;}
.y5_c00324{bottom:834.347520px;}
.y6_c00324{bottom:834.571605px;}
.y7_c00324{bottom:834.819990px;}
.y8_c00324{bottom:835.246620px;}
.y9_c00324{bottom:835.603515px;}
.ya_c00324{bottom:836.329425px;}
.yb_c00324{bottom:836.653005px;}
.yc_c00324{bottom:837.052995px;}
.h16_c00324{height:33.609675px;}
.h3_c00324{height:61.953097px;}
.h7_c00324{height:63.003150px;}
.ha_c00324{height:63.006174px;}
.h9_c00324{height:64.053202px;}
.h15_c00324{height:66.169048px;}
.h5_c00324{height:67.203360px;}
.h11_c00324{height:67.204838px;}
.h4_c00324{height:68.253412px;}
.h12_c00324{height:68.254914px;}
.hf_c00324{height:68.255767px;}
.hb_c00324{height:68.256688px;}
.h6_c00324{height:69.303465px;}
.hd_c00324{height:70.350000px;}
.h2_c00324{height:71.403570px;}
.h13_c00324{height:71.405141px;}
.he_c00324{height:71.406033px;}
.h8_c00324{height:72.453622px;}
.h10_c00324{height:72.455216px;}
.hc_c00324{height:72.457100px;}
.h14_c00324{height:73.505292px;}
.h1_c00324{height:1005.000000px;}
.h0_c00324{height:1005.150000px;}
.w0_c00324{width:702.540000px;}
.w1_c00324{width:702.750000px;}
.x0_c00324{left:0.000000px;}
.xc3_c00324{left:39.738000px;}
.xc7_c00324{left:50.575548px;}
.x3c_c00324{left:75.812280px;}
.x17_c00324{left:79.837275px;}
.x9c_c00324{left:82.316223px;}
.x96_c00324{left:83.889000px;}
.x75_c00324{left:85.045035px;}
.x6f_c00324{left:86.061825px;}
.x1_c00324{left:87.882000px;}
.x50_c00324{left:88.978500px;}
.x86_c00324{left:90.062055px;}
.x76_c00324{left:97.278255px;}
.x77_c00324{left:105.184590px;}
.xae_c00324{left:106.266000px;}
.xc1_c00324{left:109.619226px;}
.x7f_c00324{left:115.424955px;}
.x9d_c00324{left:118.169223px;}
.xd_c00324{left:120.877125px;}
.x8e_c00324{left:123.709095px;}
.x46_c00324{left:126.779280px;}
.x32_c00324{left:128.922315px;}
.x69_c00324{left:130.280895px;}
.xc8_c00324{left:131.306604px;}
.x8f_c00324{left:132.434250px;}
.x51_c00324{left:137.296020px;}
.x84_c00324{left:138.865605px;}
.x18_c00324{left:140.806275px;}
.x2_c00324{left:142.692000px;}
.xb6_c00324{left:143.785446px;}
.x60_c00324{left:144.859770px;}
.xb2_c00324{left:146.498544px;}
.x87_c00324{left:148.646385px;}
.xaf_c00324{left:151.629000px;}
.x3d_c00324{left:155.132205px;}
.x78_c00324{left:157.338540px;}
.x2a_c00324{left:163.164750px;}
.x3_c00324{left:164.563500px;}
.x9e_c00324{left:170.787723px;}
.x6a_c00324{left:173.219460px;}
.x33_c00324{left:175.103850px;}
.xe_c00324{left:177.012570px;}
.x61_c00324{left:179.102925px;}
.x2b_c00324{left:181.853250px;}
.x90_c00324{left:182.973225px;}
.xb0_c00324{left:186.186000px;}
.x47_c00324{left:189.391650px;}
.x4_c00324{left:190.771500px;}
.xa9_c00324{left:192.624000px;}
.x34_c00324{left:194.278155px;}
.x5a_c00324{left:199.133430px;}
.x23_c00324{left:200.769600px;}
.x3e_c00324{left:202.141260px;}
.xb7_c00324{left:205.346946px;}
.x62_c00324{left:206.965140px;}
.x19_c00324{left:209.657775px;}
.x52_c00324{left:210.973785px;}
.x70_c00324{left:212.929515px;}
.x35_c00324{left:214.274460px;}
.x80_c00324{left:216.358950px;}
.x97_c00324{left:219.435000px;}
.x5b_c00324{left:222.351705px;}
.x88_c00324{left:225.006855px;}
.x5_c00324{left:227.484000px;}
.x48_c00324{left:232.624215px;}
.xbe_c00324{left:235.875414px;}
.x63_c00324{left:237.206340px;}
.x1a_c00324{left:239.626275px;}
.x53_c00324{left:242.080470px;}
.xb8_c00324{left:244.462446px;}
.x6b_c00324{left:246.927225px;}
.x6_c00324{left:249.892500px;}
.xc9_c00324{left:251.099724px;}
.x49_c00324{left:252.608520px;}
.xf_c00324{left:255.580290px;}
.x79_c00324{left:258.016530px;}
.x36_c00324{left:260.158995px;}
.x89_c00324{left:261.784620px;}
.x1b_c00324{left:263.117775px;}
.x2c_c00324{left:264.212250px;}
.x24_c00324{left:268.000425px;}
.xa5_c00324{left:270.460305px;}
.x64_c00324{left:271.534995px;}
.x7_c00324{left:274.731000px;}
.x9f_c00324{left:276.666723px;}
.x54_c00324{left:282.040065px;}
.xb9_c00324{left:283.870446px;}
.x1c_c00324{left:284.989275px;}
.x7a_c00324{left:287.723430px;}
.x6c_c00324{left:290.135790px;}
.x71_c00324{left:291.237675px;}
.x25_c00324{left:292.844670px;}
.x4a_c00324{left:294.455100px;}
.x91_c00324{left:297.159150px;}
.x55_c00324{left:299.591385px;}
.x81_c00324{left:302.809080px;}
.xbb_c00324{left:305.271792px;}
.x10_c00324{left:307.037280px;}
.x98_c00324{left:312.583500px;}
.x4b_c00324{left:314.973390px;}
.x8_c00324{left:317.394000px;}
.x37_c00324{left:318.976410px;}
.xbc_c00324{left:325.537806px;}
.xbf_c00324{left:327.695316px;}
.x1d_c00324{left:330.346275px;}
.x4c_c00324{left:333.343710px;}
.x82_c00324{left:334.670265px;}
.x92_c00324{left:337.078560px;}
.x11_c00324{left:339.274965px;}
.x5c_c00324{left:340.300035px;}
.xc2_c00324{left:341.566116px;}
.x3f_c00324{left:343.070955px;}
.x8a_c00324{left:344.666970px;}
.x1e_c00324{left:346.013775px;}
.x2d_c00324{left:350.597250px;}
.x9_c00324{left:353.083500px;}
.x26_c00324{left:354.905055px;}
.x12_c00324{left:356.841285px;}
.x7b_c00324{left:357.868020px;}
.xa0_c00324{left:359.289723px;}
.x72_c00324{left:361.113075px;}
.x1f_c00324{left:362.522775px;}
.x5d_c00324{left:365.408280px;}
.x40_c00324{left:371.099400px;}
.xc4_c00324{left:373.471500px;}
.xb1_c00324{left:375.706500px;}
.x56_c00324{left:384.642030px;}
.xa1_c00324{left:385.776723px;}
.x5e_c00324{left:389.220540px;}
.xa6_c00324{left:390.338964px;}
.x2e_c00324{left:391.373250px;}
.x13_c00324{left:392.743425px;}
.x41_c00324{left:395.731905px;}
.xa2_c00324{left:397.642266px;}
.x57_c00324{left:399.217380px;}
.x38_c00324{left:400.295085px;}
.xb3_c00324{left:402.703044px;}
.xaa_c00324{left:407.086500px;}
.x2f_c00324{left:409.205250px;}
.x65_c00324{left:411.632085px;}
.x8b_c00324{left:413.262105px;}
.xa7_c00324{left:415.728321px;}
.x4d_c00324{left:418.122870px;}
.x14_c00324{left:421.061640px;}
.x39_c00324{left:422.946360px;}
.xa_c00324{left:425.674500px;}
.xc5_c00324{left:430.507500px;}
.x66_c00324{left:431.613390px;}
.x42_c00324{left:433.249155px;}
.xbd_c00324{left:434.630178px;}
.xab_c00324{left:438.081000px;}
.x20_c00324{left:439.169775px;}
.x27_c00324{left:441.352185px;}
.xb4_c00324{left:443.779044px;}
.x83_c00324{left:447.535140px;}
.x58_c00324{left:450.474870px;}
.x67_c00324{left:451.606695px;}
.x43_c00324{left:452.697765px;}
.xb_c00324{left:458.032500px;}
.x93_c00324{left:459.464670px;}
.x3a_c00324{left:464.018955px;}
.x99_c00324{left:465.415500px;}
.x15_c00324{left:468.887160px;}
.xb5_c00324{left:471.610044px;}
.x4e_c00324{left:474.561300px;}
.x6d_c00324{left:477.801915px;}
.xca_c00324{left:479.050752px;}
.x28_c00324{left:480.228795px;}
.x7c_c00324{left:484.164000px;}
.x8c_c00324{left:486.109650px;}
.x30_c00324{left:487.499250px;}
.x9a_c00324{left:492.432000px;}
.x73_c00324{left:493.805085px;}
.xc_c00324{left:498.031500px;}
.xac_c00324{left:499.155000px;}
.x44_c00324{left:503.966745px;}
.x8d_c00324{left:507.443730px;}
.x68_c00324{left:511.798095px;}
.x59_c00324{left:517.759695px;}
.x6e_c00324{left:520.704480px;}
.x94_c00324{left:525.552030px;}
.x31_c00324{left:526.925250px;}
.x7d_c00324{left:529.356585px;}
.xba_c00324{left:530.413446px;}
.x5f_c00324{left:532.334115px;}
.x16_c00324{left:534.558000px;}
.xad_c00324{left:535.563000px;}
.x21_c00324{left:536.818275px;}
.x45_c00324{left:538.299555px;}
.x85_c00324{left:540.700605px;}
.x29_c00324{left:542.860665px;}
.x74_c00324{left:547.528980px;}
.x3b_c00324{left:549.363600px;}
.x22_c00324{left:551.213775px;}
.x95_c00324{left:555.582330px;}
.x4f_c00324{left:559.500945px;}
.xc6_c00324{left:572.688000px;}
.xcb_c00324{left:583.215768px;}
.xc0_c00324{left:588.573684px;}
.x7e_c00324{left:593.190810px;}
.xa3_c00324{left:594.532017px;}
.x9b_c00324{left:596.916000px;}
.xa8_c00324{left:606.690000px;}
.xa4_c00324{left:608.830227px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.fs14_c00324{font-size:29.875267pt;}
.fs1_c00324{font-size:55.069420pt;}
.fs5_c00324{font-size:56.002800pt;}
.fs8_c00324{font-size:56.005488pt;}
.fs7_c00324{font-size:56.936180pt;}
.fs13_c00324{font-size:58.816932pt;}
.fs3_c00324{font-size:59.736320pt;}
.fsf_c00324{font-size:59.737634pt;}
.fs2_c00324{font-size:60.669700pt;}
.fs10_c00324{font-size:60.671035pt;}
.fsd_c00324{font-size:60.671793pt;}
.fs9_c00324{font-size:60.672612pt;}
.fs4_c00324{font-size:61.603080pt;}
.fsb_c00324{font-size:62.533333pt;}
.fs0_c00324{font-size:63.469840pt;}
.fs11_c00324{font-size:63.471236pt;}
.fsc_c00324{font-size:63.472029pt;}
.fs6_c00324{font-size:64.403220pt;}
.fse_c00324{font-size:64.404637pt;}
.fsa_c00324{font-size:64.406311pt;}
.fs12_c00324{font-size:65.338037pt;}
.y0_c00324{bottom:0.000000pt;}
.y166_c00324{bottom:97.900544pt;}
.y167_c00324{bottom:98.134165pt;}
.y168_c00324{bottom:98.920501pt;}
.y169_c00324{bottom:99.928469pt;}
.y16a_c00324{bottom:102.590784pt;}
.y16b_c00324{bottom:104.649963pt;}
.y16c_c00324{bottom:107.213525pt;}
.y16d_c00324{bottom:107.494816pt;}
.y16e_c00324{bottom:107.656523pt;}
.y15f_c00324{bottom:108.966667pt;}
.y16f_c00324{bottom:109.970763pt;}
.y160_c00324{bottom:111.200491pt;}
.y161_c00324{bottom:113.384555pt;}
.y162_c00324{bottom:116.086315pt;}
.y163_c00324{bottom:117.303083pt;}
.y164_c00324{bottom:118.661963pt;}
.y165_c00324{bottom:120.336267pt;}
.y157_c00324{bottom:133.635429pt;}
.y15e_c00324{bottom:133.635845pt;}
.y159_c00324{bottom:133.635877pt;}
.y15a_c00324{bottom:133.635920pt;}
.y158_c00324{bottom:133.635947pt;}
.y15d_c00324{bottom:133.636224pt;}
.y15b_c00324{bottom:133.636357pt;}
.y15c_c00324{bottom:133.636560pt;}
.y14c_c00324{bottom:152.876256pt;}
.y14d_c00324{bottom:153.201717pt;}
.y14e_c00324{bottom:153.913152pt;}
.y14f_c00324{bottom:154.296581pt;}
.y150_c00324{bottom:154.564165pt;}
.y151_c00324{bottom:154.969280pt;}
.y152_c00324{bottom:155.624923pt;}
.y153_c00324{bottom:156.941696pt;}
.y154_c00324{bottom:157.700299pt;}
.y155_c00324{bottom:157.956587pt;}
.y156_c00324{bottom:158.639659pt;}
.y141_c00324{bottom:173.277995pt;}
.y142_c00324{bottom:173.997045pt;}
.y143_c00324{bottom:174.535099pt;}
.y144_c00324{bottom:174.851328pt;}
.y145_c00324{bottom:175.402139pt;}
.y146_c00324{bottom:175.946032pt;}
.y147_c00324{bottom:176.198208pt;}
.y148_c00324{bottom:176.927184pt;}
.y149_c00324{bottom:177.250379pt;}
.y14a_c00324{bottom:177.556555pt;}
.y14b_c00324{bottom:178.715840pt;}
.y133_c00324{bottom:193.678651pt;}
.y134_c00324{bottom:194.289067pt;}
.y135_c00324{bottom:194.669227pt;}
.y136_c00324{bottom:194.945723pt;}
.y137_c00324{bottom:195.362955pt;}
.y138_c00324{bottom:195.783307pt;}
.y139_c00324{bottom:196.138219pt;}
.y13a_c00324{bottom:196.613387pt;}
.y13b_c00324{bottom:197.160747pt;}
.y13c_c00324{bottom:197.365067pt;}
.y13d_c00324{bottom:197.750539pt;}
.y13e_c00324{bottom:198.001291pt;}
.y13f_c00324{bottom:198.413099pt;}
.y140_c00324{bottom:199.095819pt;}
.y127_c00324{bottom:213.600085pt;}
.y128_c00324{bottom:213.945765pt;}
.y129_c00324{bottom:214.239541pt;}
.y12a_c00324{bottom:214.815429pt;}
.y12b_c00324{bottom:215.250421pt;}
.y12c_c00324{bottom:215.498117pt;}
.y12d_c00324{bottom:216.016549pt;}
.y12e_c00324{bottom:216.517765pt;}
.y12f_c00324{bottom:216.972389pt;}
.y130_c00324{bottom:217.410533pt;}
.y131_c00324{bottom:217.707397pt;}
.y132_c00324{bottom:219.050485pt;}
.y11b_c00324{bottom:234.224000pt;}
.y11c_c00324{bottom:234.465344pt;}
.y11d_c00324{bottom:234.707872pt;}
.y11e_c00324{bottom:235.076480pt;}
.y11f_c00324{bottom:235.568928pt;}
.y120_c00324{bottom:236.204944pt;}
.y121_c00324{bottom:236.821952pt;}
.y122_c00324{bottom:237.098032pt;}
.y123_c00324{bottom:237.554624pt;}
.y124_c00324{bottom:238.275856pt;}
.y125_c00324{bottom:238.622016pt;}
.y126_c00324{bottom:239.438224pt;}
.y119_c00324{bottom:254.400823pt;}
.y11a_c00324{bottom:259.780584pt;}
.y10c_c00324{bottom:274.562667pt;}
.y10d_c00324{bottom:275.545467pt;}
.y10e_c00324{bottom:275.756916pt;}
.y10f_c00324{bottom:276.072053pt;}
.y110_c00324{bottom:276.331065pt;}
.y111_c00324{bottom:276.933901pt;}
.y112_c00324{bottom:277.195600pt;}
.y113_c00324{bottom:277.629765pt;}
.y114_c00324{bottom:278.235149pt;}
.y115_c00324{bottom:278.593308pt;}
.y116_c00324{bottom:279.299052pt;}
.y117_c00324{bottom:279.719767pt;}
.y118_c00324{bottom:280.402873pt;}
.y10b_c00324{bottom:284.640000pt;}
.yfe_c00324{bottom:294.955707pt;}
.yff_c00324{bottom:295.420309pt;}
.y100_c00324{bottom:296.701912pt;}
.y101_c00324{bottom:297.052499pt;}
.y102_c00324{bottom:298.046715pt;}
.y103_c00324{bottom:298.207587pt;}
.y104_c00324{bottom:298.438968pt;}
.y105_c00324{bottom:298.732253pt;}
.y106_c00324{bottom:299.211669pt;}
.y107_c00324{bottom:299.520813pt;}
.y108_c00324{bottom:300.001219pt;}
.y109_c00324{bottom:300.285627pt;}
.y10a_c00324{bottom:300.795293pt;}
.yf3_c00324{bottom:314.878277pt;}
.yf4_c00324{bottom:315.224589pt;}
.yf5_c00324{bottom:316.459755pt;}
.yf6_c00324{bottom:316.903085pt;}
.yf7_c00324{bottom:317.777181pt;}
.yf8_c00324{bottom:318.451091pt;}
.yf9_c00324{bottom:318.732269pt;}
.yfa_c00324{bottom:319.330760pt;}
.yfb_c00324{bottom:320.216869pt;}
.yfc_c00324{bottom:320.726573pt;}
.yfd_c00324{bottom:320.891171pt;}
.ye7_c00324{bottom:335.041720pt;}
.ye8_c00324{bottom:335.487891pt;}
.ye9_c00324{bottom:335.870184pt;}
.yea_c00324{bottom:336.142699pt;}
.yeb_c00324{bottom:337.460304pt;}
.yec_c00324{bottom:337.749563pt;}
.yed_c00324{bottom:338.488501pt;}
.yee_c00324{bottom:338.818117pt;}
.yef_c00324{bottom:339.580053pt;}
.yf0_c00324{bottom:339.933525pt;}
.yf1_c00324{bottom:340.696637pt;}
.yf2_c00324{bottom:341.406605pt;}
.ydc_c00324{bottom:355.682667pt;}
.ydd_c00324{bottom:357.016512pt;}
.yde_c00324{bottom:357.369461pt;}
.ydf_c00324{bottom:358.358925pt;}
.ye0_c00324{bottom:358.528643pt;}
.ye1_c00324{bottom:358.945339pt;}
.ye2_c00324{bottom:359.190600pt;}
.ye3_c00324{bottom:359.788941pt;}
.ye4_c00324{bottom:360.430552pt;}
.ye5_c00324{bottom:360.766757pt;}
.ye6_c00324{bottom:362.067003pt;}
.yce_c00324{bottom:375.347213pt;}
.ycf_c00324{bottom:375.785973pt;}
.yd0_c00324{bottom:375.894200pt;}
.yd1_c00324{bottom:376.183147pt;}
.yd2_c00324{bottom:376.523453pt;}
.yd3_c00324{bottom:377.632733pt;}
.yd4_c00324{bottom:377.945147pt;}
.yd5_c00324{bottom:378.441333pt;}
.yd6_c00324{bottom:378.680453pt;}
.yd7_c00324{bottom:379.506827pt;}
.yd8_c00324{bottom:379.963920pt;}
.yd9_c00324{bottom:380.786053pt;}
.yda_c00324{bottom:381.159667pt;}
.ydb_c00324{bottom:381.639813pt;}
.yc1_c00324{bottom:396.470320pt;}
.yc2_c00324{bottom:397.095080pt;}
.yc3_c00324{bottom:397.362293pt;}
.yc4_c00324{bottom:397.552800pt;}
.yc5_c00324{bottom:397.909853pt;}
.yc6_c00324{bottom:398.302107pt;}
.yc7_c00324{bottom:399.185520pt;}
.yc8_c00324{bottom:399.619973pt;}
.yc9_c00324{bottom:399.916600pt;}
.yca_c00324{bottom:400.693480pt;}
.ycb_c00324{bottom:400.920453pt;}
.ycc_c00324{bottom:401.242627pt;}
.ycd_c00324{bottom:401.834693pt;}
.yb7_c00324{bottom:416.631080pt;}
.yb8_c00324{bottom:417.079480pt;}
.yb9_c00324{bottom:417.648227pt;}
.yba_c00324{bottom:417.867093pt;}
.ybb_c00324{bottom:418.469613pt;}
.ybc_c00324{bottom:419.144027pt;}
.ybd_c00324{bottom:420.108880pt;}
.ybe_c00324{bottom:420.449280pt;}
.ybf_c00324{bottom:420.651347pt;}
.yc0_c00324{bottom:421.114880pt;}
.yab_c00324{bottom:437.033467pt;}
.yac_c00324{bottom:437.286493pt;}
.yad_c00324{bottom:438.273027pt;}
.yae_c00324{bottom:438.693747pt;}
.yaf_c00324{bottom:439.118813pt;}
.yb0_c00324{bottom:439.430027pt;}
.yb1_c00324{bottom:439.991547pt;}
.yb2_c00324{bottom:440.266493pt;}
.yb3_c00324{bottom:440.533280pt;}
.yb4_c00324{bottom:441.027173pt;}
.yb5_c00324{bottom:441.470773pt;}
.yb6_c00324{bottom:441.954267pt;}
.y9d_c00324{bottom:456.833827pt;}
.y9e_c00324{bottom:456.918773pt;}
.y9f_c00324{bottom:457.475707pt;}
.ya0_c00324{bottom:457.659613pt;}
.ya1_c00324{bottom:458.045187pt;}
.ya2_c00324{bottom:458.370547pt;}
.ya3_c00324{bottom:458.549307pt;}
.ya4_c00324{bottom:458.866707pt;}
.ya5_c00324{bottom:459.615560pt;}
.ya6_c00324{bottom:459.945013pt;}
.ya7_c00324{bottom:460.962213pt;}
.ya8_c00324{bottom:461.119627pt;}
.ya9_c00324{bottom:461.445267pt;}
.yaa_c00324{bottom:462.126027pt;}
.y9c_c00324{bottom:477.591173pt;}
.y90_c00324{bottom:497.754227pt;}
.y91_c00324{bottom:498.256213pt;}
.y92_c00324{bottom:498.436827pt;}
.y93_c00324{bottom:498.649413pt;}
.y94_c00324{bottom:499.220640pt;}
.y95_c00324{bottom:499.707067pt;}
.y96_c00324{bottom:500.124733pt;}
.y97_c00324{bottom:500.932533pt;}
.y98_c00324{bottom:501.337840pt;}
.y99_c00324{bottom:501.838467pt;}
.y9a_c00324{bottom:502.466720pt;}
.y9b_c00324{bottom:503.086947pt;}
.y85_c00324{bottom:518.491787pt;}
.y86_c00324{bottom:518.898693pt;}
.y87_c00324{bottom:519.319040pt;}
.y88_c00324{bottom:520.039560pt;}
.y89_c00324{bottom:520.253920pt;}
.y8a_c00324{bottom:520.462307pt;}
.y8b_c00324{bottom:520.952280pt;}
.y8c_c00324{bottom:521.171547pt;}
.y8d_c00324{bottom:521.547733pt;}
.y8e_c00324{bottom:522.297133pt;}
.y8f_c00324{bottom:522.717160pt;}
.y79_c00324{bottom:538.311080pt;}
.y7a_c00324{bottom:538.863600pt;}
.y7b_c00324{bottom:539.198653pt;}
.y7c_c00324{bottom:539.471653pt;}
.y7d_c00324{bottom:539.767133pt;}
.y7e_c00324{bottom:540.102947pt;}
.y7f_c00324{bottom:540.771867pt;}
.y80_c00324{bottom:541.473600pt;}
.y81_c00324{bottom:541.668547pt;}
.y82_c00324{bottom:541.863600pt;}
.y83_c00324{bottom:542.451973pt;}
.y84_c00324{bottom:542.678520pt;}
.y6f_c00324{bottom:558.475747pt;}
.y70_c00324{bottom:558.853693pt;}
.y71_c00324{bottom:559.556053pt;}
.y72_c00324{bottom:559.782440pt;}
.y73_c00324{bottom:560.151853pt;}
.y74_c00324{bottom:560.934880pt;}
.y75_c00324{bottom:561.180733pt;}
.y76_c00324{bottom:561.413733pt;}
.y77_c00324{bottom:561.738413pt;}
.y78_c00324{bottom:562.812533pt;}
.y62_c00324{bottom:578.394880pt;}
.y63_c00324{bottom:578.867040pt;}
.y64_c00324{bottom:579.128813pt;}
.y65_c00324{bottom:579.587293pt;}
.y66_c00324{bottom:579.891800pt;}
.y67_c00324{bottom:580.283000pt;}
.y68_c00324{bottom:580.455013pt;}
.y69_c00324{bottom:581.287027pt;}
.y6a_c00324{bottom:581.429920pt;}
.y6b_c00324{bottom:581.646760pt;}
.y6c_c00324{bottom:581.930880pt;}
.y6d_c00324{bottom:582.301067pt;}
.y6e_c00324{bottom:582.588973pt;}
.y56_c00324{bottom:598.554320pt;}
.y57_c00324{bottom:598.930240pt;}
.y58_c00324{bottom:599.542800pt;}
.y59_c00324{bottom:599.965760pt;}
.y5a_c00324{bottom:600.160733pt;}
.y5b_c00324{bottom:600.570040pt;}
.y5c_c00324{bottom:600.771093pt;}
.y5d_c00324{bottom:600.950387pt;}
.y5e_c00324{bottom:601.552240pt;}
.y5f_c00324{bottom:601.778653pt;}
.y60_c00324{bottom:602.331000pt;}
.y61_c00324{bottom:603.162027pt;}
.y48_c00324{bottom:618.479200pt;}
.y49_c00324{bottom:618.601987pt;}
.y4a_c00324{bottom:619.324280pt;}
.y4b_c00324{bottom:619.553000pt;}
.y4c_c00324{bottom:619.826147pt;}
.y4d_c00324{bottom:620.395493pt;}
.y4e_c00324{bottom:620.718120pt;}
.y4f_c00324{bottom:621.328213pt;}
.y50_c00324{bottom:621.626693pt;}
.y51_c00324{bottom:621.889653pt;}
.y52_c00324{bottom:622.289813pt;}
.y53_c00324{bottom:622.497360pt;}
.y54_c00324{bottom:623.043760pt;}
.y55_c00324{bottom:623.410280pt;}
.y3b_c00324{bottom:639.118813pt;}
.y3c_c00324{bottom:639.528013pt;}
.y3d_c00324{bottom:639.979853pt;}
.y3e_c00324{bottom:640.167627pt;}
.y3f_c00324{bottom:640.362707pt;}
.y40_c00324{bottom:640.811907pt;}
.y41_c00324{bottom:641.386733pt;}
.y42_c00324{bottom:641.585920pt;}
.y43_c00324{bottom:642.182907pt;}
.y44_c00324{bottom:642.404253pt;}
.y45_c00324{bottom:642.805347pt;}
.y46_c00324{bottom:643.138533pt;}
.y47_c00324{bottom:643.639973pt;}
.y31_c00324{bottom:659.519000pt;}
.y32_c00324{bottom:660.195760pt;}
.y33_c00324{bottom:660.361880pt;}
.y34_c00324{bottom:661.093960pt;}
.y35_c00324{bottom:661.861827pt;}
.y36_c00324{bottom:662.224280pt;}
.y37_c00324{bottom:662.382787pt;}
.y38_c00324{bottom:662.819133pt;}
.y39_c00324{bottom:663.078733pt;}
.y3a_c00324{bottom:663.429187pt;}
.y26_c00324{bottom:679.438267pt;}
.y27_c00324{bottom:679.755693pt;}
.y28_c00324{bottom:680.545360pt;}
.y29_c00324{bottom:681.202973pt;}
.y2a_c00324{bottom:681.446480pt;}
.y2b_c00324{bottom:682.052800pt;}
.y2c_c00324{bottom:682.417707pt;}
.y2d_c00324{bottom:682.898560pt;}
.y2e_c00324{bottom:683.068253pt;}
.y2f_c00324{bottom:683.278800pt;}
.y30_c00324{bottom:683.891533pt;}
.y19_c00324{bottom:700.079133pt;}
.y1a_c00324{bottom:700.445813pt;}
.y1b_c00324{bottom:700.621080pt;}
.y1c_c00324{bottom:701.233093pt;}
.y1d_c00324{bottom:701.499480pt;}
.y1e_c00324{bottom:701.708293pt;}
.y1f_c00324{bottom:701.902707pt;}
.y20_c00324{bottom:702.305880pt;}
.y21_c00324{bottom:702.445147pt;}
.y22_c00324{bottom:702.591893pt;}
.y23_c00324{bottom:703.273200pt;}
.y24_c00324{bottom:704.141187pt;}
.y25_c00324{bottom:704.269147pt;}
.yd_c00324{bottom:720.000613pt;}
.ye_c00324{bottom:720.325920pt;}
.yf_c00324{bottom:720.874240pt;}
.y10_c00324{bottom:721.641960pt;}
.y11_c00324{bottom:722.144693pt;}
.y12_c00324{bottom:722.253400pt;}
.y13_c00324{bottom:722.459253pt;}
.y14_c00324{bottom:722.631400pt;}
.y15_c00324{bottom:722.982533pt;}
.y16_c00324{bottom:723.259587pt;}
.y17_c00324{bottom:723.727373pt;}
.y18_c00324{bottom:724.369787pt;}
.y1_c00324{bottom:740.401333pt;}
.y2_c00324{bottom:740.888533pt;}
.y3_c00324{bottom:741.082947pt;}
.y4_c00324{bottom:741.315907pt;}
.y5_c00324{bottom:741.642240pt;}
.y6_c00324{bottom:741.841427pt;}
.y7_c00324{bottom:742.062213pt;}
.y8_c00324{bottom:742.441440pt;}
.y9_c00324{bottom:742.758680pt;}
.ya_c00324{bottom:743.403933pt;}
.yb_c00324{bottom:743.691560pt;}
.yc_c00324{bottom:744.047107pt;}
.h16_c00324{height:29.875267pt;}
.h3_c00324{height:55.069420pt;}
.h7_c00324{height:56.002800pt;}
.ha_c00324{height:56.005488pt;}
.h9_c00324{height:56.936180pt;}
.h15_c00324{height:58.816932pt;}
.h5_c00324{height:59.736320pt;}
.h11_c00324{height:59.737634pt;}
.h4_c00324{height:60.669700pt;}
.h12_c00324{height:60.671035pt;}
.hf_c00324{height:60.671793pt;}
.hb_c00324{height:60.672612pt;}
.h6_c00324{height:61.603080pt;}
.hd_c00324{height:62.533333pt;}
.h2_c00324{height:63.469840pt;}
.h13_c00324{height:63.471236pt;}
.he_c00324{height:63.472029pt;}
.h8_c00324{height:64.403220pt;}
.h10_c00324{height:64.404637pt;}
.hc_c00324{height:64.406311pt;}
.h14_c00324{height:65.338037pt;}
.h1_c00324{height:893.333333pt;}
.h0_c00324{height:893.466667pt;}
.w0_c00324{width:624.480000pt;}
.w1_c00324{width:624.666667pt;}
.x0_c00324{left:0.000000pt;}
.xc3_c00324{left:35.322667pt;}
.xc7_c00324{left:44.956043pt;}
.x3c_c00324{left:67.388693pt;}
.x17_c00324{left:70.966467pt;}
.x9c_c00324{left:73.169976pt;}
.x96_c00324{left:74.568000pt;}
.x75_c00324{left:75.595587pt;}
.x6f_c00324{left:76.499400pt;}
.x1_c00324{left:78.117333pt;}
.x50_c00324{left:79.092000pt;}
.x86_c00324{left:80.055160pt;}
.x76_c00324{left:86.469560pt;}
.x77_c00324{left:93.497413pt;}
.xae_c00324{left:94.458667pt;}
.xc1_c00324{left:97.439312pt;}
.x7f_c00324{left:102.599960pt;}
.x9d_c00324{left:105.039309pt;}
.xd_c00324{left:107.446333pt;}
.x8e_c00324{left:109.963640pt;}
.x46_c00324{left:112.692693pt;}
.x32_c00324{left:114.597613pt;}
.x69_c00324{left:115.805240pt;}
.xc8_c00324{left:116.716981pt;}
.x8f_c00324{left:117.719333pt;}
.x51_c00324{left:122.040907pt;}
.x84_c00324{left:123.436093pt;}
.x18_c00324{left:125.161133pt;}
.x2_c00324{left:126.837333pt;}
.xb6_c00324{left:127.809285pt;}
.x60_c00324{left:128.764240pt;}
.xb2_c00324{left:130.220928pt;}
.x87_c00324{left:132.130120pt;}
.xaf_c00324{left:134.781333pt;}
.x3d_c00324{left:137.895293pt;}
.x78_c00324{left:139.856480pt;}
.x2a_c00324{left:145.035333pt;}
.x3_c00324{left:146.278667pt;}
.x9e_c00324{left:151.811309pt;}
.x6a_c00324{left:153.972853pt;}
.x33_c00324{left:155.647867pt;}
.xe_c00324{left:157.344507pt;}
.x61_c00324{left:159.202600pt;}
.x2b_c00324{left:161.647333pt;}
.x90_c00324{left:162.642867pt;}
.xb0_c00324{left:165.498667pt;}
.x47_c00324{left:168.348133pt;}
.x4_c00324{left:169.574667pt;}
.xa9_c00324{left:171.221333pt;}
.x34_c00324{left:172.691693pt;}
.x5a_c00324{left:177.007493pt;}
.x23_c00324{left:178.461867pt;}
.x3e_c00324{left:179.681120pt;}
.xb7_c00324{left:182.530619pt;}
.x62_c00324{left:183.969013pt;}
.x19_c00324{left:186.362467pt;}
.x52_c00324{left:187.532253pt;}
.x70_c00324{left:189.270680pt;}
.x35_c00324{left:190.466187pt;}
.x80_c00324{left:192.319067pt;}
.x97_c00324{left:195.053333pt;}
.x5b_c00324{left:197.645960pt;}
.x88_c00324{left:200.006093pt;}
.x5_c00324{left:202.208000pt;}
.x48_c00324{left:206.777080pt;}
.xbe_c00324{left:209.667035pt;}
.x63_c00324{left:210.850080pt;}
.x1a_c00324{left:213.001133pt;}
.x53_c00324{left:215.182640pt;}
.xb8_c00324{left:217.299952pt;}
.x6b_c00324{left:219.490867pt;}
.x6_c00324{left:222.126667pt;}
.xc9_c00324{left:223.199755pt;}
.x49_c00324{left:224.540907pt;}
.xf_c00324{left:227.182480pt;}
.x79_c00324{left:229.348027pt;}
.x36_c00324{left:231.252440pt;}
.x89_c00324{left:232.697440pt;}
.x1b_c00324{left:233.882467pt;}
.x2c_c00324{left:234.855333pt;}
.x24_c00324{left:238.222600pt;}
.xa5_c00324{left:240.409160pt;}
.x64_c00324{left:241.364440pt;}
.x7_c00324{left:244.205333pt;}
.x9f_c00324{left:245.925976pt;}
.x54_c00324{left:250.702280pt;}
.xb9_c00324{left:252.329285pt;}
.x1c_c00324{left:253.323800pt;}
.x7a_c00324{left:255.754160pt;}
.x6c_c00324{left:257.898480pt;}
.x71_c00324{left:258.877933pt;}
.x25_c00324{left:260.306373pt;}
.x4a_c00324{left:261.737867pt;}
.x91_c00324{left:264.141467pt;}
.x55_c00324{left:266.303453pt;}
.x81_c00324{left:269.163627pt;}
.xbb_c00324{left:271.352704pt;}
.x10_c00324{left:272.922027pt;}
.x98_c00324{left:277.852000pt;}
.x4b_c00324{left:279.976347pt;}
.x8_c00324{left:282.128000pt;}
.x37_c00324{left:283.534587pt;}
.xbc_c00324{left:289.366939pt;}
.xbf_c00324{left:291.284725pt;}
.x1d_c00324{left:293.641133pt;}
.x4c_c00324{left:296.305520pt;}
.x82_c00324{left:297.484680pt;}
.x92_c00324{left:299.625387pt;}
.x11_c00324{left:301.577747pt;}
.x5c_c00324{left:302.488920pt;}
.xc2_c00324{left:303.614325pt;}
.x3f_c00324{left:304.951960pt;}
.x8a_c00324{left:306.370640pt;}
.x1e_c00324{left:307.567800pt;}
.x2d_c00324{left:311.642000pt;}
.x9_c00324{left:313.852000pt;}
.x26_c00324{left:315.471160pt;}
.x12_c00324{left:317.192253pt;}
.x7b_c00324{left:318.104907pt;}
.xa0_c00324{left:319.368643pt;}
.x72_c00324{left:320.989400pt;}
.x1f_c00324{left:322.242467pt;}
.x5d_c00324{left:324.807360pt;}
.x40_c00324{left:329.866133pt;}
.xc4_c00324{left:331.974667pt;}
.xb1_c00324{left:333.961333pt;}
.x56_c00324{left:341.904027pt;}
.xa1_c00324{left:342.912643pt;}
.x5e_c00324{left:345.973813pt;}
.xa6_c00324{left:346.967968pt;}
.x2e_c00324{left:347.887333pt;}
.x13_c00324{left:349.105267pt;}
.x41_c00324{left:351.761693pt;}
.xa2_c00324{left:353.459792pt;}
.x57_c00324{left:354.859893pt;}
.x38_c00324{left:355.817853pt;}
.xb3_c00324{left:357.958261pt;}
.xaa_c00324{left:361.854667pt;}
.x2f_c00324{left:363.738000pt;}
.x65_c00324{left:365.895187pt;}
.x8b_c00324{left:367.344093pt;}
.xa7_c00324{left:369.536285pt;}
.x4d_c00324{left:371.664773pt;}
.x14_c00324{left:374.277013pt;}
.x39_c00324{left:375.952320pt;}
.xa_c00324{left:378.377333pt;}
.xc5_c00324{left:382.673333pt;}
.x66_c00324{left:383.656347pt;}
.x42_c00324{left:385.110360pt;}
.xbd_c00324{left:386.337936pt;}
.xab_c00324{left:389.405333pt;}
.x20_c00324{left:390.373133pt;}
.x27_c00324{left:392.313053pt;}
.xb4_c00324{left:394.470261pt;}
.x83_c00324{left:397.809013pt;}
.x58_c00324{left:400.422107pt;}
.x67_c00324{left:401.428173pt;}
.x43_c00324{left:402.398013pt;}
.xb_c00324{left:407.140000pt;}
.x93_c00324{left:408.413040pt;}
.x3a_c00324{left:412.461293pt;}
.x99_c00324{left:413.702667pt;}
.x15_c00324{left:416.788587pt;}
.xb5_c00324{left:419.208928pt;}
.x4e_c00324{left:421.832267pt;}
.x6d_c00324{left:424.712813pt;}
.xca_c00324{left:425.822891pt;}
.x28_c00324{left:426.870040pt;}
.x7c_c00324{left:430.368000pt;}
.x8c_c00324{left:432.097467pt;}
.x30_c00324{left:433.332667pt;}
.x9a_c00324{left:437.717333pt;}
.x73_c00324{left:438.937853pt;}
.xc_c00324{left:442.694667pt;}
.xac_c00324{left:443.693333pt;}
.x44_c00324{left:447.970440pt;}
.x8d_c00324{left:451.061093pt;}
.x68_c00324{left:454.931640pt;}
.x59_c00324{left:460.230840pt;}
.x6e_c00324{left:462.848427pt;}
.x94_c00324{left:467.157360pt;}
.x31_c00324{left:468.378000pt;}
.x7d_c00324{left:470.539187pt;}
.xba_c00324{left:471.478619pt;}
.x5f_c00324{left:473.185880pt;}
.x16_c00324{left:475.162667pt;}
.xad_c00324{left:476.056000pt;}
.x21_c00324{left:477.171800pt;}
.x45_c00324{left:478.488493pt;}
.x85_c00324{left:480.622760pt;}
.x29_c00324{left:482.542813pt;}
.x74_c00324{left:486.692427pt;}
.x3b_c00324{left:488.323200pt;}
.x22_c00324{left:489.967800pt;}
.x95_c00324{left:493.850960pt;}
.x4f_c00324{left:497.334173pt;}
.xc6_c00324{left:509.056000pt;}
.xcb_c00324{left:518.414016pt;}
.xc0_c00324{left:523.176608pt;}
.x7e_c00324{left:527.280720pt;}
.xa3_c00324{left:528.472904pt;}
.x9b_c00324{left:530.592000pt;}
.xa8_c00324{left:539.280000pt;}
.xa4_c00324{left:541.182424pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m70_c00325{transform:matrix(0.084977,-0.000765,0.002250,0.249990,0,0);-ms-transform:matrix(0.084977,-0.000765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.084977,-0.000765,0.002250,0.249990,0,0);}
.me_c00325{transform:matrix(0.090286,-0.000813,0.002250,0.249990,0,0);-ms-transform:matrix(0.090286,-0.000813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.090286,-0.000813,0.002250,0.249990,0,0);}
.mc6_c00325{transform:matrix(0.099711,-0.000897,0.002250,0.249990,0,0);-ms-transform:matrix(0.099711,-0.000897,0.002250,0.249990,0,0);-webkit-transform:matrix(0.099711,-0.000897,0.002250,0.249990,0,0);}
.m39_c00325{transform:matrix(0.100331,-0.000903,0.002250,0.249990,0,0);-ms-transform:matrix(0.100331,-0.000903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.100331,-0.000903,0.002250,0.249990,0,0);}
.m14c_c00325{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);}
.ma4_c00325{transform:matrix(0.135470,-0.001219,0.002250,0.249990,0,0);-ms-transform:matrix(0.135470,-0.001219,0.002250,0.249990,0,0);-webkit-transform:matrix(0.135470,-0.001219,0.002250,0.249990,0,0);}
.m9f_c00325{transform:matrix(0.140879,-0.001268,0.002250,0.249990,0,0);-ms-transform:matrix(0.140879,-0.001268,0.002250,0.249990,0,0);-webkit-transform:matrix(0.140879,-0.001268,0.002250,0.249990,0,0);}
.mc7_c00325{transform:matrix(0.141429,-0.001273,0.002250,0.249990,0,0);-ms-transform:matrix(0.141429,-0.001273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.141429,-0.001273,0.002250,0.249990,0,0);}
.m110_c00325{transform:matrix(0.141874,-0.001277,0.002250,0.249990,0,0);-ms-transform:matrix(0.141874,-0.001277,0.002250,0.249990,0,0);-webkit-transform:matrix(0.141874,-0.001277,0.002250,0.249990,0,0);}
.m7e_c00325{transform:matrix(0.142094,-0.001279,0.002250,0.249990,0,0);-ms-transform:matrix(0.142094,-0.001279,0.002250,0.249990,0,0);-webkit-transform:matrix(0.142094,-0.001279,0.002250,0.249990,0,0);}
.mce_c00325{transform:matrix(0.143884,-0.001295,0.002250,0.249990,0,0);-ms-transform:matrix(0.143884,-0.001295,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143884,-0.001295,0.002250,0.249990,0,0);}
.md0_c00325{transform:matrix(0.145394,-0.001309,0.002250,0.249990,0,0);-ms-transform:matrix(0.145394,-0.001309,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145394,-0.001309,0.002250,0.249990,0,0);}
.m97_c00325{transform:matrix(0.146379,-0.001317,0.002250,0.249990,0,0);-ms-transform:matrix(0.146379,-0.001317,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146379,-0.001317,0.002250,0.249990,0,0);}
.m10d_c00325{transform:matrix(0.147464,-0.001327,0.002250,0.249990,0,0);-ms-transform:matrix(0.147464,-0.001327,0.002250,0.249990,0,0);-webkit-transform:matrix(0.147464,-0.001327,0.002250,0.249990,0,0);}
.m13d_c00325{transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);-ms-transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);}
.m95_c00325{transform:matrix(0.149484,-0.001345,0.002250,0.249990,0,0);-ms-transform:matrix(0.149484,-0.001345,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149484,-0.001345,0.002250,0.249990,0,0);}
.m1b_c00325{transform:matrix(0.150239,-0.001352,0.002250,0.249990,0,0);-ms-transform:matrix(0.150239,-0.001352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150239,-0.001352,0.002250,0.249990,0,0);}
.m10f_c00325{transform:matrix(0.151144,-0.001360,0.002250,0.249990,0,0);-ms-transform:matrix(0.151144,-0.001360,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151144,-0.001360,0.002250,0.249990,0,0);}
.m1a_c00325{transform:matrix(0.152354,-0.001371,0.002250,0.249990,0,0);-ms-transform:matrix(0.152354,-0.001371,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152354,-0.001371,0.002250,0.249990,0,0);}
.m6c_c00325{transform:matrix(0.152689,-0.001374,0.002250,0.249990,0,0);-ms-transform:matrix(0.152689,-0.001374,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152689,-0.001374,0.002250,0.249990,0,0);}
.mfe_c00325{transform:matrix(0.152934,-0.001376,0.002250,0.249990,0,0);-ms-transform:matrix(0.152934,-0.001376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152934,-0.001376,0.002250,0.249990,0,0);}
.m136_c00325{transform:matrix(0.152989,-0.001377,0.002250,0.249990,0,0);-ms-transform:matrix(0.152989,-0.001377,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152989,-0.001377,0.002250,0.249990,0,0);}
.m72_c00325{transform:matrix(0.153959,-0.001386,0.002250,0.249990,0,0);-ms-transform:matrix(0.153959,-0.001386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153959,-0.001386,0.002250,0.249990,0,0);}
.maa_c00325{transform:matrix(0.154014,-0.001386,0.002250,0.249990,0,0);-ms-transform:matrix(0.154014,-0.001386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154014,-0.001386,0.002250,0.249990,0,0);}
.m75_c00325{transform:matrix(0.154294,-0.001389,0.002250,0.249990,0,0);-ms-transform:matrix(0.154294,-0.001389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154294,-0.001389,0.002250,0.249990,0,0);}
.m6e_c00325{transform:matrix(0.154304,-0.001389,0.002250,0.249990,0,0);-ms-transform:matrix(0.154304,-0.001389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154304,-0.001389,0.002250,0.249990,0,0);}
.m5a_c00325{transform:matrix(0.154554,-0.001391,0.002250,0.249990,0,0);-ms-transform:matrix(0.154554,-0.001391,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154554,-0.001391,0.002250,0.249990,0,0);}
.m21_c00325{transform:matrix(0.156154,-0.001405,0.002250,0.249990,0,0);-ms-transform:matrix(0.156154,-0.001405,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156154,-0.001405,0.002250,0.249990,0,0);}
.m25_c00325{transform:matrix(0.156259,-0.001406,0.002250,0.249990,0,0);-ms-transform:matrix(0.156259,-0.001406,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156259,-0.001406,0.002250,0.249990,0,0);}
.me5_c00325{transform:matrix(0.156399,-0.001408,0.002250,0.249990,0,0);-ms-transform:matrix(0.156399,-0.001408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156399,-0.001408,0.002250,0.249990,0,0);}
.m12a_c00325{transform:matrix(0.156494,-0.001408,0.002250,0.249990,0,0);-ms-transform:matrix(0.156494,-0.001408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156494,-0.001408,0.002250,0.249990,0,0);}
.mc8_c00325{transform:matrix(0.156579,-0.001409,0.002250,0.249990,0,0);-ms-transform:matrix(0.156579,-0.001409,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156579,-0.001409,0.002250,0.249990,0,0);}
.m8_c00325{transform:matrix(0.157049,-0.001413,0.002250,0.249990,0,0);-ms-transform:matrix(0.157049,-0.001413,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157049,-0.001413,0.002250,0.249990,0,0);}
.mcb_c00325{transform:matrix(0.157799,-0.001420,0.002250,0.249990,0,0);-ms-transform:matrix(0.157799,-0.001420,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157799,-0.001420,0.002250,0.249990,0,0);}
.m103_c00325{transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);-ms-transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157904,-0.001421,0.002250,0.249990,0,0);}
.m1_c00325{transform:matrix(0.158624,-0.001428,0.002250,0.249990,0,0);-ms-transform:matrix(0.158624,-0.001428,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158624,-0.001428,0.002250,0.249990,0,0);}
.mbc_c00325{transform:matrix(0.159104,-0.001432,0.002250,0.249990,0,0);-ms-transform:matrix(0.159104,-0.001432,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159104,-0.001432,0.002250,0.249990,0,0);}
.mff_c00325{transform:matrix(0.159209,-0.001433,0.002250,0.249990,0,0);-ms-transform:matrix(0.159209,-0.001433,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159209,-0.001433,0.002250,0.249990,0,0);}
.mcd_c00325{transform:matrix(0.159804,-0.001438,0.002250,0.249990,0,0);-ms-transform:matrix(0.159804,-0.001438,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159804,-0.001438,0.002250,0.249990,0,0);}
.m142_c00325{transform:matrix(0.160004,-0.001440,0.002250,0.249990,0,0);-ms-transform:matrix(0.160004,-0.001440,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160004,-0.001440,0.002250,0.249990,0,0);}
.maf_c00325{transform:matrix(0.160404,-0.001444,0.002250,0.249990,0,0);-ms-transform:matrix(0.160404,-0.001444,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160404,-0.001444,0.002250,0.249990,0,0);}
.mcc_c00325{transform:matrix(0.160414,-0.001444,0.002250,0.249990,0,0);-ms-transform:matrix(0.160414,-0.001444,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160414,-0.001444,0.002250,0.249990,0,0);}
.med_c00325{transform:matrix(0.160783,-0.001447,0.002250,0.249990,0,0);-ms-transform:matrix(0.160783,-0.001447,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160783,-0.001447,0.002250,0.249990,0,0);}
.m68_c00325{transform:matrix(0.160883,-0.001448,0.002250,0.249990,0,0);-ms-transform:matrix(0.160883,-0.001448,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160883,-0.001448,0.002250,0.249990,0,0);}
.mb3_c00325{transform:matrix(0.161713,-0.001455,0.002250,0.249990,0,0);-ms-transform:matrix(0.161713,-0.001455,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161713,-0.001455,0.002250,0.249990,0,0);}
.m12b_c00325{transform:matrix(0.162353,-0.001461,0.002250,0.249990,0,0);-ms-transform:matrix(0.162353,-0.001461,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162353,-0.001461,0.002250,0.249990,0,0);}
.m98_c00325{transform:matrix(0.163418,-0.001471,0.002250,0.249990,0,0);-ms-transform:matrix(0.163418,-0.001471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163418,-0.001471,0.002250,0.249990,0,0);}
.m6b_c00325{transform:matrix(0.163723,-0.001474,0.002250,0.249990,0,0);-ms-transform:matrix(0.163723,-0.001474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163723,-0.001474,0.002250,0.249990,0,0);}
.m8a_c00325{transform:matrix(0.164123,-0.001477,0.002250,0.249990,0,0);-ms-transform:matrix(0.164123,-0.001477,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164123,-0.001477,0.002250,0.249990,0,0);}
.m6a_c00325{transform:matrix(0.164658,-0.001482,0.002250,0.249990,0,0);-ms-transform:matrix(0.164658,-0.001482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164658,-0.001482,0.002250,0.249990,0,0);}
.me6_c00325{transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);-ms-transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);}
.m32_c00325{transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);-ms-transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164883,-0.001484,0.002250,0.249990,0,0);}
.m56_c00325{transform:matrix(0.166333,-0.001497,0.002250,0.249990,0,0);-ms-transform:matrix(0.166333,-0.001497,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166333,-0.001497,0.002250,0.249990,0,0);}
.m30_c00325{transform:matrix(0.166888,-0.001502,0.002250,0.249990,0,0);-ms-transform:matrix(0.166888,-0.001502,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166888,-0.001502,0.002250,0.249990,0,0);}
.md1_c00325{transform:matrix(0.166898,-0.001502,0.002250,0.249990,0,0);-ms-transform:matrix(0.166898,-0.001502,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166898,-0.001502,0.002250,0.249990,0,0);}
.m3a_c00325{transform:matrix(0.166968,-0.001503,0.002250,0.249990,0,0);-ms-transform:matrix(0.166968,-0.001503,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166968,-0.001503,0.002250,0.249990,0,0);}
.m7b_c00325{transform:matrix(0.167013,-0.001503,0.002250,0.249990,0,0);-ms-transform:matrix(0.167013,-0.001503,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167013,-0.001503,0.002250,0.249990,0,0);}
.m10_c00325{transform:matrix(0.167353,-0.001506,0.002250,0.249990,0,0);-ms-transform:matrix(0.167353,-0.001506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167353,-0.001506,0.002250,0.249990,0,0);}
.m12e_c00325{transform:matrix(0.167388,-0.001506,0.002250,0.249990,0,0);-ms-transform:matrix(0.167388,-0.001506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167388,-0.001506,0.002250,0.249990,0,0);}
.mda_c00325{transform:matrix(0.167508,-0.001508,0.002250,0.249990,0,0);-ms-transform:matrix(0.167508,-0.001508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167508,-0.001508,0.002250,0.249990,0,0);}
.m111_c00325{transform:matrix(0.167563,-0.001508,0.002250,0.249990,0,0);-ms-transform:matrix(0.167563,-0.001508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167563,-0.001508,0.002250,0.249990,0,0);}
.mea_c00325{transform:matrix(0.167898,-0.001511,0.002250,0.249990,0,0);-ms-transform:matrix(0.167898,-0.001511,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167898,-0.001511,0.002250,0.249990,0,0);}
.mf8_c00325{transform:matrix(0.168493,-0.001516,0.002250,0.249990,0,0);-ms-transform:matrix(0.168493,-0.001516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168493,-0.001516,0.002250,0.249990,0,0);}
.m102_c00325{transform:matrix(0.168898,-0.001520,0.002250,0.249990,0,0);-ms-transform:matrix(0.168898,-0.001520,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168898,-0.001520,0.002250,0.249990,0,0);}
.m92_c00325{transform:matrix(0.169123,-0.001522,0.002250,0.249990,0,0);-ms-transform:matrix(0.169123,-0.001522,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169123,-0.001522,0.002250,0.249990,0,0);}
.mb4_c00325{transform:matrix(0.169293,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169293,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169293,-0.001524,0.002250,0.249990,0,0);}
.me4_c00325{transform:matrix(0.169353,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169353,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169353,-0.001524,0.002250,0.249990,0,0);}
.m67_c00325{transform:matrix(0.169843,-0.001529,0.002250,0.249990,0,0);-ms-transform:matrix(0.169843,-0.001529,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169843,-0.001529,0.002250,0.249990,0,0);}
.m85_c00325{transform:matrix(0.170013,-0.001530,0.002250,0.249990,0,0);-ms-transform:matrix(0.170013,-0.001530,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170013,-0.001530,0.002250,0.249990,0,0);}
.md7_c00325{transform:matrix(0.170023,-0.001530,0.002250,0.249990,0,0);-ms-transform:matrix(0.170023,-0.001530,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170023,-0.001530,0.002250,0.249990,0,0);}
.m59_c00325{transform:matrix(0.170058,-0.001531,0.002250,0.249990,0,0);-ms-transform:matrix(0.170058,-0.001531,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170058,-0.001531,0.002250,0.249990,0,0);}
.m64_c00325{transform:matrix(0.170243,-0.001532,0.002250,0.249990,0,0);-ms-transform:matrix(0.170243,-0.001532,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170243,-0.001532,0.002250,0.249990,0,0);}
.m9d_c00325{transform:matrix(0.170313,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170313,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170313,-0.001533,0.002250,0.249990,0,0);}
.m99_c00325{transform:matrix(0.170378,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170378,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170378,-0.001533,0.002250,0.249990,0,0);}
.mc4_c00325{transform:matrix(0.170573,-0.001535,0.002250,0.249990,0,0);-ms-transform:matrix(0.170573,-0.001535,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170573,-0.001535,0.002250,0.249990,0,0);}
.m12d_c00325{transform:matrix(0.171048,-0.001539,0.002250,0.249990,0,0);-ms-transform:matrix(0.171048,-0.001539,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171048,-0.001539,0.002250,0.249990,0,0);}
.m93_c00325{transform:matrix(0.171128,-0.001540,0.002250,0.249990,0,0);-ms-transform:matrix(0.171128,-0.001540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171128,-0.001540,0.002250,0.249990,0,0);}
.m88_c00325{transform:matrix(0.171483,-0.001543,0.002250,0.249990,0,0);-ms-transform:matrix(0.171483,-0.001543,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171483,-0.001543,0.002250,0.249990,0,0);}
.m9a_c00325{transform:matrix(0.171623,-0.001545,0.002250,0.249990,0,0);-ms-transform:matrix(0.171623,-0.001545,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171623,-0.001545,0.002250,0.249990,0,0);}
.m7f_c00325{transform:matrix(0.171898,-0.001547,0.002250,0.249990,0,0);-ms-transform:matrix(0.171898,-0.001547,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171898,-0.001547,0.002250,0.249990,0,0);}
.m10e_c00325{transform:matrix(0.171948,-0.001548,0.002250,0.249990,0,0);-ms-transform:matrix(0.171948,-0.001548,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171948,-0.001548,0.002250,0.249990,0,0);}
.meb_c00325{transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);-ms-transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);}
.m69_c00325{transform:matrix(0.172628,-0.001554,0.002250,0.249990,0,0);-ms-transform:matrix(0.172628,-0.001554,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172628,-0.001554,0.002250,0.249990,0,0);}
.m43_c00325{transform:matrix(0.173033,-0.001557,0.002250,0.249990,0,0);-ms-transform:matrix(0.173033,-0.001557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173033,-0.001557,0.002250,0.249990,0,0);}
.mdc_c00325{transform:matrix(0.173533,-0.001562,0.002250,0.249990,0,0);-ms-transform:matrix(0.173533,-0.001562,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173533,-0.001562,0.002250,0.249990,0,0);}
.m76_c00325{transform:matrix(0.173618,-0.001563,0.002250,0.249990,0,0);-ms-transform:matrix(0.173618,-0.001563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173618,-0.001563,0.002250,0.249990,0,0);}
.m1c_c00325{transform:matrix(0.173718,-0.001563,0.002250,0.249990,0,0);-ms-transform:matrix(0.173718,-0.001563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173718,-0.001563,0.002250,0.249990,0,0);}
.m109_c00325{transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);-ms-transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174163,-0.001567,0.002250,0.249990,0,0);}
.md3_c00325{transform:matrix(0.174348,-0.001569,0.002250,0.249990,0,0);-ms-transform:matrix(0.174348,-0.001569,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174348,-0.001569,0.002250,0.249990,0,0);}
.m104_c00325{transform:matrix(0.174383,-0.001569,0.002250,0.249990,0,0);-ms-transform:matrix(0.174383,-0.001569,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174383,-0.001569,0.002250,0.249990,0,0);}
.m6d_c00325{transform:matrix(0.175048,-0.001575,0.002250,0.249990,0,0);-ms-transform:matrix(0.175048,-0.001575,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175048,-0.001575,0.002250,0.249990,0,0);}
.m87_c00325{transform:matrix(0.175098,-0.001576,0.002250,0.249990,0,0);-ms-transform:matrix(0.175098,-0.001576,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175098,-0.001576,0.002250,0.249990,0,0);}
.mfc_c00325{transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);-ms-transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175223,-0.001577,0.002250,0.249990,0,0);}
.m18_c00325{transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);-ms-transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);}
.ma7_c00325{transform:matrix(0.175568,-0.001580,0.002250,0.249990,0,0);-ms-transform:matrix(0.175568,-0.001580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175568,-0.001580,0.002250,0.249990,0,0);}
.mc3_c00325{transform:matrix(0.175603,-0.001580,0.002250,0.249990,0,0);-ms-transform:matrix(0.175603,-0.001580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175603,-0.001580,0.002250,0.249990,0,0);}
.mdb_c00325{transform:matrix(0.175708,-0.001581,0.002250,0.249990,0,0);-ms-transform:matrix(0.175708,-0.001581,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175708,-0.001581,0.002250,0.249990,0,0);}
.m86_c00325{transform:matrix(0.175763,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175763,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175763,-0.001582,0.002250,0.249990,0,0);}
.mae_c00325{transform:matrix(0.176043,-0.001584,0.002250,0.249990,0,0);-ms-transform:matrix(0.176043,-0.001584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176043,-0.001584,0.002250,0.249990,0,0);}
.md4_c00325{transform:matrix(0.176393,-0.001588,0.002250,0.249990,0,0);-ms-transform:matrix(0.176393,-0.001588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176393,-0.001588,0.002250,0.249990,0,0);}
.m65_c00325{transform:matrix(0.176508,-0.001589,0.002250,0.249990,0,0);-ms-transform:matrix(0.176508,-0.001589,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176508,-0.001589,0.002250,0.249990,0,0);}
.m46_c00325{transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);}
.m9e_c00325{transform:matrix(0.176943,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176943,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176943,-0.001592,0.002250,0.249990,0,0);}
.me8_c00325{transform:matrix(0.176988,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.176988,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176988,-0.001593,0.002250,0.249990,0,0);}
.m5e_c00325{transform:matrix(0.177033,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.177033,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177033,-0.001593,0.002250,0.249990,0,0);}
.m3_c00325{transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);-ms-transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177058,-0.001594,0.002250,0.249990,0,0);}
.m78_c00325{transform:matrix(0.177328,-0.001596,0.002250,0.249990,0,0);-ms-transform:matrix(0.177328,-0.001596,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177328,-0.001596,0.002250,0.249990,0,0);}
.m16_c00325{transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);}
.m19_c00325{transform:matrix(0.177488,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177488,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177488,-0.001597,0.002250,0.249990,0,0);}
.m112_c00325{transform:matrix(0.177693,-0.001599,0.002250,0.249990,0,0);-ms-transform:matrix(0.177693,-0.001599,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177693,-0.001599,0.002250,0.249990,0,0);}
.m6f_c00325{transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);-ms-transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177768,-0.001600,0.002250,0.249990,0,0);}
.m134_c00325{transform:matrix(0.178238,-0.001604,0.002250,0.249990,0,0);-ms-transform:matrix(0.178238,-0.001604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178238,-0.001604,0.002250,0.249990,0,0);}
.m74_c00325{transform:matrix(0.178578,-0.001607,0.002250,0.249990,0,0);-ms-transform:matrix(0.178578,-0.001607,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178578,-0.001607,0.002250,0.249990,0,0);}
.mca_c00325{transform:matrix(0.178868,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178868,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178868,-0.001610,0.002250,0.249990,0,0);}
.mc5_c00325{transform:matrix(0.178908,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178908,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178908,-0.001610,0.002250,0.249990,0,0);}
.mde_c00325{transform:matrix(0.178943,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178943,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178943,-0.001610,0.002250,0.249990,0,0);}
.m143_c00325{transform:matrix(0.179218,-0.001613,0.002250,0.249990,0,0);-ms-transform:matrix(0.179218,-0.001613,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179218,-0.001613,0.002250,0.249990,0,0);}
.m10c_c00325{transform:matrix(0.179443,-0.001615,0.002250,0.249990,0,0);-ms-transform:matrix(0.179443,-0.001615,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179443,-0.001615,0.002250,0.249990,0,0);}
.m81_c00325{transform:matrix(0.180003,-0.001620,0.002250,0.249990,0,0);-ms-transform:matrix(0.180003,-0.001620,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180003,-0.001620,0.002250,0.249990,0,0);}
.m94_c00325{transform:matrix(0.180258,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180258,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180258,-0.001622,0.002250,0.249990,0,0);}
.m4b_c00325{transform:matrix(0.180298,-0.001623,0.002250,0.249990,0,0);-ms-transform:matrix(0.180298,-0.001623,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180298,-0.001623,0.002250,0.249990,0,0);}
.m107_c00325{transform:matrix(0.180438,-0.001624,0.002250,0.249990,0,0);-ms-transform:matrix(0.180438,-0.001624,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180438,-0.001624,0.002250,0.249990,0,0);}
.m49_c00325{transform:matrix(0.180558,-0.001625,0.002250,0.249990,0,0);-ms-transform:matrix(0.180558,-0.001625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180558,-0.001625,0.002250,0.249990,0,0);}
.m13e_c00325{transform:matrix(0.180668,-0.001626,0.002250,0.249990,0,0);-ms-transform:matrix(0.180668,-0.001626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180668,-0.001626,0.002250,0.249990,0,0);}
.m4_c00325{transform:matrix(0.181523,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181523,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181523,-0.001634,0.002250,0.249990,0,0);}
.m11d_c00325{transform:matrix(0.181528,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181528,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181528,-0.001634,0.002250,0.249990,0,0);}
.mb6_c00325{transform:matrix(0.181538,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181538,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181538,-0.001634,0.002250,0.249990,0,0);}
.md8_c00325{transform:matrix(0.181673,-0.001635,0.002250,0.249990,0,0);-ms-transform:matrix(0.181673,-0.001635,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181673,-0.001635,0.002250,0.249990,0,0);}
.m55_c00325{transform:matrix(0.181833,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181833,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181833,-0.001636,0.002250,0.249990,0,0);}
.m96_c00325{transform:matrix(0.182143,-0.001639,0.002250,0.249990,0,0);-ms-transform:matrix(0.182143,-0.001639,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182143,-0.001639,0.002250,0.249990,0,0);}
.mb8_c00325{transform:matrix(0.182268,-0.001640,0.002250,0.249990,0,0);-ms-transform:matrix(0.182268,-0.001640,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182268,-0.001640,0.002250,0.249990,0,0);}
.m4a_c00325{transform:matrix(0.182338,-0.001641,0.002250,0.249990,0,0);-ms-transform:matrix(0.182338,-0.001641,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182338,-0.001641,0.002250,0.249990,0,0);}
.m13f_c00325{transform:matrix(0.182353,-0.001641,0.002250,0.249990,0,0);-ms-transform:matrix(0.182353,-0.001641,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182353,-0.001641,0.002250,0.249990,0,0);}
.m13a_c00325{transform:matrix(0.182638,-0.001644,0.002250,0.249990,0,0);-ms-transform:matrix(0.182638,-0.001644,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182638,-0.001644,0.002250,0.249990,0,0);}
.m7d_c00325{transform:matrix(0.182668,-0.001644,0.002250,0.249990,0,0);-ms-transform:matrix(0.182668,-0.001644,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182668,-0.001644,0.002250,0.249990,0,0);}
.m124_c00325{transform:matrix(0.182758,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182758,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182758,-0.001645,0.002250,0.249990,0,0);}
.me3_c00325{transform:matrix(0.183428,-0.001651,0.002250,0.249990,0,0);-ms-transform:matrix(0.183428,-0.001651,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183428,-0.001651,0.002250,0.249990,0,0);}
.md2_c00325{transform:matrix(0.183513,-0.001652,0.002250,0.249990,0,0);-ms-transform:matrix(0.183513,-0.001652,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183513,-0.001652,0.002250,0.249990,0,0);}
.mf7_c00325{transform:matrix(0.183718,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183718,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183718,-0.001653,0.002250,0.249990,0,0);}
.m139_c00325{transform:matrix(0.183803,-0.001654,0.002250,0.249990,0,0);-ms-transform:matrix(0.183803,-0.001654,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183803,-0.001654,0.002250,0.249990,0,0);}
.m8c_c00325{transform:matrix(0.183983,-0.001656,0.002250,0.249990,0,0);-ms-transform:matrix(0.183983,-0.001656,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183983,-0.001656,0.002250,0.249990,0,0);}
.m148_c00325{transform:matrix(0.184078,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184078,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184078,-0.001657,0.002250,0.249990,0,0);}
.mb_c00325{transform:matrix(0.184113,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184113,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184113,-0.001657,0.002250,0.249990,0,0);}
.m66_c00325{transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);-ms-transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);}
.m2e_c00325{transform:matrix(0.184503,-0.001661,0.002250,0.249990,0,0);-ms-transform:matrix(0.184503,-0.001661,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184503,-0.001661,0.002250,0.249990,0,0);}
.ma1_c00325{transform:matrix(0.184543,-0.001661,0.002250,0.249990,0,0);-ms-transform:matrix(0.184543,-0.001661,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184543,-0.001661,0.002250,0.249990,0,0);}
.m113_c00325{transform:matrix(0.184828,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184828,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184828,-0.001663,0.002250,0.249990,0,0);}
.ma2_c00325{transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);}
.md5_c00325{transform:matrix(0.184998,-0.001665,0.002250,0.249990,0,0);-ms-transform:matrix(0.184998,-0.001665,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184998,-0.001665,0.002250,0.249990,0,0);}
.m9_c00325{transform:matrix(0.185467,-0.001669,0.002250,0.249990,0,0);-ms-transform:matrix(0.185467,-0.001669,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185467,-0.001669,0.002250,0.249990,0,0);}
.mab_c00325{transform:matrix(0.185482,-0.001669,0.002250,0.249990,0,0);-ms-transform:matrix(0.185482,-0.001669,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185482,-0.001669,0.002250,0.249990,0,0);}
.m62_c00325{transform:matrix(0.185672,-0.001671,0.002250,0.249990,0,0);-ms-transform:matrix(0.185672,-0.001671,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185672,-0.001671,0.002250,0.249990,0,0);}
.m58_c00325{transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);-ms-transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);}
.m144_c00325{transform:matrix(0.185852,-0.001673,0.002250,0.249990,0,0);-ms-transform:matrix(0.185852,-0.001673,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185852,-0.001673,0.002250,0.249990,0,0);}
.m53_c00325{transform:matrix(0.186477,-0.001678,0.002250,0.249990,0,0);-ms-transform:matrix(0.186477,-0.001678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186477,-0.001678,0.002250,0.249990,0,0);}
.mf4_c00325{transform:matrix(0.186512,-0.001679,0.002250,0.249990,0,0);-ms-transform:matrix(0.186512,-0.001679,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186512,-0.001679,0.002250,0.249990,0,0);}
.me9_c00325{transform:matrix(0.186637,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186637,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186637,-0.001680,0.002250,0.249990,0,0);}
.m5d_c00325{transform:matrix(0.187042,-0.001683,0.002250,0.249990,0,0);-ms-transform:matrix(0.187042,-0.001683,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187042,-0.001683,0.002250,0.249990,0,0);}
.m128_c00325{transform:matrix(0.187352,-0.001686,0.002250,0.249990,0,0);-ms-transform:matrix(0.187352,-0.001686,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187352,-0.001686,0.002250,0.249990,0,0);}
.mf9_c00325{transform:matrix(0.187617,-0.001689,0.002250,0.249990,0,0);-ms-transform:matrix(0.187617,-0.001689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187617,-0.001689,0.002250,0.249990,0,0);}
.m6_c00325{transform:matrix(0.187652,-0.001689,0.002250,0.249990,0,0);-ms-transform:matrix(0.187652,-0.001689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187652,-0.001689,0.002250,0.249990,0,0);}
.m120_c00325{transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);}
.ma6_c00325{transform:matrix(0.187787,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187787,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187787,-0.001690,0.002250,0.249990,0,0);}
.mad_c00325{transform:matrix(0.187967,-0.001692,0.002250,0.249990,0,0);-ms-transform:matrix(0.187967,-0.001692,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187967,-0.001692,0.002250,0.249990,0,0);}
.ma0_c00325{transform:matrix(0.188042,-0.001692,0.002250,0.249990,0,0);-ms-transform:matrix(0.188042,-0.001692,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188042,-0.001692,0.002250,0.249990,0,0);}
.m1e_c00325{transform:matrix(0.188092,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188092,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188092,-0.001693,0.002250,0.249990,0,0);}
.m9c_c00325{transform:matrix(0.188137,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188137,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188137,-0.001693,0.002250,0.249990,0,0);}
.mb2_c00325{transform:matrix(0.188172,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188172,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188172,-0.001694,0.002250,0.249990,0,0);}
.m29_c00325{transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188272,-0.001694,0.002250,0.249990,0,0);}
.m123_c00325{transform:matrix(0.188577,-0.001697,0.002250,0.249990,0,0);-ms-transform:matrix(0.188577,-0.001697,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188577,-0.001697,0.002250,0.249990,0,0);}
.m80_c00325{transform:matrix(0.189092,-0.001702,0.002250,0.249990,0,0);-ms-transform:matrix(0.189092,-0.001702,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189092,-0.001702,0.002250,0.249990,0,0);}
.m2f_c00325{transform:matrix(0.189132,-0.001702,0.002250,0.249990,0,0);-ms-transform:matrix(0.189132,-0.001702,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189132,-0.001702,0.002250,0.249990,0,0);}
.m3e_c00325{transform:matrix(0.189377,-0.001704,0.002250,0.249990,0,0);-ms-transform:matrix(0.189377,-0.001704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189377,-0.001704,0.002250,0.249990,0,0);}
.mc9_c00325{transform:matrix(0.189397,-0.001705,0.002250,0.249990,0,0);-ms-transform:matrix(0.189397,-0.001705,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189397,-0.001705,0.002250,0.249990,0,0);}
.m91_c00325{transform:matrix(0.189452,-0.001705,0.002250,0.249990,0,0);-ms-transform:matrix(0.189452,-0.001705,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189452,-0.001705,0.002250,0.249990,0,0);}
.m100_c00325{transform:matrix(0.189882,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189882,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189882,-0.001709,0.002250,0.249990,0,0);}
.m8f_c00325{transform:matrix(0.190292,-0.001713,0.002250,0.249990,0,0);-ms-transform:matrix(0.190292,-0.001713,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190292,-0.001713,0.002250,0.249990,0,0);}
.m90_c00325{transform:matrix(0.190592,-0.001715,0.002250,0.249990,0,0);-ms-transform:matrix(0.190592,-0.001715,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190592,-0.001715,0.002250,0.249990,0,0);}
.m22_c00325{transform:matrix(0.190652,-0.001716,0.002250,0.249990,0,0);-ms-transform:matrix(0.190652,-0.001716,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190652,-0.001716,0.002250,0.249990,0,0);}
.m2_c00325{transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);-ms-transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);}
.mfb_c00325{transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);-ms-transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191167,-0.001721,0.002250,0.249990,0,0);}
.m34_c00325{transform:matrix(0.191287,-0.001722,0.002250,0.249990,0,0);-ms-transform:matrix(0.191287,-0.001722,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191287,-0.001722,0.002250,0.249990,0,0);}
.m24_c00325{transform:matrix(0.191372,-0.001722,0.002250,0.249990,0,0);-ms-transform:matrix(0.191372,-0.001722,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191372,-0.001722,0.002250,0.249990,0,0);}
.m3f_c00325{transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);}
.m20_c00325{transform:matrix(0.192242,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192242,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192242,-0.001730,0.002250,0.249990,0,0);}
.mf1_c00325{transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);-ms-transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192532,-0.001733,0.002250,0.249990,0,0);}
.mac_c00325{transform:matrix(0.193057,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193057,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193057,-0.001738,0.002250,0.249990,0,0);}
.m106_c00325{transform:matrix(0.193087,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193087,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193087,-0.001738,0.002250,0.249990,0,0);}
.m8d_c00325{transform:matrix(0.193287,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193287,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193287,-0.001740,0.002250,0.249990,0,0);}
.m127_c00325{transform:matrix(0.193482,-0.001741,0.002250,0.249990,0,0);-ms-transform:matrix(0.193482,-0.001741,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193482,-0.001741,0.002250,0.249990,0,0);}
.m140_c00325{transform:matrix(0.193747,-0.001744,0.002250,0.249990,0,0);-ms-transform:matrix(0.193747,-0.001744,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193747,-0.001744,0.002250,0.249990,0,0);}
.m10b_c00325{transform:matrix(0.194007,-0.001746,0.002250,0.249990,0,0);-ms-transform:matrix(0.194007,-0.001746,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194007,-0.001746,0.002250,0.249990,0,0);}
.mf_c00325{transform:matrix(0.194352,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194352,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194352,-0.001749,0.002250,0.249990,0,0);}
.m7a_c00325{transform:matrix(0.194582,-0.001751,0.002250,0.249990,0,0);-ms-transform:matrix(0.194582,-0.001751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194582,-0.001751,0.002250,0.249990,0,0);}
.mf3_c00325{transform:matrix(0.194957,-0.001755,0.002250,0.249990,0,0);-ms-transform:matrix(0.194957,-0.001755,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194957,-0.001755,0.002250,0.249990,0,0);}
.m146_c00325{transform:matrix(0.195042,-0.001755,0.002250,0.249990,0,0);-ms-transform:matrix(0.195042,-0.001755,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195042,-0.001755,0.002250,0.249990,0,0);}
.m105_c00325{transform:matrix(0.195072,-0.001756,0.002250,0.249990,0,0);-ms-transform:matrix(0.195072,-0.001756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195072,-0.001756,0.002250,0.249990,0,0);}
.m38_c00325{transform:matrix(0.195147,-0.001756,0.002250,0.249990,0,0);-ms-transform:matrix(0.195147,-0.001756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195147,-0.001756,0.002250,0.249990,0,0);}
.me0_c00325{transform:matrix(0.195172,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195172,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195172,-0.001757,0.002250,0.249990,0,0);}
.m12f_c00325{transform:matrix(0.195387,-0.001758,0.002250,0.249990,0,0);-ms-transform:matrix(0.195387,-0.001758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195387,-0.001758,0.002250,0.249990,0,0);}
.m2c_c00325{transform:matrix(0.195537,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195537,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195537,-0.001760,0.002250,0.249990,0,0);}
.m52_c00325{transform:matrix(0.195607,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195607,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195607,-0.001760,0.002250,0.249990,0,0);}
.m137_c00325{transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);}
.m5b_c00325{transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);-ms-transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195972,-0.001764,0.002250,0.249990,0,0);}
.m125_c00325{transform:matrix(0.196082,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196082,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196082,-0.001765,0.002250,0.249990,0,0);}
.m23_c00325{transform:matrix(0.196182,-0.001766,0.002250,0.249990,0,0);-ms-transform:matrix(0.196182,-0.001766,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196182,-0.001766,0.002250,0.249990,0,0);}
.m15_c00325{transform:matrix(0.196442,-0.001768,0.002250,0.249990,0,0);-ms-transform:matrix(0.196442,-0.001768,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196442,-0.001768,0.002250,0.249990,0,0);}
.mc0_c00325{transform:matrix(0.196487,-0.001768,0.002250,0.249990,0,0);-ms-transform:matrix(0.196487,-0.001768,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196487,-0.001768,0.002250,0.249990,0,0);}
.m129_c00325{transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196892,-0.001772,0.002250,0.249990,0,0);}
.m82_c00325{transform:matrix(0.197457,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197457,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197457,-0.001777,0.002250,0.249990,0,0);}
.m26_c00325{transform:matrix(0.198347,-0.001785,0.002250,0.249990,0,0);-ms-transform:matrix(0.198347,-0.001785,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198347,-0.001785,0.002250,0.249990,0,0);}
.m114_c00325{transform:matrix(0.198642,-0.001788,0.002250,0.249990,0,0);-ms-transform:matrix(0.198642,-0.001788,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198642,-0.001788,0.002250,0.249990,0,0);}
.m1f_c00325{transform:matrix(0.199487,-0.001795,0.002250,0.249990,0,0);-ms-transform:matrix(0.199487,-0.001795,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199487,-0.001795,0.002250,0.249990,0,0);}
.m8e_c00325{transform:matrix(0.199562,-0.001796,0.002250,0.249990,0,0);-ms-transform:matrix(0.199562,-0.001796,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199562,-0.001796,0.002250,0.249990,0,0);}
.md6_c00325{transform:matrix(0.199627,-0.001797,0.002250,0.249990,0,0);-ms-transform:matrix(0.199627,-0.001797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199627,-0.001797,0.002250,0.249990,0,0);}
.m84_c00325{transform:matrix(0.200382,-0.001803,0.002250,0.249990,0,0);-ms-transform:matrix(0.200382,-0.001803,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200382,-0.001803,0.002250,0.249990,0,0);}
.m71_c00325{transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);}
.mcf_c00325{transform:matrix(0.200637,-0.001806,0.002250,0.249990,0,0);-ms-transform:matrix(0.200637,-0.001806,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200637,-0.001806,0.002250,0.249990,0,0);}
.m7c_c00325{transform:matrix(0.201027,-0.001809,0.002250,0.249990,0,0);-ms-transform:matrix(0.201027,-0.001809,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201027,-0.001809,0.002250,0.249990,0,0);}
.m141_c00325{transform:matrix(0.201112,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201112,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201112,-0.001810,0.002250,0.249990,0,0);}
.m51_c00325{transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);}
.m12c_c00325{transform:matrix(0.201352,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201352,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201352,-0.001812,0.002250,0.249990,0,0);}
.m138_c00325{transform:matrix(0.201457,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201457,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201457,-0.001813,0.002250,0.249990,0,0);}
.mdd_c00325{transform:matrix(0.201602,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201602,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201602,-0.001814,0.002250,0.249990,0,0);}
.m115_c00325{transform:matrix(0.201632,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201632,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201632,-0.001815,0.002250,0.249990,0,0);}
.m131_c00325{transform:matrix(0.201782,-0.001816,0.002250,0.249990,0,0);-ms-transform:matrix(0.201782,-0.001816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201782,-0.001816,0.002250,0.249990,0,0);}
.mb1_c00325{transform:matrix(0.201892,-0.001817,0.002250,0.249990,0,0);-ms-transform:matrix(0.201892,-0.001817,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201892,-0.001817,0.002250,0.249990,0,0);}
.m11_c00325{transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);-ms-transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);}
.m17_c00325{transform:matrix(0.202502,-0.001823,0.002250,0.249990,0,0);-ms-transform:matrix(0.202502,-0.001823,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202502,-0.001823,0.002250,0.249990,0,0);}
.m79_c00325{transform:matrix(0.202552,-0.001823,0.002250,0.249990,0,0);-ms-transform:matrix(0.202552,-0.001823,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202552,-0.001823,0.002250,0.249990,0,0);}
.m117_c00325{transform:matrix(0.202687,-0.001824,0.002250,0.249990,0,0);-ms-transform:matrix(0.202687,-0.001824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202687,-0.001824,0.002250,0.249990,0,0);}
.mb9_c00325{transform:matrix(0.203162,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203162,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203162,-0.001828,0.002250,0.249990,0,0);}
.m42_c00325{transform:matrix(0.203247,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203247,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203247,-0.001829,0.002250,0.249990,0,0);}
.mb5_c00325{transform:matrix(0.203777,-0.001834,0.002250,0.249990,0,0);-ms-transform:matrix(0.203777,-0.001834,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203777,-0.001834,0.002250,0.249990,0,0);}
.mee_c00325{transform:matrix(0.203832,-0.001834,0.002250,0.249990,0,0);-ms-transform:matrix(0.203832,-0.001834,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203832,-0.001834,0.002250,0.249990,0,0);}
.m2a_c00325{transform:matrix(0.204142,-0.001837,0.002250,0.249990,0,0);-ms-transform:matrix(0.204142,-0.001837,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204142,-0.001837,0.002250,0.249990,0,0);}
.m14b_c00325{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);}
.mf0_c00325{transform:matrix(0.204492,-0.001840,0.002250,0.249990,0,0);-ms-transform:matrix(0.204492,-0.001840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204492,-0.001840,0.002250,0.249990,0,0);}
.m135_c00325{transform:matrix(0.205187,-0.001847,0.002250,0.249990,0,0);-ms-transform:matrix(0.205187,-0.001847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205187,-0.001847,0.002250,0.249990,0,0);}
.ma3_c00325{transform:matrix(0.205222,-0.001847,0.002250,0.249990,0,0);-ms-transform:matrix(0.205222,-0.001847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205222,-0.001847,0.002250,0.249990,0,0);}
.m11b_c00325{transform:matrix(0.205257,-0.001847,0.002250,0.249990,0,0);-ms-transform:matrix(0.205257,-0.001847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205257,-0.001847,0.002250,0.249990,0,0);}
.ma5_c00325{transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);}
.md_c00325{transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);-ms-transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);}
.mec_c00325{transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);-ms-transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206247,-0.001856,0.002250,0.249990,0,0);}
.mba_c00325{transform:matrix(0.208042,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.208042,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208042,-0.001872,0.002250,0.249990,0,0);}
.mf2_c00325{transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);}
.m1d_c00325{transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);-ms-transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);}
.m77_c00325{transform:matrix(0.209347,-0.001884,0.002250,0.249990,0,0);-ms-transform:matrix(0.209347,-0.001884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209347,-0.001884,0.002250,0.249990,0,0);}
.m2d_c00325{transform:matrix(0.209387,-0.001884,0.002250,0.249990,0,0);-ms-transform:matrix(0.209387,-0.001884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209387,-0.001884,0.002250,0.249990,0,0);}
.mef_c00325{transform:matrix(0.209827,-0.001888,0.002250,0.249990,0,0);-ms-transform:matrix(0.209827,-0.001888,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209827,-0.001888,0.002250,0.249990,0,0);}
.m130_c00325{transform:matrix(0.209991,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.209991,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209991,-0.001890,0.002250,0.249990,0,0);}
.ma_c00325{transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210676,-0.001896,0.002250,0.249990,0,0);}
.m2b_c00325{transform:matrix(0.210836,-0.001898,0.002250,0.249990,0,0);-ms-transform:matrix(0.210836,-0.001898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210836,-0.001898,0.002250,0.249990,0,0);}
.m7_c00325{transform:matrix(0.211761,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211761,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211761,-0.001906,0.002250,0.249990,0,0);}
.mc2_c00325{transform:matrix(0.211801,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211801,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211801,-0.001906,0.002250,0.249990,0,0);}
.m37_c00325{transform:matrix(0.211911,-0.001907,0.002250,0.249990,0,0);-ms-transform:matrix(0.211911,-0.001907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211911,-0.001907,0.002250,0.249990,0,0);}
.m133_c00325{transform:matrix(0.211961,-0.001908,0.002250,0.249990,0,0);-ms-transform:matrix(0.211961,-0.001908,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211961,-0.001908,0.002250,0.249990,0,0);}
.m45_c00325{transform:matrix(0.212461,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212461,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212461,-0.001912,0.002250,0.249990,0,0);}
.m89_c00325{transform:matrix(0.213341,-0.001920,0.002250,0.249990,0,0);-ms-transform:matrix(0.213341,-0.001920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213341,-0.001920,0.002250,0.249990,0,0);}
.m35_c00325{transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);-ms-transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213726,-0.001924,0.002250,0.249990,0,0);}
.mbf_c00325{transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);}
.m73_c00325{transform:matrix(0.214916,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214916,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214916,-0.001934,0.002250,0.249990,0,0);}
.m4f_c00325{transform:matrix(0.214986,-0.001935,0.002250,0.249990,0,0);-ms-transform:matrix(0.214986,-0.001935,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214986,-0.001935,0.002250,0.249990,0,0);}
.m3d_c00325{transform:matrix(0.215216,-0.001937,0.002250,0.249990,0,0);-ms-transform:matrix(0.215216,-0.001937,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215216,-0.001937,0.002250,0.249990,0,0);}
.mf6_c00325{transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);-ms-transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);}
.m44_c00325{transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);-ms-transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);}
.mfa_c00325{transform:matrix(0.217236,-0.001955,0.002250,0.249990,0,0);-ms-transform:matrix(0.217236,-0.001955,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217236,-0.001955,0.002250,0.249990,0,0);}
.m8b_c00325{transform:matrix(0.217716,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217716,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217716,-0.001959,0.002250,0.249990,0,0);}
.m3b_c00325{transform:matrix(0.217911,-0.001961,0.002250,0.249990,0,0);-ms-transform:matrix(0.217911,-0.001961,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217911,-0.001961,0.002250,0.249990,0,0);}
.m116_c00325{transform:matrix(0.218066,-0.001963,0.002250,0.249990,0,0);-ms-transform:matrix(0.218066,-0.001963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218066,-0.001963,0.002250,0.249990,0,0);}
.m9b_c00325{transform:matrix(0.218326,-0.001965,0.002250,0.249990,0,0);-ms-transform:matrix(0.218326,-0.001965,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218326,-0.001965,0.002250,0.249990,0,0);}
.m31_c00325{transform:matrix(0.219546,-0.001976,0.002250,0.249990,0,0);-ms-transform:matrix(0.219546,-0.001976,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219546,-0.001976,0.002250,0.249990,0,0);}
.m5c_c00325{transform:matrix(0.219701,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219701,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219701,-0.001977,0.002250,0.249990,0,0);}
.mbe_c00325{transform:matrix(0.219896,-0.001979,0.002250,0.249990,0,0);-ms-transform:matrix(0.219896,-0.001979,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219896,-0.001979,0.002250,0.249990,0,0);}
.mbd_c00325{transform:matrix(0.220216,-0.001982,0.002250,0.249990,0,0);-ms-transform:matrix(0.220216,-0.001982,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220216,-0.001982,0.002250,0.249990,0,0);}
.m3c_c00325{transform:matrix(0.220251,-0.001982,0.002250,0.249990,0,0);-ms-transform:matrix(0.220251,-0.001982,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220251,-0.001982,0.002250,0.249990,0,0);}
.m11a_c00325{transform:matrix(0.220661,-0.001986,0.002250,0.249990,0,0);-ms-transform:matrix(0.220661,-0.001986,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220661,-0.001986,0.002250,0.249990,0,0);}
.m57_c00325{transform:matrix(0.220681,-0.001986,0.002250,0.249990,0,0);-ms-transform:matrix(0.220681,-0.001986,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220681,-0.001986,0.002250,0.249990,0,0);}
.m119_c00325{transform:matrix(0.220951,-0.001989,0.002250,0.249990,0,0);-ms-transform:matrix(0.220951,-0.001989,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220951,-0.001989,0.002250,0.249990,0,0);}
.m13b_c00325{transform:matrix(0.221781,-0.001996,0.002250,0.249990,0,0);-ms-transform:matrix(0.221781,-0.001996,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221781,-0.001996,0.002250,0.249990,0,0);}
.mdf_c00325{transform:matrix(0.223941,-0.002015,0.002250,0.249990,0,0);-ms-transform:matrix(0.223941,-0.002015,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223941,-0.002015,0.002250,0.249990,0,0);}
.m47_c00325{transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);-ms-transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);}
.mb0_c00325{transform:matrix(0.225341,-0.002028,0.002250,0.249990,0,0);-ms-transform:matrix(0.225341,-0.002028,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225341,-0.002028,0.002250,0.249990,0,0);}
.ma8_c00325{transform:matrix(0.227386,-0.002046,0.002250,0.249990,0,0);-ms-transform:matrix(0.227386,-0.002046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227386,-0.002046,0.002250,0.249990,0,0);}
.m132_c00325{transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);-ms-transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227691,-0.002049,0.002250,0.249990,0,0);}
.m122_c00325{transform:matrix(0.228631,-0.002058,0.002250,0.249990,0,0);-ms-transform:matrix(0.228631,-0.002058,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228631,-0.002058,0.002250,0.249990,0,0);}
.m101_c00325{transform:matrix(0.229986,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.229986,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229986,-0.002070,0.002250,0.249990,0,0);}
.mb7_c00325{transform:matrix(0.231271,-0.002081,0.002250,0.249990,0,0);-ms-transform:matrix(0.231271,-0.002081,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231271,-0.002081,0.002250,0.249990,0,0);}
.m41_c00325{transform:matrix(0.231501,-0.002084,0.002250,0.249990,0,0);-ms-transform:matrix(0.231501,-0.002084,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231501,-0.002084,0.002250,0.249990,0,0);}
.m10a_c00325{transform:matrix(0.232966,-0.002097,0.002250,0.249990,0,0);-ms-transform:matrix(0.232966,-0.002097,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232966,-0.002097,0.002250,0.249990,0,0);}
.mc1_c00325{transform:matrix(0.234885,-0.002114,0.002250,0.249990,0,0);-ms-transform:matrix(0.234885,-0.002114,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234885,-0.002114,0.002250,0.249990,0,0);}
.m36_c00325{transform:matrix(0.235715,-0.002121,0.002250,0.249990,0,0);-ms-transform:matrix(0.235715,-0.002121,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235715,-0.002121,0.002250,0.249990,0,0);}
.md9_c00325{transform:matrix(0.237390,-0.002137,0.002250,0.249990,0,0);-ms-transform:matrix(0.237390,-0.002137,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237390,-0.002137,0.002250,0.249990,0,0);}
.me7_c00325{transform:matrix(0.237820,-0.002140,0.002250,0.249990,0,0);-ms-transform:matrix(0.237820,-0.002140,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237820,-0.002140,0.002250,0.249990,0,0);}
.mf5_c00325{transform:matrix(0.239055,-0.002151,0.002250,0.249990,0,0);-ms-transform:matrix(0.239055,-0.002151,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239055,-0.002151,0.002250,0.249990,0,0);}
.m121_c00325{transform:matrix(0.239955,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.239955,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239955,-0.002160,0.002250,0.249990,0,0);}
.m13c_c00325{transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-ms-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);}
.m108_c00325{transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);-ms-transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243145,-0.002188,0.002250,0.249990,0,0);}
.mbb_c00325{transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);-ms-transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);}
.me1_c00325{transform:matrix(0.244650,-0.002202,0.002250,0.249990,0,0);-ms-transform:matrix(0.244650,-0.002202,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244650,-0.002202,0.002250,0.249990,0,0);}
.m54_c00325{transform:matrix(0.246065,-0.002215,0.002250,0.249990,0,0);-ms-transform:matrix(0.246065,-0.002215,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246065,-0.002215,0.002250,0.249990,0,0);}
.m14_c00325{transform:matrix(0.246215,-0.002216,0.002250,0.249990,0,0);-ms-transform:matrix(0.246215,-0.002216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246215,-0.002216,0.002250,0.249990,0,0);}
.m118_c00325{transform:matrix(0.246575,-0.002219,0.002250,0.249990,0,0);-ms-transform:matrix(0.246575,-0.002219,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246575,-0.002219,0.002250,0.249990,0,0);}
.m63_c00325{transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);-ms-transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);}
.m12_c00325{transform:matrix(0.247310,-0.002226,0.002250,0.249990,0,0);-ms-transform:matrix(0.247310,-0.002226,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247310,-0.002226,0.002250,0.249990,0,0);}
.m50_c00325{transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);}
.m61_c00325{transform:matrix(0.248180,-0.002234,0.002250,0.249990,0,0);-ms-transform:matrix(0.248180,-0.002234,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248180,-0.002234,0.002250,0.249990,0,0);}
.m11e_c00325{transform:matrix(0.249890,-0.002249,0.002250,0.249990,0,0);-ms-transform:matrix(0.249890,-0.002249,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249890,-0.002249,0.002250,0.249990,0,0);}
.me2_c00325{transform:matrix(0.257675,-0.002319,0.002250,0.249990,0,0);-ms-transform:matrix(0.257675,-0.002319,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257675,-0.002319,0.002250,0.249990,0,0);}
.m5f_c00325{transform:matrix(0.259824,-0.002338,0.002250,0.249990,0,0);-ms-transform:matrix(0.259824,-0.002338,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259824,-0.002338,0.002250,0.249990,0,0);}
.m11c_c00325{transform:matrix(0.261364,-0.002352,0.002250,0.249990,0,0);-ms-transform:matrix(0.261364,-0.002352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261364,-0.002352,0.002250,0.249990,0,0);}
.mfd_c00325{transform:matrix(0.262799,-0.002365,0.002250,0.249990,0,0);-ms-transform:matrix(0.262799,-0.002365,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262799,-0.002365,0.002250,0.249990,0,0);}
.m11f_c00325{transform:matrix(0.263364,-0.002370,0.002250,0.249990,0,0);-ms-transform:matrix(0.263364,-0.002370,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263364,-0.002370,0.002250,0.249990,0,0);}
.m48_c00325{transform:matrix(0.265429,-0.002389,0.002250,0.249990,0,0);-ms-transform:matrix(0.265429,-0.002389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265429,-0.002389,0.002250,0.249990,0,0);}
.m5_c00325{transform:matrix(0.270874,-0.002438,0.002250,0.249990,0,0);-ms-transform:matrix(0.270874,-0.002438,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270874,-0.002438,0.002250,0.249990,0,0);}
.m4e_c00325{transform:matrix(0.278389,-0.002505,0.002250,0.249990,0,0);-ms-transform:matrix(0.278389,-0.002505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278389,-0.002505,0.002250,0.249990,0,0);}
.m60_c00325{transform:matrix(0.284828,-0.002563,0.002250,0.249990,0,0);-ms-transform:matrix(0.284828,-0.002563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284828,-0.002563,0.002250,0.249990,0,0);}
.m83_c00325{transform:matrix(0.293498,-0.002641,0.002250,0.249990,0,0);-ms-transform:matrix(0.293498,-0.002641,0.002250,0.249990,0,0);-webkit-transform:matrix(0.293498,-0.002641,0.002250,0.249990,0,0);}
.m13_c00325{transform:matrix(0.295858,-0.002663,0.002250,0.249990,0,0);-ms-transform:matrix(0.295858,-0.002663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295858,-0.002663,0.002250,0.249990,0,0);}
.m126_c00325{transform:matrix(0.301893,-0.002717,0.002250,0.249990,0,0);-ms-transform:matrix(0.301893,-0.002717,0.002250,0.249990,0,0);-webkit-transform:matrix(0.301893,-0.002717,0.002250,0.249990,0,0);}
.m28_c00325{transform:matrix(0.303403,-0.002731,0.002250,0.249990,0,0);-ms-transform:matrix(0.303403,-0.002731,0.002250,0.249990,0,0);-webkit-transform:matrix(0.303403,-0.002731,0.002250,0.249990,0,0);}
.m147_c00325{transform:matrix(0.309752,-0.002788,0.002250,0.249990,0,0);-ms-transform:matrix(0.309752,-0.002788,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309752,-0.002788,0.002250,0.249990,0,0);}
.m4d_c00325{transform:matrix(0.315807,-0.002842,0.002250,0.249990,0,0);-ms-transform:matrix(0.315807,-0.002842,0.002250,0.249990,0,0);-webkit-transform:matrix(0.315807,-0.002842,0.002250,0.249990,0,0);}
.m145_c00325{transform:matrix(0.357301,-0.003216,0.002250,0.249990,0,0);-ms-transform:matrix(0.357301,-0.003216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.357301,-0.003216,0.002250,0.249990,0,0);}
.ma9_c00325{transform:matrix(0.371740,-0.003346,0.002250,0.249990,0,0);-ms-transform:matrix(0.371740,-0.003346,0.002250,0.249990,0,0);-webkit-transform:matrix(0.371740,-0.003346,0.002250,0.249990,0,0);}
.mc_c00325{transform:matrix(0.402884,-0.003626,0.002250,0.249990,0,0);-ms-transform:matrix(0.402884,-0.003626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.402884,-0.003626,0.002250,0.249990,0,0);}
.m27_c00325{transform:matrix(0.422338,-0.003801,0.002250,0.249990,0,0);-ms-transform:matrix(0.422338,-0.003801,0.002250,0.249990,0,0);-webkit-transform:matrix(0.422338,-0.003801,0.002250,0.249990,0,0);}
.m14a_c00325{transform:matrix(0.423630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423630,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.586051,-0.005274,0.002250,0.249990,0,0);-ms-transform:matrix(0.586051,-0.005274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.586051,-0.005274,0.002250,0.249990,0,0);}
.m4c_c00325{transform:matrix(0.682707,-0.006144,0.002250,0.249990,0,0);-ms-transform:matrix(0.682707,-0.006144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.682707,-0.006144,0.002250,0.249990,0,0);}
.m40_c00325{transform:matrix(0.737725,-0.006640,0.002250,0.249990,0,0);-ms-transform:matrix(0.737725,-0.006640,0.002250,0.249990,0,0);-webkit-transform:matrix(0.737725,-0.006640,0.002250,0.249990,0,0);}
.m149_c00325{transform:matrix(0.755615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755615,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.849846,-0.007649,0.002250,0.249990,0,0);-ms-transform:matrix(0.849846,-0.007649,0.002250,0.249990,0,0);-webkit-transform:matrix(0.849846,-0.007649,0.002250,0.249990,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;}
.fs10_c00325{font-size:22.050000px;}
.fsf_c00325{font-size:23.100000px;}
.fsd_c00325{font-size:38.850000px;}
.fs3_c00325{font-size:61.952509px;}
.fs4_c00325{font-size:64.052594px;}
.fs5_c00325{font-size:65.102636px;}
.fsa_c00325{font-size:66.152679px;}
.fs1_c00325{font-size:67.202722px;}
.fs8_c00325{font-size:68.252764px;}
.fs0_c00325{font-size:69.302807px;}
.fs2_c00325{font-size:70.352849px;}
.fs7_c00325{font-size:71.402892px;}
.fsb_c00325{font-size:72.452934px;}
.fsc_c00325{font-size:73.502977px;}
.fs9_c00325{font-size:74.553019px;}
.fs6_c00325{font-size:75.603062px;}
.fse_c00325{font-size:149.100000px;}
.y0_c00325{bottom:0.000000px;}
.y153_c00325{bottom:88.830000px;}
.y152_c00325{bottom:106.663500px;}
.y151_c00325{bottom:140.670000px;}
.y150_c00325{bottom:169.930739px;}
.y14f_c00325{bottom:170.652263px;}
.y14e_c00325{bottom:170.886780px;}
.y14d_c00325{bottom:171.034511px;}
.y14c_c00325{bottom:171.483684px;}
.y14b_c00325{bottom:171.797304px;}
.y14a_c00325{bottom:172.057532px;}
.y149_c00325{bottom:172.250658px;}
.y148_c00325{bottom:172.409619px;}
.y147_c00325{bottom:172.658927px;}
.y146_c00325{bottom:172.912293px;}
.y145_c00325{bottom:173.045804px;}
.y13a_c00325{bottom:194.295285px;}
.y13b_c00325{bottom:194.295302px;}
.y13c_c00325{bottom:194.296025px;}
.y13f_c00325{bottom:194.296118px;}
.y141_c00325{bottom:194.296527px;}
.y142_c00325{bottom:194.296664px;}
.y144_c00325{bottom:194.296713px;}
.y13d_c00325{bottom:194.296745px;}
.y13e_c00325{bottom:194.296851px;}
.y140_c00325{bottom:194.296854px;}
.y143_c00325{bottom:194.296920px;}
.y12e_c00325{bottom:217.202148px;}
.y130_c00325{bottom:217.202421px;}
.y12f_c00325{bottom:217.202735px;}
.y138_c00325{bottom:217.202750px;}
.y137_c00325{bottom:217.202943px;}
.y139_c00325{bottom:217.202963px;}
.y131_c00325{bottom:217.203038px;}
.y135_c00325{bottom:217.203284px;}
.y136_c00325{bottom:217.203287px;}
.y132_c00325{bottom:217.203744px;}
.y134_c00325{bottom:217.203747px;}
.y133_c00325{bottom:217.204361px;}
.y123_c00325{bottom:239.850281px;}
.y124_c00325{bottom:239.850387px;}
.y12a_c00325{bottom:239.850503px;}
.y128_c00325{bottom:239.850650px;}
.y121_c00325{bottom:239.850651px;}
.y129_c00325{bottom:239.850726px;}
.y12c_c00325{bottom:239.850746px;}
.y12d_c00325{bottom:239.850762px;}
.y122_c00325{bottom:239.850908px;}
.y12b_c00325{bottom:239.851029px;}
.y125_c00325{bottom:239.851064px;}
.y127_c00325{bottom:239.851067px;}
.y126_c00325{bottom:239.851680px;}
.y11a_c00325{bottom:263.047044px;}
.y120_c00325{bottom:263.047062px;}
.y11b_c00325{bottom:263.047557px;}
.y11f_c00325{bottom:263.047599px;}
.y11c_c00325{bottom:263.047680px;}
.y119_c00325{bottom:263.047748px;}
.y11e_c00325{bottom:263.048016px;}
.y11d_c00325{bottom:263.048253px;}
.y118_c00325{bottom:285.819599px;}
.y116_c00325{bottom:285.819716px;}
.y115_c00325{bottom:285.819879px;}
.y114_c00325{bottom:285.819983px;}
.y113_c00325{bottom:285.820056px;}
.y111_c00325{bottom:285.820170px;}
.y112_c00325{bottom:285.820250px;}
.y10f_c00325{bottom:285.820287px;}
.y117_c00325{bottom:285.820332px;}
.y110_c00325{bottom:285.820484px;}
.y10e_c00325{bottom:285.820751px;}
.y107_c00325{bottom:308.439609px;}
.y105_c00325{bottom:308.439680px;}
.y106_c00325{bottom:308.439743px;}
.y10d_c00325{bottom:308.439845px;}
.y10b_c00325{bottom:308.440022px;}
.y10c_c00325{bottom:308.440128px;}
.y108_c00325{bottom:308.440196px;}
.y109_c00325{bottom:308.440212px;}
.y104_c00325{bottom:308.440233px;}
.y102_c00325{bottom:308.440470px;}
.y10a_c00325{bottom:308.440679px;}
.y103_c00325{bottom:308.440817px;}
.yff_c00325{bottom:331.928156px;}
.y100_c00325{bottom:331.928339px;}
.yfe_c00325{bottom:331.928559px;}
.yfd_c00325{bottom:331.928693px;}
.y101_c00325{bottom:331.929062px;}
.yfc_c00325{bottom:331.929426px;}
.yfb_c00325{bottom:331.929470px;}
.yfa_c00325{bottom:331.930083px;}
.yf9_c00325{bottom:331.930427px;}
.yf8_c00325{bottom:331.930530px;}
.yf6_c00325{bottom:331.930797px;}
.yf7_c00325{bottom:331.930814px;}
.yf1_c00325{bottom:354.564959px;}
.yeb_c00325{bottom:354.564993px;}
.yf3_c00325{bottom:354.565188px;}
.yec_c00325{bottom:354.565266px;}
.yf2_c00325{bottom:354.565412px;}
.yf0_c00325{bottom:354.565422px;}
.yf5_c00325{bottom:354.565628px;}
.yf4_c00325{bottom:354.565715px;}
.yed_c00325{bottom:354.565733px;}
.yef_c00325{bottom:354.565976px;}
.yee_c00325{bottom:354.566379px;}
.ye4_c00325{bottom:377.774262px;}
.ye6_c00325{bottom:377.774295px;}
.ye8_c00325{bottom:377.774298px;}
.ye5_c00325{bottom:377.774548px;}
.ye7_c00325{bottom:377.774701px;}
.ye3_c00325{bottom:377.774876px;}
.ye0_c00325{bottom:377.774897px;}
.ye9_c00325{bottom:377.774961px;}
.yea_c00325{bottom:377.775008px;}
.ye2_c00325{bottom:377.775113px;}
.ye1_c00325{bottom:377.775560px;}
.ydd_c00325{bottom:400.453824px;}
.yde_c00325{bottom:400.454124px;}
.ydc_c00325{bottom:400.454541px;}
.ydf_c00325{bottom:400.454591px;}
.ydb_c00325{bottom:400.454795px;}
.yd9_c00325{bottom:400.454985px;}
.yd8_c00325{bottom:400.455059px;}
.yda_c00325{bottom:400.455362px;}
.yd7_c00325{bottom:400.455582px;}
.yd6_c00325{bottom:400.456179px;}
.yd4_c00325{bottom:400.456386px;}
.yd5_c00325{bottom:400.456793px;}
.ycd_c00325{bottom:423.379008px;}
.yce_c00325{bottom:423.379264px;}
.yc8_c00325{bottom:423.379302px;}
.yca_c00325{bottom:423.379348px;}
.ycb_c00325{bottom:423.379485px;}
.ycc_c00325{bottom:423.379531px;}
.ycf_c00325{bottom:423.379567px;}
.yd3_c00325{bottom:423.379663px;}
.yd0_c00325{bottom:423.379674px;}
.yc6_c00325{bottom:423.379749px;}
.yc9_c00325{bottom:423.379919px;}
.yc7_c00325{bottom:423.379946px;}
.yd1_c00325{bottom:423.380020px;}
.yd2_c00325{bottom:423.380217px;}
.yc3_c00325{bottom:446.598021px;}
.yc4_c00325{bottom:446.598368px;}
.yc5_c00325{bottom:446.598521px;}
.yc2_c00325{bottom:446.598605px;}
.yc1_c00325{bottom:446.599098px;}
.ybb_c00325{bottom:446.599569px;}
.ybf_c00325{bottom:446.599619px;}
.yc0_c00325{bottom:446.599755px;}
.ybd_c00325{bottom:446.599932px;}
.ybc_c00325{bottom:446.600139px;}
.ybe_c00325{bottom:446.600292px;}
.yb2_c00325{bottom:469.250131px;}
.yb8_c00325{bottom:469.250383px;}
.yb5_c00325{bottom:469.250394px;}
.yb9_c00325{bottom:469.250520px;}
.yb4_c00325{bottom:469.250647px;}
.yba_c00325{bottom:469.250717px;}
.yb3_c00325{bottom:469.250781px;}
.yb7_c00325{bottom:469.251040px;}
.yb6_c00325{bottom:469.251101px;}
.yb0_c00325{bottom:492.277908px;}
.yb1_c00325{bottom:492.278525px;}
.ya6_c00325{bottom:514.823097px;}
.yaa_c00325{bottom:514.823406px;}
.ya7_c00325{bottom:514.823503px;}
.yab_c00325{bottom:514.823662px;}
.ya5_c00325{bottom:514.823800px;}
.ya9_c00325{bottom:514.823973px;}
.yac_c00325{bottom:514.823979px;}
.ya8_c00325{bottom:514.823986px;}
.yad_c00325{bottom:514.824325px;}
.yae_c00325{bottom:514.824775px;}
.yaf_c00325{bottom:514.824869px;}
.y9b_c00325{bottom:538.069690px;}
.y9c_c00325{bottom:538.070337px;}
.ya0_c00325{bottom:538.070349px;}
.y9d_c00325{bottom:538.070610px;}
.y9e_c00325{bottom:538.070883px;}
.y9f_c00325{bottom:538.070916px;}
.ya1_c00325{bottom:538.071055px;}
.ya3_c00325{bottom:538.071538px;}
.ya2_c00325{bottom:538.071762px;}
.ya4_c00325{bottom:538.072275px;}
.y9a_c00325{bottom:560.718544px;}
.y99_c00325{bottom:560.719292px;}
.y94_c00325{bottom:560.719509px;}
.y96_c00325{bottom:560.719632px;}
.y97_c00325{bottom:560.719678px;}
.y91_c00325{bottom:560.719699px;}
.y98_c00325{bottom:560.719725px;}
.y93_c00325{bottom:560.719762px;}
.y92_c00325{bottom:560.719806px;}
.y90_c00325{bottom:560.719893px;}
.y95_c00325{bottom:560.719945px;}
.y8f_c00325{bottom:560.720026px;}
.y85_c00325{bottom:583.638876px;}
.y86_c00325{bottom:583.639209px;}
.y87_c00325{bottom:583.639465px;}
.y89_c00325{bottom:583.639588px;}
.y88_c00325{bottom:583.639992px;}
.y8a_c00325{bottom:583.640145px;}
.y8b_c00325{bottom:583.640641px;}
.y8d_c00325{bottom:583.640901px;}
.y8c_c00325{bottom:583.641004px;}
.y8e_c00325{bottom:583.641127px;}
.y7b_c00325{bottom:605.602765px;}
.y7c_c00325{bottom:605.956623px;}
.y7d_c00325{bottom:606.308983px;}
.y7e_c00325{bottom:607.051930px;}
.y7f_c00325{bottom:607.512777px;}
.y80_c00325{bottom:607.726144px;}
.y81_c00325{bottom:608.091976px;}
.y82_c00325{bottom:608.303143px;}
.y83_c00325{bottom:608.961753px;}
.y84_c00325{bottom:609.293959px;}
.y79_c00325{bottom:629.721280px;}
.y78_c00325{bottom:629.722014px;}
.y7a_c00325{bottom:629.722017px;}
.y76_c00325{bottom:629.722624px;}
.y77_c00325{bottom:629.722761px;}
.y75_c00325{bottom:629.723358px;}
.y74_c00325{bottom:629.723955px;}
.y73_c00325{bottom:629.724358px;}
.y72_c00325{bottom:629.724762px;}
.y71_c00325{bottom:629.725422px;}
.y70_c00325{bottom:629.725615px;}
.y68_c00325{bottom:652.401321px;}
.y69_c00325{bottom:652.401924px;}
.y67_c00325{bottom:652.402024px;}
.y6d_c00325{bottom:652.402246px;}
.y6c_c00325{bottom:652.402290px;}
.y66_c00325{bottom:652.402351px;}
.y65_c00325{bottom:652.402395px;}
.y6b_c00325{bottom:652.402407px;}
.y6a_c00325{bottom:652.402480px;}
.y6e_c00325{bottom:652.402833px;}
.y6f_c00325{bottom:652.403149px;}
.y59_c00325{bottom:673.649656px;}
.y5a_c00325{bottom:673.820356px;}
.y5b_c00325{bottom:674.053287px;}
.y5c_c00325{bottom:674.324263px;}
.y5d_c00325{bottom:674.548057px;}
.y5e_c00325{bottom:674.993754px;}
.y5f_c00325{bottom:675.180661px;}
.y60_c00325{bottom:675.434941px;}
.y61_c00325{bottom:675.920086px;}
.y62_c00325{bottom:676.052727px;}
.y63_c00325{bottom:676.224384px;}
.y64_c00325{bottom:676.658527px;}
.y4d_c00325{bottom:698.193784px;}
.y4e_c00325{bottom:698.194311px;}
.y58_c00325{bottom:698.194372px;}
.y50_c00325{bottom:698.194374px;}
.y51_c00325{bottom:698.194510px;}
.y4f_c00325{bottom:698.194537px;}
.y52_c00325{bottom:698.194707px;}
.y57_c00325{bottom:698.194956px;}
.y56_c00325{bottom:698.195209px;}
.y53_c00325{bottom:698.195443px;}
.y55_c00325{bottom:698.195613px;}
.y54_c00325{bottom:698.196060px;}
.y41_c00325{bottom:719.550030px;}
.y42_c00325{bottom:719.863828px;}
.y43_c00325{bottom:720.195397px;}
.y44_c00325{bottom:720.455197px;}
.y45_c00325{bottom:720.651673px;}
.y46_c00325{bottom:721.004508px;}
.y47_c00325{bottom:721.159788px;}
.y48_c00325{bottom:721.322799px;}
.y49_c00325{bottom:722.030628px;}
.y4a_c00325{bottom:722.146198px;}
.y4b_c00325{bottom:722.381305px;}
.y4c_c00325{bottom:722.539258px;}
.y34_c00325{bottom:742.228423px;}
.y35_c00325{bottom:742.556178px;}
.y36_c00325{bottom:742.842121px;}
.y37_c00325{bottom:743.027869px;}
.y38_c00325{bottom:743.570766px;}
.y39_c00325{bottom:743.797920px;}
.y3a_c00325{bottom:744.062458px;}
.y3b_c00325{bottom:744.164326px;}
.y3c_c00325{bottom:744.417933px;}
.y3d_c00325{bottom:744.875479px;}
.y3e_c00325{bottom:744.987363px;}
.y3f_c00325{bottom:745.497976px;}
.y40_c00325{bottom:745.763163px;}
.y28_c00325{bottom:764.098651px;}
.y29_c00325{bottom:764.355165px;}
.y2a_c00325{bottom:764.994079px;}
.y2b_c00325{bottom:765.475381px;}
.y2c_c00325{bottom:765.715722px;}
.y2d_c00325{bottom:766.187182px;}
.y2e_c00325{bottom:766.522765px;}
.y2f_c00325{bottom:767.088645px;}
.y30_c00325{bottom:767.300419px;}
.y31_c00325{bottom:767.932192px;}
.y32_c00325{bottom:768.274836px;}
.y33_c00325{bottom:768.563601px;}
.y154_c00325{bottom:768.960000px;}
.y1b_c00325{bottom:790.518447px;}
.y27_c00325{bottom:790.518858px;}
.y1e_c00325{bottom:790.518976px;}
.y1c_c00325{bottom:790.519033px;}
.y26_c00325{bottom:790.519338px;}
.y20_c00325{bottom:790.519429px;}
.y1f_c00325{bottom:790.519503px;}
.y21_c00325{bottom:790.519539px;}
.y1d_c00325{bottom:790.519590px;}
.y25_c00325{bottom:790.519681px;}
.y22_c00325{bottom:790.519705px;}
.y24_c00325{bottom:790.520368px;}
.y23_c00325{bottom:790.520442px;}
.yd_c00325{bottom:812.159553px;}
.ye_c00325{bottom:812.535379px;}
.yf_c00325{bottom:812.976946px;}
.y10_c00325{bottom:813.077884px;}
.y11_c00325{bottom:813.334878px;}
.y12_c00325{bottom:813.461728px;}
.y13_c00325{bottom:813.792465px;}
.y14_c00325{bottom:813.943473px;}
.y15_c00325{bottom:814.188981px;}
.y16_c00325{bottom:814.321513px;}
.y17_c00325{bottom:814.733956px;}
.y18_c00325{bottom:814.909189px;}
.y19_c00325{bottom:815.440519px;}
.y1a_c00325{bottom:815.678862px;}
.y1_c00325{bottom:832.411500px;}
.y2_c00325{bottom:832.882137px;}
.y3_c00325{bottom:833.273218px;}
.y4_c00325{bottom:833.564980px;}
.y5_c00325{bottom:834.021861px;}
.y6_c00325{bottom:834.622030px;}
.y7_c00325{bottom:834.845739px;}
.y8_c00325{bottom:835.069380px;}
.y9_c00325{bottom:835.695874px;}
.ya_c00325{bottom:835.837246px;}
.yb_c00325{bottom:836.182266px;}
.yc_c00325{bottom:836.981304px;}
.h12_c00325{height:22.050000px;}
.h11_c00325{height:23.100000px;}
.hf_c00325{height:38.850000px;}
.h5_c00325{height:61.952509px;}
.h6_c00325{height:64.052594px;}
.h7_c00325{height:65.102636px;}
.hc_c00325{height:66.152679px;}
.h3_c00325{height:67.202722px;}
.ha_c00325{height:68.252764px;}
.h2_c00325{height:69.302807px;}
.h4_c00325{height:70.352849px;}
.h9_c00325{height:71.402892px;}
.hd_c00325{height:72.452934px;}
.he_c00325{height:73.502977px;}
.hb_c00325{height:74.553019px;}
.h8_c00325{height:75.603062px;}
.h10_c00325{height:149.100000px;}
.h0_c00325{height:1008.450000px;}
.h1_c00325{height:1008.750000px;}
.w0_c00325{width:696.000000px;}
.x0_c00325{left:0.000000px;}
.xc3_c00325{left:78.570000px;}
.xc2_c00325{left:87.210000px;}
.xd_c00325{left:94.058156px;}
.x1_c00325{left:95.259000px;}
.x3e_c00325{left:96.387453px;}
.x1a_c00325{left:101.519514px;}
.x24_c00325{left:109.058383px;}
.x25_c00325{left:137.559883px;}
.xa5_c00325{left:139.307925px;}
.x3f_c00325{left:144.449841px;}
.x2_c00325{left:147.552000px;}
.x51_c00325{left:149.038307px;}
.xab_c00325{left:150.376883px;}
.x81_c00325{left:162.807492px;}
.x7b_c00325{left:167.936574px;}
.xbf_c00325{left:169.176999px;}
.x52_c00325{left:170.368535px;}
.x48_c00325{left:172.620971px;}
.x1b_c00325{left:174.152387px;}
.x86_c00325{left:175.495985px;}
.x77_c00325{left:180.356957px;}
.xb2_c00325{left:182.505932px;}
.xac_c00325{left:186.828339px;}
.x2d_c00325{left:189.086159px;}
.x3_c00325{left:191.005500px;}
.x5f_c00325{left:193.151858px;}
.x1c_c00325{left:195.752642px;}
.x36_c00325{left:203.655143px;}
.x49_c00325{left:205.836065px;}
.x26_c00325{left:208.550384px;}
.xe_c00325{left:210.881762px;}
.xa0_c00325{left:211.942415px;}
.xad_c00325{left:213.018959px;}
.x2e_c00325{left:215.558631px;}
.x63_c00325{left:216.808614px;}
.xb7_c00325{left:220.574583px;}
.x4_c00325{left:223.423500px;}
.xf_c00325{left:225.264018px;}
.x6b_c00325{left:227.070204px;}
.x1d_c00325{left:230.313936px;}
.x53_c00325{left:235.170786px;}
.x60_c00325{left:237.136749px;}
.x59_c00325{left:240.301284px;}
.x87_c00325{left:242.998452px;}
.x4a_c00325{left:244.445253px;}
.x37_c00325{left:246.856304px;}
.x6c_c00325{left:249.750540px;}
.x88_c00325{left:256.769573px;}
.xb8_c00325{left:258.646161px;}
.x10_c00325{left:261.986180px;}
.xae_c00325{left:264.321617px;}
.x64_c00325{left:267.841245px;}
.x40_c00325{left:270.815574px;}
.x1e_c00325{left:272.975892px;}
.x5_c00325{left:274.188000px;}
.x4b_c00325{left:276.311820px;}
.x90_c00325{left:277.559054px;}
.x11_c00325{left:280.081004px;}
.x89_c00325{left:285.120368px;}
.x9a_c00325{left:287.005788px;}
.x27_c00325{left:288.732883px;}
.xc0_c00325{left:291.221076px;}
.x2f_c00325{left:293.048522px;}
.x94_c00325{left:295.379105px;}
.x41_c00325{left:297.006194px;}
.x6d_c00325{left:298.082955px;}
.x65_c00325{left:302.402540px;}
.xb5_c00325{left:308.060348px;}
.x8a_c00325{left:309.960879px;}
.xb9_c00325{left:313.729116px;}
.x78_c00325{left:315.631905px;}
.xbd_c00325{left:321.558896px;}
.x30_c00325{left:325.455102px;}
.x12_c00325{left:327.330354px;}
.x5a_c00325{left:328.863966px;}
.x42_c00325{left:330.757421px;}
.x91_c00325{left:331.830455px;}
.x72_c00325{left:332.914100px;}
.x9b_c00325{left:334.798163px;}
.x66_c00325{left:336.693821px;}
.x38_c00325{left:338.393274px;}
.x6_c00325{left:340.873500px;}
.x54_c00325{left:345.335210px;}
.x6e_c00325{left:347.225438px;}
.x13_c00325{left:348.942746px;}
.x7c_c00325{left:351.813965px;}
.x5b_c00325{left:354.784572px;}
.xba_c00325{left:359.899856px;}
.xbe_c00325{left:360.980595px;}
.x8b_c00325{left:362.073605px;}
.x31_c00325{left:363.182277px;}
.x39_c00325{left:364.313976px;}
.x7_c00325{left:365.730000px;}
.x4c_c00325{left:366.769454px;}
.x1f_c00325{left:368.829155px;}
.xa6_c00325{left:369.897609px;}
.x82_c00325{left:372.875516px;}
.x28_c00325{left:378.404383px;}
.x9c_c00325{left:381.240429px;}
.x43_c00325{left:382.330092px;}
.x14_c00325{left:384.055380px;}
.x55_c00325{left:385.566963px;}
.x61_c00325{left:387.559599px;}
.x79_c00325{left:389.074859px;}
.x8_c00325{left:390.579000px;}
.x3a_c00325{left:391.593719px;}
.x7d_c00325{left:393.395826px;}
.x95_c00325{left:398.792988px;}
.x15_c00325{left:402.948218px;}
.x9d_c00325{left:404.190792px;}
.x7e_c00325{left:409.057095px;}
.x73_c00325{left:411.757485px;}
.x32_c00325{left:414.013695px;}
.x6f_c00325{left:416.078013px;}
.xaf_c00325{left:417.146496px;}
.xa7_c00325{left:421.468781px;}
.x20_c00325{left:423.100542px;}
.x7a_c00325{left:426.606396px;}
.x56_c00325{left:428.228919px;}
.x67_c00325{left:432.818597px;}
.xa1_c00325{left:435.241518px;}
.x92_c00325{left:438.484595px;}
.x29_c00325{left:441.279884px;}
.x83_c00325{left:444.428321px;}
.xb6_c00325{left:446.034026px;}
.x8c_c00325{left:448.476098px;}
.x5c_c00325{left:449.557754px;}
.x44_c00325{left:451.452695px;}
.x70_c00325{left:454.419618px;}
.xa2_c00325{left:456.031706px;}
.xa8_c00325{left:458.190251px;}
.x9_c00325{left:460.189500px;}
.x16_c00325{left:461.776271px;}
.x96_c00325{left:464.135280px;}
.x21_c00325{left:465.762498px;}
.x9e_c00325{left:467.912949px;}
.x4d_c00325{left:472.596371px;}
.x93_c00325{left:474.125984px;}
.xa_c00325{left:475.897500px;}
.x33_c00325{left:479.353370px;}
.xbb_c00325{left:483.025332px;}
.x84_c00325{left:485.470142px;}
.x17_c00325{left:486.913729px;}
.x4e_c00325{left:491.501208px;}
.x68_c00325{left:493.030470px;}
.x34_c00325{left:495.285153px;}
.x45_c00325{left:499.245069px;}
.x5d_c00325{left:502.480547px;}
.x7f_c00325{left:507.340560px;}
.x3b_c00325{left:509.577905px;}
.xb_c00325{left:514.233000px;}
.x4f_c00325{left:516.074654px;}
.xb0_c00325{left:517.860150px;}
.x46_c00325{left:521.385365px;}
.xa3_c00325{left:522.724106px;}
.x97_c00325{left:523.807113px;}
.x57_c00325{left:527.052425px;}
.x3c_c00325{left:528.752918px;}
.x22_c00325{left:530.024709px;}
.x2a_c00325{left:535.007384px;}
.xa4_c00325{left:536.225199px;}
.x8d_c00325{left:539.200442px;}
.x74_c00325{left:541.361975px;}
.xb3_c00325{left:542.430078px;}
.x69_c00325{left:543.523061px;}
.x85_c00325{left:546.492083px;}
.x47_c00325{left:548.656079px;}
.x5e_c00325{left:549.732867px;}
.xa9_c00325{left:550.803257px;}
.xb1_c00325{left:557.281850px;}
.x58_c00325{left:559.453544px;}
.x80_c00325{left:560.533367px;}
.x18_c00325{left:562.785093px;}
.x8e_c00325{left:565.391061px;}
.x35_c00325{left:568.187963px;}
.x2b_c00325{left:573.078884px;}
.x6a_c00325{left:575.384139px;}
.x50_c00325{left:578.147274px;}
.x23_c00325{left:579.437218px;}
.xaa_c00325{left:580.774187px;}
.x75_c00325{left:582.673823px;}
.x98_c00325{left:586.719203px;}
.x71_c00325{left:587.804432px;}
.x3d_c00325{left:594.094673px;}
.xc1_c00325{left:595.287843px;}
.x19_c00325{left:596.768200px;}
.x8f_c00325{left:598.332234px;}
.xc_c00325{left:603.015000px;}
.x2c_c00325{left:605.163884px;}
.xbc_c00325{left:607.499417px;}
.x62_c00325{left:610.304111px;}
.x99_c00325{left:611.559714px;}
.x9f_c00325{left:613.448735px;}
.x76_c00325{left:616.425050px;}
.xb4_c00325{left:621.543491px;}
.xc4_c00325{left:680.400000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
.fs10_c00325{font-size:19.600000pt;}
.fsf_c00325{font-size:20.533333pt;}
.fsd_c00325{font-size:34.533333pt;}
.fs3_c00325{font-size:55.068897pt;}
.fs4_c00325{font-size:56.935639pt;}
.fs5_c00325{font-size:57.869010pt;}
.fsa_c00325{font-size:58.802381pt;}
.fs1_c00325{font-size:59.735752pt;}
.fs8_c00325{font-size:60.669124pt;}
.fs0_c00325{font-size:61.602495pt;}
.fs2_c00325{font-size:62.535866pt;}
.fs7_c00325{font-size:63.469237pt;}
.fsb_c00325{font-size:64.402608pt;}
.fsc_c00325{font-size:65.335979pt;}
.fs9_c00325{font-size:66.269350pt;}
.fs6_c00325{font-size:67.202722pt;}
.fse_c00325{font-size:132.533333pt;}
.y0_c00325{bottom:0.000000pt;}
.y153_c00325{bottom:78.960000pt;}
.y152_c00325{bottom:94.812000pt;}
.y151_c00325{bottom:125.040000pt;}
.y150_c00325{bottom:151.049545pt;}
.y14f_c00325{bottom:151.690900pt;}
.y14e_c00325{bottom:151.899360pt;}
.y14d_c00325{bottom:152.030676pt;}
.y14c_c00325{bottom:152.429941pt;}
.y14b_c00325{bottom:152.708715pt;}
.y14a_c00325{bottom:152.940028pt;}
.y149_c00325{bottom:153.111696pt;}
.y148_c00325{bottom:153.252995pt;}
.y147_c00325{bottom:153.474601pt;}
.y146_c00325{bottom:153.699816pt;}
.y145_c00325{bottom:153.818492pt;}
.y13a_c00325{bottom:172.706920pt;}
.y13b_c00325{bottom:172.706935pt;}
.y13c_c00325{bottom:172.707577pt;}
.y13f_c00325{bottom:172.707660pt;}
.y141_c00325{bottom:172.708024pt;}
.y142_c00325{bottom:172.708145pt;}
.y144_c00325{bottom:172.708189pt;}
.y13d_c00325{bottom:172.708217pt;}
.y13e_c00325{bottom:172.708312pt;}
.y140_c00325{bottom:172.708315pt;}
.y143_c00325{bottom:172.708373pt;}
.y12e_c00325{bottom:193.068576pt;}
.y130_c00325{bottom:193.068819pt;}
.y12f_c00325{bottom:193.069097pt;}
.y138_c00325{bottom:193.069111pt;}
.y137_c00325{bottom:193.069283pt;}
.y139_c00325{bottom:193.069300pt;}
.y131_c00325{bottom:193.069367pt;}
.y135_c00325{bottom:193.069585pt;}
.y136_c00325{bottom:193.069588pt;}
.y132_c00325{bottom:193.069995pt;}
.y134_c00325{bottom:193.069997pt;}
.y133_c00325{bottom:193.070543pt;}
.y123_c00325{bottom:213.200249pt;}
.y124_c00325{bottom:213.200344pt;}
.y12a_c00325{bottom:213.200447pt;}
.y128_c00325{bottom:213.200577pt;}
.y121_c00325{bottom:213.200579pt;}
.y129_c00325{bottom:213.200645pt;}
.y12c_c00325{bottom:213.200663pt;}
.y12d_c00325{bottom:213.200677pt;}
.y122_c00325{bottom:213.200807pt;}
.y12b_c00325{bottom:213.200915pt;}
.y125_c00325{bottom:213.200945pt;}
.y127_c00325{bottom:213.200948pt;}
.y126_c00325{bottom:213.201493pt;}
.y11a_c00325{bottom:233.819595pt;}
.y120_c00325{bottom:233.819611pt;}
.y11b_c00325{bottom:233.820051pt;}
.y11f_c00325{bottom:233.820088pt;}
.y11c_c00325{bottom:233.820160pt;}
.y119_c00325{bottom:233.820220pt;}
.y11e_c00325{bottom:233.820459pt;}
.y11d_c00325{bottom:233.820669pt;}
.y118_c00325{bottom:254.061865pt;}
.y116_c00325{bottom:254.061969pt;}
.y115_c00325{bottom:254.062115pt;}
.y114_c00325{bottom:254.062207pt;}
.y113_c00325{bottom:254.062272pt;}
.y111_c00325{bottom:254.062373pt;}
.y112_c00325{bottom:254.062444pt;}
.y10f_c00325{bottom:254.062477pt;}
.y117_c00325{bottom:254.062517pt;}
.y110_c00325{bottom:254.062652pt;}
.y10e_c00325{bottom:254.062889pt;}
.y107_c00325{bottom:274.168541pt;}
.y105_c00325{bottom:274.168604pt;}
.y106_c00325{bottom:274.168660pt;}
.y10d_c00325{bottom:274.168751pt;}
.y10b_c00325{bottom:274.168908pt;}
.y10c_c00325{bottom:274.169003pt;}
.y108_c00325{bottom:274.169063pt;}
.y109_c00325{bottom:274.169077pt;}
.y104_c00325{bottom:274.169096pt;}
.y102_c00325{bottom:274.169307pt;}
.y10a_c00325{bottom:274.169492pt;}
.y103_c00325{bottom:274.169615pt;}
.yff_c00325{bottom:295.047249pt;}
.y100_c00325{bottom:295.047412pt;}
.yfe_c00325{bottom:295.047608pt;}
.yfd_c00325{bottom:295.047727pt;}
.y101_c00325{bottom:295.048055pt;}
.yfc_c00325{bottom:295.048379pt;}
.yfb_c00325{bottom:295.048417pt;}
.yfa_c00325{bottom:295.048963pt;}
.yf9_c00325{bottom:295.049268pt;}
.yf8_c00325{bottom:295.049360pt;}
.yf6_c00325{bottom:295.049597pt;}
.yf7_c00325{bottom:295.049612pt;}
.yf1_c00325{bottom:315.168852pt;}
.yeb_c00325{bottom:315.168883pt;}
.yf3_c00325{bottom:315.169056pt;}
.yec_c00325{bottom:315.169125pt;}
.yf2_c00325{bottom:315.169255pt;}
.yf0_c00325{bottom:315.169264pt;}
.yf5_c00325{bottom:315.169447pt;}
.yf4_c00325{bottom:315.169524pt;}
.yed_c00325{bottom:315.169540pt;}
.yef_c00325{bottom:315.169756pt;}
.yee_c00325{bottom:315.170115pt;}
.ye4_c00325{bottom:335.799344pt;}
.ye6_c00325{bottom:335.799373pt;}
.ye8_c00325{bottom:335.799376pt;}
.ye5_c00325{bottom:335.799599pt;}
.ye7_c00325{bottom:335.799735pt;}
.ye3_c00325{bottom:335.799889pt;}
.ye0_c00325{bottom:335.799908pt;}
.ye9_c00325{bottom:335.799965pt;}
.yea_c00325{bottom:335.800007pt;}
.ye2_c00325{bottom:335.800100pt;}
.ye1_c00325{bottom:335.800497pt;}
.ydd_c00325{bottom:355.958955pt;}
.yde_c00325{bottom:355.959221pt;}
.ydc_c00325{bottom:355.959592pt;}
.ydf_c00325{bottom:355.959636pt;}
.ydb_c00325{bottom:355.959817pt;}
.yd9_c00325{bottom:355.959987pt;}
.yd8_c00325{bottom:355.960052pt;}
.yda_c00325{bottom:355.960321pt;}
.yd7_c00325{bottom:355.960517pt;}
.yd6_c00325{bottom:355.961048pt;}
.yd4_c00325{bottom:355.961232pt;}
.yd5_c00325{bottom:355.961593pt;}
.ycd_c00325{bottom:376.336896pt;}
.yce_c00325{bottom:376.337124pt;}
.yc8_c00325{bottom:376.337157pt;}
.yca_c00325{bottom:376.337199pt;}
.ycb_c00325{bottom:376.337320pt;}
.ycc_c00325{bottom:376.337361pt;}
.ycf_c00325{bottom:376.337393pt;}
.yd3_c00325{bottom:376.337479pt;}
.yd0_c00325{bottom:376.337488pt;}
.yc6_c00325{bottom:376.337555pt;}
.yc9_c00325{bottom:376.337705pt;}
.yc7_c00325{bottom:376.337729pt;}
.yd1_c00325{bottom:376.337796pt;}
.yd2_c00325{bottom:376.337971pt;}
.yc3_c00325{bottom:396.976019pt;}
.yc4_c00325{bottom:396.976327pt;}
.yc5_c00325{bottom:396.976463pt;}
.yc2_c00325{bottom:396.976537pt;}
.yc1_c00325{bottom:396.976976pt;}
.ybb_c00325{bottom:396.977395pt;}
.ybf_c00325{bottom:396.977439pt;}
.yc0_c00325{bottom:396.977560pt;}
.ybd_c00325{bottom:396.977717pt;}
.ybc_c00325{bottom:396.977901pt;}
.ybe_c00325{bottom:396.978037pt;}
.yb2_c00325{bottom:417.111228pt;}
.yb8_c00325{bottom:417.111452pt;}
.yb5_c00325{bottom:417.111461pt;}
.yb9_c00325{bottom:417.111573pt;}
.yb4_c00325{bottom:417.111687pt;}
.yba_c00325{bottom:417.111748pt;}
.yb3_c00325{bottom:417.111805pt;}
.yb7_c00325{bottom:417.112036pt;}
.yb6_c00325{bottom:417.112089pt;}
.yb0_c00325{bottom:437.580363pt;}
.yb1_c00325{bottom:437.580911pt;}
.ya6_c00325{bottom:457.620531pt;}
.yaa_c00325{bottom:457.620805pt;}
.ya7_c00325{bottom:457.620892pt;}
.yab_c00325{bottom:457.621033pt;}
.ya5_c00325{bottom:457.621156pt;}
.ya9_c00325{bottom:457.621309pt;}
.yac_c00325{bottom:457.621315pt;}
.ya8_c00325{bottom:457.621321pt;}
.yad_c00325{bottom:457.621623pt;}
.yae_c00325{bottom:457.622023pt;}
.yaf_c00325{bottom:457.622105pt;}
.y9b_c00325{bottom:478.284169pt;}
.y9c_c00325{bottom:478.284744pt;}
.ya0_c00325{bottom:478.284755pt;}
.y9d_c00325{bottom:478.284987pt;}
.y9e_c00325{bottom:478.285229pt;}
.y9f_c00325{bottom:478.285259pt;}
.ya1_c00325{bottom:478.285383pt;}
.ya3_c00325{bottom:478.285812pt;}
.ya2_c00325{bottom:478.286011pt;}
.ya4_c00325{bottom:478.286467pt;}
.y9a_c00325{bottom:498.416484pt;}
.y99_c00325{bottom:498.417148pt;}
.y94_c00325{bottom:498.417341pt;}
.y96_c00325{bottom:498.417451pt;}
.y97_c00325{bottom:498.417492pt;}
.y91_c00325{bottom:498.417511pt;}
.y98_c00325{bottom:498.417533pt;}
.y93_c00325{bottom:498.417567pt;}
.y92_c00325{bottom:498.417605pt;}
.y90_c00325{bottom:498.417683pt;}
.y95_c00325{bottom:498.417729pt;}
.y8f_c00325{bottom:498.417801pt;}
.y85_c00325{bottom:518.790112pt;}
.y86_c00325{bottom:518.790408pt;}
.y87_c00325{bottom:518.790636pt;}
.y89_c00325{bottom:518.790745pt;}
.y88_c00325{bottom:518.791104pt;}
.y8a_c00325{bottom:518.791240pt;}
.y8b_c00325{bottom:518.791681pt;}
.y8d_c00325{bottom:518.791912pt;}
.y8c_c00325{bottom:518.792004pt;}
.y8e_c00325{bottom:518.792113pt;}
.y7b_c00325{bottom:538.313569pt;}
.y7c_c00325{bottom:538.628109pt;}
.y7d_c00325{bottom:538.941319pt;}
.y7e_c00325{bottom:539.601716pt;}
.y7f_c00325{bottom:540.011357pt;}
.y80_c00325{bottom:540.201017pt;}
.y81_c00325{bottom:540.526201pt;}
.y82_c00325{bottom:540.713905pt;}
.y83_c00325{bottom:541.299336pt;}
.y84_c00325{bottom:541.594631pt;}
.y79_c00325{bottom:559.752249pt;}
.y78_c00325{bottom:559.752901pt;}
.y7a_c00325{bottom:559.752904pt;}
.y76_c00325{bottom:559.753444pt;}
.y77_c00325{bottom:559.753565pt;}
.y75_c00325{bottom:559.754096pt;}
.y74_c00325{bottom:559.754627pt;}
.y73_c00325{bottom:559.754985pt;}
.y72_c00325{bottom:559.755344pt;}
.y71_c00325{bottom:559.755931pt;}
.y70_c00325{bottom:559.756103pt;}
.y68_c00325{bottom:579.912285pt;}
.y69_c00325{bottom:579.912821pt;}
.y67_c00325{bottom:579.912911pt;}
.y6d_c00325{bottom:579.913108pt;}
.y6c_c00325{bottom:579.913147pt;}
.y66_c00325{bottom:579.913201pt;}
.y65_c00325{bottom:579.913240pt;}
.y6b_c00325{bottom:579.913251pt;}
.y6a_c00325{bottom:579.913316pt;}
.y6e_c00325{bottom:579.913629pt;}
.y6f_c00325{bottom:579.913911pt;}
.y59_c00325{bottom:598.799695pt;}
.y5a_c00325{bottom:598.951428pt;}
.y5b_c00325{bottom:599.158477pt;}
.y5c_c00325{bottom:599.399345pt;}
.y5d_c00325{bottom:599.598273pt;}
.y5e_c00325{bottom:599.994448pt;}
.y5f_c00325{bottom:600.160588pt;}
.y60_c00325{bottom:600.386615pt;}
.y61_c00325{bottom:600.817855pt;}
.y62_c00325{bottom:600.935757pt;}
.y63_c00325{bottom:601.088341pt;}
.y64_c00325{bottom:601.474247pt;}
.y4d_c00325{bottom:620.616697pt;}
.y4e_c00325{bottom:620.617165pt;}
.y58_c00325{bottom:620.617220pt;}
.y50_c00325{bottom:620.617221pt;}
.y51_c00325{bottom:620.617343pt;}
.y4f_c00325{bottom:620.617367pt;}
.y52_c00325{bottom:620.617517pt;}
.y57_c00325{bottom:620.617739pt;}
.y56_c00325{bottom:620.617964pt;}
.y53_c00325{bottom:620.618172pt;}
.y55_c00325{bottom:620.618323pt;}
.y54_c00325{bottom:620.618720pt;}
.y41_c00325{bottom:639.600027pt;}
.y42_c00325{bottom:639.878959pt;}
.y43_c00325{bottom:640.173687pt;}
.y44_c00325{bottom:640.404620pt;}
.y45_c00325{bottom:640.579265pt;}
.y46_c00325{bottom:640.892896pt;}
.y47_c00325{bottom:641.030923pt;}
.y48_c00325{bottom:641.175821pt;}
.y49_c00325{bottom:641.805003pt;}
.y4a_c00325{bottom:641.907732pt;}
.y4b_c00325{bottom:642.116716pt;}
.y4c_c00325{bottom:642.257119pt;}
.y34_c00325{bottom:659.758599pt;}
.y35_c00325{bottom:660.049936pt;}
.y36_c00325{bottom:660.304108pt;}
.y37_c00325{bottom:660.469217pt;}
.y38_c00325{bottom:660.951792pt;}
.y39_c00325{bottom:661.153707pt;}
.y3a_c00325{bottom:661.388852pt;}
.y3b_c00325{bottom:661.479401pt;}
.y3c_c00325{bottom:661.704829pt;}
.y3d_c00325{bottom:662.111537pt;}
.y3e_c00325{bottom:662.210989pt;}
.y3f_c00325{bottom:662.664868pt;}
.y40_c00325{bottom:662.900589pt;}
.y28_c00325{bottom:679.198801pt;}
.y29_c00325{bottom:679.426813pt;}
.y2a_c00325{bottom:679.994737pt;}
.y2b_c00325{bottom:680.422561pt;}
.y2c_c00325{bottom:680.636197pt;}
.y2d_c00325{bottom:681.055273pt;}
.y2e_c00325{bottom:681.353569pt;}
.y2f_c00325{bottom:681.856573pt;}
.y30_c00325{bottom:682.044817pt;}
.y31_c00325{bottom:682.606393pt;}
.y32_c00325{bottom:682.910965pt;}
.y33_c00325{bottom:683.167645pt;}
.y154_c00325{bottom:683.520000pt;}
.y1b_c00325{bottom:702.683064pt;}
.y27_c00325{bottom:702.683429pt;}
.y1e_c00325{bottom:702.683535pt;}
.y1c_c00325{bottom:702.683585pt;}
.y26_c00325{bottom:702.683856pt;}
.y20_c00325{bottom:702.683937pt;}
.y1f_c00325{bottom:702.684003pt;}
.y21_c00325{bottom:702.684035pt;}
.y1d_c00325{bottom:702.684080pt;}
.y25_c00325{bottom:702.684161pt;}
.y22_c00325{bottom:702.684183pt;}
.y24_c00325{bottom:702.684772pt;}
.y23_c00325{bottom:702.684837pt;}
.yd_c00325{bottom:721.919603pt;}
.ye_c00325{bottom:722.253671pt;}
.yf_c00325{bottom:722.646175pt;}
.y10_c00325{bottom:722.735897pt;}
.y11_c00325{bottom:722.964336pt;}
.y12_c00325{bottom:723.077092pt;}
.y13_c00325{bottom:723.371080pt;}
.y14_c00325{bottom:723.505309pt;}
.y15_c00325{bottom:723.723539pt;}
.y16_c00325{bottom:723.841345pt;}
.y17_c00325{bottom:724.207961pt;}
.y18_c00325{bottom:724.363724pt;}
.y19_c00325{bottom:724.836017pt;}
.y1a_c00325{bottom:725.047877pt;}
.y1_c00325{bottom:739.921333pt;}
.y2_c00325{bottom:740.339677pt;}
.y3_c00325{bottom:740.687305pt;}
.y4_c00325{bottom:740.946649pt;}
.y5_c00325{bottom:741.352765pt;}
.y6_c00325{bottom:741.886249pt;}
.y7_c00325{bottom:742.085101pt;}
.y8_c00325{bottom:742.283893pt;}
.y9_c00325{bottom:742.840777pt;}
.ya_c00325{bottom:742.966441pt;}
.yb_c00325{bottom:743.273125pt;}
.yc_c00325{bottom:743.983381pt;}
.h12_c00325{height:19.600000pt;}
.h11_c00325{height:20.533333pt;}
.hf_c00325{height:34.533333pt;}
.h5_c00325{height:55.068897pt;}
.h6_c00325{height:56.935639pt;}
.h7_c00325{height:57.869010pt;}
.hc_c00325{height:58.802381pt;}
.h3_c00325{height:59.735752pt;}
.ha_c00325{height:60.669124pt;}
.h2_c00325{height:61.602495pt;}
.h4_c00325{height:62.535866pt;}
.h9_c00325{height:63.469237pt;}
.hd_c00325{height:64.402608pt;}
.he_c00325{height:65.335979pt;}
.hb_c00325{height:66.269350pt;}
.h8_c00325{height:67.202722pt;}
.h10_c00325{height:132.533333pt;}
.h0_c00325{height:896.400000pt;}
.h1_c00325{height:896.666667pt;}
.w0_c00325{width:618.666667pt;}
.x0_c00325{left:0.000000pt;}
.xc3_c00325{left:69.840000pt;}
.xc2_c00325{left:77.520000pt;}
.xd_c00325{left:83.607249pt;}
.x1_c00325{left:84.674667pt;}
.x3e_c00325{left:85.677736pt;}
.x1a_c00325{left:90.239568pt;}
.x24_c00325{left:96.940785pt;}
.x25_c00325{left:122.275452pt;}
.xa5_c00325{left:123.829267pt;}
.x3f_c00325{left:128.399859pt;}
.x2_c00325{left:131.157333pt;}
.x51_c00325{left:132.478495pt;}
.xab_c00325{left:133.668340pt;}
.x81_c00325{left:144.717771pt;}
.x7b_c00325{left:149.276955pt;}
.xbf_c00325{left:150.379555pt;}
.x52_c00325{left:151.438697pt;}
.x48_c00325{left:153.440863pt;}
.x1b_c00325{left:154.802121pt;}
.x86_c00325{left:155.996431pt;}
.x77_c00325{left:160.317295pt;}
.xb2_c00325{left:162.227495pt;}
.xac_c00325{left:166.069635pt;}
.x2d_c00325{left:168.076585pt;}
.x3_c00325{left:169.782667pt;}
.x5f_c00325{left:171.690540pt;}
.x1c_c00325{left:174.002348pt;}
.x36_c00325{left:181.026793pt;}
.x49_c00325{left:182.965391pt;}
.x26_c00325{left:185.378119pt;}
.xe_c00325{left:187.450455pt;}
.xa0_c00325{left:188.393257pt;}
.xad_c00325{left:189.350185pt;}
.x2e_c00325{left:191.607672pt;}
.x63_c00325{left:192.718768pt;}
.xb7_c00325{left:196.066296pt;}
.x4_c00325{left:198.598667pt;}
.xf_c00325{left:200.234683pt;}
.x6b_c00325{left:201.840181pt;}
.x1d_c00325{left:204.723499pt;}
.x53_c00325{left:209.040699pt;}
.x60_c00325{left:210.788221pt;}
.x59_c00325{left:213.601141pt;}
.x87_c00325{left:215.998624pt;}
.x4a_c00325{left:217.284669pt;}
.x37_c00325{left:219.427825pt;}
.x6c_c00325{left:222.000480pt;}
.x88_c00325{left:228.239620pt;}
.xb8_c00325{left:229.907699pt;}
.x10_c00325{left:232.876604pt;}
.xae_c00325{left:234.952548pt;}
.x64_c00325{left:238.081107pt;}
.x40_c00325{left:240.724955pt;}
.x1e_c00325{left:242.645237pt;}
.x5_c00325{left:243.722667pt;}
.x4b_c00325{left:245.610507pt;}
.x90_c00325{left:246.719159pt;}
.x11_c00325{left:248.960892pt;}
.x89_c00325{left:253.440327pt;}
.x9a_c00325{left:255.116256pt;}
.x27_c00325{left:256.651452pt;}
.xc0_c00325{left:258.863179pt;}
.x2f_c00325{left:260.487575pt;}
.x94_c00325{left:262.559204pt;}
.x41_c00325{left:264.005505pt;}
.x6d_c00325{left:264.962627pt;}
.x65_c00325{left:268.802257pt;}
.xb5_c00325{left:273.831420pt;}
.x8a_c00325{left:275.520781pt;}
.xb9_c00325{left:278.870325pt;}
.x78_c00325{left:280.561693pt;}
.xbd_c00325{left:285.830129pt;}
.x30_c00325{left:289.293424pt;}
.x12_c00325{left:290.960315pt;}
.x5a_c00325{left:292.323525pt;}
.x42_c00325{left:294.006596pt;}
.x91_c00325{left:294.960404pt;}
.x72_c00325{left:295.923644pt;}
.x9b_c00325{left:297.598367pt;}
.x66_c00325{left:299.283396pt;}
.x38_c00325{left:300.794021pt;}
.x6_c00325{left:302.998667pt;}
.x54_c00325{left:306.964631pt;}
.x6e_c00325{left:308.644833pt;}
.x13_c00325{left:310.171329pt;}
.x7c_c00325{left:312.723524pt;}
.x5b_c00325{left:315.364064pt;}
.xba_c00325{left:319.910983pt;}
.xbe_c00325{left:320.871640pt;}
.x8b_c00325{left:321.843204pt;}
.x31_c00325{left:322.828691pt;}
.x39_c00325{left:323.834645pt;}
.x7_c00325{left:325.093333pt;}
.x4c_c00325{left:326.017292pt;}
.x1f_c00325{left:327.848137pt;}
.xa6_c00325{left:328.797875pt;}
.x82_c00325{left:331.444903pt;}
.x28_c00325{left:336.359452pt;}
.x9c_c00325{left:338.880381pt;}
.x43_c00325{left:339.848971pt;}
.x14_c00325{left:341.382560pt;}
.x55_c00325{left:342.726189pt;}
.x61_c00325{left:344.497421pt;}
.x79_c00325{left:345.844319pt;}
.x8_c00325{left:347.181333pt;}
.x3a_c00325{left:348.083305pt;}
.x7d_c00325{left:349.685179pt;}
.x95_c00325{left:354.482656pt;}
.x15_c00325{left:358.176193pt;}
.x9d_c00325{left:359.280704pt;}
.x7e_c00325{left:363.606307pt;}
.x73_c00325{left:366.006653pt;}
.x32_c00325{left:368.012173pt;}
.x6f_c00325{left:369.847123pt;}
.xaf_c00325{left:370.796885pt;}
.xa7_c00325{left:374.638916pt;}
.x20_c00325{left:376.089371pt;}
.x7a_c00325{left:379.205685pt;}
.x56_c00325{left:380.647928pt;}
.x67_c00325{left:384.727641pt;}
.xa1_c00325{left:386.881349pt;}
.x92_c00325{left:389.764084pt;}
.x29_c00325{left:392.248785pt;}
.x83_c00325{left:395.047396pt;}
.xb6_c00325{left:396.474689pt;}
.x8c_c00325{left:398.645420pt;}
.x5c_c00325{left:399.606892pt;}
.x44_c00325{left:401.291284pt;}
.x70_c00325{left:403.928549pt;}
.xa2_c00325{left:405.361516pt;}
.xa8_c00325{left:407.280223pt;}
.x9_c00325{left:409.057333pt;}
.x16_c00325{left:410.467796pt;}
.x96_c00325{left:412.564693pt;}
.x21_c00325{left:414.011109pt;}
.x9e_c00325{left:415.922621pt;}
.x4d_c00325{left:420.085663pt;}
.x93_c00325{left:421.445319pt;}
.xa_c00325{left:423.020000pt;}
.x33_c00325{left:426.091884pt;}
.xbb_c00325{left:429.355851pt;}
.x84_c00325{left:431.529015pt;}
.x17_c00325{left:432.812204pt;}
.x4e_c00325{left:436.889963pt;}
.x68_c00325{left:438.249307pt;}
.x34_c00325{left:440.253469pt;}
.x45_c00325{left:443.773395pt;}
.x5d_c00325{left:446.649375pt;}
.x7f_c00325{left:450.969387pt;}
.x3b_c00325{left:452.958137pt;}
.xb_c00325{left:457.096000pt;}
.x4f_c00325{left:458.733025pt;}
.xb0_c00325{left:460.320133pt;}
.x46_c00325{left:463.453657pt;}
.xa3_c00325{left:464.643649pt;}
.x97_c00325{left:465.606323pt;}
.x57_c00325{left:468.491044pt;}
.x3c_c00325{left:470.002593pt;}
.x22_c00325{left:471.133075pt;}
.x2a_c00325{left:475.562119pt;}
.xa4_c00325{left:476.644621pt;}
.x8d_c00325{left:479.289281pt;}
.x74_c00325{left:481.210644pt;}
.xb3_c00325{left:482.160069pt;}
.x69_c00325{left:483.131609pt;}
.x85_c00325{left:485.770740pt;}
.x47_c00325{left:487.694292pt;}
.x5e_c00325{left:488.651437pt;}
.xa9_c00325{left:489.602895pt;}
.xb1_c00325{left:495.361644pt;}
.x58_c00325{left:497.292039pt;}
.x80_c00325{left:498.251881pt;}
.x18_c00325{left:500.253416pt;}
.x8e_c00325{left:502.569832pt;}
.x35_c00325{left:505.055967pt;}
.x2b_c00325{left:509.403452pt;}
.x6a_c00325{left:511.452568pt;}
.x50_c00325{left:513.908688pt;}
.x23_c00325{left:515.055305pt;}
.xaa_c00325{left:516.243721pt;}
.x75_c00325{left:517.932287pt;}
.x98_c00325{left:521.528180pt;}
.x71_c00325{left:522.492828pt;}
.x3d_c00325{left:528.084153pt;}
.xc1_c00325{left:529.144749pt;}
.x19_c00325{left:530.460623pt;}
.x8f_c00325{left:531.850875pt;}
.xc_c00325{left:536.013333pt;}
.x2c_c00325{left:537.923452pt;}
.xbc_c00325{left:539.999481pt;}
.x62_c00325{left:542.492543pt;}
.x99_c00325{left:543.608635pt;}
.x9f_c00325{left:545.287764pt;}
.x76_c00325{left:547.933377pt;}
.xb4_c00325{left:552.483103pt;}
.xc4_c00325{left:604.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mac_c00326{transform:matrix(0.008765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008765,0.000000,0.000000,0.250000,0,0);}
.m150_c00326{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_c00326{transform:matrix(0.010780,0.000086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010780,0.000086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010780,0.000086,-0.002000,0.249992,0,0);}
.me5_c00326{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);}
.ma1_c00326{transform:matrix(0.018650,-0.000131,0.001750,0.249994,0,0);-ms-transform:matrix(0.018650,-0.000131,0.001750,0.249994,0,0);-webkit-transform:matrix(0.018650,-0.000131,0.001750,0.249994,0,0);}
.m1_c00326{transform:matrix(0.063963,0.000512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.063963,0.000512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.063963,0.000512,-0.002000,0.249992,0,0);}
.m36_c00326{transform:matrix(0.086070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086070,0.000000,0.000000,0.250000,0,0);}
.m135_c00326{transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134060,0.000000,0.000000,0.250000,0,0);}
.m126_c00326{transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134570,0.000000,0.000000,0.250000,0,0);}
.m113_c00326{transform:matrix(0.141690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141690,0.000000,0.000000,0.250000,0,0);}
.m155_c00326{transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00326{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.mdf_c00326{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);}
.m6b_c00326{transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.147020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147020,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.147285,0.001178,-0.002000,0.249992,0,0);-ms-transform:matrix(0.147285,0.001178,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.147285,0.001178,-0.002000,0.249992,0,0);}
.m11e_c00326{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.151310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151310,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{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);}
.m133_c00326{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);}
.mf9_c00326{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);}
.m11f_c00326{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);}
.m30_c00326{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);}
.m11_c00326{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);}
.m5f_c00326{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.md_c00326{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);}
.ma5_c00326{transform:matrix(0.156636,-0.001096,0.001750,0.249994,0,0);-ms-transform:matrix(0.156636,-0.001096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156636,-0.001096,0.001750,0.249994,0,0);}
.m11b_c00326{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);}
.mfc_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);}
.m62_c00326{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);}
.mf1_c00326{transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);}
.m10a_c00326{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);}
.mc9_c00326{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);}
.m72_c00326{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);}
.m1e_c00326{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);}
.m10d_c00326{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);}
.m100_c00326{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);}
.m161_c00326{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);}
.m5e_c00326{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);}
.m105_c00326{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);}
.m24_c00326{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);}
.meb_c00326{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);}
.mbc_c00326{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);}
.md0_c00326{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);}
.md8_c00326{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);}
.m144_c00326{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);}
.m33_c00326{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);}
.m123_c00326{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);}
.m65_c00326{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);}
.maa_c00326{transform:matrix(0.166141,-0.001163,0.001750,0.249994,0,0);-ms-transform:matrix(0.166141,-0.001163,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166141,-0.001163,0.001750,0.249994,0,0);}
.m3a_c00326{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);}
.m103_c00326{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);}
.m166_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);}
.m102_c00326{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);}
.mea_c00326{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);}
.m61_c00326{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);}
.m32_c00326{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.mf0_c00326{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);}
.m60_c00326{transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);}
.m114_c00326{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);}
.md4_c00326{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);}
.m129_c00326{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);}
.m3b_c00326{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);}
.m7d_c00326{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);}
.m70_c00326{transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171415,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{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);}
.m110_c00326{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);}
.maf_c00326{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);}
.mfb_c00326{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);}
.mcd_c00326{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);}
.m8_c00326{transform:matrix(0.173414,0.001387,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173414,0.001387,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173414,0.001387,-0.002000,0.249992,0,0);}
.m17_c00326{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);}
.m130_c00326{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);}
.m10c_c00326{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);}
.mdc_c00326{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);}
.m12b_c00326{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);}
.mb5_c00326{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);}
.m146_c00326{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);}
.m13a_c00326{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);}
.m12e_c00326{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);}
.mca_c00326{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);}
.m14a_c00326{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);}
.m106_c00326{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);}
.m59_c00326{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);}
.m13e_c00326{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);}
.m109_c00326{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);}
.m6a_c00326{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);}
.m53_c00326{transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);}
.mf6_c00326{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);}
.me0_c00326{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);}
.m31_c00326{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);}
.m78_c00326{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);}
.m9f_c00326{transform:matrix(0.177826,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177826,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177826,-0.001245,0.001750,0.249994,0,0);}
.m2e_c00326{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);}
.m154_c00326{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);}
.md3_c00326{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_c00326{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);}
.m137_c00326{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);}
.m1d_c00326{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);}
.m23_c00326{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);}
.m55_c00326{transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);}
.me3_c00326{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);}
.m10b_c00326{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);}
.m10f_c00326{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);}
.m156_c00326{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_c00326{transform:matrix(0.179885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179885,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{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);}
.mcc_c00326{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);}
.m1f_c00326{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);}
.m25_c00326{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);}
.m63_c00326{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);}
.m162_c00326{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);}
.mf_c00326{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);}
.mff_c00326{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);}
.m29_c00326{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);}
.m12f_c00326{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);}
.m77_c00326{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);}
.m3f_c00326{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);}
.m151_c00326{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);}
.m132_c00326{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);}
.m141_c00326{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);}
.m136_c00326{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);}
.mf7_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);}
.mbd_c00326{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);}
.m49_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);}
.m1a_c00326{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{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);}
.ma9_c00326{transform:matrix(0.185390,-0.001298,0.001750,0.249994,0,0);-ms-transform:matrix(0.185390,-0.001298,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185390,-0.001298,0.001750,0.249994,0,0);}
.m164_c00326{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);}
.m1b_c00326{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);}
.m11c_c00326{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);}
.m13c_c00326{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);}
.mce_c00326{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);}
.m172_c00326{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);}
.m131_c00326{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);}
.m7f_c00326{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);}
.m64_c00326{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);}
.m21_c00326{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);}
.mf4_c00326{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);}
.m125_c00326{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);}
.m148_c00326{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);}
.m118_c00326{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);}
.med_c00326{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);}
.m107_c00326{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);}
.m10e_c00326{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);}
.m8e_c00326{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);}
.mcb_c00326{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);}
.m121_c00326{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);}
.m4e_c00326{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);}
.m128_c00326{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);}
.mb1_c00326{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);}
.mbf_c00326{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);}
.mbe_c00326{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);}
.mee_c00326{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);}
.me9_c00326{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);}
.me7_c00326{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);}
.m96_c00326{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);}
.m47_c00326{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);}
.m158_c00326{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);}
.m81_c00326{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);}
.m12a_c00326{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);}
.m153_c00326{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);}
.me1_c00326{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_c00326{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);}
.m119_c00326{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);}
.mc1_c00326{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);}
.m15f_c00326{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);}
.m168_c00326{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);}
.ma8_c00326{transform:matrix(0.194950,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.194950,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194950,-0.001365,0.001750,0.249994,0,0);}
.mef_c00326{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);}
.mcf_c00326{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);}
.m3d_c00326{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);}
.mf8_c00326{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);}
.m56_c00326{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);}
.m87_c00326{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);}
.m66_c00326{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);}
.mf3_c00326{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);}
.m16_c00326{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);}
.m69_c00326{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);}
.m16c_c00326{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);}
.m165_c00326{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);}
.mc4_c00326{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);}
.mfa_c00326{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);}
.mec_c00326{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);}
.m37_c00326{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);}
.m15e_c00326{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);}
.me8_c00326{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{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);}
.m140_c00326{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);}
.m86_c00326{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);}
.m101_c00326{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);}
.ma6_c00326{transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199950,-0.001400,0.001750,0.249994,0,0);}
.m5c_c00326{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);}
.m7a_c00326{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);}
.m34_c00326{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);}
.m124_c00326{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);}
.m39_c00326{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);}
.ma0_c00326{transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200590,-0.001404,0.001750,0.249994,0,0);}
.m147_c00326{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);}
.m15a_c00326{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);}
.m13d_c00326{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);}
.ma3_c00326{transform:matrix(0.202275,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202275,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202275,-0.001416,0.001750,0.249994,0,0);}
.ma4_c00326{transform:matrix(0.202470,-0.001417,0.001750,0.249994,0,0);-ms-transform:matrix(0.202470,-0.001417,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202470,-0.001417,0.001750,0.249994,0,0);}
.m111_c00326{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);}
.m11a_c00326{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);}
.m51_c00326{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);}
.m12_c00326{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);}
.m7c_c00326{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);}
.m134_c00326{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);}
.m16e_c00326{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.mae_c00326{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);}
.me_c00326{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);}
.m104_c00326{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);}
.m127_c00326{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);}
.m5b_c00326{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);}
.m6d_c00326{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);}
.mb8_c00326{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);}
.m122_c00326{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);}
.md5_c00326{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);}
.m4f_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);}
.m98_c00326{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m16a_c00326{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);}
.m91_c00326{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);}
.mb7_c00326{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);}
.m117_c00326{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);}
.m95_c00326{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);}
.m142_c00326{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);}
.m13b_c00326{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);}
.m152_c00326{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);}
.m116_c00326{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);}
.m2f_c00326{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);}
.m3e_c00326{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);}
.m15b_c00326{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.m16d_c00326{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);}
.mfd_c00326{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);}
.m8f_c00326{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);}
.m54_c00326{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);}
.m8b_c00326{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);}
.m50_c00326{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);}
.mb4_c00326{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);}
.m2_c00326{transform:matrix(0.212828,0.001703,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212828,0.001703,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212828,0.001703,-0.002000,0.249992,0,0);}
.m14f_c00326{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);}
.me6_c00326{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);}
.m149_c00326{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);}
.mc3_c00326{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);}
.mdb_c00326{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);}
.m71_c00326{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);}
.mc0_c00326{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);}
.m14b_c00326{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);}
.m8c_c00326{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.me2_c00326{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.mb6_c00326{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);}
.mbb_c00326{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);}
.m7b_c00326{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);}
.m76_c00326{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);}
.m28_c00326{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);}
.md1_c00326{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00326{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);}
.m160_c00326{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);}
.m8a_c00326{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);}
.m3c_c00326{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);}
.md7_c00326{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);}
.mc_c00326{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);}
.m52_c00326{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);}
.m46_c00326{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);}
.m15c_c00326{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);}
.mc7_c00326{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);}
.m9e_c00326{transform:matrix(0.223860,-0.001567,0.001750,0.249994,0,0);-ms-transform:matrix(0.223860,-0.001567,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223860,-0.001567,0.001750,0.249994,0,0);}
.mb3_c00326{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);}
.m16b_c00326{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m93_c00326{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.md9_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);}
.m157_c00326{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);}
.m170_c00326{transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{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);}
.m5a_c00326{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);}
.m139_c00326{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);}
.m85_c00326{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m14c_c00326{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);}
.mb9_c00326{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);}
.m13f_c00326{transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.mf5_c00326{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m16f_c00326{transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{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);}
.m92_c00326{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);}
.m44_c00326{transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);}
.m115_c00326{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);}
.mc5_c00326{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);}
.m15d_c00326{transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);}
.m145_c00326{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);}
.m4a_c00326{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{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);}
.m9b_c00326{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{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);}
.m19_c00326{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.250622,0.002005,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250622,0.002005,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250622,0.002005,-0.002000,0.249992,0,0);}
.mad_c00326{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);}
.m9c_c00326{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);}
.m11d_c00326{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m88_c00326{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);}
.m169_c00326{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);}
.m10_c00326{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);}
.mde_c00326{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);}
.m22_c00326{transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);}
.mda_c00326{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{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);}
.mb0_c00326{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);}
.m4b_c00326{transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);}
.mc2_c00326{transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.mc6_c00326{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.282455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282455,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.283655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283655,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.286140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286140,0.000000,0.000000,0.250000,0,0);}
.m171_c00326{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);}
.m3_c00326{transform:matrix(0.296721,0.002374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296721,0.002374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296721,0.002374,-0.002000,0.249992,0,0);}
.m26_c00326{transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297405,0.000000,0.000000,0.250000,0,0);}
.mdd_c00326{transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300435,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m12c_c00326{transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310020,0.000000,0.000000,0.250000,0,0);}
.m138_c00326{transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);}
.m112_c00326{transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311130,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324450,0.000000,0.000000,0.250000,0,0);}
.m163_c00326{transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324780,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);}
.mf2_c00326{transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331490,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m12d_c00326{transform:matrix(0.339330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339330,0.000000,0.000000,0.250000,0,0);}
.m108_c00326{transform:matrix(0.343805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343805,0.000000,0.000000,0.250000,0,0);}
.m68_c00326{transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358565,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.361833,0.002895,-0.002000,0.249992,0,0);-ms-transform:matrix(0.361833,0.002895,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.361833,0.002895,-0.002000,0.249992,0,0);}
.m89_c00326{transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365950,0.000000,0.000000,0.250000,0,0);}
.m175_c00326{transform:matrix(0.376645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376645,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.379733,0.003038,-0.002000,0.249992,0,0);-ms-transform:matrix(0.379733,0.003038,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.379733,0.003038,-0.002000,0.249992,0,0);}
.md6_c00326{transform:matrix(0.381350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381350,0.000000,0.000000,0.250000,0,0);}
.m14d_c00326{transform:matrix(0.386875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386875,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.396545,-0.002776,0.001750,0.249994,0,0);-ms-transform:matrix(0.396545,-0.002776,0.001750,0.249994,0,0);-webkit-transform:matrix(0.396545,-0.002776,0.001750,0.249994,0,0);}
.m120_c00326{transform:matrix(0.417210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417210,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.420010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420010,0.000000,0.000000,0.250000,0,0);}
.m14e_c00326{transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.428650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428650,0.000000,0.000000,0.250000,0,0);}
.m159_c00326{transform:matrix(0.428975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428975,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.441105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441105,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.442775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442775,0.000000,0.000000,0.250000,0,0);}
.m167_c00326{transform:matrix(0.444660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444660,0.000000,0.000000,0.250000,0,0);}
.m174_c00326{transform:matrix(0.452360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452360,0.000000,0.000000,0.250000,0,0);}
.mc8_c00326{transform:matrix(0.457060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457060,0.000000,0.000000,0.250000,0,0);}
.m173_c00326{transform:matrix(0.475205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475205,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.485793,-0.003401,0.001750,0.249994,0,0);-ms-transform:matrix(0.485793,-0.003401,0.001750,0.249994,0,0);-webkit-transform:matrix(0.485793,-0.003401,0.001750,0.249994,0,0);}
.me4_c00326{transform:matrix(0.487005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487005,0.000000,0.000000,0.250000,0,0);}
.m143_c00326{transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511890,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.572765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572765,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.648135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648135,0.000000,0.000000,0.250000,0,0);}
.mab_c00326{transform:matrix(0.661294,-0.004629,0.001750,0.249994,0,0);-ms-transform:matrix(0.661294,-0.004629,0.001750,0.249994,0,0);-webkit-transform:matrix(0.661294,-0.004629,0.001750,0.249994,0,0);}
.m74_c00326{transform:matrix(0.662060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662060,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.663485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663485,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.667340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667340,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.671655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671655,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.717832,0.005743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.717832,0.005743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.717832,0.005743,-0.002000,0.249992,0,0);}
.m58_c00326{transform:matrix(0.730330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730330,0.000000,0.000000,0.250000,0,0);}
.m177_c00326{transform:matrix(0.751695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751695,0.000000,0.000000,0.250000,0,0);}
.mba_c00326{transform:matrix(0.760905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760905,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.787520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787520,0.000000,0.000000,0.250000,0,0);}
.m176_c00326{transform:matrix(0.821725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821725,0.000000,0.000000,0.250000,0,0);}
.mfe_c00326{transform:matrix(0.857515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857515,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(1.039237,0.008314,-0.002000,0.249992,0,0);-ms-transform:matrix(1.039237,0.008314,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.039237,0.008314,-0.002000,0.249992,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;}
.fs11_c00326{font-size:55.650000px;}
.fs6_c00326{font-size:61.950000px;}
.fsa_c00326{font-size:63.000000px;}
.fsf_c00326{font-size:65.100000px;}
.fse_c00326{font-size:67.200000px;}
.fs10_c00326{font-size:68.250000px;}
.fsb_c00326{font-size:68.251672px;}
.fs3_c00326{font-size:69.300000px;}
.fs7_c00326{font-size:70.350000px;}
.fsc_c00326{font-size:70.351724px;}
.fs0_c00326{font-size:70.352251px;}
.fs8_c00326{font-size:71.400000px;}
.fs9_c00326{font-size:72.450000px;}
.fs5_c00326{font-size:73.500000px;}
.fs4_c00326{font-size:74.550000px;}
.fsd_c00326{font-size:87.150000px;}
.fs2_c00326{font-size:90.302890px;}
.fs1_c00326{font-size:119.703830px;}
.y0_c00326{bottom:0.000000px;}
.y5b_c00326{bottom:134.740500px;}
.y5a_c00326{bottom:161.172000px;}
.y4c_c00326{bottom:182.497500px;}
.y4d_c00326{bottom:182.751000px;}
.y4e_c00326{bottom:182.826000px;}
.y4f_c00326{bottom:183.028500px;}
.y50_c00326{bottom:183.501000px;}
.y51_c00326{bottom:183.673500px;}
.y52_c00326{bottom:183.870000px;}
.y53_c00326{bottom:184.195500px;}
.y54_c00326{bottom:184.302000px;}
.y55_c00326{bottom:184.683000px;}
.y56_c00326{bottom:184.885500px;}
.y57_c00326{bottom:185.107500px;}
.y58_c00326{bottom:185.304000px;}
.y59_c00326{bottom:185.527500px;}
.y4b_c00326{bottom:206.821500px;}
.y3e_c00326{bottom:227.070000px;}
.y3f_c00326{bottom:227.289000px;}
.y40_c00326{bottom:227.419500px;}
.y41_c00326{bottom:227.739000px;}
.y42_c00326{bottom:228.067500px;}
.y43_c00326{bottom:228.231000px;}
.y44_c00326{bottom:228.612000px;}
.y45_c00326{bottom:228.936000px;}
.y46_c00326{bottom:229.186500px;}
.y47_c00326{bottom:229.501500px;}
.y48_c00326{bottom:229.623000px;}
.y49_c00326{bottom:230.070000px;}
.y4a_c00326{bottom:230.169000px;}
.y3d_c00326{bottom:250.261500px;}
.y3c_c00326{bottom:273.774000px;}
.y2f_c00326{bottom:294.840000px;}
.y30_c00326{bottom:295.084500px;}
.y31_c00326{bottom:295.374000px;}
.y32_c00326{bottom:295.497000px;}
.y33_c00326{bottom:295.990500px;}
.y34_c00326{bottom:296.109000px;}
.y35_c00326{bottom:296.299500px;}
.y36_c00326{bottom:296.491500px;}
.y37_c00326{bottom:296.998500px;}
.y38_c00326{bottom:297.196500px;}
.y39_c00326{bottom:297.544500px;}
.y3a_c00326{bottom:297.864000px;}
.y3b_c00326{bottom:297.934500px;}
.y2e_c00326{bottom:319.621500px;}
.y2d_c00326{bottom:342.349500px;}
.y2c_c00326{bottom:364.977000px;}
.y2b_c00326{bottom:387.973500px;}
.y2a_c00326{bottom:410.125500px;}
.y29_c00326{bottom:433.318500px;}
.y28_c00326{bottom:456.556500px;}
.y27_c00326{bottom:479.242500px;}
.y26_c00326{bottom:501.913500px;}
.y25_c00326{bottom:518.727000px;}
.y1d_c00326{bottom:537.248484px;}
.y1f_c00326{bottom:537.248593px;}
.y1e_c00326{bottom:537.248683px;}
.y21_c00326{bottom:537.248783px;}
.y1c_c00326{bottom:537.249204px;}
.y20_c00326{bottom:537.249333px;}
.y22_c00326{bottom:537.249342px;}
.y23_c00326{bottom:537.249781px;}
.y24_c00326{bottom:537.250390px;}
.y17_c00326{bottom:569.430000px;}
.y18_c00326{bottom:569.688962px;}
.y19_c00326{bottom:570.091511px;}
.y1a_c00326{bottom:572.746488px;}
.y1b_c00326{bottom:573.049623px;}
.y16_c00326{bottom:592.896000px;}
.y15_c00326{bottom:615.127500px;}
.y14_c00326{bottom:638.052000px;}
.y13_c00326{bottom:661.560000px;}
.y12_c00326{bottom:683.679000px;}
.y11_c00326{bottom:706.371000px;}
.y10_c00326{bottom:729.064500px;}
.yf_c00326{bottom:751.995000px;}
.ye_c00326{bottom:775.962000px;}
.yd_c00326{bottom:797.059500px;}
.yc_c00326{bottom:820.816500px;}
.yb_c00326{bottom:848.336832px;}
.ya_c00326{bottom:848.336928px;}
.y9_c00326{bottom:848.337360px;}
.y8_c00326{bottom:865.800456px;}
.y7_c00326{bottom:865.949760px;}
.y6_c00326{bottom:867.082488px;}
.y5_c00326{bottom:867.598524px;}
.y4_c00326{bottom:868.181532px;}
.y3_c00326{bottom:869.400276px;}
.y2_c00326{bottom:887.047620px;}
.y1_c00326{bottom:891.541500px;}
.h13_c00326{height:55.650000px;}
.h8_c00326{height:61.950000px;}
.hc_c00326{height:63.000000px;}
.h11_c00326{height:65.100000px;}
.h10_c00326{height:67.200000px;}
.h12_c00326{height:68.250000px;}
.hd_c00326{height:68.251672px;}
.h5_c00326{height:69.300000px;}
.h9_c00326{height:70.350000px;}
.he_c00326{height:70.351724px;}
.h2_c00326{height:70.352251px;}
.ha_c00326{height:71.400000px;}
.hb_c00326{height:72.450000px;}
.h7_c00326{height:73.500000px;}
.h6_c00326{height:74.550000px;}
.hf_c00326{height:87.150000px;}
.h4_c00326{height:90.302890px;}
.h3_c00326{height:119.703830px;}
.h1_c00326{height:1005.000000px;}
.h0_c00326{height:1005.150000px;}
.w0_c00326{width:702.540000px;}
.w1_c00326{width:702.750000px;}
.x0_c00326{left:0.000000px;}
.x3e_c00326{left:20.790000px;}
.x4f_c00326{left:33.480000px;}
.x1_c00326{left:34.944000px;}
.x3_c00326{left:36.044952px;}
.x16_c00326{left:37.530000px;}
.x44_c00326{left:41.850000px;}
.x2f_c00326{left:50.220000px;}
.x36_c00326{left:76.410000px;}
.x17_c00326{left:79.650000px;}
.x30_c00326{left:84.240000px;}
.x61_c00326{left:85.590000px;}
.x23_c00326{left:86.670000px;}
.xb_c00326{left:87.750000px;}
.x8f_c00326{left:89.640000px;}
.x45_c00326{left:101.520000px;}
.x90_c00326{left:105.840000px;}
.xc_c00326{left:115.560000px;}
.x3f_c00326{left:118.260000px;}
.xac_c00326{left:119.610000px;}
.x24_c00326{left:121.770000px;}
.x74_c00326{left:123.487500px;}
.xc1_c00326{left:126.166500px;}
.xb8_c00326{left:128.874000px;}
.x31_c00326{left:130.410000px;}
.x62_c00326{left:133.110000px;}
.x86_c00326{left:136.620000px;}
.x50_c00326{left:138.780000px;}
.x37_c00326{left:140.940000px;}
.x7d_c00326{left:144.720000px;}
.x6b_c00326{left:147.420000px;}
.x99_c00326{left:148.770000px;}
.x77_c00326{left:150.933417px;}
.xd_c00326{left:152.280000px;}
.xcc_c00326{left:154.438500px;}
.x25_c00326{left:158.490000px;}
.x57_c00326{left:160.650000px;}
.x18_c00326{left:163.080000px;}
.x40_c00326{left:166.050000px;}
.x51_c00326{left:167.670000px;}
.x32_c00326{left:169.290000px;}
.x63_c00326{left:174.960000px;}
.xe_c00326{left:176.310000px;}
.xcd_c00326{left:178.198500px;}
.x58_c00326{left:180.900000px;}
.x46_c00326{left:181.980000px;}
.x7e_c00326{left:185.220000px;}
.x87_c00326{left:188.460000px;}
.x91_c00326{left:192.240000px;}
.x19_c00326{left:194.670000px;}
.xa7_c00326{left:197.370000px;}
.x59_c00326{left:199.260000px;}
.x6c_c00326{left:201.690000px;}
.x9f_c00326{left:202.770000px;}
.x7f_c00326{left:208.170000px;}
.x4_c00326{left:210.139344px;}
.xf_c00326{left:214.110000px;}
.xa0_c00326{left:215.730000px;}
.x6d_c00326{left:216.810000px;}
.xa8_c00326{left:219.510000px;}
.x1a_c00326{left:221.130000px;}
.xad_c00326{left:224.640000px;}
.x38_c00326{left:228.150000px;}
.x5a_c00326{left:235.170000px;}
.xc5_c00326{left:237.060000px;}
.x47_c00326{left:240.840000px;}
.x78_c00326{left:242.466401px;}
.xb0_c00326{left:243.810000px;}
.x9_c00326{left:247.058460px;}
.x1b_c00326{left:248.130000px;}
.xc7_c00326{left:253.606500px;}
.xb5_c00326{left:254.880000px;}
.x26_c00326{left:256.230000px;}
.x92_c00326{left:258.120000px;}
.x41_c00326{left:261.090000px;}
.x48_c00326{left:263.790000px;}
.x88_c00326{left:269.460000px;}
.xc6_c00326{left:271.620000px;}
.x80_c00326{left:272.970000px;}
.x27_c00326{left:274.050000px;}
.x10_c00326{left:275.940000px;}
.x52_c00326{left:278.640000px;}
.xae_c00326{left:280.530000px;}
.xc2_c00326{left:283.309500px;}
.x81_c00326{left:284.310000px;}
.x1c_c00326{left:286.200000px;}
.xb6_c00326{left:290.250000px;}
.x5_c00326{left:293.328504px;}
.x64_c00326{left:295.920000px;}
.xb9_c00326{left:299.787000px;}
.x89_c00326{left:302.130000px;}
.x28_c00326{left:305.100000px;}
.x39_c00326{left:306.450000px;}
.x6e_c00326{left:308.610000px;}
.x5b_c00326{left:312.390000px;}
.x9a_c00326{left:314.010000px;}
.xc8_c00326{left:315.138000px;}
.xb1_c00326{left:318.870000px;}
.x93_c00326{left:319.950000px;}
.x79_c00326{left:321.848786px;}
.xaf_c00326{left:324.000000px;}
.x3a_c00326{left:328.860000px;}
.x1d_c00326{left:331.020000px;}
.xa9_c00326{left:332.100000px;}
.x29_c00326{left:333.720000px;}
.x82_c00326{left:335.880000px;}
.x8a_c00326{left:341.010000px;}
.x94_c00326{left:342.360000px;}
.x49_c00326{left:343.710000px;}
.x33_c00326{left:347.490000px;}
.x11_c00326{left:352.080000px;}
.x53_c00326{left:353.700000px;}
.x3b_c00326{left:355.860000px;}
.x8b_c00326{left:359.910000px;}
.xa1_c00326{left:361.530000px;}
.xba_c00326{left:363.520500px;}
.x65_c00326{left:364.770000px;}
.x6_c00326{left:367.021092px;}
.xbc_c00326{left:368.278500px;}
.xc9_c00326{left:369.435000px;}
.x95_c00326{left:372.330000px;}
.x66_c00326{left:373.950000px;}
.x4a_c00326{left:376.110000px;}
.x1e_c00326{left:378.540000px;}
.x54_c00326{left:382.320000px;}
.xa2_c00326{left:383.400000px;}
.xca_c00326{left:387.252000px;}
.x5c_c00326{left:389.070000px;}
.xbd_c00326{left:393.928500px;}
.x2a_c00326{left:395.010000px;}
.xd0_c00326{left:396.898500px;}
.x34_c00326{left:397.980000px;}
.x6f_c00326{left:399.060000px;}
.x12_c00326{left:401.760000px;}
.x1f_c00326{left:407.970000px;}
.x7a_c00326{left:410.140112px;}
.x96_c00326{left:413.640000px;}
.xb2_c00326{left:416.880000px;}
.x5d_c00326{left:419.580000px;}
.x4b_c00326{left:421.470000px;}
.x2b_c00326{left:422.820000px;}
.x8c_c00326{left:425.520000px;}
.x70_c00326{left:433.620000px;}
.x55_c00326{left:435.240000px;}
.x9b_c00326{left:436.320000px;}
.x67_c00326{left:438.480000px;}
.x20_c00326{left:441.720000px;}
.x2c_c00326{left:445.770000px;}
.xa3_c00326{left:446.850000px;}
.x5e_c00326{left:448.470000px;}
.x3c_c00326{left:449.820000px;}
.xaa_c00326{left:450.900000px;}
.x7b_c00326{left:451.990659px;}
.x71_c00326{left:454.680000px;}
.xbf_c00326{left:460.348500px;}
.x3d_c00326{left:463.320000px;}
.x9c_c00326{left:466.290000px;}
.x42_c00326{left:469.260000px;}
.x68_c00326{left:471.420000px;}
.xab_c00326{left:475.470000px;}
.x83_c00326{left:477.630000px;}
.xbb_c00326{left:480.948000px;}
.x13_c00326{left:484.380000px;}
.x56_c00326{left:486.540000px;}
.xc0_c00326{left:488.158500px;}
.x21_c00326{left:489.510000px;}
.x8d_c00326{left:491.130000px;}
.xd1_c00326{left:492.748500px;}
.x4c_c00326{left:494.910000px;}
.xb7_c00326{left:497.610000px;}
.x7c_c00326{left:498.960000px;}
.xb3_c00326{left:502.470000px;}
.x97_c00326{left:504.360000px;}
.x2d_c00326{left:505.710000px;}
.x5f_c00326{left:507.330000px;}
.x14_c00326{left:510.300000px;}
.xce_c00326{left:512.458500px;}
.x43_c00326{left:514.350000px;}
.xa4_c00326{left:517.320000px;}
.x22_c00326{left:519.480000px;}
.x84_c00326{left:520.560000px;}
.x69_c00326{left:523.800000px;}
.x60_c00326{left:527.580000px;}
.x7_c00326{left:528.863388px;}
.xcf_c00326{left:531.898500px;}
.x2e_c00326{left:532.980000px;}
.x15_c00326{left:536.760000px;}
.xb4_c00326{left:538.650000px;}
.x4d_c00326{left:540.270000px;}
.xa5_c00326{left:542.160000px;}
.x85_c00326{left:544.320000px;}
.x72_c00326{left:547.020000px;}
.x9d_c00326{left:548.100000px;}
.x8_c00326{left:550.151556px;}
.x8e_c00326{left:551.610000px;}
.xcb_c00326{left:554.116500px;}
.x6a_c00326{left:555.120000px;}
.x75_c00326{left:560.277000px;}
.x73_c00326{left:585.630000px;}
.xc3_c00326{left:589.768500px;}
.xa_c00326{left:590.779956px;}
.x35_c00326{left:592.380000px;}
.x2_c00326{left:596.679000px;}
.xbe_c00326{left:599.128500px;}
.x76_c00326{left:603.582000px;}
.xa6_c00326{left:604.800000px;}
.xc4_c00326{left:606.249000px;}
.x98_c00326{left:607.500000px;}
.x4e_c00326{left:608.850000px;}
.x9e_c00326{left:612.900000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.fs11_c00326{font-size:49.466667pt;}
.fs6_c00326{font-size:55.066667pt;}
.fsa_c00326{font-size:56.000000pt;}
.fsf_c00326{font-size:57.866667pt;}
.fse_c00326{font-size:59.733333pt;}
.fs10_c00326{font-size:60.666667pt;}
.fsb_c00326{font-size:60.668153pt;}
.fs3_c00326{font-size:61.600000pt;}
.fs7_c00326{font-size:62.533333pt;}
.fsc_c00326{font-size:62.534865pt;}
.fs0_c00326{font-size:62.535334pt;}
.fs8_c00326{font-size:63.466667pt;}
.fs9_c00326{font-size:64.400000pt;}
.fs5_c00326{font-size:65.333333pt;}
.fs4_c00326{font-size:66.266667pt;}
.fsd_c00326{font-size:77.466667pt;}
.fs2_c00326{font-size:80.269235pt;}
.fs1_c00326{font-size:106.403405pt;}
.y0_c00326{bottom:0.000000pt;}
.y5b_c00326{bottom:119.769333pt;}
.y5a_c00326{bottom:143.264000pt;}
.y4c_c00326{bottom:162.220000pt;}
.y4d_c00326{bottom:162.445333pt;}
.y4e_c00326{bottom:162.512000pt;}
.y4f_c00326{bottom:162.692000pt;}
.y50_c00326{bottom:163.112000pt;}
.y51_c00326{bottom:163.265333pt;}
.y52_c00326{bottom:163.440000pt;}
.y53_c00326{bottom:163.729333pt;}
.y54_c00326{bottom:163.824000pt;}
.y55_c00326{bottom:164.162667pt;}
.y56_c00326{bottom:164.342667pt;}
.y57_c00326{bottom:164.540000pt;}
.y58_c00326{bottom:164.714667pt;}
.y59_c00326{bottom:164.913333pt;}
.y4b_c00326{bottom:183.841333pt;}
.y3e_c00326{bottom:201.840000pt;}
.y3f_c00326{bottom:202.034667pt;}
.y40_c00326{bottom:202.150667pt;}
.y41_c00326{bottom:202.434667pt;}
.y42_c00326{bottom:202.726667pt;}
.y43_c00326{bottom:202.872000pt;}
.y44_c00326{bottom:203.210667pt;}
.y45_c00326{bottom:203.498667pt;}
.y46_c00326{bottom:203.721333pt;}
.y47_c00326{bottom:204.001333pt;}
.y48_c00326{bottom:204.109333pt;}
.y49_c00326{bottom:204.506667pt;}
.y4a_c00326{bottom:204.594667pt;}
.y3d_c00326{bottom:222.454667pt;}
.y3c_c00326{bottom:243.354667pt;}
.y2f_c00326{bottom:262.080000pt;}
.y30_c00326{bottom:262.297333pt;}
.y31_c00326{bottom:262.554667pt;}
.y32_c00326{bottom:262.664000pt;}
.y33_c00326{bottom:263.102667pt;}
.y34_c00326{bottom:263.208000pt;}
.y35_c00326{bottom:263.377333pt;}
.y36_c00326{bottom:263.548000pt;}
.y37_c00326{bottom:263.998667pt;}
.y38_c00326{bottom:264.174667pt;}
.y39_c00326{bottom:264.484000pt;}
.y3a_c00326{bottom:264.768000pt;}
.y3b_c00326{bottom:264.830667pt;}
.y2e_c00326{bottom:284.108000pt;}
.y2d_c00326{bottom:304.310667pt;}
.y2c_c00326{bottom:324.424000pt;}
.y2b_c00326{bottom:344.865333pt;}
.y2a_c00326{bottom:364.556000pt;}
.y29_c00326{bottom:385.172000pt;}
.y28_c00326{bottom:405.828000pt;}
.y27_c00326{bottom:425.993333pt;}
.y26_c00326{bottom:446.145333pt;}
.y25_c00326{bottom:461.090667pt;}
.y1d_c00326{bottom:477.554208pt;}
.y1f_c00326{bottom:477.554305pt;}
.y1e_c00326{bottom:477.554385pt;}
.y21_c00326{bottom:477.554473pt;}
.y1c_c00326{bottom:477.554848pt;}
.y20_c00326{bottom:477.554963pt;}
.y22_c00326{bottom:477.554971pt;}
.y23_c00326{bottom:477.555361pt;}
.y24_c00326{bottom:477.555903pt;}
.y17_c00326{bottom:506.160000pt;}
.y18_c00326{bottom:506.390188pt;}
.y19_c00326{bottom:506.748009pt;}
.y1a_c00326{bottom:509.107989pt;}
.y1b_c00326{bottom:509.377443pt;}
.y16_c00326{bottom:527.018667pt;}
.y15_c00326{bottom:546.780000pt;}
.y14_c00326{bottom:567.157333pt;}
.y13_c00326{bottom:588.053333pt;}
.y12_c00326{bottom:607.714667pt;}
.y11_c00326{bottom:627.885333pt;}
.y10_c00326{bottom:648.057333pt;}
.yf_c00326{bottom:668.440000pt;}
.ye_c00326{bottom:689.744000pt;}
.yd_c00326{bottom:708.497333pt;}
.yc_c00326{bottom:729.614667pt;}
.yb_c00326{bottom:754.077184pt;}
.ya_c00326{bottom:754.077269pt;}
.y9_c00326{bottom:754.077653pt;}
.y8_c00326{bottom:769.600405pt;}
.y7_c00326{bottom:769.733120pt;}
.y6_c00326{bottom:770.739989pt;}
.y5_c00326{bottom:771.198688pt;}
.y4_c00326{bottom:771.716917pt;}
.y3_c00326{bottom:772.800245pt;}
.y2_c00326{bottom:788.486773pt;}
.y1_c00326{bottom:792.481333pt;}
.h13_c00326{height:49.466667pt;}
.h8_c00326{height:55.066667pt;}
.hc_c00326{height:56.000000pt;}
.h11_c00326{height:57.866667pt;}
.h10_c00326{height:59.733333pt;}
.h12_c00326{height:60.666667pt;}
.hd_c00326{height:60.668153pt;}
.h5_c00326{height:61.600000pt;}
.h9_c00326{height:62.533333pt;}
.he_c00326{height:62.534865pt;}
.h2_c00326{height:62.535334pt;}
.ha_c00326{height:63.466667pt;}
.hb_c00326{height:64.400000pt;}
.h7_c00326{height:65.333333pt;}
.h6_c00326{height:66.266667pt;}
.hf_c00326{height:77.466667pt;}
.h4_c00326{height:80.269235pt;}
.h3_c00326{height:106.403405pt;}
.h1_c00326{height:893.333333pt;}
.h0_c00326{height:893.466667pt;}
.w0_c00326{width:624.480000pt;}
.w1_c00326{width:624.666667pt;}
.x0_c00326{left:0.000000pt;}
.x3e_c00326{left:18.480000pt;}
.x4f_c00326{left:29.760000pt;}
.x1_c00326{left:31.061333pt;}
.x3_c00326{left:32.039957pt;}
.x16_c00326{left:33.360000pt;}
.x44_c00326{left:37.200000pt;}
.x2f_c00326{left:44.640000pt;}
.x36_c00326{left:67.920000pt;}
.x17_c00326{left:70.800000pt;}
.x30_c00326{left:74.880000pt;}
.x61_c00326{left:76.080000pt;}
.x23_c00326{left:77.040000pt;}
.xb_c00326{left:78.000000pt;}
.x8f_c00326{left:79.680000pt;}
.x45_c00326{left:90.240000pt;}
.x90_c00326{left:94.080000pt;}
.xc_c00326{left:102.720000pt;}
.x3f_c00326{left:105.120000pt;}
.xac_c00326{left:106.320000pt;}
.x24_c00326{left:108.240000pt;}
.x74_c00326{left:109.766667pt;}
.xc1_c00326{left:112.148000pt;}
.xb8_c00326{left:114.554667pt;}
.x31_c00326{left:115.920000pt;}
.x62_c00326{left:118.320000pt;}
.x86_c00326{left:121.440000pt;}
.x50_c00326{left:123.360000pt;}
.x37_c00326{left:125.280000pt;}
.x7d_c00326{left:128.640000pt;}
.x6b_c00326{left:131.040000pt;}
.x99_c00326{left:132.240000pt;}
.x77_c00326{left:134.163037pt;}
.xd_c00326{left:135.360000pt;}
.xcc_c00326{left:137.278667pt;}
.x25_c00326{left:140.880000pt;}
.x57_c00326{left:142.800000pt;}
.x18_c00326{left:144.960000pt;}
.x40_c00326{left:147.600000pt;}
.x51_c00326{left:149.040000pt;}
.x32_c00326{left:150.480000pt;}
.x63_c00326{left:155.520000pt;}
.xe_c00326{left:156.720000pt;}
.xcd_c00326{left:158.398667pt;}
.x58_c00326{left:160.800000pt;}
.x46_c00326{left:161.760000pt;}
.x7e_c00326{left:164.640000pt;}
.x87_c00326{left:167.520000pt;}
.x91_c00326{left:170.880000pt;}
.x19_c00326{left:173.040000pt;}
.xa7_c00326{left:175.440000pt;}
.x59_c00326{left:177.120000pt;}
.x6c_c00326{left:179.280000pt;}
.x9f_c00326{left:180.240000pt;}
.x7f_c00326{left:185.040000pt;}
.x4_c00326{left:186.790528pt;}
.xf_c00326{left:190.320000pt;}
.xa0_c00326{left:191.760000pt;}
.x6d_c00326{left:192.720000pt;}
.xa8_c00326{left:195.120000pt;}
.x1a_c00326{left:196.560000pt;}
.xad_c00326{left:199.680000pt;}
.x38_c00326{left:202.800000pt;}
.x5a_c00326{left:209.040000pt;}
.xc5_c00326{left:210.720000pt;}
.x47_c00326{left:214.080000pt;}
.x78_c00326{left:215.525689pt;}
.xb0_c00326{left:216.720000pt;}
.x9_c00326{left:219.607520pt;}
.x1b_c00326{left:220.560000pt;}
.xc7_c00326{left:225.428000pt;}
.xb5_c00326{left:226.560000pt;}
.x26_c00326{left:227.760000pt;}
.x92_c00326{left:229.440000pt;}
.x41_c00326{left:232.080000pt;}
.x48_c00326{left:234.480000pt;}
.x88_c00326{left:239.520000pt;}
.xc6_c00326{left:241.440000pt;}
.x80_c00326{left:242.640000pt;}
.x27_c00326{left:243.600000pt;}
.x10_c00326{left:245.280000pt;}
.x52_c00326{left:247.680000pt;}
.xae_c00326{left:249.360000pt;}
.xc2_c00326{left:251.830667pt;}
.x81_c00326{left:252.720000pt;}
.x1c_c00326{left:254.400000pt;}
.xb6_c00326{left:258.000000pt;}
.x5_c00326{left:260.736448pt;}
.x64_c00326{left:263.040000pt;}
.xb9_c00326{left:266.477333pt;}
.x89_c00326{left:268.560000pt;}
.x28_c00326{left:271.200000pt;}
.x39_c00326{left:272.400000pt;}
.x6e_c00326{left:274.320000pt;}
.x5b_c00326{left:277.680000pt;}
.x9a_c00326{left:279.120000pt;}
.xc8_c00326{left:280.122667pt;}
.xb1_c00326{left:283.440000pt;}
.x93_c00326{left:284.400000pt;}
.x79_c00326{left:286.087809pt;}
.xaf_c00326{left:288.000000pt;}
.x3a_c00326{left:292.320000pt;}
.x1d_c00326{left:294.240000pt;}
.xa9_c00326{left:295.200000pt;}
.x29_c00326{left:296.640000pt;}
.x82_c00326{left:298.560000pt;}
.x8a_c00326{left:303.120000pt;}
.x94_c00326{left:304.320000pt;}
.x49_c00326{left:305.520000pt;}
.x33_c00326{left:308.880000pt;}
.x11_c00326{left:312.960000pt;}
.x53_c00326{left:314.400000pt;}
.x3b_c00326{left:316.320000pt;}
.x8b_c00326{left:319.920000pt;}
.xa1_c00326{left:321.360000pt;}
.xba_c00326{left:323.129333pt;}
.x65_c00326{left:324.240000pt;}
.x6_c00326{left:326.240971pt;}
.xbc_c00326{left:327.358667pt;}
.xc9_c00326{left:328.386667pt;}
.x95_c00326{left:330.960000pt;}
.x66_c00326{left:332.400000pt;}
.x4a_c00326{left:334.320000pt;}
.x1e_c00326{left:336.480000pt;}
.x54_c00326{left:339.840000pt;}
.xa2_c00326{left:340.800000pt;}
.xca_c00326{left:344.224000pt;}
.x5c_c00326{left:345.840000pt;}
.xbd_c00326{left:350.158667pt;}
.x2a_c00326{left:351.120000pt;}
.xd0_c00326{left:352.798667pt;}
.x34_c00326{left:353.760000pt;}
.x6f_c00326{left:354.720000pt;}
.x12_c00326{left:357.120000pt;}
.x1f_c00326{left:362.640000pt;}
.x7a_c00326{left:364.568988pt;}
.x96_c00326{left:367.680000pt;}
.xb2_c00326{left:370.560000pt;}
.x5d_c00326{left:372.960000pt;}
.x4b_c00326{left:374.640000pt;}
.x2b_c00326{left:375.840000pt;}
.x8c_c00326{left:378.240000pt;}
.x70_c00326{left:385.440000pt;}
.x55_c00326{left:386.880000pt;}
.x9b_c00326{left:387.840000pt;}
.x67_c00326{left:389.760000pt;}
.x20_c00326{left:392.640000pt;}
.x2c_c00326{left:396.240000pt;}
.xa3_c00326{left:397.200000pt;}
.x5e_c00326{left:398.640000pt;}
.x3c_c00326{left:399.840000pt;}
.xaa_c00326{left:400.800000pt;}
.x7b_c00326{left:401.769475pt;}
.x71_c00326{left:404.160000pt;}
.xbf_c00326{left:409.198667pt;}
.x3d_c00326{left:411.840000pt;}
.x9c_c00326{left:414.480000pt;}
.x42_c00326{left:417.120000pt;}
.x68_c00326{left:419.040000pt;}
.xab_c00326{left:422.640000pt;}
.x83_c00326{left:424.560000pt;}
.xbb_c00326{left:427.509333pt;}
.x13_c00326{left:430.560000pt;}
.x56_c00326{left:432.480000pt;}
.xc0_c00326{left:433.918667pt;}
.x21_c00326{left:435.120000pt;}
.x8d_c00326{left:436.560000pt;}
.xd1_c00326{left:437.998667pt;}
.x4c_c00326{left:439.920000pt;}
.xb7_c00326{left:442.320000pt;}
.x7c_c00326{left:443.520000pt;}
.xb3_c00326{left:446.640000pt;}
.x97_c00326{left:448.320000pt;}
.x2d_c00326{left:449.520000pt;}
.x5f_c00326{left:450.960000pt;}
.x14_c00326{left:453.600000pt;}
.xce_c00326{left:455.518667pt;}
.x43_c00326{left:457.200000pt;}
.xa4_c00326{left:459.840000pt;}
.x22_c00326{left:461.760000pt;}
.x84_c00326{left:462.720000pt;}
.x69_c00326{left:465.600000pt;}
.x60_c00326{left:468.960000pt;}
.x7_c00326{left:470.100789pt;}
.xcf_c00326{left:472.798667pt;}
.x2e_c00326{left:473.760000pt;}
.x15_c00326{left:477.120000pt;}
.xb4_c00326{left:478.800000pt;}
.x4d_c00326{left:480.240000pt;}
.xa5_c00326{left:481.920000pt;}
.x85_c00326{left:483.840000pt;}
.x72_c00326{left:486.240000pt;}
.x9d_c00326{left:487.200000pt;}
.x8_c00326{left:489.023605pt;}
.x8e_c00326{left:490.320000pt;}
.xcb_c00326{left:492.548000pt;}
.x6a_c00326{left:493.440000pt;}
.x75_c00326{left:498.024000pt;}
.x73_c00326{left:520.560000pt;}
.xc3_c00326{left:524.238667pt;}
.xa_c00326{left:525.137739pt;}
.x35_c00326{left:526.560000pt;}
.x2_c00326{left:530.381333pt;}
.xbe_c00326{left:532.558667pt;}
.x76_c00326{left:536.517333pt;}
.xa6_c00326{left:537.600000pt;}
.xc4_c00326{left:538.888000pt;}
.x98_c00326{left:540.000000pt;}
.x4e_c00326{left:541.200000pt;}
.x9e_c00326{left:544.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_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_4ab86c84425994a9e06b01c2.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;}
.m137_c00327{transform:matrix(0.028094,-0.000225,0.002000,0.249992,0,0);-ms-transform:matrix(0.028094,-0.000225,0.002000,0.249992,0,0);-webkit-transform:matrix(0.028094,-0.000225,0.002000,0.249992,0,0);}
.m13b_c00327{transform:matrix(0.069693,-0.000558,0.002000,0.249992,0,0);-ms-transform:matrix(0.069693,-0.000558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.069693,-0.000558,0.002000,0.249992,0,0);}
.mb_c00327{transform:matrix(0.072715,-0.001454,0.004999,0.249950,0,0);-ms-transform:matrix(0.072715,-0.001454,0.004999,0.249950,0,0);-webkit-transform:matrix(0.072715,-0.001454,0.004999,0.249950,0,0);}
.m8_c00327{transform:matrix(0.079009,-0.001580,0.004999,0.249950,0,0);-ms-transform:matrix(0.079009,-0.001580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.079009,-0.001580,0.004999,0.249950,0,0);}
.m2d_c00327{transform:matrix(0.096156,-0.001923,0.004999,0.249950,0,0);-ms-transform:matrix(0.096156,-0.001923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.096156,-0.001923,0.004999,0.249950,0,0);}
.m164_c00327{transform:matrix(0.109115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109115,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.119056,-0.002381,0.004999,0.249950,0,0);-ms-transform:matrix(0.119056,-0.002381,0.004999,0.249950,0,0);-webkit-transform:matrix(0.119056,-0.002381,0.004999,0.249950,0,0);}
.m53_c00327{transform:matrix(0.119186,-0.002384,0.004999,0.249950,0,0);-ms-transform:matrix(0.119186,-0.002384,0.004999,0.249950,0,0);-webkit-transform:matrix(0.119186,-0.002384,0.004999,0.249950,0,0);}
.md_c00327{transform:matrix(0.127400,-0.002548,0.004999,0.249950,0,0);-ms-transform:matrix(0.127400,-0.002548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.127400,-0.002548,0.004999,0.249950,0,0);}
.m62_c00327{transform:matrix(0.135853,-0.002717,0.004999,0.249950,0,0);-ms-transform:matrix(0.135853,-0.002717,0.004999,0.249950,0,0);-webkit-transform:matrix(0.135853,-0.002717,0.004999,0.249950,0,0);}
.m120_c00327{transform:matrix(0.137235,-0.001647,0.003000,0.249982,0,0);-ms-transform:matrix(0.137235,-0.001647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137235,-0.001647,0.003000,0.249982,0,0);}
.md7_c00327{transform:matrix(0.140714,-0.002111,0.003750,0.249972,0,0);-ms-transform:matrix(0.140714,-0.002111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.140714,-0.002111,0.003750,0.249972,0,0);}
.mab_c00327{transform:matrix(0.142282,-0.002846,0.004999,0.249950,0,0);-ms-transform:matrix(0.142282,-0.002846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142282,-0.002846,0.004999,0.249950,0,0);}
.mcc_c00327{transform:matrix(0.143516,-0.002009,0.003500,0.249976,0,0);-ms-transform:matrix(0.143516,-0.002009,0.003500,0.249976,0,0);-webkit-transform:matrix(0.143516,-0.002009,0.003500,0.249976,0,0);}
.m49_c00327{transform:matrix(0.145781,-0.002916,0.004999,0.249950,0,0);-ms-transform:matrix(0.145781,-0.002916,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145781,-0.002916,0.004999,0.249950,0,0);}
.mc6_c00327{transform:matrix(0.146131,-0.002046,0.003500,0.249976,0,0);-ms-transform:matrix(0.146131,-0.002046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146131,-0.002046,0.003500,0.249976,0,0);}
.m34_c00327{transform:matrix(0.146656,-0.002933,0.004999,0.249950,0,0);-ms-transform:matrix(0.146656,-0.002933,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146656,-0.002933,0.004999,0.249950,0,0);}
.m107_c00327{transform:matrix(0.147953,-0.002219,0.003750,0.249972,0,0);-ms-transform:matrix(0.147953,-0.002219,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147953,-0.002219,0.003750,0.249972,0,0);}
.m95_c00327{transform:matrix(0.148115,-0.002962,0.004999,0.249950,0,0);-ms-transform:matrix(0.148115,-0.002962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148115,-0.002962,0.004999,0.249950,0,0);}
.mca_c00327{transform:matrix(0.151465,-0.002121,0.003500,0.249976,0,0);-ms-transform:matrix(0.151465,-0.002121,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151465,-0.002121,0.003500,0.249976,0,0);}
.m148_c00327{transform:matrix(0.152655,-0.001221,0.002000,0.249992,0,0);-ms-transform:matrix(0.152655,-0.001221,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152655,-0.001221,0.002000,0.249992,0,0);}
.m4a_c00327{transform:matrix(0.152814,-0.003056,0.004999,0.249950,0,0);-ms-transform:matrix(0.152814,-0.003056,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152814,-0.003056,0.004999,0.249950,0,0);}
.md2_c00327{transform:matrix(0.153663,-0.002305,0.003750,0.249972,0,0);-ms-transform:matrix(0.153663,-0.002305,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153663,-0.002305,0.003750,0.249972,0,0);}
.m9c_c00327{transform:matrix(0.153694,-0.003074,0.004999,0.249950,0,0);-ms-transform:matrix(0.153694,-0.003074,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153694,-0.003074,0.004999,0.249950,0,0);}
.m44_c00327{transform:matrix(0.154219,-0.003084,0.004999,0.249950,0,0);-ms-transform:matrix(0.154219,-0.003084,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154219,-0.003084,0.004999,0.249950,0,0);}
.m14a_c00327{transform:matrix(0.154280,-0.001234,0.002000,0.249992,0,0);-ms-transform:matrix(0.154280,-0.001234,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154280,-0.001234,0.002000,0.249992,0,0);}
.m10d_c00327{transform:matrix(0.154658,-0.002320,0.003750,0.249972,0,0);-ms-transform:matrix(0.154658,-0.002320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154658,-0.002320,0.003750,0.249972,0,0);}
.m12e_c00327{transform:matrix(0.155340,-0.001243,0.002000,0.249992,0,0);-ms-transform:matrix(0.155340,-0.001243,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155340,-0.001243,0.002000,0.249992,0,0);}
.m31_c00327{transform:matrix(0.156414,-0.003128,0.004999,0.249950,0,0);-ms-transform:matrix(0.156414,-0.003128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156414,-0.003128,0.004999,0.249950,0,0);}
.m4e_c00327{transform:matrix(0.157269,-0.003145,0.004999,0.249950,0,0);-ms-transform:matrix(0.157269,-0.003145,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157269,-0.003145,0.004999,0.249950,0,0);}
.m7a_c00327{transform:matrix(0.157538,-0.003151,0.004999,0.249950,0,0);-ms-transform:matrix(0.157538,-0.003151,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157538,-0.003151,0.004999,0.249950,0,0);}
.m45_c00327{transform:matrix(0.157633,-0.003153,0.004999,0.249950,0,0);-ms-transform:matrix(0.157633,-0.003153,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157633,-0.003153,0.004999,0.249950,0,0);}
.m50_c00327{transform:matrix(0.157963,-0.003159,0.004999,0.249950,0,0);-ms-transform:matrix(0.157963,-0.003159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157963,-0.003159,0.004999,0.249950,0,0);}
.mf1_c00327{transform:matrix(0.157987,-0.002370,0.003750,0.249972,0,0);-ms-transform:matrix(0.157987,-0.002370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157987,-0.002370,0.003750,0.249972,0,0);}
.m0_c00327{transform:matrix(0.158448,-0.003169,0.004999,0.249950,0,0);-ms-transform:matrix(0.158448,-0.003169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158448,-0.003169,0.004999,0.249950,0,0);}
.m135_c00327{transform:matrix(0.159100,-0.001273,0.002000,0.249992,0,0);-ms-transform:matrix(0.159100,-0.001273,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159100,-0.001273,0.002000,0.249992,0,0);}
.m65_c00327{transform:matrix(0.159303,-0.003186,0.004999,0.249950,0,0);-ms-transform:matrix(0.159303,-0.003186,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159303,-0.003186,0.004999,0.249950,0,0);}
.m4b_c00327{transform:matrix(0.159328,-0.003187,0.004999,0.249950,0,0);-ms-transform:matrix(0.159328,-0.003187,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159328,-0.003187,0.004999,0.249950,0,0);}
.m40_c00327{transform:matrix(0.159753,-0.003195,0.004999,0.249950,0,0);-ms-transform:matrix(0.159753,-0.003195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159753,-0.003195,0.004999,0.249950,0,0);}
.m81_c00327{transform:matrix(0.160488,-0.003210,0.004999,0.249950,0,0);-ms-transform:matrix(0.160488,-0.003210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160488,-0.003210,0.004999,0.249950,0,0);}
.m5c_c00327{transform:matrix(0.161068,-0.003221,0.004999,0.249950,0,0);-ms-transform:matrix(0.161068,-0.003221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161068,-0.003221,0.004999,0.249950,0,0);}
.mec_c00327{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);}
.mb4_c00327{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);}
.m79_c00327{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);}
.mda_c00327{transform:matrix(0.161612,-0.002424,0.003750,0.249972,0,0);-ms-transform:matrix(0.161612,-0.002424,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161612,-0.002424,0.003750,0.249972,0,0);}
.m88_c00327{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);}
.mb0_c00327{transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);-ms-transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162617,-0.003252,0.004999,0.249950,0,0);}
.m4c_c00327{transform:matrix(0.163032,-0.003261,0.004999,0.249950,0,0);-ms-transform:matrix(0.163032,-0.003261,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163032,-0.003261,0.004999,0.249950,0,0);}
.m143_c00327{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);}
.m133_c00327{transform:matrix(0.163570,-0.001309,0.002000,0.249992,0,0);-ms-transform:matrix(0.163570,-0.001309,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163570,-0.001309,0.002000,0.249992,0,0);}
.m10b_c00327{transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);-ms-transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163937,-0.002459,0.003750,0.249972,0,0);}
.m7c_c00327{transform:matrix(0.164617,-0.003292,0.004999,0.249950,0,0);-ms-transform:matrix(0.164617,-0.003292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164617,-0.003292,0.004999,0.249950,0,0);}
.m9d_c00327{transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);-ms-transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164777,-0.003296,0.004999,0.249950,0,0);}
.mc9_c00327{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);}
.m2f_c00327{transform:matrix(0.164872,-0.003297,0.004999,0.249950,0,0);-ms-transform:matrix(0.164872,-0.003297,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164872,-0.003297,0.004999,0.249950,0,0);}
.m63_c00327{transform:matrix(0.165177,-0.003304,0.004999,0.249950,0,0);-ms-transform:matrix(0.165177,-0.003304,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165177,-0.003304,0.004999,0.249950,0,0);}
.mf5_c00327{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);}
.mdc_c00327{transform:matrix(0.166221,-0.002493,0.003750,0.249972,0,0);-ms-transform:matrix(0.166221,-0.002493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166221,-0.002493,0.003750,0.249972,0,0);}
.mce_c00327{transform:matrix(0.166336,-0.002495,0.003750,0.249972,0,0);-ms-transform:matrix(0.166336,-0.002495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166336,-0.002495,0.003750,0.249972,0,0);}
.m30_c00327{transform:matrix(0.166472,-0.003329,0.004999,0.249950,0,0);-ms-transform:matrix(0.166472,-0.003329,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166472,-0.003329,0.004999,0.249950,0,0);}
.m14d_c00327{transform:matrix(0.166890,-0.001335,0.002000,0.249992,0,0);-ms-transform:matrix(0.166890,-0.001335,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166890,-0.001335,0.002000,0.249992,0,0);}
.m29_c00327{transform:matrix(0.166922,-0.003338,0.004999,0.249950,0,0);-ms-transform:matrix(0.166922,-0.003338,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166922,-0.003338,0.004999,0.249950,0,0);}
.m9b_c00327{transform:matrix(0.167042,-0.003341,0.004999,0.249950,0,0);-ms-transform:matrix(0.167042,-0.003341,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167042,-0.003341,0.004999,0.249950,0,0);}
.m3e_c00327{transform:matrix(0.168411,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168411,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168411,-0.003368,0.004999,0.249950,0,0);}
.m7b_c00327{transform:matrix(0.168486,-0.003370,0.004999,0.249950,0,0);-ms-transform:matrix(0.168486,-0.003370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168486,-0.003370,0.004999,0.249950,0,0);}
.ma8_c00327{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);}
.m132_c00327{transform:matrix(0.168995,-0.001352,0.002000,0.249992,0,0);-ms-transform:matrix(0.168995,-0.001352,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168995,-0.001352,0.002000,0.249992,0,0);}
.m150_c00327{transform:matrix(0.169785,-0.001358,0.002000,0.249992,0,0);-ms-transform:matrix(0.169785,-0.001358,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169785,-0.001358,0.002000,0.249992,0,0);}
.m111_c00327{transform:matrix(0.170721,-0.002561,0.003750,0.249972,0,0);-ms-transform:matrix(0.170721,-0.002561,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170721,-0.002561,0.003750,0.249972,0,0);}
.m41_c00327{transform:matrix(0.171246,-0.003425,0.004999,0.249950,0,0);-ms-transform:matrix(0.171246,-0.003425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171246,-0.003425,0.004999,0.249950,0,0);}
.m46_c00327{transform:matrix(0.171361,-0.003427,0.004999,0.249950,0,0);-ms-transform:matrix(0.171361,-0.003427,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171361,-0.003427,0.004999,0.249950,0,0);}
.mf0_c00327{transform:matrix(0.171446,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171446,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171446,-0.002572,0.003750,0.249972,0,0);}
.m162_c00327{transform:matrix(0.172134,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172134,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172134,-0.001377,0.002000,0.249992,0,0);}
.me4_c00327{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);}
.m125_c00327{transform:matrix(0.172478,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172478,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172478,-0.002070,0.003000,0.249982,0,0);}
.mc5_c00327{transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);-ms-transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);}
.m12b_c00327{transform:matrix(0.172813,-0.002074,0.003000,0.249982,0,0);-ms-transform:matrix(0.172813,-0.002074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172813,-0.002074,0.003000,0.249982,0,0);}
.m51_c00327{transform:matrix(0.172835,-0.003457,0.004999,0.249950,0,0);-ms-transform:matrix(0.172835,-0.003457,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172835,-0.003457,0.004999,0.249950,0,0);}
.m11e_c00327{transform:matrix(0.173158,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173158,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173158,-0.002078,0.003000,0.249982,0,0);}
.m7f_c00327{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);}
.m27_c00327{transform:matrix(0.173365,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173365,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173365,-0.003467,0.004999,0.249950,0,0);}
.m122_c00327{transform:matrix(0.173627,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173627,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173627,-0.002084,0.003000,0.249982,0,0);}
.m105_c00327{transform:matrix(0.173685,-0.002605,0.003750,0.249972,0,0);-ms-transform:matrix(0.173685,-0.002605,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173685,-0.002605,0.003750,0.249972,0,0);}
.mf7_c00327{transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173780,-0.002607,0.003750,0.249972,0,0);}
.m20_c00327{transform:matrix(0.173875,-0.003478,0.004999,0.249950,0,0);-ms-transform:matrix(0.173875,-0.003478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173875,-0.003478,0.004999,0.249950,0,0);}
.m15e_c00327{transform:matrix(0.173919,-0.001391,0.002000,0.249992,0,0);-ms-transform:matrix(0.173919,-0.001391,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173919,-0.001391,0.002000,0.249992,0,0);}
.m128_c00327{transform:matrix(0.174007,-0.002088,0.003000,0.249982,0,0);-ms-transform:matrix(0.174007,-0.002088,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174007,-0.002088,0.003000,0.249982,0,0);}
.me1_c00327{transform:matrix(0.174275,-0.002614,0.003750,0.249972,0,0);-ms-transform:matrix(0.174275,-0.002614,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174275,-0.002614,0.003750,0.249972,0,0);}
.m69_c00327{transform:matrix(0.174490,-0.003490,0.004999,0.249950,0,0);-ms-transform:matrix(0.174490,-0.003490,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174490,-0.003490,0.004999,0.249950,0,0);}
.m23_c00327{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);}
.mdb_c00327{transform:matrix(0.174855,-0.002623,0.003750,0.249972,0,0);-ms-transform:matrix(0.174855,-0.002623,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174855,-0.002623,0.003750,0.249972,0,0);}
.m102_c00327{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);}
.m136_c00327{transform:matrix(0.175024,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.175024,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175024,-0.001400,0.002000,0.249992,0,0);}
.m5f_c00327{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);}
.m57_c00327{transform:matrix(0.175155,-0.003503,0.004999,0.249950,0,0);-ms-transform:matrix(0.175155,-0.003503,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175155,-0.003503,0.004999,0.249950,0,0);}
.me7_c00327{transform:matrix(0.175990,-0.002640,0.003750,0.249972,0,0);-ms-transform:matrix(0.175990,-0.002640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175990,-0.002640,0.003750,0.249972,0,0);}
.mfb_c00327{transform:matrix(0.176275,-0.002644,0.003750,0.249972,0,0);-ms-transform:matrix(0.176275,-0.002644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176275,-0.002644,0.003750,0.249972,0,0);}
.m8d_c00327{transform:matrix(0.176345,-0.003527,0.004999,0.249950,0,0);-ms-transform:matrix(0.176345,-0.003527,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176345,-0.003527,0.004999,0.249950,0,0);}
.mc3_c00327{transform:matrix(0.176488,-0.002471,0.003500,0.249976,0,0);-ms-transform:matrix(0.176488,-0.002471,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176488,-0.002471,0.003500,0.249976,0,0);}
.m8c_c00327{transform:matrix(0.176725,-0.003534,0.004999,0.249950,0,0);-ms-transform:matrix(0.176725,-0.003534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176725,-0.003534,0.004999,0.249950,0,0);}
.m12c_c00327{transform:matrix(0.176739,-0.001414,0.002000,0.249992,0,0);-ms-transform:matrix(0.176739,-0.001414,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176739,-0.001414,0.002000,0.249992,0,0);}
.m151_c00327{transform:matrix(0.176774,-0.001414,0.002000,0.249992,0,0);-ms-transform:matrix(0.176774,-0.001414,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176774,-0.001414,0.002000,0.249992,0,0);}
.mdd_c00327{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);}
.m67_c00327{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);}
.md1_c00327{transform:matrix(0.177010,-0.002655,0.003750,0.249972,0,0);-ms-transform:matrix(0.177010,-0.002655,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177010,-0.002655,0.003750,0.249972,0,0);}
.m119_c00327{transform:matrix(0.177292,-0.002128,0.003000,0.249982,0,0);-ms-transform:matrix(0.177292,-0.002128,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177292,-0.002128,0.003000,0.249982,0,0);}
.m77_c00327{transform:matrix(0.177325,-0.003546,0.004999,0.249950,0,0);-ms-transform:matrix(0.177325,-0.003546,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177325,-0.003546,0.004999,0.249950,0,0);}
.m22_c00327{transform:matrix(0.177380,-0.003548,0.004999,0.249950,0,0);-ms-transform:matrix(0.177380,-0.003548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177380,-0.003548,0.004999,0.249950,0,0);}
.mc7_c00327{transform:matrix(0.177433,-0.002484,0.003500,0.249976,0,0);-ms-transform:matrix(0.177433,-0.002484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177433,-0.002484,0.003500,0.249976,0,0);}
.md0_c00327{transform:matrix(0.177500,-0.002663,0.003750,0.249972,0,0);-ms-transform:matrix(0.177500,-0.002663,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177500,-0.002663,0.003750,0.249972,0,0);}
.m110_c00327{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);}
.m104_c00327{transform:matrix(0.177800,-0.002667,0.003750,0.249972,0,0);-ms-transform:matrix(0.177800,-0.002667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177800,-0.002667,0.003750,0.249972,0,0);}
.m39_c00327{transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);-ms-transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);}
.mcf_c00327{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);}
.m91_c00327{transform:matrix(0.178864,-0.003577,0.004999,0.249950,0,0);-ms-transform:matrix(0.178864,-0.003577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178864,-0.003577,0.004999,0.249950,0,0);}
.mfc_c00327{transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);-ms-transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);}
.mc0_c00327{transform:matrix(0.179012,-0.002506,0.003500,0.249976,0,0);-ms-transform:matrix(0.179012,-0.002506,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179012,-0.002506,0.003500,0.249976,0,0);}
.mae_c00327{transform:matrix(0.179249,-0.003585,0.004999,0.249950,0,0);-ms-transform:matrix(0.179249,-0.003585,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179249,-0.003585,0.004999,0.249950,0,0);}
.m3f_c00327{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);}
.m80_c00327{transform:matrix(0.180309,-0.003606,0.004999,0.249950,0,0);-ms-transform:matrix(0.180309,-0.003606,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180309,-0.003606,0.004999,0.249950,0,0);}
.ma9_c00327{transform:matrix(0.180369,-0.003607,0.004999,0.249950,0,0);-ms-transform:matrix(0.180369,-0.003607,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180369,-0.003607,0.004999,0.249950,0,0);}
.m71_c00327{transform:matrix(0.180399,-0.003608,0.004999,0.249950,0,0);-ms-transform:matrix(0.180399,-0.003608,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180399,-0.003608,0.004999,0.249950,0,0);}
.m7e_c00327{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);}
.mf4_c00327{transform:matrix(0.181010,-0.002715,0.003750,0.249972,0,0);-ms-transform:matrix(0.181010,-0.002715,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181010,-0.002715,0.003750,0.249972,0,0);}
.me6_c00327{transform:matrix(0.181150,-0.002717,0.003750,0.249972,0,0);-ms-transform:matrix(0.181150,-0.002717,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181150,-0.002717,0.003750,0.249972,0,0);}
.mfd_c00327{transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);-ms-transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181380,-0.002721,0.003750,0.249972,0,0);}
.mc8_c00327{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);}
.m101_c00327{transform:matrix(0.181650,-0.002725,0.003750,0.249972,0,0);-ms-transform:matrix(0.181650,-0.002725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181650,-0.002725,0.003750,0.249972,0,0);}
.me3_c00327{transform:matrix(0.181805,-0.002727,0.003750,0.249972,0,0);-ms-transform:matrix(0.181805,-0.002727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181805,-0.002727,0.003750,0.249972,0,0);}
.m154_c00327{transform:matrix(0.181839,-0.001455,0.002000,0.249992,0,0);-ms-transform:matrix(0.181839,-0.001455,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181839,-0.001455,0.002000,0.249992,0,0);}
.mee_c00327{transform:matrix(0.181850,-0.002728,0.003750,0.249972,0,0);-ms-transform:matrix(0.181850,-0.002728,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181850,-0.002728,0.003750,0.249972,0,0);}
.m129_c00327{transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);-ms-transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182562,-0.002191,0.003000,0.249982,0,0);}
.m134_c00327{transform:matrix(0.182579,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182579,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182579,-0.001461,0.002000,0.249992,0,0);}
.m78_c00327{transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);-ms-transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182668,-0.003653,0.004999,0.249950,0,0);}
.m2c_c00327{transform:matrix(0.183323,-0.003666,0.004999,0.249950,0,0);-ms-transform:matrix(0.183323,-0.003666,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183323,-0.003666,0.004999,0.249950,0,0);}
.m85_c00327{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);}
.m100_c00327{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);}
.m6e_c00327{transform:matrix(0.183623,-0.003672,0.004999,0.249950,0,0);-ms-transform:matrix(0.183623,-0.003672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183623,-0.003672,0.004999,0.249950,0,0);}
.m2a_c00327{transform:matrix(0.183973,-0.003679,0.004999,0.249950,0,0);-ms-transform:matrix(0.183973,-0.003679,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183973,-0.003679,0.004999,0.249950,0,0);}
.med_c00327{transform:matrix(0.184384,-0.002766,0.003750,0.249972,0,0);-ms-transform:matrix(0.184384,-0.002766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184384,-0.002766,0.003750,0.249972,0,0);}
.mde_c00327{transform:matrix(0.184524,-0.002768,0.003750,0.249972,0,0);-ms-transform:matrix(0.184524,-0.002768,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184524,-0.002768,0.003750,0.249972,0,0);}
.m98_c00327{transform:matrix(0.184563,-0.003691,0.004999,0.249950,0,0);-ms-transform:matrix(0.184563,-0.003691,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184563,-0.003691,0.004999,0.249950,0,0);}
.mb3_c00327{transform:matrix(0.184823,-0.003696,0.004999,0.249950,0,0);-ms-transform:matrix(0.184823,-0.003696,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184823,-0.003696,0.004999,0.249950,0,0);}
.m15a_c00327{transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);-ms-transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184854,-0.001479,0.002000,0.249992,0,0);}
.m114_c00327{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);}
.m9e_c00327{transform:matrix(0.185013,-0.003700,0.004999,0.249950,0,0);-ms-transform:matrix(0.185013,-0.003700,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185013,-0.003700,0.004999,0.249950,0,0);}
.m8f_c00327{transform:matrix(0.185398,-0.003708,0.004999,0.249950,0,0);-ms-transform:matrix(0.185398,-0.003708,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185398,-0.003708,0.004999,0.249950,0,0);}
.m2e_c00327{transform:matrix(0.185483,-0.003710,0.004999,0.249950,0,0);-ms-transform:matrix(0.185483,-0.003710,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185483,-0.003710,0.004999,0.249950,0,0);}
.ma0_c00327{transform:matrix(0.185698,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185698,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185698,-0.003714,0.004999,0.249950,0,0);}
.m99_c00327{transform:matrix(0.185738,-0.003715,0.004999,0.249950,0,0);-ms-transform:matrix(0.185738,-0.003715,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185738,-0.003715,0.004999,0.249950,0,0);}
.mfe_c00327{transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);-ms-transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);}
.m76_c00327{transform:matrix(0.185798,-0.003716,0.004999,0.249950,0,0);-ms-transform:matrix(0.185798,-0.003716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185798,-0.003716,0.004999,0.249950,0,0);}
.m153_c00327{transform:matrix(0.186199,-0.001490,0.002000,0.249992,0,0);-ms-transform:matrix(0.186199,-0.001490,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186199,-0.001490,0.002000,0.249992,0,0);}
.me2_c00327{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);}
.m15_c00327{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);}
.me8_c00327{transform:matrix(0.186859,-0.002803,0.003750,0.249972,0,0);-ms-transform:matrix(0.186859,-0.002803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186859,-0.002803,0.003750,0.249972,0,0);}
.me5_c00327{transform:matrix(0.187064,-0.002806,0.003750,0.249972,0,0);-ms-transform:matrix(0.187064,-0.002806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187064,-0.002806,0.003750,0.249972,0,0);}
.mef_c00327{transform:matrix(0.187329,-0.002810,0.003750,0.249972,0,0);-ms-transform:matrix(0.187329,-0.002810,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187329,-0.002810,0.003750,0.249972,0,0);}
.m33_c00327{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);}
.maf_c00327{transform:matrix(0.187722,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187722,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187722,-0.003754,0.004999,0.249950,0,0);}
.m14f_c00327{transform:matrix(0.187869,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187869,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187869,-0.001503,0.002000,0.249992,0,0);}
.m3b_c00327{transform:matrix(0.188327,-0.003767,0.004999,0.249950,0,0);-ms-transform:matrix(0.188327,-0.003767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188327,-0.003767,0.004999,0.249950,0,0);}
.m37_c00327{transform:matrix(0.188382,-0.003768,0.004999,0.249950,0,0);-ms-transform:matrix(0.188382,-0.003768,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188382,-0.003768,0.004999,0.249950,0,0);}
.m42_c00327{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);}
.ma5_c00327{transform:matrix(0.188517,-0.003770,0.004999,0.249950,0,0);-ms-transform:matrix(0.188517,-0.003770,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188517,-0.003770,0.004999,0.249950,0,0);}
.m38_c00327{transform:matrix(0.188757,-0.003775,0.004999,0.249950,0,0);-ms-transform:matrix(0.188757,-0.003775,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188757,-0.003775,0.004999,0.249950,0,0);}
.m159_c00327{transform:matrix(0.188804,-0.001510,0.002000,0.249992,0,0);-ms-transform:matrix(0.188804,-0.001510,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188804,-0.001510,0.002000,0.249992,0,0);}
.md5_c00327{transform:matrix(0.188934,-0.002834,0.003750,0.249972,0,0);-ms-transform:matrix(0.188934,-0.002834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188934,-0.002834,0.003750,0.249972,0,0);}
.mf2_c00327{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);}
.m6c_c00327{transform:matrix(0.189172,-0.003783,0.004999,0.249950,0,0);-ms-transform:matrix(0.189172,-0.003783,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189172,-0.003783,0.004999,0.249950,0,0);}
.md4_c00327{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);}
.m25_c00327{transform:matrix(0.189672,-0.003793,0.004999,0.249950,0,0);-ms-transform:matrix(0.189672,-0.003793,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189672,-0.003793,0.004999,0.249950,0,0);}
.m35_c00327{transform:matrix(0.190222,-0.003804,0.004999,0.249950,0,0);-ms-transform:matrix(0.190222,-0.003804,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190222,-0.003804,0.004999,0.249950,0,0);}
.m94_c00327{transform:matrix(0.190497,-0.003810,0.004999,0.249950,0,0);-ms-transform:matrix(0.190497,-0.003810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190497,-0.003810,0.004999,0.249950,0,0);}
.m11b_c00327{transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190756,-0.002289,0.003000,0.249982,0,0);}
.m2b_c00327{transform:matrix(0.190822,-0.003816,0.004999,0.249950,0,0);-ms-transform:matrix(0.190822,-0.003816,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190822,-0.003816,0.004999,0.249950,0,0);}
.ma7_c00327{transform:matrix(0.191322,-0.003826,0.004999,0.249950,0,0);-ms-transform:matrix(0.191322,-0.003826,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191322,-0.003826,0.004999,0.249950,0,0);}
.m9a_c00327{transform:matrix(0.191532,-0.003831,0.004999,0.249950,0,0);-ms-transform:matrix(0.191532,-0.003831,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191532,-0.003831,0.004999,0.249950,0,0);}
.m4d_c00327{transform:matrix(0.191612,-0.003832,0.004999,0.249950,0,0);-ms-transform:matrix(0.191612,-0.003832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191612,-0.003832,0.004999,0.249950,0,0);}
.m74_c00327{transform:matrix(0.192207,-0.003844,0.004999,0.249950,0,0);-ms-transform:matrix(0.192207,-0.003844,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192207,-0.003844,0.004999,0.249950,0,0);}
.m103_c00327{transform:matrix(0.192823,-0.002892,0.003750,0.249972,0,0);-ms-transform:matrix(0.192823,-0.002892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192823,-0.002892,0.003750,0.249972,0,0);}
.m58_c00327{transform:matrix(0.192876,-0.003858,0.004999,0.249950,0,0);-ms-transform:matrix(0.192876,-0.003858,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192876,-0.003858,0.004999,0.249950,0,0);}
.m6a_c00327{transform:matrix(0.192911,-0.003858,0.004999,0.249950,0,0);-ms-transform:matrix(0.192911,-0.003858,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192911,-0.003858,0.004999,0.249950,0,0);}
.m6b_c00327{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);}
.mc4_c00327{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);}
.mbf_c00327{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);}
.m3c_c00327{transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);-ms-transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);}
.m82_c00327{transform:matrix(0.194781,-0.003896,0.004999,0.249950,0,0);-ms-transform:matrix(0.194781,-0.003896,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194781,-0.003896,0.004999,0.249950,0,0);}
.m15f_c00327{transform:matrix(0.194799,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194799,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194799,-0.001558,0.002000,0.249992,0,0);}
.m6d_c00327{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);}
.m86_c00327{transform:matrix(0.195311,-0.003906,0.004999,0.249950,0,0);-ms-transform:matrix(0.195311,-0.003906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195311,-0.003906,0.004999,0.249950,0,0);}
.m10f_c00327{transform:matrix(0.195383,-0.002931,0.003750,0.249972,0,0);-ms-transform:matrix(0.195383,-0.002931,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195383,-0.002931,0.003750,0.249972,0,0);}
.m52_c00327{transform:matrix(0.195476,-0.003910,0.004999,0.249950,0,0);-ms-transform:matrix(0.195476,-0.003910,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195476,-0.003910,0.004999,0.249950,0,0);}
.m7d_c00327{transform:matrix(0.195661,-0.003913,0.004999,0.249950,0,0);-ms-transform:matrix(0.195661,-0.003913,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195661,-0.003913,0.004999,0.249950,0,0);}
.m5d_c00327{transform:matrix(0.196561,-0.003931,0.004999,0.249950,0,0);-ms-transform:matrix(0.196561,-0.003931,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196561,-0.003931,0.004999,0.249950,0,0);}
.m108_c00327{transform:matrix(0.196578,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196578,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196578,-0.002949,0.003750,0.249972,0,0);}
.m121_c00327{transform:matrix(0.196736,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196736,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196736,-0.002361,0.003000,0.249982,0,0);}
.me0_c00327{transform:matrix(0.196818,-0.002952,0.003750,0.249972,0,0);-ms-transform:matrix(0.196818,-0.002952,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196818,-0.002952,0.003750,0.249972,0,0);}
.m48_c00327{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);}
.m158_c00327{transform:matrix(0.198009,-0.001584,0.002000,0.249992,0,0);-ms-transform:matrix(0.198009,-0.001584,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198009,-0.001584,0.002000,0.249992,0,0);}
.mff_c00327{transform:matrix(0.198063,-0.002971,0.003750,0.249972,0,0);-ms-transform:matrix(0.198063,-0.002971,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198063,-0.002971,0.003750,0.249972,0,0);}
.m117_c00327{transform:matrix(0.198076,-0.002377,0.003000,0.249982,0,0);-ms-transform:matrix(0.198076,-0.002377,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198076,-0.002377,0.003000,0.249982,0,0);}
.m60_c00327{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);}
.md3_c00327{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);}
.m24_c00327{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);}
.m1f_c00327{transform:matrix(0.198270,-0.003965,0.004999,0.249950,0,0);-ms-transform:matrix(0.198270,-0.003965,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198270,-0.003965,0.004999,0.249950,0,0);}
.mac_c00327{transform:matrix(0.198715,-0.003974,0.004999,0.249950,0,0);-ms-transform:matrix(0.198715,-0.003974,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198715,-0.003974,0.004999,0.249950,0,0);}
.m147_c00327{transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);}
.m118_c00327{transform:matrix(0.199061,-0.002389,0.003000,0.249982,0,0);-ms-transform:matrix(0.199061,-0.002389,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199061,-0.002389,0.003000,0.249982,0,0);}
.m28_c00327{transform:matrix(0.199065,-0.003981,0.004999,0.249950,0,0);-ms-transform:matrix(0.199065,-0.003981,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199065,-0.003981,0.004999,0.249950,0,0);}
.m8e_c00327{transform:matrix(0.199860,-0.003997,0.004999,0.249950,0,0);-ms-transform:matrix(0.199860,-0.003997,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199860,-0.003997,0.004999,0.249950,0,0);}
.me9_c00327{transform:matrix(0.199948,-0.002999,0.003750,0.249972,0,0);-ms-transform:matrix(0.199948,-0.002999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199948,-0.002999,0.003750,0.249972,0,0);}
.mb7_c00327{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);}
.m140_c00327{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);}
.md6_c00327{transform:matrix(0.200392,-0.003006,0.003750,0.249972,0,0);-ms-transform:matrix(0.200392,-0.003006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200392,-0.003006,0.003750,0.249972,0,0);}
.m126_c00327{transform:matrix(0.200426,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200426,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200426,-0.002405,0.003000,0.249982,0,0);}
.mea_c00327{transform:matrix(0.200697,-0.003010,0.003750,0.249972,0,0);-ms-transform:matrix(0.200697,-0.003010,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200697,-0.003010,0.003750,0.249972,0,0);}
.m72_c00327{transform:matrix(0.200755,-0.004015,0.004999,0.249950,0,0);-ms-transform:matrix(0.200755,-0.004015,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200755,-0.004015,0.004999,0.249950,0,0);}
.m5b_c00327{transform:matrix(0.200790,-0.004016,0.004999,0.249950,0,0);-ms-transform:matrix(0.200790,-0.004016,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200790,-0.004016,0.004999,0.249950,0,0);}
.mb5_c00327{transform:matrix(0.200930,-0.004019,0.004999,0.249950,0,0);-ms-transform:matrix(0.200930,-0.004019,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200930,-0.004019,0.004999,0.249950,0,0);}
.m161_c00327{transform:matrix(0.201204,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201204,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201204,-0.001610,0.002000,0.249992,0,0);}
.m3d_c00327{transform:matrix(0.201235,-0.004025,0.004999,0.249950,0,0);-ms-transform:matrix(0.201235,-0.004025,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201235,-0.004025,0.004999,0.249950,0,0);}
.m149_c00327{transform:matrix(0.201239,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201239,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201239,-0.001610,0.002000,0.249992,0,0);}
.m13e_c00327{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);}
.m127_c00327{transform:matrix(0.201730,-0.002421,0.003000,0.249982,0,0);-ms-transform:matrix(0.201730,-0.002421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201730,-0.002421,0.003000,0.249982,0,0);}
.mb6_c00327{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);}
.mbc_c00327{transform:matrix(0.201805,-0.004036,0.004999,0.249950,0,0);-ms-transform:matrix(0.201805,-0.004036,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201805,-0.004036,0.004999,0.249950,0,0);}
.m11d_c00327{transform:matrix(0.202135,-0.002426,0.003000,0.249982,0,0);-ms-transform:matrix(0.202135,-0.002426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202135,-0.002426,0.003000,0.249982,0,0);}
.m10e_c00327{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);}
.m116_c00327{transform:matrix(0.202275,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202275,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202275,-0.002427,0.003000,0.249982,0,0);}
.mb2_c00327{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);}
.m96_c00327{transform:matrix(0.202654,-0.004053,0.004999,0.249950,0,0);-ms-transform:matrix(0.202654,-0.004053,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202654,-0.004053,0.004999,0.249950,0,0);}
.m11f_c00327{transform:matrix(0.202680,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202680,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202680,-0.002432,0.003000,0.249982,0,0);}
.m11c_c00327{transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);}
.m1b_c00327{transform:matrix(0.202951,-0.004465,0.005499,0.249940,0,0);-ms-transform:matrix(0.202951,-0.004465,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202951,-0.004465,0.005499,0.249940,0,0);}
.mf3_c00327{transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);}
.mcd_c00327{transform:matrix(0.203367,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203367,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203367,-0.003051,0.003750,0.249972,0,0);}
.m87_c00327{transform:matrix(0.203424,-0.004068,0.004999,0.249950,0,0);-ms-transform:matrix(0.203424,-0.004068,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203424,-0.004068,0.004999,0.249950,0,0);}
.m32_c00327{transform:matrix(0.203549,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203549,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203549,-0.004071,0.004999,0.249950,0,0);}
.mba_c00327{transform:matrix(0.203559,-0.004071,0.004999,0.249950,0,0);-ms-transform:matrix(0.203559,-0.004071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203559,-0.004071,0.004999,0.249950,0,0);}
.ma4_c00327{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);}
.m84_c00327{transform:matrix(0.204039,-0.004081,0.004999,0.249950,0,0);-ms-transform:matrix(0.204039,-0.004081,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204039,-0.004081,0.004999,0.249950,0,0);}
.md9_c00327{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);}
.m141_c00327{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);}
.mbb_c00327{transform:matrix(0.205514,-0.004110,0.004999,0.249950,0,0);-ms-transform:matrix(0.205514,-0.004110,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205514,-0.004110,0.004999,0.249950,0,0);}
.m89_c00327{transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);-ms-transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);}
.m112_c00327{transform:matrix(0.205607,-0.003084,0.003750,0.249972,0,0);-ms-transform:matrix(0.205607,-0.003084,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205607,-0.003084,0.003750,0.249972,0,0);}
.m21_c00327{transform:matrix(0.206334,-0.004127,0.004999,0.249950,0,0);-ms-transform:matrix(0.206334,-0.004127,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206334,-0.004127,0.004999,0.249950,0,0);}
.ma1_c00327{transform:matrix(0.206409,-0.004128,0.004999,0.249950,0,0);-ms-transform:matrix(0.206409,-0.004128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206409,-0.004128,0.004999,0.249950,0,0);}
.m83_c00327{transform:matrix(0.206594,-0.004132,0.004999,0.249950,0,0);-ms-transform:matrix(0.206594,-0.004132,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206594,-0.004132,0.004999,0.249950,0,0);}
.m43_c00327{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);}
.m124_c00327{transform:matrix(0.207195,-0.002486,0.003000,0.249982,0,0);-ms-transform:matrix(0.207195,-0.002486,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207195,-0.002486,0.003000,0.249982,0,0);}
.m15c_c00327{transform:matrix(0.207433,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207433,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207433,-0.001659,0.002000,0.249992,0,0);}
.m163_c00327{transform:matrix(0.207773,-0.001662,0.002000,0.249992,0,0);-ms-transform:matrix(0.207773,-0.001662,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207773,-0.001662,0.002000,0.249992,0,0);}
.m56_c00327{transform:matrix(0.207773,-0.004155,0.004999,0.249950,0,0);-ms-transform:matrix(0.207773,-0.004155,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207773,-0.004155,0.004999,0.249950,0,0);}
.m155_c00327{transform:matrix(0.208168,-0.001665,0.002000,0.249992,0,0);-ms-transform:matrix(0.208168,-0.001665,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208168,-0.001665,0.002000,0.249992,0,0);}
.m10a_c00327{transform:matrix(0.208332,-0.003125,0.003750,0.249972,0,0);-ms-transform:matrix(0.208332,-0.003125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208332,-0.003125,0.003750,0.249972,0,0);}
.m66_c00327{transform:matrix(0.208453,-0.004169,0.004999,0.249950,0,0);-ms-transform:matrix(0.208453,-0.004169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208453,-0.004169,0.004999,0.249950,0,0);}
.m59_c00327{transform:matrix(0.208568,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208568,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208568,-0.004171,0.004999,0.249950,0,0);}
.m68_c00327{transform:matrix(0.208763,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208763,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208763,-0.004175,0.004999,0.249950,0,0);}
.m138_c00327{transform:matrix(0.209078,-0.001673,0.002000,0.249992,0,0);-ms-transform:matrix(0.209078,-0.001673,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209078,-0.001673,0.002000,0.249992,0,0);}
.mcb_c00327{transform:matrix(0.209989,-0.002940,0.003500,0.249976,0,0);-ms-transform:matrix(0.209989,-0.002940,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209989,-0.002940,0.003500,0.249976,0,0);}
.ma2_c00327{transform:matrix(0.210558,-0.004211,0.004999,0.249950,0,0);-ms-transform:matrix(0.210558,-0.004211,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210558,-0.004211,0.004999,0.249950,0,0);}
.m12a_c00327{transform:matrix(0.211000,-0.002532,0.003000,0.249982,0,0);-ms-transform:matrix(0.211000,-0.002532,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211000,-0.002532,0.003000,0.249982,0,0);}
.m13f_c00327{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);}
.mb8_c00327{transform:matrix(0.211873,-0.004237,0.004999,0.249950,0,0);-ms-transform:matrix(0.211873,-0.004237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211873,-0.004237,0.004999,0.249950,0,0);}
.m157_c00327{transform:matrix(0.212978,-0.001704,0.002000,0.249992,0,0);-ms-transform:matrix(0.212978,-0.001704,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212978,-0.001704,0.002000,0.249992,0,0);}
.mf8_c00327{transform:matrix(0.213021,-0.003195,0.003750,0.249972,0,0);-ms-transform:matrix(0.213021,-0.003195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213021,-0.003195,0.003750,0.249972,0,0);}
.ma3_c00327{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);}
.m97_c00327{transform:matrix(0.213957,-0.004279,0.004999,0.249950,0,0);-ms-transform:matrix(0.213957,-0.004279,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213957,-0.004279,0.004999,0.249950,0,0);}
.m26_c00327{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);}
.m14b_c00327{transform:matrix(0.214743,-0.001718,0.002000,0.249992,0,0);-ms-transform:matrix(0.214743,-0.001718,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214743,-0.001718,0.002000,0.249992,0,0);}
.m144_c00327{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);}
.mc1_c00327{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);}
.md8_c00327{transform:matrix(0.216406,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216406,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216406,-0.003246,0.003750,0.249972,0,0);}
.m14e_c00327{transform:matrix(0.216488,-0.001732,0.002000,0.249992,0,0);-ms-transform:matrix(0.216488,-0.001732,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216488,-0.001732,0.002000,0.249992,0,0);}
.m6f_c00327{transform:matrix(0.216562,-0.004331,0.004999,0.249950,0,0);-ms-transform:matrix(0.216562,-0.004331,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216562,-0.004331,0.004999,0.249950,0,0);}
.m15d_c00327{transform:matrix(0.217493,-0.001740,0.002000,0.249992,0,0);-ms-transform:matrix(0.217493,-0.001740,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217493,-0.001740,0.002000,0.249992,0,0);}
.meb_c00327{transform:matrix(0.217501,-0.003263,0.003750,0.249972,0,0);-ms-transform:matrix(0.217501,-0.003263,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217501,-0.003263,0.003750,0.249972,0,0);}
.m131_c00327{transform:matrix(0.217708,-0.001742,0.002000,0.249992,0,0);-ms-transform:matrix(0.217708,-0.001742,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217708,-0.001742,0.002000,0.249992,0,0);}
.mbe_c00327{transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);-ms-transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);}
.m106_c00327{transform:matrix(0.218435,-0.003277,0.003750,0.249972,0,0);-ms-transform:matrix(0.218435,-0.003277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218435,-0.003277,0.003750,0.249972,0,0);}
.m160_c00327{transform:matrix(0.218658,-0.001749,0.002000,0.249992,0,0);-ms-transform:matrix(0.218658,-0.001749,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218658,-0.001749,0.002000,0.249992,0,0);}
.m3a_c00327{transform:matrix(0.219536,-0.004391,0.004999,0.249950,0,0);-ms-transform:matrix(0.219536,-0.004391,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219536,-0.004391,0.004999,0.249950,0,0);}
.m47_c00327{transform:matrix(0.220256,-0.004405,0.004999,0.249950,0,0);-ms-transform:matrix(0.220256,-0.004405,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220256,-0.004405,0.004999,0.249950,0,0);}
.m5e_c00327{transform:matrix(0.220796,-0.004416,0.004999,0.249950,0,0);-ms-transform:matrix(0.220796,-0.004416,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220796,-0.004416,0.004999,0.249950,0,0);}
.mb9_c00327{transform:matrix(0.222620,-0.004452,0.004999,0.249950,0,0);-ms-transform:matrix(0.222620,-0.004452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222620,-0.004452,0.004999,0.249950,0,0);}
.m9f_c00327{transform:matrix(0.223270,-0.004465,0.004999,0.249950,0,0);-ms-transform:matrix(0.223270,-0.004465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223270,-0.004465,0.004999,0.249950,0,0);}
.m70_c00327{transform:matrix(0.223535,-0.004471,0.004999,0.249950,0,0);-ms-transform:matrix(0.223535,-0.004471,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223535,-0.004471,0.004999,0.249950,0,0);}
.mbd_c00327{transform:matrix(0.223685,-0.004474,0.004999,0.249950,0,0);-ms-transform:matrix(0.223685,-0.004474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223685,-0.004474,0.004999,0.249950,0,0);}
.m145_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);}
.m73_c00327{transform:matrix(0.226900,-0.004538,0.004999,0.249950,0,0);-ms-transform:matrix(0.226900,-0.004538,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226900,-0.004538,0.004999,0.249950,0,0);}
.m75_c00327{transform:matrix(0.227375,-0.004547,0.004999,0.249950,0,0);-ms-transform:matrix(0.227375,-0.004547,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227375,-0.004547,0.004999,0.249950,0,0);}
.mad_c00327{transform:matrix(0.228144,-0.004563,0.004999,0.249950,0,0);-ms-transform:matrix(0.228144,-0.004563,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228144,-0.004563,0.004999,0.249950,0,0);}
.m167_c00327{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);}
.m92_c00327{transform:matrix(0.231264,-0.004625,0.004999,0.249950,0,0);-ms-transform:matrix(0.231264,-0.004625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231264,-0.004625,0.004999,0.249950,0,0);}
.m64_c00327{transform:matrix(0.232239,-0.004645,0.004999,0.249950,0,0);-ms-transform:matrix(0.232239,-0.004645,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232239,-0.004645,0.004999,0.249950,0,0);}
.m139_c00327{transform:matrix(0.232603,-0.001861,0.002000,0.249992,0,0);-ms-transform:matrix(0.232603,-0.001861,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232603,-0.001861,0.002000,0.249992,0,0);}
.mf6_c00327{transform:matrix(0.232704,-0.003491,0.003750,0.249972,0,0);-ms-transform:matrix(0.232704,-0.003491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232704,-0.003491,0.003750,0.249972,0,0);}
.m13d_c00327{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m14c_c00327{transform:matrix(0.235047,-0.001880,0.002000,0.249992,0,0);-ms-transform:matrix(0.235047,-0.001880,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235047,-0.001880,0.002000,0.249992,0,0);}
.m115_c00327{transform:matrix(0.235218,-0.002823,0.003000,0.249982,0,0);-ms-transform:matrix(0.235218,-0.002823,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235218,-0.002823,0.003000,0.249982,0,0);}
.m10c_c00327{transform:matrix(0.235539,-0.003533,0.003750,0.249972,0,0);-ms-transform:matrix(0.235539,-0.003533,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235539,-0.003533,0.003750,0.249972,0,0);}
.m90_c00327{transform:matrix(0.236108,-0.004722,0.004999,0.249950,0,0);-ms-transform:matrix(0.236108,-0.004722,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236108,-0.004722,0.004999,0.249950,0,0);}
.m36_c00327{transform:matrix(0.237662,-0.004753,0.004999,0.249950,0,0);-ms-transform:matrix(0.237662,-0.004753,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237662,-0.004753,0.004999,0.249950,0,0);}
.m12f_c00327{transform:matrix(0.238482,-0.001908,0.002000,0.249992,0,0);-ms-transform:matrix(0.238482,-0.001908,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238482,-0.001908,0.002000,0.249992,0,0);}
.mdf_c00327{transform:matrix(0.238698,-0.003580,0.003750,0.249972,0,0);-ms-transform:matrix(0.238698,-0.003580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238698,-0.003580,0.003750,0.249972,0,0);}
.m113_c00327{transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);-ms-transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240958,-0.002891,0.003000,0.249982,0,0);}
.m1d_c00327{transform:matrix(0.241512,-0.004830,0.004999,0.249950,0,0);-ms-transform:matrix(0.241512,-0.004830,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241512,-0.004830,0.004999,0.249950,0,0);}
.m4f_c00327{transform:matrix(0.241682,-0.004834,0.004999,0.249950,0,0);-ms-transform:matrix(0.241682,-0.004834,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241682,-0.004834,0.004999,0.249950,0,0);}
.m54_c00327{transform:matrix(0.242347,-0.004847,0.004999,0.249950,0,0);-ms-transform:matrix(0.242347,-0.004847,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242347,-0.004847,0.004999,0.249950,0,0);}
.m8b_c00327{transform:matrix(0.242636,-0.004853,0.004999,0.249950,0,0);-ms-transform:matrix(0.242636,-0.004853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242636,-0.004853,0.004999,0.249950,0,0);}
.m156_c00327{transform:matrix(0.243492,-0.001948,0.002000,0.249992,0,0);-ms-transform:matrix(0.243492,-0.001948,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243492,-0.001948,0.002000,0.249992,0,0);}
.m8a_c00327{transform:matrix(0.246186,-0.004924,0.004999,0.249950,0,0);-ms-transform:matrix(0.246186,-0.004924,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246186,-0.004924,0.004999,0.249950,0,0);}
.mfa_c00327{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);}
.m166_c00327{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);}
.m165_c00327{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);}
.m123_c00327{transform:matrix(0.252807,-0.003034,0.003000,0.249982,0,0);-ms-transform:matrix(0.252807,-0.003034,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252807,-0.003034,0.003000,0.249982,0,0);}
.m61_c00327{transform:matrix(0.253154,-0.005063,0.004999,0.249950,0,0);-ms-transform:matrix(0.253154,-0.005063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253154,-0.005063,0.004999,0.249950,0,0);}
.m130_c00327{transform:matrix(0.257997,-0.002064,0.002000,0.249992,0,0);-ms-transform:matrix(0.257997,-0.002064,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257997,-0.002064,0.002000,0.249992,0,0);}
.mb1_c00327{transform:matrix(0.258118,-0.005162,0.004999,0.249950,0,0);-ms-transform:matrix(0.258118,-0.005162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258118,-0.005162,0.004999,0.249950,0,0);}
.mc2_c00327{transform:matrix(0.258145,-0.003614,0.003500,0.249976,0,0);-ms-transform:matrix(0.258145,-0.003614,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258145,-0.003614,0.003500,0.249976,0,0);}
.m1e_c00327{transform:matrix(0.263682,-0.005274,0.004999,0.249950,0,0);-ms-transform:matrix(0.263682,-0.005274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263682,-0.005274,0.004999,0.249950,0,0);}
.m11_c00327{transform:matrix(0.264552,-0.005291,0.004999,0.249950,0,0);-ms-transform:matrix(0.264552,-0.005291,0.004999,0.249950,0,0);-webkit-transform:matrix(0.264552,-0.005291,0.004999,0.249950,0,0);}
.m11a_c00327{transform:matrix(0.267291,-0.003207,0.003000,0.249982,0,0);-ms-transform:matrix(0.267291,-0.003207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267291,-0.003207,0.003000,0.249982,0,0);}
.m109_c00327{transform:matrix(0.271120,-0.004067,0.003750,0.249972,0,0);-ms-transform:matrix(0.271120,-0.004067,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271120,-0.004067,0.003750,0.249972,0,0);}
.m6_c00327{transform:matrix(0.271601,-0.005432,0.004999,0.249950,0,0);-ms-transform:matrix(0.271601,-0.005432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271601,-0.005432,0.004999,0.249950,0,0);}
.m93_c00327{transform:matrix(0.272980,-0.005460,0.004999,0.249950,0,0);-ms-transform:matrix(0.272980,-0.005460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272980,-0.005460,0.004999,0.249950,0,0);}
.m12d_c00327{transform:matrix(0.273571,-0.002189,0.002000,0.249992,0,0);-ms-transform:matrix(0.273571,-0.002189,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273571,-0.002189,0.002000,0.249992,0,0);}
.m7_c00327{transform:matrix(0.276600,-0.005532,0.004999,0.249950,0,0);-ms-transform:matrix(0.276600,-0.005532,0.004999,0.249950,0,0);-webkit-transform:matrix(0.276600,-0.005532,0.004999,0.249950,0,0);}
.m10_c00327{transform:matrix(0.279009,-0.005580,0.004999,0.249950,0,0);-ms-transform:matrix(0.279009,-0.005580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.279009,-0.005580,0.004999,0.249950,0,0);}
.ma6_c00327{transform:matrix(0.283583,-0.005672,0.004999,0.249950,0,0);-ms-transform:matrix(0.283583,-0.005672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.283583,-0.005672,0.004999,0.249950,0,0);}
.ma_c00327{transform:matrix(0.291872,-0.005837,0.004999,0.249950,0,0);-ms-transform:matrix(0.291872,-0.005837,0.004999,0.249950,0,0);-webkit-transform:matrix(0.291872,-0.005837,0.004999,0.249950,0,0);}
.m1a_c00327{transform:matrix(0.299862,-0.006597,0.005499,0.249940,0,0);-ms-transform:matrix(0.299862,-0.006597,0.005499,0.249940,0,0);-webkit-transform:matrix(0.299862,-0.006597,0.005499,0.249940,0,0);}
.maa_c00327{transform:matrix(0.305974,-0.006119,0.004999,0.249950,0,0);-ms-transform:matrix(0.305974,-0.006119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.305974,-0.006119,0.004999,0.249950,0,0);}
.m5a_c00327{transform:matrix(0.306169,-0.006123,0.004999,0.249950,0,0);-ms-transform:matrix(0.306169,-0.006123,0.004999,0.249950,0,0);-webkit-transform:matrix(0.306169,-0.006123,0.004999,0.249950,0,0);}
.m152_c00327{transform:matrix(0.309675,-0.002477,0.002000,0.249992,0,0);-ms-transform:matrix(0.309675,-0.002477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.309675,-0.002477,0.002000,0.249992,0,0);}
.m13c_c00327{transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.315337,-0.006307,0.004999,0.249950,0,0);-ms-transform:matrix(0.315337,-0.006307,0.004999,0.249950,0,0);-webkit-transform:matrix(0.315337,-0.006307,0.004999,0.249950,0,0);}
.m18_c00327{transform:matrix(0.319731,-0.006395,0.004999,0.249950,0,0);-ms-transform:matrix(0.319731,-0.006395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.319731,-0.006395,0.004999,0.249950,0,0);}
.m55_c00327{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);}
.m16_c00327{transform:matrix(0.358193,-0.007164,0.004999,0.249950,0,0);-ms-transform:matrix(0.358193,-0.007164,0.004999,0.249950,0,0);-webkit-transform:matrix(0.358193,-0.007164,0.004999,0.249950,0,0);}
.m15b_c00327{transform:matrix(0.361823,-0.002895,0.002000,0.249992,0,0);-ms-transform:matrix(0.361823,-0.002895,0.002000,0.249992,0,0);-webkit-transform:matrix(0.361823,-0.002895,0.002000,0.249992,0,0);}
.m142_c00327{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.mf9_c00327{transform:matrix(0.390596,-0.005859,0.003750,0.249972,0,0);-ms-transform:matrix(0.390596,-0.005859,0.003750,0.249972,0,0);-webkit-transform:matrix(0.390596,-0.005859,0.003750,0.249972,0,0);}
.me_c00327{transform:matrix(0.424350,-0.008487,0.004999,0.249950,0,0);-ms-transform:matrix(0.424350,-0.008487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.424350,-0.008487,0.004999,0.249950,0,0);}
.m1c_c00327{transform:matrix(0.508502,-0.011187,0.005499,0.249940,0,0);-ms-transform:matrix(0.508502,-0.011187,0.005499,0.249940,0,0);-webkit-transform:matrix(0.508502,-0.011187,0.005499,0.249940,0,0);}
.mc_c00327{transform:matrix(0.518166,-0.010363,0.004999,0.249950,0,0);-ms-transform:matrix(0.518166,-0.010363,0.004999,0.249950,0,0);-webkit-transform:matrix(0.518166,-0.010363,0.004999,0.249950,0,0);}
.m5_c00327{transform:matrix(0.571621,-0.011432,0.004999,0.249950,0,0);-ms-transform:matrix(0.571621,-0.011432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.571621,-0.011432,0.004999,0.249950,0,0);}
.m19_c00327{transform:matrix(0.610418,-0.012208,0.004999,0.249950,0,0);-ms-transform:matrix(0.610418,-0.012208,0.004999,0.249950,0,0);-webkit-transform:matrix(0.610418,-0.012208,0.004999,0.249950,0,0);}
.m13a_c00327{transform:matrix(0.627485,-0.005020,0.002000,0.249992,0,0);-ms-transform:matrix(0.627485,-0.005020,0.002000,0.249992,0,0);-webkit-transform:matrix(0.627485,-0.005020,0.002000,0.249992,0,0);}
.m3_c00327{transform:matrix(0.639227,-0.012785,0.004999,0.249950,0,0);-ms-transform:matrix(0.639227,-0.012785,0.004999,0.249950,0,0);-webkit-transform:matrix(0.639227,-0.012785,0.004999,0.249950,0,0);}
.m13_c00327{transform:matrix(0.676720,-0.013534,0.004999,0.249950,0,0);-ms-transform:matrix(0.676720,-0.013534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.676720,-0.013534,0.004999,0.249950,0,0);}
.m1_c00327{transform:matrix(0.692077,-0.013842,0.004999,0.249950,0,0);-ms-transform:matrix(0.692077,-0.013842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.692077,-0.013842,0.004999,0.249950,0,0);}
.m17_c00327{transform:matrix(0.692092,-0.013842,0.004999,0.249950,0,0);-ms-transform:matrix(0.692092,-0.013842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.692092,-0.013842,0.004999,0.249950,0,0);}
.mf_c00327{transform:matrix(0.704724,-0.014094,0.004999,0.249950,0,0);-ms-transform:matrix(0.704724,-0.014094,0.004999,0.249950,0,0);-webkit-transform:matrix(0.704724,-0.014094,0.004999,0.249950,0,0);}
.m12_c00327{transform:matrix(0.709238,-0.014185,0.004999,0.249950,0,0);-ms-transform:matrix(0.709238,-0.014185,0.004999,0.249950,0,0);-webkit-transform:matrix(0.709238,-0.014185,0.004999,0.249950,0,0);}
.m146_c00327{transform:matrix(0.808650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808650,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(1.132169,-0.022643,0.004999,0.249950,0,0);-ms-transform:matrix(1.132169,-0.022643,0.004999,0.249950,0,0);-webkit-transform:matrix(1.132169,-0.022643,0.004999,0.249950,0,0);}
.m2_c00327{transform:matrix(1.672840,-0.033457,0.004999,0.249950,0,0);-ms-transform:matrix(1.672840,-0.033457,0.004999,0.249950,0,0);-webkit-transform:matrix(1.672840,-0.033457,0.004999,0.249950,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;}
.fs18_c00327{font-size:19.950000px;}
.fs19_c00327{font-size:21.000000px;}
.fs1_c00327{font-size:31.506299px;}
.fs14_c00327{font-size:34.651109px;}
.fs15_c00327{font-size:51.450000px;}
.fs17_c00327{font-size:51.451646px;}
.fs16_c00327{font-size:52.501680px;}
.fs2_c00327{font-size:54.610919px;}
.fs11_c00327{font-size:64.054611px;}
.fs12_c00327{font-size:66.154763px;}
.fs8_c00327{font-size:66.163229px;}
.fsf_c00327{font-size:67.207560px;}
.fsa_c00327{font-size:67.213439px;}
.fse_c00327{font-size:68.257678px;}
.fs4_c00327{font-size:68.263649px;}
.fsb_c00327{font-size:69.313859px;}
.fsc_c00327{font-size:70.356894px;}
.fs10_c00327{font-size:70.357914px;}
.fs9_c00327{font-size:70.364069px;}
.fs13_c00327{font-size:71.402285px;}
.fsd_c00327{font-size:71.408032px;}
.fs6_c00327{font-size:71.414279px;}
.fs5_c00327{font-size:72.464489px;}
.fs7_c00327{font-size:74.564909px;}
.fs0_c00327{font-size:86.117218px;}
.fs3_c00327{font-size:128.130996px;}
.y0_c00327{bottom:0.000000px;}
.y15d_c00327{bottom:78.570000px;}
.y15c_c00327{bottom:87.082500px;}
.y14d_c00327{bottom:160.919256px;}
.y14e_c00327{bottom:161.209884px;}
.y14f_c00327{bottom:161.300076px;}
.y150_c00327{bottom:161.758932px;}
.y151_c00327{bottom:162.111936px;}
.y152_c00327{bottom:162.369672px;}
.y153_c00327{bottom:162.598164px;}
.y154_c00327{bottom:162.690360px;}
.y155_c00327{bottom:162.975840px;}
.y156_c00327{bottom:163.123512px;}
.y157_c00327{bottom:163.305204px;}
.y158_c00327{bottom:163.475796px;}
.y159_c00327{bottom:163.719924px;}
.y15a_c00327{bottom:163.938792px;}
.y15b_c00327{bottom:164.049264px;}
.y13f_c00327{bottom:178.470000px;}
.y140_c00327{bottom:179.061804px;}
.y141_c00327{bottom:179.275464px;}
.y142_c00327{bottom:179.452800px;}
.y143_c00327{bottom:179.565132px;}
.y144_c00327{bottom:180.444228px;}
.y145_c00327{bottom:180.504744px;}
.y146_c00327{bottom:180.800676px;}
.y147_c00327{bottom:181.090140px;}
.y148_c00327{bottom:181.265124px;}
.y149_c00327{bottom:181.431408px;}
.y14a_c00327{bottom:181.668984px;}
.y14b_c00327{bottom:181.813728px;}
.y14c_c00327{bottom:182.217648px;}
.y13e_c00327{bottom:197.877000px;}
.y139_c00327{bottom:234.358692px;}
.y13a_c00327{bottom:236.168040px;}
.y13b_c00327{bottom:236.634972px;}
.y13c_c00327{bottom:237.404496px;}
.y13d_c00327{bottom:238.974012px;}
.y12e_c00327{bottom:246.510000px;}
.y12f_c00327{bottom:246.883872px;}
.y130_c00327{bottom:247.043736px;}
.y131_c00327{bottom:247.182036px;}
.y132_c00327{bottom:247.663920px;}
.y133_c00327{bottom:247.856004px;}
.y134_c00327{bottom:248.471376px;}
.y135_c00327{bottom:248.899248px;}
.y136_c00327{bottom:249.203820px;}
.y137_c00327{bottom:249.424200px;}
.y138_c00327{bottom:249.771948px;}
.y123_c00327{bottom:269.461500px;}
.y124_c00327{bottom:270.128976px;}
.y125_c00327{bottom:270.614364px;}
.y126_c00327{bottom:270.913200px;}
.y127_c00327{bottom:271.644774px;}
.y128_c00327{bottom:272.082804px;}
.y129_c00327{bottom:272.348628px;}
.y12a_c00327{bottom:272.802228px;}
.y12b_c00327{bottom:273.301080px;}
.y12c_c00327{bottom:273.754266px;}
.y12d_c00327{bottom:274.684632px;}
.y115_c00327{bottom:291.331500px;}
.y116_c00327{bottom:292.177122px;}
.y117_c00327{bottom:292.393572px;}
.y118_c00327{bottom:292.614612px;}
.y119_c00327{bottom:293.145936px;}
.y11a_c00327{bottom:293.622216px;}
.y11b_c00327{bottom:293.891190px;}
.y11c_c00327{bottom:294.490554px;}
.y11d_c00327{bottom:294.701136px;}
.y11e_c00327{bottom:294.944190px;}
.y11f_c00327{bottom:295.676376px;}
.y120_c00327{bottom:296.152656px;}
.y121_c00327{bottom:296.421198px;}
.y122_c00327{bottom:296.991978px;}
.y10b_c00327{bottom:313.998232px;}
.y10c_c00327{bottom:314.769195px;}
.y10d_c00327{bottom:315.111893px;}
.y10e_c00327{bottom:315.607538px;}
.y10f_c00327{bottom:316.197863px;}
.y110_c00327{bottom:316.530923px;}
.y111_c00327{bottom:317.502923px;}
.y112_c00327{bottom:317.885408px;}
.y113_c00327{bottom:318.862703px;}
.y114_c00327{bottom:319.109993px;}
.y101_c00327{bottom:336.951105px;}
.y102_c00327{bottom:337.381620px;}
.y103_c00327{bottom:337.767255px;}
.y104_c00327{bottom:338.284635px;}
.y105_c00327{bottom:339.098903px;}
.y106_c00327{bottom:339.950708px;}
.y107_c00327{bottom:340.505423px;}
.y108_c00327{bottom:341.123700px;}
.y109_c00327{bottom:341.559330px;}
.y10a_c00327{bottom:342.002190px;}
.yf5_c00327{bottom:359.635080px;}
.yf6_c00327{bottom:360.361005px;}
.yf7_c00327{bottom:361.164270px;}
.yf8_c00327{bottom:361.348125px;}
.yf9_c00327{bottom:361.999928px;}
.yfa_c00327{bottom:362.309123px;}
.yfb_c00327{bottom:362.950568px;}
.yfc_c00327{bottom:363.213270px;}
.yfd_c00327{bottom:363.487822px;}
.yfe_c00327{bottom:364.035818px;}
.yff_c00327{bottom:364.460205px;}
.y100_c00327{bottom:364.919625px;}
.ye9_c00327{bottom:382.045785px;}
.yea_c00327{bottom:382.630725px;}
.yeb_c00327{bottom:383.123918px;}
.yec_c00327{bottom:383.448953px;}
.yed_c00327{bottom:384.072810px;}
.yee_c00327{bottom:384.484440px;}
.yef_c00327{bottom:384.892282px;}
.yf0_c00327{bottom:385.358580px;}
.yf1_c00327{bottom:386.393700px;}
.yf2_c00327{bottom:386.988630px;}
.yf3_c00327{bottom:387.333248px;}
.yf4_c00327{bottom:388.562655px;}
.yda_c00327{bottom:406.618268px;}
.ydb_c00327{bottom:406.775325px;}
.ydc_c00327{bottom:406.988077px;}
.ydd_c00327{bottom:407.312077px;}
.yde_c00327{bottom:407.445315px;}
.ydf_c00327{bottom:407.614942px;}
.ye0_c00327{bottom:407.940930px;}
.ye1_c00327{bottom:408.375480px;}
.ye2_c00327{bottom:408.972188px;}
.ye3_c00327{bottom:409.441905px;}
.ye4_c00327{bottom:409.986960px;}
.ye5_c00327{bottom:410.217187px;}
.ye6_c00327{bottom:410.487030px;}
.ye7_c00327{bottom:410.867873px;}
.ye8_c00327{bottom:411.091612px;}
.ycf_c00327{bottom:427.413000px;}
.yd0_c00327{bottom:428.080193px;}
.yd1_c00327{bottom:428.518695px;}
.yd2_c00327{bottom:428.899530px;}
.yd3_c00327{bottom:429.745890px;}
.yd4_c00327{bottom:430.612500px;}
.yd5_c00327{bottom:430.871070px;}
.yd6_c00327{bottom:431.753677px;}
.yd7_c00327{bottom:432.393623px;}
.yd8_c00327{bottom:433.213095px;}
.yd9_c00327{bottom:434.213940px;}
.yc2_c00327{bottom:450.633000px;}
.yc3_c00327{bottom:451.093740px;}
.yc4_c00327{bottom:451.967361px;}
.yc5_c00327{bottom:452.285175px;}
.yc6_c00327{bottom:452.984454px;}
.yc7_c00327{bottom:453.985272px;}
.yc8_c00327{bottom:454.314048px;}
.yc9_c00327{bottom:454.632429px;}
.yca_c00327{bottom:454.897155px;}
.ycb_c00327{bottom:455.876028px;}
.ycc_c00327{bottom:456.496200px;}
.ycd_c00327{bottom:456.665481px;}
.yce_c00327{bottom:457.048290px;}
.yb9_c00327{bottom:472.986120px;}
.yba_c00327{bottom:473.466570px;}
.ybb_c00327{bottom:474.193140px;}
.ybc_c00327{bottom:475.235220px;}
.ybd_c00327{bottom:475.705110px;}
.ybe_c00327{bottom:476.155710px;}
.ybf_c00327{bottom:476.945190px;}
.yc0_c00327{bottom:478.067610px;}
.yc1_c00327{bottom:479.353440px;}
.yae_c00327{bottom:496.206660px;}
.yaf_c00327{bottom:496.791990px;}
.yb0_c00327{bottom:497.171370px;}
.yb1_c00327{bottom:498.157440px;}
.yb2_c00327{bottom:499.216950px;}
.yb3_c00327{bottom:500.093250px;}
.yb4_c00327{bottom:500.388540px;}
.yb5_c00327{bottom:500.734170px;}
.yb6_c00327{bottom:501.037050px;}
.yb7_c00327{bottom:501.297930px;}
.yb8_c00327{bottom:502.391850px;}
.yab_c00327{bottom:518.081070px;}
.yac_c00327{bottom:522.843990px;}
.yad_c00327{bottom:525.236190px;}
.ya1_c00327{bottom:541.574760px;}
.ya2_c00327{bottom:542.624040px;}
.ya3_c00327{bottom:543.038160px;}
.ya4_c00327{bottom:543.664020px;}
.ya5_c00327{bottom:544.189950px;}
.ya6_c00327{bottom:544.860030px;}
.ya7_c00327{bottom:545.537910px;}
.ya8_c00327{bottom:546.324090px;}
.ya9_c00327{bottom:546.618780px;}
.yaa_c00327{bottom:547.339080px;}
.y97_c00327{bottom:563.988750px;}
.y98_c00327{bottom:564.480480px;}
.y99_c00327{bottom:565.207530px;}
.y9a_c00327{bottom:565.466220px;}
.y9b_c00327{bottom:566.331720px;}
.y9c_c00327{bottom:568.111080px;}
.y9d_c00327{bottom:568.808100px;}
.y9e_c00327{bottom:569.209650px;}
.y9f_c00327{bottom:570.340800px;}
.ya0_c00327{bottom:570.818130px;}
.y8b_c00327{bottom:587.751810px;}
.y8c_c00327{bottom:588.160950px;}
.y8d_c00327{bottom:589.125450px;}
.y8e_c00327{bottom:589.431240px;}
.y8f_c00327{bottom:589.911690px;}
.y90_c00327{bottom:590.441190px;}
.y91_c00327{bottom:590.849280px;}
.y92_c00327{bottom:591.249330px;}
.y93_c00327{bottom:592.069980px;}
.y94_c00327{bottom:592.479210px;}
.y95_c00327{bottom:593.465910px;}
.y96_c00327{bottom:593.802150px;}
.y81_c00327{bottom:610.165290px;}
.y82_c00327{bottom:610.543530px;}
.y83_c00327{bottom:611.647050px;}
.y84_c00327{bottom:612.177450px;}
.y85_c00327{bottom:612.793860px;}
.y86_c00327{bottom:613.051830px;}
.y87_c00327{bottom:614.004480px;}
.y88_c00327{bottom:614.538090px;}
.y89_c00327{bottom:615.502500px;}
.y8a_c00327{bottom:616.428300px;}
.y74_c00327{bottom:632.311110px;}
.y75_c00327{bottom:632.811870px;}
.y76_c00327{bottom:633.649200px;}
.y77_c00327{bottom:633.862920px;}
.y78_c00327{bottom:634.471950px;}
.y79_c00327{bottom:635.451870px;}
.y7a_c00327{bottom:635.858010px;}
.y7b_c00327{bottom:636.480720px;}
.y7c_c00327{bottom:637.020630px;}
.y7d_c00327{bottom:637.599870px;}
.y7e_c00327{bottom:638.097060px;}
.y7f_c00327{bottom:638.549640px;}
.y80_c00327{bottom:639.150750px;}
.y68_c00327{bottom:654.723960px;}
.y69_c00327{bottom:655.709700px;}
.y6a_c00327{bottom:656.198640px;}
.y6b_c00327{bottom:656.965020px;}
.y6c_c00327{bottom:657.425400px;}
.y6d_c00327{bottom:658.111470px;}
.y6e_c00327{bottom:658.660650px;}
.y6f_c00327{bottom:659.288520px;}
.y70_c00327{bottom:659.730210px;}
.y71_c00327{bottom:660.252900px;}
.y72_c00327{bottom:661.013460px;}
.y73_c00327{bottom:661.969950px;}
.y5e_c00327{bottom:677.949810px;}
.y5f_c00327{bottom:678.576960px;}
.y60_c00327{bottom:678.922320px;}
.y61_c00327{bottom:681.018330px;}
.y62_c00327{bottom:681.838860px;}
.y63_c00327{bottom:683.293830px;}
.y64_c00327{bottom:683.932680px;}
.y65_c00327{bottom:684.347250px;}
.y66_c00327{bottom:684.779430px;}
.y67_c00327{bottom:685.167960px;}
.y50_c00327{bottom:700.633800px;}
.y51_c00327{bottom:701.195670px;}
.y52_c00327{bottom:701.937300px;}
.y53_c00327{bottom:703.068330px;}
.y54_c00327{bottom:703.467720px;}
.y55_c00327{bottom:704.490420px;}
.y56_c00327{bottom:704.740590px;}
.y57_c00327{bottom:705.446340px;}
.y58_c00327{bottom:705.708720px;}
.y59_c00327{bottom:706.268130px;}
.y5a_c00327{bottom:706.652760px;}
.y5b_c00327{bottom:707.538720px;}
.y5c_c00327{bottom:708.607650px;}
.y5d_c00327{bottom:708.917910px;}
.y45_c00327{bottom:723.585810px;}
.y46_c00327{bottom:725.014800px;}
.y47_c00327{bottom:725.752110px;}
.y48_c00327{bottom:726.240930px;}
.y49_c00327{bottom:727.374840px;}
.y4a_c00327{bottom:727.821030px;}
.y4b_c00327{bottom:728.647560px;}
.y4c_c00327{bottom:729.235350px;}
.y4d_c00327{bottom:729.722610px;}
.y4e_c00327{bottom:730.487610px;}
.y4f_c00327{bottom:730.985550px;}
.y3b_c00327{bottom:746.269290px;}
.y3c_c00327{bottom:748.202490px;}
.y3d_c00327{bottom:748.997220px;}
.y3e_c00327{bottom:749.520300px;}
.y3f_c00327{bottom:750.742140px;}
.y40_c00327{bottom:751.008990px;}
.y41_c00327{bottom:751.587570px;}
.y42_c00327{bottom:752.376720px;}
.y43_c00327{bottom:753.083970px;}
.y44_c00327{bottom:753.470190px;}
.y2f_c00327{bottom:768.685290px;}
.y30_c00327{bottom:768.907890px;}
.y31_c00327{bottom:769.695750px;}
.y32_c00327{bottom:770.739900px;}
.y33_c00327{bottom:771.304950px;}
.y34_c00327{bottom:771.684660px;}
.y35_c00327{bottom:772.661880px;}
.y36_c00327{bottom:773.078550px;}
.y37_c00327{bottom:773.599710px;}
.y38_c00327{bottom:774.321540px;}
.y39_c00327{bottom:775.969140px;}
.y3a_c00327{bottom:776.591520px;}
.y29_c00327{bottom:791.643630px;}
.y2a_c00327{bottom:792.961350px;}
.y2b_c00327{bottom:793.671720px;}
.y2c_c00327{bottom:794.383920px;}
.y2d_c00327{bottom:795.233790px;}
.y2e_c00327{bottom:797.306670px;}
.y1f_c00327{bottom:814.326000px;}
.y20_c00327{bottom:815.494530px;}
.y21_c00327{bottom:815.999970px;}
.y22_c00327{bottom:817.523220px;}
.y23_c00327{bottom:818.149590px;}
.y24_c00327{bottom:819.602670px;}
.y25_c00327{bottom:820.208550px;}
.y26_c00327{bottom:820.737420px;}
.y27_c00327{bottom:821.995800px;}
.y28_c00327{bottom:822.713970px;}
.y1c_c00327{bottom:858.337500px;}
.y1d_c00327{bottom:860.314860px;}
.y1e_c00327{bottom:861.810849px;}
.y14_c00327{bottom:898.571040px;}
.y15_c00327{bottom:900.488100px;}
.y16_c00327{bottom:903.232470px;}
.y17_c00327{bottom:905.184150px;}
.y18_c00327{bottom:905.954400px;}
.y19_c00327{bottom:906.545130px;}
.y1a_c00327{bottom:907.718310px;}
.y1b_c00327{bottom:908.507700px;}
.y5_c00327{bottom:915.029850px;}
.y6_c00327{bottom:915.493200px;}
.y7_c00327{bottom:916.507080px;}
.y1_c00327{bottom:916.924500px;}
.y8_c00327{bottom:917.022150px;}
.y9_c00327{bottom:917.687880px;}
.y2_c00327{bottom:918.033540px;}
.ya_c00327{bottom:918.227400px;}
.yb_c00327{bottom:918.872460px;}
.yc_c00327{bottom:919.417290px;}
.yd_c00327{bottom:920.058660px;}
.y3_c00327{bottom:920.238780px;}
.ye_c00327{bottom:920.597970px;}
.yf_c00327{bottom:921.396060px;}
.y10_c00327{bottom:921.773460px;}
.y11_c00327{bottom:923.268720px;}
.y12_c00327{bottom:923.985660px;}
.y4_c00327{bottom:924.686640px;}
.y13_c00327{bottom:925.518570px;}
.h1a_c00327{height:19.950000px;}
.h1b_c00327{height:21.000000px;}
.h3_c00327{height:31.506299px;}
.h16_c00327{height:34.651109px;}
.h17_c00327{height:51.450000px;}
.h19_c00327{height:51.451646px;}
.h18_c00327{height:52.501680px;}
.h4_c00327{height:54.610919px;}
.h13_c00327{height:64.054611px;}
.h14_c00327{height:66.154763px;}
.ha_c00327{height:66.163229px;}
.h11_c00327{height:67.207560px;}
.hc_c00327{height:67.213439px;}
.h10_c00327{height:68.257678px;}
.h6_c00327{height:68.263649px;}
.hd_c00327{height:69.313859px;}
.he_c00327{height:70.356894px;}
.h12_c00327{height:70.357914px;}
.hb_c00327{height:70.364069px;}
.h15_c00327{height:71.402285px;}
.hf_c00327{height:71.408032px;}
.h8_c00327{height:71.414279px;}
.h7_c00327{height:72.464489px;}
.h9_c00327{height:74.564909px;}
.h2_c00327{height:86.117218px;}
.h5_c00327{height:128.130996px;}
.h0_c00327{height:1008.450000px;}
.h1_c00327{height:1008.750000px;}
.w0_c00327{width:696.000000px;}
.x0_c00327{left:0.000000px;}
.x13_c00327{left:104.032710px;}
.x5_c00327{left:106.145010px;}
.x1_c00327{left:109.566000px;}
.x6_c00327{left:130.512990px;}
.x1b_c00327{left:150.205500px;}
.x33_c00327{left:151.701720px;}
.x59_c00327{left:153.371640px;}
.x2a_c00327{left:154.779810px;}
.x82_c00327{left:155.983410px;}
.xa2_c00327{left:158.116815px;}
.x2_c00327{left:165.018000px;}
.x2b_c00327{left:167.110290px;}
.x8c_c00327{left:171.567998px;}
.x7b_c00327{left:172.727880px;}
.x60_c00327{left:180.013470px;}
.x65_c00327{left:182.432910px;}
.x7_c00327{left:183.908070px;}
.x84_c00327{left:188.881500px;}
.x14_c00327{left:191.182230px;}
.x8d_c00327{left:192.853095px;}
.xbb_c00327{left:193.860000px;}
.x9d_c00327{left:196.167203px;}
.x92_c00327{left:197.495918px;}
.x87_c00327{left:200.479500px;}
.x26_c00327{left:205.092600px;}
.x1d_c00327{left:208.552500px;}
.x8_c00327{left:211.012110px;}
.x4d_c00327{left:212.999130px;}
.x7c_c00327{left:214.524390px;}
.x97_c00327{left:216.986273px;}
.xa3_c00327{left:222.417218px;}
.x44_c00327{left:224.342550px;}
.xb5_c00327{left:225.826500px;}
.xc1_c00327{left:227.419500px;}
.x6d_c00327{left:229.464600px;}
.x9e_c00327{left:231.278318px;}
.x93_c00327{left:232.675935px;}
.x1e_c00327{left:233.824500px;}
.x3c_c00327{left:235.960830px;}
.x53_c00327{left:237.604260px;}
.x1c_c00327{left:240.085500px;}
.x7d_c00327{left:241.596630px;}
.xb6_c00327{left:243.114000px;}
.x9_c00327{left:246.024300px;}
.xae_c00327{left:249.315000px;}
.x5a_c00327{left:250.319880px;}
.x88_c00327{left:255.102000px;}
.x61_c00327{left:258.823920px;}
.x27_c00327{left:264.366360px;}
.x34_c00327{left:265.393530px;}
.x72_c00327{left:266.704200px;}
.x2c_c00327{left:268.839840px;}
.x66_c00327{left:273.183300px;}
.xaf_c00327{left:274.218000px;}
.x3_c00327{left:275.280000px;}
.xc2_c00327{left:276.294000px;}
.x9f_c00327{left:278.273130px;}
.x3d_c00327{left:279.353940px;}
.x54_c00327{left:282.675960px;}
.x98_c00327{left:283.940288px;}
.x45_c00327{left:287.196570px;}
.x5b_c00327{left:288.349410px;}
.xbc_c00327{left:291.060000px;}
.xa4_c00327{left:292.309868px;}
.x62_c00327{left:296.673450px;}
.x28_c00327{left:299.807040px;}
.xa8_c00327{left:303.381000px;}
.xa_c00327{left:308.404560px;}
.x1f_c00327{left:309.987000px;}
.x35_c00327{left:312.107820px;}
.x73_c00327{left:314.803920px;}
.x15_c00327{left:315.945750px;}
.x2d_c00327{left:321.329940px;}
.x85_c00327{left:323.932500px;}
.xb7_c00327{left:327.360000px;}
.x94_c00327{left:329.878897px;}
.x8e_c00327{left:331.657012px;}
.xb0_c00327{left:335.182500px;}
.xb_c00327{left:337.071630px;}
.x20_c00327{left:341.305500px;}
.x36_c00327{left:342.838650px;}
.x4e_c00327{left:343.985100px;}
.x67_c00327{left:345.289440px;}
.x55_c00327{left:350.127510px;}
.xa0_c00327{left:352.262063px;}
.x99_c00327{left:353.553915px;}
.x74_c00327{left:355.281090px;}
.x63_c00327{left:359.074920px;}
.xbd_c00327{left:360.450000px;}
.xc6_c00327{left:361.607616px;}
.x46_c00327{left:366.254250px;}
.x89_c00327{left:369.300000px;}
.xc_c00327{left:370.790790px;}
.x68_c00327{left:374.472450px;}
.x2e_c00327{left:375.593100px;}
.x47_c00327{left:380.188320px;}
.x56_c00327{left:382.388430px;}
.x29_c00327{left:386.194140px;}
.x7e_c00327{left:387.693150px;}
.x8f_c00327{left:391.341990px;}
.xb1_c00327{left:393.837000px;}
.x4f_c00327{left:395.290710px;}
.xba_c00327{left:397.262736px;}
.xd_c00327{left:399.181860px;}
.x3e_c00327{left:400.957200px;}
.x69_c00327{left:403.028370px;}
.x16_c00327{left:404.676210px;}
.x75_c00327{left:406.867320px;}
.x6e_c00327{left:410.881590px;}
.x21_c00327{left:413.959500px;}
.xa9_c00327{left:415.432500px;}
.xbe_c00327{left:417.150000px;}
.x48_c00327{left:419.377380px;}
.x2f_c00327{left:427.736700px;}
.x37_c00327{left:430.403400px;}
.xb2_c00327{left:431.637000px;}
.x9a_c00327{left:432.733470px;}
.x49_c00327{left:433.921950px;}
.x90_c00327{left:438.360022px;}
.x17_c00327{left:439.662300px;}
.xe_c00327{left:441.187200px;}
.x22_c00327{left:444.253500px;}
.x57_c00327{left:445.320210px;}
.x5c_c00327{left:447.671160px;}
.x3f_c00327{left:449.561610px;}
.x79_c00327{left:451.773420px;}
.xaa_c00327{left:453.235500px;}
.x6f_c00327{left:454.436070px;}
.xb8_c00327{left:457.765500px;}
.x76_c00327{left:458.993610px;}
.xf_c00327{left:461.032590px;}
.x38_c00327{left:464.434440px;}
.x18_c00327{left:466.497720px;}
.x30_c00327{left:467.879820px;}
.xc7_c00327{left:469.338480px;}
.x23_c00327{left:470.697000px;}
.xb3_c00327{left:473.208000px;}
.x58_c00327{left:476.106570px;}
.x9b_c00327{left:477.552495px;}
.x70_c00327{left:479.540580px;}
.xc3_c00327{left:480.961500px;}
.xa5_c00327{left:482.176418px;}
.x40_c00327{left:484.128180px;}
.x4a_c00327{left:486.301020px;}
.x8a_c00327{left:488.041500px;}
.x6a_c00327{left:490.857900px;}
.x91_c00327{left:492.901118px;}
.x7f_c00327{left:495.967110px;}
.x4_c00327{left:497.673000px;}
.xbf_c00327{left:501.660000px;}
.xc4_c00327{left:502.834500px;}
.x95_c00327{left:508.627553px;}
.x39_c00327{left:510.869730px;}
.x41_c00327{left:512.767890px;}
.x5d_c00327{left:514.923030px;}
.x80_c00327{left:517.563690px;}
.x19_c00327{left:519.829590px;}
.x9c_c00327{left:523.187543px;}
.x50_c00327{left:526.242210px;}
.x86_c00327{left:530.473500px;}
.x24_c00327{left:533.616000px;}
.x4b_c00327{left:535.551000px;}
.x10_c00327{left:539.697150px;}
.x77_c00327{left:542.148750px;}
.x5e_c00327{left:543.254310px;}
.xc0_c00327{left:544.590000px;}
.x71_c00327{left:550.203720px;}
.x3a_c00327{left:552.459720px;}
.xab_c00327{left:553.941000px;}
.x1a_c00327{left:555.697650px;}
.x42_c00327{left:557.770590px;}
.x31_c00327{left:559.413480px;}
.x6b_c00327{left:561.351360px;}
.xa6_c00327{left:563.633085px;}
.xb9_c00327{left:566.853000px;}
.x25_c00327{left:569.524500px;}
.xc5_c00327{left:571.410000px;}
.x3b_c00327{left:575.147070px;}
.xac_c00327{left:576.319500px;}
.x11_c00327{left:577.419900px;}
.x51_c00327{left:579.158940px;}
.x5f_c00327{left:580.812810px;}
.xa7_c00327{left:584.220008px;}
.x6c_c00327{left:585.366240px;}
.x43_c00327{left:587.019330px;}
.xb4_c00327{left:588.504000px;}
.x32_c00327{left:593.983860px;}
.x78_c00327{left:597.521490px;}
.x64_c00327{left:600.227340px;}
.x7a_c00327{left:601.245360px;}
.x52_c00327{left:603.462390px;}
.x8b_c00327{left:609.396000px;}
.x83_c00327{left:610.753950px;}
.x4c_c00327{left:612.163560px;}
.x81_c00327{left:614.265270px;}
.xa1_c00327{left:616.330425px;}
.x96_c00327{left:620.964218px;}
.xad_c00327{left:623.884500px;}
.x12_c00327{left:658.117020px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
.fs18_c00327{font-size:17.733333pt;}
.fs19_c00327{font-size:18.666667pt;}
.fs1_c00327{font-size:28.005599pt;}
.fs14_c00327{font-size:30.800986pt;}
.fs15_c00327{font-size:45.733333pt;}
.fs17_c00327{font-size:45.734797pt;}
.fs16_c00327{font-size:46.668160pt;}
.fs2_c00327{font-size:48.543039pt;}
.fs11_c00327{font-size:56.937432pt;}
.fs12_c00327{font-size:58.804233pt;}
.fs8_c00327{font-size:58.811759pt;}
.fsf_c00327{font-size:59.740053pt;}
.fsa_c00327{font-size:59.745279pt;}
.fse_c00327{font-size:60.673491pt;}
.fs4_c00327{font-size:60.678799pt;}
.fsb_c00327{font-size:61.612319pt;}
.fsc_c00327{font-size:62.539461pt;}
.fs10_c00327{font-size:62.540368pt;}
.fs9_c00327{font-size:62.545839pt;}
.fs13_c00327{font-size:63.468698pt;}
.fsd_c00327{font-size:63.473806pt;}
.fs6_c00327{font-size:63.479359pt;}
.fs5_c00327{font-size:64.412879pt;}
.fs7_c00327{font-size:66.279919pt;}
.fs0_c00327{font-size:76.548638pt;}
.fs3_c00327{font-size:113.894219pt;}
.y0_c00327{bottom:0.000000pt;}
.y15d_c00327{bottom:69.840000pt;}
.y15c_c00327{bottom:77.406667pt;}
.y14d_c00327{bottom:143.039339pt;}
.y14e_c00327{bottom:143.297675pt;}
.y14f_c00327{bottom:143.377845pt;}
.y150_c00327{bottom:143.785717pt;}
.y151_c00327{bottom:144.099499pt;}
.y152_c00327{bottom:144.328597pt;}
.y153_c00327{bottom:144.531701pt;}
.y154_c00327{bottom:144.613653pt;}
.y155_c00327{bottom:144.867413pt;}
.y156_c00327{bottom:144.998677pt;}
.y157_c00327{bottom:145.160181pt;}
.y158_c00327{bottom:145.311819pt;}
.y159_c00327{bottom:145.528821pt;}
.y15a_c00327{bottom:145.723371pt;}
.y15b_c00327{bottom:145.821568pt;}
.y13f_c00327{bottom:158.640000pt;}
.y140_c00327{bottom:159.166048pt;}
.y141_c00327{bottom:159.355968pt;}
.y142_c00327{bottom:159.513600pt;}
.y143_c00327{bottom:159.613451pt;}
.y144_c00327{bottom:160.394869pt;}
.y145_c00327{bottom:160.448661pt;}
.y146_c00327{bottom:160.711712pt;}
.y147_c00327{bottom:160.969013pt;}
.y148_c00327{bottom:161.124555pt;}
.y149_c00327{bottom:161.272363pt;}
.y14a_c00327{bottom:161.483541pt;}
.y14b_c00327{bottom:161.612203pt;}
.y14c_c00327{bottom:161.971243pt;}
.y13e_c00327{bottom:175.890667pt;}
.y139_c00327{bottom:208.318837pt;}
.y13a_c00327{bottom:209.927147pt;}
.y13b_c00327{bottom:210.342197pt;}
.y13c_c00327{bottom:211.026219pt;}
.y13d_c00327{bottom:212.421344pt;}
.y12e_c00327{bottom:219.120000pt;}
.y12f_c00327{bottom:219.452331pt;}
.y130_c00327{bottom:219.594432pt;}
.y131_c00327{bottom:219.717365pt;}
.y132_c00327{bottom:220.145707pt;}
.y133_c00327{bottom:220.316448pt;}
.y134_c00327{bottom:220.863445pt;}
.y135_c00327{bottom:221.243776pt;}
.y136_c00327{bottom:221.514507pt;}
.y137_c00327{bottom:221.710400pt;}
.y138_c00327{bottom:222.019509pt;}
.y123_c00327{bottom:239.521333pt;}
.y124_c00327{bottom:240.114645pt;}
.y125_c00327{bottom:240.546101pt;}
.y126_c00327{bottom:240.811733pt;}
.y127_c00327{bottom:241.462021pt;}
.y128_c00327{bottom:241.851381pt;}
.y129_c00327{bottom:242.087669pt;}
.y12a_c00327{bottom:242.490869pt;}
.y12b_c00327{bottom:242.934293pt;}
.y12c_c00327{bottom:243.337125pt;}
.y12d_c00327{bottom:244.164117pt;}
.y115_c00327{bottom:258.961333pt;}
.y116_c00327{bottom:259.712997pt;}
.y117_c00327{bottom:259.905397pt;}
.y118_c00327{bottom:260.101877pt;}
.y119_c00327{bottom:260.574165pt;}
.y11a_c00327{bottom:260.997525pt;}
.y11b_c00327{bottom:261.236613pt;}
.y11c_c00327{bottom:261.769381pt;}
.y11d_c00327{bottom:261.956565pt;}
.y11e_c00327{bottom:262.172613pt;}
.y11f_c00327{bottom:262.823445pt;}
.y120_c00327{bottom:263.246805pt;}
.y121_c00327{bottom:263.485509pt;}
.y122_c00327{bottom:263.992869pt;}
.y10b_c00327{bottom:279.109540pt;}
.y10c_c00327{bottom:279.794840pt;}
.y10d_c00327{bottom:280.099460pt;}
.y10e_c00327{bottom:280.540033pt;}
.y10f_c00327{bottom:281.064767pt;}
.y110_c00327{bottom:281.360820pt;}
.y111_c00327{bottom:282.224820pt;}
.y112_c00327{bottom:282.564807pt;}
.y113_c00327{bottom:283.433513pt;}
.y114_c00327{bottom:283.653327pt;}
.y101_c00327{bottom:299.512093pt;}
.y102_c00327{bottom:299.894773pt;}
.y103_c00327{bottom:300.237560pt;}
.y104_c00327{bottom:300.697453pt;}
.y105_c00327{bottom:301.421247pt;}
.y106_c00327{bottom:302.178407pt;}
.y107_c00327{bottom:302.671487pt;}
.y108_c00327{bottom:303.221067pt;}
.y109_c00327{bottom:303.608293pt;}
.y10a_c00327{bottom:304.001947pt;}
.yf5_c00327{bottom:319.675627pt;}
.yf6_c00327{bottom:320.320893pt;}
.yf7_c00327{bottom:321.034907pt;}
.yf8_c00327{bottom:321.198333pt;}
.yf9_c00327{bottom:321.777713pt;}
.yfa_c00327{bottom:322.052553pt;}
.yfb_c00327{bottom:322.622727pt;}
.yfc_c00327{bottom:322.856240pt;}
.yfd_c00327{bottom:323.100287pt;}
.yfe_c00327{bottom:323.587393pt;}
.yff_c00327{bottom:323.964627pt;}
.y100_c00327{bottom:324.373000pt;}
.ye9_c00327{bottom:339.596253pt;}
.yea_c00327{bottom:340.116200pt;}
.yeb_c00327{bottom:340.554593pt;}
.yec_c00327{bottom:340.843513pt;}
.yed_c00327{bottom:341.398053pt;}
.yee_c00327{bottom:341.763947pt;}
.yef_c00327{bottom:342.126473pt;}
.yf0_c00327{bottom:342.540960pt;}
.yf1_c00327{bottom:343.461067pt;}
.yf2_c00327{bottom:343.989893pt;}
.yf3_c00327{bottom:344.296220pt;}
.yf4_c00327{bottom:345.389027pt;}
.yda_c00327{bottom:361.438460pt;}
.ydb_c00327{bottom:361.578067pt;}
.ydc_c00327{bottom:361.767180pt;}
.ydd_c00327{bottom:362.055180pt;}
.yde_c00327{bottom:362.173613pt;}
.ydf_c00327{bottom:362.324393pt;}
.ye0_c00327{bottom:362.614160pt;}
.ye1_c00327{bottom:363.000427pt;}
.ye2_c00327{bottom:363.530833pt;}
.ye3_c00327{bottom:363.948360pt;}
.ye4_c00327{bottom:364.432853pt;}
.ye5_c00327{bottom:364.637500pt;}
.ye6_c00327{bottom:364.877360pt;}
.ye7_c00327{bottom:365.215887pt;}
.ye8_c00327{bottom:365.414767pt;}
.ycf_c00327{bottom:379.922667pt;}
.yd0_c00327{bottom:380.515727pt;}
.yd1_c00327{bottom:380.905507pt;}
.yd2_c00327{bottom:381.244027pt;}
.yd3_c00327{bottom:381.996347pt;}
.yd4_c00327{bottom:382.766667pt;}
.yd5_c00327{bottom:382.996507pt;}
.yd6_c00327{bottom:383.781047pt;}
.yd7_c00327{bottom:384.349887pt;}
.yd8_c00327{bottom:385.078307pt;}
.yd9_c00327{bottom:385.967947pt;}
.yc2_c00327{bottom:400.562667pt;}
.yc3_c00327{bottom:400.972213pt;}
.yc4_c00327{bottom:401.748765pt;}
.yc5_c00327{bottom:402.031267pt;}
.yc6_c00327{bottom:402.652848pt;}
.yc7_c00327{bottom:403.542464pt;}
.yc8_c00327{bottom:403.834709pt;}
.yc9_c00327{bottom:404.117715pt;}
.yca_c00327{bottom:404.353027pt;}
.ycb_c00327{bottom:405.223136pt;}
.ycc_c00327{bottom:405.774400pt;}
.ycd_c00327{bottom:405.924872pt;}
.yce_c00327{bottom:406.265147pt;}
.yb9_c00327{bottom:420.432107pt;}
.yba_c00327{bottom:420.859173pt;}
.ybb_c00327{bottom:421.505013pt;}
.ybc_c00327{bottom:422.431307pt;}
.ybd_c00327{bottom:422.848987pt;}
.ybe_c00327{bottom:423.249520pt;}
.ybf_c00327{bottom:423.951280pt;}
.yc0_c00327{bottom:424.948987pt;}
.yc1_c00327{bottom:426.091947pt;}
.yae_c00327{bottom:441.072587pt;}
.yaf_c00327{bottom:441.592880pt;}
.yb0_c00327{bottom:441.930107pt;}
.yb1_c00327{bottom:442.806613pt;}
.yb2_c00327{bottom:443.748400pt;}
.yb3_c00327{bottom:444.527333pt;}
.yb4_c00327{bottom:444.789813pt;}
.yb5_c00327{bottom:445.097040pt;}
.yb6_c00327{bottom:445.366267pt;}
.yb7_c00327{bottom:445.598160pt;}
.yb8_c00327{bottom:446.570533pt;}
.yab_c00327{bottom:460.516507pt;}
.yac_c00327{bottom:464.750213pt;}
.yad_c00327{bottom:466.876613pt;}
.ya1_c00327{bottom:481.399787pt;}
.ya2_c00327{bottom:482.332480pt;}
.ya3_c00327{bottom:482.700587pt;}
.ya4_c00327{bottom:483.256907pt;}
.ya5_c00327{bottom:483.724400pt;}
.ya6_c00327{bottom:484.320027pt;}
.ya7_c00327{bottom:484.922587pt;}
.ya8_c00327{bottom:485.621413pt;}
.ya9_c00327{bottom:485.883360pt;}
.yaa_c00327{bottom:486.523627pt;}
.y97_c00327{bottom:501.323333pt;}
.y98_c00327{bottom:501.760427pt;}
.y99_c00327{bottom:502.406693pt;}
.y9a_c00327{bottom:502.636640pt;}
.y9b_c00327{bottom:503.405973pt;}
.y9c_c00327{bottom:504.987627pt;}
.y9d_c00327{bottom:505.607200pt;}
.y9e_c00327{bottom:505.964133pt;}
.y9f_c00327{bottom:506.969600pt;}
.ya0_c00327{bottom:507.393893pt;}
.y8b_c00327{bottom:522.446053pt;}
.y8c_c00327{bottom:522.809733pt;}
.y8d_c00327{bottom:523.667067pt;}
.y8e_c00327{bottom:523.938880pt;}
.y8f_c00327{bottom:524.365947pt;}
.y90_c00327{bottom:524.836613pt;}
.y91_c00327{bottom:525.199360pt;}
.y92_c00327{bottom:525.554960pt;}
.y93_c00327{bottom:526.284427pt;}
.y94_c00327{bottom:526.648187pt;}
.y95_c00327{bottom:527.525253pt;}
.y96_c00327{bottom:527.824133pt;}
.y81_c00327{bottom:542.369147pt;}
.y82_c00327{bottom:542.705360pt;}
.y83_c00327{bottom:543.686267pt;}
.y84_c00327{bottom:544.157733pt;}
.y85_c00327{bottom:544.705653pt;}
.y86_c00327{bottom:544.934960pt;}
.y87_c00327{bottom:545.781760pt;}
.y88_c00327{bottom:546.256080pt;}
.y89_c00327{bottom:547.113333pt;}
.y8a_c00327{bottom:547.936267pt;}
.y74_c00327{bottom:562.054320pt;}
.y75_c00327{bottom:562.499440pt;}
.y76_c00327{bottom:563.243733pt;}
.y77_c00327{bottom:563.433707pt;}
.y78_c00327{bottom:563.975067pt;}
.y79_c00327{bottom:564.846107pt;}
.y7a_c00327{bottom:565.207120pt;}
.y7b_c00327{bottom:565.760640pt;}
.y7c_c00327{bottom:566.240560pt;}
.y7d_c00327{bottom:566.755440pt;}
.y7e_c00327{bottom:567.197387pt;}
.y7f_c00327{bottom:567.599680pt;}
.y80_c00327{bottom:568.134000pt;}
.y68_c00327{bottom:581.976853pt;}
.y69_c00327{bottom:582.853067pt;}
.y6a_c00327{bottom:583.287680pt;}
.y6b_c00327{bottom:583.968907pt;}
.y6c_c00327{bottom:584.378133pt;}
.y6d_c00327{bottom:584.987973pt;}
.y6e_c00327{bottom:585.476133pt;}
.y6f_c00327{bottom:586.034240pt;}
.y70_c00327{bottom:586.426853pt;}
.y71_c00327{bottom:586.891467pt;}
.y72_c00327{bottom:587.567520pt;}
.y73_c00327{bottom:588.417733pt;}
.y5e_c00327{bottom:602.622053pt;}
.y5f_c00327{bottom:603.179520pt;}
.y60_c00327{bottom:603.486507pt;}
.y61_c00327{bottom:605.349627pt;}
.y62_c00327{bottom:606.078987pt;}
.y63_c00327{bottom:607.372293pt;}
.y64_c00327{bottom:607.940160pt;}
.y65_c00327{bottom:608.308667pt;}
.y66_c00327{bottom:608.692827pt;}
.y67_c00327{bottom:609.038187pt;}
.y50_c00327{bottom:622.785600pt;}
.y51_c00327{bottom:623.285040pt;}
.y52_c00327{bottom:623.944267pt;}
.y53_c00327{bottom:624.949627pt;}
.y54_c00327{bottom:625.304640pt;}
.y55_c00327{bottom:626.213707pt;}
.y56_c00327{bottom:626.436080pt;}
.y57_c00327{bottom:627.063413pt;}
.y58_c00327{bottom:627.296640pt;}
.y59_c00327{bottom:627.793893pt;}
.y5a_c00327{bottom:628.135787pt;}
.y5b_c00327{bottom:628.923307pt;}
.y5c_c00327{bottom:629.873467pt;}
.y5d_c00327{bottom:630.149253pt;}
.y45_c00327{bottom:643.187387pt;}
.y46_c00327{bottom:644.457600pt;}
.y47_c00327{bottom:645.112987pt;}
.y48_c00327{bottom:645.547493pt;}
.y49_c00327{bottom:646.555413pt;}
.y4a_c00327{bottom:646.952027pt;}
.y4b_c00327{bottom:647.686720pt;}
.y4c_c00327{bottom:648.209200pt;}
.y4d_c00327{bottom:648.642320pt;}
.y4e_c00327{bottom:649.322320pt;}
.y4f_c00327{bottom:649.764933pt;}
.y3b_c00327{bottom:663.350480pt;}
.y3c_c00327{bottom:665.068880pt;}
.y3d_c00327{bottom:665.775307pt;}
.y3e_c00327{bottom:666.240267pt;}
.y3f_c00327{bottom:667.326347pt;}
.y40_c00327{bottom:667.563547pt;}
.y41_c00327{bottom:668.077840pt;}
.y42_c00327{bottom:668.779307pt;}
.y43_c00327{bottom:669.407973pt;}
.y44_c00327{bottom:669.751280pt;}
.y2f_c00327{bottom:683.275813pt;}
.y30_c00327{bottom:683.473680pt;}
.y31_c00327{bottom:684.174000pt;}
.y32_c00327{bottom:685.102133pt;}
.y33_c00327{bottom:685.604400pt;}
.y34_c00327{bottom:685.941920pt;}
.y35_c00327{bottom:686.810560pt;}
.y36_c00327{bottom:687.180933pt;}
.y37_c00327{bottom:687.644187pt;}
.y38_c00327{bottom:688.285813pt;}
.y39_c00327{bottom:689.750347pt;}
.y3a_c00327{bottom:690.303573pt;}
.y29_c00327{bottom:703.683227pt;}
.y2a_c00327{bottom:704.854533pt;}
.y2b_c00327{bottom:705.485973pt;}
.y2c_c00327{bottom:706.119040pt;}
.y2d_c00327{bottom:706.874480pt;}
.y2e_c00327{bottom:708.717040pt;}
.y1f_c00327{bottom:723.845333pt;}
.y20_c00327{bottom:724.884027pt;}
.y21_c00327{bottom:725.333307pt;}
.y22_c00327{bottom:726.687307pt;}
.y23_c00327{bottom:727.244080pt;}
.y24_c00327{bottom:728.535707pt;}
.y25_c00327{bottom:729.074267pt;}
.y26_c00327{bottom:729.544373pt;}
.y27_c00327{bottom:730.662933pt;}
.y28_c00327{bottom:731.301307pt;}
.y1c_c00327{bottom:762.966667pt;}
.y1d_c00327{bottom:764.724320pt;}
.y1e_c00327{bottom:766.054088pt;}
.y14_c00327{bottom:798.729813pt;}
.y15_c00327{bottom:800.433867pt;}
.y16_c00327{bottom:802.873307pt;}
.y17_c00327{bottom:804.608133pt;}
.y18_c00327{bottom:805.292800pt;}
.y19_c00327{bottom:805.817893pt;}
.y1a_c00327{bottom:806.860720pt;}
.y1b_c00327{bottom:807.562400pt;}
.y5_c00327{bottom:813.359867pt;}
.y6_c00327{bottom:813.771733pt;}
.y7_c00327{bottom:814.672960pt;}
.y1_c00327{bottom:815.044000pt;}
.y8_c00327{bottom:815.130800pt;}
.y9_c00327{bottom:815.722560pt;}
.y2_c00327{bottom:816.029813pt;}
.ya_c00327{bottom:816.202133pt;}
.yb_c00327{bottom:816.775520pt;}
.yc_c00327{bottom:817.259813pt;}
.yd_c00327{bottom:817.829920pt;}
.y3_c00327{bottom:817.990027pt;}
.ye_c00327{bottom:818.309307pt;}
.yf_c00327{bottom:819.018720pt;}
.y10_c00327{bottom:819.354187pt;}
.y11_c00327{bottom:820.683307pt;}
.y12_c00327{bottom:821.320587pt;}
.y4_c00327{bottom:821.943680pt;}
.y13_c00327{bottom:822.683173pt;}
.h1a_c00327{height:17.733333pt;}
.h1b_c00327{height:18.666667pt;}
.h3_c00327{height:28.005599pt;}
.h16_c00327{height:30.800986pt;}
.h17_c00327{height:45.733333pt;}
.h19_c00327{height:45.734797pt;}
.h18_c00327{height:46.668160pt;}
.h4_c00327{height:48.543039pt;}
.h13_c00327{height:56.937432pt;}
.h14_c00327{height:58.804233pt;}
.ha_c00327{height:58.811759pt;}
.h11_c00327{height:59.740053pt;}
.hc_c00327{height:59.745279pt;}
.h10_c00327{height:60.673491pt;}
.h6_c00327{height:60.678799pt;}
.hd_c00327{height:61.612319pt;}
.he_c00327{height:62.539461pt;}
.h12_c00327{height:62.540368pt;}
.hb_c00327{height:62.545839pt;}
.h15_c00327{height:63.468698pt;}
.hf_c00327{height:63.473806pt;}
.h8_c00327{height:63.479359pt;}
.h7_c00327{height:64.412879pt;}
.h9_c00327{height:66.279919pt;}
.h2_c00327{height:76.548638pt;}
.h5_c00327{height:113.894219pt;}
.h0_c00327{height:896.400000pt;}
.h1_c00327{height:896.666667pt;}
.w0_c00327{width:618.666667pt;}
.x0_c00327{left:0.000000pt;}
.x13_c00327{left:92.473520pt;}
.x5_c00327{left:94.351120pt;}
.x1_c00327{left:97.392000pt;}
.x6_c00327{left:116.011547pt;}
.x1b_c00327{left:133.516000pt;}
.x33_c00327{left:134.845973pt;}
.x59_c00327{left:136.330347pt;}
.x2a_c00327{left:137.582053pt;}
.x82_c00327{left:138.651920pt;}
.xa2_c00327{left:140.548280pt;}
.x2_c00327{left:146.682667pt;}
.x2b_c00327{left:148.542480pt;}
.x8c_c00327{left:152.504887pt;}
.x7b_c00327{left:153.535893pt;}
.x60_c00327{left:160.011973pt;}
.x65_c00327{left:162.162587pt;}
.x7_c00327{left:163.473840pt;}
.x84_c00327{left:167.894667pt;}
.x14_c00327{left:169.939760pt;}
.x8d_c00327{left:171.424973pt;}
.xbb_c00327{left:172.320000pt;}
.x9d_c00327{left:174.370847pt;}
.x92_c00327{left:175.551927pt;}
.x87_c00327{left:178.204000pt;}
.x26_c00327{left:182.304533pt;}
.x1d_c00327{left:185.380000pt;}
.x8_c00327{left:187.566320pt;}
.x4d_c00327{left:189.332560pt;}
.x7c_c00327{left:190.688347pt;}
.x97_c00327{left:192.876687pt;}
.xa3_c00327{left:197.704193pt;}
.x44_c00327{left:199.415600pt;}
.xb5_c00327{left:200.734667pt;}
.xc1_c00327{left:202.150667pt;}
.x6d_c00327{left:203.968533pt;}
.x9e_c00327{left:205.580727pt;}
.x93_c00327{left:206.823053pt;}
.x1e_c00327{left:207.844000pt;}
.x3c_c00327{left:209.742960pt;}
.x53_c00327{left:211.203787pt;}
.x1c_c00327{left:213.409333pt;}
.x7d_c00327{left:214.752560pt;}
.xb6_c00327{left:216.101333pt;}
.x9_c00327{left:218.688267pt;}
.xae_c00327{left:221.613333pt;}
.x5a_c00327{left:222.506560pt;}
.x88_c00327{left:226.757333pt;}
.x61_c00327{left:230.065707pt;}
.x27_c00327{left:234.992320pt;}
.x34_c00327{left:235.905360pt;}
.x72_c00327{left:237.070400pt;}
.x2c_c00327{left:238.968747pt;}
.x66_c00327{left:242.829600pt;}
.xaf_c00327{left:243.749333pt;}
.x3_c00327{left:244.693333pt;}
.xc2_c00327{left:245.594667pt;}
.x9f_c00327{left:247.353893pt;}
.x3d_c00327{left:248.314613pt;}
.x54_c00327{left:251.267520pt;}
.x98_c00327{left:252.391367pt;}
.x45_c00327{left:255.285840pt;}
.x5b_c00327{left:256.310587pt;}
.xbc_c00327{left:258.720000pt;}
.xa4_c00327{left:259.830993pt;}
.x62_c00327{left:263.709733pt;}
.x28_c00327{left:266.495147pt;}
.xa8_c00327{left:269.672000pt;}
.xa_c00327{left:274.137387pt;}
.x1f_c00327{left:275.544000pt;}
.x35_c00327{left:277.429173pt;}
.x73_c00327{left:279.825707pt;}
.x15_c00327{left:280.840667pt;}
.x2d_c00327{left:285.626613pt;}
.x85_c00327{left:287.940000pt;}
.xb7_c00327{left:290.986667pt;}
.x94_c00327{left:293.225687pt;}
.x8e_c00327{left:294.806233pt;}
.xb0_c00327{left:297.940000pt;}
.xb_c00327{left:299.619227pt;}
.x20_c00327{left:303.382667pt;}
.x36_c00327{left:304.745467pt;}
.x4e_c00327{left:305.764533pt;}
.x67_c00327{left:306.923947pt;}
.x55_c00327{left:311.224453pt;}
.xa0_c00327{left:313.121833pt;}
.x99_c00327{left:314.270147pt;}
.x74_c00327{left:315.805413pt;}
.x63_c00327{left:319.177707pt;}
.xbd_c00327{left:320.400000pt;}
.xc6_c00327{left:321.428992pt;}
.x46_c00327{left:325.559333pt;}
.x89_c00327{left:328.266667pt;}
.xc_c00327{left:329.591813pt;}
.x68_c00327{left:332.864400pt;}
.x2e_c00327{left:333.860533pt;}
.x47_c00327{left:337.945173pt;}
.x56_c00327{left:339.900827pt;}
.x29_c00327{left:343.283680pt;}
.x7e_c00327{left:344.616133pt;}
.x8f_c00327{left:347.859547pt;}
.xb1_c00327{left:350.077333pt;}
.x4f_c00327{left:351.369520pt;}
.xba_c00327{left:353.122432pt;}
.xd_c00327{left:354.828320pt;}
.x3e_c00327{left:356.406400pt;}
.x69_c00327{left:358.247440pt;}
.x16_c00327{left:359.712187pt;}
.x75_c00327{left:361.659840pt;}
.x6e_c00327{left:365.228080pt;}
.x21_c00327{left:367.964000pt;}
.xa9_c00327{left:369.273333pt;}
.xbe_c00327{left:370.800000pt;}
.x48_c00327{left:372.779893pt;}
.x2f_c00327{left:380.210400pt;}
.x37_c00327{left:382.580800pt;}
.xb2_c00327{left:383.677333pt;}
.x9a_c00327{left:384.651973pt;}
.x49_c00327{left:385.708400pt;}
.x90_c00327{left:389.653353pt;}
.x17_c00327{left:390.810933pt;}
.xe_c00327{left:392.166400pt;}
.x22_c00327{left:394.892000pt;}
.x57_c00327{left:395.840187pt;}
.x5c_c00327{left:397.929920pt;}
.x3f_c00327{left:399.610320pt;}
.x79_c00327{left:401.576373pt;}
.xaa_c00327{left:402.876000pt;}
.x6f_c00327{left:403.943173pt;}
.xb8_c00327{left:406.902667pt;}
.x76_c00327{left:407.994320pt;}
.xf_c00327{left:409.806747pt;}
.x38_c00327{left:412.830613pt;}
.x18_c00327{left:414.664640pt;}
.x30_c00327{left:415.893173pt;}
.xc7_c00327{left:417.189760pt;}
.x23_c00327{left:418.397333pt;}
.xb3_c00327{left:420.629333pt;}
.x58_c00327{left:423.205840pt;}
.x9b_c00327{left:424.491107pt;}
.x70_c00327{left:426.258293pt;}
.xc3_c00327{left:427.521333pt;}
.xa5_c00327{left:428.601260pt;}
.x40_c00327{left:430.336160pt;}
.x4a_c00327{left:432.267573pt;}
.x8a_c00327{left:433.814667pt;}
.x6a_c00327{left:436.318133pt;}
.x91_c00327{left:438.134327pt;}
.x7f_c00327{left:440.859653pt;}
.x4_c00327{left:442.376000pt;}
.xbf_c00327{left:445.920000pt;}
.xc4_c00327{left:446.964000pt;}
.x95_c00327{left:452.113380pt;}
.x39_c00327{left:454.106427pt;}
.x41_c00327{left:455.793680pt;}
.x5d_c00327{left:457.709360pt;}
.x80_c00327{left:460.056613pt;}
.x19_c00327{left:462.070747pt;}
.x9c_c00327{left:465.055593pt;}
.x50_c00327{left:467.770853pt;}
.x86_c00327{left:471.532000pt;}
.x24_c00327{left:474.325333pt;}
.x4b_c00327{left:476.045333pt;}
.x10_c00327{left:479.730800pt;}
.x77_c00327{left:481.910000pt;}
.x5e_c00327{left:482.892720pt;}
.xc0_c00327{left:484.080000pt;}
.x71_c00327{left:489.069973pt;}
.x3a_c00327{left:491.075307pt;}
.xab_c00327{left:492.392000pt;}
.x1a_c00327{left:493.953467pt;}
.x42_c00327{left:495.796080pt;}
.x31_c00327{left:497.256427pt;}
.x6b_c00327{left:498.978987pt;}
.xa6_c00327{left:501.007187pt;}
.xb9_c00327{left:503.869333pt;}
.x25_c00327{left:506.244000pt;}
.xc5_c00327{left:507.920000pt;}
.x3b_c00327{left:511.241840pt;}
.xac_c00327{left:512.284000pt;}
.x11_c00327{left:513.262133pt;}
.x51_c00327{left:514.807947pt;}
.x5f_c00327{left:516.278053pt;}
.xa7_c00327{left:519.306673pt;}
.x6c_c00327{left:520.325547pt;}
.x43_c00327{left:521.794960pt;}
.xb4_c00327{left:523.114667pt;}
.x32_c00327{left:527.985653pt;}
.x78_c00327{left:531.130213pt;}
.x64_c00327{left:533.535413pt;}
.x7a_c00327{left:534.440320pt;}
.x52_c00327{left:536.411013pt;}
.x8b_c00327{left:541.685333pt;}
.x83_c00327{left:542.892400pt;}
.x4c_c00327{left:544.145387pt;}
.x81_c00327{left:546.013573pt;}
.xa1_c00327{left:547.849267pt;}
.x96_c00327{left:551.968193pt;}
.xad_c00327{left:554.564000pt;}
.x12_c00327{left:584.992907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m3f_c00328{transform:matrix(0.010855,-0.000087,0.002000,0.249992,0,0);-ms-transform:matrix(0.010855,-0.000087,0.002000,0.249992,0,0);-webkit-transform:matrix(0.010855,-0.000087,0.002000,0.249992,0,0);}
.m3e_c00328{transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);-ms-transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);-webkit-transform:matrix(0.013840,-0.000111,0.002000,0.249992,0,0);}
.m159_c00328{transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022265,0.000000,0.000000,0.250000,0,0);}
.mcb_c00328{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);}
.md5_c00328{transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.102907,-0.000823,0.002000,0.249992,0,0);-ms-transform:matrix(0.102907,-0.000823,0.002000,0.249992,0,0);-webkit-transform:matrix(0.102907,-0.000823,0.002000,0.249992,0,0);}
.mcc_c00328{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);}
.mc1_c00328{transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.121260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121260,0.000000,0.000000,0.250000,0,0);}
.m130_c00328{transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130890,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.134736,-0.001078,0.002000,0.249992,0,0);-ms-transform:matrix(0.134736,-0.001078,0.002000,0.249992,0,0);-webkit-transform:matrix(0.134736,-0.001078,0.002000,0.249992,0,0);}
.mf7_c00328{transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);}
.mdd_c00328{transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);}
.m91_c00328{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);}
.mf6_c00328{transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.144055,-0.001152,0.002000,0.249992,0,0);-ms-transform:matrix(0.144055,-0.001152,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144055,-0.001152,0.002000,0.249992,0,0);}
.m66_c00328{transform:matrix(0.144540,-0.001156,0.002000,0.249992,0,0);-ms-transform:matrix(0.144540,-0.001156,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144540,-0.001156,0.002000,0.249992,0,0);}
.m34_c00328{transform:matrix(0.145480,-0.001164,0.002000,0.249992,0,0);-ms-transform:matrix(0.145480,-0.001164,0.002000,0.249992,0,0);-webkit-transform:matrix(0.145480,-0.001164,0.002000,0.249992,0,0);}
.m12e_c00328{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);}
.mac_c00328{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);}
.m125_c00328{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);}
.m15_c00328{transform:matrix(0.148831,-0.001042,0.001750,0.249994,0,0);-ms-transform:matrix(0.148831,-0.001042,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148831,-0.001042,0.001750,0.249994,0,0);}
.mbd_c00328{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);}
.m109_c00328{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);}
.m110_c00328{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);}
.m127_c00328{transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00328{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);}
.m128_c00328{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);}
.m149_c00328{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);}
.m147_c00328{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);}
.mff_c00328{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);}
.me6_c00328{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);}
.m4c_c00328{transform:matrix(0.156020,-0.001248,0.002000,0.249992,0,0);-ms-transform:matrix(0.156020,-0.001248,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156020,-0.001248,0.002000,0.249992,0,0);}
.m9b_c00328{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);}
.m7c_c00328{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);}
.mc7_c00328{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);}
.m27_c00328{transform:matrix(0.158225,-0.001266,0.002000,0.249992,0,0);-ms-transform:matrix(0.158225,-0.001266,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158225,-0.001266,0.002000,0.249992,0,0);}
.mb2_c00328{transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.159295,-0.001274,0.002000,0.249992,0,0);-ms-transform:matrix(0.159295,-0.001274,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159295,-0.001274,0.002000,0.249992,0,0);}
.m94_c00328{transform:matrix(0.159370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159370,0.000000,0.000000,0.250000,0,0);}
.me9_c00328{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);}
.m121_c00328{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);}
.m25_c00328{transform:matrix(0.159785,-0.001278,0.002000,0.249992,0,0);-ms-transform:matrix(0.159785,-0.001278,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159785,-0.001278,0.002000,0.249992,0,0);}
.mde_c00328{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);}
.m132_c00328{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);}
.mb9_c00328{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);}
.mb7_c00328{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);}
.meb_c00328{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);}
.mf4_c00328{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);}
.m11f_c00328{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);}
.mc6_c00328{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);}
.m39_c00328{transform:matrix(0.164885,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164885,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164885,-0.001319,0.002000,0.249992,0,0);}
.m69_c00328{transform:matrix(0.164890,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164890,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164890,-0.001319,0.002000,0.249992,0,0);}
.me8_c00328{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);}
.mc4_c00328{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);}
.mc2_c00328{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);}
.ma1_c00328{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);}
.m141_c00328{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);}
.m47_c00328{transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);-ms-transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);}
.me3_c00328{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);}
.mbe_c00328{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);}
.m1c_c00328{transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);-ms-transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170500,-0.001364,0.002000,0.249992,0,0);}
.m11e_c00328{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);}
.m67_c00328{transform:matrix(0.170870,-0.001367,0.002000,0.249992,0,0);-ms-transform:matrix(0.170870,-0.001367,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170870,-0.001367,0.002000,0.249992,0,0);}
.m9d_c00328{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);}
.m16_c00328{transform:matrix(0.171720,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171720,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171720,-0.001374,0.002000,0.249992,0,0);}
.m11a_c00328{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);}
.m6b_c00328{transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);}
.mb5_c00328{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);}
.m19_c00328{transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172444,-0.001380,0.002000,0.249992,0,0);}
.mbb_c00328{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);}
.m37_c00328{transform:matrix(0.172834,-0.001383,0.002000,0.249992,0,0);-ms-transform:matrix(0.172834,-0.001383,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172834,-0.001383,0.002000,0.249992,0,0);}
.mb4_c00328{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);}
.mba_c00328{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);}
.m33_c00328{transform:matrix(0.173764,-0.001390,0.002000,0.249992,0,0);-ms-transform:matrix(0.173764,-0.001390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173764,-0.001390,0.002000,0.249992,0,0);}
.m11c_c00328{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);}
.m21_c00328{transform:matrix(0.174134,-0.001393,0.002000,0.249992,0,0);-ms-transform:matrix(0.174134,-0.001393,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174134,-0.001393,0.002000,0.249992,0,0);}
.mdb_c00328{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);}
.me0_c00328{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);}
.m13d_c00328{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);}
.m89_c00328{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);}
.mfa_c00328{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);}
.mda_c00328{transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);}
.m10d_c00328{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);}
.m2f_c00328{transform:matrix(0.175754,-0.001406,0.002000,0.249992,0,0);-ms-transform:matrix(0.175754,-0.001406,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175754,-0.001406,0.002000,0.249992,0,0);}
.m12d_c00328{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);}
.m126_c00328{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);}
.m1e_c00328{transform:matrix(0.176439,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176439,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176439,-0.001412,0.002000,0.249992,0,0);}
.m131_c00328{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);}
.m106_c00328{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);}
.m51_c00328{transform:matrix(0.177159,-0.001417,0.002000,0.249992,0,0);-ms-transform:matrix(0.177159,-0.001417,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177159,-0.001417,0.002000,0.249992,0,0);}
.mab_c00328{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);}
.me2_c00328{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);}
.m68_c00328{transform:matrix(0.178584,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178584,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178584,-0.001429,0.002000,0.249992,0,0);}
.m10c_c00328{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);}
.ma3_c00328{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);}
.m12f_c00328{transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);}
.mbc_c00328{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);}
.m100_c00328{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);}
.m103_c00328{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);}
.m12_c00328{transform:matrix(0.180696,-0.001265,0.001750,0.249994,0,0);-ms-transform:matrix(0.180696,-0.001265,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180696,-0.001265,0.001750,0.249994,0,0);}
.m104_c00328{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);}
.m113_c00328{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);}
.m135_c00328{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.181789,-0.001454,0.002000,0.249992,0,0);-ms-transform:matrix(0.181789,-0.001454,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181789,-0.001454,0.002000,0.249992,0,0);}
.m10e_c00328{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);}
.m13b_c00328{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);}
.ma7_c00328{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);}
.m9a_c00328{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);}
.mbf_c00328{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);}
.mea_c00328{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);}
.m38_c00328{transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);-ms-transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);}
.m119_c00328{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);}
.m80_c00328{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);}
.m46_c00328{transform:matrix(0.184029,-0.001472,0.002000,0.249992,0,0);-ms-transform:matrix(0.184029,-0.001472,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184029,-0.001472,0.002000,0.249992,0,0);}
.m36_c00328{transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);-ms-transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184534,-0.001476,0.002000,0.249992,0,0);}
.m59_c00328{transform:matrix(0.184574,-0.001477,0.002000,0.249992,0,0);-ms-transform:matrix(0.184574,-0.001477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184574,-0.001477,0.002000,0.249992,0,0);}
.m11b_c00328{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);}
.m73_c00328{transform:matrix(0.185469,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185469,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185469,-0.001484,0.002000,0.249992,0,0);}
.m107_c00328{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);}
.m108_c00328{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);}
.m102_c00328{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);}
.m1b_c00328{transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);-ms-transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186229,-0.001490,0.002000,0.249992,0,0);}
.m18_c00328{transform:matrix(0.186344,-0.001491,0.002000,0.249992,0,0);-ms-transform:matrix(0.186344,-0.001491,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186344,-0.001491,0.002000,0.249992,0,0);}
.mb6_c00328{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);}
.mf5_c00328{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);}
.m3c_c00328{transform:matrix(0.186664,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186664,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186664,-0.001493,0.002000,0.249992,0,0);}
.m9e_c00328{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);}
.m118_c00328{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);}
.m4e_c00328{transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);}
.m145_c00328{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);}
.maf_c00328{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);}
.m120_c00328{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);}
.m10b_c00328{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);}
.m56_c00328{transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);}
.m50_c00328{transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);-ms-transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);}
.mdf_c00328{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);}
.m1f_c00328{transform:matrix(0.188069,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188069,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188069,-0.001505,0.002000,0.249992,0,0);}
.m1a_c00328{transform:matrix(0.188084,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188084,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188084,-0.001505,0.002000,0.249992,0,0);}
.m64_c00328{transform:matrix(0.188149,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188149,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188149,-0.001505,0.002000,0.249992,0,0);}
.m77_c00328{transform:matrix(0.188654,-0.001509,0.002000,0.249992,0,0);-ms-transform:matrix(0.188654,-0.001509,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188654,-0.001509,0.002000,0.249992,0,0);}
.mc8_c00328{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_c00328{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);}
.m92_c00328{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);}
.m5d_c00328{transform:matrix(0.189624,-0.001517,0.002000,0.249992,0,0);-ms-transform:matrix(0.189624,-0.001517,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189624,-0.001517,0.002000,0.249992,0,0);}
.m3b_c00328{transform:matrix(0.189974,-0.001520,0.002000,0.249992,0,0);-ms-transform:matrix(0.189974,-0.001520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189974,-0.001520,0.002000,0.249992,0,0);}
.m9c_c00328{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);}
.m32_c00328{transform:matrix(0.190544,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190544,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190544,-0.001524,0.002000,0.249992,0,0);}
.m54_c00328{transform:matrix(0.190594,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190594,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190594,-0.001525,0.002000,0.249992,0,0);}
.m63_c00328{transform:matrix(0.190669,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190669,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190669,-0.001525,0.002000,0.249992,0,0);}
.m3d_c00328{transform:matrix(0.190859,-0.001527,0.002000,0.249992,0,0);-ms-transform:matrix(0.190859,-0.001527,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190859,-0.001527,0.002000,0.249992,0,0);}
.m58_c00328{transform:matrix(0.190874,-0.001527,0.002000,0.249992,0,0);-ms-transform:matrix(0.190874,-0.001527,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190874,-0.001527,0.002000,0.249992,0,0);}
.ma8_c00328{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);}
.m93_c00328{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);}
.mc3_c00328{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);}
.m12c_c00328{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);}
.m26_c00328{transform:matrix(0.191574,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191574,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191574,-0.001533,0.002000,0.249992,0,0);}
.m28_c00328{transform:matrix(0.191684,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191684,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191684,-0.001533,0.002000,0.249992,0,0);}
.m5b_c00328{transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191749,-0.001534,0.002000,0.249992,0,0);}
.m112_c00328{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);}
.m5e_c00328{transform:matrix(0.192384,-0.001539,0.002000,0.249992,0,0);-ms-transform:matrix(0.192384,-0.001539,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192384,-0.001539,0.002000,0.249992,0,0);}
.mad_c00328{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);}
.mc5_c00328{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);}
.m72_c00328{transform:matrix(0.192924,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192924,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192924,-0.001543,0.002000,0.249992,0,0);}
.m4a_c00328{transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193519,-0.001548,0.002000,0.249992,0,0);}
.m111_c00328{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);}
.m90_c00328{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);}
.mc9_c00328{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);}
.m153_c00328{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);}
.mec_c00328{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);}
.m148_c00328{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);}
.m105_c00328{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);}
.m13e_c00328{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);}
.m136_c00328{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);}
.m11d_c00328{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);}
.md7_c00328{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);}
.ma6_c00328{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);}
.mf9_c00328{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);}
.m158_c00328{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);}
.m96_c00328{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);}
.m2d_c00328{transform:matrix(0.197679,-0.001581,0.002000,0.249992,0,0);-ms-transform:matrix(0.197679,-0.001581,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197679,-0.001581,0.002000,0.249992,0,0);}
.m15e_c00328{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);}
.mfb_c00328{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);}
.m2c_c00328{transform:matrix(0.198259,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198259,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198259,-0.001586,0.002000,0.249992,0,0);}
.m155_c00328{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);}
.m17_c00328{transform:matrix(0.198644,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198644,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198644,-0.001589,0.002000,0.249992,0,0);}
.m87_c00328{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);}
.m71_c00328{transform:matrix(0.199954,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.199954,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199954,-0.001600,0.002000,0.249992,0,0);}
.m3a_c00328{transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199984,-0.001600,0.002000,0.249992,0,0);}
.ma9_c00328{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);}
.m99_c00328{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);}
.ma2_c00328{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);}
.m2b_c00328{transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);-ms-transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201179,-0.001609,0.002000,0.249992,0,0);}
.m83_c00328{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);}
.m57_c00328{transform:matrix(0.201259,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201259,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201259,-0.001610,0.002000,0.249992,0,0);}
.m44_c00328{transform:matrix(0.201269,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201269,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201269,-0.001610,0.002000,0.249992,0,0);}
.m55_c00328{transform:matrix(0.201579,-0.001613,0.002000,0.249992,0,0);-ms-transform:matrix(0.201579,-0.001613,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201579,-0.001613,0.002000,0.249992,0,0);}
.m8b_c00328{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);}
.m20_c00328{transform:matrix(0.202029,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.202029,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202029,-0.001616,0.002000,0.249992,0,0);}
.m23_c00328{transform:matrix(0.203148,-0.001625,0.002000,0.249992,0,0);-ms-transform:matrix(0.203148,-0.001625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203148,-0.001625,0.002000,0.249992,0,0);}
.m143_c00328{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);}
.m116_c00328{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);}
.m7d_c00328{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);}
.mcd_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);}
.mf2_c00328{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);}
.me1_c00328{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);}
.m85_c00328{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);}
.m84_c00328{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);}
.m5c_c00328{transform:matrix(0.204938,-0.001640,0.002000,0.249992,0,0);-ms-transform:matrix(0.204938,-0.001640,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204938,-0.001640,0.002000,0.249992,0,0);}
.m134_c00328{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);}
.mca_c00328{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);}
.m151_c00328{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.mc0_c00328{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);}
.m154_c00328{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);}
.m137_c00328{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);}
.mdc_c00328{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);}
.me7_c00328{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);}
.mf3_c00328{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);}
.m15f_c00328{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);}
.m53_c00328{transform:matrix(0.208888,-0.001671,0.002000,0.249992,0,0);-ms-transform:matrix(0.208888,-0.001671,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208888,-0.001671,0.002000,0.249992,0,0);}
.me4_c00328{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);}
.mb3_c00328{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);}
.m35_c00328{transform:matrix(0.209528,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209528,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209528,-0.001676,0.002000,0.249992,0,0);}
.m62_c00328{transform:matrix(0.209733,-0.001678,0.002000,0.249992,0,0);-ms-transform:matrix(0.209733,-0.001678,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209733,-0.001678,0.002000,0.249992,0,0);}
.m40_c00328{transform:matrix(0.210028,-0.001680,0.002000,0.249992,0,0);-ms-transform:matrix(0.210028,-0.001680,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210028,-0.001680,0.002000,0.249992,0,0);}
.mf8_c00328{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);}
.mae_c00328{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);}
.m70_c00328{transform:matrix(0.210333,-0.001683,0.002000,0.249992,0,0);-ms-transform:matrix(0.210333,-0.001683,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210333,-0.001683,0.002000,0.249992,0,0);}
.m6d_c00328{transform:matrix(0.210563,-0.001685,0.002000,0.249992,0,0);-ms-transform:matrix(0.210563,-0.001685,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210563,-0.001685,0.002000,0.249992,0,0);}
.m142_c00328{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);}
.m114_c00328{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);}
.m123_c00328{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);}
.m12b_c00328{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);}
.m22_c00328{transform:matrix(0.212028,-0.001696,0.002000,0.249992,0,0);-ms-transform:matrix(0.212028,-0.001696,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212028,-0.001696,0.002000,0.249992,0,0);}
.m2a_c00328{transform:matrix(0.212678,-0.001701,0.002000,0.249992,0,0);-ms-transform:matrix(0.212678,-0.001701,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212678,-0.001701,0.002000,0.249992,0,0);}
.m60_c00328{transform:matrix(0.213168,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213168,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213168,-0.001705,0.002000,0.249992,0,0);}
.md6_c00328{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);}
.m6e_c00328{transform:matrix(0.215648,-0.001725,0.002000,0.249992,0,0);-ms-transform:matrix(0.215648,-0.001725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215648,-0.001725,0.002000,0.249992,0,0);}
.md0_c00328{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);}
.m8f_c00328{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);}
.m13f_c00328{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);}
.m45_c00328{transform:matrix(0.216608,-0.001733,0.002000,0.249992,0,0);-ms-transform:matrix(0.216608,-0.001733,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216608,-0.001733,0.002000,0.249992,0,0);}
.md4_c00328{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);}
.m5f_c00328{transform:matrix(0.217023,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.217023,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217023,-0.001736,0.002000,0.249992,0,0);}
.m9f_c00328{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);}
.mef_c00328{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);}
.m124_c00328{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);}
.med_c00328{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);}
.m138_c00328{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);}
.m88_c00328{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);}
.m13c_c00328{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);}
.m4f_c00328{transform:matrix(0.219843,-0.001759,0.002000,0.249992,0,0);-ms-transform:matrix(0.219843,-0.001759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219843,-0.001759,0.002000,0.249992,0,0);}
.m4b_c00328{transform:matrix(0.219893,-0.001759,0.002000,0.249992,0,0);-ms-transform:matrix(0.219893,-0.001759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219893,-0.001759,0.002000,0.249992,0,0);}
.m24_c00328{transform:matrix(0.219958,-0.001760,0.002000,0.249992,0,0);-ms-transform:matrix(0.219958,-0.001760,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219958,-0.001760,0.002000,0.249992,0,0);}
.m1d_c00328{transform:matrix(0.221433,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221433,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221433,-0.001771,0.002000,0.249992,0,0);}
.m13a_c00328{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);}
.m2e_c00328{transform:matrix(0.221703,-0.001774,0.002000,0.249992,0,0);-ms-transform:matrix(0.221703,-0.001774,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221703,-0.001774,0.002000,0.249992,0,0);}
.m10a_c00328{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);}
.m43_c00328{transform:matrix(0.222353,-0.001779,0.002000,0.249992,0,0);-ms-transform:matrix(0.222353,-0.001779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222353,-0.001779,0.002000,0.249992,0,0);}
.m29_c00328{transform:matrix(0.222458,-0.001780,0.002000,0.249992,0,0);-ms-transform:matrix(0.222458,-0.001780,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222458,-0.001780,0.002000,0.249992,0,0);}
.m117_c00328{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);}
.mf0_c00328{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.m8e_c00328{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);}
.m139_c00328{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);}
.mf1_c00328{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);}
.m48_c00328{transform:matrix(0.225478,-0.001804,0.002000,0.249992,0,0);-ms-transform:matrix(0.225478,-0.001804,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225478,-0.001804,0.002000,0.249992,0,0);}
.m122_c00328{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_c00328{transform:matrix(0.226188,-0.001810,0.002000,0.249992,0,0);-ms-transform:matrix(0.226188,-0.001810,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226188,-0.001810,0.002000,0.249992,0,0);}
.m11_c00328{transform:matrix(0.227949,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.227949,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227949,-0.001596,0.001750,0.249994,0,0);}
.m7f_c00328{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);}
.m97_c00328{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);}
.ma0_c00328{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);}
.m7a_c00328{transform:matrix(0.229913,-0.001839,0.002000,0.249992,0,0);-ms-transform:matrix(0.229913,-0.001839,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229913,-0.001839,0.002000,0.249992,0,0);}
.m15d_c00328{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);}
.m15b_c00328{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);}
.me5_c00328{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);}
.mce_c00328{transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.233439,-0.001634,0.001750,0.249994,0,0);-ms-transform:matrix(0.233439,-0.001634,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233439,-0.001634,0.001750,0.249994,0,0);}
.mfc_c00328{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.234844,-0.001644,0.001750,0.249994,0,0);-ms-transform:matrix(0.234844,-0.001644,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234844,-0.001644,0.001750,0.249994,0,0);}
.m31_c00328{transform:matrix(0.236487,-0.001892,0.002000,0.249992,0,0);-ms-transform:matrix(0.236487,-0.001892,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236487,-0.001892,0.002000,0.249992,0,0);}
.mb8_c00328{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m152_c00328{transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.238632,-0.001909,0.002000,0.249992,0,0);-ms-transform:matrix(0.238632,-0.001909,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238632,-0.001909,0.002000,0.249992,0,0);}
.m78_c00328{transform:matrix(0.239272,-0.001914,0.002000,0.249992,0,0);-ms-transform:matrix(0.239272,-0.001914,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239272,-0.001914,0.002000,0.249992,0,0);}
.m14b_c00328{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);}
.m74_c00328{transform:matrix(0.239867,-0.001919,0.002000,0.249992,0,0);-ms-transform:matrix(0.239867,-0.001919,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239867,-0.001919,0.002000,0.249992,0,0);}
.m146_c00328{transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);}
.m95_c00328{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);}
.m75_c00328{transform:matrix(0.240682,-0.001925,0.002000,0.249992,0,0);-ms-transform:matrix(0.240682,-0.001925,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240682,-0.001925,0.002000,0.249992,0,0);}
.md1_c00328{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.m15c_c00328{transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);}
.m115_c00328{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);}
.m129_c00328{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);}
.m82_c00328{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);}
.mfd_c00328{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);}
.m4d_c00328{transform:matrix(0.247572,-0.001981,0.002000,0.249992,0,0);-ms-transform:matrix(0.247572,-0.001981,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247572,-0.001981,0.002000,0.249992,0,0);}
.m8c_c00328{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m8a_c00328{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m76_c00328{transform:matrix(0.249162,-0.001993,0.002000,0.249992,0,0);-ms-transform:matrix(0.249162,-0.001993,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249162,-0.001993,0.002000,0.249992,0,0);}
.m81_c00328{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);}
.md2_c00328{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m5a_c00328{transform:matrix(0.250067,-0.002001,0.002000,0.249992,0,0);-ms-transform:matrix(0.250067,-0.002001,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250067,-0.002001,0.002000,0.249992,0,0);}
.maa_c00328{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m156_c00328{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m140_c00328{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m14f_c00328{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);}
.m8d_c00328{transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256665,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);-ms-transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);}
.m86_c00328{transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.258749,-0.001811,0.001750,0.249994,0,0);-ms-transform:matrix(0.258749,-0.001811,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258749,-0.001811,0.001750,0.249994,0,0);}
.m14e_c00328{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m14c_c00328{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);}
.m14a_c00328{transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);}
.m98_c00328{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);}
.m157_c00328{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);}
.m133_c00328{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.266161,-0.002129,0.002000,0.249992,0,0);-ms-transform:matrix(0.266161,-0.002129,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266161,-0.002129,0.002000,0.249992,0,0);}
.md9_c00328{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);}
.m42_c00328{transform:matrix(0.268816,-0.002151,0.002000,0.249992,0,0);-ms-transform:matrix(0.268816,-0.002151,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268816,-0.002151,0.002000,0.249992,0,0);}
.m14d_c00328{transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270875,0.000000,0.000000,0.250000,0,0);}
.m79_c00328{transform:matrix(0.278326,-0.002227,0.002000,0.249992,0,0);-ms-transform:matrix(0.278326,-0.002227,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278326,-0.002227,0.002000,0.249992,0,0);}
.m150_c00328{transform:matrix(0.278515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278515,0.000000,0.000000,0.250000,0,0);}
.m144_c00328{transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);}
.md3_c00328{transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00328{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.m15a_c00328{transform:matrix(0.284780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284780,0.000000,0.000000,0.250000,0,0);}
.mb1_c00328{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.m12a_c00328{transform:matrix(0.292480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292480,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.293043,-0.002051,0.001750,0.249994,0,0);-ms-transform:matrix(0.293043,-0.002051,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293043,-0.002051,0.001750,0.249994,0,0);}
.mcf_c00328{transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295970,0.000000,0.000000,0.250000,0,0);}
.mb0_c00328{transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);}
.m101_c00328{transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307815,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.310117,-0.002171,0.001750,0.249994,0,0);-ms-transform:matrix(0.310117,-0.002171,0.001750,0.249994,0,0);-webkit-transform:matrix(0.310117,-0.002171,0.001750,0.249994,0,0);}
.m7b_c00328{transform:matrix(0.311995,-0.002496,0.002000,0.249992,0,0);-ms-transform:matrix(0.311995,-0.002496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.311995,-0.002496,0.002000,0.249992,0,0);}
.md8_c00328{transform:matrix(0.315975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315975,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.328982,-0.002303,0.001750,0.249994,0,0);-ms-transform:matrix(0.328982,-0.002303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.328982,-0.002303,0.001750,0.249994,0,0);}
.mee_c00328{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);}
.m10f_c00328{transform:matrix(0.345415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345415,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.351376,-0.002460,0.001750,0.249994,0,0);-ms-transform:matrix(0.351376,-0.002460,0.001750,0.249994,0,0);-webkit-transform:matrix(0.351376,-0.002460,0.001750,0.249994,0,0);}
.m6f_c00328{transform:matrix(0.351534,-0.002812,0.002000,0.249992,0,0);-ms-transform:matrix(0.351534,-0.002812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.351534,-0.002812,0.002000,0.249992,0,0);}
.mfe_c00328{transform:matrix(0.355885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355885,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.370666,-0.002595,0.001750,0.249994,0,0);-ms-transform:matrix(0.370666,-0.002595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.370666,-0.002595,0.001750,0.249994,0,0);}
.m7_c00328{transform:matrix(0.389785,-0.002728,0.001750,0.249994,0,0);-ms-transform:matrix(0.389785,-0.002728,0.001750,0.249994,0,0);-webkit-transform:matrix(0.389785,-0.002728,0.001750,0.249994,0,0);}
.mb_c00328{transform:matrix(0.452544,-0.003168,0.001750,0.249994,0,0);-ms-transform:matrix(0.452544,-0.003168,0.001750,0.249994,0,0);-webkit-transform:matrix(0.452544,-0.003168,0.001750,0.249994,0,0);}
.m2_c00328{transform:matrix(0.539652,-0.003778,0.001750,0.249994,0,0);-ms-transform:matrix(0.539652,-0.003778,0.001750,0.249994,0,0);-webkit-transform:matrix(0.539652,-0.003778,0.001750,0.249994,0,0);}
.mc_c00328{transform:matrix(0.649509,-0.004547,0.001750,0.249994,0,0);-ms-transform:matrix(0.649509,-0.004547,0.001750,0.249994,0,0);-webkit-transform:matrix(0.649509,-0.004547,0.001750,0.249994,0,0);}
.m0_c00328{transform:matrix(0.672695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672695,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.771891,-0.005403,0.001750,0.249994,0,0);-ms-transform:matrix(0.771891,-0.005403,0.001750,0.249994,0,0);-webkit-transform:matrix(0.771891,-0.005403,0.001750,0.249994,0,0);}
.m3_c00328{transform:matrix(0.791256,-0.005539,0.001750,0.249994,0,0);-ms-transform:matrix(0.791256,-0.005539,0.001750,0.249994,0,0);-webkit-transform:matrix(0.791256,-0.005539,0.001750,0.249994,0,0);}
.m5_c00328{transform:matrix(0.799285,-0.005595,0.001750,0.249994,0,0);-ms-transform:matrix(0.799285,-0.005595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.799285,-0.005595,0.001750,0.249994,0,0);}
.m9_c00328{transform:matrix(0.991941,-0.006944,0.001750,0.249994,0,0);-ms-transform:matrix(0.991941,-0.006944,0.001750,0.249994,0,0);-webkit-transform:matrix(0.991941,-0.006944,0.001750,0.249994,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;}
.fs1_c00328{font-size:48.301183px;}
.fs15_c00328{font-size:49.350000px;}
.fs16_c00328{font-size:51.450000px;}
.fs14_c00328{font-size:52.500000px;}
.fs12_c00328{font-size:53.550000px;}
.fs13_c00328{font-size:55.650000px;}
.fs0_c00328{font-size:59.850000px;}
.fsa_c00328{font-size:60.900000px;}
.fsf_c00328{font-size:61.950000px;}
.fs8_c00328{font-size:61.951982px;}
.fs9_c00328{font-size:63.002016px;}
.fs5_c00328{font-size:64.052050px;}
.fs10_c00328{font-size:66.150000px;}
.fs4_c00328{font-size:67.202150px;}
.fsd_c00328{font-size:68.250000px;}
.fse_c00328{font-size:69.300000px;}
.fs11_c00328{font-size:70.350000px;}
.fs6_c00328{font-size:70.352251px;}
.fsc_c00328{font-size:71.400000px;}
.fs7_c00328{font-size:71.402285px;}
.fsb_c00328{font-size:72.450000px;}
.fs3_c00328{font-size:114.452804px;}
.fs2_c00328{font-size:141.753473px;}
.y0_c00328{bottom:0.000000px;}
.y90_c00328{bottom:145.000500px;}
.y8d_c00328{bottom:168.078000px;}
.y8f_c00328{bottom:169.042500px;}
.y8c_c00328{bottom:185.994000px;}
.y8e_c00328{bottom:186.460500px;}
.y91_c00328{bottom:203.580000px;}
.y8b_c00328{bottom:256.719000px;}
.y8a_c00328{bottom:278.451000px;}
.y89_c00328{bottom:301.650000px;}
.y88_c00328{bottom:324.063000px;}
.y87_c00328{bottom:347.017500px;}
.y86_c00328{bottom:370.234500px;}
.y85_c00328{bottom:392.881500px;}
.y84_c00328{bottom:415.561500px;}
.y83_c00328{bottom:438.240000px;}
.y82_c00328{bottom:461.563500px;}
.y81_c00328{bottom:484.198500px;}
.y80_c00328{bottom:506.851500px;}
.y7f_c00328{bottom:530.040000px;}
.y7e_c00328{bottom:552.658500px;}
.y7d_c00328{bottom:575.287500px;}
.y7c_c00328{bottom:598.015500px;}
.y79_c00328{bottom:620.291712px;}
.y7a_c00328{bottom:620.292168px;}
.y78_c00328{bottom:620.292324px;}
.y77_c00328{bottom:620.292528px;}
.y76_c00328{bottom:620.292660px;}
.y7b_c00328{bottom:620.824500px;}
.y6d_c00328{bottom:643.097688px;}
.y6e_c00328{bottom:643.097796px;}
.y72_c00328{bottom:643.097820px;}
.y6c_c00328{bottom:643.098000px;}
.y6f_c00328{bottom:643.098096px;}
.y71_c00328{bottom:643.098192px;}
.y73_c00328{bottom:643.098288px;}
.y6b_c00328{bottom:643.098732px;}
.y70_c00328{bottom:643.098744px;}
.y74_c00328{bottom:643.098756px;}
.y75_c00328{bottom:643.099284px;}
.y62_c00328{bottom:665.480292px;}
.y6a_c00328{bottom:665.480412px;}
.y67_c00328{bottom:665.480628px;}
.y64_c00328{bottom:665.480688px;}
.y68_c00328{bottom:665.480796px;}
.y66_c00328{bottom:665.480820px;}
.y69_c00328{bottom:665.480844px;}
.y63_c00328{bottom:665.480880px;}
.y61_c00328{bottom:665.481024px;}
.y65_c00328{bottom:665.481372px;}
.y59_c00328{bottom:688.159740px;}
.y5c_c00328{bottom:688.159896px;}
.y57_c00328{bottom:688.160004px;}
.y58_c00328{bottom:688.160112px;}
.y5b_c00328{bottom:688.160376px;}
.y60_c00328{bottom:688.160388px;}
.y56_c00328{bottom:688.160436px;}
.y5a_c00328{bottom:688.160448px;}
.y5f_c00328{bottom:688.160580px;}
.y5d_c00328{bottom:688.160604px;}
.y55_c00328{bottom:688.160868px;}
.y5e_c00328{bottom:688.161132px;}
.y4f_c00328{bottom:710.825892px;}
.y52_c00328{bottom:710.825916px;}
.y54_c00328{bottom:710.826060px;}
.y53_c00328{bottom:710.826084px;}
.y50_c00328{bottom:710.826240px;}
.y4d_c00328{bottom:710.826264px;}
.y51_c00328{bottom:710.826468px;}
.y4e_c00328{bottom:710.826504px;}
.y4c_c00328{bottom:710.826984px;}
.y4b_c00328{bottom:710.827356px;}
.y4a_c00328{bottom:710.828016px;}
.y49_c00328{bottom:710.828328px;}
.y47_c00328{bottom:733.736556px;}
.y46_c00328{bottom:733.736568px;}
.y45_c00328{bottom:733.736880px;}
.y48_c00328{bottom:733.736964px;}
.y44_c00328{bottom:733.737144px;}
.y42_c00328{bottom:733.737336px;}
.y43_c00328{bottom:733.737576px;}
.y41_c00328{bottom:733.737600px;}
.y3e_c00328{bottom:756.503832px;}
.y3f_c00328{bottom:756.503916px;}
.y40_c00328{bottom:756.504600px;}
.y31_c00328{bottom:778.138716px;}
.y32_c00328{bottom:778.283856px;}
.y33_c00328{bottom:778.516524px;}
.y34_c00328{bottom:778.716996px;}
.y35_c00328{bottom:778.864884px;}
.y36_c00328{bottom:779.237772px;}
.y37_c00328{bottom:779.358192px;}
.y38_c00328{bottom:779.835540px;}
.y39_c00328{bottom:780.397548px;}
.y3a_c00328{bottom:780.563652px;}
.y3b_c00328{bottom:780.683868px;}
.y3c_c00328{bottom:781.121736px;}
.y3d_c00328{bottom:781.278744px;}
.y30_c00328{bottom:802.552800px;}
.y29_c00328{bottom:802.553040px;}
.y2f_c00328{bottom:802.553232px;}
.y2a_c00328{bottom:802.553340px;}
.y2b_c00328{bottom:802.553388px;}
.y2e_c00328{bottom:802.553472px;}
.y28_c00328{bottom:802.553532px;}
.y25_c00328{bottom:802.553784px;}
.y24_c00328{bottom:802.553796px;}
.y2c_c00328{bottom:802.553868px;}
.y27_c00328{bottom:802.553892px;}
.y26_c00328{bottom:802.553904px;}
.y23_c00328{bottom:802.554108px;}
.y2d_c00328{bottom:802.554204px;}
.y16_c00328{bottom:823.771500px;}
.y17_c00328{bottom:824.041176px;}
.y18_c00328{bottom:824.274744px;}
.y19_c00328{bottom:824.546928px;}
.y1a_c00328{bottom:824.719752px;}
.y1b_c00328{bottom:825.171216px;}
.y1c_c00328{bottom:825.363468px;}
.y1d_c00328{bottom:825.525672px;}
.y1e_c00328{bottom:826.164876px;}
.y1f_c00328{bottom:826.471344px;}
.y20_c00328{bottom:826.663800px;}
.y21_c00328{bottom:827.130396px;}
.y22_c00328{bottom:827.545080px;}
.y15_c00328{bottom:869.114200px;}
.y14_c00328{bottom:869.114322px;}
.y13_c00328{bottom:869.114833px;}
.y12_c00328{bottom:909.509526px;}
.y11_c00328{bottom:909.695539px;}
.y10_c00328{bottom:910.249170px;}
.yf_c00328{bottom:910.926276px;}
.ye_c00328{bottom:911.301175px;}
.yd_c00328{bottom:911.696515px;}
.yc_c00328{bottom:912.870486px;}
.y2_c00328{bottom:926.101500px;}
.y3_c00328{bottom:926.439453px;}
.y5_c00328{bottom:926.441448px;}
.y4_c00328{bottom:926.556392px;}
.y6_c00328{bottom:926.904372px;}
.y7_c00328{bottom:928.036587px;}
.y1_c00328{bottom:928.387500px;}
.y8_c00328{bottom:928.461785px;}
.y9_c00328{bottom:928.847428px;}
.ya_c00328{bottom:929.319855px;}
.yb_c00328{bottom:929.746942px;}
.h3_c00328{height:48.301183px;}
.h17_c00328{height:49.350000px;}
.h18_c00328{height:51.450000px;}
.h16_c00328{height:52.500000px;}
.h14_c00328{height:53.550000px;}
.h15_c00328{height:55.650000px;}
.h2_c00328{height:59.850000px;}
.hc_c00328{height:60.900000px;}
.h11_c00328{height:61.950000px;}
.ha_c00328{height:61.951982px;}
.hb_c00328{height:63.002016px;}
.h7_c00328{height:64.052050px;}
.h12_c00328{height:66.150000px;}
.h6_c00328{height:67.202150px;}
.hf_c00328{height:68.250000px;}
.h10_c00328{height:69.300000px;}
.h13_c00328{height:70.350000px;}
.h8_c00328{height:70.352251px;}
.he_c00328{height:71.400000px;}
.h9_c00328{height:71.402285px;}
.hd_c00328{height:72.450000px;}
.h5_c00328{height:114.452804px;}
.h4_c00328{height:141.753473px;}
.h1_c00328{height:1005.000000px;}
.h0_c00328{height:1005.150000px;}
.w0_c00328{width:702.540000px;}
.w1_c00328{width:702.750000px;}
.x0_c00328{left:0.000000px;}
.xc_c00328{left:47.366347px;}
.x3_c00328{left:52.776000px;}
.x42_c00328{left:75.874428px;}
.x69_c00328{left:81.000000px;}
.x4d_c00328{left:83.436240px;}
.x16_c00328{left:84.618000px;}
.x2f_c00328{left:85.947624px;}
.x7e_c00328{left:87.480000px;}
.x8b_c00328{left:88.560000px;}
.xad_c00328{left:90.180000px;}
.xc9_c00328{left:91.260000px;}
.x4_c00328{left:101.055000px;}
.x39_c00328{left:103.414428px;}
.x30_c00328{left:106.715292px;}
.xca_c00328{left:108.000000px;}
.x9c_c00328{left:109.890000px;}
.xbb_c00328{left:114.480000px;}
.x22_c00328{left:116.639280px;}
.x5_c00328{left:117.760500px;}
.x96_c00328{left:118.800000px;}
.x4e_c00328{left:120.697128px;}
.x7f_c00328{left:122.580000px;}
.xae_c00328{left:123.930000px;}
.x6a_c00328{left:126.900000px;}
.x64_c00328{left:129.064572px;}
.xb6_c00328{left:131.490000px;}
.xbe_c00328{left:133.110000px;}
.x8f_c00328{left:134.190000px;}
.xc1_c00328{left:136.620000px;}
.x31_c00328{left:139.924056px;}
.x71_c00328{left:140.940000px;}
.x43_c00328{left:142.027164px;}
.x17_c00328{left:147.523500px;}
.xa1_c00328{left:153.090000px;}
.xbf_c00328{left:154.170000px;}
.xcb_c00328{left:155.790000px;}
.x4f_c00328{left:157.958016px;}
.x8c_c00328{left:159.570000px;}
.x44_c00328{left:162.008448px;}
.x23_c00328{left:163.890804px;}
.x9d_c00328{left:165.510000px;}
.x6_c00328{left:167.472000px;}
.x32_c00328{left:168.545784px;}
.x58_c00328{left:171.187284px;}
.xa5_c00328{left:178.200000px;}
.x24_c00328{left:179.281788px;}
.x18_c00328{left:181.546500px;}
.x6b_c00328{left:182.790000px;}
.x80_c00328{left:184.410000px;}
.x79_c00328{left:186.030000px;}
.x3a_c00328{left:187.386804px;}
.x33_c00328{left:189.656952px;}
.xb2_c00328{left:190.890000px;}
.xc2_c00328{left:192.510000px;}
.x50_c00328{left:193.598796px;}
.x82_c00328{left:200.070000px;}
.x72_c00328{left:201.690000px;}
.x19_c00328{left:203.149500px;}
.x3b_c00328{left:204.667908px;}
.x81_c00328{left:207.360000px;}
.x13_c00328{left:210.873133px;}
.x1_c00328{left:216.270000px;}
.x8d_c00328{left:218.970000px;}
.xc0_c00328{left:222.210000px;}
.x90_c00328{left:224.370000px;}
.x25_c00328{left:226.533312px;}
.x51_c00328{left:228.429528px;}
.xa2_c00328{left:229.500000px;}
.x45_c00328{left:230.591340px;}
.x7a_c00328{left:233.010000px;}
.x73_c00328{left:234.630000px;}
.x97_c00328{left:236.520000px;}
.x5f_c00328{left:238.147620px;}
.x83_c00328{left:240.300000px;}
.xd_c00328{left:243.102655px;}
.x46_c00328{left:246.252348px;}
.x26_c00328{left:247.864680px;}
.x38_c00328{left:249.218640px;}
.x87_c00328{left:252.720000px;}
.x1a_c00328{left:259.582500px;}
.x3c_c00328{left:262.180092px;}
.x47_c00328{left:263.533452px;}
.x7b_c00328{left:268.110000px;}
.xa6_c00328{left:270.000000px;}
.x6c_c00328{left:271.620000px;}
.x74_c00328{left:275.400000px;}
.x59_c00328{left:278.649660px;}
.x1b_c00328{left:283.614000px;}
.xaf_c00328{left:288.360000px;}
.x91_c00328{left:292.410000px;}
.x84_c00328{left:293.490000px;}
.xcc_c00328{left:294.570000px;}
.xb3_c00328{left:299.970000px;}
.x27_c00328{left:301.056588px;}
.x1c_c00328{left:303.889500px;}
.xe_c00328{left:308.988651px;}
.xb0_c00328{left:310.230000px;}
.xb7_c00328{left:314.010000px;}
.x28_c00328{left:315.907536px;}
.xa7_c00328{left:321.570000px;}
.x52_c00328{left:323.202588px;}
.xcd_c00328{left:324.540000px;}
.x7_c00328{left:329.217000px;}
.xa3_c00328{left:330.750000px;}
.x3d_c00328{left:332.651604px;}
.x2_c00328{left:334.800000px;}
.xa8_c00328{left:335.880000px;}
.xc5_c00328{left:337.770000px;}
.x5a_c00328{left:339.940584px;}
.x53_c00328{left:342.643836px;}
.x65_c00328{left:343.720812px;}
.x88_c00328{left:346.680000px;}
.x60_c00328{left:348.041652px;}
.x6d_c00328{left:349.920000px;}
.xb4_c00328{left:352.620000px;}
.x8e_c00328{left:354.780000px;}
.xc6_c00328{left:357.210000px;}
.x89_c00328{left:358.830000px;}
.x48_c00328{left:361.006692px;}
.xa4_c00328{left:362.340000px;}
.x14_c00328{left:364.236152px;}
.x54_c00328{left:367.483920px;}
.x7c_c00328{left:368.550000px;}
.xf_c00328{left:371.365831px;}
.x29_c00328{left:374.229768px;}
.x98_c00328{left:376.380000px;}
.xb5_c00328{left:379.080000px;}
.x5b_c00328{left:380.981712px;}
.x1d_c00328{left:383.790000px;}
.x49_c00328{left:385.036728px;}
.xc3_c00328{left:388.800000px;}
.x8_c00328{left:389.959500px;}
.x3e_c00328{left:392.053908px;}
.x2a_c00328{left:395.291112px;}
.x92_c00328{left:396.630000px;}
.x9e_c00328{left:399.060000px;}
.xbc_c00328{left:400.140000px;}
.x75_c00328{left:401.220000px;}
.x66_c00328{left:404.730000px;}
.xc7_c00328{left:406.350000px;}
.xa9_c00328{left:407.430000px;}
.x34_c00328{left:408.616704px;}
.xb1_c00328{left:410.400000px;}
.x55_c00328{left:413.115336px;}
.x9f_c00328{left:414.180000px;}
.x6e_c00328{left:417.960000px;}
.x1e_c00328{left:422.098500px;}
.x67_c00328{left:425.250000px;}
.x76_c00328{left:427.410000px;}
.xaa_c00328{left:428.760000px;}
.x35_c00328{left:432.379896px;}
.x4a_c00328{left:433.908360px;}
.x61_c00328{left:437.684388px;}
.xb8_c00328{left:439.830000px;}
.x5c_c00328{left:441.194064px;}
.x9_c00328{left:445.051500px;}
.x1f_c00328{left:446.155500px;}
.x56_c00328{left:448.486104px;}
.x36_c00328{left:449.657040px;}
.x3f_c00328{left:452.806296px;}
.x6f_c00328{left:456.570000px;}
.xb9_c00328{left:458.190000px;}
.xc8_c00328{left:461.160000px;}
.xbd_c00328{left:463.050000px;}
.x4b_c00328{left:467.118984px;}
.x2b_c00328{left:468.462792px;}
.x77_c00328{left:474.660000px;}
.x40_c00328{left:476.296296px;}
.x99_c00328{left:478.170000px;}
.xab_c00328{left:482.760000px;}
.x10_c00328{left:484.218100px;}
.x5d_c00328{left:486.015432px;}
.x93_c00328{left:488.700000px;}
.x9a_c00328{left:494.370000px;}
.x41_c00328{left:496.547592px;}
.x7d_c00328{left:497.880000px;}
.x62_c00328{left:499.246824px;}
.xba_c00328{left:501.930000px;}
.x57_c00328{left:503.028096px;}
.x20_c00328{left:504.480000px;}
.x8a_c00328{left:507.060000px;}
.x68_c00328{left:508.680000px;}
.x2c_c00328{left:511.124028px;}
.xa_c00328{left:512.541000px;}
.x85_c00328{left:516.780000px;}
.x2d_c00328{left:527.595084px;}
.x94_c00328{left:530.280000px;}
.x15_c00328{left:531.369842px;}
.x37_c00328{left:534.704724px;}
.x70_c00328{left:536.760000px;}
.x86_c00328{left:538.380000px;}
.xa0_c00328{left:540.000000px;}
.x78_c00328{left:542.430000px;}
.x5e_c00328{left:543.527616px;}
.x63_c00328{left:544.878240px;}
.x4c_c00328{left:548.121168px;}
.xc4_c00328{left:550.260000px;}
.x9b_c00328{left:554.040000px;}
.x21_c00328{left:556.315500px;}
.x2e_c00328{left:558.105540px;}
.xac_c00328{left:559.440000px;}
.xb_c00328{left:573.553500px;}
.x11_c00328{left:576.565000px;}
.x95_c00328{left:586.440000px;}
.x12_c00328{left:607.637325px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.fs1_c00328{font-size:42.934385pt;}
.fs15_c00328{font-size:43.866667pt;}
.fs16_c00328{font-size:45.733333pt;}
.fs14_c00328{font-size:46.666667pt;}
.fs12_c00328{font-size:47.600000pt;}
.fs13_c00328{font-size:49.466667pt;}
.fs0_c00328{font-size:53.200000pt;}
.fsa_c00328{font-size:54.133333pt;}
.fsf_c00328{font-size:55.066667pt;}
.fs8_c00328{font-size:55.068429pt;}
.fs9_c00328{font-size:56.001792pt;}
.fs5_c00328{font-size:56.935155pt;}
.fs10_c00328{font-size:58.800000pt;}
.fs4_c00328{font-size:59.735245pt;}
.fsd_c00328{font-size:60.666667pt;}
.fse_c00328{font-size:61.600000pt;}
.fs11_c00328{font-size:62.533333pt;}
.fs6_c00328{font-size:62.535334pt;}
.fsc_c00328{font-size:63.466667pt;}
.fs7_c00328{font-size:63.468698pt;}
.fsb_c00328{font-size:64.400000pt;}
.fs3_c00328{font-size:101.735826pt;}
.fs2_c00328{font-size:126.003087pt;}
.y0_c00328{bottom:0.000000pt;}
.y90_c00328{bottom:128.889333pt;}
.y8d_c00328{bottom:149.402667pt;}
.y8f_c00328{bottom:150.260000pt;}
.y8c_c00328{bottom:165.328000pt;}
.y8e_c00328{bottom:165.742667pt;}
.y91_c00328{bottom:180.960000pt;}
.y8b_c00328{bottom:228.194667pt;}
.y8a_c00328{bottom:247.512000pt;}
.y89_c00328{bottom:268.133333pt;}
.y88_c00328{bottom:288.056000pt;}
.y87_c00328{bottom:308.460000pt;}
.y86_c00328{bottom:329.097333pt;}
.y85_c00328{bottom:349.228000pt;}
.y84_c00328{bottom:369.388000pt;}
.y83_c00328{bottom:389.546667pt;}
.y82_c00328{bottom:410.278667pt;}
.y81_c00328{bottom:430.398667pt;}
.y80_c00328{bottom:450.534667pt;}
.y7f_c00328{bottom:471.146667pt;}
.y7e_c00328{bottom:491.252000pt;}
.y7d_c00328{bottom:511.366667pt;}
.y7c_c00328{bottom:531.569333pt;}
.y79_c00328{bottom:551.370411pt;}
.y7a_c00328{bottom:551.370816pt;}
.y78_c00328{bottom:551.370955pt;}
.y77_c00328{bottom:551.371136pt;}
.y76_c00328{bottom:551.371253pt;}
.y7b_c00328{bottom:551.844000pt;}
.y6d_c00328{bottom:571.642389pt;}
.y6e_c00328{bottom:571.642485pt;}
.y72_c00328{bottom:571.642507pt;}
.y6c_c00328{bottom:571.642667pt;}
.y6f_c00328{bottom:571.642752pt;}
.y71_c00328{bottom:571.642837pt;}
.y73_c00328{bottom:571.642923pt;}
.y6b_c00328{bottom:571.643317pt;}
.y70_c00328{bottom:571.643328pt;}
.y74_c00328{bottom:571.643339pt;}
.y75_c00328{bottom:571.643808pt;}
.y62_c00328{bottom:591.538037pt;}
.y6a_c00328{bottom:591.538144pt;}
.y67_c00328{bottom:591.538336pt;}
.y64_c00328{bottom:591.538389pt;}
.y68_c00328{bottom:591.538485pt;}
.y66_c00328{bottom:591.538507pt;}
.y69_c00328{bottom:591.538528pt;}
.y63_c00328{bottom:591.538560pt;}
.y61_c00328{bottom:591.538688pt;}
.y65_c00328{bottom:591.538997pt;}
.y59_c00328{bottom:611.697547pt;}
.y5c_c00328{bottom:611.697685pt;}
.y57_c00328{bottom:611.697781pt;}
.y58_c00328{bottom:611.697877pt;}
.y5b_c00328{bottom:611.698112pt;}
.y60_c00328{bottom:611.698123pt;}
.y56_c00328{bottom:611.698165pt;}
.y5a_c00328{bottom:611.698176pt;}
.y5f_c00328{bottom:611.698293pt;}
.y5d_c00328{bottom:611.698315pt;}
.y55_c00328{bottom:611.698549pt;}
.y5e_c00328{bottom:611.698784pt;}
.y4f_c00328{bottom:631.845237pt;}
.y52_c00328{bottom:631.845259pt;}
.y54_c00328{bottom:631.845387pt;}
.y53_c00328{bottom:631.845408pt;}
.y50_c00328{bottom:631.845547pt;}
.y4d_c00328{bottom:631.845568pt;}
.y51_c00328{bottom:631.845749pt;}
.y4e_c00328{bottom:631.845781pt;}
.y4c_c00328{bottom:631.846208pt;}
.y4b_c00328{bottom:631.846539pt;}
.y4a_c00328{bottom:631.847125pt;}
.y49_c00328{bottom:631.847403pt;}
.y47_c00328{bottom:652.210272pt;}
.y46_c00328{bottom:652.210283pt;}
.y45_c00328{bottom:652.210560pt;}
.y48_c00328{bottom:652.210635pt;}
.y44_c00328{bottom:652.210795pt;}
.y42_c00328{bottom:652.210965pt;}
.y43_c00328{bottom:652.211179pt;}
.y41_c00328{bottom:652.211200pt;}
.y3e_c00328{bottom:672.447851pt;}
.y3f_c00328{bottom:672.447925pt;}
.y40_c00328{bottom:672.448533pt;}
.y31_c00328{bottom:691.678859pt;}
.y32_c00328{bottom:691.807872pt;}
.y33_c00328{bottom:692.014688pt;}
.y34_c00328{bottom:692.192885pt;}
.y35_c00328{bottom:692.324341pt;}
.y36_c00328{bottom:692.655797pt;}
.y37_c00328{bottom:692.762837pt;}
.y38_c00328{bottom:693.187147pt;}
.y39_c00328{bottom:693.686709pt;}
.y3a_c00328{bottom:693.834357pt;}
.y3b_c00328{bottom:693.941216pt;}
.y3c_c00328{bottom:694.330432pt;}
.y3d_c00328{bottom:694.469995pt;}
.y30_c00328{bottom:713.380267pt;}
.y29_c00328{bottom:713.380480pt;}
.y2f_c00328{bottom:713.380651pt;}
.y2a_c00328{bottom:713.380747pt;}
.y2b_c00328{bottom:713.380789pt;}
.y2e_c00328{bottom:713.380864pt;}
.y28_c00328{bottom:713.380917pt;}
.y25_c00328{bottom:713.381141pt;}
.y24_c00328{bottom:713.381152pt;}
.y2c_c00328{bottom:713.381216pt;}
.y27_c00328{bottom:713.381237pt;}
.y26_c00328{bottom:713.381248pt;}
.y23_c00328{bottom:713.381429pt;}
.y2d_c00328{bottom:713.381515pt;}
.y16_c00328{bottom:732.241333pt;}
.y17_c00328{bottom:732.481045pt;}
.y18_c00328{bottom:732.688661pt;}
.y19_c00328{bottom:732.930603pt;}
.y1a_c00328{bottom:733.084224pt;}
.y1b_c00328{bottom:733.485525pt;}
.y1c_c00328{bottom:733.656416pt;}
.y1d_c00328{bottom:733.800597pt;}
.y1e_c00328{bottom:734.368779pt;}
.y1f_c00328{bottom:734.641195pt;}
.y20_c00328{bottom:734.812267pt;}
.y21_c00328{bottom:735.227019pt;}
.y22_c00328{bottom:735.595627pt;}
.y15_c00328{bottom:772.545956pt;}
.y14_c00328{bottom:772.546064pt;}
.y13_c00328{bottom:772.546519pt;}
.y12_c00328{bottom:808.452912pt;}
.y11_c00328{bottom:808.618257pt;}
.y10_c00328{bottom:809.110373pt;}
.yf_c00328{bottom:809.712245pt;}
.ye_c00328{bottom:810.045489pt;}
.yd_c00328{bottom:810.396903pt;}
.yc_c00328{bottom:811.440432pt;}
.y2_c00328{bottom:823.201333pt;}
.y3_c00328{bottom:823.501736pt;}
.y5_c00328{bottom:823.503509pt;}
.y4_c00328{bottom:823.605681pt;}
.y6_c00328{bottom:823.914997pt;}
.y7_c00328{bottom:824.921411pt;}
.y1_c00328{bottom:825.233333pt;}
.y8_c00328{bottom:825.299364pt;}
.y9_c00328{bottom:825.642159pt;}
.ya_c00328{bottom:826.062093pt;}
.yb_c00328{bottom:826.441727pt;}
.h3_c00328{height:42.934385pt;}
.h17_c00328{height:43.866667pt;}
.h18_c00328{height:45.733333pt;}
.h16_c00328{height:46.666667pt;}
.h14_c00328{height:47.600000pt;}
.h15_c00328{height:49.466667pt;}
.h2_c00328{height:53.200000pt;}
.hc_c00328{height:54.133333pt;}
.h11_c00328{height:55.066667pt;}
.ha_c00328{height:55.068429pt;}
.hb_c00328{height:56.001792pt;}
.h7_c00328{height:56.935155pt;}
.h12_c00328{height:58.800000pt;}
.h6_c00328{height:59.735245pt;}
.hf_c00328{height:60.666667pt;}
.h10_c00328{height:61.600000pt;}
.h13_c00328{height:62.533333pt;}
.h8_c00328{height:62.535334pt;}
.he_c00328{height:63.466667pt;}
.h9_c00328{height:63.468698pt;}
.hd_c00328{height:64.400000pt;}
.h5_c00328{height:101.735826pt;}
.h4_c00328{height:126.003087pt;}
.h1_c00328{height:893.333333pt;}
.h0_c00328{height:893.466667pt;}
.w0_c00328{width:624.480000pt;}
.w1_c00328{width:624.666667pt;}
.x0_c00328{left:0.000000pt;}
.xc_c00328{left:42.103420pt;}
.x3_c00328{left:46.912000pt;}
.x42_c00328{left:67.443936pt;}
.x69_c00328{left:72.000000pt;}
.x4d_c00328{left:74.165547pt;}
.x16_c00328{left:75.216000pt;}
.x2f_c00328{left:76.397888pt;}
.x7e_c00328{left:77.760000pt;}
.x8b_c00328{left:78.720000pt;}
.xad_c00328{left:80.160000pt;}
.xc9_c00328{left:81.120000pt;}
.x4_c00328{left:89.826667pt;}
.x39_c00328{left:91.923936pt;}
.x30_c00328{left:94.858037pt;}
.xca_c00328{left:96.000000pt;}
.x9c_c00328{left:97.680000pt;}
.xbb_c00328{left:101.760000pt;}
.x22_c00328{left:103.679360pt;}
.x5_c00328{left:104.676000pt;}
.x96_c00328{left:105.600000pt;}
.x4e_c00328{left:107.286336pt;}
.x7f_c00328{left:108.960000pt;}
.xae_c00328{left:110.160000pt;}
.x6a_c00328{left:112.800000pt;}
.x64_c00328{left:114.724064pt;}
.xb6_c00328{left:116.880000pt;}
.xbe_c00328{left:118.320000pt;}
.x8f_c00328{left:119.280000pt;}
.xc1_c00328{left:121.440000pt;}
.x31_c00328{left:124.376939pt;}
.x71_c00328{left:125.280000pt;}
.x43_c00328{left:126.246368pt;}
.x17_c00328{left:131.132000pt;}
.xa1_c00328{left:136.080000pt;}
.xbf_c00328{left:137.040000pt;}
.xcb_c00328{left:138.480000pt;}
.x4f_c00328{left:140.407125pt;}
.x8c_c00328{left:141.840000pt;}
.x44_c00328{left:144.007509pt;}
.x23_c00328{left:145.680715pt;}
.x9d_c00328{left:147.120000pt;}
.x6_c00328{left:148.864000pt;}
.x32_c00328{left:149.818475pt;}
.x58_c00328{left:152.166475pt;}
.xa5_c00328{left:158.400000pt;}
.x24_c00328{left:159.361589pt;}
.x18_c00328{left:161.374667pt;}
.x6b_c00328{left:162.480000pt;}
.x80_c00328{left:163.920000pt;}
.x79_c00328{left:165.360000pt;}
.x3a_c00328{left:166.566048pt;}
.x33_c00328{left:168.583957pt;}
.xb2_c00328{left:169.680000pt;}
.xc2_c00328{left:171.120000pt;}
.x50_c00328{left:172.087819pt;}
.x82_c00328{left:177.840000pt;}
.x72_c00328{left:179.280000pt;}
.x19_c00328{left:180.577333pt;}
.x3b_c00328{left:181.927029pt;}
.x81_c00328{left:184.320000pt;}
.x13_c00328{left:187.442785pt;}
.x1_c00328{left:192.240000pt;}
.x8d_c00328{left:194.640000pt;}
.xc0_c00328{left:197.520000pt;}
.x90_c00328{left:199.440000pt;}
.x25_c00328{left:201.362944pt;}
.x51_c00328{left:203.048469pt;}
.xa2_c00328{left:204.000000pt;}
.x45_c00328{left:204.970080pt;}
.x7a_c00328{left:207.120000pt;}
.x73_c00328{left:208.560000pt;}
.x97_c00328{left:210.240000pt;}
.x5f_c00328{left:211.686773pt;}
.x83_c00328{left:213.600000pt;}
.xd_c00328{left:216.091249pt;}
.x46_c00328{left:218.890976pt;}
.x26_c00328{left:220.324160pt;}
.x38_c00328{left:221.527680pt;}
.x87_c00328{left:224.640000pt;}
.x1a_c00328{left:230.740000pt;}
.x3c_c00328{left:233.048971pt;}
.x47_c00328{left:234.251957pt;}
.x7b_c00328{left:238.320000pt;}
.xa6_c00328{left:240.000000pt;}
.x6c_c00328{left:241.440000pt;}
.x74_c00328{left:244.800000pt;}
.x59_c00328{left:247.688587pt;}
.x1b_c00328{left:252.101333pt;}
.xaf_c00328{left:256.320000pt;}
.x91_c00328{left:259.920000pt;}
.x84_c00328{left:260.880000pt;}
.xcc_c00328{left:261.840000pt;}
.xb3_c00328{left:266.640000pt;}
.x27_c00328{left:267.605856pt;}
.x1c_c00328{left:270.124000pt;}
.xe_c00328{left:274.656579pt;}
.xb0_c00328{left:275.760000pt;}
.xb7_c00328{left:279.120000pt;}
.x28_c00328{left:280.806699pt;}
.xa7_c00328{left:285.840000pt;}
.x52_c00328{left:287.291189pt;}
.xcd_c00328{left:288.480000pt;}
.x7_c00328{left:292.637333pt;}
.xa3_c00328{left:294.000000pt;}
.x3d_c00328{left:295.690315pt;}
.x2_c00328{left:297.600000pt;}
.xa8_c00328{left:298.560000pt;}
.xc5_c00328{left:300.240000pt;}
.x5a_c00328{left:302.169408pt;}
.x53_c00328{left:304.572299pt;}
.x65_c00328{left:305.529611pt;}
.x88_c00328{left:308.160000pt;}
.x60_c00328{left:309.370357pt;}
.x6d_c00328{left:311.040000pt;}
.xb4_c00328{left:313.440000pt;}
.x8e_c00328{left:315.360000pt;}
.xc6_c00328{left:317.520000pt;}
.x89_c00328{left:318.960000pt;}
.x48_c00328{left:320.894837pt;}
.xa4_c00328{left:322.080000pt;}
.x14_c00328{left:323.765468pt;}
.x54_c00328{left:326.652373pt;}
.x7c_c00328{left:327.600000pt;}
.xf_c00328{left:330.102961pt;}
.x29_c00328{left:332.648683pt;}
.x98_c00328{left:334.560000pt;}
.xb5_c00328{left:336.960000pt;}
.x5b_c00328{left:338.650411pt;}
.x1d_c00328{left:341.146667pt;}
.x49_c00328{left:342.254869pt;}
.xc3_c00328{left:345.600000pt;}
.x8_c00328{left:346.630667pt;}
.x3e_c00328{left:348.492363pt;}
.x2a_c00328{left:351.369877pt;}
.x92_c00328{left:352.560000pt;}
.x9e_c00328{left:354.720000pt;}
.xbc_c00328{left:355.680000pt;}
.x75_c00328{left:356.640000pt;}
.x66_c00328{left:359.760000pt;}
.xc7_c00328{left:361.200000pt;}
.xa9_c00328{left:362.160000pt;}
.x34_c00328{left:363.214848pt;}
.xb1_c00328{left:364.800000pt;}
.x55_c00328{left:367.213632pt;}
.x9f_c00328{left:368.160000pt;}
.x6e_c00328{left:371.520000pt;}
.x1e_c00328{left:375.198667pt;}
.x67_c00328{left:378.000000pt;}
.x76_c00328{left:379.920000pt;}
.xaa_c00328{left:381.120000pt;}
.x35_c00328{left:384.337685pt;}
.x4a_c00328{left:385.696320pt;}
.x61_c00328{left:389.052789pt;}
.xb8_c00328{left:390.960000pt;}
.x5c_c00328{left:392.172501pt;}
.x9_c00328{left:395.601333pt;}
.x1f_c00328{left:396.582667pt;}
.x56_c00328{left:398.654315pt;}
.x36_c00328{left:399.695147pt;}
.x3f_c00328{left:402.494485pt;}
.x6f_c00328{left:405.840000pt;}
.xb9_c00328{left:407.280000pt;}
.xc8_c00328{left:409.920000pt;}
.xbd_c00328{left:411.600000pt;}
.x4b_c00328{left:415.216875pt;}
.x2b_c00328{left:416.411371pt;}
.x77_c00328{left:421.920000pt;}
.x40_c00328{left:423.374485pt;}
.x99_c00328{left:425.040000pt;}
.xab_c00328{left:429.120000pt;}
.x10_c00328{left:430.416089pt;}
.x5d_c00328{left:432.013717pt;}
.x93_c00328{left:434.400000pt;}
.x9a_c00328{left:439.440000pt;}
.x41_c00328{left:441.375637pt;}
.x7d_c00328{left:442.560000pt;}
.x62_c00328{left:443.774955pt;}
.xba_c00328{left:446.160000pt;}
.x57_c00328{left:447.136085pt;}
.x20_c00328{left:448.426667pt;}
.x8a_c00328{left:450.720000pt;}
.x68_c00328{left:452.160000pt;}
.x2c_c00328{left:454.332469pt;}
.xa_c00328{left:455.592000pt;}
.x85_c00328{left:459.360000pt;}
.x2d_c00328{left:468.973408pt;}
.x94_c00328{left:471.360000pt;}
.x15_c00328{left:472.328748pt;}
.x37_c00328{left:475.293088pt;}
.x70_c00328{left:477.120000pt;}
.x86_c00328{left:478.560000pt;}
.xa0_c00328{left:480.000000pt;}
.x78_c00328{left:482.160000pt;}
.x5e_c00328{left:483.135659pt;}
.x63_c00328{left:484.336213pt;}
.x4c_c00328{left:487.218816pt;}
.xc4_c00328{left:489.120000pt;}
.x9b_c00328{left:492.480000pt;}
.x21_c00328{left:494.502667pt;}
.x2e_c00328{left:496.093813pt;}
.xac_c00328{left:497.280000pt;}
.xb_c00328{left:509.825333pt;}
.x11_c00328{left:512.502223pt;}
.x95_c00328{left:521.280000pt;}
.x12_c00328{left:540.122067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m159_c00329{transform:matrix(0.017830,0.000125,-0.001750,0.249994,0,0);-ms-transform:matrix(0.017830,0.000125,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.017830,0.000125,-0.001750,0.249994,0,0);}
.m14a_c00329{transform:matrix(0.023374,0.000164,-0.001750,0.249994,0,0);-ms-transform:matrix(0.023374,0.000164,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.023374,0.000164,-0.001750,0.249994,0,0);}
.mc5_c00329{transform:matrix(0.035869,-0.000287,0.002000,0.249992,0,0);-ms-transform:matrix(0.035869,-0.000287,0.002000,0.249992,0,0);-webkit-transform:matrix(0.035869,-0.000287,0.002000,0.249992,0,0);}
.mea_c00329{transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);}
.m9f_c00329{transform:matrix(0.137896,-0.001103,0.002000,0.249992,0,0);-ms-transform:matrix(0.137896,-0.001103,0.002000,0.249992,0,0);-webkit-transform:matrix(0.137896,-0.001103,0.002000,0.249992,0,0);}
.mf0_c00329{transform:matrix(0.141020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141020,0.000000,0.000000,0.250000,0,0);}
.m96_c00329{transform:matrix(0.143450,-0.001148,0.002000,0.249992,0,0);-ms-transform:matrix(0.143450,-0.001148,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143450,-0.001148,0.002000,0.249992,0,0);}
.m144_c00329{transform:matrix(0.144386,0.001011,-0.001750,0.249994,0,0);-ms-transform:matrix(0.144386,0.001011,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.144386,0.001011,-0.001750,0.249994,0,0);}
.m6a_c00329{transform:matrix(0.148495,-0.001188,0.002000,0.249992,0,0);-ms-transform:matrix(0.148495,-0.001188,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148495,-0.001188,0.002000,0.249992,0,0);}
.m21_c00329{transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);-ms-transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148751,-0.001041,0.001750,0.249994,0,0);}
.mf1_c00329{transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);}
.ma0_c00329{transform:matrix(0.150120,-0.001201,0.002000,0.249992,0,0);-ms-transform:matrix(0.150120,-0.001201,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150120,-0.001201,0.002000,0.249992,0,0);}
.m73_c00329{transform:matrix(0.150585,-0.001205,0.002000,0.249992,0,0);-ms-transform:matrix(0.150585,-0.001205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150585,-0.001205,0.002000,0.249992,0,0);}
.m98_c00329{transform:matrix(0.151170,-0.001209,0.002000,0.249992,0,0);-ms-transform:matrix(0.151170,-0.001209,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151170,-0.001209,0.002000,0.249992,0,0);}
.m10e_c00329{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);}
.m28_c00329{transform:matrix(0.151490,-0.001212,0.002000,0.249992,0,0);-ms-transform:matrix(0.151490,-0.001212,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151490,-0.001212,0.002000,0.249992,0,0);}
.m70_c00329{transform:matrix(0.151795,-0.001214,0.002000,0.249992,0,0);-ms-transform:matrix(0.151795,-0.001214,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151795,-0.001214,0.002000,0.249992,0,0);}
.me9_c00329{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);}
.m97_c00329{transform:matrix(0.152740,-0.001222,0.002000,0.249992,0,0);-ms-transform:matrix(0.152740,-0.001222,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152740,-0.001222,0.002000,0.249992,0,0);}
.m11a_c00329{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);}
.m77_c00329{transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);-ms-transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);}
.m36_c00329{transform:matrix(0.153885,-0.001231,0.002000,0.249992,0,0);-ms-transform:matrix(0.153885,-0.001231,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153885,-0.001231,0.002000,0.249992,0,0);}
.m119_c00329{transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);}
.m104_c00329{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);}
.m81_c00329{transform:matrix(0.156225,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156225,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156225,-0.001250,0.002000,0.249992,0,0);}
.me5_c00329{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m32_c00329{transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);-ms-transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156660,-0.001253,0.002000,0.249992,0,0);}
.med_c00329{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);}
.ma7_c00329{transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);-ms-transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157660,-0.001261,0.002000,0.249992,0,0);}
.m14f_c00329{transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);}
.m2b_c00329{transform:matrix(0.157845,-0.001263,0.002000,0.249992,0,0);-ms-transform:matrix(0.157845,-0.001263,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157845,-0.001263,0.002000,0.249992,0,0);}
.m76_c00329{transform:matrix(0.158515,-0.001268,0.002000,0.249992,0,0);-ms-transform:matrix(0.158515,-0.001268,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158515,-0.001268,0.002000,0.249992,0,0);}
.ma6_c00329{transform:matrix(0.158660,-0.001269,0.002000,0.249992,0,0);-ms-transform:matrix(0.158660,-0.001269,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158660,-0.001269,0.002000,0.249992,0,0);}
.m80_c00329{transform:matrix(0.159270,-0.001274,0.002000,0.249992,0,0);-ms-transform:matrix(0.159270,-0.001274,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159270,-0.001274,0.002000,0.249992,0,0);}
.m78_c00329{transform:matrix(0.160835,-0.001287,0.002000,0.249992,0,0);-ms-transform:matrix(0.160835,-0.001287,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160835,-0.001287,0.002000,0.249992,0,0);}
.m4f_c00329{transform:matrix(0.160950,-0.001288,0.002000,0.249992,0,0);-ms-transform:matrix(0.160950,-0.001288,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160950,-0.001288,0.002000,0.249992,0,0);}
.mf9_c00329{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);}
.mfb_c00329{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_c00329{transform:matrix(0.161871,-0.001133,0.001750,0.249994,0,0);-ms-transform:matrix(0.161871,-0.001133,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161871,-0.001133,0.001750,0.249994,0,0);}
.m168_c00329{transform:matrix(0.162076,0.001135,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162076,0.001135,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162076,0.001135,-0.001750,0.249994,0,0);}
.mc8_c00329{transform:matrix(0.162215,-0.001298,0.002000,0.249992,0,0);-ms-transform:matrix(0.162215,-0.001298,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162215,-0.001298,0.002000,0.249992,0,0);}
.ma4_c00329{transform:matrix(0.162480,-0.001300,0.002000,0.249992,0,0);-ms-transform:matrix(0.162480,-0.001300,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162480,-0.001300,0.002000,0.249992,0,0);}
.mb7_c00329{transform:matrix(0.162640,-0.001301,0.002000,0.249992,0,0);-ms-transform:matrix(0.162640,-0.001301,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162640,-0.001301,0.002000,0.249992,0,0);}
.m102_c00329{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);}
.ma5_c00329{transform:matrix(0.162915,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162915,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162915,-0.001303,0.002000,0.249992,0,0);}
.m54_c00329{transform:matrix(0.163185,-0.001305,0.002000,0.249992,0,0);-ms-transform:matrix(0.163185,-0.001305,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163185,-0.001305,0.002000,0.249992,0,0);}
.m6d_c00329{transform:matrix(0.163275,-0.001306,0.002000,0.249992,0,0);-ms-transform:matrix(0.163275,-0.001306,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163275,-0.001306,0.002000,0.249992,0,0);}
.m69_c00329{transform:matrix(0.163890,-0.001311,0.002000,0.249992,0,0);-ms-transform:matrix(0.163890,-0.001311,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163890,-0.001311,0.002000,0.249992,0,0);}
.m101_c00329{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);}
.m9e_c00329{transform:matrix(0.164820,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164820,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164820,-0.001319,0.002000,0.249992,0,0);}
.m15f_c00329{transform:matrix(0.165501,0.001159,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165501,0.001159,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165501,0.001159,-0.001750,0.249994,0,0);}
.m45_c00329{transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-ms-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166840,-0.001335,0.002000,0.249992,0,0);}
.m153_c00329{transform:matrix(0.166966,0.001169,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166966,0.001169,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166966,0.001169,-0.001750,0.249994,0,0);}
.m8e_c00329{transform:matrix(0.167135,-0.001337,0.002000,0.249992,0,0);-ms-transform:matrix(0.167135,-0.001337,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167135,-0.001337,0.002000,0.249992,0,0);}
.mb2_c00329{transform:matrix(0.167515,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167515,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167515,-0.001340,0.002000,0.249992,0,0);}
.m6c_c00329{transform:matrix(0.167890,-0.001343,0.002000,0.249992,0,0);-ms-transform:matrix(0.167890,-0.001343,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167890,-0.001343,0.002000,0.249992,0,0);}
.m110_c00329{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);}
.m7e_c00329{transform:matrix(0.168975,-0.001352,0.002000,0.249992,0,0);-ms-transform:matrix(0.168975,-0.001352,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168975,-0.001352,0.002000,0.249992,0,0);}
.mec_c00329{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);}
.mb9_c00329{transform:matrix(0.169440,-0.001356,0.002000,0.249992,0,0);-ms-transform:matrix(0.169440,-0.001356,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169440,-0.001356,0.002000,0.249992,0,0);}
.m127_c00329{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);}
.m15c_c00329{transform:matrix(0.169706,0.001188,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169706,0.001188,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169706,0.001188,-0.001750,0.249994,0,0);}
.m142_c00329{transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170061,0.001190,-0.001750,0.249994,0,0);}
.m22_c00329{transform:matrix(0.170811,-0.001196,0.001750,0.249994,0,0);-ms-transform:matrix(0.170811,-0.001196,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170811,-0.001196,0.001750,0.249994,0,0);}
.mab_c00329{transform:matrix(0.170985,-0.001368,0.002000,0.249992,0,0);-ms-transform:matrix(0.170985,-0.001368,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170985,-0.001368,0.002000,0.249992,0,0);}
.m52_c00329{transform:matrix(0.171295,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171295,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171295,-0.001370,0.002000,0.249992,0,0);}
.m126_c00329{transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171320,0.000000,0.000000,0.250000,0,0);}
.m157_c00329{transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171741,0.001202,-0.001750,0.249994,0,0);}
.m74_c00329{transform:matrix(0.171860,-0.001375,0.002000,0.249992,0,0);-ms-transform:matrix(0.171860,-0.001375,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171860,-0.001375,0.002000,0.249992,0,0);}
.m16b_c00329{transform:matrix(0.172501,0.001208,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172501,0.001208,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172501,0.001208,-0.001750,0.249994,0,0);}
.mff_c00329{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);}
.m63_c00329{transform:matrix(0.172549,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172549,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172549,-0.001380,0.002000,0.249992,0,0);}
.m4e_c00329{transform:matrix(0.172919,-0.001383,0.002000,0.249992,0,0);-ms-transform:matrix(0.172919,-0.001383,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172919,-0.001383,0.002000,0.249992,0,0);}
.mfa_c00329{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);}
.m71_c00329{transform:matrix(0.173054,-0.001384,0.002000,0.249992,0,0);-ms-transform:matrix(0.173054,-0.001384,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173054,-0.001384,0.002000,0.249992,0,0);}
.m30_c00329{transform:matrix(0.173439,-0.001388,0.002000,0.249992,0,0);-ms-transform:matrix(0.173439,-0.001388,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173439,-0.001388,0.002000,0.249992,0,0);}
.mad_c00329{transform:matrix(0.174539,-0.001396,0.002000,0.249992,0,0);-ms-transform:matrix(0.174539,-0.001396,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174539,-0.001396,0.002000,0.249992,0,0);}
.m14c_c00329{transform:matrix(0.174791,0.001224,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174791,0.001224,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174791,0.001224,-0.001750,0.249994,0,0);}
.m94_c00329{transform:matrix(0.174854,-0.001399,0.002000,0.249992,0,0);-ms-transform:matrix(0.174854,-0.001399,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174854,-0.001399,0.002000,0.249992,0,0);}
.mee_c00329{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);}
.mc1_c00329{transform:matrix(0.175034,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.175034,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175034,-0.001400,0.002000,0.249992,0,0);}
.m6f_c00329{transform:matrix(0.175044,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.175044,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175044,-0.001400,0.002000,0.249992,0,0);}
.m2a_c00329{transform:matrix(0.175479,-0.001404,0.002000,0.249992,0,0);-ms-transform:matrix(0.175479,-0.001404,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175479,-0.001404,0.002000,0.249992,0,0);}
.m165_c00329{transform:matrix(0.175561,0.001229,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175561,0.001229,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175561,0.001229,-0.001750,0.249994,0,0);}
.m79_c00329{transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);}
.m75_c00329{transform:matrix(0.176254,-0.001410,0.002000,0.249992,0,0);-ms-transform:matrix(0.176254,-0.001410,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176254,-0.001410,0.002000,0.249992,0,0);}
.m60_c00329{transform:matrix(0.176319,-0.001411,0.002000,0.249992,0,0);-ms-transform:matrix(0.176319,-0.001411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176319,-0.001411,0.002000,0.249992,0,0);}
.m133_c00329{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);}
.m11f_c00329{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);}
.m33_c00329{transform:matrix(0.177179,-0.001417,0.002000,0.249992,0,0);-ms-transform:matrix(0.177179,-0.001417,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177179,-0.001417,0.002000,0.249992,0,0);}
.m43_c00329{transform:matrix(0.177364,-0.001419,0.002000,0.249992,0,0);-ms-transform:matrix(0.177364,-0.001419,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177364,-0.001419,0.002000,0.249992,0,0);}
.mae_c00329{transform:matrix(0.177624,-0.001421,0.002000,0.249992,0,0);-ms-transform:matrix(0.177624,-0.001421,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177624,-0.001421,0.002000,0.249992,0,0);}
.mb6_c00329{transform:matrix(0.178219,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178219,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178219,-0.001426,0.002000,0.249992,0,0);}
.m23_c00329{transform:matrix(0.178431,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178431,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178431,-0.001249,0.001750,0.249994,0,0);}
.mf5_c00329{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);}
.m124_c00329{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);}
.me8_c00329{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);}
.m37_c00329{transform:matrix(0.179429,-0.001435,0.002000,0.249992,0,0);-ms-transform:matrix(0.179429,-0.001435,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179429,-0.001435,0.002000,0.249992,0,0);}
.m15a_c00329{transform:matrix(0.179646,0.001258,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179646,0.001258,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179646,0.001258,-0.001750,0.249994,0,0);}
.m7a_c00329{transform:matrix(0.180844,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180844,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180844,-0.001447,0.002000,0.249992,0,0);}
.m4d_c00329{transform:matrix(0.180899,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180899,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180899,-0.001447,0.002000,0.249992,0,0);}
.mcd_c00329{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);}
.m1d_c00329{transform:matrix(0.181116,-0.001268,0.001750,0.249994,0,0);-ms-transform:matrix(0.181116,-0.001268,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181116,-0.001268,0.001750,0.249994,0,0);}
.m27_c00329{transform:matrix(0.181359,-0.001451,0.002000,0.249992,0,0);-ms-transform:matrix(0.181359,-0.001451,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181359,-0.001451,0.002000,0.249992,0,0);}
.m145_c00329{transform:matrix(0.181446,0.001270,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181446,0.001270,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181446,0.001270,-0.001750,0.249994,0,0);}
.mba_c00329{transform:matrix(0.181579,-0.001453,0.002000,0.249992,0,0);-ms-transform:matrix(0.181579,-0.001453,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181579,-0.001453,0.002000,0.249992,0,0);}
.ma2_c00329{transform:matrix(0.181594,-0.001453,0.002000,0.249992,0,0);-ms-transform:matrix(0.181594,-0.001453,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181594,-0.001453,0.002000,0.249992,0,0);}
.m19_c00329{transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);-ms-transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181741,-0.001272,0.001750,0.249994,0,0);}
.mdb_c00329{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);}
.m49_c00329{transform:matrix(0.181979,-0.001456,0.002000,0.249992,0,0);-ms-transform:matrix(0.181979,-0.001456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181979,-0.001456,0.002000,0.249992,0,0);}
.m91_c00329{transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);}
.m9c_c00329{transform:matrix(0.182709,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182709,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182709,-0.001462,0.002000,0.249992,0,0);}
.m25_c00329{transform:matrix(0.183021,-0.001281,0.001750,0.249994,0,0);-ms-transform:matrix(0.183021,-0.001281,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183021,-0.001281,0.001750,0.249994,0,0);}
.m7b_c00329{transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);-ms-transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183164,-0.001465,0.002000,0.249992,0,0);}
.mf6_c00329{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);}
.m2c_c00329{transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);-ms-transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);}
.mb_c00329{transform:matrix(0.183331,-0.001283,0.001750,0.249994,0,0);-ms-transform:matrix(0.183331,-0.001283,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183331,-0.001283,0.001750,0.249994,0,0);}
.m1e_c00329{transform:matrix(0.183661,-0.001286,0.001750,0.249994,0,0);-ms-transform:matrix(0.183661,-0.001286,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183661,-0.001286,0.001750,0.249994,0,0);}
.m66_c00329{transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);}
.mb0_c00329{transform:matrix(0.183819,-0.001471,0.002000,0.249992,0,0);-ms-transform:matrix(0.183819,-0.001471,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183819,-0.001471,0.002000,0.249992,0,0);}
.m134_c00329{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);}
.m146_c00329{transform:matrix(0.184180,0.001289,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184180,0.001289,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184180,0.001289,-0.001750,0.249994,0,0);}
.mdf_c00329{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);}
.md0_c00329{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);}
.m65_c00329{transform:matrix(0.184814,-0.001479,0.002000,0.249992,0,0);-ms-transform:matrix(0.184814,-0.001479,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184814,-0.001479,0.002000,0.249992,0,0);}
.m15b_c00329{transform:matrix(0.185060,0.001295,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185060,0.001295,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185060,0.001295,-0.001750,0.249994,0,0);}
.me1_c00329{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);}
.m9a_c00329{transform:matrix(0.185324,-0.001483,0.002000,0.249992,0,0);-ms-transform:matrix(0.185324,-0.001483,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185324,-0.001483,0.002000,0.249992,0,0);}
.m166_c00329{transform:matrix(0.185425,0.001298,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185425,0.001298,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185425,0.001298,-0.001750,0.249994,0,0);}
.m143_c00329{transform:matrix(0.185650,0.001300,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185650,0.001300,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185650,0.001300,-0.001750,0.249994,0,0);}
.m1b_c00329{transform:matrix(0.185865,-0.001301,0.001750,0.249994,0,0);-ms-transform:matrix(0.185865,-0.001301,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185865,-0.001301,0.001750,0.249994,0,0);}
.m16c_c00329{transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);}
.m7f_c00329{transform:matrix(0.186569,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186569,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186569,-0.001493,0.002000,0.249992,0,0);}
.m40_c00329{transform:matrix(0.186679,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186679,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186679,-0.001493,0.002000,0.249992,0,0);}
.mce_c00329{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);}
.m99_c00329{transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187019,-0.001496,0.002000,0.249992,0,0);}
.m160_c00329{transform:matrix(0.187315,0.001311,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187315,0.001311,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187315,0.001311,-0.001750,0.249994,0,0);}
.m92_c00329{transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187419,-0.001499,0.002000,0.249992,0,0);}
.m61_c00329{transform:matrix(0.187464,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187464,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187464,-0.001500,0.002000,0.249992,0,0);}
.m34_c00329{transform:matrix(0.187469,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187469,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187469,-0.001500,0.002000,0.249992,0,0);}
.m120_c00329{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);}
.m111_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);}
.mfe_c00329{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);}
.m163_c00329{transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188055,0.001316,-0.001750,0.249994,0,0);}
.m11b_c00329{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);}
.md2_c00329{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);}
.m68_c00329{transform:matrix(0.188584,-0.001509,0.002000,0.249992,0,0);-ms-transform:matrix(0.188584,-0.001509,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188584,-0.001509,0.002000,0.249992,0,0);}
.m106_c00329{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);}
.mcc_c00329{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);}
.m72_c00329{transform:matrix(0.188849,-0.001511,0.002000,0.249992,0,0);-ms-transform:matrix(0.188849,-0.001511,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188849,-0.001511,0.002000,0.249992,0,0);}
.mfd_c00329{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);}
.mc7_c00329{transform:matrix(0.188984,-0.001512,0.002000,0.249992,0,0);-ms-transform:matrix(0.188984,-0.001512,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188984,-0.001512,0.002000,0.249992,0,0);}
.mcf_c00329{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);}
.ma1_c00329{transform:matrix(0.189504,-0.001516,0.002000,0.249992,0,0);-ms-transform:matrix(0.189504,-0.001516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189504,-0.001516,0.002000,0.249992,0,0);}
.m67_c00329{transform:matrix(0.189829,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189829,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189829,-0.001519,0.002000,0.249992,0,0);}
.m9d_c00329{transform:matrix(0.190234,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190234,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190234,-0.001522,0.002000,0.249992,0,0);}
.mc3_c00329{transform:matrix(0.190504,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190504,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190504,-0.001524,0.002000,0.249992,0,0);}
.m1c_c00329{transform:matrix(0.190790,-0.001336,0.001750,0.249994,0,0);-ms-transform:matrix(0.190790,-0.001336,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190790,-0.001336,0.001750,0.249994,0,0);}
.mdd_c00329{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);}
.m117_c00329{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);}
.m7d_c00329{transform:matrix(0.191374,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191374,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191374,-0.001531,0.002000,0.249992,0,0);}
.m53_c00329{transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);}
.md3_c00329{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);}
.m17_c00329{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);}
.m11d_c00329{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);}
.m8b_c00329{transform:matrix(0.191959,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.191959,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191959,-0.001536,0.002000,0.249992,0,0);}
.mb8_c00329{transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192189,-0.001538,0.002000,0.249992,0,0);}
.m24_c00329{transform:matrix(0.192450,-0.001347,0.001750,0.249994,0,0);-ms-transform:matrix(0.192450,-0.001347,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192450,-0.001347,0.001750,0.249994,0,0);}
.m6b_c00329{transform:matrix(0.192559,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192559,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192559,-0.001540,0.002000,0.249992,0,0);}
.m95_c00329{transform:matrix(0.192844,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192844,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192844,-0.001543,0.002000,0.249992,0,0);}
.m112_c00329{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);}
.m2d_c00329{transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);-ms-transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193289,-0.001546,0.002000,0.249992,0,0);}
.m158_c00329{transform:matrix(0.193310,0.001353,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193310,0.001353,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193310,0.001353,-0.001750,0.249994,0,0);}
.m44_c00329{transform:matrix(0.193599,-0.001549,0.002000,0.249992,0,0);-ms-transform:matrix(0.193599,-0.001549,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193599,-0.001549,0.002000,0.249992,0,0);}
.m55_c00329{transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);-ms-transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193609,-0.001549,0.002000,0.249992,0,0);}
.m154_c00329{transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193740,0.001356,-0.001750,0.249994,0,0);}
.mf7_c00329{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);}
.me4_c00329{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);}
.m10d_c00329{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);}
.m56_c00329{transform:matrix(0.194599,-0.001557,0.002000,0.249992,0,0);-ms-transform:matrix(0.194599,-0.001557,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194599,-0.001557,0.002000,0.249992,0,0);}
.mdc_c00329{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);}
.m151_c00329{transform:matrix(0.195105,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195105,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195105,0.001366,-0.001750,0.249994,0,0);}
.maa_c00329{transform:matrix(0.195119,-0.001561,0.002000,0.249992,0,0);-ms-transform:matrix(0.195119,-0.001561,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195119,-0.001561,0.002000,0.249992,0,0);}
.m121_c00329{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);}
.m123_c00329{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);}
.m48_c00329{transform:matrix(0.197699,-0.001582,0.002000,0.249992,0,0);-ms-transform:matrix(0.197699,-0.001582,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197699,-0.001582,0.002000,0.249992,0,0);}
.m162_c00329{transform:matrix(0.197750,0.001384,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197750,0.001384,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197750,0.001384,-0.001750,0.249994,0,0);}
.m4c_c00329{transform:matrix(0.197939,-0.001584,0.002000,0.249992,0,0);-ms-transform:matrix(0.197939,-0.001584,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197939,-0.001584,0.002000,0.249992,0,0);}
.m169_c00329{transform:matrix(0.198010,0.001386,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198010,0.001386,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198010,0.001386,-0.001750,0.249994,0,0);}
.m16a_c00329{transform:matrix(0.198155,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198155,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198155,0.001387,-0.001750,0.249994,0,0);}
.mbf_c00329{transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);-ms-transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);}
.m161_c00329{transform:matrix(0.198320,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198320,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198320,0.001388,-0.001750,0.249994,0,0);}
.m20_c00329{transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-ms-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198360,-0.001389,0.001750,0.249994,0,0);}
.m149_c00329{transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);}
.m107_c00329{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);}
.m156_c00329{transform:matrix(0.199335,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199335,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199335,0.001395,-0.001750,0.249994,0,0);}
.mc9_c00329{transform:matrix(0.199399,-0.001595,0.002000,0.249992,0,0);-ms-transform:matrix(0.199399,-0.001595,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199399,-0.001595,0.002000,0.249992,0,0);}
.maf_c00329{transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);-ms-transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199554,-0.001596,0.002000,0.249992,0,0);}
.mbb_c00329{transform:matrix(0.199679,-0.001597,0.002000,0.249992,0,0);-ms-transform:matrix(0.199679,-0.001597,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199679,-0.001597,0.002000,0.249992,0,0);}
.m93_c00329{transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199854,-0.001599,0.002000,0.249992,0,0);}
.mb3_c00329{transform:matrix(0.199979,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.199979,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199979,-0.001600,0.002000,0.249992,0,0);}
.mac_c00329{transform:matrix(0.200194,-0.001602,0.002000,0.249992,0,0);-ms-transform:matrix(0.200194,-0.001602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200194,-0.001602,0.002000,0.249992,0,0);}
.m108_c00329{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);}
.m129_c00329{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);}
.m10f_c00329{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);}
.mbe_c00329{transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);-ms-transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200784,-0.001606,0.002000,0.249992,0,0);}
.mef_c00329{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);}
.m13c_c00329{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_c00329{transform:matrix(0.201419,-0.001611,0.002000,0.249992,0,0);-ms-transform:matrix(0.201419,-0.001611,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201419,-0.001611,0.002000,0.249992,0,0);}
.m83_c00329{transform:matrix(0.201819,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201819,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201819,-0.001615,0.002000,0.249992,0,0);}
.m3b_c00329{transform:matrix(0.201864,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201864,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201864,-0.001615,0.002000,0.249992,0,0);}
.m164_c00329{transform:matrix(0.201980,0.001414,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201980,0.001414,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201980,0.001414,-0.001750,0.249994,0,0);}
.m57_c00329{transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);}
.m5a_c00329{transform:matrix(0.202409,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202409,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202409,-0.001619,0.002000,0.249992,0,0);}
.me0_c00329{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);}
.m86_c00329{transform:matrix(0.202759,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202759,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202759,-0.001622,0.002000,0.249992,0,0);}
.mca_c00329{transform:matrix(0.203263,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203263,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203263,-0.001626,0.002000,0.249992,0,0);}
.m88_c00329{transform:matrix(0.203698,-0.001630,0.002000,0.249992,0,0);-ms-transform:matrix(0.203698,-0.001630,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203698,-0.001630,0.002000,0.249992,0,0);}
.m1f_c00329{transform:matrix(0.203860,-0.001427,0.001750,0.249994,0,0);-ms-transform:matrix(0.203860,-0.001427,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203860,-0.001427,0.001750,0.249994,0,0);}
.m29_c00329{transform:matrix(0.204658,-0.001637,0.002000,0.249992,0,0);-ms-transform:matrix(0.204658,-0.001637,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204658,-0.001637,0.002000,0.249992,0,0);}
.m147_c00329{transform:matrix(0.204995,0.001435,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204995,0.001435,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204995,0.001435,-0.001750,0.249994,0,0);}
.mde_c00329{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);}
.m14e_c00329{transform:matrix(0.205095,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205095,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205095,0.001436,-0.001750,0.249994,0,0);}
.m5f_c00329{transform:matrix(0.205273,-0.001642,0.002000,0.249992,0,0);-ms-transform:matrix(0.205273,-0.001642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205273,-0.001642,0.002000,0.249992,0,0);}
.m31_c00329{transform:matrix(0.205348,-0.001643,0.002000,0.249992,0,0);-ms-transform:matrix(0.205348,-0.001643,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205348,-0.001643,0.002000,0.249992,0,0);}
.m15e_c00329{transform:matrix(0.205610,0.001439,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205610,0.001439,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205610,0.001439,-0.001750,0.249994,0,0);}
.me2_c00329{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);}
.m140_c00329{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);}
.mc6_c00329{transform:matrix(0.206628,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206628,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206628,-0.001653,0.002000,0.249992,0,0);}
.m7c_c00329{transform:matrix(0.206863,-0.001655,0.002000,0.249992,0,0);-ms-transform:matrix(0.206863,-0.001655,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206863,-0.001655,0.002000,0.249992,0,0);}
.m13a_c00329{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);}
.m85_c00329{transform:matrix(0.207703,-0.001662,0.002000,0.249992,0,0);-ms-transform:matrix(0.207703,-0.001662,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207703,-0.001662,0.002000,0.249992,0,0);}
.m8d_c00329{transform:matrix(0.207758,-0.001662,0.002000,0.249992,0,0);-ms-transform:matrix(0.207758,-0.001662,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207758,-0.001662,0.002000,0.249992,0,0);}
.m4a_c00329{transform:matrix(0.207828,-0.001663,0.002000,0.249992,0,0);-ms-transform:matrix(0.207828,-0.001663,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207828,-0.001663,0.002000,0.249992,0,0);}
.mf3_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);}
.me3_c00329{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);}
.mc2_c00329{transform:matrix(0.208963,-0.001672,0.002000,0.249992,0,0);-ms-transform:matrix(0.208963,-0.001672,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208963,-0.001672,0.002000,0.249992,0,0);}
.md4_c00329{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);}
.m26_c00329{transform:matrix(0.209918,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209918,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209918,-0.001679,0.002000,0.249992,0,0);}
.m4_c00329{transform:matrix(0.209935,-0.001470,0.001750,0.249994,0,0);-ms-transform:matrix(0.209935,-0.001470,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209935,-0.001470,0.001750,0.249994,0,0);}
.md6_c00329{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);}
.m5c_c00329{transform:matrix(0.210678,-0.001685,0.002000,0.249992,0,0);-ms-transform:matrix(0.210678,-0.001685,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210678,-0.001685,0.002000,0.249992,0,0);}
.m6e_c00329{transform:matrix(0.210828,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210828,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210828,-0.001687,0.002000,0.249992,0,0);}
.mb4_c00329{transform:matrix(0.210888,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210888,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210888,-0.001687,0.002000,0.249992,0,0);}
.m12f_c00329{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);}
.meb_c00329{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);}
.md8_c00329{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);}
.m122_c00329{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);}
.m152_c00329{transform:matrix(0.211620,0.001481,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211620,0.001481,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211620,0.001481,-0.001750,0.249994,0,0);}
.md5_c00329{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);}
.m137_c00329{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);}
.m62_c00329{transform:matrix(0.212018,-0.001696,0.002000,0.249992,0,0);-ms-transform:matrix(0.212018,-0.001696,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212018,-0.001696,0.002000,0.249992,0,0);}
.m47_c00329{transform:matrix(0.212058,-0.001696,0.002000,0.249992,0,0);-ms-transform:matrix(0.212058,-0.001696,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212058,-0.001696,0.002000,0.249992,0,0);}
.m14d_c00329{transform:matrix(0.212260,0.001486,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212260,0.001486,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212260,0.001486,-0.001750,0.249994,0,0);}
.m9b_c00329{transform:matrix(0.212483,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212483,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212483,-0.001700,0.002000,0.249992,0,0);}
.md7_c00329{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);}
.m13b_c00329{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);}
.m2f_c00329{transform:matrix(0.213008,-0.001704,0.002000,0.249992,0,0);-ms-transform:matrix(0.213008,-0.001704,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213008,-0.001704,0.002000,0.249992,0,0);}
.ma3_c00329{transform:matrix(0.213213,-0.001706,0.002000,0.249992,0,0);-ms-transform:matrix(0.213213,-0.001706,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213213,-0.001706,0.002000,0.249992,0,0);}
.me6_c00329{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);}
.m150_c00329{transform:matrix(0.214050,0.001498,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214050,0.001498,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214050,0.001498,-0.001750,0.249994,0,0);}
.m103_c00329{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);}
.md9_c00329{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);}
.m59_c00329{transform:matrix(0.215508,-0.001724,0.002000,0.249992,0,0);-ms-transform:matrix(0.215508,-0.001724,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215508,-0.001724,0.002000,0.249992,0,0);}
.m87_c00329{transform:matrix(0.215593,-0.001725,0.002000,0.249992,0,0);-ms-transform:matrix(0.215593,-0.001725,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215593,-0.001725,0.002000,0.249992,0,0);}
.m46_c00329{transform:matrix(0.216003,-0.001728,0.002000,0.249992,0,0);-ms-transform:matrix(0.216003,-0.001728,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216003,-0.001728,0.002000,0.249992,0,0);}
.mb5_c00329{transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);}
.m8c_c00329{transform:matrix(0.216283,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216283,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216283,-0.001730,0.002000,0.249992,0,0);}
.mf4_c00329{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);}
.mc0_c00329{transform:matrix(0.218053,-0.001744,0.002000,0.249992,0,0);-ms-transform:matrix(0.218053,-0.001744,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218053,-0.001744,0.002000,0.249992,0,0);}
.mfc_c00329{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);}
.m14b_c00329{transform:matrix(0.218350,0.001528,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218350,0.001528,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218350,0.001528,-0.001750,0.249994,0,0);}
.m89_c00329{transform:matrix(0.218743,-0.001750,0.002000,0.249992,0,0);-ms-transform:matrix(0.218743,-0.001750,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218743,-0.001750,0.002000,0.249992,0,0);}
.m3e_c00329{transform:matrix(0.218913,-0.001751,0.002000,0.249992,0,0);-ms-transform:matrix(0.218913,-0.001751,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218913,-0.001751,0.002000,0.249992,0,0);}
.m4b_c00329{transform:matrix(0.220103,-0.001761,0.002000,0.249992,0,0);-ms-transform:matrix(0.220103,-0.001761,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220103,-0.001761,0.002000,0.249992,0,0);}
.m84_c00329{transform:matrix(0.220158,-0.001761,0.002000,0.249992,0,0);-ms-transform:matrix(0.220158,-0.001761,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220158,-0.001761,0.002000,0.249992,0,0);}
.m138_c00329{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m10a_c00329{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);}
.m38_c00329{transform:matrix(0.221313,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221313,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221313,-0.001771,0.002000,0.249992,0,0);}
.m64_c00329{transform:matrix(0.221333,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221333,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221333,-0.001771,0.002000,0.249992,0,0);}
.m3a_c00329{transform:matrix(0.221923,-0.001775,0.002000,0.249992,0,0);-ms-transform:matrix(0.221923,-0.001775,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221923,-0.001775,0.002000,0.249992,0,0);}
.m5e_c00329{transform:matrix(0.222833,-0.001783,0.002000,0.249992,0,0);-ms-transform:matrix(0.222833,-0.001783,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222833,-0.001783,0.002000,0.249992,0,0);}
.m3f_c00329{transform:matrix(0.222873,-0.001783,0.002000,0.249992,0,0);-ms-transform:matrix(0.222873,-0.001783,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222873,-0.001783,0.002000,0.249992,0,0);}
.m105_c00329{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);}
.m13d_c00329{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);}
.m116_c00329{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);}
.m114_c00329{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);}
.m41_c00329{transform:matrix(0.224543,-0.001796,0.002000,0.249992,0,0);-ms-transform:matrix(0.224543,-0.001796,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224543,-0.001796,0.002000,0.249992,0,0);}
.mda_c00329{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);}
.mb1_c00329{transform:matrix(0.225063,-0.001801,0.002000,0.249992,0,0);-ms-transform:matrix(0.225063,-0.001801,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225063,-0.001801,0.002000,0.249992,0,0);}
.m15d_c00329{transform:matrix(0.225209,0.001576,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225209,0.001576,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225209,0.001576,-0.001750,0.249994,0,0);}
.m12b_c00329{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);}
.ma8_c00329{transform:matrix(0.226088,-0.001809,0.002000,0.249992,0,0);-ms-transform:matrix(0.226088,-0.001809,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226088,-0.001809,0.002000,0.249992,0,0);}
.m42_c00329{transform:matrix(0.226123,-0.001809,0.002000,0.249992,0,0);-ms-transform:matrix(0.226123,-0.001809,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226123,-0.001809,0.002000,0.249992,0,0);}
.m8a_c00329{transform:matrix(0.226503,-0.001812,0.002000,0.249992,0,0);-ms-transform:matrix(0.226503,-0.001812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226503,-0.001812,0.002000,0.249992,0,0);}
.m5b_c00329{transform:matrix(0.226558,-0.001812,0.002000,0.249992,0,0);-ms-transform:matrix(0.226558,-0.001812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226558,-0.001812,0.002000,0.249992,0,0);}
.m58_c00329{transform:matrix(0.226743,-0.001814,0.002000,0.249992,0,0);-ms-transform:matrix(0.226743,-0.001814,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226743,-0.001814,0.002000,0.249992,0,0);}
.m136_c00329{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m10c_c00329{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);}
.m100_c00329{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);}
.m125_c00329{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);}
.m11e_c00329{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);}
.m82_c00329{transform:matrix(0.232028,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.232028,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232028,-0.001856,0.002000,0.249992,0,0);}
.m0_c00329{transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);}
.m113_c00329{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);}
.m10b_c00329{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);}
.m131_c00329{transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);}
.md1_c00329{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.236019,-0.001652,0.001750,0.249994,0,0);-ms-transform:matrix(0.236019,-0.001652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236019,-0.001652,0.001750,0.249994,0,0);}
.m3_c00329{transform:matrix(0.236384,-0.001655,0.001750,0.249994,0,0);-ms-transform:matrix(0.236384,-0.001655,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236384,-0.001655,0.001750,0.249994,0,0);}
.mf2_c00329{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);}
.m39_c00329{transform:matrix(0.240447,-0.001924,0.002000,0.249992,0,0);-ms-transform:matrix(0.240447,-0.001924,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240447,-0.001924,0.002000,0.249992,0,0);}
.m12a_c00329{transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);}
.mf8_c00329{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);}
.m155_c00329{transform:matrix(0.244729,0.001713,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244729,0.001713,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244729,0.001713,-0.001750,0.249994,0,0);}
.mbc_c00329{transform:matrix(0.245777,-0.001966,0.002000,0.249992,0,0);-ms-transform:matrix(0.245777,-0.001966,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245777,-0.001966,0.002000,0.249992,0,0);}
.m35_c00329{transform:matrix(0.252002,-0.002016,0.002000,0.249992,0,0);-ms-transform:matrix(0.252002,-0.002016,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252002,-0.002016,0.002000,0.249992,0,0);}
.m13e_c00329{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);}
.m9_c00329{transform:matrix(0.252714,-0.001769,0.001750,0.249994,0,0);-ms-transform:matrix(0.252714,-0.001769,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252714,-0.001769,0.001750,0.249994,0,0);}
.m141_c00329{transform:matrix(0.253309,0.001773,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253309,0.001773,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253309,0.001773,-0.001750,0.249994,0,0);}
.m90_c00329{transform:matrix(0.254027,-0.002032,0.002000,0.249992,0,0);-ms-transform:matrix(0.254027,-0.002032,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254027,-0.002032,0.002000,0.249992,0,0);}
.m135_c00329{transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256720,0.000000,0.000000,0.250000,0,0);}
.m5d_c00329{transform:matrix(0.257007,-0.002056,0.002000,0.249992,0,0);-ms-transform:matrix(0.257007,-0.002056,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257007,-0.002056,0.002000,0.249992,0,0);}
.mbd_c00329{transform:matrix(0.258217,-0.002066,0.002000,0.249992,0,0);-ms-transform:matrix(0.258217,-0.002066,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258217,-0.002066,0.002000,0.249992,0,0);}
.m50_c00329{transform:matrix(0.261077,-0.002089,0.002000,0.249992,0,0);-ms-transform:matrix(0.261077,-0.002089,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261077,-0.002089,0.002000,0.249992,0,0);}
.m128_c00329{transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);}
.m12e_c00329{transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);}
.mcb_c00329{transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);}
.m132_c00329{transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264095,0.000000,0.000000,0.250000,0,0);}
.m11c_c00329{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);}
.m1_c00329{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.267853,-0.001875,0.001750,0.249994,0,0);-ms-transform:matrix(0.267853,-0.001875,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267853,-0.001875,0.001750,0.249994,0,0);}
.m109_c00329{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m3d_c00329{transform:matrix(0.276401,-0.002211,0.002000,0.249992,0,0);-ms-transform:matrix(0.276401,-0.002211,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276401,-0.002211,0.002000,0.249992,0,0);}
.m16e_c00329{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);}
.m13f_c00329{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.m118_c00329{transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.304543,-0.002132,0.001750,0.249994,0,0);-ms-transform:matrix(0.304543,-0.002132,0.001750,0.249994,0,0);-webkit-transform:matrix(0.304543,-0.002132,0.001750,0.249994,0,0);}
.ma_c00329{transform:matrix(0.308057,-0.002156,0.001750,0.249994,0,0);-ms-transform:matrix(0.308057,-0.002156,0.001750,0.249994,0,0);-webkit-transform:matrix(0.308057,-0.002156,0.001750,0.249994,0,0);}
.m8f_c00329{transform:matrix(0.315230,-0.002522,0.002000,0.249992,0,0);-ms-transform:matrix(0.315230,-0.002522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.315230,-0.002522,0.002000,0.249992,0,0);}
.md_c00329{transform:matrix(0.322142,-0.002255,0.001750,0.249994,0,0);-ms-transform:matrix(0.322142,-0.002255,0.001750,0.249994,0,0);-webkit-transform:matrix(0.322142,-0.002255,0.001750,0.249994,0,0);}
.m12c_c00329{transform:matrix(0.327230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327230,0.000000,0.000000,0.250000,0,0);}
.me7_c00329{transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);}
.m171_c00329{transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331265,0.000000,0.000000,0.250000,0,0);}
.m51_c00329{transform:matrix(0.332544,-0.002660,0.002000,0.249992,0,0);-ms-transform:matrix(0.332544,-0.002660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.332544,-0.002660,0.002000,0.249992,0,0);}
.ma9_c00329{transform:matrix(0.339334,-0.002715,0.002000,0.249992,0,0);-ms-transform:matrix(0.339334,-0.002715,0.002000,0.249992,0,0);-webkit-transform:matrix(0.339334,-0.002715,0.002000,0.249992,0,0);}
.m3c_c00329{transform:matrix(0.347874,-0.002783,0.002000,0.249992,0,0);-ms-transform:matrix(0.347874,-0.002783,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347874,-0.002783,0.002000,0.249992,0,0);}
.m115_c00329{transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);}
.m148_c00329{transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);-ms-transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.351916,0.002463,-0.001750,0.249994,0,0);}
.m167_c00329{transform:matrix(0.351926,0.002463,-0.001750,0.249994,0,0);-ms-transform:matrix(0.351926,0.002463,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.351926,0.002463,-0.001750,0.249994,0,0);}
.m139_c00329{transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352400,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.382726,-0.002679,0.001750,0.249994,0,0);-ms-transform:matrix(0.382726,-0.002679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.382726,-0.002679,0.001750,0.249994,0,0);}
.m7_c00329{transform:matrix(0.387336,-0.002711,0.001750,0.249994,0,0);-ms-transform:matrix(0.387336,-0.002711,0.001750,0.249994,0,0);-webkit-transform:matrix(0.387336,-0.002711,0.001750,0.249994,0,0);}
.m8_c00329{transform:matrix(0.399995,-0.002800,0.001750,0.249994,0,0);-ms-transform:matrix(0.399995,-0.002800,0.001750,0.249994,0,0);-webkit-transform:matrix(0.399995,-0.002800,0.001750,0.249994,0,0);}
.me_c00329{transform:matrix(0.404030,-0.002828,0.001750,0.249994,0,0);-ms-transform:matrix(0.404030,-0.002828,0.001750,0.249994,0,0);-webkit-transform:matrix(0.404030,-0.002828,0.001750,0.249994,0,0);}
.m16d_c00329{transform:matrix(0.408965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408965,0.000000,0.000000,0.250000,0,0);}
.m12d_c00329{transform:matrix(0.416655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416655,0.000000,0.000000,0.250000,0,0);}
.mc4_c00329{transform:matrix(0.418687,-0.003349,0.002000,0.249992,0,0);-ms-transform:matrix(0.418687,-0.003349,0.002000,0.249992,0,0);-webkit-transform:matrix(0.418687,-0.003349,0.002000,0.249992,0,0);}
.m172_c00329{transform:matrix(0.420070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420070,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.436410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436410,0.000000,0.000000,0.250000,0,0);}
.m170_c00329{transform:matrix(0.436495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436495,0.000000,0.000000,0.250000,0,0);}
.m173_c00329{transform:matrix(0.447740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447740,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.470113,-0.003291,0.001750,0.249994,0,0);-ms-transform:matrix(0.470113,-0.003291,0.001750,0.249994,0,0);-webkit-transform:matrix(0.470113,-0.003291,0.001750,0.249994,0,0);}
.m10_c00329{transform:matrix(0.474658,-0.003323,0.001750,0.249994,0,0);-ms-transform:matrix(0.474658,-0.003323,0.001750,0.249994,0,0);-webkit-transform:matrix(0.474658,-0.003323,0.001750,0.249994,0,0);}
.m130_c00329{transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);}
.m16f_c00329{transform:matrix(0.596660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596660,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.643184,-0.004502,0.001750,0.249994,0,0);-ms-transform:matrix(0.643184,-0.004502,0.001750,0.249994,0,0);-webkit-transform:matrix(0.643184,-0.004502,0.001750,0.249994,0,0);}
.mf_c00329{transform:matrix(0.671074,-0.004698,0.001750,0.249994,0,0);-ms-transform:matrix(0.671074,-0.004698,0.001750,0.249994,0,0);-webkit-transform:matrix(0.671074,-0.004698,0.001750,0.249994,0,0);}
.m14_c00329{transform:matrix(0.718902,-0.005032,0.001750,0.249994,0,0);-ms-transform:matrix(0.718902,-0.005032,0.001750,0.249994,0,0);-webkit-transform:matrix(0.718902,-0.005032,0.001750,0.249994,0,0);}
.m15_c00329{transform:matrix(1.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.193625,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(1.805575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805575,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;}
.fs4_c00329{font-size:22.050000px;}
.fs20_c00329{font-size:26.250000px;}
.fs1c_c00329{font-size:36.750000px;}
.fs1d_c00329{font-size:53.550000px;}
.fs1f_c00329{font-size:54.601338px;}
.fs0_c00329{font-size:55.650000px;}
.fs1e_c00329{font-size:57.751415px;}
.fs1b_c00329{font-size:60.900000px;}
.fs13_c00329{font-size:61.950000px;}
.fs8_c00329{font-size:61.951982px;}
.fs1_c00329{font-size:65.101595px;}
.fsb_c00329{font-size:66.152117px;}
.fs9_c00329{font-size:67.202150px;}
.fs14_c00329{font-size:68.250000px;}
.fs7_c00329{font-size:68.252184px;}
.fs17_c00329{font-size:69.300000px;}
.fs5_c00329{font-size:69.301698px;}
.fs11_c00329{font-size:69.302218px;}
.fs16_c00329{font-size:70.350000px;}
.fsa_c00329{font-size:70.352251px;}
.fs12_c00329{font-size:71.400000px;}
.fsf_c00329{font-size:71.402285px;}
.fs6_c00329{font-size:72.452318px;}
.fse_c00329{font-size:73.502352px;}
.fsd_c00329{font-size:74.552386px;}
.fsc_c00329{font-size:75.602419px;}
.fs15_c00329{font-size:76.650000px;}
.fs10_c00329{font-size:76.652453px;}
.fs1a_c00329{font-size:79.800000px;}
.fs3_c00329{font-size:79.801955px;}
.fs21_c00329{font-size:86.100000px;}
.fs2_c00329{font-size:100.802470px;}
.fs18_c00329{font-size:106.050000px;}
.fs19_c00329{font-size:114.450000px;}
.y0_c00329{bottom:0.000000px;}
.y125_c00329{bottom:92.095500px;}
.y124_c00329{bottom:108.295500px;}
.y123_c00329{bottom:141.648680px;}
.y122_c00329{bottom:141.777360px;}
.y121_c00329{bottom:141.932799px;}
.y120_c00329{bottom:142.540352px;}
.y11f_c00329{bottom:142.736753px;}
.y11e_c00329{bottom:142.885442px;}
.y11d_c00329{bottom:143.269289px;}
.y11c_c00329{bottom:143.703704px;}
.y11b_c00329{bottom:144.211266px;}
.y11a_c00329{bottom:144.413126px;}
.y119_c00329{bottom:144.763170px;}
.y118_c00329{bottom:144.988514px;}
.y116_c00329{bottom:160.804227px;}
.y115_c00329{bottom:160.804467px;}
.y117_c00329{bottom:160.804677px;}
.y10a_c00329{bottom:160.804744px;}
.y10b_c00329{bottom:160.804755px;}
.y113_c00329{bottom:160.804997px;}
.y111_c00329{bottom:160.805076px;}
.y114_c00329{bottom:160.805206px;}
.y110_c00329{bottom:160.805256px;}
.y10c_c00329{bottom:160.805475px;}
.y10e_c00329{bottom:160.805576px;}
.y112_c00329{bottom:160.805736px;}
.y10f_c00329{bottom:160.805876px;}
.y10d_c00329{bottom:160.806116px;}
.y109_c00329{bottom:176.839509px;}
.y108_c00329{bottom:177.062550px;}
.y107_c00329{bottom:177.323360px;}
.y106_c00329{bottom:177.421241px;}
.y105_c00329{bottom:177.703019px;}
.y104_c00329{bottom:177.878851px;}
.y103_c00329{bottom:177.986508px;}
.y102_c00329{bottom:178.362744px;}
.y101_c00329{bottom:178.445264px;}
.y100_c00329{bottom:178.683950px;}
.yff_c00329{bottom:178.739033px;}
.yfe_c00329{bottom:179.022301px;}
.yfd_c00329{bottom:179.192328px;}
.yfc_c00329{bottom:179.337921px;}
.yfb_c00329{bottom:179.449274px;}
.yfa_c00329{bottom:179.888069px;}
.yf9_c00329{bottom:179.982474px;}
.yf8_c00329{bottom:180.096000px;}
.yf7_c00329{bottom:197.008500px;}
.yf1_c00329{bottom:247.351500px;}
.yf0_c00329{bottom:247.950000px;}
.yef_c00329{bottom:248.346000px;}
.yee_c00329{bottom:248.685000px;}
.yed_c00329{bottom:248.890500px;}
.yec_c00329{bottom:249.316500px;}
.yeb_c00329{bottom:249.465000px;}
.yea_c00329{bottom:249.744000px;}
.ye9_c00329{bottom:250.306500px;}
.ye8_c00329{bottom:250.473000px;}
.ye7_c00329{bottom:250.831500px;}
.ye6_c00329{bottom:269.932500px;}
.ye5_c00329{bottom:270.232500px;}
.ye4_c00329{bottom:270.673500px;}
.ye3_c00329{bottom:270.889500px;}
.ye2_c00329{bottom:271.129500px;}
.ye1_c00329{bottom:271.282500px;}
.ye0_c00329{bottom:271.636500px;}
.ydf_c00329{bottom:271.803000px;}
.yde_c00329{bottom:272.019000px;}
.ydd_c00329{bottom:272.656500px;}
.ydc_c00329{bottom:272.866500px;}
.ydb_c00329{bottom:273.270000px;}
.yda_c00329{bottom:273.511500px;}
.yd9_c00329{bottom:294.753000px;}
.yd8_c00329{bottom:316.401000px;}
.yd7_c00329{bottom:316.651500px;}
.yd6_c00329{bottom:316.942500px;}
.yd5_c00329{bottom:317.421000px;}
.yd4_c00329{bottom:317.521500px;}
.yd3_c00329{bottom:317.838000px;}
.yd2_c00329{bottom:317.970000px;}
.yd1_c00329{bottom:318.195000px;}
.yd0_c00329{bottom:318.399000px;}
.ycf_c00329{bottom:318.745500px;}
.yce_c00329{bottom:318.775500px;}
.ycd_c00329{bottom:319.152000px;}
.ycc_c00329{bottom:340.369500px;}
.ycb_c00329{bottom:363.828000px;}
.yca_c00329{bottom:386.733000px;}
.yc9_c00329{bottom:409.921500px;}
.yc8_c00329{bottom:432.891000px;}
.yc4_c00329{bottom:455.744124px;}
.yc7_c00329{bottom:455.744508px;}
.yc5_c00329{bottom:455.744532px;}
.yc3_c00329{bottom:455.744796px;}
.yc6_c00329{bottom:455.744940px;}
.yc2_c00329{bottom:478.456608px;}
.yc1_c00329{bottom:478.456620px;}
.yc0_c00329{bottom:478.457292px;}
.ybe_c00329{bottom:478.457724px;}
.ybf_c00329{bottom:478.457844px;}
.ybd_c00329{bottom:478.458420px;}
.ybc_c00329{bottom:478.458492px;}
.ybb_c00329{bottom:478.459224px;}
.yba_c00329{bottom:478.459956px;}
.yb9_c00329{bottom:478.460268px;}
.yb8_c00329{bottom:502.161564px;}
.yb7_c00329{bottom:502.162116px;}
.yb6_c00329{bottom:502.162680px;}
.yb4_c00329{bottom:502.162788px;}
.yb3_c00329{bottom:502.163040px;}
.yb1_c00329{bottom:502.163124px;}
.yb2_c00329{bottom:502.163172px;}
.yb5_c00329{bottom:502.163184px;}
.ya9_c00329{bottom:525.141144px;}
.yae_c00329{bottom:525.141156px;}
.yab_c00329{bottom:525.141240px;}
.yac_c00329{bottom:525.141336px;}
.ya7_c00329{bottom:525.141408px;}
.yaf_c00329{bottom:525.141444px;}
.ya8_c00329{bottom:525.141576px;}
.yaa_c00329{bottom:525.141612px;}
.yad_c00329{bottom:525.141636px;}
.ya5_c00329{bottom:525.141660px;}
.ya6_c00329{bottom:525.141828px;}
.yb0_c00329{bottom:525.142092px;}
.yf6_c00329{bottom:532.170000px;}
.ya0_c00329{bottom:547.492716px;}
.y9f_c00329{bottom:547.492788px;}
.y9d_c00329{bottom:547.493100px;}
.ya1_c00329{bottom:547.493304px;}
.y9e_c00329{bottom:547.493448px;}
.y9c_c00329{bottom:547.493592px;}
.y97_c00329{bottom:547.493760px;}
.ya4_c00329{bottom:547.493868px;}
.y9b_c00329{bottom:547.493904px;}
.ya2_c00329{bottom:547.494012px;}
.y99_c00329{bottom:547.494036px;}
.y9a_c00329{bottom:547.494276px;}
.y98_c00329{bottom:547.494288px;}
.ya3_c00329{bottom:547.494372px;}
.yf4_c00329{bottom:554.310000px;}
.yf5_c00329{bottom:558.900000px;}
.y93_c00329{bottom:570.982836px;}
.y92_c00329{bottom:570.983328px;}
.y90_c00329{bottom:570.983352px;}
.y95_c00329{bottom:570.983364px;}
.y96_c00329{bottom:570.983412px;}
.y94_c00329{bottom:570.983436px;}
.y8b_c00329{bottom:570.983844px;}
.y8f_c00329{bottom:570.984024px;}
.y91_c00329{bottom:570.984060px;}
.y8c_c00329{bottom:570.984192px;}
.y8e_c00329{bottom:570.984348px;}
.y8d_c00329{bottom:570.984420px;}
.y8a_c00329{bottom:570.984444px;}
.yf3_c00329{bottom:593.329500px;}
.y82_c00329{bottom:593.962632px;}
.y81_c00329{bottom:593.962764px;}
.y83_c00329{bottom:593.962920px;}
.y84_c00329{bottom:593.963040px;}
.y80_c00329{bottom:593.963316px;}
.y85_c00329{bottom:593.963448px;}
.y7f_c00329{bottom:593.963568px;}
.y88_c00329{bottom:593.963664px;}
.y86_c00329{bottom:593.964048px;}
.y89_c00329{bottom:593.964300px;}
.y87_c00329{bottom:593.964324px;}
.yf2_c00329{bottom:615.600000px;}
.y76_c00329{bottom:616.342812px;}
.y7a_c00329{bottom:616.342824px;}
.y7b_c00329{bottom:616.342992px;}
.y77_c00329{bottom:616.343100px;}
.y74_c00329{bottom:616.343316px;}
.y7c_c00329{bottom:616.343400px;}
.y75_c00329{bottom:616.343484px;}
.y73_c00329{bottom:616.343496px;}
.y79_c00329{bottom:616.343556px;}
.y78_c00329{bottom:616.343628px;}
.y7d_c00329{bottom:616.343928px;}
.y7e_c00329{bottom:616.344276px;}
.y71_c00329{bottom:639.802140px;}
.y70_c00329{bottom:639.802380px;}
.y72_c00329{bottom:639.802788px;}
.y6f_c00329{bottom:639.802992px;}
.y6e_c00329{bottom:639.803472px;}
.y6b_c00329{bottom:639.803772px;}
.y6a_c00329{bottom:639.804024px;}
.y69_c00329{bottom:639.804156px;}
.y6d_c00329{bottom:639.804216px;}
.y6c_c00329{bottom:639.804300px;}
.y63_c00329{bottom:662.994744px;}
.y62_c00329{bottom:662.994996px;}
.y64_c00329{bottom:662.995092px;}
.y65_c00329{bottom:662.995308px;}
.y61_c00329{bottom:662.995428px;}
.y60_c00329{bottom:662.995740px;}
.y66_c00329{bottom:662.995908px;}
.y5f_c00329{bottom:662.996172px;}
.y67_c00329{bottom:662.996256px;}
.y5e_c00329{bottom:662.996304px;}
.y68_c00329{bottom:662.996364px;}
.y58_c00329{bottom:685.768560px;}
.y5d_c00329{bottom:685.768788px;}
.y59_c00329{bottom:685.768896px;}
.y57_c00329{bottom:685.769292px;}
.y56_c00329{bottom:685.769364px;}
.y55_c00329{bottom:685.769436px;}
.y54_c00329{bottom:685.769448px;}
.y5c_c00329{bottom:685.769460px;}
.y5a_c00329{bottom:685.769616px;}
.y5b_c00329{bottom:685.769844px;}
.y4d_c00329{bottom:709.406304px;}
.y50_c00329{bottom:709.406340px;}
.y4f_c00329{bottom:709.406472px;}
.y52_c00329{bottom:709.406616px;}
.y4e_c00329{bottom:709.406772px;}
.y51_c00329{bottom:709.406808px;}
.y4c_c00329{bottom:709.407036px;}
.y4b_c00329{bottom:709.407108px;}
.y53_c00329{bottom:709.407264px;}
.y46_c00329{bottom:732.145464px;}
.y47_c00329{bottom:732.145512px;}
.y48_c00329{bottom:732.145908px;}
.y45_c00329{bottom:732.146076px;}
.y44_c00329{bottom:732.146148px;}
.y42_c00329{bottom:732.146280px;}
.y43_c00329{bottom:732.146400px;}
.y49_c00329{bottom:732.146484px;}
.y41_c00329{bottom:732.146904px;}
.y4a_c00329{bottom:732.147012px;}
.y37_c00329{bottom:755.304180px;}
.y38_c00329{bottom:755.304468px;}
.y36_c00329{bottom:755.304552px;}
.y3a_c00329{bottom:755.304972px;}
.y39_c00329{bottom:755.305164px;}
.y3b_c00329{bottom:755.305272px;}
.y3e_c00329{bottom:755.305596px;}
.y3c_c00329{bottom:755.305680px;}
.y3f_c00329{bottom:755.305944px;}
.y40_c00329{bottom:755.306232px;}
.y3d_c00329{bottom:755.306268px;}
.y34_c00329{bottom:778.491816px;}
.y2d_c00329{bottom:778.491900px;}
.y35_c00329{bottom:778.491984px;}
.y32_c00329{bottom:778.492068px;}
.y33_c00329{bottom:778.492356px;}
.y2e_c00329{bottom:778.492428px;}
.y31_c00329{bottom:778.492452px;}
.y30_c00329{bottom:778.492584px;}
.y2f_c00329{bottom:778.492596px;}
.y24_c00329{bottom:799.413000px;}
.y25_c00329{bottom:799.965948px;}
.y26_c00329{bottom:800.153616px;}
.y27_c00329{bottom:800.380440px;}
.y28_c00329{bottom:800.871108px;}
.y29_c00329{bottom:801.644592px;}
.y2a_c00329{bottom:801.903576px;}
.y2b_c00329{bottom:802.547196px;}
.y2c_c00329{bottom:802.739328px;}
.y17_c00329{bottom:822.150000px;}
.y18_c00329{bottom:822.324090px;}
.y19_c00329{bottom:822.509342px;}
.y1a_c00329{bottom:822.857101px;}
.y1b_c00329{bottom:823.208673px;}
.y1c_c00329{bottom:823.514674px;}
.y1d_c00329{bottom:823.696346px;}
.y1e_c00329{bottom:823.798427px;}
.y1f_c00329{bottom:824.013876px;}
.y20_c00329{bottom:824.272596px;}
.y21_c00329{bottom:824.416488px;}
.y22_c00329{bottom:824.656487px;}
.y23_c00329{bottom:825.008027px;}
.y16_c00329{bottom:849.004500px;}
.y14_c00329{bottom:850.092000px;}
.y15_c00329{bottom:850.230000px;}
.y12_c00329{bottom:862.923217px;}
.y13_c00329{bottom:864.208551px;}
.y1_c00329{bottom:906.526500px;}
.yd_c00329{bottom:909.683530px;}
.y11_c00329{bottom:909.683757px;}
.yf_c00329{bottom:909.683769px;}
.ye_c00329{bottom:909.683940px;}
.y10_c00329{bottom:909.684318px;}
.y2_c00329{bottom:923.940000px;}
.y3_c00329{bottom:924.263421px;}
.y4_c00329{bottom:924.414547px;}
.y5_c00329{bottom:924.660310px;}
.y6_c00329{bottom:924.794322px;}
.y7_c00329{bottom:925.612881px;}
.y8_c00329{bottom:925.915354px;}
.y9_c00329{bottom:926.053272px;}
.ya_c00329{bottom:926.684196px;}
.yb_c00329{bottom:926.915143px;}
.yc_c00329{bottom:927.283609px;}
.h6_c00329{height:22.050000px;}
.h22_c00329{height:26.250000px;}
.h1e_c00329{height:36.750000px;}
.h1f_c00329{height:53.550000px;}
.h21_c00329{height:54.601338px;}
.h2_c00329{height:55.650000px;}
.h20_c00329{height:57.751415px;}
.h1d_c00329{height:60.900000px;}
.h15_c00329{height:61.950000px;}
.ha_c00329{height:61.951982px;}
.h3_c00329{height:65.101595px;}
.hd_c00329{height:66.152117px;}
.hb_c00329{height:67.202150px;}
.h16_c00329{height:68.250000px;}
.h9_c00329{height:68.252184px;}
.h19_c00329{height:69.300000px;}
.h7_c00329{height:69.301698px;}
.h13_c00329{height:69.302218px;}
.h18_c00329{height:70.350000px;}
.hc_c00329{height:70.352251px;}
.h14_c00329{height:71.400000px;}
.h11_c00329{height:71.402285px;}
.h8_c00329{height:72.452318px;}
.h10_c00329{height:73.502352px;}
.hf_c00329{height:74.552386px;}
.he_c00329{height:75.602419px;}
.h17_c00329{height:76.650000px;}
.h12_c00329{height:76.652453px;}
.h1c_c00329{height:79.800000px;}
.h5_c00329{height:79.801955px;}
.h23_c00329{height:86.100000px;}
.h4_c00329{height:100.802470px;}
.h1a_c00329{height:106.050000px;}
.h1b_c00329{height:114.450000px;}
.h0_c00329{height:1008.450000px;}
.h1_c00329{height:1008.750000px;}
.w0_c00329{width:696.000000px;}
.x0_c00329{left:0.000000px;}
.x4_c00329{left:99.169500px;}
.xb5_c00329{left:100.440000px;}
.xb6_c00329{left:108.810000px;}
.xb7_c00329{left:113.130000px;}
.xb8_c00329{left:114.210000px;}
.xb4_c00329{left:118.260000px;}
.x1_c00329{left:122.040000px;}
.x2_c00329{left:146.070000px;}
.x7f_c00329{left:148.763268px;}
.xa4_c00329{left:150.120000px;}
.x6c_c00329{left:153.628044px;}
.x12_c00329{left:154.701818px;}
.x8a_c00329{left:155.781540px;}
.xb9_c00329{left:160.110000px;}
.x22_c00329{left:165.621000px;}
.x5_c00329{left:166.962000px;}
.x3_c00329{left:170.910000px;}
.x80_c00329{left:173.333340px;}
.x5d_c00329{left:174.688044px;}
.x74_c00329{left:178.735560px;}
.x18_c00329{left:180.180000px;}
.xc1_c00329{left:184.860000px;}
.xba_c00329{left:186.300000px;}
.xe_c00329{left:188.193650px;}
.x7c_c00329{left:193.045284px;}
.x93_c00329{left:194.400000px;}
.x65_c00329{left:197.368524px;}
.x2b_c00329{left:199.531524px;}
.x6_c00329{left:202.071000px;}
.x33_c00329{left:203.311260px;}
.xcf_c00329{left:204.660000px;}
.x19_c00329{left:206.644500px;}
.x8b_c00329{left:209.513484px;}
.x6d_c00329{left:210.600192px;}
.xa6_c00329{left:211.858500px;}
.x4f_c00329{left:213.299316px;}
.xca_c00329{left:219.962408px;}
.x7_c00329{left:221.215500px;}
.xbb_c00329{left:222.480000px;}
.x96_c00329{left:223.830000px;}
.x2c_c00329{left:225.991716px;}
.x5e_c00329{left:228.149964px;}
.x57_c00329{left:229.498380px;}
.x4a_c00329{left:230.579748px;}
.x34_c00329{left:231.661572px;}
.x3d_c00329{left:233.010912px;}
.x23_c00329{left:234.739500px;}
.x84_c00329{left:236.783520px;}
.x81_c00329{left:238.946040px;}
.x13_c00329{left:240.387519px;}
.xcb_c00329{left:242.370593px;}
.x50_c00329{left:243.809772px;}
.xc2_c00329{left:247.545000px;}
.xbc_c00329{left:253.800000px;}
.x3e_c00329{left:255.152328px;}
.x1a_c00329{left:256.324500px;}
.x24_c00329{left:258.198000px;}
.x8c_c00329{left:260.005212px;}
.x5f_c00329{left:261.630612px;}
.x7d_c00329{left:263.518296px;}
.x9c_c00329{left:267.840000px;}
.xce_c00329{left:269.730000px;}
.x6e_c00329{left:270.811044px;}
.x44_c00329{left:273.510912px;}
.x58_c00329{left:275.129796px;}
.xbd_c00329{left:277.020000px;}
.x51_c00329{left:282.960780px;}
.xc3_c00329{left:284.251500px;}
.x25_c00329{left:286.551000px;}
.x75_c00329{left:287.819544px;}
.xa7_c00329{left:290.430000px;}
.x9d_c00329{left:291.870000px;}
.x2d_c00329{left:293.494536px;}
.x8d_c00329{left:296.996076px;}
.x3f_c00329{left:298.623612px;}
.xf_c00329{left:300.246141px;}
.x94_c00329{left:304.290000px;}
.xac_c00329{left:305.370000px;}
.x1b_c00329{left:306.549000px;}
.xc4_c00329{left:308.541000px;}
.x9e_c00329{left:310.770000px;}
.x17_c00329{left:312.390000px;}
.x35_c00329{left:317.254044px;}
.x2e_c00329{left:318.604644px;}
.xa8_c00329{left:322.561500px;}
.x76_c00329{left:326.970552px;}
.x45_c00329{left:328.322916px;}
.x4b_c00329{left:329.673096px;}
.x52_c00329{left:333.722532px;}
.xbe_c00329{left:334.800000px;}
.x97_c00329{left:336.420000px;}
.x8_c00329{left:338.152500px;}
.x8e_c00329{left:341.007396px;}
.x60_c00329{left:342.362772px;}
.x9f_c00329{left:345.870000px;}
.x26_c00329{left:347.884500px;}
.xc5_c00329{left:349.008000px;}
.x1c_c00329{left:350.263500px;}
.xbf_c00329{left:355.050000px;}
.xc6_c00329{left:356.877000px;}
.x36_c00329{left:358.295172px;}
.x66_c00329{left:360.454464px;}
.x40_c00329{left:361.806156px;}
.x6f_c00329{left:363.964008px;}
.x8f_c00329{left:369.090000px;}
.x98_c00329{left:371.790000px;}
.x1d_c00329{left:376.216500px;}
.x37_c00329{left:379.896552px;}
.x9_c00329{left:381.363000px;}
.x67_c00329{left:382.595880px;}
.xb0_c00329{left:385.177500px;}
.xa9_c00329{left:386.577000px;}
.xcc_c00329{left:389.772035px;}
.x1e_c00329{left:390.799500px;}
.x99_c00329{left:395.550000px;}
.xb2_c00329{left:398.143500px;}
.x41_c00329{left:399.607080px;}
.xa_c00329{left:401.065500px;}
.x4c_c00329{left:402.844776px;}
.x61_c00329{left:405.545316px;}
.x2f_c00329{left:407.437332px;}
.xa0_c00329{left:415.800000px;}
.x68_c00329{left:419.586744px;}
.x1f_c00329{left:421.578000px;}
.x38_c00329{left:423.637848px;}
.x10_c00329{left:425.259263px;}
.xa5_c00329{left:426.870000px;}
.x70_c00329{left:429.035172px;}
.x46_c00329{left:433.896672px;}
.x59_c00329{left:434.974032px;}
.x82_c00329{left:440.101416px;}
.x62_c00329{left:441.456120px;}
.x69_c00329{left:442.538208px;}
.x27_c00329{left:444.570000px;}
.x77_c00329{left:448.743852px;}
.x47_c00329{left:454.147968px;}
.xc7_c00329{left:456.511500px;}
.x20_c00329{left:458.538000px;}
.x7e_c00329{left:459.813360px;}
.x85_c00329{left:463.860564px;}
.xb3_c00329{left:466.167000px;}
.x30_c00329{left:469.539804px;}
.xc8_c00329{left:471.891000px;}
.x53_c00329{left:474.395532px;}
.x14_c00329{left:475.470000px;}
.x28_c00329{left:476.943000px;}
.x21_c00329{left:479.094000px;}
.x39_c00329{left:480.339972px;}
.x63_c00329{left:481.417176px;}
.x71_c00329{left:484.385724px;}
.x86_c00329{left:486.001980px;}
.xa1_c00329{left:488.700000px;}
.xb_c00329{left:491.197500px;}
.x42_c00329{left:494.918676px;}
.x54_c00329{left:497.346996px;}
.x48_c00329{left:501.939528px;}
.xad_c00329{left:503.010000px;}
.x5a_c00329{left:505.717068px;}
.x72_c00329{left:507.337188px;}
.xaa_c00329{left:510.777000px;}
.xcd_c00329{left:512.924813px;}
.x15_c00329{left:514.080000px;}
.x83_c00329{left:515.973276px;}
.x31_c00329{left:517.871400px;}
.x3a_c00329{left:520.571052px;}
.x90_c00329{left:521.640000px;}
.xc_c00329{left:524.190000px;}
.x4d_c00329{left:527.589756px;}
.x5b_c00329{left:528.938556px;}
.x64_c00329{left:531.908904px;}
.xae_c00329{left:535.410000px;}
.xc9_c00329{left:537.264000px;}
.x91_c00329{left:540.270000px;}
.x87_c00329{left:541.624044px;}
.x49_c00329{left:542.710632px;}
.x78_c00329{left:543.786924px;}
.x6a_c00329{left:544.871760px;}
.xab_c00329{left:546.657000px;}
.x55_c00329{left:550.268880px;}
.x29_c00329{left:557.395500px;}
.xa2_c00329{left:559.170000px;}
.x4e_c00329{left:560.800380px;}
.x9a_c00329{left:561.870000px;}
.x79_c00329{left:562.958148px;}
.x11_c00329{left:564.043067px;}
.x3b_c00329{left:566.742504px;}
.x73_c00329{left:568.088076px;}
.x5c_c00329{left:569.709660px;}
.x32_c00329{left:572.683404px;}
.xc0_c00329{left:574.020000px;}
.xd_c00329{left:576.828000px;}
.x92_c00329{left:579.960000px;}
.x2a_c00329{left:581.412000px;}
.xaf_c00329{left:583.470000px;}
.x88_c00329{left:588.605556px;}
.x95_c00329{left:590.760000px;}
.x56_c00329{left:592.660092px;}
.x7a_c00329{left:594.008640px;}
.xb1_c00329{left:598.248000px;}
.x3c_c00329{left:601.843248px;}
.xa3_c00329{left:603.990000px;}
.x43_c00329{left:610.751580px;}
.x89_c00329{left:615.605784px;}
.x16_c00329{left:616.680000px;}
.x6b_c00329{left:619.393524px;}
.x7b_c00329{left:622.898988px;}
.x9b_c00329{left:625.050000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fs4_c00329{font-size:19.600000pt;}
.fs20_c00329{font-size:23.333333pt;}
.fs1c_c00329{font-size:32.666667pt;}
.fs1d_c00329{font-size:47.600000pt;}
.fs1f_c00329{font-size:48.534522pt;}
.fs0_c00329{font-size:49.466667pt;}
.fs1e_c00329{font-size:51.334591pt;}
.fs1b_c00329{font-size:54.133333pt;}
.fs13_c00329{font-size:55.066667pt;}
.fs8_c00329{font-size:55.068429pt;}
.fs1_c00329{font-size:57.868084pt;}
.fsb_c00329{font-size:58.801882pt;}
.fs9_c00329{font-size:59.735245pt;}
.fs14_c00329{font-size:60.666667pt;}
.fs7_c00329{font-size:60.668608pt;}
.fs17_c00329{font-size:61.600000pt;}
.fs5_c00329{font-size:61.601509pt;}
.fs11_c00329{font-size:61.601971pt;}
.fs16_c00329{font-size:62.533333pt;}
.fsa_c00329{font-size:62.535334pt;}
.fs12_c00329{font-size:63.466667pt;}
.fsf_c00329{font-size:63.468698pt;}
.fs6_c00329{font-size:64.402061pt;}
.fse_c00329{font-size:65.335424pt;}
.fsd_c00329{font-size:66.268787pt;}
.fsc_c00329{font-size:67.202150pt;}
.fs15_c00329{font-size:68.133333pt;}
.fs10_c00329{font-size:68.135514pt;}
.fs1a_c00329{font-size:70.933333pt;}
.fs3_c00329{font-size:70.935071pt;}
.fs21_c00329{font-size:76.533333pt;}
.fs2_c00329{font-size:89.602195pt;}
.fs18_c00329{font-size:94.266667pt;}
.fs19_c00329{font-size:101.733333pt;}
.y0_c00329{bottom:0.000000pt;}
.y125_c00329{bottom:81.862667pt;}
.y124_c00329{bottom:96.262667pt;}
.y123_c00329{bottom:125.909937pt;}
.y122_c00329{bottom:126.024320pt;}
.y121_c00329{bottom:126.162488pt;}
.y120_c00329{bottom:126.702535pt;}
.y11f_c00329{bottom:126.877113pt;}
.y11e_c00329{bottom:127.009281pt;}
.y11d_c00329{bottom:127.350479pt;}
.y11c_c00329{bottom:127.736625pt;}
.y11b_c00329{bottom:128.187792pt;}
.y11a_c00329{bottom:128.367223pt;}
.y119_c00329{bottom:128.678373pt;}
.y118_c00329{bottom:128.878679pt;}
.y116_c00329{bottom:142.937091pt;}
.y115_c00329{bottom:142.937304pt;}
.y117_c00329{bottom:142.937491pt;}
.y10a_c00329{bottom:142.937551pt;}
.y10b_c00329{bottom:142.937560pt;}
.y113_c00329{bottom:142.937775pt;}
.y111_c00329{bottom:142.937845pt;}
.y114_c00329{bottom:142.937961pt;}
.y110_c00329{bottom:142.938005pt;}
.y10c_c00329{bottom:142.938200pt;}
.y10e_c00329{bottom:142.938289pt;}
.y112_c00329{bottom:142.938432pt;}
.y10f_c00329{bottom:142.938556pt;}
.y10d_c00329{bottom:142.938769pt;}
.y109_c00329{bottom:157.190675pt;}
.y108_c00329{bottom:157.388933pt;}
.y107_c00329{bottom:157.620764pt;}
.y106_c00329{bottom:157.707769pt;}
.y105_c00329{bottom:157.958239pt;}
.y104_c00329{bottom:158.114535pt;}
.y103_c00329{bottom:158.210229pt;}
.y102_c00329{bottom:158.544661pt;}
.y101_c00329{bottom:158.618012pt;}
.y100_c00329{bottom:158.830177pt;}
.yff_c00329{bottom:158.879140pt;}
.yfe_c00329{bottom:159.130935pt;}
.yfd_c00329{bottom:159.282069pt;}
.yfc_c00329{bottom:159.411485pt;}
.yfb_c00329{bottom:159.510465pt;}
.yfa_c00329{bottom:159.900505pt;}
.yf9_c00329{bottom:159.984421pt;}
.yf8_c00329{bottom:160.085333pt;}
.yf7_c00329{bottom:175.118667pt;}
.yf1_c00329{bottom:219.868000pt;}
.yf0_c00329{bottom:220.400000pt;}
.yef_c00329{bottom:220.752000pt;}
.yee_c00329{bottom:221.053333pt;}
.yed_c00329{bottom:221.236000pt;}
.yec_c00329{bottom:221.614667pt;}
.yeb_c00329{bottom:221.746667pt;}
.yea_c00329{bottom:221.994667pt;}
.ye9_c00329{bottom:222.494667pt;}
.ye8_c00329{bottom:222.642667pt;}
.ye7_c00329{bottom:222.961333pt;}
.ye6_c00329{bottom:239.940000pt;}
.ye5_c00329{bottom:240.206667pt;}
.ye4_c00329{bottom:240.598667pt;}
.ye3_c00329{bottom:240.790667pt;}
.ye2_c00329{bottom:241.004000pt;}
.ye1_c00329{bottom:241.140000pt;}
.ye0_c00329{bottom:241.454667pt;}
.ydf_c00329{bottom:241.602667pt;}
.yde_c00329{bottom:241.794667pt;}
.ydd_c00329{bottom:242.361333pt;}
.ydc_c00329{bottom:242.548000pt;}
.ydb_c00329{bottom:242.906667pt;}
.yda_c00329{bottom:243.121333pt;}
.yd9_c00329{bottom:262.002667pt;}
.yd8_c00329{bottom:281.245333pt;}
.yd7_c00329{bottom:281.468000pt;}
.yd6_c00329{bottom:281.726667pt;}
.yd5_c00329{bottom:282.152000pt;}
.yd4_c00329{bottom:282.241333pt;}
.yd3_c00329{bottom:282.522667pt;}
.yd2_c00329{bottom:282.640000pt;}
.yd1_c00329{bottom:282.840000pt;}
.yd0_c00329{bottom:283.021333pt;}
.ycf_c00329{bottom:283.329333pt;}
.yce_c00329{bottom:283.356000pt;}
.ycd_c00329{bottom:283.690667pt;}
.ycc_c00329{bottom:302.550667pt;}
.ycb_c00329{bottom:323.402667pt;}
.yca_c00329{bottom:343.762667pt;}
.yc9_c00329{bottom:364.374667pt;}
.yc8_c00329{bottom:384.792000pt;}
.yc4_c00329{bottom:405.105888pt;}
.yc7_c00329{bottom:405.106229pt;}
.yc5_c00329{bottom:405.106251pt;}
.yc3_c00329{bottom:405.106485pt;}
.yc6_c00329{bottom:405.106613pt;}
.yc2_c00329{bottom:425.294763pt;}
.yc1_c00329{bottom:425.294773pt;}
.yc0_c00329{bottom:425.295371pt;}
.ybe_c00329{bottom:425.295755pt;}
.ybf_c00329{bottom:425.295861pt;}
.ybd_c00329{bottom:425.296373pt;}
.ybc_c00329{bottom:425.296437pt;}
.ybb_c00329{bottom:425.297088pt;}
.yba_c00329{bottom:425.297739pt;}
.yb9_c00329{bottom:425.298016pt;}
.yb8_c00329{bottom:446.365835pt;}
.yb7_c00329{bottom:446.366325pt;}
.yb6_c00329{bottom:446.366827pt;}
.yb4_c00329{bottom:446.366923pt;}
.yb3_c00329{bottom:446.367147pt;}
.yb1_c00329{bottom:446.367221pt;}
.yb2_c00329{bottom:446.367264pt;}
.yb5_c00329{bottom:446.367275pt;}
.ya9_c00329{bottom:466.792128pt;}
.yae_c00329{bottom:466.792139pt;}
.yab_c00329{bottom:466.792213pt;}
.yac_c00329{bottom:466.792299pt;}
.ya7_c00329{bottom:466.792363pt;}
.yaf_c00329{bottom:466.792395pt;}
.ya8_c00329{bottom:466.792512pt;}
.yaa_c00329{bottom:466.792544pt;}
.yad_c00329{bottom:466.792565pt;}
.ya5_c00329{bottom:466.792587pt;}
.ya6_c00329{bottom:466.792736pt;}
.yb0_c00329{bottom:466.792971pt;}
.yf6_c00329{bottom:473.040000pt;}
.ya0_c00329{bottom:486.660192pt;}
.y9f_c00329{bottom:486.660256pt;}
.y9d_c00329{bottom:486.660533pt;}
.ya1_c00329{bottom:486.660715pt;}
.y9e_c00329{bottom:486.660843pt;}
.y9c_c00329{bottom:486.660971pt;}
.y97_c00329{bottom:486.661120pt;}
.ya4_c00329{bottom:486.661216pt;}
.y9b_c00329{bottom:486.661248pt;}
.ya2_c00329{bottom:486.661344pt;}
.y99_c00329{bottom:486.661365pt;}
.y9a_c00329{bottom:486.661579pt;}
.y98_c00329{bottom:486.661589pt;}
.ya3_c00329{bottom:486.661664pt;}
.yf4_c00329{bottom:492.720000pt;}
.yf5_c00329{bottom:496.800000pt;}
.y93_c00329{bottom:507.540299pt;}
.y92_c00329{bottom:507.540736pt;}
.y90_c00329{bottom:507.540757pt;}
.y95_c00329{bottom:507.540768pt;}
.y96_c00329{bottom:507.540811pt;}
.y94_c00329{bottom:507.540832pt;}
.y8b_c00329{bottom:507.541195pt;}
.y8f_c00329{bottom:507.541355pt;}
.y91_c00329{bottom:507.541387pt;}
.y8c_c00329{bottom:507.541504pt;}
.y8e_c00329{bottom:507.541643pt;}
.y8d_c00329{bottom:507.541707pt;}
.y8a_c00329{bottom:507.541728pt;}
.yf3_c00329{bottom:527.404000pt;}
.y82_c00329{bottom:527.966784pt;}
.y81_c00329{bottom:527.966901pt;}
.y83_c00329{bottom:527.967040pt;}
.y84_c00329{bottom:527.967147pt;}
.y80_c00329{bottom:527.967392pt;}
.y85_c00329{bottom:527.967509pt;}
.y7f_c00329{bottom:527.967616pt;}
.y88_c00329{bottom:527.967701pt;}
.y86_c00329{bottom:527.968043pt;}
.y89_c00329{bottom:527.968267pt;}
.y87_c00329{bottom:527.968288pt;}
.yf2_c00329{bottom:547.200000pt;}
.y76_c00329{bottom:547.860277pt;}
.y7a_c00329{bottom:547.860288pt;}
.y7b_c00329{bottom:547.860437pt;}
.y77_c00329{bottom:547.860533pt;}
.y74_c00329{bottom:547.860725pt;}
.y7c_c00329{bottom:547.860800pt;}
.y75_c00329{bottom:547.860875pt;}
.y73_c00329{bottom:547.860885pt;}
.y79_c00329{bottom:547.860939pt;}
.y78_c00329{bottom:547.861003pt;}
.y7d_c00329{bottom:547.861269pt;}
.y7e_c00329{bottom:547.861579pt;}
.y71_c00329{bottom:568.713013pt;}
.y70_c00329{bottom:568.713227pt;}
.y72_c00329{bottom:568.713589pt;}
.y6f_c00329{bottom:568.713771pt;}
.y6e_c00329{bottom:568.714197pt;}
.y6b_c00329{bottom:568.714464pt;}
.y6a_c00329{bottom:568.714688pt;}
.y69_c00329{bottom:568.714805pt;}
.y6d_c00329{bottom:568.714859pt;}
.y6c_c00329{bottom:568.714933pt;}
.y63_c00329{bottom:589.328661pt;}
.y62_c00329{bottom:589.328885pt;}
.y64_c00329{bottom:589.328971pt;}
.y65_c00329{bottom:589.329163pt;}
.y61_c00329{bottom:589.329269pt;}
.y60_c00329{bottom:589.329547pt;}
.y66_c00329{bottom:589.329696pt;}
.y5f_c00329{bottom:589.329931pt;}
.y67_c00329{bottom:589.330005pt;}
.y5e_c00329{bottom:589.330048pt;}
.y68_c00329{bottom:589.330101pt;}
.y58_c00329{bottom:609.572053pt;}
.y5d_c00329{bottom:609.572256pt;}
.y59_c00329{bottom:609.572352pt;}
.y57_c00329{bottom:609.572704pt;}
.y56_c00329{bottom:609.572768pt;}
.y55_c00329{bottom:609.572832pt;}
.y54_c00329{bottom:609.572843pt;}
.y5c_c00329{bottom:609.572853pt;}
.y5a_c00329{bottom:609.572992pt;}
.y5b_c00329{bottom:609.573195pt;}
.y4d_c00329{bottom:630.583381pt;}
.y50_c00329{bottom:630.583413pt;}
.y4f_c00329{bottom:630.583531pt;}
.y52_c00329{bottom:630.583659pt;}
.y4e_c00329{bottom:630.583797pt;}
.y51_c00329{bottom:630.583829pt;}
.y4c_c00329{bottom:630.584032pt;}
.y4b_c00329{bottom:630.584096pt;}
.y53_c00329{bottom:630.584235pt;}
.y46_c00329{bottom:650.795968pt;}
.y47_c00329{bottom:650.796011pt;}
.y48_c00329{bottom:650.796363pt;}
.y45_c00329{bottom:650.796512pt;}
.y44_c00329{bottom:650.796576pt;}
.y42_c00329{bottom:650.796693pt;}
.y43_c00329{bottom:650.796800pt;}
.y49_c00329{bottom:650.796875pt;}
.y41_c00329{bottom:650.797248pt;}
.y4a_c00329{bottom:650.797344pt;}
.y37_c00329{bottom:671.381493pt;}
.y38_c00329{bottom:671.381749pt;}
.y36_c00329{bottom:671.381824pt;}
.y3a_c00329{bottom:671.382197pt;}
.y39_c00329{bottom:671.382368pt;}
.y3b_c00329{bottom:671.382464pt;}
.y3e_c00329{bottom:671.382752pt;}
.y3c_c00329{bottom:671.382827pt;}
.y3f_c00329{bottom:671.383061pt;}
.y40_c00329{bottom:671.383317pt;}
.y3d_c00329{bottom:671.383349pt;}
.y34_c00329{bottom:691.992725pt;}
.y2d_c00329{bottom:691.992800pt;}
.y35_c00329{bottom:691.992875pt;}
.y32_c00329{bottom:691.992949pt;}
.y33_c00329{bottom:691.993205pt;}
.y2e_c00329{bottom:691.993269pt;}
.y31_c00329{bottom:691.993291pt;}
.y30_c00329{bottom:691.993408pt;}
.y2f_c00329{bottom:691.993419pt;}
.y24_c00329{bottom:710.589333pt;}
.y25_c00329{bottom:711.080843pt;}
.y26_c00329{bottom:711.247659pt;}
.y27_c00329{bottom:711.449280pt;}
.y28_c00329{bottom:711.885429pt;}
.y29_c00329{bottom:712.572971pt;}
.y2a_c00329{bottom:712.803179pt;}
.y2b_c00329{bottom:713.375285pt;}
.y2c_c00329{bottom:713.546069pt;}
.y17_c00329{bottom:730.800000pt;}
.y18_c00329{bottom:730.954747pt;}
.y19_c00329{bottom:731.119415pt;}
.y1a_c00329{bottom:731.428535pt;}
.y1b_c00329{bottom:731.741043pt;}
.y1c_c00329{bottom:732.013044pt;}
.y1d_c00329{bottom:732.174529pt;}
.y1e_c00329{bottom:732.265268pt;}
.y1f_c00329{bottom:732.456779pt;}
.y20_c00329{bottom:732.686752pt;}
.y21_c00329{bottom:732.814656pt;}
.y22_c00329{bottom:733.027988pt;}
.y23_c00329{bottom:733.340468pt;}
.y16_c00329{bottom:754.670667pt;}
.y14_c00329{bottom:755.637333pt;}
.y15_c00329{bottom:755.760000pt;}
.y12_c00329{bottom:767.042860pt;}
.y13_c00329{bottom:768.185379pt;}
.y1_c00329{bottom:805.801333pt;}
.yd_c00329{bottom:808.607583pt;}
.y11_c00329{bottom:808.607784pt;}
.yf_c00329{bottom:808.607795pt;}
.ye_c00329{bottom:808.607947pt;}
.y10_c00329{bottom:808.608283pt;}
.y2_c00329{bottom:821.280000pt;}
.y3_c00329{bottom:821.567485pt;}
.y4_c00329{bottom:821.701820pt;}
.y5_c00329{bottom:821.920276pt;}
.y6_c00329{bottom:822.039397pt;}
.y7_c00329{bottom:822.767005pt;}
.y8_c00329{bottom:823.035871pt;}
.y9_c00329{bottom:823.158464pt;}
.ya_c00329{bottom:823.719285pt;}
.yb_c00329{bottom:823.924572pt;}
.yc_c00329{bottom:824.252097pt;}
.h6_c00329{height:19.600000pt;}
.h22_c00329{height:23.333333pt;}
.h1e_c00329{height:32.666667pt;}
.h1f_c00329{height:47.600000pt;}
.h21_c00329{height:48.534522pt;}
.h2_c00329{height:49.466667pt;}
.h20_c00329{height:51.334591pt;}
.h1d_c00329{height:54.133333pt;}
.h15_c00329{height:55.066667pt;}
.ha_c00329{height:55.068429pt;}
.h3_c00329{height:57.868084pt;}
.hd_c00329{height:58.801882pt;}
.hb_c00329{height:59.735245pt;}
.h16_c00329{height:60.666667pt;}
.h9_c00329{height:60.668608pt;}
.h19_c00329{height:61.600000pt;}
.h7_c00329{height:61.601509pt;}
.h13_c00329{height:61.601971pt;}
.h18_c00329{height:62.533333pt;}
.hc_c00329{height:62.535334pt;}
.h14_c00329{height:63.466667pt;}
.h11_c00329{height:63.468698pt;}
.h8_c00329{height:64.402061pt;}
.h10_c00329{height:65.335424pt;}
.hf_c00329{height:66.268787pt;}
.he_c00329{height:67.202150pt;}
.h17_c00329{height:68.133333pt;}
.h12_c00329{height:68.135514pt;}
.h1c_c00329{height:70.933333pt;}
.h5_c00329{height:70.935071pt;}
.h23_c00329{height:76.533333pt;}
.h4_c00329{height:89.602195pt;}
.h1a_c00329{height:94.266667pt;}
.h1b_c00329{height:101.733333pt;}
.h0_c00329{height:896.400000pt;}
.h1_c00329{height:896.666667pt;}
.w0_c00329{width:618.666667pt;}
.x0_c00329{left:0.000000pt;}
.x4_c00329{left:88.150667pt;}
.xb5_c00329{left:89.280000pt;}
.xb6_c00329{left:96.720000pt;}
.xb7_c00329{left:100.560000pt;}
.xb8_c00329{left:101.520000pt;}
.xb4_c00329{left:105.120000pt;}
.x1_c00329{left:108.480000pt;}
.x2_c00329{left:129.840000pt;}
.x7f_c00329{left:132.234016pt;}
.xa4_c00329{left:133.440000pt;}
.x6c_c00329{left:136.558261pt;}
.x12_c00329{left:137.512727pt;}
.x8a_c00329{left:138.472480pt;}
.xb9_c00329{left:142.320000pt;}
.x22_c00329{left:147.218667pt;}
.x5_c00329{left:148.410667pt;}
.x3_c00329{left:151.920000pt;}
.x80_c00329{left:154.074080pt;}
.x5d_c00329{left:155.278261pt;}
.x74_c00329{left:158.876053pt;}
.x18_c00329{left:160.160000pt;}
.xc1_c00329{left:164.320000pt;}
.xba_c00329{left:165.600000pt;}
.xe_c00329{left:167.283244pt;}
.x7c_c00329{left:171.595808pt;}
.x93_c00329{left:172.800000pt;}
.x65_c00329{left:175.438688pt;}
.x2b_c00329{left:177.361355pt;}
.x6_c00329{left:179.618667pt;}
.x33_c00329{left:180.721120pt;}
.xcf_c00329{left:181.920000pt;}
.x19_c00329{left:183.684000pt;}
.x8b_c00329{left:186.234208pt;}
.x6d_c00329{left:187.200171pt;}
.xa6_c00329{left:188.318667pt;}
.x4f_c00329{left:189.599392pt;}
.xca_c00329{left:195.522140pt;}
.x7_c00329{left:196.636000pt;}
.xbb_c00329{left:197.760000pt;}
.x96_c00329{left:198.960000pt;}
.x2c_c00329{left:200.881525pt;}
.x5e_c00329{left:202.799968pt;}
.x57_c00329{left:203.998560pt;}
.x4a_c00329{left:204.959776pt;}
.x34_c00329{left:205.921397pt;}
.x3d_c00329{left:207.120811pt;}
.x23_c00329{left:208.657333pt;}
.x84_c00329{left:210.474240pt;}
.x81_c00329{left:212.396480pt;}
.x13_c00329{left:213.677795pt;}
.xcb_c00329{left:215.440527pt;}
.x50_c00329{left:216.719797pt;}
.xc2_c00329{left:220.040000pt;}
.xbc_c00329{left:225.600000pt;}
.x3e_c00329{left:226.802069pt;}
.x1a_c00329{left:227.844000pt;}
.x24_c00329{left:229.509333pt;}
.x8c_c00329{left:231.115744pt;}
.x5f_c00329{left:232.560544pt;}
.x7d_c00329{left:234.238485pt;}
.x9c_c00329{left:238.080000pt;}
.xce_c00329{left:239.760000pt;}
.x6e_c00329{left:240.720928pt;}
.x44_c00329{left:243.120811pt;}
.x58_c00329{left:244.559819pt;}
.xbd_c00329{left:246.240000pt;}
.x51_c00329{left:251.520693pt;}
.xc3_c00329{left:252.668000pt;}
.x25_c00329{left:254.712000pt;}
.x75_c00329{left:255.839595pt;}
.xa7_c00329{left:258.160000pt;}
.x9d_c00329{left:259.440000pt;}
.x2d_c00329{left:260.884032pt;}
.x8d_c00329{left:263.996512pt;}
.x3f_c00329{left:265.443211pt;}
.xf_c00329{left:266.885459pt;}
.x94_c00329{left:270.480000pt;}
.xac_c00329{left:271.440000pt;}
.x1b_c00329{left:272.488000pt;}
.xc4_c00329{left:274.258667pt;}
.x9e_c00329{left:276.240000pt;}
.x17_c00329{left:277.680000pt;}
.x35_c00329{left:282.003595pt;}
.x2e_c00329{left:283.204128pt;}
.xa8_c00329{left:286.721333pt;}
.x76_c00329{left:290.640491pt;}
.x45_c00329{left:291.842592pt;}
.x4b_c00329{left:293.042752pt;}
.x52_c00329{left:296.642251pt;}
.xbe_c00329{left:297.600000pt;}
.x97_c00329{left:299.040000pt;}
.x8_c00329{left:300.580000pt;}
.x8e_c00329{left:303.117685pt;}
.x60_c00329{left:304.322464pt;}
.x9f_c00329{left:307.440000pt;}
.x26_c00329{left:309.230667pt;}
.xc5_c00329{left:310.229333pt;}
.x1c_c00329{left:311.345333pt;}
.xbf_c00329{left:315.600000pt;}
.xc6_c00329{left:317.224000pt;}
.x36_c00329{left:318.484597pt;}
.x66_c00329{left:320.403968pt;}
.x40_c00329{left:321.605472pt;}
.x6f_c00329{left:323.523563pt;}
.x8f_c00329{left:328.080000pt;}
.x98_c00329{left:330.480000pt;}
.x1d_c00329{left:334.414667pt;}
.x37_c00329{left:337.685824pt;}
.x9_c00329{left:338.989333pt;}
.x67_c00329{left:340.085227pt;}
.xb0_c00329{left:342.380000pt;}
.xa9_c00329{left:343.624000pt;}
.xcc_c00329{left:346.464031pt;}
.x1e_c00329{left:347.377333pt;}
.x99_c00329{left:351.600000pt;}
.xb2_c00329{left:353.905333pt;}
.x41_c00329{left:355.206293pt;}
.xa_c00329{left:356.502667pt;}
.x4c_c00329{left:358.084245pt;}
.x61_c00329{left:360.484725pt;}
.x2f_c00329{left:362.166517pt;}
.xa0_c00329{left:369.600000pt;}
.x68_c00329{left:372.965995pt;}
.x1f_c00329{left:374.736000pt;}
.x38_c00329{left:376.566976pt;}
.x10_c00329{left:378.008233pt;}
.xa5_c00329{left:379.440000pt;}
.x70_c00329{left:381.364597pt;}
.x46_c00329{left:385.685931pt;}
.x59_c00329{left:386.643584pt;}
.x82_c00329{left:391.201259pt;}
.x62_c00329{left:392.405440pt;}
.x69_c00329{left:393.367296pt;}
.x27_c00329{left:395.173333pt;}
.x77_c00329{left:398.883424pt;}
.x47_c00329{left:403.687083pt;}
.xc7_c00329{left:405.788000pt;}
.x20_c00329{left:407.589333pt;}
.x7e_c00329{left:408.722987pt;}
.x85_c00329{left:412.320501pt;}
.xb3_c00329{left:414.370667pt;}
.x30_c00329{left:417.368715pt;}
.xc8_c00329{left:419.458667pt;}
.x53_c00329{left:421.684917pt;}
.x14_c00329{left:422.640000pt;}
.x28_c00329{left:423.949333pt;}
.x21_c00329{left:425.861333pt;}
.x39_c00329{left:426.968864pt;}
.x63_c00329{left:427.926379pt;}
.x71_c00329{left:430.565088pt;}
.x86_c00329{left:432.001760pt;}
.xa1_c00329{left:434.400000pt;}
.xb_c00329{left:436.620000pt;}
.x42_c00329{left:439.927712pt;}
.x54_c00329{left:442.086219pt;}
.x48_c00329{left:446.168469pt;}
.xad_c00329{left:447.120000pt;}
.x5a_c00329{left:449.526283pt;}
.x72_c00329{left:450.966389pt;}
.xaa_c00329{left:454.024000pt;}
.xcd_c00329{left:455.933167pt;}
.x15_c00329{left:456.960000pt;}
.x83_c00329{left:458.642912pt;}
.x31_c00329{left:460.330133pt;}
.x3a_c00329{left:462.729824pt;}
.x90_c00329{left:463.680000pt;}
.xc_c00329{left:465.946667pt;}
.x4d_c00329{left:468.968672pt;}
.x5b_c00329{left:470.167605pt;}
.x64_c00329{left:472.807915pt;}
.xae_c00329{left:475.920000pt;}
.xc9_c00329{left:477.568000pt;}
.x91_c00329{left:480.240000pt;}
.x87_c00329{left:481.443595pt;}
.x49_c00329{left:482.409451pt;}
.x78_c00329{left:483.366155pt;}
.x6a_c00329{left:484.330453pt;}
.xab_c00329{left:485.917333pt;}
.x55_c00329{left:489.127893pt;}
.x29_c00329{left:495.462667pt;}
.xa2_c00329{left:497.040000pt;}
.x4e_c00329{left:498.489227pt;}
.x9a_c00329{left:499.440000pt;}
.x79_c00329{left:500.407243pt;}
.x11_c00329{left:501.371615pt;}
.x3b_c00329{left:503.771115pt;}
.x73_c00329{left:504.967179pt;}
.x5c_c00329{left:506.408587pt;}
.x32_c00329{left:509.051915pt;}
.xc0_c00329{left:510.240000pt;}
.xd_c00329{left:512.736000pt;}
.x92_c00329{left:515.520000pt;}
.x2a_c00329{left:516.810667pt;}
.xaf_c00329{left:518.640000pt;}
.x88_c00329{left:523.204939pt;}
.x95_c00329{left:525.120000pt;}
.x56_c00329{left:526.808971pt;}
.x7a_c00329{left:528.007680pt;}
.xb1_c00329{left:531.776000pt;}
.x3c_c00329{left:534.971776pt;}
.xa3_c00329{left:536.880000pt;}
.x43_c00329{left:542.890293pt;}
.x89_c00329{left:547.205141pt;}
.x16_c00329{left:548.160000pt;}
.x6b_c00329{left:550.572021pt;}
.x7b_c00329{left:553.687989pt;}
.x9b_c00329{left:555.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_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_ef4e99a7aa2876b3106553d3.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;}
.m27_c00330{transform:matrix(0.020089,0.000181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.020089,0.000181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.020089,0.000181,-0.002250,0.249990,0,0);}
.m139_c00330{transform:matrix(0.021068,0.000316,-0.003750,0.249972,0,0);-ms-transform:matrix(0.021068,0.000316,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.021068,0.000316,-0.003750,0.249972,0,0);}
.mf6_c00330{transform:matrix(0.022718,0.000273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.022718,0.000273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.022718,0.000273,-0.003000,0.249982,0,0);}
.mbf_c00330{transform:matrix(0.074670,0.000896,-0.003000,0.249982,0,0);-ms-transform:matrix(0.074670,0.000896,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.074670,0.000896,-0.003000,0.249982,0,0);}
.m8e_c00330{transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.092929,0.001022,-0.002750,0.249985,0,0);}
.m2e_c00330{transform:matrix(0.093780,0.000938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.093780,0.000938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.093780,0.000938,-0.002500,0.249988,0,0);}
.me6_c00330{transform:matrix(0.094358,0.001132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.094358,0.001132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.094358,0.001132,-0.003000,0.249982,0,0);}
.m7_c00330{transform:matrix(0.141117,0.000988,-0.001750,0.249994,0,0);-ms-transform:matrix(0.141117,0.000988,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.141117,0.000988,-0.001750,0.249994,0,0);}
.mfa_c00330{transform:matrix(0.144835,0.001738,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144835,0.001738,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144835,0.001738,-0.003000,0.249982,0,0);}
.m100_c00330{transform:matrix(0.145670,0.001748,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145670,0.001748,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145670,0.001748,-0.003000,0.249982,0,0);}
.m58_c00330{transform:matrix(0.147373,0.001474,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147373,0.001474,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147373,0.001474,-0.002500,0.249988,0,0);}
.m10b_c00330{transform:matrix(0.147523,0.001918,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147523,0.001918,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147523,0.001918,-0.003250,0.249979,0,0);}
.m10e_c00330{transform:matrix(0.148291,0.001631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148291,0.001631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148291,0.001631,-0.002750,0.249985,0,0);}
.m10_c00330{transform:matrix(0.149281,0.001045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149281,0.001045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149281,0.001045,-0.001750,0.249994,0,0);}
.m77_c00330{transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150456,0.001655,-0.002750,0.249985,0,0);}
.m110_c00330{transform:matrix(0.150551,0.001656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150551,0.001656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150551,0.001656,-0.002750,0.249985,0,0);}
.mf3_c00330{transform:matrix(0.150659,0.001808,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150659,0.001808,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150659,0.001808,-0.003000,0.249982,0,0);}
.m66_c00330{transform:matrix(0.151019,0.001812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151019,0.001812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151019,0.001812,-0.003000,0.249982,0,0);}
.m6a_c00330{transform:matrix(0.151234,0.001815,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151234,0.001815,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151234,0.001815,-0.003000,0.249982,0,0);}
.m2_c00330{transform:matrix(0.151686,0.001062,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151686,0.001062,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151686,0.001062,-0.001750,0.249994,0,0);}
.mf2_c00330{transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153899,0.001847,-0.003000,0.249982,0,0);}
.mf7_c00330{transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);}
.mf4_c00330{transform:matrix(0.154964,0.001860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154964,0.001860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154964,0.001860,-0.003000,0.249982,0,0);}
.m49_c00330{transform:matrix(0.155177,0.001552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155177,0.001552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155177,0.001552,-0.002500,0.249988,0,0);}
.mef_c00330{transform:matrix(0.155259,0.001863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155259,0.001863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155259,0.001863,-0.003000,0.249982,0,0);}
.m9f_c00330{transform:matrix(0.155646,0.001712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155646,0.001712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155646,0.001712,-0.002750,0.249985,0,0);}
.m50_c00330{transform:matrix(0.157527,0.001575,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157527,0.001575,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157527,0.001575,-0.002500,0.249988,0,0);}
.m4d_c00330{transform:matrix(0.157867,0.001579,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157867,0.001579,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157867,0.001579,-0.002500,0.249988,0,0);}
.m87_c00330{transform:matrix(0.158220,0.001740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158220,0.001740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158220,0.001740,-0.002750,0.249985,0,0);}
.mcc_c00330{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);}
.mea_c00330{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);}
.m46_c00330{transform:matrix(0.158327,0.001583,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158327,0.001583,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158327,0.001583,-0.002500,0.249988,0,0);}
.me2_c00330{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);}
.m17_c00330{transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159141,0.001114,-0.001750,0.249994,0,0);}
.m7a_c00330{transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159860,0.001758,-0.002750,0.249985,0,0);}
.mfd_c00330{transform:matrix(0.159938,0.001919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159938,0.001919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159938,0.001919,-0.003000,0.249982,0,0);}
.m1f_c00330{transform:matrix(0.160046,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160046,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160046,0.001120,-0.001750,0.249994,0,0);}
.m5a_c00330{transform:matrix(0.160572,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160572,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160572,0.001606,-0.002500,0.249988,0,0);}
.m5_c00330{transform:matrix(0.161421,0.001130,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161421,0.001130,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161421,0.001130,-0.001750,0.249994,0,0);}
.m15_c00330{transform:matrix(0.162466,0.001137,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162466,0.001137,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162466,0.001137,-0.001750,0.249994,0,0);}
.mde_c00330{transform:matrix(0.162503,0.001950,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162503,0.001950,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162503,0.001950,-0.003000,0.249982,0,0);}
.mf1_c00330{transform:matrix(0.162713,0.001953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162713,0.001953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162713,0.001953,-0.003000,0.249982,0,0);}
.m75_c00330{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);}
.mab_c00330{transform:matrix(0.164025,0.001804,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164025,0.001804,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164025,0.001804,-0.002750,0.249985,0,0);}
.m7f_c00330{transform:matrix(0.164230,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164230,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164230,0.001807,-0.002750,0.249985,0,0);}
.mc7_c00330{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);}
.ma4_c00330{transform:matrix(0.164270,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164270,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164270,0.001807,-0.002750,0.249985,0,0);}
.m10f_c00330{transform:matrix(0.165015,0.001815,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165015,0.001815,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165015,0.001815,-0.002750,0.249985,0,0);}
.m48_c00330{transform:matrix(0.165047,0.001650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165047,0.001650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165047,0.001650,-0.002500,0.249988,0,0);}
.m23_c00330{transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);}
.mb_c00330{transform:matrix(0.166486,0.001165,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166486,0.001165,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166486,0.001165,-0.001750,0.249994,0,0);}
.m7c_c00330{transform:matrix(0.166595,0.001833,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166595,0.001833,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166595,0.001833,-0.002750,0.249985,0,0);}
.m39_c00330{transform:matrix(0.167262,0.001673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167262,0.001673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167262,0.001673,-0.002500,0.249988,0,0);}
.m5c_c00330{transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167481,0.002177,-0.003250,0.249979,0,0);}
.mec_c00330{transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168063,0.002017,-0.003000,0.249982,0,0);}
.mc4_c00330{transform:matrix(0.169316,0.002201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169316,0.002201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169316,0.002201,-0.003250,0.249979,0,0);}
.md_c00330{transform:matrix(0.169876,0.001189,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169876,0.001189,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169876,0.001189,-0.001750,0.249994,0,0);}
.m79_c00330{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);}
.m51_c00330{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);}
.mdc_c00330{transform:matrix(0.170483,0.002046,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170483,0.002046,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170483,0.002046,-0.003000,0.249982,0,0);}
.m1_c00330{transform:matrix(0.170681,0.001195,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170681,0.001195,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170681,0.001195,-0.001750,0.249994,0,0);}
.m10d_c00330{transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171330,0.001885,-0.002750,0.249985,0,0);}
.mb9_c00330{transform:matrix(0.171838,0.002062,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171838,0.002062,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171838,0.002062,-0.003000,0.249982,0,0);}
.m59_c00330{transform:matrix(0.172796,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172796,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172796,0.001728,-0.002500,0.249988,0,0);}
.md9_c00330{transform:matrix(0.172820,0.002247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172820,0.002247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172820,0.002247,-0.003250,0.249979,0,0);}
.m78_c00330{transform:matrix(0.172905,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172905,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172905,0.001902,-0.002750,0.249985,0,0);}
.m32_c00330{transform:matrix(0.172906,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172906,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172906,0.001729,-0.002500,0.249988,0,0);}
.m10a_c00330{transform:matrix(0.173100,0.002250,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173100,0.002250,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173100,0.002250,-0.003250,0.249979,0,0);}
.m11f_c00330{transform:matrix(0.173125,0.001904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173125,0.001904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173125,0.001904,-0.002750,0.249985,0,0);}
.m8d_c00330{transform:matrix(0.173195,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173195,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173195,0.001905,-0.002750,0.249985,0,0);}
.me3_c00330{transform:matrix(0.173448,0.002081,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173448,0.002081,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173448,0.002081,-0.003000,0.249982,0,0);}
.m96_c00330{transform:matrix(0.173834,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173834,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173834,0.001912,-0.002750,0.249985,0,0);}
.m1a_c00330{transform:matrix(0.173961,0.001218,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173961,0.001218,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173961,0.001218,-0.001750,0.249994,0,0);}
.m90_c00330{transform:matrix(0.174064,0.001915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174064,0.001915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174064,0.001915,-0.002750,0.249985,0,0);}
.m98_c00330{transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175099,0.001926,-0.002750,0.249985,0,0);}
.m84_c00330{transform:matrix(0.175709,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175709,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175709,0.001933,-0.002750,0.249985,0,0);}
.md4_c00330{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);}
.m33_c00330{transform:matrix(0.176931,0.001769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176931,0.001769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176931,0.001769,-0.002500,0.249988,0,0);}
.m104_c00330{transform:matrix(0.178125,0.002316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178125,0.002316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178125,0.002316,-0.003250,0.249979,0,0);}
.m18_c00330{transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);}
.mb6_c00330{transform:matrix(0.179902,0.002159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179902,0.002159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179902,0.002159,-0.003000,0.249982,0,0);}
.md3_c00330{transform:matrix(0.180505,0.002347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180505,0.002347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180505,0.002347,-0.003250,0.249979,0,0);}
.m28_c00330{transform:matrix(0.180763,0.001627,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180763,0.001627,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180763,0.001627,-0.002250,0.249990,0,0);}
.m3_c00330{transform:matrix(0.181076,0.001268,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181076,0.001268,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181076,0.001268,-0.001750,0.249994,0,0);}
.m86_c00330{transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181149,0.001993,-0.002750,0.249985,0,0);}
.mc_c00330{transform:matrix(0.181636,0.001271,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181636,0.001271,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181636,0.001271,-0.001750,0.249994,0,0);}
.m9c_c00330{transform:matrix(0.181694,0.001999,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181694,0.001999,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181694,0.001999,-0.002750,0.249985,0,0);}
.m126_c00330{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);}
.m16_c00330{transform:matrix(0.182136,0.001275,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182136,0.001275,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182136,0.001275,-0.001750,0.249994,0,0);}
.ma5_c00330{transform:matrix(0.182279,0.002005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182279,0.002005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182279,0.002005,-0.002750,0.249985,0,0);}
.maa_c00330{transform:matrix(0.182729,0.002010,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182729,0.002010,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182729,0.002010,-0.002750,0.249985,0,0);}
.m52_c00330{transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183071,0.001831,-0.002500,0.249988,0,0);}
.m76_c00330{transform:matrix(0.183164,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183164,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183164,0.002015,-0.002750,0.249985,0,0);}
.m68_c00330{transform:matrix(0.183797,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183797,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183797,0.002206,-0.003000,0.249982,0,0);}
.m42_c00330{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);}
.mcd_c00330{transform:matrix(0.184044,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184044,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184044,0.002393,-0.003250,0.249979,0,0);}
.m7b_c00330{transform:matrix(0.184194,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184194,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184194,0.002026,-0.002750,0.249985,0,0);}
.me9_c00330{transform:matrix(0.184322,0.002212,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184322,0.002212,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184322,0.002212,-0.003000,0.249982,0,0);}
.mfe_c00330{transform:matrix(0.184437,0.002213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184437,0.002213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184437,0.002213,-0.003000,0.249982,0,0);}
.m1d_c00330{transform:matrix(0.184595,0.001292,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184595,0.001292,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184595,0.001292,-0.001750,0.249994,0,0);}
.mb5_c00330{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);}
.meb_c00330{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);}
.m88_c00330{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);}
.mfc_c00330{transform:matrix(0.184902,0.002219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184902,0.002219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184902,0.002219,-0.003000,0.249982,0,0);}
.mc3_c00330{transform:matrix(0.185629,0.002413,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185629,0.002413,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185629,0.002413,-0.003250,0.249979,0,0);}
.m9a_c00330{transform:matrix(0.186454,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186454,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186454,0.002051,-0.002750,0.249985,0,0);}
.m0_c00330{transform:matrix(0.186875,0.001308,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186875,0.001308,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186875,0.001308,-0.001750,0.249994,0,0);}
.m7d_c00330{transform:matrix(0.186884,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186884,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186884,0.002056,-0.002750,0.249985,0,0);}
.m99_c00330{transform:matrix(0.186894,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186894,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186894,0.002056,-0.002750,0.249985,0,0);}
.md6_c00330{transform:matrix(0.186984,0.002431,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186984,0.002431,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186984,0.002431,-0.003250,0.249979,0,0);}
.me4_c00330{transform:matrix(0.187007,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187007,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187007,0.002244,-0.003000,0.249982,0,0);}
.m41_c00330{transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187371,0.001874,-0.002500,0.249988,0,0);}
.mee_c00330{transform:matrix(0.187531,0.002250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187531,0.002250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187531,0.002250,-0.003000,0.249982,0,0);}
.m94_c00330{transform:matrix(0.187574,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187574,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187574,0.002063,-0.002750,0.249985,0,0);}
.m95_c00330{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);}
.md0_c00330{transform:matrix(0.188039,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188039,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188039,0.002445,-0.003250,0.249979,0,0);}
.m37_c00330{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);}
.m93_c00330{transform:matrix(0.188294,0.002071,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188294,0.002071,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188294,0.002071,-0.002750,0.249985,0,0);}
.m3f_c00330{transform:matrix(0.188426,0.001884,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188426,0.001884,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188426,0.001884,-0.002500,0.249988,0,0);}
.m9d_c00330{transform:matrix(0.188789,0.002077,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188789,0.002077,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188789,0.002077,-0.002750,0.249985,0,0);}
.ma6_c00330{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);}
.ma3_c00330{transform:matrix(0.189014,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189014,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189014,0.002079,-0.002750,0.249985,0,0);}
.mf8_c00330{transform:matrix(0.189061,0.002269,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189061,0.002269,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189061,0.002269,-0.003000,0.249982,0,0);}
.m144_c00330{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);}
.m14_c00330{transform:matrix(0.189420,0.001326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189420,0.001326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189420,0.001326,-0.001750,0.249994,0,0);}
.mce_c00330{transform:matrix(0.189559,0.002464,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189559,0.002464,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189559,0.002464,-0.003250,0.249979,0,0);}
.m63_c00330{transform:matrix(0.189789,0.002467,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189789,0.002467,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189789,0.002467,-0.003250,0.249979,0,0);}
.mf0_c00330{transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);}
.mc5_c00330{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);}
.me1_c00330{transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);}
.m91_c00330{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);}
.m31_c00330{transform:matrix(0.190475,0.001905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190475,0.001905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190475,0.001905,-0.002500,0.249988,0,0);}
.ma0_c00330{transform:matrix(0.190478,0.002095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190478,0.002095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190478,0.002095,-0.002750,0.249985,0,0);}
.me0_c00330{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);}
.m7e_c00330{transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,0.002096,-0.002750,0.249985,0,0);}
.ma_c00330{transform:matrix(0.190565,0.001334,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190565,0.001334,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190565,0.001334,-0.001750,0.249994,0,0);}
.m122_c00330{transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);}
.md5_c00330{transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);}
.m13b_c00330{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);}
.m80_c00330{transform:matrix(0.191238,0.002104,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191238,0.002104,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191238,0.002104,-0.002750,0.249985,0,0);}
.ma1_c00330{transform:matrix(0.191458,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191458,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191458,0.002106,-0.002750,0.249985,0,0);}
.m106_c00330{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);}
.m118_c00330{transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191698,0.002109,-0.002750,0.249985,0,0);}
.m4a_c00330{transform:matrix(0.191745,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191745,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191745,0.001917,-0.002500,0.249988,0,0);}
.m4c_c00330{transform:matrix(0.192940,0.001929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192940,0.001929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192940,0.001929,-0.002500,0.249988,0,0);}
.m114_c00330{transform:matrix(0.192978,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192978,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192978,0.002123,-0.002750,0.249985,0,0);}
.mb3_c00330{transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193316,0.002320,-0.003000,0.249982,0,0);}
.mca_c00330{transform:matrix(0.193629,0.002517,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193629,0.002517,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193629,0.002517,-0.003250,0.249979,0,0);}
.mb0_c00330{transform:matrix(0.193641,0.002324,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193641,0.002324,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193641,0.002324,-0.003000,0.249982,0,0);}
.m13_c00330{transform:matrix(0.193755,0.001356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193755,0.001356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193755,0.001356,-0.001750,0.249994,0,0);}
.m141_c00330{transform:matrix(0.194248,0.002914,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194248,0.002914,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194248,0.002914,-0.003750,0.249972,0,0);}
.m8f_c00330{transform:matrix(0.194268,0.002137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194268,0.002137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194268,0.002137,-0.002750,0.249985,0,0);}
.m67_c00330{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);}
.ma2_c00330{transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194418,0.002139,-0.002750,0.249985,0,0);}
.m38_c00330{transform:matrix(0.194705,0.001947,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194705,0.001947,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194705,0.001947,-0.002500,0.249988,0,0);}
.m55_c00330{transform:matrix(0.194850,0.001949,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194850,0.001949,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194850,0.001949,-0.002500,0.249988,0,0);}
.m71_c00330{transform:matrix(0.194851,0.002338,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194851,0.002338,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194851,0.002338,-0.003000,0.249982,0,0);}
.m24_c00330{transform:matrix(0.194917,0.001754,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194917,0.001754,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194917,0.001754,-0.002250,0.249990,0,0);}
.m8b_c00330{transform:matrix(0.195318,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195318,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195318,0.002149,-0.002750,0.249985,0,0);}
.m8c_c00330{transform:matrix(0.195403,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195403,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195403,0.002149,-0.002750,0.249985,0,0);}
.me7_c00330{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);}
.m3d_c00330{transform:matrix(0.195630,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195630,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195630,0.001956,-0.002500,0.249988,0,0);}
.ma8_c00330{transform:matrix(0.195938,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195938,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195938,0.002155,-0.002750,0.249985,0,0);}
.mb2_c00330{transform:matrix(0.196126,0.002354,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196126,0.002354,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196126,0.002354,-0.003000,0.249982,0,0);}
.m89_c00330{transform:matrix(0.196238,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196238,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196238,0.002159,-0.002750,0.249985,0,0);}
.m12_c00330{transform:matrix(0.196520,0.001376,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196520,0.001376,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196520,0.001376,-0.001750,0.249994,0,0);}
.mcb_c00330{transform:matrix(0.196883,0.002559,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196883,0.002559,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196883,0.002559,-0.003250,0.249979,0,0);}
.m12e_c00330{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);}
.m108_c00330{transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);}
.md2_c00330{transform:matrix(0.197458,0.002567,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197458,0.002567,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197458,0.002567,-0.003250,0.249979,0,0);}
.m85_c00330{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);}
.ma9_c00330{transform:matrix(0.197988,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197988,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197988,0.002178,-0.002750,0.249985,0,0);}
.m119_c00330{transform:matrix(0.198198,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198198,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198198,0.002180,-0.002750,0.249985,0,0);}
.m1e_c00330{transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);}
.md1_c00330{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);}
.m40_c00330{transform:matrix(0.198410,0.001984,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198410,0.001984,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198410,0.001984,-0.002500,0.249988,0,0);}
.m53_c00330{transform:matrix(0.199055,0.001991,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199055,0.001991,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199055,0.001991,-0.002500,0.249988,0,0);}
.m111_c00330{transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199753,0.002197,-0.002750,0.249985,0,0);}
.m2f_c00330{transform:matrix(0.199860,0.001999,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199860,0.001999,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199860,0.001999,-0.002500,0.249988,0,0);}
.mf9_c00330{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);}
.m5b_c00330{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);}
.m9e_c00330{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);}
.mb7_c00330{transform:matrix(0.200151,0.002402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200151,0.002402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200151,0.002402,-0.003000,0.249982,0,0);}
.m115_c00330{transform:matrix(0.200448,0.002205,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200448,0.002205,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200448,0.002205,-0.002750,0.249985,0,0);}
.m11_c00330{transform:matrix(0.200565,0.001404,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200565,0.001404,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200565,0.001404,-0.001750,0.249994,0,0);}
.mc6_c00330{transform:matrix(0.202063,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202063,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202063,0.002627,-0.003250,0.249979,0,0);}
.m10c_c00330{transform:matrix(0.202438,0.002227,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202438,0.002227,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202438,0.002227,-0.002750,0.249985,0,0);}
.m142_c00330{transform:matrix(0.202462,0.003037,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202462,0.003037,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202462,0.003037,-0.003750,0.249972,0,0);}
.m82_c00330{transform:matrix(0.202623,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202623,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202623,0.002229,-0.002750,0.249985,0,0);}
.m81_c00330{transform:matrix(0.202638,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202638,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202638,0.002229,-0.002750,0.249985,0,0);}
.m120_c00330{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);}
.m83_c00330{transform:matrix(0.203013,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203013,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203013,0.002233,-0.002750,0.249985,0,0);}
.m128_c00330{transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);}
.m117_c00330{transform:matrix(0.203393,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203393,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203393,0.002237,-0.002750,0.249985,0,0);}
.m19_c00330{transform:matrix(0.203995,0.001428,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203995,0.001428,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203995,0.001428,-0.001750,0.249994,0,0);}
.me8_c00330{transform:matrix(0.204505,0.002454,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204505,0.002454,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204505,0.002454,-0.003000,0.249982,0,0);}
.m133_c00330{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);}
.m44_c00330{transform:matrix(0.205820,0.002058,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205820,0.002058,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205820,0.002058,-0.002500,0.249988,0,0);}
.m124_c00330{transform:matrix(0.205823,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205823,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205823,0.002264,-0.002750,0.249985,0,0);}
.m25_c00330{transform:matrix(0.205837,0.001853,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205837,0.001853,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205837,0.001853,-0.002250,0.249990,0,0);}
.mdd_c00330{transform:matrix(0.206125,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206125,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206125,0.002474,-0.003000,0.249982,0,0);}
.m113_c00330{transform:matrix(0.206403,0.002270,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206403,0.002270,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206403,0.002270,-0.002750,0.249985,0,0);}
.m20_c00330{transform:matrix(0.206445,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206445,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206445,0.001445,-0.001750,0.249994,0,0);}
.md7_c00330{transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);}
.m3e_c00330{transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206670,0.002067,-0.002500,0.249988,0,0);}
.mc1_c00330{transform:matrix(0.206710,0.002481,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206710,0.002481,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206710,0.002481,-0.003000,0.249982,0,0);}
.m3a_c00330{transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);}
.me_c00330{transform:matrix(0.207000,0.001449,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207000,0.001449,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207000,0.001449,-0.001750,0.249994,0,0);}
.m2c_c00330{transform:matrix(0.207142,0.001864,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207142,0.001864,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207142,0.001864,-0.002250,0.249990,0,0);}
.mad_c00330{transform:matrix(0.207220,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207220,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207220,0.002487,-0.003000,0.249982,0,0);}
.m8a_c00330{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);}
.maf_c00330{transform:matrix(0.208610,0.002503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208610,0.002503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208610,0.002503,-0.003000,0.249982,0,0);}
.m11c_c00330{transform:matrix(0.208937,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208937,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208937,0.002298,-0.002750,0.249985,0,0);}
.mda_c00330{transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);}
.m6d_c00330{transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209690,0.002516,-0.003000,0.249982,0,0);}
.med_c00330{transform:matrix(0.210260,0.002523,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210260,0.002523,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210260,0.002523,-0.003000,0.249982,0,0);}
.m13a_c00330{transform:matrix(0.210311,0.003155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210311,0.003155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210311,0.003155,-0.003750,0.249972,0,0);}
.m4f_c00330{transform:matrix(0.210344,0.002103,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210344,0.002103,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210344,0.002103,-0.002500,0.249988,0,0);}
.m26_c00330{transform:matrix(0.210761,0.001897,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210761,0.001897,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210761,0.001897,-0.002250,0.249990,0,0);}
.m45_c00330{transform:matrix(0.210979,0.002110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210979,0.002110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210979,0.002110,-0.002500,0.249988,0,0);}
.m12c_c00330{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);}
.mf5_c00330{transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);}
.mfb_c00330{transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);}
.mc8_c00330{transform:matrix(0.212142,0.002758,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212142,0.002758,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212142,0.002758,-0.003250,0.249979,0,0);}
.m103_c00330{transform:matrix(0.212292,0.002760,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212292,0.002760,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212292,0.002760,-0.003250,0.249979,0,0);}
.m3b_c00330{transform:matrix(0.213479,0.002135,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213479,0.002135,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213479,0.002135,-0.002500,0.249988,0,0);}
.m107_c00330{transform:matrix(0.213557,0.002776,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213557,0.002776,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213557,0.002776,-0.003250,0.249979,0,0);}
.m130_c00330{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);}
.m64_c00330{transform:matrix(0.214097,0.002783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214097,0.002783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214097,0.002783,-0.003250,0.249979,0,0);}
.mac_c00330{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);}
.m13e_c00330{transform:matrix(0.215496,0.003232,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215496,0.003232,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215496,0.003232,-0.003750,0.249972,0,0);}
.mb1_c00330{transform:matrix(0.215889,0.002591,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215889,0.002591,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215889,0.002591,-0.003000,0.249982,0,0);}
.m5e_c00330{transform:matrix(0.215992,0.002808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215992,0.002808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215992,0.002808,-0.003250,0.249979,0,0);}
.m47_c00330{transform:matrix(0.216569,0.002166,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216569,0.002166,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216569,0.002166,-0.002500,0.249988,0,0);}
.m6f_c00330{transform:matrix(0.216729,0.002601,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216729,0.002601,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216729,0.002601,-0.003000,0.249982,0,0);}
.m101_c00330{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);}
.mf_c00330{transform:matrix(0.217800,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217800,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217800,0.001525,-0.001750,0.249994,0,0);}
.m12f_c00330{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);}
.m54_c00330{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);}
.m12d_c00330{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);}
.m4b_c00330{transform:matrix(0.219294,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219294,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219294,0.002193,-0.002500,0.249988,0,0);}
.m72_c00330{transform:matrix(0.220069,0.002641,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220069,0.002641,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220069,0.002641,-0.003000,0.249982,0,0);}
.m12b_c00330{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.mc9_c00330{transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);}
.m129_c00330{transform:matrix(0.221462,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221462,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221462,0.002436,-0.002750,0.249985,0,0);}
.ma7_c00330{transform:matrix(0.222037,0.002442,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222037,0.002442,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222037,0.002442,-0.002750,0.249985,0,0);}
.m134_c00330{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);}
.mbe_c00330{transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);}
.m30_c00330{transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);}
.me5_c00330{transform:matrix(0.222589,0.002671,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222589,0.002671,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222589,0.002671,-0.003000,0.249982,0,0);}
.m12a_c00330{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);}
.m135_c00330{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);}
.m35_c00330{transform:matrix(0.224404,0.002244,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224404,0.002244,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224404,0.002244,-0.002500,0.249988,0,0);}
.m127_c00330{transform:matrix(0.224851,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224851,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224851,0.002473,-0.002750,0.249985,0,0);}
.m13c_c00330{transform:matrix(0.224880,0.003373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224880,0.003373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224880,0.003373,-0.003750,0.249972,0,0);}
.m11e_c00330{transform:matrix(0.225831,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225831,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225831,0.002484,-0.002750,0.249985,0,0);}
.m140_c00330{transform:matrix(0.226150,0.003392,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226150,0.003392,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226150,0.003392,-0.003750,0.249972,0,0);}
.m5d_c00330{transform:matrix(0.226941,0.002950,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226941,0.002950,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226941,0.002950,-0.003250,0.249979,0,0);}
.m57_c00330{transform:matrix(0.227264,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227264,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227264,0.002273,-0.002500,0.249988,0,0);}
.m102_c00330{transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);}
.m5f_c00330{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);}
.mdf_c00330{transform:matrix(0.227944,0.002735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227944,0.002735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227944,0.002735,-0.003000,0.249982,0,0);}
.m8_c00330{transform:matrix(0.228119,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228119,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228119,0.001597,-0.001750,0.249994,0,0);}
.m6b_c00330{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);}
.mb4_c00330{transform:matrix(0.232018,0.002784,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232018,0.002784,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232018,0.002784,-0.003000,0.249982,0,0);}
.m61_c00330{transform:matrix(0.234340,0.003046,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234340,0.003046,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234340,0.003046,-0.003250,0.249979,0,0);}
.m11d_c00330{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);}
.m137_c00330{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);}
.m36_c00330{transform:matrix(0.234848,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234848,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234848,0.002348,-0.002500,0.249988,0,0);}
.m11b_c00330{transform:matrix(0.234996,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234996,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234996,0.002585,-0.002750,0.249985,0,0);}
.m109_c00330{transform:matrix(0.235845,0.003066,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235845,0.003066,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235845,0.003066,-0.003250,0.249979,0,0);}
.m97_c00330{transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);}
.m123_c00330{transform:matrix(0.237881,0.002617,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237881,0.002617,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237881,0.002617,-0.002750,0.249985,0,0);}
.m131_c00330{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);}
.mc0_c00330{transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);}
.mba_c00330{transform:matrix(0.240018,0.002880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240018,0.002880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240018,0.002880,-0.003000,0.249982,0,0);}
.m34_c00330{transform:matrix(0.240118,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240118,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240118,0.002401,-0.002500,0.249988,0,0);}
.m112_c00330{transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241655,0.002658,-0.002750,0.249985,0,0);}
.m1b_c00330{transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243689,0.001706,-0.001750,0.249994,0,0);}
.mff_c00330{transform:matrix(0.244522,0.002934,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244522,0.002934,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244522,0.002934,-0.003000,0.249982,0,0);}
.mdb_c00330{transform:matrix(0.244902,0.002939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244902,0.002939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244902,0.002939,-0.003000,0.249982,0,0);}
.md8_c00330{transform:matrix(0.244904,0.003184,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244904,0.003184,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244904,0.003184,-0.003250,0.249979,0,0);}
.m13d_c00330{transform:matrix(0.246607,0.003699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246607,0.003699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246607,0.003699,-0.003750,0.249972,0,0);}
.m9_c00330{transform:matrix(0.247964,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247964,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247964,0.001736,-0.001750,0.249994,0,0);}
.m9b_c00330{transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);}
.m4e_c00330{transform:matrix(0.250632,0.002506,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250632,0.002506,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250632,0.002506,-0.002500,0.249988,0,0);}
.m13f_c00330{transform:matrix(0.252132,0.003782,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252132,0.003782,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252132,0.003782,-0.003750,0.249972,0,0);}
.m143_c00330{transform:matrix(0.252582,0.003789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252582,0.003789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252582,0.003789,-0.003750,0.249972,0,0);}
.mbb_c00330{transform:matrix(0.252777,0.003033,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252777,0.003033,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252777,0.003033,-0.003000,0.249982,0,0);}
.m125_c00330{transform:matrix(0.255365,0.002809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255365,0.002809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255365,0.002809,-0.002750,0.249985,0,0);}
.m92_c00330{transform:matrix(0.258394,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258394,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258394,0.002842,-0.002750,0.249985,0,0);}
.mae_c00330{transform:matrix(0.258656,0.003104,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258656,0.003104,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258656,0.003104,-0.003000,0.249982,0,0);}
.mb8_c00330{transform:matrix(0.260231,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260231,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260231,0.003123,-0.003000,0.249982,0,0);}
.mbc_c00330{transform:matrix(0.260431,0.003125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260431,0.003125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260431,0.003125,-0.003000,0.249982,0,0);}
.mcf_c00330{transform:matrix(0.260818,0.003391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260818,0.003391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260818,0.003391,-0.003250,0.249979,0,0);}
.m2d_c00330{transform:matrix(0.265537,0.002655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265537,0.002655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265537,0.002655,-0.002500,0.249988,0,0);}
.m105_c00330{transform:matrix(0.270622,0.003518,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270622,0.003518,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270622,0.003518,-0.003250,0.249979,0,0);}
.m73_c00330{transform:matrix(0.270636,0.003248,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270636,0.003248,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270636,0.003248,-0.003000,0.249982,0,0);}
.m2b_c00330{transform:matrix(0.276099,0.002485,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276099,0.002485,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276099,0.002485,-0.002250,0.249990,0,0);}
.m56_c00330{transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);}
.m43_c00330{transform:matrix(0.281221,0.002812,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281221,0.002812,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281221,0.002812,-0.002500,0.249988,0,0);}
.m21_c00330{transform:matrix(0.282019,0.002538,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282019,0.002538,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282019,0.002538,-0.002250,0.249990,0,0);}
.m60_c00330{transform:matrix(0.283021,0.003679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283021,0.003679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283021,0.003679,-0.003250,0.249979,0,0);}
.m136_c00330{transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284010,0.000000,0.000000,0.250000,0,0);}
.m69_c00330{transform:matrix(0.284110,0.003409,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284110,0.003409,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284110,0.003409,-0.003000,0.249982,0,0);}
.m138_c00330{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);}
.m6e_c00330{transform:matrix(0.285984,0.003432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.285984,0.003432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.285984,0.003432,-0.003000,0.249982,0,0);}
.m62_c00330{transform:matrix(0.286191,0.003720,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286191,0.003720,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286191,0.003720,-0.003250,0.249979,0,0);}
.m74_c00330{transform:matrix(0.286589,0.003439,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286589,0.003439,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286589,0.003439,-0.003000,0.249982,0,0);}
.m116_c00330{transform:matrix(0.287583,0.003163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287583,0.003163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287583,0.003163,-0.002750,0.249985,0,0);}
.m70_c00330{transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);}
.m6c_c00330{transform:matrix(0.304533,0.003654,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304533,0.003654,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304533,0.003654,-0.003000,0.249982,0,0);}
.mc2_c00330{transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.311688,0.003740,-0.003000,0.249982,0,0);}
.m22_c00330{transform:matrix(0.313817,0.002824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313817,0.002824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313817,0.002824,-0.002250,0.249990,0,0);}
.m29_c00330{transform:matrix(0.322282,0.002901,-0.002250,0.249990,0,0);-ms-transform:matrix(0.322282,0.002901,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.322282,0.002901,-0.002250,0.249990,0,0);}
.m3c_c00330{transform:matrix(0.329534,0.003295,-0.002500,0.249988,0,0);-ms-transform:matrix(0.329534,0.003295,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.329534,0.003295,-0.002500,0.249988,0,0);}
.m121_c00330{transform:matrix(0.345379,0.003799,-0.002750,0.249985,0,0);-ms-transform:matrix(0.345379,0.003799,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.345379,0.003799,-0.002750,0.249985,0,0);}
.mbd_c00330{transform:matrix(0.390687,0.004688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.390687,0.004688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.390687,0.004688,-0.003000,0.249982,0,0);}
.m132_c00330{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);}
.m2a_c00330{transform:matrix(0.413513,0.003722,-0.002250,0.249990,0,0);-ms-transform:matrix(0.413513,0.003722,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.413513,0.003722,-0.002250,0.249990,0,0);}
.m65_c00330{transform:matrix(0.448487,0.005830,-0.003250,0.249979,0,0);-ms-transform:matrix(0.448487,0.005830,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.448487,0.005830,-0.003250,0.249979,0,0);}
.m6_c00330{transform:matrix(0.503948,0.003528,-0.001750,0.249994,0,0);-ms-transform:matrix(0.503948,0.003528,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.503948,0.003528,-0.001750,0.249994,0,0);}
.m145_c00330{transform:matrix(0.510675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.563141,0.003942,-0.001750,0.249994,0,0);-ms-transform:matrix(0.563141,0.003942,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.563141,0.003942,-0.001750,0.249994,0,0);}
.m11a_c00330{transform:matrix(0.642661,0.007069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.642661,0.007069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.642661,0.007069,-0.002750,0.249985,0,0);}
.m4_c00330{transform:matrix(0.824695,0.005773,-0.001750,0.249994,0,0);-ms-transform:matrix(0.824695,0.005773,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.824695,0.005773,-0.001750,0.249994,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;}
.fs14_c00330{font-size:28.350000px;}
.fs17_c00330{font-size:42.000000px;}
.fs16_c00330{font-size:46.205197px;}
.fs15_c00330{font-size:47.250000px;}
.fs13_c00330{font-size:50.403049px;}
.fs18_c00330{font-size:56.700000px;}
.fsd_c00330{font-size:59.854309px;}
.fsc_c00330{font-size:65.104687px;}
.fs7_c00330{font-size:66.155589px;}
.fs3_c00330{font-size:67.202722px;}
.fs6_c00330{font-size:67.203360px;}
.fs8_c00330{font-size:67.204838px;}
.fsf_c00330{font-size:67.205678px;}
.fs1_c00330{font-size:68.251672px;}
.fs4_c00330{font-size:68.253412px;}
.fsa_c00330{font-size:68.254129px;}
.fs10_c00330{font-size:68.254914px;}
.fs2_c00330{font-size:69.301698px;}
.fsb_c00330{font-size:69.304193px;}
.fs11_c00330{font-size:69.304989px;}
.fse_c00330{font-size:69.305856px;}
.fs5_c00330{font-size:70.353517px;}
.fs9_c00330{font-size:70.354256px;}
.fs0_c00330{font-size:71.401749px;}
.fs12_c00330{font-size:71.405141px;}
.y0_c00330{bottom:0.000000px;}
.y147_c00330{bottom:38.880000px;}
.y148_c00330{bottom:98.005500px;}
.y146_c00330{bottom:172.104405px;}
.y145_c00330{bottom:172.419653px;}
.y144_c00330{bottom:173.153468px;}
.y143_c00330{bottom:173.388525px;}
.y142_c00330{bottom:174.198548px;}
.y141_c00330{bottom:174.376118px;}
.y140_c00330{bottom:174.401093px;}
.y13f_c00330{bottom:175.053863px;}
.y13e_c00330{bottom:175.510973px;}
.y13d_c00330{bottom:176.167185px;}
.y13c_c00330{bottom:176.311500px;}
.y13b_c00330{bottom:189.049500px;}
.y13a_c00330{bottom:189.583500px;}
.y139_c00330{bottom:189.921000px;}
.y138_c00330{bottom:190.317000px;}
.y137_c00330{bottom:191.058000px;}
.y136_c00330{bottom:191.433000px;}
.y135_c00330{bottom:191.641500px;}
.y134_c00330{bottom:192.294000px;}
.y133_c00330{bottom:192.561000px;}
.y132_c00330{bottom:193.242000px;}
.y131_c00330{bottom:193.522500px;}
.y130_c00330{bottom:193.933500px;}
.y12f_c00330{bottom:194.179500px;}
.y12e_c00330{bottom:194.671500px;}
.y12d_c00330{bottom:201.690000px;}
.y12c_c00330{bottom:207.094004px;}
.y12b_c00330{bottom:207.284100px;}
.y12a_c00330{bottom:207.681932px;}
.y129_c00330{bottom:207.845430px;}
.y128_c00330{bottom:208.153898px;}
.y127_c00330{bottom:208.588079px;}
.y126_c00330{bottom:208.754382px;}
.y125_c00330{bottom:209.066183px;}
.y124_c00330{bottom:209.238690px;}
.y123_c00330{bottom:209.802759px;}
.y122_c00330{bottom:210.013679px;}
.y121_c00330{bottom:210.274692px;}
.y120_c00330{bottom:210.993482px;}
.y11f_c00330{bottom:211.302774px;}
.y11e_c00330{bottom:211.460795px;}
.y11d_c00330{bottom:211.782000px;}
.y11c_c00330{bottom:261.650203px;}
.y11b_c00330{bottom:261.650937px;}
.y11a_c00330{bottom:261.651068px;}
.y119_c00330{bottom:261.651231px;}
.y118_c00330{bottom:280.203120px;}
.y117_c00330{bottom:280.838832px;}
.y116_c00330{bottom:281.156606px;}
.y115_c00330{bottom:281.364456px;}
.y114_c00330{bottom:282.195775px;}
.y113_c00330{bottom:282.594251px;}
.y112_c00330{bottom:282.840216px;}
.y111_c00330{bottom:283.273836px;}
.y110_c00330{bottom:283.630220px;}
.y10f_c00330{bottom:284.221827px;}
.y10e_c00330{bottom:284.851500px;}
.y10d_c00330{bottom:302.545791px;}
.y10c_c00330{bottom:302.963578px;}
.y10b_c00330{bottom:303.327858px;}
.y10a_c00330{bottom:303.753348px;}
.y109_c00330{bottom:304.283260px;}
.y108_c00330{bottom:304.949654px;}
.y107_c00330{bottom:305.259411px;}
.y106_c00330{bottom:306.045670px;}
.y105_c00330{bottom:307.232050px;}
.y104_c00330{bottom:307.905268px;}
.y103_c00330{bottom:308.611500px;}
.y102_c00330{bottom:325.617024px;}
.y101_c00330{bottom:326.162046px;}
.y100_c00330{bottom:326.528184px;}
.yff_c00330{bottom:327.701370px;}
.yfe_c00330{bottom:328.339650px;}
.yfd_c00330{bottom:328.799730px;}
.yfc_c00330{bottom:329.262474px;}
.yfb_c00330{bottom:329.521530px;}
.yfa_c00330{bottom:330.286926px;}
.yf9_c00330{bottom:330.772224px;}
.yf8_c00330{bottom:331.019184px;}
.yf7_c00330{bottom:348.089946px;}
.yf6_c00330{bottom:348.903780px;}
.yf5_c00330{bottom:349.179036px;}
.yf4_c00330{bottom:349.444770px;}
.yf3_c00330{bottom:349.885644px;}
.yf2_c00330{bottom:350.199132px;}
.yf1_c00330{bottom:350.507688px;}
.yf0_c00330{bottom:351.197916px;}
.yef_c00330{bottom:351.660660px;}
.yee_c00330{bottom:352.289868px;}
.yed_c00330{bottom:352.509432px;}
.yec_c00330{bottom:352.850352px;}
.yeb_c00330{bottom:353.096538px;}
.yea_c00330{bottom:353.971500px;}
.ye9_c00330{bottom:371.432436px;}
.ye8_c00330{bottom:371.859432px;}
.ye7_c00330{bottom:372.036912px;}
.ye6_c00330{bottom:372.310530px;}
.ye5_c00330{bottom:372.816006px;}
.ye4_c00330{bottom:373.140726px;}
.ye3_c00330{bottom:373.457634px;}
.ye2_c00330{bottom:374.271054px;}
.ye1_c00330{bottom:374.543196px;}
.ye0_c00330{bottom:375.051174px;}
.ydf_c00330{bottom:375.281826px;}
.yde_c00330{bottom:375.708930px;}
.ydd_c00330{bottom:376.299312px;}
.ydc_c00330{bottom:376.921500px;}
.ydb_c00330{bottom:394.611751px;}
.yda_c00330{bottom:395.089794px;}
.yd9_c00330{bottom:395.377634px;}
.yd8_c00330{bottom:396.037416px;}
.yd7_c00330{bottom:396.377945px;}
.yd6_c00330{bottom:397.298032px;}
.yd5_c00330{bottom:397.634134px;}
.yd4_c00330{bottom:398.638813px;}
.yd3_c00330{bottom:399.144448px;}
.yd2_c00330{bottom:399.737541px;}
.yd1_c00330{bottom:400.411500px;}
.yd0_c00330{bottom:417.047572px;}
.ycf_c00330{bottom:418.100475px;}
.yce_c00330{bottom:418.630036px;}
.ycd_c00330{bottom:418.921347px;}
.ycc_c00330{bottom:419.103847px;}
.ycb_c00330{bottom:419.535636px;}
.yca_c00330{bottom:420.500886px;}
.yc9_c00330{bottom:420.890828px;}
.yc8_c00330{bottom:421.269790px;}
.yc7_c00330{bottom:421.620810px;}
.yc6_c00330{bottom:422.182410px;}
.yc5_c00330{bottom:422.410716px;}
.yc4_c00330{bottom:423.091500px;}
.yc3_c00330{bottom:440.045268px;}
.yc2_c00330{bottom:440.491380px;}
.yc1_c00330{bottom:441.153654px;}
.yc0_c00330{bottom:441.261978px;}
.ybf_c00330{bottom:442.416804px;}
.ybe_c00330{bottom:442.666230px;}
.ybd_c00330{bottom:443.447178px;}
.ybc_c00330{bottom:443.780988px;}
.ybb_c00330{bottom:444.412320px;}
.yba_c00330{bottom:444.739452px;}
.yb9_c00330{bottom:445.067376px;}
.yb8_c00330{bottom:445.501500px;}
.yb7_c00330{bottom:463.262676px;}
.yb6_c00330{bottom:463.702848px;}
.yb5_c00330{bottom:464.263872px;}
.yb4_c00330{bottom:465.028620px;}
.yb3_c00330{bottom:465.362286px;}
.yb2_c00330{bottom:466.665054px;}
.yb1_c00330{bottom:467.160810px;}
.yb0_c00330{bottom:467.565738px;}
.yaf_c00330{bottom:467.860596px;}
.yae_c00330{bottom:468.991500px;}
.yad_c00330{bottom:486.421369px;}
.yac_c00330{bottom:486.792546px;}
.yab_c00330{bottom:487.332508px;}
.yaa_c00330{bottom:488.125294px;}
.ya9_c00330{bottom:489.103429px;}
.ya8_c00330{bottom:489.542922px;}
.ya7_c00330{bottom:489.876055px;}
.ya6_c00330{bottom:490.570715px;}
.ya5_c00330{bottom:490.841305px;}
.ya4_c00330{bottom:491.666805px;}
.ya3_c00330{bottom:508.416195px;}
.ya2_c00330{bottom:509.122683px;}
.ya1_c00330{bottom:509.583538px;}
.ya0_c00330{bottom:510.319327px;}
.y9f_c00330{bottom:510.747367px;}
.y9e_c00330{bottom:511.093129px;}
.y9d_c00330{bottom:511.939459px;}
.y9c_c00330{bottom:512.636608px;}
.y9b_c00330{bottom:513.089875px;}
.y9a_c00330{bottom:513.809347px;}
.y99_c00330{bottom:530.685607px;}
.y98_c00330{bottom:530.952061px;}
.y97_c00330{bottom:531.689349px;}
.y96_c00330{bottom:532.025826px;}
.y95_c00330{bottom:532.925133px;}
.y94_c00330{bottom:533.508895px;}
.y93_c00330{bottom:533.958615px;}
.y92_c00330{bottom:535.595160px;}
.y91_c00330{bottom:536.084947px;}
.y90_c00330{bottom:536.635191px;}
.y8f_c00330{bottom:536.872695px;}
.y8e_c00330{bottom:537.571168px;}
.y8d_c00330{bottom:553.793898px;}
.y8c_c00330{bottom:554.312118px;}
.y8b_c00330{bottom:555.630467px;}
.y8a_c00330{bottom:555.959323px;}
.y89_c00330{bottom:556.254082px;}
.y88_c00330{bottom:556.900183px;}
.y87_c00330{bottom:557.312331px;}
.y86_c00330{bottom:558.060825px;}
.y85_c00330{bottom:558.900346px;}
.y84_c00330{bottom:559.980684px;}
.y83_c00330{bottom:577.256056px;}
.y82_c00330{bottom:577.514397px;}
.y81_c00330{bottom:578.215861px;}
.y80_c00330{bottom:578.524593px;}
.y7f_c00330{bottom:578.880152px;}
.y7e_c00330{bottom:579.338158px;}
.y7d_c00330{bottom:579.572772px;}
.y7c_c00330{bottom:580.199541px;}
.y7b_c00330{bottom:580.425277px;}
.y7a_c00330{bottom:580.740081px;}
.y79_c00330{bottom:581.292138px;}
.y78_c00330{bottom:581.580706px;}
.y77_c00330{bottom:582.150913px;}
.y76_c00330{bottom:582.391500px;}
.y75_c00330{bottom:599.525940px;}
.y74_c00330{bottom:599.859876px;}
.y73_c00330{bottom:600.439764px;}
.y72_c00330{bottom:600.657060px;}
.y71_c00330{bottom:600.942468px;}
.y70_c00330{bottom:601.665204px;}
.y6f_c00330{bottom:602.015106px;}
.y6e_c00330{bottom:602.523984px;}
.y6d_c00330{bottom:602.812092px;}
.y6c_c00330{bottom:603.906906px;}
.y6b_c00330{bottom:604.084278px;}
.y6a_c00330{bottom:604.237710px;}
.y69_c00330{bottom:604.434864px;}
.y68_c00330{bottom:605.096742px;}
.y67_c00330{bottom:605.343000px;}
.y66_c00330{bottom:622.297740px;}
.y65_c00330{bottom:623.445958px;}
.y64_c00330{bottom:623.922324px;}
.y63_c00330{bottom:624.913022px;}
.y62_c00330{bottom:625.463311px;}
.y61_c00330{bottom:625.772484px;}
.y60_c00330{bottom:626.422458px;}
.y5f_c00330{bottom:626.951922px;}
.y5e_c00330{bottom:627.211740px;}
.y5d_c00330{bottom:627.361012px;}
.y5c_c00330{bottom:627.751500px;}
.y5b_c00330{bottom:645.387330px;}
.y5a_c00330{bottom:645.772485px;}
.y59_c00330{bottom:646.418355px;}
.y58_c00330{bottom:647.078685px;}
.y57_c00330{bottom:647.415000px;}
.y56_c00330{bottom:648.010890px;}
.y55_c00330{bottom:648.889695px;}
.y54_c00330{bottom:649.158225px;}
.y53_c00330{bottom:649.651710px;}
.y52_c00330{bottom:650.297160px;}
.y51_c00330{bottom:650.699400px;}
.y50_c00330{bottom:667.942455px;}
.y4f_c00330{bottom:668.614395px;}
.y4e_c00330{bottom:669.232695px;}
.y4d_c00330{bottom:669.532455px;}
.y4c_c00330{bottom:669.891510px;}
.y4b_c00330{bottom:670.139925px;}
.y4a_c00330{bottom:670.504485px;}
.y49_c00330{bottom:670.720500px;}
.y48_c00330{bottom:671.384835px;}
.y47_c00330{bottom:671.668290px;}
.y46_c00330{bottom:672.302790px;}
.y45_c00330{bottom:672.583545px;}
.y44_c00330{bottom:672.840405px;}
.y43_c00330{bottom:691.407120px;}
.y42_c00330{bottom:691.886640px;}
.y41_c00330{bottom:692.246160px;}
.y40_c00330{bottom:692.943180px;}
.y3f_c00330{bottom:693.010350px;}
.y3e_c00330{bottom:693.580125px;}
.y3d_c00330{bottom:693.723765px;}
.y3c_c00330{bottom:694.314630px;}
.y3b_c00330{bottom:694.679415px;}
.y3a_c00330{bottom:695.105775px;}
.y39_c00330{bottom:695.521500px;}
.y38_c00330{bottom:714.027750px;}
.y37_c00330{bottom:714.313200px;}
.y36_c00330{bottom:715.166820px;}
.y35_c00330{bottom:715.428735px;}
.y34_c00330{bottom:715.898535px;}
.y33_c00330{bottom:716.330655px;}
.y32_c00330{bottom:716.800590px;}
.y31_c00330{bottom:717.478170px;}
.y30_c00330{bottom:717.718590px;}
.y2f_c00330{bottom:717.868815px;}
.y2e_c00330{bottom:718.471500px;}
.y2d_c00330{bottom:736.840275px;}
.y2c_c00330{bottom:737.168905px;}
.y2b_c00330{bottom:737.570301px;}
.y2a_c00330{bottom:737.971413px;}
.y28_c00330{bottom:738.337978px;}
.y29_c00330{bottom:738.371188px;}
.y27_c00330{bottom:739.052263px;}
.y26_c00330{bottom:739.423081px;}
.y25_c00330{bottom:740.116131px;}
.y24_c00330{bottom:740.276457px;}
.y23_c00330{bottom:740.427238px;}
.y22_c00330{bottom:740.881500px;}
.y1f_c00330{bottom:763.130989px;}
.y20_c00330{bottom:763.131270px;}
.y21_c00330{bottom:763.131840px;}
.y1e_c00330{bottom:783.232545px;}
.y1d_c00330{bottom:783.893522px;}
.y1c_c00330{bottom:784.016052px;}
.y1b_c00330{bottom:784.409616px;}
.y1a_c00330{bottom:784.623673px;}
.y19_c00330{bottom:785.083296px;}
.y18_c00330{bottom:785.231685px;}
.y17_c00330{bottom:785.400115px;}
.y16_c00330{bottom:785.773638px;}
.y15_c00330{bottom:786.060756px;}
.y14_c00330{bottom:786.509817px;}
.y13_c00330{bottom:805.623335px;}
.y12_c00330{bottom:805.894337px;}
.y11_c00330{bottom:806.102914px;}
.y10_c00330{bottom:806.742264px;}
.yf_c00330{bottom:807.038326px;}
.ye_c00330{bottom:807.316647px;}
.yd_c00330{bottom:807.668490px;}
.yc_c00330{bottom:807.867860px;}
.yb_c00330{bottom:808.266862px;}
.ya_c00330{bottom:808.455502px;}
.y9_c00330{bottom:809.189750px;}
.y8_c00330{bottom:828.404136px;}
.y7_c00330{bottom:828.820471px;}
.y6_c00330{bottom:829.439678px;}
.y5_c00330{bottom:830.266447px;}
.y4_c00330{bottom:830.445189px;}
.y3_c00330{bottom:830.698711px;}
.y2_c00330{bottom:831.386703px;}
.y1_c00330{bottom:831.600000px;}
.h16_c00330{height:28.350000px;}
.h19_c00330{height:42.000000px;}
.h18_c00330{height:46.205197px;}
.h17_c00330{height:47.250000px;}
.h15_c00330{height:50.403049px;}
.h1a_c00330{height:56.700000px;}
.hf_c00330{height:59.854309px;}
.he_c00330{height:65.104687px;}
.h9_c00330{height:66.155589px;}
.h5_c00330{height:67.202722px;}
.h8_c00330{height:67.203360px;}
.ha_c00330{height:67.204838px;}
.h11_c00330{height:67.205678px;}
.h3_c00330{height:68.251672px;}
.h6_c00330{height:68.253412px;}
.hc_c00330{height:68.254129px;}
.h12_c00330{height:68.254914px;}
.h4_c00330{height:69.301698px;}
.hd_c00330{height:69.304193px;}
.h13_c00330{height:69.304989px;}
.h10_c00330{height:69.305856px;}
.h7_c00330{height:70.353517px;}
.hb_c00330{height:70.354256px;}
.h2_c00330{height:71.401749px;}
.h14_c00330{height:71.405141px;}
.h1_c00330{height:1005.000000px;}
.h0_c00330{height:1005.150000px;}
.w0_c00330{width:702.540000px;}
.w1_c00330{width:702.750000px;}
.x0_c00330{left:0.000000px;}
.x54_c00330{left:54.313500px;}
.xc2_c00330{left:68.310000px;}
.x28_c00330{left:72.271500px;}
.x97_c00330{left:73.818000px;}
.x55_c00330{left:74.835000px;}
.xc0_c00330{left:76.357500px;}
.xaa_c00330{left:80.838000px;}
.x72_c00330{left:82.183521px;}
.x11_c00330{left:83.574828px;}
.x1_c00330{left:84.721500px;}
.xbc_c00330{left:85.744500px;}
.xb4_c00330{left:88.632000px;}
.x1d_c00330{left:102.223500px;}
.xa4_c00330{left:103.308456px;}
.x61_c00330{left:105.432000px;}
.x3a_c00330{left:109.237290px;}
.xb3_c00330{left:110.430045px;}
.x4d_c00330{left:112.825500px;}
.x2_c00330{left:115.192500px;}
.x45_c00330{left:116.753700px;}
.xb5_c00330{left:117.832500px;}
.x86_c00330{left:119.721000px;}
.x33_c00330{left:124.341000px;}
.x1b_c00330{left:126.634296px;}
.x56_c00330{left:129.991500px;}
.x29_c00330{left:132.540000px;}
.x8a_c00330{left:134.290500px;}
.x91_c00330{left:135.378000px;}
.x3b_c00330{left:137.312790px;}
.x12_c00330{left:139.797440px;}
.xae_c00330{left:141.067500px;}
.x73_c00330{left:142.134861px;}
.x4e_c00330{left:144.294000px;}
.x57_c00330{left:146.421000px;}
.x2a_c00330{left:147.562500px;}
.x1c_c00330{left:150.125451px;}
.x1e_c00330{left:152.697000px;}
.x62_c00330{left:157.269000px;}
.x58_c00330{left:159.207000px;}
.x67_c00330{left:161.280032px;}
.x34_c00330{left:166.977000px;}
.x7b_c00330{left:168.041315px;}
.x1f_c00330{left:169.450500px;}
.x46_c00330{left:170.497620px;}
.x2b_c00330{left:171.604500px;}
.x59_c00330{left:173.988000px;}
.x9_c00330{left:176.206479px;}
.x9c_c00330{left:177.240000px;}
.x74_c00330{left:179.931449px;}
.x92_c00330{left:181.000500px;}
.x6c_c00330{left:182.340641px;}
.x63_c00330{left:183.502500px;}
.x4f_c00330{left:185.022000px;}
.x20_c00330{left:187.264500px;}
.x80_c00330{left:193.717500px;}
.x8b_c00330{left:195.052500px;}
.xa_c00330{left:199.726311px;}
.x3c_c00330{left:200.762790px;}
.x35_c00330{left:203.455500px;}
.x9d_c00330{left:205.650000px;}
.xa5_c00330{left:207.532956px;}
.x98_c00330{left:210.457500px;}
.x47_c00330{left:211.595295px;}
.x3_c00330{left:213.477000px;}
.x6d_c00330{left:215.001705px;}
.xc1_c00330{left:217.221000px;}
.x93_c00330{left:219.895500px;}
.x68_c00330{left:221.234552px;}
.x13_c00330{left:222.388362px;}
.x9e_c00330{left:223.947000px;}
.xb6_c00330{left:225.660000px;}
.x81_c00330{left:227.461500px;}
.x3d_c00330{left:229.108290px;}
.x48_c00330{left:233.947845px;}
.x50_c00330{left:235.020000px;}
.x75_c00330{left:237.989805px;}
.x2c_c00330{left:239.362500px;}
.x14_c00330{left:243.449715px;}
.x7c_c00330{left:247.157082px;}
.x4_c00330{left:249.694500px;}
.x8c_c00330{left:251.205000px;}
.x87_c00330{left:254.737500px;}
.x51_c00330{left:258.802500px;}
.x15_c00330{left:262.076589px;}
.x21_c00330{left:264.270000px;}
.xaf_c00330{left:266.668500px;}
.xa6_c00330{left:267.682956px;}
.x82_c00330{left:268.774500px;}
.x99_c00330{left:272.010000px;}
.x5_c00330{left:275.229000px;}
.x36_c00330{left:276.906000px;}
.xab_c00330{left:278.209500px;}
.x7d_c00330{left:280.973840px;}
.x64_c00330{left:282.829500px;}
.x2d_c00330{left:286.356000px;}
.x5a_c00330{left:289.231500px;}
.x3e_c00330{left:295.541790px;}
.x94_c00330{left:297.178500px;}
.x52_c00330{left:301.132500px;}
.x69_c00330{left:304.108313px;}
.x22_c00330{left:305.472000px;}
.x49_c00330{left:307.126875px;}
.x76_c00330{left:308.519030px;}
.x9f_c00330{left:314.943000px;}
.x3f_c00330{left:317.143290px;}
.xb_c00330{left:318.541982px;}
.x16_c00330{left:319.593690px;}
.x95_c00330{left:323.032500px;}
.x6e_c00330{left:324.091904px;}
.xb0_c00330{left:325.254000px;}
.x2e_c00330{left:329.568000px;}
.x5b_c00330{left:331.638000px;}
.x37_c00330{left:333.883500px;}
.xb7_c00330{left:335.524500px;}
.x77_c00330{left:337.360716px;}
.xac_c00330{left:338.691000px;}
.x38_c00330{left:340.600500px;}
.x17_c00330{left:346.316001px;}
.x6a_c00330{left:350.297795px;}
.xc_c00330{left:353.373240px;}
.x8d_c00330{left:355.450500px;}
.x4a_c00330{left:356.814885px;}
.xa7_c00330{left:359.212956px;}
.x5c_c00330{left:360.796500px;}
.x9a_c00330{left:362.473500px;}
.xb8_c00330{left:363.870000px;}
.x6b_c00330{left:371.366102px;}
.x78_c00330{left:373.000320px;}
.x2f_c00330{left:376.548000px;}
.x40_c00330{left:378.440790px;}
.x24_c00330{left:381.147000px;}
.x23_c00330{left:384.837000px;}
.x8e_c00330{left:388.665000px;}
.xd_c00330{left:390.310478px;}
.x6_c00330{left:393.339000px;}
.x18_c00330{left:395.467654px;}
.xa0_c00330{left:398.175000px;}
.xb1_c00330{left:400.828500px;}
.x30_c00330{left:402.739500px;}
.x83_c00330{left:405.144000px;}
.x19_c00330{left:410.829049px;}
.x41_c00330{left:414.346290px;}
.x9b_c00330{left:415.942500px;}
.x7e_c00330{left:417.281853px;}
.xb9_c00330{left:418.459500px;}
.x96_c00330{left:420.003000px;}
.x5d_c00330{left:421.024500px;}
.xa1_c00330{left:424.299000px;}
.x25_c00330{left:425.566500px;}
.x65_c00330{left:435.097500px;}
.x88_c00330{left:436.837500px;}
.x4b_c00330{left:439.977735px;}
.x42_c00330{left:444.322290px;}
.x39_c00330{left:446.254500px;}
.xb2_c00330{left:448.612500px;}
.xbd_c00330{left:451.000500px;}
.x6f_c00330{left:452.885228px;}
.xad_c00330{left:454.542000px;}
.xa8_c00330{left:456.978456px;}
.x7f_c00330{left:458.868446px;}
.xa2_c00330{left:461.038500px;}
.x5e_c00330{left:462.916500px;}
.x8f_c00330{left:465.847500px;}
.x84_c00330{left:468.873000px;}
.xe_c00330{left:470.288421px;}
.x79_c00330{left:472.648715px;}
.x70_c00330{left:475.291238px;}
.xbe_c00330{left:476.926500px;}
.x7_c00330{left:481.797000px;}
.xa3_c00330{left:483.183000px;}
.x31_c00330{left:488.101500px;}
.x1a_c00330{left:493.467972px;}
.xf_c00330{left:496.442243px;}
.xba_c00330{left:497.532000px;}
.x89_c00330{left:501.054000px;}
.x53_c00330{left:502.308000px;}
.x43_c00330{left:506.152290px;}
.x5f_c00330{left:511.240500px;}
.x26_c00330{left:514.734000px;}
.x32_c00330{left:516.646500px;}
.xbf_c00330{left:517.987500px;}
.x71_c00330{left:524.451576px;}
.x4c_c00330{left:525.828510px;}
.x66_c00330{left:526.933500px;}
.x10_c00330{left:530.228001px;}
.x7a_c00330{left:531.556071px;}
.xa9_c00330{left:532.908456px;}
.x60_c00330{left:539.068500px;}
.x8_c00330{left:541.273500px;}
.x90_c00330{left:546.840000px;}
.x27_c00330{left:551.248500px;}
.x85_c00330{left:552.306000px;}
.x44_c00330{left:573.346290px;}
.xbb_c00330{left:584.280000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.fs14_c00330{font-size:25.200000pt;}
.fs17_c00330{font-size:37.333333pt;}
.fs16_c00330{font-size:41.071286pt;}
.fs15_c00330{font-size:42.000000pt;}
.fs13_c00330{font-size:44.802710pt;}
.fs18_c00330{font-size:50.400000pt;}
.fsd_c00330{font-size:53.203830pt;}
.fsc_c00330{font-size:57.870833pt;}
.fs7_c00330{font-size:58.804968pt;}
.fs3_c00330{font-size:59.735752pt;}
.fs6_c00330{font-size:59.736320pt;}
.fs8_c00330{font-size:59.737634pt;}
.fsf_c00330{font-size:59.738381pt;}
.fs1_c00330{font-size:60.668153pt;}
.fs4_c00330{font-size:60.669700pt;}
.fsa_c00330{font-size:60.670337pt;}
.fs10_c00330{font-size:60.671035pt;}
.fs2_c00330{font-size:61.601509pt;}
.fsb_c00330{font-size:61.603727pt;}
.fs11_c00330{font-size:61.604435pt;}
.fse_c00330{font-size:61.605205pt;}
.fs5_c00330{font-size:62.536460pt;}
.fs9_c00330{font-size:62.537116pt;}
.fs0_c00330{font-size:63.468222pt;}
.fs12_c00330{font-size:63.471236pt;}
.y0_c00330{bottom:0.000000pt;}
.y147_c00330{bottom:34.560000pt;}
.y148_c00330{bottom:87.116000pt;}
.y146_c00330{bottom:152.981693pt;}
.y145_c00330{bottom:153.261913pt;}
.y144_c00330{bottom:153.914193pt;}
.y143_c00330{bottom:154.123133pt;}
.y142_c00330{bottom:154.843153pt;}
.y141_c00330{bottom:155.000993pt;}
.y140_c00330{bottom:155.023193pt;}
.y13f_c00330{bottom:155.603433pt;}
.y13e_c00330{bottom:156.009753pt;}
.y13d_c00330{bottom:156.593053pt;}
.y13c_c00330{bottom:156.721333pt;}
.y13b_c00330{bottom:168.044000pt;}
.y13a_c00330{bottom:168.518667pt;}
.y139_c00330{bottom:168.818667pt;}
.y138_c00330{bottom:169.170667pt;}
.y137_c00330{bottom:169.829333pt;}
.y136_c00330{bottom:170.162667pt;}
.y135_c00330{bottom:170.348000pt;}
.y134_c00330{bottom:170.928000pt;}
.y133_c00330{bottom:171.165333pt;}
.y132_c00330{bottom:171.770667pt;}
.y131_c00330{bottom:172.020000pt;}
.y130_c00330{bottom:172.385333pt;}
.y12f_c00330{bottom:172.604000pt;}
.y12e_c00330{bottom:173.041333pt;}
.y12d_c00330{bottom:179.280000pt;}
.y12c_c00330{bottom:184.083559pt;}
.y12b_c00330{bottom:184.252533pt;}
.y12a_c00330{bottom:184.606161pt;}
.y129_c00330{bottom:184.751493pt;}
.y128_c00330{bottom:185.025687pt;}
.y127_c00330{bottom:185.411625pt;}
.y126_c00330{bottom:185.559451pt;}
.y125_c00330{bottom:185.836607pt;}
.y124_c00330{bottom:185.989947pt;}
.y123_c00330{bottom:186.491341pt;}
.y122_c00330{bottom:186.678825pt;}
.y121_c00330{bottom:186.910837pt;}
.y120_c00330{bottom:187.549761pt;}
.y11f_c00330{bottom:187.824688pt;}
.y11e_c00330{bottom:187.965151pt;}
.y11d_c00330{bottom:188.250667pt;}
.y11c_c00330{bottom:232.577959pt;}
.y11b_c00330{bottom:232.578611pt;}
.y11a_c00330{bottom:232.578727pt;}
.y119_c00330{bottom:232.578872pt;}
.y118_c00330{bottom:249.069440pt;}
.y117_c00330{bottom:249.634517pt;}
.y116_c00330{bottom:249.916983pt;}
.y115_c00330{bottom:250.101739pt;}
.y114_c00330{bottom:250.840689pt;}
.y113_c00330{bottom:251.194889pt;}
.y112_c00330{bottom:251.413525pt;}
.y111_c00330{bottom:251.798965pt;}
.y110_c00330{bottom:252.115751pt;}
.y10f_c00330{bottom:252.641624pt;}
.y10e_c00330{bottom:253.201333pt;}
.y10d_c00330{bottom:268.929592pt;}
.y10c_c00330{bottom:269.300959pt;}
.y10b_c00330{bottom:269.624763pt;}
.y10a_c00330{bottom:270.002976pt;}
.y109_c00330{bottom:270.474009pt;}
.y108_c00330{bottom:271.066359pt;}
.y107_c00330{bottom:271.341699pt;}
.y106_c00330{bottom:272.040596pt;}
.y105_c00330{bottom:273.095156pt;}
.y104_c00330{bottom:273.693572pt;}
.y103_c00330{bottom:274.321333pt;}
.y102_c00330{bottom:289.437355pt;}
.y101_c00330{bottom:289.921819pt;}
.y100_c00330{bottom:290.247275pt;}
.yff_c00330{bottom:291.290107pt;}
.yfe_c00330{bottom:291.857467pt;}
.yfd_c00330{bottom:292.266427pt;}
.yfc_c00330{bottom:292.677755pt;}
.yfb_c00330{bottom:292.908027pt;}
.yfa_c00330{bottom:293.588379pt;}
.yf9_c00330{bottom:294.019755pt;}
.yf8_c00330{bottom:294.239275pt;}
.yf7_c00330{bottom:309.413285pt;}
.yf6_c00330{bottom:310.136693pt;}
.yf5_c00330{bottom:310.381365pt;}
.yf4_c00330{bottom:310.617573pt;}
.yf3_c00330{bottom:311.009461pt;}
.yf2_c00330{bottom:311.288117pt;}
.yf1_c00330{bottom:311.562389pt;}
.yf0_c00330{bottom:312.175925pt;}
.yef_c00330{bottom:312.587253pt;}
.yee_c00330{bottom:313.146549pt;}
.yed_c00330{bottom:313.341717pt;}
.yec_c00330{bottom:313.644757pt;}
.yeb_c00330{bottom:313.863589pt;}
.yea_c00330{bottom:314.641333pt;}
.ye9_c00330{bottom:330.162165pt;}
.ye8_c00330{bottom:330.541717pt;}
.ye7_c00330{bottom:330.699477pt;}
.ye6_c00330{bottom:330.942693pt;}
.ye5_c00330{bottom:331.392005pt;}
.ye4_c00330{bottom:331.680645pt;}
.ye3_c00330{bottom:331.962341pt;}
.ye2_c00330{bottom:332.685381pt;}
.ye1_c00330{bottom:332.927285pt;}
.ye0_c00330{bottom:333.378821pt;}
.ydf_c00330{bottom:333.583845pt;}
.yde_c00330{bottom:333.963493pt;}
.ydd_c00330{bottom:334.488277pt;}
.ydc_c00330{bottom:335.041333pt;}
.ydb_c00330{bottom:350.766001pt;}
.yda_c00330{bottom:351.190928pt;}
.yd9_c00330{bottom:351.446785pt;}
.yd8_c00330{bottom:352.033259pt;}
.yd7_c00330{bottom:352.335951pt;}
.yd6_c00330{bottom:353.153807pt;}
.yd5_c00330{bottom:353.452564pt;}
.yd4_c00330{bottom:354.345612pt;}
.yd3_c00330{bottom:354.795065pt;}
.yd2_c00330{bottom:355.322259pt;}
.yd1_c00330{bottom:355.921333pt;}
.yd0_c00330{bottom:370.708953pt;}
.ycf_c00330{bottom:371.644867pt;}
.yce_c00330{bottom:372.115588pt;}
.ycd_c00330{bottom:372.374531pt;}
.ycc_c00330{bottom:372.536753pt;}
.ycb_c00330{bottom:372.920565pt;}
.yca_c00330{bottom:373.778565pt;}
.yc9_c00330{bottom:374.125180pt;}
.yc8_c00330{bottom:374.462036pt;}
.yc7_c00330{bottom:374.774053pt;}
.yc6_c00330{bottom:375.273253pt;}
.yc5_c00330{bottom:375.476192pt;}
.yc4_c00330{bottom:376.081333pt;}
.yc3_c00330{bottom:391.151349pt;}
.yc2_c00330{bottom:391.547893pt;}
.yc1_c00330{bottom:392.136581pt;}
.yc0_c00330{bottom:392.232869pt;}
.ybf_c00330{bottom:393.259381pt;}
.ybe_c00330{bottom:393.481093pt;}
.ybd_c00330{bottom:394.175269pt;}
.ybc_c00330{bottom:394.471989pt;}
.ybb_c00330{bottom:395.033173pt;}
.yba_c00330{bottom:395.323957pt;}
.yb9_c00330{bottom:395.615445pt;}
.yb8_c00330{bottom:396.001333pt;}
.yb7_c00330{bottom:411.789045pt;}
.yb6_c00330{bottom:412.180309pt;}
.yb5_c00330{bottom:412.678997pt;}
.yb4_c00330{bottom:413.358773pt;}
.yb3_c00330{bottom:413.655365pt;}
.yb2_c00330{bottom:414.813381pt;}
.yb1_c00330{bottom:415.254053pt;}
.yb0_c00330{bottom:415.613989pt;}
.yaf_c00330{bottom:415.876085pt;}
.yae_c00330{bottom:416.881333pt;}
.yad_c00330{bottom:432.374551pt;}
.yac_c00330{bottom:432.704485pt;}
.yab_c00330{bottom:433.184452pt;}
.yaa_c00330{bottom:433.889151pt;}
.ya9_c00330{bottom:434.758604pt;}
.ya8_c00330{bottom:435.149264pt;}
.ya7_c00330{bottom:435.445383pt;}
.ya6_c00330{bottom:436.062857pt;}
.ya5_c00330{bottom:436.303383pt;}
.ya4_c00330{bottom:437.037160pt;}
.ya3_c00330{bottom:451.925507pt;}
.ya2_c00330{bottom:452.553496pt;}
.ya1_c00330{bottom:452.963145pt;}
.ya0_c00330{bottom:453.617180pt;}
.y9f_c00330{bottom:453.997660pt;}
.y9e_c00330{bottom:454.305004pt;}
.y9d_c00330{bottom:455.057297pt;}
.y9c_c00330{bottom:455.676985pt;}
.y9b_c00330{bottom:456.079889pt;}
.y9a_c00330{bottom:456.719420pt;}
.y99_c00330{bottom:471.720540pt;}
.y98_c00330{bottom:471.957388pt;}
.y97_c00330{bottom:472.612755pt;}
.y96_c00330{bottom:472.911845pt;}
.y95_c00330{bottom:473.711229pt;}
.y94_c00330{bottom:474.230129pt;}
.y93_c00330{bottom:474.629880pt;}
.y92_c00330{bottom:476.084587pt;}
.y91_c00330{bottom:476.519953pt;}
.y90_c00330{bottom:477.009059pt;}
.y8f_c00330{bottom:477.220173pt;}
.y8e_c00330{bottom:477.841039pt;}
.y8d_c00330{bottom:492.261243pt;}
.y8c_c00330{bottom:492.721883pt;}
.y8b_c00330{bottom:493.893748pt;}
.y8a_c00330{bottom:494.186065pt;}
.y89_c00330{bottom:494.448073pt;}
.y88_c00330{bottom:495.022385pt;}
.y87_c00330{bottom:495.388739pt;}
.y86_c00330{bottom:496.054067pt;}
.y85_c00330{bottom:496.800308pt;}
.y84_c00330{bottom:497.760608pt;}
.y83_c00330{bottom:513.116495pt;}
.y82_c00330{bottom:513.346131pt;}
.y81_c00330{bottom:513.969655pt;}
.y80_c00330{bottom:514.244083pt;}
.y7f_c00330{bottom:514.560135pt;}
.y7e_c00330{bottom:514.967252pt;}
.y7d_c00330{bottom:515.175797pt;}
.y7c_c00330{bottom:515.732925pt;}
.y7b_c00330{bottom:515.933580pt;}
.y7a_c00330{bottom:516.213405pt;}
.y79_c00330{bottom:516.704123pt;}
.y78_c00330{bottom:516.960628pt;}
.y77_c00330{bottom:517.467479pt;}
.y76_c00330{bottom:517.681333pt;}
.y75_c00330{bottom:532.911947pt;}
.y74_c00330{bottom:533.208779pt;}
.y73_c00330{bottom:533.724235pt;}
.y72_c00330{bottom:533.917387pt;}
.y71_c00330{bottom:534.171083pt;}
.y70_c00330{bottom:534.813515pt;}
.y6f_c00330{bottom:535.124539pt;}
.y6e_c00330{bottom:535.576875pt;}
.y6d_c00330{bottom:535.832971pt;}
.y6c_c00330{bottom:536.806139pt;}
.y6b_c00330{bottom:536.963803pt;}
.y6a_c00330{bottom:537.100187pt;}
.y69_c00330{bottom:537.275435pt;}
.y68_c00330{bottom:537.863771pt;}
.y67_c00330{bottom:538.082667pt;}
.y66_c00330{bottom:553.153547pt;}
.y65_c00330{bottom:554.174185pt;}
.y64_c00330{bottom:554.597621pt;}
.y63_c00330{bottom:555.478241pt;}
.y62_c00330{bottom:555.967388pt;}
.y61_c00330{bottom:556.242208pt;}
.y60_c00330{bottom:556.819963pt;}
.y5f_c00330{bottom:557.290597pt;}
.y5e_c00330{bottom:557.521547pt;}
.y5d_c00330{bottom:557.654233pt;}
.y5c_c00330{bottom:558.001333pt;}
.y5b_c00330{bottom:573.677627pt;}
.y5a_c00330{bottom:574.019987pt;}
.y59_c00330{bottom:574.594093pt;}
.y58_c00330{bottom:575.181053pt;}
.y57_c00330{bottom:575.480000pt;}
.y56_c00330{bottom:576.009680pt;}
.y55_c00330{bottom:576.790840pt;}
.y54_c00330{bottom:577.029533pt;}
.y53_c00330{bottom:577.468187pt;}
.y52_c00330{bottom:578.041920pt;}
.y51_c00330{bottom:578.399467pt;}
.y50_c00330{bottom:593.726627pt;}
.y4f_c00330{bottom:594.323907pt;}
.y4e_c00330{bottom:594.873507pt;}
.y4d_c00330{bottom:595.139960pt;}
.y4c_c00330{bottom:595.459120pt;}
.y4b_c00330{bottom:595.679933pt;}
.y4a_c00330{bottom:596.003987pt;}
.y49_c00330{bottom:596.196000pt;}
.y48_c00330{bottom:596.786520pt;}
.y47_c00330{bottom:597.038480pt;}
.y46_c00330{bottom:597.602480pt;}
.y45_c00330{bottom:597.852040pt;}
.y44_c00330{bottom:598.080360pt;}
.y43_c00330{bottom:614.584107pt;}
.y42_c00330{bottom:615.010347pt;}
.y41_c00330{bottom:615.329920pt;}
.y40_c00330{bottom:615.949493pt;}
.y3f_c00330{bottom:616.009200pt;}
.y3e_c00330{bottom:616.515667pt;}
.y3d_c00330{bottom:616.643347pt;}
.y3c_c00330{bottom:617.168560pt;}
.y3b_c00330{bottom:617.492813pt;}
.y3a_c00330{bottom:617.871800pt;}
.y39_c00330{bottom:618.241333pt;}
.y38_c00330{bottom:634.691333pt;}
.y37_c00330{bottom:634.945067pt;}
.y36_c00330{bottom:635.703840pt;}
.y35_c00330{bottom:635.936653pt;}
.y34_c00330{bottom:636.354253pt;}
.y33_c00330{bottom:636.738360pt;}
.y32_c00330{bottom:637.156080pt;}
.y31_c00330{bottom:637.758373pt;}
.y30_c00330{bottom:637.972080pt;}
.y2f_c00330{bottom:638.105613pt;}
.y2e_c00330{bottom:638.641333pt;}
.y2d_c00330{bottom:654.969133pt;}
.y2c_c00330{bottom:655.261249pt;}
.y2b_c00330{bottom:655.618045pt;}
.y2a_c00330{bottom:655.974589pt;}
.y28_c00330{bottom:656.300425pt;}
.y29_c00330{bottom:656.329945pt;}
.y27_c00330{bottom:656.935345pt;}
.y26_c00330{bottom:657.264961pt;}
.y25_c00330{bottom:657.881005pt;}
.y24_c00330{bottom:658.023517pt;}
.y23_c00330{bottom:658.157545pt;}
.y22_c00330{bottom:658.561333pt;}
.y1f_c00330{bottom:678.338657pt;}
.y20_c00330{bottom:678.338907pt;}
.y21_c00330{bottom:678.339413pt;}
.y1e_c00330{bottom:696.206707pt;}
.y1d_c00330{bottom:696.794241pt;}
.y1c_c00330{bottom:696.903157pt;}
.y1b_c00330{bottom:697.252992pt;}
.y1a_c00330{bottom:697.443265pt;}
.y19_c00330{bottom:697.851819pt;}
.y18_c00330{bottom:697.983720pt;}
.y17_c00330{bottom:698.133436pt;}
.y16_c00330{bottom:698.465456pt;}
.y15_c00330{bottom:698.720672pt;}
.y14_c00330{bottom:699.119837pt;}
.y13_c00330{bottom:716.109631pt;}
.y12_c00330{bottom:716.350521pt;}
.y11_c00330{bottom:716.535924pt;}
.y10_c00330{bottom:717.104235pt;}
.yf_c00330{bottom:717.367401pt;}
.ye_c00330{bottom:717.614797pt;}
.yd_c00330{bottom:717.927547pt;}
.yc_c00330{bottom:718.104764pt;}
.yb_c00330{bottom:718.459433pt;}
.ya_c00330{bottom:718.627113pt;}
.y9_c00330{bottom:719.279777pt;}
.y8_c00330{bottom:736.359232pt;}
.y7_c00330{bottom:736.729308pt;}
.y6_c00330{bottom:737.279713pt;}
.y5_c00330{bottom:738.014620pt;}
.y4_c00330{bottom:738.173501pt;}
.y3_c00330{bottom:738.398855pt;}
.y2_c00330{bottom:739.010403pt;}
.y1_c00330{bottom:739.200000pt;}
.h16_c00330{height:25.200000pt;}
.h19_c00330{height:37.333333pt;}
.h18_c00330{height:41.071286pt;}
.h17_c00330{height:42.000000pt;}
.h15_c00330{height:44.802710pt;}
.h1a_c00330{height:50.400000pt;}
.hf_c00330{height:53.203830pt;}
.he_c00330{height:57.870833pt;}
.h9_c00330{height:58.804968pt;}
.h5_c00330{height:59.735752pt;}
.h8_c00330{height:59.736320pt;}
.ha_c00330{height:59.737634pt;}
.h11_c00330{height:59.738381pt;}
.h3_c00330{height:60.668153pt;}
.h6_c00330{height:60.669700pt;}
.hc_c00330{height:60.670337pt;}
.h12_c00330{height:60.671035pt;}
.h4_c00330{height:61.601509pt;}
.hd_c00330{height:61.603727pt;}
.h13_c00330{height:61.604435pt;}
.h10_c00330{height:61.605205pt;}
.h7_c00330{height:62.536460pt;}
.hb_c00330{height:62.537116pt;}
.h2_c00330{height:63.468222pt;}
.h14_c00330{height:63.471236pt;}
.h1_c00330{height:893.333333pt;}
.h0_c00330{height:893.466667pt;}
.w0_c00330{width:624.480000pt;}
.w1_c00330{width:624.666667pt;}
.x0_c00330{left:0.000000pt;}
.x54_c00330{left:48.278667pt;}
.xc2_c00330{left:60.720000pt;}
.x28_c00330{left:64.241333pt;}
.x97_c00330{left:65.616000pt;}
.x55_c00330{left:66.520000pt;}
.xc0_c00330{left:67.873333pt;}
.xaa_c00330{left:71.856000pt;}
.x72_c00330{left:73.052019pt;}
.x11_c00330{left:74.288736pt;}
.x1_c00330{left:75.308000pt;}
.xbc_c00330{left:76.217333pt;}
.xb4_c00330{left:78.784000pt;}
.x1d_c00330{left:90.865333pt;}
.xa4_c00330{left:91.829739pt;}
.x61_c00330{left:93.717333pt;}
.x3a_c00330{left:97.099813pt;}
.xb3_c00330{left:98.160040pt;}
.x4d_c00330{left:100.289333pt;}
.x2_c00330{left:102.393333pt;}
.x45_c00330{left:103.781067pt;}
.xb5_c00330{left:104.740000pt;}
.x86_c00330{left:106.418667pt;}
.x33_c00330{left:110.525333pt;}
.x1b_c00330{left:112.563819pt;}
.x56_c00330{left:115.548000pt;}
.x29_c00330{left:117.813333pt;}
.x8a_c00330{left:119.369333pt;}
.x91_c00330{left:120.336000pt;}
.x3b_c00330{left:122.055813pt;}
.x12_c00330{left:124.264391pt;}
.xae_c00330{left:125.393333pt;}
.x73_c00330{left:126.342099pt;}
.x4e_c00330{left:128.261333pt;}
.x57_c00330{left:130.152000pt;}
.x2a_c00330{left:131.166667pt;}
.x1c_c00330{left:133.444845pt;}
.x1e_c00330{left:135.730667pt;}
.x62_c00330{left:139.794667pt;}
.x58_c00330{left:141.517333pt;}
.x67_c00330{left:143.360028pt;}
.x34_c00330{left:148.424000pt;}
.x7b_c00330{left:149.370057pt;}
.x1f_c00330{left:150.622667pt;}
.x46_c00330{left:151.553440pt;}
.x2b_c00330{left:152.537333pt;}
.x59_c00330{left:154.656000pt;}
.x9_c00330{left:156.627981pt;}
.x9c_c00330{left:157.546667pt;}
.x74_c00330{left:159.939065pt;}
.x92_c00330{left:160.889333pt;}
.x6c_c00330{left:162.080569pt;}
.x63_c00330{left:163.113333pt;}
.x4f_c00330{left:164.464000pt;}
.x20_c00330{left:166.457333pt;}
.x80_c00330{left:172.193333pt;}
.x8b_c00330{left:173.380000pt;}
.xa_c00330{left:177.534499pt;}
.x3c_c00330{left:178.455813pt;}
.x35_c00330{left:180.849333pt;}
.x9d_c00330{left:182.800000pt;}
.xa5_c00330{left:184.473739pt;}
.x98_c00330{left:187.073333pt;}
.x47_c00330{left:188.084707pt;}
.x3_c00330{left:189.757333pt;}
.x6d_c00330{left:191.112627pt;}
.xc1_c00330{left:193.085333pt;}
.x93_c00330{left:195.462667pt;}
.x68_c00330{left:196.652935pt;}
.x13_c00330{left:197.678544pt;}
.x9e_c00330{left:199.064000pt;}
.xb6_c00330{left:200.586667pt;}
.x81_c00330{left:202.188000pt;}
.x3d_c00330{left:203.651813pt;}
.x48_c00330{left:207.953640pt;}
.x50_c00330{left:208.906667pt;}
.x75_c00330{left:211.546493pt;}
.x2c_c00330{left:212.766667pt;}
.x14_c00330{left:216.399747pt;}
.x7c_c00330{left:219.695184pt;}
.x4_c00330{left:221.950667pt;}
.x8c_c00330{left:223.293333pt;}
.x87_c00330{left:226.433333pt;}
.x51_c00330{left:230.046667pt;}
.x15_c00330{left:232.956968pt;}
.x21_c00330{left:234.906667pt;}
.xaf_c00330{left:237.038667pt;}
.xa6_c00330{left:237.940405pt;}
.x82_c00330{left:238.910667pt;}
.x99_c00330{left:241.786667pt;}
.x5_c00330{left:244.648000pt;}
.x36_c00330{left:246.138667pt;}
.xab_c00330{left:247.297333pt;}
.x7d_c00330{left:249.754524pt;}
.x64_c00330{left:251.404000pt;}
.x2d_c00330{left:254.538667pt;}
.x5a_c00330{left:257.094667pt;}
.x3e_c00330{left:262.703813pt;}
.x94_c00330{left:264.158667pt;}
.x52_c00330{left:267.673333pt;}
.x69_c00330{left:270.318500pt;}
.x22_c00330{left:271.530667pt;}
.x49_c00330{left:273.001667pt;}
.x76_c00330{left:274.239137pt;}
.x9f_c00330{left:279.949333pt;}
.x3f_c00330{left:281.905147pt;}
.xb_c00330{left:283.148428pt;}
.x16_c00330{left:284.083280pt;}
.x95_c00330{left:287.140000pt;}
.x6e_c00330{left:288.081692pt;}
.xb0_c00330{left:289.114667pt;}
.x2e_c00330{left:292.949333pt;}
.x5b_c00330{left:294.789333pt;}
.x37_c00330{left:296.785333pt;}
.xb7_c00330{left:298.244000pt;}
.x77_c00330{left:299.876192pt;}
.xac_c00330{left:301.058667pt;}
.x38_c00330{left:302.756000pt;}
.x17_c00330{left:307.836445pt;}
.x6a_c00330{left:311.375817pt;}
.xc_c00330{left:314.109547pt;}
.x8d_c00330{left:315.956000pt;}
.x4a_c00330{left:317.168787pt;}
.xa7_c00330{left:319.300405pt;}
.x5c_c00330{left:320.708000pt;}
.x9a_c00330{left:322.198667pt;}
.xb8_c00330{left:323.440000pt;}
.x6b_c00330{left:330.103201pt;}
.x78_c00330{left:331.555840pt;}
.x2f_c00330{left:334.709333pt;}
.x40_c00330{left:336.391813pt;}
.x24_c00330{left:338.797333pt;}
.x23_c00330{left:342.077333pt;}
.x8e_c00330{left:345.480000pt;}
.xd_c00330{left:346.942647pt;}
.x6_c00330{left:349.634667pt;}
.x18_c00330{left:351.526804pt;}
.xa0_c00330{left:353.933333pt;}
.xb1_c00330{left:356.292000pt;}
.x30_c00330{left:357.990667pt;}
.x83_c00330{left:360.128000pt;}
.x19_c00330{left:365.181377pt;}
.x41_c00330{left:368.307813pt;}
.x9b_c00330{left:369.726667pt;}
.x7e_c00330{left:370.917203pt;}
.xb9_c00330{left:371.964000pt;}
.x96_c00330{left:373.336000pt;}
.x5d_c00330{left:374.244000pt;}
.xa1_c00330{left:377.154667pt;}
.x25_c00330{left:378.281333pt;}
.x65_c00330{left:386.753333pt;}
.x88_c00330{left:388.300000pt;}
.x4b_c00330{left:391.091320pt;}
.x42_c00330{left:394.953147pt;}
.x39_c00330{left:396.670667pt;}
.xb2_c00330{left:398.766667pt;}
.xbd_c00330{left:400.889333pt;}
.x6f_c00330{left:402.564647pt;}
.xad_c00330{left:404.037333pt;}
.xa8_c00330{left:406.203072pt;}
.x7f_c00330{left:407.883063pt;}
.xa2_c00330{left:409.812000pt;}
.x5e_c00330{left:411.481333pt;}
.x8f_c00330{left:414.086667pt;}
.x84_c00330{left:416.776000pt;}
.xe_c00330{left:418.034152pt;}
.x79_c00330{left:420.132191pt;}
.x70_c00330{left:422.481100pt;}
.xbe_c00330{left:423.934667pt;}
.x7_c00330{left:428.264000pt;}
.xa3_c00330{left:429.496000pt;}
.x31_c00330{left:433.868000pt;}
.x1a_c00330{left:438.638197pt;}
.xf_c00330{left:441.281993pt;}
.xba_c00330{left:442.250667pt;}
.x89_c00330{left:445.381333pt;}
.x53_c00330{left:446.496000pt;}
.x43_c00330{left:449.913147pt;}
.x5f_c00330{left:454.436000pt;}
.x26_c00330{left:457.541333pt;}
.x32_c00330{left:459.241333pt;}
.xbf_c00330{left:460.433333pt;}
.x71_c00330{left:466.179179pt;}
.x4c_c00330{left:467.403120pt;}
.x66_c00330{left:468.385333pt;}
.x10_c00330{left:471.313779pt;}
.x7a_c00330{left:472.494285pt;}
.xa9_c00330{left:473.696405pt;}
.x60_c00330{left:479.172000pt;}
.x8_c00330{left:481.132000pt;}
.x90_c00330{left:486.080000pt;}
.x27_c00330{left:489.998667pt;}
.x85_c00330{left:490.938667pt;}
.x44_c00330{left:509.641147pt;}
.xbb_c00330{left:519.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_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_4ab86c84425994a9e06b01c2.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;}
.m6b_c00331{transform:matrix(0.013114,-0.000157,0.003000,0.249982,0,0);-ms-transform:matrix(0.013114,-0.000157,0.003000,0.249982,0,0);-webkit-transform:matrix(0.013114,-0.000157,0.003000,0.249982,0,0);}
.m133_c00331{transform:matrix(0.019779,-0.000237,0.003000,0.249982,0,0);-ms-transform:matrix(0.019779,-0.000237,0.003000,0.249982,0,0);-webkit-transform:matrix(0.019779,-0.000237,0.003000,0.249982,0,0);}
.m135_c00331{transform:matrix(0.021205,0.000127,-0.001500,0.249996,0,0);-ms-transform:matrix(0.021205,0.000127,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.021205,0.000127,-0.001500,0.249996,0,0);}
.m6a_c00331{transform:matrix(0.025363,-0.000304,0.003000,0.249982,0,0);-ms-transform:matrix(0.025363,-0.000304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.025363,-0.000304,0.003000,0.249982,0,0);}
.m143_c00331{transform:matrix(0.029909,0.000179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.029909,0.000179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.029909,0.000179,-0.001500,0.249996,0,0);}
.m19_c00331{transform:matrix(0.057660,-0.001096,0.004749,0.249955,0,0);-ms-transform:matrix(0.057660,-0.001096,0.004749,0.249955,0,0);-webkit-transform:matrix(0.057660,-0.001096,0.004749,0.249955,0,0);}
.m27_c00331{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);}
.ma5_c00331{transform:matrix(0.077594,-0.000931,0.003000,0.249982,0,0);-ms-transform:matrix(0.077594,-0.000931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.077594,-0.000931,0.003000,0.249982,0,0);}
.m144_c00331{transform:matrix(0.081694,0.000490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.081694,0.000490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.081694,0.000490,-0.001500,0.249996,0,0);}
.m4f_c00331{transform:matrix(0.088878,-0.001955,0.005499,0.249940,0,0);-ms-transform:matrix(0.088878,-0.001955,0.005499,0.249940,0,0);-webkit-transform:matrix(0.088878,-0.001955,0.005499,0.249940,0,0);}
.m28_c00331{transform:matrix(0.126070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126070,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.132535,-0.001590,0.003000,0.249982,0,0);-ms-transform:matrix(0.132535,-0.001590,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132535,-0.001590,0.003000,0.249982,0,0);}
.m7_c00331{transform:matrix(0.134893,-0.002428,0.004499,0.249960,0,0);-ms-transform:matrix(0.134893,-0.002428,0.004499,0.249960,0,0);-webkit-transform:matrix(0.134893,-0.002428,0.004499,0.249960,0,0);}
.m3a_c00331{transform:matrix(0.137992,-0.003036,0.005499,0.249940,0,0);-ms-transform:matrix(0.137992,-0.003036,0.005499,0.249940,0,0);-webkit-transform:matrix(0.137992,-0.003036,0.005499,0.249940,0,0);}
.m20_c00331{transform:matrix(0.143149,-0.002720,0.004749,0.249955,0,0);-ms-transform:matrix(0.143149,-0.002720,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143149,-0.002720,0.004749,0.249955,0,0);}
.m14_c00331{transform:matrix(0.144120,-0.003603,0.006248,0.249922,0,0);-ms-transform:matrix(0.144120,-0.003603,0.006248,0.249922,0,0);-webkit-transform:matrix(0.144120,-0.003603,0.006248,0.249922,0,0);}
.me0_c00331{transform:matrix(0.146264,-0.001755,0.003000,0.249982,0,0);-ms-transform:matrix(0.146264,-0.001755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146264,-0.001755,0.003000,0.249982,0,0);}
.m23_c00331{transform:matrix(0.146749,-0.002788,0.004749,0.249955,0,0);-ms-transform:matrix(0.146749,-0.002788,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146749,-0.002788,0.004749,0.249955,0,0);}
.m134_c00331{transform:matrix(0.148024,-0.001776,0.003000,0.249982,0,0);-ms-transform:matrix(0.148024,-0.001776,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148024,-0.001776,0.003000,0.249982,0,0);}
.m127_c00331{transform:matrix(0.148144,-0.001778,0.003000,0.249982,0,0);-ms-transform:matrix(0.148144,-0.001778,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148144,-0.001778,0.003000,0.249982,0,0);}
.m33_c00331{transform:matrix(0.149054,-0.003279,0.005499,0.249940,0,0);-ms-transform:matrix(0.149054,-0.003279,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149054,-0.003279,0.005499,0.249940,0,0);}
.mfe_c00331{transform:matrix(0.150184,-0.001802,0.003000,0.249982,0,0);-ms-transform:matrix(0.150184,-0.001802,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150184,-0.001802,0.003000,0.249982,0,0);}
.m12d_c00331{transform:matrix(0.150404,-0.001805,0.003000,0.249982,0,0);-ms-transform:matrix(0.150404,-0.001805,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150404,-0.001805,0.003000,0.249982,0,0);}
.m3e_c00331{transform:matrix(0.151748,-0.003338,0.005499,0.249940,0,0);-ms-transform:matrix(0.151748,-0.003338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.151748,-0.003338,0.005499,0.249940,0,0);}
.m46_c00331{transform:matrix(0.152333,-0.003351,0.005499,0.249940,0,0);-ms-transform:matrix(0.152333,-0.003351,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152333,-0.003351,0.005499,0.249940,0,0);}
.m125_c00331{transform:matrix(0.152794,-0.001834,0.003000,0.249982,0,0);-ms-transform:matrix(0.152794,-0.001834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152794,-0.001834,0.003000,0.249982,0,0);}
.m101_c00331{transform:matrix(0.153224,-0.001839,0.003000,0.249982,0,0);-ms-transform:matrix(0.153224,-0.001839,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153224,-0.001839,0.003000,0.249982,0,0);}
.me_c00331{transform:matrix(0.153317,-0.003833,0.006248,0.249922,0,0);-ms-transform:matrix(0.153317,-0.003833,0.006248,0.249922,0,0);-webkit-transform:matrix(0.153317,-0.003833,0.006248,0.249922,0,0);}
.md8_c00331{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);}
.mc3_c00331{transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);-ms-transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);}
.mb0_c00331{transform:matrix(0.156139,-0.001874,0.003000,0.249982,0,0);-ms-transform:matrix(0.156139,-0.001874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156139,-0.001874,0.003000,0.249982,0,0);}
.m8_c00331{transform:matrix(0.156210,-0.002812,0.004499,0.249960,0,0);-ms-transform:matrix(0.156210,-0.002812,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156210,-0.002812,0.004499,0.249960,0,0);}
.m38_c00331{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);}
.m26_c00331{transform:matrix(0.156602,-0.002975,0.004749,0.249955,0,0);-ms-transform:matrix(0.156602,-0.002975,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156602,-0.002975,0.004749,0.249955,0,0);}
.m51_c00331{transform:matrix(0.157017,-0.003454,0.005499,0.249940,0,0);-ms-transform:matrix(0.157017,-0.003454,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157017,-0.003454,0.005499,0.249940,0,0);}
.m4d_c00331{transform:matrix(0.158577,-0.003489,0.005499,0.249940,0,0);-ms-transform:matrix(0.158577,-0.003489,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158577,-0.003489,0.005499,0.249940,0,0);}
.mdb_c00331{transform:matrix(0.159309,-0.001912,0.003000,0.249982,0,0);-ms-transform:matrix(0.159309,-0.001912,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159309,-0.001912,0.003000,0.249982,0,0);}
.md2_c00331{transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);-ms-transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);}
.mc9_c00331{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);}
.m114_c00331{transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159998,-0.001920,0.003000,0.249982,0,0);}
.mfc_c00331{transform:matrix(0.160233,-0.001923,0.003000,0.249982,0,0);-ms-transform:matrix(0.160233,-0.001923,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160233,-0.001923,0.003000,0.249982,0,0);}
.m30_c00331{transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);-ms-transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);}
.m5d_c00331{transform:matrix(0.161111,-0.003544,0.005499,0.249940,0,0);-ms-transform:matrix(0.161111,-0.003544,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161111,-0.003544,0.005499,0.249940,0,0);}
.mb7_c00331{transform:matrix(0.161328,-0.001936,0.003000,0.249982,0,0);-ms-transform:matrix(0.161328,-0.001936,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161328,-0.001936,0.003000,0.249982,0,0);}
.m124_c00331{transform:matrix(0.161473,-0.001938,0.003000,0.249982,0,0);-ms-transform:matrix(0.161473,-0.001938,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161473,-0.001938,0.003000,0.249982,0,0);}
.m1b_c00331{transform:matrix(0.161636,-0.003071,0.004749,0.249955,0,0);-ms-transform:matrix(0.161636,-0.003071,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161636,-0.003071,0.004749,0.249955,0,0);}
.m85_c00331{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);}
.m41_c00331{transform:matrix(0.162061,-0.003565,0.005499,0.249940,0,0);-ms-transform:matrix(0.162061,-0.003565,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162061,-0.003565,0.005499,0.249940,0,0);}
.mdd_c00331{transform:matrix(0.162223,-0.001947,0.003000,0.249982,0,0);-ms-transform:matrix(0.162223,-0.001947,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162223,-0.001947,0.003000,0.249982,0,0);}
.mad_c00331{transform:matrix(0.162453,-0.001949,0.003000,0.249982,0,0);-ms-transform:matrix(0.162453,-0.001949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162453,-0.001949,0.003000,0.249982,0,0);}
.m118_c00331{transform:matrix(0.162488,-0.001950,0.003000,0.249982,0,0);-ms-transform:matrix(0.162488,-0.001950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162488,-0.001950,0.003000,0.249982,0,0);}
.md5_c00331{transform:matrix(0.162738,-0.001953,0.003000,0.249982,0,0);-ms-transform:matrix(0.162738,-0.001953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162738,-0.001953,0.003000,0.249982,0,0);}
.m55_c00331{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);}
.m100_c00331{transform:matrix(0.164038,-0.001968,0.003000,0.249982,0,0);-ms-transform:matrix(0.164038,-0.001968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164038,-0.001968,0.003000,0.249982,0,0);}
.mc4_c00331{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);}
.mae_c00331{transform:matrix(0.164258,-0.001971,0.003000,0.249982,0,0);-ms-transform:matrix(0.164258,-0.001971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164258,-0.001971,0.003000,0.249982,0,0);}
.m25_c00331{transform:matrix(0.164490,-0.003125,0.004749,0.249955,0,0);-ms-transform:matrix(0.164490,-0.003125,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164490,-0.003125,0.004749,0.249955,0,0);}
.m12_c00331{transform:matrix(0.164614,-0.004115,0.006248,0.249922,0,0);-ms-transform:matrix(0.164614,-0.004115,0.006248,0.249922,0,0);-webkit-transform:matrix(0.164614,-0.004115,0.006248,0.249922,0,0);}
.mce_c00331{transform:matrix(0.164878,-0.001979,0.003000,0.249982,0,0);-ms-transform:matrix(0.164878,-0.001979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164878,-0.001979,0.003000,0.249982,0,0);}
.m11f_c00331{transform:matrix(0.165083,-0.001981,0.003000,0.249982,0,0);-ms-transform:matrix(0.165083,-0.001981,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165083,-0.001981,0.003000,0.249982,0,0);}
.m121_c00331{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);}
.m39_c00331{transform:matrix(0.166180,-0.003656,0.005499,0.249940,0,0);-ms-transform:matrix(0.166180,-0.003656,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166180,-0.003656,0.005499,0.249940,0,0);}
.m35_c00331{transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);-ms-transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);}
.me7_c00331{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);}
.mf9_c00331{transform:matrix(0.166838,-0.002002,0.003000,0.249982,0,0);-ms-transform:matrix(0.166838,-0.002002,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166838,-0.002002,0.003000,0.249982,0,0);}
.m107_c00331{transform:matrix(0.167178,-0.002006,0.003000,0.249982,0,0);-ms-transform:matrix(0.167178,-0.002006,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167178,-0.002006,0.003000,0.249982,0,0);}
.mff_c00331{transform:matrix(0.167448,-0.002009,0.003000,0.249982,0,0);-ms-transform:matrix(0.167448,-0.002009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167448,-0.002009,0.003000,0.249982,0,0);}
.m24_c00331{transform:matrix(0.168135,-0.003195,0.004749,0.249955,0,0);-ms-transform:matrix(0.168135,-0.003195,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168135,-0.003195,0.004749,0.249955,0,0);}
.m103_c00331{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);}
.mdc_c00331{transform:matrix(0.168718,-0.002025,0.003000,0.249982,0,0);-ms-transform:matrix(0.168718,-0.002025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168718,-0.002025,0.003000,0.249982,0,0);}
.mbc_c00331{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);}
.mfa_c00331{transform:matrix(0.169028,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.169028,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169028,-0.002028,0.003000,0.249982,0,0);}
.meb_c00331{transform:matrix(0.169318,-0.002032,0.003000,0.249982,0,0);-ms-transform:matrix(0.169318,-0.002032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169318,-0.002032,0.003000,0.249982,0,0);}
.m3d_c00331{transform:matrix(0.169349,-0.003726,0.005499,0.249940,0,0);-ms-transform:matrix(0.169349,-0.003726,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169349,-0.003726,0.005499,0.249940,0,0);}
.m145_c00331{transform:matrix(0.170197,0.001021,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170197,0.001021,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170197,0.001021,-0.001500,0.249996,0,0);}
.m53_c00331{transform:matrix(0.170979,-0.003762,0.005499,0.249940,0,0);-ms-transform:matrix(0.170979,-0.003762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170979,-0.003762,0.005499,0.249940,0,0);}
.m4a_c00331{transform:matrix(0.171528,-0.003774,0.005499,0.249940,0,0);-ms-transform:matrix(0.171528,-0.003774,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171528,-0.003774,0.005499,0.249940,0,0);}
.m13d_c00331{transform:matrix(0.171582,0.001029,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171582,0.001029,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171582,0.001029,-0.001500,0.249996,0,0);}
.m3f_c00331{transform:matrix(0.171618,-0.003776,0.005499,0.249940,0,0);-ms-transform:matrix(0.171618,-0.003776,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171618,-0.003776,0.005499,0.249940,0,0);}
.mc0_c00331{transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);-ms-transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171628,-0.002060,0.003000,0.249982,0,0);}
.m132_c00331{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);}
.m98_c00331{transform:matrix(0.172073,-0.002065,0.003000,0.249982,0,0);-ms-transform:matrix(0.172073,-0.002065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172073,-0.002065,0.003000,0.249982,0,0);}
.m89_c00331{transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);-ms-transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173198,-0.002078,0.003000,0.249982,0,0);}
.mfb_c00331{transform:matrix(0.173478,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173478,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173478,-0.002082,0.003000,0.249982,0,0);}
.m79_c00331{transform:matrix(0.174307,-0.002092,0.003000,0.249982,0,0);-ms-transform:matrix(0.174307,-0.002092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174307,-0.002092,0.003000,0.249982,0,0);}
.mcb_c00331{transform:matrix(0.174377,-0.002093,0.003000,0.249982,0,0);-ms-transform:matrix(0.174377,-0.002093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174377,-0.002093,0.003000,0.249982,0,0);}
.mdf_c00331{transform:matrix(0.174432,-0.002093,0.003000,0.249982,0,0);-ms-transform:matrix(0.174432,-0.002093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174432,-0.002093,0.003000,0.249982,0,0);}
.m57_c00331{transform:matrix(0.174508,-0.003839,0.005499,0.249940,0,0);-ms-transform:matrix(0.174508,-0.003839,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174508,-0.003839,0.005499,0.249940,0,0);}
.mcc_c00331{transform:matrix(0.174792,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174792,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174792,-0.002098,0.003000,0.249982,0,0);}
.m7a_c00331{transform:matrix(0.174862,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174862,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174862,-0.002098,0.003000,0.249982,0,0);}
.m7c_c00331{transform:matrix(0.175492,-0.002106,0.003000,0.249982,0,0);-ms-transform:matrix(0.175492,-0.002106,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175492,-0.002106,0.003000,0.249982,0,0);}
.mcf_c00331{transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);-ms-transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);}
.mf7_c00331{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);}
.me1_c00331{transform:matrix(0.176112,-0.002113,0.003000,0.249982,0,0);-ms-transform:matrix(0.176112,-0.002113,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176112,-0.002113,0.003000,0.249982,0,0);}
.m99_c00331{transform:matrix(0.176142,-0.002114,0.003000,0.249982,0,0);-ms-transform:matrix(0.176142,-0.002114,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176142,-0.002114,0.003000,0.249982,0,0);}
.m131_c00331{transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176217,-0.002115,0.003000,0.249982,0,0);}
.m11d_c00331{transform:matrix(0.176317,-0.002116,0.003000,0.249982,0,0);-ms-transform:matrix(0.176317,-0.002116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176317,-0.002116,0.003000,0.249982,0,0);}
.mf6_c00331{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);}
.m44_c00331{transform:matrix(0.176847,-0.003891,0.005499,0.249940,0,0);-ms-transform:matrix(0.176847,-0.003891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176847,-0.003891,0.005499,0.249940,0,0);}
.mf8_c00331{transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);}
.m9b_c00331{transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);-ms-transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);}
.m2f_c00331{transform:matrix(0.177717,-0.003910,0.005499,0.249940,0,0);-ms-transform:matrix(0.177717,-0.003910,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177717,-0.003910,0.005499,0.249940,0,0);}
.md6_c00331{transform:matrix(0.178012,-0.002136,0.003000,0.249982,0,0);-ms-transform:matrix(0.178012,-0.002136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178012,-0.002136,0.003000,0.249982,0,0);}
.m9f_c00331{transform:matrix(0.178452,-0.002141,0.003000,0.249982,0,0);-ms-transform:matrix(0.178452,-0.002141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178452,-0.002141,0.003000,0.249982,0,0);}
.m47_c00331{transform:matrix(0.178637,-0.003930,0.005499,0.249940,0,0);-ms-transform:matrix(0.178637,-0.003930,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178637,-0.003930,0.005499,0.249940,0,0);}
.m2c_c00331{transform:matrix(0.178857,-0.003935,0.005499,0.249940,0,0);-ms-transform:matrix(0.178857,-0.003935,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178857,-0.003935,0.005499,0.249940,0,0);}
.m96_c00331{transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);}
.md9_c00331{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);}
.mac_c00331{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);}
.m8c_c00331{transform:matrix(0.180587,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180587,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180587,-0.002167,0.003000,0.249982,0,0);}
.m1c_c00331{transform:matrix(0.180897,-0.003437,0.004749,0.249955,0,0);-ms-transform:matrix(0.180897,-0.003437,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180897,-0.003437,0.004749,0.249955,0,0);}
.mbb_c00331{transform:matrix(0.180997,-0.002172,0.003000,0.249982,0,0);-ms-transform:matrix(0.180997,-0.002172,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180997,-0.002172,0.003000,0.249982,0,0);}
.m22_c00331{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);}
.m37_c00331{transform:matrix(0.181326,-0.003989,0.005499,0.249940,0,0);-ms-transform:matrix(0.181326,-0.003989,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181326,-0.003989,0.005499,0.249940,0,0);}
.m141_c00331{transform:matrix(0.181452,0.001089,-0.001500,0.249996,0,0);-ms-transform:matrix(0.181452,0.001089,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.181452,0.001089,-0.001500,0.249996,0,0);}
.m140_c00331{transform:matrix(0.181622,0.001090,-0.001500,0.249996,0,0);-ms-transform:matrix(0.181622,0.001090,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.181622,0.001090,-0.001500,0.249996,0,0);}
.m36_c00331{transform:matrix(0.182011,-0.004004,0.005499,0.249940,0,0);-ms-transform:matrix(0.182011,-0.004004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182011,-0.004004,0.005499,0.249940,0,0);}
.m54_c00331{transform:matrix(0.182256,-0.004010,0.005499,0.249940,0,0);-ms-transform:matrix(0.182256,-0.004010,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182256,-0.004010,0.005499,0.249940,0,0);}
.m12b_c00331{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);}
.mfd_c00331{transform:matrix(0.182812,-0.002194,0.003000,0.249982,0,0);-ms-transform:matrix(0.182812,-0.002194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182812,-0.002194,0.003000,0.249982,0,0);}
.m2a_c00331{transform:matrix(0.183061,-0.004027,0.005499,0.249940,0,0);-ms-transform:matrix(0.183061,-0.004027,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183061,-0.004027,0.005499,0.249940,0,0);}
.mc_c00331{transform:matrix(0.183608,-0.004590,0.006248,0.249922,0,0);-ms-transform:matrix(0.183608,-0.004590,0.006248,0.249922,0,0);-webkit-transform:matrix(0.183608,-0.004590,0.006248,0.249922,0,0);}
.m13e_c00331{transform:matrix(0.184247,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184247,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184247,0.001105,-0.001500,0.249996,0,0);}
.me5_c00331{transform:matrix(0.184697,-0.002216,0.003000,0.249982,0,0);-ms-transform:matrix(0.184697,-0.002216,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184697,-0.002216,0.003000,0.249982,0,0);}
.m21_c00331{transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);}
.mc2_c00331{transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);-ms-transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185097,-0.002221,0.003000,0.249982,0,0);}
.md7_c00331{transform:matrix(0.185412,-0.002225,0.003000,0.249982,0,0);-ms-transform:matrix(0.185412,-0.002225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185412,-0.002225,0.003000,0.249982,0,0);}
.m138_c00331{transform:matrix(0.185497,0.001113,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185497,0.001113,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185497,0.001113,-0.001500,0.249996,0,0);}
.mb6_c00331{transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);}
.m32_c00331{transform:matrix(0.185685,-0.004085,0.005499,0.249940,0,0);-ms-transform:matrix(0.185685,-0.004085,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185685,-0.004085,0.005499,0.249940,0,0);}
.m82_c00331{transform:matrix(0.185702,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185702,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185702,-0.002228,0.003000,0.249982,0,0);}
.m49_c00331{transform:matrix(0.185710,-0.004086,0.005499,0.249940,0,0);-ms-transform:matrix(0.185710,-0.004086,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185710,-0.004086,0.005499,0.249940,0,0);}
.med_c00331{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);}
.mef_c00331{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);}
.m65_c00331{transform:matrix(0.186902,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186902,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186902,-0.002243,0.003000,0.249982,0,0);}
.mb5_c00331{transform:matrix(0.186952,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186952,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186952,-0.002243,0.003000,0.249982,0,0);}
.m120_c00331{transform:matrix(0.187027,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.187027,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187027,-0.002244,0.003000,0.249982,0,0);}
.mde_c00331{transform:matrix(0.187167,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187167,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187167,-0.002246,0.003000,0.249982,0,0);}
.mb2_c00331{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);}
.m110_c00331{transform:matrix(0.188356,-0.002260,0.003000,0.249982,0,0);-ms-transform:matrix(0.188356,-0.002260,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188356,-0.002260,0.003000,0.249982,0,0);}
.m9e_c00331{transform:matrix(0.188416,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188416,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188416,-0.002261,0.003000,0.249982,0,0);}
.m31_c00331{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);}
.m68_c00331{transform:matrix(0.188576,-0.002263,0.003000,0.249982,0,0);-ms-transform:matrix(0.188576,-0.002263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188576,-0.002263,0.003000,0.249982,0,0);}
.m12a_c00331{transform:matrix(0.188671,-0.002264,0.003000,0.249982,0,0);-ms-transform:matrix(0.188671,-0.002264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188671,-0.002264,0.003000,0.249982,0,0);}
.m117_c00331{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);}
.m13b_c00331{transform:matrix(0.188817,0.001133,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188817,0.001133,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188817,0.001133,-0.001500,0.249996,0,0);}
.m112_c00331{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);}
.mc7_c00331{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);}
.m62_c00331{transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);-ms-transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);}
.m45_c00331{transform:matrix(0.189254,-0.004164,0.005499,0.249940,0,0);-ms-transform:matrix(0.189254,-0.004164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189254,-0.004164,0.005499,0.249940,0,0);}
.m34_c00331{transform:matrix(0.189529,-0.004170,0.005499,0.249940,0,0);-ms-transform:matrix(0.189529,-0.004170,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189529,-0.004170,0.005499,0.249940,0,0);}
.mb4_c00331{transform:matrix(0.189656,-0.002276,0.003000,0.249982,0,0);-ms-transform:matrix(0.189656,-0.002276,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189656,-0.002276,0.003000,0.249982,0,0);}
.m7b_c00331{transform:matrix(0.189996,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189996,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189996,-0.002280,0.003000,0.249982,0,0);}
.m90_c00331{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);}
.m3b_c00331{transform:matrix(0.190264,-0.004186,0.005499,0.249940,0,0);-ms-transform:matrix(0.190264,-0.004186,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190264,-0.004186,0.005499,0.249940,0,0);}
.m1e_c00331{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);}
.m113_c00331{transform:matrix(0.191221,-0.002295,0.003000,0.249982,0,0);-ms-transform:matrix(0.191221,-0.002295,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191221,-0.002295,0.003000,0.249982,0,0);}
.mbd_c00331{transform:matrix(0.191381,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191381,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191381,-0.002297,0.003000,0.249982,0,0);}
.m52_c00331{transform:matrix(0.191454,-0.004212,0.005499,0.249940,0,0);-ms-transform:matrix(0.191454,-0.004212,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191454,-0.004212,0.005499,0.249940,0,0);}
.m12c_c00331{transform:matrix(0.191726,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191726,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191726,-0.002301,0.003000,0.249982,0,0);}
.m81_c00331{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);}
.mb8_c00331{transform:matrix(0.191951,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191951,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191951,-0.002303,0.003000,0.249982,0,0);}
.m10f_c00331{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);}
.md1_c00331{transform:matrix(0.192546,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192546,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192546,-0.002311,0.003000,0.249982,0,0);}
.m86_c00331{transform:matrix(0.192771,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192771,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192771,-0.002313,0.003000,0.249982,0,0);}
.mbf_c00331{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);}
.md0_c00331{transform:matrix(0.193261,-0.002319,0.003000,0.249982,0,0);-ms-transform:matrix(0.193261,-0.002319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193261,-0.002319,0.003000,0.249982,0,0);}
.m13a_c00331{transform:matrix(0.194067,0.001164,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194067,0.001164,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194067,0.001164,-0.001500,0.249996,0,0);}
.ma7_c00331{transform:matrix(0.194411,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194411,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194411,-0.002333,0.003000,0.249982,0,0);}
.m111_c00331{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);}
.m10c_c00331{transform:matrix(0.194686,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194686,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194686,-0.002336,0.003000,0.249982,0,0);}
.m128_c00331{transform:matrix(0.194731,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194731,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194731,-0.002337,0.003000,0.249982,0,0);}
.mc1_c00331{transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);}
.m48_c00331{transform:matrix(0.194963,-0.004289,0.005499,0.249940,0,0);-ms-transform:matrix(0.194963,-0.004289,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194963,-0.004289,0.005499,0.249940,0,0);}
.m1d_c00331{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);}
.mb3_c00331{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);}
.m130_c00331{transform:matrix(0.195176,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195176,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195176,-0.002342,0.003000,0.249982,0,0);}
.m5e_c00331{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);}
.m10e_c00331{transform:matrix(0.195501,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195501,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195501,-0.002346,0.003000,0.249982,0,0);}
.me3_c00331{transform:matrix(0.195616,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195616,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195616,-0.002347,0.003000,0.249982,0,0);}
.m5a_c00331{transform:matrix(0.195788,-0.004307,0.005499,0.249940,0,0);-ms-transform:matrix(0.195788,-0.004307,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195788,-0.004307,0.005499,0.249940,0,0);}
.m3c_c00331{transform:matrix(0.196128,-0.004315,0.005499,0.249940,0,0);-ms-transform:matrix(0.196128,-0.004315,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196128,-0.004315,0.005499,0.249940,0,0);}
.m80_c00331{transform:matrix(0.196776,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196776,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196776,-0.002361,0.003000,0.249982,0,0);}
.m87_c00331{transform:matrix(0.196926,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196926,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196926,-0.002363,0.003000,0.249982,0,0);}
.m92_c00331{transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);-ms-transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);}
.mc6_c00331{transform:matrix(0.197331,-0.002368,0.003000,0.249982,0,0);-ms-transform:matrix(0.197331,-0.002368,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197331,-0.002368,0.003000,0.249982,0,0);}
.m11a_c00331{transform:matrix(0.197406,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197406,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197406,-0.002369,0.003000,0.249982,0,0);}
.me6_c00331{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);}
.m61_c00331{transform:matrix(0.197896,-0.002375,0.003000,0.249982,0,0);-ms-transform:matrix(0.197896,-0.002375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197896,-0.002375,0.003000,0.249982,0,0);}
.m91_c00331{transform:matrix(0.197966,-0.002376,0.003000,0.249982,0,0);-ms-transform:matrix(0.197966,-0.002376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197966,-0.002376,0.003000,0.249982,0,0);}
.me4_c00331{transform:matrix(0.198131,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198131,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198131,-0.002378,0.003000,0.249982,0,0);}
.m94_c00331{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);}
.mc5_c00331{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);}
.m93_c00331{transform:matrix(0.198776,-0.002385,0.003000,0.249982,0,0);-ms-transform:matrix(0.198776,-0.002385,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198776,-0.002385,0.003000,0.249982,0,0);}
.m13c_c00331{transform:matrix(0.198901,0.001193,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198901,0.001193,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198901,0.001193,-0.001500,0.249996,0,0);}
.mf0_c00331{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);}
.md_c00331{transform:matrix(0.199003,-0.004975,0.006248,0.249922,0,0);-ms-transform:matrix(0.199003,-0.004975,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199003,-0.004975,0.006248,0.249922,0,0);}
.m11b_c00331{transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199886,-0.002399,0.003000,0.249982,0,0);}
.md3_c00331{transform:matrix(0.199956,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199956,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199956,-0.002399,0.003000,0.249982,0,0);}
.m42_c00331{transform:matrix(0.200197,-0.004404,0.005499,0.249940,0,0);-ms-transform:matrix(0.200197,-0.004404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200197,-0.004404,0.005499,0.249940,0,0);}
.m66_c00331{transform:matrix(0.200306,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200306,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200306,-0.002404,0.003000,0.249982,0,0);}
.m11e_c00331{transform:matrix(0.200446,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200446,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200446,-0.002405,0.003000,0.249982,0,0);}
.m119_c00331{transform:matrix(0.200906,-0.002411,0.003000,0.249982,0,0);-ms-transform:matrix(0.200906,-0.002411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200906,-0.002411,0.003000,0.249982,0,0);}
.m7e_c00331{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);}
.m8a_c00331{transform:matrix(0.201450,-0.002417,0.003000,0.249982,0,0);-ms-transform:matrix(0.201450,-0.002417,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201450,-0.002417,0.003000,0.249982,0,0);}
.m75_c00331{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);}
.m76_c00331{transform:matrix(0.201680,-0.002420,0.003000,0.249982,0,0);-ms-transform:matrix(0.201680,-0.002420,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201680,-0.002420,0.003000,0.249982,0,0);}
.mf_c00331{transform:matrix(0.201687,-0.005042,0.006248,0.249922,0,0);-ms-transform:matrix(0.201687,-0.005042,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201687,-0.005042,0.006248,0.249922,0,0);}
.m15_c00331{transform:matrix(0.201744,-0.003833,0.004749,0.249955,0,0);-ms-transform:matrix(0.201744,-0.003833,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201744,-0.003833,0.004749,0.249955,0,0);}
.m10b_c00331{transform:matrix(0.201955,-0.002423,0.003000,0.249982,0,0);-ms-transform:matrix(0.201955,-0.002423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201955,-0.002423,0.003000,0.249982,0,0);}
.mee_c00331{transform:matrix(0.202210,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202210,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202210,-0.002427,0.003000,0.249982,0,0);}
.m29_c00331{transform:matrix(0.202331,-0.004451,0.005499,0.249940,0,0);-ms-transform:matrix(0.202331,-0.004451,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202331,-0.004451,0.005499,0.249940,0,0);}
.m83_c00331{transform:matrix(0.202850,-0.002434,0.003000,0.249982,0,0);-ms-transform:matrix(0.202850,-0.002434,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202850,-0.002434,0.003000,0.249982,0,0);}
.m2e_c00331{transform:matrix(0.202891,-0.004464,0.005499,0.249940,0,0);-ms-transform:matrix(0.202891,-0.004464,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202891,-0.004464,0.005499,0.249940,0,0);}
.m122_c00331{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);}
.m84_c00331{transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);-ms-transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203850,-0.002446,0.003000,0.249982,0,0);}
.m105_c00331{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);}
.m5f_c00331{transform:matrix(0.204725,-0.004504,0.005499,0.249940,0,0);-ms-transform:matrix(0.204725,-0.004504,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204725,-0.004504,0.005499,0.249940,0,0);}
.mb_c00331{transform:matrix(0.205306,-0.005133,0.006248,0.249922,0,0);-ms-transform:matrix(0.205306,-0.005133,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205306,-0.005133,0.006248,0.249922,0,0);}
.ma8_c00331{transform:matrix(0.205465,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205465,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205465,-0.002466,0.003000,0.249982,0,0);}
.m10d_c00331{transform:matrix(0.207375,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207375,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207375,-0.002489,0.003000,0.249982,0,0);}
.mba_c00331{transform:matrix(0.207670,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207670,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207670,-0.002492,0.003000,0.249982,0,0);}
.m50_c00331{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);}
.m7f_c00331{transform:matrix(0.209530,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209530,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209530,-0.002514,0.003000,0.249982,0,0);}
.m4b_c00331{transform:matrix(0.209569,-0.004611,0.005499,0.249940,0,0);-ms-transform:matrix(0.209569,-0.004611,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209569,-0.004611,0.005499,0.249940,0,0);}
.m8b_c00331{transform:matrix(0.209930,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209930,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209930,-0.002519,0.003000,0.249982,0,0);}
.m4e_c00331{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);}
.mca_c00331{transform:matrix(0.209980,-0.002520,0.003000,0.249982,0,0);-ms-transform:matrix(0.209980,-0.002520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209980,-0.002520,0.003000,0.249982,0,0);}
.m13_c00331{transform:matrix(0.210294,-0.005257,0.006248,0.249922,0,0);-ms-transform:matrix(0.210294,-0.005257,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210294,-0.005257,0.006248,0.249922,0,0);}
.m116_c00331{transform:matrix(0.210470,-0.002526,0.003000,0.249982,0,0);-ms-transform:matrix(0.210470,-0.002526,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210470,-0.002526,0.003000,0.249982,0,0);}
.m97_c00331{transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210815,-0.002530,0.003000,0.249982,0,0);}
.mb9_c00331{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);}
.mab_c00331{transform:matrix(0.210890,-0.002531,0.003000,0.249982,0,0);-ms-transform:matrix(0.210890,-0.002531,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210890,-0.002531,0.003000,0.249982,0,0);}
.me2_c00331{transform:matrix(0.211285,-0.002535,0.003000,0.249982,0,0);-ms-transform:matrix(0.211285,-0.002535,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211285,-0.002535,0.003000,0.249982,0,0);}
.mea_c00331{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);}
.m8f_c00331{transform:matrix(0.211775,-0.002541,0.003000,0.249982,0,0);-ms-transform:matrix(0.211775,-0.002541,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211775,-0.002541,0.003000,0.249982,0,0);}
.m108_c00331{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);}
.m6e_c00331{transform:matrix(0.213175,-0.002558,0.003000,0.249982,0,0);-ms-transform:matrix(0.213175,-0.002558,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213175,-0.002558,0.003000,0.249982,0,0);}
.m136_c00331{transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214221,0.001285,-0.001500,0.249996,0,0);}
.m11_c00331{transform:matrix(0.214368,-0.005359,0.006248,0.249922,0,0);-ms-transform:matrix(0.214368,-0.005359,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214368,-0.005359,0.006248,0.249922,0,0);}
.md4_c00331{transform:matrix(0.214440,-0.002573,0.003000,0.249982,0,0);-ms-transform:matrix(0.214440,-0.002573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214440,-0.002573,0.003000,0.249982,0,0);}
.m4c_c00331{transform:matrix(0.214613,-0.004721,0.005499,0.249940,0,0);-ms-transform:matrix(0.214613,-0.004721,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214613,-0.004721,0.005499,0.249940,0,0);}
.m7d_c00331{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);}
.m139_c00331{transform:matrix(0.215286,0.001292,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215286,0.001292,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215286,0.001292,-0.001500,0.249996,0,0);}
.mec_c00331{transform:matrix(0.215384,-0.002585,0.003000,0.249982,0,0);-ms-transform:matrix(0.215384,-0.002585,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215384,-0.002585,0.003000,0.249982,0,0);}
.m10_c00331{transform:matrix(0.215658,-0.005391,0.006248,0.249922,0,0);-ms-transform:matrix(0.215658,-0.005391,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215658,-0.005391,0.006248,0.249922,0,0);}
.m6f_c00331{transform:matrix(0.216724,-0.002601,0.003000,0.249982,0,0);-ms-transform:matrix(0.216724,-0.002601,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216724,-0.002601,0.003000,0.249982,0,0);}
.mbe_c00331{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);}
.m56_c00331{transform:matrix(0.217547,-0.004786,0.005499,0.249940,0,0);-ms-transform:matrix(0.217547,-0.004786,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217547,-0.004786,0.005499,0.249940,0,0);}
.m72_c00331{transform:matrix(0.217974,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.217974,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217974,-0.002616,0.003000,0.249982,0,0);}
.m67_c00331{transform:matrix(0.218184,-0.002618,0.003000,0.249982,0,0);-ms-transform:matrix(0.218184,-0.002618,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218184,-0.002618,0.003000,0.249982,0,0);}
.me8_c00331{transform:matrix(0.218554,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218554,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218554,-0.002623,0.003000,0.249982,0,0);}
.m104_c00331{transform:matrix(0.218719,-0.002625,0.003000,0.249982,0,0);-ms-transform:matrix(0.218719,-0.002625,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218719,-0.002625,0.003000,0.249982,0,0);}
.mf4_c00331{transform:matrix(0.219759,-0.002637,0.003000,0.249982,0,0);-ms-transform:matrix(0.219759,-0.002637,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219759,-0.002637,0.003000,0.249982,0,0);}
.mf3_c00331{transform:matrix(0.220004,-0.002640,0.003000,0.249982,0,0);-ms-transform:matrix(0.220004,-0.002640,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220004,-0.002640,0.003000,0.249982,0,0);}
.m64_c00331{transform:matrix(0.220014,-0.002640,0.003000,0.249982,0,0);-ms-transform:matrix(0.220014,-0.002640,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220014,-0.002640,0.003000,0.249982,0,0);}
.m13f_c00331{transform:matrix(0.220056,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220056,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220056,0.001320,-0.001500,0.249996,0,0);}
.m5c_c00331{transform:matrix(0.220197,-0.004844,0.005499,0.249940,0,0);-ms-transform:matrix(0.220197,-0.004844,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220197,-0.004844,0.005499,0.249940,0,0);}
.mf5_c00331{transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);}
.ma1_c00331{transform:matrix(0.221414,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221414,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221414,-0.002657,0.003000,0.249982,0,0);}
.m12f_c00331{transform:matrix(0.221449,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221449,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221449,-0.002657,0.003000,0.249982,0,0);}
.m1a_c00331{transform:matrix(0.221615,-0.004211,0.004749,0.249955,0,0);-ms-transform:matrix(0.221615,-0.004211,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221615,-0.004211,0.004749,0.249955,0,0);}
.m40_c00331{transform:matrix(0.222666,-0.004899,0.005499,0.249940,0,0);-ms-transform:matrix(0.222666,-0.004899,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222666,-0.004899,0.005499,0.249940,0,0);}
.ma6_c00331{transform:matrix(0.222919,-0.002675,0.003000,0.249982,0,0);-ms-transform:matrix(0.222919,-0.002675,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222919,-0.002675,0.003000,0.249982,0,0);}
.m109_c00331{transform:matrix(0.223054,-0.002677,0.003000,0.249982,0,0);-ms-transform:matrix(0.223054,-0.002677,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223054,-0.002677,0.003000,0.249982,0,0);}
.m60_c00331{transform:matrix(0.223344,-0.002680,0.003000,0.249982,0,0);-ms-transform:matrix(0.223344,-0.002680,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223344,-0.002680,0.003000,0.249982,0,0);}
.m106_c00331{transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);-ms-transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);}
.mb1_c00331{transform:matrix(0.226409,-0.002717,0.003000,0.249982,0,0);-ms-transform:matrix(0.226409,-0.002717,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226409,-0.002717,0.003000,0.249982,0,0);}
.ma0_c00331{transform:matrix(0.226509,-0.002718,0.003000,0.249982,0,0);-ms-transform:matrix(0.226509,-0.002718,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226509,-0.002718,0.003000,0.249982,0,0);}
.m137_c00331{transform:matrix(0.226561,0.001359,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226561,0.001359,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226561,0.001359,-0.001500,0.249996,0,0);}
.m77_c00331{transform:matrix(0.226594,-0.002719,0.003000,0.249982,0,0);-ms-transform:matrix(0.226594,-0.002719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226594,-0.002719,0.003000,0.249982,0,0);}
.maa_c00331{transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);-ms-transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227069,-0.002725,0.003000,0.249982,0,0);}
.mf1_c00331{transform:matrix(0.227334,-0.002728,0.003000,0.249982,0,0);-ms-transform:matrix(0.227334,-0.002728,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227334,-0.002728,0.003000,0.249982,0,0);}
.m59_c00331{transform:matrix(0.227720,-0.005010,0.005499,0.249940,0,0);-ms-transform:matrix(0.227720,-0.005010,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227720,-0.005010,0.005499,0.249940,0,0);}
.mda_c00331{transform:matrix(0.228039,-0.002736,0.003000,0.249982,0,0);-ms-transform:matrix(0.228039,-0.002736,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228039,-0.002736,0.003000,0.249982,0,0);}
.m63_c00331{transform:matrix(0.228394,-0.002741,0.003000,0.249982,0,0);-ms-transform:matrix(0.228394,-0.002741,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228394,-0.002741,0.003000,0.249982,0,0);}
.m129_c00331{transform:matrix(0.228799,-0.002746,0.003000,0.249982,0,0);-ms-transform:matrix(0.228799,-0.002746,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228799,-0.002746,0.003000,0.249982,0,0);}
.m8d_c00331{transform:matrix(0.228919,-0.002747,0.003000,0.249982,0,0);-ms-transform:matrix(0.228919,-0.002747,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228919,-0.002747,0.003000,0.249982,0,0);}
.m70_c00331{transform:matrix(0.229248,-0.002751,0.003000,0.249982,0,0);-ms-transform:matrix(0.229248,-0.002751,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229248,-0.002751,0.003000,0.249982,0,0);}
.m115_c00331{transform:matrix(0.231258,-0.002775,0.003000,0.249982,0,0);-ms-transform:matrix(0.231258,-0.002775,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231258,-0.002775,0.003000,0.249982,0,0);}
.m78_c00331{transform:matrix(0.231598,-0.002779,0.003000,0.249982,0,0);-ms-transform:matrix(0.231598,-0.002779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231598,-0.002779,0.003000,0.249982,0,0);}
.m73_c00331{transform:matrix(0.231728,-0.002781,0.003000,0.249982,0,0);-ms-transform:matrix(0.231728,-0.002781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231728,-0.002781,0.003000,0.249982,0,0);}
.m123_c00331{transform:matrix(0.231868,-0.002782,0.003000,0.249982,0,0);-ms-transform:matrix(0.231868,-0.002782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231868,-0.002782,0.003000,0.249982,0,0);}
.ma3_c00331{transform:matrix(0.232328,-0.002788,0.003000,0.249982,0,0);-ms-transform:matrix(0.232328,-0.002788,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232328,-0.002788,0.003000,0.249982,0,0);}
.m9c_c00331{transform:matrix(0.233488,-0.002802,0.003000,0.249982,0,0);-ms-transform:matrix(0.233488,-0.002802,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233488,-0.002802,0.003000,0.249982,0,0);}
.m6c_c00331{transform:matrix(0.235703,-0.002828,0.003000,0.249982,0,0);-ms-transform:matrix(0.235703,-0.002828,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235703,-0.002828,0.003000,0.249982,0,0);}
.m9d_c00331{transform:matrix(0.235848,-0.002830,0.003000,0.249982,0,0);-ms-transform:matrix(0.235848,-0.002830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235848,-0.002830,0.003000,0.249982,0,0);}
.m2b_c00331{transform:matrix(0.237128,-0.005217,0.005499,0.249940,0,0);-ms-transform:matrix(0.237128,-0.005217,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237128,-0.005217,0.005499,0.249940,0,0);}
.maf_c00331{transform:matrix(0.237238,-0.002847,0.003000,0.249982,0,0);-ms-transform:matrix(0.237238,-0.002847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237238,-0.002847,0.003000,0.249982,0,0);}
.m18_c00331{transform:matrix(0.239192,-0.004545,0.004749,0.249955,0,0);-ms-transform:matrix(0.239192,-0.004545,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239192,-0.004545,0.004749,0.249955,0,0);}
.m2d_c00331{transform:matrix(0.239402,-0.005267,0.005499,0.249940,0,0);-ms-transform:matrix(0.239402,-0.005267,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239402,-0.005267,0.005499,0.249940,0,0);}
.me9_c00331{transform:matrix(0.240233,-0.002883,0.003000,0.249982,0,0);-ms-transform:matrix(0.240233,-0.002883,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240233,-0.002883,0.003000,0.249982,0,0);}
.m71_c00331{transform:matrix(0.240728,-0.002889,0.003000,0.249982,0,0);-ms-transform:matrix(0.240728,-0.002889,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240728,-0.002889,0.003000,0.249982,0,0);}
.m16_c00331{transform:matrix(0.241966,-0.004597,0.004749,0.249955,0,0);-ms-transform:matrix(0.241966,-0.004597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241966,-0.004597,0.004749,0.249955,0,0);}
.mcd_c00331{transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);-ms-transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);}
.ma2_c00331{transform:matrix(0.244062,-0.002929,0.003000,0.249982,0,0);-ms-transform:matrix(0.244062,-0.002929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244062,-0.002929,0.003000,0.249982,0,0);}
.m9a_c00331{transform:matrix(0.244307,-0.002932,0.003000,0.249982,0,0);-ms-transform:matrix(0.244307,-0.002932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244307,-0.002932,0.003000,0.249982,0,0);}
.m11c_c00331{transform:matrix(0.244662,-0.002936,0.003000,0.249982,0,0);-ms-transform:matrix(0.244662,-0.002936,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244662,-0.002936,0.003000,0.249982,0,0);}
.m10a_c00331{transform:matrix(0.246007,-0.002952,0.003000,0.249982,0,0);-ms-transform:matrix(0.246007,-0.002952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246007,-0.002952,0.003000,0.249982,0,0);}
.mf2_c00331{transform:matrix(0.246527,-0.002958,0.003000,0.249982,0,0);-ms-transform:matrix(0.246527,-0.002958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246527,-0.002958,0.003000,0.249982,0,0);}
.m74_c00331{transform:matrix(0.247912,-0.002975,0.003000,0.249982,0,0);-ms-transform:matrix(0.247912,-0.002975,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247912,-0.002975,0.003000,0.249982,0,0);}
.ma9_c00331{transform:matrix(0.254697,-0.003056,0.003000,0.249982,0,0);-ms-transform:matrix(0.254697,-0.003056,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254697,-0.003056,0.003000,0.249982,0,0);}
.m43_c00331{transform:matrix(0.255368,-0.005618,0.005499,0.249940,0,0);-ms-transform:matrix(0.255368,-0.005618,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255368,-0.005618,0.005499,0.249940,0,0);}
.mc8_c00331{transform:matrix(0.255697,-0.003068,0.003000,0.249982,0,0);-ms-transform:matrix(0.255697,-0.003068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255697,-0.003068,0.003000,0.249982,0,0);}
.ma4_c00331{transform:matrix(0.258321,-0.003100,0.003000,0.249982,0,0);-ms-transform:matrix(0.258321,-0.003100,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258321,-0.003100,0.003000,0.249982,0,0);}
.m12e_c00331{transform:matrix(0.258951,-0.003107,0.003000,0.249982,0,0);-ms-transform:matrix(0.258951,-0.003107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258951,-0.003107,0.003000,0.249982,0,0);}
.m6d_c00331{transform:matrix(0.275000,-0.003300,0.003000,0.249982,0,0);-ms-transform:matrix(0.275000,-0.003300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275000,-0.003300,0.003000,0.249982,0,0);}
.m102_c00331{transform:matrix(0.279340,-0.003352,0.003000,0.249982,0,0);-ms-transform:matrix(0.279340,-0.003352,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279340,-0.003352,0.003000,0.249982,0,0);}
.m88_c00331{transform:matrix(0.279660,-0.003356,0.003000,0.249982,0,0);-ms-transform:matrix(0.279660,-0.003356,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279660,-0.003356,0.003000,0.249982,0,0);}
.m8e_c00331{transform:matrix(0.284290,-0.003411,0.003000,0.249982,0,0);-ms-transform:matrix(0.284290,-0.003411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284290,-0.003411,0.003000,0.249982,0,0);}
.m95_c00331{transform:matrix(0.290089,-0.003481,0.003000,0.249982,0,0);-ms-transform:matrix(0.290089,-0.003481,0.003000,0.249982,0,0);-webkit-transform:matrix(0.290089,-0.003481,0.003000,0.249982,0,0);}
.m1f_c00331{transform:matrix(0.294887,-0.005603,0.004749,0.249955,0,0);-ms-transform:matrix(0.294887,-0.005603,0.004749,0.249955,0,0);-webkit-transform:matrix(0.294887,-0.005603,0.004749,0.249955,0,0);}
.m5b_c00331{transform:matrix(0.307001,-0.006754,0.005499,0.249940,0,0);-ms-transform:matrix(0.307001,-0.006754,0.005499,0.249940,0,0);-webkit-transform:matrix(0.307001,-0.006754,0.005499,0.249940,0,0);}
.m58_c00331{transform:matrix(0.312634,-0.006878,0.005499,0.249940,0,0);-ms-transform:matrix(0.312634,-0.006878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.312634,-0.006878,0.005499,0.249940,0,0);}
.m0_c00331{transform:matrix(0.338743,-0.007452,0.005499,0.249940,0,0);-ms-transform:matrix(0.338743,-0.007452,0.005499,0.249940,0,0);-webkit-transform:matrix(0.338743,-0.007452,0.005499,0.249940,0,0);}
.m9_c00331{transform:matrix(0.377524,-0.006795,0.004499,0.249960,0,0);-ms-transform:matrix(0.377524,-0.006795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.377524,-0.006795,0.004499,0.249960,0,0);}
.m17_c00331{transform:matrix(0.417515,-0.007933,0.004749,0.249955,0,0);-ms-transform:matrix(0.417515,-0.007933,0.004749,0.249955,0,0);-webkit-transform:matrix(0.417515,-0.007933,0.004749,0.249955,0,0);}
.m3_c00331{transform:matrix(0.443803,-0.009764,0.005499,0.249940,0,0);-ms-transform:matrix(0.443803,-0.009764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.443803,-0.009764,0.005499,0.249940,0,0);}
.m2_c00331{transform:matrix(0.540534,-0.011892,0.005499,0.249940,0,0);-ms-transform:matrix(0.540534,-0.011892,0.005499,0.249940,0,0);-webkit-transform:matrix(0.540534,-0.011892,0.005499,0.249940,0,0);}
.m126_c00331{transform:matrix(0.675336,-0.008104,0.003000,0.249982,0,0);-ms-transform:matrix(0.675336,-0.008104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.675336,-0.008104,0.003000,0.249982,0,0);}
.m5_c00331{transform:matrix(0.689178,-0.015162,0.005499,0.249940,0,0);-ms-transform:matrix(0.689178,-0.015162,0.005499,0.249940,0,0);-webkit-transform:matrix(0.689178,-0.015162,0.005499,0.249940,0,0);}
.m6_c00331{transform:matrix(0.930150,-0.020463,0.005499,0.249940,0,0);-ms-transform:matrix(0.930150,-0.020463,0.005499,0.249940,0,0);-webkit-transform:matrix(0.930150,-0.020463,0.005499,0.249940,0,0);}
.m142_c00331{transform:matrix(1.018062,0.006108,-0.001500,0.249996,0,0);-ms-transform:matrix(1.018062,0.006108,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.018062,0.006108,-0.001500,0.249996,0,0);}
.m4_c00331{transform:matrix(1.083983,-0.023848,0.005499,0.249940,0,0);-ms-transform:matrix(1.083983,-0.023848,0.005499,0.249940,0,0);-webkit-transform:matrix(1.083983,-0.023848,0.005499,0.249940,0,0);}
.m1_c00331{transform:matrix(1.100464,-0.024210,0.005499,0.249940,0,0);-ms-transform:matrix(1.100464,-0.024210,0.005499,0.249940,0,0);-webkit-transform:matrix(1.100464,-0.024210,0.005499,0.249940,0,0);}
.ma_c00331{transform:matrix(3.027490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.027490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.027490,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.v1_c00331{vertical-align:7.818141px;}
.v2_c00331{vertical-align:21.798392px;}
.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;}
._0_c00331{width:2387.252247px;}
._1_c00331{width:6715.514707px;}
.fc0_c00331{color:transparent;}
.fs2_c00331{font-size:22.050000px;}
.fs17_c00331{font-size:32.550586px;}
.fs16_c00331{font-size:52.500945px;}
.fs4_c00331{font-size:54.609854px;}
.fs0_c00331{font-size:55.663466px;}
.fsf_c00331{font-size:61.954460px;}
.fs13_c00331{font-size:63.004536px;}
.fsb_c00331{font-size:65.104687px;}
.fse_c00331{font-size:66.154763px;}
.fsc_c00331{font-size:67.204838px;}
.fs10_c00331{font-size:68.254914px;}
.fs9_c00331{font-size:68.266515px;}
.fsd_c00331{font-size:69.304989px;}
.fs6_c00331{font-size:69.316769px;}
.fs11_c00331{font-size:70.355065px;}
.fs8_c00331{font-size:70.367023px;}
.fsa_c00331{font-size:71.405141px;}
.fs7_c00331{font-size:71.417277px;}
.fs15_c00331{font-size:72.455216px;}
.fs5_c00331{font-size:72.463076px;}
.fs3_c00331{font-size:72.472637px;}
.fs12_c00331{font-size:74.555367px;}
.fs14_c00331{font-size:76.655519px;}
.fs1_c00331{font-size:123.920070px;}
.y0_c00331{bottom:0.000000px;}
.y145_c00331{bottom:162.811584px;}
.y146_c00331{bottom:168.934317px;}
.y147_c00331{bottom:171.258297px;}
.y144_c00331{bottom:181.130769px;}
.y143_c00331{bottom:181.778211px;}
.y142_c00331{bottom:181.970910px;}
.y141_c00331{bottom:182.375946px;}
.y140_c00331{bottom:182.439072px;}
.y13f_c00331{bottom:182.626938px;}
.y13e_c00331{bottom:182.989872px;}
.y13d_c00331{bottom:183.111210px;}
.y13c_c00331{bottom:183.252222px;}
.y13b_c00331{bottom:183.621618px;}
.y13a_c00331{bottom:183.741480px;}
.y139_c00331{bottom:183.937473px;}
.y138_c00331{bottom:184.042800px;}
.y137_c00331{bottom:184.140000px;}
.y135_c00331{bottom:229.871730px;}
.y136_c00331{bottom:229.871820px;}
.y12a_c00331{bottom:258.039018px;}
.y128_c00331{bottom:258.039090px;}
.y12c_c00331{bottom:258.039288px;}
.y129_c00331{bottom:258.039312px;}
.y12b_c00331{bottom:258.039420px;}
.y12d_c00331{bottom:258.039432px;}
.y12e_c00331{bottom:258.040116px;}
.y12f_c00331{bottom:258.040578px;}
.y130_c00331{bottom:258.041160px;}
.y131_c00331{bottom:258.041262px;}
.y132_c00331{bottom:258.041724px;}
.y133_c00331{bottom:258.041730px;}
.y134_c00331{bottom:258.042036px;}
.y11b_c00331{bottom:279.157140px;}
.y11c_c00331{bottom:279.760092px;}
.y11d_c00331{bottom:279.983520px;}
.y11e_c00331{bottom:280.165434px;}
.y11f_c00331{bottom:280.426122px;}
.y120_c00331{bottom:280.802850px;}
.y121_c00331{bottom:281.065656px;}
.y122_c00331{bottom:281.342196px;}
.y123_c00331{bottom:281.488050px;}
.y124_c00331{bottom:281.902560px;}
.y125_c00331{bottom:282.102996px;}
.y126_c00331{bottom:282.448740px;}
.y127_c00331{bottom:282.655206px;}
.y10f_c00331{bottom:302.106804px;}
.y110_c00331{bottom:302.480910px;}
.y111_c00331{bottom:302.745852px;}
.y112_c00331{bottom:303.003114px;}
.y113_c00331{bottom:303.235368px;}
.y114_c00331{bottom:303.436596px;}
.y115_c00331{bottom:303.792108px;}
.y116_c00331{bottom:304.017492px;}
.y117_c00331{bottom:304.189368px;}
.y118_c00331{bottom:304.635684px;}
.y119_c00331{bottom:304.815624px;}
.y11a_c00331{bottom:305.027418px;}
.y103_c00331{bottom:325.060104px;}
.y104_c00331{bottom:325.192458px;}
.y105_c00331{bottom:325.395156px;}
.y106_c00331{bottom:325.901508px;}
.y107_c00331{bottom:326.060046px;}
.y108_c00331{bottom:326.310948px;}
.y109_c00331{bottom:326.616882px;}
.y10a_c00331{bottom:326.898984px;}
.y10b_c00331{bottom:327.187416px;}
.y10c_c00331{bottom:327.601512px;}
.y10d_c00331{bottom:327.869628px;}
.y10e_c00331{bottom:328.311216px;}
.yfd_c00331{bottom:349.195830px;}
.yfe_c00331{bottom:349.196094px;}
.yfb_c00331{bottom:349.196424px;}
.yff_c00331{bottom:349.196442px;}
.y101_c00331{bottom:349.196448px;}
.yfc_c00331{bottom:349.196568px;}
.y100_c00331{bottom:349.196664px;}
.y102_c00331{bottom:349.196754px;}
.yf9_c00331{bottom:349.196796px;}
.yfa_c00331{bottom:349.197138px;}
.yef_c00331{bottom:370.423830px;}
.yf0_c00331{bottom:370.844832px;}
.yf1_c00331{bottom:371.057970px;}
.yf2_c00331{bottom:371.449236px;}
.yf3_c00331{bottom:371.752392px;}
.yf4_c00331{bottom:372.207408px;}
.yf5_c00331{bottom:372.379464px;}
.yf6_c00331{bottom:372.865446px;}
.yf7_c00331{bottom:373.363752px;}
.yf8_c00331{bottom:373.494366px;}
.ye3_c00331{bottom:393.374502px;}
.ye4_c00331{bottom:393.609312px;}
.ye5_c00331{bottom:394.063128px;}
.ye6_c00331{bottom:394.353858px;}
.ye7_c00331{bottom:394.657692px;}
.ye8_c00331{bottom:394.834860px;}
.ye9_c00331{bottom:395.137170px;}
.yea_c00331{bottom:395.252706px;}
.yeb_c00331{bottom:395.740320px;}
.yec_c00331{bottom:395.920242px;}
.yed_c00331{bottom:396.081624px;}
.yee_c00331{bottom:396.384564px;}
.yd8_c00331{bottom:416.055624px;}
.yd9_c00331{bottom:416.317212px;}
.yda_c00331{bottom:416.577990px;}
.ydb_c00331{bottom:417.016386px;}
.ydc_c00331{bottom:417.184944px;}
.ydd_c00331{bottom:417.562782px;}
.yde_c00331{bottom:417.872196px;}
.ydf_c00331{bottom:418.221294px;}
.ye0_c00331{bottom:418.557888px;}
.ye1_c00331{bottom:418.756728px;}
.ye2_c00331{bottom:419.078046px;}
.ycd_c00331{bottom:439.006848px;}
.yce_c00331{bottom:439.392018px;}
.ycf_c00331{bottom:439.739658px;}
.yd0_c00331{bottom:439.908396px;}
.yd1_c00331{bottom:440.314998px;}
.yd2_c00331{bottom:440.861322px;}
.yd3_c00331{bottom:441.157152px;}
.yd4_c00331{bottom:441.329424px;}
.yd5_c00331{bottom:442.017534px;}
.yd6_c00331{bottom:442.294704px;}
.yd7_c00331{bottom:442.526154px;}
.yc1_c00331{bottom:461.688576px;}
.yc2_c00331{bottom:462.149196px;}
.yc3_c00331{bottom:462.345000px;}
.yc4_c00331{bottom:462.505332px;}
.yc5_c00331{bottom:462.937278px;}
.yc6_c00331{bottom:463.259178px;}
.yc7_c00331{bottom:463.585386px;}
.yc8_c00331{bottom:464.010738px;}
.yc9_c00331{bottom:464.326260px;}
.yca_c00331{bottom:464.679222px;}
.ycb_c00331{bottom:464.864574px;}
.ycc_c00331{bottom:465.149754px;}
.yb6_c00331{bottom:484.370412px;}
.yb7_c00331{bottom:484.735218px;}
.yb8_c00331{bottom:484.966824px;}
.yb9_c00331{bottom:485.612394px;}
.yba_c00331{bottom:486.182844px;}
.ybb_c00331{bottom:486.516750px;}
.ybc_c00331{bottom:487.298112px;}
.ybd_c00331{bottom:487.517076px;}
.ybe_c00331{bottom:487.828386px;}
.ybf_c00331{bottom:488.100294px;}
.yc0_c00331{bottom:488.470710px;}
.yab_c00331{bottom:506.781330px;}
.yac_c00331{bottom:507.791430px;}
.yad_c00331{bottom:508.059048px;}
.yae_c00331{bottom:508.276014px;}
.yaf_c00331{bottom:508.956420px;}
.yb0_c00331{bottom:509.279958px;}
.yb1_c00331{bottom:509.740518px;}
.yb2_c00331{bottom:510.093444px;}
.yb3_c00331{bottom:510.455742px;}
.yb4_c00331{bottom:510.922998px;}
.yb5_c00331{bottom:511.777596px;}
.ya0_c00331{bottom:529.462998px;}
.ya1_c00331{bottom:530.104410px;}
.ya2_c00331{bottom:530.508414px;}
.ya3_c00331{bottom:530.870352px;}
.ya4_c00331{bottom:531.407832px;}
.ya5_c00331{bottom:532.038522px;}
.ya6_c00331{bottom:532.127070px;}
.ya7_c00331{bottom:532.519362px;}
.ya8_c00331{bottom:533.133354px;}
.ya9_c00331{bottom:533.677602px;}
.yaa_c00331{bottom:534.252942px;}
.y95_c00331{bottom:552.414264px;}
.y96_c00331{bottom:552.961032px;}
.y97_c00331{bottom:553.594044px;}
.y98_c00331{bottom:553.957080px;}
.y99_c00331{bottom:554.743014px;}
.y9a_c00331{bottom:555.029076px;}
.y9b_c00331{bottom:555.390942px;}
.y9c_c00331{bottom:555.940770px;}
.y9d_c00331{bottom:556.136142px;}
.y9e_c00331{bottom:556.556418px;}
.y9f_c00331{bottom:557.393364px;}
.y89_c00331{bottom:575.635866px;}
.y8a_c00331{bottom:575.888136px;}
.y8b_c00331{bottom:576.627774px;}
.y8c_c00331{bottom:576.892392px;}
.y8d_c00331{bottom:577.204584px;}
.y8e_c00331{bottom:578.127444px;}
.y8f_c00331{bottom:578.389362px;}
.y90_c00331{bottom:578.671998px;}
.y91_c00331{bottom:579.128838px;}
.y92_c00331{bottom:579.598836px;}
.y93_c00331{bottom:580.657614px;}
.y94_c00331{bottom:581.063316px;}
.y7e_c00331{bottom:598.317810px;}
.y7f_c00331{bottom:598.739244px;}
.y80_c00331{bottom:600.060984px;}
.y81_c00331{bottom:600.450036px;}
.y82_c00331{bottom:601.360530px;}
.y83_c00331{bottom:601.915110px;}
.y84_c00331{bottom:602.183544px;}
.y85_c00331{bottom:602.377890px;}
.y86_c00331{bottom:602.608110px;}
.y87_c00331{bottom:603.677310px;}
.y88_c00331{bottom:603.991482px;}
.y76_c00331{bottom:620.459010px;}
.y77_c00331{bottom:621.922230px;}
.y78_c00331{bottom:622.112856px;}
.y79_c00331{bottom:622.947450px;}
.y7a_c00331{bottom:623.426346px;}
.y7b_c00331{bottom:624.310290px;}
.y7c_c00331{bottom:624.640458px;}
.y7d_c00331{bottom:625.536180px;}
.y6b_c00331{bottom:643.408224px;}
.y6c_c00331{bottom:643.790934px;}
.y6d_c00331{bottom:644.534760px;}
.y6e_c00331{bottom:644.724882px;}
.y6f_c00331{bottom:644.945520px;}
.y70_c00331{bottom:645.998934px;}
.y71_c00331{bottom:646.602534px;}
.y72_c00331{bottom:647.456214px;}
.y73_c00331{bottom:648.624576px;}
.y74_c00331{bottom:648.925824px;}
.y75_c00331{bottom:649.610106px;}
.y60_c00331{bottom:665.821500px;}
.y61_c00331{bottom:666.171978px;}
.y62_c00331{bottom:666.803310px;}
.y63_c00331{bottom:666.959046px;}
.y64_c00331{bottom:667.474710px;}
.y65_c00331{bottom:668.424120px;}
.y66_c00331{bottom:668.731866px;}
.y67_c00331{bottom:669.473808px;}
.y68_c00331{bottom:669.956892px;}
.y69_c00331{bottom:670.384032px;}
.y6a_c00331{bottom:671.324388px;}
.y55_c00331{bottom:684.708906px;}
.y56_c00331{bottom:685.137492px;}
.y57_c00331{bottom:686.541201px;}
.y58_c00331{bottom:687.700506px;}
.y59_c00331{bottom:688.243068px;}
.y5a_c00331{bottom:689.263878px;}
.y5b_c00331{bottom:690.889833px;}
.y5c_c00331{bottom:691.510800px;}
.y5d_c00331{bottom:692.573601px;}
.y5e_c00331{bottom:693.573870px;}
.y5f_c00331{bottom:695.192400px;}
.y4a_c00331{bottom:710.631141px;}
.y4b_c00331{bottom:711.089286px;}
.y4c_c00331{bottom:713.316114px;}
.y4d_c00331{bottom:713.767344px;}
.y4e_c00331{bottom:714.040314px;}
.y4f_c00331{bottom:714.902625px;}
.y50_c00331{bottom:715.099056px;}
.y51_c00331{bottom:715.931316px;}
.y52_c00331{bottom:716.619144px;}
.y53_c00331{bottom:718.002525px;}
.y54_c00331{bottom:718.461231px;}
.y3f_c00331{bottom:733.586082px;}
.y40_c00331{bottom:734.539701px;}
.y41_c00331{bottom:735.000933px;}
.y42_c00331{bottom:735.571263px;}
.y43_c00331{bottom:736.095105px;}
.y44_c00331{bottom:737.018046px;}
.y45_c00331{bottom:738.432105px;}
.y46_c00331{bottom:739.178517px;}
.y47_c00331{bottom:739.939056px;}
.y48_c00331{bottom:741.097671px;}
.y49_c00331{bottom:742.252770px;}
.y33_c00331{bottom:755.731797px;}
.y34_c00331{bottom:756.717738px;}
.y35_c00331{bottom:757.359885px;}
.y36_c00331{bottom:757.846602px;}
.y37_c00331{bottom:759.100173px;}
.y38_c00331{bottom:760.265040px;}
.y39_c00331{bottom:761.091030px;}
.y3a_c00331{bottom:762.457032px;}
.y3b_c00331{bottom:763.004040px;}
.y3c_c00331{bottom:764.493066px;}
.y3d_c00331{bottom:765.309387px;}
.y3e_c00331{bottom:765.992058px;}
.y29_c00331{bottom:778.149000px;}
.y2a_c00331{bottom:780.167709px;}
.y2b_c00331{bottom:782.970696px;}
.y2c_c00331{bottom:783.390753px;}
.y2d_c00331{bottom:783.880836px;}
.y2e_c00331{bottom:785.074743px;}
.y2f_c00331{bottom:786.084807px;}
.y30_c00331{bottom:786.886641px;}
.y31_c00331{bottom:787.312638px;}
.y32_c00331{bottom:788.342370px;}
.y28_c00331{bottom:794.467500px;}
.y1c_c00331{bottom:800.555421px;}
.y1d_c00331{bottom:801.011709px;}
.y1e_c00331{bottom:802.795781px;}
.y1f_c00331{bottom:804.547728px;}
.y20_c00331{bottom:805.103940px;}
.y21_c00331{bottom:805.937822px;}
.y22_c00331{bottom:806.373735px;}
.y23_c00331{bottom:808.081467px;}
.y24_c00331{bottom:808.739741px;}
.y25_c00331{bottom:809.263430px;}
.y26_c00331{bottom:810.583272px;}
.y16_c00331{bottom:811.617000px;}
.y27_c00331{bottom:811.671969px;}
.y17_c00331{bottom:813.183417px;}
.y18_c00331{bottom:814.095503px;}
.y19_c00331{bottom:815.337333px;}
.y1a_c00331{bottom:817.750229px;}
.y1b_c00331{bottom:818.380136px;}
.yc_c00331{bottom:823.507500px;}
.yd_c00331{bottom:824.183963px;}
.ye_c00331{bottom:825.296362px;}
.yf_c00331{bottom:826.066312px;}
.y10_c00331{bottom:826.880775px;}
.y11_c00331{bottom:827.883338px;}
.y12_c00331{bottom:829.201050px;}
.y13_c00331{bottom:831.266250px;}
.y14_c00331{bottom:832.177875px;}
.y15_c00331{bottom:834.484312px;}
.yb_c00331{bottom:857.244000px;}
.y8_c00331{bottom:871.023000px;}
.y9_c00331{bottom:872.701617px;}
.ya_c00331{bottom:873.262164px;}
.y1_c00331{bottom:911.257500px;}
.y2_c00331{bottom:911.986305px;}
.y3_c00331{bottom:913.958682px;}
.y4_c00331{bottom:915.598518px;}
.y5_c00331{bottom:916.531527px;}
.y6_c00331{bottom:919.269867px;}
.y7_c00331{bottom:920.446086px;}
.h4_c00331{height:22.050000px;}
.h1a_c00331{height:32.550586px;}
.h18_c00331{height:52.500945px;}
.h6_c00331{height:54.609854px;}
.h2_c00331{height:55.663466px;}
.h11_c00331{height:61.954460px;}
.h19_c00331{height:62.167119px;}
.h15_c00331{height:63.004536px;}
.hd_c00331{height:65.104687px;}
.h10_c00331{height:66.154763px;}
.he_c00331{height:67.204838px;}
.h12_c00331{height:68.254914px;}
.hb_c00331{height:68.266515px;}
.hf_c00331{height:69.304989px;}
.h8_c00331{height:69.316769px;}
.h13_c00331{height:70.355065px;}
.ha_c00331{height:70.367023px;}
.hc_c00331{height:71.405141px;}
.h9_c00331{height:71.417277px;}
.h17_c00331{height:72.455216px;}
.h7_c00331{height:72.463076px;}
.h5_c00331{height:72.472637px;}
.h14_c00331{height:74.555367px;}
.h16_c00331{height:76.655519px;}
.h3_c00331{height:123.920070px;}
.h0_c00331{height:1008.450000px;}
.h1_c00331{height:1008.750000px;}
.w0_c00331{width:696.000000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:109.695000px;}
.x2_c00331{left:142.822500px;}
.x5a_c00331{left:143.863800px;}
.x73_c00331{left:148.376220px;}
.x8d_c00331{left:150.994290px;}
.x61_c00331{left:152.205852px;}
.x1b_c00331{left:155.570909px;}
.x64_c00331{left:156.747162px;}
.x8_c00331{left:157.879500px;}
.x7f_c00331{left:159.180792px;}
.xad_c00331{left:160.479576px;}
.xb3_c00331{left:162.270714px;}
.xc_c00331{left:173.934000px;}
.xba_c00331{left:176.308500px;}
.x6c_c00331{left:177.504768px;}
.x42_c00331{left:179.588952px;}
.x52_c00331{left:184.326000px;}
.xa2_c00331{left:189.809940px;}
.x65_c00331{left:191.866662px;}
.xbb_c00331{left:193.863000px;}
.x74_c00331{left:198.065814px;}
.x8e_c00331{left:199.094094px;}
.xd_c00331{left:200.992500px;}
.x39_c00331{left:205.718433px;}
.xa6_c00331{left:207.724602px;}
.x15_c00331{left:210.121500px;}
.x89_c00331{left:214.754802px;}
.x7a_c00331{left:216.374190px;}
.x85_c00331{left:223.701318px;}
.xbc_c00331{left:226.528500px;}
.x30_c00331{left:230.350548px;}
.x3_c00331{left:232.476000px;}
.x4b_c00331{left:235.288194px;}
.x53_c00331{left:236.937000px;}
.x6d_c00331{left:239.141268px;}
.x8f_c00331{left:242.566182px;}
.xe_c00331{left:245.488500px;}
.x27_c00331{left:246.849000px;}
.x54_c00331{left:249.915000px;}
.x9_c00331{left:251.136000px;}
.x31_c00331{left:252.474048px;}
.x75_c00331{left:255.567498px;}
.x96_c00331{left:256.863780px;}
.x3a_c00331{left:260.043030px;}
.x5b_c00331{left:262.095378px;}
.x90_c00331{left:263.628690px;}
.x62_c00331{left:264.764502px;}
.xb4_c00331{left:272.439072px;}
.x80_c00331{left:275.283678px;}
.xf_c00331{left:276.286500px;}
.x25_c00331{left:278.640000px;}
.xa7_c00331{left:280.049940px;}
.xa_c00331{left:282.277500px;}
.x4c_c00331{left:285.664572px;}
.x3b_c00331{left:287.605845px;}
.xa3_c00331{left:290.526948px;}
.x16_c00331{left:292.564500px;}
.x81_c00331{left:294.989412px;}
.x43_c00331{left:296.770674px;}
.x97_c00331{left:298.468782px;}
.x66_c00331{left:302.011662px;}
.x9d_c00331{left:303.275790px;}
.xae_c00331{left:304.387698px;}
.x4_c00331{left:307.014000px;}
.x10_c00331{left:308.865000px;}
.x8a_c00331{left:313.308036px;}
.x1c_c00331{left:315.305726px;}
.x26_c00331{left:316.980000px;}
.x44_c00331{left:320.487225px;}
.xbd_c00331{left:331.573500px;}
.x45_c00331{left:334.873182px;}
.x3c_c00331{left:336.174546px;}
.x1d_c00331{left:337.551189px;}
.xa8_c00331{left:338.673468px;}
.x17_c00331{left:340.569000px;}
.x98_c00331{left:341.915892px;}
.x5c_c00331{left:343.128906px;}
.xac_c00331{left:344.627778px;}
.x9e_c00331{left:346.541382px;}
.x5_c00331{left:349.423500px;}
.xbe_c00331{left:351.796500px;}
.x4d_c00331{left:353.589054px;}
.xb5_c00331{left:355.064970px;}
.x82_c00331{left:356.815650px;}
.x86_c00331{left:358.916196px;}
.x76_c00331{left:360.066258px;}
.x32_c00331{left:362.403048px;}
.x6e_c00331{left:364.113768px;}
.x99_c00331{left:367.306422px;}
.x1e_c00331{left:370.935899px;}
.x55_c00331{left:372.004500px;}
.x28_c00331{left:374.257500px;}
.x94_c00331{left:375.403392px;}
.x46_c00331{left:380.276685px;}
.x91_c00331{left:382.669896px;}
.x6f_c00331{left:385.940268px;}
.x1f_c00331{left:388.350404px;}
.x5d_c00331{left:389.553348px;}
.x47_c00331{left:390.637878px;}
.x7b_c00331{left:392.302314px;}
.x29_c00331{left:393.351000px;}
.x87_c00331{left:395.993028px;}
.x56_c00331{left:397.650000px;}
.x33_c00331{left:399.948048px;}
.x11_c00331{left:401.676000px;}
.xb6_c00331{left:404.209044px;}
.x18_c00331{left:405.928500px;}
.x70_c00331{left:409.493268px;}
.x3d_c00331{left:410.613963px;}
.xbf_c00331{left:412.285500px;}
.x2a_c00331{left:415.627500px;}
.x77_c00331{left:418.935960px;}
.xa9_c00331{left:422.681508px;}
.x4e_c00331{left:424.290003px;}
.x9a_c00331{left:427.005504px;}
.x83_c00331{left:428.158014px;}
.xaf_c00331{left:432.913902px;}
.x48_c00331{left:434.470782px;}
.x7c_c00331{left:435.997836px;}
.xb_c00331{left:438.750000px;}
.x92_c00331{left:441.306222px;}
.xc0_c00331{left:443.596500px;}
.x63_c00331{left:448.392288px;}
.x3e_c00331{left:449.862537px;}
.x4f_c00331{left:451.287909px;}
.xc1_c00331{left:454.117500px;}
.x5e_c00331{left:455.192556px;}
.x20_c00331{left:456.670623px;}
.x57_c00331{left:459.478500px;}
.x34_c00331{left:462.039048px;}
.xaa_c00331{left:463.969992px;}
.xa4_c00331{left:466.310256px;}
.x78_c00331{left:468.880554px;}
.x2b_c00331{left:469.896000px;}
.xb0_c00331{left:472.336260px;}
.x6_c00331{left:473.893500px;}
.x67_c00331{left:478.891662px;}
.x21_c00331{left:483.024131px;}
.x12_c00331{left:484.284000px;}
.x35_c00331{left:486.903048px;}
.x3f_c00331{left:489.889677px;}
.x7d_c00331{left:491.789502px;}
.x84_c00331{left:493.135788px;}
.x68_c00331{left:495.087162px;}
.x50_c00331{left:497.482386px;}
.x58_c00331{left:499.735500px;}
.x22_c00331{left:503.952737px;}
.x9f_c00331{left:505.555422px;}
.x88_c00331{left:507.232542px;}
.x69_c00331{left:514.272162px;}
.x2c_c00331{left:515.808000px;}
.x95_c00331{left:517.712442px;}
.x13_c00331{left:520.749000px;}
.x9b_c00331{left:522.264210px;}
.x79_c00331{left:524.810220px;}
.x7_c00331{left:527.358000px;}
.x8b_c00331{left:530.980476px;}
.x19_c00331{left:532.923000px;}
.x59_c00331{left:535.330500px;}
.x51_c00331{left:540.970929px;}
.x49_c00331{left:543.487476px;}
.x5f_c00331{left:545.054976px;}
.xb7_c00331{left:548.670816px;}
.x40_c00331{left:550.876203px;}
.x2d_c00331{left:552.255000px;}
.x36_c00331{left:554.586048px;}
.x23_c00331{left:556.754223px;}
.x93_c00331{left:562.002018px;}
.x1a_c00331{left:566.076000px;}
.x4a_c00331{left:567.612060px;}
.xa5_c00331{left:569.457606px;}
.x2e_c00331{left:571.618500px;}
.x71_c00331{left:574.961268px;}
.xa0_c00331{left:576.835206px;}
.xb1_c00331{left:580.867758px;}
.x9c_c00331{left:588.461670px;}
.x8c_c00331{left:589.819302px;}
.x37_c00331{left:591.691548px;}
.x7e_c00331{left:593.589726px;}
.xa1_c00331{left:595.470822px;}
.x24_c00331{left:600.312264px;}
.x6a_c00331{left:603.372162px;}
.x72_c00331{left:608.769768px;}
.x41_c00331{left:611.634696px;}
.x14_c00331{left:613.006500px;}
.xb8_c00331{left:614.555802px;}
.x2f_c00331{left:618.424500px;}
.x60_c00331{left:620.931576px;}
.x38_c00331{left:622.722048px;}
.xab_c00331{left:624.629640px;}
.x6b_c00331{left:629.553162px;}
.xb2_c00331{left:659.764992px;}
.xc2_c00331{left:661.647000px;}
.xc3_c00331{left:666.999960px;}
.xb9_c00331{left:672.339618px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:6.949458pt;}
.v2_c00331{vertical-align:19.376349pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
._0_c00331{width:2122.001998pt;}
._1_c00331{width:5969.346407pt;}
.fs2_c00331{font-size:19.600000pt;}
.fs17_c00331{font-size:28.933854pt;}
.fs16_c00331{font-size:46.667507pt;}
.fs4_c00331{font-size:48.542093pt;}
.fs0_c00331{font-size:49.478636pt;}
.fsf_c00331{font-size:55.070631pt;}
.fs13_c00331{font-size:56.004032pt;}
.fsb_c00331{font-size:57.870833pt;}
.fse_c00331{font-size:58.804233pt;}
.fsc_c00331{font-size:59.737634pt;}
.fs10_c00331{font-size:60.671035pt;}
.fs9_c00331{font-size:60.681346pt;}
.fsd_c00331{font-size:61.604435pt;}
.fs6_c00331{font-size:61.614905pt;}
.fs11_c00331{font-size:62.537836pt;}
.fs8_c00331{font-size:62.548465pt;}
.fsa_c00331{font-size:63.471236pt;}
.fs7_c00331{font-size:63.482024pt;}
.fs15_c00331{font-size:64.404637pt;}
.fs5_c00331{font-size:64.411623pt;}
.fs3_c00331{font-size:64.420122pt;}
.fs12_c00331{font-size:66.271438pt;}
.fs14_c00331{font-size:68.138239pt;}
.fs1_c00331{font-size:110.151173pt;}
.y0_c00331{bottom:0.000000pt;}
.y145_c00331{bottom:144.721408pt;}
.y146_c00331{bottom:150.163837pt;}
.y147_c00331{bottom:152.229597pt;}
.y144_c00331{bottom:161.005128pt;}
.y143_c00331{bottom:161.580632pt;}
.y142_c00331{bottom:161.751920pt;}
.y141_c00331{bottom:162.111952pt;}
.y140_c00331{bottom:162.168064pt;}
.y13f_c00331{bottom:162.335056pt;}
.y13e_c00331{bottom:162.657664pt;}
.y13d_c00331{bottom:162.765520pt;}
.y13c_c00331{bottom:162.890864pt;}
.y13b_c00331{bottom:163.219216pt;}
.y13a_c00331{bottom:163.325760pt;}
.y139_c00331{bottom:163.499976pt;}
.y138_c00331{bottom:163.593600pt;}
.y137_c00331{bottom:163.680000pt;}
.y135_c00331{bottom:204.330427pt;}
.y136_c00331{bottom:204.330507pt;}
.y12a_c00331{bottom:229.368016pt;}
.y128_c00331{bottom:229.368080pt;}
.y12c_c00331{bottom:229.368256pt;}
.y129_c00331{bottom:229.368277pt;}
.y12b_c00331{bottom:229.368373pt;}
.y12d_c00331{bottom:229.368384pt;}
.y12e_c00331{bottom:229.368992pt;}
.y12f_c00331{bottom:229.369403pt;}
.y130_c00331{bottom:229.369920pt;}
.y131_c00331{bottom:229.370011pt;}
.y132_c00331{bottom:229.370421pt;}
.y133_c00331{bottom:229.370427pt;}
.y134_c00331{bottom:229.370699pt;}
.y11b_c00331{bottom:248.139680pt;}
.y11c_c00331{bottom:248.675637pt;}
.y11d_c00331{bottom:248.874240pt;}
.y11e_c00331{bottom:249.035941pt;}
.y11f_c00331{bottom:249.267664pt;}
.y120_c00331{bottom:249.602533pt;}
.y121_c00331{bottom:249.836139pt;}
.y122_c00331{bottom:250.081952pt;}
.y123_c00331{bottom:250.211600pt;}
.y124_c00331{bottom:250.580053pt;}
.y125_c00331{bottom:250.758219pt;}
.y126_c00331{bottom:251.065547pt;}
.y127_c00331{bottom:251.249072pt;}
.y10f_c00331{bottom:268.539381pt;}
.y110_c00331{bottom:268.871920pt;}
.y111_c00331{bottom:269.107424pt;}
.y112_c00331{bottom:269.336101pt;}
.y113_c00331{bottom:269.542549pt;}
.y114_c00331{bottom:269.721419pt;}
.y115_c00331{bottom:270.037429pt;}
.y116_c00331{bottom:270.237771pt;}
.y117_c00331{bottom:270.390549pt;}
.y118_c00331{bottom:270.787275pt;}
.y119_c00331{bottom:270.947221pt;}
.y11a_c00331{bottom:271.135483pt;}
.y103_c00331{bottom:288.942315pt;}
.y104_c00331{bottom:289.059963pt;}
.y105_c00331{bottom:289.240139pt;}
.y106_c00331{bottom:289.690229pt;}
.y107_c00331{bottom:289.831152pt;}
.y108_c00331{bottom:290.054176pt;}
.y109_c00331{bottom:290.326117pt;}
.y10a_c00331{bottom:290.576875pt;}
.y10b_c00331{bottom:290.833259pt;}
.y10c_c00331{bottom:291.201344pt;}
.y10d_c00331{bottom:291.439669pt;}
.y10e_c00331{bottom:291.832192pt;}
.yfd_c00331{bottom:310.396293pt;}
.yfe_c00331{bottom:310.396528pt;}
.yfb_c00331{bottom:310.396821pt;}
.yff_c00331{bottom:310.396837pt;}
.y101_c00331{bottom:310.396843pt;}
.yfc_c00331{bottom:310.396949pt;}
.y100_c00331{bottom:310.397035pt;}
.y102_c00331{bottom:310.397115pt;}
.yf9_c00331{bottom:310.397152pt;}
.yfa_c00331{bottom:310.397456pt;}
.yef_c00331{bottom:329.265627pt;}
.yf0_c00331{bottom:329.639851pt;}
.yf1_c00331{bottom:329.829307pt;}
.yf2_c00331{bottom:330.177099pt;}
.yf3_c00331{bottom:330.446571pt;}
.yf4_c00331{bottom:330.851029pt;}
.yf5_c00331{bottom:331.003968pt;}
.yf6_c00331{bottom:331.435952pt;}
.yf7_c00331{bottom:331.878891pt;}
.yf8_c00331{bottom:331.994992pt;}
.ye3_c00331{bottom:349.666224pt;}
.ye4_c00331{bottom:349.874944pt;}
.ye5_c00331{bottom:350.278336pt;}
.ye6_c00331{bottom:350.536763pt;}
.ye7_c00331{bottom:350.806837pt;}
.ye8_c00331{bottom:350.964320pt;}
.ye9_c00331{bottom:351.233040pt;}
.yea_c00331{bottom:351.335739pt;}
.yeb_c00331{bottom:351.769173pt;}
.yec_c00331{bottom:351.929104pt;}
.yed_c00331{bottom:352.072555pt;}
.yee_c00331{bottom:352.341835pt;}
.yd8_c00331{bottom:369.827221pt;}
.yd9_c00331{bottom:370.059744pt;}
.yda_c00331{bottom:370.291547pt;}
.ydb_c00331{bottom:370.681232pt;}
.ydc_c00331{bottom:370.831061pt;}
.ydd_c00331{bottom:371.166917pt;}
.yde_c00331{bottom:371.441952pt;}
.ydf_c00331{bottom:371.752261pt;}
.ye0_c00331{bottom:372.051456pt;}
.ye1_c00331{bottom:372.228203pt;}
.ye2_c00331{bottom:372.513819pt;}
.ycd_c00331{bottom:390.228309pt;}
.yce_c00331{bottom:390.570683pt;}
.ycf_c00331{bottom:390.879696pt;}
.yd0_c00331{bottom:391.029685pt;}
.yd1_c00331{bottom:391.391109pt;}
.yd2_c00331{bottom:391.876731pt;}
.yd3_c00331{bottom:392.139691pt;}
.yd4_c00331{bottom:392.292821pt;}
.yd5_c00331{bottom:392.904475pt;}
.yd6_c00331{bottom:393.150848pt;}
.yd7_c00331{bottom:393.356581pt;}
.yc1_c00331{bottom:410.389845pt;}
.yc2_c00331{bottom:410.799285pt;}
.yc3_c00331{bottom:410.973333pt;}
.yc4_c00331{bottom:411.115851pt;}
.yc5_c00331{bottom:411.499803pt;}
.yc6_c00331{bottom:411.785936pt;}
.yc7_c00331{bottom:412.075899pt;}
.yc8_c00331{bottom:412.453989pt;}
.yc9_c00331{bottom:412.734453pt;}
.yca_c00331{bottom:413.048197pt;}
.ycb_c00331{bottom:413.212955pt;}
.ycc_c00331{bottom:413.466448pt;}
.yb6_c00331{bottom:430.551477pt;}
.yb7_c00331{bottom:430.875749pt;}
.yb8_c00331{bottom:431.081621pt;}
.yb9_c00331{bottom:431.655461pt;}
.yba_c00331{bottom:432.162528pt;}
.ybb_c00331{bottom:432.459333pt;}
.ybc_c00331{bottom:433.153877pt;}
.ybd_c00331{bottom:433.348512pt;}
.ybe_c00331{bottom:433.625232pt;}
.ybf_c00331{bottom:433.866928pt;}
.yc0_c00331{bottom:434.196187pt;}
.yab_c00331{bottom:450.472293pt;}
.yac_c00331{bottom:451.370160pt;}
.yad_c00331{bottom:451.608043pt;}
.yae_c00331{bottom:451.800901pt;}
.yaf_c00331{bottom:452.405707pt;}
.yb0_c00331{bottom:452.693296pt;}
.yb1_c00331{bottom:453.102683pt;}
.yb2_c00331{bottom:453.416395pt;}
.yb3_c00331{bottom:453.738437pt;}
.yb4_c00331{bottom:454.153776pt;}
.yb5_c00331{bottom:454.913419pt;}
.ya0_c00331{bottom:470.633776pt;}
.ya1_c00331{bottom:471.203920pt;}
.ya2_c00331{bottom:471.563035pt;}
.ya3_c00331{bottom:471.884757pt;}
.ya4_c00331{bottom:472.362517pt;}
.ya5_c00331{bottom:472.923131pt;}
.ya6_c00331{bottom:473.001840pt;}
.ya7_c00331{bottom:473.350544pt;}
.ya8_c00331{bottom:473.896315pt;}
.ya9_c00331{bottom:474.380091pt;}
.yaa_c00331{bottom:474.891504pt;}
.y95_c00331{bottom:491.034901pt;}
.y96_c00331{bottom:491.520917pt;}
.y97_c00331{bottom:492.083595pt;}
.y98_c00331{bottom:492.406293pt;}
.y99_c00331{bottom:493.104901pt;}
.y9a_c00331{bottom:493.359179pt;}
.y9b_c00331{bottom:493.680837pt;}
.y9c_c00331{bottom:494.169573pt;}
.y9d_c00331{bottom:494.343237pt;}
.y9e_c00331{bottom:494.716816pt;}
.y9f_c00331{bottom:495.460768pt;}
.y89_c00331{bottom:511.676325pt;}
.y8a_c00331{bottom:511.900565pt;}
.y8b_c00331{bottom:512.558021pt;}
.y8c_c00331{bottom:512.793237pt;}
.y8d_c00331{bottom:513.070741pt;}
.y8e_c00331{bottom:513.891061pt;}
.y8f_c00331{bottom:514.123877pt;}
.y90_c00331{bottom:514.375109pt;}
.y91_c00331{bottom:514.781189pt;}
.y92_c00331{bottom:515.198965pt;}
.y93_c00331{bottom:516.140101pt;}
.y94_c00331{bottom:516.500725pt;}
.y7e_c00331{bottom:531.838053pt;}
.y7f_c00331{bottom:532.212661pt;}
.y80_c00331{bottom:533.387541pt;}
.y81_c00331{bottom:533.733365pt;}
.y82_c00331{bottom:534.542693pt;}
.y83_c00331{bottom:535.035653pt;}
.y84_c00331{bottom:535.274261pt;}
.y85_c00331{bottom:535.447013pt;}
.y86_c00331{bottom:535.651653pt;}
.y87_c00331{bottom:536.602053pt;}
.y88_c00331{bottom:536.881317pt;}
.y76_c00331{bottom:551.519120pt;}
.y77_c00331{bottom:552.819760pt;}
.y78_c00331{bottom:552.989205pt;}
.y79_c00331{bottom:553.731067pt;}
.y7a_c00331{bottom:554.156752pt;}
.y7b_c00331{bottom:554.942480pt;}
.y7c_c00331{bottom:555.235963pt;}
.y7d_c00331{bottom:556.032160pt;}
.y6b_c00331{bottom:571.918421pt;}
.y6c_c00331{bottom:572.258608pt;}
.y6d_c00331{bottom:572.919787pt;}
.y6e_c00331{bottom:573.088784pt;}
.y6f_c00331{bottom:573.284907pt;}
.y70_c00331{bottom:574.221275pt;}
.y71_c00331{bottom:574.757808pt;}
.y72_c00331{bottom:575.516635pt;}
.y73_c00331{bottom:576.555179pt;}
.y74_c00331{bottom:576.822955pt;}
.y75_c00331{bottom:577.431205pt;}
.y60_c00331{bottom:591.841333pt;}
.y61_c00331{bottom:592.152869pt;}
.y62_c00331{bottom:592.714053pt;}
.y63_c00331{bottom:592.852485pt;}
.y64_c00331{bottom:593.310853pt;}
.y65_c00331{bottom:594.154773pt;}
.y66_c00331{bottom:594.428325pt;}
.y67_c00331{bottom:595.087829pt;}
.y68_c00331{bottom:595.517237pt;}
.y69_c00331{bottom:595.896917pt;}
.y6a_c00331{bottom:596.732789pt;}
.y55_c00331{bottom:608.630139pt;}
.y56_c00331{bottom:609.011104pt;}
.y57_c00331{bottom:610.258845pt;}
.y58_c00331{bottom:611.289339pt;}
.y59_c00331{bottom:611.771616pt;}
.y5a_c00331{bottom:612.679003pt;}
.y5b_c00331{bottom:614.124296pt;}
.y5c_c00331{bottom:614.676267pt;}
.y5d_c00331{bottom:615.620979pt;}
.y5e_c00331{bottom:616.510107pt;}
.y5f_c00331{bottom:617.948800pt;}
.y4a_c00331{bottom:631.672125pt;}
.y4b_c00331{bottom:632.079365pt;}
.y4c_c00331{bottom:634.058768pt;}
.y4d_c00331{bottom:634.459861pt;}
.y4e_c00331{bottom:634.702501pt;}
.y4f_c00331{bottom:635.469000pt;}
.y50_c00331{bottom:635.643605pt;}
.y51_c00331{bottom:636.383392pt;}
.y52_c00331{bottom:636.994795pt;}
.y53_c00331{bottom:638.224467pt;}
.y54_c00331{bottom:638.632205pt;}
.y3f_c00331{bottom:652.076517pt;}
.y40_c00331{bottom:652.924179pt;}
.y41_c00331{bottom:653.334163pt;}
.y42_c00331{bottom:653.841123pt;}
.y43_c00331{bottom:654.306760pt;}
.y44_c00331{bottom:655.127152pt;}
.y45_c00331{bottom:656.384093pt;}
.y46_c00331{bottom:657.047571pt;}
.y47_c00331{bottom:657.723605pt;}
.y48_c00331{bottom:658.753485pt;}
.y49_c00331{bottom:659.780240pt;}
.y33_c00331{bottom:671.761597pt;}
.y34_c00331{bottom:672.637989pt;}
.y35_c00331{bottom:673.208787pt;}
.y36_c00331{bottom:673.641424pt;}
.y37_c00331{bottom:674.755709pt;}
.y38_c00331{bottom:675.791147pt;}
.y39_c00331{bottom:676.525360pt;}
.y3a_c00331{bottom:677.739584pt;}
.y3b_c00331{bottom:678.225813pt;}
.y3c_c00331{bottom:679.549392pt;}
.y3d_c00331{bottom:680.275011pt;}
.y3e_c00331{bottom:680.881829pt;}
.y29_c00331{bottom:691.688000pt;}
.y2a_c00331{bottom:693.482408pt;}
.y2b_c00331{bottom:695.973952pt;}
.y2c_c00331{bottom:696.347336pt;}
.y2d_c00331{bottom:696.782965pt;}
.y2e_c00331{bottom:697.844216pt;}
.y2f_c00331{bottom:698.742051pt;}
.y30_c00331{bottom:699.454792pt;}
.y31_c00331{bottom:699.833456pt;}
.y32_c00331{bottom:700.748773pt;}
.y28_c00331{bottom:706.193333pt;}
.y1c_c00331{bottom:711.604819pt;}
.y1d_c00331{bottom:712.010408pt;}
.y1e_c00331{bottom:713.596249pt;}
.y1f_c00331{bottom:715.153536pt;}
.y20_c00331{bottom:715.647947pt;}
.y21_c00331{bottom:716.389175pt;}
.y22_c00331{bottom:716.776653pt;}
.y23_c00331{bottom:718.294637pt;}
.y24_c00331{bottom:718.879769pt;}
.y25_c00331{bottom:719.345271pt;}
.y26_c00331{bottom:720.518464pt;}
.y16_c00331{bottom:721.437333pt;}
.y27_c00331{bottom:721.486195pt;}
.y17_c00331{bottom:722.829704pt;}
.y18_c00331{bottom:723.640447pt;}
.y19_c00331{bottom:724.744296pt;}
.y1a_c00331{bottom:726.889092pt;}
.y1b_c00331{bottom:727.449009pt;}
.yc_c00331{bottom:732.006667pt;}
.yd_c00331{bottom:732.607967pt;}
.ye_c00331{bottom:733.596767pt;}
.yf_c00331{bottom:734.281167pt;}
.y10_c00331{bottom:735.005133pt;}
.y11_c00331{bottom:735.896300pt;}
.y12_c00331{bottom:737.067600pt;}
.y13_c00331{bottom:738.903333pt;}
.y14_c00331{bottom:739.713667pt;}
.y15_c00331{bottom:741.763833pt;}
.yb_c00331{bottom:761.994667pt;}
.y8_c00331{bottom:774.242667pt;}
.y9_c00331{bottom:775.734771pt;}
.ya_c00331{bottom:776.233035pt;}
.y1_c00331{bottom:810.006667pt;}
.y2_c00331{bottom:810.654493pt;}
.y3_c00331{bottom:812.407717pt;}
.y4_c00331{bottom:813.865349pt;}
.y5_c00331{bottom:814.694691pt;}
.y6_c00331{bottom:817.128771pt;}
.y7_c00331{bottom:818.174299pt;}
.h4_c00331{height:19.600000pt;}
.h1a_c00331{height:28.933854pt;}
.h18_c00331{height:46.667507pt;}
.h6_c00331{height:48.542093pt;}
.h2_c00331{height:49.478636pt;}
.h11_c00331{height:55.070631pt;}
.h19_c00331{height:55.259661pt;}
.h15_c00331{height:56.004032pt;}
.hd_c00331{height:57.870833pt;}
.h10_c00331{height:58.804233pt;}
.he_c00331{height:59.737634pt;}
.h12_c00331{height:60.671035pt;}
.hb_c00331{height:60.681346pt;}
.hf_c00331{height:61.604435pt;}
.h8_c00331{height:61.614905pt;}
.h13_c00331{height:62.537836pt;}
.ha_c00331{height:62.548465pt;}
.hc_c00331{height:63.471236pt;}
.h9_c00331{height:63.482024pt;}
.h17_c00331{height:64.404637pt;}
.h7_c00331{height:64.411623pt;}
.h5_c00331{height:64.420122pt;}
.h14_c00331{height:66.271438pt;}
.h16_c00331{height:68.138239pt;}
.h3_c00331{height:110.151173pt;}
.h0_c00331{height:896.400000pt;}
.h1_c00331{height:896.666667pt;}
.w0_c00331{width:618.666667pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:97.506667pt;}
.x2_c00331{left:126.953333pt;}
.x5a_c00331{left:127.878933pt;}
.x73_c00331{left:131.889973pt;}
.x8d_c00331{left:134.217147pt;}
.x61_c00331{left:135.294091pt;}
.x1b_c00331{left:138.285252pt;}
.x64_c00331{left:139.330811pt;}
.x8_c00331{left:140.337333pt;}
.x7f_c00331{left:141.494037pt;}
.xad_c00331{left:142.648512pt;}
.xb3_c00331{left:144.240635pt;}
.xc_c00331{left:154.608000pt;}
.xba_c00331{left:156.718667pt;}
.x6c_c00331{left:157.782016pt;}
.x42_c00331{left:159.634624pt;}
.x52_c00331{left:163.845333pt;}
.xa2_c00331{left:168.719947pt;}
.x65_c00331{left:170.548144pt;}
.xbb_c00331{left:172.322667pt;}
.x74_c00331{left:176.058501pt;}
.x8e_c00331{left:176.972528pt;}
.xd_c00331{left:178.660000pt;}
.x39_c00331{left:182.860829pt;}
.xa6_c00331{left:184.644091pt;}
.x15_c00331{left:186.774667pt;}
.x89_c00331{left:190.893157pt;}
.x7a_c00331{left:192.332613pt;}
.x85_c00331{left:198.845616pt;}
.xbc_c00331{left:201.358667pt;}
.x30_c00331{left:204.756043pt;}
.x3_c00331{left:206.645333pt;}
.x4b_c00331{left:209.145061pt;}
.x53_c00331{left:210.610667pt;}
.x6d_c00331{left:212.570016pt;}
.x8f_c00331{left:215.614384pt;}
.xe_c00331{left:218.212000pt;}
.x27_c00331{left:219.421333pt;}
.x54_c00331{left:222.146667pt;}
.x9_c00331{left:223.232000pt;}
.x31_c00331{left:224.421376pt;}
.x75_c00331{left:227.171109pt;}
.x96_c00331{left:228.323360pt;}
.x3a_c00331{left:231.149360pt;}
.x5b_c00331{left:232.973669pt;}
.x90_c00331{left:234.336613pt;}
.x62_c00331{left:235.346224pt;}
.xb4_c00331{left:242.168064pt;}
.x80_c00331{left:244.696603pt;}
.xf_c00331{left:245.588000pt;}
.x25_c00331{left:247.680000pt;}
.xa7_c00331{left:248.933280pt;}
.xa_c00331{left:250.913333pt;}
.x4c_c00331{left:253.924064pt;}
.x3b_c00331{left:255.649640pt;}
.xa3_c00331{left:258.246176pt;}
.x16_c00331{left:260.057333pt;}
.x81_c00331{left:262.212811pt;}
.x43_c00331{left:263.796155pt;}
.x97_c00331{left:265.305584pt;}
.x66_c00331{left:268.454811pt;}
.x9d_c00331{left:269.578480pt;}
.xae_c00331{left:270.566843pt;}
.x4_c00331{left:272.901333pt;}
.x10_c00331{left:274.546667pt;}
.x8a_c00331{left:278.496032pt;}
.x1c_c00331{left:280.271756pt;}
.x26_c00331{left:281.760000pt;}
.x44_c00331{left:284.877533pt;}
.xbd_c00331{left:294.732000pt;}
.x45_c00331{left:297.665051pt;}
.x3c_c00331{left:298.821819pt;}
.x1d_c00331{left:300.045501pt;}
.xa8_c00331{left:301.043083pt;}
.x17_c00331{left:302.728000pt;}
.x98_c00331{left:303.925237pt;}
.x5c_c00331{left:305.003472pt;}
.xac_c00331{left:306.335803pt;}
.x9e_c00331{left:308.036784pt;}
.x5_c00331{left:310.598667pt;}
.xbe_c00331{left:312.708000pt;}
.x4d_c00331{left:314.301381pt;}
.xb5_c00331{left:315.613307pt;}
.x82_c00331{left:317.169467pt;}
.x86_c00331{left:319.036619pt;}
.x76_c00331{left:320.058896pt;}
.x32_c00331{left:322.136043pt;}
.x6e_c00331{left:323.656683pt;}
.x99_c00331{left:326.494597pt;}
.x1e_c00331{left:329.720799pt;}
.x55_c00331{left:330.670667pt;}
.x28_c00331{left:332.673333pt;}
.x94_c00331{left:333.691904pt;}
.x46_c00331{left:338.023720pt;}
.x91_c00331{left:340.151019pt;}
.x6f_c00331{left:343.058016pt;}
.x1f_c00331{left:345.200359pt;}
.x5d_c00331{left:346.269643pt;}
.x47_c00331{left:347.233669pt;}
.x7b_c00331{left:348.713168pt;}
.x29_c00331{left:349.645333pt;}
.x87_c00331{left:351.993803pt;}
.x56_c00331{left:353.466667pt;}
.x33_c00331{left:355.509376pt;}
.x11_c00331{left:357.045333pt;}
.xb6_c00331{left:359.296928pt;}
.x18_c00331{left:360.825333pt;}
.x70_c00331{left:363.994016pt;}
.x3d_c00331{left:364.990189pt;}
.xbf_c00331{left:366.476000pt;}
.x2a_c00331{left:369.446667pt;}
.x77_c00331{left:372.387520pt;}
.xa9_c00331{left:375.716896pt;}
.x4e_c00331{left:377.146669pt;}
.x9a_c00331{left:379.560448pt;}
.x83_c00331{left:380.584901pt;}
.xaf_c00331{left:384.812357pt;}
.x48_c00331{left:386.196251pt;}
.x7c_c00331{left:387.553632pt;}
.xb_c00331{left:390.000000pt;}
.x92_c00331{left:392.272197pt;}
.xc0_c00331{left:394.308000pt;}
.x63_c00331{left:398.570923pt;}
.x3e_c00331{left:399.877811pt;}
.x4f_c00331{left:401.144808pt;}
.xc1_c00331{left:403.660000pt;}
.x5e_c00331{left:404.615605pt;}
.x20_c00331{left:405.929443pt;}
.x57_c00331{left:408.425333pt;}
.x34_c00331{left:410.701376pt;}
.xaa_c00331{left:412.417771pt;}
.xa4_c00331{left:414.498005pt;}
.x78_c00331{left:416.782715pt;}
.x2b_c00331{left:417.685333pt;}
.xb0_c00331{left:419.854453pt;}
.x6_c00331{left:421.238667pt;}
.x67_c00331{left:425.681477pt;}
.x21_c00331{left:429.354783pt;}
.x12_c00331{left:430.474667pt;}
.x35_c00331{left:432.802709pt;}
.x3f_c00331{left:435.457491pt;}
.x7d_c00331{left:437.146224pt;}
.x84_c00331{left:438.342923pt;}
.x68_c00331{left:440.077477pt;}
.x50_c00331{left:442.206565pt;}
.x58_c00331{left:444.209333pt;}
.x22_c00331{left:447.957988pt;}
.x9f_c00331{left:449.382597pt;}
.x88_c00331{left:450.873371pt;}
.x69_c00331{left:457.130811pt;}
.x2c_c00331{left:458.496000pt;}
.x95_c00331{left:460.188837pt;}
.x13_c00331{left:462.888000pt;}
.x9b_c00331{left:464.234853pt;}
.x79_c00331{left:466.497973pt;}
.x7_c00331{left:468.762667pt;}
.x8b_c00331{left:471.982645pt;}
.x19_c00331{left:473.709333pt;}
.x59_c00331{left:475.849333pt;}
.x51_c00331{left:480.863048pt;}
.x49_c00331{left:483.099979pt;}
.x5f_c00331{left:484.493312pt;}
.xb7_c00331{left:487.707392pt;}
.x40_c00331{left:489.667736pt;}
.x2d_c00331{left:490.893333pt;}
.x36_c00331{left:492.965376pt;}
.x23_c00331{left:494.892643pt;}
.x93_c00331{left:499.557349pt;}
.x1a_c00331{left:503.178667pt;}
.x4a_c00331{left:504.544053pt;}
.xa5_c00331{left:506.184539pt;}
.x2e_c00331{left:508.105333pt;}
.x71_c00331{left:511.076683pt;}
.xa0_c00331{left:512.742405pt;}
.xb1_c00331{left:516.326896pt;}
.x9c_c00331{left:523.077040pt;}
.x8c_c00331{left:524.283824pt;}
.x37_c00331{left:525.948043pt;}
.x7e_c00331{left:527.635312pt;}
.xa1_c00331{left:529.307397pt;}
.x24_c00331{left:533.610901pt;}
.x6a_c00331{left:536.330811pt;}
.x72_c00331{left:541.128683pt;}
.x41_c00331{left:543.675285pt;}
.x14_c00331{left:544.894667pt;}
.xb8_c00331{left:546.271824pt;}
.x2f_c00331{left:549.710667pt;}
.x60_c00331{left:551.939179pt;}
.x38_c00331{left:553.530709pt;}
.xab_c00331{left:555.226347pt;}
.x6b_c00331{left:559.602811pt;}
.xb2_c00331{left:586.457771pt;}
.xc2_c00331{left:588.130667pt;}
.xc3_c00331{left:592.888853pt;}
.xb9_c00331{left:597.635216pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m132_c00332{transform:matrix(0.011020,0.000088,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011020,0.000088,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011020,0.000088,-0.002000,0.249992,0,0);}
.m133_c00332{transform:matrix(0.012320,0.000099,-0.002000,0.249992,0,0);-ms-transform:matrix(0.012320,0.000099,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.012320,0.000099,-0.002000,0.249992,0,0);}
.m14b_c00332{transform:matrix(0.065375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00332{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);}
.m106_c00332{transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);}
.m124_c00332{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.m47_c00332{transform:matrix(0.104250,0.001459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.104250,0.001459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.104250,0.001459,-0.003500,0.249976,0,0);}
.mcf_c00332{transform:matrix(0.108960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108960,0.000000,0.000000,0.250000,0,0);}
.m100_c00332{transform:matrix(0.118435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118435,0.000000,0.000000,0.250000,0,0);}
.m78_c00332{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);}
.m44_c00332{transform:matrix(0.133877,0.001874,-0.003500,0.249976,0,0);-ms-transform:matrix(0.133877,0.001874,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.133877,0.001874,-0.003500,0.249976,0,0);}
.mf2_c00332{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);}
.mb9_c00332{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.139745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139745,0.000000,0.000000,0.250000,0,0);}
.mb0_c00332{transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{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);}
.m28_c00332{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);}
.m9c_c00332{transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);}
.m4f_c00332{transform:matrix(0.148341,0.001038,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148341,0.001038,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148341,0.001038,-0.001750,0.249994,0,0);}
.mf6_c00332{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);}
.m8e_c00332{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);}
.m13d_c00332{transform:matrix(0.148460,0.001188,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148460,0.001188,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148460,0.001188,-0.002000,0.249992,0,0);}
.ma2_c00332{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);}
.m25_c00332{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);}
.m10f_c00332{transform:matrix(0.149865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149865,0.000000,0.000000,0.250000,0,0);}
.mba_c00332{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.mc7_c00332{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);}
.mb7_c00332{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);}
.m10e_c00332{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);}
.m17_c00332{transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152990,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.153110,0.001225,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153110,0.001225,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153110,0.001225,-0.002000,0.249992,0,0);}
.mc1_c00332{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);}
.mb8_c00332{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);}
.md9_c00332{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);}
.m7c_c00332{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);}
.me6_c00332{transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);}
.maa_c00332{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);}
.m10b_c00332{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);}
.m65_c00332{transform:matrix(0.156696,0.001097,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156696,0.001097,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156696,0.001097,-0.001750,0.249994,0,0);}
.m45_c00332{transform:matrix(0.157570,0.002206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157570,0.002206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157570,0.002206,-0.003500,0.249976,0,0);}
.m54_c00332{transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157731,0.001104,-0.001750,0.249994,0,0);}
.m13c_c00332{transform:matrix(0.158350,0.001267,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158350,0.001267,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158350,0.001267,-0.002000,0.249992,0,0);}
.m42_c00332{transform:matrix(0.159551,0.001117,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159551,0.001117,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159551,0.001117,-0.001750,0.249994,0,0);}
.m41_c00332{transform:matrix(0.160016,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160016,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160016,0.001120,-0.001750,0.249994,0,0);}
.mfe_c00332{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);}
.m5e_c00332{transform:matrix(0.160766,0.001125,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160766,0.001125,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160766,0.001125,-0.001750,0.249994,0,0);}
.m19_c00332{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m64_c00332{transform:matrix(0.161081,0.001128,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161081,0.001128,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161081,0.001128,-0.001750,0.249994,0,0);}
.m92_c00332{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);}
.m13_c00332{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);}
.mf8_c00332{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);}
.m111_c00332{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);}
.m108_c00332{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);}
.m39_c00332{transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);}
.me7_c00332{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);}
.me3_c00332{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);}
.m128_c00332{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);}
.m97_c00332{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);}
.mfb_c00332{transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);}
.m118_c00332{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);}
.m117_c00332{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);}
.m9_c00332{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);}
.mbd_c00332{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00332{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);}
.m6d_c00332{transform:matrix(0.164571,0.001152,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164571,0.001152,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164571,0.001152,-0.001750,0.249994,0,0);}
.m12c_c00332{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);}
.m81_c00332{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);}
.mb3_c00332{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);}
.m52_c00332{transform:matrix(0.165926,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165926,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165926,0.001161,-0.001750,0.249994,0,0);}
.mf1_c00332{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);}
.m101_c00332{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);}
.m135_c00332{transform:matrix(0.166095,0.001329,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166095,0.001329,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166095,0.001329,-0.002000,0.249992,0,0);}
.m5b_c00332{transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);}
.m110_c00332{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166555,0.000000,0.000000,0.250000,0,0);}
.mb2_c00332{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);}
.m104_c00332{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);}
.mee_c00332{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);}
.mfd_c00332{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);}
.m53_c00332{transform:matrix(0.168526,0.001180,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168526,0.001180,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168526,0.001180,-0.001750,0.249994,0,0);}
.mb6_c00332{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);}
.m26_c00332{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);}
.mf0_c00332{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);}
.m145_c00332{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);}
.m4e_c00332{transform:matrix(0.169126,0.001184,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169126,0.001184,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169126,0.001184,-0.001750,0.249994,0,0);}
.m131_c00332{transform:matrix(0.169350,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169350,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169350,0.001355,-0.002000,0.249992,0,0);}
.mca_c00332{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);}
.ma1_c00332{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);}
.m88_c00332{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);}
.m9a_c00332{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);}
.mc5_c00332{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);}
.m8b_c00332{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.mdd_c00332{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);}
.m62_c00332{transform:matrix(0.171781,0.001202,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171781,0.001202,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171781,0.001202,-0.001750,0.249994,0,0);}
.mf3_c00332{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);}
.m11f_c00332{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);}
.m9d_c00332{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);}
.m60_c00332{transform:matrix(0.172281,0.001206,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172281,0.001206,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172281,0.001206,-0.001750,0.249994,0,0);}
.m99_c00332{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);}
.md2_c00332{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);}
.ma4_c00332{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);}
.m11c_c00332{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);}
.m3e_c00332{transform:matrix(0.173336,0.001213,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173336,0.001213,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173336,0.001213,-0.001750,0.249994,0,0);}
.m9f_c00332{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);}
.mc6_c00332{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);}
.m139_c00332{transform:matrix(0.174044,0.001392,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174044,0.001392,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174044,0.001392,-0.002000,0.249992,0,0);}
.me0_c00332{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);}
.m4d_c00332{transform:matrix(0.174331,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174331,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174331,0.001220,-0.001750,0.249994,0,0);}
.m95_c00332{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);}
.mfa_c00332{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);}
.ma0_c00332{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);}
.m12f_c00332{transform:matrix(0.175254,0.001402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175254,0.001402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175254,0.001402,-0.002000,0.249992,0,0);}
.mbb_c00332{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);}
.mc8_c00332{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);}
.m82_c00332{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);}
.md3_c00332{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);}
.md_c00332{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{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);}
.m31_c00332{transform:matrix(0.176334,0.001411,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176334,0.001411,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176334,0.001411,-0.002000,0.249992,0,0);}
.m148_c00332{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m87_c00332{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);}
.m85_c00332{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);}
.ma9_c00332{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);}
.md4_c00332{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);}
.m7f_c00332{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);}
.m8a_c00332{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);}
.m18_c00332{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);}
.mef_c00332{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);}
.m27_c00332{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);}
.mea_c00332{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);}
.med_c00332{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);}
.m76_c00332{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);}
.m50_c00332{transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178081,0.001247,-0.001750,0.249994,0,0);}
.m1e_c00332{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);}
.mf7_c00332{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);}
.mde_c00332{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);}
.me8_c00332{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);}
.m13b_c00332{transform:matrix(0.179624,0.001437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179624,0.001437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179624,0.001437,-0.002000,0.249992,0,0);}
.m12a_c00332{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);}
.m141_c00332{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);}
.m2e_c00332{transform:matrix(0.180079,0.001441,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180079,0.001441,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180079,0.001441,-0.002000,0.249992,0,0);}
.mcc_c00332{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);}
.ma_c00332{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);}
.m22_c00332{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{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);}
.m136_c00332{transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180624,0.001445,-0.002000,0.249992,0,0);}
.m109_c00332{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);}
.ma5_c00332{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);}
.mf4_c00332{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);}
.m1c_c00332{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);}
.m119_c00332{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);}
.mb5_c00332{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m70_c00332{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{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);}
.m71_c00332{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);}
.mab_c00332{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);}
.m113_c00332{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);}
.m75_c00332{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);}
.me9_c00332{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);}
.m10_c00332{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);}
.m35_c00332{transform:matrix(0.183314,0.001467,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183314,0.001467,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183314,0.001467,-0.002000,0.249992,0,0);}
.m103_c00332{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);}
.m6_c00332{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);}
.mbc_c00332{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);}
.mdf_c00332{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);}
.m129_c00332{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);}
.m123_c00332{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);}
.m7a_c00332{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);}
.me5_c00332{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);}
.me2_c00332{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);}
.mac_c00332{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);}
.mf9_c00332{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);}
.m12_c00332{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);}
.m138_c00332{transform:matrix(0.185724,0.001486,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185724,0.001486,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185724,0.001486,-0.002000,0.249992,0,0);}
.m1f_c00332{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_c00332{transform:matrix(0.185970,0.001302,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185970,0.001302,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185970,0.001302,-0.001750,0.249994,0,0);}
.m34_c00332{transform:matrix(0.186214,0.001490,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186214,0.001490,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186214,0.001490,-0.002000,0.249992,0,0);}
.m74_c00332{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);}
.m12b_c00332{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);}
.mc0_c00332{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);}
.maf_c00332{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);}
.m144_c00332{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);}
.m89_c00332{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);}
.m140_c00332{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);}
.m68_c00332{transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);}
.m146_c00332{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);}
.m77_c00332{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);}
.m3a_c00332{transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188115,0.001317,-0.001750,0.249994,0,0);}
.m67_c00332{transform:matrix(0.188175,0.001317,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188175,0.001317,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188175,0.001317,-0.001750,0.249994,0,0);}
.mb_c00332{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);}
.m1_c00332{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);}
.m55_c00332{transform:matrix(0.188695,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188695,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188695,0.001321,-0.001750,0.249994,0,0);}
.m9e_c00332{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{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);}
.m7e_c00332{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);}
.m126_c00332{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);}
.m32_c00332{transform:matrix(0.189889,0.001519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189889,0.001519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189889,0.001519,-0.002000,0.249992,0,0);}
.m80_c00332{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);}
.m63_c00332{transform:matrix(0.190210,0.001331,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190210,0.001331,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190210,0.001331,-0.001750,0.249994,0,0);}
.m8f_c00332{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);}
.m125_c00332{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);}
.me1_c00332{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);}
.mff_c00332{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);}
.me_c00332{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);}
.m7b_c00332{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);}
.m36_c00332{transform:matrix(0.191914,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191914,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191914,0.001535,-0.002000,0.249992,0,0);}
.m11b_c00332{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);}
.m9b_c00332{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);}
.m120_c00332{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);}
.m114_c00332{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);}
.mf5_c00332{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);}
.mec_c00332{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);}
.m8d_c00332{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);}
.m12e_c00332{transform:matrix(0.194819,0.001559,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194819,0.001559,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194819,0.001559,-0.002000,0.249992,0,0);}
.mfc_c00332{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);}
.m12d_c00332{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_c00332{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);}
.mc3_c00332{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);}
.m2a_c00332{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);}
.m94_c00332{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);}
.mce_c00332{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);}
.mb4_c00332{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);}
.m86_c00332{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);}
.m14_c00332{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);}
.m10a_c00332{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);}
.m1a_c00332{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m115_c00332{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);}
.mdc_c00332{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);}
.mc_c00332{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);}
.mc9_c00332{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);}
.m2d_c00332{transform:matrix(0.197989,0.001584,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197989,0.001584,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197989,0.001584,-0.002000,0.249992,0,0);}
.m5a_c00332{transform:matrix(0.198050,0.001386,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198050,0.001386,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198050,0.001386,-0.001750,0.249994,0,0);}
.m66_c00332{transform:matrix(0.198945,0.001393,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198945,0.001393,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198945,0.001393,-0.001750,0.249994,0,0);}
.m90_c00332{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);}
.m15_c00332{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);}
.m1d_c00332{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);}
.m33_c00332{transform:matrix(0.199589,0.001597,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199589,0.001597,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199589,0.001597,-0.002000,0.249992,0,0);}
.md5_c00332{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);}
.mb1_c00332{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);}
.mc2_c00332{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);}
.m5c_c00332{transform:matrix(0.200010,0.001400,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200010,0.001400,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200010,0.001400,-0.001750,0.249994,0,0);}
.m105_c00332{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);}
.m5f_c00332{transform:matrix(0.200455,0.001403,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200455,0.001403,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200455,0.001403,-0.001750,0.249994,0,0);}
.m3f_c00332{transform:matrix(0.201045,0.001407,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201045,0.001407,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201045,0.001407,-0.001750,0.249994,0,0);}
.m16_c00332{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);}
.m79_c00332{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);}
.m11_c00332{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);}
.m96_c00332{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);}
.m137_c00332{transform:matrix(0.202399,0.001619,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202399,0.001619,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202399,0.001619,-0.002000,0.249992,0,0);}
.m11d_c00332{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);}
.m10d_c00332{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);}
.mdb_c00332{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);}
.m57_c00332{transform:matrix(0.203285,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203285,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203285,0.001423,-0.001750,0.249994,0,0);}
.m11e_c00332{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);}
.m112_c00332{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);}
.md8_c00332{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);}
.m11a_c00332{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);}
.m98_c00332{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);}
.m147_c00332{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);}
.m1b_c00332{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);}
.m37_c00332{transform:matrix(0.205768,0.001646,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205768,0.001646,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205768,0.001646,-0.002000,0.249992,0,0);}
.md6_c00332{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);}
.m127_c00332{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);}
.m6f_c00332{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);}
.m13a_c00332{transform:matrix(0.206213,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206213,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206213,0.001650,-0.002000,0.249992,0,0);}
.ma8_c00332{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);}
.m102_c00332{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);}
.mda_c00332{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);}
.m6b_c00332{transform:matrix(0.207185,0.001450,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207185,0.001450,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207185,0.001450,-0.001750,0.249994,0,0);}
.m21_c00332{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);}
.m7d_c00332{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);}
.m4_c00332{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);}
.m40_c00332{transform:matrix(0.210675,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210675,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210675,0.001475,-0.001750,0.249994,0,0);}
.m2f_c00332{transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);}
.m73_c00332{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);}
.m122_c00332{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);}
.m116_c00332{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);}
.m142_c00332{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);}
.m51_c00332{transform:matrix(0.212595,0.001488,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212595,0.001488,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212595,0.001488,-0.001750,0.249994,0,0);}
.m2c_c00332{transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);}
.m8c_c00332{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);}
.m83_c00332{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);}
.mc4_c00332{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);}
.m91_c00332{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);}
.m3b_c00332{transform:matrix(0.215510,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215510,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215510,0.001509,-0.001750,0.249994,0,0);}
.m72_c00332{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);}
.mae_c00332{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.m4c_c00332{transform:matrix(0.216400,0.001515,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216400,0.001515,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216400,0.001515,-0.001750,0.249994,0,0);}
.m10c_c00332{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);}
.m134_c00332{transform:matrix(0.217623,0.001741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217623,0.001741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217623,0.001741,-0.002000,0.249992,0,0);}
.m43_c00332{transform:matrix(0.217680,0.001524,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217680,0.001524,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217680,0.001524,-0.001750,0.249994,0,0);}
.mbe_c00332{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);}
.m107_c00332{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);}
.mcb_c00332{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);}
.m143_c00332{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);}
.m5_c00332{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);}
.m58_c00332{transform:matrix(0.221225,0.001549,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221225,0.001549,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221225,0.001549,-0.001750,0.249994,0,0);}
.m61_c00332{transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);}
.md1_c00332{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);}
.m130_c00332{transform:matrix(0.222158,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222158,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222158,0.001777,-0.002000,0.249992,0,0);}
.ma7_c00332{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);}
.md7_c00332{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);}
.mcd_c00332{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);}
.m3c_c00332{transform:matrix(0.226979,0.001589,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226979,0.001589,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226979,0.001589,-0.001750,0.249994,0,0);}
.mf_c00332{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);}
.m38_c00332{transform:matrix(0.228474,0.001599,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228474,0.001599,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228474,0.001599,-0.001750,0.249994,0,0);}
.me4_c00332{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);}
.m6c_c00332{transform:matrix(0.234659,0.001643,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234659,0.001643,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234659,0.001643,-0.001750,0.249994,0,0);}
.m13e_c00332{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);}
.m56_c00332{transform:matrix(0.236149,0.001653,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236149,0.001653,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236149,0.001653,-0.001750,0.249994,0,0);}
.m23_c00332{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);}
.mad_c00332{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m93_c00332{transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);}
.ma6_c00332{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00332{transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{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);}
.m3_c00332{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00332{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m84_c00332{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m6a_c00332{transform:matrix(0.253424,0.001774,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253424,0.001774,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253424,0.001774,-0.001750,0.249994,0,0);}
.m3d_c00332{transform:matrix(0.257009,0.001799,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257009,0.001799,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257009,0.001799,-0.001750,0.249994,0,0);}
.m121_c00332{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);}
.md0_c00332{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);}
.m149_c00332{transform:matrix(0.272375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272375,0.000000,0.000000,0.250000,0,0);}
.m46_c00332{transform:matrix(0.292396,0.004094,-0.003500,0.249976,0,0);-ms-transform:matrix(0.292396,0.004094,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.292396,0.004094,-0.003500,0.249976,0,0);}
.m14c_c00332{transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309360,0.000000,0.000000,0.250000,0,0);}
.m4a_c00332{transform:matrix(0.322198,0.004511,-0.003500,0.249976,0,0);-ms-transform:matrix(0.322198,0.004511,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.322198,0.004511,-0.003500,0.249976,0,0);}
.m59_c00332{transform:matrix(0.342527,0.002398,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342527,0.002398,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342527,0.002398,-0.001750,0.249994,0,0);}
.m69_c00332{transform:matrix(0.353001,0.002471,-0.001750,0.249994,0,0);-ms-transform:matrix(0.353001,0.002471,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.353001,0.002471,-0.001750,0.249994,0,0);}
.m4b_c00332{transform:matrix(0.353600,0.004950,-0.003500,0.249976,0,0);-ms-transform:matrix(0.353600,0.004950,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.353600,0.004950,-0.003500,0.249976,0,0);}
.m14a_c00332{transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355065,0.000000,0.000000,0.250000,0,0);}
.m48_c00332{transform:matrix(0.405685,0.005680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.405685,0.005680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.405685,0.005680,-0.003500,0.249976,0,0);}
.m49_c00332{transform:matrix(0.645302,0.009034,-0.003500,0.249976,0,0);-ms-transform:matrix(0.645302,0.009034,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.645302,0.009034,-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;}
.fs5_c00332{font-size:44.104322px;}
.fs11_c00332{font-size:49.350000px;}
.fsc_c00332{font-size:61.950000px;}
.fsf_c00332{font-size:64.050000px;}
.fsd_c00332{font-size:66.150000px;}
.fs4_c00332{font-size:66.151621px;}
.fsa_c00332{font-size:67.200000px;}
.fs2_c00332{font-size:68.250000px;}
.fs7_c00332{font-size:68.251672px;}
.fs9_c00332{font-size:69.300000px;}
.fs6_c00332{font-size:69.301698px;}
.fs3_c00332{font-size:69.302218px;}
.fs1_c00332{font-size:70.350000px;}
.fsb_c00332{font-size:71.400000px;}
.fse_c00332{font-size:72.450000px;}
.fs8_c00332{font-size:72.451775px;}
.fs0_c00332{font-size:73.500000px;}
.fs10_c00332{font-size:73.502352px;}
.y0_c00332{bottom:0.000000px;}
.y43_c00332{bottom:105.720834px;}
.y42_c00332{bottom:106.030668px;}
.y41_c00332{bottom:106.839714px;}
.y40_c00332{bottom:107.810859px;}
.y3f_c00332{bottom:111.029991px;}
.y3e_c00332{bottom:112.293918px;}
.y3d_c00332{bottom:113.026902px;}
.y3c_c00332{bottom:113.401500px;}
.y87_c00332{bottom:127.236000px;}
.y86_c00332{bottom:149.169000px;}
.y83_c00332{bottom:200.864652px;}
.y82_c00332{bottom:200.864748px;}
.y7d_c00332{bottom:200.864784px;}
.y7e_c00332{bottom:200.864976px;}
.y84_c00332{bottom:200.865144px;}
.y81_c00332{bottom:200.865204px;}
.y7f_c00332{bottom:200.865408px;}
.y85_c00332{bottom:200.865744px;}
.y80_c00332{bottom:200.865852px;}
.y7c_c00332{bottom:221.199684px;}
.y7b_c00332{bottom:221.985900px;}
.y7a_c00332{bottom:223.941732px;}
.y79_c00332{bottom:224.548668px;}
.y78_c00332{bottom:224.686872px;}
.y77_c00332{bottom:224.911500px;}
.y76_c00332{bottom:245.584500px;}
.y75_c00332{bottom:268.264500px;}
.y74_c00332{bottom:291.444000px;}
.y73_c00332{bottom:314.371500px;}
.y72_c00332{bottom:337.863000px;}
.y71_c00332{bottom:360.811500px;}
.y70_c00332{bottom:383.491500px;}
.y6f_c00332{bottom:406.171500px;}
.y6e_c00332{bottom:429.121500px;}
.y6d_c00332{bottom:452.343000px;}
.y6c_c00332{bottom:474.814500px;}
.y6b_c00332{bottom:497.464500px;}
.y6a_c00332{bottom:520.413000px;}
.y69_c00332{bottom:543.124500px;}
.y68_c00332{bottom:566.044500px;}
.y67_c00332{bottom:588.415500px;}
.y66_c00332{bottom:611.146500px;}
.y65_c00332{bottom:634.136493px;}
.y63_c00332{bottom:634.137113px;}
.y64_c00332{bottom:634.137243px;}
.y62_c00332{bottom:634.137442px;}
.y60_c00332{bottom:634.137762px;}
.y61_c00332{bottom:634.137882px;}
.y5f_c00332{bottom:634.138362px;}
.y5e_c00332{bottom:634.138381px;}
.y5d_c00332{bottom:634.138791px;}
.y5b_c00332{bottom:634.138980px;}
.y5c_c00332{bottom:634.139201px;}
.y5a_c00332{bottom:634.139330px;}
.y4f_c00332{bottom:657.360063px;}
.y51_c00332{bottom:657.360335px;}
.y53_c00332{bottom:657.360405px;}
.y50_c00332{bottom:657.360644px;}
.y58_c00332{bottom:657.360717px;}
.y52_c00332{bottom:657.360785px;}
.y59_c00332{bottom:657.360997px;}
.y54_c00332{bottom:657.361046px;}
.y57_c00332{bottom:657.361306px;}
.y55_c00332{bottom:657.361626px;}
.y56_c00332{bottom:657.361727px;}
.y4e_c00332{bottom:678.465135px;}
.y4d_c00332{bottom:678.830136px;}
.y4c_c00332{bottom:679.058847px;}
.y4b_c00332{bottom:679.327206px;}
.y4a_c00332{bottom:679.578607px;}
.y49_c00332{bottom:680.209920px;}
.y48_c00332{bottom:680.415688px;}
.y47_c00332{bottom:680.635159px;}
.y46_c00332{bottom:680.790140px;}
.y45_c00332{bottom:680.977029px;}
.y44_c00332{bottom:681.480000px;}
.y3b_c00332{bottom:700.856343px;}
.y3a_c00332{bottom:701.115284px;}
.y39_c00332{bottom:701.306184px;}
.y38_c00332{bottom:701.523555px;}
.y37_c00332{bottom:702.056535px;}
.y36_c00332{bottom:702.211536px;}
.y35_c00332{bottom:702.357024px;}
.y34_c00332{bottom:702.786001px;}
.y33_c00332{bottom:702.967567px;}
.y32_c00332{bottom:703.542232px;}
.y31_c00332{bottom:703.736787px;}
.y30_c00332{bottom:704.160000px;}
.y2f_c00332{bottom:724.333656px;}
.y2e_c00332{bottom:724.791600px;}
.y2d_c00332{bottom:725.122116px;}
.y2c_c00332{bottom:725.551956px;}
.y2b_c00332{bottom:725.778684px;}
.y2a_c00332{bottom:725.975328px;}
.y29_c00332{bottom:726.469992px;}
.y28_c00332{bottom:726.696804px;}
.y27_c00332{bottom:726.960348px;}
.y26_c00332{bottom:727.435572px;}
.y25_c00332{bottom:727.921500px;}
.y24_c00332{bottom:747.231000px;}
.y23_c00332{bottom:747.379500px;}
.y22_c00332{bottom:747.987000px;}
.y21_c00332{bottom:748.395000px;}
.y20_c00332{bottom:748.620000px;}
.y1f_c00332{bottom:748.929000px;}
.y1e_c00332{bottom:749.164500px;}
.y1d_c00332{bottom:749.320500px;}
.y1c_c00332{bottom:749.449500px;}
.y1b_c00332{bottom:749.979000px;}
.y1a_c00332{bottom:750.127500px;}
.y19_c00332{bottom:750.600000px;}
.y18_c00332{bottom:769.833000px;}
.y17_c00332{bottom:770.058000px;}
.y16_c00332{bottom:770.680500px;}
.y15_c00332{bottom:771.142500px;}
.y14_c00332{bottom:771.466500px;}
.y13_c00332{bottom:771.747000px;}
.y12_c00332{bottom:771.952500px;}
.y11_c00332{bottom:772.363500px;}
.y10_c00332{bottom:772.603500px;}
.yf_c00332{bottom:772.774500px;}
.ye_c00332{bottom:772.897500px;}
.yd_c00332{bottom:773.281500px;}
.yc_c00332{bottom:792.544500px;}
.yb_c00332{bottom:792.927000px;}
.ya_c00332{bottom:793.114500px;}
.y9_c00332{bottom:793.684500px;}
.y8_c00332{bottom:794.272500px;}
.y7_c00332{bottom:794.503500px;}
.y6_c00332{bottom:794.719500px;}
.y5_c00332{bottom:795.196500px;}
.y4_c00332{bottom:795.408000px;}
.y3_c00332{bottom:795.997500px;}
.y2_c00332{bottom:796.230000px;}
.y1_c00332{bottom:818.016000px;}
.h7_c00332{height:44.104322px;}
.h13_c00332{height:49.350000px;}
.he_c00332{height:61.950000px;}
.h11_c00332{height:64.050000px;}
.hf_c00332{height:66.150000px;}
.h6_c00332{height:66.151621px;}
.hc_c00332{height:67.200000px;}
.h4_c00332{height:68.250000px;}
.h9_c00332{height:68.251672px;}
.hb_c00332{height:69.300000px;}
.h8_c00332{height:69.301698px;}
.h5_c00332{height:69.302218px;}
.h3_c00332{height:70.350000px;}
.hd_c00332{height:71.400000px;}
.h10_c00332{height:72.450000px;}
.ha_c00332{height:72.451775px;}
.h2_c00332{height:73.500000px;}
.h12_c00332{height:73.502352px;}
.h1_c00332{height:1005.000000px;}
.h0_c00332{height:1005.150000px;}
.w0_c00332{width:702.540000px;}
.w1_c00332{width:702.750000px;}
.x0_c00332{left:0.000000px;}
.x3a_c00332{left:38.223000px;}
.x3b_c00332{left:64.980000px;}
.x31_c00332{left:75.528000px;}
.x1_c00332{left:85.590000px;}
.x68_c00332{left:86.670000px;}
.xa2_c00332{left:87.750000px;}
.xc0_c00332{left:101.790000px;}
.x75_c00332{left:103.950000px;}
.xbb_c00332{left:105.300768px;}
.x7c_c00332{left:109.080000px;}
.xc_c00332{left:114.643500px;}
.x80_c00332{left:116.100000px;}
.x3c_c00332{left:117.336000px;}
.xc5_c00332{left:124.200000px;}
.x6e_c00332{left:126.360000px;}
.x2_c00332{left:127.710000px;}
.x89_c00332{left:128.790000px;}
.x96_c00332{left:129.870000px;}
.xaa_c00332{left:131.490000px;}
.x16_c00332{left:132.735000px;}
.x32_c00332{left:135.987000px;}
.xa3_c00332{left:138.240000px;}
.x8a_c00332{left:140.670000px;}
.x81_c00332{left:141.750000px;}
.x69_c00332{left:143.100000px;}
.x1f_c00332{left:144.619500px;}
.x28_c00332{left:145.696500px;}
.x17_c00332{left:148.122000px;}
.x48_c00332{left:149.313800px;}
.xb0_c00332{left:152.280000px;}
.xc1_c00332{left:154.440000px;}
.x41_c00332{left:157.353000px;}
.x82_c00332{left:158.760000px;}
.x20_c00332{left:163.243500px;}
.x76_c00332{left:166.590000px;}
.x18_c00332{left:169.449000px;}
.xab_c00332{left:171.180000px;}
.x97_c00332{left:172.260000px;}
.x58_c00332{left:173.610000px;}
.xbc_c00332{left:176.852352px;}
.x5e_c00332{left:179.280000px;}
.x9e_c00332{left:181.170000px;}
.x42_c00332{left:184.051500px;}
.xc2_c00332{left:187.110000px;}
.xd_c00332{left:188.385000px;}
.x83_c00332{left:191.970000px;}
.x7d_c00332{left:193.320000px;}
.x98_c00332{left:194.940000px;}
.xbd_c00332{left:197.103648px;}
.x3_c00332{left:199.800000px;}
.xb1_c00332{left:201.150000px;}
.xac_c00332{left:202.770000px;}
.x29_c00332{left:205.099500px;}
.x43_c00332{left:206.191500px;}
.x3d_c00332{left:207.616500px;}
.xb9_c00332{left:208.873500px;}
.x6f_c00332{left:211.140000px;}
.xe_c00332{left:214.813500px;}
.x52_c00332{left:216.003525px;}
.x5f_c00332{left:220.590000px;}
.x77_c00332{left:221.940000px;}
.xb2_c00332{left:223.560000px;}
.xc6_c00332{left:225.180000px;}
.x21_c00332{left:229.393500px;}
.x59_c00332{left:233.280000px;}
.x2a_c00332{left:238.042500px;}
.x70_c00332{left:241.920000px;}
.x49_c00332{left:243.005388px;}
.x4_c00332{left:245.970000px;}
.x99_c00332{left:247.590000px;}
.x90_c00332{left:249.210000px;}
.x19_c00332{left:250.723500px;}
.x78_c00332{left:253.260000px;}
.x4a_c00332{left:255.155987px;}
.x9f_c00332{left:256.500000px;}
.xb6_c00332{left:258.120000px;}
.x22_c00332{left:265.030500px;}
.x2b_c00332{left:266.394000px;}
.x8b_c00332{left:268.110000px;}
.x60_c00332{left:270.270000px;}
.x33_c00332{left:271.813500px;}
.xf_c00332{left:274.477500px;}
.x5_c00332{left:276.480000px;}
.xb7_c00332{left:277.560000px;}
.xa4_c00332{left:282.960000px;}
.x61_c00332{left:286.740000px;}
.x9a_c00332{left:287.820000px;}
.x23_c00332{left:294.499500px;}
.x4b_c00332{left:295.926482px;}
.x53_c00332{left:298.624568px;}
.x5a_c00332{left:300.240000px;}
.x10_c00332{left:301.482000px;}
.x9b_c00332{left:306.180000px;}
.x6a_c00332{left:308.340000px;}
.x1a_c00332{left:311.508000px;}
.x71_c00332{left:312.930000px;}
.x91_c00332{left:316.980000px;}
.xc3_c00332{left:319.680000px;}
.x79_c00332{left:322.380000px;}
.x2c_c00332{left:328.227000px;}
.x11_c00332{left:330.366000px;}
.x4c_c00332{left:331.836746px;}
.x24_c00332{left:333.075000px;}
.x7e_c00332{left:334.530000px;}
.xc4_c00332{left:335.880000px;}
.x62_c00332{left:337.770000px;}
.x6b_c00332{left:339.930000px;}
.xa0_c00332{left:341.820000px;}
.x8c_c00332{left:343.710000px;}
.x72_c00332{left:345.060000px;}
.x54_c00332{left:346.415409px;}
.x1b_c00332{left:351.969000px;}
.x34_c00332{left:353.880000px;}
.x92_c00332{left:355.050000px;}
.x44_c00332{left:357.127500px;}
.x6_c00332{left:359.370000px;}
.x25_c00332{left:361.188000px;}
.xad_c00332{left:362.880000px;}
.x63_c00332{left:365.040000px;}
.x4d_c00332{left:368.827062px;}
.x55_c00332{left:370.716596px;}
.xa6_c00332{left:373.410000px;}
.xb3_c00332{left:374.490000px;}
.x35_c00332{left:376.023000px;}
.x93_c00332{left:379.350000px;}
.x2d_c00332{left:381.148500px;}
.x84_c00332{left:382.860000px;}
.x5b_c00332{left:387.180000px;}
.x45_c00332{left:393.042000px;}
.xa7_c00332{left:394.200000px;}
.x56_c00332{left:395.557814px;}
.xbe_c00332{left:397.448964px;}
.x7_c00332{left:399.600000px;}
.x4e_c00332{left:400.957137px;}
.x12_c00332{left:403.818000px;}
.x64_c00332{left:405.000000px;}
.x85_c00332{left:407.970000px;}
.x1c_c00332{left:409.752000px;}
.x26_c00332{left:412.189500px;}
.xc7_c00332{left:414.720000px;}
.x73_c00332{left:420.390000px;}
.x4f_c00332{left:422.018166px;}
.x8_c00332{left:427.140000px;}
.xa5_c00332{left:428.760000px;}
.x46_c00332{left:431.379000px;}
.x2e_c00332{left:434.878500px;}
.x86_c00332{left:436.320000px;}
.x3e_c00332{left:437.554500px;}
.xb8_c00332{left:440.100000px;}
.x9c_c00332{left:441.450000px;}
.xa1_c00332{left:444.420000px;}
.x5c_c00332{left:445.500000px;}
.x65_c00332{left:446.580000px;}
.x36_c00332{left:452.163000px;}
.x87_c00332{left:454.140000px;}
.xb4_c00332{left:457.110000px;}
.x6c_c00332{left:460.080000px;}
.xa8_c00332{left:461.160000px;}
.x47_c00332{left:464.052000px;}
.x66_c00332{left:466.560000px;}
.x8d_c00332{left:468.720000px;}
.x7a_c00332{left:472.770000px;}
.x7f_c00332{left:473.850000px;}
.x13_c00332{left:475.098000px;}
.x2f_c00332{left:476.193000px;}
.x9_c00332{left:479.250000px;}
.x37_c00332{left:483.216000px;}
.x9d_c00332{left:484.650000px;}
.x88_c00332{left:485.730000px;}
.x1d_c00332{left:487.513500px;}
.xa9_c00332{left:489.240000px;}
.x8e_c00332{left:490.590000px;}
.x6d_c00332{left:493.020000px;}
.x74_c00332{left:495.180000px;}
.x14_c00332{left:498.616500px;}
.xae_c00332{left:501.390000px;}
.xa_c00332{left:503.820000px;}
.x67_c00332{left:505.440000px;}
.x27_c00332{left:506.668500px;}
.x7b_c00332{left:508.410000px;}
.x38_c00332{left:510.487500px;}
.x50_c00332{left:513.821160px;}
.x1e_c00332{left:515.598000px;}
.x94_c00332{left:518.130000px;}
.x5d_c00332{left:521.640000px;}
.x8f_c00332{left:527.310000px;}
.x57_c00332{left:528.941345px;}
.xbf_c00332{left:530.833008px;}
.x30_c00332{left:533.436000px;}
.x95_c00332{left:538.380000px;}
.xaf_c00332{left:541.080000px;}
.x15_c00332{left:546.378000px;}
.x39_c00332{left:547.479000px;}
.xb_c00332{left:548.910000px;}
.xba_c00332{left:551.629500px;}
.x51_c00332{left:556.211739px;}
.xb5_c00332{left:561.600000px;}
.x3f_c00332{left:564.711000px;}
.x40_c00332{left:586.842000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.fs5_c00332{font-size:39.203841pt;}
.fs11_c00332{font-size:43.866667pt;}
.fsc_c00332{font-size:55.066667pt;}
.fsf_c00332{font-size:56.933333pt;}
.fsd_c00332{font-size:58.800000pt;}
.fs4_c00332{font-size:58.801441pt;}
.fsa_c00332{font-size:59.733333pt;}
.fs2_c00332{font-size:60.666667pt;}
.fs7_c00332{font-size:60.668153pt;}
.fs9_c00332{font-size:61.600000pt;}
.fs6_c00332{font-size:61.601509pt;}
.fs3_c00332{font-size:61.601971pt;}
.fs1_c00332{font-size:62.533333pt;}
.fsb_c00332{font-size:63.466667pt;}
.fse_c00332{font-size:64.400000pt;}
.fs8_c00332{font-size:64.401578pt;}
.fs0_c00332{font-size:65.333333pt;}
.fs10_c00332{font-size:65.335424pt;}
.y0_c00332{bottom:0.000000pt;}
.y43_c00332{bottom:93.974075pt;}
.y42_c00332{bottom:94.249483pt;}
.y41_c00332{bottom:94.968635pt;}
.y40_c00332{bottom:95.831875pt;}
.y3f_c00332{bottom:98.693325pt;}
.y3e_c00332{bottom:99.816816pt;}
.y3d_c00332{bottom:100.468357pt;}
.y3c_c00332{bottom:100.801333pt;}
.y87_c00332{bottom:113.098667pt;}
.y86_c00332{bottom:132.594667pt;}
.y83_c00332{bottom:178.546357pt;}
.y82_c00332{bottom:178.546443pt;}
.y7d_c00332{bottom:178.546475pt;}
.y7e_c00332{bottom:178.546645pt;}
.y84_c00332{bottom:178.546795pt;}
.y81_c00332{bottom:178.546848pt;}
.y7f_c00332{bottom:178.547029pt;}
.y85_c00332{bottom:178.547328pt;}
.y80_c00332{bottom:178.547424pt;}
.y7c_c00332{bottom:196.621941pt;}
.y7b_c00332{bottom:197.320800pt;}
.y7a_c00332{bottom:199.059317pt;}
.y79_c00332{bottom:199.598816pt;}
.y78_c00332{bottom:199.721664pt;}
.y77_c00332{bottom:199.921333pt;}
.y76_c00332{bottom:218.297333pt;}
.y75_c00332{bottom:238.457333pt;}
.y74_c00332{bottom:259.061333pt;}
.y73_c00332{bottom:279.441333pt;}
.y72_c00332{bottom:300.322667pt;}
.y71_c00332{bottom:320.721333pt;}
.y70_c00332{bottom:340.881333pt;}
.y6f_c00332{bottom:361.041333pt;}
.y6e_c00332{bottom:381.441333pt;}
.y6d_c00332{bottom:402.082667pt;}
.y6c_c00332{bottom:422.057333pt;}
.y6b_c00332{bottom:442.190667pt;}
.y6a_c00332{bottom:462.589333pt;}
.y69_c00332{bottom:482.777333pt;}
.y68_c00332{bottom:503.150667pt;}
.y67_c00332{bottom:523.036000pt;}
.y66_c00332{bottom:543.241333pt;}
.y65_c00332{bottom:563.676883pt;}
.y63_c00332{bottom:563.677433pt;}
.y64_c00332{bottom:563.677549pt;}
.y62_c00332{bottom:563.677727pt;}
.y60_c00332{bottom:563.678011pt;}
.y61_c00332{bottom:563.678117pt;}
.y5f_c00332{bottom:563.678544pt;}
.y5e_c00332{bottom:563.678561pt;}
.y5d_c00332{bottom:563.678925pt;}
.y5b_c00332{bottom:563.679093pt;}
.y5c_c00332{bottom:563.679289pt;}
.y5a_c00332{bottom:563.679404pt;}
.y4f_c00332{bottom:584.320056pt;}
.y51_c00332{bottom:584.320297pt;}
.y53_c00332{bottom:584.320360pt;}
.y50_c00332{bottom:584.320572pt;}
.y58_c00332{bottom:584.320637pt;}
.y52_c00332{bottom:584.320697pt;}
.y59_c00332{bottom:584.320887pt;}
.y54_c00332{bottom:584.320929pt;}
.y57_c00332{bottom:584.321161pt;}
.y55_c00332{bottom:584.321445pt;}
.y56_c00332{bottom:584.321535pt;}
.y4e_c00332{bottom:603.080120pt;}
.y4d_c00332{bottom:603.404565pt;}
.y4c_c00332{bottom:603.607864pt;}
.y4b_c00332{bottom:603.846405pt;}
.y4a_c00332{bottom:604.069873pt;}
.y49_c00332{bottom:604.631040pt;}
.y48_c00332{bottom:604.813945pt;}
.y47_c00332{bottom:605.009031pt;}
.y46_c00332{bottom:605.146791pt;}
.y45_c00332{bottom:605.312915pt;}
.y44_c00332{bottom:605.760000pt;}
.y3b_c00332{bottom:622.983416pt;}
.y3a_c00332{bottom:623.213585pt;}
.y39_c00332{bottom:623.383275pt;}
.y38_c00332{bottom:623.576493pt;}
.y37_c00332{bottom:624.050253pt;}
.y36_c00332{bottom:624.188032pt;}
.y35_c00332{bottom:624.317355pt;}
.y34_c00332{bottom:624.698668pt;}
.y33_c00332{bottom:624.860060pt;}
.y32_c00332{bottom:625.370873pt;}
.y31_c00332{bottom:625.543811pt;}
.y30_c00332{bottom:625.920000pt;}
.y2f_c00332{bottom:643.852139pt;}
.y2e_c00332{bottom:644.259200pt;}
.y2d_c00332{bottom:644.552992pt;}
.y2c_c00332{bottom:644.935072pt;}
.y2b_c00332{bottom:645.136608pt;}
.y2a_c00332{bottom:645.311403pt;}
.y29_c00332{bottom:645.751104pt;}
.y28_c00332{bottom:645.952715pt;}
.y27_c00332{bottom:646.186976pt;}
.y26_c00332{bottom:646.609397pt;}
.y25_c00332{bottom:647.041333pt;}
.y24_c00332{bottom:664.205333pt;}
.y23_c00332{bottom:664.337333pt;}
.y22_c00332{bottom:664.877333pt;}
.y21_c00332{bottom:665.240000pt;}
.y20_c00332{bottom:665.440000pt;}
.y1f_c00332{bottom:665.714667pt;}
.y1e_c00332{bottom:665.924000pt;}
.y1d_c00332{bottom:666.062667pt;}
.y1c_c00332{bottom:666.177333pt;}
.y1b_c00332{bottom:666.648000pt;}
.y1a_c00332{bottom:666.780000pt;}
.y19_c00332{bottom:667.200000pt;}
.y18_c00332{bottom:684.296000pt;}
.y17_c00332{bottom:684.496000pt;}
.y16_c00332{bottom:685.049333pt;}
.y15_c00332{bottom:685.460000pt;}
.y14_c00332{bottom:685.748000pt;}
.y13_c00332{bottom:685.997333pt;}
.y12_c00332{bottom:686.180000pt;}
.y11_c00332{bottom:686.545333pt;}
.y10_c00332{bottom:686.758667pt;}
.yf_c00332{bottom:686.910667pt;}
.ye_c00332{bottom:687.020000pt;}
.yd_c00332{bottom:687.361333pt;}
.yc_c00332{bottom:704.484000pt;}
.yb_c00332{bottom:704.824000pt;}
.ya_c00332{bottom:704.990667pt;}
.y9_c00332{bottom:705.497333pt;}
.y8_c00332{bottom:706.020000pt;}
.y7_c00332{bottom:706.225333pt;}
.y6_c00332{bottom:706.417333pt;}
.y5_c00332{bottom:706.841333pt;}
.y4_c00332{bottom:707.029333pt;}
.y3_c00332{bottom:707.553333pt;}
.y2_c00332{bottom:707.760000pt;}
.y1_c00332{bottom:727.125333pt;}
.h7_c00332{height:39.203841pt;}
.h13_c00332{height:43.866667pt;}
.he_c00332{height:55.066667pt;}
.h11_c00332{height:56.933333pt;}
.hf_c00332{height:58.800000pt;}
.h6_c00332{height:58.801441pt;}
.hc_c00332{height:59.733333pt;}
.h4_c00332{height:60.666667pt;}
.h9_c00332{height:60.668153pt;}
.hb_c00332{height:61.600000pt;}
.h8_c00332{height:61.601509pt;}
.h5_c00332{height:61.601971pt;}
.h3_c00332{height:62.533333pt;}
.hd_c00332{height:63.466667pt;}
.h10_c00332{height:64.400000pt;}
.ha_c00332{height:64.401578pt;}
.h2_c00332{height:65.333333pt;}
.h12_c00332{height:65.335424pt;}
.h1_c00332{height:893.333333pt;}
.h0_c00332{height:893.466667pt;}
.w0_c00332{width:624.480000pt;}
.w1_c00332{width:624.666667pt;}
.x0_c00332{left:0.000000pt;}
.x3a_c00332{left:33.976000pt;}
.x3b_c00332{left:57.760000pt;}
.x31_c00332{left:67.136000pt;}
.x1_c00332{left:76.080000pt;}
.x68_c00332{left:77.040000pt;}
.xa2_c00332{left:78.000000pt;}
.xc0_c00332{left:90.480000pt;}
.x75_c00332{left:92.400000pt;}
.xbb_c00332{left:93.600683pt;}
.x7c_c00332{left:96.960000pt;}
.xc_c00332{left:101.905333pt;}
.x80_c00332{left:103.200000pt;}
.x3c_c00332{left:104.298667pt;}
.xc5_c00332{left:110.400000pt;}
.x6e_c00332{left:112.320000pt;}
.x2_c00332{left:113.520000pt;}
.x89_c00332{left:114.480000pt;}
.x96_c00332{left:115.440000pt;}
.xaa_c00332{left:116.880000pt;}
.x16_c00332{left:117.986667pt;}
.x32_c00332{left:120.877333pt;}
.xa3_c00332{left:122.880000pt;}
.x8a_c00332{left:125.040000pt;}
.x81_c00332{left:126.000000pt;}
.x69_c00332{left:127.200000pt;}
.x1f_c00332{left:128.550667pt;}
.x28_c00332{left:129.508000pt;}
.x17_c00332{left:131.664000pt;}
.x48_c00332{left:132.723377pt;}
.xb0_c00332{left:135.360000pt;}
.xc1_c00332{left:137.280000pt;}
.x41_c00332{left:139.869333pt;}
.x82_c00332{left:141.120000pt;}
.x20_c00332{left:145.105333pt;}
.x76_c00332{left:148.080000pt;}
.x18_c00332{left:150.621333pt;}
.xab_c00332{left:152.160000pt;}
.x97_c00332{left:153.120000pt;}
.x58_c00332{left:154.320000pt;}
.xbc_c00332{left:157.202091pt;}
.x5e_c00332{left:159.360000pt;}
.x9e_c00332{left:161.040000pt;}
.x42_c00332{left:163.601333pt;}
.xc2_c00332{left:166.320000pt;}
.xd_c00332{left:167.453333pt;}
.x83_c00332{left:170.640000pt;}
.x7d_c00332{left:171.840000pt;}
.x98_c00332{left:173.280000pt;}
.xbd_c00332{left:175.203243pt;}
.x3_c00332{left:177.600000pt;}
.xb1_c00332{left:178.800000pt;}
.xac_c00332{left:180.240000pt;}
.x29_c00332{left:182.310667pt;}
.x43_c00332{left:183.281333pt;}
.x3d_c00332{left:184.548000pt;}
.xb9_c00332{left:185.665333pt;}
.x6f_c00332{left:187.680000pt;}
.xe_c00332{left:190.945333pt;}
.x52_c00332{left:192.003133pt;}
.x5f_c00332{left:196.080000pt;}
.x77_c00332{left:197.280000pt;}
.xb2_c00332{left:198.720000pt;}
.xc6_c00332{left:200.160000pt;}
.x21_c00332{left:203.905333pt;}
.x59_c00332{left:207.360000pt;}
.x2a_c00332{left:211.593333pt;}
.x70_c00332{left:215.040000pt;}
.x49_c00332{left:216.004789pt;}
.x4_c00332{left:218.640000pt;}
.x99_c00332{left:220.080000pt;}
.x90_c00332{left:221.520000pt;}
.x19_c00332{left:222.865333pt;}
.x78_c00332{left:225.120000pt;}
.x4a_c00332{left:226.805321pt;}
.x9f_c00332{left:228.000000pt;}
.xb6_c00332{left:229.440000pt;}
.x22_c00332{left:235.582667pt;}
.x2b_c00332{left:236.794667pt;}
.x8b_c00332{left:238.320000pt;}
.x60_c00332{left:240.240000pt;}
.x33_c00332{left:241.612000pt;}
.xf_c00332{left:243.980000pt;}
.x5_c00332{left:245.760000pt;}
.xb7_c00332{left:246.720000pt;}
.xa4_c00332{left:251.520000pt;}
.x61_c00332{left:254.880000pt;}
.x9a_c00332{left:255.840000pt;}
.x23_c00332{left:261.777333pt;}
.x4b_c00332{left:263.045761pt;}
.x53_c00332{left:265.444060pt;}
.x5a_c00332{left:266.880000pt;}
.x10_c00332{left:267.984000pt;}
.x9b_c00332{left:272.160000pt;}
.x6a_c00332{left:274.080000pt;}
.x1a_c00332{left:276.896000pt;}
.x71_c00332{left:278.160000pt;}
.x91_c00332{left:281.760000pt;}
.xc3_c00332{left:284.160000pt;}
.x79_c00332{left:286.560000pt;}
.x2c_c00332{left:291.757333pt;}
.x11_c00332{left:293.658667pt;}
.x4c_c00332{left:294.965996pt;}
.x24_c00332{left:296.066667pt;}
.x7e_c00332{left:297.360000pt;}
.xc4_c00332{left:298.560000pt;}
.x62_c00332{left:300.240000pt;}
.x6b_c00332{left:302.160000pt;}
.xa0_c00332{left:303.840000pt;}
.x8c_c00332{left:305.520000pt;}
.x72_c00332{left:306.720000pt;}
.x54_c00332{left:307.924808pt;}
.x1b_c00332{left:312.861333pt;}
.x34_c00332{left:314.560000pt;}
.x92_c00332{left:315.600000pt;}
.x44_c00332{left:317.446667pt;}
.x6_c00332{left:319.440000pt;}
.x25_c00332{left:321.056000pt;}
.xad_c00332{left:322.560000pt;}
.x63_c00332{left:324.480000pt;}
.x4d_c00332{left:327.846277pt;}
.x55_c00332{left:329.525863pt;}
.xa6_c00332{left:331.920000pt;}
.xb3_c00332{left:332.880000pt;}
.x35_c00332{left:334.242667pt;}
.x93_c00332{left:337.200000pt;}
.x2d_c00332{left:338.798667pt;}
.x84_c00332{left:340.320000pt;}
.x5b_c00332{left:344.160000pt;}
.x45_c00332{left:349.370667pt;}
.xa7_c00332{left:350.400000pt;}
.x56_c00332{left:351.606945pt;}
.xbe_c00332{left:353.287968pt;}
.x7_c00332{left:355.200000pt;}
.x4e_c00332{left:356.406344pt;}
.x12_c00332{left:358.949333pt;}
.x64_c00332{left:360.000000pt;}
.x85_c00332{left:362.640000pt;}
.x1c_c00332{left:364.224000pt;}
.x26_c00332{left:366.390667pt;}
.xc7_c00332{left:368.640000pt;}
.x73_c00332{left:373.680000pt;}
.x4f_c00332{left:375.127259pt;}
.x8_c00332{left:379.680000pt;}
.xa5_c00332{left:381.120000pt;}
.x46_c00332{left:383.448000pt;}
.x2e_c00332{left:386.558667pt;}
.x86_c00332{left:387.840000pt;}
.x3e_c00332{left:388.937333pt;}
.xb8_c00332{left:391.200000pt;}
.x9c_c00332{left:392.400000pt;}
.xa1_c00332{left:395.040000pt;}
.x5c_c00332{left:396.000000pt;}
.x65_c00332{left:396.960000pt;}
.x36_c00332{left:401.922667pt;}
.x87_c00332{left:403.680000pt;}
.xb4_c00332{left:406.320000pt;}
.x6c_c00332{left:408.960000pt;}
.xa8_c00332{left:409.920000pt;}
.x47_c00332{left:412.490667pt;}
.x66_c00332{left:414.720000pt;}
.x8d_c00332{left:416.640000pt;}
.x7a_c00332{left:420.240000pt;}
.x7f_c00332{left:421.200000pt;}
.x13_c00332{left:422.309333pt;}
.x2f_c00332{left:423.282667pt;}
.x9_c00332{left:426.000000pt;}
.x37_c00332{left:429.525333pt;}
.x9d_c00332{left:430.800000pt;}
.x88_c00332{left:431.760000pt;}
.x1d_c00332{left:433.345333pt;}
.xa9_c00332{left:434.880000pt;}
.x8e_c00332{left:436.080000pt;}
.x6d_c00332{left:438.240000pt;}
.x74_c00332{left:440.160000pt;}
.x14_c00332{left:443.214667pt;}
.xae_c00332{left:445.680000pt;}
.xa_c00332{left:447.840000pt;}
.x67_c00332{left:449.280000pt;}
.x27_c00332{left:450.372000pt;}
.x7b_c00332{left:451.920000pt;}
.x38_c00332{left:453.766667pt;}
.x50_c00332{left:456.729920pt;}
.x1e_c00332{left:458.309333pt;}
.x94_c00332{left:460.560000pt;}
.x5d_c00332{left:463.680000pt;}
.x8f_c00332{left:468.720000pt;}
.x57_c00332{left:470.170084pt;}
.xbf_c00332{left:471.851563pt;}
.x30_c00332{left:474.165333pt;}
.x95_c00332{left:478.560000pt;}
.xaf_c00332{left:480.960000pt;}
.x15_c00332{left:485.669333pt;}
.x39_c00332{left:486.648000pt;}
.xb_c00332{left:487.920000pt;}
.xba_c00332{left:490.337333pt;}
.x51_c00332{left:494.410435pt;}
.xb5_c00332{left:499.200000pt;}
.x3f_c00332{left:501.965333pt;}
.x40_c00332{left:521.637333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m10f_c00333{transform:matrix(0.033570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033570,0.000000,0.000000,0.250000,0,0);}
.m35_c00333{transform:matrix(0.087046,-0.001219,0.003500,0.249976,0,0);-ms-transform:matrix(0.087046,-0.001219,0.003500,0.249976,0,0);-webkit-transform:matrix(0.087046,-0.001219,0.003500,0.249976,0,0);}
.me6_c00333{transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);}
.m4b_c00333{transform:matrix(0.092709,-0.001020,0.002750,0.249985,0,0);-ms-transform:matrix(0.092709,-0.001020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.092709,-0.001020,0.002750,0.249985,0,0);}
.m6e_c00333{transform:matrix(0.092929,-0.001022,0.002750,0.249985,0,0);-ms-transform:matrix(0.092929,-0.001022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.092929,-0.001022,0.002750,0.249985,0,0);}
.m31_c00333{transform:matrix(0.122173,-0.001710,0.003500,0.249976,0,0);-ms-transform:matrix(0.122173,-0.001710,0.003500,0.249976,0,0);-webkit-transform:matrix(0.122173,-0.001710,0.003500,0.249976,0,0);}
.m15a_c00333{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);}
.m7_c00333{transform:matrix(0.135505,-0.002033,0.003750,0.249972,0,0);-ms-transform:matrix(0.135505,-0.002033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.135505,-0.002033,0.003750,0.249972,0,0);}
.m9d_c00333{transform:matrix(0.140810,-0.001126,0.002000,0.249992,0,0);-ms-transform:matrix(0.140810,-0.001126,0.002000,0.249992,0,0);-webkit-transform:matrix(0.140810,-0.001126,0.002000,0.249992,0,0);}
.m8c_c00333{transform:matrix(0.140876,-0.001550,0.002750,0.249985,0,0);-ms-transform:matrix(0.140876,-0.001550,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140876,-0.001550,0.002750,0.249985,0,0);}
.mbf_c00333{transform:matrix(0.143005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143005,0.000000,0.000000,0.250000,0,0);}
.ma1_c00333{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);}
.mde_c00333{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);}
.m2d_c00333{transform:matrix(0.146226,-0.002047,0.003500,0.249976,0,0);-ms-transform:matrix(0.146226,-0.002047,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146226,-0.002047,0.003500,0.249976,0,0);}
.mb0_c00333{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);}
.me7_c00333{transform:matrix(0.147295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147295,0.000000,0.000000,0.250000,0,0);}
.m47_c00333{transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);-ms-transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150181,-0.001652,0.002750,0.249985,0,0);}
.mf6_c00333{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);}
.m7d_c00333{transform:matrix(0.152271,-0.001675,0.002750,0.249985,0,0);-ms-transform:matrix(0.152271,-0.001675,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152271,-0.001675,0.002750,0.249985,0,0);}
.m17_c00333{transform:matrix(0.153440,-0.002148,0.003500,0.249976,0,0);-ms-transform:matrix(0.153440,-0.002148,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153440,-0.002148,0.003500,0.249976,0,0);}
.m3b_c00333{transform:matrix(0.153800,-0.002153,0.003500,0.249976,0,0);-ms-transform:matrix(0.153800,-0.002153,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153800,-0.002153,0.003500,0.249976,0,0);}
.mff_c00333{transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154760,0.000000,0.000000,0.250000,0,0);}
.mfd_c00333{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.mae_c00333{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);}
.m24_c00333{transform:matrix(0.155270,-0.002174,0.003500,0.249976,0,0);-ms-transform:matrix(0.155270,-0.002174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155270,-0.002174,0.003500,0.249976,0,0);}
.m88_c00333{transform:matrix(0.156751,-0.001724,0.002750,0.249985,0,0);-ms-transform:matrix(0.156751,-0.001724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156751,-0.001724,0.002750,0.249985,0,0);}
.m4d_c00333{transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);-ms-transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157011,-0.001727,0.002750,0.249985,0,0);}
.m65_c00333{transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);-ms-transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158110,-0.001739,0.002750,0.249985,0,0);}
.m39_c00333{transform:matrix(0.158249,-0.002215,0.003500,0.249976,0,0);-ms-transform:matrix(0.158249,-0.002215,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158249,-0.002215,0.003500,0.249976,0,0);}
.m43_c00333{transform:matrix(0.158440,-0.001743,0.002750,0.249985,0,0);-ms-transform:matrix(0.158440,-0.001743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158440,-0.001743,0.002750,0.249985,0,0);}
.mf1_c00333{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);}
.m32_c00333{transform:matrix(0.160664,-0.002249,0.003500,0.249976,0,0);-ms-transform:matrix(0.160664,-0.002249,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160664,-0.002249,0.003500,0.249976,0,0);}
.m92_c00333{transform:matrix(0.160775,-0.001769,0.002750,0.249985,0,0);-ms-transform:matrix(0.160775,-0.001769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160775,-0.001769,0.002750,0.249985,0,0);}
.m135_c00333{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);}
.m37_c00333{transform:matrix(0.161189,-0.002257,0.003500,0.249976,0,0);-ms-transform:matrix(0.161189,-0.002257,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161189,-0.002257,0.003500,0.249976,0,0);}
.m100_c00333{transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.161357,-0.002420,0.003750,0.249972,0,0);-ms-transform:matrix(0.161357,-0.002420,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161357,-0.002420,0.003750,0.249972,0,0);}
.m76_c00333{transform:matrix(0.161780,-0.001780,0.002750,0.249985,0,0);-ms-transform:matrix(0.161780,-0.001780,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161780,-0.001780,0.002750,0.249985,0,0);}
.m9a_c00333{transform:matrix(0.162270,-0.001298,0.002000,0.249992,0,0);-ms-transform:matrix(0.162270,-0.001298,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162270,-0.001298,0.002000,0.249992,0,0);}
.m116_c00333{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);}
.m118_c00333{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);}
.m71_c00333{transform:matrix(0.164040,-0.001804,0.002750,0.249985,0,0);-ms-transform:matrix(0.164040,-0.001804,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164040,-0.001804,0.002750,0.249985,0,0);}
.m147_c00333{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);}
.m51_c00333{transform:matrix(0.164743,-0.001977,0.003000,0.249982,0,0);-ms-transform:matrix(0.164743,-0.001977,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164743,-0.001977,0.003000,0.249982,0,0);}
.m13a_c00333{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);}
.m137_c00333{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);}
.m2f_c00333{transform:matrix(0.165729,-0.002320,0.003500,0.249976,0,0);-ms-transform:matrix(0.165729,-0.002320,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165729,-0.002320,0.003500,0.249976,0,0);}
.ma3_c00333{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);}
.m36_c00333{transform:matrix(0.166649,-0.002333,0.003500,0.249976,0,0);-ms-transform:matrix(0.166649,-0.002333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166649,-0.002333,0.003500,0.249976,0,0);}
.md2_c00333{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);}
.mc0_c00333{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);}
.md6_c00333{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);}
.m1a_c00333{transform:matrix(0.167279,-0.002342,0.003500,0.249976,0,0);-ms-transform:matrix(0.167279,-0.002342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167279,-0.002342,0.003500,0.249976,0,0);}
.m3c_c00333{transform:matrix(0.167324,-0.002343,0.003500,0.249976,0,0);-ms-transform:matrix(0.167324,-0.002343,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167324,-0.002343,0.003500,0.249976,0,0);}
.me_c00333{transform:matrix(0.168491,-0.002527,0.003750,0.249972,0,0);-ms-transform:matrix(0.168491,-0.002527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168491,-0.002527,0.003750,0.249972,0,0);}
.mb4_c00333{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);}
.m23_c00333{transform:matrix(0.168898,-0.002365,0.003500,0.249976,0,0);-ms-transform:matrix(0.168898,-0.002365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168898,-0.002365,0.003500,0.249976,0,0);}
.m90_c00333{transform:matrix(0.168905,-0.001858,0.002750,0.249985,0,0);-ms-transform:matrix(0.168905,-0.001858,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168905,-0.001858,0.002750,0.249985,0,0);}
.m67_c00333{transform:matrix(0.169170,-0.001861,0.002750,0.249985,0,0);-ms-transform:matrix(0.169170,-0.001861,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169170,-0.001861,0.002750,0.249985,0,0);}
.m4c_c00333{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);}
.m148_c00333{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);}
.mf4_c00333{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);}
.m40_c00333{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);}
.ma7_c00333{transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);}
.ma9_c00333{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);}
.mf8_c00333{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);}
.m26_c00333{transform:matrix(0.171213,-0.002397,0.003500,0.249976,0,0);-ms-transform:matrix(0.171213,-0.002397,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171213,-0.002397,0.003500,0.249976,0,0);}
.m162_c00333{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);}
.m7e_c00333{transform:matrix(0.172090,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172090,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172090,-0.001893,0.002750,0.249985,0,0);}
.mb7_c00333{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);}
.m18_c00333{transform:matrix(0.172168,-0.002410,0.003500,0.249976,0,0);-ms-transform:matrix(0.172168,-0.002410,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172168,-0.002410,0.003500,0.249976,0,0);}
.me5_c00333{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);}
.m11b_c00333{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);}
.m20_c00333{transform:matrix(0.172583,-0.002416,0.003500,0.249976,0,0);-ms-transform:matrix(0.172583,-0.002416,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172583,-0.002416,0.003500,0.249976,0,0);}
.m12b_c00333{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);}
.m89_c00333{transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172805,-0.001901,0.002750,0.249985,0,0);}
.mb2_c00333{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);}
.m141_c00333{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);}
.mbb_c00333{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);}
.m12_c00333{transform:matrix(0.173166,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173166,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173166,-0.002597,0.003750,0.249972,0,0);}
.m146_c00333{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);}
.m66_c00333{transform:matrix(0.173540,-0.001909,0.002750,0.249985,0,0);-ms-transform:matrix(0.173540,-0.001909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173540,-0.001909,0.002750,0.249985,0,0);}
.mca_c00333{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);}
.m48_c00333{transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);}
.m119_c00333{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);}
.meb_c00333{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);}
.m7a_c00333{transform:matrix(0.173809,-0.001912,0.002750,0.249985,0,0);-ms-transform:matrix(0.173809,-0.001912,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173809,-0.001912,0.002750,0.249985,0,0);}
.md5_c00333{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);}
.m134_c00333{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);}
.mb_c00333{transform:matrix(0.174915,-0.002624,0.003750,0.249972,0,0);-ms-transform:matrix(0.174915,-0.002624,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174915,-0.002624,0.003750,0.249972,0,0);}
.m97_c00333{transform:matrix(0.175009,-0.001400,0.002000,0.249992,0,0);-ms-transform:matrix(0.175009,-0.001400,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175009,-0.001400,0.002000,0.249992,0,0);}
.m5_c00333{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);}
.m1_c00333{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);}
.m13_c00333{transform:matrix(0.175730,-0.002636,0.003750,0.249972,0,0);-ms-transform:matrix(0.175730,-0.002636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175730,-0.002636,0.003750,0.249972,0,0);}
.m33_c00333{transform:matrix(0.176283,-0.002468,0.003500,0.249976,0,0);-ms-transform:matrix(0.176283,-0.002468,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176283,-0.002468,0.003500,0.249976,0,0);}
.mcd_c00333{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);}
.m139_c00333{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);}
.m6f_c00333{transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);-ms-transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);}
.m93_c00333{transform:matrix(0.177404,-0.001951,0.002750,0.249985,0,0);-ms-transform:matrix(0.177404,-0.001951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177404,-0.001951,0.002750,0.249985,0,0);}
.m108_c00333{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);}
.mab_c00333{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);}
.m73_c00333{transform:matrix(0.177764,-0.001955,0.002750,0.249985,0,0);-ms-transform:matrix(0.177764,-0.001955,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177764,-0.001955,0.002750,0.249985,0,0);}
.mb5_c00333{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);}
.m72_c00333{transform:matrix(0.178074,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178074,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178074,-0.001959,0.002750,0.249985,0,0);}
.m44_c00333{transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178084,-0.001959,0.002750,0.249985,0,0);}
.m64_c00333{transform:matrix(0.178229,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178229,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178229,-0.001961,0.002750,0.249985,0,0);}
.m14b_c00333{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);}
.m9e_c00333{transform:matrix(0.178739,-0.001430,0.002000,0.249992,0,0);-ms-transform:matrix(0.178739,-0.001430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178739,-0.001430,0.002000,0.249992,0,0);}
.m8e_c00333{transform:matrix(0.178764,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178764,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178764,-0.001966,0.002750,0.249985,0,0);}
.mfc_c00333{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);}
.m77_c00333{transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178894,-0.001968,0.002750,0.249985,0,0);}
.mf5_c00333{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);}
.m12c_c00333{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);}
.m80_c00333{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);}
.m130_c00333{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);}
.m112_c00333{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);}
.md3_c00333{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);}
.maf_c00333{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);}
.mc1_c00333{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m98_c00333{transform:matrix(0.180799,-0.001446,0.002000,0.249992,0,0);-ms-transform:matrix(0.180799,-0.001446,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180799,-0.001446,0.002000,0.249992,0,0);}
.m8a_c00333{transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180944,-0.001990,0.002750,0.249985,0,0);}
.mbc_c00333{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);}
.m38_c00333{transform:matrix(0.181377,-0.002539,0.003500,0.249976,0,0);-ms-transform:matrix(0.181377,-0.002539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181377,-0.002539,0.003500,0.249976,0,0);}
.m136_c00333{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);}
.mf9_c00333{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);}
.ma0_c00333{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);}
.me8_c00333{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);}
.m149_c00333{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);}
.m13b_c00333{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);}
.m13f_c00333{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);}
.m8f_c00333{transform:matrix(0.182814,-0.002011,0.002750,0.249985,0,0);-ms-transform:matrix(0.182814,-0.002011,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182814,-0.002011,0.002750,0.249985,0,0);}
.m117_c00333{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);}
.md8_c00333{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);}
.m84_c00333{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);}
.mc7_c00333{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);}
.m70_c00333{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);}
.mef_c00333{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);}
.mf2_c00333{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);}
.m3_c00333{transform:matrix(0.184269,-0.002764,0.003750,0.249972,0,0);-ms-transform:matrix(0.184269,-0.002764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184269,-0.002764,0.003750,0.249972,0,0);}
.m9_c00333{transform:matrix(0.184714,-0.002771,0.003750,0.249972,0,0);-ms-transform:matrix(0.184714,-0.002771,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184714,-0.002771,0.003750,0.249972,0,0);}
.m110_c00333{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);}
.mdf_c00333{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);}
.md_c00333{transform:matrix(0.185264,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185264,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185264,-0.002779,0.003750,0.249972,0,0);}
.mad_c00333{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);}
.m46_c00333{transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);-ms-transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185484,-0.002040,0.002750,0.249985,0,0);}
.mdc_c00333{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);}
.m101_c00333{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);}
.mcc_c00333{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);}
.m142_c00333{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);}
.me9_c00333{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);}
.m105_c00333{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);}
.m95_c00333{transform:matrix(0.187099,-0.002058,0.002750,0.249985,0,0);-ms-transform:matrix(0.187099,-0.002058,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187099,-0.002058,0.002750,0.249985,0,0);}
.m3d_c00333{transform:matrix(0.187507,-0.002625,0.003500,0.249976,0,0);-ms-transform:matrix(0.187507,-0.002625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187507,-0.002625,0.003500,0.249976,0,0);}
.m3f_c00333{transform:matrix(0.187527,-0.002625,0.003500,0.249976,0,0);-ms-transform:matrix(0.187527,-0.002625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187527,-0.002625,0.003500,0.249976,0,0);}
.mcb_c00333{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);}
.me3_c00333{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);}
.m114_c00333{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);}
.m21_c00333{transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);-ms-transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);}
.m12f_c00333{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);}
.m5a_c00333{transform:matrix(0.188879,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188879,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188879,-0.002078,0.002750,0.249985,0,0);}
.m106_c00333{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);}
.mfe_c00333{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);}
.mb3_c00333{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);}
.m78_c00333{transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);}
.mc2_c00333{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);}
.maa_c00333{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);}
.m11d_c00333{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);}
.mb8_c00333{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);}
.m4a_c00333{transform:matrix(0.191163,-0.002103,0.002750,0.249985,0,0);-ms-transform:matrix(0.191163,-0.002103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191163,-0.002103,0.002750,0.249985,0,0);}
.mc_c00333{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);}
.m12d_c00333{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);}
.ma4_c00333{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);}
.m6b_c00333{transform:matrix(0.191563,-0.002107,0.002750,0.249985,0,0);-ms-transform:matrix(0.191563,-0.002107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191563,-0.002107,0.002750,0.249985,0,0);}
.mc6_c00333{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);}
.md4_c00333{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);}
.m10d_c00333{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);}
.mb6_c00333{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);}
.m128_c00333{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);}
.m52_c00333{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);}
.mc3_c00333{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);}
.m15_c00333{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);}
.me4_c00333{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);}
.me2_c00333{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);}
.m55_c00333{transform:matrix(0.193341,-0.002320,0.003000,0.249982,0,0);-ms-transform:matrix(0.193341,-0.002320,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193341,-0.002320,0.003000,0.249982,0,0);}
.mf3_c00333{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);}
.m11a_c00333{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);}
.mea_c00333{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);}
.mc4_c00333{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);}
.m27_c00333{transform:matrix(0.193981,-0.002716,0.003500,0.249976,0,0);-ms-transform:matrix(0.193981,-0.002716,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193981,-0.002716,0.003500,0.249976,0,0);}
.m138_c00333{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);}
.m143_c00333{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);}
.m16_c00333{transform:matrix(0.194941,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194941,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194941,-0.002729,0.003500,0.249976,0,0);}
.m1b_c00333{transform:matrix(0.195076,-0.002731,0.003500,0.249976,0,0);-ms-transform:matrix(0.195076,-0.002731,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195076,-0.002731,0.003500,0.249976,0,0);}
.m34_c00333{transform:matrix(0.195156,-0.002732,0.003500,0.249976,0,0);-ms-transform:matrix(0.195156,-0.002732,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195156,-0.002732,0.003500,0.249976,0,0);}
.m45_c00333{transform:matrix(0.195308,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195308,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195308,-0.002148,0.002750,0.249985,0,0);}
.mc8_c00333{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.195534,-0.001564,0.002000,0.249992,0,0);-ms-transform:matrix(0.195534,-0.001564,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195534,-0.001564,0.002000,0.249992,0,0);}
.m8d_c00333{transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);}
.m1d_c00333{transform:matrix(0.195716,-0.002740,0.003500,0.249976,0,0);-ms-transform:matrix(0.195716,-0.002740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195716,-0.002740,0.003500,0.249976,0,0);}
.m79_c00333{transform:matrix(0.195763,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195763,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195763,-0.002153,0.002750,0.249985,0,0);}
.m28_c00333{transform:matrix(0.196656,-0.002753,0.003500,0.249976,0,0);-ms-transform:matrix(0.196656,-0.002753,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196656,-0.002753,0.003500,0.249976,0,0);}
.m145_c00333{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);}
.m2c_c00333{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);}
.mfa_c00333{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m6a_c00333{transform:matrix(0.197733,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197733,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197733,-0.002175,0.002750,0.249985,0,0);}
.m13c_c00333{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.197791,-0.002769,0.003500,0.249976,0,0);-ms-transform:matrix(0.197791,-0.002769,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197791,-0.002769,0.003500,0.249976,0,0);}
.m127_c00333{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);}
.m2b_c00333{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);}
.m62_c00333{transform:matrix(0.198543,-0.002184,0.002750,0.249985,0,0);-ms-transform:matrix(0.198543,-0.002184,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198543,-0.002184,0.002750,0.249985,0,0);}
.m140_c00333{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);}
.m125_c00333{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);}
.me1_c00333{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);}
.m6c_c00333{transform:matrix(0.199498,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199498,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199498,-0.002194,0.002750,0.249985,0,0);}
.m131_c00333{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);}
.m74_c00333{transform:matrix(0.199583,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199583,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199583,-0.002195,0.002750,0.249985,0,0);}
.mf7_c00333{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);}
.mac_c00333{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);}
.mba_c00333{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);}
.ma6_c00333{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);}
.m49_c00333{transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);}
.m6_c00333{transform:matrix(0.202402,-0.003036,0.003750,0.249972,0,0);-ms-transform:matrix(0.202402,-0.003036,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202402,-0.003036,0.003750,0.249972,0,0);}
.mdb_c00333{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);}
.m12e_c00333{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);}
.m25_c00333{transform:matrix(0.203795,-0.002853,0.003500,0.249976,0,0);-ms-transform:matrix(0.203795,-0.002853,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203795,-0.002853,0.003500,0.249976,0,0);}
.m3a_c00333{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);}
.m9c_c00333{transform:matrix(0.204093,-0.001633,0.002000,0.249992,0,0);-ms-transform:matrix(0.204093,-0.001633,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204093,-0.001633,0.002000,0.249992,0,0);}
.m152_c00333{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);}
.mc9_c00333{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);}
.m29_c00333{transform:matrix(0.204670,-0.002865,0.003500,0.249976,0,0);-ms-transform:matrix(0.204670,-0.002865,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204670,-0.002865,0.003500,0.249976,0,0);}
.ma5_c00333{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);}
.m75_c00333{transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);-ms-transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205598,-0.002262,0.002750,0.249985,0,0);}
.m81_c00333{transform:matrix(0.205613,-0.002262,0.002750,0.249985,0,0);-ms-transform:matrix(0.205613,-0.002262,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205613,-0.002262,0.002750,0.249985,0,0);}
.mc5_c00333{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);}
.mcf_c00333{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);}
.m160_c00333{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);}
.ma8_c00333{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);}
.m86_c00333{transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);-ms-transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207232,-0.002280,0.002750,0.249985,0,0);}
.mbd_c00333{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);}
.md1_c00333{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);}
.m82_c00333{transform:matrix(0.208367,-0.002292,0.002750,0.249985,0,0);-ms-transform:matrix(0.208367,-0.002292,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208367,-0.002292,0.002750,0.249985,0,0);}
.m13e_c00333{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);}
.mb9_c00333{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);}
.mec_c00333{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);}
.m13d_c00333{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);}
.m104_c00333{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);}
.m53_c00333{transform:matrix(0.209550,-0.002515,0.003000,0.249982,0,0);-ms-transform:matrix(0.209550,-0.002515,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209550,-0.002515,0.003000,0.249982,0,0);}
.m103_c00333{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);}
.m41_c00333{transform:matrix(0.210277,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210277,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210277,-0.002313,0.002750,0.249985,0,0);}
.m10a_c00333{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);}
.m6d_c00333{transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);}
.m10c_c00333{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);}
.m3e_c00333{transform:matrix(0.211879,-0.002966,0.003500,0.249976,0,0);-ms-transform:matrix(0.211879,-0.002966,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211879,-0.002966,0.003500,0.249976,0,0);}
.m10b_c00333{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);}
.m91_c00333{transform:matrix(0.212317,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212317,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212317,-0.002335,0.002750,0.249985,0,0);}
.m4_c00333{transform:matrix(0.212576,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212576,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212576,-0.003189,0.003750,0.249972,0,0);}
.m14c_c00333{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);}
.mf0_c00333{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);}
.m5f_c00333{transform:matrix(0.212967,-0.002343,0.002750,0.249985,0,0);-ms-transform:matrix(0.212967,-0.002343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212967,-0.002343,0.002750,0.249985,0,0);}
.m115_c00333{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);}
.m1c_c00333{transform:matrix(0.213254,-0.002986,0.003500,0.249976,0,0);-ms-transform:matrix(0.213254,-0.002986,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213254,-0.002986,0.003500,0.249976,0,0);}
.mce_c00333{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);}
.m14a_c00333{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);}
.m151_c00333{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);}
.med_c00333{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);}
.m144_c00333{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);}
.m4f_c00333{transform:matrix(0.214530,-0.002574,0.003000,0.249982,0,0);-ms-transform:matrix(0.214530,-0.002574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214530,-0.002574,0.003000,0.249982,0,0);}
.mf_c00333{transform:matrix(0.214551,-0.003218,0.003750,0.249972,0,0);-ms-transform:matrix(0.214551,-0.003218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214551,-0.003218,0.003750,0.249972,0,0);}
.mb1_c00333{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);}
.m85_c00333{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);}
.m109_c00333{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);}
.m57_c00333{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);}
.m120_c00333{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);}
.m107_c00333{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_c00333{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);}
.m83_c00333{transform:matrix(0.217767,-0.002395,0.002750,0.249985,0,0);-ms-transform:matrix(0.217767,-0.002395,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217767,-0.002395,0.002750,0.249985,0,0);}
.m87_c00333{transform:matrix(0.218717,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218717,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218717,-0.002406,0.002750,0.249985,0,0);}
.m9b_c00333{transform:matrix(0.219083,-0.001753,0.002000,0.249992,0,0);-ms-transform:matrix(0.219083,-0.001753,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219083,-0.001753,0.002000,0.249992,0,0);}
.m30_c00333{transform:matrix(0.219369,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219369,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219369,-0.003071,0.003500,0.249976,0,0);}
.m2_c00333{transform:matrix(0.220690,-0.003310,0.003750,0.249972,0,0);-ms-transform:matrix(0.220690,-0.003310,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220690,-0.003310,0.003750,0.249972,0,0);}
.m11f_c00333{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);}
.m123_c00333{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);}
.m4e_c00333{transform:matrix(0.222669,-0.002672,0.003000,0.249982,0,0);-ms-transform:matrix(0.222669,-0.002672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222669,-0.002672,0.003000,0.249982,0,0);}
.m126_c00333{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m153_c00333{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);}
.m14e_c00333{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);}
.m42_c00333{transform:matrix(0.223436,-0.002458,0.002750,0.249985,0,0);-ms-transform:matrix(0.223436,-0.002458,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223436,-0.002458,0.002750,0.249985,0,0);}
.m60_c00333{transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);-ms-transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223731,-0.002461,0.002750,0.249985,0,0);}
.m7f_c00333{transform:matrix(0.224196,-0.002466,0.002750,0.249985,0,0);-ms-transform:matrix(0.224196,-0.002466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224196,-0.002466,0.002750,0.249985,0,0);}
.m124_c00333{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);}
.m61_c00333{transform:matrix(0.225181,-0.002477,0.002750,0.249985,0,0);-ms-transform:matrix(0.225181,-0.002477,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225181,-0.002477,0.002750,0.249985,0,0);}
.m5d_c00333{transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);-ms-transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);}
.m133_c00333{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);}
.m14d_c00333{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);}
.m58_c00333{transform:matrix(0.225969,-0.002712,0.003000,0.249982,0,0);-ms-transform:matrix(0.225969,-0.002712,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225969,-0.002712,0.003000,0.249982,0,0);}
.m156_c00333{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);}
.m11e_c00333{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);}
.ma2_c00333{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);}
.m96_c00333{transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);-ms-transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227238,-0.001818,0.002000,0.249992,0,0);}
.m129_c00333{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);}
.me0_c00333{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);}
.m154_c00333{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);}
.m122_c00333{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);}
.m10_c00333{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);}
.m11c_c00333{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);}
.m94_c00333{transform:matrix(0.230246,-0.002533,0.002750,0.249985,0,0);-ms-transform:matrix(0.230246,-0.002533,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230246,-0.002533,0.002750,0.249985,0,0);}
.m59_c00333{transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-ms-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230556,-0.002536,0.002750,0.249985,0,0);}
.m7b_c00333{transform:matrix(0.230861,-0.002539,0.002750,0.249985,0,0);-ms-transform:matrix(0.230861,-0.002539,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230861,-0.002539,0.002750,0.249985,0,0);}
.md0_c00333{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);}
.mdd_c00333{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.m102_c00333{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);}
.m68_c00333{transform:matrix(0.233206,-0.002565,0.002750,0.249985,0,0);-ms-transform:matrix(0.233206,-0.002565,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233206,-0.002565,0.002750,0.249985,0,0);}
.m50_c00333{transform:matrix(0.236463,-0.002838,0.003000,0.249982,0,0);-ms-transform:matrix(0.236463,-0.002838,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236463,-0.002838,0.003000,0.249982,0,0);}
.m54_c00333{transform:matrix(0.236788,-0.002841,0.003000,0.249982,0,0);-ms-transform:matrix(0.236788,-0.002841,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236788,-0.002841,0.003000,0.249982,0,0);}
.m14f_c00333{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);}
.m1f_c00333{transform:matrix(0.237382,-0.003323,0.003500,0.249976,0,0);-ms-transform:matrix(0.237382,-0.003323,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237382,-0.003323,0.003500,0.249976,0,0);}
.mfb_c00333{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);}
.m5b_c00333{transform:matrix(0.238566,-0.002624,0.002750,0.249985,0,0);-ms-transform:matrix(0.238566,-0.002624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238566,-0.002624,0.002750,0.249985,0,0);}
.ma_c00333{transform:matrix(0.239453,-0.003592,0.003750,0.249972,0,0);-ms-transform:matrix(0.239453,-0.003592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239453,-0.003592,0.003750,0.249972,0,0);}
.m56_c00333{transform:matrix(0.239583,-0.002875,0.003000,0.249982,0,0);-ms-transform:matrix(0.239583,-0.002875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239583,-0.002875,0.003000,0.249982,0,0);}
.m19_c00333{transform:matrix(0.240831,-0.003372,0.003500,0.249976,0,0);-ms-transform:matrix(0.240831,-0.003372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240831,-0.003372,0.003500,0.249976,0,0);}
.m15d_c00333{transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00333{transform:matrix(0.243132,-0.001945,0.002000,0.249992,0,0);-ms-transform:matrix(0.243132,-0.001945,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243132,-0.001945,0.002000,0.249992,0,0);}
.m8b_c00333{transform:matrix(0.243325,-0.002677,0.002750,0.249985,0,0);-ms-transform:matrix(0.243325,-0.002677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243325,-0.002677,0.002750,0.249985,0,0);}
.m121_c00333{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);}
.m2a_c00333{transform:matrix(0.245516,-0.003437,0.003500,0.249976,0,0);-ms-transform:matrix(0.245516,-0.003437,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245516,-0.003437,0.003500,0.249976,0,0);}
.md7_c00333{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);}
.m8_c00333{transform:matrix(0.246287,-0.003694,0.003750,0.249972,0,0);-ms-transform:matrix(0.246287,-0.003694,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246287,-0.003694,0.003750,0.249972,0,0);}
.mda_c00333{transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);}
.m113_c00333{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);}
.m150_c00333{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m7c_c00333{transform:matrix(0.252530,-0.002778,0.002750,0.249985,0,0);-ms-transform:matrix(0.252530,-0.002778,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252530,-0.002778,0.002750,0.249985,0,0);}
.mee_c00333{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);}
.m1e_c00333{transform:matrix(0.253895,-0.003555,0.003500,0.249976,0,0);-ms-transform:matrix(0.253895,-0.003555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253895,-0.003555,0.003500,0.249976,0,0);}
.m2e_c00333{transform:matrix(0.259450,-0.003632,0.003500,0.249976,0,0);-ms-transform:matrix(0.259450,-0.003632,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259450,-0.003632,0.003500,0.249976,0,0);}
.mbe_c00333{transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261035,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.262016,-0.003930,0.003750,0.249972,0,0);-ms-transform:matrix(0.262016,-0.003930,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262016,-0.003930,0.003750,0.249972,0,0);}
.m5e_c00333{transform:matrix(0.262219,-0.002884,0.002750,0.249985,0,0);-ms-transform:matrix(0.262219,-0.002884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262219,-0.002884,0.002750,0.249985,0,0);}
.m15b_c00333{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m15e_c00333{transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);}
.m10e_c00333{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);}
.m63_c00333{transform:matrix(0.283313,-0.003116,0.002750,0.249985,0,0);-ms-transform:matrix(0.283313,-0.003116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283313,-0.003116,0.002750,0.249985,0,0);}
.m111_c00333{transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306490,0.000000,0.000000,0.250000,0,0);}
.m163_c00333{transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);}
.m158_c00333{transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314575,0.000000,0.000000,0.250000,0,0);}
.m15c_c00333{transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317020,0.000000,0.000000,0.250000,0,0);}
.m15f_c00333{transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317070,0.000000,0.000000,0.250000,0,0);}
.m69_c00333{transform:matrix(0.333545,-0.003669,0.002750,0.249985,0,0);-ms-transform:matrix(0.333545,-0.003669,0.002750,0.249985,0,0);-webkit-transform:matrix(0.333545,-0.003669,0.002750,0.249985,0,0);}
.m132_c00333{transform:matrix(0.334125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334125,0.000000,0.000000,0.250000,0,0);}
.m5c_c00333{transform:matrix(0.352974,-0.003883,0.002750,0.249985,0,0);-ms-transform:matrix(0.352974,-0.003883,0.002750,0.249985,0,0);-webkit-transform:matrix(0.352974,-0.003883,0.002750,0.249985,0,0);}
.m161_c00333{transform:matrix(0.353625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353625,0.000000,0.000000,0.250000,0,0);}
.m159_c00333{transform:matrix(0.376925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376925,0.000000,0.000000,0.250000,0,0);}
.m12a_c00333{transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379150,0.000000,0.000000,0.250000,0,0);}
.m155_c00333{transform:matrix(0.431045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431045,0.000000,0.000000,0.250000,0,0);}
.m157_c00333{transform:matrix(0.500540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500540,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.592732,-0.008298,0.003500,0.249976,0,0);-ms-transform:matrix(0.592732,-0.008298,0.003500,0.249976,0,0);-webkit-transform:matrix(0.592732,-0.008298,0.003500,0.249976,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;}
.fs1d_c00333{font-size:29.400000px;}
.fs1c_c00333{font-size:38.850000px;}
.fs20_c00333{font-size:43.050000px;}
.fs17_c00333{font-size:46.200000px;}
.fs14_c00333{font-size:50.400000px;}
.fs15_c00333{font-size:52.500000px;}
.fs16_c00333{font-size:54.600000px;}
.fs1b_c00333{font-size:57.750000px;}
.fs8_c00333{font-size:57.753494px;}
.fs7_c00333{font-size:61.954460px;}
.fs11_c00333{font-size:63.000000px;}
.fs13_c00333{font-size:64.050000px;}
.fsf_c00333{font-size:67.200000px;}
.fsb_c00333{font-size:67.202150px;}
.fsa_c00333{font-size:67.204065px;}
.fs12_c00333{font-size:68.250000px;}
.fsc_c00333{font-size:69.300000px;}
.fs9_c00333{font-size:69.304193px;}
.fse_c00333{font-size:70.350000px;}
.fs4_c00333{font-size:70.356894px;}
.fs2_c00333{font-size:70.357914px;}
.fs10_c00333{font-size:71.400000px;}
.fs3_c00333{font-size:71.406997px;}
.fs1a_c00333{font-size:72.450000px;}
.fs5_c00333{font-size:72.457100px;}
.fsd_c00333{font-size:73.500000px;}
.fs6_c00333{font-size:73.504447px;}
.fs1_c00333{font-size:73.508268px;}
.fs19_c00333{font-size:76.650000px;}
.fs0_c00333{font-size:89.258746px;}
.fs1f_c00333{font-size:105.000000px;}
.fs1e_c00333{font-size:119.700000px;}
.fs18_c00333{font-size:225.750000px;}
.y0_c00333{bottom:0.000000px;}
.yec_c00333{bottom:159.285000px;}
.yea_c00333{bottom:161.176500px;}
.yeb_c00333{bottom:177.484500px;}
.ye9_c00333{bottom:178.719000px;}
.ye8_c00333{bottom:195.834000px;}
.ye7_c00333{bottom:247.675500px;}
.ye6_c00333{bottom:270.951000px;}
.ye5_c00333{bottom:293.068500px;}
.ydb_c00333{bottom:315.360000px;}
.ydc_c00333{bottom:315.738000px;}
.ydd_c00333{bottom:316.018500px;}
.yde_c00333{bottom:316.425000px;}
.ydf_c00333{bottom:316.582500px;}
.ye0_c00333{bottom:316.846500px;}
.ye1_c00333{bottom:317.332500px;}
.ye2_c00333{bottom:317.490000px;}
.ye3_c00333{bottom:317.931000px;}
.ye4_c00333{bottom:318.127500px;}
.yda_c00333{bottom:339.241500px;}
.yce_c00333{bottom:360.720000px;}
.ycf_c00333{bottom:361.183500px;}
.yd0_c00333{bottom:361.506000px;}
.yd1_c00333{bottom:361.680000px;}
.yd2_c00333{bottom:361.911000px;}
.yd3_c00333{bottom:362.364000px;}
.yd4_c00333{bottom:362.458500px;}
.yd5_c00333{bottom:362.689500px;}
.yd6_c00333{bottom:363.046500px;}
.yd7_c00333{bottom:363.330000px;}
.yd8_c00333{bottom:363.687000px;}
.yd9_c00333{bottom:363.933000px;}
.yc3_c00333{bottom:383.940000px;}
.yc4_c00333{bottom:384.172500px;}
.yc5_c00333{bottom:384.367500px;}
.yc6_c00333{bottom:384.558000px;}
.yc7_c00333{bottom:385.102500px;}
.yc8_c00333{bottom:385.285500px;}
.yc9_c00333{bottom:385.740000px;}
.yca_c00333{bottom:386.397000px;}
.ycb_c00333{bottom:386.548500px;}
.ycc_c00333{bottom:386.775000px;}
.ycd_c00333{bottom:387.093000px;}
.yc2_c00333{bottom:408.333000px;}
.yb6_c00333{bottom:430.111500px;}
.yb7_c00333{bottom:430.344000px;}
.yb8_c00333{bottom:430.533000px;}
.yb9_c00333{bottom:430.888500px;}
.yba_c00333{bottom:431.179500px;}
.ybb_c00333{bottom:431.553000px;}
.ybc_c00333{bottom:431.662500px;}
.ybd_c00333{bottom:431.785500px;}
.ybe_c00333{bottom:432.442500px;}
.ybf_c00333{bottom:432.592500px;}
.yc0_c00333{bottom:433.131000px;}
.yc1_c00333{bottom:433.305000px;}
.yac_c00333{bottom:452.791500px;}
.yad_c00333{bottom:453.313500px;}
.yae_c00333{bottom:453.655500px;}
.yaf_c00333{bottom:454.066500px;}
.yb0_c00333{bottom:454.248000px;}
.yb1_c00333{bottom:455.017500px;}
.yb2_c00333{bottom:455.337000px;}
.yb3_c00333{bottom:455.778000px;}
.yb4_c00333{bottom:455.965500px;}
.yb5_c00333{bottom:456.526500px;}
.ya2_c00333{bottom:476.010000px;}
.ya3_c00333{bottom:476.250000px;}
.ya4_c00333{bottom:476.622000px;}
.ya5_c00333{bottom:477.051000px;}
.yfa_c00333{bottom:477.223500px;}
.ya6_c00333{bottom:477.291000px;}
.ya7_c00333{bottom:477.739500px;}
.ya8_c00333{bottom:478.006500px;}
.ya9_c00333{bottom:478.339500px;}
.yaa_c00333{bottom:478.699500px;}
.yab_c00333{bottom:479.169000px;}
.ya1_c00333{bottom:500.127000px;}
.yf8_c00333{bottom:504.495000px;}
.yf9_c00333{bottom:506.119500px;}
.y97_c00333{bottom:522.180000px;}
.y98_c00333{bottom:522.571260px;}
.y99_c00333{bottom:522.960084px;}
.y9a_c00333{bottom:523.212792px;}
.y9b_c00333{bottom:523.992336px;}
.y9c_c00333{bottom:524.351148px;}
.y9d_c00333{bottom:525.102528px;}
.y9e_c00333{bottom:525.392316px;}
.y9f_c00333{bottom:525.625296px;}
.ya0_c00333{bottom:525.807012px;}
.yf7_c00333{bottom:537.030000px;}
.y8b_c00333{bottom:544.316148px;}
.y8c_c00333{bottom:544.758261px;}
.y8d_c00333{bottom:544.968970px;}
.y8e_c00333{bottom:545.287914px;}
.y8f_c00333{bottom:545.465901px;}
.y90_c00333{bottom:545.695950px;}
.y91_c00333{bottom:546.633540px;}
.y92_c00333{bottom:547.346510px;}
.y93_c00333{bottom:547.581428px;}
.y94_c00333{bottom:548.097697px;}
.y95_c00333{bottom:548.495502px;}
.y96_c00333{bottom:548.666079px;}
.y7e_c00333{bottom:567.266859px;}
.y7f_c00333{bottom:567.432879px;}
.y80_c00333{bottom:567.734300px;}
.y81_c00333{bottom:567.881106px;}
.y82_c00333{bottom:568.123449px;}
.y83_c00333{bottom:568.466992px;}
.y84_c00333{bottom:569.035168px;}
.y85_c00333{bottom:569.197506px;}
.y86_c00333{bottom:569.359218px;}
.y87_c00333{bottom:569.551532px;}
.y88_c00333{bottom:569.950866px;}
.y89_c00333{bottom:570.523119px;}
.y8a_c00333{bottom:570.752967px;}
.y72_c00333{bottom:590.219947px;}
.y73_c00333{bottom:590.535051px;}
.y74_c00333{bottom:590.980437px;}
.y75_c00333{bottom:591.412470px;}
.y76_c00333{bottom:591.909520px;}
.y77_c00333{bottom:592.045597px;}
.y78_c00333{bottom:592.220250px;}
.y79_c00333{bottom:592.442144px;}
.y7a_c00333{bottom:592.625626px;}
.y7b_c00333{bottom:592.869704px;}
.y7c_c00333{bottom:593.288416px;}
.y7d_c00333{bottom:593.800735px;}
.y65_c00333{bottom:612.361500px;}
.y66_c00333{bottom:612.602054px;}
.y67_c00333{bottom:612.842310px;}
.y68_c00333{bottom:613.240686px;}
.y69_c00333{bottom:613.837755px;}
.y6a_c00333{bottom:614.461719px;}
.y6b_c00333{bottom:614.645611px;}
.y6c_c00333{bottom:615.527751px;}
.y6d_c00333{bottom:615.831103px;}
.y6e_c00333{bottom:616.201677px;}
.y6f_c00333{bottom:616.747299px;}
.y70_c00333{bottom:616.902383px;}
.y71_c00333{bottom:617.306831px;}
.yf6_c00333{bottom:628.020000px;}
.y5a_c00333{bottom:635.041500px;}
.y5b_c00333{bottom:635.825629px;}
.y5c_c00333{bottom:636.134625px;}
.y5d_c00333{bottom:637.025576px;}
.y5e_c00333{bottom:637.301868px;}
.yf5_c00333{bottom:637.470000px;}
.y5f_c00333{bottom:637.648846px;}
.y60_c00333{bottom:638.281423px;}
.y61_c00333{bottom:638.726957px;}
.y62_c00333{bottom:639.170014px;}
.y63_c00333{bottom:639.446175px;}
.y64_c00333{bottom:639.695539px;}
.yf4_c00333{bottom:650.157000px;}
.y4f_c00333{bottom:657.991500px;}
.y50_c00333{bottom:658.872096px;}
.y51_c00333{bottom:659.404500px;}
.y52_c00333{bottom:660.216084px;}
.yf3_c00333{bottom:660.280500px;}
.y53_c00333{bottom:660.411870px;}
.y54_c00333{bottom:660.733350px;}
.y55_c00333{bottom:661.015644px;}
.y56_c00333{bottom:661.967160px;}
.y57_c00333{bottom:662.423352px;}
.y58_c00333{bottom:662.728596px;}
.y59_c00333{bottom:663.318312px;}
.yf2_c00333{bottom:679.860000px;}
.y41_c00333{bottom:681.481500px;}
.y42_c00333{bottom:681.745682px;}
.y43_c00333{bottom:682.274539px;}
.y44_c00333{bottom:682.541823px;}
.y45_c00333{bottom:682.859563px;}
.y46_c00333{bottom:683.278564px;}
.y47_c00333{bottom:683.691345px;}
.y48_c00333{bottom:683.955724px;}
.y49_c00333{bottom:684.416107px;}
.y4a_c00333{bottom:684.823030px;}
.y4b_c00333{bottom:685.022367px;}
.y4c_c00333{bottom:685.662386px;}
.y4d_c00333{bottom:685.827319px;}
.y4e_c00333{bottom:686.370467px;}
.yf1_c00333{bottom:691.878000px;}
.y37_c00333{bottom:704.696589px;}
.y38_c00333{bottom:705.076152px;}
.y39_c00333{bottom:705.365568px;}
.y3a_c00333{bottom:706.242063px;}
.y3b_c00333{bottom:706.459062px;}
.y3c_c00333{bottom:707.475078px;}
.y3d_c00333{bottom:707.692497px;}
.y3e_c00333{bottom:708.131328px;}
.y3f_c00333{bottom:708.773085px;}
.y40_c00333{bottom:709.702074px;}
.y2c_c00333{bottom:726.840087px;}
.y2d_c00333{bottom:727.199208px;}
.y2e_c00333{bottom:728.718726px;}
.y2f_c00333{bottom:728.949432px;}
.y30_c00333{bottom:729.554379px;}
.y31_c00333{bottom:730.170666px;}
.y32_c00333{bottom:731.118459px;}
.y33_c00333{bottom:731.282091px;}
.y34_c00333{bottom:732.071985px;}
.y35_c00333{bottom:732.763872px;}
.y36_c00333{bottom:733.487658px;}
.y21_c00333{bottom:749.521500px;}
.y22_c00333{bottom:749.975793px;}
.y23_c00333{bottom:750.584478px;}
.y24_c00333{bottom:751.692165px;}
.y25_c00333{bottom:752.413221px;}
.y26_c00333{bottom:752.644893px;}
.y27_c00333{bottom:753.340560px;}
.y28_c00333{bottom:753.964197px;}
.y29_c00333{bottom:754.309206px;}
.y2a_c00333{bottom:755.418678px;}
.y2b_c00333{bottom:755.669250px;}
.y16_c00333{bottom:772.741500px;}
.y17_c00333{bottom:773.271603px;}
.y18_c00333{bottom:774.228216px;}
.y19_c00333{bottom:774.771633px;}
.y1a_c00333{bottom:775.189239px;}
.y1b_c00333{bottom:776.738367px;}
.y1c_c00333{bottom:777.138207px;}
.y1d_c00333{bottom:777.573768px;}
.y1e_c00333{bottom:777.875286px;}
.y1f_c00333{bottom:778.590651px;}
.y20_c00333{bottom:778.969029px;}
.yf0_c00333{bottom:791.910000px;}
.ye_c00333{bottom:795.421208px;}
.yf_c00333{bottom:796.574670px;}
.y10_c00333{bottom:797.587553px;}
.y11_c00333{bottom:799.483155px;}
.y12_c00333{bottom:800.466945px;}
.y13_c00333{bottom:800.986627px;}
.yef_c00333{bottom:801.627000px;}
.y14_c00333{bottom:801.782497px;}
.y15_c00333{bottom:802.208782px;}
.y2_c00333{bottom:818.373000px;}
.y3_c00333{bottom:819.073560px;}
.y4_c00333{bottom:819.975945px;}
.y5_c00333{bottom:820.621042px;}
.y6_c00333{bottom:821.504032px;}
.y7_c00333{bottom:822.152573px;}
.y8_c00333{bottom:823.370160px;}
.y9_c00333{bottom:823.553603px;}
.ya_c00333{bottom:823.758915px;}
.yb_c00333{bottom:824.047658px;}
.yc_c00333{bottom:824.370712px;}
.yee_c00333{bottom:824.727000px;}
.yd_c00333{bottom:825.113595px;}
.yed_c00333{bottom:856.299000px;}
.y1_c00333{bottom:865.087500px;}
.h1f_c00333{height:29.400000px;}
.h1e_c00333{height:38.850000px;}
.h22_c00333{height:43.050000px;}
.h19_c00333{height:46.200000px;}
.h16_c00333{height:50.400000px;}
.h17_c00333{height:52.500000px;}
.h18_c00333{height:54.600000px;}
.h1d_c00333{height:57.750000px;}
.ha_c00333{height:57.753494px;}
.h9_c00333{height:61.954460px;}
.h13_c00333{height:63.000000px;}
.h15_c00333{height:64.050000px;}
.h11_c00333{height:67.200000px;}
.hd_c00333{height:67.202150px;}
.hc_c00333{height:67.204065px;}
.h14_c00333{height:68.250000px;}
.he_c00333{height:69.300000px;}
.hb_c00333{height:69.304193px;}
.h10_c00333{height:70.350000px;}
.h6_c00333{height:70.356894px;}
.h4_c00333{height:70.357914px;}
.h12_c00333{height:71.400000px;}
.h5_c00333{height:71.406997px;}
.h1c_c00333{height:72.450000px;}
.h7_c00333{height:72.457100px;}
.hf_c00333{height:73.500000px;}
.h8_c00333{height:73.504447px;}
.h3_c00333{height:73.508268px;}
.h1b_c00333{height:76.650000px;}
.h2_c00333{height:89.258746px;}
.h21_c00333{height:105.000000px;}
.h20_c00333{height:119.700000px;}
.h1a_c00333{height:225.750000px;}
.h0_c00333{height:1008.450000px;}
.h1_c00333{height:1008.750000px;}
.w0_c00333{width:696.000000px;}
.x0_c00333{left:0.000000px;}
.xa9_c00333{left:140.130000px;}
.x33_c00333{left:142.159500px;}
.x2_c00333{left:144.390000px;}
.x47_c00333{left:145.405500px;}
.x73_c00333{left:146.610000px;}
.x91_c00333{left:148.051500px;}
.xb0_c00333{left:149.310000px;}
.xba_c00333{left:151.470000px;}
.xa3_c00333{left:161.733000px;}
.xb4_c00333{left:163.350000px;}
.x34_c00333{left:166.176000px;}
.x4e_c00333{left:168.078000px;}
.x25_c00333{left:170.565936px;}
.x1c_c00333{left:177.576000px;}
.x2d_c00333{left:179.373324px;}
.x84_c00333{left:180.690000px;}
.x15_c00333{left:182.431500px;}
.x56_c00333{left:185.595327px;}
.x4f_c00333{left:189.919500px;}
.x3_c00333{left:191.094000px;}
.xaa_c00333{left:197.100000px;}
.x9e_c00333{left:201.783000px;}
.x5c_c00333{left:204.461887px;}
.x2e_c00333{left:205.618416px;}
.x85_c00333{left:207.724500px;}
.x92_c00333{left:209.077500px;}
.x64_c00333{left:211.274100px;}
.x7e_c00333{left:212.290500px;}
.x35_c00333{left:214.254000px;}
.x48_c00333{left:216.690000px;}
.x3f_c00333{left:218.538000px;}
.xe_c00333{left:221.612273px;}
.x5d_c00333{left:222.853998px;}
.x74_c00333{left:224.910000px;}
.x50_c00333{left:226.135500px;}
.xb1_c00333{left:227.340000px;}
.xab_c00333{left:229.500000px;}
.x79_c00333{left:234.721500px;}
.x93_c00333{left:236.347500px;}
.x36_c00333{left:238.552500px;}
.x6e_c00333{left:239.595000px;}
.x57_c00333{left:241.223159px;}
.x65_c00333{left:243.132947px;}
.x49_c00333{left:244.780500px;}
.x4_c00333{left:251.253000px;}
.x5e_c00333{left:253.067988px;}
.x7f_c00333{left:254.961000px;}
.xbb_c00333{left:257.310000px;}
.x86_c00333{left:258.484500px;}
.x66_c00333{left:260.950145px;}
.x40_c00333{left:262.905000px;}
.x99_c00333{left:265.143000px;}
.x37_c00333{left:267.438000px;}
.x6f_c00333{left:271.183500px;}
.xac_c00333{left:274.050000px;}
.x8a_c00333{left:276.751500px;}
.x26_c00333{left:279.102936px;}
.x1_c00333{left:280.207500px;}
.xa4_c00333{left:282.423000px;}
.x67_c00333{left:283.909392px;}
.x2f_c00333{left:285.264255px;}
.xf_c00333{left:289.137773px;}
.x5_c00333{left:294.259500px;}
.x27_c00333{left:295.581936px;}
.x8b_c00333{left:299.161500px;}
.x1d_c00333{left:300.174000px;}
.xbc_c00333{left:303.750000px;}
.x30_c00333{left:304.943574px;}
.x80_c00333{left:306.249000px;}
.x94_c00333{left:314.101500px;}
.x16_c00333{left:319.405500px;}
.x9f_c00333{left:322.207500px;}
.x4a_c00333{left:325.776000px;}
.x81_c00333{left:328.968000px;}
.x41_c00333{left:330.537000px;}
.x75_c00333{left:332.370000px;}
.xbd_c00333{left:335.340000px;}
.x51_c00333{left:337.138500px;}
.x28_c00333{left:338.792436px;}
.x95_c00333{left:340.272000px;}
.x38_c00333{left:343.054500px;}
.x42_c00333{left:346.852500px;}
.x1e_c00333{left:351.678000px;}
.x6_c00333{left:353.125500px;}
.x9a_c00333{left:355.863000px;}
.x58_c00333{left:357.325487px;}
.xa0_c00333{left:360.013500px;}
.x76_c00333{left:362.610000px;}
.x39_c00333{left:367.089000px;}
.x1f_c00333{left:368.226000px;}
.x43_c00333{left:373.642500px;}
.x68_c00333{left:377.600415px;}
.x8c_c00333{left:378.811500px;}
.x29_c00333{left:382.812936px;}
.x5f_c00333{left:387.259410px;}
.xad_c00333{left:389.070000px;}
.x9b_c00333{left:392.853000px;}
.x7a_c00333{left:394.284000px;}
.x7_c00333{left:396.361500px;}
.xb2_c00333{left:400.680000px;}
.x96_c00333{left:405.096000px;}
.x60_c00333{left:407.552086px;}
.x3a_c00333{left:408.942000px;}
.x70_c00333{left:413.478000px;}
.x10_c00333{left:415.511273px;}
.x20_c00333{left:417.916500px;}
.xb5_c00333{left:420.390000px;}
.x59_c00333{left:424.020697px;}
.x82_c00333{left:425.079000px;}
.x17_c00333{left:430.057500px;}
.x61_c00333{left:431.581378px;}
.x52_c00333{left:434.050500px;}
.xb6_c00333{left:435.780000px;}
.x4b_c00333{left:439.944000px;}
.xa5_c00333{left:443.343000px;}
.x3b_c00333{left:445.935000px;}
.x5a_c00333{left:446.974456px;}
.x69_c00333{left:448.825691px;}
.x2a_c00333{left:450.512436px;}
.xa1_c00333{left:451.807500px;}
.x8d_c00333{left:454.411500px;}
.x31_c00333{left:456.968958px;}
.x18_c00333{left:458.617500px;}
.x21_c00333{left:462.462000px;}
.x3c_c00333{left:464.056500px;}
.xb9_c00333{left:468.450000px;}
.x77_c00333{left:469.530000px;}
.xa6_c00333{left:470.883000px;}
.x6a_c00333{left:472.363955px;}
.xb7_c00333{left:473.580000px;}
.x44_c00333{left:476.460000px;}
.x8_c00333{left:477.534000px;}
.x7b_c00333{left:479.875500px;}
.x11_c00333{left:481.097273px;}
.x8e_c00333{left:485.461500px;}
.x22_c00333{left:487.105500px;}
.x9_c00333{left:489.763500px;}
.x53_c00333{left:495.316500px;}
.x97_c00333{left:499.054500px;}
.x9c_c00333{left:500.313000px;}
.x87_c00333{left:502.015500px;}
.xa_c00333{left:503.451000px;}
.x71_c00333{left:507.400500px;}
.xae_c00333{left:508.680000px;}
.x19_c00333{left:511.266000px;}
.x45_c00333{left:514.476000px;}
.x12_c00333{left:515.742773px;}
.x2b_c00333{left:518.621436px;}
.x4c_c00333{left:520.725000px;}
.xb_c00333{left:522.700500px;}
.x6b_c00333{left:523.934516px;}
.x5b_c00333{left:529.867195px;}
.x7c_c00333{left:531.205500px;}
.x3d_c00333{left:537.234000px;}
.x46_c00333{left:539.913000px;}
.xa2_c00333{left:542.794500px;}
.xc_c00333{left:544.237500px;}
.x4d_c00333{left:545.830500px;}
.xb8_c00333{left:547.560000px;}
.x62_c00333{left:553.047888px;}
.x78_c00333{left:555.120000px;}
.xb3_c00333{left:557.280000px;}
.x54_c00333{left:559.017000px;}
.x1a_c00333{left:562.363500px;}
.x6c_c00333{left:563.644444px;}
.x23_c00333{left:566.353500px;}
.x13_c00333{left:568.800772px;}
.x9d_c00333{left:571.053000px;}
.x72_c00333{left:572.746500px;}
.xa7_c00333{left:574.833000px;}
.x88_c00333{left:578.971500px;}
.x6d_c00333{left:580.651626px;}
.x63_c00333{left:581.716829px;}
.x24_c00333{left:584.251500px;}
.x3e_c00333{left:586.611000px;}
.x1b_c00333{left:589.390500px;}
.x8f_c00333{left:592.381500px;}
.xd_c00333{left:593.763000px;}
.x55_c00333{left:595.785000px;}
.x14_c00333{left:597.219773px;}
.x7d_c00333{left:598.383000px;}
.x32_c00333{left:599.813964px;}
.xa8_c00333{left:601.833000px;}
.x89_c00333{left:603.802500px;}
.x98_c00333{left:607.599000px;}
.xaf_c00333{left:609.390000px;}
.x83_c00333{left:613.809000px;}
.x90_c00333{left:616.411500px;}
.x2c_c00333{left:619.740936px;}
.xbe_c00333{left:634.770000px;}
.xbf_c00333{left:645.030000px;}
.xc3_c00333{left:648.270000px;}
.xc6_c00333{left:649.890000px;}
.xc1_c00333{left:650.970000px;}
.xc7_c00333{left:656.100000px;}
.xc0_c00333{left:658.530000px;}
.xc2_c00333{left:659.880000px;}
.xc4_c00333{left:663.120000px;}
.xc5_c00333{left:670.950000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fs1d_c00333{font-size:26.133333pt;}
.fs1c_c00333{font-size:34.533333pt;}
.fs20_c00333{font-size:38.266667pt;}
.fs17_c00333{font-size:41.066667pt;}
.fs14_c00333{font-size:44.800000pt;}
.fs15_c00333{font-size:46.666667pt;}
.fs16_c00333{font-size:48.533333pt;}
.fs1b_c00333{font-size:51.333333pt;}
.fs8_c00333{font-size:51.336439pt;}
.fs7_c00333{font-size:55.070631pt;}
.fs11_c00333{font-size:56.000000pt;}
.fs13_c00333{font-size:56.933333pt;}
.fsf_c00333{font-size:59.733333pt;}
.fsb_c00333{font-size:59.735245pt;}
.fsa_c00333{font-size:59.736947pt;}
.fs12_c00333{font-size:60.666667pt;}
.fsc_c00333{font-size:61.600000pt;}
.fs9_c00333{font-size:61.603727pt;}
.fse_c00333{font-size:62.533333pt;}
.fs4_c00333{font-size:62.539461pt;}
.fs2_c00333{font-size:62.540368pt;}
.fs10_c00333{font-size:63.466667pt;}
.fs3_c00333{font-size:63.472886pt;}
.fs1a_c00333{font-size:64.400000pt;}
.fs5_c00333{font-size:64.406311pt;}
.fsd_c00333{font-size:65.333333pt;}
.fs6_c00333{font-size:65.337286pt;}
.fs1_c00333{font-size:65.340683pt;}
.fs19_c00333{font-size:68.133333pt;}
.fs0_c00333{font-size:79.341108pt;}
.fs1f_c00333{font-size:93.333333pt;}
.fs1e_c00333{font-size:106.400000pt;}
.fs18_c00333{font-size:200.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.yec_c00333{bottom:141.586667pt;}
.yea_c00333{bottom:143.268000pt;}
.yeb_c00333{bottom:157.764000pt;}
.ye9_c00333{bottom:158.861333pt;}
.ye8_c00333{bottom:174.074667pt;}
.ye7_c00333{bottom:220.156000pt;}
.ye6_c00333{bottom:240.845333pt;}
.ye5_c00333{bottom:260.505333pt;}
.ydb_c00333{bottom:280.320000pt;}
.ydc_c00333{bottom:280.656000pt;}
.ydd_c00333{bottom:280.905333pt;}
.yde_c00333{bottom:281.266667pt;}
.ydf_c00333{bottom:281.406667pt;}
.ye0_c00333{bottom:281.641333pt;}
.ye1_c00333{bottom:282.073333pt;}
.ye2_c00333{bottom:282.213333pt;}
.ye3_c00333{bottom:282.605333pt;}
.ye4_c00333{bottom:282.780000pt;}
.yda_c00333{bottom:301.548000pt;}
.yce_c00333{bottom:320.640000pt;}
.ycf_c00333{bottom:321.052000pt;}
.yd0_c00333{bottom:321.338667pt;}
.yd1_c00333{bottom:321.493333pt;}
.yd2_c00333{bottom:321.698667pt;}
.yd3_c00333{bottom:322.101333pt;}
.yd4_c00333{bottom:322.185333pt;}
.yd5_c00333{bottom:322.390667pt;}
.yd6_c00333{bottom:322.708000pt;}
.yd7_c00333{bottom:322.960000pt;}
.yd8_c00333{bottom:323.277333pt;}
.yd9_c00333{bottom:323.496000pt;}
.yc3_c00333{bottom:341.280000pt;}
.yc4_c00333{bottom:341.486667pt;}
.yc5_c00333{bottom:341.660000pt;}
.yc6_c00333{bottom:341.829333pt;}
.yc7_c00333{bottom:342.313333pt;}
.yc8_c00333{bottom:342.476000pt;}
.yc9_c00333{bottom:342.880000pt;}
.yca_c00333{bottom:343.464000pt;}
.ycb_c00333{bottom:343.598667pt;}
.ycc_c00333{bottom:343.800000pt;}
.ycd_c00333{bottom:344.082667pt;}
.yc2_c00333{bottom:362.962667pt;}
.yb6_c00333{bottom:382.321333pt;}
.yb7_c00333{bottom:382.528000pt;}
.yb8_c00333{bottom:382.696000pt;}
.yb9_c00333{bottom:383.012000pt;}
.yba_c00333{bottom:383.270667pt;}
.ybb_c00333{bottom:383.602667pt;}
.ybc_c00333{bottom:383.700000pt;}
.ybd_c00333{bottom:383.809333pt;}
.ybe_c00333{bottom:384.393333pt;}
.ybf_c00333{bottom:384.526667pt;}
.yc0_c00333{bottom:385.005333pt;}
.yc1_c00333{bottom:385.160000pt;}
.yac_c00333{bottom:402.481333pt;}
.yad_c00333{bottom:402.945333pt;}
.yae_c00333{bottom:403.249333pt;}
.yaf_c00333{bottom:403.614667pt;}
.yb0_c00333{bottom:403.776000pt;}
.yb1_c00333{bottom:404.460000pt;}
.yb2_c00333{bottom:404.744000pt;}
.yb3_c00333{bottom:405.136000pt;}
.yb4_c00333{bottom:405.302667pt;}
.yb5_c00333{bottom:405.801333pt;}
.ya2_c00333{bottom:423.120000pt;}
.ya3_c00333{bottom:423.333333pt;}
.ya4_c00333{bottom:423.664000pt;}
.ya5_c00333{bottom:424.045333pt;}
.yfa_c00333{bottom:424.198667pt;}
.ya6_c00333{bottom:424.258667pt;}
.ya7_c00333{bottom:424.657333pt;}
.ya8_c00333{bottom:424.894667pt;}
.ya9_c00333{bottom:425.190667pt;}
.yaa_c00333{bottom:425.510667pt;}
.yab_c00333{bottom:425.928000pt;}
.ya1_c00333{bottom:444.557333pt;}
.yf8_c00333{bottom:448.440000pt;}
.yf9_c00333{bottom:449.884000pt;}
.y97_c00333{bottom:464.160000pt;}
.y98_c00333{bottom:464.507787pt;}
.y99_c00333{bottom:464.853408pt;}
.y9a_c00333{bottom:465.078037pt;}
.y9b_c00333{bottom:465.770965pt;}
.y9c_c00333{bottom:466.089909pt;}
.y9d_c00333{bottom:466.757803pt;}
.y9e_c00333{bottom:467.015392pt;}
.y9f_c00333{bottom:467.222485pt;}
.ya0_c00333{bottom:467.384011pt;}
.yf7_c00333{bottom:477.360000pt;}
.y8b_c00333{bottom:483.836576pt;}
.y8c_c00333{bottom:484.229565pt;}
.y8d_c00333{bottom:484.416863pt;}
.y8e_c00333{bottom:484.700368pt;}
.y8f_c00333{bottom:484.858579pt;}
.y90_c00333{bottom:485.063067pt;}
.y91_c00333{bottom:485.896480pt;}
.y92_c00333{bottom:486.530231pt;}
.y93_c00333{bottom:486.739047pt;}
.y94_c00333{bottom:487.197953pt;}
.y95_c00333{bottom:487.551557pt;}
.y96_c00333{bottom:487.703181pt;}
.y7e_c00333{bottom:504.237208pt;}
.y7f_c00333{bottom:504.384781pt;}
.y80_c00333{bottom:504.652711pt;}
.y81_c00333{bottom:504.783205pt;}
.y82_c00333{bottom:504.998621pt;}
.y83_c00333{bottom:505.303993pt;}
.y84_c00333{bottom:505.809039pt;}
.y85_c00333{bottom:505.953339pt;}
.y86_c00333{bottom:506.097083pt;}
.y87_c00333{bottom:506.268028pt;}
.y88_c00333{bottom:506.622992pt;}
.y89_c00333{bottom:507.131661pt;}
.y8a_c00333{bottom:507.335971pt;}
.y72_c00333{bottom:524.639953pt;}
.y73_c00333{bottom:524.920045pt;}
.y74_c00333{bottom:525.315944pt;}
.y75_c00333{bottom:525.699973pt;}
.y76_c00333{bottom:526.141796pt;}
.y77_c00333{bottom:526.262753pt;}
.y78_c00333{bottom:526.418000pt;}
.y79_c00333{bottom:526.615239pt;}
.y7a_c00333{bottom:526.778335pt;}
.y7b_c00333{bottom:526.995292pt;}
.y7c_c00333{bottom:527.367481pt;}
.y7d_c00333{bottom:527.822876pt;}
.y65_c00333{bottom:544.321333pt;}
.y66_c00333{bottom:544.535159pt;}
.y67_c00333{bottom:544.748720pt;}
.y68_c00333{bottom:545.102832pt;}
.y69_c00333{bottom:545.633560pt;}
.y6a_c00333{bottom:546.188195pt;}
.y6b_c00333{bottom:546.351655pt;}
.y6c_c00333{bottom:547.135779pt;}
.y6d_c00333{bottom:547.405425pt;}
.y6e_c00333{bottom:547.734824pt;}
.y6f_c00333{bottom:548.219821pt;}
.y70_c00333{bottom:548.357673pt;}
.y71_c00333{bottom:548.717183pt;}
.yf6_c00333{bottom:558.240000pt;}
.y5a_c00333{bottom:564.481333pt;}
.y5b_c00333{bottom:565.178337pt;}
.y5c_c00333{bottom:565.453000pt;}
.y5d_c00333{bottom:566.244956pt;}
.y5e_c00333{bottom:566.490549pt;}
.yf5_c00333{bottom:566.640000pt;}
.y5f_c00333{bottom:566.798975pt;}
.y60_c00333{bottom:567.361265pt;}
.y61_c00333{bottom:567.757295pt;}
.y62_c00333{bottom:568.151124pt;}
.y63_c00333{bottom:568.396600pt;}
.y64_c00333{bottom:568.618257pt;}
.yf4_c00333{bottom:577.917333pt;}
.y4f_c00333{bottom:584.881333pt;}
.y50_c00333{bottom:585.664085pt;}
.y51_c00333{bottom:586.137333pt;}
.y52_c00333{bottom:586.858741pt;}
.yf3_c00333{bottom:586.916000pt;}
.y53_c00333{bottom:587.032773pt;}
.y54_c00333{bottom:587.318533pt;}
.y55_c00333{bottom:587.569461pt;}
.y56_c00333{bottom:588.415253pt;}
.y57_c00333{bottom:588.820757pt;}
.y58_c00333{bottom:589.092085pt;}
.y59_c00333{bottom:589.616277pt;}
.yf2_c00333{bottom:604.320000pt;}
.y41_c00333{bottom:605.761333pt;}
.y42_c00333{bottom:605.996161pt;}
.y43_c00333{bottom:606.466257pt;}
.y44_c00333{bottom:606.703843pt;}
.y45_c00333{bottom:606.986279pt;}
.y46_c00333{bottom:607.358724pt;}
.y47_c00333{bottom:607.725640pt;}
.y48_c00333{bottom:607.960644pt;}
.y49_c00333{bottom:608.369873pt;}
.y4a_c00333{bottom:608.731583pt;}
.y4b_c00333{bottom:608.908771pt;}
.y4c_c00333{bottom:609.477676pt;}
.y4d_c00333{bottom:609.624284pt;}
.y4e_c00333{bottom:610.107081pt;}
.yf1_c00333{bottom:615.002667pt;}
.y37_c00333{bottom:626.396968pt;}
.y38_c00333{bottom:626.734357pt;}
.y39_c00333{bottom:626.991616pt;}
.y3a_c00333{bottom:627.770723pt;}
.y3b_c00333{bottom:627.963611pt;}
.y3c_c00333{bottom:628.866736pt;}
.y3d_c00333{bottom:629.059997pt;}
.y3e_c00333{bottom:629.450069pt;}
.y3f_c00333{bottom:630.020520pt;}
.y40_c00333{bottom:630.846288pt;}
.y2c_c00333{bottom:646.080077pt;}
.y2d_c00333{bottom:646.399296pt;}
.y2e_c00333{bottom:647.749979pt;}
.y2f_c00333{bottom:647.955051pt;}
.y30_c00333{bottom:648.492781pt;}
.y31_c00333{bottom:649.040592pt;}
.y32_c00333{bottom:649.883075pt;}
.y33_c00333{bottom:650.028525pt;}
.y34_c00333{bottom:650.730653pt;}
.y35_c00333{bottom:651.345664pt;}
.y36_c00333{bottom:651.989029pt;}
.y21_c00333{bottom:666.241333pt;}
.y22_c00333{bottom:666.645149pt;}
.y23_c00333{bottom:667.186203pt;}
.y24_c00333{bottom:668.170813pt;}
.y25_c00333{bottom:668.811752pt;}
.y26_c00333{bottom:669.017683pt;}
.y27_c00333{bottom:669.636053pt;}
.y28_c00333{bottom:670.190397pt;}
.y29_c00333{bottom:670.497072pt;}
.y2a_c00333{bottom:671.483269pt;}
.y2b_c00333{bottom:671.706000pt;}
.y16_c00333{bottom:686.881333pt;}
.y17_c00333{bottom:687.352536pt;}
.y18_c00333{bottom:688.202859pt;}
.y19_c00333{bottom:688.685896pt;}
.y1a_c00333{bottom:689.057101pt;}
.y1b_c00333{bottom:690.434104pt;}
.y1c_c00333{bottom:690.789517pt;}
.y1d_c00333{bottom:691.176683pt;}
.y1e_c00333{bottom:691.444699pt;}
.y1f_c00333{bottom:692.080579pt;}
.y20_c00333{bottom:692.416915pt;}
.yf0_c00333{bottom:703.920000pt;}
.ye_c00333{bottom:707.041073pt;}
.yf_c00333{bottom:708.066373pt;}
.y10_c00333{bottom:708.966713pt;}
.y11_c00333{bottom:710.651693pt;}
.y12_c00333{bottom:711.526173pt;}
.y13_c00333{bottom:711.988113pt;}
.yef_c00333{bottom:712.557333pt;}
.y14_c00333{bottom:712.695553pt;}
.y15_c00333{bottom:713.074473pt;}
.y2_c00333{bottom:727.442667pt;}
.y3_c00333{bottom:728.065387pt;}
.y4_c00333{bottom:728.867507pt;}
.y5_c00333{bottom:729.440927pt;}
.y6_c00333{bottom:730.225807pt;}
.y7_c00333{bottom:730.802287pt;}
.y8_c00333{bottom:731.884587pt;}
.y9_c00333{bottom:732.047647pt;}
.ya_c00333{bottom:732.230147pt;}
.yb_c00333{bottom:732.486807pt;}
.yc_c00333{bottom:732.773967pt;}
.yee_c00333{bottom:733.090667pt;}
.yd_c00333{bottom:733.434307pt;}
.yed_c00333{bottom:761.154667pt;}
.y1_c00333{bottom:768.966667pt;}
.h1f_c00333{height:26.133333pt;}
.h1e_c00333{height:34.533333pt;}
.h22_c00333{height:38.266667pt;}
.h19_c00333{height:41.066667pt;}
.h16_c00333{height:44.800000pt;}
.h17_c00333{height:46.666667pt;}
.h18_c00333{height:48.533333pt;}
.h1d_c00333{height:51.333333pt;}
.ha_c00333{height:51.336439pt;}
.h9_c00333{height:55.070631pt;}
.h13_c00333{height:56.000000pt;}
.h15_c00333{height:56.933333pt;}
.h11_c00333{height:59.733333pt;}
.hd_c00333{height:59.735245pt;}
.hc_c00333{height:59.736947pt;}
.h14_c00333{height:60.666667pt;}
.he_c00333{height:61.600000pt;}
.hb_c00333{height:61.603727pt;}
.h10_c00333{height:62.533333pt;}
.h6_c00333{height:62.539461pt;}
.h4_c00333{height:62.540368pt;}
.h12_c00333{height:63.466667pt;}
.h5_c00333{height:63.472886pt;}
.h1c_c00333{height:64.400000pt;}
.h7_c00333{height:64.406311pt;}
.hf_c00333{height:65.333333pt;}
.h8_c00333{height:65.337286pt;}
.h3_c00333{height:65.340683pt;}
.h1b_c00333{height:68.133333pt;}
.h2_c00333{height:79.341108pt;}
.h21_c00333{height:93.333333pt;}
.h20_c00333{height:106.400000pt;}
.h1a_c00333{height:200.666667pt;}
.h0_c00333{height:896.400000pt;}
.h1_c00333{height:896.666667pt;}
.w0_c00333{width:618.666667pt;}
.x0_c00333{left:0.000000pt;}
.xa9_c00333{left:124.560000pt;}
.x33_c00333{left:126.364000pt;}
.x2_c00333{left:128.346667pt;}
.x47_c00333{left:129.249333pt;}
.x73_c00333{left:130.320000pt;}
.x91_c00333{left:131.601333pt;}
.xb0_c00333{left:132.720000pt;}
.xba_c00333{left:134.640000pt;}
.xa3_c00333{left:143.762667pt;}
.xb4_c00333{left:145.200000pt;}
.x34_c00333{left:147.712000pt;}
.x4e_c00333{left:149.402667pt;}
.x25_c00333{left:151.614165pt;}
.x1c_c00333{left:157.845333pt;}
.x2d_c00333{left:159.442955pt;}
.x84_c00333{left:160.613333pt;}
.x15_c00333{left:162.161333pt;}
.x56_c00333{left:164.973624pt;}
.x4f_c00333{left:168.817333pt;}
.x3_c00333{left:169.861333pt;}
.xaa_c00333{left:175.200000pt;}
.x9e_c00333{left:179.362667pt;}
.x5c_c00333{left:181.743900pt;}
.x2e_c00333{left:182.771925pt;}
.x85_c00333{left:184.644000pt;}
.x92_c00333{left:185.846667pt;}
.x64_c00333{left:187.799200pt;}
.x7e_c00333{left:188.702667pt;}
.x35_c00333{left:190.448000pt;}
.x48_c00333{left:192.613333pt;}
.x3f_c00333{left:194.256000pt;}
.xe_c00333{left:196.988687pt;}
.x5d_c00333{left:198.092443pt;}
.x74_c00333{left:199.920000pt;}
.x50_c00333{left:201.009333pt;}
.xb1_c00333{left:202.080000pt;}
.xab_c00333{left:204.000000pt;}
.x79_c00333{left:208.641333pt;}
.x93_c00333{left:210.086667pt;}
.x36_c00333{left:212.046667pt;}
.x6e_c00333{left:212.973333pt;}
.x57_c00333{left:214.420585pt;}
.x65_c00333{left:216.118175pt;}
.x49_c00333{left:217.582667pt;}
.x4_c00333{left:223.336000pt;}
.x5e_c00333{left:224.949323pt;}
.x7f_c00333{left:226.632000pt;}
.xbb_c00333{left:228.720000pt;}
.x86_c00333{left:229.764000pt;}
.x66_c00333{left:231.955684pt;}
.x40_c00333{left:233.693333pt;}
.x99_c00333{left:235.682667pt;}
.x37_c00333{left:237.722667pt;}
.x6f_c00333{left:241.052000pt;}
.xac_c00333{left:243.600000pt;}
.x8a_c00333{left:246.001333pt;}
.x26_c00333{left:248.091499pt;}
.x1_c00333{left:249.073333pt;}
.xa4_c00333{left:251.042667pt;}
.x67_c00333{left:252.363904pt;}
.x2f_c00333{left:253.568227pt;}
.xf_c00333{left:257.011353pt;}
.x5_c00333{left:261.564000pt;}
.x27_c00333{left:262.739499pt;}
.x8b_c00333{left:265.921333pt;}
.x1d_c00333{left:266.821333pt;}
.xbc_c00333{left:270.000000pt;}
.x30_c00333{left:271.060955pt;}
.x80_c00333{left:272.221333pt;}
.x94_c00333{left:279.201333pt;}
.x16_c00333{left:283.916000pt;}
.x9f_c00333{left:286.406667pt;}
.x4a_c00333{left:289.578667pt;}
.x81_c00333{left:292.416000pt;}
.x41_c00333{left:293.810667pt;}
.x75_c00333{left:295.440000pt;}
.xbd_c00333{left:298.080000pt;}
.x51_c00333{left:299.678667pt;}
.x28_c00333{left:301.148832pt;}
.x95_c00333{left:302.464000pt;}
.x38_c00333{left:304.937333pt;}
.x42_c00333{left:308.313333pt;}
.x1e_c00333{left:312.602667pt;}
.x6_c00333{left:313.889333pt;}
.x9a_c00333{left:316.322667pt;}
.x58_c00333{left:317.622655pt;}
.xa0_c00333{left:320.012000pt;}
.x76_c00333{left:322.320000pt;}
.x39_c00333{left:326.301333pt;}
.x1f_c00333{left:327.312000pt;}
.x43_c00333{left:332.126667pt;}
.x68_c00333{left:335.644813pt;}
.x8c_c00333{left:336.721333pt;}
.x29_c00333{left:340.278165pt;}
.x5f_c00333{left:344.230587pt;}
.xad_c00333{left:345.840000pt;}
.x9b_c00333{left:349.202667pt;}
.x7a_c00333{left:350.474667pt;}
.x7_c00333{left:352.321333pt;}
.xb2_c00333{left:356.160000pt;}
.x96_c00333{left:360.085333pt;}
.x60_c00333{left:362.268521pt;}
.x3a_c00333{left:363.504000pt;}
.x70_c00333{left:367.536000pt;}
.x10_c00333{left:369.343353pt;}
.x20_c00333{left:371.481333pt;}
.xb5_c00333{left:373.680000pt;}
.x59_c00333{left:376.907287pt;}
.x82_c00333{left:377.848000pt;}
.x17_c00333{left:382.273333pt;}
.x61_c00333{left:383.627892pt;}
.x52_c00333{left:385.822667pt;}
.xb6_c00333{left:387.360000pt;}
.x4b_c00333{left:391.061333pt;}
.xa5_c00333{left:394.082667pt;}
.x3b_c00333{left:396.386667pt;}
.x5a_c00333{left:397.310628pt;}
.x69_c00333{left:398.956169pt;}
.x2a_c00333{left:400.455499pt;}
.xa1_c00333{left:401.606667pt;}
.x8d_c00333{left:403.921333pt;}
.x31_c00333{left:406.194629pt;}
.x18_c00333{left:407.660000pt;}
.x21_c00333{left:411.077333pt;}
.x3c_c00333{left:412.494667pt;}
.xb9_c00333{left:416.400000pt;}
.x77_c00333{left:417.360000pt;}
.xa6_c00333{left:418.562667pt;}
.x6a_c00333{left:419.879071pt;}
.xb7_c00333{left:420.960000pt;}
.x44_c00333{left:423.520000pt;}
.x8_c00333{left:424.474667pt;}
.x7b_c00333{left:426.556000pt;}
.x11_c00333{left:427.642020pt;}
.x8e_c00333{left:431.521333pt;}
.x22_c00333{left:432.982667pt;}
.x9_c00333{left:435.345333pt;}
.x53_c00333{left:440.281333pt;}
.x97_c00333{left:443.604000pt;}
.x9c_c00333{left:444.722667pt;}
.x87_c00333{left:446.236000pt;}
.xa_c00333{left:447.512000pt;}
.x71_c00333{left:451.022667pt;}
.xae_c00333{left:452.160000pt;}
.x19_c00333{left:454.458667pt;}
.x45_c00333{left:457.312000pt;}
.x12_c00333{left:458.438020pt;}
.x2b_c00333{left:460.996832pt;}
.x4c_c00333{left:462.866667pt;}
.xb_c00333{left:464.622667pt;}
.x6b_c00333{left:465.719569pt;}
.x5b_c00333{left:470.993063pt;}
.x7c_c00333{left:472.182667pt;}
.x3d_c00333{left:477.541333pt;}
.x46_c00333{left:479.922667pt;}
.xa2_c00333{left:482.484000pt;}
.xc_c00333{left:483.766667pt;}
.x4d_c00333{left:485.182667pt;}
.xb8_c00333{left:486.720000pt;}
.x62_c00333{left:491.598123pt;}
.x78_c00333{left:493.440000pt;}
.xb3_c00333{left:495.360000pt;}
.x54_c00333{left:496.904000pt;}
.x1a_c00333{left:499.878667pt;}
.x6c_c00333{left:501.017284pt;}
.x23_c00333{left:503.425333pt;}
.x13_c00333{left:505.600687pt;}
.x9d_c00333{left:507.602667pt;}
.x72_c00333{left:509.108000pt;}
.xa7_c00333{left:510.962667pt;}
.x88_c00333{left:514.641333pt;}
.x6d_c00333{left:516.134779pt;}
.x63_c00333{left:517.081625pt;}
.x24_c00333{left:519.334667pt;}
.x3e_c00333{left:521.432000pt;}
.x1b_c00333{left:523.902667pt;}
.x8f_c00333{left:526.561333pt;}
.xd_c00333{left:527.789333pt;}
.x55_c00333{left:529.586667pt;}
.x14_c00333{left:530.862020pt;}
.x7d_c00333{left:531.896000pt;}
.x32_c00333{left:533.167968pt;}
.xa8_c00333{left:534.962667pt;}
.x89_c00333{left:536.713333pt;}
.x98_c00333{left:540.088000pt;}
.xaf_c00333{left:541.680000pt;}
.x83_c00333{left:545.608000pt;}
.x90_c00333{left:547.921333pt;}
.x2c_c00333{left:550.880832pt;}
.xbe_c00333{left:564.240000pt;}
.xbf_c00333{left:573.360000pt;}
.xc3_c00333{left:576.240000pt;}
.xc6_c00333{left:577.680000pt;}
.xc1_c00333{left:578.640000pt;}
.xc7_c00333{left:583.200000pt;}
.xc0_c00333{left:585.360000pt;}
.xc2_c00333{left:586.560000pt;}
.xc4_c00333{left:589.440000pt;}
.xc5_c00333{left:596.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_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;}
.mef_c00334{transform:matrix(0.013056,-0.000313,0.005998,0.249928,0,0);-ms-transform:matrix(0.013056,-0.000313,0.005998,0.249928,0,0);-webkit-transform:matrix(0.013056,-0.000313,0.005998,0.249928,0,0);}
.mf1_c00334{transform:matrix(0.014481,-0.000348,0.005998,0.249928,0,0);-ms-transform:matrix(0.014481,-0.000348,0.005998,0.249928,0,0);-webkit-transform:matrix(0.014481,-0.000348,0.005998,0.249928,0,0);}
.mf0_c00334{transform:matrix(0.015361,-0.000369,0.005998,0.249928,0,0);-ms-transform:matrix(0.015361,-0.000369,0.005998,0.249928,0,0);-webkit-transform:matrix(0.015361,-0.000369,0.005998,0.249928,0,0);}
.m151_c00334{transform:matrix(0.016624,-0.000432,0.006498,0.249916,0,0);-ms-transform:matrix(0.016624,-0.000432,0.006498,0.249916,0,0);-webkit-transform:matrix(0.016624,-0.000432,0.006498,0.249916,0,0);}
.m118_c00334{transform:matrix(0.021384,-0.000492,0.005748,0.249934,0,0);-ms-transform:matrix(0.021384,-0.000492,0.005748,0.249934,0,0);-webkit-transform:matrix(0.021384,-0.000492,0.005748,0.249934,0,0);}
.m116_c00334{transform:matrix(0.023909,-0.000550,0.005748,0.249934,0,0);-ms-transform:matrix(0.023909,-0.000550,0.005748,0.249934,0,0);-webkit-transform:matrix(0.023909,-0.000550,0.005748,0.249934,0,0);}
.m157_c00334{transform:matrix(0.024632,-0.000640,0.006498,0.249916,0,0);-ms-transform:matrix(0.024632,-0.000640,0.006498,0.249916,0,0);-webkit-transform:matrix(0.024632,-0.000640,0.006498,0.249916,0,0);}
.m156_c00334{transform:matrix(0.041946,-0.001091,0.006498,0.249916,0,0);-ms-transform:matrix(0.041946,-0.001091,0.006498,0.249916,0,0);-webkit-transform:matrix(0.041946,-0.001091,0.006498,0.249916,0,0);}
.m115_c00334{transform:matrix(0.080374,-0.001849,0.005748,0.249934,0,0);-ms-transform:matrix(0.080374,-0.001849,0.005748,0.249934,0,0);-webkit-transform:matrix(0.080374,-0.001849,0.005748,0.249934,0,0);}
.m126_c00334{transform:matrix(0.088227,-0.002029,0.005748,0.249934,0,0);-ms-transform:matrix(0.088227,-0.002029,0.005748,0.249934,0,0);-webkit-transform:matrix(0.088227,-0.002029,0.005748,0.249934,0,0);}
.m114_c00334{transform:matrix(0.096235,-0.002213,0.005748,0.249934,0,0);-ms-transform:matrix(0.096235,-0.002213,0.005748,0.249934,0,0);-webkit-transform:matrix(0.096235,-0.002213,0.005748,0.249934,0,0);}
.m142_c00334{transform:matrix(0.109398,-0.002844,0.006498,0.249916,0,0);-ms-transform:matrix(0.109398,-0.002844,0.006498,0.249916,0,0);-webkit-transform:matrix(0.109398,-0.002844,0.006498,0.249916,0,0);}
.m117_c00334{transform:matrix(0.112400,-0.002585,0.005748,0.249934,0,0);-ms-transform:matrix(0.112400,-0.002585,0.005748,0.249934,0,0);-webkit-transform:matrix(0.112400,-0.002585,0.005748,0.249934,0,0);}
.m122_c00334{transform:matrix(0.115055,-0.002646,0.005748,0.249934,0,0);-ms-transform:matrix(0.115055,-0.002646,0.005748,0.249934,0,0);-webkit-transform:matrix(0.115055,-0.002646,0.005748,0.249934,0,0);}
.m10e_c00334{transform:matrix(0.135581,-0.003254,0.005998,0.249928,0,0);-ms-transform:matrix(0.135581,-0.003254,0.005998,0.249928,0,0);-webkit-transform:matrix(0.135581,-0.003254,0.005998,0.249928,0,0);}
.md4_c00334{transform:matrix(0.136580,-0.002322,0.004249,0.249964,0,0);-ms-transform:matrix(0.136580,-0.002322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.136580,-0.002322,0.004249,0.249964,0,0);}
.m154_c00334{transform:matrix(0.137449,-0.003574,0.006498,0.249916,0,0);-ms-transform:matrix(0.137449,-0.003574,0.006498,0.249916,0,0);-webkit-transform:matrix(0.137449,-0.003574,0.006498,0.249916,0,0);}
.m152_c00334{transform:matrix(0.138648,-0.003605,0.006498,0.249916,0,0);-ms-transform:matrix(0.138648,-0.003605,0.006498,0.249916,0,0);-webkit-transform:matrix(0.138648,-0.003605,0.006498,0.249916,0,0);}
.m1a_c00334{transform:matrix(0.139050,-0.002364,0.004249,0.249964,0,0);-ms-transform:matrix(0.139050,-0.002364,0.004249,0.249964,0,0);-webkit-transform:matrix(0.139050,-0.002364,0.004249,0.249964,0,0);}
.md2_c00334{transform:matrix(0.139420,-0.002370,0.004249,0.249964,0,0);-ms-transform:matrix(0.139420,-0.002370,0.004249,0.249964,0,0);-webkit-transform:matrix(0.139420,-0.002370,0.004249,0.249964,0,0);}
.m147_c00334{transform:matrix(0.140283,-0.003647,0.006498,0.249916,0,0);-ms-transform:matrix(0.140283,-0.003647,0.006498,0.249916,0,0);-webkit-transform:matrix(0.140283,-0.003647,0.006498,0.249916,0,0);}
.m7a_c00334{transform:matrix(0.140620,-0.002391,0.004249,0.249964,0,0);-ms-transform:matrix(0.140620,-0.002391,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140620,-0.002391,0.004249,0.249964,0,0);}
.m14c_c00334{transform:matrix(0.142517,-0.003705,0.006498,0.249916,0,0);-ms-transform:matrix(0.142517,-0.003705,0.006498,0.249916,0,0);-webkit-transform:matrix(0.142517,-0.003705,0.006498,0.249916,0,0);}
.m44_c00334{transform:matrix(0.143519,-0.002440,0.004249,0.249964,0,0);-ms-transform:matrix(0.143519,-0.002440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143519,-0.002440,0.004249,0.249964,0,0);}
.m76_c00334{transform:matrix(0.143854,-0.002446,0.004249,0.249964,0,0);-ms-transform:matrix(0.143854,-0.002446,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143854,-0.002446,0.004249,0.249964,0,0);}
.m69_c00334{transform:matrix(0.144099,-0.002450,0.004249,0.249964,0,0);-ms-transform:matrix(0.144099,-0.002450,0.004249,0.249964,0,0);-webkit-transform:matrix(0.144099,-0.002450,0.004249,0.249964,0,0);}
.mcf_c00334{transform:matrix(0.146849,-0.002496,0.004249,0.249964,0,0);-ms-transform:matrix(0.146849,-0.002496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146849,-0.002496,0.004249,0.249964,0,0);}
.m73_c00334{transform:matrix(0.147094,-0.002501,0.004249,0.249964,0,0);-ms-transform:matrix(0.147094,-0.002501,0.004249,0.249964,0,0);-webkit-transform:matrix(0.147094,-0.002501,0.004249,0.249964,0,0);}
.m3f_c00334{transform:matrix(0.148269,-0.002521,0.004249,0.249964,0,0);-ms-transform:matrix(0.148269,-0.002521,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148269,-0.002521,0.004249,0.249964,0,0);}
.m3a_c00334{transform:matrix(0.148908,-0.002531,0.004249,0.249964,0,0);-ms-transform:matrix(0.148908,-0.002531,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148908,-0.002531,0.004249,0.249964,0,0);}
.m111_c00334{transform:matrix(0.148947,-0.003575,0.005998,0.249928,0,0);-ms-transform:matrix(0.148947,-0.003575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.148947,-0.003575,0.005998,0.249928,0,0);}
.m45_c00334{transform:matrix(0.148948,-0.002532,0.004249,0.249964,0,0);-ms-transform:matrix(0.148948,-0.002532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.148948,-0.002532,0.004249,0.249964,0,0);}
.m7b_c00334{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);}
.mac_c00334{transform:matrix(0.150103,-0.002552,0.004249,0.249964,0,0);-ms-transform:matrix(0.150103,-0.002552,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150103,-0.002552,0.004249,0.249964,0,0);}
.m96_c00334{transform:matrix(0.150293,-0.002555,0.004249,0.249964,0,0);-ms-transform:matrix(0.150293,-0.002555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150293,-0.002555,0.004249,0.249964,0,0);}
.m10_c00334{transform:matrix(0.152408,-0.002591,0.004249,0.249964,0,0);-ms-transform:matrix(0.152408,-0.002591,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152408,-0.002591,0.004249,0.249964,0,0);}
.md3_c00334{transform:matrix(0.152928,-0.002600,0.004249,0.249964,0,0);-ms-transform:matrix(0.152928,-0.002600,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152928,-0.002600,0.004249,0.249964,0,0);}
.mf6_c00334{transform:matrix(0.153166,-0.003676,0.005998,0.249928,0,0);-ms-transform:matrix(0.153166,-0.003676,0.005998,0.249928,0,0);-webkit-transform:matrix(0.153166,-0.003676,0.005998,0.249928,0,0);}
.m8d_c00334{transform:matrix(0.153393,-0.002608,0.004249,0.249964,0,0);-ms-transform:matrix(0.153393,-0.002608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153393,-0.002608,0.004249,0.249964,0,0);}
.m74_c00334{transform:matrix(0.153563,-0.002611,0.004249,0.249964,0,0);-ms-transform:matrix(0.153563,-0.002611,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153563,-0.002611,0.004249,0.249964,0,0);}
.m97_c00334{transform:matrix(0.154503,-0.002627,0.004249,0.249964,0,0);-ms-transform:matrix(0.154503,-0.002627,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154503,-0.002627,0.004249,0.249964,0,0);}
.m8b_c00334{transform:matrix(0.154523,-0.002627,0.004249,0.249964,0,0);-ms-transform:matrix(0.154523,-0.002627,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154523,-0.002627,0.004249,0.249964,0,0);}
.m31_c00334{transform:matrix(0.155718,-0.002647,0.004249,0.249964,0,0);-ms-transform:matrix(0.155718,-0.002647,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155718,-0.002647,0.004249,0.249964,0,0);}
.mfe_c00334{transform:matrix(0.156225,-0.003749,0.005998,0.249928,0,0);-ms-transform:matrix(0.156225,-0.003749,0.005998,0.249928,0,0);-webkit-transform:matrix(0.156225,-0.003749,0.005998,0.249928,0,0);}
.m2e_c00334{transform:matrix(0.156362,-0.002658,0.004249,0.249964,0,0);-ms-transform:matrix(0.156362,-0.002658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156362,-0.002658,0.004249,0.249964,0,0);}
.m124_c00334{transform:matrix(0.156978,-0.003611,0.005748,0.249934,0,0);-ms-transform:matrix(0.156978,-0.003611,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156978,-0.003611,0.005748,0.249934,0,0);}
.m13a_c00334{transform:matrix(0.157502,-0.004095,0.006498,0.249916,0,0);-ms-transform:matrix(0.157502,-0.004095,0.006498,0.249916,0,0);-webkit-transform:matrix(0.157502,-0.004095,0.006498,0.249916,0,0);}
.m24_c00334{transform:matrix(0.158157,-0.002689,0.004249,0.249964,0,0);-ms-transform:matrix(0.158157,-0.002689,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158157,-0.002689,0.004249,0.249964,0,0);}
.md7_c00334{transform:matrix(0.159437,-0.002710,0.004249,0.249964,0,0);-ms-transform:matrix(0.159437,-0.002710,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159437,-0.002710,0.004249,0.249964,0,0);}
.m2b_c00334{transform:matrix(0.159492,-0.002711,0.004249,0.249964,0,0);-ms-transform:matrix(0.159492,-0.002711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159492,-0.002711,0.004249,0.249964,0,0);}
.m38_c00334{transform:matrix(0.159587,-0.002713,0.004249,0.249964,0,0);-ms-transform:matrix(0.159587,-0.002713,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159587,-0.002713,0.004249,0.249964,0,0);}
.ma2_c00334{transform:matrix(0.159617,-0.002713,0.004249,0.249964,0,0);-ms-transform:matrix(0.159617,-0.002713,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159617,-0.002713,0.004249,0.249964,0,0);}
.m2c_c00334{transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);-ms-transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159787,-0.002716,0.004249,0.249964,0,0);}
.ma_c00334{transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);-ms-transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);}
.m91_c00334{transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);-ms-transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);}
.m22_c00334{transform:matrix(0.160082,-0.002721,0.004249,0.249964,0,0);-ms-transform:matrix(0.160082,-0.002721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160082,-0.002721,0.004249,0.249964,0,0);}
.m18_c00334{transform:matrix(0.160257,-0.002724,0.004249,0.249964,0,0);-ms-transform:matrix(0.160257,-0.002724,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160257,-0.002724,0.004249,0.249964,0,0);}
.m4_c00334{transform:matrix(0.160322,-0.002725,0.004249,0.249964,0,0);-ms-transform:matrix(0.160322,-0.002725,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160322,-0.002725,0.004249,0.249964,0,0);}
.m13b_c00334{transform:matrix(0.160806,-0.004181,0.006498,0.249916,0,0);-ms-transform:matrix(0.160806,-0.004181,0.006498,0.249916,0,0);-webkit-transform:matrix(0.160806,-0.004181,0.006498,0.249916,0,0);}
.mb7_c00334{transform:matrix(0.161482,-0.002745,0.004249,0.249964,0,0);-ms-transform:matrix(0.161482,-0.002745,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161482,-0.002745,0.004249,0.249964,0,0);}
.m15_c00334{transform:matrix(0.161792,-0.002750,0.004249,0.249964,0,0);-ms-transform:matrix(0.161792,-0.002750,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161792,-0.002750,0.004249,0.249964,0,0);}
.meb_c00334{transform:matrix(0.162013,-0.003888,0.005998,0.249928,0,0);-ms-transform:matrix(0.162013,-0.003888,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162013,-0.003888,0.005998,0.249928,0,0);}
.m132_c00334{transform:matrix(0.162175,-0.004217,0.006498,0.249916,0,0);-ms-transform:matrix(0.162175,-0.004217,0.006498,0.249916,0,0);-webkit-transform:matrix(0.162175,-0.004217,0.006498,0.249916,0,0);}
.m10a_c00334{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);}
.m88_c00334{transform:matrix(0.162527,-0.002763,0.004249,0.249964,0,0);-ms-transform:matrix(0.162527,-0.002763,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162527,-0.002763,0.004249,0.249964,0,0);}
.m10f_c00334{transform:matrix(0.162983,-0.003912,0.005998,0.249928,0,0);-ms-transform:matrix(0.162983,-0.003912,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162983,-0.003912,0.005998,0.249928,0,0);}
.mb4_c00334{transform:matrix(0.163076,-0.002772,0.004249,0.249964,0,0);-ms-transform:matrix(0.163076,-0.002772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163076,-0.002772,0.004249,0.249964,0,0);}
.mc7_c00334{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);}
.mda_c00334{transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);-ms-transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);}
.m103_c00334{transform:matrix(0.163528,-0.003925,0.005998,0.249928,0,0);-ms-transform:matrix(0.163528,-0.003925,0.005998,0.249928,0,0);-webkit-transform:matrix(0.163528,-0.003925,0.005998,0.249928,0,0);}
.md9_c00334{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);}
.mfc_c00334{transform:matrix(0.164158,-0.003940,0.005998,0.249928,0,0);-ms-transform:matrix(0.164158,-0.003940,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164158,-0.003940,0.005998,0.249928,0,0);}
.m14a_c00334{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);}
.m16_c00334{transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);-ms-transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);}
.mb0_c00334{transform:matrix(0.164716,-0.002800,0.004249,0.249964,0,0);-ms-transform:matrix(0.164716,-0.002800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164716,-0.002800,0.004249,0.249964,0,0);}
.m62_c00334{transform:matrix(0.164831,-0.002802,0.004249,0.249964,0,0);-ms-transform:matrix(0.164831,-0.002802,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164831,-0.002802,0.004249,0.249964,0,0);}
.m11c_c00334{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);}
.m102_c00334{transform:matrix(0.165352,-0.003968,0.005998,0.249928,0,0);-ms-transform:matrix(0.165352,-0.003968,0.005998,0.249928,0,0);-webkit-transform:matrix(0.165352,-0.003968,0.005998,0.249928,0,0);}
.m95_c00334{transform:matrix(0.165371,-0.002811,0.004249,0.249964,0,0);-ms-transform:matrix(0.165371,-0.002811,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165371,-0.002811,0.004249,0.249964,0,0);}
.m6a_c00334{transform:matrix(0.165561,-0.002815,0.004249,0.249964,0,0);-ms-transform:matrix(0.165561,-0.002815,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165561,-0.002815,0.004249,0.249964,0,0);}
.m1b_c00334{transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);-ms-transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);}
.me5_c00334{transform:matrix(0.166046,-0.002823,0.004249,0.249964,0,0);-ms-transform:matrix(0.166046,-0.002823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166046,-0.002823,0.004249,0.249964,0,0);}
.m89_c00334{transform:matrix(0.166171,-0.002825,0.004249,0.249964,0,0);-ms-transform:matrix(0.166171,-0.002825,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166171,-0.002825,0.004249,0.249964,0,0);}
.me2_c00334{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);}
.m0_c00334{transform:matrix(0.166226,-0.002826,0.004249,0.249964,0,0);-ms-transform:matrix(0.166226,-0.002826,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166226,-0.002826,0.004249,0.249964,0,0);}
.m3e_c00334{transform:matrix(0.166291,-0.002827,0.004249,0.249964,0,0);-ms-transform:matrix(0.166291,-0.002827,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166291,-0.002827,0.004249,0.249964,0,0);}
.m12f_c00334{transform:matrix(0.166324,-0.004324,0.006498,0.249916,0,0);-ms-transform:matrix(0.166324,-0.004324,0.006498,0.249916,0,0);-webkit-transform:matrix(0.166324,-0.004324,0.006498,0.249916,0,0);}
.m63_c00334{transform:matrix(0.166671,-0.002833,0.004249,0.249964,0,0);-ms-transform:matrix(0.166671,-0.002833,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166671,-0.002833,0.004249,0.249964,0,0);}
.md5_c00334{transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);-ms-transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);}
.md_c00334{transform:matrix(0.166976,-0.002839,0.004249,0.249964,0,0);-ms-transform:matrix(0.166976,-0.002839,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166976,-0.002839,0.004249,0.249964,0,0);}
.m75_c00334{transform:matrix(0.167386,-0.002846,0.004249,0.249964,0,0);-ms-transform:matrix(0.167386,-0.002846,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167386,-0.002846,0.004249,0.249964,0,0);}
.m6c_c00334{transform:matrix(0.168021,-0.002856,0.004249,0.249964,0,0);-ms-transform:matrix(0.168021,-0.002856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168021,-0.002856,0.004249,0.249964,0,0);}
.m2f_c00334{transform:matrix(0.169471,-0.002881,0.004249,0.249964,0,0);-ms-transform:matrix(0.169471,-0.002881,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169471,-0.002881,0.004249,0.249964,0,0);}
.m19_c00334{transform:matrix(0.169700,-0.002885,0.004249,0.249964,0,0);-ms-transform:matrix(0.169700,-0.002885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169700,-0.002885,0.004249,0.249964,0,0);}
.mfd_c00334{transform:matrix(0.170376,-0.004089,0.005998,0.249928,0,0);-ms-transform:matrix(0.170376,-0.004089,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170376,-0.004089,0.005998,0.249928,0,0);}
.mff_c00334{transform:matrix(0.170396,-0.004090,0.005998,0.249928,0,0);-ms-transform:matrix(0.170396,-0.004090,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170396,-0.004090,0.005998,0.249928,0,0);}
.mb_c00334{transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);-ms-transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170750,-0.002903,0.004249,0.249964,0,0);}
.md0_c00334{transform:matrix(0.170790,-0.002903,0.004249,0.249964,0,0);-ms-transform:matrix(0.170790,-0.002903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170790,-0.002903,0.004249,0.249964,0,0);}
.mba_c00334{transform:matrix(0.171335,-0.002913,0.004249,0.249964,0,0);-ms-transform:matrix(0.171335,-0.002913,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171335,-0.002913,0.004249,0.249964,0,0);}
.m27_c00334{transform:matrix(0.171935,-0.002923,0.004249,0.249964,0,0);-ms-transform:matrix(0.171935,-0.002923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171935,-0.002923,0.004249,0.249964,0,0);}
.mc_c00334{transform:matrix(0.172435,-0.002931,0.004249,0.249964,0,0);-ms-transform:matrix(0.172435,-0.002931,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172435,-0.002931,0.004249,0.249964,0,0);}
.maf_c00334{transform:matrix(0.172590,-0.002934,0.004249,0.249964,0,0);-ms-transform:matrix(0.172590,-0.002934,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172590,-0.002934,0.004249,0.249964,0,0);}
.m34_c00334{transform:matrix(0.172775,-0.002937,0.004249,0.249964,0,0);-ms-transform:matrix(0.172775,-0.002937,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172775,-0.002937,0.004249,0.249964,0,0);}
.med_c00334{transform:matrix(0.172800,-0.004147,0.005998,0.249928,0,0);-ms-transform:matrix(0.172800,-0.004147,0.005998,0.249928,0,0);-webkit-transform:matrix(0.172800,-0.004147,0.005998,0.249928,0,0);}
.m20_c00334{transform:matrix(0.172860,-0.002939,0.004249,0.249964,0,0);-ms-transform:matrix(0.172860,-0.002939,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172860,-0.002939,0.004249,0.249964,0,0);}
.m149_c00334{transform:matrix(0.173216,-0.004504,0.006498,0.249916,0,0);-ms-transform:matrix(0.173216,-0.004504,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173216,-0.004504,0.006498,0.249916,0,0);}
.ma3_c00334{transform:matrix(0.173315,-0.002946,0.004249,0.249964,0,0);-ms-transform:matrix(0.173315,-0.002946,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173315,-0.002946,0.004249,0.249964,0,0);}
.m7e_c00334{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);}
.m13f_c00334{transform:matrix(0.174016,-0.004524,0.006498,0.249916,0,0);-ms-transform:matrix(0.174016,-0.004524,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174016,-0.004524,0.006498,0.249916,0,0);}
.mee_c00334{transform:matrix(0.174275,-0.004183,0.005998,0.249928,0,0);-ms-transform:matrix(0.174275,-0.004183,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174275,-0.004183,0.005998,0.249928,0,0);}
.m40_c00334{transform:matrix(0.174585,-0.002968,0.004249,0.249964,0,0);-ms-transform:matrix(0.174585,-0.002968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174585,-0.002968,0.004249,0.249964,0,0);}
.m11e_c00334{transform:matrix(0.174674,-0.004017,0.005748,0.249934,0,0);-ms-transform:matrix(0.174674,-0.004017,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174674,-0.004017,0.005748,0.249934,0,0);}
.m120_c00334{transform:matrix(0.174799,-0.004020,0.005748,0.249934,0,0);-ms-transform:matrix(0.174799,-0.004020,0.005748,0.249934,0,0);-webkit-transform:matrix(0.174799,-0.004020,0.005748,0.249934,0,0);}
.mb6_c00334{transform:matrix(0.175090,-0.002977,0.004249,0.249964,0,0);-ms-transform:matrix(0.175090,-0.002977,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175090,-0.002977,0.004249,0.249964,0,0);}
.m8_c00334{transform:matrix(0.175095,-0.002977,0.004249,0.249964,0,0);-ms-transform:matrix(0.175095,-0.002977,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175095,-0.002977,0.004249,0.249964,0,0);}
.m49_c00334{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);}
.me_c00334{transform:matrix(0.175175,-0.002978,0.004249,0.249964,0,0);-ms-transform:matrix(0.175175,-0.002978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175175,-0.002978,0.004249,0.249964,0,0);}
.m110_c00334{transform:matrix(0.175370,-0.004209,0.005998,0.249928,0,0);-ms-transform:matrix(0.175370,-0.004209,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175370,-0.004209,0.005998,0.249928,0,0);}
.me7_c00334{transform:matrix(0.175370,-0.002981,0.004249,0.249964,0,0);-ms-transform:matrix(0.175370,-0.002981,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175370,-0.002981,0.004249,0.249964,0,0);}
.m80_c00334{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);}
.m5d_c00334{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);}
.m10c_c00334{transform:matrix(0.176124,-0.004227,0.005998,0.249928,0,0);-ms-transform:matrix(0.176124,-0.004227,0.005998,0.249928,0,0);-webkit-transform:matrix(0.176124,-0.004227,0.005998,0.249928,0,0);}
.mc6_c00334{transform:matrix(0.176375,-0.002998,0.004249,0.249964,0,0);-ms-transform:matrix(0.176375,-0.002998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176375,-0.002998,0.004249,0.249964,0,0);}
.m11a_c00334{transform:matrix(0.176713,-0.004064,0.005748,0.249934,0,0);-ms-transform:matrix(0.176713,-0.004064,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176713,-0.004064,0.005748,0.249934,0,0);}
.m15b_c00334{transform:matrix(0.177110,-0.004605,0.006498,0.249916,0,0);-ms-transform:matrix(0.177110,-0.004605,0.006498,0.249916,0,0);-webkit-transform:matrix(0.177110,-0.004605,0.006498,0.249916,0,0);}
.m112_c00334{transform:matrix(0.177354,-0.004256,0.005998,0.249928,0,0);-ms-transform:matrix(0.177354,-0.004256,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177354,-0.004256,0.005998,0.249928,0,0);}
.m12e_c00334{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);}
.md6_c00334{transform:matrix(0.177669,-0.003020,0.004249,0.249964,0,0);-ms-transform:matrix(0.177669,-0.003020,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177669,-0.003020,0.004249,0.249964,0,0);}
.m8c_c00334{transform:matrix(0.177854,-0.003024,0.004249,0.249964,0,0);-ms-transform:matrix(0.177854,-0.003024,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177854,-0.003024,0.004249,0.249964,0,0);}
.m7_c00334{transform:matrix(0.178139,-0.003028,0.004249,0.249964,0,0);-ms-transform:matrix(0.178139,-0.003028,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178139,-0.003028,0.004249,0.249964,0,0);}
.m37_c00334{transform:matrix(0.178444,-0.003034,0.004249,0.249964,0,0);-ms-transform:matrix(0.178444,-0.003034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178444,-0.003034,0.004249,0.249964,0,0);}
.m134_c00334{transform:matrix(0.178630,-0.004644,0.006498,0.249916,0,0);-ms-transform:matrix(0.178630,-0.004644,0.006498,0.249916,0,0);-webkit-transform:matrix(0.178630,-0.004644,0.006498,0.249916,0,0);}
.m4c_c00334{transform:matrix(0.178714,-0.003038,0.004249,0.249964,0,0);-ms-transform:matrix(0.178714,-0.003038,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178714,-0.003038,0.004249,0.249964,0,0);}
.m153_c00334{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);}
.mdf_c00334{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);}
.m26_c00334{transform:matrix(0.179599,-0.003053,0.004249,0.249964,0,0);-ms-transform:matrix(0.179599,-0.003053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179599,-0.003053,0.004249,0.249964,0,0);}
.m133_c00334{transform:matrix(0.179604,-0.004670,0.006498,0.249916,0,0);-ms-transform:matrix(0.179604,-0.004670,0.006498,0.249916,0,0);-webkit-transform:matrix(0.179604,-0.004670,0.006498,0.249916,0,0);}
.me6_c00334{transform:matrix(0.179739,-0.003056,0.004249,0.249964,0,0);-ms-transform:matrix(0.179739,-0.003056,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179739,-0.003056,0.004249,0.249964,0,0);}
.mb2_c00334{transform:matrix(0.179879,-0.003058,0.004249,0.249964,0,0);-ms-transform:matrix(0.179879,-0.003058,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179879,-0.003058,0.004249,0.249964,0,0);}
.m41_c00334{transform:matrix(0.180364,-0.003066,0.004249,0.249964,0,0);-ms-transform:matrix(0.180364,-0.003066,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180364,-0.003066,0.004249,0.249964,0,0);}
.mad_c00334{transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);-ms-transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);}
.m138_c00334{transform:matrix(0.181064,-0.004708,0.006498,0.249916,0,0);-ms-transform:matrix(0.181064,-0.004708,0.006498,0.249916,0,0);-webkit-transform:matrix(0.181064,-0.004708,0.006498,0.249916,0,0);}
.m9d_c00334{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);}
.ma7_c00334{transform:matrix(0.182124,-0.003096,0.004249,0.249964,0,0);-ms-transform:matrix(0.182124,-0.003096,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182124,-0.003096,0.004249,0.249964,0,0);}
.m8e_c00334{transform:matrix(0.182254,-0.003098,0.004249,0.249964,0,0);-ms-transform:matrix(0.182254,-0.003098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182254,-0.003098,0.004249,0.249964,0,0);}
.m1e_c00334{transform:matrix(0.182534,-0.003103,0.004249,0.249964,0,0);-ms-transform:matrix(0.182534,-0.003103,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182534,-0.003103,0.004249,0.249964,0,0);}
.ma4_c00334{transform:matrix(0.182584,-0.003104,0.004249,0.249964,0,0);-ms-transform:matrix(0.182584,-0.003104,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182584,-0.003104,0.004249,0.249964,0,0);}
.m5f_c00334{transform:matrix(0.182699,-0.003106,0.004249,0.249964,0,0);-ms-transform:matrix(0.182699,-0.003106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182699,-0.003106,0.004249,0.249964,0,0);}
.me8_c00334{transform:matrix(0.183139,-0.003113,0.004249,0.249964,0,0);-ms-transform:matrix(0.183139,-0.003113,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183139,-0.003113,0.004249,0.249964,0,0);}
.m3b_c00334{transform:matrix(0.183184,-0.003114,0.004249,0.249964,0,0);-ms-transform:matrix(0.183184,-0.003114,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183184,-0.003114,0.004249,0.249964,0,0);}
.m21_c00334{transform:matrix(0.183204,-0.003114,0.004249,0.249964,0,0);-ms-transform:matrix(0.183204,-0.003114,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183204,-0.003114,0.004249,0.249964,0,0);}
.mf7_c00334{transform:matrix(0.183277,-0.004399,0.005998,0.249928,0,0);-ms-transform:matrix(0.183277,-0.004399,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183277,-0.004399,0.005998,0.249928,0,0);}
.mbe_c00334{transform:matrix(0.183304,-0.003116,0.004249,0.249964,0,0);-ms-transform:matrix(0.183304,-0.003116,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183304,-0.003116,0.004249,0.249964,0,0);}
.mb1_c00334{transform:matrix(0.183508,-0.003120,0.004249,0.249964,0,0);-ms-transform:matrix(0.183508,-0.003120,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183508,-0.003120,0.004249,0.249964,0,0);}
.m98_c00334{transform:matrix(0.183753,-0.003124,0.004249,0.249964,0,0);-ms-transform:matrix(0.183753,-0.003124,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183753,-0.003124,0.004249,0.249964,0,0);}
.m66_c00334{transform:matrix(0.184078,-0.003129,0.004249,0.249964,0,0);-ms-transform:matrix(0.184078,-0.003129,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184078,-0.003129,0.004249,0.249964,0,0);}
.mb5_c00334{transform:matrix(0.184118,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184118,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184118,-0.003130,0.004249,0.249964,0,0);}
.m23_c00334{transform:matrix(0.184783,-0.003141,0.004249,0.249964,0,0);-ms-transform:matrix(0.184783,-0.003141,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184783,-0.003141,0.004249,0.249964,0,0);}
.ma8_c00334{transform:matrix(0.184913,-0.003144,0.004249,0.249964,0,0);-ms-transform:matrix(0.184913,-0.003144,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184913,-0.003144,0.004249,0.249964,0,0);}
.m12a_c00334{transform:matrix(0.184952,-0.004809,0.006498,0.249916,0,0);-ms-transform:matrix(0.184952,-0.004809,0.006498,0.249916,0,0);-webkit-transform:matrix(0.184952,-0.004809,0.006498,0.249916,0,0);}
.m93_c00334{transform:matrix(0.185918,-0.003161,0.004249,0.249964,0,0);-ms-transform:matrix(0.185918,-0.003161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185918,-0.003161,0.004249,0.249964,0,0);}
.m1d_c00334{transform:matrix(0.185933,-0.003161,0.004249,0.249964,0,0);-ms-transform:matrix(0.185933,-0.003161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185933,-0.003161,0.004249,0.249964,0,0);}
.m12d_c00334{transform:matrix(0.186027,-0.004837,0.006498,0.249916,0,0);-ms-transform:matrix(0.186027,-0.004837,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186027,-0.004837,0.006498,0.249916,0,0);}
.m5_c00334{transform:matrix(0.186228,-0.003166,0.004249,0.249964,0,0);-ms-transform:matrix(0.186228,-0.003166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186228,-0.003166,0.004249,0.249964,0,0);}
.mea_c00334{transform:matrix(0.186346,-0.004472,0.005998,0.249928,0,0);-ms-transform:matrix(0.186346,-0.004472,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186346,-0.004472,0.005998,0.249928,0,0);}
.m71_c00334{transform:matrix(0.186373,-0.003168,0.004249,0.249964,0,0);-ms-transform:matrix(0.186373,-0.003168,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186373,-0.003168,0.004249,0.249964,0,0);}
.m60_c00334{transform:matrix(0.186483,-0.003170,0.004249,0.249964,0,0);-ms-transform:matrix(0.186483,-0.003170,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186483,-0.003170,0.004249,0.249964,0,0);}
.m9_c00334{transform:matrix(0.186653,-0.003173,0.004249,0.249964,0,0);-ms-transform:matrix(0.186653,-0.003173,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186653,-0.003173,0.004249,0.249964,0,0);}
.m79_c00334{transform:matrix(0.186793,-0.003175,0.004249,0.249964,0,0);-ms-transform:matrix(0.186793,-0.003175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186793,-0.003175,0.004249,0.249964,0,0);}
.m39_c00334{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);}
.mb3_c00334{transform:matrix(0.187008,-0.003179,0.004249,0.249964,0,0);-ms-transform:matrix(0.187008,-0.003179,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187008,-0.003179,0.004249,0.249964,0,0);}
.m13c_c00334{transform:matrix(0.187102,-0.004865,0.006498,0.249916,0,0);-ms-transform:matrix(0.187102,-0.004865,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187102,-0.004865,0.006498,0.249916,0,0);}
.m10b_c00334{transform:matrix(0.187131,-0.004491,0.005998,0.249928,0,0);-ms-transform:matrix(0.187131,-0.004491,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187131,-0.004491,0.005998,0.249928,0,0);}
.m14e_c00334{transform:matrix(0.187182,-0.004867,0.006498,0.249916,0,0);-ms-transform:matrix(0.187182,-0.004867,0.006498,0.249916,0,0);-webkit-transform:matrix(0.187182,-0.004867,0.006498,0.249916,0,0);}
.m50_c00334{transform:matrix(0.187393,-0.003186,0.004249,0.249964,0,0);-ms-transform:matrix(0.187393,-0.003186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187393,-0.003186,0.004249,0.249964,0,0);}
.mab_c00334{transform:matrix(0.187663,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187663,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187663,-0.003190,0.004249,0.249964,0,0);}
.m32_c00334{transform:matrix(0.187733,-0.003191,0.004249,0.249964,0,0);-ms-transform:matrix(0.187733,-0.003191,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187733,-0.003191,0.004249,0.249964,0,0);}
.m14_c00334{transform:matrix(0.188223,-0.003200,0.004249,0.249964,0,0);-ms-transform:matrix(0.188223,-0.003200,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188223,-0.003200,0.004249,0.249964,0,0);}
.m11d_c00334{transform:matrix(0.188420,-0.004334,0.005748,0.249934,0,0);-ms-transform:matrix(0.188420,-0.004334,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188420,-0.004334,0.005748,0.249934,0,0);}
.m12c_c00334{transform:matrix(0.188441,-0.004899,0.006498,0.249916,0,0);-ms-transform:matrix(0.188441,-0.004899,0.006498,0.249916,0,0);-webkit-transform:matrix(0.188441,-0.004899,0.006498,0.249916,0,0);}
.m90_c00334{transform:matrix(0.188443,-0.003204,0.004249,0.249964,0,0);-ms-transform:matrix(0.188443,-0.003204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188443,-0.003204,0.004249,0.249964,0,0);}
.m1_c00334{transform:matrix(0.188568,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188568,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188568,-0.003206,0.004249,0.249964,0,0);}
.m1c_c00334{transform:matrix(0.188728,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188728,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188728,-0.003208,0.004249,0.249964,0,0);}
.m11b_c00334{transform:matrix(0.188790,-0.004342,0.005748,0.249934,0,0);-ms-transform:matrix(0.188790,-0.004342,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188790,-0.004342,0.005748,0.249934,0,0);}
.mb9_c00334{transform:matrix(0.188898,-0.003211,0.004249,0.249964,0,0);-ms-transform:matrix(0.188898,-0.003211,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188898,-0.003211,0.004249,0.249964,0,0);}
.ma9_c00334{transform:matrix(0.188948,-0.003212,0.004249,0.249964,0,0);-ms-transform:matrix(0.188948,-0.003212,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188948,-0.003212,0.004249,0.249964,0,0);}
.m6b_c00334{transform:matrix(0.189433,-0.003220,0.004249,0.249964,0,0);-ms-transform:matrix(0.189433,-0.003220,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189433,-0.003220,0.004249,0.249964,0,0);}
.m13_c00334{transform:matrix(0.189608,-0.003223,0.004249,0.249964,0,0);-ms-transform:matrix(0.189608,-0.003223,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189608,-0.003223,0.004249,0.249964,0,0);}
.m4b_c00334{transform:matrix(0.189688,-0.003225,0.004249,0.249964,0,0);-ms-transform:matrix(0.189688,-0.003225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189688,-0.003225,0.004249,0.249964,0,0);}
.m64_c00334{transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);-ms-transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190163,-0.003233,0.004249,0.249964,0,0);}
.m70_c00334{transform:matrix(0.190482,-0.003238,0.004249,0.249964,0,0);-ms-transform:matrix(0.190482,-0.003238,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190482,-0.003238,0.004249,0.249964,0,0);}
.m7f_c00334{transform:matrix(0.190487,-0.003238,0.004249,0.249964,0,0);-ms-transform:matrix(0.190487,-0.003238,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190487,-0.003238,0.004249,0.249964,0,0);}
.me0_c00334{transform:matrix(0.190522,-0.003239,0.004249,0.249964,0,0);-ms-transform:matrix(0.190522,-0.003239,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190522,-0.003239,0.004249,0.249964,0,0);}
.m101_c00334{transform:matrix(0.190680,-0.004576,0.005998,0.249928,0,0);-ms-transform:matrix(0.190680,-0.004576,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190680,-0.004576,0.005998,0.249928,0,0);}
.me4_c00334{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);}
.m33_c00334{transform:matrix(0.191097,-0.003249,0.004249,0.249964,0,0);-ms-transform:matrix(0.191097,-0.003249,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191097,-0.003249,0.004249,0.249964,0,0);}
.mbf_c00334{transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);-ms-transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191187,-0.003250,0.004249,0.249964,0,0);}
.mf4_c00334{transform:matrix(0.191630,-0.004599,0.005998,0.249928,0,0);-ms-transform:matrix(0.191630,-0.004599,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191630,-0.004599,0.005998,0.249928,0,0);}
.mf_c00334{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);}
.m46_c00334{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);}
.me3_c00334{transform:matrix(0.191922,-0.003263,0.004249,0.249964,0,0);-ms-transform:matrix(0.191922,-0.003263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191922,-0.003263,0.004249,0.249964,0,0);}
.m106_c00334{transform:matrix(0.192205,-0.004613,0.005998,0.249928,0,0);-ms-transform:matrix(0.192205,-0.004613,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192205,-0.004613,0.005998,0.249928,0,0);}
.m8a_c00334{transform:matrix(0.192352,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192352,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192352,-0.003270,0.004249,0.249964,0,0);}
.m2a_c00334{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);}
.m53_c00334{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);}
.m59_c00334{transform:matrix(0.192592,-0.003274,0.004249,0.249964,0,0);-ms-transform:matrix(0.192592,-0.003274,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192592,-0.003274,0.004249,0.249964,0,0);}
.m81_c00334{transform:matrix(0.192917,-0.003280,0.004249,0.249964,0,0);-ms-transform:matrix(0.192917,-0.003280,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192917,-0.003280,0.004249,0.249964,0,0);}
.m108_c00334{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);}
.mae_c00334{transform:matrix(0.193187,-0.003284,0.004249,0.249964,0,0);-ms-transform:matrix(0.193187,-0.003284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193187,-0.003284,0.004249,0.249964,0,0);}
.m14b_c00334{transform:matrix(0.193330,-0.005027,0.006498,0.249916,0,0);-ms-transform:matrix(0.193330,-0.005027,0.006498,0.249916,0,0);-webkit-transform:matrix(0.193330,-0.005027,0.006498,0.249916,0,0);}
.m140_c00334{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);}
.mf8_c00334{transform:matrix(0.193399,-0.004642,0.005998,0.249928,0,0);-ms-transform:matrix(0.193399,-0.004642,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193399,-0.004642,0.005998,0.249928,0,0);}
.m55_c00334{transform:matrix(0.193947,-0.003297,0.004249,0.249964,0,0);-ms-transform:matrix(0.193947,-0.003297,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193947,-0.003297,0.004249,0.249964,0,0);}
.m9b_c00334{transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);}
.m128_c00334{transform:matrix(0.194454,-0.005056,0.006498,0.249916,0,0);-ms-transform:matrix(0.194454,-0.005056,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194454,-0.005056,0.006498,0.249916,0,0);}
.m5b_c00334{transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);-ms-transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);}
.m6f_c00334{transform:matrix(0.195572,-0.003325,0.004249,0.249964,0,0);-ms-transform:matrix(0.195572,-0.003325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195572,-0.003325,0.004249,0.249964,0,0);}
.m86_c00334{transform:matrix(0.195707,-0.003327,0.004249,0.249964,0,0);-ms-transform:matrix(0.195707,-0.003327,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195707,-0.003327,0.004249,0.249964,0,0);}
.m36_c00334{transform:matrix(0.195982,-0.003332,0.004249,0.249964,0,0);-ms-transform:matrix(0.195982,-0.003332,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195982,-0.003332,0.004249,0.249964,0,0);}
.mec_c00334{transform:matrix(0.196323,-0.004712,0.005998,0.249928,0,0);-ms-transform:matrix(0.196323,-0.004712,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196323,-0.004712,0.005998,0.249928,0,0);}
.m109_c00334{transform:matrix(0.196358,-0.004713,0.005998,0.249928,0,0);-ms-transform:matrix(0.196358,-0.004713,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196358,-0.004713,0.005998,0.249928,0,0);}
.mc3_c00334{transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);-ms-transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196522,-0.003341,0.004249,0.249964,0,0);}
.m3d_c00334{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);}
.mcd_c00334{transform:matrix(0.197451,-0.003357,0.004249,0.249964,0,0);-ms-transform:matrix(0.197451,-0.003357,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197451,-0.003357,0.004249,0.249964,0,0);}
.m43_c00334{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);}
.m25_c00334{transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-ms-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);}
.mc5_c00334{transform:matrix(0.197716,-0.003361,0.004249,0.249964,0,0);-ms-transform:matrix(0.197716,-0.003361,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197716,-0.003361,0.004249,0.249964,0,0);}
.m4e_c00334{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);}
.mb8_c00334{transform:matrix(0.198071,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198071,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198071,-0.003367,0.004249,0.249964,0,0);}
.m11_c00334{transform:matrix(0.198086,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198086,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198086,-0.003367,0.004249,0.249964,0,0);}
.mf5_c00334{transform:matrix(0.198233,-0.004758,0.005998,0.249928,0,0);-ms-transform:matrix(0.198233,-0.004758,0.005998,0.249928,0,0);-webkit-transform:matrix(0.198233,-0.004758,0.005998,0.249928,0,0);}
.maa_c00334{transform:matrix(0.198506,-0.003375,0.004249,0.249964,0,0);-ms-transform:matrix(0.198506,-0.003375,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198506,-0.003375,0.004249,0.249964,0,0);}
.m2_c00334{transform:matrix(0.198616,-0.003376,0.004249,0.249964,0,0);-ms-transform:matrix(0.198616,-0.003376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198616,-0.003376,0.004249,0.249964,0,0);}
.mcc_c00334{transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);-ms-transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198671,-0.003377,0.004249,0.249964,0,0);}
.m12b_c00334{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);}
.m17_c00334{transform:matrix(0.199786,-0.003396,0.004249,0.249964,0,0);-ms-transform:matrix(0.199786,-0.003396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199786,-0.003396,0.004249,0.249964,0,0);}
.m123_c00334{transform:matrix(0.200072,-0.004602,0.005748,0.249934,0,0);-ms-transform:matrix(0.200072,-0.004602,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200072,-0.004602,0.005748,0.249934,0,0);}
.m87_c00334{transform:matrix(0.200141,-0.003402,0.004249,0.249964,0,0);-ms-transform:matrix(0.200141,-0.003402,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200141,-0.003402,0.004249,0.249964,0,0);}
.m4f_c00334{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);}
.m35_c00334{transform:matrix(0.200741,-0.003413,0.004249,0.249964,0,0);-ms-transform:matrix(0.200741,-0.003413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200741,-0.003413,0.004249,0.249964,0,0);}
.m14d_c00334{transform:matrix(0.201242,-0.005232,0.006498,0.249916,0,0);-ms-transform:matrix(0.201242,-0.005232,0.006498,0.249916,0,0);-webkit-transform:matrix(0.201242,-0.005232,0.006498,0.249916,0,0);}
.mcb_c00334{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);}
.m7c_c00334{transform:matrix(0.201471,-0.003425,0.004249,0.249964,0,0);-ms-transform:matrix(0.201471,-0.003425,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201471,-0.003425,0.004249,0.249964,0,0);}
.m5e_c00334{transform:matrix(0.201776,-0.003430,0.004249,0.249964,0,0);-ms-transform:matrix(0.201776,-0.003430,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201776,-0.003430,0.004249,0.249964,0,0);}
.m54_c00334{transform:matrix(0.202036,-0.003435,0.004249,0.249964,0,0);-ms-transform:matrix(0.202036,-0.003435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202036,-0.003435,0.004249,0.249964,0,0);}
.mce_c00334{transform:matrix(0.202101,-0.003436,0.004249,0.249964,0,0);-ms-transform:matrix(0.202101,-0.003436,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202101,-0.003436,0.004249,0.249964,0,0);}
.m85_c00334{transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);-ms-transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202671,-0.003445,0.004249,0.249964,0,0);}
.m158_c00334{transform:matrix(0.202796,-0.005273,0.006498,0.249916,0,0);-ms-transform:matrix(0.202796,-0.005273,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202796,-0.005273,0.006498,0.249916,0,0);}
.ma0_c00334{transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);-ms-transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);}
.mc0_c00334{transform:matrix(0.203656,-0.003462,0.004249,0.249964,0,0);-ms-transform:matrix(0.203656,-0.003462,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203656,-0.003462,0.004249,0.249964,0,0);}
.m131_c00334{transform:matrix(0.203701,-0.005296,0.006498,0.249916,0,0);-ms-transform:matrix(0.203701,-0.005296,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203701,-0.005296,0.006498,0.249916,0,0);}
.m13d_c00334{transform:matrix(0.203846,-0.005300,0.006498,0.249916,0,0);-ms-transform:matrix(0.203846,-0.005300,0.006498,0.249916,0,0);-webkit-transform:matrix(0.203846,-0.005300,0.006498,0.249916,0,0);}
.m148_c00334{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);}
.ma1_c00334{transform:matrix(0.204400,-0.003475,0.004249,0.249964,0,0);-ms-transform:matrix(0.204400,-0.003475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204400,-0.003475,0.004249,0.249964,0,0);}
.m42_c00334{transform:matrix(0.204625,-0.003479,0.004249,0.249964,0,0);-ms-transform:matrix(0.204625,-0.003479,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204625,-0.003479,0.004249,0.249964,0,0);}
.m5c_c00334{transform:matrix(0.204830,-0.003482,0.004249,0.249964,0,0);-ms-transform:matrix(0.204830,-0.003482,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204830,-0.003482,0.004249,0.249964,0,0);}
.m7d_c00334{transform:matrix(0.204995,-0.003485,0.004249,0.249964,0,0);-ms-transform:matrix(0.204995,-0.003485,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204995,-0.003485,0.004249,0.249964,0,0);}
.m30_c00334{transform:matrix(0.205230,-0.003489,0.004249,0.249964,0,0);-ms-transform:matrix(0.205230,-0.003489,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205230,-0.003489,0.004249,0.249964,0,0);}
.m28_c00334{transform:matrix(0.205315,-0.003490,0.004249,0.249964,0,0);-ms-transform:matrix(0.205315,-0.003490,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205315,-0.003490,0.004249,0.249964,0,0);}
.m145_c00334{transform:matrix(0.205366,-0.005340,0.006498,0.249916,0,0);-ms-transform:matrix(0.205366,-0.005340,0.006498,0.249916,0,0);-webkit-transform:matrix(0.205366,-0.005340,0.006498,0.249916,0,0);}
.m4d_c00334{transform:matrix(0.205400,-0.003492,0.004249,0.249964,0,0);-ms-transform:matrix(0.205400,-0.003492,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205400,-0.003492,0.004249,0.249964,0,0);}
.m92_c00334{transform:matrix(0.206710,-0.003514,0.004249,0.249964,0,0);-ms-transform:matrix(0.206710,-0.003514,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206710,-0.003514,0.004249,0.249964,0,0);}
.m94_c00334{transform:matrix(0.206730,-0.003514,0.004249,0.249964,0,0);-ms-transform:matrix(0.206730,-0.003514,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206730,-0.003514,0.004249,0.249964,0,0);}
.mf9_c00334{transform:matrix(0.206750,-0.004962,0.005998,0.249928,0,0);-ms-transform:matrix(0.206750,-0.004962,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206750,-0.004962,0.005998,0.249928,0,0);}
.m3c_c00334{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);}
.m57_c00334{transform:matrix(0.207585,-0.003529,0.004249,0.249964,0,0);-ms-transform:matrix(0.207585,-0.003529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207585,-0.003529,0.004249,0.249964,0,0);}
.m99_c00334{transform:matrix(0.207780,-0.003532,0.004249,0.249964,0,0);-ms-transform:matrix(0.207780,-0.003532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207780,-0.003532,0.004249,0.249964,0,0);}
.m4a_c00334{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);}
.m9e_c00334{transform:matrix(0.208290,-0.003541,0.004249,0.249964,0,0);-ms-transform:matrix(0.208290,-0.003541,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208290,-0.003541,0.004249,0.249964,0,0);}
.m12_c00334{transform:matrix(0.208335,-0.003542,0.004249,0.249964,0,0);-ms-transform:matrix(0.208335,-0.003542,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208335,-0.003542,0.004249,0.249964,0,0);}
.mc1_c00334{transform:matrix(0.208415,-0.003543,0.004249,0.249964,0,0);-ms-transform:matrix(0.208415,-0.003543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208415,-0.003543,0.004249,0.249964,0,0);}
.m104_c00334{transform:matrix(0.208805,-0.005011,0.005998,0.249928,0,0);-ms-transform:matrix(0.208805,-0.005011,0.005998,0.249928,0,0);-webkit-transform:matrix(0.208805,-0.005011,0.005998,0.249928,0,0);}
.m100_c00334{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);}
.me1_c00334{transform:matrix(0.209470,-0.003561,0.004249,0.249964,0,0);-ms-transform:matrix(0.209470,-0.003561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209470,-0.003561,0.004249,0.249964,0,0);}
.m78_c00334{transform:matrix(0.211489,-0.003595,0.004249,0.249964,0,0);-ms-transform:matrix(0.211489,-0.003595,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211489,-0.003595,0.004249,0.249964,0,0);}
.m146_c00334{transform:matrix(0.211688,-0.005504,0.006498,0.249916,0,0);-ms-transform:matrix(0.211688,-0.005504,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211688,-0.005504,0.006498,0.249916,0,0);}
.m136_c00334{transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);-ms-transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212048,-0.005513,0.006498,0.249916,0,0);}
.m2d_c00334{transform:matrix(0.214129,-0.003640,0.004249,0.249964,0,0);-ms-transform:matrix(0.214129,-0.003640,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214129,-0.003640,0.004249,0.249964,0,0);}
.mfb_c00334{transform:matrix(0.214378,-0.005145,0.005998,0.249928,0,0);-ms-transform:matrix(0.214378,-0.005145,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214378,-0.005145,0.005998,0.249928,0,0);}
.m139_c00334{transform:matrix(0.216037,-0.005617,0.006498,0.249916,0,0);-ms-transform:matrix(0.216037,-0.005617,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216037,-0.005617,0.006498,0.249916,0,0);}
.m11f_c00334{transform:matrix(0.216123,-0.004971,0.005748,0.249934,0,0);-ms-transform:matrix(0.216123,-0.004971,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216123,-0.004971,0.005748,0.249934,0,0);}
.m13e_c00334{transform:matrix(0.216442,-0.005627,0.006498,0.249916,0,0);-ms-transform:matrix(0.216442,-0.005627,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216442,-0.005627,0.006498,0.249916,0,0);}
.m9c_c00334{transform:matrix(0.216444,-0.003680,0.004249,0.249964,0,0);-ms-transform:matrix(0.216444,-0.003680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216444,-0.003680,0.004249,0.249964,0,0);}
.mc9_c00334{transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-ms-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);}
.m52_c00334{transform:matrix(0.217049,-0.003690,0.004249,0.249964,0,0);-ms-transform:matrix(0.217049,-0.003690,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217049,-0.003690,0.004249,0.249964,0,0);}
.m51_c00334{transform:matrix(0.217669,-0.003700,0.004249,0.249964,0,0);-ms-transform:matrix(0.217669,-0.003700,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217669,-0.003700,0.004249,0.249964,0,0);}
.m3_c00334{transform:matrix(0.217924,-0.003705,0.004249,0.249964,0,0);-ms-transform:matrix(0.217924,-0.003705,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217924,-0.003705,0.004249,0.249964,0,0);}
.m6e_c00334{transform:matrix(0.218838,-0.003720,0.004249,0.249964,0,0);-ms-transform:matrix(0.218838,-0.003720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218838,-0.003720,0.004249,0.249964,0,0);}
.mf3_c00334{transform:matrix(0.221211,-0.005309,0.005998,0.249928,0,0);-ms-transform:matrix(0.221211,-0.005309,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221211,-0.005309,0.005998,0.249928,0,0);}
.mbd_c00334{transform:matrix(0.221618,-0.003768,0.004249,0.249964,0,0);-ms-transform:matrix(0.221618,-0.003768,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221618,-0.003768,0.004249,0.249964,0,0);}
.mca_c00334{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);}
.m1f_c00334{transform:matrix(0.223713,-0.003803,0.004249,0.249964,0,0);-ms-transform:matrix(0.223713,-0.003803,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223713,-0.003803,0.004249,0.249964,0,0);}
.m61_c00334{transform:matrix(0.225842,-0.003839,0.004249,0.249964,0,0);-ms-transform:matrix(0.225842,-0.003839,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225842,-0.003839,0.004249,0.249964,0,0);}
.md8_c00334{transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);-ms-transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226087,-0.003843,0.004249,0.249964,0,0);}
.m6_c00334{transform:matrix(0.226177,-0.003845,0.004249,0.249964,0,0);-ms-transform:matrix(0.226177,-0.003845,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226177,-0.003845,0.004249,0.249964,0,0);}
.m137_c00334{transform:matrix(0.226468,-0.005888,0.006498,0.249916,0,0);-ms-transform:matrix(0.226468,-0.005888,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226468,-0.005888,0.006498,0.249916,0,0);}
.m72_c00334{transform:matrix(0.227607,-0.003869,0.004249,0.249964,0,0);-ms-transform:matrix(0.227607,-0.003869,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227607,-0.003869,0.004249,0.249964,0,0);}
.m159_c00334{transform:matrix(0.231157,-0.006010,0.006498,0.249916,0,0);-ms-transform:matrix(0.231157,-0.006010,0.006498,0.249916,0,0);-webkit-transform:matrix(0.231157,-0.006010,0.006498,0.249916,0,0);}
.m121_c00334{transform:matrix(0.231689,-0.005329,0.005748,0.249934,0,0);-ms-transform:matrix(0.231689,-0.005329,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231689,-0.005329,0.005748,0.249934,0,0);}
.m9f_c00334{transform:matrix(0.233236,-0.003965,0.004249,0.249964,0,0);-ms-transform:matrix(0.233236,-0.003965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233236,-0.003965,0.004249,0.249964,0,0);}
.mc4_c00334{transform:matrix(0.235031,-0.003996,0.004249,0.249964,0,0);-ms-transform:matrix(0.235031,-0.003996,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235031,-0.003996,0.004249,0.249964,0,0);}
.m10d_c00334{transform:matrix(0.235837,-0.005660,0.005998,0.249928,0,0);-ms-transform:matrix(0.235837,-0.005660,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235837,-0.005660,0.005998,0.249928,0,0);}
.ma5_c00334{transform:matrix(0.236101,-0.004014,0.004249,0.249964,0,0);-ms-transform:matrix(0.236101,-0.004014,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236101,-0.004014,0.004249,0.249964,0,0);}
.m129_c00334{transform:matrix(0.236330,-0.006145,0.006498,0.249916,0,0);-ms-transform:matrix(0.236330,-0.006145,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236330,-0.006145,0.006498,0.249916,0,0);}
.m84_c00334{transform:matrix(0.236556,-0.004021,0.004249,0.249964,0,0);-ms-transform:matrix(0.236556,-0.004021,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236556,-0.004021,0.004249,0.249964,0,0);}
.m68_c00334{transform:matrix(0.237601,-0.004039,0.004249,0.249964,0,0);-ms-transform:matrix(0.237601,-0.004039,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237601,-0.004039,0.004249,0.249964,0,0);}
.mf2_c00334{transform:matrix(0.238371,-0.005721,0.005998,0.249928,0,0);-ms-transform:matrix(0.238371,-0.005721,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238371,-0.005721,0.005998,0.249928,0,0);}
.m65_c00334{transform:matrix(0.240330,-0.004086,0.004249,0.249964,0,0);-ms-transform:matrix(0.240330,-0.004086,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240330,-0.004086,0.004249,0.249964,0,0);}
.m29_c00334{transform:matrix(0.240890,-0.004095,0.004249,0.249964,0,0);-ms-transform:matrix(0.240890,-0.004095,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240890,-0.004095,0.004249,0.249964,0,0);}
.mdc_c00334{transform:matrix(0.244825,-0.004162,0.004249,0.249964,0,0);-ms-transform:matrix(0.244825,-0.004162,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244825,-0.004162,0.004249,0.249964,0,0);}
.m82_c00334{transform:matrix(0.245789,-0.004178,0.004249,0.249964,0,0);-ms-transform:matrix(0.245789,-0.004178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245789,-0.004178,0.004249,0.249964,0,0);}
.m107_c00334{transform:matrix(0.246159,-0.005908,0.005998,0.249928,0,0);-ms-transform:matrix(0.246159,-0.005908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246159,-0.005908,0.005998,0.249928,0,0);}
.mdd_c00334{transform:matrix(0.250389,-0.004257,0.004249,0.249964,0,0);-ms-transform:matrix(0.250389,-0.004257,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250389,-0.004257,0.004249,0.249964,0,0);}
.m6d_c00334{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);}
.m48_c00334{transform:matrix(0.259458,-0.004411,0.004249,0.249964,0,0);-ms-transform:matrix(0.259458,-0.004411,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259458,-0.004411,0.004249,0.249964,0,0);}
.m67_c00334{transform:matrix(0.260182,-0.004423,0.004249,0.249964,0,0);-ms-transform:matrix(0.260182,-0.004423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260182,-0.004423,0.004249,0.249964,0,0);}
.m5a_c00334{transform:matrix(0.261217,-0.004441,0.004249,0.249964,0,0);-ms-transform:matrix(0.261217,-0.004441,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261217,-0.004441,0.004249,0.249964,0,0);}
.mbc_c00334{transform:matrix(0.262842,-0.004468,0.004249,0.249964,0,0);-ms-transform:matrix(0.262842,-0.004468,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262842,-0.004468,0.004249,0.249964,0,0);}
.m58_c00334{transform:matrix(0.264752,-0.004501,0.004249,0.249964,0,0);-ms-transform:matrix(0.264752,-0.004501,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264752,-0.004501,0.004249,0.249964,0,0);}
.m113_c00334{transform:matrix(0.266653,-0.006400,0.005998,0.249928,0,0);-ms-transform:matrix(0.266653,-0.006400,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266653,-0.006400,0.005998,0.249928,0,0);}
.mde_c00334{transform:matrix(0.270106,-0.004592,0.004249,0.249964,0,0);-ms-transform:matrix(0.270106,-0.004592,0.004249,0.249964,0,0);-webkit-transform:matrix(0.270106,-0.004592,0.004249,0.249964,0,0);}
.m143_c00334{transform:matrix(0.275427,-0.007161,0.006498,0.249916,0,0);-ms-transform:matrix(0.275427,-0.007161,0.006498,0.249916,0,0);-webkit-transform:matrix(0.275427,-0.007161,0.006498,0.249916,0,0);}
.m56_c00334{transform:matrix(0.277790,-0.004722,0.004249,0.249964,0,0);-ms-transform:matrix(0.277790,-0.004722,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277790,-0.004722,0.004249,0.249964,0,0);}
.mc2_c00334{transform:matrix(0.287653,-0.004890,0.004249,0.249964,0,0);-ms-transform:matrix(0.287653,-0.004890,0.004249,0.249964,0,0);-webkit-transform:matrix(0.287653,-0.004890,0.004249,0.249964,0,0);}
.m83_c00334{transform:matrix(0.340851,-0.005794,0.004249,0.249964,0,0);-ms-transform:matrix(0.340851,-0.005794,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340851,-0.005794,0.004249,0.249964,0,0);}
.ma6_c00334{transform:matrix(0.342965,-0.005830,0.004249,0.249964,0,0);-ms-transform:matrix(0.342965,-0.005830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.342965,-0.005830,0.004249,0.249964,0,0);}
.m9a_c00334{transform:matrix(0.347075,-0.005900,0.004249,0.249964,0,0);-ms-transform:matrix(0.347075,-0.005900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.347075,-0.005900,0.004249,0.249964,0,0);}
.m130_c00334{transform:matrix(0.350112,-0.009103,0.006498,0.249916,0,0);-ms-transform:matrix(0.350112,-0.009103,0.006498,0.249916,0,0);-webkit-transform:matrix(0.350112,-0.009103,0.006498,0.249916,0,0);}
.m141_c00334{transform:matrix(0.357969,-0.009307,0.006498,0.249916,0,0);-ms-transform:matrix(0.357969,-0.009307,0.006498,0.249916,0,0);-webkit-transform:matrix(0.357969,-0.009307,0.006498,0.249916,0,0);}
.md1_c00334{transform:matrix(0.363677,-0.006183,0.004249,0.249964,0,0);-ms-transform:matrix(0.363677,-0.006183,0.004249,0.249964,0,0);-webkit-transform:matrix(0.363677,-0.006183,0.004249,0.249964,0,0);}
.mbb_c00334{transform:matrix(0.368852,-0.006270,0.004249,0.249964,0,0);-ms-transform:matrix(0.368852,-0.006270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.368852,-0.006270,0.004249,0.249964,0,0);}
.m119_c00334{transform:matrix(0.369252,-0.008493,0.005748,0.249934,0,0);-ms-transform:matrix(0.369252,-0.008493,0.005748,0.249934,0,0);-webkit-transform:matrix(0.369252,-0.008493,0.005748,0.249934,0,0);}
.m125_c00334{transform:matrix(0.388357,-0.008932,0.005748,0.249934,0,0);-ms-transform:matrix(0.388357,-0.008932,0.005748,0.249934,0,0);-webkit-transform:matrix(0.388357,-0.008932,0.005748,0.249934,0,0);}
.m47_c00334{transform:matrix(0.400407,-0.006807,0.004249,0.249964,0,0);-ms-transform:matrix(0.400407,-0.006807,0.004249,0.249964,0,0);-webkit-transform:matrix(0.400407,-0.006807,0.004249,0.249964,0,0);}
.m144_c00334{transform:matrix(0.424497,-0.011037,0.006498,0.249916,0,0);-ms-transform:matrix(0.424497,-0.011037,0.006498,0.249916,0,0);-webkit-transform:matrix(0.424497,-0.011037,0.006498,0.249916,0,0);}
.m127_c00334{transform:matrix(0.431796,-0.009931,0.005748,0.249934,0,0);-ms-transform:matrix(0.431796,-0.009931,0.005748,0.249934,0,0);-webkit-transform:matrix(0.431796,-0.009931,0.005748,0.249934,0,0);}
.m15a_c00334{transform:matrix(0.435563,-0.011325,0.006498,0.249916,0,0);-ms-transform:matrix(0.435563,-0.011325,0.006498,0.249916,0,0);-webkit-transform:matrix(0.435563,-0.011325,0.006498,0.249916,0,0);}
.m77_c00334{transform:matrix(0.460693,-0.007832,0.004249,0.249964,0,0);-ms-transform:matrix(0.460693,-0.007832,0.004249,0.249964,0,0);-webkit-transform:matrix(0.460693,-0.007832,0.004249,0.249964,0,0);}
.mdb_c00334{transform:matrix(0.465843,-0.007919,0.004249,0.249964,0,0);-ms-transform:matrix(0.465843,-0.007919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.465843,-0.007919,0.004249,0.249964,0,0);}
.mc8_c00334{transform:matrix(0.474651,-0.008069,0.004249,0.249964,0,0);-ms-transform:matrix(0.474651,-0.008069,0.004249,0.249964,0,0);-webkit-transform:matrix(0.474651,-0.008069,0.004249,0.249964,0,0);}
.m105_c00334{transform:matrix(0.476303,-0.011431,0.005998,0.249928,0,0);-ms-transform:matrix(0.476303,-0.011431,0.005998,0.249928,0,0);-webkit-transform:matrix(0.476303,-0.011431,0.005998,0.249928,0,0);}
.m150_c00334{transform:matrix(0.484736,-0.012603,0.006498,0.249916,0,0);-ms-transform:matrix(0.484736,-0.012603,0.006498,0.249916,0,0);-webkit-transform:matrix(0.484736,-0.012603,0.006498,0.249916,0,0);}
.m14f_c00334{transform:matrix(0.502500,-0.013065,0.006498,0.249916,0,0);-ms-transform:matrix(0.502500,-0.013065,0.006498,0.249916,0,0);-webkit-transform:matrix(0.502500,-0.013065,0.006498,0.249916,0,0);}
.m8f_c00334{transform:matrix(0.510936,-0.008686,0.004249,0.249964,0,0);-ms-transform:matrix(0.510936,-0.008686,0.004249,0.249964,0,0);-webkit-transform:matrix(0.510936,-0.008686,0.004249,0.249964,0,0);}
.m155_c00334{transform:matrix(0.514816,-0.013385,0.006498,0.249916,0,0);-ms-transform:matrix(0.514816,-0.013385,0.006498,0.249916,0,0);-webkit-transform:matrix(0.514816,-0.013385,0.006498,0.249916,0,0);}
.m135_c00334{transform:matrix(0.596803,-0.015517,0.006498,0.249916,0,0);-ms-transform:matrix(0.596803,-0.015517,0.006498,0.249916,0,0);-webkit-transform:matrix(0.596803,-0.015517,0.006498,0.249916,0,0);}
.me9_c00334{transform:matrix(0.677507,-0.011518,0.004249,0.249964,0,0);-ms-transform:matrix(0.677507,-0.011518,0.004249,0.249964,0,0);-webkit-transform:matrix(0.677507,-0.011518,0.004249,0.249964,0,0);}
.mfa_c00334{transform:matrix(0.679014,-0.016296,0.005998,0.249928,0,0);-ms-transform:matrix(0.679014,-0.016296,0.005998,0.249928,0,0);-webkit-transform:matrix(0.679014,-0.016296,0.005998,0.249928,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;}
.fs14_c00334{font-size:34.661710px;}
.fse_c00334{font-size:35.709441px;}
.fs12_c00334{font-size:51.467387px;}
.fs11_c00334{font-size:53.568097px;}
.fs4_c00334{font-size:63.009103px;}
.fs10_c00334{font-size:63.016661px;}
.fs8_c00334{font-size:66.159558px;}
.fs2_c00334{font-size:67.209710px;}
.fsb_c00334{font-size:67.219351px;}
.fs9_c00334{font-size:68.259861px;}
.fsd_c00334{font-size:68.269653px;}
.fs3_c00334{font-size:69.310013px;}
.fsf_c00334{font-size:69.318327px;}
.fs15_c00334{font-size:69.323419px;}
.fs7_c00334{font-size:70.360165px;}
.fs1_c00334{font-size:71.410317px;}
.fsc_c00334{font-size:71.420560px;}
.fs0_c00334{font-size:72.460468px;}
.fs6_c00334{font-size:73.510620px;}
.fsa_c00334{font-size:74.571467px;}
.fs16_c00334{font-size:74.575194px;}
.fs5_c00334{font-size:98.714261px;}
.fs13_c00334{font-size:103.985129px;}
.y0_c00334{bottom:0.000000px;}
.y15f_c00334{bottom:135.254166px;}
.y160_c00334{bottom:135.254229px;}
.y15e_c00334{bottom:150.343563px;}
.y156_c00334{bottom:159.015921px;}
.y15c_c00334{bottom:159.688770px;}
.y15d_c00334{bottom:159.689184px;}
.y15b_c00334{bottom:159.689439px;}
.y157_c00334{bottom:160.935615px;}
.y158_c00334{bottom:166.487424px;}
.y159_c00334{bottom:167.369622px;}
.y15a_c00334{bottom:169.690347px;}
.y14a_c00334{bottom:179.809932px;}
.y14b_c00334{bottom:180.681387px;}
.y14c_c00334{bottom:181.581117px;}
.y14d_c00334{bottom:182.228010px;}
.y14e_c00334{bottom:183.701898px;}
.y14f_c00334{bottom:184.446681px;}
.y150_c00334{bottom:185.142714px;}
.y151_c00334{bottom:186.777009px;}
.y152_c00334{bottom:188.062800px;}
.y153_c00334{bottom:189.276675px;}
.y154_c00334{bottom:191.684067px;}
.y155_c00334{bottom:192.944586px;}
.y13b_c00334{bottom:198.179439px;}
.y13c_c00334{bottom:199.060893px;}
.y13d_c00334{bottom:200.373684px;}
.y13e_c00334{bottom:200.881116px;}
.y13f_c00334{bottom:201.709389px;}
.y140_c00334{bottom:202.151823px;}
.y141_c00334{bottom:202.994508px;}
.y142_c00334{bottom:204.840786px;}
.y143_c00334{bottom:205.942842px;}
.y144_c00334{bottom:206.701299px;}
.y145_c00334{bottom:207.284904px;}
.y146_c00334{bottom:208.140441px;}
.y147_c00334{bottom:208.587516px;}
.y148_c00334{bottom:210.257304px;}
.y149_c00334{bottom:210.603789px;}
.y12d_c00334{bottom:216.006000px;}
.y12e_c00334{bottom:217.058844px;}
.y12f_c00334{bottom:217.859592px;}
.y130_c00334{bottom:218.987979px;}
.y131_c00334{bottom:219.677889px;}
.y132_c00334{bottom:220.128495px;}
.y133_c00334{bottom:221.020113px;}
.y134_c00334{bottom:221.644854px;}
.y135_c00334{bottom:222.153219px;}
.y136_c00334{bottom:222.571533px;}
.y137_c00334{bottom:224.242839px;}
.y138_c00334{bottom:225.022722px;}
.y139_c00334{bottom:227.880915px;}
.y13a_c00334{bottom:229.175247px;}
.y12b_c00334{bottom:250.830256px;}
.y12c_c00334{bottom:257.475573px;}
.y11f_c00334{bottom:267.037500px;}
.y120_c00334{bottom:267.739195px;}
.y121_c00334{bottom:268.938829px;}
.y122_c00334{bottom:270.354606px;}
.y123_c00334{bottom:271.299423px;}
.y124_c00334{bottom:271.783975px;}
.y125_c00334{bottom:273.609957px;}
.y126_c00334{bottom:274.676076px;}
.y127_c00334{bottom:275.883507px;}
.y128_c00334{bottom:276.349119px;}
.y129_c00334{bottom:277.672056px;}
.y12a_c00334{bottom:278.559120px;}
.y119_c00334{bottom:279.721500px;}
.y11a_c00334{bottom:280.379864px;}
.y11b_c00334{bottom:280.887393px;}
.y11c_c00334{bottom:285.777527px;}
.y11d_c00334{bottom:288.475082px;}
.y11e_c00334{bottom:289.538441px;}
.y10b_c00334{bottom:289.695804px;}
.y10c_c00334{bottom:290.893908px;}
.y10d_c00334{bottom:291.397188px;}
.y10e_c00334{bottom:292.910256px;}
.y10f_c00334{bottom:293.652360px;}
.y110_c00334{bottom:294.118572px;}
.y111_c00334{bottom:295.125300px;}
.y112_c00334{bottom:295.809540px;}
.y113_c00334{bottom:297.200376px;}
.y114_c00334{bottom:297.834768px;}
.y115_c00334{bottom:298.448676px;}
.y116_c00334{bottom:299.125860px;}
.y117_c00334{bottom:299.798208px;}
.y118_c00334{bottom:301.735716px;}
.y100_c00334{bottom:313.192092px;}
.y101_c00334{bottom:314.116224px;}
.y102_c00334{bottom:315.004356px;}
.y103_c00334{bottom:315.488352px;}
.y104_c00334{bottom:316.181244px;}
.y105_c00334{bottom:317.292576px;}
.y106_c00334{bottom:318.892080px;}
.y107_c00334{bottom:320.200728px;}
.y108_c00334{bottom:321.079056px;}
.y109_c00334{bottom:321.659820px;}
.y10a_c00334{bottom:324.018468px;}
.yf6_c00334{bottom:335.341488px;}
.yf7_c00334{bottom:335.833032px;}
.yf8_c00334{bottom:337.103688px;}
.yf9_c00334{bottom:337.428696px;}
.yfa_c00334{bottom:339.496464px;}
.yfb_c00334{bottom:341.336892px;}
.yfc_c00334{bottom:342.762852px;}
.yfd_c00334{bottom:343.974576px;}
.yfe_c00334{bottom:345.472896px;}
.yff_c00334{bottom:347.605356px;}
.yef_c00334{bottom:358.837500px;}
.yf0_c00334{bottom:360.318828px;}
.yf1_c00334{bottom:360.970068px;}
.yf2_c00334{bottom:363.167400px;}
.yf3_c00334{bottom:363.790092px;}
.yf4_c00334{bottom:367.183020px;}
.yf5_c00334{bottom:370.118856px;}
.ye4_c00334{bottom:381.998240px;}
.ye5_c00334{bottom:383.323463px;}
.ye6_c00334{bottom:383.989425px;}
.ye7_c00334{bottom:385.628648px;}
.ye8_c00334{bottom:386.129024px;}
.ye9_c00334{bottom:388.343160px;}
.yea_c00334{bottom:388.937033px;}
.yeb_c00334{bottom:389.470919px;}
.yec_c00334{bottom:390.357359px;}
.yed_c00334{bottom:391.652030px;}
.yee_c00334{bottom:393.158895px;}
.yd7_c00334{bottom:404.946699px;}
.yd8_c00334{bottom:405.508788px;}
.yd9_c00334{bottom:406.464878px;}
.yda_c00334{bottom:407.185098px;}
.ydb_c00334{bottom:408.352901px;}
.ydc_c00334{bottom:409.161891px;}
.ydd_c00334{bottom:410.719742px;}
.yde_c00334{bottom:411.322982px;}
.ydf_c00334{bottom:412.218605px;}
.ye0_c00334{bottom:413.660214px;}
.ye1_c00334{bottom:414.772370px;}
.ye2_c00334{bottom:415.255013px;}
.ye3_c00334{bottom:416.777598px;}
.ycd_c00334{bottom:427.363469px;}
.yce_c00334{bottom:429.257148px;}
.ycf_c00334{bottom:430.791684px;}
.yd0_c00334{bottom:431.721629px;}
.yd1_c00334{bottom:432.487331px;}
.yd2_c00334{bottom:432.978282px;}
.yd3_c00334{bottom:434.387534px;}
.yd4_c00334{bottom:436.952612px;}
.yd5_c00334{bottom:438.074091px;}
.yd6_c00334{bottom:439.096809px;}
.yc1_c00334{bottom:450.580559px;}
.yc2_c00334{bottom:451.841222px;}
.yc3_c00334{bottom:452.912732px;}
.yc4_c00334{bottom:453.967752px;}
.yc5_c00334{bottom:454.904393px;}
.yc6_c00334{bottom:455.885886px;}
.yc7_c00334{bottom:456.940728px;}
.yc8_c00334{bottom:457.657073px;}
.yc9_c00334{bottom:458.679599px;}
.yca_c00334{bottom:459.181355px;}
.ycb_c00334{bottom:459.589860px;}
.ycc_c00334{bottom:461.283623px;}
.yb4_c00334{bottom:473.534294px;}
.yb5_c00334{bottom:474.087062px;}
.yb6_c00334{bottom:475.517247px;}
.yb7_c00334{bottom:476.334143px;}
.yb8_c00334{bottom:477.885449px;}
.yb9_c00334{bottom:479.304780px;}
.yba_c00334{bottom:481.045803px;}
.ybb_c00334{bottom:481.598775px;}
.ybc_c00334{bottom:482.049717px;}
.ybd_c00334{bottom:483.272630px;}
.ybe_c00334{bottom:483.629259px;}
.ybf_c00334{bottom:484.744965px;}
.yc0_c00334{bottom:485.127153px;}
.ya9_c00334{bottom:496.485599px;}
.yaa_c00334{bottom:497.090699px;}
.yab_c00334{bottom:497.316218px;}
.yac_c00334{bottom:498.081521px;}
.yad_c00334{bottom:499.499633px;}
.yae_c00334{bottom:500.548767px;}
.yaf_c00334{bottom:501.976692px;}
.yb0_c00334{bottom:502.793984px;}
.yb1_c00334{bottom:503.587931px;}
.yb2_c00334{bottom:504.013487px;}
.yb3_c00334{bottom:505.527986px;}
.y9f_c00334{bottom:520.248420px;}
.ya0_c00334{bottom:521.286899px;}
.ya1_c00334{bottom:522.794493px;}
.ya2_c00334{bottom:523.808836px;}
.ya3_c00334{bottom:524.770239px;}
.ya4_c00334{bottom:525.867188px;}
.ya5_c00334{bottom:526.698675px;}
.ya6_c00334{bottom:527.916975px;}
.ya7_c00334{bottom:528.373295px;}
.ya8_c00334{bottom:528.815777px;}
.y94_c00334{bottom:542.932930px;}
.y95_c00334{bottom:543.802446px;}
.y96_c00334{bottom:544.261876px;}
.y97_c00334{bottom:545.503831px;}
.y98_c00334{bottom:546.103500px;}
.y99_c00334{bottom:547.772846px;}
.y9a_c00334{bottom:549.056041px;}
.y9b_c00334{bottom:549.884240px;}
.y9c_c00334{bottom:551.066348px;}
.y9d_c00334{bottom:551.725481px;}
.y9e_c00334{bottom:553.348974px;}
.y89_c00334{bottom:565.885637px;}
.y8a_c00334{bottom:566.941998px;}
.y8b_c00334{bottom:567.368861px;}
.y8c_c00334{bottom:568.484645px;}
.y8d_c00334{bottom:569.066472px;}
.y8e_c00334{bottom:569.866640px;}
.y8f_c00334{bottom:570.856290px;}
.y90_c00334{bottom:572.097800px;}
.y91_c00334{bottom:572.949944px;}
.y92_c00334{bottom:573.786639px;}
.y93_c00334{bottom:575.555322px;}
.y7b_c00334{bottom:588.303987px;}
.y7c_c00334{bottom:588.864974px;}
.y7d_c00334{bottom:589.974762px;}
.y7e_c00334{bottom:590.355287px;}
.y7f_c00334{bottom:590.893337px;}
.y80_c00334{bottom:592.442876px;}
.y81_c00334{bottom:592.964360px;}
.y82_c00334{bottom:593.887953px;}
.y83_c00334{bottom:595.321662px;}
.y84_c00334{bottom:595.815798px;}
.y85_c00334{bottom:596.684063px;}
.y86_c00334{bottom:597.748896px;}
.y87_c00334{bottom:598.967532px;}
.y88_c00334{bottom:599.363475px;}
.y71_c00334{bottom:606.934928px;}
.y72_c00334{bottom:608.087666px;}
.y73_c00334{bottom:609.515580px;}
.y74_c00334{bottom:609.818420px;}
.y75_c00334{bottom:611.368640px;}
.y76_c00334{bottom:611.640297px;}
.y77_c00334{bottom:613.417554px;}
.y78_c00334{bottom:614.352431px;}
.y79_c00334{bottom:615.379247px;}
.y7a_c00334{bottom:616.491806px;}
.y65_c00334{bottom:633.129681px;}
.y66_c00334{bottom:634.251101px;}
.y67_c00334{bottom:634.914645px;}
.y68_c00334{bottom:635.457756px;}
.y69_c00334{bottom:635.995104px;}
.y6a_c00334{bottom:637.209609px;}
.y6b_c00334{bottom:637.636821px;}
.y6c_c00334{bottom:640.055912px;}
.y6d_c00334{bottom:640.464798px;}
.y6e_c00334{bottom:641.051033px;}
.y6f_c00334{bottom:642.303642px;}
.y70_c00334{bottom:643.391568px;}
.y59_c00334{bottom:656.080995px;}
.y5a_c00334{bottom:656.931827px;}
.y5b_c00334{bottom:658.474026px;}
.y5c_c00334{bottom:658.814538px;}
.y5d_c00334{bottom:660.458934px;}
.y5e_c00334{bottom:660.923916px;}
.y5f_c00334{bottom:661.326612px;}
.y60_c00334{bottom:662.650785px;}
.y61_c00334{bottom:663.163017px;}
.y62_c00334{bottom:663.575144px;}
.y63_c00334{bottom:664.580543px;}
.y64_c00334{bottom:665.052966px;}
.y50_c00334{bottom:679.302361px;}
.y51_c00334{bottom:680.771647px;}
.y52_c00334{bottom:681.722293px;}
.y53_c00334{bottom:682.840602px;}
.y54_c00334{bottom:684.680288px;}
.y55_c00334{bottom:685.362897px;}
.y56_c00334{bottom:686.411673px;}
.y57_c00334{bottom:687.757848px;}
.y58_c00334{bottom:688.087364px;}
.y46_c00334{bottom:702.254940px;}
.y47_c00334{bottom:703.011770px;}
.y48_c00334{bottom:704.152075px;}
.y49_c00334{bottom:704.703495px;}
.y4a_c00334{bottom:705.172866px;}
.y4b_c00334{bottom:706.736971px;}
.y4c_c00334{bottom:707.074693px;}
.y4d_c00334{bottom:708.811812px;}
.y4e_c00334{bottom:709.902849px;}
.y4f_c00334{bottom:711.190478px;}
.y3a_c00334{bottom:724.665798px;}
.y3b_c00334{bottom:725.353860px;}
.y3c_c00334{bottom:725.796266px;}
.y3d_c00334{bottom:726.438450px;}
.y3e_c00334{bottom:727.454931px;}
.y3f_c00334{bottom:728.718042px;}
.y40_c00334{bottom:729.727872px;}
.y41_c00334{bottom:730.237311px;}
.y42_c00334{bottom:731.964668px;}
.y43_c00334{bottom:732.838493px;}
.y44_c00334{bottom:733.189648px;}
.y45_c00334{bottom:733.848526px;}
.y2e_c00334{bottom:747.888345px;}
.y2f_c00334{bottom:748.699824px;}
.y30_c00334{bottom:749.103804px;}
.y31_c00334{bottom:749.832778px;}
.y32_c00334{bottom:750.319033px;}
.y33_c00334{bottom:751.032814px;}
.y34_c00334{bottom:751.630461px;}
.y35_c00334{bottom:752.539969px;}
.y36_c00334{bottom:752.905577px;}
.y37_c00334{bottom:754.169527px;}
.y38_c00334{bottom:755.199709px;}
.y39_c00334{bottom:756.113323px;}
.y24_c00334{bottom:770.303691px;}
.y25_c00334{bottom:771.212325px;}
.y26_c00334{bottom:771.955926px;}
.y27_c00334{bottom:772.489474px;}
.y28_c00334{bottom:774.136865px;}
.y29_c00334{bottom:775.274518px;}
.y2a_c00334{bottom:776.086157px;}
.y2b_c00334{bottom:776.616084px;}
.y2c_c00334{bottom:778.117434px;}
.y2d_c00334{bottom:778.650472px;}
.y18_c00334{bottom:793.526464px;}
.y19_c00334{bottom:793.893920px;}
.y1a_c00334{bottom:794.715657px;}
.y1b_c00334{bottom:795.436414px;}
.y1c_c00334{bottom:795.816007px;}
.y1d_c00334{bottom:796.248564px;}
.y1e_c00334{bottom:797.390913px;}
.y1f_c00334{bottom:798.022395px;}
.y20_c00334{bottom:799.071006px;}
.y21_c00334{bottom:799.549769px;}
.y22_c00334{bottom:800.380660px;}
.y23_c00334{bottom:801.156345px;}
.ye_c00334{bottom:815.939914px;}
.yf_c00334{bottom:816.453960px;}
.y10_c00334{bottom:816.995260px;}
.y11_c00334{bottom:817.719645px;}
.y12_c00334{bottom:818.008561px;}
.y13_c00334{bottom:820.150002px;}
.y14_c00334{bottom:820.899168px;}
.y15_c00334{bottom:821.981743px;}
.y16_c00334{bottom:822.875906px;}
.y17_c00334{bottom:823.567909px;}
.y1_c00334{bottom:839.164500px;}
.y2_c00334{bottom:840.072555px;}
.y3_c00334{bottom:840.540582px;}
.y4_c00334{bottom:841.027198px;}
.y5_c00334{bottom:841.450040px;}
.y6_c00334{bottom:842.106384px;}
.y7_c00334{bottom:842.533432px;}
.y8_c00334{bottom:842.925954px;}
.y9_c00334{bottom:843.997591px;}
.ya_c00334{bottom:845.199151px;}
.yb_c00334{bottom:845.783407px;}
.yc_c00334{bottom:846.135614px;}
.yd_c00334{bottom:846.825108px;}
.h16_c00334{height:34.661710px;}
.h10_c00334{height:35.709441px;}
.h14_c00334{height:51.467387px;}
.h13_c00334{height:53.568097px;}
.h6_c00334{height:63.009103px;}
.h12_c00334{height:63.016661px;}
.ha_c00334{height:66.159558px;}
.h4_c00334{height:67.209710px;}
.hd_c00334{height:67.219351px;}
.hb_c00334{height:68.259861px;}
.hf_c00334{height:68.269653px;}
.h5_c00334{height:69.310013px;}
.h11_c00334{height:69.318327px;}
.h17_c00334{height:69.323419px;}
.h9_c00334{height:70.360165px;}
.h3_c00334{height:71.410317px;}
.he_c00334{height:71.420560px;}
.h2_c00334{height:72.460468px;}
.h8_c00334{height:73.510620px;}
.hc_c00334{height:74.571467px;}
.h18_c00334{height:74.575194px;}
.h7_c00334{height:98.714261px;}
.h15_c00334{height:103.985129px;}
.h1_c00334{height:1005.000000px;}
.h0_c00334{height:1005.150000px;}
.w0_c00334{width:702.540000px;}
.w1_c00334{width:702.750000px;}
.x0_c00334{left:0.000000px;}
.x5a_c00334{left:80.816463px;}
.x4d_c00334{left:91.811898px;}
.x1_c00334{left:93.966000px;}
.x20_c00334{left:95.559756px;}
.x34_c00334{left:97.106823px;}
.x60_c00334{left:98.641748px;}
.x71_c00334{left:100.969005px;}
.xc3_c00334{left:102.385320px;}
.x91_c00334{left:103.595352px;}
.x96_c00334{left:104.782206px;}
.x9a_c00334{left:105.894000px;}
.xb4_c00334{left:107.449500px;}
.xb9_c00334{left:108.815100px;}
.x17_c00334{left:116.325338px;}
.xe_c00334{left:122.740281px;}
.x61_c00334{left:125.374437px;}
.x83_c00334{left:126.389391px;}
.x7d_c00334{left:128.360012px;}
.x35_c00334{left:131.491064px;}
.x3f_c00334{left:133.924973px;}
.xb1_c00334{left:136.917000px;}
.x7e_c00334{left:139.066272px;}
.x2a_c00334{left:140.889012px;}
.x21_c00334{left:143.360124px;}
.x5b_c00334{left:144.829367px;}
.x2_c00334{left:147.381000px;}
.x54_c00334{left:150.941483px;}
.xf_c00334{left:152.816271px;}
.x6a_c00334{left:154.403907px;}
.xa6_c00334{left:158.258352px;}
.x89_c00334{left:161.757680px;}
.x2b_c00334{left:163.328630px;}
.x18_c00334{left:164.662838px;}
.x72_c00334{left:167.403614px;}
.x47_c00334{left:168.747006px;}
.x3_c00334{left:174.912000px;}
.x6b_c00334{left:176.865642px;}
.x62_c00334{left:178.211342px;}
.xa7_c00334{left:180.166392px;}
.x22_c00334{left:182.511798px;}
.x55_c00334{left:184.148300px;}
.x36_c00334{left:185.758310px;}
.xa1_c00334{left:187.048608px;}
.x9e_c00334{left:188.296452px;}
.x40_c00334{left:190.940066px;}
.x10_c00334{left:193.044083px;}
.x97_c00334{left:195.256005px;}
.x63_c00334{left:196.358618px;}
.x92_c00334{left:200.932433px;}
.xbf_c00334{left:202.276194px;}
.x4_c00334{left:203.536500px;}
.x4e_c00334{left:205.747146px;}
.x19_c00334{left:207.060338px;}
.x11_c00334{left:209.068302px;}
.x23_c00334{left:210.631355px;}
.x8a_c00334{left:212.784212px;}
.x48_c00334{left:216.282584px;}
.x41_c00334{left:218.522163px;}
.x4f_c00334{left:221.982050px;}
.x5c_c00334{left:224.146515px;}
.x5_c00334{left:228.409500px;}
.x73_c00334{left:229.515452px;}
.x2c_c00334{left:230.840982px;}
.x37_c00334{left:236.548709px;}
.x56_c00334{left:238.172546px;}
.xae_c00334{left:239.746500px;}
.x42_c00334{left:241.983965px;}
.x7f_c00334{left:243.054209px;}
.xa8_c00334{left:245.962476px;}
.xb5_c00334{left:248.676000px;}
.x8d_c00334{left:250.903674px;}
.x1a_c00334{left:254.833838px;}
.xba_c00334{left:255.897744px;}
.x74_c00334{left:259.494422px;}
.x8b_c00334{left:263.017295px;}
.xb6_c00334{left:266.007000px;}
.x6_c00334{left:267.018000px;}
.x2d_c00334{left:270.533319px;}
.x49_c00334{left:272.180228px;}
.x9f_c00334{left:274.453452px;}
.x79_c00334{left:278.663360px;}
.x93_c00334{left:286.852661px;}
.x7_c00334{left:292.138500px;}
.x64_c00334{left:295.768860px;}
.x24_c00334{left:297.298397px;}
.xa9_c00334{left:298.435200px;}
.x38_c00334{left:299.728496px;}
.x2e_c00334{left:303.747258px;}
.x6c_c00334{left:308.348180px;}
.xbb_c00334{left:309.482052px;}
.x9b_c00334{left:312.252000px;}
.x8_c00334{left:315.228000px;}
.x43_c00334{left:320.221487px;}
.x1b_c00334{left:322.030838px;}
.x8e_c00334{left:324.610652px;}
.x7a_c00334{left:326.743412px;}
.x12_c00334{left:328.062788px;}
.x44_c00334{left:337.086620px;}
.x50_c00334{left:341.595915px;}
.x75_c00334{left:342.951663px;}
.x8f_c00334{left:345.987984px;}
.x39_c00334{left:350.215920px;}
.x2f_c00334{left:354.246891px;}
.x25_c00334{left:357.158357px;}
.x1c_c00334{left:359.176838px;}
.x6d_c00334{left:360.472920px;}
.x4a_c00334{left:364.157036px;}
.x13_c00334{left:369.660074px;}
.xa2_c00334{left:372.175428px;}
.x30_c00334{left:374.517534px;}
.x3a_c00334{left:375.681620px;}
.xc0_c00334{left:377.237694px;}
.x9_c00334{left:378.265500px;}
.x7b_c00334{left:381.561107px;}
.xbc_c00334{left:386.439069px;}
.xb2_c00334{left:392.167500px;}
.x98_c00334{left:393.194201px;}
.x4b_c00334{left:398.308802px;}
.x26_c00334{left:399.870903px;}
.x51_c00334{left:404.660631px;}
.x76_c00334{left:407.136399px;}
.xa0_c00334{left:410.552952px;}
.x94_c00334{left:419.704595px;}
.x1d_c00334{left:420.859838px;}
.x45_c00334{left:423.912683px;}
.x6e_c00334{left:425.824202px;}
.x27_c00334{left:427.777460px;}
.x14_c00334{left:429.810553px;}
.xc5_c00334{left:431.032836px;}
.x65_c00334{left:432.894053px;}
.xa3_c00334{left:434.456892px;}
.x80_c00334{left:437.734974px;}
.x57_c00334{left:441.209693px;}
.x84_c00334{left:442.611989px;}
.x31_c00334{left:444.719336px;}
.xa_c00334{left:448.945500px;}
.x4c_c00334{left:450.734124px;}
.xaf_c00334{left:452.361000px;}
.x9c_c00334{left:453.624000px;}
.x66_c00334{left:456.400446px;}
.x81_c00334{left:458.001597px;}
.xaa_c00334{left:459.968052px;}
.x3b_c00334{left:462.021708px;}
.xbd_c00334{left:463.943586px;}
.xc4_c00334{left:465.652173px;}
.x85_c00334{left:467.725847px;}
.x6f_c00334{left:470.654672px;}
.xc1_c00334{left:473.378694px;}
.xa4_c00334{left:476.306916px;}
.x46_c00334{left:478.470903px;}
.x15_c00334{left:479.495712px;}
.xb_c00334{left:483.313500px;}
.x99_c00334{left:484.756923px;}
.xab_c00334{left:486.673200px;}
.x86_c00334{left:488.250113px;}
.x58_c00334{left:490.920143px;}
.x5d_c00334{left:492.868451px;}
.x52_c00334{left:496.551884px;}
.x1e_c00334{left:497.898338px;}
.x32_c00334{left:501.964367px;}
.xc_c00334{left:504.031500px;}
.x3c_c00334{left:505.744490px;}
.x28_c00334{left:506.824782px;}
.x8c_c00334{left:511.182888px;}
.x70_c00334{left:514.664667px;}
.xac_c00334{left:516.139920px;}
.x16_c00334{left:517.907049px;}
.x53_c00334{left:519.045854px;}
.x3d_c00334{left:523.311597px;}
.x7c_c00334{left:528.970584px;}
.x82_c00334{left:530.143701px;}
.x29_c00334{left:534.914339px;}
.x77_c00334{left:540.596591px;}
.x1f_c00334{left:543.526838px;}
.xd_c00334{left:544.590000px;}
.x67_c00334{left:548.488199px;}
.x5e_c00334{left:549.915482px;}
.x33_c00334{left:552.705500px;}
.x3e_c00334{left:556.243914px;}
.x87_c00334{left:560.070018px;}
.xb7_c00334{left:564.177000px;}
.xc2_c00334{left:565.970694px;}
.x90_c00334{left:567.542391px;}
.xb0_c00334{left:569.646000px;}
.x9d_c00334{left:575.950500px;}
.xb3_c00334{left:602.241465px;}
.x68_c00334{left:606.492246px;}
.x59_c00334{left:607.945676px;}
.x5f_c00334{left:611.741436px;}
.xb8_c00334{left:613.959000px;}
.xa5_c00334{left:616.292496px;}
.x95_c00334{left:617.889873px;}
.x78_c00334{left:621.797960px;}
.x69_c00334{left:625.369971px;}
.xbe_c00334{left:626.567049px;}
.x88_c00334{left:628.146230px;}
.xad_c00334{left:629.574120px;}
.xc6_c00334{left:635.220660px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.fs14_c00334{font-size:30.810409pt;}
.fse_c00334{font-size:31.741726pt;}
.fs12_c00334{font-size:45.748789pt;}
.fs11_c00334{font-size:47.616086pt;}
.fs4_c00334{font-size:56.008091pt;}
.fs10_c00334{font-size:56.014810pt;}
.fs8_c00334{font-size:58.808496pt;}
.fs2_c00334{font-size:59.741964pt;}
.fsb_c00334{font-size:59.750534pt;}
.fs9_c00334{font-size:60.675432pt;}
.fsd_c00334{font-size:60.684136pt;}
.fs3_c00334{font-size:61.608901pt;}
.fsf_c00334{font-size:61.616291pt;}
.fs15_c00334{font-size:61.620817pt;}
.fs7_c00334{font-size:62.542369pt;}
.fs1_c00334{font-size:63.475837pt;}
.fsc_c00334{font-size:63.484942pt;}
.fs0_c00334{font-size:64.409305pt;}
.fs6_c00334{font-size:65.342773pt;}
.fsa_c00334{font-size:66.285749pt;}
.fs16_c00334{font-size:66.289061pt;}
.fs5_c00334{font-size:87.746010pt;}
.fs13_c00334{font-size:92.431226pt;}
.y0_c00334{bottom:0.000000pt;}
.y15f_c00334{bottom:120.225925pt;}
.y160_c00334{bottom:120.225981pt;}
.y15e_c00334{bottom:133.638723pt;}
.y156_c00334{bottom:141.347485pt;}
.y15c_c00334{bottom:141.945573pt;}
.y15d_c00334{bottom:141.945941pt;}
.y15b_c00334{bottom:141.946168pt;}
.y157_c00334{bottom:143.053880pt;}
.y158_c00334{bottom:147.988821pt;}
.y159_c00334{bottom:148.772997pt;}
.y15a_c00334{bottom:150.835864pt;}
.y14a_c00334{bottom:159.831051pt;}
.y14b_c00334{bottom:160.605677pt;}
.y14c_c00334{bottom:161.405437pt;}
.y14d_c00334{bottom:161.980453pt;}
.y14e_c00334{bottom:163.290576pt;}
.y14f_c00334{bottom:163.952605pt;}
.y150_c00334{bottom:164.571301pt;}
.y151_c00334{bottom:166.024008pt;}
.y152_c00334{bottom:167.166933pt;}
.y153_c00334{bottom:168.245933pt;}
.y154_c00334{bottom:170.385837pt;}
.y155_c00334{bottom:171.506299pt;}
.y13b_c00334{bottom:176.159501pt;}
.y13c_c00334{bottom:176.943016pt;}
.y13d_c00334{bottom:178.109941pt;}
.y13e_c00334{bottom:178.560992pt;}
.y13f_c00334{bottom:179.297235pt;}
.y140_c00334{bottom:179.690509pt;}
.y141_c00334{bottom:180.439563pt;}
.y142_c00334{bottom:182.080699pt;}
.y143_c00334{bottom:183.060304pt;}
.y144_c00334{bottom:183.734488pt;}
.y145_c00334{bottom:184.253248pt;}
.y146_c00334{bottom:185.013725pt;}
.y147_c00334{bottom:185.411125pt;}
.y148_c00334{bottom:186.895381pt;}
.y149_c00334{bottom:187.203368pt;}
.y12d_c00334{bottom:192.005333pt;}
.y12e_c00334{bottom:192.941195pt;}
.y12f_c00334{bottom:193.652971pt;}
.y130_c00334{bottom:194.655981pt;}
.y131_c00334{bottom:195.269235pt;}
.y132_c00334{bottom:195.669773pt;}
.y133_c00334{bottom:196.462323pt;}
.y134_c00334{bottom:197.017648pt;}
.y135_c00334{bottom:197.469528pt;}
.y136_c00334{bottom:197.841363pt;}
.y137_c00334{bottom:199.326968pt;}
.y138_c00334{bottom:200.020197pt;}
.y139_c00334{bottom:202.560813pt;}
.y13a_c00334{bottom:203.711331pt;}
.y12b_c00334{bottom:222.960228pt;}
.y12c_c00334{bottom:228.867176pt;}
.y11f_c00334{bottom:237.366667pt;}
.y120_c00334{bottom:237.990396pt;}
.y121_c00334{bottom:239.056737pt;}
.y122_c00334{bottom:240.315205pt;}
.y123_c00334{bottom:241.155043pt;}
.y124_c00334{bottom:241.585756pt;}
.y125_c00334{bottom:243.208851pt;}
.y126_c00334{bottom:244.156512pt;}
.y127_c00334{bottom:245.229784pt;}
.y128_c00334{bottom:245.643661pt;}
.y129_c00334{bottom:246.819605pt;}
.y12a_c00334{bottom:247.608107pt;}
.y119_c00334{bottom:248.641333pt;}
.y11a_c00334{bottom:249.226545pt;}
.y11b_c00334{bottom:249.677683pt;}
.y11c_c00334{bottom:254.024468pt;}
.y11d_c00334{bottom:256.422295pt;}
.y11e_c00334{bottom:257.367503pt;}
.y10b_c00334{bottom:257.507381pt;}
.y10c_c00334{bottom:258.572363pt;}
.y10d_c00334{bottom:259.019723pt;}
.y10e_c00334{bottom:260.364672pt;}
.y10f_c00334{bottom:261.024320pt;}
.y110_c00334{bottom:261.438731pt;}
.y111_c00334{bottom:262.333600pt;}
.y112_c00334{bottom:262.941813pt;}
.y113_c00334{bottom:264.178112pt;}
.y114_c00334{bottom:264.742016pt;}
.y115_c00334{bottom:265.287712pt;}
.y116_c00334{bottom:265.889653pt;}
.y117_c00334{bottom:266.487296pt;}
.y118_c00334{bottom:268.209525pt;}
.y100_c00334{bottom:278.392971pt;}
.y101_c00334{bottom:279.214421pt;}
.y102_c00334{bottom:280.003872pt;}
.y103_c00334{bottom:280.434091pt;}
.y104_c00334{bottom:281.049995pt;}
.y105_c00334{bottom:282.037845pt;}
.y106_c00334{bottom:283.459627pt;}
.y107_c00334{bottom:284.622869pt;}
.y108_c00334{bottom:285.403605pt;}
.y109_c00334{bottom:285.919840pt;}
.y10a_c00334{bottom:288.016416pt;}
.yf6_c00334{bottom:298.081323pt;}
.yf7_c00334{bottom:298.518251pt;}
.yf8_c00334{bottom:299.647723pt;}
.yf9_c00334{bottom:299.936619pt;}
.yfa_c00334{bottom:301.774635pt;}
.yfb_c00334{bottom:303.410571pt;}
.yfc_c00334{bottom:304.678091pt;}
.yfd_c00334{bottom:305.755179pt;}
.yfe_c00334{bottom:307.087019pt;}
.yff_c00334{bottom:308.982539pt;}
.yef_c00334{bottom:318.966667pt;}
.yf0_c00334{bottom:320.283403pt;}
.yf1_c00334{bottom:320.862283pt;}
.yf2_c00334{bottom:322.815467pt;}
.yf3_c00334{bottom:323.368971pt;}
.yf4_c00334{bottom:326.384907pt;}
.yf5_c00334{bottom:328.994539pt;}
.ye4_c00334{bottom:339.553991pt;}
.ye5_c00334{bottom:340.731967pt;}
.ye6_c00334{bottom:341.323933pt;}
.ye7_c00334{bottom:342.781020pt;}
.ye8_c00334{bottom:343.225799pt;}
.ye9_c00334{bottom:345.193920pt;}
.yea_c00334{bottom:345.721807pt;}
.yeb_c00334{bottom:346.196372pt;}
.yec_c00334{bottom:346.984319pt;}
.yed_c00334{bottom:348.135137pt;}
.yee_c00334{bottom:349.474573pt;}
.yd7_c00334{bottom:359.952621pt;}
.yd8_c00334{bottom:360.452256pt;}
.yd9_c00334{bottom:361.302113pt;}
.yda_c00334{bottom:361.942309pt;}
.ydb_c00334{bottom:362.980356pt;}
.ydc_c00334{bottom:363.699459pt;}
.ydd_c00334{bottom:365.084215pt;}
.yde_c00334{bottom:365.620428pt;}
.ydf_c00334{bottom:366.416537pt;}
.ye0_c00334{bottom:367.697968pt;}
.ye1_c00334{bottom:368.686551pt;}
.ye2_c00334{bottom:369.115567pt;}
.ye3_c00334{bottom:370.468976pt;}
.ycd_c00334{bottom:379.878639pt;}
.yce_c00334{bottom:381.561909pt;}
.ycf_c00334{bottom:382.925941pt;}
.yd0_c00334{bottom:383.752559pt;}
.yd1_c00334{bottom:384.433183pt;}
.yd2_c00334{bottom:384.869584pt;}
.yd3_c00334{bottom:386.122252pt;}
.yd4_c00334{bottom:388.402321pt;}
.yd5_c00334{bottom:389.399192pt;}
.yd6_c00334{bottom:390.308275pt;}
.yc1_c00334{bottom:400.516052pt;}
.yc2_c00334{bottom:401.636641pt;}
.yc3_c00334{bottom:402.589095pt;}
.yc4_c00334{bottom:403.526891pt;}
.yc5_c00334{bottom:404.359460pt;}
.yc6_c00334{bottom:405.231899pt;}
.yc7_c00334{bottom:406.169536pt;}
.yc8_c00334{bottom:406.806287pt;}
.yc9_c00334{bottom:407.715199pt;}
.yca_c00334{bottom:408.161204pt;}
.ycb_c00334{bottom:408.524320pt;}
.ycc_c00334{bottom:410.029887pt;}
.yb4_c00334{bottom:420.919372pt;}
.yb5_c00334{bottom:421.410721pt;}
.yb6_c00334{bottom:422.681997pt;}
.yb7_c00334{bottom:423.408127pt;}
.yb8_c00334{bottom:424.787065pt;}
.yb9_c00334{bottom:426.048693pt;}
.yba_c00334{bottom:427.596269pt;}
.ybb_c00334{bottom:428.087800pt;}
.ybc_c00334{bottom:428.488637pt;}
.ybd_c00334{bottom:429.575671pt;}
.ybe_c00334{bottom:429.892675pt;}
.ybf_c00334{bottom:430.884413pt;}
.yc0_c00334{bottom:431.224136pt;}
.ya9_c00334{bottom:441.320532pt;}
.yaa_c00334{bottom:441.858399pt;}
.yab_c00334{bottom:442.058860pt;}
.yac_c00334{bottom:442.739129pt;}
.yad_c00334{bottom:443.999673pt;}
.yae_c00334{bottom:444.932237pt;}
.yaf_c00334{bottom:446.201504pt;}
.yb0_c00334{bottom:446.927985pt;}
.yb1_c00334{bottom:447.633716pt;}
.yb2_c00334{bottom:448.011988pt;}
.yb3_c00334{bottom:449.358209pt;}
.y9f_c00334{bottom:462.443040pt;}
.ya0_c00334{bottom:463.366132pt;}
.ya1_c00334{bottom:464.706216pt;}
.ya2_c00334{bottom:465.607855pt;}
.ya3_c00334{bottom:466.462435pt;}
.ya4_c00334{bottom:467.437500pt;}
.ya5_c00334{bottom:468.176600pt;}
.ya6_c00334{bottom:469.259533pt;}
.ya7_c00334{bottom:469.665151pt;}
.ya8_c00334{bottom:470.058468pt;}
.y94_c00334{bottom:482.607049pt;}
.y95_c00334{bottom:483.379952pt;}
.y96_c00334{bottom:483.788335pt;}
.y97_c00334{bottom:484.892295pt;}
.y98_c00334{bottom:485.425333pt;}
.y99_c00334{bottom:486.909196pt;}
.y9a_c00334{bottom:488.049815pt;}
.y9b_c00334{bottom:488.785991pt;}
.y9c_c00334{bottom:489.836753pt;}
.y9d_c00334{bottom:490.422649pt;}
.y9e_c00334{bottom:491.865755pt;}
.y89_c00334{bottom:503.009455pt;}
.y8a_c00334{bottom:503.948443pt;}
.y8b_c00334{bottom:504.327876pt;}
.y8c_c00334{bottom:505.319684pt;}
.y8d_c00334{bottom:505.836864pt;}
.y8e_c00334{bottom:506.548124pt;}
.y8f_c00334{bottom:507.427813pt;}
.y90_c00334{bottom:508.531377pt;}
.y91_c00334{bottom:509.288839pt;}
.y92_c00334{bottom:510.032568pt;}
.y93_c00334{bottom:511.604731pt;}
.y7b_c00334{bottom:522.936877pt;}
.y7c_c00334{bottom:523.435532pt;}
.y7d_c00334{bottom:524.422011pt;}
.y7e_c00334{bottom:524.760255pt;}
.y7f_c00334{bottom:525.238521pt;}
.y80_c00334{bottom:526.615889pt;}
.y81_c00334{bottom:527.079431pt;}
.y82_c00334{bottom:527.900403pt;}
.y83_c00334{bottom:529.174811pt;}
.y84_c00334{bottom:529.614043pt;}
.y85_c00334{bottom:530.385833pt;}
.y86_c00334{bottom:531.332352pt;}
.y87_c00334{bottom:532.415584pt;}
.y88_c00334{bottom:532.767533pt;}
.y71_c00334{bottom:539.497713pt;}
.y72_c00334{bottom:540.522369pt;}
.y73_c00334{bottom:541.791627pt;}
.y74_c00334{bottom:542.060817pt;}
.y75_c00334{bottom:543.438791pt;}
.y76_c00334{bottom:543.680264pt;}
.y77_c00334{bottom:545.260048pt;}
.y78_c00334{bottom:546.091049pt;}
.y79_c00334{bottom:547.003775pt;}
.y7a_c00334{bottom:547.992716pt;}
.y65_c00334{bottom:562.781939pt;}
.y66_c00334{bottom:563.778756pt;}
.y67_c00334{bottom:564.368573pt;}
.y68_c00334{bottom:564.851339pt;}
.y69_c00334{bottom:565.328981pt;}
.y6a_c00334{bottom:566.408541pt;}
.y6b_c00334{bottom:566.788285pt;}
.y6c_c00334{bottom:568.938588pt;}
.y6d_c00334{bottom:569.302043pt;}
.y6e_c00334{bottom:569.823140pt;}
.y6f_c00334{bottom:570.936571pt;}
.y70_c00334{bottom:571.903616pt;}
.y59_c00334{bottom:583.183107pt;}
.y5a_c00334{bottom:583.939401pt;}
.y5b_c00334{bottom:585.310245pt;}
.y5c_c00334{bottom:585.612923pt;}
.y5d_c00334{bottom:587.074608pt;}
.y5e_c00334{bottom:587.487925pt;}
.y5f_c00334{bottom:587.845877pt;}
.y60_c00334{bottom:589.022920pt;}
.y61_c00334{bottom:589.478237pt;}
.y62_c00334{bottom:589.844572pt;}
.y63_c00334{bottom:590.738260pt;}
.y64_c00334{bottom:591.158192pt;}
.y50_c00334{bottom:603.824321pt;}
.y51_c00334{bottom:605.130353pt;}
.y52_c00334{bottom:605.975372pt;}
.y53_c00334{bottom:606.969424pt;}
.y54_c00334{bottom:608.604700pt;}
.y55_c00334{bottom:609.211464pt;}
.y56_c00334{bottom:610.143709pt;}
.y57_c00334{bottom:611.340309pt;}
.y58_c00334{bottom:611.633212pt;}
.y46_c00334{bottom:624.226613pt;}
.y47_c00334{bottom:624.899351pt;}
.y48_c00334{bottom:625.912956pt;}
.y49_c00334{bottom:626.403107pt;}
.y4a_c00334{bottom:626.820325pt;}
.y4b_c00334{bottom:628.210641pt;}
.y4c_c00334{bottom:628.510839pt;}
.y4d_c00334{bottom:630.054944pt;}
.y4e_c00334{bottom:631.024755pt;}
.y4f_c00334{bottom:632.169313pt;}
.y3a_c00334{bottom:644.147376pt;}
.y3b_c00334{bottom:644.758987pt;}
.y3c_c00334{bottom:645.152236pt;}
.y3d_c00334{bottom:645.723067pt;}
.y3e_c00334{bottom:646.626605pt;}
.y3f_c00334{bottom:647.749371pt;}
.y40_c00334{bottom:648.646997pt;}
.y41_c00334{bottom:649.099832pt;}
.y42_c00334{bottom:650.635260pt;}
.y43_c00334{bottom:651.411993pt;}
.y44_c00334{bottom:651.724132pt;}
.y45_c00334{bottom:652.309801pt;}
.y2e_c00334{bottom:664.789640pt;}
.y2f_c00334{bottom:665.510955pt;}
.y30_c00334{bottom:665.870048pt;}
.y31_c00334{bottom:666.518025pt;}
.y32_c00334{bottom:666.950252pt;}
.y33_c00334{bottom:667.584724pt;}
.y34_c00334{bottom:668.115965pt;}
.y35_c00334{bottom:668.924417pt;}
.y36_c00334{bottom:669.249401pt;}
.y37_c00334{bottom:670.372913pt;}
.y38_c00334{bottom:671.288631pt;}
.y39_c00334{bottom:672.100732pt;}
.y24_c00334{bottom:684.714392pt;}
.y25_c00334{bottom:685.522067pt;}
.y26_c00334{bottom:686.183045pt;}
.y27_c00334{bottom:686.657311pt;}
.y28_c00334{bottom:688.121657pt;}
.y29_c00334{bottom:689.132905pt;}
.y2a_c00334{bottom:689.854361pt;}
.y2b_c00334{bottom:690.325408pt;}
.y2c_c00334{bottom:691.659941pt;}
.y2d_c00334{bottom:692.133753pt;}
.y18_c00334{bottom:705.356857pt;}
.y19_c00334{bottom:705.683484pt;}
.y1a_c00334{bottom:706.413917pt;}
.y1b_c00334{bottom:707.054591pt;}
.y1c_c00334{bottom:707.392007pt;}
.y1d_c00334{bottom:707.776501pt;}
.y1e_c00334{bottom:708.791923pt;}
.y1f_c00334{bottom:709.353240pt;}
.y20_c00334{bottom:710.285339pt;}
.y21_c00334{bottom:710.710905pt;}
.y22_c00334{bottom:711.449476pt;}
.y23_c00334{bottom:712.138973pt;}
.ye_c00334{bottom:725.279924pt;}
.yf_c00334{bottom:725.736853pt;}
.y10_c00334{bottom:726.218009pt;}
.y11_c00334{bottom:726.861907pt;}
.y12_c00334{bottom:727.118721pt;}
.y13_c00334{bottom:729.022224pt;}
.y14_c00334{bottom:729.688149pt;}
.y15_c00334{bottom:730.650439pt;}
.y16_c00334{bottom:731.445249pt;}
.y17_c00334{bottom:732.060364pt;}
.y1_c00334{bottom:745.924000pt;}
.y2_c00334{bottom:746.731160pt;}
.y3_c00334{bottom:747.147184pt;}
.y4_c00334{bottom:747.579732pt;}
.y5_c00334{bottom:747.955591pt;}
.y6_c00334{bottom:748.539008pt;}
.y7_c00334{bottom:748.918607pt;}
.y8_c00334{bottom:749.267515pt;}
.y9_c00334{bottom:750.220081pt;}
.ya_c00334{bottom:751.288135pt;}
.yb_c00334{bottom:751.807473pt;}
.yc_c00334{bottom:752.120545pt;}
.yd_c00334{bottom:752.733429pt;}
.h16_c00334{height:30.810409pt;}
.h10_c00334{height:31.741726pt;}
.h14_c00334{height:45.748789pt;}
.h13_c00334{height:47.616086pt;}
.h6_c00334{height:56.008091pt;}
.h12_c00334{height:56.014810pt;}
.ha_c00334{height:58.808496pt;}
.h4_c00334{height:59.741964pt;}
.hd_c00334{height:59.750534pt;}
.hb_c00334{height:60.675432pt;}
.hf_c00334{height:60.684136pt;}
.h5_c00334{height:61.608901pt;}
.h11_c00334{height:61.616291pt;}
.h17_c00334{height:61.620817pt;}
.h9_c00334{height:62.542369pt;}
.h3_c00334{height:63.475837pt;}
.he_c00334{height:63.484942pt;}
.h2_c00334{height:64.409305pt;}
.h8_c00334{height:65.342773pt;}
.hc_c00334{height:66.285749pt;}
.h18_c00334{height:66.289061pt;}
.h7_c00334{height:87.746010pt;}
.h15_c00334{height:92.431226pt;}
.h1_c00334{height:893.333333pt;}
.h0_c00334{height:893.466667pt;}
.w0_c00334{width:624.480000pt;}
.w1_c00334{width:624.666667pt;}
.x0_c00334{left:0.000000pt;}
.x5a_c00334{left:71.836856pt;}
.x4d_c00334{left:81.610576pt;}
.x1_c00334{left:83.525333pt;}
.x20_c00334{left:84.942005pt;}
.x34_c00334{left:86.317176pt;}
.x60_c00334{left:87.681553pt;}
.x71_c00334{left:89.750227pt;}
.xc3_c00334{left:91.009173pt;}
.x91_c00334{left:92.084757pt;}
.x96_c00334{left:93.139739pt;}
.x9a_c00334{left:94.128000pt;}
.xb4_c00334{left:95.510667pt;}
.xb9_c00334{left:96.724533pt;}
.x17_c00334{left:103.400300pt;}
.xe_c00334{left:109.102472pt;}
.x61_c00334{left:111.443944pt;}
.x83_c00334{left:112.346125pt;}
.x7d_c00334{left:114.097788pt;}
.x35_c00334{left:116.880945pt;}
.x3f_c00334{left:119.044420pt;}
.xb1_c00334{left:121.704000pt;}
.x7e_c00334{left:123.614464pt;}
.x2a_c00334{left:125.234677pt;}
.x21_c00334{left:127.431221pt;}
.x5b_c00334{left:128.737215pt;}
.x2_c00334{left:131.005333pt;}
.x54_c00334{left:134.170207pt;}
.xf_c00334{left:135.836685pt;}
.x6a_c00334{left:137.247917pt;}
.xa6_c00334{left:140.674091pt;}
.x89_c00334{left:143.784604pt;}
.x2b_c00334{left:145.181004pt;}
.x18_c00334{left:146.366967pt;}
.x72_c00334{left:148.803212pt;}
.x47_c00334{left:149.997339pt;}
.x3_c00334{left:155.477333pt;}
.x6b_c00334{left:157.213904pt;}
.x62_c00334{left:158.410081pt;}
.xa7_c00334{left:160.147904pt;}
.x22_c00334{left:162.232709pt;}
.x55_c00334{left:163.687377pt;}
.x36_c00334{left:165.118497pt;}
.xa1_c00334{left:166.265429pt;}
.x9e_c00334{left:167.374624pt;}
.x40_c00334{left:169.724503pt;}
.x10_c00334{left:171.594740pt;}
.x97_c00334{left:173.560893pt;}
.x63_c00334{left:174.540993pt;}
.x92_c00334{left:178.606607pt;}
.xbf_c00334{left:179.801061pt;}
.x4_c00334{left:180.921333pt;}
.x4e_c00334{left:182.886352pt;}
.x19_c00334{left:184.053633pt;}
.x11_c00334{left:185.838491pt;}
.x23_c00334{left:187.227871pt;}
.x8a_c00334{left:189.141521pt;}
.x48_c00334{left:192.251185pt;}
.x41_c00334{left:194.241923pt;}
.x4f_c00334{left:197.317377pt;}
.x5c_c00334{left:199.241347pt;}
.x5_c00334{left:203.030667pt;}
.x73_c00334{left:204.013735pt;}
.x2c_c00334{left:205.191984pt;}
.x37_c00334{left:210.265519pt;}
.x56_c00334{left:211.708929pt;}
.xae_c00334{left:213.108000pt;}
.x42_c00334{left:215.096857pt;}
.x7f_c00334{left:216.048185pt;}
.xa8_c00334{left:218.633312pt;}
.xb5_c00334{left:221.045333pt;}
.x8d_c00334{left:223.025488pt;}
.x1a_c00334{left:226.518967pt;}
.xba_c00334{left:227.464661pt;}
.x74_c00334{left:230.661708pt;}
.x8b_c00334{left:233.793151pt;}
.xb6_c00334{left:236.450667pt;}
.x6_c00334{left:237.349333pt;}
.x2d_c00334{left:240.474061pt;}
.x49_c00334{left:241.937980pt;}
.x9f_c00334{left:243.958624pt;}
.x79_c00334{left:247.700764pt;}
.x93_c00334{left:254.980143pt;}
.x7_c00334{left:259.678667pt;}
.x64_c00334{left:262.905653pt;}
.x24_c00334{left:264.265241pt;}
.xa9_c00334{left:265.275733pt;}
.x38_c00334{left:266.425329pt;}
.x2e_c00334{left:269.997563pt;}
.x6c_c00334{left:274.087271pt;}
.xbb_c00334{left:275.095157pt;}
.x9b_c00334{left:277.557333pt;}
.x8_c00334{left:280.202667pt;}
.x43_c00334{left:284.641321pt;}
.x1b_c00334{left:286.249633pt;}
.x8e_c00334{left:288.542801pt;}
.x7a_c00334{left:290.438588pt;}
.x12_c00334{left:291.611367pt;}
.x44_c00334{left:299.632551pt;}
.x50_c00334{left:303.640813pt;}
.x75_c00334{left:304.845923pt;}
.x8f_c00334{left:307.544875pt;}
.x39_c00334{left:311.303040pt;}
.x2f_c00334{left:314.886125pt;}
.x25_c00334{left:317.474095pt;}
.x1c_c00334{left:319.268300pt;}
.x6d_c00334{left:320.420373pt;}
.x4a_c00334{left:323.695143pt;}
.x13_c00334{left:328.586732pt;}
.xa2_c00334{left:330.822603pt;}
.x30_c00334{left:332.904475pt;}
.x3a_c00334{left:333.939217pt;}
.xc0_c00334{left:335.322395pt;}
.x9_c00334{left:336.236000pt;}
.x7b_c00334{left:339.165428pt;}
.xbc_c00334{left:343.501395pt;}
.xb2_c00334{left:348.593333pt;}
.x98_c00334{left:349.505956pt;}
.x4b_c00334{left:354.052268pt;}
.x26_c00334{left:355.440803pt;}
.x51_c00334{left:359.698339pt;}
.x76_c00334{left:361.899021pt;}
.xa0_c00334{left:364.935957pt;}
.x94_c00334{left:373.070751pt;}
.x1d_c00334{left:374.097633pt;}
.x45_c00334{left:376.811273pt;}
.x6e_c00334{left:378.510401pt;}
.x27_c00334{left:380.246631pt;}
.x14_c00334{left:382.053825pt;}
.xc5_c00334{left:383.140299pt;}
.x65_c00334{left:384.794713pt;}
.xa3_c00334{left:386.183904pt;}
.x80_c00334{left:389.097755pt;}
.x57_c00334{left:392.186393pt;}
.x84_c00334{left:393.432879pt;}
.x31_c00334{left:395.306076pt;}
.xa_c00334{left:399.062667pt;}
.x4c_c00334{left:400.652555pt;}
.xaf_c00334{left:402.098667pt;}
.x9c_c00334{left:403.221333pt;}
.x66_c00334{left:405.689285pt;}
.x81_c00334{left:407.112531pt;}
.xaa_c00334{left:408.860491pt;}
.x3b_c00334{left:410.685963pt;}
.xbd_c00334{left:412.394299pt;}
.xc4_c00334{left:413.913043pt;}
.x85_c00334{left:415.756308pt;}
.x6f_c00334{left:418.359708pt;}
.xc1_c00334{left:420.781061pt;}
.xa4_c00334{left:423.383925pt;}
.x46_c00334{left:425.307469pt;}
.x15_c00334{left:426.218411pt;}
.xb_c00334{left:429.612000pt;}
.x99_c00334{left:430.895043pt;}
.xab_c00334{left:432.598400pt;}
.x86_c00334{left:434.000100pt;}
.x58_c00334{left:436.373460pt;}
.x5d_c00334{left:438.105289pt;}
.x52_c00334{left:441.379452pt;}
.x1e_c00334{left:442.576300pt;}
.x32_c00334{left:446.190548pt;}
.xc_c00334{left:448.028000pt;}
.x3c_c00334{left:449.550657pt;}
.x28_c00334{left:450.510917pt;}
.x8c_c00334{left:454.384789pt;}
.x70_c00334{left:457.479704pt;}
.xac_c00334{left:458.791040pt;}
.x16_c00334{left:460.361821pt;}
.x53_c00334{left:461.374092pt;}
.x3d_c00334{left:465.165864pt;}
.x7c_c00334{left:470.196075pt;}
.x82_c00334{left:471.238845pt;}
.x29_c00334{left:475.479412pt;}
.x77_c00334{left:480.530303pt;}
.x1f_c00334{left:483.134967pt;}
.xd_c00334{left:484.080000pt;}
.x67_c00334{left:487.545065pt;}
.x5e_c00334{left:488.813761pt;}
.x33_c00334{left:491.293777pt;}
.x3e_c00334{left:494.439035pt;}
.x87_c00334{left:497.840016pt;}
.xb7_c00334{left:501.490667pt;}
.xc2_c00334{left:503.085061pt;}
.x90_c00334{left:504.482125pt;}
.xb0_c00334{left:506.352000pt;}
.x9d_c00334{left:511.956000pt;}
.xb3_c00334{left:535.325747pt;}
.x68_c00334{left:539.104219pt;}
.x59_c00334{left:540.396156pt;}
.x5f_c00334{left:543.770165pt;}
.xb8_c00334{left:545.741333pt;}
.xa5_c00334{left:547.815552pt;}
.x95_c00334{left:549.235443pt;}
.x78_c00334{left:552.709297pt;}
.x69_c00334{left:555.884419pt;}
.xbe_c00334{left:556.948488pt;}
.x88_c00334{left:558.352204pt;}
.xad_c00334{left:559.621440pt;}
.xc6_c00334{left:564.640587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m49_c00335{transform:matrix(0.010855,0.000065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.010855,0.000065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.010855,0.000065,-0.001500,0.249996,0,0);}
.m2_c00335{transform:matrix(0.012313,-0.000419,0.008504,0.249855,0,0);-ms-transform:matrix(0.012313,-0.000419,0.008504,0.249855,0,0);-webkit-transform:matrix(0.012313,-0.000419,0.008504,0.249855,0,0);}
.m151_c00335{transform:matrix(0.027269,0.000245,-0.002250,0.249990,0,0);-ms-transform:matrix(0.027269,0.000245,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.027269,0.000245,-0.002250,0.249990,0,0);}
.mc9_c00335{transform:matrix(0.089691,0.000807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.089691,0.000807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.089691,0.000807,-0.002250,0.249990,0,0);}
.m1f_c00335{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.093336,-0.003177,0.008504,0.249855,0,0);-ms-transform:matrix(0.093336,-0.003177,0.008504,0.249855,0,0);-webkit-transform:matrix(0.093336,-0.003177,0.008504,0.249855,0,0);}
.m14b_c00335{transform:matrix(0.099626,0.000897,-0.002250,0.249990,0,0);-ms-transform:matrix(0.099626,0.000897,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.099626,0.000897,-0.002250,0.249990,0,0);}
.m54_c00335{transform:matrix(0.129548,0.000777,-0.001500,0.249996,0,0);-ms-transform:matrix(0.129548,0.000777,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.129548,0.000777,-0.001500,0.249996,0,0);}
.m17_c00335{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);}
.m84_c00335{transform:matrix(0.138473,0.000831,-0.001500,0.249996,0,0);-ms-transform:matrix(0.138473,0.000831,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.138473,0.000831,-0.001500,0.249996,0,0);}
.m87_c00335{transform:matrix(0.139932,0.000840,-0.001500,0.249996,0,0);-ms-transform:matrix(0.139932,0.000840,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.139932,0.000840,-0.001500,0.249996,0,0);}
.mca_c00335{transform:matrix(0.142319,0.001281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142319,0.001281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142319,0.001281,-0.002250,0.249990,0,0);}
.m7b_c00335{transform:matrix(0.142637,0.000856,-0.001500,0.249996,0,0);-ms-transform:matrix(0.142637,0.000856,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.142637,0.000856,-0.001500,0.249996,0,0);}
.m113_c00335{transform:matrix(0.142644,0.001284,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142644,0.001284,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142644,0.001284,-0.002250,0.249990,0,0);}
.m89_c00335{transform:matrix(0.142647,0.000856,-0.001500,0.249996,0,0);-ms-transform:matrix(0.142647,0.000856,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.142647,0.000856,-0.001500,0.249996,0,0);}
.m77_c00335{transform:matrix(0.142697,0.000856,-0.001500,0.249996,0,0);-ms-transform:matrix(0.142697,0.000856,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.142697,0.000856,-0.001500,0.249996,0,0);}
.m75_c00335{transform:matrix(0.142962,0.000858,-0.001500,0.249996,0,0);-ms-transform:matrix(0.142962,0.000858,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.142962,0.000858,-0.001500,0.249996,0,0);}
.m2c_c00335{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00335{transform:matrix(0.144399,0.001300,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144399,0.001300,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144399,0.001300,-0.002250,0.249990,0,0);}
.me9_c00335{transform:matrix(0.144539,0.001301,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144539,0.001301,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144539,0.001301,-0.002250,0.249990,0,0);}
.meb_c00335{transform:matrix(0.146604,0.001319,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146604,0.001319,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146604,0.001319,-0.002250,0.249990,0,0);}
.m106_c00335{transform:matrix(0.147319,0.001326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147319,0.001326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147319,0.001326,-0.002250,0.249990,0,0);}
.m2d_c00335{transform:matrix(0.147670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147670,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.147934,0.001331,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147934,0.001331,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147934,0.001331,-0.002250,0.249990,0,0);}
.m82_c00335{transform:matrix(0.149282,0.000896,-0.001500,0.249996,0,0);-ms-transform:matrix(0.149282,0.000896,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.149282,0.000896,-0.001500,0.249996,0,0);}
.m10a_c00335{transform:matrix(0.149464,0.001345,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149464,0.001345,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149464,0.001345,-0.002250,0.249990,0,0);}
.m83_c00335{transform:matrix(0.150812,0.000905,-0.001500,0.249996,0,0);-ms-transform:matrix(0.150812,0.000905,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.150812,0.000905,-0.001500,0.249996,0,0);}
.m8a_c00335{transform:matrix(0.151012,0.000906,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151012,0.000906,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151012,0.000906,-0.001500,0.249996,0,0);}
.m37_c00335{transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.151172,0.000907,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151172,0.000907,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151172,0.000907,-0.001500,0.249996,0,0);}
.m2e_c00335{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);}
.mbd_c00335{transform:matrix(0.153619,0.001383,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153619,0.001383,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153619,0.001383,-0.002250,0.249990,0,0);}
.m36_c00335{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);}
.m139_c00335{transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);}
.m1c_c00335{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);}
.m10f_c00335{transform:matrix(0.154559,0.001391,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154559,0.001391,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154559,0.001391,-0.002250,0.249990,0,0);}
.m107_c00335{transform:matrix(0.154884,0.001394,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154884,0.001394,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154884,0.001394,-0.002250,0.249990,0,0);}
.mb2_c00335{transform:matrix(0.155424,0.001399,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155424,0.001399,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155424,0.001399,-0.002250,0.249990,0,0);}
.md5_c00335{transform:matrix(0.155579,0.001400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155579,0.001400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155579,0.001400,-0.002250,0.249990,0,0);}
.m8e_c00335{transform:matrix(0.156002,0.000936,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156002,0.000936,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156002,0.000936,-0.001500,0.249996,0,0);}
.m52_c00335{transform:matrix(0.156142,0.000937,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156142,0.000937,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156142,0.000937,-0.001500,0.249996,0,0);}
.m78_c00335{transform:matrix(0.156267,0.000938,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156267,0.000938,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156267,0.000938,-0.001500,0.249996,0,0);}
.mc7_c00335{transform:matrix(0.156379,0.001407,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156379,0.001407,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156379,0.001407,-0.002250,0.249990,0,0);}
.mfa_c00335{transform:matrix(0.156504,0.001409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156504,0.001409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156504,0.001409,-0.002250,0.249990,0,0);}
.mde_c00335{transform:matrix(0.156599,0.001409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156599,0.001409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156599,0.001409,-0.002250,0.249990,0,0);}
.m86_c00335{transform:matrix(0.156752,0.000941,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156752,0.000941,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156752,0.000941,-0.001500,0.249996,0,0);}
.mf4_c00335{transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);}
.m10d_c00335{transform:matrix(0.157344,0.001416,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157344,0.001416,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157344,0.001416,-0.002250,0.249990,0,0);}
.m135_c00335{transform:matrix(0.157349,0.001416,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157349,0.001416,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157349,0.001416,-0.002250,0.249990,0,0);}
.m8c_c00335{transform:matrix(0.157722,0.000946,-0.001500,0.249996,0,0);-ms-transform:matrix(0.157722,0.000946,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.157722,0.000946,-0.001500,0.249996,0,0);}
.m15e_c00335{transform:matrix(0.158269,0.001424,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158269,0.001424,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158269,0.001424,-0.002250,0.249990,0,0);}
.m153_c00335{transform:matrix(0.158569,0.001427,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158569,0.001427,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158569,0.001427,-0.002250,0.249990,0,0);}
.mba_c00335{transform:matrix(0.159074,0.001432,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159074,0.001432,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159074,0.001432,-0.002250,0.249990,0,0);}
.m6_c00335{transform:matrix(0.159398,-0.005425,0.008504,0.249855,0,0);-ms-transform:matrix(0.159398,-0.005425,0.008504,0.249855,0,0);-webkit-transform:matrix(0.159398,-0.005425,0.008504,0.249855,0,0);}
.ma3_c00335{transform:matrix(0.159577,0.000957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.159577,0.000957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.159577,0.000957,-0.001500,0.249996,0,0);}
.m154_c00335{transform:matrix(0.159779,0.001438,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159779,0.001438,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159779,0.001438,-0.002250,0.249990,0,0);}
.m3d_c00335{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.m109_c00335{transform:matrix(0.160464,0.001444,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160464,0.001444,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160464,0.001444,-0.002250,0.249990,0,0);}
.m15a_c00335{transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160783,0.001447,-0.002250,0.249990,0,0);}
.m8b_c00335{transform:matrix(0.161262,0.000968,-0.001500,0.249996,0,0);-ms-transform:matrix(0.161262,0.000968,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.161262,0.000968,-0.001500,0.249996,0,0);}
.m111_c00335{transform:matrix(0.161273,0.001451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161273,0.001451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161273,0.001451,-0.002250,0.249990,0,0);}
.me0_c00335{transform:matrix(0.161333,0.001452,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161333,0.001452,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161333,0.001452,-0.002250,0.249990,0,0);}
.m19_c00335{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);}
.m128_c00335{transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);}
.m71_c00335{transform:matrix(0.161997,0.000972,-0.001500,0.249996,0,0);-ms-transform:matrix(0.161997,0.000972,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.161997,0.000972,-0.001500,0.249996,0,0);}
.m76_c00335{transform:matrix(0.162447,0.000975,-0.001500,0.249996,0,0);-ms-transform:matrix(0.162447,0.000975,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.162447,0.000975,-0.001500,0.249996,0,0);}
.m5e_c00335{transform:matrix(0.162882,0.000977,-0.001500,0.249996,0,0);-ms-transform:matrix(0.162882,0.000977,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.162882,0.000977,-0.001500,0.249996,0,0);}
.m43_c00335{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);}
.m114_c00335{transform:matrix(0.163213,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163213,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163213,0.001469,-0.002250,0.249990,0,0);}
.m90_c00335{transform:matrix(0.163417,0.000981,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163417,0.000981,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163417,0.000981,-0.001500,0.249996,0,0);}
.m66_c00335{transform:matrix(0.163632,0.000982,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163632,0.000982,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163632,0.000982,-0.001500,0.249996,0,0);}
.m65_c00335{transform:matrix(0.163677,0.000982,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163677,0.000982,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163677,0.000982,-0.001500,0.249996,0,0);}
.m158_c00335{transform:matrix(0.163688,0.001473,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163688,0.001473,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163688,0.001473,-0.002250,0.249990,0,0);}
.mea_c00335{transform:matrix(0.163768,0.001474,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163768,0.001474,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163768,0.001474,-0.002250,0.249990,0,0);}
.m15_c00335{transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.163993,0.001476,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163993,0.001476,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163993,0.001476,-0.002250,0.249990,0,0);}
.m110_c00335{transform:matrix(0.164133,0.001477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164133,0.001477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164133,0.001477,-0.002250,0.249990,0,0);}
.m31_c00335{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);}
.m4a_c00335{transform:matrix(0.164457,0.000987,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164457,0.000987,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164457,0.000987,-0.001500,0.249996,0,0);}
.m18_c00335{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);}
.m15d_c00335{transform:matrix(0.164613,0.001482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164613,0.001482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164613,0.001482,-0.002250,0.249990,0,0);}
.m10e_c00335{transform:matrix(0.164943,0.001484,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164943,0.001484,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164943,0.001484,-0.002250,0.249990,0,0);}
.m16_c00335{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);}
.m4b_c00335{transform:matrix(0.165122,0.000991,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165122,0.000991,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165122,0.000991,-0.001500,0.249996,0,0);}
.m63_c00335{transform:matrix(0.165137,0.000991,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165137,0.000991,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165137,0.000991,-0.001500,0.249996,0,0);}
.m6f_c00335{transform:matrix(0.165297,0.000992,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165297,0.000992,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165297,0.000992,-0.001500,0.249996,0,0);}
.m92_c00335{transform:matrix(0.165537,0.000993,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165537,0.000993,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165537,0.000993,-0.001500,0.249996,0,0);}
.md6_c00335{transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165788,0.001492,-0.002250,0.249990,0,0);}
.m101_c00335{transform:matrix(0.165838,0.001493,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165838,0.001493,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165838,0.001493,-0.002250,0.249990,0,0);}
.m13f_c00335{transform:matrix(0.165923,0.001493,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165923,0.001493,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165923,0.001493,-0.002250,0.249990,0,0);}
.mdb_c00335{transform:matrix(0.166018,0.001494,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166018,0.001494,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166018,0.001494,-0.002250,0.249990,0,0);}
.mef_c00335{transform:matrix(0.166048,0.001494,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166048,0.001494,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166048,0.001494,-0.002250,0.249990,0,0);}
.med_c00335{transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166193,0.001496,-0.002250,0.249990,0,0);}
.mb_c00335{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);}
.m32_c00335{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);}
.me1_c00335{transform:matrix(0.167068,0.001504,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167068,0.001504,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167068,0.001504,-0.002250,0.249990,0,0);}
.m53_c00335{transform:matrix(0.167327,0.001004,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167327,0.001004,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167327,0.001004,-0.001500,0.249996,0,0);}
.m105_c00335{transform:matrix(0.167538,0.001508,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167538,0.001508,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167538,0.001508,-0.002250,0.249990,0,0);}
.m7f_c00335{transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167902,0.001007,-0.001500,0.249996,0,0);}
.mae_c00335{transform:matrix(0.167903,0.001511,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167903,0.001511,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167903,0.001511,-0.002250,0.249990,0,0);}
.mf8_c00335{transform:matrix(0.167913,0.001511,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167913,0.001511,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167913,0.001511,-0.002250,0.249990,0,0);}
.m40_c00335{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);}
.m108_c00335{transform:matrix(0.168523,0.001517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168523,0.001517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168523,0.001517,-0.002250,0.249990,0,0);}
.m2b_c00335{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);}
.m103_c00335{transform:matrix(0.168913,0.001520,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168913,0.001520,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168913,0.001520,-0.002250,0.249990,0,0);}
.m126_c00335{transform:matrix(0.169038,0.001521,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169038,0.001521,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169038,0.001521,-0.002250,0.249990,0,0);}
.m22_c00335{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);}
.mdd_c00335{transform:matrix(0.169483,0.001525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169483,0.001525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169483,0.001525,-0.002250,0.249990,0,0);}
.m41_c00335{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);}
.m157_c00335{transform:matrix(0.169508,0.001526,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169508,0.001526,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169508,0.001526,-0.002250,0.249990,0,0);}
.md4_c00335{transform:matrix(0.169578,0.001526,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169578,0.001526,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169578,0.001526,-0.002250,0.249990,0,0);}
.m162_c00335{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);}
.m129_c00335{transform:matrix(0.170523,0.001535,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170523,0.001535,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170523,0.001535,-0.002250,0.249990,0,0);}
.m6b_c00335{transform:matrix(0.171457,0.001029,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171457,0.001029,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171457,0.001029,-0.001500,0.249996,0,0);}
.m5f_c00335{transform:matrix(0.171912,0.001031,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171912,0.001031,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171912,0.001031,-0.001500,0.249996,0,0);}
.me5_c00335{transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);}
.mec_c00335{transform:matrix(0.172263,0.001550,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172263,0.001550,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172263,0.001550,-0.002250,0.249990,0,0);}
.m45_c00335{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);}
.mcc_c00335{transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);}
.mac_c00335{transform:matrix(0.173228,0.001559,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173228,0.001559,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173228,0.001559,-0.002250,0.249990,0,0);}
.ma9_c00335{transform:matrix(0.173243,0.001559,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173243,0.001559,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173243,0.001559,-0.002250,0.249990,0,0);}
.m102_c00335{transform:matrix(0.173328,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173328,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173328,0.001560,-0.002250,0.249990,0,0);}
.m12b_c00335{transform:matrix(0.173603,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173603,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173603,0.001562,-0.002250,0.249990,0,0);}
.m58_c00335{transform:matrix(0.173752,0.001043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173752,0.001043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173752,0.001043,-0.001500,0.249996,0,0);}
.m6c_c00335{transform:matrix(0.174332,0.001046,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174332,0.001046,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174332,0.001046,-0.001500,0.249996,0,0);}
.m122_c00335{transform:matrix(0.174353,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174353,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174353,0.001569,-0.002250,0.249990,0,0);}
.m62_c00335{transform:matrix(0.174477,0.001047,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174477,0.001047,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174477,0.001047,-0.001500,0.249996,0,0);}
.m79_c00335{transform:matrix(0.174747,0.001048,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174747,0.001048,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174747,0.001048,-0.001500,0.249996,0,0);}
.m13e_c00335{transform:matrix(0.174933,0.001574,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174933,0.001574,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174933,0.001574,-0.002250,0.249990,0,0);}
.m12a_c00335{transform:matrix(0.175393,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175393,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175393,0.001579,-0.002250,0.249990,0,0);}
.m14_c00335{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);}
.mf6_c00335{transform:matrix(0.175483,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175483,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175483,0.001579,-0.002250,0.249990,0,0);}
.m68_c00335{transform:matrix(0.175502,0.001053,-0.001500,0.249996,0,0);-ms-transform:matrix(0.175502,0.001053,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.175502,0.001053,-0.001500,0.249996,0,0);}
.m46_c00335{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);}
.m11_c00335{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);}
.ma7_c00335{transform:matrix(0.175783,0.001582,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175783,0.001582,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175783,0.001582,-0.002250,0.249990,0,0);}
.m42_c00335{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);}
.m112_c00335{transform:matrix(0.176323,0.001587,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176323,0.001587,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176323,0.001587,-0.002250,0.249990,0,0);}
.ma2_c00335{transform:matrix(0.176427,0.001059,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176427,0.001059,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176427,0.001059,-0.001500,0.249996,0,0);}
.m9f_c00335{transform:matrix(0.176952,0.001062,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176952,0.001062,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176952,0.001062,-0.001500,0.249996,0,0);}
.m155_c00335{transform:matrix(0.176953,0.001593,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176953,0.001593,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176953,0.001593,-0.002250,0.249990,0,0);}
.mbf_c00335{transform:matrix(0.177133,0.001594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177133,0.001594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177133,0.001594,-0.002250,0.249990,0,0);}
.m23_c00335{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);}
.m3_c00335{transform:matrix(0.177687,-0.006047,0.008504,0.249855,0,0);-ms-transform:matrix(0.177687,-0.006047,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177687,-0.006047,0.008504,0.249855,0,0);}
.m85_c00335{transform:matrix(0.177907,0.001067,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177907,0.001067,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177907,0.001067,-0.001500,0.249996,0,0);}
.m8f_c00335{transform:matrix(0.177947,0.001068,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177947,0.001068,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177947,0.001068,-0.001500,0.249996,0,0);}
.m159_c00335{transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178368,0.001605,-0.002250,0.249990,0,0);}
.mb0_c00335{transform:matrix(0.178438,0.001606,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178438,0.001606,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178438,0.001606,-0.002250,0.249990,0,0);}
.m13_c00335{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);}
.m10b_c00335{transform:matrix(0.178718,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178718,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178718,0.001608,-0.002250,0.249990,0,0);}
.m8d_c00335{transform:matrix(0.178772,0.001073,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178772,0.001073,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178772,0.001073,-0.001500,0.249996,0,0);}
.m9a_c00335{transform:matrix(0.178972,0.001074,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178972,0.001074,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178972,0.001074,-0.001500,0.249996,0,0);}
.me_c00335{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);}
.m137_c00335{transform:matrix(0.179143,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179143,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179143,0.001612,-0.002250,0.249990,0,0);}
.mb6_c00335{transform:matrix(0.179508,0.001616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179508,0.001616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179508,0.001616,-0.002250,0.249990,0,0);}
.m39_c00335{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);}
.m93_c00335{transform:matrix(0.179907,0.001079,-0.001500,0.249996,0,0);-ms-transform:matrix(0.179907,0.001079,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.179907,0.001079,-0.001500,0.249996,0,0);}
.mc5_c00335{transform:matrix(0.179963,0.001620,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179963,0.001620,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179963,0.001620,-0.002250,0.249990,0,0);}
.m120_c00335{transform:matrix(0.180038,0.001620,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180038,0.001620,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180038,0.001620,-0.002250,0.249990,0,0);}
.m14e_c00335{transform:matrix(0.180168,0.001622,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180168,0.001622,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180168,0.001622,-0.002250,0.249990,0,0);}
.mf9_c00335{transform:matrix(0.180313,0.001623,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180313,0.001623,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180313,0.001623,-0.002250,0.249990,0,0);}
.m33_c00335{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{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);}
.m119_c00335{transform:matrix(0.180978,0.001629,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180978,0.001629,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180978,0.001629,-0.002250,0.249990,0,0);}
.md1_c00335{transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);}
.mc6_c00335{transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);}
.m4e_c00335{transform:matrix(0.181672,0.001090,-0.001500,0.249996,0,0);-ms-transform:matrix(0.181672,0.001090,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.181672,0.001090,-0.001500,0.249996,0,0);}
.maf_c00335{transform:matrix(0.181838,0.001637,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181838,0.001637,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181838,0.001637,-0.002250,0.249990,0,0);}
.m21_c00335{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);}
.m15c_c00335{transform:matrix(0.181958,0.001638,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181958,0.001638,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181958,0.001638,-0.002250,0.249990,0,0);}
.m55_c00335{transform:matrix(0.182057,0.001092,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182057,0.001092,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182057,0.001092,-0.001500,0.249996,0,0);}
.mb8_c00335{transform:matrix(0.182353,0.001641,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182353,0.001641,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182353,0.001641,-0.002250,0.249990,0,0);}
.m38_c00335{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);}
.m5b_c00335{transform:matrix(0.182542,0.001095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182542,0.001095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182542,0.001095,-0.001500,0.249996,0,0);}
.mb7_c00335{transform:matrix(0.182623,0.001644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182623,0.001644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182623,0.001644,-0.002250,0.249990,0,0);}
.m7d_c00335{transform:matrix(0.183192,0.001099,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183192,0.001099,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183192,0.001099,-0.001500,0.249996,0,0);}
.mdf_c00335{transform:matrix(0.183303,0.001650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183303,0.001650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183303,0.001650,-0.002250,0.249990,0,0);}
.md0_c00335{transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183398,0.001651,-0.002250,0.249990,0,0);}
.m100_c00335{transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);}
.m7c_c00335{transform:matrix(0.183557,0.001101,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183557,0.001101,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183557,0.001101,-0.001500,0.249996,0,0);}
.m3a_c00335{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);}
.me6_c00335{transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183783,0.001654,-0.002250,0.249990,0,0);}
.m44_c00335{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);}
.m141_c00335{transform:matrix(0.183988,0.001656,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183988,0.001656,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183988,0.001656,-0.002250,0.249990,0,0);}
.m99_c00335{transform:matrix(0.184047,0.001104,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184047,0.001104,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184047,0.001104,-0.001500,0.249996,0,0);}
.m10c_c00335{transform:matrix(0.184143,0.001657,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184143,0.001657,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184143,0.001657,-0.002250,0.249990,0,0);}
.mf0_c00335{transform:matrix(0.184293,0.001659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184293,0.001659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184293,0.001659,-0.002250,0.249990,0,0);}
.m3b_c00335{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);}
.m124_c00335{transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);}
.m61_c00335{transform:matrix(0.184742,0.001108,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184742,0.001108,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184742,0.001108,-0.001500,0.249996,0,0);}
.m3e_c00335{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);}
.m6a_c00335{transform:matrix(0.184867,0.001109,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184867,0.001109,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184867,0.001109,-0.001500,0.249996,0,0);}
.md8_c00335{transform:matrix(0.184923,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184923,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184923,0.001664,-0.002250,0.249990,0,0);}
.m1e_c00335{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);}
.m3f_c00335{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);}
.mb5_c00335{transform:matrix(0.185482,0.001669,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185482,0.001669,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185482,0.001669,-0.002250,0.249990,0,0);}
.m81_c00335{transform:matrix(0.185702,0.001114,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185702,0.001114,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185702,0.001114,-0.001500,0.249996,0,0);}
.m152_c00335{transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185932,0.001673,-0.002250,0.249990,0,0);}
.m149_c00335{transform:matrix(0.186292,0.001677,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186292,0.001677,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186292,0.001677,-0.002250,0.249990,0,0);}
.m80_c00335{transform:matrix(0.186647,0.001120,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186647,0.001120,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186647,0.001120,-0.001500,0.249996,0,0);}
.m160_c00335{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);}
.mbc_c00335{transform:matrix(0.187307,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187307,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187307,0.001686,-0.002250,0.249990,0,0);}
.m125_c00335{transform:matrix(0.187352,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187352,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187352,0.001686,-0.002250,0.249990,0,0);}
.m2a_c00335{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);}
.m50_c00335{transform:matrix(0.187667,0.001126,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187667,0.001126,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187667,0.001126,-0.001500,0.249996,0,0);}
.m48_c00335{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);}
.md9_c00335{transform:matrix(0.187737,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187737,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187737,0.001690,-0.002250,0.249990,0,0);}
.m59_c00335{transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);}
.m72_c00335{transform:matrix(0.188262,0.001130,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188262,0.001130,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188262,0.001130,-0.001500,0.249996,0,0);}
.m12d_c00335{transform:matrix(0.188457,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188457,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188457,0.001696,-0.002250,0.249990,0,0);}
.mda_c00335{transform:matrix(0.188517,0.001697,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188517,0.001697,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188517,0.001697,-0.002250,0.249990,0,0);}
.mf2_c00335{transform:matrix(0.188727,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188727,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188727,0.001699,-0.002250,0.249990,0,0);}
.m134_c00335{transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188797,0.001699,-0.002250,0.249990,0,0);}
.m156_c00335{transform:matrix(0.188982,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188982,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188982,0.001701,-0.002250,0.249990,0,0);}
.mcb_c00335{transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189282,0.001704,-0.002250,0.249990,0,0);}
.m27_c00335{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);}
.m70_c00335{transform:matrix(0.189392,0.001136,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189392,0.001136,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189392,0.001136,-0.001500,0.249996,0,0);}
.me4_c00335{transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);}
.m123_c00335{transform:matrix(0.189887,0.001709,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189887,0.001709,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189887,0.001709,-0.002250,0.249990,0,0);}
.m67_c00335{transform:matrix(0.190057,0.001140,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190057,0.001140,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190057,0.001140,-0.001500,0.249996,0,0);}
.m47_c00335{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);}
.m6e_c00335{transform:matrix(0.190287,0.001142,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190287,0.001142,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190287,0.001142,-0.001500,0.249996,0,0);}
.m98_c00335{transform:matrix(0.190422,0.001143,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190422,0.001143,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190422,0.001143,-0.001500,0.249996,0,0);}
.m26_c00335{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);}
.md2_c00335{transform:matrix(0.191562,0.001724,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191562,0.001724,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191562,0.001724,-0.002250,0.249990,0,0);}
.m13a_c00335{transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);}
.m5a_c00335{transform:matrix(0.191767,0.001151,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191767,0.001151,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191767,0.001151,-0.001500,0.249996,0,0);}
.mf1_c00335{transform:matrix(0.191937,0.001727,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191937,0.001727,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191937,0.001727,-0.002250,0.249990,0,0);}
.m9b_c00335{transform:matrix(0.191952,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191952,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191952,0.001152,-0.001500,0.249996,0,0);}
.mdc_c00335{transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);}
.m3c_c00335{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);}
.mb9_c00335{transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);}
.m7_c00335{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);}
.ma0_c00335{transform:matrix(0.192477,0.001155,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192477,0.001155,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192477,0.001155,-0.001500,0.249996,0,0);}
.m14f_c00335{transform:matrix(0.192477,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192477,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192477,0.001732,-0.002250,0.249990,0,0);}
.mc4_c00335{transform:matrix(0.192487,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192487,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192487,0.001732,-0.002250,0.249990,0,0);}
.m11d_c00335{transform:matrix(0.193512,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193512,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193512,0.001742,-0.002250,0.249990,0,0);}
.m24_c00335{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);}
.m104_c00335{transform:matrix(0.193857,0.001745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193857,0.001745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193857,0.001745,-0.002250,0.249990,0,0);}
.m1b_c00335{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);}
.mbe_c00335{transform:matrix(0.194267,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194267,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194267,0.001748,-0.002250,0.249990,0,0);}
.m7e_c00335{transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);}
.ma6_c00335{transform:matrix(0.195382,0.001758,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195382,0.001758,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195382,0.001758,-0.002250,0.249990,0,0);}
.mc1_c00335{transform:matrix(0.195467,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195467,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195467,0.001759,-0.002250,0.249990,0,0);}
.m14c_c00335{transform:matrix(0.195712,0.001761,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195712,0.001761,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195712,0.001761,-0.002250,0.249990,0,0);}
.m9c_c00335{transform:matrix(0.195931,0.001176,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195931,0.001176,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195931,0.001176,-0.001500,0.249996,0,0);}
.mc2_c00335{transform:matrix(0.196407,0.001768,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196407,0.001768,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196407,0.001768,-0.002250,0.249990,0,0);}
.m29_c00335{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);}
.m121_c00335{transform:matrix(0.196807,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196807,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196807,0.001771,-0.002250,0.249990,0,0);}
.mc0_c00335{transform:matrix(0.197257,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197257,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197257,0.001775,-0.002250,0.249990,0,0);}
.m2f_c00335{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);}
.mcf_c00335{transform:matrix(0.198007,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198007,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198007,0.001782,-0.002250,0.249990,0,0);}
.me2_c00335{transform:matrix(0.198377,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198377,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198377,0.001785,-0.002250,0.249990,0,0);}
.mc8_c00335{transform:matrix(0.198767,0.001789,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198767,0.001789,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198767,0.001789,-0.002250,0.249990,0,0);}
.m1d_c00335{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);}
.m148_c00335{transform:matrix(0.199747,0.001798,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199747,0.001798,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199747,0.001798,-0.002250,0.249990,0,0);}
.ma8_c00335{transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);}
.maa_c00335{transform:matrix(0.199987,0.001800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199987,0.001800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199987,0.001800,-0.002250,0.249990,0,0);}
.m147_c00335{transform:matrix(0.200042,0.001800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200042,0.001800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200042,0.001800,-0.002250,0.249990,0,0);}
.ma1_c00335{transform:matrix(0.200196,0.001201,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200196,0.001201,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200196,0.001201,-0.001500,0.249996,0,0);}
.m133_c00335{transform:matrix(0.200442,0.001804,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200442,0.001804,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200442,0.001804,-0.002250,0.249990,0,0);}
.mad_c00335{transform:matrix(0.201397,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201397,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201397,0.001813,-0.002250,0.249990,0,0);}
.m11b_c00335{transform:matrix(0.201402,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201402,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201402,0.001813,-0.002250,0.249990,0,0);}
.m145_c00335{transform:matrix(0.201442,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201442,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201442,0.001813,-0.002250,0.249990,0,0);}
.mff_c00335{transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201837,0.001817,-0.002250,0.249990,0,0);}
.me8_c00335{transform:matrix(0.202532,0.001823,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202532,0.001823,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202532,0.001823,-0.002250,0.249990,0,0);}
.mbb_c00335{transform:matrix(0.202642,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202642,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202642,0.001824,-0.002250,0.249990,0,0);}
.md7_c00335{transform:matrix(0.202722,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202722,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202722,0.001824,-0.002250,0.249990,0,0);}
.m9_c00335{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);}
.m95_c00335{transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);}
.m136_c00335{transform:matrix(0.203042,0.001827,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203042,0.001827,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203042,0.001827,-0.002250,0.249990,0,0);}
.m91_c00335{transform:matrix(0.203736,0.001222,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203736,0.001222,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203736,0.001222,-0.001500,0.249996,0,0);}
.ma4_c00335{transform:matrix(0.203996,0.001224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203996,0.001224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203996,0.001224,-0.001500,0.249996,0,0);}
.md_c00335{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);}
.m146_c00335{transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);}
.me7_c00335{transform:matrix(0.204582,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204582,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204582,0.001841,-0.002250,0.249990,0,0);}
.m7a_c00335{transform:matrix(0.204861,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204861,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204861,0.001229,-0.001500,0.249996,0,0);}
.m5d_c00335{transform:matrix(0.205741,0.001234,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205741,0.001234,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205741,0.001234,-0.001500,0.249996,0,0);}
.m127_c00335{transform:matrix(0.206237,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206237,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206237,0.001856,-0.002250,0.249990,0,0);}
.m15b_c00335{transform:matrix(0.206832,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206832,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206832,0.001861,-0.002250,0.249990,0,0);}
.m4d_c00335{transform:matrix(0.206866,0.001241,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206866,0.001241,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206866,0.001241,-0.001500,0.249996,0,0);}
.md3_c00335{transform:matrix(0.207307,0.001866,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207307,0.001866,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207307,0.001866,-0.002250,0.249990,0,0);}
.m11a_c00335{transform:matrix(0.207392,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207392,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207392,0.001867,-0.002250,0.249990,0,0);}
.mce_c00335{transform:matrix(0.207932,0.001871,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207932,0.001871,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207932,0.001871,-0.002250,0.249990,0,0);}
.m142_c00335{transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208272,0.001874,-0.002250,0.249990,0,0);}
.m56_c00335{transform:matrix(0.208276,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208276,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208276,0.001250,-0.001500,0.249996,0,0);}
.m51_c00335{transform:matrix(0.208746,0.001252,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208746,0.001252,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208746,0.001252,-0.001500,0.249996,0,0);}
.mfb_c00335{transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);}
.mfc_c00335{transform:matrix(0.209662,0.001887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209662,0.001887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209662,0.001887,-0.002250,0.249990,0,0);}
.m10_c00335{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);}
.mc3_c00335{transform:matrix(0.209931,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209931,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209931,0.001889,-0.002250,0.249990,0,0);}
.m131_c00335{transform:matrix(0.211306,0.001902,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211306,0.001902,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211306,0.001902,-0.002250,0.249990,0,0);}
.m13d_c00335{transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);}
.m64_c00335{transform:matrix(0.211616,0.001270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211616,0.001270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211616,0.001270,-0.001500,0.249996,0,0);}
.m11e_c00335{transform:matrix(0.211661,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211661,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211661,0.001905,-0.002250,0.249990,0,0);}
.mfe_c00335{transform:matrix(0.211686,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211686,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211686,0.001905,-0.002250,0.249990,0,0);}
.mb3_c00335{transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211891,0.001907,-0.002250,0.249990,0,0);}
.m118_c00335{transform:matrix(0.212096,0.001909,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212096,0.001909,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212096,0.001909,-0.002250,0.249990,0,0);}
.m14a_c00335{transform:matrix(0.213616,0.001923,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213616,0.001923,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213616,0.001923,-0.002250,0.249990,0,0);}
.mf3_c00335{transform:matrix(0.214096,0.001927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214096,0.001927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214096,0.001927,-0.002250,0.249990,0,0);}
.mcd_c00335{transform:matrix(0.214761,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214761,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214761,0.001933,-0.002250,0.249990,0,0);}
.m115_c00335{transform:matrix(0.214826,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214826,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214826,0.001933,-0.002250,0.249990,0,0);}
.m14d_c00335{transform:matrix(0.215166,0.001936,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215166,0.001936,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215166,0.001936,-0.002250,0.249990,0,0);}
.m25_c00335{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);}
.m9e_c00335{transform:matrix(0.217121,0.001303,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217121,0.001303,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217121,0.001303,-0.001500,0.249996,0,0);}
.mc_c00335{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);}
.m28_c00335{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);}
.mf5_c00335{transform:matrix(0.218581,0.001967,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218581,0.001967,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218581,0.001967,-0.002250,0.249990,0,0);}
.m97_c00335{transform:matrix(0.219201,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219201,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219201,0.001315,-0.001500,0.249996,0,0);}
.m140_c00335{transform:matrix(0.219366,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219366,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219366,0.001974,-0.002250,0.249990,0,0);}
.m5c_c00335{transform:matrix(0.219946,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219946,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219946,0.001320,-0.001500,0.249996,0,0);}
.m12_c00335{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);}
.m11c_c00335{transform:matrix(0.220156,0.001981,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220156,0.001981,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220156,0.001981,-0.002250,0.249990,0,0);}
.m12c_c00335{transform:matrix(0.220511,0.001985,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220511,0.001985,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220511,0.001985,-0.002250,0.249990,0,0);}
.m132_c00335{transform:matrix(0.220971,0.001989,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220971,0.001989,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220971,0.001989,-0.002250,0.249990,0,0);}
.m163_c00335{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);}
.m4c_c00335{transform:matrix(0.221721,0.001330,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221721,0.001330,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221721,0.001330,-0.001500,0.249996,0,0);}
.m94_c00335{transform:matrix(0.221926,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221926,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221926,0.001332,-0.001500,0.249996,0,0);}
.m4f_c00335{transform:matrix(0.223536,0.001341,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223536,0.001341,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223536,0.001341,-0.001500,0.249996,0,0);}
.m117_c00335{transform:matrix(0.224151,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224151,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224151,0.002017,-0.002250,0.249990,0,0);}
.m57_c00335{transform:matrix(0.224941,0.001350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224941,0.001350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224941,0.001350,-0.001500,0.249996,0,0);}
.m1a_c00335{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);}
.m15f_c00335{transform:matrix(0.225976,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225976,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225976,0.002034,-0.002250,0.249990,0,0);}
.m116_c00335{transform:matrix(0.225996,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225996,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225996,0.002034,-0.002250,0.249990,0,0);}
.m130_c00335{transform:matrix(0.227276,0.002045,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227276,0.002045,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227276,0.002045,-0.002250,0.249990,0,0);}
.m35_c00335{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);}
.m8_c00335{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);}
.mf_c00335{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);}
.mf7_c00335{transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);}
.ma_c00335{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);}
.mfd_c00335{transform:matrix(0.230616,0.002076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230616,0.002076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230616,0.002076,-0.002250,0.249990,0,0);}
.mb1_c00335{transform:matrix(0.231901,0.002087,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231901,0.002087,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231901,0.002087,-0.002250,0.249990,0,0);}
.m69_c00335{transform:matrix(0.232131,0.001393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232131,0.001393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232131,0.001393,-0.001500,0.249996,0,0);}
.mee_c00335{transform:matrix(0.232396,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232396,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232396,0.002092,-0.002250,0.249990,0,0);}
.m30_c00335{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);}
.m20_c00335{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);}
.m11f_c00335{transform:matrix(0.236175,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236175,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236175,0.002126,-0.002250,0.249990,0,0);}
.ma5_c00335{transform:matrix(0.236680,0.002130,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236680,0.002130,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236680,0.002130,-0.002250,0.249990,0,0);}
.me3_c00335{transform:matrix(0.238870,0.002150,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238870,0.002150,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238870,0.002150,-0.002250,0.249990,0,0);}
.m9d_c00335{transform:matrix(0.239071,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239071,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239071,0.001434,-0.001500,0.249996,0,0);}
.m143_c00335{transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);}
.m96_c00335{transform:matrix(0.242601,0.001456,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242601,0.001456,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242601,0.001456,-0.001500,0.249996,0,0);}
.m13b_c00335{transform:matrix(0.243105,0.002188,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243105,0.002188,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243105,0.002188,-0.002250,0.249990,0,0);}
.m5_c00335{transform:matrix(0.244284,-0.008314,0.008504,0.249855,0,0);-ms-transform:matrix(0.244284,-0.008314,0.008504,0.249855,0,0);-webkit-transform:matrix(0.244284,-0.008314,0.008504,0.249855,0,0);}
.m12f_c00335{transform:matrix(0.244385,0.002199,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244385,0.002199,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244385,0.002199,-0.002250,0.249990,0,0);}
.m6d_c00335{transform:matrix(0.247806,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247806,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247806,0.001487,-0.001500,0.249996,0,0);}
.m13c_c00335{transform:matrix(0.254405,0.002290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254405,0.002290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254405,0.002290,-0.002250,0.249990,0,0);}
.m73_c00335{transform:matrix(0.273000,0.001638,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273000,0.001638,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273000,0.001638,-0.001500,0.249996,0,0);}
.m138_c00335{transform:matrix(0.286503,0.002579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286503,0.002579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286503,0.002579,-0.002250,0.249990,0,0);}
.m161_c00335{transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306100,0.000000,0.000000,0.250000,0,0);}
.m164_c00335{transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317160,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.380605,-0.012954,0.008504,0.249855,0,0);-ms-transform:matrix(0.380605,-0.012954,0.008504,0.249855,0,0);-webkit-transform:matrix(0.380605,-0.012954,0.008504,0.249855,0,0);}
.m74_c00335{transform:matrix(0.389543,0.002337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.389543,0.002337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.389543,0.002337,-0.001500,0.249996,0,0);}
.m60_c00335{transform:matrix(0.396658,0.002380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.396658,0.002380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.396658,0.002380,-0.001500,0.249996,0,0);}
.m144_c00335{transform:matrix(0.436382,0.003927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.436382,0.003927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.436382,0.003927,-0.002250,0.249990,0,0);}
.m0_c00335{transform:matrix(0.555453,-0.018904,0.008504,0.249855,0,0);-ms-transform:matrix(0.555453,-0.018904,0.008504,0.249855,0,0);-webkit-transform:matrix(0.555453,-0.018904,0.008504,0.249855,0,0);}
.m150_c00335{transform:matrix(0.608785,0.005479,-0.002250,0.249990,0,0);-ms-transform:matrix(0.608785,0.005479,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.608785,0.005479,-0.002250,0.249990,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;}
.fs1_c00335{font-size:24.139819px;}
.fs1e_c00335{font-size:37.800000px;}
.fs1b_c00335{font-size:57.750000px;}
.fs19_c00335{font-size:60.902466px;}
.fs3_c00335{font-size:61.950000px;}
.fs17_c00335{font-size:61.952509px;}
.fs9_c00335{font-size:63.001134px;}
.fs14_c00335{font-size:65.102636px;}
.fs5_c00335{font-size:67.200000px;}
.fs18_c00335{font-size:67.202722px;}
.fse_c00335{font-size:68.251228px;}
.fs11_c00335{font-size:68.252764px;}
.fs0_c00335{font-size:69.270784px;}
.fsb_c00335{font-size:69.301247px;}
.fs12_c00335{font-size:69.302807px;}
.fs6_c00335{font-size:70.350000px;}
.fs8_c00335{font-size:70.351266px;}
.fs13_c00335{font-size:70.352849px;}
.fs7_c00335{font-size:71.400000px;}
.fsc_c00335{font-size:71.401285px;}
.fs10_c00335{font-size:71.402892px;}
.fsa_c00335{font-size:72.451304px;}
.fsf_c00335{font-size:72.452934px;}
.fs2_c00335{font-size:73.469013px;}
.fs4_c00335{font-size:73.500000px;}
.fsd_c00335{font-size:73.501323px;}
.fs16_c00335{font-size:73.502977px;}
.fs15_c00335{font-size:77.703147px;}
.fs1d_c00335{font-size:87.150000px;}
.fs1c_c00335{font-size:120.750000px;}
.fs1a_c00335{font-size:202.658207px;}
.y0_c00335{bottom:0.000000px;}
.y125_c00335{bottom:145.115622px;}
.y124_c00335{bottom:174.595254px;}
.y123_c00335{bottom:174.862040px;}
.y122_c00335{bottom:175.177553px;}
.y121_c00335{bottom:176.205840px;}
.y120_c00335{bottom:176.489994px;}
.y11f_c00335{bottom:177.329126px;}
.y11e_c00335{bottom:177.940475px;}
.y11d_c00335{bottom:178.615907px;}
.y11c_c00335{bottom:178.945290px;}
.y11b_c00335{bottom:179.654094px;}
.y11a_c00335{bottom:180.249764px;}
.y119_c00335{bottom:180.861261px;}
.y118_c00335{bottom:181.262372px;}
.y117_c00335{bottom:181.612013px;}
.y116_c00335{bottom:181.971608px;}
.y115_c00335{bottom:197.080290px;}
.y114_c00335{bottom:197.462075px;}
.y113_c00335{bottom:198.141323px;}
.y112_c00335{bottom:198.823880px;}
.y111_c00335{bottom:199.088469px;}
.y110_c00335{bottom:200.188373px;}
.y10f_c00335{bottom:200.560500px;}
.y10e_c00335{bottom:201.182805px;}
.y10d_c00335{bottom:202.643395px;}
.y10c_c00335{bottom:204.116412px;}
.y10b_c00335{bottom:204.686421px;}
.y10a_c00335{bottom:205.732367px;}
.y109_c00335{bottom:219.410538px;}
.y108_c00335{bottom:220.863311px;}
.y107_c00335{bottom:221.291610px;}
.y106_c00335{bottom:222.998081px;}
.y105_c00335{bottom:223.610247px;}
.y104_c00335{bottom:224.276346px;}
.y103_c00335{bottom:225.387182px;}
.y102_c00335{bottom:226.302089px;}
.y101_c00335{bottom:226.761818px;}
.y100_c00335{bottom:227.344445px;}
.yff_c00335{bottom:227.818018px;}
.yfe_c00335{bottom:228.681600px;}
.yfd_c00335{bottom:243.196460px;}
.yfc_c00335{bottom:243.439304px;}
.yfb_c00335{bottom:244.436924px;}
.yfa_c00335{bottom:245.077948px;}
.yf9_c00335{bottom:245.941450px;}
.yf8_c00335{bottom:246.234201px;}
.yf7_c00335{bottom:246.919865px;}
.yf6_c00335{bottom:247.443168px;}
.yf5_c00335{bottom:247.905356px;}
.yf4_c00335{bottom:248.498015px;}
.yf3_c00335{bottom:249.369093px;}
.yf2_c00335{bottom:250.554128px;}
.yf1_c00335{bottom:265.753106px;}
.yf0_c00335{bottom:266.441691px;}
.yef_c00335{bottom:267.175994px;}
.yee_c00335{bottom:267.577416px;}
.yed_c00335{bottom:268.026758px;}
.yec_c00335{bottom:269.353389px;}
.yeb_c00335{bottom:270.049484px;}
.yea_c00335{bottom:270.506064px;}
.ye9_c00335{bottom:270.877058px;}
.ye8_c00335{bottom:271.772081px;}
.ye7_c00335{bottom:272.530302px;}
.ye6_c00335{bottom:272.962302px;}
.ye5_c00335{bottom:289.382219px;}
.ye4_c00335{bottom:290.547833px;}
.ye3_c00335{bottom:290.833388px;}
.ye2_c00335{bottom:291.471353px;}
.ye1_c00335{bottom:291.851693px;}
.ye0_c00335{bottom:292.578648px;}
.ydf_c00335{bottom:292.897860px;}
.yde_c00335{bottom:293.264951px;}
.ydd_c00335{bottom:294.582033px;}
.ydc_c00335{bottom:295.066003px;}
.ydb_c00335{bottom:295.912095px;}
.yda_c00335{bottom:311.832027px;}
.yd9_c00335{bottom:312.158669px;}
.yd8_c00335{bottom:313.310832px;}
.yd7_c00335{bottom:313.651181px;}
.yd6_c00335{bottom:314.456879px;}
.yd5_c00335{bottom:314.989968px;}
.yd4_c00335{bottom:315.360054px;}
.yd3_c00335{bottom:315.907404px;}
.yd2_c00335{bottom:316.927896px;}
.yd1_c00335{bottom:318.028256px;}
.yd0_c00335{bottom:318.322944px;}
.ycf_c00335{bottom:335.225458px;}
.yce_c00335{bottom:335.879903px;}
.ycd_c00335{bottom:336.506810px;}
.ycc_c00335{bottom:337.013930px;}
.ycb_c00335{bottom:337.594704px;}
.yca_c00335{bottom:338.283761px;}
.yc9_c00335{bottom:338.645203px;}
.yc8_c00335{bottom:339.107177px;}
.yc7_c00335{bottom:340.589371px;}
.yc6_c00335{bottom:341.273755px;}
.yc5_c00335{bottom:358.364121px;}
.yc4_c00335{bottom:359.180292px;}
.yc3_c00335{bottom:359.388150px;}
.yc2_c00335{bottom:359.893311px;}
.yc1_c00335{bottom:360.291201px;}
.yc0_c00335{bottom:360.547631px;}
.ybf_c00335{bottom:360.888294px;}
.ybe_c00335{bottom:361.385057px;}
.ybd_c00335{bottom:362.376258px;}
.ybc_c00335{bottom:363.070238px;}
.ybb_c00335{bottom:363.459311px;}
.yba_c00335{bottom:363.955830px;}
.yb9_c00335{bottom:381.768432px;}
.yb8_c00335{bottom:382.214340px;}
.yb7_c00335{bottom:382.700867px;}
.yb6_c00335{bottom:383.128194px;}
.yb5_c00335{bottom:383.601042px;}
.yb4_c00335{bottom:384.326700px;}
.yb3_c00335{bottom:384.699744px;}
.yb2_c00335{bottom:385.010484px;}
.yb1_c00335{bottom:385.549364px;}
.yb0_c00335{bottom:385.921787px;}
.yaf_c00335{bottom:386.247825px;}
.yae_c00335{bottom:386.662892px;}
.yad_c00335{bottom:386.906682px;}
.yac_c00335{bottom:405.003414px;}
.yab_c00335{bottom:405.940291px;}
.yaa_c00335{bottom:406.248645px;}
.ya9_c00335{bottom:406.682871px;}
.ya8_c00335{bottom:406.967120px;}
.ya7_c00335{bottom:407.928561px;}
.ya6_c00335{bottom:408.254498px;}
.ya5_c00335{bottom:408.711937px;}
.ya4_c00335{bottom:409.132605px;}
.ya3_c00335{bottom:409.490032px;}
.ya2_c00335{bottom:409.854753px;}
.ya1_c00335{bottom:426.897846px;}
.ya0_c00335{bottom:427.144810px;}
.y9f_c00335{bottom:428.095908px;}
.y9e_c00335{bottom:428.505624px;}
.y9d_c00335{bottom:429.197820px;}
.y9c_c00335{bottom:430.046448px;}
.y9b_c00335{bottom:430.364956px;}
.y9a_c00335{bottom:430.973468px;}
.y99_c00335{bottom:431.240688px;}
.y98_c00335{bottom:431.798018px;}
.y97_c00335{bottom:432.303465px;}
.y96_c00335{bottom:432.806049px;}
.y95_c00335{bottom:450.335351px;}
.y94_c00335{bottom:450.989346px;}
.y93_c00335{bottom:451.330442px;}
.y92_c00335{bottom:452.157132px;}
.y91_c00335{bottom:452.413615px;}
.y90_c00335{bottom:452.889204px;}
.y8f_c00335{bottom:453.326754px;}
.y8e_c00335{bottom:453.471078px;}
.y8d_c00335{bottom:454.033130px;}
.y8c_c00335{bottom:454.283658px;}
.y8b_c00335{bottom:454.649842px;}
.y8a_c00335{bottom:455.190626px;}
.y89_c00335{bottom:455.758780px;}
.y88_c00335{bottom:474.476722px;}
.y87_c00335{bottom:474.819029px;}
.y86_c00335{bottom:475.417227px;}
.y85_c00335{bottom:475.776462px;}
.y84_c00335{bottom:476.087489px;}
.y83_c00335{bottom:476.505854px;}
.y82_c00335{bottom:476.695407px;}
.y81_c00335{bottom:477.205747px;}
.y80_c00335{bottom:477.409854px;}
.y7f_c00335{bottom:477.932344px;}
.y7e_c00335{bottom:478.168108px;}
.y7d_c00335{bottom:496.341837px;}
.y7c_c00335{bottom:496.721755px;}
.y7b_c00335{bottom:497.107764px;}
.y7a_c00335{bottom:497.833183px;}
.y79_c00335{bottom:498.086166px;}
.y78_c00335{bottom:498.433435px;}
.y77_c00335{bottom:498.807102px;}
.y76_c00335{bottom:499.448604px;}
.y75_c00335{bottom:500.440710px;}
.y74_c00335{bottom:500.851104px;}
.y73_c00335{bottom:519.066240px;}
.y72_c00335{bottom:519.732519px;}
.y71_c00335{bottom:520.087258px;}
.y70_c00335{bottom:520.422693px;}
.y6f_c00335{bottom:520.782225px;}
.y6e_c00335{bottom:521.433573px;}
.y6d_c00335{bottom:521.676586px;}
.y6c_c00335{bottom:522.097004px;}
.y6b_c00335{bottom:522.719259px;}
.y6a_c00335{bottom:522.991500px;}
.y69_c00335{bottom:543.191553px;}
.y68_c00335{bottom:543.516858px;}
.y67_c00335{bottom:543.764733px;}
.y66_c00335{bottom:544.048602px;}
.y65_c00335{bottom:544.306047px;}
.y64_c00335{bottom:544.638771px;}
.y63_c00335{bottom:545.214927px;}
.y62_c00335{bottom:545.691240px;}
.y61_c00335{bottom:546.208845px;}
.y60_c00335{bottom:565.271157px;}
.y5f_c00335{bottom:565.749474px;}
.y5e_c00335{bottom:566.121069px;}
.y5d_c00335{bottom:566.335224px;}
.y5c_c00335{bottom:567.120036px;}
.y5b_c00335{bottom:567.415260px;}
.y5a_c00335{bottom:567.769665px;}
.y59_c00335{bottom:568.261998px;}
.y58_c00335{bottom:568.439820px;}
.y57_c00335{bottom:568.552362px;}
.y56_c00335{bottom:568.892283px;}
.y129_c00335{bottom:585.630000px;}
.y55_c00335{bottom:588.316440px;}
.y54_c00335{bottom:588.723312px;}
.y53_c00335{bottom:588.880380px;}
.y52_c00335{bottom:589.086978px;}
.y51_c00335{bottom:589.468245px;}
.y50_c00335{bottom:589.679730px;}
.y4f_c00335{bottom:589.818867px;}
.y4e_c00335{bottom:589.987263px;}
.y4d_c00335{bottom:590.283594px;}
.y4c_c00335{bottom:590.459556px;}
.y4b_c00335{bottom:590.659785px;}
.y4a_c00335{bottom:590.951436px;}
.y49_c00335{bottom:591.109818px;}
.y48_c00335{bottom:591.391923px;}
.y47_c00335{bottom:591.572925px;}
.y127_c00335{bottom:596.160000px;}
.y128_c00335{bottom:603.450000px;}
.y3d_c00335{bottom:613.082775px;}
.y3a_c00335{bottom:613.082826px;}
.y3c_c00335{bottom:613.082835px;}
.y3e_c00335{bottom:613.083375px;}
.y3b_c00335{bottom:613.083546px;}
.y40_c00335{bottom:613.083564px;}
.y3f_c00335{bottom:613.083615px;}
.y41_c00335{bottom:613.083864px;}
.y44_c00335{bottom:613.084173px;}
.y45_c00335{bottom:613.084293px;}
.y46_c00335{bottom:613.084302px;}
.y42_c00335{bottom:613.084464px;}
.y43_c00335{bottom:613.084893px;}
.y37_c00335{bottom:635.732592px;}
.y38_c00335{bottom:635.732661px;}
.y35_c00335{bottom:635.732832px;}
.y39_c00335{bottom:635.732970px;}
.y36_c00335{bottom:635.733312px;}
.y34_c00335{bottom:635.733372px;}
.y30_c00335{bottom:635.733525px;}
.y32_c00335{bottom:635.733594px;}
.y31_c00335{bottom:635.733954px;}
.y33_c00335{bottom:635.734023px;}
.y126_c00335{bottom:637.740000px;}
.y25_c00335{bottom:658.041726px;}
.y27_c00335{bottom:658.041855px;}
.y26_c00335{bottom:658.042206px;}
.y29_c00335{bottom:658.042344px;}
.y28_c00335{bottom:658.042404px;}
.y2b_c00335{bottom:658.042422px;}
.y2c_c00335{bottom:658.042842px;}
.y2a_c00335{bottom:658.042893px;}
.y2d_c00335{bottom:658.043391px;}
.y2e_c00335{bottom:658.043460px;}
.y2f_c00335{bottom:658.044120px;}
.y19_c00335{bottom:680.973405px;}
.y1a_c00335{bottom:680.973534px;}
.y1b_c00335{bottom:680.973543px;}
.y1e_c00335{bottom:680.973621px;}
.y1c_c00335{bottom:680.973792px;}
.y1d_c00335{bottom:680.973801px;}
.y21_c00335{bottom:680.973990px;}
.y23_c00335{bottom:680.974188px;}
.y1f_c00335{bottom:680.974230px;}
.y22_c00335{bottom:680.974239px;}
.y20_c00335{bottom:680.974350px;}
.y24_c00335{bottom:680.974548px;}
.y18_c00335{bottom:702.472041px;}
.y17_c00335{bottom:702.677808px;}
.y16_c00335{bottom:702.946593px;}
.y15_c00335{bottom:703.118286px;}
.y14_c00335{bottom:703.299870px;}
.y13_c00335{bottom:703.808613px;}
.y12_c00335{bottom:704.246058px;}
.y11_c00335{bottom:704.775726px;}
.y10_c00335{bottom:704.910186px;}
.yf_c00335{bottom:705.091626px;}
.ye_c00335{bottom:705.240000px;}
.yd_c00335{bottom:726.660000px;}
.yc_c00335{bottom:749.365500px;}
.yb_c00335{bottom:771.751500px;}
.ya_c00335{bottom:794.703000px;}
.y9_c00335{bottom:817.351500px;}
.y8_c00335{bottom:839.761500px;}
.y6_c00335{bottom:923.284723px;}
.y7_c00335{bottom:923.286055px;}
.y1_c00335{bottom:932.338500px;}
.y4_c00335{bottom:933.396154px;}
.y5_c00335{bottom:933.398077px;}
.y2_c00335{bottom:934.599636px;}
.y3_c00335{bottom:935.596584px;}
.h3_c00335{height:24.139819px;}
.h20_c00335{height:37.800000px;}
.h1d_c00335{height:57.750000px;}
.h1b_c00335{height:60.902466px;}
.h5_c00335{height:61.950000px;}
.h19_c00335{height:61.952509px;}
.hb_c00335{height:63.001134px;}
.h16_c00335{height:65.102636px;}
.h7_c00335{height:67.200000px;}
.h1a_c00335{height:67.202722px;}
.h10_c00335{height:68.251228px;}
.h13_c00335{height:68.252764px;}
.h2_c00335{height:69.270784px;}
.hd_c00335{height:69.301247px;}
.h14_c00335{height:69.302807px;}
.h8_c00335{height:70.350000px;}
.ha_c00335{height:70.351266px;}
.h15_c00335{height:70.352849px;}
.h9_c00335{height:71.400000px;}
.he_c00335{height:71.401285px;}
.h12_c00335{height:71.402892px;}
.hc_c00335{height:72.451304px;}
.h11_c00335{height:72.452934px;}
.h4_c00335{height:73.469013px;}
.h6_c00335{height:73.500000px;}
.hf_c00335{height:73.501323px;}
.h18_c00335{height:73.502977px;}
.h17_c00335{height:77.703147px;}
.h1f_c00335{height:87.150000px;}
.h1e_c00335{height:120.750000px;}
.h1c_c00335{height:202.658207px;}
.h0_c00335{height:1008.450000px;}
.h1_c00335{height:1008.750000px;}
.w0_c00335{width:696.000000px;}
.x0_c00335{left:0.000000px;}
.xb0_c00335{left:79.164486px;}
.xbe_c00335{left:87.480153px;}
.xbf_c00335{left:90.180000px;}
.xc0_c00335{left:91.260000px;}
.xac_c00335{left:93.290657px;}
.x49_c00335{left:98.010588px;}
.x50_c00335{left:105.569775px;}
.xb8_c00335{left:117.656538px;}
.x40_c00335{left:120.724500px;}
.xb1_c00335{left:140.709558px;}
.x8b_c00335{left:141.908021px;}
.x2f_c00335{left:143.100000px;}
.x5e_c00335{left:144.451431px;}
.x41_c00335{left:145.453500px;}
.x7_c00335{left:146.880000px;}
.x77_c00335{left:158.344500px;}
.x8f_c00335{left:161.574404px;}
.xad_c00335{left:167.524136px;}
.x65_c00335{left:169.472691px;}
.xb2_c00335{left:174.208142px;}
.x1e_c00335{left:175.230000px;}
.x13_c00335{left:177.390000px;}
.x7a_c00335{left:179.953309px;}
.x88_c00335{left:182.145302px;}
.x6f_c00335{left:185.429733px;}
.x8_c00335{left:187.650000px;}
.x26_c00335{left:189.810000px;}
.x1f_c00335{left:191.160000px;}
.x38_c00335{left:192.780000px;}
.x58_c00335{left:194.401131px;}
.x90_c00335{left:196.191972px;}
.x42_c00335{left:198.103500px;}
.x30_c00335{left:199.800000px;}
.xb9_c00335{left:208.512638px;}
.x66_c00335{left:209.739948px;}
.x14_c00335{left:211.680000px;}
.x51_c00335{left:213.302154px;}
.x9_c00335{left:215.460000px;}
.x5f_c00335{left:218.702604px;}
.x20_c00335{left:220.320000px;}
.x59_c00335{left:222.212130px;}
.x91_c00335{left:223.417743px;}
.x9e_c00335{left:224.457336px;}
.xae_c00335{left:225.503451px;}
.x7f_c00335{left:227.233878px;}
.x31_c00335{left:229.500000px;}
.x67_c00335{left:232.386813px;}
.x39_c00335{left:235.710000px;}
.x9a_c00335{left:240.952768px;}
.x60_c00335{left:242.463459px;}
.xba_c00335{left:248.195991px;}
.x80_c00335{left:249.912378px;}
.xa_c00335{left:251.640000px;}
.x73_c00335{left:253.114650px;}
.x92_c00335{left:254.463906px;}
.x27_c00335{left:258.660000px;}
.x15_c00335{left:259.740000px;}
.xb3_c00335{left:260.870405px;}
.xa6_c00335{left:262.492194px;}
.x89_c00335{left:263.895359px;}
.x84_c00335{left:265.272840px;}
.x32_c00335{left:268.920000px;}
.x7b_c00335{left:270.185689px;}
.x5a_c00335{left:271.892421px;}
.x68_c00335{left:273.995061px;}
.x21_c00335{left:276.750000px;}
.x28_c00335{left:278.910000px;}
.xb_c00335{left:281.610000px;}
.x70_c00335{left:283.128054px;}
.x16_c00335{left:285.390000px;}
.x52_c00335{left:286.473291px;}
.x8c_c00335{left:290.090688px;}
.xa4_c00335{left:295.187399px;}
.x99_c00335{left:296.292348px;}
.xa7_c00335{left:297.340683px;}
.x93_c00335{left:299.338191px;}
.x69_c00335{left:302.616390px;}
.x78_c00335{left:304.446000px;}
.x81_c00335{left:306.616878px;}
.x29_c00335{left:308.070000px;}
.x9b_c00335{left:313.837488px;}
.xc_c00335{left:317.250000px;}
.x17_c00335{left:323.190000px;}
.x94_c00335{left:325.197489px;}
.x2a_c00335{left:327.240000px;}
.x22_c00335{left:329.400000px;}
.x3a_c00335{left:331.560000px;}
.x4a_c00335{left:333.453066px;}
.xaf_c00335{left:338.076839px;}
.x5b_c00335{left:344.253522px;}
.xb4_c00335{left:346.818722px;}
.x9f_c00335{left:349.714452px;}
.x33_c00335{left:351.810000px;}
.x9c_c00335{left:352.985733px;}
.x74_c00335{left:354.092832px;}
.x23_c00335{left:355.860000px;}
.x18_c00335{left:357.750000px;}
.x43_c00335{left:359.289000px;}
.x7c_c00335{left:362.480529px;}
.x4b_c00335{left:364.234173px;}
.xa5_c00335{left:367.257863px;}
.x53_c00335{left:369.634788px;}
.x82_c00335{left:374.163378px;}
.xd_c00335{left:378.540000px;}
.x85_c00335{left:381.375695px;}
.x5c_c00335{left:382.594899px;}
.x8d_c00335{left:385.997246px;}
.x61_c00335{left:388.537224px;}
.x34_c00335{left:393.390000px;}
.xa0_c00335{left:395.151090px;}
.x96_c00335{left:396.538982px;}
.x79_c00335{left:403.819500px;}
.x19_c00335{left:405.810000px;}
.x3b_c00335{left:409.320000px;}
.xa8_c00335{left:412.877367px;}
.x6a_c00335{left:414.086724px;}
.x4c_c00335{left:416.884572px;}
.x8e_c00335{left:419.410044px;}
.x62_c00335{left:420.938394px;}
.x54_c00335{left:424.715268px;}
.x2b_c00335{left:429.840000px;}
.x1a_c00335{left:437.670000px;}
.xe_c00335{left:439.830000px;}
.x75_c00335{left:441.872757px;}
.x44_c00335{left:444.079500px;}
.x97_c00335{left:446.214631px;}
.x24_c00335{left:448.200000px;}
.x2c_c00335{left:450.900000px;}
.x3c_c00335{left:454.950000px;}
.x95_c00335{left:456.143952px;}
.xa1_c00335{left:458.792081px;}
.xf_c00335{left:462.510000px;}
.xa9_c00335{left:463.651709px;}
.x4d_c00335{left:464.676291px;}
.xb5_c00335{left:470.013852px;}
.x45_c00335{left:474.343500px;}
.xa2_c00335{left:476.685960px;}
.x76_c00335{left:478.089609px;}
.x3d_c00335{left:480.330000px;}
.x7d_c00335{left:482.941855px;}
.x63_c00335{left:484.119171px;}
.xb6_c00335{left:485.578232px;}
.x71_c00335{left:489.141579px;}
.x35_c00335{left:492.210000px;}
.x55_c00335{left:496.806369px;}
.x6b_c00335{left:498.878220px;}
.xaa_c00335{left:501.373995px;}
.x46_c00335{left:502.959000px;}
.x1b_c00335{left:505.980000px;}
.x86_c00335{left:511.234685px;}
.x2d_c00335{left:513.000000px;}
.x83_c00335{left:515.103378px;}
.x4e_c00335{left:518.136717px;}
.x5d_c00335{left:521.378394px;}
.x3e_c00335{left:522.720000px;}
.x1c_c00335{left:525.960000px;}
.x6c_c00335{left:528.311040px;}
.x36_c00335{left:530.820000px;}
.x64_c00335{left:532.720917px;}
.x72_c00335{left:535.573521px;}
.x87_c00335{left:539.633415px;}
.x10_c00335{left:541.890000px;}
.xbb_c00335{left:546.573372px;}
.x47_c00335{left:547.756500px;}
.xa3_c00335{left:549.527370px;}
.x6d_c00335{left:550.738905px;}
.x7e_c00335{left:552.543600px;}
.xab_c00335{left:560.049770px;}
.x4f_c00335{left:562.146801px;}
.x25_c00335{left:564.030000px;}
.xb7_c00335{left:565.717467px;}
.xbc_c00335{left:567.629238px;}
.x11_c00335{left:568.890000px;}
.x37_c00335{left:574.020000px;}
.x1d_c00335{left:576.180000px;}
.x1_c00335{left:579.193500px;}
.x48_c00335{left:582.051000px;}
.xbd_c00335{left:585.437780px;}
.x56_c00335{left:587.798145px;}
.x12_c00335{left:592.920000px;}
.x3f_c00335{left:594.540000px;}
.x8a_c00335{left:597.921330px;}
.x2e_c00335{left:602.640000px;}
.x9d_c00335{left:604.977393px;}
.x98_c00335{left:606.830298px;}
.x6e_c00335{left:608.800554px;}
.x57_c00335{left:609.938946px;}
.x4_c00335{left:612.077177px;}
.x2_c00335{left:645.630996px;}
.x5_c00335{left:663.355168px;}
.x6_c00335{left:667.133361px;}
.x3_c00335{left:674.923674px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.fs1_c00335{font-size:21.457617pt;}
.fs1e_c00335{font-size:33.600000pt;}
.fs1b_c00335{font-size:51.333333pt;}
.fs19_c00335{font-size:54.135526pt;}
.fs3_c00335{font-size:55.066667pt;}
.fs17_c00335{font-size:55.068897pt;}
.fs9_c00335{font-size:56.001008pt;}
.fs14_c00335{font-size:57.869010pt;}
.fs5_c00335{font-size:59.733333pt;}
.fs18_c00335{font-size:59.735752pt;}
.fse_c00335{font-size:60.667759pt;}
.fs11_c00335{font-size:60.669124pt;}
.fs0_c00335{font-size:61.574030pt;}
.fsb_c00335{font-size:61.601109pt;}
.fs12_c00335{font-size:61.602495pt;}
.fs6_c00335{font-size:62.533333pt;}
.fs8_c00335{font-size:62.534459pt;}
.fs13_c00335{font-size:62.535866pt;}
.fs7_c00335{font-size:63.466667pt;}
.fsc_c00335{font-size:63.467809pt;}
.fs10_c00335{font-size:63.469237pt;}
.fsa_c00335{font-size:64.401159pt;}
.fsf_c00335{font-size:64.402608pt;}
.fs2_c00335{font-size:65.305790pt;}
.fs4_c00335{font-size:65.333333pt;}
.fsd_c00335{font-size:65.334509pt;}
.fs16_c00335{font-size:65.335979pt;}
.fs15_c00335{font-size:69.069464pt;}
.fs1d_c00335{font-size:77.466667pt;}
.fs1c_c00335{font-size:107.333333pt;}
.fs1a_c00335{font-size:180.140629pt;}
.y0_c00335{bottom:0.000000pt;}
.y125_c00335{bottom:128.991664pt;}
.y124_c00335{bottom:155.195781pt;}
.y123_c00335{bottom:155.432924pt;}
.y122_c00335{bottom:155.713380pt;}
.y121_c00335{bottom:156.627413pt;}
.y120_c00335{bottom:156.879995pt;}
.y11f_c00335{bottom:157.625889pt;}
.y11e_c00335{bottom:158.169311pt;}
.y11d_c00335{bottom:158.769695pt;}
.y11c_c00335{bottom:159.062480pt;}
.y11b_c00335{bottom:159.692528pt;}
.y11a_c00335{bottom:160.222012pt;}
.y119_c00335{bottom:160.765565pt;}
.y118_c00335{bottom:161.122108pt;}
.y117_c00335{bottom:161.432900pt;}
.y116_c00335{bottom:161.752540pt;}
.y115_c00335{bottom:175.182480pt;}
.y114_c00335{bottom:175.521844pt;}
.y113_c00335{bottom:176.125620pt;}
.y112_c00335{bottom:176.732337pt;}
.y111_c00335{bottom:176.967528pt;}
.y110_c00335{bottom:177.945220pt;}
.y10f_c00335{bottom:178.276000pt;}
.y10e_c00335{bottom:178.829160pt;}
.y10d_c00335{bottom:180.127463pt;}
.y10c_c00335{bottom:181.436811pt;}
.y10b_c00335{bottom:181.943485pt;}
.y10a_c00335{bottom:182.873215pt;}
.y109_c00335{bottom:195.031589pt;}
.y108_c00335{bottom:196.322943pt;}
.y107_c00335{bottom:196.703653pt;}
.y106_c00335{bottom:198.220516pt;}
.y105_c00335{bottom:198.764664pt;}
.y104_c00335{bottom:199.356752pt;}
.y103_c00335{bottom:200.344161pt;}
.y102_c00335{bottom:201.157412pt;}
.y101_c00335{bottom:201.566060pt;}
.y100_c00335{bottom:202.083951pt;}
.yff_c00335{bottom:202.504905pt;}
.yfe_c00335{bottom:203.272533pt;}
.yfd_c00335{bottom:216.174631pt;}
.yfc_c00335{bottom:216.390492pt;}
.yfb_c00335{bottom:217.277265pt;}
.yfa_c00335{bottom:217.847065pt;}
.yf9_c00335{bottom:218.614623pt;}
.yf8_c00335{bottom:218.874845pt;}
.yf7_c00335{bottom:219.484324pt;}
.yf6_c00335{bottom:219.949483pt;}
.yf5_c00335{bottom:220.360316pt;}
.yf4_c00335{bottom:220.887124pt;}
.yf3_c00335{bottom:221.661416pt;}
.yf2_c00335{bottom:222.714780pt;}
.yf1_c00335{bottom:236.224983pt;}
.yf0_c00335{bottom:236.837059pt;}
.yef_c00335{bottom:237.489772pt;}
.yee_c00335{bottom:237.846592pt;}
.yed_c00335{bottom:238.246007pt;}
.yec_c00335{bottom:239.425235pt;}
.yeb_c00335{bottom:240.043985pt;}
.yea_c00335{bottom:240.449835pt;}
.ye9_c00335{bottom:240.779607pt;}
.ye8_c00335{bottom:241.575183pt;}
.ye7_c00335{bottom:242.249157pt;}
.ye6_c00335{bottom:242.633157pt;}
.ye5_c00335{bottom:257.228639pt;}
.ye4_c00335{bottom:258.264740pt;}
.ye3_c00335{bottom:258.518567pt;}
.ye2_c00335{bottom:259.085647pt;}
.ye1_c00335{bottom:259.423727pt;}
.ye0_c00335{bottom:260.069909pt;}
.ydf_c00335{bottom:260.353653pt;}
.yde_c00335{bottom:260.679956pt;}
.ydd_c00335{bottom:261.850696pt;}
.ydc_c00335{bottom:262.280892pt;}
.ydb_c00335{bottom:263.032973pt;}
.yda_c00335{bottom:277.184024pt;}
.yd9_c00335{bottom:277.474372pt;}
.yd8_c00335{bottom:278.498517pt;}
.yd7_c00335{bottom:278.801049pt;}
.yd6_c00335{bottom:279.517225pt;}
.yd5_c00335{bottom:279.991083pt;}
.yd4_c00335{bottom:280.320048pt;}
.yd3_c00335{bottom:280.806581pt;}
.yd2_c00335{bottom:281.713685pt;}
.yd1_c00335{bottom:282.691783pt;}
.yd0_c00335{bottom:282.953728pt;}
.ycf_c00335{bottom:297.978185pt;}
.yce_c00335{bottom:298.559913pt;}
.ycd_c00335{bottom:299.117164pt;}
.ycc_c00335{bottom:299.567937pt;}
.ycb_c00335{bottom:300.084181pt;}
.yca_c00335{bottom:300.696676pt;}
.yc9_c00335{bottom:301.017959pt;}
.yc8_c00335{bottom:301.428601pt;}
.yc7_c00335{bottom:302.746108pt;}
.yc6_c00335{bottom:303.354449pt;}
.yc5_c00335{bottom:318.545885pt;}
.yc4_c00335{bottom:319.271371pt;}
.yc3_c00335{bottom:319.456133pt;}
.yc2_c00335{bottom:319.905165pt;}
.yc1_c00335{bottom:320.258845pt;}
.yc0_c00335{bottom:320.486783pt;}
.ybf_c00335{bottom:320.789595pt;}
.ybe_c00335{bottom:321.231161pt;}
.ybd_c00335{bottom:322.112229pt;}
.ybc_c00335{bottom:322.729100pt;}
.ybb_c00335{bottom:323.074943pt;}
.yba_c00335{bottom:323.516293pt;}
.yb9_c00335{bottom:339.349717pt;}
.yb8_c00335{bottom:339.746080pt;}
.yb7_c00335{bottom:340.178548pt;}
.yb6_c00335{bottom:340.558395pt;}
.yb5_c00335{bottom:340.978704pt;}
.yb4_c00335{bottom:341.623733pt;}
.yb3_c00335{bottom:341.955328pt;}
.yb2_c00335{bottom:342.231541pt;}
.yb1_c00335{bottom:342.710545pt;}
.yb0_c00335{bottom:343.041588pt;}
.yaf_c00335{bottom:343.331400pt;}
.yae_c00335{bottom:343.700348pt;}
.yad_c00335{bottom:343.917051pt;}
.yac_c00335{bottom:360.003035pt;}
.yab_c00335{bottom:360.835815pt;}
.yaa_c00335{bottom:361.109907pt;}
.ya9_c00335{bottom:361.495885pt;}
.ya8_c00335{bottom:361.748551pt;}
.ya7_c00335{bottom:362.603165pt;}
.ya6_c00335{bottom:362.892887pt;}
.ya5_c00335{bottom:363.299500pt;}
.ya4_c00335{bottom:363.673427pt;}
.ya3_c00335{bottom:363.991140pt;}
.ya2_c00335{bottom:364.315336pt;}
.ya1_c00335{bottom:379.464752pt;}
.ya0_c00335{bottom:379.684276pt;}
.y9f_c00335{bottom:380.529696pt;}
.y9e_c00335{bottom:380.893888pt;}
.y9d_c00335{bottom:381.509173pt;}
.y9c_c00335{bottom:382.263509pt;}
.y9b_c00335{bottom:382.546628pt;}
.y9a_c00335{bottom:383.087527pt;}
.y99_c00335{bottom:383.325056pt;}
.y98_c00335{bottom:383.820460pt;}
.y97_c00335{bottom:384.269747pt;}
.y96_c00335{bottom:384.716488pt;}
.y95_c00335{bottom:400.298089pt;}
.y94_c00335{bottom:400.879419pt;}
.y93_c00335{bottom:401.182615pt;}
.y92_c00335{bottom:401.917451pt;}
.y91_c00335{bottom:402.145436pt;}
.y90_c00335{bottom:402.568181pt;}
.y8f_c00335{bottom:402.957115pt;}
.y8e_c00335{bottom:403.085403pt;}
.y8d_c00335{bottom:403.585004pt;}
.y8c_c00335{bottom:403.807696pt;}
.y8b_c00335{bottom:404.133193pt;}
.y8a_c00335{bottom:404.613889pt;}
.y89_c00335{bottom:405.118916pt;}
.y88_c00335{bottom:421.757087pt;}
.y87_c00335{bottom:422.061359pt;}
.y86_c00335{bottom:422.593091pt;}
.y85_c00335{bottom:422.912411pt;}
.y84_c00335{bottom:423.188879pt;}
.y83_c00335{bottom:423.560759pt;}
.y82_c00335{bottom:423.729251pt;}
.y81_c00335{bottom:424.182887pt;}
.y80_c00335{bottom:424.364315pt;}
.y7f_c00335{bottom:424.828751pt;}
.y7e_c00335{bottom:425.038319pt;}
.y7d_c00335{bottom:441.192744pt;}
.y7c_c00335{bottom:441.530449pt;}
.y7b_c00335{bottom:441.873568pt;}
.y7a_c00335{bottom:442.518385pt;}
.y79_c00335{bottom:442.743259pt;}
.y78_c00335{bottom:443.051943pt;}
.y77_c00335{bottom:443.384091pt;}
.y76_c00335{bottom:443.954315pt;}
.y75_c00335{bottom:444.836187pt;}
.y74_c00335{bottom:445.200981pt;}
.y73_c00335{bottom:461.392213pt;}
.y72_c00335{bottom:461.984461pt;}
.y71_c00335{bottom:462.299785pt;}
.y70_c00335{bottom:462.597949pt;}
.y6f_c00335{bottom:462.917533pt;}
.y6e_c00335{bottom:463.496509pt;}
.y6d_c00335{bottom:463.712521pt;}
.y6c_c00335{bottom:464.086225pt;}
.y6b_c00335{bottom:464.639341pt;}
.y6a_c00335{bottom:464.881333pt;}
.y69_c00335{bottom:482.836936pt;}
.y68_c00335{bottom:483.126096pt;}
.y67_c00335{bottom:483.346429pt;}
.y66_c00335{bottom:483.598757pt;}
.y65_c00335{bottom:483.827597pt;}
.y64_c00335{bottom:484.123352pt;}
.y63_c00335{bottom:484.635491pt;}
.y62_c00335{bottom:485.058880pt;}
.y61_c00335{bottom:485.518973pt;}
.y60_c00335{bottom:502.463251pt;}
.y5f_c00335{bottom:502.888421pt;}
.y5e_c00335{bottom:503.218728pt;}
.y5d_c00335{bottom:503.409088pt;}
.y5c_c00335{bottom:504.106699pt;}
.y5b_c00335{bottom:504.369120pt;}
.y5a_c00335{bottom:504.684147pt;}
.y59_c00335{bottom:505.121776pt;}
.y58_c00335{bottom:505.279840pt;}
.y57_c00335{bottom:505.379877pt;}
.y56_c00335{bottom:505.682029pt;}
.y129_c00335{bottom:520.560000pt;}
.y55_c00335{bottom:522.947947pt;}
.y54_c00335{bottom:523.309611pt;}
.y53_c00335{bottom:523.449227pt;}
.y52_c00335{bottom:523.632869pt;}
.y51_c00335{bottom:523.971773pt;}
.y50_c00335{bottom:524.159760pt;}
.y4f_c00335{bottom:524.283437pt;}
.y4e_c00335{bottom:524.433123pt;}
.y4d_c00335{bottom:524.696528pt;}
.y4c_c00335{bottom:524.852939pt;}
.y4b_c00335{bottom:525.030920pt;}
.y4a_c00335{bottom:525.290165pt;}
.y49_c00335{bottom:525.430949pt;}
.y48_c00335{bottom:525.681709pt;}
.y47_c00335{bottom:525.842600pt;}
.y127_c00335{bottom:529.920000pt;}
.y128_c00335{bottom:536.400000pt;}
.y3d_c00335{bottom:544.962467pt;}
.y3a_c00335{bottom:544.962512pt;}
.y3c_c00335{bottom:544.962520pt;}
.y3e_c00335{bottom:544.963000pt;}
.y3b_c00335{bottom:544.963152pt;}
.y40_c00335{bottom:544.963168pt;}
.y3f_c00335{bottom:544.963213pt;}
.y41_c00335{bottom:544.963435pt;}
.y44_c00335{bottom:544.963709pt;}
.y45_c00335{bottom:544.963816pt;}
.y46_c00335{bottom:544.963824pt;}
.y42_c00335{bottom:544.963968pt;}
.y43_c00335{bottom:544.964349pt;}
.y37_c00335{bottom:565.095637pt;}
.y38_c00335{bottom:565.095699pt;}
.y35_c00335{bottom:565.095851pt;}
.y39_c00335{bottom:565.095973pt;}
.y36_c00335{bottom:565.096277pt;}
.y34_c00335{bottom:565.096331pt;}
.y30_c00335{bottom:565.096467pt;}
.y32_c00335{bottom:565.096528pt;}
.y31_c00335{bottom:565.096848pt;}
.y33_c00335{bottom:565.096909pt;}
.y126_c00335{bottom:566.880000pt;}
.y25_c00335{bottom:584.925979pt;}
.y27_c00335{bottom:584.926093pt;}
.y26_c00335{bottom:584.926405pt;}
.y29_c00335{bottom:584.926528pt;}
.y28_c00335{bottom:584.926581pt;}
.y2b_c00335{bottom:584.926597pt;}
.y2c_c00335{bottom:584.926971pt;}
.y2a_c00335{bottom:584.927016pt;}
.y2d_c00335{bottom:584.927459pt;}
.y2e_c00335{bottom:584.927520pt;}
.y2f_c00335{bottom:584.928107pt;}
.y19_c00335{bottom:605.309693pt;}
.y1a_c00335{bottom:605.309808pt;}
.y1b_c00335{bottom:605.309816pt;}
.y1e_c00335{bottom:605.309885pt;}
.y1c_c00335{bottom:605.310037pt;}
.y1d_c00335{bottom:605.310045pt;}
.y21_c00335{bottom:605.310213pt;}
.y23_c00335{bottom:605.310389pt;}
.y1f_c00335{bottom:605.310427pt;}
.y22_c00335{bottom:605.310435pt;}
.y20_c00335{bottom:605.310533pt;}
.y24_c00335{bottom:605.310709pt;}
.y18_c00335{bottom:624.419592pt;}
.y17_c00335{bottom:624.602496pt;}
.y16_c00335{bottom:624.841416pt;}
.y15_c00335{bottom:624.994032pt;}
.y14_c00335{bottom:625.155440pt;}
.y13_c00335{bottom:625.607656pt;}
.y12_c00335{bottom:625.996496pt;}
.y11_c00335{bottom:626.467312pt;}
.y10_c00335{bottom:626.586832pt;}
.yf_c00335{bottom:626.748112pt;}
.ye_c00335{bottom:626.880000pt;}
.yd_c00335{bottom:645.920000pt;}
.yc_c00335{bottom:666.102667pt;}
.yb_c00335{bottom:686.001333pt;}
.ya_c00335{bottom:706.402667pt;}
.y9_c00335{bottom:726.534667pt;}
.y8_c00335{bottom:746.454667pt;}
.y6_c00335{bottom:820.697532pt;}
.y7_c00335{bottom:820.698716pt;}
.y1_c00335{bottom:828.745333pt;}
.y4_c00335{bottom:829.685471pt;}
.y5_c00335{bottom:829.687180pt;}
.y2_c00335{bottom:830.755232pt;}
.y3_c00335{bottom:831.641408pt;}
.h3_c00335{height:21.457617pt;}
.h20_c00335{height:33.600000pt;}
.h1d_c00335{height:51.333333pt;}
.h1b_c00335{height:54.135526pt;}
.h5_c00335{height:55.066667pt;}
.h19_c00335{height:55.068897pt;}
.hb_c00335{height:56.001008pt;}
.h16_c00335{height:57.869010pt;}
.h7_c00335{height:59.733333pt;}
.h1a_c00335{height:59.735752pt;}
.h10_c00335{height:60.667759pt;}
.h13_c00335{height:60.669124pt;}
.h2_c00335{height:61.574030pt;}
.hd_c00335{height:61.601109pt;}
.h14_c00335{height:61.602495pt;}
.h8_c00335{height:62.533333pt;}
.ha_c00335{height:62.534459pt;}
.h15_c00335{height:62.535866pt;}
.h9_c00335{height:63.466667pt;}
.he_c00335{height:63.467809pt;}
.h12_c00335{height:63.469237pt;}
.hc_c00335{height:64.401159pt;}
.h11_c00335{height:64.402608pt;}
.h4_c00335{height:65.305790pt;}
.h6_c00335{height:65.333333pt;}
.hf_c00335{height:65.334509pt;}
.h18_c00335{height:65.335979pt;}
.h17_c00335{height:69.069464pt;}
.h1f_c00335{height:77.466667pt;}
.h1e_c00335{height:107.333333pt;}
.h1c_c00335{height:180.140629pt;}
.h0_c00335{height:896.400000pt;}
.h1_c00335{height:896.666667pt;}
.w0_c00335{width:618.666667pt;}
.x0_c00335{left:0.000000pt;}
.xb0_c00335{left:70.368432pt;}
.xbe_c00335{left:77.760136pt;}
.xbf_c00335{left:80.160000pt;}
.xc0_c00335{left:81.120000pt;}
.xac_c00335{left:82.925028pt;}
.x49_c00335{left:87.120523pt;}
.x50_c00335{left:93.839800pt;}
.xb8_c00335{left:104.583589pt;}
.x40_c00335{left:107.310667pt;}
.xb1_c00335{left:125.075163pt;}
.x8b_c00335{left:126.140463pt;}
.x2f_c00335{left:127.200000pt;}
.x5e_c00335{left:128.401272pt;}
.x41_c00335{left:129.292000pt;}
.x7_c00335{left:130.560000pt;}
.x77_c00335{left:140.750667pt;}
.x8f_c00335{left:143.621692pt;}
.xad_c00335{left:148.910343pt;}
.x65_c00335{left:150.642392pt;}
.xb2_c00335{left:154.851681pt;}
.x1e_c00335{left:155.760000pt;}
.x13_c00335{left:157.680000pt;}
.x7a_c00335{left:159.958497pt;}
.x88_c00335{left:161.906935pt;}
.x6f_c00335{left:164.826429pt;}
.x8_c00335{left:166.800000pt;}
.x26_c00335{left:168.720000pt;}
.x1f_c00335{left:169.920000pt;}
.x38_c00335{left:171.360000pt;}
.x58_c00335{left:172.801005pt;}
.x90_c00335{left:174.392864pt;}
.x42_c00335{left:176.092000pt;}
.x30_c00335{left:177.600000pt;}
.xb9_c00335{left:185.344567pt;}
.x66_c00335{left:186.435509pt;}
.x14_c00335{left:188.160000pt;}
.x51_c00335{left:189.601915pt;}
.x9_c00335{left:191.520000pt;}
.x5f_c00335{left:194.402315pt;}
.x20_c00335{left:195.840000pt;}
.x59_c00335{left:197.521893pt;}
.x91_c00335{left:198.593549pt;}
.x9e_c00335{left:199.517632pt;}
.xae_c00335{left:200.447512pt;}
.x7f_c00335{left:201.985669pt;}
.x31_c00335{left:204.000000pt;}
.x67_c00335{left:206.566056pt;}
.x39_c00335{left:209.520000pt;}
.x9a_c00335{left:214.180239pt;}
.x60_c00335{left:215.523075pt;}
.xba_c00335{left:220.618659pt;}
.x80_c00335{left:222.144336pt;}
.xa_c00335{left:223.680000pt;}
.x73_c00335{left:224.990800pt;}
.x92_c00335{left:226.190139pt;}
.x27_c00335{left:229.920000pt;}
.x15_c00335{left:230.880000pt;}
.xb3_c00335{left:231.884804pt;}
.xa6_c00335{left:233.326395pt;}
.x89_c00335{left:234.573652pt;}
.x84_c00335{left:235.798080pt;}
.x32_c00335{left:239.040000pt;}
.x7b_c00335{left:240.165057pt;}
.x5a_c00335{left:241.682152pt;}
.x68_c00335{left:243.551165pt;}
.x21_c00335{left:246.000000pt;}
.x28_c00335{left:247.920000pt;}
.xb_c00335{left:250.320000pt;}
.x70_c00335{left:251.669381pt;}
.x16_c00335{left:253.680000pt;}
.x52_c00335{left:254.642925pt;}
.x8c_c00335{left:257.858389pt;}
.xa4_c00335{left:262.388799pt;}
.x99_c00335{left:263.370976pt;}
.xa7_c00335{left:264.302829pt;}
.x93_c00335{left:266.078392pt;}
.x69_c00335{left:268.992347pt;}
.x78_c00335{left:270.618667pt;}
.x81_c00335{left:272.548336pt;}
.x29_c00335{left:273.840000pt;}
.x9b_c00335{left:278.966656pt;}
.xc_c00335{left:282.000000pt;}
.x17_c00335{left:287.280000pt;}
.x94_c00335{left:289.064435pt;}
.x2a_c00335{left:290.880000pt;}
.x22_c00335{left:292.800000pt;}
.x3a_c00335{left:294.720000pt;}
.x4a_c00335{left:296.402725pt;}
.xaf_c00335{left:300.512745pt;}
.x5b_c00335{left:306.003131pt;}
.xb4_c00335{left:308.283308pt;}
.x9f_c00335{left:310.857291pt;}
.x33_c00335{left:312.720000pt;}
.x9c_c00335{left:313.765096pt;}
.x74_c00335{left:314.749184pt;}
.x23_c00335{left:316.320000pt;}
.x18_c00335{left:318.000000pt;}
.x43_c00335{left:319.368000pt;}
.x7c_c00335{left:322.204915pt;}
.x4b_c00335{left:323.763709pt;}
.xa5_c00335{left:326.451433pt;}
.x53_c00335{left:328.564256pt;}
.x82_c00335{left:332.589669pt;}
.xd_c00335{left:336.480000pt;}
.x85_c00335{left:339.000617pt;}
.x5c_c00335{left:340.084355pt;}
.x8d_c00335{left:343.108663pt;}
.x61_c00335{left:345.366421pt;}
.x34_c00335{left:349.680000pt;}
.xa0_c00335{left:351.245413pt;}
.x96_c00335{left:352.479095pt;}
.x79_c00335{left:358.950667pt;}
.x19_c00335{left:360.720000pt;}
.x3b_c00335{left:363.840000pt;}
.xa8_c00335{left:367.002104pt;}
.x6a_c00335{left:368.077088pt;}
.x4c_c00335{left:370.564064pt;}
.x8e_c00335{left:372.808928pt;}
.x62_c00335{left:374.167461pt;}
.x54_c00335{left:377.524683pt;}
.x2b_c00335{left:382.080000pt;}
.x1a_c00335{left:389.040000pt;}
.xe_c00335{left:390.960000pt;}
.x75_c00335{left:392.775784pt;}
.x44_c00335{left:394.737333pt;}
.x97_c00335{left:396.635228pt;}
.x24_c00335{left:398.400000pt;}
.x2c_c00335{left:400.800000pt;}
.x3c_c00335{left:404.400000pt;}
.x95_c00335{left:405.461291pt;}
.xa1_c00335{left:407.815183pt;}
.xf_c00335{left:411.120000pt;}
.xa9_c00335{left:412.134852pt;}
.x4d_c00335{left:413.045592pt;}
.xb5_c00335{left:417.790091pt;}
.x45_c00335{left:421.638667pt;}
.xa2_c00335{left:423.720853pt;}
.x76_c00335{left:424.968541pt;}
.x3d_c00335{left:426.960000pt;}
.x7d_c00335{left:429.281649pt;}
.x63_c00335{left:430.328152pt;}
.xb6_c00335{left:431.625095pt;}
.x71_c00335{left:434.792515pt;}
.x35_c00335{left:437.520000pt;}
.x55_c00335{left:441.605661pt;}
.x6b_c00335{left:443.447307pt;}
.xaa_c00335{left:445.665773pt;}
.x46_c00335{left:447.074667pt;}
.x1b_c00335{left:449.760000pt;}
.x86_c00335{left:454.430831pt;}
.x2d_c00335{left:456.000000pt;}
.x83_c00335{left:457.869669pt;}
.x4e_c00335{left:460.565971pt;}
.x5d_c00335{left:463.447461pt;}
.x3e_c00335{left:464.640000pt;}
.x1c_c00335{left:467.520000pt;}
.x6c_c00335{left:469.609813pt;}
.x36_c00335{left:471.840000pt;}
.x64_c00335{left:473.529704pt;}
.x72_c00335{left:476.065352pt;}
.x87_c00335{left:479.674147pt;}
.x10_c00335{left:481.680000pt;}
.xbb_c00335{left:485.842997pt;}
.x47_c00335{left:486.894667pt;}
.xa3_c00335{left:488.468773pt;}
.x6d_c00335{left:489.545693pt;}
.x7e_c00335{left:491.149867pt;}
.xab_c00335{left:497.822017pt;}
.x4f_c00335{left:499.686045pt;}
.x25_c00335{left:501.360000pt;}
.xb7_c00335{left:502.859971pt;}
.xbc_c00335{left:504.559323pt;}
.x11_c00335{left:505.680000pt;}
.x37_c00335{left:510.240000pt;}
.x1d_c00335{left:512.160000pt;}
.x1_c00335{left:514.838667pt;}
.x48_c00335{left:517.378667pt;}
.xbd_c00335{left:520.389137pt;}
.x56_c00335{left:522.487240pt;}
.x12_c00335{left:527.040000pt;}
.x3f_c00335{left:528.480000pt;}
.x8a_c00335{left:531.485627pt;}
.x2e_c00335{left:535.680000pt;}
.x9d_c00335{left:537.757683pt;}
.x98_c00335{left:539.404709pt;}
.x6e_c00335{left:541.156048pt;}
.x57_c00335{left:542.167952pt;}
.x4_c00335{left:544.068601pt;}
.x2_c00335{left:573.894219pt;}
.x5_c00335{left:589.649039pt;}
.x6_c00335{left:593.007432pt;}
.x3_c00335{left:599.932155pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m148_c00336{transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.085137,-0.000681,0.002000,0.249992,0,0);-ms-transform:matrix(0.085137,-0.000681,0.002000,0.249992,0,0);-webkit-transform:matrix(0.085137,-0.000681,0.002000,0.249992,0,0);}
.m2a_c00336{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.m105_c00336{transform:matrix(0.090580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090580,0.000000,0.000000,0.250000,0,0);}
.m119_c00336{transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);}
.m10d_c00336{transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094790,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.129365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129365,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.mdd_c00336{transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{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);}
.m69_c00336{transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{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);}
.m4c_c00336{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);}
.m63_c00336{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);}
.mb1_c00336{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_c00336{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);}
.m114_c00336{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);}
.m54_c00336{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);}
.mb5_c00336{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{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);}
.m3d_c00336{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);}
.m122_c00336{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);}
.mcb_c00336{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);}
.m10c_c00336{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);}
.mdf_c00336{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{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);}
.m111_c00336{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);}
.m13c_c00336{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);}
.m15_c00336{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);}
.m6c_c00336{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);}
.m100_c00336{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);}
.mcf_c00336{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);}
.mda_c00336{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);}
.m91_c00336{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);}
.m133_c00336{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);}
.m144_c00336{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);}
.m108_c00336{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);}
.m107_c00336{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);}
.m6d_c00336{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);}
.m24_c00336{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);}
.mbc_c00336{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);}
.med_c00336{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);}
.m26_c00336{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);}
.mbd_c00336{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);}
.ma1_c00336{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);}
.m62_c00336{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_c00336{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);}
.m64_c00336{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);}
.mb6_c00336{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);}
.me1_c00336{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);}
.md5_c00336{transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160855,0.000000,0.000000,0.250000,0,0);}
.m10e_c00336{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);}
.m13a_c00336{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);}
.m23_c00336{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);}
.m2e_c00336{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);}
.ma4_c00336{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);}
.m84_c00336{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);}
.m117_c00336{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);}
.m12a_c00336{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);}
.me2_c00336{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);}
.mf8_c00336{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);}
.m98_c00336{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);}
.m8d_c00336{transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);}
.mf5_c00336{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);}
.mb2_c00336{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);}
.m4f_c00336{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);}
.m110_c00336{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);}
.me5_c00336{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);}
.m68_c00336{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);}
.m10a_c00336{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);}
.mdc_c00336{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);}
.mfa_c00336{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);}
.me6_c00336{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{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);}
.m66_c00336{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);}
.mb8_c00336{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.m113_c00336{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);}
.m10f_c00336{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);}
.m5f_c00336{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);}
.mc0_c00336{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);}
.mfc_c00336{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);}
.m11f_c00336{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);}
.m2b_c00336{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);}
.m42_c00336{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);}
.m11b_c00336{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);}
.me_c00336{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);}
.mc8_c00336{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);}
.m12c_c00336{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);}
.m123_c00336{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);}
.mc9_c00336{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);}
.m141_c00336{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);}
.mfb_c00336{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);}
.m50_c00336{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);}
.m20_c00336{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);}
.m140_c00336{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);}
.mde_c00336{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);}
.ma2_c00336{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);}
.mbe_c00336{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);}
.m8f_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);}
.me8_c00336{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);}
.m78_c00336{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);}
.m60_c00336{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);}
.md3_c00336{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);}
.m12d_c00336{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);}
.mf6_c00336{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);}
.m5a_c00336{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);}
.m104_c00336{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);}
.mb4_c00336{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);}
.mce_c00336{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);}
.m51_c00336{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);}
.m11d_c00336{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);}
.m127_c00336{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);}
.m13b_c00336{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);}
.me7_c00336{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);}
.m112_c00336{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);}
.ma7_c00336{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);}
.m142_c00336{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_c00336{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);}
.m2f_c00336{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);}
.m6a_c00336{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);}
.m43_c00336{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);}
.m3f_c00336{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);}
.m46_c00336{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);}
.m99_c00336{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);}
.m125_c00336{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);}
.m12b_c00336{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);}
.m2c_c00336{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);}
.m3a_c00336{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);}
.mc4_c00336{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);}
.m5c_c00336{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);}
.md1_c00336{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);}
.m52_c00336{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);}
.m131_c00336{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);}
.m143_c00336{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);}
.m25_c00336{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);}
.m134_c00336{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{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);}
.m9a_c00336{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);}
.m1c_c00336{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);}
.mb0_c00336{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);}
.mcc_c00336{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);}
.m9d_c00336{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);}
.m2d_c00336{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);}
.m3e_c00336{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);}
.maf_c00336{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);}
.m8c_c00336{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);}
.m6e_c00336{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);}
.mab_c00336{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);}
.m10b_c00336{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);}
.m3b_c00336{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);}
.m65_c00336{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);}
.mc3_c00336{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);}
.mea_c00336{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);}
.m3c_c00336{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);}
.m6b_c00336{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);}
.m47_c00336{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);}
.m13d_c00336{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);}
.m85_c00336{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);}
.m1d_c00336{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);}
.mf4_c00336{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);}
.m83_c00336{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);}
.mc6_c00336{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);}
.md4_c00336{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);}
.m1b_c00336{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);}
.m11_c00336{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);}
.m128_c00336{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);}
.m9f_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);}
.m137_c00336{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);}
.m126_c00336{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);}
.mb9_c00336{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);}
.m5e_c00336{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);}
.m53_c00336{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);}
.mec_c00336{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);}
.m7a_c00336{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);}
.m12_c00336{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);}
.mc1_c00336{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);}
.mc5_c00336{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);}
.m11a_c00336{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);}
.m109_c00336{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);}
.m8b_c00336{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);}
.ma6_c00336{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);}
.mdb_c00336{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);}
.mc2_c00336{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);}
.m147_c00336{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);}
.ma0_c00336{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);}
.m94_c00336{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);}
.mf3_c00336{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);}
.md7_c00336{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);}
.mac_c00336{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);}
.m82_c00336{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);}
.mf7_c00336{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);}
.mad_c00336{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);}
.mbb_c00336{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);}
.m4a_c00336{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);}
.m101_c00336{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);}
.m27_c00336{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);}
.ma8_c00336{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);}
.m6f_c00336{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);}
.mee_c00336{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);}
.m11c_c00336{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);}
.m13e_c00336{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);}
.mf_c00336{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);}
.m56_c00336{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);}
.m9c_c00336{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);}
.mb_c00336{transform:matrix(0.195719,-0.001566,0.002000,0.249992,0,0);-ms-transform:matrix(0.195719,-0.001566,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195719,-0.001566,0.002000,0.249992,0,0);}
.m29_c00336{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);}
.m28_c00336{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);}
.m35_c00336{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);}
.md0_c00336{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);}
.m90_c00336{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);}
.m49_c00336{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_c00336{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);}
.m5b_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);}
.m121_c00336{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);}
.m129_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);}
.mbf_c00336{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);}
.mb3_c00336{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);}
.m103_c00336{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);}
.m33_c00336{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);}
.md2_c00336{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);}
.m72_c00336{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);}
.mf0_c00336{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);}
.m8e_c00336{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);}
.m149_c00336{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);}
.m55_c00336{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);}
.ma5_c00336{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);}
.m130_c00336{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);}
.m40_c00336{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);}
.me3_c00336{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);}
.mf9_c00336{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);}
.m102_c00336{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);}
.m67_c00336{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);}
.m58_c00336{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);}
.mef_c00336{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);}
.m17_c00336{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);}
.m11e_c00336{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);}
.ma9_c00336{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);}
.m8_c00336{transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);}
.mcd_c00336{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);}
.meb_c00336{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);}
.me0_c00336{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);}
.m139_c00336{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);}
.md8_c00336{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);}
.m7b_c00336{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);}
.m145_c00336{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);}
.m1f_c00336{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);}
.m12f_c00336{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);}
.md9_c00336{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);}
.mba_c00336{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);}
.m36_c00336{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);}
.m13_c00336{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);}
.m120_c00336{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);}
.m10_c00336{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);}
.m115_c00336{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);}
.m38_c00336{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);}
.m7c_c00336{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);}
.m135_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);}
.m138_c00336{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);}
.md6_c00336{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);}
.m93_c00336{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);}
.mb7_c00336{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);}
.m48_c00336{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);}
.m14_c00336{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);}
.mf1_c00336{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);}
.m32_c00336{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);}
.m12e_c00336{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);}
.mca_c00336{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);}
.m4b_c00336{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);}
.me9_c00336{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);}
.mc7_c00336{transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{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);}
.m116_c00336{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);}
.m9e_c00336{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);}
.m4e_c00336{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);}
.mfd_c00336{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);}
.m118_c00336{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);}
.m6_c00336{transform:matrix(0.217083,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217083,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217083,-0.001737,0.002000,0.249992,0,0);}
.m37_c00336{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);}
.ma3_c00336{transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{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);}
.m4d_c00336{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);}
.m92_c00336{transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);}
.me4_c00336{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);}
.m61_c00336{transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{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);}
.m74_c00336{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);}
.m45_c00336{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);}
.m19_c00336{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);}
.mff_c00336{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);}
.m77_c00336{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);}
.m136_c00336{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);}
.m1a_c00336{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{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);}
.m106_c00336{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);}
.mfe_c00336{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);}
.ma_c00336{transform:matrix(0.235937,-0.001887,0.002000,0.249992,0,0);-ms-transform:matrix(0.235937,-0.001887,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235937,-0.001887,0.002000,0.249992,0,0);}
.mae_c00336{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m124_c00336{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);}
.mf2_c00336{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m132_c00336{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.md_c00336{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);}
.m146_c00336{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);}
.m41_c00336{transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.279271,-0.002234,0.002000,0.249992,0,0);-ms-transform:matrix(0.279271,-0.002234,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279271,-0.002234,0.002000,0.249992,0,0);}
.m4_c00336{transform:matrix(0.279676,-0.002237,0.002000,0.249992,0,0);-ms-transform:matrix(0.279676,-0.002237,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279676,-0.002237,0.002000,0.249992,0,0);}
.m9_c00336{transform:matrix(0.286081,-0.002289,0.002000,0.249992,0,0);-ms-transform:matrix(0.286081,-0.002289,0.002000,0.249992,0,0);-webkit-transform:matrix(0.286081,-0.002289,0.002000,0.249992,0,0);}
.m5_c00336{transform:matrix(0.289301,-0.002314,0.002000,0.249992,0,0);-ms-transform:matrix(0.289301,-0.002314,0.002000,0.249992,0,0);-webkit-transform:matrix(0.289301,-0.002314,0.002000,0.249992,0,0);}
.m3_c00336{transform:matrix(0.298745,-0.002390,0.002000,0.249992,0,0);-ms-transform:matrix(0.298745,-0.002390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.298745,-0.002390,0.002000,0.249992,0,0);}
.m22_c00336{transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303015,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{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);}
.m71_c00336{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);}
.m88_c00336{transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.328960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328960,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.345805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345805,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.352415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352415,0.000000,0.000000,0.250000,0,0);}
.m87_c00336{transform:matrix(0.368675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368675,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.403130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403130,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403715,0.000000,0.000000,0.250000,0,0);}
.m13f_c00336{transform:matrix(0.410360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410360,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.447986,-0.003584,0.002000,0.249992,0,0);-ms-transform:matrix(0.447986,-0.003584,0.002000,0.249992,0,0);-webkit-transform:matrix(0.447986,-0.003584,0.002000,0.249992,0,0);}
.m8a_c00336{transform:matrix(0.503295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503295,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.515094,-0.004121,0.002000,0.249992,0,0);-ms-transform:matrix(0.515094,-0.004121,0.002000,0.249992,0,0);-webkit-transform:matrix(0.515094,-0.004121,0.002000,0.249992,0,0);}
.m75_c00336{transform:matrix(0.718630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718630,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.795920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795920,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.837480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837480,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;}
.fs3_c00336{font-size:22.050000px;}
.fsa_c00336{font-size:31.500000px;}
.fs7_c00336{font-size:66.150000px;}
.fs4_c00336{font-size:68.250000px;}
.fs5_c00336{font-size:69.300000px;}
.fs9_c00336{font-size:70.350000px;}
.fs6_c00336{font-size:71.400000px;}
.fs8_c00336{font-size:72.450000px;}
.fs1_c00336{font-size:80.852587px;}
.fs0_c00336{font-size:124.953998px;}
.fs2_c00336{font-size:129.154133px;}
.y0_c00336{bottom:0.000000px;}
.y2c_c00336{bottom:102.463500px;}
.y2b_c00336{bottom:170.695500px;}
.y2a_c00336{bottom:194.187000px;}
.y29_c00336{bottom:216.606000px;}
.y28_c00336{bottom:239.014500px;}
.y27_c00336{bottom:261.693000px;}
.y26_c00336{bottom:284.164500px;}
.y25_c00336{bottom:307.413000px;}
.y24_c00336{bottom:330.042000px;}
.y23_c00336{bottom:352.984500px;}
.y22_c00336{bottom:375.637500px;}
.y21_c00336{bottom:398.344500px;}
.y20_c00336{bottom:421.293000px;}
.y1f_c00336{bottom:443.946000px;}
.y1e_c00336{bottom:466.896000px;}
.y1d_c00336{bottom:489.574500px;}
.y1c_c00336{bottom:512.523000px;}
.y1b_c00336{bottom:534.963000px;}
.y1a_c00336{bottom:558.174000px;}
.y19_c00336{bottom:580.278000px;}
.y18_c00336{bottom:603.721500px;}
.y17_c00336{bottom:626.614500px;}
.y16_c00336{bottom:649.111500px;}
.y15_c00336{bottom:671.773500px;}
.y14_c00336{bottom:694.723500px;}
.y13_c00336{bottom:717.673500px;}
.y12_c00336{bottom:741.151500px;}
.y11_c00336{bottom:763.843500px;}
.y10_c00336{bottom:786.265500px;}
.yf_c00336{bottom:809.314500px;}
.ye_c00336{bottom:831.963000px;}
.yd_c00336{bottom:859.272000px;}
.yb_c00336{bottom:877.316328px;}
.yc_c00336{bottom:877.316760px;}
.ya_c00336{bottom:877.317024px;}
.y8_c00336{bottom:901.529328px;}
.y9_c00336{bottom:901.529868px;}
.y1_c00336{bottom:918.000000px;}
.y2_c00336{bottom:919.250052px;}
.y3_c00336{bottom:919.658328px;}
.y4_c00336{bottom:920.580648px;}
.y5_c00336{bottom:921.099096px;}
.y6_c00336{bottom:921.591468px;}
.y7_c00336{bottom:922.086072px;}
.h5_c00336{height:22.050000px;}
.hc_c00336{height:31.500000px;}
.h9_c00336{height:66.150000px;}
.h6_c00336{height:68.250000px;}
.h7_c00336{height:69.300000px;}
.hb_c00336{height:70.350000px;}
.h8_c00336{height:71.400000px;}
.ha_c00336{height:72.450000px;}
.h3_c00336{height:80.852587px;}
.h2_c00336{height:124.953998px;}
.h4_c00336{height:129.154133px;}
.h1_c00336{height:1005.000000px;}
.h0_c00336{height:1005.150000px;}
.w0_c00336{width:702.540000px;}
.w1_c00336{width:702.750000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:34.338000px;}
.x8_c00336{left:36.448392px;}
.x30_c00336{left:39.690000px;}
.x22_c00336{left:45.900000px;}
.x9_c00336{left:48.329148px;}
.x38_c00336{left:75.870000px;}
.x44_c00336{left:80.730000px;}
.xe_c00336{left:82.080000px;}
.x19_c00336{left:83.430000px;}
.x80_c00336{left:84.510000px;}
.x92_c00336{left:86.400000px;}
.x5c_c00336{left:90.720000px;}
.xf_c00336{left:103.680000px;}
.x23_c00336{left:105.300000px;}
.x6c_c00336{left:106.380000px;}
.x72_c00336{left:108.540000px;}
.x59_c00336{left:111.780000px;}
.x2c_c00336{left:113.400000px;}
.xa7_c00336{left:115.020000px;}
.x85_c00336{left:118.530000px;}
.x3e_c00336{left:122.310000px;}
.x1a_c00336{left:123.660000px;}
.x31_c00336{left:125.820000px;}
.x10_c00336{left:127.980000px;}
.x64_c00336{left:130.410000px;}
.xb0_c00336{left:133.650000px;}
.x73_c00336{left:135.540000px;}
.x55_c00336{left:137.430000px;}
.x45_c00336{left:138.780000px;}
.x3f_c00336{left:140.400000px;}
.x4d_c00336{left:142.290000px;}
.x93_c00336{left:144.990000px;}
.x9b_c00336{left:146.610000px;}
.x5d_c00336{left:147.690000px;}
.x89_c00336{left:150.120000px;}
.xa2_c00336{left:151.470000px;}
.x7b_c00336{left:152.550000px;}
.xa8_c00336{left:153.630000px;}
.x46_c00336{left:160.110000px;}
.xbc_c00336{left:161.730000px;}
.x24_c00336{left:163.080000px;}
.x6d_c00336{left:165.240000px;}
.x65_c00336{left:168.480000px;}
.x7c_c00336{left:171.180000px;}
.x5a_c00336{left:173.070000px;}
.x5e_c00336{left:175.230000px;}
.xa3_c00336{left:176.850000px;}
.x40_c00336{left:181.170000px;}
.x47_c00336{left:182.790000px;}
.x8e_c00336{left:184.410000px;}
.x32_c00336{left:189.540000px;}
.x2_c00336{left:190.594500px;}
.x97_c00336{left:193.050000px;}
.x2d_c00336{left:194.400000px;}
.x1b_c00336{left:197.100000px;}
.xa_c00336{left:200.614584px;}
.x11_c00336{left:203.850000px;}
.x25_c00336{left:207.630000px;}
.x5f_c00336{left:209.520000px;}
.x9c_c00336{left:210.870000px;}
.x4e_c00336{left:212.220000px;}
.x74_c00336{left:213.840000px;}
.x48_c00336{left:214.920000px;}
.x81_c00336{left:216.810000px;}
.xb5_c00336{left:217.890000px;}
.x1c_c00336{left:218.970000px;}
.x26_c00336{left:228.150000px;}
.x8f_c00336{left:229.770000px;}
.xb1_c00336{left:230.850000px;}
.x33_c00336{left:232.470000px;}
.x75_c00336{left:233.550000px;}
.xb6_c00336{left:237.600000px;}
.x39_c00336{left:239.220000px;}
.x3_c00336{left:241.629000px;}
.xa4_c00336{left:243.810000px;}
.xad_c00336{left:246.510000px;}
.x9d_c00336{left:248.400000px;}
.x86_c00336{left:251.370000px;}
.x12_c00336{left:252.720000px;}
.x98_c00336{left:253.800000px;}
.x60_c00336{left:255.960000px;}
.x4f_c00336{left:257.040000px;}
.xb2_c00336{left:258.390000px;}
.xa9_c00336{left:264.330000px;}
.x6e_c00336{left:265.680000px;}
.x8a_c00336{left:266.760000px;}
.x66_c00336{left:269.460000px;}
.x7d_c00336{left:270.810000px;}
.x13_c00336{left:273.240000px;}
.x61_c00336{left:280.800000px;}
.x82_c00336{left:284.040000px;}
.x1d_c00336{left:285.930000px;}
.x90_c00336{left:287.820000px;}
.x50_c00336{left:290.250000px;}
.x2e_c00336{left:292.140000px;}
.x27_c00336{left:298.080000px;}
.x3a_c00336{left:300.240000px;}
.x56_c00336{left:303.210000px;}
.x14_c00336{left:304.290000px;}
.x67_c00336{left:305.370000px;}
.x94_c00336{left:309.960000px;}
.x41_c00336{left:311.310000px;}
.x83_c00336{left:314.010000px;}
.x87_c00336{left:317.250000px;}
.xb7_c00336{left:318.330000px;}
.x91_c00336{left:320.760000px;}
.xb_c00336{left:321.847848px;}
.x8b_c00336{left:323.190000px;}
.x49_c00336{left:327.240000px;}
.x57_c00336{left:329.130000px;}
.x3b_c00336{left:331.020000px;}
.x1e_c00336{left:333.180000px;}
.x2f_c00336{left:334.260000px;}
.x34_c00336{left:338.040000px;}
.x42_c00336{left:340.200000px;}
.x51_c00336{left:343.980000px;}
.x28_c00336{left:345.600000px;}
.x76_c00336{left:347.760000px;}
.x95_c00336{left:352.350000px;}
.x84_c00336{left:354.240000px;}
.x4_c00336{left:356.919000px;}
.x9e_c00336{left:359.370000px;}
.x29_c00336{left:364.230000px;}
.x35_c00336{left:370.170000px;}
.x8c_c00336{left:371.520000px;}
.x99_c00336{left:373.140000px;}
.x6f_c00336{left:374.220000px;}
.xaa_c00336{left:377.190000px;}
.x68_c00336{left:380.160000px;}
.x96_c00336{left:381.510000px;}
.x52_c00336{left:383.130000px;}
.xb8_c00336{left:387.450000px;}
.xb3_c00336{left:390.960000px;}
.x88_c00336{left:392.040000px;}
.x15_c00336{left:393.660000px;}
.x2a_c00336{left:394.740000px;}
.x77_c00336{left:397.980000px;}
.x53_c00336{left:402.840000px;}
.x70_c00336{left:407.700000px;}
.x69_c00336{left:409.590000px;}
.x4a_c00336{left:416.340000px;}
.x8d_c00336{left:417.420000px;}
.x5b_c00336{left:419.040000px;}
.x5_c00336{left:421.725000px;}
.x16_c00336{left:425.520000px;}
.x78_c00336{left:432.270000px;}
.x62_c00336{left:434.970000px;}
.x7e_c00336{left:437.400000px;}
.xae_c00336{left:440.100000px;}
.x43_c00336{left:441.990000px;}
.x9f_c00336{left:443.880000px;}
.x1f_c00336{left:444.960000px;}
.xab_c00336{left:451.980000px;}
.x36_c00336{left:453.060000px;}
.xa5_c00336{left:459.540000px;}
.x63_c00336{left:460.890000px;}
.x79_c00336{left:462.240000px;}
.x9a_c00336{left:464.130000px;}
.x54_c00336{left:468.720000px;}
.xac_c00336{left:470.340000px;}
.x58_c00336{left:473.310000px;}
.xb9_c00336{left:474.390000px;}
.x37_c00336{left:476.550000px;}
.x17_c00336{left:477.900000px;}
.x6_c00336{left:483.271500px;}
.xa0_c00336{left:487.350000px;}
.x6a_c00336{left:488.970000px;}
.x4b_c00336{left:491.130000px;}
.x3c_c00336{left:492.210000px;}
.xba_c00336{left:498.420000px;}
.x2b_c00336{left:503.280000px;}
.x18_c00336{left:506.790000px;}
.x4c_c00336{left:508.680000px;}
.x20_c00336{left:510.030000px;}
.xb4_c00336{left:511.110000px;}
.x7f_c00336{left:514.620000px;}
.xa1_c00336{left:517.050000px;}
.x7a_c00336{left:518.670000px;}
.xaf_c00336{left:523.800000px;}
.xc_c00336{left:525.164856px;}
.xd_c00336{left:527.040000px;}
.x71_c00336{left:530.820000px;}
.x21_c00336{left:532.440000px;}
.x3d_c00336{left:536.490000px;}
.xa6_c00336{left:543.510000px;}
.x7_c00336{left:545.097000px;}
.x6b_c00336{left:547.560000px;}
.xbb_c00336{left:548.910000px;}
.xbd_c00336{left:553.230000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fs3_c00336{font-size:19.600000pt;}
.fsa_c00336{font-size:28.000000pt;}
.fs7_c00336{font-size:58.800000pt;}
.fs4_c00336{font-size:60.666667pt;}
.fs5_c00336{font-size:61.600000pt;}
.fs9_c00336{font-size:62.533333pt;}
.fs6_c00336{font-size:63.466667pt;}
.fs8_c00336{font-size:64.400000pt;}
.fs1_c00336{font-size:71.868966pt;}
.fs0_c00336{font-size:111.070221pt;}
.fs2_c00336{font-size:114.803674pt;}
.y0_c00336{bottom:0.000000pt;}
.y2c_c00336{bottom:91.078667pt;}
.y2b_c00336{bottom:151.729333pt;}
.y2a_c00336{bottom:172.610667pt;}
.y29_c00336{bottom:192.538667pt;}
.y28_c00336{bottom:212.457333pt;}
.y27_c00336{bottom:232.616000pt;}
.y26_c00336{bottom:252.590667pt;}
.y25_c00336{bottom:273.256000pt;}
.y24_c00336{bottom:293.370667pt;}
.y23_c00336{bottom:313.764000pt;}
.y22_c00336{bottom:333.900000pt;}
.y21_c00336{bottom:354.084000pt;}
.y20_c00336{bottom:374.482667pt;}
.y1f_c00336{bottom:394.618667pt;}
.y1e_c00336{bottom:415.018667pt;}
.y1d_c00336{bottom:435.177333pt;}
.y1c_c00336{bottom:455.576000pt;}
.y1b_c00336{bottom:475.522667pt;}
.y1a_c00336{bottom:496.154667pt;}
.y19_c00336{bottom:515.802667pt;}
.y18_c00336{bottom:536.641333pt;}
.y17_c00336{bottom:556.990667pt;}
.y16_c00336{bottom:576.988000pt;}
.y15_c00336{bottom:597.132000pt;}
.y14_c00336{bottom:617.532000pt;}
.y13_c00336{bottom:637.932000pt;}
.y12_c00336{bottom:658.801333pt;}
.y11_c00336{bottom:678.972000pt;}
.y10_c00336{bottom:698.902667pt;}
.yf_c00336{bottom:719.390667pt;}
.ye_c00336{bottom:739.522667pt;}
.yd_c00336{bottom:763.797333pt;}
.yb_c00336{bottom:779.836736pt;}
.yc_c00336{bottom:779.837120pt;}
.ya_c00336{bottom:779.837355pt;}
.y8_c00336{bottom:801.359403pt;}
.y9_c00336{bottom:801.359883pt;}
.y1_c00336{bottom:816.000000pt;}
.y2_c00336{bottom:817.111157pt;}
.y3_c00336{bottom:817.474069pt;}
.y4_c00336{bottom:818.293909pt;}
.y5_c00336{bottom:818.754752pt;}
.y6_c00336{bottom:819.192416pt;}
.y7_c00336{bottom:819.632064pt;}
.h5_c00336{height:19.600000pt;}
.hc_c00336{height:28.000000pt;}
.h9_c00336{height:58.800000pt;}
.h6_c00336{height:60.666667pt;}
.h7_c00336{height:61.600000pt;}
.hb_c00336{height:62.533333pt;}
.h8_c00336{height:63.466667pt;}
.ha_c00336{height:64.400000pt;}
.h3_c00336{height:71.868966pt;}
.h2_c00336{height:111.070221pt;}
.h4_c00336{height:114.803674pt;}
.h1_c00336{height:893.333333pt;}
.h0_c00336{height:893.466667pt;}
.w0_c00336{width:624.480000pt;}
.w1_c00336{width:624.666667pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:30.522667pt;}
.x8_c00336{left:32.398571pt;}
.x30_c00336{left:35.280000pt;}
.x22_c00336{left:40.800000pt;}
.x9_c00336{left:42.959243pt;}
.x38_c00336{left:67.440000pt;}
.x44_c00336{left:71.760000pt;}
.xe_c00336{left:72.960000pt;}
.x19_c00336{left:74.160000pt;}
.x80_c00336{left:75.120000pt;}
.x92_c00336{left:76.800000pt;}
.x5c_c00336{left:80.640000pt;}
.xf_c00336{left:92.160000pt;}
.x23_c00336{left:93.600000pt;}
.x6c_c00336{left:94.560000pt;}
.x72_c00336{left:96.480000pt;}
.x59_c00336{left:99.360000pt;}
.x2c_c00336{left:100.800000pt;}
.xa7_c00336{left:102.240000pt;}
.x85_c00336{left:105.360000pt;}
.x3e_c00336{left:108.720000pt;}
.x1a_c00336{left:109.920000pt;}
.x31_c00336{left:111.840000pt;}
.x10_c00336{left:113.760000pt;}
.x64_c00336{left:115.920000pt;}
.xb0_c00336{left:118.800000pt;}
.x73_c00336{left:120.480000pt;}
.x55_c00336{left:122.160000pt;}
.x45_c00336{left:123.360000pt;}
.x3f_c00336{left:124.800000pt;}
.x4d_c00336{left:126.480000pt;}
.x93_c00336{left:128.880000pt;}
.x9b_c00336{left:130.320000pt;}
.x5d_c00336{left:131.280000pt;}
.x89_c00336{left:133.440000pt;}
.xa2_c00336{left:134.640000pt;}
.x7b_c00336{left:135.600000pt;}
.xa8_c00336{left:136.560000pt;}
.x46_c00336{left:142.320000pt;}
.xbc_c00336{left:143.760000pt;}
.x24_c00336{left:144.960000pt;}
.x6d_c00336{left:146.880000pt;}
.x65_c00336{left:149.760000pt;}
.x7c_c00336{left:152.160000pt;}
.x5a_c00336{left:153.840000pt;}
.x5e_c00336{left:155.760000pt;}
.xa3_c00336{left:157.200000pt;}
.x40_c00336{left:161.040000pt;}
.x47_c00336{left:162.480000pt;}
.x8e_c00336{left:163.920000pt;}
.x32_c00336{left:168.480000pt;}
.x2_c00336{left:169.417333pt;}
.x97_c00336{left:171.600000pt;}
.x2d_c00336{left:172.800000pt;}
.x1b_c00336{left:175.200000pt;}
.xa_c00336{left:178.324075pt;}
.x11_c00336{left:181.200000pt;}
.x25_c00336{left:184.560000pt;}
.x5f_c00336{left:186.240000pt;}
.x9c_c00336{left:187.440000pt;}
.x4e_c00336{left:188.640000pt;}
.x74_c00336{left:190.080000pt;}
.x48_c00336{left:191.040000pt;}
.x81_c00336{left:192.720000pt;}
.xb5_c00336{left:193.680000pt;}
.x1c_c00336{left:194.640000pt;}
.x26_c00336{left:202.800000pt;}
.x8f_c00336{left:204.240000pt;}
.xb1_c00336{left:205.200000pt;}
.x33_c00336{left:206.640000pt;}
.x75_c00336{left:207.600000pt;}
.xb6_c00336{left:211.200000pt;}
.x39_c00336{left:212.640000pt;}
.x3_c00336{left:214.781333pt;}
.xa4_c00336{left:216.720000pt;}
.xad_c00336{left:219.120000pt;}
.x9d_c00336{left:220.800000pt;}
.x86_c00336{left:223.440000pt;}
.x12_c00336{left:224.640000pt;}
.x98_c00336{left:225.600000pt;}
.x60_c00336{left:227.520000pt;}
.x4f_c00336{left:228.480000pt;}
.xb2_c00336{left:229.680000pt;}
.xa9_c00336{left:234.960000pt;}
.x6e_c00336{left:236.160000pt;}
.x8a_c00336{left:237.120000pt;}
.x66_c00336{left:239.520000pt;}
.x7d_c00336{left:240.720000pt;}
.x13_c00336{left:242.880000pt;}
.x61_c00336{left:249.600000pt;}
.x82_c00336{left:252.480000pt;}
.x1d_c00336{left:254.160000pt;}
.x90_c00336{left:255.840000pt;}
.x50_c00336{left:258.000000pt;}
.x2e_c00336{left:259.680000pt;}
.x27_c00336{left:264.960000pt;}
.x3a_c00336{left:266.880000pt;}
.x56_c00336{left:269.520000pt;}
.x14_c00336{left:270.480000pt;}
.x67_c00336{left:271.440000pt;}
.x94_c00336{left:275.520000pt;}
.x41_c00336{left:276.720000pt;}
.x83_c00336{left:279.120000pt;}
.x87_c00336{left:282.000000pt;}
.xb7_c00336{left:282.960000pt;}
.x91_c00336{left:285.120000pt;}
.xb_c00336{left:286.086976pt;}
.x8b_c00336{left:287.280000pt;}
.x49_c00336{left:290.880000pt;}
.x57_c00336{left:292.560000pt;}
.x3b_c00336{left:294.240000pt;}
.x1e_c00336{left:296.160000pt;}
.x2f_c00336{left:297.120000pt;}
.x34_c00336{left:300.480000pt;}
.x42_c00336{left:302.400000pt;}
.x51_c00336{left:305.760000pt;}
.x28_c00336{left:307.200000pt;}
.x76_c00336{left:309.120000pt;}
.x95_c00336{left:313.200000pt;}
.x84_c00336{left:314.880000pt;}
.x4_c00336{left:317.261333pt;}
.x9e_c00336{left:319.440000pt;}
.x29_c00336{left:323.760000pt;}
.x35_c00336{left:329.040000pt;}
.x8c_c00336{left:330.240000pt;}
.x99_c00336{left:331.680000pt;}
.x6f_c00336{left:332.640000pt;}
.xaa_c00336{left:335.280000pt;}
.x68_c00336{left:337.920000pt;}
.x96_c00336{left:339.120000pt;}
.x52_c00336{left:340.560000pt;}
.xb8_c00336{left:344.400000pt;}
.xb3_c00336{left:347.520000pt;}
.x88_c00336{left:348.480000pt;}
.x15_c00336{left:349.920000pt;}
.x2a_c00336{left:350.880000pt;}
.x77_c00336{left:353.760000pt;}
.x53_c00336{left:358.080000pt;}
.x70_c00336{left:362.400000pt;}
.x69_c00336{left:364.080000pt;}
.x4a_c00336{left:370.080000pt;}
.x8d_c00336{left:371.040000pt;}
.x5b_c00336{left:372.480000pt;}
.x5_c00336{left:374.866667pt;}
.x16_c00336{left:378.240000pt;}
.x78_c00336{left:384.240000pt;}
.x62_c00336{left:386.640000pt;}
.x7e_c00336{left:388.800000pt;}
.xae_c00336{left:391.200000pt;}
.x43_c00336{left:392.880000pt;}
.x9f_c00336{left:394.560000pt;}
.x1f_c00336{left:395.520000pt;}
.xab_c00336{left:401.760000pt;}
.x36_c00336{left:402.720000pt;}
.xa5_c00336{left:408.480000pt;}
.x63_c00336{left:409.680000pt;}
.x79_c00336{left:410.880000pt;}
.x9a_c00336{left:412.560000pt;}
.x54_c00336{left:416.640000pt;}
.xac_c00336{left:418.080000pt;}
.x58_c00336{left:420.720000pt;}
.xb9_c00336{left:421.680000pt;}
.x37_c00336{left:423.600000pt;}
.x17_c00336{left:424.800000pt;}
.x6_c00336{left:429.574667pt;}
.xa0_c00336{left:433.200000pt;}
.x6a_c00336{left:434.640000pt;}
.x4b_c00336{left:436.560000pt;}
.x3c_c00336{left:437.520000pt;}
.xba_c00336{left:443.040000pt;}
.x2b_c00336{left:447.360000pt;}
.x18_c00336{left:450.480000pt;}
.x4c_c00336{left:452.160000pt;}
.x20_c00336{left:453.360000pt;}
.xb4_c00336{left:454.320000pt;}
.x7f_c00336{left:457.440000pt;}
.xa1_c00336{left:459.600000pt;}
.x7a_c00336{left:461.040000pt;}
.xaf_c00336{left:465.600000pt;}
.xc_c00336{left:466.813205pt;}
.xd_c00336{left:468.480000pt;}
.x71_c00336{left:471.840000pt;}
.x21_c00336{left:473.280000pt;}
.x3d_c00336{left:476.880000pt;}
.xa6_c00336{left:483.120000pt;}
.x7_c00336{left:484.530667pt;}
.x6b_c00336{left:486.720000pt;}
.xbb_c00336{left:487.920000pt;}
.xbd_c00336{left:491.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_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_4ab86c84425994a9e06b01c2.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;}
.m93_c00337{transform:matrix(0.022377,-0.000336,0.003750,0.249972,0,0);-ms-transform:matrix(0.022377,-0.000336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.022377,-0.000336,0.003750,0.249972,0,0);}
.m110_c00337{transform:matrix(0.058363,-0.000875,0.003750,0.249972,0,0);-ms-transform:matrix(0.058363,-0.000875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.058363,-0.000875,0.003750,0.249972,0,0);}
.m2_c00337{transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);}
.m15b_c00337{transform:matrix(0.094049,-0.001411,0.003750,0.249972,0,0);-ms-transform:matrix(0.094049,-0.001411,0.003750,0.249972,0,0);-webkit-transform:matrix(0.094049,-0.001411,0.003750,0.249972,0,0);}
.mf_c00337{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);}
.me5_c00337{transform:matrix(0.113497,-0.001702,0.003750,0.249972,0,0);-ms-transform:matrix(0.113497,-0.001702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.113497,-0.001702,0.003750,0.249972,0,0);}
.m130_c00337{transform:matrix(0.123891,-0.001858,0.003750,0.249972,0,0);-ms-transform:matrix(0.123891,-0.001858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.123891,-0.001858,0.003750,0.249972,0,0);}
.mf8_c00337{transform:matrix(0.136510,-0.002048,0.003750,0.249972,0,0);-ms-transform:matrix(0.136510,-0.002048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136510,-0.002048,0.003750,0.249972,0,0);}
.m103_c00337{transform:matrix(0.141249,-0.002119,0.003750,0.249972,0,0);-ms-transform:matrix(0.141249,-0.002119,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141249,-0.002119,0.003750,0.249972,0,0);}
.m5c_c00337{transform:matrix(0.141394,-0.002121,0.003750,0.249972,0,0);-ms-transform:matrix(0.141394,-0.002121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141394,-0.002121,0.003750,0.249972,0,0);}
.m85_c00337{transform:matrix(0.143309,-0.002150,0.003750,0.249972,0,0);-ms-transform:matrix(0.143309,-0.002150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143309,-0.002150,0.003750,0.249972,0,0);}
.m12c_c00337{transform:matrix(0.143334,-0.002150,0.003750,0.249972,0,0);-ms-transform:matrix(0.143334,-0.002150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143334,-0.002150,0.003750,0.249972,0,0);}
.m4b_c00337{transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);-ms-transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144704,-0.002171,0.003750,0.249972,0,0);}
.mdb_c00337{transform:matrix(0.145109,-0.002177,0.003750,0.249972,0,0);-ms-transform:matrix(0.145109,-0.002177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145109,-0.002177,0.003750,0.249972,0,0);}
.m10f_c00337{transform:matrix(0.146509,-0.002198,0.003750,0.249972,0,0);-ms-transform:matrix(0.146509,-0.002198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146509,-0.002198,0.003750,0.249972,0,0);}
.mde_c00337{transform:matrix(0.147163,-0.002207,0.003750,0.249972,0,0);-ms-transform:matrix(0.147163,-0.002207,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147163,-0.002207,0.003750,0.249972,0,0);}
.m5e_c00337{transform:matrix(0.147753,-0.002216,0.003750,0.249972,0,0);-ms-transform:matrix(0.147753,-0.002216,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147753,-0.002216,0.003750,0.249972,0,0);}
.m11b_c00337{transform:matrix(0.148848,-0.002233,0.003750,0.249972,0,0);-ms-transform:matrix(0.148848,-0.002233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148848,-0.002233,0.003750,0.249972,0,0);}
.md4_c00337{transform:matrix(0.149568,-0.002244,0.003750,0.249972,0,0);-ms-transform:matrix(0.149568,-0.002244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149568,-0.002244,0.003750,0.249972,0,0);}
.m14b_c00337{transform:matrix(0.149573,-0.002244,0.003750,0.249972,0,0);-ms-transform:matrix(0.149573,-0.002244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149573,-0.002244,0.003750,0.249972,0,0);}
.mb_c00337{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);}
.mb7_c00337{transform:matrix(0.151993,-0.002280,0.003750,0.249972,0,0);-ms-transform:matrix(0.151993,-0.002280,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151993,-0.002280,0.003750,0.249972,0,0);}
.ma2_c00337{transform:matrix(0.152178,-0.002283,0.003750,0.249972,0,0);-ms-transform:matrix(0.152178,-0.002283,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152178,-0.002283,0.003750,0.249972,0,0);}
.m96_c00337{transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);-ms-transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);}
.md8_c00337{transform:matrix(0.153078,-0.002296,0.003750,0.249972,0,0);-ms-transform:matrix(0.153078,-0.002296,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153078,-0.002296,0.003750,0.249972,0,0);}
.m57_c00337{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);}
.mff_c00337{transform:matrix(0.154268,-0.002314,0.003750,0.249972,0,0);-ms-transform:matrix(0.154268,-0.002314,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154268,-0.002314,0.003750,0.249972,0,0);}
.mbc_c00337{transform:matrix(0.154273,-0.002314,0.003750,0.249972,0,0);-ms-transform:matrix(0.154273,-0.002314,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154273,-0.002314,0.003750,0.249972,0,0);}
.m89_c00337{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);}
.m13c_c00337{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);}
.m45_c00337{transform:matrix(0.155932,-0.002339,0.003750,0.249972,0,0);-ms-transform:matrix(0.155932,-0.002339,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155932,-0.002339,0.003750,0.249972,0,0);}
.mb3_c00337{transform:matrix(0.156372,-0.002346,0.003750,0.249972,0,0);-ms-transform:matrix(0.156372,-0.002346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156372,-0.002346,0.003750,0.249972,0,0);}
.m51_c00337{transform:matrix(0.156582,-0.002349,0.003750,0.249972,0,0);-ms-transform:matrix(0.156582,-0.002349,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156582,-0.002349,0.003750,0.249972,0,0);}
.md7_c00337{transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);-ms-transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);}
.m8b_c00337{transform:matrix(0.157012,-0.002355,0.003750,0.249972,0,0);-ms-transform:matrix(0.157012,-0.002355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157012,-0.002355,0.003750,0.249972,0,0);}
.md3_c00337{transform:matrix(0.157047,-0.002356,0.003750,0.249972,0,0);-ms-transform:matrix(0.157047,-0.002356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157047,-0.002356,0.003750,0.249972,0,0);}
.m36_c00337{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);}
.m59_c00337{transform:matrix(0.157647,-0.002365,0.003750,0.249972,0,0);-ms-transform:matrix(0.157647,-0.002365,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157647,-0.002365,0.003750,0.249972,0,0);}
.meb_c00337{transform:matrix(0.157927,-0.002369,0.003750,0.249972,0,0);-ms-transform:matrix(0.157927,-0.002369,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157927,-0.002369,0.003750,0.249972,0,0);}
.mf7_c00337{transform:matrix(0.158092,-0.002371,0.003750,0.249972,0,0);-ms-transform:matrix(0.158092,-0.002371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158092,-0.002371,0.003750,0.249972,0,0);}
.m3e_c00337{transform:matrix(0.158442,-0.002377,0.003750,0.249972,0,0);-ms-transform:matrix(0.158442,-0.002377,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158442,-0.002377,0.003750,0.249972,0,0);}
.m44_c00337{transform:matrix(0.159007,-0.002385,0.003750,0.249972,0,0);-ms-transform:matrix(0.159007,-0.002385,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159007,-0.002385,0.003750,0.249972,0,0);}
.m4a_c00337{transform:matrix(0.159962,-0.002399,0.003750,0.249972,0,0);-ms-transform:matrix(0.159962,-0.002399,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159962,-0.002399,0.003750,0.249972,0,0);}
.mc5_c00337{transform:matrix(0.160547,-0.002408,0.003750,0.249972,0,0);-ms-transform:matrix(0.160547,-0.002408,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160547,-0.002408,0.003750,0.249972,0,0);}
.med_c00337{transform:matrix(0.161257,-0.002419,0.003750,0.249972,0,0);-ms-transform:matrix(0.161257,-0.002419,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161257,-0.002419,0.003750,0.249972,0,0);}
.mc4_c00337{transform:matrix(0.161327,-0.002420,0.003750,0.249972,0,0);-ms-transform:matrix(0.161327,-0.002420,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161327,-0.002420,0.003750,0.249972,0,0);}
.mce_c00337{transform:matrix(0.161982,-0.002430,0.003750,0.249972,0,0);-ms-transform:matrix(0.161982,-0.002430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161982,-0.002430,0.003750,0.249972,0,0);}
.mc0_c00337{transform:matrix(0.162207,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162207,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162207,-0.002433,0.003750,0.249972,0,0);}
.m155_c00337{transform:matrix(0.162387,-0.002436,0.003750,0.249972,0,0);-ms-transform:matrix(0.162387,-0.002436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162387,-0.002436,0.003750,0.249972,0,0);}
.mad_c00337{transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);-ms-transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162997,-0.002445,0.003750,0.249972,0,0);}
.me3_c00337{transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);-ms-transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);}
.m126_c00337{transform:matrix(0.164536,-0.002468,0.003750,0.249972,0,0);-ms-transform:matrix(0.164536,-0.002468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164536,-0.002468,0.003750,0.249972,0,0);}
.m8d_c00337{transform:matrix(0.164871,-0.002473,0.003750,0.249972,0,0);-ms-transform:matrix(0.164871,-0.002473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164871,-0.002473,0.003750,0.249972,0,0);}
.m3c_c00337{transform:matrix(0.165456,-0.002482,0.003750,0.249972,0,0);-ms-transform:matrix(0.165456,-0.002482,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165456,-0.002482,0.003750,0.249972,0,0);}
.m114_c00337{transform:matrix(0.165791,-0.002487,0.003750,0.249972,0,0);-ms-transform:matrix(0.165791,-0.002487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165791,-0.002487,0.003750,0.249972,0,0);}
.m11e_c00337{transform:matrix(0.166326,-0.002495,0.003750,0.249972,0,0);-ms-transform:matrix(0.166326,-0.002495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166326,-0.002495,0.003750,0.249972,0,0);}
.m124_c00337{transform:matrix(0.166416,-0.002496,0.003750,0.249972,0,0);-ms-transform:matrix(0.166416,-0.002496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166416,-0.002496,0.003750,0.249972,0,0);}
.m6_c00337{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);}
.ma6_c00337{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);}
.m5d_c00337{transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167106,-0.002507,0.003750,0.249972,0,0);}
.m10d_c00337{transform:matrix(0.167256,-0.002509,0.003750,0.249972,0,0);-ms-transform:matrix(0.167256,-0.002509,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167256,-0.002509,0.003750,0.249972,0,0);}
.m15c_c00337{transform:matrix(0.167321,-0.002510,0.003750,0.249972,0,0);-ms-transform:matrix(0.167321,-0.002510,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167321,-0.002510,0.003750,0.249972,0,0);}
.m105_c00337{transform:matrix(0.167776,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167776,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167776,-0.002517,0.003750,0.249972,0,0);}
.m91_c00337{transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167821,-0.002517,0.003750,0.249972,0,0);}
.m9e_c00337{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);}
.m67_c00337{transform:matrix(0.168481,-0.002527,0.003750,0.249972,0,0);-ms-transform:matrix(0.168481,-0.002527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168481,-0.002527,0.003750,0.249972,0,0);}
.mba_c00337{transform:matrix(0.168636,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168636,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168636,-0.002530,0.003750,0.249972,0,0);}
.m3b_c00337{transform:matrix(0.168716,-0.002531,0.003750,0.249972,0,0);-ms-transform:matrix(0.168716,-0.002531,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168716,-0.002531,0.003750,0.249972,0,0);}
.m32_c00337{transform:matrix(0.169191,-0.002538,0.003750,0.249972,0,0);-ms-transform:matrix(0.169191,-0.002538,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169191,-0.002538,0.003750,0.249972,0,0);}
.mb9_c00337{transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);}
.m158_c00337{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);}
.mf9_c00337{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);}
.m102_c00337{transform:matrix(0.169466,-0.002542,0.003750,0.249972,0,0);-ms-transform:matrix(0.169466,-0.002542,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169466,-0.002542,0.003750,0.249972,0,0);}
.m147_c00337{transform:matrix(0.171126,-0.002567,0.003750,0.249972,0,0);-ms-transform:matrix(0.171126,-0.002567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171126,-0.002567,0.003750,0.249972,0,0);}
.m18_c00337{transform:matrix(0.172005,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172005,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172005,0.001892,-0.002750,0.249985,0,0);}
.m1f_c00337{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);}
.m79_c00337{transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);-ms-transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172496,-0.002587,0.003750,0.249972,0,0);}
.me2_c00337{transform:matrix(0.172776,-0.002592,0.003750,0.249972,0,0);-ms-transform:matrix(0.172776,-0.002592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172776,-0.002592,0.003750,0.249972,0,0);}
.ma5_c00337{transform:matrix(0.172786,-0.002592,0.003750,0.249972,0,0);-ms-transform:matrix(0.172786,-0.002592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172786,-0.002592,0.003750,0.249972,0,0);}
.m11f_c00337{transform:matrix(0.173061,-0.002596,0.003750,0.249972,0,0);-ms-transform:matrix(0.173061,-0.002596,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173061,-0.002596,0.003750,0.249972,0,0);}
.m49_c00337{transform:matrix(0.174285,-0.002614,0.003750,0.249972,0,0);-ms-transform:matrix(0.174285,-0.002614,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174285,-0.002614,0.003750,0.249972,0,0);}
.me6_c00337{transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);-ms-transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174440,-0.002617,0.003750,0.249972,0,0);}
.m98_c00337{transform:matrix(0.174605,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174605,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174605,-0.002619,0.003750,0.249972,0,0);}
.m8f_c00337{transform:matrix(0.174685,-0.002620,0.003750,0.249972,0,0);-ms-transform:matrix(0.174685,-0.002620,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174685,-0.002620,0.003750,0.249972,0,0);}
.m3a_c00337{transform:matrix(0.174925,-0.002624,0.003750,0.249972,0,0);-ms-transform:matrix(0.174925,-0.002624,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174925,-0.002624,0.003750,0.249972,0,0);}
.mbd_c00337{transform:matrix(0.175640,-0.002635,0.003750,0.249972,0,0);-ms-transform:matrix(0.175640,-0.002635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175640,-0.002635,0.003750,0.249972,0,0);}
.md5_c00337{transform:matrix(0.175695,-0.002635,0.003750,0.249972,0,0);-ms-transform:matrix(0.175695,-0.002635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175695,-0.002635,0.003750,0.249972,0,0);}
.m134_c00337{transform:matrix(0.175700,-0.002636,0.003750,0.249972,0,0);-ms-transform:matrix(0.175700,-0.002636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175700,-0.002636,0.003750,0.249972,0,0);}
.mf4_c00337{transform:matrix(0.175770,-0.002637,0.003750,0.249972,0,0);-ms-transform:matrix(0.175770,-0.002637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175770,-0.002637,0.003750,0.249972,0,0);}
.m117_c00337{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);}
.m9c_c00337{transform:matrix(0.176475,-0.002647,0.003750,0.249972,0,0);-ms-transform:matrix(0.176475,-0.002647,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176475,-0.002647,0.003750,0.249972,0,0);}
.m33_c00337{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);}
.mb0_c00337{transform:matrix(0.176720,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176720,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176720,-0.002651,0.003750,0.249972,0,0);}
.mc6_c00337{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);}
.m62_c00337{transform:matrix(0.177430,-0.002661,0.003750,0.249972,0,0);-ms-transform:matrix(0.177430,-0.002661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177430,-0.002661,0.003750,0.249972,0,0);}
.m5f_c00337{transform:matrix(0.177755,-0.002666,0.003750,0.249972,0,0);-ms-transform:matrix(0.177755,-0.002666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177755,-0.002666,0.003750,0.249972,0,0);}
.m127_c00337{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);}
.m31_c00337{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);}
.md2_c00337{transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);-ms-transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178950,-0.002684,0.003750,0.249972,0,0);}
.m5a_c00337{transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);}
.m50_c00337{transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);-ms-transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);}
.m150_c00337{transform:matrix(0.179710,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179710,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179710,-0.002696,0.003750,0.249972,0,0);}
.m83_c00337{transform:matrix(0.179910,-0.002699,0.003750,0.249972,0,0);-ms-transform:matrix(0.179910,-0.002699,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179910,-0.002699,0.003750,0.249972,0,0);}
.mc3_c00337{transform:matrix(0.180205,-0.002703,0.003750,0.249972,0,0);-ms-transform:matrix(0.180205,-0.002703,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180205,-0.002703,0.003750,0.249972,0,0);}
.m14c_c00337{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);}
.m2e_c00337{transform:matrix(0.180895,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180895,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180895,-0.002713,0.003750,0.249972,0,0);}
.m82_c00337{transform:matrix(0.181040,-0.002716,0.003750,0.249972,0,0);-ms-transform:matrix(0.181040,-0.002716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181040,-0.002716,0.003750,0.249972,0,0);}
.m115_c00337{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);}
.m40_c00337{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);}
.m11c_c00337{transform:matrix(0.181210,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181210,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181210,-0.002718,0.003750,0.249972,0,0);}
.mc9_c00337{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);}
.m132_c00337{transform:matrix(0.181635,-0.002725,0.003750,0.249972,0,0);-ms-transform:matrix(0.181635,-0.002725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181635,-0.002725,0.003750,0.249972,0,0);}
.m141_c00337{transform:matrix(0.181915,-0.002729,0.003750,0.249972,0,0);-ms-transform:matrix(0.181915,-0.002729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181915,-0.002729,0.003750,0.249972,0,0);}
.me0_c00337{transform:matrix(0.182175,-0.002733,0.003750,0.249972,0,0);-ms-transform:matrix(0.182175,-0.002733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182175,-0.002733,0.003750,0.249972,0,0);}
.ma4_c00337{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);}
.mdd_c00337{transform:matrix(0.182824,-0.002742,0.003750,0.249972,0,0);-ms-transform:matrix(0.182824,-0.002742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182824,-0.002742,0.003750,0.249972,0,0);}
.ma3_c00337{transform:matrix(0.182854,-0.002743,0.003750,0.249972,0,0);-ms-transform:matrix(0.182854,-0.002743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182854,-0.002743,0.003750,0.249972,0,0);}
.m129_c00337{transform:matrix(0.183179,-0.002748,0.003750,0.249972,0,0);-ms-transform:matrix(0.183179,-0.002748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183179,-0.002748,0.003750,0.249972,0,0);}
.m151_c00337{transform:matrix(0.183309,-0.002750,0.003750,0.249972,0,0);-ms-transform:matrix(0.183309,-0.002750,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183309,-0.002750,0.003750,0.249972,0,0);}
.m108_c00337{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);}
.mf2_c00337{transform:matrix(0.183829,-0.002757,0.003750,0.249972,0,0);-ms-transform:matrix(0.183829,-0.002757,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183829,-0.002757,0.003750,0.249972,0,0);}
.m8c_c00337{transform:matrix(0.183959,-0.002759,0.003750,0.249972,0,0);-ms-transform:matrix(0.183959,-0.002759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183959,-0.002759,0.003750,0.249972,0,0);}
.m14d_c00337{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);}
.m10e_c00337{transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);-ms-transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);}
.m14a_c00337{transform:matrix(0.184394,-0.002766,0.003750,0.249972,0,0);-ms-transform:matrix(0.184394,-0.002766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184394,-0.002766,0.003750,0.249972,0,0);}
.m112_c00337{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);}
.m55_c00337{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);}
.mfe_c00337{transform:matrix(0.185049,-0.002776,0.003750,0.249972,0,0);-ms-transform:matrix(0.185049,-0.002776,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185049,-0.002776,0.003750,0.249972,0,0);}
.m116_c00337{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);}
.m9d_c00337{transform:matrix(0.185799,-0.002787,0.003750,0.249972,0,0);-ms-transform:matrix(0.185799,-0.002787,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185799,-0.002787,0.003750,0.249972,0,0);}
.m61_c00337{transform:matrix(0.186249,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186249,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186249,-0.002794,0.003750,0.249972,0,0);}
.m137_c00337{transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);}
.m69_c00337{transform:matrix(0.186339,-0.002795,0.003750,0.249972,0,0);-ms-transform:matrix(0.186339,-0.002795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186339,-0.002795,0.003750,0.249972,0,0);}
.m68_c00337{transform:matrix(0.186394,-0.002796,0.003750,0.249972,0,0);-ms-transform:matrix(0.186394,-0.002796,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186394,-0.002796,0.003750,0.249972,0,0);}
.m100_c00337{transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);}
.m8e_c00337{transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186584,-0.002799,0.003750,0.249972,0,0);}
.m84_c00337{transform:matrix(0.186659,-0.002800,0.003750,0.249972,0,0);-ms-transform:matrix(0.186659,-0.002800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186659,-0.002800,0.003750,0.249972,0,0);}
.mc7_c00337{transform:matrix(0.186689,-0.002800,0.003750,0.249972,0,0);-ms-transform:matrix(0.186689,-0.002800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186689,-0.002800,0.003750,0.249972,0,0);}
.m4f_c00337{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);}
.mee_c00337{transform:matrix(0.186924,-0.002804,0.003750,0.249972,0,0);-ms-transform:matrix(0.186924,-0.002804,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186924,-0.002804,0.003750,0.249972,0,0);}
.mbb_c00337{transform:matrix(0.187019,-0.002805,0.003750,0.249972,0,0);-ms-transform:matrix(0.187019,-0.002805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187019,-0.002805,0.003750,0.249972,0,0);}
.m4c_c00337{transform:matrix(0.187119,-0.002807,0.003750,0.249972,0,0);-ms-transform:matrix(0.187119,-0.002807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187119,-0.002807,0.003750,0.249972,0,0);}
.m9b_c00337{transform:matrix(0.187189,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187189,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187189,-0.002808,0.003750,0.249972,0,0);}
.maa_c00337{transform:matrix(0.187234,-0.002809,0.003750,0.249972,0,0);-ms-transform:matrix(0.187234,-0.002809,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187234,-0.002809,0.003750,0.249972,0,0);}
.mc1_c00337{transform:matrix(0.187349,-0.002810,0.003750,0.249972,0,0);-ms-transform:matrix(0.187349,-0.002810,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187349,-0.002810,0.003750,0.249972,0,0);}
.m77_c00337{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);}
.m28_c00337{transform:matrix(0.187994,-0.002820,0.003750,0.249972,0,0);-ms-transform:matrix(0.187994,-0.002820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187994,-0.002820,0.003750,0.249972,0,0);}
.md0_c00337{transform:matrix(0.188034,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188034,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188034,-0.002821,0.003750,0.249972,0,0);}
.m144_c00337{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);}
.m11d_c00337{transform:matrix(0.188714,-0.002831,0.003750,0.249972,0,0);-ms-transform:matrix(0.188714,-0.002831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188714,-0.002831,0.003750,0.249972,0,0);}
.m12d_c00337{transform:matrix(0.188734,-0.002831,0.003750,0.249972,0,0);-ms-transform:matrix(0.188734,-0.002831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188734,-0.002831,0.003750,0.249972,0,0);}
.m15d_c00337{transform:matrix(0.188834,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188834,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188834,-0.002833,0.003750,0.249972,0,0);}
.m12e_c00337{transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);-ms-transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188839,-0.002833,0.003750,0.249972,0,0);}
.m86_c00337{transform:matrix(0.188924,-0.002834,0.003750,0.249972,0,0);-ms-transform:matrix(0.188924,-0.002834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188924,-0.002834,0.003750,0.249972,0,0);}
.m157_c00337{transform:matrix(0.189364,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189364,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189364,-0.002840,0.003750,0.249972,0,0);}
.m119_c00337{transform:matrix(0.189664,-0.002845,0.003750,0.249972,0,0);-ms-transform:matrix(0.189664,-0.002845,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189664,-0.002845,0.003750,0.249972,0,0);}
.m46_c00337{transform:matrix(0.189804,-0.002847,0.003750,0.249972,0,0);-ms-transform:matrix(0.189804,-0.002847,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189804,-0.002847,0.003750,0.249972,0,0);}
.mc2_c00337{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);}
.m78_c00337{transform:matrix(0.190249,-0.002854,0.003750,0.249972,0,0);-ms-transform:matrix(0.190249,-0.002854,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190249,-0.002854,0.003750,0.249972,0,0);}
.mc8_c00337{transform:matrix(0.190279,-0.002854,0.003750,0.249972,0,0);-ms-transform:matrix(0.190279,-0.002854,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190279,-0.002854,0.003750,0.249972,0,0);}
.m15a_c00337{transform:matrix(0.191178,-0.002868,0.003750,0.249972,0,0);-ms-transform:matrix(0.191178,-0.002868,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191178,-0.002868,0.003750,0.249972,0,0);}
.m42_c00337{transform:matrix(0.191243,-0.002869,0.003750,0.249972,0,0);-ms-transform:matrix(0.191243,-0.002869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191243,-0.002869,0.003750,0.249972,0,0);}
.mcb_c00337{transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);-ms-transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);}
.m148_c00337{transform:matrix(0.191603,-0.002874,0.003750,0.249972,0,0);-ms-transform:matrix(0.191603,-0.002874,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191603,-0.002874,0.003750,0.249972,0,0);}
.mda_c00337{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);}
.mcc_c00337{transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);}
.ma_c00337{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_c00337{transform:matrix(0.192228,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192228,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192228,-0.002883,0.003750,0.249972,0,0);}
.mfb_c00337{transform:matrix(0.192253,-0.002884,0.003750,0.249972,0,0);-ms-transform:matrix(0.192253,-0.002884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192253,-0.002884,0.003750,0.249972,0,0);}
.m60_c00337{transform:matrix(0.192273,-0.002884,0.003750,0.249972,0,0);-ms-transform:matrix(0.192273,-0.002884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192273,-0.002884,0.003750,0.249972,0,0);}
.m1c_c00337{transform:matrix(0.192323,-0.002885,0.003750,0.249972,0,0);-ms-transform:matrix(0.192323,-0.002885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192323,-0.002885,0.003750,0.249972,0,0);}
.m135_c00337{transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);}
.m92_c00337{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);}
.m1a_c00337{transform:matrix(0.192523,0.002118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192523,0.002118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192523,0.002118,-0.002750,0.249985,0,0);}
.m10b_c00337{transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192538,-0.002888,0.003750,0.249972,0,0);}
.m38_c00337{transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);}
.mbe_c00337{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);}
.m52_c00337{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);}
.m48_c00337{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);}
.mf0_c00337{transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194188,-0.002913,0.003750,0.249972,0,0);}
.ma7_c00337{transform:matrix(0.194333,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194333,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194333,-0.002915,0.003750,0.249972,0,0);}
.mb5_c00337{transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);-ms-transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194413,-0.002916,0.003750,0.249972,0,0);}
.m8a_c00337{transform:matrix(0.194443,-0.002917,0.003750,0.249972,0,0);-ms-transform:matrix(0.194443,-0.002917,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194443,-0.002917,0.003750,0.249972,0,0);}
.m156_c00337{transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);}
.m80_c00337{transform:matrix(0.194783,-0.002922,0.003750,0.249972,0,0);-ms-transform:matrix(0.194783,-0.002922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194783,-0.002922,0.003750,0.249972,0,0);}
.m7d_c00337{transform:matrix(0.195028,-0.002925,0.003750,0.249972,0,0);-ms-transform:matrix(0.195028,-0.002925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195028,-0.002925,0.003750,0.249972,0,0);}
.me4_c00337{transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);}
.m10a_c00337{transform:matrix(0.195588,-0.002934,0.003750,0.249972,0,0);-ms-transform:matrix(0.195588,-0.002934,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195588,-0.002934,0.003750,0.249972,0,0);}
.me1_c00337{transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);-ms-transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195663,-0.002935,0.003750,0.249972,0,0);}
.m12b_c00337{transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);}
.m3f_c00337{transform:matrix(0.195913,-0.002939,0.003750,0.249972,0,0);-ms-transform:matrix(0.195913,-0.002939,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195913,-0.002939,0.003750,0.249972,0,0);}
.mab_c00337{transform:matrix(0.196013,-0.002940,0.003750,0.249972,0,0);-ms-transform:matrix(0.196013,-0.002940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196013,-0.002940,0.003750,0.249972,0,0);}
.m142_c00337{transform:matrix(0.196298,-0.002944,0.003750,0.249972,0,0);-ms-transform:matrix(0.196298,-0.002944,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196298,-0.002944,0.003750,0.249972,0,0);}
.m106_c00337{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);}
.mf1_c00337{transform:matrix(0.196538,-0.002948,0.003750,0.249972,0,0);-ms-transform:matrix(0.196538,-0.002948,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196538,-0.002948,0.003750,0.249972,0,0);}
.m88_c00337{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);}
.m37_c00337{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);}
.m11a_c00337{transform:matrix(0.197548,-0.002963,0.003750,0.249972,0,0);-ms-transform:matrix(0.197548,-0.002963,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197548,-0.002963,0.003750,0.249972,0,0);}
.m123_c00337{transform:matrix(0.197708,-0.002966,0.003750,0.249972,0,0);-ms-transform:matrix(0.197708,-0.002966,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197708,-0.002966,0.003750,0.249972,0,0);}
.mef_c00337{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);}
.m109_c00337{transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198343,-0.002975,0.003750,0.249972,0,0);}
.m2f_c00337{transform:matrix(0.198498,-0.002977,0.003750,0.249972,0,0);-ms-transform:matrix(0.198498,-0.002977,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198498,-0.002977,0.003750,0.249972,0,0);}
.m53_c00337{transform:matrix(0.198583,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198583,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198583,-0.002979,0.003750,0.249972,0,0);}
.m104_c00337{transform:matrix(0.199288,-0.002989,0.003750,0.249972,0,0);-ms-transform:matrix(0.199288,-0.002989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199288,-0.002989,0.003750,0.249972,0,0);}
.mfa_c00337{transform:matrix(0.199758,-0.002996,0.003750,0.249972,0,0);-ms-transform:matrix(0.199758,-0.002996,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199758,-0.002996,0.003750,0.249972,0,0);}
.m41_c00337{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);}
.m140_c00337{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);}
.m6b_c00337{transform:matrix(0.200047,-0.003001,0.003750,0.249972,0,0);-ms-transform:matrix(0.200047,-0.003001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200047,-0.003001,0.003750,0.249972,0,0);}
.m2a_c00337{transform:matrix(0.200092,-0.003001,0.003750,0.249972,0,0);-ms-transform:matrix(0.200092,-0.003001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200092,-0.003001,0.003750,0.249972,0,0);}
.me9_c00337{transform:matrix(0.200142,-0.003002,0.003750,0.249972,0,0);-ms-transform:matrix(0.200142,-0.003002,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200142,-0.003002,0.003750,0.249972,0,0);}
.m12f_c00337{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);}
.m101_c00337{transform:matrix(0.200237,-0.003004,0.003750,0.249972,0,0);-ms-transform:matrix(0.200237,-0.003004,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200237,-0.003004,0.003750,0.249972,0,0);}
.m54_c00337{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);}
.m47_c00337{transform:matrix(0.200992,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.200992,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200992,-0.003015,0.003750,0.249972,0,0);}
.mb4_c00337{transform:matrix(0.201072,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201072,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201072,-0.003016,0.003750,0.249972,0,0);}
.mb8_c00337{transform:matrix(0.201082,-0.003016,0.003750,0.249972,0,0);-ms-transform:matrix(0.201082,-0.003016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201082,-0.003016,0.003750,0.249972,0,0);}
.m7e_c00337{transform:matrix(0.201397,-0.003021,0.003750,0.249972,0,0);-ms-transform:matrix(0.201397,-0.003021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201397,-0.003021,0.003750,0.249972,0,0);}
.m6f_c00337{transform:matrix(0.201452,-0.003022,0.003750,0.249972,0,0);-ms-transform:matrix(0.201452,-0.003022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201452,-0.003022,0.003750,0.249972,0,0);}
.m3d_c00337{transform:matrix(0.202052,-0.003031,0.003750,0.249972,0,0);-ms-transform:matrix(0.202052,-0.003031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202052,-0.003031,0.003750,0.249972,0,0);}
.m6d_c00337{transform:matrix(0.202227,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202227,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202227,-0.003033,0.003750,0.249972,0,0);}
.m26_c00337{transform:matrix(0.202342,-0.003035,0.003750,0.249972,0,0);-ms-transform:matrix(0.202342,-0.003035,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202342,-0.003035,0.003750,0.249972,0,0);}
.m74_c00337{transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202592,-0.003039,0.003750,0.249972,0,0);}
.mea_c00337{transform:matrix(0.202902,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202902,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202902,-0.003044,0.003750,0.249972,0,0);}
.md9_c00337{transform:matrix(0.202907,-0.003044,0.003750,0.249972,0,0);-ms-transform:matrix(0.202907,-0.003044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202907,-0.003044,0.003750,0.249972,0,0);}
.m97_c00337{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);}
.ma8_c00337{transform:matrix(0.203167,-0.003048,0.003750,0.249972,0,0);-ms-transform:matrix(0.203167,-0.003048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203167,-0.003048,0.003750,0.249972,0,0);}
.m14_c00337{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);}
.m99_c00337{transform:matrix(0.203342,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203342,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203342,-0.003050,0.003750,0.249972,0,0);}
.m14f_c00337{transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203357,-0.003050,0.003750,0.249972,0,0);}
.mca_c00337{transform:matrix(0.203392,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203392,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203392,-0.003051,0.003750,0.249972,0,0);}
.m15_c00337{transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203553,0.002239,-0.002750,0.249985,0,0);}
.m39_c00337{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);}
.m4d_c00337{transform:matrix(0.204752,-0.003071,0.003750,0.249972,0,0);-ms-transform:matrix(0.204752,-0.003071,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204752,-0.003071,0.003750,0.249972,0,0);}
.m73_c00337{transform:matrix(0.205137,-0.003077,0.003750,0.249972,0,0);-ms-transform:matrix(0.205137,-0.003077,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205137,-0.003077,0.003750,0.249972,0,0);}
.m10c_c00337{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);}
.m128_c00337{transform:matrix(0.205327,-0.003080,0.003750,0.249972,0,0);-ms-transform:matrix(0.205327,-0.003080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205327,-0.003080,0.003750,0.249972,0,0);}
.md6_c00337{transform:matrix(0.205337,-0.003080,0.003750,0.249972,0,0);-ms-transform:matrix(0.205337,-0.003080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205337,-0.003080,0.003750,0.249972,0,0);}
.m13a_c00337{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);}
.mec_c00337{transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);}
.m145_c00337{transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205962,-0.003089,0.003750,0.249972,0,0);}
.m1e_c00337{transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);}
.mf3_c00337{transform:matrix(0.206322,-0.003095,0.003750,0.249972,0,0);-ms-transform:matrix(0.206322,-0.003095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206322,-0.003095,0.003750,0.249972,0,0);}
.m81_c00337{transform:matrix(0.206327,-0.003095,0.003750,0.249972,0,0);-ms-transform:matrix(0.206327,-0.003095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206327,-0.003095,0.003750,0.249972,0,0);}
.m22_c00337{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);}
.m7f_c00337{transform:matrix(0.206912,-0.003104,0.003750,0.249972,0,0);-ms-transform:matrix(0.206912,-0.003104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206912,-0.003104,0.003750,0.249972,0,0);}
.m121_c00337{transform:matrix(0.206947,-0.003104,0.003750,0.249972,0,0);-ms-transform:matrix(0.206947,-0.003104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206947,-0.003104,0.003750,0.249972,0,0);}
.m95_c00337{transform:matrix(0.206982,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.206982,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206982,-0.003105,0.003750,0.249972,0,0);}
.m34_c00337{transform:matrix(0.207522,-0.003113,0.003750,0.249972,0,0);-ms-transform:matrix(0.207522,-0.003113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207522,-0.003113,0.003750,0.249972,0,0);}
.m66_c00337{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);}
.m29_c00337{transform:matrix(0.207592,-0.003114,0.003750,0.249972,0,0);-ms-transform:matrix(0.207592,-0.003114,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207592,-0.003114,0.003750,0.249972,0,0);}
.m6a_c00337{transform:matrix(0.207867,-0.003118,0.003750,0.249972,0,0);-ms-transform:matrix(0.207867,-0.003118,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207867,-0.003118,0.003750,0.249972,0,0);}
.ma1_c00337{transform:matrix(0.208037,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208037,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208037,-0.003121,0.003750,0.249972,0,0);}
.m136_c00337{transform:matrix(0.208047,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208047,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208047,-0.003121,0.003750,0.249972,0,0);}
.mac_c00337{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);}
.m125_c00337{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);}
.m154_c00337{transform:matrix(0.210881,-0.003163,0.003750,0.249972,0,0);-ms-transform:matrix(0.210881,-0.003163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210881,-0.003163,0.003750,0.249972,0,0);}
.mf5_c00337{transform:matrix(0.211536,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211536,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211536,-0.003173,0.003750,0.249972,0,0);}
.m113_c00337{transform:matrix(0.212076,-0.003181,0.003750,0.249972,0,0);-ms-transform:matrix(0.212076,-0.003181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212076,-0.003181,0.003750,0.249972,0,0);}
.maf_c00337{transform:matrix(0.212166,-0.003182,0.003750,0.249972,0,0);-ms-transform:matrix(0.212166,-0.003182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212166,-0.003182,0.003750,0.249972,0,0);}
.me8_c00337{transform:matrix(0.212826,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212826,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212826,-0.003192,0.003750,0.249972,0,0);}
.m2b_c00337{transform:matrix(0.213101,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213101,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213101,-0.003197,0.003750,0.249972,0,0);}
.m65_c00337{transform:matrix(0.214626,-0.003219,0.003750,0.249972,0,0);-ms-transform:matrix(0.214626,-0.003219,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214626,-0.003219,0.003750,0.249972,0,0);}
.m122_c00337{transform:matrix(0.214731,-0.003221,0.003750,0.249972,0,0);-ms-transform:matrix(0.214731,-0.003221,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214731,-0.003221,0.003750,0.249972,0,0);}
.m1d_c00337{transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);-ms-transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215601,-0.003234,0.003750,0.249972,0,0);}
.m87_c00337{transform:matrix(0.217196,-0.003258,0.003750,0.249972,0,0);-ms-transform:matrix(0.217196,-0.003258,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217196,-0.003258,0.003750,0.249972,0,0);}
.mbf_c00337{transform:matrix(0.217386,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217386,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217386,-0.003261,0.003750,0.249972,0,0);}
.m111_c00337{transform:matrix(0.217391,-0.003261,0.003750,0.249972,0,0);-ms-transform:matrix(0.217391,-0.003261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217391,-0.003261,0.003750,0.249972,0,0);}
.m70_c00337{transform:matrix(0.217451,-0.003262,0.003750,0.249972,0,0);-ms-transform:matrix(0.217451,-0.003262,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217451,-0.003262,0.003750,0.249972,0,0);}
.mb1_c00337{transform:matrix(0.218010,-0.003270,0.003750,0.249972,0,0);-ms-transform:matrix(0.218010,-0.003270,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218010,-0.003270,0.003750,0.249972,0,0);}
.m5b_c00337{transform:matrix(0.218230,-0.003273,0.003750,0.249972,0,0);-ms-transform:matrix(0.218230,-0.003273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218230,-0.003273,0.003750,0.249972,0,0);}
.mae_c00337{transform:matrix(0.218650,-0.003280,0.003750,0.249972,0,0);-ms-transform:matrix(0.218650,-0.003280,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218650,-0.003280,0.003750,0.249972,0,0);}
.m12a_c00337{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);}
.m30_c00337{transform:matrix(0.218855,-0.003283,0.003750,0.249972,0,0);-ms-transform:matrix(0.218855,-0.003283,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218855,-0.003283,0.003750,0.249972,0,0);}
.m76_c00337{transform:matrix(0.220380,-0.003306,0.003750,0.249972,0,0);-ms-transform:matrix(0.220380,-0.003306,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220380,-0.003306,0.003750,0.249972,0,0);}
.mb6_c00337{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);}
.m2d_c00337{transform:matrix(0.221105,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221105,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221105,-0.003317,0.003750,0.249972,0,0);}
.m24_c00337{transform:matrix(0.222265,-0.003334,0.003750,0.249972,0,0);-ms-transform:matrix(0.222265,-0.003334,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222265,-0.003334,0.003750,0.249972,0,0);}
.m75_c00337{transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);-ms-transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);}
.m23_c00337{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);}
.m90_c00337{transform:matrix(0.222780,-0.003342,0.003750,0.249972,0,0);-ms-transform:matrix(0.222780,-0.003342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222780,-0.003342,0.003750,0.249972,0,0);}
.m7a_c00337{transform:matrix(0.223795,-0.003357,0.003750,0.249972,0,0);-ms-transform:matrix(0.223795,-0.003357,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223795,-0.003357,0.003750,0.249972,0,0);}
.m13f_c00337{transform:matrix(0.225055,-0.003376,0.003750,0.249972,0,0);-ms-transform:matrix(0.225055,-0.003376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225055,-0.003376,0.003750,0.249972,0,0);}
.m56_c00337{transform:matrix(0.226195,-0.003393,0.003750,0.249972,0,0);-ms-transform:matrix(0.226195,-0.003393,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226195,-0.003393,0.003750,0.249972,0,0);}
.m15e_c00337{transform:matrix(0.226834,-0.003403,0.003750,0.249972,0,0);-ms-transform:matrix(0.226834,-0.003403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226834,-0.003403,0.003750,0.249972,0,0);}
.m94_c00337{transform:matrix(0.227659,-0.003415,0.003750,0.249972,0,0);-ms-transform:matrix(0.227659,-0.003415,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227659,-0.003415,0.003750,0.249972,0,0);}
.m9a_c00337{transform:matrix(0.227934,-0.003419,0.003750,0.249972,0,0);-ms-transform:matrix(0.227934,-0.003419,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227934,-0.003419,0.003750,0.249972,0,0);}
.mcf_c00337{transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);}
.m7c_c00337{transform:matrix(0.229559,-0.003443,0.003750,0.249972,0,0);-ms-transform:matrix(0.229559,-0.003443,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229559,-0.003443,0.003750,0.249972,0,0);}
.m146_c00337{transform:matrix(0.230604,-0.003459,0.003750,0.249972,0,0);-ms-transform:matrix(0.230604,-0.003459,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230604,-0.003459,0.003750,0.249972,0,0);}
.m71_c00337{transform:matrix(0.230639,-0.003460,0.003750,0.249972,0,0);-ms-transform:matrix(0.230639,-0.003460,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230639,-0.003460,0.003750,0.249972,0,0);}
.m35_c00337{transform:matrix(0.231119,-0.003467,0.003750,0.249972,0,0);-ms-transform:matrix(0.231119,-0.003467,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231119,-0.003467,0.003750,0.249972,0,0);}
.m133_c00337{transform:matrix(0.232414,-0.003486,0.003750,0.249972,0,0);-ms-transform:matrix(0.232414,-0.003486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232414,-0.003486,0.003750,0.249972,0,0);}
.m7b_c00337{transform:matrix(0.234634,-0.003520,0.003750,0.249972,0,0);-ms-transform:matrix(0.234634,-0.003520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234634,-0.003520,0.003750,0.249972,0,0);}
.mfd_c00337{transform:matrix(0.234639,-0.003520,0.003750,0.249972,0,0);-ms-transform:matrix(0.234639,-0.003520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234639,-0.003520,0.003750,0.249972,0,0);}
.m4e_c00337{transform:matrix(0.234874,-0.003523,0.003750,0.249972,0,0);-ms-transform:matrix(0.234874,-0.003523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234874,-0.003523,0.003750,0.249972,0,0);}
.m13e_c00337{transform:matrix(0.235813,-0.003537,0.003750,0.249972,0,0);-ms-transform:matrix(0.235813,-0.003537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235813,-0.003537,0.003750,0.249972,0,0);}
.m139_c00337{transform:matrix(0.237408,-0.003561,0.003750,0.249972,0,0);-ms-transform:matrix(0.237408,-0.003561,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237408,-0.003561,0.003750,0.249972,0,0);}
.m1b_c00337{transform:matrix(0.237658,-0.003565,0.003750,0.249972,0,0);-ms-transform:matrix(0.237658,-0.003565,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237658,-0.003565,0.003750,0.249972,0,0);}
.m118_c00337{transform:matrix(0.237828,-0.003567,0.003750,0.249972,0,0);-ms-transform:matrix(0.237828,-0.003567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237828,-0.003567,0.003750,0.249972,0,0);}
.m149_c00337{transform:matrix(0.244662,-0.003670,0.003750,0.249972,0,0);-ms-transform:matrix(0.244662,-0.003670,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244662,-0.003670,0.003750,0.249972,0,0);}
.ma0_c00337{transform:matrix(0.249882,-0.003748,0.003750,0.249972,0,0);-ms-transform:matrix(0.249882,-0.003748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249882,-0.003748,0.003750,0.249972,0,0);}
.m17_c00337{transform:matrix(0.251225,0.002763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251225,0.002763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251225,0.002763,-0.002750,0.249985,0,0);}
.m25_c00337{transform:matrix(0.253342,-0.003800,0.003750,0.249972,0,0);-ms-transform:matrix(0.253342,-0.003800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253342,-0.003800,0.003750,0.249972,0,0);}
.mb2_c00337{transform:matrix(0.253711,-0.003806,0.003750,0.249972,0,0);-ms-transform:matrix(0.253711,-0.003806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253711,-0.003806,0.003750,0.249972,0,0);}
.mc_c00337{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);}
.m6c_c00337{transform:matrix(0.255971,-0.003840,0.003750,0.249972,0,0);-ms-transform:matrix(0.255971,-0.003840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255971,-0.003840,0.003750,0.249972,0,0);}
.m64_c00337{transform:matrix(0.256156,-0.003842,0.003750,0.249972,0,0);-ms-transform:matrix(0.256156,-0.003842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256156,-0.003842,0.003750,0.249972,0,0);}
.m63_c00337{transform:matrix(0.258876,-0.003883,0.003750,0.249972,0,0);-ms-transform:matrix(0.258876,-0.003883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258876,-0.003883,0.003750,0.249972,0,0);}
.m6e_c00337{transform:matrix(0.259741,-0.003896,0.003750,0.249972,0,0);-ms-transform:matrix(0.259741,-0.003896,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259741,-0.003896,0.003750,0.249972,0,0);}
.ma9_c00337{transform:matrix(0.260531,-0.003908,0.003750,0.249972,0,0);-ms-transform:matrix(0.260531,-0.003908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260531,-0.003908,0.003750,0.249972,0,0);}
.m9f_c00337{transform:matrix(0.262760,-0.003941,0.003750,0.249972,0,0);-ms-transform:matrix(0.262760,-0.003941,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262760,-0.003941,0.003750,0.249972,0,0);}
.m14e_c00337{transform:matrix(0.263715,-0.003956,0.003750,0.249972,0,0);-ms-transform:matrix(0.263715,-0.003956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263715,-0.003956,0.003750,0.249972,0,0);}
.mcd_c00337{transform:matrix(0.263975,-0.003960,0.003750,0.249972,0,0);-ms-transform:matrix(0.263975,-0.003960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263975,-0.003960,0.003750,0.249972,0,0);}
.m27_c00337{transform:matrix(0.264300,-0.003965,0.003750,0.249972,0,0);-ms-transform:matrix(0.264300,-0.003965,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264300,-0.003965,0.003750,0.249972,0,0);}
.m3_c00337{transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);}
.m143_c00337{transform:matrix(0.265565,-0.003983,0.003750,0.249972,0,0);-ms-transform:matrix(0.265565,-0.003983,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265565,-0.003983,0.003750,0.249972,0,0);}
.m131_c00337{transform:matrix(0.267080,-0.004006,0.003750,0.249972,0,0);-ms-transform:matrix(0.267080,-0.004006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267080,-0.004006,0.003750,0.249972,0,0);}
.m13b_c00337{transform:matrix(0.268910,-0.004034,0.003750,0.249972,0,0);-ms-transform:matrix(0.268910,-0.004034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268910,-0.004034,0.003750,0.249972,0,0);}
.m152_c00337{transform:matrix(0.269035,-0.004036,0.003750,0.249972,0,0);-ms-transform:matrix(0.269035,-0.004036,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269035,-0.004036,0.003750,0.249972,0,0);}
.m153_c00337{transform:matrix(0.269585,-0.004044,0.003750,0.249972,0,0);-ms-transform:matrix(0.269585,-0.004044,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269585,-0.004044,0.003750,0.249972,0,0);}
.m72_c00337{transform:matrix(0.272544,-0.004088,0.003750,0.249972,0,0);-ms-transform:matrix(0.272544,-0.004088,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272544,-0.004088,0.003750,0.249972,0,0);}
.me_c00337{transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274030,0.000000,0.000000,0.250000,0,0);}
.m120_c00337{transform:matrix(0.277504,-0.004163,0.003750,0.249972,0,0);-ms-transform:matrix(0.277504,-0.004163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277504,-0.004163,0.003750,0.249972,0,0);}
.m138_c00337{transform:matrix(0.280088,-0.004201,0.003750,0.249972,0,0);-ms-transform:matrix(0.280088,-0.004201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280088,-0.004201,0.003750,0.249972,0,0);}
.m1_c00337{transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.295132,-0.004427,0.003750,0.249972,0,0);-ms-transform:matrix(0.295132,-0.004427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.295132,-0.004427,0.003750,0.249972,0,0);}
.m20_c00337{transform:matrix(0.296072,-0.004441,0.003750,0.249972,0,0);-ms-transform:matrix(0.296072,-0.004441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296072,-0.004441,0.003750,0.249972,0,0);}
.m107_c00337{transform:matrix(0.297562,-0.004463,0.003750,0.249972,0,0);-ms-transform:matrix(0.297562,-0.004463,0.003750,0.249972,0,0);-webkit-transform:matrix(0.297562,-0.004463,0.003750,0.249972,0,0);}
.m159_c00337{transform:matrix(0.302036,-0.004531,0.003750,0.249972,0,0);-ms-transform:matrix(0.302036,-0.004531,0.003750,0.249972,0,0);-webkit-transform:matrix(0.302036,-0.004531,0.003750,0.249972,0,0);}
.m8_c00337{transform:matrix(0.320325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320325,0.000000,0.000000,0.250000,0,0);}
.m13d_c00337{transform:matrix(0.326933,-0.004904,0.003750,0.249972,0,0);-ms-transform:matrix(0.326933,-0.004904,0.003750,0.249972,0,0);-webkit-transform:matrix(0.326933,-0.004904,0.003750,0.249972,0,0);}
.m16_c00337{transform:matrix(0.342334,0.003766,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342334,0.003766,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342334,0.003766,-0.002750,0.249985,0,0);}
.m11_c00337{transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345910,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.346749,0.003814,-0.002750,0.249985,0,0);-ms-transform:matrix(0.346749,0.003814,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.346749,0.003814,-0.002750,0.249985,0,0);}
.mf6_c00337{transform:matrix(0.355310,-0.005330,0.003750,0.249972,0,0);-ms-transform:matrix(0.355310,-0.005330,0.003750,0.249972,0,0);-webkit-transform:matrix(0.355310,-0.005330,0.003750,0.249972,0,0);}
.md_c00337{transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357050,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{transform:matrix(0.358990,-0.005385,0.003750,0.249972,0,0);-ms-transform:matrix(0.358990,-0.005385,0.003750,0.249972,0,0);-webkit-transform:matrix(0.358990,-0.005385,0.003750,0.249972,0,0);}
.md1_c00337{transform:matrix(0.386816,-0.005802,0.003750,0.249972,0,0);-ms-transform:matrix(0.386816,-0.005802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.386816,-0.005802,0.003750,0.249972,0,0);}
.m4_c00337{transform:matrix(0.428070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428070,0.000000,0.000000,0.250000,0,0);}
.me7_c00337{transform:matrix(0.437971,-0.006570,0.003750,0.249972,0,0);-ms-transform:matrix(0.437971,-0.006570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.437971,-0.006570,0.003750,0.249972,0,0);}
.mdf_c00337{transform:matrix(0.452334,-0.006785,0.003750,0.249972,0,0);-ms-transform:matrix(0.452334,-0.006785,0.003750,0.249972,0,0);-webkit-transform:matrix(0.452334,-0.006785,0.003750,0.249972,0,0);}
.m2c_c00337{transform:matrix(0.493444,-0.007402,0.003750,0.249972,0,0);-ms-transform:matrix(0.493444,-0.007402,0.003750,0.249972,0,0);-webkit-transform:matrix(0.493444,-0.007402,0.003750,0.249972,0,0);}
.mdc_c00337{transform:matrix(0.546798,-0.008202,0.003750,0.249972,0,0);-ms-transform:matrix(0.546798,-0.008202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.546798,-0.008202,0.003750,0.249972,0,0);}
.m12_c00337{transform:matrix(0.561375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561375,0.000000,0.000000,0.250000,0,0);}
.mfc_c00337{transform:matrix(0.588009,-0.008820,0.003750,0.249972,0,0);-ms-transform:matrix(0.588009,-0.008820,0.003750,0.249972,0,0);-webkit-transform:matrix(0.588009,-0.008820,0.003750,0.249972,0,0);}
.m9_c00337{transform:matrix(0.607155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607155,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.642145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642145,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.656335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656335,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.659590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659590,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(1.058390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058390,0.000000,0.000000,0.250000,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;}
.fs1_c00337{font-size:26.250000px;}
.fs0_c00337{font-size:37.800000px;}
.fs5_c00337{font-size:61.956969px;}
.fs4_c00337{font-size:63.007087px;}
.fs2_c00337{font-size:66.150000px;}
.fsa_c00337{font-size:68.257678px;}
.fs9_c00337{font-size:69.307796px;}
.fs8_c00337{font-size:70.357914px;}
.fs6_c00337{font-size:71.408032px;}
.fs7_c00337{font-size:72.458150px;}
.fsb_c00337{font-size:73.508268px;}
.fs3_c00337{font-size:96.605844px;}
.y0_c00337{bottom:0.000000px;}
.y14b_c00337{bottom:167.588572px;}
.y14c_c00337{bottom:168.086700px;}
.y14d_c00337{bottom:168.289552px;}
.y14e_c00337{bottom:168.557167px;}
.y14f_c00337{bottom:169.056172px;}
.y150_c00337{bottom:169.348305px;}
.y151_c00337{bottom:169.553707px;}
.y152_c00337{bottom:169.969170px;}
.y153_c00337{bottom:170.104462px;}
.y154_c00337{bottom:170.374672px;}
.y155_c00337{bottom:170.869612px;}
.y13f_c00337{bottom:191.080650px;}
.y140_c00337{bottom:191.346300px;}
.y141_c00337{bottom:191.950822px;}
.y142_c00337{bottom:192.277327px;}
.y143_c00337{bottom:192.622710px;}
.y144_c00337{bottom:192.957825px;}
.y145_c00337{bottom:193.417755px;}
.y146_c00337{bottom:193.649010px;}
.y147_c00337{bottom:194.046165px;}
.y148_c00337{bottom:194.264827px;}
.y149_c00337{bottom:194.580217px;}
.y14a_c00337{bottom:195.083760px;}
.y136_c00337{bottom:213.762795px;}
.y137_c00337{bottom:214.055850px;}
.y138_c00337{bottom:214.927582px;}
.y139_c00337{bottom:215.107995px;}
.y13a_c00337{bottom:215.369422px;}
.y13b_c00337{bottom:216.130252px;}
.y13c_c00337{bottom:216.368077px;}
.y13d_c00337{bottom:216.612442px;}
.y13e_c00337{bottom:216.996780px;}
.y12b_c00337{bottom:236.421465px;}
.y12c_c00337{bottom:236.708715px;}
.y12d_c00337{bottom:237.475117px;}
.y12e_c00337{bottom:237.696487px;}
.y12f_c00337{bottom:237.907725px;}
.y130_c00337{bottom:238.599097px;}
.y131_c00337{bottom:238.998930px;}
.y132_c00337{bottom:239.374177px;}
.y133_c00337{bottom:239.675400px;}
.y134_c00337{bottom:240.000007px;}
.y135_c00337{bottom:240.418365px;}
.y11c_c00337{bottom:259.651785px;}
.y11d_c00337{bottom:260.027557px;}
.y11e_c00337{bottom:260.280150px;}
.y11f_c00337{bottom:260.833207px;}
.y120_c00337{bottom:261.022432px;}
.y121_c00337{bottom:261.094117px;}
.y122_c00337{bottom:261.280102px;}
.y123_c00337{bottom:261.554655px;}
.y124_c00337{bottom:261.731265px;}
.y125_c00337{bottom:261.781680px;}
.y126_c00337{bottom:262.136250px;}
.y127_c00337{bottom:262.344045px;}
.y128_c00337{bottom:262.786822px;}
.y129_c00337{bottom:263.000790px;}
.y12a_c00337{bottom:263.210707px;}
.y112_c00337{bottom:282.033630px;}
.y113_c00337{bottom:282.524677px;}
.y114_c00337{bottom:282.903982px;}
.y115_c00337{bottom:283.161300px;}
.y116_c00337{bottom:283.620300px;}
.y117_c00337{bottom:284.144460px;}
.y118_c00337{bottom:285.113910px;}
.y119_c00337{bottom:285.516315px;}
.y11a_c00337{bottom:286.348305px;}
.y11b_c00337{bottom:286.716060px;}
.y105_c00337{bottom:304.490212px;}
.y106_c00337{bottom:304.982512px;}
.y107_c00337{bottom:305.472442px;}
.y108_c00337{bottom:305.718480px;}
.y109_c00337{bottom:306.130980px;}
.y10a_c00337{bottom:306.644715px;}
.y10b_c00337{bottom:306.927577px;}
.y10c_c00337{bottom:307.643970px;}
.y10d_c00337{bottom:308.092065px;}
.y10e_c00337{bottom:308.480827px;}
.y10f_c00337{bottom:308.998117px;}
.y110_c00337{bottom:309.400087px;}
.y111_c00337{bottom:309.641025px;}
.yf9_c00337{bottom:327.441210px;}
.yfa_c00337{bottom:327.924570px;}
.yfb_c00337{bottom:328.327830px;}
.yfc_c00337{bottom:328.630020px;}
.yfd_c00337{bottom:329.369310px;}
.yfe_c00337{bottom:330.176760px;}
.yff_c00337{bottom:330.463605px;}
.y100_c00337{bottom:330.914842px;}
.y101_c00337{bottom:331.275975px;}
.y102_c00337{bottom:331.553752px;}
.y103_c00337{bottom:331.684372px;}
.y104_c00337{bottom:331.887045px;}
.yee_c00337{bottom:350.123535px;}
.yef_c00337{bottom:350.350305px;}
.yf0_c00337{bottom:351.122137px;}
.yf1_c00337{bottom:351.725775px;}
.yf2_c00337{bottom:352.377667px;}
.yf3_c00337{bottom:353.249685px;}
.yf4_c00337{bottom:353.862022px;}
.yf5_c00337{bottom:354.079890px;}
.yf6_c00337{bottom:354.424890px;}
.yf7_c00337{bottom:354.878767px;}
.yf8_c00337{bottom:356.070105px;}
.ye3_c00337{bottom:373.588822px;}
.ye4_c00337{bottom:374.135580px;}
.ye5_c00337{bottom:374.613585px;}
.ye6_c00337{bottom:375.246532px;}
.ye7_c00337{bottom:376.212097px;}
.ye8_c00337{bottom:376.362202px;}
.ye9_c00337{bottom:376.460685px;}
.yea_c00337{bottom:376.819402px;}
.yeb_c00337{bottom:377.122672px;}
.yec_c00337{bottom:377.899890px;}
.yed_c00337{bottom:379.116540px;}
.yd9_c00337{bottom:396.824782px;}
.yda_c00337{bottom:397.330200px;}
.ydb_c00337{bottom:397.782000px;}
.ydc_c00337{bottom:398.005177px;}
.ydd_c00337{bottom:398.346067px;}
.yde_c00337{bottom:398.502945px;}
.ydf_c00337{bottom:398.716710px;}
.ye0_c00337{bottom:399.709957px;}
.ye1_c00337{bottom:400.066552px;}
.ye2_c00337{bottom:400.660462px;}
.yce_c00337{bottom:420.331365px;}
.ycf_c00337{bottom:420.927165px;}
.yd0_c00337{bottom:421.266082px;}
.yd1_c00337{bottom:421.704255px;}
.yd2_c00337{bottom:422.290282px;}
.yd3_c00337{bottom:422.485260px;}
.yd4_c00337{bottom:422.902455px;}
.yd5_c00337{bottom:423.220237px;}
.yd6_c00337{bottom:423.928260px;}
.yd7_c00337{bottom:424.040332px;}
.yd8_c00337{bottom:424.332135px;}
.yc3_c00337{bottom:443.015925px;}
.yc4_c00337{bottom:443.800147px;}
.yc5_c00337{bottom:444.405712px;}
.yc6_c00337{bottom:444.696360px;}
.yc7_c00337{bottom:445.510672px;}
.yc8_c00337{bottom:445.902862px;}
.yc9_c00337{bottom:446.615025px;}
.yca_c00337{bottom:446.849587px;}
.ycb_c00337{bottom:447.812242px;}
.ycc_c00337{bottom:448.150380px;}
.ycd_c00337{bottom:448.527720px;}
.yb9_c00337{bottom:465.972210px;}
.yba_c00337{bottom:466.463467px;}
.ybb_c00337{bottom:467.008680px;}
.ybc_c00337{bottom:468.157200px;}
.ybd_c00337{bottom:468.929115px;}
.ybe_c00337{bottom:469.741050px;}
.ybf_c00337{bottom:470.257837px;}
.yc0_c00337{bottom:470.899882px;}
.yc1_c00337{bottom:471.946732px;}
.yc2_c00337{bottom:472.969882px;}
.yb0_c00337{bottom:488.385547px;}
.yb1_c00337{bottom:488.952187px;}
.yb2_c00337{bottom:489.279255px;}
.yb3_c00337{bottom:489.995827px;}
.yb4_c00337{bottom:490.444732px;}
.yb5_c00337{bottom:490.925287px;}
.yb6_c00337{bottom:491.566200px;}
.yb7_c00337{bottom:491.909977px;}
.yb8_c00337{bottom:492.777487px;}
.ya5_c00337{bottom:511.340355px;}
.ya6_c00337{bottom:511.949640px;}
.ya7_c00337{bottom:512.189482px;}
.ya8_c00337{bottom:512.752357px;}
.ya9_c00337{bottom:512.934120px;}
.yaa_c00337{bottom:513.171120px;}
.yab_c00337{bottom:513.343665px;}
.yac_c00337{bottom:513.673815px;}
.yad_c00337{bottom:514.010025px;}
.yae_c00337{bottom:514.226070px;}
.yaf_c00337{bottom:514.637115px;}
.y9a_c00337{bottom:534.561465px;}
.y9b_c00337{bottom:534.868132px;}
.y9c_c00337{bottom:535.154827px;}
.y9d_c00337{bottom:535.522732px;}
.y9e_c00337{bottom:535.950772px;}
.y9f_c00337{bottom:536.320777px;}
.ya0_c00337{bottom:536.682127px;}
.ya1_c00337{bottom:536.866080px;}
.ya2_c00337{bottom:537.432090px;}
.ya3_c00337{bottom:537.796815px;}
.ya4_c00337{bottom:538.274685px;}
.y90_c00337{bottom:556.975897px;}
.y91_c00337{bottom:557.890110px;}
.y92_c00337{bottom:558.310980px;}
.y93_c00337{bottom:559.068870px;}
.y94_c00337{bottom:559.389315px;}
.y95_c00337{bottom:559.920847px;}
.y96_c00337{bottom:560.694690px;}
.y97_c00337{bottom:561.135607px;}
.y98_c00337{bottom:561.456165px;}
.y99_c00337{bottom:562.243882px;}
.y85_c00337{bottom:581.278312px;}
.y86_c00337{bottom:581.845582px;}
.y87_c00337{bottom:582.028785px;}
.y88_c00337{bottom:582.277627px;}
.y89_c00337{bottom:582.596617px;}
.y8a_c00337{bottom:583.055257px;}
.y8b_c00337{bottom:583.507327px;}
.y8c_c00337{bottom:584.246302px;}
.y8d_c00337{bottom:584.904570px;}
.y8e_c00337{bottom:585.338827px;}
.y8f_c00337{bottom:585.697770px;}
.y7b_c00337{bottom:602.881110px;}
.y7c_c00337{bottom:603.768922px;}
.y7d_c00337{bottom:604.303717px;}
.y7e_c00337{bottom:604.858357px;}
.y7f_c00337{bottom:605.293102px;}
.y80_c00337{bottom:606.128692px;}
.y81_c00337{bottom:606.398197px;}
.y82_c00337{bottom:607.019977px;}
.y83_c00337{bottom:607.399282px;}
.y84_c00337{bottom:608.506522px;}
.y70_c00337{bottom:625.834725px;}
.y71_c00337{bottom:626.743342px;}
.y72_c00337{bottom:627.079822px;}
.y73_c00337{bottom:628.333650px;}
.y74_c00337{bottom:628.877287px;}
.y75_c00337{bottom:629.550802px;}
.y76_c00337{bottom:630.045397px;}
.y77_c00337{bottom:630.435802px;}
.y78_c00337{bottom:630.878197px;}
.y79_c00337{bottom:631.728247px;}
.y7a_c00337{bottom:631.952970px;}
.y65_c00337{bottom:648.473662px;}
.y66_c00337{bottom:648.912885px;}
.y67_c00337{bottom:649.457647px;}
.y68_c00337{bottom:650.199487px;}
.y69_c00337{bottom:651.098392px;}
.y6a_c00337{bottom:651.623550px;}
.y6b_c00337{bottom:652.409752px;}
.y6c_c00337{bottom:653.000115px;}
.y6d_c00337{bottom:653.570490px;}
.y6e_c00337{bottom:653.934892px;}
.y6f_c00337{bottom:654.754365px;}
.y5b_c00337{bottom:671.431080px;}
.y5c_c00337{bottom:672.244702px;}
.y5d_c00337{bottom:672.795097px;}
.y5e_c00337{bottom:673.212547px;}
.y5f_c00337{bottom:673.532407px;}
.y60_c00337{bottom:673.942425px;}
.y61_c00337{bottom:674.562690px;}
.y62_c00337{bottom:675.079552px;}
.y63_c00337{bottom:675.891210px;}
.y64_c00337{bottom:676.389292px;}
.y50_c00337{bottom:694.110517px;}
.y51_c00337{bottom:694.716097px;}
.y52_c00337{bottom:695.619502px;}
.y53_c00337{bottom:696.201247px;}
.y54_c00337{bottom:696.465675px;}
.y55_c00337{bottom:697.675282px;}
.y56_c00337{bottom:698.033812px;}
.y57_c00337{bottom:698.843197px;}
.y58_c00337{bottom:699.259102px;}
.y59_c00337{bottom:699.599625px;}
.y5a_c00337{bottom:700.639942px;}
.y43_c00337{bottom:716.837130px;}
.y44_c00337{bottom:717.225915px;}
.y45_c00337{bottom:718.193895px;}
.y46_c00337{bottom:718.563750px;}
.y47_c00337{bottom:718.831890px;}
.y48_c00337{bottom:719.605762px;}
.y49_c00337{bottom:720.120075px;}
.y4a_c00337{bottom:720.483330px;}
.y4b_c00337{bottom:720.783045px;}
.y4c_c00337{bottom:721.473997px;}
.y4d_c00337{bottom:722.286270px;}
.y4e_c00337{bottom:722.755650px;}
.y4f_c00337{bottom:723.202230px;}
.y37_c00337{bottom:739.756860px;}
.y38_c00337{bottom:740.613877px;}
.y39_c00337{bottom:740.980987px;}
.y3a_c00337{bottom:741.774465px;}
.y3b_c00337{bottom:742.515810px;}
.y3c_c00337{bottom:742.769182px;}
.y3d_c00337{bottom:743.340345px;}
.y3e_c00337{bottom:744.111067px;}
.y3f_c00337{bottom:744.379365px;}
.y40_c00337{bottom:745.305345px;}
.y41_c00337{bottom:745.675267px;}
.y42_c00337{bottom:745.997152px;}
.y28_c00337{bottom:762.204705px;}
.y29_c00337{bottom:762.621990px;}
.y2a_c00337{bottom:763.580872px;}
.y2b_c00337{bottom:763.966860px;}
.y2c_c00337{bottom:764.246332px;}
.y2d_c00337{bottom:764.829465px;}
.y2e_c00337{bottom:765.064882px;}
.y2f_c00337{bottom:766.065007px;}
.y30_c00337{bottom:766.352647px;}
.y31_c00337{bottom:766.822335px;}
.y32_c00337{bottom:767.579595px;}
.y33_c00337{bottom:767.983627px;}
.y34_c00337{bottom:768.348217px;}
.y35_c00337{bottom:768.668617px;}
.y36_c00337{bottom:769.162290px;}
.y1e_c00337{bottom:785.114212px;}
.y1f_c00337{bottom:785.476102px;}
.y20_c00337{bottom:786.000322px;}
.y21_c00337{bottom:787.109317px;}
.y22_c00337{bottom:787.560255px;}
.y23_c00337{bottom:788.212417px;}
.y24_c00337{bottom:789.391612px;}
.y25_c00337{bottom:790.039545px;}
.y26_c00337{bottom:790.342770px;}
.y27_c00337{bottom:791.258460px;}
.y15_c00337{bottom:807.840270px;}
.y16_c00337{bottom:808.401517px;}
.y17_c00337{bottom:809.512402px;}
.y18_c00337{bottom:809.929087px;}
.y19_c00337{bottom:810.483225px;}
.y1a_c00337{bottom:811.265932px;}
.y1b_c00337{bottom:811.884195px;}
.y1c_c00337{bottom:813.707407px;}
.y1d_c00337{bottom:815.265607px;}
.ya_c00337{bottom:830.776500px;}
.yb_c00337{bottom:831.518482px;}
.yc_c00337{bottom:832.599472px;}
.yd_c00337{bottom:833.165550px;}
.ye_c00337{bottom:833.648287px;}
.yf_c00337{bottom:834.244492px;}
.y10_c00337{bottom:835.006297px;}
.y11_c00337{bottom:835.317877px;}
.y12_c00337{bottom:835.609072px;}
.y13_c00337{bottom:836.795587px;}
.y14_c00337{bottom:837.155632px;}
.y9_c00337{bottom:877.717768px;}
.y8_c00337{bottom:878.997723px;}
.y7_c00337{bottom:879.392552px;}
.y6_c00337{bottom:880.128996px;}
.y5_c00337{bottom:880.755501px;}
.y4_c00337{bottom:881.821500px;}
.y3_c00337{bottom:921.963000px;}
.y2_c00337{bottom:936.031500px;}
.y1_c00337{bottom:947.284500px;}
.h3_c00337{height:26.250000px;}
.h2_c00337{height:37.800000px;}
.h7_c00337{height:61.956969px;}
.h6_c00337{height:63.007087px;}
.h4_c00337{height:66.150000px;}
.hc_c00337{height:68.257678px;}
.hb_c00337{height:69.307796px;}
.ha_c00337{height:70.357914px;}
.h8_c00337{height:71.408032px;}
.h9_c00337{height:72.458150px;}
.hd_c00337{height:73.508268px;}
.h5_c00337{height:96.605844px;}
.h0_c00337{height:1008.450000px;}
.h1_c00337{height:1008.750000px;}
.w0_c00337{width:696.000000px;}
.x0_c00337{left:0.000000px;}
.x7e_c00337{left:144.275190px;}
.xa8_c00337{left:146.964900px;}
.xf_c00337{left:151.740000px;}
.x85_c00337{left:153.751560px;}
.x24_c00337{left:157.066807px;}
.x14_c00337{left:158.365500px;}
.x48_c00337{left:160.556333px;}
.xa4_c00337{left:161.883098px;}
.xc4_c00337{left:163.712460px;}
.xcb_c00337{left:164.823668px;}
.x19_c00337{left:171.108000px;}
.x1_c00337{left:173.070000px;}
.x75_c00337{left:178.038690px;}
.x2d_c00337{left:179.962845px;}
.x7f_c00337{left:182.623718px;}
.x35_c00337{left:185.699370px;}
.x49_c00337{left:188.375760px;}
.xc0_c00337{left:189.402128px;}
.xc6_c00337{left:190.721708px;}
.x25_c00337{left:192.182790px;}
.x91_c00337{left:196.141598px;}
.xad_c00337{left:198.866880px;}
.x54_c00337{left:200.261505px;}
.xa_c00337{left:201.690000px;}
.xa2_c00337{left:208.336448px;}
.x8c_c00337{left:209.355315px;}
.x10_c00337{left:212.760000px;}
.x5c_c00337{left:219.409808px;}
.x1a_c00337{left:220.573500px;}
.x60_c00337{left:227.016248px;}
.x86_c00337{left:229.878548px;}
.x97_c00337{left:231.001313px;}
.x2_c00337{left:234.360000px;}
.x78_c00337{left:235.388835px;}
.x8d_c00337{left:239.061593px;}
.xb6_c00337{left:240.189060px;}
.xae_c00337{left:243.431558px;}
.x40_c00337{left:245.903955px;}
.x36_c00337{left:249.624870px;}
.xa3_c00337{left:251.806058px;}
.x68_c00337{left:252.902663px;}
.x15_c00337{left:255.274500px;}
.x4a_c00337{left:257.508795px;}
.x11_c00337{left:259.470000px;}
.x26_c00337{left:261.640755px;}
.xb_c00337{left:265.140000px;}
.xc7_c00337{left:266.331150px;}
.x79_c00337{left:270.448410px;}
.x3_c00337{left:274.590000px;}
.x6f_c00337{left:278.542995px;}
.x61_c00337{left:279.973035px;}
.x2e_c00337{left:282.042315px;}
.x4b_c00337{left:283.966200px;}
.x98_c00337{left:286.075620px;}
.x27_c00337{left:287.719372px;}
.x1b_c00337{left:292.639500px;}
.x37_c00337{left:293.988870px;}
.xa5_c00337{left:295.305083px;}
.x4_c00337{left:296.460000px;}
.x5_c00337{left:303.480000px;}
.x55_c00337{left:306.373103px;}
.x2f_c00337{left:310.204388px;}
.x16_c00337{left:312.229500px;}
.x92_c00337{left:317.158920px;}
.x5d_c00337{left:318.559800px;}
.x28_c00337{left:322.361355px;}
.x56_c00337{left:325.301895px;}
.xa0_c00337{left:327.388800px;}
.x12_c00337{left:328.860000px;}
.x1c_c00337{left:330.378000px;}
.x38_c00337{left:332.864370px;}
.xa9_c00337{left:339.819368px;}
.xb7_c00337{left:341.964248px;}
.x62_c00337{left:344.201002px;}
.x6_c00337{left:345.330000px;}
.x39_c00337{left:348.558870px;}
.xa6_c00337{left:349.567013px;}
.x30_c00337{left:350.981280px;}
.x87_c00337{left:353.023485px;}
.x41_c00337{left:355.527097px;}
.x4c_c00337{left:358.434825px;}
.x70_c00337{left:360.905685px;}
.x1d_c00337{left:362.560500px;}
.x80_c00337{left:364.085753px;}
.xb8_c00337{left:365.165678px;}
.xb4_c00337{left:369.514268px;}
.x29_c00337{left:371.241112px;}
.x93_c00337{left:372.320753px;}
.x42_c00337{left:373.618868px;}
.xaf_c00337{left:375.748500px;}
.x17_c00337{left:379.179000px;}
.x63_c00337{left:381.712065px;}
.x88_c00337{left:382.726613px;}
.xcc_c00337{left:384.862275px;}
.x99_c00337{left:386.545650px;}
.x8e_c00337{left:388.706070px;}
.x69_c00337{left:391.137803px;}
.xc8_c00337{left:392.177858px;}
.x4d_c00337{left:395.222888px;}
.x5e_c00337{left:397.847685px;}
.xb9_c00337{left:399.472778px;}
.x76_c00337{left:400.856385px;}
.x1e_c00337{left:402.307500px;}
.x7a_c00337{left:404.678963px;}
.x2a_c00337{left:409.858027px;}
.x57_c00337{left:411.743700px;}
.xc_c00337{left:412.830000px;}
.x7_c00337{left:414.180000px;}
.x3a_c00337{left:415.233870px;}
.x8_c00337{left:419.310000px;}
.x4e_c00337{left:421.140270px;}
.x9a_c00337{left:422.193788px;}
.x31_c00337{left:424.693177px;}
.xba_c00337{left:427.810748px;}
.x71_c00337{left:430.514813px;}
.x81_c00337{left:432.146385px;}
.x3b_c00337{left:434.409870px;}
.x58_c00337{left:437.346082px;}
.xb0_c00337{left:440.811893px;}
.x4f_c00337{left:442.521585px;}
.x89_c00337{left:445.646228px;}
.x8f_c00337{left:447.037080px;}
.xa1_c00337{left:448.065345px;}
.xaa_c00337{left:449.180558px;}
.x1f_c00337{left:453.094500px;}
.xc1_c00337{left:455.919608px;}
.xc5_c00337{left:459.674033px;}
.xcd_c00337{left:462.561443px;}
.x13_c00337{left:464.130000px;}
.x32_c00337{left:465.188070px;}
.x94_c00337{left:467.303693px;}
.x43_c00337{left:469.479308px;}
.xbb_c00337{left:472.053383px;}
.x20_c00337{left:473.866500px;}
.xd_c00337{left:474.930000px;}
.x9_c00337{left:478.170000px;}
.x64_c00337{left:479.984527px;}
.x6a_c00337{left:481.014502px;}
.x9e_c00337{left:482.091690px;}
.x33_c00337{left:484.102778px;}
.x9b_c00337{left:486.975180px;}
.x44_c00337{left:488.666100px;}
.x50_c00337{left:491.885828px;}
.x21_c00337{left:493.279500px;}
.x59_c00337{left:495.105937px;}
.xbc_c00337{left:498.009105px;}
.xe_c00337{left:500.310000px;}
.x82_c00337{left:502.887810px;}
.x72_c00337{left:504.837165px;}
.x7b_c00337{left:505.867508px;}
.x9c_c00337{left:508.313963px;}
.x6b_c00337{left:511.042402px;}
.x95_c00337{left:513.207390px;}
.x8a_c00337{left:514.770495px;}
.x3c_c00337{left:516.206370px;}
.xc2_c00337{left:518.546310px;}
.x65_c00337{left:520.710135px;}
.x9f_c00337{left:521.781353px;}
.x2b_c00337{left:523.803817px;}
.x5a_c00337{left:524.833388px;}
.xc9_c00337{left:528.248145px;}
.x18_c00337{left:531.432000px;}
.x7c_c00337{left:532.639223px;}
.x73_c00337{left:536.425583px;}
.x5f_c00337{left:538.325393px;}
.x34_c00337{left:541.347922px;}
.x3d_c00337{left:543.141870px;}
.x6c_c00337{left:545.036415px;}
.x66_c00337{left:546.704017px;}
.x83_c00337{left:548.507603px;}
.x51_c00337{left:549.938205px;}
.xbd_c00337{left:553.333410px;}
.x45_c00337{left:554.799090px;}
.x90_c00337{left:557.196195px;}
.xc3_c00337{left:560.439960px;}
.xb1_c00337{left:563.895773px;}
.x8b_c00337{left:566.078873px;}
.x3e_c00337{left:567.447870px;}
.xab_c00337{left:571.174193px;}
.x22_c00337{left:572.380500px;}
.xce_c00337{left:575.002733px;}
.xbe_c00337{left:580.100723px;}
.x46_c00337{left:581.260995px;}
.x52_c00337{left:583.430700px;}
.x3f_c00337{left:588.807870px;}
.xb5_c00337{left:589.853783px;}
.xac_c00337{left:591.487223px;}
.xca_c00337{left:594.958643px;}
.x23_c00337{left:596.383500px;}
.x7d_c00337{left:598.256670px;}
.xb2_c00337{left:600.395955px;}
.x47_c00337{left:604.220333px;}
.x67_c00337{left:605.236395px;}
.xbf_c00337{left:606.297968px;}
.x84_c00337{left:608.171858px;}
.x6d_c00337{left:610.408373px;}
.x53_c00337{left:615.303172px;}
.x77_c00337{left:620.102355px;}
.x2c_c00337{left:621.182355px;}
.xb3_c00337{left:622.259760px;}
.x5b_c00337{left:623.390850px;}
.x9d_c00337{left:626.540550px;}
.x6e_c00337{left:627.690390px;}
.x74_c00337{left:628.745745px;}
.xa7_c00337{left:657.343373px;}
.x96_c00337{left:661.109618px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.fs1_c00337{font-size:23.333333pt;}
.fs0_c00337{font-size:33.600000pt;}
.fs5_c00337{font-size:55.072861pt;}
.fs4_c00337{font-size:56.006300pt;}
.fs2_c00337{font-size:58.800000pt;}
.fsa_c00337{font-size:60.673491pt;}
.fs9_c00337{font-size:61.606930pt;}
.fs8_c00337{font-size:62.540368pt;}
.fs6_c00337{font-size:63.473806pt;}
.fs7_c00337{font-size:64.407245pt;}
.fsb_c00337{font-size:65.340683pt;}
.fs3_c00337{font-size:85.871861pt;}
.y0_c00337{bottom:0.000000pt;}
.y14b_c00337{bottom:148.967620pt;}
.y14c_c00337{bottom:149.410400pt;}
.y14d_c00337{bottom:149.590713pt;}
.y14e_c00337{bottom:149.828593pt;}
.y14f_c00337{bottom:150.272153pt;}
.y150_c00337{bottom:150.531827pt;}
.y151_c00337{bottom:150.714407pt;}
.y152_c00337{bottom:151.083707pt;}
.y153_c00337{bottom:151.203967pt;}
.y154_c00337{bottom:151.444153pt;}
.y155_c00337{bottom:151.884100pt;}
.y13f_c00337{bottom:169.849467pt;}
.y140_c00337{bottom:170.085600pt;}
.y141_c00337{bottom:170.622953pt;}
.y142_c00337{bottom:170.913180pt;}
.y143_c00337{bottom:171.220187pt;}
.y144_c00337{bottom:171.518067pt;}
.y145_c00337{bottom:171.926893pt;}
.y146_c00337{bottom:172.132453pt;}
.y147_c00337{bottom:172.485480pt;}
.y148_c00337{bottom:172.679847pt;}
.y149_c00337{bottom:172.960193pt;}
.y14a_c00337{bottom:173.407787pt;}
.y136_c00337{bottom:190.011373pt;}
.y137_c00337{bottom:190.271867pt;}
.y138_c00337{bottom:191.046740pt;}
.y139_c00337{bottom:191.207107pt;}
.y13a_c00337{bottom:191.439487pt;}
.y13b_c00337{bottom:192.115780pt;}
.y13c_c00337{bottom:192.327180pt;}
.y13d_c00337{bottom:192.544393pt;}
.y13e_c00337{bottom:192.886027pt;}
.y12b_c00337{bottom:210.152413pt;}
.y12c_c00337{bottom:210.407747pt;}
.y12d_c00337{bottom:211.088993pt;}
.y12e_c00337{bottom:211.285767pt;}
.y12f_c00337{bottom:211.473533pt;}
.y130_c00337{bottom:212.088087pt;}
.y131_c00337{bottom:212.443493pt;}
.y132_c00337{bottom:212.777047pt;}
.y133_c00337{bottom:213.044800pt;}
.y134_c00337{bottom:213.333340pt;}
.y135_c00337{bottom:213.705213pt;}
.y11c_c00337{bottom:230.801587pt;}
.y11d_c00337{bottom:231.135607pt;}
.y11e_c00337{bottom:231.360133pt;}
.y11f_c00337{bottom:231.851740pt;}
.y120_c00337{bottom:232.019940pt;}
.y121_c00337{bottom:232.083660pt;}
.y122_c00337{bottom:232.248980pt;}
.y123_c00337{bottom:232.493027pt;}
.y124_c00337{bottom:232.650013pt;}
.y125_c00337{bottom:232.694827pt;}
.y126_c00337{bottom:233.010000pt;}
.y127_c00337{bottom:233.194707pt;}
.y128_c00337{bottom:233.588287pt;}
.y129_c00337{bottom:233.778480pt;}
.y12a_c00337{bottom:233.965073pt;}
.y112_c00337{bottom:250.696560pt;}
.y113_c00337{bottom:251.133047pt;}
.y114_c00337{bottom:251.470207pt;}
.y115_c00337{bottom:251.698933pt;}
.y116_c00337{bottom:252.106933pt;}
.y117_c00337{bottom:252.572853pt;}
.y118_c00337{bottom:253.434587pt;}
.y119_c00337{bottom:253.792280pt;}
.y11a_c00337{bottom:254.531827pt;}
.y11b_c00337{bottom:254.858720pt;}
.y105_c00337{bottom:270.657967pt;}
.y106_c00337{bottom:271.095567pt;}
.y107_c00337{bottom:271.531060pt;}
.y108_c00337{bottom:271.749760pt;}
.y109_c00337{bottom:272.116427pt;}
.y10a_c00337{bottom:272.573080pt;}
.y10b_c00337{bottom:272.824513pt;}
.y10c_c00337{bottom:273.461307pt;}
.y10d_c00337{bottom:273.859613pt;}
.y10e_c00337{bottom:274.205180pt;}
.y10f_c00337{bottom:274.664993pt;}
.y110_c00337{bottom:275.022300pt;}
.y111_c00337{bottom:275.236467pt;}
.yf9_c00337{bottom:291.058853pt;}
.yfa_c00337{bottom:291.488507pt;}
.yfb_c00337{bottom:291.846960pt;}
.yfc_c00337{bottom:292.115573pt;}
.yfd_c00337{bottom:292.772720pt;}
.yfe_c00337{bottom:293.490453pt;}
.yff_c00337{bottom:293.745427pt;}
.y100_c00337{bottom:294.146527pt;}
.y101_c00337{bottom:294.467533pt;}
.y102_c00337{bottom:294.714447pt;}
.y103_c00337{bottom:294.830553pt;}
.y104_c00337{bottom:295.010707pt;}
.yee_c00337{bottom:311.220920pt;}
.yef_c00337{bottom:311.422493pt;}
.yf0_c00337{bottom:312.108567pt;}
.yf1_c00337{bottom:312.645133pt;}
.yf2_c00337{bottom:313.224593pt;}
.yf3_c00337{bottom:313.999720pt;}
.yf4_c00337{bottom:314.544020pt;}
.yf5_c00337{bottom:314.737680pt;}
.yf6_c00337{bottom:315.044347pt;}
.yf7_c00337{bottom:315.447793pt;}
.yf8_c00337{bottom:316.506760pt;}
.ye3_c00337{bottom:332.078953pt;}
.ye4_c00337{bottom:332.564960pt;}
.ye5_c00337{bottom:332.989853pt;}
.ye6_c00337{bottom:333.552473pt;}
.ye7_c00337{bottom:334.410753pt;}
.ye8_c00337{bottom:334.544180pt;}
.ye9_c00337{bottom:334.631720pt;}
.yea_c00337{bottom:334.950580pt;}
.yeb_c00337{bottom:335.220153pt;}
.yec_c00337{bottom:335.911013pt;}
.yed_c00337{bottom:336.992480pt;}
.yd9_c00337{bottom:352.733140pt;}
.yda_c00337{bottom:353.182400pt;}
.ydb_c00337{bottom:353.584000pt;}
.ydc_c00337{bottom:353.782380pt;}
.ydd_c00337{bottom:354.085393pt;}
.yde_c00337{bottom:354.224840pt;}
.ydf_c00337{bottom:354.414853pt;}
.ye0_c00337{bottom:355.297740pt;}
.ye1_c00337{bottom:355.614713pt;}
.ye2_c00337{bottom:356.142633pt;}
.yce_c00337{bottom:373.627880pt;}
.ycf_c00337{bottom:374.157480pt;}
.yd0_c00337{bottom:374.458740pt;}
.yd1_c00337{bottom:374.848227pt;}
.yd2_c00337{bottom:375.369140pt;}
.yd3_c00337{bottom:375.542453pt;}
.yd4_c00337{bottom:375.913293pt;}
.yd5_c00337{bottom:376.195767pt;}
.yd6_c00337{bottom:376.825120pt;}
.yd7_c00337{bottom:376.924740pt;}
.yd8_c00337{bottom:377.184120pt;}
.yc3_c00337{bottom:393.791933pt;}
.yc4_c00337{bottom:394.489020pt;}
.yc5_c00337{bottom:395.027300pt;}
.yc6_c00337{bottom:395.285653pt;}
.yc7_c00337{bottom:396.009487pt;}
.yc8_c00337{bottom:396.358100pt;}
.yc9_c00337{bottom:396.991133pt;}
.yca_c00337{bottom:397.199633pt;}
.ycb_c00337{bottom:398.055327pt;}
.ycc_c00337{bottom:398.355893pt;}
.ycd_c00337{bottom:398.691307pt;}
.yb9_c00337{bottom:414.197520pt;}
.yba_c00337{bottom:414.634193pt;}
.ybb_c00337{bottom:415.118827pt;}
.ybc_c00337{bottom:416.139733pt;}
.ybd_c00337{bottom:416.825880pt;}
.ybe_c00337{bottom:417.547600pt;}
.ybf_c00337{bottom:418.006967pt;}
.yc0_c00337{bottom:418.577673pt;}
.yc1_c00337{bottom:419.508207pt;}
.yc2_c00337{bottom:420.417673pt;}
.yb0_c00337{bottom:434.120487pt;}
.yb1_c00337{bottom:434.624167pt;}
.yb2_c00337{bottom:434.914893pt;}
.yb3_c00337{bottom:435.551847pt;}
.yb4_c00337{bottom:435.950873pt;}
.yb5_c00337{bottom:436.378033pt;}
.yb6_c00337{bottom:436.947733pt;}
.yb7_c00337{bottom:437.253313pt;}
.yb8_c00337{bottom:438.024433pt;}
.ya5_c00337{bottom:454.524760pt;}
.ya6_c00337{bottom:455.066347pt;}
.ya7_c00337{bottom:455.279540pt;}
.ya8_c00337{bottom:455.779873pt;}
.ya9_c00337{bottom:455.941440pt;}
.yaa_c00337{bottom:456.152107pt;}
.yab_c00337{bottom:456.305480pt;}
.yac_c00337{bottom:456.598947pt;}
.yad_c00337{bottom:456.897800pt;}
.yae_c00337{bottom:457.089840pt;}
.yaf_c00337{bottom:457.455213pt;}
.y9a_c00337{bottom:475.165747pt;}
.y9b_c00337{bottom:475.438340pt;}
.y9c_c00337{bottom:475.693180pt;}
.y9d_c00337{bottom:476.020207pt;}
.y9e_c00337{bottom:476.400687pt;}
.y9f_c00337{bottom:476.729580pt;}
.ya0_c00337{bottom:477.050780pt;}
.ya1_c00337{bottom:477.214293pt;}
.ya2_c00337{bottom:477.717413pt;}
.ya3_c00337{bottom:478.041613pt;}
.ya4_c00337{bottom:478.466387pt;}
.y90_c00337{bottom:495.089687pt;}
.y91_c00337{bottom:495.902320pt;}
.y92_c00337{bottom:496.276427pt;}
.y93_c00337{bottom:496.950107pt;}
.y94_c00337{bottom:497.234947pt;}
.y95_c00337{bottom:497.707420pt;}
.y96_c00337{bottom:498.395280pt;}
.y97_c00337{bottom:498.787207pt;}
.y98_c00337{bottom:499.072147pt;}
.y99_c00337{bottom:499.772340pt;}
.y85_c00337{bottom:516.691833pt;}
.y86_c00337{bottom:517.196073pt;}
.y87_c00337{bottom:517.358920pt;}
.y88_c00337{bottom:517.580113pt;}
.y89_c00337{bottom:517.863660pt;}
.y8a_c00337{bottom:518.271340pt;}
.y8b_c00337{bottom:518.673180pt;}
.y8c_c00337{bottom:519.330047pt;}
.y8d_c00337{bottom:519.915173pt;}
.y8e_c00337{bottom:520.301180pt;}
.y8f_c00337{bottom:520.620240pt;}
.y7b_c00337{bottom:535.894320pt;}
.y7c_c00337{bottom:536.683487pt;}
.y7d_c00337{bottom:537.158860pt;}
.y7e_c00337{bottom:537.651873pt;}
.y7f_c00337{bottom:538.038313pt;}
.y80_c00337{bottom:538.781060pt;}
.y81_c00337{bottom:539.020620pt;}
.y82_c00337{bottom:539.573313pt;}
.y83_c00337{bottom:539.910473pt;}
.y84_c00337{bottom:540.894687pt;}
.y70_c00337{bottom:556.297533pt;}
.y71_c00337{bottom:557.105193pt;}
.y72_c00337{bottom:557.404287pt;}
.y73_c00337{bottom:558.518800pt;}
.y74_c00337{bottom:559.002033pt;}
.y75_c00337{bottom:559.600713pt;}
.y76_c00337{bottom:560.040353pt;}
.y77_c00337{bottom:560.387380pt;}
.y78_c00337{bottom:560.780620pt;}
.y79_c00337{bottom:561.536220pt;}
.y7a_c00337{bottom:561.735973pt;}
.y65_c00337{bottom:576.421033pt;}
.y66_c00337{bottom:576.811453pt;}
.y67_c00337{bottom:577.295687pt;}
.y68_c00337{bottom:577.955100pt;}
.y69_c00337{bottom:578.754127pt;}
.y6a_c00337{bottom:579.220933pt;}
.y6b_c00337{bottom:579.919780pt;}
.y6c_c00337{bottom:580.444547pt;}
.y6d_c00337{bottom:580.951547pt;}
.y6e_c00337{bottom:581.275460pt;}
.y6f_c00337{bottom:582.003880pt;}
.y5b_c00337{bottom:596.827627pt;}
.y5c_c00337{bottom:597.550847pt;}
.y5d_c00337{bottom:598.040087pt;}
.y5e_c00337{bottom:598.411153pt;}
.y5f_c00337{bottom:598.695473pt;}
.y60_c00337{bottom:599.059933pt;}
.y61_c00337{bottom:599.611280pt;}
.y62_c00337{bottom:600.070713pt;}
.y63_c00337{bottom:600.792187pt;}
.y64_c00337{bottom:601.234927pt;}
.y50_c00337{bottom:616.987127pt;}
.y51_c00337{bottom:617.525420pt;}
.y52_c00337{bottom:618.328447pt;}
.y53_c00337{bottom:618.845553pt;}
.y54_c00337{bottom:619.080600pt;}
.y55_c00337{bottom:620.155807pt;}
.y56_c00337{bottom:620.474500pt;}
.y57_c00337{bottom:621.193953pt;}
.y58_c00337{bottom:621.563647pt;}
.y59_c00337{bottom:621.866333pt;}
.y5a_c00337{bottom:622.791060pt;}
.y43_c00337{bottom:637.188560pt;}
.y44_c00337{bottom:637.534147pt;}
.y45_c00337{bottom:638.394573pt;}
.y46_c00337{bottom:638.723333pt;}
.y47_c00337{bottom:638.961680pt;}
.y48_c00337{bottom:639.649567pt;}
.y49_c00337{bottom:640.106733pt;}
.y4a_c00337{bottom:640.429627pt;}
.y4b_c00337{bottom:640.696040pt;}
.y4c_c00337{bottom:641.310220pt;}
.y4d_c00337{bottom:642.032240pt;}
.y4e_c00337{bottom:642.449467pt;}
.y4f_c00337{bottom:642.846427pt;}
.y37_c00337{bottom:657.561653pt;}
.y38_c00337{bottom:658.323447pt;}
.y39_c00337{bottom:658.649767pt;}
.y3a_c00337{bottom:659.355080pt;}
.y3b_c00337{bottom:660.014053pt;}
.y3c_c00337{bottom:660.239273pt;}
.y3d_c00337{bottom:660.746973pt;}
.y3e_c00337{bottom:661.432060pt;}
.y3f_c00337{bottom:661.670547pt;}
.y40_c00337{bottom:662.493640pt;}
.y41_c00337{bottom:662.822460pt;}
.y42_c00337{bottom:663.108580pt;}
.y28_c00337{bottom:677.515293pt;}
.y29_c00337{bottom:677.886213pt;}
.y2a_c00337{bottom:678.738553pt;}
.y2b_c00337{bottom:679.081653pt;}
.y2c_c00337{bottom:679.330073pt;}
.y2d_c00337{bottom:679.848413pt;}
.y2e_c00337{bottom:680.057673pt;}
.y2f_c00337{bottom:680.946673pt;}
.y30_c00337{bottom:681.202353pt;}
.y31_c00337{bottom:681.619853pt;}
.y32_c00337{bottom:682.292973pt;}
.y33_c00337{bottom:682.652113pt;}
.y34_c00337{bottom:682.976193pt;}
.y35_c00337{bottom:683.260993pt;}
.y36_c00337{bottom:683.699813pt;}
.y1e_c00337{bottom:697.879300pt;}
.y1f_c00337{bottom:698.200980pt;}
.y20_c00337{bottom:698.666953pt;}
.y21_c00337{bottom:699.652727pt;}
.y22_c00337{bottom:700.053560pt;}
.y23_c00337{bottom:700.633260pt;}
.y24_c00337{bottom:701.681433pt;}
.y25_c00337{bottom:702.257373pt;}
.y26_c00337{bottom:702.526907pt;}
.y27_c00337{bottom:703.340853pt;}
.y15_c00337{bottom:718.080240pt;}
.y16_c00337{bottom:718.579127pt;}
.y17_c00337{bottom:719.566580pt;}
.y18_c00337{bottom:719.936967pt;}
.y19_c00337{bottom:720.429533pt;}
.y1a_c00337{bottom:721.125273pt;}
.y1b_c00337{bottom:721.674840pt;}
.y1c_c00337{bottom:723.295473pt;}
.y1d_c00337{bottom:724.680540pt;}
.ya_c00337{bottom:738.468000pt;}
.yb_c00337{bottom:739.127540pt;}
.yc_c00337{bottom:740.088420pt;}
.yd_c00337{bottom:740.591600pt;}
.ye_c00337{bottom:741.020700pt;}
.yf_c00337{bottom:741.550660pt;}
.y10_c00337{bottom:742.227820pt;}
.y11_c00337{bottom:742.504780pt;}
.y12_c00337{bottom:742.763620pt;}
.y13_c00337{bottom:743.818300pt;}
.y14_c00337{bottom:744.138340pt;}
.y9_c00337{bottom:780.193572pt;}
.y8_c00337{bottom:781.331309pt;}
.y7_c00337{bottom:781.682268pt;}
.y6_c00337{bottom:782.336885pt;}
.y5_c00337{bottom:782.893779pt;}
.y4_c00337{bottom:783.841333pt;}
.y3_c00337{bottom:819.522667pt;}
.y2_c00337{bottom:832.028000pt;}
.y1_c00337{bottom:842.030667pt;}
.h3_c00337{height:23.333333pt;}
.h2_c00337{height:33.600000pt;}
.h7_c00337{height:55.072861pt;}
.h6_c00337{height:56.006300pt;}
.h4_c00337{height:58.800000pt;}
.hc_c00337{height:60.673491pt;}
.hb_c00337{height:61.606930pt;}
.ha_c00337{height:62.540368pt;}
.h8_c00337{height:63.473806pt;}
.h9_c00337{height:64.407245pt;}
.hd_c00337{height:65.340683pt;}
.h5_c00337{height:85.871861pt;}
.h0_c00337{height:896.400000pt;}
.h1_c00337{height:896.666667pt;}
.w0_c00337{width:618.666667pt;}
.x0_c00337{left:0.000000pt;}
.x7e_c00337{left:128.244613pt;}
.xa8_c00337{left:130.635467pt;}
.xf_c00337{left:134.880000pt;}
.x85_c00337{left:136.668053pt;}
.x24_c00337{left:139.614940pt;}
.x14_c00337{left:140.769333pt;}
.x48_c00337{left:142.716740pt;}
.xa4_c00337{left:143.896087pt;}
.xc4_c00337{left:145.522187pt;}
.xcb_c00337{left:146.509927pt;}
.x19_c00337{left:152.096000pt;}
.x1_c00337{left:153.840000pt;}
.x75_c00337{left:158.256613pt;}
.x2d_c00337{left:159.966973pt;}
.x7f_c00337{left:162.332193pt;}
.x35_c00337{left:165.066107pt;}
.x49_c00337{left:167.445120pt;}
.xc0_c00337{left:168.357447pt;}
.xc6_c00337{left:169.530407pt;}
.x25_c00337{left:170.829147pt;}
.x91_c00337{left:174.348087pt;}
.xad_c00337{left:176.770560pt;}
.x54_c00337{left:178.010227pt;}
.xa_c00337{left:179.280000pt;}
.xa2_c00337{left:185.187953pt;}
.x8c_c00337{left:186.093613pt;}
.x10_c00337{left:189.120000pt;}
.x5c_c00337{left:195.030940pt;}
.x1a_c00337{left:196.065333pt;}
.x60_c00337{left:201.792220pt;}
.x86_c00337{left:204.336487pt;}
.x97_c00337{left:205.334500pt;}
.x2_c00337{left:208.320000pt;}
.x78_c00337{left:209.234520pt;}
.x8d_c00337{left:212.499193pt;}
.xb6_c00337{left:213.501387pt;}
.xae_c00337{left:216.383607pt;}
.x40_c00337{left:218.581293pt;}
.x36_c00337{left:221.888773pt;}
.xa3_c00337{left:223.827607pt;}
.x68_c00337{left:224.802367pt;}
.x15_c00337{left:226.910667pt;}
.x4a_c00337{left:228.896707pt;}
.x11_c00337{left:230.640000pt;}
.x26_c00337{left:232.569560pt;}
.xb_c00337{left:235.680000pt;}
.xc7_c00337{left:236.738800pt;}
.x79_c00337{left:240.398587pt;}
.x3_c00337{left:244.080000pt;}
.x6f_c00337{left:247.593773pt;}
.x61_c00337{left:248.864920pt;}
.x2e_c00337{left:250.704280pt;}
.x4b_c00337{left:252.414400pt;}
.x98_c00337{left:254.289440pt;}
.x27_c00337{left:255.750553pt;}
.x1b_c00337{left:260.124000pt;}
.x37_c00337{left:261.323440pt;}
.xa5_c00337{left:262.493407pt;}
.x4_c00337{left:263.520000pt;}
.x5_c00337{left:269.760000pt;}
.x55_c00337{left:272.331647pt;}
.x2f_c00337{left:275.737233pt;}
.x16_c00337{left:277.537333pt;}
.x92_c00337{left:281.919040pt;}
.x5d_c00337{left:283.164267pt;}
.x28_c00337{left:286.543427pt;}
.x56_c00337{left:289.157240pt;}
.xa0_c00337{left:291.012267pt;}
.x12_c00337{left:292.320000pt;}
.x1c_c00337{left:293.669333pt;}
.x38_c00337{left:295.879440pt;}
.xa9_c00337{left:302.061660pt;}
.xb7_c00337{left:303.968220pt;}
.x62_c00337{left:305.956447pt;}
.x6_c00337{left:306.960000pt;}
.x39_c00337{left:309.830107pt;}
.xa6_c00337{left:310.726233pt;}
.x30_c00337{left:311.983360pt;}
.x87_c00337{left:313.798653pt;}
.x41_c00337{left:316.024087pt;}
.x4c_c00337{left:318.608733pt;}
.x70_c00337{left:320.805053pt;}
.x1d_c00337{left:322.276000pt;}
.x80_c00337{left:323.631780pt;}
.xb8_c00337{left:324.591713pt;}
.xb4_c00337{left:328.457127pt;}
.x29_c00337{left:329.992100pt;}
.x93_c00337{left:330.951780pt;}
.x42_c00337{left:332.105660pt;}
.xaf_c00337{left:333.998667pt;}
.x17_c00337{left:337.048000pt;}
.x63_c00337{left:339.299613pt;}
.x88_c00337{left:340.201433pt;}
.xcc_c00337{left:342.099800pt;}
.x99_c00337{left:343.596133pt;}
.x8e_c00337{left:345.516507pt;}
.x69_c00337{left:347.678047pt;}
.xc8_c00337{left:348.602540pt;}
.x4d_c00337{left:351.309233pt;}
.x5e_c00337{left:353.642387pt;}
.xb9_c00337{left:355.086913pt;}
.x76_c00337{left:356.316787pt;}
.x1e_c00337{left:357.606667pt;}
.x7a_c00337{left:359.714633pt;}
.x2a_c00337{left:364.318247pt;}
.x57_c00337{left:365.994400pt;}
.xc_c00337{left:366.960000pt;}
.x7_c00337{left:368.160000pt;}
.x3a_c00337{left:369.096773pt;}
.x8_c00337{left:372.720000pt;}
.x4e_c00337{left:374.346907pt;}
.x9a_c00337{left:375.283367pt;}
.x31_c00337{left:377.505047pt;}
.xba_c00337{left:380.276220pt;}
.x71_c00337{left:382.679833pt;}
.x81_c00337{left:384.130120pt;}
.x3b_c00337{left:386.142107pt;}
.x58_c00337{left:388.752073pt;}
.xb0_c00337{left:391.832793pt;}
.x4f_c00337{left:393.352520pt;}
.x89_c00337{left:396.129980pt;}
.x8f_c00337{left:397.366293pt;}
.xa1_c00337{left:398.280307pt;}
.xaa_c00337{left:399.271607pt;}
.x1f_c00337{left:402.750667pt;}
.xc1_c00337{left:405.261873pt;}
.xc5_c00337{left:408.599140pt;}
.xcd_c00337{left:411.165727pt;}
.x13_c00337{left:412.560000pt;}
.x32_c00337{left:413.500507pt;}
.x94_c00337{left:415.381060pt;}
.x43_c00337{left:417.314940pt;}
.xbb_c00337{left:419.603007pt;}
.x20_c00337{left:421.214667pt;}
.xd_c00337{left:422.160000pt;}
.x9_c00337{left:425.040000pt;}
.x64_c00337{left:426.652913pt;}
.x6a_c00337{left:427.568447pt;}
.x9e_c00337{left:428.525947pt;}
.x33_c00337{left:430.313580pt;}
.x9b_c00337{left:432.866827pt;}
.x44_c00337{left:434.369867pt;}
.x50_c00337{left:437.231847pt;}
.x21_c00337{left:438.470667pt;}
.x59_c00337{left:440.094167pt;}
.xbc_c00337{left:442.674760pt;}
.xe_c00337{left:444.720000pt;}
.x82_c00337{left:447.011387pt;}
.x72_c00337{left:448.744147pt;}
.x7b_c00337{left:449.660007pt;}
.x9c_c00337{left:451.834633pt;}
.x6b_c00337{left:454.259913pt;}
.x95_c00337{left:456.184347pt;}
.x8a_c00337{left:457.573773pt;}
.x3c_c00337{left:458.850107pt;}
.xc2_c00337{left:460.930053pt;}
.x65_c00337{left:462.853453pt;}
.x9f_c00337{left:463.805647pt;}
.x2b_c00337{left:465.603393pt;}
.x5a_c00337{left:466.518567pt;}
.xc9_c00337{left:469.553907pt;}
.x18_c00337{left:472.384000pt;}
.x7c_c00337{left:473.457087pt;}
.x73_c00337{left:476.822740pt;}
.x5f_c00337{left:478.511460pt;}
.x34_c00337{left:481.198153pt;}
.x3d_c00337{left:482.792773pt;}
.x6c_c00337{left:484.476813pt;}
.x66_c00337{left:485.959127pt;}
.x83_c00337{left:487.562313pt;}
.x51_c00337{left:488.833960pt;}
.xbd_c00337{left:491.851920pt;}
.x45_c00337{left:493.154747pt;}
.x90_c00337{left:495.285507pt;}
.xc3_c00337{left:498.168853pt;}
.xb1_c00337{left:501.240687pt;}
.x8b_c00337{left:503.181220pt;}
.x3e_c00337{left:504.398107pt;}
.xab_c00337{left:507.710393pt;}
.x22_c00337{left:508.782667pt;}
.xce_c00337{left:511.113540pt;}
.xbe_c00337{left:515.645087pt;}
.x46_c00337{left:516.676440pt;}
.x52_c00337{left:518.605067pt;}
.x3f_c00337{left:523.384773pt;}
.xb5_c00337{left:524.314473pt;}
.xac_c00337{left:525.766420pt;}
.xca_c00337{left:528.852127pt;}
.x23_c00337{left:530.118667pt;}
.x7d_c00337{left:531.783707pt;}
.xb2_c00337{left:533.685293pt;}
.x47_c00337{left:537.084740pt;}
.x67_c00337{left:537.987907pt;}
.xbf_c00337{left:538.931527pt;}
.x84_c00337{left:540.597207pt;}
.x6d_c00337{left:542.585220pt;}
.x53_c00337{left:546.936153pt;}
.x77_c00337{left:551.202093pt;}
.x2c_c00337{left:552.162093pt;}
.xb3_c00337{left:553.119787pt;}
.x5b_c00337{left:554.125200pt;}
.x9d_c00337{left:556.924933pt;}
.x6e_c00337{left:557.947013pt;}
.x74_c00337{left:558.885107pt;}
.xa7_c00337{left:584.305220pt;}
.x96_c00337{left:587.652993pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m163_c00338{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);}
.m11c_c00338{transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088200,0.000000,0.000000,0.250000,0,0);}
.m136_c00338{transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00338{transform:matrix(0.098651,-0.001677,0.004249,0.249964,0,0);-ms-transform:matrix(0.098651,-0.001677,0.004249,0.249964,0,0);-webkit-transform:matrix(0.098651,-0.001677,0.004249,0.249964,0,0);}
.m7e_c00338{transform:matrix(0.132290,-0.001587,0.003000,0.249982,0,0);-ms-transform:matrix(0.132290,-0.001587,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132290,-0.001587,0.003000,0.249982,0,0);}
.m21_c00338{transform:matrix(0.143994,-0.002448,0.004249,0.249964,0,0);-ms-transform:matrix(0.143994,-0.002448,0.004249,0.249964,0,0);-webkit-transform:matrix(0.143994,-0.002448,0.004249,0.249964,0,0);}
.m10c_c00338{transform:matrix(0.148559,-0.001783,0.003000,0.249982,0,0);-ms-transform:matrix(0.148559,-0.001783,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148559,-0.001783,0.003000,0.249982,0,0);}
.m40_c00338{transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);-ms-transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149263,-0.002537,0.004249,0.249964,0,0);}
.mc3_c00338{transform:matrix(0.149694,-0.001796,0.003000,0.249982,0,0);-ms-transform:matrix(0.149694,-0.001796,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149694,-0.001796,0.003000,0.249982,0,0);}
.m11f_c00338{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);}
.m6b_c00338{transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);-ms-transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150059,-0.001801,0.003000,0.249982,0,0);}
.m24_c00338{transform:matrix(0.150793,-0.002563,0.004249,0.249964,0,0);-ms-transform:matrix(0.150793,-0.002563,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150793,-0.002563,0.004249,0.249964,0,0);}
.m12c_c00338{transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);-ms-transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);}
.m6f_c00338{transform:matrix(0.151639,-0.001820,0.003000,0.249982,0,0);-ms-transform:matrix(0.151639,-0.001820,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151639,-0.001820,0.003000,0.249982,0,0);}
.m130_c00338{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);}
.m123_c00338{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);}
.m12_c00338{transform:matrix(0.153263,-0.002605,0.004249,0.249964,0,0);-ms-transform:matrix(0.153263,-0.002605,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153263,-0.002605,0.004249,0.249964,0,0);}
.m90_c00338{transform:matrix(0.153674,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153674,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153674,-0.001844,0.003000,0.249982,0,0);}
.m119_c00338{transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.155158,-0.002638,0.004249,0.249964,0,0);-ms-transform:matrix(0.155158,-0.002638,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155158,-0.002638,0.004249,0.249964,0,0);}
.mab_c00338{transform:matrix(0.155474,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155474,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155474,-0.001866,0.003000,0.249982,0,0);}
.me8_c00338{transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-ms-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);}
.mda_c00338{transform:matrix(0.157224,-0.001887,0.003000,0.249982,0,0);-ms-transform:matrix(0.157224,-0.001887,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157224,-0.001887,0.003000,0.249982,0,0);}
.m152_c00338{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);}
.m10f_c00338{transform:matrix(0.157764,-0.001893,0.003000,0.249982,0,0);-ms-transform:matrix(0.157764,-0.001893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157764,-0.001893,0.003000,0.249982,0,0);}
.mb4_c00338{transform:matrix(0.158124,-0.001897,0.003000,0.249982,0,0);-ms-transform:matrix(0.158124,-0.001897,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158124,-0.001897,0.003000,0.249982,0,0);}
.mce_c00338{transform:matrix(0.159094,-0.001909,0.003000,0.249982,0,0);-ms-transform:matrix(0.159094,-0.001909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159094,-0.001909,0.003000,0.249982,0,0);}
.m100_c00338{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);}
.mef_c00338{transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);-ms-transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159569,-0.001915,0.003000,0.249982,0,0);}
.m146_c00338{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);}
.mfd_c00338{transform:matrix(0.161158,-0.001934,0.003000,0.249982,0,0);-ms-transform:matrix(0.161158,-0.001934,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161158,-0.001934,0.003000,0.249982,0,0);}
.mbc_c00338{transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);-ms-transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161263,-0.001935,0.003000,0.249982,0,0);}
.m46_c00338{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);}
.m14b_c00338{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);}
.m1_c00338{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);}
.me7_c00338{transform:matrix(0.162213,-0.001947,0.003000,0.249982,0,0);-ms-transform:matrix(0.162213,-0.001947,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162213,-0.001947,0.003000,0.249982,0,0);}
.m11b_c00338{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);}
.mc5_c00338{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);}
.m14c_c00338{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);}
.mde_c00338{transform:matrix(0.163613,-0.001963,0.003000,0.249982,0,0);-ms-transform:matrix(0.163613,-0.001963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163613,-0.001963,0.003000,0.249982,0,0);}
.m1d_c00338{transform:matrix(0.164116,-0.002790,0.004249,0.249964,0,0);-ms-transform:matrix(0.164116,-0.002790,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164116,-0.002790,0.004249,0.249964,0,0);}
.m103_c00338{transform:matrix(0.164343,-0.001972,0.003000,0.249982,0,0);-ms-transform:matrix(0.164343,-0.001972,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164343,-0.001972,0.003000,0.249982,0,0);}
.m5c_c00338{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);}
.m1b_c00338{transform:matrix(0.164866,-0.002803,0.004249,0.249964,0,0);-ms-transform:matrix(0.164866,-0.002803,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164866,-0.002803,0.004249,0.249964,0,0);}
.m151_c00338{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);}
.m104_c00338{transform:matrix(0.165403,-0.001985,0.003000,0.249982,0,0);-ms-transform:matrix(0.165403,-0.001985,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165403,-0.001985,0.003000,0.249982,0,0);}
.md2_c00338{transform:matrix(0.165503,-0.001986,0.003000,0.249982,0,0);-ms-transform:matrix(0.165503,-0.001986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165503,-0.001986,0.003000,0.249982,0,0);}
.m14d_c00338{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);}
.m154_c00338{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);}
.mae_c00338{transform:matrix(0.166293,-0.001996,0.003000,0.249982,0,0);-ms-transform:matrix(0.166293,-0.001996,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166293,-0.001996,0.003000,0.249982,0,0);}
.m142_c00338{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);}
.ma7_c00338{transform:matrix(0.166668,-0.002000,0.003000,0.249982,0,0);-ms-transform:matrix(0.166668,-0.002000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166668,-0.002000,0.003000,0.249982,0,0);}
.m54_c00338{transform:matrix(0.167773,-0.002013,0.003000,0.249982,0,0);-ms-transform:matrix(0.167773,-0.002013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167773,-0.002013,0.003000,0.249982,0,0);}
.me3_c00338{transform:matrix(0.167913,-0.002015,0.003000,0.249982,0,0);-ms-transform:matrix(0.167913,-0.002015,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167913,-0.002015,0.003000,0.249982,0,0);}
.m5d_c00338{transform:matrix(0.168183,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168183,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168183,-0.002018,0.003000,0.249982,0,0);}
.m13c_c00338{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);}
.m9a_c00338{transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-ms-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);}
.m3c_c00338{transform:matrix(0.168771,-0.002869,0.004249,0.249964,0,0);-ms-transform:matrix(0.168771,-0.002869,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168771,-0.002869,0.004249,0.249964,0,0);}
.m109_c00338{transform:matrix(0.169128,-0.002030,0.003000,0.249982,0,0);-ms-transform:matrix(0.169128,-0.002030,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169128,-0.002030,0.003000,0.249982,0,0);}
.m11a_c00338{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);}
.m98_c00338{transform:matrix(0.169373,-0.002032,0.003000,0.249982,0,0);-ms-transform:matrix(0.169373,-0.002032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169373,-0.002032,0.003000,0.249982,0,0);}
.m97_c00338{transform:matrix(0.169598,-0.002035,0.003000,0.249982,0,0);-ms-transform:matrix(0.169598,-0.002035,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169598,-0.002035,0.003000,0.249982,0,0);}
.m9d_c00338{transform:matrix(0.170078,-0.002041,0.003000,0.249982,0,0);-ms-transform:matrix(0.170078,-0.002041,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170078,-0.002041,0.003000,0.249982,0,0);}
.m8f_c00338{transform:matrix(0.170198,-0.002042,0.003000,0.249982,0,0);-ms-transform:matrix(0.170198,-0.002042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170198,-0.002042,0.003000,0.249982,0,0);}
.m9b_c00338{transform:matrix(0.170373,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170373,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170373,-0.002044,0.003000,0.249982,0,0);}
.m6a_c00338{transform:matrix(0.170518,-0.002046,0.003000,0.249982,0,0);-ms-transform:matrix(0.170518,-0.002046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170518,-0.002046,0.003000,0.249982,0,0);}
.mb3_c00338{transform:matrix(0.170628,-0.002048,0.003000,0.249982,0,0);-ms-transform:matrix(0.170628,-0.002048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170628,-0.002048,0.003000,0.249982,0,0);}
.m12b_c00338{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);}
.m10_c00338{transform:matrix(0.171425,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171425,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171425,-0.002914,0.004249,0.249964,0,0);}
.m4a_c00338{transform:matrix(0.171491,-0.002229,0.003250,0.249979,0,0);-ms-transform:matrix(0.171491,-0.002229,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171491,-0.002229,0.003250,0.249979,0,0);}
.m131_c00338{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);}
.m11_c00338{transform:matrix(0.172465,-0.002932,0.004249,0.249964,0,0);-ms-transform:matrix(0.172465,-0.002932,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172465,-0.002932,0.004249,0.249964,0,0);}
.m53_c00338{transform:matrix(0.172958,-0.002075,0.003000,0.249982,0,0);-ms-transform:matrix(0.172958,-0.002075,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172958,-0.002075,0.003000,0.249982,0,0);}
.maf_c00338{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);}
.m11d_c00338{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);}
.m121_c00338{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.me9_c00338{transform:matrix(0.174622,-0.002095,0.003000,0.249982,0,0);-ms-transform:matrix(0.174622,-0.002095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174622,-0.002095,0.003000,0.249982,0,0);}
.me2_c00338{transform:matrix(0.174767,-0.002097,0.003000,0.249982,0,0);-ms-transform:matrix(0.174767,-0.002097,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174767,-0.002097,0.003000,0.249982,0,0);}
.m116_c00338{transform:matrix(0.175342,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175342,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175342,-0.002104,0.003000,0.249982,0,0);}
.m1f_c00338{transform:matrix(0.175730,-0.002987,0.004249,0.249964,0,0);-ms-transform:matrix(0.175730,-0.002987,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175730,-0.002987,0.004249,0.249964,0,0);}
.m56_c00338{transform:matrix(0.175972,-0.002112,0.003000,0.249982,0,0);-ms-transform:matrix(0.175972,-0.002112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175972,-0.002112,0.003000,0.249982,0,0);}
.ma4_c00338{transform:matrix(0.176067,-0.002113,0.003000,0.249982,0,0);-ms-transform:matrix(0.176067,-0.002113,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176067,-0.002113,0.003000,0.249982,0,0);}
.mcb_c00338{transform:matrix(0.176222,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176222,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176222,-0.002115,0.003000,0.249982,0,0);}
.mac_c00338{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);}
.m58_c00338{transform:matrix(0.176292,-0.002116,0.003000,0.249982,0,0);-ms-transform:matrix(0.176292,-0.002116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176292,-0.002116,0.003000,0.249982,0,0);}
.m13d_c00338{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);}
.ma3_c00338{transform:matrix(0.176857,-0.002122,0.003000,0.249982,0,0);-ms-transform:matrix(0.176857,-0.002122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176857,-0.002122,0.003000,0.249982,0,0);}
.m14e_c00338{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);}
.m9f_c00338{transform:matrix(0.177052,-0.002125,0.003000,0.249982,0,0);-ms-transform:matrix(0.177052,-0.002125,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177052,-0.002125,0.003000,0.249982,0,0);}
.m155_c00338{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);}
.m10e_c00338{transform:matrix(0.177862,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177862,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177862,-0.002134,0.003000,0.249982,0,0);}
.m4c_c00338{transform:matrix(0.177905,-0.002313,0.003250,0.249979,0,0);-ms-transform:matrix(0.177905,-0.002313,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177905,-0.002313,0.003250,0.249979,0,0);}
.mfe_c00338{transform:matrix(0.178862,-0.002146,0.003000,0.249982,0,0);-ms-transform:matrix(0.178862,-0.002146,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178862,-0.002146,0.003000,0.249982,0,0);}
.m64_c00338{transform:matrix(0.179392,-0.002153,0.003000,0.249982,0,0);-ms-transform:matrix(0.179392,-0.002153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179392,-0.002153,0.003000,0.249982,0,0);}
.m50_c00338{transform:matrix(0.179397,-0.002153,0.003000,0.249982,0,0);-ms-transform:matrix(0.179397,-0.002153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179397,-0.002153,0.003000,0.249982,0,0);}
.mf2_c00338{transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);-ms-transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);}
.mf4_c00338{transform:matrix(0.179602,-0.002155,0.003000,0.249982,0,0);-ms-transform:matrix(0.179602,-0.002155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179602,-0.002155,0.003000,0.249982,0,0);}
.ma9_c00338{transform:matrix(0.179707,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179707,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179707,-0.002156,0.003000,0.249982,0,0);}
.m106_c00338{transform:matrix(0.180272,-0.002163,0.003000,0.249982,0,0);-ms-transform:matrix(0.180272,-0.002163,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180272,-0.002163,0.003000,0.249982,0,0);}
.mc4_c00338{transform:matrix(0.180567,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180567,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180567,-0.002167,0.003000,0.249982,0,0);}
.md6_c00338{transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);-ms-transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);}
.m107_c00338{transform:matrix(0.181137,-0.002174,0.003000,0.249982,0,0);-ms-transform:matrix(0.181137,-0.002174,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181137,-0.002174,0.003000,0.249982,0,0);}
.m5e_c00338{transform:matrix(0.181237,-0.002175,0.003000,0.249982,0,0);-ms-transform:matrix(0.181237,-0.002175,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181237,-0.002175,0.003000,0.249982,0,0);}
.m13a_c00338{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);}
.m157_c00338{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m158_c00338{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);}
.m5a_c00338{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);}
.mad_c00338{transform:matrix(0.181577,-0.002179,0.003000,0.249982,0,0);-ms-transform:matrix(0.181577,-0.002179,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181577,-0.002179,0.003000,0.249982,0,0);}
.mb8_c00338{transform:matrix(0.181652,-0.002180,0.003000,0.249982,0,0);-ms-transform:matrix(0.181652,-0.002180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181652,-0.002180,0.003000,0.249982,0,0);}
.m28_c00338{transform:matrix(0.181979,-0.003094,0.004249,0.249964,0,0);-ms-transform:matrix(0.181979,-0.003094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181979,-0.003094,0.004249,0.249964,0,0);}
.m2f_c00338{transform:matrix(0.182204,-0.003097,0.004249,0.249964,0,0);-ms-transform:matrix(0.182204,-0.003097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182204,-0.003097,0.004249,0.249964,0,0);}
.mf6_c00338{transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);}
.m149_c00338{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);}
.me5_c00338{transform:matrix(0.182907,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182907,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182907,-0.002195,0.003000,0.249982,0,0);}
.m45_c00338{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);}
.m4b_c00338{transform:matrix(0.183454,-0.002385,0.003250,0.249979,0,0);-ms-transform:matrix(0.183454,-0.002385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183454,-0.002385,0.003250,0.249979,0,0);}
.md9_c00338{transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);-ms-transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183667,-0.002204,0.003000,0.249982,0,0);}
.mb7_c00338{transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);-ms-transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);}
.mcd_c00338{transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);}
.md8_c00338{transform:matrix(0.183927,-0.002207,0.003000,0.249982,0,0);-ms-transform:matrix(0.183927,-0.002207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183927,-0.002207,0.003000,0.249982,0,0);}
.ma6_c00338{transform:matrix(0.184052,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184052,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184052,-0.002209,0.003000,0.249982,0,0);}
.m15e_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);}
.m7a_c00338{transform:matrix(0.184392,-0.002213,0.003000,0.249982,0,0);-ms-transform:matrix(0.184392,-0.002213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184392,-0.002213,0.003000,0.249982,0,0);}
.m89_c00338{transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184622,-0.002215,0.003000,0.249982,0,0);}
.m27_c00338{transform:matrix(0.184703,-0.003140,0.004249,0.249964,0,0);-ms-transform:matrix(0.184703,-0.003140,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184703,-0.003140,0.004249,0.249964,0,0);}
.m55_c00338{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);}
.m129_c00338{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);}
.m13e_c00338{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);}
.m12e_c00338{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);}
.mbb_c00338{transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);}
.mc6_c00338{transform:matrix(0.185647,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185647,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185647,-0.002228,0.003000,0.249982,0,0);}
.mf1_c00338{transform:matrix(0.186237,-0.002235,0.003000,0.249982,0,0);-ms-transform:matrix(0.186237,-0.002235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186237,-0.002235,0.003000,0.249982,0,0);}
.m8c_c00338{transform:matrix(0.186407,-0.002237,0.003000,0.249982,0,0);-ms-transform:matrix(0.186407,-0.002237,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186407,-0.002237,0.003000,0.249982,0,0);}
.mc8_c00338{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);}
.mfb_c00338{transform:matrix(0.187012,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.187012,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187012,-0.002244,0.003000,0.249982,0,0);}
.m2c_c00338{transform:matrix(0.187043,-0.003180,0.004249,0.249964,0,0);-ms-transform:matrix(0.187043,-0.003180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187043,-0.003180,0.004249,0.249964,0,0);}
.m153_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);}
.m128_c00338{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);}
.m6d_c00338{transform:matrix(0.187287,-0.002247,0.003000,0.249982,0,0);-ms-transform:matrix(0.187287,-0.002247,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187287,-0.002247,0.003000,0.249982,0,0);}
.m79_c00338{transform:matrix(0.187307,-0.002248,0.003000,0.249982,0,0);-ms-transform:matrix(0.187307,-0.002248,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187307,-0.002248,0.003000,0.249982,0,0);}
.m125_c00338{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);}
.m127_c00338{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);}
.m112_c00338{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);}
.m132_c00338{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);}
.m70_c00338{transform:matrix(0.188116,-0.002257,0.003000,0.249982,0,0);-ms-transform:matrix(0.188116,-0.002257,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188116,-0.002257,0.003000,0.249982,0,0);}
.m8a_c00338{transform:matrix(0.188276,-0.002259,0.003000,0.249982,0,0);-ms-transform:matrix(0.188276,-0.002259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188276,-0.002259,0.003000,0.249982,0,0);}
.m126_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);}
.m144_c00338{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);}
.m66_c00338{transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);-ms-transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);}
.m12d_c00338{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);}
.m133_c00338{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);}
.m156_c00338{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);}
.mc1_c00338{transform:matrix(0.189926,-0.002279,0.003000,0.249982,0,0);-ms-transform:matrix(0.189926,-0.002279,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189926,-0.002279,0.003000,0.249982,0,0);}
.m135_c00338{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);}
.mc0_c00338{transform:matrix(0.190376,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190376,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190376,-0.002285,0.003000,0.249982,0,0);}
.mb6_c00338{transform:matrix(0.190436,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190436,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190436,-0.002285,0.003000,0.249982,0,0);}
.mba_c00338{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);}
.m69_c00338{transform:matrix(0.190736,-0.002289,0.003000,0.249982,0,0);-ms-transform:matrix(0.190736,-0.002289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190736,-0.002289,0.003000,0.249982,0,0);}
.m16_c00338{transform:matrix(0.191032,-0.003248,0.004249,0.249964,0,0);-ms-transform:matrix(0.191032,-0.003248,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191032,-0.003248,0.004249,0.249964,0,0);}
.m91_c00338{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);}
.m67_c00338{transform:matrix(0.191431,-0.002297,0.003000,0.249982,0,0);-ms-transform:matrix(0.191431,-0.002297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191431,-0.002297,0.003000,0.249982,0,0);}
.mbd_c00338{transform:matrix(0.191656,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191656,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191656,-0.002300,0.003000,0.249982,0,0);}
.md1_c00338{transform:matrix(0.191791,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191791,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191791,-0.002301,0.003000,0.249982,0,0);}
.m150_c00338{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);}
.mb2_c00338{transform:matrix(0.192091,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192091,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192091,-0.002305,0.003000,0.249982,0,0);}
.mee_c00338{transform:matrix(0.192251,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192251,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192251,-0.002307,0.003000,0.249982,0,0);}
.m5f_c00338{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);}
.m6e_c00338{transform:matrix(0.192696,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192696,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192696,-0.002312,0.003000,0.249982,0,0);}
.m4_c00338{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);}
.m7_c00338{transform:matrix(0.192742,-0.003277,0.004249,0.249964,0,0);-ms-transform:matrix(0.192742,-0.003277,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192742,-0.003277,0.004249,0.249964,0,0);}
.m14f_c00338{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);}
.mca_c00338{transform:matrix(0.192851,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192851,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192851,-0.002314,0.003000,0.249982,0,0);}
.m99_c00338{transform:matrix(0.192886,-0.002315,0.003000,0.249982,0,0);-ms-transform:matrix(0.192886,-0.002315,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192886,-0.002315,0.003000,0.249982,0,0);}
.m117_c00338{transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193846,-0.002326,0.003000,0.249982,0,0);}
.mc7_c00338{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);}
.m1e_c00338{transform:matrix(0.194077,-0.003299,0.004249,0.249964,0,0);-ms-transform:matrix(0.194077,-0.003299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194077,-0.003299,0.004249,0.249964,0,0);}
.m3e_c00338{transform:matrix(0.194122,-0.003300,0.004249,0.249964,0,0);-ms-transform:matrix(0.194122,-0.003300,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194122,-0.003300,0.004249,0.249964,0,0);}
.m2b_c00338{transform:matrix(0.194157,-0.003301,0.004249,0.249964,0,0);-ms-transform:matrix(0.194157,-0.003301,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194157,-0.003301,0.004249,0.249964,0,0);}
.mb1_c00338{transform:matrix(0.194166,-0.002330,0.003000,0.249982,0,0);-ms-transform:matrix(0.194166,-0.002330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194166,-0.002330,0.003000,0.249982,0,0);}
.m18_c00338{transform:matrix(0.194282,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194282,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194282,-0.003303,0.004249,0.249964,0,0);}
.m8e_c00338{transform:matrix(0.194666,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194666,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194666,-0.002336,0.003000,0.249982,0,0);}
.m65_c00338{transform:matrix(0.194761,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194761,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194761,-0.002337,0.003000,0.249982,0,0);}
.mf5_c00338{transform:matrix(0.195111,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195111,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195111,-0.002341,0.003000,0.249982,0,0);}
.m8b_c00338{transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195151,-0.002342,0.003000,0.249982,0,0);}
.m124_c00338{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);}
.md3_c00338{transform:matrix(0.195466,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195466,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195466,-0.002346,0.003000,0.249982,0,0);}
.m81_c00338{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);}
.ma5_c00338{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);}
.m13f_c00338{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);}
.med_c00338{transform:matrix(0.195696,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195696,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195696,-0.002348,0.003000,0.249982,0,0);}
.m7c_c00338{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);}
.md0_c00338{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);}
.m5b_c00338{transform:matrix(0.196236,-0.002355,0.003000,0.249982,0,0);-ms-transform:matrix(0.196236,-0.002355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196236,-0.002355,0.003000,0.249982,0,0);}
.m44_c00338{transform:matrix(0.196318,-0.002552,0.003250,0.249979,0,0);-ms-transform:matrix(0.196318,-0.002552,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196318,-0.002552,0.003250,0.249979,0,0);}
.me4_c00338{transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);-ms-transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196706,-0.002360,0.003000,0.249982,0,0);}
.mfa_c00338{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);}
.m47_c00338{transform:matrix(0.197378,-0.002566,0.003250,0.249979,0,0);-ms-transform:matrix(0.197378,-0.002566,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197378,-0.002566,0.003250,0.249979,0,0);}
.m41_c00338{transform:matrix(0.197381,-0.003355,0.004249,0.249964,0,0);-ms-transform:matrix(0.197381,-0.003355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197381,-0.003355,0.004249,0.249964,0,0);}
.m134_c00338{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);}
.m138_c00338{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);}
.m14_c00338{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);}
.m82_c00338{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);}
.m148_c00338{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);}
.mf_c00338{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);}
.m57_c00338{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);}
.m11e_c00338{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);}
.mec_c00338{transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199381,-0.002393,0.003000,0.249982,0,0);}
.m160_c00338{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);}
.m8d_c00338{transform:matrix(0.200441,-0.002405,0.003000,0.249982,0,0);-ms-transform:matrix(0.200441,-0.002405,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200441,-0.002405,0.003000,0.249982,0,0);}
.mbe_c00338{transform:matrix(0.200586,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200586,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200586,-0.002407,0.003000,0.249982,0,0);}
.m94_c00338{transform:matrix(0.200981,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200981,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200981,-0.002412,0.003000,0.249982,0,0);}
.m111_c00338{transform:matrix(0.201111,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201111,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201111,-0.002413,0.003000,0.249982,0,0);}
.m2d_c00338{transform:matrix(0.201361,-0.003423,0.004249,0.249964,0,0);-ms-transform:matrix(0.201361,-0.003423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201361,-0.003423,0.004249,0.249964,0,0);}
.m145_c00338{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);}
.m14a_c00338{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);}
.m88_c00338{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);}
.m3d_c00338{transform:matrix(0.202306,-0.003439,0.004249,0.249964,0,0);-ms-transform:matrix(0.202306,-0.003439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202306,-0.003439,0.004249,0.249964,0,0);}
.m9c_c00338{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);}
.m115_c00338{transform:matrix(0.202635,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202635,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202635,-0.002432,0.003000,0.249982,0,0);}
.maa_c00338{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);}
.m7d_c00338{transform:matrix(0.203675,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203675,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203675,-0.002444,0.003000,0.249982,0,0);}
.ma8_c00338{transform:matrix(0.203890,-0.002447,0.003000,0.249982,0,0);-ms-transform:matrix(0.203890,-0.002447,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203890,-0.002447,0.003000,0.249982,0,0);}
.m110_c00338{transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);-ms-transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);}
.mfc_c00338{transform:matrix(0.204470,-0.002454,0.003000,0.249982,0,0);-ms-transform:matrix(0.204470,-0.002454,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204470,-0.002454,0.003000,0.249982,0,0);}
.m25_c00338{transform:matrix(0.204490,-0.003476,0.004249,0.249964,0,0);-ms-transform:matrix(0.204490,-0.003476,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204490,-0.003476,0.004249,0.249964,0,0);}
.m38_c00338{transform:matrix(0.204630,-0.003479,0.004249,0.249964,0,0);-ms-transform:matrix(0.204630,-0.003479,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204630,-0.003479,0.004249,0.249964,0,0);}
.mf0_c00338{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);}
.ma1_c00338{transform:matrix(0.205185,-0.002462,0.003000,0.249982,0,0);-ms-transform:matrix(0.205185,-0.002462,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205185,-0.002462,0.003000,0.249982,0,0);}
.m74_c00338{transform:matrix(0.205215,-0.002463,0.003000,0.249982,0,0);-ms-transform:matrix(0.205215,-0.002463,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205215,-0.002463,0.003000,0.249982,0,0);}
.m4f_c00338{transform:matrix(0.205320,-0.002464,0.003000,0.249982,0,0);-ms-transform:matrix(0.205320,-0.002464,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205320,-0.002464,0.003000,0.249982,0,0);}
.m143_c00338{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);}
.m15_c00338{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);}
.mff_c00338{transform:matrix(0.206915,-0.002483,0.003000,0.249982,0,0);-ms-transform:matrix(0.206915,-0.002483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206915,-0.002483,0.003000,0.249982,0,0);}
.m92_c00338{transform:matrix(0.207290,-0.002487,0.003000,0.249982,0,0);-ms-transform:matrix(0.207290,-0.002487,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207290,-0.002487,0.003000,0.249982,0,0);}
.m13_c00338{transform:matrix(0.207400,-0.003526,0.004249,0.249964,0,0);-ms-transform:matrix(0.207400,-0.003526,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207400,-0.003526,0.004249,0.249964,0,0);}
.m29_c00338{transform:matrix(0.207455,-0.003527,0.004249,0.249964,0,0);-ms-transform:matrix(0.207455,-0.003527,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207455,-0.003527,0.004249,0.249964,0,0);}
.m30_c00338{transform:matrix(0.207580,-0.003529,0.004249,0.249964,0,0);-ms-transform:matrix(0.207580,-0.003529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207580,-0.003529,0.004249,0.249964,0,0);}
.mcf_c00338{transform:matrix(0.207695,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207695,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207695,-0.002492,0.003000,0.249982,0,0);}
.m3a_c00338{transform:matrix(0.207720,-0.003531,0.004249,0.249964,0,0);-ms-transform:matrix(0.207720,-0.003531,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207720,-0.003531,0.004249,0.249964,0,0);}
.m102_c00338{transform:matrix(0.208020,-0.002496,0.003000,0.249982,0,0);-ms-transform:matrix(0.208020,-0.002496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208020,-0.002496,0.003000,0.249982,0,0);}
.m31_c00338{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);}
.m6c_c00338{transform:matrix(0.208510,-0.002502,0.003000,0.249982,0,0);-ms-transform:matrix(0.208510,-0.002502,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208510,-0.002502,0.003000,0.249982,0,0);}
.m10d_c00338{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);}
.m4e_c00338{transform:matrix(0.208887,-0.002716,0.003250,0.249979,0,0);-ms-transform:matrix(0.208887,-0.002716,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208887,-0.002716,0.003250,0.249979,0,0);}
.mb5_c00338{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);}
.m9e_c00338{transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);-ms-transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209070,-0.002509,0.003000,0.249982,0,0);}
.m113_c00338{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);}
.m1a_c00338{transform:matrix(0.210135,-0.003572,0.004249,0.249964,0,0);-ms-transform:matrix(0.210135,-0.003572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210135,-0.003572,0.004249,0.249964,0,0);}
.m114_c00338{transform:matrix(0.210390,-0.002525,0.003000,0.249982,0,0);-ms-transform:matrix(0.210390,-0.002525,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210390,-0.002525,0.003000,0.249982,0,0);}
.m39_c00338{transform:matrix(0.210535,-0.003579,0.004249,0.249964,0,0);-ms-transform:matrix(0.210535,-0.003579,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210535,-0.003579,0.004249,0.249964,0,0);}
.m87_c00338{transform:matrix(0.210715,-0.002529,0.003000,0.249982,0,0);-ms-transform:matrix(0.210715,-0.002529,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210715,-0.002529,0.003000,0.249982,0,0);}
.m140_c00338{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);}
.m2e_c00338{transform:matrix(0.211114,-0.003589,0.004249,0.249964,0,0);-ms-transform:matrix(0.211114,-0.003589,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211114,-0.003589,0.004249,0.249964,0,0);}
.m5_c00338{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);}
.m3f_c00338{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);}
.m26_c00338{transform:matrix(0.212554,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212554,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212554,-0.003613,0.004249,0.249964,0,0);}
.m139_c00338{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);}
.m165_c00338{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);}
.m95_c00338{transform:matrix(0.213395,-0.002561,0.003000,0.249982,0,0);-ms-transform:matrix(0.213395,-0.002561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213395,-0.002561,0.003000,0.249982,0,0);}
.mb9_c00338{transform:matrix(0.214790,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214790,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214790,-0.002577,0.003000,0.249982,0,0);}
.m10b_c00338{transform:matrix(0.214845,-0.002578,0.003000,0.249982,0,0);-ms-transform:matrix(0.214845,-0.002578,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214845,-0.002578,0.003000,0.249982,0,0);}
.m162_c00338{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);}
.m23_c00338{transform:matrix(0.215704,-0.003667,0.004249,0.249964,0,0);-ms-transform:matrix(0.215704,-0.003667,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215704,-0.003667,0.004249,0.249964,0,0);}
.me1_c00338{transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);-ms-transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);}
.mbf_c00338{transform:matrix(0.217074,-0.002605,0.003000,0.249982,0,0);-ms-transform:matrix(0.217074,-0.002605,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217074,-0.002605,0.003000,0.249982,0,0);}
.m60_c00338{transform:matrix(0.217259,-0.002607,0.003000,0.249982,0,0);-ms-transform:matrix(0.217259,-0.002607,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217259,-0.002607,0.003000,0.249982,0,0);}
.m48_c00338{transform:matrix(0.217502,-0.002828,0.003250,0.249979,0,0);-ms-transform:matrix(0.217502,-0.002828,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217502,-0.002828,0.003250,0.249979,0,0);}
.m62_c00338{transform:matrix(0.217834,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217834,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217834,-0.002614,0.003000,0.249982,0,0);}
.m101_c00338{transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);-ms-transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219539,-0.002634,0.003000,0.249982,0,0);}
.m59_c00338{transform:matrix(0.219684,-0.002636,0.003000,0.249982,0,0);-ms-transform:matrix(0.219684,-0.002636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219684,-0.002636,0.003000,0.249982,0,0);}
.m75_c00338{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);}
.m76_c00338{transform:matrix(0.221279,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221279,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221279,-0.002655,0.003000,0.249982,0,0);}
.me0_c00338{transform:matrix(0.221604,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221604,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221604,-0.002659,0.003000,0.249982,0,0);}
.me_c00338{transform:matrix(0.221683,-0.003769,0.004249,0.249964,0,0);-ms-transform:matrix(0.221683,-0.003769,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221683,-0.003769,0.004249,0.249964,0,0);}
.m9_c00338{transform:matrix(0.221743,-0.003770,0.004249,0.249964,0,0);-ms-transform:matrix(0.221743,-0.003770,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221743,-0.003770,0.004249,0.249964,0,0);}
.m35_c00338{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);}
.m118_c00338{transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);}
.mc2_c00338{transform:matrix(0.222454,-0.002669,0.003000,0.249982,0,0);-ms-transform:matrix(0.222454,-0.002669,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222454,-0.002669,0.003000,0.249982,0,0);}
.m17_c00338{transform:matrix(0.222603,-0.003784,0.004249,0.249964,0,0);-ms-transform:matrix(0.222603,-0.003784,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222603,-0.003784,0.004249,0.249964,0,0);}
.mdd_c00338{transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);-ms-transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223319,-0.002680,0.003000,0.249982,0,0);}
.m105_c00338{transform:matrix(0.224104,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224104,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224104,-0.002689,0.003000,0.249982,0,0);}
.m33_c00338{transform:matrix(0.224218,-0.003812,0.004249,0.249964,0,0);-ms-transform:matrix(0.224218,-0.003812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224218,-0.003812,0.004249,0.249964,0,0);}
.mb_c00338{transform:matrix(0.224223,-0.003812,0.004249,0.249964,0,0);-ms-transform:matrix(0.224223,-0.003812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224223,-0.003812,0.004249,0.249964,0,0);}
.m63_c00338{transform:matrix(0.224289,-0.002691,0.003000,0.249982,0,0);-ms-transform:matrix(0.224289,-0.002691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224289,-0.002691,0.003000,0.249982,0,0);}
.m10a_c00338{transform:matrix(0.224519,-0.002694,0.003000,0.249982,0,0);-ms-transform:matrix(0.224519,-0.002694,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224519,-0.002694,0.003000,0.249982,0,0);}
.mf3_c00338{transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);-ms-transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224794,-0.002698,0.003000,0.249982,0,0);}
.m7b_c00338{transform:matrix(0.225259,-0.002703,0.003000,0.249982,0,0);-ms-transform:matrix(0.225259,-0.002703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225259,-0.002703,0.003000,0.249982,0,0);}
.mdf_c00338{transform:matrix(0.225299,-0.002704,0.003000,0.249982,0,0);-ms-transform:matrix(0.225299,-0.002704,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225299,-0.002704,0.003000,0.249982,0,0);}
.me6_c00338{transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);-ms-transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226104,-0.002713,0.003000,0.249982,0,0);}
.m71_c00338{transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228274,-0.002739,0.003000,0.249982,0,0);}
.m51_c00338{transform:matrix(0.228309,-0.002740,0.003000,0.249982,0,0);-ms-transform:matrix(0.228309,-0.002740,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228309,-0.002740,0.003000,0.249982,0,0);}
.m80_c00338{transform:matrix(0.228729,-0.002745,0.003000,0.249982,0,0);-ms-transform:matrix(0.228729,-0.002745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228729,-0.002745,0.003000,0.249982,0,0);}
.m120_c00338{transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);}
.m159_c00338{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);}
.m37_c00338{transform:matrix(0.231447,-0.003935,0.004249,0.249964,0,0);-ms-transform:matrix(0.231447,-0.003935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231447,-0.003935,0.004249,0.249964,0,0);}
.m61_c00338{transform:matrix(0.233718,-0.002805,0.003000,0.249982,0,0);-ms-transform:matrix(0.233718,-0.002805,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233718,-0.002805,0.003000,0.249982,0,0);}
.m32_c00338{transform:matrix(0.233781,-0.003974,0.004249,0.249964,0,0);-ms-transform:matrix(0.233781,-0.003974,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233781,-0.003974,0.004249,0.249964,0,0);}
.m20_c00338{transform:matrix(0.233801,-0.003975,0.004249,0.249964,0,0);-ms-transform:matrix(0.233801,-0.003975,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233801,-0.003975,0.004249,0.249964,0,0);}
.m12f_c00338{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m147_c00338{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);}
.m4d_c00338{transform:matrix(0.236005,-0.003068,0.003250,0.249979,0,0);-ms-transform:matrix(0.236005,-0.003068,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236005,-0.003068,0.003250,0.249979,0,0);}
.m93_c00338{transform:matrix(0.236138,-0.002834,0.003000,0.249982,0,0);-ms-transform:matrix(0.236138,-0.002834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236138,-0.002834,0.003000,0.249982,0,0);}
.m12a_c00338{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);}
.m34_c00338{transform:matrix(0.236341,-0.004018,0.004249,0.249964,0,0);-ms-transform:matrix(0.236341,-0.004018,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236341,-0.004018,0.004249,0.249964,0,0);}
.md5_c00338{transform:matrix(0.238433,-0.002861,0.003000,0.249982,0,0);-ms-transform:matrix(0.238433,-0.002861,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238433,-0.002861,0.003000,0.249982,0,0);}
.mdb_c00338{transform:matrix(0.239563,-0.002875,0.003000,0.249982,0,0);-ms-transform:matrix(0.239563,-0.002875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239563,-0.002875,0.003000,0.249982,0,0);}
.m1c_c00338{transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);-ms-transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);}
.m122_c00338{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);}
.m77_c00338{transform:matrix(0.240938,-0.002891,0.003000,0.249982,0,0);-ms-transform:matrix(0.240938,-0.002891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240938,-0.002891,0.003000,0.249982,0,0);}
.m141_c00338{transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243890,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{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);}
.ma0_c00338{transform:matrix(0.245312,-0.002944,0.003000,0.249982,0,0);-ms-transform:matrix(0.245312,-0.002944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245312,-0.002944,0.003000,0.249982,0,0);}
.ma2_c00338{transform:matrix(0.245952,-0.002951,0.003000,0.249982,0,0);-ms-transform:matrix(0.245952,-0.002951,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245952,-0.002951,0.003000,0.249982,0,0);}
.m52_c00338{transform:matrix(0.248287,-0.002979,0.003000,0.249982,0,0);-ms-transform:matrix(0.248287,-0.002979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248287,-0.002979,0.003000,0.249982,0,0);}
.m19_c00338{transform:matrix(0.249019,-0.004233,0.004249,0.249964,0,0);-ms-transform:matrix(0.249019,-0.004233,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249019,-0.004233,0.004249,0.249964,0,0);}
.mc9_c00338{transform:matrix(0.250252,-0.003003,0.003000,0.249982,0,0);-ms-transform:matrix(0.250252,-0.003003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250252,-0.003003,0.003000,0.249982,0,0);}
.mcc_c00338{transform:matrix(0.254012,-0.003048,0.003000,0.249982,0,0);-ms-transform:matrix(0.254012,-0.003048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254012,-0.003048,0.003000,0.249982,0,0);}
.m68_c00338{transform:matrix(0.258166,-0.003098,0.003000,0.249982,0,0);-ms-transform:matrix(0.258166,-0.003098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258166,-0.003098,0.003000,0.249982,0,0);}
.m6_c00338{transform:matrix(0.258878,-0.004401,0.004249,0.249964,0,0);-ms-transform:matrix(0.258878,-0.004401,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258878,-0.004401,0.004249,0.249964,0,0);}
.m13b_c00338{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);}
.m78_c00338{transform:matrix(0.260341,-0.003124,0.003000,0.249982,0,0);-ms-transform:matrix(0.260341,-0.003124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260341,-0.003124,0.003000,0.249982,0,0);}
.mb0_c00338{transform:matrix(0.263251,-0.003159,0.003000,0.249982,0,0);-ms-transform:matrix(0.263251,-0.003159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263251,-0.003159,0.003000,0.249982,0,0);}
.m15f_c00338{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);}
.m42_c00338{transform:matrix(0.267767,-0.003481,0.003250,0.249979,0,0);-ms-transform:matrix(0.267767,-0.003481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267767,-0.003481,0.003250,0.249979,0,0);}
.m96_c00338{transform:matrix(0.271370,-0.003256,0.003000,0.249982,0,0);-ms-transform:matrix(0.271370,-0.003256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271370,-0.003256,0.003000,0.249982,0,0);}
.m3b_c00338{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);}
.m137_c00338{transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);}
.m73_c00338{transform:matrix(0.281905,-0.003383,0.003000,0.249982,0,0);-ms-transform:matrix(0.281905,-0.003383,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281905,-0.003383,0.003000,0.249982,0,0);}
.m86_c00338{transform:matrix(0.283390,-0.003401,0.003000,0.249982,0,0);-ms-transform:matrix(0.283390,-0.003401,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283390,-0.003401,0.003000,0.249982,0,0);}
.m0_c00338{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);}
.mf9_c00338{transform:matrix(0.288649,-0.003464,0.003000,0.249982,0,0);-ms-transform:matrix(0.288649,-0.003464,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288649,-0.003464,0.003000,0.249982,0,0);}
.m36_c00338{transform:matrix(0.291888,-0.004962,0.004249,0.249964,0,0);-ms-transform:matrix(0.291888,-0.004962,0.004249,0.249964,0,0);-webkit-transform:matrix(0.291888,-0.004962,0.004249,0.249964,0,0);}
.md_c00338{transform:matrix(0.292088,-0.004965,0.004249,0.249964,0,0);-ms-transform:matrix(0.292088,-0.004965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.292088,-0.004965,0.004249,0.249964,0,0);}
.m72_c00338{transform:matrix(0.303433,-0.003641,0.003000,0.249982,0,0);-ms-transform:matrix(0.303433,-0.003641,0.003000,0.249982,0,0);-webkit-transform:matrix(0.303433,-0.003641,0.003000,0.249982,0,0);}
.m15c_c00338{transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305515,0.000000,0.000000,0.250000,0,0);}
.m15d_c00338{transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305555,0.000000,0.000000,0.250000,0,0);}
.m83_c00338{transform:matrix(0.312892,-0.003755,0.003000,0.249982,0,0);-ms-transform:matrix(0.312892,-0.003755,0.003000,0.249982,0,0);-webkit-transform:matrix(0.312892,-0.003755,0.003000,0.249982,0,0);}
.m85_c00338{transform:matrix(0.315357,-0.003784,0.003000,0.249982,0,0);-ms-transform:matrix(0.315357,-0.003784,0.003000,0.249982,0,0);-webkit-transform:matrix(0.315357,-0.003784,0.003000,0.249982,0,0);}
.mf7_c00338{transform:matrix(0.324387,-0.003893,0.003000,0.249982,0,0);-ms-transform:matrix(0.324387,-0.003893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.324387,-0.003893,0.003000,0.249982,0,0);}
.m43_c00338{transform:matrix(0.327487,-0.004257,0.003250,0.249979,0,0);-ms-transform:matrix(0.327487,-0.004257,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327487,-0.004257,0.003250,0.249979,0,0);}
.mea_c00338{transform:matrix(0.328411,-0.003941,0.003000,0.249982,0,0);-ms-transform:matrix(0.328411,-0.003941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328411,-0.003941,0.003000,0.249982,0,0);}
.md4_c00338{transform:matrix(0.332531,-0.003990,0.003000,0.249982,0,0);-ms-transform:matrix(0.332531,-0.003990,0.003000,0.249982,0,0);-webkit-transform:matrix(0.332531,-0.003990,0.003000,0.249982,0,0);}
.m49_c00338{transform:matrix(0.349240,-0.004540,0.003250,0.249979,0,0);-ms-transform:matrix(0.349240,-0.004540,0.003250,0.249979,0,0);-webkit-transform:matrix(0.349240,-0.004540,0.003250,0.249979,0,0);}
.m108_c00338{transform:matrix(0.352840,-0.004234,0.003000,0.249982,0,0);-ms-transform:matrix(0.352840,-0.004234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.352840,-0.004234,0.003000,0.249982,0,0);}
.md7_c00338{transform:matrix(0.379948,-0.004559,0.003000,0.249982,0,0);-ms-transform:matrix(0.379948,-0.004559,0.003000,0.249982,0,0);-webkit-transform:matrix(0.379948,-0.004559,0.003000,0.249982,0,0);}
.m84_c00338{transform:matrix(0.388807,-0.004666,0.003000,0.249982,0,0);-ms-transform:matrix(0.388807,-0.004666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.388807,-0.004666,0.003000,0.249982,0,0);}
.m15b_c00338{transform:matrix(0.397130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397130,0.000000,0.000000,0.250000,0,0);}
.mf8_c00338{transform:matrix(0.405596,-0.004867,0.003000,0.249982,0,0);-ms-transform:matrix(0.405596,-0.004867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.405596,-0.004867,0.003000,0.249982,0,0);}
.mc_c00338{transform:matrix(0.413090,-0.007023,0.004249,0.249964,0,0);-ms-transform:matrix(0.413090,-0.007023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.413090,-0.007023,0.004249,0.249964,0,0);}
.m8_c00338{transform:matrix(0.421889,-0.007172,0.004249,0.249964,0,0);-ms-transform:matrix(0.421889,-0.007172,0.004249,0.249964,0,0);-webkit-transform:matrix(0.421889,-0.007172,0.004249,0.249964,0,0);}
.m161_c00338{transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00338{transform:matrix(0.434759,-0.005217,0.003000,0.249982,0,0);-ms-transform:matrix(0.434759,-0.005217,0.003000,0.249982,0,0);-webkit-transform:matrix(0.434759,-0.005217,0.003000,0.249982,0,0);}
.m164_c00338{transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441790,0.000000,0.000000,0.250000,0,0);}
.meb_c00338{transform:matrix(0.457752,-0.005493,0.003000,0.249982,0,0);-ms-transform:matrix(0.457752,-0.005493,0.003000,0.249982,0,0);-webkit-transform:matrix(0.457752,-0.005493,0.003000,0.249982,0,0);}
.m15a_c00338{transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.471270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471270,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.584115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584115,0.000000,0.000000,0.250000,0,0);}
.m168_c00338{transform:matrix(0.631175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631175,0.000000,0.000000,0.250000,0,0);}
.m169_c00338{transform:matrix(0.894550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894550,0.000000,0.000000,0.250000,0,0);}
.m166_c00338{transform:matrix(1.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250765,0.000000,0.000000,0.250000,0,0);}
.m167_c00338{transform:matrix(1.536510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.536510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.536510,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;}
.fs13_c00338{font-size:22.050000px;}
.fs14_c00338{font-size:63.000000px;}
.fs4_c00338{font-size:63.009103px;}
.fsd_c00338{font-size:66.154763px;}
.fs10_c00338{font-size:67.200000px;}
.fsa_c00338{font-size:67.204838px;}
.fsb_c00338{font-size:68.254914px;}
.fs5_c00338{font-size:68.259861px;}
.fsf_c00338{font-size:69.300000px;}
.fs9_c00338{font-size:69.304989px;}
.fs1_c00338{font-size:69.310013px;}
.fs11_c00338{font-size:70.350000px;}
.fs7_c00338{font-size:70.355065px;}
.fs2_c00338{font-size:70.360165px;}
.fse_c00338{font-size:71.400000px;}
.fs8_c00338{font-size:71.405141px;}
.fs12_c00338{font-size:73.500000px;}
.fsc_c00338{font-size:73.505292px;}
.fs6_c00338{font-size:73.506210px;}
.fs3_c00338{font-size:73.510620px;}
.fs0_c00338{font-size:87.150000px;}
.y0_c00338{bottom:0.000000px;}
.y126_c00338{bottom:97.200000px;}
.y128_c00338{bottom:99.376500px;}
.y127_c00338{bottom:118.822500px;}
.y125_c00338{bottom:171.807000px;}
.y124_c00338{bottom:195.021000px;}
.y123_c00338{bottom:218.004000px;}
.y119_c00338{bottom:238.681500px;}
.y11a_c00338{bottom:239.080500px;}
.y11b_c00338{bottom:239.436000px;}
.y11c_c00338{bottom:239.640000px;}
.y11d_c00338{bottom:239.970000px;}
.y11e_c00338{bottom:240.370500px;}
.y11f_c00338{bottom:240.532500px;}
.y120_c00338{bottom:241.090500px;}
.y121_c00338{bottom:241.617000px;}
.y122_c00338{bottom:241.725000px;}
.y118_c00338{bottom:263.605500px;}
.y117_c00338{bottom:286.587000px;}
.y10f_c00338{bottom:309.222474px;}
.y10d_c00338{bottom:309.222510px;}
.y10c_c00338{bottom:309.222786px;}
.y10e_c00338{bottom:309.222792px;}
.y116_c00338{bottom:309.222888px;}
.y110_c00338{bottom:309.223158px;}
.y114_c00338{bottom:309.223602px;}
.y115_c00338{bottom:309.223626px;}
.y112_c00338{bottom:309.223872px;}
.y111_c00338{bottom:309.223884px;}
.y113_c00338{bottom:309.224256px;}
.y108_c00338{bottom:332.172246px;}
.y107_c00338{bottom:332.172264px;}
.y103_c00338{bottom:332.172342px;}
.y105_c00338{bottom:332.172456px;}
.y109_c00338{bottom:332.172510px;}
.y106_c00338{bottom:332.172540px;}
.y102_c00338{bottom:332.172876px;}
.y104_c00338{bottom:332.172906px;}
.y10a_c00338{bottom:332.173158px;}
.y10b_c00338{bottom:332.173260px;}
.yf3_c00338{bottom:353.414700px;}
.yf4_c00338{bottom:353.612814px;}
.yf5_c00338{bottom:353.892888px;}
.yf6_c00338{bottom:354.147360px;}
.yf7_c00338{bottom:354.150786px;}
.yf8_c00338{bottom:354.322572px;}
.yf9_c00338{bottom:354.490860px;}
.yfa_c00338{bottom:354.796524px;}
.yfb_c00338{bottom:355.076868px;}
.yfc_c00338{bottom:355.339764px;}
.yfd_c00338{bottom:355.748586px;}
.yfe_c00338{bottom:355.958190px;}
.yff_c00338{bottom:356.157102px;}
.y100_c00338{bottom:356.387688px;}
.y101_c00338{bottom:356.531892px;}
.yec_c00338{bottom:378.331476px;}
.yeb_c00338{bottom:378.331530px;}
.yea_c00338{bottom:378.331860px;}
.yed_c00338{bottom:378.331920px;}
.yee_c00338{bottom:378.332082px;}
.yef_c00338{bottom:378.332430px;}
.yf2_c00338{bottom:378.332682px;}
.yf1_c00338{bottom:378.332940px;}
.yf0_c00338{bottom:378.333156px;}
.ye2_c00338{bottom:399.586254px;}
.ye3_c00338{bottom:399.948834px;}
.ye4_c00338{bottom:400.393698px;}
.ye5_c00338{bottom:400.537884px;}
.ye6_c00338{bottom:400.744188px;}
.ye7_c00338{bottom:400.934820px;}
.ye8_c00338{bottom:401.218464px;}
.ye9_c00338{bottom:401.570586px;}
.yd6_c00338{bottom:423.975168px;}
.yd8_c00338{bottom:423.975420px;}
.yd7_c00338{bottom:423.975696px;}
.ye1_c00338{bottom:423.975732px;}
.ydf_c00338{bottom:423.975786px;}
.yd9_c00338{bottom:423.975882px;}
.yde_c00338{bottom:423.976140px;}
.ye0_c00338{bottom:423.976350px;}
.yda_c00338{bottom:423.976608px;}
.ydd_c00338{bottom:423.976638px;}
.ydc_c00338{bottom:423.976812px;}
.ydb_c00338{bottom:423.977070px;}
.yce_c00338{bottom:446.690694px;}
.ycb_c00338{bottom:446.690742px;}
.ycc_c00338{bottom:446.690826px;}
.yca_c00338{bottom:446.691000px;}
.ycf_c00338{bottom:446.691276px;}
.ycd_c00338{bottom:446.691312px;}
.yd1_c00338{bottom:446.691546px;}
.yd3_c00338{bottom:446.691756px;}
.yd0_c00338{bottom:446.691762px;}
.yd5_c00338{bottom:446.692188px;}
.yd2_c00338{bottom:446.692254px;}
.yd4_c00338{bottom:446.692260px;}
.yc3_c00338{bottom:469.869606px;}
.yc4_c00338{bottom:469.869888px;}
.yc2_c00338{bottom:469.870062px;}
.yc1_c00338{bottom:469.870218px;}
.yc5_c00338{bottom:469.870512px;}
.ybf_c00338{bottom:469.870590px;}
.yc0_c00338{bottom:469.870836px;}
.yc6_c00338{bottom:469.871136px;}
.yc7_c00338{bottom:469.871784px;}
.yc8_c00338{bottom:469.872306px;}
.yc9_c00338{bottom:469.872912px;}
.yb7_c00338{bottom:493.098792px;}
.ybc_c00338{bottom:493.098852px;}
.yb4_c00338{bottom:493.098936px;}
.yb6_c00338{bottom:493.099344px;}
.yba_c00338{bottom:493.099422px;}
.yb5_c00338{bottom:493.099440px;}
.yb8_c00338{bottom:493.099476px;}
.ybb_c00338{bottom:493.099506px;}
.ybd_c00338{bottom:493.099560px;}
.yb9_c00338{bottom:493.099980px;}
.ybe_c00338{bottom:493.100082px;}
.ya9_c00338{bottom:513.530652px;}
.yaa_c00338{bottom:513.826068px;}
.yab_c00338{bottom:514.259826px;}
.yac_c00338{bottom:514.551294px;}
.yad_c00338{bottom:514.769610px;}
.yae_c00338{bottom:515.162322px;}
.yaf_c00338{bottom:515.488458px;}
.yb0_c00338{bottom:515.976162px;}
.yb1_c00338{bottom:516.217578px;}
.yb2_c00338{bottom:516.570180px;}
.yb3_c00338{bottom:516.985368px;}
.y9f_c00338{bottom:536.752098px;}
.ya0_c00338{bottom:537.223080px;}
.ya1_c00338{bottom:537.663558px;}
.ya2_c00338{bottom:538.037664px;}
.ya3_c00338{bottom:538.353654px;}
.ya4_c00338{bottom:538.898724px;}
.ya5_c00338{bottom:539.360562px;}
.ya6_c00338{bottom:539.718852px;}
.ya7_c00338{bottom:540.083448px;}
.ya8_c00338{bottom:540.415908px;}
.y93_c00338{bottom:558.890364px;}
.y94_c00338{bottom:559.148808px;}
.y95_c00338{bottom:559.480020px;}
.y96_c00338{bottom:560.165664px;}
.y97_c00338{bottom:560.531832px;}
.y98_c00338{bottom:560.806146px;}
.y99_c00338{bottom:561.081360px;}
.y9a_c00338{bottom:561.698748px;}
.y9b_c00338{bottom:561.850056px;}
.y9c_c00338{bottom:562.309416px;}
.y9d_c00338{bottom:562.509168px;}
.y9e_c00338{bottom:562.672842px;}
.y87_c00338{bottom:581.571120px;}
.y88_c00338{bottom:581.877864px;}
.y89_c00338{bottom:582.244698px;}
.y8a_c00338{bottom:582.422736px;}
.y8b_c00338{bottom:583.104618px;}
.y8c_c00338{bottom:583.620606px;}
.y8d_c00338{bottom:583.926864px;}
.y8e_c00338{bottom:584.113398px;}
.y8f_c00338{bottom:584.349282px;}
.y90_c00338{bottom:584.797824px;}
.y91_c00338{bottom:585.109062px;}
.y92_c00338{bottom:585.758124px;}
.y79_c00338{bottom:603.445794px;}
.y7a_c00338{bottom:604.195890px;}
.y7b_c00338{bottom:604.340034px;}
.y7c_c00338{bottom:604.647684px;}
.y7d_c00338{bottom:604.900422px;}
.y7e_c00338{bottom:605.480298px;}
.y7f_c00338{bottom:605.901738px;}
.y80_c00338{bottom:606.340830px;}
.y81_c00338{bottom:606.578832px;}
.y82_c00338{bottom:606.951978px;}
.y83_c00338{bottom:607.064868px;}
.y84_c00338{bottom:607.771866px;}
.y85_c00338{bottom:608.274888px;}
.y86_c00338{bottom:608.430570px;}
.y6d_c00338{bottom:625.585602px;}
.y6e_c00338{bottom:625.929996px;}
.y6f_c00338{bottom:626.306454px;}
.y70_c00338{bottom:626.577888px;}
.y71_c00338{bottom:627.034956px;}
.y72_c00338{bottom:627.480384px;}
.y73_c00338{bottom:628.012344px;}
.y74_c00338{bottom:628.436664px;}
.y75_c00338{bottom:628.694598px;}
.y76_c00338{bottom:629.197410px;}
.y77_c00338{bottom:630.076716px;}
.y78_c00338{bottom:630.377082px;}
.y61_c00338{bottom:648.538890px;}
.y62_c00338{bottom:649.101582px;}
.y63_c00338{bottom:649.633770px;}
.y64_c00338{bottom:650.098206px;}
.y65_c00338{bottom:650.943402px;}
.y66_c00338{bottom:651.346926px;}
.y67_c00338{bottom:651.663336px;}
.y68_c00338{bottom:652.067400px;}
.y69_c00338{bottom:652.990074px;}
.y6a_c00338{bottom:653.540754px;}
.y6b_c00338{bottom:653.972364px;}
.y6c_c00338{bottom:654.329268px;}
.y57_c00338{bottom:671.760516px;}
.y58_c00338{bottom:672.755034px;}
.y59_c00338{bottom:673.161414px;}
.y5a_c00338{bottom:673.624854px;}
.y5b_c00338{bottom:673.867548px;}
.y5c_c00338{bottom:674.483322px;}
.y5d_c00338{bottom:675.348846px;}
.y5e_c00338{bottom:675.613296px;}
.y5f_c00338{bottom:676.144500px;}
.y60_c00338{bottom:676.666416px;}
.y4b_c00338{bottom:694.441500px;}
.y4c_c00338{bottom:694.933980px;}
.y4d_c00338{bottom:695.251554px;}
.y4e_c00338{bottom:695.660622px;}
.y4f_c00338{bottom:696.323382px;}
.y50_c00338{bottom:696.664680px;}
.y51_c00338{bottom:697.098498px;}
.y52_c00338{bottom:697.432110px;}
.y53_c00338{bottom:697.857648px;}
.y54_c00338{bottom:698.591562px;}
.y55_c00338{bottom:699.107622px;}
.y56_c00338{bottom:699.966402px;}
.y3e_c00338{bottom:717.123000px;}
.y3f_c00338{bottom:717.541021px;}
.y40_c00338{bottom:717.758251px;}
.y41_c00338{bottom:718.533220px;}
.y42_c00338{bottom:719.091545px;}
.y43_c00338{bottom:719.516820px;}
.y44_c00338{bottom:719.837302px;}
.y45_c00338{bottom:720.493809px;}
.y46_c00338{bottom:720.650784px;}
.y47_c00338{bottom:721.194932px;}
.y48_c00338{bottom:721.763044px;}
.y49_c00338{bottom:722.448762px;}
.y4a_c00338{bottom:723.055446px;}
.y34_c00338{bottom:739.517821px;}
.y35_c00338{bottom:740.447442px;}
.y36_c00338{bottom:740.971974px;}
.y37_c00338{bottom:741.901722px;}
.y38_c00338{bottom:742.319238px;}
.y39_c00338{bottom:742.756968px;}
.y3a_c00338{bottom:743.452690px;}
.y3b_c00338{bottom:744.106476px;}
.y3c_c00338{bottom:744.834330px;}
.y3d_c00338{bottom:744.966975px;}
.y24_c00338{bottom:762.741984px;}
.y25_c00338{bottom:763.053537px;}
.y26_c00338{bottom:763.818313px;}
.y27_c00338{bottom:764.011857px;}
.y28_c00338{bottom:764.439996px;}
.y29_c00338{bottom:764.947183px;}
.y2a_c00338{bottom:765.646384px;}
.y2b_c00338{bottom:766.202742px;}
.y2c_c00338{bottom:766.500240px;}
.y2d_c00338{bottom:767.264736px;}
.y2e_c00338{bottom:767.619594px;}
.y2f_c00338{bottom:767.911860px;}
.y30_c00338{bottom:768.462042px;}
.y31_c00338{bottom:768.494960px;}
.y32_c00338{bottom:768.727617px;}
.y33_c00338{bottom:769.024911px;}
.y19_c00338{bottom:785.156710px;}
.y1a_c00338{bottom:786.010538px;}
.y1b_c00338{bottom:786.545790px;}
.y1c_c00338{bottom:787.452323px;}
.y1d_c00338{bottom:787.788394px;}
.y1e_c00338{bottom:788.174286px;}
.y1f_c00338{bottom:788.888901px;}
.y20_c00338{bottom:789.539157px;}
.y21_c00338{bottom:790.166811px;}
.y22_c00338{bottom:790.782246px;}
.y23_c00338{bottom:791.887066px;}
.ye_c00338{bottom:807.571189px;}
.yf_c00338{bottom:807.846771px;}
.y10_c00338{bottom:808.368498px;}
.y11_c00338{bottom:809.397591px;}
.y12_c00338{bottom:810.342848px;}
.y13_c00338{bottom:811.038388px;}
.y14_c00338{bottom:811.302133px;}
.y15_c00338{bottom:812.020807px;}
.y16_c00338{bottom:813.335095px;}
.y17_c00338{bottom:814.465467px;}
.y18_c00338{bottom:814.792236px;}
.y2_c00338{bottom:830.476500px;}
.y3_c00338{bottom:831.105865px;}
.y4_c00338{bottom:832.308190px;}
.y5_c00338{bottom:832.685463px;}
.y6_c00338{bottom:833.961279px;}
.y7_c00338{bottom:834.030358px;}
.y8_c00338{bottom:834.925358px;}
.y9_c00338{bottom:834.937801px;}
.ya_c00338{bottom:835.718841px;}
.yb_c00338{bottom:836.893855px;}
.yc_c00338{bottom:837.590107px;}
.yd_c00338{bottom:838.312497px;}
.y1_c00338{bottom:875.797500px;}
.h15_c00338{height:22.050000px;}
.h16_c00338{height:63.000000px;}
.h6_c00338{height:63.009103px;}
.hf_c00338{height:66.154763px;}
.h12_c00338{height:67.200000px;}
.hc_c00338{height:67.204838px;}
.hd_c00338{height:68.254914px;}
.h7_c00338{height:68.259861px;}
.h11_c00338{height:69.300000px;}
.hb_c00338{height:69.304989px;}
.h3_c00338{height:69.310013px;}
.h13_c00338{height:70.350000px;}
.h9_c00338{height:70.355065px;}
.h4_c00338{height:70.360165px;}
.h10_c00338{height:71.400000px;}
.ha_c00338{height:71.405141px;}
.h14_c00338{height:73.500000px;}
.he_c00338{height:73.505292px;}
.h8_c00338{height:73.506210px;}
.h5_c00338{height:73.510620px;}
.h2_c00338{height:87.150000px;}
.h1_c00338{height:1005.000000px;}
.h0_c00338{height:1005.150000px;}
.w0_c00338{width:702.540000px;}
.w1_c00338{width:702.750000px;}
.x0_c00338{left:0.000000px;}
.xc0_c00338{left:35.640000px;}
.xc5_c00338{left:38.610000px;}
.xc1_c00338{left:59.400000px;}
.x3b_c00338{left:75.775500px;}
.x12_c00338{left:79.601525px;}
.x33_c00338{left:80.854459px;}
.x5c_c00338{left:82.490844px;}
.x62_c00338{left:83.647650px;}
.x84_c00338{left:84.775284px;}
.xa4_c00338{left:87.201468px;}
.xab_c00338{left:88.290000px;}
.xb3_c00338{left:89.907000px;}
.x7_c00338{left:94.323000px;}
.x13_c00338{left:96.871331px;}
.x27_c00338{left:102.032087px;}
.x8e_c00338{left:104.485440px;}
.x3c_c00338{left:107.931000px;}
.x74_c00338{left:111.892704px;}
.x5d_c00338{left:113.815722px;}
.x6b_c00338{left:117.833850px;}
.xbc_c00338{left:119.337000px;}
.x7c_c00338{left:120.792780px;}
.x48_c00338{left:122.196000px;}
.x3d_c00338{left:124.641000px;}
.xa9_c00338{left:127.702164px;}
.x14_c00338{left:129.502892px;}
.x8_c00338{left:131.344500px;}
.x1d_c00338{left:136.828484px;}
.xa5_c00338{left:140.664672px;}
.x78_c00338{left:142.391166px;}
.xbd_c00338{left:143.907000px;}
.xb0_c00338{left:145.894500px;}
.x49_c00338{left:148.660500px;}
.x34_c00338{left:152.395830px;}
.x9e_c00338{left:153.451404px;}
.x8f_c00338{left:155.249748px;}
.x28_c00338{left:156.639366px;}
.x6c_c00338{left:158.654826px;}
.x94_c00338{left:163.345956px;}
.x57_c00338{left:165.353238px;}
.x88_c00338{left:166.589268px;}
.x29_c00338{left:170.495580px;}
.x1e_c00338{left:172.462182px;}
.x7d_c00338{left:175.066890px;}
.x6d_c00338{left:178.367028px;}
.x4a_c00338{left:182.749500px;}
.x3e_c00338{left:184.254000px;}
.xac_c00338{left:188.460000px;}
.x9f_c00338{left:189.909600px;}
.x35_c00338{left:192.694559px;}
.x15_c00338{left:193.832988px;}
.x79_c00338{left:197.475312px;}
.x2a_c00338{left:201.064136px;}
.x9_c00338{left:202.069500px;}
.x95_c00338{left:203.578752px;}
.x1_c00338{left:206.010000px;}
.x50_c00338{left:208.589172px;}
.x7e_c00338{left:211.482636px;}
.x5e_c00338{left:214.271928px;}
.x63_c00338{left:215.868234px;}
.x89_c00338{left:217.083540px;}
.x9b_c00338{left:221.484540px;}
.xa_c00338{left:224.262000px;}
.xb1_c00338{left:225.811500px;}
.x3f_c00338{left:227.202000px;}
.x90_c00338{left:231.124674px;}
.x1f_c00338{left:232.936748px;}
.xb7_c00338{left:235.167000px;}
.x2b_c00338{left:237.253472px;}
.x7f_c00338{left:238.801950px;}
.x85_c00338{left:240.035640px;}
.x7a_c00338{left:244.153044px;}
.xb4_c00338{left:246.777000px;}
.xad_c00338{left:248.400000px;}
.x51_c00338{left:250.709676px;}
.x16_c00338{left:252.878483px;}
.x6e_c00338{left:254.193264px;}
.x20_c00338{left:255.353513px;}
.x40_c00338{left:259.915500px;}
.x91_c00338{left:262.177638px;}
.x36_c00338{left:264.243429px;}
.x4b_c00338{left:266.421000px;}
.x64_c00338{left:268.566864px;}
.x52_c00338{left:272.809446px;}
.x2_c00338{left:275.400000px;}
.x96_c00338{left:277.563390px;}
.x21_c00338{left:281.053880px;}
.xa0_c00338{left:282.762180px;}
.x41_c00338{left:284.568000px;}
.x3_c00338{left:286.740000px;}
.x80_c00338{left:287.905308px;}
.xa6_c00338{left:289.445592px;}
.xb5_c00338{left:291.057000px;}
.x8a_c00338{left:294.580200px;}
.x17_c00338{left:296.352222px;}
.xb_c00338{left:299.310000px;}
.xc_c00338{left:303.373500px;}
.x97_c00338{left:305.105850px;}
.x65_c00338{left:306.937332px;}
.x6f_c00338{left:311.444316px;}
.x18_c00338{left:312.837503px;}
.x86_c00338{left:314.020278px;}
.x9c_c00338{left:318.705372px;}
.x58_c00338{left:321.481866px;}
.xa1_c00338{left:322.751574px;}
.x98_c00338{left:325.087230px;}
.x2c_c00338{left:326.908536px;}
.x22_c00338{left:328.650486px;}
.x37_c00338{left:330.085917px;}
.x42_c00338{left:335.068500px;}
.x9d_c00338{left:336.158982px;}
.x5f_c00338{left:341.707458px;}
.x70_c00338{left:345.467040px;}
.x43_c00338{left:347.143500px;}
.x2d_c00338{left:348.203633px;}
.xc2_c00338{left:351.270000px;}
.x59_c00338{left:352.528488px;}
.x92_c00338{left:353.713314px;}
.xd_c00338{left:356.020500px;}
.x19_c00338{left:357.760268px;}
.x4_c00338{left:359.100000px;}
.xa2_c00338{left:360.286824px;}
.xbf_c00338{left:363.960000px;}
.x4c_c00338{left:365.835000px;}
.x8b_c00338{left:366.944604px;}
.x66_c00338{left:368.487570px;}
.x23_c00338{left:372.019965px;}
.x38_c00338{left:383.632064px;}
.xa7_c00338{left:387.192168px;}
.x44_c00338{left:389.001000px;}
.x71_c00338{left:392.420232px;}
.x75_c00338{left:395.147892px;}
.xe_c00338{left:402.696000px;}
.x53_c00338{left:407.377548px;}
.x7b_c00338{left:409.402464px;}
.x60_c00338{left:410.853786px;}
.x67_c00338{left:412.741110px;}
.x24_c00338{left:413.883393px;}
.x99_c00338{left:415.544262px;}
.xa3_c00338{left:418.608816px;}
.x81_c00338{left:419.974662px;}
.x5a_c00338{left:423.542142px;}
.xb8_c00338{left:424.707000px;}
.x4d_c00338{left:426.994500px;}
.x2e_c00338{left:428.169713px;}
.x87_c00338{left:429.317892px;}
.x54_c00338{left:431.415336px;}
.x45_c00338{left:432.702000px;}
.x39_c00338{left:433.916981px;}
.xbe_c00338{left:438.207000px;}
.x1a_c00338{left:439.925670px;}
.x72_c00338{left:442.175514px;}
.xae_c00338{left:445.230000px;}
.x2f_c00338{left:449.068783px;}
.xc6_c00338{left:451.170000px;}
.x25_c00338{left:454.939796px;}
.x5_c00338{left:457.380000px;}
.x8c_c00338{left:461.180658px;}
.x76_c00338{left:462.914322px;}
.x82_c00338{left:463.985268px;}
.x5b_c00338{left:465.931638px;}
.xb9_c00338{left:467.367000px;}
.x4e_c00338{left:469.999500px;}
.xf_c00338{left:471.814500px;}
.xaa_c00338{left:475.218186px;}
.x68_c00338{left:477.033384px;}
.x55_c00338{left:479.682912px;}
.x46_c00338{left:485.449500px;}
.x30_c00338{left:488.316773px;}
.x31_c00338{left:490.694400px;}
.xa8_c00338{left:494.658630px;}
.x3a_c00338{left:500.068469px;}
.xba_c00338{left:502.197000px;}
.x77_c00338{left:503.201262px;}
.x32_c00338{left:507.292741px;}
.xb2_c00338{left:508.428000px;}
.x1b_c00338{left:510.566369px;}
.xaf_c00338{left:511.650000px;}
.x10_c00338{left:512.770500px;}
.x83_c00338{left:515.836752px;}
.x61_c00338{left:518.036064px;}
.x69_c00338{left:522.827442px;}
.x8d_c00338{left:524.365248px;}
.x6_c00338{left:525.960000px;}
.x56_c00338{left:527.176488px;}
.x26_c00338{left:528.578795px;}
.xc7_c00338{left:529.740000px;}
.x1c_c00338{left:531.023726px;}
.x47_c00338{left:532.117500px;}
.xc3_c00338{left:535.680000px;}
.x6a_c00338{left:536.926104px;}
.xb6_c00338{left:538.647000px;}
.x4f_c00338{left:541.564500px;}
.xbb_c00338{left:542.967000px;}
.x9a_c00338{left:545.153928px;}
.x93_c00338{left:547.044642px;}
.x73_c00338{left:548.829348px;}
.x11_c00338{left:555.264000px;}
.xc4_c00338{left:613.440000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs13_c00338{font-size:19.600000pt;}
.fs14_c00338{font-size:56.000000pt;}
.fs4_c00338{font-size:56.008091pt;}
.fsd_c00338{font-size:58.804233pt;}
.fs10_c00338{font-size:59.733333pt;}
.fsa_c00338{font-size:59.737634pt;}
.fsb_c00338{font-size:60.671035pt;}
.fs5_c00338{font-size:60.675432pt;}
.fsf_c00338{font-size:61.600000pt;}
.fs9_c00338{font-size:61.604435pt;}
.fs1_c00338{font-size:61.608901pt;}
.fs11_c00338{font-size:62.533333pt;}
.fs7_c00338{font-size:62.537836pt;}
.fs2_c00338{font-size:62.542369pt;}
.fse_c00338{font-size:63.466667pt;}
.fs8_c00338{font-size:63.471236pt;}
.fs12_c00338{font-size:65.333333pt;}
.fsc_c00338{font-size:65.338037pt;}
.fs6_c00338{font-size:65.338854pt;}
.fs3_c00338{font-size:65.342773pt;}
.fs0_c00338{font-size:77.466667pt;}
.y0_c00338{bottom:0.000000pt;}
.y126_c00338{bottom:86.400000pt;}
.y128_c00338{bottom:88.334667pt;}
.y127_c00338{bottom:105.620000pt;}
.y125_c00338{bottom:152.717333pt;}
.y124_c00338{bottom:173.352000pt;}
.y123_c00338{bottom:193.781333pt;}
.y119_c00338{bottom:212.161333pt;}
.y11a_c00338{bottom:212.516000pt;}
.y11b_c00338{bottom:212.832000pt;}
.y11c_c00338{bottom:213.013333pt;}
.y11d_c00338{bottom:213.306667pt;}
.y11e_c00338{bottom:213.662667pt;}
.y11f_c00338{bottom:213.806667pt;}
.y120_c00338{bottom:214.302667pt;}
.y121_c00338{bottom:214.770667pt;}
.y122_c00338{bottom:214.866667pt;}
.y118_c00338{bottom:234.316000pt;}
.y117_c00338{bottom:254.744000pt;}
.y10f_c00338{bottom:274.864421pt;}
.y10d_c00338{bottom:274.864453pt;}
.y10c_c00338{bottom:274.864699pt;}
.y10e_c00338{bottom:274.864704pt;}
.y116_c00338{bottom:274.864789pt;}
.y110_c00338{bottom:274.865029pt;}
.y114_c00338{bottom:274.865424pt;}
.y115_c00338{bottom:274.865445pt;}
.y112_c00338{bottom:274.865664pt;}
.y111_c00338{bottom:274.865675pt;}
.y113_c00338{bottom:274.866005pt;}
.y108_c00338{bottom:295.264219pt;}
.y107_c00338{bottom:295.264235pt;}
.y103_c00338{bottom:295.264304pt;}
.y105_c00338{bottom:295.264405pt;}
.y109_c00338{bottom:295.264453pt;}
.y106_c00338{bottom:295.264480pt;}
.y102_c00338{bottom:295.264779pt;}
.y104_c00338{bottom:295.264805pt;}
.y10a_c00338{bottom:295.265029pt;}
.y10b_c00338{bottom:295.265120pt;}
.yf3_c00338{bottom:314.146400pt;}
.yf4_c00338{bottom:314.322501pt;}
.yf5_c00338{bottom:314.571456pt;}
.yf6_c00338{bottom:314.797653pt;}
.yf7_c00338{bottom:314.800699pt;}
.yf8_c00338{bottom:314.953397pt;}
.yf9_c00338{bottom:315.102987pt;}
.yfa_c00338{bottom:315.374688pt;}
.yfb_c00338{bottom:315.623883pt;}
.yfc_c00338{bottom:315.857568pt;}
.yfd_c00338{bottom:316.220965pt;}
.yfe_c00338{bottom:316.407280pt;}
.yff_c00338{bottom:316.584091pt;}
.y100_c00338{bottom:316.789056pt;}
.y101_c00338{bottom:316.917237pt;}
.yec_c00338{bottom:336.294645pt;}
.yeb_c00338{bottom:336.294693pt;}
.yea_c00338{bottom:336.294987pt;}
.yed_c00338{bottom:336.295040pt;}
.yee_c00338{bottom:336.295184pt;}
.yef_c00338{bottom:336.295493pt;}
.yf2_c00338{bottom:336.295717pt;}
.yf1_c00338{bottom:336.295947pt;}
.yf0_c00338{bottom:336.296139pt;}
.ye2_c00338{bottom:355.187781pt;}
.ye3_c00338{bottom:355.510075pt;}
.ye4_c00338{bottom:355.905509pt;}
.ye5_c00338{bottom:356.033675pt;}
.ye6_c00338{bottom:356.217056pt;}
.ye7_c00338{bottom:356.386507pt;}
.ye8_c00338{bottom:356.638635pt;}
.ye9_c00338{bottom:356.951632pt;}
.yd6_c00338{bottom:376.866816pt;}
.yd8_c00338{bottom:376.867040pt;}
.yd7_c00338{bottom:376.867285pt;}
.ye1_c00338{bottom:376.867317pt;}
.ydf_c00338{bottom:376.867365pt;}
.yd9_c00338{bottom:376.867451pt;}
.yde_c00338{bottom:376.867680pt;}
.ye0_c00338{bottom:376.867867pt;}
.yda_c00338{bottom:376.868096pt;}
.ydd_c00338{bottom:376.868123pt;}
.ydc_c00338{bottom:376.868277pt;}
.ydb_c00338{bottom:376.868507pt;}
.yce_c00338{bottom:397.058395pt;}
.ycb_c00338{bottom:397.058437pt;}
.ycc_c00338{bottom:397.058512pt;}
.yca_c00338{bottom:397.058667pt;}
.ycf_c00338{bottom:397.058912pt;}
.ycd_c00338{bottom:397.058944pt;}
.yd1_c00338{bottom:397.059152pt;}
.yd3_c00338{bottom:397.059339pt;}
.yd0_c00338{bottom:397.059344pt;}
.yd5_c00338{bottom:397.059723pt;}
.yd2_c00338{bottom:397.059781pt;}
.yd4_c00338{bottom:397.059787pt;}
.yc3_c00338{bottom:417.661872pt;}
.yc4_c00338{bottom:417.662123pt;}
.yc2_c00338{bottom:417.662277pt;}
.yc1_c00338{bottom:417.662416pt;}
.yc5_c00338{bottom:417.662677pt;}
.ybf_c00338{bottom:417.662747pt;}
.yc0_c00338{bottom:417.662965pt;}
.yc6_c00338{bottom:417.663232pt;}
.yc7_c00338{bottom:417.663808pt;}
.yc8_c00338{bottom:417.664272pt;}
.yc9_c00338{bottom:417.664811pt;}
.yb7_c00338{bottom:438.310037pt;}
.ybc_c00338{bottom:438.310091pt;}
.yb4_c00338{bottom:438.310165pt;}
.yb6_c00338{bottom:438.310528pt;}
.yba_c00338{bottom:438.310597pt;}
.yb5_c00338{bottom:438.310613pt;}
.yb8_c00338{bottom:438.310645pt;}
.ybb_c00338{bottom:438.310672pt;}
.ybd_c00338{bottom:438.310720pt;}
.yb9_c00338{bottom:438.311093pt;}
.ybe_c00338{bottom:438.311184pt;}
.ya9_c00338{bottom:456.471691pt;}
.yaa_c00338{bottom:456.734283pt;}
.yab_c00338{bottom:457.119845pt;}
.yac_c00338{bottom:457.378928pt;}
.yad_c00338{bottom:457.572987pt;}
.yae_c00338{bottom:457.922064pt;}
.yaf_c00338{bottom:458.211963pt;}
.yb0_c00338{bottom:458.645477pt;}
.yb1_c00338{bottom:458.860069pt;}
.yb2_c00338{bottom:459.173493pt;}
.yb3_c00338{bottom:459.542549pt;}
.y9f_c00338{bottom:477.112976pt;}
.ya0_c00338{bottom:477.531627pt;}
.ya1_c00338{bottom:477.923163pt;}
.ya2_c00338{bottom:478.255701pt;}
.ya3_c00338{bottom:478.536581pt;}
.ya4_c00338{bottom:479.021088pt;}
.ya5_c00338{bottom:479.431611pt;}
.ya6_c00338{bottom:479.750091pt;}
.ya7_c00338{bottom:480.074176pt;}
.ya8_c00338{bottom:480.369696pt;}
.y93_c00338{bottom:496.791435pt;}
.y94_c00338{bottom:497.021163pt;}
.y95_c00338{bottom:497.315573pt;}
.y96_c00338{bottom:497.925035pt;}
.y97_c00338{bottom:498.250517pt;}
.y98_c00338{bottom:498.494352pt;}
.y99_c00338{bottom:498.738987pt;}
.y9a_c00338{bottom:499.287776pt;}
.y9b_c00338{bottom:499.422272pt;}
.y9c_c00338{bottom:499.830592pt;}
.y9d_c00338{bottom:500.008149pt;}
.y9e_c00338{bottom:500.153637pt;}
.y87_c00338{bottom:516.952107pt;}
.y88_c00338{bottom:517.224768pt;}
.y89_c00338{bottom:517.550843pt;}
.y8a_c00338{bottom:517.709099pt;}
.y8b_c00338{bottom:518.315216pt;}
.y8c_c00338{bottom:518.773872pt;}
.y8d_c00338{bottom:519.046101pt;}
.y8e_c00338{bottom:519.211909pt;}
.y8f_c00338{bottom:519.421584pt;}
.y90_c00338{bottom:519.820288pt;}
.y91_c00338{bottom:520.096944pt;}
.y92_c00338{bottom:520.673888pt;}
.y79_c00338{bottom:536.396261pt;}
.y7a_c00338{bottom:537.063013pt;}
.y7b_c00338{bottom:537.191141pt;}
.y7c_c00338{bottom:537.464608pt;}
.y7d_c00338{bottom:537.689264pt;}
.y7e_c00338{bottom:538.204709pt;}
.y7f_c00338{bottom:538.579323pt;}
.y80_c00338{bottom:538.969627pt;}
.y81_c00338{bottom:539.181184pt;}
.y82_c00338{bottom:539.512869pt;}
.y83_c00338{bottom:539.613216pt;}
.y84_c00338{bottom:540.241659pt;}
.y85_c00338{bottom:540.688789pt;}
.y86_c00338{bottom:540.827173pt;}
.y6d_c00338{bottom:556.076091pt;}
.y6e_c00338{bottom:556.382219pt;}
.y6f_c00338{bottom:556.716848pt;}
.y70_c00338{bottom:556.958123pt;}
.y71_c00338{bottom:557.364405pt;}
.y72_c00338{bottom:557.760341pt;}
.y73_c00338{bottom:558.233195pt;}
.y74_c00338{bottom:558.610368pt;}
.y75_c00338{bottom:558.839643pt;}
.y76_c00338{bottom:559.286587pt;}
.y77_c00338{bottom:560.068192pt;}
.y78_c00338{bottom:560.335184pt;}
.y61_c00338{bottom:576.479013pt;}
.y62_c00338{bottom:576.979184pt;}
.y63_c00338{bottom:577.452240pt;}
.y64_c00338{bottom:577.865072pt;}
.y65_c00338{bottom:578.616357pt;}
.y66_c00338{bottom:578.975045pt;}
.y67_c00338{bottom:579.256299pt;}
.y68_c00338{bottom:579.615467pt;}
.y69_c00338{bottom:580.435621pt;}
.y6a_c00338{bottom:580.925115pt;}
.y6b_c00338{bottom:581.308768pt;}
.y6c_c00338{bottom:581.626016pt;}
.y57_c00338{bottom:597.120459pt;}
.y58_c00338{bottom:598.004475pt;}
.y59_c00338{bottom:598.365701pt;}
.y5a_c00338{bottom:598.777648pt;}
.y5b_c00338{bottom:598.993376pt;}
.y5c_c00338{bottom:599.540731pt;}
.y5d_c00338{bottom:600.310085pt;}
.y5e_c00338{bottom:600.545152pt;}
.y5f_c00338{bottom:601.017333pt;}
.y60_c00338{bottom:601.481259pt;}
.y4b_c00338{bottom:617.281333pt;}
.y4c_c00338{bottom:617.719093pt;}
.y4d_c00338{bottom:618.001381pt;}
.y4e_c00338{bottom:618.364997pt;}
.y4f_c00338{bottom:618.954117pt;}
.y50_c00338{bottom:619.257493pt;}
.y51_c00338{bottom:619.643109pt;}
.y52_c00338{bottom:619.939653pt;}
.y53_c00338{bottom:620.317909pt;}
.y54_c00338{bottom:620.970277pt;}
.y55_c00338{bottom:621.428997pt;}
.y56_c00338{bottom:622.192357pt;}
.y3e_c00338{bottom:637.442667pt;}
.y3f_c00338{bottom:637.814241pt;}
.y40_c00338{bottom:638.007335pt;}
.y41_c00338{bottom:638.696196pt;}
.y42_c00338{bottom:639.192484pt;}
.y43_c00338{bottom:639.570507pt;}
.y44_c00338{bottom:639.855380pt;}
.y45_c00338{bottom:640.438941pt;}
.y46_c00338{bottom:640.578475pt;}
.y47_c00338{bottom:641.062161pt;}
.y48_c00338{bottom:641.567151pt;}
.y49_c00338{bottom:642.176677pt;}
.y4a_c00338{bottom:642.715952pt;}
.y34_c00338{bottom:657.349175pt;}
.y35_c00338{bottom:658.175504pt;}
.y36_c00338{bottom:658.641755pt;}
.y37_c00338{bottom:659.468197pt;}
.y38_c00338{bottom:659.839323pt;}
.y39_c00338{bottom:660.228416pt;}
.y3a_c00338{bottom:660.846836pt;}
.y3b_c00338{bottom:661.427979pt;}
.y3c_c00338{bottom:662.074960pt;}
.y3d_c00338{bottom:662.192867pt;}
.y24_c00338{bottom:677.992875pt;}
.y25_c00338{bottom:678.269811pt;}
.y26_c00338{bottom:678.949612pt;}
.y27_c00338{bottom:679.121651pt;}
.y28_c00338{bottom:679.502219pt;}
.y29_c00338{bottom:679.953052pt;}
.y2a_c00338{bottom:680.574564pt;}
.y2b_c00338{bottom:681.069104pt;}
.y2c_c00338{bottom:681.333547pt;}
.y2d_c00338{bottom:682.013099pt;}
.y2e_c00338{bottom:682.328528pt;}
.y2f_c00338{bottom:682.588320pt;}
.y30_c00338{bottom:683.077371pt;}
.y31_c00338{bottom:683.106631pt;}
.y32_c00338{bottom:683.313437pt;}
.y33_c00338{bottom:683.577699pt;}
.y19_c00338{bottom:697.917076pt;}
.y1a_c00338{bottom:698.676033pt;}
.y1b_c00338{bottom:699.151813pt;}
.y1c_c00338{bottom:699.957620pt;}
.y1d_c00338{bottom:700.256351pt;}
.y1e_c00338{bottom:700.599365pt;}
.y1f_c00338{bottom:701.234579pt;}
.y20_c00338{bottom:701.812584pt;}
.y21_c00338{bottom:702.370499pt;}
.y22_c00338{bottom:702.917552pt;}
.y23_c00338{bottom:703.899615pt;}
.ye_c00338{bottom:717.841057pt;}
.yf_c00338{bottom:718.086019pt;}
.y10_c00338{bottom:718.549776pt;}
.y11_c00338{bottom:719.464525pt;}
.y12_c00338{bottom:720.304753pt;}
.y13_c00338{bottom:720.923012pt;}
.y14_c00338{bottom:721.157452pt;}
.y15_c00338{bottom:721.796273pt;}
.y16_c00338{bottom:722.964529pt;}
.y17_c00338{bottom:723.969304pt;}
.y18_c00338{bottom:724.259765pt;}
.y2_c00338{bottom:738.201333pt;}
.y3_c00338{bottom:738.760769pt;}
.y4_c00338{bottom:739.829503pt;}
.y5_c00338{bottom:740.164856pt;}
.y6_c00338{bottom:741.298915pt;}
.y7_c00338{bottom:741.360319pt;}
.y8_c00338{bottom:742.155873pt;}
.y9_c00338{bottom:742.166935pt;}
.ya_c00338{bottom:742.861192pt;}
.yb_c00338{bottom:743.905649pt;}
.yc_c00338{bottom:744.524540pt;}
.yd_c00338{bottom:745.166664pt;}
.y1_c00338{bottom:778.486667pt;}
.h15_c00338{height:19.600000pt;}
.h16_c00338{height:56.000000pt;}
.h6_c00338{height:56.008091pt;}
.hf_c00338{height:58.804233pt;}
.h12_c00338{height:59.733333pt;}
.hc_c00338{height:59.737634pt;}
.hd_c00338{height:60.671035pt;}
.h7_c00338{height:60.675432pt;}
.h11_c00338{height:61.600000pt;}
.hb_c00338{height:61.604435pt;}
.h3_c00338{height:61.608901pt;}
.h13_c00338{height:62.533333pt;}
.h9_c00338{height:62.537836pt;}
.h4_c00338{height:62.542369pt;}
.h10_c00338{height:63.466667pt;}
.ha_c00338{height:63.471236pt;}
.h14_c00338{height:65.333333pt;}
.he_c00338{height:65.338037pt;}
.h8_c00338{height:65.338854pt;}
.h5_c00338{height:65.342773pt;}
.h2_c00338{height:77.466667pt;}
.h1_c00338{height:893.333333pt;}
.h0_c00338{height:893.466667pt;}
.w0_c00338{width:624.480000pt;}
.w1_c00338{width:624.666667pt;}
.x0_c00338{left:0.000000pt;}
.xc0_c00338{left:31.680000pt;}
.xc5_c00338{left:34.320000pt;}
.xc1_c00338{left:52.800000pt;}
.x3b_c00338{left:67.356000pt;}
.x12_c00338{left:70.756911pt;}
.x33_c00338{left:71.870631pt;}
.x5c_c00338{left:73.325195pt;}
.x62_c00338{left:74.353467pt;}
.x84_c00338{left:75.355808pt;}
.xa4_c00338{left:77.512416pt;}
.xab_c00338{left:78.480000pt;}
.xb3_c00338{left:79.917333pt;}
.x7_c00338{left:83.842667pt;}
.x13_c00338{left:86.107849pt;}
.x27_c00338{left:90.695188pt;}
.x8e_c00338{left:92.875947pt;}
.x3c_c00338{left:95.938667pt;}
.x74_c00338{left:99.460181pt;}
.x5d_c00338{left:101.169531pt;}
.x6b_c00338{left:104.741200pt;}
.xbc_c00338{left:106.077333pt;}
.x7c_c00338{left:107.371360pt;}
.x48_c00338{left:108.618667pt;}
.x3d_c00338{left:110.792000pt;}
.xa9_c00338{left:113.513035pt;}
.x14_c00338{left:115.113681pt;}
.x8_c00338{left:116.750667pt;}
.x1d_c00338{left:121.625319pt;}
.xa5_c00338{left:125.035264pt;}
.x78_c00338{left:126.569925pt;}
.xbd_c00338{left:127.917333pt;}
.xb0_c00338{left:129.684000pt;}
.x49_c00338{left:132.142667pt;}
.x34_c00338{left:135.462960pt;}
.x9e_c00338{left:136.401248pt;}
.x8f_c00338{left:137.999776pt;}
.x28_c00338{left:139.234992pt;}
.x6c_c00338{left:141.026512pt;}
.x94_c00338{left:145.196405pt;}
.x57_c00338{left:146.980656pt;}
.x88_c00338{left:148.079349pt;}
.x29_c00338{left:151.551627pt;}
.x1e_c00338{left:153.299717pt;}
.x7d_c00338{left:155.615013pt;}
.x6d_c00338{left:158.548469pt;}
.x4a_c00338{left:162.444000pt;}
.x3e_c00338{left:163.781333pt;}
.xac_c00338{left:167.520000pt;}
.x9f_c00338{left:168.808533pt;}
.x35_c00338{left:171.284052pt;}
.x15_c00338{left:172.295989pt;}
.x79_c00338{left:175.533611pt;}
.x2a_c00338{left:178.723676pt;}
.x9_c00338{left:179.617333pt;}
.x95_c00338{left:180.958891pt;}
.x1_c00338{left:183.120000pt;}
.x50_c00338{left:185.412597pt;}
.x7e_c00338{left:187.984565pt;}
.x5e_c00338{left:190.463936pt;}
.x63_c00338{left:191.882875pt;}
.x89_c00338{left:192.963147pt;}
.x9b_c00338{left:196.875147pt;}
.xa_c00338{left:199.344000pt;}
.xb1_c00338{left:200.721333pt;}
.x3f_c00338{left:201.957333pt;}
.x90_c00338{left:205.444155pt;}
.x1f_c00338{left:207.054887pt;}
.xb7_c00338{left:209.037333pt;}
.x2b_c00338{left:210.891975pt;}
.x7f_c00338{left:212.268400pt;}
.x85_c00338{left:213.365013pt;}
.x7a_c00338{left:217.024928pt;}
.xb4_c00338{left:219.357333pt;}
.xad_c00338{left:220.800000pt;}
.x51_c00338{left:222.853045pt;}
.x16_c00338{left:224.780873pt;}
.x6e_c00338{left:225.949568pt;}
.x20_c00338{left:226.980900pt;}
.x40_c00338{left:231.036000pt;}
.x91_c00338{left:233.046789pt;}
.x36_c00338{left:234.883048pt;}
.x4b_c00338{left:236.818667pt;}
.x64_c00338{left:238.726101pt;}
.x52_c00338{left:242.497285pt;}
.x2_c00338{left:244.800000pt;}
.x96_c00338{left:246.723013pt;}
.x21_c00338{left:249.825671pt;}
.xa0_c00338{left:251.344160pt;}
.x41_c00338{left:252.949333pt;}
.x3_c00338{left:254.880000pt;}
.x80_c00338{left:255.915829pt;}
.xa6_c00338{left:257.284971pt;}
.xb5_c00338{left:258.717333pt;}
.x8a_c00338{left:261.849067pt;}
.x17_c00338{left:263.424197pt;}
.xb_c00338{left:266.053333pt;}
.xc_c00338{left:269.665333pt;}
.x97_c00338{left:271.205200pt;}
.x65_c00338{left:272.833184pt;}
.x6f_c00338{left:276.839392pt;}
.x18_c00338{left:278.077780pt;}
.x86_c00338{left:279.129136pt;}
.x9c_c00338{left:283.293664pt;}
.x58_c00338{left:285.761659pt;}
.xa1_c00338{left:286.890288pt;}
.x98_c00338{left:288.966427pt;}
.x2c_c00338{left:290.585365pt;}
.x22_c00338{left:292.133765pt;}
.x37_c00338{left:293.409704pt;}
.x42_c00338{left:297.838667pt;}
.x9d_c00338{left:298.807984pt;}
.x5f_c00338{left:303.739963pt;}
.x70_c00338{left:307.081813pt;}
.x43_c00338{left:308.572000pt;}
.x2d_c00338{left:309.514340pt;}
.xc2_c00338{left:312.240000pt;}
.x59_c00338{left:313.358656pt;}
.x92_c00338{left:314.411835pt;}
.xd_c00338{left:316.462667pt;}
.x19_c00338{left:318.009127pt;}
.x4_c00338{left:319.200000pt;}
.xa2_c00338{left:320.254955pt;}
.xbf_c00338{left:323.520000pt;}
.x4c_c00338{left:325.186667pt;}
.x8b_c00338{left:326.172981pt;}
.x66_c00338{left:327.544507pt;}
.x23_c00338{left:330.684413pt;}
.x38_c00338{left:341.006279pt;}
.xa7_c00338{left:344.170816pt;}
.x44_c00338{left:345.778667pt;}
.x71_c00338{left:348.817984pt;}
.x75_c00338{left:351.242571pt;}
.xe_c00338{left:357.952000pt;}
.x53_c00338{left:362.113376pt;}
.x7b_c00338{left:363.913301pt;}
.x60_c00338{left:365.203365pt;}
.x67_c00338{left:366.880987pt;}
.x24_c00338{left:367.896349pt;}
.x99_c00338{left:369.372677pt;}
.xa3_c00338{left:372.096725pt;}
.x81_c00338{left:373.310811pt;}
.x5a_c00338{left:376.481904pt;}
.xb8_c00338{left:377.517333pt;}
.x4d_c00338{left:379.550667pt;}
.x2e_c00338{left:380.595300pt;}
.x87_c00338{left:381.615904pt;}
.x54_c00338{left:383.480299pt;}
.x45_c00338{left:384.624000pt;}
.x39_c00338{left:385.703983pt;}
.xbe_c00338{left:389.517333pt;}
.x1a_c00338{left:391.045040pt;}
.x72_c00338{left:393.044901pt;}
.xae_c00338{left:395.760000pt;}
.x2f_c00338{left:399.172252pt;}
.xc6_c00338{left:401.040000pt;}
.x25_c00338{left:404.390929pt;}
.x5_c00338{left:406.560000pt;}
.x8c_c00338{left:409.938363pt;}
.x76_c00338{left:411.479397pt;}
.x82_c00338{left:412.431349pt;}
.x5b_c00338{left:414.161456pt;}
.xb9_c00338{left:415.437333pt;}
.x4e_c00338{left:417.777333pt;}
.xf_c00338{left:419.390667pt;}
.xaa_c00338{left:422.416165pt;}
.x68_c00338{left:424.029675pt;}
.x55_c00338{left:426.384811pt;}
.x46_c00338{left:431.510667pt;}
.x30_c00338{left:434.059353pt;}
.x31_c00338{left:436.172800pt;}
.xa8_c00338{left:439.696560pt;}
.x3a_c00338{left:444.505305pt;}
.xba_c00338{left:446.397333pt;}
.x77_c00338{left:447.290011pt;}
.x32_c00338{left:450.926881pt;}
.xb2_c00338{left:451.936000pt;}
.x1b_c00338{left:453.836772pt;}
.xaf_c00338{left:454.800000pt;}
.x10_c00338{left:455.796000pt;}
.x83_c00338{left:458.521557pt;}
.x61_c00338{left:460.476501pt;}
.x69_c00338{left:464.735504pt;}
.x8d_c00338{left:466.102443pt;}
.x6_c00338{left:467.520000pt;}
.x56_c00338{left:468.601323pt;}
.x26_c00338{left:469.847817pt;}
.xc7_c00338{left:470.880000pt;}
.x1c_c00338{left:472.021089pt;}
.x47_c00338{left:472.993333pt;}
.xc3_c00338{left:476.160000pt;}
.x6a_c00338{left:477.267648pt;}
.xb6_c00338{left:478.797333pt;}
.x4f_c00338{left:481.390667pt;}
.xbb_c00338{left:482.637333pt;}
.x9a_c00338{left:484.581269pt;}
.x93_c00338{left:486.261904pt;}
.x73_c00338{left:487.848309pt;}
.x11_c00338{left:493.568000pt;}
.xc4_c00338{left:545.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m13c_c00339{transform:matrix(0.016931,0.000542,-0.008004,0.249872,0,0);-ms-transform:matrix(0.016931,0.000542,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.016931,0.000542,-0.008004,0.249872,0,0);}
.m13d_c00339{transform:matrix(0.030289,0.000970,-0.008004,0.249872,0,0);-ms-transform:matrix(0.030289,0.000970,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.030289,0.000970,-0.008004,0.249872,0,0);}
.m13e_c00339{transform:matrix(0.106280,0.003404,-0.008004,0.249872,0,0);-ms-transform:matrix(0.106280,0.003404,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.106280,0.003404,-0.008004,0.249872,0,0);}
.m44_c00339{transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);}
.mde_c00339{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);}
.m2d_c00339{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);}
.m139_c00339{transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);}
.m111_c00339{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);}
.m120_c00339{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.m96_c00339{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);}
.m47_c00339{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m10a_c00339{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);}
.m22_c00339{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);}
.m5d_c00339{transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);}
.m7c_c00339{transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);}
.m12f_c00339{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.mdf_c00339{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);}
.m134_c00339{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.m9f_c00339{transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);}
.mb8_c00339{transform:matrix(0.149590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149590,0.000000,0.000000,0.250000,0,0);}
.m83_c00339{transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150165,0.000000,0.000000,0.250000,0,0);}
.m67_c00339{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);}
.mbb_c00339{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.m127_c00339{transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);}
.m6d_c00339{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m84_c00339{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);}
.m35_c00339{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);}
.m32_c00339{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);}
.m2e_c00339{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);}
.mda_c00339{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);}
.m81_c00339{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);}
.m4c_c00339{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);}
.m38_c00339{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);}
.ma1_c00339{transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{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);}
.m12b_c00339{transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{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);}
.m122_c00339{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);}
.m113_c00339{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);}
.m10c_c00339{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);}
.m8d_c00339{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);}
.m9a_c00339{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);}
.m71_c00339{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);}
.m102_c00339{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);}
.m4f_c00339{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);}
.me1_c00339{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);}
.m5b_c00339{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);}
.m48_c00339{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);}
.m78_c00339{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);}
.m136_c00339{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);}
.m75_c00339{transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);}
.mb5_c00339{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);}
.m9c_c00339{transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162385,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{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);}
.m95_c00339{transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);}
.m124_c00339{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);}
.m26_c00339{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);}
.m125_c00339{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);}
.m110_c00339{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);}
.mef_c00339{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);}
.m108_c00339{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);}
.ma9_c00339{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);}
.me0_c00339{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);}
.ma_c00339{transform:matrix(0.165806,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165806,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165806,0.001161,-0.001750,0.249994,0,0);}
.mb3_c00339{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);}
.m11c_c00339{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);}
.m4a_c00339{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);}
.mdd_c00339{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);}
.m58_c00339{transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);}
.m2b_c00339{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);}
.m99_c00339{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);}
.mc5_c00339{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);}
.m80_c00339{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);}
.md1_c00339{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);}
.mf0_c00339{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);}
.mff_c00339{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);}
.ma4_c00339{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);}
.m3f_c00339{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);}
.m3b_c00339{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);}
.m98_c00339{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);}
.mac_c00339{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);}
.m1e_c00339{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);}
.m2c_c00339{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);}
.m10b_c00339{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);}
.m4d_c00339{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);}
.mbc_c00339{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.mc7_c00339{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);}
.m112_c00339{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);}
.mc8_c00339{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);}
.meb_c00339{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);}
.mea_c00339{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);}
.mfe_c00339{transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);}
.mb4_c00339{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);}
.mfb_c00339{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);}
.mbf_c00339{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);}
.mab_c00339{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);}
.m87_c00339{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);}
.m27_c00339{transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173460,0.000000,0.000000,0.250000,0,0);}
.mee_c00339{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);}
.md8_c00339{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);}
.m103_c00339{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);}
.m123_c00339{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);}
.m5c_c00339{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);}
.m19_c00339{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);}
.m61_c00339{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);}
.m132_c00339{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);}
.ma5_c00339{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);}
.me6_c00339{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);}
.m131_c00339{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);}
.ma6_c00339{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);}
.ma0_c00339{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.m130_c00339{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);}
.m46_c00339{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);}
.m5f_c00339{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);}
.me4_c00339{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);}
.me9_c00339{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);}
.m12a_c00339{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);}
.m39_c00339{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);}
.m8a_c00339{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);}
.md9_c00339{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);}
.m1b_c00339{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);}
.m8f_c00339{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);}
.mc3_c00339{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);}
.m43_c00339{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);}
.m10e_c00339{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);}
.me2_c00339{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);}
.mad_c00339{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);}
.m45_c00339{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);}
.m42_c00339{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);}
.m54_c00339{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);}
.mcc_c00339{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);}
.m107_c00339{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);}
.m88_c00339{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);}
.m1c_c00339{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);}
.md3_c00339{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);}
.m28_c00339{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);}
.m7d_c00339{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);}
.md2_c00339{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);}
.m86_c00339{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{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);}
.mcb_c00339{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);}
.m53_c00339{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);}
.m49_c00339{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);}
.mae_c00339{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);}
.me3_c00339{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);}
.m7b_c00339{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);}
.m6e_c00339{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);}
.m3c_c00339{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);}
.m106_c00339{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);}
.m116_c00339{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);}
.m104_c00339{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);}
.m9_c00339{transform:matrix(0.183865,0.001287,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183865,0.001287,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183865,0.001287,-0.001750,0.249994,0,0);}
.mc9_c00339{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);}
.m8c_c00339{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);}
.mb1_c00339{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);}
.mcf_c00339{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);}
.m29_c00339{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);}
.ma8_c00339{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);}
.m66_c00339{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);}
.m119_c00339{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);}
.m37_c00339{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);}
.mf6_c00339{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);}
.mcd_c00339{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);}
.mf3_c00339{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);}
.m50_c00339{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);}
.mf8_c00339{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{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);}
.mb7_c00339{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);}
.mf4_c00339{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);}
.mec_c00339{transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);}
.mb9_c00339{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);}
.m12c_c00339{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);}
.m4e_c00339{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);}
.m62_c00339{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);}
.m5a_c00339{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);}
.m11e_c00339{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);}
.m100_c00339{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);}
.mdb_c00339{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);}
.md6_c00339{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);}
.m56_c00339{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);}
.m129_c00339{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);}
.m6_c00339{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);}
.ma2_c00339{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);}
.m3e_c00339{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);}
.m118_c00339{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);}
.m94_c00339{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);}
.m11d_c00339{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);}
.mba_c00339{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);}
.md4_c00339{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);}
.m90_c00339{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);}
.med_c00339{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);}
.m128_c00339{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);}
.m138_c00339{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);}
.md5_c00339{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);}
.m8b_c00339{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);}
.m51_c00339{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);}
.m93_c00339{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);}
.m92_c00339{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);}
.m2f_c00339{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);}
.mc2_c00339{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{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);}
.m70_c00339{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);}
.m25_c00339{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);}
.m137_c00339{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);}
.m79_c00339{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);}
.m21_c00339{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_c00339{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);}
.m3a_c00339{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);}
.mf2_c00339{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);}
.ma7_c00339{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);}
.mc4_c00339{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);}
.m9b_c00339{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);}
.m85_c00339{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);}
.m97_c00339{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);}
.m64_c00339{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);}
.mf9_c00339{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);}
.m126_c00339{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);}
.m74_c00339{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);}
.m63_c00339{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);}
.m20_c00339{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);}
.m10d_c00339{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);}
.me5_c00339{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);}
.m11b_c00339{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);}
.m72_c00339{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.md0_c00339{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);}
.m59_c00339{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);}
.m105_c00339{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);}
.m11f_c00339{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);}
.me8_c00339{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);}
.mf5_c00339{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);}
.m5e_c00339{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);}
.m23_c00339{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);}
.m1f_c00339{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);}
.ma3_c00339{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);}
.mf7_c00339{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);}
.m115_c00339{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);}
.m8e_c00339{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);}
.m31_c00339{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);}
.m6a_c00339{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);}
.m121_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);}
.m77_c00339{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);}
.m1_c00339{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);}
.mca_c00339{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);}
.m34_c00339{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_c00339{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);}
.m117_c00339{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);}
.mc0_c00339{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);}
.m5_c00339{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);}
.m114_c00339{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);}
.m73_c00339{transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207940,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{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);}
.m12_c00339{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);}
.m11a_c00339{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);}
.me7_c00339{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);}
.m33_c00339{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);}
.m7e_c00339{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);}
.m6f_c00339{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);}
.m24_c00339{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);}
.m1d_c00339{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);}
.m57_c00339{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);}
.mc6_c00339{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);}
.m135_c00339{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);}
.mb6_c00339{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);}
.mf_c00339{transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);}
.mdc_c00339{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);}
.mb0_c00339{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);}
.m82_c00339{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);}
.mb2_c00339{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);}
.m4_c00339{transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);}
.m89_c00339{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);}
.m65_c00339{transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);}
.m76_c00339{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);}
.m7f_c00339{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);}
.mf1_c00339{transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);}
.m91_c00339{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);}
.m133_c00339{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.231579,0.001621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231579,0.001621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231579,0.001621,-0.001750,0.249994,0,0);}
.mfd_c00339{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);}
.m101_c00339{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.m10f_c00339{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.mbd_c00339{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);}
.mc1_c00339{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);}
.m6c_c00339{transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);}
.mce_c00339{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);}
.m4b_c00339{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);}
.m140_c00339{transform:matrix(0.242366,0.007763,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242366,0.007763,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242366,0.007763,-0.008004,0.249872,0,0);}
.m41_c00339{transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{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);}
.m109_c00339{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);}
.m9d_c00339{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.m12e_c00339{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00339{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);}
.mfa_c00339{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);}
.mfc_c00339{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);}
.m30_c00339{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);}
.m10_c00339{transform:matrix(0.255149,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255149,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255149,0.001786,-0.001750,0.249994,0,0);}
.mc_c00339{transform:matrix(0.256744,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256744,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256744,0.001797,-0.001750,0.249994,0,0);}
.m7a_c00339{transform:matrix(0.257535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257535,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.263295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263295,0.000000,0.000000,0.250000,0,0);}
.md7_c00339{transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{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);}
.m18_c00339{transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297930,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.308242,0.002158,-0.001750,0.249994,0,0);-ms-transform:matrix(0.308242,0.002158,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.308242,0.002158,-0.001750,0.249994,0,0);}
.m16_c00339{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.m9e_c00339{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);}
.md_c00339{transform:matrix(0.323577,0.002265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.323577,0.002265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.323577,0.002265,-0.001750,0.249994,0,0);}
.maa_c00339{transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);}
.m12d_c00339{transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366825,0.000000,0.000000,0.250000,0,0);}
.m13f_c00339{transform:matrix(0.428725,0.013733,-0.008004,0.249872,0,0);-ms-transform:matrix(0.428725,0.013733,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.428725,0.013733,-0.008004,0.249872,0,0);}
.m17_c00339{transform:matrix(0.456280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456280,0.000000,0.000000,0.250000,0,0);}
.m13a_c00339{transform:matrix(0.458890,0.014699,-0.008004,0.249872,0,0);-ms-transform:matrix(0.458890,0.014699,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.458890,0.014699,-0.008004,0.249872,0,0);}
.m0_c00339{transform:matrix(0.494265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494265,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.509645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509645,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.751897,0.005263,-0.001750,0.249994,0,0);-ms-transform:matrix(0.751897,0.005263,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.751897,0.005263,-0.001750,0.249994,0,0);}
.mb_c00339{transform:matrix(0.839339,0.005875,-0.001750,0.249994,0,0);-ms-transform:matrix(0.839339,0.005875,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.839339,0.005875,-0.001750,0.249994,0,0);}
.me_c00339{transform:matrix(0.849619,0.005947,-0.001750,0.249994,0,0);-ms-transform:matrix(0.849619,0.005947,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.849619,0.005947,-0.001750,0.249994,0,0);}
.m13b_c00339{transform:matrix(1.245946,0.039910,-0.008004,0.249872,0,0);-ms-transform:matrix(1.245946,0.039910,-0.008004,0.249872,0,0);-webkit-transform:matrix(1.245946,0.039910,-0.008004,0.249872,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;}
.fs9_c00339{font-size:22.050000px;}
.fs3_c00339{font-size:24.150000px;}
.fs4_c00339{font-size:27.300000px;}
.fs0_c00339{font-size:40.950000px;}
.fs11_c00339{font-size:50.375424px;}
.fsf_c00339{font-size:63.000000px;}
.fs7_c00339{font-size:63.001543px;}
.fsd_c00339{font-size:68.250000px;}
.fsa_c00339{font-size:69.300000px;}
.fsc_c00339{font-size:70.350000px;}
.fse_c00339{font-size:71.400000px;}
.fsb_c00339{font-size:72.450000px;}
.fs2_c00339{font-size:73.500000px;}
.fs10_c00339{font-size:74.550000px;}
.fs1_c00339{font-size:75.600000px;}
.fs8_c00339{font-size:89.250000px;}
.fs5_c00339{font-size:108.152650px;}
.fs6_c00339{font-size:151.203704px;}
.y0_c00339{bottom:0.000000px;}
.y3f_c00339{bottom:121.861488px;}
.y3e_c00339{bottom:124.142304px;}
.y3d_c00339{bottom:124.749408px;}
.y3c_c00339{bottom:130.052016px;}
.y3b_c00339{bottom:132.967728px;}
.y3a_c00339{bottom:137.132304px;}
.y39_c00339{bottom:138.912000px;}
.y38_c00339{bottom:207.361500px;}
.y37_c00339{bottom:231.043500px;}
.y36_c00339{bottom:231.375000px;}
.y35_c00339{bottom:231.621000px;}
.y34_c00339{bottom:232.129500px;}
.y33_c00339{bottom:232.290000px;}
.y32_c00339{bottom:232.416000px;}
.y31_c00339{bottom:232.833000px;}
.y30_c00339{bottom:233.160000px;}
.y2f_c00339{bottom:233.424000px;}
.y2e_c00339{bottom:233.895000px;}
.y2d_c00339{bottom:234.091500px;}
.y2c_c00339{bottom:256.633500px;}
.y2b_c00339{bottom:279.067500px;}
.y2a_c00339{bottom:302.811000px;}
.y29_c00339{bottom:324.936000px;}
.y28_c00339{bottom:348.363000px;}
.y27_c00339{bottom:370.980000px;}
.y26_c00339{bottom:394.501500px;}
.y25_c00339{bottom:417.180000px;}
.y24_c00339{bottom:440.130000px;}
.y23_c00339{bottom:462.810000px;}
.y22_c00339{bottom:486.028500px;}
.y21_c00339{bottom:509.458500px;}
.y20_c00339{bottom:532.378500px;}
.y1f_c00339{bottom:555.330000px;}
.y1e_c00339{bottom:578.101500px;}
.y1d_c00339{bottom:601.228500px;}
.y1c_c00339{bottom:624.151500px;}
.y1b_c00339{bottom:646.828500px;}
.y1a_c00339{bottom:669.777000px;}
.y19_c00339{bottom:692.998500px;}
.y18_c00339{bottom:716.217000px;}
.y17_c00339{bottom:738.354000px;}
.y16_c00339{bottom:761.781000px;}
.y15_c00339{bottom:784.734000px;}
.y14_c00339{bottom:807.745500px;}
.y13_c00339{bottom:830.697000px;}
.y12_c00339{bottom:855.223500px;}
.y11_c00339{bottom:876.367500px;}
.y3_c00339{bottom:902.884500px;}
.y10_c00339{bottom:903.418371px;}
.yf_c00339{bottom:918.785261px;}
.yd_c00339{bottom:918.785559px;}
.ye_c00339{bottom:918.785670px;}
.yc_c00339{bottom:918.785789px;}
.yb_c00339{bottom:918.786018px;}
.ya_c00339{bottom:918.786207px;}
.y2_c00339{bottom:927.720000px;}
.y9_c00339{bottom:935.818776px;}
.y8_c00339{bottom:936.159112px;}
.y1_c00339{bottom:937.170000px;}
.y7_c00339{bottom:937.504729px;}
.y5_c00339{bottom:938.520000px;}
.y6_c00339{bottom:939.060000px;}
.y4_c00339{bottom:942.840000px;}
.hb_c00339{height:22.050000px;}
.h5_c00339{height:24.150000px;}
.h6_c00339{height:27.300000px;}
.h2_c00339{height:40.950000px;}
.h13_c00339{height:50.375424px;}
.h11_c00339{height:63.000000px;}
.h9_c00339{height:63.001543px;}
.hf_c00339{height:68.250000px;}
.hc_c00339{height:69.300000px;}
.he_c00339{height:70.350000px;}
.h10_c00339{height:71.400000px;}
.hd_c00339{height:72.450000px;}
.h4_c00339{height:73.500000px;}
.h12_c00339{height:74.550000px;}
.h3_c00339{height:75.600000px;}
.ha_c00339{height:89.250000px;}
.h7_c00339{height:108.152650px;}
.h8_c00339{height:151.203704px;}
.h0_c00339{height:1008.450000px;}
.h1_c00339{height:1008.750000px;}
.w0_c00339{width:696.000000px;}
.x0_c00339{left:0.000000px;}
.x3_c00339{left:99.090000px;}
.x1_c00339{left:106.110000px;}
.xb_c00339{left:115.290236px;}
.x4_c00339{left:120.420000px;}
.x7_c00339{left:122.533500px;}
.x2_c00339{left:125.820000px;}
.xb6_c00339{left:132.433500px;}
.xa7_c00339{left:149.850000px;}
.x85_c00339{left:153.630000px;}
.x77_c00339{left:156.330000px;}
.x18_c00339{left:157.410000px;}
.x11_c00339{left:159.300000px;}
.x17_c00339{left:160.920000px;}
.x19_c00339{left:174.150000px;}
.x47_c00339{left:175.770000px;}
.x6b_c00339{left:179.010000px;}
.x8e_c00339{left:186.030000px;}
.x54_c00339{left:187.110000px;}
.x5_c00339{left:190.890000px;}
.x6_c00339{left:191.970000px;}
.x86_c00339{left:193.050000px;}
.x7f_c00339{left:196.830000px;}
.x4c_c00339{left:198.990000px;}
.xb1_c00339{left:202.402500px;}
.x2d_c00339{left:203.850000px;}
.x5a_c00339{left:204.930000px;}
.x8f_c00339{left:208.710000px;}
.xaf_c00339{left:211.680000px;}
.x1a_c00339{left:213.570000px;}
.x36_c00339{left:216.810000px;}
.x98_c00339{left:218.700000px;}
.x23_c00339{left:219.780000px;}
.x2e_c00339{left:224.100000px;}
.x87_c00339{left:226.260000px;}
.x9c_c00339{left:227.610000px;}
.x78_c00339{left:231.120000px;}
.x4d_c00339{left:233.280000px;}
.x2f_c00339{left:235.710000px;}
.x65_c00339{left:238.140000px;}
.x79_c00339{left:241.920000px;}
.x1b_c00339{left:243.000000px;}
.xc_c00339{left:247.323704px;}
.x37_c00339{left:250.830000px;}
.x5b_c00339{left:254.340000px;}
.x12_c00339{left:256.500000px;}
.x3f_c00339{left:258.660000px;}
.x80_c00339{left:260.550000px;}
.x9d_c00339{left:263.790000px;}
.x7a_c00339{left:267.840000px;}
.xb2_c00339{left:269.629500px;}
.x24_c00339{left:278.640000px;}
.x73_c00339{left:279.720000px;}
.xb0_c00339{left:281.880000px;}
.x13_c00339{left:283.230000px;}
.xa8_c00339{left:284.310000px;}
.x99_c00339{left:286.200000px;}
.x90_c00339{left:290.250000px;}
.x48_c00339{left:294.030000px;}
.x6c_c00339{left:295.650000px;}
.x5c_c00339{left:298.620000px;}
.x4e_c00339{left:301.050000px;}
.xd_c00339{left:305.645060px;}
.x60_c00339{left:308.070000px;}
.x1c_c00339{left:311.580000px;}
.x91_c00339{left:314.550000px;}
.x7b_c00339{left:317.250000px;}
.x74_c00339{left:318.330000px;}
.x25_c00339{left:321.300000px;}
.x40_c00339{left:322.650000px;}
.x9a_c00339{left:324.540000px;}
.xab_c00339{left:327.780000px;}
.x4f_c00339{left:332.370000px;}
.x8a_c00339{left:333.990000px;}
.x30_c00339{left:336.150000px;}
.x66_c00339{left:340.740000px;}
.x8_c00339{left:344.715000px;}
.x1d_c00339{left:349.650000px;}
.x6d_c00339{left:351.270000px;}
.x55_c00339{left:354.510000px;}
.x5d_c00339{left:356.670000px;}
.x26_c00339{left:358.290000px;}
.x9b_c00339{left:364.500000px;}
.x61_c00339{left:366.120000px;}
.x38_c00339{left:367.470000px;}
.x49_c00339{left:370.170000px;}
.xa2_c00339{left:372.330000px;}
.x31_c00339{left:376.920000px;}
.x94_c00339{left:378.540000px;}
.x14_c00339{left:385.560000px;}
.x27_c00339{left:387.990000px;}
.x62_c00339{left:389.880000px;}
.xe_c00339{left:390.967739px;}
.x1e_c00339{left:394.470000px;}
.x39_c00339{left:398.790000px;}
.x75_c00339{left:400.410000px;}
.x41_c00339{left:401.490000px;}
.x8b_c00339{left:404.190000px;}
.xa9_c00339{left:406.890000px;}
.xa3_c00339{left:409.050000px;}
.x6e_c00339{left:412.290000px;}
.x50_c00339{left:414.180000px;}
.x32_c00339{left:415.800000px;}
.x15_c00339{left:417.960000px;}
.x56_c00339{left:420.120000px;}
.x42_c00339{left:422.010000px;}
.x8c_c00339{left:424.980000px;}
.x9e_c00339{left:426.870000px;}
.x88_c00339{left:428.220000px;}
.x6f_c00339{left:432.810000px;}
.x67_c00339{left:436.590000px;}
.x43_c00339{left:441.180000px;}
.x9f_c00339{left:442.260000px;}
.x81_c00339{left:446.580000px;}
.x51_c00339{left:447.660000px;}
.x95_c00339{left:449.550000px;}
.x7c_c00339{left:450.900000px;}
.x28_c00339{left:452.250000px;}
.xb3_c00339{left:454.852500px;}
.x1f_c00339{left:456.030000px;}
.x16_c00339{left:458.190000px;}
.x70_c00339{left:460.890000px;}
.xac_c00339{left:465.750000px;}
.x3a_c00339{left:467.370000px;}
.x89_c00339{left:472.230000px;}
.x68_c00339{left:475.470000px;}
.x29_c00339{left:477.090000px;}
.x82_c00339{left:478.170000px;}
.x96_c00339{left:479.250000px;}
.x5e_c00339{left:481.140000px;}
.x33_c00339{left:483.570000px;}
.x71_c00339{left:486.000000px;}
.x4a_c00339{left:490.320000px;}
.xa0_c00339{left:491.940000px;}
.x3b_c00339{left:494.100000px;}
.x2a_c00339{left:498.960000px;}
.xad_c00339{left:501.660000px;}
.x52_c00339{left:510.030000px;}
.x92_c00339{left:514.890000px;}
.xf_c00339{left:517.600944px;}
.x44_c00339{left:520.290000px;}
.x7d_c00339{left:521.640000px;}
.x3c_c00339{left:524.880000px;}
.xb4_c00339{left:527.482500px;}
.x69_c00339{left:532.710000px;}
.x20_c00339{left:535.680000px;}
.x9_c00339{left:536.946000px;}
.x57_c00339{left:544.320000px;}
.x45_c00339{left:545.940000px;}
.x63_c00339{left:547.560000px;}
.x6a_c00339{left:550.530000px;}
.x97_c00339{left:551.610000px;}
.x93_c00339{left:554.040000px;}
.x2b_c00339{left:555.660000px;}
.x34_c00339{left:561.060000px;}
.xb5_c00339{left:562.587000px;}
.x46_c00339{left:564.030000px;}
.x83_c00339{left:565.380000px;}
.x7e_c00339{left:568.620000px;}
.x72_c00339{left:569.700000px;}
.xa1_c00339{left:570.780000px;}
.x21_c00339{left:572.400000px;}
.xa4_c00339{left:574.290000px;}
.x58_c00339{left:575.370000px;}
.x10_c00339{left:579.162457px;}
.x3d_c00339{left:581.850000px;}
.xae_c00339{left:583.200000px;}
.xa_c00339{left:585.565500px;}
.x35_c00339{left:589.950000px;}
.x53_c00339{left:591.570000px;}
.xb7_c00339{left:593.524947px;}
.xa5_c00339{left:595.350000px;}
.x22_c00339{left:596.970000px;}
.x2c_c00339{left:599.400000px;}
.x59_c00339{left:600.750000px;}
.x8d_c00339{left:603.450000px;}
.x76_c00339{left:606.420000px;}
.x64_c00339{left:607.500000px;}
.x3e_c00339{left:609.660000px;}
.x4b_c00339{left:612.630000px;}
.x5f_c00339{left:614.250000px;}
.xa6_c00339{left:615.870000px;}
.xaa_c00339{left:616.950000px;}
.x84_c00339{left:623.160000px;}
.xb8_c00339{left:664.729172px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws0_c00339{word-spacing:0.000000pt;}
.fs9_c00339{font-size:19.600000pt;}
.fs3_c00339{font-size:21.466667pt;}
.fs4_c00339{font-size:24.266667pt;}
.fs0_c00339{font-size:36.400000pt;}
.fs11_c00339{font-size:44.778155pt;}
.fsf_c00339{font-size:56.000000pt;}
.fs7_c00339{font-size:56.001372pt;}
.fsd_c00339{font-size:60.666667pt;}
.fsa_c00339{font-size:61.600000pt;}
.fsc_c00339{font-size:62.533333pt;}
.fse_c00339{font-size:63.466667pt;}
.fsb_c00339{font-size:64.400000pt;}
.fs2_c00339{font-size:65.333333pt;}
.fs10_c00339{font-size:66.266667pt;}
.fs1_c00339{font-size:67.200000pt;}
.fs8_c00339{font-size:79.333333pt;}
.fs5_c00339{font-size:96.135689pt;}
.fs6_c00339{font-size:134.403293pt;}
.y0_c00339{bottom:0.000000pt;}
.y3f_c00339{bottom:108.321323pt;}
.y3e_c00339{bottom:110.348715pt;}
.y3d_c00339{bottom:110.888363pt;}
.y3c_c00339{bottom:115.601792pt;}
.y3b_c00339{bottom:118.193536pt;}
.y3a_c00339{bottom:121.895381pt;}
.y39_c00339{bottom:123.477333pt;}
.y38_c00339{bottom:184.321333pt;}
.y37_c00339{bottom:205.372000pt;}
.y36_c00339{bottom:205.666667pt;}
.y35_c00339{bottom:205.885333pt;}
.y34_c00339{bottom:206.337333pt;}
.y33_c00339{bottom:206.480000pt;}
.y32_c00339{bottom:206.592000pt;}
.y31_c00339{bottom:206.962667pt;}
.y30_c00339{bottom:207.253333pt;}
.y2f_c00339{bottom:207.488000pt;}
.y2e_c00339{bottom:207.906667pt;}
.y2d_c00339{bottom:208.081333pt;}
.y2c_c00339{bottom:228.118667pt;}
.y2b_c00339{bottom:248.060000pt;}
.y2a_c00339{bottom:269.165333pt;}
.y29_c00339{bottom:288.832000pt;}
.y28_c00339{bottom:309.656000pt;}
.y27_c00339{bottom:329.760000pt;}
.y26_c00339{bottom:350.668000pt;}
.y25_c00339{bottom:370.826667pt;}
.y24_c00339{bottom:391.226667pt;}
.y23_c00339{bottom:411.386667pt;}
.y22_c00339{bottom:432.025333pt;}
.y21_c00339{bottom:452.852000pt;}
.y20_c00339{bottom:473.225333pt;}
.y1f_c00339{bottom:493.626667pt;}
.y1e_c00339{bottom:513.868000pt;}
.y1d_c00339{bottom:534.425333pt;}
.y1c_c00339{bottom:554.801333pt;}
.y1b_c00339{bottom:574.958667pt;}
.y1a_c00339{bottom:595.357333pt;}
.y19_c00339{bottom:615.998667pt;}
.y18_c00339{bottom:636.637333pt;}
.y17_c00339{bottom:656.314667pt;}
.y16_c00339{bottom:677.138667pt;}
.y15_c00339{bottom:697.541333pt;}
.y14_c00339{bottom:717.996000pt;}
.y13_c00339{bottom:738.397333pt;}
.y12_c00339{bottom:760.198667pt;}
.y11_c00339{bottom:778.993333pt;}
.y3_c00339{bottom:802.564000pt;}
.y10_c00339{bottom:803.038552pt;}
.yf_c00339{bottom:816.698009pt;}
.yd_c00339{bottom:816.698275pt;}
.ye_c00339{bottom:816.698373pt;}
.yc_c00339{bottom:816.698479pt;}
.yb_c00339{bottom:816.698683pt;}
.ya_c00339{bottom:816.698851pt;}
.y2_c00339{bottom:824.640000pt;}
.y9_c00339{bottom:831.838912pt;}
.y8_c00339{bottom:832.141433pt;}
.y1_c00339{bottom:833.040000pt;}
.y7_c00339{bottom:833.337537pt;}
.y5_c00339{bottom:834.240000pt;}
.y6_c00339{bottom:834.720000pt;}
.y4_c00339{bottom:838.080000pt;}
.hb_c00339{height:19.600000pt;}
.h5_c00339{height:21.466667pt;}
.h6_c00339{height:24.266667pt;}
.h2_c00339{height:36.400000pt;}
.h13_c00339{height:44.778155pt;}
.h11_c00339{height:56.000000pt;}
.h9_c00339{height:56.001372pt;}
.hf_c00339{height:60.666667pt;}
.hc_c00339{height:61.600000pt;}
.he_c00339{height:62.533333pt;}
.h10_c00339{height:63.466667pt;}
.hd_c00339{height:64.400000pt;}
.h4_c00339{height:65.333333pt;}
.h12_c00339{height:66.266667pt;}
.h3_c00339{height:67.200000pt;}
.ha_c00339{height:79.333333pt;}
.h7_c00339{height:96.135689pt;}
.h8_c00339{height:134.403293pt;}
.h0_c00339{height:896.400000pt;}
.h1_c00339{height:896.666667pt;}
.w0_c00339{width:618.666667pt;}
.x0_c00339{left:0.000000pt;}
.x3_c00339{left:88.080000pt;}
.x1_c00339{left:94.320000pt;}
.xb_c00339{left:102.480209pt;}
.x4_c00339{left:107.040000pt;}
.x7_c00339{left:108.918667pt;}
.x2_c00339{left:111.840000pt;}
.xb6_c00339{left:117.718667pt;}
.xa7_c00339{left:133.200000pt;}
.x85_c00339{left:136.560000pt;}
.x77_c00339{left:138.960000pt;}
.x18_c00339{left:139.920000pt;}
.x11_c00339{left:141.600000pt;}
.x17_c00339{left:143.040000pt;}
.x19_c00339{left:154.800000pt;}
.x47_c00339{left:156.240000pt;}
.x6b_c00339{left:159.120000pt;}
.x8e_c00339{left:165.360000pt;}
.x54_c00339{left:166.320000pt;}
.x5_c00339{left:169.680000pt;}
.x6_c00339{left:170.640000pt;}
.x86_c00339{left:171.600000pt;}
.x7f_c00339{left:174.960000pt;}
.x4c_c00339{left:176.880000pt;}
.xb1_c00339{left:179.913333pt;}
.x2d_c00339{left:181.200000pt;}
.x5a_c00339{left:182.160000pt;}
.x8f_c00339{left:185.520000pt;}
.xaf_c00339{left:188.160000pt;}
.x1a_c00339{left:189.840000pt;}
.x36_c00339{left:192.720000pt;}
.x98_c00339{left:194.400000pt;}
.x23_c00339{left:195.360000pt;}
.x2e_c00339{left:199.200000pt;}
.x87_c00339{left:201.120000pt;}
.x9c_c00339{left:202.320000pt;}
.x78_c00339{left:205.440000pt;}
.x4d_c00339{left:207.360000pt;}
.x2f_c00339{left:209.520000pt;}
.x65_c00339{left:211.680000pt;}
.x79_c00339{left:215.040000pt;}
.x1b_c00339{left:216.000000pt;}
.xc_c00339{left:219.843292pt;}
.x37_c00339{left:222.960000pt;}
.x5b_c00339{left:226.080000pt;}
.x12_c00339{left:228.000000pt;}
.x3f_c00339{left:229.920000pt;}
.x80_c00339{left:231.600000pt;}
.x9d_c00339{left:234.480000pt;}
.x7a_c00339{left:238.080000pt;}
.xb2_c00339{left:239.670667pt;}
.x24_c00339{left:247.680000pt;}
.x73_c00339{left:248.640000pt;}
.xb0_c00339{left:250.560000pt;}
.x13_c00339{left:251.760000pt;}
.xa8_c00339{left:252.720000pt;}
.x99_c00339{left:254.400000pt;}
.x90_c00339{left:258.000000pt;}
.x48_c00339{left:261.360000pt;}
.x6c_c00339{left:262.800000pt;}
.x5c_c00339{left:265.440000pt;}
.x4e_c00339{left:267.600000pt;}
.xd_c00339{left:271.684497pt;}
.x60_c00339{left:273.840000pt;}
.x1c_c00339{left:276.960000pt;}
.x91_c00339{left:279.600000pt;}
.x7b_c00339{left:282.000000pt;}
.x74_c00339{left:282.960000pt;}
.x25_c00339{left:285.600000pt;}
.x40_c00339{left:286.800000pt;}
.x9a_c00339{left:288.480000pt;}
.xab_c00339{left:291.360000pt;}
.x4f_c00339{left:295.440000pt;}
.x8a_c00339{left:296.880000pt;}
.x30_c00339{left:298.800000pt;}
.x66_c00339{left:302.880000pt;}
.x8_c00339{left:306.413333pt;}
.x1d_c00339{left:310.800000pt;}
.x6d_c00339{left:312.240000pt;}
.x55_c00339{left:315.120000pt;}
.x5d_c00339{left:317.040000pt;}
.x26_c00339{left:318.480000pt;}
.x9b_c00339{left:324.000000pt;}
.x61_c00339{left:325.440000pt;}
.x38_c00339{left:326.640000pt;}
.x49_c00339{left:329.040000pt;}
.xa2_c00339{left:330.960000pt;}
.x31_c00339{left:335.040000pt;}
.x94_c00339{left:336.480000pt;}
.x14_c00339{left:342.720000pt;}
.x27_c00339{left:344.880000pt;}
.x62_c00339{left:346.560000pt;}
.xe_c00339{left:347.526879pt;}
.x1e_c00339{left:350.640000pt;}
.x39_c00339{left:354.480000pt;}
.x75_c00339{left:355.920000pt;}
.x41_c00339{left:356.880000pt;}
.x8b_c00339{left:359.280000pt;}
.xa9_c00339{left:361.680000pt;}
.xa3_c00339{left:363.600000pt;}
.x6e_c00339{left:366.480000pt;}
.x50_c00339{left:368.160000pt;}
.x32_c00339{left:369.600000pt;}
.x15_c00339{left:371.520000pt;}
.x56_c00339{left:373.440000pt;}
.x42_c00339{left:375.120000pt;}
.x8c_c00339{left:377.760000pt;}
.x9e_c00339{left:379.440000pt;}
.x88_c00339{left:380.640000pt;}
.x6f_c00339{left:384.720000pt;}
.x67_c00339{left:388.080000pt;}
.x43_c00339{left:392.160000pt;}
.x9f_c00339{left:393.120000pt;}
.x81_c00339{left:396.960000pt;}
.x51_c00339{left:397.920000pt;}
.x95_c00339{left:399.600000pt;}
.x7c_c00339{left:400.800000pt;}
.x28_c00339{left:402.000000pt;}
.xb3_c00339{left:404.313333pt;}
.x1f_c00339{left:405.360000pt;}
.x16_c00339{left:407.280000pt;}
.x70_c00339{left:409.680000pt;}
.xac_c00339{left:414.000000pt;}
.x3a_c00339{left:415.440000pt;}
.x89_c00339{left:419.760000pt;}
.x68_c00339{left:422.640000pt;}
.x29_c00339{left:424.080000pt;}
.x82_c00339{left:425.040000pt;}
.x96_c00339{left:426.000000pt;}
.x5e_c00339{left:427.680000pt;}
.x33_c00339{left:429.840000pt;}
.x71_c00339{left:432.000000pt;}
.x4a_c00339{left:435.840000pt;}
.xa0_c00339{left:437.280000pt;}
.x3b_c00339{left:439.200000pt;}
.x2a_c00339{left:443.520000pt;}
.xad_c00339{left:445.920000pt;}
.x52_c00339{left:453.360000pt;}
.x92_c00339{left:457.680000pt;}
.xf_c00339{left:460.089728pt;}
.x44_c00339{left:462.480000pt;}
.x7d_c00339{left:463.680000pt;}
.x3c_c00339{left:466.560000pt;}
.xb4_c00339{left:468.873333pt;}
.x69_c00339{left:473.520000pt;}
.x20_c00339{left:476.160000pt;}
.x9_c00339{left:477.285333pt;}
.x57_c00339{left:483.840000pt;}
.x45_c00339{left:485.280000pt;}
.x63_c00339{left:486.720000pt;}
.x6a_c00339{left:489.360000pt;}
.x97_c00339{left:490.320000pt;}
.x93_c00339{left:492.480000pt;}
.x2b_c00339{left:493.920000pt;}
.x34_c00339{left:498.720000pt;}
.xb5_c00339{left:500.077333pt;}
.x46_c00339{left:501.360000pt;}
.x83_c00339{left:502.560000pt;}
.x7e_c00339{left:505.440000pt;}
.x72_c00339{left:506.400000pt;}
.xa1_c00339{left:507.360000pt;}
.x21_c00339{left:508.800000pt;}
.xa4_c00339{left:510.480000pt;}
.x58_c00339{left:511.440000pt;}
.x10_c00339{left:514.811073pt;}
.x3d_c00339{left:517.200000pt;}
.xae_c00339{left:518.400000pt;}
.xa_c00339{left:520.502667pt;}
.x35_c00339{left:524.400000pt;}
.x53_c00339{left:525.840000pt;}
.xb7_c00339{left:527.577731pt;}
.xa5_c00339{left:529.200000pt;}
.x22_c00339{left:530.640000pt;}
.x2c_c00339{left:532.800000pt;}
.x59_c00339{left:534.000000pt;}
.x8d_c00339{left:536.400000pt;}
.x76_c00339{left:539.040000pt;}
.x64_c00339{left:540.000000pt;}
.x3e_c00339{left:541.920000pt;}
.x4b_c00339{left:544.560000pt;}
.x5f_c00339{left:546.000000pt;}
.xa6_c00339{left:547.440000pt;}
.xaa_c00339{left:548.400000pt;}
.x84_c00339{left:553.920000pt;}
.xb8_c00339{left:590.870375pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.m16c_c00340{transform:matrix(0.007851,-0.000259,0.008254,0.249864,0,0);-ms-transform:matrix(0.007851,-0.000259,0.008254,0.249864,0,0);-webkit-transform:matrix(0.007851,-0.000259,0.008254,0.249864,0,0);}
.mdd_c00340{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);}
.m164_c00340{transform:matrix(0.021138,-0.000698,0.008254,0.249864,0,0);-ms-transform:matrix(0.021138,-0.000698,0.008254,0.249864,0,0);-webkit-transform:matrix(0.021138,-0.000698,0.008254,0.249864,0,0);}
.mdc_c00340{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);}
.me_c00340{transform:matrix(0.107749,0.002586,-0.005998,0.249928,0,0);-ms-transform:matrix(0.107749,0.002586,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.107749,0.002586,-0.005998,0.249928,0,0);}
.m148_c00340{transform:matrix(0.130265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130265,0.000000,0.000000,0.250000,0,0);}
.md7_c00340{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.me9_c00340{transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.144610,-0.001157,0.002000,0.249992,0,0);-ms-transform:matrix(0.144610,-0.001157,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144610,-0.001157,0.002000,0.249992,0,0);}
.m11e_c00340{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.148410,-0.001187,0.002000,0.249992,0,0);-ms-transform:matrix(0.148410,-0.001187,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148410,-0.001187,0.002000,0.249992,0,0);}
.m87_c00340{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.mcf_c00340{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);}
.m0_c00340{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);}
.mea_c00340{transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);}
.med_c00340{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);}
.md5_c00340{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);}
.mc6_c00340{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);}
.mb6_c00340{transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152765,0.000000,0.000000,0.250000,0,0);}
.m11d_c00340{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);}
.mfa_c00340{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.153675,-0.001229,0.002000,0.249992,0,0);-ms-transform:matrix(0.153675,-0.001229,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153675,-0.001229,0.002000,0.249992,0,0);}
.m49_c00340{transform:matrix(0.155060,-0.001240,0.002000,0.249992,0,0);-ms-transform:matrix(0.155060,-0.001240,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155060,-0.001240,0.002000,0.249992,0,0);}
.me3_c00340{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);}
.m16_c00340{transform:matrix(0.155705,0.003737,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155705,0.003737,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155705,0.003737,-0.005998,0.249928,0,0);}
.m13b_c00340{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);}
.m97_c00340{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);}
.m15e_c00340{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);}
.m107_c00340{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);}
.m146_c00340{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);}
.m36_c00340{transform:matrix(0.158855,-0.001271,0.002000,0.249992,0,0);-ms-transform:matrix(0.158855,-0.001271,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158855,-0.001271,0.002000,0.249992,0,0);}
.m131_c00340{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);}
.m6d_c00340{transform:matrix(0.159575,-0.001277,0.002000,0.249992,0,0);-ms-transform:matrix(0.159575,-0.001277,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159575,-0.001277,0.002000,0.249992,0,0);}
.mad_c00340{transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);}
.mbc_c00340{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);}
.m37_c00340{transform:matrix(0.160025,-0.001280,0.002000,0.249992,0,0);-ms-transform:matrix(0.160025,-0.001280,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160025,-0.001280,0.002000,0.249992,0,0);}
.m136_c00340{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);}
.mf5_c00340{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);}
.m71_c00340{transform:matrix(0.161430,-0.001291,0.002000,0.249992,0,0);-ms-transform:matrix(0.161430,-0.001291,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161430,-0.001291,0.002000,0.249992,0,0);}
.m10b_c00340{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);}
.m77_c00340{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);}
.m34_c00340{transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);-ms-transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);}
.m13a_c00340{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);}
.m116_c00340{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);}
.mfc_c00340{transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);}
.mb8_c00340{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);}
.mcc_c00340{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);}
.m3f_c00340{transform:matrix(0.165290,-0.001322,0.002000,0.249992,0,0);-ms-transform:matrix(0.165290,-0.001322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165290,-0.001322,0.002000,0.249992,0,0);}
.mc8_c00340{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);}
.m150_c00340{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);}
.m3d_c00340{transform:matrix(0.165870,-0.001327,0.002000,0.249992,0,0);-ms-transform:matrix(0.165870,-0.001327,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165870,-0.001327,0.002000,0.249992,0,0);}
.md0_c00340{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);}
.m56_c00340{transform:matrix(0.165895,-0.001327,0.002000,0.249992,0,0);-ms-transform:matrix(0.165895,-0.001327,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165895,-0.001327,0.002000,0.249992,0,0);}
.m106_c00340{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);}
.m15f_c00340{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);}
.mb4_c00340{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);}
.m9a_c00340{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);}
.md1_c00340{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);}
.mbd_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);}
.mc4_c00340{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);}
.mb2_c00340{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);}
.mcd_c00340{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);}
.mf9_c00340{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);}
.maa_c00340{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);}
.m9e_c00340{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);}
.m13c_c00340{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);}
.m96_c00340{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);}
.mb9_c00340{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);}
.mac_c00340{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);}
.mee_c00340{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);}
.mb0_c00340{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);}
.m156_c00340{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);}
.m109_c00340{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);}
.ma1_c00340{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);}
.m64_c00340{transform:matrix(0.171435,-0.001371,0.002000,0.249992,0,0);-ms-transform:matrix(0.171435,-0.001371,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171435,-0.001371,0.002000,0.249992,0,0);}
.m103_c00340{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);}
.m105_c00340{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);}
.mcb_c00340{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);}
.m47_c00340{transform:matrix(0.172319,-0.001379,0.002000,0.249992,0,0);-ms-transform:matrix(0.172319,-0.001379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172319,-0.001379,0.002000,0.249992,0,0);}
.m112_c00340{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);}
.m104_c00340{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);}
.me2_c00340{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);}
.m12a_c00340{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);}
.mae_c00340{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);}
.maf_c00340{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);}
.m133_c00340{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);}
.m166_c00340{transform:matrix(0.175414,-0.005794,0.008254,0.249864,0,0);-ms-transform:matrix(0.175414,-0.005794,0.008254,0.249864,0,0);-webkit-transform:matrix(0.175414,-0.005794,0.008254,0.249864,0,0);}
.m12b_c00340{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);}
.m11a_c00340{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);}
.m139_c00340{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);}
.mff_c00340{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);}
.m7b_c00340{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);}
.m137_c00340{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);}
.m39_c00340{transform:matrix(0.175984,-0.001408,0.002000,0.249992,0,0);-ms-transform:matrix(0.175984,-0.001408,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175984,-0.001408,0.002000,0.249992,0,0);}
.m6b_c00340{transform:matrix(0.176079,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176079,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176079,-0.001409,0.002000,0.249992,0,0);}
.ma0_c00340{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);}
.mfb_c00340{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);}
.mef_c00340{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);}
.m3a_c00340{transform:matrix(0.176959,-0.001416,0.002000,0.249992,0,0);-ms-transform:matrix(0.176959,-0.001416,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176959,-0.001416,0.002000,0.249992,0,0);}
.m13d_c00340{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);}
.m127_c00340{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);}
.mec_c00340{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);}
.m101_c00340{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);}
.mf1_c00340{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);}
.md8_c00340{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);}
.m12d_c00340{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);}
.m4f_c00340{transform:matrix(0.178479,-0.001428,0.002000,0.249992,0,0);-ms-transform:matrix(0.178479,-0.001428,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178479,-0.001428,0.002000,0.249992,0,0);}
.mfd_c00340{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);}
.m12c_c00340{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);}
.m11f_c00340{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);}
.m8a_c00340{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);}
.m132_c00340{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.ma9_c00340{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);}
.m24_c00340{transform:matrix(0.179654,-0.001437,0.002000,0.249992,0,0);-ms-transform:matrix(0.179654,-0.001437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179654,-0.001437,0.002000,0.249992,0,0);}
.m7a_c00340{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);}
.mf7_c00340{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);}
.m12f_c00340{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);}
.m5f_c00340{transform:matrix(0.180594,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180594,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180594,-0.001445,0.002000,0.249992,0,0);}
.m53_c00340{transform:matrix(0.180734,-0.001446,0.002000,0.249992,0,0);-ms-transform:matrix(0.180734,-0.001446,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180734,-0.001446,0.002000,0.249992,0,0);}
.m122_c00340{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);}
.mf0_c00340{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);}
.m88_c00340{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);}
.m144_c00340{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);}
.m54_c00340{transform:matrix(0.182409,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182409,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182409,-0.001459,0.002000,0.249992,0,0);}
.m4a_c00340{transform:matrix(0.182764,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182764,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182764,-0.001462,0.002000,0.249992,0,0);}
.m22_c00340{transform:matrix(0.182834,-0.001463,0.002000,0.249992,0,0);-ms-transform:matrix(0.182834,-0.001463,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182834,-0.001463,0.002000,0.249992,0,0);}
.m1e_c00340{transform:matrix(0.182919,-0.001463,0.002000,0.249992,0,0);-ms-transform:matrix(0.182919,-0.001463,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182919,-0.001463,0.002000,0.249992,0,0);}
.m76_c00340{transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);}
.ma8_c00340{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);}
.m12e_c00340{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);}
.m125_c00340{transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.183359,-0.001467,0.002000,0.249992,0,0);-ms-transform:matrix(0.183359,-0.001467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183359,-0.001467,0.002000,0.249992,0,0);}
.m151_c00340{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);}
.mf8_c00340{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);}
.mda_c00340{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);}
.mc9_c00340{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);}
.m13f_c00340{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);}
.mf3_c00340{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);}
.m118_c00340{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.m142_c00340{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);}
.m4c_c00340{transform:matrix(0.184309,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184309,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184309,-0.001474,0.002000,0.249992,0,0);}
.m152_c00340{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);}
.m124_c00340{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);}
.m23_c00340{transform:matrix(0.184584,-0.001477,0.002000,0.249992,0,0);-ms-transform:matrix(0.184584,-0.001477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184584,-0.001477,0.002000,0.249992,0,0);}
.m29_c00340{transform:matrix(0.184704,-0.001478,0.002000,0.249992,0,0);-ms-transform:matrix(0.184704,-0.001478,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184704,-0.001478,0.002000,0.249992,0,0);}
.mc5_c00340{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);}
.m1d_c00340{transform:matrix(0.184984,-0.001480,0.002000,0.249992,0,0);-ms-transform:matrix(0.184984,-0.001480,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184984,-0.001480,0.002000,0.249992,0,0);}
.m67_c00340{transform:matrix(0.185089,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185089,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185089,-0.001481,0.002000,0.249992,0,0);}
.m135_c00340{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);}
.m25_c00340{transform:matrix(0.185724,-0.001486,0.002000,0.249992,0,0);-ms-transform:matrix(0.185724,-0.001486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185724,-0.001486,0.002000,0.249992,0,0);}
.m4b_c00340{transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185934,-0.001487,0.002000,0.249992,0,0);}
.m130_c00340{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m9c_c00340{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);}
.m143_c00340{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);}
.mf2_c00340{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);}
.m48_c00340{transform:matrix(0.186989,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.186989,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186989,-0.001496,0.002000,0.249992,0,0);}
.m120_c00340{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);}
.mca_c00340{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);}
.m70_c00340{transform:matrix(0.187514,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187514,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187514,-0.001500,0.002000,0.249992,0,0);}
.me6_c00340{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);}
.mbe_c00340{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);}
.m33_c00340{transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);-ms-transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188794,-0.001510,0.002000,0.249992,0,0);}
.m147_c00340{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);}
.m78_c00340{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);}
.m15a_c00340{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);}
.m4d_c00340{transform:matrix(0.189454,-0.001516,0.002000,0.249992,0,0);-ms-transform:matrix(0.189454,-0.001516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189454,-0.001516,0.002000,0.249992,0,0);}
.mb5_c00340{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);}
.me5_c00340{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);}
.me0_c00340{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);}
.m63_c00340{transform:matrix(0.190584,-0.001525,0.002000,0.249992,0,0);-ms-transform:matrix(0.190584,-0.001525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190584,-0.001525,0.002000,0.249992,0,0);}
.m134_c00340{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);}
.meb_c00340{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);}
.m154_c00340{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);}
.m100_c00340{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);}
.mb3_c00340{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);}
.m50_c00340{transform:matrix(0.191609,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191609,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191609,-0.001533,0.002000,0.249992,0,0);}
.m4e_c00340{transform:matrix(0.191639,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191639,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191639,-0.001533,0.002000,0.249992,0,0);}
.m8b_c00340{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);}
.m149_c00340{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);}
.m6a_c00340{transform:matrix(0.192099,-0.001537,0.002000,0.249992,0,0);-ms-transform:matrix(0.192099,-0.001537,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192099,-0.001537,0.002000,0.249992,0,0);}
.m155_c00340{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);}
.m1f_c00340{transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192454,-0.001540,0.002000,0.249992,0,0);}
.mf6_c00340{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);}
.m13e_c00340{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);}
.mc2_c00340{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);}
.m1_c00340{transform:matrix(0.192665,0.004624,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192665,0.004624,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192665,0.004624,-0.005998,0.249928,0,0);}
.m98_c00340{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);}
.me7_c00340{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);}
.m121_c00340{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);}
.mde_c00340{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);}
.me1_c00340{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);}
.mf4_c00340{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);}
.m89_c00340{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);}
.m165_c00340{transform:matrix(0.193934,-0.006406,0.008254,0.249864,0,0);-ms-transform:matrix(0.193934,-0.006406,0.008254,0.249864,0,0);-webkit-transform:matrix(0.193934,-0.006406,0.008254,0.249864,0,0);}
.m73_c00340{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);}
.md2_c00340{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);}
.m7f_c00340{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);}
.m40_c00340{transform:matrix(0.194244,-0.001554,0.002000,0.249992,0,0);-ms-transform:matrix(0.194244,-0.001554,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194244,-0.001554,0.002000,0.249992,0,0);}
.m21_c00340{transform:matrix(0.194954,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.194954,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194954,-0.001560,0.002000,0.249992,0,0);}
.m5a_c00340{transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);}
.mdf_c00340{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);}
.m145_c00340{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);}
.md6_c00340{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_c00340{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);}
.m9f_c00340{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);}
.m11b_c00340{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);}
.m10a_c00340{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);}
.m35_c00340{transform:matrix(0.197624,-0.001581,0.002000,0.249992,0,0);-ms-transform:matrix(0.197624,-0.001581,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197624,-0.001581,0.002000,0.249992,0,0);}
.m6f_c00340{transform:matrix(0.197649,-0.001581,0.002000,0.249992,0,0);-ms-transform:matrix(0.197649,-0.001581,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197649,-0.001581,0.002000,0.249992,0,0);}
.mfe_c00340{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);}
.m119_c00340{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);}
.m138_c00340{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);}
.m3e_c00340{transform:matrix(0.198114,-0.001585,0.002000,0.249992,0,0);-ms-transform:matrix(0.198114,-0.001585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198114,-0.001585,0.002000,0.249992,0,0);}
.m20_c00340{transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);-ms-transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198164,-0.001585,0.002000,0.249992,0,0);}
.ma2_c00340{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);}
.m14c_c00340{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);}
.m42_c00340{transform:matrix(0.198634,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198634,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198634,-0.001589,0.002000,0.249992,0,0);}
.m62_c00340{transform:matrix(0.198704,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198704,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198704,-0.001590,0.002000,0.249992,0,0);}
.md9_c00340{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);}
.m102_c00340{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);}
.m79_c00340{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);}
.mbb_c00340{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);}
.m94_c00340{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);}
.m69_c00340{transform:matrix(0.200249,-0.001602,0.002000,0.249992,0,0);-ms-transform:matrix(0.200249,-0.001602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200249,-0.001602,0.002000,0.249992,0,0);}
.mc3_c00340{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);}
.m45_c00340{transform:matrix(0.200434,-0.001603,0.002000,0.249992,0,0);-ms-transform:matrix(0.200434,-0.001603,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200434,-0.001603,0.002000,0.249992,0,0);}
.m75_c00340{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);}
.m117_c00340{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);}
.m55_c00340{transform:matrix(0.201684,-0.001613,0.002000,0.249992,0,0);-ms-transform:matrix(0.201684,-0.001613,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201684,-0.001613,0.002000,0.249992,0,0);}
.m59_c00340{transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201989,-0.001616,0.002000,0.249992,0,0);}
.m160_c00340{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);}
.mbf_c00340{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);}
.m6c_c00340{transform:matrix(0.202534,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202534,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202534,-0.001620,0.002000,0.249992,0,0);}
.m14b_c00340{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);}
.m86_c00340{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);}
.m123_c00340{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);}
.m158_c00340{transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);}
.m126_c00340{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);}
.m14d_c00340{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);}
.m14a_c00340{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);}
.m157_c00340{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);}
.m44_c00340{transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);}
.m38_c00340{transform:matrix(0.204778,-0.001638,0.002000,0.249992,0,0);-ms-transform:matrix(0.204778,-0.001638,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204778,-0.001638,0.002000,0.249992,0,0);}
.m99_c00340{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);}
.m10d_c00340{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);}
.m8_c00340{transform:matrix(0.204866,0.004917,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204866,0.004917,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204866,0.004917,-0.005998,0.249928,0,0);}
.m14e_c00340{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);}
.m65_c00340{transform:matrix(0.205133,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205133,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205133,-0.001641,0.002000,0.249992,0,0);}
.m5e_c00340{transform:matrix(0.205528,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205528,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205528,-0.001644,0.002000,0.249992,0,0);}
.m114_c00340{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);}
.m6_c00340{transform:matrix(0.206191,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206191,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206191,0.004949,-0.005998,0.249928,0,0);}
.m68_c00340{transform:matrix(0.207358,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207358,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207358,-0.001659,0.002000,0.249992,0,0);}
.m57_c00340{transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);-ms-transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);}
.m41_c00340{transform:matrix(0.207628,-0.001661,0.002000,0.249992,0,0);-ms-transform:matrix(0.207628,-0.001661,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207628,-0.001661,0.002000,0.249992,0,0);}
.m85_c00340{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);}
.m161_c00340{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);}
.me4_c00340{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);}
.m10f_c00340{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);}
.mc1_c00340{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);}
.m110_c00340{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);}
.mdb_c00340{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);}
.m60_c00340{transform:matrix(0.210823,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210823,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210823,-0.001687,0.002000,0.249992,0,0);}
.m84_c00340{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);}
.m108_c00340{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);}
.m90_c00340{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);}
.m6e_c00340{transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);-ms-transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);}
.mce_c00340{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);}
.m95_c00340{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);}
.me8_c00340{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);}
.m5b_c00340{transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212168,-0.001697,0.002000,0.249992,0,0);}
.m58_c00340{transform:matrix(0.212498,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212498,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212498,-0.001700,0.002000,0.249992,0,0);}
.m159_c00340{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);}
.m15d_c00340{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);}
.ma7_c00340{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);}
.m43_c00340{transform:matrix(0.214583,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214583,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214583,-0.001717,0.002000,0.249992,0,0);}
.m9b_c00340{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);}
.ma6_c00340{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);}
.m72_c00340{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);}
.ma4_c00340{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);}
.m141_c00340{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);}
.m115_c00340{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);}
.mc0_c00340{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);}
.ma5_c00340{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);}
.m128_c00340{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.mba_c00340{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);}
.m91_c00340{transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);}
.m111_c00340{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);}
.m80_c00340{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);}
.m14f_c00340{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);}
.m153_c00340{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);}
.m3c_c00340{transform:matrix(0.226328,-0.001811,0.002000,0.249992,0,0);-ms-transform:matrix(0.226328,-0.001811,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226328,-0.001811,0.002000,0.249992,0,0);}
.m46_c00340{transform:matrix(0.229543,-0.001836,0.002000,0.249992,0,0);-ms-transform:matrix(0.229543,-0.001836,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229543,-0.001836,0.002000,0.249992,0,0);}
.m5d_c00340{transform:matrix(0.229978,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.229978,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229978,-0.001840,0.002000,0.249992,0,0);}
.m10e_c00340{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);}
.m81_c00340{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);}
.m11c_c00340{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.mab_c00340{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);}
.m7d_c00340{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);}
.m2d_c00340{transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);-ms-transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);}
.mb1_c00340{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);}
.mb7_c00340{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);}
.m74_c00340{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);}
.m5c_c00340{transform:matrix(0.238807,-0.001910,0.002000,0.249992,0,0);-ms-transform:matrix(0.238807,-0.001910,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238807,-0.001910,0.002000,0.249992,0,0);}
.m93_c00340{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.mc7_c00340{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);}
.m92_c00340{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);}
.m4_c00340{transform:matrix(0.244010,0.005856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244010,0.005856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244010,0.005856,-0.005998,0.249928,0,0);}
.m3b_c00340{transform:matrix(0.244117,-0.001953,0.002000,0.249992,0,0);-ms-transform:matrix(0.244117,-0.001953,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244117,-0.001953,0.002000,0.249992,0,0);}
.md4_c00340{transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{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);}
.ma3_c00340{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.m15c_c00340{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);}
.m2c_c00340{transform:matrix(0.246982,-0.001976,0.002000,0.249992,0,0);-ms-transform:matrix(0.246982,-0.001976,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246982,-0.001976,0.002000,0.249992,0,0);}
.m9d_c00340{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m10c_c00340{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.253202,-0.002026,0.002000,0.249992,0,0);-ms-transform:matrix(0.253202,-0.002026,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253202,-0.002026,0.002000,0.249992,0,0);}
.mb_c00340{transform:matrix(0.253687,0.006088,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253687,0.006088,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253687,0.006088,-0.005998,0.249928,0,0);}
.m2a_c00340{transform:matrix(0.253707,-0.002030,0.002000,0.249992,0,0);-ms-transform:matrix(0.253707,-0.002030,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253707,-0.002030,0.002000,0.249992,0,0);}
.m31_c00340{transform:matrix(0.254912,-0.002039,0.002000,0.249992,0,0);-ms-transform:matrix(0.254912,-0.002039,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254912,-0.002039,0.002000,0.249992,0,0);}
.m66_c00340{transform:matrix(0.259017,-0.002072,0.002000,0.249992,0,0);-ms-transform:matrix(0.259017,-0.002072,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259017,-0.002072,0.002000,0.249992,0,0);}
.m129_c00340{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);}
.m28_c00340{transform:matrix(0.261092,-0.002089,0.002000,0.249992,0,0);-ms-transform:matrix(0.261092,-0.002089,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261092,-0.002089,0.002000,0.249992,0,0);}
.m82_c00340{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);}
.m2e_c00340{transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);-ms-transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);}
.m2f_c00340{transform:matrix(0.266086,-0.002129,0.002000,0.249992,0,0);-ms-transform:matrix(0.266086,-0.002129,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266086,-0.002129,0.002000,0.249992,0,0);}
.m167_c00340{transform:matrix(0.271287,-0.008961,0.008254,0.249864,0,0);-ms-transform:matrix(0.271287,-0.008961,0.008254,0.249864,0,0);-webkit-transform:matrix(0.271287,-0.008961,0.008254,0.249864,0,0);}
.m2b_c00340{transform:matrix(0.272001,-0.002176,0.002000,0.249992,0,0);-ms-transform:matrix(0.272001,-0.002176,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272001,-0.002176,0.002000,0.249992,0,0);}
.m8e_c00340{transform:matrix(0.277535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277535,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.277641,-0.002221,0.002000,0.249992,0,0);-ms-transform:matrix(0.277641,-0.002221,0.002000,0.249992,0,0);-webkit-transform:matrix(0.277641,-0.002221,0.002000,0.249992,0,0);}
.m27_c00340{transform:matrix(0.279711,-0.002238,0.002000,0.249992,0,0);-ms-transform:matrix(0.279711,-0.002238,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279711,-0.002238,0.002000,0.249992,0,0);}
.m52_c00340{transform:matrix(0.280461,-0.002244,0.002000,0.249992,0,0);-ms-transform:matrix(0.280461,-0.002244,0.002000,0.249992,0,0);-webkit-transform:matrix(0.280461,-0.002244,0.002000,0.249992,0,0);}
.m140_c00340{transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.286233,0.006870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286233,0.006870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286233,0.006870,-0.005998,0.249928,0,0);}
.m16a_c00340{transform:matrix(0.290901,-0.009609,0.008254,0.249864,0,0);-ms-transform:matrix(0.290901,-0.009609,0.008254,0.249864,0,0);-webkit-transform:matrix(0.290901,-0.009609,0.008254,0.249864,0,0);}
.m113_c00340{transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291870,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.292565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292565,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299470,0.000000,0.000000,0.250000,0,0);}
.m15b_c00340{transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309090,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.310556,0.007453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.310556,0.007453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.310556,0.007453,-0.005998,0.249928,0,0);}
.m7_c00340{transform:matrix(0.320473,0.007691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.320473,0.007691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.320473,0.007691,-0.005998,0.249928,0,0);}
.m7c_c00340{transform:matrix(0.322745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322745,0.000000,0.000000,0.250000,0,0);}
.m16b_c00340{transform:matrix(0.329770,-0.010893,0.008254,0.249864,0,0);-ms-transform:matrix(0.329770,-0.010893,0.008254,0.249864,0,0);-webkit-transform:matrix(0.329770,-0.010893,0.008254,0.249864,0,0);}
.m17_c00340{transform:matrix(0.332369,0.007977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.332369,0.007977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.332369,0.007977,-0.005998,0.249928,0,0);}
.mc_c00340{transform:matrix(0.335873,0.008061,-0.005998,0.249928,0,0);-ms-transform:matrix(0.335873,0.008061,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.335873,0.008061,-0.005998,0.249928,0,0);}
.m2_c00340{transform:matrix(0.339142,0.008139,-0.005998,0.249928,0,0);-ms-transform:matrix(0.339142,0.008139,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.339142,0.008139,-0.005998,0.249928,0,0);}
.m16d_c00340{transform:matrix(0.343513,-0.011347,0.008254,0.249864,0,0);-ms-transform:matrix(0.343513,-0.011347,0.008254,0.249864,0,0);-webkit-transform:matrix(0.343513,-0.011347,0.008254,0.249864,0,0);}
.m19_c00340{transform:matrix(0.352069,0.008450,-0.005998,0.249928,0,0);-ms-transform:matrix(0.352069,0.008450,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.352069,0.008450,-0.005998,0.249928,0,0);}
.m11_c00340{transform:matrix(0.370063,0.008882,-0.005998,0.249928,0,0);-ms-transform:matrix(0.370063,0.008882,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.370063,0.008882,-0.005998,0.249928,0,0);}
.m168_c00340{transform:matrix(0.371223,-0.012263,0.008254,0.249864,0,0);-ms-transform:matrix(0.371223,-0.012263,0.008254,0.249864,0,0);-webkit-transform:matrix(0.371223,-0.012263,0.008254,0.249864,0,0);}
.m10_c00340{transform:matrix(0.392612,0.009423,-0.005998,0.249928,0,0);-ms-transform:matrix(0.392612,0.009423,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.392612,0.009423,-0.005998,0.249928,0,0);}
.ma_c00340{transform:matrix(0.395156,0.009484,-0.005998,0.249928,0,0);-ms-transform:matrix(0.395156,0.009484,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.395156,0.009484,-0.005998,0.249928,0,0);}
.m5_c00340{transform:matrix(0.427757,0.010266,-0.005998,0.249928,0,0);-ms-transform:matrix(0.427757,0.010266,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.427757,0.010266,-0.005998,0.249928,0,0);}
.m169_c00340{transform:matrix(0.440295,-0.014544,0.008254,0.249864,0,0);-ms-transform:matrix(0.440295,-0.014544,0.008254,0.249864,0,0);-webkit-transform:matrix(0.440295,-0.014544,0.008254,0.249864,0,0);}
.m12_c00340{transform:matrix(0.441463,0.010595,-0.005998,0.249928,0,0);-ms-transform:matrix(0.441463,0.010595,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.441463,0.010595,-0.005998,0.249928,0,0);}
.m162_c00340{transform:matrix(0.450285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450285,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.464771,0.011155,-0.005998,0.249928,0,0);-ms-transform:matrix(0.464771,0.011155,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.464771,0.011155,-0.005998,0.249928,0,0);}
.m9_c00340{transform:matrix(0.470854,0.011301,-0.005998,0.249928,0,0);-ms-transform:matrix(0.470854,0.011301,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.470854,0.011301,-0.005998,0.249928,0,0);}
.m3_c00340{transform:matrix(0.536366,0.012873,-0.005998,0.249928,0,0);-ms-transform:matrix(0.536366,0.012873,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.536366,0.012873,-0.005998,0.249928,0,0);}
.m163_c00340{transform:matrix(0.631735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631735,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.646059,0.015505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.646059,0.015505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.646059,0.015505,-0.005998,0.249928,0,0);}
.m18_c00340{transform:matrix(0.683988,0.016416,-0.005998,0.249928,0,0);-ms-transform:matrix(0.683988,0.016416,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.683988,0.016416,-0.005998,0.249928,0,0);}
.m13_c00340{transform:matrix(0.723802,0.017371,-0.005998,0.249928,0,0);-ms-transform:matrix(0.723802,0.017371,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.723802,0.017371,-0.005998,0.249928,0,0);}
.mf_c00340{transform:matrix(0.807707,0.019385,-0.005998,0.249928,0,0);-ms-transform:matrix(0.807707,0.019385,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.807707,0.019385,-0.005998,0.249928,0,0);}
.m15_c00340{transform:matrix(0.871644,0.020919,-0.005998,0.249928,0,0);-ms-transform:matrix(0.871644,0.020919,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.871644,0.020919,-0.005998,0.249928,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;}
.fs0_c00340{font-size:22.050000px;}
.fs13_c00340{font-size:33.600000px;}
.fs1_c00340{font-size:39.911490px;}
.fs5_c00340{font-size:53.551714px;}
.fs11_c00340{font-size:60.900000px;}
.fs14_c00340{font-size:65.070373px;}
.fs8_c00340{font-size:65.102083px;}
.fs7_c00340{font-size:66.152117px;}
.fsc_c00340{font-size:67.200000px;}
.fse_c00340{font-size:68.250000px;}
.fsd_c00340{font-size:69.300000px;}
.fs9_c00340{font-size:69.302218px;}
.fsb_c00340{font-size:70.350000px;}
.fsa_c00340{font-size:70.352251px;}
.fsf_c00340{font-size:71.400000px;}
.fs4_c00340{font-size:71.402285px;}
.fs12_c00340{font-size:72.450000px;}
.fs10_c00340{font-size:73.500000px;}
.fs6_c00340{font-size:74.552386px;}
.fs2_c00340{font-size:77.722374px;}
.fs3_c00340{font-size:80.873281px;}
.fs15_c00340{font-size:123.843613px;}
.y0_c00340{bottom:0.000000px;}
.yd0_c00340{bottom:103.728000px;}
.yd9_c00340{bottom:134.588942px;}
.yda_c00340{bottom:141.085222px;}
.yd1_c00340{bottom:142.563000px;}
.yd2_c00340{bottom:146.585024px;}
.yd3_c00340{bottom:147.334800px;}
.yd4_c00340{bottom:149.649271px;}
.yd5_c00340{bottom:151.306235px;}
.yd6_c00340{bottom:156.556947px;}
.yd7_c00340{bottom:162.172871px;}
.yd8_c00340{bottom:162.873345px;}
.yc4_c00340{bottom:169.824000px;}
.yc5_c00340{bottom:170.418000px;}
.yc6_c00340{bottom:170.845500px;}
.yc7_c00340{bottom:171.582000px;}
.yc8_c00340{bottom:171.891000px;}
.yc9_c00340{bottom:172.324500px;}
.yca_c00340{bottom:172.633500px;}
.ycb_c00340{bottom:173.293500px;}
.ycc_c00340{bottom:173.536500px;}
.ycd_c00340{bottom:173.937000px;}
.yce_c00340{bottom:174.192000px;}
.ycf_c00340{bottom:174.603000px;}
.yba_c00340{bottom:193.053000px;}
.ybb_c00340{bottom:193.872000px;}
.ybc_c00340{bottom:194.358000px;}
.ybd_c00340{bottom:194.787000px;}
.ybe_c00340{bottom:195.036000px;}
.ybf_c00340{bottom:195.369000px;}
.yc0_c00340{bottom:196.075500px;}
.yc1_c00340{bottom:196.617000px;}
.yc2_c00340{bottom:197.238000px;}
.yc3_c00340{bottom:198.000000px;}
.yad_c00340{bottom:216.541500px;}
.yae_c00340{bottom:216.738000px;}
.yaf_c00340{bottom:217.014000px;}
.yb0_c00340{bottom:217.303500px;}
.yb1_c00340{bottom:217.554000px;}
.yb2_c00340{bottom:217.900500px;}
.yb3_c00340{bottom:218.314500px;}
.yb4_c00340{bottom:218.613000px;}
.yb5_c00340{bottom:218.809500px;}
.yb6_c00340{bottom:219.178500px;}
.yb7_c00340{bottom:219.375000px;}
.yb8_c00340{bottom:219.687000px;}
.yb9_c00340{bottom:220.306500px;}
.ya4_c00340{bottom:238.939500px;}
.ya5_c00340{bottom:239.268000px;}
.ya6_c00340{bottom:239.823000px;}
.ya7_c00340{bottom:240.363000px;}
.ya8_c00340{bottom:240.624000px;}
.ya9_c00340{bottom:240.853500px;}
.yaa_c00340{bottom:241.213500px;}
.yab_c00340{bottom:241.525500px;}
.yac_c00340{bottom:242.260500px;}
.y9a_c00340{bottom:262.440000px;}
.y9b_c00340{bottom:262.608000px;}
.y9c_c00340{bottom:263.328000px;}
.y9d_c00340{bottom:263.559000px;}
.y9e_c00340{bottom:263.727000px;}
.y9f_c00340{bottom:264.229500px;}
.ya0_c00340{bottom:264.411000px;}
.ya1_c00340{bottom:264.787500px;}
.ya2_c00340{bottom:264.963000px;}
.ya3_c00340{bottom:265.542000px;}
.y8e_c00340{bottom:285.390000px;}
.y8f_c00340{bottom:285.904500px;}
.y90_c00340{bottom:286.119000px;}
.y91_c00340{bottom:286.324500px;}
.y92_c00340{bottom:286.630500px;}
.y93_c00340{bottom:286.992000px;}
.y94_c00340{bottom:287.263500px;}
.y95_c00340{bottom:287.511000px;}
.y96_c00340{bottom:287.893500px;}
.y97_c00340{bottom:288.046500px;}
.y98_c00340{bottom:288.267000px;}
.y99_c00340{bottom:288.565500px;}
.y82_c00340{bottom:308.071500px;}
.y83_c00340{bottom:308.448000px;}
.y84_c00340{bottom:308.685000px;}
.y85_c00340{bottom:308.907000px;}
.y86_c00340{bottom:309.291000px;}
.y87_c00340{bottom:309.571500px;}
.y88_c00340{bottom:309.867000px;}
.y89_c00340{bottom:310.446000px;}
.y8a_c00340{bottom:310.813500px;}
.y8b_c00340{bottom:311.293500px;}
.y8c_c00340{bottom:311.476500px;}
.y8d_c00340{bottom:311.683500px;}
.y81_c00340{bottom:332.679000px;}
.y80_c00340{bottom:355.117500px;}
.y7f_c00340{bottom:378.394500px;}
.y7e_c00340{bottom:400.023000px;}
.y7d_c00340{bottom:423.481500px;}
.y7c_c00340{bottom:446.193000px;}
.y7b_c00340{bottom:469.146000px;}
.y7a_c00340{bottom:491.824500px;}
.y79_c00340{bottom:514.605000px;}
.y78_c00340{bottom:537.727500px;}
.y77_c00340{bottom:560.403000px;}
.y76_c00340{bottom:583.656000px;}
.y75_c00340{bottom:605.524500px;}
.y74_c00340{bottom:627.657000px;}
.y73_c00340{bottom:650.815500px;}
.y72_c00340{bottom:673.277664px;}
.y71_c00340{bottom:673.277916px;}
.y6f_c00340{bottom:673.278480px;}
.y70_c00340{bottom:673.278648px;}
.y6e_c00340{bottom:673.278960px;}
.y6d_c00340{bottom:673.279560px;}
.y6c_c00340{bottom:673.279812px;}
.y6b_c00340{bottom:673.280004px;}
.y69_c00340{bottom:673.280028px;}
.y6a_c00340{bottom:673.280736px;}
.y68_c00340{bottom:696.686340px;}
.y67_c00340{bottom:696.686520px;}
.y66_c00340{bottom:696.686952px;}
.y65_c00340{bottom:696.687684px;}
.y63_c00340{bottom:696.687996px;}
.y64_c00340{bottom:696.688224px;}
.y5f_c00340{bottom:696.688416px;}
.y62_c00340{bottom:696.688428px;}
.y60_c00340{bottom:696.688452px;}
.y61_c00340{bottom:696.688500px;}
.y5e_c00340{bottom:696.689148px;}
.y5a_c00340{bottom:719.451576px;}
.y59_c00340{bottom:719.451648px;}
.y5d_c00340{bottom:719.451660px;}
.y5c_c00340{bottom:719.451912px;}
.y5b_c00340{bottom:719.452044px;}
.y53_c00340{bottom:719.452248px;}
.y58_c00340{bottom:719.452272px;}
.y54_c00340{bottom:719.452368px;}
.y55_c00340{bottom:719.452488px;}
.y56_c00340{bottom:719.452536px;}
.y52_c00340{bottom:719.452752px;}
.y57_c00340{bottom:719.452824px;}
.y48_c00340{bottom:740.605056px;}
.y49_c00340{bottom:741.024636px;}
.y4a_c00340{bottom:741.492624px;}
.y4b_c00340{bottom:741.813552px;}
.y4c_c00340{bottom:742.343304px;}
.y4d_c00340{bottom:742.527072px;}
.y4e_c00340{bottom:742.785504px;}
.y4f_c00340{bottom:742.979448px;}
.y50_c00340{bottom:743.530056px;}
.y51_c00340{bottom:743.896800px;}
.y3c_c00340{bottom:763.015836px;}
.y3d_c00340{bottom:763.305300px;}
.y3e_c00340{bottom:763.739484px;}
.y3f_c00340{bottom:763.888464px;}
.y40_c00340{bottom:764.242848px;}
.y41_c00340{bottom:764.612184px;}
.y42_c00340{bottom:764.992380px;}
.y43_c00340{bottom:765.363900px;}
.y44_c00340{bottom:765.575568px;}
.y45_c00340{bottom:766.063368px;}
.y46_c00340{bottom:766.331496px;}
.y47_c00340{bottom:766.543188px;}
.y3b_c00340{bottom:787.412688px;}
.y3a_c00340{bottom:787.413420px;}
.y39_c00340{bottom:787.413864px;}
.y33_c00340{bottom:787.414308px;}
.y37_c00340{bottom:787.414548px;}
.y38_c00340{bottom:787.414596px;}
.y35_c00340{bottom:787.414824px;}
.y36_c00340{bottom:787.414992px;}
.y34_c00340{bottom:787.415016px;}
.y28_c00340{bottom:808.649376px;}
.y29_c00340{bottom:809.072688px;}
.y2a_c00340{bottom:809.530812px;}
.y2b_c00340{bottom:809.770344px;}
.y2c_c00340{bottom:810.222060px;}
.y2d_c00340{bottom:810.507000px;}
.y2e_c00340{bottom:810.902532px;}
.y2f_c00340{bottom:811.072920px;}
.y30_c00340{bottom:811.545840px;}
.y31_c00340{bottom:811.882788px;}
.y32_c00340{bottom:812.351544px;}
.y1d_c00340{bottom:831.600000px;}
.y1e_c00340{bottom:831.852984px;}
.y1f_c00340{bottom:832.194492px;}
.y20_c00340{bottom:832.507584px;}
.y21_c00340{bottom:832.851288px;}
.y22_c00340{bottom:833.084352px;}
.y23_c00340{bottom:833.637384px;}
.y24_c00340{bottom:834.086568px;}
.y25_c00340{bottom:834.514212px;}
.y26_c00340{bottom:835.090824px;}
.y27_c00340{bottom:835.352280px;}
.y1c_c00340{bottom:874.906680px;}
.y1b_c00340{bottom:877.066572px;}
.y1a_c00340{bottom:879.254640px;}
.y19_c00340{bottom:881.984496px;}
.y18_c00340{bottom:883.431960px;}
.y17_c00340{bottom:922.089408px;}
.y16_c00340{bottom:923.862048px;}
.y15_c00340{bottom:924.588540px;}
.y14_c00340{bottom:926.718324px;}
.y13_c00340{bottom:927.760140px;}
.y12_c00340{bottom:928.204944px;}
.y11_c00340{bottom:928.621584px;}
.y10_c00340{bottom:931.430520px;}
.yf_c00340{bottom:931.766784px;}
.ye_c00340{bottom:936.761700px;}
.yd_c00340{bottom:937.559748px;}
.yc_c00340{bottom:937.995024px;}
.yb_c00340{bottom:939.361296px;}
.ya_c00340{bottom:940.068048px;}
.y9_c00340{bottom:940.864224px;}
.y8_c00340{bottom:942.355128px;}
.y7_c00340{bottom:943.459140px;}
.y6_c00340{bottom:945.029352px;}
.y5_c00340{bottom:945.173856px;}
.y1_c00340{bottom:946.350000px;}
.y4_c00340{bottom:946.505928px;}
.y3_c00340{bottom:947.994240px;}
.y2_c00340{bottom:948.778500px;}
.h2_c00340{height:22.050000px;}
.h15_c00340{height:33.600000px;}
.h3_c00340{height:39.911490px;}
.h7_c00340{height:53.551714px;}
.h13_c00340{height:60.900000px;}
.h16_c00340{height:65.070373px;}
.ha_c00340{height:65.102083px;}
.h9_c00340{height:66.152117px;}
.he_c00340{height:67.200000px;}
.h10_c00340{height:68.250000px;}
.hf_c00340{height:69.300000px;}
.hb_c00340{height:69.302218px;}
.hd_c00340{height:70.350000px;}
.hc_c00340{height:70.352251px;}
.h11_c00340{height:71.400000px;}
.h6_c00340{height:71.402285px;}
.h14_c00340{height:72.450000px;}
.h12_c00340{height:73.500000px;}
.h8_c00340{height:74.552386px;}
.h4_c00340{height:77.722374px;}
.h5_c00340{height:80.873281px;}
.h17_c00340{height:123.843613px;}
.h1_c00340{height:1005.000000px;}
.h0_c00340{height:1005.150000px;}
.w0_c00340{width:702.540000px;}
.w1_c00340{width:702.750000px;}
.x0_c00340{left:0.000000px;}
.xf_c00340{left:45.260172px;}
.x10_c00340{left:65.024484px;}
.x2_c00340{left:72.675000px;}
.x6a_c00340{left:73.980000px;}
.x47_c00340{left:75.597804px;}
.x36_c00340{left:77.322432px;}
.x27_c00340{left:81.900180px;}
.x56_c00340{left:86.127336px;}
.x1d_c00340{left:88.357500px;}
.x6b_c00340{left:89.370000px;}
.x73_c00340{left:90.450000px;}
.xac_c00340{left:91.891500px;}
.x8e_c00340{left:93.420000px;}
.x3_c00340{left:105.352500px;}
.x82_c00340{left:106.380000px;}
.xa3_c00340{left:108.540000px;}
.x37_c00340{left:113.505432px;}
.x74_c00340{left:116.640000px;}
.x1e_c00340{left:119.980500px;}
.xc2_c00340{left:121.864120px;}
.x64_c00340{left:123.660000px;}
.x96_c00340{left:125.820000px;}
.x57_c00340{left:131.218716px;}
.x8f_c00340{left:132.300000px;}
.x28_c00340{left:134.814180px;}
.x83_c00340{left:136.350000px;}
.xa8_c00340{left:138.346500px;}
.x80_c00340{left:140.670000px;}
.x51_c00340{left:144.179796px;}
.x65_c00340{left:145.530000px;}
.x40_c00340{left:148.602912px;}
.xa4_c00340{left:151.200000px;}
.x79_c00340{left:158.490000px;}
.x90_c00340{left:160.110000px;}
.x1f_c00340{left:162.669000px;}
.xa1_c00340{left:164.160000px;}
.xad_c00340{left:165.295500px;}
.x4_c00340{left:167.365500px;}
.x48_c00340{left:171.180924px;}
.xc1_c00340{left:175.500000px;}
.xa5_c00340{left:177.390000px;}
.x8c_c00340{left:180.090000px;}
.xb8_c00340{left:184.741500px;}
.x38_c00340{left:186.400932px;}
.x29_c00340{left:192.079680px;}
.x49_c00340{left:193.322340px;}
.x91_c00340{left:194.670000px;}
.xa9_c00340{left:195.876000px;}
.x5e_c00340{left:197.370000px;}
.x9c_c00340{left:198.990000px;}
.x84_c00340{left:200.070000px;}
.x20_c00340{left:201.805500px;}
.x18_c00340{left:205.081308px;}
.xbb_c00340{left:209.064000px;}
.x31_c00340{left:213.842988px;}
.x41_c00340{left:215.539452px;}
.xb3_c00340{left:219.024000px;}
.x58_c00340{left:221.671512px;}
.x5_c00340{left:222.868500px;}
.xae_c00340{left:225.268500px;}
.x6_c00340{left:228.889500px;}
.x11_c00340{left:230.278740px;}
.x4a_c00340{left:231.393276px;}
.x97_c00340{left:235.980000px;}
.x66_c00340{left:237.330000px;}
.x81_c00340{left:238.410000px;}
.x75_c00340{left:239.490000px;}
.x21_c00340{left:244.768500px;}
.xbc_c00340{left:248.076000px;}
.x70_c00340{left:252.990000px;}
.x12_c00340{left:254.830380px;}
.xa2_c00340{left:258.390000px;}
.x87_c00340{left:259.470000px;}
.x19_c00340{left:260.764644px;}
.xa6_c00340{left:262.440000px;}
.x59_c00340{left:265.142796px;}
.xaf_c00340{left:269.002500px;}
.x7a_c00340{left:271.620000px;}
.x22_c00340{left:273.901500px;}
.x5f_c00340{left:275.130000px;}
.x39_c00340{left:276.865932px;}
.x2a_c00340{left:278.485680px;}
.x13_c00340{left:280.993272px;}
.x5a_c00340{left:282.693924px;}
.x76_c00340{left:285.660000px;}
.x4b_c00340{left:286.745316px;}
.x71_c00340{left:290.520000px;}
.x7_c00340{left:294.315000px;}
.xbd_c00340{left:300.907500px;}
.x5b_c00340{left:302.135172px;}
.x32_c00340{left:305.105832px;}
.x67_c00340{left:307.800000px;}
.x92_c00340{left:311.850000px;}
.x2b_c00340{left:314.103180px;}
.x4c_c00340{left:315.365652px;}
.x52_c00340{left:317.254872px;}
.xbe_c00340{left:319.540500px;}
.xb0_c00340{left:320.577000px;}
.x3a_c00340{left:324.390432px;}
.x7b_c00340{left:326.700000px;}
.x5c_c00340{left:328.595364px;}
.xb5_c00340{left:330.309000px;}
.x68_c00340{left:332.100000px;}
.x9d_c00340{left:334.800000px;}
.x42_c00340{left:337.062924px;}
.x8_c00340{left:340.315500px;}
.x14_c00340{left:342.287568px;}
.xb4_c00340{left:347.811000px;}
.x7c_c00340{left:349.650000px;}
.x60_c00340{left:353.160000px;}
.x33_c00340{left:356.677632px;}
.xb1_c00340{left:359.451000px;}
.xa7_c00340{left:362.340000px;}
.x2c_c00340{left:363.544680px;}
.x1a_c00340{left:365.753604px;}
.x93_c00340{left:367.740000px;}
.x69_c00340{left:369.360000px;}
.x3b_c00340{left:370.830432px;}
.xb9_c00340{left:372.949500px;}
.x98_c00340{left:373.950000px;}
.xb6_c00340{left:375.360000px;}
.x88_c00340{left:378.810000px;}
.x77_c00340{left:380.430000px;}
.x2d_c00340{left:384.843180px;}
.x4d_c00340{left:386.917236px;}
.x9e_c00340{left:388.530000px;}
.x61_c00340{left:389.880000px;}
.x53_c00340{left:393.666768px;}
.xb2_c00340{left:394.825500px;}
.x3c_c00340{left:397.288932px;}
.x23_c00340{left:399.178500px;}
.x43_c00340{left:400.213428px;}
.x9_c00340{left:402.436500px;}
.x85_c00340{left:403.650000px;}
.x34_c00340{left:406.089300px;}
.x5d_c00340{left:407.977452px;}
.x1_c00340{left:409.860000px;}
.xb7_c00340{left:414.286500px;}
.x78_c00340{left:419.850000px;}
.x7d_c00340{left:421.470000px;}
.x4e_c00340{left:423.098052px;}
.x62_c00340{left:426.870000px;}
.x44_c00340{left:428.019156px;}
.xbf_c00340{left:429.708000px;}
.xaa_c00340{left:434.223000px;}
.xa_c00340{left:435.610500px;}
.x2e_c00340{left:443.958180px;}
.x6c_c00340{left:447.390000px;}
.x1b_c00340{left:449.919072px;}
.x24_c00340{left:452.634000px;}
.x3d_c00340{left:458.263932px;}
.x9f_c00340{left:463.590000px;}
.xb_c00340{left:465.058500px;}
.xc0_c00340{left:466.108500px;}
.x15_c00340{left:467.549592px;}
.x99_c00340{left:469.260000px;}
.x6d_c00340{left:471.690000px;}
.x7e_c00340{left:481.680000px;}
.x35_c00340{left:483.851280px;}
.x2f_c00340{left:486.076680px;}
.x54_c00340{left:487.089756px;}
.x4f_c00340{left:489.519300px;}
.x3e_c00340{left:491.779932px;}
.x94_c00340{left:493.020000px;}
.xab_c00340{left:494.200500px;}
.x89_c00340{left:497.340000px;}
.x9a_c00340{left:500.040000px;}
.x7f_c00340{left:502.200000px;}
.x45_c00340{left:506.595780px;}
.x55_c00340{left:507.881088px;}
.x16_c00340{left:510.264756px;}
.x95_c00340{left:513.810000px;}
.x8a_c00340{left:515.700000px;}
.x6e_c00340{left:517.050000px;}
.x3f_c00340{left:518.241432px;}
.xc_c00340{left:521.986500px;}
.x25_c00340{left:524.710500px;}
.x72_c00340{left:525.960000px;}
.x9b_c00340{left:528.120000px;}
.x1c_c00340{left:532.973076px;}
.x86_c00340{left:535.140000px;}
.x6f_c00340{left:536.490000px;}
.xd_c00340{left:540.123000px;}
.x63_c00340{left:541.350000px;}
.x8b_c00340{left:542.430000px;}
.x30_c00340{left:544.671180px;}
.x50_c00340{left:553.241880px;}
.x26_c00340{left:557.392500px;}
.x46_c00340{left:559.001700px;}
.xba_c00340{left:560.083500px;}
.xc4_c00340{left:561.999428px;}
.xa0_c00340{left:565.110000px;}
.x8d_c00340{left:568.080000px;}
.xe_c00340{left:573.375000px;}
.xc3_c00340{left:593.750761px;}
.x17_c00340{left:614.517252px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.fs0_c00340{font-size:19.600000pt;}
.fs13_c00340{font-size:29.866667pt;}
.fs1_c00340{font-size:35.476880pt;}
.fs5_c00340{font-size:47.601523pt;}
.fs11_c00340{font-size:54.133333pt;}
.fs14_c00340{font-size:57.840331pt;}
.fs8_c00340{font-size:57.868518pt;}
.fs7_c00340{font-size:58.801882pt;}
.fsc_c00340{font-size:59.733333pt;}
.fse_c00340{font-size:60.666667pt;}
.fsd_c00340{font-size:61.600000pt;}
.fs9_c00340{font-size:61.601971pt;}
.fsb_c00340{font-size:62.533333pt;}
.fsa_c00340{font-size:62.535334pt;}
.fsf_c00340{font-size:63.466667pt;}
.fs4_c00340{font-size:63.468698pt;}
.fs12_c00340{font-size:64.400000pt;}
.fs10_c00340{font-size:65.333333pt;}
.fs6_c00340{font-size:66.268787pt;}
.fs2_c00340{font-size:69.086555pt;}
.fs3_c00340{font-size:71.887361pt;}
.fs15_c00340{font-size:110.083211pt;}
.y0_c00340{bottom:0.000000pt;}
.yd0_c00340{bottom:92.202667pt;}
.yd9_c00340{bottom:119.634615pt;}
.yda_c00340{bottom:125.409087pt;}
.yd1_c00340{bottom:126.722667pt;}
.yd2_c00340{bottom:130.297799pt;}
.yd3_c00340{bottom:130.964267pt;}
.yd4_c00340{bottom:133.021575pt;}
.yd5_c00340{bottom:134.494431pt;}
.yd6_c00340{bottom:139.161731pt;}
.yd7_c00340{bottom:144.153663pt;}
.yd8_c00340{bottom:144.776307pt;}
.yc4_c00340{bottom:150.954667pt;}
.yc5_c00340{bottom:151.482667pt;}
.yc6_c00340{bottom:151.862667pt;}
.yc7_c00340{bottom:152.517333pt;}
.yc8_c00340{bottom:152.792000pt;}
.yc9_c00340{bottom:153.177333pt;}
.yca_c00340{bottom:153.452000pt;}
.ycb_c00340{bottom:154.038667pt;}
.ycc_c00340{bottom:154.254667pt;}
.ycd_c00340{bottom:154.610667pt;}
.yce_c00340{bottom:154.837333pt;}
.ycf_c00340{bottom:155.202667pt;}
.yba_c00340{bottom:171.602667pt;}
.ybb_c00340{bottom:172.330667pt;}
.ybc_c00340{bottom:172.762667pt;}
.ybd_c00340{bottom:173.144000pt;}
.ybe_c00340{bottom:173.365333pt;}
.ybf_c00340{bottom:173.661333pt;}
.yc0_c00340{bottom:174.289333pt;}
.yc1_c00340{bottom:174.770667pt;}
.yc2_c00340{bottom:175.322667pt;}
.yc3_c00340{bottom:176.000000pt;}
.yad_c00340{bottom:192.481333pt;}
.yae_c00340{bottom:192.656000pt;}
.yaf_c00340{bottom:192.901333pt;}
.yb0_c00340{bottom:193.158667pt;}
.yb1_c00340{bottom:193.381333pt;}
.yb2_c00340{bottom:193.689333pt;}
.yb3_c00340{bottom:194.057333pt;}
.yb4_c00340{bottom:194.322667pt;}
.yb5_c00340{bottom:194.497333pt;}
.yb6_c00340{bottom:194.825333pt;}
.yb7_c00340{bottom:195.000000pt;}
.yb8_c00340{bottom:195.277333pt;}
.yb9_c00340{bottom:195.828000pt;}
.ya4_c00340{bottom:212.390667pt;}
.ya5_c00340{bottom:212.682667pt;}
.ya6_c00340{bottom:213.176000pt;}
.ya7_c00340{bottom:213.656000pt;}
.ya8_c00340{bottom:213.888000pt;}
.ya9_c00340{bottom:214.092000pt;}
.yaa_c00340{bottom:214.412000pt;}
.yab_c00340{bottom:214.689333pt;}
.yac_c00340{bottom:215.342667pt;}
.y9a_c00340{bottom:233.280000pt;}
.y9b_c00340{bottom:233.429333pt;}
.y9c_c00340{bottom:234.069333pt;}
.y9d_c00340{bottom:234.274667pt;}
.y9e_c00340{bottom:234.424000pt;}
.y9f_c00340{bottom:234.870667pt;}
.ya0_c00340{bottom:235.032000pt;}
.ya1_c00340{bottom:235.366667pt;}
.ya2_c00340{bottom:235.522667pt;}
.ya3_c00340{bottom:236.037333pt;}
.y8e_c00340{bottom:253.680000pt;}
.y8f_c00340{bottom:254.137333pt;}
.y90_c00340{bottom:254.328000pt;}
.y91_c00340{bottom:254.510667pt;}
.y92_c00340{bottom:254.782667pt;}
.y93_c00340{bottom:255.104000pt;}
.y94_c00340{bottom:255.345333pt;}
.y95_c00340{bottom:255.565333pt;}
.y96_c00340{bottom:255.905333pt;}
.y97_c00340{bottom:256.041333pt;}
.y98_c00340{bottom:256.237333pt;}
.y99_c00340{bottom:256.502667pt;}
.y82_c00340{bottom:273.841333pt;}
.y83_c00340{bottom:274.176000pt;}
.y84_c00340{bottom:274.386667pt;}
.y85_c00340{bottom:274.584000pt;}
.y86_c00340{bottom:274.925333pt;}
.y87_c00340{bottom:275.174667pt;}
.y88_c00340{bottom:275.437333pt;}
.y89_c00340{bottom:275.952000pt;}
.y8a_c00340{bottom:276.278667pt;}
.y8b_c00340{bottom:276.705333pt;}
.y8c_c00340{bottom:276.868000pt;}
.y8d_c00340{bottom:277.052000pt;}
.y81_c00340{bottom:295.714667pt;}
.y80_c00340{bottom:315.660000pt;}
.y7f_c00340{bottom:336.350667pt;}
.y7e_c00340{bottom:355.576000pt;}
.y7d_c00340{bottom:376.428000pt;}
.y7c_c00340{bottom:396.616000pt;}
.y7b_c00340{bottom:417.018667pt;}
.y7a_c00340{bottom:437.177333pt;}
.y79_c00340{bottom:457.426667pt;}
.y78_c00340{bottom:477.980000pt;}
.y77_c00340{bottom:498.136000pt;}
.y76_c00340{bottom:518.805333pt;}
.y75_c00340{bottom:538.244000pt;}
.y74_c00340{bottom:557.917333pt;}
.y73_c00340{bottom:578.502667pt;}
.y72_c00340{bottom:598.469035pt;}
.y71_c00340{bottom:598.469259pt;}
.y6f_c00340{bottom:598.469760pt;}
.y70_c00340{bottom:598.469909pt;}
.y6e_c00340{bottom:598.470187pt;}
.y6d_c00340{bottom:598.470720pt;}
.y6c_c00340{bottom:598.470944pt;}
.y6b_c00340{bottom:598.471115pt;}
.y69_c00340{bottom:598.471136pt;}
.y6a_c00340{bottom:598.471765pt;}
.y68_c00340{bottom:619.276747pt;}
.y67_c00340{bottom:619.276907pt;}
.y66_c00340{bottom:619.277291pt;}
.y65_c00340{bottom:619.277941pt;}
.y63_c00340{bottom:619.278219pt;}
.y64_c00340{bottom:619.278421pt;}
.y5f_c00340{bottom:619.278592pt;}
.y62_c00340{bottom:619.278603pt;}
.y60_c00340{bottom:619.278624pt;}
.y61_c00340{bottom:619.278667pt;}
.y5e_c00340{bottom:619.279243pt;}
.y5a_c00340{bottom:639.512512pt;}
.y59_c00340{bottom:639.512576pt;}
.y5d_c00340{bottom:639.512587pt;}
.y5c_c00340{bottom:639.512811pt;}
.y5b_c00340{bottom:639.512928pt;}
.y53_c00340{bottom:639.513109pt;}
.y58_c00340{bottom:639.513131pt;}
.y54_c00340{bottom:639.513216pt;}
.y55_c00340{bottom:639.513323pt;}
.y56_c00340{bottom:639.513365pt;}
.y52_c00340{bottom:639.513557pt;}
.y57_c00340{bottom:639.513621pt;}
.y48_c00340{bottom:658.315605pt;}
.y49_c00340{bottom:658.688565pt;}
.y4a_c00340{bottom:659.104555pt;}
.y4b_c00340{bottom:659.389824pt;}
.y4c_c00340{bottom:659.860715pt;}
.y4d_c00340{bottom:660.024064pt;}
.y4e_c00340{bottom:660.253781pt;}
.y4f_c00340{bottom:660.426176pt;}
.y50_c00340{bottom:660.915605pt;}
.y51_c00340{bottom:661.241600pt;}
.y3c_c00340{bottom:678.236299pt;}
.y3d_c00340{bottom:678.493600pt;}
.y3e_c00340{bottom:678.879541pt;}
.y3f_c00340{bottom:679.011968pt;}
.y40_c00340{bottom:679.326976pt;}
.y41_c00340{bottom:679.655275pt;}
.y42_c00340{bottom:679.993227pt;}
.y43_c00340{bottom:680.323467pt;}
.y44_c00340{bottom:680.511616pt;}
.y45_c00340{bottom:680.945216pt;}
.y46_c00340{bottom:681.183552pt;}
.y47_c00340{bottom:681.371723pt;}
.y3b_c00340{bottom:699.922389pt;}
.y3a_c00340{bottom:699.923040pt;}
.y39_c00340{bottom:699.923435pt;}
.y33_c00340{bottom:699.923829pt;}
.y37_c00340{bottom:699.924043pt;}
.y38_c00340{bottom:699.924085pt;}
.y35_c00340{bottom:699.924288pt;}
.y36_c00340{bottom:699.924437pt;}
.y34_c00340{bottom:699.924459pt;}
.y28_c00340{bottom:718.799445pt;}
.y29_c00340{bottom:719.175723pt;}
.y2a_c00340{bottom:719.582944pt;}
.y2b_c00340{bottom:719.795861pt;}
.y2c_c00340{bottom:720.197387pt;}
.y2d_c00340{bottom:720.450667pt;}
.y2e_c00340{bottom:720.802251pt;}
.y2f_c00340{bottom:720.953707pt;}
.y30_c00340{bottom:721.374080pt;}
.y31_c00340{bottom:721.673589pt;}
.y32_c00340{bottom:722.090261pt;}
.y1d_c00340{bottom:739.200000pt;}
.y1e_c00340{bottom:739.424875pt;}
.y1f_c00340{bottom:739.728437pt;}
.y20_c00340{bottom:740.006741pt;}
.y21_c00340{bottom:740.312256pt;}
.y22_c00340{bottom:740.519424pt;}
.y23_c00340{bottom:741.011008pt;}
.y24_c00340{bottom:741.410283pt;}
.y25_c00340{bottom:741.790411pt;}
.y26_c00340{bottom:742.302955pt;}
.y27_c00340{bottom:742.535360pt;}
.y1c_c00340{bottom:777.694827pt;}
.y1b_c00340{bottom:779.614731pt;}
.y1a_c00340{bottom:781.559680pt;}
.y19_c00340{bottom:783.986219pt;}
.y18_c00340{bottom:785.272853pt;}
.y17_c00340{bottom:819.635029pt;}
.y16_c00340{bottom:821.210709pt;}
.y15_c00340{bottom:821.856480pt;}
.y14_c00340{bottom:823.749621pt;}
.y13_c00340{bottom:824.675680pt;}
.y12_c00340{bottom:825.071061pt;}
.y11_c00340{bottom:825.441408pt;}
.y10_c00340{bottom:827.938240pt;}
.yf_c00340{bottom:828.237141pt;}
.ye_c00340{bottom:832.677067pt;}
.yd_c00340{bottom:833.386443pt;}
.yc_c00340{bottom:833.773355pt;}
.yb_c00340{bottom:834.987819pt;}
.ya_c00340{bottom:835.616043pt;}
.y9_c00340{bottom:836.323755pt;}
.y8_c00340{bottom:837.649003pt;}
.y7_c00340{bottom:838.630347pt;}
.y6_c00340{bottom:840.026091pt;}
.y5_c00340{bottom:840.154539pt;}
.y1_c00340{bottom:841.200000pt;}
.y4_c00340{bottom:841.338603pt;}
.y3_c00340{bottom:842.661547pt;}
.y2_c00340{bottom:843.358667pt;}
.h2_c00340{height:19.600000pt;}
.h15_c00340{height:29.866667pt;}
.h3_c00340{height:35.476880pt;}
.h7_c00340{height:47.601523pt;}
.h13_c00340{height:54.133333pt;}
.h16_c00340{height:57.840331pt;}
.ha_c00340{height:57.868518pt;}
.h9_c00340{height:58.801882pt;}
.he_c00340{height:59.733333pt;}
.h10_c00340{height:60.666667pt;}
.hf_c00340{height:61.600000pt;}
.hb_c00340{height:61.601971pt;}
.hd_c00340{height:62.533333pt;}
.hc_c00340{height:62.535334pt;}
.h11_c00340{height:63.466667pt;}
.h6_c00340{height:63.468698pt;}
.h14_c00340{height:64.400000pt;}
.h12_c00340{height:65.333333pt;}
.h8_c00340{height:66.268787pt;}
.h4_c00340{height:69.086555pt;}
.h5_c00340{height:71.887361pt;}
.h17_c00340{height:110.083211pt;}
.h1_c00340{height:893.333333pt;}
.h0_c00340{height:893.466667pt;}
.w0_c00340{width:624.480000pt;}
.w1_c00340{width:624.666667pt;}
.x0_c00340{left:0.000000pt;}
.xf_c00340{left:40.231264pt;}
.x10_c00340{left:57.799541pt;}
.x2_c00340{left:64.600000pt;}
.x6a_c00340{left:65.760000pt;}
.x47_c00340{left:67.198048pt;}
.x36_c00340{left:68.731051pt;}
.x27_c00340{left:72.800160pt;}
.x56_c00340{left:76.557632pt;}
.x1d_c00340{left:78.540000pt;}
.x6b_c00340{left:79.440000pt;}
.x73_c00340{left:80.400000pt;}
.xac_c00340{left:81.681333pt;}
.x8e_c00340{left:83.040000pt;}
.x3_c00340{left:93.646667pt;}
.x82_c00340{left:94.560000pt;}
.xa3_c00340{left:96.480000pt;}
.x37_c00340{left:100.893717pt;}
.x74_c00340{left:103.680000pt;}
.x1e_c00340{left:106.649333pt;}
.xc2_c00340{left:108.323663pt;}
.x64_c00340{left:109.920000pt;}
.x96_c00340{left:111.840000pt;}
.x57_c00340{left:116.638859pt;}
.x8f_c00340{left:117.600000pt;}
.x28_c00340{left:119.834827pt;}
.x83_c00340{left:121.200000pt;}
.xa8_c00340{left:122.974667pt;}
.x80_c00340{left:125.040000pt;}
.x51_c00340{left:128.159819pt;}
.x65_c00340{left:129.360000pt;}
.x40_c00340{left:132.091477pt;}
.xa4_c00340{left:134.400000pt;}
.x79_c00340{left:140.880000pt;}
.x90_c00340{left:142.320000pt;}
.x1f_c00340{left:144.594667pt;}
.xa1_c00340{left:145.920000pt;}
.xad_c00340{left:146.929333pt;}
.x4_c00340{left:148.769333pt;}
.x48_c00340{left:152.160821pt;}
.xc1_c00340{left:156.000000pt;}
.xa5_c00340{left:157.680000pt;}
.x8c_c00340{left:160.080000pt;}
.xb8_c00340{left:164.214667pt;}
.x38_c00340{left:165.689717pt;}
.x29_c00340{left:170.737493pt;}
.x49_c00340{left:171.842080pt;}
.x91_c00340{left:173.040000pt;}
.xa9_c00340{left:174.112000pt;}
.x5e_c00340{left:175.440000pt;}
.x9c_c00340{left:176.880000pt;}
.x84_c00340{left:177.840000pt;}
.x20_c00340{left:179.382667pt;}
.x18_c00340{left:182.294496pt;}
.xbb_c00340{left:185.834667pt;}
.x31_c00340{left:190.082656pt;}
.x41_c00340{left:191.590624pt;}
.xb3_c00340{left:194.688000pt;}
.x58_c00340{left:197.041344pt;}
.x5_c00340{left:198.105333pt;}
.xae_c00340{left:200.238667pt;}
.x6_c00340{left:203.457333pt;}
.x11_c00340{left:204.692213pt;}
.x4a_c00340{left:205.682912pt;}
.x97_c00340{left:209.760000pt;}
.x66_c00340{left:210.960000pt;}
.x81_c00340{left:211.920000pt;}
.x75_c00340{left:212.880000pt;}
.x21_c00340{left:217.572000pt;}
.xbc_c00340{left:220.512000pt;}
.x70_c00340{left:224.880000pt;}
.x12_c00340{left:226.515893pt;}
.xa2_c00340{left:229.680000pt;}
.x87_c00340{left:230.640000pt;}
.x19_c00340{left:231.790795pt;}
.xa6_c00340{left:233.280000pt;}
.x59_c00340{left:235.682485pt;}
.xaf_c00340{left:239.113333pt;}
.x7a_c00340{left:241.440000pt;}
.x22_c00340{left:243.468000pt;}
.x5f_c00340{left:244.560000pt;}
.x39_c00340{left:246.103051pt;}
.x2a_c00340{left:247.542827pt;}
.x13_c00340{left:249.771797pt;}
.x5a_c00340{left:251.283488pt;}
.x76_c00340{left:253.920000pt;}
.x4b_c00340{left:254.884725pt;}
.x71_c00340{left:258.240000pt;}
.x7_c00340{left:261.613333pt;}
.xbd_c00340{left:267.473333pt;}
.x5b_c00340{left:268.564597pt;}
.x32_c00340{left:271.205184pt;}
.x67_c00340{left:273.600000pt;}
.x92_c00340{left:277.200000pt;}
.x2b_c00340{left:279.202827pt;}
.x4c_c00340{left:280.325024pt;}
.x52_c00340{left:282.004331pt;}
.xbe_c00340{left:284.036000pt;}
.xb0_c00340{left:284.957333pt;}
.x3a_c00340{left:288.347051pt;}
.x7b_c00340{left:290.400000pt;}
.x5c_c00340{left:292.084768pt;}
.xb5_c00340{left:293.608000pt;}
.x68_c00340{left:295.200000pt;}
.x9d_c00340{left:297.600000pt;}
.x42_c00340{left:299.611488pt;}
.x8_c00340{left:302.502667pt;}
.x14_c00340{left:304.255616pt;}
.xb4_c00340{left:309.165333pt;}
.x7c_c00340{left:310.800000pt;}
.x60_c00340{left:313.920000pt;}
.x33_c00340{left:317.046784pt;}
.xb1_c00340{left:319.512000pt;}
.xa7_c00340{left:322.080000pt;}
.x2c_c00340{left:323.150827pt;}
.x1a_c00340{left:325.114315pt;}
.x93_c00340{left:326.880000pt;}
.x69_c00340{left:328.320000pt;}
.x3b_c00340{left:329.627051pt;}
.xb9_c00340{left:331.510667pt;}
.x98_c00340{left:332.400000pt;}
.xb6_c00340{left:333.653333pt;}
.x88_c00340{left:336.720000pt;}
.x77_c00340{left:338.160000pt;}
.x2d_c00340{left:342.082827pt;}
.x4d_c00340{left:343.926432pt;}
.x9e_c00340{left:345.360000pt;}
.x61_c00340{left:346.560000pt;}
.x53_c00340{left:349.926016pt;}
.xb2_c00340{left:350.956000pt;}
.x3c_c00340{left:353.145717pt;}
.x23_c00340{left:354.825333pt;}
.x43_c00340{left:355.745269pt;}
.x9_c00340{left:357.721333pt;}
.x85_c00340{left:358.800000pt;}
.x34_c00340{left:360.968267pt;}
.x5d_c00340{left:362.646624pt;}
.x1_c00340{left:364.320000pt;}
.xb7_c00340{left:368.254667pt;}
.x78_c00340{left:373.200000pt;}
.x7d_c00340{left:374.640000pt;}
.x4e_c00340{left:376.087157pt;}
.x62_c00340{left:379.440000pt;}
.x44_c00340{left:380.461472pt;}
.xbf_c00340{left:381.962667pt;}
.xaa_c00340{left:385.976000pt;}
.xa_c00340{left:387.209333pt;}
.x2e_c00340{left:394.629493pt;}
.x6c_c00340{left:397.680000pt;}
.x1b_c00340{left:399.928064pt;}
.x24_c00340{left:402.341333pt;}
.x3d_c00340{left:407.345717pt;}
.x9f_c00340{left:412.080000pt;}
.xb_c00340{left:413.385333pt;}
.xc0_c00340{left:414.318667pt;}
.x15_c00340{left:415.599637pt;}
.x99_c00340{left:417.120000pt;}
.x6d_c00340{left:419.280000pt;}
.x7e_c00340{left:428.160000pt;}
.x35_c00340{left:430.090027pt;}
.x2f_c00340{left:432.068160pt;}
.x54_c00340{left:432.968672pt;}
.x4f_c00340{left:435.128267pt;}
.x3e_c00340{left:437.137717pt;}
.x94_c00340{left:438.240000pt;}
.xab_c00340{left:439.289333pt;}
.x89_c00340{left:442.080000pt;}
.x9a_c00340{left:444.480000pt;}
.x7f_c00340{left:446.400000pt;}
.x45_c00340{left:450.307360pt;}
.x55_c00340{left:451.449856pt;}
.x16_c00340{left:453.568672pt;}
.x95_c00340{left:456.720000pt;}
.x8a_c00340{left:458.400000pt;}
.x6e_c00340{left:459.600000pt;}
.x3f_c00340{left:460.659051pt;}
.xc_c00340{left:463.988000pt;}
.x25_c00340{left:466.409333pt;}
.x72_c00340{left:467.520000pt;}
.x9b_c00340{left:469.440000pt;}
.x1c_c00340{left:473.753845pt;}
.x86_c00340{left:475.680000pt;}
.x6f_c00340{left:476.880000pt;}
.xd_c00340{left:480.109333pt;}
.x63_c00340{left:481.200000pt;}
.x8b_c00340{left:482.160000pt;}
.x30_c00340{left:484.152160pt;}
.x50_c00340{left:491.770560pt;}
.x26_c00340{left:495.460000pt;}
.x46_c00340{left:496.890400pt;}
.xba_c00340{left:497.852000pt;}
.xc4_c00340{left:499.555047pt;}
.xa0_c00340{left:502.320000pt;}
.x8d_c00340{left:504.960000pt;}
.xe_c00340{left:509.666667pt;}
.xc3_c00340{left:527.778455pt;}
.x17_c00340{left:546.237557pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.ma_c00341{transform:matrix(0.010650,-0.000330,0.007746,0.249880,0,0);-ms-transform:matrix(0.010650,-0.000330,0.007746,0.249880,0,0);-webkit-transform:matrix(0.010650,-0.000330,0.007746,0.249880,0,0);}
.m11a_c00341{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);}
.ma7_c00341{transform:matrix(0.096220,-0.000962,0.002500,0.249988,0,0);-ms-transform:matrix(0.096220,-0.000962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.096220,-0.000962,0.002500,0.249988,0,0);}
.m51_c00341{transform:matrix(0.106215,-0.001487,0.003500,0.249976,0,0);-ms-transform:matrix(0.106215,-0.001487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.106215,-0.001487,0.003500,0.249976,0,0);}
.m1d_c00341{transform:matrix(0.109909,-0.001539,0.003500,0.249976,0,0);-ms-transform:matrix(0.109909,-0.001539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.109909,-0.001539,0.003500,0.249976,0,0);}
.m15f_c00341{transform:matrix(0.121345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121345,0.000000,0.000000,0.250000,0,0);}
.m152_c00341{transform:matrix(0.126555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126555,0.000000,0.000000,0.250000,0,0);}
.m154_c00341{transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);}
.m128_c00341{transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.142686,-0.001998,0.003500,0.249976,0,0);-ms-transform:matrix(0.142686,-0.001998,0.003500,0.249976,0,0);-webkit-transform:matrix(0.142686,-0.001998,0.003500,0.249976,0,0);}
.mf8_c00341{transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);}
.m145_c00341{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);}
.mf9_c00341{transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);}
.mfc_c00341{transform:matrix(0.146765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146765,0.000000,0.000000,0.250000,0,0);}
.m13b_c00341{transform:matrix(0.147140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147140,0.000000,0.000000,0.250000,0,0);}
.mdb_c00341{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);}
.m46_c00341{transform:matrix(0.148275,-0.002076,0.003500,0.249976,0,0);-ms-transform:matrix(0.148275,-0.002076,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148275,-0.002076,0.003500,0.249976,0,0);}
.mfd_c00341{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);}
.m157_c00341{transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);}
.m130_c00341{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);}
.m13e_c00341{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);}
.m18_c00341{transform:matrix(0.153520,-0.002149,0.003500,0.249976,0,0);-ms-transform:matrix(0.153520,-0.002149,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153520,-0.002149,0.003500,0.249976,0,0);}
.m10d_c00341{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m143_c00341{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);}
.m98_c00341{transform:matrix(0.154142,-0.001541,0.002500,0.249988,0,0);-ms-transform:matrix(0.154142,-0.001541,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154142,-0.001541,0.002500,0.249988,0,0);}
.m158_c00341{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);}
.m69_c00341{transform:matrix(0.157270,-0.001730,0.002750,0.249985,0,0);-ms-transform:matrix(0.157270,-0.001730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157270,-0.001730,0.002750,0.249985,0,0);}
.m103_c00341{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);}
.m26_c00341{transform:matrix(0.157895,-0.002211,0.003500,0.249976,0,0);-ms-transform:matrix(0.157895,-0.002211,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157895,-0.002211,0.003500,0.249976,0,0);}
.m106_c00341{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);}
.m14c_c00341{transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);}
.mb2_c00341{transform:matrix(0.158567,-0.001586,0.002500,0.249988,0,0);-ms-transform:matrix(0.158567,-0.001586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158567,-0.001586,0.002500,0.249988,0,0);}
.mff_c00341{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);}
.ma0_c00341{transform:matrix(0.159002,-0.001590,0.002500,0.249988,0,0);-ms-transform:matrix(0.159002,-0.001590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159002,-0.001590,0.002500,0.249988,0,0);}
.md9_c00341{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);}
.m76_c00341{transform:matrix(0.159570,-0.001755,0.002750,0.249985,0,0);-ms-transform:matrix(0.159570,-0.001755,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159570,-0.001755,0.002750,0.249985,0,0);}
.m74_c00341{transform:matrix(0.159860,-0.001758,0.002750,0.249985,0,0);-ms-transform:matrix(0.159860,-0.001758,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159860,-0.001758,0.002750,0.249985,0,0);}
.m43_c00341{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);}
.mc2_c00341{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);}
.mde_c00341{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);}
.m13_c00341{transform:matrix(0.161059,-0.002255,0.003500,0.249976,0,0);-ms-transform:matrix(0.161059,-0.002255,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161059,-0.002255,0.003500,0.249976,0,0);}
.m13a_c00341{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);}
.m6e_c00341{transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);-ms-transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);}
.m10f_c00341{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);}
.m155_c00341{transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);}
.m7e_c00341{transform:matrix(0.162315,-0.001785,0.002750,0.249985,0,0);-ms-transform:matrix(0.162315,-0.001785,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162315,-0.001785,0.002750,0.249985,0,0);}
.m136_c00341{transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.162754,-0.002279,0.003500,0.249976,0,0);-ms-transform:matrix(0.162754,-0.002279,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162754,-0.002279,0.003500,0.249976,0,0);}
.me4_c00341{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);}
.m88_c00341{transform:matrix(0.163172,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163172,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163172,-0.001632,0.002500,0.249988,0,0);}
.m4a_c00341{transform:matrix(0.163249,-0.002285,0.003500,0.249976,0,0);-ms-transform:matrix(0.163249,-0.002285,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163249,-0.002285,0.003500,0.249976,0,0);}
.m133_c00341{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);}
.ma5_c00341{transform:matrix(0.163767,-0.001638,0.002500,0.249988,0,0);-ms-transform:matrix(0.163767,-0.001638,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163767,-0.001638,0.002500,0.249988,0,0);}
.m27_c00341{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);}
.m140_c00341{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_c00341{transform:matrix(0.165359,-0.002315,0.003500,0.249976,0,0);-ms-transform:matrix(0.165359,-0.002315,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165359,-0.002315,0.003500,0.249976,0,0);}
.m40_c00341{transform:matrix(0.165829,-0.002322,0.003500,0.249976,0,0);-ms-transform:matrix(0.165829,-0.002322,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165829,-0.002322,0.003500,0.249976,0,0);}
.m42_c00341{transform:matrix(0.165959,-0.002323,0.003500,0.249976,0,0);-ms-transform:matrix(0.165959,-0.002323,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165959,-0.002323,0.003500,0.249976,0,0);}
.m127_c00341{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);}
.m14b_c00341{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);}
.m92_c00341{transform:matrix(0.166482,-0.001665,0.002500,0.249988,0,0);-ms-transform:matrix(0.166482,-0.001665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166482,-0.001665,0.002500,0.249988,0,0);}
.m9b_c00341{transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);-ms-transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166877,-0.001669,0.002500,0.249988,0,0);}
.m12f_c00341{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);}
.mc9_c00341{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);}
.mc8_c00341{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);}
.m135_c00341{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);}
.m116_c00341{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);}
.m149_c00341{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);}
.m12d_c00341{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);}
.m61_c00341{transform:matrix(0.169445,-0.001864,0.002750,0.249985,0,0);-ms-transform:matrix(0.169445,-0.001864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169445,-0.001864,0.002750,0.249985,0,0);}
.m164_c00341{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);}
.m15b_c00341{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);}
.m117_c00341{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.170248,-0.002383,0.003500,0.249976,0,0);-ms-transform:matrix(0.170248,-0.002383,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170248,-0.002383,0.003500,0.249976,0,0);}
.me7_c00341{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);}
.m91_c00341{transform:matrix(0.171631,-0.001716,0.002500,0.249988,0,0);-ms-transform:matrix(0.171631,-0.001716,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171631,-0.001716,0.002500,0.249988,0,0);}
.m10a_c00341{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);}
.m10e_c00341{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);}
.m141_c00341{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);}
.me8_c00341{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);}
.m100_c00341{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);}
.mda_c00341{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);}
.m95_c00341{transform:matrix(0.173961,-0.001740,0.002500,0.249988,0,0);-ms-transform:matrix(0.173961,-0.001740,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173961,-0.001740,0.002500,0.249988,0,0);}
.m93_c00341{transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);-ms-transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);}
.m138_c00341{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);}
.m159_c00341{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);}
.ma1_c00341{transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175411,-0.001754,0.002500,0.249988,0,0);}
.m4f_c00341{transform:matrix(0.175433,-0.002456,0.003500,0.249976,0,0);-ms-transform:matrix(0.175433,-0.002456,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175433,-0.002456,0.003500,0.249976,0,0);}
.m45_c00341{transform:matrix(0.175453,-0.002456,0.003500,0.249976,0,0);-ms-transform:matrix(0.175453,-0.002456,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175453,-0.002456,0.003500,0.249976,0,0);}
.m3a_c00341{transform:matrix(0.175808,-0.002461,0.003500,0.249976,0,0);-ms-transform:matrix(0.175808,-0.002461,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175808,-0.002461,0.003500,0.249976,0,0);}
.m6a_c00341{transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);-ms-transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);}
.m125_c00341{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);}
.m2a_c00341{transform:matrix(0.176428,-0.002470,0.003500,0.249976,0,0);-ms-transform:matrix(0.176428,-0.002470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176428,-0.002470,0.003500,0.249976,0,0);}
.m36_c00341{transform:matrix(0.176568,-0.002472,0.003500,0.249976,0,0);-ms-transform:matrix(0.176568,-0.002472,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176568,-0.002472,0.003500,0.249976,0,0);}
.m3c_c00341{transform:matrix(0.176773,-0.002475,0.003500,0.249976,0,0);-ms-transform:matrix(0.176773,-0.002475,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176773,-0.002475,0.003500,0.249976,0,0);}
.m137_c00341{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);}
.mac_c00341{transform:matrix(0.177191,-0.001772,0.002500,0.249988,0,0);-ms-transform:matrix(0.177191,-0.001772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177191,-0.001772,0.002500,0.249988,0,0);}
.m8b_c00341{transform:matrix(0.177541,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177541,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177541,-0.001775,0.002500,0.249988,0,0);}
.mf_c00341{transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);-ms-transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177888,-0.003380,0.004749,0.249955,0,0);}
.mc6_c00341{transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178020,0.000000,0.000000,0.250000,0,0);}
.m38_c00341{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);}
.m7d_c00341{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);}
.m85_c00341{transform:matrix(0.178599,-0.001965,0.002750,0.249985,0,0);-ms-transform:matrix(0.178599,-0.001965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178599,-0.001965,0.002750,0.249985,0,0);}
.m56_c00341{transform:matrix(0.178662,-0.002501,0.003500,0.249976,0,0);-ms-transform:matrix(0.178662,-0.002501,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178662,-0.002501,0.003500,0.249976,0,0);}
.m108_c00341{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);}
.mc0_c00341{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);}
.mbe_c00341{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);}
.m35_c00341{transform:matrix(0.179237,-0.002509,0.003500,0.249976,0,0);-ms-transform:matrix(0.179237,-0.002509,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179237,-0.002509,0.003500,0.249976,0,0);}
.m131_c00341{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);}
.m15_c00341{transform:matrix(0.179642,-0.002515,0.003500,0.249976,0,0);-ms-transform:matrix(0.179642,-0.002515,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179642,-0.002515,0.003500,0.249976,0,0);}
.mdc_c00341{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);}
.m15e_c00341{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);}
.ma4_c00341{transform:matrix(0.180021,-0.001800,0.002500,0.249988,0,0);-ms-transform:matrix(0.180021,-0.001800,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180021,-0.001800,0.002500,0.249988,0,0);}
.m148_c00341{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);}
.m9c_c00341{transform:matrix(0.180711,-0.001807,0.002500,0.249988,0,0);-ms-transform:matrix(0.180711,-0.001807,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180711,-0.001807,0.002500,0.249988,0,0);}
.mf1_c00341{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);}
.mdd_c00341{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m144_c00341{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);}
.m60_c00341{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);}
.m80_c00341{transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181904,-0.002001,0.002750,0.249985,0,0);}
.mb6_c00341{transform:matrix(0.181931,-0.001819,0.002500,0.249988,0,0);-ms-transform:matrix(0.181931,-0.001819,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181931,-0.001819,0.002500,0.249988,0,0);}
.mc4_c00341{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);}
.m9d_c00341{transform:matrix(0.182351,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182351,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182351,-0.001824,0.002500,0.249988,0,0);}
.m161_c00341{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);}
.mb7_c00341{transform:matrix(0.182441,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182441,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182441,-0.001824,0.002500,0.249988,0,0);}
.mec_c00341{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);}
.m37_c00341{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);}
.m111_c00341{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);}
.mf0_c00341{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);}
.m75_c00341{transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183094,-0.002014,0.002750,0.249985,0,0);}
.m90_c00341{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);}
.mc7_c00341{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.mbc_c00341{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);}
.m107_c00341{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);}
.m72_c00341{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);}
.ma9_c00341{transform:matrix(0.184886,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184886,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184886,-0.001849,0.002500,0.249988,0,0);}
.m6c_c00341{transform:matrix(0.184959,-0.002035,0.002750,0.249985,0,0);-ms-transform:matrix(0.184959,-0.002035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184959,-0.002035,0.002750,0.249985,0,0);}
.m14e_c00341{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);}
.m126_c00341{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);}
.mba_c00341{transform:matrix(0.185866,-0.001859,0.002500,0.249988,0,0);-ms-transform:matrix(0.185866,-0.001859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185866,-0.001859,0.002500,0.249988,0,0);}
.m13f_c00341{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);}
.m114_c00341{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);}
.m139_c00341{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);}
.m96_c00341{transform:matrix(0.186911,-0.001869,0.002500,0.249988,0,0);-ms-transform:matrix(0.186911,-0.001869,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186911,-0.001869,0.002500,0.249988,0,0);}
.md0_c00341{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);}
.mae_c00341{transform:matrix(0.187566,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187566,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187566,-0.001876,0.002500,0.249988,0,0);}
.mf6_c00341{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);}
.m5d_c00341{transform:matrix(0.187824,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187824,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187824,-0.002066,0.002750,0.249985,0,0);}
.m47_c00341{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);}
.me0_c00341{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);}
.m99_c00341{transform:matrix(0.188206,-0.001882,0.002500,0.249988,0,0);-ms-transform:matrix(0.188206,-0.001882,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188206,-0.001882,0.002500,0.249988,0,0);}
.m12_c00341{transform:matrix(0.188437,-0.002638,0.003500,0.249976,0,0);-ms-transform:matrix(0.188437,-0.002638,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188437,-0.002638,0.003500,0.249976,0,0);}
.m62_c00341{transform:matrix(0.188664,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188664,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188664,-0.002075,0.002750,0.249985,0,0);}
.m5f_c00341{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);}
.m48_c00341{transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);}
.m2f_c00341{transform:matrix(0.189141,-0.002648,0.003500,0.249976,0,0);-ms-transform:matrix(0.189141,-0.002648,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189141,-0.002648,0.003500,0.249976,0,0);}
.mfb_c00341{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);}
.mfa_c00341{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);}
.m3e_c00341{transform:matrix(0.189981,-0.002660,0.003500,0.249976,0,0);-ms-transform:matrix(0.189981,-0.002660,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189981,-0.002660,0.003500,0.249976,0,0);}
.ma3_c00341{transform:matrix(0.190025,-0.001900,0.002500,0.249988,0,0);-ms-transform:matrix(0.190025,-0.001900,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190025,-0.001900,0.002500,0.249988,0,0);}
.mfe_c00341{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);}
.mf7_c00341{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);}
.m53_c00341{transform:matrix(0.190756,-0.002671,0.003500,0.249976,0,0);-ms-transform:matrix(0.190756,-0.002671,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190756,-0.002671,0.003500,0.249976,0,0);}
.me1_c00341{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);}
.mb8_c00341{transform:matrix(0.191075,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191075,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191075,-0.001911,0.002500,0.249988,0,0);}
.m11e_c00341{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);}
.m142_c00341{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);}
.m25_c00341{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);}
.m94_c00341{transform:matrix(0.191500,-0.001915,0.002500,0.249988,0,0);-ms-transform:matrix(0.191500,-0.001915,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191500,-0.001915,0.002500,0.249988,0,0);}
.m8c_c00341{transform:matrix(0.191520,-0.001915,0.002500,0.249988,0,0);-ms-transform:matrix(0.191520,-0.001915,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191520,-0.001915,0.002500,0.249988,0,0);}
.m15d_c00341{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);}
.m2d_c00341{transform:matrix(0.191736,-0.002684,0.003500,0.249976,0,0);-ms-transform:matrix(0.191736,-0.002684,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191736,-0.002684,0.003500,0.249976,0,0);}
.mef_c00341{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);}
.md3_c00341{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);}
.m97_c00341{transform:matrix(0.192950,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192950,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192950,-0.001930,0.002500,0.249988,0,0);}
.m160_c00341{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);}
.m24_c00341{transform:matrix(0.193426,-0.002708,0.003500,0.249976,0,0);-ms-transform:matrix(0.193426,-0.002708,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193426,-0.002708,0.003500,0.249976,0,0);}
.m12c_c00341{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);}
.m63_c00341{transform:matrix(0.193743,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193743,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193743,-0.002131,0.002750,0.249985,0,0);}
.me3_c00341{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);}
.m102_c00341{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);}
.meb_c00341{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);}
.m17_c00341{transform:matrix(0.193851,-0.002714,0.003500,0.249976,0,0);-ms-transform:matrix(0.193851,-0.002714,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193851,-0.002714,0.003500,0.249976,0,0);}
.m6f_c00341{transform:matrix(0.194043,-0.002134,0.002750,0.249985,0,0);-ms-transform:matrix(0.194043,-0.002134,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194043,-0.002134,0.002750,0.249985,0,0);}
.m66_c00341{transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);}
.m146_c00341{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);}
.m14d_c00341{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);}
.m6b_c00341{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);}
.mf3_c00341{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);}
.m11c_c00341{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);}
.m3f_c00341{transform:matrix(0.194906,-0.002729,0.003500,0.249976,0,0);-ms-transform:matrix(0.194906,-0.002729,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194906,-0.002729,0.003500,0.249976,0,0);}
.ma2_c00341{transform:matrix(0.195140,-0.001951,0.002500,0.249988,0,0);-ms-transform:matrix(0.195140,-0.001951,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195140,-0.001951,0.002500,0.249988,0,0);}
.m16_c00341{transform:matrix(0.195576,-0.002738,0.003500,0.249976,0,0);-ms-transform:matrix(0.195576,-0.002738,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195576,-0.002738,0.003500,0.249976,0,0);}
.mad_c00341{transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196165,-0.001962,0.002500,0.249988,0,0);}
.m6d_c00341{transform:matrix(0.196353,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196353,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196353,-0.002160,0.002750,0.249985,0,0);}
.m165_c00341{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);}
.m77_c00341{transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196638,-0.002163,0.002750,0.249985,0,0);}
.md8_c00341{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);}
.m68_c00341{transform:matrix(0.196653,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196653,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196653,-0.002163,0.002750,0.249985,0,0);}
.mce_c00341{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);}
.m32_c00341{transform:matrix(0.196866,-0.002756,0.003500,0.249976,0,0);-ms-transform:matrix(0.196866,-0.002756,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196866,-0.002756,0.003500,0.249976,0,0);}
.ma8_c00341{transform:matrix(0.196885,-0.001969,0.002500,0.249988,0,0);-ms-transform:matrix(0.196885,-0.001969,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196885,-0.001969,0.002500,0.249988,0,0);}
.m52_c00341{transform:matrix(0.196956,-0.002757,0.003500,0.249976,0,0);-ms-transform:matrix(0.196956,-0.002757,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196956,-0.002757,0.003500,0.249976,0,0);}
.mb3_c00341{transform:matrix(0.197010,-0.001970,0.002500,0.249988,0,0);-ms-transform:matrix(0.197010,-0.001970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197010,-0.001970,0.002500,0.249988,0,0);}
.mcd_c00341{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);}
.med_c00341{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);}
.m124_c00341{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);}
.m59_c00341{transform:matrix(0.197338,-0.002171,0.002750,0.249985,0,0);-ms-transform:matrix(0.197338,-0.002171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197338,-0.002171,0.002750,0.249985,0,0);}
.mee_c00341{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);}
.m156_c00341{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);}
.m1f_c00341{transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);}
.m104_c00341{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);}
.m12b_c00341{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);}
.md4_c00341{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);}
.m1a_c00341{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);}
.m8d_c00341{transform:matrix(0.199285,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199285,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199285,-0.001993,0.002500,0.249988,0,0);}
.m10b_c00341{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);}
.m82_c00341{transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199468,-0.002194,0.002750,0.249985,0,0);}
.m5a_c00341{transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);-ms-transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);}
.m3b_c00341{transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);-ms-transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199855,-0.002798,0.003500,0.249976,0,0);}
.m7f_c00341{transform:matrix(0.199953,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199953,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199953,-0.002199,0.002750,0.249985,0,0);}
.m73_c00341{transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);}
.m122_c00341{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);}
.m29_c00341{transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);}
.m129_c00341{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);}
.m23_c00341{transform:matrix(0.201045,-0.002815,0.003500,0.249976,0,0);-ms-transform:matrix(0.201045,-0.002815,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201045,-0.002815,0.003500,0.249976,0,0);}
.me2_c00341{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);}
.m2b_c00341{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);}
.m87_c00341{transform:matrix(0.201735,-0.002017,0.002500,0.249988,0,0);-ms-transform:matrix(0.201735,-0.002017,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201735,-0.002017,0.002500,0.249988,0,0);}
.md7_c00341{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);}
.m9_c00341{transform:matrix(0.202208,-0.006268,0.007746,0.249880,0,0);-ms-transform:matrix(0.202208,-0.006268,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202208,-0.006268,0.007746,0.249880,0,0);}
.m11d_c00341{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);}
.m147_c00341{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);}
.m15a_c00341{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);}
.mca_c00341{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);}
.me9_c00341{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);}
.m41_c00341{transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);}
.m65_c00341{transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);}
.m55_c00341{transform:matrix(0.205080,-0.002871,0.003500,0.249976,0,0);-ms-transform:matrix(0.205080,-0.002871,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205080,-0.002871,0.003500,0.249976,0,0);}
.mb1_c00341{transform:matrix(0.205100,-0.002051,0.002500,0.249988,0,0);-ms-transform:matrix(0.205100,-0.002051,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205100,-0.002051,0.002500,0.249988,0,0);}
.m31_c00341{transform:matrix(0.205175,-0.002872,0.003500,0.249976,0,0);-ms-transform:matrix(0.205175,-0.002872,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205175,-0.002872,0.003500,0.249976,0,0);}
.m112_c00341{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);}
.m13c_c00341{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);}
.mc3_c00341{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);}
.m7b_c00341{transform:matrix(0.205958,-0.002266,0.002750,0.249985,0,0);-ms-transform:matrix(0.205958,-0.002266,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205958,-0.002266,0.002750,0.249985,0,0);}
.mf2_c00341{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);}
.m89_c00341{transform:matrix(0.206255,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206255,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206255,-0.002063,0.002500,0.249988,0,0);}
.m119_c00341{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);}
.m13d_c00341{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);}
.m2e_c00341{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);}
.m70_c00341{transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);}
.m7a_c00341{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);}
.m39_c00341{transform:matrix(0.207405,-0.002904,0.003500,0.249976,0,0);-ms-transform:matrix(0.207405,-0.002904,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207405,-0.002904,0.003500,0.249976,0,0);}
.m134_c00341{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);}
.m78_c00341{transform:matrix(0.207702,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207702,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207702,-0.002285,0.002750,0.249985,0,0);}
.m10c_c00341{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);}
.m49_c00341{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);}
.me5_c00341{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m64_c00341{transform:matrix(0.209527,-0.002305,0.002750,0.249985,0,0);-ms-transform:matrix(0.209527,-0.002305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209527,-0.002305,0.002750,0.249985,0,0);}
.m8a_c00341{transform:matrix(0.210044,-0.002100,0.002500,0.249988,0,0);-ms-transform:matrix(0.210044,-0.002100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210044,-0.002100,0.002500,0.249988,0,0);}
.m19_c00341{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);}
.mb9_c00341{transform:matrix(0.210499,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210499,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210499,-0.002105,0.002500,0.249988,0,0);}
.me6_c00341{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);}
.m11b_c00341{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);}
.m105_c00341{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);}
.m20_c00341{transform:matrix(0.211479,-0.002961,0.003500,0.249976,0,0);-ms-transform:matrix(0.211479,-0.002961,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211479,-0.002961,0.003500,0.249976,0,0);}
.m153_c00341{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);}
.m9a_c00341{transform:matrix(0.211869,-0.002119,0.002500,0.249988,0,0);-ms-transform:matrix(0.211869,-0.002119,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211869,-0.002119,0.002500,0.249988,0,0);}
.m113_c00341{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);}
.m3d_c00341{transform:matrix(0.212034,-0.002968,0.003500,0.249976,0,0);-ms-transform:matrix(0.212034,-0.002968,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212034,-0.002968,0.003500,0.249976,0,0);}
.mb5_c00341{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);}
.mf5_c00341{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);}
.m8f_c00341{transform:matrix(0.212539,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212539,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212539,-0.002125,0.002500,0.249988,0,0);}
.m14a_c00341{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);}
.m9e_c00341{transform:matrix(0.213394,-0.002134,0.002500,0.249988,0,0);-ms-transform:matrix(0.213394,-0.002134,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213394,-0.002134,0.002500,0.249988,0,0);}
.m81_c00341{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);}
.m1e_c00341{transform:matrix(0.213564,-0.002990,0.003500,0.249976,0,0);-ms-transform:matrix(0.213564,-0.002990,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213564,-0.002990,0.003500,0.249976,0,0);}
.m28_c00341{transform:matrix(0.213574,-0.002990,0.003500,0.249976,0,0);-ms-transform:matrix(0.213574,-0.002990,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213574,-0.002990,0.003500,0.249976,0,0);}
.m7c_c00341{transform:matrix(0.213737,-0.002351,0.002750,0.249985,0,0);-ms-transform:matrix(0.213737,-0.002351,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213737,-0.002351,0.002750,0.249985,0,0);}
.m67_c00341{transform:matrix(0.214022,-0.002354,0.002750,0.249985,0,0);-ms-transform:matrix(0.214022,-0.002354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214022,-0.002354,0.002750,0.249985,0,0);}
.m57_c00341{transform:matrix(0.214599,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214599,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214599,-0.003004,0.003500,0.249976,0,0);}
.mbf_c00341{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);}
.m86_c00341{transform:matrix(0.214844,-0.002148,0.002500,0.249988,0,0);-ms-transform:matrix(0.214844,-0.002148,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214844,-0.002148,0.002500,0.249988,0,0);}
.m30_c00341{transform:matrix(0.215084,-0.003011,0.003500,0.249976,0,0);-ms-transform:matrix(0.215084,-0.003011,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215084,-0.003011,0.003500,0.249976,0,0);}
.m5e_c00341{transform:matrix(0.215127,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215127,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215127,-0.002366,0.002750,0.249985,0,0);}
.m33_c00341{transform:matrix(0.215469,-0.003017,0.003500,0.249976,0,0);-ms-transform:matrix(0.215469,-0.003017,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215469,-0.003017,0.003500,0.249976,0,0);}
.m12a_c00341{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);}
.m8e_c00341{transform:matrix(0.216349,-0.002163,0.002500,0.249988,0,0);-ms-transform:matrix(0.216349,-0.002163,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216349,-0.002163,0.002500,0.249988,0,0);}
.mc1_c00341{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);}
.m58_c00341{transform:matrix(0.216999,-0.003038,0.003500,0.249976,0,0);-ms-transform:matrix(0.216999,-0.003038,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216999,-0.003038,0.003500,0.249976,0,0);}
.mbd_c00341{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);}
.m2c_c00341{transform:matrix(0.217244,-0.003041,0.003500,0.249976,0,0);-ms-transform:matrix(0.217244,-0.003041,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217244,-0.003041,0.003500,0.249976,0,0);}
.mcc_c00341{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);}
.mf4_c00341{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);}
.md6_c00341{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);}
.m54_c00341{transform:matrix(0.218969,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.218969,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218969,-0.003066,0.003500,0.249976,0,0);}
.m132_c00341{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);}
.m5b_c00341{transform:matrix(0.219822,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219822,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219822,-0.002418,0.002750,0.249985,0,0);}
.m4d_c00341{transform:matrix(0.219933,-0.003079,0.003500,0.249976,0,0);-ms-transform:matrix(0.219933,-0.003079,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219933,-0.003079,0.003500,0.249976,0,0);}
.mc5_c00341{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);}
.mb4_c00341{transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);-ms-transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);}
.ma6_c00341{transform:matrix(0.221729,-0.002217,0.002500,0.249988,0,0);-ms-transform:matrix(0.221729,-0.002217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221729,-0.002217,0.002500,0.249988,0,0);}
.m151_c00341{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);}
.mab_c00341{transform:matrix(0.222824,-0.002228,0.002500,0.249988,0,0);-ms-transform:matrix(0.222824,-0.002228,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222824,-0.002228,0.002500,0.249988,0,0);}
.m101_c00341{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);}
.mcb_c00341{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);}
.md1_c00341{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);}
.m110_c00341{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);}
.m79_c00341{transform:matrix(0.228156,-0.002510,0.002750,0.249985,0,0);-ms-transform:matrix(0.228156,-0.002510,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228156,-0.002510,0.002750,0.249985,0,0);}
.m118_c00341{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);}
.m115_c00341{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);}
.m1c_c00341{transform:matrix(0.231177,-0.003236,0.003500,0.249976,0,0);-ms-transform:matrix(0.231177,-0.003236,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231177,-0.003236,0.003500,0.249976,0,0);}
.m109_c00341{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);}
.m120_c00341{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);}
.m14f_c00341{transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232190,0.000000,0.000000,0.250000,0,0);}
.m12e_c00341{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);}
.m11f_c00341{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);}
.m4c_c00341{transform:matrix(0.233352,-0.003267,0.003500,0.249976,0,0);-ms-transform:matrix(0.233352,-0.003267,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233352,-0.003267,0.003500,0.249976,0,0);}
.m5c_c00341{transform:matrix(0.233401,-0.002567,0.002750,0.249985,0,0);-ms-transform:matrix(0.233401,-0.002567,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233401,-0.002567,0.002750,0.249985,0,0);}
.mdf_c00341{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);}
.m123_c00341{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);}
.mbb_c00341{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.maf_c00341{transform:matrix(0.243368,-0.002434,0.002500,0.249988,0,0);-ms-transform:matrix(0.243368,-0.002434,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243368,-0.002434,0.002500,0.249988,0,0);}
.mea_c00341{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m9f_c00341{transform:matrix(0.250982,-0.002510,0.002500,0.249988,0,0);-ms-transform:matrix(0.250982,-0.002510,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250982,-0.002510,0.002500,0.249988,0,0);}
.maa_c00341{transform:matrix(0.255377,-0.002554,0.002500,0.249988,0,0);-ms-transform:matrix(0.255377,-0.002554,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255377,-0.002554,0.002500,0.249988,0,0);}
.md2_c00341{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.md5_c00341{transform:matrix(0.259790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259790,0.000000,0.000000,0.250000,0,0);}
.m4e_c00341{transform:matrix(0.261394,-0.003660,0.003500,0.249976,0,0);-ms-transform:matrix(0.261394,-0.003660,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261394,-0.003660,0.003500,0.249976,0,0);}
.mcf_c00341{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);}
.m21_c00341{transform:matrix(0.262784,-0.003679,0.003500,0.249976,0,0);-ms-transform:matrix(0.262784,-0.003679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262784,-0.003679,0.003500,0.249976,0,0);}
.m50_c00341{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);}
.m34_c00341{transform:matrix(0.267034,-0.003738,0.003500,0.249976,0,0);-ms-transform:matrix(0.267034,-0.003738,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267034,-0.003738,0.003500,0.249976,0,0);}
.m84_c00341{transform:matrix(0.268294,-0.002951,0.002750,0.249985,0,0);-ms-transform:matrix(0.268294,-0.002951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268294,-0.002951,0.002750,0.249985,0,0);}
.m15c_c00341{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);}
.m150_c00341{transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.285813,-0.008860,0.007746,0.249880,0,0);-ms-transform:matrix(0.285813,-0.008860,0.007746,0.249880,0,0);-webkit-transform:matrix(0.285813,-0.008860,0.007746,0.249880,0,0);}
.m7_c00341{transform:matrix(0.286163,-0.008871,0.007746,0.249880,0,0);-ms-transform:matrix(0.286163,-0.008871,0.007746,0.249880,0,0);-webkit-transform:matrix(0.286163,-0.008871,0.007746,0.249880,0,0);}
.m121_c00341{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.m71_c00341{transform:matrix(0.329710,-0.003627,0.002750,0.249985,0,0);-ms-transform:matrix(0.329710,-0.003627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.329710,-0.003627,0.002750,0.249985,0,0);}
.m162_c00341{transform:matrix(0.333935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333935,0.000000,0.000000,0.250000,0,0);}
.m83_c00341{transform:matrix(0.344694,-0.003792,0.002750,0.249985,0,0);-ms-transform:matrix(0.344694,-0.003792,0.002750,0.249985,0,0);-webkit-transform:matrix(0.344694,-0.003792,0.002750,0.249985,0,0);}
.m14_c00341{transform:matrix(0.348106,-0.004873,0.003500,0.249976,0,0);-ms-transform:matrix(0.348106,-0.004873,0.003500,0.249976,0,0);-webkit-transform:matrix(0.348106,-0.004873,0.003500,0.249976,0,0);}
.m3_c00341{transform:matrix(0.363166,-0.011258,0.007746,0.249880,0,0);-ms-transform:matrix(0.363166,-0.011258,0.007746,0.249880,0,0);-webkit-transform:matrix(0.363166,-0.011258,0.007746,0.249880,0,0);}
.m0_c00341{transform:matrix(0.386779,-0.011990,0.007746,0.249880,0,0);-ms-transform:matrix(0.386779,-0.011990,0.007746,0.249880,0,0);-webkit-transform:matrix(0.386779,-0.011990,0.007746,0.249880,0,0);}
.mb0_c00341{transform:matrix(0.394455,-0.003945,0.002500,0.249988,0,0);-ms-transform:matrix(0.394455,-0.003945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.394455,-0.003945,0.002500,0.249988,0,0);}
.m8_c00341{transform:matrix(0.400083,-0.012403,0.007746,0.249880,0,0);-ms-transform:matrix(0.400083,-0.012403,0.007746,0.249880,0,0);-webkit-transform:matrix(0.400083,-0.012403,0.007746,0.249880,0,0);}
.m4_c00341{transform:matrix(0.434356,-0.013465,0.007746,0.249880,0,0);-ms-transform:matrix(0.434356,-0.013465,0.007746,0.249880,0,0);-webkit-transform:matrix(0.434356,-0.013465,0.007746,0.249880,0,0);}
.m5_c00341{transform:matrix(0.442238,-0.013709,0.007746,0.249880,0,0);-ms-transform:matrix(0.442238,-0.013709,0.007746,0.249880,0,0);-webkit-transform:matrix(0.442238,-0.013709,0.007746,0.249880,0,0);}
.m1_c00341{transform:matrix(0.444012,-0.013764,0.007746,0.249880,0,0);-ms-transform:matrix(0.444012,-0.013764,0.007746,0.249880,0,0);-webkit-transform:matrix(0.444012,-0.013764,0.007746,0.249880,0,0);}
.m10_c00341{transform:matrix(0.453708,-0.008620,0.004749,0.249955,0,0);-ms-transform:matrix(0.453708,-0.008620,0.004749,0.249955,0,0);-webkit-transform:matrix(0.453708,-0.008620,0.004749,0.249955,0,0);}
.m163_c00341{transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.500395,-0.015512,0.007746,0.249880,0,0);-ms-transform:matrix(0.500395,-0.015512,0.007746,0.249880,0,0);-webkit-transform:matrix(0.500395,-0.015512,0.007746,0.249880,0,0);}
.m6_c00341{transform:matrix(0.518491,-0.016073,0.007746,0.249880,0,0);-ms-transform:matrix(0.518491,-0.016073,0.007746,0.249880,0,0);-webkit-transform:matrix(0.518491,-0.016073,0.007746,0.249880,0,0);}
.md_c00341{transform:matrix(0.787462,-0.024411,0.007746,0.249880,0,0);-ms-transform:matrix(0.787462,-0.024411,0.007746,0.249880,0,0);-webkit-transform:matrix(0.787462,-0.024411,0.007746,0.249880,0,0);}
.me_c00341{transform:matrix(0.807667,-0.025038,0.007746,0.249880,0,0);-ms-transform:matrix(0.807667,-0.025038,0.007746,0.249880,0,0);-webkit-transform:matrix(0.807667,-0.025038,0.007746,0.249880,0,0);}
.mc_c00341{transform:matrix(0.876289,-0.027165,0.007746,0.249880,0,0);-ms-transform:matrix(0.876289,-0.027165,0.007746,0.249880,0,0);-webkit-transform:matrix(0.876289,-0.027165,0.007746,0.249880,0,0);}
.m11_c00341{transform:matrix(1.016372,-0.019311,0.004749,0.249955,0,0);-ms-transform:matrix(1.016372,-0.019311,0.004749,0.249955,0,0);-webkit-transform:matrix(1.016372,-0.019311,0.004749,0.249955,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;}
.fs14_c00341{font-size:58.800000px;}
.fs0_c00341{font-size:60.929255px;}
.fs11_c00341{font-size:61.953097px;}
.fs8_c00341{font-size:65.106379px;}
.fs17_c00341{font-size:66.150000px;}
.fsd_c00341{font-size:67.203360px;}
.fsc_c00341{font-size:67.204065px;}
.fs5_c00341{font-size:67.206585px;}
.fs15_c00341{font-size:68.250000px;}
.fs9_c00341{font-size:68.254129px;}
.fs3_c00341{font-size:68.256688px;}
.fs18_c00341{font-size:69.300000px;}
.fsf_c00341{font-size:69.303465px;}
.fs12_c00341{font-size:70.350000px;}
.fse_c00341{font-size:70.353517px;}
.fsb_c00341{font-size:70.354256px;}
.fs4_c00341{font-size:70.356894px;}
.fs13_c00341{font-size:71.400000px;}
.fs10_c00341{font-size:71.403570px;}
.fsa_c00341{font-size:71.404320px;}
.fs7_c00341{font-size:71.406997px;}
.fs6_c00341{font-size:72.457100px;}
.fs16_c00341{font-size:73.500000px;}
.fs1_c00341{font-size:87.191866px;}
.fs2_c00341{font-size:120.771793px;}
.y0_c00341{bottom:0.000000px;}
.yca_c00341{bottom:167.968500px;}
.yc9_c00341{bottom:190.414500px;}
.yc8_c00341{bottom:213.058500px;}
.yc7_c00341{bottom:235.738500px;}
.yc6_c00341{bottom:258.657000px;}
.yc5_c00341{bottom:281.812500px;}
.yc4_c00341{bottom:304.204500px;}
.yc3_c00341{bottom:327.153000px;}
.yc2_c00341{bottom:350.061000px;}
.yc1_c00341{bottom:373.219500px;}
.yc0_c00341{bottom:396.441000px;}
.ybf_c00341{bottom:419.335500px;}
.ybe_c00341{bottom:441.751500px;}
.ybd_c00341{bottom:464.967000px;}
.ybc_c00341{bottom:487.800000px;}
.yba_c00341{bottom:510.739965px;}
.yb9_c00341{bottom:510.739980px;}
.ybb_c00341{bottom:510.740250px;}
.yb8_c00341{bottom:510.740595px;}
.yb6_c00341{bottom:510.740655px;}
.yb7_c00341{bottom:510.741225px;}
.yb5_c00341{bottom:510.741285px;}
.ya9_c00341{bottom:532.707990px;}
.yaa_c00341{bottom:533.091270px;}
.yab_c00341{bottom:533.472945px;}
.yac_c00341{bottom:533.752635px;}
.yad_c00341{bottom:533.915865px;}
.yae_c00341{bottom:534.216420px;}
.yaf_c00341{bottom:534.761145px;}
.yb0_c00341{bottom:534.913875px;}
.yb1_c00341{bottom:535.057860px;}
.yb2_c00341{bottom:535.210650px;}
.yb3_c00341{bottom:535.600140px;}
.yb4_c00341{bottom:535.883265px;}
.ya3_c00341{bottom:557.357715px;}
.ya4_c00341{bottom:557.358300px;}
.ya2_c00341{bottom:557.358330px;}
.ya8_c00341{bottom:557.358495px;}
.ya7_c00341{bottom:557.358540px;}
.ya5_c00341{bottom:557.358585px;}
.ya6_c00341{bottom:557.358870px;}
.ya1_c00341{bottom:557.358960px;}
.y9f_c00341{bottom:557.359005px;}
.ya0_c00341{bottom:557.359275px;}
.y9e_c00341{bottom:557.359335px;}
.y93_c00341{bottom:578.340540px;}
.y94_c00341{bottom:578.532570px;}
.y95_c00341{bottom:578.826690px;}
.y96_c00341{bottom:579.193740px;}
.y97_c00341{bottom:579.513855px;}
.y98_c00341{bottom:579.810960px;}
.y99_c00341{bottom:580.303215px;}
.y9a_c00341{bottom:580.674315px;}
.y9b_c00341{bottom:580.944735px;}
.y9c_c00341{bottom:581.717850px;}
.y9d_c00341{bottom:582.011520px;}
.y87_c00341{bottom:600.751500px;}
.y88_c00341{bottom:601.016175px;}
.y89_c00341{bottom:601.307820px;}
.y8a_c00341{bottom:601.658805px;}
.y8b_c00341{bottom:601.909890px;}
.y8c_c00341{bottom:602.555295px;}
.y8d_c00341{bottom:602.930490px;}
.y8e_c00341{bottom:603.178800px;}
.y8f_c00341{bottom:603.478785px;}
.y90_c00341{bottom:604.221255px;}
.y91_c00341{bottom:604.537170px;}
.y92_c00341{bottom:605.004270px;}
.y7c_c00341{bottom:623.428026px;}
.y7d_c00341{bottom:624.129214px;}
.y7e_c00341{bottom:624.455089px;}
.y7f_c00341{bottom:624.731524px;}
.y80_c00341{bottom:625.020831px;}
.y81_c00341{bottom:625.763537px;}
.y82_c00341{bottom:626.077167px;}
.y83_c00341{bottom:626.587117px;}
.y84_c00341{bottom:626.940732px;}
.y85_c00341{bottom:627.158901px;}
.y86_c00341{bottom:627.393093px;}
.y70_c00341{bottom:646.378787px;}
.y71_c00341{bottom:646.911443px;}
.y72_c00341{bottom:647.570568px;}
.y73_c00341{bottom:647.791096px;}
.y74_c00341{bottom:648.005189px;}
.y75_c00341{bottom:648.626343px;}
.y76_c00341{bottom:648.820765px;}
.y77_c00341{bottom:649.212399px;}
.y78_c00341{bottom:649.403901px;}
.y79_c00341{bottom:649.941195px;}
.y7a_c00341{bottom:650.467515px;}
.y7b_c00341{bottom:650.901772px;}
.y63_c00341{bottom:668.791413px;}
.y64_c00341{bottom:669.425670px;}
.y65_c00341{bottom:669.788327px;}
.y66_c00341{bottom:670.381402px;}
.y67_c00341{bottom:670.656303px;}
.y68_c00341{bottom:671.365299px;}
.y69_c00341{bottom:671.634391px;}
.y6a_c00341{bottom:672.405883px;}
.y6b_c00341{bottom:672.831251px;}
.y6c_c00341{bottom:673.129611px;}
.y6d_c00341{bottom:673.609671px;}
.y6e_c00341{bottom:674.049673px;}
.y6f_c00341{bottom:674.387070px;}
.y5a_c00341{bottom:691.741500px;}
.y5b_c00341{bottom:692.451743px;}
.y5c_c00341{bottom:693.300783px;}
.y5d_c00341{bottom:693.520646px;}
.y5e_c00341{bottom:694.257189px;}
.y5f_c00341{bottom:694.729485px;}
.y60_c00341{bottom:695.620535px;}
.y61_c00341{bottom:695.932368px;}
.y62_c00341{bottom:696.654194px;}
.y4d_c00341{bottom:714.408477px;}
.y4e_c00341{bottom:714.766911px;}
.y4f_c00341{bottom:715.405413px;}
.y50_c00341{bottom:715.662084px;}
.y51_c00341{bottom:716.223342px;}
.y52_c00341{bottom:716.779980px;}
.y53_c00341{bottom:716.985333px;}
.y54_c00341{bottom:717.793254px;}
.y55_c00341{bottom:718.354449px;}
.y56_c00341{bottom:718.701837px;}
.y57_c00341{bottom:719.407218px;}
.y58_c00341{bottom:719.986254px;}
.y59_c00341{bottom:720.281253px;}
.y42_c00341{bottom:736.820523px;}
.y43_c00341{bottom:737.655684px;}
.y44_c00341{bottom:738.185271px;}
.y45_c00341{bottom:738.484050px;}
.y46_c00341{bottom:738.762636px;}
.y47_c00341{bottom:739.377636px;}
.y48_c00341{bottom:739.621980px;}
.y49_c00341{bottom:740.180487px;}
.y4a_c00341{bottom:740.946111px;}
.y4b_c00341{bottom:742.072428px;}
.y4c_c00341{bottom:742.756860px;}
.y39_c00341{bottom:760.044708px;}
.y3a_c00341{bottom:760.608012px;}
.y3b_c00341{bottom:761.294637px;}
.y3c_c00341{bottom:761.985852px;}
.y3d_c00341{bottom:762.305463px;}
.y3e_c00341{bottom:762.868641px;}
.y3f_c00341{bottom:763.784709px;}
.y40_c00341{bottom:764.206470px;}
.y41_c00341{bottom:765.314772px;}
.y2c_c00341{bottom:781.917306px;}
.y2d_c00341{bottom:782.572023px;}
.y2e_c00341{bottom:783.293877px;}
.y2f_c00341{bottom:783.664380px;}
.y30_c00341{bottom:784.261872px;}
.y31_c00341{bottom:785.104098px;}
.y32_c00341{bottom:785.599236px;}
.y33_c00341{bottom:786.067914px;}
.y34_c00341{bottom:786.487557px;}
.y35_c00341{bottom:786.734181px;}
.y36_c00341{bottom:787.055607px;}
.y37_c00341{bottom:787.649004px;}
.y38_c00341{bottom:788.215941px;}
.y20_c00341{bottom:805.139142px;}
.y21_c00341{bottom:805.386879px;}
.y22_c00341{bottom:805.733442px;}
.y23_c00341{bottom:806.002011px;}
.y24_c00341{bottom:806.758095px;}
.y25_c00341{bottom:807.522222px;}
.y26_c00341{bottom:809.142729px;}
.y27_c00341{bottom:809.676654px;}
.y28_c00341{bottom:810.028320px;}
.y29_c00341{bottom:810.372699px;}
.y2a_c00341{bottom:810.909039px;}
.y2b_c00341{bottom:811.434564px;}
.y13_c00341{bottom:827.823000px;}
.y14_c00341{bottom:828.692358px;}
.y15_c00341{bottom:828.983859px;}
.y16_c00341{bottom:829.471794px;}
.y17_c00341{bottom:830.022393px;}
.y18_c00341{bottom:830.526456px;}
.y19_c00341{bottom:831.425949px;}
.y1a_c00341{bottom:831.813105px;}
.y1b_c00341{bottom:832.343607px;}
.y1c_c00341{bottom:832.862307px;}
.y1d_c00341{bottom:833.173023px;}
.y1e_c00341{bottom:833.764089px;}
.y1f_c00341{bottom:834.006828px;}
.y10_c00341{bottom:873.999000px;}
.y11_c00341{bottom:875.509728px;}
.y12_c00341{bottom:877.741192px;}
.yc_c00341{bottom:908.569502px;}
.yd_c00341{bottom:911.218338px;}
.ye_c00341{bottom:916.307360px;}
.yf_c00341{bottom:919.764182px;}
.y1_c00341{bottom:923.961000px;}
.y2_c00341{bottom:925.084719px;}
.y3_c00341{bottom:926.186351px;}
.y4_c00341{bottom:927.685929px;}
.y5_c00341{bottom:929.601218px;}
.y6_c00341{bottom:931.234902px;}
.y7_c00341{bottom:933.205340px;}
.y8_c00341{bottom:934.528218px;}
.y9_c00341{bottom:936.732690px;}
.ya_c00341{bottom:938.808497px;}
.yb_c00341{bottom:940.604652px;}
.h16_c00341{height:58.800000px;}
.h2_c00341{height:60.929255px;}
.h13_c00341{height:61.953097px;}
.ha_c00341{height:65.106379px;}
.h19_c00341{height:66.150000px;}
.hf_c00341{height:67.203360px;}
.he_c00341{height:67.204065px;}
.h7_c00341{height:67.206585px;}
.h17_c00341{height:68.250000px;}
.hb_c00341{height:68.254129px;}
.h5_c00341{height:68.256688px;}
.h1a_c00341{height:69.300000px;}
.h11_c00341{height:69.303465px;}
.h14_c00341{height:70.350000px;}
.h10_c00341{height:70.353517px;}
.hd_c00341{height:70.354256px;}
.h6_c00341{height:70.356894px;}
.h15_c00341{height:71.400000px;}
.h12_c00341{height:71.403570px;}
.hc_c00341{height:71.404320px;}
.h9_c00341{height:71.406997px;}
.h8_c00341{height:72.457100px;}
.h18_c00341{height:73.500000px;}
.h3_c00341{height:87.191866px;}
.h4_c00341{height:120.771793px;}
.h0_c00341{height:1008.450000px;}
.h1_c00341{height:1008.750000px;}
.w0_c00341{width:696.000000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:96.528000px;}
.x2_c00341{left:132.777000px;}
.x51_c00341{left:146.800175px;}
.xf_c00341{left:150.601500px;}
.x30_c00341{left:151.617969px;}
.x38_c00341{left:152.715759px;}
.x58_c00341{left:154.036059px;}
.x80_c00341{left:155.254110px;}
.x9d_c00341{left:156.870000px;}
.xb2_c00341{left:158.490000px;}
.xbc_c00341{left:159.840000px;}
.xc0_c00341{left:161.190000px;}
.x3_c00341{left:168.313500px;}
.x63_c00341{left:174.277500px;}
.x6c_c00341{left:178.007040px;}
.x42_c00341{left:180.521898px;}
.xac_c00341{left:182.520000px;}
.xbe_c00341{left:185.490000px;}
.xc1_c00341{left:187.920000px;}
.xc_c00341{left:191.411739px;}
.x1d_c00341{left:193.217604px;}
.x25_c00341{left:197.834205px;}
.x52_c00341{left:199.686597px;}
.x64_c00341{left:200.745000px;}
.x95_c00341{left:202.230000px;}
.x88_c00341{left:204.390000px;}
.x59_c00341{left:207.232637px;}
.x79_c00341{left:209.634570px;}
.x12_c00341{left:212.394000px;}
.x6d_c00341{left:214.769775px;}
.x4_c00341{left:216.687000px;}
.x81_c00341{left:219.247515px;}
.x74_c00341{left:222.216675px;}
.x5e_c00341{left:224.237268px;}
.x89_c00341{left:226.800000px;}
.x10_c00341{left:230.113500px;}
.x13_c00341{left:233.215500px;}
.xb6_c00341{left:234.630000px;}
.x96_c00341{left:235.710000px;}
.xa2_c00341{left:247.860000px;}
.x26_c00341{left:249.395205px;}
.xa6_c00341{left:253.530000px;}
.xb3_c00341{left:254.610000px;}
.x31_c00341{left:255.794388px;}
.x39_c00341{left:257.699229px;}
.x6e_c00341{left:260.625690px;}
.x9e_c00341{left:263.520000px;}
.x65_c00341{left:265.008000px;}
.x1e_c00341{left:266.407104px;}
.x14_c00341{left:268.068000px;}
.x85_c00341{left:271.350000px;}
.x5a_c00341{left:273.153863px;}
.xc2_c00341{left:274.590000px;}
.x27_c00341{left:275.859705px;}
.x8f_c00341{left:277.020000px;}
.x5_c00341{left:278.470500px;}
.x3a_c00341{left:280.648044px;}
.x5f_c00341{left:284.447928px;}
.xb7_c00341{left:287.010000px;}
.x66_c00341{left:290.116500px;}
.x43_c00341{left:292.589973px;}
.x4b_c00341{left:294.718500px;}
.xa7_c00341{left:299.430000px;}
.x6f_c00341{left:300.587985px;}
.x3b_c00341{left:302.047338px;}
.x7a_c00341{left:304.123905px;}
.x15_c00341{left:307.396500px;}
.x32_c00341{left:313.418505px;}
.x4c_c00341{left:314.706000px;}
.x5b_c00341{left:316.619841px;}
.x28_c00341{left:318.537705px;}
.x1f_c00341{left:320.987604px;}
.xad_c00341{left:322.110000px;}
.x8a_c00341{left:325.620000px;}
.x7b_c00341{left:327.347595px;}
.xb8_c00341{left:329.940000px;}
.x6_c00341{left:331.170000px;}
.xa8_c00341{left:333.990000px;}
.x44_c00341{left:335.457582px;}
.x70_c00341{left:337.649220px;}
.x33_c00341{left:340.105761px;}
.x8b_c00341{left:342.090000px;}
.x16_c00341{left:343.401000px;}
.xb4_c00341{left:345.060000px;}
.x11_c00341{left:347.559000px;}
.x3c_c00341{left:349.297989px;}
.x45_c00341{left:351.197292px;}
.x9f_c00341{left:352.350000px;}
.x67_c00341{left:354.657000px;}
.x90_c00341{left:356.400000px;}
.x82_c00341{left:359.370000px;}
.x53_c00341{left:361.423832px;}
.x97_c00341{left:365.040000px;}
.x3d_c00341{left:368.144262px;}
.x7c_c00341{left:370.304385px;}
.xd_c00341{left:373.155119px;}
.x86_c00341{left:375.570000px;}
.x29_c00341{left:378.696705px;}
.x4d_c00341{left:381.664500px;}
.x54_c00341{left:383.841084px;}
.x34_c00341{left:387.084084px;}
.x75_c00341{left:389.354400px;}
.x68_c00341{left:392.176500px;}
.x7_c00341{left:394.732500px;}
.x98_c00341{left:396.630000px;}
.x5c_c00341{left:398.127732px;}
.x71_c00341{left:399.175950px;}
.x8c_c00341{left:400.680000px;}
.xbd_c00341{left:404.190000px;}
.x91_c00341{left:405.540000px;}
.x17_c00341{left:407.650500px;}
.x3e_c00341{left:411.145371px;}
.x2a_c00341{left:414.063705px;}
.x69_c00341{left:417.007500px;}
.x60_c00341{left:418.916897px;}
.x99_c00341{left:420.930000px;}
.x4e_c00341{left:424.600500px;}
.x8d_c00341{left:427.950000px;}
.xa0_c00341{left:431.190000px;}
.x18_c00341{left:435.304500px;}
.x8_c00341{left:437.406000px;}
.x9a_c00341{left:440.910000px;}
.x72_c00341{left:445.586880px;}
.x2b_c00341{left:447.540705px;}
.x87_c00341{left:452.790000px;}
.xbb_c00341{left:453.870000px;}
.x46_c00341{left:456.492762px;}
.x76_c00341{left:458.748330px;}
.x35_c00341{left:463.448226px;}
.x92_c00341{left:466.020000px;}
.x83_c00341{left:467.100000px;}
.x3f_c00341{left:470.012190px;}
.x19_c00341{left:473.197500px;}
.x20_c00341{left:474.875604px;}
.x2c_c00341{left:477.515205px;}
.x73_c00341{left:479.379555px;}
.x9b_c00341{left:481.140000px;}
.x47_c00341{left:483.235140px;}
.xa9_c00341{left:489.240000px;}
.x7d_c00341{left:490.451985px;}
.xae_c00341{left:493.830000px;}
.x2d_c00341{left:495.131205px;}
.xe_c00341{left:496.628604px;}
.x36_c00341{left:498.610713px;}
.x21_c00341{left:499.994604px;}
.x4f_c00341{left:505.605000px;}
.x9_c00341{left:508.518000px;}
.x1a_c00341{left:510.247500px;}
.x7e_c00341{left:512.331645px;}
.x2e_c00341{left:518.090205px;}
.xa3_c00341{left:519.750000px;}
.x6a_c00341{left:521.253000px;}
.x77_c00341{left:523.550310px;}
.x22_c00341{left:524.593104px;}
.x61_c00341{left:527.212101px;}
.x84_c00341{left:530.010000px;}
.x8e_c00341{left:531.090000px;}
.x1b_c00341{left:532.441500px;}
.x50_c00341{left:533.953500px;}
.x48_c00341{left:537.477396px;}
.xaf_c00341{left:539.190000px;}
.xa4_c00341{left:540.540000px;}
.x93_c00341{left:541.890000px;}
.x55_c00341{left:548.273753px;}
.x62_c00341{left:550.684365px;}
.x6b_c00341{left:552.844500px;}
.xaa_c00341{left:554.580000px;}
.x40_c00341{left:556.678908px;}
.x2f_c00341{left:560.475705px;}
.x23_c00341{left:562.903104px;}
.x7f_c00341{left:567.932310px;}
.xa1_c00341{left:569.970000px;}
.xa_c00341{left:575.479500px;}
.xb5_c00341{left:578.880000px;}
.xb0_c00341{left:580.770000px;}
.x49_c00341{left:582.052026px;}
.x56_c00341{left:585.000857px;}
.xa5_c00341{left:586.710000px;}
.x9c_c00341{left:588.870000px;}
.x37_c00341{left:590.956296px;}
.x1c_c00341{left:591.999000px;}
.xb9_c00341{left:594.270000px;}
.xbf_c00341{left:596.430000px;}
.x24_c00341{left:600.440604px;}
.x94_c00341{left:601.560000px;}
.x4a_c00341{left:604.730841px;}
.x5d_c00341{left:606.267026px;}
.x41_c00341{left:609.317643px;}
.x57_c00341{left:613.082043px;}
.xab_c00341{left:616.680000px;}
.xba_c00341{left:626.130000px;}
.x78_c00341{left:627.506205px;}
.xb_c00341{left:633.420000px;}
.xb1_c00341{left:645.030000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.fs14_c00341{font-size:52.266667pt;}
.fs0_c00341{font-size:54.159338pt;}
.fs11_c00341{font-size:55.069420pt;}
.fs8_c00341{font-size:57.872337pt;}
.fs17_c00341{font-size:58.800000pt;}
.fsd_c00341{font-size:59.736320pt;}
.fsc_c00341{font-size:59.736947pt;}
.fs5_c00341{font-size:59.739187pt;}
.fs15_c00341{font-size:60.666667pt;}
.fs9_c00341{font-size:60.670337pt;}
.fs3_c00341{font-size:60.672612pt;}
.fs18_c00341{font-size:61.600000pt;}
.fsf_c00341{font-size:61.603080pt;}
.fs12_c00341{font-size:62.533333pt;}
.fse_c00341{font-size:62.536460pt;}
.fsb_c00341{font-size:62.537116pt;}
.fs4_c00341{font-size:62.539461pt;}
.fs13_c00341{font-size:63.466667pt;}
.fs10_c00341{font-size:63.469840pt;}
.fsa_c00341{font-size:63.470506pt;}
.fs7_c00341{font-size:63.472886pt;}
.fs6_c00341{font-size:64.406311pt;}
.fs16_c00341{font-size:65.333333pt;}
.fs1_c00341{font-size:77.503880pt;}
.fs2_c00341{font-size:107.352705pt;}
.y0_c00341{bottom:0.000000pt;}
.yca_c00341{bottom:149.305333pt;}
.yc9_c00341{bottom:169.257333pt;}
.yc8_c00341{bottom:189.385333pt;}
.yc7_c00341{bottom:209.545333pt;}
.yc6_c00341{bottom:229.917333pt;}
.yc5_c00341{bottom:250.500000pt;}
.yc4_c00341{bottom:270.404000pt;}
.yc3_c00341{bottom:290.802667pt;}
.yc2_c00341{bottom:311.165333pt;}
.yc1_c00341{bottom:331.750667pt;}
.yc0_c00341{bottom:352.392000pt;}
.ybf_c00341{bottom:372.742667pt;}
.ybe_c00341{bottom:392.668000pt;}
.ybd_c00341{bottom:413.304000pt;}
.ybc_c00341{bottom:433.600000pt;}
.yba_c00341{bottom:453.991080pt;}
.yb9_c00341{bottom:453.991093pt;}
.ybb_c00341{bottom:453.991333pt;}
.yb8_c00341{bottom:453.991640pt;}
.yb6_c00341{bottom:453.991693pt;}
.yb7_c00341{bottom:453.992200pt;}
.yb5_c00341{bottom:453.992253pt;}
.ya9_c00341{bottom:473.518213pt;}
.yaa_c00341{bottom:473.858907pt;}
.yab_c00341{bottom:474.198173pt;}
.yac_c00341{bottom:474.446787pt;}
.yad_c00341{bottom:474.591880pt;}
.yae_c00341{bottom:474.859040pt;}
.yaf_c00341{bottom:475.343240pt;}
.yb0_c00341{bottom:475.479000pt;}
.yb1_c00341{bottom:475.606987pt;}
.yb2_c00341{bottom:475.742800pt;}
.yb3_c00341{bottom:476.089013pt;}
.yb4_c00341{bottom:476.340680pt;}
.ya3_c00341{bottom:495.429080pt;}
.ya4_c00341{bottom:495.429600pt;}
.ya2_c00341{bottom:495.429627pt;}
.ya8_c00341{bottom:495.429773pt;}
.ya7_c00341{bottom:495.429813pt;}
.ya5_c00341{bottom:495.429853pt;}
.ya6_c00341{bottom:495.430107pt;}
.ya1_c00341{bottom:495.430187pt;}
.y9f_c00341{bottom:495.430227pt;}
.ya0_c00341{bottom:495.430467pt;}
.y9e_c00341{bottom:495.430520pt;}
.y93_c00341{bottom:514.080480pt;}
.y94_c00341{bottom:514.251173pt;}
.y95_c00341{bottom:514.512613pt;}
.y96_c00341{bottom:514.838880pt;}
.y97_c00341{bottom:515.123427pt;}
.y98_c00341{bottom:515.387520pt;}
.y99_c00341{bottom:515.825080pt;}
.y9a_c00341{bottom:516.154947pt;}
.y9b_c00341{bottom:516.395320pt;}
.y9c_c00341{bottom:517.082533pt;}
.y9d_c00341{bottom:517.343573pt;}
.y87_c00341{bottom:534.001333pt;}
.y88_c00341{bottom:534.236600pt;}
.y89_c00341{bottom:534.495840pt;}
.y8a_c00341{bottom:534.807827pt;}
.y8b_c00341{bottom:535.031013pt;}
.y8c_c00341{bottom:535.604707pt;}
.y8d_c00341{bottom:535.938213pt;}
.y8e_c00341{bottom:536.158933pt;}
.y8f_c00341{bottom:536.425587pt;}
.y90_c00341{bottom:537.085560pt;}
.y91_c00341{bottom:537.366373pt;}
.y92_c00341{bottom:537.781573pt;}
.y7c_c00341{bottom:554.158245pt;}
.y7d_c00341{bottom:554.781524pt;}
.y7e_c00341{bottom:555.071191pt;}
.y7f_c00341{bottom:555.316911pt;}
.y80_c00341{bottom:555.574072pt;}
.y81_c00341{bottom:556.234255pt;}
.y82_c00341{bottom:556.513037pt;}
.y83_c00341{bottom:556.966327pt;}
.y84_c00341{bottom:557.280651pt;}
.y85_c00341{bottom:557.474579pt;}
.y86_c00341{bottom:557.682749pt;}
.y70_c00341{bottom:574.558921pt;}
.y71_c00341{bottom:575.032393pt;}
.y72_c00341{bottom:575.618283pt;}
.y73_c00341{bottom:575.814308pt;}
.y74_c00341{bottom:576.004612pt;}
.y75_c00341{bottom:576.556749pt;}
.y76_c00341{bottom:576.729569pt;}
.y77_c00341{bottom:577.077688pt;}
.y78_c00341{bottom:577.247912pt;}
.y79_c00341{bottom:577.725507pt;}
.y7a_c00341{bottom:578.193347pt;}
.y7b_c00341{bottom:578.579353pt;}
.y63_c00341{bottom:594.481256pt;}
.y64_c00341{bottom:595.045040pt;}
.y65_c00341{bottom:595.367401pt;}
.y66_c00341{bottom:595.894580pt;}
.y67_c00341{bottom:596.138936pt;}
.y68_c00341{bottom:596.769155pt;}
.y69_c00341{bottom:597.008348pt;}
.y6a_c00341{bottom:597.694119pt;}
.y6b_c00341{bottom:598.072223pt;}
.y6c_c00341{bottom:598.337432pt;}
.y6d_c00341{bottom:598.764152pt;}
.y6e_c00341{bottom:599.155265pt;}
.y6f_c00341{bottom:599.455173pt;}
.y5a_c00341{bottom:614.881333pt;}
.y5b_c00341{bottom:615.512660pt;}
.y5c_c00341{bottom:616.267363pt;}
.y5d_c00341{bottom:616.462796pt;}
.y5e_c00341{bottom:617.117501pt;}
.y5f_c00341{bottom:617.537320pt;}
.y60_c00341{bottom:618.329364pt;}
.y61_c00341{bottom:618.606549pt;}
.y62_c00341{bottom:619.248172pt;}
.y4d_c00341{bottom:635.029757pt;}
.y4e_c00341{bottom:635.348365pt;}
.y4f_c00341{bottom:635.915923pt;}
.y50_c00341{bottom:636.144075pt;}
.y51_c00341{bottom:636.642971pt;}
.y52_c00341{bottom:637.137760pt;}
.y53_c00341{bottom:637.320296pt;}
.y54_c00341{bottom:638.038448pt;}
.y55_c00341{bottom:638.537288pt;}
.y56_c00341{bottom:638.846077pt;}
.y57_c00341{bottom:639.473083pt;}
.y58_c00341{bottom:639.987781pt;}
.y59_c00341{bottom:640.250003pt;}
.y42_c00341{bottom:654.951576pt;}
.y43_c00341{bottom:655.693941pt;}
.y44_c00341{bottom:656.164685pt;}
.y45_c00341{bottom:656.430267pt;}
.y46_c00341{bottom:656.677899pt;}
.y47_c00341{bottom:657.224565pt;}
.y48_c00341{bottom:657.441760pt;}
.y49_c00341{bottom:657.938211pt;}
.y4a_c00341{bottom:658.618765pt;}
.y4b_c00341{bottom:659.619936pt;}
.y4c_c00341{bottom:660.228320pt;}
.y39_c00341{bottom:675.595296pt;}
.y3a_c00341{bottom:676.096011pt;}
.y3b_c00341{bottom:676.706344pt;}
.y3c_c00341{bottom:677.320757pt;}
.y3d_c00341{bottom:677.604856pt;}
.y3e_c00341{bottom:678.105459pt;}
.y3f_c00341{bottom:678.919741pt;}
.y40_c00341{bottom:679.294640pt;}
.y41_c00341{bottom:680.279797pt;}
.y2c_c00341{bottom:695.037605pt;}
.y2d_c00341{bottom:695.619576pt;}
.y2e_c00341{bottom:696.261224pt;}
.y2f_c00341{bottom:696.590560pt;}
.y30_c00341{bottom:697.121664pt;}
.y31_c00341{bottom:697.870309pt;}
.y32_c00341{bottom:698.310432pt;}
.y33_c00341{bottom:698.727035pt;}
.y34_c00341{bottom:699.100051pt;}
.y35_c00341{bottom:699.319272pt;}
.y36_c00341{bottom:699.604984pt;}
.y37_c00341{bottom:700.132448pt;}
.y38_c00341{bottom:700.636392pt;}
.y20_c00341{bottom:715.679237pt;}
.y21_c00341{bottom:715.899448pt;}
.y22_c00341{bottom:716.207504pt;}
.y23_c00341{bottom:716.446232pt;}
.y24_c00341{bottom:717.118307pt;}
.y25_c00341{bottom:717.797531pt;}
.y26_c00341{bottom:719.237981pt;}
.y27_c00341{bottom:719.712581pt;}
.y28_c00341{bottom:720.025173pt;}
.y29_c00341{bottom:720.331288pt;}
.y2a_c00341{bottom:720.808035pt;}
.y2b_c00341{bottom:721.275168pt;}
.y13_c00341{bottom:735.842667pt;}
.y14_c00341{bottom:736.615429pt;}
.y15_c00341{bottom:736.874541pt;}
.y16_c00341{bottom:737.308261pt;}
.y17_c00341{bottom:737.797683pt;}
.y18_c00341{bottom:738.245739pt;}
.y19_c00341{bottom:739.045288pt;}
.y1a_c00341{bottom:739.389427pt;}
.y1b_c00341{bottom:739.860984pt;}
.y1c_c00341{bottom:740.322051pt;}
.y1d_c00341{bottom:740.598243pt;}
.y1e_c00341{bottom:741.123635pt;}
.y1f_c00341{bottom:741.339403pt;}
.y10_c00341{bottom:776.888000pt;}
.y11_c00341{bottom:778.230869pt;}
.y12_c00341{bottom:780.214393pt;}
.yc_c00341{bottom:807.617335pt;}
.yd_c00341{bottom:809.971856pt;}
.ye_c00341{bottom:814.495431pt;}
.yf_c00341{bottom:817.568161pt;}
.y1_c00341{bottom:821.298667pt;}
.y2_c00341{bottom:822.297528pt;}
.y3_c00341{bottom:823.276756pt;}
.y4_c00341{bottom:824.609715pt;}
.y5_c00341{bottom:826.312193pt;}
.y6_c00341{bottom:827.764357pt;}
.y7_c00341{bottom:829.515857pt;}
.y8_c00341{bottom:830.691749pt;}
.y9_c00341{bottom:832.651280pt;}
.ya_c00341{bottom:834.496441pt;}
.yb_c00341{bottom:836.093024pt;}
.h16_c00341{height:52.266667pt;}
.h2_c00341{height:54.159338pt;}
.h13_c00341{height:55.069420pt;}
.ha_c00341{height:57.872337pt;}
.h19_c00341{height:58.800000pt;}
.hf_c00341{height:59.736320pt;}
.he_c00341{height:59.736947pt;}
.h7_c00341{height:59.739187pt;}
.h17_c00341{height:60.666667pt;}
.hb_c00341{height:60.670337pt;}
.h5_c00341{height:60.672612pt;}
.h1a_c00341{height:61.600000pt;}
.h11_c00341{height:61.603080pt;}
.h14_c00341{height:62.533333pt;}
.h10_c00341{height:62.536460pt;}
.hd_c00341{height:62.537116pt;}
.h6_c00341{height:62.539461pt;}
.h15_c00341{height:63.466667pt;}
.h12_c00341{height:63.469840pt;}
.hc_c00341{height:63.470506pt;}
.h9_c00341{height:63.472886pt;}
.h8_c00341{height:64.406311pt;}
.h18_c00341{height:65.333333pt;}
.h3_c00341{height:77.503880pt;}
.h4_c00341{height:107.352705pt;}
.h0_c00341{height:896.400000pt;}
.h1_c00341{height:896.666667pt;}
.w0_c00341{width:618.666667pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:85.802667pt;}
.x2_c00341{left:118.024000pt;}
.x51_c00341{left:130.489044pt;}
.xf_c00341{left:133.868000pt;}
.x30_c00341{left:134.771528pt;}
.x38_c00341{left:135.747341pt;}
.x58_c00341{left:136.920941pt;}
.x80_c00341{left:138.003653pt;}
.x9d_c00341{left:139.440000pt;}
.xb2_c00341{left:140.880000pt;}
.xbc_c00341{left:142.080000pt;}
.xc0_c00341{left:143.280000pt;}
.x3_c00341{left:149.612000pt;}
.x63_c00341{left:154.913333pt;}
.x6c_c00341{left:158.228480pt;}
.x42_c00341{left:160.463909pt;}
.xac_c00341{left:162.240000pt;}
.xbe_c00341{left:164.880000pt;}
.xc1_c00341{left:167.040000pt;}
.xc_c00341{left:170.143768pt;}
.x1d_c00341{left:171.748981pt;}
.x25_c00341{left:175.852627pt;}
.x52_c00341{left:177.499197pt;}
.x64_c00341{left:178.440000pt;}
.x95_c00341{left:179.760000pt;}
.x88_c00341{left:181.680000pt;}
.x59_c00341{left:184.206788pt;}
.x79_c00341{left:186.341840pt;}
.x12_c00341{left:188.794667pt;}
.x6d_c00341{left:190.906467pt;}
.x4_c00341{left:192.610667pt;}
.x81_c00341{left:194.886680pt;}
.x74_c00341{left:197.525933pt;}
.x5e_c00341{left:199.322016pt;}
.x89_c00341{left:201.600000pt;}
.x10_c00341{left:204.545333pt;}
.x13_c00341{left:207.302667pt;}
.xb6_c00341{left:208.560000pt;}
.x96_c00341{left:209.520000pt;}
.xa2_c00341{left:220.320000pt;}
.x26_c00341{left:221.684627pt;}
.xa6_c00341{left:225.360000pt;}
.xb3_c00341{left:226.320000pt;}
.x31_c00341{left:227.372789pt;}
.x39_c00341{left:229.065981pt;}
.x6e_c00341{left:231.667280pt;}
.x9e_c00341{left:234.240000pt;}
.x65_c00341{left:235.562667pt;}
.x1e_c00341{left:236.806315pt;}
.x14_c00341{left:238.282667pt;}
.x85_c00341{left:241.200000pt;}
.x5a_c00341{left:242.803433pt;}
.xc2_c00341{left:244.080000pt;}
.x27_c00341{left:245.208627pt;}
.x8f_c00341{left:246.240000pt;}
.x5_c00341{left:247.529333pt;}
.x3a_c00341{left:249.464928pt;}
.x5f_c00341{left:252.842603pt;}
.xb7_c00341{left:255.120000pt;}
.x66_c00341{left:257.881333pt;}
.x43_c00341{left:260.079976pt;}
.x4b_c00341{left:261.972000pt;}
.xa7_c00341{left:266.160000pt;}
.x6f_c00341{left:267.189320pt;}
.x3b_c00341{left:268.486523pt;}
.x7a_c00341{left:270.332360pt;}
.x15_c00341{left:273.241333pt;}
.x32_c00341{left:278.594227pt;}
.x4c_c00341{left:279.738667pt;}
.x5b_c00341{left:281.439859pt;}
.x28_c00341{left:283.144627pt;}
.x1f_c00341{left:285.322315pt;}
.xad_c00341{left:286.320000pt;}
.x8a_c00341{left:289.440000pt;}
.x7b_c00341{left:290.975640pt;}
.xb8_c00341{left:293.280000pt;}
.x6_c00341{left:294.373333pt;}
.xa8_c00341{left:296.880000pt;}
.x44_c00341{left:298.184517pt;}
.x70_c00341{left:300.132640pt;}
.x33_c00341{left:302.316232pt;}
.x8b_c00341{left:304.080000pt;}
.x16_c00341{left:305.245333pt;}
.xb4_c00341{left:306.720000pt;}
.x11_c00341{left:308.941333pt;}
.x3c_c00341{left:310.487101pt;}
.x45_c00341{left:312.175371pt;}
.x9f_c00341{left:313.200000pt;}
.x67_c00341{left:315.250667pt;}
.x90_c00341{left:316.800000pt;}
.x82_c00341{left:319.440000pt;}
.x53_c00341{left:321.265628pt;}
.x97_c00341{left:324.480000pt;}
.x3d_c00341{left:327.239344pt;}
.x7c_c00341{left:329.159453pt;}
.xd_c00341{left:331.693439pt;}
.x86_c00341{left:333.840000pt;}
.x29_c00341{left:336.619293pt;}
.x4d_c00341{left:339.257333pt;}
.x54_c00341{left:341.192075pt;}
.x34_c00341{left:344.074741pt;}
.x75_c00341{left:346.092800pt;}
.x68_c00341{left:348.601333pt;}
.x7_c00341{left:350.873333pt;}
.x98_c00341{left:352.560000pt;}
.x5c_c00341{left:353.891317pt;}
.x71_c00341{left:354.823067pt;}
.x8c_c00341{left:356.160000pt;}
.xbd_c00341{left:359.280000pt;}
.x91_c00341{left:360.480000pt;}
.x17_c00341{left:362.356000pt;}
.x3e_c00341{left:365.462552pt;}
.x2a_c00341{left:368.056627pt;}
.x69_c00341{left:370.673333pt;}
.x60_c00341{left:372.370575pt;}
.x99_c00341{left:374.160000pt;}
.x4e_c00341{left:377.422667pt;}
.x8d_c00341{left:380.400000pt;}
.xa0_c00341{left:383.280000pt;}
.x18_c00341{left:386.937333pt;}
.x8_c00341{left:388.805333pt;}
.x9a_c00341{left:391.920000pt;}
.x72_c00341{left:396.077227pt;}
.x2b_c00341{left:397.813960pt;}
.x87_c00341{left:402.480000pt;}
.xbb_c00341{left:403.440000pt;}
.x46_c00341{left:405.771344pt;}
.x76_c00341{left:407.776293pt;}
.x35_c00341{left:411.953979pt;}
.x92_c00341{left:414.240000pt;}
.x83_c00341{left:415.200000pt;}
.x3f_c00341{left:417.788613pt;}
.x19_c00341{left:420.620000pt;}
.x20_c00341{left:422.111648pt;}
.x2c_c00341{left:424.457960pt;}
.x73_c00341{left:426.115160pt;}
.x9b_c00341{left:427.680000pt;}
.x47_c00341{left:429.542347pt;}
.xa9_c00341{left:434.880000pt;}
.x7d_c00341{left:435.957320pt;}
.xae_c00341{left:438.960000pt;}
.x2d_c00341{left:440.116627pt;}
.xe_c00341{left:441.447648pt;}
.x36_c00341{left:443.209523pt;}
.x21_c00341{left:444.439648pt;}
.x4f_c00341{left:449.426667pt;}
.x9_c00341{left:452.016000pt;}
.x1a_c00341{left:453.553333pt;}
.x7e_c00341{left:455.405907pt;}
.x2e_c00341{left:460.524627pt;}
.xa3_c00341{left:462.000000pt;}
.x6a_c00341{left:463.336000pt;}
.x77_c00341{left:465.378053pt;}
.x22_c00341{left:466.304981pt;}
.x61_c00341{left:468.632979pt;}
.x84_c00341{left:471.120000pt;}
.x8e_c00341{left:472.080000pt;}
.x1b_c00341{left:473.281333pt;}
.x50_c00341{left:474.625333pt;}
.x48_c00341{left:477.757685pt;}
.xaf_c00341{left:479.280000pt;}
.xa4_c00341{left:480.480000pt;}
.x93_c00341{left:481.680000pt;}
.x55_c00341{left:487.354447pt;}
.x62_c00341{left:489.497213pt;}
.x6b_c00341{left:491.417333pt;}
.xaa_c00341{left:492.960000pt;}
.x40_c00341{left:494.825696pt;}
.x2f_c00341{left:498.200627pt;}
.x23_c00341{left:500.358315pt;}
.x7f_c00341{left:504.828720pt;}
.xa1_c00341{left:506.640000pt;}
.xa_c00341{left:511.537333pt;}
.xb5_c00341{left:514.560000pt;}
.xb0_c00341{left:516.240000pt;}
.x49_c00341{left:517.379579pt;}
.x56_c00341{left:520.000761pt;}
.xa5_c00341{left:521.520000pt;}
.x9c_c00341{left:523.440000pt;}
.x37_c00341{left:525.294485pt;}
.x1c_c00341{left:526.221333pt;}
.xb9_c00341{left:528.240000pt;}
.xbf_c00341{left:530.160000pt;}
.x24_c00341{left:533.724981pt;}
.x94_c00341{left:534.720000pt;}
.x4a_c00341{left:537.538525pt;}
.x5d_c00341{left:538.904023pt;}
.x41_c00341{left:541.615683pt;}
.x57_c00341{left:544.961816pt;}
.xab_c00341{left:548.160000pt;}
.xba_c00341{left:556.560000pt;}
.x78_c00341{left:557.783293pt;}
.xb_c00341{left:563.040000pt;}
.xb1_c00341{left:573.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_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;}
.me_c00342{transform:matrix(0.009559,-0.000124,0.003250,0.249979,0,0);-ms-transform:matrix(0.009559,-0.000124,0.003250,0.249979,0,0);-webkit-transform:matrix(0.009559,-0.000124,0.003250,0.249979,0,0);}
.m29_c00342{transform:matrix(0.013114,-0.000144,0.002750,0.249985,0,0);-ms-transform:matrix(0.013114,-0.000144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.013114,-0.000144,0.002750,0.249985,0,0);}
.m12c_c00342{transform:matrix(0.014723,-0.000265,0.004499,0.249960,0,0);-ms-transform:matrix(0.014723,-0.000265,0.004499,0.249960,0,0);-webkit-transform:matrix(0.014723,-0.000265,0.004499,0.249960,0,0);}
.m19_c00342{transform:matrix(0.019860,-0.000437,0.005499,0.249940,0,0);-ms-transform:matrix(0.019860,-0.000437,0.005499,0.249940,0,0);-webkit-transform:matrix(0.019860,-0.000437,0.005499,0.249940,0,0);}
.m8_c00342{transform:matrix(0.033107,-0.000430,0.003250,0.249979,0,0);-ms-transform:matrix(0.033107,-0.000430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.033107,-0.000430,0.003250,0.249979,0,0);}
.m16_c00342{transform:matrix(0.034032,-0.000749,0.005499,0.249940,0,0);-ms-transform:matrix(0.034032,-0.000749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.034032,-0.000749,0.005499,0.249940,0,0);}
.m3_c00342{transform:matrix(0.049451,-0.000643,0.003250,0.249979,0,0);-ms-transform:matrix(0.049451,-0.000643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.049451,-0.000643,0.003250,0.249979,0,0);}
.m14_c00342{transform:matrix(0.055462,-0.001220,0.005499,0.249940,0,0);-ms-transform:matrix(0.055462,-0.001220,0.005499,0.249940,0,0);-webkit-transform:matrix(0.055462,-0.001220,0.005499,0.249940,0,0);}
.ma_c00342{transform:matrix(0.104701,-0.001361,0.003250,0.249979,0,0);-ms-transform:matrix(0.104701,-0.001361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.104701,-0.001361,0.003250,0.249979,0,0);}
.m87_c00342{transform:matrix(0.115544,-0.001618,0.003500,0.249976,0,0);-ms-transform:matrix(0.115544,-0.001618,0.003500,0.249976,0,0);-webkit-transform:matrix(0.115544,-0.001618,0.003500,0.249976,0,0);}
.me9_c00342{transform:matrix(0.133770,-0.002007,0.003750,0.249972,0,0);-ms-transform:matrix(0.133770,-0.002007,0.003750,0.249972,0,0);-webkit-transform:matrix(0.133770,-0.002007,0.003750,0.249972,0,0);}
.m27_c00342{transform:matrix(0.135767,-0.002987,0.005499,0.249940,0,0);-ms-transform:matrix(0.135767,-0.002987,0.005499,0.249940,0,0);-webkit-transform:matrix(0.135767,-0.002987,0.005499,0.249940,0,0);}
.mba_c00342{transform:matrix(0.140696,-0.001970,0.003500,0.249976,0,0);-ms-transform:matrix(0.140696,-0.001970,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140696,-0.001970,0.003500,0.249976,0,0);}
.mfc_c00342{transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);-ms-transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);}
.m89_c00342{transform:matrix(0.142031,-0.001988,0.003500,0.249976,0,0);-ms-transform:matrix(0.142031,-0.001988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.142031,-0.001988,0.003500,0.249976,0,0);}
.m64_c00342{transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);-ms-transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);}
.mfd_c00342{transform:matrix(0.145659,-0.002476,0.004249,0.249964,0,0);-ms-transform:matrix(0.145659,-0.002476,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145659,-0.002476,0.004249,0.249964,0,0);}
.md8_c00342{transform:matrix(0.146634,-0.002200,0.003750,0.249972,0,0);-ms-transform:matrix(0.146634,-0.002200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146634,-0.002200,0.003750,0.249972,0,0);}
.m105_c00342{transform:matrix(0.146819,-0.002496,0.004249,0.249964,0,0);-ms-transform:matrix(0.146819,-0.002496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146819,-0.002496,0.004249,0.249964,0,0);}
.maf_c00342{transform:matrix(0.147686,-0.002068,0.003500,0.249976,0,0);-ms-transform:matrix(0.147686,-0.002068,0.003500,0.249976,0,0);-webkit-transform:matrix(0.147686,-0.002068,0.003500,0.249976,0,0);}
.meb_c00342{transform:matrix(0.150183,-0.002253,0.003750,0.249972,0,0);-ms-transform:matrix(0.150183,-0.002253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150183,-0.002253,0.003750,0.249972,0,0);}
.mbb_c00342{transform:matrix(0.150300,-0.002104,0.003500,0.249976,0,0);-ms-transform:matrix(0.150300,-0.002104,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150300,-0.002104,0.003500,0.249976,0,0);}
.m56_c00342{transform:matrix(0.151021,-0.001661,0.002750,0.249985,0,0);-ms-transform:matrix(0.151021,-0.001661,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151021,-0.001661,0.002750,0.249985,0,0);}
.md2_c00342{transform:matrix(0.152195,-0.002131,0.003500,0.249976,0,0);-ms-transform:matrix(0.152195,-0.002131,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152195,-0.002131,0.003500,0.249976,0,0);}
.mff_c00342{transform:matrix(0.153323,-0.002606,0.004249,0.249964,0,0);-ms-transform:matrix(0.153323,-0.002606,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153323,-0.002606,0.004249,0.249964,0,0);}
.m100_c00342{transform:matrix(0.153418,-0.002608,0.004249,0.249964,0,0);-ms-transform:matrix(0.153418,-0.002608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153418,-0.002608,0.004249,0.249964,0,0);}
.mca_c00342{transform:matrix(0.153670,-0.002151,0.003500,0.249976,0,0);-ms-transform:matrix(0.153670,-0.002151,0.003500,0.249976,0,0);-webkit-transform:matrix(0.153670,-0.002151,0.003500,0.249976,0,0);}
.m49_c00342{transform:matrix(0.153801,-0.001692,0.002750,0.249985,0,0);-ms-transform:matrix(0.153801,-0.001692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153801,-0.001692,0.002750,0.249985,0,0);}
.m11f_c00342{transform:matrix(0.153905,-0.002770,0.004499,0.249960,0,0);-ms-transform:matrix(0.153905,-0.002770,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153905,-0.002770,0.004499,0.249960,0,0);}
.m12_c00342{transform:matrix(0.154053,-0.003389,0.005499,0.249940,0,0);-ms-transform:matrix(0.154053,-0.003389,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154053,-0.003389,0.005499,0.249940,0,0);}
.m57_c00342{transform:matrix(0.154596,-0.001701,0.002750,0.249985,0,0);-ms-transform:matrix(0.154596,-0.001701,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154596,-0.001701,0.002750,0.249985,0,0);}
.m115_c00342{transform:matrix(0.155240,-0.002794,0.004499,0.249960,0,0);-ms-transform:matrix(0.155240,-0.002794,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155240,-0.002794,0.004499,0.249960,0,0);}
.m75_c00342{transform:matrix(0.155286,-0.001708,0.002750,0.249985,0,0);-ms-transform:matrix(0.155286,-0.001708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155286,-0.001708,0.002750,0.249985,0,0);}
.m104_c00342{transform:matrix(0.156177,-0.002655,0.004249,0.249964,0,0);-ms-transform:matrix(0.156177,-0.002655,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156177,-0.002655,0.004249,0.249964,0,0);}
.m10e_c00342{transform:matrix(0.156200,-0.002812,0.004499,0.249960,0,0);-ms-transform:matrix(0.156200,-0.002812,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156200,-0.002812,0.004499,0.249960,0,0);}
.med_c00342{transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);-ms-transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156967,-0.002355,0.003750,0.249972,0,0);}
.mdc_c00342{transform:matrix(0.157552,-0.002363,0.003750,0.249972,0,0);-ms-transform:matrix(0.157552,-0.002363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157552,-0.002363,0.003750,0.249972,0,0);}
.ma6_c00342{transform:matrix(0.159854,-0.002238,0.003500,0.249976,0,0);-ms-transform:matrix(0.159854,-0.002238,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159854,-0.002238,0.003500,0.249976,0,0);}
.mf9_c00342{transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);-ms-transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159932,-0.002719,0.004249,0.249964,0,0);}
.m1b_c00342{transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);-ms-transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160266,-0.003526,0.005499,0.249940,0,0);}
.m9d_c00342{transform:matrix(0.160324,-0.002245,0.003500,0.249976,0,0);-ms-transform:matrix(0.160324,-0.002245,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160324,-0.002245,0.003500,0.249976,0,0);}
.m44_c00342{transform:matrix(0.160327,-0.002405,0.003750,0.249972,0,0);-ms-transform:matrix(0.160327,-0.002405,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160327,-0.002405,0.003750,0.249972,0,0);}
.m61_c00342{transform:matrix(0.160640,-0.001767,0.002750,0.249985,0,0);-ms-transform:matrix(0.160640,-0.001767,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160640,-0.001767,0.002750,0.249985,0,0);}
.m62_c00342{transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);-ms-transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160735,-0.001768,0.002750,0.249985,0,0);}
.m88_c00342{transform:matrix(0.162044,-0.002269,0.003500,0.249976,0,0);-ms-transform:matrix(0.162044,-0.002269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162044,-0.002269,0.003500,0.249976,0,0);}
.m131_c00342{transform:matrix(0.162519,-0.002600,0.003999,0.249968,0,0);-ms-transform:matrix(0.162519,-0.002600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162519,-0.002600,0.003999,0.249968,0,0);}
.mcf_c00342{transform:matrix(0.163019,-0.002282,0.003500,0.249976,0,0);-ms-transform:matrix(0.163019,-0.002282,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163019,-0.002282,0.003500,0.249976,0,0);}
.mcd_c00342{transform:matrix(0.163229,-0.002285,0.003500,0.249976,0,0);-ms-transform:matrix(0.163229,-0.002285,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163229,-0.002285,0.003500,0.249976,0,0);}
.mfb_c00342{transform:matrix(0.163366,-0.002777,0.004249,0.249964,0,0);-ms-transform:matrix(0.163366,-0.002777,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163366,-0.002777,0.004249,0.249964,0,0);}
.m5c_c00342{transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);-ms-transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);}
.m91_c00342{transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);-ms-transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163704,-0.002292,0.003500,0.249976,0,0);}
.mb2_c00342{transform:matrix(0.163884,-0.002294,0.003500,0.249976,0,0);-ms-transform:matrix(0.163884,-0.002294,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163884,-0.002294,0.003500,0.249976,0,0);}
.ma3_c00342{transform:matrix(0.164319,-0.002300,0.003500,0.249976,0,0);-ms-transform:matrix(0.164319,-0.002300,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164319,-0.002300,0.003500,0.249976,0,0);}
.m3c_c00342{transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);-ms-transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);}
.mae_c00342{transform:matrix(0.164594,-0.002304,0.003500,0.249976,0,0);-ms-transform:matrix(0.164594,-0.002304,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164594,-0.002304,0.003500,0.249976,0,0);}
.m51_c00342{transform:matrix(0.164735,-0.001812,0.002750,0.249985,0,0);-ms-transform:matrix(0.164735,-0.001812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164735,-0.001812,0.002750,0.249985,0,0);}
.md7_c00342{transform:matrix(0.165111,-0.002477,0.003750,0.249972,0,0);-ms-transform:matrix(0.165111,-0.002477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165111,-0.002477,0.003750,0.249972,0,0);}
.me5_c00342{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);}
.m82_c00342{transform:matrix(0.166109,-0.002326,0.003500,0.249976,0,0);-ms-transform:matrix(0.166109,-0.002326,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166109,-0.002326,0.003500,0.249976,0,0);}
.m1e_c00342{transform:matrix(0.166325,-0.003659,0.005499,0.249940,0,0);-ms-transform:matrix(0.166325,-0.003659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166325,-0.003659,0.005499,0.249940,0,0);}
.md5_c00342{transform:matrix(0.166471,-0.002497,0.003750,0.249972,0,0);-ms-transform:matrix(0.166471,-0.002497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166471,-0.002497,0.003750,0.249972,0,0);}
.m9b_c00342{transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);-ms-transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166739,-0.002334,0.003500,0.249976,0,0);}
.m90_c00342{transform:matrix(0.166939,-0.002337,0.003500,0.249976,0,0);-ms-transform:matrix(0.166939,-0.002337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166939,-0.002337,0.003500,0.249976,0,0);}
.m6a_c00342{transform:matrix(0.168010,-0.001848,0.002750,0.249985,0,0);-ms-transform:matrix(0.168010,-0.001848,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168010,-0.001848,0.002750,0.249985,0,0);}
.mcb_c00342{transform:matrix(0.169023,-0.002366,0.003500,0.249976,0,0);-ms-transform:matrix(0.169023,-0.002366,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169023,-0.002366,0.003500,0.249976,0,0);}
.m8d_c00342{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);}
.m93_c00342{transform:matrix(0.169098,-0.002367,0.003500,0.249976,0,0);-ms-transform:matrix(0.169098,-0.002367,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169098,-0.002367,0.003500,0.249976,0,0);}
.mbf_c00342{transform:matrix(0.169643,-0.002375,0.003500,0.249976,0,0);-ms-transform:matrix(0.169643,-0.002375,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169643,-0.002375,0.003500,0.249976,0,0);}
.mc9_c00342{transform:matrix(0.169788,-0.002377,0.003500,0.249976,0,0);-ms-transform:matrix(0.169788,-0.002377,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169788,-0.002377,0.003500,0.249976,0,0);}
.mf4_c00342{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);}
.m22_c00342{transform:matrix(0.170699,-0.003755,0.005499,0.249940,0,0);-ms-transform:matrix(0.170699,-0.003755,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170699,-0.003755,0.005499,0.249940,0,0);}
.m6b_c00342{transform:matrix(0.170820,-0.001879,0.002750,0.249985,0,0);-ms-transform:matrix(0.170820,-0.001879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170820,-0.001879,0.002750,0.249985,0,0);}
.m138_c00342{transform:matrix(0.170838,-0.002733,0.003999,0.249968,0,0);-ms-transform:matrix(0.170838,-0.002733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170838,-0.002733,0.003999,0.249968,0,0);}
.m109_c00342{transform:matrix(0.171700,-0.002919,0.004249,0.249964,0,0);-ms-transform:matrix(0.171700,-0.002919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171700,-0.002919,0.004249,0.249964,0,0);}
.m54_c00342{transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);-ms-transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);}
.md9_c00342{transform:matrix(0.172216,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172216,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172216,-0.002583,0.003750,0.249972,0,0);}
.m9a_c00342{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);}
.m12f_c00342{transform:matrix(0.172423,-0.002759,0.003999,0.249968,0,0);-ms-transform:matrix(0.172423,-0.002759,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172423,-0.002759,0.003999,0.249968,0,0);}
.m40_c00342{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);}
.m68_c00342{transform:matrix(0.172760,-0.001900,0.002750,0.249985,0,0);-ms-transform:matrix(0.172760,-0.001900,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172760,-0.001900,0.002750,0.249985,0,0);}
.m58_c00342{transform:matrix(0.172835,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172835,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172835,-0.001901,0.002750,0.249985,0,0);}
.m8e_c00342{transform:matrix(0.173068,-0.002423,0.003500,0.249976,0,0);-ms-transform:matrix(0.173068,-0.002423,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173068,-0.002423,0.003500,0.249976,0,0);}
.m130_c00342{transform:matrix(0.173098,-0.002770,0.003999,0.249968,0,0);-ms-transform:matrix(0.173098,-0.002770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173098,-0.002770,0.003999,0.249968,0,0);}
.m10a_c00342{transform:matrix(0.173455,-0.002949,0.004249,0.249964,0,0);-ms-transform:matrix(0.173455,-0.002949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173455,-0.002949,0.004249,0.249964,0,0);}
.m94_c00342{transform:matrix(0.173568,-0.002430,0.003500,0.249976,0,0);-ms-transform:matrix(0.173568,-0.002430,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173568,-0.002430,0.003500,0.249976,0,0);}
.m99_c00342{transform:matrix(0.173718,-0.002432,0.003500,0.249976,0,0);-ms-transform:matrix(0.173718,-0.002432,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173718,-0.002432,0.003500,0.249976,0,0);}
.m135_c00342{transform:matrix(0.173783,-0.002781,0.003999,0.249968,0,0);-ms-transform:matrix(0.173783,-0.002781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173783,-0.002781,0.003999,0.249968,0,0);}
.m7e_c00342{transform:matrix(0.174268,-0.002440,0.003500,0.249976,0,0);-ms-transform:matrix(0.174268,-0.002440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174268,-0.002440,0.003500,0.249976,0,0);}
.m9e_c00342{transform:matrix(0.174753,-0.002447,0.003500,0.249976,0,0);-ms-transform:matrix(0.174753,-0.002447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174753,-0.002447,0.003500,0.249976,0,0);}
.m20_c00342{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);}
.me0_c00342{transform:matrix(0.175185,-0.002628,0.003750,0.249972,0,0);-ms-transform:matrix(0.175185,-0.002628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175185,-0.002628,0.003750,0.249972,0,0);}
.m43_c00342{transform:matrix(0.176095,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176095,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176095,-0.002641,0.003750,0.249972,0,0);}
.m2d_c00342{transform:matrix(0.176124,-0.001937,0.002750,0.249985,0,0);-ms-transform:matrix(0.176124,-0.001937,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176124,-0.001937,0.002750,0.249985,0,0);}
.m125_c00342{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);}
.m6f_c00342{transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);}
.m103_c00342{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);}
.m106_c00342{transform:matrix(0.176889,-0.003007,0.004249,0.249964,0,0);-ms-transform:matrix(0.176889,-0.003007,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176889,-0.003007,0.004249,0.249964,0,0);}
.m15_c00342{transform:matrix(0.177292,-0.003900,0.005499,0.249940,0,0);-ms-transform:matrix(0.177292,-0.003900,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177292,-0.003900,0.005499,0.249940,0,0);}
.md0_c00342{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);}
.m8f_c00342{transform:matrix(0.177713,-0.002488,0.003500,0.249976,0,0);-ms-transform:matrix(0.177713,-0.002488,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177713,-0.002488,0.003500,0.249976,0,0);}
.me7_c00342{transform:matrix(0.177795,-0.002667,0.003750,0.249972,0,0);-ms-transform:matrix(0.177795,-0.002667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177795,-0.002667,0.003750,0.249972,0,0);}
.m86_c00342{transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);-ms-transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);}
.m1d_c00342{transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);-ms-transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);}
.m6e_c00342{transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178289,-0.001961,0.002750,0.249985,0,0);}
.m2f_c00342{transform:matrix(0.178324,-0.001962,0.002750,0.249985,0,0);-ms-transform:matrix(0.178324,-0.001962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178324,-0.001962,0.002750,0.249985,0,0);}
.mec_c00342{transform:matrix(0.178375,-0.002676,0.003750,0.249972,0,0);-ms-transform:matrix(0.178375,-0.002676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178375,-0.002676,0.003750,0.249972,0,0);}
.m37_c00342{transform:matrix(0.178384,-0.001962,0.002750,0.249985,0,0);-ms-transform:matrix(0.178384,-0.001962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178384,-0.001962,0.002750,0.249985,0,0);}
.ma5_c00342{transform:matrix(0.178592,-0.002500,0.003500,0.249976,0,0);-ms-transform:matrix(0.178592,-0.002500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178592,-0.002500,0.003500,0.249976,0,0);}
.md1_c00342{transform:matrix(0.178602,-0.002500,0.003500,0.249976,0,0);-ms-transform:matrix(0.178602,-0.002500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178602,-0.002500,0.003500,0.249976,0,0);}
.ma8_c00342{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);}
.m112_c00342{transform:matrix(0.178976,-0.003222,0.004499,0.249960,0,0);-ms-transform:matrix(0.178976,-0.003222,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178976,-0.003222,0.004499,0.249960,0,0);}
.me8_c00342{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);}
.m108_c00342{transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);-ms-transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179354,-0.003049,0.004249,0.249964,0,0);}
.mf5_c00342{transform:matrix(0.179370,-0.002691,0.003750,0.249972,0,0);-ms-transform:matrix(0.179370,-0.002691,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179370,-0.002691,0.003750,0.249972,0,0);}
.m6c_c00342{transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);}
.m107_c00342{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);}
.m4f_c00342{transform:matrix(0.180659,-0.001987,0.002750,0.249985,0,0);-ms-transform:matrix(0.180659,-0.001987,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180659,-0.001987,0.002750,0.249985,0,0);}
.m92_c00342{transform:matrix(0.181247,-0.002537,0.003500,0.249976,0,0);-ms-transform:matrix(0.181247,-0.002537,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181247,-0.002537,0.003500,0.249976,0,0);}
.m74_c00342{transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-ms-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181484,-0.001996,0.002750,0.249985,0,0);}
.m6d_c00342{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);}
.m45_c00342{transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);-ms-transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);}
.m85_c00342{transform:matrix(0.182217,-0.002551,0.003500,0.249976,0,0);-ms-transform:matrix(0.182217,-0.002551,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182217,-0.002551,0.003500,0.249976,0,0);}
.m65_c00342{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);}
.m78_c00342{transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182584,-0.002008,0.002750,0.249985,0,0);}
.mb4_c00342{transform:matrix(0.182867,-0.002560,0.003500,0.249976,0,0);-ms-transform:matrix(0.182867,-0.002560,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182867,-0.002560,0.003500,0.249976,0,0);}
.mc5_c00342{transform:matrix(0.183072,-0.002563,0.003500,0.249976,0,0);-ms-transform:matrix(0.183072,-0.002563,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183072,-0.002563,0.003500,0.249976,0,0);}
.me3_c00342{transform:matrix(0.183084,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183084,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183084,-0.002746,0.003750,0.249972,0,0);}
.m4b_c00342{transform:matrix(0.183719,-0.002021,0.002750,0.249985,0,0);-ms-transform:matrix(0.183719,-0.002021,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183719,-0.002021,0.002750,0.249985,0,0);}
.mb6_c00342{transform:matrix(0.183772,-0.002573,0.003500,0.249976,0,0);-ms-transform:matrix(0.183772,-0.002573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183772,-0.002573,0.003500,0.249976,0,0);}
.m10b_c00342{transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);-ms-transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183913,-0.003127,0.004249,0.249964,0,0);}
.md6_c00342{transform:matrix(0.183919,-0.002759,0.003750,0.249972,0,0);-ms-transform:matrix(0.183919,-0.002759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183919,-0.002759,0.003750,0.249972,0,0);}
.mdd_c00342{transform:matrix(0.183969,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.183969,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183969,-0.002760,0.003750,0.249972,0,0);}
.m83_c00342{transform:matrix(0.184027,-0.002576,0.003500,0.249976,0,0);-ms-transform:matrix(0.184027,-0.002576,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184027,-0.002576,0.003500,0.249976,0,0);}
.mf6_c00342{transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);-ms-transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184164,-0.002762,0.003750,0.249972,0,0);}
.m97_c00342{transform:matrix(0.184407,-0.002582,0.003500,0.249976,0,0);-ms-transform:matrix(0.184407,-0.002582,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184407,-0.002582,0.003500,0.249976,0,0);}
.m114_c00342{transform:matrix(0.184855,-0.003327,0.004499,0.249960,0,0);-ms-transform:matrix(0.184855,-0.003327,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184855,-0.003327,0.004499,0.249960,0,0);}
.m111_c00342{transform:matrix(0.184860,-0.003327,0.004499,0.249960,0,0);-ms-transform:matrix(0.184860,-0.003327,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184860,-0.003327,0.004499,0.249960,0,0);}
.m116_c00342{transform:matrix(0.185140,-0.003333,0.004499,0.249960,0,0);-ms-transform:matrix(0.185140,-0.003333,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185140,-0.003333,0.004499,0.249960,0,0);}
.mdf_c00342{transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-ms-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);}
.m41_c00342{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);}
.m24_c00342{transform:matrix(0.185790,-0.004087,0.005499,0.249940,0,0);-ms-transform:matrix(0.185790,-0.004087,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185790,-0.004087,0.005499,0.249940,0,0);}
.m3b_c00342{transform:matrix(0.185909,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185909,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185909,-0.002045,0.002750,0.249985,0,0);}
.m36_c00342{transform:matrix(0.185984,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.185984,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185984,-0.002046,0.002750,0.249985,0,0);}
.m60_c00342{transform:matrix(0.186044,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.186044,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186044,-0.002046,0.002750,0.249985,0,0);}
.m5f_c00342{transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);}
.m4d_c00342{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);}
.mfa_c00342{transform:matrix(0.186738,-0.003175,0.004249,0.249964,0,0);-ms-transform:matrix(0.186738,-0.003175,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186738,-0.003175,0.004249,0.249964,0,0);}
.md3_c00342{transform:matrix(0.187512,-0.002625,0.003500,0.249976,0,0);-ms-transform:matrix(0.187512,-0.002625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187512,-0.002625,0.003500,0.249976,0,0);}
.m133_c00342{transform:matrix(0.187606,-0.003002,0.003999,0.249968,0,0);-ms-transform:matrix(0.187606,-0.003002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187606,-0.003002,0.003999,0.249968,0,0);}
.m1c_c00342{transform:matrix(0.187780,-0.004131,0.005499,0.249940,0,0);-ms-transform:matrix(0.187780,-0.004131,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187780,-0.004131,0.005499,0.249940,0,0);}
.m72_c00342{transform:matrix(0.187859,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187859,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187859,-0.002066,0.002750,0.249985,0,0);}
.mc0_c00342{transform:matrix(0.188262,-0.002636,0.003500,0.249976,0,0);-ms-transform:matrix(0.188262,-0.002636,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188262,-0.002636,0.003500,0.249976,0,0);}
.mcc_c00342{transform:matrix(0.188966,-0.002646,0.003500,0.249976,0,0);-ms-transform:matrix(0.188966,-0.002646,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188966,-0.002646,0.003500,0.249976,0,0);}
.m7f_c00342{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);}
.m34_c00342{transform:matrix(0.189789,-0.002088,0.002750,0.249985,0,0);-ms-transform:matrix(0.189789,-0.002088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189789,-0.002088,0.002750,0.249985,0,0);}
.m8b_c00342{transform:matrix(0.189811,-0.002657,0.003500,0.249976,0,0);-ms-transform:matrix(0.189811,-0.002657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189811,-0.002657,0.003500,0.249976,0,0);}
.maa_c00342{transform:matrix(0.189901,-0.002659,0.003500,0.249976,0,0);-ms-transform:matrix(0.189901,-0.002659,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189901,-0.002659,0.003500,0.249976,0,0);}
.m71_c00342{transform:matrix(0.190153,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190153,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190153,-0.002092,0.002750,0.249985,0,0);}
.m2e_c00342{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);}
.mea_c00342{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);}
.m81_c00342{transform:matrix(0.191126,-0.002676,0.003500,0.249976,0,0);-ms-transform:matrix(0.191126,-0.002676,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191126,-0.002676,0.003500,0.249976,0,0);}
.mb5_c00342{transform:matrix(0.191216,-0.002677,0.003500,0.249976,0,0);-ms-transform:matrix(0.191216,-0.002677,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191216,-0.002677,0.003500,0.249976,0,0);}
.m46_c00342{transform:matrix(0.191233,-0.002869,0.003750,0.249972,0,0);-ms-transform:matrix(0.191233,-0.002869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191233,-0.002869,0.003750,0.249972,0,0);}
.m48_c00342{transform:matrix(0.191263,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191263,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191263,-0.002104,0.002750,0.249985,0,0);}
.m10c_c00342{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);}
.mee_c00342{transform:matrix(0.191373,-0.002871,0.003750,0.249972,0,0);-ms-transform:matrix(0.191373,-0.002871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191373,-0.002871,0.003750,0.249972,0,0);}
.mc3_c00342{transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);-ms-transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);}
.m119_c00342{transform:matrix(0.192114,-0.003458,0.004499,0.249960,0,0);-ms-transform:matrix(0.192114,-0.003458,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192114,-0.003458,0.004499,0.249960,0,0);}
.mf1_c00342{transform:matrix(0.192398,-0.002886,0.003750,0.249972,0,0);-ms-transform:matrix(0.192398,-0.002886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192398,-0.002886,0.003750,0.249972,0,0);}
.mdb_c00342{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);}
.m11e_c00342{transform:matrix(0.192749,-0.003469,0.004499,0.249960,0,0);-ms-transform:matrix(0.192749,-0.003469,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192749,-0.003469,0.004499,0.249960,0,0);}
.mf8_c00342{transform:matrix(0.192817,-0.003278,0.004249,0.249964,0,0);-ms-transform:matrix(0.192817,-0.003278,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192817,-0.003278,0.004249,0.249964,0,0);}
.me6_c00342{transform:matrix(0.193253,-0.002899,0.003750,0.249972,0,0);-ms-transform:matrix(0.193253,-0.002899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193253,-0.002899,0.003750,0.249972,0,0);}
.ma9_c00342{transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);-ms-transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193501,-0.002709,0.003500,0.249976,0,0);}
.m5b_c00342{transform:matrix(0.193593,-0.002130,0.002750,0.249985,0,0);-ms-transform:matrix(0.193593,-0.002130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193593,-0.002130,0.002750,0.249985,0,0);}
.mac_c00342{transform:matrix(0.193631,-0.002711,0.003500,0.249976,0,0);-ms-transform:matrix(0.193631,-0.002711,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193631,-0.002711,0.003500,0.249976,0,0);}
.m11d_c00342{transform:matrix(0.194179,-0.003495,0.004499,0.249960,0,0);-ms-transform:matrix(0.194179,-0.003495,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194179,-0.003495,0.004499,0.249960,0,0);}
.m79_c00342{transform:matrix(0.194633,-0.002141,0.002750,0.249985,0,0);-ms-transform:matrix(0.194633,-0.002141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194633,-0.002141,0.002750,0.249985,0,0);}
.m127_c00342{transform:matrix(0.194698,-0.003505,0.004499,0.249960,0,0);-ms-transform:matrix(0.194698,-0.003505,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194698,-0.003505,0.004499,0.249960,0,0);}
.m66_c00342{transform:matrix(0.194758,-0.002142,0.002750,0.249985,0,0);-ms-transform:matrix(0.194758,-0.002142,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194758,-0.002142,0.002750,0.249985,0,0);}
.m126_c00342{transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-ms-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);}
.mb0_c00342{transform:matrix(0.195436,-0.002736,0.003500,0.249976,0,0);-ms-transform:matrix(0.195436,-0.002736,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195436,-0.002736,0.003500,0.249976,0,0);}
.m118_c00342{transform:matrix(0.195438,-0.003518,0.004499,0.249960,0,0);-ms-transform:matrix(0.195438,-0.003518,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195438,-0.003518,0.004499,0.249960,0,0);}
.mbd_c00342{transform:matrix(0.195456,-0.002736,0.003500,0.249976,0,0);-ms-transform:matrix(0.195456,-0.002736,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195456,-0.002736,0.003500,0.249976,0,0);}
.m110_c00342{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);}
.mf3_c00342{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);}
.ma7_c00342{transform:matrix(0.196111,-0.002746,0.003500,0.249976,0,0);-ms-transform:matrix(0.196111,-0.002746,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196111,-0.002746,0.003500,0.249976,0,0);}
.m32_c00342{transform:matrix(0.196678,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196678,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196678,-0.002163,0.002750,0.249985,0,0);}
.mef_c00342{transform:matrix(0.196878,-0.002953,0.003750,0.249972,0,0);-ms-transform:matrix(0.196878,-0.002953,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196878,-0.002953,0.003750,0.249972,0,0);}
.m8c_c00342{transform:matrix(0.197026,-0.002758,0.003500,0.249976,0,0);-ms-transform:matrix(0.197026,-0.002758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197026,-0.002758,0.003500,0.249976,0,0);}
.m50_c00342{transform:matrix(0.197033,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.197033,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197033,-0.002167,0.002750,0.249985,0,0);}
.m25_c00342{transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);-ms-transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);}
.m21_c00342{transform:matrix(0.197457,-0.004344,0.005499,0.249940,0,0);-ms-transform:matrix(0.197457,-0.004344,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197457,-0.004344,0.005499,0.249940,0,0);}
.m7d_c00342{transform:matrix(0.197561,-0.002766,0.003500,0.249976,0,0);-ms-transform:matrix(0.197561,-0.002766,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197561,-0.002766,0.003500,0.249976,0,0);}
.mf7_c00342{transform:matrix(0.197706,-0.003361,0.004249,0.249964,0,0);-ms-transform:matrix(0.197706,-0.003361,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197706,-0.003361,0.004249,0.249964,0,0);}
.m7c_c00342{transform:matrix(0.197931,-0.002771,0.003500,0.249976,0,0);-ms-transform:matrix(0.197931,-0.002771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197931,-0.002771,0.003500,0.249976,0,0);}
.m136_c00342{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);}
.m73_c00342{transform:matrix(0.198923,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198923,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198923,-0.002188,0.002750,0.249985,0,0);}
.m55_c00342{transform:matrix(0.199033,-0.002189,0.002750,0.249985,0,0);-ms-transform:matrix(0.199033,-0.002189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199033,-0.002189,0.002750,0.249985,0,0);}
.m95_c00342{transform:matrix(0.199100,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199100,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199100,-0.002787,0.003500,0.249976,0,0);}
.m39_c00342{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);}
.mf2_c00342{transform:matrix(0.199488,-0.002992,0.003750,0.249972,0,0);-ms-transform:matrix(0.199488,-0.002992,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199488,-0.002992,0.003750,0.249972,0,0);}
.m4c_c00342{transform:matrix(0.199908,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199908,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199908,-0.002199,0.002750,0.249985,0,0);}
.mc1_c00342{transform:matrix(0.200155,-0.002802,0.003500,0.249976,0,0);-ms-transform:matrix(0.200155,-0.002802,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200155,-0.002802,0.003500,0.249976,0,0);}
.ma4_c00342{transform:matrix(0.200535,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200535,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200535,-0.002807,0.003500,0.249976,0,0);}
.m101_c00342{transform:matrix(0.200626,-0.003411,0.004249,0.249964,0,0);-ms-transform:matrix(0.200626,-0.003411,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200626,-0.003411,0.004249,0.249964,0,0);}
.m117_c00342{transform:matrix(0.200637,-0.003611,0.004499,0.249960,0,0);-ms-transform:matrix(0.200637,-0.003611,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200637,-0.003611,0.004499,0.249960,0,0);}
.mad_c00342{transform:matrix(0.200880,-0.002812,0.003500,0.249976,0,0);-ms-transform:matrix(0.200880,-0.002812,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200880,-0.002812,0.003500,0.249976,0,0);}
.m26_c00342{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);}
.m2c_c00342{transform:matrix(0.201278,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201278,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201278,-0.002214,0.002750,0.249985,0,0);}
.m3d_c00342{transform:matrix(0.201603,-0.002218,0.002750,0.249985,0,0);-ms-transform:matrix(0.201603,-0.002218,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201603,-0.002218,0.002750,0.249985,0,0);}
.m59_c00342{transform:matrix(0.201758,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201758,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201758,-0.002219,0.002750,0.249985,0,0);}
.mf0_c00342{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);}
.m11c_c00342{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);}
.m12a_c00342{transform:matrix(0.202252,-0.003641,0.004499,0.249960,0,0);-ms-transform:matrix(0.202252,-0.003641,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202252,-0.003641,0.004499,0.249960,0,0);}
.m134_c00342{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);}
.m128_c00342{transform:matrix(0.202637,-0.003647,0.004499,0.249960,0,0);-ms-transform:matrix(0.202637,-0.003647,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202637,-0.003647,0.004499,0.249960,0,0);}
.m67_c00342{transform:matrix(0.203548,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203548,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203548,-0.002239,0.002750,0.249985,0,0);}
.m2b_c00342{transform:matrix(0.204043,-0.002244,0.002750,0.249985,0,0);-ms-transform:matrix(0.204043,-0.002244,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204043,-0.002244,0.002750,0.249985,0,0);}
.mbe_c00342{transform:matrix(0.204090,-0.002857,0.003500,0.249976,0,0);-ms-transform:matrix(0.204090,-0.002857,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204090,-0.002857,0.003500,0.249976,0,0);}
.m102_c00342{transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);-ms-transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204700,-0.003480,0.004249,0.249964,0,0);}
.mc_c00342{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);}
.mda_c00342{transform:matrix(0.205212,-0.003078,0.003750,0.249972,0,0);-ms-transform:matrix(0.205212,-0.003078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205212,-0.003078,0.003750,0.249972,0,0);}
.m33_c00342{transform:matrix(0.205288,-0.002258,0.002750,0.249985,0,0);-ms-transform:matrix(0.205288,-0.002258,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205288,-0.002258,0.002750,0.249985,0,0);}
.m7b_c00342{transform:matrix(0.206235,-0.002887,0.003500,0.249976,0,0);-ms-transform:matrix(0.206235,-0.002887,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206235,-0.002887,0.003500,0.249976,0,0);}
.m30_c00342{transform:matrix(0.206533,-0.002272,0.002750,0.249985,0,0);-ms-transform:matrix(0.206533,-0.002272,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206533,-0.002272,0.002750,0.249985,0,0);}
.ma0_c00342{transform:matrix(0.208085,-0.002913,0.003500,0.249976,0,0);-ms-transform:matrix(0.208085,-0.002913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208085,-0.002913,0.003500,0.249976,0,0);}
.mc4_c00342{transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);-ms-transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208210,-0.002915,0.003500,0.249976,0,0);}
.mb1_c00342{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);}
.m35_c00342{transform:matrix(0.208702,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208702,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208702,-0.002296,0.002750,0.249985,0,0);}
.m12b_c00342{transform:matrix(0.209496,-0.003771,0.004499,0.249960,0,0);-ms-transform:matrix(0.209496,-0.003771,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209496,-0.003771,0.004499,0.249960,0,0);}
.me2_c00342{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);}
.m10d_c00342{transform:matrix(0.210831,-0.003795,0.004499,0.249960,0,0);-ms-transform:matrix(0.210831,-0.003795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210831,-0.003795,0.004499,0.249960,0,0);}
.m4a_c00342{transform:matrix(0.211347,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211347,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211347,-0.002325,0.002750,0.249985,0,0);}
.mde_c00342{transform:matrix(0.211481,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211481,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211481,-0.003172,0.003750,0.249972,0,0);}
.mfe_c00342{transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);-ms-transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211514,-0.003596,0.004249,0.249964,0,0);}
.m5e_c00342{transform:matrix(0.211942,-0.002331,0.002750,0.249985,0,0);-ms-transform:matrix(0.211942,-0.002331,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211942,-0.002331,0.002750,0.249985,0,0);}
.m96_c00342{transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);}
.mc2_c00342{transform:matrix(0.213174,-0.002984,0.003500,0.249976,0,0);-ms-transform:matrix(0.213174,-0.002984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213174,-0.002984,0.003500,0.249976,0,0);}
.m1f_c00342{transform:matrix(0.213363,-0.004694,0.005499,0.249940,0,0);-ms-transform:matrix(0.213363,-0.004694,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213363,-0.004694,0.005499,0.249940,0,0);}
.mc8_c00342{transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);}
.mb3_c00342{transform:matrix(0.213624,-0.002991,0.003500,0.249976,0,0);-ms-transform:matrix(0.213624,-0.002991,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213624,-0.002991,0.003500,0.249976,0,0);}
.m7a_c00342{transform:matrix(0.213767,-0.002351,0.002750,0.249985,0,0);-ms-transform:matrix(0.213767,-0.002351,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213767,-0.002351,0.002750,0.249985,0,0);}
.mce_c00342{transform:matrix(0.213999,-0.002996,0.003500,0.249976,0,0);-ms-transform:matrix(0.213999,-0.002996,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213999,-0.002996,0.003500,0.249976,0,0);}
.m4e_c00342{transform:matrix(0.215087,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215087,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215087,-0.002366,0.002750,0.249985,0,0);}
.m124_c00342{transform:matrix(0.216005,-0.003888,0.004499,0.249960,0,0);-ms-transform:matrix(0.216005,-0.003888,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216005,-0.003888,0.004499,0.249960,0,0);}
.m23_c00342{transform:matrix(0.217297,-0.004781,0.005499,0.249940,0,0);-ms-transform:matrix(0.217297,-0.004781,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217297,-0.004781,0.005499,0.249940,0,0);}
.m8a_c00342{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);}
.m77_c00342{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);}
.m31_c00342{transform:matrix(0.219472,-0.002414,0.002750,0.249985,0,0);-ms-transform:matrix(0.219472,-0.002414,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219472,-0.002414,0.002750,0.249985,0,0);}
.m53_c00342{transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);-ms-transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219837,-0.002418,0.002750,0.249985,0,0);}
.m123_c00342{transform:matrix(0.220174,-0.003963,0.004499,0.249960,0,0);-ms-transform:matrix(0.220174,-0.003963,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220174,-0.003963,0.004499,0.249960,0,0);}
.m84_c00342{transform:matrix(0.220648,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220648,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220648,-0.003089,0.003500,0.249976,0,0);}
.me4_c00342{transform:matrix(0.220700,-0.003311,0.003750,0.249972,0,0);-ms-transform:matrix(0.220700,-0.003311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220700,-0.003311,0.003750,0.249972,0,0);}
.mc6_c00342{transform:matrix(0.220898,-0.003093,0.003500,0.249976,0,0);-ms-transform:matrix(0.220898,-0.003093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220898,-0.003093,0.003500,0.249976,0,0);}
.m9c_c00342{transform:matrix(0.221598,-0.003102,0.003500,0.249976,0,0);-ms-transform:matrix(0.221598,-0.003102,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221598,-0.003102,0.003500,0.249976,0,0);}
.mab_c00342{transform:matrix(0.222028,-0.003108,0.003500,0.249976,0,0);-ms-transform:matrix(0.222028,-0.003108,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222028,-0.003108,0.003500,0.249976,0,0);}
.m3a_c00342{transform:matrix(0.222947,-0.002452,0.002750,0.249985,0,0);-ms-transform:matrix(0.222947,-0.002452,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222947,-0.002452,0.002750,0.249985,0,0);}
.m63_c00342{transform:matrix(0.224366,-0.002468,0.002750,0.249985,0,0);-ms-transform:matrix(0.224366,-0.002468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224366,-0.002468,0.002750,0.249985,0,0);}
.m129_c00342{transform:matrix(0.226473,-0.004077,0.004499,0.249960,0,0);-ms-transform:matrix(0.226473,-0.004077,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226473,-0.004077,0.004499,0.249960,0,0);}
.m132_c00342{transform:matrix(0.226736,-0.003628,0.003999,0.249968,0,0);-ms-transform:matrix(0.226736,-0.003628,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226736,-0.003628,0.003999,0.249968,0,0);}
.m11b_c00342{transform:matrix(0.232032,-0.004177,0.004499,0.249960,0,0);-ms-transform:matrix(0.232032,-0.004177,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232032,-0.004177,0.004499,0.249960,0,0);}
.m70_c00342{transform:matrix(0.232756,-0.002560,0.002750,0.249985,0,0);-ms-transform:matrix(0.232756,-0.002560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232756,-0.002560,0.002750,0.249985,0,0);}
.m80_c00342{transform:matrix(0.233817,-0.003273,0.003500,0.249976,0,0);-ms-transform:matrix(0.233817,-0.003273,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233817,-0.003273,0.003500,0.249976,0,0);}
.m2a_c00342{transform:matrix(0.234971,-0.002585,0.002750,0.249985,0,0);-ms-transform:matrix(0.234971,-0.002585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234971,-0.002585,0.002750,0.249985,0,0);}
.m122_c00342{transform:matrix(0.235207,-0.004234,0.004499,0.249960,0,0);-ms-transform:matrix(0.235207,-0.004234,0.004499,0.249960,0,0);-webkit-transform:matrix(0.235207,-0.004234,0.004499,0.249960,0,0);}
.m5a_c00342{transform:matrix(0.236861,-0.002605,0.002750,0.249985,0,0);-ms-transform:matrix(0.236861,-0.002605,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236861,-0.002605,0.002750,0.249985,0,0);}
.m9f_c00342{transform:matrix(0.237202,-0.003321,0.003500,0.249976,0,0);-ms-transform:matrix(0.237202,-0.003321,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237202,-0.003321,0.003500,0.249976,0,0);}
.md4_c00342{transform:matrix(0.237998,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.237998,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237998,-0.003570,0.003750,0.249972,0,0);}
.m3f_c00342{transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);-ms-transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);}
.m38_c00342{transform:matrix(0.240045,-0.002641,0.002750,0.249985,0,0);-ms-transform:matrix(0.240045,-0.002641,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240045,-0.002641,0.002750,0.249985,0,0);}
.m10f_c00342{transform:matrix(0.241321,-0.004344,0.004499,0.249960,0,0);-ms-transform:matrix(0.241321,-0.004344,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241321,-0.004344,0.004499,0.249960,0,0);}
.m5d_c00342{transform:matrix(0.242445,-0.002667,0.002750,0.249985,0,0);-ms-transform:matrix(0.242445,-0.002667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242445,-0.002667,0.002750,0.249985,0,0);}
.m137_c00342{transform:matrix(0.243739,-0.003900,0.003999,0.249968,0,0);-ms-transform:matrix(0.243739,-0.003900,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243739,-0.003900,0.003999,0.249968,0,0);}
.m76_c00342{transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);-ms-transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245120,-0.002696,0.002750,0.249985,0,0);}
.m18_c00342{transform:matrix(0.246255,-0.005418,0.005499,0.249940,0,0);-ms-transform:matrix(0.246255,-0.005418,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246255,-0.005418,0.005499,0.249940,0,0);}
.m120_c00342{transform:matrix(0.247605,-0.004457,0.004499,0.249960,0,0);-ms-transform:matrix(0.247605,-0.004457,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247605,-0.004457,0.004499,0.249960,0,0);}
.m69_c00342{transform:matrix(0.248315,-0.002731,0.002750,0.249985,0,0);-ms-transform:matrix(0.248315,-0.002731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248315,-0.002731,0.002750,0.249985,0,0);}
.ma2_c00342{transform:matrix(0.249831,-0.003498,0.003500,0.249976,0,0);-ms-transform:matrix(0.249831,-0.003498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249831,-0.003498,0.003500,0.249976,0,0);}
.m11a_c00342{transform:matrix(0.250254,-0.004505,0.004499,0.249960,0,0);-ms-transform:matrix(0.250254,-0.004505,0.004499,0.249960,0,0);-webkit-transform:matrix(0.250254,-0.004505,0.004499,0.249960,0,0);}
.mb8_c00342{transform:matrix(0.255685,-0.003580,0.003500,0.249976,0,0);-ms-transform:matrix(0.255685,-0.003580,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255685,-0.003580,0.003500,0.249976,0,0);}
.mb7_c00342{transform:matrix(0.260349,-0.003645,0.003500,0.249976,0,0);-ms-transform:matrix(0.260349,-0.003645,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260349,-0.003645,0.003500,0.249976,0,0);}
.m3e_c00342{transform:matrix(0.262739,-0.002890,0.002750,0.249985,0,0);-ms-transform:matrix(0.262739,-0.002890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262739,-0.002890,0.002750,0.249985,0,0);}
.m98_c00342{transform:matrix(0.263889,-0.003694,0.003500,0.249976,0,0);-ms-transform:matrix(0.263889,-0.003694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263889,-0.003694,0.003500,0.249976,0,0);}
.mb9_c00342{transform:matrix(0.267109,-0.003740,0.003500,0.249976,0,0);-ms-transform:matrix(0.267109,-0.003740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267109,-0.003740,0.003500,0.249976,0,0);}
.mbc_c00342{transform:matrix(0.282327,-0.003953,0.003500,0.249976,0,0);-ms-transform:matrix(0.282327,-0.003953,0.003500,0.249976,0,0);-webkit-transform:matrix(0.282327,-0.003953,0.003500,0.249976,0,0);}
.m12d_c00342{transform:matrix(0.284339,-0.005118,0.004499,0.249960,0,0);-ms-transform:matrix(0.284339,-0.005118,0.004499,0.249960,0,0);-webkit-transform:matrix(0.284339,-0.005118,0.004499,0.249960,0,0);}
.m10_c00342{transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);-ms-transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);}
.mc7_c00342{transform:matrix(0.292341,-0.004093,0.003500,0.249976,0,0);-ms-transform:matrix(0.292341,-0.004093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.292341,-0.004093,0.003500,0.249976,0,0);}
.me1_c00342{transform:matrix(0.296322,-0.004445,0.003750,0.249972,0,0);-ms-transform:matrix(0.296322,-0.004445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296322,-0.004445,0.003750,0.249972,0,0);}
.m11_c00342{transform:matrix(0.330002,-0.004290,0.003250,0.249979,0,0);-ms-transform:matrix(0.330002,-0.004290,0.003250,0.249979,0,0);-webkit-transform:matrix(0.330002,-0.004290,0.003250,0.249979,0,0);}
.mf_c00342{transform:matrix(0.336992,-0.004381,0.003250,0.249979,0,0);-ms-transform:matrix(0.336992,-0.004381,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336992,-0.004381,0.003250,0.249979,0,0);}
.m47_c00342{transform:matrix(0.340114,-0.003741,0.002750,0.249985,0,0);-ms-transform:matrix(0.340114,-0.003741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.340114,-0.003741,0.002750,0.249985,0,0);}
.ma1_c00342{transform:matrix(0.346151,-0.004846,0.003500,0.249976,0,0);-ms-transform:matrix(0.346151,-0.004846,0.003500,0.249976,0,0);-webkit-transform:matrix(0.346151,-0.004846,0.003500,0.249976,0,0);}
.m6_c00342{transform:matrix(0.356600,-0.004636,0.003250,0.249979,0,0);-ms-transform:matrix(0.356600,-0.004636,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356600,-0.004636,0.003250,0.249979,0,0);}
.m7_c00342{transform:matrix(0.367979,-0.004784,0.003250,0.249979,0,0);-ms-transform:matrix(0.367979,-0.004784,0.003250,0.249979,0,0);-webkit-transform:matrix(0.367979,-0.004784,0.003250,0.249979,0,0);}
.m113_c00342{transform:matrix(0.374309,-0.006738,0.004499,0.249960,0,0);-ms-transform:matrix(0.374309,-0.006738,0.004499,0.249960,0,0);-webkit-transform:matrix(0.374309,-0.006738,0.004499,0.249960,0,0);}
.m121_c00342{transform:matrix(0.379973,-0.006840,0.004499,0.249960,0,0);-ms-transform:matrix(0.379973,-0.006840,0.004499,0.249960,0,0);-webkit-transform:matrix(0.379973,-0.006840,0.004499,0.249960,0,0);}
.m12e_c00342{transform:matrix(0.392326,-0.007062,0.004499,0.249960,0,0);-ms-transform:matrix(0.392326,-0.007062,0.004499,0.249960,0,0);-webkit-transform:matrix(0.392326,-0.007062,0.004499,0.249960,0,0);}
.m0_c00342{transform:matrix(0.401631,-0.005221,0.003250,0.249979,0,0);-ms-transform:matrix(0.401631,-0.005221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.401631,-0.005221,0.003250,0.249979,0,0);}
.m13_c00342{transform:matrix(0.428191,-0.009420,0.005499,0.249940,0,0);-ms-transform:matrix(0.428191,-0.009420,0.005499,0.249940,0,0);-webkit-transform:matrix(0.428191,-0.009420,0.005499,0.249940,0,0);}
.m2_c00342{transform:matrix(0.435388,-0.005660,0.003250,0.249979,0,0);-ms-transform:matrix(0.435388,-0.005660,0.003250,0.249979,0,0);-webkit-transform:matrix(0.435388,-0.005660,0.003250,0.249979,0,0);}
.m5_c00342{transform:matrix(0.450337,-0.005854,0.003250,0.249979,0,0);-ms-transform:matrix(0.450337,-0.005854,0.003250,0.249979,0,0);-webkit-transform:matrix(0.450337,-0.005854,0.003250,0.249979,0,0);}
.m9_c00342{transform:matrix(0.480504,-0.006247,0.003250,0.249979,0,0);-ms-transform:matrix(0.480504,-0.006247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.480504,-0.006247,0.003250,0.249979,0,0);}
.mb_c00342{transform:matrix(0.482234,-0.006269,0.003250,0.249979,0,0);-ms-transform:matrix(0.482234,-0.006269,0.003250,0.249979,0,0);-webkit-transform:matrix(0.482234,-0.006269,0.003250,0.249979,0,0);}
.m4_c00342{transform:matrix(0.491368,-0.006388,0.003250,0.249979,0,0);-ms-transform:matrix(0.491368,-0.006388,0.003250,0.249979,0,0);-webkit-transform:matrix(0.491368,-0.006388,0.003250,0.249979,0,0);}
.m17_c00342{transform:matrix(0.504353,-0.011096,0.005499,0.249940,0,0);-ms-transform:matrix(0.504353,-0.011096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.504353,-0.011096,0.005499,0.249940,0,0);}
.md_c00342{transform:matrix(0.521656,-0.006782,0.003250,0.249979,0,0);-ms-transform:matrix(0.521656,-0.006782,0.003250,0.249979,0,0);-webkit-transform:matrix(0.521656,-0.006782,0.003250,0.249979,0,0);}
.m1_c00342{transform:matrix(0.609983,-0.007930,0.003250,0.249979,0,0);-ms-transform:matrix(0.609983,-0.007930,0.003250,0.249979,0,0);-webkit-transform:matrix(0.609983,-0.007930,0.003250,0.249979,0,0);}
.m42_c00342{transform:matrix(0.687738,-0.010316,0.003750,0.249972,0,0);-ms-transform:matrix(0.687738,-0.010316,0.003750,0.249972,0,0);-webkit-transform:matrix(0.687738,-0.010316,0.003750,0.249972,0,0);}
.m1a_c00342{transform:matrix(0.688069,-0.015138,0.005499,0.249940,0,0);-ms-transform:matrix(0.688069,-0.015138,0.005499,0.249940,0,0);-webkit-transform:matrix(0.688069,-0.015138,0.005499,0.249940,0,0);}
.m52_c00342{transform:matrix(0.699303,-0.007692,0.002750,0.249985,0,0);-ms-transform:matrix(0.699303,-0.007692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.699303,-0.007692,0.002750,0.249985,0,0);}
.m28_c00342{transform:matrix(1.275145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.275145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.275145,0.000000,0.000000,0.250000,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;}
.fs5_c00342{font-size:22.050000px;}
.fs0_c00342{font-size:29.402484px;}
.fs16_c00342{font-size:49.357994px;}
.fs17_c00342{font-size:50.408164px;}
.fs15_c00342{font-size:55.659015px;}
.fs2_c00342{font-size:61.964990px;}
.fsb_c00342{font-size:63.003811px;}
.fs6_c00342{font-size:65.103938px;}
.fsc_c00342{font-size:67.206585px;}
.fs18_c00342{font-size:68.258735px;}
.fse_c00342{font-size:69.306791px;}
.fs12_c00342{font-size:69.307796px;}
.fs3_c00342{font-size:69.316769px;}
.fs10_c00342{font-size:70.356894px;}
.fs11_c00342{font-size:70.357914px;}
.fs4_c00342{font-size:70.367023px;}
.fs9_c00342{font-size:71.404320px;}
.fsa_c00342{font-size:72.454383px;}
.fsf_c00342{font-size:72.457100px;}
.fs7_c00342{font-size:72.458150px;}
.fs13_c00342{font-size:72.460468px;}
.fs14_c00342{font-size:73.510620px;}
.fs8_c00342{font-size:74.554510px;}
.fsd_c00342{font-size:74.557306px;}
.fs1_c00342{font-size:101.858606px;}
.y0_c00342{bottom:0.000000px;}
.y127_c00342{bottom:153.897051px;}
.y128_c00342{bottom:154.587996px;}
.y129_c00342{bottom:155.187834px;}
.y12a_c00342{bottom:155.791074px;}
.y12b_c00342{bottom:156.261582px;}
.y12c_c00342{bottom:157.060713px;}
.y12d_c00342{bottom:158.107284px;}
.y12e_c00342{bottom:158.859741px;}
.y12f_c00342{bottom:160.810686px;}
.y130_c00342{bottom:162.387603px;}
.y11b_c00342{bottom:171.988929px;}
.y11c_c00342{bottom:172.351977px;}
.y11d_c00342{bottom:173.307384px;}
.y11e_c00342{bottom:173.620485px;}
.y11f_c00342{bottom:174.500889px;}
.y120_c00342{bottom:175.183773px;}
.y121_c00342{bottom:175.391256px;}
.y122_c00342{bottom:175.974543px;}
.y123_c00342{bottom:176.244405px;}
.y124_c00342{bottom:177.078561px;}
.y125_c00342{bottom:177.501018px;}
.y126_c00342{bottom:177.768600px;}
.y10e_c00342{bottom:189.813000px;}
.y10f_c00342{bottom:190.118856px;}
.y110_c00342{bottom:190.562007px;}
.y111_c00342{bottom:191.723439px;}
.y112_c00342{bottom:192.491454px;}
.y113_c00342{bottom:193.302426px;}
.y114_c00342{bottom:193.813860px;}
.y115_c00342{bottom:194.071035px;}
.y116_c00342{bottom:195.013713px;}
.y117_c00342{bottom:195.514995px;}
.y118_c00342{bottom:196.414311px;}
.y119_c00342{bottom:197.371326px;}
.y11a_c00342{bottom:197.876496px;}
.y104_c00342{bottom:239.219838px;}
.y105_c00342{bottom:239.982211px;}
.y106_c00342{bottom:240.340563px;}
.y107_c00342{bottom:241.061397px;}
.y108_c00342{bottom:242.442783px;}
.y109_c00342{bottom:243.163387px;}
.y10a_c00342{bottom:243.586152px;}
.y10b_c00342{bottom:244.944741px;}
.y10c_c00342{bottom:245.367123px;}
.y10d_c00342{bottom:246.147244px;}
.yf8_c00342{bottom:261.904500px;}
.yf9_c00342{bottom:262.707546px;}
.yfa_c00342{bottom:263.079438px;}
.yfb_c00342{bottom:263.382735px;}
.yfc_c00342{bottom:264.639120px;}
.yfd_c00342{bottom:265.079709px;}
.yfe_c00342{bottom:265.503264px;}
.yff_c00342{bottom:266.246895px;}
.y100_c00342{bottom:266.678916px;}
.y101_c00342{bottom:267.618565px;}
.y102_c00342{bottom:268.147359px;}
.y103_c00342{bottom:269.336220px;}
.yef_c00342{bottom:285.386985px;}
.yf0_c00342{bottom:287.109878px;}
.yf1_c00342{bottom:287.650898px;}
.yf2_c00342{bottom:288.369210px;}
.yf3_c00342{bottom:289.473975px;}
.yf4_c00342{bottom:290.058075px;}
.yf5_c00342{bottom:291.609142px;}
.yf6_c00342{bottom:292.059382px;}
.yf7_c00342{bottom:292.546920px;}
.ye1_c00342{bottom:308.070173px;}
.ye2_c00342{bottom:308.657085px;}
.ye3_c00342{bottom:309.327263px;}
.ye4_c00342{bottom:309.685665px;}
.ye5_c00342{bottom:310.367745px;}
.ye6_c00342{bottom:310.704735px;}
.ye7_c00342{bottom:311.210220px;}
.ye8_c00342{bottom:311.813482px;}
.ye9_c00342{bottom:312.264353px;}
.yea_c00342{bottom:312.653055px;}
.yeb_c00342{bottom:313.616025px;}
.yec_c00342{bottom:313.974945px;}
.yed_c00342{bottom:314.722073px;}
.yee_c00342{bottom:315.200722px;}
.yd5_c00342{bottom:331.563000px;}
.yd6_c00342{bottom:332.044590px;}
.yd7_c00342{bottom:332.348115px;}
.yd8_c00342{bottom:333.021315px;}
.yd9_c00342{bottom:333.450390px;}
.yda_c00342{bottom:333.891975px;}
.ydb_c00342{bottom:334.588687px;}
.ydc_c00342{bottom:335.920012px;}
.ydd_c00342{bottom:336.553027px;}
.yde_c00342{bottom:337.180777px;}
.ydf_c00342{bottom:337.677892px;}
.ye0_c00342{bottom:338.459632px;}
.y131_c00342{bottom:353.433000px;}
.y132_c00342{bottom:354.164568px;}
.y133_c00342{bottom:354.968184px;}
.y134_c00342{bottom:355.931568px;}
.y135_c00342{bottom:356.411520px;}
.y136_c00342{bottom:357.455712px;}
.y137_c00342{bottom:358.190976px;}
.y138_c00342{bottom:358.981848px;}
.y139_c00342{bottom:360.290640px;}
.y13a_c00342{bottom:360.575928px;}
.yc8_c00342{bottom:376.904685px;}
.yc9_c00342{bottom:377.504100px;}
.yca_c00342{bottom:377.820087px;}
.ycb_c00342{bottom:378.482646px;}
.ycc_c00342{bottom:378.771513px;}
.ycd_c00342{bottom:379.217376px;}
.yce_c00342{bottom:379.800864px;}
.ycf_c00342{bottom:380.614833px;}
.yd0_c00342{bottom:381.351369px;}
.yd1_c00342{bottom:381.639165px;}
.yd2_c00342{bottom:382.344393px;}
.yd3_c00342{bottom:383.052309px;}
.yd4_c00342{bottom:383.282811px;}
.ybd_c00342{bottom:399.586041px;}
.ybe_c00342{bottom:399.971334px;}
.ybf_c00342{bottom:400.572678px;}
.yc0_c00342{bottom:401.556438px;}
.yc1_c00342{bottom:402.468528px;}
.yc2_c00342{bottom:403.134573px;}
.yc3_c00342{bottom:403.777500px;}
.yc4_c00342{bottom:404.576451px;}
.yc5_c00342{bottom:405.315636px;}
.yc6_c00342{bottom:405.884667px;}
.yc7_c00342{bottom:407.455053px;}
.yb1_c00342{bottom:423.350991px;}
.yb2_c00342{bottom:424.364619px;}
.yb3_c00342{bottom:424.957617px;}
.yb4_c00342{bottom:425.265360px;}
.yb5_c00342{bottom:426.788694px;}
.yb6_c00342{bottom:427.569273px;}
.yb7_c00342{bottom:428.029113px;}
.yb8_c00342{bottom:429.239235px;}
.yb9_c00342{bottom:429.859980px;}
.yba_c00342{bottom:430.011447px;}
.ybb_c00342{bottom:430.616256px;}
.ybc_c00342{bottom:431.180259px;}
.ya8_c00342{bottom:446.034054px;}
.ya9_c00342{bottom:447.210054px;}
.yaa_c00342{bottom:447.921561px;}
.yab_c00342{bottom:448.557498px;}
.yac_c00342{bottom:449.694852px;}
.yad_c00342{bottom:451.162464px;}
.yae_c00342{bottom:451.827126px;}
.yaf_c00342{bottom:452.284995px;}
.yb0_c00342{bottom:453.243987px;}
.y9b_c00342{bottom:468.986295px;}
.y9c_c00342{bottom:469.505676px;}
.y9d_c00342{bottom:470.214138px;}
.y9e_c00342{bottom:470.637330px;}
.y9f_c00342{bottom:470.974065px;}
.ya0_c00342{bottom:471.812343px;}
.ya1_c00342{bottom:472.180395px;}
.ya2_c00342{bottom:473.053602px;}
.ya3_c00342{bottom:473.212584px;}
.ya4_c00342{bottom:474.019965px;}
.ya5_c00342{bottom:474.534894px;}
.ya6_c00342{bottom:475.719030px;}
.ya7_c00342{bottom:476.300112px;}
.y90_c00342{bottom:492.209166px;}
.y91_c00342{bottom:492.663492px;}
.y92_c00342{bottom:493.113261px;}
.y93_c00342{bottom:493.412733px;}
.y94_c00342{bottom:494.287902px;}
.y95_c00342{bottom:495.149034px;}
.y96_c00342{bottom:495.461241px;}
.y97_c00342{bottom:496.086264px;}
.y98_c00342{bottom:497.414814px;}
.y99_c00342{bottom:498.553368px;}
.y9a_c00342{bottom:499.079037px;}
.y86_c00342{bottom:515.161941px;}
.y87_c00342{bottom:516.515337px;}
.y88_c00342{bottom:518.128062px;}
.y89_c00342{bottom:518.362938px;}
.y8a_c00342{bottom:518.807736px;}
.y8b_c00342{bottom:519.167337px;}
.y8c_c00342{bottom:519.841416px;}
.y8d_c00342{bottom:520.885479px;}
.y8e_c00342{bottom:521.222697px;}
.y8f_c00342{bottom:521.915379px;}
.y7c_c00342{bottom:538.653000px;}
.y7d_c00342{bottom:539.326197px;}
.y7e_c00342{bottom:540.368574px;}
.y7f_c00342{bottom:540.838365px;}
.y80_c00342{bottom:541.450935px;}
.y81_c00342{bottom:542.255949px;}
.y82_c00342{bottom:542.905248px;}
.y83_c00342{bottom:543.653772px;}
.y84_c00342{bottom:544.236732px;}
.y85_c00342{bottom:544.886766px;}
.y76_c00342{bottom:635.572914px;}
.y77_c00342{bottom:635.573304px;}
.y78_c00342{bottom:635.573404px;}
.y7b_c00342{bottom:635.573938px;}
.y79_c00342{bottom:635.573958px;}
.y7a_c00342{bottom:635.574032px;}
.y6a_c00342{bottom:653.665864px;}
.y6b_c00342{bottom:654.342562px;}
.y6c_c00342{bottom:654.652103px;}
.y6d_c00342{bottom:655.234256px;}
.y6e_c00342{bottom:655.958919px;}
.y6f_c00342{bottom:656.193632px;}
.y70_c00342{bottom:656.493651px;}
.y71_c00342{bottom:657.146886px;}
.y72_c00342{bottom:657.369719px;}
.y73_c00342{bottom:657.640005px;}
.y74_c00342{bottom:658.028861px;}
.y75_c00342{bottom:658.513334px;}
.y5e_c00342{bottom:676.347201px;}
.y5f_c00342{bottom:676.751187px;}
.y60_c00342{bottom:677.769320px;}
.y61_c00342{bottom:678.289136px;}
.y62_c00342{bottom:678.640190px;}
.y63_c00342{bottom:678.854013px;}
.y64_c00342{bottom:679.194887px;}
.y65_c00342{bottom:679.427190px;}
.y66_c00342{bottom:679.794893px;}
.y67_c00342{bottom:680.134034px;}
.y68_c00342{bottom:681.049025px;}
.y69_c00342{bottom:681.636986px;}
.y53_c00342{bottom:699.039372px;}
.y54_c00342{bottom:699.440454px;}
.y55_c00342{bottom:700.509087px;}
.y56_c00342{bottom:701.286585px;}
.y57_c00342{bottom:701.785289px;}
.y58_c00342{bottom:702.060833px;}
.y59_c00342{bottom:702.513489px;}
.y5a_c00342{bottom:702.906470px;}
.y5b_c00342{bottom:703.962546px;}
.y5c_c00342{bottom:704.611322px;}
.y5d_c00342{bottom:704.981270px;}
.y48_c00342{bottom:721.711500px;}
.y49_c00342{bottom:722.453687px;}
.y4a_c00342{bottom:722.937830px;}
.y4b_c00342{bottom:723.137133px;}
.y4c_c00342{bottom:724.105452px;}
.y4d_c00342{bottom:724.669653px;}
.y4e_c00342{bottom:724.978022px;}
.y4f_c00342{bottom:725.418175px;}
.y50_c00342{bottom:726.128517px;}
.y51_c00342{bottom:726.760962px;}
.y52_c00342{bottom:727.211890px;}
.y43_c00342{bottom:745.206000px;}
.y44_c00342{bottom:745.943595px;}
.y45_c00342{bottom:746.426648px;}
.y46_c00342{bottom:747.038243px;}
.y47_c00342{bottom:747.654203px;}
.y35_c00342{bottom:768.419910px;}
.y36_c00342{bottom:768.953850px;}
.y37_c00342{bottom:769.325727px;}
.y38_c00342{bottom:769.545523px;}
.y39_c00342{bottom:770.023727px;}
.y3a_c00342{bottom:770.379879px;}
.y3b_c00342{bottom:770.885241px;}
.y3c_c00342{bottom:771.410931px;}
.y3d_c00342{bottom:771.895140px;}
.y3e_c00342{bottom:772.316781px;}
.y3f_c00342{bottom:772.531100px;}
.y40_c00342{bottom:773.029895px;}
.y41_c00342{bottom:773.501729px;}
.y42_c00342{bottom:773.688855px;}
.y2a_c00342{bottom:790.830000px;}
.y2b_c00342{bottom:791.119971px;}
.y2c_c00342{bottom:791.939708px;}
.y2d_c00342{bottom:792.756540px;}
.y2e_c00342{bottom:793.196100px;}
.y2f_c00342{bottom:793.427941px;}
.y30_c00342{bottom:794.039762px;}
.y31_c00342{bottom:794.443946px;}
.y32_c00342{bottom:794.892184px;}
.y33_c00342{bottom:795.393884px;}
.y34_c00342{bottom:796.165506px;}
.y28_c00342{bottom:798.113199px;}
.y1a_c00342{bottom:812.156400px;}
.y1b_c00342{bottom:812.368044px;}
.y1c_c00342{bottom:813.532731px;}
.y1d_c00342{bottom:813.953661px;}
.y1e_c00342{bottom:814.943166px;}
.y1f_c00342{bottom:815.676414px;}
.y20_c00342{bottom:816.799311px;}
.y21_c00342{bottom:817.571034px;}
.y22_c00342{bottom:819.081087px;}
.y23_c00342{bottom:820.509819px;}
.y24_c00342{bottom:820.899252px;}
.y25_c00342{bottom:822.558882px;}
.y26_c00342{bottom:823.787304px;}
.y27_c00342{bottom:824.560743px;}
.y13_c00342{bottom:825.393000px;}
.y14_c00342{bottom:827.546415px;}
.y15_c00342{bottom:828.924858px;}
.y16_c00342{bottom:830.096985px;}
.y17_c00342{bottom:830.688939px;}
.y18_c00342{bottom:831.491565px;}
.y19_c00342{bottom:833.160738px;}
.y29_c00342{bottom:844.564500px;}
.ye_c00342{bottom:859.948210px;}
.yf_c00342{bottom:861.438915px;}
.y10_c00342{bottom:862.133388px;}
.y11_c00342{bottom:863.208922px;}
.y12_c00342{bottom:863.885551px;}
.y1_c00342{bottom:925.738500px;}
.y2_c00342{bottom:926.399414px;}
.y3_c00342{bottom:927.230620px;}
.y4_c00342{bottom:928.005590px;}
.y5_c00342{bottom:928.153945px;}
.y6_c00342{bottom:928.919067px;}
.y7_c00342{bottom:929.399586px;}
.y8_c00342{bottom:929.698404px;}
.y9_c00342{bottom:929.970527px;}
.ya_c00342{bottom:930.235258px;}
.yb_c00342{bottom:930.476473px;}
.yc_c00342{bottom:931.046225px;}
.yd_c00342{bottom:931.407774px;}
.h7_c00342{height:22.050000px;}
.h2_c00342{height:29.402484px;}
.h18_c00342{height:49.357994px;}
.h19_c00342{height:50.408164px;}
.h17_c00342{height:55.659015px;}
.h4_c00342{height:61.964990px;}
.hd_c00342{height:63.003811px;}
.h8_c00342{height:65.103938px;}
.he_c00342{height:67.206585px;}
.h1a_c00342{height:68.258735px;}
.h10_c00342{height:69.306791px;}
.h14_c00342{height:69.307796px;}
.h5_c00342{height:69.316769px;}
.h12_c00342{height:70.356894px;}
.h13_c00342{height:70.357914px;}
.h6_c00342{height:70.367023px;}
.hb_c00342{height:71.404320px;}
.hc_c00342{height:72.454383px;}
.h11_c00342{height:72.457100px;}
.h9_c00342{height:72.458150px;}
.h15_c00342{height:72.460468px;}
.h16_c00342{height:73.510620px;}
.ha_c00342{height:74.554510px;}
.hf_c00342{height:74.557306px;}
.h3_c00342{height:101.858606px;}
.h1_c00342{height:1005.000000px;}
.h0_c00342{height:1005.150000px;}
.w0_c00342{width:702.540000px;}
.w1_c00342{width:702.750000px;}
.x0_c00342{left:0.000000px;}
.xe_c00342{left:32.152028px;}
.x19_c00342{left:41.453904px;}
.x1_c00342{left:44.590500px;}
.x13_c00342{left:47.668500px;}
.x27_c00342{left:63.174000px;}
.x46_c00342{left:75.778633px;}
.x4d_c00342{left:78.731543px;}
.x54_c00342{left:81.138242px;}
.x87_c00342{left:87.714561px;}
.x1a_c00342{left:89.960259px;}
.x2_c00342{left:95.430000px;}
.x6d_c00342{left:96.792450px;}
.xa0_c00342{left:98.266500px;}
.x90_c00342{left:99.579000px;}
.x9d_c00342{left:100.670730px;}
.xb2_c00342{left:103.032021px;}
.x1b_c00342{left:107.524500px;}
.x3d_c00342{left:108.687000px;}
.x80_c00342{left:112.550058px;}
.xab_c00342{left:116.025000px;}
.x3b_c00342{left:122.785500px;}
.x31_c00342{left:124.074886px;}
.x68_c00342{left:126.552366px;}
.x88_c00342{left:127.636494px;}
.x6e_c00342{left:129.283047px;}
.x91_c00342{left:131.685000px;}
.xac_c00342{left:133.017000px;}
.x95_c00342{left:136.569833px;}
.xb4_c00342{left:137.887926px;}
.x55_c00342{left:142.656242px;}
.x32_c00342{left:144.056386px;}
.x14_c00342{left:145.551000px;}
.x1c_c00342{left:148.750185px;}
.x3e_c00342{left:152.700000px;}
.xf_c00342{left:156.400146px;}
.xad_c00342{left:157.636500px;}
.x3_c00342{left:159.369000px;}
.x28_c00342{left:164.056500px;}
.xa1_c00342{left:167.380500px;}
.x3f_c00342{left:170.818500px;}
.x6f_c00342{left:173.564808px;}
.x69_c00342{left:176.533173px;}
.x1d_c00342{left:179.282832px;}
.x60_c00342{left:180.896655px;}
.xa2_c00342{left:185.221500px;}
.x33_c00342{left:187.529386px;}
.x79_c00342{left:192.200427px;}
.xb7_c00342{left:195.190500px;}
.x92_c00342{left:196.800000px;}
.xb3_c00342{left:198.925722px;}
.x70_c00342{left:200.042073px;}
.x3c_c00342{left:204.622500px;}
.x81_c00342{left:205.732131px;}
.x15_c00342{left:208.207500px;}
.x7a_c00342{left:210.324171px;}
.x89_c00342{left:212.164818px;}
.x10_c00342{left:214.321907px;}
.x75_c00342{left:215.379537px;}
.x5d_c00342{left:217.765500px;}
.x4_c00342{left:218.982000px;}
.x71_c00342{left:221.093985px;}
.xae_c00342{left:222.160500px;}
.x56_c00342{left:223.719242px;}
.x1e_c00342{left:226.094286px;}
.x5_c00342{left:230.394000px;}
.x6a_c00342{left:234.865854px;}
.x29_c00342{left:238.314000px;}
.x8a_c00342{left:241.868898px;}
.x96_c00342{left:243.512235px;}
.x4e_c00342{left:250.459043px;}
.x76_c00342{left:255.123924px;}
.x1f_c00342{left:258.239367px;}
.x82_c00342{left:259.414884px;}
.x16_c00342{left:261.486000px;}
.x97_c00342{left:264.577920px;}
.x34_c00342{left:265.848886px;}
.x4f_c00342{left:269.897543px;}
.x47_c00342{left:271.215988px;}
.x72_c00342{left:273.469515px;}
.x2a_c00342{left:278.274000px;}
.x61_c00342{left:281.731341px;}
.xa3_c00342{left:285.043500px;}
.x9e_c00342{left:286.982918px;}
.x6_c00342{left:289.249500px;}
.xa7_c00342{left:291.051952px;}
.x6b_c00342{left:292.303056px;}
.x48_c00342{left:294.219741px;}
.x62_c00342{left:296.364921px;}
.x2b_c00342{left:299.350500px;}
.x50_c00342{left:300.886043px;}
.x11_c00342{left:303.979577px;}
.x40_c00342{left:310.138500px;}
.x35_c00342{left:313.638886px;}
.x20_c00342{left:321.148095px;}
.x17_c00342{left:324.876000px;}
.x7_c00342{left:326.212500px;}
.x49_c00342{left:331.960828px;}
.x98_c00342{left:333.893385px;}
.x8b_c00342{left:335.043096px;}
.x83_c00342{left:336.409650px;}
.x41_c00342{left:338.172000px;}
.x63_c00342{left:346.642014px;}
.x8_c00342{left:349.198500px;}
.x73_c00342{left:350.985831px;}
.x5e_c00342{left:352.578000px;}
.xa4_c00342{left:353.701500px;}
.x2c_c00342{left:354.970500px;}
.x9f_c00342{left:356.032883px;}
.x36_c00342{left:357.657886px;}
.x12_c00342{left:360.413318px;}
.x99_c00342{left:362.050958px;}
.x4a_c00342{left:364.685966px;}
.x59_c00342{left:365.866184px;}
.x9_c00342{left:370.131000px;}
.x7b_c00342{left:372.906846px;}
.x42_c00342{left:378.186000px;}
.x21_c00342{left:380.701488px;}
.x84_c00342{left:383.404176px;}
.x51_c00342{left:386.263043px;}
.x64_c00342{left:388.789338px;}
.xa_c00342{left:390.495000px;}
.x2d_c00342{left:391.714500px;}
.x22_c00342{left:396.902262px;}
.x5f_c00342{left:398.956500px;}
.x18_c00342{left:400.747500px;}
.x8c_c00342{left:403.280130px;}
.xaf_c00342{left:404.953500px;}
.x26_c00342{left:407.160000px;}
.xb_c00342{left:409.050000px;}
.x74_c00342{left:411.438651px;}
.x37_c00342{left:415.472386px;}
.x57_c00342{left:417.852242px;}
.x85_c00342{left:426.879849px;}
.x2e_c00342{left:432.463500px;}
.xa5_c00342{left:434.388000px;}
.xa8_c00342{left:438.225953px;}
.x43_c00342{left:442.762500px;}
.x7c_c00342{left:444.126864px;}
.x5a_c00342{left:445.521320px;}
.x9a_c00342{left:446.561198px;}
.xb5_c00342{left:449.081748px;}
.x8d_c00342{left:450.331479px;}
.xc_c00342{left:452.877000px;}
.x65_c00342{left:454.042011px;}
.x77_c00342{left:459.520212px;}
.x38_c00342{left:460.817386px;}
.xa9_c00342{left:463.071952px;}
.x23_c00342{left:466.064226px;}
.x5b_c00342{left:467.392460px;}
.x52_c00342{left:469.444043px;}
.x93_c00342{left:474.097500px;}
.x66_c00342{left:475.128423px;}
.x2f_c00342{left:478.072500px;}
.xd_c00342{left:480.688500px;}
.xb0_c00342{left:482.764500px;}
.x78_c00342{left:488.152914px;}
.x7d_c00342{left:489.532953px;}
.x5c_c00342{left:493.584128px;}
.x8e_c00342{left:497.574828px;}
.x44_c00342{left:500.257500px;}
.x39_c00342{left:503.711386px;}
.x4b_c00342{left:506.716398px;}
.xaa_c00342{left:508.961453px;}
.x8f_c00342{left:512.967618px;}
.x9b_c00342{left:515.696663px;}
.x24_c00342{left:517.262982px;}
.x67_c00342{left:518.390205px;}
.x3a_c00342{left:520.722886px;}
.x58_c00342{left:521.817242px;}
.x53_c00342{left:522.895043px;}
.x7e_c00342{left:525.124962px;}
.xb6_c00342{left:527.935413px;}
.xa6_c00342{left:535.426500px;}
.x4c_c00342{left:537.484052px;}
.x45_c00342{left:541.251000px;}
.x9c_c00342{left:545.606213px;}
.x30_c00342{left:548.220000px;}
.x25_c00342{left:549.486063px;}
.x86_c00342{left:552.690057px;}
.x6c_c00342{left:554.263881px;}
.x7f_c00342{left:558.338076px;}
.x94_c00342{left:559.354500px;}
.xb1_c00342{left:563.997000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.fs5_c00342{font-size:19.600000pt;}
.fs0_c00342{font-size:26.135542pt;}
.fs16_c00342{font-size:43.873772pt;}
.fs17_c00342{font-size:44.807257pt;}
.fs15_c00342{font-size:49.474680pt;}
.fs2_c00342{font-size:55.079991pt;}
.fsb_c00342{font-size:56.003388pt;}
.fs6_c00342{font-size:57.870167pt;}
.fsc_c00342{font-size:59.739187pt;}
.fs18_c00342{font-size:60.674432pt;}
.fse_c00342{font-size:61.606037pt;}
.fs12_c00342{font-size:61.606930pt;}
.fs3_c00342{font-size:61.614905pt;}
.fs10_c00342{font-size:62.539461pt;}
.fs11_c00342{font-size:62.540368pt;}
.fs4_c00342{font-size:62.548465pt;}
.fs9_c00342{font-size:63.470506pt;}
.fsa_c00342{font-size:64.403896pt;}
.fsf_c00342{font-size:64.406311pt;}
.fs7_c00342{font-size:64.407245pt;}
.fs13_c00342{font-size:64.409305pt;}
.fs14_c00342{font-size:65.342773pt;}
.fs8_c00342{font-size:66.270676pt;}
.fsd_c00342{font-size:66.273160pt;}
.fs1_c00342{font-size:90.540983pt;}
.y0_c00342{bottom:0.000000pt;}
.y127_c00342{bottom:136.797379pt;}
.y128_c00342{bottom:137.411552pt;}
.y129_c00342{bottom:137.944741pt;}
.y12a_c00342{bottom:138.480955pt;}
.y12b_c00342{bottom:138.899184pt;}
.y12c_c00342{bottom:139.609523pt;}
.y12d_c00342{bottom:140.539808pt;}
.y12e_c00342{bottom:141.208659pt;}
.y12f_c00342{bottom:142.942832pt;}
.y130_c00342{bottom:144.344536pt;}
.y11b_c00342{bottom:152.879048pt;}
.y11c_c00342{bottom:153.201757pt;}
.y11d_c00342{bottom:154.051008pt;}
.y11e_c00342{bottom:154.329320pt;}
.y11f_c00342{bottom:155.111901pt;}
.y120_c00342{bottom:155.718909pt;}
.y121_c00342{bottom:155.903339pt;}
.y122_c00342{bottom:156.421816pt;}
.y123_c00342{bottom:156.661693pt;}
.y124_c00342{bottom:157.403165pt;}
.y125_c00342{bottom:157.778683pt;}
.y126_c00342{bottom:158.016533pt;}
.y10e_c00342{bottom:168.722667pt;}
.y10f_c00342{bottom:168.994539pt;}
.y110_c00342{bottom:169.388451pt;}
.y111_c00342{bottom:170.420835pt;}
.y112_c00342{bottom:171.103515pt;}
.y113_c00342{bottom:171.824379pt;}
.y114_c00342{bottom:172.278987pt;}
.y115_c00342{bottom:172.507587pt;}
.y116_c00342{bottom:173.345523pt;}
.y117_c00342{bottom:173.791107pt;}
.y118_c00342{bottom:174.590499pt;}
.y119_c00342{bottom:175.441179pt;}
.y11a_c00342{bottom:175.890219pt;}
.y104_c00342{bottom:212.639856pt;}
.y105_c00342{bottom:213.317521pt;}
.y106_c00342{bottom:213.636056pt;}
.y107_c00342{bottom:214.276797pt;}
.y108_c00342{bottom:215.504696pt;}
.y109_c00342{bottom:216.145233pt;}
.y10a_c00342{bottom:216.521024pt;}
.y10b_c00342{bottom:217.728659pt;}
.y10c_c00342{bottom:218.104109pt;}
.y10d_c00342{bottom:218.797551pt;}
.yf8_c00342{bottom:232.804000pt;}
.yf9_c00342{bottom:233.517819pt;}
.yfa_c00342{bottom:233.848389pt;}
.yfb_c00342{bottom:234.117987pt;}
.yfc_c00342{bottom:235.234773pt;}
.yfd_c00342{bottom:235.626408pt;}
.yfe_c00342{bottom:236.002901pt;}
.yff_c00342{bottom:236.663907pt;}
.y100_c00342{bottom:237.047925pt;}
.y101_c00342{bottom:237.883169pt;}
.y102_c00342{bottom:238.353208pt;}
.y103_c00342{bottom:239.409973pt;}
.yef_c00342{bottom:253.677320pt;}
.yf0_c00342{bottom:255.208780pt;}
.yf1_c00342{bottom:255.689687pt;}
.yf2_c00342{bottom:256.328187pt;}
.yf3_c00342{bottom:257.310200pt;}
.yf4_c00342{bottom:257.829400pt;}
.yf5_c00342{bottom:259.208127pt;}
.yf6_c00342{bottom:259.608340pt;}
.yf7_c00342{bottom:260.041707pt;}
.ye1_c00342{bottom:273.840153pt;}
.ye2_c00342{bottom:274.361853pt;}
.ye3_c00342{bottom:274.957567pt;}
.ye4_c00342{bottom:275.276147pt;}
.ye5_c00342{bottom:275.882440pt;}
.ye6_c00342{bottom:276.181987pt;}
.ye7_c00342{bottom:276.631307pt;}
.ye8_c00342{bottom:277.167540pt;}
.ye9_c00342{bottom:277.568313pt;}
.yea_c00342{bottom:277.913827pt;}
.yeb_c00342{bottom:278.769800pt;}
.yec_c00342{bottom:279.088840pt;}
.yed_c00342{bottom:279.752953pt;}
.yee_c00342{bottom:280.178420pt;}
.yd5_c00342{bottom:294.722667pt;}
.yd6_c00342{bottom:295.150747pt;}
.yd7_c00342{bottom:295.420547pt;}
.yd8_c00342{bottom:296.018947pt;}
.yd9_c00342{bottom:296.400347pt;}
.yda_c00342{bottom:296.792867pt;}
.ydb_c00342{bottom:297.412167pt;}
.ydc_c00342{bottom:298.595567pt;}
.ydd_c00342{bottom:299.158247pt;}
.yde_c00342{bottom:299.716247pt;}
.ydf_c00342{bottom:300.158127pt;}
.ye0_c00342{bottom:300.853007pt;}
.y131_c00342{bottom:314.162667pt;}
.y132_c00342{bottom:314.812949pt;}
.y133_c00342{bottom:315.527275pt;}
.y134_c00342{bottom:316.383616pt;}
.y135_c00342{bottom:316.810240pt;}
.y136_c00342{bottom:317.738411pt;}
.y137_c00342{bottom:318.391979pt;}
.y138_c00342{bottom:319.094976pt;}
.y139_c00342{bottom:320.258347pt;}
.y13a_c00342{bottom:320.511936pt;}
.yc8_c00342{bottom:335.026387pt;}
.yc9_c00342{bottom:335.559200pt;}
.yca_c00342{bottom:335.840077pt;}
.ycb_c00342{bottom:336.429019pt;}
.ycc_c00342{bottom:336.685789pt;}
.ycd_c00342{bottom:337.082112pt;}
.yce_c00342{bottom:337.600768pt;}
.ycf_c00342{bottom:338.324296pt;}
.yd0_c00342{bottom:338.978995pt;}
.yd1_c00342{bottom:339.234813pt;}
.yd2_c00342{bottom:339.861683pt;}
.yd3_c00342{bottom:340.490941pt;}
.yd4_c00342{bottom:340.695832pt;}
.ybd_c00342{bottom:355.187592pt;}
.ybe_c00342{bottom:355.530075pt;}
.ybf_c00342{bottom:356.064603pt;}
.yc0_c00342{bottom:356.939056pt;}
.yc1_c00342{bottom:357.749803pt;}
.yc2_c00342{bottom:358.341843pt;}
.yc3_c00342{bottom:358.913333pt;}
.yc4_c00342{bottom:359.623512pt;}
.yc5_c00342{bottom:360.280565pt;}
.yc6_c00342{bottom:360.786371pt;}
.yc7_c00342{bottom:362.182269pt;}
.yb1_c00342{bottom:376.311992pt;}
.yb2_c00342{bottom:377.212995pt;}
.yb3_c00342{bottom:377.740104pt;}
.yb4_c00342{bottom:378.013653pt;}
.yb5_c00342{bottom:379.367728pt;}
.yb6_c00342{bottom:380.061576pt;}
.yb7_c00342{bottom:380.470323pt;}
.yb8_c00342{bottom:381.545987pt;}
.yb9_c00342{bottom:382.097760pt;}
.yba_c00342{bottom:382.232397pt;}
.ybb_c00342{bottom:382.770005pt;}
.ybc_c00342{bottom:383.271341pt;}
.ya8_c00342{bottom:396.474715pt;}
.ya9_c00342{bottom:397.520048pt;}
.yaa_c00342{bottom:398.152499pt;}
.yab_c00342{bottom:398.717776pt;}
.yac_c00342{bottom:399.728757pt;}
.yad_c00342{bottom:401.033301pt;}
.yae_c00342{bottom:401.624112pt;}
.yaf_c00342{bottom:402.031107pt;}
.yb0_c00342{bottom:402.883544pt;}
.y9b_c00342{bottom:416.876707pt;}
.y9c_c00342{bottom:417.338379pt;}
.y9d_c00342{bottom:417.968123pt;}
.y9e_c00342{bottom:418.344293pt;}
.y9f_c00342{bottom:418.643613pt;}
.ya0_c00342{bottom:419.388749pt;}
.ya1_c00342{bottom:419.715907pt;}
.ya2_c00342{bottom:420.492091pt;}
.ya3_c00342{bottom:420.633408pt;}
.ya4_c00342{bottom:421.351080pt;}
.ya5_c00342{bottom:421.808795pt;}
.ya6_c00342{bottom:422.861360pt;}
.ya7_c00342{bottom:423.377877pt;}
.y90_c00342{bottom:437.519259pt;}
.y91_c00342{bottom:437.923104pt;}
.y92_c00342{bottom:438.322899pt;}
.y93_c00342{bottom:438.589096pt;}
.y94_c00342{bottom:439.367024pt;}
.y95_c00342{bottom:440.132475pt;}
.y96_c00342{bottom:440.409992pt;}
.y97_c00342{bottom:440.965568pt;}
.y98_c00342{bottom:442.146501pt;}
.y99_c00342{bottom:443.158549pt;}
.y9a_c00342{bottom:443.625811pt;}
.y86_c00342{bottom:457.921725pt;}
.y87_c00342{bottom:459.124744pt;}
.y88_c00342{bottom:460.558277pt;}
.y89_c00342{bottom:460.767056pt;}
.y8a_c00342{bottom:461.162432pt;}
.y8b_c00342{bottom:461.482077pt;}
.y8c_c00342{bottom:462.081259pt;}
.y8d_c00342{bottom:463.009315pt;}
.y8e_c00342{bottom:463.309064pt;}
.y8f_c00342{bottom:463.924781pt;}
.y7c_c00342{bottom:478.802667pt;}
.y7d_c00342{bottom:479.401064pt;}
.y7e_c00342{bottom:480.327621pt;}
.y7f_c00342{bottom:480.745213pt;}
.y80_c00342{bottom:481.289720pt;}
.y81_c00342{bottom:482.005288pt;}
.y82_c00342{bottom:482.582443pt;}
.y83_c00342{bottom:483.247797pt;}
.y84_c00342{bottom:483.765984pt;}
.y85_c00342{bottom:484.343792pt;}
.y76_c00342{bottom:564.953701pt;}
.y77_c00342{bottom:564.954048pt;}
.y78_c00342{bottom:564.954137pt;}
.y7b_c00342{bottom:564.954612pt;}
.y79_c00342{bottom:564.954629pt;}
.y7a_c00342{bottom:564.954695pt;}
.y6a_c00342{bottom:581.036324pt;}
.y6b_c00342{bottom:581.637833pt;}
.y6c_c00342{bottom:581.912980pt;}
.y6d_c00342{bottom:582.430449pt;}
.y6e_c00342{bottom:583.074595pt;}
.y6f_c00342{bottom:583.283228pt;}
.y70_c00342{bottom:583.549912pt;}
.y71_c00342{bottom:584.130565pt;}
.y72_c00342{bottom:584.328639pt;}
.y73_c00342{bottom:584.568893pt;}
.y74_c00342{bottom:584.914543pt;}
.y75_c00342{bottom:585.345185pt;}
.y5e_c00342{bottom:601.197512pt;}
.y5f_c00342{bottom:601.556611pt;}
.y60_c00342{bottom:602.461617pt;}
.y61_c00342{bottom:602.923676pt;}
.y62_c00342{bottom:603.235724pt;}
.y63_c00342{bottom:603.425789pt;}
.y64_c00342{bottom:603.728788pt;}
.y65_c00342{bottom:603.935280pt;}
.y66_c00342{bottom:604.262127pt;}
.y67_c00342{bottom:604.563585pt;}
.y68_c00342{bottom:605.376911pt;}
.y69_c00342{bottom:605.899543pt;}
.y53_c00342{bottom:621.368331pt;}
.y54_c00342{bottom:621.724848pt;}
.y55_c00342{bottom:622.674744pt;}
.y56_c00342{bottom:623.365853pt;}
.y57_c00342{bottom:623.809145pt;}
.y58_c00342{bottom:624.054073pt;}
.y59_c00342{bottom:624.456435pt;}
.y5a_c00342{bottom:624.805751pt;}
.y5b_c00342{bottom:625.744485pt;}
.y5c_c00342{bottom:626.321175pt;}
.y5d_c00342{bottom:626.650017pt;}
.y48_c00342{bottom:641.521333pt;}
.y49_c00342{bottom:642.181055pt;}
.y4a_c00342{bottom:642.611404pt;}
.y4b_c00342{bottom:642.788563pt;}
.y4c_c00342{bottom:643.649291pt;}
.y4d_c00342{bottom:644.150803pt;}
.y4e_c00342{bottom:644.424908pt;}
.y4f_c00342{bottom:644.816156pt;}
.y50_c00342{bottom:645.447571pt;}
.y51_c00342{bottom:646.009744pt;}
.y52_c00342{bottom:646.410569pt;}
.y43_c00342{bottom:662.405333pt;}
.y44_c00342{bottom:663.060973pt;}
.y45_c00342{bottom:663.490353pt;}
.y46_c00342{bottom:664.033993pt;}
.y47_c00342{bottom:664.581513pt;}
.y35_c00342{bottom:683.039920pt;}
.y36_c00342{bottom:683.514533pt;}
.y37_c00342{bottom:683.845091pt;}
.y38_c00342{bottom:684.040465pt;}
.y39_c00342{bottom:684.465535pt;}
.y3a_c00342{bottom:684.782115pt;}
.y3b_c00342{bottom:685.231325pt;}
.y3c_c00342{bottom:685.698605pt;}
.y3d_c00342{bottom:686.129013pt;}
.y3e_c00342{bottom:686.503805pt;}
.y3f_c00342{bottom:686.694311pt;}
.y40_c00342{bottom:687.137684pt;}
.y41_c00342{bottom:687.557092pt;}
.y42_c00342{bottom:687.723427pt;}
.y2a_c00342{bottom:702.960000pt;}
.y2b_c00342{bottom:703.217752pt;}
.y2c_c00342{bottom:703.946407pt;}
.y2d_c00342{bottom:704.672480pt;}
.y2e_c00342{bottom:705.063200pt;}
.y2f_c00342{bottom:705.269281pt;}
.y30_c00342{bottom:705.813121pt;}
.y31_c00342{bottom:706.172396pt;}
.y32_c00342{bottom:706.570831pt;}
.y33_c00342{bottom:707.016785pt;}
.y34_c00342{bottom:707.702672pt;}
.y28_c00342{bottom:709.433955pt;}
.y1a_c00342{bottom:721.916800pt;}
.y1b_c00342{bottom:722.104928pt;}
.y1c_c00342{bottom:723.140205pt;}
.y1d_c00342{bottom:723.514365pt;}
.y1e_c00342{bottom:724.393925pt;}
.y1f_c00342{bottom:725.045701pt;}
.y20_c00342{bottom:726.043832pt;}
.y21_c00342{bottom:726.729808pt;}
.y22_c00342{bottom:728.072077pt;}
.y23_c00342{bottom:729.342061pt;}
.y24_c00342{bottom:729.688224pt;}
.y25_c00342{bottom:731.163451pt;}
.y26_c00342{bottom:732.255381pt;}
.y27_c00342{bottom:732.942883pt;}
.y13_c00342{bottom:733.682667pt;}
.y14_c00342{bottom:735.596813pt;}
.y15_c00342{bottom:736.822096pt;}
.y16_c00342{bottom:737.863987pt;}
.y17_c00342{bottom:738.390168pt;}
.y18_c00342{bottom:739.103613pt;}
.y19_c00342{bottom:740.587323pt;}
.y29_c00342{bottom:750.724000pt;}
.ye_c00342{bottom:764.398409pt;}
.yf_c00342{bottom:765.723480pt;}
.y10_c00342{bottom:766.340789pt;}
.y11_c00342{bottom:767.296820pt;}
.y12_c00342{bottom:767.898268pt;}
.y1_c00342{bottom:822.878667pt;}
.y2_c00342{bottom:823.466145pt;}
.y3_c00342{bottom:824.204996pt;}
.y4_c00342{bottom:824.893857pt;}
.y5_c00342{bottom:825.025729pt;}
.y6_c00342{bottom:825.705837pt;}
.y7_c00342{bottom:826.132965pt;}
.y8_c00342{bottom:826.398581pt;}
.y9_c00342{bottom:826.640468pt;}
.ya_c00342{bottom:826.875785pt;}
.yb_c00342{bottom:827.090199pt;}
.yc_c00342{bottom:827.596644pt;}
.yd_c00342{bottom:827.918021pt;}
.h7_c00342{height:19.600000pt;}
.h2_c00342{height:26.135542pt;}
.h18_c00342{height:43.873772pt;}
.h19_c00342{height:44.807257pt;}
.h17_c00342{height:49.474680pt;}
.h4_c00342{height:55.079991pt;}
.hd_c00342{height:56.003388pt;}
.h8_c00342{height:57.870167pt;}
.he_c00342{height:59.739187pt;}
.h1a_c00342{height:60.674432pt;}
.h10_c00342{height:61.606037pt;}
.h14_c00342{height:61.606930pt;}
.h5_c00342{height:61.614905pt;}
.h12_c00342{height:62.539461pt;}
.h13_c00342{height:62.540368pt;}
.h6_c00342{height:62.548465pt;}
.hb_c00342{height:63.470506pt;}
.hc_c00342{height:64.403896pt;}
.h11_c00342{height:64.406311pt;}
.h9_c00342{height:64.407245pt;}
.h15_c00342{height:64.409305pt;}
.h16_c00342{height:65.342773pt;}
.ha_c00342{height:66.270676pt;}
.hf_c00342{height:66.273160pt;}
.h3_c00342{height:90.540983pt;}
.h1_c00342{height:893.333333pt;}
.h0_c00342{height:893.466667pt;}
.w0_c00342{width:624.480000pt;}
.w1_c00342{width:624.666667pt;}
.x0_c00342{left:0.000000pt;}
.xe_c00342{left:28.579580pt;}
.x19_c00342{left:36.847915pt;}
.x1_c00342{left:39.636000pt;}
.x13_c00342{left:42.372000pt;}
.x27_c00342{left:56.154667pt;}
.x46_c00342{left:67.358785pt;}
.x4d_c00342{left:69.983593pt;}
.x54_c00342{left:72.122881pt;}
.x87_c00342{left:77.968499pt;}
.x1a_c00342{left:79.964675pt;}
.x2_c00342{left:84.826667pt;}
.x6d_c00342{left:86.037733pt;}
.xa0_c00342{left:87.348000pt;}
.x90_c00342{left:88.514667pt;}
.x9d_c00342{left:89.485093pt;}
.xb2_c00342{left:91.584019pt;}
.x1b_c00342{left:95.577333pt;}
.x3d_c00342{left:96.610667pt;}
.x80_c00342{left:100.044496pt;}
.xab_c00342{left:103.133333pt;}
.x3b_c00342{left:109.142667pt;}
.x31_c00342{left:110.288788pt;}
.x68_c00342{left:112.490992pt;}
.x88_c00342{left:113.454661pt;}
.x6e_c00342{left:114.918264pt;}
.x91_c00342{left:117.053333pt;}
.xac_c00342{left:118.237333pt;}
.x95_c00342{left:121.395407pt;}
.xb4_c00342{left:122.567045pt;}
.x55_c00342{left:126.805548pt;}
.x32_c00342{left:128.050121pt;}
.x14_c00342{left:129.378667pt;}
.x1c_c00342{left:132.222387pt;}
.x3e_c00342{left:135.733333pt;}
.xf_c00342{left:139.022352pt;}
.xad_c00342{left:140.121333pt;}
.x3_c00342{left:141.661333pt;}
.x28_c00342{left:145.828000pt;}
.xa1_c00342{left:148.782667pt;}
.x3f_c00342{left:151.838667pt;}
.x6f_c00342{left:154.279829pt;}
.x69_c00342{left:156.918376pt;}
.x1d_c00342{left:159.362517pt;}
.x60_c00342{left:160.797027pt;}
.xa2_c00342{left:164.641333pt;}
.x33_c00342{left:166.692788pt;}
.x79_c00342{left:170.844824pt;}
.xb7_c00342{left:173.502667pt;}
.x92_c00342{left:174.933333pt;}
.xb3_c00342{left:176.822864pt;}
.x70_c00342{left:177.815176pt;}
.x3c_c00342{left:181.886667pt;}
.x81_c00342{left:182.873005pt;}
.x15_c00342{left:185.073333pt;}
.x7a_c00342{left:186.954819pt;}
.x89_c00342{left:188.590949pt;}
.x10_c00342{left:190.508361pt;}
.x75_c00342{left:191.448477pt;}
.x5d_c00342{left:193.569333pt;}
.x4_c00342{left:194.650667pt;}
.x71_c00342{left:196.527987pt;}
.xae_c00342{left:197.476000pt;}
.x56_c00342{left:198.861548pt;}
.x1e_c00342{left:200.972699pt;}
.x5_c00342{left:204.794667pt;}
.x6a_c00342{left:208.769648pt;}
.x29_c00342{left:211.834667pt;}
.x8a_c00342{left:214.994576pt;}
.x96_c00342{left:216.455320pt;}
.x4e_c00342{left:222.630260pt;}
.x76_c00342{left:226.776821pt;}
.x1f_c00342{left:229.546104pt;}
.x82_c00342{left:230.591008pt;}
.x16_c00342{left:232.432000pt;}
.x97_c00342{left:235.180373pt;}
.x34_c00342{left:236.310121pt;}
.x4f_c00342{left:239.908927pt;}
.x47_c00342{left:241.080879pt;}
.x72_c00342{left:243.084013pt;}
.x2a_c00342{left:247.354667pt;}
.x61_c00342{left:250.427859pt;}
.xa3_c00342{left:253.372000pt;}
.x9e_c00342{left:255.095927pt;}
.x6_c00342{left:257.110667pt;}
.xa7_c00342{left:258.712847pt;}
.x6b_c00342{left:259.824939pt;}
.x48_c00342{left:261.528659pt;}
.x62_c00342{left:263.435485pt;}
.x2b_c00342{left:266.089333pt;}
.x50_c00342{left:267.454260pt;}
.x11_c00342{left:270.204068pt;}
.x40_c00342{left:275.678667pt;}
.x35_c00342{left:278.790121pt;}
.x20_c00342{left:285.464973pt;}
.x17_c00342{left:288.778667pt;}
.x7_c00342{left:289.966667pt;}
.x49_c00342{left:295.076292pt;}
.x98_c00342{left:296.794120pt;}
.x8b_c00342{left:297.816085pt;}
.x83_c00342{left:299.030800pt;}
.x41_c00342{left:300.597333pt;}
.x63_c00342{left:308.126235pt;}
.x8_c00342{left:310.398667pt;}
.x73_c00342{left:311.987405pt;}
.x5e_c00342{left:313.402667pt;}
.xa4_c00342{left:314.401333pt;}
.x2c_c00342{left:315.529333pt;}
.x9f_c00342{left:316.473673pt;}
.x36_c00342{left:317.918121pt;}
.x12_c00342{left:320.367393pt;}
.x99_c00342{left:321.823073pt;}
.x4a_c00342{left:324.165303pt;}
.x59_c00342{left:325.214385pt;}
.x9_c00342{left:329.005333pt;}
.x7b_c00342{left:331.472752pt;}
.x42_c00342{left:336.165333pt;}
.x21_c00342{left:338.401323pt;}
.x84_c00342{left:340.803712pt;}
.x51_c00342{left:343.344927pt;}
.x64_c00342{left:345.590523pt;}
.xa_c00342{left:347.106667pt;}
.x2d_c00342{left:348.190667pt;}
.x22_c00342{left:352.802011pt;}
.x5f_c00342{left:354.628000pt;}
.x18_c00342{left:356.220000pt;}
.x8c_c00342{left:358.471227pt;}
.xaf_c00342{left:359.958667pt;}
.x26_c00342{left:361.920000pt;}
.xb_c00342{left:363.600000pt;}
.x74_c00342{left:365.723245pt;}
.x37_c00342{left:369.308788pt;}
.x57_c00342{left:371.424215pt;}
.x85_c00342{left:379.448755pt;}
.x2e_c00342{left:384.412000pt;}
.xa5_c00342{left:386.122667pt;}
.xa8_c00342{left:389.534180pt;}
.x43_c00342{left:393.566667pt;}
.x7c_c00342{left:394.779435pt;}
.x5a_c00342{left:396.018951pt;}
.x9a_c00342{left:396.943287pt;}
.xb5_c00342{left:399.183776pt;}
.x8d_c00342{left:400.294648pt;}
.xc_c00342{left:402.557333pt;}
.x65_c00342{left:403.592899pt;}
.x77_c00342{left:408.462411pt;}
.x38_c00342{left:409.615455pt;}
.xa9_c00342{left:411.619513pt;}
.x23_c00342{left:414.279312pt;}
.x5b_c00342{left:415.459964pt;}
.x52_c00342{left:417.283593pt;}
.x93_c00342{left:421.420000pt;}
.x66_c00342{left:422.336376pt;}
.x2f_c00342{left:424.953333pt;}
.xd_c00342{left:427.278667pt;}
.xb0_c00342{left:429.124000pt;}
.x78_c00342{left:433.913701pt;}
.x7d_c00342{left:435.140403pt;}
.x5c_c00342{left:438.741447pt;}
.x8e_c00342{left:442.288736pt;}
.x44_c00342{left:444.673333pt;}
.x39_c00342{left:447.743455pt;}
.x4b_c00342{left:450.414576pt;}
.xaa_c00342{left:452.410180pt;}
.x8f_c00342{left:455.971216pt;}
.x9b_c00342{left:458.397033pt;}
.x24_c00342{left:459.789317pt;}
.x67_c00342{left:460.791293pt;}
.x3a_c00342{left:462.864788pt;}
.x58_c00342{left:463.837548pt;}
.x53_c00342{left:464.795593pt;}
.x7e_c00342{left:466.777744pt;}
.xb6_c00342{left:469.275923pt;}
.xa6_c00342{left:475.934667pt;}
.x4c_c00342{left:477.763601pt;}
.x45_c00342{left:481.112000pt;}
.x9c_c00342{left:484.983300pt;}
.x30_c00342{left:487.306667pt;}
.x25_c00342{left:488.432056pt;}
.x86_c00342{left:491.280051pt;}
.x6c_c00342{left:492.679005pt;}
.x7f_c00342{left:496.300512pt;}
.x94_c00342{left:497.204000pt;}
.xb1_c00342{left:501.330667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m50_c00343{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);}
.m4f_c00343{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.041158,-0.000782,0.004749,0.249955,0,0);-ms-transform:matrix(0.041158,-0.000782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.041158,-0.000782,0.004749,0.249955,0,0);}
.m34_c00343{transform:matrix(0.080260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080260,0.000000,0.000000,0.250000,0,0);}
.m13c_c00343{transform:matrix(0.109917,0.001319,-0.003000,0.249982,0,0);-ms-transform:matrix(0.109917,0.001319,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.109917,0.001319,-0.003000,0.249982,0,0);}
.m74_c00343{transform:matrix(0.119165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119165,0.000000,0.000000,0.250000,0,0);}
.mc8_c00343{transform:matrix(0.128165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128165,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{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);}
.m14a_c00343{transform:matrix(0.136925,0.002054,-0.003750,0.249972,0,0);-ms-transform:matrix(0.136925,0.002054,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.136925,0.002054,-0.003750,0.249972,0,0);}
.ma9_c00343{transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m120_c00343{transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145880,0.000000,0.000000,0.250000,0,0);}
.md3_c00343{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);}
.mcf_c00343{transform:matrix(0.146770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146770,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{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);}
.m29_c00343{transform:matrix(0.147310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147310,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{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);}
.med_c00343{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);}
.mc_c00343{transform:matrix(0.148338,-0.002818,0.004749,0.249955,0,0);-ms-transform:matrix(0.148338,-0.002818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148338,-0.002818,0.004749,0.249955,0,0);}
.mce_c00343{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{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);}
.m3d_c00343{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);}
.m86_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);}
.mba_c00343{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);}
.mda_c00343{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);}
.m81_c00343{transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);}
.mc9_c00343{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);}
.m118_c00343{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);}
.mfb_c00343{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);}
.m132_c00343{transform:matrix(0.155194,0.001862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155194,0.001862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155194,0.001862,-0.003000,0.249982,0,0);}
.mb4_c00343{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);}
.m1e_c00343{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);}
.mcb_c00343{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.m117_c00343{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);}
.m7e_c00343{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);}
.m39_c00343{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);}
.m11b_c00343{transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158735,0.000000,0.000000,0.250000,0,0);}
.m146_c00343{transform:matrix(0.159079,0.001909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159079,0.001909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159079,0.001909,-0.003000,0.249982,0,0);}
.mf1_c00343{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);}
.m33_c00343{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);}
.md7_c00343{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);}
.ma3_c00343{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);}
.ma4_c00343{transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160690,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{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);}
.m62_c00343{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);}
.md4_c00343{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);}
.m143_c00343{transform:matrix(0.162308,0.001948,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162308,0.001948,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162308,0.001948,-0.003000,0.249982,0,0);}
.m6c_c00343{transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{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);}
.mee_c00343{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);}
.m4b_c00343{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);}
.m103_c00343{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);}
.m0_c00343{transform:matrix(0.164845,-0.003132,0.004749,0.249955,0,0);-ms-transform:matrix(0.164845,-0.003132,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164845,-0.003132,0.004749,0.249955,0,0);}
.m46_c00343{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);}
.m8d_c00343{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m12f_c00343{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);}
.m21_c00343{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);}
.mc7_c00343{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);}
.m79_c00343{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);}
.mc6_c00343{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);}
.mec_c00343{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);}
.mc4_c00343{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);}
.m82_c00343{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);}
.md0_c00343{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);}
.m100_c00343{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{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);}
.mbb_c00343{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);}
.m9e_c00343{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);}
.mf4_c00343{transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{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);}
.m2e_c00343{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);}
.mde_c00343{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);}
.mb0_c00343{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);}
.ma5_c00343{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m10b_c00343{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);}
.ma2_c00343{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);}
.m6d_c00343{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);}
.m1b_c00343{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);}
.m83_c00343{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);}
.m67_c00343{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);}
.m7b_c00343{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);}
.m7a_c00343{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);}
.m17_c00343{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);}
.m2f_c00343{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);}
.m109_c00343{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);}
.mfc_c00343{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);}
.m32_c00343{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);}
.m36_c00343{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);}
.mf8_c00343{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);}
.m4d_c00343{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);}
.mbd_c00343{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);}
.me8_c00343{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);}
.m20_c00343{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);}
.m15_c00343{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);}
.m9c_c00343{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);}
.m2c_c00343{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);}
.m2d_c00343{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);}
.m11a_c00343{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);}
.m6a_c00343{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);}
.m2a_c00343{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);}
.ma6_c00343{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);}
.m11e_c00343{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);}
.m136_c00343{transform:matrix(0.176997,0.002124,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176997,0.002124,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176997,0.002124,-0.003000,0.249982,0,0);}
.mfd_c00343{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);}
.m3e_c00343{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);}
.m69_c00343{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);}
.m87_c00343{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);}
.m23_c00343{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);}
.m1f_c00343{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);}
.m6b_c00343{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);}
.me2_c00343{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);}
.m78_c00343{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);}
.mca_c00343{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);}
.m13f_c00343{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);}
.m3a_c00343{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);}
.m96_c00343{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);}
.m68_c00343{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);}
.m5c_c00343{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);}
.mf5_c00343{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);}
.m116_c00343{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);}
.m10a_c00343{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);}
.ma7_c00343{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);}
.m90_c00343{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);}
.m7d_c00343{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);}
.m155_c00343{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);}
.m3c_c00343{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);}
.m14d_c00343{transform:matrix(0.182175,0.002733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182175,0.002733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182175,0.002733,-0.003750,0.249972,0,0);}
.m77_c00343{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);}
.m140_c00343{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);}
.md2_c00343{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);}
.m137_c00343{transform:matrix(0.182727,0.002193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182727,0.002193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182727,0.002193,-0.003000,0.249982,0,0);}
.m123_c00343{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);}
.mb1_c00343{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);}
.m11d_c00343{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);}
.m14_c00343{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);}
.m5e_c00343{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);}
.m125_c00343{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);}
.mdf_c00343{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);}
.m148_c00343{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);}
.m3b_c00343{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);}
.m25_c00343{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);}
.m9d_c00343{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);}
.m76_c00343{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);}
.mc0_c00343{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);}
.m101_c00343{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);}
.m144_c00343{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);}
.md6_c00343{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);}
.me6_c00343{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);}
.m91_c00343{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);}
.m75_c00343{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);}
.m119_c00343{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);}
.m10e_c00343{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);}
.m22_c00343{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);}
.m48_c00343{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);}
.m4e_c00343{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);}
.m114_c00343{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{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);}
.m102_c00343{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);}
.m3f_c00343{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);}
.mad_c00343{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);}
.m134_c00343{transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);}
.m135_c00343{transform:matrix(0.187626,0.002252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187626,0.002252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187626,0.002252,-0.003000,0.249982,0,0);}
.mbf_c00343{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);}
.m37_c00343{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);}
.m12c_c00343{transform:matrix(0.188316,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188316,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188316,0.002260,-0.003000,0.249982,0,0);}
.m13d_c00343{transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188351,0.002260,-0.003000,0.249982,0,0);}
.mbe_c00343{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);}
.m59_c00343{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);}
.m66_c00343{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);}
.m112_c00343{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);}
.m152_c00343{transform:matrix(0.188694,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188694,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188694,0.002830,-0.003750,0.249972,0,0);}
.m30_c00343{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);}
.mb5_c00343{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);}
.m26_c00343{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);}
.m147_c00343{transform:matrix(0.189756,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189756,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189756,0.002277,-0.003000,0.249982,0,0);}
.m139_c00343{transform:matrix(0.189866,0.002278,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189866,0.002278,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189866,0.002278,-0.003000,0.249982,0,0);}
.ma1_c00343{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);}
.m8e_c00343{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);}
.m11c_c00343{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);}
.m13e_c00343{transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);}
.m95_c00343{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);}
.m7f_c00343{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);}
.m106_c00343{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);}
.mae_c00343{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);}
.mea_c00343{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);}
.m107_c00343{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);}
.m13_c00343{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);}
.mdc_c00343{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);}
.mcd_c00343{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);}
.m156_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);}
.mb3_c00343{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);}
.mb7_c00343{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);}
.m54_c00343{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);}
.m49_c00343{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);}
.me9_c00343{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);}
.me7_c00343{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);}
.m130_c00343{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);}
.mcc_c00343{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_c00343{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);}
.m44_c00343{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);}
.m10d_c00343{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);}
.m142_c00343{transform:matrix(0.194521,0.002334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194521,0.002334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194521,0.002334,-0.003000,0.249982,0,0);}
.m9f_c00343{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);}
.m6e_c00343{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);}
.mc1_c00343{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);}
.m13a_c00343{transform:matrix(0.195106,0.002341,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195106,0.002341,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195106,0.002341,-0.003000,0.249982,0,0);}
.m129_c00343{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);}
.ma0_c00343{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);}
.m138_c00343{transform:matrix(0.195626,0.002348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195626,0.002348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195626,0.002348,-0.003000,0.249982,0,0);}
.mac_c00343{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);}
.m94_c00343{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);}
.m80_c00343{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);}
.m13b_c00343{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);}
.mb9_c00343{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);}
.m12b_c00343{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);}
.mfa_c00343{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);}
.m145_c00343{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);}
.m1d_c00343{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);}
.m99_c00343{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);}
.mc2_c00343{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);}
.mf9_c00343{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);}
.m5a_c00343{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);}
.maf_c00343{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);}
.m133_c00343{transform:matrix(0.201735,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201735,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201735,0.002421,-0.003000,0.249982,0,0);}
.m14f_c00343{transform:matrix(0.202582,0.003039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202582,0.003039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202582,0.003039,-0.003750,0.249972,0,0);}
.m154_c00343{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);}
.me3_c00343{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);}
.mfe_c00343{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);}
.m10_c00343{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);}
.m10c_c00343{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);}
.me5_c00343{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);}
.m42_c00343{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);}
.m71_c00343{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);}
.m8c_c00343{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);}
.m4a_c00343{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);}
.me4_c00343{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);}
.m53_c00343{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);}
.m104_c00343{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);}
.m19_c00343{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);}
.m57_c00343{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);}
.m12e_c00343{transform:matrix(0.207305,0.002488,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207305,0.002488,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207305,0.002488,-0.003000,0.249982,0,0);}
.mb2_c00343{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);}
.m1_c00343{transform:matrix(0.207897,-0.003950,0.004749,0.249955,0,0);-ms-transform:matrix(0.207897,-0.003950,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207897,-0.003950,0.004749,0.249955,0,0);}
.md1_c00343{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);}
.mf6_c00343{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);}
.m14c_c00343{transform:matrix(0.208637,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208637,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208637,0.003130,-0.003750,0.249972,0,0);}
.m108_c00343{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);}
.mb6_c00343{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);}
.m72_c00343{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);}
.m105_c00343{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);}
.m12d_c00343{transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);}
.m88_c00343{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);}
.mdb_c00343{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);}
.mf2_c00343{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);}
.m7c_c00343{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);}
.m124_c00343{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);}
.m18_c00343{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);}
.m131_c00343{transform:matrix(0.211490,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211490,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211490,0.002538,-0.003000,0.249982,0,0);}
.m64_c00343{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);}
.m128_c00343{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);}
.m16_c00343{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);}
.m122_c00343{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);}
.md5_c00343{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);}
.m58_c00343{transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{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);}
.m110_c00343{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);}
.m35_c00343{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);}
.meb_c00343{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);}
.m47_c00343{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);}
.m1a_c00343{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);}
.m65_c00343{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);}
.mf3_c00343{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);}
.m113_c00343{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);}
.m61_c00343{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);}
.m60_c00343{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);}
.m97_c00343{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);}
.m127_c00343{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);}
.mef_c00343{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);}
.m56_c00343{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);}
.m5f_c00343{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);}
.md9_c00343{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);}
.mc5_c00343{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);}
.m85_c00343{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);}
.m41_c00343{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);}
.m43_c00343{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);}
.m63_c00343{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);}
.m55_c00343{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);}
.m5b_c00343{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);}
.md8_c00343{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);}
.m14e_c00343{transform:matrix(0.229449,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229449,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229449,0.003442,-0.003750,0.249972,0,0);}
.m5d_c00343{transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);}
.m149_c00343{transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);}
.mbc_c00343{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);}
.m150_c00343{transform:matrix(0.231994,0.003480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231994,0.003480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231994,0.003480,-0.003750,0.249972,0,0);}
.m12a_c00343{transform:matrix(0.232083,0.002785,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232083,0.002785,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232083,0.002785,-0.003000,0.249982,0,0);}
.m40_c00343{transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);}
.m115_c00343{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);}
.m121_c00343{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.233173,-0.004430,0.004749,0.249955,0,0);-ms-transform:matrix(0.233173,-0.004430,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233173,-0.004430,0.004749,0.249955,0,0);}
.m45_c00343{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);}
.m14b_c00343{transform:matrix(0.235149,0.003527,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235149,0.003527,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235149,0.003527,-0.003750,0.249972,0,0);}
.m11_c00343{transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.235363,-0.004472,0.004749,0.249955,0,0);-ms-transform:matrix(0.235363,-0.004472,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235363,-0.004472,0.004749,0.249955,0,0);}
.m111_c00343{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);}
.mdd_c00343{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.237422,-0.004511,0.004749,0.249955,0,0);-ms-transform:matrix(0.237422,-0.004511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237422,-0.004511,0.004749,0.249955,0,0);}
.m141_c00343{transform:matrix(0.238708,0.002864,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238708,0.002864,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238708,0.002864,-0.003000,0.249982,0,0);}
.mf7_c00343{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.mff_c00343{transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);}
.m84_c00343{transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240665,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241115,0.000000,0.000000,0.250000,0,0);}
.m9b_c00343{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);}
.mc3_c00343{transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{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);}
.me1_c00343{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);}
.mf0_c00343{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.mb8_c00343{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{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);}
.m126_c00343{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00343{transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);}
.m10f_c00343{transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);}
.m11f_c00343{transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);}
.me0_c00343{transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281305,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.282990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282990,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.283474,-0.005386,0.004749,0.249955,0,0);-ms-transform:matrix(0.283474,-0.005386,0.004749,0.249955,0,0);-webkit-transform:matrix(0.283474,-0.005386,0.004749,0.249955,0,0);}
.m153_c00343{transform:matrix(0.288153,0.004322,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288153,0.004322,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288153,0.004322,-0.003750,0.249972,0,0);}
.m9a_c00343{transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297960,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{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);}
.m12_c00343{transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318330,0.000000,0.000000,0.250000,0,0);}
.m151_c00343{transform:matrix(0.356750,0.005351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.356750,0.005351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.356750,0.005351,-0.003750,0.249972,0,0);}
.m3_c00343{transform:matrix(0.383741,-0.007291,0.004749,0.249955,0,0);-ms-transform:matrix(0.383741,-0.007291,0.004749,0.249955,0,0);-webkit-transform:matrix(0.383741,-0.007291,0.004749,0.249955,0,0);}
.md_c00343{transform:matrix(0.430627,-0.008182,0.004749,0.249955,0,0);-ms-transform:matrix(0.430627,-0.008182,0.004749,0.249955,0,0);-webkit-transform:matrix(0.430627,-0.008182,0.004749,0.249955,0,0);}
.ma_c00343{transform:matrix(0.454033,-0.008627,0.004749,0.249955,0,0);-ms-transform:matrix(0.454033,-0.008627,0.004749,0.249955,0,0);-webkit-transform:matrix(0.454033,-0.008627,0.004749,0.249955,0,0);}
.m2_c00343{transform:matrix(0.469200,-0.008915,0.004749,0.249955,0,0);-ms-transform:matrix(0.469200,-0.008915,0.004749,0.249955,0,0);-webkit-transform:matrix(0.469200,-0.008915,0.004749,0.249955,0,0);}
.m5_c00343{transform:matrix(0.501210,-0.009523,0.004749,0.249955,0,0);-ms-transform:matrix(0.501210,-0.009523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.501210,-0.009523,0.004749,0.249955,0,0);}
.m6_c00343{transform:matrix(0.523431,-0.009945,0.004749,0.249955,0,0);-ms-transform:matrix(0.523431,-0.009945,0.004749,0.249955,0,0);-webkit-transform:matrix(0.523431,-0.009945,0.004749,0.249955,0,0);}
.me_c00343{transform:matrix(0.524390,-0.009963,0.004749,0.249955,0,0);-ms-transform:matrix(0.524390,-0.009963,0.004749,0.249955,0,0);-webkit-transform:matrix(0.524390,-0.009963,0.004749,0.249955,0,0);}
.m157_c00343{transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549785,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(1.355625,-0.025757,0.004749,0.249955,0,0);-ms-transform:matrix(1.355625,-0.025757,0.004749,0.249955,0,0);-webkit-transform:matrix(1.355625,-0.025757,0.004749,0.249955,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;}
.fs12_c00343{font-size:24.150000px;}
.fs0_c00343{font-size:42.007580px;}
.fs11_c00343{font-size:52.505906px;}
.fs6_c00343{font-size:61.950000px;}
.fs2_c00343{font-size:63.000000px;}
.fsb_c00343{font-size:64.050000px;}
.fs9_c00343{font-size:66.150000px;}
.fsd_c00343{font-size:67.200000px;}
.fsc_c00343{font-size:68.250000px;}
.fs10_c00343{font-size:68.254914px;}
.fs3_c00343{font-size:69.300000px;}
.fse_c00343{font-size:69.304989px;}
.fs8_c00343{font-size:70.350000px;}
.fs7_c00343{font-size:71.400000px;}
.fsf_c00343{font-size:71.405141px;}
.fsa_c00343{font-size:72.450000px;}
.fs4_c00343{font-size:73.500000px;}
.fs5_c00343{font-size:75.600000px;}
.fs1_c00343{font-size:80.864592px;}
.y0_c00343{bottom:0.000000px;}
.y9c_c00343{bottom:89.082000px;}
.y9b_c00343{bottom:131.601735px;}
.y9a_c00343{bottom:131.840955px;}
.y99_c00343{bottom:132.464835px;}
.y98_c00343{bottom:132.627600px;}
.y97_c00343{bottom:133.809705px;}
.y96_c00343{bottom:134.234843px;}
.y95_c00343{bottom:134.870805px;}
.y94_c00343{bottom:135.275872px;}
.y93_c00343{bottom:135.879255px;}
.y92_c00343{bottom:136.130513px;}
.y91_c00343{bottom:136.890000px;}
.y90_c00343{bottom:177.630564px;}
.y8f_c00343{bottom:178.568976px;}
.y8e_c00343{bottom:179.285334px;}
.y8d_c00343{bottom:179.567616px;}
.y8c_c00343{bottom:179.932578px;}
.y8b_c00343{bottom:180.116346px;}
.y8a_c00343{bottom:180.399942px;}
.y89_c00343{bottom:180.979710px;}
.y88_c00343{bottom:181.569390px;}
.y87_c00343{bottom:181.976310px;}
.y86_c00343{bottom:199.825812px;}
.y85_c00343{bottom:200.241876px;}
.y84_c00343{bottom:200.606874px;}
.y83_c00343{bottom:200.733762px;}
.y82_c00343{bottom:201.394140px;}
.y81_c00343{bottom:201.815328px;}
.y80_c00343{bottom:202.546278px;}
.y7f_c00343{bottom:203.256264px;}
.y7e_c00343{bottom:203.544414px;}
.y7d_c00343{bottom:203.978526px;}
.y7c_c00343{bottom:204.704040px;}
.y7b_c00343{bottom:204.928974px;}
.y7a_c00343{bottom:222.817074px;}
.y79_c00343{bottom:223.199412px;}
.y78_c00343{bottom:223.909962px;}
.y77_c00343{bottom:224.420370px;}
.y76_c00343{bottom:224.868048px;}
.y75_c00343{bottom:225.840246px;}
.y74_c00343{bottom:226.183668px;}
.y73_c00343{bottom:226.737816px;}
.y72_c00343{bottom:227.551038px;}
.y71_c00343{bottom:227.881500px;}
.y70_c00343{bottom:246.178500px;}
.y6f_c00343{bottom:246.966000px;}
.y6e_c00343{bottom:247.273500px;}
.y6d_c00343{bottom:247.575000px;}
.y6c_c00343{bottom:248.122500px;}
.y6b_c00343{bottom:248.776500px;}
.y6a_c00343{bottom:249.270000px;}
.y69_c00343{bottom:249.829500px;}
.y68_c00343{bottom:250.834500px;}
.y67_c00343{bottom:268.764000px;}
.y66_c00343{bottom:269.299500px;}
.y65_c00343{bottom:269.794500px;}
.y64_c00343{bottom:270.091500px;}
.y63_c00343{bottom:270.628500px;}
.y62_c00343{bottom:270.891000px;}
.y61_c00343{bottom:271.375500px;}
.y60_c00343{bottom:272.127000px;}
.y5f_c00343{bottom:272.386500px;}
.y5e_c00343{bottom:273.337500px;}
.y5d_c00343{bottom:273.786000px;}
.y5c_c00343{bottom:291.546000px;}
.y5b_c00343{bottom:292.012500px;}
.y5a_c00343{bottom:292.290000px;}
.y59_c00343{bottom:292.561500px;}
.y58_c00343{bottom:293.380500px;}
.y57_c00343{bottom:293.812500px;}
.y56_c00343{bottom:294.031500px;}
.y55_c00343{bottom:294.250500px;}
.y54_c00343{bottom:294.979500px;}
.y53_c00343{bottom:295.378500px;}
.y52_c00343{bottom:295.672500px;}
.y51_c00343{bottom:295.951500px;}
.y50_c00343{bottom:296.194500px;}
.y4f_c00343{bottom:314.709000px;}
.y4e_c00343{bottom:314.940000px;}
.y4d_c00343{bottom:315.337500px;}
.y4c_c00343{bottom:315.810000px;}
.y4b_c00343{bottom:316.417500px;}
.y4a_c00343{bottom:316.716000px;}
.y49_c00343{bottom:317.079000px;}
.y48_c00343{bottom:317.464500px;}
.y47_c00343{bottom:318.180000px;}
.y46_c00343{bottom:318.589500px;}
.y45_c00343{bottom:319.143000px;}
.y44_c00343{bottom:337.473000px;}
.y43_c00343{bottom:337.926000px;}
.y42_c00343{bottom:338.416500px;}
.y41_c00343{bottom:338.703000px;}
.y40_c00343{bottom:339.132000px;}
.y3f_c00343{bottom:339.372000px;}
.y3e_c00343{bottom:340.276500px;}
.y3d_c00343{bottom:340.462500px;}
.y3c_c00343{bottom:341.067000px;}
.y3b_c00343{bottom:341.424000px;}
.y3a_c00343{bottom:341.562000px;}
.y39_c00343{bottom:342.091500px;}
.y38_c00343{bottom:360.664500px;}
.y37_c00343{bottom:361.231500px;}
.y36_c00343{bottom:361.410000px;}
.y35_c00343{bottom:361.726500px;}
.y34_c00343{bottom:362.725500px;}
.y33_c00343{bottom:362.955000px;}
.y32_c00343{bottom:363.286500px;}
.y31_c00343{bottom:363.870000px;}
.y30_c00343{bottom:364.525500px;}
.y2f_c00343{bottom:364.816500px;}
.y2e_c00343{bottom:365.310000px;}
.y2d_c00343{bottom:384.114000px;}
.y2c_c00343{bottom:384.648000px;}
.y2b_c00343{bottom:384.889500px;}
.y2a_c00343{bottom:385.857000px;}
.y29_c00343{bottom:386.170500px;}
.y28_c00343{bottom:386.886000px;}
.y27_c00343{bottom:387.156000px;}
.y26_c00343{bottom:387.366000px;}
.y25_c00343{bottom:387.504000px;}
.y24_c00343{bottom:387.720000px;}
.y23_c00343{bottom:408.964500px;}
.y22_c00343{bottom:432.153000px;}
.y21_c00343{bottom:454.602000px;}
.y20_c00343{bottom:478.006500px;}
.y1f_c00343{bottom:501.480000px;}
.y1e_c00343{bottom:523.143000px;}
.y1d_c00343{bottom:546.780000px;}
.y1c_c00343{bottom:570.061500px;}
.y1b_c00343{bottom:592.441500px;}
.y1a_c00343{bottom:615.087000px;}
.y19_c00343{bottom:638.310000px;}
.y18_c00343{bottom:661.801500px;}
.y17_c00343{bottom:684.613500px;}
.y16_c00343{bottom:706.383000px;}
.y15_c00343{bottom:729.603000px;}
.y14_c00343{bottom:752.760000px;}
.y13_c00343{bottom:775.471500px;}
.y12_c00343{bottom:798.151500px;}
.y11_c00343{bottom:821.434500px;}
.y9_c00343{bottom:862.908318px;}
.ya_c00343{bottom:863.870964px;}
.yb_c00343{bottom:864.215601px;}
.yc_c00343{bottom:865.036066px;}
.yd_c00343{bottom:865.458355px;}
.ye_c00343{bottom:865.744502px;}
.yf_c00343{bottom:866.081184px;}
.y10_c00343{bottom:866.962595px;}
.y1_c00343{bottom:931.500000px;}
.y2_c00343{bottom:932.394301px;}
.y3_c00343{bottom:935.784035px;}
.y4_c00343{bottom:935.897550px;}
.y5_c00343{bottom:936.672151px;}
.y6_c00343{bottom:938.123400px;}
.y7_c00343{bottom:939.180864px;}
.y8_c00343{bottom:939.859079px;}
.h14_c00343{height:24.150000px;}
.h2_c00343{height:42.007580px;}
.h13_c00343{height:52.505906px;}
.h8_c00343{height:61.950000px;}
.h4_c00343{height:63.000000px;}
.hd_c00343{height:64.050000px;}
.hb_c00343{height:66.150000px;}
.hf_c00343{height:67.200000px;}
.he_c00343{height:68.250000px;}
.h12_c00343{height:68.254914px;}
.h5_c00343{height:69.300000px;}
.h10_c00343{height:69.304989px;}
.ha_c00343{height:70.350000px;}
.h9_c00343{height:71.400000px;}
.h11_c00343{height:71.405141px;}
.hc_c00343{height:72.450000px;}
.h6_c00343{height:73.500000px;}
.h7_c00343{height:75.600000px;}
.h3_c00343{height:80.864592px;}
.h0_c00343{height:1008.450000px;}
.h1_c00343{height:1008.750000px;}
.w0_c00343{width:696.000000px;}
.x0_c00343{left:0.000000px;}
.xb6_c00343{left:111.756000px;}
.x5b_c00343{left:145.530000px;}
.x4c_c00343{left:150.390000px;}
.x10_c00343{left:152.010000px;}
.x9_c00343{left:153.501359px;}
.xb7_c00343{left:162.388500px;}
.x45_c00343{left:165.780000px;}
.x81_c00343{left:168.750000px;}
.x8e_c00343{left:169.830000px;}
.x38_c00343{left:174.690000px;}
.x5c_c00343{left:178.470000px;}
.x1_c00343{left:179.586000px;}
.x1d_c00343{left:182.250000px;}
.x26_c00343{left:184.410000px;}
.xb5_c00343{left:186.475986px;}
.x7e_c00343{left:187.650000px;}
.x4d_c00343{left:190.620000px;}
.x94_c00343{left:195.651000px;}
.x30_c00343{left:200.070000px;}
.x54_c00343{left:201.420000px;}
.xa6_c00343{left:202.965000px;}
.x9e_c00343{left:203.995500px;}
.xa3_c00343{left:205.378500px;}
.x71_c00343{left:207.630000px;}
.x41_c00343{left:210.060000px;}
.x31_c00343{left:213.300000px;}
.x5d_c00343{left:214.380000px;}
.x8f_c00343{left:216.540000px;}
.x9f_c00343{left:217.758000px;}
.xb8_c00343{left:219.364500px;}
.x27_c00343{left:222.480000px;}
.x2_c00343{left:226.654500px;}
.x4e_c00343{left:227.880000px;}
.x86_c00343{left:229.500000px;}
.x46_c00343{left:230.580000px;}
.x63_c00343{left:232.200000px;}
.x32_c00343{left:235.440000px;}
.x11_c00343{left:236.520000px;}
.xa_c00343{left:241.048668px;}
.x39_c00343{left:243.000000px;}
.x78_c00343{left:244.890000px;}
.xa4_c00343{left:246.382500px;}
.x6a_c00343{left:249.210000px;}
.x1e_c00343{left:251.100000px;}
.x5e_c00343{left:252.450000px;}
.x12_c00343{left:254.340000px;}
.x95_c00343{left:255.585000px;}
.x55_c00343{left:256.770000px;}
.x87_c00343{left:261.630000px;}
.xac_c00343{left:263.368500px;}
.x42_c00343{left:267.030000px;}
.x79_c00343{left:270.540000px;}
.xb_c00343{left:272.376428px;}
.x6b_c00343{left:274.050000px;}
.x4f_c00343{left:275.670000px;}
.x13_c00343{left:278.910000px;}
.x92_c00343{left:281.610000px;}
.x3a_c00343{left:288.900000px;}
.x56_c00343{left:291.870000px;}
.x28_c00343{left:296.190000px;}
.x64_c00343{left:301.050000px;}
.x88_c00343{left:302.130000px;}
.xba_c00343{left:307.530000px;}
.xad_c00343{left:309.547500px;}
.xa0_c00343{left:313.893000px;}
.x14_c00343{left:315.630000px;}
.xa5_c00343{left:317.949000px;}
.x72_c00343{left:319.140000px;}
.x50_c00343{left:320.760000px;}
.x7f_c00343{left:322.110000px;}
.x1f_c00343{left:329.130000px;}
.x90_c00343{left:331.560000px;}
.x3b_c00343{left:333.180000px;}
.x6c_c00343{left:335.070000px;}
.x73_c00343{left:338.580000px;}
.x5f_c00343{left:339.930000px;}
.x89_c00343{left:341.820000px;}
.x96_c00343{left:344.997000px;}
.xc_c00343{left:346.912242px;}
.x15_c00343{left:348.030000px;}
.x9a_c00343{left:353.839500px;}
.x29_c00343{left:356.940000px;}
.x6d_c00343{left:359.910000px;}
.x33_c00343{left:361.800000px;}
.xb0_c00343{left:366.804636px;}
.x51_c00343{left:368.010000px;}
.x20_c00343{left:369.090000px;}
.x65_c00343{left:371.520000px;}
.x8a_c00343{left:373.140000px;}
.x57_c00343{left:374.220000px;}
.x16_c00343{left:377.190000px;}
.x74_c00343{left:381.240000px;}
.x97_c00343{left:384.105000px;}
.xd_c00343{left:385.249056px;}
.x91_c00343{left:387.990000px;}
.x2a_c00343{left:389.610000px;}
.x17_c00343{left:393.120000px;}
.x21_c00343{left:394.740000px;}
.x34_c00343{left:396.630000px;}
.x8b_c00343{left:402.300000px;}
.x3_c00343{left:405.061500px;}
.x75_c00343{left:407.160000px;}
.x9b_c00343{left:409.999500px;}
.x4_c00343{left:411.036000px;}
.xa9_c00343{left:413.781000px;}
.x7a_c00343{left:415.800000px;}
.x3c_c00343{left:417.150000px;}
.x66_c00343{left:419.040000px;}
.x6e_c00343{left:422.010000px;}
.x60_c00343{left:423.900000px;}
.x47_c00343{left:424.980000px;}
.x18_c00343{left:430.650000px;}
.xa7_c00343{left:432.142500px;}
.xb1_c00343{left:433.217928px;}
.x58_c00343{left:434.700000px;}
.xaa_c00343{left:437.589000px;}
.x82_c00343{left:440.370000px;}
.xe_c00343{left:441.959192px;}
.x2b_c00343{left:445.770000px;}
.xa1_c00343{left:446.992500px;}
.x61_c00343{left:448.470000px;}
.x5_c00343{left:451.804500px;}
.x19_c00343{left:454.140000px;}
.xae_c00343{left:456.489000px;}
.x8c_c00343{left:459.270000px;}
.xb9_c00343{left:464.307000px;}
.x48_c00343{left:466.020000px;}
.x7b_c00343{left:468.450000px;}
.x22_c00343{left:470.340000px;}
.x6f_c00343{left:471.690000px;}
.xab_c00343{left:473.157000px;}
.x3d_c00343{left:476.550000px;}
.x49_c00343{left:482.490000px;}
.x59_c00343{left:485.730000px;}
.x35_c00343{left:489.240000px;}
.x2c_c00343{left:497.340000px;}
.x67_c00343{left:499.230000px;}
.x43_c00343{left:501.120000px;}
.x83_c00343{left:503.010000px;}
.x98_c00343{left:505.066500px;}
.x7c_c00343{left:507.330000px;}
.x23_c00343{left:510.300000px;}
.x62_c00343{left:511.920000px;}
.xa8_c00343{left:514.003500px;}
.x1a_c00343{left:518.130000px;}
.xf_c00343{left:522.150890px;}
.x5a_c00343{left:523.800000px;}
.x6_c00343{left:528.186000px;}
.x3e_c00343{left:529.470000px;}
.x36_c00343{left:531.090000px;}
.x70_c00343{left:535.950000px;}
.x76_c00343{left:539.190000px;}
.x1b_c00343{left:541.890000px;}
.xb2_c00343{left:543.173760px;}
.x84_c00343{left:544.320000px;}
.x52_c00343{left:545.400000px;}
.x24_c00343{left:548.370000px;}
.x3f_c00343{left:549.450000px;}
.x4a_c00343{left:551.070000px;}
.x68_c00343{left:554.580000px;}
.x2d_c00343{left:556.200000px;}
.xaf_c00343{left:558.235500px;}
.x9c_c00343{left:559.308000px;}
.x77_c00343{left:564.840000px;}
.x8d_c00343{left:568.620000px;}
.x2e_c00343{left:571.050000px;}
.x53_c00343{left:573.210000px;}
.x40_c00343{left:574.560000px;}
.xb3_c00343{left:576.340656px;}
.x4b_c00343{left:577.530000px;}
.x93_c00343{left:579.150000px;}
.x44_c00343{left:580.770000px;}
.x7_c00343{left:583.842000px;}
.x25_c00343{left:585.900000px;}
.x85_c00343{left:590.490000px;}
.x2f_c00343{left:593.190000px;}
.x80_c00343{left:595.080000px;}
.x7d_c00343{left:597.240000px;}
.x1c_c00343{left:600.480000px;}
.x99_c00343{left:601.999500px;}
.x69_c00343{left:603.720000px;}
.x37_c00343{left:606.150000px;}
.xa2_c00343{left:613.042500px;}
.xb4_c00343{left:614.138106px;}
.x9d_c00343{left:616.015500px;}
.x8_c00343{left:619.537500px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.fs12_c00343{font-size:21.466667pt;}
.fs0_c00343{font-size:37.340071pt;}
.fs11_c00343{font-size:46.671916pt;}
.fs6_c00343{font-size:55.066667pt;}
.fs2_c00343{font-size:56.000000pt;}
.fsb_c00343{font-size:56.933333pt;}
.fs9_c00343{font-size:58.800000pt;}
.fsd_c00343{font-size:59.733333pt;}
.fsc_c00343{font-size:60.666667pt;}
.fs10_c00343{font-size:60.671035pt;}
.fs3_c00343{font-size:61.600000pt;}
.fse_c00343{font-size:61.604435pt;}
.fs8_c00343{font-size:62.533333pt;}
.fs7_c00343{font-size:63.466667pt;}
.fsf_c00343{font-size:63.471236pt;}
.fsa_c00343{font-size:64.400000pt;}
.fs4_c00343{font-size:65.333333pt;}
.fs5_c00343{font-size:67.200000pt;}
.fs1_c00343{font-size:71.879637pt;}
.y0_c00343{bottom:0.000000pt;}
.y9c_c00343{bottom:79.184000pt;}
.y9b_c00343{bottom:116.979320pt;}
.y9a_c00343{bottom:117.191960pt;}
.y99_c00343{bottom:117.746520pt;}
.y98_c00343{bottom:117.891200pt;}
.y97_c00343{bottom:118.941960pt;}
.y96_c00343{bottom:119.319860pt;}
.y95_c00343{bottom:119.885160pt;}
.y94_c00343{bottom:120.245220pt;}
.y93_c00343{bottom:120.781560pt;}
.y92_c00343{bottom:121.004900pt;}
.y91_c00343{bottom:121.680000pt;}
.y90_c00343{bottom:157.893835pt;}
.y8f_c00343{bottom:158.727979pt;}
.y8e_c00343{bottom:159.364741pt;}
.y8d_c00343{bottom:159.615659pt;}
.y8c_c00343{bottom:159.940069pt;}
.y8b_c00343{bottom:160.103419pt;}
.y8a_c00343{bottom:160.355504pt;}
.y89_c00343{bottom:160.870853pt;}
.y88_c00343{bottom:161.395013pt;}
.y87_c00343{bottom:161.756720pt;}
.y86_c00343{bottom:177.622944pt;}
.y85_c00343{bottom:177.992779pt;}
.y84_c00343{bottom:178.317221pt;}
.y83_c00343{bottom:178.430011pt;}
.y82_c00343{bottom:179.017013pt;}
.y81_c00343{bottom:179.391403pt;}
.y80_c00343{bottom:180.041136pt;}
.y7f_c00343{bottom:180.672235pt;}
.y7e_c00343{bottom:180.928368pt;}
.y7d_c00343{bottom:181.314245pt;}
.y7c_c00343{bottom:181.959147pt;}
.y7b_c00343{bottom:182.159088pt;}
.y7a_c00343{bottom:198.059621pt;}
.y79_c00343{bottom:198.399477pt;}
.y78_c00343{bottom:199.031077pt;}
.y77_c00343{bottom:199.484773pt;}
.y76_c00343{bottom:199.882709pt;}
.y75_c00343{bottom:200.746885pt;}
.y74_c00343{bottom:201.052149pt;}
.y73_c00343{bottom:201.544725pt;}
.y72_c00343{bottom:202.267589pt;}
.y71_c00343{bottom:202.561333pt;}
.y70_c00343{bottom:218.825333pt;}
.y6f_c00343{bottom:219.525333pt;}
.y6e_c00343{bottom:219.798667pt;}
.y6d_c00343{bottom:220.066667pt;}
.y6c_c00343{bottom:220.553333pt;}
.y6b_c00343{bottom:221.134667pt;}
.y6a_c00343{bottom:221.573333pt;}
.y69_c00343{bottom:222.070667pt;}
.y68_c00343{bottom:222.964000pt;}
.y67_c00343{bottom:238.901333pt;}
.y66_c00343{bottom:239.377333pt;}
.y65_c00343{bottom:239.817333pt;}
.y64_c00343{bottom:240.081333pt;}
.y63_c00343{bottom:240.558667pt;}
.y62_c00343{bottom:240.792000pt;}
.y61_c00343{bottom:241.222667pt;}
.y60_c00343{bottom:241.890667pt;}
.y5f_c00343{bottom:242.121333pt;}
.y5e_c00343{bottom:242.966667pt;}
.y5d_c00343{bottom:243.365333pt;}
.y5c_c00343{bottom:259.152000pt;}
.y5b_c00343{bottom:259.566667pt;}
.y5a_c00343{bottom:259.813333pt;}
.y59_c00343{bottom:260.054667pt;}
.y58_c00343{bottom:260.782667pt;}
.y57_c00343{bottom:261.166667pt;}
.y56_c00343{bottom:261.361333pt;}
.y55_c00343{bottom:261.556000pt;}
.y54_c00343{bottom:262.204000pt;}
.y53_c00343{bottom:262.558667pt;}
.y52_c00343{bottom:262.820000pt;}
.y51_c00343{bottom:263.068000pt;}
.y50_c00343{bottom:263.284000pt;}
.y4f_c00343{bottom:279.741333pt;}
.y4e_c00343{bottom:279.946667pt;}
.y4d_c00343{bottom:280.300000pt;}
.y4c_c00343{bottom:280.720000pt;}
.y4b_c00343{bottom:281.260000pt;}
.y4a_c00343{bottom:281.525333pt;}
.y49_c00343{bottom:281.848000pt;}
.y48_c00343{bottom:282.190667pt;}
.y47_c00343{bottom:282.826667pt;}
.y46_c00343{bottom:283.190667pt;}
.y45_c00343{bottom:283.682667pt;}
.y44_c00343{bottom:299.976000pt;}
.y43_c00343{bottom:300.378667pt;}
.y42_c00343{bottom:300.814667pt;}
.y41_c00343{bottom:301.069333pt;}
.y40_c00343{bottom:301.450667pt;}
.y3f_c00343{bottom:301.664000pt;}
.y3e_c00343{bottom:302.468000pt;}
.y3d_c00343{bottom:302.633333pt;}
.y3c_c00343{bottom:303.170667pt;}
.y3b_c00343{bottom:303.488000pt;}
.y3a_c00343{bottom:303.610667pt;}
.y39_c00343{bottom:304.081333pt;}
.y38_c00343{bottom:320.590667pt;}
.y37_c00343{bottom:321.094667pt;}
.y36_c00343{bottom:321.253333pt;}
.y35_c00343{bottom:321.534667pt;}
.y34_c00343{bottom:322.422667pt;}
.y33_c00343{bottom:322.626667pt;}
.y32_c00343{bottom:322.921333pt;}
.y31_c00343{bottom:323.440000pt;}
.y30_c00343{bottom:324.022667pt;}
.y2f_c00343{bottom:324.281333pt;}
.y2e_c00343{bottom:324.720000pt;}
.y2d_c00343{bottom:341.434667pt;}
.y2c_c00343{bottom:341.909333pt;}
.y2b_c00343{bottom:342.124000pt;}
.y2a_c00343{bottom:342.984000pt;}
.y29_c00343{bottom:343.262667pt;}
.y28_c00343{bottom:343.898667pt;}
.y27_c00343{bottom:344.138667pt;}
.y26_c00343{bottom:344.325333pt;}
.y25_c00343{bottom:344.448000pt;}
.y24_c00343{bottom:344.640000pt;}
.y23_c00343{bottom:363.524000pt;}
.y22_c00343{bottom:384.136000pt;}
.y21_c00343{bottom:404.090667pt;}
.y20_c00343{bottom:424.894667pt;}
.y1f_c00343{bottom:445.760000pt;}
.y1e_c00343{bottom:465.016000pt;}
.y1d_c00343{bottom:486.026667pt;}
.y1c_c00343{bottom:506.721333pt;}
.y1b_c00343{bottom:526.614667pt;}
.y1a_c00343{bottom:546.744000pt;}
.y19_c00343{bottom:567.386667pt;}
.y18_c00343{bottom:588.268000pt;}
.y17_c00343{bottom:608.545333pt;}
.y16_c00343{bottom:627.896000pt;}
.y15_c00343{bottom:648.536000pt;}
.y14_c00343{bottom:669.120000pt;}
.y13_c00343{bottom:689.308000pt;}
.y12_c00343{bottom:709.468000pt;}
.y11_c00343{bottom:730.164000pt;}
.y9_c00343{bottom:767.029616pt;}
.ya_c00343{bottom:767.885301pt;}
.yb_c00343{bottom:768.191645pt;}
.yc_c00343{bottom:768.920948pt;}
.yd_c00343{bottom:769.296316pt;}
.ye_c00343{bottom:769.550668pt;}
.yf_c00343{bottom:769.849941pt;}
.y10_c00343{bottom:770.633417pt;}
.y1_c00343{bottom:828.000000pt;}
.y2_c00343{bottom:828.794935pt;}
.y3_c00343{bottom:831.808031pt;}
.y4_c00343{bottom:831.908933pt;}
.y5_c00343{bottom:832.597468pt;}
.y6_c00343{bottom:833.887467pt;}
.y7_c00343{bottom:834.827435pt;}
.y8_c00343{bottom:835.430292pt;}
.h14_c00343{height:21.466667pt;}
.h2_c00343{height:37.340071pt;}
.h13_c00343{height:46.671916pt;}
.h8_c00343{height:55.066667pt;}
.h4_c00343{height:56.000000pt;}
.hd_c00343{height:56.933333pt;}
.hb_c00343{height:58.800000pt;}
.hf_c00343{height:59.733333pt;}
.he_c00343{height:60.666667pt;}
.h12_c00343{height:60.671035pt;}
.h5_c00343{height:61.600000pt;}
.h10_c00343{height:61.604435pt;}
.ha_c00343{height:62.533333pt;}
.h9_c00343{height:63.466667pt;}
.h11_c00343{height:63.471236pt;}
.hc_c00343{height:64.400000pt;}
.h6_c00343{height:65.333333pt;}
.h7_c00343{height:67.200000pt;}
.h3_c00343{height:71.879637pt;}
.h0_c00343{height:896.400000pt;}
.h1_c00343{height:896.666667pt;}
.w0_c00343{width:618.666667pt;}
.x0_c00343{left:0.000000pt;}
.xb6_c00343{left:99.338667pt;}
.x5b_c00343{left:129.360000pt;}
.x4c_c00343{left:133.680000pt;}
.x10_c00343{left:135.120000pt;}
.x9_c00343{left:136.445652pt;}
.xb7_c00343{left:144.345333pt;}
.x45_c00343{left:147.360000pt;}
.x81_c00343{left:150.000000pt;}
.x8e_c00343{left:150.960000pt;}
.x38_c00343{left:155.280000pt;}
.x5c_c00343{left:158.640000pt;}
.x1_c00343{left:159.632000pt;}
.x1d_c00343{left:162.000000pt;}
.x26_c00343{left:163.920000pt;}
.xb5_c00343{left:165.756432pt;}
.x7e_c00343{left:166.800000pt;}
.x4d_c00343{left:169.440000pt;}
.x94_c00343{left:173.912000pt;}
.x30_c00343{left:177.840000pt;}
.x54_c00343{left:179.040000pt;}
.xa6_c00343{left:180.413333pt;}
.x9e_c00343{left:181.329333pt;}
.xa3_c00343{left:182.558667pt;}
.x71_c00343{left:184.560000pt;}
.x41_c00343{left:186.720000pt;}
.x31_c00343{left:189.600000pt;}
.x5d_c00343{left:190.560000pt;}
.x8f_c00343{left:192.480000pt;}
.x9f_c00343{left:193.562667pt;}
.xb8_c00343{left:194.990667pt;}
.x27_c00343{left:197.760000pt;}
.x2_c00343{left:201.470667pt;}
.x4e_c00343{left:202.560000pt;}
.x86_c00343{left:204.000000pt;}
.x46_c00343{left:204.960000pt;}
.x63_c00343{left:206.400000pt;}
.x32_c00343{left:209.280000pt;}
.x11_c00343{left:210.240000pt;}
.xa_c00343{left:214.265483pt;}
.x39_c00343{left:216.000000pt;}
.x78_c00343{left:217.680000pt;}
.xa4_c00343{left:219.006667pt;}
.x6a_c00343{left:221.520000pt;}
.x1e_c00343{left:223.200000pt;}
.x5e_c00343{left:224.400000pt;}
.x12_c00343{left:226.080000pt;}
.x95_c00343{left:227.186667pt;}
.x55_c00343{left:228.240000pt;}
.x87_c00343{left:232.560000pt;}
.xac_c00343{left:234.105333pt;}
.x42_c00343{left:237.360000pt;}
.x79_c00343{left:240.480000pt;}
.xb_c00343{left:242.112380pt;}
.x6b_c00343{left:243.600000pt;}
.x4f_c00343{left:245.040000pt;}
.x13_c00343{left:247.920000pt;}
.x92_c00343{left:250.320000pt;}
.x3a_c00343{left:256.800000pt;}
.x56_c00343{left:259.440000pt;}
.x28_c00343{left:263.280000pt;}
.x64_c00343{left:267.600000pt;}
.x88_c00343{left:268.560000pt;}
.xba_c00343{left:273.360000pt;}
.xad_c00343{left:275.153333pt;}
.xa0_c00343{left:279.016000pt;}
.x14_c00343{left:280.560000pt;}
.xa5_c00343{left:282.621333pt;}
.x72_c00343{left:283.680000pt;}
.x50_c00343{left:285.120000pt;}
.x7f_c00343{left:286.320000pt;}
.x1f_c00343{left:292.560000pt;}
.x90_c00343{left:294.720000pt;}
.x3b_c00343{left:296.160000pt;}
.x6c_c00343{left:297.840000pt;}
.x73_c00343{left:300.960000pt;}
.x5f_c00343{left:302.160000pt;}
.x89_c00343{left:303.840000pt;}
.x96_c00343{left:306.664000pt;}
.xc_c00343{left:308.366437pt;}
.x15_c00343{left:309.360000pt;}
.x9a_c00343{left:314.524000pt;}
.x29_c00343{left:317.280000pt;}
.x6d_c00343{left:319.920000pt;}
.x33_c00343{left:321.600000pt;}
.xb0_c00343{left:326.048565pt;}
.x51_c00343{left:327.120000pt;}
.x20_c00343{left:328.080000pt;}
.x65_c00343{left:330.240000pt;}
.x8a_c00343{left:331.680000pt;}
.x57_c00343{left:332.640000pt;}
.x16_c00343{left:335.280000pt;}
.x74_c00343{left:338.880000pt;}
.x97_c00343{left:341.426667pt;}
.xd_c00343{left:342.443605pt;}
.x91_c00343{left:344.880000pt;}
.x2a_c00343{left:346.320000pt;}
.x17_c00343{left:349.440000pt;}
.x21_c00343{left:350.880000pt;}
.x34_c00343{left:352.560000pt;}
.x8b_c00343{left:357.600000pt;}
.x3_c00343{left:360.054667pt;}
.x75_c00343{left:361.920000pt;}
.x9b_c00343{left:364.444000pt;}
.x4_c00343{left:365.365333pt;}
.xa9_c00343{left:367.805333pt;}
.x7a_c00343{left:369.600000pt;}
.x3c_c00343{left:370.800000pt;}
.x66_c00343{left:372.480000pt;}
.x6e_c00343{left:375.120000pt;}
.x60_c00343{left:376.800000pt;}
.x47_c00343{left:377.760000pt;}
.x18_c00343{left:382.800000pt;}
.xa7_c00343{left:384.126667pt;}
.xb1_c00343{left:385.082603pt;}
.x58_c00343{left:386.400000pt;}
.xaa_c00343{left:388.968000pt;}
.x82_c00343{left:391.440000pt;}
.xe_c00343{left:392.852615pt;}
.x2b_c00343{left:396.240000pt;}
.xa1_c00343{left:397.326667pt;}
.x61_c00343{left:398.640000pt;}
.x5_c00343{left:401.604000pt;}
.x19_c00343{left:403.680000pt;}
.xae_c00343{left:405.768000pt;}
.x8c_c00343{left:408.240000pt;}
.xb9_c00343{left:412.717333pt;}
.x48_c00343{left:414.240000pt;}
.x7b_c00343{left:416.400000pt;}
.x22_c00343{left:418.080000pt;}
.x6f_c00343{left:419.280000pt;}
.xab_c00343{left:420.584000pt;}
.x3d_c00343{left:423.600000pt;}
.x49_c00343{left:428.880000pt;}
.x59_c00343{left:431.760000pt;}
.x35_c00343{left:434.880000pt;}
.x2c_c00343{left:442.080000pt;}
.x67_c00343{left:443.760000pt;}
.x43_c00343{left:445.440000pt;}
.x83_c00343{left:447.120000pt;}
.x98_c00343{left:448.948000pt;}
.x7c_c00343{left:450.960000pt;}
.x23_c00343{left:453.600000pt;}
.x62_c00343{left:455.040000pt;}
.xa8_c00343{left:456.892000pt;}
.x1a_c00343{left:460.560000pt;}
.xf_c00343{left:464.134124pt;}
.x5a_c00343{left:465.600000pt;}
.x6_c00343{left:469.498667pt;}
.x3e_c00343{left:470.640000pt;}
.x36_c00343{left:472.080000pt;}
.x70_c00343{left:476.400000pt;}
.x76_c00343{left:479.280000pt;}
.x1b_c00343{left:481.680000pt;}
.xb2_c00343{left:482.821120pt;}
.x84_c00343{left:483.840000pt;}
.x52_c00343{left:484.800000pt;}
.x24_c00343{left:487.440000pt;}
.x3f_c00343{left:488.400000pt;}
.x4a_c00343{left:489.840000pt;}
.x68_c00343{left:492.960000pt;}
.x2d_c00343{left:494.400000pt;}
.xaf_c00343{left:496.209333pt;}
.x9c_c00343{left:497.162667pt;}
.x77_c00343{left:502.080000pt;}
.x8d_c00343{left:505.440000pt;}
.x2e_c00343{left:507.600000pt;}
.x53_c00343{left:509.520000pt;}
.x40_c00343{left:510.720000pt;}
.xb3_c00343{left:512.302805pt;}
.x4b_c00343{left:513.360000pt;}
.x93_c00343{left:514.800000pt;}
.x44_c00343{left:516.240000pt;}
.x7_c00343{left:518.970667pt;}
.x25_c00343{left:520.800000pt;}
.x85_c00343{left:524.880000pt;}
.x2f_c00343{left:527.280000pt;}
.x80_c00343{left:528.960000pt;}
.x7d_c00343{left:530.880000pt;}
.x1c_c00343{left:533.760000pt;}
.x99_c00343{left:535.110667pt;}
.x69_c00343{left:536.640000pt;}
.x37_c00343{left:538.800000pt;}
.xa2_c00343{left:544.926667pt;}
.xb4_c00343{left:545.900539pt;}
.x9d_c00343{left:547.569333pt;}
.x8_c00343{left:550.700000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m15_c00344{transform:matrix(0.006215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006215,0.000000,0.000000,0.250000,0,0);}
.m153_c00344{transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);-ms-transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);}
.m76_c00344{transform:matrix(0.057195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057195,0.000000,0.000000,0.250000,0,0);}
.m156_c00344{transform:matrix(0.068040,-0.000816,0.003000,0.249982,0,0);-ms-transform:matrix(0.068040,-0.000816,0.003000,0.249982,0,0);-webkit-transform:matrix(0.068040,-0.000816,0.003000,0.249982,0,0);}
.m142_c00344{transform:matrix(0.089512,-0.000716,0.002000,0.249992,0,0);-ms-transform:matrix(0.089512,-0.000716,0.002000,0.249992,0,0);-webkit-transform:matrix(0.089512,-0.000716,0.002000,0.249992,0,0);}
.m2d_c00344{transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);}
.mbb_c00344{transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);}
.m15b_c00344{transform:matrix(0.117597,-0.001411,0.003000,0.249982,0,0);-ms-transform:matrix(0.117597,-0.001411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.117597,-0.001411,0.003000,0.249982,0,0);}
.mc1_c00344{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.m12f_c00344{transform:matrix(0.126369,-0.001264,0.002500,0.249988,0,0);-ms-transform:matrix(0.126369,-0.001264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.126369,-0.001264,0.002500,0.249988,0,0);}
.m5e_c00344{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m4d_c00344{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);}
.mcd_c00344{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);}
.m77_c00344{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);}
.mf3_c00344{transform:matrix(0.148349,-0.001335,0.002250,0.249990,0,0);-ms-transform:matrix(0.148349,-0.001335,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148349,-0.001335,0.002250,0.249990,0,0);}
.m46_c00344{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);}
.ma7_c00344{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);}
.m13f_c00344{transform:matrix(0.149390,-0.001195,0.002000,0.249992,0,0);-ms-transform:matrix(0.149390,-0.001195,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149390,-0.001195,0.002000,0.249992,0,0);}
.m7a_c00344{transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);}
.m10e_c00344{transform:matrix(0.150459,-0.001354,0.002250,0.249990,0,0);-ms-transform:matrix(0.150459,-0.001354,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150459,-0.001354,0.002250,0.249990,0,0);}
.mc6_c00344{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);}
.m143_c00344{transform:matrix(0.150680,-0.001205,0.002000,0.249992,0,0);-ms-transform:matrix(0.150680,-0.001205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150680,-0.001205,0.002000,0.249992,0,0);}
.m63_c00344{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);}
.m35_c00344{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);}
.meb_c00344{transform:matrix(0.153329,-0.001380,0.002250,0.249990,0,0);-ms-transform:matrix(0.153329,-0.001380,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153329,-0.001380,0.002250,0.249990,0,0);}
.m147_c00344{transform:matrix(0.153850,-0.001231,0.002000,0.249992,0,0);-ms-transform:matrix(0.153850,-0.001231,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153850,-0.001231,0.002000,0.249992,0,0);}
.mad_c00344{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);}
.mf1_c00344{transform:matrix(0.155424,-0.001399,0.002250,0.249990,0,0);-ms-transform:matrix(0.155424,-0.001399,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155424,-0.001399,0.002250,0.249990,0,0);}
.m36_c00344{transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);}
.mee_c00344{transform:matrix(0.156739,-0.001411,0.002250,0.249990,0,0);-ms-transform:matrix(0.156739,-0.001411,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156739,-0.001411,0.002250,0.249990,0,0);}
.m150_c00344{transform:matrix(0.156977,-0.001570,0.002500,0.249988,0,0);-ms-transform:matrix(0.156977,-0.001570,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156977,-0.001570,0.002500,0.249988,0,0);}
.me8_c00344{transform:matrix(0.157539,-0.001418,0.002250,0.249990,0,0);-ms-transform:matrix(0.157539,-0.001418,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157539,-0.001418,0.002250,0.249990,0,0);}
.m43_c00344{transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158470,0.000000,0.000000,0.250000,0,0);}
.m56_c00344{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);}
.m45_c00344{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);}
.m127_c00344{transform:matrix(0.159572,-0.001596,0.002500,0.249988,0,0);-ms-transform:matrix(0.159572,-0.001596,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159572,-0.001596,0.002500,0.249988,0,0);}
.m72_c00344{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);}
.m120_c00344{transform:matrix(0.160227,-0.001602,0.002500,0.249988,0,0);-ms-transform:matrix(0.160227,-0.001602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160227,-0.001602,0.002500,0.249988,0,0);}
.mc2_c00344{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);}
.m22_c00344{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);}
.m132_c00344{transform:matrix(0.161452,-0.001615,0.002500,0.249988,0,0);-ms-transform:matrix(0.161452,-0.001615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161452,-0.001615,0.002500,0.249988,0,0);}
.md0_c00344{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);}
.m57_c00344{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);}
.m44_c00344{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);}
.m14a_c00344{transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162282,-0.001623,0.002500,0.249988,0,0);}
.m26_c00344{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);}
.mf6_c00344{transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);-ms-transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);}
.m146_c00344{transform:matrix(0.162730,-0.001302,0.002000,0.249992,0,0);-ms-transform:matrix(0.162730,-0.001302,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162730,-0.001302,0.002000,0.249992,0,0);}
.m9a_c00344{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);}
.mf8_c00344{transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);-ms-transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163183,-0.001469,0.002250,0.249990,0,0);}
.m13e_c00344{transform:matrix(0.163847,-0.001638,0.002500,0.249988,0,0);-ms-transform:matrix(0.163847,-0.001638,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163847,-0.001638,0.002500,0.249988,0,0);}
.m4b_c00344{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_c00344{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);}
.m41_c00344{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);}
.me5_c00344{transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);-ms-transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164863,-0.001484,0.002250,0.249990,0,0);}
.m4a_c00344{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);}
.m31_c00344{transform:matrix(0.165280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165280,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{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);}
.m95_c00344{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);}
.m67_c00344{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);}
.mcc_c00344{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);}
.m74_c00344{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.me6_c00344{transform:matrix(0.166463,-0.001498,0.002250,0.249990,0,0);-ms-transform:matrix(0.166463,-0.001498,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166463,-0.001498,0.002250,0.249990,0,0);}
.m144_c00344{transform:matrix(0.166800,-0.001334,0.002000,0.249992,0,0);-ms-transform:matrix(0.166800,-0.001334,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166800,-0.001334,0.002000,0.249992,0,0);}
.m6f_c00344{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);}
.mf0_c00344{transform:matrix(0.166928,-0.001502,0.002250,0.249990,0,0);-ms-transform:matrix(0.166928,-0.001502,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166928,-0.001502,0.002250,0.249990,0,0);}
.m11c_c00344{transform:matrix(0.167777,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167777,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167777,-0.001678,0.002500,0.249988,0,0);}
.mb9_c00344{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);}
.mc8_c00344{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);}
.m102_c00344{transform:matrix(0.168038,-0.001512,0.002250,0.249990,0,0);-ms-transform:matrix(0.168038,-0.001512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168038,-0.001512,0.002250,0.249990,0,0);}
.m160_c00344{transform:matrix(0.168048,-0.002017,0.003000,0.249982,0,0);-ms-transform:matrix(0.168048,-0.002017,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168048,-0.002017,0.003000,0.249982,0,0);}
.mc4_c00344{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);}
.me2_c00344{transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);-ms-transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);}
.m129_c00344{transform:matrix(0.169232,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169232,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169232,-0.001692,0.002500,0.249988,0,0);}
.mb2_c00344{transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169280,0.000000,0.000000,0.250000,0,0);}
.me9_c00344{transform:matrix(0.169388,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169388,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169388,-0.001524,0.002250,0.249990,0,0);}
.m30_c00344{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);}
.m1b_c00344{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);}
.me3_c00344{transform:matrix(0.170368,-0.001533,0.002250,0.249990,0,0);-ms-transform:matrix(0.170368,-0.001533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170368,-0.001533,0.002250,0.249990,0,0);}
.mce_c00344{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);}
.m14f_c00344{transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-ms-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);}
.mc0_c00344{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);}
.m12c_c00344{transform:matrix(0.171616,-0.001716,0.002500,0.249988,0,0);-ms-transform:matrix(0.171616,-0.001716,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171616,-0.001716,0.002500,0.249988,0,0);}
.m1c_c00344{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);}
.m141_c00344{transform:matrix(0.172109,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172109,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172109,-0.001377,0.002000,0.249992,0,0);}
.ma0_c00344{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);}
.m140_c00344{transform:matrix(0.172649,-0.001381,0.002000,0.249992,0,0);-ms-transform:matrix(0.172649,-0.001381,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172649,-0.001381,0.002000,0.249992,0,0);}
.m121_c00344{transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);-ms-transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);}
.m1e_c00344{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);}
.m2e_c00344{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);}
.maf_c00344{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);}
.m11b_c00344{transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173541,-0.001735,0.002500,0.249988,0,0);}
.m54_c00344{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);}
.me0_c00344{transform:matrix(0.173673,-0.001563,0.002250,0.249990,0,0);-ms-transform:matrix(0.173673,-0.001563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173673,-0.001563,0.002250,0.249990,0,0);}
.mae_c00344{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);}
.mdd_c00344{transform:matrix(0.174728,-0.001573,0.002250,0.249990,0,0);-ms-transform:matrix(0.174728,-0.001573,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174728,-0.001573,0.002250,0.249990,0,0);}
.m69_c00344{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);}
.m119_c00344{transform:matrix(0.174816,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174816,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174816,-0.001748,0.002500,0.249988,0,0);}
.m55_c00344{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);}
.mc9_c00344{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);}
.m65_c00344{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);}
.m75_c00344{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);}
.m14d_c00344{transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);}
.m3f_c00344{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);}
.mdf_c00344{transform:matrix(0.175423,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175423,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175423,-0.001579,0.002250,0.249990,0,0);}
.m8e_c00344{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);}
.mff_c00344{transform:matrix(0.175863,-0.001583,0.002250,0.249990,0,0);-ms-transform:matrix(0.175863,-0.001583,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175863,-0.001583,0.002250,0.249990,0,0);}
.m50_c00344{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);}
.mb8_c00344{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);}
.m123_c00344{transform:matrix(0.176201,-0.001762,0.002500,0.249988,0,0);-ms-transform:matrix(0.176201,-0.001762,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176201,-0.001762,0.002500,0.249988,0,0);}
.m11d_c00344{transform:matrix(0.176291,-0.001763,0.002500,0.249988,0,0);-ms-transform:matrix(0.176291,-0.001763,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176291,-0.001763,0.002500,0.249988,0,0);}
.m3e_c00344{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);}
.m125_c00344{transform:matrix(0.177141,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177141,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177141,-0.001771,0.002500,0.249988,0,0);}
.m101_c00344{transform:matrix(0.177268,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177268,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177268,-0.001595,0.002250,0.249990,0,0);}
.m9d_c00344{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);}
.m21_c00344{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);}
.mea_c00344{transform:matrix(0.177738,-0.001600,0.002250,0.249990,0,0);-ms-transform:matrix(0.177738,-0.001600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177738,-0.001600,0.002250,0.249990,0,0);}
.m4f_c00344{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);}
.m97_c00344{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);}
.me7_c00344{transform:matrix(0.178128,-0.001603,0.002250,0.249990,0,0);-ms-transform:matrix(0.178128,-0.001603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178128,-0.001603,0.002250,0.249990,0,0);}
.m135_c00344{transform:matrix(0.178406,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178406,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178406,-0.001784,0.002500,0.249988,0,0);}
.m157_c00344{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);}
.ma1_c00344{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);}
.m49_c00344{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);}
.m3a_c00344{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);}
.m136_c00344{transform:matrix(0.178941,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178941,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178941,-0.001789,0.002500,0.249988,0,0);}
.mef_c00344{transform:matrix(0.179128,-0.001612,0.002250,0.249990,0,0);-ms-transform:matrix(0.179128,-0.001612,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179128,-0.001612,0.002250,0.249990,0,0);}
.m20_c00344{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);}
.m59_c00344{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);}
.m4e_c00344{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);}
.m107_c00344{transform:matrix(0.179408,-0.001615,0.002250,0.249990,0,0);-ms-transform:matrix(0.179408,-0.001615,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179408,-0.001615,0.002250,0.249990,0,0);}
.mbf_c00344{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);}
.m33_c00344{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);}
.m29_c00344{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);}
.mec_c00344{transform:matrix(0.179863,-0.001619,0.002250,0.249990,0,0);-ms-transform:matrix(0.179863,-0.001619,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179863,-0.001619,0.002250,0.249990,0,0);}
.m106_c00344{transform:matrix(0.180243,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180243,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180243,-0.001622,0.002250,0.249990,0,0);}
.m62_c00344{transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);}
.mb0_c00344{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_c00344{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);}
.m24_c00344{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);}
.m1d_c00344{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);}
.m48_c00344{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);}
.m11a_c00344{transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182136,-0.001821,0.002500,0.249988,0,0);}
.mb1_c00344{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);}
.m7e_c00344{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);}
.m85_c00344{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);}
.m1a_c00344{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);}
.m82_c00344{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);}
.mda_c00344{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);}
.m47_c00344{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);}
.m40_c00344{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);}
.m4c_c00344{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);}
.m122_c00344{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);}
.m128_c00344{transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);}
.ma5_c00344{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);}
.mf2_c00344{transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-ms-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);}
.m126_c00344{transform:matrix(0.185381,-0.001854,0.002500,0.249988,0,0);-ms-transform:matrix(0.185381,-0.001854,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185381,-0.001854,0.002500,0.249988,0,0);}
.m6c_c00344{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);}
.m2b_c00344{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);}
.m71_c00344{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);}
.m10a_c00344{transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-ms-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);}
.m27_c00344{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);}
.m10b_c00344{transform:matrix(0.186457,-0.001678,0.002250,0.249990,0,0);-ms-transform:matrix(0.186457,-0.001678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186457,-0.001678,0.002250,0.249990,0,0);}
.m117_c00344{transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);}
.m10f_c00344{transform:matrix(0.186707,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186707,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186707,-0.001680,0.002250,0.249990,0,0);}
.m114_c00344{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);}
.md3_c00344{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);}
.m130_c00344{transform:matrix(0.186961,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.186961,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186961,-0.001870,0.002500,0.249988,0,0);}
.mb4_c00344{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);}
.m6e_c00344{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);}
.m110_c00344{transform:matrix(0.187131,-0.001871,0.002500,0.249988,0,0);-ms-transform:matrix(0.187131,-0.001871,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187131,-0.001871,0.002500,0.249988,0,0);}
.m64_c00344{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);}
.m131_c00344{transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);}
.m70_c00344{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);}
.m28_c00344{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);}
.mfb_c00344{transform:matrix(0.188157,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188157,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188157,-0.001693,0.002250,0.249990,0,0);}
.m9e_c00344{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);}
.m100_c00344{transform:matrix(0.188747,-0.001699,0.002250,0.249990,0,0);-ms-transform:matrix(0.188747,-0.001699,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188747,-0.001699,0.002250,0.249990,0,0);}
.m3b_c00344{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);}
.m25_c00344{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);}
.m81_c00344{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);}
.m5d_c00344{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);}
.mc3_c00344{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);}
.mcf_c00344{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);}
.maa_c00344{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);}
.md2_c00344{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);}
.md7_c00344{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);}
.m115_c00344{transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);}
.m94_c00344{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);}
.md1_c00344{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);}
.m145_c00344{transform:matrix(0.190744,-0.001526,0.002000,0.249992,0,0);-ms-transform:matrix(0.190744,-0.001526,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190744,-0.001526,0.002000,0.249992,0,0);}
.m5a_c00344{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);}
.mdc_c00344{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);}
.ma2_c00344{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);}
.m3d_c00344{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);}
.mc7_c00344{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);}
.m2a_c00344{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);}
.m14_c00344{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);}
.m8f_c00344{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);}
.m103_c00344{transform:matrix(0.192467,-0.001732,0.002250,0.249990,0,0);-ms-transform:matrix(0.192467,-0.001732,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192467,-0.001732,0.002250,0.249990,0,0);}
.m14e_c00344{transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);}
.mdb_c00344{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);}
.m73_c00344{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);}
.mac_c00344{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);}
.m108_c00344{transform:matrix(0.193387,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193387,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193387,-0.001740,0.002250,0.249990,0,0);}
.m104_c00344{transform:matrix(0.193947,-0.001746,0.002250,0.249990,0,0);-ms-transform:matrix(0.193947,-0.001746,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193947,-0.001746,0.002250,0.249990,0,0);}
.m90_c00344{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);}
.m1f_c00344{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);}
.ma4_c00344{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);}
.m53_c00344{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);}
.mde_c00344{transform:matrix(0.194822,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194822,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194822,-0.001753,0.002250,0.249990,0,0);}
.me4_c00344{transform:matrix(0.194827,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194827,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194827,-0.001753,0.002250,0.249990,0,0);}
.m39_c00344{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);}
.ma6_c00344{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);}
.ma3_c00344{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);}
.m134_c00344{transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195585,-0.001956,0.002500,0.249988,0,0);}
.m42_c00344{transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{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);}
.mbc_c00344{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);}
.m139_c00344{transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198630,-0.001986,0.002500,0.249988,0,0);}
.m2c_c00344{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);}
.m60_c00344{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);}
.mbd_c00344{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);}
.md8_c00344{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);}
.mb6_c00344{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);}
.m12d_c00344{transform:matrix(0.199765,-0.001998,0.002500,0.249988,0,0);-ms-transform:matrix(0.199765,-0.001998,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199765,-0.001998,0.002500,0.249988,0,0);}
.m38_c00344{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);}
.mfd_c00344{transform:matrix(0.200027,-0.001800,0.002250,0.249990,0,0);-ms-transform:matrix(0.200027,-0.001800,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200027,-0.001800,0.002250,0.249990,0,0);}
.m8d_c00344{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);}
.m9b_c00344{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);}
.m113_c00344{transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200335,-0.002003,0.002500,0.249988,0,0);}
.m116_c00344{transform:matrix(0.200390,-0.002004,0.002500,0.249988,0,0);-ms-transform:matrix(0.200390,-0.002004,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200390,-0.002004,0.002500,0.249988,0,0);}
.m2f_c00344{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);}
.m5b_c00344{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);}
.m34_c00344{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);}
.m96_c00344{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);}
.m12b_c00344{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);}
.mb3_c00344{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);}
.m9c_c00344{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);}
.m37_c00344{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);}
.m17_c00344{transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{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);}
.m14b_c00344{transform:matrix(0.202780,-0.002028,0.002500,0.249988,0,0);-ms-transform:matrix(0.202780,-0.002028,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202780,-0.002028,0.002500,0.249988,0,0);}
.m133_c00344{transform:matrix(0.202800,-0.002028,0.002500,0.249988,0,0);-ms-transform:matrix(0.202800,-0.002028,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202800,-0.002028,0.002500,0.249988,0,0);}
.ma8_c00344{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);}
.m105_c00344{transform:matrix(0.202992,-0.001827,0.002250,0.249990,0,0);-ms-transform:matrix(0.202992,-0.001827,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202992,-0.001827,0.002250,0.249990,0,0);}
.md4_c00344{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);}
.m79_c00344{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);}
.md9_c00344{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);}
.mab_c00344{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);}
.md5_c00344{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);}
.m68_c00344{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);}
.md6_c00344{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);}
.m12e_c00344{transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);}
.m13d_c00344{transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);-ms-transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205395,-0.002054,0.002500,0.249988,0,0);}
.ma9_c00344{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_c00344{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);}
.m159_c00344{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);}
.me1_c00344{transform:matrix(0.207147,-0.001864,0.002250,0.249990,0,0);-ms-transform:matrix(0.207147,-0.001864,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207147,-0.001864,0.002250,0.249990,0,0);}
.m8c_c00344{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);}
.m58_c00344{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);}
.m91_c00344{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);}
.m92_c00344{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);}
.mcb_c00344{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);}
.m78_c00344{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);}
.mf5_c00344{transform:matrix(0.209527,-0.001886,0.002250,0.249990,0,0);-ms-transform:matrix(0.209527,-0.001886,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209527,-0.001886,0.002250,0.249990,0,0);}
.m149_c00344{transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);}
.m8b_c00344{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);}
.mf7_c00344{transform:matrix(0.210616,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210616,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210616,-0.001896,0.002250,0.249990,0,0);}
.m6b_c00344{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);}
.m12a_c00344{transform:matrix(0.211059,-0.002111,0.002500,0.249988,0,0);-ms-transform:matrix(0.211059,-0.002111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211059,-0.002111,0.002500,0.249988,0,0);}
.mba_c00344{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);}
.m11e_c00344{transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);}
.m7f_c00344{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);}
.m5f_c00344{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);}
.m84_c00344{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);}
.m138_c00344{transform:matrix(0.213144,-0.002131,0.002500,0.249988,0,0);-ms-transform:matrix(0.213144,-0.002131,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213144,-0.002131,0.002500,0.249988,0,0);}
.mb5_c00344{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);}
.m80_c00344{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);}
.m5c_c00344{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);}
.m32_c00344{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);}
.m13a_c00344{transform:matrix(0.216894,-0.002169,0.002500,0.249988,0,0);-ms-transform:matrix(0.216894,-0.002169,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216894,-0.002169,0.002500,0.249988,0,0);}
.mc5_c00344{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);}
.m14c_c00344{transform:matrix(0.220174,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220174,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220174,-0.002202,0.002500,0.249988,0,0);}
.mf9_c00344{transform:matrix(0.220541,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220541,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220541,-0.001985,0.002250,0.249990,0,0);}
.m10c_c00344{transform:matrix(0.220981,-0.001989,0.002250,0.249990,0,0);-ms-transform:matrix(0.220981,-0.001989,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220981,-0.001989,0.002250,0.249990,0,0);}
.mf4_c00344{transform:matrix(0.221276,-0.001991,0.002250,0.249990,0,0);-ms-transform:matrix(0.221276,-0.001991,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221276,-0.001991,0.002250,0.249990,0,0);}
.mfe_c00344{transform:matrix(0.222596,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222596,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222596,-0.002003,0.002250,0.249990,0,0);}
.m89_c00344{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);}
.m7d_c00344{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.m15d_c00344{transform:matrix(0.225119,-0.002701,0.003000,0.249982,0,0);-ms-transform:matrix(0.225119,-0.002701,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225119,-0.002701,0.003000,0.249982,0,0);}
.m7c_c00344{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);}
.m93_c00344{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);}
.m11f_c00344{transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);-ms-transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);}
.m137_c00344{transform:matrix(0.234083,-0.002341,0.002500,0.249988,0,0);-ms-transform:matrix(0.234083,-0.002341,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234083,-0.002341,0.002500,0.249988,0,0);}
.m23_c00344{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);}
.m98_c00344{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);}
.m66_c00344{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00344{transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);}
.m7b_c00344{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);}
.m109_c00344{transform:matrix(0.238870,-0.002150,0.002250,0.249990,0,0);-ms-transform:matrix(0.238870,-0.002150,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238870,-0.002150,0.002250,0.249990,0,0);}
.m148_c00344{transform:matrix(0.239993,-0.002400,0.002500,0.249988,0,0);-ms-transform:matrix(0.239993,-0.002400,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239993,-0.002400,0.002500,0.249988,0,0);}
.mfc_c00344{transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);-ms-transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);}
.mca_c00344{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.m86_c00344{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m87_c00344{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);}
.m9f_c00344{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);}
.med_c00344{transform:matrix(0.250570,-0.002255,0.002250,0.249990,0,0);-ms-transform:matrix(0.250570,-0.002255,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250570,-0.002255,0.002250,0.249990,0,0);}
.m52_c00344{transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.256897,-0.002569,0.002500,0.249988,0,0);-ms-transform:matrix(0.256897,-0.002569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256897,-0.002569,0.002500,0.249988,0,0);}
.md_c00344{transform:matrix(0.258572,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258572,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258572,-0.002586,0.002500,0.249988,0,0);}
.m111_c00344{transform:matrix(0.258712,-0.002587,0.002500,0.249988,0,0);-ms-transform:matrix(0.258712,-0.002587,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258712,-0.002587,0.002500,0.249988,0,0);}
.m13b_c00344{transform:matrix(0.261912,-0.002619,0.002500,0.249988,0,0);-ms-transform:matrix(0.261912,-0.002619,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261912,-0.002619,0.002500,0.249988,0,0);}
.m8a_c00344{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);}
.m154_c00344{transform:matrix(0.270121,-0.003241,0.003000,0.249982,0,0);-ms-transform:matrix(0.270121,-0.003241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270121,-0.003241,0.003000,0.249982,0,0);}
.m5_c00344{transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);-ms-transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);}
.m83_c00344{transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);}
.m161_c00344{transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285655,0.000000,0.000000,0.250000,0,0);}
.m112_c00344{transform:matrix(0.289491,-0.002895,0.002500,0.249988,0,0);-ms-transform:matrix(0.289491,-0.002895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.289491,-0.002895,0.002500,0.249988,0,0);}
.m13c_c00344{transform:matrix(0.294880,-0.002949,0.002500,0.249988,0,0);-ms-transform:matrix(0.294880,-0.002949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294880,-0.002949,0.002500,0.249988,0,0);}
.m124_c00344{transform:matrix(0.299370,-0.002994,0.002500,0.249988,0,0);-ms-transform:matrix(0.299370,-0.002994,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299370,-0.002994,0.002500,0.249988,0,0);}
.m13_c00344{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.m10d_c00344{transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);-ms-transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);}
.m118_c00344{transform:matrix(0.312844,-0.003128,0.002500,0.249988,0,0);-ms-transform:matrix(0.312844,-0.003128,0.002500,0.249988,0,0);-webkit-transform:matrix(0.312844,-0.003128,0.002500,0.249988,0,0);}
.m15e_c00344{transform:matrix(0.321812,-0.003862,0.003000,0.249982,0,0);-ms-transform:matrix(0.321812,-0.003862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.321812,-0.003862,0.003000,0.249982,0,0);}
.m155_c00344{transform:matrix(0.327751,-0.003933,0.003000,0.249982,0,0);-ms-transform:matrix(0.327751,-0.003933,0.003000,0.249982,0,0);-webkit-transform:matrix(0.327751,-0.003933,0.003000,0.249982,0,0);}
.mf_c00344{transform:matrix(0.328389,-0.003284,0.002500,0.249988,0,0);-ms-transform:matrix(0.328389,-0.003284,0.002500,0.249988,0,0);-webkit-transform:matrix(0.328389,-0.003284,0.002500,0.249988,0,0);}
.m12_c00344{transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329560,0.000000,0.000000,0.250000,0,0);}
.mfa_c00344{transform:matrix(0.342166,-0.003079,0.002250,0.249990,0,0);-ms-transform:matrix(0.342166,-0.003079,0.002250,0.249990,0,0);-webkit-transform:matrix(0.342166,-0.003079,0.002250,0.249990,0,0);}
.m3_c00344{transform:matrix(0.342463,-0.003425,0.002500,0.249988,0,0);-ms-transform:matrix(0.342463,-0.003425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.342463,-0.003425,0.002500,0.249988,0,0);}
.mb_c00344{transform:matrix(0.344363,-0.003444,0.002500,0.249988,0,0);-ms-transform:matrix(0.344363,-0.003444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344363,-0.003444,0.002500,0.249988,0,0);}
.m99_c00344{transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.351332,-0.003513,0.002500,0.249988,0,0);-ms-transform:matrix(0.351332,-0.003513,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351332,-0.003513,0.002500,0.249988,0,0);}
.mc_c00344{transform:matrix(0.357402,-0.003574,0.002500,0.249988,0,0);-ms-transform:matrix(0.357402,-0.003574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.357402,-0.003574,0.002500,0.249988,0,0);}
.m11_c00344{transform:matrix(0.357772,-0.003578,0.002500,0.249988,0,0);-ms-transform:matrix(0.357772,-0.003578,0.002500,0.249988,0,0);-webkit-transform:matrix(0.357772,-0.003578,0.002500,0.249988,0,0);}
.m15c_c00344{transform:matrix(0.369608,-0.004435,0.003000,0.249982,0,0);-ms-transform:matrix(0.369608,-0.004435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.369608,-0.004435,0.003000,0.249982,0,0);}
.m152_c00344{transform:matrix(0.388041,-0.003880,0.002500,0.249988,0,0);-ms-transform:matrix(0.388041,-0.003880,0.002500,0.249988,0,0);-webkit-transform:matrix(0.388041,-0.003880,0.002500,0.249988,0,0);}
.m0_c00344{transform:matrix(0.420814,-0.004208,0.002500,0.249988,0,0);-ms-transform:matrix(0.420814,-0.004208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.420814,-0.004208,0.002500,0.249988,0,0);}
.m6a_c00344{transform:matrix(0.421950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421950,0.000000,0.000000,0.250000,0,0);}
.m88_c00344{transform:matrix(0.434365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434365,0.000000,0.000000,0.250000,0,0);}
.m15a_c00344{transform:matrix(0.435834,-0.005230,0.003000,0.249982,0,0);-ms-transform:matrix(0.435834,-0.005230,0.003000,0.249982,0,0);-webkit-transform:matrix(0.435834,-0.005230,0.003000,0.249982,0,0);}
.m151_c00344{transform:matrix(0.468422,-0.004684,0.002500,0.249988,0,0);-ms-transform:matrix(0.468422,-0.004684,0.002500,0.249988,0,0);-webkit-transform:matrix(0.468422,-0.004684,0.002500,0.249988,0,0);}
.m1_c00344{transform:matrix(0.496490,-0.004965,0.002500,0.249988,0,0);-ms-transform:matrix(0.496490,-0.004965,0.002500,0.249988,0,0);-webkit-transform:matrix(0.496490,-0.004965,0.002500,0.249988,0,0);}
.m158_c00344{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.509030,-0.005090,0.002500,0.249988,0,0);-ms-transform:matrix(0.509030,-0.005090,0.002500,0.249988,0,0);-webkit-transform:matrix(0.509030,-0.005090,0.002500,0.249988,0,0);}
.m2_c00344{transform:matrix(0.539548,-0.005395,0.002500,0.249988,0,0);-ms-transform:matrix(0.539548,-0.005395,0.002500,0.249988,0,0);-webkit-transform:matrix(0.539548,-0.005395,0.002500,0.249988,0,0);}
.m7_c00344{transform:matrix(0.579726,-0.005797,0.002500,0.249988,0,0);-ms-transform:matrix(0.579726,-0.005797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.579726,-0.005797,0.002500,0.249988,0,0);}
.m4_c00344{transform:matrix(0.602525,-0.006025,0.002500,0.249988,0,0);-ms-transform:matrix(0.602525,-0.006025,0.002500,0.249988,0,0);-webkit-transform:matrix(0.602525,-0.006025,0.002500,0.249988,0,0);}
.m51_c00344{transform:matrix(0.636015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636015,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.640018,-0.006400,0.002500,0.249988,0,0);-ms-transform:matrix(0.640018,-0.006400,0.002500,0.249988,0,0);-webkit-transform:matrix(0.640018,-0.006400,0.002500,0.249988,0,0);}
.m15f_c00344{transform:matrix(0.693995,-0.008328,0.003000,0.249982,0,0);-ms-transform:matrix(0.693995,-0.008328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.693995,-0.008328,0.003000,0.249982,0,0);}
.m10_c00344{transform:matrix(0.970376,-0.009704,0.002500,0.249988,0,0);-ms-transform:matrix(0.970376,-0.009704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.970376,-0.009704,0.002500,0.249988,0,0);}
.ma_c00344{transform:matrix(1.007565,-0.010076,0.002500,0.249988,0,0);-ms-transform:matrix(1.007565,-0.010076,0.002500,0.249988,0,0);-webkit-transform:matrix(1.007565,-0.010076,0.002500,0.249988,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;}
.fs15_c00344{font-size:15.750000px;}
.fs16_c00344{font-size:35.700000px;}
.fs18_c00344{font-size:52.500000px;}
.fs11_c00344{font-size:66.153307px;}
.fs9_c00344{font-size:68.250000px;}
.fs10_c00344{font-size:68.253412px;}
.fs5_c00344{font-size:69.300000px;}
.fsd_c00344{font-size:69.302807px;}
.fs13_c00344{font-size:69.303465px;}
.fs14_c00344{font-size:69.304989px;}
.fs8_c00344{font-size:70.350000px;}
.fs12_c00344{font-size:70.352251px;}
.fsc_c00344{font-size:70.352849px;}
.fse_c00344{font-size:70.353517px;}
.fs4_c00344{font-size:71.400000px;}
.fsa_c00344{font-size:71.402892px;}
.fsf_c00344{font-size:71.403570px;}
.fs3_c00344{font-size:72.450000px;}
.fsb_c00344{font-size:72.452934px;}
.fs6_c00344{font-size:73.500000px;}
.fs0_c00344{font-size:73.503675px;}
.fs7_c00344{font-size:74.550000px;}
.fs1_c00344{font-size:76.653832px;}
.fs2_c00344{font-size:122.850000px;}
.fs17_c00344{font-size:139.660054px;}
.y0_c00344{bottom:0.000000px;}
.yfe_c00344{bottom:87.484500px;}
.yff_c00344{bottom:88.940214px;}
.y100_c00344{bottom:89.081694px;}
.y105_c00344{bottom:89.769000px;}
.y101_c00344{bottom:90.406836px;}
.y102_c00344{bottom:90.818370px;}
.y103_c00344{bottom:91.504260px;}
.yfd_c00344{bottom:91.824000px;}
.y104_c00344{bottom:94.026996px;}
.yfc_c00344{bottom:96.930000px;}
.yf8_c00344{bottom:133.651500px;}
.yf9_c00344{bottom:134.795832px;}
.yfa_c00344{bottom:135.142674px;}
.yfb_c00344{bottom:136.716576px;}
.yed_c00344{bottom:156.331500px;}
.yee_c00344{bottom:156.765795px;}
.yef_c00344{bottom:157.368300px;}
.yf0_c00344{bottom:157.557345px;}
.yf1_c00344{bottom:158.275515px;}
.yf2_c00344{bottom:158.766885px;}
.yf3_c00344{bottom:159.284820px;}
.yf4_c00344{bottom:159.587265px;}
.yf5_c00344{bottom:159.838860px;}
.yf6_c00344{bottom:160.038840px;}
.yf7_c00344{bottom:160.624680px;}
.ye4_c00344{bottom:178.741500px;}
.ye5_c00344{bottom:179.054916px;}
.ye6_c00344{bottom:179.497584px;}
.ye7_c00344{bottom:180.114672px;}
.ye8_c00344{bottom:180.216792px;}
.ye9_c00344{bottom:180.523572px;}
.yea_c00344{bottom:180.696336px;}
.yeb_c00344{bottom:181.372428px;}
.yec_c00344{bottom:181.655436px;}
.yd9_c00344{bottom:201.417855px;}
.yda_c00344{bottom:201.785445px;}
.ydb_c00344{bottom:202.368135px;}
.ydc_c00344{bottom:202.600485px;}
.ydd_c00344{bottom:203.369865px;}
.yde_c00344{bottom:203.705130px;}
.ydf_c00344{bottom:203.959080px;}
.ye0_c00344{bottom:204.476940px;}
.ye1_c00344{bottom:205.514370px;}
.ye2_c00344{bottom:205.773015px;}
.ye3_c00344{bottom:206.100240px;}
.yce_c00344{bottom:224.099265px;}
.ycf_c00344{bottom:224.390715px;}
.yd0_c00344{bottom:224.898045px;}
.yd1_c00344{bottom:225.716430px;}
.yd2_c00344{bottom:225.870045px;}
.yd3_c00344{bottom:226.018695px;}
.yd4_c00344{bottom:226.684290px;}
.yd5_c00344{bottom:227.384175px;}
.yd6_c00344{bottom:227.517915px;}
.yd7_c00344{bottom:227.763435px;}
.yd8_c00344{bottom:228.067605px;}
.yc2_c00344{bottom:246.509085px;}
.yc3_c00344{bottom:246.684285px;}
.yc4_c00344{bottom:246.842550px;}
.yc5_c00344{bottom:247.486575px;}
.yc6_c00344{bottom:247.688250px;}
.yc7_c00344{bottom:248.291460px;}
.yc8_c00344{bottom:248.479935px;}
.yc9_c00344{bottom:248.807820px;}
.yca_c00344{bottom:249.284520px;}
.ycb_c00344{bottom:249.467580px;}
.ycc_c00344{bottom:250.011045px;}
.ycd_c00344{bottom:250.247205px;}
.yb9_c00344{bottom:269.729265px;}
.yba_c00344{bottom:270.019185px;}
.ybb_c00344{bottom:270.501495px;}
.ybc_c00344{bottom:270.730560px;}
.ybd_c00344{bottom:271.358730px;}
.ybe_c00344{bottom:271.820745px;}
.ybf_c00344{bottom:272.084370px;}
.yc0_c00344{bottom:272.375490px;}
.yc1_c00344{bottom:272.796990px;}
.yb3_c00344{bottom:292.141500px;}
.yb4_c00344{bottom:292.676160px;}
.yb5_c00344{bottom:292.867965px;}
.yb6_c00344{bottom:292.946610px;}
.yb7_c00344{bottom:293.729280px;}
.yb8_c00344{bottom:294.018165px;}
.ya9_c00344{bottom:314.545500px;}
.yaa_c00344{bottom:314.879947px;}
.yab_c00344{bottom:315.208929px;}
.yac_c00344{bottom:315.746377px;}
.yad_c00344{bottom:315.975565px;}
.yae_c00344{bottom:316.270032px;}
.yaf_c00344{bottom:316.644003px;}
.yb0_c00344{bottom:317.328705px;}
.yb1_c00344{bottom:317.536498px;}
.yb2_c00344{bottom:317.776687px;}
.y9e_c00344{bottom:336.959136px;}
.y9f_c00344{bottom:337.323442px;}
.ya0_c00344{bottom:337.504468px;}
.ya1_c00344{bottom:338.200327px;}
.ya2_c00344{bottom:338.459148px;}
.ya3_c00344{bottom:338.953635px;}
.ya4_c00344{bottom:339.155155px;}
.ya5_c00344{bottom:339.690241px;}
.ya6_c00344{bottom:340.214701px;}
.ya7_c00344{bottom:340.866357px;}
.ya8_c00344{bottom:341.292931px;}
.y94_c00344{bottom:360.989593px;}
.y95_c00344{bottom:361.608087px;}
.y96_c00344{bottom:361.829512px;}
.y97_c00344{bottom:362.048401px;}
.y98_c00344{bottom:362.525377px;}
.y99_c00344{bottom:362.875227px;}
.y9a_c00344{bottom:363.076162px;}
.y9b_c00344{bottom:363.900828px;}
.y9c_c00344{bottom:364.087362px;}
.y9d_c00344{bottom:364.759146px;}
.y89_c00344{bottom:383.670588px;}
.y8a_c00344{bottom:384.039465px;}
.y8b_c00344{bottom:384.396775px;}
.y8c_c00344{bottom:384.526905px;}
.y8d_c00344{bottom:384.757405px;}
.y8e_c00344{bottom:385.247248px;}
.y8f_c00344{bottom:385.370739px;}
.y90_c00344{bottom:385.778389px;}
.y91_c00344{bottom:386.180803px;}
.y92_c00344{bottom:386.537709px;}
.y93_c00344{bottom:386.760219px;}
.y80_c00344{bottom:406.081500px;}
.y81_c00344{bottom:406.676958px;}
.y82_c00344{bottom:407.469057px;}
.y83_c00344{bottom:407.850661px;}
.y84_c00344{bottom:408.239407px;}
.y85_c00344{bottom:408.586573px;}
.y86_c00344{bottom:408.717942px;}
.y87_c00344{bottom:409.085317px;}
.y88_c00344{bottom:410.001171px;}
.y75_c00344{bottom:429.568500px;}
.y76_c00344{bottom:429.916500px;}
.y77_c00344{bottom:430.117500px;}
.y78_c00344{bottom:430.348500px;}
.y79_c00344{bottom:430.791000px;}
.y7a_c00344{bottom:431.014500px;}
.y7b_c00344{bottom:431.296500px;}
.y7c_c00344{bottom:431.494500px;}
.y7d_c00344{bottom:432.025500px;}
.y7e_c00344{bottom:432.504000px;}
.y7f_c00344{bottom:432.802500px;}
.y74_c00344{bottom:453.721500px;}
.y73_c00344{bottom:476.641500px;}
.y72_c00344{bottom:499.318500px;}
.y71_c00344{bottom:522.298500px;}
.y70_c00344{bottom:544.678500px;}
.y66_c00344{bottom:565.918500px;}
.y67_c00344{bottom:566.223000px;}
.y68_c00344{bottom:566.428500px;}
.y69_c00344{bottom:566.971500px;}
.y6a_c00344{bottom:567.754500px;}
.y6b_c00344{bottom:567.873000px;}
.y6c_c00344{bottom:568.053000px;}
.y6d_c00344{bottom:568.363500px;}
.y6e_c00344{bottom:568.668000px;}
.y6f_c00344{bottom:568.837500px;}
.y5e_c00344{bottom:588.868500px;}
.y5f_c00344{bottom:589.450500px;}
.y60_c00344{bottom:589.609500px;}
.y61_c00344{bottom:590.106000px;}
.y62_c00344{bottom:590.599500px;}
.y63_c00344{bottom:591.181500px;}
.y64_c00344{bottom:591.705000px;}
.y65_c00344{bottom:591.900000px;}
.y5d_c00344{bottom:612.987000px;}
.y52_c00344{bottom:633.691500px;}
.y53_c00344{bottom:633.921000px;}
.y54_c00344{bottom:634.107000px;}
.y55_c00344{bottom:634.269000px;}
.y56_c00344{bottom:634.701000px;}
.y57_c00344{bottom:634.972500px;}
.y58_c00344{bottom:635.211000px;}
.y59_c00344{bottom:635.601000px;}
.y5a_c00344{bottom:635.800500px;}
.y5b_c00344{bottom:636.231000px;}
.y5c_c00344{bottom:636.358500px;}
.y46_c00344{bottom:656.643000px;}
.y47_c00344{bottom:656.922000px;}
.y48_c00344{bottom:657.294000px;}
.y49_c00344{bottom:657.591000px;}
.y4a_c00344{bottom:657.858000px;}
.y4b_c00344{bottom:658.122000px;}
.y4c_c00344{bottom:658.335000px;}
.y4d_c00344{bottom:658.747500px;}
.y4e_c00344{bottom:658.921500px;}
.y4f_c00344{bottom:659.068500px;}
.y50_c00344{bottom:659.665500px;}
.y51_c00344{bottom:659.962500px;}
.y45_c00344{bottom:682.005000px;}
.y38_c00344{bottom:702.001500px;}
.y39_c00344{bottom:702.219000px;}
.y3a_c00344{bottom:702.582000px;}
.y3b_c00344{bottom:703.075500px;}
.y3c_c00344{bottom:703.258500px;}
.y3d_c00344{bottom:703.563000px;}
.y3e_c00344{bottom:703.713000px;}
.y3f_c00344{bottom:704.053500px;}
.y40_c00344{bottom:704.361000px;}
.y41_c00344{bottom:704.616000px;}
.y42_c00344{bottom:704.874000px;}
.y43_c00344{bottom:705.379500px;}
.y44_c00344{bottom:705.538500px;}
.y2b_c00344{bottom:725.490000px;}
.y2c_c00344{bottom:725.737500px;}
.y2d_c00344{bottom:725.940000px;}
.y2e_c00344{bottom:726.216000px;}
.y2f_c00344{bottom:726.447000px;}
.y30_c00344{bottom:726.736500px;}
.y31_c00344{bottom:727.306500px;}
.y32_c00344{bottom:727.522500px;}
.y33_c00344{bottom:727.800000px;}
.y34_c00344{bottom:727.896000px;}
.y35_c00344{bottom:728.061000px;}
.y36_c00344{bottom:728.437500px;}
.y37_c00344{bottom:728.604000px;}
.y2a_c00344{bottom:749.613000px;}
.y1f_c00344{bottom:771.120000px;}
.y20_c00344{bottom:771.396000px;}
.y21_c00344{bottom:771.943500px;}
.y22_c00344{bottom:772.248000px;}
.y23_c00344{bottom:772.372500px;}
.y24_c00344{bottom:772.585500px;}
.y25_c00344{bottom:773.071500px;}
.y26_c00344{bottom:773.236500px;}
.y27_c00344{bottom:773.353500px;}
.y28_c00344{bottom:773.796000px;}
.y29_c00344{bottom:774.073500px;}
.y15_c00344{bottom:793.800000px;}
.y16_c00344{bottom:794.352000px;}
.y17_c00344{bottom:794.614500px;}
.y18_c00344{bottom:794.938500px;}
.y19_c00344{bottom:795.330000px;}
.y1a_c00344{bottom:795.673500px;}
.y1b_c00344{bottom:795.987000px;}
.y1c_c00344{bottom:796.140000px;}
.y1d_c00344{bottom:796.825500px;}
.y1e_c00344{bottom:796.945500px;}
.y14_c00344{bottom:818.176500px;}
.y13_c00344{bottom:861.841500px;}
.ya_c00344{bottom:900.981000px;}
.yb_c00344{bottom:901.390845px;}
.yc_c00344{bottom:902.044755px;}
.yd_c00344{bottom:902.598225px;}
.ye_c00344{bottom:903.211095px;}
.yf_c00344{bottom:903.445275px;}
.y10_c00344{bottom:903.715590px;}
.y11_c00344{bottom:904.218465px;}
.y12_c00344{bottom:905.633160px;}
.y1_c00344{bottom:917.464500px;}
.y2_c00344{bottom:918.425790px;}
.y3_c00344{bottom:918.987600px;}
.y4_c00344{bottom:919.659975px;}
.y5_c00344{bottom:919.875930px;}
.y7_c00344{bottom:920.710350px;}
.y6_c00344{bottom:920.861220px;}
.y8_c00344{bottom:921.365250px;}
.y9_c00344{bottom:922.281420px;}
.h17_c00344{height:15.750000px;}
.h18_c00344{height:35.700000px;}
.h1a_c00344{height:52.500000px;}
.h13_c00344{height:66.153307px;}
.hb_c00344{height:68.250000px;}
.h12_c00344{height:68.253412px;}
.h7_c00344{height:69.300000px;}
.hf_c00344{height:69.302807px;}
.h15_c00344{height:69.303465px;}
.h16_c00344{height:69.304989px;}
.ha_c00344{height:70.350000px;}
.h14_c00344{height:70.352251px;}
.he_c00344{height:70.352849px;}
.h10_c00344{height:70.353517px;}
.h6_c00344{height:71.400000px;}
.hc_c00344{height:71.402892px;}
.h11_c00344{height:71.403570px;}
.h5_c00344{height:72.450000px;}
.hd_c00344{height:72.452934px;}
.h8_c00344{height:73.500000px;}
.h2_c00344{height:73.503675px;}
.h9_c00344{height:74.550000px;}
.h3_c00344{height:76.653832px;}
.h4_c00344{height:122.850000px;}
.h19_c00344{height:139.660054px;}
.h1_c00344{height:1005.000000px;}
.h0_c00344{height:1005.150000px;}
.w0_c00344{width:702.540000px;}
.w1_c00344{width:702.750000px;}
.x0_c00344{left:0.000000px;}
.x56_c00344{left:39.421500px;}
.x4c_c00344{left:44.689500px;}
.x1_c00344{left:46.564500px;}
.x5e_c00344{left:51.105000px;}
.x65_c00344{left:52.450500px;}
.xc8_c00344{left:54.079500px;}
.xa_c00344{left:67.731435px;}
.x4d_c00344{left:75.690000px;}
.x2e_c00344{left:82.681500px;}
.x25_c00344{left:85.711500px;}
.x73_c00344{left:88.407000px;}
.x19_c00344{left:90.720000px;}
.x6c_c00344{left:91.803000px;}
.x9b_c00344{left:93.001500px;}
.xab_c00344{left:94.359000px;}
.xb8_c00344{left:95.951805px;}
.xb_c00344{left:108.715935px;}
.x1a_c00344{left:112.320000px;}
.x57_c00344{left:114.751500px;}
.x8e_c00344{left:115.831500px;}
.x39_c00344{left:117.991500px;}
.x93_c00344{left:119.611500px;}
.x2f_c00344{left:122.158500px;}
.x41_c00344{left:126.181500px;}
.x4e_c00344{left:127.537500px;}
.xa6_c00344{left:130.005769px;}
.x82_c00344{left:132.031500px;}
.x78_c00344{left:135.909000px;}
.x2_c00344{left:142.693500px;}
.x5f_c00344{left:144.270000px;}
.xac_c00344{left:147.825000px;}
.x66_c00344{left:148.852500px;}
.xb0_c00344{left:153.204585px;}
.x42_c00344{left:155.070000px;}
.xbd_c00344{left:158.041500px;}
.x9c_c00344{left:159.163500px;}
.x58_c00344{left:162.001500px;}
.x26_c00344{left:164.524500px;}
.xad_c00344{left:167.005500px;}
.x7d_c00344{left:168.211500px;}
.x74_c00344{left:171.549000px;}
.xc_c00344{left:174.106935px;}
.xc9_c00344{left:175.389000px;}
.xa7_c00344{left:176.707066px;}
.x6d_c00344{left:181.983000px;}
.x8f_c00344{left:183.331500px;}
.x88_c00344{left:185.491500px;}
.x60_c00344{left:186.658500px;}
.x1b_c00344{left:190.080000px;}
.x3a_c00344{left:191.971500px;}
.x43_c00344{left:194.467500px;}
.xa0_c00344{left:196.124499px;}
.x3_c00344{left:198.874500px;}
.x30_c00344{left:200.436000px;}
.x27_c00344{left:202.027500px;}
.x13_c00344{left:203.310000px;}
.x83_c00344{left:206.821500px;}
.x6e_c00344{left:211.143000px;}
.x7e_c00344{left:213.031500px;}
.xa1_c00344{left:214.750337px;}
.x3b_c00344{left:216.001500px;}
.x59_c00344{left:217.081500px;}
.xbe_c00344{left:218.292000px;}
.x67_c00344{left:220.942500px;}
.x4f_c00344{left:224.172000px;}
.xa5_c00344{left:225.842025px;}
.x44_c00344{left:227.401500px;}
.xd_c00344{left:229.453935px;}
.x90_c00344{left:234.631500px;}
.xbf_c00344{left:237.196500px;}
.x79_c00344{left:242.829000px;}
.x31_c00344{left:243.871500px;}
.x9d_c00344{left:247.174500px;}
.x28_c00344{left:248.229000px;}
.xc7_c00344{left:249.480000px;}
.xae_c00344{left:253.137000px;}
.x1c_c00344{left:255.960000px;}
.x32_c00344{left:261.703500px;}
.x6f_c00344{left:263.523000px;}
.x4_c00344{left:266.112000px;}
.x50_c00344{left:267.664500px;}
.x45_c00344{left:268.753500px;}
.x84_c00344{left:271.621500px;}
.x7f_c00344{left:273.781500px;}
.xb6_c00344{left:274.984245px;}
.xaf_c00344{left:282.025500px;}
.x70_c00344{left:285.933000px;}
.x5_c00344{left:287.707500px;}
.x3c_c00344{left:288.901500px;}
.xe_c00344{left:290.740935px;}
.x33_c00344{left:292.236000px;}
.x91_c00344{left:297.001500px;}
.x1d_c00344{left:298.890000px;}
.x14_c00344{left:299.970000px;}
.x89_c00344{left:301.861500px;}
.x29_c00344{left:304.084500px;}
.x68_c00344{left:305.995500px;}
.xa8_c00344{left:309.275255px;}
.xf_c00344{left:314.158935px;}
.xc6_c00344{left:315.630000px;}
.x80_c00344{left:318.061500px;}
.xbb_c00344{left:319.525500px;}
.xb1_c00344{left:320.612430px;}
.xb9_c00344{left:324.679305px;}
.x94_c00344{left:328.591500px;}
.x5a_c00344{left:329.671500px;}
.x9e_c00344{left:332.769000px;}
.x75_c00344{left:335.709000px;}
.x51_c00344{left:337.600500px;}
.x98_c00344{left:339.213000px;}
.x10_c00344{left:341.190435px;}
.x8a_c00344{left:344.791500px;}
.x1e_c00344{left:346.140000px;}
.x46_c00344{left:350.250000px;}
.x61_c00344{left:351.903000px;}
.x2a_c00344{left:353.256000px;}
.x7a_c00344{left:354.625500px;}
.xa9_c00344{left:355.994673px;}
.xc0_c00344{left:358.150500px;}
.x34_c00344{left:361.624500px;}
.x3d_c00344{left:365.851500px;}
.x8b_c00344{left:367.741500px;}
.x15_c00344{left:369.360000px;}
.x7_c00344{left:371.149500px;}
.x71_c00344{left:374.763000px;}
.x62_c00344{left:376.740000px;}
.xb2_c00344{left:378.365085px;}
.x85_c00344{left:379.891500px;}
.x47_c00344{left:381.087000px;}
.x5b_c00344{left:382.861500px;}
.x1f_c00344{left:383.940000px;}
.x35_c00344{left:385.117500px;}
.x6_c00344{left:386.236500px;}
.xca_c00344{left:389.059500px;}
.x11_c00344{left:391.477935px;}
.xa2_c00344{left:393.474049px;}
.x2b_c00344{left:398.074500px;}
.x36_c00344{left:401.853000px;}
.x69_c00344{left:404.274000px;}
.x5c_c00344{left:408.241500px;}
.xc1_c00344{left:409.944000px;}
.xb3_c00344{left:411.328245px;}
.x95_c00344{left:414.991500px;}
.x52_c00344{left:418.023000px;}
.x2c_c00344{left:419.950500px;}
.x20_c00344{left:423.630000px;}
.xbc_c00344{left:425.632500px;}
.x9f_c00344{left:426.759000px;}
.xc4_c00344{left:427.854000px;}
.x8c_c00344{left:430.111500px;}
.x48_c00344{left:434.523000px;}
.x8_c00344{left:436.639500px;}
.xc2_c00344{left:440.188500px;}
.x7b_c00344{left:441.520500px;}
.x99_c00344{left:443.460000px;}
.x3e_c00344{left:445.501500px;}
.xb4_c00344{left:447.790980px;}
.xa3_c00344{left:451.021089px;}
.x86_c00344{left:452.521500px;}
.x53_c00344{left:454.785000px;}
.x49_c00344{left:458.016000px;}
.xb7_c00344{left:460.210590px;}
.x21_c00344{left:462.240000px;}
.x37_c00344{left:465.001500px;}
.xaa_c00344{left:467.495172px;}
.x6a_c00344{left:476.067000px;}
.x3f_c00344{left:480.331500px;}
.x63_c00344{left:483.126000px;}
.x7c_c00344{left:485.022000px;}
.x5d_c00344{left:486.541500px;}
.x22_c00344{left:487.890000px;}
.x96_c00344{left:490.051500px;}
.x16_c00344{left:491.400000px;}
.x76_c00344{left:493.689000px;}
.x6b_c00344{left:497.427000px;}
.x92_c00344{left:498.961500px;}
.x8d_c00344{left:500.311500px;}
.xa4_c00344{left:502.011507px;}
.x38_c00344{left:504.726000px;}
.x17_c00344{left:509.220000px;}
.x4a_c00344{left:511.741500px;}
.x2d_c00344{left:517.882500px;}
.x97_c00344{left:518.941500px;}
.x77_c00344{left:521.461500px;}
.x64_c00344{left:525.514500px;}
.x54_c00344{left:527.101500px;}
.x9_c00344{left:528.256500px;}
.x23_c00344{left:530.010000px;}
.xba_c00344{left:531.467805px;}
.x12_c00344{left:532.947435px;}
.x18_c00344{left:534.330000px;}
.x4b_c00344{left:535.504500px;}
.x72_c00344{left:538.383000px;}
.x81_c00344{left:539.461500px;}
.x87_c00344{left:542.431500px;}
.xc3_c00344{left:543.930000px;}
.x55_c00344{left:549.817500px;}
.x24_c00344{left:551.880000px;}
.x9a_c00344{left:554.367000px;}
.xc5_c00344{left:559.012500px;}
.xb5_c00344{left:561.995160px;}
.x40_c00344{left:564.301500px;}
.xcb_c00344{left:599.287500px;}
.xcc_c00344{left:609.120000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.fs15_c00344{font-size:14.000000pt;}
.fs16_c00344{font-size:31.733333pt;}
.fs18_c00344{font-size:46.666667pt;}
.fs11_c00344{font-size:58.802940pt;}
.fs9_c00344{font-size:60.666667pt;}
.fs10_c00344{font-size:60.669700pt;}
.fs5_c00344{font-size:61.600000pt;}
.fsd_c00344{font-size:61.602495pt;}
.fs13_c00344{font-size:61.603080pt;}
.fs14_c00344{font-size:61.604435pt;}
.fs8_c00344{font-size:62.533333pt;}
.fs12_c00344{font-size:62.535334pt;}
.fsc_c00344{font-size:62.535866pt;}
.fse_c00344{font-size:62.536460pt;}
.fs4_c00344{font-size:63.466667pt;}
.fsa_c00344{font-size:63.469237pt;}
.fsf_c00344{font-size:63.469840pt;}
.fs3_c00344{font-size:64.400000pt;}
.fsb_c00344{font-size:64.402608pt;}
.fs6_c00344{font-size:65.333333pt;}
.fs0_c00344{font-size:65.336600pt;}
.fs7_c00344{font-size:66.266667pt;}
.fs1_c00344{font-size:68.136740pt;}
.fs2_c00344{font-size:109.200000pt;}
.fs17_c00344{font-size:124.142271pt;}
.y0_c00344{bottom:0.000000pt;}
.yfe_c00344{bottom:77.764000pt;}
.yff_c00344{bottom:79.057968pt;}
.y100_c00344{bottom:79.183728pt;}
.y105_c00344{bottom:79.794667pt;}
.y101_c00344{bottom:80.361632pt;}
.y102_c00344{bottom:80.727440pt;}
.y103_c00344{bottom:81.337120pt;}
.yfd_c00344{bottom:81.621333pt;}
.y104_c00344{bottom:83.579552pt;}
.yfc_c00344{bottom:86.160000pt;}
.yf8_c00344{bottom:118.801333pt;}
.yf9_c00344{bottom:119.818517pt;}
.yfa_c00344{bottom:120.126821pt;}
.yfb_c00344{bottom:121.525845pt;}
.yed_c00344{bottom:138.961333pt;}
.yee_c00344{bottom:139.347373pt;}
.yef_c00344{bottom:139.882933pt;}
.yf0_c00344{bottom:140.050973pt;}
.yf1_c00344{bottom:140.689347pt;}
.yf2_c00344{bottom:141.126120pt;}
.yf3_c00344{bottom:141.586507pt;}
.yf4_c00344{bottom:141.855347pt;}
.yf5_c00344{bottom:142.078987pt;}
.yf6_c00344{bottom:142.256747pt;}
.yf7_c00344{bottom:142.777493pt;}
.ye4_c00344{bottom:158.881333pt;}
.ye5_c00344{bottom:159.159925pt;}
.ye6_c00344{bottom:159.553408pt;}
.ye7_c00344{bottom:160.101931pt;}
.ye8_c00344{bottom:160.192704pt;}
.ye9_c00344{bottom:160.465397pt;}
.yea_c00344{bottom:160.618965pt;}
.yeb_c00344{bottom:161.219936pt;}
.yec_c00344{bottom:161.471499pt;}
.yd9_c00344{bottom:179.038093pt;}
.yda_c00344{bottom:179.364840pt;}
.ydb_c00344{bottom:179.882787pt;}
.ydc_c00344{bottom:180.089320pt;}
.ydd_c00344{bottom:180.773213pt;}
.yde_c00344{bottom:181.071227pt;}
.ydf_c00344{bottom:181.296960pt;}
.ye0_c00344{bottom:181.757280pt;}
.ye1_c00344{bottom:182.679440pt;}
.ye2_c00344{bottom:182.909347pt;}
.ye3_c00344{bottom:183.200213pt;}
.yce_c00344{bottom:199.199347pt;}
.ycf_c00344{bottom:199.458413pt;}
.yd0_c00344{bottom:199.909373pt;}
.yd1_c00344{bottom:200.636827pt;}
.yd2_c00344{bottom:200.773373pt;}
.yd3_c00344{bottom:200.905507pt;}
.yd4_c00344{bottom:201.497147pt;}
.yd5_c00344{bottom:202.119267pt;}
.yd6_c00344{bottom:202.238147pt;}
.yd7_c00344{bottom:202.456387pt;}
.yd8_c00344{bottom:202.726760pt;}
.yc2_c00344{bottom:219.119187pt;}
.yc3_c00344{bottom:219.274920pt;}
.yc4_c00344{bottom:219.415600pt;}
.yc5_c00344{bottom:219.988067pt;}
.yc6_c00344{bottom:220.167333pt;}
.yc7_c00344{bottom:220.703520pt;}
.yc8_c00344{bottom:220.871053pt;}
.yc9_c00344{bottom:221.162507pt;}
.yca_c00344{bottom:221.586240pt;}
.ycb_c00344{bottom:221.748960pt;}
.ycc_c00344{bottom:222.232040pt;}
.ycd_c00344{bottom:222.441960pt;}
.yb9_c00344{bottom:239.759347pt;}
.yba_c00344{bottom:240.017053pt;}
.ybb_c00344{bottom:240.445773pt;}
.ybc_c00344{bottom:240.649387pt;}
.ybd_c00344{bottom:241.207760pt;}
.ybe_c00344{bottom:241.618440pt;}
.ybf_c00344{bottom:241.852773pt;}
.yc0_c00344{bottom:242.111547pt;}
.yc1_c00344{bottom:242.486213pt;}
.yb3_c00344{bottom:259.681333pt;}
.yb4_c00344{bottom:260.156587pt;}
.yb5_c00344{bottom:260.327080pt;}
.yb6_c00344{bottom:260.396987pt;}
.yb7_c00344{bottom:261.092693pt;}
.yb8_c00344{bottom:261.349480pt;}
.ya9_c00344{bottom:279.596000pt;}
.yaa_c00344{bottom:279.893287pt;}
.yab_c00344{bottom:280.185715pt;}
.yac_c00344{bottom:280.663447pt;}
.yad_c00344{bottom:280.867169pt;}
.yae_c00344{bottom:281.128917pt;}
.yaf_c00344{bottom:281.461336pt;}
.yb0_c00344{bottom:282.069960pt;}
.yb1_c00344{bottom:282.254665pt;}
.yb2_c00344{bottom:282.468167pt;}
.y9e_c00344{bottom:299.519232pt;}
.y9f_c00344{bottom:299.843060pt;}
.ya0_c00344{bottom:300.003972pt;}
.ya1_c00344{bottom:300.622513pt;}
.ya2_c00344{bottom:300.852576pt;}
.ya3_c00344{bottom:301.292120pt;}
.ya4_c00344{bottom:301.471249pt;}
.ya5_c00344{bottom:301.946881pt;}
.ya6_c00344{bottom:302.413068pt;}
.ya7_c00344{bottom:302.992317pt;}
.ya8_c00344{bottom:303.371495pt;}
.y94_c00344{bottom:320.879639pt;}
.y95_c00344{bottom:321.429411pt;}
.y96_c00344{bottom:321.626233pt;}
.y97_c00344{bottom:321.820801pt;}
.y98_c00344{bottom:322.244780pt;}
.y99_c00344{bottom:322.555757pt;}
.y9a_c00344{bottom:322.734367pt;}
.y9b_c00344{bottom:323.467403pt;}
.y9c_c00344{bottom:323.633211pt;}
.y9d_c00344{bottom:324.230352pt;}
.y89_c00344{bottom:341.040523pt;}
.y8a_c00344{bottom:341.368413pt;}
.y8b_c00344{bottom:341.686023pt;}
.y8c_c00344{bottom:341.801693pt;}
.y8d_c00344{bottom:342.006583pt;}
.y8e_c00344{bottom:342.441999pt;}
.y8f_c00344{bottom:342.551768pt;}
.y90_c00344{bottom:342.914124pt;}
.y91_c00344{bottom:343.271825pt;}
.y92_c00344{bottom:343.589075pt;}
.y93_c00344{bottom:343.786861pt;}
.y80_c00344{bottom:360.961333pt;}
.y81_c00344{bottom:361.490629pt;}
.y82_c00344{bottom:362.194717pt;}
.y83_c00344{bottom:362.533921pt;}
.y84_c00344{bottom:362.879473pt;}
.y85_c00344{bottom:363.188065pt;}
.y86_c00344{bottom:363.304837pt;}
.y87_c00344{bottom:363.631393pt;}
.y88_c00344{bottom:364.445485pt;}
.y75_c00344{bottom:381.838667pt;}
.y76_c00344{bottom:382.148000pt;}
.y77_c00344{bottom:382.326667pt;}
.y78_c00344{bottom:382.532000pt;}
.y79_c00344{bottom:382.925333pt;}
.y7a_c00344{bottom:383.124000pt;}
.y7b_c00344{bottom:383.374667pt;}
.y7c_c00344{bottom:383.550667pt;}
.y7d_c00344{bottom:384.022667pt;}
.y7e_c00344{bottom:384.448000pt;}
.y7f_c00344{bottom:384.713333pt;}
.y74_c00344{bottom:403.308000pt;}
.y73_c00344{bottom:423.681333pt;}
.y72_c00344{bottom:443.838667pt;}
.y71_c00344{bottom:464.265333pt;}
.y70_c00344{bottom:484.158667pt;}
.y66_c00344{bottom:503.038667pt;}
.y67_c00344{bottom:503.309333pt;}
.y68_c00344{bottom:503.492000pt;}
.y69_c00344{bottom:503.974667pt;}
.y6a_c00344{bottom:504.670667pt;}
.y6b_c00344{bottom:504.776000pt;}
.y6c_c00344{bottom:504.936000pt;}
.y6d_c00344{bottom:505.212000pt;}
.y6e_c00344{bottom:505.482667pt;}
.y6f_c00344{bottom:505.633333pt;}
.y5e_c00344{bottom:523.438667pt;}
.y5f_c00344{bottom:523.956000pt;}
.y60_c00344{bottom:524.097333pt;}
.y61_c00344{bottom:524.538667pt;}
.y62_c00344{bottom:524.977333pt;}
.y63_c00344{bottom:525.494667pt;}
.y64_c00344{bottom:525.960000pt;}
.y65_c00344{bottom:526.133333pt;}
.y5d_c00344{bottom:544.877333pt;}
.y52_c00344{bottom:563.281333pt;}
.y53_c00344{bottom:563.485333pt;}
.y54_c00344{bottom:563.650667pt;}
.y55_c00344{bottom:563.794667pt;}
.y56_c00344{bottom:564.178667pt;}
.y57_c00344{bottom:564.420000pt;}
.y58_c00344{bottom:564.632000pt;}
.y59_c00344{bottom:564.978667pt;}
.y5a_c00344{bottom:565.156000pt;}
.y5b_c00344{bottom:565.538667pt;}
.y5c_c00344{bottom:565.652000pt;}
.y46_c00344{bottom:583.682667pt;}
.y47_c00344{bottom:583.930667pt;}
.y48_c00344{bottom:584.261333pt;}
.y49_c00344{bottom:584.525333pt;}
.y4a_c00344{bottom:584.762667pt;}
.y4b_c00344{bottom:584.997333pt;}
.y4c_c00344{bottom:585.186667pt;}
.y4d_c00344{bottom:585.553333pt;}
.y4e_c00344{bottom:585.708000pt;}
.y4f_c00344{bottom:585.838667pt;}
.y50_c00344{bottom:586.369333pt;}
.y51_c00344{bottom:586.633333pt;}
.y45_c00344{bottom:606.226667pt;}
.y38_c00344{bottom:624.001333pt;}
.y39_c00344{bottom:624.194667pt;}
.y3a_c00344{bottom:624.517333pt;}
.y3b_c00344{bottom:624.956000pt;}
.y3c_c00344{bottom:625.118667pt;}
.y3d_c00344{bottom:625.389333pt;}
.y3e_c00344{bottom:625.522667pt;}
.y3f_c00344{bottom:625.825333pt;}
.y40_c00344{bottom:626.098667pt;}
.y41_c00344{bottom:626.325333pt;}
.y42_c00344{bottom:626.554667pt;}
.y43_c00344{bottom:627.004000pt;}
.y44_c00344{bottom:627.145333pt;}
.y2b_c00344{bottom:644.880000pt;}
.y2c_c00344{bottom:645.100000pt;}
.y2d_c00344{bottom:645.280000pt;}
.y2e_c00344{bottom:645.525333pt;}
.y2f_c00344{bottom:645.730667pt;}
.y30_c00344{bottom:645.988000pt;}
.y31_c00344{bottom:646.494667pt;}
.y32_c00344{bottom:646.686667pt;}
.y33_c00344{bottom:646.933333pt;}
.y34_c00344{bottom:647.018667pt;}
.y35_c00344{bottom:647.165333pt;}
.y36_c00344{bottom:647.500000pt;}
.y37_c00344{bottom:647.648000pt;}
.y2a_c00344{bottom:666.322667pt;}
.y1f_c00344{bottom:685.440000pt;}
.y20_c00344{bottom:685.685333pt;}
.y21_c00344{bottom:686.172000pt;}
.y22_c00344{bottom:686.442667pt;}
.y23_c00344{bottom:686.553333pt;}
.y24_c00344{bottom:686.742667pt;}
.y25_c00344{bottom:687.174667pt;}
.y26_c00344{bottom:687.321333pt;}
.y27_c00344{bottom:687.425333pt;}
.y28_c00344{bottom:687.818667pt;}
.y29_c00344{bottom:688.065333pt;}
.y15_c00344{bottom:705.600000pt;}
.y16_c00344{bottom:706.090667pt;}
.y17_c00344{bottom:706.324000pt;}
.y18_c00344{bottom:706.612000pt;}
.y19_c00344{bottom:706.960000pt;}
.y1a_c00344{bottom:707.265333pt;}
.y1b_c00344{bottom:707.544000pt;}
.y1c_c00344{bottom:707.680000pt;}
.y1d_c00344{bottom:708.289333pt;}
.y1e_c00344{bottom:708.396000pt;}
.y14_c00344{bottom:727.268000pt;}
.y13_c00344{bottom:766.081333pt;}
.ya_c00344{bottom:800.872000pt;}
.yb_c00344{bottom:801.236307pt;}
.yc_c00344{bottom:801.817560pt;}
.yd_c00344{bottom:802.309533pt;}
.ye_c00344{bottom:802.854307pt;}
.yf_c00344{bottom:803.062467pt;}
.y10_c00344{bottom:803.302747pt;}
.y11_c00344{bottom:803.749747pt;}
.y12_c00344{bottom:805.007253pt;}
.y1_c00344{bottom:815.524000pt;}
.y2_c00344{bottom:816.378480pt;}
.y3_c00344{bottom:816.877867pt;}
.y4_c00344{bottom:817.475533pt;}
.y5_c00344{bottom:817.667493pt;}
.y7_c00344{bottom:818.409200pt;}
.y6_c00344{bottom:818.543307pt;}
.y8_c00344{bottom:818.991333pt;}
.y9_c00344{bottom:819.805707pt;}
.h17_c00344{height:14.000000pt;}
.h18_c00344{height:31.733333pt;}
.h1a_c00344{height:46.666667pt;}
.h13_c00344{height:58.802940pt;}
.hb_c00344{height:60.666667pt;}
.h12_c00344{height:60.669700pt;}
.h7_c00344{height:61.600000pt;}
.hf_c00344{height:61.602495pt;}
.h15_c00344{height:61.603080pt;}
.h16_c00344{height:61.604435pt;}
.ha_c00344{height:62.533333pt;}
.h14_c00344{height:62.535334pt;}
.he_c00344{height:62.535866pt;}
.h10_c00344{height:62.536460pt;}
.h6_c00344{height:63.466667pt;}
.hc_c00344{height:63.469237pt;}
.h11_c00344{height:63.469840pt;}
.h5_c00344{height:64.400000pt;}
.hd_c00344{height:64.402608pt;}
.h8_c00344{height:65.333333pt;}
.h2_c00344{height:65.336600pt;}
.h9_c00344{height:66.266667pt;}
.h3_c00344{height:68.136740pt;}
.h4_c00344{height:109.200000pt;}
.h19_c00344{height:124.142271pt;}
.h1_c00344{height:893.333333pt;}
.h0_c00344{height:893.466667pt;}
.w0_c00344{width:624.480000pt;}
.w1_c00344{width:624.666667pt;}
.x0_c00344{left:0.000000pt;}
.x56_c00344{left:35.041333pt;}
.x4c_c00344{left:39.724000pt;}
.x1_c00344{left:41.390667pt;}
.x5e_c00344{left:45.426667pt;}
.x65_c00344{left:46.622667pt;}
.xc8_c00344{left:48.070667pt;}
.xa_c00344{left:60.205720pt;}
.x4d_c00344{left:67.280000pt;}
.x2e_c00344{left:73.494667pt;}
.x25_c00344{left:76.188000pt;}
.x73_c00344{left:78.584000pt;}
.x19_c00344{left:80.640000pt;}
.x6c_c00344{left:81.602667pt;}
.x9b_c00344{left:82.668000pt;}
.xab_c00344{left:83.874667pt;}
.xb8_c00344{left:85.290493pt;}
.xb_c00344{left:96.636387pt;}
.x1a_c00344{left:99.840000pt;}
.x57_c00344{left:102.001333pt;}
.x8e_c00344{left:102.961333pt;}
.x39_c00344{left:104.881333pt;}
.x93_c00344{left:106.321333pt;}
.x2f_c00344{left:108.585333pt;}
.x41_c00344{left:112.161333pt;}
.x4e_c00344{left:113.366667pt;}
.xa6_c00344{left:115.560684pt;}
.x82_c00344{left:117.361333pt;}
.x78_c00344{left:120.808000pt;}
.x2_c00344{left:126.838667pt;}
.x5f_c00344{left:128.240000pt;}
.xac_c00344{left:131.400000pt;}
.x66_c00344{left:132.313333pt;}
.xb0_c00344{left:136.181853pt;}
.x42_c00344{left:137.840000pt;}
.xbd_c00344{left:140.481333pt;}
.x9c_c00344{left:141.478667pt;}
.x58_c00344{left:144.001333pt;}
.x26_c00344{left:146.244000pt;}
.xad_c00344{left:148.449333pt;}
.x7d_c00344{left:149.521333pt;}
.x74_c00344{left:152.488000pt;}
.xc_c00344{left:154.761720pt;}
.xc9_c00344{left:155.901333pt;}
.xa7_c00344{left:157.072948pt;}
.x6d_c00344{left:161.762667pt;}
.x8f_c00344{left:162.961333pt;}
.x88_c00344{left:164.881333pt;}
.x60_c00344{left:165.918667pt;}
.x1b_c00344{left:168.960000pt;}
.x3a_c00344{left:170.641333pt;}
.x43_c00344{left:172.860000pt;}
.xa0_c00344{left:174.332888pt;}
.x3_c00344{left:176.777333pt;}
.x30_c00344{left:178.165333pt;}
.x27_c00344{left:179.580000pt;}
.x13_c00344{left:180.720000pt;}
.x83_c00344{left:183.841333pt;}
.x6e_c00344{left:187.682667pt;}
.x7e_c00344{left:189.361333pt;}
.xa1_c00344{left:190.889188pt;}
.x3b_c00344{left:192.001333pt;}
.x59_c00344{left:192.961333pt;}
.xbe_c00344{left:194.037333pt;}
.x67_c00344{left:196.393333pt;}
.x4f_c00344{left:199.264000pt;}
.xa5_c00344{left:200.748467pt;}
.x44_c00344{left:202.134667pt;}
.xd_c00344{left:203.959053pt;}
.x90_c00344{left:208.561333pt;}
.xbf_c00344{left:210.841333pt;}
.x79_c00344{left:215.848000pt;}
.x31_c00344{left:216.774667pt;}
.x9d_c00344{left:219.710667pt;}
.x28_c00344{left:220.648000pt;}
.xc7_c00344{left:221.760000pt;}
.xae_c00344{left:225.010667pt;}
.x1c_c00344{left:227.520000pt;}
.x32_c00344{left:232.625333pt;}
.x6f_c00344{left:234.242667pt;}
.x4_c00344{left:236.544000pt;}
.x50_c00344{left:237.924000pt;}
.x45_c00344{left:238.892000pt;}
.x84_c00344{left:241.441333pt;}
.x7f_c00344{left:243.361333pt;}
.xb6_c00344{left:244.430440pt;}
.xaf_c00344{left:250.689333pt;}
.x70_c00344{left:254.162667pt;}
.x5_c00344{left:255.740000pt;}
.x3c_c00344{left:256.801333pt;}
.xe_c00344{left:258.436387pt;}
.x33_c00344{left:259.765333pt;}
.x91_c00344{left:264.001333pt;}
.x1d_c00344{left:265.680000pt;}
.x14_c00344{left:266.640000pt;}
.x89_c00344{left:268.321333pt;}
.x29_c00344{left:270.297333pt;}
.x68_c00344{left:271.996000pt;}
.xa8_c00344{left:274.911337pt;}
.xf_c00344{left:279.252387pt;}
.xc6_c00344{left:280.560000pt;}
.x80_c00344{left:282.721333pt;}
.xbb_c00344{left:284.022667pt;}
.xb1_c00344{left:284.988827pt;}
.xb9_c00344{left:288.603827pt;}
.x94_c00344{left:292.081333pt;}
.x5a_c00344{left:293.041333pt;}
.x9e_c00344{left:295.794667pt;}
.x75_c00344{left:298.408000pt;}
.x51_c00344{left:300.089333pt;}
.x98_c00344{left:301.522667pt;}
.x10_c00344{left:303.280387pt;}
.x8a_c00344{left:306.481333pt;}
.x1e_c00344{left:307.680000pt;}
.x46_c00344{left:311.333333pt;}
.x61_c00344{left:312.802667pt;}
.x2a_c00344{left:314.005333pt;}
.x7a_c00344{left:315.222667pt;}
.xa9_c00344{left:316.439709pt;}
.xc0_c00344{left:318.356000pt;}
.x34_c00344{left:321.444000pt;}
.x3d_c00344{left:325.201333pt;}
.x8b_c00344{left:326.881333pt;}
.x15_c00344{left:328.320000pt;}
.x7_c00344{left:329.910667pt;}
.x71_c00344{left:333.122667pt;}
.x62_c00344{left:334.880000pt;}
.xb2_c00344{left:336.324520pt;}
.x85_c00344{left:337.681333pt;}
.x47_c00344{left:338.744000pt;}
.x5b_c00344{left:340.321333pt;}
.x1f_c00344{left:341.280000pt;}
.x35_c00344{left:342.326667pt;}
.x6_c00344{left:343.321333pt;}
.xca_c00344{left:345.830667pt;}
.x11_c00344{left:347.980387pt;}
.xa2_c00344{left:349.754711pt;}
.x2b_c00344{left:353.844000pt;}
.x36_c00344{left:357.202667pt;}
.x69_c00344{left:359.354667pt;}
.x5c_c00344{left:362.881333pt;}
.xc1_c00344{left:364.394667pt;}
.xb3_c00344{left:365.625107pt;}
.x95_c00344{left:368.881333pt;}
.x52_c00344{left:371.576000pt;}
.x2c_c00344{left:373.289333pt;}
.x20_c00344{left:376.560000pt;}
.xbc_c00344{left:378.340000pt;}
.x9f_c00344{left:379.341333pt;}
.xc4_c00344{left:380.314667pt;}
.x8c_c00344{left:382.321333pt;}
.x48_c00344{left:386.242667pt;}
.x8_c00344{left:388.124000pt;}
.xc2_c00344{left:391.278667pt;}
.x7b_c00344{left:392.462667pt;}
.x99_c00344{left:394.186667pt;}
.x3e_c00344{left:396.001333pt;}
.xb4_c00344{left:398.036427pt;}
.xa3_c00344{left:400.907635pt;}
.x86_c00344{left:402.241333pt;}
.x53_c00344{left:404.253333pt;}
.x49_c00344{left:407.125333pt;}
.xb7_c00344{left:409.076080pt;}
.x21_c00344{left:410.880000pt;}
.x37_c00344{left:413.334667pt;}
.xaa_c00344{left:415.551264pt;}
.x6a_c00344{left:423.170667pt;}
.x3f_c00344{left:426.961333pt;}
.x63_c00344{left:429.445333pt;}
.x7c_c00344{left:431.130667pt;}
.x5d_c00344{left:432.481333pt;}
.x22_c00344{left:433.680000pt;}
.x96_c00344{left:435.601333pt;}
.x16_c00344{left:436.800000pt;}
.x76_c00344{left:438.834667pt;}
.x6b_c00344{left:442.157333pt;}
.x92_c00344{left:443.521333pt;}
.x8d_c00344{left:444.721333pt;}
.xa4_c00344{left:446.232451pt;}
.x38_c00344{left:448.645333pt;}
.x17_c00344{left:452.640000pt;}
.x4a_c00344{left:454.881333pt;}
.x2d_c00344{left:460.340000pt;}
.x97_c00344{left:461.281333pt;}
.x77_c00344{left:463.521333pt;}
.x64_c00344{left:467.124000pt;}
.x54_c00344{left:468.534667pt;}
.x9_c00344{left:469.561333pt;}
.x23_c00344{left:471.120000pt;}
.xba_c00344{left:472.415827pt;}
.x12_c00344{left:473.731053pt;}
.x18_c00344{left:474.960000pt;}
.x4b_c00344{left:476.004000pt;}
.x72_c00344{left:478.562667pt;}
.x81_c00344{left:479.521333pt;}
.x87_c00344{left:482.161333pt;}
.xc3_c00344{left:483.493333pt;}
.x55_c00344{left:488.726667pt;}
.x24_c00344{left:490.560000pt;}
.x9a_c00344{left:492.770667pt;}
.xc5_c00344{left:496.900000pt;}
.xb5_c00344{left:499.551253pt;}
.x40_c00344{left:501.601333pt;}
.xcb_c00344{left:532.700000pt;}
.xcc_c00344{left:541.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_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;}
.m179_c00345{transform:matrix(0.007574,0.000098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.007574,0.000098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.007574,0.000098,-0.003250,0.249979,0,0);}
.m17c_c00345{transform:matrix(0.011364,0.000148,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011364,0.000148,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011364,0.000148,-0.003250,0.249979,0,0);}
.m56_c00345{transform:matrix(0.036473,-0.000365,0.002500,0.249988,0,0);-ms-transform:matrix(0.036473,-0.000365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.036473,-0.000365,0.002500,0.249988,0,0);}
.m17_c00345{transform:matrix(0.040160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040160,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.062085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062085,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.067840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067840,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.085788,-0.001458,0.004249,0.249964,0,0);-ms-transform:matrix(0.085788,-0.001458,0.004249,0.249964,0,0);-webkit-transform:matrix(0.085788,-0.001458,0.004249,0.249964,0,0);}
.m60_c00345{transform:matrix(0.088896,-0.000889,0.002500,0.249988,0,0);-ms-transform:matrix(0.088896,-0.000889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.088896,-0.000889,0.002500,0.249988,0,0);}
.m63_c00345{transform:matrix(0.130098,-0.001301,0.002500,0.249988,0,0);-ms-transform:matrix(0.130098,-0.001301,0.002500,0.249988,0,0);-webkit-transform:matrix(0.130098,-0.001301,0.002500,0.249988,0,0);}
.m54_c00345{transform:matrix(0.141923,-0.001419,0.002500,0.249988,0,0);-ms-transform:matrix(0.141923,-0.001419,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141923,-0.001419,0.002500,0.249988,0,0);}
.mec_c00345{transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);-ms-transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);}
.mee_c00345{transform:matrix(0.145643,-0.001456,0.002500,0.249988,0,0);-ms-transform:matrix(0.145643,-0.001456,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145643,-0.001456,0.002500,0.249988,0,0);}
.mf8_c00345{transform:matrix(0.147188,-0.001472,0.002500,0.249988,0,0);-ms-transform:matrix(0.147188,-0.001472,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147188,-0.001472,0.002500,0.249988,0,0);}
.m171_c00345{transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);}
.mb0_c00345{transform:matrix(0.148348,-0.001483,0.002500,0.249988,0,0);-ms-transform:matrix(0.148348,-0.001483,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148348,-0.001483,0.002500,0.249988,0,0);}
.m124_c00345{transform:matrix(0.150457,-0.001505,0.002500,0.249988,0,0);-ms-transform:matrix(0.150457,-0.001505,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150457,-0.001505,0.002500,0.249988,0,0);}
.m10f_c00345{transform:matrix(0.150692,-0.001507,0.002500,0.249988,0,0);-ms-transform:matrix(0.150692,-0.001507,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150692,-0.001507,0.002500,0.249988,0,0);}
.mc0_c00345{transform:matrix(0.150792,-0.001508,0.002500,0.249988,0,0);-ms-transform:matrix(0.150792,-0.001508,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150792,-0.001508,0.002500,0.249988,0,0);}
.md1_c00345{transform:matrix(0.151022,-0.001510,0.002500,0.249988,0,0);-ms-transform:matrix(0.151022,-0.001510,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151022,-0.001510,0.002500,0.249988,0,0);}
.m91_c00345{transform:matrix(0.151152,-0.001512,0.002500,0.249988,0,0);-ms-transform:matrix(0.151152,-0.001512,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151152,-0.001512,0.002500,0.249988,0,0);}
.md9_c00345{transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-ms-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.151977,-0.001520,0.002500,0.249988,0,0);}
.m51_c00345{transform:matrix(0.152352,-0.001524,0.002500,0.249988,0,0);-ms-transform:matrix(0.152352,-0.001524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152352,-0.001524,0.002500,0.249988,0,0);}
.mc1_c00345{transform:matrix(0.152392,-0.001524,0.002500,0.249988,0,0);-ms-transform:matrix(0.152392,-0.001524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152392,-0.001524,0.002500,0.249988,0,0);}
.m82_c00345{transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);-ms-transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153462,-0.001535,0.002500,0.249988,0,0);}
.m86_c00345{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);}
.md0_c00345{transform:matrix(0.153827,-0.001538,0.002500,0.249988,0,0);-ms-transform:matrix(0.153827,-0.001538,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153827,-0.001538,0.002500,0.249988,0,0);}
.m10b_c00345{transform:matrix(0.154612,-0.001546,0.002500,0.249988,0,0);-ms-transform:matrix(0.154612,-0.001546,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154612,-0.001546,0.002500,0.249988,0,0);}
.meb_c00345{transform:matrix(0.154702,-0.001547,0.002500,0.249988,0,0);-ms-transform:matrix(0.154702,-0.001547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154702,-0.001547,0.002500,0.249988,0,0);}
.m88_c00345{transform:matrix(0.155172,-0.001552,0.002500,0.249988,0,0);-ms-transform:matrix(0.155172,-0.001552,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155172,-0.001552,0.002500,0.249988,0,0);}
.me7_c00345{transform:matrix(0.155217,-0.001552,0.002500,0.249988,0,0);-ms-transform:matrix(0.155217,-0.001552,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155217,-0.001552,0.002500,0.249988,0,0);}
.m2d_c00345{transform:matrix(0.155830,-0.001247,0.002000,0.249992,0,0);-ms-transform:matrix(0.155830,-0.001247,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155830,-0.001247,0.002000,0.249992,0,0);}
.m126_c00345{transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);-ms-transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156257,-0.001563,0.002500,0.249988,0,0);}
.ma6_c00345{transform:matrix(0.156287,-0.001563,0.002500,0.249988,0,0);-ms-transform:matrix(0.156287,-0.001563,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156287,-0.001563,0.002500,0.249988,0,0);}
.m3d_c00345{transform:matrix(0.156436,-0.001721,0.002750,0.249985,0,0);-ms-transform:matrix(0.156436,-0.001721,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156436,-0.001721,0.002750,0.249985,0,0);}
.m27_c00345{transform:matrix(0.156550,-0.001252,0.002000,0.249992,0,0);-ms-transform:matrix(0.156550,-0.001252,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156550,-0.001252,0.002000,0.249992,0,0);}
.m12b_c00345{transform:matrix(0.156597,-0.001566,0.002500,0.249988,0,0);-ms-transform:matrix(0.156597,-0.001566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156597,-0.001566,0.002500,0.249988,0,0);}
.mcd_c00345{transform:matrix(0.156707,-0.001567,0.002500,0.249988,0,0);-ms-transform:matrix(0.156707,-0.001567,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156707,-0.001567,0.002500,0.249988,0,0);}
.mf5_c00345{transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-ms-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);}
.m8e_c00345{transform:matrix(0.157027,-0.001570,0.002500,0.249988,0,0);-ms-transform:matrix(0.157027,-0.001570,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157027,-0.001570,0.002500,0.249988,0,0);}
.m118_c00345{transform:matrix(0.157042,-0.001570,0.002500,0.249988,0,0);-ms-transform:matrix(0.157042,-0.001570,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157042,-0.001570,0.002500,0.249988,0,0);}
.m15_c00345{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);}
.mcc_c00345{transform:matrix(0.157562,-0.001576,0.002500,0.249988,0,0);-ms-transform:matrix(0.157562,-0.001576,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157562,-0.001576,0.002500,0.249988,0,0);}
.m4b_c00345{transform:matrix(0.157902,-0.001579,0.002500,0.249988,0,0);-ms-transform:matrix(0.157902,-0.001579,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157902,-0.001579,0.002500,0.249988,0,0);}
.m5b_c00345{transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158127,-0.001581,0.002500,0.249988,0,0);}
.mb5_c00345{transform:matrix(0.158287,-0.001583,0.002500,0.249988,0,0);-ms-transform:matrix(0.158287,-0.001583,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158287,-0.001583,0.002500,0.249988,0,0);}
.mcf_c00345{transform:matrix(0.158592,-0.001586,0.002500,0.249988,0,0);-ms-transform:matrix(0.158592,-0.001586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158592,-0.001586,0.002500,0.249988,0,0);}
.m12f_c00345{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);}
.mf7_c00345{transform:matrix(0.159317,-0.001593,0.002500,0.249988,0,0);-ms-transform:matrix(0.159317,-0.001593,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159317,-0.001593,0.002500,0.249988,0,0);}
.mad_c00345{transform:matrix(0.159962,-0.001600,0.002500,0.249988,0,0);-ms-transform:matrix(0.159962,-0.001600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159962,-0.001600,0.002500,0.249988,0,0);}
.ma5_c00345{transform:matrix(0.161627,-0.001616,0.002500,0.249988,0,0);-ms-transform:matrix(0.161627,-0.001616,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161627,-0.001616,0.002500,0.249988,0,0);}
.m94_c00345{transform:matrix(0.162797,-0.001628,0.002500,0.249988,0,0);-ms-transform:matrix(0.162797,-0.001628,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162797,-0.001628,0.002500,0.249988,0,0);}
.m2a_c00345{transform:matrix(0.162910,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162910,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162910,-0.001303,0.002000,0.249992,0,0);}
.m122_c00345{transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);-ms-transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163107,-0.001631,0.002500,0.249988,0,0);}
.m11e_c00345{transform:matrix(0.163452,-0.001635,0.002500,0.249988,0,0);-ms-transform:matrix(0.163452,-0.001635,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163452,-0.001635,0.002500,0.249988,0,0);}
.maa_c00345{transform:matrix(0.163567,-0.001636,0.002500,0.249988,0,0);-ms-transform:matrix(0.163567,-0.001636,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163567,-0.001636,0.002500,0.249988,0,0);}
.m46_c00345{transform:matrix(0.163645,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163645,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163645,-0.001800,0.002750,0.249985,0,0);}
.m42_c00345{transform:matrix(0.163970,-0.001804,0.002750,0.249985,0,0);-ms-transform:matrix(0.163970,-0.001804,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163970,-0.001804,0.002750,0.249985,0,0);}
.m30_c00345{transform:matrix(0.164790,-0.001318,0.002000,0.249992,0,0);-ms-transform:matrix(0.164790,-0.001318,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164790,-0.001318,0.002000,0.249992,0,0);}
.me5_c00345{transform:matrix(0.165072,-0.001651,0.002500,0.249988,0,0);-ms-transform:matrix(0.165072,-0.001651,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165072,-0.001651,0.002500,0.249988,0,0);}
.m136_c00345{transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);-ms-transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165307,-0.001653,0.002500,0.249988,0,0);}
.m13f_c00345{transform:matrix(0.165577,-0.001656,0.002500,0.249988,0,0);-ms-transform:matrix(0.165577,-0.001656,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165577,-0.001656,0.002500,0.249988,0,0);}
.m11d_c00345{transform:matrix(0.165747,-0.001657,0.002500,0.249988,0,0);-ms-transform:matrix(0.165747,-0.001657,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165747,-0.001657,0.002500,0.249988,0,0);}
.m114_c00345{transform:matrix(0.166047,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166047,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166047,-0.001660,0.002500,0.249988,0,0);}
.m168_c00345{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);}
.md7_c00345{transform:matrix(0.167652,-0.001677,0.002500,0.249988,0,0);-ms-transform:matrix(0.167652,-0.001677,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167652,-0.001677,0.002500,0.249988,0,0);}
.m9c_c00345{transform:matrix(0.167927,-0.001679,0.002500,0.249988,0,0);-ms-transform:matrix(0.167927,-0.001679,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167927,-0.001679,0.002500,0.249988,0,0);}
.m43_c00345{transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);-ms-transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);}
.m71_c00345{transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);-ms-transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167997,-0.001680,0.002500,0.249988,0,0);}
.mb4_c00345{transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-ms-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168262,-0.001683,0.002500,0.249988,0,0);}
.m35_c00345{transform:matrix(0.168745,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168745,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168745,-0.001856,0.002750,0.249985,0,0);}
.m64_c00345{transform:matrix(0.169122,-0.001691,0.002500,0.249988,0,0);-ms-transform:matrix(0.169122,-0.001691,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169122,-0.001691,0.002500,0.249988,0,0);}
.m135_c00345{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);}
.m147_c00345{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);}
.mab_c00345{transform:matrix(0.169577,-0.001696,0.002500,0.249988,0,0);-ms-transform:matrix(0.169577,-0.001696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169577,-0.001696,0.002500,0.249988,0,0);}
.m36_c00345{transform:matrix(0.170020,-0.001870,0.002750,0.249985,0,0);-ms-transform:matrix(0.170020,-0.001870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170020,-0.001870,0.002750,0.249985,0,0);}
.mbf_c00345{transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);-ms-transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170061,-0.001701,0.002500,0.249988,0,0);}
.mf9_c00345{transform:matrix(0.170176,-0.001702,0.002500,0.249988,0,0);-ms-transform:matrix(0.170176,-0.001702,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170176,-0.001702,0.002500,0.249988,0,0);}
.mfb_c00345{transform:matrix(0.170221,-0.001702,0.002500,0.249988,0,0);-ms-transform:matrix(0.170221,-0.001702,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170221,-0.001702,0.002500,0.249988,0,0);}
.mdb_c00345{transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);-ms-transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170306,-0.001703,0.002500,0.249988,0,0);}
.m7a_c00345{transform:matrix(0.170421,-0.001704,0.002500,0.249988,0,0);-ms-transform:matrix(0.170421,-0.001704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170421,-0.001704,0.002500,0.249988,0,0);}
.mc5_c00345{transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-ms-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170806,-0.001708,0.002500,0.249988,0,0);}
.m9a_c00345{transform:matrix(0.171156,-0.001712,0.002500,0.249988,0,0);-ms-transform:matrix(0.171156,-0.001712,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171156,-0.001712,0.002500,0.249988,0,0);}
.m164_c00345{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);}
.m131_c00345{transform:matrix(0.171401,-0.001714,0.002500,0.249988,0,0);-ms-transform:matrix(0.171401,-0.001714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171401,-0.001714,0.002500,0.249988,0,0);}
.m3f_c00345{transform:matrix(0.171820,-0.001890,0.002750,0.249985,0,0);-ms-transform:matrix(0.171820,-0.001890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171820,-0.001890,0.002750,0.249985,0,0);}
.mf0_c00345{transform:matrix(0.171951,-0.001720,0.002500,0.249988,0,0);-ms-transform:matrix(0.171951,-0.001720,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171951,-0.001720,0.002500,0.249988,0,0);}
.mbc_c00345{transform:matrix(0.172256,-0.001723,0.002500,0.249988,0,0);-ms-transform:matrix(0.172256,-0.001723,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172256,-0.001723,0.002500,0.249988,0,0);}
.m90_c00345{transform:matrix(0.172906,-0.001729,0.002500,0.249988,0,0);-ms-transform:matrix(0.172906,-0.001729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172906,-0.001729,0.002500,0.249988,0,0);}
.m59_c00345{transform:matrix(0.173676,-0.001737,0.002500,0.249988,0,0);-ms-transform:matrix(0.173676,-0.001737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173676,-0.001737,0.002500,0.249988,0,0);}
.me4_c00345{transform:matrix(0.173721,-0.001737,0.002500,0.249988,0,0);-ms-transform:matrix(0.173721,-0.001737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173721,-0.001737,0.002500,0.249988,0,0);}
.mc4_c00345{transform:matrix(0.173796,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173796,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173796,-0.001738,0.002500,0.249988,0,0);}
.m45_c00345{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);}
.mef_c00345{transform:matrix(0.174251,-0.001743,0.002500,0.249988,0,0);-ms-transform:matrix(0.174251,-0.001743,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174251,-0.001743,0.002500,0.249988,0,0);}
.mf2_c00345{transform:matrix(0.174386,-0.001744,0.002500,0.249988,0,0);-ms-transform:matrix(0.174386,-0.001744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174386,-0.001744,0.002500,0.249988,0,0);}
.mb6_c00345{transform:matrix(0.174461,-0.001745,0.002500,0.249988,0,0);-ms-transform:matrix(0.174461,-0.001745,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174461,-0.001745,0.002500,0.249988,0,0);}
.m170_c00345{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);}
.mb8_c00345{transform:matrix(0.174761,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174761,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174761,-0.001748,0.002500,0.249988,0,0);}
.m12c_c00345{transform:matrix(0.174781,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174781,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174781,-0.001748,0.002500,0.249988,0,0);}
.me1_c00345{transform:matrix(0.175306,-0.001753,0.002500,0.249988,0,0);-ms-transform:matrix(0.175306,-0.001753,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175306,-0.001753,0.002500,0.249988,0,0);}
.m16e_c00345{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);}
.m8a_c00345{transform:matrix(0.176001,-0.001760,0.002500,0.249988,0,0);-ms-transform:matrix(0.176001,-0.001760,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176001,-0.001760,0.002500,0.249988,0,0);}
.mcb_c00345{transform:matrix(0.176241,-0.001762,0.002500,0.249988,0,0);-ms-transform:matrix(0.176241,-0.001762,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176241,-0.001762,0.002500,0.249988,0,0);}
.m2e_c00345{transform:matrix(0.176394,-0.001411,0.002000,0.249992,0,0);-ms-transform:matrix(0.176394,-0.001411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176394,-0.001411,0.002000,0.249992,0,0);}
.m74_c00345{transform:matrix(0.176661,-0.001767,0.002500,0.249988,0,0);-ms-transform:matrix(0.176661,-0.001767,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176661,-0.001767,0.002500,0.249988,0,0);}
.m141_c00345{transform:matrix(0.176671,-0.001767,0.002500,0.249988,0,0);-ms-transform:matrix(0.176671,-0.001767,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176671,-0.001767,0.002500,0.249988,0,0);}
.m159_c00345{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_c00345{transform:matrix(0.176746,-0.001767,0.002500,0.249988,0,0);-ms-transform:matrix(0.176746,-0.001767,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176746,-0.001767,0.002500,0.249988,0,0);}
.m9e_c00345{transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-ms-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177051,-0.001771,0.002500,0.249988,0,0);}
.mc3_c00345{transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);}
.m9b_c00345{transform:matrix(0.177471,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177471,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177471,-0.001775,0.002500,0.249988,0,0);}
.m165_c00345{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);}
.m6d_c00345{transform:matrix(0.177531,-0.001775,0.002500,0.249988,0,0);-ms-transform:matrix(0.177531,-0.001775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177531,-0.001775,0.002500,0.249988,0,0);}
.m52_c00345{transform:matrix(0.178161,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178161,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178161,-0.001782,0.002500,0.249988,0,0);}
.m81_c00345{transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);}
.m32_c00345{transform:matrix(0.178294,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178294,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178294,-0.001426,0.002000,0.249992,0,0);}
.m40_c00345{transform:matrix(0.178544,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178544,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178544,-0.001964,0.002750,0.249985,0,0);}
.m163_c00345{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);}
.m23_c00345{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);}
.m16c_c00345{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);}
.me2_c00345{transform:matrix(0.179711,-0.001797,0.002500,0.249988,0,0);-ms-transform:matrix(0.179711,-0.001797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179711,-0.001797,0.002500,0.249988,0,0);}
.m7d_c00345{transform:matrix(0.179971,-0.001800,0.002500,0.249988,0,0);-ms-transform:matrix(0.179971,-0.001800,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179971,-0.001800,0.002500,0.249988,0,0);}
.ma7_c00345{transform:matrix(0.180046,-0.001800,0.002500,0.249988,0,0);-ms-transform:matrix(0.180046,-0.001800,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180046,-0.001800,0.002500,0.249988,0,0);}
.m103_c00345{transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180326,-0.001803,0.002500,0.249988,0,0);}
.m137_c00345{transform:matrix(0.180466,-0.001805,0.002500,0.249988,0,0);-ms-transform:matrix(0.180466,-0.001805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180466,-0.001805,0.002500,0.249988,0,0);}
.m4d_c00345{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);}
.m5e_c00345{transform:matrix(0.181646,-0.001816,0.002500,0.249988,0,0);-ms-transform:matrix(0.181646,-0.001816,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181646,-0.001816,0.002500,0.249988,0,0);}
.m166_c00345{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.maf_c00345{transform:matrix(0.182131,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182131,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182131,-0.001821,0.002500,0.249988,0,0);}
.mbd_c00345{transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,-0.001824,0.002500,0.249988,0,0);}
.m67_c00345{transform:matrix(0.182566,-0.001826,0.002500,0.249988,0,0);-ms-transform:matrix(0.182566,-0.001826,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182566,-0.001826,0.002500,0.249988,0,0);}
.m49_c00345{transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);-ms-transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182946,-0.001829,0.002500,0.249988,0,0);}
.m96_c00345{transform:matrix(0.182996,-0.001830,0.002500,0.249988,0,0);-ms-transform:matrix(0.182996,-0.001830,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182996,-0.001830,0.002500,0.249988,0,0);}
.mfc_c00345{transform:matrix(0.183161,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183161,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183161,-0.001832,0.002500,0.249988,0,0);}
.mdc_c00345{transform:matrix(0.183631,-0.001836,0.002500,0.249988,0,0);-ms-transform:matrix(0.183631,-0.001836,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183631,-0.001836,0.002500,0.249988,0,0);}
.m48_c00345{transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);-ms-transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);}
.mba_c00345{transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);-ms-transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184291,-0.001843,0.002500,0.249988,0,0);}
.m98_c00345{transform:matrix(0.184756,-0.001848,0.002500,0.249988,0,0);-ms-transform:matrix(0.184756,-0.001848,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184756,-0.001848,0.002500,0.249988,0,0);}
.mdf_c00345{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);}
.mb3_c00345{transform:matrix(0.184856,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184856,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184856,-0.001849,0.002500,0.249988,0,0);}
.m8f_c00345{transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184921,-0.001849,0.002500,0.249988,0,0);}
.m4e_c00345{transform:matrix(0.185136,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185136,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185136,-0.001851,0.002500,0.249988,0,0);}
.m83_c00345{transform:matrix(0.185246,-0.001852,0.002500,0.249988,0,0);-ms-transform:matrix(0.185246,-0.001852,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185246,-0.001852,0.002500,0.249988,0,0);}
.m119_c00345{transform:matrix(0.185261,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185261,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185261,-0.001853,0.002500,0.249988,0,0);}
.m138_c00345{transform:matrix(0.185271,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185271,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185271,-0.001853,0.002500,0.249988,0,0);}
.mfa_c00345{transform:matrix(0.185346,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185346,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185346,-0.001853,0.002500,0.249988,0,0);}
.med_c00345{transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185456,-0.001855,0.002500,0.249988,0,0);}
.m26_c00345{transform:matrix(0.185524,-0.001484,0.002000,0.249992,0,0);-ms-transform:matrix(0.185524,-0.001484,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185524,-0.001484,0.002000,0.249992,0,0);}
.mc6_c00345{transform:matrix(0.186126,-0.001861,0.002500,0.249988,0,0);-ms-transform:matrix(0.186126,-0.001861,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186126,-0.001861,0.002500,0.249988,0,0);}
.m8c_c00345{transform:matrix(0.186171,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186171,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186171,-0.001862,0.002500,0.249988,0,0);}
.mea_c00345{transform:matrix(0.186251,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186251,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186251,-0.001863,0.002500,0.249988,0,0);}
.md6_c00345{transform:matrix(0.186441,-0.001864,0.002500,0.249988,0,0);-ms-transform:matrix(0.186441,-0.001864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186441,-0.001864,0.002500,0.249988,0,0);}
.m169_c00345{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);}
.m127_c00345{transform:matrix(0.186896,-0.001869,0.002500,0.249988,0,0);-ms-transform:matrix(0.186896,-0.001869,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186896,-0.001869,0.002500,0.249988,0,0);}
.mf3_c00345{transform:matrix(0.186966,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.186966,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186966,-0.001870,0.002500,0.249988,0,0);}
.ma8_c00345{transform:matrix(0.187341,-0.001873,0.002500,0.249988,0,0);-ms-transform:matrix(0.187341,-0.001873,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187341,-0.001873,0.002500,0.249988,0,0);}
.mfe_c00345{transform:matrix(0.187486,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187486,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187486,-0.001875,0.002500,0.249988,0,0);}
.mde_c00345{transform:matrix(0.187686,-0.001877,0.002500,0.249988,0,0);-ms-transform:matrix(0.187686,-0.001877,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187686,-0.001877,0.002500,0.249988,0,0);}
.m84_c00345{transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);-ms-transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187736,-0.001877,0.002500,0.249988,0,0);}
.m38_c00345{transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);}
.m16a_c00345{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);}
.m89_c00345{transform:matrix(0.188146,-0.001881,0.002500,0.249988,0,0);-ms-transform:matrix(0.188146,-0.001881,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188146,-0.001881,0.002500,0.249988,0,0);}
.m3a_c00345{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);}
.m7b_c00345{transform:matrix(0.188576,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188576,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188576,-0.001886,0.002500,0.249988,0,0);}
.m7e_c00345{transform:matrix(0.188866,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188866,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188866,-0.001889,0.002500,0.249988,0,0);}
.m120_c00345{transform:matrix(0.188986,-0.001890,0.002500,0.249988,0,0);-ms-transform:matrix(0.188986,-0.001890,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188986,-0.001890,0.002500,0.249988,0,0);}
.m6f_c00345{transform:matrix(0.189366,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189366,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189366,-0.001894,0.002500,0.249988,0,0);}
.m39_c00345{transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189384,-0.002083,0.002750,0.249985,0,0);}
.m176_c00345{transform:matrix(0.189634,0.002465,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189634,0.002465,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189634,0.002465,-0.003250,0.249979,0,0);}
.mc7_c00345{transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);}
.mf1_c00345{transform:matrix(0.189881,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189881,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189881,-0.001899,0.002500,0.249988,0,0);}
.mb9_c00345{transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);-ms-transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);}
.m2f_c00345{transform:matrix(0.190219,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190219,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190219,-0.001522,0.002000,0.249992,0,0);}
.m115_c00345{transform:matrix(0.190300,-0.001903,0.002500,0.249988,0,0);-ms-transform:matrix(0.190300,-0.001903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190300,-0.001903,0.002500,0.249988,0,0);}
.m1d_c00345{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);}
.m4f_c00345{transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190540,-0.001905,0.002500,0.249988,0,0);}
.m1c_c00345{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);}
.m8b_c00345{transform:matrix(0.191015,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.191015,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191015,-0.001910,0.002500,0.249988,0,0);}
.m14a_c00345{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);}
.m116_c00345{transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);}
.m161_c00345{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);}
.mbe_c00345{transform:matrix(0.191620,-0.001916,0.002500,0.249988,0,0);-ms-transform:matrix(0.191620,-0.001916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191620,-0.001916,0.002500,0.249988,0,0);}
.m13c_c00345{transform:matrix(0.192225,-0.001922,0.002500,0.249988,0,0);-ms-transform:matrix(0.192225,-0.001922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192225,-0.001922,0.002500,0.249988,0,0);}
.m11f_c00345{transform:matrix(0.192240,-0.001922,0.002500,0.249988,0,0);-ms-transform:matrix(0.192240,-0.001922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192240,-0.001922,0.002500,0.249988,0,0);}
.m65_c00345{transform:matrix(0.192420,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192420,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192420,-0.001924,0.002500,0.249988,0,0);}
.me0_c00345{transform:matrix(0.192455,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192455,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192455,-0.001925,0.002500,0.249988,0,0);}
.m107_c00345{transform:matrix(0.192590,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192590,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192590,-0.001926,0.002500,0.249988,0,0);}
.m11a_c00345{transform:matrix(0.192620,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192620,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192620,-0.001926,0.002500,0.249988,0,0);}
.m100_c00345{transform:matrix(0.192665,-0.001927,0.002500,0.249988,0,0);-ms-transform:matrix(0.192665,-0.001927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192665,-0.001927,0.002500,0.249988,0,0);}
.m53_c00345{transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);-ms-transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192715,-0.001927,0.002500,0.249988,0,0);}
.mb2_c00345{transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193275,-0.001933,0.002500,0.249988,0,0);}
.md5_c00345{transform:matrix(0.193290,-0.001933,0.002500,0.249988,0,0);-ms-transform:matrix(0.193290,-0.001933,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193290,-0.001933,0.002500,0.249988,0,0);}
.ma9_c00345{transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193700,-0.001937,0.002500,0.249988,0,0);}
.m108_c00345{transform:matrix(0.194055,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194055,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194055,-0.001941,0.002500,0.249988,0,0);}
.m58_c00345{transform:matrix(0.194210,-0.001942,0.002500,0.249988,0,0);-ms-transform:matrix(0.194210,-0.001942,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194210,-0.001942,0.002500,0.249988,0,0);}
.me3_c00345{transform:matrix(0.194215,-0.001942,0.002500,0.249988,0,0);-ms-transform:matrix(0.194215,-0.001942,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194215,-0.001942,0.002500,0.249988,0,0);}
.mce_c00345{transform:matrix(0.194420,-0.001944,0.002500,0.249988,0,0);-ms-transform:matrix(0.194420,-0.001944,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194420,-0.001944,0.002500,0.249988,0,0);}
.m34_c00345{transform:matrix(0.194818,-0.002143,0.002750,0.249985,0,0);-ms-transform:matrix(0.194818,-0.002143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194818,-0.002143,0.002750,0.249985,0,0);}
.mac_c00345{transform:matrix(0.194925,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194925,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194925,-0.001949,0.002500,0.249988,0,0);}
.m101_c00345{transform:matrix(0.195560,-0.001956,0.002500,0.249988,0,0);-ms-transform:matrix(0.195560,-0.001956,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195560,-0.001956,0.002500,0.249988,0,0);}
.m113_c00345{transform:matrix(0.195750,-0.001958,0.002500,0.249988,0,0);-ms-transform:matrix(0.195750,-0.001958,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195750,-0.001958,0.002500,0.249988,0,0);}
.m8d_c00345{transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);-ms-transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196110,-0.001961,0.002500,0.249988,0,0);}
.m50_c00345{transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);-ms-transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196220,-0.001962,0.002500,0.249988,0,0);}
.m87_c00345{transform:matrix(0.196420,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196420,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196420,-0.001964,0.002500,0.249988,0,0);}
.m5a_c00345{transform:matrix(0.196705,-0.001967,0.002500,0.249988,0,0);-ms-transform:matrix(0.196705,-0.001967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196705,-0.001967,0.002500,0.249988,0,0);}
.m151_c00345{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);}
.m16d_c00345{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);}
.m4c_c00345{transform:matrix(0.197420,-0.001974,0.002500,0.249988,0,0);-ms-transform:matrix(0.197420,-0.001974,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197420,-0.001974,0.002500,0.249988,0,0);}
.m14c_c00345{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);}
.m123_c00345{transform:matrix(0.198325,-0.001983,0.002500,0.249988,0,0);-ms-transform:matrix(0.198325,-0.001983,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198325,-0.001983,0.002500,0.249988,0,0);}
.m156_c00345{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);}
.m13e_c00345{transform:matrix(0.198700,-0.001987,0.002500,0.249988,0,0);-ms-transform:matrix(0.198700,-0.001987,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198700,-0.001987,0.002500,0.249988,0,0);}
.m9f_c00345{transform:matrix(0.198990,-0.001990,0.002500,0.249988,0,0);-ms-transform:matrix(0.198990,-0.001990,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198990,-0.001990,0.002500,0.249988,0,0);}
.m20_c00345{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);}
.m150_c00345{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);}
.m162_c00345{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);}
.mc9_c00345{transform:matrix(0.199355,-0.001994,0.002500,0.249988,0,0);-ms-transform:matrix(0.199355,-0.001994,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199355,-0.001994,0.002500,0.249988,0,0);}
.m167_c00345{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);}
.m3c_c00345{transform:matrix(0.199478,-0.002194,0.002750,0.249985,0,0);-ms-transform:matrix(0.199478,-0.002194,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199478,-0.002194,0.002750,0.249985,0,0);}
.m7f_c00345{transform:matrix(0.199550,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199550,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199550,-0.001996,0.002500,0.249988,0,0);}
.m3e_c00345{transform:matrix(0.199683,-0.002197,0.002750,0.249985,0,0);-ms-transform:matrix(0.199683,-0.002197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199683,-0.002197,0.002750,0.249985,0,0);}
.m14e_c00345{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);}
.m11b_c00345{transform:matrix(0.199900,-0.001999,0.002500,0.249988,0,0);-ms-transform:matrix(0.199900,-0.001999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199900,-0.001999,0.002500,0.249988,0,0);}
.m15c_c00345{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);}
.mdd_c00345{transform:matrix(0.200185,-0.002002,0.002500,0.249988,0,0);-ms-transform:matrix(0.200185,-0.002002,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200185,-0.002002,0.002500,0.249988,0,0);}
.m153_c00345{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);}
.mf4_c00345{transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);-ms-transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200325,-0.002003,0.002500,0.249988,0,0);}
.m41_c00345{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);}
.mfd_c00345{transform:matrix(0.200415,-0.002004,0.002500,0.249988,0,0);-ms-transform:matrix(0.200415,-0.002004,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200415,-0.002004,0.002500,0.249988,0,0);}
.ma2_c00345{transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);}
.mc2_c00345{transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);}
.m128_c00345{transform:matrix(0.200960,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.200960,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200960,-0.002010,0.002500,0.249988,0,0);}
.m99_c00345{transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201060,-0.002011,0.002500,0.249988,0,0);}
.m37_c00345{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);}
.m5f_c00345{transform:matrix(0.202015,-0.002020,0.002500,0.249988,0,0);-ms-transform:matrix(0.202015,-0.002020,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202015,-0.002020,0.002500,0.249988,0,0);}
.m85_c00345{transform:matrix(0.202020,-0.002020,0.002500,0.249988,0,0);-ms-transform:matrix(0.202020,-0.002020,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202020,-0.002020,0.002500,0.249988,0,0);}
.m11c_c00345{transform:matrix(0.202355,-0.002024,0.002500,0.249988,0,0);-ms-transform:matrix(0.202355,-0.002024,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202355,-0.002024,0.002500,0.249988,0,0);}
.m14b_c00345{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);}
.mae_c00345{transform:matrix(0.202680,-0.002027,0.002500,0.249988,0,0);-ms-transform:matrix(0.202680,-0.002027,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202680,-0.002027,0.002500,0.249988,0,0);}
.m7c_c00345{transform:matrix(0.203100,-0.002031,0.002500,0.249988,0,0);-ms-transform:matrix(0.203100,-0.002031,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203100,-0.002031,0.002500,0.249988,0,0);}
.m125_c00345{transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203280,-0.002033,0.002500,0.249988,0,0);}
.m44_c00345{transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);}
.m4a_c00345{transform:matrix(0.203420,-0.002034,0.002500,0.249988,0,0);-ms-transform:matrix(0.203420,-0.002034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203420,-0.002034,0.002500,0.249988,0,0);}
.m95_c00345{transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);-ms-transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203450,-0.002034,0.002500,0.249988,0,0);}
.ma1_c00345{transform:matrix(0.203690,-0.002037,0.002500,0.249988,0,0);-ms-transform:matrix(0.203690,-0.002037,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203690,-0.002037,0.002500,0.249988,0,0);}
.mb7_c00345{transform:matrix(0.204200,-0.002042,0.002500,0.249988,0,0);-ms-transform:matrix(0.204200,-0.002042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204200,-0.002042,0.002500,0.249988,0,0);}
.m69_c00345{transform:matrix(0.204920,-0.002049,0.002500,0.249988,0,0);-ms-transform:matrix(0.204920,-0.002049,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204920,-0.002049,0.002500,0.249988,0,0);}
.m9d_c00345{transform:matrix(0.205195,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205195,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205195,-0.002052,0.002500,0.249988,0,0);}
.m15d_c00345{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);}
.m1a_c00345{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);}
.m79_c00345{transform:matrix(0.205990,-0.002060,0.002500,0.249988,0,0);-ms-transform:matrix(0.205990,-0.002060,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205990,-0.002060,0.002500,0.249988,0,0);}
.md3_c00345{transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);}
.m28_c00345{transform:matrix(0.206163,-0.001649,0.002000,0.249992,0,0);-ms-transform:matrix(0.206163,-0.001649,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206163,-0.001649,0.002000,0.249992,0,0);}
.mca_c00345{transform:matrix(0.206215,-0.002062,0.002500,0.249988,0,0);-ms-transform:matrix(0.206215,-0.002062,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206215,-0.002062,0.002500,0.249988,0,0);}
.ma0_c00345{transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);}
.m112_c00345{transform:matrix(0.207080,-0.002071,0.002500,0.249988,0,0);-ms-transform:matrix(0.207080,-0.002071,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207080,-0.002071,0.002500,0.249988,0,0);}
.m109_c00345{transform:matrix(0.207195,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207195,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207195,-0.002072,0.002500,0.249988,0,0);}
.m66_c00345{transform:matrix(0.207295,-0.002073,0.002500,0.249988,0,0);-ms-transform:matrix(0.207295,-0.002073,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207295,-0.002073,0.002500,0.249988,0,0);}
.m139_c00345{transform:matrix(0.207605,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207605,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207605,-0.002076,0.002500,0.249988,0,0);}
.m6c_c00345{transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);}
.m111_c00345{transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);-ms-transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208095,-0.002081,0.002500,0.249988,0,0);}
.m143_c00345{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);}
.ma4_c00345{transform:matrix(0.208585,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208585,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208585,-0.002086,0.002500,0.249988,0,0);}
.m152_c00345{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);}
.m75_c00345{transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);-ms-transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209660,-0.002097,0.002500,0.249988,0,0);}
.m6a_c00345{transform:matrix(0.210194,-0.002102,0.002500,0.249988,0,0);-ms-transform:matrix(0.210194,-0.002102,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210194,-0.002102,0.002500,0.249988,0,0);}
.m97_c00345{transform:matrix(0.210449,-0.002104,0.002500,0.249988,0,0);-ms-transform:matrix(0.210449,-0.002104,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210449,-0.002104,0.002500,0.249988,0,0);}
.m149_c00345{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);}
.m13b_c00345{transform:matrix(0.210819,-0.002108,0.002500,0.249988,0,0);-ms-transform:matrix(0.210819,-0.002108,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210819,-0.002108,0.002500,0.249988,0,0);}
.m134_c00345{transform:matrix(0.210894,-0.002109,0.002500,0.249988,0,0);-ms-transform:matrix(0.210894,-0.002109,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210894,-0.002109,0.002500,0.249988,0,0);}
.mbb_c00345{transform:matrix(0.211569,-0.002116,0.002500,0.249988,0,0);-ms-transform:matrix(0.211569,-0.002116,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211569,-0.002116,0.002500,0.249988,0,0);}
.m110_c00345{transform:matrix(0.211729,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211729,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211729,-0.002117,0.002500,0.249988,0,0);}
.m16f_c00345{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);}
.m22_c00345{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);}
.mc8_c00345{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);}
.m10a_c00345{transform:matrix(0.213879,-0.002139,0.002500,0.249988,0,0);-ms-transform:matrix(0.213879,-0.002139,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213879,-0.002139,0.002500,0.249988,0,0);}
.m2b_c00345{transform:matrix(0.214918,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214918,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214918,-0.001719,0.002000,0.249992,0,0);}
.m21_c00345{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);}
.mda_c00345{transform:matrix(0.215354,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215354,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215354,-0.002154,0.002500,0.249988,0,0);}
.ma3_c00345{transform:matrix(0.215389,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215389,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215389,-0.002154,0.002500,0.249988,0,0);}
.m121_c00345{transform:matrix(0.215934,-0.002159,0.002500,0.249988,0,0);-ms-transform:matrix(0.215934,-0.002159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215934,-0.002159,0.002500,0.249988,0,0);}
.m1e_c00345{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);}
.m80_c00345{transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);}
.m144_c00345{transform:matrix(0.217344,-0.002173,0.002500,0.249988,0,0);-ms-transform:matrix(0.217344,-0.002173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217344,-0.002173,0.002500,0.249988,0,0);}
.m102_c00345{transform:matrix(0.217679,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217679,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217679,-0.002177,0.002500,0.249988,0,0);}
.m25_c00345{transform:matrix(0.218363,-0.001747,0.002000,0.249992,0,0);-ms-transform:matrix(0.218363,-0.001747,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218363,-0.001747,0.002000,0.249992,0,0);}
.m130_c00345{transform:matrix(0.218414,-0.002184,0.002500,0.249988,0,0);-ms-transform:matrix(0.218414,-0.002184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218414,-0.002184,0.002500,0.249988,0,0);}
.m57_c00345{transform:matrix(0.218514,-0.002185,0.002500,0.249988,0,0);-ms-transform:matrix(0.218514,-0.002185,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218514,-0.002185,0.002500,0.249988,0,0);}
.m92_c00345{transform:matrix(0.218994,-0.002190,0.002500,0.249988,0,0);-ms-transform:matrix(0.218994,-0.002190,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218994,-0.002190,0.002500,0.249988,0,0);}
.m142_c00345{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);}
.m10d_c00345{transform:matrix(0.220604,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220604,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220604,-0.002206,0.002500,0.249988,0,0);}
.m160_c00345{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_c00345{transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);-ms-transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220749,-0.002207,0.002500,0.249988,0,0);}
.m106_c00345{transform:matrix(0.220969,-0.002210,0.002500,0.249988,0,0);-ms-transform:matrix(0.220969,-0.002210,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220969,-0.002210,0.002500,0.249988,0,0);}
.m132_c00345{transform:matrix(0.221589,-0.002216,0.002500,0.249988,0,0);-ms-transform:matrix(0.221589,-0.002216,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221589,-0.002216,0.002500,0.249988,0,0);}
.m1f_c00345{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);}
.mb_c00345{transform:matrix(0.222533,-0.003783,0.004249,0.249964,0,0);-ms-transform:matrix(0.222533,-0.003783,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222533,-0.003783,0.004249,0.249964,0,0);}
.m70_c00345{transform:matrix(0.222689,-0.002227,0.002500,0.249988,0,0);-ms-transform:matrix(0.222689,-0.002227,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222689,-0.002227,0.002500,0.249988,0,0);}
.m146_c00345{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);}
.m78_c00345{transform:matrix(0.223109,-0.002231,0.002500,0.249988,0,0);-ms-transform:matrix(0.223109,-0.002231,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223109,-0.002231,0.002500,0.249988,0,0);}
.m77_c00345{transform:matrix(0.223449,-0.002234,0.002500,0.249988,0,0);-ms-transform:matrix(0.223449,-0.002234,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223449,-0.002234,0.002500,0.249988,0,0);}
.m6b_c00345{transform:matrix(0.223499,-0.002235,0.002500,0.249988,0,0);-ms-transform:matrix(0.223499,-0.002235,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223499,-0.002235,0.002500,0.249988,0,0);}
.m2_c00345{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);}
.m15b_c00345{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);}
.m157_c00345{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);}
.m133_c00345{transform:matrix(0.228274,-0.002283,0.002500,0.249988,0,0);-ms-transform:matrix(0.228274,-0.002283,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228274,-0.002283,0.002500,0.249988,0,0);}
.m93_c00345{transform:matrix(0.229744,-0.002297,0.002500,0.249988,0,0);-ms-transform:matrix(0.229744,-0.002297,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229744,-0.002297,0.002500,0.249988,0,0);}
.m154_c00345{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);}
.m29_c00345{transform:matrix(0.230508,-0.001844,0.002000,0.249992,0,0);-ms-transform:matrix(0.230508,-0.001844,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230508,-0.001844,0.002000,0.249992,0,0);}
.m31_c00345{transform:matrix(0.232318,-0.001859,0.002000,0.249992,0,0);-ms-transform:matrix(0.232318,-0.001859,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232318,-0.001859,0.002000,0.249992,0,0);}
.m13d_c00345{transform:matrix(0.232453,-0.002325,0.002500,0.249988,0,0);-ms-transform:matrix(0.232453,-0.002325,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232453,-0.002325,0.002500,0.249988,0,0);}
.md2_c00345{transform:matrix(0.236623,-0.002366,0.002500,0.249988,0,0);-ms-transform:matrix(0.236623,-0.002366,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236623,-0.002366,0.002500,0.249988,0,0);}
.m47_c00345{transform:matrix(0.237453,-0.002375,0.002500,0.249988,0,0);-ms-transform:matrix(0.237453,-0.002375,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237453,-0.002375,0.002500,0.249988,0,0);}
.m19_c00345{transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);}
.me9_c00345{transform:matrix(0.239053,-0.002391,0.002500,0.249988,0,0);-ms-transform:matrix(0.239053,-0.002391,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239053,-0.002391,0.002500,0.249988,0,0);}
.m104_c00345{transform:matrix(0.241503,-0.002415,0.002500,0.249988,0,0);-ms-transform:matrix(0.241503,-0.002415,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241503,-0.002415,0.002500,0.249988,0,0);}
.mf6_c00345{transform:matrix(0.241658,-0.002417,0.002500,0.249988,0,0);-ms-transform:matrix(0.241658,-0.002417,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241658,-0.002417,0.002500,0.249988,0,0);}
.me8_c00345{transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);-ms-transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241673,-0.002417,0.002500,0.249988,0,0);}
.me6_c00345{transform:matrix(0.241903,-0.002419,0.002500,0.249988,0,0);-ms-transform:matrix(0.241903,-0.002419,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241903,-0.002419,0.002500,0.249988,0,0);}
.m10e_c00345{transform:matrix(0.242473,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242473,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242473,-0.002425,0.002500,0.249988,0,0);}
.mb1_c00345{transform:matrix(0.246043,-0.002460,0.002500,0.249988,0,0);-ms-transform:matrix(0.246043,-0.002460,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246043,-0.002460,0.002500,0.249988,0,0);}
.md4_c00345{transform:matrix(0.248308,-0.002483,0.002500,0.249988,0,0);-ms-transform:matrix(0.248308,-0.002483,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248308,-0.002483,0.002500,0.249988,0,0);}
.m14f_c00345{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);}
.m12a_c00345{transform:matrix(0.254052,-0.002541,0.002500,0.249988,0,0);-ms-transform:matrix(0.254052,-0.002541,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254052,-0.002541,0.002500,0.249988,0,0);}
.ma_c00345{transform:matrix(0.254313,-0.004323,0.004249,0.249964,0,0);-ms-transform:matrix(0.254313,-0.004323,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254313,-0.004323,0.004249,0.249964,0,0);}
.m158_c00345{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);}
.m129_c00345{transform:matrix(0.257367,-0.002574,0.002500,0.249988,0,0);-ms-transform:matrix(0.257367,-0.002574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257367,-0.002574,0.002500,0.249988,0,0);}
.m15e_c00345{transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);}
.m12d_c00345{transform:matrix(0.263312,-0.002633,0.002500,0.249988,0,0);-ms-transform:matrix(0.263312,-0.002633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263312,-0.002633,0.002500,0.249988,0,0);}
.m13a_c00345{transform:matrix(0.265442,-0.002654,0.002500,0.249988,0,0);-ms-transform:matrix(0.265442,-0.002654,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265442,-0.002654,0.002500,0.249988,0,0);}
.m5d_c00345{transform:matrix(0.271376,-0.002714,0.002500,0.249988,0,0);-ms-transform:matrix(0.271376,-0.002714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271376,-0.002714,0.002500,0.249988,0,0);}
.m6e_c00345{transform:matrix(0.274181,-0.002742,0.002500,0.249988,0,0);-ms-transform:matrix(0.274181,-0.002742,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274181,-0.002742,0.002500,0.249988,0,0);}
.m155_c00345{transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);}
.m73_c00345{transform:matrix(0.274806,-0.002748,0.002500,0.249988,0,0);-ms-transform:matrix(0.274806,-0.002748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274806,-0.002748,0.002500,0.249988,0,0);}
.m76_c00345{transform:matrix(0.275751,-0.002758,0.002500,0.249988,0,0);-ms-transform:matrix(0.275751,-0.002758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275751,-0.002758,0.002500,0.249988,0,0);}
.m4_c00345{transform:matrix(0.278390,-0.004733,0.004249,0.249964,0,0);-ms-transform:matrix(0.278390,-0.004733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278390,-0.004733,0.004249,0.249964,0,0);}
.m148_c00345{transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.281389,-0.004784,0.004249,0.249964,0,0);-ms-transform:matrix(0.281389,-0.004784,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281389,-0.004784,0.004249,0.249964,0,0);}
.m175_c00345{transform:matrix(0.283071,0.003680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283071,0.003680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283071,0.003680,-0.003250,0.249979,0,0);}
.m140_c00345{transform:matrix(0.289481,-0.002895,0.002500,0.249988,0,0);-ms-transform:matrix(0.289481,-0.002895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.289481,-0.002895,0.002500,0.249988,0,0);}
.m145_c00345{transform:matrix(0.306850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306850,0.000000,0.000000,0.250000,0,0);}
.m68_c00345{transform:matrix(0.308985,-0.003090,0.002500,0.249988,0,0);-ms-transform:matrix(0.308985,-0.003090,0.002500,0.249988,0,0);-webkit-transform:matrix(0.308985,-0.003090,0.002500,0.249988,0,0);}
.m17a_c00345{transform:matrix(0.317643,0.004129,-0.003250,0.249979,0,0);-ms-transform:matrix(0.317643,0.004129,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.317643,0.004129,-0.003250,0.249979,0,0);}
.m24_c00345{transform:matrix(0.323085,-0.002585,0.002000,0.249992,0,0);-ms-transform:matrix(0.323085,-0.002585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.323085,-0.002585,0.002000,0.249992,0,0);}
.m16b_c00345{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m5c_c00345{transform:matrix(0.329114,-0.003291,0.002500,0.249988,0,0);-ms-transform:matrix(0.329114,-0.003291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.329114,-0.003291,0.002500,0.249988,0,0);}
.m1_c00345{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);}
.m105_c00345{transform:matrix(0.340268,-0.003403,0.002500,0.249988,0,0);-ms-transform:matrix(0.340268,-0.003403,0.002500,0.249988,0,0);-webkit-transform:matrix(0.340268,-0.003403,0.002500,0.249988,0,0);}
.m12e_c00345{transform:matrix(0.340613,-0.003406,0.002500,0.249988,0,0);-ms-transform:matrix(0.340613,-0.003406,0.002500,0.249988,0,0);-webkit-transform:matrix(0.340613,-0.003406,0.002500,0.249988,0,0);}
.m2c_c00345{transform:matrix(0.347599,-0.002781,0.002000,0.249992,0,0);-ms-transform:matrix(0.347599,-0.002781,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347599,-0.002781,0.002000,0.249992,0,0);}
.m17d_c00345{transform:matrix(0.355725,0.004624,-0.003250,0.249979,0,0);-ms-transform:matrix(0.355725,0.004624,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.355725,0.004624,-0.003250,0.249979,0,0);}
.m117_c00345{transform:matrix(0.356577,-0.003566,0.002500,0.249988,0,0);-ms-transform:matrix(0.356577,-0.003566,0.002500,0.249988,0,0);-webkit-transform:matrix(0.356577,-0.003566,0.002500,0.249988,0,0);}
.m61_c00345{transform:matrix(0.356862,-0.003569,0.002500,0.249988,0,0);-ms-transform:matrix(0.356862,-0.003569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.356862,-0.003569,0.002500,0.249988,0,0);}
.m14d_c00345{transform:matrix(0.359695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359695,0.000000,0.000000,0.250000,0,0);}
.m15f_c00345{transform:matrix(0.372875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372875,0.000000,0.000000,0.250000,0,0);}
.m15a_c00345{transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);}
.m178_c00345{transform:matrix(0.382478,0.004972,-0.003250,0.249979,0,0);-ms-transform:matrix(0.382478,0.004972,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.382478,0.004972,-0.003250,0.249979,0,0);}
.m10c_c00345{transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);-ms-transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);}
.m173_c00345{transform:matrix(0.395817,0.005146,-0.003250,0.249979,0,0);-ms-transform:matrix(0.395817,0.005146,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.395817,0.005146,-0.003250,0.249979,0,0);}
.m172_c00345{transform:matrix(0.407931,0.005303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.407931,0.005303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.407931,0.005303,-0.003250,0.249979,0,0);}
.m14_c00345{transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.416465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416465,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.426470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426470,0.000000,0.000000,0.250000,0,0);}
.m1b_c00345{transform:matrix(0.441800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441800,0.000000,0.000000,0.250000,0,0);}
.m17b_c00345{transform:matrix(0.448972,0.005837,-0.003250,0.249979,0,0);-ms-transform:matrix(0.448972,0.005837,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.448972,0.005837,-0.003250,0.249979,0,0);}
.mf_c00345{transform:matrix(0.453609,-0.007711,0.004249,0.249964,0,0);-ms-transform:matrix(0.453609,-0.007711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.453609,-0.007711,0.004249,0.249964,0,0);}
.m12_c00345{transform:matrix(0.489419,-0.008320,0.004249,0.249964,0,0);-ms-transform:matrix(0.489419,-0.008320,0.004249,0.249964,0,0);-webkit-transform:matrix(0.489419,-0.008320,0.004249,0.249964,0,0);}
.m33_c00345{transform:matrix(0.501825,-0.005520,0.002750,0.249985,0,0);-ms-transform:matrix(0.501825,-0.005520,0.002750,0.249985,0,0);-webkit-transform:matrix(0.501825,-0.005520,0.002750,0.249985,0,0);}
.mff_c00345{transform:matrix(0.507470,-0.005075,0.002500,0.249988,0,0);-ms-transform:matrix(0.507470,-0.005075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.507470,-0.005075,0.002500,0.249988,0,0);}
.m0_c00345{transform:matrix(0.515080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515080,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.527399,-0.008966,0.004249,0.249964,0,0);-ms-transform:matrix(0.527399,-0.008966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.527399,-0.008966,0.004249,0.249964,0,0);}
.m72_c00345{transform:matrix(0.533888,-0.005339,0.002500,0.249988,0,0);-ms-transform:matrix(0.533888,-0.005339,0.002500,0.249988,0,0);-webkit-transform:matrix(0.533888,-0.005339,0.002500,0.249988,0,0);}
.m8_c00345{transform:matrix(0.544291,-0.009253,0.004249,0.249964,0,0);-ms-transform:matrix(0.544291,-0.009253,0.004249,0.249964,0,0);-webkit-transform:matrix(0.544291,-0.009253,0.004249,0.249964,0,0);}
.m7_c00345{transform:matrix(0.555450,-0.009443,0.004249,0.249964,0,0);-ms-transform:matrix(0.555450,-0.009443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.555450,-0.009443,0.004249,0.249964,0,0);}
.m174_c00345{transform:matrix(0.631212,0.008206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.631212,0.008206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.631212,0.008206,-0.003250,0.249979,0,0);}
.m3b_c00345{transform:matrix(0.635047,-0.006986,0.002750,0.249985,0,0);-ms-transform:matrix(0.635047,-0.006986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.635047,-0.006986,0.002750,0.249985,0,0);}
.m6_c00345{transform:matrix(0.647047,-0.011000,0.004249,0.249964,0,0);-ms-transform:matrix(0.647047,-0.011000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.647047,-0.011000,0.004249,0.249964,0,0);}
.m55_c00345{transform:matrix(0.659477,-0.006595,0.002500,0.249988,0,0);-ms-transform:matrix(0.659477,-0.006595,0.002500,0.249988,0,0);-webkit-transform:matrix(0.659477,-0.006595,0.002500,0.249988,0,0);}
.me_c00345{transform:matrix(0.660130,-0.011222,0.004249,0.249964,0,0);-ms-transform:matrix(0.660130,-0.011222,0.004249,0.249964,0,0);-webkit-transform:matrix(0.660130,-0.011222,0.004249,0.249964,0,0);}
.m5_c00345{transform:matrix(0.762400,-0.012961,0.004249,0.249964,0,0);-ms-transform:matrix(0.762400,-0.012961,0.004249,0.249964,0,0);-webkit-transform:matrix(0.762400,-0.012961,0.004249,0.249964,0,0);}
.m177_c00345{transform:matrix(0.839929,0.010919,-0.003250,0.249979,0,0);-ms-transform:matrix(0.839929,0.010919,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.839929,0.010919,-0.003250,0.249979,0,0);}
.m10_c00345{transform:matrix(1.128117,-0.019178,0.004249,0.249964,0,0);-ms-transform:matrix(1.128117,-0.019178,0.004249,0.249964,0,0);-webkit-transform:matrix(1.128117,-0.019178,0.004249,0.249964,0,0);}
.m11_c00345{transform:matrix(2.336547,-0.039721,0.004249,0.249964,0,0);-ms-transform:matrix(2.336547,-0.039721,0.004249,0.249964,0,0);-webkit-transform:matrix(2.336547,-0.039721,0.004249,0.249964,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;}
._0_c00345{width:24.772456px;}
.fc0_c00345{color:transparent;}
.fs11_c00345{font-size:26.250000px;}
.fs0_c00345{font-size:31.500000px;}
.fs5_c00345{font-size:43.050000px;}
.fs13_c00345{font-size:47.250000px;}
.fs12_c00345{font-size:51.450000px;}
.fs14_c00345{font-size:53.550000px;}
.fs3_c00345{font-size:53.557737px;}
.fs2_c00345{font-size:60.908799px;}
.fs6_c00345{font-size:64.050000px;}
.fsf_c00345{font-size:66.153307px;}
.fs10_c00345{font-size:67.203360px;}
.fs16_c00345{font-size:67.205678px;}
.fsc_c00345{font-size:68.253412px;}
.fsd_c00345{font-size:69.303465px;}
.fs8_c00345{font-size:69.304193px;}
.fsb_c00345{font-size:70.353517px;}
.fs7_c00345{font-size:71.402285px;}
.fse_c00345{font-size:71.403570px;}
.fsa_c00345{font-size:71.404320px;}
.fs9_c00345{font-size:72.454383px;}
.fs1_c00345{font-size:74.560772px;}
.fs4_c00345{font-size:117.600000px;}
.fs15_c00345{font-size:118.660026px;}
.y0_c00345{bottom:0.000000px;}
.y150_c00345{bottom:79.790789px;}
.y14f_c00345{bottom:79.868160px;}
.y14e_c00345{bottom:80.347079px;}
.y14d_c00345{bottom:80.920361px;}
.y14c_c00345{bottom:81.047928px;}
.y14b_c00345{bottom:81.459581px;}
.y14a_c00345{bottom:82.342347px;}
.y149_c00345{bottom:82.469075px;}
.y148_c00345{bottom:82.889895px;}
.y147_c00345{bottom:90.564873px;}
.y146_c00345{bottom:91.786295px;}
.y145_c00345{bottom:93.162000px;}
.y144_c00345{bottom:140.401500px;}
.y143_c00345{bottom:158.853000px;}
.y142_c00345{bottom:176.080500px;}
.y141_c00345{bottom:219.510000px;}
.y134_c00345{bottom:243.863355px;}
.y135_c00345{bottom:243.863625px;}
.y140_c00345{bottom:243.863745px;}
.y136_c00345{bottom:243.863910px;}
.y13f_c00345{bottom:243.864060px;}
.y139_c00345{bottom:243.864435px;}
.y138_c00345{bottom:243.864465px;}
.y137_c00345{bottom:243.864495px;}
.y13e_c00345{bottom:243.864675px;}
.y13a_c00345{bottom:243.864735px;}
.y13c_c00345{bottom:243.865005px;}
.y13b_c00345{bottom:243.865020px;}
.y13d_c00345{bottom:243.865290px;}
.y131_c00345{bottom:266.824155px;}
.y132_c00345{bottom:266.824440px;}
.y130_c00345{bottom:266.824485px;}
.y133_c00345{bottom:266.824725px;}
.y12f_c00345{bottom:266.825100px;}
.y12c_c00345{bottom:266.825160px;}
.y12a_c00345{bottom:266.825190px;}
.y129_c00345{bottom:266.825220px;}
.y12d_c00345{bottom:266.825445px;}
.y12b_c00345{bottom:266.825475px;}
.y12e_c00345{bottom:266.825715px;}
.y128_c00345{bottom:266.825850px;}
.y125_c00345{bottom:289.678950px;}
.y126_c00345{bottom:289.679235px;}
.y124_c00345{bottom:289.679280px;}
.y122_c00345{bottom:289.679355px;}
.y11e_c00345{bottom:289.679430px;}
.y127_c00345{bottom:289.679520px;}
.y121_c00345{bottom:289.679670px;}
.y123_c00345{bottom:289.679925px;}
.y11f_c00345{bottom:289.680015px;}
.y120_c00345{bottom:289.680300px;}
.y118_c00345{bottom:312.388290px;}
.y116_c00345{bottom:312.388350px;}
.y115_c00345{bottom:312.388680px;}
.y11d_c00345{bottom:312.388770px;}
.y119_c00345{bottom:312.388845px;}
.y117_c00345{bottom:312.388935px;}
.y11c_c00345{bottom:312.389085px;}
.y11b_c00345{bottom:312.389100px;}
.y11a_c00345{bottom:312.389115px;}
.y114_c00345{bottom:312.389295px;}
.y113_c00345{bottom:335.051505px;}
.y112_c00345{bottom:335.052105px;}
.y10d_c00345{bottom:335.052255px;}
.y10c_c00345{bottom:335.052285px;}
.y109_c00345{bottom:335.052345px;}
.y111_c00345{bottom:335.052420px;}
.y10a_c00345{bottom:335.052615px;}
.y110_c00345{bottom:335.052735px;}
.y10e_c00345{bottom:335.052825px;}
.y10b_c00345{bottom:335.052900px;}
.y10f_c00345{bottom:335.053065px;}
.yfd_c00345{bottom:358.763415px;}
.yfe_c00345{bottom:358.764000px;}
.yfc_c00345{bottom:358.764030px;}
.yff_c00345{bottom:358.764585px;}
.y100_c00345{bottom:358.765140px;}
.y101_c00345{bottom:358.765395px;}
.y102_c00345{bottom:358.765980px;}
.y103_c00345{bottom:358.766565px;}
.y105_c00345{bottom:358.766820px;}
.y104_c00345{bottom:358.766835px;}
.y106_c00345{bottom:358.767090px;}
.y107_c00345{bottom:358.767675px;}
.y108_c00345{bottom:358.768260px;}
.yfb_c00345{bottom:381.972600px;}
.yfa_c00345{bottom:381.973245px;}
.yf0_c00345{bottom:381.973470px;}
.yf2_c00345{bottom:381.973725px;}
.yf9_c00345{bottom:381.973890px;}
.yf7_c00345{bottom:381.973935px;}
.yf6_c00345{bottom:381.973950px;}
.yf4_c00345{bottom:381.973980px;}
.yf3_c00345{bottom:381.974010px;}
.yf1_c00345{bottom:381.974040px;}
.yf8_c00345{bottom:381.974505px;}
.yf5_c00345{bottom:381.974565px;}
.yed_c00345{bottom:403.893480px;}
.yec_c00345{bottom:403.893510px;}
.yef_c00345{bottom:403.893750px;}
.yee_c00345{bottom:403.894065px;}
.yeb_c00345{bottom:403.894125px;}
.yea_c00345{bottom:403.894755px;}
.ye9_c00345{bottom:403.895070px;}
.ye8_c00345{bottom:403.895385px;}
.ye7_c00345{bottom:403.896000px;}
.ye6_c00345{bottom:403.896615px;}
.ye5_c00345{bottom:403.897230px;}
.ye4_c00345{bottom:403.897545px;}
.ye3_c00345{bottom:403.897875px;}
.ydd_c00345{bottom:427.562625px;}
.ye1_c00345{bottom:427.562835px;}
.ydc_c00345{bottom:427.562955px;}
.ydb_c00345{bottom:427.562985px;}
.ye2_c00345{bottom:427.563120px;}
.ye0_c00345{bottom:427.563165px;}
.yde_c00345{bottom:427.563210px;}
.yda_c00345{bottom:427.563300px;}
.ydf_c00345{bottom:427.563495px;}
.yd9_c00345{bottom:427.563930px;}
.yd7_c00345{bottom:427.564260px;}
.yd8_c00345{bottom:427.564545px;}
.yd6_c00345{bottom:450.243930px;}
.ycf_c00345{bottom:450.244095px;}
.yd4_c00345{bottom:450.244290px;}
.yd5_c00345{bottom:450.244575px;}
.yd3_c00345{bottom:450.244605px;}
.yd1_c00345{bottom:450.244650px;}
.yd0_c00345{bottom:450.244665px;}
.yce_c00345{bottom:450.244710px;}
.ycc_c00345{bottom:450.244740px;}
.yd2_c00345{bottom:450.245220px;}
.ycd_c00345{bottom:450.245325px;}
.yc8_c00345{bottom:472.926240px;}
.yc7_c00345{bottom:472.926255px;}
.yc4_c00345{bottom:472.926315px;}
.ycb_c00345{bottom:472.926495px;}
.yc5_c00345{bottom:472.926585px;}
.yc3_c00345{bottom:472.926645px;}
.yca_c00345{bottom:472.926810px;}
.yc9_c00345{bottom:472.926825px;}
.yc6_c00345{bottom:472.926870px;}
.yc2_c00345{bottom:472.926960px;}
.yc1_c00345{bottom:472.927575px;}
.yc0_c00345{bottom:495.816330px;}
.ybe_c00345{bottom:495.816690px;}
.ybf_c00345{bottom:495.816960px;}
.ybd_c00345{bottom:495.817005px;}
.yba_c00345{bottom:495.817065px;}
.ybc_c00345{bottom:495.817635px;}
.ybb_c00345{bottom:495.817650px;}
.yb9_c00345{bottom:495.817695px;}
.yb8_c00345{bottom:495.818025px;}
.yb7_c00345{bottom:495.818340px;}
.yb6_c00345{bottom:495.818955px;}
.yb3_c00345{bottom:518.547240px;}
.yb0_c00345{bottom:518.547600px;}
.yaa_c00345{bottom:518.547735px;}
.yb4_c00345{bottom:518.547825px;}
.yb2_c00345{bottom:518.547870px;}
.yaf_c00345{bottom:518.547945px;}
.yae_c00345{bottom:518.547960px;}
.yad_c00345{bottom:518.547990px;}
.yab_c00345{bottom:518.548020px;}
.yb5_c00345{bottom:518.548110px;}
.yb1_c00345{bottom:518.548185px;}
.yac_c00345{bottom:518.548305px;}
.ya6_c00345{bottom:541.717410px;}
.ya5_c00345{bottom:541.717425px;}
.ya4_c00345{bottom:541.717740px;}
.ya8_c00345{bottom:541.717950px;}
.ya7_c00345{bottom:541.717980px;}
.ya3_c00345{bottom:541.718355px;}
.ya2_c00345{bottom:541.718385px;}
.ya9_c00345{bottom:541.718520px;}
.y9f_c00345{bottom:541.718760px;}
.ya1_c00345{bottom:541.719000px;}
.ya0_c00345{bottom:541.719315px;}
.y9c_c00345{bottom:564.635460px;}
.y99_c00345{bottom:564.635535px;}
.y9a_c00345{bottom:564.635820px;}
.y98_c00345{bottom:564.635865px;}
.y94_c00345{bottom:564.635940px;}
.y9e_c00345{bottom:564.636015px;}
.y9d_c00345{bottom:564.636045px;}
.y9b_c00345{bottom:564.636090px;}
.y97_c00345{bottom:564.636480px;}
.y95_c00345{bottom:564.636525px;}
.y96_c00345{bottom:564.637110px;}
.y93_c00345{bottom:587.623710px;}
.y8d_c00345{bottom:587.624145px;}
.y92_c00345{bottom:587.624340px;}
.y91_c00345{bottom:587.624370px;}
.y8e_c00345{bottom:587.624430px;}
.y8c_c00345{bottom:587.624760px;}
.y90_c00345{bottom:587.624985px;}
.y8f_c00345{bottom:587.625015px;}
.y8b_c00345{bottom:587.625375px;}
.y8a_c00345{bottom:587.625420px;}
.y89_c00345{bottom:587.625735px;}
.y83_c00345{bottom:610.565925px;}
.y85_c00345{bottom:610.566180px;}
.y84_c00345{bottom:610.566510px;}
.y82_c00345{bottom:610.566540px;}
.y81_c00345{bottom:610.566585px;}
.y87_c00345{bottom:610.566750px;}
.y86_c00345{bottom:610.566765px;}
.y88_c00345{bottom:610.567020px;}
.y80_c00345{bottom:610.567200px;}
.y7f_c00345{bottom:610.567530px;}
.y74_c00345{bottom:631.527030px;}
.y75_c00345{bottom:632.201295px;}
.y76_c00345{bottom:632.458155px;}
.y77_c00345{bottom:632.758395px;}
.y78_c00345{bottom:632.890155px;}
.y79_c00345{bottom:633.518370px;}
.y7a_c00345{bottom:634.007055px;}
.y7b_c00345{bottom:634.183515px;}
.y7c_c00345{bottom:634.814040px;}
.y7d_c00345{bottom:635.060865px;}
.y7e_c00345{bottom:635.347440px;}
.y66_c00345{bottom:653.937945px;}
.y67_c00345{bottom:654.297570px;}
.y68_c00345{bottom:654.649395px;}
.y69_c00345{bottom:654.716685px;}
.y6a_c00345{bottom:654.896130px;}
.y6b_c00345{bottom:655.304505px;}
.y6c_c00345{bottom:655.499415px;}
.y6d_c00345{bottom:656.011485px;}
.y6e_c00345{bottom:656.308050px;}
.y6f_c00345{bottom:656.582025px;}
.y70_c00345{bottom:657.084720px;}
.y71_c00345{bottom:657.216780px;}
.y72_c00345{bottom:657.621180px;}
.y73_c00345{bottom:658.009665px;}
.y5b_c00345{bottom:676.888905px;}
.y5c_c00345{bottom:677.315340px;}
.y5d_c00345{bottom:677.491770px;}
.y5e_c00345{bottom:678.149040px;}
.y5f_c00345{bottom:678.345255px;}
.y60_c00345{bottom:678.535035px;}
.y61_c00345{bottom:678.649515px;}
.y62_c00345{bottom:679.284315px;}
.y63_c00345{bottom:679.848075px;}
.y64_c00345{bottom:680.060190px;}
.y65_c00345{bottom:680.863530px;}
.y4d_c00345{bottom:699.570405px;}
.y4e_c00345{bottom:699.873270px;}
.y4f_c00345{bottom:699.986655px;}
.y50_c00345{bottom:700.576755px;}
.y51_c00345{bottom:701.106885px;}
.y52_c00345{bottom:701.293800px;}
.y53_c00345{bottom:701.794545px;}
.y54_c00345{bottom:702.179175px;}
.y55_c00345{bottom:702.514410px;}
.y56_c00345{bottom:702.742560px;}
.y57_c00345{bottom:703.160490px;}
.y58_c00345{bottom:703.769805px;}
.y59_c00345{bottom:703.894830px;}
.y5a_c00345{bottom:704.096130px;}
.y3f_c00345{bottom:722.251500px;}
.y40_c00345{bottom:722.740125px;}
.y41_c00345{bottom:723.269325px;}
.y42_c00345{bottom:723.506565px;}
.y43_c00345{bottom:724.306185px;}
.y44_c00345{bottom:724.489365px;}
.y45_c00345{bottom:724.830030px;}
.y46_c00345{bottom:725.064540px;}
.y47_c00345{bottom:725.469525px;}
.y48_c00345{bottom:725.807490px;}
.y49_c00345{bottom:726.514395px;}
.y4a_c00345{bottom:726.709080px;}
.y4b_c00345{bottom:726.976200px;}
.y4c_c00345{bottom:727.389285px;}
.y3e_c00345{bottom:733.590699px;}
.y33_c00345{bottom:745.202064px;}
.y34_c00345{bottom:745.918764px;}
.y35_c00345{bottom:746.346008px;}
.y36_c00345{bottom:746.548022px;}
.y37_c00345{bottom:747.482196px;}
.y38_c00345{bottom:747.920232px;}
.y39_c00345{bottom:748.538895px;}
.y3a_c00345{bottom:749.035875px;}
.y3b_c00345{bottom:749.446881px;}
.y3c_c00345{bottom:749.868152px;}
.y3d_c00345{bottom:750.025577px;}
.y2b_c00345{bottom:767.613000px;}
.y2c_c00345{bottom:768.390480px;}
.y2d_c00345{bottom:769.254734px;}
.y2e_c00345{bottom:769.810190px;}
.y2f_c00345{bottom:770.240873px;}
.y30_c00345{bottom:770.811080px;}
.y31_c00345{bottom:771.194292px;}
.y32_c00345{bottom:771.437849px;}
.y1c_c00345{bottom:791.911500px;}
.y1d_c00345{bottom:792.337044px;}
.y1e_c00345{bottom:792.794760px;}
.y1f_c00345{bottom:792.969768px;}
.y20_c00345{bottom:793.163916px;}
.y21_c00345{bottom:793.660980px;}
.y22_c00345{bottom:793.818720px;}
.y23_c00345{bottom:794.224860px;}
.y24_c00345{bottom:794.464764px;}
.y25_c00345{bottom:794.585544px;}
.y26_c00345{bottom:794.756208px;}
.y27_c00345{bottom:795.060528px;}
.y28_c00345{bottom:795.594036px;}
.y29_c00345{bottom:795.760632px;}
.y2a_c00345{bottom:796.037124px;}
.y13_c00345{bottom:813.781500px;}
.y14_c00345{bottom:814.248000px;}
.y15_c00345{bottom:815.068500px;}
.y16_c00345{bottom:815.835000px;}
.y17_c00345{bottom:816.543000px;}
.y18_c00345{bottom:817.458000px;}
.y19_c00345{bottom:817.698000px;}
.y1a_c00345{bottom:818.316000px;}
.y1b_c00345{bottom:818.896500px;}
.y12_c00345{bottom:826.959000px;}
.y11_c00345{bottom:861.078000px;}
.y10_c00345{bottom:885.331920px;}
.yb_c00345{bottom:897.483738px;}
.yc_c00345{bottom:898.260417px;}
.yd_c00345{bottom:899.863653px;}
.ye_c00345{bottom:900.692301px;}
.yf_c00345{bottom:903.271754px;}
.y2_c00345{bottom:913.684500px;}
.y3_c00345{bottom:914.469594px;}
.y4_c00345{bottom:915.874389px;}
.y5_c00345{bottom:917.063097px;}
.y6_c00345{bottom:918.472559px;}
.y7_c00345{bottom:919.847417px;}
.y8_c00345{bottom:920.776484px;}
.y9_c00345{bottom:921.831011px;}
.ya_c00345{bottom:923.093949px;}
.y1_c00345{bottom:923.382000px;}
.h13_c00345{height:26.250000px;}
.h2_c00345{height:31.500000px;}
.h7_c00345{height:43.050000px;}
.h15_c00345{height:47.250000px;}
.h14_c00345{height:51.450000px;}
.h16_c00345{height:53.550000px;}
.h5_c00345{height:53.557737px;}
.h4_c00345{height:60.908799px;}
.h8_c00345{height:64.050000px;}
.h11_c00345{height:66.153307px;}
.h12_c00345{height:67.203360px;}
.h18_c00345{height:67.205678px;}
.he_c00345{height:68.253412px;}
.hf_c00345{height:69.303465px;}
.ha_c00345{height:69.304193px;}
.hd_c00345{height:70.353517px;}
.h9_c00345{height:71.402285px;}
.h10_c00345{height:71.403570px;}
.hc_c00345{height:71.404320px;}
.hb_c00345{height:72.454383px;}
.h3_c00345{height:74.560772px;}
.h6_c00345{height:117.600000px;}
.h17_c00345{height:118.660026px;}
.h0_c00345{height:1008.450000px;}
.h1_c00345{height:1008.750000px;}
.w0_c00345{width:696.000000px;}
.x0_c00345{left:0.000000px;}
.x5_c00345{left:101.475000px;}
.x11_c00345{left:104.717791px;}
.x20_c00345{left:106.228500px;}
.x3b_c00345{left:108.274001px;}
.x13_c00345{left:112.050000px;}
.x47_c00345{left:114.378615px;}
.x57_c00345{left:115.489005px;}
.x6_c00345{left:147.657000px;}
.x62_c00345{left:154.025445px;}
.xa7_c00345{left:155.521545px;}
.xa3_c00345{left:156.603060px;}
.x19_c00345{left:158.617500px;}
.x3c_c00345{left:159.973500px;}
.x69_c00345{left:161.735790px;}
.x7a_c00345{left:163.086195px;}
.xbe_c00345{left:174.420000px;}
.x2e_c00345{left:176.470500px;}
.x33_c00345{left:178.061852px;}
.x4f_c00345{left:182.092650px;}
.xaf_c00345{left:183.334440px;}
.xc8_c00345{left:189.000000px;}
.xb5_c00345{left:190.895760px;}
.x72_c00345{left:193.057320px;}
.xbf_c00345{left:196.290000px;}
.x89_c00345{left:199.267920px;}
.x99_c00345{left:200.621025px;}
.x7b_c00345{left:201.698550px;}
.x93_c00345{left:203.322510px;}
.x58_c00345{left:204.485790px;}
.x9f_c00345{left:209.527275px;}
.x3d_c00345{left:212.893500px;}
.xa8_c00345{left:214.654455px;}
.x21_c00345{left:216.636000px;}
.x34_c00345{left:220.720814px;}
.xa4_c00345{left:222.756675px;}
.x94_c00345{left:224.113095px;}
.x48_c00345{left:226.114725px;}
.x6a_c00345{left:228.159435px;}
.x7_c00345{left:230.292000px;}
.x8a_c00345{left:231.939690px;}
.xc2_c00345{left:233.280000px;}
.x59_c00345{left:235.309905px;}
.x3e_c00345{left:236.617500px;}
.x22_c00345{left:238.512000px;}
.xe_c00345{left:241.259272px;}
.x80_c00345{left:243.010830px;}
.xc3_c00345{left:248.130000px;}
.x6b_c00345{left:250.300155px;}
.xb9_c00345{left:251.649450px;}
.xa9_c00345{left:252.725265px;}
.x2f_c00345{left:255.039000px;}
.x82_c00345{left:256.511370px;}
.x14_c00345{left:258.660000px;}
.xc0_c00345{left:259.740000px;}
.x23_c00345{left:262.780500px;}
.x50_c00345{left:264.171285px;}
.x63_c00345{left:270.390270px;}
.xc4_c00345{left:272.700000px;}
.x12_c00345{left:277.290000px;}
.xb0_c00345{left:278.919495px;}
.x9e_c00345{left:282.161340px;}
.x49_c00345{left:284.978310px;}
.x5a_c00345{left:286.348425px;}
.x51_c00345{left:288.743280px;}
.xf_c00345{left:290.003272px;}
.xb6_c00345{left:293.230515px;}
.x8b_c00345{left:294.312930px;}
.xc9_c00345{left:297.810000px;}
.x8_c00345{left:300.216000px;}
.x73_c00345{left:304.302450px;}
.x30_c00345{left:305.535000px;}
.x64_c00345{left:307.915020px;}
.x83_c00345{left:309.163635px;}
.x5b_c00345{left:310.639905px;}
.x52_c00345{left:312.521760px;}
.xb7_c00345{left:313.751070px;}
.x1a_c00345{left:317.392500px;}
.xa0_c00345{left:320.232345px;}
.xa5_c00345{left:321.580545px;}
.x24_c00345{left:324.913500px;}
.x53_c00345{left:326.820045px;}
.x7c_c00345{left:329.145300px;}
.x35_c00345{left:334.375568px;}
.x84_c00345{left:337.514970px;}
.x74_c00345{left:338.594385px;}
.x6c_c00345{left:342.104835px;}
.x25_c00345{left:344.631000px;}
.xba_c00345{left:346.964475px;}
.x95_c00345{left:351.019785px;}
.x8c_c00345{left:355.606065px;}
.xb1_c00345{left:357.762885px;}
.x4a_c00345{left:361.395075px;}
.xca_c00345{left:364.230000px;}
.x15_c00345{left:366.390000px;}
.x3f_c00345{left:368.964000px;}
.x75_c00345{left:372.076230px;}
.x5c_c00345{left:374.598180px;}
.x36_c00345{left:378.152046px;}
.x8e_c00345{left:379.639350px;}
.x6d_c00345{left:381.797310px;}
.x9_c00345{left:383.125500px;}
.xaa_c00345{left:384.492435px;}
.x1b_c00345{left:388.134000px;}
.x40_c00345{left:392.415000px;}
.x26_c00345{left:395.398500px;}
.x16_c00345{left:397.440000px;}
.x65_c00345{left:402.964425px;}
.x4b_c00345{left:404.058495px;}
.x54_c00345{left:406.201635px;}
.xc5_c00345{left:409.860000px;}
.x5d_c00345{left:411.605415px;}
.xa1_c00345{left:417.437565px;}
.x85_c00345{left:418.788600px;}
.x6e_c00345{left:423.109935px;}
.x27_c00345{left:425.386500px;}
.x17_c00345{left:429.570000px;}
.x31_c00345{left:431.362500px;}
.x41_c00345{left:432.913500px;}
.xcb_c00345{left:437.130000px;}
.x28_c00345{left:440.484000px;}
.x10_c00345{left:441.735772px;}
.xb2_c00345{left:443.626965px;}
.x5e_c00345{left:445.903605px;}
.x81_c00345{left:448.490895px;}
.xc6_c00345{left:449.550000px;}
.x8f_c00345{left:451.463535px;}
.x32_c00345{left:453.504000px;}
.x76_c00345{left:456.590175px;}
.x96_c00345{left:457.675950px;}
.x29_c00345{left:461.817000px;}
.xa_c00345{left:463.999500px;}
.x42_c00345{left:466.710000px;}
.x1_c00345{left:469.530000px;}
.x7d_c00345{left:470.631945px;}
.xbb_c00345{left:474.681240px;}
.x55_c00345{left:476.679045px;}
.x86_c00345{left:477.921510px;}
.x1c_c00345{left:479.658000px;}
.x66_c00345{left:486.130590px;}
.x6f_c00345{left:488.183445px;}
.x37_c00345{left:489.666267px;}
.x77_c00345{left:490.882110px;}
.x97_c00345{left:492.776460px;}
.xb3_c00345{left:496.009200px;}
.x9a_c00345{left:497.095680px;}
.x2a_c00345{left:499.857000px;}
.x1d_c00345{left:503.691000px;}
.x5f_c00345{left:508.774365px;}
.x18_c00345{left:510.840000px;}
.x4c_c00345{left:513.141090px;}
.x70_c00345{left:515.994720px;}
.xb_c00345{left:518.650500px;}
.x90_c00345{left:521.127495px;}
.x60_c00345{left:525.280695px;}
.x87_c00345{left:527.063430px;}
.xbc_c00345{left:528.953670px;}
.x38_c00345{left:530.712713px;}
.x7e_c00345{left:533.275215px;}
.x2_c00345{left:535.950000px;}
.x43_c00345{left:537.400500px;}
.xb4_c00345{left:539.212020px;}
.x9b_c00345{left:543.267300px;}
.xc7_c00345{left:547.290000px;}
.xa6_c00345{left:550.821450px;}
.x7f_c00345{left:552.985680px;}
.x78_c00345{left:554.335455px;}
.x8d_c00345{left:555.415545px;}
.x44_c00345{left:556.869000px;}
.xbd_c00345{left:559.195200px;}
.x91_c00345{left:561.630045px;}
.xb8_c00345{left:564.054105px;}
.x1e_c00345{left:565.515000px;}
.x2b_c00345{left:566.545500px;}
.x98_c00345{left:571.619850px;}
.x39_c00345{left:572.828675px;}
.x61_c00345{left:575.771700px;}
.xab_c00345{left:577.552740px;}
.xc_c00345{left:580.681500px;}
.x45_c00345{left:583.581000px;}
.x3_c00345{left:586.170000px;}
.x2c_c00345{left:587.370000px;}
.x3a_c00345{left:588.503840px;}
.x88_c00345{left:589.706685px;}
.x9c_c00345{left:590.789055px;}
.x71_c00345{left:592.677885px;}
.x4d_c00345{left:594.675900px;}
.x67_c00345{left:595.767780px;}
.x4_c00345{left:596.970000px;}
.x92_c00345{left:598.352220px;}
.x56_c00345{left:603.577080px;}
.x9d_c00345{left:609.419415px;}
.xc1_c00345{left:612.900000px;}
.x4e_c00345{left:617.056125px;}
.xac_c00345{left:618.325320px;}
.x79_c00345{left:619.678995px;}
.xcc_c00345{left:620.730000px;}
.x2d_c00345{left:621.931500px;}
.x1f_c00345{left:623.562000px;}
.x46_c00345{left:624.889500px;}
.x68_c00345{left:631.626000px;}
.xd_c00345{left:654.972000px;}
.xa2_c00345{left:660.178350px;}
.xad_c00345{left:663.148305px;}
.xae_c00345{left:670.439040px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
._0_c00345{width:22.019961pt;}
.fs11_c00345{font-size:23.333333pt;}
.fs0_c00345{font-size:28.000000pt;}
.fs5_c00345{font-size:38.266667pt;}
.fs13_c00345{font-size:42.000000pt;}
.fs12_c00345{font-size:45.733333pt;}
.fs14_c00345{font-size:47.600000pt;}
.fs3_c00345{font-size:47.606878pt;}
.fs2_c00345{font-size:54.141155pt;}
.fs6_c00345{font-size:56.933333pt;}
.fsf_c00345{font-size:58.802940pt;}
.fs10_c00345{font-size:59.736320pt;}
.fs16_c00345{font-size:59.738381pt;}
.fsc_c00345{font-size:60.669700pt;}
.fsd_c00345{font-size:61.603080pt;}
.fs8_c00345{font-size:61.603727pt;}
.fsb_c00345{font-size:62.536460pt;}
.fs7_c00345{font-size:63.468698pt;}
.fse_c00345{font-size:63.469840pt;}
.fsa_c00345{font-size:63.470506pt;}
.fs9_c00345{font-size:64.403896pt;}
.fs1_c00345{font-size:66.276242pt;}
.fs4_c00345{font-size:104.533333pt;}
.fs15_c00345{font-size:105.475578pt;}
.y0_c00345{bottom:0.000000pt;}
.y150_c00345{bottom:70.925145pt;}
.y14f_c00345{bottom:70.993920pt;}
.y14e_c00345{bottom:71.419625pt;}
.y14d_c00345{bottom:71.929209pt;}
.y14c_c00345{bottom:72.042603pt;}
.y14b_c00345{bottom:72.408516pt;}
.y14a_c00345{bottom:73.193197pt;}
.y149_c00345{bottom:73.305844pt;}
.y148_c00345{bottom:73.679907pt;}
.y147_c00345{bottom:80.502109pt;}
.y146_c00345{bottom:81.587817pt;}
.y145_c00345{bottom:82.810667pt;}
.y144_c00345{bottom:124.801333pt;}
.y143_c00345{bottom:141.202667pt;}
.y142_c00345{bottom:156.516000pt;}
.y141_c00345{bottom:195.120000pt;}
.y134_c00345{bottom:216.767427pt;}
.y135_c00345{bottom:216.767667pt;}
.y140_c00345{bottom:216.767773pt;}
.y136_c00345{bottom:216.767920pt;}
.y13f_c00345{bottom:216.768053pt;}
.y139_c00345{bottom:216.768387pt;}
.y138_c00345{bottom:216.768413pt;}
.y137_c00345{bottom:216.768440pt;}
.y13e_c00345{bottom:216.768600pt;}
.y13a_c00345{bottom:216.768653pt;}
.y13c_c00345{bottom:216.768893pt;}
.y13b_c00345{bottom:216.768907pt;}
.y13d_c00345{bottom:216.769147pt;}
.y131_c00345{bottom:237.177027pt;}
.y132_c00345{bottom:237.177280pt;}
.y130_c00345{bottom:237.177320pt;}
.y133_c00345{bottom:237.177533pt;}
.y12f_c00345{bottom:237.177867pt;}
.y12c_c00345{bottom:237.177920pt;}
.y12a_c00345{bottom:237.177947pt;}
.y129_c00345{bottom:237.177973pt;}
.y12d_c00345{bottom:237.178173pt;}
.y12b_c00345{bottom:237.178200pt;}
.y12e_c00345{bottom:237.178413pt;}
.y128_c00345{bottom:237.178533pt;}
.y125_c00345{bottom:257.492400pt;}
.y126_c00345{bottom:257.492653pt;}
.y124_c00345{bottom:257.492693pt;}
.y122_c00345{bottom:257.492760pt;}
.y11e_c00345{bottom:257.492827pt;}
.y127_c00345{bottom:257.492907pt;}
.y121_c00345{bottom:257.493040pt;}
.y123_c00345{bottom:257.493267pt;}
.y11f_c00345{bottom:257.493347pt;}
.y120_c00345{bottom:257.493600pt;}
.y118_c00345{bottom:277.678480pt;}
.y116_c00345{bottom:277.678533pt;}
.y115_c00345{bottom:277.678827pt;}
.y11d_c00345{bottom:277.678907pt;}
.y119_c00345{bottom:277.678973pt;}
.y117_c00345{bottom:277.679053pt;}
.y11c_c00345{bottom:277.679187pt;}
.y11b_c00345{bottom:277.679200pt;}
.y11a_c00345{bottom:277.679213pt;}
.y114_c00345{bottom:277.679373pt;}
.y113_c00345{bottom:297.823560pt;}
.y112_c00345{bottom:297.824093pt;}
.y10d_c00345{bottom:297.824227pt;}
.y10c_c00345{bottom:297.824253pt;}
.y109_c00345{bottom:297.824307pt;}
.y111_c00345{bottom:297.824373pt;}
.y10a_c00345{bottom:297.824547pt;}
.y110_c00345{bottom:297.824653pt;}
.y10e_c00345{bottom:297.824733pt;}
.y10b_c00345{bottom:297.824800pt;}
.y10f_c00345{bottom:297.824947pt;}
.yfd_c00345{bottom:318.900813pt;}
.yfe_c00345{bottom:318.901333pt;}
.yfc_c00345{bottom:318.901360pt;}
.yff_c00345{bottom:318.901853pt;}
.y100_c00345{bottom:318.902347pt;}
.y101_c00345{bottom:318.902573pt;}
.y102_c00345{bottom:318.903093pt;}
.y103_c00345{bottom:318.903613pt;}
.y105_c00345{bottom:318.903840pt;}
.y104_c00345{bottom:318.903853pt;}
.y106_c00345{bottom:318.904080pt;}
.y107_c00345{bottom:318.904600pt;}
.y108_c00345{bottom:318.905120pt;}
.yfb_c00345{bottom:339.531200pt;}
.yfa_c00345{bottom:339.531773pt;}
.yf0_c00345{bottom:339.531973pt;}
.yf2_c00345{bottom:339.532200pt;}
.yf9_c00345{bottom:339.532347pt;}
.yf7_c00345{bottom:339.532387pt;}
.yf6_c00345{bottom:339.532400pt;}
.yf4_c00345{bottom:339.532427pt;}
.yf3_c00345{bottom:339.532453pt;}
.yf1_c00345{bottom:339.532480pt;}
.yf8_c00345{bottom:339.532893pt;}
.yf5_c00345{bottom:339.532947pt;}
.yed_c00345{bottom:359.016427pt;}
.yec_c00345{bottom:359.016453pt;}
.yef_c00345{bottom:359.016667pt;}
.yee_c00345{bottom:359.016947pt;}
.yeb_c00345{bottom:359.017000pt;}
.yea_c00345{bottom:359.017560pt;}
.ye9_c00345{bottom:359.017840pt;}
.ye8_c00345{bottom:359.018120pt;}
.ye7_c00345{bottom:359.018667pt;}
.ye6_c00345{bottom:359.019213pt;}
.ye5_c00345{bottom:359.019760pt;}
.ye4_c00345{bottom:359.020040pt;}
.ye3_c00345{bottom:359.020333pt;}
.ydd_c00345{bottom:380.055667pt;}
.ye1_c00345{bottom:380.055853pt;}
.ydc_c00345{bottom:380.055960pt;}
.ydb_c00345{bottom:380.055987pt;}
.ye2_c00345{bottom:380.056107pt;}
.ye0_c00345{bottom:380.056147pt;}
.yde_c00345{bottom:380.056187pt;}
.yda_c00345{bottom:380.056267pt;}
.ydf_c00345{bottom:380.056440pt;}
.yd9_c00345{bottom:380.056827pt;}
.yd7_c00345{bottom:380.057120pt;}
.yd8_c00345{bottom:380.057373pt;}
.yd6_c00345{bottom:400.216827pt;}
.ycf_c00345{bottom:400.216973pt;}
.yd4_c00345{bottom:400.217147pt;}
.yd5_c00345{bottom:400.217400pt;}
.yd3_c00345{bottom:400.217427pt;}
.yd1_c00345{bottom:400.217467pt;}
.yd0_c00345{bottom:400.217480pt;}
.yce_c00345{bottom:400.217520pt;}
.ycc_c00345{bottom:400.217547pt;}
.yd2_c00345{bottom:400.217973pt;}
.ycd_c00345{bottom:400.218067pt;}
.yc8_c00345{bottom:420.378880pt;}
.yc7_c00345{bottom:420.378893pt;}
.yc4_c00345{bottom:420.378947pt;}
.ycb_c00345{bottom:420.379107pt;}
.yc5_c00345{bottom:420.379187pt;}
.yc3_c00345{bottom:420.379240pt;}
.yca_c00345{bottom:420.379387pt;}
.yc9_c00345{bottom:420.379400pt;}
.yc6_c00345{bottom:420.379440pt;}
.yc2_c00345{bottom:420.379520pt;}
.yc1_c00345{bottom:420.380067pt;}
.yc0_c00345{bottom:440.725627pt;}
.ybe_c00345{bottom:440.725947pt;}
.ybf_c00345{bottom:440.726187pt;}
.ybd_c00345{bottom:440.726227pt;}
.yba_c00345{bottom:440.726280pt;}
.ybc_c00345{bottom:440.726787pt;}
.ybb_c00345{bottom:440.726800pt;}
.yb9_c00345{bottom:440.726840pt;}
.yb8_c00345{bottom:440.727133pt;}
.yb7_c00345{bottom:440.727413pt;}
.yb6_c00345{bottom:440.727960pt;}
.yb3_c00345{bottom:460.930880pt;}
.yb0_c00345{bottom:460.931200pt;}
.yaa_c00345{bottom:460.931320pt;}
.yb4_c00345{bottom:460.931400pt;}
.yb2_c00345{bottom:460.931440pt;}
.yaf_c00345{bottom:460.931507pt;}
.yae_c00345{bottom:460.931520pt;}
.yad_c00345{bottom:460.931547pt;}
.yab_c00345{bottom:460.931573pt;}
.yb5_c00345{bottom:460.931653pt;}
.yb1_c00345{bottom:460.931720pt;}
.yac_c00345{bottom:460.931827pt;}
.ya6_c00345{bottom:481.526587pt;}
.ya5_c00345{bottom:481.526600pt;}
.ya4_c00345{bottom:481.526880pt;}
.ya8_c00345{bottom:481.527067pt;}
.ya7_c00345{bottom:481.527093pt;}
.ya3_c00345{bottom:481.527427pt;}
.ya2_c00345{bottom:481.527453pt;}
.ya9_c00345{bottom:481.527573pt;}
.y9f_c00345{bottom:481.527787pt;}
.ya1_c00345{bottom:481.528000pt;}
.ya0_c00345{bottom:481.528280pt;}
.y9c_c00345{bottom:501.898187pt;}
.y99_c00345{bottom:501.898253pt;}
.y9a_c00345{bottom:501.898507pt;}
.y98_c00345{bottom:501.898547pt;}
.y94_c00345{bottom:501.898613pt;}
.y9e_c00345{bottom:501.898680pt;}
.y9d_c00345{bottom:501.898707pt;}
.y9b_c00345{bottom:501.898747pt;}
.y97_c00345{bottom:501.899093pt;}
.y95_c00345{bottom:501.899133pt;}
.y96_c00345{bottom:501.899653pt;}
.y93_c00345{bottom:522.332187pt;}
.y8d_c00345{bottom:522.332573pt;}
.y92_c00345{bottom:522.332747pt;}
.y91_c00345{bottom:522.332773pt;}
.y8e_c00345{bottom:522.332827pt;}
.y8c_c00345{bottom:522.333120pt;}
.y90_c00345{bottom:522.333320pt;}
.y8f_c00345{bottom:522.333347pt;}
.y8b_c00345{bottom:522.333667pt;}
.y8a_c00345{bottom:522.333707pt;}
.y89_c00345{bottom:522.333987pt;}
.y83_c00345{bottom:542.725267pt;}
.y85_c00345{bottom:542.725493pt;}
.y84_c00345{bottom:542.725787pt;}
.y82_c00345{bottom:542.725813pt;}
.y81_c00345{bottom:542.725853pt;}
.y87_c00345{bottom:542.726000pt;}
.y86_c00345{bottom:542.726013pt;}
.y88_c00345{bottom:542.726240pt;}
.y80_c00345{bottom:542.726400pt;}
.y7f_c00345{bottom:542.726693pt;}
.y74_c00345{bottom:561.357360pt;}
.y75_c00345{bottom:561.956707pt;}
.y76_c00345{bottom:562.185027pt;}
.y77_c00345{bottom:562.451907pt;}
.y78_c00345{bottom:562.569027pt;}
.y79_c00345{bottom:563.127440pt;}
.y7a_c00345{bottom:563.561827pt;}
.y7b_c00345{bottom:563.718680pt;}
.y7c_c00345{bottom:564.279147pt;}
.y7d_c00345{bottom:564.498547pt;}
.y7e_c00345{bottom:564.753280pt;}
.y66_c00345{bottom:581.278173pt;}
.y67_c00345{bottom:581.597840pt;}
.y68_c00345{bottom:581.910573pt;}
.y69_c00345{bottom:581.970387pt;}
.y6a_c00345{bottom:582.129893pt;}
.y6b_c00345{bottom:582.492893pt;}
.y6c_c00345{bottom:582.666147pt;}
.y6d_c00345{bottom:583.121320pt;}
.y6e_c00345{bottom:583.384933pt;}
.y6f_c00345{bottom:583.628467pt;}
.y70_c00345{bottom:584.075307pt;}
.y71_c00345{bottom:584.192693pt;}
.y72_c00345{bottom:584.552160pt;}
.y73_c00345{bottom:584.897480pt;}
.y5b_c00345{bottom:601.679027pt;}
.y5c_c00345{bottom:602.058080pt;}
.y5d_c00345{bottom:602.214907pt;}
.y5e_c00345{bottom:602.799147pt;}
.y5f_c00345{bottom:602.973560pt;}
.y60_c00345{bottom:603.142253pt;}
.y61_c00345{bottom:603.244013pt;}
.y62_c00345{bottom:603.808280pt;}
.y63_c00345{bottom:604.309400pt;}
.y64_c00345{bottom:604.497947pt;}
.y65_c00345{bottom:605.212027pt;}
.y4d_c00345{bottom:621.840360pt;}
.y4e_c00345{bottom:622.109573pt;}
.y4f_c00345{bottom:622.210360pt;}
.y50_c00345{bottom:622.734893pt;}
.y51_c00345{bottom:623.206120pt;}
.y52_c00345{bottom:623.372267pt;}
.y53_c00345{bottom:623.817373pt;}
.y54_c00345{bottom:624.159267pt;}
.y55_c00345{bottom:624.457253pt;}
.y56_c00345{bottom:624.660053pt;}
.y57_c00345{bottom:625.031547pt;}
.y58_c00345{bottom:625.573160pt;}
.y59_c00345{bottom:625.684293pt;}
.y5a_c00345{bottom:625.863227pt;}
.y3f_c00345{bottom:642.001333pt;}
.y40_c00345{bottom:642.435667pt;}
.y41_c00345{bottom:642.906067pt;}
.y42_c00345{bottom:643.116947pt;}
.y43_c00345{bottom:643.827720pt;}
.y44_c00345{bottom:643.990547pt;}
.y45_c00345{bottom:644.293360pt;}
.y46_c00345{bottom:644.501813pt;}
.y47_c00345{bottom:644.861800pt;}
.y48_c00345{bottom:645.162213pt;}
.y49_c00345{bottom:645.790573pt;}
.y4a_c00345{bottom:645.963627pt;}
.y4b_c00345{bottom:646.201067pt;}
.y4c_c00345{bottom:646.568253pt;}
.y3e_c00345{bottom:652.080621pt;}
.y33_c00345{bottom:662.401835pt;}
.y34_c00345{bottom:663.038901pt;}
.y35_c00345{bottom:663.418673pt;}
.y36_c00345{bottom:663.598241pt;}
.y37_c00345{bottom:664.428619pt;}
.y38_c00345{bottom:664.817984pt;}
.y39_c00345{bottom:665.367907pt;}
.y3a_c00345{bottom:665.809667pt;}
.y3b_c00345{bottom:666.175005pt;}
.y3c_c00345{bottom:666.549468pt;}
.y3d_c00345{bottom:666.689401pt;}
.y2b_c00345{bottom:682.322667pt;}
.y2c_c00345{bottom:683.013760pt;}
.y2d_c00345{bottom:683.781985pt;}
.y2e_c00345{bottom:684.275724pt;}
.y2f_c00345{bottom:684.658553pt;}
.y30_c00345{bottom:685.165404pt;}
.y31_c00345{bottom:685.506037pt;}
.y32_c00345{bottom:685.722532pt;}
.y1c_c00345{bottom:703.921333pt;}
.y1d_c00345{bottom:704.299595pt;}
.y1e_c00345{bottom:704.706453pt;}
.y1f_c00345{bottom:704.862016pt;}
.y20_c00345{bottom:705.034592pt;}
.y21_c00345{bottom:705.476427pt;}
.y22_c00345{bottom:705.616640pt;}
.y23_c00345{bottom:705.977653pt;}
.y24_c00345{bottom:706.190901pt;}
.y25_c00345{bottom:706.298261pt;}
.y26_c00345{bottom:706.449963pt;}
.y27_c00345{bottom:706.720469pt;}
.y28_c00345{bottom:707.194699pt;}
.y29_c00345{bottom:707.342784pt;}
.y2a_c00345{bottom:707.588555pt;}
.y13_c00345{bottom:723.361333pt;}
.y14_c00345{bottom:723.776000pt;}
.y15_c00345{bottom:724.505333pt;}
.y16_c00345{bottom:725.186667pt;}
.y17_c00345{bottom:725.816000pt;}
.y18_c00345{bottom:726.629333pt;}
.y19_c00345{bottom:726.842667pt;}
.y1a_c00345{bottom:727.392000pt;}
.y1b_c00345{bottom:727.908000pt;}
.y12_c00345{bottom:735.074667pt;}
.y11_c00345{bottom:765.402667pt;}
.y10_c00345{bottom:786.961707pt;}
.yb_c00345{bottom:797.763323pt;}
.yc_c00345{bottom:798.453704pt;}
.yd_c00345{bottom:799.878803pt;}
.ye_c00345{bottom:800.615379pt;}
.yf_c00345{bottom:802.908225pt;}
.y2_c00345{bottom:812.164000pt;}
.y3_c00345{bottom:812.861861pt;}
.y4_c00345{bottom:814.110568pt;}
.y5_c00345{bottom:815.167197pt;}
.y6_c00345{bottom:816.420052pt;}
.y7_c00345{bottom:817.642148pt;}
.y8_c00345{bottom:818.467985pt;}
.y9_c00345{bottom:819.405343pt;}
.ya_c00345{bottom:820.527955pt;}
.y1_c00345{bottom:820.784000pt;}
.h13_c00345{height:23.333333pt;}
.h2_c00345{height:28.000000pt;}
.h7_c00345{height:38.266667pt;}
.h15_c00345{height:42.000000pt;}
.h14_c00345{height:45.733333pt;}
.h16_c00345{height:47.600000pt;}
.h5_c00345{height:47.606878pt;}
.h4_c00345{height:54.141155pt;}
.h8_c00345{height:56.933333pt;}
.h11_c00345{height:58.802940pt;}
.h12_c00345{height:59.736320pt;}
.h18_c00345{height:59.738381pt;}
.he_c00345{height:60.669700pt;}
.hf_c00345{height:61.603080pt;}
.ha_c00345{height:61.603727pt;}
.hd_c00345{height:62.536460pt;}
.h9_c00345{height:63.468698pt;}
.h10_c00345{height:63.469840pt;}
.hc_c00345{height:63.470506pt;}
.hb_c00345{height:64.403896pt;}
.h3_c00345{height:66.276242pt;}
.h6_c00345{height:104.533333pt;}
.h17_c00345{height:105.475578pt;}
.h0_c00345{height:896.400000pt;}
.h1_c00345{height:896.666667pt;}
.w0_c00345{width:618.666667pt;}
.x0_c00345{left:0.000000pt;}
.x5_c00345{left:90.200000pt;}
.x11_c00345{left:93.082481pt;}
.x20_c00345{left:94.425333pt;}
.x3b_c00345{left:96.243556pt;}
.x13_c00345{left:99.600000pt;}
.x47_c00345{left:101.669880pt;}
.x57_c00345{left:102.656893pt;}
.x6_c00345{left:131.250667pt;}
.x62_c00345{left:136.911507pt;}
.xa7_c00345{left:138.241373pt;}
.xa3_c00345{left:139.202720pt;}
.x19_c00345{left:140.993333pt;}
.x3c_c00345{left:142.198667pt;}
.x69_c00345{left:143.765147pt;}
.x7a_c00345{left:144.965507pt;}
.xbe_c00345{left:155.040000pt;}
.x2e_c00345{left:156.862667pt;}
.x33_c00345{left:158.277201pt;}
.x4f_c00345{left:161.860133pt;}
.xaf_c00345{left:162.963947pt;}
.xc8_c00345{left:168.000000pt;}
.xb5_c00345{left:169.685120pt;}
.x72_c00345{left:171.606507pt;}
.xbf_c00345{left:174.480000pt;}
.x89_c00345{left:177.127040pt;}
.x99_c00345{left:178.329800pt;}
.x7b_c00345{left:179.287600pt;}
.x93_c00345{left:180.731120pt;}
.x58_c00345{left:181.765147pt;}
.x9f_c00345{left:186.246467pt;}
.x3d_c00345{left:189.238667pt;}
.xa8_c00345{left:190.803960pt;}
.x21_c00345{left:192.565333pt;}
.x34_c00345{left:196.196279pt;}
.xa4_c00345{left:198.005933pt;}
.x94_c00345{left:199.211640pt;}
.x48_c00345{left:200.990867pt;}
.x6a_c00345{left:202.808387pt;}
.x7_c00345{left:204.704000pt;}
.x8a_c00345{left:206.168613pt;}
.xc2_c00345{left:207.360000pt;}
.x59_c00345{left:209.164360pt;}
.x3e_c00345{left:210.326667pt;}
.x22_c00345{left:212.010667pt;}
.xe_c00345{left:214.452687pt;}
.x80_c00345{left:216.009627pt;}
.xc3_c00345{left:220.560000pt;}
.x6b_c00345{left:222.489027pt;}
.xb9_c00345{left:223.688400pt;}
.xa9_c00345{left:224.644680pt;}
.x2f_c00345{left:226.701333pt;}
.x82_c00345{left:228.010107pt;}
.x14_c00345{left:229.920000pt;}
.xc0_c00345{left:230.880000pt;}
.x23_c00345{left:233.582667pt;}
.x50_c00345{left:234.818920pt;}
.x63_c00345{left:240.346907pt;}
.xc4_c00345{left:242.400000pt;}
.x12_c00345{left:246.480000pt;}
.xb0_c00345{left:247.928440pt;}
.x9e_c00345{left:250.810080pt;}
.x49_c00345{left:253.314053pt;}
.x5a_c00345{left:254.531933pt;}
.x51_c00345{left:256.660693pt;}
.xf_c00345{left:257.780687pt;}
.xb6_c00345{left:260.649347pt;}
.x8b_c00345{left:261.611493pt;}
.xc9_c00345{left:264.720000pt;}
.x8_c00345{left:266.858667pt;}
.x73_c00345{left:270.491067pt;}
.x30_c00345{left:271.586667pt;}
.x64_c00345{left:273.702240pt;}
.x83_c00345{left:274.812120pt;}
.x5b_c00345{left:276.124360pt;}
.x52_c00345{left:277.797120pt;}
.xb7_c00345{left:278.889840pt;}
.x1a_c00345{left:282.126667pt;}
.xa0_c00345{left:284.650973pt;}
.xa5_c00345{left:285.849373pt;}
.x24_c00345{left:288.812000pt;}
.x53_c00345{left:290.506707pt;}
.x7c_c00345{left:292.573600pt;}
.x35_c00345{left:297.222727pt;}
.x84_c00345{left:300.013307pt;}
.x74_c00345{left:300.972787pt;}
.x6c_c00345{left:304.093187pt;}
.x25_c00345{left:306.338667pt;}
.xba_c00345{left:308.412867pt;}
.x95_c00345{left:312.017587pt;}
.x8c_c00345{left:316.094280pt;}
.xb1_c00345{left:318.011453pt;}
.x4a_c00345{left:321.240067pt;}
.xca_c00345{left:323.760000pt;}
.x15_c00345{left:325.680000pt;}
.x3f_c00345{left:327.968000pt;}
.x75_c00345{left:330.734427pt;}
.x5c_c00345{left:332.976160pt;}
.x36_c00345{left:336.135152pt;}
.x8e_c00345{left:337.457200pt;}
.x6d_c00345{left:339.375387pt;}
.x9_c00345{left:340.556000pt;}
.xaa_c00345{left:341.771053pt;}
.x1b_c00345{left:345.008000pt;}
.x40_c00345{left:348.813333pt;}
.x26_c00345{left:351.465333pt;}
.x16_c00345{left:353.280000pt;}
.x65_c00345{left:358.190600pt;}
.x4b_c00345{left:359.163107pt;}
.x54_c00345{left:361.068120pt;}
.xc5_c00345{left:364.320000pt;}
.x5d_c00345{left:365.871480pt;}
.xa1_c00345{left:371.055613pt;}
.x85_c00345{left:372.256533pt;}
.x6e_c00345{left:376.097720pt;}
.x27_c00345{left:378.121333pt;}
.x17_c00345{left:381.840000pt;}
.x31_c00345{left:383.433333pt;}
.x41_c00345{left:384.812000pt;}
.xcb_c00345{left:388.560000pt;}
.x28_c00345{left:391.541333pt;}
.x10_c00345{left:392.654020pt;}
.xb2_c00345{left:394.335080pt;}
.x5e_c00345{left:396.358760pt;}
.x81_c00345{left:398.658573pt;}
.xc6_c00345{left:399.600000pt;}
.x8f_c00345{left:401.300920pt;}
.x32_c00345{left:403.114667pt;}
.x76_c00345{left:405.857933pt;}
.x96_c00345{left:406.823067pt;}
.x29_c00345{left:410.504000pt;}
.xa_c00345{left:412.444000pt;}
.x42_c00345{left:414.853333pt;}
.x1_c00345{left:417.360000pt;}
.x7d_c00345{left:418.339507pt;}
.xbb_c00345{left:421.938880pt;}
.x55_c00345{left:423.714707pt;}
.x86_c00345{left:424.819120pt;}
.x1c_c00345{left:426.362667pt;}
.x66_c00345{left:432.116080pt;}
.x6f_c00345{left:433.940840pt;}
.x37_c00345{left:435.258904pt;}
.x77_c00345{left:436.339653pt;}
.x97_c00345{left:438.023520pt;}
.xb3_c00345{left:440.897067pt;}
.x9a_c00345{left:441.862827pt;}
.x2a_c00345{left:444.317333pt;}
.x1d_c00345{left:447.725333pt;}
.x5f_c00345{left:452.243880pt;}
.x18_c00345{left:454.080000pt;}
.x4c_c00345{left:456.125413pt;}
.x70_c00345{left:458.661973pt;}
.xb_c00345{left:461.022667pt;}
.x90_c00345{left:463.224440pt;}
.x60_c00345{left:466.916173pt;}
.x87_c00345{left:468.500827pt;}
.xbc_c00345{left:470.181040pt;}
.x38_c00345{left:471.744633pt;}
.x7e_c00345{left:474.022413pt;}
.x2_c00345{left:476.400000pt;}
.x43_c00345{left:477.689333pt;}
.xb4_c00345{left:479.299573pt;}
.x9b_c00345{left:482.904267pt;}
.xc7_c00345{left:486.480000pt;}
.xa6_c00345{left:489.619067pt;}
.x7f_c00345{left:491.542827pt;}
.x78_c00345{left:492.742627pt;}
.x8d_c00345{left:493.702707pt;}
.x44_c00345{left:494.994667pt;}
.xbd_c00345{left:497.062400pt;}
.x91_c00345{left:499.226707pt;}
.xb8_c00345{left:501.381427pt;}
.x1e_c00345{left:502.680000pt;}
.x2b_c00345{left:503.596000pt;}
.x98_c00345{left:508.106533pt;}
.x39_c00345{left:509.181044pt;}
.x61_c00345{left:511.797067pt;}
.xab_c00345{left:513.380213pt;}
.xc_c00345{left:516.161333pt;}
.x45_c00345{left:518.738667pt;}
.x3_c00345{left:521.040000pt;}
.x2c_c00345{left:522.106667pt;}
.x3a_c00345{left:523.114524pt;}
.x88_c00345{left:524.183720pt;}
.x9c_c00345{left:525.145827pt;}
.x71_c00345{left:526.824787pt;}
.x4d_c00345{left:528.600800pt;}
.x67_c00345{left:529.571360pt;}
.x4_c00345{left:530.640000pt;}
.x92_c00345{left:531.868640pt;}
.x56_c00345{left:536.512960pt;}
.x9d_c00345{left:541.706147pt;}
.xc1_c00345{left:544.800000pt;}
.x4e_c00345{left:548.494333pt;}
.xac_c00345{left:549.622507pt;}
.x79_c00345{left:550.825773pt;}
.xcc_c00345{left:551.760000pt;}
.x2d_c00345{left:552.828000pt;}
.x1f_c00345{left:554.277333pt;}
.x46_c00345{left:555.457333pt;}
.x68_c00345{left:561.445333pt;}
.xd_c00345{left:582.197333pt;}
.xa2_c00345{left:586.825200pt;}
.xad_c00345{left:589.465160pt;}
.xae_c00345{left:595.945813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m10_c00346{transform:matrix(0.007724,-0.000116,0.003750,0.249972,0,0);-ms-transform:matrix(0.007724,-0.000116,0.003750,0.249972,0,0);-webkit-transform:matrix(0.007724,-0.000116,0.003750,0.249972,0,0);}
.m28_c00346{transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);-ms-transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.010539,-0.000116,0.002750,0.249985,0,0);}
.m9_c00346{transform:matrix(0.011034,-0.000166,0.003750,0.249972,0,0);-ms-transform:matrix(0.011034,-0.000166,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011034,-0.000166,0.003750,0.249972,0,0);}
.m10e_c00346{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.015809,-0.000174,0.002750,0.249985,0,0);-ms-transform:matrix(0.015809,-0.000174,0.002750,0.249985,0,0);-webkit-transform:matrix(0.015809,-0.000174,0.002750,0.249985,0,0);}
.m14_c00346{transform:matrix(0.028062,-0.000421,0.003750,0.249972,0,0);-ms-transform:matrix(0.028062,-0.000421,0.003750,0.249972,0,0);-webkit-transform:matrix(0.028062,-0.000421,0.003750,0.249972,0,0);}
.me_c00346{transform:matrix(0.048420,-0.000726,0.003750,0.249972,0,0);-ms-transform:matrix(0.048420,-0.000726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.048420,-0.000726,0.003750,0.249972,0,0);}
.m10d_c00346{transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);}
.m116_c00346{transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.070561,-0.000776,0.002750,0.249985,0,0);-ms-transform:matrix(0.070561,-0.000776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.070561,-0.000776,0.002750,0.249985,0,0);}
.m3_c00346{transform:matrix(0.076031,-0.001140,0.003750,0.249972,0,0);-ms-transform:matrix(0.076031,-0.001140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.076031,-0.001140,0.003750,0.249972,0,0);}
.m13d_c00346{transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090205,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.092039,-0.001012,0.002750,0.249985,0,0);-ms-transform:matrix(0.092039,-0.001012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.092039,-0.001012,0.002750,0.249985,0,0);}
.ma2_c00346{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.105220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105220,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.117818,-0.001296,0.002750,0.249985,0,0);-ms-transform:matrix(0.117818,-0.001296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.117818,-0.001296,0.002750,0.249985,0,0);}
.m84_c00346{transform:matrix(0.140611,-0.001547,0.002750,0.249985,0,0);-ms-transform:matrix(0.140611,-0.001547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140611,-0.001547,0.002750,0.249985,0,0);}
.m91_c00346{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);}
.m112_c00346{transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);}
.m118_c00346{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m141_c00346{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);}
.m2f_c00346{transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);-ms-transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143671,-0.001580,0.002750,0.249985,0,0);}
.mc0_c00346{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.me0_c00346{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);}
.mec_c00346{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.145776,-0.001604,0.002750,0.249985,0,0);-ms-transform:matrix(0.145776,-0.001604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145776,-0.001604,0.002750,0.249985,0,0);}
.m114_c00346{transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);}
.mef_c00346{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.149101,-0.001640,0.002750,0.249985,0,0);-ms-transform:matrix(0.149101,-0.001640,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149101,-0.001640,0.002750,0.249985,0,0);}
.m121_c00346{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);}
.m77_c00346{transform:matrix(0.149291,-0.001642,0.002750,0.249985,0,0);-ms-transform:matrix(0.149291,-0.001642,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149291,-0.001642,0.002750,0.249985,0,0);}
.me2_c00346{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);}
.mc6_c00346{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.150001,-0.001650,0.002750,0.249985,0,0);-ms-transform:matrix(0.150001,-0.001650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150001,-0.001650,0.002750,0.249985,0,0);}
.m130_c00346{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);}
.m4f_c00346{transform:matrix(0.150471,-0.001655,0.002750,0.249985,0,0);-ms-transform:matrix(0.150471,-0.001655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150471,-0.001655,0.002750,0.249985,0,0);}
.m61_c00346{transform:matrix(0.150766,-0.001658,0.002750,0.249985,0,0);-ms-transform:matrix(0.150766,-0.001658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150766,-0.001658,0.002750,0.249985,0,0);}
.mb8_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);}
.m15_c00346{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);}
.mfa_c00346{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);}
.m94_c00346{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);}
.mf6_c00346{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);}
.m18_c00346{transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);-ms-transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);}
.me6_c00346{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);}
.m20_c00346{transform:matrix(0.156421,-0.001721,0.002750,0.249985,0,0);-ms-transform:matrix(0.156421,-0.001721,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156421,-0.001721,0.002750,0.249985,0,0);}
.m2b_c00346{transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);}
.m1e_c00346{transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-ms-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);}
.m137_c00346{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);}
.m1d_c00346{transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);-ms-transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158450,-0.001743,0.002750,0.249985,0,0);}
.m96_c00346{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);}
.m0_c00346{transform:matrix(0.159132,-0.002387,0.003750,0.249972,0,0);-ms-transform:matrix(0.159132,-0.002387,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159132,-0.002387,0.003750,0.249972,0,0);}
.m32_c00346{transform:matrix(0.159205,-0.001751,0.002750,0.249985,0,0);-ms-transform:matrix(0.159205,-0.001751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159205,-0.001751,0.002750,0.249985,0,0);}
.m75_c00346{transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);-ms-transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159925,-0.001759,0.002750,0.249985,0,0);}
.m3a_c00346{transform:matrix(0.160040,-0.001760,0.002750,0.249985,0,0);-ms-transform:matrix(0.160040,-0.001760,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160040,-0.001760,0.002750,0.249985,0,0);}
.mfe_c00346{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);}
.m12d_c00346{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);}
.m119_c00346{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);}
.m21_c00346{transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);-ms-transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162965,-0.001793,0.002750,0.249985,0,0);}
.m9f_c00346{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);}
.mbf_c00346{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{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);}
.mb0_c00346{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);}
.m33_c00346{transform:matrix(0.164005,-0.001804,0.002750,0.249985,0,0);-ms-transform:matrix(0.164005,-0.001804,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164005,-0.001804,0.002750,0.249985,0,0);}
.mb9_c00346{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);}
.mb2_c00346{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);}
.m150_c00346{transform:matrix(0.165091,-0.001156,0.001750,0.249994,0,0);-ms-transform:matrix(0.165091,-0.001156,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165091,-0.001156,0.001750,0.249994,0,0);}
.m50_c00346{transform:matrix(0.165450,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165450,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165450,-0.001820,0.002750,0.249985,0,0);}
.m42_c00346{transform:matrix(0.165655,-0.001822,0.002750,0.249985,0,0);-ms-transform:matrix(0.165655,-0.001822,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165655,-0.001822,0.002750,0.249985,0,0);}
.m110_c00346{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);}
.md6_c00346{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m136_c00346{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);}
.mf3_c00346{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);}
.m48_c00346{transform:matrix(0.166415,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166415,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166415,-0.001831,0.002750,0.249985,0,0);}
.mc2_c00346{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);}
.mf8_c00346{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);}
.mcb_c00346{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);}
.m167_c00346{transform:matrix(0.166880,-0.001335,0.002000,0.249992,0,0);-ms-transform:matrix(0.166880,-0.001335,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166880,-0.001335,0.002000,0.249992,0,0);}
.m93_c00346{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);}
.m22_c00346{transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);-ms-transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167945,-0.001847,0.002750,0.249985,0,0);}
.mac_c00346{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);}
.m11c_c00346{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);}
.me9_c00346{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);}
.m39_c00346{transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-ms-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);}
.mc3_c00346{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);}
.maa_c00346{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);}
.m165_c00346{transform:matrix(0.169755,-0.001358,0.002000,0.249992,0,0);-ms-transform:matrix(0.169755,-0.001358,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169755,-0.001358,0.002000,0.249992,0,0);}
.m162_c00346{transform:matrix(0.169855,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169855,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169855,-0.001359,0.002000,0.249992,0,0);}
.m31_c00346{transform:matrix(0.170115,-0.001871,0.002750,0.249985,0,0);-ms-transform:matrix(0.170115,-0.001871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170115,-0.001871,0.002750,0.249985,0,0);}
.m17_c00346{transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);-ms-transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170330,-0.001874,0.002750,0.249985,0,0);}
.m12e_c00346{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);}
.md8_c00346{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);}
.mc4_c00346{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);}
.m10c_c00346{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);}
.m13a_c00346{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);}
.m4e_c00346{transform:matrix(0.171940,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171940,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171940,-0.001891,0.002750,0.249985,0,0);}
.mee_c00346{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);}
.ma7_c00346{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);}
.mfb_c00346{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);}
.ma5_c00346{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);}
.m5a_c00346{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);}
.me7_c00346{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);}
.mb6_c00346{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);}
.mdb_c00346{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);}
.m55_c00346{transform:matrix(0.173929,-0.001913,0.002750,0.249985,0,0);-ms-transform:matrix(0.173929,-0.001913,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173929,-0.001913,0.002750,0.249985,0,0);}
.m59_c00346{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);}
.m68_c00346{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);}
.m19_c00346{transform:matrix(0.175444,-0.001930,0.002750,0.249985,0,0);-ms-transform:matrix(0.175444,-0.001930,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175444,-0.001930,0.002750,0.249985,0,0);}
.m12b_c00346{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);}
.m129_c00346{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);}
.m102_c00346{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);}
.mbc_c00346{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);}
.m6f_c00346{transform:matrix(0.177599,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177599,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177599,-0.001954,0.002750,0.249985,0,0);}
.mbb_c00346{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);}
.md9_c00346{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);}
.m126_c00346{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);}
.mc7_c00346{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);}
.mea_c00346{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);}
.m2c_c00346{transform:matrix(0.179029,-0.001969,0.002750,0.249985,0,0);-ms-transform:matrix(0.179029,-0.001969,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179029,-0.001969,0.002750,0.249985,0,0);}
.m35_c00346{transform:matrix(0.179199,-0.001971,0.002750,0.249985,0,0);-ms-transform:matrix(0.179199,-0.001971,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179199,-0.001971,0.002750,0.249985,0,0);}
.m80_c00346{transform:matrix(0.179219,-0.001971,0.002750,0.249985,0,0);-ms-transform:matrix(0.179219,-0.001971,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179219,-0.001971,0.002750,0.249985,0,0);}
.m15b_c00346{transform:matrix(0.179314,-0.001435,0.002000,0.249992,0,0);-ms-transform:matrix(0.179314,-0.001435,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179314,-0.001435,0.002000,0.249992,0,0);}
.mf0_c00346{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);}
.m160_c00346{transform:matrix(0.179479,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179479,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179479,-0.001436,0.002000,0.249992,0,0);}
.md_c00346{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);}
.mbd_c00346{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);}
.m2d_c00346{transform:matrix(0.179839,-0.001978,0.002750,0.249985,0,0);-ms-transform:matrix(0.179839,-0.001978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179839,-0.001978,0.002750,0.249985,0,0);}
.m1a_c00346{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);}
.m14e_c00346{transform:matrix(0.180076,-0.001261,0.001750,0.249994,0,0);-ms-transform:matrix(0.180076,-0.001261,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180076,-0.001261,0.001750,0.249994,0,0);}
.m111_c00346{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);}
.m138_c00346{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);}
.m60_c00346{transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);-ms-transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180569,-0.001986,0.002750,0.249985,0,0);}
.m128_c00346{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.mf4_c00346{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m139_c00346{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);}
.m52_c00346{transform:matrix(0.182559,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182559,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182559,-0.002008,0.002750,0.249985,0,0);}
.m132_c00346{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);}
.me8_c00346{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);}
.mb7_c00346{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);}
.m25_c00346{transform:matrix(0.183779,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183779,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183779,-0.002022,0.002750,0.249985,0,0);}
.m43_c00346{transform:matrix(0.183839,-0.002022,0.002750,0.249985,0,0);-ms-transform:matrix(0.183839,-0.002022,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183839,-0.002022,0.002750,0.249985,0,0);}
.m54_c00346{transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183894,-0.002023,0.002750,0.249985,0,0);}
.m146_c00346{transform:matrix(0.184055,-0.001288,0.001750,0.249994,0,0);-ms-transform:matrix(0.184055,-0.001288,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184055,-0.001288,0.001750,0.249994,0,0);}
.m56_c00346{transform:matrix(0.184239,-0.002027,0.002750,0.249985,0,0);-ms-transform:matrix(0.184239,-0.002027,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184239,-0.002027,0.002750,0.249985,0,0);}
.mdd_c00346{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);}
.me5_c00346{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);}
.mad_c00346{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);}
.m11b_c00346{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);}
.mf5_c00346{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);}
.m120_c00346{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);}
.m107_c00346{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);}
.m40_c00346{transform:matrix(0.186224,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186224,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186224,-0.002048,0.002750,0.249985,0,0);}
.m66_c00346{transform:matrix(0.186434,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186434,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186434,-0.002051,0.002750,0.249985,0,0);}
.m24_c00346{transform:matrix(0.186484,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186484,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186484,-0.002051,0.002750,0.249985,0,0);}
.ma8_c00346{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);}
.m6a_c00346{transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);}
.med_c00346{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);}
.m3c_c00346{transform:matrix(0.187244,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187244,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187244,-0.002060,0.002750,0.249985,0,0);}
.mf9_c00346{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);}
.m30_c00346{transform:matrix(0.187419,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187419,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187419,-0.002062,0.002750,0.249985,0,0);}
.m131_c00346{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);}
.m34_c00346{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);}
.mc1_c00346{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);}
.ma6_c00346{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);}
.m103_c00346{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);}
.m87_c00346{transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-ms-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);}
.m9c_c00346{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);}
.mae_c00346{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);}
.m38_c00346{transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);-ms-transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189024,-0.002079,0.002750,0.249985,0,0);}
.m14f_c00346{transform:matrix(0.189125,-0.001324,0.001750,0.249994,0,0);-ms-transform:matrix(0.189125,-0.001324,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189125,-0.001324,0.001750,0.249994,0,0);}
.m142_c00346{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);}
.m5b_c00346{transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);-ms-transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189489,-0.002084,0.002750,0.249985,0,0);}
.m7e_c00346{transform:matrix(0.189564,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189564,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189564,-0.002085,0.002750,0.249985,0,0);}
.m1c_c00346{transform:matrix(0.189729,-0.002087,0.002750,0.249985,0,0);-ms-transform:matrix(0.189729,-0.002087,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189729,-0.002087,0.002750,0.249985,0,0);}
.m100_c00346{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);}
.m95_c00346{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);}
.m161_c00346{transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190214,-0.001522,0.002000,0.249992,0,0);}
.m6b_c00346{transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190518,-0.002096,0.002750,0.249985,0,0);}
.mdf_c00346{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);}
.m140_c00346{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);}
.m70_c00346{transform:matrix(0.190873,-0.002100,0.002750,0.249985,0,0);-ms-transform:matrix(0.190873,-0.002100,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190873,-0.002100,0.002750,0.249985,0,0);}
.m135_c00346{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);}
.m9e_c00346{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);}
.m63_c00346{transform:matrix(0.191278,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191278,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191278,-0.002104,0.002750,0.249985,0,0);}
.m14d_c00346{transform:matrix(0.191370,-0.001340,0.001750,0.249994,0,0);-ms-transform:matrix(0.191370,-0.001340,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191370,-0.001340,0.001750,0.249994,0,0);}
.md5_c00346{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);}
.m37_c00346{transform:matrix(0.191903,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191903,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191903,-0.002111,0.002750,0.249985,0,0);}
.m3f_c00346{transform:matrix(0.192178,-0.002114,0.002750,0.249985,0,0);-ms-transform:matrix(0.192178,-0.002114,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192178,-0.002114,0.002750,0.249985,0,0);}
.m169_c00346{transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192269,-0.001538,0.002000,0.249992,0,0);}
.m108_c00346{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);}
.m9a_c00346{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);}
.m106_c00346{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);}
.m14c_c00346{transform:matrix(0.193690,-0.001356,0.001750,0.249994,0,0);-ms-transform:matrix(0.193690,-0.001356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193690,-0.001356,0.001750,0.249994,0,0);}
.m12f_c00346{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);}
.m81_c00346{transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);-ms-transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193773,-0.002132,0.002750,0.249985,0,0);}
.m65_c00346{transform:matrix(0.194183,-0.002136,0.002750,0.249985,0,0);-ms-transform:matrix(0.194183,-0.002136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194183,-0.002136,0.002750,0.249985,0,0);}
.mba_c00346{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);}
.m144_c00346{transform:matrix(0.194560,-0.001362,0.001750,0.249994,0,0);-ms-transform:matrix(0.194560,-0.001362,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194560,-0.001362,0.001750,0.249994,0,0);}
.m164_c00346{transform:matrix(0.194729,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194729,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194729,-0.001558,0.002000,0.249992,0,0);}
.me4_c00346{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);}
.m15c_c00346{transform:matrix(0.194999,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.194999,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194999,-0.001560,0.002000,0.249992,0,0);}
.mfd_c00346{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);}
.m6d_c00346{transform:matrix(0.195173,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195173,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195173,-0.002147,0.002750,0.249985,0,0);}
.m72_c00346{transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);}
.ma1_c00346{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);}
.m158_c00346{transform:matrix(0.195379,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195379,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195379,-0.001563,0.002000,0.249992,0,0);}
.m147_c00346{transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);-ms-transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195560,-0.001369,0.001750,0.249994,0,0);}
.maf_c00346{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);}
.m13c_c00346{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);}
.mf2_c00346{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);}
.m44_c00346{transform:matrix(0.196968,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.196968,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196968,-0.002167,0.002750,0.249985,0,0);}
.m86_c00346{transform:matrix(0.197158,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197158,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197158,-0.002169,0.002750,0.249985,0,0);}
.md7_c00346{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);}
.m8e_c00346{transform:matrix(0.198028,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.198028,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198028,-0.002178,0.002750,0.249985,0,0);}
.ma_c00346{transform:matrix(0.198078,-0.002971,0.003750,0.249972,0,0);-ms-transform:matrix(0.198078,-0.002971,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198078,-0.002971,0.003750,0.249972,0,0);}
.mb4_c00346{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);}
.m145_c00346{transform:matrix(0.198995,-0.001393,0.001750,0.249994,0,0);-ms-transform:matrix(0.198995,-0.001393,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198995,-0.001393,0.001750,0.249994,0,0);}
.m117_c00346{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_c00346{transform:matrix(0.199983,-0.002200,0.002750,0.249985,0,0);-ms-transform:matrix(0.199983,-0.002200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199983,-0.002200,0.002750,0.249985,0,0);}
.m16d_c00346{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);}
.m64_c00346{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);}
.mc5_c00346{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);}
.m69_c00346{transform:matrix(0.201248,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201248,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201248,-0.002214,0.002750,0.249985,0,0);}
.m2a_c00346{transform:matrix(0.201343,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201343,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201343,-0.002215,0.002750,0.249985,0,0);}
.ma9_c00346{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);}
.m104_c00346{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);}
.m124_c00346{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);}
.m12a_c00346{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);}
.mf1_c00346{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);}
.m4b_c00346{transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202583,-0.002228,0.002750,0.249985,0,0);}
.ma0_c00346{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);}
.m151_c00346{transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);-ms-transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202930,-0.001421,0.001750,0.249994,0,0);}
.m10b_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);}
.m4c_c00346{transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203323,-0.002237,0.002750,0.249985,0,0);}
.mbe_c00346{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);}
.m74_c00346{transform:matrix(0.203513,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203513,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203513,-0.002239,0.002750,0.249985,0,0);}
.m51_c00346{transform:matrix(0.203533,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203533,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203533,-0.002239,0.002750,0.249985,0,0);}
.md4_c00346{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);}
.m149_c00346{transform:matrix(0.204170,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204170,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204170,-0.001429,0.001750,0.249994,0,0);}
.m133_c00346{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);}
.m6e_c00346{transform:matrix(0.204383,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204383,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204383,-0.002248,0.002750,0.249985,0,0);}
.m113_c00346{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);}
.meb_c00346{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);}
.mb5_c00346{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);}
.m53_c00346{transform:matrix(0.205708,-0.002263,0.002750,0.249985,0,0);-ms-transform:matrix(0.205708,-0.002263,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205708,-0.002263,0.002750,0.249985,0,0);}
.mff_c00346{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);}
.mb3_c00346{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);}
.m166_c00346{transform:matrix(0.205893,-0.001647,0.002000,0.249992,0,0);-ms-transform:matrix(0.205893,-0.001647,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205893,-0.001647,0.002000,0.249992,0,0);}
.m14b_c00346{transform:matrix(0.205985,-0.001442,0.001750,0.249994,0,0);-ms-transform:matrix(0.205985,-0.001442,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205985,-0.001442,0.001750,0.249994,0,0);}
.m13b_c00346{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);}
.mce_c00346{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);}
.m11e_c00346{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);}
.m11f_c00346{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);}
.m134_c00346{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);}
.m154_c00346{transform:matrix(0.207323,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207323,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207323,-0.001659,0.002000,0.249992,0,0);}
.m71_c00346{transform:matrix(0.208322,-0.002292,0.002750,0.249985,0,0);-ms-transform:matrix(0.208322,-0.002292,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208322,-0.002292,0.002750,0.249985,0,0);}
.ma3_c00346{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);}
.mab_c00346{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);}
.m11d_c00346{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);}
.m3d_c00346{transform:matrix(0.209577,-0.002305,0.002750,0.249985,0,0);-ms-transform:matrix(0.209577,-0.002305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209577,-0.002305,0.002750,0.249985,0,0);}
.m3b_c00346{transform:matrix(0.209592,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209592,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209592,-0.002306,0.002750,0.249985,0,0);}
.m7b_c00346{transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210522,-0.002316,0.002750,0.249985,0,0);}
.m76_c00346{transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);}
.md0_c00346{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);}
.m46_c00346{transform:matrix(0.211132,-0.002322,0.002750,0.249985,0,0);-ms-transform:matrix(0.211132,-0.002322,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211132,-0.002322,0.002750,0.249985,0,0);}
.m152_c00346{transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);-ms-transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);}
.m62_c00346{transform:matrix(0.211462,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211462,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211462,-0.002326,0.002750,0.249985,0,0);}
.m155_c00346{transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);-ms-transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211848,-0.001695,0.002000,0.249992,0,0);}
.m5e_c00346{transform:matrix(0.211872,-0.002331,0.002750,0.249985,0,0);-ms-transform:matrix(0.211872,-0.002331,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211872,-0.002331,0.002750,0.249985,0,0);}
.m89_c00346{transform:matrix(0.212222,-0.002334,0.002750,0.249985,0,0);-ms-transform:matrix(0.212222,-0.002334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212222,-0.002334,0.002750,0.249985,0,0);}
.m105_c00346{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);}
.m109_c00346{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);}
.m10f_c00346{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);}
.m2e_c00346{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);}
.m57_c00346{transform:matrix(0.214682,-0.002362,0.002750,0.249985,0,0);-ms-transform:matrix(0.214682,-0.002362,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214682,-0.002362,0.002750,0.249985,0,0);}
.mf7_c00346{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);}
.m49_c00346{transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);}
.m92_c00346{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);}
.m83_c00346{transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);-ms-transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216527,-0.002382,0.002750,0.249985,0,0);}
.me1_c00346{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);}
.m127_c00346{transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);}
.m16b_c00346{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);}
.m16f_c00346{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);}
.m97_c00346{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);}
.m148_c00346{transform:matrix(0.218565,-0.001530,0.001750,0.249994,0,0);-ms-transform:matrix(0.218565,-0.001530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218565,-0.001530,0.001750,0.249994,0,0);}
.me3_c00346{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);}
.mcc_c00346{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);}
.mc8_c00346{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);}
.mf_c00346{transform:matrix(0.220855,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220855,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220855,-0.003313,0.003750,0.249972,0,0);}
.m153_c00346{transform:matrix(0.220873,-0.001767,0.002000,0.249992,0,0);-ms-transform:matrix(0.220873,-0.001767,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220873,-0.001767,0.002000,0.249992,0,0);}
.m15a_c00346{transform:matrix(0.221303,-0.001770,0.002000,0.249992,0,0);-ms-transform:matrix(0.221303,-0.001770,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221303,-0.001770,0.002000,0.249992,0,0);}
.m7c_c00346{transform:matrix(0.221777,-0.002440,0.002750,0.249985,0,0);-ms-transform:matrix(0.221777,-0.002440,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221777,-0.002440,0.002750,0.249985,0,0);}
.mda_c00346{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);}
.mb1_c00346{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);}
.m5f_c00346{transform:matrix(0.222472,-0.002447,0.002750,0.249985,0,0);-ms-transform:matrix(0.222472,-0.002447,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222472,-0.002447,0.002750,0.249985,0,0);}
.m13f_c00346{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m16c_c00346{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);}
.m12_c00346{transform:matrix(0.224700,-0.003370,0.003750,0.249972,0,0);-ms-transform:matrix(0.224700,-0.003370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224700,-0.003370,0.003750,0.249972,0,0);}
.mde_c00346{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);}
.mcd_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);}
.m122_c00346{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);}
.m9b_c00346{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);}
.m157_c00346{transform:matrix(0.230038,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.230038,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230038,-0.001840,0.002000,0.249992,0,0);}
.m115_c00346{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);}
.m13e_c00346{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);}
.m16a_c00346{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);}
.m15e_c00346{transform:matrix(0.233943,-0.001872,0.002000,0.249992,0,0);-ms-transform:matrix(0.233943,-0.001872,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233943,-0.001872,0.002000,0.249992,0,0);}
.m8b_c00346{transform:matrix(0.235226,-0.002587,0.002750,0.249985,0,0);-ms-transform:matrix(0.235226,-0.002587,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235226,-0.002587,0.002750,0.249985,0,0);}
.md1_c00346{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);}
.m73_c00346{transform:matrix(0.236161,-0.002598,0.002750,0.249985,0,0);-ms-transform:matrix(0.236161,-0.002598,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236161,-0.002598,0.002750,0.249985,0,0);}
.m123_c00346{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);}
.m67_c00346{transform:matrix(0.239051,-0.002630,0.002750,0.249985,0,0);-ms-transform:matrix(0.239051,-0.002630,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239051,-0.002630,0.002750,0.249985,0,0);}
.m125_c00346{transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.239925,-0.002639,0.002750,0.249985,0,0);-ms-transform:matrix(0.239925,-0.002639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239925,-0.002639,0.002750,0.249985,0,0);}
.m12c_c00346{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);}
.m156_c00346{transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);-ms-transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);}
.m101_c00346{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);}
.m8c_c00346{transform:matrix(0.241185,-0.002653,0.002750,0.249985,0,0);-ms-transform:matrix(0.241185,-0.002653,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241185,-0.002653,0.002750,0.249985,0,0);}
.m168_c00346{transform:matrix(0.241242,-0.001930,0.002000,0.249992,0,0);-ms-transform:matrix(0.241242,-0.001930,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241242,-0.001930,0.002000,0.249992,0,0);}
.ma4_c00346{transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);}
.mc9_c00346{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);}
.m4d_c00346{transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);-ms-transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);}
.m85_c00346{transform:matrix(0.243425,-0.002678,0.002750,0.249985,0,0);-ms-transform:matrix(0.243425,-0.002678,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243425,-0.002678,0.002750,0.249985,0,0);}
.m9d_c00346{transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.245672,-0.003685,0.003750,0.249972,0,0);-ms-transform:matrix(0.245672,-0.003685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245672,-0.003685,0.003750,0.249972,0,0);}
.m10a_c00346{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.250120,-0.002751,0.002750,0.249985,0,0);-ms-transform:matrix(0.250120,-0.002751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250120,-0.002751,0.002750,0.249985,0,0);}
.mdc_c00346{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.mfc_c00346{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);}
.m88_c00346{transform:matrix(0.253180,-0.002785,0.002750,0.249985,0,0);-ms-transform:matrix(0.253180,-0.002785,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253180,-0.002785,0.002750,0.249985,0,0);}
.m163_c00346{transform:matrix(0.254552,-0.002036,0.002000,0.249992,0,0);-ms-transform:matrix(0.254552,-0.002036,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254552,-0.002036,0.002000,0.249992,0,0);}
.m5d_c00346{transform:matrix(0.256130,-0.002817,0.002750,0.249985,0,0);-ms-transform:matrix(0.256130,-0.002817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256130,-0.002817,0.002750,0.249985,0,0);}
.mc_c00346{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);}
.m1b_c00346{transform:matrix(0.262474,-0.002887,0.002750,0.249985,0,0);-ms-transform:matrix(0.262474,-0.002887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262474,-0.002887,0.002750,0.249985,0,0);}
.m79_c00346{transform:matrix(0.263419,-0.002898,0.002750,0.249985,0,0);-ms-transform:matrix(0.263419,-0.002898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263419,-0.002898,0.002750,0.249985,0,0);}
.m15f_c00346{transform:matrix(0.267806,-0.002142,0.002000,0.249992,0,0);-ms-transform:matrix(0.267806,-0.002142,0.002000,0.249992,0,0);-webkit-transform:matrix(0.267806,-0.002142,0.002000,0.249992,0,0);}
.m47_c00346{transform:matrix(0.270344,-0.002974,0.002750,0.249985,0,0);-ms-transform:matrix(0.270344,-0.002974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270344,-0.002974,0.002750,0.249985,0,0);}
.md3_c00346{transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274835,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.275373,-0.003029,0.002750,0.249985,0,0);-ms-transform:matrix(0.275373,-0.003029,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275373,-0.003029,0.002750,0.249985,0,0);}
.mb_c00346{transform:matrix(0.275479,-0.004132,0.003750,0.249972,0,0);-ms-transform:matrix(0.275479,-0.004132,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275479,-0.004132,0.003750,0.249972,0,0);}
.m7d_c00346{transform:matrix(0.277718,-0.003055,0.002750,0.249985,0,0);-ms-transform:matrix(0.277718,-0.003055,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277718,-0.003055,0.002750,0.249985,0,0);}
.m13_c00346{transform:matrix(0.277769,-0.004167,0.003750,0.249972,0,0);-ms-transform:matrix(0.277769,-0.004167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277769,-0.004167,0.003750,0.249972,0,0);}
.m15d_c00346{transform:matrix(0.278561,-0.002228,0.002000,0.249992,0,0);-ms-transform:matrix(0.278561,-0.002228,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278561,-0.002228,0.002000,0.249992,0,0);}
.m2_c00346{transform:matrix(0.279214,-0.004188,0.003750,0.249972,0,0);-ms-transform:matrix(0.279214,-0.004188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279214,-0.004188,0.003750,0.249972,0,0);}
.m143_c00346{transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);}
.m16e_c00346{transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285965,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.286298,-0.003149,0.002750,0.249985,0,0);-ms-transform:matrix(0.286298,-0.003149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286298,-0.003149,0.002750,0.249985,0,0);}
.m29_c00346{transform:matrix(0.286773,-0.003154,0.002750,0.249985,0,0);-ms-transform:matrix(0.286773,-0.003154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286773,-0.003154,0.002750,0.249985,0,0);}
.m7_c00346{transform:matrix(0.314180,-0.004713,0.003750,0.249972,0,0);-ms-transform:matrix(0.314180,-0.004713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.314180,-0.004713,0.003750,0.249972,0,0);}
.m5c_c00346{transform:matrix(0.327715,-0.003605,0.002750,0.249985,0,0);-ms-transform:matrix(0.327715,-0.003605,0.002750,0.249985,0,0);-webkit-transform:matrix(0.327715,-0.003605,0.002750,0.249985,0,0);}
.m14a_c00346{transform:matrix(0.338972,-0.002373,0.001750,0.249994,0,0);-ms-transform:matrix(0.338972,-0.002373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.338972,-0.002373,0.001750,0.249994,0,0);}
.m11_c00346{transform:matrix(0.348186,-0.005223,0.003750,0.249972,0,0);-ms-transform:matrix(0.348186,-0.005223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.348186,-0.005223,0.003750,0.249972,0,0);}
.m27_c00346{transform:matrix(0.366638,-0.004033,0.002750,0.249985,0,0);-ms-transform:matrix(0.366638,-0.004033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.366638,-0.004033,0.002750,0.249985,0,0);}
.m6_c00346{transform:matrix(0.377493,-0.005662,0.003750,0.249972,0,0);-ms-transform:matrix(0.377493,-0.005662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.377493,-0.005662,0.003750,0.249972,0,0);}
.m16_c00346{transform:matrix(0.388591,-0.004275,0.002750,0.249985,0,0);-ms-transform:matrix(0.388591,-0.004275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.388591,-0.004275,0.002750,0.249985,0,0);}
.m99_c00346{transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);}
.m11a_c00346{transform:matrix(0.413745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413745,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.416323,-0.006245,0.003750,0.249972,0,0);-ms-transform:matrix(0.416323,-0.006245,0.003750,0.249972,0,0);-webkit-transform:matrix(0.416323,-0.006245,0.003750,0.249972,0,0);}
.m5_c00346{transform:matrix(0.457304,-0.006860,0.003750,0.249972,0,0);-ms-transform:matrix(0.457304,-0.006860,0.003750,0.249972,0,0);-webkit-transform:matrix(0.457304,-0.006860,0.003750,0.249972,0,0);}
.m36_c00346{transform:matrix(0.470417,-0.005175,0.002750,0.249985,0,0);-ms-transform:matrix(0.470417,-0.005175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.470417,-0.005175,0.002750,0.249985,0,0);}
.m4_c00346{transform:matrix(0.484760,-0.007271,0.003750,0.249972,0,0);-ms-transform:matrix(0.484760,-0.007271,0.003750,0.249972,0,0);-webkit-transform:matrix(0.484760,-0.007271,0.003750,0.249972,0,0);}
.m82_c00346{transform:matrix(0.507239,-0.005580,0.002750,0.249985,0,0);-ms-transform:matrix(0.507239,-0.005580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.507239,-0.005580,0.002750,0.249985,0,0);}
.m98_c00346{transform:matrix(0.525735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525735,0.000000,0.000000,0.250000,0,0);}
.m41_c00346{transform:matrix(0.527408,-0.005801,0.002750,0.249985,0,0);-ms-transform:matrix(0.527408,-0.005801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.527408,-0.005801,0.002750,0.249985,0,0);}
.m23_c00346{transform:matrix(0.621237,-0.006834,0.002750,0.249985,0,0);-ms-transform:matrix(0.621237,-0.006834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.621237,-0.006834,0.002750,0.249985,0,0);}
.m58_c00346{transform:matrix(0.674289,-0.007417,0.002750,0.249985,0,0);-ms-transform:matrix(0.674289,-0.007417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.674289,-0.007417,0.002750,0.249985,0,0);}
.m159_c00346{transform:matrix(0.891206,-0.007130,0.002000,0.249992,0,0);-ms-transform:matrix(0.891206,-0.007130,0.002000,0.249992,0,0);-webkit-transform:matrix(0.891206,-0.007130,0.002000,0.249992,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;}
.fs1_c00346{font-size:35.704016px;}
.fs13_c00346{font-size:45.150000px;}
.fs11_c00346{font-size:50.401613px;}
.fs12_c00346{font-size:52.501680px;}
.fs10_c00346{font-size:53.551312px;}
.fs0_c00346{font-size:58.806615px;}
.fsc_c00346{font-size:59.850000px;}
.fs5_c00346{font-size:63.003811px;}
.fs9_c00346{font-size:67.200000px;}
.fs7_c00346{font-size:67.204065px;}
.fsa_c00346{font-size:68.250000px;}
.fs8_c00346{font-size:69.300000px;}
.fs4_c00346{font-size:69.304193px;}
.fsd_c00346{font-size:70.350000px;}
.fs6_c00346{font-size:70.354256px;}
.fsb_c00346{font-size:71.400000px;}
.fse_c00346{font-size:72.450000px;}
.fs3_c00346{font-size:72.454383px;}
.fsf_c00346{font-size:80.850000px;}
.fs2_c00346{font-size:126.014174px;}
.y0_c00346{bottom:0.000000px;}
.yc2_c00346{bottom:162.828552px;}
.yc3_c00346{bottom:162.829140px;}
.yc5_c00346{bottom:162.829440px;}
.yc9_c00346{bottom:162.829584px;}
.yc4_c00346{bottom:162.829620px;}
.yc7_c00346{bottom:162.829776px;}
.yc8_c00346{bottom:162.829956px;}
.yc6_c00346{bottom:162.830088px;}
.yca_c00346{bottom:164.335500px;}
.ya4_c00346{bottom:179.550000px;}
.ya5_c00346{bottom:179.892153px;}
.ya6_c00346{bottom:180.028254px;}
.ya7_c00346{bottom:180.287006px;}
.ya8_c00346{bottom:180.428934px;}
.ya9_c00346{bottom:180.946678px;}
.yaa_c00346{bottom:181.183138px;}
.yab_c00346{bottom:181.302156px;}
.yac_c00346{bottom:181.682067px;}
.yad_c00346{bottom:181.882512px;}
.yae_c00346{bottom:182.194331px;}
.yaf_c00346{bottom:182.462679px;}
.yb0_c00346{bottom:182.674338px;}
.yb1_c00346{bottom:182.844448px;}
.yb2_c00346{bottom:197.910000px;}
.yb3_c00346{bottom:198.408960px;}
.yb4_c00346{bottom:198.607668px;}
.yb5_c00346{bottom:198.719988px;}
.yb6_c00346{bottom:199.205916px;}
.yb7_c00346{bottom:199.294548px;}
.yb8_c00346{bottom:199.490880px;}
.yb9_c00346{bottom:199.802184px;}
.yba_c00346{bottom:199.923072px;}
.ybb_c00346{bottom:200.320536px;}
.ybc_c00346{bottom:200.452380px;}
.ybd_c00346{bottom:200.724528px;}
.ybe_c00346{bottom:200.823972px;}
.ybf_c00346{bottom:201.171756px;}
.yc0_c00346{bottom:201.379104px;}
.yc1_c00346{bottom:201.545088px;}
.ya2_c00346{bottom:245.875500px;}
.ya1_c00346{bottom:268.587000px;}
.ya0_c00346{bottom:291.507000px;}
.y9f_c00346{bottom:314.199000px;}
.y9e_c00346{bottom:336.850500px;}
.y9d_c00346{bottom:359.548500px;}
.y9c_c00346{bottom:382.770000px;}
.y9b_c00346{bottom:405.448500px;}
.y9a_c00346{bottom:428.100000px;}
.ya3_c00346{bottom:428.220000px;}
.y99_c00346{bottom:451.005000px;}
.y98_c00346{bottom:473.698500px;}
.y97_c00346{bottom:496.648500px;}
.y96_c00346{bottom:519.282000px;}
.y95_c00346{bottom:542.251500px;}
.y94_c00346{bottom:564.928500px;}
.y93_c00346{bottom:587.613000px;}
.y92_c00346{bottom:610.377303px;}
.y8d_c00346{bottom:610.377495px;}
.y8c_c00346{bottom:610.377738px;}
.y91_c00346{bottom:610.377759px;}
.y90_c00346{bottom:610.377775px;}
.y8f_c00346{bottom:610.377882px;}
.y8b_c00346{bottom:610.377904px;}
.y8e_c00346{bottom:610.378168px;}
.y88_c00346{bottom:610.378227px;}
.y8a_c00346{bottom:610.378371px;}
.y89_c00346{bottom:610.378537px;}
.y7b_c00346{bottom:630.704968px;}
.y7c_c00346{bottom:630.792088px;}
.y7d_c00346{bottom:631.185195px;}
.y7e_c00346{bottom:631.868835px;}
.y7f_c00346{bottom:632.061978px;}
.y80_c00346{bottom:632.195208px;}
.y81_c00346{bottom:632.493451px;}
.y82_c00346{bottom:632.776951px;}
.y83_c00346{bottom:632.991111px;}
.y84_c00346{bottom:633.212617px;}
.y85_c00346{bottom:633.466581px;}
.y86_c00346{bottom:633.634861px;}
.y87_c00346{bottom:633.923991px;}
.y70_c00346{bottom:653.655282px;}
.y71_c00346{bottom:654.238099px;}
.y72_c00346{bottom:654.480492px;}
.y73_c00346{bottom:654.794505px;}
.y74_c00346{bottom:655.352232px;}
.y75_c00346{bottom:655.578598px;}
.y76_c00346{bottom:656.148145px;}
.y77_c00346{bottom:656.321163px;}
.y78_c00346{bottom:656.682351px;}
.y79_c00346{bottom:656.939797px;}
.y7a_c00346{bottom:657.343671px;}
.y67_c00346{bottom:676.069515px;}
.y68_c00346{bottom:676.486791px;}
.y69_c00346{bottom:677.084531px;}
.y6a_c00346{bottom:677.835975px;}
.y6b_c00346{bottom:677.986561px;}
.y6c_c00346{bottom:678.245940px;}
.y6d_c00346{bottom:678.923536px;}
.y6e_c00346{bottom:679.361496px;}
.y6f_c00346{bottom:679.719450px;}
.y5b_c00346{bottom:698.485115px;}
.y5c_c00346{bottom:698.794096px;}
.y5d_c00346{bottom:699.216195px;}
.y5e_c00346{bottom:699.376231px;}
.y5f_c00346{bottom:699.968928px;}
.y60_c00346{bottom:700.314531px;}
.y61_c00346{bottom:700.508218px;}
.y62_c00346{bottom:700.887604px;}
.y63_c00346{bottom:701.434354px;}
.y64_c00346{bottom:701.981137px;}
.y65_c00346{bottom:702.296853px;}
.y66_c00346{bottom:702.779833px;}
.y4e_c00346{bottom:721.165320px;}
.y4f_c00346{bottom:721.556688px;}
.y50_c00346{bottom:721.952331px;}
.y51_c00346{bottom:722.294552px;}
.y52_c00346{bottom:722.644264px;}
.y53_c00346{bottom:722.811793px;}
.y54_c00346{bottom:723.514140px;}
.y55_c00346{bottom:723.912654px;}
.y56_c00346{bottom:724.151329px;}
.y57_c00346{bottom:724.755777px;}
.y58_c00346{bottom:725.151420px;}
.y59_c00346{bottom:725.348110px;}
.y5a_c00346{bottom:725.511579px;}
.y42_c00346{bottom:743.845443px;}
.y43_c00346{bottom:744.273482px;}
.y44_c00346{bottom:744.478407px;}
.y45_c00346{bottom:744.979177px;}
.y46_c00346{bottom:745.471729px;}
.y47_c00346{bottom:745.632706px;}
.y48_c00346{bottom:746.016500px;}
.y49_c00346{bottom:746.251644px;}
.y4a_c00346{bottom:746.453632px;}
.y4b_c00346{bottom:747.219699px;}
.y4c_c00346{bottom:747.458358px;}
.y4d_c00346{bottom:748.168065px;}
.y37_c00346{bottom:766.518549px;}
.y38_c00346{bottom:766.994407px;}
.y39_c00346{bottom:767.645166px;}
.y3a_c00346{bottom:768.076866px;}
.y3b_c00346{bottom:768.347328px;}
.y3c_c00346{bottom:768.574357px;}
.y3d_c00346{bottom:769.229622px;}
.y3e_c00346{bottom:769.642956px;}
.y3f_c00346{bottom:770.204919px;}
.y40_c00346{bottom:770.534276px;}
.y41_c00346{bottom:771.640942px;}
.y2a_c00346{bottom:788.938899px;}
.y2b_c00346{bottom:789.529416px;}
.y2c_c00346{bottom:789.908818px;}
.y2d_c00346{bottom:790.080821px;}
.y2e_c00346{bottom:790.603903px;}
.y2f_c00346{bottom:791.109130px;}
.y30_c00346{bottom:791.356554px;}
.y31_c00346{bottom:791.655452px;}
.y32_c00346{bottom:792.085125px;}
.y33_c00346{bottom:792.313767px;}
.y34_c00346{bottom:792.567114px;}
.y35_c00346{bottom:793.069453px;}
.y36_c00346{bottom:793.478315px;}
.y24_c00346{bottom:811.085201px;}
.y25_c00346{bottom:811.734880px;}
.y26_c00346{bottom:812.537252px;}
.y27_c00346{bottom:815.199187px;}
.y28_c00346{bottom:815.799642px;}
.y29_c00346{bottom:816.737087px;}
.y17_c00346{bottom:834.571500px;}
.y18_c00346{bottom:834.966197px;}
.y19_c00346{bottom:835.696866px;}
.y1a_c00346{bottom:836.136558px;}
.y1b_c00346{bottom:836.813701px;}
.y1c_c00346{bottom:837.520776px;}
.y1d_c00346{bottom:837.770041px;}
.y1e_c00346{bottom:838.120452px;}
.y1f_c00346{bottom:838.352128px;}
.y20_c00346{bottom:838.821422px;}
.y21_c00346{bottom:839.005545px;}
.y22_c00346{bottom:839.445138px;}
.y23_c00346{bottom:840.041646px;}
.y10_c00346{bottom:878.843078px;}
.y11_c00346{bottom:879.044910px;}
.y12_c00346{bottom:879.801300px;}
.y13_c00346{bottom:880.335345px;}
.y14_c00346{bottom:880.707345px;}
.y15_c00346{bottom:881.382488px;}
.y16_c00346{bottom:881.708228px;}
.ye_c00346{bottom:900.186375px;}
.yf_c00346{bottom:900.186885px;}
.y1_c00346{bottom:939.871500px;}
.y2_c00346{bottom:940.969545px;}
.y3_c00346{bottom:941.338905px;}
.y4_c00346{bottom:941.993295px;}
.y5_c00346{bottom:942.484380px;}
.y6_c00346{bottom:943.148738px;}
.y7_c00346{bottom:943.574190px;}
.y8_c00346{bottom:944.234318px;}
.y9_c00346{bottom:945.157425px;}
.ya_c00346{bottom:945.922920px;}
.yb_c00346{bottom:946.315658px;}
.yc_c00346{bottom:946.746060px;}
.yd_c00346{bottom:947.024565px;}
.h3_c00346{height:35.704016px;}
.h15_c00346{height:45.150000px;}
.h13_c00346{height:50.401613px;}
.h14_c00346{height:52.501680px;}
.h12_c00346{height:53.551312px;}
.h2_c00346{height:58.806615px;}
.he_c00346{height:59.850000px;}
.h7_c00346{height:63.003811px;}
.hb_c00346{height:67.200000px;}
.h9_c00346{height:67.204065px;}
.hc_c00346{height:68.250000px;}
.ha_c00346{height:69.300000px;}
.h6_c00346{height:69.304193px;}
.hf_c00346{height:70.350000px;}
.h8_c00346{height:70.354256px;}
.hd_c00346{height:71.400000px;}
.h10_c00346{height:72.450000px;}
.h5_c00346{height:72.454383px;}
.h11_c00346{height:80.850000px;}
.h4_c00346{height:126.014174px;}
.h1_c00346{height:1005.000000px;}
.h0_c00346{height:1005.150000px;}
.w0_c00346{width:702.540000px;}
.w1_c00346{width:702.750000px;}
.x0_c00346{left:0.000000px;}
.x27_c00346{left:35.274863px;}
.x3d_c00346{left:36.274952px;}
.x1_c00346{left:37.369500px;}
.x44_c00346{left:40.331894px;}
.x50_c00346{left:41.380973px;}
.xe_c00346{left:42.390772px;}
.xc4_c00346{left:44.010000px;}
.x17_c00346{left:47.965500px;}
.x10_c00346{left:49.025842px;}
.x51_c00346{left:75.743732px;}
.x11_c00346{left:82.685887px;}
.x18_c00346{left:83.847000px;}
.x76_c00346{left:86.130000px;}
.x95_c00346{left:87.210000px;}
.x9f_c00346{left:88.560000px;}
.xaa_c00346{left:89.640000px;}
.xb5_c00346{left:91.530000px;}
.xc5_c00346{left:94.558500px;}
.x67_c00346{left:97.266267px;}
.x28_c00346{left:100.823298px;}
.xf_c00346{left:102.338250px;}
.x87_c00346{left:104.490000px;}
.x3e_c00346{left:106.500486px;}
.xb0_c00346{left:109.080000px;}
.x2_c00346{left:110.572500px;}
.x70_c00346{left:112.596147px;}
.x96_c00346{left:118.530000px;}
.x52_c00346{left:122.708271px;}
.x8e_c00346{left:125.550000px;}
.xa5_c00346{left:126.630000px;}
.x45_c00346{left:127.834824px;}
.xb9_c00346{left:130.410000px;}
.x3_c00346{left:135.196500px;}
.xce_c00346{left:137.699940px;}
.x24_c00346{left:140.605556px;}
.x29_c00346{left:142.951722px;}
.x77_c00346{left:145.530000px;}
.xa0_c00346{left:147.150000px;}
.x34_c00346{left:148.319742px;}
.x19_c00346{left:150.271500px;}
.x88_c00346{left:151.740000px;}
.x68_c00346{left:153.460242px;}
.x7c_c00346{left:154.710000px;}
.xc8_c00346{left:156.144000px;}
.x5f_c00346{left:157.516682px;}
.x8f_c00346{left:160.920000px;}
.x2a_c00346{left:162.134151px;}
.xb1_c00346{left:163.620000px;}
.x46_c00346{left:165.901166px;}
.x97_c00346{left:167.670000px;}
.x89_c00346{left:171.720000px;}
.xcf_c00346{left:172.802184px;}
.x71_c00346{left:176.859419px;}
.x4_c00346{left:178.822500px;}
.x98_c00346{left:181.440000px;}
.xb6_c00346{left:183.060000px;}
.xbf_c00346{left:184.680000px;}
.x60_c00346{left:187.735172px;}
.x1a_c00346{left:190.243500px;}
.x35_c00346{left:191.520221px;}
.x83_c00346{left:193.860000px;}
.xc9_c00346{left:195.022500px;}
.xa1_c00346{left:198.450000px;}
.xc6_c00346{left:199.845000px;}
.x47_c00346{left:204.785024px;}
.x53_c00346{left:206.413119px;}
.x12_c00346{left:208.828920px;}
.x5_c00346{left:211.561500px;}
.x99_c00346{left:213.570000px;}
.xab_c00346{left:214.650000px;}
.x3f_c00346{left:216.850412px;}
.x36_c00346{left:218.562518px;}
.x2b_c00346{left:220.188422px;}
.x48_c00346{left:223.424436px;}
.x61_c00346{left:226.919459px;}
.xc0_c00346{left:232.470000px;}
.x40_c00346{left:234.757808px;}
.x72_c00346{left:237.612278px;}
.x37_c00346{left:241.247265px;}
.x8a_c00346{left:242.730000px;}
.x54_c00346{left:244.786961px;}
.xd0_c00346{left:245.973864px;}
.xba_c00346{left:250.020000px;}
.x1b_c00346{left:251.802000px;}
.x6_c00346{left:255.852000px;}
.x9c_c00346{left:260.820000px;}
.x7d_c00346{left:264.060000px;}
.x55_c00346{left:266.349939px;}
.x84_c00346{left:273.510000px;}
.x2c_c00346{left:276.346659px;}
.x41_c00346{left:277.421748px;}
.x69_c00346{left:278.718753px;}
.xb2_c00346{left:279.990000px;}
.x7_c00346{left:284.215500px;}
.x90_c00346{left:288.630000px;}
.xca_c00346{left:291.384000px;}
.x73_c00346{left:293.506043px;}
.x62_c00346{left:296.578752px;}
.x13_c00346{left:297.943958px;}
.x7e_c00346{left:299.160000px;}
.x49_c00346{left:301.457652px;}
.x2d_c00346{left:303.885770px;}
.x5b_c00346{left:304.945473px;}
.x38_c00346{left:306.817491px;}
.x56_c00346{left:308.476863px;}
.xa6_c00346{left:310.500000px;}
.x91_c00346{left:311.580000px;}
.x74_c00346{left:314.297051px;}
.x1c_c00346{left:316.081500px;}
.x85_c00346{left:321.300000px;}
.xbb_c00346{left:322.380000px;}
.x5c_c00346{left:323.817600px;}
.x63_c00346{left:324.931193px;}
.x42_c00346{left:326.025821px;}
.x8_c00346{left:328.224000px;}
.x25_c00346{left:330.775285px;}
.x78_c00346{left:335.610000px;}
.x2e_c00346{left:337.058996px;}
.x1d_c00346{left:338.742000px;}
.x6a_c00346{left:340.309959px;}
.x75_c00346{left:343.729115px;}
.x4a_c00346{left:345.732626px;}
.x39_c00346{left:348.211953px;}
.x9a_c00346{left:352.890000px;}
.xbc_c00346{left:354.510000px;}
.x5d_c00346{left:356.262173px;}
.x14_c00346{left:360.052350px;}
.xd1_c00346{left:363.690000px;}
.x9d_c00346{left:365.850000px;}
.x57_c00346{left:369.228200px;}
.x1e_c00346{left:370.597500px;}
.x4b_c00346{left:372.203703px;}
.x26_c00346{left:373.633367px;}
.x92_c00346{left:376.110000px;}
.x7f_c00346{left:378.000000px;}
.x6b_c00346{left:380.811741px;}
.x2f_c00346{left:384.848552px;}
.xc1_c00346{left:386.640000px;}
.x9_c00346{left:389.764500px;}
.x1f_c00346{left:391.659000px;}
.xcb_c00346{left:395.091000px;}
.x64_c00346{left:396.210552px;}
.xa2_c00346{left:399.330000px;}
.xb3_c00346{left:400.410000px;}
.xa7_c00346{left:402.300000px;}
.x3a_c00346{left:404.345564px;}
.x30_c00346{left:410.271113px;}
.x6c_c00346{left:411.327578px;}
.xac_c00346{left:412.560000px;}
.xbd_c00346{left:414.450000px;}
.x65_c00346{left:417.803762px;}
.x93_c00346{left:423.360000px;}
.x8b_c00346{left:424.980000px;}
.xc2_c00346{left:427.140000px;}
.x58_c00346{left:429.982536px;}
.xb7_c00346{left:431.730000px;}
.x20_c00346{left:434.322000px;}
.x3b_c00346{left:437.287426px;}
.x31_c00346{left:438.348723px;}
.x4c_c00346{left:439.427688px;}
.xa_c00346{left:440.797500px;}
.x6d_c00346{left:442.920464px;}
.x9e_c00346{left:444.150000px;}
.xcc_c00346{left:445.590000px;}
.x80_c00346{left:447.660000px;}
.x86_c00346{left:449.280000px;}
.x21_c00346{left:451.060500px;}
.xad_c00346{left:454.680000px;}
.x79_c00346{left:457.380000px;}
.x81_c00346{left:461.430000px;}
.x66_c00346{left:462.913247px;}
.x59_c00346{left:465.093812px;}
.xb_c00346{left:466.980000px;}
.x15_c00346{left:472.677060px;}
.x94_c00346{left:476.010000px;}
.xc3_c00346{left:477.900000px;}
.x6e_c00346{left:479.100548px;}
.x4d_c00346{left:483.441662px;}
.x22_c00346{left:491.023500px;}
.xbe_c00346{left:492.750000px;}
.x32_c00346{left:494.244461px;}
.xc_c00346{left:495.673500px;}
.x8c_c00346{left:497.880000px;}
.xa8_c00346{left:498.960000px;}
.xcd_c00346{left:501.493500px;}
.x6f_c00346{left:503.127104px;}
.x4e_c00346{left:505.277640px;}
.x7a_c00346{left:511.650000px;}
.xd_c00346{left:514.240500px;}
.x43_c00346{left:516.387495px;}
.xb4_c00346{left:517.590000px;}
.x5a_c00346{left:518.820499px;}
.xaf_c00346{left:521.100000px;}
.x4f_c00346{left:523.411536px;}
.x16_c00346{left:526.900373px;}
.xb8_c00346{left:528.930000px;}
.xa3_c00346{left:530.280000px;}
.x8d_c00346{left:532.170000px;}
.x9b_c00346{left:534.330000px;}
.xae_c00346{left:536.490000px;}
.x33_c00346{left:539.596451px;}
.x5e_c00346{left:540.678278px;}
.xa9_c00346{left:542.970000px;}
.x23_c00346{left:545.251500px;}
.x3c_c00346{left:547.985647px;}
.x7b_c00346{left:552.150000px;}
.x82_c00346{left:553.770000px;}
.xa4_c00346{left:555.660000px;}
.xc7_c00346{left:565.194000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.fs1_c00346{font-size:31.736903pt;}
.fs13_c00346{font-size:40.133333pt;}
.fs11_c00346{font-size:44.801434pt;}
.fs12_c00346{font-size:46.668160pt;}
.fs10_c00346{font-size:47.601166pt;}
.fs0_c00346{font-size:52.272546pt;}
.fsc_c00346{font-size:53.200000pt;}
.fs5_c00346{font-size:56.003388pt;}
.fs9_c00346{font-size:59.733333pt;}
.fs7_c00346{font-size:59.736947pt;}
.fsa_c00346{font-size:60.666667pt;}
.fs8_c00346{font-size:61.600000pt;}
.fs4_c00346{font-size:61.603727pt;}
.fsd_c00346{font-size:62.533333pt;}
.fs6_c00346{font-size:62.537116pt;}
.fsb_c00346{font-size:63.466667pt;}
.fse_c00346{font-size:64.400000pt;}
.fs3_c00346{font-size:64.403896pt;}
.fsf_c00346{font-size:71.866667pt;}
.fs2_c00346{font-size:112.012599pt;}
.y0_c00346{bottom:0.000000pt;}
.yc2_c00346{bottom:144.736491pt;}
.yc3_c00346{bottom:144.737013pt;}
.yc5_c00346{bottom:144.737280pt;}
.yc9_c00346{bottom:144.737408pt;}
.yc4_c00346{bottom:144.737440pt;}
.yc7_c00346{bottom:144.737579pt;}
.yc8_c00346{bottom:144.737739pt;}
.yc6_c00346{bottom:144.737856pt;}
.yca_c00346{bottom:146.076000pt;}
.ya4_c00346{bottom:159.600000pt;}
.ya5_c00346{bottom:159.904136pt;}
.ya6_c00346{bottom:160.025115pt;}
.ya7_c00346{bottom:160.255116pt;}
.ya8_c00346{bottom:160.381275pt;}
.ya9_c00346{bottom:160.841492pt;}
.yaa_c00346{bottom:161.051679pt;}
.yab_c00346{bottom:161.157472pt;}
.yac_c00346{bottom:161.495171pt;}
.yad_c00346{bottom:161.673344pt;}
.yae_c00346{bottom:161.950516pt;}
.yaf_c00346{bottom:162.189048pt;}
.yb0_c00346{bottom:162.377189pt;}
.yb1_c00346{bottom:162.528399pt;}
.yb2_c00346{bottom:175.920000pt;}
.yb3_c00346{bottom:176.363520pt;}
.yb4_c00346{bottom:176.540149pt;}
.yb5_c00346{bottom:176.639989pt;}
.yb6_c00346{bottom:177.071925pt;}
.yb7_c00346{bottom:177.150709pt;}
.yb8_c00346{bottom:177.325227pt;}
.yb9_c00346{bottom:177.601941pt;}
.yba_c00346{bottom:177.709397pt;}
.ybb_c00346{bottom:178.062699pt;}
.ybc_c00346{bottom:178.179893pt;}
.ybd_c00346{bottom:178.421803pt;}
.ybe_c00346{bottom:178.510197pt;}
.ybf_c00346{bottom:178.819339pt;}
.yc0_c00346{bottom:179.003648pt;}
.yc1_c00346{bottom:179.151189pt;}
.ya2_c00346{bottom:218.556000pt;}
.ya1_c00346{bottom:238.744000pt;}
.ya0_c00346{bottom:259.117333pt;}
.y9f_c00346{bottom:279.288000pt;}
.y9e_c00346{bottom:299.422667pt;}
.y9d_c00346{bottom:319.598667pt;}
.y9c_c00346{bottom:340.240000pt;}
.y9b_c00346{bottom:360.398667pt;}
.y9a_c00346{bottom:380.533333pt;}
.ya3_c00346{bottom:380.640000pt;}
.y99_c00346{bottom:400.893333pt;}
.y98_c00346{bottom:421.065333pt;}
.y97_c00346{bottom:441.465333pt;}
.y96_c00346{bottom:461.584000pt;}
.y95_c00346{bottom:482.001333pt;}
.y94_c00346{bottom:502.158667pt;}
.y93_c00346{bottom:522.322667pt;}
.y92_c00346{bottom:542.557603pt;}
.y8d_c00346{bottom:542.557773pt;}
.y8c_c00346{bottom:542.557989pt;}
.y91_c00346{bottom:542.558008pt;}
.y90_c00346{bottom:542.558023pt;}
.y8f_c00346{bottom:542.558117pt;}
.y8b_c00346{bottom:542.558137pt;}
.y8e_c00346{bottom:542.558372pt;}
.y88_c00346{bottom:542.558424pt;}
.y8a_c00346{bottom:542.558552pt;}
.y89_c00346{bottom:542.558700pt;}
.y7b_c00346{bottom:560.626639pt;}
.y7c_c00346{bottom:560.704079pt;}
.y7d_c00346{bottom:561.053507pt;}
.y7e_c00346{bottom:561.661187pt;}
.y7f_c00346{bottom:561.832869pt;}
.y80_c00346{bottom:561.951296pt;}
.y81_c00346{bottom:562.216401pt;}
.y82_c00346{bottom:562.468401pt;}
.y83_c00346{bottom:562.658765pt;}
.y84_c00346{bottom:562.855660pt;}
.y85_c00346{bottom:563.081405pt;}
.y86_c00346{bottom:563.230988pt;}
.y87_c00346{bottom:563.487992pt;}
.y70_c00346{bottom:581.026917pt;}
.y71_c00346{bottom:581.544977pt;}
.y72_c00346{bottom:581.760437pt;}
.y73_c00346{bottom:582.039560pt;}
.y74_c00346{bottom:582.535317pt;}
.y75_c00346{bottom:582.736532pt;}
.y76_c00346{bottom:583.242796pt;}
.y77_c00346{bottom:583.396589pt;}
.y78_c00346{bottom:583.717645pt;}
.y79_c00346{bottom:583.946487pt;}
.y7a_c00346{bottom:584.305485pt;}
.y67_c00346{bottom:600.950680pt;}
.y68_c00346{bottom:601.321592pt;}
.y69_c00346{bottom:601.852916pt;}
.y6a_c00346{bottom:602.520867pt;}
.y6b_c00346{bottom:602.654721pt;}
.y6c_c00346{bottom:602.885280pt;}
.y6d_c00346{bottom:603.487588pt;}
.y6e_c00346{bottom:603.876885pt;}
.y6f_c00346{bottom:604.195067pt;}
.y5b_c00346{bottom:620.875657pt;}
.y5c_c00346{bottom:621.150308pt;}
.y5d_c00346{bottom:621.525507pt;}
.y5e_c00346{bottom:621.667761pt;}
.y5f_c00346{bottom:622.194603pt;}
.y60_c00346{bottom:622.501805pt;}
.y61_c00346{bottom:622.673972pt;}
.y62_c00346{bottom:623.011204pt;}
.y63_c00346{bottom:623.497204pt;}
.y64_c00346{bottom:623.983233pt;}
.y65_c00346{bottom:624.263869pt;}
.y66_c00346{bottom:624.693185pt;}
.y4e_c00346{bottom:641.035840pt;}
.y4f_c00346{bottom:641.383723pt;}
.y50_c00346{bottom:641.735405pt;}
.y51_c00346{bottom:642.039601pt;}
.y52_c00346{bottom:642.350457pt;}
.y53_c00346{bottom:642.499372pt;}
.y54_c00346{bottom:643.123680pt;}
.y55_c00346{bottom:643.477915pt;}
.y56_c00346{bottom:643.690071pt;}
.y57_c00346{bottom:644.227357pt;}
.y58_c00346{bottom:644.579040pt;}
.y59_c00346{bottom:644.753876pt;}
.y5a_c00346{bottom:644.899181pt;}
.y42_c00346{bottom:661.195949pt;}
.y43_c00346{bottom:661.576428pt;}
.y44_c00346{bottom:661.758584pt;}
.y45_c00346{bottom:662.203713pt;}
.y46_c00346{bottom:662.641537pt;}
.y47_c00346{bottom:662.784628pt;}
.y48_c00346{bottom:663.125777pt;}
.y49_c00346{bottom:663.334795pt;}
.y4a_c00346{bottom:663.514340pt;}
.y4b_c00346{bottom:664.195288pt;}
.y4c_c00346{bottom:664.407429pt;}
.y4d_c00346{bottom:665.038280pt;}
.y37_c00346{bottom:681.349821pt;}
.y38_c00346{bottom:681.772807pt;}
.y39_c00346{bottom:682.351259pt;}
.y3a_c00346{bottom:682.734992pt;}
.y3b_c00346{bottom:682.975403pt;}
.y3c_c00346{bottom:683.177207pt;}
.y3d_c00346{bottom:683.759664pt;}
.y3e_c00346{bottom:684.127072pt;}
.y3f_c00346{bottom:684.626595pt;}
.y40_c00346{bottom:684.919356pt;}
.y41_c00346{bottom:685.903060pt;}
.y2a_c00346{bottom:701.279021pt;}
.y2b_c00346{bottom:701.803925pt;}
.y2c_c00346{bottom:702.141172pt;}
.y2d_c00346{bottom:702.294063pt;}
.y2e_c00346{bottom:702.759025pt;}
.y2f_c00346{bottom:703.208116pt;}
.y30_c00346{bottom:703.428048pt;}
.y31_c00346{bottom:703.693735pt;}
.y32_c00346{bottom:704.075667pt;}
.y33_c00346{bottom:704.278904pt;}
.y34_c00346{bottom:704.504101pt;}
.y35_c00346{bottom:704.950625pt;}
.y36_c00346{bottom:705.314057pt;}
.y24_c00346{bottom:720.964623pt;}
.y25_c00346{bottom:721.542116pt;}
.y26_c00346{bottom:722.255335pt;}
.y27_c00346{bottom:724.621500pt;}
.y28_c00346{bottom:725.155237pt;}
.y29_c00346{bottom:725.988521pt;}
.y17_c00346{bottom:741.841333pt;}
.y18_c00346{bottom:742.192175pt;}
.y19_c00346{bottom:742.841659pt;}
.y1a_c00346{bottom:743.232496pt;}
.y1b_c00346{bottom:743.834401pt;}
.y1c_c00346{bottom:744.462912pt;}
.y1d_c00346{bottom:744.684481pt;}
.y1e_c00346{bottom:744.995957pt;}
.y1f_c00346{bottom:745.201892pt;}
.y20_c00346{bottom:745.619041pt;}
.y21_c00346{bottom:745.782707pt;}
.y22_c00346{bottom:746.173456pt;}
.y23_c00346{bottom:746.703685pt;}
.y10_c00346{bottom:781.193847pt;}
.y11_c00346{bottom:781.373253pt;}
.y12_c00346{bottom:782.045600pt;}
.y13_c00346{bottom:782.520307pt;}
.y14_c00346{bottom:782.850973pt;}
.y15_c00346{bottom:783.451100pt;}
.y16_c00346{bottom:783.740647pt;}
.ye_c00346{bottom:800.165667pt;}
.yf_c00346{bottom:800.166120pt;}
.y1_c00346{bottom:835.441333pt;}
.y2_c00346{bottom:836.417373pt;}
.y3_c00346{bottom:836.745693pt;}
.y4_c00346{bottom:837.327373pt;}
.y5_c00346{bottom:837.763893pt;}
.y6_c00346{bottom:838.354433pt;}
.y7_c00346{bottom:838.732613pt;}
.y8_c00346{bottom:839.319393pt;}
.y9_c00346{bottom:840.139933pt;}
.ya_c00346{bottom:840.820373pt;}
.yb_c00346{bottom:841.169473pt;}
.yc_c00346{bottom:841.552053pt;}
.yd_c00346{bottom:841.799613pt;}
.h3_c00346{height:31.736903pt;}
.h15_c00346{height:40.133333pt;}
.h13_c00346{height:44.801434pt;}
.h14_c00346{height:46.668160pt;}
.h12_c00346{height:47.601166pt;}
.h2_c00346{height:52.272546pt;}
.he_c00346{height:53.200000pt;}
.h7_c00346{height:56.003388pt;}
.hb_c00346{height:59.733333pt;}
.h9_c00346{height:59.736947pt;}
.hc_c00346{height:60.666667pt;}
.ha_c00346{height:61.600000pt;}
.h6_c00346{height:61.603727pt;}
.hf_c00346{height:62.533333pt;}
.h8_c00346{height:62.537116pt;}
.hd_c00346{height:63.466667pt;}
.h10_c00346{height:64.400000pt;}
.h5_c00346{height:64.403896pt;}
.h11_c00346{height:71.866667pt;}
.h4_c00346{height:112.012599pt;}
.h1_c00346{height:893.333333pt;}
.h0_c00346{height:893.466667pt;}
.w0_c00346{width:624.480000pt;}
.w1_c00346{width:624.666667pt;}
.x0_c00346{left:0.000000pt;}
.x27_c00346{left:31.355433pt;}
.x3d_c00346{left:32.244401pt;}
.x1_c00346{left:33.217333pt;}
.x44_c00346{left:35.850572pt;}
.x50_c00346{left:36.783087pt;}
.xe_c00346{left:37.680687pt;}
.xc4_c00346{left:39.120000pt;}
.x17_c00346{left:42.636000pt;}
.x10_c00346{left:43.578527pt;}
.x51_c00346{left:67.327761pt;}
.x11_c00346{left:73.498567pt;}
.x18_c00346{left:74.530667pt;}
.x76_c00346{left:76.560000pt;}
.x95_c00346{left:77.520000pt;}
.x9f_c00346{left:78.720000pt;}
.xaa_c00346{left:79.680000pt;}
.xb5_c00346{left:81.360000pt;}
.xc5_c00346{left:84.052000pt;}
.x67_c00346{left:86.458904pt;}
.x28_c00346{left:89.620709pt;}
.xf_c00346{left:90.967333pt;}
.x87_c00346{left:92.880000pt;}
.x3e_c00346{left:94.667099pt;}
.xb0_c00346{left:96.960000pt;}
.x2_c00346{left:98.286667pt;}
.x70_c00346{left:100.085464pt;}
.x96_c00346{left:105.360000pt;}
.x52_c00346{left:109.074019pt;}
.x8e_c00346{left:111.600000pt;}
.xa5_c00346{left:112.560000pt;}
.x45_c00346{left:113.630955pt;}
.xb9_c00346{left:115.920000pt;}
.x3_c00346{left:120.174667pt;}
.xce_c00346{left:122.399947pt;}
.x24_c00346{left:124.982716pt;}
.x29_c00346{left:127.068197pt;}
.x77_c00346{left:129.360000pt;}
.xa0_c00346{left:130.800000pt;}
.x34_c00346{left:131.839771pt;}
.x19_c00346{left:133.574667pt;}
.x88_c00346{left:134.880000pt;}
.x68_c00346{left:136.409104pt;}
.x7c_c00346{left:137.520000pt;}
.xc8_c00346{left:138.794667pt;}
.x5f_c00346{left:140.014828pt;}
.x8f_c00346{left:143.040000pt;}
.x2a_c00346{left:144.119245pt;}
.xb1_c00346{left:145.440000pt;}
.x46_c00346{left:147.467703pt;}
.x97_c00346{left:149.040000pt;}
.x89_c00346{left:152.640000pt;}
.xcf_c00346{left:153.601941pt;}
.x71_c00346{left:157.208372pt;}
.x4_c00346{left:158.953333pt;}
.x98_c00346{left:161.280000pt;}
.xb6_c00346{left:162.720000pt;}
.xbf_c00346{left:164.160000pt;}
.x60_c00346{left:166.875708pt;}
.x1a_c00346{left:169.105333pt;}
.x35_c00346{left:170.240196pt;}
.x83_c00346{left:172.320000pt;}
.xc9_c00346{left:173.353333pt;}
.xa1_c00346{left:176.400000pt;}
.xc6_c00346{left:177.640000pt;}
.x47_c00346{left:182.031132pt;}
.x53_c00346{left:183.478328pt;}
.x12_c00346{left:185.625707pt;}
.x5_c00346{left:188.054667pt;}
.x99_c00346{left:189.840000pt;}
.xab_c00346{left:190.800000pt;}
.x3f_c00346{left:192.755921pt;}
.x36_c00346{left:194.277793pt;}
.x2b_c00346{left:195.723041pt;}
.x48_c00346{left:198.599499pt;}
.x61_c00346{left:201.706185pt;}
.xc0_c00346{left:206.640000pt;}
.x40_c00346{left:208.673607pt;}
.x72_c00346{left:211.210913pt;}
.x37_c00346{left:214.442013pt;}
.x8a_c00346{left:215.760000pt;}
.x54_c00346{left:217.588409pt;}
.xd0_c00346{left:218.643435pt;}
.xba_c00346{left:222.240000pt;}
.x1b_c00346{left:223.824000pt;}
.x6_c00346{left:227.424000pt;}
.x9c_c00346{left:231.840000pt;}
.x7d_c00346{left:234.720000pt;}
.x55_c00346{left:236.755501pt;}
.x84_c00346{left:243.120000pt;}
.x2c_c00346{left:245.641475pt;}
.x41_c00346{left:246.597109pt;}
.x69_c00346{left:247.750003pt;}
.xb2_c00346{left:248.880000pt;}
.x7_c00346{left:252.636000pt;}
.x90_c00346{left:256.560000pt;}
.xca_c00346{left:259.008000pt;}
.x73_c00346{left:260.894260pt;}
.x62_c00346{left:263.625557pt;}
.x13_c00346{left:264.839073pt;}
.x7e_c00346{left:265.920000pt;}
.x49_c00346{left:267.962357pt;}
.x2d_c00346{left:270.120684pt;}
.x5b_c00346{left:271.062643pt;}
.x38_c00346{left:272.726659pt;}
.x56_c00346{left:274.201656pt;}
.xa6_c00346{left:276.000000pt;}
.x91_c00346{left:276.960000pt;}
.x74_c00346{left:279.375156pt;}
.x1c_c00346{left:280.961333pt;}
.x85_c00346{left:285.600000pt;}
.xbb_c00346{left:286.560000pt;}
.x5c_c00346{left:287.837867pt;}
.x63_c00346{left:288.827727pt;}
.x42_c00346{left:289.800729pt;}
.x8_c00346{left:291.754667pt;}
.x25_c00346{left:294.022476pt;}
.x78_c00346{left:298.320000pt;}
.x2e_c00346{left:299.607996pt;}
.x1d_c00346{left:301.104000pt;}
.x6a_c00346{left:302.497741pt;}
.x75_c00346{left:305.536991pt;}
.x4a_c00346{left:307.317889pt;}
.x39_c00346{left:309.521736pt;}
.x9a_c00346{left:313.680000pt;}
.xbc_c00346{left:315.120000pt;}
.x5d_c00346{left:316.677487pt;}
.x14_c00346{left:320.046533pt;}
.xd1_c00346{left:323.280000pt;}
.x9d_c00346{left:325.200000pt;}
.x57_c00346{left:328.202844pt;}
.x1e_c00346{left:329.420000pt;}
.x4b_c00346{left:330.847736pt;}
.x26_c00346{left:332.118548pt;}
.x92_c00346{left:334.320000pt;}
.x7f_c00346{left:336.000000pt;}
.x6b_c00346{left:338.499325pt;}
.x2f_c00346{left:342.087601pt;}
.xc1_c00346{left:343.680000pt;}
.x9_c00346{left:346.457333pt;}
.x1f_c00346{left:348.141333pt;}
.xcb_c00346{left:351.192000pt;}
.x64_c00346{left:352.187157pt;}
.xa2_c00346{left:354.960000pt;}
.xb3_c00346{left:355.920000pt;}
.xa7_c00346{left:357.600000pt;}
.x3a_c00346{left:359.418279pt;}
.x30_c00346{left:364.685433pt;}
.x6c_c00346{left:365.624513pt;}
.xac_c00346{left:366.720000pt;}
.xbd_c00346{left:368.400000pt;}
.x65_c00346{left:371.381121pt;}
.x93_c00346{left:376.320000pt;}
.x8b_c00346{left:377.760000pt;}
.xc2_c00346{left:379.680000pt;}
.x58_c00346{left:382.206699pt;}
.xb7_c00346{left:383.760000pt;}
.x20_c00346{left:386.064000pt;}
.x3b_c00346{left:388.699935pt;}
.x31_c00346{left:389.643309pt;}
.x4c_c00346{left:390.602389pt;}
.xa_c00346{left:391.820000pt;}
.x6d_c00346{left:393.707079pt;}
.x9e_c00346{left:394.800000pt;}
.xcc_c00346{left:396.080000pt;}
.x80_c00346{left:397.920000pt;}
.x86_c00346{left:399.360000pt;}
.x21_c00346{left:400.942667pt;}
.xad_c00346{left:404.160000pt;}
.x79_c00346{left:406.560000pt;}
.x81_c00346{left:410.160000pt;}
.x66_c00346{left:411.478441pt;}
.x59_c00346{left:413.416721pt;}
.xb_c00346{left:415.093333pt;}
.x15_c00346{left:420.157387pt;}
.x94_c00346{left:423.120000pt;}
.xc3_c00346{left:424.800000pt;}
.x6e_c00346{left:425.867153pt;}
.x4d_c00346{left:429.725921pt;}
.x22_c00346{left:436.465333pt;}
.xbe_c00346{left:438.000000pt;}
.x32_c00346{left:439.328409pt;}
.xc_c00346{left:440.598667pt;}
.x8c_c00346{left:442.560000pt;}
.xa8_c00346{left:443.520000pt;}
.xcd_c00346{left:445.772000pt;}
.x6f_c00346{left:447.224092pt;}
.x4e_c00346{left:449.135680pt;}
.x7a_c00346{left:454.800000pt;}
.xd_c00346{left:457.102667pt;}
.x43_c00346{left:459.011107pt;}
.xb4_c00346{left:460.080000pt;}
.x5a_c00346{left:461.173777pt;}
.xaf_c00346{left:463.200000pt;}
.x4f_c00346{left:465.254699pt;}
.x16_c00346{left:468.355887pt;}
.xb8_c00346{left:470.160000pt;}
.xa3_c00346{left:471.360000pt;}
.x8d_c00346{left:473.040000pt;}
.x9b_c00346{left:474.960000pt;}
.xae_c00346{left:476.880000pt;}
.x33_c00346{left:479.641289pt;}
.x5e_c00346{left:480.602913pt;}
.xa9_c00346{left:482.640000pt;}
.x23_c00346{left:484.668000pt;}
.x3c_c00346{left:487.098353pt;}
.x7b_c00346{left:490.800000pt;}
.x82_c00346{left:492.240000pt;}
.xa4_c00346{left:493.920000pt;}
.xc7_c00346{left:502.394667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m13_c00347{transform:matrix(0.009089,-0.000127,0.003500,0.249976,0,0);-ms-transform:matrix(0.009089,-0.000127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.009089,-0.000127,0.003500,0.249976,0,0);}
.mff_c00347{transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011885,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);-ms-transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012510,-0.000100,0.002000,0.249992,0,0);}
.m51_c00347{transform:matrix(0.014265,-0.000114,0.002000,0.249992,0,0);-ms-transform:matrix(0.014265,-0.000114,0.002000,0.249992,0,0);-webkit-transform:matrix(0.014265,-0.000114,0.002000,0.249992,0,0);}
.m5c_c00347{transform:matrix(0.014714,-0.000132,0.002250,0.249990,0,0);-ms-transform:matrix(0.014714,-0.000132,0.002250,0.249990,0,0);-webkit-transform:matrix(0.014714,-0.000132,0.002250,0.249990,0,0);}
.mc4_c00347{transform:matrix(0.019189,-0.000173,0.002250,0.249990,0,0);-ms-transform:matrix(0.019189,-0.000173,0.002250,0.249990,0,0);-webkit-transform:matrix(0.019189,-0.000173,0.002250,0.249990,0,0);}
.mfe_c00347{transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);}
.mcd_c00347{transform:matrix(0.054210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054210,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.054545,-0.000764,0.003500,0.249976,0,0);-ms-transform:matrix(0.054545,-0.000764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.054545,-0.000764,0.003500,0.249976,0,0);}
.m108_c00347{transform:matrix(0.057670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057670,0.000000,0.000000,0.250000,0,0);}
.mce_c00347{transform:matrix(0.061810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061810,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.072723,-0.001018,0.003500,0.249976,0,0);-ms-transform:matrix(0.072723,-0.001018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.072723,-0.001018,0.003500,0.249976,0,0);}
.mc9_c00347{transform:matrix(0.072730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072730,0.000000,0.000000,0.250000,0,0);}
.m71_c00347{transform:matrix(0.092266,-0.000830,0.002250,0.249990,0,0);-ms-transform:matrix(0.092266,-0.000830,0.002250,0.249990,0,0);-webkit-transform:matrix(0.092266,-0.000830,0.002250,0.249990,0,0);}
.me9_c00347{transform:matrix(0.115760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115760,0.000000,0.000000,0.250000,0,0);}
.mfd_c00347{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);}
.m109_c00347{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);}
.m18_c00347{transform:matrix(0.143485,-0.001148,0.002000,0.249992,0,0);-ms-transform:matrix(0.143485,-0.001148,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143485,-0.001148,0.002000,0.249992,0,0);}
.m33_c00347{transform:matrix(0.144715,-0.001158,0.002000,0.249992,0,0);-ms-transform:matrix(0.144715,-0.001158,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144715,-0.001158,0.002000,0.249992,0,0);}
.m73_c00347{transform:matrix(0.144769,-0.001303,0.002250,0.249990,0,0);-ms-transform:matrix(0.144769,-0.001303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144769,-0.001303,0.002250,0.249990,0,0);}
.m1a_c00347{transform:matrix(0.144965,-0.001160,0.002000,0.249992,0,0);-ms-transform:matrix(0.144965,-0.001160,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144965,-0.001160,0.002000,0.249992,0,0);}
.mcc_c00347{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);}
.m37_c00347{transform:matrix(0.147445,-0.001180,0.002000,0.249992,0,0);-ms-transform:matrix(0.147445,-0.001180,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147445,-0.001180,0.002000,0.249992,0,0);}
.m31_c00347{transform:matrix(0.148405,-0.001187,0.002000,0.249992,0,0);-ms-transform:matrix(0.148405,-0.001187,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148405,-0.001187,0.002000,0.249992,0,0);}
.m8d_c00347{transform:matrix(0.149169,-0.001343,0.002250,0.249990,0,0);-ms-transform:matrix(0.149169,-0.001343,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149169,-0.001343,0.002250,0.249990,0,0);}
.mdf_c00347{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);}
.md8_c00347{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);}
.m2e_c00347{transform:matrix(0.151200,-0.001210,0.002000,0.249992,0,0);-ms-transform:matrix(0.151200,-0.001210,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151200,-0.001210,0.002000,0.249992,0,0);}
.md4_c00347{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);}
.m79_c00347{transform:matrix(0.153674,-0.001383,0.002250,0.249990,0,0);-ms-transform:matrix(0.153674,-0.001383,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153674,-0.001383,0.002250,0.249990,0,0);}
.mf_c00347{transform:matrix(0.154805,-0.002167,0.003500,0.249976,0,0);-ms-transform:matrix(0.154805,-0.002167,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154805,-0.002167,0.003500,0.249976,0,0);}
.m100_c00347{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);}
.md1_c00347{transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);}
.m81_c00347{transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);-ms-transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157659,-0.001419,0.002250,0.249990,0,0);}
.mc8_c00347{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);}
.m2f_c00347{transform:matrix(0.159400,-0.001275,0.002000,0.249992,0,0);-ms-transform:matrix(0.159400,-0.001275,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159400,-0.001275,0.002000,0.249992,0,0);}
.m3f_c00347{transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);-ms-transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159855,-0.001279,0.002000,0.249992,0,0);}
.m7f_c00347{transform:matrix(0.160454,-0.001444,0.002250,0.249990,0,0);-ms-transform:matrix(0.160454,-0.001444,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160454,-0.001444,0.002250,0.249990,0,0);}
.mf4_c00347{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);}
.me8_c00347{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);}
.md5_c00347{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);}
.m89_c00347{transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-ms-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);}
.mda_c00347{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);}
.mde_c00347{transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.163628,-0.001473,0.002250,0.249990,0,0);-ms-transform:matrix(0.163628,-0.001473,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163628,-0.001473,0.002250,0.249990,0,0);}
.mf3_c00347{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);}
.m1d_c00347{transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);-ms-transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);}
.m75_c00347{transform:matrix(0.164548,-0.001481,0.002250,0.249990,0,0);-ms-transform:matrix(0.164548,-0.001481,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164548,-0.001481,0.002250,0.249990,0,0);}
.mbc_c00347{transform:matrix(0.164803,-0.001483,0.002250,0.249990,0,0);-ms-transform:matrix(0.164803,-0.001483,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164803,-0.001483,0.002250,0.249990,0,0);}
.m55_c00347{transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);-ms-transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);}
.mea_c00347{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);}
.me3_c00347{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);}
.ma6_c00347{transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165573,-0.001490,0.002250,0.249990,0,0);}
.m22_c00347{transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);-ms-transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166015,-0.001328,0.002000,0.249992,0,0);}
.mfa_c00347{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);}
.mb7_c00347{transform:matrix(0.166558,-0.001499,0.002250,0.249990,0,0);-ms-transform:matrix(0.166558,-0.001499,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166558,-0.001499,0.002250,0.249990,0,0);}
.m82_c00347{transform:matrix(0.167733,-0.001510,0.002250,0.249990,0,0);-ms-transform:matrix(0.167733,-0.001510,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167733,-0.001510,0.002250,0.249990,0,0);}
.mdc_c00347{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);}
.m8c_c00347{transform:matrix(0.168083,-0.001513,0.002250,0.249990,0,0);-ms-transform:matrix(0.168083,-0.001513,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168083,-0.001513,0.002250,0.249990,0,0);}
.m77_c00347{transform:matrix(0.168093,-0.001513,0.002250,0.249990,0,0);-ms-transform:matrix(0.168093,-0.001513,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168093,-0.001513,0.002250,0.249990,0,0);}
.m3c_c00347{transform:matrix(0.168230,-0.001346,0.002000,0.249992,0,0);-ms-transform:matrix(0.168230,-0.001346,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168230,-0.001346,0.002000,0.249992,0,0);}
.m87_c00347{transform:matrix(0.168263,-0.001514,0.002250,0.249990,0,0);-ms-transform:matrix(0.168263,-0.001514,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168263,-0.001514,0.002250,0.249990,0,0);}
.m2d_c00347{transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);-ms-transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168300,-0.001346,0.002000,0.249992,0,0);}
.me1_c00347{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);}
.m5e_c00347{transform:matrix(0.169523,-0.001526,0.002250,0.249990,0,0);-ms-transform:matrix(0.169523,-0.001526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169523,-0.001526,0.002250,0.249990,0,0);}
.m3e_c00347{transform:matrix(0.169660,-0.001357,0.002000,0.249992,0,0);-ms-transform:matrix(0.169660,-0.001357,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169660,-0.001357,0.002000,0.249992,0,0);}
.ma1_c00347{transform:matrix(0.169683,-0.001527,0.002250,0.249990,0,0);-ms-transform:matrix(0.169683,-0.001527,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169683,-0.001527,0.002250,0.249990,0,0);}
.m1b_c00347{transform:matrix(0.170265,-0.001362,0.002000,0.249992,0,0);-ms-transform:matrix(0.170265,-0.001362,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170265,-0.001362,0.002000,0.249992,0,0);}
.m0_c00347{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);}
.m2c_c00347{transform:matrix(0.170750,-0.001366,0.002000,0.249992,0,0);-ms-transform:matrix(0.170750,-0.001366,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170750,-0.001366,0.002000,0.249992,0,0);}
.m93_c00347{transform:matrix(0.170808,-0.001537,0.002250,0.249990,0,0);-ms-transform:matrix(0.170808,-0.001537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170808,-0.001537,0.002250,0.249990,0,0);}
.m3a_c00347{transform:matrix(0.171270,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171270,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171270,-0.001370,0.002000,0.249992,0,0);}
.m24_c00347{transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);}
.m40_c00347{transform:matrix(0.171650,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171650,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171650,-0.001373,0.002000,0.249992,0,0);}
.m8b_c00347{transform:matrix(0.172413,-0.001552,0.002250,0.249990,0,0);-ms-transform:matrix(0.172413,-0.001552,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172413,-0.001552,0.002250,0.249990,0,0);}
.m11_c00347{transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);-ms-transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172748,-0.002418,0.003500,0.249976,0,0);}
.ma5_c00347{transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);-ms-transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172898,-0.001556,0.002250,0.249990,0,0);}
.m9c_c00347{transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);-ms-transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173993,-0.001566,0.002250,0.249990,0,0);}
.m6e_c00347{transform:matrix(0.174698,-0.001572,0.002250,0.249990,0,0);-ms-transform:matrix(0.174698,-0.001572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174698,-0.001572,0.002250,0.249990,0,0);}
.md9_c00347{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);}
.mf0_c00347{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);}
.m35_c00347{transform:matrix(0.175224,-0.001402,0.002000,0.249992,0,0);-ms-transform:matrix(0.175224,-0.001402,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175224,-0.001402,0.002000,0.249992,0,0);}
.mb4_c00347{transform:matrix(0.175588,-0.001580,0.002250,0.249990,0,0);-ms-transform:matrix(0.175588,-0.001580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175588,-0.001580,0.002250,0.249990,0,0);}
.m98_c00347{transform:matrix(0.175958,-0.001584,0.002250,0.249990,0,0);-ms-transform:matrix(0.175958,-0.001584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175958,-0.001584,0.002250,0.249990,0,0);}
.ma3_c00347{transform:matrix(0.176018,-0.001584,0.002250,0.249990,0,0);-ms-transform:matrix(0.176018,-0.001584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176018,-0.001584,0.002250,0.249990,0,0);}
.m17_c00347{transform:matrix(0.176019,-0.001408,0.002000,0.249992,0,0);-ms-transform:matrix(0.176019,-0.001408,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176019,-0.001408,0.002000,0.249992,0,0);}
.m16_c00347{transform:matrix(0.176109,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176109,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176109,-0.001409,0.002000,0.249992,0,0);}
.m8e_c00347{transform:matrix(0.176183,-0.001586,0.002250,0.249990,0,0);-ms-transform:matrix(0.176183,-0.001586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176183,-0.001586,0.002250,0.249990,0,0);}
.m46_c00347{transform:matrix(0.176339,-0.001411,0.002000,0.249992,0,0);-ms-transform:matrix(0.176339,-0.001411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176339,-0.001411,0.002000,0.249992,0,0);}
.m14_c00347{transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176549,-0.001412,0.002000,0.249992,0,0);}
.mb0_c00347{transform:matrix(0.177008,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.177008,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177008,-0.001593,0.002250,0.249990,0,0);}
.m66_c00347{transform:matrix(0.177013,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.177013,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177013,-0.001593,0.002250,0.249990,0,0);}
.m27_c00347{transform:matrix(0.177224,-0.001418,0.002000,0.249992,0,0);-ms-transform:matrix(0.177224,-0.001418,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177224,-0.001418,0.002000,0.249992,0,0);}
.m97_c00347{transform:matrix(0.177723,-0.001600,0.002250,0.249990,0,0);-ms-transform:matrix(0.177723,-0.001600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177723,-0.001600,0.002250,0.249990,0,0);}
.m4f_c00347{transform:matrix(0.177974,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.177974,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177974,-0.001424,0.002000,0.249992,0,0);}
.m5b_c00347{transform:matrix(0.178568,-0.001607,0.002250,0.249990,0,0);-ms-transform:matrix(0.178568,-0.001607,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178568,-0.001607,0.002250,0.249990,0,0);}
.m70_c00347{transform:matrix(0.179308,-0.001614,0.002250,0.249990,0,0);-ms-transform:matrix(0.179308,-0.001614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179308,-0.001614,0.002250,0.249990,0,0);}
.m63_c00347{transform:matrix(0.179613,-0.001617,0.002250,0.249990,0,0);-ms-transform:matrix(0.179613,-0.001617,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179613,-0.001617,0.002250,0.249990,0,0);}
.ma9_c00347{transform:matrix(0.179773,-0.001618,0.002250,0.249990,0,0);-ms-transform:matrix(0.179773,-0.001618,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179773,-0.001618,0.002250,0.249990,0,0);}
.mad_c00347{transform:matrix(0.180218,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180218,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180218,-0.001622,0.002250,0.249990,0,0);}
.me0_c00347{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);}
.mf1_c00347{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);}
.m20_c00347{transform:matrix(0.180684,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180684,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180684,-0.001445,0.002000,0.249992,0,0);}
.m9d_c00347{transform:matrix(0.181093,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181093,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181093,-0.001630,0.002250,0.249990,0,0);}
.m39_c00347{transform:matrix(0.181144,-0.001449,0.002000,0.249992,0,0);-ms-transform:matrix(0.181144,-0.001449,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181144,-0.001449,0.002000,0.249992,0,0);}
.mc3_c00347{transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-ms-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);}
.m32_c00347{transform:matrix(0.181354,-0.001451,0.002000,0.249992,0,0);-ms-transform:matrix(0.181354,-0.001451,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181354,-0.001451,0.002000,0.249992,0,0);}
.m62_c00347{transform:matrix(0.181533,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181533,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181533,-0.001634,0.002250,0.249990,0,0);}
.mcf_c00347{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);}
.m38_c00347{transform:matrix(0.181929,-0.001455,0.002000,0.249992,0,0);-ms-transform:matrix(0.181929,-0.001455,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181929,-0.001455,0.002000,0.249992,0,0);}
.m15_c00347{transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182244,-0.001458,0.002000,0.249992,0,0);}
.mef_c00347{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);}
.mae_c00347{transform:matrix(0.182613,-0.001644,0.002250,0.249990,0,0);-ms-transform:matrix(0.182613,-0.001644,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182613,-0.001644,0.002250,0.249990,0,0);}
.m95_c00347{transform:matrix(0.182723,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182723,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182723,-0.001645,0.002250,0.249990,0,0);}
.ma4_c00347{transform:matrix(0.183688,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183688,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183688,-0.001653,0.002250,0.249990,0,0);}
.mdb_c00347{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);}
.m30_c00347{transform:matrix(0.184154,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184154,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184154,-0.001473,0.002000,0.249992,0,0);}
.mc2_c00347{transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);-ms-transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184498,-0.001660,0.002250,0.249990,0,0);}
.maf_c00347{transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184808,-0.001663,0.002250,0.249990,0,0);}
.m85_c00347{transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);}
.m84_c00347{transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-ms-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);}
.mac_c00347{transform:matrix(0.185627,-0.001671,0.002250,0.249990,0,0);-ms-transform:matrix(0.185627,-0.001671,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185627,-0.001671,0.002250,0.249990,0,0);}
.ma8_c00347{transform:matrix(0.185997,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.185997,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185997,-0.001674,0.002250,0.249990,0,0);}
.mdd_c00347{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m10a_c00347{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);}
.m8a_c00347{transform:matrix(0.186222,-0.001676,0.002250,0.249990,0,0);-ms-transform:matrix(0.186222,-0.001676,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186222,-0.001676,0.002250,0.249990,0,0);}
.m9f_c00347{transform:matrix(0.187757,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187757,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187757,-0.001690,0.002250,0.249990,0,0);}
.meb_c00347{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);}
.m7c_c00347{transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-ms-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);}
.m58_c00347{transform:matrix(0.188597,-0.001697,0.002250,0.249990,0,0);-ms-transform:matrix(0.188597,-0.001697,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188597,-0.001697,0.002250,0.249990,0,0);}
.m68_c00347{transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);-ms-transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188797,-0.001699,0.002250,0.249990,0,0);}
.m42_c00347{transform:matrix(0.189319,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189319,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189319,-0.001515,0.002000,0.249992,0,0);}
.m69_c00347{transform:matrix(0.189617,-0.001707,0.002250,0.249990,0,0);-ms-transform:matrix(0.189617,-0.001707,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189617,-0.001707,0.002250,0.249990,0,0);}
.m9e_c00347{transform:matrix(0.190627,-0.001716,0.002250,0.249990,0,0);-ms-transform:matrix(0.190627,-0.001716,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190627,-0.001716,0.002250,0.249990,0,0);}
.m78_c00347{transform:matrix(0.190807,-0.001717,0.002250,0.249990,0,0);-ms-transform:matrix(0.190807,-0.001717,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190807,-0.001717,0.002250,0.249990,0,0);}
.m61_c00347{transform:matrix(0.190827,-0.001717,0.002250,0.249990,0,0);-ms-transform:matrix(0.190827,-0.001717,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190827,-0.001717,0.002250,0.249990,0,0);}
.m7b_c00347{transform:matrix(0.191862,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191862,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191862,-0.001727,0.002250,0.249990,0,0);}
.m80_c00347{transform:matrix(0.192437,-0.001732,0.002250,0.249990,0,0);-ms-transform:matrix(0.192437,-0.001732,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192437,-0.001732,0.002250,0.249990,0,0);}
.m7d_c00347{transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);-ms-transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);}
.md6_c00347{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);}
.m3b_c00347{transform:matrix(0.193134,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193134,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193134,-0.001545,0.002000,0.249992,0,0);}
.me7_c00347{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);}
.ma2_c00347{transform:matrix(0.193897,-0.001745,0.002250,0.249990,0,0);-ms-transform:matrix(0.193897,-0.001745,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193897,-0.001745,0.002250,0.249990,0,0);}
.mec_c00347{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);}
.m47_c00347{transform:matrix(0.194429,-0.001555,0.002000,0.249992,0,0);-ms-transform:matrix(0.194429,-0.001555,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194429,-0.001555,0.002000,0.249992,0,0);}
.m34_c00347{transform:matrix(0.194714,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194714,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194714,-0.001558,0.002000,0.249992,0,0);}
.m43_c00347{transform:matrix(0.195089,-0.001561,0.002000,0.249992,0,0);-ms-transform:matrix(0.195089,-0.001561,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195089,-0.001561,0.002000,0.249992,0,0);}
.m36_c00347{transform:matrix(0.195399,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195399,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195399,-0.001563,0.002000,0.249992,0,0);}
.mbe_c00347{transform:matrix(0.195472,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195472,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195472,-0.001759,0.002250,0.249990,0,0);}
.mbf_c00347{transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);}
.mb8_c00347{transform:matrix(0.196092,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196092,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196092,-0.001765,0.002250,0.249990,0,0);}
.m101_c00347{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);}
.m94_c00347{transform:matrix(0.196777,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196777,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196777,-0.001771,0.002250,0.249990,0,0);}
.m76_c00347{transform:matrix(0.196962,-0.001773,0.002250,0.249990,0,0);-ms-transform:matrix(0.196962,-0.001773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196962,-0.001773,0.002250,0.249990,0,0);}
.m83_c00347{transform:matrix(0.197522,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197522,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197522,-0.001778,0.002250,0.249990,0,0);}
.maa_c00347{transform:matrix(0.198067,-0.001783,0.002250,0.249990,0,0);-ms-transform:matrix(0.198067,-0.001783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198067,-0.001783,0.002250,0.249990,0,0);}
.m4d_c00347{transform:matrix(0.198884,-0.001591,0.002000,0.249992,0,0);-ms-transform:matrix(0.198884,-0.001591,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198884,-0.001591,0.002000,0.249992,0,0);}
.mb6_c00347{transform:matrix(0.199382,-0.001794,0.002250,0.249990,0,0);-ms-transform:matrix(0.199382,-0.001794,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199382,-0.001794,0.002250,0.249990,0,0);}
.m72_c00347{transform:matrix(0.199662,-0.001797,0.002250,0.249990,0,0);-ms-transform:matrix(0.199662,-0.001797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199662,-0.001797,0.002250,0.249990,0,0);}
.m90_c00347{transform:matrix(0.199907,-0.001799,0.002250,0.249990,0,0);-ms-transform:matrix(0.199907,-0.001799,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199907,-0.001799,0.002250,0.249990,0,0);}
.me6_c00347{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);}
.m2b_c00347{transform:matrix(0.200524,-0.001604,0.002000,0.249992,0,0);-ms-transform:matrix(0.200524,-0.001604,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200524,-0.001604,0.002000,0.249992,0,0);}
.mbb_c00347{transform:matrix(0.200592,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200592,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200592,-0.001805,0.002250,0.249990,0,0);}
.m88_c00347{transform:matrix(0.202037,-0.001818,0.002250,0.249990,0,0);-ms-transform:matrix(0.202037,-0.001818,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202037,-0.001818,0.002250,0.249990,0,0);}
.m104_c00347{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);}
.m86_c00347{transform:matrix(0.202697,-0.001824,0.002250,0.249990,0,0);-ms-transform:matrix(0.202697,-0.001824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202697,-0.001824,0.002250,0.249990,0,0);}
.m1c_c00347{transform:matrix(0.203348,-0.001627,0.002000,0.249992,0,0);-ms-transform:matrix(0.203348,-0.001627,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203348,-0.001627,0.002000,0.249992,0,0);}
.me5_c00347{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);}
.m54_c00347{transform:matrix(0.204292,-0.001839,0.002250,0.249990,0,0);-ms-transform:matrix(0.204292,-0.001839,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204292,-0.001839,0.002250,0.249990,0,0);}
.m60_c00347{transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);-ms-transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);}
.m6b_c00347{transform:matrix(0.205287,-0.001848,0.002250,0.249990,0,0);-ms-transform:matrix(0.205287,-0.001848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205287,-0.001848,0.002250,0.249990,0,0);}
.m4b_c00347{transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205513,-0.001644,0.002000,0.249992,0,0);}
.m19_c00347{transform:matrix(0.205518,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205518,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205518,-0.001644,0.002000,0.249992,0,0);}
.me4_c00347{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);}
.m48_c00347{transform:matrix(0.205803,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205803,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205803,-0.001646,0.002000,0.249992,0,0);}
.m49_c00347{transform:matrix(0.206538,-0.001652,0.002000,0.249992,0,0);-ms-transform:matrix(0.206538,-0.001652,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206538,-0.001652,0.002000,0.249992,0,0);}
.m1f_c00347{transform:matrix(0.206643,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206643,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206643,-0.001653,0.002000,0.249992,0,0);}
.mc1_c00347{transform:matrix(0.206897,-0.001862,0.002250,0.249990,0,0);-ms-transform:matrix(0.206897,-0.001862,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206897,-0.001862,0.002250,0.249990,0,0);}
.me2_c00347{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);}
.med_c00347{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);}
.m29_c00347{transform:matrix(0.208913,-0.001671,0.002000,0.249992,0,0);-ms-transform:matrix(0.208913,-0.001671,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208913,-0.001671,0.002000,0.249992,0,0);}
.mf9_c00347{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);}
.m21_c00347{transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);}
.md0_c00347{transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);}
.m5a_c00347{transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);-ms-transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);}
.m44_c00347{transform:matrix(0.210398,-0.001683,0.002000,0.249992,0,0);-ms-transform:matrix(0.210398,-0.001683,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210398,-0.001683,0.002000,0.249992,0,0);}
.m28_c00347{transform:matrix(0.210493,-0.001684,0.002000,0.249992,0,0);-ms-transform:matrix(0.210493,-0.001684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210493,-0.001684,0.002000,0.249992,0,0);}
.m8f_c00347{transform:matrix(0.210721,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210721,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210721,-0.001896,0.002250,0.249990,0,0);}
.md7_c00347{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);}
.m91_c00347{transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212301,-0.001911,0.002250,0.249990,0,0);}
.ma0_c00347{transform:matrix(0.213321,-0.001920,0.002250,0.249990,0,0);-ms-transform:matrix(0.213321,-0.001920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213321,-0.001920,0.002250,0.249990,0,0);}
.m7a_c00347{transform:matrix(0.213396,-0.001921,0.002250,0.249990,0,0);-ms-transform:matrix(0.213396,-0.001921,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213396,-0.001921,0.002250,0.249990,0,0);}
.m6f_c00347{transform:matrix(0.214731,-0.001933,0.002250,0.249990,0,0);-ms-transform:matrix(0.214731,-0.001933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214731,-0.001933,0.002250,0.249990,0,0);}
.m56_c00347{transform:matrix(0.214791,-0.001933,0.002250,0.249990,0,0);-ms-transform:matrix(0.214791,-0.001933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214791,-0.001933,0.002250,0.249990,0,0);}
.m25_c00347{transform:matrix(0.214793,-0.001718,0.002000,0.249992,0,0);-ms-transform:matrix(0.214793,-0.001718,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214793,-0.001718,0.002000,0.249992,0,0);}
.mee_c00347{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);}
.m6d_c00347{transform:matrix(0.214841,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214841,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214841,-0.001934,0.002250,0.249990,0,0);}
.m96_c00347{transform:matrix(0.215741,-0.001942,0.002250,0.249990,0,0);-ms-transform:matrix(0.215741,-0.001942,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215741,-0.001942,0.002250,0.249990,0,0);}
.m41_c00347{transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216093,-0.001729,0.002000,0.249992,0,0);}
.m4c_c00347{transform:matrix(0.216173,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216173,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216173,-0.001729,0.002000,0.249992,0,0);}
.mfc_c00347{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);}
.mc0_c00347{transform:matrix(0.217266,-0.001955,0.002250,0.249990,0,0);-ms-transform:matrix(0.217266,-0.001955,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217266,-0.001955,0.002250,0.249990,0,0);}
.md2_c00347{transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);}
.m53_c00347{transform:matrix(0.218371,-0.001965,0.002250,0.249990,0,0);-ms-transform:matrix(0.218371,-0.001965,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218371,-0.001965,0.002250,0.249990,0,0);}
.m67_c00347{transform:matrix(0.218756,-0.001969,0.002250,0.249990,0,0);-ms-transform:matrix(0.218756,-0.001969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218756,-0.001969,0.002250,0.249990,0,0);}
.m57_c00347{transform:matrix(0.219276,-0.001973,0.002250,0.249990,0,0);-ms-transform:matrix(0.219276,-0.001973,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219276,-0.001973,0.002250,0.249990,0,0);}
.m45_c00347{transform:matrix(0.220043,-0.001760,0.002000,0.249992,0,0);-ms-transform:matrix(0.220043,-0.001760,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220043,-0.001760,0.002000,0.249992,0,0);}
.m23_c00347{transform:matrix(0.220573,-0.001765,0.002000,0.249992,0,0);-ms-transform:matrix(0.220573,-0.001765,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220573,-0.001765,0.002000,0.249992,0,0);}
.m6_c00347{transform:matrix(0.224278,-0.003140,0.003500,0.249976,0,0);-ms-transform:matrix(0.224278,-0.003140,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224278,-0.003140,0.003500,0.249976,0,0);}
.m4a_c00347{transform:matrix(0.225108,-0.001801,0.002000,0.249992,0,0);-ms-transform:matrix(0.225108,-0.001801,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225108,-0.001801,0.002000,0.249992,0,0);}
.m7e_c00347{transform:matrix(0.226126,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226126,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226126,-0.002035,0.002250,0.249990,0,0);}
.m5f_c00347{transform:matrix(0.226161,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226161,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226161,-0.002035,0.002250,0.249990,0,0);}
.m65_c00347{transform:matrix(0.227506,-0.002048,0.002250,0.249990,0,0);-ms-transform:matrix(0.227506,-0.002048,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227506,-0.002048,0.002250,0.249990,0,0);}
.mf8_c00347{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);}
.m6c_c00347{transform:matrix(0.227781,-0.002050,0.002250,0.249990,0,0);-ms-transform:matrix(0.227781,-0.002050,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227781,-0.002050,0.002250,0.249990,0,0);}
.m5d_c00347{transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);-ms-transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);}
.m103_c00347{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);}
.mb9_c00347{transform:matrix(0.229686,-0.002067,0.002250,0.249990,0,0);-ms-transform:matrix(0.229686,-0.002067,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229686,-0.002067,0.002250,0.249990,0,0);}
.mb2_c00347{transform:matrix(0.231701,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231701,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231701,-0.002085,0.002250,0.249990,0,0);}
.m26_c00347{transform:matrix(0.232763,-0.001862,0.002000,0.249992,0,0);-ms-transform:matrix(0.232763,-0.001862,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232763,-0.001862,0.002000,0.249992,0,0);}
.m59_c00347{transform:matrix(0.233876,-0.002105,0.002250,0.249990,0,0);-ms-transform:matrix(0.233876,-0.002105,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233876,-0.002105,0.002250,0.249990,0,0);}
.m64_c00347{transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);-ms-transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);}
.mfb_c00347{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);}
.m106_c00347{transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);}
.m10b_c00347{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);}
.m3d_c00347{transform:matrix(0.239057,-0.001912,0.002000,0.249992,0,0);-ms-transform:matrix(0.239057,-0.001912,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239057,-0.001912,0.002000,0.249992,0,0);}
.m102_c00347{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);}
.m2_c00347{transform:matrix(0.240541,-0.003368,0.003500,0.249976,0,0);-ms-transform:matrix(0.240541,-0.003368,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240541,-0.003368,0.003500,0.249976,0,0);}
.m1e_c00347{transform:matrix(0.240647,-0.001925,0.002000,0.249992,0,0);-ms-transform:matrix(0.240647,-0.001925,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240647,-0.001925,0.002000,0.249992,0,0);}
.mab_c00347{transform:matrix(0.240815,-0.002167,0.002250,0.249990,0,0);-ms-transform:matrix(0.240815,-0.002167,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240815,-0.002167,0.002250,0.249990,0,0);}
.mba_c00347{transform:matrix(0.240860,-0.002168,0.002250,0.249990,0,0);-ms-transform:matrix(0.240860,-0.002168,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240860,-0.002168,0.002250,0.249990,0,0);}
.m2a_c00347{transform:matrix(0.241152,-0.001929,0.002000,0.249992,0,0);-ms-transform:matrix(0.241152,-0.001929,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241152,-0.001929,0.002000,0.249992,0,0);}
.mb5_c00347{transform:matrix(0.243030,-0.002187,0.002250,0.249990,0,0);-ms-transform:matrix(0.243030,-0.002187,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243030,-0.002187,0.002250,0.249990,0,0);}
.m9b_c00347{transform:matrix(0.243240,-0.002189,0.002250,0.249990,0,0);-ms-transform:matrix(0.243240,-0.002189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243240,-0.002189,0.002250,0.249990,0,0);}
.m4e_c00347{transform:matrix(0.243762,-0.001950,0.002000,0.249992,0,0);-ms-transform:matrix(0.243762,-0.001950,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243762,-0.001950,0.002000,0.249992,0,0);}
.ma_c00347{transform:matrix(0.246381,-0.003449,0.003500,0.249976,0,0);-ms-transform:matrix(0.246381,-0.003449,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246381,-0.003449,0.003500,0.249976,0,0);}
.m6a_c00347{transform:matrix(0.249095,-0.002242,0.002250,0.249990,0,0);-ms-transform:matrix(0.249095,-0.002242,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249095,-0.002242,0.002250,0.249990,0,0);}
.m9a_c00347{transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);-ms-transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249570,-0.002246,0.002250,0.249990,0,0);}
.m3_c00347{transform:matrix(0.250485,-0.003507,0.003500,0.249976,0,0);-ms-transform:matrix(0.250485,-0.003507,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250485,-0.003507,0.003500,0.249976,0,0);}
.m107_c00347{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.mf5_c00347{transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{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);}
.mb1_c00347{transform:matrix(0.262569,-0.002363,0.002250,0.249990,0,0);-ms-transform:matrix(0.262569,-0.002363,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262569,-0.002363,0.002250,0.249990,0,0);}
.m1_c00347{transform:matrix(0.271833,-0.003806,0.003500,0.249976,0,0);-ms-transform:matrix(0.271833,-0.003806,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271833,-0.003806,0.003500,0.249976,0,0);}
.m92_c00347{transform:matrix(0.284083,-0.002557,0.002250,0.249990,0,0);-ms-transform:matrix(0.284083,-0.002557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284083,-0.002557,0.002250,0.249990,0,0);}
.mbd_c00347{transform:matrix(0.285238,-0.002567,0.002250,0.249990,0,0);-ms-transform:matrix(0.285238,-0.002567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285238,-0.002567,0.002250,0.249990,0,0);}
.ma7_c00347{transform:matrix(0.294988,-0.002655,0.002250,0.249990,0,0);-ms-transform:matrix(0.294988,-0.002655,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294988,-0.002655,0.002250,0.249990,0,0);}
.m52_c00347{transform:matrix(0.297438,-0.002677,0.002250,0.249990,0,0);-ms-transform:matrix(0.297438,-0.002677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297438,-0.002677,0.002250,0.249990,0,0);}
.mb3_c00347{transform:matrix(0.299553,-0.002696,0.002250,0.249990,0,0);-ms-transform:matrix(0.299553,-0.002696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.299553,-0.002696,0.002250,0.249990,0,0);}
.md3_c00347{transform:matrix(0.305835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305835,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.316214,-0.004427,0.003500,0.249976,0,0);-ms-transform:matrix(0.316214,-0.004427,0.003500,0.249976,0,0);-webkit-transform:matrix(0.316214,-0.004427,0.003500,0.249976,0,0);}
.mc7_c00347{transform:matrix(0.316925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00347{transform:matrix(0.317745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317745,0.000000,0.000000,0.250000,0,0);}
.m74_c00347{transform:matrix(0.326712,-0.002940,0.002250,0.249990,0,0);-ms-transform:matrix(0.326712,-0.002940,0.002250,0.249990,0,0);-webkit-transform:matrix(0.326712,-0.002940,0.002250,0.249990,0,0);}
.mf6_c00347{transform:matrix(0.343520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343520,0.000000,0.000000,0.250000,0,0);}
.mf2_c00347{transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);}
.mf7_c00347{transform:matrix(0.366145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366145,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.375558,-0.005258,0.003500,0.249976,0,0);-ms-transform:matrix(0.375558,-0.005258,0.003500,0.249976,0,0);-webkit-transform:matrix(0.375558,-0.005258,0.003500,0.249976,0,0);}
.m10_c00347{transform:matrix(0.413614,-0.005791,0.003500,0.249976,0,0);-ms-transform:matrix(0.413614,-0.005791,0.003500,0.249976,0,0);-webkit-transform:matrix(0.413614,-0.005791,0.003500,0.249976,0,0);}
.m5_c00347{transform:matrix(0.483048,-0.006763,0.003500,0.249976,0,0);-ms-transform:matrix(0.483048,-0.006763,0.003500,0.249976,0,0);-webkit-transform:matrix(0.483048,-0.006763,0.003500,0.249976,0,0);}
.m12_c00347{transform:matrix(0.490722,-0.006870,0.003500,0.249976,0,0);-ms-transform:matrix(0.490722,-0.006870,0.003500,0.249976,0,0);-webkit-transform:matrix(0.490722,-0.006870,0.003500,0.249976,0,0);}
.mca_c00347{transform:matrix(0.507255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507255,0.000000,0.000000,0.250000,0,0);}
.mc5_c00347{transform:matrix(0.508385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508385,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.538262,-0.007536,0.003500,0.249976,0,0);-ms-transform:matrix(0.538262,-0.007536,0.003500,0.249976,0,0);-webkit-transform:matrix(0.538262,-0.007536,0.003500,0.249976,0,0);}
.m9_c00347{transform:matrix(0.684473,-0.009583,0.003500,0.249976,0,0);-ms-transform:matrix(0.684473,-0.009583,0.003500,0.249976,0,0);-webkit-transform:matrix(0.684473,-0.009583,0.003500,0.249976,0,0);}
.m7_c00347{transform:matrix(0.730198,-0.010223,0.003500,0.249976,0,0);-ms-transform:matrix(0.730198,-0.010223,0.003500,0.249976,0,0);-webkit-transform:matrix(0.730198,-0.010223,0.003500,0.249976,0,0);}
.mcb_c00347{transform:matrix(0.738535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738535,0.000000,0.000000,0.250000,0,0);}
.m105_c00347{transform:matrix(0.939940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939940,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;}
.fs13_c00347{font-size:15.750000px;}
.fs2_c00347{font-size:21.002058px;}
.fs18_c00347{font-size:27.300000px;}
.fs0_c00347{font-size:33.600000px;}
.fs15_c00347{font-size:51.450000px;}
.fs14_c00347{font-size:54.600000px;}
.fs8_c00347{font-size:63.002016px;}
.fsa_c00347{font-size:63.002551px;}
.fs5_c00347{font-size:64.052050px;}
.fs11_c00347{font-size:64.052594px;}
.fs16_c00347{font-size:66.150000px;}
.fsb_c00347{font-size:66.152679px;}
.fs9_c00347{font-size:68.252184px;}
.fsc_c00347{font-size:68.252764px;}
.fs12_c00347{font-size:69.300000px;}
.fsf_c00347{font-size:69.302807px;}
.fs7_c00347{font-size:70.352251px;}
.fse_c00347{font-size:70.352849px;}
.fs1_c00347{font-size:70.356894px;}
.fsd_c00347{font-size:71.402892px;}
.fs4_c00347{font-size:72.452318px;}
.fs10_c00347{font-size:72.452934px;}
.fs6_c00347{font-size:73.502352px;}
.fs3_c00347{font-size:107.110495px;}
.fs17_c00347{font-size:204.750000px;}
.y0_c00347{bottom:0.000000px;}
.ydf_c00347{bottom:103.152000px;}
.ye0_c00347{bottom:103.242000px;}
.yde_c00347{bottom:103.962000px;}
.ydd_c00347{bottom:105.844500px;}
.ydc_c00347{bottom:124.285500px;}
.ydb_c00347{bottom:152.197500px;}
.yda_c00347{bottom:170.227500px;}
.yd9_c00347{bottom:170.317500px;}
.yd8_c00347{bottom:170.601000px;}
.yd7_c00347{bottom:170.826000px;}
.yd6_c00347{bottom:170.920500px;}
.yd5_c00347{bottom:171.030000px;}
.yd4_c00347{bottom:171.598500px;}
.yd3_c00347{bottom:171.759000px;}
.yd2_c00347{bottom:171.867000px;}
.yd1_c00347{bottom:171.993000px;}
.yd0_c00347{bottom:172.228500px;}
.ycf_c00347{bottom:172.519500px;}
.yce_c00347{bottom:172.774500px;}
.ycd_c00347{bottom:172.965000px;}
.ycc_c00347{bottom:173.425500px;}
.ycb_c00347{bottom:173.613000px;}
.yca_c00347{bottom:173.881500px;}
.yc9_c00347{bottom:190.026000px;}
.yc8_c00347{bottom:207.823500px;}
.yc7_c00347{bottom:215.713500px;}
.yc6_c00347{bottom:261.916500px;}
.ybd_c00347{bottom:489.840781px;}
.ybe_c00347{bottom:489.841278px;}
.ybf_c00347{bottom:489.841908px;}
.yc0_c00347{bottom:489.842181px;}
.yc1_c00347{bottom:489.842228px;}
.yc4_c00347{bottom:489.842277px;}
.yc5_c00347{bottom:489.842330px;}
.yc3_c00347{bottom:489.842350px;}
.yc2_c00347{bottom:489.842947px;}
.yb7_c00347{bottom:513.340494px;}
.yb8_c00347{bottom:513.340857px;}
.yb0_c00347{bottom:513.341055px;}
.yb6_c00347{bottom:513.341061px;}
.yb5_c00347{bottom:513.341481px;}
.yb9_c00347{bottom:513.341533px;}
.yba_c00347{bottom:513.341550px;}
.yb2_c00347{bottom:513.341598px;}
.yb1_c00347{bottom:513.341701px;}
.yb4_c00347{bottom:513.341781px;}
.ybb_c00347{bottom:513.341823px;}
.yb3_c00347{bottom:513.342048px;}
.ybc_c00347{bottom:513.342333px;}
.ya4_c00347{bottom:534.592695px;}
.ya5_c00347{bottom:535.003084px;}
.ya6_c00347{bottom:535.321672px;}
.ya7_c00347{bottom:535.632565px;}
.ya8_c00347{bottom:536.064606px;}
.ya9_c00347{bottom:536.178153px;}
.yaa_c00347{bottom:536.497239px;}
.yab_c00347{bottom:536.803596px;}
.yac_c00347{bottom:537.043650px;}
.yad_c00347{bottom:537.417540px;}
.yae_c00347{bottom:537.878157px;}
.yaf_c00347{bottom:538.314356px;}
.y99_c00347{bottom:557.543322px;}
.y9a_c00347{bottom:557.937360px;}
.y9b_c00347{bottom:558.277614px;}
.y9c_c00347{bottom:558.681156px;}
.y9d_c00347{bottom:558.904514px;}
.y9e_c00347{bottom:559.128168px;}
.y9f_c00347{bottom:559.847421px;}
.ya0_c00347{bottom:560.508003px;}
.ya1_c00347{bottom:560.860650px;}
.ya2_c00347{bottom:561.409519px;}
.ya3_c00347{bottom:561.662928px;}
.y8c_c00347{bottom:580.496263px;}
.y8d_c00347{bottom:580.707120px;}
.y8e_c00347{bottom:581.002503px;}
.y8f_c00347{bottom:581.108518px;}
.y90_c00347{bottom:581.326922px;}
.y91_c00347{bottom:581.716927px;}
.y92_c00347{bottom:581.946426px;}
.y93_c00347{bottom:582.581279px;}
.y94_c00347{bottom:582.751952px;}
.y95_c00347{bottom:582.929022px;}
.y96_c00347{bottom:583.218696px;}
.y97_c00347{bottom:583.979826px;}
.y98_c00347{bottom:584.190359px;}
.y80_c00347{bottom:603.177439px;}
.y81_c00347{bottom:603.630288px;}
.y82_c00347{bottom:604.014740px;}
.y83_c00347{bottom:604.190784px;}
.y84_c00347{bottom:605.035361px;}
.y85_c00347{bottom:605.275698px;}
.y86_c00347{bottom:605.861535px;}
.y87_c00347{bottom:606.071778px;}
.y88_c00347{bottom:606.698363px;}
.y89_c00347{bottom:606.906904px;}
.y8a_c00347{bottom:607.279731px;}
.y8b_c00347{bottom:607.446999px;}
.y73_c00347{bottom:625.858570px;}
.y74_c00347{bottom:626.069967px;}
.y75_c00347{bottom:626.208950px;}
.y76_c00347{bottom:626.320338px;}
.y77_c00347{bottom:626.694558px;}
.y78_c00347{bottom:627.107712px;}
.y79_c00347{bottom:627.486751px;}
.y7a_c00347{bottom:627.707895px;}
.y7b_c00347{bottom:627.870745px;}
.y7c_c00347{bottom:628.686888px;}
.y7d_c00347{bottom:629.068398px;}
.y7e_c00347{bottom:629.477057px;}
.y7f_c00347{bottom:629.792970px;}
.y67_c00347{bottom:649.617918px;}
.y68_c00347{bottom:649.777321px;}
.y69_c00347{bottom:650.300418px;}
.y6a_c00347{bottom:650.450685px;}
.y6b_c00347{bottom:650.799384px;}
.y6c_c00347{bottom:650.932119px;}
.y6d_c00347{bottom:651.240006px;}
.y6e_c00347{bottom:651.510699px;}
.y6f_c00347{bottom:651.856119px;}
.y70_c00347{bottom:652.015536px;}
.y71_c00347{bottom:652.512126px;}
.y72_c00347{bottom:652.933422px;}
.y5d_c00347{bottom:672.570626px;}
.y5e_c00347{bottom:672.667733px;}
.y5f_c00347{bottom:672.997563px;}
.y60_c00347{bottom:673.690552px;}
.y61_c00347{bottom:674.264703px;}
.y62_c00347{bottom:674.630751px;}
.y63_c00347{bottom:674.838517px;}
.y64_c00347{bottom:675.257397px;}
.y65_c00347{bottom:675.518481px;}
.y66_c00347{bottom:675.908811px;}
.y53_c00347{bottom:695.521500px;}
.y54_c00347{bottom:695.686753px;}
.y55_c00347{bottom:696.294267px;}
.y56_c00347{bottom:696.468849px;}
.y57_c00347{bottom:696.646279px;}
.y58_c00347{bottom:696.926134px;}
.y59_c00347{bottom:697.779118px;}
.y5a_c00347{bottom:698.160939px;}
.y5b_c00347{bottom:698.879976px;}
.y5c_c00347{bottom:699.387819px;}
.y52_c00347{bottom:719.271456px;}
.y51_c00347{bottom:719.271708px;}
.y50_c00347{bottom:719.271960px;}
.y4f_c00347{bottom:719.272200px;}
.y4e_c00347{bottom:719.272824px;}
.y4c_c00347{bottom:744.196512px;}
.y4a_c00347{bottom:744.196536px;}
.y4d_c00347{bottom:744.196860px;}
.y4b_c00347{bottom:744.197004px;}
.y49_c00347{bottom:744.197220px;}
.y46_c00347{bottom:744.197736px;}
.y47_c00347{bottom:744.197844px;}
.y48_c00347{bottom:744.197892px;}
.y45_c00347{bottom:744.198468px;}
.y44_c00347{bottom:744.199020px;}
.y43_c00347{bottom:744.199392px;}
.y42_c00347{bottom:744.199944px;}
.y36_c00347{bottom:764.639064px;}
.y37_c00347{bottom:765.013704px;}
.y38_c00347{bottom:765.271152px;}
.y39_c00347{bottom:765.477240px;}
.y3a_c00347{bottom:765.798192px;}
.y3b_c00347{bottom:766.251420px;}
.y3c_c00347{bottom:766.864872px;}
.y3d_c00347{bottom:767.142888px;}
.y3e_c00347{bottom:767.694708px;}
.y3f_c00347{bottom:767.861856px;}
.y40_c00347{bottom:768.203820px;}
.y41_c00347{bottom:768.582888px;}
.y2b_c00347{bottom:786.779532px;}
.y2c_c00347{bottom:787.010532px;}
.y2d_c00347{bottom:787.447224px;}
.y2e_c00347{bottom:787.879572px;}
.y2f_c00347{bottom:788.239860px;}
.y30_c00347{bottom:788.577780px;}
.y31_c00347{bottom:789.197388px;}
.y32_c00347{bottom:789.481656px;}
.y33_c00347{bottom:789.837876px;}
.y34_c00347{bottom:790.589580px;}
.y35_c00347{bottom:790.939644px;}
.y1f_c00347{bottom:810.270708px;}
.y20_c00347{bottom:810.463044px;}
.y21_c00347{bottom:810.974952px;}
.y22_c00347{bottom:811.393980px;}
.y23_c00347{bottom:811.635960px;}
.y24_c00347{bottom:811.767720px;}
.y25_c00347{bottom:811.871460px;}
.y26_c00347{bottom:812.374428px;}
.y27_c00347{bottom:812.668140px;}
.y28_c00347{bottom:812.789436px;}
.y29_c00347{bottom:813.095952px;}
.y2a_c00347{bottom:813.748584px;}
.y15_c00347{bottom:833.221500px;}
.y16_c00347{bottom:833.359752px;}
.y17_c00347{bottom:833.960184px;}
.y18_c00347{bottom:834.197868px;}
.y19_c00347{bottom:834.567216px;}
.y1a_c00347{bottom:834.744456px;}
.y1b_c00347{bottom:835.385904px;}
.y1c_c00347{bottom:835.573872px;}
.y1d_c00347{bottom:836.284488px;}
.y1e_c00347{bottom:836.601984px;}
.y12_c00347{bottom:872.914092px;}
.y13_c00347{bottom:875.547342px;}
.y14_c00347{bottom:885.741696px;}
.yc_c00347{bottom:902.078208px;}
.y1_c00347{bottom:905.310000px;}
.yd_c00347{bottom:905.858943px;}
.ye_c00347{bottom:908.845257px;}
.yf_c00347{bottom:913.013595px;}
.y10_c00347{bottom:913.472856px;}
.y11_c00347{bottom:917.920029px;}
.y2_c00347{bottom:933.663000px;}
.y3_c00347{bottom:934.370049px;}
.y4_c00347{bottom:934.789209px;}
.y5_c00347{bottom:935.159775px;}
.y6_c00347{bottom:935.904624px;}
.y7_c00347{bottom:937.238838px;}
.y8_c00347{bottom:937.889565px;}
.y9_c00347{bottom:940.338774px;}
.ya_c00347{bottom:940.701402px;}
.yb_c00347{bottom:941.764380px;}
.h15_c00347{height:15.750000px;}
.h4_c00347{height:21.002058px;}
.h1a_c00347{height:27.300000px;}
.h2_c00347{height:33.600000px;}
.h17_c00347{height:51.450000px;}
.h16_c00347{height:54.600000px;}
.ha_c00347{height:63.002016px;}
.hc_c00347{height:63.002551px;}
.h7_c00347{height:64.052050px;}
.h13_c00347{height:64.052594px;}
.h18_c00347{height:66.150000px;}
.hd_c00347{height:66.152679px;}
.hb_c00347{height:68.252184px;}
.he_c00347{height:68.252764px;}
.h14_c00347{height:69.300000px;}
.h11_c00347{height:69.302807px;}
.h9_c00347{height:70.352251px;}
.h10_c00347{height:70.352849px;}
.h3_c00347{height:70.356894px;}
.hf_c00347{height:71.402892px;}
.h6_c00347{height:72.452318px;}
.h12_c00347{height:72.452934px;}
.h8_c00347{height:73.502352px;}
.h5_c00347{height:107.110495px;}
.h19_c00347{height:204.750000px;}
.h0_c00347{height:1008.450000px;}
.h1_c00347{height:1008.750000px;}
.w0_c00347{width:696.000000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:103.356000px;}
.xc_c00347{left:104.920407px;}
.x1_c00347{left:108.270000px;}
.x4d_c00347{left:147.817593px;}
.x78_c00347{left:151.845120px;}
.x3_c00347{left:153.859500px;}
.x1f_c00347{left:159.133956px;}
.x2d_c00347{left:160.231056px;}
.x15_c00347{left:161.299500px;}
.x12_c00347{left:162.795966px;}
.x9f_c00347{left:164.700000px;}
.x94_c00347{left:165.780000px;}
.x16_c00347{left:178.581000px;}
.x4_c00347{left:183.799500px;}
.x58_c00347{left:185.332604px;}
.x38_c00347{left:188.999904px;}
.x46_c00347{left:196.405500px;}
.x99_c00347{left:198.925500px;}
.x59_c00347{left:200.775104px;}
.x2e_c00347{left:201.810720px;}
.x79_c00347{left:203.111079px;}
.x70_c00347{left:205.324367px;}
.x61_c00347{left:206.905292px;}
.x5_c00347{left:210.268500px;}
.x5a_c00347{left:213.151604px;}
.x9a_c00347{left:222.385500px;}
.x39_c00347{left:223.830636px;}
.x69_c00347{left:225.245411px;}
.x95_c00347{left:227.340000px;}
.x2f_c00347{left:230.428992px;}
.x26_c00347{left:232.885752px;}
.x8a_c00347{left:235.170000px;}
.x6a_c00347{left:238.525032px;}
.xd_c00347{left:239.946447px;}
.x71_c00347{left:243.130367px;}
.x62_c00347{left:245.288441px;}
.x20_c00347{left:247.164456px;}
.x43_c00347{left:248.399112px;}
.x17_c00347{left:253.635000px;}
.x5b_c00347{left:254.731604px;}
.x7e_c00347{left:257.311907px;}
.x50_c00347{left:259.559559px;}
.x6_c00347{left:263.472000px;}
.x3a_c00347{left:265.951836px;}
.x13_c00347{left:268.154754px;}
.xa4_c00347{left:273.421500px;}
.x7f_c00347{left:274.863324px;}
.x9b_c00347{left:279.913500px;}
.x27_c00347{left:280.928868px;}
.x18_c00347{left:283.345500px;}
.x4e_c00347{left:287.921862px;}
.x30_c00347{left:288.996024px;}
.x87_c00347{left:297.813665px;}
.x21_c00347{left:299.542956px;}
.x5c_c00347{left:300.637604px;}
.x47_c00347{left:303.019500px;}
.x8d_c00347{left:307.260000px;}
.x72_c00347{left:312.785867px;}
.x6b_c00347{left:314.626721px;}
.x8b_c00347{left:316.440000px;}
.x96_c00347{left:319.410000px;}
.x28_c00347{left:320.902044px;}
.x3b_c00347{left:322.113936px;}
.x8e_c00347{left:326.970000px;}
.x19_c00347{left:329.514000px;}
.x51_c00347{left:330.834842px;}
.x48_c00347{left:334.114500px;}
.x7a_c00347{left:335.725767px;}
.x73_c00347{left:337.636367px;}
.x31_c00347{left:339.274116px;}
.x5d_c00347{left:342.753104px;}
.xe_c00347{left:346.626552px;}
.x80_c00347{left:348.306278px;}
.x52_c00347{left:349.750179px;}
.x1a_c00347{left:351.669000px;}
.x8c_c00347{left:354.780000px;}
.x3c_c00347{left:357.754716px;}
.x7_c00347{left:358.773000px;}
.x81_c00347{left:363.427506px;}
.x5e_c00347{left:367.324604px;}
.x8f_c00347{left:368.550000px;}
.x63_c00347{left:371.393807px;}
.x97_c00347{left:381.240000px;}
.x5f_c00347{left:385.419103px;}
.x7b_c00347{left:389.963267px;}
.x53_c00347{left:393.793976px;}
.xa0_c00347{left:398.250000px;}
.xa6_c00347{left:399.870000px;}
.x9c_c00347{left:401.395500px;}
.x8_c00347{left:405.253500px;}
.x32_c00347{left:407.517576px;}
.x3d_c00347{left:409.326516px;}
.xa1_c00347{left:413.100000px;}
.x74_c00347{left:417.553367px;}
.x22_c00347{left:422.098956px;}
.x82_c00347{left:423.369366px;}
.x29_c00347{left:427.279692px;}
.x49_c00347{left:428.890500px;}
.x64_c00347{left:429.986280px;}
.x1b_c00347{left:431.850000px;}
.xa2_c00347{left:433.350000px;}
.x3e_c00347{left:436.056732px;}
.x33_c00347{left:438.331824px;}
.x6c_c00347{left:443.963882px;}
.x65_c00347{left:451.013091px;}
.x1c_c00347{left:455.346000px;}
.x23_c00347{left:458.812956px;}
.x88_c00347{left:461.170895px;}
.x90_c00347{left:463.050000px;}
.x6d_c00347{left:466.138584px;}
.x98_c00347{left:468.990000px;}
.x4a_c00347{left:471.315000px;}
.x24_c00347{left:473.974956px;}
.x60_c00347{left:476.101604px;}
.xa5_c00347{left:480.477000px;}
.x54_c00347{left:481.752555px;}
.x4f_c00347{left:483.684117px;}
.x75_c00347{left:490.951367px;}
.xf_c00347{left:495.514383px;}
.x2a_c00347{left:498.527628px;}
.x34_c00347{left:499.621332px;}
.x6e_c00347{left:502.324908px;}
.x55_c00347{left:504.465960px;}
.x83_c00347{left:505.991549px;}
.x10_c00347{left:511.922670px;}
.x66_c00347{left:513.633024px;}
.x3f_c00347{left:516.788904px;}
.x35_c00347{left:518.264688px;}
.x9d_c00347{left:521.536500px;}
.x91_c00347{left:525.960000px;}
.x76_c00347{left:530.134367px;}
.x67_c00347{left:534.470835px;}
.x84_c00347{left:538.662695px;}
.x1d_c00347{left:544.173000px;}
.x9e_c00347{left:547.210500px;}
.x4b_c00347{left:551.208000px;}
.x44_c00347{left:552.699588px;}
.x36_c00347{left:556.322388px;}
.x7c_c00347{left:562.566819px;}
.x40_c00347{left:564.850476px;}
.x68_c00347{left:571.728998px;}
.x92_c00347{left:573.210000px;}
.x56_c00347{left:575.477242px;}
.x9_c00347{left:580.197000px;}
.x2b_c00347{left:581.989956px;}
.x1e_c00347{left:583.860000px;}
.x45_c00347{left:589.420440px;}
.x41_c00347{left:591.040656px;}
.x25_c00347{left:593.868456px;}
.x85_c00347{left:595.364285px;}
.x6f_c00347{left:597.395759px;}
.x37_c00347{left:598.455552px;}
.xa_c00347{left:606.099000px;}
.x4c_c00347{left:607.635000px;}
.x86_c00347{left:610.755527px;}
.x7d_c00347{left:617.033805px;}
.x77_c00347{left:619.276367px;}
.x2c_c00347{left:620.872644px;}
.x93_c00347{left:622.350000px;}
.x42_c00347{left:623.711244px;}
.xa3_c00347{left:625.590000px;}
.x89_c00347{left:632.357259px;}
.x57_c00347{left:635.622322px;}
.x11_c00347{left:670.761048px;}
.x14_c00347{left:675.902964px;}
.xb_c00347{left:682.026000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs13_c00347{font-size:14.000000pt;}
.fs2_c00347{font-size:18.668496pt;}
.fs18_c00347{font-size:24.266667pt;}
.fs0_c00347{font-size:29.866667pt;}
.fs15_c00347{font-size:45.733333pt;}
.fs14_c00347{font-size:48.533333pt;}
.fs8_c00347{font-size:56.001792pt;}
.fsa_c00347{font-size:56.002268pt;}
.fs5_c00347{font-size:56.935155pt;}
.fs11_c00347{font-size:56.935639pt;}
.fs16_c00347{font-size:58.800000pt;}
.fsb_c00347{font-size:58.802381pt;}
.fs9_c00347{font-size:60.668608pt;}
.fsc_c00347{font-size:60.669124pt;}
.fs12_c00347{font-size:61.600000pt;}
.fsf_c00347{font-size:61.602495pt;}
.fs7_c00347{font-size:62.535334pt;}
.fse_c00347{font-size:62.535866pt;}
.fs1_c00347{font-size:62.539461pt;}
.fsd_c00347{font-size:63.469237pt;}
.fs4_c00347{font-size:64.402061pt;}
.fs10_c00347{font-size:64.402608pt;}
.fs6_c00347{font-size:65.335424pt;}
.fs3_c00347{font-size:95.209329pt;}
.fs17_c00347{font-size:182.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.ydf_c00347{bottom:91.690667pt;}
.ye0_c00347{bottom:91.770667pt;}
.yde_c00347{bottom:92.410667pt;}
.ydd_c00347{bottom:94.084000pt;}
.ydc_c00347{bottom:110.476000pt;}
.ydb_c00347{bottom:135.286667pt;}
.yda_c00347{bottom:151.313333pt;}
.yd9_c00347{bottom:151.393333pt;}
.yd8_c00347{bottom:151.645333pt;}
.yd7_c00347{bottom:151.845333pt;}
.yd6_c00347{bottom:151.929333pt;}
.yd5_c00347{bottom:152.026667pt;}
.yd4_c00347{bottom:152.532000pt;}
.yd3_c00347{bottom:152.674667pt;}
.yd2_c00347{bottom:152.770667pt;}
.yd1_c00347{bottom:152.882667pt;}
.yd0_c00347{bottom:153.092000pt;}
.ycf_c00347{bottom:153.350667pt;}
.yce_c00347{bottom:153.577333pt;}
.ycd_c00347{bottom:153.746667pt;}
.ycc_c00347{bottom:154.156000pt;}
.ycb_c00347{bottom:154.322667pt;}
.yca_c00347{bottom:154.561333pt;}
.yc9_c00347{bottom:168.912000pt;}
.yc8_c00347{bottom:184.732000pt;}
.yc7_c00347{bottom:191.745333pt;}
.yc6_c00347{bottom:232.814667pt;}
.ybd_c00347{bottom:435.414028pt;}
.ybe_c00347{bottom:435.414469pt;}
.ybf_c00347{bottom:435.415029pt;}
.yc0_c00347{bottom:435.415272pt;}
.yc1_c00347{bottom:435.415313pt;}
.yc4_c00347{bottom:435.415357pt;}
.yc5_c00347{bottom:435.415404pt;}
.yc3_c00347{bottom:435.415423pt;}
.yc2_c00347{bottom:435.415953pt;}
.yb7_c00347{bottom:456.302661pt;}
.yb8_c00347{bottom:456.302984pt;}
.yb0_c00347{bottom:456.303160pt;}
.yb6_c00347{bottom:456.303165pt;}
.yb5_c00347{bottom:456.303539pt;}
.yb9_c00347{bottom:456.303585pt;}
.yba_c00347{bottom:456.303600pt;}
.yb2_c00347{bottom:456.303643pt;}
.yb1_c00347{bottom:456.303735pt;}
.yb4_c00347{bottom:456.303805pt;}
.ybb_c00347{bottom:456.303843pt;}
.yb3_c00347{bottom:456.304043pt;}
.ybc_c00347{bottom:456.304296pt;}
.ya4_c00347{bottom:475.193507pt;}
.ya5_c00347{bottom:475.558297pt;}
.ya6_c00347{bottom:475.841487pt;}
.ya7_c00347{bottom:476.117836pt;}
.ya8_c00347{bottom:476.501872pt;}
.ya9_c00347{bottom:476.602803pt;}
.yaa_c00347{bottom:476.886435pt;}
.yab_c00347{bottom:477.158752pt;}
.yac_c00347{bottom:477.372133pt;}
.yad_c00347{bottom:477.704480pt;}
.yae_c00347{bottom:478.113917pt;}
.yaf_c00347{bottom:478.501649pt;}
.y99_c00347{bottom:495.594064pt;}
.y9a_c00347{bottom:495.944320pt;}
.y9b_c00347{bottom:496.246768pt;}
.y9c_c00347{bottom:496.605472pt;}
.y9d_c00347{bottom:496.804012pt;}
.y9e_c00347{bottom:497.002816pt;}
.y9f_c00347{bottom:497.642152pt;}
.ya0_c00347{bottom:498.229336pt;}
.ya1_c00347{bottom:498.542800pt;}
.ya2_c00347{bottom:499.030684pt;}
.ya3_c00347{bottom:499.255936pt;}
.y8c_c00347{bottom:515.996679pt;}
.y8d_c00347{bottom:516.184107pt;}
.y8e_c00347{bottom:516.446669pt;}
.y8f_c00347{bottom:516.540905pt;}
.y90_c00347{bottom:516.735041pt;}
.y91_c00347{bottom:517.081713pt;}
.y92_c00347{bottom:517.285712pt;}
.y93_c00347{bottom:517.850025pt;}
.y94_c00347{bottom:518.001735pt;}
.y95_c00347{bottom:518.159131pt;}
.y96_c00347{bottom:518.416619pt;}
.y97_c00347{bottom:519.093179pt;}
.y98_c00347{bottom:519.280319pt;}
.y80_c00347{bottom:536.157724pt;}
.y81_c00347{bottom:536.560256pt;}
.y82_c00347{bottom:536.901991pt;}
.y83_c00347{bottom:537.058475pt;}
.y84_c00347{bottom:537.809209pt;}
.y85_c00347{bottom:538.022843pt;}
.y86_c00347{bottom:538.543587pt;}
.y87_c00347{bottom:538.730469pt;}
.y88_c00347{bottom:539.287433pt;}
.y89_c00347{bottom:539.472804pt;}
.y8a_c00347{bottom:539.804205pt;}
.y8b_c00347{bottom:539.952888pt;}
.y73_c00347{bottom:556.318729pt;}
.y74_c00347{bottom:556.506637pt;}
.y75_c00347{bottom:556.630177pt;}
.y76_c00347{bottom:556.729189pt;}
.y77_c00347{bottom:557.061829pt;}
.y78_c00347{bottom:557.429077pt;}
.y79_c00347{bottom:557.766001pt;}
.y7a_c00347{bottom:557.962573pt;}
.y7b_c00347{bottom:558.107329pt;}
.y7c_c00347{bottom:558.832789pt;}
.y7d_c00347{bottom:559.171909pt;}
.y7e_c00347{bottom:559.535161pt;}
.y7f_c00347{bottom:559.815973pt;}
.y67_c00347{bottom:577.438149pt;}
.y68_c00347{bottom:577.579841pt;}
.y69_c00347{bottom:578.044816pt;}
.y6a_c00347{bottom:578.178387pt;}
.y6b_c00347{bottom:578.488341pt;}
.y6c_c00347{bottom:578.606328pt;}
.y6d_c00347{bottom:578.880005pt;}
.y6e_c00347{bottom:579.120621pt;}
.y6f_c00347{bottom:579.427661pt;}
.y70_c00347{bottom:579.569365pt;}
.y71_c00347{bottom:580.010779pt;}
.y72_c00347{bottom:580.385264pt;}
.y5d_c00347{bottom:597.840556pt;}
.y5e_c00347{bottom:597.926873pt;}
.y5f_c00347{bottom:598.220056pt;}
.y60_c00347{bottom:598.836047pt;}
.y61_c00347{bottom:599.346403pt;}
.y62_c00347{bottom:599.671779pt;}
.y63_c00347{bottom:599.856460pt;}
.y64_c00347{bottom:600.228797pt;}
.y65_c00347{bottom:600.460872pt;}
.y66_c00347{bottom:600.807832pt;}
.y53_c00347{bottom:618.241333pt;}
.y54_c00347{bottom:618.388225pt;}
.y55_c00347{bottom:618.928237pt;}
.y56_c00347{bottom:619.083421pt;}
.y57_c00347{bottom:619.241137pt;}
.y58_c00347{bottom:619.489897pt;}
.y59_c00347{bottom:620.248105pt;}
.y5a_c00347{bottom:620.587501pt;}
.y5b_c00347{bottom:621.226645pt;}
.y5c_c00347{bottom:621.678061pt;}
.y52_c00347{bottom:639.352405pt;}
.y51_c00347{bottom:639.352629pt;}
.y50_c00347{bottom:639.352853pt;}
.y4f_c00347{bottom:639.353067pt;}
.y4e_c00347{bottom:639.353621pt;}
.y4c_c00347{bottom:661.508011pt;}
.y4a_c00347{bottom:661.508032pt;}
.y4d_c00347{bottom:661.508320pt;}
.y4b_c00347{bottom:661.508448pt;}
.y49_c00347{bottom:661.508640pt;}
.y46_c00347{bottom:661.509099pt;}
.y47_c00347{bottom:661.509195pt;}
.y48_c00347{bottom:661.509237pt;}
.y45_c00347{bottom:661.509749pt;}
.y44_c00347{bottom:661.510240pt;}
.y43_c00347{bottom:661.510571pt;}
.y42_c00347{bottom:661.511061pt;}
.y36_c00347{bottom:679.679168pt;}
.y37_c00347{bottom:680.012181pt;}
.y38_c00347{bottom:680.241024pt;}
.y39_c00347{bottom:680.424213pt;}
.y3a_c00347{bottom:680.709504pt;}
.y3b_c00347{bottom:681.112373pt;}
.y3c_c00347{bottom:681.657664pt;}
.y3d_c00347{bottom:681.904789pt;}
.y3e_c00347{bottom:682.395296pt;}
.y3f_c00347{bottom:682.543872pt;}
.y40_c00347{bottom:682.847840pt;}
.y41_c00347{bottom:683.184789pt;}
.y2b_c00347{bottom:699.359584pt;}
.y2c_c00347{bottom:699.564917pt;}
.y2d_c00347{bottom:699.953088pt;}
.y2e_c00347{bottom:700.337397pt;}
.y2f_c00347{bottom:700.657653pt;}
.y30_c00347{bottom:700.958027pt;}
.y31_c00347{bottom:701.508789pt;}
.y32_c00347{bottom:701.761472pt;}
.y33_c00347{bottom:702.078112pt;}
.y34_c00347{bottom:702.746293pt;}
.y35_c00347{bottom:703.057461pt;}
.y1f_c00347{bottom:720.240629pt;}
.y20_c00347{bottom:720.411595pt;}
.y21_c00347{bottom:720.866624pt;}
.y22_c00347{bottom:721.239093pt;}
.y23_c00347{bottom:721.454187pt;}
.y24_c00347{bottom:721.571307pt;}
.y25_c00347{bottom:721.663520pt;}
.y26_c00347{bottom:722.110603pt;}
.y27_c00347{bottom:722.371680pt;}
.y28_c00347{bottom:722.479499pt;}
.y29_c00347{bottom:722.751957pt;}
.y2a_c00347{bottom:723.332075pt;}
.y15_c00347{bottom:740.641333pt;}
.y16_c00347{bottom:740.764224pt;}
.y17_c00347{bottom:741.297941pt;}
.y18_c00347{bottom:741.509216pt;}
.y19_c00347{bottom:741.837525pt;}
.y1a_c00347{bottom:741.995072pt;}
.y1b_c00347{bottom:742.565248pt;}
.y1c_c00347{bottom:742.732331pt;}
.y1d_c00347{bottom:743.363989pt;}
.y1e_c00347{bottom:743.646208pt;}
.y12_c00347{bottom:775.923637pt;}
.y13_c00347{bottom:778.264304pt;}
.y14_c00347{bottom:787.325952pt;}
.yc_c00347{bottom:801.847296pt;}
.y1_c00347{bottom:804.720000pt;}
.yd_c00347{bottom:805.207949pt;}
.ye_c00347{bottom:807.862451pt;}
.yf_c00347{bottom:811.567640pt;}
.y10_c00347{bottom:811.975872pt;}
.y11_c00347{bottom:815.928915pt;}
.y2_c00347{bottom:829.922667pt;}
.y3_c00347{bottom:830.551155pt;}
.y4_c00347{bottom:830.923741pt;}
.y5_c00347{bottom:831.253133pt;}
.y6_c00347{bottom:831.915221pt;}
.y7_c00347{bottom:833.101189pt;}
.y8_c00347{bottom:833.679613pt;}
.y9_c00347{bottom:835.856688pt;}
.ya_c00347{bottom:836.179024pt;}
.yb_c00347{bottom:837.123893pt;}
.h15_c00347{height:14.000000pt;}
.h4_c00347{height:18.668496pt;}
.h1a_c00347{height:24.266667pt;}
.h2_c00347{height:29.866667pt;}
.h17_c00347{height:45.733333pt;}
.h16_c00347{height:48.533333pt;}
.ha_c00347{height:56.001792pt;}
.hc_c00347{height:56.002268pt;}
.h7_c00347{height:56.935155pt;}
.h13_c00347{height:56.935639pt;}
.h18_c00347{height:58.800000pt;}
.hd_c00347{height:58.802381pt;}
.hb_c00347{height:60.668608pt;}
.he_c00347{height:60.669124pt;}
.h14_c00347{height:61.600000pt;}
.h11_c00347{height:61.602495pt;}
.h9_c00347{height:62.535334pt;}
.h10_c00347{height:62.535866pt;}
.h3_c00347{height:62.539461pt;}
.hf_c00347{height:63.469237pt;}
.h6_c00347{height:64.402061pt;}
.h12_c00347{height:64.402608pt;}
.h8_c00347{height:65.335424pt;}
.h5_c00347{height:95.209329pt;}
.h19_c00347{height:182.000000pt;}
.h0_c00347{height:896.400000pt;}
.h1_c00347{height:896.666667pt;}
.w0_c00347{width:618.666667pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:91.872000pt;}
.xc_c00347{left:93.262584pt;}
.x1_c00347{left:96.240000pt;}
.x4d_c00347{left:131.393416pt;}
.x78_c00347{left:134.973440pt;}
.x3_c00347{left:136.764000pt;}
.x1f_c00347{left:141.452405pt;}
.x2d_c00347{left:142.427605pt;}
.x15_c00347{left:143.377333pt;}
.x12_c00347{left:144.707525pt;}
.x9f_c00347{left:146.400000pt;}
.x94_c00347{left:147.360000pt;}
.x16_c00347{left:158.738667pt;}
.x4_c00347{left:163.377333pt;}
.x58_c00347{left:164.740092pt;}
.x38_c00347{left:167.999915pt;}
.x46_c00347{left:174.582667pt;}
.x99_c00347{left:176.822667pt;}
.x59_c00347{left:178.466759pt;}
.x2e_c00347{left:179.387307pt;}
.x79_c00347{left:180.543181pt;}
.x70_c00347{left:182.510548pt;}
.x61_c00347{left:183.915815pt;}
.x5_c00347{left:186.905333pt;}
.x5a_c00347{left:189.468092pt;}
.x9a_c00347{left:197.676000pt;}
.x39_c00347{left:198.960565pt;}
.x69_c00347{left:200.218143pt;}
.x95_c00347{left:202.080000pt;}
.x2f_c00347{left:204.825771pt;}
.x26_c00347{left:207.009557pt;}
.x8a_c00347{left:209.040000pt;}
.x6a_c00347{left:212.022251pt;}
.xd_c00347{left:213.285731pt;}
.x71_c00347{left:216.115881pt;}
.x62_c00347{left:218.034169pt;}
.x20_c00347{left:219.701739pt;}
.x43_c00347{left:220.799211pt;}
.x17_c00347{left:225.453333pt;}
.x5b_c00347{left:226.428092pt;}
.x7e_c00347{left:228.721695pt;}
.x50_c00347{left:230.719608pt;}
.x6_c00347{left:234.197333pt;}
.x3a_c00347{left:236.401632pt;}
.x13_c00347{left:238.359781pt;}
.xa4_c00347{left:243.041333pt;}
.x7f_c00347{left:244.322955pt;}
.x9b_c00347{left:248.812000pt;}
.x27_c00347{left:249.714549pt;}
.x18_c00347{left:251.862667pt;}
.x4e_c00347{left:255.930544pt;}
.x30_c00347{left:256.885355pt;}
.x87_c00347{left:264.723257pt;}
.x21_c00347{left:266.260405pt;}
.x5c_c00347{left:267.233425pt;}
.x47_c00347{left:269.350667pt;}
.x8d_c00347{left:273.120000pt;}
.x72_c00347{left:278.031881pt;}
.x6b_c00347{left:279.668196pt;}
.x8b_c00347{left:281.280000pt;}
.x96_c00347{left:283.920000pt;}
.x28_c00347{left:285.246261pt;}
.x3b_c00347{left:286.323499pt;}
.x8e_c00347{left:290.640000pt;}
.x19_c00347{left:292.901333pt;}
.x51_c00347{left:294.075415pt;}
.x48_c00347{left:296.990667pt;}
.x7a_c00347{left:298.422904pt;}
.x73_c00347{left:300.121215pt;}
.x31_c00347{left:301.576992pt;}
.x5d_c00347{left:304.669425pt;}
.xe_c00347{left:308.112491pt;}
.x80_c00347{left:309.605580pt;}
.x52_c00347{left:310.889048pt;}
.x1a_c00347{left:312.594667pt;}
.x8c_c00347{left:315.360000pt;}
.x3c_c00347{left:318.004192pt;}
.x7_c00347{left:318.909333pt;}
.x81_c00347{left:323.046672pt;}
.x5e_c00347{left:326.510759pt;}
.x8f_c00347{left:327.600000pt;}
.x63_c00347{left:330.127828pt;}
.x97_c00347{left:338.880000pt;}
.x5f_c00347{left:342.594759pt;}
.x7b_c00347{left:346.634015pt;}
.x53_c00347{left:350.039089pt;}
.xa0_c00347{left:354.000000pt;}
.xa6_c00347{left:355.440000pt;}
.x9c_c00347{left:356.796000pt;}
.x8_c00347{left:360.225333pt;}
.x32_c00347{left:362.237845pt;}
.x3d_c00347{left:363.845792pt;}
.xa1_c00347{left:367.200000pt;}
.x74_c00347{left:371.158548pt;}
.x22_c00347{left:375.199072pt;}
.x82_c00347{left:376.328325pt;}
.x29_c00347{left:379.804171pt;}
.x49_c00347{left:381.236000pt;}
.x64_c00347{left:382.210027pt;}
.x1b_c00347{left:383.866667pt;}
.xa2_c00347{left:385.200000pt;}
.x3e_c00347{left:387.605984pt;}
.x33_c00347{left:389.628288pt;}
.x6c_c00347{left:394.634561pt;}
.x65_c00347{left:400.900525pt;}
.x1c_c00347{left:404.752000pt;}
.x23_c00347{left:407.833739pt;}
.x88_c00347{left:409.929684pt;}
.x90_c00347{left:411.600000pt;}
.x6d_c00347{left:414.345408pt;}
.x98_c00347{left:416.880000pt;}
.x4a_c00347{left:418.946667pt;}
.x24_c00347{left:421.311072pt;}
.x60_c00347{left:423.201425pt;}
.xa5_c00347{left:427.090667pt;}
.x54_c00347{left:428.224493pt;}
.x4f_c00347{left:429.941437pt;}
.x75_c00347{left:436.401215pt;}
.xf_c00347{left:440.457229pt;}
.x2a_c00347{left:443.135669pt;}
.x34_c00347{left:444.107851pt;}
.x6e_c00347{left:446.511029pt;}
.x55_c00347{left:448.414187pt;}
.x83_c00347{left:449.770265pt;}
.x10_c00347{left:455.042373pt;}
.x66_c00347{left:456.562688pt;}
.x3f_c00347{left:459.367915pt;}
.x35_c00347{left:460.679723pt;}
.x9d_c00347{left:463.588000pt;}
.x91_c00347{left:467.520000pt;}
.x76_c00347{left:471.230548pt;}
.x67_c00347{left:475.085187pt;}
.x84_c00347{left:478.811284pt;}
.x1d_c00347{left:483.709333pt;}
.x9e_c00347{left:486.409333pt;}
.x4b_c00347{left:489.962667pt;}
.x44_c00347{left:491.288523pt;}
.x36_c00347{left:494.508789pt;}
.x7c_c00347{left:500.059395pt;}
.x40_c00347{left:502.089312pt;}
.x68_c00347{left:508.203553pt;}
.x92_c00347{left:509.520000pt;}
.x56_c00347{left:511.535327pt;}
.x9_c00347{left:515.730667pt;}
.x2b_c00347{left:517.324405pt;}
.x1e_c00347{left:518.986667pt;}
.x45_c00347{left:523.929280pt;}
.x41_c00347{left:525.369472pt;}
.x25_c00347{left:527.883072pt;}
.x85_c00347{left:529.212697pt;}
.x6f_c00347{left:531.018452pt;}
.x37_c00347{left:531.960491pt;}
.xa_c00347{left:538.754667pt;}
.x4c_c00347{left:540.120000pt;}
.x86_c00347{left:542.893801pt;}
.x7d_c00347{left:548.474493pt;}
.x77_c00347{left:550.467881pt;}
.x2c_c00347{left:551.886795pt;}
.x93_c00347{left:553.200000pt;}
.x42_c00347{left:554.409995pt;}
.xa3_c00347{left:556.080000pt;}
.x89_c00347{left:562.095341pt;}
.x57_c00347{left:564.997620pt;}
.x11_c00347{left:596.232043pt;}
.x14_c00347{left:600.802635pt;}
.xb_c00347{left:606.245333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m80_c00348{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);}
.m4c_c00348{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00348{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);}
.m10_c00348{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);}
.m21_c00348{transform:matrix(0.023235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.052200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052200,0.000000,0.000000,0.250000,0,0);}
.mbb_c00348{transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);}
.m55_c00348{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);}
.med_c00348{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);}
.m6d_c00348{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);}
.mc6_c00348{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.mca_c00348{transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);}
.m67_c00348{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);}
.m91_c00348{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.md0_c00348{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);}
.m5_c00348{transform:matrix(0.148888,0.002531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148888,0.002531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148888,0.002531,-0.004249,0.249964,0,0);}
.m5c_c00348{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);}
.mac_c00348{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);}
.mf1_c00348{transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152415,0.000000,0.000000,0.250000,0,0);}
.m61_c00348{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);}
.m71_c00348{transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);}
.m9e_c00348{transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);}
.m82_c00348{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);}
.m3a_c00348{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);}
.mab_c00348{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);}
.m96_c00348{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);}
.mb4_c00348{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);}
.me0_c00348{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);}
.m81_c00348{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);}
.mf0_c00348{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_c00348{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);}
.ma2_c00348{transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00348{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);}
.ma4_c00348{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);}
.m39_c00348{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);}
.m5b_c00348{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);}
.m73_c00348{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);}
.mc3_c00348{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);}
.m66_c00348{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);}
.m9b_c00348{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);}
.m8a_c00348{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);}
.mb6_c00348{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);}
.m7d_c00348{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m86_c00348{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);}
.mbe_c00348{transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{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);}
.md9_c00348{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);}
.md8_c00348{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);}
.md1_c00348{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);}
.mf3_c00348{transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{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);}
.m35_c00348{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);}
.m94_c00348{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);}
.m36_c00348{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);}
.mf2_c00348{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);}
.me1_c00348{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);}
.mdc_c00348{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);}
.ma6_c00348{transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);}
.m53_c00348{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);}
.mb5_c00348{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);}
.md3_c00348{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);}
.mb3_c00348{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);}
.mc9_c00348{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);}
.m68_c00348{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);}
.m77_c00348{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);}
.m9f_c00348{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);}
.m1e_c00348{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.me8_c00348{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);}
.mee_c00348{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);}
.mb8_c00348{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);}
.meb_c00348{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);}
.mb7_c00348{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);}
.m52_c00348{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);}
.m62_c00348{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);}
.m97_c00348{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);}
.m8b_c00348{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_c00348{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);}
.m75_c00348{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);}
.m78_c00348{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);}
.m60_c00348{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);}
.m7f_c00348{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);}
.m6c_c00348{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);}
.m69_c00348{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);}
.m6f_c00348{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);}
.mcf_c00348{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);}
.mc1_c00348{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);}
.m6b_c00348{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.m8f_c00348{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);}
.md2_c00348{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);}
.md4_c00348{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);}
.ma5_c00348{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);}
.m99_c00348{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);}
.mb0_c00348{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);}
.m93_c00348{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);}
.m9c_c00348{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);}
.mcb_c00348{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);}
.mb2_c00348{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);}
.m6a_c00348{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);}
.ma3_c00348{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);}
.m59_c00348{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);}
.m1a_c00348{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);}
.ma1_c00348{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);}
.m4e_c00348{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);}
.mae_c00348{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);}
.m57_c00348{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);}
.m95_c00348{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);}
.m63_c00348{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);}
.m9a_c00348{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);}
.m1f_c00348{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);}
.mbf_c00348{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);}
.m90_c00348{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);}
.m7e_c00348{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);}
.ma9_c00348{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);}
.m5f_c00348{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);}
.m70_c00348{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);}
.m7c_c00348{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);}
.m41_c00348{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);}
.mef_c00348{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);}
.m87_c00348{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);}
.mc4_c00348{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);}
.m3e_c00348{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);}
.m33_c00348{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);}
.mf5_c00348{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);}
.m42_c00348{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);}
.m83_c00348{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);}
.m4a_c00348{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);}
.m65_c00348{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);}
.mc2_c00348{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);}
.m5a_c00348{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);}
.m50_c00348{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);}
.m54_c00348{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);}
.m98_c00348{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);}
.m49_c00348{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);}
.m34_c00348{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);}
.m85_c00348{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);}
.m79_c00348{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);}
.mf6_c00348{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);}
.m29_c00348{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);}
.m58_c00348{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);}
.m4d_c00348{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);}
.m19_c00348{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);}
.m64_c00348{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);}
.mea_c00348{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);}
.mdb_c00348{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);}
.m32_c00348{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);}
.m74_c00348{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);}
.m17_c00348{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);}
.m72_c00348{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);}
.m3f_c00348{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);}
.m20_c00348{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00348{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);}
.m92_c00348{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);}
.m6e_c00348{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);}
.m26_c00348{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);}
.me4_c00348{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);}
.mc0_c00348{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{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);}
.m5e_c00348{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);}
.m5d_c00348{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);}
.me2_c00348{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);}
.m2b_c00348{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);}
.mad_c00348{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);}
.mc5_c00348{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);}
.ma8_c00348{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);}
.m8d_c00348{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);}
.m4f_c00348{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);}
.m2d_c00348{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);}
.m84_c00348{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);}
.me9_c00348{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);}
.m51_c00348{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_c00348{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);}
.maf_c00348{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);}
.m2f_c00348{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);}
.ma0_c00348{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);}
.me6_c00348{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);}
.m27_c00348{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);}
.mda_c00348{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);}
.m38_c00348{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);}
.me5_c00348{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);}
.m56_c00348{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);}
.m25_c00348{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);}
.m9d_c00348{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);}
.m3c_c00348{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);}
.m1c_c00348{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);}
.mdf_c00348{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);}
.mdd_c00348{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);}
.mf7_c00348{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);}
.m7a_c00348{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);}
.mb1_c00348{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);}
.m76_c00348{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);}
.m24_c00348{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);}
.m3b_c00348{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);}
.me3_c00348{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);}
.m46_c00348{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);}
.maa_c00348{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);}
.md6_c00348{transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);}
.me_c00348{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);}
.me7_c00348{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);}
.m89_c00348{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);}
.mc_c00348{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);}
.mba_c00348{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);}
.mce_c00348{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00348{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);}
.m43_c00348{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);}
.mcc_c00348{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.m44_c00348{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);}
.m37_c00348{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m48_c00348{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);}
.mb9_c00348{transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);}
.mc7_c00348{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);}
.m12_c00348{transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);}
.mfe_c00348{transform:matrix(0.270403,-0.001893,0.001750,0.249994,0,0);-ms-transform:matrix(0.270403,-0.001893,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270403,-0.001893,0.001750,0.249994,0,0);}
.mbc_c00348{transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);}
.mf8_c00348{transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284845,0.000000,0.000000,0.250000,0,0);}
.mfa_c00348{transform:matrix(0.286338,-0.002004,0.001750,0.249994,0,0);-ms-transform:matrix(0.286338,-0.002004,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286338,-0.002004,0.001750,0.249994,0,0);}
.ma_c00348{transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288700,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.289220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289220,0.000000,0.000000,0.250000,0,0);}
.m47_c00348{transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);}
.mf9_c00348{transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292780,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.301891,0.005132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301891,0.005132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301891,0.005132,-0.004249,0.249964,0,0);}
.md7_c00348{transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305185,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.309265,0.005258,-0.004249,0.249964,0,0);-ms-transform:matrix(0.309265,0.005258,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.309265,0.005258,-0.004249,0.249964,0,0);}
.mf_c00348{transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309395,0.000000,0.000000,0.250000,0,0);}
.mcd_c00348{transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);}
.ma7_c00348{transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326955,0.000000,0.000000,0.250000,0,0);}
.m7b_c00348{transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.344115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344115,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345045,0.000000,0.000000,0.250000,0,0);}
.mec_c00348{transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);}
.mfd_c00348{transform:matrix(0.350921,-0.002456,0.001750,0.249994,0,0);-ms-transform:matrix(0.350921,-0.002456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.350921,-0.002456,0.001750,0.249994,0,0);}
.m8_c00348{transform:matrix(0.365860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365860,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.368607,0.006266,-0.004249,0.249964,0,0);-ms-transform:matrix(0.368607,0.006266,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.368607,0.006266,-0.004249,0.249964,0,0);}
.mde_c00348{transform:matrix(0.370260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370260,0.000000,0.000000,0.250000,0,0);}
.m88_c00348{transform:matrix(0.370895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370895,0.000000,0.000000,0.250000,0,0);}
.mfb_c00348{transform:matrix(0.372411,-0.002607,0.001750,0.249994,0,0);-ms-transform:matrix(0.372411,-0.002607,0.001750,0.249994,0,0);-webkit-transform:matrix(0.372411,-0.002607,0.001750,0.249994,0,0);}
.m23_c00348{transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.425645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425645,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.454984,0.007735,-0.004249,0.249964,0,0);-ms-transform:matrix(0.454984,0.007735,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.454984,0.007735,-0.004249,0.249964,0,0);}
.m9_c00348{transform:matrix(0.456275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456275,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.477425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477425,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.548685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548685,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.556410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556410,0.000000,0.000000,0.250000,0,0);}
.mfc_c00348{transform:matrix(0.585131,-0.004096,0.001750,0.249994,0,0);-ms-transform:matrix(0.585131,-0.004096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.585131,-0.004096,0.001750,0.249994,0,0);}
.m2_c00348{transform:matrix(0.606417,0.010309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.606417,0.010309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.606417,0.010309,-0.004249,0.249964,0,0);}
.m15_c00348{transform:matrix(0.627455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627455,0.000000,0.000000,0.250000,0,0);}
.mbd_c00348{transform:matrix(0.649905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649905,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.713585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713585,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.745480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745480,0.000000,0.000000,0.250000,0,0);}
.mc8_c00348{transform:matrix(0.808370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808370,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.820730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820730,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.835715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835715,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.863370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.863370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.863370,0.000000,0.000000,0.250000,0,0);}
.md5_c00348{transform:matrix(0.914070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914070,0.000000,0.000000,0.250000,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;}
.fs10_c00348{font-size:14.700000px;}
.fs0_c00348{font-size:23.100000px;}
.fsa_c00348{font-size:36.750000px;}
.fs5_c00348{font-size:47.250000px;}
.fs12_c00348{font-size:49.350000px;}
.fs13_c00348{font-size:50.400000px;}
.fs14_c00348{font-size:53.550000px;}
.fsf_c00348{font-size:59.850000px;}
.fs8_c00348{font-size:63.000000px;}
.fsc_c00348{font-size:67.200000px;}
.fsb_c00348{font-size:68.250000px;}
.fs7_c00348{font-size:70.350000px;}
.fs9_c00348{font-size:71.400000px;}
.fsd_c00348{font-size:72.450000px;}
.fs11_c00348{font-size:74.550000px;}
.fse_c00348{font-size:75.600000px;}
.fs3_c00348{font-size:82.950000px;}
.fs4_c00348{font-size:124.950000px;}
.fs15_c00348{font-size:135.453318px;}
.fs1_c00348{font-size:144.920937px;}
.fs2_c00348{font-size:145.971088px;}
.fs6_c00348{font-size:227.850000px;}
.y0_c00348{bottom:0.000000px;}
.y2e_c00348{bottom:133.260000px;}
.y2d_c00348{bottom:154.753500px;}
.y2c_c00348{bottom:173.077500px;}
.y2b_c00348{bottom:191.122500px;}
.y2a_c00348{bottom:242.977500px;}
.y29_c00348{bottom:266.163000px;}
.y28_c00348{bottom:276.928500px;}
.y27_c00348{bottom:291.870000px;}
.y26_c00348{bottom:297.351000px;}
.y25_c00348{bottom:319.783500px;}
.y24_c00348{bottom:350.731500px;}
.y23_c00348{bottom:374.158500px;}
.y22_c00348{bottom:397.281000px;}
.y21_c00348{bottom:424.476000px;}
.y20_c00348{bottom:451.852500px;}
.y1f_c00348{bottom:475.377000px;}
.y1e_c00348{bottom:498.297000px;}
.y1d_c00348{bottom:520.902000px;}
.y1c_c00348{bottom:547.762500px;}
.y1b_c00348{bottom:570.468000px;}
.y1a_c00348{bottom:597.315000px;}
.y19_c00348{bottom:620.485500px;}
.y18_c00348{bottom:642.856500px;}
.y17_c00348{bottom:665.629500px;}
.y16_c00348{bottom:691.326000px;}
.y15_c00348{bottom:695.646000px;}
.y14_c00348{bottom:713.217000px;}
.y13_c00348{bottom:734.856000px;}
.y2f_c00348{bottom:775.443000px;}
.y30_c00348{bottom:776.046193px;}
.y31_c00348{bottom:777.193518px;}
.y32_c00348{bottom:778.632312px;}
.y33_c00348{bottom:779.312712px;}
.y12_c00348{bottom:812.160000px;}
.yf_c00348{bottom:829.980000px;}
.y10_c00348{bottom:830.403000px;}
.y11_c00348{bottom:833.337000px;}
.y9_c00348{bottom:858.601500px;}
.ya_c00348{bottom:859.009500px;}
.yb_c00348{bottom:860.452500px;}
.yc_c00348{bottom:861.055500px;}
.yd_c00348{bottom:861.567000px;}
.ye_c00348{bottom:862.518000px;}
.y7_c00348{bottom:886.835226px;}
.y8_c00348{bottom:890.517000px;}
.y6_c00348{bottom:906.959763px;}
.y5_c00348{bottom:909.503974px;}
.y4_c00348{bottom:911.930325px;}
.y3_c00348{bottom:915.276588px;}
.y2_c00348{bottom:916.389000px;}
.y1_c00348{bottom:934.740000px;}
.h12_c00348{height:14.700000px;}
.h2_c00348{height:23.100000px;}
.hc_c00348{height:36.750000px;}
.h7_c00348{height:47.250000px;}
.h14_c00348{height:49.350000px;}
.h15_c00348{height:50.400000px;}
.h16_c00348{height:53.550000px;}
.h11_c00348{height:59.850000px;}
.ha_c00348{height:63.000000px;}
.he_c00348{height:67.200000px;}
.hd_c00348{height:68.250000px;}
.h9_c00348{height:70.350000px;}
.hb_c00348{height:71.400000px;}
.hf_c00348{height:72.450000px;}
.h13_c00348{height:74.550000px;}
.h10_c00348{height:75.600000px;}
.h5_c00348{height:82.950000px;}
.h6_c00348{height:124.950000px;}
.h17_c00348{height:135.453318px;}
.h3_c00348{height:144.920937px;}
.h4_c00348{height:145.971088px;}
.h8_c00348{height:227.850000px;}
.h1_c00348{height:1005.000000px;}
.h0_c00348{height:1005.150000px;}
.w0_c00348{width:702.540000px;}
.w1_c00348{width:702.750000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:36.490500px;}
.x8_c00348{left:38.610000px;}
.x2a_c00348{left:40.500000px;}
.x11_c00348{left:44.550000px;}
.x1d_c00348{left:47.790000px;}
.x35_c00348{left:68.040000px;}
.x12_c00348{left:75.600000px;}
.x2b_c00348{left:85.320000px;}
.x3d_c00348{left:86.400000px;}
.x6f_c00348{left:87.750000px;}
.x8f_c00348{left:89.100000px;}
.x9_c00348{left:97.425000px;}
.x3_c00348{left:101.926500px;}
.x1e_c00348{left:103.410000px;}
.x4b_c00348{left:104.490000px;}
.x8a_c00348{left:106.920000px;}
.xe_c00348{left:108.646500px;}
.x7a_c00348{left:110.700000px;}
.xa7_c00348{left:116.910000px;}
.x59_c00348{left:120.150000px;}
.x13_c00348{left:122.040000px;}
.x3f_c00348{left:123.930000px;}
.x36_c00348{left:125.820000px;}
.x79_c00348{left:127.710000px;}
.xa3_c00348{left:128.790000px;}
.x1f_c00348{left:131.220000px;}
.x70_c00348{left:133.110000px;}
.x60_c00348{left:139.860000px;}
.x99_c00348{left:144.990000px;}
.x37_c00348{left:150.120000px;}
.x47_c00348{left:151.740000px;}
.x7b_c00348{left:153.360000px;}
.x2c_c00348{left:154.980000px;}
.x64_c00348{left:156.330000px;}
.x40_c00348{left:158.760000px;}
.x10_c00348{left:160.650000px;}
.xa4_c00348{left:165.510000px;}
.x14_c00348{left:168.480000px;}
.x90_c00348{left:173.880000px;}
.x68_c00348{left:175.500000px;}
.x41_c00348{left:182.250000px;}
.x9a_c00348{left:187.920000px;}
.x20_c00348{left:189.810000px;}
.x5a_c00348{left:192.240000px;}
.x2d_c00348{left:196.830000px;}
.x61_c00348{left:199.260000px;}
.x15_c00348{left:204.930000px;}
.x4c_c00348{left:206.280000px;}
.x91_c00348{left:210.060000px;}
.x52_c00348{left:212.760000px;}
.x42_c00348{left:215.190000px;}
.x62_c00348{left:221.130000px;}
.x71_c00348{left:224.910000px;}
.xa5_c00348{left:225.990000px;}
.x5b_c00348{left:227.340000px;}
.x7c_c00348{left:230.040000px;}
.x16_c00348{left:232.740000px;}
.x65_c00348{left:236.790000px;}
.x53_c00348{left:237.870000px;}
.x48_c00348{left:240.570000px;}
.x7_c00348{left:246.270840px;}
.x9b_c00348{left:247.590000px;}
.x2e_c00348{left:248.670000px;}
.x82_c00348{left:249.750000px;}
.x21_c00348{left:251.910000px;}
.x92_c00348{left:256.230000px;}
.xa8_c00348{left:257.580000px;}
.x72_c00348{left:260.550000px;}
.x54_c00348{left:265.680000px;}
.x8b_c00348{left:267.030000px;}
.x63_c00348{left:268.920000px;}
.xa1_c00348{left:270.270000px;}
.x66_c00348{left:271.890000px;}
.x93_c00348{left:273.240000px;}
.x38_c00348{left:275.400000px;}
.x69_c00348{left:278.640000px;}
.x22_c00348{left:279.720000px;}
.x1_c00348{left:280.800000px;}
.x17_c00348{left:281.880000px;}
.xa6_c00348{left:287.550000px;}
.x2f_c00348{left:292.140000px;}
.x94_c00348{left:293.220000px;}
.x49_c00348{left:295.110000px;}
.x7d_c00348{left:297.000000px;}
.x4_c00348{left:298.765500px;}
.x55_c00348{left:301.590000px;}
.xa_c00348{left:303.610500px;}
.x43_c00348{left:310.770000px;}
.x83_c00348{left:311.850000px;}
.x23_c00348{left:316.440000px;}
.x18_c00348{left:321.300000px;}
.x9c_c00348{left:324.270000px;}
.x7e_c00348{left:325.350000px;}
.x4d_c00348{left:332.370000px;}
.x84_c00348{left:333.720000px;}
.x67_c00348{left:336.690000px;}
.xa2_c00348{left:338.040000px;}
.x19_c00348{left:339.390000px;}
.x4a_c00348{left:341.280000px;}
.x5c_c00348{left:342.360000px;}
.x8c_c00348{left:343.440000px;}
.x95_c00348{left:346.410000px;}
.x3e_c00348{left:348.570000px;}
.x73_c00348{left:351.810000px;}
.x56_c00348{left:355.320000px;}
.x44_c00348{left:358.290000px;}
.x30_c00348{left:360.990000px;}
.x7f_c00348{left:363.690000px;}
.x74_c00348{left:368.280000px;}
.x24_c00348{left:370.170000px;}
.x5d_c00348{left:371.250000px;}
.x4e_c00348{left:372.600000px;}
.x6a_c00348{left:375.300000px;}
.x87_c00348{left:377.730000px;}
.x1a_c00348{left:382.590000px;}
.x9d_c00348{left:384.210000px;}
.x96_c00348{left:386.640000px;}
.xb_c00348{left:389.745000px;}
.x75_c00348{left:392.580000px;}
.x45_c00348{left:396.900000px;}
.x6b_c00348{left:399.600000px;}
.x31_c00348{left:401.760000px;}
.x8d_c00348{left:405.810000px;}
.x4f_c00348{left:406.890000px;}
.x57_c00348{left:409.050000px;}
.x25_c00348{left:410.670000px;}
.x80_c00348{left:412.560000px;}
.x5e_c00348{left:417.420000px;}
.x97_c00348{left:419.040000px;}
.x6c_c00348{left:421.740000px;}
.x39_c00348{left:426.330000px;}
.x32_c00348{left:428.760000px;}
.x26_c00348{left:430.110000px;}
.x85_c00348{left:434.970000px;}
.x58_c00348{left:439.830000px;}
.x5_c00348{left:441.492000px;}
.x46_c00348{left:451.170000px;}
.x5f_c00348{left:453.600000px;}
.x98_c00348{left:457.110000px;}
.x9e_c00348{left:460.080000px;}
.x33_c00348{left:461.700000px;}
.xc_c00348{left:462.901500px;}
.x88_c00348{left:464.400000px;}
.x81_c00348{left:467.910000px;}
.x76_c00348{left:469.800000px;}
.x3a_c00348{left:476.010000px;}
.x6d_c00348{left:490.320000px;}
.xa9_c00348{left:494.059500px;}
.x8e_c00348{left:495.450000px;}
.x9f_c00348{left:497.070000px;}
.x27_c00348{left:498.420000px;}
.x77_c00348{left:502.200000px;}
.x50_c00348{left:506.520000px;}
.x6e_c00348{left:510.030000px;}
.x89_c00348{left:514.890000px;}
.x34_c00348{left:519.210000px;}
.x78_c00348{left:521.640000px;}
.x3b_c00348{left:530.550000px;}
.x28_c00348{left:533.250000px;}
.x51_c00348{left:535.950000px;}
.x1b_c00348{left:550.800000px;}
.xa0_c00348{left:553.500000px;}
.x6_c00348{left:591.151500px;}
.x29_c00348{left:592.650000px;}
.x86_c00348{left:595.890000px;}
.xf_c00348{left:597.636000px;}
.xd_c00348{left:598.659000px;}
.x1c_c00348{left:605.070000px;}
.x3c_c00348{left:608.040000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
.fs10_c00348{font-size:13.066667pt;}
.fs0_c00348{font-size:20.533333pt;}
.fsa_c00348{font-size:32.666667pt;}
.fs5_c00348{font-size:42.000000pt;}
.fs12_c00348{font-size:43.866667pt;}
.fs13_c00348{font-size:44.800000pt;}
.fs14_c00348{font-size:47.600000pt;}
.fsf_c00348{font-size:53.200000pt;}
.fs8_c00348{font-size:56.000000pt;}
.fsc_c00348{font-size:59.733333pt;}
.fsb_c00348{font-size:60.666667pt;}
.fs7_c00348{font-size:62.533333pt;}
.fs9_c00348{font-size:63.466667pt;}
.fsd_c00348{font-size:64.400000pt;}
.fs11_c00348{font-size:66.266667pt;}
.fse_c00348{font-size:67.200000pt;}
.fs3_c00348{font-size:73.733333pt;}
.fs4_c00348{font-size:111.066667pt;}
.fs15_c00348{font-size:120.402950pt;}
.fs1_c00348{font-size:128.818610pt;}
.fs2_c00348{font-size:129.752078pt;}
.fs6_c00348{font-size:202.533333pt;}
.y0_c00348{bottom:0.000000pt;}
.y2e_c00348{bottom:118.453333pt;}
.y2d_c00348{bottom:137.558667pt;}
.y2c_c00348{bottom:153.846667pt;}
.y2b_c00348{bottom:169.886667pt;}
.y2a_c00348{bottom:215.980000pt;}
.y29_c00348{bottom:236.589333pt;}
.y28_c00348{bottom:246.158667pt;}
.y27_c00348{bottom:259.440000pt;}
.y26_c00348{bottom:264.312000pt;}
.y25_c00348{bottom:284.252000pt;}
.y24_c00348{bottom:311.761333pt;}
.y23_c00348{bottom:332.585333pt;}
.y22_c00348{bottom:353.138667pt;}
.y21_c00348{bottom:377.312000pt;}
.y20_c00348{bottom:401.646667pt;}
.y1f_c00348{bottom:422.557333pt;}
.y1e_c00348{bottom:442.930667pt;}
.y1d_c00348{bottom:463.024000pt;}
.y1c_c00348{bottom:486.900000pt;}
.y1b_c00348{bottom:507.082667pt;}
.y1a_c00348{bottom:530.946667pt;}
.y19_c00348{bottom:551.542667pt;}
.y18_c00348{bottom:571.428000pt;}
.y17_c00348{bottom:591.670667pt;}
.y16_c00348{bottom:614.512000pt;}
.y15_c00348{bottom:618.352000pt;}
.y14_c00348{bottom:633.970667pt;}
.y13_c00348{bottom:653.205333pt;}
.y2f_c00348{bottom:689.282667pt;}
.y30_c00348{bottom:689.818839pt;}
.y31_c00348{bottom:690.838683pt;}
.y32_c00348{bottom:692.117611pt;}
.y33_c00348{bottom:692.722411pt;}
.y12_c00348{bottom:721.920000pt;}
.yf_c00348{bottom:737.760000pt;}
.y10_c00348{bottom:738.136000pt;}
.y11_c00348{bottom:740.744000pt;}
.y9_c00348{bottom:763.201333pt;}
.ya_c00348{bottom:763.564000pt;}
.yb_c00348{bottom:764.846667pt;}
.yc_c00348{bottom:765.382667pt;}
.yd_c00348{bottom:765.837333pt;}
.ye_c00348{bottom:766.682667pt;}
.y7_c00348{bottom:788.297979pt;}
.y8_c00348{bottom:791.570667pt;}
.y6_c00348{bottom:806.186456pt;}
.y5_c00348{bottom:808.447977pt;}
.y4_c00348{bottom:810.604733pt;}
.y3_c00348{bottom:813.579189pt;}
.y2_c00348{bottom:814.568000pt;}
.y1_c00348{bottom:830.880000pt;}
.h12_c00348{height:13.066667pt;}
.h2_c00348{height:20.533333pt;}
.hc_c00348{height:32.666667pt;}
.h7_c00348{height:42.000000pt;}
.h14_c00348{height:43.866667pt;}
.h15_c00348{height:44.800000pt;}
.h16_c00348{height:47.600000pt;}
.h11_c00348{height:53.200000pt;}
.ha_c00348{height:56.000000pt;}
.he_c00348{height:59.733333pt;}
.hd_c00348{height:60.666667pt;}
.h9_c00348{height:62.533333pt;}
.hb_c00348{height:63.466667pt;}
.hf_c00348{height:64.400000pt;}
.h13_c00348{height:66.266667pt;}
.h10_c00348{height:67.200000pt;}
.h5_c00348{height:73.733333pt;}
.h6_c00348{height:111.066667pt;}
.h17_c00348{height:120.402950pt;}
.h3_c00348{height:128.818610pt;}
.h4_c00348{height:129.752078pt;}
.h8_c00348{height:202.533333pt;}
.h1_c00348{height:893.333333pt;}
.h0_c00348{height:893.466667pt;}
.w0_c00348{width:624.480000pt;}
.w1_c00348{width:624.666667pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:32.436000pt;}
.x8_c00348{left:34.320000pt;}
.x2a_c00348{left:36.000000pt;}
.x11_c00348{left:39.600000pt;}
.x1d_c00348{left:42.480000pt;}
.x35_c00348{left:60.480000pt;}
.x12_c00348{left:67.200000pt;}
.x2b_c00348{left:75.840000pt;}
.x3d_c00348{left:76.800000pt;}
.x6f_c00348{left:78.000000pt;}
.x8f_c00348{left:79.200000pt;}
.x9_c00348{left:86.600000pt;}
.x3_c00348{left:90.601333pt;}
.x1e_c00348{left:91.920000pt;}
.x4b_c00348{left:92.880000pt;}
.x8a_c00348{left:95.040000pt;}
.xe_c00348{left:96.574667pt;}
.x7a_c00348{left:98.400000pt;}
.xa7_c00348{left:103.920000pt;}
.x59_c00348{left:106.800000pt;}
.x13_c00348{left:108.480000pt;}
.x3f_c00348{left:110.160000pt;}
.x36_c00348{left:111.840000pt;}
.x79_c00348{left:113.520000pt;}
.xa3_c00348{left:114.480000pt;}
.x1f_c00348{left:116.640000pt;}
.x70_c00348{left:118.320000pt;}
.x60_c00348{left:124.320000pt;}
.x99_c00348{left:128.880000pt;}
.x37_c00348{left:133.440000pt;}
.x47_c00348{left:134.880000pt;}
.x7b_c00348{left:136.320000pt;}
.x2c_c00348{left:137.760000pt;}
.x64_c00348{left:138.960000pt;}
.x40_c00348{left:141.120000pt;}
.x10_c00348{left:142.800000pt;}
.xa4_c00348{left:147.120000pt;}
.x14_c00348{left:149.760000pt;}
.x90_c00348{left:154.560000pt;}
.x68_c00348{left:156.000000pt;}
.x41_c00348{left:162.000000pt;}
.x9a_c00348{left:167.040000pt;}
.x20_c00348{left:168.720000pt;}
.x5a_c00348{left:170.880000pt;}
.x2d_c00348{left:174.960000pt;}
.x61_c00348{left:177.120000pt;}
.x15_c00348{left:182.160000pt;}
.x4c_c00348{left:183.360000pt;}
.x91_c00348{left:186.720000pt;}
.x52_c00348{left:189.120000pt;}
.x42_c00348{left:191.280000pt;}
.x62_c00348{left:196.560000pt;}
.x71_c00348{left:199.920000pt;}
.xa5_c00348{left:200.880000pt;}
.x5b_c00348{left:202.080000pt;}
.x7c_c00348{left:204.480000pt;}
.x16_c00348{left:206.880000pt;}
.x65_c00348{left:210.480000pt;}
.x53_c00348{left:211.440000pt;}
.x48_c00348{left:213.840000pt;}
.x7_c00348{left:218.907413pt;}
.x9b_c00348{left:220.080000pt;}
.x2e_c00348{left:221.040000pt;}
.x82_c00348{left:222.000000pt;}
.x21_c00348{left:223.920000pt;}
.x92_c00348{left:227.760000pt;}
.xa8_c00348{left:228.960000pt;}
.x72_c00348{left:231.600000pt;}
.x54_c00348{left:236.160000pt;}
.x8b_c00348{left:237.360000pt;}
.x63_c00348{left:239.040000pt;}
.xa1_c00348{left:240.240000pt;}
.x66_c00348{left:241.680000pt;}
.x93_c00348{left:242.880000pt;}
.x38_c00348{left:244.800000pt;}
.x69_c00348{left:247.680000pt;}
.x22_c00348{left:248.640000pt;}
.x1_c00348{left:249.600000pt;}
.x17_c00348{left:250.560000pt;}
.xa6_c00348{left:255.600000pt;}
.x2f_c00348{left:259.680000pt;}
.x94_c00348{left:260.640000pt;}
.x49_c00348{left:262.320000pt;}
.x7d_c00348{left:264.000000pt;}
.x4_c00348{left:265.569333pt;}
.x55_c00348{left:268.080000pt;}
.xa_c00348{left:269.876000pt;}
.x43_c00348{left:276.240000pt;}
.x83_c00348{left:277.200000pt;}
.x23_c00348{left:281.280000pt;}
.x18_c00348{left:285.600000pt;}
.x9c_c00348{left:288.240000pt;}
.x7e_c00348{left:289.200000pt;}
.x4d_c00348{left:295.440000pt;}
.x84_c00348{left:296.640000pt;}
.x67_c00348{left:299.280000pt;}
.xa2_c00348{left:300.480000pt;}
.x19_c00348{left:301.680000pt;}
.x4a_c00348{left:303.360000pt;}
.x5c_c00348{left:304.320000pt;}
.x8c_c00348{left:305.280000pt;}
.x95_c00348{left:307.920000pt;}
.x3e_c00348{left:309.840000pt;}
.x73_c00348{left:312.720000pt;}
.x56_c00348{left:315.840000pt;}
.x44_c00348{left:318.480000pt;}
.x30_c00348{left:320.880000pt;}
.x7f_c00348{left:323.280000pt;}
.x74_c00348{left:327.360000pt;}
.x24_c00348{left:329.040000pt;}
.x5d_c00348{left:330.000000pt;}
.x4e_c00348{left:331.200000pt;}
.x6a_c00348{left:333.600000pt;}
.x87_c00348{left:335.760000pt;}
.x1a_c00348{left:340.080000pt;}
.x9d_c00348{left:341.520000pt;}
.x96_c00348{left:343.680000pt;}
.xb_c00348{left:346.440000pt;}
.x75_c00348{left:348.960000pt;}
.x45_c00348{left:352.800000pt;}
.x6b_c00348{left:355.200000pt;}
.x31_c00348{left:357.120000pt;}
.x8d_c00348{left:360.720000pt;}
.x4f_c00348{left:361.680000pt;}
.x57_c00348{left:363.600000pt;}
.x25_c00348{left:365.040000pt;}
.x80_c00348{left:366.720000pt;}
.x5e_c00348{left:371.040000pt;}
.x97_c00348{left:372.480000pt;}
.x6c_c00348{left:374.880000pt;}
.x39_c00348{left:378.960000pt;}
.x32_c00348{left:381.120000pt;}
.x26_c00348{left:382.320000pt;}
.x85_c00348{left:386.640000pt;}
.x58_c00348{left:390.960000pt;}
.x5_c00348{left:392.437333pt;}
.x46_c00348{left:401.040000pt;}
.x5f_c00348{left:403.200000pt;}
.x98_c00348{left:406.320000pt;}
.x9e_c00348{left:408.960000pt;}
.x33_c00348{left:410.400000pt;}
.xc_c00348{left:411.468000pt;}
.x88_c00348{left:412.800000pt;}
.x81_c00348{left:415.920000pt;}
.x76_c00348{left:417.600000pt;}
.x3a_c00348{left:423.120000pt;}
.x6d_c00348{left:435.840000pt;}
.xa9_c00348{left:439.164000pt;}
.x8e_c00348{left:440.400000pt;}
.x9f_c00348{left:441.840000pt;}
.x27_c00348{left:443.040000pt;}
.x77_c00348{left:446.400000pt;}
.x50_c00348{left:450.240000pt;}
.x6e_c00348{left:453.360000pt;}
.x89_c00348{left:457.680000pt;}
.x34_c00348{left:461.520000pt;}
.x78_c00348{left:463.680000pt;}
.x3b_c00348{left:471.600000pt;}
.x28_c00348{left:474.000000pt;}
.x51_c00348{left:476.400000pt;}
.x1b_c00348{left:489.600000pt;}
.xa0_c00348{left:492.000000pt;}
.x6_c00348{left:525.468000pt;}
.x29_c00348{left:526.800000pt;}
.x86_c00348{left:529.680000pt;}
.xf_c00348{left:531.232000pt;}
.xd_c00348{left:532.141333pt;}
.x1c_c00348{left:537.840000pt;}
.x3c_c00348{left:540.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_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_ef4e99a7aa2876b3106553d3.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;}
.m3_c00349{transform:matrix(0.011884,0.000166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.011884,0.000166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.011884,0.000166,-0.003500,0.249976,0,0);}
.m7d_c00349{transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.015809,0.000206,-0.003250,0.249979,0,0);}
.m43_c00349{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);}
.m5_c00349{transform:matrix(0.035657,0.000499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.035657,0.000499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.035657,0.000499,-0.003500,0.249976,0,0);}
.m10_c00349{transform:matrix(0.055315,0.000774,-0.003500,0.249976,0,0);-ms-transform:matrix(0.055315,0.000774,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.055315,0.000774,-0.003500,0.249976,0,0);}
.m5f_c00349{transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065360,0.000000,0.000000,0.250000,0,0);}
.m9a_c00349{transform:matrix(0.088196,0.000794,-0.002250,0.249990,0,0);-ms-transform:matrix(0.088196,0.000794,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.088196,0.000794,-0.002250,0.249990,0,0);}
.med_c00349{transform:matrix(0.092655,0.000927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.092655,0.000927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.092655,0.000927,-0.002500,0.249988,0,0);}
.mc0_c00349{transform:matrix(0.093389,0.001027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.093389,0.001027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.093389,0.001027,-0.002750,0.249985,0,0);}
.m2_c00349{transform:matrix(0.099655,0.001395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.099655,0.001395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.099655,0.001395,-0.003500,0.249976,0,0);}
.m60_c00349{transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.114994,0.001610,-0.003500,0.249976,0,0);-ms-transform:matrix(0.114994,0.001610,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.114994,0.001610,-0.003500,0.249976,0,0);}
.mde_c00349{transform:matrix(0.123324,0.001233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.123324,0.001233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.123324,0.001233,-0.002500,0.249988,0,0);}
.mab_c00349{transform:matrix(0.139320,0.001672,-0.003000,0.249982,0,0);-ms-transform:matrix(0.139320,0.001672,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.139320,0.001672,-0.003000,0.249982,0,0);}
.m15_c00349{transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);}
.mb7_c00349{transform:matrix(0.141371,0.001555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.141371,0.001555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.141371,0.001555,-0.002750,0.249985,0,0);}
.m88_c00349{transform:matrix(0.142014,0.001278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142014,0.001278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142014,0.001278,-0.002250,0.249990,0,0);}
.m20_c00349{transform:matrix(0.143170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143170,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.143440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143440,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{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);}
.m1a_c00349{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);}
.mc8_c00349{transform:matrix(0.148951,0.001638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148951,0.001638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148951,0.001638,-0.002750,0.249985,0,0);}
.me0_c00349{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);}
.mc7_c00349{transform:matrix(0.152066,0.001673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152066,0.001673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152066,0.001673,-0.002750,0.249985,0,0);}
.mb2_c00349{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);}
.mba_c00349{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);}
.m91_c00349{transform:matrix(0.152799,0.001375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152799,0.001375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152799,0.001375,-0.002250,0.249990,0,0);}
.me1_c00349{transform:matrix(0.153032,0.001530,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153032,0.001530,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153032,0.001530,-0.002500,0.249988,0,0);}
.m94_c00349{transform:matrix(0.153674,0.001383,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153674,0.001383,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153674,0.001383,-0.002250,0.249990,0,0);}
.ma1_c00349{transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153939,0.001385,-0.002250,0.249990,0,0);}
.m85_c00349{transform:matrix(0.154712,0.002011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154712,0.002011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154712,0.002011,-0.003250,0.249979,0,0);}
.m2f_c00349{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.155637,0.002023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155637,0.002023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155637,0.002023,-0.003250,0.249979,0,0);}
.mb3_c00349{transform:matrix(0.156176,0.001718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156176,0.001718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156176,0.001718,-0.002750,0.249985,0,0);}
.m14_c00349{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);}
.m97_c00349{transform:matrix(0.157454,0.001417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157454,0.001417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157454,0.001417,-0.002250,0.249990,0,0);}
.m76_c00349{transform:matrix(0.157532,0.002048,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157532,0.002048,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157532,0.002048,-0.003250,0.249979,0,0);}
.mbc_c00349{transform:matrix(0.158060,0.001739,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158060,0.001739,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158060,0.001739,-0.002750,0.249985,0,0);}
.m22_c00349{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);}
.m3f_c00349{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);}
.mef_c00349{transform:matrix(0.160707,0.001607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160707,0.001607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160707,0.001607,-0.002500,0.249988,0,0);}
.md1_c00349{transform:matrix(0.160751,0.003054,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160751,0.003054,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160751,0.003054,-0.004749,0.249955,0,0);}
.mc5_c00349{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);}
.m7b_c00349{transform:matrix(0.161336,0.002097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161336,0.002097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161336,0.002097,-0.003250,0.249979,0,0);}
.m78_c00349{transform:matrix(0.161366,0.002098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161366,0.002098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161366,0.002098,-0.003250,0.249979,0,0);}
.m68_c00349{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);}
.m81_c00349{transform:matrix(0.162691,0.002115,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162691,0.002115,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162691,0.002115,-0.003250,0.249979,0,0);}
.m82_c00349{transform:matrix(0.163496,0.002125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163496,0.002125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163496,0.002125,-0.003250,0.249979,0,0);}
.m93_c00349{transform:matrix(0.163663,0.001473,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163663,0.001473,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163663,0.001473,-0.002250,0.249990,0,0);}
.m8a_c00349{transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163998,0.001476,-0.002250,0.249990,0,0);}
.m44_c00349{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);}
.mea_c00349{transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164287,0.001643,-0.002500,0.249988,0,0);}
.mc6_c00349{transform:matrix(0.164660,0.001811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164660,0.001811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164660,0.001811,-0.002750,0.249985,0,0);}
.m95_c00349{transform:matrix(0.165758,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165758,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165758,0.001492,-0.002250,0.249990,0,0);}
.mc2_c00349{transform:matrix(0.166030,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166030,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166030,0.001826,-0.002750,0.249985,0,0);}
.m77_c00349{transform:matrix(0.166171,0.002160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166171,0.002160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166171,0.002160,-0.003250,0.249979,0,0);}
.m49_c00349{transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{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);}
.m29_c00349{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{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);}
.m63_c00349{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);}
.m98_c00349{transform:matrix(0.168353,0.001515,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168353,0.001515,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168353,0.001515,-0.002250,0.249990,0,0);}
.m90_c00349{transform:matrix(0.168363,0.001515,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168363,0.001515,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168363,0.001515,-0.002250,0.249990,0,0);}
.m8b_c00349{transform:matrix(0.168488,0.001516,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168488,0.001516,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168488,0.001516,-0.002250,0.249990,0,0);}
.m30_c00349{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);}
.m54_c00349{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);}
.md4_c00349{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);}
.m5a_c00349{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);}
.mf3_c00349{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);}
.m17_c00349{transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.170135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170135,0.000000,0.000000,0.250000,0,0);}
.mac_c00349{transform:matrix(0.170338,0.002044,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170338,0.002044,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170338,0.002044,-0.003000,0.249982,0,0);}
.me7_c00349{transform:matrix(0.170631,0.001706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170631,0.001706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170631,0.001706,-0.002500,0.249988,0,0);}
.m21_c00349{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);}
.m8f_c00349{transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171133,0.001540,-0.002250,0.249990,0,0);}
.m2e_c00349{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);}
.m35_c00349{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);}
.ma0_c00349{transform:matrix(0.171748,0.001546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171748,0.001546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171748,0.001546,-0.002250,0.249990,0,0);}
.m32_c00349{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);}
.m8d_c00349{transform:matrix(0.172058,0.001549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172058,0.001549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172058,0.001549,-0.002250,0.249990,0,0);}
.m16_c00349{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);}
.mc4_c00349{transform:matrix(0.172175,0.001894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172175,0.001894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172175,0.001894,-0.002750,0.249985,0,0);}
.m6a_c00349{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);}
.m50_c00349{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);}
.ma2_c00349{transform:matrix(0.173548,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173548,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173548,0.001562,-0.002250,0.249990,0,0);}
.md2_c00349{transform:matrix(0.174099,0.003308,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174099,0.003308,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174099,0.003308,-0.004749,0.249955,0,0);}
.m87_c00349{transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);}
.m99_c00349{transform:matrix(0.174673,0.001572,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174673,0.001572,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174673,0.001572,-0.002250,0.249990,0,0);}
.mc1_c00349{transform:matrix(0.174739,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174739,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174739,0.001922,-0.002750,0.249985,0,0);}
.m58_c00349{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);}
.m66_c00349{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);}
.m7c_c00349{transform:matrix(0.175310,0.002279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175310,0.002279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175310,0.002279,-0.003250,0.249979,0,0);}
.m75_c00349{transform:matrix(0.175575,0.002282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175575,0.002282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175575,0.002282,-0.003250,0.249979,0,0);}
.mbf_c00349{transform:matrix(0.176024,0.001936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176024,0.001936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176024,0.001936,-0.002750,0.249985,0,0);}
.m4f_c00349{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);}
.m96_c00349{transform:matrix(0.177113,0.001594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177113,0.001594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177113,0.001594,-0.002250,0.249990,0,0);}
.m70_c00349{transform:matrix(0.177700,0.002310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177700,0.002310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177700,0.002310,-0.003250,0.249979,0,0);}
.m5c_c00349{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);}
.m28_c00349{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);}
.mdd_c00349{transform:matrix(0.178786,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178786,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178786,0.001788,-0.002500,0.249988,0,0);}
.m8c_c00349{transform:matrix(0.178808,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178808,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178808,0.001609,-0.002250,0.249990,0,0);}
.m19_c00349{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);}
.m7f_c00349{transform:matrix(0.179375,0.002332,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179375,0.002332,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179375,0.002332,-0.003250,0.249979,0,0);}
.mf0_c00349{transform:matrix(0.179396,0.001794,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179396,0.001794,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179396,0.001794,-0.002500,0.249988,0,0);}
.m33_c00349{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);}
.m2b_c00349{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);}
.m9d_c00349{transform:matrix(0.180758,0.001627,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180758,0.001627,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180758,0.001627,-0.002250,0.249990,0,0);}
.m34_c00349{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);}
.ma5_c00349{transform:matrix(0.181233,0.001631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181233,0.001631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181233,0.001631,-0.002250,0.249990,0,0);}
.me3_c00349{transform:matrix(0.181266,0.001813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181266,0.001813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181266,0.001813,-0.002500,0.249988,0,0);}
.ma3_c00349{transform:matrix(0.181718,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181718,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181718,0.001635,-0.002250,0.249990,0,0);}
.mca_c00349{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);}
.maa_c00349{transform:matrix(0.181952,0.002183,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181952,0.002183,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181952,0.002183,-0.003000,0.249982,0,0);}
.mb5_c00349{transform:matrix(0.182069,0.002003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182069,0.002003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182069,0.002003,-0.002750,0.249985,0,0);}
.m84_c00349{transform:matrix(0.182480,0.002372,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182480,0.002372,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182480,0.002372,-0.003250,0.249979,0,0);}
.m83_c00349{transform:matrix(0.183350,0.002384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183350,0.002384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183350,0.002384,-0.003250,0.249979,0,0);}
.m57_c00349{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);}
.mae_c00349{transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);}
.m18_c00349{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);}
.mda_c00349{transform:matrix(0.184306,0.001843,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184306,0.001843,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184306,0.001843,-0.002500,0.249988,0,0);}
.mdc_c00349{transform:matrix(0.184361,0.001844,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184361,0.001844,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184361,0.001844,-0.002500,0.249988,0,0);}
.m2d_c00349{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);}
.m48_c00349{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);}
.m89_c00349{transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);}
.m86_c00349{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);}
.mc9_c00349{transform:matrix(0.185439,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185439,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185439,0.002040,-0.002750,0.249985,0,0);}
.m80_c00349{transform:matrix(0.185459,0.002411,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185459,0.002411,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185459,0.002411,-0.003250,0.249979,0,0);}
.m11_c00349{transform:matrix(0.185747,0.002600,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185747,0.002600,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185747,0.002600,-0.003500,0.249976,0,0);}
.m6e_c00349{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);}
.mec_c00349{transform:matrix(0.186181,0.001862,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186181,0.001862,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186181,0.001862,-0.002500,0.249988,0,0);}
.m2c_c00349{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);}
.m9c_c00349{transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);}
.md0_c00349{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);}
.m4c_c00349{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);}
.mc3_c00349{transform:matrix(0.187369,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187369,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187369,0.002061,-0.002750,0.249985,0,0);}
.me9_c00349{transform:matrix(0.187601,0.001876,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187601,0.001876,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187601,0.001876,-0.002500,0.249988,0,0);}
.mad_c00349{transform:matrix(0.187931,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187931,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187931,0.002255,-0.003000,0.249982,0,0);}
.m65_c00349{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);}
.m9e_c00349{transform:matrix(0.188562,0.001697,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188562,0.001697,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188562,0.001697,-0.002250,0.249990,0,0);}
.mbb_c00349{transform:matrix(0.189829,0.002088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189829,0.002088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189829,0.002088,-0.002750,0.249985,0,0);}
.mbe_c00349{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);}
.m8e_c00349{transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190837,0.001718,-0.002250,0.249990,0,0);}
.m1b_c00349{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);}
.mdb_c00349{transform:matrix(0.191185,0.001912,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191185,0.001912,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191185,0.001912,-0.002500,0.249988,0,0);}
.ma8_c00349{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);}
.md6_c00349{transform:matrix(0.193380,0.003674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193380,0.003674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193380,0.003674,-0.004749,0.249955,0,0);}
.me4_c00349{transform:matrix(0.193575,0.001936,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193575,0.001936,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193575,0.001936,-0.002500,0.249988,0,0);}
.m1f_c00349{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);}
.m92_c00349{transform:matrix(0.193842,0.001745,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193842,0.001745,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193842,0.001745,-0.002250,0.249990,0,0);}
.m46_c00349{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);}
.m62_c00349{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);}
.m72_c00349{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);}
.m1e_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);}
.m64_c00349{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);}
.m5e_c00349{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);}
.mb8_c00349{transform:matrix(0.196923,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196923,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196923,0.002166,-0.002750,0.249985,0,0);}
.m53_c00349{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_c00349{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);}
.m1c_c00349{transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198915,0.000000,0.000000,0.250000,0,0);}
.md5_c00349{transform:matrix(0.199029,0.003782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199029,0.003782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199029,0.003782,-0.004749,0.249955,0,0);}
.mb1_c00349{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);}
.m31_c00349{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{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);}
.meb_c00349{transform:matrix(0.199570,0.001996,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199570,0.001996,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199570,0.001996,-0.002500,0.249988,0,0);}
.m9f_c00349{transform:matrix(0.199667,0.001797,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199667,0.001797,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199667,0.001797,-0.002250,0.249990,0,0);}
.m56_c00349{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);}
.m71_c00349{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);}
.m73_c00349{transform:matrix(0.200153,0.002602,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200153,0.002602,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200153,0.002602,-0.003250,0.249979,0,0);}
.md9_c00349{transform:matrix(0.200610,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200610,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200610,0.002006,-0.002500,0.249988,0,0);}
.md3_c00349{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);}
.ma7_c00349{transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);}
.mf_c00349{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);}
.m7a_c00349{transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201983,0.002626,-0.003250,0.249979,0,0);}
.m25_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);}
.m79_c00349{transform:matrix(0.202738,0.002636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202738,0.002636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202738,0.002636,-0.003250,0.249979,0,0);}
.m3c_c00349{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);}
.m12_c00349{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);}
.mb4_c00349{transform:matrix(0.204473,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204473,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204473,0.002249,-0.002750,0.249985,0,0);}
.mb6_c00349{transform:matrix(0.204958,0.002255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204958,0.002255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204958,0.002255,-0.002750,0.249985,0,0);}
.ma9_c00349{transform:matrix(0.206415,0.002477,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206415,0.002477,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206415,0.002477,-0.003000,0.249982,0,0);}
.m42_c00349{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);}
.m47_c00349{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);}
.m41_c00349{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);}
.m24_c00349{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);}
.m37_c00349{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);}
.m38_c00349{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);}
.md8_c00349{transform:matrix(0.212634,0.002126,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212634,0.002126,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212634,0.002126,-0.002500,0.249988,0,0);}
.mdf_c00349{transform:matrix(0.214444,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214444,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214444,0.002144,-0.002500,0.249988,0,0);}
.m5d_c00349{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);}
.maf_c00349{transform:matrix(0.215619,0.002587,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215619,0.002587,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215619,0.002587,-0.003000,0.249982,0,0);}
.m23_c00349{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);}
.md7_c00349{transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);}
.m4e_c00349{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);}
.m7e_c00349{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);}
.m52_c00349{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);}
.mbd_c00349{transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219877,0.002419,-0.002750,0.249985,0,0);}
.m40_c00349{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);}
.m51_c00349{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);}
.m4d_c00349{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);}
.m26_c00349{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);}
.m9b_c00349{transform:matrix(0.232761,0.002095,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232761,0.002095,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232761,0.002095,-0.002250,0.249990,0,0);}
.me5_c00349{transform:matrix(0.232948,0.002329,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232948,0.002329,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232948,0.002329,-0.002500,0.249988,0,0);}
.m3b_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);}
.me2_c00349{transform:matrix(0.233883,0.002339,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233883,0.002339,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233883,0.002339,-0.002500,0.249988,0,0);}
.m5b_c00349{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);}
.m6f_c00349{transform:matrix(0.234830,0.003053,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234830,0.003053,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234830,0.003053,-0.003250,0.249979,0,0);}
.m6_c00349{transform:matrix(0.235367,0.003295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235367,0.003295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235367,0.003295,-0.003500,0.249976,0,0);}
.ma6_c00349{transform:matrix(0.241710,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241710,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241710,0.002175,-0.002250,0.249990,0,0);}
.m59_c00349{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);}
.ma4_c00349{transform:matrix(0.242555,0.002183,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242555,0.002183,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242555,0.002183,-0.002250,0.249990,0,0);}
.m67_c00349{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);}
.me_c00349{transform:matrix(0.251835,0.003526,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251835,0.003526,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251835,0.003526,-0.003500,0.249976,0,0);}
.m3a_c00349{transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.252620,0.003537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252620,0.003537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252620,0.003537,-0.003500,0.249976,0,0);}
.m61_c00349{transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{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);}
.m4b_c00349{transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.270623,0.003789,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270623,0.003789,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270623,0.003789,-0.003500,0.249976,0,0);}
.mcf_c00349{transform:matrix(0.276943,0.006093,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276943,0.006093,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276943,0.006093,-0.005499,0.249940,0,0);}
.mcb_c00349{transform:matrix(0.278553,0.006128,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278553,0.006128,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278553,0.006128,-0.005499,0.249940,0,0);}
.mc_c00349{transform:matrix(0.288707,0.004042,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288707,0.004042,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288707,0.004042,-0.003500,0.249976,0,0);}
.md_c00349{transform:matrix(0.289367,0.004051,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289367,0.004051,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289367,0.004051,-0.003500,0.249976,0,0);}
.me8_c00349{transform:matrix(0.289741,0.002897,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289741,0.002897,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289741,0.002897,-0.002500,0.249988,0,0);}
.m6d_c00349{transform:matrix(0.303820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303820,0.000000,0.000000,0.250000,0,0);}
.mcd_c00349{transform:matrix(0.313489,0.006897,-0.005499,0.249940,0,0);-ms-transform:matrix(0.313489,0.006897,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.313489,0.006897,-0.005499,0.249940,0,0);}
.m55_c00349{transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325865,0.000000,0.000000,0.250000,0,0);}
.mb0_c00349{transform:matrix(0.327641,0.003932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.327641,0.003932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.327641,0.003932,-0.003000,0.249982,0,0);}
.mb9_c00349{transform:matrix(0.340274,0.003743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.340274,0.003743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.340274,0.003743,-0.002750,0.249985,0,0);}
.ma_c00349{transform:matrix(0.350751,0.004911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.350751,0.004911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.350751,0.004911,-0.003500,0.249976,0,0);}
.m4_c00349{transform:matrix(0.355355,0.004975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.355355,0.004975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.355355,0.004975,-0.003500,0.249976,0,0);}
.m8_c00349{transform:matrix(0.358475,0.005019,-0.003500,0.249976,0,0);-ms-transform:matrix(0.358475,0.005019,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.358475,0.005019,-0.003500,0.249976,0,0);}
.m1_c00349{transform:matrix(0.362379,0.005073,-0.003500,0.249976,0,0);-ms-transform:matrix(0.362379,0.005073,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.362379,0.005073,-0.003500,0.249976,0,0);}
.m13_c00349{transform:matrix(0.373215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373215,0.000000,0.000000,0.250000,0,0);}
.mcc_c00349{transform:matrix(0.412615,0.009078,-0.005499,0.249940,0,0);-ms-transform:matrix(0.412615,0.009078,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.412615,0.009078,-0.005499,0.249940,0,0);}
.m6c_c00349{transform:matrix(0.417665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417665,0.000000,0.000000,0.250000,0,0);}
.mf1_c00349{transform:matrix(0.429789,0.004298,-0.002500,0.249988,0,0);-ms-transform:matrix(0.429789,0.004298,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.429789,0.004298,-0.002500,0.249988,0,0);}
.mb_c00349{transform:matrix(0.431913,0.006047,-0.003500,0.249976,0,0);-ms-transform:matrix(0.431913,0.006047,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.431913,0.006047,-0.003500,0.249976,0,0);}
.m3d_c00349{transform:matrix(0.433940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433940,0.000000,0.000000,0.250000,0,0);}
.me6_c00349{transform:matrix(0.486531,0.004865,-0.002500,0.249988,0,0);-ms-transform:matrix(0.486531,0.004865,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.486531,0.004865,-0.002500,0.249988,0,0);}
.mf2_c00349{transform:matrix(0.504185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504185,0.000000,0.000000,0.250000,0,0);}
.mce_c00349{transform:matrix(0.505773,0.011127,-0.005499,0.249940,0,0);-ms-transform:matrix(0.505773,0.011127,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.505773,0.011127,-0.005499,0.249940,0,0);}
.m6b_c00349{transform:matrix(0.552455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552455,0.000000,0.000000,0.250000,0,0);}
.mf4_c00349{transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572005,0.000000,0.000000,0.250000,0,0);}
.m2a_c00349{transform:matrix(0.577505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577505,0.000000,0.000000,0.250000,0,0);}
.mee_c00349{transform:matrix(0.602060,0.006021,-0.002500,0.249988,0,0);-ms-transform:matrix(0.602060,0.006021,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.602060,0.006021,-0.002500,0.249988,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;}
.fs10_c00349{font-size:27.300000px;}
.fs14_c00349{font-size:50.402520px;}
.fs0_c00349{font-size:54.605351px;}
.fs1_c00349{font-size:55.655453px;}
.fs17_c00349{font-size:59.850000px;}
.fs15_c00349{font-size:61.953097px;}
.fs12_c00349{font-size:65.115752px;}
.fs9_c00349{font-size:66.150000px;}
.fs7_c00349{font-size:67.200000px;}
.fs4_c00349{font-size:69.300000px;}
.fse_c00349{font-size:69.302807px;}
.fsb_c00349{font-size:69.305856px;}
.fs6_c00349{font-size:70.350000px;}
.fs8_c00349{font-size:71.400000px;}
.fsd_c00349{font-size:71.402892px;}
.fs11_c00349{font-size:71.404320px;}
.fsf_c00349{font-size:71.405141px;}
.fs3_c00349{font-size:72.450000px;}
.fsc_c00349{font-size:72.452934px;}
.fsa_c00349{font-size:72.456122px;}
.fs13_c00349{font-size:72.463076px;}
.fs5_c00349{font-size:77.700000px;}
.fs2_c00349{font-size:133.350000px;}
.fs16_c00349{font-size:139.650000px;}
.y0_c00349{bottom:0.000000px;}
.yac_c00349{bottom:95.478000px;}
.yab_c00349{bottom:97.837500px;}
.yaa_c00349{bottom:149.231070px;}
.ya9_c00349{bottom:155.457300px;}
.ya8_c00349{bottom:155.685360px;}
.ya7_c00349{bottom:156.362865px;}
.ya6_c00349{bottom:163.760445px;}
.ya5_c00349{bottom:164.241270px;}
.ya4_c00349{bottom:165.018045px;}
.ya3_c00349{bottom:165.473685px;}
.ya2_c00349{bottom:165.733875px;}
.ya1_c00349{bottom:167.563125px;}
.ya0_c00349{bottom:167.670480px;}
.y9f_c00349{bottom:167.848365px;}
.y9e_c00349{bottom:168.521925px;}
.y9d_c00349{bottom:168.715770px;}
.y9c_c00349{bottom:169.048035px;}
.y9b_c00349{bottom:169.342215px;}
.y9a_c00349{bottom:169.628430px;}
.y99_c00349{bottom:169.798245px;}
.y98_c00349{bottom:170.479200px;}
.y97_c00349{bottom:170.654445px;}
.y96_c00349{bottom:171.070680px;}
.y95_c00349{bottom:171.251655px;}
.y94_c00349{bottom:171.464670px;}
.y93_c00349{bottom:171.961695px;}
.y92_c00349{bottom:172.250385px;}
.y91_c00349{bottom:172.634085px;}
.y90_c00349{bottom:172.801500px;}
.y8f_c00349{bottom:221.861440px;}
.y8e_c00349{bottom:222.445463px;}
.y8d_c00349{bottom:222.823344px;}
.y8c_c00349{bottom:223.798272px;}
.y8b_c00349{bottom:224.436330px;}
.y8a_c00349{bottom:225.034773px;}
.y89_c00349{bottom:226.534500px;}
.y88_c00349{bottom:261.043380px;}
.y87_c00349{bottom:262.237947px;}
.y86_c00349{bottom:262.950846px;}
.y85_c00349{bottom:264.168777px;}
.y84_c00349{bottom:264.876000px;}
.y83_c00349{bottom:301.126254px;}
.y82_c00349{bottom:301.470593px;}
.y81_c00349{bottom:301.818198px;}
.y80_c00349{bottom:302.088452px;}
.y7f_c00349{bottom:302.667602px;}
.y7e_c00349{bottom:303.047844px;}
.y7d_c00349{bottom:303.365057px;}
.y7c_c00349{bottom:303.781154px;}
.y7b_c00349{bottom:304.021443px;}
.y7a_c00349{bottom:304.288727px;}
.y79_c00349{bottom:304.442540px;}
.y78_c00349{bottom:304.829365px;}
.y77_c00349{bottom:323.604959px;}
.y76_c00349{bottom:324.029190px;}
.y75_c00349{bottom:324.332708px;}
.y74_c00349{bottom:325.009802px;}
.y73_c00349{bottom:325.312296px;}
.y72_c00349{bottom:325.449857px;}
.y71_c00349{bottom:326.082170px;}
.y70_c00349{bottom:326.310414px;}
.y6f_c00349{bottom:326.536514px;}
.y6e_c00349{bottom:327.023693px;}
.y6d_c00349{bottom:327.602843px;}
.y6c_c00349{bottom:328.119590px;}
.y6b_c00349{bottom:328.321500px;}
.y6a_c00349{bottom:329.400000px;}
.y69_c00349{bottom:355.769106px;}
.y68_c00349{bottom:356.484516px;}
.y67_c00349{bottom:357.190818px;}
.y66_c00349{bottom:357.877842px;}
.y65_c00349{bottom:358.619820px;}
.y64_c00349{bottom:358.992474px;}
.y63_c00349{bottom:359.326212px;}
.y62_c00349{bottom:359.540034px;}
.y61_c00349{bottom:360.181500px;}
.y60_c00349{bottom:387.767857px;}
.y5f_c00349{bottom:388.205283px;}
.y5e_c00349{bottom:388.477341px;}
.y5d_c00349{bottom:388.848733px;}
.y5c_c00349{bottom:389.454282px;}
.y5b_c00349{bottom:389.733279px;}
.y5a_c00349{bottom:389.925522px;}
.y59_c00349{bottom:390.193896px;}
.y58_c00349{bottom:390.694535px;}
.y57_c00349{bottom:390.960141px;}
.y56_c00349{bottom:411.284905px;}
.y55_c00349{bottom:411.494339px;}
.y54_c00349{bottom:411.622335px;}
.y53_c00349{bottom:411.709562px;}
.y52_c00349{bottom:411.999432px;}
.y51_c00349{bottom:412.170145px;}
.y50_c00349{bottom:412.719830px;}
.y4f_c00349{bottom:413.263737px;}
.y4e_c00349{bottom:413.508248px;}
.y4d_c00349{bottom:413.664870px;}
.y4c_c00349{bottom:414.169748px;}
.y4b_c00349{bottom:414.450791px;}
.y4a_c00349{bottom:434.248035px;}
.y49_c00349{bottom:434.595269px;}
.y48_c00349{bottom:435.008612px;}
.y47_c00349{bottom:435.438654px;}
.y46_c00349{bottom:435.834488px;}
.y45_c00349{bottom:436.792353px;}
.y44_c00349{bottom:437.047125px;}
.y43_c00349{bottom:437.441163px;}
.y42_c00349{bottom:437.696286px;}
.y41_c00349{bottom:437.888297px;}
.y40_c00349{bottom:438.211500px;}
.y3f_c00349{bottom:465.122083px;}
.y3e_c00349{bottom:465.427473px;}
.y3d_c00349{bottom:465.951984px;}
.y3c_c00349{bottom:466.257724px;}
.y3b_c00349{bottom:466.502188px;}
.y3a_c00349{bottom:466.830733px;}
.y39_c00349{bottom:467.171082px;}
.y38_c00349{bottom:467.493483px;}
.y37_c00349{bottom:467.907436px;}
.y36_c00349{bottom:492.327557px;}
.y35_c00349{bottom:493.733877px;}
.y34_c00349{bottom:494.091412px;}
.y33_c00349{bottom:494.231973px;}
.y32_c00349{bottom:494.710443px;}
.y31_c00349{bottom:494.989671px;}
.y30_c00349{bottom:495.264528px;}
.y2f_c00349{bottom:495.448924px;}
.y2e_c00349{bottom:520.859632px;}
.y2d_c00349{bottom:521.404501px;}
.y2c_c00349{bottom:521.636044px;}
.y2b_c00349{bottom:522.358188px;}
.y2a_c00349{bottom:522.633040px;}
.y29_c00349{bottom:523.074715px;}
.y28_c00349{bottom:523.475967px;}
.y27_c00349{bottom:523.801500px;}
.y26_c00349{bottom:561.241500px;}
.y25_c00349{bottom:600.531000px;}
.y24_c00349{bottom:600.781500px;}
.y23_c00349{bottom:601.029000px;}
.y22_c00349{bottom:601.866000px;}
.y21_c00349{bottom:602.709000px;}
.y20_c00349{bottom:603.177000px;}
.y1f_c00349{bottom:603.745500px;}
.y1e_c00349{bottom:604.951500px;}
.y1d_c00349{bottom:605.347500px;}
.y1c_c00349{bottom:605.611500px;}
.y1b_c00349{bottom:625.020000px;}
.y1a_c00349{bottom:654.930000px;}
.y19_c00349{bottom:682.687500px;}
.y18_c00349{bottom:713.656500px;}
.y17_c00349{bottom:744.523500px;}
.y16_c00349{bottom:773.817000px;}
.y15_c00349{bottom:801.946500px;}
.y14_c00349{bottom:824.310000px;}
.y13_c00349{bottom:873.807000px;}
.y12_c00349{bottom:895.183743px;}
.y11_c00349{bottom:900.832131px;}
.y10_c00349{bottom:909.629013px;}
.yf_c00349{bottom:931.269570px;}
.ye_c00349{bottom:931.678566px;}
.yd_c00349{bottom:932.162154px;}
.yc_c00349{bottom:932.945391px;}
.yb_c00349{bottom:933.787764px;}
.ya_c00349{bottom:933.937473px;}
.y9_c00349{bottom:934.653720px;}
.y8_c00349{bottom:934.876929px;}
.y7_c00349{bottom:935.526438px;}
.y6_c00349{bottom:935.607729px;}
.y5_c00349{bottom:936.403293px;}
.y4_c00349{bottom:936.805233px;}
.y3_c00349{bottom:937.285986px;}
.y2_c00349{bottom:938.015253px;}
.y1_c00349{bottom:938.784000px;}
.h12_c00349{height:27.300000px;}
.h16_c00349{height:50.402520px;}
.h2_c00349{height:54.605351px;}
.h3_c00349{height:55.655453px;}
.h19_c00349{height:59.850000px;}
.h17_c00349{height:61.953097px;}
.h14_c00349{height:65.115752px;}
.hb_c00349{height:66.150000px;}
.h9_c00349{height:67.200000px;}
.h6_c00349{height:69.300000px;}
.h10_c00349{height:69.302807px;}
.hd_c00349{height:69.305856px;}
.h8_c00349{height:70.350000px;}
.ha_c00349{height:71.400000px;}
.hf_c00349{height:71.402892px;}
.h13_c00349{height:71.404320px;}
.h11_c00349{height:71.405141px;}
.h5_c00349{height:72.450000px;}
.he_c00349{height:72.452934px;}
.hc_c00349{height:72.456122px;}
.h15_c00349{height:72.463076px;}
.h7_c00349{height:77.700000px;}
.h4_c00349{height:133.350000px;}
.h18_c00349{height:139.650000px;}
.h0_c00349{height:1008.450000px;}
.h1_c00349{height:1008.750000px;}
.w0_c00349{width:696.000000px;}
.x0_c00349{left:0.000000px;}
.x12_c00349{left:105.299484px;}
.x1_c00349{left:109.035000px;}
.xa2_c00349{left:110.160000px;}
.x10_c00349{left:114.698520px;}
.x9a_c00349{left:124.647750px;}
.x22_c00349{left:152.550000px;}
.x13_c00349{left:153.630000px;}
.x83_c00349{left:154.980000px;}
.x57_c00349{left:157.006500px;}
.x7b_c00349{left:160.311833px;}
.x8a_c00349{left:161.619498px;}
.x2_c00349{left:163.945500px;}
.x3b_c00349{left:167.400000px;}
.x29_c00349{left:172.530000px;}
.x4f_c00349{left:174.420000px;}
.x66_c00349{left:175.917428px;}
.x15_c00349{left:179.010000px;}
.x46_c00349{left:180.630000px;}
.xa0_c00349{left:184.015140px;}
.x33_c00349{left:190.620000px;}
.x60_c00349{left:193.975500px;}
.x47_c00349{left:195.210000px;}
.x67_c00349{left:196.449000px;}
.x84_c00349{left:197.496000px;}
.x16_c00349{left:201.150000px;}
.x8b_c00349{left:210.768498px;}
.x2a_c00349{left:214.650000px;}
.x3_c00349{left:216.036000px;}
.x34_c00349{left:217.890000px;}
.x61_c00349{left:219.016500px;}
.x68_c00349{left:226.939580px;}
.x95_c00349{left:233.479500px;}
.x23_c00349{left:235.440000px;}
.x3c_c00349{left:237.600000px;}
.x17_c00349{left:242.460000px;}
.x85_c00349{left:244.473000px;}
.x24_c00349{left:246.510000px;}
.x50_c00349{left:248.400000px;}
.x4_c00349{left:250.375500px;}
.x2b_c00349{left:256.230000px;}
.x69_c00349{left:257.997198px;}
.x48_c00349{left:260.010000px;}
.x25_c00349{left:261.090000px;}
.x96_c00349{left:262.348500px;}
.x70_c00349{left:263.680500px;}
.x75_c00349{left:266.943795px;}
.x7e_c00349{left:268.495500px;}
.x51_c00349{left:275.130000px;}
.x2c_c00349{left:277.560000px;}
.x5_c00349{left:279.085500px;}
.x58_c00349{left:281.412000px;}
.x62_c00349{left:283.857000px;}
.x35_c00349{left:286.740000px;}
.x18_c00349{left:289.170000px;}
.x14_c00349{left:291.870000px;}
.x8c_c00349{left:294.738498px;}
.x7f_c00349{left:296.307000px;}
.x5d_c00349{left:305.370000px;}
.x52_c00349{left:306.720000px;}
.x3d_c00349{left:308.070000px;}
.x6a_c00349{left:311.189967px;}
.x7c_c00349{left:313.631210px;}
.x36_c00349{left:315.900000px;}
.x19_c00349{left:320.220000px;}
.x49_c00349{left:321.570000px;}
.x26_c00349{left:323.190000px;}
.x2d_c00349{left:325.080000px;}
.x53_c00349{left:326.430000px;}
.x3e_c00349{left:327.510000px;}
.x4a_c00349{left:333.990000px;}
.x6_c00349{left:335.911500px;}
.x2e_c00349{left:338.850000px;}
.x7_c00349{left:341.718000px;}
.x92_c00349{left:344.370000px;}
.x7d_c00349{left:348.464520px;}
.x59_c00349{left:350.524500px;}
.x6c_c00349{left:351.742893px;}
.x8d_c00349{left:358.143498px;}
.x63_c00349{left:360.549000px;}
.x37_c00349{left:361.800000px;}
.x27_c00349{left:363.960000px;}
.x2f_c00349{left:366.390000px;}
.x64_c00349{left:378.360000px;}
.x1a_c00349{left:379.620000px;}
.x4b_c00349{left:381.510000px;}
.x86_c00349{left:382.716000px;}
.x3f_c00349{left:384.480000px;}
.x9b_c00349{left:386.030595px;}
.x8_c00349{left:388.111500px;}
.x80_c00349{left:389.193000px;}
.x38_c00349{left:391.500000px;}
.x40_c00349{left:393.930000px;}
.x93_c00349{left:395.682000px;}
.x30_c00349{left:400.410000px;}
.x4c_c00349{left:402.300000px;}
.x9_c00349{left:404.055000px;}
.x1b_c00349{left:407.700000px;}
.x8e_c00349{left:410.793498px;}
.x6d_c00349{left:412.992591px;}
.x94_c00349{left:415.570500px;}
.x65_c00349{left:420.273000px;}
.x9c_c00349{left:423.300720px;}
.x5e_c00349{left:424.710000px;}
.x91_c00349{left:426.352500px;}
.x41_c00349{left:429.570000px;}
.x8f_c00349{left:435.361998px;}
.x39_c00349{left:436.860000px;}
.x1c_c00349{left:440.640000px;}
.x71_c00349{left:442.200000px;}
.x28_c00349{left:443.610000px;}
.x54_c00349{left:444.960000px;}
.x81_c00349{left:446.445000px;}
.x42_c00349{left:451.980000px;}
.x31_c00349{left:453.870000px;}
.xa_c00349{left:455.215500px;}
.x4d_c00349{left:460.620000px;}
.x5a_c00349{left:462.573000px;}
.x5f_c00349{left:463.860000px;}
.xb_c00349{left:465.909000px;}
.x3a_c00349{left:467.640000px;}
.x6e_c00349{left:471.342633px;}
.x5b_c00349{left:479.121000px;}
.x76_c00349{left:480.528143px;}
.x32_c00349{left:484.650000px;}
.x72_c00349{left:486.181500px;}
.x9d_c00349{left:488.366670px;}
.x4e_c00349{left:492.480000px;}
.x5c_c00349{left:495.804000px;}
.x90_c00349{left:498.265998px;}
.x1d_c00349{left:502.470000px;}
.x6f_c00349{left:505.335907px;}
.x43_c00349{left:508.410000px;}
.x6b_c00349{left:522.771465px;}
.x1e_c00349{left:524.340000px;}
.xc_c00349{left:526.078500px;}
.x73_c00349{left:533.964000px;}
.x55_c00349{left:535.140000px;}
.x87_c00349{left:541.758000px;}
.x77_c00349{left:546.205317px;}
.x44_c00349{left:550.530000px;}
.x97_c00349{left:553.714500px;}
.x1f_c00349{left:555.390000px;}
.x78_c00349{left:558.564033px;}
.x82_c00349{left:564.921000px;}
.x88_c00349{left:569.350500px;}
.x45_c00349{left:575.370000px;}
.x79_c00349{left:576.952871px;}
.x20_c00349{left:579.960000px;}
.xd_c00349{left:582.024000px;}
.x98_c00349{left:586.941000px;}
.x9e_c00349{left:599.347500px;}
.x7a_c00349{left:606.890411px;}
.x89_c00349{left:607.917000px;}
.x21_c00349{left:610.470000px;}
.xe_c00349{left:616.566000px;}
.x74_c00349{left:618.472500px;}
.x56_c00349{left:630.450000px;}
.xf_c00349{left:645.780000px;}
.xa1_c00349{left:662.923770px;}
.x11_c00349{left:664.496127px;}
.x9f_c00349{left:667.982055px;}
.x99_c00349{left:673.681500px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
.fs10_c00349{font-size:24.266667pt;}
.fs14_c00349{font-size:44.802240pt;}
.fs0_c00349{font-size:48.538089pt;}
.fs1_c00349{font-size:49.471514pt;}
.fs17_c00349{font-size:53.200000pt;}
.fs15_c00349{font-size:55.069420pt;}
.fs12_c00349{font-size:57.880669pt;}
.fs9_c00349{font-size:58.800000pt;}
.fs7_c00349{font-size:59.733333pt;}
.fs4_c00349{font-size:61.600000pt;}
.fse_c00349{font-size:61.602495pt;}
.fsb_c00349{font-size:61.605205pt;}
.fs6_c00349{font-size:62.533333pt;}
.fs8_c00349{font-size:63.466667pt;}
.fsd_c00349{font-size:63.469237pt;}
.fs11_c00349{font-size:63.470506pt;}
.fsf_c00349{font-size:63.471236pt;}
.fs3_c00349{font-size:64.400000pt;}
.fsc_c00349{font-size:64.402608pt;}
.fsa_c00349{font-size:64.405442pt;}
.fs13_c00349{font-size:64.411623pt;}
.fs5_c00349{font-size:69.066667pt;}
.fs2_c00349{font-size:118.533333pt;}
.fs16_c00349{font-size:124.133333pt;}
.y0_c00349{bottom:0.000000pt;}
.yac_c00349{bottom:84.869333pt;}
.yab_c00349{bottom:86.966667pt;}
.yaa_c00349{bottom:132.649840pt;}
.ya9_c00349{bottom:138.184267pt;}
.ya8_c00349{bottom:138.386987pt;}
.ya7_c00349{bottom:138.989213pt;}
.ya6_c00349{bottom:145.564840pt;}
.ya5_c00349{bottom:145.992240pt;}
.ya4_c00349{bottom:146.682707pt;}
.ya3_c00349{bottom:147.087720pt;}
.ya2_c00349{bottom:147.319000pt;}
.ya1_c00349{bottom:148.945000pt;}
.ya0_c00349{bottom:149.040427pt;}
.y9f_c00349{bottom:149.198547pt;}
.y9e_c00349{bottom:149.797267pt;}
.y9d_c00349{bottom:149.969573pt;}
.y9c_c00349{bottom:150.264920pt;}
.y9b_c00349{bottom:150.526413pt;}
.y9a_c00349{bottom:150.780827pt;}
.y99_c00349{bottom:150.931773pt;}
.y98_c00349{bottom:151.537067pt;}
.y97_c00349{bottom:151.692840pt;}
.y96_c00349{bottom:152.062827pt;}
.y95_c00349{bottom:152.223693pt;}
.y94_c00349{bottom:152.413040pt;}
.y93_c00349{bottom:152.854840pt;}
.y92_c00349{bottom:153.111453pt;}
.y91_c00349{bottom:153.452520pt;}
.y90_c00349{bottom:153.601333pt;}
.y8f_c00349{bottom:197.210169pt;}
.y8e_c00349{bottom:197.729300pt;}
.y8d_c00349{bottom:198.065195pt;}
.y8c_c00349{bottom:198.931797pt;}
.y8b_c00349{bottom:199.498960pt;}
.y8a_c00349{bottom:200.030909pt;}
.y89_c00349{bottom:201.364000pt;}
.y88_c00349{bottom:232.038560pt;}
.y87_c00349{bottom:233.100397pt;}
.y86_c00349{bottom:233.734085pt;}
.y85_c00349{bottom:234.816691pt;}
.y84_c00349{bottom:235.445333pt;}
.y83_c00349{bottom:267.667781pt;}
.y82_c00349{bottom:267.973860pt;}
.y81_c00349{bottom:268.282843pt;}
.y80_c00349{bottom:268.523068pt;}
.y7f_c00349{bottom:269.037868pt;}
.y7e_c00349{bottom:269.375861pt;}
.y7d_c00349{bottom:269.657828pt;}
.y7c_c00349{bottom:270.027692pt;}
.y7b_c00349{bottom:270.241283pt;}
.y7a_c00349{bottom:270.478868pt;}
.y79_c00349{bottom:270.615591pt;}
.y78_c00349{bottom:270.959436pt;}
.y77_c00349{bottom:287.648852pt;}
.y76_c00349{bottom:288.025947pt;}
.y75_c00349{bottom:288.295740pt;}
.y74_c00349{bottom:288.897601pt;}
.y73_c00349{bottom:289.166485pt;}
.y72_c00349{bottom:289.288761pt;}
.y71_c00349{bottom:289.850817pt;}
.y70_c00349{bottom:290.053701pt;}
.y6f_c00349{bottom:290.254679pt;}
.y6e_c00349{bottom:290.687727pt;}
.y6d_c00349{bottom:291.202527pt;}
.y6c_c00349{bottom:291.661857pt;}
.y6b_c00349{bottom:291.841333pt;}
.y6a_c00349{bottom:292.800000pt;}
.y69_c00349{bottom:316.239205pt;}
.y68_c00349{bottom:316.875125pt;}
.y67_c00349{bottom:317.502949pt;}
.y66_c00349{bottom:318.113637pt;}
.y65_c00349{bottom:318.773173pt;}
.y64_c00349{bottom:319.104421pt;}
.y63_c00349{bottom:319.401077pt;}
.y62_c00349{bottom:319.591141pt;}
.y61_c00349{bottom:320.161333pt;}
.y60_c00349{bottom:344.682540pt;}
.y5f_c00349{bottom:345.071363pt;}
.y5e_c00349{bottom:345.313192pt;}
.y5d_c00349{bottom:345.643319pt;}
.y5c_c00349{bottom:346.181584pt;}
.y5b_c00349{bottom:346.429581pt;}
.y5a_c00349{bottom:346.600464pt;}
.y59_c00349{bottom:346.839019pt;}
.y58_c00349{bottom:347.284031pt;}
.y57_c00349{bottom:347.520125pt;}
.y56_c00349{bottom:365.586583pt;}
.y55_c00349{bottom:365.772745pt;}
.y54_c00349{bottom:365.886520pt;}
.y53_c00349{bottom:365.964055pt;}
.y52_c00349{bottom:366.221717pt;}
.y51_c00349{bottom:366.373463pt;}
.y50_c00349{bottom:366.862071pt;}
.y4f_c00349{bottom:367.345544pt;}
.y4e_c00349{bottom:367.562887pt;}
.y4d_c00349{bottom:367.702107pt;}
.y4c_c00349{bottom:368.150887pt;}
.y4b_c00349{bottom:368.400703pt;}
.y4a_c00349{bottom:385.998253pt;}
.y49_c00349{bottom:386.306905pt;}
.y48_c00349{bottom:386.674321pt;}
.y47_c00349{bottom:387.056581pt;}
.y46_c00349{bottom:387.408433pt;}
.y45_c00349{bottom:388.259869pt;}
.y44_c00349{bottom:388.486333pt;}
.y43_c00349{bottom:388.836589pt;}
.y42_c00349{bottom:389.063365pt;}
.y41_c00349{bottom:389.234041pt;}
.y40_c00349{bottom:389.521333pt;}
.y3f_c00349{bottom:413.441852pt;}
.y3e_c00349{bottom:413.713309pt;}
.y3d_c00349{bottom:414.179541pt;}
.y3c_c00349{bottom:414.451311pt;}
.y3b_c00349{bottom:414.668612pt;}
.y3a_c00349{bottom:414.960652pt;}
.y39_c00349{bottom:415.263184pt;}
.y38_c00349{bottom:415.549763pt;}
.y37_c00349{bottom:415.917721pt;}
.y36_c00349{bottom:437.624495pt;}
.y35_c00349{bottom:438.874557pt;}
.y34_c00349{bottom:439.192367pt;}
.y33_c00349{bottom:439.317309pt;}
.y32_c00349{bottom:439.742616pt;}
.y31_c00349{bottom:439.990819pt;}
.y30_c00349{bottom:440.235136pt;}
.y2f_c00349{bottom:440.399044pt;}
.y2e_c00349{bottom:462.986340pt;}
.y2d_c00349{bottom:463.470668pt;}
.y2c_c00349{bottom:463.676484pt;}
.y2b_c00349{bottom:464.318389pt;}
.y2a_c00349{bottom:464.562703pt;}
.y29_c00349{bottom:464.955303pt;}
.y28_c00349{bottom:465.311971pt;}
.y27_c00349{bottom:465.601333pt;}
.y26_c00349{bottom:498.881333pt;}
.y25_c00349{bottom:533.805333pt;}
.y24_c00349{bottom:534.028000pt;}
.y23_c00349{bottom:534.248000pt;}
.y22_c00349{bottom:534.992000pt;}
.y21_c00349{bottom:535.741333pt;}
.y20_c00349{bottom:536.157333pt;}
.y1f_c00349{bottom:536.662667pt;}
.y1e_c00349{bottom:537.734667pt;}
.y1d_c00349{bottom:538.086667pt;}
.y1c_c00349{bottom:538.321333pt;}
.y1b_c00349{bottom:555.573333pt;}
.y1a_c00349{bottom:582.160000pt;}
.y19_c00349{bottom:606.833333pt;}
.y18_c00349{bottom:634.361333pt;}
.y17_c00349{bottom:661.798667pt;}
.y16_c00349{bottom:687.837333pt;}
.y15_c00349{bottom:712.841333pt;}
.y14_c00349{bottom:732.720000pt;}
.y13_c00349{bottom:776.717333pt;}
.y12_c00349{bottom:795.718883pt;}
.y11_c00349{bottom:800.739672pt;}
.y10_c00349{bottom:808.559123pt;}
.yf_c00349{bottom:827.795173pt;}
.ye_c00349{bottom:828.158725pt;}
.yd_c00349{bottom:828.588581pt;}
.yc_c00349{bottom:829.284792pt;}
.yb_c00349{bottom:830.033568pt;}
.ya_c00349{bottom:830.166643pt;}
.y9_c00349{bottom:830.803307pt;}
.y8_c00349{bottom:831.001715pt;}
.y7_c00349{bottom:831.579056pt;}
.y6_c00349{bottom:831.651315pt;}
.y5_c00349{bottom:832.358483pt;}
.y4_c00349{bottom:832.715763pt;}
.y3_c00349{bottom:833.143099pt;}
.y2_c00349{bottom:833.791336pt;}
.y1_c00349{bottom:834.474667pt;}
.h12_c00349{height:24.266667pt;}
.h16_c00349{height:44.802240pt;}
.h2_c00349{height:48.538089pt;}
.h3_c00349{height:49.471514pt;}
.h19_c00349{height:53.200000pt;}
.h17_c00349{height:55.069420pt;}
.h14_c00349{height:57.880669pt;}
.hb_c00349{height:58.800000pt;}
.h9_c00349{height:59.733333pt;}
.h6_c00349{height:61.600000pt;}
.h10_c00349{height:61.602495pt;}
.hd_c00349{height:61.605205pt;}
.h8_c00349{height:62.533333pt;}
.ha_c00349{height:63.466667pt;}
.hf_c00349{height:63.469237pt;}
.h13_c00349{height:63.470506pt;}
.h11_c00349{height:63.471236pt;}
.h5_c00349{height:64.400000pt;}
.he_c00349{height:64.402608pt;}
.hc_c00349{height:64.405442pt;}
.h15_c00349{height:64.411623pt;}
.h7_c00349{height:69.066667pt;}
.h4_c00349{height:118.533333pt;}
.h18_c00349{height:124.133333pt;}
.h0_c00349{height:896.400000pt;}
.h1_c00349{height:896.666667pt;}
.w0_c00349{width:618.666667pt;}
.x0_c00349{left:0.000000pt;}
.x12_c00349{left:93.599541pt;}
.x1_c00349{left:96.920000pt;}
.xa2_c00349{left:97.920000pt;}
.x10_c00349{left:101.954240pt;}
.x9a_c00349{left:110.798000pt;}
.x22_c00349{left:135.600000pt;}
.x13_c00349{left:136.560000pt;}
.x83_c00349{left:137.760000pt;}
.x57_c00349{left:139.561333pt;}
.x7b_c00349{left:142.499407pt;}
.x8a_c00349{left:143.661776pt;}
.x2_c00349{left:145.729333pt;}
.x3b_c00349{left:148.800000pt;}
.x29_c00349{left:153.360000pt;}
.x4f_c00349{left:155.040000pt;}
.x66_c00349{left:156.371047pt;}
.x15_c00349{left:159.120000pt;}
.x46_c00349{left:160.560000pt;}
.xa0_c00349{left:163.569013pt;}
.x33_c00349{left:169.440000pt;}
.x60_c00349{left:172.422667pt;}
.x47_c00349{left:173.520000pt;}
.x67_c00349{left:174.621333pt;}
.x84_c00349{left:175.552000pt;}
.x16_c00349{left:178.800000pt;}
.x8b_c00349{left:187.349776pt;}
.x2a_c00349{left:190.800000pt;}
.x3_c00349{left:192.032000pt;}
.x34_c00349{left:193.680000pt;}
.x61_c00349{left:194.681333pt;}
.x68_c00349{left:201.724071pt;}
.x95_c00349{left:207.537333pt;}
.x23_c00349{left:209.280000pt;}
.x3c_c00349{left:211.200000pt;}
.x17_c00349{left:215.520000pt;}
.x85_c00349{left:217.309333pt;}
.x24_c00349{left:219.120000pt;}
.x50_c00349{left:220.800000pt;}
.x4_c00349{left:222.556000pt;}
.x2b_c00349{left:227.760000pt;}
.x69_c00349{left:229.330843pt;}
.x48_c00349{left:231.120000pt;}
.x25_c00349{left:232.080000pt;}
.x96_c00349{left:233.198667pt;}
.x70_c00349{left:234.382667pt;}
.x75_c00349{left:237.283373pt;}
.x7e_c00349{left:238.662667pt;}
.x51_c00349{left:244.560000pt;}
.x2c_c00349{left:246.720000pt;}
.x5_c00349{left:248.076000pt;}
.x58_c00349{left:250.144000pt;}
.x62_c00349{left:252.317333pt;}
.x35_c00349{left:254.880000pt;}
.x18_c00349{left:257.040000pt;}
.x14_c00349{left:259.440000pt;}
.x8c_c00349{left:261.989776pt;}
.x7f_c00349{left:263.384000pt;}
.x5d_c00349{left:271.440000pt;}
.x52_c00349{left:272.640000pt;}
.x3d_c00349{left:273.840000pt;}
.x6a_c00349{left:276.613304pt;}
.x7c_c00349{left:278.783297pt;}
.x36_c00349{left:280.800000pt;}
.x19_c00349{left:284.640000pt;}
.x49_c00349{left:285.840000pt;}
.x26_c00349{left:287.280000pt;}
.x2d_c00349{left:288.960000pt;}
.x53_c00349{left:290.160000pt;}
.x3e_c00349{left:291.120000pt;}
.x4a_c00349{left:296.880000pt;}
.x6_c00349{left:298.588000pt;}
.x2e_c00349{left:301.200000pt;}
.x7_c00349{left:303.749333pt;}
.x92_c00349{left:306.106667pt;}
.x7d_c00349{left:309.746240pt;}
.x59_c00349{left:311.577333pt;}
.x6c_c00349{left:312.660349pt;}
.x8d_c00349{left:318.349776pt;}
.x63_c00349{left:320.488000pt;}
.x37_c00349{left:321.600000pt;}
.x27_c00349{left:323.520000pt;}
.x2f_c00349{left:325.680000pt;}
.x64_c00349{left:336.320000pt;}
.x1a_c00349{left:337.440000pt;}
.x4b_c00349{left:339.120000pt;}
.x86_c00349{left:340.192000pt;}
.x3f_c00349{left:341.760000pt;}
.x9b_c00349{left:343.138307pt;}
.x8_c00349{left:344.988000pt;}
.x80_c00349{left:345.949333pt;}
.x38_c00349{left:348.000000pt;}
.x40_c00349{left:350.160000pt;}
.x93_c00349{left:351.717333pt;}
.x30_c00349{left:355.920000pt;}
.x4c_c00349{left:357.600000pt;}
.x9_c00349{left:359.160000pt;}
.x1b_c00349{left:362.400000pt;}
.x8e_c00349{left:365.149776pt;}
.x6d_c00349{left:367.104525pt;}
.x94_c00349{left:369.396000pt;}
.x65_c00349{left:373.576000pt;}
.x9c_c00349{left:376.267307pt;}
.x5e_c00349{left:377.520000pt;}
.x91_c00349{left:378.980000pt;}
.x41_c00349{left:381.840000pt;}
.x8f_c00349{left:386.988443pt;}
.x39_c00349{left:388.320000pt;}
.x1c_c00349{left:391.680000pt;}
.x71_c00349{left:393.066667pt;}
.x28_c00349{left:394.320000pt;}
.x54_c00349{left:395.520000pt;}
.x81_c00349{left:396.840000pt;}
.x42_c00349{left:401.760000pt;}
.x31_c00349{left:403.440000pt;}
.xa_c00349{left:404.636000pt;}
.x4d_c00349{left:409.440000pt;}
.x5a_c00349{left:411.176000pt;}
.x5f_c00349{left:412.320000pt;}
.xb_c00349{left:414.141333pt;}
.x3a_c00349{left:415.680000pt;}
.x6e_c00349{left:418.971229pt;}
.x5b_c00349{left:425.885333pt;}
.x76_c00349{left:427.136127pt;}
.x32_c00349{left:430.800000pt;}
.x72_c00349{left:432.161333pt;}
.x9d_c00349{left:434.103707pt;}
.x4e_c00349{left:437.760000pt;}
.x5c_c00349{left:440.714667pt;}
.x90_c00349{left:442.903109pt;}
.x1d_c00349{left:446.640000pt;}
.x6f_c00349{left:449.187473pt;}
.x43_c00349{left:451.920000pt;}
.x6b_c00349{left:464.685747pt;}
.x1e_c00349{left:466.080000pt;}
.xc_c00349{left:467.625333pt;}
.x73_c00349{left:474.634667pt;}
.x55_c00349{left:475.680000pt;}
.x87_c00349{left:481.562667pt;}
.x77_c00349{left:485.515837pt;}
.x44_c00349{left:489.360000pt;}
.x97_c00349{left:492.190667pt;}
.x1f_c00349{left:493.680000pt;}
.x78_c00349{left:496.501363pt;}
.x82_c00349{left:502.152000pt;}
.x88_c00349{left:506.089333pt;}
.x45_c00349{left:511.440000pt;}
.x79_c00349{left:512.846996pt;}
.x20_c00349{left:515.520000pt;}
.xd_c00349{left:517.354667pt;}
.x98_c00349{left:521.725333pt;}
.x9e_c00349{left:532.753333pt;}
.x7a_c00349{left:539.458143pt;}
.x89_c00349{left:540.370667pt;}
.x21_c00349{left:542.640000pt;}
.xe_c00349{left:548.058667pt;}
.x74_c00349{left:549.753333pt;}
.x56_c00349{left:560.400000pt;}
.xf_c00349{left:574.026667pt;}
.xa1_c00349{left:589.265573pt;}
.x11_c00349{left:590.663224pt;}
.x9f_c00349{left:593.761827pt;}
.x99_c00349{left:598.828000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m12_c00350{transform:matrix(0.008619,-0.000112,0.003250,0.249979,0,0);-ms-transform:matrix(0.008619,-0.000112,0.003250,0.249979,0,0);-webkit-transform:matrix(0.008619,-0.000112,0.003250,0.249979,0,0);}
.m13_c00350{transform:matrix(0.013219,-0.000172,0.003250,0.249979,0,0);-ms-transform:matrix(0.013219,-0.000172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.013219,-0.000172,0.003250,0.249979,0,0);}
.m29_c00350{transform:matrix(0.013779,-0.000179,0.003250,0.249979,0,0);-ms-transform:matrix(0.013779,-0.000179,0.003250,0.249979,0,0);-webkit-transform:matrix(0.013779,-0.000179,0.003250,0.249979,0,0);}
.md_c00350{transform:matrix(0.014374,-0.000187,0.003250,0.249979,0,0);-ms-transform:matrix(0.014374,-0.000187,0.003250,0.249979,0,0);-webkit-transform:matrix(0.014374,-0.000187,0.003250,0.249979,0,0);}
.mb_c00350{transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);}
.m118_c00350{transform:matrix(0.036767,-0.000441,0.003000,0.249982,0,0);-ms-transform:matrix(0.036767,-0.000441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.036767,-0.000441,0.003000,0.249982,0,0);}
.mc8_c00350{transform:matrix(0.046909,-0.000751,0.003999,0.249968,0,0);-ms-transform:matrix(0.046909,-0.000751,0.003999,0.249968,0,0);-webkit-transform:matrix(0.046909,-0.000751,0.003999,0.249968,0,0);}
.m110_c00350{transform:matrix(0.057696,-0.000692,0.003000,0.249982,0,0);-ms-transform:matrix(0.057696,-0.000692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.057696,-0.000692,0.003000,0.249982,0,0);}
.m10f_c00350{transform:matrix(0.083674,-0.001004,0.003000,0.249982,0,0);-ms-transform:matrix(0.083674,-0.001004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.083674,-0.001004,0.003000,0.249982,0,0);}
.m2b_c00350{transform:matrix(0.093663,-0.002435,0.006498,0.249916,0,0);-ms-transform:matrix(0.093663,-0.002435,0.006498,0.249916,0,0);-webkit-transform:matrix(0.093663,-0.002435,0.006498,0.249916,0,0);}
.m108_c00350{transform:matrix(0.096173,-0.001154,0.003000,0.249982,0,0);-ms-transform:matrix(0.096173,-0.001154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.096173,-0.001154,0.003000,0.249982,0,0);}
.mc2_c00350{transform:matrix(0.096211,-0.001636,0.004249,0.249964,0,0);-ms-transform:matrix(0.096211,-0.001636,0.004249,0.249964,0,0);-webkit-transform:matrix(0.096211,-0.001636,0.004249,0.249964,0,0);}
.mbf_c00350{transform:matrix(0.101585,-0.001727,0.004249,0.249964,0,0);-ms-transform:matrix(0.101585,-0.001727,0.004249,0.249964,0,0);-webkit-transform:matrix(0.101585,-0.001727,0.004249,0.249964,0,0);}
.m11_c00350{transform:matrix(0.105786,-0.001375,0.003250,0.249979,0,0);-ms-transform:matrix(0.105786,-0.001375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.105786,-0.001375,0.003250,0.249979,0,0);}
.mea_c00350{transform:matrix(0.108138,-0.001190,0.002750,0.249985,0,0);-ms-transform:matrix(0.108138,-0.001190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.108138,-0.001190,0.002750,0.249985,0,0);}
.m95_c00350{transform:matrix(0.123180,-0.001601,0.003250,0.249979,0,0);-ms-transform:matrix(0.123180,-0.001601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.123180,-0.001601,0.003250,0.249979,0,0);}
.m10_c00350{transform:matrix(0.130904,-0.001702,0.003250,0.249979,0,0);-ms-transform:matrix(0.130904,-0.001702,0.003250,0.249979,0,0);-webkit-transform:matrix(0.130904,-0.001702,0.003250,0.249979,0,0);}
.m86_c00350{transform:matrix(0.131691,-0.001580,0.003000,0.249982,0,0);-ms-transform:matrix(0.131691,-0.001580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.131691,-0.001580,0.003000,0.249982,0,0);}
.md6_c00350{transform:matrix(0.134429,-0.001748,0.003250,0.249979,0,0);-ms-transform:matrix(0.134429,-0.001748,0.003250,0.249979,0,0);-webkit-transform:matrix(0.134429,-0.001748,0.003250,0.249979,0,0);}
.m96_c00350{transform:matrix(0.137678,-0.001790,0.003250,0.249979,0,0);-ms-transform:matrix(0.137678,-0.001790,0.003250,0.249979,0,0);-webkit-transform:matrix(0.137678,-0.001790,0.003250,0.249979,0,0);}
.m20_c00350{transform:matrix(0.138273,-0.001798,0.003250,0.249979,0,0);-ms-transform:matrix(0.138273,-0.001798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138273,-0.001798,0.003250,0.249979,0,0);}
.m93_c00350{transform:matrix(0.140363,-0.001825,0.003250,0.249979,0,0);-ms-transform:matrix(0.140363,-0.001825,0.003250,0.249979,0,0);-webkit-transform:matrix(0.140363,-0.001825,0.003250,0.249979,0,0);}
.mf9_c00350{transform:matrix(0.141271,-0.001554,0.002750,0.249985,0,0);-ms-transform:matrix(0.141271,-0.001554,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141271,-0.001554,0.002750,0.249985,0,0);}
.m2e_c00350{transform:matrix(0.142641,-0.002853,0.004999,0.249950,0,0);-ms-transform:matrix(0.142641,-0.002853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142641,-0.002853,0.004999,0.249950,0,0);}
.m92_c00350{transform:matrix(0.143058,-0.001860,0.003250,0.249979,0,0);-ms-transform:matrix(0.143058,-0.001860,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143058,-0.001860,0.003250,0.249979,0,0);}
.mab_c00350{transform:matrix(0.144064,-0.002449,0.004249,0.249964,0,0);-ms-transform:matrix(0.144064,-0.002449,0.004249,0.249964,0,0);-webkit-transform:matrix(0.144064,-0.002449,0.004249,0.249964,0,0);}
.mf6_c00350{transform:matrix(0.145416,-0.001600,0.002750,0.249985,0,0);-ms-transform:matrix(0.145416,-0.001600,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145416,-0.001600,0.002750,0.249985,0,0);}
.meb_c00350{transform:matrix(0.145476,-0.001600,0.002750,0.249985,0,0);-ms-transform:matrix(0.145476,-0.001600,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145476,-0.001600,0.002750,0.249985,0,0);}
.m79_c00350{transform:matrix(0.145678,-0.001894,0.003250,0.249979,0,0);-ms-transform:matrix(0.145678,-0.001894,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145678,-0.001894,0.003250,0.249979,0,0);}
.m1_c00350{transform:matrix(0.146074,-0.002191,0.003750,0.249972,0,0);-ms-transform:matrix(0.146074,-0.002191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146074,-0.002191,0.003750,0.249972,0,0);}
.m1d_c00350{transform:matrix(0.146208,-0.001901,0.003250,0.249979,0,0);-ms-transform:matrix(0.146208,-0.001901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146208,-0.001901,0.003250,0.249979,0,0);}
.mec_c00350{transform:matrix(0.147016,-0.001617,0.002750,0.249985,0,0);-ms-transform:matrix(0.147016,-0.001617,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147016,-0.001617,0.002750,0.249985,0,0);}
.m1a_c00350{transform:matrix(0.147243,-0.001914,0.003250,0.249979,0,0);-ms-transform:matrix(0.147243,-0.001914,0.003250,0.249979,0,0);-webkit-transform:matrix(0.147243,-0.001914,0.003250,0.249979,0,0);}
.m90_c00350{transform:matrix(0.148367,-0.001929,0.003250,0.249979,0,0);-ms-transform:matrix(0.148367,-0.001929,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148367,-0.001929,0.003250,0.249979,0,0);}
.m34_c00350{transform:matrix(0.148685,-0.002974,0.004999,0.249950,0,0);-ms-transform:matrix(0.148685,-0.002974,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148685,-0.002974,0.004999,0.249950,0,0);}
.mc3_c00350{transform:matrix(0.149653,-0.002544,0.004249,0.249964,0,0);-ms-transform:matrix(0.149653,-0.002544,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149653,-0.002544,0.004249,0.249964,0,0);}
.m8b_c00350{transform:matrix(0.150302,-0.001954,0.003250,0.249979,0,0);-ms-transform:matrix(0.150302,-0.001954,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150302,-0.001954,0.003250,0.249979,0,0);}
.m48_c00350{transform:matrix(0.151350,-0.003027,0.004999,0.249950,0,0);-ms-transform:matrix(0.151350,-0.003027,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151350,-0.003027,0.004999,0.249950,0,0);}
.m100_c00350{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);}
.m9a_c00350{transform:matrix(0.151657,-0.001972,0.003250,0.249979,0,0);-ms-transform:matrix(0.151657,-0.001972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151657,-0.001972,0.003250,0.249979,0,0);}
.m5e_c00350{transform:matrix(0.151775,-0.003035,0.004999,0.249950,0,0);-ms-transform:matrix(0.151775,-0.003035,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151775,-0.003035,0.004999,0.249950,0,0);}
.me5_c00350{transform:matrix(0.152411,-0.001677,0.002750,0.249985,0,0);-ms-transform:matrix(0.152411,-0.001677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152411,-0.001677,0.002750,0.249985,0,0);}
.m94_c00350{transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);-ms-transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);}
.m10b_c00350{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);}
.m106_c00350{transform:matrix(0.154524,-0.001854,0.003000,0.249982,0,0);-ms-transform:matrix(0.154524,-0.001854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154524,-0.001854,0.003000,0.249982,0,0);}
.m1c_c00350{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);}
.mb6_c00350{transform:matrix(0.154663,-0.002629,0.004249,0.249964,0,0);-ms-transform:matrix(0.154663,-0.002629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154663,-0.002629,0.004249,0.249964,0,0);}
.m101_c00350{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);}
.m33_c00350{transform:matrix(0.154804,-0.003096,0.004999,0.249950,0,0);-ms-transform:matrix(0.154804,-0.003096,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154804,-0.003096,0.004999,0.249950,0,0);}
.m91_c00350{transform:matrix(0.155512,-0.002022,0.003250,0.249979,0,0);-ms-transform:matrix(0.155512,-0.002022,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155512,-0.002022,0.003250,0.249979,0,0);}
.m26_c00350{transform:matrix(0.156207,-0.002031,0.003250,0.249979,0,0);-ms-transform:matrix(0.156207,-0.002031,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156207,-0.002031,0.003250,0.249979,0,0);}
.me3_c00350{transform:matrix(0.156636,-0.001723,0.002750,0.249985,0,0);-ms-transform:matrix(0.156636,-0.001723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156636,-0.001723,0.002750,0.249985,0,0);}
.m77_c00350{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);}
.md9_c00350{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);}
.mac_c00350{transform:matrix(0.158877,-0.002701,0.004249,0.249964,0,0);-ms-transform:matrix(0.158877,-0.002701,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158877,-0.002701,0.004249,0.249964,0,0);}
.m22_c00350{transform:matrix(0.159132,-0.002069,0.003250,0.249979,0,0);-ms-transform:matrix(0.159132,-0.002069,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159132,-0.002069,0.003250,0.249979,0,0);}
.mb0_c00350{transform:matrix(0.159192,-0.002706,0.004249,0.249964,0,0);-ms-transform:matrix(0.159192,-0.002706,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159192,-0.002706,0.004249,0.249964,0,0);}
.ma9_c00350{transform:matrix(0.159972,-0.002720,0.004249,0.249964,0,0);-ms-transform:matrix(0.159972,-0.002720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159972,-0.002720,0.004249,0.249964,0,0);}
.m1f_c00350{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);}
.mbb_c00350{transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);-ms-transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160027,-0.002720,0.004249,0.249964,0,0);}
.mfc_c00350{transform:matrix(0.160340,-0.001764,0.002750,0.249985,0,0);-ms-transform:matrix(0.160340,-0.001764,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160340,-0.001764,0.002750,0.249985,0,0);}
.m2c_c00350{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);}
.m83_c00350{transform:matrix(0.160733,-0.001929,0.003000,0.249982,0,0);-ms-transform:matrix(0.160733,-0.001929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160733,-0.001929,0.003000,0.249982,0,0);}
.m6b_c00350{transform:matrix(0.161014,-0.002254,0.003500,0.249976,0,0);-ms-transform:matrix(0.161014,-0.002254,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161014,-0.002254,0.003500,0.249976,0,0);}
.mfb_c00350{transform:matrix(0.161495,-0.001776,0.002750,0.249985,0,0);-ms-transform:matrix(0.161495,-0.001776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161495,-0.001776,0.002750,0.249985,0,0);}
.mae_c00350{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);}
.m3f_c00350{transform:matrix(0.162832,-0.003257,0.004999,0.249950,0,0);-ms-transform:matrix(0.162832,-0.003257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162832,-0.003257,0.004999,0.249950,0,0);}
.m9d_c00350{transform:matrix(0.163106,-0.002120,0.003250,0.249979,0,0);-ms-transform:matrix(0.163106,-0.002120,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163106,-0.002120,0.003250,0.249979,0,0);}
.mff_c00350{transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);}
.m8e_c00350{transform:matrix(0.164031,-0.002132,0.003250,0.249979,0,0);-ms-transform:matrix(0.164031,-0.002132,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164031,-0.002132,0.003250,0.249979,0,0);}
.m97_c00350{transform:matrix(0.164101,-0.002133,0.003250,0.249979,0,0);-ms-transform:matrix(0.164101,-0.002133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164101,-0.002133,0.003250,0.249979,0,0);}
.mee_c00350{transform:matrix(0.164450,-0.001809,0.002750,0.249985,0,0);-ms-transform:matrix(0.164450,-0.001809,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164450,-0.001809,0.002750,0.249985,0,0);}
.mce_c00350{transform:matrix(0.164644,-0.002634,0.003999,0.249968,0,0);-ms-transform:matrix(0.164644,-0.002634,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164644,-0.002634,0.003999,0.249968,0,0);}
.mc7_c00350{transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);-ms-transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164701,-0.002800,0.004249,0.249964,0,0);}
.m50_c00350{transform:matrix(0.165252,-0.003305,0.004999,0.249950,0,0);-ms-transform:matrix(0.165252,-0.003305,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165252,-0.003305,0.004999,0.249950,0,0);}
.m7b_c00350{transform:matrix(0.165261,-0.002148,0.003250,0.249979,0,0);-ms-transform:matrix(0.165261,-0.002148,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165261,-0.002148,0.003250,0.249979,0,0);}
.m21_c00350{transform:matrix(0.165841,-0.002156,0.003250,0.249979,0,0);-ms-transform:matrix(0.165841,-0.002156,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165841,-0.002156,0.003250,0.249979,0,0);}
.mfd_c00350{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);}
.mb5_c00350{transform:matrix(0.167096,-0.002841,0.004249,0.249964,0,0);-ms-transform:matrix(0.167096,-0.002841,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167096,-0.002841,0.004249,0.249964,0,0);}
.m4e_c00350{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);}
.m72_c00350{transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);-ms-transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167319,-0.002342,0.003500,0.249976,0,0);}
.m47_c00350{transform:matrix(0.167452,-0.003349,0.004999,0.249950,0,0);-ms-transform:matrix(0.167452,-0.003349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167452,-0.003349,0.004999,0.249950,0,0);}
.m1e_c00350{transform:matrix(0.169206,-0.002200,0.003250,0.249979,0,0);-ms-transform:matrix(0.169206,-0.002200,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169206,-0.002200,0.003250,0.249979,0,0);}
.m1b_c00350{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);}
.md7_c00350{transform:matrix(0.169476,-0.002203,0.003250,0.249979,0,0);-ms-transform:matrix(0.169476,-0.002203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169476,-0.002203,0.003250,0.249979,0,0);}
.mf2_c00350{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);}
.mda_c00350{transform:matrix(0.169936,-0.002209,0.003250,0.249979,0,0);-ms-transform:matrix(0.169936,-0.002209,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169936,-0.002209,0.003250,0.249979,0,0);}
.mde_c00350{transform:matrix(0.170030,-0.001870,0.002750,0.249985,0,0);-ms-transform:matrix(0.170030,-0.001870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170030,-0.001870,0.002750,0.249985,0,0);}
.m76_c00350{transform:matrix(0.170111,-0.002211,0.003250,0.249979,0,0);-ms-transform:matrix(0.170111,-0.002211,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170111,-0.002211,0.003250,0.249979,0,0);}
.md1_c00350{transform:matrix(0.170163,-0.002723,0.003999,0.249968,0,0);-ms-transform:matrix(0.170163,-0.002723,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170163,-0.002723,0.003999,0.249968,0,0);}
.mca_c00350{transform:matrix(0.170793,-0.002733,0.003999,0.249968,0,0);-ms-transform:matrix(0.170793,-0.002733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170793,-0.002733,0.003999,0.249968,0,0);}
.m89_c00350{transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);}
.mdb_c00350{transform:matrix(0.172155,-0.002238,0.003250,0.249979,0,0);-ms-transform:matrix(0.172155,-0.002238,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172155,-0.002238,0.003250,0.249979,0,0);}
.mb3_c00350{transform:matrix(0.172645,-0.002935,0.004249,0.249964,0,0);-ms-transform:matrix(0.172645,-0.002935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172645,-0.002935,0.004249,0.249964,0,0);}
.m78_c00350{transform:matrix(0.172875,-0.002247,0.003250,0.249979,0,0);-ms-transform:matrix(0.172875,-0.002247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172875,-0.002247,0.003250,0.249979,0,0);}
.ma2_c00350{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);}
.mdf_c00350{transform:matrix(0.173105,-0.001904,0.002750,0.249985,0,0);-ms-transform:matrix(0.173105,-0.001904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173105,-0.001904,0.002750,0.249985,0,0);}
.mf4_c00350{transform:matrix(0.173130,-0.001904,0.002750,0.249985,0,0);-ms-transform:matrix(0.173130,-0.001904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173130,-0.001904,0.002750,0.249985,0,0);}
.mb7_c00350{transform:matrix(0.173195,-0.002944,0.004249,0.249964,0,0);-ms-transform:matrix(0.173195,-0.002944,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173195,-0.002944,0.004249,0.249964,0,0);}
.m87_c00350{transform:matrix(0.173558,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173558,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173558,-0.002083,0.003000,0.249982,0,0);}
.m9e_c00350{transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);-ms-transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);}
.m4a_c00350{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);}
.m105_c00350{transform:matrix(0.174572,-0.002095,0.003000,0.249982,0,0);-ms-transform:matrix(0.174572,-0.002095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174572,-0.002095,0.003000,0.249982,0,0);}
.m6d_c00350{transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);-ms-transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);}
.m58_c00350{transform:matrix(0.174955,-0.003499,0.004999,0.249950,0,0);-ms-transform:matrix(0.174955,-0.003499,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174955,-0.003499,0.004999,0.249950,0,0);}
.m82_c00350{transform:matrix(0.175592,-0.002107,0.003000,0.249982,0,0);-ms-transform:matrix(0.175592,-0.002107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175592,-0.002107,0.003000,0.249982,0,0);}
.mc0_c00350{transform:matrix(0.176325,-0.002998,0.004249,0.249964,0,0);-ms-transform:matrix(0.176325,-0.002998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176325,-0.002998,0.004249,0.249964,0,0);}
.m6e_c00350{transform:matrix(0.176763,-0.002475,0.003500,0.249976,0,0);-ms-transform:matrix(0.176763,-0.002475,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176763,-0.002475,0.003500,0.249976,0,0);}
.m98_c00350{transform:matrix(0.177030,-0.002301,0.003250,0.249979,0,0);-ms-transform:matrix(0.177030,-0.002301,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177030,-0.002301,0.003250,0.249979,0,0);}
.m7d_c00350{transform:matrix(0.177170,-0.002303,0.003250,0.249979,0,0);-ms-transform:matrix(0.177170,-0.002303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177170,-0.002303,0.003250,0.249979,0,0);}
.mc1_c00350{transform:matrix(0.177319,-0.003014,0.004249,0.249964,0,0);-ms-transform:matrix(0.177319,-0.003014,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177319,-0.003014,0.004249,0.249964,0,0);}
.m3d_c00350{transform:matrix(0.177400,-0.003548,0.004999,0.249950,0,0);-ms-transform:matrix(0.177400,-0.003548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177400,-0.003548,0.004999,0.249950,0,0);}
.m6c_c00350{transform:matrix(0.177833,-0.002490,0.003500,0.249976,0,0);-ms-transform:matrix(0.177833,-0.002490,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177833,-0.002490,0.003500,0.249976,0,0);}
.maa_c00350{transform:matrix(0.177959,-0.003025,0.004249,0.249964,0,0);-ms-transform:matrix(0.177959,-0.003025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177959,-0.003025,0.004249,0.249964,0,0);}
.ma7_c00350{transform:matrix(0.178169,-0.003029,0.004249,0.249964,0,0);-ms-transform:matrix(0.178169,-0.003029,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178169,-0.003029,0.004249,0.249964,0,0);}
.m38_c00350{transform:matrix(0.178264,-0.003565,0.004999,0.249950,0,0);-ms-transform:matrix(0.178264,-0.003565,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178264,-0.003565,0.004999,0.249950,0,0);}
.mad_c00350{transform:matrix(0.178334,-0.003032,0.004249,0.249964,0,0);-ms-transform:matrix(0.178334,-0.003032,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178334,-0.003032,0.004249,0.249964,0,0);}
.ma4_c00350{transform:matrix(0.178584,-0.003036,0.004249,0.249964,0,0);-ms-transform:matrix(0.178584,-0.003036,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178584,-0.003036,0.004249,0.249964,0,0);}
.m6f_c00350{transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);-ms-transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);}
.med_c00350{transform:matrix(0.179394,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179394,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179394,-0.001973,0.002750,0.249985,0,0);}
.mf8_c00350{transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179444,-0.001974,0.002750,0.249985,0,0);}
.m7f_c00350{transform:matrix(0.179455,-0.002333,0.003250,0.249979,0,0);-ms-transform:matrix(0.179455,-0.002333,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179455,-0.002333,0.003250,0.249979,0,0);}
.mb4_c00350{transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);-ms-transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179474,-0.003051,0.004249,0.249964,0,0);}
.me7_c00350{transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);}
.m41_c00350{transform:matrix(0.180169,-0.003603,0.004999,0.249950,0,0);-ms-transform:matrix(0.180169,-0.003603,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180169,-0.003603,0.004999,0.249950,0,0);}
.mb2_c00350{transform:matrix(0.180184,-0.003063,0.004249,0.249964,0,0);-ms-transform:matrix(0.180184,-0.003063,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180184,-0.003063,0.004249,0.249964,0,0);}
.mcf_c00350{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);}
.m2f_c00350{transform:matrix(0.181304,-0.003626,0.004999,0.249950,0,0);-ms-transform:matrix(0.181304,-0.003626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181304,-0.003626,0.004999,0.249950,0,0);}
.me9_c00350{transform:matrix(0.181819,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181819,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181819,-0.002000,0.002750,0.249985,0,0);}
.mf1_c00350{transform:matrix(0.182009,-0.002002,0.002750,0.249985,0,0);-ms-transform:matrix(0.182009,-0.002002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182009,-0.002002,0.002750,0.249985,0,0);}
.m23_c00350{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);}
.m10c_c00350{transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182692,-0.002192,0.003000,0.249982,0,0);}
.mc6_c00350{transform:matrix(0.182784,-0.003107,0.004249,0.249964,0,0);-ms-transform:matrix(0.182784,-0.003107,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182784,-0.003107,0.004249,0.249964,0,0);}
.m19_c00350{transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);-ms-transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);}
.m104_c00350{transform:matrix(0.183452,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183452,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183452,-0.002201,0.003000,0.249982,0,0);}
.m107_c00350{transform:matrix(0.183612,-0.002203,0.003000,0.249982,0,0);-ms-transform:matrix(0.183612,-0.002203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183612,-0.002203,0.003000,0.249982,0,0);}
.m5c_c00350{transform:matrix(0.183743,-0.003675,0.004999,0.249950,0,0);-ms-transform:matrix(0.183743,-0.003675,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183743,-0.003675,0.004999,0.249950,0,0);}
.m4c_c00350{transform:matrix(0.183788,-0.003676,0.004999,0.249950,0,0);-ms-transform:matrix(0.183788,-0.003676,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183788,-0.003676,0.004999,0.249950,0,0);}
.m49_c00350{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);}
.m59_c00350{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);}
.me6_c00350{transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);-ms-transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184174,-0.002026,0.002750,0.249985,0,0);}
.m4f_c00350{transform:matrix(0.184328,-0.003687,0.004999,0.249950,0,0);-ms-transform:matrix(0.184328,-0.003687,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184328,-0.003687,0.004999,0.249950,0,0);}
.m8d_c00350{transform:matrix(0.184534,-0.002399,0.003250,0.249979,0,0);-ms-transform:matrix(0.184534,-0.002399,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184534,-0.002399,0.003250,0.249979,0,0);}
.m6a_c00350{transform:matrix(0.184712,-0.002586,0.003500,0.249976,0,0);-ms-transform:matrix(0.184712,-0.002586,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184712,-0.002586,0.003500,0.249976,0,0);}
.mf5_c00350{transform:matrix(0.184854,-0.002033,0.002750,0.249985,0,0);-ms-transform:matrix(0.184854,-0.002033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184854,-0.002033,0.002750,0.249985,0,0);}
.mc4_c00350{transform:matrix(0.184988,-0.003145,0.004249,0.249964,0,0);-ms-transform:matrix(0.184988,-0.003145,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184988,-0.003145,0.004249,0.249964,0,0);}
.m74_c00350{transform:matrix(0.185304,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185304,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185304,-0.002409,0.003250,0.249979,0,0);}
.me0_c00350{transform:matrix(0.186249,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186249,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186249,-0.002049,0.002750,0.249985,0,0);}
.m8c_c00350{transform:matrix(0.186574,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186574,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186574,-0.002425,0.003250,0.249979,0,0);}
.mef_c00350{transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186744,-0.002054,0.002750,0.249985,0,0);}
.m71_c00350{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);}
.me8_c00350{transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);}
.ma8_c00350{transform:matrix(0.187518,-0.003188,0.004249,0.249964,0,0);-ms-transform:matrix(0.187518,-0.003188,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187518,-0.003188,0.004249,0.249964,0,0);}
.mbd_c00350{transform:matrix(0.187633,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187633,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187633,-0.003190,0.004249,0.249964,0,0);}
.md5_c00350{transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);}
.mfa_c00350{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);}
.m8_c00350{transform:matrix(0.188219,-0.002823,0.003750,0.249972,0,0);-ms-transform:matrix(0.188219,-0.002823,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188219,-0.002823,0.003750,0.249972,0,0);}
.ma6_c00350{transform:matrix(0.188248,-0.003200,0.004249,0.249964,0,0);-ms-transform:matrix(0.188248,-0.003200,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188248,-0.003200,0.004249,0.249964,0,0);}
.m54_c00350{transform:matrix(0.188272,-0.003765,0.004999,0.249950,0,0);-ms-transform:matrix(0.188272,-0.003765,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188272,-0.003765,0.004999,0.249950,0,0);}
.m84_c00350{transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);}
.m44_c00350{transform:matrix(0.189402,-0.003788,0.004999,0.249950,0,0);-ms-transform:matrix(0.189402,-0.003788,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189402,-0.003788,0.004999,0.249950,0,0);}
.me4_c00350{transform:matrix(0.190108,-0.002091,0.002750,0.249985,0,0);-ms-transform:matrix(0.190108,-0.002091,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190108,-0.002091,0.002750,0.249985,0,0);}
.m68_c00350{transform:matrix(0.190132,-0.003803,0.004999,0.249950,0,0);-ms-transform:matrix(0.190132,-0.003803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190132,-0.003803,0.004999,0.249950,0,0);}
.md2_c00350{transform:matrix(0.190331,-0.003045,0.003999,0.249968,0,0);-ms-transform:matrix(0.190331,-0.003045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190331,-0.003045,0.003999,0.249968,0,0);}
.m80_c00350{transform:matrix(0.190879,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190879,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190879,-0.002481,0.003250,0.249979,0,0);}
.mbe_c00350{transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);-ms-transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);}
.m31_c00350{transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);}
.m32_c00350{transform:matrix(0.192671,-0.003853,0.004999,0.249950,0,0);-ms-transform:matrix(0.192671,-0.003853,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192671,-0.003853,0.004999,0.249950,0,0);}
.m8a_c00350{transform:matrix(0.192904,-0.002508,0.003250,0.249979,0,0);-ms-transform:matrix(0.192904,-0.002508,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192904,-0.002508,0.003250,0.249979,0,0);}
.m102_c00350{transform:matrix(0.193071,-0.002317,0.003000,0.249982,0,0);-ms-transform:matrix(0.193071,-0.002317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193071,-0.002317,0.003000,0.249982,0,0);}
.m5d_c00350{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);}
.m10a_c00350{transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194211,-0.002331,0.003000,0.249982,0,0);}
.me1_c00350{transform:matrix(0.194918,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194918,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194918,-0.002144,0.002750,0.249985,0,0);}
.m53_c00350{transform:matrix(0.195016,-0.003900,0.004999,0.249950,0,0);-ms-transform:matrix(0.195016,-0.003900,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195016,-0.003900,0.004999,0.249950,0,0);}
.m51_c00350{transform:matrix(0.195061,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195061,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195061,-0.003901,0.004999,0.249950,0,0);}
.mb1_c00350{transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);-ms-transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);}
.m85_c00350{transform:matrix(0.195536,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195536,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195536,-0.002346,0.003000,0.249982,0,0);}
.m69_c00350{transform:matrix(0.195696,-0.002740,0.003500,0.249976,0,0);-ms-transform:matrix(0.195696,-0.002740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195696,-0.002740,0.003500,0.249976,0,0);}
.m28_c00350{transform:matrix(0.195868,-0.002546,0.003250,0.249979,0,0);-ms-transform:matrix(0.195868,-0.002546,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195868,-0.002546,0.003250,0.249979,0,0);}
.md4_c00350{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);}
.m9b_c00350{transform:matrix(0.196028,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.196028,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196028,-0.002548,0.003250,0.249979,0,0);}
.mb9_c00350{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);}
.m4d_c00350{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);}
.m75_c00350{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);}
.m88_c00350{transform:matrix(0.197871,-0.002374,0.003000,0.249982,0,0);-ms-transform:matrix(0.197871,-0.002374,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197871,-0.002374,0.003000,0.249982,0,0);}
.mdd_c00350{transform:matrix(0.198043,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.198043,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198043,-0.002178,0.002750,0.249985,0,0);}
.m7c_c00350{transform:matrix(0.198368,-0.002579,0.003250,0.249979,0,0);-ms-transform:matrix(0.198368,-0.002579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198368,-0.002579,0.003250,0.249979,0,0);}
.m73_c00350{transform:matrix(0.202738,-0.002636,0.003250,0.249979,0,0);-ms-transform:matrix(0.202738,-0.002636,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202738,-0.002636,0.003250,0.249979,0,0);}
.m99_c00350{transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);-ms-transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202898,-0.002638,0.003250,0.249979,0,0);}
.md0_c00350{transform:matrix(0.203719,-0.003260,0.003999,0.249968,0,0);-ms-transform:matrix(0.203719,-0.003260,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203719,-0.003260,0.003999,0.249968,0,0);}
.m109_c00350{transform:matrix(0.203730,-0.002445,0.003000,0.249982,0,0);-ms-transform:matrix(0.203730,-0.002445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203730,-0.002445,0.003000,0.249982,0,0);}
.m37_c00350{transform:matrix(0.204824,-0.004096,0.004999,0.249950,0,0);-ms-transform:matrix(0.204824,-0.004096,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204824,-0.004096,0.004999,0.249950,0,0);}
.m5a_c00350{transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);-ms-transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205564,-0.004111,0.004999,0.249950,0,0);}
.mba_c00350{transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);-ms-transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);}
.maf_c00350{transform:matrix(0.207035,-0.003520,0.004249,0.249964,0,0);-ms-transform:matrix(0.207035,-0.003520,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207035,-0.003520,0.004249,0.249964,0,0);}
.mcd_c00350{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);}
.m60_c00350{transform:matrix(0.208398,-0.004168,0.004999,0.249950,0,0);-ms-transform:matrix(0.208398,-0.004168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208398,-0.004168,0.004999,0.249950,0,0);}
.mf3_c00350{transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);-ms-transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208512,-0.002294,0.002750,0.249985,0,0);}
.m2d_c00350{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);}
.mcc_c00350{transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);-ms-transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210238,-0.003364,0.003999,0.249968,0,0);}
.m25_c00350{transform:matrix(0.212247,-0.002759,0.003250,0.249979,0,0);-ms-transform:matrix(0.212247,-0.002759,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212247,-0.002759,0.003250,0.249979,0,0);}
.m40_c00350{transform:matrix(0.212932,-0.004259,0.004999,0.249950,0,0);-ms-transform:matrix(0.212932,-0.004259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212932,-0.004259,0.004999,0.249950,0,0);}
.mf_c00350{transform:matrix(0.212987,-0.002769,0.003250,0.249979,0,0);-ms-transform:matrix(0.212987,-0.002769,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212987,-0.002769,0.003250,0.249979,0,0);}
.m63_c00350{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);}
.m46_c00350{transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);-ms-transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213932,-0.004279,0.004999,0.249950,0,0);}
.m10e_c00350{transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);-ms-transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214270,-0.002571,0.003000,0.249982,0,0);}
.m5f_c00350{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);}
.m30_c00350{transform:matrix(0.215297,-0.004306,0.004999,0.249950,0,0);-ms-transform:matrix(0.215297,-0.004306,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215297,-0.004306,0.004999,0.249950,0,0);}
.m52_c00350{transform:matrix(0.216127,-0.004323,0.004999,0.249950,0,0);-ms-transform:matrix(0.216127,-0.004323,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216127,-0.004323,0.004999,0.249950,0,0);}
.m3e_c00350{transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);-ms-transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);}
.m8f_c00350{transform:matrix(0.216637,-0.002816,0.003250,0.249979,0,0);-ms-transform:matrix(0.216637,-0.002816,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216637,-0.002816,0.003250,0.249979,0,0);}
.m39_c00350{transform:matrix(0.217856,-0.004357,0.004999,0.249950,0,0);-ms-transform:matrix(0.217856,-0.004357,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217856,-0.004357,0.004999,0.249950,0,0);}
.mdc_c00350{transform:matrix(0.219172,-0.002411,0.002750,0.249985,0,0);-ms-transform:matrix(0.219172,-0.002411,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219172,-0.002411,0.002750,0.249985,0,0);}
.m61_c00350{transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);-ms-transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219441,-0.004389,0.004999,0.249950,0,0);}
.md3_c00350{transform:matrix(0.220146,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220146,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220146,-0.002862,0.003250,0.249979,0,0);}
.m42_c00350{transform:matrix(0.220721,-0.004414,0.004999,0.249950,0,0);-ms-transform:matrix(0.220721,-0.004414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220721,-0.004414,0.004999,0.249950,0,0);}
.mc5_c00350{transform:matrix(0.221178,-0.003760,0.004249,0.249964,0,0);-ms-transform:matrix(0.221178,-0.003760,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221178,-0.003760,0.004249,0.249964,0,0);}
.mcb_c00350{transform:matrix(0.222212,-0.003555,0.003999,0.249968,0,0);-ms-transform:matrix(0.222212,-0.003555,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222212,-0.003555,0.003999,0.249968,0,0);}
.mbc_c00350{transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);-ms-transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);}
.m55_c00350{transform:matrix(0.223380,-0.004468,0.004999,0.249950,0,0);-ms-transform:matrix(0.223380,-0.004468,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223380,-0.004468,0.004999,0.249950,0,0);}
.m27_c00350{transform:matrix(0.223616,-0.002907,0.003250,0.249979,0,0);-ms-transform:matrix(0.223616,-0.002907,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223616,-0.002907,0.003250,0.249979,0,0);}
.m14_c00350{transform:matrix(0.224581,-0.002920,0.003250,0.249979,0,0);-ms-transform:matrix(0.224581,-0.002920,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224581,-0.002920,0.003250,0.249979,0,0);}
.m3c_c00350{transform:matrix(0.225800,-0.004516,0.004999,0.249950,0,0);-ms-transform:matrix(0.225800,-0.004516,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225800,-0.004516,0.004999,0.249950,0,0);}
.m64_c00350{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);}
.m81_c00350{transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);}
.m36_c00350{transform:matrix(0.229514,-0.004590,0.004999,0.249950,0,0);-ms-transform:matrix(0.229514,-0.004590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229514,-0.004590,0.004999,0.249950,0,0);}
.m9c_c00350{transform:matrix(0.232195,-0.003019,0.003250,0.249979,0,0);-ms-transform:matrix(0.232195,-0.003019,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232195,-0.003019,0.003250,0.249979,0,0);}
.ma1_c00350{transform:matrix(0.232561,-0.003954,0.004249,0.249964,0,0);-ms-transform:matrix(0.232561,-0.003954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232561,-0.003954,0.004249,0.249964,0,0);}
.m70_c00350{transform:matrix(0.232667,-0.003257,0.003500,0.249976,0,0);-ms-transform:matrix(0.232667,-0.003257,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232667,-0.003257,0.003500,0.249976,0,0);}
.ma0_c00350{transform:matrix(0.234201,-0.003981,0.004249,0.249964,0,0);-ms-transform:matrix(0.234201,-0.003981,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234201,-0.003981,0.004249,0.249964,0,0);}
.m4b_c00350{transform:matrix(0.235898,-0.004718,0.004999,0.249950,0,0);-ms-transform:matrix(0.235898,-0.004718,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235898,-0.004718,0.004999,0.249950,0,0);}
.m56_c00350{transform:matrix(0.236078,-0.004722,0.004999,0.249950,0,0);-ms-transform:matrix(0.236078,-0.004722,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236078,-0.004722,0.004999,0.249950,0,0);}
.mb8_c00350{transform:matrix(0.237191,-0.004032,0.004249,0.249964,0,0);-ms-transform:matrix(0.237191,-0.004032,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237191,-0.004032,0.004249,0.249964,0,0);}
.m24_c00350{transform:matrix(0.238895,-0.003106,0.003250,0.249979,0,0);-ms-transform:matrix(0.238895,-0.003106,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238895,-0.003106,0.003250,0.249979,0,0);}
.m43_c00350{transform:matrix(0.242691,-0.004854,0.004999,0.249950,0,0);-ms-transform:matrix(0.242691,-0.004854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242691,-0.004854,0.004999,0.249950,0,0);}
.m2a_c00350{transform:matrix(0.243288,-0.006325,0.006498,0.249916,0,0);-ms-transform:matrix(0.243288,-0.006325,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243288,-0.006325,0.006498,0.249916,0,0);}
.me2_c00350{transform:matrix(0.245565,-0.002701,0.002750,0.249985,0,0);-ms-transform:matrix(0.245565,-0.002701,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245565,-0.002701,0.002750,0.249985,0,0);}
.m6_c00350{transform:matrix(0.248377,-0.003726,0.003750,0.249972,0,0);-ms-transform:matrix(0.248377,-0.003726,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248377,-0.003726,0.003750,0.249972,0,0);}
.m7e_c00350{transform:matrix(0.251994,-0.003276,0.003250,0.249979,0,0);-ms-transform:matrix(0.251994,-0.003276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251994,-0.003276,0.003250,0.249979,0,0);}
.m115_c00350{transform:matrix(0.252847,-0.003034,0.003000,0.249982,0,0);-ms-transform:matrix(0.252847,-0.003034,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252847,-0.003034,0.003000,0.249982,0,0);}
.m65_c00350{transform:matrix(0.260158,-0.005203,0.004999,0.249950,0,0);-ms-transform:matrix(0.260158,-0.005203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.260158,-0.005203,0.004999,0.249950,0,0);}
.mc9_c00350{transform:matrix(0.260187,-0.004163,0.003999,0.249968,0,0);-ms-transform:matrix(0.260187,-0.004163,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260187,-0.004163,0.003999,0.249968,0,0);}
.m103_c00350{transform:matrix(0.262791,-0.003153,0.003000,0.249982,0,0);-ms-transform:matrix(0.262791,-0.003153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262791,-0.003153,0.003000,0.249982,0,0);}
.m3a_c00350{transform:matrix(0.263222,-0.005264,0.004999,0.249950,0,0);-ms-transform:matrix(0.263222,-0.005264,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263222,-0.005264,0.004999,0.249950,0,0);}
.m10d_c00350{transform:matrix(0.266131,-0.003194,0.003000,0.249982,0,0);-ms-transform:matrix(0.266131,-0.003194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266131,-0.003194,0.003000,0.249982,0,0);}
.m7a_c00350{transform:matrix(0.275752,-0.003585,0.003250,0.249979,0,0);-ms-transform:matrix(0.275752,-0.003585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275752,-0.003585,0.003250,0.249979,0,0);}
.ma5_c00350{transform:matrix(0.280479,-0.004768,0.004249,0.249964,0,0);-ms-transform:matrix(0.280479,-0.004768,0.004249,0.249964,0,0);-webkit-transform:matrix(0.280479,-0.004768,0.004249,0.249964,0,0);}
.mfe_c00350{transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288340,0.000000,0.000000,0.250000,0,0);}
.m57_c00350{transform:matrix(0.292032,-0.005841,0.004999,0.249950,0,0);-ms-transform:matrix(0.292032,-0.005841,0.004999,0.249950,0,0);-webkit-transform:matrix(0.292032,-0.005841,0.004999,0.249950,0,0);}
.m16_c00350{transform:matrix(0.294825,-0.003833,0.003250,0.249979,0,0);-ms-transform:matrix(0.294825,-0.003833,0.003250,0.249979,0,0);-webkit-transform:matrix(0.294825,-0.003833,0.003250,0.249979,0,0);}
.m66_c00350{transform:matrix(0.301895,-0.006038,0.004999,0.249950,0,0);-ms-transform:matrix(0.301895,-0.006038,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301895,-0.006038,0.004999,0.249950,0,0);}
.m0_c00350{transform:matrix(0.302950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302950,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.309965,-0.004649,0.003750,0.249972,0,0);-ms-transform:matrix(0.309965,-0.004649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309965,-0.004649,0.003750,0.249972,0,0);}
.mf7_c00350{transform:matrix(0.314291,-0.003457,0.002750,0.249985,0,0);-ms-transform:matrix(0.314291,-0.003457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.314291,-0.003457,0.002750,0.249985,0,0);}
.m35_c00350{transform:matrix(0.316522,-0.006330,0.004999,0.249950,0,0);-ms-transform:matrix(0.316522,-0.006330,0.004999,0.249950,0,0);-webkit-transform:matrix(0.316522,-0.006330,0.004999,0.249950,0,0);}
.m119_c00350{transform:matrix(0.321162,-0.003854,0.003000,0.249982,0,0);-ms-transform:matrix(0.321162,-0.003854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.321162,-0.003854,0.003000,0.249982,0,0);}
.m3b_c00350{transform:matrix(0.321616,-0.006432,0.004999,0.249950,0,0);-ms-transform:matrix(0.321616,-0.006432,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321616,-0.006432,0.004999,0.249950,0,0);}
.ma3_c00350{transform:matrix(0.328338,-0.005582,0.004249,0.249964,0,0);-ms-transform:matrix(0.328338,-0.005582,0.004249,0.249964,0,0);-webkit-transform:matrix(0.328338,-0.005582,0.004249,0.249964,0,0);}
.mf0_c00350{transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);-ms-transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);-webkit-transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);}
.md8_c00350{transform:matrix(0.330567,-0.004297,0.003250,0.249979,0,0);-ms-transform:matrix(0.330567,-0.004297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.330567,-0.004297,0.003250,0.249979,0,0);}
.m5b_c00350{transform:matrix(0.330654,-0.006613,0.004999,0.249950,0,0);-ms-transform:matrix(0.330654,-0.006613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.330654,-0.006613,0.004999,0.249950,0,0);}
.m62_c00350{transform:matrix(0.347580,-0.006952,0.004999,0.249950,0,0);-ms-transform:matrix(0.347580,-0.006952,0.004999,0.249950,0,0);-webkit-transform:matrix(0.347580,-0.006952,0.004999,0.249950,0,0);}
.m2_c00350{transform:matrix(0.387501,-0.005813,0.003750,0.249972,0,0);-ms-transform:matrix(0.387501,-0.005813,0.003750,0.249972,0,0);-webkit-transform:matrix(0.387501,-0.005813,0.003750,0.249972,0,0);}
.m67_c00350{transform:matrix(0.399965,-0.007999,0.004999,0.249950,0,0);-ms-transform:matrix(0.399965,-0.007999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.399965,-0.007999,0.004999,0.249950,0,0);}
.m9_c00350{transform:matrix(0.417943,-0.006269,0.003750,0.249972,0,0);-ms-transform:matrix(0.417943,-0.006269,0.003750,0.249972,0,0);-webkit-transform:matrix(0.417943,-0.006269,0.003750,0.249972,0,0);}
.m116_c00350{transform:matrix(0.420020,-0.005040,0.003000,0.249982,0,0);-ms-transform:matrix(0.420020,-0.005040,0.003000,0.249982,0,0);-webkit-transform:matrix(0.420020,-0.005040,0.003000,0.249982,0,0);}
.m18_c00350{transform:matrix(0.432498,-0.005622,0.003250,0.249979,0,0);-ms-transform:matrix(0.432498,-0.005622,0.003250,0.249979,0,0);-webkit-transform:matrix(0.432498,-0.005622,0.003250,0.249979,0,0);}
.ma_c00350{transform:matrix(0.459755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459755,0.000000,0.000000,0.250000,0,0);}
.m112_c00350{transform:matrix(0.505354,-0.006064,0.003000,0.249982,0,0);-ms-transform:matrix(0.505354,-0.006064,0.003000,0.249982,0,0);-webkit-transform:matrix(0.505354,-0.006064,0.003000,0.249982,0,0);}
.m113_c00350{transform:matrix(0.551510,-0.006618,0.003000,0.249982,0,0);-ms-transform:matrix(0.551510,-0.006618,0.003000,0.249982,0,0);-webkit-transform:matrix(0.551510,-0.006618,0.003000,0.249982,0,0);}
.m4_c00350{transform:matrix(0.555328,-0.008330,0.003750,0.249972,0,0);-ms-transform:matrix(0.555328,-0.008330,0.003750,0.249972,0,0);-webkit-transform:matrix(0.555328,-0.008330,0.003750,0.249972,0,0);}
.m17_c00350{transform:matrix(0.585796,-0.007615,0.003250,0.249979,0,0);-ms-transform:matrix(0.585796,-0.007615,0.003250,0.249979,0,0);-webkit-transform:matrix(0.585796,-0.007615,0.003250,0.249979,0,0);}
.m114_c00350{transform:matrix(0.614616,-0.007375,0.003000,0.249982,0,0);-ms-transform:matrix(0.614616,-0.007375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.614616,-0.007375,0.003000,0.249982,0,0);}
.m7_c00350{transform:matrix(0.638318,-0.009575,0.003750,0.249972,0,0);-ms-transform:matrix(0.638318,-0.009575,0.003750,0.249972,0,0);-webkit-transform:matrix(0.638318,-0.009575,0.003750,0.249972,0,0);}
.m45_c00350{transform:matrix(0.651600,-0.013032,0.004999,0.249950,0,0);-ms-transform:matrix(0.651600,-0.013032,0.004999,0.249950,0,0);-webkit-transform:matrix(0.651600,-0.013032,0.004999,0.249950,0,0);}
.m3_c00350{transform:matrix(0.683478,-0.010252,0.003750,0.249972,0,0);-ms-transform:matrix(0.683478,-0.010252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.683478,-0.010252,0.003750,0.249972,0,0);}
.me_c00350{transform:matrix(0.740937,-0.009632,0.003250,0.249979,0,0);-ms-transform:matrix(0.740937,-0.009632,0.003250,0.249979,0,0);-webkit-transform:matrix(0.740937,-0.009632,0.003250,0.249979,0,0);}
.m111_c00350{transform:matrix(0.796738,-0.009561,0.003000,0.249982,0,0);-ms-transform:matrix(0.796738,-0.009561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.796738,-0.009561,0.003000,0.249982,0,0);}
.m117_c00350{transform:matrix(0.870502,-0.010446,0.003000,0.249982,0,0);-ms-transform:matrix(0.870502,-0.010446,0.003000,0.249982,0,0);-webkit-transform:matrix(0.870502,-0.010446,0.003000,0.249982,0,0);}
.mc_c00350{transform:matrix(0.960414,-0.012485,0.003250,0.249979,0,0);-ms-transform:matrix(0.960414,-0.012485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.960414,-0.012485,0.003250,0.249979,0,0);}
.m15_c00350{transform:matrix(1.031653,-0.013411,0.003250,0.249979,0,0);-ms-transform:matrix(1.031653,-0.013411,0.003250,0.249979,0,0);-webkit-transform:matrix(1.031653,-0.013411,0.003250,0.249979,0,0);}
.m9f_c00350{transform:matrix(1.105182,-0.014367,0.003250,0.249979,0,0);-ms-transform:matrix(1.105182,-0.014367,0.003250,0.249979,0,0);-webkit-transform:matrix(1.105182,-0.014367,0.003250,0.249979,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;}
.fs1e_c00350{font-size:25.201814px;}
.fs0_c00350{font-size:43.050000px;}
.fs2_c00350{font-size:58.800000px;}
.fs5_c00350{font-size:58.804968px;}
.fs7_c00350{font-size:61.955235px;}
.fs1_c00350{font-size:64.057205px;}
.fs1d_c00350{font-size:67.204838px;}
.fsf_c00350{font-size:67.205678px;}
.fsa_c00350{font-size:67.213439px;}
.fs18_c00350{font-size:69.304193px;}
.fs17_c00350{font-size:69.305856px;}
.fs16_c00350{font-size:69.308870px;}
.fs14_c00350{font-size:69.310013px;}
.fsc_c00350{font-size:69.313859px;}
.fs19_c00350{font-size:70.354256px;}
.fs1c_c00350{font-size:70.355065px;}
.fs12_c00350{font-size:70.360165px;}
.fs8_c00350{font-size:70.373774px;}
.fs15_c00350{font-size:71.410317px;}
.fsb_c00350{font-size:71.414279px;}
.fs10_c00350{font-size:72.455216px;}
.fse_c00350{font-size:72.456122px;}
.fs13_c00350{font-size:72.460468px;}
.fs1b_c00350{font-size:73.500000px;}
.fs1a_c00350{font-size:73.504447px;}
.fsd_c00350{font-size:73.507203px;}
.fs11_c00350{font-size:74.556299px;}
.fs6_c00350{font-size:75.606388px;}
.fs9_c00350{font-size:76.665328px;}
.fs3_c00350{font-size:126.010647px;}
.fs4_c00350{font-size:129.160913px;}
.fs1f_c00350{font-size:228.916480px;}
.y0_c00350{bottom:0.000000px;}
.y116_c00350{bottom:68.039988px;}
.y117_c00350{bottom:68.552766px;}
.y10c_c00350{bottom:105.840000px;}
.y10d_c00350{bottom:105.996420px;}
.y10e_c00350{bottom:106.180452px;}
.y10f_c00350{bottom:106.671492px;}
.y110_c00350{bottom:106.876872px;}
.y111_c00350{bottom:106.959816px;}
.y112_c00350{bottom:107.248302px;}
.y113_c00350{bottom:107.371098px;}
.y114_c00350{bottom:110.986128px;}
.y115_c00350{bottom:111.880674px;}
.y10a_c00350{bottom:118.122768px;}
.y10b_c00350{bottom:118.123212px;}
.yff_c00350{bottom:139.051500px;}
.y100_c00350{bottom:140.259120px;}
.y101_c00350{bottom:140.499528px;}
.y102_c00350{bottom:140.937216px;}
.y103_c00350{bottom:141.480870px;}
.y104_c00350{bottom:141.824832px;}
.y105_c00350{bottom:142.481148px;}
.y106_c00350{bottom:142.648908px;}
.y107_c00350{bottom:143.194920px;}
.y108_c00350{bottom:143.590830px;}
.y109_c00350{bottom:143.915928px;}
.yfe_c00350{bottom:167.412000px;}
.yf4_c00350{bottom:194.131706px;}
.yf5_c00350{bottom:194.636573px;}
.yf6_c00350{bottom:195.019785px;}
.yf7_c00350{bottom:195.335084px;}
.yf8_c00350{bottom:195.640944px;}
.yf9_c00350{bottom:196.368000px;}
.yfa_c00350{bottom:196.644788px;}
.yfb_c00350{bottom:196.983450px;}
.yfc_c00350{bottom:197.221100px;}
.yfd_c00350{bottom:197.601408px;}
.ye8_c00350{bottom:216.810612px;}
.ye9_c00350{bottom:217.182680px;}
.yea_c00350{bottom:218.456382px;}
.yeb_c00350{bottom:218.632724px;}
.yec_c00350{bottom:218.844022px;}
.yed_c00350{bottom:219.367437px;}
.yee_c00350{bottom:219.929670px;}
.yef_c00350{bottom:220.280868px;}
.yf0_c00350{bottom:221.021670px;}
.yf1_c00350{bottom:221.313081px;}
.yf2_c00350{bottom:221.963328px;}
.yf3_c00350{bottom:222.605822px;}
.ydc_c00350{bottom:240.031500px;}
.ydd_c00350{bottom:240.343234px;}
.yde_c00350{bottom:240.981257px;}
.ydf_c00350{bottom:241.417814px;}
.ye0_c00350{bottom:241.721364px;}
.ye1_c00350{bottom:242.443025px;}
.ye2_c00350{bottom:243.037058px;}
.ye3_c00350{bottom:243.227253px;}
.ye4_c00350{bottom:243.408572px;}
.ye5_c00350{bottom:243.993629px;}
.ye6_c00350{bottom:244.275795px;}
.ye7_c00350{bottom:244.670855px;}
.yd3_c00350{bottom:271.081500px;}
.yd4_c00350{bottom:271.488816px;}
.yd5_c00350{bottom:271.730402px;}
.yd6_c00350{bottom:272.313880px;}
.yd7_c00350{bottom:272.682450px;}
.yd8_c00350{bottom:273.430022px;}
.yd9_c00350{bottom:273.759026px;}
.yda_c00350{bottom:274.040937px;}
.ydb_c00350{bottom:274.756314px;}
.yc8_c00350{bottom:292.953000px;}
.yc9_c00350{bottom:293.070168px;}
.yca_c00350{bottom:293.567400px;}
.ycb_c00350{bottom:294.384048px;}
.ycc_c00350{bottom:294.785208px;}
.ycd_c00350{bottom:295.389168px;}
.yce_c00350{bottom:296.206032px;}
.ycf_c00350{bottom:296.717592px;}
.yd0_c00350{bottom:297.265464px;}
.yd1_c00350{bottom:297.912840px;}
.yd2_c00350{bottom:298.479576px;}
.yc7_c00350{bottom:320.881623px;}
.yc6_c00350{bottom:320.882230px;}
.yba_c00350{bottom:343.342567px;}
.ybb_c00350{bottom:343.943722px;}
.ybc_c00350{bottom:344.220373px;}
.ybd_c00350{bottom:344.726047px;}
.ybe_c00350{bottom:345.049531px;}
.ybf_c00350{bottom:345.858577px;}
.yc0_c00350{bottom:346.088544px;}
.yc1_c00350{bottom:346.590592px;}
.yc2_c00350{bottom:347.368956px;}
.yc3_c00350{bottom:347.566867px;}
.yc4_c00350{bottom:347.991834px;}
.yc5_c00350{bottom:348.880053px;}
.yb1_c00350{bottom:365.849334px;}
.yb2_c00350{bottom:366.570532px;}
.yb3_c00350{bottom:367.393032px;}
.yb4_c00350{bottom:367.975915px;}
.yb5_c00350{bottom:368.393542px;}
.yb6_c00350{bottom:369.847674px;}
.yb7_c00350{bottom:370.451068px;}
.yb8_c00350{bottom:371.722599px;}
.yb9_c00350{bottom:372.083134px;}
.ya6_c00350{bottom:388.534500px;}
.ya7_c00350{bottom:389.543382px;}
.ya8_c00350{bottom:390.249681px;}
.ya9_c00350{bottom:390.820243px;}
.yaa_c00350{bottom:391.472329px;}
.yab_c00350{bottom:392.330685px;}
.yac_c00350{bottom:393.317561px;}
.yad_c00350{bottom:393.785919px;}
.yae_c00350{bottom:394.924315px;}
.yaf_c00350{bottom:395.535321px;}
.yb0_c00350{bottom:396.053532px;}
.ya0_c00350{bottom:418.774500px;}
.ya1_c00350{bottom:419.123136px;}
.ya2_c00350{bottom:419.536491px;}
.ya3_c00350{bottom:420.366541px;}
.ya4_c00350{bottom:420.817943px;}
.ya5_c00350{bottom:421.979671px;}
.y96_c00350{bottom:445.230166px;}
.y97_c00350{bottom:445.596894px;}
.y98_c00350{bottom:446.276975px;}
.y99_c00350{bottom:446.794451px;}
.y9a_c00350{bottom:447.235557px;}
.y9b_c00350{bottom:447.479326px;}
.y9c_c00350{bottom:447.820118px;}
.y9d_c00350{bottom:448.124655px;}
.y9e_c00350{bottom:448.765791px;}
.y9f_c00350{bottom:449.647323px;}
.y8a_c00350{bottom:468.183000px;}
.y8b_c00350{bottom:469.078011px;}
.y8c_c00350{bottom:469.361795px;}
.y8d_c00350{bottom:469.881002px;}
.y8e_c00350{bottom:470.453990px;}
.y8f_c00350{bottom:470.773458px;}
.y90_c00350{bottom:471.660767px;}
.y91_c00350{bottom:472.039808px;}
.y92_c00350{bottom:472.342701px;}
.y93_c00350{bottom:472.819924px;}
.y94_c00350{bottom:473.227377px;}
.y95_c00350{bottom:474.121569px;}
.y81_c00350{bottom:495.991500px;}
.y82_c00350{bottom:496.241358px;}
.y83_c00350{bottom:496.905468px;}
.y84_c00350{bottom:497.214492px;}
.y85_c00350{bottom:497.880204px;}
.y86_c00350{bottom:498.372576px;}
.y87_c00350{bottom:498.589674px;}
.y88_c00350{bottom:498.930630px;}
.y89_c00350{bottom:499.180164px;}
.y80_c00350{bottom:522.597145px;}
.y73_c00350{bottom:545.671500px;}
.y74_c00350{bottom:545.952495px;}
.y75_c00350{bottom:546.706579px;}
.y76_c00350{bottom:547.194294px;}
.y77_c00350{bottom:547.584820px;}
.y78_c00350{bottom:547.977082px;}
.y79_c00350{bottom:548.371119px;}
.y7a_c00350{bottom:549.009607px;}
.y7b_c00350{bottom:549.480454px;}
.y7c_c00350{bottom:550.335997px;}
.y7d_c00350{bottom:550.653555px;}
.y7e_c00350{bottom:551.025537px;}
.y7f_c00350{bottom:551.222214px;}
.y69_c00350{bottom:573.753000px;}
.y6a_c00350{bottom:574.354230px;}
.y6b_c00350{bottom:574.664106px;}
.y6c_c00350{bottom:575.192571px;}
.y6d_c00350{bottom:575.767824px;}
.y6e_c00350{bottom:576.369264px;}
.y6f_c00350{bottom:577.072281px;}
.y70_c00350{bottom:577.401960px;}
.y71_c00350{bottom:577.742223px;}
.y72_c00350{bottom:578.414895px;}
.y5e_c00350{bottom:599.649270px;}
.y5f_c00350{bottom:599.992230px;}
.y60_c00350{bottom:600.370500px;}
.y61_c00350{bottom:601.435470px;}
.y62_c00350{bottom:602.985300px;}
.y63_c00350{bottom:603.402840px;}
.y64_c00350{bottom:603.830250px;}
.y65_c00350{bottom:604.155510px;}
.y66_c00350{bottom:605.207970px;}
.y67_c00350{bottom:606.167430px;}
.y68_c00350{bottom:607.152780px;}
.y52_c00350{bottom:622.603620px;}
.y53_c00350{bottom:623.176860px;}
.y54_c00350{bottom:623.821890px;}
.y55_c00350{bottom:624.924420px;}
.y56_c00350{bottom:626.016570px;}
.y57_c00350{bottom:626.477400px;}
.y58_c00350{bottom:627.095340px;}
.y59_c00350{bottom:627.570600px;}
.y5a_c00350{bottom:627.848790px;}
.y5b_c00350{bottom:628.548480px;}
.y5c_c00350{bottom:629.526690px;}
.y5d_c00350{bottom:629.805210px;}
.y46_c00350{bottom:645.020070px;}
.y47_c00350{bottom:645.495960px;}
.y48_c00350{bottom:646.147230px;}
.y49_c00350{bottom:646.645470px;}
.y4a_c00350{bottom:647.702280px;}
.y4b_c00350{bottom:648.100980px;}
.y4c_c00350{bottom:648.883080px;}
.y4d_c00350{bottom:649.370580px;}
.y4e_c00350{bottom:650.647650px;}
.y4f_c00350{bottom:651.222840px;}
.y50_c00350{bottom:652.012920px;}
.y51_c00350{bottom:652.511730px;}
.y3c_c00350{bottom:673.913100px;}
.y3d_c00350{bottom:674.345370px;}
.y3e_c00350{bottom:674.810550px;}
.y3f_c00350{bottom:675.606150px;}
.y40_c00350{bottom:675.848610px;}
.y41_c00350{bottom:676.216320px;}
.y42_c00350{bottom:677.140860px;}
.y43_c00350{bottom:677.495190px;}
.y44_c00350{bottom:678.092130px;}
.y45_c00350{bottom:678.381960px;}
.y34_c00350{bottom:697.409280px;}
.y35_c00350{bottom:698.736720px;}
.y36_c00350{bottom:699.486810px;}
.y37_c00350{bottom:699.814830px;}
.y38_c00350{bottom:700.539210px;}
.y39_c00350{bottom:701.112450px;}
.y3a_c00350{bottom:701.724870px;}
.y3b_c00350{bottom:702.340170px;}
.y2d_c00350{bottom:727.924500px;}
.y2e_c00350{bottom:728.544840px;}
.y2f_c00350{bottom:729.108390px;}
.y30_c00350{bottom:730.966170px;}
.y31_c00350{bottom:732.247110px;}
.y32_c00350{bottom:732.791430px;}
.y33_c00350{bottom:733.504620px;}
.y2a_c00350{bottom:758.169000px;}
.y2b_c00350{bottom:759.819324px;}
.y2c_c00350{bottom:760.191540px;}
.y24_c00350{bottom:771.663762px;}
.y25_c00350{bottom:772.810098px;}
.y26_c00350{bottom:773.601084px;}
.y27_c00350{bottom:780.560943px;}
.y28_c00350{bottom:781.351442px;}
.y29_c00350{bottom:782.244329px;}
.y18_c00350{bottom:798.660009px;}
.y19_c00350{bottom:799.364190px;}
.y1a_c00350{bottom:800.382531px;}
.y1b_c00350{bottom:800.523734px;}
.y1c_c00350{bottom:800.880183px;}
.y1d_c00350{bottom:801.328058px;}
.y1e_c00350{bottom:801.587486px;}
.y1f_c00350{bottom:802.227375px;}
.y20_c00350{bottom:802.389995px;}
.y21_c00350{bottom:802.819026px;}
.y22_c00350{bottom:803.245443px;}
.y23_c00350{bottom:803.602907px;}
.y15_c00350{bottom:811.084500px;}
.y16_c00350{bottom:812.936474px;}
.y17_c00350{bottom:813.796131px;}
.y11_c00350{bottom:832.679573px;}
.y12_c00350{bottom:833.741666px;}
.y13_c00350{bottom:834.549324px;}
.y14_c00350{bottom:836.123993px;}
.yc_c00350{bottom:842.967000px;}
.yd_c00350{bottom:844.973726px;}
.ye_c00350{bottom:845.252459px;}
.yf_c00350{bottom:847.910484px;}
.y10_c00350{bottom:849.408299px;}
.yb_c00350{bottom:870.097500px;}
.y2_c00350{bottom:904.222500px;}
.y3_c00350{bottom:904.897635px;}
.y4_c00350{bottom:905.525610px;}
.y5_c00350{bottom:906.643477px;}
.y6_c00350{bottom:908.281590px;}
.y7_c00350{bottom:908.757263px;}
.y8_c00350{bottom:909.239347px;}
.y9_c00350{bottom:910.517910px;}
.ya_c00350{bottom:911.128717px;}
.y1_c00350{bottom:911.250000px;}
.h20_c00350{height:25.201814px;}
.h2_c00350{height:43.050000px;}
.h4_c00350{height:58.800000px;}
.h7_c00350{height:58.804968px;}
.h9_c00350{height:61.955235px;}
.h3_c00350{height:64.057205px;}
.h1f_c00350{height:67.204838px;}
.h11_c00350{height:67.205678px;}
.hc_c00350{height:67.213439px;}
.h1a_c00350{height:69.304193px;}
.h19_c00350{height:69.305856px;}
.h18_c00350{height:69.308870px;}
.h16_c00350{height:69.310013px;}
.he_c00350{height:69.313859px;}
.h1b_c00350{height:70.354256px;}
.h1e_c00350{height:70.355065px;}
.h14_c00350{height:70.360165px;}
.ha_c00350{height:70.373774px;}
.h17_c00350{height:71.410317px;}
.hd_c00350{height:71.414279px;}
.h12_c00350{height:72.455216px;}
.h10_c00350{height:72.456122px;}
.h15_c00350{height:72.460468px;}
.h1d_c00350{height:73.500000px;}
.h1c_c00350{height:73.504447px;}
.hf_c00350{height:73.507203px;}
.h13_c00350{height:74.556299px;}
.h8_c00350{height:75.606388px;}
.hb_c00350{height:76.665328px;}
.h5_c00350{height:126.010647px;}
.h6_c00350{height:129.160913px;}
.h21_c00350{height:228.916480px;}
.h1_c00350{height:1005.000000px;}
.h0_c00350{height:1005.150000px;}
.w0_c00350{width:702.540000px;}
.w1_c00350{width:702.750000px;}
.x0_c00350{left:0.000000px;}
.x18_c00350{left:46.571744px;}
.xb_c00350{left:48.870000px;}
.x11_c00350{left:61.766279px;}
.xb1_c00350{left:65.218704px;}
.xab_c00350{left:67.516500px;}
.xac_c00350{left:80.551500px;}
.xad_c00350{left:95.887500px;}
.x24_c00350{left:99.269640px;}
.x48_c00350{left:100.378650px;}
.x51_c00350{left:102.570930px;}
.x8a_c00350{left:104.612511px;}
.x84_c00350{left:106.304996px;}
.xa1_c00350{left:107.557804px;}
.x2_c00350{left:110.707500px;}
.x19_c00350{left:117.011493px;}
.x3d_c00350{left:119.310570px;}
.x5e_c00350{left:120.315000px;}
.x52_c00350{left:121.594680px;}
.x98_c00350{left:124.354500px;}
.xa6_c00350{left:126.801000px;}
.x25_c00350{left:133.687175px;}
.x49_c00350{left:136.243530px;}
.x59_c00350{left:137.596500px;}
.x66_c00350{left:138.649500px;}
.x53_c00350{left:142.609020px;}
.x3e_c00350{left:144.380580px;}
.x2c_c00350{left:148.716000px;}
.x8b_c00350{left:150.830648px;}
.x91_c00350{left:153.099746px;}
.x85_c00350{left:154.377128px;}
.x3_c00350{left:155.716500px;}
.x67_c00350{left:159.471000px;}
.x37_c00350{left:161.131020px;}
.xc_c00350{left:165.780000px;}
.x12_c00350{left:167.931413px;}
.x32_c00350{left:170.419140px;}
.x8c_c00350{left:172.135101px;}
.x94_c00350{left:173.773500px;}
.x2d_c00350{left:176.893500px;}
.x3f_c00350{left:178.669770px;}
.x5a_c00350{left:180.541500px;}
.xae_c00350{left:184.875000px;}
.xa2_c00350{left:188.292305px;}
.x38_c00350{left:190.242360px;}
.x95_c00350{left:192.357000px;}
.xaf_c00350{left:195.108000px;}
.x4_c00350{left:197.581500px;}
.x5f_c00350{left:199.936500px;}
.x54_c00350{left:201.784890px;}
.xd_c00350{left:203.911500px;}
.x40_c00350{left:204.932310px;}
.x86_c00350{left:209.202489px;}
.x8d_c00350{left:211.059753px;}
.x6e_c00350{left:212.085000px;}
.x15_c00350{left:213.745500px;}
.x68_c00350{left:214.813500px;}
.xa3_c00350{left:216.955804px;}
.x1a_c00350{left:218.772451px;}
.x7d_c00350{left:222.915000px;}
.xe_c00350{left:225.352500px;}
.xa7_c00350{left:227.436000px;}
.x1b_c00350{left:232.865498px;}
.x29_c00350{left:233.908500px;}
.x8e_c00350{left:235.913436px;}
.x60_c00350{left:237.453000px;}
.x33_c00350{left:240.317550px;}
.x4a_c00350{left:245.455260px;}
.x9c_c00350{left:246.943189px;}
.x13_c00350{left:248.639052px;}
.x99_c00350{left:250.383000px;}
.x6f_c00350{left:252.024000px;}
.x39_c00350{left:255.125550px;}
.x7e_c00350{left:256.477500px;}
.x41_c00350{left:260.548920px;}
.x9d_c00350{left:263.151826px;}
.x79_c00350{left:264.345000px;}
.x96_c00350{left:265.591500px;}
.x1c_c00350{left:268.478382px;}
.x2e_c00350{left:269.782500px;}
.x5_c00350{left:272.106000px;}
.x87_c00350{left:275.911259px;}
.x3a_c00350{left:278.087880px;}
.x34_c00350{left:279.772830px;}
.x42_c00350{left:281.534340px;}
.x7a_c00350{left:284.853000px;}
.x92_c00350{left:286.618500px;}
.x55_c00350{left:287.904840px;}
.x76_c00350{left:290.346648px;}
.x7f_c00350{left:294.835500px;}
.x69_c00350{left:296.041500px;}
.x2a_c00350{left:297.382500px;}
.x9e_c00350{left:303.370435px;}
.x7b_c00350{left:309.168000px;}
.x2b_c00350{left:311.698500px;}
.x1d_c00350{left:313.316637px;}
.x8f_c00350{left:315.831368px;}
.x77_c00350{left:318.754019px;}
.x70_c00350{left:320.674500px;}
.x43_c00350{left:322.665150px;}
.x5b_c00350{left:324.472500px;}
.x61_c00350{left:327.978000px;}
.xa8_c00350{left:329.248500px;}
.x2f_c00350{left:333.829500px;}
.x35_c00350{left:335.093910px;}
.x6a_c00350{left:337.072500px;}
.x1e_c00350{left:339.273651px;}
.xa5_c00350{left:341.280000px;}
.x4b_c00350{left:342.537030px;}
.x78_c00350{left:344.141850px;}
.x80_c00350{left:345.327000px;}
.x9f_c00350{left:346.572478px;}
.x44_c00350{left:348.315660px;}
.x56_c00350{left:352.942950px;}
.x6b_c00350{left:355.164000px;}
.x16_c00350{left:356.205000px;}
.x3b_c00350{left:358.012770px;}
.x30_c00350{left:361.045500px;}
.x36_c00350{left:365.256510px;}
.xa4_c00350{left:366.807304px;}
.x93_c00350{left:369.645000px;}
.x88_c00350{left:372.834048px;}
.x5c_c00350{left:374.688000px;}
.x62_c00350{left:377.092500px;}
.x6_c00350{left:381.313500px;}
.x6c_c00350{left:383.577000px;}
.x71_c00350{left:388.929000px;}
.x3c_c00350{left:395.287740px;}
.x31_c00350{left:396.705000px;}
.x5d_c00350{left:398.236500px;}
.x1f_c00350{left:403.267647px;}
.x6d_c00350{left:404.371500px;}
.x14_c00350{left:406.119695px;}
.x4c_c00350{left:410.852490px;}
.x7_c00350{left:413.025000px;}
.x90_c00350{left:414.274049px;}
.x45_c00350{left:415.545510px;}
.x72_c00350{left:418.086000px;}
.x20_c00350{left:419.469771px;}
.x17_c00350{left:422.332500px;}
.x97_c00350{left:425.119500px;}
.xa9_c00350{left:426.585000px;}
.x4d_c00350{left:428.213370px;}
.xf_c00350{left:429.816000px;}
.x81_c00350{left:430.929000px;}
.x26_c00350{left:436.290843px;}
.x73_c00350{left:441.385500px;}
.x8_c00350{left:445.164000px;}
.x7c_c00350{left:452.884500px;}
.xaa_c00350{left:456.325548px;}
.x21_c00350{left:462.396948px;}
.x57_c00350{left:464.718420px;}
.x27_c00350{left:470.670878px;}
.x4e_c00350{left:471.976380px;}
.x74_c00350{left:478.095000px;}
.x63_c00350{left:479.122500px;}
.x9a_c00350{left:484.548000px;}
.x46_c00350{left:487.410450px;}
.xb0_c00350{left:496.360500px;}
.x82_c00350{left:497.893500px;}
.x64_c00350{left:503.550000px;}
.x22_c00350{left:505.007606px;}
.x28_c00350{left:509.464827px;}
.x47_c00350{left:513.626460px;}
.x58_c00350{left:519.463110px;}
.x89_c00350{left:521.895623px;}
.x9_c00350{left:530.401500px;}
.x4f_c00350{left:533.116770px;}
.x1_c00350{left:535.950000px;}
.x23_c00350{left:540.698490px;}
.x10_c00350{left:545.032500px;}
.x9b_c00350{left:546.114000px;}
.x65_c00350{left:547.293000px;}
.x50_c00350{left:550.569180px;}
.xa0_c00350{left:552.354441px;}
.x83_c00350{left:564.318000px;}
.xa_c00350{left:571.122000px;}
.x75_c00350{left:578.221500px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
.fs1e_c00350{font-size:22.401613pt;}
.fs0_c00350{font-size:38.266667pt;}
.fs2_c00350{font-size:52.266667pt;}
.fs5_c00350{font-size:52.271083pt;}
.fs7_c00350{font-size:55.071320pt;}
.fs1_c00350{font-size:56.939738pt;}
.fs1d_c00350{font-size:59.737634pt;}
.fsf_c00350{font-size:59.738381pt;}
.fsa_c00350{font-size:59.745279pt;}
.fs18_c00350{font-size:61.603727pt;}
.fs17_c00350{font-size:61.605205pt;}
.fs16_c00350{font-size:61.607884pt;}
.fs14_c00350{font-size:61.608901pt;}
.fsc_c00350{font-size:61.612319pt;}
.fs19_c00350{font-size:62.537116pt;}
.fs1c_c00350{font-size:62.537836pt;}
.fs12_c00350{font-size:62.542369pt;}
.fs8_c00350{font-size:62.554466pt;}
.fs15_c00350{font-size:63.475837pt;}
.fsb_c00350{font-size:63.479359pt;}
.fs10_c00350{font-size:64.404637pt;}
.fse_c00350{font-size:64.405442pt;}
.fs13_c00350{font-size:64.409305pt;}
.fs1b_c00350{font-size:65.333333pt;}
.fs1a_c00350{font-size:65.337286pt;}
.fsd_c00350{font-size:65.339736pt;}
.fs11_c00350{font-size:66.272266pt;}
.fs6_c00350{font-size:67.205678pt;}
.fs9_c00350{font-size:68.146959pt;}
.fs3_c00350{font-size:112.009464pt;}
.fs4_c00350{font-size:114.809700pt;}
.fs1f_c00350{font-size:203.481316pt;}
.y0_c00350{bottom:0.000000pt;}
.y116_c00350{bottom:60.479989pt;}
.y117_c00350{bottom:60.935792pt;}
.y10c_c00350{bottom:94.080000pt;}
.y10d_c00350{bottom:94.219040pt;}
.y10e_c00350{bottom:94.382624pt;}
.y10f_c00350{bottom:94.819104pt;}
.y110_c00350{bottom:95.001664pt;}
.y111_c00350{bottom:95.075392pt;}
.y112_c00350{bottom:95.331824pt;}
.y113_c00350{bottom:95.440976pt;}
.y114_c00350{bottom:98.654336pt;}
.y115_c00350{bottom:99.449488pt;}
.y10a_c00350{bottom:104.998016pt;}
.y10b_c00350{bottom:104.998411pt;}
.yff_c00350{bottom:123.601333pt;}
.y100_c00350{bottom:124.674773pt;}
.y101_c00350{bottom:124.888469pt;}
.y102_c00350{bottom:125.277525pt;}
.y103_c00350{bottom:125.760773pt;}
.y104_c00350{bottom:126.066517pt;}
.y105_c00350{bottom:126.649909pt;}
.y106_c00350{bottom:126.799029pt;}
.y107_c00350{bottom:127.284373pt;}
.y108_c00350{bottom:127.636293pt;}
.y109_c00350{bottom:127.925269pt;}
.yfe_c00350{bottom:148.810667pt;}
.yf4_c00350{bottom:172.561516pt;}
.yf5_c00350{bottom:173.010287pt;}
.yf6_c00350{bottom:173.350920pt;}
.yf7_c00350{bottom:173.631185pt;}
.yf8_c00350{bottom:173.903061pt;}
.yf9_c00350{bottom:174.549333pt;}
.yfa_c00350{bottom:174.795367pt;}
.yfb_c00350{bottom:175.096400pt;}
.yfc_c00350{bottom:175.307644pt;}
.yfd_c00350{bottom:175.645696pt;}
.ye8_c00350{bottom:192.720544pt;}
.ye9_c00350{bottom:193.051271pt;}
.yea_c00350{bottom:194.183451pt;}
.yeb_c00350{bottom:194.340199pt;}
.yec_c00350{bottom:194.528020pt;}
.yed_c00350{bottom:194.993277pt;}
.yee_c00350{bottom:195.493040pt;}
.yef_c00350{bottom:195.805216pt;}
.yf0_c00350{bottom:196.463707pt;}
.yf1_c00350{bottom:196.722739pt;}
.yf2_c00350{bottom:197.300736pt;}
.yf3_c00350{bottom:197.871841pt;}
.ydc_c00350{bottom:213.361333pt;}
.ydd_c00350{bottom:213.638431pt;}
.yde_c00350{bottom:214.205561pt;}
.ydf_c00350{bottom:214.593612pt;}
.ye0_c00350{bottom:214.863435pt;}
.ye1_c00350{bottom:215.504911pt;}
.ye2_c00350{bottom:216.032940pt;}
.ye3_c00350{bottom:216.202003pt;}
.ye4_c00350{bottom:216.363175pt;}
.ye5_c00350{bottom:216.883225pt;}
.ye6_c00350{bottom:217.134040pt;}
.ye7_c00350{bottom:217.485204pt;}
.yd3_c00350{bottom:240.961333pt;}
.yd4_c00350{bottom:241.323392pt;}
.yd5_c00350{bottom:241.538135pt;}
.yd6_c00350{bottom:242.056783pt;}
.yd7_c00350{bottom:242.384400pt;}
.yd8_c00350{bottom:243.048908pt;}
.yd9_c00350{bottom:243.341356pt;}
.yda_c00350{bottom:243.591944pt;}
.ydb_c00350{bottom:244.227835pt;}
.yc8_c00350{bottom:260.402667pt;}
.yc9_c00350{bottom:260.506816pt;}
.yca_c00350{bottom:260.948800pt;}
.ycb_c00350{bottom:261.674709pt;}
.ycc_c00350{bottom:262.031296pt;}
.ycd_c00350{bottom:262.568149pt;}
.yce_c00350{bottom:263.294251pt;}
.ycf_c00350{bottom:263.748971pt;}
.yd0_c00350{bottom:264.235968pt;}
.yd1_c00350{bottom:264.811413pt;}
.yd2_c00350{bottom:265.315179pt;}
.yc7_c00350{bottom:285.228109pt;}
.yc6_c00350{bottom:285.228649pt;}
.yba_c00350{bottom:305.193393pt;}
.ybb_c00350{bottom:305.727753pt;}
.ybc_c00350{bottom:305.973665pt;}
.ybd_c00350{bottom:306.423153pt;}
.ybe_c00350{bottom:306.710695pt;}
.ybf_c00350{bottom:307.429847pt;}
.yc0_c00350{bottom:307.634261pt;}
.yc1_c00350{bottom:308.080527pt;}
.yc2_c00350{bottom:308.772405pt;}
.yc3_c00350{bottom:308.948327pt;}
.yc4_c00350{bottom:309.326075pt;}
.yc5_c00350{bottom:310.115603pt;}
.yb1_c00350{bottom:325.199408pt;}
.yb2_c00350{bottom:325.840473pt;}
.yb3_c00350{bottom:326.571584pt;}
.yb4_c00350{bottom:327.089703pt;}
.yb5_c00350{bottom:327.460927pt;}
.yb6_c00350{bottom:328.753488pt;}
.yb7_c00350{bottom:329.289839pt;}
.yb8_c00350{bottom:330.420088pt;}
.yb9_c00350{bottom:330.740564pt;}
.ya6_c00350{bottom:345.364000pt;}
.ya7_c00350{bottom:346.260784pt;}
.ya8_c00350{bottom:346.888605pt;}
.ya9_c00350{bottom:347.395772pt;}
.yaa_c00350{bottom:347.975404pt;}
.yab_c00350{bottom:348.738387pt;}
.yac_c00350{bottom:349.615609pt;}
.yad_c00350{bottom:350.031928pt;}
.yae_c00350{bottom:351.043836pt;}
.yaf_c00350{bottom:351.586952pt;}
.yb0_c00350{bottom:352.047584pt;}
.ya0_c00350{bottom:372.244000pt;}
.ya1_c00350{bottom:372.553899pt;}
.ya2_c00350{bottom:372.921325pt;}
.ya3_c00350{bottom:373.659148pt;}
.ya4_c00350{bottom:374.060393pt;}
.ya5_c00350{bottom:375.093041pt;}
.y96_c00350{bottom:395.760148pt;}
.y97_c00350{bottom:396.086128pt;}
.y98_c00350{bottom:396.690644pt;}
.y99_c00350{bottom:397.150623pt;}
.y9a_c00350{bottom:397.542717pt;}
.y9b_c00350{bottom:397.759401pt;}
.y9c_c00350{bottom:398.062327pt;}
.y9d_c00350{bottom:398.333027pt;}
.y9e_c00350{bottom:398.902925pt;}
.y9f_c00350{bottom:399.686509pt;}
.y8a_c00350{bottom:416.162667pt;}
.y8b_c00350{bottom:416.958232pt;}
.y8c_c00350{bottom:417.210484pt;}
.y8d_c00350{bottom:417.672001pt;}
.y8e_c00350{bottom:418.181324pt;}
.y8f_c00350{bottom:418.465296pt;}
.y90_c00350{bottom:419.254015pt;}
.y91_c00350{bottom:419.590940pt;}
.y92_c00350{bottom:419.860179pt;}
.y93_c00350{bottom:420.284377pt;}
.y94_c00350{bottom:420.646557pt;}
.y95_c00350{bottom:421.441395pt;}
.y81_c00350{bottom:440.881333pt;}
.y82_c00350{bottom:441.103429pt;}
.y83_c00350{bottom:441.693749pt;}
.y84_c00350{bottom:441.968437pt;}
.y85_c00350{bottom:442.560181pt;}
.y86_c00350{bottom:442.997845pt;}
.y87_c00350{bottom:443.190821pt;}
.y88_c00350{bottom:443.493893pt;}
.y89_c00350{bottom:443.715701pt;}
.y80_c00350{bottom:464.530796pt;}
.y73_c00350{bottom:485.041333pt;}
.y74_c00350{bottom:485.291107pt;}
.y75_c00350{bottom:485.961404pt;}
.y76_c00350{bottom:486.394928pt;}
.y77_c00350{bottom:486.742063pt;}
.y78_c00350{bottom:487.090740pt;}
.y79_c00350{bottom:487.440995pt;}
.y7a_c00350{bottom:488.008540pt;}
.y7b_c00350{bottom:488.427071pt;}
.y7c_c00350{bottom:489.187553pt;}
.y7d_c00350{bottom:489.469827pt;}
.y7e_c00350{bottom:489.800477pt;}
.y7f_c00350{bottom:489.975301pt;}
.y69_c00350{bottom:510.002667pt;}
.y6a_c00350{bottom:510.537093pt;}
.y6b_c00350{bottom:510.812539pt;}
.y6c_c00350{bottom:511.282285pt;}
.y6d_c00350{bottom:511.793621pt;}
.y6e_c00350{bottom:512.328235pt;}
.y6f_c00350{bottom:512.953139pt;}
.y70_c00350{bottom:513.246187pt;}
.y71_c00350{bottom:513.548643pt;}
.y72_c00350{bottom:514.146573pt;}
.y5e_c00350{bottom:533.021573pt;}
.y5f_c00350{bottom:533.326427pt;}
.y60_c00350{bottom:533.662667pt;}
.y61_c00350{bottom:534.609307pt;}
.y62_c00350{bottom:535.986933pt;}
.y63_c00350{bottom:536.358080pt;}
.y64_c00350{bottom:536.738000pt;}
.y65_c00350{bottom:537.027120pt;}
.y66_c00350{bottom:537.962640pt;}
.y67_c00350{bottom:538.815493pt;}
.y68_c00350{bottom:539.691360pt;}
.y52_c00350{bottom:553.425440pt;}
.y53_c00350{bottom:553.934987pt;}
.y54_c00350{bottom:554.508347pt;}
.y55_c00350{bottom:555.488373pt;}
.y56_c00350{bottom:556.459173pt;}
.y57_c00350{bottom:556.868800pt;}
.y58_c00350{bottom:557.418080pt;}
.y59_c00350{bottom:557.840533pt;}
.y5a_c00350{bottom:558.087813pt;}
.y5b_c00350{bottom:558.709760pt;}
.y5c_c00350{bottom:559.579280pt;}
.y5d_c00350{bottom:559.826853pt;}
.y46_c00350{bottom:573.351173pt;}
.y47_c00350{bottom:573.774187pt;}
.y48_c00350{bottom:574.353093pt;}
.y49_c00350{bottom:574.795973pt;}
.y4a_c00350{bottom:575.735360pt;}
.y4b_c00350{bottom:576.089760pt;}
.y4c_c00350{bottom:576.784960pt;}
.y4d_c00350{bottom:577.218293pt;}
.y4e_c00350{bottom:578.353467pt;}
.y4f_c00350{bottom:578.864747pt;}
.y50_c00350{bottom:579.567040pt;}
.y51_c00350{bottom:580.010427pt;}
.y3c_c00350{bottom:599.033867pt;}
.y3d_c00350{bottom:599.418107pt;}
.y3e_c00350{bottom:599.831600pt;}
.y3f_c00350{bottom:600.538800pt;}
.y40_c00350{bottom:600.754320pt;}
.y41_c00350{bottom:601.081173pt;}
.y42_c00350{bottom:601.902987pt;}
.y43_c00350{bottom:602.217947pt;}
.y44_c00350{bottom:602.748560pt;}
.y45_c00350{bottom:603.006187pt;}
.y34_c00350{bottom:619.919360pt;}
.y35_c00350{bottom:621.099307pt;}
.y36_c00350{bottom:621.766053pt;}
.y37_c00350{bottom:622.057627pt;}
.y38_c00350{bottom:622.701520pt;}
.y39_c00350{bottom:623.211067pt;}
.y3a_c00350{bottom:623.755440pt;}
.y3b_c00350{bottom:624.302373pt;}
.y2d_c00350{bottom:647.044000pt;}
.y2e_c00350{bottom:647.595413pt;}
.y2f_c00350{bottom:648.096347pt;}
.y30_c00350{bottom:649.747707pt;}
.y31_c00350{bottom:650.886320pt;}
.y32_c00350{bottom:651.370160pt;}
.y33_c00350{bottom:652.004107pt;}
.y2a_c00350{bottom:673.928000pt;}
.y2b_c00350{bottom:675.394955pt;}
.y2c_c00350{bottom:675.725813pt;}
.y24_c00350{bottom:685.923344pt;}
.y25_c00350{bottom:686.942309pt;}
.y26_c00350{bottom:687.645408pt;}
.y27_c00350{bottom:693.831949pt;}
.y28_c00350{bottom:694.534615pt;}
.y29_c00350{bottom:695.328292pt;}
.y18_c00350{bottom:709.920008pt;}
.y19_c00350{bottom:710.545947pt;}
.y1a_c00350{bottom:711.451139pt;}
.y1b_c00350{bottom:711.576652pt;}
.y1c_c00350{bottom:711.893496pt;}
.y1d_c00350{bottom:712.291607pt;}
.y1e_c00350{bottom:712.522209pt;}
.y1f_c00350{bottom:713.091000pt;}
.y20_c00350{bottom:713.235551pt;}
.y21_c00350{bottom:713.616912pt;}
.y22_c00350{bottom:713.995949pt;}
.y23_c00350{bottom:714.313695pt;}
.y15_c00350{bottom:720.964000pt;}
.y16_c00350{bottom:722.610199pt;}
.y17_c00350{bottom:723.374339pt;}
.y11_c00350{bottom:740.159620pt;}
.y12_c00350{bottom:741.103703pt;}
.y13_c00350{bottom:741.821621pt;}
.y14_c00350{bottom:743.221327pt;}
.yc_c00350{bottom:749.304000pt;}
.yd_c00350{bottom:751.087756pt;}
.ye_c00350{bottom:751.335519pt;}
.yf_c00350{bottom:753.698208pt;}
.y10_c00350{bottom:755.029599pt;}
.yb_c00350{bottom:773.420000pt;}
.y2_c00350{bottom:803.753333pt;}
.y3_c00350{bottom:804.353453pt;}
.y4_c00350{bottom:804.911653pt;}
.y5_c00350{bottom:805.905313pt;}
.y6_c00350{bottom:807.361413pt;}
.y7_c00350{bottom:807.784233pt;}
.y8_c00350{bottom:808.212753pt;}
.y9_c00350{bottom:809.349253pt;}
.ya_c00350{bottom:809.892193pt;}
.y1_c00350{bottom:810.000000pt;}
.h20_c00350{height:22.401613pt;}
.h2_c00350{height:38.266667pt;}
.h4_c00350{height:52.266667pt;}
.h7_c00350{height:52.271083pt;}
.h9_c00350{height:55.071320pt;}
.h3_c00350{height:56.939738pt;}
.h1f_c00350{height:59.737634pt;}
.h11_c00350{height:59.738381pt;}
.hc_c00350{height:59.745279pt;}
.h1a_c00350{height:61.603727pt;}
.h19_c00350{height:61.605205pt;}
.h18_c00350{height:61.607884pt;}
.h16_c00350{height:61.608901pt;}
.he_c00350{height:61.612319pt;}
.h1b_c00350{height:62.537116pt;}
.h1e_c00350{height:62.537836pt;}
.h14_c00350{height:62.542369pt;}
.ha_c00350{height:62.554466pt;}
.h17_c00350{height:63.475837pt;}
.hd_c00350{height:63.479359pt;}
.h12_c00350{height:64.404637pt;}
.h10_c00350{height:64.405442pt;}
.h15_c00350{height:64.409305pt;}
.h1d_c00350{height:65.333333pt;}
.h1c_c00350{height:65.337286pt;}
.hf_c00350{height:65.339736pt;}
.h13_c00350{height:66.272266pt;}
.h8_c00350{height:67.205678pt;}
.hb_c00350{height:68.146959pt;}
.h5_c00350{height:112.009464pt;}
.h6_c00350{height:114.809700pt;}
.h21_c00350{height:203.481316pt;}
.h1_c00350{height:893.333333pt;}
.h0_c00350{height:893.466667pt;}
.w0_c00350{width:624.480000pt;}
.w1_c00350{width:624.666667pt;}
.x0_c00350{left:0.000000pt;}
.x18_c00350{left:41.397105pt;}
.xb_c00350{left:43.440000pt;}
.x11_c00350{left:54.903359pt;}
.xb1_c00350{left:57.972181pt;}
.xab_c00350{left:60.014667pt;}
.xac_c00350{left:71.601333pt;}
.xad_c00350{left:85.233333pt;}
.x24_c00350{left:88.239680pt;}
.x48_c00350{left:89.225467pt;}
.x51_c00350{left:91.174160pt;}
.x8a_c00350{left:92.988899pt;}
.x84_c00350{left:94.493329pt;}
.xa1_c00350{left:95.606937pt;}
.x2_c00350{left:98.406667pt;}
.x19_c00350{left:104.010216pt;}
.x3d_c00350{left:106.053840pt;}
.x5e_c00350{left:106.946667pt;}
.x52_c00350{left:108.084160pt;}
.x98_c00350{left:110.537333pt;}
.xa6_c00350{left:112.712000pt;}
.x25_c00350{left:118.833044pt;}
.x49_c00350{left:121.105360pt;}
.x59_c00350{left:122.308000pt;}
.x66_c00350{left:123.244000pt;}
.x53_c00350{left:126.763573pt;}
.x3e_c00350{left:128.338293pt;}
.x2c_c00350{left:132.192000pt;}
.x8b_c00350{left:134.071687pt;}
.x91_c00350{left:136.088663pt;}
.x85_c00350{left:137.224113pt;}
.x3_c00350{left:138.414667pt;}
.x67_c00350{left:141.752000pt;}
.x37_c00350{left:143.227573pt;}
.xc_c00350{left:147.360000pt;}
.x12_c00350{left:149.272367pt;}
.x32_c00350{left:151.483680pt;}
.x8c_c00350{left:153.008979pt;}
.x94_c00350{left:154.465333pt;}
.x2d_c00350{left:157.238667pt;}
.x3f_c00350{left:158.817573pt;}
.x5a_c00350{left:160.481333pt;}
.xae_c00350{left:164.333333pt;}
.xa2_c00350{left:167.370937pt;}
.x38_c00350{left:169.104320pt;}
.x95_c00350{left:170.984000pt;}
.xaf_c00350{left:173.429333pt;}
.x4_c00350{left:175.628000pt;}
.x5f_c00350{left:177.721333pt;}
.x54_c00350{left:179.364347pt;}
.xd_c00350{left:181.254667pt;}
.x40_c00350{left:182.162053pt;}
.x86_c00350{left:185.957768pt;}
.x8d_c00350{left:187.608669pt;}
.x6e_c00350{left:188.520000pt;}
.x15_c00350{left:189.996000pt;}
.x68_c00350{left:190.945333pt;}
.xa3_c00350{left:192.849604pt;}
.x1a_c00350{left:194.464401pt;}
.x7d_c00350{left:198.146667pt;}
.xe_c00350{left:200.313333pt;}
.xa7_c00350{left:202.165333pt;}
.x1b_c00350{left:206.991553pt;}
.x29_c00350{left:207.918667pt;}
.x8e_c00350{left:209.700832pt;}
.x60_c00350{left:211.069333pt;}
.x33_c00350{left:213.615600pt;}
.x4a_c00350{left:218.182453pt;}
.x9c_c00350{left:219.505057pt;}
.x13_c00350{left:221.012491pt;}
.x99_c00350{left:222.562667pt;}
.x6f_c00350{left:224.021333pt;}
.x39_c00350{left:226.778267pt;}
.x7e_c00350{left:227.980000pt;}
.x41_c00350{left:231.599040pt;}
.x9d_c00350{left:233.912735pt;}
.x79_c00350{left:234.973333pt;}
.x96_c00350{left:236.081333pt;}
.x1c_c00350{left:238.647451pt;}
.x2e_c00350{left:239.806667pt;}
.x5_c00350{left:241.872000pt;}
.x87_c00350{left:245.254452pt;}
.x3a_c00350{left:247.189227pt;}
.x34_c00350{left:248.686960pt;}
.x42_c00350{left:250.252747pt;}
.x7a_c00350{left:253.202667pt;}
.x92_c00350{left:254.772000pt;}
.x55_c00350{left:255.915413pt;}
.x76_c00350{left:258.085909pt;}
.x7f_c00350{left:262.076000pt;}
.x69_c00350{left:263.148000pt;}
.x2a_c00350{left:264.340000pt;}
.x9e_c00350{left:269.662609pt;}
.x7b_c00350{left:274.816000pt;}
.x2b_c00350{left:277.065333pt;}
.x1d_c00350{left:278.503677pt;}
.x8f_c00350{left:280.738993pt;}
.x77_c00350{left:283.336905pt;}
.x70_c00350{left:285.044000pt;}
.x43_c00350{left:286.813467pt;}
.x5b_c00350{left:288.420000pt;}
.x61_c00350{left:291.536000pt;}
.xa8_c00350{left:292.665333pt;}
.x2f_c00350{left:296.737333pt;}
.x35_c00350{left:297.861253pt;}
.x6a_c00350{left:299.620000pt;}
.x1e_c00350{left:301.576579pt;}
.xa5_c00350{left:303.360000pt;}
.x4b_c00350{left:304.477360pt;}
.x78_c00350{left:305.903867pt;}
.x80_c00350{left:306.957333pt;}
.x9f_c00350{left:308.064425pt;}
.x44_c00350{left:309.613920pt;}
.x56_c00350{left:313.727067pt;}
.x6b_c00350{left:315.701333pt;}
.x16_c00350{left:316.626667pt;}
.x3b_c00350{left:318.233573pt;}
.x30_c00350{left:320.929333pt;}
.x36_c00350{left:324.672453pt;}
.xa4_c00350{left:326.050937pt;}
.x93_c00350{left:328.573333pt;}
.x88_c00350{left:331.408043pt;}
.x5c_c00350{left:333.056000pt;}
.x62_c00350{left:335.193333pt;}
.x6_c00350{left:338.945333pt;}
.x6c_c00350{left:340.957333pt;}
.x71_c00350{left:345.714667pt;}
.x3c_c00350{left:351.366880pt;}
.x31_c00350{left:352.626667pt;}
.x5d_c00350{left:353.988000pt;}
.x1f_c00350{left:358.460131pt;}
.x6d_c00350{left:359.441333pt;}
.x14_c00350{left:360.995284pt;}
.x4c_c00350{left:365.202213pt;}
.x7_c00350{left:367.133333pt;}
.x90_c00350{left:368.243599pt;}
.x45_c00350{left:369.373787pt;}
.x72_c00350{left:371.632000pt;}
.x20_c00350{left:372.862019pt;}
.x17_c00350{left:375.406667pt;}
.x97_c00350{left:377.884000pt;}
.xa9_c00350{left:379.186667pt;}
.x4d_c00350{left:380.634107pt;}
.xf_c00350{left:382.058667pt;}
.x81_c00350{left:383.048000pt;}
.x26_c00350{left:387.814083pt;}
.x73_c00350{left:392.342667pt;}
.x8_c00350{left:395.701333pt;}
.x7c_c00350{left:402.564000pt;}
.xaa_c00350{left:405.622709pt;}
.x21_c00350{left:411.019509pt;}
.x57_c00350{left:413.083040pt;}
.x27_c00350{left:418.374113pt;}
.x4e_c00350{left:419.534560pt;}
.x74_c00350{left:424.973333pt;}
.x63_c00350{left:425.886667pt;}
.x9a_c00350{left:430.709333pt;}
.x46_c00350{left:433.253733pt;}
.xb0_c00350{left:441.209333pt;}
.x82_c00350{left:442.572000pt;}
.x64_c00350{left:447.600000pt;}
.x22_c00350{left:448.895649pt;}
.x28_c00350{left:452.857624pt;}
.x47_c00350{left:456.556853pt;}
.x58_c00350{left:461.744987pt;}
.x89_c00350{left:463.907220pt;}
.x9_c00350{left:471.468000pt;}
.x4f_c00350{left:473.881573pt;}
.x1_c00350{left:476.400000pt;}
.x23_c00350{left:480.620880pt;}
.x10_c00350{left:484.473333pt;}
.x9b_c00350{left:485.434667pt;}
.x65_c00350{left:486.482667pt;}
.x50_c00350{left:489.394827pt;}
.xa0_c00350{left:490.981725pt;}
.x83_c00350{left:501.616000pt;}
.xa_c00350{left:507.664000pt;}
.x75_c00350{left:513.974667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m5b_c00351{transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013060,0.000000,0.000000,0.250000,0,0);}
.mf4_c00351{transform:matrix(0.027325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027325,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.067900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067900,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.m66_c00351{transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);}
.mae_c00351{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);}
.m7e_c00351{transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140485,0.000000,0.000000,0.250000,0,0);}
.mb8_c00351{transform:matrix(0.140783,0.001408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.140783,0.001408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.140783,0.001408,-0.002500,0.249988,0,0);}
.m3d_c00351{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);}
.m29_c00351{transform:matrix(0.146066,-0.001022,0.001750,0.249994,0,0);-ms-transform:matrix(0.146066,-0.001022,0.001750,0.249994,0,0);-webkit-transform:matrix(0.146066,-0.001022,0.001750,0.249994,0,0);}
.mb3_c00351{transform:matrix(0.146328,0.001463,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146328,0.001463,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146328,0.001463,-0.002500,0.249988,0,0);}
.m92_c00351{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);}
.m84_c00351{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);}
.m39_c00351{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);}
.mbd_c00351{transform:matrix(0.147388,0.001474,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147388,0.001474,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147388,0.001474,-0.002500,0.249988,0,0);}
.m3f_c00351{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);}
.m59_c00351{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);}
.m9d_c00351{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m23_c00351{transform:matrix(0.151151,-0.001058,0.001750,0.249994,0,0);-ms-transform:matrix(0.151151,-0.001058,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151151,-0.001058,0.001750,0.249994,0,0);}
.mc9_c00351{transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);}
.m65_c00351{transform:matrix(0.154280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154280,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.154596,-0.001082,0.001750,0.249994,0,0);-ms-transform:matrix(0.154596,-0.001082,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154596,-0.001082,0.001750,0.249994,0,0);}
.m87_c00351{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);}
.m99_c00351{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);}
.m60_c00351{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);}
.m63_c00351{transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155115,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.155646,-0.001090,0.001750,0.249994,0,0);-ms-transform:matrix(0.155646,-0.001090,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155646,-0.001090,0.001750,0.249994,0,0);}
.mca_c00351{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);}
.ma3_c00351{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);}
.m86_c00351{transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157015,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.157446,-0.001102,0.001750,0.249994,0,0);-ms-transform:matrix(0.157446,-0.001102,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157446,-0.001102,0.001750,0.249994,0,0);}
.mb2_c00351{transform:matrix(0.157587,0.001576,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157587,0.001576,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157587,0.001576,-0.002500,0.249988,0,0);}
.mbc_c00351{transform:matrix(0.157987,0.001580,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157987,0.001580,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157987,0.001580,-0.002500,0.249988,0,0);}
.m3e_c00351{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);}
.m95_c00351{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);}
.m91_c00351{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);}
.m81_c00351{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);}
.m8f_c00351{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);}
.m8e_c00351{transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00351{transform:matrix(0.162530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162530,0.000000,0.000000,0.250000,0,0);}
.m20_c00351{transform:matrix(0.162546,-0.001138,0.001750,0.249994,0,0);-ms-transform:matrix(0.162546,-0.001138,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162546,-0.001138,0.001750,0.249994,0,0);}
.m9b_c00351{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);}
.m22_c00351{transform:matrix(0.163216,-0.001143,0.001750,0.249994,0,0);-ms-transform:matrix(0.163216,-0.001143,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163216,-0.001143,0.001750,0.249994,0,0);}
.m53_c00351{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);}
.m42_c00351{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mce_c00351{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);}
.m26_c00351{transform:matrix(0.164176,-0.001149,0.001750,0.249994,0,0);-ms-transform:matrix(0.164176,-0.001149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164176,-0.001149,0.001750,0.249994,0,0);}
.m31_c00351{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);}
.mac_c00351{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);}
.m30_c00351{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);}
.m1b_c00351{transform:matrix(0.165311,-0.001157,0.001750,0.249994,0,0);-ms-transform:matrix(0.165311,-0.001157,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165311,-0.001157,0.001750,0.249994,0,0);}
.m9a_c00351{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);}
.ma8_c00351{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);}
.m85_c00351{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.mb0_c00351{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);}
.m2b_c00351{transform:matrix(0.166281,-0.001164,0.001750,0.249994,0,0);-ms-transform:matrix(0.166281,-0.001164,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166281,-0.001164,0.001750,0.249994,0,0);}
.m19_c00351{transform:matrix(0.166766,-0.001167,0.001750,0.249994,0,0);-ms-transform:matrix(0.166766,-0.001167,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166766,-0.001167,0.001750,0.249994,0,0);}
.m7b_c00351{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);}
.md4_c00351{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);}
.m8c_c00351{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);}
.m82_c00351{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);}
.m9c_c00351{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);}
.m37_c00351{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);}
.ma0_c00351{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_c00351{transform:matrix(0.168427,0.001684,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168427,0.001684,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168427,0.001684,-0.002500,0.249988,0,0);}
.m4d_c00351{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);}
.m35_c00351{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);}
.m6d_c00351{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);}
.maa_c00351{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);}
.m9f_c00351{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);}
.m16_c00351{transform:matrix(0.171011,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.171011,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171011,-0.001197,0.001750,0.249994,0,0);}
.ma5_c00351{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);}
.m98_c00351{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);}
.ma6_c00351{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);}
.m58_c00351{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);}
.mb9_c00351{transform:matrix(0.172226,0.001722,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172226,0.001722,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172226,0.001722,-0.002500,0.249988,0,0);}
.m24_c00351{transform:matrix(0.172341,-0.001206,0.001750,0.249994,0,0);-ms-transform:matrix(0.172341,-0.001206,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172341,-0.001206,0.001750,0.249994,0,0);}
.maf_c00351{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);}
.m54_c00351{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);}
.m3a_c00351{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);}
.m6c_c00351{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);}
.m8d_c00351{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);}
.m77_c00351{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);}
.m4a_c00351{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);}
.m32_c00351{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);}
.m44_c00351{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);}
.md2_c00351{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);}
.mc1_c00351{transform:matrix(0.175206,0.001752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175206,0.001752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175206,0.001752,-0.002500,0.249988,0,0);}
.m21_c00351{transform:matrix(0.175421,-0.001228,0.001750,0.249994,0,0);-ms-transform:matrix(0.175421,-0.001228,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175421,-0.001228,0.001750,0.249994,0,0);}
.m4b_c00351{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);}
.m5f_c00351{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);}
.m52_c00351{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.mcc_c00351{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);}
.m8a_c00351{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);}
.m72_c00351{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);}
.m69_c00351{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);}
.ma4_c00351{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);}
.m4f_c00351{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);}
.m40_c00351{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);}
.m7d_c00351{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);}
.m5a_c00351{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);}
.mbb_c00351{transform:matrix(0.178881,0.001789,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178881,0.001789,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178881,0.001789,-0.002500,0.249988,0,0);}
.mf1_c00351{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);}
.mcb_c00351{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);}
.m38_c00351{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);}
.m83_c00351{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);}
.m71_c00351{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);}
.m7a_c00351{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);}
.m79_c00351{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);}
.m27_c00351{transform:matrix(0.181311,-0.001269,0.001750,0.249994,0,0);-ms-transform:matrix(0.181311,-0.001269,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181311,-0.001269,0.001750,0.249994,0,0);}
.mcf_c00351{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);}
.me4_c00351{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);}
.m97_c00351{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);}
.md7_c00351{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);}
.m61_c00351{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);}
.m2_c00351{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);}
.m74_c00351{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);}
.m34_c00351{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.183526,-0.001285,0.001750,0.249994,0,0);-ms-transform:matrix(0.183526,-0.001285,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183526,-0.001285,0.001750,0.249994,0,0);}
.m96_c00351{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);}
.m13_c00351{transform:matrix(0.183835,-0.001287,0.001750,0.249994,0,0);-ms-transform:matrix(0.183835,-0.001287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183835,-0.001287,0.001750,0.249994,0,0);}
.md0_c00351{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);}
.m56_c00351{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);}
.m6a_c00351{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);}
.m2c_c00351{transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);-ms-transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184080,-0.001289,0.001750,0.249994,0,0);}
.md1_c00351{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);}
.me8_c00351{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);}
.mc8_c00351{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);}
.me7_c00351{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);}
.m15_c00351{transform:matrix(0.185875,-0.001301,0.001750,0.249994,0,0);-ms-transform:matrix(0.185875,-0.001301,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185875,-0.001301,0.001750,0.249994,0,0);}
.mfc_c00351{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);}
.mf7_c00351{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);}
.m100_c00351{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);}
.m5e_c00351{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);}
.m43_c00351{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);}
.me9_c00351{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);}
.m10_c00351{transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188415,-0.001319,0.001750,0.249994,0,0);}
.m5d_c00351{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);}
.m48_c00351{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);}
.mb4_c00351{transform:matrix(0.189131,0.001891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189131,0.001891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189131,0.001891,-0.002500,0.249988,0,0);}
.m6f_c00351{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);}
.mba_c00351{transform:matrix(0.189546,0.001895,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189546,0.001895,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189546,0.001895,-0.002500,0.249988,0,0);}
.m33_c00351{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);}
.m6b_c00351{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);}
.m7c_c00351{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);}
.m67_c00351{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);}
.mb5_c00351{transform:matrix(0.190445,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190445,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190445,0.001904,-0.002500,0.249988,0,0);}
.me5_c00351{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);}
.m25_c00351{transform:matrix(0.190955,-0.001337,0.001750,0.249994,0,0);-ms-transform:matrix(0.190955,-0.001337,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190955,-0.001337,0.001750,0.249994,0,0);}
.m64_c00351{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);}
.md9_c00351{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);}
.mf3_c00351{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);}
.m3b_c00351{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);}
.mb1_c00351{transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);}
.m1f_c00351{transform:matrix(0.191815,-0.001343,0.001750,0.249994,0,0);-ms-transform:matrix(0.191815,-0.001343,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191815,-0.001343,0.001750,0.249994,0,0);}
.mc3_c00351{transform:matrix(0.192260,0.001923,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192260,0.001923,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192260,0.001923,-0.002500,0.249988,0,0);}
.mcd_c00351{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);}
.m46_c00351{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);}
.m55_c00351{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);}
.me2_c00351{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);}
.m7f_c00351{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);}
.mad_c00351{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);}
.m70_c00351{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);}
.m4e_c00351{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);}
.m62_c00351{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);}
.m49_c00351{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);}
.m47_c00351{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);}
.m36_c00351{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);}
.m93_c00351{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);}
.m2f_c00351{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);}
.md3_c00351{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);}
.m78_c00351{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);}
.m9e_c00351{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);}
.mdf_c00351{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);}
.mb7_c00351{transform:matrix(0.199450,0.001995,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199450,0.001995,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199450,0.001995,-0.002500,0.249988,0,0);}
.m4c_c00351{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);}
.me6_c00351{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);}
.m1c_c00351{transform:matrix(0.200120,-0.001401,0.001750,0.249994,0,0);-ms-transform:matrix(0.200120,-0.001401,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200120,-0.001401,0.001750,0.249994,0,0);}
.ma1_c00351{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);}
.m90_c00351{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);}
.m12_c00351{transform:matrix(0.202330,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202330,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202330,-0.001416,0.001750,0.249994,0,0);}
.med_c00351{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);}
.mea_c00351{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);}
.mf9_c00351{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);}
.mfa_c00351{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);}
.mab_c00351{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);}
.m1a_c00351{transform:matrix(0.206825,-0.001448,0.001750,0.249994,0,0);-ms-transform:matrix(0.206825,-0.001448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206825,-0.001448,0.001750,0.249994,0,0);}
.ma7_c00351{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);}
.m14_c00351{transform:matrix(0.207070,-0.001449,0.001750,0.249994,0,0);-ms-transform:matrix(0.207070,-0.001449,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207070,-0.001449,0.001750,0.249994,0,0);}
.m45_c00351{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);}
.m75_c00351{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);}
.m4_c00351{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);}
.m57_c00351{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);}
.md5_c00351{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);}
.mda_c00351{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);}
.meb_c00351{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);}
.mdc_c00351{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);}
.m89_c00351{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);}
.me1_c00351{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);}
.mef_c00351{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);}
.m8b_c00351{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);}
.me0_c00351{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);}
.md6_c00351{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);}
.ma9_c00351{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);}
.mf8_c00351{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);}
.m18_c00351{transform:matrix(0.216830,-0.001518,0.001750,0.249994,0,0);-ms-transform:matrix(0.216830,-0.001518,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216830,-0.001518,0.001750,0.249994,0,0);}
.mc2_c00351{transform:matrix(0.217884,0.002179,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217884,0.002179,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217884,0.002179,-0.002500,0.249988,0,0);}
.m50_c00351{transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217895,0.000000,0.000000,0.250000,0,0);}
.mf6_c00351{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);}
.mf2_c00351{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);}
.mc0_c00351{transform:matrix(0.223279,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223279,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223279,0.002233,-0.002500,0.249988,0,0);}
.m76_c00351{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);}
.mb6_c00351{transform:matrix(0.225409,0.002254,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225409,0.002254,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225409,0.002254,-0.002500,0.249988,0,0);}
.m1e_c00351{transform:matrix(0.225649,-0.001580,0.001750,0.249994,0,0);-ms-transform:matrix(0.225649,-0.001580,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225649,-0.001580,0.001750,0.249994,0,0);}
.mf0_c00351{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);}
.mfb_c00351{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);}
.m68_c00351{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);}
.mfe_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);}
.ma2_c00351{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);}
.m0_c00351{transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);}
.me3_c00351{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);}
.mc4_c00351{transform:matrix(0.238803,0.002388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238803,0.002388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238803,0.002388,-0.002500,0.249988,0,0);}
.mff_c00351{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);}
.mdb_c00351{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);}
.mdd_c00351{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);}
.mbf_c00351{transform:matrix(0.245298,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245298,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245298,0.002453,-0.002500,0.249988,0,0);}
.md8_c00351{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);}
.m107_c00351{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);}
.m5c_c00351{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m94_c00351{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);}
.m73_c00351{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);}
.mee_c00351{transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.255974,-0.001792,0.001750,0.249994,0,0);-ms-transform:matrix(0.255974,-0.001792,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255974,-0.001792,0.001750,0.249994,0,0);}
.m80_c00351{transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);}
.mf5_c00351{transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257705,0.000000,0.000000,0.250000,0,0);}
.m106_c00351{transform:matrix(0.257710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257710,0.000000,0.000000,0.250000,0,0);}
.m88_c00351{transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00351{transform:matrix(0.271496,0.002715,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271496,0.002715,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271496,0.002715,-0.002500,0.249988,0,0);}
.m51_c00351{transform:matrix(0.277870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277870,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.294193,-0.002059,0.001750,0.249994,0,0);-ms-transform:matrix(0.294193,-0.002059,0.001750,0.249994,0,0);-webkit-transform:matrix(0.294193,-0.002059,0.001750,0.249994,0,0);}
.m103_c00351{transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301920,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307575,0.000000,0.000000,0.250000,0,0);}
.mc7_c00351{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);}
.m102_c00351{transform:matrix(0.312140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312140,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.319544,-0.003195,0.002500,0.249988,0,0);-ms-transform:matrix(0.319544,-0.003195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.319544,-0.003195,0.002500,0.249988,0,0);}
.m105_c00351{transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337545,0.000000,0.000000,0.250000,0,0);}
.mec_c00351{transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);}
.mde_c00351{transform:matrix(0.381620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381620,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.404725,-0.004047,0.002500,0.249988,0,0);-ms-transform:matrix(0.404725,-0.004047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.404725,-0.004047,0.002500,0.249988,0,0);}
.m1_c00351{transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.415690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415690,0.000000,0.000000,0.250000,0,0);}
.m109_c00351{transform:matrix(0.453350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453350,0.000000,0.000000,0.250000,0,0);}
.mfd_c00351{transform:matrix(0.469525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469525,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.491230,-0.004912,0.002500,0.249988,0,0);-ms-transform:matrix(0.491230,-0.004912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.491230,-0.004912,0.002500,0.249988,0,0);}
.m6_c00351{transform:matrix(0.626460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626460,0.000000,0.000000,0.250000,0,0);}
.mc6_c00351{transform:matrix(0.634190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634190,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.686635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686635,0.000000,0.000000,0.250000,0,0);}
.m104_c00351{transform:matrix(0.700880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700880,0.000000,0.000000,0.250000,0,0);}
.m108_c00351{transform:matrix(0.702635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702635,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.727055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727055,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.754855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754855,0.000000,0.000000,0.250000,0,0);}
.m101_c00351{transform:matrix(0.826235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.826235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.826235,0.000000,0.000000,0.250000,0,0);}
.m10a_c00351{transform:matrix(1.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.245310,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;}
.fs13_c00351{font-size:46.200000px;}
.fs14_c00351{font-size:48.300000px;}
.fs1_c00351{font-size:50.400000px;}
.fs15_c00351{font-size:51.450000px;}
.fs11_c00351{font-size:59.852992px;}
.fs3_c00351{font-size:60.900000px;}
.fsf_c00351{font-size:66.150000px;}
.fs12_c00351{font-size:67.200000px;}
.fs6_c00351{font-size:67.201646px;}
.fsb_c00351{font-size:68.250000px;}
.fse_c00351{font-size:69.300000px;}
.fs2_c00351{font-size:70.350000px;}
.fs7_c00351{font-size:70.351724px;}
.fs9_c00351{font-size:71.400000px;}
.fs8_c00351{font-size:72.451775px;}
.fsc_c00351{font-size:73.500000px;}
.fsa_c00351{font-size:74.550000px;}
.fs10_c00351{font-size:74.553727px;}
.fsd_c00351{font-size:75.600000px;}
.fs17_c00351{font-size:76.650000px;}
.fs4_c00351{font-size:80.850000px;}
.fs16_c00351{font-size:88.200000px;}
.fs0_c00351{font-size:114.450000px;}
.fs5_c00351{font-size:118.655932px;}
.y0_c00351{bottom:0.000000px;}
.y60_c00351{bottom:72.357000px;}
.y5f_c00351{bottom:87.216000px;}
.y5e_c00351{bottom:131.716500px;}
.y5d_c00351{bottom:131.877000px;}
.y5c_c00351{bottom:132.268500px;}
.y5b_c00351{bottom:132.558000px;}
.y5a_c00351{bottom:132.754500px;}
.y59_c00351{bottom:133.311000px;}
.y58_c00351{bottom:133.491000px;}
.y57_c00351{bottom:133.671000px;}
.y56_c00351{bottom:134.169000px;}
.y55_c00351{bottom:134.638500px;}
.y54_c00351{bottom:134.896500px;}
.y53_c00351{bottom:135.027000px;}
.y52_c00351{bottom:135.435000px;}
.y51_c00351{bottom:135.811500px;}
.y50_c00351{bottom:152.041500px;}
.y4f_c00351{bottom:169.978500px;}
.y4e_c00351{bottom:220.510500px;}
.y4d_c00351{bottom:247.156500px;}
.y4c_c00351{bottom:289.411500px;}
.y4b_c00351{bottom:332.648505px;}
.y4a_c00351{bottom:333.296415px;}
.y49_c00351{bottom:333.655665px;}
.y48_c00351{bottom:333.922440px;}
.y47_c00351{bottom:334.222665px;}
.y46_c00351{bottom:334.751400px;}
.y45_c00351{bottom:335.013750px;}
.y44_c00351{bottom:335.340405px;}
.y43_c00351{bottom:354.124770px;}
.y42_c00351{bottom:354.349320px;}
.y41_c00351{bottom:354.762480px;}
.y40_c00351{bottom:355.402485px;}
.y3f_c00351{bottom:355.834410px;}
.y3e_c00351{bottom:356.212290px;}
.y3d_c00351{bottom:356.398740px;}
.y3c_c00351{bottom:356.660625px;}
.y3b_c00351{bottom:357.316860px;}
.y3a_c00351{bottom:357.651555px;}
.y39_c00351{bottom:357.913530px;}
.y38_c00351{bottom:358.277580px;}
.y37_c00351{bottom:358.561500px;}
.y36_c00351{bottom:385.630500px;}
.y35_c00351{bottom:413.088000px;}
.y34_c00351{bottom:434.337000px;}
.y33_c00351{bottom:457.576500px;}
.y32_c00351{bottom:485.122500px;}
.y31_c00351{bottom:513.634500px;}
.y30_c00351{bottom:535.863000px;}
.y2f_c00351{bottom:559.263000px;}
.y2e_c00351{bottom:582.277500px;}
.y2d_c00351{bottom:609.930000px;}
.y2c_c00351{bottom:636.469500px;}
.y2b_c00351{bottom:660.661500px;}
.y2a_c00351{bottom:683.610000px;}
.y29_c00351{bottom:706.279500px;}
.y28_c00351{bottom:733.590000px;}
.y26_c00351{bottom:760.264221px;}
.y25_c00351{bottom:760.264621px;}
.y23_c00351{bottom:760.264662px;}
.y27_c00351{bottom:760.264750px;}
.y24_c00351{bottom:760.264872px;}
.y22_c00351{bottom:760.264992px;}
.y1e_c00351{bottom:784.185686px;}
.y21_c00351{bottom:784.185804px;}
.y1f_c00351{bottom:784.185825px;}
.y20_c00351{bottom:784.186115px;}
.y1d_c00351{bottom:784.186376px;}
.y1c_c00351{bottom:784.186796px;}
.y19_c00351{bottom:784.186907px;}
.y15_c00351{bottom:784.187048px;}
.y18_c00351{bottom:784.187067px;}
.y1a_c00351{bottom:784.187117px;}
.y1b_c00351{bottom:784.187226px;}
.y17_c00351{bottom:784.187367px;}
.y16_c00351{bottom:784.187457px;}
.y9_c00351{bottom:805.680000px;}
.ya_c00351{bottom:805.940579px;}
.yb_c00351{bottom:806.333951px;}
.yc_c00351{bottom:806.579483px;}
.yd_c00351{bottom:806.887741px;}
.ye_c00351{bottom:807.118311px;}
.yf_c00351{bottom:807.505782px;}
.y10_c00351{bottom:807.961219px;}
.y11_c00351{bottom:808.129451px;}
.y12_c00351{bottom:808.594422px;}
.y13_c00351{bottom:808.830662px;}
.y14_c00351{bottom:808.940261px;}
.y6_c00351{bottom:847.261500px;}
.y7_c00351{bottom:848.186415px;}
.y8_c00351{bottom:849.233100px;}
.y5_c00351{bottom:850.770000px;}
.y2_c00351{bottom:895.320000px;}
.y1_c00351{bottom:902.340000px;}
.y3_c00351{bottom:908.794500px;}
.y4_c00351{bottom:911.265000px;}
.h15_c00351{height:46.200000px;}
.h16_c00351{height:48.300000px;}
.h3_c00351{height:50.400000px;}
.h17_c00351{height:51.450000px;}
.h13_c00351{height:59.852992px;}
.h5_c00351{height:60.900000px;}
.h11_c00351{height:66.150000px;}
.h14_c00351{height:67.200000px;}
.h8_c00351{height:67.201646px;}
.hd_c00351{height:68.250000px;}
.h10_c00351{height:69.300000px;}
.h4_c00351{height:70.350000px;}
.h9_c00351{height:70.351724px;}
.hb_c00351{height:71.400000px;}
.ha_c00351{height:72.451775px;}
.he_c00351{height:73.500000px;}
.hc_c00351{height:74.550000px;}
.h12_c00351{height:74.553727px;}
.hf_c00351{height:75.600000px;}
.h19_c00351{height:76.650000px;}
.h6_c00351{height:80.850000px;}
.h18_c00351{height:88.200000px;}
.h2_c00351{height:114.450000px;}
.h7_c00351{height:118.655932px;}
.h0_c00351{height:1008.450000px;}
.h1_c00351{height:1008.750000px;}
.w0_c00351{width:696.000000px;}
.x0_c00351{left:0.000000px;}
.x5_c00351{left:108.810000px;}
.xa5_c00351{left:129.600000px;}
.xa1_c00351{left:134.730000px;}
.x1_c00351{left:146.340000px;}
.x43_c00351{left:154.170000px;}
.xe_c00351{left:155.379000px;}
.x3c_c00351{left:156.600000px;}
.x11_c00351{left:157.774500px;}
.x6_c00351{left:164.970000px;}
.x3_c00351{left:168.210000px;}
.x96_c00351{left:170.100000px;}
.x8f_c00351{left:171.990000px;}
.x50_c00351{left:174.690000px;}
.x33_c00351{left:176.310000px;}
.x76_c00351{left:180.090000px;}
.x59_c00351{left:182.250000px;}
.x2_c00351{left:184.680000px;}
.x27_c00351{left:185.759763px;}
.xa2_c00351{left:187.920000px;}
.x61_c00351{left:189.270000px;}
.x44_c00351{left:191.700000px;}
.x2b_c00351{left:193.050000px;}
.x12_c00351{left:195.000000px;}
.x9d_c00351{left:199.437000px;}
.x51_c00351{left:202.500000px;}
.x9b_c00351{left:204.390000px;}
.x28_c00351{left:209.790939px;}
.x7_c00351{left:210.870000px;}
.x86_c00351{left:212.131260px;}
.x62_c00351{left:214.920000px;}
.x6b_c00351{left:217.890000px;}
.x34_c00351{left:224.910000px;}
.x77_c00351{left:225.990000px;}
.x7c_c00351{left:229.770000px;}
.x2c_c00351{left:232.200000px;}
.x1d_c00351{left:233.279640px;}
.x9c_c00351{left:234.900000px;}
.x6f_c00351{left:237.330000px;}
.x52_c00351{left:238.410000px;}
.xa3_c00351{left:242.460000px;}
.x5a_c00351{left:244.080000px;}
.xf_c00351{left:247.870500px;}
.x90_c00351{left:249.480000px;}
.x13_c00351{left:251.196000px;}
.x63_c00351{left:254.070000px;}
.x45_c00351{left:255.420000px;}
.x29_c00351{left:259.471875px;}
.x4c_c00351{left:263.250000px;}
.x69_c00351{left:264.870000px;}
.x4b_c00351{left:270.810000px;}
.x1e_c00351{left:273.511614px;}
.x78_c00351{left:276.750000px;}
.xa6_c00351{left:278.100000px;}
.x91_c00351{left:280.260000px;}
.x5b_c00351{left:282.960000px;}
.x14_c00351{left:286.272000px;}
.x9e_c00351{left:288.009000px;}
.x6a_c00351{left:289.170000px;}
.x2d_c00351{left:292.410000px;}
.x87_c00351{left:295.027260px;}
.xa4_c00351{left:296.730000px;}
.x7f_c00351{left:298.219500px;}
.x2a_c00351{left:299.702349px;}
.x8a_c00351{left:300.780000px;}
.x4_c00351{left:302.670000px;}
.x97_c00351{left:304.290000px;}
.x8_c00351{left:306.990000px;}
.x7d_c00351{left:309.690000px;}
.x2e_c00351{left:313.470000px;}
.x1f_c00351{left:318.062298px;}
.x88_c00351{left:321.704760px;}
.x64_c00351{left:324.540000px;}
.x70_c00351{left:328.050000px;}
.x15_c00351{left:330.309000px;}
.x53_c00351{left:332.640000px;}
.x79_c00351{left:336.150000px;}
.x5c_c00351{left:338.040000px;}
.x35_c00351{left:340.470000px;}
.x20_c00351{left:342.093474px;}
.x71_c00351{left:349.380000px;}
.x92_c00351{left:351.270000px;}
.x10_c00351{left:352.539000px;}
.x89_c00351{left:357.629760px;}
.x2f_c00351{left:358.830000px;}
.x16_c00351{left:363.247500px;}
.xa7_c00351{left:365.040000px;}
.x93_c00351{left:368.280000px;}
.x36_c00351{left:369.360000px;}
.x4d_c00351{left:376.380000px;}
.x30_c00351{left:380.160000px;}
.x3d_c00351{left:389.340000px;}
.x7a_c00351{left:390.690000px;}
.x46_c00351{left:391.770000px;}
.x6c_c00351{left:395.280000px;}
.x65_c00351{left:396.900000px;}
.x21_c00351{left:398.254725px;}
.x4e_c00351{left:399.600000px;}
.x5d_c00351{left:406.080000px;}
.x80_c00351{left:408.676500px;}
.x47_c00351{left:414.180000px;}
.x72_c00351{left:415.530000px;}
.x17_c00351{left:418.600500px;}
.x66_c00351{left:420.660000px;}
.x9_c00351{left:422.280000px;}
.x7e_c00351{left:425.250000px;}
.x54_c00351{left:428.490000px;}
.x37_c00351{left:432.540000px;}
.x67_c00351{left:436.050000px;}
.x38_c00351{left:444.420000px;}
.x81_c00351{left:446.464500px;}
.x31_c00351{left:448.470000px;}
.x3e_c00351{left:450.090000px;}
.x55_c00351{left:451.440000px;}
.x6d_c00351{left:454.950000px;}
.x8b_c00351{left:456.570000px;}
.x22_c00351{left:458.196165px;}
.xd_c00351{left:460.350000px;}
.x73_c00351{left:464.130000px;}
.x4f_c00351{left:471.960000px;}
.x32_c00351{left:473.850000px;}
.x8c_c00351{left:475.470000px;}
.x23_c00351{left:477.637121px;}
.x3f_c00351{left:480.060000px;}
.x18_c00351{left:483.663000px;}
.x56_c00351{left:484.920000px;}
.x82_c00351{left:489.657000px;}
.x5e_c00351{left:493.290000px;}
.x48_c00351{left:494.910000px;}
.xa_c00351{left:497.340000px;}
.x24_c00351{left:498.968171px;}
.x94_c00351{left:500.310000px;}
.x74_c00351{left:502.740000px;}
.x19_c00351{left:507.696000px;}
.x68_c00351{left:511.650000px;}
.x8d_c00351{left:514.890000px;}
.x95_c00351{left:518.670000px;}
.x39_c00351{left:526.230000px;}
.x75_c00351{left:532.440000px;}
.xa8_c00351{left:533.520000px;}
.x25_c00351{left:535.418456px;}
.x8e_c00351{left:538.650000px;}
.x5f_c00351{left:539.730000px;}
.x6e_c00351{left:541.620000px;}
.x57_c00351{left:546.480000px;}
.x9f_c00351{left:551.256000px;}
.x40_c00351{left:552.420000px;}
.x83_c00351{left:553.657500px;}
.x98_c00351{left:561.870000px;}
.x49_c00351{left:564.570000px;}
.x60_c00351{left:567.270000px;}
.xb_c00351{left:568.350000px;}
.x3a_c00351{left:569.700000px;}
.x1a_c00351{left:574.120500px;}
.x7b_c00351{left:578.070000px;}
.x3b_c00351{left:583.740000px;}
.x41_c00351{left:586.710000px;}
.x58_c00351{left:591.570000px;}
.x84_c00351{left:594.973500px;}
.x99_c00351{left:598.860000px;}
.x26_c00351{left:602.918763px;}
.x1b_c00351{left:607.869000px;}
.xc_c00351{left:609.390000px;}
.xa0_c00351{left:612.550500px;}
.x42_c00351{left:614.790000px;}
.x85_c00351{left:617.428500px;}
.x4a_c00351{left:620.190000px;}
.x9a_c00351{left:621.810000px;}
.x1c_c00351{left:623.526000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.fs13_c00351{font-size:41.066667pt;}
.fs14_c00351{font-size:42.933333pt;}
.fs1_c00351{font-size:44.800000pt;}
.fs15_c00351{font-size:45.733333pt;}
.fs11_c00351{font-size:53.202660pt;}
.fs3_c00351{font-size:54.133333pt;}
.fsf_c00351{font-size:58.800000pt;}
.fs12_c00351{font-size:59.733333pt;}
.fs6_c00351{font-size:59.734797pt;}
.fsb_c00351{font-size:60.666667pt;}
.fse_c00351{font-size:61.600000pt;}
.fs2_c00351{font-size:62.533333pt;}
.fs7_c00351{font-size:62.534865pt;}
.fs9_c00351{font-size:63.466667pt;}
.fs8_c00351{font-size:64.401578pt;}
.fsc_c00351{font-size:65.333333pt;}
.fsa_c00351{font-size:66.266667pt;}
.fs10_c00351{font-size:66.269980pt;}
.fsd_c00351{font-size:67.200000pt;}
.fs17_c00351{font-size:68.133333pt;}
.fs4_c00351{font-size:71.866667pt;}
.fs16_c00351{font-size:78.400000pt;}
.fs0_c00351{font-size:101.733333pt;}
.fs5_c00351{font-size:105.471940pt;}
.y0_c00351{bottom:0.000000pt;}
.y60_c00351{bottom:64.317333pt;}
.y5f_c00351{bottom:77.525333pt;}
.y5e_c00351{bottom:117.081333pt;}
.y5d_c00351{bottom:117.224000pt;}
.y5c_c00351{bottom:117.572000pt;}
.y5b_c00351{bottom:117.829333pt;}
.y5a_c00351{bottom:118.004000pt;}
.y59_c00351{bottom:118.498667pt;}
.y58_c00351{bottom:118.658667pt;}
.y57_c00351{bottom:118.818667pt;}
.y56_c00351{bottom:119.261333pt;}
.y55_c00351{bottom:119.678667pt;}
.y54_c00351{bottom:119.908000pt;}
.y53_c00351{bottom:120.024000pt;}
.y52_c00351{bottom:120.386667pt;}
.y51_c00351{bottom:120.721333pt;}
.y50_c00351{bottom:135.148000pt;}
.y4f_c00351{bottom:151.092000pt;}
.y4e_c00351{bottom:196.009333pt;}
.y4d_c00351{bottom:219.694667pt;}
.y4c_c00351{bottom:257.254667pt;}
.y4b_c00351{bottom:295.687560pt;}
.y4a_c00351{bottom:296.263480pt;}
.y49_c00351{bottom:296.582813pt;}
.y48_c00351{bottom:296.819947pt;}
.y47_c00351{bottom:297.086813pt;}
.y46_c00351{bottom:297.556800pt;}
.y45_c00351{bottom:297.790000pt;}
.y44_c00351{bottom:298.080360pt;}
.y43_c00351{bottom:314.777573pt;}
.y42_c00351{bottom:314.977173pt;}
.y41_c00351{bottom:315.344427pt;}
.y40_c00351{bottom:315.913320pt;}
.y3f_c00351{bottom:316.297253pt;}
.y3e_c00351{bottom:316.633147pt;}
.y3d_c00351{bottom:316.798880pt;}
.y3c_c00351{bottom:317.031667pt;}
.y3b_c00351{bottom:317.614987pt;}
.y3a_c00351{bottom:317.912493pt;}
.y39_c00351{bottom:318.145360pt;}
.y38_c00351{bottom:318.468960pt;}
.y37_c00351{bottom:318.721333pt;}
.y36_c00351{bottom:342.782667pt;}
.y35_c00351{bottom:367.189333pt;}
.y34_c00351{bottom:386.077333pt;}
.y33_c00351{bottom:406.734667pt;}
.y32_c00351{bottom:431.220000pt;}
.y31_c00351{bottom:456.564000pt;}
.y30_c00351{bottom:476.322667pt;}
.y2f_c00351{bottom:497.122667pt;}
.y2e_c00351{bottom:517.580000pt;}
.y2d_c00351{bottom:542.160000pt;}
.y2c_c00351{bottom:565.750667pt;}
.y2b_c00351{bottom:587.254667pt;}
.y2a_c00351{bottom:607.653333pt;}
.y29_c00351{bottom:627.804000pt;}
.y28_c00351{bottom:652.080000pt;}
.y26_c00351{bottom:675.790419pt;}
.y25_c00351{bottom:675.790775pt;}
.y23_c00351{bottom:675.790811pt;}
.y27_c00351{bottom:675.790889pt;}
.y24_c00351{bottom:675.790997pt;}
.y22_c00351{bottom:675.791104pt;}
.y1e_c00351{bottom:697.053943pt;}
.y21_c00351{bottom:697.054048pt;}
.y1f_c00351{bottom:697.054067pt;}
.y20_c00351{bottom:697.054324pt;}
.y1d_c00351{bottom:697.054556pt;}
.y1c_c00351{bottom:697.054929pt;}
.y19_c00351{bottom:697.055028pt;}
.y15_c00351{bottom:697.055153pt;}
.y18_c00351{bottom:697.055171pt;}
.y1a_c00351{bottom:697.055215pt;}
.y1b_c00351{bottom:697.055312pt;}
.y17_c00351{bottom:697.055437pt;}
.y16_c00351{bottom:697.055517pt;}
.y9_c00351{bottom:716.160000pt;}
.ya_c00351{bottom:716.391625pt;}
.yb_c00351{bottom:716.741289pt;}
.yc_c00351{bottom:716.959540pt;}
.yd_c00351{bottom:717.233548pt;}
.ye_c00351{bottom:717.438499pt;}
.yf_c00351{bottom:717.782917pt;}
.y10_c00351{bottom:718.187751pt;}
.y11_c00351{bottom:718.337289pt;}
.y12_c00351{bottom:718.750597pt;}
.y13_c00351{bottom:718.960588pt;}
.y14_c00351{bottom:719.058009pt;}
.y6_c00351{bottom:753.121333pt;}
.y7_c00351{bottom:753.943480pt;}
.y8_c00351{bottom:754.873867pt;}
.y5_c00351{bottom:756.240000pt;}
.y2_c00351{bottom:795.840000pt;}
.y1_c00351{bottom:802.080000pt;}
.y3_c00351{bottom:807.817333pt;}
.y4_c00351{bottom:810.013333pt;}
.h15_c00351{height:41.066667pt;}
.h16_c00351{height:42.933333pt;}
.h3_c00351{height:44.800000pt;}
.h17_c00351{height:45.733333pt;}
.h13_c00351{height:53.202660pt;}
.h5_c00351{height:54.133333pt;}
.h11_c00351{height:58.800000pt;}
.h14_c00351{height:59.733333pt;}
.h8_c00351{height:59.734797pt;}
.hd_c00351{height:60.666667pt;}
.h10_c00351{height:61.600000pt;}
.h4_c00351{height:62.533333pt;}
.h9_c00351{height:62.534865pt;}
.hb_c00351{height:63.466667pt;}
.ha_c00351{height:64.401578pt;}
.he_c00351{height:65.333333pt;}
.hc_c00351{height:66.266667pt;}
.h12_c00351{height:66.269980pt;}
.hf_c00351{height:67.200000pt;}
.h19_c00351{height:68.133333pt;}
.h6_c00351{height:71.866667pt;}
.h18_c00351{height:78.400000pt;}
.h2_c00351{height:101.733333pt;}
.h7_c00351{height:105.471940pt;}
.h0_c00351{height:896.400000pt;}
.h1_c00351{height:896.666667pt;}
.w0_c00351{width:618.666667pt;}
.x0_c00351{left:0.000000pt;}
.x5_c00351{left:96.720000pt;}
.xa5_c00351{left:115.200000pt;}
.xa1_c00351{left:119.760000pt;}
.x1_c00351{left:130.080000pt;}
.x43_c00351{left:137.040000pt;}
.xe_c00351{left:138.114667pt;}
.x3c_c00351{left:139.200000pt;}
.x11_c00351{left:140.244000pt;}
.x6_c00351{left:146.640000pt;}
.x3_c00351{left:149.520000pt;}
.x96_c00351{left:151.200000pt;}
.x8f_c00351{left:152.880000pt;}
.x50_c00351{left:155.280000pt;}
.x33_c00351{left:156.720000pt;}
.x76_c00351{left:160.080000pt;}
.x59_c00351{left:162.000000pt;}
.x2_c00351{left:164.160000pt;}
.x27_c00351{left:165.119789pt;}
.xa2_c00351{left:167.040000pt;}
.x61_c00351{left:168.240000pt;}
.x44_c00351{left:170.400000pt;}
.x2b_c00351{left:171.600000pt;}
.x12_c00351{left:173.333333pt;}
.x9d_c00351{left:177.277333pt;}
.x51_c00351{left:180.000000pt;}
.x9b_c00351{left:181.680000pt;}
.x28_c00351{left:186.480835pt;}
.x7_c00351{left:187.440000pt;}
.x86_c00351{left:188.561120pt;}
.x62_c00351{left:191.040000pt;}
.x6b_c00351{left:193.680000pt;}
.x34_c00351{left:199.920000pt;}
.x77_c00351{left:200.880000pt;}
.x7c_c00351{left:204.240000pt;}
.x2c_c00351{left:206.400000pt;}
.x1d_c00351{left:207.359680pt;}
.x9c_c00351{left:208.800000pt;}
.x6f_c00351{left:210.960000pt;}
.x52_c00351{left:211.920000pt;}
.xa3_c00351{left:215.520000pt;}
.x5a_c00351{left:216.960000pt;}
.xf_c00351{left:220.329333pt;}
.x90_c00351{left:221.760000pt;}
.x13_c00351{left:223.285333pt;}
.x63_c00351{left:225.840000pt;}
.x45_c00351{left:227.040000pt;}
.x29_c00351{left:230.641667pt;}
.x4c_c00351{left:234.000000pt;}
.x69_c00351{left:235.440000pt;}
.x4b_c00351{left:240.720000pt;}
.x1e_c00351{left:243.121435pt;}
.x78_c00351{left:246.000000pt;}
.xa6_c00351{left:247.200000pt;}
.x91_c00351{left:249.120000pt;}
.x5b_c00351{left:251.520000pt;}
.x14_c00351{left:254.464000pt;}
.x9e_c00351{left:256.008000pt;}
.x6a_c00351{left:257.040000pt;}
.x2d_c00351{left:259.920000pt;}
.x87_c00351{left:262.246453pt;}
.xa4_c00351{left:263.760000pt;}
.x7f_c00351{left:265.084000pt;}
.x2a_c00351{left:266.402088pt;}
.x8a_c00351{left:267.360000pt;}
.x4_c00351{left:269.040000pt;}
.x97_c00351{left:270.480000pt;}
.x8_c00351{left:272.880000pt;}
.x7d_c00351{left:275.280000pt;}
.x2e_c00351{left:278.640000pt;}
.x1f_c00351{left:282.722043pt;}
.x88_c00351{left:285.959787pt;}
.x64_c00351{left:288.480000pt;}
.x70_c00351{left:291.600000pt;}
.x15_c00351{left:293.608000pt;}
.x53_c00351{left:295.680000pt;}
.x79_c00351{left:298.800000pt;}
.x5c_c00351{left:300.480000pt;}
.x35_c00351{left:302.640000pt;}
.x20_c00351{left:304.083088pt;}
.x71_c00351{left:310.560000pt;}
.x92_c00351{left:312.240000pt;}
.x10_c00351{left:313.368000pt;}
.x89_c00351{left:317.893120pt;}
.x2f_c00351{left:318.960000pt;}
.x16_c00351{left:322.886667pt;}
.xa7_c00351{left:324.480000pt;}
.x93_c00351{left:327.360000pt;}
.x36_c00351{left:328.320000pt;}
.x4d_c00351{left:334.560000pt;}
.x30_c00351{left:337.920000pt;}
.x3d_c00351{left:346.080000pt;}
.x7a_c00351{left:347.280000pt;}
.x46_c00351{left:348.240000pt;}
.x6c_c00351{left:351.360000pt;}
.x65_c00351{left:352.800000pt;}
.x21_c00351{left:354.004200pt;}
.x4e_c00351{left:355.200000pt;}
.x5d_c00351{left:360.960000pt;}
.x80_c00351{left:363.268000pt;}
.x47_c00351{left:368.160000pt;}
.x72_c00351{left:369.360000pt;}
.x17_c00351{left:372.089333pt;}
.x66_c00351{left:373.920000pt;}
.x9_c00351{left:375.360000pt;}
.x7e_c00351{left:378.000000pt;}
.x54_c00351{left:380.880000pt;}
.x37_c00351{left:384.480000pt;}
.x67_c00351{left:387.600000pt;}
.x38_c00351{left:395.040000pt;}
.x81_c00351{left:396.857333pt;}
.x31_c00351{left:398.640000pt;}
.x3e_c00351{left:400.080000pt;}
.x55_c00351{left:401.280000pt;}
.x6d_c00351{left:404.400000pt;}
.x8b_c00351{left:405.840000pt;}
.x22_c00351{left:407.285480pt;}
.xd_c00351{left:409.200000pt;}
.x73_c00351{left:412.560000pt;}
.x4f_c00351{left:419.520000pt;}
.x32_c00351{left:421.200000pt;}
.x8c_c00351{left:422.640000pt;}
.x23_c00351{left:424.566329pt;}
.x3f_c00351{left:426.720000pt;}
.x18_c00351{left:429.922667pt;}
.x56_c00351{left:431.040000pt;}
.x82_c00351{left:435.250667pt;}
.x5e_c00351{left:438.480000pt;}
.x48_c00351{left:439.920000pt;}
.xa_c00351{left:442.080000pt;}
.x24_c00351{left:443.527263pt;}
.x94_c00351{left:444.720000pt;}
.x74_c00351{left:446.880000pt;}
.x19_c00351{left:451.285333pt;}
.x68_c00351{left:454.800000pt;}
.x8d_c00351{left:457.680000pt;}
.x95_c00351{left:461.040000pt;}
.x39_c00351{left:467.760000pt;}
.x75_c00351{left:473.280000pt;}
.xa8_c00351{left:474.240000pt;}
.x25_c00351{left:475.927516pt;}
.x8e_c00351{left:478.800000pt;}
.x5f_c00351{left:479.760000pt;}
.x6e_c00351{left:481.440000pt;}
.x57_c00351{left:485.760000pt;}
.x9f_c00351{left:490.005333pt;}
.x40_c00351{left:491.040000pt;}
.x83_c00351{left:492.140000pt;}
.x98_c00351{left:499.440000pt;}
.x49_c00351{left:501.840000pt;}
.x60_c00351{left:504.240000pt;}
.xb_c00351{left:505.200000pt;}
.x3a_c00351{left:506.400000pt;}
.x1a_c00351{left:510.329333pt;}
.x7b_c00351{left:513.840000pt;}
.x3b_c00351{left:518.880000pt;}
.x41_c00351{left:521.520000pt;}
.x58_c00351{left:525.840000pt;}
.x84_c00351{left:528.865333pt;}
.x99_c00351{left:532.320000pt;}
.x26_c00351{left:535.927789pt;}
.x1b_c00351{left:540.328000pt;}
.xc_c00351{left:541.680000pt;}
.xa0_c00351{left:544.489333pt;}
.x42_c00351{left:546.480000pt;}
.x85_c00351{left:548.825333pt;}
.x4a_c00351{left:551.280000pt;}
.x9a_c00351{left:552.720000pt;}
.x1c_c00351{left:554.245333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m100_c00352{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);}
.mc3_c00352{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00352{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);}
.m33_c00352{transform:matrix(0.087955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087955,0.000000,0.000000,0.250000,0,0);}
.m50_c00352{transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095440,0.000000,0.000000,0.250000,0,0);}
.md1_c00352{transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{transform:matrix(0.135037,-0.003781,0.006997,0.249902,0,0);-ms-transform:matrix(0.135037,-0.003781,0.006997,0.249902,0,0);-webkit-transform:matrix(0.135037,-0.003781,0.006997,0.249902,0,0);}
.m2c_c00352{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m45_c00352{transform:matrix(0.143470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143470,0.000000,0.000000,0.250000,0,0);}
.m2d_c00352{transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00352{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);}
.mbe_c00352{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);}
.ma9_c00352{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);}
.mb7_c00352{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);}
.mbd_c00352{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);}
.m8e_c00352{transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151240,0.000000,0.000000,0.250000,0,0);}
.m20_c00352{transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);}
.mba_c00352{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);}
.maf_c00352{transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);}
.ma0_c00352{transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154140,0.000000,0.000000,0.250000,0,0);}
.mc1_c00352{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);}
.m7b_c00352{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);}
.mca_c00352{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);}
.m16_c00352{transform:matrix(0.157404,-0.001889,0.003000,0.249982,0,0);-ms-transform:matrix(0.157404,-0.001889,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157404,-0.001889,0.003000,0.249982,0,0);}
.mc8_c00352{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);}
.m72_c00352{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);}
.m17_c00352{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);}
.m39_c00352{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);}
.m44_c00352{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);}
.m88_c00352{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);}
.mef_c00352{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);}
.mb2_c00352{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);}
.m5d_c00352{transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);}
.m2a_c00352{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.ma5_c00352{transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162130,0.000000,0.000000,0.250000,0,0);}
.mee_c00352{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);}
.mab_c00352{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);}
.m2e_c00352{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);}
.ma4_c00352{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);}
.m49_c00352{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);}
.mb4_c00352{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);}
.m74_c00352{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);}
.m23_c00352{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);}
.m65_c00352{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);}
.m46_c00352{transform:matrix(0.167220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167220,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{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);}
.m41_c00352{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);}
.m67_c00352{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);}
.m25_c00352{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);}
.me0_c00352{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);}
.mc0_c00352{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);}
.mb3_c00352{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);}
.m6b_c00352{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);}
.m78_c00352{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);}
.mfe_c00352{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);}
.mc9_c00352{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);}
.m37_c00352{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);}
.mb5_c00352{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);}
.md6_c00352{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);}
.mfd_c00352{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);}
.md5_c00352{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);}
.mcd_c00352{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);}
.m94_c00352{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);}
.mc2_c00352{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);}
.mcf_c00352{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);}
.mb1_c00352{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);}
.mcc_c00352{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);}
.m22_c00352{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);}
.md4_c00352{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);}
.m34_c00352{transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);}
.m3f_c00352{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);}
.ma7_c00352{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);}
.m91_c00352{transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);}
.mbb_c00352{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);}
.mf9_c00352{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);}
.m9b_c00352{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.md9_c00352{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);}
.maa_c00352{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);}
.m81_c00352{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);}
.mbc_c00352{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);}
.m6a_c00352{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);}
.m24_c00352{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);}
.m3c_c00352{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);}
.m6d_c00352{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);}
.m1e_c00352{transform:matrix(0.179457,-0.002153,0.003000,0.249982,0,0);-ms-transform:matrix(0.179457,-0.002153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179457,-0.002153,0.003000,0.249982,0,0);}
.m5e_c00352{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);}
.m60_c00352{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);}
.m2f_c00352{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);}
.m8a_c00352{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);}
.md2_c00352{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);}
.m96_c00352{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);}
.m73_c00352{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);}
.m61_c00352{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);}
.m8b_c00352{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);}
.m84_c00352{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);}
.mec_c00352{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);}
.m7c_c00352{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);}
.m14_c00352{transform:matrix(0.183328,-0.005133,0.006997,0.249902,0,0);-ms-transform:matrix(0.183328,-0.005133,0.006997,0.249902,0,0);-webkit-transform:matrix(0.183328,-0.005133,0.006997,0.249902,0,0);}
.m71_c00352{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);}
.m4f_c00352{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);}
.m98_c00352{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);}
.m26_c00352{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);}
.m63_c00352{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);}
.m9c_c00352{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);}
.mf7_c00352{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);}
.m76_c00352{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);}
.m19_c00352{transform:matrix(0.184552,-0.002215,0.003000,0.249982,0,0);-ms-transform:matrix(0.184552,-0.002215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184552,-0.002215,0.003000,0.249982,0,0);}
.m27_c00352{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);}
.m51_c00352{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);}
.m56_c00352{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);}
.m8d_c00352{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_c00352{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);}
.m83_c00352{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);}
.m7f_c00352{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);}
.mf4_c00352{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);}
.mcb_c00352{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);}
.m87_c00352{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);}
.m5f_c00352{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);}
.ma6_c00352{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);}
.me8_c00352{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);}
.m75_c00352{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);}
.ma3_c00352{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);}
.m9e_c00352{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);}
.m8c_c00352{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);}
.m1b_c00352{transform:matrix(0.190841,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190841,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190841,-0.002290,0.003000,0.249982,0,0);}
.m1a_c00352{transform:matrix(0.191116,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191116,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191116,-0.002293,0.003000,0.249982,0,0);}
.m21_c00352{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);}
.m29_c00352{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);}
.ma2_c00352{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);}
.m6e_c00352{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);}
.m66_c00352{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);}
.m9d_c00352{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);}
.me5_c00352{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);}
.m35_c00352{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);}
.mc7_c00352{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);}
.m79_c00352{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);}
.ma8_c00352{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);}
.m85_c00352{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);}
.m28_c00352{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);}
.m86_c00352{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);}
.mce_c00352{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);}
.m6f_c00352{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);}
.m42_c00352{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);}
.m47_c00352{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);}
.m59_c00352{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);}
.mda_c00352{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);}
.mb8_c00352{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);}
.m38_c00352{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);}
.m9f_c00352{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);}
.m58_c00352{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);}
.m7e_c00352{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);}
.mae_c00352{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);}
.mdd_c00352{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);}
.mf1_c00352{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);}
.mad_c00352{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);}
.mb9_c00352{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);}
.m82_c00352{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);}
.m97_c00352{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);}
.mb0_c00352{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);}
.mc5_c00352{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);}
.mf6_c00352{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);}
.m54_c00352{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);}
.med_c00352{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);}
.mfc_c00352{transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00352{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);}
.meb_c00352{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);}
.m80_c00352{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);}
.m9a_c00352{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);}
.mac_c00352{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);}
.md3_c00352{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);}
.m62_c00352{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);}
.m95_c00352{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);}
.m1f_c00352{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);}
.ma1_c00352{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);}
.m1c_c00352{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);}
.m77_c00352{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);}
.mf3_c00352{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);}
.mfa_c00352{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);}
.m6c_c00352{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);}
.mf5_c00352{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);}
.m7a_c00352{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);}
.m4c_c00352{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);}
.me9_c00352{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);}
.mdc_c00352{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);}
.mde_c00352{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);}
.m7d_c00352{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);}
.m5c_c00352{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);}
.mfb_c00352{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);}
.m102_c00352{transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);}
.m4b_c00352{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);}
.m92_c00352{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);}
.mf0_c00352{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);}
.m70_c00352{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);}
.md0_c00352{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);}
.m101_c00352{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);}
.me1_c00352{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);}
.m15_c00352{transform:matrix(0.219554,-0.002635,0.003000,0.249982,0,0);-ms-transform:matrix(0.219554,-0.002635,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219554,-0.002635,0.003000,0.249982,0,0);}
.mc6_c00352{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);}
.m64_c00352{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);}
.m89_c00352{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);}
.m68_c00352{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);}
.me7_c00352{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);}
.mdf_c00352{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);}
.m4a_c00352{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);}
.md7_c00352{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);}
.mf8_c00352{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);}
.mb6_c00352{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);}
.m53_c00352{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);}
.m48_c00352{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);}
.me6_c00352{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.m57_c00352{transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233130,0.000000,0.000000,0.250000,0,0);}
.m3d_c00352{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);}
.mdb_c00352{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);}
.m30_c00352{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);}
.me2_c00352{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);}
.mc4_c00352{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);}
.m69_c00352{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.246169,-0.006893,0.006997,0.249902,0,0);-ms-transform:matrix(0.246169,-0.006893,0.006997,0.249902,0,0);-webkit-transform:matrix(0.246169,-0.006893,0.006997,0.249902,0,0);}
.md8_c00352{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);}
.m1d_c00352{transform:matrix(0.247777,-0.002973,0.003000,0.249982,0,0);-ms-transform:matrix(0.247777,-0.002973,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247777,-0.002973,0.003000,0.249982,0,0);}
.m90_c00352{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.mea_c00352{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_c00352{transform:matrix(0.256822,-0.003082,0.003000,0.249982,0,0);-ms-transform:matrix(0.256822,-0.003082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256822,-0.003082,0.003000,0.249982,0,0);}
.m36_c00352{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);}
.mbf_c00352{transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260555,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.268230,-0.007510,0.006997,0.249902,0,0);-ms-transform:matrix(0.268230,-0.007510,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268230,-0.007510,0.006997,0.249902,0,0);}
.m93_c00352{transform:matrix(0.273305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273305,0.000000,0.000000,0.250000,0,0);}
.m99_c00352{transform:matrix(0.277415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277415,0.000000,0.000000,0.250000,0,0);}
.me4_c00352{transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);}
.m40_c00352{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m52_c00352{transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);}
.m103_c00352{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);}
.m12_c00352{transform:matrix(0.291556,-0.008164,0.006997,0.249902,0,0);-ms-transform:matrix(0.291556,-0.008164,0.006997,0.249902,0,0);-webkit-transform:matrix(0.291556,-0.008164,0.006997,0.249902,0,0);}
.m5b_c00352{transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);}
.m43_c00352{transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296280,0.000000,0.000000,0.250000,0,0);}
.m31_c00352{transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.299583,-0.008388,0.006997,0.249902,0,0);-ms-transform:matrix(0.299583,-0.008388,0.006997,0.249902,0,0);-webkit-transform:matrix(0.299583,-0.008388,0.006997,0.249902,0,0);}
.m4e_c00352{transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313890,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.326327,-0.009137,0.006997,0.249902,0,0);-ms-transform:matrix(0.326327,-0.009137,0.006997,0.249902,0,0);-webkit-transform:matrix(0.326327,-0.009137,0.006997,0.249902,0,0);}
.m55_c00352{transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.331360,-0.009278,0.006997,0.249902,0,0);-ms-transform:matrix(0.331360,-0.009278,0.006997,0.249902,0,0);-webkit-transform:matrix(0.331360,-0.009278,0.006997,0.249902,0,0);}
.me3_c00352{transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);}
.mff_c00352{transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339285,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.339342,-0.009502,0.006997,0.249902,0,0);-ms-transform:matrix(0.339342,-0.009502,0.006997,0.249902,0,0);-webkit-transform:matrix(0.339342,-0.009502,0.006997,0.249902,0,0);}
.m5a_c00352{transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.374343,-0.010482,0.006997,0.249902,0,0);-ms-transform:matrix(0.374343,-0.010482,0.006997,0.249902,0,0);-webkit-transform:matrix(0.374343,-0.010482,0.006997,0.249902,0,0);}
.m11_c00352{transform:matrix(0.388043,-0.010865,0.006997,0.249902,0,0);-ms-transform:matrix(0.388043,-0.010865,0.006997,0.249902,0,0);-webkit-transform:matrix(0.388043,-0.010865,0.006997,0.249902,0,0);}
.m0_c00352{transform:matrix(0.389712,-0.010912,0.006997,0.249902,0,0);-ms-transform:matrix(0.389712,-0.010912,0.006997,0.249902,0,0);-webkit-transform:matrix(0.389712,-0.010912,0.006997,0.249902,0,0);}
.m3b_c00352{transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.415697,-0.011640,0.006997,0.249902,0,0);-ms-transform:matrix(0.415697,-0.011640,0.006997,0.249902,0,0);-webkit-transform:matrix(0.415697,-0.011640,0.006997,0.249902,0,0);}
.m9_c00352{transform:matrix(0.494231,-0.013838,0.006997,0.249902,0,0);-ms-transform:matrix(0.494231,-0.013838,0.006997,0.249902,0,0);-webkit-transform:matrix(0.494231,-0.013838,0.006997,0.249902,0,0);}
.m1_c00352{transform:matrix(0.497410,-0.013927,0.006997,0.249902,0,0);-ms-transform:matrix(0.497410,-0.013927,0.006997,0.249902,0,0);-webkit-transform:matrix(0.497410,-0.013927,0.006997,0.249902,0,0);}
.md_c00352{transform:matrix(0.531102,-0.014871,0.006997,0.249902,0,0);-ms-transform:matrix(0.531102,-0.014871,0.006997,0.249902,0,0);-webkit-transform:matrix(0.531102,-0.014871,0.006997,0.249902,0,0);}
.mc_c00352{transform:matrix(0.544397,-0.015243,0.006997,0.249902,0,0);-ms-transform:matrix(0.544397,-0.015243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.544397,-0.015243,0.006997,0.249902,0,0);}
.m4d_c00352{transform:matrix(0.582505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582505,0.000000,0.000000,0.250000,0,0);}
.mf2_c00352{transform:matrix(0.615090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615090,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.620832,-0.017383,0.006997,0.249902,0,0);-ms-transform:matrix(0.620832,-0.017383,0.006997,0.249902,0,0);-webkit-transform:matrix(0.620832,-0.017383,0.006997,0.249902,0,0);}
.mb_c00352{transform:matrix(0.641983,-0.017976,0.006997,0.249902,0,0);-ms-transform:matrix(0.641983,-0.017976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.641983,-0.017976,0.006997,0.249902,0,0);}
.m7_c00352{transform:matrix(0.880635,-0.024658,0.006997,0.249902,0,0);-ms-transform:matrix(0.880635,-0.024658,0.006997,0.249902,0,0);-webkit-transform:matrix(0.880635,-0.024658,0.006997,0.249902,0,0);}
.ma_c00352{transform:matrix(0.962738,-0.026957,0.006997,0.249902,0,0);-ms-transform:matrix(0.962738,-0.026957,0.006997,0.249902,0,0);-webkit-transform:matrix(0.962738,-0.026957,0.006997,0.249902,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;}
.fsf_c00352{font-size:49.350000px;}
.fs11_c00352{font-size:50.400000px;}
.fs10_c00352{font-size:51.450000px;}
.fse_c00352{font-size:58.800000px;}
.fs8_c00352{font-size:59.850000px;}
.fsa_c00352{font-size:65.100000px;}
.fsc_c00352{font-size:66.150000px;}
.fsb_c00352{font-size:67.200000px;}
.fs5_c00352{font-size:68.250000px;}
.fs6_c00352{font-size:69.300000px;}
.fs3_c00352{font-size:69.304989px;}
.fsd_c00352{font-size:70.350000px;}
.fs9_c00352{font-size:71.400000px;}
.fs4_c00352{font-size:72.450000px;}
.fs7_c00352{font-size:73.500000px;}
.fs0_c00352{font-size:77.730452px;}
.fs1_c00352{font-size:89.284979px;}
.fs2_c00352{font-size:90.335391px;}
.fs12_c00352{font-size:96.600000px;}
.fs13_c00352{font-size:236.250000px;}
.y0_c00352{bottom:0.000000px;}
.y3d_c00352{bottom:70.608000px;}
.y3c_c00352{bottom:114.210000px;}
.y3b_c00352{bottom:114.331500px;}
.y3a_c00352{bottom:135.000000px;}
.y39_c00352{bottom:153.294000px;}
.y38_c00352{bottom:170.611500px;}
.y37_c00352{bottom:220.590000px;}
.y36_c00352{bottom:243.238500px;}
.y35_c00352{bottom:265.870500px;}
.y34_c00352{bottom:294.537000px;}
.y33_c00352{bottom:311.880000px;}
.y32_c00352{bottom:335.040000px;}
.y31_c00352{bottom:357.981000px;}
.y30_c00352{bottom:384.873000px;}
.y2f_c00352{bottom:412.147500px;}
.y2e_c00352{bottom:435.450000px;}
.y2d_c00352{bottom:457.920000px;}
.y2c_c00352{bottom:485.926500px;}
.y2b_c00352{bottom:508.356000px;}
.y2a_c00352{bottom:535.906500px;}
.y29_c00352{bottom:558.390000px;}
.y28_c00352{bottom:581.271000px;}
.y27_c00352{bottom:609.660000px;}
.y26_c00352{bottom:634.965000px;}
.y25_c00352{bottom:658.411500px;}
.y24_c00352{bottom:681.171000px;}
.y23_c00352{bottom:709.020000px;}
.y22_c00352{bottom:726.433500px;}
.y21_c00352{bottom:749.970000px;}
.y20_c00352{bottom:773.041500px;}
.y16_c00352{bottom:798.123000px;}
.y17_c00352{bottom:798.653892px;}
.y18_c00352{bottom:798.896802px;}
.y19_c00352{bottom:799.237128px;}
.y1a_c00352{bottom:799.677732px;}
.y1b_c00352{bottom:800.306436px;}
.y1c_c00352{bottom:800.717376px;}
.y1d_c00352{bottom:801.352830px;}
.y1e_c00352{bottom:801.538194px;}
.y1f_c00352{bottom:801.949170px;}
.y15_c00352{bottom:844.137942px;}
.y11_c00352{bottom:844.138308px;}
.y13_c00352{bottom:844.138566px;}
.y12_c00352{bottom:844.138662px;}
.y14_c00352{bottom:844.138680px;}
.y8_c00352{bottom:883.720074px;}
.y9_c00352{bottom:886.144008px;}
.ya_c00352{bottom:886.216950px;}
.yb_c00352{bottom:887.450364px;}
.yc_c00352{bottom:890.089608px;}
.yd_c00352{bottom:891.643338px;}
.ye_c00352{bottom:892.972686px;}
.yf_c00352{bottom:895.132410px;}
.y1_c00352{bottom:895.342500px;}
.y10_c00352{bottom:895.815642px;}
.y2_c00352{bottom:896.613084px;}
.y3_c00352{bottom:901.649892px;}
.y4_c00352{bottom:904.951050px;}
.y5_c00352{bottom:906.551880px;}
.y6_c00352{bottom:907.904994px;}
.y7_c00352{bottom:909.962406px;}
.h11_c00352{height:49.350000px;}
.h13_c00352{height:50.400000px;}
.h12_c00352{height:51.450000px;}
.h10_c00352{height:58.800000px;}
.ha_c00352{height:59.850000px;}
.hc_c00352{height:65.100000px;}
.he_c00352{height:66.150000px;}
.hd_c00352{height:67.200000px;}
.h7_c00352{height:68.250000px;}
.h8_c00352{height:69.300000px;}
.h5_c00352{height:69.304989px;}
.hf_c00352{height:70.350000px;}
.hb_c00352{height:71.400000px;}
.h6_c00352{height:72.450000px;}
.h9_c00352{height:73.500000px;}
.h2_c00352{height:77.730452px;}
.h3_c00352{height:89.284979px;}
.h4_c00352{height:90.335391px;}
.h14_c00352{height:96.600000px;}
.h15_c00352{height:236.250000px;}
.h1_c00352{height:1005.000000px;}
.h0_c00352{height:1005.150000px;}
.w0_c00352{width:702.540000px;}
.w1_c00352{width:702.750000px;}
.x0_c00352{left:0.000000px;}
.x8_c00352{left:39.506016px;}
.xaa_c00352{left:45.900000px;}
.x1_c00352{left:49.918500px;}
.xac_c00352{left:53.460000px;}
.x43_c00352{left:83.160000px;}
.x2c_c00352{left:84.510000px;}
.x58_c00352{left:86.670000px;}
.x78_c00352{left:88.830000px;}
.x8c_c00352{left:90.180000px;}
.x9d_c00352{left:91.800000px;}
.x2_c00352{left:95.296500px;}
.x1f_c00352{left:103.140000px;}
.x46_c00352{left:105.030000px;}
.x80_c00352{left:106.920000px;}
.x59_c00352{left:109.350000px;}
.x44_c00352{left:110.970000px;}
.x9e_c00352{left:118.530000px;}
.x6a_c00352{left:122.310000px;}
.x6d_c00352{left:124.740000px;}
.x71_c00352{left:126.360000px;}
.x20_c00352{left:129.060000px;}
.x2d_c00352{left:131.490000px;}
.x52_c00352{left:132.570000px;}
.x79_c00352{left:136.350000px;}
.x3b_c00352{left:139.050000px;}
.x62_c00352{left:140.400000px;}
.x9f_c00352{left:143.910000px;}
.x45_c00352{left:145.260000px;}
.x72_c00352{left:146.610000px;}
.x16_c00352{left:147.627000px;}
.x9_c00352{left:149.664996px;}
.xa_c00352{left:152.967042px;}
.x9c_c00352{left:157.950000px;}
.x96_c00352{left:160.380000px;}
.x63_c00352{left:164.160000px;}
.x21_c00352{left:167.130000px;}
.xa0_c00352{left:169.830000px;}
.x53_c00352{left:172.260000px;}
.x2e_c00352{left:173.610000px;}
.x3c_c00352{left:177.930000px;}
.x5a_c00352{left:180.900000px;}
.x17_c00352{left:191.868000px;}
.x22_c00352{left:196.560000px;}
.x7e_c00352{left:200.340000px;}
.x6b_c00352{left:201.690000px;}
.x54_c00352{left:203.310000px;}
.x5b_c00352{left:204.390000px;}
.xb_c00352{left:209.026950px;}
.x2f_c00352{left:210.060000px;}
.x18_c00352{left:212.110500px;}
.x11_c00352{left:213.365136px;}
.x47_c00352{left:215.460000px;}
.x64_c00352{left:217.620000px;}
.x90_c00352{left:227.340000px;}
.x4d_c00352{left:229.770000px;}
.x37_c00352{left:232.470000px;}
.x5c_c00352{left:233.550000px;}
.x23_c00352{left:235.980000px;}
.x6c_c00352{left:238.950000px;}
.x19_c00352{left:240.471000px;}
.xa1_c00352{left:241.920000px;}
.x7f_c00352{left:243.270000px;}
.x38_c00352{left:249.480000px;}
.x97_c00352{left:250.560000px;}
.xa2_c00352{left:254.610000px;}
.x65_c00352{left:257.580000px;}
.x7a_c00352{left:258.930000px;}
.x30_c00352{left:261.090000px;}
.x87_c00352{left:264.870000px;}
.xa4_c00352{left:266.220000px;}
.x3d_c00352{left:268.920000px;}
.x81_c00352{left:273.780000px;}
.x3_c00352{left:275.182500px;}
.x1a_c00352{left:277.188000px;}
.x48_c00352{left:281.340000px;}
.x3e_c00352{left:283.500000px;}
.x24_c00352{left:287.280000px;}
.x55_c00352{left:288.630000px;}
.x8d_c00352{left:289.980000px;}
.x66_c00352{left:291.330000px;}
.x73_c00352{left:294.570000px;}
.x49_c00352{left:296.460000px;}
.x12_c00352{left:300.338760px;}
.x31_c00352{left:305.100000px;}
.x4e_c00352{left:308.340000px;}
.x25_c00352{left:312.120000px;}
.x91_c00352{left:315.360000px;}
.x88_c00352{left:316.440000px;}
.x4a_c00352{left:322.110000px;}
.x39_c00352{left:324.540000px;}
.x74_c00352{left:326.700000px;}
.xc_c00352{left:329.020110px;}
.x98_c00352{left:331.020000px;}
.x82_c00352{left:335.880000px;}
.x67_c00352{left:341.010000px;}
.x4f_c00352{left:342.900000px;}
.x3f_c00352{left:350.730000px;}
.x4b_c00352{left:355.860000px;}
.x26_c00352{left:356.940000px;}
.x32_c00352{left:358.020000px;}
.x56_c00352{left:359.370000px;}
.x92_c00352{left:361.800000px;}
.x1b_c00352{left:363.825000px;}
.x99_c00352{left:365.850000px;}
.x8e_c00352{left:366.930000px;}
.x13_c00352{left:370.836990px;}
.xa5_c00352{left:372.060000px;}
.x7b_c00352{left:375.030000px;}
.x33_c00352{left:377.730000px;}
.x5d_c00352{left:380.160000px;}
.x75_c00352{left:381.780000px;}
.x93_c00352{left:386.910000px;}
.x50_c00352{left:390.690000px;}
.x4_c00352{left:393.081000px;}
.x27_c00352{left:394.200000px;}
.x40_c00352{left:396.090000px;}
.xa9_c00352{left:398.250000px;}
.xd_c00352{left:399.629454px;}
.x3a_c00352{left:401.760000px;}
.x6e_c00352{left:403.920000px;}
.x34_c00352{left:406.350000px;}
.x76_c00352{left:415.530000px;}
.x1c_c00352{left:416.779500px;}
.x14_c00352{left:421.076844px;}
.x8f_c00352{left:423.360000px;}
.x68_c00352{left:426.330000px;}
.x83_c00352{left:431.190000px;}
.x1d_c00352{left:432.226500px;}
.x5e_c00352{left:433.620000px;}
.x94_c00352{left:437.130000px;}
.x6f_c00352{left:440.640000px;}
.x35_c00352{left:446.850000px;}
.x5_c00352{left:450.253500px;}
.x4c_c00352{left:453.870000px;}
.xe_c00352{left:460.080618px;}
.x70_c00352{left:464.400000px;}
.x1e_c00352{left:466.474500px;}
.x28_c00352{left:469.800000px;}
.xa6_c00352{left:470.880000px;}
.x5f_c00352{left:472.230000px;}
.x69_c00352{left:473.310000px;}
.x77_c00352{left:477.090000px;}
.x89_c00352{left:480.330000px;}
.x41_c00352{left:485.460000px;}
.x7c_c00352{left:486.810000px;}
.xa7_c00352{left:493.290000px;}
.x84_c00352{left:494.640000px;}
.x9a_c00352{left:496.530000px;}
.x6_c00352{left:498.579000px;}
.x51_c00352{left:500.310000px;}
.x29_c00352{left:502.470000px;}
.xa8_c00352{left:515.160000px;}
.x42_c00352{left:519.210000px;}
.x60_c00352{left:521.370000px;}
.x85_c00352{left:522.720000px;}
.x57_c00352{left:527.850000px;}
.x15_c00352{left:531.279696px;}
.x7d_c00352{left:534.600000px;}
.x8a_c00352{left:536.220000px;}
.xa3_c00352{left:537.840000px;}
.x2a_c00352{left:539.190000px;}
.x36_c00352{left:541.080000px;}
.x95_c00352{left:542.430000px;}
.x61_c00352{left:547.020000px;}
.x9b_c00352{left:550.530000px;}
.x2b_c00352{left:554.850000px;}
.xf_c00352{left:558.230082px;}
.x86_c00352{left:560.520000px;}
.x8b_c00352{left:562.680000px;}
.x7_c00352{left:572.058000px;}
.x10_c00352{left:589.279290px;}
.xab_c00352{left:603.990000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.fsf_c00352{font-size:43.866667pt;}
.fs11_c00352{font-size:44.800000pt;}
.fs10_c00352{font-size:45.733333pt;}
.fse_c00352{font-size:52.266667pt;}
.fs8_c00352{font-size:53.200000pt;}
.fsa_c00352{font-size:57.866667pt;}
.fsc_c00352{font-size:58.800000pt;}
.fsb_c00352{font-size:59.733333pt;}
.fs5_c00352{font-size:60.666667pt;}
.fs6_c00352{font-size:61.600000pt;}
.fs3_c00352{font-size:61.604435pt;}
.fsd_c00352{font-size:62.533333pt;}
.fs9_c00352{font-size:63.466667pt;}
.fs4_c00352{font-size:64.400000pt;}
.fs7_c00352{font-size:65.333333pt;}
.fs0_c00352{font-size:69.093735pt;}
.fs1_c00352{font-size:79.364426pt;}
.fs2_c00352{font-size:80.298125pt;}
.fs12_c00352{font-size:85.866667pt;}
.fs13_c00352{font-size:210.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y3d_c00352{bottom:62.762667pt;}
.y3c_c00352{bottom:101.520000pt;}
.y3b_c00352{bottom:101.628000pt;}
.y3a_c00352{bottom:120.000000pt;}
.y39_c00352{bottom:136.261333pt;}
.y38_c00352{bottom:151.654667pt;}
.y37_c00352{bottom:196.080000pt;}
.y36_c00352{bottom:216.212000pt;}
.y35_c00352{bottom:236.329333pt;}
.y34_c00352{bottom:261.810667pt;}
.y33_c00352{bottom:277.226667pt;}
.y32_c00352{bottom:297.813333pt;}
.y31_c00352{bottom:318.205333pt;}
.y30_c00352{bottom:342.109333pt;}
.y2f_c00352{bottom:366.353333pt;}
.y2e_c00352{bottom:387.066667pt;}
.y2d_c00352{bottom:407.040000pt;}
.y2c_c00352{bottom:431.934667pt;}
.y2b_c00352{bottom:451.872000pt;}
.y2a_c00352{bottom:476.361333pt;}
.y29_c00352{bottom:496.346667pt;}
.y28_c00352{bottom:516.685333pt;}
.y27_c00352{bottom:541.920000pt;}
.y26_c00352{bottom:564.413333pt;}
.y25_c00352{bottom:585.254667pt;}
.y24_c00352{bottom:605.485333pt;}
.y23_c00352{bottom:630.240000pt;}
.y22_c00352{bottom:645.718667pt;}
.y21_c00352{bottom:666.640000pt;}
.y20_c00352{bottom:687.148000pt;}
.y16_c00352{bottom:709.442667pt;}
.y17_c00352{bottom:709.914571pt;}
.y18_c00352{bottom:710.130491pt;}
.y19_c00352{bottom:710.433003pt;}
.y1a_c00352{bottom:710.824651pt;}
.y1b_c00352{bottom:711.383499pt;}
.y1c_c00352{bottom:711.748779pt;}
.y1d_c00352{bottom:712.313627pt;}
.y1e_c00352{bottom:712.478395pt;}
.y1f_c00352{bottom:712.843707pt;}
.y15_c00352{bottom:750.344837pt;}
.y11_c00352{bottom:750.345163pt;}
.y13_c00352{bottom:750.345392pt;}
.y12_c00352{bottom:750.345477pt;}
.y14_c00352{bottom:750.345493pt;}
.y8_c00352{bottom:785.528955pt;}
.y9_c00352{bottom:787.683563pt;}
.ya_c00352{bottom:787.748400pt;}
.yb_c00352{bottom:788.844768pt;}
.yc_c00352{bottom:791.190763pt;}
.yd_c00352{bottom:792.571856pt;}
.ye_c00352{bottom:793.753499pt;}
.yf_c00352{bottom:795.673253pt;}
.y1_c00352{bottom:795.860000pt;}
.y10_c00352{bottom:796.280571pt;}
.y2_c00352{bottom:796.989408pt;}
.y3_c00352{bottom:801.466571pt;}
.y4_c00352{bottom:804.400933pt;}
.y5_c00352{bottom:805.823893pt;}
.y6_c00352{bottom:807.026661pt;}
.y7_c00352{bottom:808.855472pt;}
.h11_c00352{height:43.866667pt;}
.h13_c00352{height:44.800000pt;}
.h12_c00352{height:45.733333pt;}
.h10_c00352{height:52.266667pt;}
.ha_c00352{height:53.200000pt;}
.hc_c00352{height:57.866667pt;}
.he_c00352{height:58.800000pt;}
.hd_c00352{height:59.733333pt;}
.h7_c00352{height:60.666667pt;}
.h8_c00352{height:61.600000pt;}
.h5_c00352{height:61.604435pt;}
.hf_c00352{height:62.533333pt;}
.hb_c00352{height:63.466667pt;}
.h6_c00352{height:64.400000pt;}
.h9_c00352{height:65.333333pt;}
.h2_c00352{height:69.093735pt;}
.h3_c00352{height:79.364426pt;}
.h4_c00352{height:80.298125pt;}
.h14_c00352{height:85.866667pt;}
.h15_c00352{height:210.000000pt;}
.h1_c00352{height:893.333333pt;}
.h0_c00352{height:893.466667pt;}
.w0_c00352{width:624.480000pt;}
.w1_c00352{width:624.666667pt;}
.x0_c00352{left:0.000000pt;}
.x8_c00352{left:35.116459pt;}
.xaa_c00352{left:40.800000pt;}
.x1_c00352{left:44.372000pt;}
.xac_c00352{left:47.520000pt;}
.x43_c00352{left:73.920000pt;}
.x2c_c00352{left:75.120000pt;}
.x58_c00352{left:77.040000pt;}
.x78_c00352{left:78.960000pt;}
.x8c_c00352{left:80.160000pt;}
.x9d_c00352{left:81.600000pt;}
.x2_c00352{left:84.708000pt;}
.x1f_c00352{left:91.680000pt;}
.x46_c00352{left:93.360000pt;}
.x80_c00352{left:95.040000pt;}
.x59_c00352{left:97.200000pt;}
.x44_c00352{left:98.640000pt;}
.x9e_c00352{left:105.360000pt;}
.x6a_c00352{left:108.720000pt;}
.x6d_c00352{left:110.880000pt;}
.x71_c00352{left:112.320000pt;}
.x20_c00352{left:114.720000pt;}
.x2d_c00352{left:116.880000pt;}
.x52_c00352{left:117.840000pt;}
.x79_c00352{left:121.200000pt;}
.x3b_c00352{left:123.600000pt;}
.x62_c00352{left:124.800000pt;}
.x9f_c00352{left:127.920000pt;}
.x45_c00352{left:129.120000pt;}
.x72_c00352{left:130.320000pt;}
.x16_c00352{left:131.224000pt;}
.x9_c00352{left:133.035552pt;}
.xa_c00352{left:135.970704pt;}
.x9c_c00352{left:140.400000pt;}
.x96_c00352{left:142.560000pt;}
.x63_c00352{left:145.920000pt;}
.x21_c00352{left:148.560000pt;}
.xa0_c00352{left:150.960000pt;}
.x53_c00352{left:153.120000pt;}
.x2e_c00352{left:154.320000pt;}
.x3c_c00352{left:158.160000pt;}
.x5a_c00352{left:160.800000pt;}
.x17_c00352{left:170.549333pt;}
.x22_c00352{left:174.720000pt;}
.x7e_c00352{left:178.080000pt;}
.x6b_c00352{left:179.280000pt;}
.x54_c00352{left:180.720000pt;}
.x5b_c00352{left:181.680000pt;}
.xb_c00352{left:185.801733pt;}
.x2f_c00352{left:186.720000pt;}
.x18_c00352{left:188.542667pt;}
.x11_c00352{left:189.657899pt;}
.x47_c00352{left:191.520000pt;}
.x64_c00352{left:193.440000pt;}
.x90_c00352{left:202.080000pt;}
.x4d_c00352{left:204.240000pt;}
.x37_c00352{left:206.640000pt;}
.x5c_c00352{left:207.600000pt;}
.x23_c00352{left:209.760000pt;}
.x6c_c00352{left:212.400000pt;}
.x19_c00352{left:213.752000pt;}
.xa1_c00352{left:215.040000pt;}
.x7f_c00352{left:216.240000pt;}
.x38_c00352{left:221.760000pt;}
.x97_c00352{left:222.720000pt;}
.xa2_c00352{left:226.320000pt;}
.x65_c00352{left:228.960000pt;}
.x7a_c00352{left:230.160000pt;}
.x30_c00352{left:232.080000pt;}
.x87_c00352{left:235.440000pt;}
.xa4_c00352{left:236.640000pt;}
.x3d_c00352{left:239.040000pt;}
.x81_c00352{left:243.360000pt;}
.x3_c00352{left:244.606667pt;}
.x1a_c00352{left:246.389333pt;}
.x48_c00352{left:250.080000pt;}
.x3e_c00352{left:252.000000pt;}
.x24_c00352{left:255.360000pt;}
.x55_c00352{left:256.560000pt;}
.x8d_c00352{left:257.760000pt;}
.x66_c00352{left:258.960000pt;}
.x73_c00352{left:261.840000pt;}
.x49_c00352{left:263.520000pt;}
.x12_c00352{left:266.967787pt;}
.x31_c00352{left:271.200000pt;}
.x4e_c00352{left:274.080000pt;}
.x25_c00352{left:277.440000pt;}
.x91_c00352{left:280.320000pt;}
.x88_c00352{left:281.280000pt;}
.x4a_c00352{left:286.320000pt;}
.x39_c00352{left:288.480000pt;}
.x74_c00352{left:290.400000pt;}
.xc_c00352{left:292.462320pt;}
.x98_c00352{left:294.240000pt;}
.x82_c00352{left:298.560000pt;}
.x67_c00352{left:303.120000pt;}
.x4f_c00352{left:304.800000pt;}
.x3f_c00352{left:311.760000pt;}
.x4b_c00352{left:316.320000pt;}
.x26_c00352{left:317.280000pt;}
.x32_c00352{left:318.240000pt;}
.x56_c00352{left:319.440000pt;}
.x92_c00352{left:321.600000pt;}
.x1b_c00352{left:323.400000pt;}
.x99_c00352{left:325.200000pt;}
.x8e_c00352{left:326.160000pt;}
.x13_c00352{left:329.632880pt;}
.xa5_c00352{left:330.720000pt;}
.x7b_c00352{left:333.360000pt;}
.x33_c00352{left:335.760000pt;}
.x5d_c00352{left:337.920000pt;}
.x75_c00352{left:339.360000pt;}
.x93_c00352{left:343.920000pt;}
.x50_c00352{left:347.280000pt;}
.x4_c00352{left:349.405333pt;}
.x27_c00352{left:350.400000pt;}
.x40_c00352{left:352.080000pt;}
.xa9_c00352{left:354.000000pt;}
.xd_c00352{left:355.226181pt;}
.x3a_c00352{left:357.120000pt;}
.x6e_c00352{left:359.040000pt;}
.x34_c00352{left:361.200000pt;}
.x76_c00352{left:369.360000pt;}
.x1c_c00352{left:370.470667pt;}
.x14_c00352{left:374.290528pt;}
.x8f_c00352{left:376.320000pt;}
.x68_c00352{left:378.960000pt;}
.x83_c00352{left:383.280000pt;}
.x1d_c00352{left:384.201333pt;}
.x5e_c00352{left:385.440000pt;}
.x94_c00352{left:388.560000pt;}
.x6f_c00352{left:391.680000pt;}
.x35_c00352{left:397.200000pt;}
.x5_c00352{left:400.225333pt;}
.x4c_c00352{left:403.440000pt;}
.xe_c00352{left:408.960549pt;}
.x70_c00352{left:412.800000pt;}
.x1e_c00352{left:414.644000pt;}
.x28_c00352{left:417.600000pt;}
.xa6_c00352{left:418.560000pt;}
.x5f_c00352{left:419.760000pt;}
.x69_c00352{left:420.720000pt;}
.x77_c00352{left:424.080000pt;}
.x89_c00352{left:426.960000pt;}
.x41_c00352{left:431.520000pt;}
.x7c_c00352{left:432.720000pt;}
.xa7_c00352{left:438.480000pt;}
.x84_c00352{left:439.680000pt;}
.x9a_c00352{left:441.360000pt;}
.x6_c00352{left:443.181333pt;}
.x51_c00352{left:444.720000pt;}
.x29_c00352{left:446.640000pt;}
.xa8_c00352{left:457.920000pt;}
.x42_c00352{left:461.520000pt;}
.x60_c00352{left:463.440000pt;}
.x85_c00352{left:464.640000pt;}
.x57_c00352{left:469.200000pt;}
.x15_c00352{left:472.248619pt;}
.x7d_c00352{left:475.200000pt;}
.x8a_c00352{left:476.640000pt;}
.xa3_c00352{left:478.080000pt;}
.x2a_c00352{left:479.280000pt;}
.x36_c00352{left:480.960000pt;}
.x95_c00352{left:482.160000pt;}
.x61_c00352{left:486.240000pt;}
.x9b_c00352{left:489.360000pt;}
.x2b_c00352{left:493.200000pt;}
.xf_c00352{left:496.204517pt;}
.x86_c00352{left:498.240000pt;}
.x8b_c00352{left:500.160000pt;}
.x7_c00352{left:508.496000pt;}
.x10_c00352{left:523.803813pt;}
.xab_c00352{left:536.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8c_c00353{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);}
.mb1_c00353{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);}
.m8b_c00353{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);}
.me3_c00353{transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.051630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051630,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.069583,-0.000557,0.002000,0.249992,0,0);-ms-transform:matrix(0.069583,-0.000557,0.002000,0.249992,0,0);-webkit-transform:matrix(0.069583,-0.000557,0.002000,0.249992,0,0);}
.m7_c00353{transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);}
.mdc_c00353{transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{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);}
.mca_c00353{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142395,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.143620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143620,0.000000,0.000000,0.250000,0,0);}
.mb8_c00353{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{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);}
.mbd_c00353{transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{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);}
.m67_c00353{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00353{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);}
.mb6_c00353{transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{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);}
.m75_c00353{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);}
.m85_c00353{transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.154315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154315,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00353{transform:matrix(0.155630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155630,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{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);}
.m6f_c00353{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);}
.m8f_c00353{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);}
.m89_c00353{transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157260,0.000000,0.000000,0.250000,0,0);}
.maa_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);}
.m9d_c00353{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);}
.m34_c00353{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);}
.m37_c00353{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);}
.m44_c00353{transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);}
.mc9_c00353{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);}
.m5a_c00353{transform:matrix(0.158720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158720,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{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);}
.m27_c00353{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);}
.m6e_c00353{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);}
.m7f_c00353{transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159470,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{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);}
.ma_c00353{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);}
.mc5_c00353{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);}
.mc8_c00353{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);}
.m78_c00353{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);}
.m76_c00353{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_c00353{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);}
.ma4_c00353{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);}
.mae_c00353{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);}
.mad_c00353{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{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);}
.m86_c00353{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);}
.m2f_c00353{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);}
.m42_c00353{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);}
.m4a_c00353{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);}
.ma6_c00353{transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166305,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{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);}
.m93_c00353{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);}
.m9a_c00353{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);}
.m18_c00353{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);}
.m43_c00353{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);}
.m3c_c00353{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);}
.m2a_c00353{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);}
.m20_c00353{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);}
.mb9_c00353{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);}
.m3b_c00353{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);}
.m7c_c00353{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);}
.m4b_c00353{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);}
.m4f_c00353{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);}
.m94_c00353{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.mce_c00353{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);}
.m91_c00353{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);}
.m29_c00353{transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{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);}
.m5d_c00353{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);}
.m1b_c00353{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);}
.m48_c00353{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);}
.ma3_c00353{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);}
.m8a_c00353{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);}
.m6a_c00353{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);}
.m6c_c00353{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);}
.m7e_c00353{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);}
.mab_c00353{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);}
.m1c_c00353{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);}
.m11_c00353{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);}
.mbb_c00353{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);}
.ma8_c00353{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);}
.m31_c00353{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_c00353{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);}
.mdb_c00353{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);}
.m9e_c00353{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);}
.m51_c00353{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);}
.m62_c00353{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);}
.mb3_c00353{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);}
.mda_c00353{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);}
.ma2_c00353{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);}
.mc7_c00353{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);}
.m41_c00353{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);}
.m5c_c00353{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);}
.mc6_c00353{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);}
.mc3_c00353{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);}
.m73_c00353{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_c00353{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);}
.ma9_c00353{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);}
.mc4_c00353{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);}
.mbf_c00353{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);}
.m1a_c00353{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);}
.md9_c00353{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);}
.m14_c00353{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);}
.mbc_c00353{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);}
.mb7_c00353{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);}
.m4c_c00353{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);}
.m92_c00353{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);}
.m35_c00353{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);}
.md2_c00353{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);}
.m83_c00353{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);}
.m1d_c00353{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);}
.mb5_c00353{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);}
.m54_c00353{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);}
.m100_c00353{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);}
.mac_c00353{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);}
.m3d_c00353{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);}
.m1f_c00353{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);}
.m50_c00353{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);}
.m5_c00353{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);}
.m80_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);}
.m5b_c00353{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);}
.m2b_c00353{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);}
.m16_c00353{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);}
.m3f_c00353{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);}
.mba_c00353{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);}
.m49_c00353{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);}
.mb_c00353{transform:matrix(0.190424,-0.001523,0.002000,0.249992,0,0);-ms-transform:matrix(0.190424,-0.001523,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190424,-0.001523,0.002000,0.249992,0,0);}
.m88_c00353{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);}
.m2c_c00353{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);}
.me6_c00353{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);}
.m72_c00353{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);}
.m33_c00353{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);}
.mc2_c00353{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);}
.mf9_c00353{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);}
.m40_c00353{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);}
.md1_c00353{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);}
.mf_c00353{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);}
.m1e_c00353{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);}
.m61_c00353{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);}
.m38_c00353{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);}
.m6b_c00353{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);}
.m36_c00353{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{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);}
.mb2_c00353{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);}
.m23_c00353{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);}
.mb4_c00353{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);}
.m96_c00353{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);}
.m46_c00353{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);}
.m4e_c00353{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);}
.m60_c00353{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_c00353{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);}
.meb_c00353{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);}
.m3e_c00353{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);}
.m5e_c00353{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);}
.mf0_c00353{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);}
.m95_c00353{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);}
.me4_c00353{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);}
.m47_c00353{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);}
.m3a_c00353{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);}
.mf7_c00353{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);}
.m87_c00353{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);}
.m7d_c00353{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);}
.m53_c00353{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);}
.md5_c00353{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);}
.mfe_c00353{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);}
.m66_c00353{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);}
.m4d_c00353{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);}
.mef_c00353{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);}
.mcf_c00353{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);}
.m30_c00353{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);}
.m74_c00353{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);}
.m71_c00353{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);}
.me1_c00353{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);}
.m79_c00353{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);}
.mc1_c00353{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);}
.mb0_c00353{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);}
.me2_c00353{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);}
.m102_c00353{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);}
.mf1_c00353{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);}
.mea_c00353{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);}
.mfd_c00353{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);}
.md3_c00353{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.md6_c00353{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);}
.mfa_c00353{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);}
.ma0_c00353{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);}
.mec_c00353{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);}
.me5_c00353{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);}
.m3_c00353{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);}
.me0_c00353{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);}
.m39_c00353{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);}
.m59_c00353{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);}
.mbe_c00353{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);}
.me9_c00353{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);}
.mde_c00353{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);}
.m12_c00353{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);}
.m10_c00353{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);}
.mf5_c00353{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);}
.mdd_c00353{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);}
.mff_c00353{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);}
.m2_c00353{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);}
.m68_c00353{transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224970,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{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);}
.md7_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);}
.mf3_c00353{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);}
.m101_c00353{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);}
.m82_c00353{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);}
.mf6_c00353{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);}
.me8_c00353{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);}
.m7a_c00353{transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);}
.md0_c00353{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);}
.mdf_c00353{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);}
.med_c00353{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);}
.mfc_c00353{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.mcd_c00353{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);}
.m70_c00353{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);}
.m2d_c00353{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);}
.mf2_c00353{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{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);}
.m77_c00353{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);}
.md8_c00353{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);}
.m2e_c00353{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.mee_c00353{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.mcc_c00353{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.mf8_c00353{transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);}
.me7_c00353{transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{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);}
.m58_c00353{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);}
.m13_c00353{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);}
.md4_c00353{transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277710,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{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);}
.mc0_c00353{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);}
.ma1_c00353{transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309460,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312200,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316640,0.000000,0.000000,0.250000,0,0);}
.mfb_c00353{transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.354274,-0.002834,0.002000,0.249992,0,0);-ms-transform:matrix(0.354274,-0.002834,0.002000,0.249992,0,0);-webkit-transform:matrix(0.354274,-0.002834,0.002000,0.249992,0,0);}
.m8e_c00353{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);}
.md_c00353{transform:matrix(0.387783,-0.003102,0.002000,0.249992,0,0);-ms-transform:matrix(0.387783,-0.003102,0.002000,0.249992,0,0);-webkit-transform:matrix(0.387783,-0.003102,0.002000,0.249992,0,0);}
.m90_c00353{transform:matrix(0.437060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437060,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449850,0.000000,0.000000,0.250000,0,0);}
.mcb_c00353{transform:matrix(0.466270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466270,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.548655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548655,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.572555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572555,0.000000,0.000000,0.250000,0,0);}
.mf4_c00353{transform:matrix(0.606940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606940,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.613330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613330,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;}
.fs13_c00353{font-size:18.900000px;}
.fs2_c00353{font-size:22.050000px;}
.fs11_c00353{font-size:45.150000px;}
.fs10_c00353{font-size:46.200000px;}
.fsf_c00353{font-size:48.300000px;}
.fs12_c00353{font-size:49.350000px;}
.fs5_c00353{font-size:60.900000px;}
.fsa_c00353{font-size:61.950000px;}
.fs9_c00353{font-size:66.150000px;}
.fs8_c00353{font-size:67.200000px;}
.fsc_c00353{font-size:69.300000px;}
.fs6_c00353{font-size:71.400000px;}
.fsb_c00353{font-size:72.450000px;}
.fse_c00353{font-size:73.500000px;}
.fs7_c00353{font-size:74.550000px;}
.fsd_c00353{font-size:75.600000px;}
.fs0_c00353{font-size:85.050000px;}
.fs1_c00353{font-size:94.500000px;}
.fs3_c00353{font-size:101.853259px;}
.fs4_c00353{font-size:175.350000px;}
.y0_c00353{bottom:0.000000px;}
.y24_c00353{bottom:51.570000px;}
.y23_c00353{bottom:118.563000px;}
.y22_c00353{bottom:136.513500px;}
.y21_c00353{bottom:154.611000px;}
.y20_c00353{bottom:170.676000px;}
.y1f_c00353{bottom:196.290000px;}
.y1e_c00353{bottom:282.441000px;}
.y1d_c00353{bottom:304.911000px;}
.y1c_c00353{bottom:335.808000px;}
.y1b_c00353{bottom:354.514500px;}
.y1a_c00353{bottom:376.110000px;}
.y19_c00353{bottom:404.293500px;}
.y18_c00353{bottom:427.909500px;}
.y17_c00353{bottom:463.320000px;}
.y16_c00353{bottom:482.506500px;}
.y15_c00353{bottom:505.378500px;}
.y14_c00353{bottom:528.330000px;}
.y13_c00353{bottom:551.238000px;}
.y12_c00353{bottom:579.028500px;}
.y11_c00353{bottom:602.656500px;}
.y10_c00353{bottom:619.567500px;}
.yf_c00353{bottom:642.714000px;}
.ye_c00353{bottom:671.913000px;}
.yd_c00353{bottom:702.300000px;}
.yc_c00353{bottom:725.340000px;}
.yb_c00353{bottom:747.988500px;}
.ya_c00353{bottom:770.610000px;}
.y9_c00353{bottom:798.510000px;}
.y8_c00353{bottom:823.770000px;}
.y4_c00353{bottom:843.481500px;}
.y5_c00353{bottom:844.423320px;}
.y6_c00353{bottom:845.119332px;}
.y7_c00353{bottom:846.582492px;}
.y2_c00353{bottom:887.419500px;}
.y1_c00353{bottom:902.610000px;}
.y3_c00353{bottom:924.210000px;}
.h15_c00353{height:18.900000px;}
.h4_c00353{height:22.050000px;}
.h13_c00353{height:45.150000px;}
.h12_c00353{height:46.200000px;}
.h11_c00353{height:48.300000px;}
.h14_c00353{height:49.350000px;}
.h7_c00353{height:60.900000px;}
.hc_c00353{height:61.950000px;}
.hb_c00353{height:66.150000px;}
.ha_c00353{height:67.200000px;}
.he_c00353{height:69.300000px;}
.h8_c00353{height:71.400000px;}
.hd_c00353{height:72.450000px;}
.h10_c00353{height:73.500000px;}
.h9_c00353{height:74.550000px;}
.hf_c00353{height:75.600000px;}
.h2_c00353{height:85.050000px;}
.h3_c00353{height:94.500000px;}
.h5_c00353{height:101.853259px;}
.h6_c00353{height:175.350000px;}
.h0_c00353{height:1008.450000px;}
.h1_c00353{height:1008.750000px;}
.w0_c00353{width:696.000000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:115.830000px;}
.x8_c00353{left:117.180000px;}
.x9_c00353{left:139.590000px;}
.x68_c00353{left:153.900000px;}
.x30_c00353{left:160.650000px;}
.xc_c00353{left:161.863500px;}
.x87_c00353{left:163.620000px;}
.x94_c00353{left:166.050000px;}
.x4d_c00353{left:171.990000px;}
.x8b_c00353{left:177.930000px;}
.x15_c00353{left:180.630000px;}
.x75_c00353{left:182.250000px;}
.x95_c00353{left:185.220000px;}
.x9e_c00353{left:187.380000px;}
.x31_c00353{left:188.460000px;}
.x88_c00353{left:194.400000px;}
.x10_c00353{left:195.750000px;}
.x34_c00353{left:197.100000px;}
.x4e_c00353{left:198.720000px;}
.x6e_c00353{left:199.800000px;}
.x27_c00353{left:201.690000px;}
.x1f_c00353{left:207.630000px;}
.x4f_c00353{left:217.620000px;}
.x96_c00353{left:219.780000px;}
.x35_c00353{left:222.210000px;}
.x43_c00353{left:225.450000px;}
.x20_c00353{left:227.070000px;}
.x66_c00353{left:232.200000px;}
.x50_c00353{left:234.090000px;}
.xa0_c00353{left:244.350000px;}
.x60_c00353{left:250.020000px;}
.x97_c00353{left:251.100000px;}
.x6f_c00353{left:252.990000px;}
.x11_c00353{left:255.960000px;}
.x48_c00353{left:258.390000px;}
.x76_c00353{left:259.470000px;}
.x7d_c00353{left:261.090000px;}
.x58_c00353{left:263.520000px;}
.x6c_c00353{left:266.220000px;}
.x44_c00353{left:271.350000px;}
.x70_c00353{left:275.400000px;}
.xd_c00353{left:279.591000px;}
.x77_c00353{left:281.880000px;}
.x36_c00353{left:283.230000px;}
.x16_c00353{left:284.850000px;}
.x8c_c00353{left:289.440000px;}
.x28_c00353{left:293.760000px;}
.x59_c00353{left:297.000000px;}
.x3d_c00353{left:298.080000px;}
.x2_c00353{left:300.780000px;}
.x17_c00353{left:302.940000px;}
.x82_c00353{left:306.990000px;}
.x45_c00353{left:313.740000px;}
.x29_c00353{left:316.440000px;}
.x6d_c00353{left:318.600000px;}
.x49_c00353{left:321.030000px;}
.x37_c00353{left:322.380000px;}
.x12_c00353{left:324.540000px;}
.xa1_c00353{left:326.160000px;}
.x8d_c00353{left:327.240000px;}
.x61_c00353{left:329.400000px;}
.x51_c00353{left:331.560000px;}
.x13_c00353{left:338.040000px;}
.x83_c00353{left:341.550000px;}
.x98_c00353{left:344.790000px;}
.x38_c00353{left:346.140000px;}
.x62_c00353{left:349.380000px;}
.x4a_c00353{left:350.730000px;}
.x18_c00353{left:353.970000px;}
.x71_c00353{left:356.940000px;}
.x52_c00353{left:358.560000px;}
.x14_c00353{left:359.910000px;}
.x21_c00353{left:363.690000px;}
.xe_c00353{left:366.592500px;}
.x8e_c00353{left:369.630000px;}
.xb_c00353{left:371.520000px;}
.x69_c00353{left:372.870000px;}
.x3e_c00353{left:373.950000px;}
.x63_c00353{left:378.810000px;}
.x19_c00353{left:380.160000px;}
.x39_c00353{left:382.320000px;}
.x53_c00353{left:387.450000px;}
.x2a_c00353{left:390.420000px;}
.x5a_c00353{left:393.120000px;}
.x72_c00353{left:394.470000px;}
.x22_c00353{left:397.440000px;}
.x99_c00353{left:399.870000px;}
.x6a_c00353{left:402.030000px;}
.x7f_c00353{left:404.460000px;}
.x64_c00353{left:411.480000px;}
.x9a_c00353{left:413.640000px;}
.x3_c00353{left:417.960000px;}
.x1a_c00353{left:420.390000px;}
.x46_c00353{left:421.470000px;}
.x3a_c00353{left:424.170000px;}
.x5b_c00353{left:425.520000px;}
.x8f_c00353{left:426.870000px;}
.x54_c00353{left:428.760000px;}
.xa2_c00353{left:430.920000px;}
.x32_c00353{left:434.970000px;}
.x23_c00353{left:436.590000px;}
.x78_c00353{left:437.670000px;}
.x9f_c00353{left:441.450000px;}
.x7e_c00353{left:444.960000px;}
.x90_c00353{left:447.120000px;}
.x5c_c00353{left:453.330000px;}
.xa3_c00353{left:454.410000px;}
.x4_c00353{left:456.030000px;}
.x2b_c00353{left:459.000000px;}
.x1b_c00353{left:460.890000px;}
.x24_c00353{left:461.970000px;}
.x73_c00353{left:464.940000px;}
.x89_c00353{left:467.100000px;}
.x4b_c00353{left:468.450000px;}
.x3b_c00353{left:471.960000px;}
.x55_c00353{left:475.470000px;}
.x9b_c00353{left:476.820000px;}
.x6b_c00353{left:478.440000px;}
.x5_c00353{left:479.520000px;}
.x3f_c00353{left:481.680000px;}
.x74_c00353{left:485.460000px;}
.x8a_c00353{left:487.890000px;}
.x33_c00353{left:488.970000px;}
.x67_c00353{left:491.670000px;}
.x4c_c00353{left:494.640000px;}
.x5d_c00353{left:495.990000px;}
.x79_c00353{left:497.880000px;}
.x47_c00353{left:498.960000px;}
.x2c_c00353{left:501.660000px;}
.x1c_c00353{left:503.280000px;}
.x3c_c00353{left:504.360000px;}
.x84_c00353{left:509.760000px;}
.x80_c00353{left:515.970000px;}
.x6_c00353{left:518.670000px;}
.x7a_c00353{left:521.640000px;}
.x25_c00353{left:522.720000px;}
.xa_c00353{left:525.690000px;}
.x40_c00353{left:532.440000px;}
.x1d_c00353{left:533.520000px;}
.x56_c00353{left:535.950000px;}
.xa4_c00353{left:539.190000px;}
.x7_c00353{left:544.050000px;}
.x2d_c00353{left:545.130000px;}
.xf_c00353{left:549.487500px;}
.x9c_c00353{left:551.070000px;}
.x81_c00353{left:553.500000px;}
.x57_c00353{left:558.900000px;}
.x41_c00353{left:563.490000px;}
.x7b_c00353{left:565.920000px;}
.x2e_c00353{left:567.000000px;}
.x91_c00353{left:573.750000px;}
.x5e_c00353{left:576.720000px;}
.x9d_c00353{left:582.930000px;}
.x92_c00353{left:584.820000px;}
.x85_c00353{left:587.520000px;}
.x5f_c00353{left:590.490000px;}
.x93_c00353{left:602.640000px;}
.x42_c00353{left:606.690000px;}
.x1e_c00353{left:609.390000px;}
.x2f_c00353{left:611.820000px;}
.x26_c00353{left:617.220000px;}
.x86_c00353{left:618.300000px;}
.x7c_c00353{left:620.460000px;}
.x65_c00353{left:625.860000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
.fs13_c00353{font-size:16.800000pt;}
.fs2_c00353{font-size:19.600000pt;}
.fs11_c00353{font-size:40.133333pt;}
.fs10_c00353{font-size:41.066667pt;}
.fsf_c00353{font-size:42.933333pt;}
.fs12_c00353{font-size:43.866667pt;}
.fs5_c00353{font-size:54.133333pt;}
.fsa_c00353{font-size:55.066667pt;}
.fs9_c00353{font-size:58.800000pt;}
.fs8_c00353{font-size:59.733333pt;}
.fsc_c00353{font-size:61.600000pt;}
.fs6_c00353{font-size:63.466667pt;}
.fsb_c00353{font-size:64.400000pt;}
.fse_c00353{font-size:65.333333pt;}
.fs7_c00353{font-size:66.266667pt;}
.fsd_c00353{font-size:67.200000pt;}
.fs0_c00353{font-size:75.600000pt;}
.fs1_c00353{font-size:84.000000pt;}
.fs3_c00353{font-size:90.536230pt;}
.fs4_c00353{font-size:155.866667pt;}
.y0_c00353{bottom:0.000000pt;}
.y24_c00353{bottom:45.840000pt;}
.y23_c00353{bottom:105.389333pt;}
.y22_c00353{bottom:121.345333pt;}
.y21_c00353{bottom:137.432000pt;}
.y20_c00353{bottom:151.712000pt;}
.y1f_c00353{bottom:174.480000pt;}
.y1e_c00353{bottom:251.058667pt;}
.y1d_c00353{bottom:271.032000pt;}
.y1c_c00353{bottom:298.496000pt;}
.y1b_c00353{bottom:315.124000pt;}
.y1a_c00353{bottom:334.320000pt;}
.y19_c00353{bottom:359.372000pt;}
.y18_c00353{bottom:380.364000pt;}
.y17_c00353{bottom:411.840000pt;}
.y16_c00353{bottom:428.894667pt;}
.y15_c00353{bottom:449.225333pt;}
.y14_c00353{bottom:469.626667pt;}
.y13_c00353{bottom:489.989333pt;}
.y12_c00353{bottom:514.692000pt;}
.y11_c00353{bottom:535.694667pt;}
.y10_c00353{bottom:550.726667pt;}
.yf_c00353{bottom:571.301333pt;}
.ye_c00353{bottom:597.256000pt;}
.yd_c00353{bottom:624.266667pt;}
.yc_c00353{bottom:644.746667pt;}
.yb_c00353{bottom:664.878667pt;}
.ya_c00353{bottom:684.986667pt;}
.y9_c00353{bottom:709.786667pt;}
.y8_c00353{bottom:732.240000pt;}
.y4_c00353{bottom:749.761333pt;}
.y5_c00353{bottom:750.598507pt;}
.y6_c00353{bottom:751.217184pt;}
.y7_c00353{bottom:752.517771pt;}
.y2_c00353{bottom:788.817333pt;}
.y1_c00353{bottom:802.320000pt;}
.y3_c00353{bottom:821.520000pt;}
.h15_c00353{height:16.800000pt;}
.h4_c00353{height:19.600000pt;}
.h13_c00353{height:40.133333pt;}
.h12_c00353{height:41.066667pt;}
.h11_c00353{height:42.933333pt;}
.h14_c00353{height:43.866667pt;}
.h7_c00353{height:54.133333pt;}
.hc_c00353{height:55.066667pt;}
.hb_c00353{height:58.800000pt;}
.ha_c00353{height:59.733333pt;}
.he_c00353{height:61.600000pt;}
.h8_c00353{height:63.466667pt;}
.hd_c00353{height:64.400000pt;}
.h10_c00353{height:65.333333pt;}
.h9_c00353{height:66.266667pt;}
.hf_c00353{height:67.200000pt;}
.h2_c00353{height:75.600000pt;}
.h3_c00353{height:84.000000pt;}
.h5_c00353{height:90.536230pt;}
.h6_c00353{height:155.866667pt;}
.h0_c00353{height:896.400000pt;}
.h1_c00353{height:896.666667pt;}
.w0_c00353{width:618.666667pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:102.960000pt;}
.x8_c00353{left:104.160000pt;}
.x9_c00353{left:124.080000pt;}
.x68_c00353{left:136.800000pt;}
.x30_c00353{left:142.800000pt;}
.xc_c00353{left:143.878667pt;}
.x87_c00353{left:145.440000pt;}
.x94_c00353{left:147.600000pt;}
.x4d_c00353{left:152.880000pt;}
.x8b_c00353{left:158.160000pt;}
.x15_c00353{left:160.560000pt;}
.x75_c00353{left:162.000000pt;}
.x95_c00353{left:164.640000pt;}
.x9e_c00353{left:166.560000pt;}
.x31_c00353{left:167.520000pt;}
.x88_c00353{left:172.800000pt;}
.x10_c00353{left:174.000000pt;}
.x34_c00353{left:175.200000pt;}
.x4e_c00353{left:176.640000pt;}
.x6e_c00353{left:177.600000pt;}
.x27_c00353{left:179.280000pt;}
.x1f_c00353{left:184.560000pt;}
.x4f_c00353{left:193.440000pt;}
.x96_c00353{left:195.360000pt;}
.x35_c00353{left:197.520000pt;}
.x43_c00353{left:200.400000pt;}
.x20_c00353{left:201.840000pt;}
.x66_c00353{left:206.400000pt;}
.x50_c00353{left:208.080000pt;}
.xa0_c00353{left:217.200000pt;}
.x60_c00353{left:222.240000pt;}
.x97_c00353{left:223.200000pt;}
.x6f_c00353{left:224.880000pt;}
.x11_c00353{left:227.520000pt;}
.x48_c00353{left:229.680000pt;}
.x76_c00353{left:230.640000pt;}
.x7d_c00353{left:232.080000pt;}
.x58_c00353{left:234.240000pt;}
.x6c_c00353{left:236.640000pt;}
.x44_c00353{left:241.200000pt;}
.x70_c00353{left:244.800000pt;}
.xd_c00353{left:248.525333pt;}
.x77_c00353{left:250.560000pt;}
.x36_c00353{left:251.760000pt;}
.x16_c00353{left:253.200000pt;}
.x8c_c00353{left:257.280000pt;}
.x28_c00353{left:261.120000pt;}
.x59_c00353{left:264.000000pt;}
.x3d_c00353{left:264.960000pt;}
.x2_c00353{left:267.360000pt;}
.x17_c00353{left:269.280000pt;}
.x82_c00353{left:272.880000pt;}
.x45_c00353{left:278.880000pt;}
.x29_c00353{left:281.280000pt;}
.x6d_c00353{left:283.200000pt;}
.x49_c00353{left:285.360000pt;}
.x37_c00353{left:286.560000pt;}
.x12_c00353{left:288.480000pt;}
.xa1_c00353{left:289.920000pt;}
.x8d_c00353{left:290.880000pt;}
.x61_c00353{left:292.800000pt;}
.x51_c00353{left:294.720000pt;}
.x13_c00353{left:300.480000pt;}
.x83_c00353{left:303.600000pt;}
.x98_c00353{left:306.480000pt;}
.x38_c00353{left:307.680000pt;}
.x62_c00353{left:310.560000pt;}
.x4a_c00353{left:311.760000pt;}
.x18_c00353{left:314.640000pt;}
.x71_c00353{left:317.280000pt;}
.x52_c00353{left:318.720000pt;}
.x14_c00353{left:319.920000pt;}
.x21_c00353{left:323.280000pt;}
.xe_c00353{left:325.860000pt;}
.x8e_c00353{left:328.560000pt;}
.xb_c00353{left:330.240000pt;}
.x69_c00353{left:331.440000pt;}
.x3e_c00353{left:332.400000pt;}
.x63_c00353{left:336.720000pt;}
.x19_c00353{left:337.920000pt;}
.x39_c00353{left:339.840000pt;}
.x53_c00353{left:344.400000pt;}
.x2a_c00353{left:347.040000pt;}
.x5a_c00353{left:349.440000pt;}
.x72_c00353{left:350.640000pt;}
.x22_c00353{left:353.280000pt;}
.x99_c00353{left:355.440000pt;}
.x6a_c00353{left:357.360000pt;}
.x7f_c00353{left:359.520000pt;}
.x64_c00353{left:365.760000pt;}
.x9a_c00353{left:367.680000pt;}
.x3_c00353{left:371.520000pt;}
.x1a_c00353{left:373.680000pt;}
.x46_c00353{left:374.640000pt;}
.x3a_c00353{left:377.040000pt;}
.x5b_c00353{left:378.240000pt;}
.x8f_c00353{left:379.440000pt;}
.x54_c00353{left:381.120000pt;}
.xa2_c00353{left:383.040000pt;}
.x32_c00353{left:386.640000pt;}
.x23_c00353{left:388.080000pt;}
.x78_c00353{left:389.040000pt;}
.x9f_c00353{left:392.400000pt;}
.x7e_c00353{left:395.520000pt;}
.x90_c00353{left:397.440000pt;}
.x5c_c00353{left:402.960000pt;}
.xa3_c00353{left:403.920000pt;}
.x4_c00353{left:405.360000pt;}
.x2b_c00353{left:408.000000pt;}
.x1b_c00353{left:409.680000pt;}
.x24_c00353{left:410.640000pt;}
.x73_c00353{left:413.280000pt;}
.x89_c00353{left:415.200000pt;}
.x4b_c00353{left:416.400000pt;}
.x3b_c00353{left:419.520000pt;}
.x55_c00353{left:422.640000pt;}
.x9b_c00353{left:423.840000pt;}
.x6b_c00353{left:425.280000pt;}
.x5_c00353{left:426.240000pt;}
.x3f_c00353{left:428.160000pt;}
.x74_c00353{left:431.520000pt;}
.x8a_c00353{left:433.680000pt;}
.x33_c00353{left:434.640000pt;}
.x67_c00353{left:437.040000pt;}
.x4c_c00353{left:439.680000pt;}
.x5d_c00353{left:440.880000pt;}
.x79_c00353{left:442.560000pt;}
.x47_c00353{left:443.520000pt;}
.x2c_c00353{left:445.920000pt;}
.x1c_c00353{left:447.360000pt;}
.x3c_c00353{left:448.320000pt;}
.x84_c00353{left:453.120000pt;}
.x80_c00353{left:458.640000pt;}
.x6_c00353{left:461.040000pt;}
.x7a_c00353{left:463.680000pt;}
.x25_c00353{left:464.640000pt;}
.xa_c00353{left:467.280000pt;}
.x40_c00353{left:473.280000pt;}
.x1d_c00353{left:474.240000pt;}
.x56_c00353{left:476.400000pt;}
.xa4_c00353{left:479.280000pt;}
.x7_c00353{left:483.600000pt;}
.x2d_c00353{left:484.560000pt;}
.xf_c00353{left:488.433333pt;}
.x9c_c00353{left:489.840000pt;}
.x81_c00353{left:492.000000pt;}
.x57_c00353{left:496.800000pt;}
.x41_c00353{left:500.880000pt;}
.x7b_c00353{left:503.040000pt;}
.x2e_c00353{left:504.000000pt;}
.x91_c00353{left:510.000000pt;}
.x5e_c00353{left:512.640000pt;}
.x9d_c00353{left:518.160000pt;}
.x92_c00353{left:519.840000pt;}
.x85_c00353{left:522.240000pt;}
.x5f_c00353{left:524.880000pt;}
.x93_c00353{left:535.680000pt;}
.x42_c00353{left:539.280000pt;}
.x1e_c00353{left:541.680000pt;}
.x2f_c00353{left:543.840000pt;}
.x26_c00353{left:548.640000pt;}
.x86_c00353{left:549.600000pt;}
.x7c_c00353{left:551.520000pt;}
.x65_c00353{left:556.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mc7_c00354{transform:matrix(0.010850,0.000087,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010850,0.000087,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010850,0.000087,-0.002000,0.249992,0,0);}
.m38_c00354{transform:matrix(0.019570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019570,0.000000,0.000000,0.250000,0,0);}
.m8b_c00354{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);}
.mda_c00354{transform:matrix(0.109936,0.000879,-0.002000,0.249992,0,0);-ms-transform:matrix(0.109936,0.000879,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.109936,0.000879,-0.002000,0.249992,0,0);}
.md4_c00354{transform:matrix(0.126061,0.001008,-0.002000,0.249992,0,0);-ms-transform:matrix(0.126061,0.001008,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.126061,0.001008,-0.002000,0.249992,0,0);}
.mcd_c00354{transform:matrix(0.128541,0.001028,-0.002000,0.249992,0,0);-ms-transform:matrix(0.128541,0.001028,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.128541,0.001028,-0.002000,0.249992,0,0);}
.m5c_c00354{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m6e_c00354{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{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);}
.m86_c00354{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);}
.m31_c00354{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);}
.m26_c00354{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);}
.m67_c00354{transform:matrix(0.151360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151360,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.151940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151940,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{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);}
.m3f_c00354{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);}
.m8d_c00354{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);}
.m3c_c00354{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{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);}
.m18_c00354{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);}
.m8c_c00354{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);}
.m98_c00354{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);}
.m1b_c00354{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);}
.m88_c00354{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);}
.m94_c00354{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);}
.m6f_c00354{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);}
.m42_c00354{transform:matrix(0.158995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158995,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{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);}
.mad_c00354{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);}
.m50_c00354{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);}
.m5a_c00354{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);}
.m2f_c00354{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);}
.m49_c00354{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);}
.md0_c00354{transform:matrix(0.161350,0.001291,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161350,0.001291,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161350,0.001291,-0.002000,0.249992,0,0);}
.ma5_c00354{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);}
.m91_c00354{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);}
.m51_c00354{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);}
.m8e_c00354{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);}
.m2c_c00354{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);}
.ma9_c00354{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);}
.m61_c00354{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{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);}
.m32_c00354{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);}
.m69_c00354{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{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);}
.m8f_c00354{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);}
.m17_c00354{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);}
.m1f_c00354{transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{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);}
.m13_c00354{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);}
.m63_c00354{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);}
.m30_c00354{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);}
.mcb_c00354{transform:matrix(0.169410,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169410,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169410,0.001355,-0.002000,0.249992,0,0);}
.m48_c00354{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);}
.m28_c00354{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);}
.maa_c00354{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);}
.m70_c00354{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);}
.m1d_c00354{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);}
.m64_c00354{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);}
.mdb_c00354{transform:matrix(0.173364,0.001387,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173364,0.001387,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173364,0.001387,-0.002000,0.249992,0,0);}
.m4b_c00354{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);}
.m7_c00354{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);}
.mae_c00354{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);}
.mcc_c00354{transform:matrix(0.174349,0.001395,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174349,0.001395,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174349,0.001395,-0.002000,0.249992,0,0);}
.m66_c00354{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);}
.mc2_c00354{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);}
.m3e_c00354{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);}
.m23_c00354{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);}
.m7c_c00354{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);}
.m16_c00354{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);}
.m7b_c00354{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_c00354{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);}
.mbd_c00354{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);}
.mb3_c00354{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);}
.m7e_c00354{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);}
.m29_c00354{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);}
.m20_c00354{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);}
.m6b_c00354{transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179855,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{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);}
.m21_c00354{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);}
.m3d_c00354{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);}
.md6_c00354{transform:matrix(0.181174,0.001449,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181174,0.001449,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181174,0.001449,-0.002000,0.249992,0,0);}
.m4f_c00354{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);}
.m1a_c00354{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);}
.m99_c00354{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);}
.m4d_c00354{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);}
.m4c_c00354{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);}
.m6a_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);}
.mc3_c00354{transform:matrix(0.182574,0.001461,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182574,0.001461,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182574,0.001461,-0.002000,0.249992,0,0);}
.m71_c00354{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);}
.ma7_c00354{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);}
.m92_c00354{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);}
.m87_c00354{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);}
.m5e_c00354{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);}
.mb2_c00354{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);}
.m9_c00354{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);}
.ma0_c00354{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);}
.m4a_c00354{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);}
.m77_c00354{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);}
.m4e_c00354{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);}
.ma6_c00354{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);}
.md1_c00354{transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);}
.m84_c00354{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);}
.m5b_c00354{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);}
.m62_c00354{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_c00354{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);}
.m11_c00354{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);}
.m8_c00354{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);}
.m9a_c00354{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);}
.mab_c00354{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);}
.m40_c00354{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);}
.m6c_c00354{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);}
.m97_c00354{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);}
.m25_c00354{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);}
.mbe_c00354{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);}
.m80_c00354{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);}
.md7_c00354{transform:matrix(0.191609,0.001533,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191609,0.001533,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191609,0.001533,-0.002000,0.249992,0,0);}
.m2e_c00354{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);}
.m90_c00354{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);}
.mc4_c00354{transform:matrix(0.193154,0.001545,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193154,0.001545,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193154,0.001545,-0.002000,0.249992,0,0);}
.m57_c00354{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);}
.m1e_c00354{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);}
.ma8_c00354{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);}
.ma4_c00354{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);}
.mb1_c00354{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);}
.m68_c00354{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);}
.mc6_c00354{transform:matrix(0.194329,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194329,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194329,0.001555,-0.002000,0.249992,0,0);}
.m83_c00354{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);}
.m19_c00354{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);}
.m93_c00354{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);}
.m5d_c00354{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);}
.mb9_c00354{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);}
.mac_c00354{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);}
.m2d_c00354{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);}
.mb4_c00354{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);}
.mbb_c00354{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);}
.me_c00354{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);}
.mdc_c00354{transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198814,0.001591,-0.002000,0.249992,0,0);}
.m2b_c00354{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);}
.m7a_c00354{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);}
.mc_c00354{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);}
.m14_c00354{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);}
.mba_c00354{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);}
.m2a_c00354{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);}
.ma2_c00354{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);}
.mc0_c00354{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);}
.mb8_c00354{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);}
.m95_c00354{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);}
.mb5_c00354{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);}
.m65_c00354{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);}
.mb0_c00354{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);}
.md3_c00354{transform:matrix(0.203688,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203688,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203688,0.001630,-0.002000,0.249992,0,0);}
.m7f_c00354{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);}
.mc9_c00354{transform:matrix(0.204373,0.001635,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204373,0.001635,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204373,0.001635,-0.002000,0.249992,0,0);}
.m1c_c00354{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);}
.m60_c00354{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);}
.m59_c00354{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);}
.md8_c00354{transform:matrix(0.209093,0.001673,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209093,0.001673,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209093,0.001673,-0.002000,0.249992,0,0);}
.md5_c00354{transform:matrix(0.210123,0.001681,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210123,0.001681,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210123,0.001681,-0.002000,0.249992,0,0);}
.m24_c00354{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);}
.mf_c00354{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);}
.mca_c00354{transform:matrix(0.212538,0.001700,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212538,0.001700,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212538,0.001700,-0.002000,0.249992,0,0);}
.m9f_c00354{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);}
.m89_c00354{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);}
.ma1_c00354{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);}
.m76_c00354{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);}
.m52_c00354{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);}
.m58_c00354{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);}
.ma3_c00354{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);}
.m82_c00354{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);}
.m3_c00354{transform:matrix(0.217274,-0.002173,0.002500,0.249988,0,0);-ms-transform:matrix(0.217274,-0.002173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217274,-0.002173,0.002500,0.249988,0,0);}
.mdd_c00354{transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);}
.m54_c00354{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);}
.m79_c00354{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);}
.m72_c00354{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);}
.mb7_c00354{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);}
.m7d_c00354{transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{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);}
.m6_c00354{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);}
.m9b_c00354{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);}
.mb_c00354{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);}
.md2_c00354{transform:matrix(0.225068,0.001801,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225068,0.001801,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225068,0.001801,-0.002000,0.249992,0,0);}
.mc1_c00354{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);}
.mcf_c00354{transform:matrix(0.226298,0.001810,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226298,0.001810,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226298,0.001810,-0.002000,0.249992,0,0);}
.m46_c00354{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);}
.m96_c00354{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);}
.m55_c00354{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);}
.m34_c00354{transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{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);}
.m10_c00354{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);}
.m9d_c00354{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_c00354{transform:matrix(0.240062,0.001920,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240062,0.001920,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240062,0.001920,-0.002000,0.249992,0,0);}
.mbf_c00354{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);}
.mce_c00354{transform:matrix(0.242617,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242617,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242617,0.001941,-0.002000,0.249992,0,0);}
.m9c_c00354{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);}
.m3b_c00354{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);}
.m36_c00354{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{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);}
.m35_c00354{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);}
.md9_c00354{transform:matrix(0.265487,0.002124,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265487,0.002124,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265487,0.002124,-0.002000,0.249992,0,0);}
.maf_c00354{transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266180,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{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);}
.m1_c00354{transform:matrix(0.274786,-0.002748,0.002500,0.249988,0,0);-ms-transform:matrix(0.274786,-0.002748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274786,-0.002748,0.002500,0.249988,0,0);}
.m78_c00354{transform:matrix(0.281380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281380,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);}
.me0_c00354{transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285120,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{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);}
.m33_c00354{transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312360,0.000000,0.000000,0.250000,0,0);}
.md_c00354{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);}
.mc5_c00354{transform:matrix(0.323390,0.002587,-0.002000,0.249992,0,0);-ms-transform:matrix(0.323390,0.002587,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.323390,0.002587,-0.002000,0.249992,0,0);}
.m2_c00354{transform:matrix(0.335413,-0.003354,0.002500,0.249988,0,0);-ms-transform:matrix(0.335413,-0.003354,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335413,-0.003354,0.002500,0.249988,0,0);}
.mde_c00354{transform:matrix(0.340544,0.002724,-0.002000,0.249992,0,0);-ms-transform:matrix(0.340544,0.002724,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.340544,0.002724,-0.002000,0.249992,0,0);}
.m5_c00354{transform:matrix(0.348065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348065,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.369420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369420,0.000000,0.000000,0.250000,0,0);}
.mbc_c00354{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.mdf_c00354{transform:matrix(0.377893,0.003023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.377893,0.003023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.377893,0.003023,-0.002000,0.249992,0,0);}
.m74_c00354{transform:matrix(0.464980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464980,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.594385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594385,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.679910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679910,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.686840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686840,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.859812,-0.008598,0.002500,0.249988,0,0);-ms-transform:matrix(0.859812,-0.008598,0.002500,0.249988,0,0);-webkit-transform:matrix(0.859812,-0.008598,0.002500,0.249988,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;}
.fsb_c00354{font-size:22.050000px;}
.fsd_c00354{font-size:51.450000px;}
.fs10_c00354{font-size:52.501680px;}
.fsf_c00354{font-size:53.551714px;}
.fse_c00354{font-size:55.651781px;}
.fs7_c00354{font-size:64.050000px;}
.fs3_c00354{font-size:65.100000px;}
.fsa_c00354{font-size:66.150000px;}
.fs9_c00354{font-size:67.200000px;}
.fs2_c00354{font-size:68.250000px;}
.fsc_c00354{font-size:69.300000px;}
.fs6_c00354{font-size:70.350000px;}
.fs5_c00354{font-size:71.400000px;}
.fs4_c00354{font-size:72.450000px;}
.fs8_c00354{font-size:75.600000px;}
.fs1_c00354{font-size:126.006300px;}
.fs11_c00354{font-size:131.250000px;}
.fs0_c00354{font-size:238.361917px;}
.y0_c00354{bottom:0.000000px;}
.y39_c00354{bottom:139.590000px;}
.y38_c00354{bottom:141.433512px;}
.y37_c00354{bottom:142.079616px;}
.y36_c00354{bottom:142.323528px;}
.y35_c00354{bottom:142.528992px;}
.y34_c00354{bottom:142.793904px;}
.y33_c00354{bottom:142.888404px;}
.y32_c00354{bottom:143.022228px;}
.y31_c00354{bottom:143.331480px;}
.y30_c00354{bottom:143.683776px;}
.y2f_c00354{bottom:143.904972px;}
.y2e_c00354{bottom:144.407628px;}
.y2d_c00354{bottom:144.449076px;}
.y24_c00354{bottom:161.613300px;}
.y22_c00354{bottom:161.613348px;}
.y23_c00354{bottom:161.613408px;}
.y29_c00354{bottom:161.613468px;}
.y26_c00354{bottom:161.613576px;}
.y27_c00354{bottom:161.613756px;}
.y28_c00354{bottom:161.613876px;}
.y2b_c00354{bottom:161.613900px;}
.y25_c00354{bottom:161.613960px;}
.y2a_c00354{bottom:161.614020px;}
.y2c_c00354{bottom:161.614632px;}
.y21_c00354{bottom:177.312468px;}
.y20_c00354{bottom:178.629768px;}
.y1f_c00354{bottom:179.997216px;}
.y1e_c00354{bottom:180.366492px;}
.y1d_c00354{bottom:180.630000px;}
.y1c_c00354{bottom:197.197500px;}
.y1b_c00354{bottom:246.744000px;}
.y1a_c00354{bottom:274.273500px;}
.y19_c00354{bottom:297.427500px;}
.y18_c00354{bottom:321.348000px;}
.y17_c00354{bottom:343.519500px;}
.y16_c00354{bottom:351.270000px;}
.y15_c00354{bottom:370.854000px;}
.y14_c00354{bottom:409.590000px;}
.y13_c00354{bottom:449.799000px;}
.y12_c00354{bottom:473.040000px;}
.y11_c00354{bottom:495.750000px;}
.y10_c00354{bottom:518.091000px;}
.yf_c00354{bottom:545.400000px;}
.ye_c00354{bottom:572.757000px;}
.yd_c00354{bottom:595.659000px;}
.yc_c00354{bottom:622.362000px;}
.yb_c00354{bottom:649.749000px;}
.ya_c00354{bottom:672.760500px;}
.y9_c00354{bottom:699.963000px;}
.y8_c00354{bottom:727.333500px;}
.y7_c00354{bottom:750.522000px;}
.y6_c00354{bottom:777.885000px;}
.y5_c00354{bottom:814.404000px;}
.y2_c00354{bottom:865.768620px;}
.y3_c00354{bottom:865.769190px;}
.y4_c00354{bottom:865.769415px;}
.y1_c00354{bottom:905.304000px;}
.hd_c00354{height:22.050000px;}
.hf_c00354{height:51.450000px;}
.h12_c00354{height:52.501680px;}
.h11_c00354{height:53.551714px;}
.h10_c00354{height:55.651781px;}
.h9_c00354{height:64.050000px;}
.h5_c00354{height:65.100000px;}
.hc_c00354{height:66.150000px;}
.hb_c00354{height:67.200000px;}
.h4_c00354{height:68.250000px;}
.he_c00354{height:69.300000px;}
.h8_c00354{height:70.350000px;}
.h7_c00354{height:71.400000px;}
.h6_c00354{height:72.450000px;}
.ha_c00354{height:75.600000px;}
.h3_c00354{height:126.006300px;}
.h13_c00354{height:131.250000px;}
.h2_c00354{height:238.361917px;}
.h1_c00354{height:1005.000000px;}
.h0_c00354{height:1005.150000px;}
.w0_c00354{width:702.540000px;}
.w1_c00354{width:702.750000px;}
.x0_c00354{left:0.000000px;}
.x96_c00354{left:39.690000px;}
.x1_c00354{left:48.694500px;}
.x63_c00354{left:78.300000px;}
.x1c_c00354{left:88.020000px;}
.x48_c00354{left:90.720000px;}
.x6f_c00354{left:92.340000px;}
.x83_c00354{left:94.230000px;}
.x35_c00354{left:100.710000px;}
.x10_c00354{left:105.570000px;}
.x22_c00354{left:106.650000px;}
.x8a_c00354{left:107.730228px;}
.x2d_c00354{left:110.700000px;}
.x91_c00354{left:113.870484px;}
.x84_c00354{left:117.720000px;}
.x7_c00354{left:123.390000px;}
.x42_c00354{left:125.550000px;}
.x5a_c00354{left:127.170000px;}
.x7d_c00354{left:128.250000px;}
.x55_c00354{left:130.410000px;}
.x23_c00354{left:135.270000px;}
.x3e_c00354{left:139.050000px;}
.x30_c00354{left:141.480000px;}
.x76_c00354{left:143.910000px;}
.x1d_c00354{left:145.800000px;}
.x64_c00354{left:147.690000px;}
.x8b_c00354{left:150.662976px;}
.x8_c00354{left:151.740000px;}
.x21_c00354{left:153.090000px;}
.x2e_c00354{left:155.250000px;}
.x49_c00354{left:158.760000px;}
.x56_c00354{left:163.890000px;}
.x3f_c00354{left:164.970000px;}
.x11_c00354{left:167.400000px;}
.x1e_c00354{left:170.640000px;}
.x9_c00354{left:173.070000px;}
.x8c_c00354{left:179.553324px;}
.x24_c00354{left:182.250000px;}
.x2f_c00354{left:184.410000px;}
.x92_c00354{left:185.703060px;}
.x12_c00354{left:186.840000px;}
.x7e_c00354{left:189.000000px;}
.x65_c00354{left:191.970000px;}
.x70_c00354{left:194.130000px;}
.x1f_c00354{left:201.960000px;}
.x50_c00354{left:204.120000px;}
.x2_c00354{left:208.717815px;}
.x25_c00354{left:210.600000px;}
.x31_c00354{left:212.490000px;}
.x45_c00354{left:213.570000px;}
.x85_c00354{left:214.920000px;}
.x93_c00354{left:217.290312px;}
.xa_c00354{left:220.860000px;}
.x4a_c00354{left:222.480000px;}
.x36_c00354{left:223.830000px;}
.x57_c00354{left:226.530000px;}
.x5b_c00354{left:230.040000px;}
.x5_c00354{left:233.280000px;}
.x66_c00354{left:234.630000px;}
.x43_c00354{left:240.030000px;}
.x20_c00354{left:241.380000px;}
.xb_c00354{left:244.350000px;}
.x26_c00354{left:249.480000px;}
.x13_c00354{left:258.120000px;}
.x67_c00354{left:261.360000px;}
.x37_c00354{left:262.440000px;}
.x44_c00354{left:266.220000px;}
.x40_c00354{left:267.840000px;}
.x71_c00354{left:272.430000px;}
.x77_c00354{left:274.320000px;}
.xc_c00354{left:277.290000px;}
.x7f_c00354{left:279.180000px;}
.x3_c00354{left:281.082045px;}
.x5e_c00354{left:287.550000px;}
.x4b_c00354{left:290.250000px;}
.x68_c00354{left:292.680000px;}
.x14_c00354{left:294.030000px;}
.x27_c00354{left:296.460000px;}
.x32_c00354{left:297.540000px;}
.x41_c00354{left:299.700000px;}
.x33_c00354{left:306.450000px;}
.x58_c00354{left:311.580000px;}
.x38_c00354{left:312.660000px;}
.x78_c00354{left:314.820000px;}
.xd_c00354{left:319.410000px;}
.x69_c00354{left:321.300000px;}
.x28_c00354{left:324.540000px;}
.x5f_c00354{left:327.780000px;}
.x4c_c00354{left:330.480000px;}
.x80_c00354{left:333.180000px;}
.x79_c00354{left:337.230000px;}
.x86_c00354{left:345.060000px;}
.x39_c00354{left:346.410000px;}
.x72_c00354{left:351.270000px;}
.x15_c00354{left:353.970000px;}
.x81_c00354{left:355.050000px;}
.x8d_c00354{left:358.570284px;}
.x4d_c00354{left:363.690000px;}
.xe_c00354{left:372.600000px;}
.x6a_c00354{left:375.570000px;}
.x51_c00354{left:376.920000px;}
.x34_c00354{left:383.130000px;}
.x16_c00354{left:385.020000px;}
.x87_c00354{left:386.370000px;}
.x6_c00354{left:388.260000px;}
.x82_c00354{left:390.420000px;}
.x6b_c00354{left:392.310000px;}
.x59_c00354{left:393.390000px;}
.x52_c00354{left:396.900000px;}
.x5c_c00354{left:398.790000px;}
.xf_c00354{left:399.870000px;}
.x7a_c00354{left:409.860000px;}
.x17_c00354{left:412.020000px;}
.x6c_c00354{left:413.910000px;}
.x3a_c00354{left:415.530000px;}
.x4_c00354{left:417.168150px;}
.x29_c00354{left:421.740000px;}
.x8e_c00354{left:427.423188px;}
.x3b_c00354{left:430.380000px;}
.x18_c00354{left:439.020000px;}
.x73_c00354{left:440.370000px;}
.x46_c00354{left:443.070000px;}
.x94_c00354{left:446.499648px;}
.x5d_c00354{left:453.060000px;}
.x8f_c00354{left:456.043524px;}
.x2a_c00354{left:463.320000px;}
.x53_c00354{left:468.990000px;}
.x60_c00354{left:471.960000px;}
.x19_c00354{left:473.310000px;}
.x90_c00354{left:478.184940px;}
.x88_c00354{left:483.840000px;}
.x7b_c00354{left:488.160000px;}
.x2b_c00354{left:492.480000px;}
.x3c_c00354{left:499.230000px;}
.x61_c00354{left:500.580000px;}
.x74_c00354{left:503.280000px;}
.x1a_c00354{left:504.900000px;}
.x7c_c00354{left:510.030000px;}
.x54_c00354{left:511.380000px;}
.x4e_c00354{left:513.270000px;}
.x6d_c00354{left:526.500000px;}
.x3d_c00354{left:528.930000px;}
.x75_c00354{left:535.140000px;}
.x2c_c00354{left:536.760000px;}
.x95_c00354{left:538.888392px;}
.x89_c00354{left:540.270000px;}
.x1b_c00354{left:542.700000px;}
.x62_c00354{left:544.320000px;}
.x47_c00354{left:554.310000px;}
.x6e_c00354{left:559.170000px;}
.x4f_c00354{left:562.680000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.fsb_c00354{font-size:19.600000pt;}
.fsd_c00354{font-size:45.733333pt;}
.fs10_c00354{font-size:46.668160pt;}
.fsf_c00354{font-size:47.601523pt;}
.fse_c00354{font-size:49.468250pt;}
.fs7_c00354{font-size:56.933333pt;}
.fs3_c00354{font-size:57.866667pt;}
.fsa_c00354{font-size:58.800000pt;}
.fs9_c00354{font-size:59.733333pt;}
.fs2_c00354{font-size:60.666667pt;}
.fsc_c00354{font-size:61.600000pt;}
.fs6_c00354{font-size:62.533333pt;}
.fs5_c00354{font-size:63.466667pt;}
.fs4_c00354{font-size:64.400000pt;}
.fs8_c00354{font-size:67.200000pt;}
.fs1_c00354{font-size:112.005600pt;}
.fs11_c00354{font-size:116.666667pt;}
.fs0_c00354{font-size:211.877260pt;}
.y0_c00354{bottom:0.000000pt;}
.y39_c00354{bottom:124.080000pt;}
.y38_c00354{bottom:125.718677pt;}
.y37_c00354{bottom:126.292992pt;}
.y36_c00354{bottom:126.509803pt;}
.y35_c00354{bottom:126.692437pt;}
.y34_c00354{bottom:126.927915pt;}
.y33_c00354{bottom:127.011915pt;}
.y32_c00354{bottom:127.130869pt;}
.y31_c00354{bottom:127.405760pt;}
.y30_c00354{bottom:127.718912pt;}
.y2f_c00354{bottom:127.915531pt;}
.y2e_c00354{bottom:128.362336pt;}
.y2d_c00354{bottom:128.399179pt;}
.y24_c00354{bottom:143.656267pt;}
.y22_c00354{bottom:143.656309pt;}
.y23_c00354{bottom:143.656363pt;}
.y29_c00354{bottom:143.656416pt;}
.y26_c00354{bottom:143.656512pt;}
.y27_c00354{bottom:143.656672pt;}
.y28_c00354{bottom:143.656779pt;}
.y2b_c00354{bottom:143.656800pt;}
.y25_c00354{bottom:143.656853pt;}
.y2a_c00354{bottom:143.656907pt;}
.y2c_c00354{bottom:143.657451pt;}
.y21_c00354{bottom:157.611083pt;}
.y20_c00354{bottom:158.782016pt;}
.y1f_c00354{bottom:159.997525pt;}
.y1e_c00354{bottom:160.325771pt;}
.y1d_c00354{bottom:160.560000pt;}
.y1c_c00354{bottom:175.286667pt;}
.y1b_c00354{bottom:219.328000pt;}
.y1a_c00354{bottom:243.798667pt;}
.y19_c00354{bottom:264.380000pt;}
.y18_c00354{bottom:285.642667pt;}
.y17_c00354{bottom:305.350667pt;}
.y16_c00354{bottom:312.240000pt;}
.y15_c00354{bottom:329.648000pt;}
.y14_c00354{bottom:364.080000pt;}
.y13_c00354{bottom:399.821333pt;}
.y12_c00354{bottom:420.480000pt;}
.y11_c00354{bottom:440.666667pt;}
.y10_c00354{bottom:460.525333pt;}
.yf_c00354{bottom:484.800000pt;}
.ye_c00354{bottom:509.117333pt;}
.yd_c00354{bottom:529.474667pt;}
.yc_c00354{bottom:553.210667pt;}
.yb_c00354{bottom:577.554667pt;}
.ya_c00354{bottom:598.009333pt;}
.y9_c00354{bottom:622.189333pt;}
.y8_c00354{bottom:646.518667pt;}
.y7_c00354{bottom:667.130667pt;}
.y6_c00354{bottom:691.453333pt;}
.y5_c00354{bottom:723.914667pt;}
.y2_c00354{bottom:769.572107pt;}
.y3_c00354{bottom:769.572613pt;}
.y4_c00354{bottom:769.572813pt;}
.y1_c00354{bottom:804.714667pt;}
.hd_c00354{height:19.600000pt;}
.hf_c00354{height:45.733333pt;}
.h12_c00354{height:46.668160pt;}
.h11_c00354{height:47.601523pt;}
.h10_c00354{height:49.468250pt;}
.h9_c00354{height:56.933333pt;}
.h5_c00354{height:57.866667pt;}
.hc_c00354{height:58.800000pt;}
.hb_c00354{height:59.733333pt;}
.h4_c00354{height:60.666667pt;}
.he_c00354{height:61.600000pt;}
.h8_c00354{height:62.533333pt;}
.h7_c00354{height:63.466667pt;}
.h6_c00354{height:64.400000pt;}
.ha_c00354{height:67.200000pt;}
.h3_c00354{height:112.005600pt;}
.h13_c00354{height:116.666667pt;}
.h2_c00354{height:211.877260pt;}
.h1_c00354{height:893.333333pt;}
.h0_c00354{height:893.466667pt;}
.w0_c00354{width:624.480000pt;}
.w1_c00354{width:624.666667pt;}
.x0_c00354{left:0.000000pt;}
.x96_c00354{left:35.280000pt;}
.x1_c00354{left:43.284000pt;}
.x63_c00354{left:69.600000pt;}
.x1c_c00354{left:78.240000pt;}
.x48_c00354{left:80.640000pt;}
.x6f_c00354{left:82.080000pt;}
.x83_c00354{left:83.760000pt;}
.x35_c00354{left:89.520000pt;}
.x10_c00354{left:93.840000pt;}
.x22_c00354{left:94.800000pt;}
.x8a_c00354{left:95.760203pt;}
.x2d_c00354{left:98.400000pt;}
.x91_c00354{left:101.218208pt;}
.x84_c00354{left:104.640000pt;}
.x7_c00354{left:109.680000pt;}
.x42_c00354{left:111.600000pt;}
.x5a_c00354{left:113.040000pt;}
.x7d_c00354{left:114.000000pt;}
.x55_c00354{left:115.920000pt;}
.x23_c00354{left:120.240000pt;}
.x3e_c00354{left:123.600000pt;}
.x30_c00354{left:125.760000pt;}
.x76_c00354{left:127.920000pt;}
.x1d_c00354{left:129.600000pt;}
.x64_c00354{left:131.280000pt;}
.x8b_c00354{left:133.922645pt;}
.x8_c00354{left:134.880000pt;}
.x21_c00354{left:136.080000pt;}
.x2e_c00354{left:138.000000pt;}
.x49_c00354{left:141.120000pt;}
.x56_c00354{left:145.680000pt;}
.x3f_c00354{left:146.640000pt;}
.x11_c00354{left:148.800000pt;}
.x1e_c00354{left:151.680000pt;}
.x9_c00354{left:153.840000pt;}
.x8c_c00354{left:159.602955pt;}
.x24_c00354{left:162.000000pt;}
.x2f_c00354{left:163.920000pt;}
.x92_c00354{left:165.069387pt;}
.x12_c00354{left:166.080000pt;}
.x7e_c00354{left:168.000000pt;}
.x65_c00354{left:170.640000pt;}
.x70_c00354{left:172.560000pt;}
.x1f_c00354{left:179.520000pt;}
.x50_c00354{left:181.440000pt;}
.x2_c00354{left:185.526947pt;}
.x25_c00354{left:187.200000pt;}
.x31_c00354{left:188.880000pt;}
.x45_c00354{left:189.840000pt;}
.x85_c00354{left:191.040000pt;}
.x93_c00354{left:193.146944pt;}
.xa_c00354{left:196.320000pt;}
.x4a_c00354{left:197.760000pt;}
.x36_c00354{left:198.960000pt;}
.x57_c00354{left:201.360000pt;}
.x5b_c00354{left:204.480000pt;}
.x5_c00354{left:207.360000pt;}
.x66_c00354{left:208.560000pt;}
.x43_c00354{left:213.360000pt;}
.x20_c00354{left:214.560000pt;}
.xb_c00354{left:217.200000pt;}
.x26_c00354{left:221.760000pt;}
.x13_c00354{left:229.440000pt;}
.x67_c00354{left:232.320000pt;}
.x37_c00354{left:233.280000pt;}
.x44_c00354{left:236.640000pt;}
.x40_c00354{left:238.080000pt;}
.x71_c00354{left:242.160000pt;}
.x77_c00354{left:243.840000pt;}
.xc_c00354{left:246.480000pt;}
.x7f_c00354{left:248.160000pt;}
.x3_c00354{left:249.850707pt;}
.x5e_c00354{left:255.600000pt;}
.x4b_c00354{left:258.000000pt;}
.x68_c00354{left:260.160000pt;}
.x14_c00354{left:261.360000pt;}
.x27_c00354{left:263.520000pt;}
.x32_c00354{left:264.480000pt;}
.x41_c00354{left:266.400000pt;}
.x33_c00354{left:272.400000pt;}
.x58_c00354{left:276.960000pt;}
.x38_c00354{left:277.920000pt;}
.x78_c00354{left:279.840000pt;}
.xd_c00354{left:283.920000pt;}
.x69_c00354{left:285.600000pt;}
.x28_c00354{left:288.480000pt;}
.x5f_c00354{left:291.360000pt;}
.x4c_c00354{left:293.760000pt;}
.x80_c00354{left:296.160000pt;}
.x79_c00354{left:299.760000pt;}
.x86_c00354{left:306.720000pt;}
.x39_c00354{left:307.920000pt;}
.x72_c00354{left:312.240000pt;}
.x15_c00354{left:314.640000pt;}
.x81_c00354{left:315.600000pt;}
.x8d_c00354{left:318.729141pt;}
.x4d_c00354{left:323.280000pt;}
.xe_c00354{left:331.200000pt;}
.x6a_c00354{left:333.840000pt;}
.x51_c00354{left:335.040000pt;}
.x34_c00354{left:340.560000pt;}
.x16_c00354{left:342.240000pt;}
.x87_c00354{left:343.440000pt;}
.x6_c00354{left:345.120000pt;}
.x82_c00354{left:347.040000pt;}
.x6b_c00354{left:348.720000pt;}
.x59_c00354{left:349.680000pt;}
.x52_c00354{left:352.800000pt;}
.x5c_c00354{left:354.480000pt;}
.xf_c00354{left:355.440000pt;}
.x7a_c00354{left:364.320000pt;}
.x17_c00354{left:366.240000pt;}
.x6c_c00354{left:367.920000pt;}
.x3a_c00354{left:369.360000pt;}
.x4_c00354{left:370.816133pt;}
.x29_c00354{left:374.880000pt;}
.x8e_c00354{left:379.931723pt;}
.x3b_c00354{left:382.560000pt;}
.x18_c00354{left:390.240000pt;}
.x73_c00354{left:391.440000pt;}
.x46_c00354{left:393.840000pt;}
.x94_c00354{left:396.888576pt;}
.x5d_c00354{left:402.720000pt;}
.x8f_c00354{left:405.372021pt;}
.x2a_c00354{left:411.840000pt;}
.x53_c00354{left:416.880000pt;}
.x60_c00354{left:419.520000pt;}
.x19_c00354{left:420.720000pt;}
.x90_c00354{left:425.053280pt;}
.x88_c00354{left:430.080000pt;}
.x7b_c00354{left:433.920000pt;}
.x2b_c00354{left:437.760000pt;}
.x3c_c00354{left:443.760000pt;}
.x61_c00354{left:444.960000pt;}
.x74_c00354{left:447.360000pt;}
.x1a_c00354{left:448.800000pt;}
.x7c_c00354{left:453.360000pt;}
.x54_c00354{left:454.560000pt;}
.x4e_c00354{left:456.240000pt;}
.x6d_c00354{left:468.000000pt;}
.x3d_c00354{left:470.160000pt;}
.x75_c00354{left:475.680000pt;}
.x2c_c00354{left:477.120000pt;}
.x95_c00354{left:479.011904pt;}
.x89_c00354{left:480.240000pt;}
.x1b_c00354{left:482.400000pt;}
.x62_c00354{left:483.840000pt;}
.x47_c00354{left:492.720000pt;}
.x6e_c00354{left:497.040000pt;}
.x4f_c00354{left:500.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_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_4ab86c84425994a9e06b01c2.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;}
.mf0_c00355{transform:matrix(0.007185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007185,0.000000,0.000000,0.250000,0,0);}
.me7_c00355{transform:matrix(0.007965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007965,0.000000,0.000000,0.250000,0,0);}
.mf1_c00355{transform:matrix(0.009455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009455,0.000000,0.000000,0.250000,0,0);}
.ma0_c00355{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);}
.mb3_c00355{transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);}
.mf7_c00355{transform:matrix(0.094820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094820,0.000000,0.000000,0.250000,0,0);}
.ma3_c00355{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.mde_c00355{transform:matrix(0.128064,0.001665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.128064,0.001665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.128064,0.001665,-0.003250,0.249979,0,0);}
.mf6_c00355{transform:matrix(0.138220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138220,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.140985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140985,0.000000,0.000000,0.250000,0,0);}
.m88_c00355{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{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);}
.mea_c00355{transform:matrix(0.150815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150815,0.000000,0.000000,0.250000,0,0);}
.m80_c00355{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);}
.mcf_c00355{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);}
.m4a_c00355{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);}
.m90_c00355{transform:matrix(0.153245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00355{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);}
.m91_c00355{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m75_c00355{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);}
.m52_c00355{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);}
.m1f_c00355{transform:matrix(0.156694,-0.001410,0.002250,0.249990,0,0);-ms-transform:matrix(0.156694,-0.001410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156694,-0.001410,0.002250,0.249990,0,0);}
.m85_c00355{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);}
.m81_c00355{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);}
.ma5_c00355{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);}
.meb_c00355{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);}
.m38_c00355{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.158285,-0.001741,0.002750,0.249985,0,0);-ms-transform:matrix(0.158285,-0.001741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158285,-0.001741,0.002750,0.249985,0,0);}
.m6e_c00355{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);}
.ma7_c00355{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);}
.m4e_c00355{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);}
.m3d_c00355{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);}
.m7a_c00355{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);}
.mef_c00355{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);}
.mb1_c00355{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);}
.mba_c00355{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);}
.m26_c00355{transform:matrix(0.163483,-0.001471,0.002250,0.249990,0,0);-ms-transform:matrix(0.163483,-0.001471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163483,-0.001471,0.002250,0.249990,0,0);}
.m3e_c00355{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);}
.m23_c00355{transform:matrix(0.163898,-0.001475,0.002250,0.249990,0,0);-ms-transform:matrix(0.163898,-0.001475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163898,-0.001475,0.002250,0.249990,0,0);}
.ma2_c00355{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);}
.m3f_c00355{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m46_c00355{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);}
.m28_c00355{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);}
.mf_c00355{transform:matrix(0.165200,-0.001817,0.002750,0.249985,0,0);-ms-transform:matrix(0.165200,-0.001817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165200,-0.001817,0.002750,0.249985,0,0);}
.me9_c00355{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_c00355{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);}
.m2f_c00355{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);}
.m60_c00355{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);}
.m68_c00355{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m7e_c00355{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);}
.m8d_c00355{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);}
.m37_c00355{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);}
.mb2_c00355{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);}
.m61_c00355{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);}
.mac_c00355{transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);}
.mbd_c00355{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);}
.m12_c00355{transform:matrix(0.168260,-0.001851,0.002750,0.249985,0,0);-ms-transform:matrix(0.168260,-0.001851,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168260,-0.001851,0.002750,0.249985,0,0);}
.m78_c00355{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);}
.m40_c00355{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);}
.m7d_c00355{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);}
.m49_c00355{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);}
.mca_c00355{transform:matrix(0.169355,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169355,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169355,0.001355,-0.002000,0.249992,0,0);}
.m8c_c00355{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);}
.m1c_c00355{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);}
.mda_c00355{transform:matrix(0.170116,0.002212,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170116,0.002212,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170116,0.002212,-0.003250,0.249979,0,0);}
.m22_c00355{transform:matrix(0.170198,-0.001532,0.002250,0.249990,0,0);-ms-transform:matrix(0.170198,-0.001532,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170198,-0.001532,0.002250,0.249990,0,0);}
.me0_c00355{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);}
.mbc_c00355{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);}
.m53_c00355{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);}
.m73_c00355{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.171785,-0.001890,0.002750,0.249985,0,0);-ms-transform:matrix(0.171785,-0.001890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171785,-0.001890,0.002750,0.249985,0,0);}
.m7c_c00355{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);}
.m1d_c00355{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);}
.m6a_c00355{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);}
.m13_c00355{transform:matrix(0.173005,-0.001903,0.002750,0.249985,0,0);-ms-transform:matrix(0.173005,-0.001903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173005,-0.001903,0.002750,0.249985,0,0);}
.m48_c00355{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);}
.m36_c00355{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);}
.m54_c00355{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);}
.mbb_c00355{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);}
.m4f_c00355{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);}
.m47_c00355{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);}
.m9a_c00355{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);}
.m5e_c00355{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);}
.m8f_c00355{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);}
.m87_c00355{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);}
.mdc_c00355{transform:matrix(0.176020,0.002288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176020,0.002288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176020,0.002288,-0.003250,0.249979,0,0);}
.mbe_c00355{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);}
.m10_c00355{transform:matrix(0.176594,-0.001943,0.002750,0.249985,0,0);-ms-transform:matrix(0.176594,-0.001943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176594,-0.001943,0.002750,0.249985,0,0);}
.m45_c00355{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);}
.m82_c00355{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);}
.mb7_c00355{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);}
.m69_c00355{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_c00355{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);}
.mb0_c00355{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);}
.m71_c00355{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);}
.m74_c00355{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);}
.m95_c00355{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);}
.m98_c00355{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);}
.m63_c00355{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);}
.m33_c00355{transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);}
.mc4_c00355{transform:matrix(0.179539,0.001436,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179539,0.001436,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179539,0.001436,-0.002000,0.249992,0,0);}
.m79_c00355{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);}
.m97_c00355{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);}
.m24_c00355{transform:matrix(0.180293,-0.001623,0.002250,0.249990,0,0);-ms-transform:matrix(0.180293,-0.001623,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180293,-0.001623,0.002250,0.249990,0,0);}
.m2a_c00355{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);}
.m17_c00355{transform:matrix(0.181384,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181384,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181384,-0.001995,0.002750,0.249985,0,0);}
.m59_c00355{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);}
.m77_c00355{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);}
.ma6_c00355{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);}
.m2e_c00355{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);}
.m84_c00355{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);}
.m3_c00355{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);}
.m86_c00355{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);}
.md6_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);}
.m99_c00355{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_c00355{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);}
.m67_c00355{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);}
.m6f_c00355{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);}
.m44_c00355{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);}
.mab_c00355{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);}
.m3c_c00355{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_c00355{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);}
.m57_c00355{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);}
.mec_c00355{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);}
.m39_c00355{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);}
.m7f_c00355{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);}
.m58_c00355{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);}
.m70_c00355{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);}
.mad_c00355{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);}
.m4d_c00355{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);}
.m6b_c00355{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);}
.md1_c00355{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);}
.ma1_c00355{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);}
.m89_c00355{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);}
.m65_c00355{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);}
.m1a_c00355{transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190723,-0.002098,0.002750,0.249985,0,0);}
.me_c00355{transform:matrix(0.190883,-0.002100,0.002750,0.249985,0,0);-ms-transform:matrix(0.190883,-0.002100,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190883,-0.002100,0.002750,0.249985,0,0);}
.mb4_c00355{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);}
.m21_c00355{transform:matrix(0.191492,-0.001723,0.002250,0.249990,0,0);-ms-transform:matrix(0.191492,-0.001723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191492,-0.001723,0.002250,0.249990,0,0);}
.m34_c00355{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);}
.m8e_c00355{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);}
.m56_c00355{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);}
.m83_c00355{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);}
.m25_c00355{transform:matrix(0.193297,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193297,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193297,-0.001740,0.002250,0.249990,0,0);}
.m5a_c00355{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);}
.m50_c00355{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);}
.md_c00355{transform:matrix(0.193913,-0.002133,0.002750,0.249985,0,0);-ms-transform:matrix(0.193913,-0.002133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193913,-0.002133,0.002750,0.249985,0,0);}
.m1b_c00355{transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194078,-0.002135,0.002750,0.249985,0,0);}
.m4b_c00355{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);}
.mae_c00355{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);}
.m14_c00355{transform:matrix(0.195278,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195278,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195278,-0.002148,0.002750,0.249985,0,0);}
.mb8_c00355{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);}
.maf_c00355{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);}
.m62_c00355{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);}
.m9d_c00355{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);}
.mb5_c00355{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);}
.m1e_c00355{transform:matrix(0.196877,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196877,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196877,-0.001772,0.002250,0.249990,0,0);}
.m20_c00355{transform:matrix(0.196907,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196907,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196907,-0.001772,0.002250,0.249990,0,0);}
.m51_c00355{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);}
.m35_c00355{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);}
.m94_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);}
.md0_c00355{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);}
.m96_c00355{transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);}
.m55_c00355{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);}
.m76_c00355{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);}
.m15_c00355{transform:matrix(0.200303,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200303,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200303,-0.002203,0.002750,0.249985,0,0);}
.m66_c00355{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);}
.mdd_c00355{transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);}
.me3_c00355{transform:matrix(0.201618,0.002621,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201618,0.002621,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201618,0.002621,-0.003250,0.249979,0,0);}
.m8a_c00355{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);}
.md2_c00355{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);}
.maa_c00355{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);}
.m64_c00355{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);}
.mc5_c00355{transform:matrix(0.203828,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203828,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203828,0.001631,-0.002000,0.249992,0,0);}
.m6c_c00355{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);}
.m3a_c00355{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);}
.mce_c00355{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);}
.m8b_c00355{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);}
.ma8_c00355{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);}
.mc9_c00355{transform:matrix(0.205163,0.001641,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205163,0.001641,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205163,0.001641,-0.002000,0.249992,0,0);}
.m30_c00355{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);}
.md8_c00355{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.med_c00355{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);}
.m19_c00355{transform:matrix(0.206867,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206867,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206867,-0.002276,0.002750,0.249985,0,0);}
.m9c_c00355{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);}
.m9_c00355{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);}
.m42_c00355{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);}
.mc6_c00355{transform:matrix(0.208648,0.001669,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208648,0.001669,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208648,0.001669,-0.002000,0.249992,0,0);}
.m2c_c00355{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);}
.mc2_c00355{transform:matrix(0.209263,0.001674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209263,0.001674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209263,0.001674,-0.002000,0.249992,0,0);}
.m9e_c00355{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);}
.me1_c00355{transform:matrix(0.210192,0.002732,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210192,0.002732,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210192,0.002732,-0.003250,0.249979,0,0);}
.m27_c00355{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);}
.m93_c00355{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);}
.ma_c00355{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);}
.ma4_c00355{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);}
.m8_c00355{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);}
.md5_c00355{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);}
.m31_c00355{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);}
.mc8_c00355{transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214163,0.001713,-0.002000,0.249992,0,0);}
.m5_c00355{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);}
.m41_c00355{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);}
.m4_c00355{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);}
.m92_c00355{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);}
.mbf_c00355{transform:matrix(0.217148,0.001737,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217148,0.001737,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217148,0.001737,-0.002000,0.249992,0,0);}
.m2b_c00355{transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);}
.me6_c00355{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);}
.m6_c00355{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_c00355{transform:matrix(0.221358,0.001771,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221358,0.001771,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221358,0.001771,-0.002000,0.249992,0,0);}
.m32_c00355{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);}
.mb9_c00355{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);}
.m29_c00355{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);}
.me4_c00355{transform:matrix(0.225096,0.002926,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225096,0.002926,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225096,0.002926,-0.003250,0.249979,0,0);}
.m72_c00355{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);}
.m2d_c00355{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.mf8_c00355{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);}
.m4c_c00355{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);}
.mc3_c00355{transform:matrix(0.234577,0.001877,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234577,0.001877,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234577,0.001877,-0.002000,0.249992,0,0);}
.md4_c00355{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);}
.ma9_c00355{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);}
.mdf_c00355{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);}
.md3_c00355{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);}
.mc0_c00355{transform:matrix(0.240412,0.001923,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240412,0.001923,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240412,0.001923,-0.002000,0.249992,0,0);}
.m7_c00355{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);}
.mc1_c00355{transform:matrix(0.241102,0.001929,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241102,0.001929,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241102,0.001929,-0.002000,0.249992,0,0);}
.m6d_c00355{transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00355{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);}
.md7_c00355{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);}
.mdb_c00355{transform:matrix(0.245199,0.003188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245199,0.003188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245199,0.003188,-0.003250,0.249979,0,0);}
.mb6_c00355{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m5f_c00355{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);}
.m5b_c00355{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.mcd_c00355{transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.267544,-0.002943,0.002750,0.249985,0,0);-ms-transform:matrix(0.267544,-0.002943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267544,-0.002943,0.002750,0.249985,0,0);}
.m5c_c00355{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);}
.me2_c00355{transform:matrix(0.358110,0.004655,-0.003250,0.249979,0,0);-ms-transform:matrix(0.358110,0.004655,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.358110,0.004655,-0.003250,0.249979,0,0);}
.mc_c00355{transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358125,0.000000,0.000000,0.250000,0,0);}
.mf2_c00355{transform:matrix(0.415700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415700,0.000000,0.000000,0.250000,0,0);}
.mf3_c00355{transform:matrix(0.432220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432220,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.479520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479520,0.000000,0.000000,0.250000,0,0);}
.mee_c00355{transform:matrix(0.481920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481920,0.000000,0.000000,0.250000,0,0);}
.mf5_c00355{transform:matrix(0.515700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515700,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.763265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763265,0.000000,0.000000,0.250000,0,0);}
.mf4_c00355{transform:matrix(0.782610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782610,0.000000,0.000000,0.250000,0,0);}
.md9_c00355{transform:matrix(0.839485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.839485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.839485,0.000000,0.000000,0.250000,0,0);}
.me8_c00355{transform:matrix(0.851950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851950,0.000000,0.000000,0.250000,0,0);}
.me5_c00355{transform:matrix(0.892995,0.011609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.892995,0.011609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.892995,0.011609,-0.003250,0.249979,0,0);}
.mcc_c00355{transform:matrix(0.966200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966200,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;}
.fs11_c00355{font-size:49.354170px;}
.fs10_c00355{font-size:52.500000px;}
.fsf_c00355{font-size:54.600000px;}
.fs13_c00355{font-size:57.750000px;}
.fsd_c00355{font-size:60.900000px;}
.fse_c00355{font-size:60.901949px;}
.fs9_c00355{font-size:67.200000px;}
.fs5_c00355{font-size:68.250000px;}
.fs7_c00355{font-size:69.300000px;}
.fs6_c00355{font-size:70.350000px;}
.fs2_c00355{font-size:70.354256px;}
.fsa_c00355{font-size:71.400000px;}
.fs3_c00355{font-size:71.404320px;}
.fsb_c00355{font-size:72.450000px;}
.fs4_c00355{font-size:72.452934px;}
.fs8_c00355{font-size:73.500000px;}
.fsc_c00355{font-size:74.550000px;}
.fs14_c00355{font-size:75.600000px;}
.fs0_c00355{font-size:90.300000px;}
.fs1_c00355{font-size:134.400000px;}
.fs12_c00355{font-size:143.850000px;}
.y0_c00355{bottom:0.000000px;}
.y5d_c00355{bottom:110.739000px;}
.y59_c00355{bottom:117.180000px;}
.y5a_c00355{bottom:119.031000px;}
.y5b_c00355{bottom:120.240000px;}
.y5c_c00355{bottom:120.825000px;}
.y58_c00355{bottom:151.950000px;}
.y57_c00355{bottom:159.840000px;}
.y56_c00355{bottom:164.986021px;}
.y55_c00355{bottom:167.871144px;}
.y54_c00355{bottom:168.232732px;}
.y53_c00355{bottom:168.419289px;}
.y52_c00355{bottom:168.748566px;}
.y51_c00355{bottom:169.071545px;}
.y50_c00355{bottom:169.331304px;}
.y4f_c00355{bottom:169.457157px;}
.y4e_c00355{bottom:170.187997px;}
.y4d_c00355{bottom:170.475701px;}
.y4c_c00355{bottom:170.763501px;}
.y4b_c00355{bottom:171.451500px;}
.y4a_c00355{bottom:183.657000px;}
.y49_c00355{bottom:184.212000px;}
.y48_c00355{bottom:184.681500px;}
.y47_c00355{bottom:185.301000px;}
.y46_c00355{bottom:185.634000px;}
.y45_c00355{bottom:186.000000px;}
.y44_c00355{bottom:186.261000px;}
.y43_c00355{bottom:186.931500px;}
.y42_c00355{bottom:187.422000px;}
.y41_c00355{bottom:187.897500px;}
.y40_c00355{bottom:188.209500px;}
.y3f_c00355{bottom:188.743500px;}
.y3e_c00355{bottom:189.001500px;}
.y3d_c00355{bottom:195.346500px;}
.y3c_c00355{bottom:245.845500px;}
.y3b_c00355{bottom:267.976428px;}
.y3a_c00355{bottom:287.725788px;}
.y39_c00355{bottom:288.045768px;}
.y38_c00355{bottom:288.317628px;}
.y37_c00355{bottom:288.877416px;}
.y36_c00355{bottom:289.077948px;}
.y35_c00355{bottom:289.229484px;}
.y34_c00355{bottom:289.847328px;}
.y33_c00355{bottom:290.004972px;}
.y32_c00355{bottom:290.350452px;}
.y31_c00355{bottom:290.873496px;}
.y30_c00355{bottom:291.331500px;}
.y2f_c00355{bottom:311.758500px;}
.y2e_c00355{bottom:334.453500px;}
.y2d_c00355{bottom:363.276000px;}
.y2c_c00355{bottom:391.230000px;}
.y2b_c00355{bottom:413.910000px;}
.y2a_c00355{bottom:441.963000px;}
.y29_c00355{bottom:460.528500px;}
.y28_c00355{bottom:483.090000px;}
.y27_c00355{bottom:505.710000px;}
.y26_c00355{bottom:528.660000px;}
.y25_c00355{bottom:551.377500px;}
.y24_c00355{bottom:579.496500px;}
.y23_c00355{bottom:597.982500px;}
.y22_c00355{bottom:620.971500px;}
.y21_c00355{bottom:643.903500px;}
.y20_c00355{bottom:666.283500px;}
.y1f_c00355{bottom:692.280000px;}
.y1e_c00355{bottom:721.440000px;}
.y1d_c00355{bottom:745.008000px;}
.y14_c00355{bottom:772.741500px;}
.y15_c00355{bottom:772.979721px;}
.y16_c00355{bottom:773.281027px;}
.y17_c00355{bottom:773.426517px;}
.y18_c00355{bottom:773.694262px;}
.y19_c00355{bottom:774.301803px;}
.y1a_c00355{bottom:774.952975px;}
.y1b_c00355{bottom:775.287924px;}
.y1c_c00355{bottom:775.609089px;}
.yc_c00355{bottom:799.739759px;}
.yd_c00355{bottom:800.155179px;}
.ye_c00355{bottom:800.586225px;}
.yf_c00355{bottom:800.987208px;}
.y10_c00355{bottom:801.085350px;}
.y11_c00355{bottom:802.079821px;}
.y12_c00355{bottom:802.534727px;}
.y13_c00355{bottom:803.146580px;}
.y3_c00355{bottom:822.151500px;}
.y4_c00355{bottom:823.297920px;}
.y5_c00355{bottom:823.636055px;}
.y6_c00355{bottom:823.978198px;}
.y7_c00355{bottom:824.456500px;}
.y8_c00355{bottom:824.981597px;}
.y9_c00355{bottom:825.282985px;}
.ya_c00355{bottom:825.614916px;}
.yb_c00355{bottom:826.407197px;}
.y2_c00355{bottom:871.101000px;}
.y1_c00355{bottom:930.946500px;}
.h13_c00355{height:49.354170px;}
.h12_c00355{height:52.500000px;}
.h11_c00355{height:54.600000px;}
.h15_c00355{height:57.750000px;}
.hf_c00355{height:60.900000px;}
.h10_c00355{height:60.901949px;}
.hb_c00355{height:67.200000px;}
.h7_c00355{height:68.250000px;}
.h9_c00355{height:69.300000px;}
.h8_c00355{height:70.350000px;}
.h4_c00355{height:70.354256px;}
.hc_c00355{height:71.400000px;}
.h5_c00355{height:71.404320px;}
.hd_c00355{height:72.450000px;}
.h6_c00355{height:72.452934px;}
.ha_c00355{height:73.500000px;}
.he_c00355{height:74.550000px;}
.h16_c00355{height:75.600000px;}
.h2_c00355{height:90.300000px;}
.h3_c00355{height:134.400000px;}
.h14_c00355{height:143.850000px;}
.h0_c00355{height:1008.450000px;}
.h1_c00355{height:1008.750000px;}
.w0_c00355{width:696.000000px;}
.x0_c00355{left:0.000000px;}
.x9f_c00355{left:88.560000px;}
.xa0_c00355{left:99.900000px;}
.x1_c00355{left:129.060000px;}
.x7d_c00355{left:144.180000px;}
.xa1_c00355{left:153.900000px;}
.x7e_c00355{left:155.250000px;}
.x41_c00355{left:157.410000px;}
.x67_c00355{left:158.490000px;}
.x30_c00355{left:159.570000px;}
.x2_c00355{left:160.920000px;}
.xc_c00355{left:166.590000px;}
.x85_c00355{left:172.530000px;}
.x58_c00355{left:174.690000px;}
.x25_c00355{left:177.930000px;}
.xe_c00355{left:183.481500px;}
.x8b_c00355{left:186.840000px;}
.x82_c00355{left:191.160000px;}
.x60_c00355{left:193.590000px;}
.x35_c00355{left:194.940000px;}
.x1d_c00355{left:196.399500px;}
.x16_c00355{left:198.014188px;}
.x7f_c00355{left:200.610000px;}
.x52_c00355{left:202.500000px;}
.x31_c00355{left:204.390000px;}
.x26_c00355{left:205.470000px;}
.x59_c00355{left:206.820000px;}
.x9c_c00355{left:208.597500px;}
.x90_c00355{left:212.092500px;}
.xa2_c00355{left:220.860000px;}
.x1e_c00355{left:222.868500px;}
.x53_c00355{left:224.370000px;}
.x6c_c00355{left:231.120000px;}
.x32_c00355{left:235.710000px;}
.x17_c00355{left:237.200188px;}
.x27_c00355{left:238.680000px;}
.x42_c00355{left:239.760000px;}
.x54_c00355{left:243.270000px;}
.x68_c00355{left:244.350000px;}
.x80_c00355{left:251.910000px;}
.x83_c00355{left:252.990000px;}
.x1f_c00355{left:256.347000px;}
.x36_c00355{left:258.390000px;}
.x4a_c00355{left:260.550000px;}
.x28_c00355{left:264.330000px;}
.x98_c00355{left:267.739500px;}
.x5a_c00355{left:268.920000px;}
.x20_c00355{left:272.512500px;}
.x18_c00355{left:273.653188px;}
.x4b_c00355{left:277.560000px;}
.x38_c00355{left:279.720000px;}
.x19_c00355{left:282.575188px;}
.xd_c00355{left:284.850000px;}
.xf_c00355{left:287.701500px;}
.x84_c00355{left:289.980000px;}
.x43_c00355{left:293.490000px;}
.x3_c00355{left:294.570000px;}
.x37_c00355{left:297.270000px;}
.x61_c00355{left:299.430000px;}
.x21_c00355{left:302.262000px;}
.x29_c00355{left:303.480000px;}
.x33_c00355{left:308.340000px;}
.x39_c00355{left:309.960000px;}
.x4c_c00355{left:313.200000px;}
.x76_c00355{left:314.280000px;}
.x10_c00355{left:318.441000px;}
.x6d_c00355{left:319.680000px;}
.x8c_c00355{left:320.760000px;}
.x62_c00355{left:322.110000px;}
.x86_c00355{left:326.700000px;}
.x34_c00355{left:332.100000px;}
.x5b_c00355{left:333.720000px;}
.x9d_c00355{left:338.748000px;}
.x3a_c00355{left:341.010000px;}
.x4d_c00355{left:343.170000px;}
.x44_c00355{left:344.520000px;}
.x81_c00355{left:345.600000px;}
.x77_c00355{left:347.490000px;}
.x11_c00355{left:349.545000px;}
.x2a_c00355{left:351.810000px;}
.x99_c00355{left:355.527000px;}
.x63_c00355{left:358.020000px;}
.x6e_c00355{left:361.530000px;}
.x9e_c00355{left:363.592500px;}
.xa3_c00355{left:365.325000px;}
.x3b_c00355{left:366.930000px;}
.x5c_c00355{left:368.550000px;}
.x22_c00355{left:369.766500px;}
.x1a_c00355{left:372.981688px;}
.x87_c00355{left:376.110000px;}
.x2b_c00355{left:384.750000px;}
.x64_c00355{left:386.370000px;}
.x78_c00355{left:387.990000px;}
.x12_c00355{left:393.027000px;}
.x55_c00355{left:397.710000px;}
.x45_c00355{left:403.380000px;}
.x2c_c00355{left:406.890000px;}
.x6f_c00355{left:412.290000px;}
.x1b_c00355{left:414.336689px;}
.x73_c00355{left:415.530000px;}
.x3c_c00355{left:416.880000px;}
.x65_c00355{left:419.580000px;}
.x56_c00355{left:421.470000px;}
.x46_c00355{left:425.520000px;}
.x4e_c00355{left:427.140000px;}
.x4_c00355{left:430.920000px;}
.x69_c00355{left:435.240000px;}
.x91_c00355{left:436.536000px;}
.x8d_c00355{left:439.560000px;}
.x13_c00355{left:440.763000px;}
.x23_c00355{left:442.119000px;}
.x79_c00355{left:443.340000px;}
.x5_c00355{left:452.520000px;}
.x66_c00355{left:454.410000px;}
.x2d_c00355{left:458.190000px;}
.x74_c00355{left:460.080000px;}
.x92_c00355{left:461.602500px;}
.x7a_c00355{left:467.100000px;}
.x14_c00355{left:468.162000px;}
.x1c_c00355{left:469.959689px;}
.x6_c00355{left:472.770000px;}
.x70_c00355{left:473.850000px;}
.x24_c00355{left:479.335500px;}
.x4f_c00355{left:483.030000px;}
.x57_c00355{left:490.590000px;}
.x2e_c00355{left:491.940000px;}
.x8e_c00355{left:494.640000px;}
.x15_c00355{left:498.337500px;}
.x3d_c00355{left:499.500000px;}
.x9a_c00355{left:503.721000px;}
.x7b_c00355{left:505.710000px;}
.x50_c00355{left:508.410000px;}
.x5d_c00355{left:512.190000px;}
.x71_c00355{left:513.270000px;}
.x7_c00355{left:514.620000px;}
.x88_c00355{left:518.670000px;}
.x6a_c00355{left:523.800000px;}
.x93_c00355{left:531.576000px;}
.x75_c00355{left:532.710000px;}
.x8_c00355{left:534.060000px;}
.xa4_c00355{left:538.098000px;}
.x3e_c00355{left:542.430000px;}
.x47_c00355{left:543.780000px;}
.x6b_c00355{left:552.150000px;}
.x89_c00355{left:555.660000px;}
.x9b_c00355{left:560.085000px;}
.x94_c00355{left:565.558500px;}
.x9_c00355{left:570.510000px;}
.x5e_c00355{left:571.590000px;}
.x72_c00355{left:575.640000px;}
.x51_c00355{left:577.800000px;}
.x96_c00355{left:585.090000px;}
.x2f_c00355{left:588.060000px;}
.xa_c00355{left:590.490000px;}
.x3f_c00355{left:591.570000px;}
.x5f_c00355{left:594.540000px;}
.x8a_c00355{left:597.240000px;}
.x8f_c00355{left:602.370000px;}
.x95_c00355{left:605.556000px;}
.x7c_c00355{left:607.230000px;}
.x48_c00355{left:608.580000px;}
.x40_c00355{left:613.440000px;}
.xa5_c00355{left:621.673500px;}
.x49_c00355{left:623.700000px;}
.xb_c00355{left:632.610000px;}
.xa6_c00355{left:643.950000px;}
.x97_c00355{left:653.670000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.fs11_c00355{font-size:43.870373pt;}
.fs10_c00355{font-size:46.666667pt;}
.fsf_c00355{font-size:48.533333pt;}
.fs13_c00355{font-size:51.333333pt;}
.fsd_c00355{font-size:54.133333pt;}
.fse_c00355{font-size:54.135066pt;}
.fs9_c00355{font-size:59.733333pt;}
.fs5_c00355{font-size:60.666667pt;}
.fs7_c00355{font-size:61.600000pt;}
.fs6_c00355{font-size:62.533333pt;}
.fs2_c00355{font-size:62.537116pt;}
.fsa_c00355{font-size:63.466667pt;}
.fs3_c00355{font-size:63.470506pt;}
.fsb_c00355{font-size:64.400000pt;}
.fs4_c00355{font-size:64.402608pt;}
.fs8_c00355{font-size:65.333333pt;}
.fsc_c00355{font-size:66.266667pt;}
.fs14_c00355{font-size:67.200000pt;}
.fs0_c00355{font-size:80.266667pt;}
.fs1_c00355{font-size:119.466667pt;}
.fs12_c00355{font-size:127.866667pt;}
.y0_c00355{bottom:0.000000pt;}
.y5d_c00355{bottom:98.434667pt;}
.y59_c00355{bottom:104.160000pt;}
.y5a_c00355{bottom:105.805333pt;}
.y5b_c00355{bottom:106.880000pt;}
.y5c_c00355{bottom:107.400000pt;}
.y58_c00355{bottom:135.066667pt;}
.y57_c00355{bottom:142.080000pt;}
.y56_c00355{bottom:146.654241pt;}
.y55_c00355{bottom:149.218795pt;}
.y54_c00355{bottom:149.540207pt;}
.y53_c00355{bottom:149.706035pt;}
.y52_c00355{bottom:149.998725pt;}
.y51_c00355{bottom:150.285817pt;}
.y50_c00355{bottom:150.516715pt;}
.y4f_c00355{bottom:150.628584pt;}
.y4e_c00355{bottom:151.278220pt;}
.y4d_c00355{bottom:151.533956pt;}
.y4c_c00355{bottom:151.789779pt;}
.y4b_c00355{bottom:152.401333pt;}
.y4a_c00355{bottom:163.250667pt;}
.y49_c00355{bottom:163.744000pt;}
.y48_c00355{bottom:164.161333pt;}
.y47_c00355{bottom:164.712000pt;}
.y46_c00355{bottom:165.008000pt;}
.y45_c00355{bottom:165.333333pt;}
.y44_c00355{bottom:165.565333pt;}
.y43_c00355{bottom:166.161333pt;}
.y42_c00355{bottom:166.597333pt;}
.y41_c00355{bottom:167.020000pt;}
.y40_c00355{bottom:167.297333pt;}
.y3f_c00355{bottom:167.772000pt;}
.y3e_c00355{bottom:168.001333pt;}
.y3d_c00355{bottom:173.641333pt;}
.y3c_c00355{bottom:218.529333pt;}
.y3b_c00355{bottom:238.201269pt;}
.y3a_c00355{bottom:255.756256pt;}
.y39_c00355{bottom:256.040683pt;}
.y38_c00355{bottom:256.282336pt;}
.y37_c00355{bottom:256.779925pt;}
.y36_c00355{bottom:256.958176pt;}
.y35_c00355{bottom:257.092875pt;}
.y34_c00355{bottom:257.642069pt;}
.y33_c00355{bottom:257.782197pt;}
.y32_c00355{bottom:258.089291pt;}
.y31_c00355{bottom:258.554219pt;}
.y30_c00355{bottom:258.961333pt;}
.y2f_c00355{bottom:277.118667pt;}
.y2e_c00355{bottom:297.292000pt;}
.y2d_c00355{bottom:322.912000pt;}
.y2c_c00355{bottom:347.760000pt;}
.y2b_c00355{bottom:367.920000pt;}
.y2a_c00355{bottom:392.856000pt;}
.y29_c00355{bottom:409.358667pt;}
.y28_c00355{bottom:429.413333pt;}
.y27_c00355{bottom:449.520000pt;}
.y26_c00355{bottom:469.920000pt;}
.y25_c00355{bottom:490.113333pt;}
.y24_c00355{bottom:515.108000pt;}
.y23_c00355{bottom:531.540000pt;}
.y22_c00355{bottom:551.974667pt;}
.y21_c00355{bottom:572.358667pt;}
.y20_c00355{bottom:592.252000pt;}
.y1f_c00355{bottom:615.360000pt;}
.y1e_c00355{bottom:641.280000pt;}
.y1d_c00355{bottom:662.229333pt;}
.y14_c00355{bottom:686.881333pt;}
.y15_c00355{bottom:687.093085pt;}
.y16_c00355{bottom:687.360913pt;}
.y17_c00355{bottom:687.490237pt;}
.y18_c00355{bottom:687.728233pt;}
.y19_c00355{bottom:688.268269pt;}
.y1a_c00355{bottom:688.847089pt;}
.y1b_c00355{bottom:689.144821pt;}
.y1c_c00355{bottom:689.430301pt;}
.yc_c00355{bottom:710.879785pt;}
.yd_c00355{bottom:711.249048pt;}
.ye_c00355{bottom:711.632200pt;}
.yf_c00355{bottom:711.988629pt;}
.y10_c00355{bottom:712.075867pt;}
.y11_c00355{bottom:712.959841pt;}
.y12_c00355{bottom:713.364201pt;}
.y13_c00355{bottom:713.908071pt;}
.y3_c00355{bottom:730.801333pt;}
.y4_c00355{bottom:731.820373pt;}
.y5_c00355{bottom:732.120937pt;}
.y6_c00355{bottom:732.425065pt;}
.y7_c00355{bottom:732.850223pt;}
.y8_c00355{bottom:733.316975pt;}
.y9_c00355{bottom:733.584876pt;}
.ya_c00355{bottom:733.879925pt;}
.yb_c00355{bottom:734.584175pt;}
.y2_c00355{bottom:774.312000pt;}
.y1_c00355{bottom:827.508000pt;}
.h13_c00355{height:43.870373pt;}
.h12_c00355{height:46.666667pt;}
.h11_c00355{height:48.533333pt;}
.h15_c00355{height:51.333333pt;}
.hf_c00355{height:54.133333pt;}
.h10_c00355{height:54.135066pt;}
.hb_c00355{height:59.733333pt;}
.h7_c00355{height:60.666667pt;}
.h9_c00355{height:61.600000pt;}
.h8_c00355{height:62.533333pt;}
.h4_c00355{height:62.537116pt;}
.hc_c00355{height:63.466667pt;}
.h5_c00355{height:63.470506pt;}
.hd_c00355{height:64.400000pt;}
.h6_c00355{height:64.402608pt;}
.ha_c00355{height:65.333333pt;}
.he_c00355{height:66.266667pt;}
.h16_c00355{height:67.200000pt;}
.h2_c00355{height:80.266667pt;}
.h3_c00355{height:119.466667pt;}
.h14_c00355{height:127.866667pt;}
.h0_c00355{height:896.400000pt;}
.h1_c00355{height:896.666667pt;}
.w0_c00355{width:618.666667pt;}
.x0_c00355{left:0.000000pt;}
.x9f_c00355{left:78.720000pt;}
.xa0_c00355{left:88.800000pt;}
.x1_c00355{left:114.720000pt;}
.x7d_c00355{left:128.160000pt;}
.xa1_c00355{left:136.800000pt;}
.x7e_c00355{left:138.000000pt;}
.x41_c00355{left:139.920000pt;}
.x67_c00355{left:140.880000pt;}
.x30_c00355{left:141.840000pt;}
.x2_c00355{left:143.040000pt;}
.xc_c00355{left:148.080000pt;}
.x85_c00355{left:153.360000pt;}
.x58_c00355{left:155.280000pt;}
.x25_c00355{left:158.160000pt;}
.xe_c00355{left:163.094667pt;}
.x8b_c00355{left:166.080000pt;}
.x82_c00355{left:169.920000pt;}
.x60_c00355{left:172.080000pt;}
.x35_c00355{left:173.280000pt;}
.x1d_c00355{left:174.577333pt;}
.x16_c00355{left:176.012612pt;}
.x7f_c00355{left:178.320000pt;}
.x52_c00355{left:180.000000pt;}
.x31_c00355{left:181.680000pt;}
.x26_c00355{left:182.640000pt;}
.x59_c00355{left:183.840000pt;}
.x9c_c00355{left:185.420000pt;}
.x90_c00355{left:188.526667pt;}
.xa2_c00355{left:196.320000pt;}
.x1e_c00355{left:198.105333pt;}
.x53_c00355{left:199.440000pt;}
.x6c_c00355{left:205.440000pt;}
.x32_c00355{left:209.520000pt;}
.x17_c00355{left:210.844612pt;}
.x27_c00355{left:212.160000pt;}
.x42_c00355{left:213.120000pt;}
.x54_c00355{left:216.240000pt;}
.x68_c00355{left:217.200000pt;}
.x80_c00355{left:223.920000pt;}
.x83_c00355{left:224.880000pt;}
.x1f_c00355{left:227.864000pt;}
.x36_c00355{left:229.680000pt;}
.x4a_c00355{left:231.600000pt;}
.x28_c00355{left:234.960000pt;}
.x98_c00355{left:237.990667pt;}
.x5a_c00355{left:239.040000pt;}
.x20_c00355{left:242.233333pt;}
.x18_c00355{left:243.247279pt;}
.x4b_c00355{left:246.720000pt;}
.x38_c00355{left:248.640000pt;}
.x19_c00355{left:251.177945pt;}
.xd_c00355{left:253.200000pt;}
.xf_c00355{left:255.734667pt;}
.x84_c00355{left:257.760000pt;}
.x43_c00355{left:260.880000pt;}
.x3_c00355{left:261.840000pt;}
.x37_c00355{left:264.240000pt;}
.x61_c00355{left:266.160000pt;}
.x21_c00355{left:268.677333pt;}
.x29_c00355{left:269.760000pt;}
.x33_c00355{left:274.080000pt;}
.x39_c00355{left:275.520000pt;}
.x4c_c00355{left:278.400000pt;}
.x76_c00355{left:279.360000pt;}
.x10_c00355{left:283.058667pt;}
.x6d_c00355{left:284.160000pt;}
.x8c_c00355{left:285.120000pt;}
.x62_c00355{left:286.320000pt;}
.x86_c00355{left:290.400000pt;}
.x34_c00355{left:295.200000pt;}
.x5b_c00355{left:296.640000pt;}
.x9d_c00355{left:301.109333pt;}
.x3a_c00355{left:303.120000pt;}
.x4d_c00355{left:305.040000pt;}
.x44_c00355{left:306.240000pt;}
.x81_c00355{left:307.200000pt;}
.x77_c00355{left:308.880000pt;}
.x11_c00355{left:310.706667pt;}
.x2a_c00355{left:312.720000pt;}
.x99_c00355{left:316.024000pt;}
.x63_c00355{left:318.240000pt;}
.x6e_c00355{left:321.360000pt;}
.x9e_c00355{left:323.193333pt;}
.xa3_c00355{left:324.733333pt;}
.x3b_c00355{left:326.160000pt;}
.x5c_c00355{left:327.600000pt;}
.x22_c00355{left:328.681333pt;}
.x1a_c00355{left:331.539279pt;}
.x87_c00355{left:334.320000pt;}
.x2b_c00355{left:342.000000pt;}
.x64_c00355{left:343.440000pt;}
.x78_c00355{left:344.880000pt;}
.x12_c00355{left:349.357333pt;}
.x55_c00355{left:353.520000pt;}
.x45_c00355{left:358.560000pt;}
.x2c_c00355{left:361.680000pt;}
.x6f_c00355{left:366.480000pt;}
.x1b_c00355{left:368.299279pt;}
.x73_c00355{left:369.360000pt;}
.x3c_c00355{left:370.560000pt;}
.x65_c00355{left:372.960000pt;}
.x56_c00355{left:374.640000pt;}
.x46_c00355{left:378.240000pt;}
.x4e_c00355{left:379.680000pt;}
.x4_c00355{left:383.040000pt;}
.x69_c00355{left:386.880000pt;}
.x91_c00355{left:388.032000pt;}
.x8d_c00355{left:390.720000pt;}
.x13_c00355{left:391.789333pt;}
.x23_c00355{left:392.994667pt;}
.x79_c00355{left:394.080000pt;}
.x5_c00355{left:402.240000pt;}
.x66_c00355{left:403.920000pt;}
.x2d_c00355{left:407.280000pt;}
.x74_c00355{left:408.960000pt;}
.x92_c00355{left:410.313333pt;}
.x7a_c00355{left:415.200000pt;}
.x14_c00355{left:416.144000pt;}
.x1c_c00355{left:417.741945pt;}
.x6_c00355{left:420.240000pt;}
.x70_c00355{left:421.200000pt;}
.x24_c00355{left:426.076000pt;}
.x4f_c00355{left:429.360000pt;}
.x57_c00355{left:436.080000pt;}
.x2e_c00355{left:437.280000pt;}
.x8e_c00355{left:439.680000pt;}
.x15_c00355{left:442.966667pt;}
.x3d_c00355{left:444.000000pt;}
.x9a_c00355{left:447.752000pt;}
.x7b_c00355{left:449.520000pt;}
.x50_c00355{left:451.920000pt;}
.x5d_c00355{left:455.280000pt;}
.x71_c00355{left:456.240000pt;}
.x7_c00355{left:457.440000pt;}
.x88_c00355{left:461.040000pt;}
.x6a_c00355{left:465.600000pt;}
.x93_c00355{left:472.512000pt;}
.x75_c00355{left:473.520000pt;}
.x8_c00355{left:474.720000pt;}
.xa4_c00355{left:478.309333pt;}
.x3e_c00355{left:482.160000pt;}
.x47_c00355{left:483.360000pt;}
.x6b_c00355{left:490.800000pt;}
.x89_c00355{left:493.920000pt;}
.x9b_c00355{left:497.853333pt;}
.x94_c00355{left:502.718667pt;}
.x9_c00355{left:507.120000pt;}
.x5e_c00355{left:508.080000pt;}
.x72_c00355{left:511.680000pt;}
.x51_c00355{left:513.600000pt;}
.x96_c00355{left:520.080000pt;}
.x2f_c00355{left:522.720000pt;}
.xa_c00355{left:524.880000pt;}
.x3f_c00355{left:525.840000pt;}
.x5f_c00355{left:528.480000pt;}
.x8a_c00355{left:530.880000pt;}
.x8f_c00355{left:535.440000pt;}
.x95_c00355{left:538.272000pt;}
.x7c_c00355{left:539.760000pt;}
.x48_c00355{left:540.960000pt;}
.x40_c00355{left:545.280000pt;}
.xa5_c00355{left:552.598667pt;}
.x49_c00355{left:554.400000pt;}
.xb_c00355{left:562.320000pt;}
.xa6_c00355{left:572.400000pt;}
.x97_c00355{left:581.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_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_ef4e99a7aa2876b3106553d3.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;}
.mc7_c00356{transform:matrix(0.029670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029670,0.000000,0.000000,0.250000,0,0);}
.m70_c00356{transform:matrix(0.053223,0.000426,-0.002000,0.249992,0,0);-ms-transform:matrix(0.053223,0.000426,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.053223,0.000426,-0.002000,0.249992,0,0);}
.mb4_c00356{transform:matrix(0.064777,0.000583,-0.002250,0.249990,0,0);-ms-transform:matrix(0.064777,0.000583,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.064777,0.000583,-0.002250,0.249990,0,0);}
.m67_c00356{transform:matrix(0.094362,0.000755,-0.002000,0.249992,0,0);-ms-transform:matrix(0.094362,0.000755,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.094362,0.000755,-0.002000,0.249992,0,0);}
.m3a_c00356{transform:matrix(0.117725,0.001060,-0.002250,0.249990,0,0);-ms-transform:matrix(0.117725,0.001060,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.117725,0.001060,-0.002250,0.249990,0,0);}
.m6d_c00356{transform:matrix(0.131741,0.001054,-0.002000,0.249992,0,0);-ms-transform:matrix(0.131741,0.001054,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.131741,0.001054,-0.002000,0.249992,0,0);}
.m52_c00356{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m5c_c00356{transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{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);}
.m4b_c00356{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);}
.maf_c00356{transform:matrix(0.148354,0.001335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148354,0.001335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148354,0.001335,-0.002250,0.249990,0,0);}
.m51_c00356{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.151644,0.001365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151644,0.001365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151644,0.001365,-0.002250,0.249990,0,0);}
.m50_c00356{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);}
.ma7_c00356{transform:matrix(0.152739,0.001375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152739,0.001375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152739,0.001375,-0.002250,0.249990,0,0);}
.m98_c00356{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m7b_c00356{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);}
.m57_c00356{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);}
.m53_c00356{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);}
.m15_c00356{transform:matrix(0.156242,0.001562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156242,0.001562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156242,0.001562,-0.002500,0.249988,0,0);}
.m58_c00356{transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{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);}
.m7e_c00356{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);}
.m46_c00356{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.ma2_c00356{transform:matrix(0.159574,0.001915,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159574,0.001915,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159574,0.001915,-0.003000,0.249982,0,0);}
.mb_c00356{transform:matrix(0.160267,0.001603,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160267,0.001603,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160267,0.001603,-0.002500,0.249988,0,0);}
.m61_c00356{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);}
.ma1_c00356{transform:matrix(0.165728,0.001989,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165728,0.001989,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165728,0.001989,-0.003000,0.249982,0,0);}
.m4f_c00356{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);}
.m73_c00356{transform:matrix(0.165860,0.001327,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165860,0.001327,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165860,0.001327,-0.002000,0.249992,0,0);}
.mc0_c00356{transform:matrix(0.166748,0.001501,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166748,0.001501,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166748,0.001501,-0.002250,0.249990,0,0);}
.m17_c00356{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.m49_c00356{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);}
.mbc_c00356{transform:matrix(0.169173,0.001523,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169173,0.001523,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169173,0.001523,-0.002250,0.249990,0,0);}
.m9f_c00356{transform:matrix(0.169198,0.002030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169198,0.002030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169198,0.002030,-0.003000,0.249982,0,0);}
.m80_c00356{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);}
.m16_c00356{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);}
.mb8_c00356{transform:matrix(0.171473,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171473,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171473,0.001543,-0.002250,0.249990,0,0);}
.mc3_c00356{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);}
.m44_c00356{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);}
.m3b_c00356{transform:matrix(0.173948,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173948,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173948,0.001566,-0.002250,0.249990,0,0);}
.m96_c00356{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);}
.mbe_c00356{transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174203,0.001568,-0.002250,0.249990,0,0);}
.m89_c00356{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);}
.m2b_c00356{transform:matrix(0.175168,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175168,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175168,0.001577,-0.002250,0.249990,0,0);}
.ma6_c00356{transform:matrix(0.175978,0.001584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175978,0.001584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175978,0.001584,-0.002250,0.249990,0,0);}
.mc_c00356{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);}
.m31_c00356{transform:matrix(0.177228,0.001595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177228,0.001595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177228,0.001595,-0.002250,0.249990,0,0);}
.mb2_c00356{transform:matrix(0.177808,0.001600,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177808,0.001600,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177808,0.001600,-0.002250,0.249990,0,0);}
.mae_c00356{transform:matrix(0.178548,0.001607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178548,0.001607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178548,0.001607,-0.002250,0.249990,0,0);}
.m8a_c00356{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);}
.m38_c00356{transform:matrix(0.180198,0.001622,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180198,0.001622,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180198,0.001622,-0.002250,0.249990,0,0);}
.m83_c00356{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);}
.m64_c00356{transform:matrix(0.181359,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181359,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181359,0.001451,-0.002000,0.249992,0,0);}
.m87_c00356{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181538,0.001634,-0.002250,0.249990,0,0);}
.m19_c00356{transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);}
.m74_c00356{transform:matrix(0.182164,0.001457,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182164,0.001457,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182164,0.001457,-0.002000,0.249992,0,0);}
.m4a_c00356{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);}
.mbf_c00356{transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185018,0.001665,-0.002250,0.249990,0,0);}
.m1c_c00356{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);}
.ma9_c00356{transform:matrix(0.186017,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186017,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186017,0.001674,-0.002250,0.249990,0,0);}
.m3_c00356{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);}
.m8_c00356{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);}
.m84_c00356{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);}
.m60_c00356{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);}
.m7c_c00356{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);}
.mb1_c00356{transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);}
.m77_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);}
.m37_c00356{transform:matrix(0.188592,0.001697,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188592,0.001697,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188592,0.001697,-0.002250,0.249990,0,0);}
.m9c_c00356{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);}
.m86_c00356{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);}
.ma5_c00356{transform:matrix(0.189387,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189387,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189387,0.001704,-0.002250,0.249990,0,0);}
.m2f_c00356{transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);}
.m94_c00356{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);}
.m28_c00356{transform:matrix(0.190792,0.001717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190792,0.001717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190792,0.001717,-0.002250,0.249990,0,0);}
.me_c00356{transform:matrix(0.191890,0.001919,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191890,0.001919,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191890,0.001919,-0.002500,0.249988,0,0);}
.m4_c00356{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);}
.m8c_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);}
.m54_c00356{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);}
.m20_c00356{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);}
.ma8_c00356{transform:matrix(0.193557,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193557,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193557,0.001742,-0.002250,0.249990,0,0);}
.m45_c00356{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);}
.m95_c00356{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);}
.m82_c00356{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);}
.m66_c00356{transform:matrix(0.194349,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194349,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194349,0.001555,-0.002000,0.249992,0,0);}
.mb9_c00356{transform:matrix(0.194442,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194442,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194442,0.001750,-0.002250,0.249990,0,0);}
.m8f_c00356{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);}
.m91_c00356{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);}
.ma_c00356{transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196055,0.001961,-0.002500,0.249988,0,0);}
.maa_c00356{transform:matrix(0.196372,0.001767,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196372,0.001767,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196372,0.001767,-0.002250,0.249990,0,0);}
.m2d_c00356{transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196592,0.001769,-0.002250,0.249990,0,0);}
.m42_c00356{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);}
.m35_c00356{transform:matrix(0.197377,0.001776,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197377,0.001776,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197377,0.001776,-0.002250,0.249990,0,0);}
.m0_c00356{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);}
.m30_c00356{transform:matrix(0.198022,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198022,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198022,0.001782,-0.002250,0.249990,0,0);}
.m4e_c00356{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);}
.m26_c00356{transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198657,0.001788,-0.002250,0.249990,0,0);}
.m1e_c00356{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);}
.mc2_c00356{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);}
.m43_c00356{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);}
.m5d_c00356{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);}
.m25_c00356{transform:matrix(0.200692,0.001806,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200692,0.001806,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200692,0.001806,-0.002250,0.249990,0,0);}
.m27_c00356{transform:matrix(0.200747,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200747,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200747,0.001807,-0.002250,0.249990,0,0);}
.m5a_c00356{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);}
.m81_c00356{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);}
.m9e_c00356{transform:matrix(0.202835,0.002434,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202835,0.002434,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202835,0.002434,-0.003000,0.249982,0,0);}
.m21_c00356{transform:matrix(0.203112,0.001828,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203112,0.001828,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203112,0.001828,-0.002250,0.249990,0,0);}
.m7f_c00356{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);}
.m7a_c00356{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);}
.m55_c00356{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);}
.m1a_c00356{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);}
.m59_c00356{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);}
.m68_c00356{transform:matrix(0.206343,0.001651,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206343,0.001651,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206343,0.001651,-0.002000,0.249992,0,0);}
.m7d_c00356{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);}
.m9a_c00356{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);}
.m48_c00356{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);}
.m9_c00356{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);}
.mab_c00356{transform:matrix(0.208097,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208097,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208097,0.001873,-0.002250,0.249990,0,0);}
.mbd_c00356{transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);}
.m8d_c00356{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);}
.m8b_c00356{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);}
.m12_c00356{transform:matrix(0.210389,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210389,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210389,0.002104,-0.002500,0.249988,0,0);}
.mad_c00356{transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);}
.m88_c00356{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);}
.m71_c00356{transform:matrix(0.211528,0.001692,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211528,0.001692,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211528,0.001692,-0.002000,0.249992,0,0);}
.m9b_c00356{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);}
.m32_c00356{transform:matrix(0.213426,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213426,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213426,0.001921,-0.002250,0.249990,0,0);}
.m2_c00356{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);}
.m47_c00356{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);}
.m1f_c00356{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);}
.ma0_c00356{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);}
.m85_c00356{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.m29_c00356{transform:matrix(0.217116,0.001954,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217116,0.001954,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217116,0.001954,-0.002250,0.249990,0,0);}
.m72_c00356{transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);}
.m1_c00356{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);}
.mb3_c00356{transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);}
.mb7_c00356{transform:matrix(0.219491,0.001975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219491,0.001975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219491,0.001975,-0.002250,0.249990,0,0);}
.m24_c00356{transform:matrix(0.220946,0.001989,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220946,0.001989,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220946,0.001989,-0.002250,0.249990,0,0);}
.m76_c00356{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);}
.m1b_c00356{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);}
.mca_c00356{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m65_c00356{transform:matrix(0.223633,0.001789,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223633,0.001789,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223633,0.001789,-0.002000,0.249992,0,0);}
.m90_c00356{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);}
.m2a_c00356{transform:matrix(0.226416,0.002038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226416,0.002038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226416,0.002038,-0.002250,0.249990,0,0);}
.m2e_c00356{transform:matrix(0.227081,0.002044,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227081,0.002044,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227081,0.002044,-0.002250,0.249990,0,0);}
.m5_c00356{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);}
.m41_c00356{transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.233803,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233803,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233803,0.002338,-0.002500,0.249988,0,0);}
.m99_c00356{transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00356{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.mbb_c00356{transform:matrix(0.236340,0.002127,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236340,0.002127,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236340,0.002127,-0.002250,0.249990,0,0);}
.m39_c00356{transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);}
.m56_c00356{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);}
.m18_c00356{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);}
.mc4_c00356{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.247825,0.002230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247825,0.002230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247825,0.002230,-0.002250,0.249990,0,0);}
.mb5_c00356{transform:matrix(0.247845,0.002231,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247845,0.002231,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247845,0.002231,-0.002250,0.249990,0,0);}
.m75_c00356{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.248533,0.002485,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248533,0.002485,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248533,0.002485,-0.002500,0.249988,0,0);}
.m2c_c00356{transform:matrix(0.248865,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248865,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248865,0.002240,-0.002250,0.249990,0,0);}
.m5b_c00356{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);}
.mc9_c00356{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);}
.mac_c00356{transform:matrix(0.256215,0.002306,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256215,0.002306,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256215,0.002306,-0.002250,0.249990,0,0);}
.m5f_c00356{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m9d_c00356{transform:matrix(0.256547,0.003079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256547,0.003079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256547,0.003079,-0.003000,0.249982,0,0);}
.mb0_c00356{transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);}
.m62_c00356{transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.262287,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262287,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262287,0.002623,-0.002500,0.249988,0,0);}
.m8e_c00356{transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.272939,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272939,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272939,0.002456,-0.002250,0.249990,0,0);}
.m6c_c00356{transform:matrix(0.274536,0.002196,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274536,0.002196,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274536,0.002196,-0.002000,0.249992,0,0);}
.mc1_c00356{transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);}
.m79_c00356{transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283640,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.285701,0.002857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285701,0.002857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285701,0.002857,-0.002500,0.249988,0,0);}
.m92_c00356{transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);}
.ma3_c00356{transform:matrix(0.288873,0.002600,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288873,0.002600,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288873,0.002600,-0.002250,0.249990,0,0);}
.m40_c00356{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);}
.mb6_c00356{transform:matrix(0.293448,0.002641,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293448,0.002641,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293448,0.002641,-0.002250,0.249990,0,0);}
.m1d_c00356{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);}
.m63_c00356{transform:matrix(0.300365,0.002403,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300365,0.002403,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300365,0.002403,-0.002000,0.249992,0,0);}
.md_c00356{transform:matrix(0.307395,0.003074,-0.002500,0.249988,0,0);-ms-transform:matrix(0.307395,0.003074,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.307395,0.003074,-0.002500,0.249988,0,0);}
.m22_c00356{transform:matrix(0.307603,0.002768,-0.002250,0.249990,0,0);-ms-transform:matrix(0.307603,0.002768,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.307603,0.002768,-0.002250,0.249990,0,0);}
.mba_c00356{transform:matrix(0.329427,0.002965,-0.002250,0.249990,0,0);-ms-transform:matrix(0.329427,0.002965,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.329427,0.002965,-0.002250,0.249990,0,0);}
.m6e_c00356{transform:matrix(0.333799,0.002670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.333799,0.002670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.333799,0.002670,-0.002000,0.249992,0,0);}
.m97_c00356{transform:matrix(0.336725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336725,0.000000,0.000000,0.250000,0,0);}
.mce_c00356{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);}
.m13_c00356{transform:matrix(0.349238,0.003492,-0.002500,0.249988,0,0);-ms-transform:matrix(0.349238,0.003492,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.349238,0.003492,-0.002500,0.249988,0,0);}
.m7_c00356{transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350840,0.000000,0.000000,0.250000,0,0);}
.mcc_c00356{transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.358950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00356{transform:matrix(0.385070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385070,0.000000,0.000000,0.250000,0,0);}
.m93_c00356{transform:matrix(0.387215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387215,0.000000,0.000000,0.250000,0,0);}
.mc5_c00356{transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);}
.m5e_c00356{transform:matrix(0.409425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409425,0.000000,0.000000,0.250000,0,0);}
.ma4_c00356{transform:matrix(0.413398,0.003721,-0.002250,0.249990,0,0);-ms-transform:matrix(0.413398,0.003721,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.413398,0.003721,-0.002250,0.249990,0,0);}
.mcf_c00356{transform:matrix(0.419835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419835,0.000000,0.000000,0.250000,0,0);}
.m3d_c00356{transform:matrix(0.429293,0.003864,-0.002250,0.249990,0,0);-ms-transform:matrix(0.429293,0.003864,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.429293,0.003864,-0.002250,0.249990,0,0);}
.m3e_c00356{transform:matrix(0.448005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448005,0.000000,0.000000,0.250000,0,0);}
.m6f_c00356{transform:matrix(0.449616,0.003597,-0.002000,0.249992,0,0);-ms-transform:matrix(0.449616,0.003597,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.449616,0.003597,-0.002000,0.249992,0,0);}
.m69_c00356{transform:matrix(0.450941,0.003608,-0.002000,0.249992,0,0);-ms-transform:matrix(0.450941,0.003608,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.450941,0.003608,-0.002000,0.249992,0,0);}
.m3f_c00356{transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00356{transform:matrix(0.476986,0.004293,-0.002250,0.249990,0,0);-ms-transform:matrix(0.476986,0.004293,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.476986,0.004293,-0.002250,0.249990,0,0);}
.m6b_c00356{transform:matrix(0.478670,0.003829,-0.002000,0.249992,0,0);-ms-transform:matrix(0.478670,0.003829,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.478670,0.003829,-0.002000,0.249992,0,0);}
.m78_c00356{transform:matrix(0.493760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493760,0.000000,0.000000,0.250000,0,0);}
.mcd_c00356{transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);}
.mcb_c00356{transform:matrix(0.612695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612695,0.000000,0.000000,0.250000,0,0);}
.m6a_c00356{transform:matrix(0.666404,0.005331,-0.002000,0.249992,0,0);-ms-transform:matrix(0.666404,0.005331,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.666404,0.005331,-0.002000,0.249992,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;}
.fsf_c00356{font-size:59.850000px;}
.fs1_c00356{font-size:63.003150px;}
.fs9_c00356{font-size:67.200000px;}
.fsb_c00356{font-size:68.250000px;}
.fsa_c00356{font-size:68.252184px;}
.fs0_c00356{font-size:69.300000px;}
.fs3_c00356{font-size:69.302807px;}
.fs2_c00356{font-size:70.350000px;}
.fs4_c00356{font-size:70.352849px;}
.fsc_c00356{font-size:71.400000px;}
.fs5_c00356{font-size:71.402892px;}
.fsd_c00356{font-size:71.405141px;}
.fs8_c00356{font-size:72.450000px;}
.fse_c00356{font-size:72.452934px;}
.fs7_c00356{font-size:73.500000px;}
.fs6_c00356{font-size:74.550000px;}
.fs10_c00356{font-size:114.450000px;}
.y0_c00356{bottom:0.000000px;}
.y94_c00356{bottom:101.521500px;}
.y95_c00356{bottom:102.619500px;}
.y96_c00356{bottom:103.732500px;}
.y97_c00356{bottom:105.010500px;}
.y93_c00356{bottom:155.928000px;}
.y92_c00356{bottom:167.667000px;}
.y91_c00356{bottom:180.300076px;}
.y90_c00356{bottom:180.568915px;}
.y8f_c00356{bottom:180.846313px;}
.y8e_c00356{bottom:181.189362px;}
.y8d_c00356{bottom:181.412152px;}
.y8c_c00356{bottom:181.604163px;}
.y8b_c00356{bottom:181.993665px;}
.y8a_c00356{bottom:182.228686px;}
.y89_c00356{bottom:182.778217px;}
.y88_c00356{bottom:183.063607px;}
.y87_c00356{bottom:183.238729px;}
.y86_c00356{bottom:184.237500px;}
.y81_c00356{bottom:208.347255px;}
.y82_c00356{bottom:208.347509px;}
.y85_c00356{bottom:208.347622px;}
.y83_c00356{bottom:208.347822px;}
.y84_c00356{bottom:208.348256px;}
.y80_c00356{bottom:234.899595px;}
.y7f_c00356{bottom:235.565523px;}
.y7e_c00356{bottom:235.832459px;}
.y7d_c00356{bottom:236.027183px;}
.y7c_c00356{bottom:236.230574px;}
.y7b_c00356{bottom:236.596181px;}
.y7a_c00356{bottom:236.962814px;}
.y79_c00356{bottom:237.288515px;}
.y78_c00356{bottom:237.487761px;}
.y77_c00356{bottom:237.922758px;}
.y76_c00356{bottom:238.158481px;}
.y75_c00356{bottom:238.678542px;}
.y74_c00356{bottom:239.058000px;}
.y73_c00356{bottom:264.605334px;}
.y72_c00356{bottom:264.945156px;}
.y71_c00356{bottom:265.725348px;}
.y70_c00356{bottom:265.962552px;}
.y6f_c00356{bottom:266.688384px;}
.y6e_c00356{bottom:267.148500px;}
.y6d_c00356{bottom:294.769500px;}
.y6c_c00356{bottom:315.465000px;}
.y6b_c00356{bottom:315.601500px;}
.y6a_c00356{bottom:315.751500px;}
.y69_c00356{bottom:316.194000px;}
.y68_c00356{bottom:316.726500px;}
.y67_c00356{bottom:316.977000px;}
.y66_c00356{bottom:317.695500px;}
.y65_c00356{bottom:317.871000px;}
.y64_c00356{bottom:318.423000px;}
.y63_c00356{bottom:318.573000px;}
.y62_c00356{bottom:318.792000px;}
.y61_c00356{bottom:318.963000px;}
.y60_c00356{bottom:319.410000px;}
.y5f_c00356{bottom:339.841500px;}
.y5e_c00356{bottom:362.040000px;}
.y5d_c00356{bottom:386.465580px;}
.y5c_c00356{bottom:386.465868px;}
.y59_c00356{bottom:386.466072px;}
.y5b_c00356{bottom:386.466396px;}
.y5a_c00356{bottom:386.466744px;}
.y58_c00356{bottom:406.749216px;}
.y57_c00356{bottom:406.932156px;}
.y56_c00356{bottom:407.069388px;}
.y55_c00356{bottom:407.380932px;}
.y54_c00356{bottom:407.800944px;}
.y53_c00356{bottom:408.353868px;}
.y52_c00356{bottom:408.518040px;}
.y51_c00356{bottom:409.053492px;}
.y50_c00356{bottom:409.127952px;}
.y4f_c00356{bottom:409.588740px;}
.y4e_c00356{bottom:409.966968px;}
.y4d_c00356{bottom:410.141616px;}
.y4c_c00356{bottom:410.670000px;}
.y4b_c00356{bottom:431.923500px;}
.y4a_c00356{bottom:432.666000px;}
.y49_c00356{bottom:433.237500px;}
.y48_c00356{bottom:433.621500px;}
.y47_c00356{bottom:452.448000px;}
.y46_c00356{bottom:452.913000px;}
.y45_c00356{bottom:453.187500px;}
.y44_c00356{bottom:453.580500px;}
.y43_c00356{bottom:454.014000px;}
.y42_c00356{bottom:454.377000px;}
.y41_c00356{bottom:454.554000px;}
.y40_c00356{bottom:454.783500px;}
.y3f_c00356{bottom:454.966500px;}
.y3e_c00356{bottom:455.334000px;}
.y3d_c00356{bottom:455.676000px;}
.y3c_c00356{bottom:456.030000px;}
.y3b_c00356{bottom:474.739500px;}
.y3a_c00356{bottom:475.078500px;}
.y39_c00356{bottom:475.441500px;}
.y38_c00356{bottom:475.762500px;}
.y37_c00356{bottom:476.211000px;}
.y36_c00356{bottom:476.425500px;}
.y35_c00356{bottom:476.691000px;}
.y34_c00356{bottom:476.866500px;}
.y33_c00356{bottom:477.036000px;}
.y32_c00356{bottom:477.340500px;}
.y31_c00356{bottom:477.543000px;}
.y30_c00356{bottom:477.747000px;}
.y2f_c00356{bottom:477.900000px;}
.y2e_c00356{bottom:502.453500px;}
.y2d_c00356{bottom:545.580000px;}
.y2c_c00356{bottom:668.995882px;}
.y2b_c00356{bottom:668.995899px;}
.y2a_c00356{bottom:668.995945px;}
.y26_c00356{bottom:668.996015px;}
.y29_c00356{bottom:668.996052px;}
.y27_c00356{bottom:668.996551px;}
.y28_c00356{bottom:668.996788px;}
.y25_c00356{bottom:689.130062px;}
.y24_c00356{bottom:689.419344px;}
.y23_c00356{bottom:689.812792px;}
.y22_c00356{bottom:690.121093px;}
.y21_c00356{bottom:690.585043px;}
.y20_c00356{bottom:690.842659px;}
.y1f_c00356{bottom:691.151190px;}
.y1e_c00356{bottom:691.408914px;}
.y1d_c00356{bottom:691.535406px;}
.y1c_c00356{bottom:691.781264px;}
.y1b_c00356{bottom:692.129290px;}
.y1a_c00356{bottom:692.276557px;}
.y19_c00356{bottom:692.818339px;}
.y18_c00356{bottom:712.059133px;}
.y17_c00356{bottom:712.340743px;}
.y16_c00356{bottom:712.943815px;}
.y15_c00356{bottom:713.242409px;}
.y14_c00356{bottom:713.655846px;}
.y13_c00356{bottom:714.029958px;}
.y12_c00356{bottom:714.340809px;}
.y11_c00356{bottom:714.537477px;}
.y10_c00356{bottom:715.527000px;}
.yf_c00356{bottom:743.913000px;}
.ye_c00356{bottom:773.533500px;}
.yd_c00356{bottom:792.852540px;}
.yc_c00356{bottom:793.730970px;}
.yb_c00356{bottom:793.811880px;}
.ya_c00356{bottom:794.281815px;}
.y9_c00356{bottom:794.551905px;}
.y8_c00356{bottom:795.488805px;}
.y7_c00356{bottom:795.668910px;}
.y6_c00356{bottom:796.087905px;}
.y5_c00356{bottom:796.573770px;}
.y4_c00356{bottom:796.770855px;}
.y3_c00356{bottom:797.100345px;}
.y2_c00356{bottom:797.346000px;}
.y1_c00356{bottom:822.754500px;}
.h11_c00356{height:59.850000px;}
.h3_c00356{height:63.003150px;}
.hb_c00356{height:67.200000px;}
.hd_c00356{height:68.250000px;}
.hc_c00356{height:68.252184px;}
.h2_c00356{height:69.300000px;}
.h5_c00356{height:69.302807px;}
.h4_c00356{height:70.350000px;}
.h6_c00356{height:70.352849px;}
.he_c00356{height:71.400000px;}
.h7_c00356{height:71.402892px;}
.hf_c00356{height:71.405141px;}
.ha_c00356{height:72.450000px;}
.h10_c00356{height:72.452934px;}
.h9_c00356{height:73.500000px;}
.h8_c00356{height:74.550000px;}
.h12_c00356{height:114.450000px;}
.h1_c00356{height:1005.000000px;}
.h0_c00356{height:1005.150000px;}
.w0_c00356{width:702.540000px;}
.w1_c00356{width:702.750000px;}
.x0_c00356{left:0.000000px;}
.x50_c00356{left:29.976000px;}
.x58_c00356{left:45.899400px;}
.x59_c00356{left:72.629616px;}
.x31_c00356{left:73.976650px;}
.x4c_c00356{left:77.019000px;}
.x15_c00356{left:79.380000px;}
.x77_c00356{left:81.643500px;}
.x5d_c00356{left:91.530000px;}
.x1f_c00356{left:93.787500px;}
.xb_c00356{left:94.914000px;}
.x51_c00356{left:96.024000px;}
.x4d_c00356{left:101.056500px;}
.x71_c00356{left:102.331500px;}
.x5a_c00356{left:105.300204px;}
.x1_c00356{left:113.940000px;}
.x17_c00356{left:115.020000px;}
.x61_c00356{left:116.100000px;}
.x16_c00356{left:118.260000px;}
.xc_c00356{left:119.479500px;}
.x78_c00356{left:123.805500px;}
.x69_c00356{left:125.979000px;}
.x4e_c00356{left:136.747500px;}
.x18_c00356{left:140.130000px;}
.x76_c00356{left:142.672500px;}
.x3c_c00356{left:144.369000px;}
.x26_c00356{left:146.465029px;}
.xd_c00356{left:152.428500px;}
.x5b_c00356{left:157.682052px;}
.x44_c00356{left:160.555500px;}
.x27_c00356{left:164.828192px;}
.x6a_c00356{left:169.173000px;}
.x2_c00356{left:170.640000px;}
.xe_c00356{left:172.137000px;}
.x3d_c00356{left:173.250000px;}
.x79_c00356{left:181.590000px;}
.x4f_c00356{left:183.127500px;}
.x6b_c00356{left:185.860500px;}
.x5c_c00356{left:192.782796px;}
.x72_c00356{left:195.751500px;}
.x19_c00356{left:197.640000px;}
.x3_c00356{left:203.580000px;}
.x62_c00356{left:204.660000px;}
.x45_c00356{left:206.454000px;}
.x28_c00356{left:208.331583px;}
.x83_c00356{left:211.717500px;}
.x3e_c00356{left:216.727500px;}
.x4_c00356{left:220.320000px;}
.x32_c00356{left:221.402598px;}
.x52_c00356{left:222.732000px;}
.x20_c00356{left:225.586500px;}
.x46_c00356{left:229.404000px;}
.x1a_c00356{left:231.930000px;}
.x29_c00356{left:239.149366px;}
.x33_c00356{left:241.652731px;}
.x84_c00356{left:243.427500px;}
.x63_c00356{left:245.430000px;}
.x6c_c00356{left:247.204500px;}
.x5_c00356{left:254.340000px;}
.x7a_c00356{left:256.114500px;}
.x47_c00356{left:258.039000px;}
.x21_c00356{left:260.125500px;}
.xf_c00356{left:262.623000px;}
.x34_c00356{left:264.333067px;}
.x3f_c00356{left:266.143500px;}
.x1b_c00356{left:268.110000px;}
.x73_c00356{left:275.671500px;}
.x64_c00356{left:277.020000px;}
.x7b_c00356{left:278.253000px;}
.x10_c00356{left:280.633500px;}
.x37_c00356{left:283.770000px;}
.x2a_c00356{left:287.173799px;}
.x6_c00356{left:292.950000px;}
.x53_c00356{left:298.971000px;}
.x22_c00356{left:301.693500px;}
.x1c_c00356{left:304.560000px;}
.x7f_c00356{left:306.190313px;}
.x7c_c00356{left:314.442000px;}
.x35_c00356{left:316.175766px;}
.x54_c00356{left:319.492500px;}
.x2b_c00356{left:325.788650px;}
.x85_c00356{left:330.600000px;}
.x8b_c00356{left:332.370000px;}
.x40_c00356{left:334.713000px;}
.x7_c00356{left:336.690000px;}
.x6d_c00356{left:346.527000px;}
.x23_c00356{left:347.631000px;}
.x1d_c00356{left:353.970000px;}
.x7d_c00356{left:355.179000px;}
.x2c_c00356{left:357.912933px;}
.x5e_c00356{left:360.450000px;}
.x36_c00356{left:362.348005px;}
.x74_c00356{left:368.281500px;}
.x38_c00356{left:369.630000px;}
.x8f_c00356{left:371.682000px;}
.x8_c00356{left:373.410000px;}
.x48_c00356{left:379.795500px;}
.x24_c00356{left:380.808000px;}
.x65_c00356{left:385.020000px;}
.x8c_c00356{left:387.180000px;}
.x55_c00356{left:388.608000px;}
.x39_c00356{left:392.040000px;}
.x80_c00356{left:393.134360px;}
.x7e_c00356{left:395.802000px;}
.x41_c00356{left:398.707500px;}
.x11_c00356{left:401.332500px;}
.x1e_c00356{left:403.650000px;}
.x9_c00356{left:408.780000px;}
.x75_c00356{left:413.371500px;}
.x2d_c00356{left:415.963459px;}
.x3a_c00356{left:418.500000px;}
.x86_c00356{left:419.967000px;}
.x81_c00356{left:421.755182px;}
.x49_c00356{left:428.923500px;}
.x66_c00356{left:430.380000px;}
.x6e_c00356{left:433.477500px;}
.x5f_c00356{left:439.830000px;}
.x56_c00356{left:441.109500px;}
.x42_c00356{left:444.601500px;}
.x3b_c00356{left:446.310000px;}
.x12_c00356{left:448.326000px;}
.x2e_c00356{left:454.552811px;}
.x13_c00356{left:456.417000px;}
.x87_c00356{left:458.083500px;}
.x4a_c00356{left:463.219500px;}
.x60_c00356{left:469.260000px;}
.x25_c00356{left:479.106000px;}
.x6f_c00356{left:482.686500px;}
.x88_c00356{left:488.905500px;}
.x43_c00356{left:496.438500px;}
.x67_c00356{left:500.310000px;}
.x2f_c00356{left:503.769756px;}
.x82_c00356{left:505.998999px;}
.x70_c00356{left:514.503000px;}
.x89_c00356{left:518.776500px;}
.x57_c00356{left:520.074000px;}
.x4b_c00356{left:521.262000px;}
.x68_c00356{left:523.530000px;}
.xa_c00356{left:527.580000px;}
.x30_c00356{left:539.912580px;}
.x14_c00356{left:544.260000px;}
.x8d_c00356{left:550.530000px;}
.x8e_c00356{left:576.450000px;}
.x8a_c00356{left:591.300000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.fsf_c00356{font-size:53.200000pt;}
.fs1_c00356{font-size:56.002800pt;}
.fs9_c00356{font-size:59.733333pt;}
.fsb_c00356{font-size:60.666667pt;}
.fsa_c00356{font-size:60.668608pt;}
.fs0_c00356{font-size:61.600000pt;}
.fs3_c00356{font-size:61.602495pt;}
.fs2_c00356{font-size:62.533333pt;}
.fs4_c00356{font-size:62.535866pt;}
.fsc_c00356{font-size:63.466667pt;}
.fs5_c00356{font-size:63.469237pt;}
.fsd_c00356{font-size:63.471236pt;}
.fs8_c00356{font-size:64.400000pt;}
.fse_c00356{font-size:64.402608pt;}
.fs7_c00356{font-size:65.333333pt;}
.fs6_c00356{font-size:66.266667pt;}
.fs10_c00356{font-size:101.733333pt;}
.y0_c00356{bottom:0.000000pt;}
.y94_c00356{bottom:90.241333pt;}
.y95_c00356{bottom:91.217333pt;}
.y96_c00356{bottom:92.206667pt;}
.y97_c00356{bottom:93.342667pt;}
.y93_c00356{bottom:138.602667pt;}
.y92_c00356{bottom:149.037333pt;}
.y91_c00356{bottom:160.266735pt;}
.y90_c00356{bottom:160.505703pt;}
.y8f_c00356{bottom:160.752279pt;}
.y8e_c00356{bottom:161.057211pt;}
.y8d_c00356{bottom:161.255247pt;}
.y8c_c00356{bottom:161.425923pt;}
.y8b_c00356{bottom:161.772147pt;}
.y8a_c00356{bottom:161.981055pt;}
.y89_c00356{bottom:162.469527pt;}
.y88_c00356{bottom:162.723207pt;}
.y87_c00356{bottom:162.878871pt;}
.y86_c00356{bottom:163.766667pt;}
.y81_c00356{bottom:185.197560pt;}
.y82_c00356{bottom:185.197785pt;}
.y85_c00356{bottom:185.197887pt;}
.y83_c00356{bottom:185.198064pt;}
.y84_c00356{bottom:185.198449pt;}
.y80_c00356{bottom:208.799640pt;}
.y7f_c00356{bottom:209.391576pt;}
.y7e_c00356{bottom:209.628852pt;}
.y7d_c00356{bottom:209.801940pt;}
.y7c_c00356{bottom:209.982732pt;}
.y7b_c00356{bottom:210.307716pt;}
.y7a_c00356{bottom:210.633612pt;}
.y79_c00356{bottom:210.923124pt;}
.y78_c00356{bottom:211.100232pt;}
.y77_c00356{bottom:211.486896pt;}
.y76_c00356{bottom:211.696428pt;}
.y75_c00356{bottom:212.158704pt;}
.y74_c00356{bottom:212.496000pt;}
.y73_c00356{bottom:235.204741pt;}
.y72_c00356{bottom:235.506805pt;}
.y71_c00356{bottom:236.200309pt;}
.y70_c00356{bottom:236.411157pt;}
.y6f_c00356{bottom:237.056341pt;}
.y6e_c00356{bottom:237.465333pt;}
.y6d_c00356{bottom:262.017333pt;}
.y6c_c00356{bottom:280.413333pt;}
.y6b_c00356{bottom:280.534667pt;}
.y6a_c00356{bottom:280.668000pt;}
.y69_c00356{bottom:281.061333pt;}
.y68_c00356{bottom:281.534667pt;}
.y67_c00356{bottom:281.757333pt;}
.y66_c00356{bottom:282.396000pt;}
.y65_c00356{bottom:282.552000pt;}
.y64_c00356{bottom:283.042667pt;}
.y63_c00356{bottom:283.176000pt;}
.y62_c00356{bottom:283.370667pt;}
.y61_c00356{bottom:283.522667pt;}
.y60_c00356{bottom:283.920000pt;}
.y5f_c00356{bottom:302.081333pt;}
.y5e_c00356{bottom:321.813333pt;}
.y5d_c00356{bottom:343.524960pt;}
.y5c_c00356{bottom:343.525216pt;}
.y59_c00356{bottom:343.525397pt;}
.y5b_c00356{bottom:343.525685pt;}
.y5a_c00356{bottom:343.525995pt;}
.y58_c00356{bottom:361.554859pt;}
.y57_c00356{bottom:361.717472pt;}
.y56_c00356{bottom:361.839456pt;}
.y55_c00356{bottom:362.116384pt;}
.y54_c00356{bottom:362.489728pt;}
.y53_c00356{bottom:362.981216pt;}
.y52_c00356{bottom:363.127147pt;}
.y51_c00356{bottom:363.603104pt;}
.y50_c00356{bottom:363.669291pt;}
.y4f_c00356{bottom:364.078880pt;}
.y4e_c00356{bottom:364.415083pt;}
.y4d_c00356{bottom:364.570325pt;}
.y4c_c00356{bottom:365.040000pt;}
.y4b_c00356{bottom:383.932000pt;}
.y4a_c00356{bottom:384.592000pt;}
.y49_c00356{bottom:385.100000pt;}
.y48_c00356{bottom:385.441333pt;}
.y47_c00356{bottom:402.176000pt;}
.y46_c00356{bottom:402.589333pt;}
.y45_c00356{bottom:402.833333pt;}
.y44_c00356{bottom:403.182667pt;}
.y43_c00356{bottom:403.568000pt;}
.y42_c00356{bottom:403.890667pt;}
.y41_c00356{bottom:404.048000pt;}
.y40_c00356{bottom:404.252000pt;}
.y3f_c00356{bottom:404.414667pt;}
.y3e_c00356{bottom:404.741333pt;}
.y3d_c00356{bottom:405.045333pt;}
.y3c_c00356{bottom:405.360000pt;}
.y3b_c00356{bottom:421.990667pt;}
.y3a_c00356{bottom:422.292000pt;}
.y39_c00356{bottom:422.614667pt;}
.y38_c00356{bottom:422.900000pt;}
.y37_c00356{bottom:423.298667pt;}
.y36_c00356{bottom:423.489333pt;}
.y35_c00356{bottom:423.725333pt;}
.y34_c00356{bottom:423.881333pt;}
.y33_c00356{bottom:424.032000pt;}
.y32_c00356{bottom:424.302667pt;}
.y31_c00356{bottom:424.482667pt;}
.y30_c00356{bottom:424.664000pt;}
.y2f_c00356{bottom:424.800000pt;}
.y2e_c00356{bottom:446.625333pt;}
.y2d_c00356{bottom:484.960000pt;}
.y2c_c00356{bottom:594.663007pt;}
.y2b_c00356{bottom:594.663021pt;}
.y2a_c00356{bottom:594.663063pt;}
.y26_c00356{bottom:594.663124pt;}
.y29_c00356{bottom:594.663157pt;}
.y27_c00356{bottom:594.663601pt;}
.y28_c00356{bottom:594.663812pt;}
.y25_c00356{bottom:612.560055pt;}
.y24_c00356{bottom:612.817195pt;}
.y23_c00356{bottom:613.166927pt;}
.y22_c00356{bottom:613.440972pt;}
.y21_c00356{bottom:613.853372pt;}
.y20_c00356{bottom:614.082364pt;}
.y1f_c00356{bottom:614.356613pt;}
.y1e_c00356{bottom:614.585701pt;}
.y1d_c00356{bottom:614.698139pt;}
.y1c_c00356{bottom:614.916679pt;}
.y1b_c00356{bottom:615.226036pt;}
.y1a_c00356{bottom:615.356940pt;}
.y19_c00356{bottom:615.838524pt;}
.y18_c00356{bottom:632.941452pt;}
.y17_c00356{bottom:633.191772pt;}
.y16_c00356{bottom:633.727836pt;}
.y15_c00356{bottom:633.993252pt;}
.y14_c00356{bottom:634.360752pt;}
.y13_c00356{bottom:634.693296pt;}
.y12_c00356{bottom:634.969608pt;}
.y11_c00356{bottom:635.144424pt;}
.y10_c00356{bottom:636.024000pt;}
.yf_c00356{bottom:661.256000pt;}
.ye_c00356{bottom:687.585333pt;}
.yd_c00356{bottom:704.757813pt;}
.yc_c00356{bottom:705.538640pt;}
.yb_c00356{bottom:705.610560pt;}
.ya_c00356{bottom:706.028280pt;}
.y9_c00356{bottom:706.268360pt;}
.y8_c00356{bottom:707.101160pt;}
.y7_c00356{bottom:707.261253pt;}
.y6_c00356{bottom:707.633693pt;}
.y5_c00356{bottom:708.065573pt;}
.y4_c00356{bottom:708.240760pt;}
.y3_c00356{bottom:708.533640pt;}
.y2_c00356{bottom:708.752000pt;}
.y1_c00356{bottom:731.337333pt;}
.h11_c00356{height:53.200000pt;}
.h3_c00356{height:56.002800pt;}
.hb_c00356{height:59.733333pt;}
.hd_c00356{height:60.666667pt;}
.hc_c00356{height:60.668608pt;}
.h2_c00356{height:61.600000pt;}
.h5_c00356{height:61.602495pt;}
.h4_c00356{height:62.533333pt;}
.h6_c00356{height:62.535866pt;}
.he_c00356{height:63.466667pt;}
.h7_c00356{height:63.469237pt;}
.hf_c00356{height:63.471236pt;}
.ha_c00356{height:64.400000pt;}
.h10_c00356{height:64.402608pt;}
.h9_c00356{height:65.333333pt;}
.h8_c00356{height:66.266667pt;}
.h12_c00356{height:101.733333pt;}
.h1_c00356{height:893.333333pt;}
.h0_c00356{height:893.466667pt;}
.w0_c00356{width:624.480000pt;}
.w1_c00356{width:624.666667pt;}
.x0_c00356{left:0.000000pt;}
.x50_c00356{left:26.645333pt;}
.x58_c00356{left:40.799467pt;}
.x59_c00356{left:64.559659pt;}
.x31_c00356{left:65.757023pt;}
.x4c_c00356{left:68.461333pt;}
.x15_c00356{left:70.560000pt;}
.x77_c00356{left:72.572000pt;}
.x5d_c00356{left:81.360000pt;}
.x1f_c00356{left:83.366667pt;}
.xb_c00356{left:84.368000pt;}
.x51_c00356{left:85.354667pt;}
.x4d_c00356{left:89.828000pt;}
.x71_c00356{left:90.961333pt;}
.x5a_c00356{left:93.600181pt;}
.x1_c00356{left:101.280000pt;}
.x17_c00356{left:102.240000pt;}
.x61_c00356{left:103.200000pt;}
.x16_c00356{left:105.120000pt;}
.xc_c00356{left:106.204000pt;}
.x78_c00356{left:110.049333pt;}
.x69_c00356{left:111.981333pt;}
.x4e_c00356{left:121.553333pt;}
.x18_c00356{left:124.560000pt;}
.x76_c00356{left:126.820000pt;}
.x3c_c00356{left:128.328000pt;}
.x26_c00356{left:130.191137pt;}
.xd_c00356{left:135.492000pt;}
.x5b_c00356{left:140.161824pt;}
.x44_c00356{left:142.716000pt;}
.x27_c00356{left:146.513948pt;}
.x6a_c00356{left:150.376000pt;}
.x2_c00356{left:151.680000pt;}
.xe_c00356{left:153.010667pt;}
.x3d_c00356{left:154.000000pt;}
.x79_c00356{left:161.413333pt;}
.x4f_c00356{left:162.780000pt;}
.x6b_c00356{left:165.209333pt;}
.x5c_c00356{left:171.362485pt;}
.x72_c00356{left:174.001333pt;}
.x19_c00356{left:175.680000pt;}
.x3_c00356{left:180.960000pt;}
.x62_c00356{left:181.920000pt;}
.x45_c00356{left:183.514667pt;}
.x28_c00356{left:185.183629pt;}
.x83_c00356{left:188.193333pt;}
.x3e_c00356{left:192.646667pt;}
.x4_c00356{left:195.840000pt;}
.x32_c00356{left:196.802309pt;}
.x52_c00356{left:197.984000pt;}
.x20_c00356{left:200.521333pt;}
.x46_c00356{left:203.914667pt;}
.x1a_c00356{left:206.160000pt;}
.x29_c00356{left:212.577215pt;}
.x33_c00356{left:214.802428pt;}
.x84_c00356{left:216.380000pt;}
.x63_c00356{left:218.160000pt;}
.x6c_c00356{left:219.737333pt;}
.x5_c00356{left:226.080000pt;}
.x7a_c00356{left:227.657333pt;}
.x47_c00356{left:229.368000pt;}
.x21_c00356{left:231.222667pt;}
.xf_c00356{left:233.442667pt;}
.x34_c00356{left:234.962727pt;}
.x3f_c00356{left:236.572000pt;}
.x1b_c00356{left:238.320000pt;}
.x73_c00356{left:245.041333pt;}
.x64_c00356{left:246.240000pt;}
.x7b_c00356{left:247.336000pt;}
.x10_c00356{left:249.452000pt;}
.x37_c00356{left:252.240000pt;}
.x2a_c00356{left:255.265599pt;}
.x6_c00356{left:260.400000pt;}
.x53_c00356{left:265.752000pt;}
.x22_c00356{left:268.172000pt;}
.x1c_c00356{left:270.720000pt;}
.x7f_c00356{left:272.169167pt;}
.x7c_c00356{left:279.504000pt;}
.x35_c00356{left:281.045125pt;}
.x54_c00356{left:283.993333pt;}
.x2b_c00356{left:289.589911pt;}
.x85_c00356{left:293.866667pt;}
.x8b_c00356{left:295.440000pt;}
.x40_c00356{left:297.522667pt;}
.x7_c00356{left:299.280000pt;}
.x6d_c00356{left:308.024000pt;}
.x23_c00356{left:309.005333pt;}
.x1d_c00356{left:314.640000pt;}
.x7d_c00356{left:315.714667pt;}
.x2c_c00356{left:318.144829pt;}
.x5e_c00356{left:320.400000pt;}
.x36_c00356{left:322.087116pt;}
.x74_c00356{left:327.361333pt;}
.x38_c00356{left:328.560000pt;}
.x8f_c00356{left:330.384000pt;}
.x8_c00356{left:331.920000pt;}
.x48_c00356{left:337.596000pt;}
.x24_c00356{left:338.496000pt;}
.x65_c00356{left:342.240000pt;}
.x8c_c00356{left:344.160000pt;}
.x55_c00356{left:345.429333pt;}
.x39_c00356{left:348.480000pt;}
.x80_c00356{left:349.452764pt;}
.x7e_c00356{left:351.824000pt;}
.x41_c00356{left:354.406667pt;}
.x11_c00356{left:356.740000pt;}
.x1e_c00356{left:358.800000pt;}
.x9_c00356{left:363.360000pt;}
.x75_c00356{left:367.441333pt;}
.x2d_c00356{left:369.745297pt;}
.x3a_c00356{left:372.000000pt;}
.x86_c00356{left:373.304000pt;}
.x81_c00356{left:374.893495pt;}
.x49_c00356{left:381.265333pt;}
.x66_c00356{left:382.560000pt;}
.x6e_c00356{left:385.313333pt;}
.x5f_c00356{left:390.960000pt;}
.x56_c00356{left:392.097333pt;}
.x42_c00356{left:395.201333pt;}
.x3b_c00356{left:396.720000pt;}
.x12_c00356{left:398.512000pt;}
.x2e_c00356{left:404.046943pt;}
.x13_c00356{left:405.704000pt;}
.x87_c00356{left:407.185333pt;}
.x4a_c00356{left:411.750667pt;}
.x60_c00356{left:417.120000pt;}
.x25_c00356{left:425.872000pt;}
.x6f_c00356{left:429.054667pt;}
.x88_c00356{left:434.582667pt;}
.x43_c00356{left:441.278667pt;}
.x67_c00356{left:444.720000pt;}
.x2f_c00356{left:447.795339pt;}
.x82_c00356{left:449.776888pt;}
.x70_c00356{left:457.336000pt;}
.x89_c00356{left:461.134667pt;}
.x57_c00356{left:462.288000pt;}
.x4b_c00356{left:463.344000pt;}
.x68_c00356{left:465.360000pt;}
.xa_c00356{left:468.960000pt;}
.x30_c00356{left:479.922293pt;}
.x14_c00356{left:483.786667pt;}
.x8d_c00356{left:489.360000pt;}
.x8e_c00356{left:512.400000pt;}
.x8a_c00356{left:525.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m6e_c00357{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);}
.m23_c00357{transform:matrix(0.014048,-0.000211,0.003750,0.249972,0,0);-ms-transform:matrix(0.014048,-0.000211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.014048,-0.000211,0.003750,0.249972,0,0);}
.me_c00357{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);}
.m8e_c00357{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);}
.mf0_c00357{transform:matrix(0.037796,-0.001211,0.008004,0.249872,0,0);-ms-transform:matrix(0.037796,-0.001211,0.008004,0.249872,0,0);-webkit-transform:matrix(0.037796,-0.001211,0.008004,0.249872,0,0);}
.mef_c00357{transform:matrix(0.044077,-0.001412,0.008004,0.249872,0,0);-ms-transform:matrix(0.044077,-0.001412,0.008004,0.249872,0,0);-webkit-transform:matrix(0.044077,-0.001412,0.008004,0.249872,0,0);}
.mdc_c00357{transform:matrix(0.048790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048790,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.086844,-0.001042,0.003000,0.249982,0,0);-ms-transform:matrix(0.086844,-0.001042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.086844,-0.001042,0.003000,0.249982,0,0);}
.me6_c00357{transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.138134,-0.002072,0.003750,0.249972,0,0);-ms-transform:matrix(0.138134,-0.002072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.138134,-0.002072,0.003750,0.249972,0,0);}
.m2a_c00357{transform:matrix(0.140496,-0.001967,0.003500,0.249976,0,0);-ms-transform:matrix(0.140496,-0.001967,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140496,-0.001967,0.003500,0.249976,0,0);}
.m2e_c00357{transform:matrix(0.140731,-0.001970,0.003500,0.249976,0,0);-ms-transform:matrix(0.140731,-0.001970,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140731,-0.001970,0.003500,0.249976,0,0);}
.m8c_c00357{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00357{transform:matrix(0.143380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143380,0.000000,0.000000,0.250000,0,0);}
.m102_c00357{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);}
.m7_c00357{transform:matrix(0.146329,-0.001756,0.003000,0.249982,0,0);-ms-transform:matrix(0.146329,-0.001756,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146329,-0.001756,0.003000,0.249982,0,0);}
.m98_c00357{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);}
.md6_c00357{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);}
.m80_c00357{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00357{transform:matrix(0.150237,-0.001502,0.002500,0.249988,0,0);-ms-transform:matrix(0.150237,-0.001502,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150237,-0.001502,0.002500,0.249988,0,0);}
.m30_c00357{transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);-ms-transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151320,-0.002118,0.003500,0.249976,0,0);}
.mfe_c00357{transform:matrix(0.153451,-0.001688,0.002750,0.249985,0,0);-ms-transform:matrix(0.153451,-0.001688,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153451,-0.001688,0.002750,0.249985,0,0);}
.m9e_c00357{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);}
.m2c_c00357{transform:matrix(0.154070,-0.002157,0.003500,0.249976,0,0);-ms-transform:matrix(0.154070,-0.002157,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154070,-0.002157,0.003500,0.249976,0,0);}
.m2d_c00357{transform:matrix(0.154425,-0.002162,0.003500,0.249976,0,0);-ms-transform:matrix(0.154425,-0.002162,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154425,-0.002162,0.003500,0.249976,0,0);}
.ma3_c00357{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);}
.mf7_c00357{transform:matrix(0.155551,-0.001711,0.002750,0.249985,0,0);-ms-transform:matrix(0.155551,-0.001711,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155551,-0.001711,0.002750,0.249985,0,0);}
.m27_c00357{transform:matrix(0.158060,-0.002213,0.003500,0.249976,0,0);-ms-transform:matrix(0.158060,-0.002213,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158060,-0.002213,0.003500,0.249976,0,0);}
.m103_c00357{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);}
.m22_c00357{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);}
.m7a_c00357{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_c00357{transform:matrix(0.162843,-0.001954,0.003000,0.249982,0,0);-ms-transform:matrix(0.162843,-0.001954,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162843,-0.001954,0.003000,0.249982,0,0);}
.m4d_c00357{transform:matrix(0.163697,-0.001637,0.002500,0.249988,0,0);-ms-transform:matrix(0.163697,-0.001637,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163697,-0.001637,0.002500,0.249988,0,0);}
.m66_c00357{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);}
.m2f_c00357{transform:matrix(0.164034,-0.002296,0.003500,0.249976,0,0);-ms-transform:matrix(0.164034,-0.002296,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164034,-0.002296,0.003500,0.249976,0,0);}
.m53_c00357{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);}
.m77_c00357{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);}
.m6c_c00357{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);}
.m2b_c00357{transform:matrix(0.164659,-0.002305,0.003500,0.249976,0,0);-ms-transform:matrix(0.164659,-0.002305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164659,-0.002305,0.003500,0.249976,0,0);}
.m13_c00357{transform:matrix(0.164676,-0.002470,0.003750,0.249972,0,0);-ms-transform:matrix(0.164676,-0.002470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164676,-0.002470,0.003750,0.249972,0,0);}
.m37_c00357{transform:matrix(0.166814,-0.002335,0.003500,0.249976,0,0);-ms-transform:matrix(0.166814,-0.002335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166814,-0.002335,0.003500,0.249976,0,0);}
.m47_c00357{transform:matrix(0.167327,-0.001673,0.002500,0.249988,0,0);-ms-transform:matrix(0.167327,-0.001673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167327,-0.001673,0.002500,0.249988,0,0);}
.ma2_c00357{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);}
.m86_c00357{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.mf8_c00357{transform:matrix(0.168535,-0.001854,0.002750,0.249985,0,0);-ms-transform:matrix(0.168535,-0.001854,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168535,-0.001854,0.002750,0.249985,0,0);}
.md8_c00357{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);}
.m9f_c00357{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);}
.m94_c00357{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);}
.m57_c00357{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);}
.maf_c00357{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);}
.m64_c00357{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);}
.m26_c00357{transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);-ms-transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172783,-0.002419,0.003500,0.249976,0,0);}
.ma6_c00357{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);}
.mac_c00357{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);}
.me5_c00357{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);}
.m5b_c00357{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);}
.m28_c00357{transform:matrix(0.175448,-0.002456,0.003500,0.249976,0,0);-ms-transform:matrix(0.175448,-0.002456,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175448,-0.002456,0.003500,0.249976,0,0);}
.m90_c00357{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_c00357{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);}
.mea_c00357{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);}
.m21_c00357{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);}
.mc1_c00357{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);}
.mc_c00357{transform:matrix(0.179822,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179822,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179822,-0.002158,0.003000,0.249982,0,0);}
.maa_c00357{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);}
.m43_c00357{transform:matrix(0.180106,-0.001801,0.002500,0.249988,0,0);-ms-transform:matrix(0.180106,-0.001801,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180106,-0.001801,0.002500,0.249988,0,0);}
.m9a_c00357{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);}
.m29_c00357{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);}
.m4c_c00357{transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);-ms-transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181541,-0.001815,0.002500,0.249988,0,0);}
.m1c_c00357{transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);-ms-transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182215,-0.002733,0.003750,0.249972,0,0);}
.m101_c00357{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);}
.m7c_c00357{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);}
.me9_c00357{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);}
.mb3_c00357{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);}
.m92_c00357{transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);}
.m9c_c00357{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);}
.mb2_c00357{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);}
.m44_c00357{transform:matrix(0.185486,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185486,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185486,-0.001855,0.002500,0.249988,0,0);}
.me2_c00357{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);}
.mcd_c00357{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);}
.me8_c00357{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);}
.m76_c00357{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);}
.me1_c00357{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);}
.m87_c00357{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);}
.m74_c00357{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);}
.m6b_c00357{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);}
.mb_c00357{transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);-ms-transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);}
.ma5_c00357{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);}
.md3_c00357{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);}
.m67_c00357{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);}
.mda_c00357{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);}
.me4_c00357{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);}
.m4f_c00357{transform:matrix(0.190690,-0.001907,0.002500,0.249988,0,0);-ms-transform:matrix(0.190690,-0.001907,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190690,-0.001907,0.002500,0.249988,0,0);}
.mdf_c00357{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);}
.m16_c00357{transform:matrix(0.191593,-0.002874,0.003750,0.249972,0,0);-ms-transform:matrix(0.191593,-0.002874,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191593,-0.002874,0.003750,0.249972,0,0);}
.mb8_c00357{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_c00357{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);}
.mf4_c00357{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);}
.md2_c00357{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);}
.mdd_c00357{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);}
.m3a_c00357{transform:matrix(0.193071,-0.002703,0.003500,0.249976,0,0);-ms-transform:matrix(0.193071,-0.002703,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193071,-0.002703,0.003500,0.249976,0,0);}
.m4e_c00357{transform:matrix(0.193470,-0.001935,0.002500,0.249988,0,0);-ms-transform:matrix(0.193470,-0.001935,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193470,-0.001935,0.002500,0.249988,0,0);}
.m106_c00357{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);}
.m1a_c00357{transform:matrix(0.194973,-0.002925,0.003750,0.249972,0,0);-ms-transform:matrix(0.194973,-0.002925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194973,-0.002925,0.003750,0.249972,0,0);}
.m5d_c00357{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);}
.m40_c00357{transform:matrix(0.195795,-0.001958,0.002500,0.249988,0,0);-ms-transform:matrix(0.195795,-0.001958,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195795,-0.001958,0.002500,0.249988,0,0);}
.m3f_c00357{transform:matrix(0.196005,-0.001960,0.002500,0.249988,0,0);-ms-transform:matrix(0.196005,-0.001960,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196005,-0.001960,0.002500,0.249988,0,0);}
.me3_c00357{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);}
.md5_c00357{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);}
.mf9_c00357{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);}
.m51_c00357{transform:matrix(0.197505,-0.001975,0.002500,0.249988,0,0);-ms-transform:matrix(0.197505,-0.001975,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197505,-0.001975,0.002500,0.249988,0,0);}
.m70_c00357{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);}
.mc8_c00357{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);}
.mbf_c00357{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);}
.m3b_c00357{transform:matrix(0.198046,-0.002773,0.003500,0.249976,0,0);-ms-transform:matrix(0.198046,-0.002773,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198046,-0.002773,0.003500,0.249976,0,0);}
.mc4_c00357{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);}
.m10_c00357{transform:matrix(0.198686,-0.002384,0.003000,0.249982,0,0);-ms-transform:matrix(0.198686,-0.002384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198686,-0.002384,0.003000,0.249982,0,0);}
.m78_c00357{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);}
.m84_c00357{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);}
.ma4_c00357{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);}
.m31_c00357{transform:matrix(0.199660,-0.002795,0.003500,0.249976,0,0);-ms-transform:matrix(0.199660,-0.002795,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199660,-0.002795,0.003500,0.249976,0,0);}
.m4b_c00357{transform:matrix(0.199960,-0.002000,0.002500,0.249988,0,0);-ms-transform:matrix(0.199960,-0.002000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199960,-0.002000,0.002500,0.249988,0,0);}
.m8_c00357{transform:matrix(0.200331,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200331,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200331,-0.002404,0.003000,0.249982,0,0);}
.m8f_c00357{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);}
.mb6_c00357{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);}
.ma8_c00357{transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);}
.ma9_c00357{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);}
.m54_c00357{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);}
.m48_c00357{transform:matrix(0.201775,-0.002018,0.002500,0.249988,0,0);-ms-transform:matrix(0.201775,-0.002018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201775,-0.002018,0.002500,0.249988,0,0);}
.m99_c00357{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);}
.me0_c00357{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);}
.md4_c00357{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);}
.m38_c00357{transform:matrix(0.203375,-0.002847,0.003500,0.249976,0,0);-ms-transform:matrix(0.203375,-0.002847,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203375,-0.002847,0.003500,0.249976,0,0);}
.m52_c00357{transform:matrix(0.203715,-0.002037,0.002500,0.249988,0,0);-ms-transform:matrix(0.203715,-0.002037,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203715,-0.002037,0.002500,0.249988,0,0);}
.mae_c00357{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);}
.m95_c00357{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);}
.m58_c00357{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);}
.mdb_c00357{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);}
.m19_c00357{transform:matrix(0.205977,-0.003090,0.003750,0.249972,0,0);-ms-transform:matrix(0.205977,-0.003090,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205977,-0.003090,0.003750,0.249972,0,0);}
.m46_c00357{transform:matrix(0.206070,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206070,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206070,-0.002061,0.002500,0.249988,0,0);}
.m75_c00357{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);}
.m1e_c00357{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);}
.m2_c00357{transform:matrix(0.207030,-0.002484,0.003000,0.249982,0,0);-ms-transform:matrix(0.207030,-0.002484,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207030,-0.002484,0.003000,0.249982,0,0);}
.m65_c00357{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);}
.m97_c00357{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);}
.mca_c00357{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);}
.md1_c00357{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);}
.ma0_c00357{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);}
.mfb_c00357{transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210237,-0.002313,0.002750,0.249985,0,0);}
.mb4_c00357{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);}
.m35_c00357{transform:matrix(0.211214,-0.002957,0.003500,0.249976,0,0);-ms-transform:matrix(0.211214,-0.002957,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211214,-0.002957,0.003500,0.249976,0,0);}
.ma7_c00357{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m88_c00357{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);}
.m6f_c00357{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);}
.m39_c00357{transform:matrix(0.212244,-0.002971,0.003500,0.249976,0,0);-ms-transform:matrix(0.212244,-0.002971,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212244,-0.002971,0.003500,0.249976,0,0);}
.m85_c00357{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);}
.mce_c00357{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);}
.md0_c00357{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);}
.m82_c00357{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);}
.m79_c00357{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);}
.m3d_c00357{transform:matrix(0.214119,-0.002998,0.003500,0.249976,0,0);-ms-transform:matrix(0.214119,-0.002998,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214119,-0.002998,0.003500,0.249976,0,0);}
.m7f_c00357{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);}
.m93_c00357{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);}
.m56_c00357{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);}
.mab_c00357{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);}
.mcf_c00357{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);}
.mc0_c00357{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);}
.m63_c00357{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);}
.me7_c00357{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);}
.m55_c00357{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);}
.m7b_c00357{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);}
.m83_c00357{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);}
.mb7_c00357{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);}
.mfd_c00357{transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);}
.m24_c00357{transform:matrix(0.223420,-0.003351,0.003750,0.249972,0,0);-ms-transform:matrix(0.223420,-0.003351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223420,-0.003351,0.003750,0.249972,0,0);}
.m33_c00357{transform:matrix(0.223638,-0.003131,0.003500,0.249976,0,0);-ms-transform:matrix(0.223638,-0.003131,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223638,-0.003131,0.003500,0.249976,0,0);}
.md_c00357{transform:matrix(0.224209,-0.002691,0.003000,0.249982,0,0);-ms-transform:matrix(0.224209,-0.002691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224209,-0.002691,0.003000,0.249982,0,0);}
.m5c_c00357{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);}
.mbe_c00357{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);}
.m59_c00357{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);}
.mfa_c00357{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);}
.m9d_c00357{transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);}
.m49_c00357{transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);-ms-transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);}
.mc3_c00357{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);}
.mbb_c00357{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);}
.mb0_c00357{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);}
.m45_c00357{transform:matrix(0.229504,-0.002295,0.002500,0.249988,0,0);-ms-transform:matrix(0.229504,-0.002295,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229504,-0.002295,0.002500,0.249988,0,0);}
.m100_c00357{transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);-ms-transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);}
.m8d_c00357{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);}
.m5a_c00357{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);}
.m89_c00357{transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.231438,-0.002777,0.003000,0.249982,0,0);-ms-transform:matrix(0.231438,-0.002777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231438,-0.002777,0.003000,0.249982,0,0);}
.m50_c00357{transform:matrix(0.232173,-0.002322,0.002500,0.249988,0,0);-ms-transform:matrix(0.232173,-0.002322,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232173,-0.002322,0.002500,0.249988,0,0);}
.mc9_c00357{transform:matrix(0.232780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232780,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{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);}
.mbc_c00357{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);}
.m14_c00357{transform:matrix(0.234149,-0.003512,0.003750,0.249972,0,0);-ms-transform:matrix(0.234149,-0.003512,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234149,-0.003512,0.003750,0.249972,0,0);}
.mc2_c00357{transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.235813,-0.002358,0.002500,0.249988,0,0);-ms-transform:matrix(0.235813,-0.002358,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235813,-0.002358,0.002500,0.249988,0,0);}
.mc5_c00357{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);}
.m5e_c00357{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);}
.m62_c00357{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);}
.mde_c00357{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);}
.mbd_c00357{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);}
.mc7_c00357{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.m3e_c00357{transform:matrix(0.238277,-0.003336,0.003500,0.249976,0,0);-ms-transform:matrix(0.238277,-0.003336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238277,-0.003336,0.003500,0.249976,0,0);}
.m6d_c00357{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);}
.mf5_c00357{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);}
.mad_c00357{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);}
.m42_c00357{transform:matrix(0.242303,-0.002423,0.002500,0.249988,0,0);-ms-transform:matrix(0.242303,-0.002423,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242303,-0.002423,0.002500,0.249988,0,0);}
.mf6_c00357{transform:matrix(0.242820,-0.002671,0.002750,0.249985,0,0);-ms-transform:matrix(0.242820,-0.002671,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242820,-0.002671,0.002750,0.249985,0,0);}
.m20_c00357{transform:matrix(0.243173,-0.003648,0.003750,0.249972,0,0);-ms-transform:matrix(0.243173,-0.003648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243173,-0.003648,0.003750,0.249972,0,0);}
.mc6_c00357{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00357{transform:matrix(0.252820,-0.003539,0.003500,0.249976,0,0);-ms-transform:matrix(0.252820,-0.003539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252820,-0.003539,0.003500,0.249976,0,0);}
.m105_c00357{transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.257461,-0.003090,0.003000,0.249982,0,0);-ms-transform:matrix(0.257461,-0.003090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257461,-0.003090,0.003000,0.249982,0,0);}
.md9_c00357{transform:matrix(0.259330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259330,0.000000,0.000000,0.250000,0,0);}
.mcb_c00357{transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);}
.m5f_c00357{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00357{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.266021,-0.003192,0.003000,0.249982,0,0);-ms-transform:matrix(0.266021,-0.003192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266021,-0.003192,0.003000,0.249982,0,0);}
.m60_c00357{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00357{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);}
.m61_c00357{transform:matrix(0.274330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274330,0.000000,0.000000,0.250000,0,0);}
.mfc_c00357{transform:matrix(0.277073,-0.003048,0.002750,0.249985,0,0);-ms-transform:matrix(0.277073,-0.003048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277073,-0.003048,0.002750,0.249985,0,0);}
.m1f_c00357{transform:matrix(0.279969,-0.004200,0.003750,0.249972,0,0);-ms-transform:matrix(0.279969,-0.004200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279969,-0.004200,0.003750,0.249972,0,0);}
.mf1_c00357{transform:matrix(0.280911,-0.008998,0.008004,0.249872,0,0);-ms-transform:matrix(0.280911,-0.008998,0.008004,0.249872,0,0);-webkit-transform:matrix(0.280911,-0.008998,0.008004,0.249872,0,0);}
.m104_c00357{transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);}
.m32_c00357{transform:matrix(0.284037,-0.003977,0.003500,0.249976,0,0);-ms-transform:matrix(0.284037,-0.003977,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284037,-0.003977,0.003500,0.249976,0,0);}
.med_c00357{transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);}
.m34_c00357{transform:matrix(0.292086,-0.004089,0.003500,0.249976,0,0);-ms-transform:matrix(0.292086,-0.004089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.292086,-0.004089,0.003500,0.249976,0,0);}
.m18_c00357{transform:matrix(0.296702,-0.004451,0.003750,0.249972,0,0);-ms-transform:matrix(0.296702,-0.004451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296702,-0.004451,0.003750,0.249972,0,0);}
.m81_c00357{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);}
.md7_c00357{transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321370,0.000000,0.000000,0.250000,0,0);}
.m8b_c00357{transform:matrix(0.321900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321900,0.000000,0.000000,0.250000,0,0);}
.m69_c00357{transform:matrix(0.324550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324550,0.000000,0.000000,0.250000,0,0);}
.mb9_c00357{transform:matrix(0.327515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327515,0.000000,0.000000,0.250000,0,0);}
.m8a_c00357{transform:matrix(0.335710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335710,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.344455,-0.004133,0.003000,0.249982,0,0);-ms-transform:matrix(0.344455,-0.004133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.344455,-0.004133,0.003000,0.249982,0,0);}
.m17_c00357{transform:matrix(0.348646,-0.005230,0.003750,0.249972,0,0);-ms-transform:matrix(0.348646,-0.005230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.348646,-0.005230,0.003750,0.249972,0,0);}
.m7d_c00357{transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354880,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.358105,-0.005372,0.003750,0.249972,0,0);-ms-transform:matrix(0.358105,-0.005372,0.003750,0.249972,0,0);-webkit-transform:matrix(0.358105,-0.005372,0.003750,0.249972,0,0);}
.m68_c00357{transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366800,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.373568,-0.005604,0.003750,0.249972,0,0);-ms-transform:matrix(0.373568,-0.005604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.373568,-0.005604,0.003750,0.249972,0,0);}
.m91_c00357{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m73_c00357{transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);}
.mf2_c00357{transform:matrix(0.396836,-0.012711,0.008004,0.249872,0,0);-ms-transform:matrix(0.396836,-0.012711,0.008004,0.249872,0,0);-webkit-transform:matrix(0.396836,-0.012711,0.008004,0.249872,0,0);}
.mcc_c00357{transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402120,0.000000,0.000000,0.250000,0,0);}
.m72_c00357{transform:matrix(0.406110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406110,0.000000,0.000000,0.250000,0,0);}
.m107_c00357{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);}
.mee_c00357{transform:matrix(0.423918,-0.013579,0.008004,0.249872,0,0);-ms-transform:matrix(0.423918,-0.013579,0.008004,0.249872,0,0);-webkit-transform:matrix(0.423918,-0.013579,0.008004,0.249872,0,0);}
.m1_c00357{transform:matrix(0.434269,-0.005211,0.003000,0.249982,0,0);-ms-transform:matrix(0.434269,-0.005211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.434269,-0.005211,0.003000,0.249982,0,0);}
.mf3_c00357{transform:matrix(0.456341,-0.014618,0.008004,0.249872,0,0);-ms-transform:matrix(0.456341,-0.014618,0.008004,0.249872,0,0);-webkit-transform:matrix(0.456341,-0.014618,0.008004,0.249872,0,0);}
.m96_c00357{transform:matrix(0.487940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00357{transform:matrix(0.489810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.507123,-0.007607,0.003750,0.249972,0,0);-ms-transform:matrix(0.507123,-0.007607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.507123,-0.007607,0.003750,0.249972,0,0);}
.mec_c00357{transform:matrix(0.518415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518415,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.530462,-0.006366,0.003000,0.249982,0,0);-ms-transform:matrix(0.530462,-0.006366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.530462,-0.006366,0.003000,0.249982,0,0);}
.mff_c00357{transform:matrix(0.536093,-0.005897,0.002750,0.249985,0,0);-ms-transform:matrix(0.536093,-0.005897,0.002750,0.249985,0,0);-webkit-transform:matrix(0.536093,-0.005897,0.002750,0.249985,0,0);}
.m6a_c00357{transform:matrix(0.618515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618515,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.650200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650200,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.686336,-0.008236,0.003000,0.249982,0,0);-ms-transform:matrix(0.686336,-0.008236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.686336,-0.008236,0.003000,0.249982,0,0);}
.mba_c00357{transform:matrix(0.817250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817250,0.000000,0.000000,0.250000,0,0);}
.meb_c00357{transform:matrix(2.834960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.834960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.834960,0.000000,0.000000,0.250000,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;}
.fs11_c00357{font-size:22.050000px;}
.fsd_c00357{font-size:24.150000px;}
.fs18_c00357{font-size:28.350000px;}
.fs17_c00357{font-size:35.682592px;}
.fs15_c00357{font-size:49.350000px;}
.fs13_c00357{font-size:50.400000px;}
.fs12_c00357{font-size:51.450000px;}
.fs14_c00357{font-size:52.500000px;}
.fs16_c00357{font-size:55.650000px;}
.fs1a_c00357{font-size:57.750000px;}
.fsb_c00357{font-size:59.850000px;}
.fs6_c00357{font-size:59.855865px;}
.fsc_c00357{font-size:66.150000px;}
.fsa_c00357{font-size:67.200000px;}
.fs9_c00357{font-size:69.300000px;}
.fs1_c00357{font-size:69.304989px;}
.fs4_c00357{font-size:69.307796px;}
.fs10_c00357{font-size:70.350000px;}
.fs7_c00357{font-size:70.353517px;}
.fs0_c00357{font-size:70.355065px;}
.fs8_c00357{font-size:71.403570px;}
.fs3_c00357{font-size:72.458150px;}
.fsf_c00357{font-size:74.550000px;}
.fse_c00357{font-size:75.600000px;}
.fs19_c00357{font-size:76.654637px;}
.fs5_c00357{font-size:76.657511px;}
.fs2_c00357{font-size:98.700000px;}
.y0_c00357{bottom:0.000000px;}
.y7e_c00357{bottom:93.046500px;}
.y77_c00357{bottom:107.058000px;}
.y78_c00357{bottom:110.992500px;}
.y79_c00357{bottom:112.284324px;}
.y7a_c00357{bottom:114.625380px;}
.y7b_c00357{bottom:115.912356px;}
.y7c_c00357{bottom:118.830852px;}
.y7d_c00357{bottom:119.664612px;}
.y76_c00357{bottom:146.610000px;}
.y73_c00357{bottom:149.616000px;}
.y8a_c00357{bottom:150.360000px;}
.y72_c00357{bottom:167.940000px;}
.y75_c00357{bottom:168.372000px;}
.y71_c00357{bottom:185.872500px;}
.y74_c00357{bottom:186.561000px;}
.y70_c00357{bottom:203.757000px;}
.y6e_c00357{bottom:204.940500px;}
.y6f_c00357{bottom:221.616000px;}
.y6d_c00357{bottom:222.726000px;}
.y6c_c00357{bottom:262.168500px;}
.y6b_c00357{bottom:273.906000px;}
.y6a_c00357{bottom:297.093000px;}
.y69_c00357{bottom:324.867000px;}
.y68_c00357{bottom:351.000000px;}
.y5f_c00357{bottom:403.113000px;}
.y60_c00357{bottom:403.413000px;}
.y61_c00357{bottom:403.665000px;}
.y62_c00357{bottom:403.923000px;}
.y63_c00357{bottom:404.422500px;}
.y64_c00357{bottom:404.716500px;}
.y65_c00357{bottom:405.147000px;}
.y66_c00357{bottom:405.396000px;}
.y67_c00357{bottom:405.915000px;}
.y5e_c00357{bottom:427.434000px;}
.y5d_c00357{bottom:453.601500px;}
.y5c_c00357{bottom:478.171500px;}
.y5b_c00357{bottom:503.035500px;}
.y54_c00357{bottom:529.741500px;}
.y55_c00357{bottom:530.544000px;}
.y56_c00357{bottom:530.994000px;}
.y57_c00357{bottom:531.414000px;}
.y58_c00357{bottom:531.819000px;}
.y59_c00357{bottom:532.294500px;}
.y5a_c00357{bottom:532.548000px;}
.y53_c00357{bottom:554.620500px;}
.y4b_c00357{bottom:579.421830px;}
.y4c_c00357{bottom:580.415190px;}
.y4d_c00357{bottom:580.746660px;}
.y4e_c00357{bottom:581.119020px;}
.y4f_c00357{bottom:581.752410px;}
.y50_c00357{bottom:582.083940px;}
.y51_c00357{bottom:582.501630px;}
.y52_c00357{bottom:583.182690px;}
.y3f_c00357{bottom:602.101500px;}
.y40_c00357{bottom:602.352420px;}
.y41_c00357{bottom:602.836185px;}
.y42_c00357{bottom:603.338760px;}
.y43_c00357{bottom:603.465465px;}
.y44_c00357{bottom:604.174995px;}
.y45_c00357{bottom:604.308015px;}
.y46_c00357{bottom:604.588635px;}
.y47_c00357{bottom:604.980120px;}
.y48_c00357{bottom:605.366145px;}
.y49_c00357{bottom:605.709135px;}
.y4a_c00357{bottom:606.491580px;}
.y32_c00357{bottom:623.969586px;}
.y33_c00357{bottom:624.283515px;}
.y34_c00357{bottom:625.311948px;}
.y35_c00357{bottom:625.678671px;}
.y36_c00357{bottom:626.135589px;}
.y37_c00357{bottom:626.862063px;}
.y38_c00357{bottom:627.126852px;}
.y39_c00357{bottom:627.799629px;}
.y3a_c00357{bottom:628.442334px;}
.y3b_c00357{bottom:628.725645px;}
.y3c_c00357{bottom:629.001459px;}
.y3d_c00357{bottom:629.571651px;}
.y3e_c00357{bottom:630.302451px;}
.y26_c00357{bottom:646.381500px;}
.y27_c00357{bottom:646.870233px;}
.y28_c00357{bottom:647.486898px;}
.y29_c00357{bottom:648.368142px;}
.y2a_c00357{bottom:648.818130px;}
.y2b_c00357{bottom:649.264023px;}
.y2c_c00357{bottom:649.978002px;}
.y2d_c00357{bottom:650.646999px;}
.y2e_c00357{bottom:651.187749px;}
.y2f_c00357{bottom:651.727071px;}
.y30_c00357{bottom:652.336596px;}
.y31_c00357{bottom:652.570347px;}
.y7f_c00357{bottom:669.871500px;}
.y80_c00357{bottom:670.200263px;}
.y81_c00357{bottom:670.491933px;}
.y82_c00357{bottom:670.917798px;}
.y83_c00357{bottom:671.404449px;}
.y84_c00357{bottom:672.241576px;}
.y85_c00357{bottom:672.621786px;}
.y86_c00357{bottom:673.286670px;}
.y87_c00357{bottom:673.942941px;}
.y88_c00357{bottom:674.167473px;}
.y89_c00357{bottom:674.602727px;}
.y1b_c00357{bottom:697.228507px;}
.y1c_c00357{bottom:697.806270px;}
.y1d_c00357{bottom:698.706075px;}
.y1e_c00357{bottom:699.065280px;}
.y1f_c00357{bottom:700.107967px;}
.y20_c00357{bottom:700.388257px;}
.y21_c00357{bottom:700.863202px;}
.y22_c00357{bottom:701.525317px;}
.y23_c00357{bottom:701.688277px;}
.y24_c00357{bottom:701.756925px;}
.y25_c00357{bottom:702.490282px;}
.y13_c00357{bottom:720.331500px;}
.y14_c00357{bottom:721.156867px;}
.y15_c00357{bottom:721.618702px;}
.y16_c00357{bottom:721.715610px;}
.y17_c00357{bottom:722.882010px;}
.y18_c00357{bottom:723.359618px;}
.y19_c00357{bottom:723.685192px;}
.y1a_c00357{bottom:724.347322px;}
.y12_c00357{bottom:763.305000px;}
.yc_c00357{bottom:798.134514px;}
.yd_c00357{bottom:802.319856px;}
.ye_c00357{bottom:803.089854px;}
.yf_c00357{bottom:807.380226px;}
.y10_c00357{bottom:808.635606px;}
.y11_c00357{bottom:811.788546px;}
.y1_c00357{bottom:821.884500px;}
.y2_c00357{bottom:822.419100px;}
.y3_c00357{bottom:822.727782px;}
.y4_c00357{bottom:823.294062px;}
.y5_c00357{bottom:823.566942px;}
.y6_c00357{bottom:824.277438px;}
.y7_c00357{bottom:824.889294px;}
.y8_c00357{bottom:825.236568px;}
.y9_c00357{bottom:825.557418px;}
.ya_c00357{bottom:825.925338px;}
.yb_c00357{bottom:826.725600px;}
.h13_c00357{height:22.050000px;}
.hf_c00357{height:24.150000px;}
.h1a_c00357{height:28.350000px;}
.h19_c00357{height:35.682592px;}
.h17_c00357{height:49.350000px;}
.h15_c00357{height:50.400000px;}
.h14_c00357{height:51.450000px;}
.h16_c00357{height:52.500000px;}
.h18_c00357{height:55.650000px;}
.h1c_c00357{height:57.750000px;}
.hd_c00357{height:59.850000px;}
.h8_c00357{height:59.855865px;}
.he_c00357{height:66.150000px;}
.hc_c00357{height:67.200000px;}
.hb_c00357{height:69.300000px;}
.h3_c00357{height:69.304989px;}
.h6_c00357{height:69.307796px;}
.h12_c00357{height:70.350000px;}
.h9_c00357{height:70.353517px;}
.h2_c00357{height:70.355065px;}
.ha_c00357{height:71.403570px;}
.h5_c00357{height:72.458150px;}
.h11_c00357{height:74.550000px;}
.h10_c00357{height:75.600000px;}
.h1b_c00357{height:76.654637px;}
.h7_c00357{height:76.657511px;}
.h4_c00357{height:98.700000px;}
.h0_c00357{height:1008.450000px;}
.h1_c00357{height:1008.750000px;}
.w0_c00357{width:696.000000px;}
.x0_c00357{left:0.000000px;}
.x9b_c00357{left:119.769000px;}
.x9a_c00357{left:146.610000px;}
.x1_c00357{left:160.968000px;}
.x20_c00357{left:162.117000px;}
.x37_c00357{left:163.249470px;}
.x2a_c00357{left:164.330139px;}
.x50_c00357{left:165.369000px;}
.x6e_c00357{left:168.210000px;}
.x86_c00357{left:170.640000px;}
.x6a_c00357{left:175.500000px;}
.x7f_c00357{left:179.280000px;}
.x31_c00357{left:181.291500px;}
.x57_c00357{left:183.600000px;}
.x19_c00357{left:186.016260px;}
.x8d_c00357{left:188.190000px;}
.x51_c00357{left:189.541500px;}
.x5f_c00357{left:192.931500px;}
.x80_c00357{left:194.400000px;}
.x21_c00357{left:197.026500px;}
.x87_c00357{left:198.990000px;}
.x12_c00357{left:200.272500px;}
.x65_c00357{left:202.230000px;}
.x7c_c00357{left:204.120000px;}
.x2_c00357{left:205.518000px;}
.x8b_c00357{left:206.550000px;}
.x8e_c00357{left:208.170000px;}
.x6f_c00357{left:209.520000px;}
.x9e_c00357{left:210.969000px;}
.x60_c00357{left:215.908500px;}
.x3e_c00357{left:219.240000px;}
.x48_c00357{left:220.591500px;}
.x52_c00357{left:221.941500px;}
.x81_c00357{left:225.990000px;}
.x1a_c00357{left:227.334390px;}
.x58_c00357{left:229.230000px;}
.x3_c00357{left:231.241500px;}
.x9c_c00357{left:233.182972px;}
.x66_c00357{left:236.520000px;}
.x7d_c00357{left:237.870000px;}
.x61_c00357{left:239.377500px;}
.x22_c00357{left:241.074000px;}
.x70_c00357{left:242.730000px;}
.x38_c00357{left:246.083820px;}
.x88_c00357{left:249.210000px;}
.x67_c00357{left:253.530000px;}
.x13_c00357{left:255.297000px;}
.x43_c00357{left:258.084000px;}
.x2b_c00357{left:260.213139px;}
.x8f_c00357{left:265.680000px;}
.x82_c00357{left:268.380000px;}
.x7e_c00357{left:271.890000px;}
.x39_c00357{left:273.680265px;}
.x49_c00357{left:276.751500px;}
.x4_c00357{left:278.431500px;}
.x89_c00357{left:281.610000px;}
.x62_c00357{left:284.761500px;}
.x14_c00357{left:286.086000px;}
.x44_c00357{left:290.245500px;}
.x15_c00357{left:292.546500px;}
.x8c_c00357{left:297.270000px;}
.x4a_c00357{left:298.891500px;}
.x5_c00357{left:301.171500px;}
.x53_c00357{left:302.671500px;}
.x23_c00357{left:304.020000px;}
.x3f_c00357{left:312.120000px;}
.x83_c00357{left:313.470000px;}
.x10_c00357{left:316.710000px;}
.x2c_c00357{left:319.044639px;}
.x45_c00357{left:320.199000px;}
.xc_c00357{left:327.121926px;}
.x59_c00357{left:328.860000px;}
.x6b_c00357{left:329.940000px;}
.x24_c00357{left:336.162000px;}
.x84_c00357{left:337.770000px;}
.x4b_c00357{left:340.741500px;}
.x54_c00357{left:342.901500px;}
.x40_c00357{left:346.140000px;}
.x68_c00357{left:347.760000px;}
.x46_c00357{left:349.087500px;}
.x63_c00357{left:350.631000px;}
.x85_c00357{left:352.890000px;}
.x3a_c00357{left:357.603600px;}
.x8a_c00357{left:358.830000px;}
.x6_c00357{left:360.379500px;}
.x55_c00357{left:362.341500px;}
.x9d_c00357{left:364.472552px;}
.x90_c00357{left:366.930000px;}
.x25_c00357{left:368.011500px;}
.x16_c00357{left:370.306500px;}
.x4c_c00357{left:373.141500px;}
.x5a_c00357{left:381.240000px;}
.x47_c00357{left:383.097000px;}
.x3b_c00357{left:385.206045px;}
.x32_c00357{left:388.641000px;}
.x2d_c00357{left:389.849139px;}
.x11_c00357{left:391.770000px;}
.x56_c00357{left:394.471500px;}
.x9f_c00357{left:396.543000px;}
.x5b_c00357{left:400.950000px;}
.x17_c00357{left:402.147000px;}
.x99_c00357{left:403.650000px;}
.x98_c00357{left:405.270000px;}
.x7_c00357{left:411.367500px;}
.xa4_c00357{left:412.560000px;}
.x72_c00357{left:417.690000px;}
.x26_c00357{left:419.010000px;}
.x3c_c00357{left:420.074355px;}
.x18_c00357{left:423.852000px;}
.xa5_c00357{left:427.140000px;}
.x69_c00357{left:428.760000px;}
.x33_c00357{left:430.005000px;}
.x91_c00357{left:431.190000px;}
.x2e_c00357{left:437.904639px;}
.x8_c00357{left:440.307000px;}
.x1b_c00357{left:445.733175px;}
.x5c_c00357{left:449.010000px;}
.x41_c00357{left:453.600000px;}
.x73_c00357{left:461.700000px;}
.x78_c00357{left:465.210000px;}
.x9_c00357{left:467.044500px;}
.xd_c00357{left:470.122038px;}
.x93_c00357{left:472.500000px;}
.x42_c00357{left:475.200000px;}
.x3d_c00357{left:476.779215px;}
.x74_c00357{left:481.950000px;}
.x2f_c00357{left:483.812139px;}
.x4d_c00357{left:488.971500px;}
.xa0_c00357{left:491.551500px;}
.x1c_c00357{left:492.974872px;}
.x75_c00357{left:495.720000px;}
.xa_c00357{left:497.704500px;}
.x64_c00357{left:499.500000px;}
.x1d_c00357{left:504.639053px;}
.x34_c00357{left:507.756000px;}
.x1e_c00357{left:509.515620px;}
.xe_c00357{left:511.978002px;}
.x71_c00357{left:513.540000px;}
.x79_c00357{left:517.590000px;}
.x4e_c00357{left:520.561500px;}
.x30_c00357{left:523.749639px;}
.xa6_c00357{left:534.330000px;}
.x92_c00357{left:535.680000px;}
.x94_c00357{left:537.300000px;}
.x35_c00357{left:542.055000px;}
.x27_c00357{left:543.943500px;}
.x6c_c00357{left:545.940000px;}
.x95_c00357{left:549.720000px;}
.xa1_c00357{left:551.212500px;}
.x7a_c00357{left:559.170000px;}
.x1f_c00357{left:561.906907px;}
.xb_c00357{left:564.393000px;}
.x76_c00357{left:569.970000px;}
.xa2_c00357{left:571.624500px;}
.x5d_c00357{left:575.640000px;}
.xa7_c00357{left:576.720000px;}
.x6d_c00357{left:578.070000px;}
.x96_c00357{left:586.170000px;}
.x28_c00357{left:587.481000px;}
.xa8_c00357{left:592.650000px;}
.x4f_c00357{left:598.861500px;}
.x7b_c00357{left:600.210000px;}
.x29_c00357{left:604.177500px;}
.xa3_c00357{left:611.193000px;}
.xf_c00357{left:617.075304px;}
.x36_c00357{left:620.299500px;}
.x77_c00357{left:622.620000px;}
.x5e_c00357{left:626.670000px;}
.x97_c00357{left:627.750000px;}
.xa9_c00357{left:665.010000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.fs11_c00357{font-size:19.600000pt;}
.fsd_c00357{font-size:21.466667pt;}
.fs18_c00357{font-size:25.200000pt;}
.fs17_c00357{font-size:31.717860pt;}
.fs15_c00357{font-size:43.866667pt;}
.fs13_c00357{font-size:44.800000pt;}
.fs12_c00357{font-size:45.733333pt;}
.fs14_c00357{font-size:46.666667pt;}
.fs16_c00357{font-size:49.466667pt;}
.fs1a_c00357{font-size:51.333333pt;}
.fsb_c00357{font-size:53.200000pt;}
.fs6_c00357{font-size:53.205213pt;}
.fsc_c00357{font-size:58.800000pt;}
.fsa_c00357{font-size:59.733333pt;}
.fs9_c00357{font-size:61.600000pt;}
.fs1_c00357{font-size:61.604435pt;}
.fs4_c00357{font-size:61.606930pt;}
.fs10_c00357{font-size:62.533333pt;}
.fs7_c00357{font-size:62.536460pt;}
.fs0_c00357{font-size:62.537836pt;}
.fs8_c00357{font-size:63.469840pt;}
.fs3_c00357{font-size:64.407245pt;}
.fsf_c00357{font-size:66.266667pt;}
.fse_c00357{font-size:67.200000pt;}
.fs19_c00357{font-size:68.137455pt;}
.fs5_c00357{font-size:68.140010pt;}
.fs2_c00357{font-size:87.733333pt;}
.y0_c00357{bottom:0.000000pt;}
.y7e_c00357{bottom:82.708000pt;}
.y77_c00357{bottom:95.162667pt;}
.y78_c00357{bottom:98.660000pt;}
.y79_c00357{bottom:99.808288pt;}
.y7a_c00357{bottom:101.889227pt;}
.y7b_c00357{bottom:103.033205pt;}
.y7c_c00357{bottom:105.627424pt;}
.y7d_c00357{bottom:106.368544pt;}
.y76_c00357{bottom:130.320000pt;}
.y73_c00357{bottom:132.992000pt;}
.y8a_c00357{bottom:133.653333pt;}
.y72_c00357{bottom:149.280000pt;}
.y75_c00357{bottom:149.664000pt;}
.y71_c00357{bottom:165.220000pt;}
.y74_c00357{bottom:165.832000pt;}
.y70_c00357{bottom:181.117333pt;}
.y6e_c00357{bottom:182.169333pt;}
.y6f_c00357{bottom:196.992000pt;}
.y6d_c00357{bottom:197.978667pt;}
.y6c_c00357{bottom:233.038667pt;}
.y6b_c00357{bottom:243.472000pt;}
.y6a_c00357{bottom:264.082667pt;}
.y69_c00357{bottom:288.770667pt;}
.y68_c00357{bottom:312.000000pt;}
.y5f_c00357{bottom:358.322667pt;}
.y60_c00357{bottom:358.589333pt;}
.y61_c00357{bottom:358.813333pt;}
.y62_c00357{bottom:359.042667pt;}
.y63_c00357{bottom:359.486667pt;}
.y64_c00357{bottom:359.748000pt;}
.y65_c00357{bottom:360.130667pt;}
.y66_c00357{bottom:360.352000pt;}
.y67_c00357{bottom:360.813333pt;}
.y5e_c00357{bottom:379.941333pt;}
.y5d_c00357{bottom:403.201333pt;}
.y5c_c00357{bottom:425.041333pt;}
.y5b_c00357{bottom:447.142667pt;}
.y54_c00357{bottom:470.881333pt;}
.y55_c00357{bottom:471.594667pt;}
.y56_c00357{bottom:471.994667pt;}
.y57_c00357{bottom:472.368000pt;}
.y58_c00357{bottom:472.728000pt;}
.y59_c00357{bottom:473.150667pt;}
.y5a_c00357{bottom:473.376000pt;}
.y53_c00357{bottom:492.996000pt;}
.y4b_c00357{bottom:515.041627pt;}
.y4c_c00357{bottom:515.924613pt;}
.y4d_c00357{bottom:516.219253pt;}
.y4e_c00357{bottom:516.550240pt;}
.y4f_c00357{bottom:517.113253pt;}
.y50_c00357{bottom:517.407947pt;}
.y51_c00357{bottom:517.779227pt;}
.y52_c00357{bottom:518.384613pt;}
.y3f_c00357{bottom:535.201333pt;}
.y40_c00357{bottom:535.424373pt;}
.y41_c00357{bottom:535.854387pt;}
.y42_c00357{bottom:536.301120pt;}
.y43_c00357{bottom:536.413747pt;}
.y44_c00357{bottom:537.044440pt;}
.y45_c00357{bottom:537.162680pt;}
.y46_c00357{bottom:537.412120pt;}
.y47_c00357{bottom:537.760107pt;}
.y48_c00357{bottom:538.103240pt;}
.y49_c00357{bottom:538.408120pt;}
.y4a_c00357{bottom:539.103627pt;}
.y32_c00357{bottom:554.639632pt;}
.y33_c00357{bottom:554.918680pt;}
.y34_c00357{bottom:555.832843pt;}
.y35_c00357{bottom:556.158819pt;}
.y36_c00357{bottom:556.564968pt;}
.y37_c00357{bottom:557.210723pt;}
.y38_c00357{bottom:557.446091pt;}
.y39_c00357{bottom:558.044115pt;}
.y3a_c00357{bottom:558.615408pt;}
.y3b_c00357{bottom:558.867240pt;}
.y3c_c00357{bottom:559.112408pt;}
.y3d_c00357{bottom:559.619245pt;}
.y3e_c00357{bottom:560.268845pt;}
.y26_c00357{bottom:574.561333pt;}
.y27_c00357{bottom:574.995763pt;}
.y28_c00357{bottom:575.543909pt;}
.y29_c00357{bottom:576.327237pt;}
.y2a_c00357{bottom:576.727227pt;}
.y2b_c00357{bottom:577.123576pt;}
.y2c_c00357{bottom:577.758224pt;}
.y2d_c00357{bottom:578.352888pt;}
.y2e_c00357{bottom:578.833555pt;}
.y2f_c00357{bottom:579.312952pt;}
.y30_c00357{bottom:579.854752pt;}
.y31_c00357{bottom:580.062531pt;}
.y7f_c00357{bottom:595.441333pt;}
.y80_c00357{bottom:595.733567pt;}
.y81_c00357{bottom:595.992829pt;}
.y82_c00357{bottom:596.371376pt;}
.y83_c00357{bottom:596.803955pt;}
.y84_c00357{bottom:597.548068pt;}
.y85_c00357{bottom:597.886032pt;}
.y86_c00357{bottom:598.477040pt;}
.y87_c00357{bottom:599.060392pt;}
.y88_c00357{bottom:599.259976pt;}
.y89_c00357{bottom:599.646868pt;}
.y1b_c00357{bottom:619.758673pt;}
.y1c_c00357{bottom:620.272240pt;}
.y1d_c00357{bottom:621.072067pt;}
.y1e_c00357{bottom:621.391360pt;}
.y1f_c00357{bottom:622.318193pt;}
.y20_c00357{bottom:622.567340pt;}
.y21_c00357{bottom:622.989513pt;}
.y22_c00357{bottom:623.578060pt;}
.y23_c00357{bottom:623.722913pt;}
.y24_c00357{bottom:623.783933pt;}
.y25_c00357{bottom:624.435807pt;}
.y13_c00357{bottom:640.294667pt;}
.y14_c00357{bottom:641.028327pt;}
.y15_c00357{bottom:641.438847pt;}
.y16_c00357{bottom:641.524987pt;}
.y17_c00357{bottom:642.561787pt;}
.y18_c00357{bottom:642.986327pt;}
.y19_c00357{bottom:643.275727pt;}
.y1a_c00357{bottom:643.864287pt;}
.y12_c00357{bottom:678.493333pt;}
.yc_c00357{bottom:709.452901pt;}
.yd_c00357{bottom:713.173205pt;}
.ye_c00357{bottom:713.857648pt;}
.yf_c00357{bottom:717.671312pt;}
.y10_c00357{bottom:718.787205pt;}
.y11_c00357{bottom:721.589819pt;}
.y1_c00357{bottom:730.564000pt;}
.y2_c00357{bottom:731.039200pt;}
.y3_c00357{bottom:731.313584pt;}
.y4_c00357{bottom:731.816944pt;}
.y5_c00357{bottom:732.059504pt;}
.y6_c00357{bottom:732.691056pt;}
.y7_c00357{bottom:733.234928pt;}
.y8_c00357{bottom:733.543616pt;}
.y9_c00357{bottom:733.828816pt;}
.ya_c00357{bottom:734.155856pt;}
.yb_c00357{bottom:734.867200pt;}
.h13_c00357{height:19.600000pt;}
.hf_c00357{height:21.466667pt;}
.h1a_c00357{height:25.200000pt;}
.h19_c00357{height:31.717860pt;}
.h17_c00357{height:43.866667pt;}
.h15_c00357{height:44.800000pt;}
.h14_c00357{height:45.733333pt;}
.h16_c00357{height:46.666667pt;}
.h18_c00357{height:49.466667pt;}
.h1c_c00357{height:51.333333pt;}
.hd_c00357{height:53.200000pt;}
.h8_c00357{height:53.205213pt;}
.he_c00357{height:58.800000pt;}
.hc_c00357{height:59.733333pt;}
.hb_c00357{height:61.600000pt;}
.h3_c00357{height:61.604435pt;}
.h6_c00357{height:61.606930pt;}
.h12_c00357{height:62.533333pt;}
.h9_c00357{height:62.536460pt;}
.h2_c00357{height:62.537836pt;}
.ha_c00357{height:63.469840pt;}
.h5_c00357{height:64.407245pt;}
.h11_c00357{height:66.266667pt;}
.h10_c00357{height:67.200000pt;}
.h1b_c00357{height:68.137455pt;}
.h7_c00357{height:68.140010pt;}
.h4_c00357{height:87.733333pt;}
.h0_c00357{height:896.400000pt;}
.h1_c00357{height:896.666667pt;}
.w0_c00357{width:618.666667pt;}
.x0_c00357{left:0.000000pt;}
.x9b_c00357{left:106.461333pt;}
.x9a_c00357{left:130.320000pt;}
.x1_c00357{left:143.082667pt;}
.x20_c00357{left:144.104000pt;}
.x37_c00357{left:145.110640pt;}
.x2a_c00357{left:146.071235pt;}
.x50_c00357{left:146.994667pt;}
.x6e_c00357{left:149.520000pt;}
.x86_c00357{left:151.680000pt;}
.x6a_c00357{left:156.000000pt;}
.x7f_c00357{left:159.360000pt;}
.x31_c00357{left:161.148000pt;}
.x57_c00357{left:163.200000pt;}
.x19_c00357{left:165.347787pt;}
.x8d_c00357{left:167.280000pt;}
.x51_c00357{left:168.481333pt;}
.x5f_c00357{left:171.494667pt;}
.x80_c00357{left:172.800000pt;}
.x21_c00357{left:175.134667pt;}
.x87_c00357{left:176.880000pt;}
.x12_c00357{left:178.020000pt;}
.x65_c00357{left:179.760000pt;}
.x7c_c00357{left:181.440000pt;}
.x2_c00357{left:182.682667pt;}
.x8b_c00357{left:183.600000pt;}
.x8e_c00357{left:185.040000pt;}
.x6f_c00357{left:186.240000pt;}
.x9e_c00357{left:187.528000pt;}
.x60_c00357{left:191.918667pt;}
.x3e_c00357{left:194.880000pt;}
.x48_c00357{left:196.081333pt;}
.x52_c00357{left:197.281333pt;}
.x81_c00357{left:200.880000pt;}
.x1a_c00357{left:202.075013pt;}
.x58_c00357{left:203.760000pt;}
.x3_c00357{left:205.548000pt;}
.x9c_c00357{left:207.273753pt;}
.x66_c00357{left:210.240000pt;}
.x7d_c00357{left:211.440000pt;}
.x61_c00357{left:212.780000pt;}
.x22_c00357{left:214.288000pt;}
.x70_c00357{left:215.760000pt;}
.x38_c00357{left:218.741173pt;}
.x88_c00357{left:221.520000pt;}
.x67_c00357{left:225.360000pt;}
.x13_c00357{left:226.930667pt;}
.x43_c00357{left:229.408000pt;}
.x2b_c00357{left:231.300568pt;}
.x8f_c00357{left:236.160000pt;}
.x82_c00357{left:238.560000pt;}
.x7e_c00357{left:241.680000pt;}
.x39_c00357{left:243.271347pt;}
.x49_c00357{left:246.001333pt;}
.x4_c00357{left:247.494667pt;}
.x89_c00357{left:250.320000pt;}
.x62_c00357{left:253.121333pt;}
.x14_c00357{left:254.298667pt;}
.x44_c00357{left:257.996000pt;}
.x15_c00357{left:260.041333pt;}
.x8c_c00357{left:264.240000pt;}
.x4a_c00357{left:265.681333pt;}
.x5_c00357{left:267.708000pt;}
.x53_c00357{left:269.041333pt;}
.x23_c00357{left:270.240000pt;}
.x3f_c00357{left:277.440000pt;}
.x83_c00357{left:278.640000pt;}
.x10_c00357{left:281.520000pt;}
.x2c_c00357{left:283.595235pt;}
.x45_c00357{left:284.621333pt;}
.xc_c00357{left:290.775045pt;}
.x59_c00357{left:292.320000pt;}
.x6b_c00357{left:293.280000pt;}
.x24_c00357{left:298.810667pt;}
.x84_c00357{left:300.240000pt;}
.x4b_c00357{left:302.881333pt;}
.x54_c00357{left:304.801333pt;}
.x40_c00357{left:307.680000pt;}
.x68_c00357{left:309.120000pt;}
.x46_c00357{left:310.300000pt;}
.x63_c00357{left:311.672000pt;}
.x85_c00357{left:313.680000pt;}
.x3a_c00357{left:317.869867pt;}
.x8a_c00357{left:318.960000pt;}
.x6_c00357{left:320.337333pt;}
.x55_c00357{left:322.081333pt;}
.x9d_c00357{left:323.975601pt;}
.x90_c00357{left:326.160000pt;}
.x25_c00357{left:327.121333pt;}
.x16_c00357{left:329.161333pt;}
.x4c_c00357{left:331.681333pt;}
.x5a_c00357{left:338.880000pt;}
.x47_c00357{left:340.530667pt;}
.x3b_c00357{left:342.405373pt;}
.x32_c00357{left:345.458667pt;}
.x2d_c00357{left:346.532568pt;}
.x11_c00357{left:348.240000pt;}
.x56_c00357{left:350.641333pt;}
.x9f_c00357{left:352.482667pt;}
.x5b_c00357{left:356.400000pt;}
.x17_c00357{left:357.464000pt;}
.x99_c00357{left:358.800000pt;}
.x98_c00357{left:360.240000pt;}
.x7_c00357{left:365.660000pt;}
.xa4_c00357{left:366.720000pt;}
.x72_c00357{left:371.280000pt;}
.x26_c00357{left:372.453333pt;}
.x3c_c00357{left:373.399427pt;}
.x18_c00357{left:376.757333pt;}
.xa5_c00357{left:379.680000pt;}
.x69_c00357{left:381.120000pt;}
.x33_c00357{left:382.226667pt;}
.x91_c00357{left:383.280000pt;}
.x2e_c00357{left:389.248568pt;}
.x8_c00357{left:391.384000pt;}
.x1b_c00357{left:396.207267pt;}
.x5c_c00357{left:399.120000pt;}
.x41_c00357{left:403.200000pt;}
.x73_c00357{left:410.400000pt;}
.x78_c00357{left:413.520000pt;}
.x9_c00357{left:415.150667pt;}
.xd_c00357{left:417.886256pt;}
.x93_c00357{left:420.000000pt;}
.x42_c00357{left:422.400000pt;}
.x3d_c00357{left:423.803747pt;}
.x74_c00357{left:428.400000pt;}
.x2f_c00357{left:430.055235pt;}
.x4d_c00357{left:434.641333pt;}
.xa0_c00357{left:436.934667pt;}
.x1c_c00357{left:438.199887pt;}
.x75_c00357{left:440.640000pt;}
.xa_c00357{left:442.404000pt;}
.x64_c00357{left:444.000000pt;}
.x1d_c00357{left:448.568047pt;}
.x34_c00357{left:451.338667pt;}
.x1e_c00357{left:452.902773pt;}
.xe_c00357{left:455.091557pt;}
.x71_c00357{left:456.480000pt;}
.x79_c00357{left:460.080000pt;}
.x4e_c00357{left:462.721333pt;}
.x30_c00357{left:465.555235pt;}
.xa6_c00357{left:474.960000pt;}
.x92_c00357{left:476.160000pt;}
.x94_c00357{left:477.600000pt;}
.x35_c00357{left:481.826667pt;}
.x27_c00357{left:483.505333pt;}
.x6c_c00357{left:485.280000pt;}
.x95_c00357{left:488.640000pt;}
.xa1_c00357{left:489.966667pt;}
.x7a_c00357{left:497.040000pt;}
.x1f_c00357{left:499.472807pt;}
.xb_c00357{left:501.682667pt;}
.x76_c00357{left:506.640000pt;}
.xa2_c00357{left:508.110667pt;}
.x5d_c00357{left:511.680000pt;}
.xa7_c00357{left:512.640000pt;}
.x6d_c00357{left:513.840000pt;}
.x96_c00357{left:521.040000pt;}
.x28_c00357{left:522.205333pt;}
.xa8_c00357{left:526.800000pt;}
.x4f_c00357{left:532.321333pt;}
.x7b_c00357{left:533.520000pt;}
.x29_c00357{left:537.046667pt;}
.xa3_c00357{left:543.282667pt;}
.xf_c00357{left:548.511381pt;}
.x36_c00357{left:551.377333pt;}
.x77_c00357{left:553.440000pt;}
.x5e_c00357{left:557.040000pt;}
.x97_c00357{left:558.000000pt;}
.xa9_c00357{left:591.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m55_c00358{transform:matrix(0.011727,-0.000270,0.005748,0.249934,0,0);-ms-transform:matrix(0.011727,-0.000270,0.005748,0.249934,0,0);-webkit-transform:matrix(0.011727,-0.000270,0.005748,0.249934,0,0);}
.m22_c00358{transform:matrix(0.011781,-0.000318,0.006748,0.249909,0,0);-ms-transform:matrix(0.011781,-0.000318,0.006748,0.249909,0,0);-webkit-transform:matrix(0.011781,-0.000318,0.006748,0.249909,0,0);}
.m52_c00358{transform:matrix(0.011922,-0.000262,0.005499,0.249940,0,0);-ms-transform:matrix(0.011922,-0.000262,0.005499,0.249940,0,0);-webkit-transform:matrix(0.011922,-0.000262,0.005499,0.249940,0,0);}
.m31_c00358{transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);-ms-transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);-webkit-transform:matrix(0.013055,-0.000352,0.006748,0.249909,0,0);}
.m73_c00358{transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.088871,-0.002044,0.005748,0.249934,0,0);-ms-transform:matrix(0.088871,-0.002044,0.005748,0.249934,0,0);-webkit-transform:matrix(0.088871,-0.002044,0.005748,0.249934,0,0);}
.mad_c00358{transform:matrix(0.094765,-0.002180,0.005748,0.249934,0,0);-ms-transform:matrix(0.094765,-0.002180,0.005748,0.249934,0,0);-webkit-transform:matrix(0.094765,-0.002180,0.005748,0.249934,0,0);}
.m5d_c00358{transform:matrix(0.100423,-0.002310,0.005748,0.249934,0,0);-ms-transform:matrix(0.100423,-0.002310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.100423,-0.002310,0.005748,0.249934,0,0);}
.mb9_c00358{transform:matrix(0.107779,-0.002587,0.005998,0.249928,0,0);-ms-transform:matrix(0.107779,-0.002587,0.005998,0.249928,0,0);-webkit-transform:matrix(0.107779,-0.002587,0.005998,0.249928,0,0);}
.m4e_c00358{transform:matrix(0.108764,-0.002393,0.005499,0.249940,0,0);-ms-transform:matrix(0.108764,-0.002393,0.005499,0.249940,0,0);-webkit-transform:matrix(0.108764,-0.002393,0.005499,0.249940,0,0);}
.m75_c00358{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);}
.m27_c00358{transform:matrix(0.137240,-0.003705,0.006748,0.249909,0,0);-ms-transform:matrix(0.137240,-0.003705,0.006748,0.249909,0,0);-webkit-transform:matrix(0.137240,-0.003705,0.006748,0.249909,0,0);}
.m94_c00358{transform:matrix(0.138653,-0.003189,0.005748,0.249934,0,0);-ms-transform:matrix(0.138653,-0.003189,0.005748,0.249934,0,0);-webkit-transform:matrix(0.138653,-0.003189,0.005748,0.249934,0,0);}
.m2e_c00358{transform:matrix(0.140764,-0.003801,0.006748,0.249909,0,0);-ms-transform:matrix(0.140764,-0.003801,0.006748,0.249909,0,0);-webkit-transform:matrix(0.140764,-0.003801,0.006748,0.249909,0,0);}
.m9c_c00358{transform:matrix(0.141228,-0.003248,0.005748,0.249934,0,0);-ms-transform:matrix(0.141228,-0.003248,0.005748,0.249934,0,0);-webkit-transform:matrix(0.141228,-0.003248,0.005748,0.249934,0,0);}
.m90_c00358{transform:matrix(0.143438,-0.003873,0.006748,0.249909,0,0);-ms-transform:matrix(0.143438,-0.003873,0.006748,0.249909,0,0);-webkit-transform:matrix(0.143438,-0.003873,0.006748,0.249909,0,0);}
.m96_c00358{transform:matrix(0.147906,-0.003402,0.005748,0.249934,0,0);-ms-transform:matrix(0.147906,-0.003402,0.005748,0.249934,0,0);-webkit-transform:matrix(0.147906,-0.003402,0.005748,0.249934,0,0);}
.m5c_c00358{transform:matrix(0.149216,-0.003432,0.005748,0.249934,0,0);-ms-transform:matrix(0.149216,-0.003432,0.005748,0.249934,0,0);-webkit-transform:matrix(0.149216,-0.003432,0.005748,0.249934,0,0);}
.m78_c00358{transform:matrix(0.150886,-0.002414,0.003999,0.249968,0,0);-ms-transform:matrix(0.150886,-0.002414,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150886,-0.002414,0.003999,0.249968,0,0);}
.m70_c00358{transform:matrix(0.153987,-0.003850,0.006248,0.249922,0,0);-ms-transform:matrix(0.153987,-0.003850,0.006248,0.249922,0,0);-webkit-transform:matrix(0.153987,-0.003850,0.006248,0.249922,0,0);}
.m28_c00358{transform:matrix(0.154114,-0.004161,0.006748,0.249909,0,0);-ms-transform:matrix(0.154114,-0.004161,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154114,-0.004161,0.006748,0.249909,0,0);}
.ma9_c00358{transform:matrix(0.154214,-0.003547,0.005748,0.249934,0,0);-ms-transform:matrix(0.154214,-0.003547,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154214,-0.003547,0.005748,0.249934,0,0);}
.m2f_c00358{transform:matrix(0.155558,-0.004200,0.006748,0.249909,0,0);-ms-transform:matrix(0.155558,-0.004200,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155558,-0.004200,0.006748,0.249909,0,0);}
.ma5_c00358{transform:matrix(0.157158,-0.003615,0.005748,0.249934,0,0);-ms-transform:matrix(0.157158,-0.003615,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157158,-0.003615,0.005748,0.249934,0,0);}
.m88_c00358{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);}
.mcd_c00358{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);}
.m25_c00358{transform:matrix(0.161146,-0.004351,0.006748,0.249909,0,0);-ms-transform:matrix(0.161146,-0.004351,0.006748,0.249909,0,0);-webkit-transform:matrix(0.161146,-0.004351,0.006748,0.249909,0,0);}
.mbe_c00358{transform:matrix(0.162833,-0.003908,0.005998,0.249928,0,0);-ms-transform:matrix(0.162833,-0.003908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.162833,-0.003908,0.005998,0.249928,0,0);}
.m35_c00358{transform:matrix(0.163970,-0.004427,0.006748,0.249909,0,0);-ms-transform:matrix(0.163970,-0.004427,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163970,-0.004427,0.006748,0.249909,0,0);}
.m98_c00358{transform:matrix(0.164397,-0.003781,0.005748,0.249934,0,0);-ms-transform:matrix(0.164397,-0.003781,0.005748,0.249934,0,0);-webkit-transform:matrix(0.164397,-0.003781,0.005748,0.249934,0,0);}
.m40_c00358{transform:matrix(0.165625,-0.003644,0.005499,0.249940,0,0);-ms-transform:matrix(0.165625,-0.003644,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165625,-0.003644,0.005499,0.249940,0,0);}
.mbd_c00358{transform:matrix(0.166627,-0.003999,0.005998,0.249928,0,0);-ms-transform:matrix(0.166627,-0.003999,0.005998,0.249928,0,0);-webkit-transform:matrix(0.166627,-0.003999,0.005998,0.249928,0,0);}
.maa_c00358{transform:matrix(0.167711,-0.003857,0.005748,0.249934,0,0);-ms-transform:matrix(0.167711,-0.003857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167711,-0.003857,0.005748,0.249934,0,0);}
.m2c_c00358{transform:matrix(0.169313,-0.004571,0.006748,0.249909,0,0);-ms-transform:matrix(0.169313,-0.004571,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169313,-0.004571,0.006748,0.249909,0,0);}
.m7e_c00358{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);}
.m29_c00358{transform:matrix(0.175281,-0.004733,0.006748,0.249909,0,0);-ms-transform:matrix(0.175281,-0.004733,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175281,-0.004733,0.006748,0.249909,0,0);}
.m1a_c00358{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);}
.m1c_c00358{transform:matrix(0.176147,-0.006171,0.008753,0.249847,0,0);-ms-transform:matrix(0.176147,-0.006171,0.008753,0.249847,0,0);-webkit-transform:matrix(0.176147,-0.006171,0.008753,0.249847,0,0);}
.ma6_c00358{transform:matrix(0.176463,-0.004059,0.005748,0.249934,0,0);-ms-transform:matrix(0.176463,-0.004059,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176463,-0.004059,0.005748,0.249934,0,0);}
.m77_c00358{transform:matrix(0.176552,-0.002825,0.003999,0.249968,0,0);-ms-transform:matrix(0.176552,-0.002825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176552,-0.002825,0.003999,0.249968,0,0);}
.m80_c00358{transform:matrix(0.177352,-0.002838,0.003999,0.249968,0,0);-ms-transform:matrix(0.177352,-0.002838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177352,-0.002838,0.003999,0.249968,0,0);}
.m4b_c00358{transform:matrix(0.177432,-0.003904,0.005499,0.249940,0,0);-ms-transform:matrix(0.177432,-0.003904,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177432,-0.003904,0.005499,0.249940,0,0);}
.m2a_c00358{transform:matrix(0.178920,-0.004831,0.006748,0.249909,0,0);-ms-transform:matrix(0.178920,-0.004831,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178920,-0.004831,0.006748,0.249909,0,0);}
.ma8_c00358{transform:matrix(0.179053,-0.004118,0.005748,0.249934,0,0);-ms-transform:matrix(0.179053,-0.004118,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179053,-0.004118,0.005748,0.249934,0,0);}
.m24_c00358{transform:matrix(0.179540,-0.004848,0.006748,0.249909,0,0);-ms-transform:matrix(0.179540,-0.004848,0.006748,0.249909,0,0);-webkit-transform:matrix(0.179540,-0.004848,0.006748,0.249909,0,0);}
.m26_c00358{transform:matrix(0.181054,-0.004888,0.006748,0.249909,0,0);-ms-transform:matrix(0.181054,-0.004888,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181054,-0.004888,0.006748,0.249909,0,0);}
.ma1_c00358{transform:matrix(0.181577,-0.004176,0.005748,0.249934,0,0);-ms-transform:matrix(0.181577,-0.004176,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181577,-0.004176,0.005748,0.249934,0,0);}
.m7a_c00358{transform:matrix(0.182062,-0.002913,0.003999,0.249968,0,0);-ms-transform:matrix(0.182062,-0.002913,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182062,-0.002913,0.003999,0.249968,0,0);}
.mb0_c00358{transform:matrix(0.182997,-0.004209,0.005748,0.249934,0,0);-ms-transform:matrix(0.182997,-0.004209,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182997,-0.004209,0.005748,0.249934,0,0);}
.mc7_c00358{transform:matrix(0.183022,-0.004393,0.005998,0.249928,0,0);-ms-transform:matrix(0.183022,-0.004393,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183022,-0.004393,0.005998,0.249928,0,0);}
.meb_c00358{transform:matrix(0.184226,-0.004237,0.005748,0.249934,0,0);-ms-transform:matrix(0.184226,-0.004237,0.005748,0.249934,0,0);-webkit-transform:matrix(0.184226,-0.004237,0.005748,0.249934,0,0);}
.m14_c00358{transform:matrix(0.184332,-0.006458,0.008753,0.249847,0,0);-ms-transform:matrix(0.184332,-0.006458,0.008753,0.249847,0,0);-webkit-transform:matrix(0.184332,-0.006458,0.008753,0.249847,0,0);}
.m19_c00358{transform:matrix(0.184517,-0.006465,0.008753,0.249847,0,0);-ms-transform:matrix(0.184517,-0.006465,0.008753,0.249847,0,0);-webkit-transform:matrix(0.184517,-0.006465,0.008753,0.249847,0,0);}
.m42_c00358{transform:matrix(0.184645,-0.004062,0.005499,0.249940,0,0);-ms-transform:matrix(0.184645,-0.004062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184645,-0.004062,0.005499,0.249940,0,0);}
.m1e_c00358{transform:matrix(0.185116,-0.006486,0.008753,0.249847,0,0);-ms-transform:matrix(0.185116,-0.006486,0.008753,0.249847,0,0);-webkit-transform:matrix(0.185116,-0.006486,0.008753,0.249847,0,0);}
.maf_c00358{transform:matrix(0.186341,-0.004286,0.005748,0.249934,0,0);-ms-transform:matrix(0.186341,-0.004286,0.005748,0.249934,0,0);-webkit-transform:matrix(0.186341,-0.004286,0.005748,0.249934,0,0);}
.m37_c00358{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);}
.m6e_c00358{transform:matrix(0.188116,-0.004703,0.006248,0.249922,0,0);-ms-transform:matrix(0.188116,-0.004703,0.006248,0.249922,0,0);-webkit-transform:matrix(0.188116,-0.004703,0.006248,0.249922,0,0);}
.m99_c00358{transform:matrix(0.189115,-0.004350,0.005748,0.249934,0,0);-ms-transform:matrix(0.189115,-0.004350,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189115,-0.004350,0.005748,0.249934,0,0);}
.mac_c00358{transform:matrix(0.189365,-0.004355,0.005748,0.249934,0,0);-ms-transform:matrix(0.189365,-0.004355,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189365,-0.004355,0.005748,0.249934,0,0);}
.ma3_c00358{transform:matrix(0.189395,-0.004356,0.005748,0.249934,0,0);-ms-transform:matrix(0.189395,-0.004356,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189395,-0.004356,0.005748,0.249934,0,0);}
.m7d_c00358{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);}
.m0_c00358{transform:matrix(0.190364,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190364,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190364,-0.002475,0.003250,0.249979,0,0);}
.ma0_c00358{transform:matrix(0.190395,-0.004379,0.005748,0.249934,0,0);-ms-transform:matrix(0.190395,-0.004379,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190395,-0.004379,0.005748,0.249934,0,0);}
.m3f_c00358{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);}
.m36_c00358{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);}
.m95_c00358{transform:matrix(0.191439,-0.004403,0.005748,0.249934,0,0);-ms-transform:matrix(0.191439,-0.004403,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191439,-0.004403,0.005748,0.249934,0,0);}
.m97_c00358{transform:matrix(0.191659,-0.004408,0.005748,0.249934,0,0);-ms-transform:matrix(0.191659,-0.004408,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191659,-0.004408,0.005748,0.249934,0,0);}
.ma2_c00358{transform:matrix(0.192114,-0.004419,0.005748,0.249934,0,0);-ms-transform:matrix(0.192114,-0.004419,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192114,-0.004419,0.005748,0.249934,0,0);}
.mcb_c00358{transform:matrix(0.192665,-0.004624,0.005998,0.249928,0,0);-ms-transform:matrix(0.192665,-0.004624,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192665,-0.004624,0.005998,0.249928,0,0);}
.m43_c00358{transform:matrix(0.192828,-0.004242,0.005499,0.249940,0,0);-ms-transform:matrix(0.192828,-0.004242,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192828,-0.004242,0.005499,0.249940,0,0);}
.m93_c00358{transform:matrix(0.193529,-0.005225,0.006748,0.249909,0,0);-ms-transform:matrix(0.193529,-0.005225,0.006748,0.249909,0,0);-webkit-transform:matrix(0.193529,-0.005225,0.006748,0.249909,0,0);}
.m9_c00358{transform:matrix(0.193981,-0.006796,0.008753,0.249847,0,0);-ms-transform:matrix(0.193981,-0.006796,0.008753,0.249847,0,0);-webkit-transform:matrix(0.193981,-0.006796,0.008753,0.249847,0,0);}
.m49_c00358{transform:matrix(0.194738,-0.004284,0.005499,0.249940,0,0);-ms-transform:matrix(0.194738,-0.004284,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194738,-0.004284,0.005499,0.249940,0,0);}
.m3b_c00358{transform:matrix(0.195413,-0.004299,0.005499,0.249940,0,0);-ms-transform:matrix(0.195413,-0.004299,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195413,-0.004299,0.005499,0.249940,0,0);}
.m7f_c00358{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);}
.m4d_c00358{transform:matrix(0.196108,-0.004314,0.005499,0.249940,0,0);-ms-transform:matrix(0.196108,-0.004314,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196108,-0.004314,0.005499,0.249940,0,0);}
.m32_c00358{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);}
.m21_c00358{transform:matrix(0.197004,-0.006902,0.008753,0.249847,0,0);-ms-transform:matrix(0.197004,-0.006902,0.008753,0.249847,0,0);-webkit-transform:matrix(0.197004,-0.006902,0.008753,0.249847,0,0);}
.m92_c00358{transform:matrix(0.197328,-0.005328,0.006748,0.249909,0,0);-ms-transform:matrix(0.197328,-0.005328,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197328,-0.005328,0.006748,0.249909,0,0);}
.mbc_c00358{transform:matrix(0.197758,-0.004746,0.005998,0.249928,0,0);-ms-transform:matrix(0.197758,-0.004746,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197758,-0.004746,0.005998,0.249928,0,0);}
.m9f_c00358{transform:matrix(0.197853,-0.004551,0.005748,0.249934,0,0);-ms-transform:matrix(0.197853,-0.004551,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197853,-0.004551,0.005748,0.249934,0,0);}
.m39_c00358{transform:matrix(0.198438,-0.005358,0.006748,0.249909,0,0);-ms-transform:matrix(0.198438,-0.005358,0.006748,0.249909,0,0);-webkit-transform:matrix(0.198438,-0.005358,0.006748,0.249909,0,0);}
.m2b_c00358{transform:matrix(0.199052,-0.005374,0.006748,0.249909,0,0);-ms-transform:matrix(0.199052,-0.005374,0.006748,0.249909,0,0);-webkit-transform:matrix(0.199052,-0.005374,0.006748,0.249909,0,0);}
.m46_c00358{transform:matrix(0.200097,-0.004402,0.005499,0.249940,0,0);-ms-transform:matrix(0.200097,-0.004402,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200097,-0.004402,0.005499,0.249940,0,0);}
.m1b_c00358{transform:matrix(0.200167,-0.007013,0.008753,0.249847,0,0);-ms-transform:matrix(0.200167,-0.007013,0.008753,0.249847,0,0);-webkit-transform:matrix(0.200167,-0.007013,0.008753,0.249847,0,0);}
.m6d_c00358{transform:matrix(0.200367,-0.005009,0.006248,0.249922,0,0);-ms-transform:matrix(0.200367,-0.005009,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200367,-0.005009,0.006248,0.249922,0,0);}
.m54_c00358{transform:matrix(0.200487,-0.004611,0.005748,0.249934,0,0);-ms-transform:matrix(0.200487,-0.004611,0.005748,0.249934,0,0);-webkit-transform:matrix(0.200487,-0.004611,0.005748,0.249934,0,0);}
.ma7_c00358{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);}
.md1_c00358{transform:matrix(0.200802,-0.004819,0.005998,0.249928,0,0);-ms-transform:matrix(0.200802,-0.004819,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200802,-0.004819,0.005998,0.249928,0,0);}
.m6f_c00358{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);}
.md_c00358{transform:matrix(0.202171,-0.007083,0.008753,0.249847,0,0);-ms-transform:matrix(0.202171,-0.007083,0.008753,0.249847,0,0);-webkit-transform:matrix(0.202171,-0.007083,0.008753,0.249847,0,0);}
.m53_c00358{transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);-ms-transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);}
.m7c_c00358{transform:matrix(0.204284,-0.003269,0.003999,0.249968,0,0);-ms-transform:matrix(0.204284,-0.003269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204284,-0.003269,0.003999,0.249968,0,0);}
.mb5_c00358{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);}
.m15_c00358{transform:matrix(0.206548,-0.007236,0.008753,0.249847,0,0);-ms-transform:matrix(0.206548,-0.007236,0.008753,0.249847,0,0);-webkit-transform:matrix(0.206548,-0.007236,0.008753,0.249847,0,0);}
.m23_c00358{transform:matrix(0.206720,-0.005581,0.006748,0.249909,0,0);-ms-transform:matrix(0.206720,-0.005581,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206720,-0.005581,0.006748,0.249909,0,0);}
.m33_c00358{transform:matrix(0.207479,-0.005602,0.006748,0.249909,0,0);-ms-transform:matrix(0.207479,-0.005602,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207479,-0.005602,0.006748,0.249909,0,0);}
.mc4_c00358{transform:matrix(0.207765,-0.004986,0.005998,0.249928,0,0);-ms-transform:matrix(0.207765,-0.004986,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207765,-0.004986,0.005998,0.249928,0,0);}
.m60_c00358{transform:matrix(0.207970,-0.004783,0.005748,0.249934,0,0);-ms-transform:matrix(0.207970,-0.004783,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207970,-0.004783,0.005748,0.249934,0,0);}
.m76_c00358{transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);-ms-transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208648,-0.003338,0.003999,0.249968,0,0);}
.m45_c00358{transform:matrix(0.209154,-0.004601,0.005499,0.249940,0,0);-ms-transform:matrix(0.209154,-0.004601,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209154,-0.004601,0.005499,0.249940,0,0);}
.mc6_c00358{transform:matrix(0.209485,-0.005028,0.005998,0.249928,0,0);-ms-transform:matrix(0.209485,-0.005028,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209485,-0.005028,0.005998,0.249928,0,0);}
.m2d_c00358{transform:matrix(0.211138,-0.005701,0.006748,0.249909,0,0);-ms-transform:matrix(0.211138,-0.005701,0.006748,0.249909,0,0);-webkit-transform:matrix(0.211138,-0.005701,0.006748,0.249909,0,0);}
.m17_c00358{transform:matrix(0.211220,-0.007400,0.008753,0.249847,0,0);-ms-transform:matrix(0.211220,-0.007400,0.008753,0.249847,0,0);-webkit-transform:matrix(0.211220,-0.007400,0.008753,0.249847,0,0);}
.m63_c00358{transform:matrix(0.212329,-0.004884,0.005748,0.249934,0,0);-ms-transform:matrix(0.212329,-0.004884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212329,-0.004884,0.005748,0.249934,0,0);}
.m4c_c00358{transform:matrix(0.214138,-0.004711,0.005499,0.249940,0,0);-ms-transform:matrix(0.214138,-0.004711,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214138,-0.004711,0.005499,0.249940,0,0);}
.m61_c00358{transform:matrix(0.214748,-0.004939,0.005748,0.249934,0,0);-ms-transform:matrix(0.214748,-0.004939,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214748,-0.004939,0.005748,0.249934,0,0);}
.ma4_c00358{transform:matrix(0.215778,-0.004963,0.005748,0.249934,0,0);-ms-transform:matrix(0.215778,-0.004963,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215778,-0.004963,0.005748,0.249934,0,0);}
.m56_c00358{transform:matrix(0.216043,-0.004969,0.005748,0.249934,0,0);-ms-transform:matrix(0.216043,-0.004969,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216043,-0.004969,0.005748,0.249934,0,0);}
.mc5_c00358{transform:matrix(0.216883,-0.005205,0.005998,0.249928,0,0);-ms-transform:matrix(0.216883,-0.005205,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216883,-0.005205,0.005998,0.249928,0,0);}
.mf_c00358{transform:matrix(0.217042,-0.007604,0.008753,0.249847,0,0);-ms-transform:matrix(0.217042,-0.007604,0.008753,0.249847,0,0);-webkit-transform:matrix(0.217042,-0.007604,0.008753,0.249847,0,0);}
.m5b_c00358{transform:matrix(0.217138,-0.004994,0.005748,0.249934,0,0);-ms-transform:matrix(0.217138,-0.004994,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217138,-0.004994,0.005748,0.249934,0,0);}
.mdc_c00358{transform:matrix(0.218382,-0.005023,0.005748,0.249934,0,0);-ms-transform:matrix(0.218382,-0.005023,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218382,-0.005023,0.005748,0.249934,0,0);}
.mab_c00358{transform:matrix(0.218927,-0.005035,0.005748,0.249934,0,0);-ms-transform:matrix(0.218927,-0.005035,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218927,-0.005035,0.005748,0.249934,0,0);}
.m41_c00358{transform:matrix(0.218947,-0.004817,0.005499,0.249940,0,0);-ms-transform:matrix(0.218947,-0.004817,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218947,-0.004817,0.005499,0.249940,0,0);}
.m79_c00358{transform:matrix(0.220577,-0.003529,0.003999,0.249968,0,0);-ms-transform:matrix(0.220577,-0.003529,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220577,-0.003529,0.003999,0.249968,0,0);}
.m11_c00358{transform:matrix(0.221139,-0.007748,0.008753,0.249847,0,0);-ms-transform:matrix(0.221139,-0.007748,0.008753,0.249847,0,0);-webkit-transform:matrix(0.221139,-0.007748,0.008753,0.249847,0,0);}
.mdf_c00358{transform:matrix(0.221201,-0.005088,0.005748,0.249934,0,0);-ms-transform:matrix(0.221201,-0.005088,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221201,-0.005088,0.005748,0.249934,0,0);}
.m6_c00358{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);}
.m3_c00358{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);}
.m57_c00358{transform:matrix(0.222056,-0.005107,0.005748,0.249934,0,0);-ms-transform:matrix(0.222056,-0.005107,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222056,-0.005107,0.005748,0.249934,0,0);}
.m3d_c00358{transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);-ms-transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);}
.me6_c00358{transform:matrix(0.222516,-0.005118,0.005748,0.249934,0,0);-ms-transform:matrix(0.222516,-0.005118,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222516,-0.005118,0.005748,0.249934,0,0);}
.m5f_c00358{transform:matrix(0.222751,-0.005123,0.005748,0.249934,0,0);-ms-transform:matrix(0.222751,-0.005123,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222751,-0.005123,0.005748,0.249934,0,0);}
.mbb_c00358{transform:matrix(0.222771,-0.005347,0.005998,0.249928,0,0);-ms-transform:matrix(0.222771,-0.005347,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222771,-0.005347,0.005998,0.249928,0,0);}
.mcc_c00358{transform:matrix(0.223806,-0.005371,0.005998,0.249928,0,0);-ms-transform:matrix(0.223806,-0.005371,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223806,-0.005371,0.005998,0.249928,0,0);}
.mb4_c00358{transform:matrix(0.224330,-0.005384,0.005998,0.249928,0,0);-ms-transform:matrix(0.224330,-0.005384,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224330,-0.005384,0.005998,0.249928,0,0);}
.m34_c00358{transform:matrix(0.224653,-0.006066,0.006748,0.249909,0,0);-ms-transform:matrix(0.224653,-0.006066,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224653,-0.006066,0.006748,0.249909,0,0);}
.me_c00358{transform:matrix(0.224892,-0.007879,0.008753,0.249847,0,0);-ms-transform:matrix(0.224892,-0.007879,0.008753,0.249847,0,0);-webkit-transform:matrix(0.224892,-0.007879,0.008753,0.249847,0,0);}
.mc9_c00358{transform:matrix(0.225900,-0.005422,0.005998,0.249928,0,0);-ms-transform:matrix(0.225900,-0.005422,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225900,-0.005422,0.005998,0.249928,0,0);}
.m64_c00358{transform:matrix(0.228225,-0.005249,0.005748,0.249934,0,0);-ms-transform:matrix(0.228225,-0.005249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228225,-0.005249,0.005748,0.249934,0,0);}
.m68_c00358{transform:matrix(0.228435,-0.005254,0.005748,0.249934,0,0);-ms-transform:matrix(0.228435,-0.005254,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228435,-0.005254,0.005748,0.249934,0,0);}
.mda_c00358{transform:matrix(0.228959,-0.005266,0.005748,0.249934,0,0);-ms-transform:matrix(0.228959,-0.005266,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228959,-0.005266,0.005748,0.249934,0,0);}
.me4_c00358{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);}
.mc0_c00358{transform:matrix(0.230184,-0.005524,0.005998,0.249928,0,0);-ms-transform:matrix(0.230184,-0.005524,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230184,-0.005524,0.005998,0.249928,0,0);}
.mcf_c00358{transform:matrix(0.231523,-0.005557,0.005998,0.249928,0,0);-ms-transform:matrix(0.231523,-0.005557,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231523,-0.005557,0.005998,0.249928,0,0);}
.m3e_c00358{transform:matrix(0.235613,-0.005183,0.005499,0.249940,0,0);-ms-transform:matrix(0.235613,-0.005183,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235613,-0.005183,0.005499,0.249940,0,0);}
.md6_c00358{transform:matrix(0.237067,-0.005453,0.005748,0.249934,0,0);-ms-transform:matrix(0.237067,-0.005453,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237067,-0.005453,0.005748,0.249934,0,0);}
.m51_c00358{transform:matrix(0.237548,-0.005226,0.005499,0.249940,0,0);-ms-transform:matrix(0.237548,-0.005226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237548,-0.005226,0.005499,0.249940,0,0);}
.m1d_c00358{transform:matrix(0.239063,-0.008376,0.008753,0.249847,0,0);-ms-transform:matrix(0.239063,-0.008376,0.008753,0.249847,0,0);-webkit-transform:matrix(0.239063,-0.008376,0.008753,0.249847,0,0);}
.mbf_c00358{transform:matrix(0.239331,-0.005744,0.005998,0.249928,0,0);-ms-transform:matrix(0.239331,-0.005744,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239331,-0.005744,0.005998,0.249928,0,0);}
.mce_c00358{transform:matrix(0.239906,-0.005758,0.005998,0.249928,0,0);-ms-transform:matrix(0.239906,-0.005758,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239906,-0.005758,0.005998,0.249928,0,0);}
.m65_c00358{transform:matrix(0.240092,-0.005522,0.005748,0.249934,0,0);-ms-transform:matrix(0.240092,-0.005522,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240092,-0.005522,0.005748,0.249934,0,0);}
.md9_c00358{transform:matrix(0.240256,-0.005526,0.005748,0.249934,0,0);-ms-transform:matrix(0.240256,-0.005526,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240256,-0.005526,0.005748,0.249934,0,0);}
.mb8_c00358{transform:matrix(0.242415,-0.005818,0.005998,0.249928,0,0);-ms-transform:matrix(0.242415,-0.005818,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242415,-0.005818,0.005998,0.249928,0,0);}
.md2_c00358{transform:matrix(0.244490,-0.005868,0.005998,0.249928,0,0);-ms-transform:matrix(0.244490,-0.005868,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244490,-0.005868,0.005998,0.249928,0,0);}
.mc8_c00358{transform:matrix(0.245749,-0.005898,0.005998,0.249928,0,0);-ms-transform:matrix(0.245749,-0.005898,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245749,-0.005898,0.005998,0.249928,0,0);}
.m3c_c00358{transform:matrix(0.247185,-0.005438,0.005499,0.249940,0,0);-ms-transform:matrix(0.247185,-0.005438,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247185,-0.005438,0.005499,0.249940,0,0);}
.m6c_c00358{transform:matrix(0.250287,-0.006257,0.006248,0.249922,0,0);-ms-transform:matrix(0.250287,-0.006257,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250287,-0.006257,0.006248,0.249922,0,0);}
.mb3_c00358{transform:matrix(0.250398,-0.006010,0.005998,0.249928,0,0);-ms-transform:matrix(0.250398,-0.006010,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250398,-0.006010,0.005998,0.249928,0,0);}
.m67_c00358{transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);-ms-transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);}
.m10_c00358{transform:matrix(0.251001,-0.008794,0.008753,0.249847,0,0);-ms-transform:matrix(0.251001,-0.008794,0.008753,0.249847,0,0);-webkit-transform:matrix(0.251001,-0.008794,0.008753,0.249847,0,0);}
.m44_c00358{transform:matrix(0.251609,-0.005535,0.005499,0.249940,0,0);-ms-transform:matrix(0.251609,-0.005535,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251609,-0.005535,0.005499,0.249940,0,0);}
.md0_c00358{transform:matrix(0.252277,-0.006055,0.005998,0.249928,0,0);-ms-transform:matrix(0.252277,-0.006055,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252277,-0.006055,0.005998,0.249928,0,0);}
.mb6_c00358{transform:matrix(0.254532,-0.006109,0.005998,0.249928,0,0);-ms-transform:matrix(0.254532,-0.006109,0.005998,0.249928,0,0);-webkit-transform:matrix(0.254532,-0.006109,0.005998,0.249928,0,0);}
.m12_c00358{transform:matrix(0.254539,-0.008918,0.008753,0.249847,0,0);-ms-transform:matrix(0.254539,-0.008918,0.008753,0.249847,0,0);-webkit-transform:matrix(0.254539,-0.008918,0.008753,0.249847,0,0);}
.m13_c00358{transform:matrix(0.255428,-0.008949,0.008753,0.249847,0,0);-ms-transform:matrix(0.255428,-0.008949,0.008753,0.249847,0,0);-webkit-transform:matrix(0.255428,-0.008949,0.008753,0.249847,0,0);}
.m9d_c00358{transform:matrix(0.255847,-0.005884,0.005748,0.249934,0,0);-ms-transform:matrix(0.255847,-0.005884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255847,-0.005884,0.005748,0.249934,0,0);}
.m47_c00358{transform:matrix(0.257268,-0.005660,0.005499,0.249940,0,0);-ms-transform:matrix(0.257268,-0.005660,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257268,-0.005660,0.005499,0.249940,0,0);}
.m8c_c00358{transform:matrix(0.257291,-0.006947,0.006748,0.249909,0,0);-ms-transform:matrix(0.257291,-0.006947,0.006748,0.249909,0,0);-webkit-transform:matrix(0.257291,-0.006947,0.006748,0.249909,0,0);}
.md4_c00358{transform:matrix(0.258177,-0.005938,0.005748,0.249934,0,0);-ms-transform:matrix(0.258177,-0.005938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258177,-0.005938,0.005748,0.249934,0,0);}
.me0_c00358{transform:matrix(0.258237,-0.005939,0.005748,0.249934,0,0);-ms-transform:matrix(0.258237,-0.005939,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258237,-0.005939,0.005748,0.249934,0,0);}
.mc3_c00358{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);}
.mca_c00358{transform:matrix(0.260025,-0.006241,0.005998,0.249928,0,0);-ms-transform:matrix(0.260025,-0.006241,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260025,-0.006241,0.005998,0.249928,0,0);}
.m18_c00358{transform:matrix(0.260540,-0.009128,0.008753,0.249847,0,0);-ms-transform:matrix(0.260540,-0.009128,0.008753,0.249847,0,0);-webkit-transform:matrix(0.260540,-0.009128,0.008753,0.249847,0,0);}
.m3a_c00358{transform:matrix(0.262826,-0.005782,0.005499,0.249940,0,0);-ms-transform:matrix(0.262826,-0.005782,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262826,-0.005782,0.005499,0.249940,0,0);}
.m62_c00358{transform:matrix(0.263175,-0.006053,0.005748,0.249934,0,0);-ms-transform:matrix(0.263175,-0.006053,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263175,-0.006053,0.005748,0.249934,0,0);}
.m16_c00358{transform:matrix(0.265357,-0.009297,0.008753,0.249847,0,0);-ms-transform:matrix(0.265357,-0.009297,0.008753,0.249847,0,0);-webkit-transform:matrix(0.265357,-0.009297,0.008753,0.249847,0,0);}
.m59_c00358{transform:matrix(0.265490,-0.006106,0.005748,0.249934,0,0);-ms-transform:matrix(0.265490,-0.006106,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265490,-0.006106,0.005748,0.249934,0,0);}
.mc1_c00358{transform:matrix(0.266698,-0.006401,0.005998,0.249928,0,0);-ms-transform:matrix(0.266698,-0.006401,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266698,-0.006401,0.005998,0.249928,0,0);}
.m50_c00358{transform:matrix(0.268270,-0.005902,0.005499,0.249940,0,0);-ms-transform:matrix(0.268270,-0.005902,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268270,-0.005902,0.005499,0.249940,0,0);}
.me3_c00358{transform:matrix(0.269304,-0.006194,0.005748,0.249934,0,0);-ms-transform:matrix(0.269304,-0.006194,0.005748,0.249934,0,0);-webkit-transform:matrix(0.269304,-0.006194,0.005748,0.249934,0,0);}
.md3_c00358{transform:matrix(0.270387,-0.006489,0.005998,0.249928,0,0);-ms-transform:matrix(0.270387,-0.006489,0.005998,0.249928,0,0);-webkit-transform:matrix(0.270387,-0.006489,0.005998,0.249928,0,0);}
.m84_c00358{transform:matrix(0.271857,-0.006525,0.005998,0.249928,0,0);-ms-transform:matrix(0.271857,-0.006525,0.005998,0.249928,0,0);-webkit-transform:matrix(0.271857,-0.006525,0.005998,0.249928,0,0);}
.m8e_c00358{transform:matrix(0.272406,-0.007355,0.006748,0.249909,0,0);-ms-transform:matrix(0.272406,-0.007355,0.006748,0.249909,0,0);-webkit-transform:matrix(0.272406,-0.007355,0.006748,0.249909,0,0);}
.m6b_c00358{transform:matrix(0.273453,-0.006289,0.005748,0.249934,0,0);-ms-transform:matrix(0.273453,-0.006289,0.005748,0.249934,0,0);-webkit-transform:matrix(0.273453,-0.006289,0.005748,0.249934,0,0);}
.m69_c00358{transform:matrix(0.276952,-0.006370,0.005748,0.249934,0,0);-ms-transform:matrix(0.276952,-0.006370,0.005748,0.249934,0,0);-webkit-transform:matrix(0.276952,-0.006370,0.005748,0.249934,0,0);}
.mc_c00358{transform:matrix(0.281562,-0.009865,0.008753,0.249847,0,0);-ms-transform:matrix(0.281562,-0.009865,0.008753,0.249847,0,0);-webkit-transform:matrix(0.281562,-0.009865,0.008753,0.249847,0,0);}
.m9b_c00358{transform:matrix(0.282510,-0.006498,0.005748,0.249934,0,0);-ms-transform:matrix(0.282510,-0.006498,0.005748,0.249934,0,0);-webkit-transform:matrix(0.282510,-0.006498,0.005748,0.249934,0,0);}
.md8_c00358{transform:matrix(0.282965,-0.006508,0.005748,0.249934,0,0);-ms-transform:matrix(0.282965,-0.006508,0.005748,0.249934,0,0);-webkit-transform:matrix(0.282965,-0.006508,0.005748,0.249934,0,0);}
.mb1_c00358{transform:matrix(0.283075,-0.006511,0.005748,0.249934,0,0);-ms-transform:matrix(0.283075,-0.006511,0.005748,0.249934,0,0);-webkit-transform:matrix(0.283075,-0.006511,0.005748,0.249934,0,0);}
.m5e_c00358{transform:matrix(0.287549,-0.006614,0.005748,0.249934,0,0);-ms-transform:matrix(0.287549,-0.006614,0.005748,0.249934,0,0);-webkit-transform:matrix(0.287549,-0.006614,0.005748,0.249934,0,0);}
.mb_c00358{transform:matrix(0.297522,-0.010424,0.008753,0.249847,0,0);-ms-transform:matrix(0.297522,-0.010424,0.008753,0.249847,0,0);-webkit-transform:matrix(0.297522,-0.010424,0.008753,0.249847,0,0);}
.m4a_c00358{transform:matrix(0.298063,-0.006557,0.005499,0.249940,0,0);-ms-transform:matrix(0.298063,-0.006557,0.005499,0.249940,0,0);-webkit-transform:matrix(0.298063,-0.006557,0.005499,0.249940,0,0);}
.mba_c00358{transform:matrix(0.300443,-0.007211,0.005998,0.249928,0,0);-ms-transform:matrix(0.300443,-0.007211,0.005998,0.249928,0,0);-webkit-transform:matrix(0.300443,-0.007211,0.005998,0.249928,0,0);}
.mdb_c00358{transform:matrix(0.303045,-0.006970,0.005748,0.249934,0,0);-ms-transform:matrix(0.303045,-0.006970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.303045,-0.006970,0.005748,0.249934,0,0);}
.m9e_c00358{transform:matrix(0.303070,-0.006971,0.005748,0.249934,0,0);-ms-transform:matrix(0.303070,-0.006971,0.005748,0.249934,0,0);-webkit-transform:matrix(0.303070,-0.006971,0.005748,0.249934,0,0);}
.m7_c00358{transform:matrix(0.305543,-0.010705,0.008753,0.249847,0,0);-ms-transform:matrix(0.305543,-0.010705,0.008753,0.249847,0,0);-webkit-transform:matrix(0.305543,-0.010705,0.008753,0.249847,0,0);}
.m6a_c00358{transform:matrix(0.306359,-0.007046,0.005748,0.249934,0,0);-ms-transform:matrix(0.306359,-0.007046,0.005748,0.249934,0,0);-webkit-transform:matrix(0.306359,-0.007046,0.005748,0.249934,0,0);}
.mc2_c00358{transform:matrix(0.310810,-0.007459,0.005998,0.249928,0,0);-ms-transform:matrix(0.310810,-0.007459,0.005998,0.249928,0,0);-webkit-transform:matrix(0.310810,-0.007459,0.005998,0.249928,0,0);}
.m82_c00358{transform:matrix(0.311315,-0.004981,0.003999,0.249968,0,0);-ms-transform:matrix(0.311315,-0.004981,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311315,-0.004981,0.003999,0.249968,0,0);}
.m4f_c00358{transform:matrix(0.312494,-0.006875,0.005499,0.249940,0,0);-ms-transform:matrix(0.312494,-0.006875,0.005499,0.249940,0,0);-webkit-transform:matrix(0.312494,-0.006875,0.005499,0.249940,0,0);}
.m74_c00358{transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313850,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.317906,-0.007312,0.005748,0.249934,0,0);-ms-transform:matrix(0.317906,-0.007312,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317906,-0.007312,0.005748,0.249934,0,0);}
.me2_c00358{transform:matrix(0.321010,-0.007383,0.005748,0.249934,0,0);-ms-transform:matrix(0.321010,-0.007383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.321010,-0.007383,0.005748,0.249934,0,0);}
.m8b_c00358{transform:matrix(0.322462,-0.008706,0.006748,0.249909,0,0);-ms-transform:matrix(0.322462,-0.008706,0.006748,0.249909,0,0);-webkit-transform:matrix(0.322462,-0.008706,0.006748,0.249909,0,0);}
.m7b_c00358{transform:matrix(0.322724,-0.005164,0.003999,0.249968,0,0);-ms-transform:matrix(0.322724,-0.005164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.322724,-0.005164,0.003999,0.249968,0,0);}
.m8f_c00358{transform:matrix(0.339011,-0.009153,0.006748,0.249909,0,0);-ms-transform:matrix(0.339011,-0.009153,0.006748,0.249909,0,0);-webkit-transform:matrix(0.339011,-0.009153,0.006748,0.249909,0,0);}
.md5_c00358{transform:matrix(0.341625,-0.007857,0.005748,0.249934,0,0);-ms-transform:matrix(0.341625,-0.007857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.341625,-0.007857,0.005748,0.249934,0,0);}
.m5_c00358{transform:matrix(0.342836,-0.004457,0.003250,0.249979,0,0);-ms-transform:matrix(0.342836,-0.004457,0.003250,0.249979,0,0);-webkit-transform:matrix(0.342836,-0.004457,0.003250,0.249979,0,0);}
.m86_c00358{transform:matrix(0.346755,-0.008322,0.005998,0.249928,0,0);-ms-transform:matrix(0.346755,-0.008322,0.005998,0.249928,0,0);-webkit-transform:matrix(0.346755,-0.008322,0.005998,0.249928,0,0);}
.me8_c00358{transform:matrix(0.353277,-0.008125,0.005748,0.249934,0,0);-ms-transform:matrix(0.353277,-0.008125,0.005748,0.249934,0,0);-webkit-transform:matrix(0.353277,-0.008125,0.005748,0.249934,0,0);}
.m8a_c00358{transform:matrix(0.355718,-0.008537,0.005998,0.249928,0,0);-ms-transform:matrix(0.355718,-0.008537,0.005998,0.249928,0,0);-webkit-transform:matrix(0.355718,-0.008537,0.005998,0.249928,0,0);}
.m66_c00358{transform:matrix(0.356441,-0.008198,0.005748,0.249934,0,0);-ms-transform:matrix(0.356441,-0.008198,0.005748,0.249934,0,0);-webkit-transform:matrix(0.356441,-0.008198,0.005748,0.249934,0,0);}
.m38_c00358{transform:matrix(0.361498,-0.009760,0.006748,0.249909,0,0);-ms-transform:matrix(0.361498,-0.009760,0.006748,0.249909,0,0);-webkit-transform:matrix(0.361498,-0.009760,0.006748,0.249909,0,0);}
.me9_c00358{transform:matrix(0.366933,-0.008439,0.005748,0.249934,0,0);-ms-transform:matrix(0.366933,-0.008439,0.005748,0.249934,0,0);-webkit-transform:matrix(0.366933,-0.008439,0.005748,0.249934,0,0);}
.me7_c00358{transform:matrix(0.367768,-0.008459,0.005748,0.249934,0,0);-ms-transform:matrix(0.367768,-0.008459,0.005748,0.249934,0,0);-webkit-transform:matrix(0.367768,-0.008459,0.005748,0.249934,0,0);}
.m58_c00358{transform:matrix(0.370347,-0.008518,0.005748,0.249934,0,0);-ms-transform:matrix(0.370347,-0.008518,0.005748,0.249934,0,0);-webkit-transform:matrix(0.370347,-0.008518,0.005748,0.249934,0,0);}
.me5_c00358{transform:matrix(0.372242,-0.008562,0.005748,0.249934,0,0);-ms-transform:matrix(0.372242,-0.008562,0.005748,0.249934,0,0);-webkit-transform:matrix(0.372242,-0.008562,0.005748,0.249934,0,0);}
.m8d_c00358{transform:matrix(0.377337,-0.010188,0.006748,0.249909,0,0);-ms-transform:matrix(0.377337,-0.010188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.377337,-0.010188,0.006748,0.249909,0,0);}
.m71_c00358{transform:matrix(0.377462,-0.009437,0.006248,0.249922,0,0);-ms-transform:matrix(0.377462,-0.009437,0.006248,0.249922,0,0);-webkit-transform:matrix(0.377462,-0.009437,0.006248,0.249922,0,0);}
.m1_c00358{transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);-ms-transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);}
.mb7_c00358{transform:matrix(0.387663,-0.009304,0.005998,0.249928,0,0);-ms-transform:matrix(0.387663,-0.009304,0.005998,0.249928,0,0);-webkit-transform:matrix(0.387663,-0.009304,0.005998,0.249928,0,0);}
.m81_c00358{transform:matrix(0.397149,-0.006354,0.003999,0.249968,0,0);-ms-transform:matrix(0.397149,-0.006354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.397149,-0.006354,0.003999,0.249968,0,0);}
.mb2_c00358{transform:matrix(0.409272,-0.009823,0.005998,0.249928,0,0);-ms-transform:matrix(0.409272,-0.009823,0.005998,0.249928,0,0);-webkit-transform:matrix(0.409272,-0.009823,0.005998,0.249928,0,0);}
.me1_c00358{transform:matrix(0.414300,-0.009529,0.005748,0.249934,0,0);-ms-transform:matrix(0.414300,-0.009529,0.005748,0.249934,0,0);-webkit-transform:matrix(0.414300,-0.009529,0.005748,0.249934,0,0);}
.m72_c00358{transform:matrix(0.433410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433410,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.436012,-0.015276,0.008753,0.249847,0,0);-ms-transform:matrix(0.436012,-0.015276,0.008753,0.249847,0,0);-webkit-transform:matrix(0.436012,-0.015276,0.008753,0.249847,0,0);}
.m4_c00358{transform:matrix(0.452517,-0.005883,0.003250,0.249979,0,0);-ms-transform:matrix(0.452517,-0.005883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.452517,-0.005883,0.003250,0.249979,0,0);}
.m85_c00358{transform:matrix(0.459908,-0.011038,0.005998,0.249928,0,0);-ms-transform:matrix(0.459908,-0.011038,0.005998,0.249928,0,0);-webkit-transform:matrix(0.459908,-0.011038,0.005998,0.249928,0,0);}
.m83_c00358{transform:matrix(0.463261,-0.007412,0.003999,0.249968,0,0);-ms-transform:matrix(0.463261,-0.007412,0.003999,0.249968,0,0);-webkit-transform:matrix(0.463261,-0.007412,0.003999,0.249968,0,0);}
.mde_c00358{transform:matrix(0.472500,-0.010868,0.005748,0.249934,0,0);-ms-transform:matrix(0.472500,-0.010868,0.005748,0.249934,0,0);-webkit-transform:matrix(0.472500,-0.010868,0.005748,0.249934,0,0);}
.md7_c00358{transform:matrix(0.487466,-0.011212,0.005748,0.249934,0,0);-ms-transform:matrix(0.487466,-0.011212,0.005748,0.249934,0,0);-webkit-transform:matrix(0.487466,-0.011212,0.005748,0.249934,0,0);}
.mdd_c00358{transform:matrix(0.501852,-0.011543,0.005748,0.249934,0,0);-ms-transform:matrix(0.501852,-0.011543,0.005748,0.249934,0,0);-webkit-transform:matrix(0.501852,-0.011543,0.005748,0.249934,0,0);}
.m91_c00358{transform:matrix(0.512438,-0.013836,0.006748,0.249909,0,0);-ms-transform:matrix(0.512438,-0.013836,0.006748,0.249909,0,0);-webkit-transform:matrix(0.512438,-0.013836,0.006748,0.249909,0,0);}
.mea_c00358{transform:matrix(0.513249,-0.011805,0.005748,0.249934,0,0);-ms-transform:matrix(0.513249,-0.011805,0.005748,0.249934,0,0);-webkit-transform:matrix(0.513249,-0.011805,0.005748,0.249934,0,0);}
.m5a_c00358{transform:matrix(0.530115,-0.012193,0.005748,0.249934,0,0);-ms-transform:matrix(0.530115,-0.012193,0.005748,0.249934,0,0);-webkit-transform:matrix(0.530115,-0.012193,0.005748,0.249934,0,0);}
.m30_c00358{transform:matrix(0.531276,-0.014344,0.006748,0.249909,0,0);-ms-transform:matrix(0.531276,-0.014344,0.006748,0.249909,0,0);-webkit-transform:matrix(0.531276,-0.014344,0.006748,0.249909,0,0);}
.m48_c00358{transform:matrix(0.581109,-0.012784,0.005499,0.249940,0,0);-ms-transform:matrix(0.581109,-0.012784,0.005499,0.249940,0,0);-webkit-transform:matrix(0.581109,-0.012784,0.005499,0.249940,0,0);}
.m87_c00358{transform:matrix(0.581363,-0.013953,0.005998,0.249928,0,0);-ms-transform:matrix(0.581363,-0.013953,0.005998,0.249928,0,0);-webkit-transform:matrix(0.581363,-0.013953,0.005998,0.249928,0,0);}
.m8_c00358{transform:matrix(0.602880,-0.021122,0.008753,0.249847,0,0);-ms-transform:matrix(0.602880,-0.021122,0.008753,0.249847,0,0);-webkit-transform:matrix(0.602880,-0.021122,0.008753,0.249847,0,0);}
.m2_c00358{transform:matrix(0.608859,-0.007915,0.003250,0.249979,0,0);-ms-transform:matrix(0.608859,-0.007915,0.003250,0.249979,0,0);-webkit-transform:matrix(0.608859,-0.007915,0.003250,0.249979,0,0);}
.ma_c00358{transform:matrix(0.617801,-0.021645,0.008753,0.249847,0,0);-ms-transform:matrix(0.617801,-0.021645,0.008753,0.249847,0,0);-webkit-transform:matrix(0.617801,-0.021645,0.008753,0.249847,0,0);}
.m1f_c00358{transform:matrix(0.683985,-0.023963,0.008753,0.249847,0,0);-ms-transform:matrix(0.683985,-0.023963,0.008753,0.249847,0,0);-webkit-transform:matrix(0.683985,-0.023963,0.008753,0.249847,0,0);}
.m89_c00358{transform:matrix(0.722692,-0.017345,0.005998,0.249928,0,0);-ms-transform:matrix(0.722692,-0.017345,0.005998,0.249928,0,0);-webkit-transform:matrix(0.722692,-0.017345,0.005998,0.249928,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;}
.fse_c00358{font-size:22.050000px;}
.fs15_c00358{font-size:50.414513px;}
.fs17_c00358{font-size:51.463607px;}
.fs16_c00358{font-size:51.464815px;}
.fsd_c00358{font-size:53.550000px;}
.fs18_c00358{font-size:58.815551px;}
.fs1_c00358{font-size:62.975614px;}
.fs8_c00358{font-size:64.065498px;}
.fs9_c00358{font-size:65.117217px;}
.fs2_c00358{font-size:66.124395px;}
.fs3_c00358{font-size:68.223582px;}
.fs13_c00358{font-size:68.274873px;}
.fs7_c00358{font-size:69.316769px;}
.fs6_c00358{font-size:69.325255px;}
.fs10_c00358{font-size:70.359004px;}
.fsb_c00358{font-size:70.368605px;}
.fs12_c00358{font-size:71.420560px;}
.fsa_c00358{font-size:72.469160px;}
.fs4_c00358{font-size:72.476403px;}
.fsf_c00358{font-size:73.509407px;}
.fs14_c00358{font-size:73.519438px;}
.fsc_c00358{font-size:73.522965px;}
.fs5_c00358{font-size:74.577169px;}
.fs11_c00358{font-size:87.161154px;}
.fs0_c00358{font-size:91.357719px;}
.y0_c00358{bottom:0.000000px;}
.yd9_c00358{bottom:178.670468px;}
.yda_c00358{bottom:179.104434px;}
.ydb_c00358{bottom:179.533226px;}
.ydc_c00358{bottom:180.103395px;}
.ydd_c00358{bottom:180.889392px;}
.yde_c00358{bottom:181.250876px;}
.ydf_c00358{bottom:182.281938px;}
.ye0_c00358{bottom:182.664725px;}
.ye1_c00358{bottom:182.729962px;}
.ye2_c00358{bottom:183.139211px;}
.ye3_c00358{bottom:183.959620px;}
.ye4_c00358{bottom:184.635099px;}
.ye5_c00358{bottom:185.168026px;}
.ye6_c00358{bottom:185.990507px;}
.ye7_c00358{bottom:186.205851px;}
.ye8_c00358{bottom:186.767775px;}
.ye9_c00358{bottom:187.413670px;}
.yea_c00358{bottom:187.768772px;}
.yd3_c00358{bottom:196.027500px;}
.yd4_c00358{bottom:197.151786px;}
.yd5_c00358{bottom:197.574239px;}
.yd6_c00358{bottom:198.982839px;}
.yd7_c00358{bottom:200.553279px;}
.yd8_c00358{bottom:201.684914px;}
.yc0_c00358{bottom:213.847500px;}
.yc1_c00358{bottom:214.450104px;}
.yc2_c00358{bottom:214.831056px;}
.yc3_c00358{bottom:215.460984px;}
.yc4_c00358{bottom:216.030144px;}
.yc5_c00358{bottom:216.250860px;}
.yc6_c00358{bottom:216.870888px;}
.yc7_c00358{bottom:217.164720px;}
.yc8_c00358{bottom:217.561296px;}
.yc9_c00358{bottom:218.744472px;}
.yca_c00358{bottom:219.744444px;}
.ycb_c00358{bottom:220.359864px;}
.ycc_c00358{bottom:221.442168px;}
.ycd_c00358{bottom:221.829456px;}
.yce_c00358{bottom:222.222324px;}
.ycf_c00358{bottom:223.492980px;}
.yd0_c00358{bottom:224.132880px;}
.yd1_c00358{bottom:224.134968px;}
.yd2_c00358{bottom:224.944572px;}
.yb1_c00358{bottom:231.823500px;}
.yb2_c00358{bottom:232.388664px;}
.yb3_c00358{bottom:233.230992px;}
.yb4_c00358{bottom:234.364524px;}
.yb5_c00358{bottom:235.739292px;}
.yb6_c00358{bottom:236.548752px;}
.yb7_c00358{bottom:237.540228px;}
.yb8_c00358{bottom:238.245360px;}
.yb9_c00358{bottom:238.506252px;}
.yba_c00358{bottom:238.915428px;}
.ybb_c00358{bottom:239.455140px;}
.ybc_c00358{bottom:240.023652px;}
.ybd_c00358{bottom:240.343404px;}
.ybe_c00358{bottom:240.640944px;}
.ybf_c00358{bottom:242.078532px;}
.ya9_c00358{bottom:276.472463px;}
.yaa_c00358{bottom:277.197324px;}
.yab_c00358{bottom:277.774746px;}
.yac_c00358{bottom:278.745063px;}
.yad_c00358{bottom:279.010892px;}
.yae_c00358{bottom:280.340379px;}
.yaf_c00358{bottom:281.014524px;}
.yb0_c00358{bottom:285.053841px;}
.ya0_c00358{bottom:299.697099px;}
.ya1_c00358{bottom:300.396363px;}
.ya2_c00358{bottom:302.470399px;}
.ya3_c00358{bottom:303.577191px;}
.ya4_c00358{bottom:304.512055px;}
.ya5_c00358{bottom:304.927881px;}
.ya6_c00358{bottom:306.028237px;}
.ya7_c00358{bottom:307.687536px;}
.ya8_c00358{bottom:308.383833px;}
.y93_c00358{bottom:322.653000px;}
.y94_c00358{bottom:322.964915px;}
.y95_c00358{bottom:325.310880px;}
.y96_c00358{bottom:325.667610px;}
.y97_c00358{bottom:326.394560px;}
.y98_c00358{bottom:327.494006px;}
.y99_c00358{bottom:328.495057px;}
.y9a_c00358{bottom:328.738248px;}
.y9b_c00358{bottom:329.438219px;}
.y9c_c00358{bottom:329.798433px;}
.y9d_c00358{bottom:330.464731px;}
.y9e_c00358{bottom:330.966603px;}
.y9f_c00358{bottom:332.012747px;}
.y8a_c00358{bottom:349.932000px;}
.y8b_c00358{bottom:350.396616px;}
.y8c_c00358{bottom:350.761562px;}
.y8d_c00358{bottom:351.806421px;}
.y8e_c00358{bottom:352.503831px;}
.y8f_c00358{bottom:353.915215px;}
.y90_c00358{bottom:354.477315px;}
.y91_c00358{bottom:355.743548px;}
.y92_c00358{bottom:357.520890px;}
.y83_c00358{bottom:456.247500px;}
.y84_c00358{bottom:457.513836px;}
.y85_c00358{bottom:458.653848px;}
.y86_c00358{bottom:459.541968px;}
.y87_c00358{bottom:460.633992px;}
.y88_c00358{bottom:460.936032px;}
.y89_c00358{bottom:462.701004px;}
.y80_c00358{bottom:489.507504px;}
.y81_c00358{bottom:491.208948px;}
.y82_c00358{bottom:491.879232px;}
.y7b_c00358{bottom:514.082184px;}
.y7c_c00358{bottom:515.282772px;}
.y7d_c00358{bottom:516.552540px;}
.y7e_c00358{bottom:517.560588px;}
.y7f_c00358{bottom:518.308620px;}
.y75_c00358{bottom:546.873000px;}
.y76_c00358{bottom:547.640952px;}
.y77_c00358{bottom:548.496192px;}
.y78_c00358{bottom:548.765376px;}
.y79_c00358{bottom:549.407808px;}
.y7a_c00358{bottom:550.247784px;}
.y6d_c00358{bottom:560.260500px;}
.y6e_c00358{bottom:560.564475px;}
.y6f_c00358{bottom:562.215863px;}
.y70_c00358{bottom:562.698337px;}
.y71_c00358{bottom:563.990887px;}
.y72_c00358{bottom:564.615075px;}
.y74_c00358{bottom:571.590000px;}
.y5e_c00358{bottom:583.774914px;}
.y5f_c00358{bottom:583.970515px;}
.y60_c00358{bottom:584.483033px;}
.y61_c00358{bottom:584.991805px;}
.y62_c00358{bottom:585.705064px;}
.y63_c00358{bottom:586.434781px;}
.y64_c00358{bottom:586.926751px;}
.y65_c00358{bottom:587.449015px;}
.y66_c00358{bottom:587.702065px;}
.y67_c00358{bottom:588.604215px;}
.y68_c00358{bottom:589.173870px;}
.y69_c00358{bottom:589.855765px;}
.y6a_c00358{bottom:590.497222px;}
.y6b_c00358{bottom:591.022127px;}
.y6c_c00358{bottom:591.874521px;}
.y57_c00358{bottom:611.276028px;}
.y58_c00358{bottom:611.885449px;}
.y59_c00358{bottom:613.287112px;}
.y5a_c00358{bottom:615.277635px;}
.y5b_c00358{bottom:615.779500px;}
.y5c_c00358{bottom:616.309502px;}
.y73_c00358{bottom:617.166000px;}
.y5d_c00358{bottom:618.967545px;}
.y55_c00358{bottom:640.177500px;}
.y56_c00358{bottom:643.597105px;}
.y46_c00358{bottom:663.659472px;}
.y47_c00358{bottom:665.587623px;}
.y48_c00358{bottom:666.030561px;}
.y49_c00358{bottom:667.008927px;}
.y4a_c00358{bottom:667.992540px;}
.y4b_c00358{bottom:668.348844px;}
.y4c_c00358{bottom:668.770197px;}
.y4d_c00358{bottom:669.304125px;}
.y4e_c00358{bottom:670.179702px;}
.y4f_c00358{bottom:671.126385px;}
.y50_c00358{bottom:671.352606px;}
.y51_c00358{bottom:671.470296px;}
.y52_c00358{bottom:671.832672px;}
.y53_c00358{bottom:672.217458px;}
.y54_c00358{bottom:672.512310px;}
.y3b_c00358{bottom:686.281500px;}
.y3c_c00358{bottom:686.822568px;}
.y3d_c00358{bottom:688.390464px;}
.y3e_c00358{bottom:688.877808px;}
.y3f_c00358{bottom:690.266646px;}
.y40_c00358{bottom:691.343601px;}
.y41_c00358{bottom:692.175135px;}
.y42_c00358{bottom:692.567208px;}
.y43_c00358{bottom:693.049932px;}
.y44_c00358{bottom:694.133223px;}
.y45_c00358{bottom:695.822955px;}
.y33_c00358{bottom:709.018711px;}
.y34_c00358{bottom:712.322289px;}
.y35_c00358{bottom:713.566759px;}
.y36_c00358{bottom:714.520935px;}
.y37_c00358{bottom:715.032402px;}
.y38_c00358{bottom:716.694395px;}
.y39_c00358{bottom:717.168405px;}
.y3a_c00358{bottom:718.383760px;}
.y2b_c00358{bottom:731.632623px;}
.y2c_c00358{bottom:732.470051px;}
.y2d_c00358{bottom:734.170296px;}
.y2e_c00358{bottom:736.584570px;}
.y2f_c00358{bottom:737.553333px;}
.y30_c00358{bottom:738.270885px;}
.y31_c00358{bottom:739.737171px;}
.y32_c00358{bottom:743.225950px;}
.y23_c00358{bottom:753.298500px;}
.y24_c00358{bottom:753.362085px;}
.y25_c00358{bottom:754.460688px;}
.y26_c00358{bottom:755.377729px;}
.y27_c00358{bottom:755.949306px;}
.y28_c00358{bottom:756.752097px;}
.y29_c00358{bottom:757.351214px;}
.y2a_c00358{bottom:763.198442px;}
.y19_c00358{bottom:777.354718px;}
.y1a_c00358{bottom:778.614485px;}
.y1b_c00358{bottom:779.930868px;}
.y1c_c00358{bottom:780.612818px;}
.y1d_c00358{bottom:781.780512px;}
.y1e_c00358{bottom:782.044507px;}
.y1f_c00358{bottom:782.884826px;}
.y20_c00358{bottom:783.747457px;}
.y21_c00358{bottom:785.737977px;}
.y22_c00358{bottom:786.619701px;}
.yf_c00358{bottom:799.957212px;}
.y10_c00358{bottom:801.010362px;}
.y11_c00358{bottom:801.728316px;}
.y12_c00358{bottom:802.587070px;}
.y13_c00358{bottom:803.418304px;}
.y14_c00358{bottom:804.506292px;}
.y15_c00358{bottom:805.830256px;}
.y16_c00358{bottom:806.129326px;}
.y17_c00358{bottom:806.964388px;}
.y18_c00358{bottom:809.308474px;}
.y8_c00358{bottom:827.310000px;}
.y9_c00358{bottom:828.327607px;}
.ya_c00358{bottom:829.297230px;}
.yb_c00358{bottom:829.860870px;}
.yc_c00358{bottom:831.640042px;}
.yd_c00358{bottom:832.858988px;}
.ye_c00358{bottom:834.538725px;}
.y1_c00358{bottom:877.231500px;}
.y2_c00358{bottom:877.423497px;}
.y3_c00358{bottom:877.857703px;}
.y4_c00358{bottom:878.488996px;}
.y5_c00358{bottom:878.917372px;}
.y6_c00358{bottom:879.272077px;}
.y7_c00358{bottom:879.953368px;}
.h10_c00358{height:22.050000px;}
.h17_c00358{height:50.414513px;}
.h19_c00358{height:51.463607px;}
.h18_c00358{height:51.464815px;}
.hf_c00358{height:53.550000px;}
.h1a_c00358{height:58.815551px;}
.h3_c00358{height:62.975614px;}
.ha_c00358{height:64.065498px;}
.hb_c00358{height:65.117217px;}
.h4_c00358{height:66.124395px;}
.h5_c00358{height:68.223582px;}
.h15_c00358{height:68.274873px;}
.h9_c00358{height:69.316769px;}
.h8_c00358{height:69.325255px;}
.h12_c00358{height:70.359004px;}
.hd_c00358{height:70.368605px;}
.h14_c00358{height:71.420560px;}
.hc_c00358{height:72.469160px;}
.h6_c00358{height:72.476403px;}
.h11_c00358{height:73.509407px;}
.h16_c00358{height:73.519438px;}
.he_c00358{height:73.522965px;}
.h7_c00358{height:74.577169px;}
.h13_c00358{height:87.161154px;}
.h2_c00358{height:91.357719px;}
.h1_c00358{height:1005.000000px;}
.h0_c00358{height:1005.150000px;}
.w0_c00358{width:702.540000px;}
.w1_c00358{width:702.750000px;}
.x0_c00358{left:0.000000px;}
.x1f_c00358{left:91.180500px;}
.x20_c00358{left:93.535500px;}
.x16_c00358{left:94.804780px;}
.x3d_c00358{left:98.543625px;}
.x57_c00358{left:102.484500px;}
.x2e_c00358{left:104.059065px;}
.x4c_c00358{left:107.723237px;}
.xf_c00358{left:109.746960px;}
.x85_c00358{left:111.004500px;}
.x70_c00358{left:113.071500px;}
.x58_c00358{left:114.643500px;}
.x4d_c00358{left:118.054703px;}
.x33_c00358{left:119.662500px;}
.x8f_c00358{left:122.363857px;}
.x8_c00358{left:123.582000px;}
.x71_c00358{left:126.633000px;}
.x67_c00358{left:128.074500px;}
.x27_c00358{left:130.742873px;}
.x21_c00358{left:134.224500px;}
.x48_c00358{left:136.524273px;}
.x90_c00358{left:140.448943px;}
.x7c_c00358{left:142.319892px;}
.x6b_c00358{left:143.829000px;}
.x4e_c00358{left:145.036187px;}
.x9_c00358{left:152.627425px;}
.x17_c00358{left:154.700701px;}
.x91_c00358{left:158.309029px;}
.x6c_c00358{left:161.037000px;}
.x28_c00358{left:162.926223px;}
.x49_c00358{left:164.195394px;}
.x22_c00358{left:168.189000px;}
.x4f_c00358{left:171.789636px;}
.x6d_c00358{left:174.553500px;}
.x80_c00358{left:177.303000px;}
.x8d_c00358{left:178.536000px;}
.xa_c00358{left:180.303222px;}
.x92_c00358{left:182.054977px;}
.x23_c00358{left:189.358500px;}
.x34_c00358{left:190.930500px;}
.x3e_c00358{left:194.918349px;}
.xb_c00358{left:196.391118px;}
.x59_c00358{left:199.998000px;}
.x1_c00358{left:202.662000px;}
.x50_c00358{left:209.326086px;}
.x86_c00358{left:211.144500px;}
.x35_c00358{left:213.082500px;}
.x10_c00358{left:214.744591px;}
.x2_c00358{left:217.431000px;}
.x24_c00358{left:219.091500px;}
.x61_c00358{left:220.116468px;}
.x7d_c00358{left:224.694255px;}
.x29_c00358{left:228.344505px;}
.x93_c00358{left:229.857373px;}
.x87_c00358{left:236.979000px;}
.x6e_c00358{left:239.082000px;}
.x25_c00358{left:241.281000px;}
.x72_c00358{left:244.141500px;}
.xc_c00358{left:247.173784px;}
.x18_c00358{left:249.723697px;}
.x3_c00358{left:250.831500px;}
.x64_c00358{left:253.274064px;}
.x62_c00358{left:262.114092px;}
.x3f_c00358{left:266.003484px;}
.x51_c00358{left:273.600985px;}
.x36_c00358{left:276.211500px;}
.xd_c00358{left:281.965958px;}
.x7e_c00358{left:285.108135px;}
.x94_c00358{left:288.718994px;}
.x11_c00358{left:291.407706px;}
.x63_c00358{left:293.299608px;}
.x4_c00358{left:299.392500px;}
.x2f_c00358{left:301.804409px;}
.x19_c00358{left:305.235852px;}
.x8e_c00358{left:308.059500px;}
.x68_c00358{left:310.845000px;}
.x6f_c00358{left:312.174000px;}
.x5d_c00358{left:314.028000px;}
.x40_c00358{left:315.147129px;}
.x1a_c00358{left:317.781442px;}
.x2a_c00358{left:321.209016px;}
.x69_c00358{left:323.430000px;}
.x37_c00358{left:325.164000px;}
.xe_c00358{left:329.910465px;}
.x5_c00358{left:332.344500px;}
.x65_c00358{left:338.327616px;}
.x4a_c00358{left:341.136430px;}
.x95_c00358{left:342.669752px;}
.x12_c00358{left:344.314298px;}
.x78_c00358{left:349.441995px;}
.x41_c00358{left:354.042345px;}
.x13_c00358{left:356.276527px;}
.x1b_c00358{left:357.697037px;}
.x6_c00358{left:359.629500px;}
.x52_c00358{left:361.933628px;}
.x38_c00358{left:362.961000px;}
.x30_c00358{left:365.538794px;}
.x73_c00358{left:367.074000px;}
.x79_c00358{left:370.261944px;}
.x66_c00358{left:371.874480px;}
.x74_c00358{left:377.647500px;}
.x39_c00358{left:380.782500px;}
.x88_c00358{left:382.353000px;}
.x2b_c00358{left:386.055757px;}
.x14_c00358{left:389.661328px;}
.x53_c00358{left:391.921388px;}
.x96_c00358{left:392.990578px;}
.x6a_c00358{left:396.970500px;}
.x1c_c00358{left:398.720599px;}
.x3a_c00358{left:402.724500px;}
.x75_c00358{left:408.081000px;}
.x7_c00358{left:412.036500px;}
.x81_c00358{left:414.154500px;}
.x5e_c00358{left:415.477500px;}
.x5a_c00358{left:419.850000px;}
.x42_c00358{left:424.522947px;}
.x54_c00358{left:427.833199px;}
.x5f_c00358{left:432.301500px;}
.x5b_c00358{left:434.160000px;}
.x82_c00358{left:436.642500px;}
.x31_c00358{left:437.824110px;}
.x2c_c00358{left:442.475297px;}
.x89_c00358{left:443.586000px;}
.x3b_c00358{left:451.965000px;}
.x26_c00358{left:457.845000px;}
.x83_c00358{left:460.330500px;}
.x55_c00358{left:461.595304px;}
.x43_c00358{left:471.851526px;}
.x76_c00358{left:474.532500px;}
.x15_c00358{left:483.290399px;}
.x4b_c00358{left:486.011243px;}
.x44_c00358{left:489.052785px;}
.x1d_c00358{left:493.349280px;}
.x7f_c00358{left:499.307034px;}
.x97_c00358{left:501.303060px;}
.x45_c00358{left:507.161577px;}
.x7a_c00358{left:508.256466px;}
.x32_c00358{left:511.290048px;}
.x8a_c00358{left:512.899500px;}
.x77_c00358{left:520.017000px;}
.x60_c00358{left:524.952000px;}
.x46_c00358{left:526.425435px;}
.x3c_c00358{left:528.771000px;}
.x56_c00358{left:534.071463px;}
.x1e_c00358{left:535.260375px;}
.x8b_c00358{left:539.562000px;}
.x47_c00358{left:541.192095px;}
.x7b_c00358{left:543.097881px;}
.x84_c00358{left:545.950500px;}
.x8c_c00358{left:573.382500px;}
.x5c_c00358{left:575.100000px;}
.x2d_c00358{left:576.637401px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:0.000000pt;}
.fse_c00358{font-size:19.600000pt;}
.fs15_c00358{font-size:44.812901pt;}
.fs17_c00358{font-size:45.745428pt;}
.fs16_c00358{font-size:45.746503pt;}
.fsd_c00358{font-size:47.600000pt;}
.fs18_c00358{font-size:52.280489pt;}
.fs1_c00358{font-size:55.978324pt;}
.fs8_c00358{font-size:56.947110pt;}
.fs9_c00358{font-size:57.881970pt;}
.fs2_c00358{font-size:58.777240pt;}
.fs3_c00358{font-size:60.643184pt;}
.fs13_c00358{font-size:60.688776pt;}
.fs7_c00358{font-size:61.614905pt;}
.fs6_c00358{font-size:61.622449pt;}
.fs10_c00358{font-size:62.541337pt;}
.fsb_c00358{font-size:62.549871pt;}
.fs12_c00358{font-size:63.484942pt;}
.fsa_c00358{font-size:64.417032pt;}
.fs4_c00358{font-size:64.423470pt;}
.fsf_c00358{font-size:65.341695pt;}
.fs14_c00358{font-size:65.350612pt;}
.fsc_c00358{font-size:65.353747pt;}
.fs5_c00358{font-size:66.290816pt;}
.fs11_c00358{font-size:77.476582pt;}
.fs0_c00358{font-size:81.206861pt;}
.y0_c00358{bottom:0.000000pt;}
.yd9_c00358{bottom:158.818193pt;}
.yda_c00358{bottom:159.203941pt;}
.ydb_c00358{bottom:159.585089pt;}
.ydc_c00358{bottom:160.091907pt;}
.ydd_c00358{bottom:160.790571pt;}
.yde_c00358{bottom:161.111889pt;}
.ydf_c00358{bottom:162.028389pt;}
.ye0_c00358{bottom:162.368644pt;}
.ye1_c00358{bottom:162.426633pt;}
.ye2_c00358{bottom:162.790409pt;}
.ye3_c00358{bottom:163.519663pt;}
.ye4_c00358{bottom:164.120088pt;}
.ye5_c00358{bottom:164.593801pt;}
.ye6_c00358{bottom:165.324895pt;}
.ye7_c00358{bottom:165.516312pt;}
.ye8_c00358{bottom:166.015800pt;}
.ye9_c00358{bottom:166.589929pt;}
.yea_c00358{bottom:166.905575pt;}
.yd3_c00358{bottom:174.246667pt;}
.yd4_c00358{bottom:175.246032pt;}
.yd5_c00358{bottom:175.621545pt;}
.yd6_c00358{bottom:176.873635pt;}
.yd7_c00358{bottom:178.269581pt;}
.yd8_c00358{bottom:179.275479pt;}
.yc0_c00358{bottom:190.086667pt;}
.yc1_c00358{bottom:190.622315pt;}
.yc2_c00358{bottom:190.960939pt;}
.yc3_c00358{bottom:191.520875pt;}
.yc4_c00358{bottom:192.026795pt;}
.yc5_c00358{bottom:192.222987pt;}
.yc6_c00358{bottom:192.774123pt;}
.yc7_c00358{bottom:193.035307pt;}
.yc8_c00358{bottom:193.387819pt;}
.yc9_c00358{bottom:194.439531pt;}
.yca_c00358{bottom:195.328395pt;}
.ycb_c00358{bottom:195.875435pt;}
.ycc_c00358{bottom:196.837483pt;}
.ycd_c00358{bottom:197.181739pt;}
.yce_c00358{bottom:197.530955pt;}
.ycf_c00358{bottom:198.660427pt;}
.yd0_c00358{bottom:199.229227pt;}
.yd1_c00358{bottom:199.231083pt;}
.yd2_c00358{bottom:199.950731pt;}
.yb1_c00358{bottom:206.065333pt;}
.yb2_c00358{bottom:206.567701pt;}
.yb3_c00358{bottom:207.316437pt;}
.yb4_c00358{bottom:208.324021pt;}
.yb5_c00358{bottom:209.546037pt;}
.yb6_c00358{bottom:210.265557pt;}
.yb7_c00358{bottom:211.146869pt;}
.yb8_c00358{bottom:211.773653pt;}
.yb9_c00358{bottom:212.005557pt;}
.yba_c00358{bottom:212.369269pt;}
.ybb_c00358{bottom:212.849013pt;}
.ybc_c00358{bottom:213.354357pt;}
.ybd_c00358{bottom:213.638581pt;}
.ybe_c00358{bottom:213.903061pt;}
.ybf_c00358{bottom:215.180917pt;}
.ya9_c00358{bottom:245.753300pt;}
.yaa_c00358{bottom:246.397621pt;}
.yab_c00358{bottom:246.910885pt;}
.yac_c00358{bottom:247.773389pt;}
.yad_c00358{bottom:248.009681pt;}
.yae_c00358{bottom:249.191448pt;}
.yaf_c00358{bottom:249.790688pt;}
.yb0_c00358{bottom:253.381192pt;}
.ya0_c00358{bottom:266.397421pt;}
.ya1_c00358{bottom:267.018989pt;}
.ya2_c00358{bottom:268.862577pt;}
.ya3_c00358{bottom:269.846392pt;}
.ya4_c00358{bottom:270.677383pt;}
.ya5_c00358{bottom:271.047005pt;}
.ya6_c00358{bottom:272.025100pt;}
.ya7_c00358{bottom:273.500032pt;}
.ya8_c00358{bottom:274.118963pt;}
.y93_c00358{bottom:286.802667pt;}
.y94_c00358{bottom:287.079924pt;}
.y95_c00358{bottom:289.165227pt;}
.y96_c00358{bottom:289.482320pt;}
.y97_c00358{bottom:290.128497pt;}
.y98_c00358{bottom:291.105783pt;}
.y99_c00358{bottom:291.995607pt;}
.y9a_c00358{bottom:292.211776pt;}
.y9b_c00358{bottom:292.833972pt;}
.y9c_c00358{bottom:293.154163pt;}
.y9d_c00358{bottom:293.746428pt;}
.y9e_c00358{bottom:294.192536pt;}
.y9f_c00358{bottom:295.122441pt;}
.y8a_c00358{bottom:311.050667pt;}
.y8b_c00358{bottom:311.463659pt;}
.y8c_c00358{bottom:311.788055pt;}
.y8d_c00358{bottom:312.716819pt;}
.y8e_c00358{bottom:313.336739pt;}
.y8f_c00358{bottom:314.591303pt;}
.y90_c00358{bottom:315.090947pt;}
.y91_c00358{bottom:316.216487pt;}
.y92_c00358{bottom:317.796347pt;}
.y83_c00358{bottom:405.553333pt;}
.y84_c00358{bottom:406.678965pt;}
.y85_c00358{bottom:407.692309pt;}
.y86_c00358{bottom:408.481749pt;}
.y87_c00358{bottom:409.452437pt;}
.y88_c00358{bottom:409.720917pt;}
.y89_c00358{bottom:411.289781pt;}
.y80_c00358{bottom:435.117781pt;}
.y81_c00358{bottom:436.630176pt;}
.y82_c00358{bottom:437.225984pt;}
.y7b_c00358{bottom:456.961941pt;}
.y7c_c00358{bottom:458.029131pt;}
.y7d_c00358{bottom:459.157813pt;}
.y7e_c00358{bottom:460.053856pt;}
.y7f_c00358{bottom:460.718773pt;}
.y75_c00358{bottom:486.109333pt;}
.y76_c00358{bottom:486.791957pt;}
.y77_c00358{bottom:487.552171pt;}
.y78_c00358{bottom:487.791445pt;}
.y79_c00358{bottom:488.362496pt;}
.y7a_c00358{bottom:489.109141pt;}
.y6d_c00358{bottom:498.009333pt;}
.y6e_c00358{bottom:498.279533pt;}
.y6f_c00358{bottom:499.747433pt;}
.y70_c00358{bottom:500.176300pt;}
.y71_c00358{bottom:501.325233pt;}
.y72_c00358{bottom:501.880067pt;}
.y74_c00358{bottom:508.080000pt;}
.y5e_c00358{bottom:518.911035pt;}
.y5f_c00358{bottom:519.084903pt;}
.y60_c00358{bottom:519.540473pt;}
.y61_c00358{bottom:519.992716pt;}
.y62_c00358{bottom:520.626724pt;}
.y63_c00358{bottom:521.275361pt;}
.y64_c00358{bottom:521.712668pt;}
.y65_c00358{bottom:522.176903pt;}
.y66_c00358{bottom:522.401836pt;}
.y67_c00358{bottom:523.203747pt;}
.y68_c00358{bottom:523.710107pt;}
.y69_c00358{bottom:524.316236pt;}
.y6a_c00358{bottom:524.886420pt;}
.y6b_c00358{bottom:525.353001pt;}
.y6c_c00358{bottom:526.110685pt;}
.y57_c00358{bottom:543.356469pt;}
.y58_c00358{bottom:543.898177pt;}
.y59_c00358{bottom:545.144100pt;}
.y5a_c00358{bottom:546.913453pt;}
.y5b_c00358{bottom:547.359556pt;}
.y5c_c00358{bottom:547.830668pt;}
.y73_c00358{bottom:548.592000pt;}
.y5d_c00358{bottom:550.193373pt;}
.y55_c00358{bottom:569.046667pt;}
.y56_c00358{bottom:572.086316pt;}
.y46_c00358{bottom:589.919531pt;}
.y47_c00358{bottom:591.633443pt;}
.y48_c00358{bottom:592.027165pt;}
.y49_c00358{bottom:592.896824pt;}
.y4a_c00358{bottom:593.771147pt;}
.y4b_c00358{bottom:594.087861pt;}
.y4c_c00358{bottom:594.462397pt;}
.y4d_c00358{bottom:594.937000pt;}
.y4e_c00358{bottom:595.715291pt;}
.y4f_c00358{bottom:596.556787pt;}
.y50_c00358{bottom:596.757872pt;}
.y51_c00358{bottom:596.862485pt;}
.y52_c00358{bottom:597.184597pt;}
.y53_c00358{bottom:597.526629pt;}
.y54_c00358{bottom:597.788720pt;}
.y3b_c00358{bottom:610.028000pt;}
.y3c_c00358{bottom:610.508949pt;}
.y3d_c00358{bottom:611.902635pt;}
.y3e_c00358{bottom:612.335829pt;}
.y3f_c00358{bottom:613.570352pt;}
.y40_c00358{bottom:614.527645pt;}
.y41_c00358{bottom:615.266787pt;}
.y42_c00358{bottom:615.615296pt;}
.y43_c00358{bottom:616.044384pt;}
.y44_c00358{bottom:617.007309pt;}
.y45_c00358{bottom:618.509293pt;}
.y33_c00358{bottom:630.238855pt;}
.y34_c00358{bottom:633.175368pt;}
.y35_c00358{bottom:634.281564pt;}
.y36_c00358{bottom:635.129720pt;}
.y37_c00358{bottom:635.584357pt;}
.y38_c00358{bottom:637.061684pt;}
.y39_c00358{bottom:637.483027pt;}
.y3a_c00358{bottom:638.563343pt;}
.y2b_c00358{bottom:650.340109pt;}
.y2c_c00358{bottom:651.084489pt;}
.y2d_c00358{bottom:652.595819pt;}
.y2e_c00358{bottom:654.741840pt;}
.y2f_c00358{bottom:655.602963pt;}
.y30_c00358{bottom:656.240787pt;}
.y31_c00358{bottom:657.544152pt;}
.y32_c00358{bottom:660.645289pt;}
.y23_c00358{bottom:669.598667pt;}
.y24_c00358{bottom:669.655187pt;}
.y25_c00358{bottom:670.631723pt;}
.y26_c00358{bottom:671.446871pt;}
.y27_c00358{bottom:671.954939pt;}
.y28_c00358{bottom:672.668531pt;}
.y29_c00358{bottom:673.201079pt;}
.y2a_c00358{bottom:678.398615pt;}
.y19_c00358{bottom:690.981972pt;}
.y1a_c00358{bottom:692.101764pt;}
.y1b_c00358{bottom:693.271883pt;}
.y1c_c00358{bottom:693.878060pt;}
.y1d_c00358{bottom:694.916011pt;}
.y1e_c00358{bottom:695.150673pt;}
.y1f_c00358{bottom:695.897623pt;}
.y20_c00358{bottom:696.664407pt;}
.y21_c00358{bottom:698.433757pt;}
.y22_c00358{bottom:699.217512pt;}
.yf_c00358{bottom:711.073077pt;}
.y10_c00358{bottom:712.009211pt;}
.y11_c00358{bottom:712.647392pt;}
.y12_c00358{bottom:713.410729pt;}
.y13_c00358{bottom:714.149604pt;}
.y14_c00358{bottom:715.116704pt;}
.y15_c00358{bottom:716.293561pt;}
.y16_c00358{bottom:716.559401pt;}
.y17_c00358{bottom:717.301679pt;}
.y18_c00358{bottom:719.385311pt;}
.y8_c00358{bottom:735.386667pt;}
.y9_c00358{bottom:736.291207pt;}
.ya_c00358{bottom:737.153093pt;}
.yb_c00358{bottom:737.654107pt;}
.yc_c00358{bottom:739.235593pt;}
.yd_c00358{bottom:740.319100pt;}
.ye_c00358{bottom:741.812200pt;}
.y1_c00358{bottom:779.761333pt;}
.y2_c00358{bottom:779.931997pt;}
.y3_c00358{bottom:780.317959pt;}
.y4_c00358{bottom:780.879108pt;}
.y5_c00358{bottom:781.259887pt;}
.y6_c00358{bottom:781.575180pt;}
.y7_c00358{bottom:782.180772pt;}
.h10_c00358{height:19.600000pt;}
.h17_c00358{height:44.812901pt;}
.h19_c00358{height:45.745428pt;}
.h18_c00358{height:45.746503pt;}
.hf_c00358{height:47.600000pt;}
.h1a_c00358{height:52.280489pt;}
.h3_c00358{height:55.978324pt;}
.ha_c00358{height:56.947110pt;}
.hb_c00358{height:57.881970pt;}
.h4_c00358{height:58.777240pt;}
.h5_c00358{height:60.643184pt;}
.h15_c00358{height:60.688776pt;}
.h9_c00358{height:61.614905pt;}
.h8_c00358{height:61.622449pt;}
.h12_c00358{height:62.541337pt;}
.hd_c00358{height:62.549871pt;}
.h14_c00358{height:63.484942pt;}
.hc_c00358{height:64.417032pt;}
.h6_c00358{height:64.423470pt;}
.h11_c00358{height:65.341695pt;}
.h16_c00358{height:65.350612pt;}
.he_c00358{height:65.353747pt;}
.h7_c00358{height:66.290816pt;}
.h13_c00358{height:77.476582pt;}
.h2_c00358{height:81.206861pt;}
.h1_c00358{height:893.333333pt;}
.h0_c00358{height:893.466667pt;}
.w0_c00358{width:624.480000pt;}
.w1_c00358{width:624.666667pt;}
.x0_c00358{left:0.000000pt;}
.x1f_c00358{left:81.049333pt;}
.x20_c00358{left:83.142667pt;}
.x16_c00358{left:84.270916pt;}
.x3d_c00358{left:87.594333pt;}
.x57_c00358{left:91.097333pt;}
.x2e_c00358{left:92.496947pt;}
.x4c_c00358{left:95.753988pt;}
.xf_c00358{left:97.552853pt;}
.x85_c00358{left:98.670667pt;}
.x70_c00358{left:100.508000pt;}
.x58_c00358{left:101.905333pt;}
.x4d_c00358{left:104.937513pt;}
.x33_c00358{left:106.366667pt;}
.x8f_c00358{left:108.767873pt;}
.x8_c00358{left:109.850667pt;}
.x71_c00358{left:112.562667pt;}
.x67_c00358{left:113.844000pt;}
.x27_c00358{left:116.215887pt;}
.x21_c00358{left:119.310667pt;}
.x48_c00358{left:121.354909pt;}
.x90_c00358{left:124.843505pt;}
.x7c_c00358{left:126.506571pt;}
.x6b_c00358{left:127.848000pt;}
.x4e_c00358{left:128.921055pt;}
.x9_c00358{left:135.668823pt;}
.x17_c00358{left:137.511735pt;}
.x91_c00358{left:140.719137pt;}
.x6c_c00358{left:143.144000pt;}
.x28_c00358{left:144.823309pt;}
.x49_c00358{left:145.951461pt;}
.x22_c00358{left:149.501333pt;}
.x4f_c00358{left:152.701899pt;}
.x6d_c00358{left:155.158667pt;}
.x80_c00358{left:157.602667pt;}
.x8d_c00358{left:158.698667pt;}
.xa_c00358{left:160.269531pt;}
.x92_c00358{left:161.826647pt;}
.x23_c00358{left:168.318667pt;}
.x34_c00358{left:169.716000pt;}
.x3e_c00358{left:173.260755pt;}
.xb_c00358{left:174.569883pt;}
.x59_c00358{left:177.776000pt;}
.x1_c00358{left:180.144000pt;}
.x50_c00358{left:186.067632pt;}
.x86_c00358{left:187.684000pt;}
.x35_c00358{left:189.406667pt;}
.x10_c00358{left:190.884081pt;}
.x2_c00358{left:193.272000pt;}
.x24_c00358{left:194.748000pt;}
.x61_c00358{left:195.659083pt;}
.x7d_c00358{left:199.728227pt;}
.x29_c00358{left:202.972893pt;}
.x93_c00358{left:204.317665pt;}
.x87_c00358{left:210.648000pt;}
.x6e_c00358{left:212.517333pt;}
.x25_c00358{left:214.472000pt;}
.x72_c00358{left:217.014667pt;}
.xc_c00358{left:219.710031pt;}
.x18_c00358{left:221.976620pt;}
.x3_c00358{left:222.961333pt;}
.x64_c00358{left:225.132501pt;}
.x62_c00358{left:232.990304pt;}
.x3f_c00358{left:236.447541pt;}
.x51_c00358{left:243.200876pt;}
.x36_c00358{left:245.521333pt;}
.xd_c00358{left:250.636407pt;}
.x7e_c00358{left:253.429453pt;}
.x94_c00358{left:256.639105pt;}
.x11_c00358{left:259.029072pt;}
.x63_c00358{left:260.710763pt;}
.x4_c00358{left:266.126667pt;}
.x2f_c00358{left:268.270585pt;}
.x19_c00358{left:271.320757pt;}
.x8e_c00358{left:273.830667pt;}
.x68_c00358{left:276.306667pt;}
.x6f_c00358{left:277.488000pt;}
.x5d_c00358{left:279.136000pt;}
.x40_c00358{left:280.130781pt;}
.x1a_c00358{left:282.472393pt;}
.x2a_c00358{left:285.519125pt;}
.x69_c00358{left:287.493333pt;}
.x37_c00358{left:289.034667pt;}
.xe_c00358{left:293.253747pt;}
.x5_c00358{left:295.417333pt;}
.x65_c00358{left:300.735659pt;}
.x4a_c00358{left:303.232383pt;}
.x95_c00358{left:304.595335pt;}
.x12_c00358{left:306.057153pt;}
.x78_c00358{left:310.615107pt;}
.x41_c00358{left:314.704307pt;}
.x13_c00358{left:316.690247pt;}
.x1b_c00358{left:317.952921pt;}
.x6_c00358{left:319.670667pt;}
.x52_c00358{left:321.718780pt;}
.x38_c00358{left:322.632000pt;}
.x30_c00358{left:324.923372pt;}
.x73_c00358{left:326.288000pt;}
.x79_c00358{left:329.121728pt;}
.x66_c00358{left:330.555093pt;}
.x74_c00358{left:335.686667pt;}
.x39_c00358{left:338.473333pt;}
.x88_c00358{left:339.869333pt;}
.x2b_c00358{left:343.160673pt;}
.x14_c00358{left:346.365625pt;}
.x53_c00358{left:348.374567pt;}
.x96_c00358{left:349.324959pt;}
.x6a_c00358{left:352.862667pt;}
.x1c_c00358{left:354.418311pt;}
.x3a_c00358{left:357.977333pt;}
.x75_c00358{left:362.738667pt;}
.x7_c00358{left:366.254667pt;}
.x81_c00358{left:368.137333pt;}
.x5e_c00358{left:369.313333pt;}
.x5a_c00358{left:373.200000pt;}
.x42_c00358{left:377.353731pt;}
.x54_c00358{left:380.296177pt;}
.x5f_c00358{left:384.268000pt;}
.x5b_c00358{left:385.920000pt;}
.x82_c00358{left:388.126667pt;}
.x31_c00358{left:389.176987pt;}
.x2c_c00358{left:393.311375pt;}
.x89_c00358{left:394.298667pt;}
.x3b_c00358{left:401.746667pt;}
.x26_c00358{left:406.973333pt;}
.x83_c00358{left:409.182667pt;}
.x55_c00358{left:410.306937pt;}
.x43_c00358{left:419.423579pt;}
.x76_c00358{left:421.806667pt;}
.x15_c00358{left:429.591465pt;}
.x4b_c00358{left:432.009993pt;}
.x44_c00358{left:434.713587pt;}
.x1d_c00358{left:438.532693pt;}
.x7f_c00358{left:443.828475pt;}
.x97_c00358{left:445.602720pt;}
.x45_c00358{left:450.810291pt;}
.x7a_c00358{left:451.783525pt;}
.x32_c00358{left:454.480043pt;}
.x8a_c00358{left:455.910667pt;}
.x77_c00358{left:462.237333pt;}
.x60_c00358{left:466.624000pt;}
.x46_c00358{left:467.933720pt;}
.x3c_c00358{left:470.018667pt;}
.x56_c00358{left:474.730189pt;}
.x1e_c00358{left:475.787000pt;}
.x8b_c00358{left:479.610667pt;}
.x47_c00358{left:481.059640pt;}
.x7b_c00358{left:482.753672pt;}
.x84_c00358{left:485.289333pt;}
.x8c_c00358{left:509.673333pt;}
.x5c_c00358{left:511.200000pt;}
.x2d_c00358{left:512.566579pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m50_c00359{transform:matrix(0.012873,0.000219,-0.004249,0.249964,0,0);-ms-transform:matrix(0.012873,0.000219,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.012873,0.000219,-0.004249,0.249964,0,0);}
.m57_c00359{transform:matrix(0.014262,0.000271,-0.004749,0.249955,0,0);-ms-transform:matrix(0.014262,0.000271,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.014262,0.000271,-0.004749,0.249955,0,0);}
.md_c00359{transform:matrix(0.015713,0.000267,-0.004249,0.249964,0,0);-ms-transform:matrix(0.015713,0.000267,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.015713,0.000267,-0.004249,0.249964,0,0);}
.m7e_c00359{transform:matrix(0.019187,0.000365,-0.004749,0.249955,0,0);-ms-transform:matrix(0.019187,0.000365,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.019187,0.000365,-0.004749,0.249955,0,0);}
.m12a_c00359{transform:matrix(0.036356,0.000800,-0.005499,0.249940,0,0);-ms-transform:matrix(0.036356,0.000800,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.036356,0.000800,-0.005499,0.249940,0,0);}
.m9b_c00359{transform:matrix(0.038133,0.000725,-0.004749,0.249955,0,0);-ms-transform:matrix(0.038133,0.000725,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.038133,0.000725,-0.004749,0.249955,0,0);}
.mbe_c00359{transform:matrix(0.049886,0.000948,-0.004749,0.249955,0,0);-ms-transform:matrix(0.049886,0.000948,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.049886,0.000948,-0.004749,0.249955,0,0);}
.m112_c00359{transform:matrix(0.076024,0.001292,-0.004249,0.249964,0,0);-ms-transform:matrix(0.076024,0.001292,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.076024,0.001292,-0.004249,0.249964,0,0);}
.m35_c00359{transform:matrix(0.081878,0.001392,-0.004249,0.249964,0,0);-ms-transform:matrix(0.081878,0.001392,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.081878,0.001392,-0.004249,0.249964,0,0);}
.m5d_c00359{transform:matrix(0.088884,0.001689,-0.004749,0.249955,0,0);-ms-transform:matrix(0.088884,0.001689,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.088884,0.001689,-0.004749,0.249955,0,0);}
.me6_c00359{transform:matrix(0.106644,0.002559,-0.005998,0.249928,0,0);-ms-transform:matrix(0.106644,0.002559,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.106644,0.002559,-0.005998,0.249928,0,0);}
.m12c_c00359{transform:matrix(0.110573,0.002433,-0.005499,0.249940,0,0);-ms-transform:matrix(0.110573,0.002433,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.110573,0.002433,-0.005499,0.249940,0,0);}
.mf2_c00359{transform:matrix(0.112912,0.002710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.112912,0.002710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.112912,0.002710,-0.005998,0.249928,0,0);}
.m124_c00359{transform:matrix(0.115088,0.001957,-0.004249,0.249964,0,0);-ms-transform:matrix(0.115088,0.001957,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.115088,0.001957,-0.004249,0.249964,0,0);}
.me9_c00359{transform:matrix(0.122210,0.002933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.122210,0.002933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.122210,0.002933,-0.005998,0.249928,0,0);}
.m12b_c00359{transform:matrix(0.126599,0.002785,-0.005499,0.249940,0,0);-ms-transform:matrix(0.126599,0.002785,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.126599,0.002785,-0.005499,0.249940,0,0);}
.maf_c00359{transform:matrix(0.133701,0.002540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.133701,0.002540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.133701,0.002540,-0.004749,0.249955,0,0);}
.m79_c00359{transform:matrix(0.135586,0.002576,-0.004749,0.249955,0,0);-ms-transform:matrix(0.135586,0.002576,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.135586,0.002576,-0.004749,0.249955,0,0);}
.m11c_c00359{transform:matrix(0.138365,0.002352,-0.004249,0.249964,0,0);-ms-transform:matrix(0.138365,0.002352,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.138365,0.002352,-0.004249,0.249964,0,0);}
.mb6_c00359{transform:matrix(0.139080,0.002643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139080,0.002643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139080,0.002643,-0.004749,0.249955,0,0);}
.m20_c00359{transform:matrix(0.139110,0.002365,-0.004249,0.249964,0,0);-ms-transform:matrix(0.139110,0.002365,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.139110,0.002365,-0.004249,0.249964,0,0);}
.ma4_c00359{transform:matrix(0.139365,0.002648,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139365,0.002648,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139365,0.002648,-0.004749,0.249955,0,0);}
.m4e_c00359{transform:matrix(0.141645,0.002408,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141645,0.002408,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141645,0.002408,-0.004249,0.249964,0,0);}
.m11a_c00359{transform:matrix(0.143669,0.002442,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143669,0.002442,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143669,0.002442,-0.004249,0.249964,0,0);}
.mf3_c00359{transform:matrix(0.143869,0.003453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143869,0.003453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143869,0.003453,-0.005998,0.249928,0,0);}
.m2d_c00359{transform:matrix(0.143969,0.002447,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143969,0.002447,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143969,0.002447,-0.004249,0.249964,0,0);}
.m25_c00359{transform:matrix(0.144764,0.002461,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144764,0.002461,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144764,0.002461,-0.004249,0.249964,0,0);}
.md9_c00359{transform:matrix(0.146398,0.003514,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146398,0.003514,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146398,0.003514,-0.005998,0.249928,0,0);}
.m1a_c00359{transform:matrix(0.146409,0.002489,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146409,0.002489,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146409,0.002489,-0.004249,0.249964,0,0);}
.mf6_c00359{transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146673,0.003520,-0.005998,0.249928,0,0);}
.m2c_c00359{transform:matrix(0.147259,0.002503,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147259,0.002503,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147259,0.002503,-0.004249,0.249964,0,0);}
.m2_c00359{transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147860,0.000000,0.000000,0.250000,0,0);}
.m24_c00359{transform:matrix(0.148719,0.002528,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148719,0.002528,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148719,0.002528,-0.004249,0.249964,0,0);}
.m91_c00359{transform:matrix(0.150438,0.002858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150438,0.002858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150438,0.002858,-0.004749,0.249955,0,0);}
.m43_c00359{transform:matrix(0.151993,0.002584,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151993,0.002584,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151993,0.002584,-0.004249,0.249964,0,0);}
.m23_c00359{transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);}
.meb_c00359{transform:matrix(0.152866,0.003669,-0.005998,0.249928,0,0);-ms-transform:matrix(0.152866,0.003669,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.152866,0.003669,-0.005998,0.249928,0,0);}
.m96_c00359{transform:matrix(0.157342,0.002989,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157342,0.002989,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157342,0.002989,-0.004749,0.249955,0,0);}
.mc_c00359{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);}
.m6c_c00359{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);}
.mb7_c00359{transform:matrix(0.160196,0.003044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160196,0.003044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160196,0.003044,-0.004749,0.249955,0,0);}
.m70_c00359{transform:matrix(0.160251,0.003045,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160251,0.003045,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160251,0.003045,-0.004749,0.249955,0,0);}
.m84_c00359{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);}
.m22_c00359{transform:matrix(0.160427,0.002727,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160427,0.002727,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160427,0.002727,-0.004249,0.249964,0,0);}
.mc1_c00359{transform:matrix(0.161266,0.003064,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161266,0.003064,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161266,0.003064,-0.004749,0.249955,0,0);}
.mb2_c00359{transform:matrix(0.161661,0.003072,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161661,0.003072,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161661,0.003072,-0.004749,0.249955,0,0);}
.m1_c00359{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);}
.m28_c00359{transform:matrix(0.162776,0.002767,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162776,0.002767,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162776,0.002767,-0.004249,0.249964,0,0);}
.ma8_c00359{transform:matrix(0.163296,0.003103,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163296,0.003103,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163296,0.003103,-0.004749,0.249955,0,0);}
.m8f_c00359{transform:matrix(0.163925,0.003115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163925,0.003115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163925,0.003115,-0.004749,0.249955,0,0);}
.mb4_c00359{transform:matrix(0.164265,0.003121,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164265,0.003121,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164265,0.003121,-0.004749,0.249955,0,0);}
.m30_c00359{transform:matrix(0.164466,0.002796,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164466,0.002796,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164466,0.002796,-0.004249,0.249964,0,0);}
.m2f_c00359{transform:matrix(0.164471,0.002796,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164471,0.002796,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164471,0.002796,-0.004249,0.249964,0,0);}
.m87_c00359{transform:matrix(0.164508,0.003948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164508,0.003948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164508,0.003948,-0.005998,0.249928,0,0);}
.m0_c00359{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);}
.m61_c00359{transform:matrix(0.166290,0.003160,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166290,0.003160,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166290,0.003160,-0.004749,0.249955,0,0);}
.m54_c00359{transform:matrix(0.166437,0.003329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166437,0.003329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166437,0.003329,-0.004999,0.249950,0,0);}
.mad_c00359{transform:matrix(0.166630,0.003166,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166630,0.003166,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166630,0.003166,-0.004749,0.249955,0,0);}
.m11f_c00359{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);}
.m9e_c00359{transform:matrix(0.166840,0.003170,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166840,0.003170,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166840,0.003170,-0.004749,0.249955,0,0);}
.mac_c00359{transform:matrix(0.167625,0.003185,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167625,0.003185,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167625,0.003185,-0.004749,0.249955,0,0);}
.maa_c00359{transform:matrix(0.167765,0.003188,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167765,0.003188,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167765,0.003188,-0.004749,0.249955,0,0);}
.mce_c00359{transform:matrix(0.167830,0.003189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167830,0.003189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167830,0.003189,-0.004749,0.249955,0,0);}
.m11d_c00359{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);}
.mec_c00359{transform:matrix(0.168037,0.004033,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168037,0.004033,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168037,0.004033,-0.005998,0.249928,0,0);}
.m78_c00359{transform:matrix(0.168200,0.003196,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168200,0.003196,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168200,0.003196,-0.004749,0.249955,0,0);}
.m62_c00359{transform:matrix(0.168690,0.003205,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168690,0.003205,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168690,0.003205,-0.004749,0.249955,0,0);}
.mb8_c00359{transform:matrix(0.169024,0.003211,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169024,0.003211,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169024,0.003211,-0.004749,0.249955,0,0);}
.mcd_c00359{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);}
.ma0_c00359{transform:matrix(0.169329,0.003217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169329,0.003217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169329,0.003217,-0.004749,0.249955,0,0);}
.m3_c00359{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);}
.mb3_c00359{transform:matrix(0.170009,0.003230,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170009,0.003230,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170009,0.003230,-0.004749,0.249955,0,0);}
.m71_c00359{transform:matrix(0.170289,0.003235,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170289,0.003235,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170289,0.003235,-0.004749,0.249955,0,0);}
.m68_c00359{transform:matrix(0.171249,0.003254,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171249,0.003254,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171249,0.003254,-0.004749,0.249955,0,0);}
.m2e_c00359{transform:matrix(0.171410,0.002914,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171410,0.002914,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171410,0.002914,-0.004249,0.249964,0,0);}
.mcf_c00359{transform:matrix(0.172094,0.003270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172094,0.003270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172094,0.003270,-0.004749,0.249955,0,0);}
.m109_c00359{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);}
.m4_c00359{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);}
.m5a_c00359{transform:matrix(0.172729,0.003282,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172729,0.003282,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172729,0.003282,-0.004749,0.249955,0,0);}
.mab_c00359{transform:matrix(0.173299,0.003293,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173299,0.003293,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173299,0.003293,-0.004749,0.249955,0,0);}
.mae_c00359{transform:matrix(0.173369,0.003294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173369,0.003294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173369,0.003294,-0.004749,0.249955,0,0);}
.me0_c00359{transform:matrix(0.173675,0.004168,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173675,0.004168,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173675,0.004168,-0.005998,0.249928,0,0);}
.m4f_c00359{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);}
.mfb_c00359{transform:matrix(0.174700,0.004193,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174700,0.004193,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174700,0.004193,-0.005998,0.249928,0,0);}
.m60_c00359{transform:matrix(0.174768,0.003321,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174768,0.003321,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174768,0.003321,-0.004749,0.249955,0,0);}
.m74_c00359{transform:matrix(0.175013,0.003325,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175013,0.003325,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175013,0.003325,-0.004749,0.249955,0,0);}
.m63_c00359{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);}
.m15_c00359{transform:matrix(0.175665,0.002986,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175665,0.002986,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175665,0.002986,-0.004249,0.249964,0,0);}
.m82_c00359{transform:matrix(0.175979,0.004224,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175979,0.004224,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175979,0.004224,-0.005998,0.249928,0,0);}
.mb5_c00359{transform:matrix(0.176288,0.003349,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176288,0.003349,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176288,0.003349,-0.004749,0.249955,0,0);}
.mc0_c00359{transform:matrix(0.176298,0.003350,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176298,0.003350,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176298,0.003350,-0.004749,0.249955,0,0);}
.me8_c00359{transform:matrix(0.176794,0.004243,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176794,0.004243,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176794,0.004243,-0.005998,0.249928,0,0);}
.mea_c00359{transform:matrix(0.177079,0.004250,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177079,0.004250,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177079,0.004250,-0.005998,0.249928,0,0);}
.m73_c00359{transform:matrix(0.177563,0.003374,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177563,0.003374,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177563,0.003374,-0.004749,0.249955,0,0);}
.m65_c00359{transform:matrix(0.177743,0.003377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177743,0.003377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177743,0.003377,-0.004749,0.249955,0,0);}
.m5b_c00359{transform:matrix(0.177878,0.003380,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177878,0.003380,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177878,0.003380,-0.004749,0.249955,0,0);}
.m5e_c00359{transform:matrix(0.178028,0.003383,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178028,0.003383,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178028,0.003383,-0.004749,0.249955,0,0);}
.m92_c00359{transform:matrix(0.178523,0.003392,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178523,0.003392,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178523,0.003392,-0.004749,0.249955,0,0);}
.m38_c00359{transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);}
.m6a_c00359{transform:matrix(0.179698,0.003414,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179698,0.003414,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179698,0.003414,-0.004749,0.249955,0,0);}
.m31_c00359{transform:matrix(0.179799,0.003057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179799,0.003057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179799,0.003057,-0.004249,0.249964,0,0);}
.m10d_c00359{transform:matrix(0.179989,0.003060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179989,0.003060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179989,0.003060,-0.004249,0.249964,0,0);}
.m1b_c00359{transform:matrix(0.180029,0.003060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180029,0.003060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180029,0.003060,-0.004249,0.249964,0,0);}
.mca_c00359{transform:matrix(0.180207,0.003424,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180207,0.003424,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180207,0.003424,-0.004749,0.249955,0,0);}
.m42_c00359{transform:matrix(0.180244,0.003064,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180244,0.003064,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180244,0.003064,-0.004249,0.249964,0,0);}
.m59_c00359{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);}
.m2a_c00359{transform:matrix(0.180759,0.003073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180759,0.003073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180759,0.003073,-0.004249,0.249964,0,0);}
.m88_c00359{transform:matrix(0.181297,0.003445,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181297,0.003445,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181297,0.003445,-0.004749,0.249955,0,0);}
.m85_c00359{transform:matrix(0.181388,0.004353,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181388,0.004353,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181388,0.004353,-0.005998,0.249928,0,0);}
.m41_c00359{transform:matrix(0.181399,0.003084,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181399,0.003084,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181399,0.003084,-0.004249,0.249964,0,0);}
.mf1_c00359{transform:matrix(0.181733,0.004362,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181733,0.004362,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181733,0.004362,-0.005998,0.249928,0,0);}
.m7d_c00359{transform:matrix(0.181772,0.003454,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181772,0.003454,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181772,0.003454,-0.004749,0.249955,0,0);}
.m122_c00359{transform:matrix(0.182124,0.003096,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182124,0.003096,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182124,0.003096,-0.004249,0.249964,0,0);}
.m8a_c00359{transform:matrix(0.182922,0.003476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182922,0.003476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182922,0.003476,-0.004749,0.249955,0,0);}
.m4a_c00359{transform:matrix(0.183184,0.003114,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183184,0.003114,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183184,0.003114,-0.004249,0.249964,0,0);}
.mfe_c00359{transform:matrix(0.183452,0.004403,-0.005998,0.249928,0,0);-ms-transform:matrix(0.183452,0.004403,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.183452,0.004403,-0.005998,0.249928,0,0);}
.mb9_c00359{transform:matrix(0.183537,0.003487,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183537,0.003487,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183537,0.003487,-0.004749,0.249955,0,0);}
.m2b_c00359{transform:matrix(0.184033,0.003129,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184033,0.003129,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184033,0.003129,-0.004249,0.249964,0,0);}
.ma7_c00359{transform:matrix(0.184127,0.003498,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184127,0.003498,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184127,0.003498,-0.004749,0.249955,0,0);}
.m83_c00359{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);}
.m64_c00359{transform:matrix(0.184682,0.003509,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184682,0.003509,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184682,0.003509,-0.004749,0.249955,0,0);}
.m106_c00359{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);}
.m7c_c00359{transform:matrix(0.185187,0.003519,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185187,0.003519,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185187,0.003519,-0.004749,0.249955,0,0);}
.m120_c00359{transform:matrix(0.185248,0.003149,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185248,0.003149,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185248,0.003149,-0.004249,0.249964,0,0);}
.m8e_c00359{transform:matrix(0.185327,0.003521,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185327,0.003521,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185327,0.003521,-0.004749,0.249955,0,0);}
.m7b_c00359{transform:matrix(0.185342,0.003521,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185342,0.003521,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185342,0.003521,-0.004749,0.249955,0,0);}
.m72_c00359{transform:matrix(0.185392,0.003522,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185392,0.003522,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185392,0.003522,-0.004749,0.249955,0,0);}
.md3_c00359{transform:matrix(0.185462,0.003524,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185462,0.003524,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185462,0.003524,-0.004749,0.249955,0,0);}
.m39_c00359{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);}
.m8b_c00359{transform:matrix(0.185956,0.003533,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185956,0.003533,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185956,0.003533,-0.004749,0.249955,0,0);}
.mbb_c00359{transform:matrix(0.185976,0.003534,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185976,0.003534,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185976,0.003534,-0.004749,0.249955,0,0);}
.m118_c00359{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);}
.med_c00359{transform:matrix(0.186786,0.004483,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186786,0.004483,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186786,0.004483,-0.005998,0.249928,0,0);}
.mf7_c00359{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);}
.m18_c00359{transform:matrix(0.186953,0.003178,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186953,0.003178,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186953,0.003178,-0.004249,0.249964,0,0);}
.m89_c00359{transform:matrix(0.187081,0.003555,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187081,0.003555,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187081,0.003555,-0.004749,0.249955,0,0);}
.md7_c00359{transform:matrix(0.187336,0.004496,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187336,0.004496,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187336,0.004496,-0.005998,0.249928,0,0);}
.mfa_c00359{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);}
.m6e_c00359{transform:matrix(0.187686,0.003566,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187686,0.003566,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187686,0.003566,-0.004749,0.249955,0,0);}
.m40_c00359{transform:matrix(0.187773,0.003192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187773,0.003192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187773,0.003192,-0.004249,0.249964,0,0);}
.m5c_c00359{transform:matrix(0.188216,0.003576,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188216,0.003576,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188216,0.003576,-0.004749,0.249955,0,0);}
.m10b_c00359{transform:matrix(0.188758,0.003209,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188758,0.003209,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188758,0.003209,-0.004249,0.249964,0,0);}
.m3a_c00359{transform:matrix(0.189193,0.003216,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189193,0.003216,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189193,0.003216,-0.004249,0.249964,0,0);}
.m27_c00359{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);}
.ma_c00359{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);}
.m3d_c00359{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);}
.me7_c00359{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);}
.m19_c00359{transform:matrix(0.191722,0.003259,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191722,0.003259,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191722,0.003259,-0.004249,0.249964,0,0);}
.m49_c00359{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);}
.mee_c00359{transform:matrix(0.192270,0.004614,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192270,0.004614,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192270,0.004614,-0.005998,0.249928,0,0);}
.m90_c00359{transform:matrix(0.192290,0.003654,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192290,0.003654,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192290,0.003654,-0.004749,0.249955,0,0);}
.mef_c00359{transform:matrix(0.192510,0.004620,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192510,0.004620,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192510,0.004620,-0.005998,0.249928,0,0);}
.m1c_c00359{transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);}
.m3b_c00359{transform:matrix(0.192817,0.003278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192817,0.003278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192817,0.003278,-0.004249,0.249964,0,0);}
.m1e_c00359{transform:matrix(0.193317,0.003286,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193317,0.003286,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193317,0.003286,-0.004249,0.249964,0,0);}
.m53_c00359{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);}
.md8_c00359{transform:matrix(0.193509,0.004644,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193509,0.004644,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193509,0.004644,-0.005998,0.249928,0,0);}
.mda_c00359{transform:matrix(0.193819,0.004652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193819,0.004652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193819,0.004652,-0.005998,0.249928,0,0);}
.md1_c00359{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);}
.m11b_c00359{transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);}
.m17_c00359{transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);}
.m77_c00359{transform:matrix(0.195230,0.003709,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195230,0.003709,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195230,0.003709,-0.004749,0.249955,0,0);}
.m7a_c00359{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);}
.m5f_c00359{transform:matrix(0.196350,0.003731,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196350,0.003731,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196350,0.003731,-0.004749,0.249955,0,0);}
.m125_c00359{transform:matrix(0.196442,0.003340,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196442,0.003340,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196442,0.003340,-0.004249,0.249964,0,0);}
.me1_c00359{transform:matrix(0.196568,0.004718,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196568,0.004718,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196568,0.004718,-0.005998,0.249928,0,0);}
.m3c_c00359{transform:matrix(0.196627,0.003343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196627,0.003343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196627,0.003343,-0.004249,0.249964,0,0);}
.m114_c00359{transform:matrix(0.196997,0.003349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196997,0.003349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196997,0.003349,-0.004249,0.249964,0,0);}
.m45_c00359{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);}
.m86_c00359{transform:matrix(0.197343,0.004736,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197343,0.004736,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197343,0.004736,-0.005998,0.249928,0,0);}
.m75_c00359{transform:matrix(0.197364,0.003750,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197364,0.003750,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197364,0.003750,-0.004749,0.249955,0,0);}
.m110_c00359{transform:matrix(0.198366,0.003372,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198366,0.003372,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198366,0.003372,-0.004249,0.249964,0,0);}
.ma9_c00359{transform:matrix(0.198464,0.003771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198464,0.003771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198464,0.003771,-0.004749,0.249955,0,0);}
.mba_c00359{transform:matrix(0.198844,0.003778,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198844,0.003778,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198844,0.003778,-0.004749,0.249955,0,0);}
.mc7_c00359{transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);}
.m5_c00359{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);}
.mb1_c00359{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);}
.mf9_c00359{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);}
.md0_c00359{transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);}
.mc2_c00359{transform:matrix(0.201834,0.003835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201834,0.003835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201834,0.003835,-0.004749,0.249955,0,0);}
.m10_c00359{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);}
.m66_c00359{transform:matrix(0.202039,0.003839,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202039,0.003839,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202039,0.003839,-0.004749,0.249955,0,0);}
.m33_c00359{transform:matrix(0.202406,0.003441,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202406,0.003441,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202406,0.003441,-0.004249,0.249964,0,0);}
.m11e_c00359{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);}
.m3f_c00359{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);}
.m67_c00359{transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);}
.m52_c00359{transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);}
.m10c_c00359{transform:matrix(0.205155,0.003488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205155,0.003488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205155,0.003488,-0.004249,0.249964,0,0);}
.m51_c00359{transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);}
.mcc_c00359{transform:matrix(0.205798,0.003910,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205798,0.003910,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205798,0.003910,-0.004749,0.249955,0,0);}
.m80_c00359{transform:matrix(0.206021,0.004944,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206021,0.004944,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206021,0.004944,-0.005998,0.249928,0,0);}
.m117_c00359{transform:matrix(0.206280,0.003507,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206280,0.003507,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206280,0.003507,-0.004249,0.249964,0,0);}
.mbf_c00359{transform:matrix(0.206288,0.003919,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206288,0.003919,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206288,0.003919,-0.004749,0.249955,0,0);}
.m3e_c00359{transform:matrix(0.206610,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206610,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206610,0.003512,-0.004249,0.249964,0,0);}
.mb_c00359{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);}
.m6f_c00359{transform:matrix(0.207763,0.003947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207763,0.003947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207763,0.003947,-0.004749,0.249955,0,0);}
.mcb_c00359{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);}
.ma3_c00359{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);}
.m14_c00359{transform:matrix(0.208635,0.003547,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208635,0.003547,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208635,0.003547,-0.004249,0.249964,0,0);}
.m37_c00359{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);}
.m44_c00359{transform:matrix(0.208920,0.003552,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208920,0.003552,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208920,0.003552,-0.004249,0.249964,0,0);}
.mb0_c00359{transform:matrix(0.208967,0.003970,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208967,0.003970,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208967,0.003970,-0.004749,0.249955,0,0);}
.m121_c00359{transform:matrix(0.209105,0.003555,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209105,0.003555,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209105,0.003555,-0.004249,0.249964,0,0);}
.m21_c00359{transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);}
.m9_c00359{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);}
.m8d_c00359{transform:matrix(0.210022,0.003990,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210022,0.003990,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210022,0.003990,-0.004749,0.249955,0,0);}
.m32_c00359{transform:matrix(0.210645,0.003581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210645,0.003581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210645,0.003581,-0.004249,0.249964,0,0);}
.m6_c00359{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);}
.me2_c00359{transform:matrix(0.211334,0.005072,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211334,0.005072,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211334,0.005072,-0.005998,0.249928,0,0);}
.m29_c00359{transform:matrix(0.211829,0.003601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211829,0.003601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211829,0.003601,-0.004249,0.249964,0,0);}
.m11_c00359{transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);}
.m48_c00359{transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214254,0.003642,-0.004249,0.249964,0,0);}
.m113_c00359{transform:matrix(0.215024,0.003655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215024,0.003655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215024,0.003655,-0.004249,0.249964,0,0);}
.mc6_c00359{transform:matrix(0.215496,0.004094,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215496,0.004094,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215496,0.004094,-0.004749,0.249955,0,0);}
.m10e_c00359{transform:matrix(0.215894,0.003670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215894,0.003670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215894,0.003670,-0.004249,0.249964,0,0);}
.m9d_c00359{transform:matrix(0.216081,0.004106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216081,0.004106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216081,0.004106,-0.004749,0.249955,0,0);}
.m9f_c00359{transform:matrix(0.216866,0.004120,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216866,0.004120,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216866,0.004120,-0.004749,0.249955,0,0);}
.m55_c00359{transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);}
.m129_c00359{transform:matrix(0.218142,0.004799,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218142,0.004799,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218142,0.004799,-0.005499,0.249940,0,0);}
.m1f_c00359{transform:matrix(0.218813,0.003720,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218813,0.003720,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218813,0.003720,-0.004249,0.249964,0,0);}
.m108_c00359{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);}
.m12_c00359{transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);}
.m16_c00359{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);}
.me_c00359{transform:matrix(0.221278,0.003762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221278,0.003762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221278,0.003762,-0.004249,0.249964,0,0);}
.m69_c00359{transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);}
.m81_c00359{transform:matrix(0.224410,0.005386,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224410,0.005386,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224410,0.005386,-0.005998,0.249928,0,0);}
.m101_c00359{transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);}
.m104_c00359{transform:matrix(0.225057,0.003826,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225057,0.003826,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225057,0.003826,-0.004249,0.249964,0,0);}
.m102_c00359{transform:matrix(0.225302,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225302,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225302,0.003830,-0.004249,0.249964,0,0);}
.m8_c00359{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);}
.m115_c00359{transform:matrix(0.226537,0.003851,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226537,0.003851,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226537,0.003851,-0.004249,0.249964,0,0);}
.m119_c00359{transform:matrix(0.226927,0.003858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226927,0.003858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226927,0.003858,-0.004249,0.249964,0,0);}
.m6d_c00359{transform:matrix(0.227734,0.004327,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227734,0.004327,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227734,0.004327,-0.004749,0.249955,0,0);}
.m1d_c00359{transform:matrix(0.227822,0.003873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227822,0.003873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227822,0.003873,-0.004249,0.249964,0,0);}
.m116_c00359{transform:matrix(0.229362,0.003899,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229362,0.003899,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229362,0.003899,-0.004249,0.249964,0,0);}
.m8c_c00359{transform:matrix(0.230778,0.004385,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230778,0.004385,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230778,0.004385,-0.004749,0.249955,0,0);}
.m126_c00359{transform:matrix(0.232381,0.003950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232381,0.003950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232381,0.003950,-0.004249,0.249964,0,0);}
.mdf_c00359{transform:matrix(0.232548,0.005581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232548,0.005581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232548,0.005581,-0.005998,0.249928,0,0);}
.mc5_c00359{transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233793,0.004442,-0.004749,0.249955,0,0);}
.m10a_c00359{transform:matrix(0.234321,0.003983,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234321,0.003983,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234321,0.003983,-0.004249,0.249964,0,0);}
.m107_c00359{transform:matrix(0.235006,0.003995,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235006,0.003995,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235006,0.003995,-0.004249,0.249964,0,0);}
.m9a_c00359{transform:matrix(0.235268,0.004470,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235268,0.004470,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235268,0.004470,-0.004749,0.249955,0,0);}
.m4c_c00359{transform:matrix(0.235786,0.004008,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235786,0.004008,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235786,0.004008,-0.004249,0.249964,0,0);}
.m111_c00359{transform:matrix(0.235811,0.004009,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235811,0.004009,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235811,0.004009,-0.004249,0.249964,0,0);}
.m76_c00359{transform:matrix(0.237132,0.004506,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237132,0.004506,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237132,0.004506,-0.004749,0.249955,0,0);}
.mbd_c00359{transform:matrix(0.237287,0.004508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237287,0.004508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237287,0.004508,-0.004749,0.249955,0,0);}
.m9c_c00359{transform:matrix(0.237852,0.004519,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237852,0.004519,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237852,0.004519,-0.004749,0.249955,0,0);}
.mfd_c00359{transform:matrix(0.238766,0.005730,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238766,0.005730,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238766,0.005730,-0.005998,0.249928,0,0);}
.m7_c00359{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);}
.m6b_c00359{transform:matrix(0.238937,0.004540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238937,0.004540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238937,0.004540,-0.004749,0.249955,0,0);}
.m95_c00359{transform:matrix(0.239057,0.004542,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239057,0.004542,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239057,0.004542,-0.004749,0.249955,0,0);}
.m58_c00359{transform:matrix(0.239262,0.004546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239262,0.004546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239262,0.004546,-0.004749,0.249955,0,0);}
.me3_c00359{transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);}
.mdb_c00359{transform:matrix(0.239556,0.005749,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239556,0.005749,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239556,0.005749,-0.005998,0.249928,0,0);}
.mfc_c00359{transform:matrix(0.239911,0.005758,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239911,0.005758,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239911,0.005758,-0.005998,0.249928,0,0);}
.ma5_c00359{transform:matrix(0.239967,0.004559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239967,0.004559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239967,0.004559,-0.004749,0.249955,0,0);}
.m34_c00359{transform:matrix(0.239995,0.004080,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239995,0.004080,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239995,0.004080,-0.004249,0.249964,0,0);}
.m26_c00359{transform:matrix(0.240040,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240040,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240040,0.004081,-0.004249,0.249964,0,0);}
.m13_c00359{transform:matrix(0.240130,0.004082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240130,0.004082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240130,0.004082,-0.004249,0.249964,0,0);}
.m4d_c00359{transform:matrix(0.240530,0.004089,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240530,0.004089,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240530,0.004089,-0.004249,0.249964,0,0);}
.mf8_c00359{transform:matrix(0.242860,0.005829,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242860,0.005829,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242860,0.005829,-0.005998,0.249928,0,0);}
.m105_c00359{transform:matrix(0.243075,0.004132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243075,0.004132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243075,0.004132,-0.004249,0.249964,0,0);}
.mff_c00359{transform:matrix(0.243120,0.004133,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243120,0.004133,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243120,0.004133,-0.004249,0.249964,0,0);}
.md5_c00359{transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);}
.mf_c00359{transform:matrix(0.244385,0.004155,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244385,0.004155,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244385,0.004155,-0.004249,0.249964,0,0);}
.m100_c00359{transform:matrix(0.247659,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247659,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247659,0.004210,-0.004249,0.249964,0,0);}
.m97_c00359{transform:matrix(0.247995,0.004712,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247995,0.004712,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247995,0.004712,-0.004749,0.249955,0,0);}
.md4_c00359{transform:matrix(0.248390,0.004719,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248390,0.004719,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248390,0.004719,-0.004749,0.249955,0,0);}
.m123_c00359{transform:matrix(0.250059,0.004251,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250059,0.004251,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250059,0.004251,-0.004249,0.249964,0,0);}
.m103_c00359{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);}
.mf0_c00359{transform:matrix(0.252487,0.006060,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252487,0.006060,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252487,0.006060,-0.005998,0.249928,0,0);}
.m46_c00359{transform:matrix(0.253508,0.004310,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253508,0.004310,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253508,0.004310,-0.004249,0.249964,0,0);}
.mbc_c00359{transform:matrix(0.253724,0.004821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253724,0.004821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253724,0.004821,-0.004749,0.249955,0,0);}
.mf5_c00359{transform:matrix(0.255092,0.006122,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255092,0.006122,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255092,0.006122,-0.005998,0.249928,0,0);}
.m47_c00359{transform:matrix(0.256613,0.004362,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256613,0.004362,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256613,0.004362,-0.004249,0.249964,0,0);}
.mdd_c00359{transform:matrix(0.256711,0.006161,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256711,0.006161,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256711,0.006161,-0.005998,0.249928,0,0);}
.m99_c00359{transform:matrix(0.257748,0.004897,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257748,0.004897,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257748,0.004897,-0.004749,0.249955,0,0);}
.m10f_c00359{transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);}
.md6_c00359{transform:matrix(0.262175,0.006292,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262175,0.006292,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262175,0.006292,-0.005998,0.249928,0,0);}
.md2_c00359{transform:matrix(0.265492,0.005044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265492,0.005044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265492,0.005044,-0.004749,0.249955,0,0);}
.m94_c00359{transform:matrix(0.267472,0.005082,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267472,0.005082,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267472,0.005082,-0.004749,0.249955,0,0);}
.m127_c00359{transform:matrix(0.270036,0.004591,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270036,0.004591,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270036,0.004591,-0.004249,0.249964,0,0);}
.ma6_c00359{transform:matrix(0.272856,0.005184,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272856,0.005184,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272856,0.005184,-0.004749,0.249955,0,0);}
.mc9_c00359{transform:matrix(0.274800,0.005221,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274800,0.005221,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274800,0.005221,-0.004749,0.249955,0,0);}
.m56_c00359{transform:matrix(0.274865,0.005497,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274865,0.005497,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274865,0.005497,-0.004999,0.249950,0,0);}
.ma1_c00359{transform:matrix(0.277260,0.005268,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277260,0.005268,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277260,0.005268,-0.004749,0.249955,0,0);}
.mde_c00359{transform:matrix(0.282879,0.006789,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282879,0.006789,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282879,0.006789,-0.005998,0.249928,0,0);}
.m98_c00359{transform:matrix(0.287718,0.005467,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287718,0.005467,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287718,0.005467,-0.004749,0.249955,0,0);}
.m93_c00359{transform:matrix(0.287773,0.005468,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287773,0.005468,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287773,0.005468,-0.004749,0.249955,0,0);}
.mf4_c00359{transform:matrix(0.299804,0.007195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.299804,0.007195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.299804,0.007195,-0.005998,0.249928,0,0);}
.me5_c00359{transform:matrix(0.309041,0.007417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.309041,0.007417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.309041,0.007417,-0.005998,0.249928,0,0);}
.mc3_c00359{transform:matrix(0.317398,0.006031,-0.004749,0.249955,0,0);-ms-transform:matrix(0.317398,0.006031,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.317398,0.006031,-0.004749,0.249955,0,0);}
.m36_c00359{transform:matrix(0.321464,0.005465,-0.004249,0.249964,0,0);-ms-transform:matrix(0.321464,0.005465,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.321464,0.005465,-0.004249,0.249964,0,0);}
.mc4_c00359{transform:matrix(0.325511,0.006185,-0.004749,0.249955,0,0);-ms-transform:matrix(0.325511,0.006185,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.325511,0.006185,-0.004749,0.249955,0,0);}
.me4_c00359{transform:matrix(0.325861,0.007821,-0.005998,0.249928,0,0);-ms-transform:matrix(0.325861,0.007821,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.325861,0.007821,-0.005998,0.249928,0,0);}
.ma2_c00359{transform:matrix(0.332215,0.006312,-0.004749,0.249955,0,0);-ms-transform:matrix(0.332215,0.006312,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.332215,0.006312,-0.004749,0.249955,0,0);}
.mc8_c00359{transform:matrix(0.335075,0.006366,-0.004749,0.249955,0,0);-ms-transform:matrix(0.335075,0.006366,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.335075,0.006366,-0.004749,0.249955,0,0);}
.m4b_c00359{transform:matrix(0.353989,0.006018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.353989,0.006018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.353989,0.006018,-0.004249,0.249964,0,0);}
.m12e_c00359{transform:matrix(0.372050,0.008185,-0.005499,0.249940,0,0);-ms-transform:matrix(0.372050,0.008185,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.372050,0.008185,-0.005499,0.249940,0,0);}
.m7f_c00359{transform:matrix(0.412571,0.007839,-0.004749,0.249955,0,0);-ms-transform:matrix(0.412571,0.007839,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.412571,0.007839,-0.004749,0.249955,0,0);}
.m128_c00359{transform:matrix(0.559575,0.012311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.559575,0.012311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.559575,0.012311,-0.005499,0.249940,0,0);}
.mdc_c00359{transform:matrix(0.989345,0.023744,-0.005998,0.249928,0,0);-ms-transform:matrix(0.989345,0.023744,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.989345,0.023744,-0.005998,0.249928,0,0);}
.m12d_c00359{transform:matrix(1.643932,0.036167,-0.005499,0.249940,0,0);-ms-transform:matrix(1.643932,0.036167,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.643932,0.036167,-0.005499,0.249940,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;}
.fs1a_c00359{font-size:21.005081px;}
.fs17_c00359{font-size:40.955917px;}
.fs13_c00359{font-size:47.263606px;}
.fs18_c00359{font-size:48.306979px;}
.fse_c00359{font-size:48.308717px;}
.fs16_c00359{font-size:49.364211px;}
.fs12_c00359{font-size:50.414513px;}
.fs14_c00359{font-size:52.515118px;}
.fs15_c00359{font-size:58.816932px;}
.fs19_c00359{font-size:59.858648px;}
.fsf_c00359{font-size:60.910991px;}
.fs2_c00359{font-size:61.958951px;}
.fs11_c00359{font-size:64.061560px;}
.fs1_c00359{font-size:67.200000px;}
.fs6_c00359{font-size:67.209710px;}
.fs8_c00359{font-size:67.213439px;}
.fs4_c00359{font-size:68.259861px;}
.fs9_c00359{font-size:68.262318px;}
.fs3_c00359{font-size:69.310013px;}
.fsc_c00359{font-size:70.362697px;}
.fs5_c00359{font-size:71.410317px;}
.fsa_c00359{font-size:71.412887px;}
.fsd_c00359{font-size:71.420560px;}
.fs10_c00359{font-size:72.463076px;}
.fsb_c00359{font-size:74.563455px;}
.fs7_c00359{font-size:75.610923px;}
.fs0_c00359{font-size:77.700000px;}
.y0_c00359{bottom:0.000000px;}
.y12d_c00359{bottom:106.061655px;}
.y12c_c00359{bottom:107.214576px;}
.y12b_c00359{bottom:107.362845px;}
.y12a_c00359{bottom:107.647899px;}
.y129_c00359{bottom:109.055217px;}
.y128_c00359{bottom:109.248267px;}
.y127_c00359{bottom:109.624500px;}
.y126_c00359{bottom:150.884049px;}
.y125_c00359{bottom:152.006906px;}
.y124_c00359{bottom:152.461215px;}
.y123_c00359{bottom:152.730870px;}
.y122_c00359{bottom:154.070203px;}
.y121_c00359{bottom:154.379887px;}
.y120_c00359{bottom:155.281702px;}
.y11f_c00359{bottom:155.786232px;}
.yfd_c00359{bottom:156.503808px;}
.yfc_c00359{bottom:158.095068px;}
.yfb_c00359{bottom:158.666472px;}
.yfa_c00359{bottom:160.099428px;}
.yf9_c00359{bottom:160.722348px;}
.yf8_c00359{bottom:161.975772px;}
.yf7_c00359{bottom:162.528888px;}
.y11e_c00359{bottom:168.742981px;}
.y11d_c00359{bottom:169.266804px;}
.y11c_c00359{bottom:170.667866px;}
.y11b_c00359{bottom:171.462365px;}
.y11a_c00359{bottom:173.051001px;}
.y119_c00359{bottom:173.394558px;}
.yf6_c00359{bottom:175.193004px;}
.yf5_c00359{bottom:176.109252px;}
.yf4_c00359{bottom:176.714340px;}
.yf3_c00359{bottom:177.593676px;}
.yf2_c00359{bottom:178.451052px;}
.yf1_c00359{bottom:179.391420px;}
.yf0_c00359{bottom:179.677884px;}
.yef_c00359{bottom:180.466176px;}
.y118_c00359{bottom:186.921642px;}
.y117_c00359{bottom:187.311240px;}
.y116_c00359{bottom:188.325219px;}
.y115_c00359{bottom:188.776749px;}
.y114_c00359{bottom:190.093682px;}
.y113_c00359{bottom:190.633381px;}
.y112_c00359{bottom:191.430971px;}
.yee_c00359{bottom:193.022604px;}
.yed_c00359{bottom:193.575180px;}
.yec_c00359{bottom:194.084556px;}
.yeb_c00359{bottom:194.742624px;}
.yea_c00359{bottom:195.368364px;}
.ye9_c00359{bottom:195.608088px;}
.ye8_c00359{bottom:195.989388px;}
.ye7_c00359{bottom:196.154448px;}
.ye6_c00359{bottom:197.382000px;}
.ye5_c00359{bottom:198.409860px;}
.ye4_c00359{bottom:199.080444px;}
.ye3_c00359{bottom:199.798260px;}
.y111_c00359{bottom:203.709624px;}
.y110_c00359{bottom:204.346096px;}
.y10f_c00359{bottom:204.667059px;}
.y10e_c00359{bottom:205.523776px;}
.y10d_c00359{bottom:206.125464px;}
.y10c_c00359{bottom:207.051807px;}
.y10b_c00359{bottom:207.426976px;}
.y10a_c00359{bottom:208.192560px;}
.y109_c00359{bottom:208.713738px;}
.ye2_c00359{bottom:210.146652px;}
.ye1_c00359{bottom:211.226892px;}
.ye0_c00359{bottom:212.165232px;}
.ydf_c00359{bottom:212.981736px;}
.yde_c00359{bottom:213.495648px;}
.ydd_c00359{bottom:214.381320px;}
.ydc_c00359{bottom:214.888980px;}
.ydb_c00359{bottom:216.282852px;}
.yda_c00359{bottom:217.634232px;}
.y108_c00359{bottom:222.760485px;}
.y107_c00359{bottom:223.267960px;}
.y106_c00359{bottom:223.759499px;}
.y105_c00359{bottom:224.015952px;}
.y104_c00359{bottom:224.423926px;}
.y103_c00359{bottom:224.902766px;}
.y102_c00359{bottom:225.135351px;}
.y101_c00359{bottom:225.839304px;}
.y100_c00359{bottom:226.109375px;}
.yff_c00359{bottom:226.697200px;}
.yfe_c00359{bottom:226.803000px;}
.yd9_c00359{bottom:228.723048px;}
.yd8_c00359{bottom:229.877568px;}
.yd7_c00359{bottom:230.297544px;}
.yd6_c00359{bottom:231.237792px;}
.yd5_c00359{bottom:232.165260px;}
.yd4_c00359{bottom:232.702488px;}
.yd3_c00359{bottom:233.325000px;}
.yd2_c00359{bottom:278.484873px;}
.yd1_c00359{bottom:279.004789px;}
.yd0_c00359{bottom:280.403803px;}
.ycf_c00359{bottom:281.007853px;}
.yce_c00359{bottom:281.691772px;}
.ycd_c00359{bottom:283.052827px;}
.ycc_c00359{bottom:283.446006px;}
.ycb_c00359{bottom:284.140573px;}
.yca_c00359{bottom:285.090516px;}
.yc9_c00359{bottom:302.045620px;}
.yc8_c00359{bottom:302.996163px;}
.yc7_c00359{bottom:303.577653px;}
.yc6_c00359{bottom:304.600452px;}
.yc5_c00359{bottom:305.397372px;}
.yc4_c00359{bottom:305.824480px;}
.yc3_c00359{bottom:306.148167px;}
.yc2_c00359{bottom:307.494538px;}
.yc1_c00359{bottom:308.577702px;}
.yc0_c00359{bottom:335.815800px;}
.ybf_c00359{bottom:336.530809px;}
.ybe_c00359{bottom:338.003570px;}
.ybd_c00359{bottom:339.301165px;}
.ybc_c00359{bottom:339.633694px;}
.ybb_c00359{bottom:358.267393px;}
.yba_c00359{bottom:359.158761px;}
.yb9_c00359{bottom:359.762425px;}
.yb8_c00359{bottom:360.653907px;}
.yb7_c00359{bottom:361.463631px;}
.yb6_c00359{bottom:362.208288px;}
.yb5_c00359{bottom:363.319231px;}
.yb4_c00359{bottom:364.356426px;}
.yb3_c00359{bottom:365.469592px;}
.yb2_c00359{bottom:366.375274px;}
.yb1_c00359{bottom:384.763908px;}
.yb0_c00359{bottom:385.425510px;}
.yaf_c00359{bottom:385.872622px;}
.yae_c00359{bottom:387.200329px;}
.yad_c00359{bottom:387.529278px;}
.yac_c00359{bottom:388.326711px;}
.yab_c00359{bottom:389.760822px;}
.yaa_c00359{bottom:391.148313px;}
.ya9_c00359{bottom:391.991254px;}
.ya8_c00359{bottom:392.688657px;}
.ya7_c00359{bottom:394.655026px;}
.ya6_c00359{bottom:395.541510px;}
.ya5_c00359{bottom:407.996295px;}
.ya4_c00359{bottom:408.512085px;}
.ya3_c00359{bottom:410.470102px;}
.ya2_c00359{bottom:411.102235px;}
.ya1_c00359{bottom:412.083547px;}
.ya0_c00359{bottom:412.370623px;}
.y9f_c00359{bottom:413.127001px;}
.y9e_c00359{bottom:413.741457px;}
.y9d_c00359{bottom:414.952120px;}
.y9c_c00359{bottom:415.863720px;}
.y9b_c00359{bottom:416.602905px;}
.y9a_c00359{bottom:417.910855px;}
.y99_c00359{bottom:418.221925px;}
.y98_c00359{bottom:440.479104px;}
.y97_c00359{bottom:441.514906px;}
.y96_c00359{bottom:442.962135px;}
.y95_c00359{bottom:444.303216px;}
.y94_c00359{bottom:444.819906px;}
.y93_c00359{bottom:445.649217px;}
.y92_c00359{bottom:446.588209px;}
.y91_c00359{bottom:447.121836px;}
.y90_c00359{bottom:466.432111px;}
.y8f_c00359{bottom:466.929436px;}
.y8e_c00359{bottom:467.399743px;}
.y8d_c00359{bottom:468.391401px;}
.y8c_c00359{bottom:469.710267px;}
.y8b_c00359{bottom:469.951633px;}
.y8a_c00359{bottom:470.486920px;}
.y89_c00359{bottom:471.338358px;}
.y88_c00359{bottom:471.839929px;}
.y87_c00359{bottom:472.753497px;}
.y86_c00359{bottom:473.584500px;}
.y85_c00359{bottom:497.450616px;}
.y84_c00359{bottom:498.254208px;}
.y83_c00359{bottom:499.464060px;}
.y82_c00359{bottom:500.455068px;}
.y81_c00359{bottom:500.976132px;}
.y80_c00359{bottom:502.088352px;}
.y7f_c00359{bottom:503.854296px;}
.y7e_c00359{bottom:505.176000px;}
.y7d_c00359{bottom:531.763542px;}
.y7c_c00359{bottom:532.954791px;}
.y7b_c00359{bottom:535.856591px;}
.y7a_c00359{bottom:536.672528px;}
.y79_c00359{bottom:537.291899px;}
.y78_c00359{bottom:552.120390px;}
.y77_c00359{bottom:552.383067px;}
.y76_c00359{bottom:553.415133px;}
.y75_c00359{bottom:554.246277px;}
.y74_c00359{bottom:554.746177px;}
.y73_c00359{bottom:556.256976px;}
.y72_c00359{bottom:557.060169px;}
.y71_c00359{bottom:557.620029px;}
.y70_c00359{bottom:558.192639px;}
.y6f_c00359{bottom:559.176640px;}
.y6e_c00359{bottom:559.705176px;}
.y6d_c00359{bottom:573.889527px;}
.y6c_c00359{bottom:574.538301px;}
.y6b_c00359{bottom:575.567151px;}
.y6a_c00359{bottom:575.894929px;}
.y69_c00359{bottom:576.408528px;}
.y68_c00359{bottom:577.738310px;}
.y67_c00359{bottom:578.414558px;}
.y66_c00359{bottom:578.834648px;}
.y65_c00359{bottom:579.892026px;}
.y64_c00359{bottom:580.405311px;}
.y63_c00359{bottom:581.502846px;}
.y62_c00359{bottom:582.390649px;}
.y61_c00359{bottom:595.938372px;}
.y60_c00359{bottom:596.646854px;}
.y5f_c00359{bottom:597.072273px;}
.y5e_c00359{bottom:597.761517px;}
.y5d_c00359{bottom:598.390940px;}
.y5c_c00359{bottom:599.268312px;}
.y5b_c00359{bottom:599.584861px;}
.y5a_c00359{bottom:601.378908px;}
.y59_c00359{bottom:601.967205px;}
.y58_c00359{bottom:602.928282px;}
.y57_c00359{bottom:603.641609px;}
.y56_c00359{bottom:604.252164px;}
.y55_c00359{bottom:604.528500px;}
.y54_c00359{bottom:624.713760px;}
.y53_c00359{bottom:625.008660px;}
.y52_c00359{bottom:626.231310px;}
.y51_c00359{bottom:626.820210px;}
.y50_c00359{bottom:628.024500px;}
.y4f_c00359{bottom:643.857258px;}
.y4e_c00359{bottom:647.323432px;}
.y4d_c00359{bottom:649.824711px;}
.y4c_c00359{bottom:650.416117px;}
.y4b_c00359{bottom:668.249143px;}
.y4a_c00359{bottom:669.113959px;}
.y49_c00359{bottom:670.090804px;}
.y48_c00359{bottom:671.073157px;}
.y47_c00359{bottom:671.880302px;}
.y46_c00359{bottom:672.327342px;}
.y45_c00359{bottom:673.844110px;}
.y44_c00359{bottom:674.436249px;}
.y43_c00359{bottom:675.175066px;}
.y42_c00359{bottom:676.068565px;}
.y41_c00359{bottom:690.188095px;}
.y40_c00359{bottom:691.429668px;}
.y3f_c00359{bottom:692.926302px;}
.y3e_c00359{bottom:694.017339px;}
.y3d_c00359{bottom:695.809490px;}
.y3c_c00359{bottom:696.451853px;}
.y3b_c00359{bottom:697.733391px;}
.y3a_c00359{bottom:698.816783px;}
.y39_c00359{bottom:699.292804px;}
.y38_c00359{bottom:713.311575px;}
.y37_c00359{bottom:714.387623px;}
.y36_c00359{bottom:715.231508px;}
.y35_c00359{bottom:716.331903px;}
.y34_c00359{bottom:716.769181px;}
.y33_c00359{bottom:717.239758px;}
.y32_c00359{bottom:717.535381px;}
.y31_c00359{bottom:718.620940px;}
.y30_c00359{bottom:718.976046px;}
.y2f_c00359{bottom:719.547840px;}
.y2e_c00359{bottom:721.050583px;}
.y2d_c00359{bottom:721.434372px;}
.y2c_c00359{bottom:736.478289px;}
.y2b_c00359{bottom:737.231483px;}
.y2a_c00359{bottom:738.052888px;}
.y29_c00359{bottom:738.461500px;}
.y28_c00359{bottom:739.173155px;}
.y27_c00359{bottom:740.196878px;}
.y26_c00359{bottom:740.596539px;}
.y25_c00359{bottom:740.769454px;}
.y24_c00359{bottom:741.826557px;}
.y23_c00359{bottom:742.941621px;}
.y22_c00359{bottom:743.248003px;}
.y21_c00359{bottom:743.833024px;}
.y20_c00359{bottom:744.115998px;}
.y1f_c00359{bottom:759.041562px;}
.y1e_c00359{bottom:760.207815px;}
.y1d_c00359{bottom:760.718443px;}
.y1c_c00359{bottom:761.996496px;}
.y1b_c00359{bottom:762.801983px;}
.y1a_c00359{bottom:764.038551px;}
.y19_c00359{bottom:764.718472px;}
.y18_c00359{bottom:765.870700px;}
.y17_c00359{bottom:766.259257px;}
.y16_c00359{bottom:767.070991px;}
.y15_c00359{bottom:781.534066px;}
.y14_c00359{bottom:781.991843px;}
.y13_c00359{bottom:782.487562px;}
.y12_c00359{bottom:783.029259px;}
.y11_c00359{bottom:784.274603px;}
.y10_c00359{bottom:785.279812px;}
.yf_c00359{bottom:785.579437px;}
.ye_c00359{bottom:786.367872px;}
.yd_c00359{bottom:786.987522px;}
.yc_c00359{bottom:787.240405px;}
.yb_c00359{bottom:788.989017px;}
.ya_c00359{bottom:789.210000px;}
.y9_c00359{bottom:812.250000px;}
.y8_c00359{bottom:812.802000px;}
.y7_c00359{bottom:813.135000px;}
.y6_c00359{bottom:813.586500px;}
.y5_c00359{bottom:813.816000px;}
.y4_c00359{bottom:814.113000px;}
.y3_c00359{bottom:814.306500px;}
.y2_c00359{bottom:814.861500px;}
.y1_c00359{bottom:834.873000px;}
.h1c_c00359{height:21.005081px;}
.h19_c00359{height:40.955917px;}
.h15_c00359{height:47.263606px;}
.h1a_c00359{height:48.306979px;}
.h10_c00359{height:48.308717px;}
.h18_c00359{height:49.364211px;}
.h14_c00359{height:50.414513px;}
.h16_c00359{height:52.515118px;}
.h17_c00359{height:58.816932px;}
.h1b_c00359{height:59.858648px;}
.h11_c00359{height:60.910991px;}
.h4_c00359{height:61.958951px;}
.h13_c00359{height:64.061560px;}
.h3_c00359{height:67.200000px;}
.h8_c00359{height:67.209710px;}
.ha_c00359{height:67.213439px;}
.h6_c00359{height:68.259861px;}
.hb_c00359{height:68.262318px;}
.h5_c00359{height:69.310013px;}
.he_c00359{height:70.362697px;}
.h7_c00359{height:71.410317px;}
.hc_c00359{height:71.412887px;}
.hf_c00359{height:71.420560px;}
.h12_c00359{height:72.463076px;}
.hd_c00359{height:74.563455px;}
.h9_c00359{height:75.610923px;}
.h2_c00359{height:77.700000px;}
.h0_c00359{height:1008.450000px;}
.h1_c00359{height:1008.750000px;}
.w0_c00359{width:696.000000px;}
.x0_c00359{left:0.000000px;}
.x97_c00359{left:86.053608px;}
.x92_c00359{left:90.568524px;}
.x98_c00359{left:112.648200px;}
.x93_c00359{left:137.182944px;}
.x82_c00359{left:141.508220px;}
.x65_c00359{left:145.604936px;}
.x51_c00359{left:146.632874px;}
.x3d_c00359{left:149.115826px;}
.x2e_c00359{left:150.692778px;}
.x1a_c00359{left:151.785192px;}
.xe_c00359{left:157.162500px;}
.x8a_c00359{left:158.411639px;}
.x7b_c00359{left:160.895580px;}
.x6e_c00359{left:162.288000px;}
.x9c_c00359{left:163.714704px;}
.x9e_c00359{left:165.754272px;}
.x49_c00359{left:167.160000px;}
.x23_c00359{left:168.246016px;}
.xf_c00359{left:170.161500px;}
.x2f_c00359{left:172.032921px;}
.x36_c00359{left:173.908597px;}
.x8e_c00359{left:174.948476px;}
.x5c_c00359{left:176.913894px;}
.x75_c00359{left:178.747330px;}
.x69_c00359{left:179.818500px;}
.x44_c00359{left:185.818914px;}
.x6_c00359{left:190.216500px;}
.x52_c00359{left:193.359374px;}
.x1b_c00359{left:196.886427px;}
.x3e_c00359{left:198.761985px;}
.x76_c00359{left:200.988721px;}
.x24_c00359{left:202.659016px;}
.x66_c00359{left:205.431264px;}
.x8b_c00359{left:206.488343px;}
.x8c_c00359{left:213.360360px;}
.x1c_c00359{left:218.507070px;}
.x25_c00359{left:220.681516px;}
.x9f_c00359{left:224.361504px;}
.x37_c00359{left:228.105344px;}
.x94_c00359{left:233.304924px;}
.x5d_c00359{left:234.784589px;}
.x4a_c00359{left:236.838000px;}
.x7_c00359{left:240.694500px;}
.x7c_c00359{left:249.843297px;}
.x53_c00359{left:251.124374px;}
.x6f_c00359{left:254.107500px;}
.x30_c00359{left:255.486993px;}
.x8_c00359{left:258.243000px;}
.x83_c00359{left:260.383934px;}
.x9d_c00359{left:262.556520px;}
.x5e_c00359{left:268.475871px;}
.x10_c00359{left:273.021000px;}
.x77_c00359{left:274.708239px;}
.x90_c00359{left:276.841500px;}
.x54_c00359{left:278.139374px;}
.x95_c00359{left:279.170916px;}
.x70_c00359{left:280.506000px;}
.x1d_c00359{left:282.489973px;}
.x9_c00359{left:285.249000px;}
.x26_c00359{left:286.273516px;}
.x11_c00359{left:287.896500px;}
.x7d_c00359{left:289.450776px;}
.x38_c00359{left:292.192579px;}
.x91_c00359{left:294.340500px;}
.x78_c00359{left:296.216187px;}
.x99_c00359{left:297.671880px;}
.x5f_c00359{left:301.417125px;}
.xa_c00359{left:306.072000px;}
.x6a_c00359{left:308.470500px;}
.x96_c00359{left:311.514528px;}
.x86_c00359{left:312.709499px;}
.x9a_c00359{left:316.519512px;}
.x4b_c00359{left:318.384000px;}
.x1e_c00359{left:320.278836px;}
.x12_c00359{left:324.346500px;}
.x67_c00359{left:326.330279px;}
.x8f_c00359{left:329.426169px;}
.x55_c00359{left:333.790874px;}
.x9b_c00359{left:336.979536px;}
.x45_c00359{left:342.132066px;}
.xb0_c00359{left:344.577000px;}
.xb_c00359{left:347.068500px;}
.x27_c00359{left:348.456017px;}
.x79_c00359{left:352.109886px;}
.x71_c00359{left:353.491500px;}
.x6b_c00359{left:354.813000px;}
.x56_c00359{left:355.900873px;}
.x3f_c00359{left:357.007807px;}
.x28_c00359{left:358.627517px;}
.x87_c00359{left:360.992322px;}
.x72_c00359{left:366.195000px;}
.x31_c00359{left:367.335606px;}
.x7e_c00359{left:368.845762px;}
.x13_c00359{left:370.725000px;}
.x68_c00359{left:375.996576px;}
.xc_c00359{left:377.308500px;}
.x40_c00359{left:381.803874px;}
.x1_c00359{left:382.860000px;}
.xa8_c00359{left:386.406954px;}
.x14_c00359{left:388.350000px;}
.x47_c00359{left:391.527000px;}
.x88_c00359{left:393.392871px;}
.x7f_c00359{left:401.705254px;}
.x2_c00359{left:404.730000px;}
.xa7_c00359{left:408.010671px;}
.x32_c00359{left:409.934892px;}
.x4c_c00359{left:412.807500px;}
.x39_c00359{left:413.951883px;}
.x6c_c00359{left:417.816000px;}
.xd_c00359{left:427.537500px;}
.x4d_c00359{left:429.468000px;}
.x1f_c00359{left:433.691898px;}
.x3_c00359{left:435.780000px;}
.x60_c00359{left:437.500784px;}
.xa4_c00359{left:438.769967px;}
.x8d_c00359{left:440.360786px;}
.x29_c00359{left:442.356017px;}
.xac_c00359{left:444.287021px;}
.x15_c00359{left:447.480000px;}
.x48_c00359{left:451.741500px;}
.xb1_c00359{left:454.119000px;}
.x7a_c00359{left:455.549054px;}
.x80_c00359{left:456.853065px;}
.x57_c00359{left:461.481374px;}
.x61_c00359{left:466.891395px;}
.x3a_c00359{left:468.510103px;}
.xa9_c00359{left:474.204983px;}
.x4e_c00359{left:475.645500px;}
.x41_c00359{left:481.243191px;}
.x4_c00359{left:483.030000px;}
.x2a_c00359{left:484.218016px;}
.x58_c00359{left:488.512874px;}
.x89_c00359{left:493.615262px;}
.x33_c00359{left:495.355438px;}
.xa5_c00359{left:500.678234px;}
.x6d_c00359{left:501.709500px;}
.x20_c00359{left:504.723199px;}
.x59_c00359{left:505.764374px;}
.x2b_c00359{left:508.254016px;}
.xaa_c00359{left:510.348923px;}
.x73_c00359{left:512.554500px;}
.x62_c00359{left:515.769248px;}
.xa0_c00359{left:517.231500px;}
.x16_c00359{left:520.735500px;}
.xad_c00359{left:527.671003px;}
.xa6_c00359{left:529.363796px;}
.x21_c00359{left:533.083215px;}
.x42_c00359{left:535.527273px;}
.x74_c00359{left:538.729500px;}
.xa1_c00359{left:541.230000px;}
.x34_c00359{left:542.259648px;}
.x3b_c00359{left:543.308278px;}
.x4f_c00359{left:545.049000px;}
.xae_c00359{left:547.422489px;}
.x5_c00359{left:549.450000px;}
.x17_c00359{left:552.600000px;}
.x2c_c00359{left:556.572017px;}
.x46_c00359{left:558.734238px;}
.x5a_c00359{left:559.914374px;}
.x84_c00359{left:562.968177px;}
.x50_c00359{left:567.439500px;}
.x81_c00359{left:569.484015px;}
.xab_c00359{left:574.053017px;}
.x63_c00359{left:576.485556px;}
.x18_c00359{left:581.760000px;}
.x43_c00359{left:583.574457px;}
.xa2_c00359{left:585.229500px;}
.x85_c00359{left:590.523555px;}
.x64_c00359{left:591.969155px;}
.x5b_c00359{left:594.060374px;}
.xaf_c00359{left:596.262017px;}
.x22_c00359{left:597.891118px;}
.x2d_c00359{left:600.877516px;}
.x35_c00359{left:602.026128px;}
.x3c_c00359{left:605.397616px;}
.x19_c00359{left:608.688000px;}
.xa3_c00359{left:615.081000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
.fs1a_c00359{font-size:18.671183pt;}
.fs17_c00359{font-size:36.405259pt;}
.fs13_c00359{font-size:42.012094pt;}
.fs18_c00359{font-size:42.939537pt;}
.fse_c00359{font-size:42.941082pt;}
.fs16_c00359{font-size:43.879298pt;}
.fs12_c00359{font-size:44.812901pt;}
.fs14_c00359{font-size:46.680105pt;}
.fs15_c00359{font-size:52.281717pt;}
.fs19_c00359{font-size:53.207687pt;}
.fsf_c00359{font-size:54.143104pt;}
.fs2_c00359{font-size:55.074623pt;}
.fs11_c00359{font-size:56.943609pt;}
.fs1_c00359{font-size:59.733333pt;}
.fs6_c00359{font-size:59.741964pt;}
.fs8_c00359{font-size:59.745279pt;}
.fs4_c00359{font-size:60.675432pt;}
.fs9_c00359{font-size:60.677616pt;}
.fs3_c00359{font-size:61.608901pt;}
.fsc_c00359{font-size:62.544620pt;}
.fs5_c00359{font-size:63.475837pt;}
.fsa_c00359{font-size:63.478121pt;}
.fsd_c00359{font-size:63.484942pt;}
.fs10_c00359{font-size:64.411623pt;}
.fsb_c00359{font-size:66.278627pt;}
.fs7_c00359{font-size:67.209710pt;}
.fs0_c00359{font-size:69.066667pt;}
.y0_c00359{bottom:0.000000pt;}
.y12d_c00359{bottom:94.277027pt;}
.y12c_c00359{bottom:95.301845pt;}
.y12b_c00359{bottom:95.433640pt;}
.y12a_c00359{bottom:95.687021pt;}
.y129_c00359{bottom:96.937971pt;}
.y128_c00359{bottom:97.109571pt;}
.y127_c00359{bottom:97.444000pt;}
.y126_c00359{bottom:134.119155pt;}
.y125_c00359{bottom:135.117249pt;}
.y124_c00359{bottom:135.521080pt;}
.y123_c00359{bottom:135.760773pt;}
.y122_c00359{bottom:136.951292pt;}
.y121_c00359{bottom:137.226567pt;}
.y120_c00359{bottom:138.028180pt;}
.y11f_c00359{bottom:138.476651pt;}
.yfd_c00359{bottom:139.114496pt;}
.yfc_c00359{bottom:140.528949pt;}
.yfb_c00359{bottom:141.036864pt;}
.yfa_c00359{bottom:142.310603pt;}
.yf9_c00359{bottom:142.864309pt;}
.yf8_c00359{bottom:143.978464pt;}
.yf7_c00359{bottom:144.470123pt;}
.y11e_c00359{bottom:149.993761pt;}
.y11d_c00359{bottom:150.459381pt;}
.y11c_c00359{bottom:151.704769pt;}
.y11b_c00359{bottom:152.410991pt;}
.y11a_c00359{bottom:153.823112pt;}
.y119_c00359{bottom:154.128496pt;}
.yf6_c00359{bottom:155.727115pt;}
.yf5_c00359{bottom:156.541557pt;}
.yf4_c00359{bottom:157.079413pt;}
.yf3_c00359{bottom:157.861045pt;}
.yf2_c00359{bottom:158.623157pt;}
.yf1_c00359{bottom:159.459040pt;}
.yf0_c00359{bottom:159.713675pt;}
.yef_c00359{bottom:160.414379pt;}
.y118_c00359{bottom:166.152571pt;}
.y117_c00359{bottom:166.498880pt;}
.y116_c00359{bottom:167.400195pt;}
.y115_c00359{bottom:167.801555pt;}
.y114_c00359{bottom:168.972161pt;}
.y113_c00359{bottom:169.451895pt;}
.y112_c00359{bottom:170.160863pt;}
.yee_c00359{bottom:171.575648pt;}
.yed_c00359{bottom:172.066827pt;}
.yec_c00359{bottom:172.519605pt;}
.yeb_c00359{bottom:173.104555pt;}
.yea_c00359{bottom:173.660768pt;}
.ye9_c00359{bottom:173.873856pt;}
.ye8_c00359{bottom:174.212789pt;}
.ye7_c00359{bottom:174.359509pt;}
.ye6_c00359{bottom:175.450667pt;}
.ye5_c00359{bottom:176.364320pt;}
.ye4_c00359{bottom:176.960395pt;}
.ye3_c00359{bottom:177.598453pt;}
.y111_c00359{bottom:181.075221pt;}
.y110_c00359{bottom:181.640975pt;}
.y10f_c00359{bottom:181.926275pt;}
.y10e_c00359{bottom:182.687801pt;}
.y10d_c00359{bottom:183.222635pt;}
.y10c_c00359{bottom:184.046051pt;}
.y10b_c00359{bottom:184.379535pt;}
.y10a_c00359{bottom:185.060053pt;}
.y109_c00359{bottom:185.523323pt;}
.ye2_c00359{bottom:186.797024pt;}
.ye1_c00359{bottom:187.757237pt;}
.ye0_c00359{bottom:188.591317pt;}
.ydf_c00359{bottom:189.317099pt;}
.yde_c00359{bottom:189.773909pt;}
.ydd_c00359{bottom:190.561173pt;}
.ydc_c00359{bottom:191.012427pt;}
.ydb_c00359{bottom:192.251424pt;}
.yda_c00359{bottom:193.452651pt;}
.y108_c00359{bottom:198.009320pt;}
.y107_c00359{bottom:198.460409pt;}
.y106_c00359{bottom:198.897332pt;}
.y105_c00359{bottom:199.125291pt;}
.y104_c00359{bottom:199.487935pt;}
.y103_c00359{bottom:199.913569pt;}
.y102_c00359{bottom:200.120312pt;}
.y101_c00359{bottom:200.746048pt;}
.y100_c00359{bottom:200.986111pt;}
.yff_c00359{bottom:201.508623pt;}
.yfe_c00359{bottom:201.602667pt;}
.yd9_c00359{bottom:203.309376pt;}
.yd8_c00359{bottom:204.335616pt;}
.yd7_c00359{bottom:204.708928pt;}
.yd6_c00359{bottom:205.544704pt;}
.yd5_c00359{bottom:206.369120pt;}
.yd4_c00359{bottom:206.846656pt;}
.yd3_c00359{bottom:207.400000pt;}
.yd2_c00359{bottom:247.542109pt;}
.yd1_c00359{bottom:248.004257pt;}
.yd0_c00359{bottom:249.247825pt;}
.ycf_c00359{bottom:249.784759pt;}
.yce_c00359{bottom:250.392687pt;}
.ycd_c00359{bottom:251.602513pt;}
.ycc_c00359{bottom:251.952005pt;}
.ycb_c00359{bottom:252.569399pt;}
.yca_c00359{bottom:253.413792pt;}
.yc9_c00359{bottom:268.484996pt;}
.yc8_c00359{bottom:269.329923pt;}
.yc7_c00359{bottom:269.846803pt;}
.yc6_c00359{bottom:270.755957pt;}
.yc5_c00359{bottom:271.464331pt;}
.yc4_c00359{bottom:271.843983pt;}
.yc3_c00359{bottom:272.131704pt;}
.yc2_c00359{bottom:273.328479pt;}
.yc1_c00359{bottom:274.291291pt;}
.yc0_c00359{bottom:298.502933pt;}
.ybf_c00359{bottom:299.138497pt;}
.ybe_c00359{bottom:300.447617pt;}
.ybd_c00359{bottom:301.601036pt;}
.ybc_c00359{bottom:301.896617pt;}
.ybb_c00359{bottom:318.459905pt;}
.yba_c00359{bottom:319.252232pt;}
.yb9_c00359{bottom:319.788823pt;}
.yb8_c00359{bottom:320.581251pt;}
.yb7_c00359{bottom:321.301005pt;}
.yb6_c00359{bottom:321.962923pt;}
.yb5_c00359{bottom:322.950428pt;}
.yb4_c00359{bottom:323.872379pt;}
.yb3_c00359{bottom:324.861860pt;}
.yb2_c00359{bottom:325.666911pt;}
.yb1_c00359{bottom:342.012363pt;}
.yb0_c00359{bottom:342.600453pt;}
.yaf_c00359{bottom:342.997887pt;}
.yae_c00359{bottom:344.178071pt;}
.yad_c00359{bottom:344.470469pt;}
.yac_c00359{bottom:345.179299pt;}
.yab_c00359{bottom:346.454064pt;}
.yaa_c00359{bottom:347.687389pt;}
.ya9_c00359{bottom:348.436671pt;}
.ya8_c00359{bottom:349.056584pt;}
.ya7_c00359{bottom:350.804468pt;}
.ya6_c00359{bottom:351.592453pt;}
.ya5_c00359{bottom:362.663373pt;}
.ya4_c00359{bottom:363.121853pt;}
.ya3_c00359{bottom:364.862313pt;}
.ya2_c00359{bottom:365.424209pt;}
.ya1_c00359{bottom:366.296487pt;}
.ya0_c00359{bottom:366.551665pt;}
.y9f_c00359{bottom:367.224001pt;}
.y9e_c00359{bottom:367.770184pt;}
.y9d_c00359{bottom:368.846329pt;}
.y9c_c00359{bottom:369.656640pt;}
.y9b_c00359{bottom:370.313693pt;}
.y9a_c00359{bottom:371.476316pt;}
.y99_c00359{bottom:371.752823pt;}
.y98_c00359{bottom:391.536981pt;}
.y97_c00359{bottom:392.457695pt;}
.y96_c00359{bottom:393.744120pt;}
.y95_c00359{bottom:394.936192pt;}
.y94_c00359{bottom:395.395472pt;}
.y93_c00359{bottom:396.132637pt;}
.y92_c00359{bottom:396.967297pt;}
.y91_c00359{bottom:397.441632pt;}
.y90_c00359{bottom:414.606321pt;}
.y8f_c00359{bottom:415.048388pt;}
.y8e_c00359{bottom:415.466439pt;}
.y8d_c00359{bottom:416.347912pt;}
.y8c_c00359{bottom:417.520237pt;}
.y8b_c00359{bottom:417.734785pt;}
.y8a_c00359{bottom:418.210596pt;}
.y89_c00359{bottom:418.967429pt;}
.y88_c00359{bottom:419.413271pt;}
.y87_c00359{bottom:420.225331pt;}
.y86_c00359{bottom:420.964000pt;}
.y85_c00359{bottom:442.178325pt;}
.y84_c00359{bottom:442.892629pt;}
.y83_c00359{bottom:443.968053pt;}
.y82_c00359{bottom:444.848949pt;}
.y81_c00359{bottom:445.312117pt;}
.y80_c00359{bottom:446.300757pt;}
.y7f_c00359{bottom:447.870485pt;}
.y7e_c00359{bottom:449.045333pt;}
.y7d_c00359{bottom:472.678704pt;}
.y7c_c00359{bottom:473.737592pt;}
.y7b_c00359{bottom:476.316969pt;}
.y7a_c00359{bottom:477.042247pt;}
.y79_c00359{bottom:477.592799pt;}
.y78_c00359{bottom:490.773680pt;}
.y77_c00359{bottom:491.007171pt;}
.y76_c00359{bottom:491.924563pt;}
.y75_c00359{bottom:492.663357pt;}
.y74_c00359{bottom:493.107713pt;}
.y73_c00359{bottom:494.450645pt;}
.y72_c00359{bottom:495.164595pt;}
.y71_c00359{bottom:495.662248pt;}
.y70_c00359{bottom:496.171235pt;}
.y6f_c00359{bottom:497.045903pt;}
.y6e_c00359{bottom:497.515712pt;}
.y6d_c00359{bottom:510.124024pt;}
.y6c_c00359{bottom:510.700712pt;}
.y6b_c00359{bottom:511.615245pt;}
.y6a_c00359{bottom:511.906604pt;}
.y69_c00359{bottom:512.363136pt;}
.y68_c00359{bottom:513.545164pt;}
.y67_c00359{bottom:514.146273pt;}
.y66_c00359{bottom:514.519687pt;}
.y65_c00359{bottom:515.459579pt;}
.y64_c00359{bottom:515.915832pt;}
.y63_c00359{bottom:516.891419pt;}
.y62_c00359{bottom:517.680577pt;}
.y61_c00359{bottom:529.722997pt;}
.y60_c00359{bottom:530.352759pt;}
.y5f_c00359{bottom:530.730909pt;}
.y5e_c00359{bottom:531.343571pt;}
.y5d_c00359{bottom:531.903057pt;}
.y5c_c00359{bottom:532.682944pt;}
.y5b_c00359{bottom:532.964321pt;}
.y5a_c00359{bottom:534.559029pt;}
.y59_c00359{bottom:535.081960pt;}
.y58_c00359{bottom:535.936251pt;}
.y57_c00359{bottom:536.570319pt;}
.y56_c00359{bottom:537.113035pt;}
.y55_c00359{bottom:537.358667pt;}
.y54_c00359{bottom:555.301120pt;}
.y53_c00359{bottom:555.563253pt;}
.y52_c00359{bottom:556.650053pt;}
.y51_c00359{bottom:557.173520pt;}
.y50_c00359{bottom:558.244000pt;}
.y4f_c00359{bottom:572.317563pt;}
.y4e_c00359{bottom:575.398607pt;}
.y4d_c00359{bottom:577.621965pt;}
.y4c_c00359{bottom:578.147660pt;}
.y4b_c00359{bottom:593.999239pt;}
.y4a_c00359{bottom:594.767964pt;}
.y49_c00359{bottom:595.636271pt;}
.y48_c00359{bottom:596.509473pt;}
.y47_c00359{bottom:597.226935pt;}
.y46_c00359{bottom:597.624304pt;}
.y45_c00359{bottom:598.972543pt;}
.y44_c00359{bottom:599.498888pt;}
.y43_c00359{bottom:600.155615pt;}
.y42_c00359{bottom:600.949836pt;}
.y41_c00359{bottom:613.500529pt;}
.y40_c00359{bottom:614.604149pt;}
.y3f_c00359{bottom:615.934491pt;}
.y3e_c00359{bottom:616.904301pt;}
.y3d_c00359{bottom:618.497324pt;}
.y3c_c00359{bottom:619.068313pt;}
.y3b_c00359{bottom:620.207459pt;}
.y3a_c00359{bottom:621.170473pt;}
.y39_c00359{bottom:621.593604pt;}
.y38_c00359{bottom:634.054733pt;}
.y37_c00359{bottom:635.011220pt;}
.y36_c00359{bottom:635.761340pt;}
.y35_c00359{bottom:636.739469pt;}
.y34_c00359{bottom:637.128161pt;}
.y33_c00359{bottom:637.546452pt;}
.y32_c00359{bottom:637.809228pt;}
.y31_c00359{bottom:638.774169pt;}
.y30_c00359{bottom:639.089819pt;}
.y2f_c00359{bottom:639.598080pt;}
.y2e_c00359{bottom:640.933852pt;}
.y2d_c00359{bottom:641.274997pt;}
.y2c_c00359{bottom:654.647368pt;}
.y2b_c00359{bottom:655.316873pt;}
.y2a_c00359{bottom:656.047012pt;}
.y29_c00359{bottom:656.410223pt;}
.y28_c00359{bottom:657.042804pt;}
.y27_c00359{bottom:657.952780pt;}
.y26_c00359{bottom:658.308035pt;}
.y25_c00359{bottom:658.461737pt;}
.y24_c00359{bottom:659.401384pt;}
.y23_c00359{bottom:660.392552pt;}
.y22_c00359{bottom:660.664892pt;}
.y21_c00359{bottom:661.184911pt;}
.y20_c00359{bottom:661.436443pt;}
.y1f_c00359{bottom:674.703611pt;}
.y1e_c00359{bottom:675.740280pt;}
.y1d_c00359{bottom:676.194172pt;}
.y1c_c00359{bottom:677.330219pt;}
.y1b_c00359{bottom:678.046207pt;}
.y1a_c00359{bottom:679.145379pt;}
.y19_c00359{bottom:679.749753pt;}
.y18_c00359{bottom:680.773956pt;}
.y17_c00359{bottom:681.119340pt;}
.y16_c00359{bottom:681.840881pt;}
.y15_c00359{bottom:694.696948pt;}
.y14_c00359{bottom:695.103860pt;}
.y13_c00359{bottom:695.544500pt;}
.y12_c00359{bottom:696.026008pt;}
.y11_c00359{bottom:697.132980pt;}
.y10_c00359{bottom:698.026500pt;}
.yf_c00359{bottom:698.292833pt;}
.ye_c00359{bottom:698.993664pt;}
.yd_c00359{bottom:699.544464pt;}
.yc_c00359{bottom:699.769249pt;}
.yb_c00359{bottom:701.323571pt;}
.ya_c00359{bottom:701.520000pt;}
.y9_c00359{bottom:722.000000pt;}
.y8_c00359{bottom:722.490667pt;}
.y7_c00359{bottom:722.786667pt;}
.y6_c00359{bottom:723.188000pt;}
.y5_c00359{bottom:723.392000pt;}
.y4_c00359{bottom:723.656000pt;}
.y3_c00359{bottom:723.828000pt;}
.y2_c00359{bottom:724.321333pt;}
.y1_c00359{bottom:742.109333pt;}
.h1c_c00359{height:18.671183pt;}
.h19_c00359{height:36.405259pt;}
.h15_c00359{height:42.012094pt;}
.h1a_c00359{height:42.939537pt;}
.h10_c00359{height:42.941082pt;}
.h18_c00359{height:43.879298pt;}
.h14_c00359{height:44.812901pt;}
.h16_c00359{height:46.680105pt;}
.h17_c00359{height:52.281717pt;}
.h1b_c00359{height:53.207687pt;}
.h11_c00359{height:54.143104pt;}
.h4_c00359{height:55.074623pt;}
.h13_c00359{height:56.943609pt;}
.h3_c00359{height:59.733333pt;}
.h8_c00359{height:59.741964pt;}
.ha_c00359{height:59.745279pt;}
.h6_c00359{height:60.675432pt;}
.hb_c00359{height:60.677616pt;}
.h5_c00359{height:61.608901pt;}
.he_c00359{height:62.544620pt;}
.h7_c00359{height:63.475837pt;}
.hc_c00359{height:63.478121pt;}
.hf_c00359{height:63.484942pt;}
.h12_c00359{height:64.411623pt;}
.hd_c00359{height:66.278627pt;}
.h9_c00359{height:67.209710pt;}
.h2_c00359{height:69.066667pt;}
.h0_c00359{height:896.400000pt;}
.h1_c00359{height:896.666667pt;}
.w0_c00359{width:618.666667pt;}
.x0_c00359{left:0.000000pt;}
.x97_c00359{left:76.492096pt;}
.x92_c00359{left:80.505355pt;}
.x98_c00359{left:100.131733pt;}
.x93_c00359{left:121.940395pt;}
.x82_c00359{left:125.785084pt;}
.x65_c00359{left:129.426609pt;}
.x51_c00359{left:130.340332pt;}
.x3d_c00359{left:132.547401pt;}
.x2e_c00359{left:133.949136pt;}
.x1a_c00359{left:134.920171pt;}
.xe_c00359{left:139.700000pt;}
.x8a_c00359{left:140.810345pt;}
.x7b_c00359{left:143.018293pt;}
.x6e_c00359{left:144.256000pt;}
.x9c_c00359{left:145.524181pt;}
.x9e_c00359{left:147.337131pt;}
.x49_c00359{left:148.586667pt;}
.x23_c00359{left:149.552015pt;}
.xf_c00359{left:151.254667pt;}
.x2f_c00359{left:152.918152pt;}
.x36_c00359{left:154.585420pt;}
.x8e_c00359{left:155.509756pt;}
.x5c_c00359{left:157.256795pt;}
.x75_c00359{left:158.886516pt;}
.x69_c00359{left:159.838667pt;}
.x44_c00359{left:165.172368pt;}
.x6_c00359{left:169.081333pt;}
.x52_c00359{left:171.874999pt;}
.x1b_c00359{left:175.010157pt;}
.x3e_c00359{left:176.677320pt;}
.x76_c00359{left:178.656641pt;}
.x24_c00359{left:180.141348pt;}
.x66_c00359{left:182.605568pt;}
.x8b_c00359{left:183.545193pt;}
.x8c_c00359{left:189.653653pt;}
.x1c_c00359{left:194.228507pt;}
.x25_c00359{left:196.161348pt;}
.x9f_c00359{left:199.432448pt;}
.x37_c00359{left:202.760305pt;}
.x94_c00359{left:207.382155pt;}
.x5d_c00359{left:208.697412pt;}
.x4a_c00359{left:210.522667pt;}
.x7_c00359{left:213.950667pt;}
.x7c_c00359{left:222.082931pt;}
.x53_c00359{left:223.221665pt;}
.x6f_c00359{left:225.873333pt;}
.x30_c00359{left:227.099549pt;}
.x8_c00359{left:229.549333pt;}
.x83_c00359{left:231.452385pt;}
.x9d_c00359{left:233.383573pt;}
.x5e_c00359{left:238.645219pt;}
.x10_c00359{left:242.685333pt;}
.x77_c00359{left:244.185101pt;}
.x90_c00359{left:246.081333pt;}
.x54_c00359{left:247.234999pt;}
.x95_c00359{left:248.151925pt;}
.x70_c00359{left:249.338667pt;}
.x1d_c00359{left:251.102199pt;}
.x9_c00359{left:253.554667pt;}
.x26_c00359{left:254.465348pt;}
.x11_c00359{left:255.908000pt;}
.x7d_c00359{left:257.289579pt;}
.x38_c00359{left:259.726737pt;}
.x91_c00359{left:261.636000pt;}
.x78_c00359{left:263.303277pt;}
.x99_c00359{left:264.597227pt;}
.x5f_c00359{left:267.926333pt;}
.xa_c00359{left:272.064000pt;}
.x6a_c00359{left:274.196000pt;}
.x96_c00359{left:276.901803pt;}
.x86_c00359{left:277.963999pt;}
.x9a_c00359{left:281.350677pt;}
.x4b_c00359{left:283.008000pt;}
.x1e_c00359{left:284.692299pt;}
.x12_c00359{left:288.308000pt;}
.x67_c00359{left:290.071359pt;}
.x8f_c00359{left:292.823261pt;}
.x55_c00359{left:296.702999pt;}
.x9b_c00359{left:299.537365pt;}
.x45_c00359{left:304.117392pt;}
.xb0_c00359{left:306.290667pt;}
.xb_c00359{left:308.505333pt;}
.x27_c00359{left:309.738681pt;}
.x79_c00359{left:312.986565pt;}
.x71_c00359{left:314.214667pt;}
.x6b_c00359{left:315.389333pt;}
.x56_c00359{left:316.356332pt;}
.x3f_c00359{left:317.340273pt;}
.x28_c00359{left:318.780015pt;}
.x87_c00359{left:320.882064pt;}
.x72_c00359{left:325.506667pt;}
.x31_c00359{left:326.520539pt;}
.x7e_c00359{left:327.862900pt;}
.x13_c00359{left:329.533333pt;}
.x68_c00359{left:334.219179pt;}
.xc_c00359{left:335.385333pt;}
.x40_c00359{left:339.381221pt;}
.x1_c00359{left:340.320000pt;}
.xa8_c00359{left:343.472848pt;}
.x14_c00359{left:345.200000pt;}
.x47_c00359{left:348.024000pt;}
.x88_c00359{left:349.682552pt;}
.x7f_c00359{left:357.071337pt;}
.x2_c00359{left:359.760000pt;}
.xa7_c00359{left:362.676152pt;}
.x32_c00359{left:364.386571pt;}
.x4c_c00359{left:366.940000pt;}
.x39_c00359{left:367.957229pt;}
.x6c_c00359{left:371.392000pt;}
.xd_c00359{left:380.033333pt;}
.x4d_c00359{left:381.749333pt;}
.x1f_c00359{left:385.503909pt;}
.x3_c00359{left:387.360000pt;}
.x60_c00359{left:388.889585pt;}
.xa4_c00359{left:390.017748pt;}
.x8d_c00359{left:391.431809pt;}
.x29_c00359{left:393.205348pt;}
.xac_c00359{left:394.921796pt;}
.x15_c00359{left:397.760000pt;}
.x48_c00359{left:401.548000pt;}
.xb1_c00359{left:403.661333pt;}
.x7a_c00359{left:404.932492pt;}
.x80_c00359{left:406.091613pt;}
.x57_c00359{left:410.205665pt;}
.x61_c00359{left:415.014573pt;}
.x3a_c00359{left:416.453425pt;}
.xa9_c00359{left:421.515540pt;}
.x4e_c00359{left:422.796000pt;}
.x41_c00359{left:427.771725pt;}
.x4_c00359{left:429.360000pt;}
.x2a_c00359{left:430.416015pt;}
.x58_c00359{left:434.233665pt;}
.x89_c00359{left:438.769121pt;}
.x33_c00359{left:440.315945pt;}
.xa5_c00359{left:445.047319pt;}
.x6d_c00359{left:445.964000pt;}
.x20_c00359{left:448.642844pt;}
.x59_c00359{left:449.568332pt;}
.x2b_c00359{left:451.781348pt;}
.xaa_c00359{left:453.643487pt;}
.x73_c00359{left:455.604000pt;}
.x62_c00359{left:458.461553pt;}
.xa0_c00359{left:459.761333pt;}
.x16_c00359{left:462.876000pt;}
.xad_c00359{left:469.040892pt;}
.xa6_c00359{left:470.545596pt;}
.x21_c00359{left:473.851747pt;}
.x42_c00359{left:476.024243pt;}
.x74_c00359{left:478.870667pt;}
.xa1_c00359{left:481.093333pt;}
.x34_c00359{left:482.008576pt;}
.x3b_c00359{left:482.940692pt;}
.x4f_c00359{left:484.488000pt;}
.xae_c00359{left:486.597768pt;}
.x5_c00359{left:488.400000pt;}
.x17_c00359{left:491.200000pt;}
.x2c_c00359{left:494.730681pt;}
.x46_c00359{left:496.652656pt;}
.x5a_c00359{left:497.701665pt;}
.x84_c00359{left:500.416157pt;}
.x50_c00359{left:504.390667pt;}
.x81_c00359{left:506.208013pt;}
.xab_c00359{left:510.269348pt;}
.x63_c00359{left:512.431605pt;}
.x18_c00359{left:517.120000pt;}
.x43_c00359{left:518.732851pt;}
.xa2_c00359{left:520.204000pt;}
.x85_c00359{left:524.909827pt;}
.x64_c00359{left:526.194804pt;}
.x5b_c00359{left:528.053665pt;}
.xaf_c00359{left:530.010681pt;}
.x22_c00359{left:531.458772pt;}
.x2d_c00359{left:534.113348pt;}
.x35_c00359{left:535.134336pt;}
.x3c_c00359{left:538.131215pt;}
.x19_c00359{left:541.056000pt;}
.xa3_c00359{left:546.738667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mf8_c00360{transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);}
.m107_c00360{transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);}
.meb_c00360{transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);}
.mae_c00360{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m35_c00360{transform:matrix(0.055335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055335,0.000000,0.000000,0.250000,0,0);}
.mb3_c00360{transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);}
.mb1_c00360{transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);}
.m5f_c00360{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.md0_c00360{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);}
.mc5_c00360{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);}
.m11_c00360{transform:matrix(0.146905,-0.001175,0.002000,0.249992,0,0);-ms-transform:matrix(0.146905,-0.001175,0.002000,0.249992,0,0);-webkit-transform:matrix(0.146905,-0.001175,0.002000,0.249992,0,0);}
.maa_c00360{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);}
.m7_c00360{transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);-ms-transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153045,-0.001224,0.002000,0.249992,0,0);}
.mab_c00360{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);}
.md7_c00360{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);}
.mc0_c00360{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);}
.m13_c00360{transform:matrix(0.154710,-0.001238,0.002000,0.249992,0,0);-ms-transform:matrix(0.154710,-0.001238,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154710,-0.001238,0.002000,0.249992,0,0);}
.mb4_c00360{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);}
.m80_c00360{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);}
.mbc_c00360{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);}
.mb8_c00360{transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158080,0.000000,0.000000,0.250000,0,0);}
.m9d_c00360{transform:matrix(0.159050,-0.001272,0.002000,0.249992,0,0);-ms-transform:matrix(0.159050,-0.001272,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159050,-0.001272,0.002000,0.249992,0,0);}
.m28_c00360{transform:matrix(0.159660,-0.001277,0.002000,0.249992,0,0);-ms-transform:matrix(0.159660,-0.001277,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159660,-0.001277,0.002000,0.249992,0,0);}
.m61_c00360{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);}
.maf_c00360{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);}
.m92_c00360{transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);-ms-transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162770,-0.001302,0.002000,0.249992,0,0);}
.me_c00360{transform:matrix(0.162985,-0.001304,0.002000,0.249992,0,0);-ms-transform:matrix(0.162985,-0.001304,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162985,-0.001304,0.002000,0.249992,0,0);}
.m78_c00360{transform:matrix(0.164565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164565,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{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);}
.mb5_c00360{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);}
.m82_c00360{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);}
.m2e_c00360{transform:matrix(0.167945,-0.001344,0.002000,0.249992,0,0);-ms-transform:matrix(0.167945,-0.001344,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167945,-0.001344,0.002000,0.249992,0,0);}
.mcf_c00360{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);}
.mca_c00360{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);}
.md4_c00360{transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168585,0.000000,0.000000,0.250000,0,0);}
.m86_c00360{transform:matrix(0.169015,-0.001352,0.002000,0.249992,0,0);-ms-transform:matrix(0.169015,-0.001352,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169015,-0.001352,0.002000,0.249992,0,0);}
.m9e_c00360{transform:matrix(0.169135,-0.001353,0.002000,0.249992,0,0);-ms-transform:matrix(0.169135,-0.001353,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169135,-0.001353,0.002000,0.249992,0,0);}
.m2f_c00360{transform:matrix(0.169490,-0.001356,0.002000,0.249992,0,0);-ms-transform:matrix(0.169490,-0.001356,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169490,-0.001356,0.002000,0.249992,0,0);}
.mdb_c00360{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);}
.ma2_c00360{transform:matrix(0.169955,-0.001360,0.002000,0.249992,0,0);-ms-transform:matrix(0.169955,-0.001360,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169955,-0.001360,0.002000,0.249992,0,0);}
.ma6_c00360{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);}
.ma3_c00360{transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);-ms-transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);}
.m62_c00360{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);}
.m75_c00360{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);}
.m20_c00360{transform:matrix(0.171255,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171255,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171255,-0.001370,0.002000,0.249992,0,0);}
.m24_c00360{transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);}
.m26_c00360{transform:matrix(0.171655,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171655,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171655,-0.001373,0.002000,0.249992,0,0);}
.m1c_c00360{transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);-ms-transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171904,-0.001375,0.002000,0.249992,0,0);}
.mbd_c00360{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);}
.m10c_c00360{transform:matrix(0.172311,-0.005692,0.008254,0.249864,0,0);-ms-transform:matrix(0.172311,-0.005692,0.008254,0.249864,0,0);-webkit-transform:matrix(0.172311,-0.005692,0.008254,0.249864,0,0);}
.m2d_c00360{transform:matrix(0.172569,-0.001381,0.002000,0.249992,0,0);-ms-transform:matrix(0.172569,-0.001381,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172569,-0.001381,0.002000,0.249992,0,0);}
.m66_c00360{transform:matrix(0.172790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172790,0.000000,0.000000,0.250000,0,0);}
.ma7_c00360{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);}
.mbf_c00360{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);}
.m7d_c00360{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);}
.mac_c00360{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);}
.m17_c00360{transform:matrix(0.173789,-0.001390,0.002000,0.249992,0,0);-ms-transform:matrix(0.173789,-0.001390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173789,-0.001390,0.002000,0.249992,0,0);}
.m18_c00360{transform:matrix(0.174019,-0.001392,0.002000,0.249992,0,0);-ms-transform:matrix(0.174019,-0.001392,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174019,-0.001392,0.002000,0.249992,0,0);}
.m3e_c00360{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);}
.m12_c00360{transform:matrix(0.174139,-0.001393,0.002000,0.249992,0,0);-ms-transform:matrix(0.174139,-0.001393,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174139,-0.001393,0.002000,0.249992,0,0);}
.m3a_c00360{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);}
.m7c_c00360{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);}
.mb6_c00360{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);}
.m1d_c00360{transform:matrix(0.176214,-0.001410,0.002000,0.249992,0,0);-ms-transform:matrix(0.176214,-0.001410,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176214,-0.001410,0.002000,0.249992,0,0);}
.m72_c00360{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);}
.m98_c00360{transform:matrix(0.177219,-0.001418,0.002000,0.249992,0,0);-ms-transform:matrix(0.177219,-0.001418,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177219,-0.001418,0.002000,0.249992,0,0);}
.m9b_c00360{transform:matrix(0.177804,-0.001422,0.002000,0.249992,0,0);-ms-transform:matrix(0.177804,-0.001422,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177804,-0.001422,0.002000,0.249992,0,0);}
.m95_c00360{transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);-ms-transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178154,-0.001425,0.002000,0.249992,0,0);}
.m69_c00360{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);}
.md1_c00360{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);}
.m23_c00360{transform:matrix(0.179554,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179554,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179554,-0.001436,0.002000,0.249992,0,0);}
.m64_c00360{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);}
.m3d_c00360{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);}
.m7f_c00360{transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);}
.m74_c00360{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);}
.mb9_c00360{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);}
.m2c_c00360{transform:matrix(0.181389,-0.001451,0.002000,0.249992,0,0);-ms-transform:matrix(0.181389,-0.001451,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181389,-0.001451,0.002000,0.249992,0,0);}
.m40_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);}
.mce_c00360{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);}
.mb7_c00360{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);}
.m77_c00360{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);}
.m81_c00360{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);}
.m2b_c00360{transform:matrix(0.183699,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183699,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183699,-0.001470,0.002000,0.249992,0,0);}
.mba_c00360{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);}
.m79_c00360{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);}
.ma8_c00360{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);}
.ma4_c00360{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);}
.mee_c00360{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);}
.md9_c00360{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);}
.m10_c00360{transform:matrix(0.185104,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185104,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185104,-0.001481,0.002000,0.249992,0,0);}
.mc4_c00360{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);}
.m37_c00360{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);}
.ma9_c00360{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);}
.m56_c00360{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);}
.m42_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);}
.mbb_c00360{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);}
.m7a_c00360{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);}
.mb_c00360{transform:matrix(0.187389,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187389,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187389,-0.001499,0.002000,0.249992,0,0);}
.mdd_c00360{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);}
.m90_c00360{transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);-ms-transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187974,-0.001504,0.002000,0.249992,0,0);}
.m93_c00360{transform:matrix(0.188279,-0.001506,0.002000,0.249992,0,0);-ms-transform:matrix(0.188279,-0.001506,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188279,-0.001506,0.002000,0.249992,0,0);}
.m8c_c00360{transform:matrix(0.189309,-0.001514,0.002000,0.249992,0,0);-ms-transform:matrix(0.189309,-0.001514,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189309,-0.001514,0.002000,0.249992,0,0);}
.me3_c00360{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);}
.m73_c00360{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);}
.m6b_c00360{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);}
.m2a_c00360{transform:matrix(0.190249,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190249,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190249,-0.001522,0.002000,0.249992,0,0);}
.m19_c00360{transform:matrix(0.190734,-0.001526,0.002000,0.249992,0,0);-ms-transform:matrix(0.190734,-0.001526,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190734,-0.001526,0.002000,0.249992,0,0);}
.m4e_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);}
.m8f_c00360{transform:matrix(0.191414,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191414,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191414,-0.001531,0.002000,0.249992,0,0);}
.md2_c00360{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);}
.md3_c00360{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);}
.m91_c00360{transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);}
.m97_c00360{transform:matrix(0.192229,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192229,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192229,-0.001538,0.002000,0.249992,0,0);}
.m1a_c00360{transform:matrix(0.192304,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192304,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192304,-0.001538,0.002000,0.249992,0,0);}
.me4_c00360{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);}
.m9_c00360{transform:matrix(0.192734,-0.001542,0.002000,0.249992,0,0);-ms-transform:matrix(0.192734,-0.001542,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192734,-0.001542,0.002000,0.249992,0,0);}
.mc9_c00360{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);}
.m8e_c00360{transform:matrix(0.193529,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193529,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193529,-0.001548,0.002000,0.249992,0,0);}
.m94_c00360{transform:matrix(0.193719,-0.001550,0.002000,0.249992,0,0);-ms-transform:matrix(0.193719,-0.001550,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193719,-0.001550,0.002000,0.249992,0,0);}
.m59_c00360{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);}
.m50_c00360{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);}
.mda_c00360{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);}
.m108_c00360{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);}
.md5_c00360{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);}
.ma0_c00360{transform:matrix(0.197794,-0.001582,0.002000,0.249992,0,0);-ms-transform:matrix(0.197794,-0.001582,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197794,-0.001582,0.002000,0.249992,0,0);}
.md8_c00360{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);}
.me9_c00360{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);}
.m84_c00360{transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198784,-0.001590,0.002000,0.249992,0,0);}
.m6a_c00360{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);}
.me8_c00360{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.199079,-0.001593,0.002000,0.249992,0,0);-ms-transform:matrix(0.199079,-0.001593,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199079,-0.001593,0.002000,0.249992,0,0);}
.m22_c00360{transform:matrix(0.199214,-0.001594,0.002000,0.249992,0,0);-ms-transform:matrix(0.199214,-0.001594,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199214,-0.001594,0.002000,0.249992,0,0);}
.ma_c00360{transform:matrix(0.199584,-0.001597,0.002000,0.249992,0,0);-ms-transform:matrix(0.199584,-0.001597,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199584,-0.001597,0.002000,0.249992,0,0);}
.m25_c00360{transform:matrix(0.199684,-0.001597,0.002000,0.249992,0,0);-ms-transform:matrix(0.199684,-0.001597,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199684,-0.001597,0.002000,0.249992,0,0);}
.m21_c00360{transform:matrix(0.199844,-0.001599,0.002000,0.249992,0,0);-ms-transform:matrix(0.199844,-0.001599,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199844,-0.001599,0.002000,0.249992,0,0);}
.m70_c00360{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);}
.m7b_c00360{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);}
.mef_c00360{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);}
.m29_c00360{transform:matrix(0.200739,-0.001606,0.002000,0.249992,0,0);-ms-transform:matrix(0.200739,-0.001606,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200739,-0.001606,0.002000,0.249992,0,0);}
.m16_c00360{transform:matrix(0.200764,-0.001606,0.002000,0.249992,0,0);-ms-transform:matrix(0.200764,-0.001606,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200764,-0.001606,0.002000,0.249992,0,0);}
.mcc_c00360{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);}
.mf5_c00360{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);}
.m9a_c00360{transform:matrix(0.202044,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.202044,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202044,-0.001616,0.002000,0.249992,0,0);}
.mf4_c00360{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);}
.m9f_c00360{transform:matrix(0.202459,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202459,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202459,-0.001620,0.002000,0.249992,0,0);}
.m53_c00360{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);}
.m34_c00360{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);}
.me6_c00360{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);}
.m8b_c00360{transform:matrix(0.203074,-0.001625,0.002000,0.249992,0,0);-ms-transform:matrix(0.203074,-0.001625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203074,-0.001625,0.002000,0.249992,0,0);}
.mcb_c00360{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);}
.mc2_c00360{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);}
.m46_c00360{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);}
.mea_c00360{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);}
.m5e_c00360{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);}
.m99_c00360{transform:matrix(0.204833,-0.001639,0.002000,0.249992,0,0);-ms-transform:matrix(0.204833,-0.001639,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204833,-0.001639,0.002000,0.249992,0,0);}
.m4d_c00360{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);}
.m6c_c00360{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);}
.m6d_c00360{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);}
.med_c00360{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);}
.m3c_c00360{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);}
.m41_c00360{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);}
.mf3_c00360{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);}
.me0_c00360{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);}
.m6e_c00360{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);}
.m3b_c00360{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);}
.mcd_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);}
.mf2_c00360{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);}
.m85_c00360{transform:matrix(0.208083,-0.001665,0.002000,0.249992,0,0);-ms-transform:matrix(0.208083,-0.001665,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208083,-0.001665,0.002000,0.249992,0,0);}
.ma1_c00360{transform:matrix(0.208143,-0.001665,0.002000,0.249992,0,0);-ms-transform:matrix(0.208143,-0.001665,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208143,-0.001665,0.002000,0.249992,0,0);}
.md_c00360{transform:matrix(0.208263,-0.001666,0.002000,0.249992,0,0);-ms-transform:matrix(0.208263,-0.001666,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208263,-0.001666,0.002000,0.249992,0,0);}
.ma5_c00360{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);}
.m45_c00360{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);}
.m103_c00360{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);}
.m55_c00360{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);}
.m3f_c00360{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);}
.m49_c00360{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);}
.m27_c00360{transform:matrix(0.211428,-0.001691,0.002000,0.249992,0,0);-ms-transform:matrix(0.211428,-0.001691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211428,-0.001691,0.002000,0.249992,0,0);}
.mb0_c00360{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);}
.mfb_c00360{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);}
.m14_c00360{transform:matrix(0.213268,-0.001706,0.002000,0.249992,0,0);-ms-transform:matrix(0.213268,-0.001706,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213268,-0.001706,0.002000,0.249992,0,0);}
.m8_c00360{transform:matrix(0.213403,-0.001707,0.002000,0.249992,0,0);-ms-transform:matrix(0.213403,-0.001707,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213403,-0.001707,0.002000,0.249992,0,0);}
.mc6_c00360{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);}
.mfc_c00360{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);}
.m15_c00360{transform:matrix(0.213738,-0.001710,0.002000,0.249992,0,0);-ms-transform:matrix(0.213738,-0.001710,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213738,-0.001710,0.002000,0.249992,0,0);}
.m4a_c00360{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);}
.m47_c00360{transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);}
.m9c_c00360{transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217118,-0.001737,0.002000,0.249992,0,0);}
.mf1_c00360{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);}
.mde_c00360{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);}
.m52_c00360{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);}
.mfa_c00360{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);}
.m83_c00360{transform:matrix(0.218673,-0.001749,0.002000,0.249992,0,0);-ms-transform:matrix(0.218673,-0.001749,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218673,-0.001749,0.002000,0.249992,0,0);}
.m43_c00360{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);}
.m7e_c00360{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);}
.m5b_c00360{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);}
.m101_c00360{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);}
.me7_c00360{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);}
.m65_c00360{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);}
.mf_c00360{transform:matrix(0.223148,-0.001785,0.002000,0.249992,0,0);-ms-transform:matrix(0.223148,-0.001785,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223148,-0.001785,0.002000,0.249992,0,0);}
.m44_c00360{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);}
.mbe_c00360{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);}
.m6_c00360{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.me5_c00360{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);}
.mf0_c00360{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);}
.mdf_c00360{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);}
.m8d_c00360{transform:matrix(0.229403,-0.001835,0.002000,0.249992,0,0);-ms-transform:matrix(0.229403,-0.001835,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229403,-0.001835,0.002000,0.249992,0,0);}
.m54_c00360{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);}
.mff_c00360{transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233760,0.000000,0.000000,0.250000,0,0);}
.m106_c00360{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);}
.m100_c00360{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m88_c00360{transform:matrix(0.237587,-0.001901,0.002000,0.249992,0,0);-ms-transform:matrix(0.237587,-0.001901,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237587,-0.001901,0.002000,0.249992,0,0);}
.m57_c00360{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);}
.mf6_c00360{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);}
.mc1_c00360{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);}
.m71_c00360{transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);}
.m102_c00360{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.mf9_c00360{transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.246462,-0.001972,0.002000,0.249992,0,0);-ms-transform:matrix(0.246462,-0.001972,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246462,-0.001972,0.002000,0.249992,0,0);}
.m5c_c00360{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m96_c00360{transform:matrix(0.255937,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255937,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255937,-0.002047,0.002000,0.249992,0,0);}
.m6f_c00360{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);}
.mc8_c00360{transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.mec_c00360{transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{transform:matrix(0.263865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263865,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.264162,-0.002113,0.002000,0.249992,0,0);-ms-transform:matrix(0.264162,-0.002113,0.002000,0.249992,0,0);-webkit-transform:matrix(0.264162,-0.002113,0.002000,0.249992,0,0);}
.md6_c00360{transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);}
.m68_c00360{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);}
.mc3_c00360{transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);}
.m4b_c00360{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m8a_c00360{transform:matrix(0.272101,-0.002177,0.002000,0.249992,0,0);-ms-transform:matrix(0.272101,-0.002177,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272101,-0.002177,0.002000,0.249992,0,0);}
.m5a_c00360{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);}
.mad_c00360{transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);}
.me1_c00360{transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288970,0.000000,0.000000,0.250000,0,0);}
.mfd_c00360{transform:matrix(0.289135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289135,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{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);}
.m89_c00360{transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);-ms-transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);}
.m39_c00360{transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291530,0.000000,0.000000,0.250000,0,0);}
.mc7_c00360{transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);}
.m10a_c00360{transform:matrix(0.292560,-0.009664,0.008254,0.249864,0,0);-ms-transform:matrix(0.292560,-0.009664,0.008254,0.249864,0,0);-webkit-transform:matrix(0.292560,-0.009664,0.008254,0.249864,0,0);}
.m4c_c00360{transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);}
.me2_c00360{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m67_c00360{transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303055,0.000000,0.000000,0.250000,0,0);}
.m51_c00360{transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303335,0.000000,0.000000,0.250000,0,0);}
.m105_c00360{transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307405,0.000000,0.000000,0.250000,0,0);}
.mfe_c00360{transform:matrix(0.307885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307885,0.000000,0.000000,0.250000,0,0);}
.m104_c00360{transform:matrix(0.313135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313135,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.331970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331970,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.342774,-0.002742,0.002000,0.249992,0,0);-ms-transform:matrix(0.342774,-0.002742,0.002000,0.249992,0,0);-webkit-transform:matrix(0.342774,-0.002742,0.002000,0.249992,0,0);}
.mdc_c00360{transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345610,0.000000,0.000000,0.250000,0,0);}
.m87_c00360{transform:matrix(0.346374,-0.002771,0.002000,0.249992,0,0);-ms-transform:matrix(0.346374,-0.002771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.346374,-0.002771,0.002000,0.249992,0,0);}
.m76_c00360{transform:matrix(0.350760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350760,0.000000,0.000000,0.250000,0,0);}
.mf7_c00360{transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352960,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.356680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356680,0.000000,0.000000,0.250000,0,0);}
.m5d_c00360{transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{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);}
.m109_c00360{transform:matrix(0.406698,-0.013434,0.008254,0.249864,0,0);-ms-transform:matrix(0.406698,-0.013434,0.008254,0.249864,0,0);-webkit-transform:matrix(0.406698,-0.013434,0.008254,0.249864,0,0);}
.m32_c00360{transform:matrix(0.415925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415925,0.000000,0.000000,0.250000,0,0);}
.m10b_c00360{transform:matrix(0.433808,-0.014330,0.008254,0.249864,0,0);-ms-transform:matrix(0.433808,-0.014330,0.008254,0.249864,0,0);-webkit-transform:matrix(0.433808,-0.014330,0.008254,0.249864,0,0);}
.m60_c00360{transform:matrix(0.438605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438605,0.000000,0.000000,0.250000,0,0);}
.m31_c00360{transform:matrix(0.442060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442060,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.462970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462970,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.516935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516935,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{transform:matrix(0.644530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644530,0.000000,0.000000,0.250000,0,0);}
.mb2_c00360{transform:matrix(0.645160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645160,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;}
.fsf_c00360{font-size:24.150000px;}
.fs13_c00360{font-size:44.100000px;}
.fs11_c00360{font-size:48.300000px;}
.fs12_c00360{font-size:49.350000px;}
.fs10_c00360{font-size:50.400000px;}
.fs1_c00360{font-size:58.800000px;}
.fsb_c00360{font-size:64.050000px;}
.fs7_c00360{font-size:65.100000px;}
.fs8_c00360{font-size:66.150000px;}
.fsd_c00360{font-size:66.152117px;}
.fs6_c00360{font-size:67.200000px;}
.fse_c00360{font-size:67.202150px;}
.fsc_c00360{font-size:68.250000px;}
.fs4_c00360{font-size:68.252184px;}
.fs9_c00360{font-size:69.300000px;}
.fsa_c00360{font-size:70.350000px;}
.fs3_c00360{font-size:70.352251px;}
.fs0_c00360{font-size:71.400000px;}
.fs2_c00360{font-size:76.650000px;}
.fs5_c00360{font-size:77.702486px;}
.fs14_c00360{font-size:106.050000px;}
.fs15_c00360{font-size:201.508251px;}
.y0_c00360{bottom:0.000000px;}
.y6f_c00360{bottom:91.605000px;}
.y70_c00360{bottom:98.045841px;}
.y71_c00360{bottom:102.726066px;}
.y72_c00360{bottom:109.367828px;}
.y2_c00360{bottom:131.760000px;}
.y6e_c00360{bottom:149.701500px;}
.y1_c00360{bottom:162.810000px;}
.y6d_c00360{bottom:165.720000px;}
.y6c_c00360{bottom:183.981000px;}
.y6b_c00360{bottom:201.298500px;}
.y6a_c00360{bottom:218.785500px;}
.y69_c00360{bottom:269.913000px;}
.y68_c00360{bottom:292.416000px;}
.y67_c00360{bottom:319.816500px;}
.y5a_c00360{bottom:341.550000px;}
.y5b_c00360{bottom:341.638500px;}
.y5c_c00360{bottom:342.033000px;}
.y5d_c00360{bottom:342.381000px;}
.y5e_c00360{bottom:342.549000px;}
.y5f_c00360{bottom:342.786000px;}
.y60_c00360{bottom:343.086000px;}
.y61_c00360{bottom:343.293000px;}
.y62_c00360{bottom:343.633500px;}
.y63_c00360{bottom:344.127000px;}
.y64_c00360{bottom:344.248500px;}
.y65_c00360{bottom:344.442000px;}
.y66_c00360{bottom:344.614500px;}
.y59_c00360{bottom:353.928000px;}
.y58_c00360{bottom:372.310500px;}
.y50_c00360{bottom:399.402552px;}
.y54_c00360{bottom:399.402696px;}
.y57_c00360{bottom:399.402972px;}
.y51_c00360{bottom:399.403020px;}
.y53_c00360{bottom:399.403068px;}
.y52_c00360{bottom:399.403080px;}
.y55_c00360{bottom:399.403224px;}
.y56_c00360{bottom:399.403512px;}
.y43_c00360{bottom:421.740276px;}
.y44_c00360{bottom:422.035488px;}
.y45_c00360{bottom:422.205900px;}
.y46_c00360{bottom:422.634492px;}
.y47_c00360{bottom:422.846388px;}
.y48_c00360{bottom:423.019860px;}
.y49_c00360{bottom:423.318876px;}
.y4a_c00360{bottom:423.533868px;}
.y4b_c00360{bottom:423.711432px;}
.y4c_c00360{bottom:424.140288px;}
.y4d_c00360{bottom:424.506600px;}
.y4e_c00360{bottom:424.758132px;}
.y4f_c00360{bottom:424.942812px;}
.y37_c00360{bottom:443.881500px;}
.y38_c00360{bottom:444.270276px;}
.y39_c00360{bottom:444.622332px;}
.y3a_c00360{bottom:444.916140px;}
.y3b_c00360{bottom:445.335180px;}
.y3c_c00360{bottom:445.531392px;}
.y3d_c00360{bottom:445.743408px;}
.y3e_c00360{bottom:446.076192px;}
.y3f_c00360{bottom:446.225004px;}
.y40_c00360{bottom:446.447616px;}
.y41_c00360{bottom:446.827776px;}
.y42_c00360{bottom:447.240480px;}
.y36_c00360{bottom:473.563500px;}
.y35_c00360{bottom:496.749000px;}
.y34_c00360{bottom:526.914000px;}
.y33_c00360{bottom:550.878000px;}
.y32_c00360{bottom:577.899000px;}
.y31_c00360{bottom:608.631000px;}
.y30_c00360{bottom:629.857500px;}
.y2f_c00360{bottom:652.671000px;}
.y2e_c00360{bottom:680.940000px;}
.y2d_c00360{bottom:720.276000px;}
.y2b_c00360{bottom:759.938112px;}
.y2c_c00360{bottom:759.938460px;}
.y2a_c00360{bottom:759.938484px;}
.y22_c00360{bottom:784.159248px;}
.y25_c00360{bottom:784.159572px;}
.y23_c00360{bottom:784.159656px;}
.y26_c00360{bottom:784.159800px;}
.y21_c00360{bottom:784.159920px;}
.y24_c00360{bottom:784.160124px;}
.y27_c00360{bottom:784.160376px;}
.y20_c00360{bottom:784.160412px;}
.y1f_c00360{bottom:784.160844px;}
.y28_c00360{bottom:784.161084px;}
.y1e_c00360{bottom:784.161216px;}
.y29_c00360{bottom:784.161312px;}
.y12_c00360{bottom:804.869700px;}
.y13_c00360{bottom:805.181352px;}
.y14_c00360{bottom:805.625940px;}
.y15_c00360{bottom:805.810764px;}
.y16_c00360{bottom:806.197992px;}
.y17_c00360{bottom:806.644464px;}
.y18_c00360{bottom:806.820096px;}
.y19_c00360{bottom:807.057732px;}
.y1a_c00360{bottom:807.430812px;}
.y1b_c00360{bottom:807.698556px;}
.y1c_c00360{bottom:807.921996px;}
.y1d_c00360{bottom:808.032840px;}
.y4_c00360{bottom:827.551500px;}
.y5_c00360{bottom:827.700264px;}
.y6_c00360{bottom:827.827680px;}
.y7_c00360{bottom:827.953284px;}
.y8_c00360{bottom:828.173592px;}
.y9_c00360{bottom:828.333528px;}
.ya_c00360{bottom:829.115532px;}
.yb_c00360{bottom:829.437276px;}
.yc_c00360{bottom:829.577688px;}
.yd_c00360{bottom:829.912440px;}
.ye_c00360{bottom:830.121696px;}
.yf_c00360{bottom:830.359308px;}
.y10_c00360{bottom:830.733024px;}
.y11_c00360{bottom:830.944752px;}
.y3_c00360{bottom:873.769500px;}
.h11_c00360{height:24.150000px;}
.h15_c00360{height:44.100000px;}
.h13_c00360{height:48.300000px;}
.h14_c00360{height:49.350000px;}
.h12_c00360{height:50.400000px;}
.h3_c00360{height:58.800000px;}
.hd_c00360{height:64.050000px;}
.h9_c00360{height:65.100000px;}
.ha_c00360{height:66.150000px;}
.hf_c00360{height:66.152117px;}
.h8_c00360{height:67.200000px;}
.h10_c00360{height:67.202150px;}
.he_c00360{height:68.250000px;}
.h6_c00360{height:68.252184px;}
.hb_c00360{height:69.300000px;}
.hc_c00360{height:70.350000px;}
.h5_c00360{height:70.352251px;}
.h2_c00360{height:71.400000px;}
.h4_c00360{height:76.650000px;}
.h7_c00360{height:77.702486px;}
.h16_c00360{height:106.050000px;}
.h17_c00360{height:201.508251px;}
.h1_c00360{height:1005.000000px;}
.h0_c00360{height:1005.150000px;}
.w0_c00360{width:702.540000px;}
.w1_c00360{width:702.750000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:37.530000px;}
.x1_c00360{left:45.630000px;}
.xa0_c00360{left:47.899500px;}
.x48_c00360{left:83.430000px;}
.x3e_c00360{left:88.020000px;}
.x16_c00360{left:92.131800px;}
.x62_c00360{left:94.500000px;}
.x9a_c00360{left:95.580000px;}
.x83_c00360{left:100.776000px;}
.x9d_c00360{left:108.540000px;}
.x8_c00360{left:109.989000px;}
.x5a_c00360{left:112.860000px;}
.x2d_c00360{left:114.480000px;}
.x88_c00360{left:119.880000px;}
.x80_c00360{left:124.200000px;}
.x9_c00360{left:128.584500px;}
.x64_c00360{left:130.140000px;}
.x52_c00360{left:131.220000px;}
.x17_c00360{left:136.713660px;}
.x34_c00360{left:140.670000px;}
.x9e_c00360{left:142.830000px;}
.xa_c00360{left:144.511500px;}
.x89_c00360{left:150.120000px;}
.x2e_c00360{left:152.280000px;}
.x1f_c00360{left:153.631896px;}
.x7b_c00360{left:154.980000px;}
.x53_c00360{left:156.330000px;}
.x87_c00360{left:158.220000px;}
.xb_c00360{left:160.212000px;}
.x70_c00360{left:161.281020px;}
.x63_c00360{left:163.350000px;}
.x3f_c00360{left:165.510000px;}
.x35_c00360{left:168.210000px;}
.x5b_c00360{left:170.640000px;}
.x6b_c00360{left:175.230000px;}
.x9b_c00360{left:177.120000px;}
.x2a_c00360{left:179.279304px;}
.x49_c00360{left:182.520000px;}
.x65_c00360{left:186.030000px;}
.xc_c00360{left:187.750500px;}
.x7c_c00360{left:189.000000px;}
.x20_c00360{left:190.892784px;}
.x8f_c00360{left:194.940000px;}
.x18_c00360{left:200.162664px;}
.x96_c00360{left:201.960000px;}
.x2f_c00360{left:204.120000px;}
.xd_c00360{left:207.742500px;}
.x40_c00360{left:208.980000px;}
.x4a_c00360{left:211.410000px;}
.x5c_c00360{left:212.760000px;}
.x36_c00360{left:215.190000px;}
.x3_c00360{left:216.270000px;}
.x54_c00360{left:217.890000px;}
.x84_c00360{left:219.562500px;}
.x71_c00360{left:222.543012px;}
.x19_c00360{left:226.640880px;}
.x91_c00360{left:231.930000px;}
.x30_c00360{left:233.280000px;}
.x4b_c00360{left:235.710000px;}
.x21_c00360{left:237.334260px;}
.x2b_c00360{left:239.490000px;}
.x6c_c00360{left:241.759500px;}
.x41_c00360{left:243.270000px;}
.x31_c00360{left:245.970000px;}
.x78_c00360{left:249.756096px;}
.x72_c00360{left:252.780252px;}
.x55_c00360{left:255.420000px;}
.x5d_c00360{left:258.660000px;}
.x7d_c00360{left:260.820000px;}
.x37_c00360{left:266.760000px;}
.x22_c00360{left:270.814908px;}
.x4c_c00360{left:274.320000px;}
.x73_c00360{left:277.651956px;}
.x66_c00360{left:278.910000px;}
.x1a_c00360{left:281.982324px;}
.x42_c00360{left:283.230000px;}
.x38_c00360{left:288.630000px;}
.x92_c00360{left:292.950000px;}
.x23_c00360{left:294.304908px;}
.x79_c00360{left:295.387512px;}
.x97_c00360{left:296.730000px;}
.x8a_c00360{left:304.290000px;}
.xe_c00360{left:305.493000px;}
.x4_c00360{left:308.070000px;}
.x4d_c00360{left:309.960000px;}
.x67_c00360{left:317.790000px;}
.x74_c00360{left:320.279292px;}
.x56_c00360{left:322.650000px;}
.x7a_c00360{left:323.737824px;}
.x8b_c00360{left:326.970000px;}
.x5e_c00360{left:328.320000px;}
.x7e_c00360{left:330.480000px;}
.x4e_c00360{left:333.180000px;}
.x24_c00360{left:335.616048px;}
.x43_c00360{left:337.500000px;}
.x68_c00360{left:339.930000px;}
.xf_c00360{left:345.711000px;}
.x32_c00360{left:350.190000px;}
.x39_c00360{left:358.020000px;}
.x8c_c00360{left:359.100000px;}
.x10_c00360{left:363.262500px;}
.x4f_c00360{left:367.740000px;}
.x5_c00360{left:369.900000px;}
.x25_c00360{left:370.986816px;}
.x90_c00360{left:374.490000px;}
.x5f_c00360{left:375.840000px;}
.x2c_c00360{left:383.130000px;}
.xa1_c00360{left:384.564498px;}
.x69_c00360{left:386.100000px;}
.x57_c00360{left:389.610000px;}
.x7f_c00360{left:392.040000px;}
.x26_c00360{left:395.016852px;}
.x8d_c00360{left:396.900000px;}
.x85_c00360{left:398.344500px;}
.x3a_c00360{left:402.030000px;}
.x11_c00360{left:405.106500px;}
.x9c_c00360{left:409.320000px;}
.x98_c00360{left:411.750000px;}
.x58_c00360{left:413.640000px;}
.x6_c00360{left:414.990000px;}
.x44_c00360{left:417.420000px;}
.x8e_c00360{left:419.580000px;}
.x33_c00360{left:425.520000px;}
.x9f_c00360{left:427.680000px;}
.x12_c00360{left:431.263500px;}
.x6d_c00360{left:433.194000px;}
.x6a_c00360{left:434.700000px;}
.x50_c00360{left:438.480000px;}
.x81_c00360{left:440.640000px;}
.x45_c00360{left:448.470000px;}
.x93_c00360{left:450.900000px;}
.x3b_c00360{left:452.250000px;}
.x1b_c00360{left:458.023728px;}
.x13_c00360{left:460.965000px;}
.x59_c00360{left:469.260000px;}
.x46_c00360{left:475.200000px;}
.x3c_c00360{left:478.710000px;}
.x6e_c00360{left:480.714000px;}
.x94_c00360{left:483.030000px;}
.x27_c00360{left:485.469636px;}
.x75_c00360{left:490.121160px;}
.x99_c00360{left:493.290000px;}
.x1c_c00360{left:496.367040px;}
.x51_c00360{left:500.850000px;}
.x14_c00360{left:507.679500px;}
.x28_c00360{left:510.309720px;}
.x86_c00360{left:513.628500px;}
.x60_c00360{left:516.780000px;}
.x95_c00360{left:518.670000px;}
.x76_c00360{left:526.062948px;}
.x1d_c00360{left:528.234792px;}
.x6f_c00360{left:532.302000px;}
.x15_c00360{left:534.145500px;}
.x7_c00360{left:536.760000px;}
.x47_c00360{left:538.380000px;}
.x61_c00360{left:540.540000px;}
.x1e_c00360{left:544.152924px;}
.x82_c00360{left:546.750000px;}
.x29_c00360{left:547.840620px;}
.x3d_c00360{left:551.340000px;}
.x77_c00360{left:552.523164px;}
.xa2_c00360{left:585.628733px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
.fsf_c00360{font-size:21.466667pt;}
.fs13_c00360{font-size:39.200000pt;}
.fs11_c00360{font-size:42.933333pt;}
.fs12_c00360{font-size:43.866667pt;}
.fs10_c00360{font-size:44.800000pt;}
.fs1_c00360{font-size:52.266667pt;}
.fsb_c00360{font-size:56.933333pt;}
.fs7_c00360{font-size:57.866667pt;}
.fs8_c00360{font-size:58.800000pt;}
.fsd_c00360{font-size:58.801882pt;}
.fs6_c00360{font-size:59.733333pt;}
.fse_c00360{font-size:59.735245pt;}
.fsc_c00360{font-size:60.666667pt;}
.fs4_c00360{font-size:60.668608pt;}
.fs9_c00360{font-size:61.600000pt;}
.fsa_c00360{font-size:62.533333pt;}
.fs3_c00360{font-size:62.535334pt;}
.fs0_c00360{font-size:63.466667pt;}
.fs2_c00360{font-size:68.133333pt;}
.fs5_c00360{font-size:69.068877pt;}
.fs14_c00360{font-size:94.266667pt;}
.fs15_c00360{font-size:179.118445pt;}
.y0_c00360{bottom:0.000000pt;}
.y6f_c00360{bottom:81.426667pt;}
.y70_c00360{bottom:87.151859pt;}
.y71_c00360{bottom:91.312059pt;}
.y72_c00360{bottom:97.215847pt;}
.y2_c00360{bottom:117.120000pt;}
.y6e_c00360{bottom:133.068000pt;}
.y1_c00360{bottom:144.720000pt;}
.y6d_c00360{bottom:147.306667pt;}
.y6c_c00360{bottom:163.538667pt;}
.y6b_c00360{bottom:178.932000pt;}
.y6a_c00360{bottom:194.476000pt;}
.y69_c00360{bottom:239.922667pt;}
.y68_c00360{bottom:259.925333pt;}
.y67_c00360{bottom:284.281333pt;}
.y5a_c00360{bottom:303.600000pt;}
.y5b_c00360{bottom:303.678667pt;}
.y5c_c00360{bottom:304.029333pt;}
.y5d_c00360{bottom:304.338667pt;}
.y5e_c00360{bottom:304.488000pt;}
.y5f_c00360{bottom:304.698667pt;}
.y60_c00360{bottom:304.965333pt;}
.y61_c00360{bottom:305.149333pt;}
.y62_c00360{bottom:305.452000pt;}
.y63_c00360{bottom:305.890667pt;}
.y64_c00360{bottom:305.998667pt;}
.y65_c00360{bottom:306.170667pt;}
.y66_c00360{bottom:306.324000pt;}
.y59_c00360{bottom:314.602667pt;}
.y58_c00360{bottom:330.942667pt;}
.y50_c00360{bottom:355.024491pt;}
.y54_c00360{bottom:355.024619pt;}
.y57_c00360{bottom:355.024864pt;}
.y51_c00360{bottom:355.024907pt;}
.y53_c00360{bottom:355.024949pt;}
.y52_c00360{bottom:355.024960pt;}
.y55_c00360{bottom:355.025088pt;}
.y56_c00360{bottom:355.025344pt;}
.y43_c00360{bottom:374.880245pt;}
.y44_c00360{bottom:375.142656pt;}
.y45_c00360{bottom:375.294133pt;}
.y46_c00360{bottom:375.675104pt;}
.y47_c00360{bottom:375.863456pt;}
.y48_c00360{bottom:376.017653pt;}
.y49_c00360{bottom:376.283445pt;}
.y4a_c00360{bottom:376.474549pt;}
.y4b_c00360{bottom:376.632384pt;}
.y4c_c00360{bottom:377.013589pt;}
.y4d_c00360{bottom:377.339200pt;}
.y4e_c00360{bottom:377.562784pt;}
.y4f_c00360{bottom:377.726944pt;}
.y37_c00360{bottom:394.561333pt;}
.y38_c00360{bottom:394.906912pt;}
.y39_c00360{bottom:395.219851pt;}
.y3a_c00360{bottom:395.481013pt;}
.y3b_c00360{bottom:395.853493pt;}
.y3c_c00360{bottom:396.027904pt;}
.y3d_c00360{bottom:396.216363pt;}
.y3e_c00360{bottom:396.512171pt;}
.y3f_c00360{bottom:396.644448pt;}
.y40_c00360{bottom:396.842325pt;}
.y41_c00360{bottom:397.180245pt;}
.y42_c00360{bottom:397.547093pt;}
.y36_c00360{bottom:420.945333pt;}
.y35_c00360{bottom:441.554667pt;}
.y34_c00360{bottom:468.368000pt;}
.y33_c00360{bottom:489.669333pt;}
.y32_c00360{bottom:513.688000pt;}
.y31_c00360{bottom:541.005333pt;}
.y30_c00360{bottom:559.873333pt;}
.y2f_c00360{bottom:580.152000pt;}
.y2e_c00360{bottom:605.280000pt;}
.y2d_c00360{bottom:640.245333pt;}
.y2b_c00360{bottom:675.500544pt;}
.y2c_c00360{bottom:675.500853pt;}
.y2a_c00360{bottom:675.500875pt;}
.y22_c00360{bottom:697.030443pt;}
.y25_c00360{bottom:697.030731pt;}
.y23_c00360{bottom:697.030805pt;}
.y26_c00360{bottom:697.030933pt;}
.y21_c00360{bottom:697.031040pt;}
.y24_c00360{bottom:697.031221pt;}
.y27_c00360{bottom:697.031445pt;}
.y20_c00360{bottom:697.031477pt;}
.y1f_c00360{bottom:697.031861pt;}
.y28_c00360{bottom:697.032075pt;}
.y1e_c00360{bottom:697.032192pt;}
.y29_c00360{bottom:697.032277pt;}
.y12_c00360{bottom:715.439733pt;}
.y13_c00360{bottom:715.716757pt;}
.y14_c00360{bottom:716.111947pt;}
.y15_c00360{bottom:716.276235pt;}
.y16_c00360{bottom:716.620437pt;}
.y17_c00360{bottom:717.017301pt;}
.y18_c00360{bottom:717.173419pt;}
.y19_c00360{bottom:717.384651pt;}
.y1a_c00360{bottom:717.716277pt;}
.y1b_c00360{bottom:717.954272pt;}
.y1c_c00360{bottom:718.152885pt;}
.y1d_c00360{bottom:718.251413pt;}
.y4_c00360{bottom:735.601333pt;}
.y5_c00360{bottom:735.733568pt;}
.y6_c00360{bottom:735.846827pt;}
.y7_c00360{bottom:735.958475pt;}
.y8_c00360{bottom:736.154304pt;}
.y9_c00360{bottom:736.296469pt;}
.ya_c00360{bottom:736.991584pt;}
.yb_c00360{bottom:737.277579pt;}
.yc_c00360{bottom:737.402389pt;}
.yd_c00360{bottom:737.699947pt;}
.ye_c00360{bottom:737.885952pt;}
.yf_c00360{bottom:738.097163pt;}
.y10_c00360{bottom:738.429355pt;}
.y11_c00360{bottom:738.617557pt;}
.y3_c00360{bottom:776.684000pt;}
.h11_c00360{height:21.466667pt;}
.h15_c00360{height:39.200000pt;}
.h13_c00360{height:42.933333pt;}
.h14_c00360{height:43.866667pt;}
.h12_c00360{height:44.800000pt;}
.h3_c00360{height:52.266667pt;}
.hd_c00360{height:56.933333pt;}
.h9_c00360{height:57.866667pt;}
.ha_c00360{height:58.800000pt;}
.hf_c00360{height:58.801882pt;}
.h8_c00360{height:59.733333pt;}
.h10_c00360{height:59.735245pt;}
.he_c00360{height:60.666667pt;}
.h6_c00360{height:60.668608pt;}
.hb_c00360{height:61.600000pt;}
.hc_c00360{height:62.533333pt;}
.h5_c00360{height:62.535334pt;}
.h2_c00360{height:63.466667pt;}
.h4_c00360{height:68.133333pt;}
.h7_c00360{height:69.068877pt;}
.h16_c00360{height:94.266667pt;}
.h17_c00360{height:179.118445pt;}
.h1_c00360{height:893.333333pt;}
.h0_c00360{height:893.466667pt;}
.w0_c00360{width:624.480000pt;}
.w1_c00360{width:624.666667pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:33.360000pt;}
.x1_c00360{left:40.560000pt;}
.xa0_c00360{left:42.577333pt;}
.x48_c00360{left:74.160000pt;}
.x3e_c00360{left:78.240000pt;}
.x16_c00360{left:81.894933pt;}
.x62_c00360{left:84.000000pt;}
.x9a_c00360{left:84.960000pt;}
.x83_c00360{left:89.578667pt;}
.x9d_c00360{left:96.480000pt;}
.x8_c00360{left:97.768000pt;}
.x5a_c00360{left:100.320000pt;}
.x2d_c00360{left:101.760000pt;}
.x88_c00360{left:106.560000pt;}
.x80_c00360{left:110.400000pt;}
.x9_c00360{left:114.297333pt;}
.x64_c00360{left:115.680000pt;}
.x52_c00360{left:116.640000pt;}
.x17_c00360{left:121.523253pt;}
.x34_c00360{left:125.040000pt;}
.x9e_c00360{left:126.960000pt;}
.xa_c00360{left:128.454667pt;}
.x89_c00360{left:133.440000pt;}
.x2e_c00360{left:135.360000pt;}
.x1f_c00360{left:136.561685pt;}
.x7b_c00360{left:137.760000pt;}
.x53_c00360{left:138.960000pt;}
.x87_c00360{left:140.640000pt;}
.xb_c00360{left:142.410667pt;}
.x70_c00360{left:143.360907pt;}
.x63_c00360{left:145.200000pt;}
.x3f_c00360{left:147.120000pt;}
.x35_c00360{left:149.520000pt;}
.x5b_c00360{left:151.680000pt;}
.x6b_c00360{left:155.760000pt;}
.x9b_c00360{left:157.440000pt;}
.x2a_c00360{left:159.359381pt;}
.x49_c00360{left:162.240000pt;}
.x65_c00360{left:165.360000pt;}
.xc_c00360{left:166.889333pt;}
.x7c_c00360{left:168.000000pt;}
.x20_c00360{left:169.682475pt;}
.x8f_c00360{left:173.280000pt;}
.x18_c00360{left:177.922368pt;}
.x96_c00360{left:179.520000pt;}
.x2f_c00360{left:181.440000pt;}
.xd_c00360{left:184.660000pt;}
.x40_c00360{left:185.760000pt;}
.x4a_c00360{left:187.920000pt;}
.x5c_c00360{left:189.120000pt;}
.x36_c00360{left:191.280000pt;}
.x3_c00360{left:192.240000pt;}
.x54_c00360{left:193.680000pt;}
.x84_c00360{left:195.166667pt;}
.x71_c00360{left:197.816011pt;}
.x19_c00360{left:201.458560pt;}
.x91_c00360{left:206.160000pt;}
.x30_c00360{left:207.360000pt;}
.x4b_c00360{left:209.520000pt;}
.x21_c00360{left:210.963787pt;}
.x2b_c00360{left:212.880000pt;}
.x6c_c00360{left:214.897333pt;}
.x41_c00360{left:216.240000pt;}
.x31_c00360{left:218.640000pt;}
.x78_c00360{left:222.005419pt;}
.x72_c00360{left:224.693557pt;}
.x55_c00360{left:227.040000pt;}
.x5d_c00360{left:229.920000pt;}
.x7d_c00360{left:231.840000pt;}
.x37_c00360{left:237.120000pt;}
.x22_c00360{left:240.724363pt;}
.x4c_c00360{left:243.840000pt;}
.x73_c00360{left:246.801739pt;}
.x66_c00360{left:247.920000pt;}
.x1a_c00360{left:250.650955pt;}
.x42_c00360{left:251.760000pt;}
.x38_c00360{left:256.560000pt;}
.x92_c00360{left:260.400000pt;}
.x23_c00360{left:261.604363pt;}
.x79_c00360{left:262.566677pt;}
.x97_c00360{left:263.760000pt;}
.x8a_c00360{left:270.480000pt;}
.xe_c00360{left:271.549333pt;}
.x4_c00360{left:273.840000pt;}
.x4d_c00360{left:275.520000pt;}
.x67_c00360{left:282.480000pt;}
.x74_c00360{left:284.692704pt;}
.x56_c00360{left:286.800000pt;}
.x7a_c00360{left:287.766955pt;}
.x8b_c00360{left:290.640000pt;}
.x5e_c00360{left:291.840000pt;}
.x7e_c00360{left:293.760000pt;}
.x4e_c00360{left:296.160000pt;}
.x24_c00360{left:298.325376pt;}
.x43_c00360{left:300.000000pt;}
.x68_c00360{left:302.160000pt;}
.xf_c00360{left:307.298667pt;}
.x32_c00360{left:311.280000pt;}
.x39_c00360{left:318.240000pt;}
.x8c_c00360{left:319.200000pt;}
.x10_c00360{left:322.900000pt;}
.x4f_c00360{left:326.880000pt;}
.x5_c00360{left:328.800000pt;}
.x25_c00360{left:329.766059pt;}
.x90_c00360{left:332.880000pt;}
.x5f_c00360{left:334.080000pt;}
.x2c_c00360{left:340.560000pt;}
.xa1_c00360{left:341.835109pt;}
.x69_c00360{left:343.200000pt;}
.x57_c00360{left:346.320000pt;}
.x7f_c00360{left:348.480000pt;}
.x26_c00360{left:351.126091pt;}
.x8d_c00360{left:352.800000pt;}
.x85_c00360{left:354.084000pt;}
.x3a_c00360{left:357.360000pt;}
.x11_c00360{left:360.094667pt;}
.x9c_c00360{left:363.840000pt;}
.x98_c00360{left:366.000000pt;}
.x58_c00360{left:367.680000pt;}
.x6_c00360{left:368.880000pt;}
.x44_c00360{left:371.040000pt;}
.x8e_c00360{left:372.960000pt;}
.x33_c00360{left:378.240000pt;}
.x9f_c00360{left:380.160000pt;}
.x12_c00360{left:383.345333pt;}
.x6d_c00360{left:385.061333pt;}
.x6a_c00360{left:386.400000pt;}
.x50_c00360{left:389.760000pt;}
.x81_c00360{left:391.680000pt;}
.x45_c00360{left:398.640000pt;}
.x93_c00360{left:400.800000pt;}
.x3b_c00360{left:402.000000pt;}
.x1b_c00360{left:407.132203pt;}
.x13_c00360{left:409.746667pt;}
.x59_c00360{left:417.120000pt;}
.x46_c00360{left:422.400000pt;}
.x3c_c00360{left:425.520000pt;}
.x6e_c00360{left:427.301333pt;}
.x94_c00360{left:429.360000pt;}
.x27_c00360{left:431.528565pt;}
.x75_c00360{left:435.663253pt;}
.x99_c00360{left:438.480000pt;}
.x1c_c00360{left:441.215147pt;}
.x51_c00360{left:445.200000pt;}
.x14_c00360{left:451.270667pt;}
.x28_c00360{left:453.608640pt;}
.x86_c00360{left:456.558667pt;}
.x60_c00360{left:459.360000pt;}
.x95_c00360{left:461.040000pt;}
.x76_c00360{left:467.611509pt;}
.x1d_c00360{left:469.542037pt;}
.x6f_c00360{left:473.157333pt;}
.x15_c00360{left:474.796000pt;}
.x7_c00360{left:477.120000pt;}
.x47_c00360{left:478.560000pt;}
.x61_c00360{left:480.480000pt;}
.x1e_c00360{left:483.691488pt;}
.x82_c00360{left:486.000000pt;}
.x29_c00360{left:486.969440pt;}
.x3d_c00360{left:490.080000pt;}
.x77_c00360{left:491.131701pt;}
.xa2_c00360{left:520.558873pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mbb_c00361{transform:matrix(0.011275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011275,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m13d_c00361{transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);}
.m133_c00361{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);}
.m146_c00361{transform:matrix(0.035205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035205,0.000000,0.000000,0.250000,0,0);}
.m110_c00361{transform:matrix(0.035475,0.000568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.035475,0.000568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.035475,0.000568,-0.003999,0.249968,0,0);}
.m8a_c00361{transform:matrix(0.090140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090140,0.000000,0.000000,0.250000,0,0);}
.mec_c00361{transform:matrix(0.102345,0.001023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.102345,0.001023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.102345,0.001023,-0.002500,0.249988,0,0);}
.m116_c00361{transform:matrix(0.104122,0.001666,-0.003999,0.249968,0,0);-ms-transform:matrix(0.104122,0.001666,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.104122,0.001666,-0.003999,0.249968,0,0);}
.m132_c00361{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.114495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114495,0.000000,0.000000,0.250000,0,0);}
.me2_c00361{transform:matrix(0.116412,0.001397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.116412,0.001397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.116412,0.001397,-0.003000,0.249982,0,0);}
.m75_c00361{transform:matrix(0.132435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132435,0.000000,0.000000,0.250000,0,0);}
.mc0_c00361{transform:matrix(0.135510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135510,0.000000,0.000000,0.250000,0,0);}
.mae_c00361{transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);}
.mbd_c00361{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);}
.m31_c00361{transform:matrix(0.139665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00361{transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140920,0.000000,0.000000,0.250000,0,0);}
.m95_c00361{transform:matrix(0.142335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142335,0.000000,0.000000,0.250000,0,0);}
.ma4_c00361{transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142965,0.000000,0.000000,0.250000,0,0);}
.m8b_c00361{transform:matrix(0.146605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146605,0.000000,0.000000,0.250000,0,0);}
.m138_c00361{transform:matrix(0.146835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146835,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147270,0.000000,0.000000,0.250000,0,0);}
.mbe_c00361{transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);}
.med_c00361{transform:matrix(0.147873,0.001479,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147873,0.001479,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147873,0.001479,-0.002500,0.249988,0,0);}
.m54_c00361{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);}
.mea_c00361{transform:matrix(0.148923,0.001489,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148923,0.001489,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148923,0.001489,-0.002500,0.249988,0,0);}
.m9e_c00361{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);}
.md3_c00361{transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{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);}
.m4f_c00361{transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);}
.m104_c00361{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);}
.ma9_c00361{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);}
.m12_c00361{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);}
.m1d_c00361{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);}
.m113_c00361{transform:matrix(0.153795,0.002461,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153795,0.002461,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153795,0.002461,-0.003999,0.249968,0,0);}
.m10_c00361{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);}
.mdd_c00361{transform:matrix(0.154239,0.001851,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154239,0.001851,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154239,0.001851,-0.003000,0.249982,0,0);}
.m63_c00361{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);}
.m39_c00361{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);}
.m56_c00361{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);}
.m2f_c00361{transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{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);}
.m77_c00361{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);}
.me9_c00361{transform:matrix(0.158294,0.001900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158294,0.001900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158294,0.001900,-0.003000,0.249982,0,0);}
.m29_c00361{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);}
.m1b_c00361{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);}
.md6_c00361{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);}
.m7d_c00361{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);}
.m93_c00361{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);}
.m26_c00361{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);}
.m69_c00361{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);}
.m50_c00361{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);}
.mfd_c00361{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);}
.mad_c00361{transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161585,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{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);}
.me8_c00361{transform:matrix(0.161738,0.001941,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161738,0.001941,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161738,0.001941,-0.003000,0.249982,0,0);}
.md8_c00361{transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{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);}
.m3a_c00361{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);}
.m15_c00361{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);}
.m96_c00361{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);}
.me6_c00361{transform:matrix(0.163008,0.001956,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163008,0.001956,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163008,0.001956,-0.003000,0.249982,0,0);}
.m120_c00361{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);}
.me7_c00361{transform:matrix(0.163458,0.001961,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163458,0.001961,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163458,0.001961,-0.003000,0.249982,0,0);}
.m106_c00361{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);}
.m88_c00361{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);}
.me5_c00361{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);}
.m84_c00361{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);}
.m19_c00361{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);}
.mfb_c00361{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);}
.m67_c00361{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);}
.m14_c00361{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);}
.mef_c00361{transform:matrix(0.165702,0.001657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165702,0.001657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165702,0.001657,-0.002500,0.249988,0,0);}
.mf4_c00361{transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165772,0.001658,-0.002500,0.249988,0,0);}
.maf_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);}
.m98_c00361{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);}
.m28_c00361{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.mee_c00361{transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);}
.md0_c00361{transform:matrix(0.166996,0.001169,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166996,0.001169,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166996,0.001169,-0.001750,0.249994,0,0);}
.m53_c00361{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);}
.mcb_c00361{transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);}
.m1a_c00361{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);}
.mda_c00361{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);}
.m44_c00361{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);}
.m78_c00361{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);}
.m5e_c00361{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);}
.m129_c00361{transform:matrix(0.168753,0.002363,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168753,0.002363,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168753,0.002363,-0.003500,0.249976,0,0);}
.m107_c00361{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);}
.mc5_c00361{transform:matrix(0.169591,0.001187,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169591,0.001187,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169591,0.001187,-0.001750,0.249994,0,0);}
.m9a_c00361{transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169745,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{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);}
.m9f_c00361{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);}
.mde_c00361{transform:matrix(0.170073,0.002041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170073,0.002041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170073,0.002041,-0.003000,0.249982,0,0);}
.m8e_c00361{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);}
.m3e_c00361{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);}
.m144_c00361{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);}
.ma6_c00361{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);}
.m5f_c00361{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);}
.md4_c00361{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);}
.m76_c00361{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);}
.m73_c00361{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);}
.m13f_c00361{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);}
.m11_c00361{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);}
.mf3_c00361{transform:matrix(0.172181,0.001722,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172181,0.001722,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172181,0.001722,-0.002500,0.249988,0,0);}
.m48_c00361{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);}
.m80_c00361{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);}
.m97_c00361{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);}
.mc3_c00361{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);}
.m46_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);}
.m92_c00361{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);}
.m85_c00361{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);}
.m35_c00361{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);}
.md7_c00361{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);}
.ma3_c00361{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);}
.mdb_c00361{transform:matrix(0.175197,0.002102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175197,0.002102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175197,0.002102,-0.003000,0.249982,0,0);}
.ma8_c00361{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);}
.mcd_c00361{transform:matrix(0.175481,0.001228,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175481,0.001228,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175481,0.001228,-0.001750,0.249994,0,0);}
.m65_c00361{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);}
.m142_c00361{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);}
.mf8_c00361{transform:matrix(0.176066,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176066,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176066,0.001761,-0.002500,0.249988,0,0);}
.m74_c00361{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);}
.m11a_c00361{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);}
.m20_c00361{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);}
.m127_c00361{transform:matrix(0.176783,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176783,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176783,0.002475,-0.003500,0.249976,0,0);}
.mab_c00361{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);}
.m47_c00361{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);}
.m6c_c00361{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);}
.m9_c00361{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);}
.m36_c00361{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);}
.m18_c00361{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);}
.m6a_c00361{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);}
.m42_c00361{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);}
.md2_c00361{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);}
.m7f_c00361{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);}
.m11c_c00361{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);}
.mfe_c00361{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);}
.mbf_c00361{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);}
.me_c00361{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);}
.mb3_c00361{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);}
.m86_c00361{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);}
.m128_c00361{transform:matrix(0.181617,0.002543,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181617,0.002543,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181617,0.002543,-0.003500,0.249976,0,0);}
.mfa_c00361{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);}
.meb_c00361{transform:matrix(0.182096,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182096,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182096,0.001821,-0.002500,0.249988,0,0);}
.m49_c00361{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);}
.m71_c00361{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);}
.m41_c00361{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);}
.ma0_c00361{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_c00361{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);}
.m79_c00361{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);}
.mc8_c00361{transform:matrix(0.184315,0.001290,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184315,0.001290,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184315,0.001290,-0.001750,0.249994,0,0);}
.ma2_c00361{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);}
.m89_c00361{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);}
.m1f_c00361{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);}
.md9_c00361{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);}
.m9b_c00361{transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);}
.md_c00361{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);}
.m9c_c00361{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);}
.m45_c00361{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);}
.mfc_c00361{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);}
.m108_c00361{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);}
.m11d_c00361{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);}
.m1c_c00361{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);}
.m145_c00361{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);}
.m2c_c00361{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);}
.m5a_c00361{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);}
.m105_c00361{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);}
.m16_c00361{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);}
.m61_c00361{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);}
.m7b_c00361{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);}
.mb4_c00361{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);}
.m3f_c00361{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);}
.m100_c00361{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);}
.m94_c00361{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_c00361{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);}
.m8f_c00361{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);}
.mdf_c00361{transform:matrix(0.191436,0.002297,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191436,0.002297,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191436,0.002297,-0.003000,0.249982,0,0);}
.m2a_c00361{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);}
.m57_c00361{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);}
.m114_c00361{transform:matrix(0.191990,0.003072,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191990,0.003072,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191990,0.003072,-0.003999,0.249968,0,0);}
.maa_c00361{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);}
.m99_c00361{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);}
.md5_c00361{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);}
.m25_c00361{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);}
.m51_c00361{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);}
.m12b_c00361{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);}
.m12a_c00361{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);}
.m1e_c00361{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);}
.m101_c00361{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);}
.mf5_c00361{transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196420,0.001964,-0.002500,0.249988,0,0);}
.m22_c00361{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);}
.m5b_c00361{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);}
.mf0_c00361{transform:matrix(0.197220,0.001972,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197220,0.001972,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197220,0.001972,-0.002500,0.249988,0,0);}
.m24_c00361{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);}
.mc9_c00361{transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);}
.m5c_c00361{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);}
.m12c_c00361{transform:matrix(0.198421,0.002778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198421,0.002778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198421,0.002778,-0.003500,0.249976,0,0);}
.m6d_c00361{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);}
.mc7_c00361{transform:matrix(0.199085,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199085,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199085,0.001394,-0.001750,0.249994,0,0);}
.m91_c00361{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);}
.mf_c00361{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);}
.m68_c00361{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);}
.m112_c00361{transform:matrix(0.200564,0.003209,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200564,0.003209,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200564,0.003209,-0.003999,0.249968,0,0);}
.m11b_c00361{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);}
.m7a_c00361{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);}
.m8c_c00361{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);}
.me4_c00361{transform:matrix(0.201560,0.002419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201560,0.002419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201560,0.002419,-0.003000,0.249982,0,0);}
.m62_c00361{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);}
.m7c_c00361{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);}
.mb2_c00361{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);}
.mc6_c00361{transform:matrix(0.201735,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201735,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201735,0.001412,-0.001750,0.249994,0,0);}
.mcc_c00361{transform:matrix(0.201790,0.001413,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201790,0.001413,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201790,0.001413,-0.001750,0.249994,0,0);}
.m119_c00361{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);}
.m141_c00361{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);}
.m126_c00361{transform:matrix(0.202620,0.002837,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202620,0.002837,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202620,0.002837,-0.003500,0.249976,0,0);}
.m33_c00361{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);}
.ma7_c00361{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);}
.m117_c00361{transform:matrix(0.203204,0.003251,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203204,0.003251,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203204,0.003251,-0.003999,0.249968,0,0);}
.m21_c00361{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);}
.m121_c00361{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);}
.m5d_c00361{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);}
.m66_c00361{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_c00361{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);}
.m2d_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);}
.m27_c00361{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);}
.m143_c00361{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);}
.m32_c00361{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);}
.m23_c00361{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);}
.m6b_c00361{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.m125_c00361{transform:matrix(0.207455,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207455,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207455,0.002904,-0.003500,0.249976,0,0);}
.m37_c00361{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);}
.m59_c00361{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);}
.mca_c00361{transform:matrix(0.208515,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208515,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208515,0.001460,-0.001750,0.249994,0,0);}
.m81_c00361{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{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);}
.m3c_c00361{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);}
.mcf_c00361{transform:matrix(0.210230,0.001472,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210230,0.001472,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210230,0.001472,-0.001750,0.249994,0,0);}
.mac_c00361{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);}
.md1_c00361{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);}
.m131_c00361{transform:matrix(0.211234,0.003591,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211234,0.003591,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211234,0.003591,-0.004249,0.249964,0,0);}
.m7e_c00361{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);}
.m11f_c00361{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);}
.mf1_c00361{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);}
.m8d_c00361{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);}
.mdc_c00361{transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);}
.ma5_c00361{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);}
.me1_c00361{transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);}
.me0_c00361{transform:matrix(0.215444,0.002585,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215444,0.002585,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215444,0.002585,-0.003000,0.249982,0,0);}
.m4b_c00361{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);}
.m140_c00361{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);}
.mb0_c00361{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);}
.m11e_c00361{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.mff_c00361{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);}
.mf7_c00361{transform:matrix(0.222134,0.002221,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222134,0.002221,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222134,0.002221,-0.002500,0.249988,0,0);}
.mce_c00361{transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);}
.m12d_c00361{transform:matrix(0.226202,0.003845,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226202,0.003845,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226202,0.003845,-0.004249,0.249964,0,0);}
.m12e_c00361{transform:matrix(0.226217,0.003846,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226217,0.003846,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226217,0.003846,-0.004249,0.249964,0,0);}
.m3b_c00361{transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{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);}
.m122_c00361{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);}
.m64_c00361{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);}
.mbc_c00361{transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{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);}
.mc4_c00361{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);}
.m10d_c00361{transform:matrix(0.233315,0.003733,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233315,0.003733,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233315,0.003733,-0.003999,0.249968,0,0);}
.m13c_c00361{transform:matrix(0.233469,0.014270,-0.015252,0.249534,0,0);-ms-transform:matrix(0.233469,0.014270,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.233469,0.014270,-0.015252,0.249534,0,0);}
.m102_c00361{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);}
.me3_c00361{transform:matrix(0.235303,0.002824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235303,0.002824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235303,0.002824,-0.003000,0.249982,0,0);}
.m111_c00361{transform:matrix(0.236860,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236860,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236860,0.003790,-0.003999,0.249968,0,0);}
.m115_c00361{transform:matrix(0.237090,0.003793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237090,0.003793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237090,0.003793,-0.003999,0.249968,0,0);}
.ma1_c00361{transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);}
.m10a_c00361{transform:matrix(0.239809,0.003837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239809,0.003837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239809,0.003837,-0.003999,0.249968,0,0);}
.m83_c00361{transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240560,0.000000,0.000000,0.250000,0,0);}
.m10c_c00361{transform:matrix(0.240589,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240589,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240589,0.003849,-0.003999,0.249968,0,0);}
.m12f_c00361{transform:matrix(0.241580,0.004107,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241580,0.004107,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241580,0.004107,-0.004249,0.249964,0,0);}
.m43_c00361{transform:matrix(0.241830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241830,0.000000,0.000000,0.250000,0,0);}
.m103_c00361{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);}
.m10b_c00361{transform:matrix(0.243519,0.003896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243519,0.003896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243519,0.003896,-0.003999,0.249968,0,0);}
.m58_c00361{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);}
.m118_c00361{transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);}
.mb9_c00361{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m10f_c00361{transform:matrix(0.245714,0.003931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245714,0.003931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245714,0.003931,-0.003999,0.249968,0,0);}
.m60_c00361{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m123_c00361{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{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);}
.m109_c00361{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);}
.m4c_c00361{transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);}
.m10e_c00361{transform:matrix(0.264541,0.004233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264541,0.004233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264541,0.004233,-0.003999,0.249968,0,0);}
.mc_c00361{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);}
.m17_c00361{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);}
.m4d_c00361{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);}
.mf6_c00361{transform:matrix(0.267582,0.002676,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267582,0.002676,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267582,0.002676,-0.002500,0.249988,0,0);}
.m13e_c00361{transform:matrix(0.270680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270680,0.000000,0.000000,0.250000,0,0);}
.m130_c00361{transform:matrix(0.284864,0.004843,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284864,0.004843,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284864,0.004843,-0.004249,0.249964,0,0);}
.m137_c00361{transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298815,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299510,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.304620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304620,0.000000,0.000000,0.250000,0,0);}
.mb1_c00361{transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.312515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312515,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.314785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314785,0.000000,0.000000,0.250000,0,0);}
.mb7_c00361{transform:matrix(0.324730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324730,0.000000,0.000000,0.250000,0,0);}
.m90_c00361{transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);}
.mf2_c00361{transform:matrix(0.325954,0.003260,-0.002500,0.249988,0,0);-ms-transform:matrix(0.325954,0.003260,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.325954,0.003260,-0.002500,0.249988,0,0);}
.m7_c00361{transform:matrix(0.328030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328030,0.000000,0.000000,0.250000,0,0);}
.mf9_c00361{transform:matrix(0.339608,0.003396,-0.002500,0.249988,0,0);-ms-transform:matrix(0.339608,0.003396,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.339608,0.003396,-0.002500,0.249988,0,0);}
.m3_c00361{transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349795,0.000000,0.000000,0.250000,0,0);}
.mc2_c00361{transform:matrix(0.355645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355645,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.368385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368385,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.380400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380400,0.000000,0.000000,0.250000,0,0);}
.mb8_c00361{transform:matrix(0.381590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381590,0.000000,0.000000,0.250000,0,0);}
.m124_c00361{transform:matrix(0.383380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383380,0.000000,0.000000,0.250000,0,0);}
.m139_c00361{transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.427240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427240,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.490165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490165,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.490440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490440,0.000000,0.000000,0.250000,0,0);}
.mba_c00361{transform:matrix(0.568060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568060,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.584130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584130,0.000000,0.000000,0.250000,0,0);}
.mb5_c00361{transform:matrix(0.607080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607080,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.629835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629835,0.000000,0.000000,0.250000,0,0);}
.m136_c00361{transform:matrix(0.747780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747780,0.000000,0.000000,0.250000,0,0);}
.m13a_c00361{transform:matrix(0.759343,0.046413,-0.015252,0.249534,0,0);-ms-transform:matrix(0.759343,0.046413,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.759343,0.046413,-0.015252,0.249534,0,0);}
.m135_c00361{transform:matrix(0.776990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776990,0.000000,0.000000,0.250000,0,0);}
.m13b_c00361{transform:matrix(0.915946,0.055985,-0.015252,0.249534,0,0);-ms-transform:matrix(0.915946,0.055985,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.915946,0.055985,-0.015252,0.249534,0,0);}
.mb6_c00361{transform:matrix(1.320375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320375,0.000000,0.000000,0.250000,0,0);}
.m134_c00361{transform:matrix(1.586890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.586890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.586890,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;}
.fs19_c00361{font-size:22.046968px;}
.fs18_c00361{font-size:22.050000px;}
.fs16_c00361{font-size:29.400000px;}
.fs10_c00361{font-size:43.055510px;}
.fs15_c00361{font-size:45.156524px;}
.fs17_c00361{font-size:46.200000px;}
.fs13_c00361{font-size:51.450000px;}
.fs11_c00361{font-size:52.506720px;}
.fs12_c00361{font-size:53.550000px;}
.fs14_c00361{font-size:53.555248px;}
.fse_c00361{font-size:55.652782px;}
.fsf_c00361{font-size:58.800000px;}
.fsd_c00361{font-size:59.854309px;}
.fsc_c00361{font-size:64.051569px;}
.fsb_c00361{font-size:65.100000px;}
.fs7_c00361{font-size:68.250000px;}
.fs5_c00361{font-size:69.300000px;}
.fs6_c00361{font-size:70.350000px;}
.fs4_c00361{font-size:71.400000px;}
.fs3_c00361{font-size:72.450000px;}
.fsa_c00361{font-size:74.550000px;}
.fs9_c00361{font-size:75.600000px;}
.fs8_c00361{font-size:78.750000px;}
.fs0_c00361{font-size:97.650000px;}
.fs1_c00361{font-size:100.800000px;}
.fs2_c00361{font-size:135.450000px;}
.y0_c00361{bottom:0.000000px;}
.y66_c00361{bottom:103.296000px;}
.y6a_c00361{bottom:104.952576px;}
.y69_c00361{bottom:107.463977px;}
.y67_c00361{bottom:108.540000px;}
.y68_c00361{bottom:108.819000px;}
.y65_c00361{bottom:114.295500px;}
.y56_c00361{bottom:158.398500px;}
.y63_c00361{bottom:165.596848px;}
.y62_c00361{bottom:166.574544px;}
.y61_c00361{bottom:166.918667px;}
.y60_c00361{bottom:167.855664px;}
.y5f_c00361{bottom:168.214500px;}
.y64_c00361{bottom:176.115000px;}
.y55_c00361{bottom:176.575500px;}
.y5e_c00361{bottom:185.025768px;}
.y5d_c00361{bottom:185.559231px;}
.y5c_c00361{bottom:186.334320px;}
.y5b_c00361{bottom:186.538419px;}
.y5a_c00361{bottom:186.765135px;}
.y59_c00361{bottom:187.113126px;}
.y58_c00361{bottom:187.574454px;}
.y57_c00361{bottom:187.921500px;}
.y4f_c00361{bottom:194.887392px;}
.y54_c00361{bottom:194.887440px;}
.y53_c00361{bottom:194.887476px;}
.y52_c00361{bottom:194.887536px;}
.y50_c00361{bottom:194.887620px;}
.y4e_c00361{bottom:194.887968px;}
.y51_c00361{bottom:194.888124px;}
.y4d_c00361{bottom:203.793492px;}
.y4c_c00361{bottom:204.656580px;}
.y4b_c00361{bottom:205.618236px;}
.y4a_c00361{bottom:205.913748px;}
.y49_c00361{bottom:206.850372px;}
.y48_c00361{bottom:207.178452px;}
.y47_c00361{bottom:207.631500px;}
.y6b_c00361{bottom:212.898000px;}
.y46_c00361{bottom:223.863000px;}
.y45_c00361{bottom:242.492865px;}
.y44_c00361{bottom:243.059940px;}
.y43_c00361{bottom:243.265125px;}
.y42_c00361{bottom:243.489375px;}
.y41_c00361{bottom:244.032105px;}
.y40_c00361{bottom:244.288680px;}
.y3f_c00361{bottom:244.657725px;}
.y3e_c00361{bottom:244.731300px;}
.y3d_c00361{bottom:245.276295px;}
.y3c_c00361{bottom:245.489610px;}
.y3b_c00361{bottom:245.854200px;}
.y3a_c00361{bottom:245.986500px;}
.y39_c00361{bottom:246.080640px;}
.y38_c00361{bottom:246.190950px;}
.y37_c00361{bottom:246.637125px;}
.y36_c00361{bottom:246.780000px;}
.y35_c00361{bottom:262.013892px;}
.y34_c00361{bottom:262.383306px;}
.y33_c00361{bottom:262.687344px;}
.y32_c00361{bottom:263.209452px;}
.y31_c00361{bottom:263.445882px;}
.y30_c00361{bottom:264.058746px;}
.y2f_c00361{bottom:264.311484px;}
.y2e_c00361{bottom:264.573636px;}
.y2d_c00361{bottom:264.904566px;}
.y2c_c00361{bottom:265.393428px;}
.y2b_c00361{bottom:265.675254px;}
.y2a_c00361{bottom:266.336016px;}
.y29_c00361{bottom:266.673300px;}
.y28_c00361{bottom:267.107658px;}
.y27_c00361{bottom:267.301500px;}
.y26_c00361{bottom:318.727500px;}
.y25_c00361{bottom:345.687698px;}
.y24_c00361{bottom:345.897257px;}
.y23_c00361{bottom:346.175066px;}
.y22_c00361{bottom:346.279016px;}
.y21_c00361{bottom:346.676168px;}
.y20_c00361{bottom:346.848021px;}
.y1f_c00361{bottom:347.103486px;}
.y1e_c00361{bottom:347.250518px;}
.y1d_c00361{bottom:347.615519px;}
.y1c_c00361{bottom:347.855402px;}
.y1b_c00361{bottom:348.178739px;}
.y1a_c00361{bottom:348.570000px;}
.y19_c00361{bottom:377.239500px;}
.y18_c00361{bottom:417.568500px;}
.y17_c00361{bottom:457.608000px;}
.y16_c00361{bottom:479.676000px;}
.y15_c00361{bottom:502.362000px;}
.y14_c00361{bottom:530.499000px;}
.y13_c00361{bottom:553.960500px;}
.y12_c00361{bottom:581.229000px;}
.y11_c00361{bottom:603.882000px;}
.y10_c00361{bottom:631.404000px;}
.yf_c00361{bottom:653.761500px;}
.ye_c00361{bottom:682.029000px;}
.yd_c00361{bottom:704.929500px;}
.yc_c00361{bottom:732.589500px;}
.yb_c00361{bottom:759.697500px;}
.ya_c00361{bottom:782.632500px;}
.y9_c00361{bottom:805.039500px;}
.y8_c00361{bottom:828.150000px;}
.y3_c00361{bottom:868.596000px;}
.y4_c00361{bottom:869.802000px;}
.y5_c00361{bottom:871.024500px;}
.y6_c00361{bottom:872.971500px;}
.y7_c00361{bottom:875.644500px;}
.y2_c00361{bottom:914.071500px;}
.y1_c00361{bottom:930.945000px;}
.h1b_c00361{height:22.046968px;}
.h1a_c00361{height:22.050000px;}
.h18_c00361{height:29.400000px;}
.h12_c00361{height:43.055510px;}
.h17_c00361{height:45.156524px;}
.h19_c00361{height:46.200000px;}
.h15_c00361{height:51.450000px;}
.h13_c00361{height:52.506720px;}
.h14_c00361{height:53.550000px;}
.h16_c00361{height:53.555248px;}
.h10_c00361{height:55.652782px;}
.h11_c00361{height:58.800000px;}
.hf_c00361{height:59.854309px;}
.he_c00361{height:64.051569px;}
.hd_c00361{height:65.100000px;}
.h9_c00361{height:68.250000px;}
.h7_c00361{height:69.300000px;}
.h8_c00361{height:70.350000px;}
.h6_c00361{height:71.400000px;}
.h5_c00361{height:72.450000px;}
.hc_c00361{height:74.550000px;}
.hb_c00361{height:75.600000px;}
.ha_c00361{height:78.750000px;}
.h2_c00361{height:97.650000px;}
.h3_c00361{height:100.800000px;}
.h4_c00361{height:135.450000px;}
.h0_c00361{height:1008.450000px;}
.h1_c00361{height:1008.750000px;}
.w0_c00361{width:696.000000px;}
.x0_c00361{left:0.000000px;}
.xb0_c00361{left:76.950000px;}
.xb1_c00361{left:106.110000px;}
.x1_c00361{left:108.270000px;}
.x7_c00361{left:109.350000px;}
.x31_c00361{left:153.360000px;}
.xb2_c00361{left:155.520000px;}
.x4b_c00361{left:159.840000px;}
.x1a_c00361{left:162.000000px;}
.xa_c00361{left:164.212500px;}
.x76_c00361{left:174.420000px;}
.x5c_c00361{left:180.090000px;}
.xf_c00361{left:181.170000px;}
.x9f_c00361{left:183.330000px;}
.x84_c00361{left:184.950000px;}
.xa6_c00361{left:188.862000px;}
.x51_c00361{left:190.620000px;}
.x85_c00361{left:192.780000px;}
.x2_c00361{left:194.400000px;}
.x38_c00361{left:196.560000px;}
.x52_c00361{left:198.180000px;}
.x32_c00361{left:200.880000px;}
.x5d_c00361{left:204.390000px;}
.x10_c00361{left:208.440000px;}
.x3f_c00361{left:209.790000px;}
.x1b_c00361{left:213.840000px;}
.x26_c00361{left:216.000000px;}
.x33_c00361{left:217.080000px;}
.x4c_c00361{left:218.970000px;}
.x6e_c00361{left:220.860000px;}
.x59_c00361{left:221.940000px;}
.x77_c00361{left:224.910000px;}
.xb_c00361{left:227.667000px;}
.x99_c00361{left:230.518500px;}
.x86_c00361{left:232.200000px;}
.x5e_c00361{left:234.090000px;}
.xae_c00361{left:236.106000px;}
.x27_c00361{left:237.600000px;}
.x9a_c00361{left:239.932500px;}
.x4d_c00361{left:241.650000px;}
.x63_c00361{left:243.540000px;}
.xa0_c00361{left:245.430000px;}
.x1c_c00361{left:252.990000px;}
.xaf_c00361{left:256.348500px;}
.x3_c00361{left:258.390000px;}
.x6f_c00361{left:261.360000px;}
.x11_c00361{left:262.710000px;}
.x34_c00361{left:265.410000px;}
.xa1_c00361{left:267.570000px;}
.x78_c00361{left:269.730000px;}
.x4e_c00361{left:274.050000px;}
.x40_c00361{left:275.130000px;}
.x8e_c00361{left:279.990000px;}
.x8b_c00361{left:281.275500px;}
.x1d_c00361{left:282.690000px;}
.x39_c00361{left:286.200000px;}
.x9b_c00361{left:289.621500px;}
.xc_c00361{left:291.973500px;}
.x28_c00361{left:293.220000px;}
.x53_c00361{left:295.110000px;}
.x4f_c00361{left:296.460000px;}
.xa2_c00361{left:301.860000px;}
.x8f_c00361{left:302.940000px;}
.x64_c00361{left:308.880000px;}
.x87_c00361{left:310.230000px;}
.x12_c00361{left:311.850000px;}
.x8_c00361{left:313.200000px;}
.x3a_c00361{left:315.900000px;}
.x41_c00361{left:318.060000px;}
.x72_c00361{left:320.760000px;}
.xad_c00361{left:328.479000px;}
.x4_c00361{left:331.560000px;}
.x29_c00361{left:334.800000px;}
.x50_c00361{left:342.090000px;}
.x42_c00361{left:343.710000px;}
.x6a_c00361{left:345.600000px;}
.x1e_c00361{left:347.490000px;}
.x13_c00361{left:348.570000px;}
.x3b_c00361{left:350.730000px;}
.x70_c00361{left:353.430000px;}
.x65_c00361{left:357.480000px;}
.x88_c00361{left:362.880000px;}
.x5_c00361{left:364.230000px;}
.x9c_c00361{left:365.452500px;}
.x35_c00361{left:367.200000px;}
.x1f_c00361{left:369.090000px;}
.x54_c00361{left:370.440000px;}
.x93_c00361{left:373.245000px;}
.x6b_c00361{left:375.030000px;}
.x43_c00361{left:378.810000px;}
.x36_c00361{left:384.480000px;}
.x3c_c00361{left:385.560000px;}
.x9_c00361{left:387.450000px;}
.x7c_c00361{left:389.610000px;}
.x5a_c00361{left:393.120000px;}
.xd_c00361{left:394.467000px;}
.x82_c00361{left:397.710000px;}
.x94_c00361{left:400.822500px;}
.x14_c00361{left:405.000000px;}
.x2a_c00361{left:408.780000px;}
.x6c_c00361{left:410.400000px;}
.x55_c00361{left:412.560000px;}
.x37_c00361{left:413.640000px;}
.x7d_c00361{left:417.690000px;}
.x20_c00361{left:420.660000px;}
.x95_c00361{left:422.668500px;}
.x15_c00361{left:424.980000px;}
.x44_c00361{left:426.060000px;}
.xa9_c00361{left:428.760000px;}
.x2b_c00361{left:430.920000px;}
.x66_c00361{left:432.000000px;}
.x56_c00361{left:434.970000px;}
.x90_c00361{left:436.050000px;}
.x83_c00361{left:437.670000px;}
.x5b_c00361{left:441.450000px;}
.x79_c00361{left:443.610000px;}
.xa8_c00361{left:445.230000px;}
.xb6_c00361{left:446.850000px;}
.x7e_c00361{left:449.550000px;}
.x67_c00361{left:452.790000px;}
.x6_c00361{left:454.410000px;}
.x71_c00361{left:463.050000px;}
.x45_c00361{left:466.020000px;}
.x3d_c00361{left:470.340000px;}
.x73_c00361{left:471.690000px;}
.x7f_c00361{left:473.850000px;}
.x2c_c00361{left:475.740000px;}
.x21_c00361{left:477.630000px;}
.x5f_c00361{left:481.140000px;}
.xa3_c00361{left:483.030000px;}
.x68_c00361{left:484.110000px;}
.xaa_c00361{left:487.080000px;}
.x46_c00361{left:489.240000px;}
.x96_c00361{left:494.802000px;}
.x3e_c00361{left:496.530000px;}
.x16_c00361{left:499.230000px;}
.x89_c00361{left:503.550000px;}
.x57_c00361{left:505.170000px;}
.x8c_c00361{left:506.473500px;}
.x74_c00361{left:510.570000px;}
.x91_c00361{left:511.650000px;}
.x60_c00361{left:512.730000px;}
.x2d_c00361{left:515.160000px;}
.x80_c00361{left:517.320000px;}
.x22_c00361{left:521.100000px;}
.x17_c00361{left:522.180000px;}
.x58_c00361{left:524.610000px;}
.xb7_c00361{left:528.120000px;}
.x81_c00361{left:530.010000px;}
.x9d_c00361{left:532.588500px;}
.xb4_c00361{left:533.942073px;}
.xe_c00361{left:535.186500px;}
.xa4_c00361{left:541.080000px;}
.x23_c00361{left:542.700000px;}
.x75_c00361{left:545.400000px;}
.x6d_c00361{left:547.020000px;}
.x8a_c00361{left:548.910000px;}
.x18_c00361{left:550.260000px;}
.xa7_c00361{left:551.659248px;}
.xb3_c00361{left:552.690000px;}
.x97_c00361{left:558.013500px;}
.x47_c00361{left:560.520000px;}
.xab_c00361{left:562.140000px;}
.x7a_c00361{left:567.270000px;}
.x2e_c00361{left:569.430000px;}
.xa5_c00361{left:571.860000px;}
.x69_c00361{left:573.480000px;}
.xb5_c00361{left:575.030232px;}
.xb8_c00361{left:576.180000px;}
.x48_c00361{left:583.200000px;}
.x2f_c00361{left:586.170000px;}
.x9e_c00361{left:589.296000px;}
.x8d_c00361{left:590.947500px;}
.xb9_c00361{left:593.460000px;}
.x61_c00361{left:595.350000px;}
.xac_c00361{left:600.480000px;}
.x49_c00361{left:601.560000px;}
.x92_c00361{left:603.180000px;}
.x24_c00361{left:605.340000px;}
.xba_c00361{left:608.040000px;}
.x7b_c00361{left:610.470000px;}
.x98_c00361{left:614.134500px;}
.x4a_c00361{left:615.330000px;}
.x62_c00361{left:616.410000px;}
.x19_c00361{left:619.920000px;}
.x25_c00361{left:621.540000px;}
.x30_c00361{left:632.880000px;}
.xbb_c00361{left:646.380000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.fs19_c00361{font-size:19.597305pt;}
.fs18_c00361{font-size:19.600000pt;}
.fs16_c00361{font-size:26.133333pt;}
.fs10_c00361{font-size:38.271564pt;}
.fs15_c00361{font-size:40.139132pt;}
.fs17_c00361{font-size:41.066667pt;}
.fs13_c00361{font-size:45.733333pt;}
.fs11_c00361{font-size:46.672640pt;}
.fs12_c00361{font-size:47.600000pt;}
.fs14_c00361{font-size:47.604665pt;}
.fse_c00361{font-size:49.469140pt;}
.fsf_c00361{font-size:52.266667pt;}
.fsd_c00361{font-size:53.203830pt;}
.fsc_c00361{font-size:56.934728pt;}
.fsb_c00361{font-size:57.866667pt;}
.fs7_c00361{font-size:60.666667pt;}
.fs5_c00361{font-size:61.600000pt;}
.fs6_c00361{font-size:62.533333pt;}
.fs4_c00361{font-size:63.466667pt;}
.fs3_c00361{font-size:64.400000pt;}
.fsa_c00361{font-size:66.266667pt;}
.fs9_c00361{font-size:67.200000pt;}
.fs8_c00361{font-size:70.000000pt;}
.fs0_c00361{font-size:86.800000pt;}
.fs1_c00361{font-size:89.600000pt;}
.fs2_c00361{font-size:120.400000pt;}
.y0_c00361{bottom:0.000000pt;}
.y66_c00361{bottom:91.818667pt;}
.y6a_c00361{bottom:93.291179pt;}
.y69_c00361{bottom:95.523535pt;}
.y67_c00361{bottom:96.480000pt;}
.y68_c00361{bottom:96.728000pt;}
.y65_c00361{bottom:101.596000pt;}
.y56_c00361{bottom:140.798667pt;}
.y63_c00361{bottom:147.197199pt;}
.y62_c00361{bottom:148.066261pt;}
.y61_c00361{bottom:148.372148pt;}
.y60_c00361{bottom:149.205035pt;}
.y5f_c00361{bottom:149.524000pt;}
.y64_c00361{bottom:156.546667pt;}
.y55_c00361{bottom:156.956000pt;}
.y5e_c00361{bottom:164.467349pt;}
.y5d_c00361{bottom:164.941539pt;}
.y5c_c00361{bottom:165.630507pt;}
.y5b_c00361{bottom:165.811928pt;}
.y5a_c00361{bottom:166.013453pt;}
.y59_c00361{bottom:166.322779pt;}
.y58_c00361{bottom:166.732848pt;}
.y57_c00361{bottom:167.041333pt;}
.y4f_c00361{bottom:173.233237pt;}
.y54_c00361{bottom:173.233280pt;}
.y53_c00361{bottom:173.233312pt;}
.y52_c00361{bottom:173.233365pt;}
.y50_c00361{bottom:173.233440pt;}
.y4e_c00361{bottom:173.233749pt;}
.y51_c00361{bottom:173.233888pt;}
.y4d_c00361{bottom:181.149771pt;}
.y4c_c00361{bottom:181.916960pt;}
.y4b_c00361{bottom:182.771765pt;}
.y4a_c00361{bottom:183.034443pt;}
.y49_c00361{bottom:183.866997pt;}
.y48_c00361{bottom:184.158624pt;}
.y47_c00361{bottom:184.561333pt;}
.y6b_c00361{bottom:189.242667pt;}
.y46_c00361{bottom:198.989333pt;}
.y45_c00361{bottom:215.549213pt;}
.y44_c00361{bottom:216.053280pt;}
.y43_c00361{bottom:216.235667pt;}
.y42_c00361{bottom:216.435000pt;}
.y41_c00361{bottom:216.917427pt;}
.y40_c00361{bottom:217.145493pt;}
.y3f_c00361{bottom:217.473533pt;}
.y3e_c00361{bottom:217.538933pt;}
.y3d_c00361{bottom:218.023373pt;}
.y3c_c00361{bottom:218.212987pt;}
.y3b_c00361{bottom:218.537067pt;}
.y3a_c00361{bottom:218.654667pt;}
.y39_c00361{bottom:218.738347pt;}
.y38_c00361{bottom:218.836400pt;}
.y37_c00361{bottom:219.233000pt;}
.y36_c00361{bottom:219.360000pt;}
.y35_c00361{bottom:232.901237pt;}
.y34_c00361{bottom:233.229605pt;}
.y33_c00361{bottom:233.499861pt;}
.y32_c00361{bottom:233.963957pt;}
.y31_c00361{bottom:234.174117pt;}
.y30_c00361{bottom:234.718885pt;}
.y2f_c00361{bottom:234.943541pt;}
.y2e_c00361{bottom:235.176565pt;}
.y2d_c00361{bottom:235.470725pt;}
.y2c_c00361{bottom:235.905269pt;}
.y2b_c00361{bottom:236.155781pt;}
.y2a_c00361{bottom:236.743125pt;}
.y29_c00361{bottom:237.042933pt;}
.y28_c00361{bottom:237.429029pt;}
.y27_c00361{bottom:237.601333pt;}
.y26_c00361{bottom:283.313333pt;}
.y25_c00361{bottom:307.277953pt;}
.y24_c00361{bottom:307.464228pt;}
.y23_c00361{bottom:307.711169pt;}
.y22_c00361{bottom:307.803569pt;}
.y21_c00361{bottom:308.156593pt;}
.y20_c00361{bottom:308.309352pt;}
.y1f_c00361{bottom:308.536432pt;}
.y1e_c00361{bottom:308.667127pt;}
.y1d_c00361{bottom:308.991572pt;}
.y1c_c00361{bottom:309.204801pt;}
.y1b_c00361{bottom:309.492212pt;}
.y1a_c00361{bottom:309.840000pt;}
.y19_c00361{bottom:335.324000pt;}
.y18_c00361{bottom:371.172000pt;}
.y17_c00361{bottom:406.762667pt;}
.y16_c00361{bottom:426.378667pt;}
.y15_c00361{bottom:446.544000pt;}
.y14_c00361{bottom:471.554667pt;}
.y13_c00361{bottom:492.409333pt;}
.y12_c00361{bottom:516.648000pt;}
.y11_c00361{bottom:536.784000pt;}
.y10_c00361{bottom:561.248000pt;}
.yf_c00361{bottom:581.121333pt;}
.ye_c00361{bottom:606.248000pt;}
.yd_c00361{bottom:626.604000pt;}
.yc_c00361{bottom:651.190667pt;}
.yb_c00361{bottom:675.286667pt;}
.ya_c00361{bottom:695.673333pt;}
.y9_c00361{bottom:715.590667pt;}
.y8_c00361{bottom:736.133333pt;}
.y3_c00361{bottom:772.085333pt;}
.y4_c00361{bottom:773.157333pt;}
.y5_c00361{bottom:774.244000pt;}
.y6_c00361{bottom:775.974667pt;}
.y7_c00361{bottom:778.350667pt;}
.y2_c00361{bottom:812.508000pt;}
.y1_c00361{bottom:827.506667pt;}
.h1b_c00361{height:19.597305pt;}
.h1a_c00361{height:19.600000pt;}
.h18_c00361{height:26.133333pt;}
.h12_c00361{height:38.271564pt;}
.h17_c00361{height:40.139132pt;}
.h19_c00361{height:41.066667pt;}
.h15_c00361{height:45.733333pt;}
.h13_c00361{height:46.672640pt;}
.h14_c00361{height:47.600000pt;}
.h16_c00361{height:47.604665pt;}
.h10_c00361{height:49.469140pt;}
.h11_c00361{height:52.266667pt;}
.hf_c00361{height:53.203830pt;}
.he_c00361{height:56.934728pt;}
.hd_c00361{height:57.866667pt;}
.h9_c00361{height:60.666667pt;}
.h7_c00361{height:61.600000pt;}
.h8_c00361{height:62.533333pt;}
.h6_c00361{height:63.466667pt;}
.h5_c00361{height:64.400000pt;}
.hc_c00361{height:66.266667pt;}
.hb_c00361{height:67.200000pt;}
.ha_c00361{height:70.000000pt;}
.h2_c00361{height:86.800000pt;}
.h3_c00361{height:89.600000pt;}
.h4_c00361{height:120.400000pt;}
.h0_c00361{height:896.400000pt;}
.h1_c00361{height:896.666667pt;}
.w0_c00361{width:618.666667pt;}
.x0_c00361{left:0.000000pt;}
.xb0_c00361{left:68.400000pt;}
.xb1_c00361{left:94.320000pt;}
.x1_c00361{left:96.240000pt;}
.x7_c00361{left:97.200000pt;}
.x31_c00361{left:136.320000pt;}
.xb2_c00361{left:138.240000pt;}
.x4b_c00361{left:142.080000pt;}
.x1a_c00361{left:144.000000pt;}
.xa_c00361{left:145.966667pt;}
.x76_c00361{left:155.040000pt;}
.x5c_c00361{left:160.080000pt;}
.xf_c00361{left:161.040000pt;}
.x9f_c00361{left:162.960000pt;}
.x84_c00361{left:164.400000pt;}
.xa6_c00361{left:167.877333pt;}
.x51_c00361{left:169.440000pt;}
.x85_c00361{left:171.360000pt;}
.x2_c00361{left:172.800000pt;}
.x38_c00361{left:174.720000pt;}
.x52_c00361{left:176.160000pt;}
.x32_c00361{left:178.560000pt;}
.x5d_c00361{left:181.680000pt;}
.x10_c00361{left:185.280000pt;}
.x3f_c00361{left:186.480000pt;}
.x1b_c00361{left:190.080000pt;}
.x26_c00361{left:192.000000pt;}
.x33_c00361{left:192.960000pt;}
.x4c_c00361{left:194.640000pt;}
.x6e_c00361{left:196.320000pt;}
.x59_c00361{left:197.280000pt;}
.x77_c00361{left:199.920000pt;}
.xb_c00361{left:202.370667pt;}
.x99_c00361{left:204.905333pt;}
.x86_c00361{left:206.400000pt;}
.x5e_c00361{left:208.080000pt;}
.xae_c00361{left:209.872000pt;}
.x27_c00361{left:211.200000pt;}
.x9a_c00361{left:213.273333pt;}
.x4d_c00361{left:214.800000pt;}
.x63_c00361{left:216.480000pt;}
.xa0_c00361{left:218.160000pt;}
.x1c_c00361{left:224.880000pt;}
.xaf_c00361{left:227.865333pt;}
.x3_c00361{left:229.680000pt;}
.x6f_c00361{left:232.320000pt;}
.x11_c00361{left:233.520000pt;}
.x34_c00361{left:235.920000pt;}
.xa1_c00361{left:237.840000pt;}
.x78_c00361{left:239.760000pt;}
.x4e_c00361{left:243.600000pt;}
.x40_c00361{left:244.560000pt;}
.x8e_c00361{left:248.880000pt;}
.x8b_c00361{left:250.022667pt;}
.x1d_c00361{left:251.280000pt;}
.x39_c00361{left:254.400000pt;}
.x9b_c00361{left:257.441333pt;}
.xc_c00361{left:259.532000pt;}
.x28_c00361{left:260.640000pt;}
.x53_c00361{left:262.320000pt;}
.x4f_c00361{left:263.520000pt;}
.xa2_c00361{left:268.320000pt;}
.x8f_c00361{left:269.280000pt;}
.x64_c00361{left:274.560000pt;}
.x87_c00361{left:275.760000pt;}
.x12_c00361{left:277.200000pt;}
.x8_c00361{left:278.400000pt;}
.x3a_c00361{left:280.800000pt;}
.x41_c00361{left:282.720000pt;}
.x72_c00361{left:285.120000pt;}
.xad_c00361{left:291.981333pt;}
.x4_c00361{left:294.720000pt;}
.x29_c00361{left:297.600000pt;}
.x50_c00361{left:304.080000pt;}
.x42_c00361{left:305.520000pt;}
.x6a_c00361{left:307.200000pt;}
.x1e_c00361{left:308.880000pt;}
.x13_c00361{left:309.840000pt;}
.x3b_c00361{left:311.760000pt;}
.x70_c00361{left:314.160000pt;}
.x65_c00361{left:317.760000pt;}
.x88_c00361{left:322.560000pt;}
.x5_c00361{left:323.760000pt;}
.x9c_c00361{left:324.846667pt;}
.x35_c00361{left:326.400000pt;}
.x1f_c00361{left:328.080000pt;}
.x54_c00361{left:329.280000pt;}
.x93_c00361{left:331.773333pt;}
.x6b_c00361{left:333.360000pt;}
.x43_c00361{left:336.720000pt;}
.x36_c00361{left:341.760000pt;}
.x3c_c00361{left:342.720000pt;}
.x9_c00361{left:344.400000pt;}
.x7c_c00361{left:346.320000pt;}
.x5a_c00361{left:349.440000pt;}
.xd_c00361{left:350.637333pt;}
.x82_c00361{left:353.520000pt;}
.x94_c00361{left:356.286667pt;}
.x14_c00361{left:360.000000pt;}
.x2a_c00361{left:363.360000pt;}
.x6c_c00361{left:364.800000pt;}
.x55_c00361{left:366.720000pt;}
.x37_c00361{left:367.680000pt;}
.x7d_c00361{left:371.280000pt;}
.x20_c00361{left:373.920000pt;}
.x95_c00361{left:375.705333pt;}
.x15_c00361{left:377.760000pt;}
.x44_c00361{left:378.720000pt;}
.xa9_c00361{left:381.120000pt;}
.x2b_c00361{left:383.040000pt;}
.x66_c00361{left:384.000000pt;}
.x56_c00361{left:386.640000pt;}
.x90_c00361{left:387.600000pt;}
.x83_c00361{left:389.040000pt;}
.x5b_c00361{left:392.400000pt;}
.x79_c00361{left:394.320000pt;}
.xa8_c00361{left:395.760000pt;}
.xb6_c00361{left:397.200000pt;}
.x7e_c00361{left:399.600000pt;}
.x67_c00361{left:402.480000pt;}
.x6_c00361{left:403.920000pt;}
.x71_c00361{left:411.600000pt;}
.x45_c00361{left:414.240000pt;}
.x3d_c00361{left:418.080000pt;}
.x73_c00361{left:419.280000pt;}
.x7f_c00361{left:421.200000pt;}
.x2c_c00361{left:422.880000pt;}
.x21_c00361{left:424.560000pt;}
.x5f_c00361{left:427.680000pt;}
.xa3_c00361{left:429.360000pt;}
.x68_c00361{left:430.320000pt;}
.xaa_c00361{left:432.960000pt;}
.x46_c00361{left:434.880000pt;}
.x96_c00361{left:439.824000pt;}
.x3e_c00361{left:441.360000pt;}
.x16_c00361{left:443.760000pt;}
.x89_c00361{left:447.600000pt;}
.x57_c00361{left:449.040000pt;}
.x8c_c00361{left:450.198667pt;}
.x74_c00361{left:453.840000pt;}
.x91_c00361{left:454.800000pt;}
.x60_c00361{left:455.760000pt;}
.x2d_c00361{left:457.920000pt;}
.x80_c00361{left:459.840000pt;}
.x22_c00361{left:463.200000pt;}
.x17_c00361{left:464.160000pt;}
.x58_c00361{left:466.320000pt;}
.xb7_c00361{left:469.440000pt;}
.x81_c00361{left:471.120000pt;}
.x9d_c00361{left:473.412000pt;}
.xb4_c00361{left:474.615176pt;}
.xe_c00361{left:475.721333pt;}
.xa4_c00361{left:480.960000pt;}
.x23_c00361{left:482.400000pt;}
.x75_c00361{left:484.800000pt;}
.x6d_c00361{left:486.240000pt;}
.x8a_c00361{left:487.920000pt;}
.x18_c00361{left:489.120000pt;}
.xa7_c00361{left:490.363776pt;}
.xb3_c00361{left:491.280000pt;}
.x97_c00361{left:496.012000pt;}
.x47_c00361{left:498.240000pt;}
.xab_c00361{left:499.680000pt;}
.x7a_c00361{left:504.240000pt;}
.x2e_c00361{left:506.160000pt;}
.xa5_c00361{left:508.320000pt;}
.x69_c00361{left:509.760000pt;}
.xb5_c00361{left:511.137984pt;}
.xb8_c00361{left:512.160000pt;}
.x48_c00361{left:518.400000pt;}
.x2f_c00361{left:521.040000pt;}
.x9e_c00361{left:523.818667pt;}
.x8d_c00361{left:525.286667pt;}
.xb9_c00361{left:527.520000pt;}
.x61_c00361{left:529.200000pt;}
.xac_c00361{left:533.760000pt;}
.x49_c00361{left:534.720000pt;}
.x92_c00361{left:536.160000pt;}
.x24_c00361{left:538.080000pt;}
.xba_c00361{left:540.480000pt;}
.x7b_c00361{left:542.640000pt;}
.x98_c00361{left:545.897333pt;}
.x4a_c00361{left:546.960000pt;}
.x62_c00361{left:547.920000pt;}
.x19_c00361{left:551.040000pt;}
.x25_c00361{left:552.480000pt;}
.x30_c00361{left:562.560000pt;}
.xbb_c00361{left:574.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_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_2f6c0d3825a5d54c0b922384.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;}
.m6f_c00362{transform:matrix(0.011189,-0.000112,0.002500,0.249988,0,0);-ms-transform:matrix(0.011189,-0.000112,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011189,-0.000112,0.002500,0.249988,0,0);}
.me4_c00362{transform:matrix(0.019313,-0.000290,0.003750,0.249972,0,0);-ms-transform:matrix(0.019313,-0.000290,0.003750,0.249972,0,0);-webkit-transform:matrix(0.019313,-0.000290,0.003750,0.249972,0,0);}
.mae_c00362{transform:matrix(0.042993,-0.000430,0.002500,0.249988,0,0);-ms-transform:matrix(0.042993,-0.000430,0.002500,0.249988,0,0);-webkit-transform:matrix(0.042993,-0.000430,0.002500,0.249988,0,0);}
.m52_c00362{transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-ms-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);}
.m91_c00362{transform:matrix(0.091720,-0.000917,0.002500,0.249988,0,0);-ms-transform:matrix(0.091720,-0.000917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.091720,-0.000917,0.002500,0.249988,0,0);}
.m42_c00362{transform:matrix(0.092708,-0.001112,0.003000,0.249982,0,0);-ms-transform:matrix(0.092708,-0.001112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.092708,-0.001112,0.003000,0.249982,0,0);}
.md0_c00362{transform:matrix(0.093409,-0.001401,0.003750,0.249972,0,0);-ms-transform:matrix(0.093409,-0.001401,0.003750,0.249972,0,0);-webkit-transform:matrix(0.093409,-0.001401,0.003750,0.249972,0,0);}
.me_c00362{transform:matrix(0.115702,-0.000810,0.001750,0.249994,0,0);-ms-transform:matrix(0.115702,-0.000810,0.001750,0.249994,0,0);-webkit-transform:matrix(0.115702,-0.000810,0.001750,0.249994,0,0);}
.m18_c00362{transform:matrix(0.116764,-0.001635,0.003500,0.249976,0,0);-ms-transform:matrix(0.116764,-0.001635,0.003500,0.249976,0,0);-webkit-transform:matrix(0.116764,-0.001635,0.003500,0.249976,0,0);}
.m1b_c00362{transform:matrix(0.120468,-0.001687,0.003500,0.249976,0,0);-ms-transform:matrix(0.120468,-0.001687,0.003500,0.249976,0,0);-webkit-transform:matrix(0.120468,-0.001687,0.003500,0.249976,0,0);}
.mba_c00362{transform:matrix(0.120889,-0.001209,0.002500,0.249988,0,0);-ms-transform:matrix(0.120889,-0.001209,0.002500,0.249988,0,0);-webkit-transform:matrix(0.120889,-0.001209,0.002500,0.249988,0,0);}
.m14_c00362{transform:matrix(0.135307,-0.001894,0.003500,0.249976,0,0);-ms-transform:matrix(0.135307,-0.001894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.135307,-0.001894,0.003500,0.249976,0,0);}
.mb9_c00362{transform:matrix(0.136423,-0.001364,0.002500,0.249988,0,0);-ms-transform:matrix(0.136423,-0.001364,0.002500,0.249988,0,0);-webkit-transform:matrix(0.136423,-0.001364,0.002500,0.249988,0,0);}
.m3b_c00362{transform:matrix(0.139703,-0.001816,0.003250,0.249979,0,0);-ms-transform:matrix(0.139703,-0.001816,0.003250,0.249979,0,0);-webkit-transform:matrix(0.139703,-0.001816,0.003250,0.249979,0,0);}
.m16_c00362{transform:matrix(0.140241,-0.001963,0.003500,0.249976,0,0);-ms-transform:matrix(0.140241,-0.001963,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140241,-0.001963,0.003500,0.249976,0,0);}
.m88_c00362{transform:matrix(0.141258,-0.001413,0.002500,0.249988,0,0);-ms-transform:matrix(0.141258,-0.001413,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141258,-0.001413,0.002500,0.249988,0,0);}
.mf3_c00362{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);}
.m43_c00362{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);}
.m9c_c00362{transform:matrix(0.147778,-0.001478,0.002500,0.249988,0,0);-ms-transform:matrix(0.147778,-0.001478,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147778,-0.001478,0.002500,0.249988,0,0);}
.mb3_c00362{transform:matrix(0.147818,-0.001478,0.002500,0.249988,0,0);-ms-transform:matrix(0.147818,-0.001478,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147818,-0.001478,0.002500,0.249988,0,0);}
.m40_c00362{transform:matrix(0.148254,-0.001779,0.003000,0.249982,0,0);-ms-transform:matrix(0.148254,-0.001779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148254,-0.001779,0.003000,0.249982,0,0);}
.mb7_c00362{transform:matrix(0.148423,-0.001484,0.002500,0.249988,0,0);-ms-transform:matrix(0.148423,-0.001484,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148423,-0.001484,0.002500,0.249988,0,0);}
.m17_c00362{transform:matrix(0.149000,-0.002086,0.003500,0.249976,0,0);-ms-transform:matrix(0.149000,-0.002086,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149000,-0.002086,0.003500,0.249976,0,0);}
.m8c_c00362{transform:matrix(0.149383,-0.001494,0.002500,0.249988,0,0);-ms-transform:matrix(0.149383,-0.001494,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149383,-0.001494,0.002500,0.249988,0,0);}
.m24_c00362{transform:matrix(0.149870,-0.002098,0.003500,0.249976,0,0);-ms-transform:matrix(0.149870,-0.002098,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149870,-0.002098,0.003500,0.249976,0,0);}
.m96_c00362{transform:matrix(0.150562,-0.001506,0.002500,0.249988,0,0);-ms-transform:matrix(0.150562,-0.001506,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150562,-0.001506,0.002500,0.249988,0,0);}
.m3c_c00362{transform:matrix(0.151134,-0.001814,0.003000,0.249982,0,0);-ms-transform:matrix(0.151134,-0.001814,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151134,-0.001814,0.003000,0.249982,0,0);}
.m19_c00362{transform:matrix(0.151610,-0.002123,0.003500,0.249976,0,0);-ms-transform:matrix(0.151610,-0.002123,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151610,-0.002123,0.003500,0.249976,0,0);}
.m98_c00362{transform:matrix(0.153087,-0.001531,0.002500,0.249988,0,0);-ms-transform:matrix(0.153087,-0.001531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153087,-0.001531,0.002500,0.249988,0,0);}
.m41_c00362{transform:matrix(0.154129,-0.001850,0.003000,0.249982,0,0);-ms-transform:matrix(0.154129,-0.001850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154129,-0.001850,0.003000,0.249982,0,0);}
.ma1_c00362{transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-ms-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156827,-0.001568,0.002500,0.249988,0,0);}
.m3d_c00362{transform:matrix(0.156884,-0.001883,0.003000,0.249982,0,0);-ms-transform:matrix(0.156884,-0.001883,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156884,-0.001883,0.003000,0.249982,0,0);}
.mbc_c00362{transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);-ms-transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156907,-0.001569,0.002500,0.249988,0,0);}
.m4a_c00362{transform:matrix(0.157114,-0.001885,0.003000,0.249982,0,0);-ms-transform:matrix(0.157114,-0.001885,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157114,-0.001885,0.003000,0.249982,0,0);}
.m34_c00362{transform:matrix(0.158162,-0.002056,0.003250,0.249979,0,0);-ms-transform:matrix(0.158162,-0.002056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158162,-0.002056,0.003250,0.249979,0,0);}
.m8d_c00362{transform:matrix(0.159252,-0.001593,0.002500,0.249988,0,0);-ms-transform:matrix(0.159252,-0.001593,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159252,-0.001593,0.002500,0.249988,0,0);}
.m81_c00362{transform:matrix(0.160022,-0.001600,0.002500,0.249988,0,0);-ms-transform:matrix(0.160022,-0.001600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160022,-0.001600,0.002500,0.249988,0,0);}
.ma6_c00362{transform:matrix(0.160332,-0.001603,0.002500,0.249988,0,0);-ms-transform:matrix(0.160332,-0.001603,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160332,-0.001603,0.002500,0.249988,0,0);}
.m54_c00362{transform:matrix(0.161808,-0.001942,0.003000,0.249982,0,0);-ms-transform:matrix(0.161808,-0.001942,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161808,-0.001942,0.003000,0.249982,0,0);}
.m20_c00362{transform:matrix(0.162154,-0.002270,0.003500,0.249976,0,0);-ms-transform:matrix(0.162154,-0.002270,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162154,-0.002270,0.003500,0.249976,0,0);}
.ma4_c00362{transform:matrix(0.162287,-0.001623,0.002500,0.249988,0,0);-ms-transform:matrix(0.162287,-0.001623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162287,-0.001623,0.002500,0.249988,0,0);}
.m12d_c00362{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);}
.m1a_c00362{transform:matrix(0.162659,-0.002277,0.003500,0.249976,0,0);-ms-transform:matrix(0.162659,-0.002277,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162659,-0.002277,0.003500,0.249976,0,0);}
.m97_c00362{transform:matrix(0.162952,-0.001630,0.002500,0.249988,0,0);-ms-transform:matrix(0.162952,-0.001630,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162952,-0.001630,0.002500,0.249988,0,0);}
.m6a_c00362{transform:matrix(0.163102,-0.001631,0.002500,0.249988,0,0);-ms-transform:matrix(0.163102,-0.001631,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163102,-0.001631,0.002500,0.249988,0,0);}
.m11_c00362{transform:matrix(0.163161,-0.001142,0.001750,0.249994,0,0);-ms-transform:matrix(0.163161,-0.001142,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163161,-0.001142,0.001750,0.249994,0,0);}
.m86_c00362{transform:matrix(0.163562,-0.001636,0.002500,0.249988,0,0);-ms-transform:matrix(0.163562,-0.001636,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163562,-0.001636,0.002500,0.249988,0,0);}
.m78_c00362{transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163937,-0.001639,0.002500,0.249988,0,0);}
.mcd_c00362{transform:matrix(0.164117,-0.002462,0.003750,0.249972,0,0);-ms-transform:matrix(0.164117,-0.002462,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164117,-0.002462,0.003750,0.249972,0,0);}
.m46_c00362{transform:matrix(0.164363,-0.001972,0.003000,0.249982,0,0);-ms-transform:matrix(0.164363,-0.001972,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164363,-0.001972,0.003000,0.249982,0,0);}
.mc4_c00362{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);}
.md4_c00362{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);}
.ma5_c00362{transform:matrix(0.167167,-0.001672,0.002500,0.249988,0,0);-ms-transform:matrix(0.167167,-0.001672,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167167,-0.001672,0.002500,0.249988,0,0);}
.m7a_c00362{transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);-ms-transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167487,-0.001675,0.002500,0.249988,0,0);}
.m94_c00362{transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);}
.md2_c00362{transform:matrix(0.167791,-0.002517,0.003750,0.249972,0,0);-ms-transform:matrix(0.167791,-0.002517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167791,-0.002517,0.003750,0.249972,0,0);}
.m7e_c00362{transform:matrix(0.168087,-0.001681,0.002500,0.249988,0,0);-ms-transform:matrix(0.168087,-0.001681,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168087,-0.001681,0.002500,0.249988,0,0);}
.m89_c00362{transform:matrix(0.168487,-0.001685,0.002500,0.249988,0,0);-ms-transform:matrix(0.168487,-0.001685,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168487,-0.001685,0.002500,0.249988,0,0);}
.mb2_c00362{transform:matrix(0.168577,-0.001686,0.002500,0.249988,0,0);-ms-transform:matrix(0.168577,-0.001686,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168577,-0.001686,0.002500,0.249988,0,0);}
.m49_c00362{transform:matrix(0.168758,-0.002025,0.003000,0.249982,0,0);-ms-transform:matrix(0.168758,-0.002025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168758,-0.002025,0.003000,0.249982,0,0);}
.m10f_c00362{transform:matrix(0.168968,-0.002366,0.003500,0.249976,0,0);-ms-transform:matrix(0.168968,-0.002366,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168968,-0.002366,0.003500,0.249976,0,0);}
.m95_c00362{transform:matrix(0.169077,-0.001691,0.002500,0.249988,0,0);-ms-transform:matrix(0.169077,-0.001691,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169077,-0.001691,0.002500,0.249988,0,0);}
.m99_c00362{transform:matrix(0.169542,-0.001695,0.002500,0.249988,0,0);-ms-transform:matrix(0.169542,-0.001695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169542,-0.001695,0.002500,0.249988,0,0);}
.mb1_c00362{transform:matrix(0.169657,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169657,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169657,-0.001697,0.002500,0.249988,0,0);}
.m9e_c00362{transform:matrix(0.170036,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.170036,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170036,-0.001700,0.002500,0.249988,0,0);}
.m85_c00362{transform:matrix(0.170406,-0.001704,0.002500,0.249988,0,0);-ms-transform:matrix(0.170406,-0.001704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170406,-0.001704,0.002500,0.249988,0,0);}
.m83_c00362{transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170546,-0.001705,0.002500,0.249988,0,0);}
.m23_c00362{transform:matrix(0.170723,-0.002390,0.003500,0.249976,0,0);-ms-transform:matrix(0.170723,-0.002390,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170723,-0.002390,0.003500,0.249976,0,0);}
.m8b_c00362{transform:matrix(0.172516,-0.001725,0.002500,0.249988,0,0);-ms-transform:matrix(0.172516,-0.001725,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172516,-0.001725,0.002500,0.249988,0,0);}
.mb4_c00362{transform:matrix(0.173251,-0.001733,0.002500,0.249988,0,0);-ms-transform:matrix(0.173251,-0.001733,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173251,-0.001733,0.002500,0.249988,0,0);}
.m9f_c00362{transform:matrix(0.173361,-0.001734,0.002500,0.249988,0,0);-ms-transform:matrix(0.173361,-0.001734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173361,-0.001734,0.002500,0.249988,0,0);}
.m1c_c00362{transform:matrix(0.173728,-0.002432,0.003500,0.249976,0,0);-ms-transform:matrix(0.173728,-0.002432,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173728,-0.002432,0.003500,0.249976,0,0);}
.ma3_c00362{transform:matrix(0.173906,-0.001739,0.002500,0.249988,0,0);-ms-transform:matrix(0.173906,-0.001739,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173906,-0.001739,0.002500,0.249988,0,0);}
.m84_c00362{transform:matrix(0.174696,-0.001747,0.002500,0.249988,0,0);-ms-transform:matrix(0.174696,-0.001747,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174696,-0.001747,0.002500,0.249988,0,0);}
.mb8_c00362{transform:matrix(0.174731,-0.001747,0.002500,0.249988,0,0);-ms-transform:matrix(0.174731,-0.001747,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174731,-0.001747,0.002500,0.249988,0,0);}
.m87_c00362{transform:matrix(0.174776,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174776,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174776,-0.001748,0.002500,0.249988,0,0);}
.mbb_c00362{transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);}
.me5_c00362{transform:matrix(0.174890,-0.002623,0.003750,0.249972,0,0);-ms-transform:matrix(0.174890,-0.002623,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174890,-0.002623,0.003750,0.249972,0,0);}
.m1d_c00362{transform:matrix(0.174983,-0.002450,0.003500,0.249976,0,0);-ms-transform:matrix(0.174983,-0.002450,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174983,-0.002450,0.003500,0.249976,0,0);}
.m71_c00362{transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175186,-0.001752,0.002500,0.249988,0,0);}
.m1e_c00362{transform:matrix(0.175208,-0.002453,0.003500,0.249976,0,0);-ms-transform:matrix(0.175208,-0.002453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175208,-0.002453,0.003500,0.249976,0,0);}
.mac_c00362{transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);-ms-transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);}
.m2c_c00362{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);}
.me0_c00362{transform:matrix(0.176135,-0.002642,0.003750,0.249972,0,0);-ms-transform:matrix(0.176135,-0.002642,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176135,-0.002642,0.003750,0.249972,0,0);}
.me7_c00362{transform:matrix(0.176165,-0.002642,0.003750,0.249972,0,0);-ms-transform:matrix(0.176165,-0.002642,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176165,-0.002642,0.003750,0.249972,0,0);}
.md1_c00362{transform:matrix(0.176485,-0.002647,0.003750,0.249972,0,0);-ms-transform:matrix(0.176485,-0.002647,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176485,-0.002647,0.003750,0.249972,0,0);}
.m4c_c00362{transform:matrix(0.177937,-0.002135,0.003000,0.249982,0,0);-ms-transform:matrix(0.177937,-0.002135,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177937,-0.002135,0.003000,0.249982,0,0);}
.m74_c00362{transform:matrix(0.177976,-0.001780,0.002500,0.249988,0,0);-ms-transform:matrix(0.177976,-0.001780,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177976,-0.001780,0.002500,0.249988,0,0);}
.mca_c00362{transform:matrix(0.178105,-0.002672,0.003750,0.249972,0,0);-ms-transform:matrix(0.178105,-0.002672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178105,-0.002672,0.003750,0.249972,0,0);}
.maa_c00362{transform:matrix(0.178111,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178111,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178111,-0.001781,0.002500,0.249988,0,0);}
.m9b_c00362{transform:matrix(0.178291,-0.001783,0.002500,0.249988,0,0);-ms-transform:matrix(0.178291,-0.001783,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178291,-0.001783,0.002500,0.249988,0,0);}
.m2a_c00362{transform:matrix(0.178670,-0.002323,0.003250,0.249979,0,0);-ms-transform:matrix(0.178670,-0.002323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178670,-0.002323,0.003250,0.249979,0,0);}
.m28_c00362{transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);-ms-transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178912,-0.002505,0.003500,0.249976,0,0);}
.me8_c00362{transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179725,-0.002696,0.003750,0.249972,0,0);}
.m4d_c00362{transform:matrix(0.179792,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179792,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179792,-0.002158,0.003000,0.249982,0,0);}
.m58_c00362{transform:matrix(0.179952,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179952,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179952,-0.002159,0.003000,0.249982,0,0);}
.m39_c00362{transform:matrix(0.180110,-0.002341,0.003250,0.249979,0,0);-ms-transform:matrix(0.180110,-0.002341,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180110,-0.002341,0.003250,0.249979,0,0);}
.m21_c00362{transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);-ms-transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);}
.m33_c00362{transform:matrix(0.181515,-0.002360,0.003250,0.249979,0,0);-ms-transform:matrix(0.181515,-0.002360,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181515,-0.002360,0.003250,0.249979,0,0);}
.m1f_c00362{transform:matrix(0.181787,-0.002545,0.003500,0.249976,0,0);-ms-transform:matrix(0.181787,-0.002545,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181787,-0.002545,0.003500,0.249976,0,0);}
.m2e_c00362{transform:matrix(0.181955,-0.002365,0.003250,0.249979,0,0);-ms-transform:matrix(0.181955,-0.002365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181955,-0.002365,0.003250,0.249979,0,0);}
.m101_c00362{transform:matrix(0.182202,-0.002551,0.003500,0.249976,0,0);-ms-transform:matrix(0.182202,-0.002551,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182202,-0.002551,0.003500,0.249976,0,0);}
.m53_c00362{transform:matrix(0.182362,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182362,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182362,-0.002188,0.003000,0.249982,0,0);}
.m4f_c00362{transform:matrix(0.182937,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182937,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182937,-0.002195,0.003000,0.249982,0,0);}
.m50_c00362{transform:matrix(0.183022,-0.002196,0.003000,0.249982,0,0);-ms-transform:matrix(0.183022,-0.002196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183022,-0.002196,0.003000,0.249982,0,0);}
.m112_c00362{transform:matrix(0.183112,-0.002564,0.003500,0.249976,0,0);-ms-transform:matrix(0.183112,-0.002564,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183112,-0.002564,0.003500,0.249976,0,0);}
.m47_c00362{transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);-ms-transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);}
.m76_c00362{transform:matrix(0.183591,-0.001836,0.002500,0.249988,0,0);-ms-transform:matrix(0.183591,-0.001836,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183591,-0.001836,0.002500,0.249988,0,0);}
.m12_c00362{transform:matrix(0.183710,-0.001286,0.001750,0.249994,0,0);-ms-transform:matrix(0.183710,-0.001286,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183710,-0.001286,0.001750,0.249994,0,0);}
.mbf_c00362{transform:matrix(0.184116,-0.001841,0.002500,0.249988,0,0);-ms-transform:matrix(0.184116,-0.001841,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184116,-0.001841,0.002500,0.249988,0,0);}
.md9_c00362{transform:matrix(0.184484,-0.002767,0.003750,0.249972,0,0);-ms-transform:matrix(0.184484,-0.002767,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184484,-0.002767,0.003750,0.249972,0,0);}
.m7f_c00362{transform:matrix(0.185316,-0.001853,0.002500,0.249988,0,0);-ms-transform:matrix(0.185316,-0.001853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185316,-0.001853,0.002500,0.249988,0,0);}
.mb0_c00362{transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185526,-0.001855,0.002500,0.249988,0,0);}
.m36_c00362{transform:matrix(0.185574,-0.002412,0.003250,0.249979,0,0);-ms-transform:matrix(0.185574,-0.002412,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185574,-0.002412,0.003250,0.249979,0,0);}
.mf7_c00362{transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);}
.m26_c00362{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);}
.m30_c00362{transform:matrix(0.186519,-0.002425,0.003250,0.249979,0,0);-ms-transform:matrix(0.186519,-0.002425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186519,-0.002425,0.003250,0.249979,0,0);}
.m66_c00362{transform:matrix(0.186596,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186596,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186596,-0.001866,0.002500,0.249988,0,0);}
.m9a_c00362{transform:matrix(0.186741,-0.001867,0.002500,0.249988,0,0);-ms-transform:matrix(0.186741,-0.001867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186741,-0.001867,0.002500,0.249988,0,0);}
.m2b_c00362{transform:matrix(0.187024,-0.002431,0.003250,0.249979,0,0);-ms-transform:matrix(0.187024,-0.002431,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187024,-0.002431,0.003250,0.249979,0,0);}
.m5f_c00362{transform:matrix(0.187227,-0.002247,0.003000,0.249982,0,0);-ms-transform:matrix(0.187227,-0.002247,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187227,-0.002247,0.003000,0.249982,0,0);}
.m7b_c00362{transform:matrix(0.187596,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187596,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187596,-0.001876,0.002500,0.249988,0,0);}
.mc8_c00362{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);}
.m9d_c00362{transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);-ms-transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187776,-0.001878,0.002500,0.249988,0,0);}
.m45_c00362{transform:matrix(0.187846,-0.002254,0.003000,0.249982,0,0);-ms-transform:matrix(0.187846,-0.002254,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187846,-0.002254,0.003000,0.249982,0,0);}
.ma9_c00362{transform:matrix(0.188411,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188411,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188411,-0.001884,0.002500,0.249988,0,0);}
.ma7_c00362{transform:matrix(0.188431,-0.001884,0.002500,0.249988,0,0);-ms-transform:matrix(0.188431,-0.001884,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188431,-0.001884,0.002500,0.249988,0,0);}
.m27_c00362{transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);-ms-transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188457,-0.002638,0.003500,0.249976,0,0);}
.m80_c00362{transform:matrix(0.188586,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188586,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188586,-0.001886,0.002500,0.249988,0,0);}
.m22_c00362{transform:matrix(0.188717,-0.002642,0.003500,0.249976,0,0);-ms-transform:matrix(0.188717,-0.002642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188717,-0.002642,0.003500,0.249976,0,0);}
.m11d_c00362{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);}
.mb5_c00362{transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);-ms-transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189106,-0.001891,0.002500,0.249988,0,0);}
.m77_c00362{transform:matrix(0.189741,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189741,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189741,-0.001897,0.002500,0.249988,0,0);}
.me2_c00362{transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);-ms-transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);}
.m51_c00362{transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);-ms-transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190066,-0.002281,0.003000,0.249982,0,0);}
.m2f_c00362{transform:matrix(0.190274,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190274,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190274,-0.002474,0.003250,0.249979,0,0);}
.mf1_c00362{transform:matrix(0.190354,-0.002855,0.003750,0.249972,0,0);-ms-transform:matrix(0.190354,-0.002855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190354,-0.002855,0.003750,0.249972,0,0);}
.ma2_c00362{transform:matrix(0.190405,-0.001904,0.002500,0.249988,0,0);-ms-transform:matrix(0.190405,-0.001904,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190405,-0.001904,0.002500,0.249988,0,0);}
.mdb_c00362{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);}
.md3_c00362{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);}
.m10b_c00362{transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);-ms-transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191391,-0.002679,0.003500,0.249976,0,0);}
.mbd_c00362{transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);}
.m55_c00362{transform:matrix(0.191506,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191506,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191506,-0.002298,0.003000,0.249982,0,0);}
.m79_c00362{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);}
.mdf_c00362{transform:matrix(0.192548,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192548,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192548,-0.002888,0.003750,0.249972,0,0);}
.mc6_c00362{transform:matrix(0.192978,-0.002895,0.003750,0.249972,0,0);-ms-transform:matrix(0.192978,-0.002895,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192978,-0.002895,0.003750,0.249972,0,0);}
.m111_c00362{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);}
.maf_c00362{transform:matrix(0.194915,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194915,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194915,-0.001949,0.002500,0.249988,0,0);}
.mee_c00362{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);}
.m82_c00362{transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195030,-0.001950,0.002500,0.249988,0,0);}
.mad_c00362{transform:matrix(0.195435,-0.001954,0.002500,0.249988,0,0);-ms-transform:matrix(0.195435,-0.001954,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195435,-0.001954,0.002500,0.249988,0,0);}
.mdc_c00362{transform:matrix(0.195758,-0.002936,0.003750,0.249972,0,0);-ms-transform:matrix(0.195758,-0.002936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195758,-0.002936,0.003750,0.249972,0,0);}
.mbe_c00362{transform:matrix(0.196590,-0.001966,0.002500,0.249988,0,0);-ms-transform:matrix(0.196590,-0.001966,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196590,-0.001966,0.002500,0.249988,0,0);}
.m3a_c00362{transform:matrix(0.196623,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196623,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196623,-0.002556,0.003250,0.249979,0,0);}
.mce_c00362{transform:matrix(0.197073,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197073,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197073,-0.002956,0.003750,0.249972,0,0);}
.md6_c00362{transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);}
.m122_c00362{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);}
.m25_c00362{transform:matrix(0.197871,-0.002770,0.003500,0.249976,0,0);-ms-transform:matrix(0.197871,-0.002770,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197871,-0.002770,0.003500,0.249976,0,0);}
.m1_c00362{transform:matrix(0.198260,-0.001388,0.001750,0.249994,0,0);-ms-transform:matrix(0.198260,-0.001388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198260,-0.001388,0.001750,0.249994,0,0);}
.m7d_c00362{transform:matrix(0.199320,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199320,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199320,-0.001993,0.002500,0.249988,0,0);}
.m0_c00362{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);}
.m3e_c00362{transform:matrix(0.199401,-0.002393,0.003000,0.249982,0,0);-ms-transform:matrix(0.199401,-0.002393,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199401,-0.002393,0.003000,0.249982,0,0);}
.mcb_c00362{transform:matrix(0.200097,-0.003001,0.003750,0.249972,0,0);-ms-transform:matrix(0.200097,-0.003001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200097,-0.003001,0.003750,0.249972,0,0);}
.m8a_c00362{transform:matrix(0.200910,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200910,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200910,-0.002009,0.002500,0.249988,0,0);}
.m8f_c00362{transform:matrix(0.201080,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201080,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201080,-0.002011,0.002500,0.249988,0,0);}
.mcf_c00362{transform:matrix(0.201257,-0.003019,0.003750,0.249972,0,0);-ms-transform:matrix(0.201257,-0.003019,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201257,-0.003019,0.003750,0.249972,0,0);}
.m90_c00362{transform:matrix(0.201860,-0.002019,0.002500,0.249988,0,0);-ms-transform:matrix(0.201860,-0.002019,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201860,-0.002019,0.002500,0.249988,0,0);}
.m109_c00362{transform:matrix(0.201930,-0.002827,0.003500,0.249976,0,0);-ms-transform:matrix(0.201930,-0.002827,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201930,-0.002827,0.003500,0.249976,0,0);}
.m13_c00362{transform:matrix(0.202240,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202240,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202240,-0.001416,0.001750,0.249994,0,0);}
.m32_c00362{transform:matrix(0.203368,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203368,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203368,-0.002644,0.003250,0.249979,0,0);}
.mc3_c00362{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);}
.me3_c00362{transform:matrix(0.204422,-0.003066,0.003750,0.249972,0,0);-ms-transform:matrix(0.204422,-0.003066,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204422,-0.003066,0.003750,0.249972,0,0);}
.mda_c00362{transform:matrix(0.204832,-0.003072,0.003750,0.249972,0,0);-ms-transform:matrix(0.204832,-0.003072,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204832,-0.003072,0.003750,0.249972,0,0);}
.mcc_c00362{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);}
.med_c00362{transform:matrix(0.205472,-0.003082,0.003750,0.249972,0,0);-ms-transform:matrix(0.205472,-0.003082,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205472,-0.003082,0.003750,0.249972,0,0);}
.m75_c00362{transform:matrix(0.206110,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206110,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206110,-0.002061,0.002500,0.249988,0,0);}
.m65_c00362{transform:matrix(0.206330,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206330,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206330,-0.002063,0.002500,0.249988,0,0);}
.m35_c00362{transform:matrix(0.206683,-0.002687,0.003250,0.249979,0,0);-ms-transform:matrix(0.206683,-0.002687,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206683,-0.002687,0.003250,0.249979,0,0);}
.mc5_c00362{transform:matrix(0.206887,-0.003103,0.003750,0.249972,0,0);-ms-transform:matrix(0.206887,-0.003103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206887,-0.003103,0.003750,0.249972,0,0);}
.m92_c00362{transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206955,-0.002070,0.002500,0.249988,0,0);}
.m6e_c00362{transform:matrix(0.207185,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207185,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207185,-0.002072,0.002500,0.249988,0,0);}
.m113_c00362{transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);-ms-transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207470,-0.002905,0.003500,0.249976,0,0);}
.m64_c00362{transform:matrix(0.207745,-0.002077,0.002500,0.249988,0,0);-ms-transform:matrix(0.207745,-0.002077,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207745,-0.002077,0.002500,0.249988,0,0);}
.m93_c00362{transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);-ms-transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);}
.m69_c00362{transform:matrix(0.208160,-0.002082,0.002500,0.249988,0,0);-ms-transform:matrix(0.208160,-0.002082,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208160,-0.002082,0.002500,0.249988,0,0);}
.m110_c00362{transform:matrix(0.208420,-0.002918,0.003500,0.249976,0,0);-ms-transform:matrix(0.208420,-0.002918,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208420,-0.002918,0.003500,0.249976,0,0);}
.me9_c00362{transform:matrix(0.209196,-0.003138,0.003750,0.249972,0,0);-ms-transform:matrix(0.209196,-0.003138,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209196,-0.003138,0.003750,0.249972,0,0);}
.m63_c00362{transform:matrix(0.210219,-0.002102,0.002500,0.249988,0,0);-ms-transform:matrix(0.210219,-0.002102,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210219,-0.002102,0.002500,0.249988,0,0);}
.m102_c00362{transform:matrix(0.210429,-0.002946,0.003500,0.249976,0,0);-ms-transform:matrix(0.210429,-0.002946,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210429,-0.002946,0.003500,0.249976,0,0);}
.ma8_c00362{transform:matrix(0.210699,-0.002107,0.002500,0.249988,0,0);-ms-transform:matrix(0.210699,-0.002107,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210699,-0.002107,0.002500,0.249988,0,0);}
.m11e_c00362{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);}
.mdd_c00362{transform:matrix(0.211241,-0.003169,0.003750,0.249972,0,0);-ms-transform:matrix(0.211241,-0.003169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211241,-0.003169,0.003750,0.249972,0,0);}
.m126_c00362{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.me6_c00362{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);}
.m37_c00362{transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);}
.ma0_c00362{transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212114,-0.002121,0.002500,0.249988,0,0);}
.md5_c00362{transform:matrix(0.213111,-0.003197,0.003750,0.249972,0,0);-ms-transform:matrix(0.213111,-0.003197,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213111,-0.003197,0.003750,0.249972,0,0);}
.mec_c00362{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);}
.me1_c00362{transform:matrix(0.214091,-0.003211,0.003750,0.249972,0,0);-ms-transform:matrix(0.214091,-0.003211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214091,-0.003211,0.003750,0.249972,0,0);}
.mc9_c00362{transform:matrix(0.214541,-0.003218,0.003750,0.249972,0,0);-ms-transform:matrix(0.214541,-0.003218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214541,-0.003218,0.003750,0.249972,0,0);}
.m107_c00362{transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);}
.md8_c00362{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);}
.mf0_c00362{transform:matrix(0.214966,-0.003224,0.003750,0.249972,0,0);-ms-transform:matrix(0.214966,-0.003224,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214966,-0.003224,0.003750,0.249972,0,0);}
.m5_c00362{transform:matrix(0.215045,-0.001505,0.001750,0.249994,0,0);-ms-transform:matrix(0.215045,-0.001505,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215045,-0.001505,0.001750,0.249994,0,0);}
.m56_c00362{transform:matrix(0.215130,-0.002582,0.003000,0.249982,0,0);-ms-transform:matrix(0.215130,-0.002582,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215130,-0.002582,0.003000,0.249982,0,0);}
.m100_c00362{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);}
.m103_c00362{transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);-ms-transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216424,-0.003030,0.003500,0.249976,0,0);}
.mc2_c00362{transform:matrix(0.216651,-0.003250,0.003750,0.249972,0,0);-ms-transform:matrix(0.216651,-0.003250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216651,-0.003250,0.003750,0.249972,0,0);}
.m104_c00362{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);}
.m10a_c00362{transform:matrix(0.217289,-0.003042,0.003500,0.249976,0,0);-ms-transform:matrix(0.217289,-0.003042,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217289,-0.003042,0.003500,0.249976,0,0);}
.m6d_c00362{transform:matrix(0.217639,-0.002176,0.002500,0.249988,0,0);-ms-transform:matrix(0.217639,-0.002176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217639,-0.002176,0.002500,0.249988,0,0);}
.mfd_c00362{transform:matrix(0.217999,-0.003052,0.003500,0.249976,0,0);-ms-transform:matrix(0.217999,-0.003052,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217999,-0.003052,0.003500,0.249976,0,0);}
.m127_c00362{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);}
.m6c_c00362{transform:matrix(0.219074,-0.002191,0.002500,0.249988,0,0);-ms-transform:matrix(0.219074,-0.002191,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219074,-0.002191,0.002500,0.249988,0,0);}
.m68_c00362{transform:matrix(0.220574,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220574,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220574,-0.002206,0.002500,0.249988,0,0);}
.m12e_c00362{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);}
.m120_c00362{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);}
.mfc_c00362{transform:matrix(0.224448,-0.003142,0.003500,0.249976,0,0);-ms-transform:matrix(0.224448,-0.003142,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224448,-0.003142,0.003500,0.249976,0,0);}
.m114_c00362{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);}
.mff_c00362{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);}
.m70_c00362{transform:matrix(0.225104,-0.002251,0.002500,0.249988,0,0);-ms-transform:matrix(0.225104,-0.002251,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225104,-0.002251,0.002500,0.249988,0,0);}
.md7_c00362{transform:matrix(0.225880,-0.003388,0.003750,0.249972,0,0);-ms-transform:matrix(0.225880,-0.003388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225880,-0.003388,0.003750,0.249972,0,0);}
.mea_c00362{transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);-ms-transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);}
.m62_c00362{transform:matrix(0.226909,-0.002269,0.002500,0.249988,0,0);-ms-transform:matrix(0.226909,-0.002269,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226909,-0.002269,0.002500,0.249988,0,0);}
.m31_c00362{transform:matrix(0.227161,-0.002953,0.003250,0.249979,0,0);-ms-transform:matrix(0.227161,-0.002953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227161,-0.002953,0.003250,0.249979,0,0);}
.m118_c00362{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);}
.mf8_c00362{transform:matrix(0.229997,-0.003220,0.003500,0.249976,0,0);-ms-transform:matrix(0.229997,-0.003220,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229997,-0.003220,0.003500,0.249976,0,0);}
.m12c_c00362{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m59_c00362{transform:matrix(0.231048,-0.002773,0.003000,0.249982,0,0);-ms-transform:matrix(0.231048,-0.002773,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231048,-0.002773,0.003000,0.249982,0,0);}
.m72_c00362{transform:matrix(0.232068,-0.002321,0.002500,0.249988,0,0);-ms-transform:matrix(0.232068,-0.002321,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232068,-0.002321,0.002500,0.249988,0,0);}
.m4b_c00362{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);}
.mc0_c00362{transform:matrix(0.233443,-0.002334,0.002500,0.249988,0,0);-ms-transform:matrix(0.233443,-0.002334,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233443,-0.002334,0.002500,0.249988,0,0);}
.m38_c00362{transform:matrix(0.234130,-0.003044,0.003250,0.249979,0,0);-ms-transform:matrix(0.234130,-0.003044,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234130,-0.003044,0.003250,0.249979,0,0);}
.mfe_c00362{transform:matrix(0.235937,-0.003303,0.003500,0.249976,0,0);-ms-transform:matrix(0.235937,-0.003303,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235937,-0.003303,0.003500,0.249976,0,0);}
.mf5_c00362{transform:matrix(0.236312,-0.003308,0.003500,0.249976,0,0);-ms-transform:matrix(0.236312,-0.003308,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236312,-0.003308,0.003500,0.249976,0,0);}
.mfa_c00362{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);}
.m10d_c00362{transform:matrix(0.237517,-0.003325,0.003500,0.249976,0,0);-ms-transform:matrix(0.237517,-0.003325,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237517,-0.003325,0.003500,0.249976,0,0);}
.m115_c00362{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);}
.mf6_c00362{transform:matrix(0.239602,-0.003354,0.003500,0.249976,0,0);-ms-transform:matrix(0.239602,-0.003354,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239602,-0.003354,0.003500,0.249976,0,0);}
.m119_c00362{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);}
.m6_c00362{transform:matrix(0.243639,-0.001705,0.001750,0.249994,0,0);-ms-transform:matrix(0.243639,-0.001705,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243639,-0.001705,0.001750,0.249994,0,0);}
.mf2_c00362{transform:matrix(0.244378,-0.003666,0.003750,0.249972,0,0);-ms-transform:matrix(0.244378,-0.003666,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244378,-0.003666,0.003750,0.249972,0,0);}
.meb_c00362{transform:matrix(0.244772,-0.003672,0.003750,0.249972,0,0);-ms-transform:matrix(0.244772,-0.003672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244772,-0.003672,0.003750,0.249972,0,0);}
.m29_c00362{transform:matrix(0.246271,-0.003448,0.003500,0.249976,0,0);-ms-transform:matrix(0.246271,-0.003448,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246271,-0.003448,0.003500,0.249976,0,0);}
.mb6_c00362{transform:matrix(0.246843,-0.002468,0.002500,0.249988,0,0);-ms-transform:matrix(0.246843,-0.002468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246843,-0.002468,0.002500,0.249988,0,0);}
.m8e_c00362{transform:matrix(0.248963,-0.002490,0.002500,0.249988,0,0);-ms-transform:matrix(0.248963,-0.002490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248963,-0.002490,0.002500,0.249988,0,0);}
.m129_c00362{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m108_c00362{transform:matrix(0.249736,-0.003496,0.003500,0.249976,0,0);-ms-transform:matrix(0.249736,-0.003496,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249736,-0.003496,0.003500,0.249976,0,0);}
.m5e_c00362{transform:matrix(0.251892,-0.003023,0.003000,0.249982,0,0);-ms-transform:matrix(0.251892,-0.003023,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251892,-0.003023,0.003000,0.249982,0,0);}
.m10c_c00362{transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);-ms-transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);}
.mab_c00362{transform:matrix(0.252982,-0.002530,0.002500,0.249988,0,0);-ms-transform:matrix(0.252982,-0.002530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252982,-0.002530,0.002500,0.249988,0,0);}
.m106_c00362{transform:matrix(0.253970,-0.003556,0.003500,0.249976,0,0);-ms-transform:matrix(0.253970,-0.003556,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253970,-0.003556,0.003500,0.249976,0,0);}
.m48_c00362{transform:matrix(0.254282,-0.003051,0.003000,0.249982,0,0);-ms-transform:matrix(0.254282,-0.003051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254282,-0.003051,0.003000,0.249982,0,0);}
.m10e_c00362{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);}
.m57_c00362{transform:matrix(0.255907,-0.003071,0.003000,0.249982,0,0);-ms-transform:matrix(0.255907,-0.003071,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255907,-0.003071,0.003000,0.249982,0,0);}
.m15_c00362{transform:matrix(0.257750,-0.003608,0.003500,0.249976,0,0);-ms-transform:matrix(0.257750,-0.003608,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257750,-0.003608,0.003500,0.249976,0,0);}
.m128_c00362{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);}
.m105_c00362{transform:matrix(0.257885,-0.003610,0.003500,0.249976,0,0);-ms-transform:matrix(0.257885,-0.003610,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257885,-0.003610,0.003500,0.249976,0,0);}
.m7c_c00362{transform:matrix(0.258512,-0.002585,0.002500,0.249988,0,0);-ms-transform:matrix(0.258512,-0.002585,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258512,-0.002585,0.002500,0.249988,0,0);}
.m2d_c00362{transform:matrix(0.259718,-0.003376,0.003250,0.249979,0,0);-ms-transform:matrix(0.259718,-0.003376,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259718,-0.003376,0.003250,0.249979,0,0);}
.mef_c00362{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);}
.m6b_c00362{transform:matrix(0.261922,-0.002619,0.002500,0.249988,0,0);-ms-transform:matrix(0.261922,-0.002619,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261922,-0.002619,0.002500,0.249988,0,0);}
.mc1_c00362{transform:matrix(0.264630,-0.003969,0.003750,0.249972,0,0);-ms-transform:matrix(0.264630,-0.003969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264630,-0.003969,0.003750,0.249972,0,0);}
.mc7_c00362{transform:matrix(0.266935,-0.004004,0.003750,0.249972,0,0);-ms-transform:matrix(0.266935,-0.004004,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266935,-0.004004,0.003750,0.249972,0,0);}
.m125_c00362{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00362{transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281025,0.000000,0.000000,0.250000,0,0);}
.mf9_c00362{transform:matrix(0.281517,-0.003941,0.003500,0.249976,0,0);-ms-transform:matrix(0.281517,-0.003941,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281517,-0.003941,0.003500,0.249976,0,0);}
.m5d_c00362{transform:matrix(0.285409,-0.003425,0.003000,0.249982,0,0);-ms-transform:matrix(0.285409,-0.003425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285409,-0.003425,0.003000,0.249982,0,0);}
.m5b_c00362{transform:matrix(0.292999,-0.003516,0.003000,0.249982,0,0);-ms-transform:matrix(0.292999,-0.003516,0.003000,0.249982,0,0);-webkit-transform:matrix(0.292999,-0.003516,0.003000,0.249982,0,0);}
.m12f_c00362{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);}
.m121_c00362{transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294395,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.297488,-0.002082,0.001750,0.249994,0,0);-ms-transform:matrix(0.297488,-0.002082,0.001750,0.249994,0,0);-webkit-transform:matrix(0.297488,-0.002082,0.001750,0.249994,0,0);}
.m2_c00362{transform:matrix(0.300278,-0.002102,0.001750,0.249994,0,0);-ms-transform:matrix(0.300278,-0.002102,0.001750,0.249994,0,0);-webkit-transform:matrix(0.300278,-0.002102,0.001750,0.249994,0,0);}
.m5a_c00362{transform:matrix(0.302878,-0.003635,0.003000,0.249982,0,0);-ms-transform:matrix(0.302878,-0.003635,0.003000,0.249982,0,0);-webkit-transform:matrix(0.302878,-0.003635,0.003000,0.249982,0,0);}
.m133_c00362{transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00362{transform:matrix(0.306558,-0.003679,0.003000,0.249982,0,0);-ms-transform:matrix(0.306558,-0.003679,0.003000,0.249982,0,0);-webkit-transform:matrix(0.306558,-0.003679,0.003000,0.249982,0,0);}
.ma_c00362{transform:matrix(0.310377,-0.002173,0.001750,0.249994,0,0);-ms-transform:matrix(0.310377,-0.002173,0.001750,0.249994,0,0);-webkit-transform:matrix(0.310377,-0.002173,0.001750,0.249994,0,0);}
.m10_c00362{transform:matrix(0.313317,-0.002193,0.001750,0.249994,0,0);-ms-transform:matrix(0.313317,-0.002193,0.001750,0.249994,0,0);-webkit-transform:matrix(0.313317,-0.002193,0.001750,0.249994,0,0);}
.m60_c00362{transform:matrix(0.319877,-0.003839,0.003000,0.249982,0,0);-ms-transform:matrix(0.319877,-0.003839,0.003000,0.249982,0,0);-webkit-transform:matrix(0.319877,-0.003839,0.003000,0.249982,0,0);}
.m4e_c00362{transform:matrix(0.320022,-0.003840,0.003000,0.249982,0,0);-ms-transform:matrix(0.320022,-0.003840,0.003000,0.249982,0,0);-webkit-transform:matrix(0.320022,-0.003840,0.003000,0.249982,0,0);}
.mf4_c00362{transform:matrix(0.324203,-0.004539,0.003500,0.249976,0,0);-ms-transform:matrix(0.324203,-0.004539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.324203,-0.004539,0.003500,0.249976,0,0);}
.md_c00362{transform:matrix(0.325642,-0.002279,0.001750,0.249994,0,0);-ms-transform:matrix(0.325642,-0.002279,0.001750,0.249994,0,0);-webkit-transform:matrix(0.325642,-0.002279,0.001750,0.249994,0,0);}
.m131_c00362{transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325850,0.000000,0.000000,0.250000,0,0);}
.m73_c00362{transform:matrix(0.327194,-0.003272,0.002500,0.249988,0,0);-ms-transform:matrix(0.327194,-0.003272,0.002500,0.249988,0,0);-webkit-transform:matrix(0.327194,-0.003272,0.002500,0.249988,0,0);}
.m123_c00362{transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329405,0.000000,0.000000,0.250000,0,0);}
.mfb_c00362{transform:matrix(0.343241,-0.004805,0.003500,0.249976,0,0);-ms-transform:matrix(0.343241,-0.004805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.343241,-0.004805,0.003500,0.249976,0,0);}
.m11a_c00362{transform:matrix(0.350050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350050,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.356131,-0.002493,0.001750,0.249994,0,0);-ms-transform:matrix(0.356131,-0.002493,0.001750,0.249994,0,0);-webkit-transform:matrix(0.356131,-0.002493,0.001750,0.249994,0,0);}
.m44_c00362{transform:matrix(0.367164,-0.004406,0.003000,0.249982,0,0);-ms-transform:matrix(0.367164,-0.004406,0.003000,0.249982,0,0);-webkit-transform:matrix(0.367164,-0.004406,0.003000,0.249982,0,0);}
.m4_c00362{transform:matrix(0.377631,-0.002643,0.001750,0.249994,0,0);-ms-transform:matrix(0.377631,-0.002643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.377631,-0.002643,0.001750,0.249994,0,0);}
.mde_c00362{transform:matrix(0.377668,-0.005665,0.003750,0.249972,0,0);-ms-transform:matrix(0.377668,-0.005665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.377668,-0.005665,0.003750,0.249972,0,0);}
.m3f_c00362{transform:matrix(0.384302,-0.004612,0.003000,0.249982,0,0);-ms-transform:matrix(0.384302,-0.004612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.384302,-0.004612,0.003000,0.249982,0,0);}
.m61_c00362{transform:matrix(0.384576,-0.003846,0.002500,0.249988,0,0);-ms-transform:matrix(0.384576,-0.003846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.384576,-0.003846,0.002500,0.249988,0,0);}
.m9_c00362{transform:matrix(0.397615,-0.002783,0.001750,0.249994,0,0);-ms-transform:matrix(0.397615,-0.002783,0.001750,0.249994,0,0);-webkit-transform:matrix(0.397615,-0.002783,0.001750,0.249994,0,0);}
.m67_c00362{transform:matrix(0.399715,-0.003997,0.002500,0.249988,0,0);-ms-transform:matrix(0.399715,-0.003997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.399715,-0.003997,0.002500,0.249988,0,0);}
.m3_c00362{transform:matrix(0.403295,-0.002823,0.001750,0.249994,0,0);-ms-transform:matrix(0.403295,-0.002823,0.001750,0.249994,0,0);-webkit-transform:matrix(0.403295,-0.002823,0.001750,0.249994,0,0);}
.m11f_c00362{transform:matrix(0.425700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425700,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{transform:matrix(0.428919,-0.003002,0.001750,0.249994,0,0);-ms-transform:matrix(0.428919,-0.003002,0.001750,0.249994,0,0);-webkit-transform:matrix(0.428919,-0.003002,0.001750,0.249994,0,0);}
.m117_c00362{transform:matrix(0.459225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459225,0.000000,0.000000,0.250000,0,0);}
.m132_c00362{transform:matrix(0.480025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480025,0.000000,0.000000,0.250000,0,0);}
.m130_c00362{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.m116_c00362{transform:matrix(0.487045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487045,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.492333,-0.003446,0.001750,0.249994,0,0);-ms-transform:matrix(0.492333,-0.003446,0.001750,0.249994,0,0);-webkit-transform:matrix(0.492333,-0.003446,0.001750,0.249994,0,0);}
.m11b_c00362{transform:matrix(0.495480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495480,0.000000,0.000000,0.250000,0,0);}
.m11c_c00362{transform:matrix(0.535425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535425,0.000000,0.000000,0.250000,0,0);}
.m12a_c00362{transform:matrix(0.765820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765820,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.812125,-0.005685,0.001750,0.249994,0,0);-ms-transform:matrix(0.812125,-0.005685,0.001750,0.249994,0,0);-webkit-transform:matrix(0.812125,-0.005685,0.001750,0.249994,0,0);}
.m124_c00362{transform:matrix(1.510220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.510220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.510220,0.000000,0.000000,0.250000,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;}
.fs1a_c00362{font-size:21.000000px;}
.fs0_c00362{font-size:22.050000px;}
.fs27_c00362{font-size:32.550000px;}
.fs30_c00362{font-size:36.750000px;}
.fs2f_c00362{font-size:42.000000px;}
.fs1c_c00362{font-size:44.100000px;}
.fs24_c00362{font-size:49.350000px;}
.fs18_c00362{font-size:49.354836px;}
.fs14_c00362{font-size:49.355552px;}
.fs17_c00362{font-size:50.404939px;}
.fs15_c00362{font-size:50.405670px;}
.fs19_c00362{font-size:51.455042px;}
.fs16_c00362{font-size:51.455788px;}
.fs21_c00362{font-size:52.500000px;}
.fs1_c00362{font-size:52.501286px;}
.fs1e_c00362{font-size:57.750000px;}
.fs1b_c00362{font-size:65.100000px;}
.fs10_c00362{font-size:66.153307px;}
.fsd_c00362{font-size:68.253412px;}
.fs7_c00362{font-size:69.305856px;}
.fs13_c00362{font-size:70.353517px;}
.fsa_c00362{font-size:70.355065px;}
.fs6_c00362{font-size:70.356894px;}
.fs8_c00362{font-size:71.406033px;}
.fs26_c00362{font-size:72.450000px;}
.fse_c00362{font-size:72.453622px;}
.fsb_c00362{font-size:72.455216px;}
.fs11_c00362{font-size:73.503675px;}
.fs9_c00362{font-size:73.505292px;}
.fsf_c00362{font-size:75.603780px;}
.fsc_c00362{font-size:75.605443px;}
.fs12_c00362{font-size:76.653832px;}
.fs5_c00362{font-size:77.707614px;}
.fs23_c00362{font-size:78.750000px;}
.fs1d_c00362{font-size:81.900000px;}
.fs2c_c00362{font-size:88.200000px;}
.fs4_c00362{font-size:89.258746px;}
.fs3_c00362{font-size:91.352238px;}
.fs25_c00362{font-size:117.600000px;}
.fs2b_c00362{font-size:118.650000px;}
.fs2e_c00362{font-size:120.750000px;}
.fs22_c00362{font-size:122.850000px;}
.fs2a_c00362{font-size:123.900000px;}
.fs28_c00362{font-size:127.050000px;}
.fs1f_c00362{font-size:132.300000px;}
.fs20_c00362{font-size:138.600000px;}
.fs2_c00362{font-size:147.003601px;}
.fs2d_c00362{font-size:153.300000px;}
.fs29_c00362{font-size:193.200000px;}
.y0_c00362{bottom:0.000000px;}
.y11d_c00362{bottom:101.520000px;}
.y11c_c00362{bottom:102.600000px;}
.y11b_c00362{bottom:103.410000px;}
.y121_c00362{bottom:103.950000px;}
.y11e_c00362{bottom:105.030000px;}
.y120_c00362{bottom:106.110000px;}
.y122_c00362{bottom:106.920000px;}
.y125_c00362{bottom:107.460000px;}
.y11f_c00362{bottom:108.270000px;}
.y127_c00362{bottom:109.080000px;}
.y129_c00362{bottom:110.430000px;}
.y123_c00362{bottom:110.700000px;}
.y128_c00362{bottom:111.240000px;}
.y12e_c00362{bottom:111.618000px;}
.y12d_c00362{bottom:112.050000px;}
.y119_c00362{bottom:114.750000px;}
.y12c_c00362{bottom:115.020000px;}
.y126_c00362{bottom:115.290000px;}
.y124_c00362{bottom:115.830000px;}
.y12a_c00362{bottom:116.370000px;}
.y12b_c00362{bottom:121.500000px;}
.y11a_c00362{bottom:125.010000px;}
.y118_c00362{bottom:143.370000px;}
.y115_c00362{bottom:163.362942px;}
.y117_c00362{bottom:163.363200px;}
.y116_c00362{bottom:163.363221px;}
.y114_c00362{bottom:163.363344px;}
.y108_c00362{bottom:181.169538px;}
.y109_c00362{bottom:181.557753px;}
.y10a_c00362{bottom:181.736649px;}
.y10b_c00362{bottom:181.985094px;}
.y10c_c00362{bottom:182.388612px;}
.y10d_c00362{bottom:182.727951px;}
.y10e_c00362{bottom:182.960472px;}
.y10f_c00362{bottom:183.255135px;}
.y110_c00362{bottom:183.654831px;}
.y111_c00362{bottom:184.472583px;}
.y112_c00362{bottom:184.576248px;}
.y113_c00362{bottom:185.423916px;}
.yf8_c00362{bottom:198.993000px;}
.yf9_c00362{bottom:199.318164px;}
.yfa_c00362{bottom:199.616763px;}
.yfb_c00362{bottom:200.076495px;}
.yfc_c00362{bottom:200.382801px;}
.yfd_c00362{bottom:200.915613px;}
.yfe_c00362{bottom:201.093987px;}
.yff_c00362{bottom:202.137582px;}
.y100_c00362{bottom:202.340988px;}
.y101_c00362{bottom:202.824681px;}
.y102_c00362{bottom:203.199447px;}
.y103_c00362{bottom:203.491116px;}
.y104_c00362{bottom:204.102573px;}
.y105_c00362{bottom:204.462597px;}
.y106_c00362{bottom:204.943413px;}
.y107_c00362{bottom:205.611339px;}
.yef_c00362{bottom:213.836603px;}
.yf0_c00362{bottom:214.490783px;}
.yf1_c00362{bottom:214.825995px;}
.yf2_c00362{bottom:218.833500px;}
.yf3_c00362{bottom:220.484873px;}
.yf4_c00362{bottom:220.771163px;}
.yf5_c00362{bottom:221.897250px;}
.yf6_c00362{bottom:222.763545px;}
.yf7_c00362{bottom:223.269593px;}
.ye3_c00362{bottom:234.089520px;}
.ye4_c00362{bottom:234.523433px;}
.ye5_c00362{bottom:234.818872px;}
.ye6_c00362{bottom:235.839165px;}
.ye7_c00362{bottom:236.840303px;}
.ye8_c00362{bottom:237.481688px;}
.ye9_c00362{bottom:237.593775px;}
.yea_c00362{bottom:238.318853px;}
.yeb_c00362{bottom:238.587038px;}
.yec_c00362{bottom:239.085593px;}
.yed_c00362{bottom:239.537985px;}
.yee_c00362{bottom:239.917763px;}
.yd5_c00362{bottom:251.640143px;}
.yd6_c00362{bottom:252.127530px;}
.yd7_c00362{bottom:252.419258px;}
.yd8_c00362{bottom:253.295138px;}
.yd9_c00362{bottom:253.571985px;}
.yda_c00362{bottom:254.464808px;}
.ydb_c00362{bottom:255.337492px;}
.ydc_c00362{bottom:255.572228px;}
.ydd_c00362{bottom:256.442138px;}
.yde_c00362{bottom:257.061158px;}
.ydf_c00362{bottom:257.383110px;}
.ye0_c00362{bottom:257.750370px;}
.ye1_c00362{bottom:257.962373px;}
.ye2_c00362{bottom:258.521948px;}
.yc5_c00362{bottom:269.193000px;}
.yc6_c00362{bottom:269.422905px;}
.yc7_c00362{bottom:269.730863px;}
.yc8_c00362{bottom:270.358658px;}
.yc9_c00362{bottom:270.670530px;}
.yca_c00362{bottom:270.946268px;}
.ycb_c00362{bottom:271.978770px;}
.ycc_c00362{bottom:272.200958px;}
.ycd_c00362{bottom:272.525093px;}
.yce_c00362{bottom:272.946855px;}
.ycf_c00362{bottom:273.238365px;}
.yd0_c00362{bottom:273.745358px;}
.yd1_c00362{bottom:274.267200px;}
.yd2_c00362{bottom:274.534342px;}
.yd3_c00362{bottom:274.814198px;}
.yd4_c00362{bottom:276.436357px;}
.yc4_c00362{bottom:360.418275px;}
.yc3_c00362{bottom:360.418905px;}
.yc2_c00362{bottom:360.418920px;}
.yc0_c00362{bottom:360.418950px;}
.yc1_c00362{bottom:360.419235px;}
.ybf_c00362{bottom:360.419580px;}
.yb3_c00362{bottom:382.312155px;}
.yb4_c00362{bottom:382.743870px;}
.yb5_c00362{bottom:383.318085px;}
.yb6_c00362{bottom:383.662560px;}
.yb7_c00362{bottom:385.116540px;}
.yb8_c00362{bottom:385.777860px;}
.yb9_c00362{bottom:386.588820px;}
.yba_c00362{bottom:387.851835px;}
.ybb_c00362{bottom:388.172835px;}
.ybc_c00362{bottom:389.091135px;}
.ybd_c00362{bottom:389.519280px;}
.ybe_c00362{bottom:390.244095px;}
.yaf_c00362{bottom:411.744480px;}
.yb0_c00362{bottom:412.713825px;}
.yb1_c00362{bottom:414.079140px;}
.yb2_c00362{bottom:416.365650px;}
.ya3_c00362{bottom:437.124960px;}
.ya4_c00362{bottom:437.781300px;}
.ya5_c00362{bottom:438.089295px;}
.ya6_c00362{bottom:439.004460px;}
.ya7_c00362{bottom:439.660935px;}
.ya8_c00362{bottom:440.253300px;}
.ya9_c00362{bottom:441.268710px;}
.yaa_c00362{bottom:442.404660px;}
.yab_c00362{bottom:442.668330px;}
.yac_c00362{bottom:443.441280px;}
.yad_c00362{bottom:443.806560px;}
.yae_c00362{bottom:444.247215px;}
.y97_c00362{bottom:460.077525px;}
.y98_c00362{bottom:460.337175px;}
.y99_c00362{bottom:461.178465px;}
.y9a_c00362{bottom:461.502570px;}
.y9b_c00362{bottom:462.102855px;}
.y9c_c00362{bottom:462.491010px;}
.y9d_c00362{bottom:463.459365px;}
.y9e_c00362{bottom:464.362710px;}
.y9f_c00362{bottom:464.726100px;}
.ya0_c00362{bottom:465.346650px;}
.ya1_c00362{bottom:465.766965px;}
.ya2_c00362{bottom:466.548225px;}
.y8f_c00362{bottom:490.857705px;}
.y90_c00362{bottom:491.964690px;}
.y91_c00362{bottom:492.556710px;}
.y92_c00362{bottom:493.820310px;}
.y93_c00362{bottom:493.991610px;}
.y94_c00362{bottom:494.324070px;}
.y95_c00362{bottom:495.244395px;}
.y96_c00362{bottom:495.840015px;}
.y88_c00362{bottom:513.809685px;}
.y89_c00362{bottom:514.198290px;}
.y8a_c00362{bottom:514.728180px;}
.y8b_c00362{bottom:515.149800px;}
.y8c_c00362{bottom:516.497415px;}
.y8d_c00362{bottom:517.192245px;}
.y8e_c00362{bottom:518.072595px;}
.y7e_c00362{bottom:546.750705px;}
.y7f_c00362{bottom:547.008780px;}
.y80_c00362{bottom:547.246485px;}
.y81_c00362{bottom:547.795215px;}
.y82_c00362{bottom:548.035110px;}
.y83_c00362{bottom:548.216655px;}
.y84_c00362{bottom:548.771040px;}
.y85_c00362{bottom:549.159540px;}
.y86_c00362{bottom:549.669585px;}
.y87_c00362{bottom:549.849930px;}
.y71_c00362{bottom:569.867625px;}
.y72_c00362{bottom:570.608265px;}
.y73_c00362{bottom:570.968955px;}
.y74_c00362{bottom:571.835295px;}
.y75_c00362{bottom:571.981380px;}
.y76_c00362{bottom:572.412825px;}
.y77_c00362{bottom:573.263265px;}
.y78_c00362{bottom:573.787845px;}
.y79_c00362{bottom:574.229790px;}
.y7a_c00362{bottom:574.612680px;}
.y7b_c00362{bottom:574.805940px;}
.y7c_c00362{bottom:575.161905px;}
.y7d_c00362{bottom:576.079830px;}
.y62_c00362{bottom:592.533000px;}
.y63_c00362{bottom:592.941030px;}
.y64_c00362{bottom:593.286525px;}
.y65_c00362{bottom:593.637015px;}
.y66_c00362{bottom:594.158040px;}
.y67_c00362{bottom:594.458340px;}
.y68_c00362{bottom:594.758160px;}
.y69_c00362{bottom:594.927735px;}
.y6a_c00362{bottom:595.222365px;}
.y6b_c00362{bottom:595.521840px;}
.y6c_c00362{bottom:595.546065px;}
.y6d_c00362{bottom:595.686915px;}
.y6e_c00362{bottom:596.310780px;}
.y6f_c00362{bottom:596.683395px;}
.y70_c00362{bottom:597.346620px;}
.y61_c00362{bottom:624.335292px;}
.y5d_c00362{bottom:624.335802px;}
.y60_c00362{bottom:624.335868px;}
.y5f_c00362{bottom:624.336066px;}
.y5e_c00362{bottom:624.336204px;}
.y5c_c00362{bottom:624.336420px;}
.y58_c00362{bottom:624.336630px;}
.y54_c00362{bottom:624.336762px;}
.y56_c00362{bottom:624.336804px;}
.y55_c00362{bottom:624.336864px;}
.y57_c00362{bottom:624.336906px;}
.y5a_c00362{bottom:624.336996px;}
.y5b_c00362{bottom:624.337158px;}
.y59_c00362{bottom:624.337332px;}
.y4c_c00362{bottom:645.031500px;}
.y4d_c00362{bottom:645.391230px;}
.y4e_c00362{bottom:645.893502px;}
.y4f_c00362{bottom:646.641852px;}
.y50_c00362{bottom:647.014578px;}
.y51_c00362{bottom:647.538756px;}
.y52_c00362{bottom:647.902590px;}
.y53_c00362{bottom:648.484314px;}
.y4b_c00362{bottom:672.971886px;}
.y3d_c00362{bottom:695.791500px;}
.y3e_c00362{bottom:696.021792px;}
.y3f_c00362{bottom:696.475482px;}
.y40_c00362{bottom:697.111368px;}
.y41_c00362{bottom:697.420644px;}
.y42_c00362{bottom:697.645230px;}
.y43_c00362{bottom:698.207280px;}
.y44_c00362{bottom:698.415450px;}
.y45_c00362{bottom:698.715798px;}
.y46_c00362{bottom:699.057852px;}
.y47_c00362{bottom:699.688860px;}
.y48_c00362{bottom:700.019664px;}
.y49_c00362{bottom:700.474290px;}
.y4a_c00362{bottom:700.933902px;}
.y34_c00362{bottom:725.759356px;}
.y35_c00362{bottom:726.047429px;}
.y36_c00362{bottom:726.708217px;}
.y37_c00362{bottom:727.263324px;}
.y38_c00362{bottom:727.993195px;}
.y39_c00362{bottom:728.088484px;}
.y3a_c00362{bottom:729.014454px;}
.y3b_c00362{bottom:729.320406px;}
.y3c_c00362{bottom:729.718801px;}
.y2b_c00362{bottom:748.245000px;}
.y2c_c00362{bottom:749.094303px;}
.y2d_c00362{bottom:749.574725px;}
.y2e_c00362{bottom:750.612222px;}
.y2f_c00362{bottom:750.898599px;}
.y30_c00362{bottom:751.333936px;}
.y31_c00362{bottom:752.144317px;}
.y32_c00362{bottom:752.492782px;}
.y33_c00362{bottom:752.969323px;}
.y27_c00362{bottom:777.334554px;}
.y28_c00362{bottom:778.176975px;}
.y29_c00362{bottom:778.695816px;}
.y2a_c00362{bottom:780.380553px;}
.y1d_c00362{bottom:800.550093px;}
.y1e_c00362{bottom:800.947890px;}
.y1f_c00362{bottom:801.759339px;}
.y20_c00362{bottom:802.479192px;}
.y21_c00362{bottom:803.544063px;}
.y22_c00362{bottom:804.010431px;}
.y23_c00362{bottom:805.148817px;}
.y24_c00362{bottom:806.027766px;}
.y25_c00362{bottom:806.525601px;}
.y26_c00362{bottom:806.990961px;}
.y15_c00362{bottom:829.983000px;}
.y16_c00362{bottom:830.430111px;}
.y17_c00362{bottom:831.030543px;}
.y18_c00362{bottom:831.635343px;}
.y19_c00362{bottom:832.458669px;}
.y1a_c00362{bottom:832.607076px;}
.y1b_c00362{bottom:833.170296px;}
.y1c_c00362{bottom:833.476350px;}
.y10_c00362{bottom:875.341373px;}
.y11_c00362{bottom:876.640725px;}
.y12_c00362{bottom:877.489605px;}
.y13_c00362{bottom:878.078573px;}
.y14_c00362{bottom:879.622190px;}
.yc_c00362{bottom:913.417244px;}
.yd_c00362{bottom:917.321078px;}
.ye_c00362{bottom:918.814977px;}
.yf_c00362{bottom:920.958091px;}
.y2_c00362{bottom:935.280000px;}
.y3_c00362{bottom:935.722417px;}
.y4_c00362{bottom:936.151542px;}
.y5_c00362{bottom:936.540882px;}
.y6_c00362{bottom:936.917034px;}
.y7_c00362{bottom:937.058784px;}
.y8_c00362{bottom:937.469345px;}
.y9_c00362{bottom:937.733619px;}
.ya_c00362{bottom:938.168277px;}
.yb_c00362{bottom:938.548219px;}
.y1_c00362{bottom:946.350000px;}
.h1c_c00362{height:21.000000px;}
.h2_c00362{height:22.050000px;}
.h29_c00362{height:32.550000px;}
.h32_c00362{height:36.750000px;}
.h31_c00362{height:42.000000px;}
.h1e_c00362{height:44.100000px;}
.h26_c00362{height:49.350000px;}
.h1a_c00362{height:49.354836px;}
.h16_c00362{height:49.355552px;}
.h19_c00362{height:50.404939px;}
.h17_c00362{height:50.405670px;}
.h1b_c00362{height:51.455042px;}
.h18_c00362{height:51.455788px;}
.h23_c00362{height:52.500000px;}
.h3_c00362{height:52.501286px;}
.h20_c00362{height:57.750000px;}
.h1d_c00362{height:65.100000px;}
.h12_c00362{height:66.153307px;}
.hf_c00362{height:68.253412px;}
.h9_c00362{height:69.305856px;}
.h15_c00362{height:70.353517px;}
.hc_c00362{height:70.355065px;}
.h8_c00362{height:70.356894px;}
.ha_c00362{height:71.406033px;}
.h28_c00362{height:72.450000px;}
.h10_c00362{height:72.453622px;}
.hd_c00362{height:72.455216px;}
.h13_c00362{height:73.503675px;}
.hb_c00362{height:73.505292px;}
.h11_c00362{height:75.603780px;}
.he_c00362{height:75.605443px;}
.h14_c00362{height:76.653832px;}
.h7_c00362{height:77.707614px;}
.h25_c00362{height:78.750000px;}
.h1f_c00362{height:81.900000px;}
.h2e_c00362{height:88.200000px;}
.h6_c00362{height:89.258746px;}
.h5_c00362{height:91.352238px;}
.h27_c00362{height:117.600000px;}
.h2d_c00362{height:118.650000px;}
.h30_c00362{height:120.750000px;}
.h24_c00362{height:122.850000px;}
.h2c_c00362{height:123.900000px;}
.h2a_c00362{height:127.050000px;}
.h21_c00362{height:132.300000px;}
.h22_c00362{height:138.600000px;}
.h4_c00362{height:147.003601px;}
.h2f_c00362{height:153.300000px;}
.h2b_c00362{height:193.200000px;}
.h1_c00362{height:1005.000000px;}
.h0_c00362{height:1005.150000px;}
.w0_c00362{width:702.540000px;}
.w1_c00362{width:702.750000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:49.176000px;}
.xb_c00362{left:53.149727px;}
.xae_c00362{left:70.470000px;}
.xaf_c00362{left:87.210000px;}
.xb0_c00362{left:95.850000px;}
.x25_c00362{left:97.790691px;}
.x56_c00362{left:103.270005px;}
.x81_c00362{left:107.460195px;}
.x4c_c00362{left:109.531500px;}
.x8b_c00362{left:110.834483px;}
.x3_c00362{left:112.378500px;}
.x1c_c00362{left:116.007807px;}
.x6d_c00362{left:123.059775px;}
.x7c_c00362{left:126.600705px;}
.xb1_c00362{left:129.600000px;}
.x14_c00362{left:132.199500px;}
.x28_c00362{left:135.192000px;}
.x3e_c00362{left:137.032500px;}
.x85_c00362{left:138.391500px;}
.x65_c00362{left:139.540155px;}
.x1d_c00362{left:142.492929px;}
.x73_c00362{left:144.112320px;}
.x8c_c00362{left:145.627500px;}
.x4d_c00362{left:150.334500px;}
.xa3_c00362{left:151.838295px;}
.x26_c00362{left:154.515753px;}
.x30_c00362{left:155.978532px;}
.x5e_c00362{left:158.887755px;}
.x66_c00362{left:161.148930px;}
.x92_c00362{left:162.680408px;}
.x15_c00362{left:164.136000px;}
.x3f_c00362{left:167.010000px;}
.x42_c00362{left:168.482328px;}
.xa4_c00362{left:169.653282px;}
.x4_c00362{left:173.682000px;}
.x43_c00362{left:176.853534px;}
.x57_c00362{left:181.899855px;}
.x4e_c00362{left:184.884000px;}
.x67_c00362{left:190.585575px;}
.x6e_c00362{left:191.899650px;}
.xa5_c00362{left:194.472168px;}
.x1e_c00362{left:196.595673px;}
.x82_c00362{left:198.184770px;}
.x29_c00362{left:200.523000px;}
.x7d_c00362{left:201.635205px;}
.x31_c00362{left:203.230927px;}
.x16_c00362{left:207.024000px;}
.x40_c00362{left:208.866000px;}
.xf_c00362{left:211.370997px;}
.x68_c00362{left:213.995700px;}
.x4f_c00362{left:219.933000px;}
.x86_c00362{left:221.566500px;}
.x27_c00362{left:224.701425px;}
.x37_c00362{left:226.782000px;}
.x5_c00362{left:229.302000px;}
.x83_c00362{left:232.206675px;}
.x93_c00362{left:235.601010px;}
.x2a_c00362{left:237.478500px;}
.x44_c00362{left:240.848250px;}
.x32_c00362{left:242.930920px;}
.x1f_c00362{left:244.584501px;}
.x5f_c00362{left:246.601140px;}
.x8d_c00362{left:248.826052px;}
.x17_c00362{left:250.224000px;}
.x38_c00362{left:252.555000px;}
.x58_c00362{left:254.189460px;}
.x84_c00362{left:256.507605px;}
.x9e_c00362{left:259.828500px;}
.x45_c00362{left:261.909774px;}
.xb2_c00362{left:265.140000px;}
.x60_c00362{left:266.855850px;}
.xa6_c00362{left:268.751826px;}
.x39_c00362{left:271.270500px;}
.x9f_c00362{left:272.569500px;}
.x6f_c00362{left:273.949230px;}
.x6_c00362{left:283.038000px;}
.x59_c00362{left:285.032730px;}
.x69_c00362{left:288.901215px;}
.x79_c00362{left:290.505300px;}
.xa7_c00362{left:292.004628px;}
.x33_c00362{left:295.035738px;}
.x74_c00362{left:298.603050px;}
.x1_c00362{left:302.670000px;}
.x46_c00362{left:303.762804px;}
.x94_c00362{left:307.144590px;}
.x18_c00362{left:309.033000px;}
.x10_c00362{left:311.274297px;}
.xc_c00362{left:313.397153px;}
.x20_c00362{left:315.610014px;}
.x2b_c00362{left:317.286000px;}
.x19_c00362{left:319.633500px;}
.xa8_c00362{left:321.410766px;}
.x87_c00362{left:323.595000px;}
.x6a_c00362{left:325.421115px;}
.x61_c00362{left:328.444965px;}
.x47_c00362{left:331.843854px;}
.xb3_c00362{left:333.180000px;}
.x3a_c00362{left:335.455500px;}
.x2c_c00362{left:339.315000px;}
.x7a_c00362{left:341.535210px;}
.x88_c00362{left:345.204000px;}
.x21_c00362{left:346.671573px;}
.x50_c00362{left:349.005000px;}
.x95_c00362{left:352.904265px;}
.x48_c00362{left:354.795666px;}
.x6b_c00362{left:356.895225px;}
.x1a_c00362{left:359.863500px;}
.x96_c00362{left:360.876878px;}
.x7_c00362{left:361.939500px;}
.x7e_c00362{left:364.198200px;}
.x34_c00362{left:367.939282px;}
.xb4_c00362{left:369.090000px;}
.x62_c00362{left:371.645400px;}
.x2d_c00362{left:372.802500px;}
.x8e_c00362{left:374.928443px;}
.x11_c00362{left:376.611557px;}
.x51_c00362{left:378.468000px;}
.x1b_c00362{left:381.724500px;}
.x5a_c00362{left:383.230800px;}
.x35_c00362{left:389.742990px;}
.x70_c00362{left:390.912210px;}
.x89_c00362{left:392.755500px;}
.xa0_c00362{left:396.190500px;}
.x8_c00362{left:399.693000px;}
.x49_c00362{left:407.450244px;}
.x52_c00362{left:410.838000px;}
.xd_c00362{left:413.020077px;}
.x5b_c00362{left:414.824040px;}
.x36_c00362{left:418.196119px;}
.x12_c00362{left:421.962156px;}
.x41_c00362{left:424.767000px;}
.x4a_c00362{left:425.811390px;}
.x63_c00362{left:428.350470px;}
.xb5_c00362{left:430.650000px;}
.x97_c00362{left:431.895458px;}
.x75_c00362{left:433.030980px;}
.x2e_c00362{left:435.139500px;}
.x3b_c00362{left:441.573000px;}
.xa9_c00362{left:443.199591px;}
.x9a_c00362{left:444.358733px;}
.x64_c00362{left:448.335165px;}
.x76_c00362{left:449.496990px;}
.x6c_c00362{left:451.634040px;}
.x8f_c00362{left:453.772613px;}
.x5c_c00362{left:455.937390px;}
.xb6_c00362{left:457.380000px;}
.x9b_c00362{left:458.643653px;}
.x9_c00362{left:461.787000px;}
.x98_c00362{left:467.532998px;}
.x3c_c00362{left:469.140000px;}
.x4b_c00362{left:474.145356px;}
.x71_c00362{left:478.682445px;}
.x22_c00362{left:481.122183px;}
.x53_c00362{left:487.309500px;}
.xb7_c00362{left:496.800000px;}
.x2f_c00362{left:498.601500px;}
.x99_c00362{left:499.892993px;}
.x7f_c00362{left:503.268585px;}
.x3d_c00362{left:507.025500px;}
.xa1_c00362{left:513.184500px;}
.x23_c00362{left:514.324221px;}
.xa_c00362{left:516.064500px;}
.x77_c00362{left:520.715730px;}
.x54_c00362{left:524.571000px;}
.x72_c00362{left:527.555520px;}
.x7b_c00362{left:533.750415px;}
.xaa_c00362{left:538.264404px;}
.x13_c00362{left:540.688169px;}
.x24_c00362{left:545.313780px;}
.x5d_c00362{left:546.872745px;}
.x78_c00362{left:548.279580px;}
.xe_c00362{left:555.885576px;}
.x9c_c00362{left:558.261683px;}
.x90_c00362{left:562.323233px;}
.x80_c00362{left:567.259455px;}
.xb8_c00362{left:576.180000px;}
.x9d_c00362{left:583.596293px;}
.x55_c00362{left:590.893500px;}
.xa2_c00362{left:595.237500px;}
.xab_c00362{left:598.320000px;}
.xbc_c00362{left:599.670000px;}
.xb9_c00362{left:600.750000px;}
.x91_c00362{left:602.328840px;}
.x8a_c00362{left:605.955000px;}
.xba_c00362{left:610.200000px;}
.xad_c00362{left:613.440000px;}
.xac_c00362{left:614.520000px;}
.xbb_c00362{left:625.590000px;}
.xbd_c00362{left:635.310000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.fs1a_c00362{font-size:18.666667pt;}
.fs0_c00362{font-size:19.600000pt;}
.fs27_c00362{font-size:28.933333pt;}
.fs30_c00362{font-size:32.666667pt;}
.fs2f_c00362{font-size:37.333333pt;}
.fs1c_c00362{font-size:39.200000pt;}
.fs24_c00362{font-size:43.866667pt;}
.fs18_c00362{font-size:43.870965pt;}
.fs14_c00362{font-size:43.871601pt;}
.fs17_c00362{font-size:44.804390pt;}
.fs15_c00362{font-size:44.805040pt;}
.fs19_c00362{font-size:45.737815pt;}
.fs16_c00362{font-size:45.738478pt;}
.fs21_c00362{font-size:46.666667pt;}
.fs1_c00362{font-size:46.667810pt;}
.fs1e_c00362{font-size:51.333333pt;}
.fs1b_c00362{font-size:57.866667pt;}
.fs10_c00362{font-size:58.802940pt;}
.fsd_c00362{font-size:60.669700pt;}
.fs7_c00362{font-size:61.605205pt;}
.fs13_c00362{font-size:62.536460pt;}
.fsa_c00362{font-size:62.537836pt;}
.fs6_c00362{font-size:62.539461pt;}
.fs8_c00362{font-size:63.472029pt;}
.fs26_c00362{font-size:64.400000pt;}
.fse_c00362{font-size:64.403220pt;}
.fsb_c00362{font-size:64.404637pt;}
.fs11_c00362{font-size:65.336600pt;}
.fs9_c00362{font-size:65.338037pt;}
.fsf_c00362{font-size:67.203360pt;}
.fsc_c00362{font-size:67.204838pt;}
.fs12_c00362{font-size:68.136740pt;}
.fs5_c00362{font-size:69.073435pt;}
.fs23_c00362{font-size:70.000000pt;}
.fs1d_c00362{font-size:72.800000pt;}
.fs2c_c00362{font-size:78.400000pt;}
.fs4_c00362{font-size:79.341108pt;}
.fs3_c00362{font-size:81.201989pt;}
.fs25_c00362{font-size:104.533333pt;}
.fs2b_c00362{font-size:105.466667pt;}
.fs2e_c00362{font-size:107.333333pt;}
.fs22_c00362{font-size:109.200000pt;}
.fs2a_c00362{font-size:110.133333pt;}
.fs28_c00362{font-size:112.933333pt;}
.fs1f_c00362{font-size:117.600000pt;}
.fs20_c00362{font-size:123.200000pt;}
.fs2_c00362{font-size:130.669868pt;}
.fs2d_c00362{font-size:136.266667pt;}
.fs29_c00362{font-size:171.733333pt;}
.y0_c00362{bottom:0.000000pt;}
.y11d_c00362{bottom:90.240000pt;}
.y11c_c00362{bottom:91.200000pt;}
.y11b_c00362{bottom:91.920000pt;}
.y121_c00362{bottom:92.400000pt;}
.y11e_c00362{bottom:93.360000pt;}
.y120_c00362{bottom:94.320000pt;}
.y122_c00362{bottom:95.040000pt;}
.y125_c00362{bottom:95.520000pt;}
.y11f_c00362{bottom:96.240000pt;}
.y127_c00362{bottom:96.960000pt;}
.y129_c00362{bottom:98.160000pt;}
.y123_c00362{bottom:98.400000pt;}
.y128_c00362{bottom:98.880000pt;}
.y12e_c00362{bottom:99.216000pt;}
.y12d_c00362{bottom:99.600000pt;}
.y119_c00362{bottom:102.000000pt;}
.y12c_c00362{bottom:102.240000pt;}
.y126_c00362{bottom:102.480000pt;}
.y124_c00362{bottom:102.960000pt;}
.y12a_c00362{bottom:103.440000pt;}
.y12b_c00362{bottom:108.000000pt;}
.y11a_c00362{bottom:111.120000pt;}
.y118_c00362{bottom:127.440000pt;}
.y115_c00362{bottom:145.211504pt;}
.y117_c00362{bottom:145.211733pt;}
.y116_c00362{bottom:145.211752pt;}
.y114_c00362{bottom:145.211861pt;}
.y108_c00362{bottom:161.039589pt;}
.y109_c00362{bottom:161.384669pt;}
.y10a_c00362{bottom:161.543688pt;}
.y10b_c00362{bottom:161.764528pt;}
.y10c_c00362{bottom:162.123211pt;}
.y10d_c00362{bottom:162.424845pt;}
.y10e_c00362{bottom:162.631531pt;}
.y10f_c00362{bottom:162.893453pt;}
.y110_c00362{bottom:163.248739pt;}
.y111_c00362{bottom:163.975629pt;}
.y112_c00362{bottom:164.067776pt;}
.y113_c00362{bottom:164.821259pt;}
.yf8_c00362{bottom:176.882667pt;}
.yf9_c00362{bottom:177.171701pt;}
.yfa_c00362{bottom:177.437123pt;}
.yfb_c00362{bottom:177.845773pt;}
.yfc_c00362{bottom:178.118045pt;}
.yfd_c00362{bottom:178.591656pt;}
.yfe_c00362{bottom:178.750211pt;}
.yff_c00362{bottom:179.677851pt;}
.y100_c00362{bottom:179.858656pt;}
.y101_c00362{bottom:180.288605pt;}
.y102_c00362{bottom:180.621731pt;}
.y103_c00362{bottom:180.880992pt;}
.y104_c00362{bottom:181.424509pt;}
.y105_c00362{bottom:181.744531pt;}
.y106_c00362{bottom:182.171923pt;}
.y107_c00362{bottom:182.765635pt;}
.yef_c00362{bottom:190.076980pt;}
.yf0_c00362{bottom:190.658473pt;}
.yf1_c00362{bottom:190.956440pt;}
.yf2_c00362{bottom:194.518667pt;}
.yf3_c00362{bottom:195.986553pt;}
.yf4_c00362{bottom:196.241033pt;}
.yf5_c00362{bottom:197.242000pt;}
.yf6_c00362{bottom:198.012040pt;}
.yf7_c00362{bottom:198.461860pt;}
.ye3_c00362{bottom:208.079573pt;}
.ye4_c00362{bottom:208.465273pt;}
.ye5_c00362{bottom:208.727887pt;}
.ye6_c00362{bottom:209.634813pt;}
.ye7_c00362{bottom:210.524713pt;}
.ye8_c00362{bottom:211.094833pt;}
.ye9_c00362{bottom:211.194467pt;}
.yea_c00362{bottom:211.838980pt;}
.yeb_c00362{bottom:212.077367pt;}
.yec_c00362{bottom:212.520527pt;}
.yed_c00362{bottom:212.922653pt;}
.yee_c00362{bottom:213.260233pt;}
.yd5_c00362{bottom:223.680127pt;}
.yd6_c00362{bottom:224.113360pt;}
.yd7_c00362{bottom:224.372673pt;}
.yd8_c00362{bottom:225.151233pt;}
.yd9_c00362{bottom:225.397320pt;}
.yda_c00362{bottom:226.190940pt;}
.ydb_c00362{bottom:226.966660pt;}
.ydc_c00362{bottom:227.175313pt;}
.ydd_c00362{bottom:227.948567pt;}
.yde_c00362{bottom:228.498807pt;}
.ydf_c00362{bottom:228.784987pt;}
.ye0_c00362{bottom:229.111440pt;}
.ye1_c00362{bottom:229.299887pt;}
.ye2_c00362{bottom:229.797287pt;}
.yc5_c00362{bottom:239.282667pt;}
.yc6_c00362{bottom:239.487027pt;}
.yc7_c00362{bottom:239.760767pt;}
.yc8_c00362{bottom:240.318807pt;}
.yc9_c00362{bottom:240.596027pt;}
.yca_c00362{bottom:240.841127pt;}
.ycb_c00362{bottom:241.758907pt;}
.ycc_c00362{bottom:241.956407pt;}
.ycd_c00362{bottom:242.244527pt;}
.yce_c00362{bottom:242.619427pt;}
.ycf_c00362{bottom:242.878547pt;}
.yd0_c00362{bottom:243.329207pt;}
.yd1_c00362{bottom:243.793067pt;}
.yd2_c00362{bottom:244.030527pt;}
.yd3_c00362{bottom:244.279287pt;}
.yd4_c00362{bottom:245.721207pt;}
.yc4_c00362{bottom:320.371800pt;}
.yc3_c00362{bottom:320.372360pt;}
.yc2_c00362{bottom:320.372373pt;}
.yc0_c00362{bottom:320.372400pt;}
.yc1_c00362{bottom:320.372653pt;}
.ybf_c00362{bottom:320.372960pt;}
.yb3_c00362{bottom:339.833027pt;}
.yb4_c00362{bottom:340.216773pt;}
.yb5_c00362{bottom:340.727187pt;}
.yb6_c00362{bottom:341.033387pt;}
.yb7_c00362{bottom:342.325813pt;}
.yb8_c00362{bottom:342.913653pt;}
.yb9_c00362{bottom:343.634507pt;}
.yba_c00362{bottom:344.757187pt;}
.ybb_c00362{bottom:345.042520pt;}
.ybc_c00362{bottom:345.858787pt;}
.ybd_c00362{bottom:346.239360pt;}
.ybe_c00362{bottom:346.883640pt;}
.yaf_c00362{bottom:365.995093pt;}
.yb0_c00362{bottom:366.856733pt;}
.yb1_c00362{bottom:368.070347pt;}
.yb2_c00362{bottom:370.102800pt;}
.ya3_c00362{bottom:388.555520pt;}
.ya4_c00362{bottom:389.138933pt;}
.ya5_c00362{bottom:389.412707pt;}
.ya6_c00362{bottom:390.226187pt;}
.ya7_c00362{bottom:390.809720pt;}
.ya8_c00362{bottom:391.336267pt;}
.ya9_c00362{bottom:392.238853pt;}
.yaa_c00362{bottom:393.248587pt;}
.yab_c00362{bottom:393.482960pt;}
.yac_c00362{bottom:394.170027pt;}
.yad_c00362{bottom:394.494720pt;}
.yae_c00362{bottom:394.886413pt;}
.y97_c00362{bottom:408.957800pt;}
.y98_c00362{bottom:409.188600pt;}
.y99_c00362{bottom:409.936413pt;}
.y9a_c00362{bottom:410.224507pt;}
.y9b_c00362{bottom:410.758093pt;}
.y9c_c00362{bottom:411.103120pt;}
.y9d_c00362{bottom:411.963880pt;}
.y9e_c00362{bottom:412.766853pt;}
.y9f_c00362{bottom:413.089867pt;}
.ya0_c00362{bottom:413.641467pt;}
.ya1_c00362{bottom:414.015080pt;}
.ya2_c00362{bottom:414.709533pt;}
.y8f_c00362{bottom:436.317960pt;}
.y90_c00362{bottom:437.301947pt;}
.y91_c00362{bottom:437.828187pt;}
.y92_c00362{bottom:438.951387pt;}
.y93_c00362{bottom:439.103653pt;}
.y94_c00362{bottom:439.399173pt;}
.y95_c00362{bottom:440.217240pt;}
.y96_c00362{bottom:440.746680pt;}
.y88_c00362{bottom:456.719720pt;}
.y89_c00362{bottom:457.065147pt;}
.y8a_c00362{bottom:457.536160pt;}
.y8b_c00362{bottom:457.910933pt;}
.y8c_c00362{bottom:459.108813pt;}
.y8d_c00362{bottom:459.726440pt;}
.y8e_c00362{bottom:460.508973pt;}
.y7e_c00362{bottom:486.000627pt;}
.y7f_c00362{bottom:486.230027pt;}
.y80_c00362{bottom:486.441320pt;}
.y81_c00362{bottom:486.929080pt;}
.y82_c00362{bottom:487.142320pt;}
.y83_c00362{bottom:487.303693pt;}
.y84_c00362{bottom:487.796480pt;}
.y85_c00362{bottom:488.141813pt;}
.y86_c00362{bottom:488.595187pt;}
.y87_c00362{bottom:488.755493pt;}
.y71_c00362{bottom:506.549000pt;}
.y72_c00362{bottom:507.207347pt;}
.y73_c00362{bottom:507.527960pt;}
.y74_c00362{bottom:508.298040pt;}
.y75_c00362{bottom:508.427893pt;}
.y76_c00362{bottom:508.811400pt;}
.y77_c00362{bottom:509.567347pt;}
.y78_c00362{bottom:510.033640pt;}
.y79_c00362{bottom:510.426480pt;}
.y7a_c00362{bottom:510.766827pt;}
.y7b_c00362{bottom:510.938613pt;}
.y7c_c00362{bottom:511.255027pt;}
.y7d_c00362{bottom:512.070960pt;}
.y62_c00362{bottom:526.696000pt;}
.y63_c00362{bottom:527.058693pt;}
.y64_c00362{bottom:527.365800pt;}
.y65_c00362{bottom:527.677347pt;}
.y66_c00362{bottom:528.140480pt;}
.y67_c00362{bottom:528.407413pt;}
.y68_c00362{bottom:528.673920pt;}
.y69_c00362{bottom:528.824653pt;}
.y6a_c00362{bottom:529.086547pt;}
.y6b_c00362{bottom:529.352747pt;}
.y6c_c00362{bottom:529.374280pt;}
.y6d_c00362{bottom:529.499480pt;}
.y6e_c00362{bottom:530.054027pt;}
.y6f_c00362{bottom:530.385240pt;}
.y70_c00362{bottom:530.974773pt;}
.y61_c00362{bottom:554.964704pt;}
.y5d_c00362{bottom:554.965157pt;}
.y60_c00362{bottom:554.965216pt;}
.y5f_c00362{bottom:554.965392pt;}
.y5e_c00362{bottom:554.965515pt;}
.y5c_c00362{bottom:554.965707pt;}
.y58_c00362{bottom:554.965893pt;}
.y54_c00362{bottom:554.966011pt;}
.y56_c00362{bottom:554.966048pt;}
.y55_c00362{bottom:554.966101pt;}
.y57_c00362{bottom:554.966139pt;}
.y5a_c00362{bottom:554.966219pt;}
.y5b_c00362{bottom:554.966363pt;}
.y59_c00362{bottom:554.966517pt;}
.y4c_c00362{bottom:573.361333pt;}
.y4d_c00362{bottom:573.681093pt;}
.y4e_c00362{bottom:574.127557pt;}
.y4f_c00362{bottom:574.792757pt;}
.y50_c00362{bottom:575.124069pt;}
.y51_c00362{bottom:575.590005pt;}
.y52_c00362{bottom:575.913413pt;}
.y53_c00362{bottom:576.430501pt;}
.y4b_c00362{bottom:598.197232pt;}
.y3d_c00362{bottom:618.481333pt;}
.y3e_c00362{bottom:618.686037pt;}
.y3f_c00362{bottom:619.089317pt;}
.y40_c00362{bottom:619.654549pt;}
.y41_c00362{bottom:619.929461pt;}
.y42_c00362{bottom:620.129093pt;}
.y43_c00362{bottom:620.628693pt;}
.y44_c00362{bottom:620.813733pt;}
.y45_c00362{bottom:621.080709pt;}
.y46_c00362{bottom:621.384757pt;}
.y47_c00362{bottom:621.945653pt;}
.y48_c00362{bottom:622.239701pt;}
.y49_c00362{bottom:622.643813pt;}
.y4a_c00362{bottom:623.052357pt;}
.y34_c00362{bottom:645.119428pt;}
.y35_c00362{bottom:645.375492pt;}
.y36_c00362{bottom:645.962860pt;}
.y37_c00362{bottom:646.456288pt;}
.y38_c00362{bottom:647.105063pt;}
.y39_c00362{bottom:647.189764pt;}
.y3a_c00362{bottom:648.012848pt;}
.y3b_c00362{bottom:648.284805pt;}
.y3c_c00362{bottom:648.638935pt;}
.y2b_c00362{bottom:665.106667pt;}
.y2c_c00362{bottom:665.861603pt;}
.y2d_c00362{bottom:666.288644pt;}
.y2e_c00362{bottom:667.210864pt;}
.y2f_c00362{bottom:667.465421pt;}
.y30_c00362{bottom:667.852388pt;}
.y31_c00362{bottom:668.572727pt;}
.y32_c00362{bottom:668.882473pt;}
.y33_c00362{bottom:669.306065pt;}
.y27_c00362{bottom:690.964048pt;}
.y28_c00362{bottom:691.712867pt;}
.y29_c00362{bottom:692.174059pt;}
.y2a_c00362{bottom:693.671603pt;}
.y1d_c00362{bottom:711.600083pt;}
.y1e_c00362{bottom:711.953680pt;}
.y1f_c00362{bottom:712.674968pt;}
.y20_c00362{bottom:713.314837pt;}
.y21_c00362{bottom:714.261389pt;}
.y22_c00362{bottom:714.675939pt;}
.y23_c00362{bottom:715.687837pt;}
.y24_c00362{bottom:716.469125pt;}
.y25_c00362{bottom:716.911645pt;}
.y26_c00362{bottom:717.325299pt;}
.y15_c00362{bottom:737.762667pt;}
.y16_c00362{bottom:738.160099pt;}
.y17_c00362{bottom:738.693816pt;}
.y18_c00362{bottom:739.231416pt;}
.y19_c00362{bottom:739.963261pt;}
.y1a_c00362{bottom:740.095179pt;}
.y1b_c00362{bottom:740.595819pt;}
.y1c_c00362{bottom:740.867867pt;}
.y10_c00362{bottom:778.081220pt;}
.y11_c00362{bottom:779.236200pt;}
.y12_c00362{bottom:779.990760pt;}
.y13_c00362{bottom:780.514287pt;}
.y14_c00362{bottom:781.886391pt;}
.yc_c00362{bottom:811.926439pt;}
.yd_c00362{bottom:815.396513pt;}
.ye_c00362{bottom:816.724424pt;}
.yf_c00362{bottom:818.629415pt;}
.y2_c00362{bottom:831.360000pt;}
.y3_c00362{bottom:831.753260pt;}
.y4_c00362{bottom:832.134704pt;}
.y5_c00362{bottom:832.480784pt;}
.y6_c00362{bottom:832.815141pt;}
.y7_c00362{bottom:832.941141pt;}
.y8_c00362{bottom:833.306084pt;}
.y9_c00362{bottom:833.540995pt;}
.ya_c00362{bottom:833.927357pt;}
.yb_c00362{bottom:834.265084pt;}
.y1_c00362{bottom:841.200000pt;}
.h1c_c00362{height:18.666667pt;}
.h2_c00362{height:19.600000pt;}
.h29_c00362{height:28.933333pt;}
.h32_c00362{height:32.666667pt;}
.h31_c00362{height:37.333333pt;}
.h1e_c00362{height:39.200000pt;}
.h26_c00362{height:43.866667pt;}
.h1a_c00362{height:43.870965pt;}
.h16_c00362{height:43.871601pt;}
.h19_c00362{height:44.804390pt;}
.h17_c00362{height:44.805040pt;}
.h1b_c00362{height:45.737815pt;}
.h18_c00362{height:45.738478pt;}
.h23_c00362{height:46.666667pt;}
.h3_c00362{height:46.667810pt;}
.h20_c00362{height:51.333333pt;}
.h1d_c00362{height:57.866667pt;}
.h12_c00362{height:58.802940pt;}
.hf_c00362{height:60.669700pt;}
.h9_c00362{height:61.605205pt;}
.h15_c00362{height:62.536460pt;}
.hc_c00362{height:62.537836pt;}
.h8_c00362{height:62.539461pt;}
.ha_c00362{height:63.472029pt;}
.h28_c00362{height:64.400000pt;}
.h10_c00362{height:64.403220pt;}
.hd_c00362{height:64.404637pt;}
.h13_c00362{height:65.336600pt;}
.hb_c00362{height:65.338037pt;}
.h11_c00362{height:67.203360pt;}
.he_c00362{height:67.204838pt;}
.h14_c00362{height:68.136740pt;}
.h7_c00362{height:69.073435pt;}
.h25_c00362{height:70.000000pt;}
.h1f_c00362{height:72.800000pt;}
.h2e_c00362{height:78.400000pt;}
.h6_c00362{height:79.341108pt;}
.h5_c00362{height:81.201989pt;}
.h27_c00362{height:104.533333pt;}
.h2d_c00362{height:105.466667pt;}
.h30_c00362{height:107.333333pt;}
.h24_c00362{height:109.200000pt;}
.h2c_c00362{height:110.133333pt;}
.h2a_c00362{height:112.933333pt;}
.h21_c00362{height:117.600000pt;}
.h22_c00362{height:123.200000pt;}
.h4_c00362{height:130.669868pt;}
.h2f_c00362{height:136.266667pt;}
.h2b_c00362{height:171.733333pt;}
.h1_c00362{height:893.333333pt;}
.h0_c00362{height:893.466667pt;}
.w0_c00362{width:624.480000pt;}
.w1_c00362{width:624.666667pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:43.712000pt;}
.xb_c00362{left:47.244201pt;}
.xae_c00362{left:62.640000pt;}
.xaf_c00362{left:77.520000pt;}
.xb0_c00362{left:85.200000pt;}
.x25_c00362{left:86.925059pt;}
.x56_c00362{left:91.795560pt;}
.x81_c00362{left:95.520173pt;}
.x4c_c00362{left:97.361333pt;}
.x8b_c00362{left:98.519540pt;}
.x3_c00362{left:99.892000pt;}
.x1c_c00362{left:103.118051pt;}
.x6d_c00362{left:109.386467pt;}
.x7c_c00362{left:112.533960pt;}
.xb1_c00362{left:115.200000pt;}
.x14_c00362{left:117.510667pt;}
.x28_c00362{left:120.170667pt;}
.x3e_c00362{left:121.806667pt;}
.x85_c00362{left:123.014667pt;}
.x65_c00362{left:124.035693pt;}
.x1d_c00362{left:126.660381pt;}
.x73_c00362{left:128.099840pt;}
.x8c_c00362{left:129.446667pt;}
.x4d_c00362{left:133.630667pt;}
.xa3_c00362{left:134.967373pt;}
.x26_c00362{left:137.347336pt;}
.x30_c00362{left:138.647584pt;}
.x5e_c00362{left:141.233560pt;}
.x66_c00362{left:143.243493pt;}
.x92_c00362{left:144.604807pt;}
.x15_c00362{left:145.898667pt;}
.x3f_c00362{left:148.453333pt;}
.x42_c00362{left:149.762069pt;}
.xa4_c00362{left:150.802917pt;}
.x4_c00362{left:154.384000pt;}
.x43_c00362{left:157.203141pt;}
.x57_c00362{left:161.688760pt;}
.x4e_c00362{left:164.341333pt;}
.x67_c00362{left:169.409400pt;}
.x6e_c00362{left:170.577467pt;}
.xa5_c00362{left:172.864149pt;}
.x1e_c00362{left:174.751709pt;}
.x82_c00362{left:176.164240pt;}
.x29_c00362{left:178.242667pt;}
.x7d_c00362{left:179.231293pt;}
.x31_c00362{left:180.649713pt;}
.x16_c00362{left:184.021333pt;}
.x40_c00362{left:185.658667pt;}
.xf_c00362{left:187.885331pt;}
.x68_c00362{left:190.218400pt;}
.x4f_c00362{left:195.496000pt;}
.x86_c00362{left:196.948000pt;}
.x27_c00362{left:199.734600pt;}
.x37_c00362{left:201.584000pt;}
.x5_c00362{left:203.824000pt;}
.x83_c00362{left:206.405933pt;}
.x93_c00362{left:209.423120pt;}
.x2a_c00362{left:211.092000pt;}
.x44_c00362{left:214.087333pt;}
.x32_c00362{left:215.938596pt;}
.x1f_c00362{left:217.408445pt;}
.x5f_c00362{left:219.201013pt;}
.x8d_c00362{left:221.178713pt;}
.x17_c00362{left:222.421333pt;}
.x38_c00362{left:224.493333pt;}
.x58_c00362{left:225.946187pt;}
.x84_c00362{left:228.006760pt;}
.x9e_c00362{left:230.958667pt;}
.x45_c00362{left:232.808688pt;}
.xb2_c00362{left:235.680000pt;}
.x60_c00362{left:237.205200pt;}
.xa6_c00362{left:238.890512pt;}
.x39_c00362{left:241.129333pt;}
.x9f_c00362{left:242.284000pt;}
.x6f_c00362{left:243.510427pt;}
.x6_c00362{left:251.589333pt;}
.x59_c00362{left:253.362427pt;}
.x69_c00362{left:256.801080pt;}
.x79_c00362{left:258.226933pt;}
.xa7_c00362{left:259.559669pt;}
.x33_c00362{left:262.253989pt;}
.x74_c00362{left:265.424933pt;}
.x1_c00362{left:269.040000pt;}
.x46_c00362{left:270.011381pt;}
.x94_c00362{left:273.017413pt;}
.x18_c00362{left:274.696000pt;}
.x10_c00362{left:276.688264pt;}
.xc_c00362{left:278.575247pt;}
.x20_c00362{left:280.542235pt;}
.x2b_c00362{left:282.032000pt;}
.x19_c00362{left:284.118667pt;}
.xa8_c00362{left:285.698459pt;}
.x87_c00362{left:287.640000pt;}
.x6a_c00362{left:289.263213pt;}
.x61_c00362{left:291.951080pt;}
.x47_c00362{left:294.972315pt;}
.xb3_c00362{left:296.160000pt;}
.x3a_c00362{left:298.182667pt;}
.x2c_c00362{left:301.613333pt;}
.x7a_c00362{left:303.586853pt;}
.x88_c00362{left:306.848000pt;}
.x21_c00362{left:308.152509pt;}
.x50_c00362{left:310.226667pt;}
.x95_c00362{left:313.692680pt;}
.x48_c00362{left:315.373925pt;}
.x6b_c00362{left:317.240200pt;}
.x1a_c00362{left:319.878667pt;}
.x96_c00362{left:320.779447pt;}
.x7_c00362{left:321.724000pt;}
.x7e_c00362{left:323.731733pt;}
.x34_c00362{left:327.057140pt;}
.xb4_c00362{left:328.080000pt;}
.x62_c00362{left:330.351467pt;}
.x2d_c00362{left:331.380000pt;}
.x8e_c00362{left:333.269727pt;}
.x11_c00362{left:334.765828pt;}
.x51_c00362{left:336.416000pt;}
.x1b_c00362{left:339.310667pt;}
.x5a_c00362{left:340.649600pt;}
.x35_c00362{left:346.438213pt;}
.x70_c00362{left:347.477520pt;}
.x89_c00362{left:349.116000pt;}
.xa0_c00362{left:352.169333pt;}
.x8_c00362{left:355.282667pt;}
.x49_c00362{left:362.177995pt;}
.x52_c00362{left:365.189333pt;}
.xd_c00362{left:367.128957pt;}
.x5b_c00362{left:368.732480pt;}
.x36_c00362{left:371.729884pt;}
.x12_c00362{left:375.077472pt;}
.x41_c00362{left:377.570667pt;}
.x4a_c00362{left:378.499013pt;}
.x63_c00362{left:380.755973pt;}
.xb5_c00362{left:382.800000pt;}
.x97_c00362{left:383.907073pt;}
.x75_c00362{left:384.916427pt;}
.x2e_c00362{left:386.790667pt;}
.x3b_c00362{left:392.509333pt;}
.xa9_c00362{left:393.955192pt;}
.x9a_c00362{left:394.985540pt;}
.x64_c00362{left:398.520147pt;}
.x76_c00362{left:399.552880pt;}
.x6c_c00362{left:401.452480pt;}
.x8f_c00362{left:403.353433pt;}
.x5c_c00362{left:405.277680pt;}
.xb6_c00362{left:406.560000pt;}
.x9b_c00362{left:407.683247pt;}
.x9_c00362{left:410.477333pt;}
.x98_c00362{left:415.584887pt;}
.x3c_c00362{left:417.013333pt;}
.x4b_c00362{left:421.462539pt;}
.x71_c00362{left:425.495507pt;}
.x22_c00362{left:427.664163pt;}
.x53_c00362{left:433.164000pt;}
.xb7_c00362{left:441.600000pt;}
.x2f_c00362{left:443.201333pt;}
.x99_c00362{left:444.349327pt;}
.x7f_c00362{left:447.349853pt;}
.x3d_c00362{left:450.689333pt;}
.xa1_c00362{left:456.164000pt;}
.x23_c00362{left:457.177085pt;}
.xa_c00362{left:458.724000pt;}
.x77_c00362{left:462.858427pt;}
.x54_c00362{left:466.285333pt;}
.x72_c00362{left:468.938240pt;}
.x7b_c00362{left:474.444813pt;}
.xaa_c00362{left:478.457248pt;}
.x13_c00362{left:480.611705pt;}
.x24_c00362{left:484.723360pt;}
.x5d_c00362{left:486.109107pt;}
.x78_c00362{left:487.359627pt;}
.xe_c00362{left:494.120512pt;}
.x9c_c00362{left:496.232607pt;}
.x90_c00362{left:499.842873pt;}
.x80_c00362{left:504.230627pt;}
.xb8_c00362{left:512.160000pt;}
.x9d_c00362{left:518.752260pt;}
.x55_c00362{left:525.238667pt;}
.xa2_c00362{left:529.100000pt;}
.xab_c00362{left:531.840000pt;}
.xbc_c00362{left:533.040000pt;}
.xb9_c00362{left:534.000000pt;}
.x91_c00362{left:535.403413pt;}
.x8a_c00362{left:538.626667pt;}
.xba_c00362{left:542.400000pt;}
.xad_c00362{left:545.280000pt;}
.xac_c00362{left:546.240000pt;}
.xbb_c00362{left:556.080000pt;}
.xbd_c00362{left:564.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_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_4ab86c84425994a9e06b01c2.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;}
.md_c00363{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);}
.mb3_c00363{transform:matrix(0.016630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016630,0.000000,0.000000,0.250000,0,0);}
.ma6_c00363{transform:matrix(0.021295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021295,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.029228,0.000351,-0.003000,0.249982,0,0);-ms-transform:matrix(0.029228,0.000351,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.029228,0.000351,-0.003000,0.249982,0,0);}
.m5f_c00363{transform:matrix(0.092313,0.001108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.092313,0.001108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.092313,0.001108,-0.003000,0.249982,0,0);}
.m4d_c00363{transform:matrix(0.098013,0.001176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.098013,0.001176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.098013,0.001176,-0.003000,0.249982,0,0);}
.m90_c00363{transform:matrix(0.104825,0.001468,-0.003500,0.249976,0,0);-ms-transform:matrix(0.104825,0.001468,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.104825,0.001468,-0.003500,0.249976,0,0);}
.m8a_c00363{transform:matrix(0.106370,0.001489,-0.003500,0.249976,0,0);-ms-transform:matrix(0.106370,0.001489,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.106370,0.001489,-0.003500,0.249976,0,0);}
.m8b_c00363{transform:matrix(0.111599,0.001562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.111599,0.001562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.111599,0.001562,-0.003500,0.249976,0,0);}
.m8f_c00363{transform:matrix(0.111674,0.001563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.111674,0.001563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.111674,0.001563,-0.003500,0.249976,0,0);}
.mbe_c00363{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);}
.m83_c00363{transform:matrix(0.117993,0.001652,-0.003500,0.249976,0,0);-ms-transform:matrix(0.117993,0.001652,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.117993,0.001652,-0.003500,0.249976,0,0);}
.m8d_c00363{transform:matrix(0.118693,0.001662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.118693,0.001662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.118693,0.001662,-0.003500,0.249976,0,0);}
.m55_c00363{transform:matrix(0.121096,0.001453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.121096,0.001453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.121096,0.001453,-0.003000,0.249982,0,0);}
.m84_c00363{transform:matrix(0.121728,0.001704,-0.003500,0.249976,0,0);-ms-transform:matrix(0.121728,0.001704,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.121728,0.001704,-0.003500,0.249976,0,0);}
.ma4_c00363{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m87_c00363{transform:matrix(0.124133,0.001738,-0.003500,0.249976,0,0);-ms-transform:matrix(0.124133,0.001738,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.124133,0.001738,-0.003500,0.249976,0,0);}
.m91_c00363{transform:matrix(0.125588,0.001758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.125588,0.001758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.125588,0.001758,-0.003500,0.249976,0,0);}
.m94_c00363{transform:matrix(0.126140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126140,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.128239,0.002052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.128239,0.002052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.128239,0.002052,-0.003999,0.249968,0,0);}
.m2a_c00363{transform:matrix(0.130108,0.002082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.130108,0.002082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.130108,0.002082,-0.003999,0.249968,0,0);}
.m93_c00363{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.m8e_c00363{transform:matrix(0.131182,0.001837,-0.003500,0.249976,0,0);-ms-transform:matrix(0.131182,0.001837,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.131182,0.001837,-0.003500,0.249976,0,0);}
.m2d_c00363{transform:matrix(0.132663,0.002123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.132663,0.002123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.132663,0.002123,-0.003999,0.249968,0,0);}
.m26_c00363{transform:matrix(0.134728,0.002156,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134728,0.002156,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134728,0.002156,-0.003999,0.249968,0,0);}
.m8c_c00363{transform:matrix(0.136602,0.001912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136602,0.001912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136602,0.001912,-0.003500,0.249976,0,0);}
.m3a_c00363{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m88_c00363{transform:matrix(0.141591,0.001982,-0.003500,0.249976,0,0);-ms-transform:matrix(0.141591,0.001982,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.141591,0.001982,-0.003500,0.249976,0,0);}
.m76_c00363{transform:matrix(0.148365,0.002077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148365,0.002077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148365,0.002077,-0.003500,0.249976,0,0);}
.m70_c00363{transform:matrix(0.149160,0.002088,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149160,0.002088,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149160,0.002088,-0.003500,0.249976,0,0);}
.mbc_c00363{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);}
.m22_c00363{transform:matrix(0.150936,0.002415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150936,0.002415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150936,0.002415,-0.003999,0.249968,0,0);}
.m85_c00363{transform:matrix(0.151960,0.002127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151960,0.002127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151960,0.002127,-0.003500,0.249976,0,0);}
.m89_c00363{transform:matrix(0.152580,0.002136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152580,0.002136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152580,0.002136,-0.003500,0.249976,0,0);}
.m4a_c00363{transform:matrix(0.152884,0.001835,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152884,0.001835,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152884,0.001835,-0.003000,0.249982,0,0);}
.m64_c00363{transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153669,0.001844,-0.003000,0.249982,0,0);}
.m77_c00363{transform:matrix(0.153775,0.002153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153775,0.002153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153775,0.002153,-0.003500,0.249976,0,0);}
.m62_c00363{transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154779,0.001857,-0.003000,0.249982,0,0);}
.m12_c00363{transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);}
.m51_c00363{transform:matrix(0.157989,0.001896,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157989,0.001896,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157989,0.001896,-0.003000,0.249982,0,0);}
.m61_c00363{transform:matrix(0.158059,0.001897,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158059,0.001897,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158059,0.001897,-0.003000,0.249982,0,0);}
.m42_c00363{transform:matrix(0.158644,0.001904,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158644,0.001904,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158644,0.001904,-0.003000,0.249982,0,0);}
.m28_c00363{transform:matrix(0.158695,0.002539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158695,0.002539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158695,0.002539,-0.003999,0.249968,0,0);}
.m2b_c00363{transform:matrix(0.158700,0.002539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158700,0.002539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158700,0.002539,-0.003999,0.249968,0,0);}
.m57_c00363{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);}
.m7_c00363{transform:matrix(0.159109,0.002228,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159109,0.002228,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159109,0.002228,-0.003500,0.249976,0,0);}
.m9_c00363{transform:matrix(0.160469,0.002247,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160469,0.002247,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160469,0.002247,-0.003500,0.249976,0,0);}
.m50_c00363{transform:matrix(0.160638,0.001928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160638,0.001928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160638,0.001928,-0.003000,0.249982,0,0);}
.mbf_c00363{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);}
.m73_c00363{transform:matrix(0.161269,0.002258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161269,0.002258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161269,0.002258,-0.003500,0.249976,0,0);}
.m71_c00363{transform:matrix(0.163054,0.002283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163054,0.002283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163054,0.002283,-0.003500,0.249976,0,0);}
.ma2_c00363{transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163245,0.000000,0.000000,0.250000,0,0);}
.m56_c00363{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);}
.m74_c00363{transform:matrix(0.166444,0.002330,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166444,0.002330,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166444,0.002330,-0.003500,0.249976,0,0);}
.m98_c00363{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);}
.m3f_c00363{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);}
.m6f_c00363{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);}
.m2_c00363{transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170710,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.171103,0.002738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171103,0.002738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171103,0.002738,-0.003999,0.249968,0,0);}
.m29_c00363{transform:matrix(0.171538,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171538,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171538,0.002745,-0.003999,0.249968,0,0);}
.m5_c00363{transform:matrix(0.171873,0.002406,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171873,0.002406,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171873,0.002406,-0.003500,0.249976,0,0);}
.m7a_c00363{transform:matrix(0.172563,0.002416,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172563,0.002416,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172563,0.002416,-0.003500,0.249976,0,0);}
.m7c_c00363{transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173428,0.002428,-0.003500,0.249976,0,0);}
.m37_c00363{transform:matrix(0.173448,0.002775,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173448,0.002775,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173448,0.002775,-0.003999,0.249968,0,0);}
.m21_c00363{transform:matrix(0.174538,0.002793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174538,0.002793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174538,0.002793,-0.003999,0.249968,0,0);}
.m1e_c00363{transform:matrix(0.174627,0.002096,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174627,0.002096,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174627,0.002096,-0.003000,0.249982,0,0);}
.me_c00363{transform:matrix(0.175407,0.002105,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175407,0.002105,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175407,0.002105,-0.003000,0.249982,0,0);}
.mb2_c00363{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.ma1_c00363{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);}
.m7f_c00363{transform:matrix(0.176508,0.002471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176508,0.002471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176508,0.002471,-0.003500,0.249976,0,0);}
.m6e_c00363{transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176753,0.002475,-0.003500,0.249976,0,0);}
.maa_c00363{transform:matrix(0.176833,0.002476,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176833,0.002476,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176833,0.002476,-0.003500,0.249976,0,0);}
.m75_c00363{transform:matrix(0.177098,0.002479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177098,0.002479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177098,0.002479,-0.003500,0.249976,0,0);}
.m9f_c00363{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);}
.m4f_c00363{transform:matrix(0.178792,0.002146,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178792,0.002146,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178792,0.002146,-0.003000,0.249982,0,0);}
.m60_c00363{transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180847,0.002170,-0.003000,0.249982,0,0);}
.m72_c00363{transform:matrix(0.180937,0.002533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180937,0.002533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180937,0.002533,-0.003500,0.249976,0,0);}
.m27_c00363{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);}
.ma3_c00363{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);}
.mae_c00363{transform:matrix(0.183027,0.002562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183027,0.002562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183027,0.002562,-0.003500,0.249976,0,0);}
.m11_c00363{transform:matrix(0.183792,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183792,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183792,0.002206,-0.003000,0.249982,0,0);}
.m35_c00363{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);}
.m6b_c00363{transform:matrix(0.184322,0.002581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184322,0.002581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184322,0.002581,-0.003500,0.249976,0,0);}
.m53_c00363{transform:matrix(0.184417,0.002213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184417,0.002213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184417,0.002213,-0.003000,0.249982,0,0);}
.m86_c00363{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);}
.m23_c00363{transform:matrix(0.184766,0.002956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184766,0.002956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184766,0.002956,-0.003999,0.249968,0,0);}
.m58_c00363{transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);}
.m19_c00363{transform:matrix(0.185997,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185997,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185997,0.002232,-0.003000,0.249982,0,0);}
.m34_c00363{transform:matrix(0.186236,0.002980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186236,0.002980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186236,0.002980,-0.003999,0.249968,0,0);}
.m7b_c00363{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);}
.m10_c00363{transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189966,0.002280,-0.003000,0.249982,0,0);}
.m49_c00363{transform:matrix(0.190321,0.002284,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190321,0.002284,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190321,0.002284,-0.003000,0.249982,0,0);}
.m9d_c00363{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);}
.m66_c00363{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);}
.m5d_c00363{transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);}
.m43_c00363{transform:matrix(0.191386,0.002297,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191386,0.002297,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191386,0.002297,-0.003000,0.249982,0,0);}
.mac_c00363{transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191646,0.002683,-0.003500,0.249976,0,0);}
.m13_c00363{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);}
.m5a_c00363{transform:matrix(0.192551,0.002311,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192551,0.002311,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192551,0.002311,-0.003000,0.249982,0,0);}
.mb1_c00363{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);}
.m4_c00363{transform:matrix(0.193386,0.002707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193386,0.002707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193386,0.002707,-0.003500,0.249976,0,0);}
.m78_c00363{transform:matrix(0.193646,0.002711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193646,0.002711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193646,0.002711,-0.003500,0.249976,0,0);}
.m25_c00363{transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194485,0.003112,-0.003999,0.249968,0,0);}
.m8_c00363{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);}
.m96_c00363{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);}
.m3_c00363{transform:matrix(0.197536,0.002765,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197536,0.002765,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197536,0.002765,-0.003500,0.249976,0,0);}
.m14_c00363{transform:matrix(0.197651,0.002372,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197651,0.002372,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197651,0.002372,-0.003000,0.249982,0,0);}
.m31_c00363{transform:matrix(0.197765,0.003164,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197765,0.003164,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197765,0.003164,-0.003999,0.249968,0,0);}
.m4e_c00363{transform:matrix(0.197871,0.002374,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197871,0.002374,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197871,0.002374,-0.003000,0.249982,0,0);}
.m1f_c00363{transform:matrix(0.198286,0.002379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198286,0.002379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198286,0.002379,-0.003000,0.249982,0,0);}
.m41_c00363{transform:matrix(0.198381,0.002381,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198381,0.002381,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198381,0.002381,-0.003000,0.249982,0,0);}
.mab_c00363{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);}
.m4b_c00363{transform:matrix(0.198716,0.002385,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198716,0.002385,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198716,0.002385,-0.003000,0.249982,0,0);}
.m1b_c00363{transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198961,0.002388,-0.003000,0.249982,0,0);}
.m80_c00363{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);}
.m5e_c00363{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);}
.mb7_c00363{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);}
.m52_c00363{transform:matrix(0.201016,0.002412,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201016,0.002412,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201016,0.002412,-0.003000,0.249982,0,0);}
.m79_c00363{transform:matrix(0.202155,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202155,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202155,0.002830,-0.003500,0.249976,0,0);}
.mad_c00363{transform:matrix(0.202295,0.002832,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202295,0.002832,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202295,0.002832,-0.003500,0.249976,0,0);}
.mb0_c00363{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);}
.m1a_c00363{transform:matrix(0.203340,0.002440,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203340,0.002440,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203340,0.002440,-0.003000,0.249982,0,0);}
.m36_c00363{transform:matrix(0.204074,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204074,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204074,0.003265,-0.003999,0.249968,0,0);}
.m69_c00363{transform:matrix(0.204410,0.002862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204410,0.002862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204410,0.002862,-0.003500,0.249976,0,0);}
.m40_c00363{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_c00363{transform:matrix(0.205435,0.002876,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205435,0.002876,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205435,0.002876,-0.003500,0.249976,0,0);}
.m15_c00363{transform:matrix(0.205610,0.002467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205610,0.002467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205610,0.002467,-0.003000,0.249982,0,0);}
.mf_c00363{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);}
.m6a_c00363{transform:matrix(0.205915,0.002883,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205915,0.002883,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205915,0.002883,-0.003500,0.249976,0,0);}
.m33_c00363{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);}
.m46_c00363{transform:matrix(0.207090,0.002485,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207090,0.002485,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207090,0.002485,-0.003000,0.249982,0,0);}
.m1c_c00363{transform:matrix(0.207300,0.002488,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207300,0.002488,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207300,0.002488,-0.003000,0.249982,0,0);}
.m2f_c00363{transform:matrix(0.207468,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207468,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207468,0.003319,-0.003999,0.249968,0,0);}
.m6d_c00363{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);}
.m3d_c00363{transform:matrix(0.208240,0.002499,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208240,0.002499,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208240,0.002499,-0.003000,0.249982,0,0);}
.m3e_c00363{transform:matrix(0.208790,0.002505,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208790,0.002505,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208790,0.002505,-0.003000,0.249982,0,0);}
.ma9_c00363{transform:matrix(0.208930,0.002925,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208930,0.002925,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208930,0.002925,-0.003500,0.249976,0,0);}
.maf_c00363{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);}
.m59_c00363{transform:matrix(0.210100,0.002521,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210100,0.002521,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210100,0.002521,-0.003000,0.249982,0,0);}
.m7d_c00363{transform:matrix(0.210984,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210984,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210984,0.002954,-0.003500,0.249976,0,0);}
.m54_c00363{transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211250,0.002535,-0.003000,0.249982,0,0);}
.m1d_c00363{transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211420,0.002537,-0.003000,0.249982,0,0);}
.m48_c00363{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);}
.m63_c00363{transform:matrix(0.212990,0.002556,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212990,0.002556,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212990,0.002556,-0.003000,0.249982,0,0);}
.m2c_c00363{transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);}
.m7e_c00363{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);}
.ma5_c00363{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);}
.m6c_c00363{transform:matrix(0.214609,0.003005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214609,0.003005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214609,0.003005,-0.003500,0.249976,0,0);}
.m9b_c00363{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);}
.m45_c00363{transform:matrix(0.216949,0.002603,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216949,0.002603,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216949,0.002603,-0.003000,0.249982,0,0);}
.m5c_c00363{transform:matrix(0.217494,0.002610,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217494,0.002610,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217494,0.002610,-0.003000,0.249982,0,0);}
.m3b_c00363{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);}
.ma0_c00363{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);}
.m18_c00363{transform:matrix(0.219759,0.002637,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219759,0.002637,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219759,0.002637,-0.003000,0.249982,0,0);}
.m17_c00363{transform:matrix(0.221854,0.002662,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221854,0.002662,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221854,0.002662,-0.003000,0.249982,0,0);}
.m47_c00363{transform:matrix(0.221934,0.002663,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221934,0.002663,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221934,0.002663,-0.003000,0.249982,0,0);}
.m6_c00363{transform:matrix(0.224448,0.003142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224448,0.003142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224448,0.003142,-0.003500,0.249976,0,0);}
.mb6_c00363{transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.226689,0.002720,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226689,0.002720,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226689,0.002720,-0.003000,0.249982,0,0);}
.mba_c00363{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);}
.m9c_c00363{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m65_c00363{transform:matrix(0.231108,0.002773,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231108,0.002773,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231108,0.002773,-0.003000,0.249982,0,0);}
.m32_c00363{transform:matrix(0.232870,0.003726,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232870,0.003726,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232870,0.003726,-0.003999,0.249968,0,0);}
.m81_c00363{transform:matrix(0.240831,0.003372,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240831,0.003372,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240831,0.003372,-0.003500,0.249976,0,0);}
.m9a_c00363{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m68_c00363{transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.258265,0.003616,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258265,0.003616,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258265,0.003616,-0.003500,0.249976,0,0);}
.mb9_c00363{transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274360,0.000000,0.000000,0.250000,0,0);}
.mbb_c00363{transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287595,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.295284,0.003543,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295284,0.003543,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295284,0.003543,-0.003000,0.249982,0,0);}
.m82_c00363{transform:matrix(0.302625,0.004237,-0.003500,0.249976,0,0);-ms-transform:matrix(0.302625,0.004237,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.302625,0.004237,-0.003500,0.249976,0,0);}
.m9e_c00363{transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306095,0.000000,0.000000,0.250000,0,0);}
.m39_c00363{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);}
.m99_c00363{transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328760,0.000000,0.000000,0.250000,0,0);}
.mb8_c00363{transform:matrix(0.333765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354170,0.000000,0.000000,0.250000,0,0);}
.m97_c00363{transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362205,0.000000,0.000000,0.250000,0,0);}
.mb5_c00363{transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382740,0.000000,0.000000,0.250000,0,0);}
.mbd_c00363{transform:matrix(0.383905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383905,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.386035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386035,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394565,0.000000,0.000000,0.250000,0,0);}
.m67_c00363{transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.407793,0.006525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.407793,0.006525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.407793,0.006525,-0.003999,0.249968,0,0);}
.ma7_c00363{transform:matrix(0.412825,0.005780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.412825,0.005780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.412825,0.005780,-0.003500,0.249976,0,0);}
.m38_c00363{transform:matrix(0.415032,0.006641,-0.003999,0.249968,0,0);-ms-transform:matrix(0.415032,0.006641,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.415032,0.006641,-0.003999,0.249968,0,0);}
.m20_c00363{transform:matrix(0.446443,0.005357,-0.003000,0.249982,0,0);-ms-transform:matrix(0.446443,0.005357,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.446443,0.005357,-0.003000,0.249982,0,0);}
.mb4_c00363{transform:matrix(0.486080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{transform:matrix(0.534881,0.006419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.534881,0.006419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.534881,0.006419,-0.003000,0.249982,0,0);}
.m5b_c00363{transform:matrix(0.601612,0.007219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.601612,0.007219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.601612,0.007219,-0.003000,0.249982,0,0);}
.m16_c00363{transform:matrix(0.726943,0.008723,-0.003000,0.249982,0,0);-ms-transform:matrix(0.726943,0.008723,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.726943,0.008723,-0.003000,0.249982,0,0);}
.m92_c00363{transform:matrix(0.740805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740805,0.000000,0.000000,0.250000,0,0);}
.m95_c00363{transform:matrix(1.023960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.023960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.023960,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;}
.fsb_c00363{font-size:18.900000px;}
.fs15_c00363{font-size:22.050000px;}
.fs14_c00363{font-size:50.404939px;}
.fs12_c00363{font-size:54.600000px;}
.fs13_c00363{font-size:56.700000px;}
.fs5_c00363{font-size:63.004536px;}
.fs11_c00363{font-size:65.100000px;}
.fs3_c00363{font-size:67.204838px;}
.fsd_c00363{font-size:67.206585px;}
.fsf_c00363{font-size:68.256688px;}
.fs7_c00363{font-size:68.258735px;}
.fs4_c00363{font-size:70.355065px;}
.fsa_c00363{font-size:71.405141px;}
.fs17_c00363{font-size:72.450000px;}
.fs1_c00363{font-size:73.500000px;}
.fs9_c00363{font-size:73.505292px;}
.fse_c00363{font-size:74.557306px;}
.fs2_c00363{font-size:77.707614px;}
.fs6_c00363{font-size:79.810214px;}
.fs8_c00363{font-size:91.350000px;}
.fs0_c00363{font-size:101.850000px;}
.fs16_c00363{font-size:103.950000px;}
.fs10_c00363{font-size:109.210701px;}
.fsc_c00363{font-size:110.250000px;}
.fs18_c00363{font-size:135.450000px;}
.y0_c00363{bottom:0.000000px;}
.yaf_c00363{bottom:104.121000px;}
.yb1_c00363{bottom:106.110000px;}
.yb0_c00363{bottom:107.190000px;}
.yae_c00363{bottom:124.866000px;}
.yad_c00363{bottom:140.541000px;}
.yac_c00363{bottom:155.250000px;}
.yab_c00363{bottom:157.545000px;}
.yaa_c00363{bottom:170.529531px;}
.ya9_c00363{bottom:171.553911px;}
.ya8_c00363{bottom:172.019019px;}
.ya7_c00363{bottom:172.294413px;}
.ya6_c00363{bottom:172.865886px;}
.ya5_c00363{bottom:173.160705px;}
.ya4_c00363{bottom:173.651643px;}
.ya3_c00363{bottom:174.056796px;}
.ya2_c00363{bottom:174.691500px;}
.ya1_c00363{bottom:181.213500px;}
.ya0_c00363{bottom:183.606000px;}
.y9f_c00363{bottom:184.057500px;}
.y9e_c00363{bottom:184.740000px;}
.y9d_c00363{bottom:184.972500px;}
.y9c_c00363{bottom:185.550000px;}
.y9b_c00363{bottom:185.809500px;}
.y9a_c00363{bottom:186.396000px;}
.y99_c00363{bottom:186.705000px;}
.y98_c00363{bottom:187.164000px;}
.y97_c00363{bottom:187.371000px;}
.y96_c00363{bottom:187.611000px;}
.y95_c00363{bottom:188.049000px;}
.y94_c00363{bottom:188.301000px;}
.y93_c00363{bottom:188.532000px;}
.y92_c00363{bottom:189.208500px;}
.y91_c00363{bottom:189.370500px;}
.y90_c00363{bottom:189.567000px;}
.y8f_c00363{bottom:190.356000px;}
.y8e_c00363{bottom:235.428000px;}
.y8d_c00363{bottom:258.598134px;}
.y8c_c00363{bottom:258.891987px;}
.y8b_c00363{bottom:259.398675px;}
.y8a_c00363{bottom:260.144952px;}
.y89_c00363{bottom:260.775519px;}
.y88_c00363{bottom:261.081783px;}
.y87_c00363{bottom:261.754770px;}
.y86_c00363{bottom:262.030584px;}
.y85_c00363{bottom:262.276368px;}
.y84_c00363{bottom:263.014140px;}
.y83_c00363{bottom:263.437416px;}
.y82_c00363{bottom:264.023463px;}
.y81_c00363{bottom:264.117522px;}
.y80_c00363{bottom:264.688344px;}
.y7f_c00363{bottom:264.933960px;}
.y7e_c00363{bottom:265.684500px;}
.y7d_c00363{bottom:282.248943px;}
.y7c_c00363{bottom:282.726552px;}
.y7b_c00363{bottom:283.397511px;}
.y7a_c00363{bottom:284.148633px;}
.y79_c00363{bottom:284.735775px;}
.y78_c00363{bottom:285.051156px;}
.y77_c00363{bottom:285.633678px;}
.y76_c00363{bottom:285.903759px;}
.y75_c00363{bottom:287.081130px;}
.y74_c00363{bottom:287.817951px;}
.y73_c00363{bottom:304.560468px;}
.y72_c00363{bottom:304.923576px;}
.y71_c00363{bottom:306.232620px;}
.y70_c00363{bottom:306.624702px;}
.y6f_c00363{bottom:307.233972px;}
.y6e_c00363{bottom:307.739841px;}
.y6d_c00363{bottom:308.108547px;}
.y6c_c00363{bottom:308.572053px;}
.y6b_c00363{bottom:309.307092px;}
.y6a_c00363{bottom:309.690048px;}
.y69_c00363{bottom:334.080165px;}
.y68_c00363{bottom:334.805904px;}
.y67_c00363{bottom:335.266329px;}
.y66_c00363{bottom:336.257802px;}
.y65_c00363{bottom:337.233000px;}
.y64_c00363{bottom:373.930500px;}
.y63_c00363{bottom:396.360000px;}
.y62_c00363{bottom:412.335198px;}
.y61_c00363{bottom:412.612140px;}
.y60_c00363{bottom:413.560584px;}
.y5f_c00363{bottom:413.833602px;}
.y5e_c00363{bottom:414.170880px;}
.y5d_c00363{bottom:414.641130px;}
.y5c_c00363{bottom:414.797310px;}
.y5b_c00363{bottom:415.581540px;}
.y5a_c00363{bottom:416.297262px;}
.y59_c00363{bottom:416.610360px;}
.y58_c00363{bottom:433.820322px;}
.y57_c00363{bottom:434.542164px;}
.y56_c00363{bottom:434.767854px;}
.y55_c00363{bottom:435.085548px;}
.y54_c00363{bottom:435.358146px;}
.y53_c00363{bottom:435.583440px;}
.y52_c00363{bottom:435.833046px;}
.y51_c00363{bottom:436.123620px;}
.y50_c00363{bottom:436.949466px;}
.y4f_c00363{bottom:437.484594px;}
.y4e_c00363{bottom:437.749044px;}
.y4d_c00363{bottom:438.027906px;}
.y4c_c00363{bottom:438.862116px;}
.y4b_c00363{bottom:439.132902px;}
.y4a_c00363{bottom:439.288938px;}
.y49_c00363{bottom:459.897090px;}
.y48_c00363{bottom:462.332148px;}
.y47_c00363{bottom:462.742980px;}
.y46_c00363{bottom:463.335738px;}
.y45_c00363{bottom:463.546950px;}
.y44_c00363{bottom:464.159418px;}
.y43_c00363{bottom:464.612316px;}
.y42_c00363{bottom:465.481500px;}
.y41_c00363{bottom:482.541852px;}
.y40_c00363{bottom:485.508612px;}
.y3f_c00363{bottom:485.732280px;}
.y3e_c00363{bottom:486.321762px;}
.y3d_c00363{bottom:486.487146px;}
.y3c_c00363{bottom:486.853194px;}
.y3b_c00363{bottom:487.283538px;}
.y3a_c00363{bottom:488.163000px;}
.y39_c00363{bottom:521.730000px;}
.y38_c00363{bottom:555.271056px;}
.y37_c00363{bottom:556.165020px;}
.y36_c00363{bottom:556.645668px;}
.y35_c00363{bottom:557.307648px;}
.y34_c00363{bottom:557.996364px;}
.y33_c00363{bottom:558.278424px;}
.y32_c00363{bottom:558.814056px;}
.y31_c00363{bottom:559.817928px;}
.y30_c00363{bottom:560.233776px;}
.y2f_c00363{bottom:560.790024px;}
.y2e_c00363{bottom:576.104172px;}
.y2d_c00363{bottom:576.771132px;}
.y2c_c00363{bottom:577.103652px;}
.y2b_c00363{bottom:577.863180px;}
.y2a_c00363{bottom:578.234724px;}
.y29_c00363{bottom:578.667780px;}
.y28_c00363{bottom:579.791172px;}
.y27_c00363{bottom:580.668708px;}
.y26_c00363{bottom:580.930188px;}
.y25_c00363{bottom:581.193612px;}
.y24_c00363{bottom:581.445372px;}
.y23_c00363{bottom:583.121532px;}
.y22_c00363{bottom:583.964028px;}
.y21_c00363{bottom:584.284500px;}
.y20_c00363{bottom:601.718472px;}
.y1f_c00363{bottom:602.401584px;}
.y1e_c00363{bottom:602.836308px;}
.y1d_c00363{bottom:603.818508px;}
.y1c_c00363{bottom:604.306422px;}
.y1b_c00363{bottom:604.621248px;}
.y1a_c00363{bottom:605.555808px;}
.y19_c00363{bottom:606.233448px;}
.y18_c00363{bottom:607.096470px;}
.y17_c00363{bottom:608.036934px;}
.y16_c00363{bottom:628.983630px;}
.y15_c00363{bottom:630.745230px;}
.y14_c00363{bottom:631.003206px;}
.y13_c00363{bottom:631.102920px;}
.y12_c00363{bottom:631.712268px;}
.y11_c00363{bottom:632.356098px;}
.y10_c00363{bottom:632.635392px;}
.yf_c00363{bottom:633.148932px;}
.ye_c00363{bottom:656.237484px;}
.yd_c00363{bottom:657.994608px;}
.yc_c00363{bottom:658.900296px;}
.yb_c00363{bottom:659.736000px;}
.ya_c00363{bottom:683.520069px;}
.y9_c00363{bottom:684.143769px;}
.y8_c00363{bottom:684.620700px;}
.y7_c00363{bottom:685.138182px;}
.y6_c00363{bottom:685.516098px;}
.y5_c00363{bottom:686.514081px;}
.y4_c00363{bottom:686.865642px;}
.y3_c00363{bottom:687.693000px;}
.y2_c00363{bottom:714.010500px;}
.y1_c00363{bottom:753.613500px;}
.hd_c00363{height:18.900000px;}
.h17_c00363{height:22.050000px;}
.h16_c00363{height:50.404939px;}
.h14_c00363{height:54.600000px;}
.h15_c00363{height:56.700000px;}
.h7_c00363{height:63.004536px;}
.h13_c00363{height:65.100000px;}
.h5_c00363{height:67.204838px;}
.hf_c00363{height:67.206585px;}
.h11_c00363{height:68.256688px;}
.h9_c00363{height:68.258735px;}
.h6_c00363{height:70.355065px;}
.hc_c00363{height:71.405141px;}
.h19_c00363{height:72.450000px;}
.h3_c00363{height:73.500000px;}
.hb_c00363{height:73.505292px;}
.h10_c00363{height:74.557306px;}
.h4_c00363{height:77.707614px;}
.h8_c00363{height:79.810214px;}
.ha_c00363{height:91.350000px;}
.h2_c00363{height:101.850000px;}
.h18_c00363{height:103.950000px;}
.h12_c00363{height:109.210701px;}
.he_c00363{height:110.250000px;}
.h1a_c00363{height:135.450000px;}
.h0_c00363{height:1008.450000px;}
.h1_c00363{height:1008.750000px;}
.w0_c00363{width:696.000000px;}
.x0_c00363{left:0.000000px;}
.x87_c00363{left:89.100000px;}
.x66_c00363{left:90.669000px;}
.x70_c00363{left:91.800000px;}
.x7d_c00363{left:93.079500px;}
.x7e_c00363{left:97.911000px;}
.x84_c00363{left:106.650000px;}
.x83_c00363{left:107.730000px;}
.x89_c00363{left:137.970000px;}
.x88_c00363{left:140.940000px;}
.x7f_c00363{left:143.247000px;}
.x4e_c00363{left:145.085304px;}
.x20_c00363{left:146.908500px;}
.x44_c00363{left:149.226504px;}
.x72_c00363{left:156.195000px;}
.x18_c00363{left:162.654510px;}
.x21_c00363{left:166.938000px;}
.x4f_c00363{left:169.176516px;}
.x73_c00363{left:172.614000px;}
.x4_c00363{left:180.730500px;}
.x37_c00363{left:182.580000px;}
.x10_c00363{left:186.417732px;}
.x45_c00363{left:188.045472px;}
.x59_c00363{left:194.509815px;}
.x2d_c00363{left:197.238168px;}
.x5f_c00363{left:200.982981px;}
.x67_c00363{left:202.596000px;}
.x80_c00363{left:207.253500px;}
.x68_c00363{left:209.314500px;}
.x22_c00363{left:219.594000px;}
.x50_c00363{left:224.194350px;}
.x81_c00363{left:228.312000px;}
.x1_c00363{left:233.550000px;}
.x19_c00363{left:235.025646px;}
.x5_c00363{left:239.827500px;}
.x11_c00363{left:243.464784px;}
.x56_c00363{left:250.383000px;}
.x3e_c00363{left:254.514000px;}
.x38_c00363{left:255.868500px;}
.x74_c00363{left:261.775500px;}
.x46_c00363{left:263.938890px;}
.x6_c00363{left:264.939000px;}
.x82_c00363{left:269.131500px;}
.x12_c00363{left:274.490400px;}
.x69_c00363{left:281.409000px;}
.x75_c00363{left:282.780000px;}
.x51_c00363{left:284.546130px;}
.x47_c00363{left:289.302696px;}
.x39_c00363{left:291.730500px;}
.x5a_c00363{left:294.480129px;}
.x33_c00363{left:295.650000px;}
.x1a_c00363{left:301.443354px;}
.x86_c00363{left:302.670000px;}
.x60_c00363{left:312.302535px;}
.x48_c00363{left:313.340484px;}
.x76_c00363{left:319.231500px;}
.x57_c00363{left:321.202500px;}
.x3a_c00363{left:322.234500px;}
.x23_c00363{left:324.354000px;}
.x2e_c00363{left:326.293488px;}
.x52_c00363{left:332.748054px;}
.x6a_c00363{left:334.107000px;}
.x7_c00363{left:336.223500px;}
.x24_c00363{left:340.089000px;}
.x3f_c00363{left:343.294500px;}
.x13_c00363{left:346.020474px;}
.x34_c00363{left:349.110000px;}
.x6b_c00363{left:351.663000px;}
.x1b_c00363{left:353.537724px;}
.x25_c00363{left:356.553000px;}
.x53_c00363{left:358.729248px;}
.x40_c00363{left:360.895500px;}
.xc_c00363{left:361.923000px;}
.x8_c00363{left:363.217500px;}
.x3_c00363{left:364.230000px;}
.x5b_c00363{left:367.344666px;}
.x2_c00363{left:368.550000px;}
.x6c_c00363{left:371.364000px;}
.x26_c00363{left:372.895500px;}
.x2f_c00363{left:374.961876px;}
.x35_c00363{left:379.620000px;}
.x61_c00363{left:381.368001px;}
.x3b_c00363{left:385.140000px;}
.x77_c00363{left:394.831500px;}
.x9_c00363{left:400.180500px;}
.x3c_c00363{left:403.779000px;}
.x58_c00363{left:405.928500px;}
.x41_c00363{left:410.292000px;}
.x36_c00363{left:412.020000px;}
.x14_c00363{left:413.801922px;}
.x5c_c00363{left:418.151094px;}
.x6d_c00363{left:419.434500px;}
.x78_c00363{left:420.555000px;}
.x85_c00363{left:422.010000px;}
.x15_c00363{left:424.861818px;}
.x62_c00363{left:426.521631px;}
.x27_c00363{left:427.741500px;}
.xd_c00363{left:431.565000px;}
.xa_c00363{left:434.247000px;}
.x49_c00363{left:437.006460px;}
.x55_c00363{left:442.260000px;}
.x42_c00363{left:444.528000px;}
.x1c_c00363{left:449.652072px;}
.x5d_c00363{left:450.764997px;}
.x16_c00363{left:453.485844px;}
.x30_c00363{left:463.204932px;}
.x79_c00363{left:469.420500px;}
.x54_c00363{left:473.969862px;}
.xb_c00363{left:478.797000px;}
.x63_c00363{left:484.245429px;}
.x4a_c00363{left:486.147054px;}
.x1d_c00363{left:487.186122px;}
.x7a_c00363{left:491.014500px;}
.x28_c00363{left:497.953500px;}
.xe_c00363{left:507.039000px;}
.x31_c00363{left:523.427256px;}
.x29_c00363{left:525.019500px;}
.x4b_c00363{left:531.513612px;}
.x64_c00363{left:535.814643px;}
.x6e_c00363{left:539.656500px;}
.x2a_c00363{left:548.241000px;}
.x7b_c00363{left:558.456000px;}
.x4c_c00363{left:560.363454px;}
.x1e_c00363{left:562.785222px;}
.x32_c00363{left:567.158760px;}
.x65_c00363{left:572.608668px;}
.x6f_c00363{left:575.848500px;}
.x4d_c00363{left:580.921206px;}
.x71_c00363{left:586.170000px;}
.x5e_c00363{left:590.136903px;}
.x1f_c00363{left:596.261826px;}
.x7c_c00363{left:615.291000px;}
.x2b_c00363{left:616.494000px;}
.x43_c00363{left:647.449500px;}
.x17_c00363{left:649.167882px;}
.x3d_c00363{left:651.009000px;}
.xf_c00363{left:653.466000px;}
.x2c_c00363{left:658.179000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fsb_c00363{font-size:16.800000pt;}
.fs15_c00363{font-size:19.600000pt;}
.fs14_c00363{font-size:44.804390pt;}
.fs12_c00363{font-size:48.533333pt;}
.fs13_c00363{font-size:50.400000pt;}
.fs5_c00363{font-size:56.004032pt;}
.fs11_c00363{font-size:57.866667pt;}
.fs3_c00363{font-size:59.737634pt;}
.fsd_c00363{font-size:59.739187pt;}
.fsf_c00363{font-size:60.672612pt;}
.fs7_c00363{font-size:60.674432pt;}
.fs4_c00363{font-size:62.537836pt;}
.fsa_c00363{font-size:63.471236pt;}
.fs17_c00363{font-size:64.400000pt;}
.fs1_c00363{font-size:65.333333pt;}
.fs9_c00363{font-size:65.338037pt;}
.fse_c00363{font-size:66.273160pt;}
.fs2_c00363{font-size:69.073435pt;}
.fs6_c00363{font-size:70.942412pt;}
.fs8_c00363{font-size:81.200000pt;}
.fs0_c00363{font-size:90.533333pt;}
.fs16_c00363{font-size:92.400000pt;}
.fs10_c00363{font-size:97.076179pt;}
.fsc_c00363{font-size:98.000000pt;}
.fs18_c00363{font-size:120.400000pt;}
.y0_c00363{bottom:0.000000pt;}
.yaf_c00363{bottom:92.552000pt;}
.yb1_c00363{bottom:94.320000pt;}
.yb0_c00363{bottom:95.280000pt;}
.yae_c00363{bottom:110.992000pt;}
.yad_c00363{bottom:124.925333pt;}
.yac_c00363{bottom:138.000000pt;}
.yab_c00363{bottom:140.040000pt;}
.yaa_c00363{bottom:151.581805pt;}
.ya9_c00363{bottom:152.492365pt;}
.ya8_c00363{bottom:152.905795pt;}
.ya7_c00363{bottom:153.150589pt;}
.ya6_c00363{bottom:153.658565pt;}
.ya5_c00363{bottom:153.920627pt;}
.ya4_c00363{bottom:154.357016pt;}
.ya3_c00363{bottom:154.717152pt;}
.ya2_c00363{bottom:155.281333pt;}
.ya1_c00363{bottom:161.078667pt;}
.ya0_c00363{bottom:163.205333pt;}
.y9f_c00363{bottom:163.606667pt;}
.y9e_c00363{bottom:164.213333pt;}
.y9d_c00363{bottom:164.420000pt;}
.y9c_c00363{bottom:164.933333pt;}
.y9b_c00363{bottom:165.164000pt;}
.y9a_c00363{bottom:165.685333pt;}
.y99_c00363{bottom:165.960000pt;}
.y98_c00363{bottom:166.368000pt;}
.y97_c00363{bottom:166.552000pt;}
.y96_c00363{bottom:166.765333pt;}
.y95_c00363{bottom:167.154667pt;}
.y94_c00363{bottom:167.378667pt;}
.y93_c00363{bottom:167.584000pt;}
.y92_c00363{bottom:168.185333pt;}
.y91_c00363{bottom:168.329333pt;}
.y90_c00363{bottom:168.504000pt;}
.y8f_c00363{bottom:169.205333pt;}
.y8e_c00363{bottom:209.269333pt;}
.y8d_c00363{bottom:229.865008pt;}
.y8c_c00363{bottom:230.126211pt;}
.y8b_c00363{bottom:230.576600pt;}
.y8a_c00363{bottom:231.239957pt;}
.y89_c00363{bottom:231.800461pt;}
.y88_c00363{bottom:232.072696pt;}
.y87_c00363{bottom:232.670907pt;}
.y86_c00363{bottom:232.916075pt;}
.y85_c00363{bottom:233.134549pt;}
.y84_c00363{bottom:233.790347pt;}
.y83_c00363{bottom:234.166592pt;}
.y82_c00363{bottom:234.687523pt;}
.y81_c00363{bottom:234.771131pt;}
.y80_c00363{bottom:235.278528pt;}
.y7f_c00363{bottom:235.496853pt;}
.y7e_c00363{bottom:236.164000pt;}
.y7d_c00363{bottom:250.887949pt;}
.y7c_c00363{bottom:251.312491pt;}
.y7b_c00363{bottom:251.908899pt;}
.y7a_c00363{bottom:252.576563pt;}
.y79_c00363{bottom:253.098467pt;}
.y78_c00363{bottom:253.378805pt;}
.y77_c00363{bottom:253.896603pt;}
.y76_c00363{bottom:254.136675pt;}
.y75_c00363{bottom:255.183227pt;}
.y74_c00363{bottom:255.838179pt;}
.y73_c00363{bottom:270.720416pt;}
.y72_c00363{bottom:271.043179pt;}
.y71_c00363{bottom:272.206773pt;}
.y70_c00363{bottom:272.555291pt;}
.y6f_c00363{bottom:273.096864pt;}
.y6e_c00363{bottom:273.546525pt;}
.y6d_c00363{bottom:273.874264pt;}
.y6c_c00363{bottom:274.286269pt;}
.y6b_c00363{bottom:274.939637pt;}
.y6a_c00363{bottom:275.280043pt;}
.y69_c00363{bottom:296.960147pt;}
.y68_c00363{bottom:297.605248pt;}
.y67_c00363{bottom:298.014515pt;}
.y66_c00363{bottom:298.895824pt;}
.y65_c00363{bottom:299.762667pt;}
.y64_c00363{bottom:332.382667pt;}
.y63_c00363{bottom:352.320000pt;}
.y62_c00363{bottom:366.520176pt;}
.y61_c00363{bottom:366.766347pt;}
.y60_c00363{bottom:367.609408pt;}
.y5f_c00363{bottom:367.852091pt;}
.y5e_c00363{bottom:368.151893pt;}
.y5d_c00363{bottom:368.569893pt;}
.y5c_c00363{bottom:368.708720pt;}
.y5b_c00363{bottom:369.405813pt;}
.y5a_c00363{bottom:370.042011pt;}
.y59_c00363{bottom:370.320320pt;}
.y58_c00363{bottom:385.618064pt;}
.y57_c00363{bottom:386.259701pt;}
.y56_c00363{bottom:386.460315pt;}
.y55_c00363{bottom:386.742709pt;}
.y54_c00363{bottom:386.985019pt;}
.y53_c00363{bottom:387.185280pt;}
.y52_c00363{bottom:387.407152pt;}
.y51_c00363{bottom:387.665440pt;}
.y50_c00363{bottom:388.399525pt;}
.y4f_c00363{bottom:388.875195pt;}
.y4e_c00363{bottom:389.110261pt;}
.y4d_c00363{bottom:389.358139pt;}
.y4c_c00363{bottom:390.099659pt;}
.y4b_c00363{bottom:390.340357pt;}
.y4a_c00363{bottom:390.479056pt;}
.y49_c00363{bottom:408.797413pt;}
.y48_c00363{bottom:410.961909pt;}
.y47_c00363{bottom:411.327093pt;}
.y46_c00363{bottom:411.853989pt;}
.y45_c00363{bottom:412.041733pt;}
.y44_c00363{bottom:412.586149pt;}
.y43_c00363{bottom:412.988725pt;}
.y42_c00363{bottom:413.761333pt;}
.y41_c00363{bottom:428.926091pt;}
.y40_c00363{bottom:431.563211pt;}
.y3f_c00363{bottom:431.762027pt;}
.y3e_c00363{bottom:432.286011pt;}
.y3d_c00363{bottom:432.433019pt;}
.y3c_c00363{bottom:432.758395pt;}
.y3b_c00363{bottom:433.140923pt;}
.y3a_c00363{bottom:433.922667pt;}
.y39_c00363{bottom:463.760000pt;}
.y38_c00363{bottom:493.574272pt;}
.y37_c00363{bottom:494.368907pt;}
.y36_c00363{bottom:494.796149pt;}
.y35_c00363{bottom:495.384576pt;}
.y34_c00363{bottom:495.996768pt;}
.y33_c00363{bottom:496.247488pt;}
.y32_c00363{bottom:496.723605pt;}
.y31_c00363{bottom:497.615936pt;}
.y30_c00363{bottom:497.985579pt;}
.y2f_c00363{bottom:498.480021pt;}
.y2e_c00363{bottom:512.092597pt;}
.y2d_c00363{bottom:512.685451pt;}
.y2c_c00363{bottom:512.981024pt;}
.y2b_c00363{bottom:513.656160pt;}
.y2a_c00363{bottom:513.986421pt;}
.y29_c00363{bottom:514.371360pt;}
.y28_c00363{bottom:515.369931pt;}
.y27_c00363{bottom:516.149963pt;}
.y26_c00363{bottom:516.382389pt;}
.y25_c00363{bottom:516.616544pt;}
.y24_c00363{bottom:516.840331pt;}
.y23_c00363{bottom:518.330251pt;}
.y22_c00363{bottom:519.079136pt;}
.y21_c00363{bottom:519.364000pt;}
.y20_c00363{bottom:534.860864pt;}
.y1f_c00363{bottom:535.468075pt;}
.y1e_c00363{bottom:535.854496pt;}
.y1d_c00363{bottom:536.727563pt;}
.y1c_c00363{bottom:537.161264pt;}
.y1b_c00363{bottom:537.441109pt;}
.y1a_c00363{bottom:538.271829pt;}
.y19_c00363{bottom:538.874176pt;}
.y18_c00363{bottom:539.641307pt;}
.y17_c00363{bottom:540.477275pt;}
.y16_c00363{bottom:559.096560pt;}
.y15_c00363{bottom:560.662427pt;}
.y14_c00363{bottom:560.891739pt;}
.y13_c00363{bottom:560.980373pt;}
.y12_c00363{bottom:561.522016pt;}
.y11_c00363{bottom:562.094309pt;}
.y10_c00363{bottom:562.342571pt;}
.yf_c00363{bottom:562.799051pt;}
.ye_c00363{bottom:583.322208pt;}
.yd_c00363{bottom:584.884096pt;}
.yc_c00363{bottom:585.689152pt;}
.yb_c00363{bottom:586.432000pt;}
.ya_c00363{bottom:607.573395pt;}
.y9_c00363{bottom:608.127795pt;}
.y8_c00363{bottom:608.551733pt;}
.y7_c00363{bottom:609.011717pt;}
.y6_c00363{bottom:609.347643pt;}
.y5_c00363{bottom:610.234739pt;}
.y4_c00363{bottom:610.547237pt;}
.y3_c00363{bottom:611.282667pt;}
.y2_c00363{bottom:634.676000pt;}
.y1_c00363{bottom:669.878667pt;}
.hd_c00363{height:16.800000pt;}
.h17_c00363{height:19.600000pt;}
.h16_c00363{height:44.804390pt;}
.h14_c00363{height:48.533333pt;}
.h15_c00363{height:50.400000pt;}
.h7_c00363{height:56.004032pt;}
.h13_c00363{height:57.866667pt;}
.h5_c00363{height:59.737634pt;}
.hf_c00363{height:59.739187pt;}
.h11_c00363{height:60.672612pt;}
.h9_c00363{height:60.674432pt;}
.h6_c00363{height:62.537836pt;}
.hc_c00363{height:63.471236pt;}
.h19_c00363{height:64.400000pt;}
.h3_c00363{height:65.333333pt;}
.hb_c00363{height:65.338037pt;}
.h10_c00363{height:66.273160pt;}
.h4_c00363{height:69.073435pt;}
.h8_c00363{height:70.942412pt;}
.ha_c00363{height:81.200000pt;}
.h2_c00363{height:90.533333pt;}
.h18_c00363{height:92.400000pt;}
.h12_c00363{height:97.076179pt;}
.he_c00363{height:98.000000pt;}
.h1a_c00363{height:120.400000pt;}
.h0_c00363{height:896.400000pt;}
.h1_c00363{height:896.666667pt;}
.w0_c00363{width:618.666667pt;}
.x0_c00363{left:0.000000pt;}
.x87_c00363{left:79.200000pt;}
.x66_c00363{left:80.594667pt;}
.x70_c00363{left:81.600000pt;}
.x7d_c00363{left:82.737333pt;}
.x7e_c00363{left:87.032000pt;}
.x84_c00363{left:94.800000pt;}
.x83_c00363{left:95.760000pt;}
.x89_c00363{left:122.640000pt;}
.x88_c00363{left:125.280000pt;}
.x7f_c00363{left:127.330667pt;}
.x4e_c00363{left:128.964715pt;}
.x20_c00363{left:130.585333pt;}
.x44_c00363{left:132.645781pt;}
.x72_c00363{left:138.840000pt;}
.x18_c00363{left:144.581787pt;}
.x21_c00363{left:148.389333pt;}
.x4f_c00363{left:150.379125pt;}
.x73_c00363{left:153.434667pt;}
.x4_c00363{left:160.649333pt;}
.x37_c00363{left:162.293333pt;}
.x10_c00363{left:165.704651pt;}
.x45_c00363{left:167.151531pt;}
.x59_c00363{left:172.897613pt;}
.x2d_c00363{left:175.322816pt;}
.x5f_c00363{left:178.651539pt;}
.x67_c00363{left:180.085333pt;}
.x80_c00363{left:184.225333pt;}
.x68_c00363{left:186.057333pt;}
.x22_c00363{left:195.194667pt;}
.x50_c00363{left:199.283867pt;}
.x81_c00363{left:202.944000pt;}
.x1_c00363{left:207.600000pt;}
.x19_c00363{left:208.911685pt;}
.x5_c00363{left:213.180000pt;}
.x11_c00363{left:216.413141pt;}
.x56_c00363{left:222.562667pt;}
.x3e_c00363{left:226.234667pt;}
.x38_c00363{left:227.438667pt;}
.x74_c00363{left:232.689333pt;}
.x46_c00363{left:234.612347pt;}
.x6_c00363{left:235.501333pt;}
.x82_c00363{left:239.228000pt;}
.x12_c00363{left:243.991467pt;}
.x69_c00363{left:250.141333pt;}
.x75_c00363{left:251.360000pt;}
.x51_c00363{left:252.929893pt;}
.x47_c00363{left:257.157952pt;}
.x39_c00363{left:259.316000pt;}
.x5a_c00363{left:261.760115pt;}
.x33_c00363{left:262.800000pt;}
.x1a_c00363{left:267.949648pt;}
.x86_c00363{left:269.040000pt;}
.x60_c00363{left:277.602253pt;}
.x48_c00363{left:278.524875pt;}
.x76_c00363{left:283.761333pt;}
.x57_c00363{left:285.513333pt;}
.x3a_c00363{left:286.430667pt;}
.x23_c00363{left:288.314667pt;}
.x2e_c00363{left:290.038656pt;}
.x52_c00363{left:295.776048pt;}
.x6a_c00363{left:296.984000pt;}
.x7_c00363{left:298.865333pt;}
.x24_c00363{left:302.301333pt;}
.x3f_c00363{left:305.150667pt;}
.x13_c00363{left:307.573755pt;}
.x34_c00363{left:310.320000pt;}
.x6b_c00363{left:312.589333pt;}
.x1b_c00363{left:314.255755pt;}
.x25_c00363{left:316.936000pt;}
.x53_c00363{left:318.870443pt;}
.x40_c00363{left:320.796000pt;}
.xc_c00363{left:321.709333pt;}
.x8_c00363{left:322.860000pt;}
.x3_c00363{left:323.760000pt;}
.x5b_c00363{left:326.528592pt;}
.x2_c00363{left:327.600000pt;}
.x6c_c00363{left:330.101333pt;}
.x26_c00363{left:331.462667pt;}
.x2f_c00363{left:333.299445pt;}
.x35_c00363{left:337.440000pt;}
.x61_c00363{left:338.993779pt;}
.x3b_c00363{left:342.346667pt;}
.x77_c00363{left:350.961333pt;}
.x9_c00363{left:355.716000pt;}
.x3c_c00363{left:358.914667pt;}
.x58_c00363{left:360.825333pt;}
.x41_c00363{left:364.704000pt;}
.x36_c00363{left:366.240000pt;}
.x14_c00363{left:367.823931pt;}
.x5c_c00363{left:371.689861pt;}
.x6d_c00363{left:372.830667pt;}
.x78_c00363{left:373.826667pt;}
.x85_c00363{left:375.120000pt;}
.x15_c00363{left:377.654949pt;}
.x62_c00363{left:379.130339pt;}
.x27_c00363{left:380.214667pt;}
.xd_c00363{left:383.613333pt;}
.xa_c00363{left:385.997333pt;}
.x49_c00363{left:388.450187pt;}
.x55_c00363{left:393.120000pt;}
.x42_c00363{left:395.136000pt;}
.x1c_c00363{left:399.690731pt;}
.x5d_c00363{left:400.679997pt;}
.x16_c00363{left:403.098528pt;}
.x30_c00363{left:411.737717pt;}
.x79_c00363{left:417.262667pt;}
.x54_c00363{left:421.306544pt;}
.xb_c00363{left:425.597333pt;}
.x63_c00363{left:430.440381pt;}
.x4a_c00363{left:432.130715pt;}
.x1d_c00363{left:433.054331pt;}
.x7a_c00363{left:436.457333pt;}
.x28_c00363{left:442.625333pt;}
.xe_c00363{left:450.701333pt;}
.x31_c00363{left:465.268672pt;}
.x29_c00363{left:466.684000pt;}
.x4b_c00363{left:472.456544pt;}
.x64_c00363{left:476.279683pt;}
.x6e_c00363{left:479.694667pt;}
.x2a_c00363{left:487.325333pt;}
.x7b_c00363{left:496.405333pt;}
.x4c_c00363{left:498.100848pt;}
.x1e_c00363{left:500.253531pt;}
.x32_c00363{left:504.141120pt;}
.x65_c00363{left:508.985483pt;}
.x6f_c00363{left:511.865333pt;}
.x4d_c00363{left:516.374405pt;}
.x71_c00363{left:521.040000pt;}
.x5e_c00363{left:524.566136pt;}
.x1f_c00363{left:530.010512pt;}
.x7c_c00363{left:546.925333pt;}
.x2b_c00363{left:547.994667pt;}
.x43_c00363{left:575.510667pt;}
.x17_c00363{left:577.038117pt;}
.x3d_c00363{left:578.674667pt;}
.xf_c00363{left:580.858667pt;}
.x2c_c00363{left:585.048000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m77_c00364{transform:matrix(0.011784,0.000153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011784,0.000153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011784,0.000153,-0.003250,0.249979,0,0);}
.m9f_c00364{transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.014049,0.000169,-0.003000,0.249982,0,0);}
.m120_c00364{transform:matrix(0.021633,0.000260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.021633,0.000260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.021633,0.000260,-0.003000,0.249982,0,0);}
.ma_c00364{transform:matrix(0.027340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027340,0.000000,0.000000,0.250000,0,0);}
.mf1_c00364{transform:matrix(0.036362,0.000436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.036362,0.000436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.036362,0.000436,-0.003000,0.249982,0,0);}
.mfd_c00364{transform:matrix(0.049891,0.000649,-0.003250,0.249979,0,0);-ms-transform:matrix(0.049891,0.000649,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.049891,0.000649,-0.003250,0.249979,0,0);}
.m21_c00364{transform:matrix(0.050165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050165,0.000000,0.000000,0.250000,0,0);}
.m130_c00364{transform:matrix(0.053031,0.000636,-0.003000,0.249982,0,0);-ms-transform:matrix(0.053031,0.000636,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.053031,0.000636,-0.003000,0.249982,0,0);}
.m2_c00364{transform:matrix(0.070020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070020,0.000000,0.000000,0.250000,0,0);}
.m76_c00364{transform:matrix(0.071584,0.000931,-0.003250,0.249979,0,0);-ms-transform:matrix(0.071584,0.000931,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.071584,0.000931,-0.003250,0.249979,0,0);}
.ma9_c00364{transform:matrix(0.098328,0.001180,-0.003000,0.249982,0,0);-ms-transform:matrix(0.098328,0.001180,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.098328,0.001180,-0.003000,0.249982,0,0);}
.m140_c00364{transform:matrix(0.099565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099565,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);}
.md1_c00364{transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134665,0.000000,0.000000,0.250000,0,0);}
.mfb_c00364{transform:matrix(0.138915,0.001667,-0.003000,0.249982,0,0);-ms-transform:matrix(0.138915,0.001667,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.138915,0.001667,-0.003000,0.249982,0,0);}
.m4f_c00364{transform:matrix(0.144043,0.001873,-0.003250,0.249979,0,0);-ms-transform:matrix(0.144043,0.001873,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.144043,0.001873,-0.003250,0.249979,0,0);}
.m8e_c00364{transform:matrix(0.145476,0.001600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145476,0.001600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145476,0.001600,-0.002750,0.249985,0,0);}
.m6e_c00364{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);}
.m2e_c00364{transform:matrix(0.146136,0.001023,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146136,0.001023,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146136,0.001023,-0.001750,0.249994,0,0);}
.m12d_c00364{transform:matrix(0.146449,0.001757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146449,0.001757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146449,0.001757,-0.003000,0.249982,0,0);}
.mcd_c00364{transform:matrix(0.147796,0.001626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147796,0.001626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147796,0.001626,-0.002750,0.249985,0,0);}
.me9_c00364{transform:matrix(0.148274,0.001779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.148274,0.001779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.148274,0.001779,-0.003000,0.249982,0,0);}
.m51_c00364{transform:matrix(0.150967,0.001963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150967,0.001963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150967,0.001963,-0.003250,0.249979,0,0);}
.mf0_c00364{transform:matrix(0.153614,0.001843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153614,0.001843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153614,0.001843,-0.003000,0.249982,0,0);}
.m80_c00364{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);}
.m5c_c00364{transform:matrix(0.154702,0.002011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154702,0.002011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154702,0.002011,-0.003250,0.249979,0,0);}
.mc3_c00364{transform:matrix(0.154901,0.001704,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154901,0.001704,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154901,0.001704,-0.002750,0.249985,0,0);}
.mfc_c00364{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);}
.m90_c00364{transform:matrix(0.155276,0.001708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155276,0.001708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155276,0.001708,-0.002750,0.249985,0,0);}
.m93_c00364{transform:matrix(0.155736,0.001713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155736,0.001713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155736,0.001713,-0.002750,0.249985,0,0);}
.m6_c00364{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);}
.mb0_c00364{transform:matrix(0.158284,0.001899,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158284,0.001899,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158284,0.001899,-0.003000,0.249982,0,0);}
.m5f_c00364{transform:matrix(0.159272,0.002071,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159272,0.002071,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159272,0.002071,-0.003250,0.249979,0,0);}
.m104_c00364{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);}
.m8c_c00364{transform:matrix(0.161735,0.001779,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161735,0.001779,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161735,0.001779,-0.002750,0.249985,0,0);}
.m144_c00364{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);}
.mac_c00364{transform:matrix(0.162343,0.001948,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162343,0.001948,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162343,0.001948,-0.003000,0.249982,0,0);}
.m98_c00364{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);}
.m103_c00364{transform:matrix(0.163301,0.002123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163301,0.002123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163301,0.002123,-0.003250,0.249979,0,0);}
.mcf_c00364{transform:matrix(0.164000,0.001804,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164000,0.001804,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164000,0.001804,-0.002750,0.249985,0,0);}
.m25_c00364{transform:matrix(0.164651,0.001153,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164651,0.001153,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164651,0.001153,-0.001750,0.249994,0,0);}
.m3e_c00364{transform:matrix(0.165451,0.002151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165451,0.002151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165451,0.002151,-0.003250,0.249979,0,0);}
.m50_c00364{transform:matrix(0.165481,0.002151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165481,0.002151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165481,0.002151,-0.003250,0.249979,0,0);}
.mf5_c00364{transform:matrix(0.165513,0.001986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165513,0.001986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165513,0.001986,-0.003000,0.249982,0,0);}
.md3_c00364{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);}
.m3c_c00364{transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);}
.m8a_c00364{transform:matrix(0.166765,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166765,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166765,0.001834,-0.002750,0.249985,0,0);}
.m97_c00364{transform:matrix(0.167708,0.002012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167708,0.002012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167708,0.002012,-0.003000,0.249982,0,0);}
.m71_c00364{transform:matrix(0.168331,0.002188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168331,0.002188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168331,0.002188,-0.003250,0.249979,0,0);}
.m125_c00364{transform:matrix(0.168713,0.002025,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168713,0.002025,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168713,0.002025,-0.003000,0.249982,0,0);}
.m57_c00364{transform:matrix(0.168721,0.002193,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168721,0.002193,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168721,0.002193,-0.003250,0.249979,0,0);}
.mf3_c00364{transform:matrix(0.168828,0.002026,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168828,0.002026,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168828,0.002026,-0.003000,0.249982,0,0);}
.m122_c00364{transform:matrix(0.169693,0.002036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169693,0.002036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169693,0.002036,-0.003000,0.249982,0,0);}
.m34_c00364{transform:matrix(0.169931,0.002209,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169931,0.002209,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169931,0.002209,-0.003250,0.249979,0,0);}
.m36_c00364{transform:matrix(0.170011,0.002210,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170011,0.002210,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170011,0.002210,-0.003250,0.249979,0,0);}
.md7_c00364{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);}
.m27_c00364{transform:matrix(0.171021,0.001197,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171021,0.001197,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171021,0.001197,-0.001750,0.249994,0,0);}
.md4_c00364{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);}
.mff_c00364{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);}
.m7d_c00364{transform:matrix(0.171561,0.002230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171561,0.002230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171561,0.002230,-0.003250,0.249979,0,0);}
.m44_c00364{transform:matrix(0.171870,0.002234,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171870,0.002234,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171870,0.002234,-0.003250,0.249979,0,0);}
.m6b_c00364{transform:matrix(0.171930,0.002235,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171930,0.002235,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171930,0.002235,-0.003250,0.249979,0,0);}
.ma6_c00364{transform:matrix(0.172043,0.002065,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172043,0.002065,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172043,0.002065,-0.003000,0.249982,0,0);}
.m81_c00364{transform:matrix(0.172525,0.001898,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172525,0.001898,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172525,0.001898,-0.002750,0.249985,0,0);}
.m2f_c00364{transform:matrix(0.173181,0.001212,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173181,0.001212,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173181,0.001212,-0.001750,0.249994,0,0);}
.me0_c00364{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);}
.m7f_c00364{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);}
.mca_c00364{transform:matrix(0.174279,0.001917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174279,0.001917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174279,0.001917,-0.002750,0.249985,0,0);}
.m56_c00364{transform:matrix(0.175410,0.002280,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175410,0.002280,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175410,0.002280,-0.003250,0.249979,0,0);}
.m32_c00364{transform:matrix(0.175425,0.002281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175425,0.002281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175425,0.002281,-0.003250,0.249979,0,0);}
.m9e_c00364{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);}
.m5d_c00364{transform:matrix(0.177070,0.002302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177070,0.002302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177070,0.002302,-0.003250,0.249979,0,0);}
.mc1_c00364{transform:matrix(0.177099,0.001948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177099,0.001948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177099,0.001948,-0.002750,0.249985,0,0);}
.m92_c00364{transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177224,0.001949,-0.002750,0.249985,0,0);}
.mc2_c00364{transform:matrix(0.177309,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177309,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177309,0.001950,-0.002750,0.249985,0,0);}
.m63_c00364{transform:matrix(0.177880,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177880,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177880,0.002312,-0.003250,0.249979,0,0);}
.mc4_c00364{transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);}
.m2b_c00364{transform:matrix(0.178726,0.001251,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178726,0.001251,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178726,0.001251,-0.001750,0.249994,0,0);}
.m10a_c00364{transform:matrix(0.178750,0.002324,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178750,0.002324,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178750,0.002324,-0.003250,0.249979,0,0);}
.m67_c00364{transform:matrix(0.179015,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179015,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179015,0.002327,-0.003250,0.249979,0,0);}
.md6_c00364{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);}
.mf7_c00364{transform:matrix(0.180067,0.002161,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180067,0.002161,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180067,0.002161,-0.003000,0.249982,0,0);}
.mba_c00364{transform:matrix(0.180166,0.001802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180166,0.001802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180166,0.001802,-0.002500,0.249988,0,0);}
.m26_c00364{transform:matrix(0.180241,0.001262,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180241,0.001262,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180241,0.001262,-0.001750,0.249994,0,0);}
.mee_c00364{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);}
.m10f_c00364{transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);}
.m5e_c00364{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);}
.m73_c00364{transform:matrix(0.181305,0.002357,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181305,0.002357,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181305,0.002357,-0.003250,0.249979,0,0);}
.mb5_c00364{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);}
.m12e_c00364{transform:matrix(0.181772,0.002181,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181772,0.002181,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181772,0.002181,-0.003000,0.249982,0,0);}
.m6d_c00364{transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);}
.m94_c00364{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);}
.m42_c00364{transform:matrix(0.182320,0.002370,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182320,0.002370,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182320,0.002370,-0.003250,0.249979,0,0);}
.m102_c00364{transform:matrix(0.182875,0.002377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182875,0.002377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182875,0.002377,-0.003250,0.249979,0,0);}
.m62_c00364{transform:matrix(0.183454,0.002385,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183454,0.002385,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183454,0.002385,-0.003250,0.249979,0,0);}
.m4b_c00364{transform:matrix(0.183929,0.002391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183929,0.002391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183929,0.002391,-0.003250,0.249979,0,0);}
.mde_c00364{transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184117,0.002209,-0.003000,0.249982,0,0);}
.m38_c00364{transform:matrix(0.184144,0.002394,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184144,0.002394,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184144,0.002394,-0.003250,0.249979,0,0);}
.m11f_c00364{transform:matrix(0.184862,0.002218,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184862,0.002218,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184862,0.002218,-0.003000,0.249982,0,0);}
.mae_c00364{transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185342,0.002224,-0.003000,0.249982,0,0);}
.m5a_c00364{transform:matrix(0.185869,0.002416,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185869,0.002416,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185869,0.002416,-0.003250,0.249979,0,0);}
.mda_c00364{transform:matrix(0.186217,0.002235,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186217,0.002235,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186217,0.002235,-0.003000,0.249982,0,0);}
.mab_c00364{transform:matrix(0.187012,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187012,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187012,0.002244,-0.003000,0.249982,0,0);}
.mb1_c00364{transform:matrix(0.187037,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187037,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187037,0.002244,-0.003000,0.249982,0,0);}
.m135_c00364{transform:matrix(0.187137,0.002246,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187137,0.002246,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187137,0.002246,-0.003000,0.249982,0,0);}
.m3a_c00364{transform:matrix(0.187294,0.002435,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187294,0.002435,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187294,0.002435,-0.003250,0.249979,0,0);}
.mdd_c00364{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);}
.m121_c00364{transform:matrix(0.187432,0.002249,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187432,0.002249,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187432,0.002249,-0.003000,0.249982,0,0);}
.m31_c00364{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);}
.m79_c00364{transform:matrix(0.188314,0.002448,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188314,0.002448,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188314,0.002448,-0.003250,0.249979,0,0);}
.m4a_c00364{transform:matrix(0.188399,0.002449,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188399,0.002449,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188399,0.002449,-0.003250,0.249979,0,0);}
.m59_c00364{transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188459,0.002450,-0.003250,0.249979,0,0);}
.mbf_c00364{transform:matrix(0.189179,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189179,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189179,0.002081,-0.002750,0.249985,0,0);}
.m70_c00364{transform:matrix(0.189194,0.002460,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189194,0.002460,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189194,0.002460,-0.003250,0.249979,0,0);}
.m4e_c00364{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);}
.me2_c00364{transform:matrix(0.189896,0.002279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189896,0.002279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189896,0.002279,-0.003000,0.249982,0,0);}
.m24_c00364{transform:matrix(0.189935,0.001330,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189935,0.001330,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189935,0.001330,-0.001750,0.249994,0,0);}
.m141_c00364{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);}
.m112_c00364{transform:matrix(0.190666,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190666,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190666,0.002288,-0.003000,0.249982,0,0);}
.m30_c00364{transform:matrix(0.190974,0.002483,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190974,0.002483,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190974,0.002483,-0.003250,0.249979,0,0);}
.m37_c00364{transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191054,0.002484,-0.003250,0.249979,0,0);}
.mbe_c00364{transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191318,0.002105,-0.002750,0.249985,0,0);}
.m4d_c00364{transform:matrix(0.191489,0.002489,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191489,0.002489,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191489,0.002489,-0.003250,0.249979,0,0);}
.m124_c00364{transform:matrix(0.191651,0.002300,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191651,0.002300,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191651,0.002300,-0.003000,0.249982,0,0);}
.m54_c00364{transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191829,0.002494,-0.003250,0.249979,0,0);}
.m1d_c00364{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);}
.m129_c00364{transform:matrix(0.192096,0.002305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192096,0.002305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192096,0.002305,-0.003000,0.249982,0,0);}
.md0_c00364{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);}
.m4c_c00364{transform:matrix(0.192399,0.002501,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192399,0.002501,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192399,0.002501,-0.003250,0.249979,0,0);}
.m43_c00364{transform:matrix(0.192524,0.002503,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192524,0.002503,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192524,0.002503,-0.003250,0.249979,0,0);}
.m6c_c00364{transform:matrix(0.192544,0.002503,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192544,0.002503,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192544,0.002503,-0.003250,0.249979,0,0);}
.mad_c00364{transform:matrix(0.192851,0.002314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192851,0.002314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192851,0.002314,-0.003000,0.249982,0,0);}
.ma1_c00364{transform:matrix(0.192911,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192911,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192911,0.002315,-0.003000,0.249982,0,0);}
.m45_c00364{transform:matrix(0.193029,0.002509,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193029,0.002509,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193029,0.002509,-0.003250,0.249979,0,0);}
.m117_c00364{transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);}
.m61_c00364{transform:matrix(0.193784,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193784,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193784,0.002519,-0.003250,0.249979,0,0);}
.m17_c00364{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);}
.ma3_c00364{transform:matrix(0.194796,0.002338,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194796,0.002338,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194796,0.002338,-0.003000,0.249982,0,0);}
.m11c_c00364{transform:matrix(0.194886,0.002339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194886,0.002339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194886,0.002339,-0.003000,0.249982,0,0);}
.m11b_c00364{transform:matrix(0.195216,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195216,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195216,0.002343,-0.003000,0.249982,0,0);}
.ma0_c00364{transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);}
.m2c_c00364{transform:matrix(0.195765,0.001370,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195765,0.001370,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195765,0.001370,-0.001750,0.249994,0,0);}
.m101_c00364{transform:matrix(0.196103,0.002549,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196103,0.002549,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196103,0.002549,-0.003250,0.249979,0,0);}
.m96_c00364{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.m33_c00364{transform:matrix(0.196178,0.002550,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196178,0.002550,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196178,0.002550,-0.003250,0.249979,0,0);}
.m134_c00364{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);}
.ma2_c00364{transform:matrix(0.196846,0.002362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196846,0.002362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196846,0.002362,-0.003000,0.249982,0,0);}
.m132_c00364{transform:matrix(0.197056,0.002365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197056,0.002365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197056,0.002365,-0.003000,0.249982,0,0);}
.m20_c00364{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);}
.m29_c00364{transform:matrix(0.197160,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197160,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197160,0.001380,-0.001750,0.249994,0,0);}
.me4_c00364{transform:matrix(0.197566,0.002371,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197566,0.002371,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197566,0.002371,-0.003000,0.249982,0,0);}
.m6f_c00364{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);}
.m12c_c00364{transform:matrix(0.198066,0.002377,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198066,0.002377,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198066,0.002377,-0.003000,0.249982,0,0);}
.mf8_c00364{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);}
.m83_c00364{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);}
.m109_c00364{transform:matrix(0.198708,0.002583,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198708,0.002583,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198708,0.002583,-0.003250,0.249979,0,0);}
.mc9_c00364{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);}
.mce_c00364{transform:matrix(0.199053,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199053,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199053,0.002190,-0.002750,0.249985,0,0);}
.me3_c00364{transform:matrix(0.199451,0.002393,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199451,0.002393,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199451,0.002393,-0.003000,0.249982,0,0);}
.maa_c00364{transform:matrix(0.199616,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199616,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199616,0.002395,-0.003000,0.249982,0,0);}
.m11e_c00364{transform:matrix(0.200066,0.002401,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200066,0.002401,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200066,0.002401,-0.003000,0.249982,0,0);}
.me5_c00364{transform:matrix(0.200471,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200471,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200471,0.002406,-0.003000,0.249982,0,0);}
.m91_c00364{transform:matrix(0.200608,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200608,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200608,0.002207,-0.002750,0.249985,0,0);}
.ma5_c00364{transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200731,0.002409,-0.003000,0.249982,0,0);}
.mf9_c00364{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);}
.m95_c00364{transform:matrix(0.201388,0.002215,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201388,0.002215,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201388,0.002215,-0.002750,0.249985,0,0);}
.mfa_c00364{transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);}
.m5b_c00364{transform:matrix(0.201643,0.002621,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201643,0.002621,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201643,0.002621,-0.003250,0.249979,0,0);}
.m100_c00364{transform:matrix(0.201728,0.002622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201728,0.002622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201728,0.002622,-0.003250,0.249979,0,0);}
.md5_c00364{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);}
.m10c_c00364{transform:matrix(0.202773,0.002636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202773,0.002636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202773,0.002636,-0.003250,0.249979,0,0);}
.m58_c00364{transform:matrix(0.203243,0.002642,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203243,0.002642,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203243,0.002642,-0.003250,0.249979,0,0);}
.m13c_c00364{transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203625,0.002444,-0.003000,0.249982,0,0);}
.m13d_c00364{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);}
.m13a_c00364{transform:matrix(0.204545,0.002455,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204545,0.002455,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204545,0.002455,-0.003000,0.249982,0,0);}
.m53_c00364{transform:matrix(0.204573,0.002659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204573,0.002659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204573,0.002659,-0.003250,0.249979,0,0);}
.mcc_c00364{transform:matrix(0.204658,0.002251,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204658,0.002251,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204658,0.002251,-0.002750,0.249985,0,0);}
.m123_c00364{transform:matrix(0.205085,0.002461,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205085,0.002461,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205085,0.002461,-0.003000,0.249982,0,0);}
.m145_c00364{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);}
.m23_c00364{transform:matrix(0.205315,0.001437,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205315,0.001437,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205315,0.001437,-0.001750,0.249994,0,0);}
.m12b_c00364{transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);}
.m55_c00364{transform:matrix(0.205813,0.002676,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205813,0.002676,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205813,0.002676,-0.003250,0.249979,0,0);}
.m131_c00364{transform:matrix(0.206080,0.002473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206080,0.002473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206080,0.002473,-0.003000,0.249982,0,0);}
.mb8_c00364{transform:matrix(0.206120,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206120,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206120,0.002061,-0.002500,0.249988,0,0);}
.m11d_c00364{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);}
.m110_c00364{transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206633,0.002686,-0.003250,0.249979,0,0);}
.m52_c00364{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);}
.maf_c00364{transform:matrix(0.207085,0.002485,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207085,0.002485,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207085,0.002485,-0.003000,0.249982,0,0);}
.mb6_c00364{transform:matrix(0.207625,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207625,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207625,0.002076,-0.002500,0.249988,0,0);}
.m66_c00364{transform:matrix(0.207757,0.002701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207757,0.002701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207757,0.002701,-0.003250,0.249979,0,0);}
.m28_c00364{transform:matrix(0.207930,0.001456,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207930,0.001456,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207930,0.001456,-0.001750,0.249994,0,0);}
.m106_c00364{transform:matrix(0.208382,0.002709,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208382,0.002709,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208382,0.002709,-0.003250,0.249979,0,0);}
.m13e_c00364{transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);}
.mdb_c00364{transform:matrix(0.208530,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208530,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208530,0.002502,-0.003000,0.249982,0,0);}
.me8_c00364{transform:matrix(0.208535,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208535,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208535,0.002502,-0.003000,0.249982,0,0);}
.ma4_c00364{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);}
.m12f_c00364{transform:matrix(0.210300,0.002524,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210300,0.002524,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210300,0.002524,-0.003000,0.249982,0,0);}
.m113_c00364{transform:matrix(0.210655,0.002528,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210655,0.002528,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210655,0.002528,-0.003000,0.249982,0,0);}
.m10e_c00364{transform:matrix(0.211062,0.002744,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211062,0.002744,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211062,0.002744,-0.003250,0.249979,0,0);}
.mbc_c00364{transform:matrix(0.211957,0.002332,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211957,0.002332,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211957,0.002332,-0.002750,0.249985,0,0);}
.m64_c00364{transform:matrix(0.212382,0.002761,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212382,0.002761,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212382,0.002761,-0.003250,0.249979,0,0);}
.m114_c00364{transform:matrix(0.212405,0.002549,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212405,0.002549,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212405,0.002549,-0.003000,0.249982,0,0);}
.m8b_c00364{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);}
.m1_c00364{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);}
.m1e_c00364{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);}
.m46_c00364{transform:matrix(0.213597,0.002777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213597,0.002777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213597,0.002777,-0.003250,0.249979,0,0);}
.m111_c00364{transform:matrix(0.214055,0.002569,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214055,0.002569,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214055,0.002569,-0.003000,0.249982,0,0);}
.m142_c00364{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);}
.meb_c00364{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);}
.m8f_c00364{transform:matrix(0.215767,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215767,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215767,0.002373,-0.002750,0.249985,0,0);}
.m13f_c00364{transform:matrix(0.216419,0.002597,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216419,0.002597,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216419,0.002597,-0.003000,0.249982,0,0);}
.m108_c00364{transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);}
.m6a_c00364{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);}
.m75_c00364{transform:matrix(0.217287,0.002825,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217287,0.002825,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217287,0.002825,-0.003250,0.249979,0,0);}
.m133_c00364{transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);}
.mb3_c00364{transform:matrix(0.217699,0.002177,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217699,0.002177,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217699,0.002177,-0.002500,0.249988,0,0);}
.m7c_c00364{transform:matrix(0.218082,0.002835,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218082,0.002835,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218082,0.002835,-0.003250,0.249979,0,0);}
.m9a_c00364{transform:matrix(0.218204,0.002618,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218204,0.002618,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218204,0.002618,-0.003000,0.249982,0,0);}
.m41_c00364{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);}
.md8_c00364{transform:matrix(0.218899,0.002627,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218899,0.002627,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218899,0.002627,-0.003000,0.249982,0,0);}
.m22_c00364{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);}
.m107_c00364{transform:matrix(0.219431,0.002853,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219431,0.002853,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219431,0.002853,-0.003250,0.249979,0,0);}
.mc0_c00364{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);}
.mef_c00364{transform:matrix(0.219819,0.002638,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219819,0.002638,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219819,0.002638,-0.003000,0.249982,0,0);}
.m3f_c00364{transform:matrix(0.220081,0.002861,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220081,0.002861,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220081,0.002861,-0.003250,0.249979,0,0);}
.m9b_c00364{transform:matrix(0.220184,0.002642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220184,0.002642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220184,0.002642,-0.003000,0.249982,0,0);}
.m127_c00364{transform:matrix(0.220859,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220859,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220859,0.002650,-0.003000,0.249982,0,0);}
.m39_c00364{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);}
.ma7_c00364{transform:matrix(0.221894,0.002663,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221894,0.002663,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221894,0.002663,-0.003000,0.249982,0,0);}
.m119_c00364{transform:matrix(0.222849,0.002674,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222849,0.002674,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222849,0.002674,-0.003000,0.249982,0,0);}
.m48_c00364{transform:matrix(0.223201,0.002902,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223201,0.002902,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223201,0.002902,-0.003250,0.249979,0,0);}
.ma8_c00364{transform:matrix(0.223469,0.002682,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223469,0.002682,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223469,0.002682,-0.003000,0.249982,0,0);}
.m1b_c00364{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);}
.me1_c00364{transform:matrix(0.223974,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223974,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223974,0.002688,-0.003000,0.249982,0,0);}
.me6_c00364{transform:matrix(0.224744,0.002697,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224744,0.002697,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224744,0.002697,-0.003000,0.249982,0,0);}
.m84_c00364{transform:matrix(0.224771,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224771,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224771,0.002472,-0.002750,0.249985,0,0);}
.m8d_c00364{transform:matrix(0.225741,0.002483,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225741,0.002483,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225741,0.002483,-0.002750,0.249985,0,0);}
.mec_c00364{transform:matrix(0.226094,0.002713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226094,0.002713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226094,0.002713,-0.003000,0.249982,0,0);}
.me7_c00364{transform:matrix(0.228169,0.002738,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228169,0.002738,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228169,0.002738,-0.003000,0.249982,0,0);}
.m74_c00364{transform:matrix(0.228231,0.002967,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228231,0.002967,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228231,0.002967,-0.003250,0.249979,0,0);}
.m126_c00364{transform:matrix(0.228249,0.002739,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228249,0.002739,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228249,0.002739,-0.003000,0.249982,0,0);}
.m138_c00364{transform:matrix(0.228469,0.002742,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228469,0.002742,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228469,0.002742,-0.003000,0.249982,0,0);}
.mcb_c00364{transform:matrix(0.228536,0.002514,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228536,0.002514,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228536,0.002514,-0.002750,0.249985,0,0);}
.m99_c00364{transform:matrix(0.228639,0.002744,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228639,0.002744,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228639,0.002744,-0.003000,0.249982,0,0);}
.m69_c00364{transform:matrix(0.228661,0.002973,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228661,0.002973,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228661,0.002973,-0.003250,0.249979,0,0);}
.mb9_c00364{transform:matrix(0.229054,0.002291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229054,0.002291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229054,0.002291,-0.002500,0.249988,0,0);}
.m2a_c00364{transform:matrix(0.229654,0.001608,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229654,0.001608,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229654,0.001608,-0.001750,0.249994,0,0);}
.mb2_c00364{transform:matrix(0.230323,0.002303,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230323,0.002303,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230323,0.002303,-0.002500,0.249988,0,0);}
.m14_c00364{transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);}
.m116_c00364{transform:matrix(0.230798,0.002770,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230798,0.002770,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230798,0.002770,-0.003000,0.249982,0,0);}
.m3_c00364{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);}
.me_c00364{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);}
.m85_c00364{transform:matrix(0.234266,0.002577,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234266,0.002577,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234266,0.002577,-0.002750,0.249985,0,0);}
.m3d_c00364{transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);}
.m7_c00364{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);}
.m49_c00364{transform:matrix(0.236525,0.003075,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236525,0.003075,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236525,0.003075,-0.003250,0.249979,0,0);}
.md_c00364{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);}
.m60_c00364{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);}
.md9_c00364{transform:matrix(0.237783,0.002853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237783,0.002853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237783,0.002853,-0.003000,0.249982,0,0);}
.m1a_c00364{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.mf2_c00364{transform:matrix(0.238353,0.002860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238353,0.002860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238353,0.002860,-0.003000,0.249982,0,0);}
.med_c00364{transform:matrix(0.238388,0.002861,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238388,0.002861,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238388,0.002861,-0.003000,0.249982,0,0);}
.mf4_c00364{transform:matrix(0.238483,0.002862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238483,0.002862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238483,0.002862,-0.003000,0.249982,0,0);}
.m2d_c00364{transform:matrix(0.239474,0.001676,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239474,0.001676,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239474,0.001676,-0.001750,0.249994,0,0);}
.m40_c00364{transform:matrix(0.240495,0.003126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240495,0.003126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240495,0.003126,-0.003250,0.249979,0,0);}
.mdf_c00364{transform:matrix(0.240813,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240813,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240813,0.002890,-0.003000,0.249982,0,0);}
.m136_c00364{transform:matrix(0.241108,0.002893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241108,0.002893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241108,0.002893,-0.003000,0.249982,0,0);}
.mea_c00364{transform:matrix(0.241868,0.002902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241868,0.002902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241868,0.002902,-0.003000,0.249982,0,0);}
.m87_c00364{transform:matrix(0.244930,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244930,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244930,0.002694,-0.002750,0.249985,0,0);}
.m11a_c00364{transform:matrix(0.245037,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245037,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245037,0.002940,-0.003000,0.249982,0,0);}
.m1c_c00364{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);}
.mbd_c00364{transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);}
.m82_c00364{transform:matrix(0.248285,0.002731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248285,0.002731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248285,0.002731,-0.002750,0.249985,0,0);}
.m47_c00364{transform:matrix(0.249004,0.003237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249004,0.003237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249004,0.003237,-0.003250,0.249979,0,0);}
.m7b_c00364{transform:matrix(0.250114,0.003251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250114,0.003251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250114,0.003251,-0.003250,0.249979,0,0);}
.m143_c00364{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.mc5_c00364{transform:matrix(0.255270,0.002808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255270,0.002808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255270,0.002808,-0.002750,0.249985,0,0);}
.m10d_c00364{transform:matrix(0.257353,0.003346,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257353,0.003346,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257353,0.003346,-0.003250,0.249979,0,0);}
.mc8_c00364{transform:matrix(0.258204,0.002840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258204,0.002840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258204,0.002840,-0.002750,0.249985,0,0);}
.m3b_c00364{transform:matrix(0.259313,0.003371,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259313,0.003371,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259313,0.003371,-0.003250,0.249979,0,0);}
.mdc_c00364{transform:matrix(0.259616,0.003115,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259616,0.003115,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259616,0.003115,-0.003000,0.249982,0,0);}
.mfe_c00364{transform:matrix(0.260343,0.003384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260343,0.003384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260343,0.003384,-0.003250,0.249979,0,0);}
.m86_c00364{transform:matrix(0.262754,0.002890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262754,0.002890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262754,0.002890,-0.002750,0.249985,0,0);}
.mc7_c00364{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);}
.m9d_c00364{transform:matrix(0.269481,0.003234,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269481,0.003234,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269481,0.003234,-0.003000,0.249982,0,0);}
.m12_c00364{transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270995,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{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);}
.m137_c00364{transform:matrix(0.272825,0.003274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272825,0.003274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272825,0.003274,-0.003000,0.249982,0,0);}
.md2_c00364{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);}
.m1f_c00364{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);}
.mf6_c00364{transform:matrix(0.277225,0.003327,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277225,0.003327,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277225,0.003327,-0.003000,0.249982,0,0);}
.m13b_c00364{transform:matrix(0.279335,0.003352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279335,0.003352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279335,0.003352,-0.003000,0.249982,0,0);}
.m65_c00364{transform:matrix(0.280991,0.003653,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280991,0.003653,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280991,0.003653,-0.003250,0.249979,0,0);}
.m5_c00364{transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);}
.m147_c00364{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);}
.m10b_c00364{transform:matrix(0.296855,0.003859,-0.003250,0.249979,0,0);-ms-transform:matrix(0.296855,0.003859,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.296855,0.003859,-0.003250,0.249979,0,0);}
.mb_c00364{transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);}
.m68_c00364{transform:matrix(0.303719,0.003948,-0.003250,0.249979,0,0);-ms-transform:matrix(0.303719,0.003948,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.303719,0.003948,-0.003250,0.249979,0,0);}
.m15_c00364{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.m12a_c00364{transform:matrix(0.309278,0.003711,-0.003000,0.249982,0,0);-ms-transform:matrix(0.309278,0.003711,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.309278,0.003711,-0.003000,0.249982,0,0);}
.m9c_c00364{transform:matrix(0.310228,0.003723,-0.003000,0.249982,0,0);-ms-transform:matrix(0.310228,0.003723,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.310228,0.003723,-0.003000,0.249982,0,0);}
.m35_c00364{transform:matrix(0.316913,0.004120,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316913,0.004120,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316913,0.004120,-0.003250,0.249979,0,0);}
.mb4_c00364{transform:matrix(0.323699,0.003237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.323699,0.003237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.323699,0.003237,-0.002500,0.249988,0,0);}
.m146_c00364{transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325190,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326095,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{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);}
.mb7_c00364{transform:matrix(0.336543,0.003365,-0.002500,0.249988,0,0);-ms-transform:matrix(0.336543,0.003365,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.336543,0.003365,-0.002500,0.249988,0,0);}
.mbb_c00364{transform:matrix(0.350822,0.003508,-0.002500,0.249988,0,0);-ms-transform:matrix(0.350822,0.003508,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.350822,0.003508,-0.002500,0.249988,0,0);}
.mc_c00364{transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.359275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359275,0.000000,0.000000,0.250000,0,0);}
.m105_c00364{transform:matrix(0.361254,0.004696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.361254,0.004696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.361254,0.004696,-0.003250,0.249979,0,0);}
.m128_c00364{transform:matrix(0.363954,0.004367,-0.003000,0.249982,0,0);-ms-transform:matrix(0.363954,0.004367,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.363954,0.004367,-0.003000,0.249982,0,0);}
.m18_c00364{transform:matrix(0.365680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365680,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372510,0.000000,0.000000,0.250000,0,0);}
.m118_c00364{transform:matrix(0.373453,0.004481,-0.003000,0.249982,0,0);-ms-transform:matrix(0.373453,0.004481,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.373453,0.004481,-0.003000,0.249982,0,0);}
.m78_c00364{transform:matrix(0.374133,0.004864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.374133,0.004864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.374133,0.004864,-0.003250,0.249979,0,0);}
.m139_c00364{transform:matrix(0.374208,0.004490,-0.003000,0.249982,0,0);-ms-transform:matrix(0.374208,0.004490,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.374208,0.004490,-0.003000,0.249982,0,0);}
.m7a_c00364{transform:matrix(0.389587,0.005065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.389587,0.005065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.389587,0.005065,-0.003250,0.249979,0,0);}
.m72_c00364{transform:matrix(0.412815,0.005367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.412815,0.005367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.412815,0.005367,-0.003250,0.249979,0,0);}
.m19_c00364{transform:matrix(0.449185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449185,0.000000,0.000000,0.250000,0,0);}
.m115_c00364{transform:matrix(0.482740,0.005793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.482740,0.005793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.482740,0.005793,-0.003000,0.249982,0,0);}
.m4_c00364{transform:matrix(0.514680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514680,0.000000,0.000000,0.250000,0,0);}
.m89_c00364{transform:matrix(0.551602,0.006068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.551602,0.006068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.551602,0.006068,-0.002750,0.249985,0,0);}
.m0_c00364{transform:matrix(0.576220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576220,0.000000,0.000000,0.250000,0,0);}
.m7e_c00364{transform:matrix(0.582540,0.006408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.582540,0.006408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.582540,0.006408,-0.002750,0.249985,0,0);}
.mc6_c00364{transform:matrix(0.582770,0.006410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.582770,0.006410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.582770,0.006410,-0.002750,0.249985,0,0);}
.m88_c00364{transform:matrix(0.753034,0.008283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.753034,0.008283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.753034,0.008283,-0.002750,0.249985,0,0);}
.m11_c00364{transform:matrix(0.919035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919035,0.000000,0.000000,0.250000,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;}
.fs16_c00364{font-size:50.403629px;}
.fs14_c00364{font-size:51.453704px;}
.fs15_c00364{font-size:52.503780px;}
.fs13_c00364{font-size:61.955235px;}
.fs3_c00364{font-size:63.000000px;}
.fs9_c00364{font-size:67.204065px;}
.fs12_c00364{font-size:68.254914px;}
.fsf_c00364{font-size:69.304193px;}
.fsc_c00364{font-size:69.304989px;}
.fs17_c00364{font-size:70.350000px;}
.fsa_c00364{font-size:70.354256px;}
.fs7_c00364{font-size:70.355944px;}
.fsb_c00364{font-size:71.405141px;}
.fs11_c00364{font-size:72.450000px;}
.fs5_c00364{font-size:72.451775px;}
.fs10_c00364{font-size:72.454383px;}
.fs8_c00364{font-size:72.456122px;}
.fs4_c00364{font-size:73.501801px;}
.fsd_c00364{font-size:73.505292px;}
.fs6_c00364{font-size:73.506210px;}
.fse_c00364{font-size:75.603780px;}
.fs0_c00364{font-size:91.350000px;}
.fs2_c00364{font-size:137.550000px;}
.fs1_c00364{font-size:153.300000px;}
.y0_c00364{bottom:0.000000px;}
.y135_c00364{bottom:137.043000px;}
.y134_c00364{bottom:151.598346px;}
.y133_c00364{bottom:151.966800px;}
.y132_c00364{bottom:152.205450px;}
.y131_c00364{bottom:152.698218px;}
.y130_c00364{bottom:152.962164px;}
.y12f_c00364{bottom:153.447216px;}
.y12e_c00364{bottom:153.755658px;}
.y12d_c00364{bottom:153.922656px;}
.y12c_c00364{bottom:154.498212px;}
.y12b_c00364{bottom:154.682574px;}
.y12a_c00364{bottom:155.113410px;}
.y129_c00364{bottom:155.273568px;}
.y128_c00364{bottom:155.522706px;}
.y127_c00364{bottom:155.909838px;}
.y126_c00364{bottom:156.171012px;}
.y125_c00364{bottom:156.500562px;}
.y124_c00364{bottom:156.601614px;}
.y123_c00364{bottom:170.481156px;}
.y122_c00364{bottom:170.794140px;}
.y121_c00364{bottom:170.985144px;}
.y120_c00364{bottom:171.587700px;}
.y11f_c00364{bottom:171.735882px;}
.y11e_c00364{bottom:171.854442px;}
.y11d_c00364{bottom:172.205160px;}
.y11c_c00364{bottom:172.365270px;}
.y11b_c00364{bottom:172.758324px;}
.y11a_c00364{bottom:173.138934px;}
.y119_c00364{bottom:173.497764px;}
.y118_c00364{bottom:173.692026px;}
.y117_c00364{bottom:174.372024px;}
.y116_c00364{bottom:174.525222px;}
.y115_c00364{bottom:174.689844px;}
.y114_c00364{bottom:186.698058px;}
.y113_c00364{bottom:187.133190px;}
.y112_c00364{bottom:187.813626px;}
.y111_c00364{bottom:188.134674px;}
.y110_c00364{bottom:188.594484px;}
.y10f_c00364{bottom:188.814516px;}
.y10e_c00364{bottom:189.300822px;}
.y10d_c00364{bottom:189.530844px;}
.y10c_c00364{bottom:189.706524px;}
.y10b_c00364{bottom:190.247208px;}
.y10a_c00364{bottom:190.484052px;}
.y109_c00364{bottom:190.982634px;}
.y108_c00364{bottom:191.591754px;}
.y107_c00364{bottom:191.786136px;}
.y106_c00364{bottom:192.181434px;}
.y105_c00364{bottom:192.511500px;}
.y104_c00364{bottom:237.861025px;}
.y103_c00364{bottom:238.218608px;}
.y102_c00364{bottom:238.817626px;}
.y101_c00364{bottom:239.311749px;}
.y100_c00364{bottom:239.772706px;}
.yff_c00364{bottom:240.219859px;}
.yfe_c00364{bottom:240.815368px;}
.yfd_c00364{bottom:241.280636px;}
.yfc_c00364{bottom:241.531177px;}
.yfb_c00364{bottom:241.971487px;}
.yfa_c00364{bottom:242.507587px;}
.yf9_c00364{bottom:243.001554px;}
.yf8_c00364{bottom:260.856475px;}
.yf7_c00364{bottom:261.298794px;}
.yf6_c00364{bottom:261.915910px;}
.yf5_c00364{bottom:262.432348px;}
.yf4_c00364{bottom:263.102837px;}
.yf3_c00364{bottom:263.482209px;}
.yf2_c00364{bottom:264.099969px;}
.yf1_c00364{bottom:264.580254px;}
.yf0_c00364{bottom:265.083822px;}
.yef_c00364{bottom:265.411500px;}
.yee_c00364{bottom:288.693564px;}
.yed_c00364{bottom:288.845286px;}
.yec_c00364{bottom:289.380750px;}
.yeb_c00364{bottom:289.678308px;}
.yea_c00364{bottom:289.960278px;}
.ye9_c00364{bottom:290.705586px;}
.ye8_c00364{bottom:291.094818px;}
.ye7_c00364{bottom:291.654834px;}
.ye6_c00364{bottom:292.037316px;}
.ye5_c00364{bottom:292.536276px;}
.ye4_c00364{bottom:293.080596px;}
.ye3_c00364{bottom:293.215038px;}
.ye2_c00364{bottom:308.800650px;}
.ye1_c00364{bottom:309.423660px;}
.ye0_c00364{bottom:309.741018px;}
.ydf_c00364{bottom:310.350198px;}
.yde_c00364{bottom:310.832928px;}
.ydd_c00364{bottom:311.419902px;}
.ydc_c00364{bottom:311.934042px;}
.ydb_c00364{bottom:312.132786px;}
.yda_c00364{bottom:312.755040px;}
.yd9_c00364{bottom:313.268856px;}
.yd8_c00364{bottom:314.370186px;}
.yd7_c00364{bottom:314.734896px;}
.yd6_c00364{bottom:315.360630px;}
.yd5_c00364{bottom:333.420162px;}
.yd4_c00364{bottom:333.743136px;}
.yd3_c00364{bottom:334.323798px;}
.yd2_c00364{bottom:334.631184px;}
.yd1_c00364{bottom:334.858470px;}
.yd0_c00364{bottom:335.312232px;}
.ycf_c00364{bottom:335.616144px;}
.yce_c00364{bottom:336.465150px;}
.ycd_c00364{bottom:337.029648px;}
.ycc_c00364{bottom:337.833654px;}
.ycb_c00364{bottom:338.250696px;}
.yca_c00364{bottom:338.581500px;}
.yc9_c00364{bottom:364.345500px;}
.yc8_c00364{bottom:393.053874px;}
.yc7_c00364{bottom:393.054577px;}
.yc3_c00364{bottom:393.054659px;}
.yc4_c00364{bottom:393.054705px;}
.yc6_c00364{bottom:393.054711px;}
.yc0_c00364{bottom:393.054742px;}
.yc5_c00364{bottom:393.054768px;}
.yc1_c00364{bottom:393.054939px;}
.yc2_c00364{bottom:393.055255px;}
.ybf_c00364{bottom:412.278659px;}
.ybe_c00364{bottom:412.712097px;}
.ybd_c00364{bottom:413.210760px;}
.ybc_c00364{bottom:413.388135px;}
.ybb_c00364{bottom:414.190052px;}
.yba_c00364{bottom:414.525117px;}
.yb9_c00364{bottom:414.945207px;}
.yb8_c00364{bottom:415.500696px;}
.yb7_c00364{bottom:415.755357px;}
.yb6_c00364{bottom:416.246166px;}
.yb5_c00364{bottom:416.751000px;}
.yb4_c00364{bottom:440.325030px;}
.yb3_c00364{bottom:441.057615px;}
.yb2_c00364{bottom:441.248355px;}
.yb1_c00364{bottom:441.542505px;}
.yb0_c00364{bottom:441.896400px;}
.yaf_c00364{bottom:442.085775px;}
.yae_c00364{bottom:442.597965px;}
.yad_c00364{bottom:442.948980px;}
.yac_c00364{bottom:443.222640px;}
.yab_c00364{bottom:443.611500px;}
.ya5_c00364{bottom:470.756922px;}
.ya4_c00364{bottom:470.757024px;}
.ya7_c00364{bottom:470.757132px;}
.ya6_c00364{bottom:470.757576px;}
.ya9_c00364{bottom:470.757744px;}
.yaa_c00364{bottom:470.757762px;}
.ya8_c00364{bottom:470.757828px;}
.ya3_c00364{bottom:490.231134px;}
.ya2_c00364{bottom:490.430592px;}
.ya1_c00364{bottom:490.863852px;}
.ya0_c00364{bottom:491.303142px;}
.y9f_c00364{bottom:491.601042px;}
.y9e_c00364{bottom:492.091956px;}
.y9d_c00364{bottom:492.457590px;}
.y9c_c00364{bottom:493.176978px;}
.y9b_c00364{bottom:493.630110px;}
.y9a_c00364{bottom:493.918452px;}
.y99_c00364{bottom:495.185436px;}
.y98_c00364{bottom:495.297000px;}
.y97_c00364{bottom:519.627444px;}
.y96_c00364{bottom:520.035738px;}
.y95_c00364{bottom:520.885446px;}
.y94_c00364{bottom:521.274174px;}
.y93_c00364{bottom:521.718648px;}
.y92_c00364{bottom:522.122460px;}
.y91_c00364{bottom:522.738798px;}
.y90_c00364{bottom:522.991500px;}
.y8f_c00364{bottom:546.780344px;}
.y8e_c00364{bottom:547.327636px;}
.y8d_c00364{bottom:547.799943px;}
.y8c_c00364{bottom:548.247353px;}
.y8b_c00364{bottom:548.653185px;}
.y8a_c00364{bottom:548.960818px;}
.y89_c00364{bottom:549.154892px;}
.y88_c00364{bottom:549.365958px;}
.y87_c00364{bottom:549.547872px;}
.y86_c00364{bottom:549.871987px;}
.y85_c00364{bottom:550.536288px;}
.y84_c00364{bottom:550.711585px;}
.y83_c00364{bottom:551.340397px;}
.y82_c00364{bottom:568.747650px;}
.y81_c00364{bottom:569.540756px;}
.y80_c00364{bottom:569.899251px;}
.y7f_c00364{bottom:570.226331px;}
.y7e_c00364{bottom:570.671352px;}
.y7d_c00364{bottom:571.182390px;}
.y7c_c00364{bottom:571.603157px;}
.y7b_c00364{bottom:571.895273px;}
.y7a_c00364{bottom:572.262975px;}
.y79_c00364{bottom:572.511878px;}
.y78_c00364{bottom:572.820774px;}
.y77_c00364{bottom:573.514500px;}
.y76_c00364{bottom:599.921968px;}
.y74_c00364{bottom:599.922220px;}
.y75_c00364{bottom:599.922309px;}
.y73_c00364{bottom:599.922811px;}
.y72_c00364{bottom:599.923512px;}
.y71_c00364{bottom:599.923983px;}
.y70_c00364{bottom:623.467573px;}
.y6f_c00364{bottom:626.110804px;}
.y6e_c00364{bottom:626.867818px;}
.y6d_c00364{bottom:628.053510px;}
.y6c_c00364{bottom:628.351819px;}
.y6b_c00364{bottom:628.877209px;}
.y6a_c00364{bottom:646.799889px;}
.y69_c00364{bottom:647.092398px;}
.y68_c00364{bottom:647.510526px;}
.y67_c00364{bottom:647.909733px;}
.y66_c00364{bottom:648.244843px;}
.y65_c00364{bottom:648.568036px;}
.y64_c00364{bottom:648.767757px;}
.y63_c00364{bottom:649.032880px;}
.y62_c00364{bottom:649.597010px;}
.y61_c00364{bottom:649.824369px;}
.y60_c00364{bottom:649.974759px;}
.y5f_c00364{bottom:650.307237px;}
.y5e_c00364{bottom:650.709681px;}
.y5d_c00364{bottom:651.277690px;}
.y5c_c00364{bottom:651.501676px;}
.y5b_c00364{bottom:670.087084px;}
.y5a_c00364{bottom:670.292364px;}
.y59_c00364{bottom:670.765653px;}
.y58_c00364{bottom:671.033662px;}
.y57_c00364{bottom:671.431171px;}
.y56_c00364{bottom:671.783896px;}
.y55_c00364{bottom:672.172980px;}
.y54_c00364{bottom:672.435391px;}
.y53_c00364{bottom:673.264156px;}
.y52_c00364{bottom:673.504605px;}
.y51_c00364{bottom:673.966756px;}
.y50_c00364{bottom:674.155437px;}
.y4f_c00364{bottom:674.454423px;}
.y4e_c00364{bottom:692.977590px;}
.y4d_c00364{bottom:693.140581px;}
.y4c_c00364{bottom:693.327582px;}
.y4b_c00364{bottom:693.763252px;}
.y4a_c00364{bottom:694.019139px;}
.y49_c00364{bottom:694.361347px;}
.y48_c00364{bottom:694.532764px;}
.y47_c00364{bottom:694.835928px;}
.y46_c00364{bottom:695.507824px;}
.y45_c00364{bottom:695.958844px;}
.y44_c00364{bottom:696.243441px;}
.y43_c00364{bottom:696.883039px;}
.y42_c00364{bottom:697.137951px;}
.y41_c00364{bottom:697.945300px;}
.y40_c00364{bottom:715.012269px;}
.y3f_c00364{bottom:715.325793px;}
.y3e_c00364{bottom:715.705957px;}
.y3d_c00364{bottom:716.208130px;}
.y3c_c00364{bottom:716.419020px;}
.y3b_c00364{bottom:716.744289px;}
.y3a_c00364{bottom:716.887638px;}
.y39_c00364{bottom:717.139221px;}
.y38_c00364{bottom:717.522684px;}
.y37_c00364{bottom:717.770833px;}
.y36_c00364{bottom:718.069044px;}
.y35_c00364{bottom:718.485144px;}
.y34_c00364{bottom:718.671958px;}
.y33_c00364{bottom:719.008423px;}
.y32_c00364{bottom:744.177100px;}
.y31_c00364{bottom:744.455190px;}
.y30_c00364{bottom:744.840393px;}
.y2f_c00364{bottom:745.384345px;}
.y2e_c00364{bottom:745.690008px;}
.y2d_c00364{bottom:745.999005px;}
.y2c_c00364{bottom:746.654770px;}
.y2b_c00364{bottom:747.009066px;}
.y2a_c00364{bottom:747.648705px;}
.y29_c00364{bottom:747.897935px;}
.y28_c00364{bottom:748.171500px;}
.y25_c00364{bottom:774.497655px;}
.y26_c00364{bottom:774.497965px;}
.y27_c00364{bottom:774.498445px;}
.y24_c00364{bottom:794.315537px;}
.y23_c00364{bottom:794.606586px;}
.y22_c00364{bottom:794.971534px;}
.y21_c00364{bottom:795.326623px;}
.y20_c00364{bottom:795.528916px;}
.y1f_c00364{bottom:795.678079px;}
.y1e_c00364{bottom:795.806956px;}
.y1d_c00364{bottom:796.269891px;}
.y1c_c00364{bottom:796.863708px;}
.y1b_c00364{bottom:797.341500px;}
.y1a_c00364{bottom:816.670500px;}
.y19_c00364{bottom:816.787500px;}
.y18_c00364{bottom:817.099500px;}
.y17_c00364{bottom:817.203000px;}
.y16_c00364{bottom:817.558500px;}
.y15_c00364{bottom:817.719000px;}
.y14_c00364{bottom:817.878000px;}
.y12_c00364{bottom:818.193000px;}
.y13_c00364{bottom:818.196000px;}
.y11_c00364{bottom:818.571000px;}
.y10_c00364{bottom:818.760000px;}
.yf_c00364{bottom:818.854500px;}
.ye_c00364{bottom:819.402000px;}
.yd_c00364{bottom:819.684000px;}
.yc_c00364{bottom:819.765000px;}
.yb_c00364{bottom:820.003500px;}
.ya_c00364{bottom:820.195500px;}
.y9_c00364{bottom:820.533000px;}
.y8_c00364{bottom:862.777500px;}
.y7_c00364{bottom:863.170500px;}
.y6_c00364{bottom:864.349500px;}
.y5_c00364{bottom:864.622500px;}
.y4_c00364{bottom:864.889500px;}
.y3_c00364{bottom:865.456500px;}
.y2_c00364{bottom:908.035500px;}
.y1_c00364{bottom:923.650500px;}
.h18_c00364{height:50.403629px;}
.h16_c00364{height:51.453704px;}
.h17_c00364{height:52.503780px;}
.h15_c00364{height:61.955235px;}
.h5_c00364{height:63.000000px;}
.hb_c00364{height:67.204065px;}
.h14_c00364{height:68.254914px;}
.h11_c00364{height:69.304193px;}
.he_c00364{height:69.304989px;}
.h19_c00364{height:70.350000px;}
.hc_c00364{height:70.354256px;}
.h9_c00364{height:70.355944px;}
.hd_c00364{height:71.405141px;}
.h13_c00364{height:72.450000px;}
.h7_c00364{height:72.451775px;}
.h12_c00364{height:72.454383px;}
.ha_c00364{height:72.456122px;}
.h6_c00364{height:73.501801px;}
.hf_c00364{height:73.505292px;}
.h8_c00364{height:73.506210px;}
.h10_c00364{height:75.603780px;}
.h2_c00364{height:91.350000px;}
.h4_c00364{height:137.550000px;}
.h3_c00364{height:153.300000px;}
.h1_c00364{height:1005.000000px;}
.h0_c00364{height:1005.150000px;}
.w0_c00364{width:702.540000px;}
.w1_c00364{width:702.750000px;}
.x0_c00364{left:0.000000px;}
.x82_c00364{left:38.606666px;}
.x8_c00364{left:46.440000px;}
.x83_c00364{left:53.726997px;}
.x1_c00364{left:63.990000px;}
.x9_c00364{left:72.360000px;}
.x97_c00364{left:75.036306px;}
.xb0_c00364{left:76.585086px;}
.x5b_c00364{left:83.523723px;}
.x8f_c00364{left:86.712696px;}
.x20_c00364{left:89.547000px;}
.x29_c00364{left:90.722158px;}
.x12_c00364{left:94.171500px;}
.x71_c00364{left:97.731000px;}
.xac_c00364{left:103.044948px;}
.x62_c00364{left:106.401000px;}
.x34_c00364{left:109.221573px;}
.xb5_c00364{left:110.970000px;}
.x50_c00364{left:113.282909px;}
.xa6_c00364{left:114.907500px;}
.xad_c00364{left:118.436826px;}
.x13_c00364{left:121.666500px;}
.x79_c00364{left:124.824000px;}
.x2c_c00364{left:126.213000px;}
.xb6_c00364{left:130.140000px;}
.x90_c00364{left:131.356116px;}
.x8a_c00364{left:132.988500px;}
.x49_c00364{left:140.000331px;}
.x5c_c00364{left:142.384463px;}
.x84_c00364{left:145.263569px;}
.x2d_c00364{left:147.256500px;}
.x2_c00364{left:150.660000px;}
.x2a_c00364{left:152.823703px;}
.x14_c00364{left:155.692500px;}
.x21_c00364{left:157.803000px;}
.x9c_c00364{left:161.076000px;}
.x77_c00364{left:162.272862px;}
.x7a_c00364{left:163.710000px;}
.x3e_c00364{left:164.829201px;}
.x15_c00364{left:167.251500px;}
.x51_c00364{left:170.016612px;}
.x2b_c00364{left:171.184606px;}
.x5e_c00364{left:172.808466px;}
.xb1_c00364{left:174.620256px;}
.xa0_c00364{left:177.805463px;}
.x3_c00364{left:186.570000px;}
.x3f_c00364{left:188.015306px;}
.x7b_c00364{left:191.076000px;}
.x63_c00364{left:197.548500px;}
.x5f_c00364{left:203.320614px;}
.x86_c00364{left:204.660000px;}
.xae_c00364{left:205.918932px;}
.x16_c00364{left:207.439500px;}
.x4a_c00364{left:210.203061px;}
.x69_c00364{left:211.791215px;}
.xc_c00364{left:213.448500px;}
.x2e_c00364{left:215.631000px;}
.x64_c00364{left:220.176000px;}
.xa1_c00364{left:223.908273px;}
.x5d_c00364{left:227.128871px;}
.x87_c00364{left:230.040000px;}
.x6e_c00364{left:231.735000px;}
.x8b_c00364{left:234.742500px;}
.x72_c00364{left:236.638500px;}
.x6a_c00364{left:238.801418px;}
.x22_c00364{left:242.634000px;}
.x9d_c00364{left:245.541000px;}
.x35_c00364{left:246.658710px;}
.x98_c00364{left:251.721306px;}
.x65_c00364{left:253.603500px;}
.xa2_c00364{left:254.966474px;}
.x60_c00364{left:256.515104px;}
.x52_c00364{left:258.544064px;}
.x85_c00364{left:266.500737px;}
.xb2_c00364{left:267.745872px;}
.x6f_c00364{left:268.774500px;}
.x7f_c00364{left:270.606000px;}
.x40_c00364{left:272.032490px;}
.x36_c00364{left:274.171633px;}
.xa7_c00364{left:276.093000px;}
.x7c_c00364{left:277.396500px;}
.x61_c00364{left:279.737523px;}
.x53_c00364{left:281.226441px;}
.x4_c00364{left:285.120000px;}
.x6b_c00364{left:287.669373px;}
.x78_c00364{left:292.151064px;}
.x2f_c00364{left:293.328000px;}
.xd_c00364{left:294.450000px;}
.x7d_c00364{left:296.334000px;}
.x17_c00364{left:298.996500px;}
.x70_c00364{left:301.168500px;}
.x23_c00364{left:308.767500px;}
.x41_c00364{left:313.073562px;}
.x30_c00364{left:317.097000px;}
.x4b_c00364{left:319.297812px;}
.xa8_c00364{left:321.150000px;}
.xa3_c00364{left:324.438660px;}
.x18_c00364{left:325.951500px;}
.x24_c00364{left:327.178500px;}
.x91_c00364{left:331.380810px;}
.xe_c00364{left:332.674500px;}
.x73_c00364{left:334.348500px;}
.xa9_c00364{left:335.790000px;}
.x54_c00364{left:337.661645px;}
.x5_c00364{left:340.200000px;}
.x88_c00364{left:341.280000px;}
.x37_c00364{left:344.717300px;}
.xa_c00364{left:346.410000px;}
.x25_c00364{left:348.487500px;}
.x8c_c00364{left:352.534500px;}
.xa4_c00364{left:355.165361px;}
.x4c_c00364{left:358.228833px;}
.x38_c00364{left:360.591118px;}
.x55_c00364{left:364.172178px;}
.x9e_c00364{left:366.025500px;}
.x92_c00364{left:368.099928px;}
.x99_c00364{left:369.763806px;}
.xf_c00364{left:371.673000px;}
.x42_c00364{left:374.105642px;}
.x6_c00364{left:375.840000px;}
.x26_c00364{left:377.386500px;}
.x19_c00364{left:379.977000px;}
.x31_c00364{left:382.452000px;}
.x56_c00364{left:384.151458px;}
.xa5_c00364{left:388.097003px;}
.x4d_c00364{left:393.555218px;}
.x89_c00364{left:394.740000px;}
.x39_c00364{left:396.806010px;}
.x43_c00364{left:401.695863px;}
.x66_c00364{left:405.325500px;}
.xb3_c00364{left:407.376546px;}
.x93_c00364{left:410.013420px;}
.x32_c00364{left:412.083000px;}
.x9f_c00364{left:413.496000px;}
.x8d_c00364{left:415.674000px;}
.x44_c00364{left:417.305273px;}
.x3a_c00364{left:420.298739px;}
.x6c_c00364{left:423.729872px;}
.x1a_c00364{left:424.899000px;}
.x27_c00364{left:428.113500px;}
.x74_c00364{left:430.552500px;}
.xb7_c00364{left:432.270000px;}
.x33_c00364{left:433.474500px;}
.x67_c00364{left:435.060000px;}
.x9a_c00364{left:439.182306px;}
.x94_c00364{left:444.490092px;}
.x1b_c00364{left:447.567000px;}
.x57_c00364{left:450.023532px;}
.x9b_c00364{left:451.825806px;}
.x7e_c00364{left:453.471000px;}
.xaf_c00364{left:457.309980px;}
.x4e_c00364{left:459.982292px;}
.x68_c00364{left:467.650500px;}
.x6d_c00364{left:469.392377px;}
.x1c_c00364{left:470.514000px;}
.x45_c00364{left:471.621677px;}
.x80_c00364{left:473.616000px;}
.x3b_c00364{left:476.122644px;}
.xaa_c00364{left:478.891500px;}
.x28_c00364{left:480.249000px;}
.x95_c00364{left:488.004048px;}
.x58_c00364{left:489.964092px;}
.xb4_c00364{left:497.824626px;}
.x75_c00364{left:503.265000px;}
.x4f_c00364{left:507.237125px;}
.x8e_c00364{left:508.618500px;}
.x46_c00364{left:511.251210px;}
.x81_c00364{left:513.019500px;}
.x3c_c00364{left:518.291328px;}
.x76_c00364{left:519.886500px;}
.x1d_c00364{left:521.296500px;}
.x47_c00364{left:528.290159px;}
.x59_c00364{left:531.821730px;}
.x1e_c00364{left:536.133000px;}
.x10_c00364{left:540.201000px;}
.x48_c00364{left:543.136049px;}
.x3d_c00364{left:553.141142px;}
.x96_c00364{left:555.241446px;}
.x5a_c00364{left:561.015861px;}
.xab_c00364{left:571.855500px;}
.x1f_c00364{left:580.638000px;}
.x11_c00364{left:596.436000px;}
.x7_c00364{left:598.860000px;}
.xb_c00364{left:638.280000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.fs16_c00364{font-size:44.803225pt;}
.fs14_c00364{font-size:45.736626pt;}
.fs15_c00364{font-size:46.670027pt;}
.fs13_c00364{font-size:55.071320pt;}
.fs3_c00364{font-size:56.000000pt;}
.fs9_c00364{font-size:59.736947pt;}
.fs12_c00364{font-size:60.671035pt;}
.fsf_c00364{font-size:61.603727pt;}
.fsc_c00364{font-size:61.604435pt;}
.fs17_c00364{font-size:62.533333pt;}
.fsa_c00364{font-size:62.537116pt;}
.fs7_c00364{font-size:62.538617pt;}
.fsb_c00364{font-size:63.471236pt;}
.fs11_c00364{font-size:64.400000pt;}
.fs5_c00364{font-size:64.401578pt;}
.fs10_c00364{font-size:64.403896pt;}
.fs8_c00364{font-size:64.405442pt;}
.fs4_c00364{font-size:65.334934pt;}
.fsd_c00364{font-size:65.338037pt;}
.fs6_c00364{font-size:65.338854pt;}
.fse_c00364{font-size:67.203360pt;}
.fs0_c00364{font-size:81.200000pt;}
.fs2_c00364{font-size:122.266667pt;}
.fs1_c00364{font-size:136.266667pt;}
.y0_c00364{bottom:0.000000pt;}
.y135_c00364{bottom:121.816000pt;}
.y134_c00364{bottom:134.754085pt;}
.y133_c00364{bottom:135.081600pt;}
.y132_c00364{bottom:135.293733pt;}
.y131_c00364{bottom:135.731749pt;}
.y130_c00364{bottom:135.966368pt;}
.y12f_c00364{bottom:136.397525pt;}
.y12e_c00364{bottom:136.671696pt;}
.y12d_c00364{bottom:136.820139pt;}
.y12c_c00364{bottom:137.331744pt;}
.y12b_c00364{bottom:137.495621pt;}
.y12a_c00364{bottom:137.878587pt;}
.y129_c00364{bottom:138.020949pt;}
.y128_c00364{bottom:138.242405pt;}
.y127_c00364{bottom:138.586523pt;}
.y126_c00364{bottom:138.818677pt;}
.y125_c00364{bottom:139.111611pt;}
.y124_c00364{bottom:139.201435pt;}
.y123_c00364{bottom:151.538805pt;}
.y122_c00364{bottom:151.817013pt;}
.y121_c00364{bottom:151.986795pt;}
.y120_c00364{bottom:152.522400pt;}
.y11f_c00364{bottom:152.654117pt;}
.y11e_c00364{bottom:152.759504pt;}
.y11d_c00364{bottom:153.071253pt;}
.y11c_c00364{bottom:153.213573pt;}
.y11b_c00364{bottom:153.562955pt;}
.y11a_c00364{bottom:153.901275pt;}
.y119_c00364{bottom:154.220235pt;}
.y118_c00364{bottom:154.392912pt;}
.y117_c00364{bottom:154.997355pt;}
.y116_c00364{bottom:155.133531pt;}
.y115_c00364{bottom:155.279861pt;}
.y114_c00364{bottom:165.953829pt;}
.y113_c00364{bottom:166.340613pt;}
.y112_c00364{bottom:166.945445pt;}
.y111_c00364{bottom:167.230821pt;}
.y110_c00364{bottom:167.639541pt;}
.y10f_c00364{bottom:167.835125pt;}
.y10e_c00364{bottom:168.267397pt;}
.y10d_c00364{bottom:168.471861pt;}
.y10c_c00364{bottom:168.628021pt;}
.y10b_c00364{bottom:169.108629pt;}
.y10a_c00364{bottom:169.319157pt;}
.y109_c00364{bottom:169.762341pt;}
.y108_c00364{bottom:170.303781pt;}
.y107_c00364{bottom:170.476565pt;}
.y106_c00364{bottom:170.827941pt;}
.y105_c00364{bottom:171.121333pt;}
.y104_c00364{bottom:211.432023pt;}
.y103_c00364{bottom:211.749873pt;}
.y102_c00364{bottom:212.282335pt;}
.y101_c00364{bottom:212.721555pt;}
.y100_c00364{bottom:213.131295pt;}
.yff_c00364{bottom:213.528764pt;}
.yfe_c00364{bottom:214.058105pt;}
.yfd_c00364{bottom:214.471676pt;}
.yfc_c00364{bottom:214.694380pt;}
.yfb_c00364{bottom:215.085767pt;}
.yfa_c00364{bottom:215.562300pt;}
.yf9_c00364{bottom:216.001381pt;}
.yf8_c00364{bottom:231.872423pt;}
.yf7_c00364{bottom:232.265595pt;}
.yf6_c00364{bottom:232.814143pt;}
.yf5_c00364{bottom:233.273199pt;}
.yf4_c00364{bottom:233.869188pt;}
.yf3_c00364{bottom:234.206408pt;}
.yf2_c00364{bottom:234.755528pt;}
.yf1_c00364{bottom:235.182448pt;}
.yf0_c00364{bottom:235.630064pt;}
.yef_c00364{bottom:235.921333pt;}
.yee_c00364{bottom:256.616501pt;}
.yed_c00364{bottom:256.751365pt;}
.yec_c00364{bottom:257.227333pt;}
.yeb_c00364{bottom:257.491829pt;}
.yea_c00364{bottom:257.742469pt;}
.ye9_c00364{bottom:258.404965pt;}
.ye8_c00364{bottom:258.750949pt;}
.ye7_c00364{bottom:259.248741pt;}
.ye6_c00364{bottom:259.588725pt;}
.ye5_c00364{bottom:260.032245pt;}
.ye4_c00364{bottom:260.516085pt;}
.ye3_c00364{bottom:260.635589pt;}
.ye2_c00364{bottom:274.489467pt;}
.ye1_c00364{bottom:275.043253pt;}
.ye0_c00364{bottom:275.325349pt;}
.ydf_c00364{bottom:275.866843pt;}
.yde_c00364{bottom:276.295936pt;}
.ydd_c00364{bottom:276.817691pt;}
.ydc_c00364{bottom:277.274704pt;}
.ydb_c00364{bottom:277.451365pt;}
.yda_c00364{bottom:278.004480pt;}
.yd9_c00364{bottom:278.461205pt;}
.yd8_c00364{bottom:279.440165pt;}
.yd7_c00364{bottom:279.764352pt;}
.yd6_c00364{bottom:280.320560pt;}
.yd5_c00364{bottom:296.373477pt;}
.yd4_c00364{bottom:296.660565pt;}
.yd3_c00364{bottom:297.176709pt;}
.yd2_c00364{bottom:297.449941pt;}
.yd1_c00364{bottom:297.651973pt;}
.yd0_c00364{bottom:298.055317pt;}
.ycf_c00364{bottom:298.325461pt;}
.yce_c00364{bottom:299.080133pt;}
.ycd_c00364{bottom:299.581909pt;}
.ycc_c00364{bottom:300.296581pt;}
.ycb_c00364{bottom:300.667285pt;}
.yca_c00364{bottom:300.961333pt;}
.yc9_c00364{bottom:323.862667pt;}
.yc8_c00364{bottom:349.381221pt;}
.yc7_c00364{bottom:349.381847pt;}
.yc3_c00364{bottom:349.381919pt;}
.yc4_c00364{bottom:349.381960pt;}
.yc6_c00364{bottom:349.381965pt;}
.yc0_c00364{bottom:349.381993pt;}
.yc5_c00364{bottom:349.382016pt;}
.yc1_c00364{bottom:349.382168pt;}
.yc2_c00364{bottom:349.382449pt;}
.ybf_c00364{bottom:366.469919pt;}
.ybe_c00364{bottom:366.855197pt;}
.ybd_c00364{bottom:367.298453pt;}
.ybc_c00364{bottom:367.456120pt;}
.ybb_c00364{bottom:368.168935pt;}
.yba_c00364{bottom:368.466771pt;}
.yb9_c00364{bottom:368.840184pt;}
.yb8_c00364{bottom:369.333952pt;}
.yb7_c00364{bottom:369.560317pt;}
.yb6_c00364{bottom:369.996592pt;}
.yb5_c00364{bottom:370.445333pt;}
.yb4_c00364{bottom:391.400027pt;}
.yb3_c00364{bottom:392.051213pt;}
.yb2_c00364{bottom:392.220760pt;}
.yb1_c00364{bottom:392.482227pt;}
.yb0_c00364{bottom:392.796800pt;}
.yaf_c00364{bottom:392.965133pt;}
.yae_c00364{bottom:393.420413pt;}
.yad_c00364{bottom:393.732427pt;}
.yac_c00364{bottom:393.975680pt;}
.yab_c00364{bottom:394.321333pt;}
.ya5_c00364{bottom:418.450597pt;}
.ya4_c00364{bottom:418.450688pt;}
.ya7_c00364{bottom:418.450784pt;}
.ya6_c00364{bottom:418.451179pt;}
.ya9_c00364{bottom:418.451328pt;}
.yaa_c00364{bottom:418.451344pt;}
.ya8_c00364{bottom:418.451403pt;}
.ya3_c00364{bottom:435.761008pt;}
.ya2_c00364{bottom:435.938304pt;}
.ya1_c00364{bottom:436.323424pt;}
.ya0_c00364{bottom:436.713904pt;}
.y9f_c00364{bottom:436.978704pt;}
.y9e_c00364{bottom:437.415072pt;}
.y9d_c00364{bottom:437.740080pt;}
.y9c_c00364{bottom:438.379536pt;}
.y9b_c00364{bottom:438.782320pt;}
.y9a_c00364{bottom:439.038624pt;}
.y99_c00364{bottom:440.164832pt;}
.y98_c00364{bottom:440.264000pt;}
.y97_c00364{bottom:461.891061pt;}
.y96_c00364{bottom:462.253989pt;}
.y95_c00364{bottom:463.009285pt;}
.y94_c00364{bottom:463.354821pt;}
.y93_c00364{bottom:463.749909pt;}
.y92_c00364{bottom:464.108853pt;}
.y91_c00364{bottom:464.656709pt;}
.y90_c00364{bottom:464.881333pt;}
.y8f_c00364{bottom:486.026972pt;}
.y8e_c00364{bottom:486.513455pt;}
.y8d_c00364{bottom:486.933283pt;}
.y8c_c00364{bottom:487.330980pt;}
.y8b_c00364{bottom:487.691720pt;}
.y8a_c00364{bottom:487.965172pt;}
.y89_c00364{bottom:488.137681pt;}
.y88_c00364{bottom:488.325296pt;}
.y87_c00364{bottom:488.486997pt;}
.y86_c00364{bottom:488.775100pt;}
.y85_c00364{bottom:489.365589pt;}
.y84_c00364{bottom:489.521409pt;}
.y83_c00364{bottom:490.080353pt;}
.y82_c00364{bottom:505.553467pt;}
.y81_c00364{bottom:506.258449pt;}
.y80_c00364{bottom:506.577112pt;}
.y7f_c00364{bottom:506.867849pt;}
.y7e_c00364{bottom:507.263424pt;}
.y7d_c00364{bottom:507.717680pt;}
.y7c_c00364{bottom:508.091695pt;}
.y7b_c00364{bottom:508.351353pt;}
.y7a_c00364{bottom:508.678200pt;}
.y79_c00364{bottom:508.899447pt;}
.y78_c00364{bottom:509.174021pt;}
.y77_c00364{bottom:509.790667pt;}
.y76_c00364{bottom:533.263972pt;}
.y74_c00364{bottom:533.264196pt;}
.y75_c00364{bottom:533.264275pt;}
.y73_c00364{bottom:533.264721pt;}
.y72_c00364{bottom:533.265344pt;}
.y71_c00364{bottom:533.265763pt;}
.y70_c00364{bottom:554.193399pt;}
.y6f_c00364{bottom:556.542937pt;}
.y6e_c00364{bottom:557.215839pt;}
.y6d_c00364{bottom:558.269787pt;}
.y6c_c00364{bottom:558.534951pt;}
.y6b_c00364{bottom:559.001964pt;}
.y6a_c00364{bottom:574.933235pt;}
.y69_c00364{bottom:575.193243pt;}
.y68_c00364{bottom:575.564912pt;}
.y67_c00364{bottom:575.919763pt;}
.y66_c00364{bottom:576.217639pt;}
.y65_c00364{bottom:576.504921pt;}
.y64_c00364{bottom:576.682451pt;}
.y63_c00364{bottom:576.918116pt;}
.y62_c00364{bottom:577.419564pt;}
.y61_c00364{bottom:577.621661pt;}
.y60_c00364{bottom:577.755341pt;}
.y5f_c00364{bottom:578.050877pt;}
.y5e_c00364{bottom:578.408605pt;}
.y5d_c00364{bottom:578.913503pt;}
.y5c_c00364{bottom:579.112601pt;}
.y5b_c00364{bottom:595.632964pt;}
.y5a_c00364{bottom:595.815435pt;}
.y59_c00364{bottom:596.236136pt;}
.y58_c00364{bottom:596.474367pt;}
.y57_c00364{bottom:596.827708pt;}
.y56_c00364{bottom:597.141241pt;}
.y55_c00364{bottom:597.487093pt;}
.y54_c00364{bottom:597.720348pt;}
.y53_c00364{bottom:598.457028pt;}
.y52_c00364{bottom:598.670760pt;}
.y51_c00364{bottom:599.081561pt;}
.y50_c00364{bottom:599.249277pt;}
.y4f_c00364{bottom:599.515043pt;}
.y4e_c00364{bottom:615.980080pt;}
.y4d_c00364{bottom:616.124961pt;}
.y4c_c00364{bottom:616.291184pt;}
.y4b_c00364{bottom:616.678447pt;}
.y4a_c00364{bottom:616.905901pt;}
.y49_c00364{bottom:617.210087pt;}
.y48_c00364{bottom:617.362457pt;}
.y47_c00364{bottom:617.631936pt;}
.y46_c00364{bottom:618.229177pt;}
.y45_c00364{bottom:618.630084pt;}
.y44_c00364{bottom:618.883059pt;}
.y43_c00364{bottom:619.451591pt;}
.y42_c00364{bottom:619.678179pt;}
.y41_c00364{bottom:620.395823pt;}
.y40_c00364{bottom:635.566461pt;}
.y3f_c00364{bottom:635.845149pt;}
.y3e_c00364{bottom:636.183073pt;}
.y3d_c00364{bottom:636.629449pt;}
.y3c_c00364{bottom:636.816907pt;}
.y3b_c00364{bottom:637.106035pt;}
.y3a_c00364{bottom:637.233456pt;}
.y39_c00364{bottom:637.457085pt;}
.y38_c00364{bottom:637.797941pt;}
.y37_c00364{bottom:638.018519pt;}
.y36_c00364{bottom:638.283595pt;}
.y35_c00364{bottom:638.653461pt;}
.y34_c00364{bottom:638.819519pt;}
.y33_c00364{bottom:639.118599pt;}
.y32_c00364{bottom:661.490756pt;}
.y31_c00364{bottom:661.737947pt;}
.y30_c00364{bottom:662.080349pt;}
.y2f_c00364{bottom:662.563863pt;}
.y2e_c00364{bottom:662.835563pt;}
.y2d_c00364{bottom:663.110227pt;}
.y2c_c00364{bottom:663.693129pt;}
.y2b_c00364{bottom:664.008059pt;}
.y2a_c00364{bottom:664.576627pt;}
.y29_c00364{bottom:664.798164pt;}
.y28_c00364{bottom:665.041333pt;}
.y25_c00364{bottom:688.442360pt;}
.y26_c00364{bottom:688.442636pt;}
.y27_c00364{bottom:688.443063pt;}
.y24_c00364{bottom:706.058255pt;}
.y23_c00364{bottom:706.316965pt;}
.y22_c00364{bottom:706.641364pt;}
.y21_c00364{bottom:706.956999pt;}
.y20_c00364{bottom:707.136815pt;}
.y1f_c00364{bottom:707.269404pt;}
.y1e_c00364{bottom:707.383961pt;}
.y1d_c00364{bottom:707.795459pt;}
.y1c_c00364{bottom:708.323296pt;}
.y1b_c00364{bottom:708.748000pt;}
.y1a_c00364{bottom:725.929333pt;}
.y19_c00364{bottom:726.033333pt;}
.y18_c00364{bottom:726.310667pt;}
.y17_c00364{bottom:726.402667pt;}
.y16_c00364{bottom:726.718667pt;}
.y15_c00364{bottom:726.861333pt;}
.y14_c00364{bottom:727.002667pt;}
.y12_c00364{bottom:727.282667pt;}
.y13_c00364{bottom:727.285333pt;}
.y11_c00364{bottom:727.618667pt;}
.y10_c00364{bottom:727.786667pt;}
.yf_c00364{bottom:727.870667pt;}
.ye_c00364{bottom:728.357333pt;}
.yd_c00364{bottom:728.608000pt;}
.yc_c00364{bottom:728.680000pt;}
.yb_c00364{bottom:728.892000pt;}
.ya_c00364{bottom:729.062667pt;}
.y9_c00364{bottom:729.362667pt;}
.y8_c00364{bottom:766.913333pt;}
.y7_c00364{bottom:767.262667pt;}
.y6_c00364{bottom:768.310667pt;}
.y5_c00364{bottom:768.553333pt;}
.y4_c00364{bottom:768.790667pt;}
.y3_c00364{bottom:769.294667pt;}
.y2_c00364{bottom:807.142667pt;}
.y1_c00364{bottom:821.022667pt;}
.h18_c00364{height:44.803225pt;}
.h16_c00364{height:45.736626pt;}
.h17_c00364{height:46.670027pt;}
.h15_c00364{height:55.071320pt;}
.h5_c00364{height:56.000000pt;}
.hb_c00364{height:59.736947pt;}
.h14_c00364{height:60.671035pt;}
.h11_c00364{height:61.603727pt;}
.he_c00364{height:61.604435pt;}
.h19_c00364{height:62.533333pt;}
.hc_c00364{height:62.537116pt;}
.h9_c00364{height:62.538617pt;}
.hd_c00364{height:63.471236pt;}
.h13_c00364{height:64.400000pt;}
.h7_c00364{height:64.401578pt;}
.h12_c00364{height:64.403896pt;}
.ha_c00364{height:64.405442pt;}
.h6_c00364{height:65.334934pt;}
.hf_c00364{height:65.338037pt;}
.h8_c00364{height:65.338854pt;}
.h10_c00364{height:67.203360pt;}
.h2_c00364{height:81.200000pt;}
.h4_c00364{height:122.266667pt;}
.h3_c00364{height:136.266667pt;}
.h1_c00364{height:893.333333pt;}
.h0_c00364{height:893.466667pt;}
.w0_c00364{width:624.480000pt;}
.w1_c00364{width:624.666667pt;}
.x0_c00364{left:0.000000pt;}
.x82_c00364{left:34.317036pt;}
.x8_c00364{left:41.280000pt;}
.x83_c00364{left:47.757331pt;}
.x1_c00364{left:56.880000pt;}
.x9_c00364{left:64.320000pt;}
.x97_c00364{left:66.698939pt;}
.xb0_c00364{left:68.075632pt;}
.x5b_c00364{left:74.243309pt;}
.x8f_c00364{left:77.077952pt;}
.x20_c00364{left:79.597333pt;}
.x29_c00364{left:80.641919pt;}
.x12_c00364{left:83.708000pt;}
.x71_c00364{left:86.872000pt;}
.xac_c00364{left:91.595509pt;}
.x62_c00364{left:94.578667pt;}
.x34_c00364{left:97.085843pt;}
.xb5_c00364{left:98.640000pt;}
.x50_c00364{left:100.695919pt;}
.xa6_c00364{left:102.140000pt;}
.xad_c00364{left:105.277179pt;}
.x13_c00364{left:108.148000pt;}
.x79_c00364{left:110.954667pt;}
.x2c_c00364{left:112.189333pt;}
.xb6_c00364{left:115.680000pt;}
.x90_c00364{left:116.760992pt;}
.x8a_c00364{left:118.212000pt;}
.x49_c00364{left:124.444739pt;}
.x5c_c00364{left:126.563967pt;}
.x84_c00364{left:129.123172pt;}
.x2d_c00364{left:130.894667pt;}
.x2_c00364{left:133.920000pt;}
.x2a_c00364{left:135.843292pt;}
.x14_c00364{left:138.393333pt;}
.x21_c00364{left:140.269333pt;}
.x9c_c00364{left:143.178667pt;}
.x77_c00364{left:144.242544pt;}
.x7a_c00364{left:145.520000pt;}
.x3e_c00364{left:146.514845pt;}
.x15_c00364{left:148.668000pt;}
.x51_c00364{left:151.125877pt;}
.x2b_c00364{left:152.164095pt;}
.x5e_c00364{left:153.607525pt;}
.xb1_c00364{left:155.218005pt;}
.xa0_c00364{left:158.049300pt;}
.x3_c00364{left:165.840000pt;}
.x3f_c00364{left:167.124716pt;}
.x7b_c00364{left:169.845333pt;}
.x63_c00364{left:175.598667pt;}
.x5f_c00364{left:180.729435pt;}
.x86_c00364{left:181.920000pt;}
.xae_c00364{left:183.039051pt;}
.x16_c00364{left:184.390667pt;}
.x4a_c00364{left:186.847165pt;}
.x69_c00364{left:188.258857pt;}
.xc_c00364{left:189.732000pt;}
.x2e_c00364{left:191.672000pt;}
.x64_c00364{left:195.712000pt;}
.xa1_c00364{left:199.029576pt;}
.x5d_c00364{left:201.892329pt;}
.x87_c00364{left:204.480000pt;}
.x6e_c00364{left:205.986667pt;}
.x8b_c00364{left:208.660000pt;}
.x72_c00364{left:210.345333pt;}
.x6a_c00364{left:212.267927pt;}
.x22_c00364{left:215.674667pt;}
.x9d_c00364{left:218.258667pt;}
.x35_c00364{left:219.252187pt;}
.x98_c00364{left:223.752272pt;}
.x65_c00364{left:225.425333pt;}
.xa2_c00364{left:226.636865pt;}
.x60_c00364{left:228.013425pt;}
.x52_c00364{left:229.816945pt;}
.x85_c00364{left:236.889544pt;}
.xb2_c00364{left:237.996331pt;}
.x6f_c00364{left:238.910667pt;}
.x7f_c00364{left:240.538667pt;}
.x40_c00364{left:241.806657pt;}
.x36_c00364{left:243.708119pt;}
.xa7_c00364{left:245.416000pt;}
.x7c_c00364{left:246.574667pt;}
.x61_c00364{left:248.655576pt;}
.x53_c00364{left:249.979059pt;}
.x4_c00364{left:253.440000pt;}
.x6b_c00364{left:255.706109pt;}
.x78_c00364{left:259.689835pt;}
.x2f_c00364{left:260.736000pt;}
.xd_c00364{left:261.733333pt;}
.x7d_c00364{left:263.408000pt;}
.x17_c00364{left:265.774667pt;}
.x70_c00364{left:267.705333pt;}
.x23_c00364{left:274.460000pt;}
.x41_c00364{left:278.287611pt;}
.x30_c00364{left:281.864000pt;}
.x4b_c00364{left:283.820277pt;}
.xa8_c00364{left:285.466667pt;}
.xa3_c00364{left:288.389920pt;}
.x18_c00364{left:289.734667pt;}
.x24_c00364{left:290.825333pt;}
.x91_c00364{left:294.560720pt;}
.xe_c00364{left:295.710667pt;}
.x73_c00364{left:297.198667pt;}
.xa9_c00364{left:298.480000pt;}
.x54_c00364{left:300.143684pt;}
.x5_c00364{left:302.400000pt;}
.x88_c00364{left:303.360000pt;}
.x37_c00364{left:306.415377pt;}
.xa_c00364{left:307.920000pt;}
.x25_c00364{left:309.766667pt;}
.x8c_c00364{left:313.364000pt;}
.xa4_c00364{left:315.702543pt;}
.x4c_c00364{left:318.425629pt;}
.x38_c00364{left:320.525439pt;}
.x55_c00364{left:323.708603pt;}
.x9e_c00364{left:325.356000pt;}
.x92_c00364{left:327.199936pt;}
.x99_c00364{left:328.678939pt;}
.xf_c00364{left:330.376000pt;}
.x42_c00364{left:332.538348pt;}
.x6_c00364{left:334.080000pt;}
.x26_c00364{left:335.454667pt;}
.x19_c00364{left:337.757333pt;}
.x31_c00364{left:339.957333pt;}
.x56_c00364{left:341.467963pt;}
.xa5_c00364{left:344.975113pt;}
.x4d_c00364{left:349.826860pt;}
.x89_c00364{left:350.880000pt;}
.x39_c00364{left:352.716453pt;}
.x43_c00364{left:357.062989pt;}
.x66_c00364{left:360.289333pt;}
.xb3_c00364{left:362.112485pt;}
.x93_c00364{left:364.456373pt;}
.x32_c00364{left:366.296000pt;}
.x9f_c00364{left:367.552000pt;}
.x8d_c00364{left:369.488000pt;}
.x44_c00364{left:370.938020pt;}
.x3a_c00364{left:373.598879pt;}
.x6c_c00364{left:376.648775pt;}
.x1a_c00364{left:377.688000pt;}
.x27_c00364{left:380.545333pt;}
.x74_c00364{left:382.713333pt;}
.xb7_c00364{left:384.240000pt;}
.x33_c00364{left:385.310667pt;}
.x67_c00364{left:386.720000pt;}
.x9a_c00364{left:390.384272pt;}
.x94_c00364{left:395.102304pt;}
.x1b_c00364{left:397.837333pt;}
.x57_c00364{left:400.020917pt;}
.x9b_c00364{left:401.622939pt;}
.x7e_c00364{left:403.085333pt;}
.xaf_c00364{left:406.497760pt;}
.x4e_c00364{left:408.873148pt;}
.x68_c00364{left:415.689333pt;}
.x6d_c00364{left:417.237668pt;}
.x1c_c00364{left:418.234667pt;}
.x45_c00364{left:419.219268pt;}
.x80_c00364{left:420.992000pt;}
.x3b_c00364{left:423.220128pt;}
.xaa_c00364{left:425.681333pt;}
.x28_c00364{left:426.888000pt;}
.x95_c00364{left:433.781376pt;}
.x58_c00364{left:435.523637pt;}
.xb4_c00364{left:442.510779pt;}
.x75_c00364{left:447.346667pt;}
.x4f_c00364{left:450.877444pt;}
.x8e_c00364{left:452.105333pt;}
.x46_c00364{left:454.445520pt;}
.x81_c00364{left:456.017333pt;}
.x3c_c00364{left:460.703403pt;}
.x76_c00364{left:462.121333pt;}
.x1d_c00364{left:463.374667pt;}
.x47_c00364{left:469.591252pt;}
.x59_c00364{left:472.730427pt;}
.x1e_c00364{left:476.562667pt;}
.x10_c00364{left:480.178667pt;}
.x48_c00364{left:482.787599pt;}
.x3d_c00364{left:491.681015pt;}
.x96_c00364{left:493.547952pt;}
.x5a_c00364{left:498.680765pt;}
.xab_c00364{left:508.316000pt;}
.x1f_c00364{left:516.122667pt;}
.x11_c00364{left:530.165333pt;}
.x7_c00364{left:532.320000pt;}
.xb_c00364{left:567.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_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_4ab86c84425994a9e06b01c2.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;}
.m5e_c00365{transform:matrix(0.004780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004780,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{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);}
.maa_c00365{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);}
.m65_c00365{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.013720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013720,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{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);}
.me6_c00365{transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014520,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{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);}
.m60_c00365{transform:matrix(0.016975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016975,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{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);}
.mde_c00365{transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037880,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);}
.mda_c00365{transform:matrix(0.051510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051510,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.055570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055570,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.113435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113435,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.118040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118040,0.000000,0.000000,0.250000,0,0);}
.ma4_c00365{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.133290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133290,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.141145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141145,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00365{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{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);}
.m20_c00365{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);}
.m1f_c00365{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);}
.m85_c00365{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.mdc_c00365{transform:matrix(0.148365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148365,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.148473,-0.002821,0.004749,0.249955,0,0);-ms-transform:matrix(0.148473,-0.002821,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148473,-0.002821,0.004749,0.249955,0,0);}
.m16_c00365{transform:matrix(0.150040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150040,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.151140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151140,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{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);}
.m1c_c00365{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);}
.m50_c00365{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{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);}
.mca_c00365{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);}
.m6c_c00365{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);}
.m9e_c00365{transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157085,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.157530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157530,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{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);}
.m1e_c00365{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);}
.m6b_c00365{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);}
.ma9_c00365{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);}
.m62_c00365{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);}
.m83_c00365{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);}
.m97_c00365{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{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);}
.m75_c00365{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);}
.ma7_c00365{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.mce_c00365{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);}
.m8c_c00365{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);}
.m8f_c00365{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);}
.m59_c00365{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);}
.m70_c00365{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.mb4_c00365{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);}
.ma2_c00365{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);}
.m17_c00365{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);}
.mc_c00365{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);}
.m77_c00365{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);}
.m33_c00365{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);}
.mad_c00365{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);}
.mb_c00365{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);}
.md1_c00365{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);}
.m19_c00365{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);}
.m31_c00365{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);}
.m5a_c00365{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);}
.m7f_c00365{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);}
.m88_c00365{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);}
.m2d_c00365{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);}
.m91_c00365{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{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);}
.mb1_c00365{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);}
.ma_c00365{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);}
.m72_c00365{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);}
.m89_c00365{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);}
.mf4_c00365{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);}
.mae_c00365{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);}
.m2b_c00365{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.mb7_c00365{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);}
.m87_c00365{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);}
.m52_c00365{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);}
.mb6_c00365{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);}
.mb5_c00365{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);}
.mdb_c00365{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);}
.mb0_c00365{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);}
.m15_c00365{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{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);}
.ma6_c00365{transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m9b_c00365{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);}
.m22_c00365{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);}
.m4f_c00365{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);}
.mc0_c00365{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);}
.m82_c00365{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);}
.m36_c00365{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);}
.m7e_c00365{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);}
.mc5_c00365{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);}
.m79_c00365{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);}
.mea_c00365{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{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);}
.ma8_c00365{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);}
.mac_c00365{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);}
.m6a_c00365{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);}
.m8e_c00365{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);}
.mc7_c00365{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);}
.mf2_c00365{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);}
.meb_c00365{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);}
.mef_c00365{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);}
.m2f_c00365{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);}
.m12_c00365{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);}
.m41_c00365{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);}
.me_c00365{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);}
.m71_c00365{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);}
.m49_c00365{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);}
.m7d_c00365{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);}
.m48_c00365{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);}
.m8a_c00365{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);}
.m5f_c00365{transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{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_c00365{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{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);}
.me8_c00365{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);}
.m74_c00365{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);}
.m44_c00365{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);}
.m7a_c00365{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);}
.m11_c00365{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);}
.mb2_c00365{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);}
.m6d_c00365{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);}
.m4b_c00365{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);}
.md0_c00365{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);}
.ma1_c00365{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);}
.mc1_c00365{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);}
.m96_c00365{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);}
.m2e_c00365{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);}
.m67_c00365{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);}
.m29_c00365{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);}
.me2_c00365{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);}
.m7c_c00365{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);}
.m84_c00365{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);}
.m6e_c00365{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);}
.m27_c00365{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);}
.m2c_c00365{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);}
.mab_c00365{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);}
.mf3_c00365{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);}
.mcc_c00365{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);}
.me4_c00365{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);}
.maf_c00365{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);}
.m54_c00365{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);}
.mf1_c00365{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);}
.m9f_c00365{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);}
.m51_c00365{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);}
.m99_c00365{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);}
.m14_c00365{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);}
.ma5_c00365{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);}
.m18_c00365{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);}
.m9c_c00365{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);}
.m7_c00365{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);}
.m58_c00365{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);}
.m9d_c00365{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);}
.mcb_c00365{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);}
.mbe_c00365{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);}
.m21_c00365{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);}
.med_c00365{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);}
.mc4_c00365{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);}
.m4d_c00365{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.mcf_c00365{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);}
.m37_c00365{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);}
.m32_c00365{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);}
.mb3_c00365{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);}
.m26_c00365{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);}
.m8d_c00365{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);}
.m42_c00365{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);}
.m6_c00365{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);}
.m68_c00365{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);}
.m98_c00365{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);}
.m66_c00365{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);}
.m28_c00365{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);}
.m76_c00365{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);}
.m53_c00365{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);}
.md7_c00365{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);}
.m24_c00365{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);}
.m4a_c00365{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);}
.m78_c00365{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);}
.m45_c00365{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);}
.m56_c00365{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);}
.md8_c00365{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);}
.m8_c00365{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);}
.mec_c00365{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);}
.ma0_c00365{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);}
.m10_c00365{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);}
.mee_c00365{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);}
.m30_c00365{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);}
.me5_c00365{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);}
.md6_c00365{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);}
.m46_c00365{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);}
.md_c00365{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);}
.m69_c00365{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_c00365{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);}
.mc8_c00365{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);}
.mbc_c00365{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);}
.m43_c00365{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);}
.m6f_c00365{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);}
.m5b_c00365{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);}
.me3_c00365{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);}
.me1_c00365{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);}
.m92_c00365{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);}
.md4_c00365{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);}
.mf_c00365{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);}
.m34_c00365{transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);}
.md3_c00365{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);}
.mc9_c00365{transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);}
.mba_c00365{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);}
.mc2_c00365{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);}
.md2_c00365{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);}
.m8b_c00365{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.md5_c00365{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);}
.m4c_c00365{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);}
.me0_c00365{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);}
.mcd_c00365{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{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);}
.m47_c00365{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.mc6_c00365{transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247285,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.mdd_c00365{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.me7_c00365{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_c00365{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.md9_c00365{transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);}
.mb9_c00365{transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.mb8_c00365{transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268230,0.000000,0.000000,0.250000,0,0);}
.mbf_c00365{transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00365{transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);}
.me9_c00365{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);}
.m0_c00365{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);}
.mf0_c00365{transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368220,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.377295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377295,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.387215,-0.007357,0.004749,0.249955,0,0);-ms-transform:matrix(0.387215,-0.007357,0.004749,0.249955,0,0);-webkit-transform:matrix(0.387215,-0.007357,0.004749,0.249955,0,0);}
.m3a_c00365{transform:matrix(0.447830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447830,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.488310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488310,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.564155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564155,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;}
._0_c00365{width:5.635979px;}
.fc0_c00365{color:transparent;}
.fs10_c00365{font-size:49.350000px;}
.fs12_c00365{font-size:50.400000px;}
.fs11_c00365{font-size:52.500000px;}
.fs14_c00365{font-size:55.650000px;}
.fs13_c00365{font-size:58.800000px;}
.fsb_c00365{font-size:65.100000px;}
.fs3_c00365{font-size:68.250000px;}
.fse_c00365{font-size:70.350000px;}
.fs8_c00365{font-size:71.400000px;}
.fs7_c00365{font-size:72.450000px;}
.fs4_c00365{font-size:73.500000px;}
.fs6_c00365{font-size:74.550000px;}
.fs5_c00365{font-size:75.600000px;}
.fsd_c00365{font-size:76.650000px;}
.fs9_c00365{font-size:77.700000px;}
.fsf_c00365{font-size:81.900000px;}
.fsa_c00365{font-size:86.100000px;}
.fsc_c00365{font-size:101.850000px;}
.fs1_c00365{font-size:112.350000px;}
.fs2_c00365{font-size:128.123120px;}
.fs0_c00365{font-size:158.550000px;}
.y0_c00365{bottom:0.000000px;}
.y21_c00365{bottom:142.765500px;}
.y20_c00365{bottom:158.362500px;}
.y1f_c00365{bottom:177.420000px;}
.y1e_c00365{bottom:194.226000px;}
.y1d_c00365{bottom:213.244500px;}
.y1c_c00365{bottom:274.977000px;}
.y1b_c00365{bottom:303.558000px;}
.y1a_c00365{bottom:331.018500px;}
.y19_c00365{bottom:350.242500px;}
.y18_c00365{bottom:372.718500px;}
.y17_c00365{bottom:399.171000px;}
.y16_c00365{bottom:418.294500px;}
.y15_c00365{bottom:441.066000px;}
.y14_c00365{bottom:464.226000px;}
.y13_c00365{bottom:486.402000px;}
.y12_c00365{bottom:514.171500px;}
.y11_c00365{bottom:542.431500px;}
.y10_c00365{bottom:560.775000px;}
.yf_c00365{bottom:564.781500px;}
.ye_c00365{bottom:588.600000px;}
.yd_c00365{bottom:615.346500px;}
.yc_c00365{bottom:653.641500px;}
.yb_c00365{bottom:679.537500px;}
.ya_c00365{bottom:702.502500px;}
.y9_c00365{bottom:731.374500px;}
.y8_c00365{bottom:756.810000px;}
.y7_c00365{bottom:775.888500px;}
.y6_c00365{bottom:802.828500px;}
.y5_c00365{bottom:827.208000px;}
.y3_c00365{bottom:867.516000px;}
.y4_c00365{bottom:869.654953px;}
.y2_c00365{bottom:898.156500px;}
.y1_c00365{bottom:910.959000px;}
.h12_c00365{height:49.350000px;}
.h14_c00365{height:50.400000px;}
.h13_c00365{height:52.500000px;}
.h16_c00365{height:55.650000px;}
.h15_c00365{height:58.800000px;}
.hd_c00365{height:65.100000px;}
.h5_c00365{height:68.250000px;}
.h10_c00365{height:70.350000px;}
.ha_c00365{height:71.400000px;}
.h9_c00365{height:72.450000px;}
.h6_c00365{height:73.500000px;}
.h8_c00365{height:74.550000px;}
.h7_c00365{height:75.600000px;}
.hf_c00365{height:76.650000px;}
.hb_c00365{height:77.700000px;}
.h11_c00365{height:81.900000px;}
.hc_c00365{height:86.100000px;}
.he_c00365{height:101.850000px;}
.h3_c00365{height:112.350000px;}
.h4_c00365{height:128.123120px;}
.h2_c00365{height:158.550000px;}
.h0_c00365{height:1008.450000px;}
.h1_c00365{height:1008.750000px;}
.w0_c00365{width:696.000000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:102.600000px;}
.x2_c00365{left:105.300000px;}
.x92_c00365{left:153.360000px;}
.x13_c00365{left:154.710000px;}
.x33_c00365{left:158.220000px;}
.x3_c00365{left:160.188000px;}
.x8f_c00365{left:162.000000px;}
.x56_c00365{left:163.890000px;}
.x5_c00365{left:168.210000px;}
.x22_c00365{left:169.290000px;}
.x7b_c00365{left:174.690000px;}
.x6_c00365{left:176.310000px;}
.x1d_c00365{left:177.660000px;}
.x48_c00365{left:183.330000px;}
.x23_c00365{left:186.840000px;}
.x5d_c00365{left:191.160000px;}
.x7c_c00365{left:193.320000px;}
.x52_c00365{left:194.400000px;}
.x24_c00365{left:195.750000px;}
.x1e_c00365{left:197.100000px;}
.x14_c00365{left:201.960000px;}
.x64_c00365{left:205.470000px;}
.x2a_c00365{left:207.090000px;}
.x34_c00365{left:208.710000px;}
.x6e_c00365{left:211.680000px;}
.x7d_c00365{left:213.570000px;}
.x38_c00365{left:216.000000px;}
.x7_c00365{left:218.700000px;}
.x40_c00365{left:221.940000px;}
.x15_c00365{left:224.370000px;}
.x65_c00365{left:225.450000px;}
.x6b_c00365{left:227.610000px;}
.x1f_c00365{left:238.680000px;}
.x25_c00365{left:244.350000px;}
.x53_c00365{left:245.430000px;}
.x2b_c00365{left:248.130000px;}
.x8_c00365{left:250.020000px;}
.x73_c00365{left:258.930000px;}
.x16_c00365{left:260.010000px;}
.x90_c00365{left:262.710000px;}
.x4e_c00365{left:268.920000px;}
.x2c_c00365{left:270.540000px;}
.x4_c00365{left:272.764500px;}
.x39_c00365{left:277.830000px;}
.x20_c00365{left:279.990000px;}
.x3b_c00365{left:281.070000px;}
.x35_c00365{left:284.850000px;}
.x74_c00365{left:289.980000px;}
.x41_c00365{left:291.600000px;}
.x17_c00365{left:294.300000px;}
.x5e_c00365{left:298.890000px;}
.x9_c00365{left:300.240000px;}
.x91_c00365{left:302.670000px;}
.x3c_c00365{left:304.560000px;}
.x57_c00365{left:309.690000px;}
.x54_c00365{left:311.580000px;}
.x84_c00365{left:313.200000px;}
.x4f_c00365{left:319.680000px;}
.x26_c00365{left:323.460000px;}
.xa_c00365{left:326.700000px;}
.x5f_c00365{left:327.780000px;}
.x49_c00365{left:329.130000px;}
.x18_c00365{left:330.210000px;}
.x6c_c00365{left:333.450000px;}
.x85_c00365{left:334.800000px;}
.x8a_c00365{left:339.120000px;}
.x66_c00365{left:342.360000px;}
.x58_c00365{left:346.140000px;}
.x19_c00365{left:351.810000px;}
.x7e_c00365{left:354.510000px;}
.x3d_c00365{left:358.020000px;}
.x75_c00365{left:361.800000px;}
.x93_c00365{left:364.770000px;}
.x2d_c00365{left:369.900000px;}
.x79_c00365{left:371.520000px;}
.xb_c00365{left:372.870000px;}
.x8b_c00365{left:376.110000px;}
.x1a_c00365{left:380.160000px;}
.x42_c00365{left:384.480000px;}
.x94_c00365{left:393.660000px;}
.x67_c00365{left:399.330000px;}
.x60_c00365{left:401.220000px;}
.x76_c00365{left:404.190000px;}
.x70_c00365{left:405.540000px;}
.x55_c00365{left:406.890000px;}
.x7f_c00365{left:411.480000px;}
.x8c_c00365{left:412.560000px;}
.x27_c00365{left:416.070000px;}
.xc_c00365{left:419.310000px;}
.x21_c00365{left:423.090000px;}
.x86_c00365{left:424.980000px;}
.x36_c00365{left:426.060000px;}
.x7a_c00365{left:430.110000px;}
.x4a_c00365{left:434.430000px;}
.x8d_c00365{left:439.560000px;}
.x80_c00365{left:441.720000px;}
.x43_c00365{left:443.340000px;}
.x61_c00365{left:447.120000px;}
.x2e_c00365{left:448.200000px;}
.xd_c00365{left:453.330000px;}
.x81_c00365{left:454.410000px;}
.x3e_c00365{left:459.270000px;}
.x68_c00365{left:460.620000px;}
.x4b_c00365{left:461.970000px;}
.x6f_c00365{left:465.210000px;}
.x87_c00365{left:469.530000px;}
.x44_c00365{left:470.610000px;}
.x1b_c00365{left:474.390000px;}
.x95_c00365{left:480.600000px;}
.x69_c00365{left:483.840000px;}
.x3f_c00365{left:486.270000px;}
.x2f_c00365{left:490.860000px;}
.x28_c00365{left:494.640000px;}
.x72_c00365{left:500.580000px;}
.x82_c00365{left:501.660000px;}
.x4c_c00365{left:503.280000px;}
.xe_c00365{left:504.900000px;}
.x45_c00365{left:512.730000px;}
.x30_c00365{left:517.860000px;}
.x88_c00365{left:519.210000px;}
.x1c_c00365{left:520.290000px;}
.x59_c00365{left:523.800000px;}
.x29_c00365{left:527.310000px;}
.xf_c00365{left:529.200000px;}
.x77_c00365{left:541.080000px;}
.x5a_c00365{left:546.210000px;}
.x96_c00365{left:548.370000px;}
.x89_c00365{left:549.720000px;}
.x83_c00365{left:552.690000px;}
.x50_c00365{left:554.850000px;}
.x62_c00365{left:557.010000px;}
.x46_c00365{left:559.440000px;}
.x10_c00365{left:562.950000px;}
.x31_c00365{left:567.000000px;}
.x6d_c00365{left:568.080000px;}
.x78_c00365{left:572.400000px;}
.x4d_c00365{left:576.180000px;}
.x6a_c00365{left:581.310000px;}
.x5b_c00365{left:588.870000px;}
.x11_c00365{left:591.300000px;}
.x32_c00365{left:596.700000px;}
.x47_c00365{left:601.560000px;}
.x5c_c00365{left:602.910000px;}
.x63_c00365{left:603.990000px;}
.x12_c00365{left:609.390000px;}
.x51_c00365{left:615.600000px;}
.x71_c00365{left:625.590000px;}
.x3a_c00365{left:633.690000px;}
.x37_c00365{left:643.950000px;}
.x8e_c00365{left:670.680000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._0_c00365{width:5.009759pt;}
.fs10_c00365{font-size:43.866667pt;}
.fs12_c00365{font-size:44.800000pt;}
.fs11_c00365{font-size:46.666667pt;}
.fs14_c00365{font-size:49.466667pt;}
.fs13_c00365{font-size:52.266667pt;}
.fsb_c00365{font-size:57.866667pt;}
.fs3_c00365{font-size:60.666667pt;}
.fse_c00365{font-size:62.533333pt;}
.fs8_c00365{font-size:63.466667pt;}
.fs7_c00365{font-size:64.400000pt;}
.fs4_c00365{font-size:65.333333pt;}
.fs6_c00365{font-size:66.266667pt;}
.fs5_c00365{font-size:67.200000pt;}
.fsd_c00365{font-size:68.133333pt;}
.fs9_c00365{font-size:69.066667pt;}
.fsf_c00365{font-size:72.800000pt;}
.fsa_c00365{font-size:76.533333pt;}
.fsc_c00365{font-size:90.533333pt;}
.fs1_c00365{font-size:99.866667pt;}
.fs2_c00365{font-size:113.887218pt;}
.fs0_c00365{font-size:140.933333pt;}
.y0_c00365{bottom:0.000000pt;}
.y21_c00365{bottom:126.902667pt;}
.y20_c00365{bottom:140.766667pt;}
.y1f_c00365{bottom:157.706667pt;}
.y1e_c00365{bottom:172.645333pt;}
.y1d_c00365{bottom:189.550667pt;}
.y1c_c00365{bottom:244.424000pt;}
.y1b_c00365{bottom:269.829333pt;}
.y1a_c00365{bottom:294.238667pt;}
.y19_c00365{bottom:311.326667pt;}
.y18_c00365{bottom:331.305333pt;}
.y17_c00365{bottom:354.818667pt;}
.y16_c00365{bottom:371.817333pt;}
.y15_c00365{bottom:392.058667pt;}
.y14_c00365{bottom:412.645333pt;}
.y13_c00365{bottom:432.357333pt;}
.y12_c00365{bottom:457.041333pt;}
.y11_c00365{bottom:482.161333pt;}
.y10_c00365{bottom:498.466667pt;}
.yf_c00365{bottom:502.028000pt;}
.ye_c00365{bottom:523.200000pt;}
.yd_c00365{bottom:546.974667pt;}
.yc_c00365{bottom:581.014667pt;}
.yb_c00365{bottom:604.033333pt;}
.ya_c00365{bottom:624.446667pt;}
.y9_c00365{bottom:650.110667pt;}
.y8_c00365{bottom:672.720000pt;}
.y7_c00365{bottom:689.678667pt;}
.y6_c00365{bottom:713.625333pt;}
.y5_c00365{bottom:735.296000pt;}
.y3_c00365{bottom:771.125333pt;}
.y4_c00365{bottom:773.026625pt;}
.y2_c00365{bottom:798.361333pt;}
.y1_c00365{bottom:809.741333pt;}
.h12_c00365{height:43.866667pt;}
.h14_c00365{height:44.800000pt;}
.h13_c00365{height:46.666667pt;}
.h16_c00365{height:49.466667pt;}
.h15_c00365{height:52.266667pt;}
.hd_c00365{height:57.866667pt;}
.h5_c00365{height:60.666667pt;}
.h10_c00365{height:62.533333pt;}
.ha_c00365{height:63.466667pt;}
.h9_c00365{height:64.400000pt;}
.h6_c00365{height:65.333333pt;}
.h8_c00365{height:66.266667pt;}
.h7_c00365{height:67.200000pt;}
.hf_c00365{height:68.133333pt;}
.hb_c00365{height:69.066667pt;}
.h11_c00365{height:72.800000pt;}
.hc_c00365{height:76.533333pt;}
.he_c00365{height:90.533333pt;}
.h3_c00365{height:99.866667pt;}
.h4_c00365{height:113.887218pt;}
.h2_c00365{height:140.933333pt;}
.h0_c00365{height:896.400000pt;}
.h1_c00365{height:896.666667pt;}
.w0_c00365{width:618.666667pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:91.200000pt;}
.x2_c00365{left:93.600000pt;}
.x92_c00365{left:136.320000pt;}
.x13_c00365{left:137.520000pt;}
.x33_c00365{left:140.640000pt;}
.x3_c00365{left:142.389333pt;}
.x8f_c00365{left:144.000000pt;}
.x56_c00365{left:145.680000pt;}
.x5_c00365{left:149.520000pt;}
.x22_c00365{left:150.480000pt;}
.x7b_c00365{left:155.280000pt;}
.x6_c00365{left:156.720000pt;}
.x1d_c00365{left:157.920000pt;}
.x48_c00365{left:162.960000pt;}
.x23_c00365{left:166.080000pt;}
.x5d_c00365{left:169.920000pt;}
.x7c_c00365{left:171.840000pt;}
.x52_c00365{left:172.800000pt;}
.x24_c00365{left:174.000000pt;}
.x1e_c00365{left:175.200000pt;}
.x14_c00365{left:179.520000pt;}
.x64_c00365{left:182.640000pt;}
.x2a_c00365{left:184.080000pt;}
.x34_c00365{left:185.520000pt;}
.x6e_c00365{left:188.160000pt;}
.x7d_c00365{left:189.840000pt;}
.x38_c00365{left:192.000000pt;}
.x7_c00365{left:194.400000pt;}
.x40_c00365{left:197.280000pt;}
.x15_c00365{left:199.440000pt;}
.x65_c00365{left:200.400000pt;}
.x6b_c00365{left:202.320000pt;}
.x1f_c00365{left:212.160000pt;}
.x25_c00365{left:217.200000pt;}
.x53_c00365{left:218.160000pt;}
.x2b_c00365{left:220.560000pt;}
.x8_c00365{left:222.240000pt;}
.x73_c00365{left:230.160000pt;}
.x16_c00365{left:231.120000pt;}
.x90_c00365{left:233.520000pt;}
.x4e_c00365{left:239.040000pt;}
.x2c_c00365{left:240.480000pt;}
.x4_c00365{left:242.457333pt;}
.x39_c00365{left:246.960000pt;}
.x20_c00365{left:248.880000pt;}
.x3b_c00365{left:249.840000pt;}
.x35_c00365{left:253.200000pt;}
.x74_c00365{left:257.760000pt;}
.x41_c00365{left:259.200000pt;}
.x17_c00365{left:261.600000pt;}
.x5e_c00365{left:265.680000pt;}
.x9_c00365{left:266.880000pt;}
.x91_c00365{left:269.040000pt;}
.x3c_c00365{left:270.720000pt;}
.x57_c00365{left:275.280000pt;}
.x54_c00365{left:276.960000pt;}
.x84_c00365{left:278.400000pt;}
.x4f_c00365{left:284.160000pt;}
.x26_c00365{left:287.520000pt;}
.xa_c00365{left:290.400000pt;}
.x5f_c00365{left:291.360000pt;}
.x49_c00365{left:292.560000pt;}
.x18_c00365{left:293.520000pt;}
.x6c_c00365{left:296.400000pt;}
.x85_c00365{left:297.600000pt;}
.x8a_c00365{left:301.440000pt;}
.x66_c00365{left:304.320000pt;}
.x58_c00365{left:307.680000pt;}
.x19_c00365{left:312.720000pt;}
.x7e_c00365{left:315.120000pt;}
.x3d_c00365{left:318.240000pt;}
.x75_c00365{left:321.600000pt;}
.x93_c00365{left:324.240000pt;}
.x2d_c00365{left:328.800000pt;}
.x79_c00365{left:330.240000pt;}
.xb_c00365{left:331.440000pt;}
.x8b_c00365{left:334.320000pt;}
.x1a_c00365{left:337.920000pt;}
.x42_c00365{left:341.760000pt;}
.x94_c00365{left:349.920000pt;}
.x67_c00365{left:354.960000pt;}
.x60_c00365{left:356.640000pt;}
.x76_c00365{left:359.280000pt;}
.x70_c00365{left:360.480000pt;}
.x55_c00365{left:361.680000pt;}
.x7f_c00365{left:365.760000pt;}
.x8c_c00365{left:366.720000pt;}
.x27_c00365{left:369.840000pt;}
.xc_c00365{left:372.720000pt;}
.x21_c00365{left:376.080000pt;}
.x86_c00365{left:377.760000pt;}
.x36_c00365{left:378.720000pt;}
.x7a_c00365{left:382.320000pt;}
.x4a_c00365{left:386.160000pt;}
.x8d_c00365{left:390.720000pt;}
.x80_c00365{left:392.640000pt;}
.x43_c00365{left:394.080000pt;}
.x61_c00365{left:397.440000pt;}
.x2e_c00365{left:398.400000pt;}
.xd_c00365{left:402.960000pt;}
.x81_c00365{left:403.920000pt;}
.x3e_c00365{left:408.240000pt;}
.x68_c00365{left:409.440000pt;}
.x4b_c00365{left:410.640000pt;}
.x6f_c00365{left:413.520000pt;}
.x87_c00365{left:417.360000pt;}
.x44_c00365{left:418.320000pt;}
.x1b_c00365{left:421.680000pt;}
.x95_c00365{left:427.200000pt;}
.x69_c00365{left:430.080000pt;}
.x3f_c00365{left:432.240000pt;}
.x2f_c00365{left:436.320000pt;}
.x28_c00365{left:439.680000pt;}
.x72_c00365{left:444.960000pt;}
.x82_c00365{left:445.920000pt;}
.x4c_c00365{left:447.360000pt;}
.xe_c00365{left:448.800000pt;}
.x45_c00365{left:455.760000pt;}
.x30_c00365{left:460.320000pt;}
.x88_c00365{left:461.520000pt;}
.x1c_c00365{left:462.480000pt;}
.x59_c00365{left:465.600000pt;}
.x29_c00365{left:468.720000pt;}
.xf_c00365{left:470.400000pt;}
.x77_c00365{left:480.960000pt;}
.x5a_c00365{left:485.520000pt;}
.x96_c00365{left:487.440000pt;}
.x89_c00365{left:488.640000pt;}
.x83_c00365{left:491.280000pt;}
.x50_c00365{left:493.200000pt;}
.x62_c00365{left:495.120000pt;}
.x46_c00365{left:497.280000pt;}
.x10_c00365{left:500.400000pt;}
.x31_c00365{left:504.000000pt;}
.x6d_c00365{left:504.960000pt;}
.x78_c00365{left:508.800000pt;}
.x4d_c00365{left:512.160000pt;}
.x6a_c00365{left:516.720000pt;}
.x5b_c00365{left:523.440000pt;}
.x11_c00365{left:525.600000pt;}
.x32_c00365{left:530.400000pt;}
.x47_c00365{left:534.720000pt;}
.x5c_c00365{left:535.920000pt;}
.x63_c00365{left:536.880000pt;}
.x12_c00365{left:541.680000pt;}
.x51_c00365{left:547.200000pt;}
.x71_c00365{left:556.080000pt;}
.x3a_c00365{left:563.280000pt;}
.x37_c00365{left:572.400000pt;}
.x8e_c00365{left:596.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m91_c00366{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{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);}
.m101_c00366{transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);}
.m57_c00366{transform:matrix(0.045748,-0.000412,0.002250,0.249990,0,0);-ms-transform:matrix(0.045748,-0.000412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.045748,-0.000412,0.002250,0.249990,0,0);}
.m16_c00366{transform:matrix(0.112305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112305,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.113515,-0.001476,0.003250,0.249979,0,0);-ms-transform:matrix(0.113515,-0.001476,0.003250,0.249979,0,0);-webkit-transform:matrix(0.113515,-0.001476,0.003250,0.249979,0,0);}
.m4c_c00366{transform:matrix(0.125165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125165,0.000000,0.000000,0.250000,0,0);}
.mb2_c00366{transform:matrix(0.132415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132415,0.000000,0.000000,0.250000,0,0);}
.mb8_c00366{transform:matrix(0.132680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132680,0.000000,0.000000,0.250000,0,0);}
.mdf_c00366{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);}
.mb3_c00366{transform:matrix(0.137565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137565,0.000000,0.000000,0.250000,0,0);}
.m6b_c00366{transform:matrix(0.139804,-0.001258,0.002250,0.249990,0,0);-ms-transform:matrix(0.139804,-0.001258,0.002250,0.249990,0,0);-webkit-transform:matrix(0.139804,-0.001258,0.002250,0.249990,0,0);}
.m7f_c00366{transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.143348,-0.001864,0.003250,0.249979,0,0);-ms-transform:matrix(0.143348,-0.001864,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143348,-0.001864,0.003250,0.249979,0,0);}
.m35_c00366{transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);}
.m9b_c00366{transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{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);}
.mc0_c00366{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);}
.m9e_c00366{transform:matrix(0.150395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150395,0.000000,0.000000,0.250000,0,0);}
.m98_c00366{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.mbd_c00366{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);}
.m6e_c00366{transform:matrix(0.151329,-0.001362,0.002250,0.249990,0,0);-ms-transform:matrix(0.151329,-0.001362,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151329,-0.001362,0.002250,0.249990,0,0);}
.mdd_c00366{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.mba_c00366{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);}
.m13_c00366{transform:matrix(0.154307,-0.002006,0.003250,0.249979,0,0);-ms-transform:matrix(0.154307,-0.002006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154307,-0.002006,0.003250,0.249979,0,0);}
.m3f_c00366{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);}
.m22_c00366{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_c00366{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);}
.mad_c00366{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);}
.md9_c00366{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);}
.me1_c00366{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);}
.mb_c00366{transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);-ms-transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158672,-0.002063,0.003250,0.249979,0,0);}
.m18_c00366{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);}
.m9d_c00366{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);}
.m78_c00366{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00366{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);}
.m6f_c00366{transform:matrix(0.160154,-0.001441,0.002250,0.249990,0,0);-ms-transform:matrix(0.160154,-0.001441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160154,-0.001441,0.002250,0.249990,0,0);}
.m29_c00366{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);}
.m39_c00366{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);}
.m3b_c00366{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);}
.m6a_c00366{transform:matrix(0.161898,-0.001457,0.002250,0.249990,0,0);-ms-transform:matrix(0.161898,-0.001457,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161898,-0.001457,0.002250,0.249990,0,0);}
.mbc_c00366{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);}
.m45_c00366{transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{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);}
.m80_c00366{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);}
.mc3_c00366{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);}
.mb7_c00366{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);}
.m99_c00366{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);}
.mde_c00366{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);}
.mdc_c00366{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);}
.mec_c00366{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);}
.mab_c00366{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);}
.m74_c00366{transform:matrix(0.168018,-0.001512,0.002250,0.249990,0,0);-ms-transform:matrix(0.168018,-0.001512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168018,-0.001512,0.002250,0.249990,0,0);}
.ma2_c00366{transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);}
.m70_c00366{transform:matrix(0.169568,-0.001526,0.002250,0.249990,0,0);-ms-transform:matrix(0.169568,-0.001526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169568,-0.001526,0.002250,0.249990,0,0);}
.mca_c00366{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);}
.me2_c00366{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);}
.ma4_c00366{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);}
.m8f_c00366{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);}
.me0_c00366{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);}
.m4a_c00366{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);}
.m76_c00366{transform:matrix(0.172493,-0.001552,0.002250,0.249990,0,0);-ms-transform:matrix(0.172493,-0.001552,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172493,-0.001552,0.002250,0.249990,0,0);}
.m20_c00366{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_c00366{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);}
.m24_c00366{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);}
.md1_c00366{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);}
.m7d_c00366{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);}
.mf5_c00366{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);}
.m28_c00366{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);}
.m81_c00366{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);}
.m44_c00366{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);}
.m71_c00366{transform:matrix(0.175378,-0.001578,0.002250,0.249990,0,0);-ms-transform:matrix(0.175378,-0.001578,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175378,-0.001578,0.002250,0.249990,0,0);}
.mf8_c00366{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);}
.ma_c00366{transform:matrix(0.176045,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176045,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176045,-0.002289,0.003250,0.249979,0,0);}
.m73_c00366{transform:matrix(0.176968,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.176968,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176968,-0.001593,0.002250,0.249990,0,0);}
.me8_c00366{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);}
.m1_c00366{transform:matrix(0.177720,-0.002310,0.003250,0.249979,0,0);-ms-transform:matrix(0.177720,-0.002310,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177720,-0.002310,0.003250,0.249979,0,0);}
.mda_c00366{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);}
.mdb_c00366{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);}
.m40_c00366{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);}
.mc6_c00366{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);}
.m6c_c00366{transform:matrix(0.179593,-0.001616,0.002250,0.249990,0,0);-ms-transform:matrix(0.179593,-0.001616,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179593,-0.001616,0.002250,0.249990,0,0);}
.mfe_c00366{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);}
.m8e_c00366{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);}
.m5f_c00366{transform:matrix(0.180908,-0.001628,0.002250,0.249990,0,0);-ms-transform:matrix(0.180908,-0.001628,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180908,-0.001628,0.002250,0.249990,0,0);}
.m3d_c00366{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);}
.md4_c00366{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);}
.m2c_c00366{transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);}
.mfd_c00366{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);}
.mcc_c00366{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);}
.m68_c00366{transform:matrix(0.182933,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182933,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182933,-0.001646,0.002250,0.249990,0,0);}
.m38_c00366{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);}
.m7c_c00366{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);}
.m4e_c00366{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);}
.mce_c00366{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);}
.m6d_c00366{transform:matrix(0.184058,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184058,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184058,-0.001657,0.002250,0.249990,0,0);}
.mc4_c00366{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);}
.m37_c00366{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);}
.ma8_c00366{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);}
.md5_c00366{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);}
.m83_c00366{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m5d_c00366{transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-ms-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);}
.mac_c00366{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);}
.m7b_c00366{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);}
.ma9_c00366{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);}
.md_c00366{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);}
.mbe_c00366{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);}
.mf7_c00366{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);}
.m5e_c00366{transform:matrix(0.187147,-0.001684,0.002250,0.249990,0,0);-ms-transform:matrix(0.187147,-0.001684,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187147,-0.001684,0.002250,0.249990,0,0);}
.m65_c00366{transform:matrix(0.187442,-0.001687,0.002250,0.249990,0,0);-ms-transform:matrix(0.187442,-0.001687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187442,-0.001687,0.002250,0.249990,0,0);}
.m96_c00366{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);}
.m8c_c00366{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);}
.m3c_c00366{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);}
.mc5_c00366{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);}
.m47_c00366{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);}
.m90_c00366{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);}
.m8a_c00366{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);}
.m97_c00366{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);}
.m7a_c00366{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);}
.ma5_c00366{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);}
.m58_c00366{transform:matrix(0.190622,-0.001716,0.002250,0.249990,0,0);-ms-transform:matrix(0.190622,-0.001716,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190622,-0.001716,0.002250,0.249990,0,0);}
.m46_c00366{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);}
.mc_c00366{transform:matrix(0.190824,-0.002481,0.003250,0.249979,0,0);-ms-transform:matrix(0.190824,-0.002481,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190824,-0.002481,0.003250,0.249979,0,0);}
.m8_c00366{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);}
.ma6_c00366{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);}
.m2d_c00366{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);}
.ma0_c00366{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);}
.m87_c00366{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.193674,-0.002518,0.003250,0.249979,0,0);-ms-transform:matrix(0.193674,-0.002518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193674,-0.002518,0.003250,0.249979,0,0);}
.m66_c00366{transform:matrix(0.194147,-0.001747,0.002250,0.249990,0,0);-ms-transform:matrix(0.194147,-0.001747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194147,-0.001747,0.002250,0.249990,0,0);}
.me9_c00366{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);}
.m79_c00366{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);}
.mcf_c00366{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);}
.m30_c00366{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);}
.m62_c00366{transform:matrix(0.195577,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195577,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195577,-0.001760,0.002250,0.249990,0,0);}
.m1f_c00366{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);}
.m9c_c00366{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);}
.m4b_c00366{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);}
.m82_c00366{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_c00366{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);}
.mf4_c00366{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);}
.med_c00366{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);}
.mbb_c00366{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);}
.m7e_c00366{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);}
.m2f_c00366{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);}
.mff_c00366{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);}
.mbf_c00366{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);}
.m100_c00366{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);}
.m1d_c00366{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);}
.m75_c00366{transform:matrix(0.200472,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200472,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200472,-0.001804,0.002250,0.249990,0,0);}
.m56_c00366{transform:matrix(0.201392,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201392,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201392,-0.001813,0.002250,0.249990,0,0);}
.m11_c00366{transform:matrix(0.202023,-0.002626,0.003250,0.249979,0,0);-ms-transform:matrix(0.202023,-0.002626,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202023,-0.002626,0.003250,0.249979,0,0);}
.mc1_c00366{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);}
.m77_c00366{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);}
.mb0_c00366{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);}
.mb1_c00366{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);}
.ma3_c00366{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);}
.md0_c00366{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m86_c00366{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);}
.mf3_c00366{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_c00366{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);}
.meb_c00366{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);}
.m61_c00366{transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);}
.mf0_c00366{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);}
.m102_c00366{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);}
.mb9_c00366{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);}
.m14_c00366{transform:matrix(0.210067,-0.002731,0.003250,0.249979,0,0);-ms-transform:matrix(0.210067,-0.002731,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210067,-0.002731,0.003250,0.249979,0,0);}
.m43_c00366{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);}
.mf6_c00366{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_c00366{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);}
.mae_c00366{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);}
.me6_c00366{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);}
.mfc_c00366{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);}
.m72_c00366{transform:matrix(0.213091,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213091,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213091,-0.001918,0.002250,0.249990,0,0);}
.mcd_c00366{transform:matrix(0.213290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213290,0.000000,0.000000,0.250000,0,0);}
.m60_c00366{transform:matrix(0.214396,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214396,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214396,-0.001930,0.002250,0.249990,0,0);}
.mf9_c00366{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);}
.mfa_c00366{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);}
.mc7_c00366{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);}
.m19_c00366{transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{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);}
.md8_c00366{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);}
.m8d_c00366{transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);}
.ma1_c00366{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);}
.m27_c00366{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);}
.md6_c00366{transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);}
.mf2_c00366{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_c00366{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);}
.m94_c00366{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);}
.m1b_c00366{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);}
.m63_c00366{transform:matrix(0.223691,-0.002013,0.002250,0.249990,0,0);-ms-transform:matrix(0.223691,-0.002013,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223691,-0.002013,0.002250,0.249990,0,0);}
.me_c00366{transform:matrix(0.223731,-0.002909,0.003250,0.249979,0,0);-ms-transform:matrix(0.223731,-0.002909,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223731,-0.002909,0.003250,0.249979,0,0);}
.m9_c00366{transform:matrix(0.224866,-0.002923,0.003250,0.249979,0,0);-ms-transform:matrix(0.224866,-0.002923,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224866,-0.002923,0.003250,0.249979,0,0);}
.m17_c00366{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);}
.maa_c00366{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m67_c00366{transform:matrix(0.226646,-0.002040,0.002250,0.249990,0,0);-ms-transform:matrix(0.226646,-0.002040,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226646,-0.002040,0.002250,0.249990,0,0);}
.m2a_c00366{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);}
.mcb_c00366{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);}
.m36_c00366{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);}
.m15_c00366{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);}
.m3e_c00366{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.m51_c00366{transform:matrix(0.231956,-0.002088,0.002250,0.249990,0,0);-ms-transform:matrix(0.231956,-0.002088,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231956,-0.002088,0.002250,0.249990,0,0);}
.me5_c00366{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);}
.m50_c00366{transform:matrix(0.234865,-0.002114,0.002250,0.249990,0,0);-ms-transform:matrix(0.234865,-0.002114,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234865,-0.002114,0.002250,0.249990,0,0);}
.m5a_c00366{transform:matrix(0.235385,-0.002118,0.002250,0.249990,0,0);-ms-transform:matrix(0.235385,-0.002118,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235385,-0.002118,0.002250,0.249990,0,0);}
.md2_c00366{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);}
.me7_c00366{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);}
.m31_c00366{transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);}
.mef_c00366{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.m54_c00366{transform:matrix(0.239550,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239550,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239550,-0.002156,0.002250,0.249990,0,0);}
.m5c_c00366{transform:matrix(0.239685,-0.002157,0.002250,0.249990,0,0);-ms-transform:matrix(0.239685,-0.002157,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239685,-0.002157,0.002250,0.249990,0,0);}
.mfb_c00366{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);}
.m41_c00366{transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240185,0.000000,0.000000,0.250000,0,0);}
.md7_c00366{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.m88_c00366{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);}
.m2e_c00366{transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246110,0.000000,0.000000,0.250000,0,0);}
.m53_c00366{transform:matrix(0.247870,-0.002231,0.002250,0.249990,0,0);-ms-transform:matrix(0.247870,-0.002231,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247870,-0.002231,0.002250,0.249990,0,0);}
.m1a_c00366{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.m95_c00366{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);}
.maf_c00366{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{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);}
.mf1_c00366{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);}
.mee_c00366{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);}
.m3a_c00366{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);}
.mc9_c00366{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);}
.m5b_c00366{transform:matrix(0.259040,-0.002331,0.002250,0.249990,0,0);-ms-transform:matrix(0.259040,-0.002331,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259040,-0.002331,0.002250,0.249990,0,0);}
.m25_c00366{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);}
.m42_c00366{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m52_c00366{transform:matrix(0.279554,-0.002516,0.002250,0.249990,0,0);-ms-transform:matrix(0.279554,-0.002516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279554,-0.002516,0.002250,0.249990,0,0);}
.m9f_c00366{transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282270,0.000000,0.000000,0.250000,0,0);}
.mea_c00366{transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);}
.mc8_c00366{transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291160,0.000000,0.000000,0.250000,0,0);}
.mb5_c00366{transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297260,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.324763,-0.004222,0.003250,0.249979,0,0);-ms-transform:matrix(0.324763,-0.004222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.324763,-0.004222,0.003250,0.249979,0,0);}
.m2b_c00366{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);}
.m69_c00366{transform:matrix(0.330432,-0.002974,0.002250,0.249990,0,0);-ms-transform:matrix(0.330432,-0.002974,0.002250,0.249990,0,0);-webkit-transform:matrix(0.330432,-0.002974,0.002250,0.249990,0,0);}
.m59_c00366{transform:matrix(0.336191,-0.003026,0.002250,0.249990,0,0);-ms-transform:matrix(0.336191,-0.003026,0.002250,0.249990,0,0);-webkit-transform:matrix(0.336191,-0.003026,0.002250,0.249990,0,0);}
.m85_c00366{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);}
.m32_c00366{transform:matrix(0.356350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356350,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391440,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.394237,-0.005125,0.003250,0.249979,0,0);-ms-transform:matrix(0.394237,-0.005125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.394237,-0.005125,0.003250,0.249979,0,0);}
.m6_c00366{transform:matrix(0.395092,-0.005136,0.003250,0.249979,0,0);-ms-transform:matrix(0.395092,-0.005136,0.003250,0.249979,0,0);-webkit-transform:matrix(0.395092,-0.005136,0.003250,0.249979,0,0);}
.mb6_c00366{transform:matrix(0.411875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411875,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);}
.me3_c00366{transform:matrix(0.421975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421975,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.435717,-0.003921,0.002250,0.249990,0,0);-ms-transform:matrix(0.435717,-0.003921,0.002250,0.249990,0,0);-webkit-transform:matrix(0.435717,-0.003921,0.002250,0.249990,0,0);}
.m64_c00366{transform:matrix(0.441922,-0.003977,0.002250,0.249990,0,0);-ms-transform:matrix(0.441922,-0.003977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.441922,-0.003977,0.002250,0.249990,0,0);}
.m5_c00366{transform:matrix(0.480924,-0.006252,0.003250,0.249979,0,0);-ms-transform:matrix(0.480924,-0.006252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.480924,-0.006252,0.003250,0.249979,0,0);}
.m3_c00366{transform:matrix(0.504112,-0.006553,0.003250,0.249979,0,0);-ms-transform:matrix(0.504112,-0.006553,0.003250,0.249979,0,0);-webkit-transform:matrix(0.504112,-0.006553,0.003250,0.249979,0,0);}
.m8b_c00366{transform:matrix(0.513785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513785,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.539418,-0.004855,0.002250,0.249990,0,0);-ms-transform:matrix(0.539418,-0.004855,0.002250,0.249990,0,0);-webkit-transform:matrix(0.539418,-0.004855,0.002250,0.249990,0,0);}
.m34_c00366{transform:matrix(0.563325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563325,0.000000,0.000000,0.250000,0,0);}
.me4_c00366{transform:matrix(0.574495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574495,0.000000,0.000000,0.250000,0,0);}
.mb4_c00366{transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.669798,-0.008707,0.003250,0.249979,0,0);-ms-transform:matrix(0.669798,-0.008707,0.003250,0.249979,0,0);-webkit-transform:matrix(0.669798,-0.008707,0.003250,0.249979,0,0);}
.m49_c00366{transform:matrix(0.791900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791900,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.887590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887590,0.000000,0.000000,0.250000,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;}
.fs12_c00366{font-size:22.050000px;}
.fs18_c00366{font-size:45.150000px;}
.fs13_c00366{font-size:49.350000px;}
.fs15_c00366{font-size:51.450000px;}
.fs17_c00366{font-size:52.500000px;}
.fs16_c00366{font-size:53.550000px;}
.fs14_c00366{font-size:55.650000px;}
.fs0_c00366{font-size:60.900000px;}
.fsa_c00366{font-size:61.952509px;}
.fs8_c00366{font-size:64.050000px;}
.fs9_c00366{font-size:64.052594px;}
.fs10_c00366{font-size:66.150000px;}
.fsc_c00366{font-size:67.202722px;}
.fs5_c00366{font-size:68.250000px;}
.fsf_c00366{font-size:69.300000px;}
.fse_c00366{font-size:70.350000px;}
.fs3_c00366{font-size:71.400000px;}
.fs6_c00366{font-size:72.450000px;}
.fs1_c00366{font-size:72.456122px;}
.fsd_c00366{font-size:73.500000px;}
.fs4_c00366{font-size:75.600000px;}
.fsb_c00366{font-size:75.603062px;}
.fs2_c00366{font-size:75.606388px;}
.fs11_c00366{font-size:85.050000px;}
.fs7_c00366{font-size:97.650000px;}
.y0_c00366{bottom:0.000000px;}
.y5e_c00366{bottom:148.336500px;}
.y5f_c00366{bottom:149.454000px;}
.y5d_c00366{bottom:167.130000px;}
.y5a_c00366{bottom:168.421500px;}
.y5c_c00366{bottom:185.220000px;}
.y59_c00366{bottom:186.609000px;}
.y5b_c00366{bottom:202.725000px;}
.y58_c00366{bottom:204.642000px;}
.y57_c00366{bottom:225.180000px;}
.y56_c00366{bottom:253.905000px;}
.y55_c00366{bottom:277.069500px;}
.y54_c00366{bottom:300.910500px;}
.y53_c00366{bottom:328.911000px;}
.y52_c00366{bottom:358.714500px;}
.y51_c00366{bottom:382.765500px;}
.y50_c00366{bottom:405.270000px;}
.y4f_c00366{bottom:432.412500px;}
.y4e_c00366{bottom:459.981000px;}
.y4d_c00366{bottom:483.184500px;}
.y4c_c00366{bottom:510.286500px;}
.y4b_c00366{bottom:537.835662px;}
.y4a_c00366{bottom:561.027003px;}
.y49_c00366{bottom:561.027617px;}
.y48_c00366{bottom:561.027960px;}
.y46_c00366{bottom:561.028001px;}
.y47_c00366{bottom:561.028407px;}
.y45_c00366{bottom:561.028464px;}
.y44_c00366{bottom:561.028928px;}
.y42_c00366{bottom:561.029135px;}
.y43_c00366{bottom:561.029151px;}
.y3f_c00366{bottom:561.029158px;}
.y41_c00366{bottom:561.029642px;}
.y40_c00366{bottom:561.029715px;}
.y33_c00366{bottom:584.204775px;}
.y32_c00366{bottom:584.205029px;}
.y39_c00366{bottom:584.205130px;}
.y34_c00366{bottom:584.205451px;}
.y3a_c00366{bottom:584.205507px;}
.y35_c00366{bottom:584.205558px;}
.y37_c00366{bottom:584.205561px;}
.y31_c00366{bottom:584.205715px;}
.y38_c00366{bottom:584.205788px;}
.y3b_c00366{bottom:584.205990px;}
.y3e_c00366{bottom:584.206100px;}
.y36_c00366{bottom:584.206115px;}
.y3d_c00366{bottom:584.206323px;}
.y3c_c00366{bottom:584.206517px;}
.y24_c00366{bottom:605.803500px;}
.y25_c00366{bottom:606.177220px;}
.y26_c00366{bottom:606.655336px;}
.y27_c00366{bottom:606.762338px;}
.y28_c00366{bottom:606.988301px;}
.y29_c00366{bottom:607.161195px;}
.y2a_c00366{bottom:607.540478px;}
.y2b_c00366{bottom:607.889993px;}
.y2c_c00366{bottom:608.741843px;}
.y2d_c00366{bottom:608.834399px;}
.y2e_c00366{bottom:608.990837px;}
.y2f_c00366{bottom:609.199587px;}
.y30_c00366{bottom:609.847952px;}
.y23_c00366{bottom:633.868500px;}
.y1b_c00366{bottom:659.614500px;}
.y1c_c00366{bottom:660.231000px;}
.y1d_c00366{bottom:660.537000px;}
.y1e_c00366{bottom:660.922500px;}
.y1f_c00366{bottom:661.216500px;}
.y20_c00366{bottom:661.786500px;}
.y21_c00366{bottom:664.665000px;}
.y22_c00366{bottom:667.108500px;}
.y1a_c00366{bottom:674.320500px;}
.y19_c00366{bottom:688.474500px;}
.y18_c00366{bottom:711.172500px;}
.y17_c00366{bottom:739.819500px;}
.y16_c00366{bottom:766.965000px;}
.y15_c00366{bottom:789.276132px;}
.y13_c00366{bottom:789.276141px;}
.y14_c00366{bottom:789.276481px;}
.y12_c00366{bottom:789.276840px;}
.y11_c00366{bottom:789.277209px;}
.yf_c00366{bottom:789.277227px;}
.yd_c00366{bottom:789.277304px;}
.y10_c00366{bottom:789.277597px;}
.yb_c00366{bottom:789.277621px;}
.ye_c00366{bottom:789.277646px;}
.yc_c00366{bottom:789.277923px;}
.y9_c00366{bottom:789.278120px;}
.ya_c00366{bottom:789.278361px;}
.y2_c00366{bottom:811.081500px;}
.y3_c00366{bottom:811.452526px;}
.y4_c00366{bottom:811.810605px;}
.y5_c00366{bottom:812.147624px;}
.y6_c00366{bottom:812.747834px;}
.y7_c00366{bottom:813.558565px;}
.y8_c00366{bottom:814.659886px;}
.y1_c00366{bottom:902.136000px;}
.h14_c00366{height:22.050000px;}
.h1a_c00366{height:45.150000px;}
.h15_c00366{height:49.350000px;}
.h17_c00366{height:51.450000px;}
.h19_c00366{height:52.500000px;}
.h18_c00366{height:53.550000px;}
.h16_c00366{height:55.650000px;}
.h2_c00366{height:60.900000px;}
.hc_c00366{height:61.952509px;}
.ha_c00366{height:64.050000px;}
.hb_c00366{height:64.052594px;}
.h12_c00366{height:66.150000px;}
.he_c00366{height:67.202722px;}
.h7_c00366{height:68.250000px;}
.h11_c00366{height:69.300000px;}
.h10_c00366{height:70.350000px;}
.h5_c00366{height:71.400000px;}
.h8_c00366{height:72.450000px;}
.h3_c00366{height:72.456122px;}
.hf_c00366{height:73.500000px;}
.h6_c00366{height:75.600000px;}
.hd_c00366{height:75.603062px;}
.h4_c00366{height:75.606388px;}
.h13_c00366{height:85.050000px;}
.h9_c00366{height:97.650000px;}
.h1_c00366{height:1005.000000px;}
.h0_c00366{height:1005.150000px;}
.w0_c00366{width:702.540000px;}
.w1_c00366{width:702.750000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:38.340000px;}
.x32_c00366{left:51.840000px;}
.x27_c00366{left:58.860000px;}
.x83_c00366{left:83.160000px;}
.x92_c00366{left:85.590000px;}
.x86_c00366{left:93.960000px;}
.x16_c00366{left:95.580000px;}
.xa0_c00366{left:98.010000px;}
.xa6_c00366{left:99.090000px;}
.x49_c00366{left:106.077000px;}
.x8d_c00366{left:108.540000px;}
.xa8_c00366{left:112.590000px;}
.x70_c00366{left:113.670000px;}
.x28_c00366{left:115.020000px;}
.x9_c00366{left:116.099640px;}
.x2_c00366{left:117.615000px;}
.x17_c00366{left:120.960000px;}
.x5f_c00366{left:123.116312px;}
.xa9_c00366{left:129.330000px;}
.x1c_c00366{left:130.680000px;}
.x68_c00366{left:132.300000px;}
.x3f_c00366{left:133.665000px;}
.x33_c00366{left:135.810000px;}
.x18_c00366{left:136.890000px;}
.x87_c00366{left:139.590000px;}
.x3_c00366{left:146.155500px;}
.x4a_c00366{left:147.601500px;}
.x8a_c00366{left:150.120000px;}
.x60_c00366{left:152.277174px;}
.xaa_c00366{left:157.950000px;}
.x54_c00366{left:160.112247px;}
.x88_c00366{left:161.190000px;}
.x34_c00366{left:163.080000px;}
.xa_c00366{left:164.703350px;}
.x84_c00366{left:168.750000px;}
.x1d_c00366{left:170.100000px;}
.x40_c00366{left:172.209000px;}
.x4_c00366{left:173.700000px;}
.x71_c00366{left:174.960000px;}
.xa1_c00366{left:178.470000px;}
.x29_c00366{left:182.790000px;}
.xb_c00366{left:185.765418px;}
.x93_c00366{left:188.190000px;}
.x69_c00366{left:189.540000px;}
.x41_c00366{left:191.296500px;}
.x35_c00366{left:197.370000px;}
.x5_c00366{left:199.624500px;}
.x4b_c00366{left:200.725500px;}
.x2a_c00366{left:207.360000px;}
.x19_c00366{left:210.060000px;}
.x1e_c00366{left:213.030000px;}
.x42_c00366{left:215.355000px;}
.xa4_c00366{left:216.810000px;}
.x55_c00366{left:218.163945px;}
.x36_c00366{left:220.590000px;}
.x78_c00366{left:221.940000px;}
.x61_c00366{left:223.559952px;}
.xa2_c00366{left:227.610000px;}
.xab_c00366{left:228.960000px;}
.x1a_c00366{left:231.930000px;}
.x43_c00366{left:233.770500px;}
.xc_c00366{left:235.989401px;}
.x1f_c00366{left:237.870000px;}
.x56_c00366{left:240.844281px;}
.x6_c00366{left:245.794500px;}
.xa5_c00366{left:251.100000px;}
.x6a_c00366{left:252.720000px;}
.x72_c00366{left:253.800000px;}
.x79_c00366{left:254.880000px;}
.x4c_c00366{left:256.932000px;}
.x89_c00366{left:258.660000px;}
.xd_c00366{left:260.292015px;}
.x2b_c00366{left:265.140000px;}
.x20_c00366{left:266.220000px;}
.x57_c00366{left:267.574941px;}
.x44_c00366{left:269.383500px;}
.x8e_c00366{left:271.350000px;}
.x6b_c00366{left:272.970000px;}
.x37_c00366{left:276.210000px;}
.xa7_c00366{left:278.640000px;}
.x2c_c00366{left:283.500000px;}
.x7c_c00366{left:286.200000px;}
.x7a_c00366{left:290.520000px;}
.xa3_c00366{left:294.300000px;}
.xac_c00366{left:295.380000px;}
.x4d_c00366{left:299.074500px;}
.x1b_c00366{left:302.400000px;}
.x38_c00366{left:306.990000px;}
.x7_c00366{left:308.158500px;}
.x62_c00366{left:311.044040px;}
.x47_c00366{left:312.930000px;}
.x58_c00366{left:314.017208px;}
.x8f_c00366{left:317.790000px;}
.x6c_c00366{left:320.490000px;}
.x21_c00366{left:323.730000px;}
.xe_c00366{left:325.637052px;}
.x8b_c00366{left:326.700000px;}
.x2d_c00366{left:328.860000px;}
.x63_c00366{left:333.994403px;}
.x73_c00366{left:335.610000px;}
.x4e_c00366{left:337.909500px;}
.x7e_c00366{left:339.120000px;}
.x22_c00366{left:346.680000px;}
.x6d_c00366{left:348.570000px;}
.x74_c00366{left:349.920000px;}
.x39_c00366{left:353.700000px;}
.x59_c00366{left:359.379380px;}
.x48_c00366{left:366.120000px;}
.x2e_c00366{left:367.200000px;}
.x7f_c00366{left:368.280000px;}
.x23_c00366{left:370.710000px;}
.x9c_c00366{left:372.060000px;}
.x75_c00366{left:382.320000px;}
.xf_c00366{left:383.422322px;}
.x3a_c00366{left:384.750000px;}
.x7d_c00366{left:387.720000px;}
.x85_c00366{left:390.420000px;}
.x8_c00366{left:392.875500px;}
.x10_c00366{left:393.952596px;}
.x24_c00366{left:396.360000px;}
.x64_c00366{left:409.327505px;}
.x6e_c00366{left:413.370000px;}
.x9d_c00366{left:414.450000px;}
.x80_c00366{left:416.070000px;}
.x25_c00366{left:417.960000px;}
.x3b_c00366{left:420.660000px;}
.x98_c00366{left:427.410000px;}
.x5a_c00366{left:429.312050px;}
.x4f_c00366{left:432.559500px;}
.x8c_c00366{left:436.860000px;}
.x94_c00366{left:437.940000px;}
.x11_c00366{left:439.045721px;}
.x50_c00366{left:442.843500px;}
.x6f_c00366{left:443.880000px;}
.x99_c00366{left:447.120000px;}
.x45_c00366{left:449.254500px;}
.x2f_c00366{left:451.980000px;}
.x90_c00366{left:457.380000px;}
.x51_c00366{left:460.225500px;}
.x76_c00366{left:462.240000px;}
.x81_c00366{left:464.400000px;}
.x26_c00366{left:467.370000px;}
.x12_c00366{left:470.638064px;}
.x9e_c00366{left:471.960000px;}
.x3c_c00366{left:481.950000px;}
.x52_c00366{left:483.420000px;}
.x91_c00366{left:485.730000px;}
.x65_c00366{left:491.951201px;}
.x95_c00366{left:494.640000px;}
.x3d_c00366{left:499.500000px;}
.x5b_c00366{left:504.913665px;}
.x13_c00366{left:506.821187px;}
.x9a_c00366{left:519.750000px;}
.x9f_c00366{left:521.910000px;}
.x66_c00366{left:524.082306px;}
.x5c_c00366{left:525.973866px;}
.x77_c00366{left:528.390000px;}
.x14_c00366{left:530.043606px;}
.x96_c00366{left:531.630000px;}
.x7b_c00366{left:536.490000px;}
.x82_c00366{left:544.320000px;}
.x5d_c00366{left:545.953986px;}
.x30_c00366{left:547.020000px;}
.x15_c00366{left:548.135168px;}
.x9b_c00366{left:549.720000px;}
.x53_c00366{left:555.460500px;}
.x67_c00366{left:559.183655px;}
.x97_c00366{left:560.520000px;}
.x31_c00366{left:565.380000px;}
.x5e_c00366{left:587.265834px;}
.x46_c00366{left:601.998000px;}
.x3e_c00366{left:604.530000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.fs12_c00366{font-size:19.600000pt;}
.fs18_c00366{font-size:40.133333pt;}
.fs13_c00366{font-size:43.866667pt;}
.fs15_c00366{font-size:45.733333pt;}
.fs17_c00366{font-size:46.666667pt;}
.fs16_c00366{font-size:47.600000pt;}
.fs14_c00366{font-size:49.466667pt;}
.fs0_c00366{font-size:54.133333pt;}
.fsa_c00366{font-size:55.068897pt;}
.fs8_c00366{font-size:56.933333pt;}
.fs9_c00366{font-size:56.935639pt;}
.fs10_c00366{font-size:58.800000pt;}
.fsc_c00366{font-size:59.735752pt;}
.fs5_c00366{font-size:60.666667pt;}
.fsf_c00366{font-size:61.600000pt;}
.fse_c00366{font-size:62.533333pt;}
.fs3_c00366{font-size:63.466667pt;}
.fs6_c00366{font-size:64.400000pt;}
.fs1_c00366{font-size:64.405442pt;}
.fsd_c00366{font-size:65.333333pt;}
.fs4_c00366{font-size:67.200000pt;}
.fsb_c00366{font-size:67.202722pt;}
.fs2_c00366{font-size:67.205678pt;}
.fs11_c00366{font-size:75.600000pt;}
.fs7_c00366{font-size:86.800000pt;}
.y0_c00366{bottom:0.000000pt;}
.y5e_c00366{bottom:131.854667pt;}
.y5f_c00366{bottom:132.848000pt;}
.y5d_c00366{bottom:148.560000pt;}
.y5a_c00366{bottom:149.708000pt;}
.y5c_c00366{bottom:164.640000pt;}
.y59_c00366{bottom:165.874667pt;}
.y5b_c00366{bottom:180.200000pt;}
.y58_c00366{bottom:181.904000pt;}
.y57_c00366{bottom:200.160000pt;}
.y56_c00366{bottom:225.693333pt;}
.y55_c00366{bottom:246.284000pt;}
.y54_c00366{bottom:267.476000pt;}
.y53_c00366{bottom:292.365333pt;}
.y52_c00366{bottom:318.857333pt;}
.y51_c00366{bottom:340.236000pt;}
.y50_c00366{bottom:360.240000pt;}
.y4f_c00366{bottom:384.366667pt;}
.y4e_c00366{bottom:408.872000pt;}
.y4d_c00366{bottom:429.497333pt;}
.y4c_c00366{bottom:453.588000pt;}
.y4b_c00366{bottom:478.076144pt;}
.y4a_c00366{bottom:498.690669pt;}
.y49_c00366{bottom:498.691215pt;}
.y48_c00366{bottom:498.691520pt;}
.y46_c00366{bottom:498.691556pt;}
.y47_c00366{bottom:498.691917pt;}
.y45_c00366{bottom:498.691968pt;}
.y44_c00366{bottom:498.692380pt;}
.y42_c00366{bottom:498.692564pt;}
.y43_c00366{bottom:498.692579pt;}
.y3f_c00366{bottom:498.692585pt;}
.y41_c00366{bottom:498.693015pt;}
.y40_c00366{bottom:498.693080pt;}
.y33_c00366{bottom:519.293133pt;}
.y32_c00366{bottom:519.293359pt;}
.y39_c00366{bottom:519.293449pt;}
.y34_c00366{bottom:519.293735pt;}
.y3a_c00366{bottom:519.293784pt;}
.y35_c00366{bottom:519.293829pt;}
.y37_c00366{bottom:519.293832pt;}
.y31_c00366{bottom:519.293969pt;}
.y38_c00366{bottom:519.294033pt;}
.y3b_c00366{bottom:519.294213pt;}
.y3e_c00366{bottom:519.294311pt;}
.y36_c00366{bottom:519.294324pt;}
.y3d_c00366{bottom:519.294509pt;}
.y3c_c00366{bottom:519.294681pt;}
.y24_c00366{bottom:538.492000pt;}
.y25_c00366{bottom:538.824196pt;}
.y26_c00366{bottom:539.249188pt;}
.y27_c00366{bottom:539.344300pt;}
.y28_c00366{bottom:539.545156pt;}
.y29_c00366{bottom:539.698840pt;}
.y2a_c00366{bottom:540.035980pt;}
.y2b_c00366{bottom:540.346660pt;}
.y2c_c00366{bottom:541.103860pt;}
.y2d_c00366{bottom:541.186132pt;}
.y2e_c00366{bottom:541.325188pt;}
.y2f_c00366{bottom:541.510744pt;}
.y30_c00366{bottom:542.087068pt;}
.y23_c00366{bottom:563.438667pt;}
.y1b_c00366{bottom:586.324000pt;}
.y1c_c00366{bottom:586.872000pt;}
.y1d_c00366{bottom:587.144000pt;}
.y1e_c00366{bottom:587.486667pt;}
.y1f_c00366{bottom:587.748000pt;}
.y20_c00366{bottom:588.254667pt;}
.y21_c00366{bottom:590.813333pt;}
.y22_c00366{bottom:592.985333pt;}
.y1a_c00366{bottom:599.396000pt;}
.y19_c00366{bottom:611.977333pt;}
.y18_c00366{bottom:632.153333pt;}
.y17_c00366{bottom:657.617333pt;}
.y16_c00366{bottom:681.746667pt;}
.y15_c00366{bottom:701.578784pt;}
.y13_c00366{bottom:701.578792pt;}
.y14_c00366{bottom:701.579095pt;}
.y12_c00366{bottom:701.579413pt;}
.y11_c00366{bottom:701.579741pt;}
.yf_c00366{bottom:701.579757pt;}
.yd_c00366{bottom:701.579825pt;}
.y10_c00366{bottom:701.580087pt;}
.yb_c00366{bottom:701.580108pt;}
.ye_c00366{bottom:701.580129pt;}
.yc_c00366{bottom:701.580376pt;}
.y9_c00366{bottom:701.580551pt;}
.ya_c00366{bottom:701.580765pt;}
.y2_c00366{bottom:720.961333pt;}
.y3_c00366{bottom:721.291135pt;}
.y4_c00366{bottom:721.609427pt;}
.y5_c00366{bottom:721.908999pt;}
.y6_c00366{bottom:722.442519pt;}
.y7_c00366{bottom:723.163169pt;}
.y8_c00366{bottom:724.142121pt;}
.y1_c00366{bottom:801.898667pt;}
.h14_c00366{height:19.600000pt;}
.h1a_c00366{height:40.133333pt;}
.h15_c00366{height:43.866667pt;}
.h17_c00366{height:45.733333pt;}
.h19_c00366{height:46.666667pt;}
.h18_c00366{height:47.600000pt;}
.h16_c00366{height:49.466667pt;}
.h2_c00366{height:54.133333pt;}
.hc_c00366{height:55.068897pt;}
.ha_c00366{height:56.933333pt;}
.hb_c00366{height:56.935639pt;}
.h12_c00366{height:58.800000pt;}
.he_c00366{height:59.735752pt;}
.h7_c00366{height:60.666667pt;}
.h11_c00366{height:61.600000pt;}
.h10_c00366{height:62.533333pt;}
.h5_c00366{height:63.466667pt;}
.h8_c00366{height:64.400000pt;}
.h3_c00366{height:64.405442pt;}
.hf_c00366{height:65.333333pt;}
.h6_c00366{height:67.200000pt;}
.hd_c00366{height:67.202722pt;}
.h4_c00366{height:67.205678pt;}
.h13_c00366{height:75.600000pt;}
.h9_c00366{height:86.800000pt;}
.h1_c00366{height:893.333333pt;}
.h0_c00366{height:893.466667pt;}
.w0_c00366{width:624.480000pt;}
.w1_c00366{width:624.666667pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:34.080000pt;}
.x32_c00366{left:46.080000pt;}
.x27_c00366{left:52.320000pt;}
.x83_c00366{left:73.920000pt;}
.x92_c00366{left:76.080000pt;}
.x86_c00366{left:83.520000pt;}
.x16_c00366{left:84.960000pt;}
.xa0_c00366{left:87.120000pt;}
.xa6_c00366{left:88.080000pt;}
.x49_c00366{left:94.290667pt;}
.x8d_c00366{left:96.480000pt;}
.xa8_c00366{left:100.080000pt;}
.x70_c00366{left:101.040000pt;}
.x28_c00366{left:102.240000pt;}
.x9_c00366{left:103.199680pt;}
.x2_c00366{left:104.546667pt;}
.x17_c00366{left:107.520000pt;}
.x5f_c00366{left:109.436721pt;}
.xa9_c00366{left:114.960000pt;}
.x1c_c00366{left:116.160000pt;}
.x68_c00366{left:117.600000pt;}
.x3f_c00366{left:118.813333pt;}
.x33_c00366{left:120.720000pt;}
.x18_c00366{left:121.680000pt;}
.x87_c00366{left:124.080000pt;}
.x3_c00366{left:129.916000pt;}
.x4a_c00366{left:131.201333pt;}
.x8a_c00366{left:133.440000pt;}
.x60_c00366{left:135.357488pt;}
.xaa_c00366{left:140.400000pt;}
.x54_c00366{left:142.321997pt;}
.x88_c00366{left:143.280000pt;}
.x34_c00366{left:144.960000pt;}
.xa_c00366{left:146.402977pt;}
.x84_c00366{left:150.000000pt;}
.x1d_c00366{left:151.200000pt;}
.x40_c00366{left:153.074667pt;}
.x4_c00366{left:154.400000pt;}
.x71_c00366{left:155.520000pt;}
.xa1_c00366{left:158.640000pt;}
.x29_c00366{left:162.480000pt;}
.xb_c00366{left:165.124816pt;}
.x93_c00366{left:167.280000pt;}
.x69_c00366{left:168.480000pt;}
.x41_c00366{left:170.041333pt;}
.x35_c00366{left:175.440000pt;}
.x5_c00366{left:177.444000pt;}
.x4b_c00366{left:178.422667pt;}
.x2a_c00366{left:184.320000pt;}
.x19_c00366{left:186.720000pt;}
.x1e_c00366{left:189.360000pt;}
.x42_c00366{left:191.426667pt;}
.xa4_c00366{left:192.720000pt;}
.x55_c00366{left:193.923507pt;}
.x36_c00366{left:196.080000pt;}
.x78_c00366{left:197.280000pt;}
.x61_c00366{left:198.719957pt;}
.xa2_c00366{left:202.320000pt;}
.xab_c00366{left:203.520000pt;}
.x1a_c00366{left:206.160000pt;}
.x43_c00366{left:207.796000pt;}
.xc_c00366{left:209.768356pt;}
.x1f_c00366{left:211.440000pt;}
.x56_c00366{left:214.083805pt;}
.x6_c00366{left:218.484000pt;}
.xa5_c00366{left:223.200000pt;}
.x6a_c00366{left:224.640000pt;}
.x72_c00366{left:225.600000pt;}
.x79_c00366{left:226.560000pt;}
.x4c_c00366{left:228.384000pt;}
.x89_c00366{left:229.920000pt;}
.xd_c00366{left:231.370680pt;}
.x2b_c00366{left:235.680000pt;}
.x20_c00366{left:236.640000pt;}
.x57_c00366{left:237.844392pt;}
.x44_c00366{left:239.452000pt;}
.x8e_c00366{left:241.200000pt;}
.x6b_c00366{left:242.640000pt;}
.x37_c00366{left:245.520000pt;}
.xa7_c00366{left:247.680000pt;}
.x2c_c00366{left:252.000000pt;}
.x7c_c00366{left:254.400000pt;}
.x7a_c00366{left:258.240000pt;}
.xa3_c00366{left:261.600000pt;}
.xac_c00366{left:262.560000pt;}
.x4d_c00366{left:265.844000pt;}
.x1b_c00366{left:268.800000pt;}
.x38_c00366{left:272.880000pt;}
.x7_c00366{left:273.918667pt;}
.x62_c00366{left:276.483591pt;}
.x47_c00366{left:278.160000pt;}
.x58_c00366{left:279.126407pt;}
.x8f_c00366{left:282.480000pt;}
.x6c_c00366{left:284.880000pt;}
.x21_c00366{left:287.760000pt;}
.xe_c00366{left:289.455157pt;}
.x8b_c00366{left:290.400000pt;}
.x2d_c00366{left:292.320000pt;}
.x63_c00366{left:296.883913pt;}
.x73_c00366{left:298.320000pt;}
.x4e_c00366{left:300.364000pt;}
.x7e_c00366{left:301.440000pt;}
.x22_c00366{left:308.160000pt;}
.x6d_c00366{left:309.840000pt;}
.x74_c00366{left:311.040000pt;}
.x39_c00366{left:314.400000pt;}
.x59_c00366{left:319.448337pt;}
.x48_c00366{left:325.440000pt;}
.x2e_c00366{left:326.400000pt;}
.x7f_c00366{left:327.360000pt;}
.x23_c00366{left:329.520000pt;}
.x9c_c00366{left:330.720000pt;}
.x75_c00366{left:339.840000pt;}
.xf_c00366{left:340.819841pt;}
.x3a_c00366{left:342.000000pt;}
.x7d_c00366{left:344.640000pt;}
.x85_c00366{left:347.040000pt;}
.x8_c00366{left:349.222667pt;}
.x10_c00366{left:350.180085pt;}
.x24_c00366{left:352.320000pt;}
.x64_c00366{left:363.846671pt;}
.x6e_c00366{left:367.440000pt;}
.x9d_c00366{left:368.400000pt;}
.x80_c00366{left:369.840000pt;}
.x25_c00366{left:371.520000pt;}
.x3b_c00366{left:373.920000pt;}
.x98_c00366{left:379.920000pt;}
.x5a_c00366{left:381.610711pt;}
.x4f_c00366{left:384.497333pt;}
.x8c_c00366{left:388.320000pt;}
.x94_c00366{left:389.280000pt;}
.x11_c00366{left:390.262863pt;}
.x50_c00366{left:393.638667pt;}
.x6f_c00366{left:394.560000pt;}
.x99_c00366{left:397.440000pt;}
.x45_c00366{left:399.337333pt;}
.x2f_c00366{left:401.760000pt;}
.x90_c00366{left:406.560000pt;}
.x51_c00366{left:409.089333pt;}
.x76_c00366{left:410.880000pt;}
.x81_c00366{left:412.800000pt;}
.x26_c00366{left:415.440000pt;}
.x12_c00366{left:418.344945pt;}
.x9e_c00366{left:419.520000pt;}
.x3c_c00366{left:428.400000pt;}
.x52_c00366{left:429.706667pt;}
.x91_c00366{left:431.760000pt;}
.x65_c00366{left:437.289956pt;}
.x95_c00366{left:439.680000pt;}
.x3d_c00366{left:444.000000pt;}
.x5b_c00366{left:448.812147pt;}
.x13_c00366{left:450.507721pt;}
.x9a_c00366{left:462.000000pt;}
.x9f_c00366{left:463.920000pt;}
.x66_c00366{left:465.850939pt;}
.x5c_c00366{left:467.532325pt;}
.x77_c00366{left:469.680000pt;}
.x14_c00366{left:471.149872pt;}
.x96_c00366{left:472.560000pt;}
.x7b_c00366{left:476.880000pt;}
.x82_c00366{left:483.840000pt;}
.x5d_c00366{left:485.292432pt;}
.x30_c00366{left:486.240000pt;}
.x15_c00366{left:487.231260pt;}
.x9b_c00366{left:488.640000pt;}
.x53_c00366{left:493.742667pt;}
.x67_c00366{left:497.052137pt;}
.x97_c00366{left:498.240000pt;}
.x31_c00366{left:502.560000pt;}
.x5e_c00366{left:522.014075pt;}
.x46_c00366{left:535.109333pt;}
.x3e_c00366{left:537.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m19_c00367{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);}
.m68_c00367{transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038965,0.000000,0.000000,0.250000,0,0);}
.mba_c00367{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m107_c00367{transform:matrix(0.072069,0.000937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.072069,0.000937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.072069,0.000937,-0.003250,0.249979,0,0);}
.m1f_c00367{transform:matrix(0.089960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089960,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{transform:matrix(0.121271,0.001455,-0.003000,0.249982,0,0);-ms-transform:matrix(0.121271,0.001455,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.121271,0.001455,-0.003000,0.249982,0,0);}
.mf8_c00367{transform:matrix(0.121910,0.001585,-0.003250,0.249979,0,0);-ms-transform:matrix(0.121910,0.001585,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.121910,0.001585,-0.003250,0.249979,0,0);}
.mf_c00367{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);}
.m60_c00367{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);}
.m93_c00367{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.145505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145505,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{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);}
.m52_c00367{transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00367{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);}
.mb6_c00367{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);}
.m44_c00367{transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153285,0.000000,0.000000,0.250000,0,0);}
.md_c00367{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);}
.m3a_c00367{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);}
.m5b_c00367{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);}
.me5_c00367{transform:matrix(0.156327,0.002032,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156327,0.002032,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156327,0.002032,-0.003250,0.249979,0,0);}
.ma1_c00367{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);}
.m86_c00367{transform:matrix(0.157045,0.001256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157045,0.001256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157045,0.001256,-0.002000,0.249992,0,0);}
.ma2_c00367{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);}
.mb3_c00367{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);}
.m62_c00367{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);}
.ma8_c00367{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);}
.m102_c00367{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);}
.m2f_c00367{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);}
.m4f_c00367{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);}
.m6f_c00367{transform:matrix(0.161118,0.001933,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161118,0.001933,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161118,0.001933,-0.003000,0.249982,0,0);}
.mce_c00367{transform:matrix(0.161171,0.002095,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161171,0.002095,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161171,0.002095,-0.003250,0.249979,0,0);}
.m8e_c00367{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);}
.m8a_c00367{transform:matrix(0.162865,0.001303,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162865,0.001303,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162865,0.001303,-0.002000,0.249992,0,0);}
.md9_c00367{transform:matrix(0.162921,0.002118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162921,0.002118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162921,0.002118,-0.003250,0.249979,0,0);}
.mde_c00367{transform:matrix(0.163931,0.002131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163931,0.002131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163931,0.002131,-0.003250,0.249979,0,0);}
.me_c00367{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);}
.m42_c00367{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);}
.m3e_c00367{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);}
.m80_c00367{transform:matrix(0.165855,0.001327,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165855,0.001327,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165855,0.001327,-0.002000,0.249992,0,0);}
.m38_c00367{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);}
.m92_c00367{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);}
.mda_c00367{transform:matrix(0.167461,0.002177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167461,0.002177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167461,0.002177,-0.003250,0.249979,0,0);}
.m35_c00367{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);}
.m2a_c00367{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);}
.mb0_c00367{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);}
.m90_c00367{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);}
.m7_c00367{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);}
.mcf_c00367{transform:matrix(0.171865,0.002234,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171865,0.002234,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171865,0.002234,-0.003250,0.249979,0,0);}
.me6_c00367{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);}
.m84_c00367{transform:matrix(0.172809,0.001382,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172809,0.001382,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172809,0.001382,-0.002000,0.249992,0,0);}
.md7_c00367{transform:matrix(0.174500,0.002269,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174500,0.002269,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174500,0.002269,-0.003250,0.249979,0,0);}
.m40_c00367{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);}
.m8b_c00367{transform:matrix(0.175459,0.001404,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175459,0.001404,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175459,0.001404,-0.002000,0.249992,0,0);}
.m89_c00367{transform:matrix(0.176709,0.001414,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176709,0.001414,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176709,0.001414,-0.002000,0.249992,0,0);}
.m97_c00367{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);}
.m17_c00367{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);}
.m69_c00367{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);}
.mff_c00367{transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);}
.m5f_c00367{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);}
.m18_c00367{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);}
.m8f_c00367{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);}
.mbb_c00367{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);}
.m85_c00367{transform:matrix(0.179024,0.001432,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179024,0.001432,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179024,0.001432,-0.002000,0.249992,0,0);}
.m88_c00367{transform:matrix(0.179114,0.001433,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179114,0.001433,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179114,0.001433,-0.002000,0.249992,0,0);}
.md8_c00367{transform:matrix(0.179535,0.002334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179535,0.002334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179535,0.002334,-0.003250,0.249979,0,0);}
.m9c_c00367{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);}
.m8c_c00367{transform:matrix(0.179684,0.001437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179684,0.001437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179684,0.001437,-0.002000,0.249992,0,0);}
.md0_c00367{transform:matrix(0.180370,0.002345,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180370,0.002345,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180370,0.002345,-0.003250,0.249979,0,0);}
.m6d_c00367{transform:matrix(0.180682,0.002168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180682,0.002168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180682,0.002168,-0.003000,0.249982,0,0);}
.m46_c00367{transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{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);}
.mb2_c00367{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);}
.mfd_c00367{transform:matrix(0.182460,0.002372,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182460,0.002372,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182460,0.002372,-0.003250,0.249979,0,0);}
.m9b_c00367{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);}
.m79_c00367{transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182599,0.001461,-0.002000,0.249992,0,0);}
.m4e_c00367{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);}
.m5e_c00367{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);}
.mb7_c00367{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);}
.m15_c00367{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);}
.m5c_c00367{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);}
.m37_c00367{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);}
.m5d_c00367{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);}
.m63_c00367{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);}
.mb5_c00367{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);}
.m16_c00367{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);}
.mf4_c00367{transform:matrix(0.187314,0.002435,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187314,0.002435,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187314,0.002435,-0.003250,0.249979,0,0);}
.m54_c00367{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);}
.m7d_c00367{transform:matrix(0.188384,0.001507,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188384,0.001507,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188384,0.001507,-0.002000,0.249992,0,0);}
.m4a_c00367{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);}
.m7e_c00367{transform:matrix(0.188669,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188669,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188669,0.001509,-0.002000,0.249992,0,0);}
.m50_c00367{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);}
.mb1_c00367{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);}
.md3_c00367{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);}
.ma0_c00367{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);}
.mbf_c00367{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);}
.m7c_c00367{transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190544,0.001524,-0.002000,0.249992,0,0);}
.m78_c00367{transform:matrix(0.190549,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190549,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190549,0.001524,-0.002000,0.249992,0,0);}
.mec_c00367{transform:matrix(0.190634,0.002478,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190634,0.002478,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190634,0.002478,-0.003250,0.249979,0,0);}
.m14_c00367{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);}
.mad_c00367{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);}
.m103_c00367{transform:matrix(0.191509,0.002490,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191509,0.002490,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191509,0.002490,-0.003250,0.249979,0,0);}
.maf_c00367{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);}
.m7b_c00367{transform:matrix(0.191954,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191954,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191954,0.001536,-0.002000,0.249992,0,0);}
.m77_c00367{transform:matrix(0.191994,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191994,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191994,0.001536,-0.002000,0.249992,0,0);}
.m57_c00367{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);}
.mef_c00367{transform:matrix(0.192259,0.002499,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192259,0.002499,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192259,0.002499,-0.003250,0.249979,0,0);}
.m4c_c00367{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);}
.mb9_c00367{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);}
.m87_c00367{transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);}
.m66_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);}
.mf1_c00367{transform:matrix(0.193934,0.002521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193934,0.002521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193934,0.002521,-0.003250,0.249979,0,0);}
.m49_c00367{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);}
.mf2_c00367{transform:matrix(0.194739,0.002532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194739,0.002532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194739,0.002532,-0.003250,0.249979,0,0);}
.m9e_c00367{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);}
.mf0_c00367{transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);}
.m47_c00367{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);}
.m7a_c00367{transform:matrix(0.195519,0.001564,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195519,0.001564,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195519,0.001564,-0.002000,0.249992,0,0);}
.m98_c00367{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);}
.me2_c00367{transform:matrix(0.195873,0.002546,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195873,0.002546,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195873,0.002546,-0.003250,0.249979,0,0);}
.me8_c00367{transform:matrix(0.196683,0.002557,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196683,0.002557,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196683,0.002557,-0.003250,0.249979,0,0);}
.maa_c00367{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);}
.me9_c00367{transform:matrix(0.197178,0.002563,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197178,0.002563,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197178,0.002563,-0.003250,0.249979,0,0);}
.ma4_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);}
.m25_c00367{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);}
.m101_c00367{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);}
.mdc_c00367{transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197803,0.002571,-0.003250,0.249979,0,0);}
.m96_c00367{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);}
.mee_c00367{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);}
.mf9_c00367{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);}
.m91_c00367{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);}
.me1_c00367{transform:matrix(0.199623,0.002595,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199623,0.002595,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199623,0.002595,-0.003250,0.249979,0,0);}
.mfc_c00367{transform:matrix(0.199888,0.002599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199888,0.002599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199888,0.002599,-0.003250,0.249979,0,0);}
.m32_c00367{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);}
.m30_c00367{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);}
.m5_c00367{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);}
.m3b_c00367{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);}
.m9f_c00367{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);}
.m99_c00367{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);}
.md1_c00367{transform:matrix(0.201863,0.002624,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201863,0.002624,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201863,0.002624,-0.003250,0.249979,0,0);}
.me4_c00367{transform:matrix(0.201938,0.002625,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201938,0.002625,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201938,0.002625,-0.003250,0.249979,0,0);}
.mdf_c00367{transform:matrix(0.201963,0.002626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201963,0.002626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201963,0.002626,-0.003250,0.249979,0,0);}
.m2d_c00367{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);}
.me0_c00367{transform:matrix(0.202113,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202113,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202113,0.002627,-0.003250,0.249979,0,0);}
.m26_c00367{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);}
.m11_c00367{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);}
.m9d_c00367{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);}
.mc3_c00367{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);}
.mdb_c00367{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);}
.m100_c00367{transform:matrix(0.204138,0.002654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204138,0.002654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204138,0.002654,-0.003250,0.249979,0,0);}
.m6c_c00367{transform:matrix(0.204455,0.002453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204455,0.002453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204455,0.002453,-0.003000,0.249982,0,0);}
.mf6_c00367{transform:matrix(0.204553,0.002659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204553,0.002659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204553,0.002659,-0.003250,0.249979,0,0);}
.m8d_c00367{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);}
.mac_c00367{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);}
.ma9_c00367{transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);}
.mae_c00367{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);}
.m106_c00367{transform:matrix(0.206288,0.002682,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206288,0.002682,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206288,0.002682,-0.003250,0.249979,0,0);}
.m3d_c00367{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);}
.m51_c00367{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);}
.m36_c00367{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);}
.m64_c00367{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);}
.m58_c00367{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);}
.mc0_c00367{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);}
.mfa_c00367{transform:matrix(0.209127,0.002719,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209127,0.002719,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209127,0.002719,-0.003250,0.249979,0,0);}
.m1d_c00367{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);}
.m76_c00367{transform:matrix(0.209408,0.001675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209408,0.001675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209408,0.001675,-0.002000,0.249992,0,0);}
.mb4_c00367{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);}
.m105_c00367{transform:matrix(0.209602,0.002725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209602,0.002725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209602,0.002725,-0.003250,0.249979,0,0);}
.mc4_c00367{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);}
.m8_c00367{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);}
.m21_c00367{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);}
.mfe_c00367{transform:matrix(0.211422,0.002748,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211422,0.002748,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211422,0.002748,-0.003250,0.249979,0,0);}
.md6_c00367{transform:matrix(0.211507,0.002750,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211507,0.002750,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211507,0.002750,-0.003250,0.249979,0,0);}
.ma_c00367{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);}
.md5_c00367{transform:matrix(0.212302,0.002760,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212302,0.002760,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212302,0.002760,-0.003250,0.249979,0,0);}
.m1c_c00367{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);}
.mbc_c00367{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);}
.meb_c00367{transform:matrix(0.213137,0.002771,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213137,0.002771,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213137,0.002771,-0.003250,0.249979,0,0);}
.mc2_c00367{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);}
.m29_c00367{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);}
.mf5_c00367{transform:matrix(0.213892,0.002781,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213892,0.002781,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213892,0.002781,-0.003250,0.249979,0,0);}
.m6e_c00367{transform:matrix(0.213995,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213995,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213995,0.002568,-0.003000,0.249982,0,0);}
.m72_c00367{transform:matrix(0.215105,0.002581,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215105,0.002581,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215105,0.002581,-0.003000,0.249982,0,0);}
.m55_c00367{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);}
.ma5_c00367{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);}
.mf7_c00367{transform:matrix(0.217722,0.002830,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217722,0.002830,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217722,0.002830,-0.003250,0.249979,0,0);}
.m24_c00367{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);}
.m5a_c00367{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);}
.m12_c00367{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);}
.m82_c00367{transform:matrix(0.221853,0.001775,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221853,0.001775,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221853,0.001775,-0.002000,0.249992,0,0);}
.mc1_c00367{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);}
.md2_c00367{transform:matrix(0.222436,0.002892,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222436,0.002892,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222436,0.002892,-0.003250,0.249979,0,0);}
.m33_c00367{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);}
.m9a_c00367{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);}
.mc5_c00367{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);}
.m81_c00367{transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);}
.m10_c00367{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);}
.m74_c00367{transform:matrix(0.225534,0.002706,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225534,0.002706,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225534,0.002706,-0.003000,0.249982,0,0);}
.mfb_c00367{transform:matrix(0.225566,0.002932,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225566,0.002932,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225566,0.002932,-0.003250,0.249979,0,0);}
.mbe_c00367{transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);}
.med_c00367{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);}
.m6_c00367{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{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);}
.m94_c00367{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);}
.mbd_c00367{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);}
.mcd_c00367{transform:matrix(0.227771,0.002961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227771,0.002961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227771,0.002961,-0.003250,0.249979,0,0);}
.m95_c00367{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);}
.m31_c00367{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);}
.m65_c00367{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{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);}
.m13_c00367{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);}
.me7_c00367{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);}
.m43_c00367{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);}
.m39_c00367{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);}
.m48_c00367{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);}
.m56_c00367{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);}
.m0_c00367{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);}
.m27_c00367{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);}
.mea_c00367{transform:matrix(0.242470,0.003152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242470,0.003152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242470,0.003152,-0.003250,0.249979,0,0);}
.m22_c00367{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);}
.m53_c00367{transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);}
.mc9_c00367{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);}
.mc6_c00367{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);}
.m1b_c00367{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m2c_c00367{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{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);}
.m3f_c00367{transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);}
.mc7_c00367{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);}
.m3_c00367{transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);}
.mdd_c00367{transform:matrix(0.266432,0.003464,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266432,0.003464,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266432,0.003464,-0.003250,0.249979,0,0);}
.m6b_c00367{transform:matrix(0.266531,0.003198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266531,0.003198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266531,0.003198,-0.003000,0.249982,0,0);}
.md4_c00367{transform:matrix(0.266937,0.003470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266937,0.003470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266937,0.003470,-0.003250,0.249979,0,0);}
.m6a_c00367{transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267905,0.000000,0.000000,0.250000,0,0);}
.ma7_c00367{transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.274275,0.003291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274275,0.003291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274275,0.003291,-0.003000,0.249982,0,0);}
.m7f_c00367{transform:matrix(0.274896,0.002199,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274896,0.002199,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274896,0.002199,-0.002000,0.249992,0,0);}
.ma6_c00367{transform:matrix(0.281325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281325,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);}
.ma3_c00367{transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283130,0.000000,0.000000,0.250000,0,0);}
.mab_c00367{transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.296865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296865,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.299870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299870,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305430,0.000000,0.000000,0.250000,0,0);}
.mc8_c00367{transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.314892,0.003779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314892,0.003779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314892,0.003779,-0.003000,0.249982,0,0);}
.m73_c00367{transform:matrix(0.316882,0.003803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.316882,0.003803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.316882,0.003803,-0.003000,0.249982,0,0);}
.m2e_c00367{transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321950,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326530,0.000000,0.000000,0.250000,0,0);}
.m83_c00367{transform:matrix(0.333804,0.002670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.333804,0.002670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.333804,0.002670,-0.002000,0.249992,0,0);}
.m104_c00367{transform:matrix(0.354715,0.004611,-0.003250,0.249979,0,0);-ms-transform:matrix(0.354715,0.004611,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.354715,0.004611,-0.003250,0.249979,0,0);}
.m1a_c00367{transform:matrix(0.357690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357690,0.000000,0.000000,0.250000,0,0);}
.mf3_c00367{transform:matrix(0.363949,0.004731,-0.003250,0.249979,0,0);-ms-transform:matrix(0.363949,0.004731,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.363949,0.004731,-0.003250,0.249979,0,0);}
.me3_c00367{transform:matrix(0.392747,0.005106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.392747,0.005106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.392747,0.005106,-0.003250,0.249979,0,0);}
.mcb_c00367{transform:matrix(0.469315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469315,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.523950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523950,0.000000,0.000000,0.250000,0,0);}
.mca_c00367{transform:matrix(0.535835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535835,0.000000,0.000000,0.250000,0,0);}
.mcc_c00367{transform:matrix(0.810040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810040,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.936880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936880,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;}
.fse_c00367{font-size:22.050000px;}
.fs12_c00367{font-size:50.404259px;}
.fs10_c00367{font-size:51.454347px;}
.fs11_c00367{font-size:52.504436px;}
.fs4_c00367{font-size:57.750000px;}
.fsd_c00367{font-size:58.800000px;}
.fsf_c00367{font-size:58.804968px;}
.fsc_c00367{font-size:63.000000px;}
.fs5_c00367{font-size:64.050000px;}
.fs0_c00367{font-size:66.150000px;}
.fs2_c00367{font-size:67.200000px;}
.fs3_c00367{font-size:68.250000px;}
.fsa_c00367{font-size:68.252184px;}
.fs6_c00367{font-size:69.300000px;}
.fs1_c00367{font-size:70.350000px;}
.fsb_c00367{font-size:70.352251px;}
.fs7_c00367{font-size:71.400000px;}
.fs8_c00367{font-size:73.500000px;}
.fs9_c00367{font-size:73.505292px;}
.y0_c00367{bottom:0.000000px;}
.y85_c00367{bottom:142.753512px;}
.y84_c00367{bottom:145.648914px;}
.y83_c00367{bottom:145.859495px;}
.y82_c00367{bottom:146.058766px;}
.y81_c00367{bottom:146.827176px;}
.y80_c00367{bottom:147.042318px;}
.y7f_c00367{bottom:148.019378px;}
.y7e_c00367{bottom:148.434396px;}
.y7d_c00367{bottom:148.827423px;}
.y7c_c00367{bottom:149.082435px;}
.y7b_c00367{bottom:149.635332px;}
.y7a_c00367{bottom:149.846244px;}
.y79_c00367{bottom:161.631793px;}
.y78_c00367{bottom:162.588590px;}
.y77_c00367{bottom:162.981447px;}
.y76_c00367{bottom:163.109085px;}
.y75_c00367{bottom:163.606611px;}
.y74_c00367{bottom:163.829831px;}
.y73_c00367{bottom:163.909540px;}
.y72_c00367{bottom:164.446960px;}
.y71_c00367{bottom:164.659281px;}
.y70_c00367{bottom:165.296828px;}
.y6f_c00367{bottom:165.511976px;}
.y6e_c00367{bottom:166.059828px;}
.y6d_c00367{bottom:166.290770px;}
.y6c_c00367{bottom:166.725588px;}
.y6b_c00367{bottom:167.689755px;}
.y6a_c00367{bottom:167.939493px;}
.y69_c00367{bottom:180.896865px;}
.y68_c00367{bottom:181.280292px;}
.y67_c00367{bottom:181.609493px;}
.y66_c00367{bottom:181.809116px;}
.y65_c00367{bottom:182.160961px;}
.y64_c00367{bottom:182.537952px;}
.y63_c00367{bottom:182.685924px;}
.y62_c00367{bottom:182.991035px;}
.y61_c00367{bottom:183.139884px;}
.y60_c00367{bottom:183.566262px;}
.y5f_c00367{bottom:183.917893px;}
.y5e_c00367{bottom:184.163082px;}
.y5d_c00367{bottom:184.746502px;}
.y5c_c00367{bottom:184.867809px;}
.y5b_c00367{bottom:185.166091px;}
.y5a_c00367{bottom:185.489557px;}
.y59_c00367{bottom:198.045898px;}
.y58_c00367{bottom:198.333231px;}
.y57_c00367{bottom:198.751428px;}
.y56_c00367{bottom:199.243023px;}
.y55_c00367{bottom:199.485018px;}
.y54_c00367{bottom:199.829291px;}
.y53_c00367{bottom:200.334731px;}
.y52_c00367{bottom:200.724575px;}
.y51_c00367{bottom:201.415986px;}
.y50_c00367{bottom:201.872013px;}
.y4f_c00367{bottom:202.111258px;}
.y4e_c00367{bottom:202.398513px;}
.y4d_c00367{bottom:202.868444px;}
.y4c_c00367{bottom:203.297131px;}
.y4b_c00367{bottom:203.581500px;}
.y4a_c00367{bottom:228.564000px;}
.y49_c00367{bottom:252.171000px;}
.y48_c00367{bottom:280.383000px;}
.y47_c00367{bottom:306.651000px;}
.y46_c00367{bottom:334.099500px;}
.y45_c00367{bottom:334.371000px;}
.y44_c00367{bottom:334.723500px;}
.y43_c00367{bottom:335.619000px;}
.y42_c00367{bottom:335.949000px;}
.y41_c00367{bottom:336.265500px;}
.y40_c00367{bottom:337.164000px;}
.y3f_c00367{bottom:337.423500px;}
.y3e_c00367{bottom:337.773000px;}
.y3d_c00367{bottom:356.730000px;}
.y3c_c00367{bottom:357.333000px;}
.y3b_c00367{bottom:357.772500px;}
.y3a_c00367{bottom:358.071000px;}
.y39_c00367{bottom:358.302000px;}
.y38_c00367{bottom:358.662000px;}
.y37_c00367{bottom:359.148000px;}
.y36_c00367{bottom:359.328000px;}
.y35_c00367{bottom:359.512500px;}
.y34_c00367{bottom:359.937000px;}
.y33_c00367{bottom:360.124500px;}
.y32_c00367{bottom:360.501000px;}
.y31_c00367{bottom:360.721500px;}
.y30_c00367{bottom:381.204000px;}
.y2f_c00367{bottom:408.871500px;}
.y2e_c00367{bottom:435.899148px;}
.y2d_c00367{bottom:436.462164px;}
.y2c_c00367{bottom:436.607448px;}
.y2b_c00367{bottom:436.736220px;}
.y2a_c00367{bottom:437.148768px;}
.y29_c00367{bottom:437.445900px;}
.y28_c00367{bottom:437.642064px;}
.y27_c00367{bottom:437.812296px;}
.y26_c00367{bottom:437.982612px;}
.y25_c00367{bottom:438.088968px;}
.y24_c00367{bottom:438.480516px;}
.y23_c00367{bottom:457.867452px;}
.y22_c00367{bottom:458.407728px;}
.y21_c00367{bottom:458.664792px;}
.y20_c00367{bottom:458.966820px;}
.y1f_c00367{bottom:459.344928px;}
.y1e_c00367{bottom:459.532776px;}
.y1d_c00367{bottom:459.787332px;}
.y1c_c00367{bottom:460.277928px;}
.y1b_c00367{bottom:460.535064px;}
.y1a_c00367{bottom:460.880652px;}
.y19_c00367{bottom:461.215488px;}
.y18_c00367{bottom:461.431500px;}
.y17_c00367{bottom:485.061990px;}
.y16_c00367{bottom:485.308014px;}
.y15_c00367{bottom:485.872908px;}
.y14_c00367{bottom:486.543498px;}
.y13_c00367{bottom:486.848310px;}
.y12_c00367{bottom:487.434552px;}
.y11_c00367{bottom:487.645062px;}
.y10_c00367{bottom:487.836168px;}
.yf_c00367{bottom:488.519988px;}
.ye_c00367{bottom:489.569640px;}
.yd_c00367{bottom:490.056000px;}
.yc_c00367{bottom:514.563000px;}
.yb_c00367{bottom:537.660000px;}
.ya_c00367{bottom:560.367000px;}
.y9_c00367{bottom:582.999000px;}
.y8_c00367{bottom:610.675500px;}
.y7_c00367{bottom:638.338500px;}
.y6_c00367{bottom:665.733000px;}
.y5_c00367{bottom:693.849000px;}
.y4_c00367{bottom:721.668000px;}
.y3_c00367{bottom:743.431500px;}
.y2_c00367{bottom:772.339500px;}
.y1_c00367{bottom:808.114500px;}
.h10_c00367{height:22.050000px;}
.h14_c00367{height:50.404259px;}
.h12_c00367{height:51.454347px;}
.h13_c00367{height:52.504436px;}
.h6_c00367{height:57.750000px;}
.hf_c00367{height:58.800000px;}
.h11_c00367{height:58.804968px;}
.he_c00367{height:63.000000px;}
.h7_c00367{height:64.050000px;}
.h2_c00367{height:66.150000px;}
.h4_c00367{height:67.200000px;}
.h5_c00367{height:68.250000px;}
.hc_c00367{height:68.252184px;}
.h8_c00367{height:69.300000px;}
.h3_c00367{height:70.350000px;}
.hd_c00367{height:70.352251px;}
.h9_c00367{height:71.400000px;}
.ha_c00367{height:73.500000px;}
.hb_c00367{height:73.505292px;}
.h0_c00367{height:1008.450000px;}
.h1_c00367{height:1008.750000px;}
.w0_c00367{width:696.000000px;}
.x0_c00367{left:0.000000px;}
.x56_c00367{left:140.400000px;}
.x45_c00367{left:148.500000px;}
.x15_c00367{left:150.390000px;}
.x87_c00367{left:154.440000px;}
.x9_c00367{left:161.730000px;}
.x3d_c00367{left:166.590000px;}
.x2b_c00367{left:167.670000px;}
.x91_c00367{left:170.100000px;}
.x7b_c00367{left:173.772000px;}
.x16_c00367{left:182.520000px;}
.x92_c00367{left:183.754500px;}
.x1b_c00367{left:184.950000px;}
.x35_c00367{left:187.110000px;}
.x82_c00367{left:188.335500px;}
.x2c_c00367{left:190.350000px;}
.x46_c00367{left:193.050000px;}
.x61_c00367{left:194.839500px;}
.xa0_c00367{left:196.682512px;}
.x4f_c00367{left:202.500000px;}
.x6a_c00367{left:205.095156px;}
.x5a_c00367{left:206.421000px;}
.x17_c00367{left:208.170000px;}
.x71_c00367{left:209.790000px;}
.x97_c00367{left:211.352122px;}
.xa1_c00367{left:212.605888px;}
.x7c_c00367{left:215.623500px;}
.x83_c00367{left:217.233000px;}
.x6b_c00367{left:220.264776px;}
.x47_c00367{left:224.100000px;}
.x88_c00367{left:225.180000px;}
.x3e_c00367{left:227.610000px;}
.x2d_c00367{left:233.820000px;}
.x50_c00367{left:235.440000px;}
.x62_c00367{left:236.694000px;}
.x6c_c00367{left:244.554468px;}
.x18_c00367{left:249.480000px;}
.x36_c00367{left:252.720000px;}
.x8b_c00367{left:253.800000px;}
.x1c_c00367{left:260.820000px;}
.xa2_c00367{left:263.107419px;}
.xa_c00367{left:267.300000px;}
.x6d_c00367{left:268.833660px;}
.x3f_c00367{left:274.050000px;}
.x63_c00367{left:279.892500px;}
.x2e_c00367{left:281.070000px;}
.x7d_c00367{left:283.662000px;}
.xb_c00367{left:285.930000px;}
.x24_c00367{left:287.010000px;}
.x51_c00367{left:293.220000px;}
.x48_c00367{left:295.380000px;}
.x6e_c00367{left:296.916888px;}
.x1_c00367{left:298.080000px;}
.x57_c00367{left:301.860000px;}
.x2f_c00367{left:304.290000px;}
.x98_c00367{left:306.349327px;}
.x25_c00367{left:308.340000px;}
.x64_c00367{left:312.034500px;}
.x8c_c00367{left:314.010000px;}
.x75_c00367{left:316.440000px;}
.x1d_c00367{left:319.950000px;}
.xc_c00367{left:322.380000px;}
.x7e_c00367{left:324.135000px;}
.x2_c00367{left:325.620000px;}
.x52_c00367{left:328.320000px;}
.x37_c00367{left:330.750000px;}
.x72_c00367{left:332.370000px;}
.xa3_c00367{left:337.620014px;}
.x40_c00367{left:338.850000px;}
.x99_c00367{left:341.476192px;}
.x26_c00367{left:344.520000px;}
.x8d_c00367{left:345.600000px;}
.x49_c00367{left:346.950000px;}
.x5b_c00367{left:350.877000px;}
.x84_c00367{left:352.242000px;}
.x76_c00367{left:354.780000px;}
.x30_c00367{left:363.690000px;}
.x27_c00367{left:364.770000px;}
.x1e_c00367{left:367.470000px;}
.x65_c00367{left:373.359000px;}
.x41_c00367{left:375.030000px;}
.xd_c00367{left:376.110000px;}
.x7f_c00367{left:378.135000px;}
.x1f_c00367{left:379.620000px;}
.x93_c00367{left:381.643500px;}
.x28_c00367{left:383.400000px;}
.x4a_c00367{left:386.370000px;}
.x31_c00367{left:389.340000px;}
.x89_c00367{left:390.690000px;}
.x38_c00367{left:393.660000px;}
.x6f_c00367{left:398.190192px;}
.xe_c00367{left:401.490000px;}
.x20_c00367{left:403.650000px;}
.x66_c00367{left:405.178500px;}
.x3_c00367{left:412.020000px;}
.x73_c00367{left:413.910000px;}
.x58_c00367{left:415.530000px;}
.x39_c00367{left:416.880000px;}
.x80_c00367{left:418.077000px;}
.x5_c00367{left:419.580000px;}
.x42_c00367{left:420.930000px;}
.xf_c00367{left:423.090000px;}
.x67_c00367{left:428.659500px;}
.x32_c00367{left:430.650000px;}
.x5c_c00367{left:433.198500px;}
.x74_c00367{left:434.430000px;}
.x70_c00367{left:437.322504px;}
.x8e_c00367{left:440.910000px;}
.x4b_c00367{left:442.530000px;}
.x29_c00367{left:443.610000px;}
.x6_c00367{left:445.770000px;}
.x21_c00367{left:447.120000px;}
.x19_c00367{left:449.820000px;}
.x4_c00367{left:450.900000px;}
.x53_c00367{left:451.980000px;}
.x10_c00367{left:456.030000px;}
.x5d_c00367{left:458.599500px;}
.x59_c00367{left:464.130000px;}
.x8a_c00367{left:465.750000px;}
.x8f_c00367{left:468.990000px;}
.x7_c00367{left:470.070000px;}
.x22_c00367{left:471.420000px;}
.x2a_c00367{left:475.470000px;}
.x11_c00367{left:476.820000px;}
.x86_c00367{left:478.170000px;}
.x9a_c00367{left:482.120191px;}
.x3a_c00367{left:483.840000px;}
.x4c_c00367{left:488.970000px;}
.x9c_c00367{left:494.365128px;}
.x94_c00367{left:495.609000px;}
.x77_c00367{left:497.340000px;}
.x4d_c00367{left:502.470000px;}
.x9d_c00367{left:503.491011px;}
.x23_c00367{left:506.520000px;}
.x12_c00367{left:509.760000px;}
.x5e_c00367{left:514.482000px;}
.x3b_c00367{left:516.240000px;}
.x33_c00367{left:517.860000px;}
.x8_c00367{left:519.210000px;}
.x78_c00367{left:526.770000px;}
.x9e_c00367{left:531.518140px;}
.x95_c00367{left:533.424000px;}
.x34_c00367{left:537.570000px;}
.x90_c00367{left:544.050000px;}
.x68_c00367{left:545.809500px;}
.x85_c00367{left:557.709000px;}
.x43_c00367{left:559.170000px;}
.x5f_c00367{left:561.556500px;}
.x13_c00367{left:563.760000px;}
.x79_c00367{left:566.460000px;}
.x1a_c00367{left:568.080000px;}
.x9b_c00367{left:570.175123px;}
.x3c_c00367{left:572.130000px;}
.x54_c00367{left:577.260000px;}
.x60_c00367{left:582.058500px;}
.x96_c00367{left:587.695500px;}
.x81_c00367{left:592.801500px;}
.x7a_c00367{left:594.000000px;}
.x14_c00367{left:595.890000px;}
.x4e_c00367{left:598.050000px;}
.x9f_c00367{left:599.809244px;}
.x44_c00367{left:608.850000px;}
.x69_c00367{left:613.344000px;}
.x55_c00367{left:615.870000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fse_c00367{font-size:19.600000pt;}
.fs12_c00367{font-size:44.803785pt;}
.fs10_c00367{font-size:45.737198pt;}
.fs11_c00367{font-size:46.670610pt;}
.fs4_c00367{font-size:51.333333pt;}
.fsd_c00367{font-size:52.266667pt;}
.fsf_c00367{font-size:52.271083pt;}
.fsc_c00367{font-size:56.000000pt;}
.fs5_c00367{font-size:56.933333pt;}
.fs0_c00367{font-size:58.800000pt;}
.fs2_c00367{font-size:59.733333pt;}
.fs3_c00367{font-size:60.666667pt;}
.fsa_c00367{font-size:60.668608pt;}
.fs6_c00367{font-size:61.600000pt;}
.fs1_c00367{font-size:62.533333pt;}
.fsb_c00367{font-size:62.535334pt;}
.fs7_c00367{font-size:63.466667pt;}
.fs8_c00367{font-size:65.333333pt;}
.fs9_c00367{font-size:65.338037pt;}
.y0_c00367{bottom:0.000000pt;}
.y85_c00367{bottom:126.892011pt;}
.y84_c00367{bottom:129.465701pt;}
.y83_c00367{bottom:129.652884pt;}
.y82_c00367{bottom:129.830015pt;}
.y81_c00367{bottom:130.513045pt;}
.y80_c00367{bottom:130.704283pt;}
.y7f_c00367{bottom:131.572780pt;}
.y7e_c00367{bottom:131.941685pt;}
.y7d_c00367{bottom:132.291043pt;}
.y7c_c00367{bottom:132.517720pt;}
.y7b_c00367{bottom:133.009184pt;}
.y7a_c00367{bottom:133.196661pt;}
.y79_c00367{bottom:143.672705pt;}
.y78_c00367{bottom:144.523191pt;}
.y77_c00367{bottom:144.872397pt;}
.y76_c00367{bottom:144.985853pt;}
.y75_c00367{bottom:145.428099pt;}
.y74_c00367{bottom:145.626516pt;}
.y73_c00367{bottom:145.697369pt;}
.y72_c00367{bottom:146.175076pt;}
.y71_c00367{bottom:146.363805pt;}
.y70_c00367{bottom:146.930513pt;}
.y6f_c00367{bottom:147.121756pt;}
.y6e_c00367{bottom:147.608736pt;}
.y6d_c00367{bottom:147.814017pt;}
.y6c_c00367{bottom:148.200523pt;}
.y6b_c00367{bottom:149.057560pt;}
.y6a_c00367{bottom:149.279549pt;}
.y69_c00367{bottom:160.797213pt;}
.y68_c00367{bottom:161.138037pt;}
.y67_c00367{bottom:161.430660pt;}
.y66_c00367{bottom:161.608103pt;}
.y65_c00367{bottom:161.920855pt;}
.y64_c00367{bottom:162.255957pt;}
.y63_c00367{bottom:162.387488pt;}
.y62_c00367{bottom:162.658697pt;}
.y61_c00367{bottom:162.791008pt;}
.y60_c00367{bottom:163.170011pt;}
.y5f_c00367{bottom:163.482572pt;}
.y5e_c00367{bottom:163.700517pt;}
.y5d_c00367{bottom:164.219113pt;}
.y5c_c00367{bottom:164.326941pt;}
.y5b_c00367{bottom:164.592081pt;}
.y5a_c00367{bottom:164.879607pt;}
.y59_c00367{bottom:176.040799pt;}
.y58_c00367{bottom:176.296205pt;}
.y57_c00367{bottom:176.667936pt;}
.y56_c00367{bottom:177.104909pt;}
.y55_c00367{bottom:177.320016pt;}
.y54_c00367{bottom:177.626036pt;}
.y53_c00367{bottom:178.075316pt;}
.y52_c00367{bottom:178.421844pt;}
.y51_c00367{bottom:179.036432pt;}
.y50_c00367{bottom:179.441789pt;}
.y4f_c00367{bottom:179.654452pt;}
.y4e_c00367{bottom:179.909789pt;}
.y4d_c00367{bottom:180.327505pt;}
.y4c_c00367{bottom:180.708561pt;}
.y4b_c00367{bottom:180.961333pt;}
.y4a_c00367{bottom:203.168000pt;}
.y49_c00367{bottom:224.152000pt;}
.y48_c00367{bottom:249.229333pt;}
.y47_c00367{bottom:272.578667pt;}
.y46_c00367{bottom:296.977333pt;}
.y45_c00367{bottom:297.218667pt;}
.y44_c00367{bottom:297.532000pt;}
.y43_c00367{bottom:298.328000pt;}
.y42_c00367{bottom:298.621333pt;}
.y41_c00367{bottom:298.902667pt;}
.y40_c00367{bottom:299.701333pt;}
.y3f_c00367{bottom:299.932000pt;}
.y3e_c00367{bottom:300.242667pt;}
.y3d_c00367{bottom:317.093333pt;}
.y3c_c00367{bottom:317.629333pt;}
.y3b_c00367{bottom:318.020000pt;}
.y3a_c00367{bottom:318.285333pt;}
.y39_c00367{bottom:318.490667pt;}
.y38_c00367{bottom:318.810667pt;}
.y37_c00367{bottom:319.242667pt;}
.y36_c00367{bottom:319.402667pt;}
.y35_c00367{bottom:319.566667pt;}
.y34_c00367{bottom:319.944000pt;}
.y33_c00367{bottom:320.110667pt;}
.y32_c00367{bottom:320.445333pt;}
.y31_c00367{bottom:320.641333pt;}
.y30_c00367{bottom:338.848000pt;}
.y2f_c00367{bottom:363.441333pt;}
.y2e_c00367{bottom:387.465909pt;}
.y2d_c00367{bottom:387.966368pt;}
.y2c_c00367{bottom:388.095509pt;}
.y2b_c00367{bottom:388.209973pt;}
.y2a_c00367{bottom:388.576683pt;}
.y29_c00367{bottom:388.840800pt;}
.y28_c00367{bottom:389.015168pt;}
.y27_c00367{bottom:389.166485pt;}
.y26_c00367{bottom:389.317877pt;}
.y25_c00367{bottom:389.412416pt;}
.y24_c00367{bottom:389.760459pt;}
.y23_c00367{bottom:406.993291pt;}
.y22_c00367{bottom:407.473536pt;}
.y21_c00367{bottom:407.702037pt;}
.y20_c00367{bottom:407.970507pt;}
.y1f_c00367{bottom:408.306603pt;}
.y1e_c00367{bottom:408.473579pt;}
.y1d_c00367{bottom:408.699851pt;}
.y1c_c00367{bottom:409.135936pt;}
.y1b_c00367{bottom:409.364501pt;}
.y1a_c00367{bottom:409.671691pt;}
.y19_c00367{bottom:409.969323pt;}
.y18_c00367{bottom:410.161333pt;}
.y17_c00367{bottom:431.166213pt;}
.y16_c00367{bottom:431.384901pt;}
.y15_c00367{bottom:431.887029pt;}
.y14_c00367{bottom:432.483109pt;}
.y13_c00367{bottom:432.754053pt;}
.y12_c00367{bottom:433.275157pt;}
.y11_c00367{bottom:433.462277pt;}
.y10_c00367{bottom:433.632149pt;}
.yf_c00367{bottom:434.239989pt;}
.ye_c00367{bottom:435.173013pt;}
.yd_c00367{bottom:435.605333pt;}
.yc_c00367{bottom:457.389333pt;}
.yb_c00367{bottom:477.920000pt;}
.ya_c00367{bottom:498.104000pt;}
.y9_c00367{bottom:518.221333pt;}
.y8_c00367{bottom:542.822667pt;}
.y7_c00367{bottom:567.412000pt;}
.y6_c00367{bottom:591.762667pt;}
.y5_c00367{bottom:616.754667pt;}
.y4_c00367{bottom:641.482667pt;}
.y3_c00367{bottom:660.828000pt;}
.y2_c00367{bottom:686.524000pt;}
.y1_c00367{bottom:718.324000pt;}
.h10_c00367{height:19.600000pt;}
.h14_c00367{height:44.803785pt;}
.h12_c00367{height:45.737198pt;}
.h13_c00367{height:46.670610pt;}
.h6_c00367{height:51.333333pt;}
.hf_c00367{height:52.266667pt;}
.h11_c00367{height:52.271083pt;}
.he_c00367{height:56.000000pt;}
.h7_c00367{height:56.933333pt;}
.h2_c00367{height:58.800000pt;}
.h4_c00367{height:59.733333pt;}
.h5_c00367{height:60.666667pt;}
.hc_c00367{height:60.668608pt;}
.h8_c00367{height:61.600000pt;}
.h3_c00367{height:62.533333pt;}
.hd_c00367{height:62.535334pt;}
.h9_c00367{height:63.466667pt;}
.ha_c00367{height:65.333333pt;}
.hb_c00367{height:65.338037pt;}
.h0_c00367{height:896.400000pt;}
.h1_c00367{height:896.666667pt;}
.w0_c00367{width:618.666667pt;}
.x0_c00367{left:0.000000pt;}
.x56_c00367{left:124.800000pt;}
.x45_c00367{left:132.000000pt;}
.x15_c00367{left:133.680000pt;}
.x87_c00367{left:137.280000pt;}
.x9_c00367{left:143.760000pt;}
.x3d_c00367{left:148.080000pt;}
.x2b_c00367{left:149.040000pt;}
.x91_c00367{left:151.200000pt;}
.x7b_c00367{left:154.464000pt;}
.x16_c00367{left:162.240000pt;}
.x92_c00367{left:163.337333pt;}
.x1b_c00367{left:164.400000pt;}
.x35_c00367{left:166.320000pt;}
.x82_c00367{left:167.409333pt;}
.x2c_c00367{left:169.200000pt;}
.x46_c00367{left:171.600000pt;}
.x61_c00367{left:173.190667pt;}
.xa0_c00367{left:174.828900pt;}
.x4f_c00367{left:180.000000pt;}
.x6a_c00367{left:182.306805pt;}
.x5a_c00367{left:183.485333pt;}
.x17_c00367{left:185.040000pt;}
.x71_c00367{left:186.480000pt;}
.x97_c00367{left:187.868553pt;}
.xa1_c00367{left:188.983012pt;}
.x7c_c00367{left:191.665333pt;}
.x83_c00367{left:193.096000pt;}
.x6b_c00367{left:195.790912pt;}
.x47_c00367{left:199.200000pt;}
.x88_c00367{left:200.160000pt;}
.x3e_c00367{left:202.320000pt;}
.x2d_c00367{left:207.840000pt;}
.x50_c00367{left:209.280000pt;}
.x62_c00367{left:210.394667pt;}
.x6c_c00367{left:217.381749pt;}
.x18_c00367{left:221.760000pt;}
.x36_c00367{left:224.640000pt;}
.x8b_c00367{left:225.600000pt;}
.x1c_c00367{left:231.840000pt;}
.xa2_c00367{left:233.873261pt;}
.xa_c00367{left:237.600000pt;}
.x6d_c00367{left:238.963253pt;}
.x3f_c00367{left:243.600000pt;}
.x63_c00367{left:248.793333pt;}
.x2e_c00367{left:249.840000pt;}
.x7d_c00367{left:252.144000pt;}
.xb_c00367{left:254.160000pt;}
.x24_c00367{left:255.120000pt;}
.x51_c00367{left:260.640000pt;}
.x48_c00367{left:262.560000pt;}
.x6e_c00367{left:263.926123pt;}
.x1_c00367{left:264.960000pt;}
.x57_c00367{left:268.320000pt;}
.x2f_c00367{left:270.480000pt;}
.x98_c00367{left:272.310513pt;}
.x25_c00367{left:274.080000pt;}
.x64_c00367{left:277.364000pt;}
.x8c_c00367{left:279.120000pt;}
.x75_c00367{left:281.280000pt;}
.x1d_c00367{left:284.400000pt;}
.xc_c00367{left:286.560000pt;}
.x7e_c00367{left:288.120000pt;}
.x2_c00367{left:289.440000pt;}
.x52_c00367{left:291.840000pt;}
.x37_c00367{left:294.000000pt;}
.x72_c00367{left:295.440000pt;}
.xa3_c00367{left:300.106679pt;}
.x40_c00367{left:301.200000pt;}
.x99_c00367{left:303.534393pt;}
.x26_c00367{left:306.240000pt;}
.x8d_c00367{left:307.200000pt;}
.x49_c00367{left:308.400000pt;}
.x5b_c00367{left:311.890667pt;}
.x84_c00367{left:313.104000pt;}
.x76_c00367{left:315.360000pt;}
.x30_c00367{left:323.280000pt;}
.x27_c00367{left:324.240000pt;}
.x1e_c00367{left:326.640000pt;}
.x65_c00367{left:331.874667pt;}
.x41_c00367{left:333.360000pt;}
.xd_c00367{left:334.320000pt;}
.x7f_c00367{left:336.120000pt;}
.x1f_c00367{left:337.440000pt;}
.x93_c00367{left:339.238667pt;}
.x28_c00367{left:340.800000pt;}
.x4a_c00367{left:343.440000pt;}
.x31_c00367{left:346.080000pt;}
.x89_c00367{left:347.280000pt;}
.x38_c00367{left:349.920000pt;}
.x6f_c00367{left:353.946837pt;}
.xe_c00367{left:356.880000pt;}
.x20_c00367{left:358.800000pt;}
.x66_c00367{left:360.158667pt;}
.x3_c00367{left:366.240000pt;}
.x73_c00367{left:367.920000pt;}
.x58_c00367{left:369.360000pt;}
.x39_c00367{left:370.560000pt;}
.x80_c00367{left:371.624000pt;}
.x5_c00367{left:372.960000pt;}
.x42_c00367{left:374.160000pt;}
.xf_c00367{left:376.080000pt;}
.x67_c00367{left:381.030667pt;}
.x32_c00367{left:382.800000pt;}
.x5c_c00367{left:385.065333pt;}
.x74_c00367{left:386.160000pt;}
.x70_c00367{left:388.731115pt;}
.x8e_c00367{left:391.920000pt;}
.x4b_c00367{left:393.360000pt;}
.x29_c00367{left:394.320000pt;}
.x6_c00367{left:396.240000pt;}
.x21_c00367{left:397.440000pt;}
.x19_c00367{left:399.840000pt;}
.x4_c00367{left:400.800000pt;}
.x53_c00367{left:401.760000pt;}
.x10_c00367{left:405.360000pt;}
.x5d_c00367{left:407.644000pt;}
.x59_c00367{left:412.560000pt;}
.x8a_c00367{left:414.000000pt;}
.x8f_c00367{left:416.880000pt;}
.x7_c00367{left:417.840000pt;}
.x22_c00367{left:419.040000pt;}
.x2a_c00367{left:422.640000pt;}
.x11_c00367{left:423.840000pt;}
.x86_c00367{left:425.040000pt;}
.x9a_c00367{left:428.551281pt;}
.x3a_c00367{left:430.080000pt;}
.x4c_c00367{left:434.640000pt;}
.x9c_c00367{left:439.435669pt;}
.x94_c00367{left:440.541333pt;}
.x77_c00367{left:442.080000pt;}
.x4d_c00367{left:446.640000pt;}
.x9d_c00367{left:447.547565pt;}
.x23_c00367{left:450.240000pt;}
.x12_c00367{left:453.120000pt;}
.x5e_c00367{left:457.317333pt;}
.x3b_c00367{left:458.880000pt;}
.x33_c00367{left:460.320000pt;}
.x8_c00367{left:461.520000pt;}
.x78_c00367{left:468.240000pt;}
.x9e_c00367{left:472.460569pt;}
.x95_c00367{left:474.154667pt;}
.x34_c00367{left:477.840000pt;}
.x90_c00367{left:483.600000pt;}
.x68_c00367{left:485.164000pt;}
.x85_c00367{left:495.741333pt;}
.x43_c00367{left:497.040000pt;}
.x5f_c00367{left:499.161333pt;}
.x13_c00367{left:501.120000pt;}
.x79_c00367{left:503.520000pt;}
.x1a_c00367{left:504.960000pt;}
.x9b_c00367{left:506.822332pt;}
.x3c_c00367{left:508.560000pt;}
.x54_c00367{left:513.120000pt;}
.x60_c00367{left:517.385333pt;}
.x96_c00367{left:522.396000pt;}
.x81_c00367{left:526.934667pt;}
.x7a_c00367{left:528.000000pt;}
.x14_c00367{left:529.680000pt;}
.x4e_c00367{left:531.600000pt;}
.x9f_c00367{left:533.163772pt;}
.x44_c00367{left:541.200000pt;}
.x69_c00367{left:545.194667pt;}
.x55_c00367{left:547.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1f_c00368{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.mbe_c00368{transform:matrix(0.027445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027445,0.000000,0.000000,0.250000,0,0);}
.me5_c00368{transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064570,0.000000,0.000000,0.250000,0,0);}
.md4_c00368{transform:matrix(0.101435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101435,0.000000,0.000000,0.250000,0,0);}
.mba_c00368{transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);}
.md6_c00368{transform:matrix(0.111255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111255,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{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);}
.mb1_c00368{transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152290,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152465,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{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);}
.m96_c00368{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);}
.m7d_c00368{transform:matrix(0.153755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153755,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{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);}
.m94_c00368{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);}
.m3e_c00368{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);}
.m63_c00368{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);}
.m4d_c00368{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);}
.m1e_c00368{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{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);}
.m50_c00368{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);}
.m1b_c00368{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);}
.mcd_c00368{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.mc6_c00368{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);}
.m6f_c00368{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);}
.m64_c00368{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{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);}
.mdc_c00368{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);}
.m6d_c00368{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.mda_c00368{transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);}
.ma8_c00368{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);}
.m19_c00368{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);}
.mcb_c00368{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);}
.m79_c00368{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);}
.m8b_c00368{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);}
.ma1_c00368{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);}
.m17_c00368{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);}
.m2a_c00368{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);}
.m43_c00368{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);}
.m6_c00368{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);}
.m11_c00368{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);}
.m27_c00368{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);}
.mbb_c00368{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);}
.mc2_c00368{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);}
.mc1_c00368{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);}
.m73_c00368{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);}
.m69_c00368{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);}
.m33_c00368{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);}
.m46_c00368{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);}
.m35_c00368{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);}
.m14_c00368{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);}
.m3b_c00368{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);}
.m4a_c00368{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);}
.mc_c00368{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);}
.m1_c00368{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);}
.m8_c00368{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);}
.m6e_c00368{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);}
.m13_c00368{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);}
.m89_c00368{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);}
.m44_c00368{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);}
.m66_c00368{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);}
.ma0_c00368{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);}
.m76_c00368{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);}
.m2b_c00368{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);}
.mb_c00368{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);}
.m31_c00368{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);}
.md2_c00368{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);}
.me3_c00368{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);}
.mcf_c00368{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);}
.mc0_c00368{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);}
.m12_c00368{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);}
.me4_c00368{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);}
.m9e_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);}
.m4c_c00368{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);}
.m99_c00368{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);}
.m7e_c00368{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);}
.ma_c00368{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);}
.m40_c00368{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);}
.ma4_c00368{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);}
.m45_c00368{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);}
.m28_c00368{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);}
.m61_c00368{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);}
.m77_c00368{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);}
.m58_c00368{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);}
.m30_c00368{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);}
.m1c_c00368{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);}
.ma9_c00368{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);}
.m55_c00368{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);}
.m51_c00368{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);}
.m3d_c00368{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);}
.mb3_c00368{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);}
.m71_c00368{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);}
.m9d_c00368{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);}
.ma5_c00368{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);}
.mc7_c00368{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);}
.ma7_c00368{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);}
.m52_c00368{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);}
.m9f_c00368{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);}
.mce_c00368{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);}
.m1a_c00368{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);}
.m86_c00368{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);}
.ma3_c00368{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);}
.m92_c00368{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);}
.mb2_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);}
.m34_c00368{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);}
.maa_c00368{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{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);}
.m48_c00368{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);}
.m6c_c00368{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);}
.m93_c00368{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);}
.mb7_c00368{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);}
.m36_c00368{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);}
.m49_c00368{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);}
.m8c_c00368{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);}
.md_c00368{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);}
.m10_c00368{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);}
.m95_c00368{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);}
.mbf_c00368{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);}
.m62_c00368{transform:matrix(0.200930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200930,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{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);}
.m2d_c00368{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);}
.m32_c00368{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);}
.mde_c00368{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);}
.m4e_c00368{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{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);}
.m9b_c00368{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);}
.m2f_c00368{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);}
.m59_c00368{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);}
.m37_c00368{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);}
.m9a_c00368{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);}
.m1d_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);}
.ma2_c00368{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);}
.m75_c00368{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);}
.m78_c00368{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);}
.mac_c00368{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);}
.mb8_c00368{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);}
.mab_c00368{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);}
.m8f_c00368{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);}
.m5f_c00368{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);}
.m7_c00368{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);}
.m3f_c00368{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);}
.mc8_c00368{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);}
.m90_c00368{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);}
.ma6_c00368{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);}
.m65_c00368{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);}
.m42_c00368{transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);}
.md0_c00368{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.md1_c00368{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);}
.m9_c00368{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);}
.m82_c00368{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);}
.m8a_c00368{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);}
.mb6_c00368{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);}
.m4b_c00368{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);}
.m3_c00368{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.me2_c00368{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);}
.m41_c00368{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);}
.mf_c00368{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);}
.m38_c00368{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);}
.mcc_c00368{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);}
.m98_c00368{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);}
.me0_c00368{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);}
.mbc_c00368{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);}
.m7b_c00368{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{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);}
.m80_c00368{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);}
.mc3_c00368{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);}
.mb9_c00368{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);}
.md8_c00368{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);}
.mc9_c00368{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);}
.m81_c00368{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);}
.mca_c00368{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);}
.mdd_c00368{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);}
.m70_c00368{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);}
.m18_c00368{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);}
.m84_c00368{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);}
.m67_c00368{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);}
.m97_c00368{transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{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);}
.m6b_c00368{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);}
.m5c_c00368{transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241845,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{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);}
.m7a_c00368{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{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);}
.m7f_c00368{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);}
.m9c_c00368{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);}
.md7_c00368{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);}
.m5d_c00368{transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);}
.mb0_c00368{transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{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);}
.m5_c00368{transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);}
.m56_c00368{transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270725,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.270930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270930,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271105,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.271615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271615,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);}
.md3_c00368{transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00368{transform:matrix(0.285230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285230,0.000000,0.000000,0.250000,0,0);}
.mdb_c00368{transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00368{transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298995,0.000000,0.000000,0.250000,0,0);}
.mc4_c00368{transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);}
.mae_c00368{transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{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);}
.m21_c00368{transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324305,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);}
.mc5_c00368{transform:matrix(0.328345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328345,0.000000,0.000000,0.250000,0,0);}
.md5_c00368{transform:matrix(0.344860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344860,0.000000,0.000000,0.250000,0,0);}
.maf_c00368{transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.357665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357665,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358090,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{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);}
.m4_c00368{transform:matrix(0.393460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393460,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.417350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417350,0.000000,0.000000,0.250000,0,0);}
.md9_c00368{transform:matrix(0.419270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419270,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.488210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488210,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.489830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489830,0.000000,0.000000,0.250000,0,0);}
.mad_c00368{transform:matrix(0.511605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00368{transform:matrix(0.516305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516305,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.516355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516355,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.563475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563475,0.000000,0.000000,0.250000,0,0);}
.me1_c00368{transform:matrix(0.602725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602725,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.678340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678340,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.679500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679500,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:52.500000px;}
.fs10_c00368{font-size:53.550000px;}
.fsf_c00368{font-size:55.650000px;}
.fsa_c00368{font-size:57.750000px;}
.fs8_c00368{font-size:63.000000px;}
.fs6_c00368{font-size:65.100000px;}
.fsd_c00368{font-size:67.200000px;}
.fs9_c00368{font-size:68.250000px;}
.fsc_c00368{font-size:69.300000px;}
.fs4_c00368{font-size:70.350000px;}
.fs2_c00368{font-size:71.400000px;}
.fs3_c00368{font-size:72.450000px;}
.fsb_c00368{font-size:74.550000px;}
.fs7_c00368{font-size:91.350000px;}
.fs5_c00368{font-size:100.800000px;}
.fs1_c00368{font-size:106.050000px;}
.fs0_c00368{font-size:214.200000px;}
.y0_c00368{bottom:0.000000px;}
.y1b_c00368{bottom:138.666000px;}
.y1a_c00368{bottom:156.942000px;}
.y19_c00368{bottom:174.759000px;}
.y18_c00368{bottom:192.615000px;}
.y17_c00368{bottom:243.070500px;}
.y16_c00368{bottom:266.001000px;}
.y15_c00368{bottom:288.931500px;}
.y14_c00368{bottom:312.145500px;}
.y13_c00368{bottom:334.530000px;}
.y12_c00368{bottom:361.626000px;}
.y11_c00368{bottom:385.546500px;}
.y10_c00368{bottom:408.969000px;}
.yf_c00368{bottom:435.510000px;}
.ye_c00368{bottom:463.368000px;}
.yd_c00368{bottom:486.579000px;}
.yc_c00368{bottom:513.270000px;}
.yb_c00368{bottom:532.440000px;}
.ya_c00368{bottom:554.659500px;}
.y9_c00368{bottom:577.674000px;}
.y8_c00368{bottom:605.014500px;}
.y7_c00368{bottom:661.864500px;}
.y6_c00368{bottom:693.996000px;}
.y5_c00368{bottom:763.222500px;}
.y4_c00368{bottom:785.398500px;}
.y3_c00368{bottom:808.069500px;}
.y2_c00368{bottom:857.670000px;}
.y1_c00368{bottom:899.968500px;}
.h10_c00368{height:52.500000px;}
.h12_c00368{height:53.550000px;}
.h11_c00368{height:55.650000px;}
.hc_c00368{height:57.750000px;}
.ha_c00368{height:63.000000px;}
.h8_c00368{height:65.100000px;}
.hf_c00368{height:67.200000px;}
.hb_c00368{height:68.250000px;}
.he_c00368{height:69.300000px;}
.h6_c00368{height:70.350000px;}
.h4_c00368{height:71.400000px;}
.h5_c00368{height:72.450000px;}
.hd_c00368{height:74.550000px;}
.h9_c00368{height:91.350000px;}
.h7_c00368{height:100.800000px;}
.h3_c00368{height:106.050000px;}
.h2_c00368{height:214.200000px;}
.h1_c00368{height:1005.000000px;}
.h0_c00368{height:1005.150000px;}
.w0_c00368{width:742.500000px;}
.x0_c00368{left:0.000000px;}
.x8e_c00368{left:71.820000px;}
.x68_c00368{left:78.030000px;}
.x7d_c00368{left:88.020000px;}
.x1c_c00368{left:89.100000px;}
.x13_c00368{left:91.260000px;}
.x5e_c00368{left:100.710000px;}
.x83_c00368{left:102.330000px;}
.xa0_c00368{left:106.380000px;}
.x3a_c00368{left:108.000000px;}
.x7_c00368{left:109.620000px;}
.x35_c00368{left:117.180000px;}
.x1d_c00368{left:119.340000px;}
.x84_c00368{left:120.420000px;}
.x78_c00368{left:123.660000px;}
.x4c_c00368{left:126.090000px;}
.x23_c00368{left:127.170000px;}
.x8_c00368{left:130.410000px;}
.x14_c00368{left:133.110000px;}
.x5f_c00368{left:136.080000px;}
.x59_c00368{left:141.750000px;}
.x95_c00368{left:144.720000px;}
.x7e_c00368{left:146.340000px;}
.x2c_c00368{left:147.960000px;}
.x1e_c00368{left:151.200000px;}
.x69_c00368{left:153.900000px;}
.x96_c00368{left:155.520000px;}
.x9_c00368{left:157.410000px;}
.x85_c00368{left:162.540000px;}
.x5c_c00368{left:167.130000px;}
.x24_c00368{left:168.480000px;}
.x43_c00368{left:170.640000px;}
.x2d_c00368{left:172.260000px;}
.x70_c00368{left:173.880000px;}
.x5a_c00368{left:181.170000px;}
.x4d_c00368{left:182.250000px;}
.xa_c00368{left:188.190000px;}
.x60_c00368{left:192.510000px;}
.x15_c00368{left:194.400000px;}
.x6a_c00368{left:197.910000px;}
.x8f_c00368{left:201.420000px;}
.x79_c00368{left:202.770000px;}
.x44_c00368{left:205.740000px;}
.x52_c00368{left:207.360000px;}
.x21_c00368{left:212.760000px;}
.x1f_c00368{left:213.840000px;}
.xa1_c00368{left:214.920000px;}
.x3b_c00368{left:216.810000px;}
.x4e_c00368{left:220.050000px;}
.x2_c00368{left:222.480000px;}
.xb_c00368{left:225.180000px;}
.x25_c00368{left:227.880000px;}
.x2e_c00368{left:233.550000px;}
.x45_c00368{left:235.980000px;}
.x61_c00368{left:237.870000px;}
.x53_c00368{left:240.030000px;}
.x3_c00368{left:241.920000px;}
.x7f_c00368{left:245.430000px;}
.x3c_c00368{left:247.860000px;}
.xc_c00368{left:250.290000px;}
.x26_c00368{left:251.370000px;}
.x4f_c00368{left:256.230000px;}
.x1_c00368{left:260.280000px;}
.x62_c00368{left:261.630000px;}
.x5d_c00368{left:264.600000px;}
.x4_c00368{left:268.110000px;}
.x97_c00368{left:273.240000px;}
.x86_c00368{left:277.290000px;}
.x2f_c00368{left:280.530000px;}
.x3d_c00368{left:282.420000px;}
.x5b_c00368{left:284.850000px;}
.x98_c00368{left:286.470000px;}
.x80_c00368{left:293.220000px;}
.x5_c00368{left:294.300000px;}
.xd_c00368{left:296.460000px;}
.x46_c00368{left:300.780000px;}
.x71_c00368{left:308.070000px;}
.x27_c00368{left:309.150000px;}
.x54_c00368{left:316.170000px;}
.x16_c00368{left:318.600000px;}
.x3e_c00368{left:324.540000px;}
.x7a_c00368{left:329.670000px;}
.x90_c00368{left:333.180000px;}
.x72_c00368{left:334.800000px;}
.x87_c00368{left:335.880000px;}
.x99_c00368{left:338.310000px;}
.xa2_c00368{left:340.740000px;}
.x47_c00368{left:346.140000px;}
.x50_c00368{left:347.760000px;}
.x30_c00368{left:353.970000px;}
.x17_c00368{left:355.320000px;}
.x28_c00368{left:356.940000px;}
.xe_c00368{left:358.560000px;}
.x51_c00368{left:360.720000px;}
.x6_c00368{left:365.580000px;}
.x88_c00368{left:368.010000px;}
.x63_c00368{left:369.360000px;}
.x48_c00368{left:371.250000px;}
.x3f_c00368{left:373.680000px;}
.x22_c00368{left:375.840000px;}
.x9a_c00368{left:377.730000px;}
.x55_c00368{left:378.810000px;}
.x20_c00368{left:379.890000px;}
.x36_c00368{left:382.050000px;}
.x89_c00368{left:385.290000px;}
.x29_c00368{left:388.530000px;}
.x64_c00368{left:391.230000px;}
.x18_c00368{left:394.740000px;}
.x73_c00368{left:396.630000px;}
.x37_c00368{left:399.870000px;}
.x40_c00368{left:401.760000px;}
.x9b_c00368{left:406.080000px;}
.x19_c00368{left:411.750000px;}
.xf_c00368{left:413.100000px;}
.x6b_c00368{left:415.530000px;}
.x49_c00368{left:417.420000px;}
.x10_c00368{left:420.660000px;}
.x81_c00368{left:422.010000px;}
.x2a_c00368{left:424.710000px;}
.x31_c00368{left:426.870000px;}
.x65_c00368{left:429.030000px;}
.x91_c00368{left:436.860000px;}
.x6c_c00368{left:440.640000px;}
.x38_c00368{left:443.340000px;}
.x92_c00368{left:448.470000px;}
.x2b_c00368{left:453.870000px;}
.x74_c00368{left:455.760000px;}
.x8a_c00368{left:458.460000px;}
.x4a_c00368{left:465.750000px;}
.x32_c00368{left:467.370000px;}
.x9c_c00368{left:469.260000px;}
.x56_c00368{left:472.500000px;}
.x39_c00368{left:473.580000px;}
.x93_c00368{left:476.820000px;}
.x41_c00368{left:478.440000px;}
.x6d_c00368{left:480.870000px;}
.x11_c00368{left:482.220000px;}
.x7b_c00368{left:487.080000px;}
.x57_c00368{left:491.130000px;}
.x8b_c00368{left:493.290000px;}
.x75_c00368{left:494.640000px;}
.x4b_c00368{left:496.530000px;}
.x9d_c00368{left:497.880000px;}
.x1a_c00368{left:500.580000px;}
.x8c_c00368{left:505.170000px;}
.x33_c00368{left:509.490000px;}
.x12_c00368{left:510.840000px;}
.x66_c00368{left:515.700000px;}
.x76_c00368{left:518.400000px;}
.x8d_c00368{left:520.020000px;}
.x9e_c00368{left:526.500000px;}
.x82_c00368{left:528.120000px;}
.x6e_c00368{left:530.820000px;}
.x58_c00368{left:533.520000px;}
.x9f_c00368{left:535.950000px;}
.x67_c00368{left:537.570000px;}
.x42_c00368{left:540.540000px;}
.x1b_c00368{left:542.160000px;}
.x7c_c00368{left:543.240000px;}
.x94_c00368{left:549.180000px;}
.x6f_c00368{left:550.260000px;}
.x77_c00368{left:551.340000px;}
.x34_c00368{left:564.840000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
.fse_c00368{font-size:46.666667pt;}
.fs10_c00368{font-size:47.600000pt;}
.fsf_c00368{font-size:49.466667pt;}
.fsa_c00368{font-size:51.333333pt;}
.fs8_c00368{font-size:56.000000pt;}
.fs6_c00368{font-size:57.866667pt;}
.fsd_c00368{font-size:59.733333pt;}
.fs9_c00368{font-size:60.666667pt;}
.fsc_c00368{font-size:61.600000pt;}
.fs4_c00368{font-size:62.533333pt;}
.fs2_c00368{font-size:63.466667pt;}
.fs3_c00368{font-size:64.400000pt;}
.fsb_c00368{font-size:66.266667pt;}
.fs7_c00368{font-size:81.200000pt;}
.fs5_c00368{font-size:89.600000pt;}
.fs1_c00368{font-size:94.266667pt;}
.fs0_c00368{font-size:190.400000pt;}
.y0_c00368{bottom:0.000000pt;}
.y1b_c00368{bottom:123.258667pt;}
.y1a_c00368{bottom:139.504000pt;}
.y19_c00368{bottom:155.341333pt;}
.y18_c00368{bottom:171.213333pt;}
.y17_c00368{bottom:216.062667pt;}
.y16_c00368{bottom:236.445333pt;}
.y15_c00368{bottom:256.828000pt;}
.y14_c00368{bottom:277.462667pt;}
.y13_c00368{bottom:297.360000pt;}
.y12_c00368{bottom:321.445333pt;}
.y11_c00368{bottom:342.708000pt;}
.y10_c00368{bottom:363.528000pt;}
.yf_c00368{bottom:387.120000pt;}
.ye_c00368{bottom:411.882667pt;}
.yd_c00368{bottom:432.514667pt;}
.yc_c00368{bottom:456.240000pt;}
.yb_c00368{bottom:473.280000pt;}
.ya_c00368{bottom:493.030667pt;}
.y9_c00368{bottom:513.488000pt;}
.y8_c00368{bottom:537.790667pt;}
.y7_c00368{bottom:588.324000pt;}
.y6_c00368{bottom:616.885333pt;}
.y5_c00368{bottom:678.420000pt;}
.y4_c00368{bottom:698.132000pt;}
.y3_c00368{bottom:718.284000pt;}
.y2_c00368{bottom:762.373333pt;}
.y1_c00368{bottom:799.972000pt;}
.h10_c00368{height:46.666667pt;}
.h12_c00368{height:47.600000pt;}
.h11_c00368{height:49.466667pt;}
.hc_c00368{height:51.333333pt;}
.ha_c00368{height:56.000000pt;}
.h8_c00368{height:57.866667pt;}
.hf_c00368{height:59.733333pt;}
.hb_c00368{height:60.666667pt;}
.he_c00368{height:61.600000pt;}
.h6_c00368{height:62.533333pt;}
.h4_c00368{height:63.466667pt;}
.h5_c00368{height:64.400000pt;}
.hd_c00368{height:66.266667pt;}
.h9_c00368{height:81.200000pt;}
.h7_c00368{height:89.600000pt;}
.h3_c00368{height:94.266667pt;}
.h2_c00368{height:190.400000pt;}
.h1_c00368{height:893.333333pt;}
.h0_c00368{height:893.466667pt;}
.w0_c00368{width:660.000000pt;}
.x0_c00368{left:0.000000pt;}
.x8e_c00368{left:63.840000pt;}
.x68_c00368{left:69.360000pt;}
.x7d_c00368{left:78.240000pt;}
.x1c_c00368{left:79.200000pt;}
.x13_c00368{left:81.120000pt;}
.x5e_c00368{left:89.520000pt;}
.x83_c00368{left:90.960000pt;}
.xa0_c00368{left:94.560000pt;}
.x3a_c00368{left:96.000000pt;}
.x7_c00368{left:97.440000pt;}
.x35_c00368{left:104.160000pt;}
.x1d_c00368{left:106.080000pt;}
.x84_c00368{left:107.040000pt;}
.x78_c00368{left:109.920000pt;}
.x4c_c00368{left:112.080000pt;}
.x23_c00368{left:113.040000pt;}
.x8_c00368{left:115.920000pt;}
.x14_c00368{left:118.320000pt;}
.x5f_c00368{left:120.960000pt;}
.x59_c00368{left:126.000000pt;}
.x95_c00368{left:128.640000pt;}
.x7e_c00368{left:130.080000pt;}
.x2c_c00368{left:131.520000pt;}
.x1e_c00368{left:134.400000pt;}
.x69_c00368{left:136.800000pt;}
.x96_c00368{left:138.240000pt;}
.x9_c00368{left:139.920000pt;}
.x85_c00368{left:144.480000pt;}
.x5c_c00368{left:148.560000pt;}
.x24_c00368{left:149.760000pt;}
.x43_c00368{left:151.680000pt;}
.x2d_c00368{left:153.120000pt;}
.x70_c00368{left:154.560000pt;}
.x5a_c00368{left:161.040000pt;}
.x4d_c00368{left:162.000000pt;}
.xa_c00368{left:167.280000pt;}
.x60_c00368{left:171.120000pt;}
.x15_c00368{left:172.800000pt;}
.x6a_c00368{left:175.920000pt;}
.x8f_c00368{left:179.040000pt;}
.x79_c00368{left:180.240000pt;}
.x44_c00368{left:182.880000pt;}
.x52_c00368{left:184.320000pt;}
.x21_c00368{left:189.120000pt;}
.x1f_c00368{left:190.080000pt;}
.xa1_c00368{left:191.040000pt;}
.x3b_c00368{left:192.720000pt;}
.x4e_c00368{left:195.600000pt;}
.x2_c00368{left:197.760000pt;}
.xb_c00368{left:200.160000pt;}
.x25_c00368{left:202.560000pt;}
.x2e_c00368{left:207.600000pt;}
.x45_c00368{left:209.760000pt;}
.x61_c00368{left:211.440000pt;}
.x53_c00368{left:213.360000pt;}
.x3_c00368{left:215.040000pt;}
.x7f_c00368{left:218.160000pt;}
.x3c_c00368{left:220.320000pt;}
.xc_c00368{left:222.480000pt;}
.x26_c00368{left:223.440000pt;}
.x4f_c00368{left:227.760000pt;}
.x1_c00368{left:231.360000pt;}
.x62_c00368{left:232.560000pt;}
.x5d_c00368{left:235.200000pt;}
.x4_c00368{left:238.320000pt;}
.x97_c00368{left:242.880000pt;}
.x86_c00368{left:246.480000pt;}
.x2f_c00368{left:249.360000pt;}
.x3d_c00368{left:251.040000pt;}
.x5b_c00368{left:253.200000pt;}
.x98_c00368{left:254.640000pt;}
.x80_c00368{left:260.640000pt;}
.x5_c00368{left:261.600000pt;}
.xd_c00368{left:263.520000pt;}
.x46_c00368{left:267.360000pt;}
.x71_c00368{left:273.840000pt;}
.x27_c00368{left:274.800000pt;}
.x54_c00368{left:281.040000pt;}
.x16_c00368{left:283.200000pt;}
.x3e_c00368{left:288.480000pt;}
.x7a_c00368{left:293.040000pt;}
.x90_c00368{left:296.160000pt;}
.x72_c00368{left:297.600000pt;}
.x87_c00368{left:298.560000pt;}
.x99_c00368{left:300.720000pt;}
.xa2_c00368{left:302.880000pt;}
.x47_c00368{left:307.680000pt;}
.x50_c00368{left:309.120000pt;}
.x30_c00368{left:314.640000pt;}
.x17_c00368{left:315.840000pt;}
.x28_c00368{left:317.280000pt;}
.xe_c00368{left:318.720000pt;}
.x51_c00368{left:320.640000pt;}
.x6_c00368{left:324.960000pt;}
.x88_c00368{left:327.120000pt;}
.x63_c00368{left:328.320000pt;}
.x48_c00368{left:330.000000pt;}
.x3f_c00368{left:332.160000pt;}
.x22_c00368{left:334.080000pt;}
.x9a_c00368{left:335.760000pt;}
.x55_c00368{left:336.720000pt;}
.x20_c00368{left:337.680000pt;}
.x36_c00368{left:339.600000pt;}
.x89_c00368{left:342.480000pt;}
.x29_c00368{left:345.360000pt;}
.x64_c00368{left:347.760000pt;}
.x18_c00368{left:350.880000pt;}
.x73_c00368{left:352.560000pt;}
.x37_c00368{left:355.440000pt;}
.x40_c00368{left:357.120000pt;}
.x9b_c00368{left:360.960000pt;}
.x19_c00368{left:366.000000pt;}
.xf_c00368{left:367.200000pt;}
.x6b_c00368{left:369.360000pt;}
.x49_c00368{left:371.040000pt;}
.x10_c00368{left:373.920000pt;}
.x81_c00368{left:375.120000pt;}
.x2a_c00368{left:377.520000pt;}
.x31_c00368{left:379.440000pt;}
.x65_c00368{left:381.360000pt;}
.x91_c00368{left:388.320000pt;}
.x6c_c00368{left:391.680000pt;}
.x38_c00368{left:394.080000pt;}
.x92_c00368{left:398.640000pt;}
.x2b_c00368{left:403.440000pt;}
.x74_c00368{left:405.120000pt;}
.x8a_c00368{left:407.520000pt;}
.x4a_c00368{left:414.000000pt;}
.x32_c00368{left:415.440000pt;}
.x9c_c00368{left:417.120000pt;}
.x56_c00368{left:420.000000pt;}
.x39_c00368{left:420.960000pt;}
.x93_c00368{left:423.840000pt;}
.x41_c00368{left:425.280000pt;}
.x6d_c00368{left:427.440000pt;}
.x11_c00368{left:428.640000pt;}
.x7b_c00368{left:432.960000pt;}
.x57_c00368{left:436.560000pt;}
.x8b_c00368{left:438.480000pt;}
.x75_c00368{left:439.680000pt;}
.x4b_c00368{left:441.360000pt;}
.x9d_c00368{left:442.560000pt;}
.x1a_c00368{left:444.960000pt;}
.x8c_c00368{left:449.040000pt;}
.x33_c00368{left:452.880000pt;}
.x12_c00368{left:454.080000pt;}
.x66_c00368{left:458.400000pt;}
.x76_c00368{left:460.800000pt;}
.x8d_c00368{left:462.240000pt;}
.x9e_c00368{left:468.000000pt;}
.x82_c00368{left:469.440000pt;}
.x6e_c00368{left:471.840000pt;}
.x58_c00368{left:474.240000pt;}
.x9f_c00368{left:476.400000pt;}
.x67_c00368{left:477.840000pt;}
.x42_c00368{left:480.480000pt;}
.x1b_c00368{left:481.920000pt;}
.x7c_c00368{left:482.880000pt;}
.x94_c00368{left:488.160000pt;}
.x6f_c00368{left:489.120000pt;}
.x77_c00368{left:490.080000pt;}
.x34_c00368{left:502.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_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_4ab86c84425994a9e06b01c2.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;}
.mbc_c00369{transform:matrix(0.011924,-0.000179,0.003750,0.249972,0,0);-ms-transform:matrix(0.011924,-0.000179,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011924,-0.000179,0.003750,0.249972,0,0);}
.m25_c00369{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);}
.mae_c00369{transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);-ms-transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.012704,-0.000191,0.003750,0.249972,0,0);}
.ma_c00369{transform:matrix(0.015825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015825,0.000000,0.000000,0.250000,0,0);}
.mc6_c00369{transform:matrix(0.024942,-0.000374,0.003750,0.249972,0,0);-ms-transform:matrix(0.024942,-0.000374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.024942,-0.000374,0.003750,0.249972,0,0);}
.mbf_c00369{transform:matrix(0.093384,-0.001401,0.003750,0.249972,0,0);-ms-transform:matrix(0.093384,-0.001401,0.003750,0.249972,0,0);-webkit-transform:matrix(0.093384,-0.001401,0.003750,0.249972,0,0);}
.m103_c00369{transform:matrix(0.110420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00369{transform:matrix(0.117762,-0.001766,0.003750,0.249972,0,0);-ms-transform:matrix(0.117762,-0.001766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.117762,-0.001766,0.003750,0.249972,0,0);}
.mca_c00369{transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);}
.m7e_c00369{transform:matrix(0.126696,-0.001900,0.003750,0.249972,0,0);-ms-transform:matrix(0.126696,-0.001900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.126696,-0.001900,0.003750,0.249972,0,0);}
.m83_c00369{transform:matrix(0.135855,-0.002038,0.003750,0.249972,0,0);-ms-transform:matrix(0.135855,-0.002038,0.003750,0.249972,0,0);-webkit-transform:matrix(0.135855,-0.002038,0.003750,0.249972,0,0);}
.m54_c00369{transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.139613,-0.001815,0.003250,0.249979,0,0);-ms-transform:matrix(0.139613,-0.001815,0.003250,0.249979,0,0);-webkit-transform:matrix(0.139613,-0.001815,0.003250,0.249979,0,0);}
.m6c_c00369{transform:matrix(0.142674,-0.002140,0.003750,0.249972,0,0);-ms-transform:matrix(0.142674,-0.002140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.142674,-0.002140,0.003750,0.249972,0,0);}
.m1c_c00369{transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);}
.m9e_c00369{transform:matrix(0.147508,-0.002213,0.003750,0.249972,0,0);-ms-transform:matrix(0.147508,-0.002213,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147508,-0.002213,0.003750,0.249972,0,0);}
.m1b_c00369{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);}
.m53_c00369{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);}
.m2_c00369{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.mc1_c00369{transform:matrix(0.150338,-0.002255,0.003750,0.249972,0,0);-ms-transform:matrix(0.150338,-0.002255,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150338,-0.002255,0.003750,0.249972,0,0);}
.m6e_c00369{transform:matrix(0.150538,-0.002258,0.003750,0.249972,0,0);-ms-transform:matrix(0.150538,-0.002258,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150538,-0.002258,0.003750,0.249972,0,0);}
.m9c_c00369{transform:matrix(0.150993,-0.002265,0.003750,0.249972,0,0);-ms-transform:matrix(0.150993,-0.002265,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150993,-0.002265,0.003750,0.249972,0,0);}
.m27_c00369{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);}
.m96_c00369{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);}
.m68_c00369{transform:matrix(0.154028,-0.002310,0.003750,0.249972,0,0);-ms-transform:matrix(0.154028,-0.002310,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154028,-0.002310,0.003750,0.249972,0,0);}
.mee_c00369{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);}
.m97_c00369{transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);-ms-transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);}
.m8b_c00369{transform:matrix(0.156052,-0.002341,0.003750,0.249972,0,0);-ms-transform:matrix(0.156052,-0.002341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156052,-0.002341,0.003750,0.249972,0,0);}
.m91_c00369{transform:matrix(0.156082,-0.002341,0.003750,0.249972,0,0);-ms-transform:matrix(0.156082,-0.002341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156082,-0.002341,0.003750,0.249972,0,0);}
.m9d_c00369{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);}
.m2a_c00369{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);}
.m5f_c00369{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);}
.m10c_c00369{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);}
.m4c_c00369{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);}
.m2d_c00369{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);}
.m26_c00369{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);}
.m55_c00369{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);}
.m76_c00369{transform:matrix(0.160462,-0.002407,0.003750,0.249972,0,0);-ms-transform:matrix(0.160462,-0.002407,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160462,-0.002407,0.003750,0.249972,0,0);}
.md4_c00369{transform:matrix(0.160673,-0.001928,0.003000,0.249982,0,0);-ms-transform:matrix(0.160673,-0.001928,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160673,-0.001928,0.003000,0.249982,0,0);}
.m105_c00369{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{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);}
.m6b_c00369{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);}
.m85_c00369{transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);-ms-transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163012,-0.002445,0.003750,0.249972,0,0);}
.ma7_c00369{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);}
.m80_c00369{transform:matrix(0.164751,-0.002471,0.003750,0.249972,0,0);-ms-transform:matrix(0.164751,-0.002471,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164751,-0.002471,0.003750,0.249972,0,0);}
.m8d_c00369{transform:matrix(0.165106,-0.002477,0.003750,0.249972,0,0);-ms-transform:matrix(0.165106,-0.002477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165106,-0.002477,0.003750,0.249972,0,0);}
.mdc_c00369{transform:matrix(0.166038,-0.001992,0.003000,0.249982,0,0);-ms-transform:matrix(0.166038,-0.001992,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166038,-0.001992,0.003000,0.249982,0,0);}
.m8e_c00369{transform:matrix(0.166736,-0.002501,0.003750,0.249972,0,0);-ms-transform:matrix(0.166736,-0.002501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166736,-0.002501,0.003750,0.249972,0,0);}
.m95_c00369{transform:matrix(0.167056,-0.002506,0.003750,0.249972,0,0);-ms-transform:matrix(0.167056,-0.002506,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167056,-0.002506,0.003750,0.249972,0,0);}
.m9f_c00369{transform:matrix(0.167931,-0.002519,0.003750,0.249972,0,0);-ms-transform:matrix(0.167931,-0.002519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167931,-0.002519,0.003750,0.249972,0,0);}
.mab_c00369{transform:matrix(0.168001,-0.002520,0.003750,0.249972,0,0);-ms-transform:matrix(0.168001,-0.002520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168001,-0.002520,0.003750,0.249972,0,0);}
.m31_c00369{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);}
.m69_c00369{transform:matrix(0.168206,-0.002523,0.003750,0.249972,0,0);-ms-transform:matrix(0.168206,-0.002523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168206,-0.002523,0.003750,0.249972,0,0);}
.m9b_c00369{transform:matrix(0.168511,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168511,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168511,-0.002528,0.003750,0.249972,0,0);}
.md3_c00369{transform:matrix(0.169118,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169118,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169118,-0.002029,0.003000,0.249982,0,0);}
.m101_c00369{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);}
.md6_c00369{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);}
.m7c_c00369{transform:matrix(0.170481,-0.002557,0.003750,0.249972,0,0);-ms-transform:matrix(0.170481,-0.002557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170481,-0.002557,0.003750,0.249972,0,0);}
.mf5_c00369{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);}
.ma9_c00369{transform:matrix(0.171426,-0.002571,0.003750,0.249972,0,0);-ms-transform:matrix(0.171426,-0.002571,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171426,-0.002571,0.003750,0.249972,0,0);}
.m5c_c00369{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);}
.m78_c00369{transform:matrix(0.171811,-0.002577,0.003750,0.249972,0,0);-ms-transform:matrix(0.171811,-0.002577,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171811,-0.002577,0.003750,0.249972,0,0);}
.m21_c00369{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);}
.mdd_c00369{transform:matrix(0.172058,-0.002065,0.003000,0.249982,0,0);-ms-transform:matrix(0.172058,-0.002065,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172058,-0.002065,0.003000,0.249982,0,0);}
.mbe_c00369{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);}
.m3e_c00369{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);}
.m10_c00369{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);}
.mc8_c00369{transform:matrix(0.173445,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173445,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173445,-0.002602,0.003750,0.249972,0,0);}
.m82_c00369{transform:matrix(0.173485,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173485,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173485,-0.002602,0.003750,0.249972,0,0);}
.md_c00369{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);}
.mc9_c00369{transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);}
.m79_c00369{transform:matrix(0.176450,-0.002647,0.003750,0.249972,0,0);-ms-transform:matrix(0.176450,-0.002647,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176450,-0.002647,0.003750,0.249972,0,0);}
.ma3_c00369{transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176750,-0.002651,0.003750,0.249972,0,0);}
.m22_c00369{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);}
.ma8_c00369{transform:matrix(0.177530,-0.002663,0.003750,0.249972,0,0);-ms-transform:matrix(0.177530,-0.002663,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177530,-0.002663,0.003750,0.249972,0,0);}
.ma6_c00369{transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);}
.m75_c00369{transform:matrix(0.178450,-0.002677,0.003750,0.249972,0,0);-ms-transform:matrix(0.178450,-0.002677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178450,-0.002677,0.003750,0.249972,0,0);}
.m33_c00369{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);}
.m77_c00369{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);}
.mb2_c00369{transform:matrix(0.179220,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179220,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179220,-0.002688,0.003750,0.249972,0,0);}
.m90_c00369{transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);}
.mc3_c00369{transform:matrix(0.180000,-0.002700,0.003750,0.249972,0,0);-ms-transform:matrix(0.180000,-0.002700,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180000,-0.002700,0.003750,0.249972,0,0);}
.m20_c00369{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);}
.md0_c00369{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);}
.mce_c00369{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);}
.m51_c00369{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);}
.m50_c00369{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);}
.m70_c00369{transform:matrix(0.182230,-0.002733,0.003750,0.249972,0,0);-ms-transform:matrix(0.182230,-0.002733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182230,-0.002733,0.003750,0.249972,0,0);}
.m17_c00369{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);}
.m34_c00369{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);}
.md8_c00369{transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);}
.m67_c00369{transform:matrix(0.183144,-0.002747,0.003750,0.249972,0,0);-ms-transform:matrix(0.183144,-0.002747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183144,-0.002747,0.003750,0.249972,0,0);}
.mc7_c00369{transform:matrix(0.183204,-0.002748,0.003750,0.249972,0,0);-ms-transform:matrix(0.183204,-0.002748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183204,-0.002748,0.003750,0.249972,0,0);}
.m1e_c00369{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);}
.m4e_c00369{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);}
.ma5_c00369{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);}
.m52_c00369{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);}
.m11_c00369{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);}
.m35_c00369{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);}
.m39_c00369{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);}
.m7a_c00369{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);}
.m4f_c00369{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);}
.m84_c00369{transform:matrix(0.186829,-0.002802,0.003750,0.249972,0,0);-ms-transform:matrix(0.186829,-0.002802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186829,-0.002802,0.003750,0.249972,0,0);}
.m56_c00369{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);}
.mb4_c00369{transform:matrix(0.187664,-0.002815,0.003750,0.249972,0,0);-ms-transform:matrix(0.187664,-0.002815,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187664,-0.002815,0.003750,0.249972,0,0);}
.mcd_c00369{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);}
.me9_c00369{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);}
.m6_c00369{transform:matrix(0.188189,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188189,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188189,-0.002446,0.003250,0.249979,0,0);}
.mf_c00369{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);}
.m65_c00369{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);}
.mdf_c00369{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);}
.m13_c00369{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);}
.m74_c00369{transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);}
.md2_c00369{transform:matrix(0.189416,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189416,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189416,-0.002273,0.003000,0.249982,0,0);}
.m42_c00369{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);}
.mb1_c00369{transform:matrix(0.189759,-0.002846,0.003750,0.249972,0,0);-ms-transform:matrix(0.189759,-0.002846,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189759,-0.002846,0.003750,0.249972,0,0);}
.mbd_c00369{transform:matrix(0.190419,-0.002856,0.003750,0.249972,0,0);-ms-transform:matrix(0.190419,-0.002856,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190419,-0.002856,0.003750,0.249972,0,0);}
.mda_c00369{transform:matrix(0.190456,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190456,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190456,-0.002285,0.003000,0.249982,0,0);}
.m28_c00369{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);}
.mc5_c00369{transform:matrix(0.191143,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191143,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191143,-0.002867,0.003750,0.249972,0,0);}
.md5_c00369{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);}
.m72_c00369{transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);}
.me1_c00369{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);}
.me8_c00369{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);}
.mc_c00369{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);}
.maa_c00369{transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192588,-0.002889,0.003750,0.249972,0,0);}
.m1d_c00369{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);}
.m2f_c00369{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);}
.m19_c00369{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m108_c00369{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);}
.md1_c00369{transform:matrix(0.194601,-0.002335,0.003000,0.249982,0,0);-ms-transform:matrix(0.194601,-0.002335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194601,-0.002335,0.003000,0.249982,0,0);}
.m73_c00369{transform:matrix(0.194633,-0.002919,0.003750,0.249972,0,0);-ms-transform:matrix(0.194633,-0.002919,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194633,-0.002919,0.003750,0.249972,0,0);}
.mb8_c00369{transform:matrix(0.194663,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194663,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194663,-0.002920,0.003750,0.249972,0,0);}
.m58_c00369{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);}
.m1a_c00369{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);}
.m6d_c00369{transform:matrix(0.196048,-0.002941,0.003750,0.249972,0,0);-ms-transform:matrix(0.196048,-0.002941,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196048,-0.002941,0.003750,0.249972,0,0);}
.mfd_c00369{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);}
.m3c_c00369{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);}
.m15_c00369{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);}
.m57_c00369{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);}
.m6a_c00369{transform:matrix(0.196838,-0.002953,0.003750,0.249972,0,0);-ms-transform:matrix(0.196838,-0.002953,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196838,-0.002953,0.003750,0.249972,0,0);}
.mef_c00369{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);}
.mf3_c00369{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);}
.m7f_c00369{transform:matrix(0.197608,-0.002964,0.003750,0.249972,0,0);-ms-transform:matrix(0.197608,-0.002964,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197608,-0.002964,0.003750,0.249972,0,0);}
.mfa_c00369{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);}
.m36_c00369{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);}
.m2e_c00369{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);}
.m4b_c00369{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);}
.m18_c00369{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);}
.m99_c00369{transform:matrix(0.198833,-0.002982,0.003750,0.249972,0,0);-ms-transform:matrix(0.198833,-0.002982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198833,-0.002982,0.003750,0.249972,0,0);}
.m60_c00369{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);}
.m14_c00369{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);}
.m98_c00369{transform:matrix(0.199603,-0.002994,0.003750,0.249972,0,0);-ms-transform:matrix(0.199603,-0.002994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199603,-0.002994,0.003750,0.249972,0,0);}
.m40_c00369{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);}
.mc2_c00369{transform:matrix(0.199793,-0.002997,0.003750,0.249972,0,0);-ms-transform:matrix(0.199793,-0.002997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199793,-0.002997,0.003750,0.249972,0,0);}
.m10a_c00369{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_c00369{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);}
.m16_c00369{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);}
.m8c_c00369{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);}
.m7b_c00369{transform:matrix(0.200972,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.200972,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200972,-0.003015,0.003750,0.249972,0,0);}
.m3d_c00369{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);}
.m1f_c00369{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);}
.m37_c00369{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);}
.m61_c00369{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);}
.m93_c00369{transform:matrix(0.202797,-0.003042,0.003750,0.249972,0,0);-ms-transform:matrix(0.202797,-0.003042,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202797,-0.003042,0.003750,0.249972,0,0);}
.mb9_c00369{transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203022,-0.003045,0.003750,0.249972,0,0);}
.m9a_c00369{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);}
.m64_c00369{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);}
.m4a_c00369{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);}
.m104_c00369{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);}
.mb6_c00369{transform:matrix(0.203567,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203567,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203567,-0.003054,0.003750,0.249972,0,0);}
.m3f_c00369{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);}
.m7d_c00369{transform:matrix(0.203832,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203832,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203832,-0.003057,0.003750,0.249972,0,0);}
.ma0_c00369{transform:matrix(0.204697,-0.003070,0.003750,0.249972,0,0);-ms-transform:matrix(0.204697,-0.003070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204697,-0.003070,0.003750,0.249972,0,0);}
.mbb_c00369{transform:matrix(0.204912,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204912,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204912,-0.003074,0.003750,0.249972,0,0);}
.m10f_c00369{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);}
.m12_c00369{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);}
.m2c_c00369{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);}
.m5a_c00369{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);}
.m102_c00369{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);}
.me_c00369{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);}
.me0_c00369{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);}
.mf0_c00369{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);}
.mb7_c00369{transform:matrix(0.208867,-0.003133,0.003750,0.249972,0,0);-ms-transform:matrix(0.208867,-0.003133,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208867,-0.003133,0.003750,0.249972,0,0);}
.mad_c00369{transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);-ms-transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209011,-0.003135,0.003750,0.249972,0,0);}
.m29_c00369{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);}
.m44_c00369{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);}
.mfe_c00369{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);}
.m5b_c00369{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);}
.mb3_c00369{transform:matrix(0.210771,-0.003162,0.003750,0.249972,0,0);-ms-transform:matrix(0.210771,-0.003162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210771,-0.003162,0.003750,0.249972,0,0);}
.mfc_c00369{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);}
.m87_c00369{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);}
.m63_c00369{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);}
.m32_c00369{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);}
.m92_c00369{transform:matrix(0.212656,-0.003190,0.003750,0.249972,0,0);-ms-transform:matrix(0.212656,-0.003190,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212656,-0.003190,0.003750,0.249972,0,0);}
.mcc_c00369{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);}
.me2_c00369{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);}
.m94_c00369{transform:matrix(0.212981,-0.003195,0.003750,0.249972,0,0);-ms-transform:matrix(0.212981,-0.003195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212981,-0.003195,0.003750,0.249972,0,0);}
.mc4_c00369{transform:matrix(0.213416,-0.003201,0.003750,0.249972,0,0);-ms-transform:matrix(0.213416,-0.003201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213416,-0.003201,0.003750,0.249972,0,0);}
.mb0_c00369{transform:matrix(0.213471,-0.003202,0.003750,0.249972,0,0);-ms-transform:matrix(0.213471,-0.003202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213471,-0.003202,0.003750,0.249972,0,0);}
.me7_c00369{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);}
.md7_c00369{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);}
.m3a_c00369{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);}
.maf_c00369{transform:matrix(0.215931,-0.003239,0.003750,0.249972,0,0);-ms-transform:matrix(0.215931,-0.003239,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215931,-0.003239,0.003750,0.249972,0,0);}
.mff_c00369{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);}
.mfb_c00369{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);}
.mf7_c00369{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);}
.m47_c00369{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);}
.m49_c00369{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);}
.m4d_c00369{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);}
.med_c00369{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);}
.mb5_c00369{transform:matrix(0.221535,-0.003323,0.003750,0.249972,0,0);-ms-transform:matrix(0.221535,-0.003323,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221535,-0.003323,0.003750,0.249972,0,0);}
.m10d_c00369{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);}
.md9_c00369{transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);-ms-transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222849,-0.002674,0.003000,0.249982,0,0);}
.m5d_c00369{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);}
.mec_c00369{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);}
.mdb_c00369{transform:matrix(0.224244,-0.002691,0.003000,0.249982,0,0);-ms-transform:matrix(0.224244,-0.002691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224244,-0.002691,0.003000,0.249982,0,0);}
.m30_c00369{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);}
.m4_c00369{transform:matrix(0.228146,-0.002966,0.003250,0.249979,0,0);-ms-transform:matrix(0.228146,-0.002966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228146,-0.002966,0.003250,0.249979,0,0);}
.m66_c00369{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);}
.m10e_c00369{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);}
.me6_c00369{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);}
.m3_c00369{transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);}
.m62_c00369{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.mcb_c00369{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);}
.mc0_c00369{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);}
.m41_c00369{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);}
.m48_c00369{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.me5_c00369{transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00369{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);}
.m81_c00369{transform:matrix(0.238773,-0.003582,0.003750,0.249972,0,0);-ms-transform:matrix(0.238773,-0.003582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238773,-0.003582,0.003750,0.249972,0,0);}
.m5e_c00369{transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241020,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.243769,-0.003169,0.003250,0.249979,0,0);-ms-transform:matrix(0.243769,-0.003169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243769,-0.003169,0.003250,0.249979,0,0);}
.m59_c00369{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);}
.mf8_c00369{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{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);}
.mf2_c00369{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);}
.m6f_c00369{transform:matrix(0.249602,-0.003744,0.003750,0.249972,0,0);-ms-transform:matrix(0.249602,-0.003744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249602,-0.003744,0.003750,0.249972,0,0);}
.mba_c00369{transform:matrix(0.250302,-0.003755,0.003750,0.249972,0,0);-ms-transform:matrix(0.250302,-0.003755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250302,-0.003755,0.003750,0.249972,0,0);}
.m10b_c00369{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);}
.m107_c00369{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);}
.mea_c00369{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);}
.meb_c00369{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);}
.m71_c00369{transform:matrix(0.265985,-0.003990,0.003750,0.249972,0,0);-ms-transform:matrix(0.265985,-0.003990,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265985,-0.003990,0.003750,0.249972,0,0);}
.m46_c00369{transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268545,0.000000,0.000000,0.250000,0,0);}
.mcf_c00369{transform:matrix(0.270386,-0.003245,0.003000,0.249982,0,0);-ms-transform:matrix(0.270386,-0.003245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270386,-0.003245,0.003000,0.249982,0,0);}
.m45_c00369{transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);}
.mde_c00369{transform:matrix(0.275385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275385,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.288303,-0.004325,0.003750,0.249972,0,0);-ms-transform:matrix(0.288303,-0.004325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288303,-0.004325,0.003750,0.249972,0,0);}
.me4_c00369{transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);}
.m89_c00369{transform:matrix(0.293597,-0.004404,0.003750,0.249972,0,0);-ms-transform:matrix(0.293597,-0.004404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.293597,-0.004404,0.003750,0.249972,0,0);}
.m43_c00369{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);}
.m88_c00369{transform:matrix(0.313385,-0.004701,0.003750,0.249972,0,0);-ms-transform:matrix(0.313385,-0.004701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313385,-0.004701,0.003750,0.249972,0,0);}
.mf6_c00369{transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318340,0.000000,0.000000,0.250000,0,0);}
.mf9_c00369{transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332220,0.000000,0.000000,0.250000,0,0);}
.ma1_c00369{transform:matrix(0.337632,-0.005064,0.003750,0.249972,0,0);-ms-transform:matrix(0.337632,-0.005064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.337632,-0.005064,0.003750,0.249972,0,0);}
.ma2_c00369{transform:matrix(0.338742,-0.005081,0.003750,0.249972,0,0);-ms-transform:matrix(0.338742,-0.005081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.338742,-0.005081,0.003750,0.249972,0,0);}
.m86_c00369{transform:matrix(0.355640,-0.005335,0.003750,0.249972,0,0);-ms-transform:matrix(0.355640,-0.005335,0.003750,0.249972,0,0);-webkit-transform:matrix(0.355640,-0.005335,0.003750,0.249972,0,0);}
.m100_c00369{transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.393635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393635,0.000000,0.000000,0.250000,0,0);}
.mac_c00369{transform:matrix(0.394701,-0.005921,0.003750,0.249972,0,0);-ms-transform:matrix(0.394701,-0.005921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.394701,-0.005921,0.003750,0.249972,0,0);}
.m8_c00369{transform:matrix(0.396422,-0.005153,0.003250,0.249979,0,0);-ms-transform:matrix(0.396422,-0.005153,0.003250,0.249979,0,0);-webkit-transform:matrix(0.396422,-0.005153,0.003250,0.249979,0,0);}
.me3_c00369{transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436350,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.459956,-0.005979,0.003250,0.249979,0,0);-ms-transform:matrix(0.459956,-0.005979,0.003250,0.249979,0,0);-webkit-transform:matrix(0.459956,-0.005979,0.003250,0.249979,0,0);}
.m8f_c00369{transform:matrix(0.472977,-0.007095,0.003750,0.249972,0,0);-ms-transform:matrix(0.472977,-0.007095,0.003750,0.249972,0,0);-webkit-transform:matrix(0.472977,-0.007095,0.003750,0.249972,0,0);}
.mb_c00369{transform:matrix(0.488625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488625,0.000000,0.000000,0.250000,0,0);}
.mf4_c00369{transform:matrix(0.528710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528710,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.550350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550350,0.000000,0.000000,0.250000,0,0);}
.mf1_c00369{transform:matrix(0.574120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574120,0.000000,0.000000,0.250000,0,0);}
.m109_c00369{transform:matrix(0.597655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597655,0.000000,0.000000,0.250000,0,0);}
.m106_c00369{transform:matrix(0.669980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669980,0.000000,0.000000,0.250000,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;}
.fs14_c00369{font-size:52.500000px;}
.fs10_c00369{font-size:60.900000px;}
.fs13_c00369{font-size:63.000000px;}
.fsf_c00369{font-size:64.057205px;}
.fs3_c00369{font-size:66.155589px;}
.fs9_c00369{font-size:67.200000px;}
.fse_c00369{font-size:67.207560px;}
.fs6_c00369{font-size:68.250000px;}
.fs5_c00369{font-size:69.300000px;}
.fsc_c00369{font-size:69.307796px;}
.fs4_c00369{font-size:70.350000px;}
.fs11_c00369{font-size:70.355065px;}
.fsa_c00369{font-size:70.357914px;}
.fs8_c00369{font-size:71.400000px;}
.fsd_c00369{font-size:71.408032px;}
.fs7_c00369{font-size:72.450000px;}
.fsb_c00369{font-size:72.458150px;}
.fs1_c00369{font-size:74.550000px;}
.fs12_c00369{font-size:74.555367px;}
.fs2_c00369{font-size:122.860380px;}
.fs0_c00369{font-size:133.350000px;}
.y0_c00369{bottom:0.000000px;}
.yb9_c00369{bottom:137.536500px;}
.yb8_c00369{bottom:155.139000px;}
.yb7_c00369{bottom:173.955000px;}
.yb6_c00369{bottom:224.518500px;}
.yaf_c00369{bottom:251.369988px;}
.yb0_c00369{bottom:251.830980px;}
.yb1_c00369{bottom:252.399768px;}
.yb2_c00369{bottom:252.885144px;}
.yb3_c00369{bottom:253.478820px;}
.yb4_c00369{bottom:253.742838px;}
.yb5_c00369{bottom:254.129304px;}
.ya7_c00369{bottom:278.635500px;}
.ya8_c00369{bottom:279.007722px;}
.ya9_c00369{bottom:279.306252px;}
.yaa_c00369{bottom:279.614106px;}
.yab_c00369{bottom:280.135980px;}
.yac_c00369{bottom:280.845378px;}
.yad_c00369{bottom:281.065914px;}
.ya6_c00369{bottom:281.073000px;}
.yae_c00369{bottom:281.767932px;}
.ya5_c00369{bottom:309.265163px;}
.ya3_c00369{bottom:309.265770px;}
.ya4_c00369{bottom:309.265808px;}
.ya2_c00369{bottom:309.266355px;}
.y9f_c00369{bottom:335.991300px;}
.ya1_c00369{bottom:335.991420px;}
.ya0_c00369{bottom:335.991555px;}
.y9b_c00369{bottom:335.991608px;}
.y9e_c00369{bottom:335.991623px;}
.y9d_c00369{bottom:335.991645px;}
.y9c_c00369{bottom:335.991885px;}
.y99_c00369{bottom:335.992088px;}
.y9a_c00369{bottom:335.992320px;}
.y97_c00369{bottom:357.812618px;}
.y96_c00369{bottom:357.813075px;}
.y98_c00369{bottom:357.813083px;}
.y95_c00369{bottom:357.813720px;}
.y94_c00369{bottom:357.813960px;}
.y93_c00369{bottom:357.814455px;}
.y90_c00369{bottom:357.814463px;}
.y8f_c00369{bottom:357.814643px;}
.y92_c00369{bottom:357.814673px;}
.y91_c00369{bottom:357.814718px;}
.y8a_c00369{bottom:382.858448px;}
.y8b_c00369{bottom:382.858763px;}
.y8d_c00369{bottom:382.858950px;}
.y8e_c00369{bottom:382.858988px;}
.y8c_c00369{bottom:382.859168px;}
.y7f_c00369{bottom:408.220073px;}
.y80_c00369{bottom:408.799718px;}
.y81_c00369{bottom:408.930638px;}
.y82_c00369{bottom:409.159035px;}
.y83_c00369{bottom:409.304445px;}
.y84_c00369{bottom:409.555253px;}
.y85_c00369{bottom:410.222783px;}
.y86_c00369{bottom:410.437358px;}
.y87_c00369{bottom:410.935365px;}
.y88_c00369{bottom:411.139740px;}
.y89_c00369{bottom:411.226995px;}
.y70_c00369{bottom:432.281978px;}
.y71_c00369{bottom:432.282383px;}
.y72_c00369{bottom:432.282915px;}
.y7c_c00369{bottom:432.283425px;}
.y73_c00369{bottom:432.283470px;}
.y7d_c00369{bottom:432.283703px;}
.y75_c00369{bottom:432.283830px;}
.y7b_c00369{bottom:432.284070px;}
.y74_c00369{bottom:432.284198px;}
.y7e_c00369{bottom:432.284235px;}
.y76_c00369{bottom:432.284340px;}
.y7a_c00369{bottom:432.284438px;}
.y79_c00369{bottom:432.284460px;}
.y78_c00369{bottom:432.284805px;}
.y77_c00369{bottom:432.285000px;}
.y68_c00369{bottom:459.750420px;}
.y6b_c00369{bottom:459.750540px;}
.y6c_c00369{bottom:459.750750px;}
.y6e_c00369{bottom:459.750960px;}
.y69_c00369{bottom:459.750975px;}
.y6a_c00369{bottom:459.751035px;}
.y6f_c00369{bottom:459.751148px;}
.y6d_c00369{bottom:459.751155px;}
.y67_c00369{bottom:486.164828px;}
.y65_c00369{bottom:510.406058px;}
.y62_c00369{bottom:510.406065px;}
.y63_c00369{bottom:510.406147px;}
.y60_c00369{bottom:510.406223px;}
.y61_c00369{bottom:510.406282px;}
.y5f_c00369{bottom:510.406568px;}
.y66_c00369{bottom:510.406635px;}
.y58_c00369{bottom:510.406695px;}
.y64_c00369{bottom:510.406703px;}
.y5e_c00369{bottom:510.406912px;}
.y5d_c00369{bottom:510.406935px;}
.y5b_c00369{bottom:510.407115px;}
.y5a_c00369{bottom:510.407160px;}
.y59_c00369{bottom:510.407182px;}
.y5c_c00369{bottom:510.407325px;}
.y4d_c00369{bottom:531.083235px;}
.y4e_c00369{bottom:531.404265px;}
.y4f_c00369{bottom:531.944505px;}
.y50_c00369{bottom:532.482645px;}
.y51_c00369{bottom:532.756313px;}
.y52_c00369{bottom:533.317808px;}
.y53_c00369{bottom:533.753325px;}
.y54_c00369{bottom:534.128385px;}
.y55_c00369{bottom:535.000522px;}
.y56_c00369{bottom:535.255845px;}
.y57_c00369{bottom:535.746225px;}
.y46_c00369{bottom:559.693253px;}
.y47_c00369{bottom:560.094682px;}
.y48_c00369{bottom:560.542643px;}
.y49_c00369{bottom:560.812305px;}
.y4a_c00369{bottom:561.239280px;}
.y4b_c00369{bottom:561.626400px;}
.y4c_c00369{bottom:562.323300px;}
.y43_c00369{bottom:587.523000px;}
.y44_c00369{bottom:588.645098px;}
.y45_c00369{bottom:589.147365px;}
.y34_c00369{bottom:610.198500px;}
.y35_c00369{bottom:610.636500px;}
.y36_c00369{bottom:610.828500px;}
.y37_c00369{bottom:611.191500px;}
.y38_c00369{bottom:611.502000px;}
.y39_c00369{bottom:611.752500px;}
.y3a_c00369{bottom:612.414000px;}
.y3b_c00369{bottom:612.853500px;}
.y3c_c00369{bottom:613.036500px;}
.y3d_c00369{bottom:613.212000px;}
.y3e_c00369{bottom:613.560000px;}
.y3f_c00369{bottom:613.822500px;}
.y40_c00369{bottom:614.190000px;}
.y41_c00369{bottom:614.514000px;}
.y42_c00369{bottom:614.707500px;}
.y28_c00369{bottom:632.610000px;}
.y29_c00369{bottom:632.989500px;}
.y2a_c00369{bottom:633.274500px;}
.y2b_c00369{bottom:633.657000px;}
.y2c_c00369{bottom:634.330500px;}
.y2d_c00369{bottom:634.872000px;}
.y2e_c00369{bottom:635.290500px;}
.y2f_c00369{bottom:636.193500px;}
.y30_c00369{bottom:636.570000px;}
.y31_c00369{bottom:636.897000px;}
.y32_c00369{bottom:637.596000px;}
.y33_c00369{bottom:637.945500px;}
.y1b_c00369{bottom:656.101500px;}
.y1c_c00369{bottom:657.232500px;}
.y1d_c00369{bottom:657.417000px;}
.y1e_c00369{bottom:657.681000px;}
.y1f_c00369{bottom:658.269000px;}
.y20_c00369{bottom:658.569000px;}
.y21_c00369{bottom:658.944000px;}
.y22_c00369{bottom:659.130000px;}
.y23_c00369{bottom:659.323500px;}
.y24_c00369{bottom:659.662500px;}
.y25_c00369{bottom:660.009000px;}
.y26_c00369{bottom:660.579000px;}
.y27_c00369{bottom:660.813000px;}
.y1a_c00369{bottom:687.046500px;}
.y19_c00369{bottom:713.352000px;}
.y18_c00369{bottom:736.858500px;}
.yf_c00369{bottom:763.020000px;}
.y10_c00369{bottom:763.266000px;}
.y11_c00369{bottom:763.938000px;}
.y12_c00369{bottom:764.095500px;}
.y13_c00369{bottom:764.299500px;}
.y14_c00369{bottom:764.724000px;}
.y15_c00369{bottom:765.690000px;}
.y16_c00369{bottom:765.975000px;}
.y17_c00369{bottom:767.155500px;}
.ya_c00369{bottom:790.023000px;}
.yb_c00369{bottom:790.609500px;}
.yc_c00369{bottom:791.386500px;}
.yd_c00369{bottom:791.976000px;}
.ye_c00369{bottom:792.327000px;}
.y9_c00369{bottom:818.626500px;}
.y8_c00369{bottom:828.226287px;}
.y2_c00369{bottom:855.090000px;}
.y3_c00369{bottom:857.794500px;}
.y4_c00369{bottom:858.529767px;}
.y5_c00369{bottom:859.899467px;}
.y6_c00369{bottom:860.348707px;}
.y7_c00369{bottom:861.131730px;}
.y1_c00369{bottom:905.326500px;}
.h16_c00369{height:52.500000px;}
.h12_c00369{height:60.900000px;}
.h15_c00369{height:63.000000px;}
.h11_c00369{height:64.057205px;}
.h5_c00369{height:66.155589px;}
.hb_c00369{height:67.200000px;}
.h10_c00369{height:67.207560px;}
.h8_c00369{height:68.250000px;}
.h7_c00369{height:69.300000px;}
.he_c00369{height:69.307796px;}
.h6_c00369{height:70.350000px;}
.h13_c00369{height:70.355065px;}
.hc_c00369{height:70.357914px;}
.ha_c00369{height:71.400000px;}
.hf_c00369{height:71.408032px;}
.h9_c00369{height:72.450000px;}
.hd_c00369{height:72.458150px;}
.h3_c00369{height:74.550000px;}
.h14_c00369{height:74.555367px;}
.h4_c00369{height:122.860380px;}
.h2_c00369{height:133.350000px;}
.h0_c00369{height:1008.450000px;}
.h1_c00369{height:1008.750000px;}
.w0_c00369{width:711.720000px;}
.w1_c00369{width:711.750000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:119.340000px;}
.x5_c00369{left:121.287000px;}
.x9_c00369{left:129.600000px;}
.xa_c00369{left:175.770000px;}
.x4_c00369{left:177.120000px;}
.x56_c00369{left:178.395000px;}
.x97_c00369{left:191.970000px;}
.x22_c00369{left:195.213000px;}
.x8c_c00369{left:196.719000px;}
.x16_c00369{left:207.357000px;}
.x59_c00369{left:212.103435px;}
.x1a_c00369{left:213.430500px;}
.x8f_c00369{left:214.547706px;}
.xb_c00369{left:217.350000px;}
.x49_c00369{left:221.794500px;}
.x5c_c00369{left:224.297918px;}
.x71_c00369{left:225.459173px;}
.x8d_c00369{left:227.737500px;}
.x92_c00369{left:229.230000px;}
.x40_c00369{left:231.835500px;}
.xa0_c00369{left:234.360000px;}
.x1b_c00369{left:235.840500px;}
.xc_c00369{left:239.490000px;}
.x4a_c00369{left:240.933000px;}
.x78_c00369{left:242.504168px;}
.x6c_c00369{left:246.791535px;}
.x17_c00369{left:248.290500px;}
.x57_c00369{left:253.201500px;}
.x23_c00369{left:254.883000px;}
.x63_c00369{left:256.513050px;}
.x41_c00369{left:263.694000px;}
.xa1_c00369{left:268.380000px;}
.x2e_c00369{left:272.163000px;}
.x5d_c00369{left:273.416865px;}
.x98_c00369{left:274.590000px;}
.x4b_c00369{left:277.182000px;}
.x8e_c00369{left:278.269500px;}
.x18_c00369{left:279.345000px;}
.x64_c00369{left:280.815518px;}
.x6_c00369{left:283.207500px;}
.x84_c00369{left:285.131633px;}
.x58_c00369{left:286.686000px;}
.xd_c00369{left:289.440000px;}
.x19_c00369{left:297.796500px;}
.x24_c00369{left:299.433000px;}
.x85_c00369{left:302.954138px;}
.x72_c00369{left:306.198308px;}
.x4c_c00369{left:308.169000px;}
.x1c_c00369{left:311.194500px;}
.x5a_c00369{left:313.913055px;}
.xe_c00369{left:315.630000px;}
.x7_c00369{left:317.764500px;}
.x42_c00369{left:319.852500px;}
.x5e_c00369{left:322.295790px;}
.x79_c00369{left:326.580750px;}
.x1d_c00369{left:329.775000px;}
.x99_c00369{left:331.830000px;}
.x4d_c00369{left:333.282000px;}
.x9e_c00369{left:335.070000px;}
.x25_c00369{left:336.963000px;}
.x38_c00369{left:338.785500px;}
.x2f_c00369{left:346.683000px;}
.x9a_c00369{left:351.540000px;}
.x5b_c00369{left:352.780395px;}
.xa2_c00369{left:359.910000px;}
.x26_c00369{left:360.993000px;}
.x80_c00369{left:362.092673px;}
.xf_c00369{left:365.580000px;}
.x1e_c00369{left:368.425500px;}
.x6d_c00369{left:371.004480px;}
.x8_c00369{left:377.997000px;}
.x86_c00369{left:380.454075px;}
.x65_c00369{left:383.426603px;}
.x33_c00369{left:384.753000px;}
.x93_c00369{left:385.830000px;}
.x30_c00369{left:387.453000px;}
.x10_c00369{left:389.880000px;}
.x39_c00369{left:392.277000px;}
.x6e_c00369{left:395.036880px;}
.x5f_c00369{left:398.177835px;}
.x43_c00369{left:399.760500px;}
.x7a_c00369{left:400.789433px;}
.x90_c00369{left:406.286010px;}
.x9f_c00369{left:410.940000px;}
.x87_c00369{left:413.938905px;}
.x3a_c00369{left:419.514000px;}
.x6f_c00369{left:423.930383px;}
.x27_c00369{left:425.523000px;}
.x31_c00369{left:429.303000px;}
.x11_c00369{left:435.240000px;}
.x60_c00369{left:437.814720px;}
.xa3_c00369{left:439.020000px;}
.x4e_c00369{left:443.482500px;}
.x7d_c00369{left:446.342048px;}
.x66_c00369{left:447.693570px;}
.x73_c00369{left:449.584050px;}
.x34_c00369{left:451.173000px;}
.x3b_c00369{left:453.541500px;}
.x1f_c00369{left:456.186000px;}
.x2_c00369{left:457.650000px;}
.x9b_c00369{left:459.000000px;}
.x32_c00369{left:460.623000px;}
.x4f_c00369{left:461.797500px;}
.x91_c00369{left:465.368712px;}
.x35_c00369{left:470.073000px;}
.x61_c00369{left:471.920768px;}
.x88_c00369{left:473.580000px;}
.x44_c00369{left:475.044000px;}
.x81_c00369{left:476.855003px;}
.x50_c00369{left:479.367000px;}
.x20_c00369{left:482.109000px;}
.x3c_c00369{left:488.094000px;}
.x28_c00369{left:489.513000px;}
.x36_c00369{left:491.673000px;}
.x70_c00369{left:493.058430px;}
.x12_c00369{left:495.180000px;}
.x94_c00369{left:497.070000px;}
.x7b_c00369{left:502.629090px;}
.x67_c00369{left:505.210508px;}
.x45_c00369{left:506.415000px;}
.x7e_c00369{left:510.068880px;}
.x89_c00369{left:511.110000px;}
.x7c_c00369{left:512.346968px;}
.x51_c00369{left:514.221000px;}
.x29_c00369{left:517.863000px;}
.x37_c00369{left:524.343000px;}
.x74_c00369{left:525.463628px;}
.xa4_c00369{left:529.200000px;}
.x46_c00369{left:533.680500px;}
.x13_c00369{left:536.220000px;}
.x52_c00369{left:540.411000px;}
.x2a_c00369{left:542.973000px;}
.x68_c00369{left:544.904940px;}
.x95_c00369{left:546.480000px;}
.x8a_c00369{left:548.100000px;}
.x3d_c00369{left:550.407000px;}
.x75_c00369{left:564.347880px;}
.x2b_c00369{left:565.653000px;}
.xa5_c00369{left:569.160000px;}
.x7f_c00369{left:572.985533px;}
.x62_c00369{left:574.490933px;}
.x53_c00369{left:577.087500px;}
.x96_c00369{left:578.340000px;}
.x9c_c00369{left:583.470000px;}
.x76_c00369{left:585.409628px;}
.x21_c00369{left:589.386000px;}
.x82_c00369{left:590.807153px;}
.x47_c00369{left:591.957000px;}
.x77_c00369{left:595.130310px;}
.x14_c00369{left:598.590000px;}
.x2c_c00369{left:599.943000px;}
.x3e_c00369{left:602.247000px;}
.x8b_c00369{left:607.230000px;}
.x54_c00369{left:609.525000px;}
.x69_c00369{left:613.762920px;}
.x9d_c00369{left:618.300000px;}
.x15_c00369{left:619.920000px;}
.x48_c00369{left:621.106500px;}
.x3f_c00369{left:623.550000px;}
.x55_c00369{left:628.939500px;}
.x2d_c00369{left:636.123000px;}
.x6a_c00369{left:637.525275px;}
.x6b_c00369{left:651.566925px;}
.x83_c00369{left:664.254668px;}
.x3_c00369{left:682.290000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fs14_c00369{font-size:46.666667pt;}
.fs10_c00369{font-size:54.133333pt;}
.fs13_c00369{font-size:56.000000pt;}
.fsf_c00369{font-size:56.939738pt;}
.fs3_c00369{font-size:58.804968pt;}
.fs9_c00369{font-size:59.733333pt;}
.fse_c00369{font-size:59.740053pt;}
.fs6_c00369{font-size:60.666667pt;}
.fs5_c00369{font-size:61.600000pt;}
.fsc_c00369{font-size:61.606930pt;}
.fs4_c00369{font-size:62.533333pt;}
.fs11_c00369{font-size:62.537836pt;}
.fsa_c00369{font-size:62.540368pt;}
.fs8_c00369{font-size:63.466667pt;}
.fsd_c00369{font-size:63.473806pt;}
.fs7_c00369{font-size:64.400000pt;}
.fsb_c00369{font-size:64.407245pt;}
.fs1_c00369{font-size:66.266667pt;}
.fs12_c00369{font-size:66.271438pt;}
.fs2_c00369{font-size:109.209227pt;}
.fs0_c00369{font-size:118.533333pt;}
.y0_c00369{bottom:0.000000pt;}
.yb9_c00369{bottom:122.254667pt;}
.yb8_c00369{bottom:137.901333pt;}
.yb7_c00369{bottom:154.626667pt;}
.yb6_c00369{bottom:199.572000pt;}
.yaf_c00369{bottom:223.439989pt;}
.yb0_c00369{bottom:223.849760pt;}
.yb1_c00369{bottom:224.355349pt;}
.yb2_c00369{bottom:224.786795pt;}
.yb3_c00369{bottom:225.314507pt;}
.yb4_c00369{bottom:225.549189pt;}
.yb5_c00369{bottom:225.892715pt;}
.ya7_c00369{bottom:247.676000pt;}
.ya8_c00369{bottom:248.006864pt;}
.ya9_c00369{bottom:248.272224pt;}
.yaa_c00369{bottom:248.545872pt;}
.yab_c00369{bottom:249.009760pt;}
.yac_c00369{bottom:249.640336pt;}
.yad_c00369{bottom:249.836368pt;}
.ya6_c00369{bottom:249.842667pt;}
.yae_c00369{bottom:250.460384pt;}
.ya5_c00369{bottom:274.902367pt;}
.ya3_c00369{bottom:274.902907pt;}
.ya4_c00369{bottom:274.902940pt;}
.ya2_c00369{bottom:274.903427pt;}
.y9f_c00369{bottom:298.658933pt;}
.ya1_c00369{bottom:298.659040pt;}
.ya0_c00369{bottom:298.659160pt;}
.y9b_c00369{bottom:298.659207pt;}
.y9e_c00369{bottom:298.659220pt;}
.y9d_c00369{bottom:298.659240pt;}
.y9c_c00369{bottom:298.659453pt;}
.y99_c00369{bottom:298.659633pt;}
.y9a_c00369{bottom:298.659840pt;}
.y97_c00369{bottom:318.055660pt;}
.y96_c00369{bottom:318.056067pt;}
.y98_c00369{bottom:318.056073pt;}
.y95_c00369{bottom:318.056640pt;}
.y94_c00369{bottom:318.056853pt;}
.y93_c00369{bottom:318.057293pt;}
.y90_c00369{bottom:318.057300pt;}
.y8f_c00369{bottom:318.057460pt;}
.y92_c00369{bottom:318.057487pt;}
.y91_c00369{bottom:318.057527pt;}
.y8a_c00369{bottom:340.318620pt;}
.y8b_c00369{bottom:340.318900pt;}
.y8d_c00369{bottom:340.319067pt;}
.y8e_c00369{bottom:340.319100pt;}
.y8c_c00369{bottom:340.319260pt;}
.y7f_c00369{bottom:362.862287pt;}
.y80_c00369{bottom:363.377527pt;}
.y81_c00369{bottom:363.493900pt;}
.y82_c00369{bottom:363.696920pt;}
.y83_c00369{bottom:363.826173pt;}
.y84_c00369{bottom:364.049113pt;}
.y85_c00369{bottom:364.642473pt;}
.y86_c00369{bottom:364.833207pt;}
.y87_c00369{bottom:365.275880pt;}
.y88_c00369{bottom:365.457547pt;}
.y89_c00369{bottom:365.535107pt;}
.y70_c00369{bottom:384.250647pt;}
.y71_c00369{bottom:384.251007pt;}
.y72_c00369{bottom:384.251480pt;}
.y7c_c00369{bottom:384.251933pt;}
.y73_c00369{bottom:384.251973pt;}
.y7d_c00369{bottom:384.252180pt;}
.y75_c00369{bottom:384.252293pt;}
.y7b_c00369{bottom:384.252507pt;}
.y74_c00369{bottom:384.252620pt;}
.y7e_c00369{bottom:384.252653pt;}
.y76_c00369{bottom:384.252747pt;}
.y7a_c00369{bottom:384.252833pt;}
.y79_c00369{bottom:384.252853pt;}
.y78_c00369{bottom:384.253160pt;}
.y77_c00369{bottom:384.253333pt;}
.y68_c00369{bottom:408.667040pt;}
.y6b_c00369{bottom:408.667147pt;}
.y6c_c00369{bottom:408.667333pt;}
.y6e_c00369{bottom:408.667520pt;}
.y69_c00369{bottom:408.667533pt;}
.y6a_c00369{bottom:408.667587pt;}
.y6f_c00369{bottom:408.667687pt;}
.y6d_c00369{bottom:408.667693pt;}
.y67_c00369{bottom:432.146513pt;}
.y65_c00369{bottom:453.694273pt;}
.y62_c00369{bottom:453.694280pt;}
.y63_c00369{bottom:453.694353pt;}
.y60_c00369{bottom:453.694420pt;}
.y61_c00369{bottom:453.694473pt;}
.y5f_c00369{bottom:453.694727pt;}
.y66_c00369{bottom:453.694787pt;}
.y58_c00369{bottom:453.694840pt;}
.y64_c00369{bottom:453.694847pt;}
.y5e_c00369{bottom:453.695033pt;}
.y5d_c00369{bottom:453.695053pt;}
.y5b_c00369{bottom:453.695213pt;}
.y5a_c00369{bottom:453.695253pt;}
.y59_c00369{bottom:453.695273pt;}
.y5c_c00369{bottom:453.695400pt;}
.y4d_c00369{bottom:472.073987pt;}
.y4e_c00369{bottom:472.359347pt;}
.y4f_c00369{bottom:472.839560pt;}
.y50_c00369{bottom:473.317907pt;}
.y51_c00369{bottom:473.561167pt;}
.y52_c00369{bottom:474.060273pt;}
.y53_c00369{bottom:474.447400pt;}
.y54_c00369{bottom:474.780787pt;}
.y55_c00369{bottom:475.556020pt;}
.y56_c00369{bottom:475.782973pt;}
.y57_c00369{bottom:476.218867pt;}
.y46_c00369{bottom:497.505113pt;}
.y47_c00369{bottom:497.861940pt;}
.y48_c00369{bottom:498.260127pt;}
.y49_c00369{bottom:498.499827pt;}
.y4a_c00369{bottom:498.879360pt;}
.y4b_c00369{bottom:499.223467pt;}
.y4c_c00369{bottom:499.842933pt;}
.y43_c00369{bottom:522.242667pt;}
.y44_c00369{bottom:523.240087pt;}
.y45_c00369{bottom:523.686547pt;}
.y34_c00369{bottom:542.398667pt;}
.y35_c00369{bottom:542.788000pt;}
.y36_c00369{bottom:542.958667pt;}
.y37_c00369{bottom:543.281333pt;}
.y38_c00369{bottom:543.557333pt;}
.y39_c00369{bottom:543.780000pt;}
.y3a_c00369{bottom:544.368000pt;}
.y3b_c00369{bottom:544.758667pt;}
.y3c_c00369{bottom:544.921333pt;}
.y3d_c00369{bottom:545.077333pt;}
.y3e_c00369{bottom:545.386667pt;}
.y3f_c00369{bottom:545.620000pt;}
.y40_c00369{bottom:545.946667pt;}
.y41_c00369{bottom:546.234667pt;}
.y42_c00369{bottom:546.406667pt;}
.y28_c00369{bottom:562.320000pt;}
.y29_c00369{bottom:562.657333pt;}
.y2a_c00369{bottom:562.910667pt;}
.y2b_c00369{bottom:563.250667pt;}
.y2c_c00369{bottom:563.849333pt;}
.y2d_c00369{bottom:564.330667pt;}
.y2e_c00369{bottom:564.702667pt;}
.y2f_c00369{bottom:565.505333pt;}
.y30_c00369{bottom:565.840000pt;}
.y31_c00369{bottom:566.130667pt;}
.y32_c00369{bottom:566.752000pt;}
.y33_c00369{bottom:567.062667pt;}
.y1b_c00369{bottom:583.201333pt;}
.y1c_c00369{bottom:584.206667pt;}
.y1d_c00369{bottom:584.370667pt;}
.y1e_c00369{bottom:584.605333pt;}
.y1f_c00369{bottom:585.128000pt;}
.y20_c00369{bottom:585.394667pt;}
.y21_c00369{bottom:585.728000pt;}
.y22_c00369{bottom:585.893333pt;}
.y23_c00369{bottom:586.065333pt;}
.y24_c00369{bottom:586.366667pt;}
.y25_c00369{bottom:586.674667pt;}
.y26_c00369{bottom:587.181333pt;}
.y27_c00369{bottom:587.389333pt;}
.y1a_c00369{bottom:610.708000pt;}
.y19_c00369{bottom:634.090667pt;}
.y18_c00369{bottom:654.985333pt;}
.yf_c00369{bottom:678.240000pt;}
.y10_c00369{bottom:678.458667pt;}
.y11_c00369{bottom:679.056000pt;}
.y12_c00369{bottom:679.196000pt;}
.y13_c00369{bottom:679.377333pt;}
.y14_c00369{bottom:679.754667pt;}
.y15_c00369{bottom:680.613333pt;}
.y16_c00369{bottom:680.866667pt;}
.y17_c00369{bottom:681.916000pt;}
.ya_c00369{bottom:702.242667pt;}
.yb_c00369{bottom:702.764000pt;}
.yc_c00369{bottom:703.454667pt;}
.yd_c00369{bottom:703.978667pt;}
.ye_c00369{bottom:704.290667pt;}
.y9_c00369{bottom:727.668000pt;}
.y8_c00369{bottom:736.201144pt;}
.y2_c00369{bottom:760.080000pt;}
.y3_c00369{bottom:762.484000pt;}
.y4_c00369{bottom:763.137571pt;}
.y5_c00369{bottom:764.355081pt;}
.y6_c00369{bottom:764.754407pt;}
.y7_c00369{bottom:765.450427pt;}
.y1_c00369{bottom:804.734667pt;}
.h16_c00369{height:46.666667pt;}
.h12_c00369{height:54.133333pt;}
.h15_c00369{height:56.000000pt;}
.h11_c00369{height:56.939738pt;}
.h5_c00369{height:58.804968pt;}
.hb_c00369{height:59.733333pt;}
.h10_c00369{height:59.740053pt;}
.h8_c00369{height:60.666667pt;}
.h7_c00369{height:61.600000pt;}
.he_c00369{height:61.606930pt;}
.h6_c00369{height:62.533333pt;}
.h13_c00369{height:62.537836pt;}
.hc_c00369{height:62.540368pt;}
.ha_c00369{height:63.466667pt;}
.hf_c00369{height:63.473806pt;}
.h9_c00369{height:64.400000pt;}
.hd_c00369{height:64.407245pt;}
.h3_c00369{height:66.266667pt;}
.h14_c00369{height:66.271438pt;}
.h4_c00369{height:109.209227pt;}
.h2_c00369{height:118.533333pt;}
.h0_c00369{height:896.400000pt;}
.h1_c00369{height:896.666667pt;}
.w0_c00369{width:632.640000pt;}
.w1_c00369{width:632.666667pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:106.080000pt;}
.x5_c00369{left:107.810667pt;}
.x9_c00369{left:115.200000pt;}
.xa_c00369{left:156.240000pt;}
.x4_c00369{left:157.440000pt;}
.x56_c00369{left:158.573333pt;}
.x97_c00369{left:170.640000pt;}
.x22_c00369{left:173.522667pt;}
.x8c_c00369{left:174.861333pt;}
.x16_c00369{left:184.317333pt;}
.x59_c00369{left:188.536387pt;}
.x1a_c00369{left:189.716000pt;}
.x8f_c00369{left:190.709072pt;}
.xb_c00369{left:193.200000pt;}
.x49_c00369{left:197.150667pt;}
.x5c_c00369{left:199.375927pt;}
.x71_c00369{left:200.408153pt;}
.x8d_c00369{left:202.433333pt;}
.x92_c00369{left:203.760000pt;}
.x40_c00369{left:206.076000pt;}
.xa0_c00369{left:208.320000pt;}
.x1b_c00369{left:209.636000pt;}
.xc_c00369{left:212.880000pt;}
.x4a_c00369{left:214.162667pt;}
.x78_c00369{left:215.559260pt;}
.x6c_c00369{left:219.370253pt;}
.x17_c00369{left:220.702667pt;}
.x57_c00369{left:225.068000pt;}
.x23_c00369{left:226.562667pt;}
.x63_c00369{left:228.011600pt;}
.x41_c00369{left:234.394667pt;}
.xa1_c00369{left:238.560000pt;}
.x2e_c00369{left:241.922667pt;}
.x5d_c00369{left:243.037213pt;}
.x98_c00369{left:244.080000pt;}
.x4b_c00369{left:246.384000pt;}
.x8e_c00369{left:247.350667pt;}
.x18_c00369{left:248.306667pt;}
.x64_c00369{left:249.613793pt;}
.x6_c00369{left:251.740000pt;}
.x84_c00369{left:253.450340pt;}
.x58_c00369{left:254.832000pt;}
.xd_c00369{left:257.280000pt;}
.x19_c00369{left:264.708000pt;}
.x24_c00369{left:266.162667pt;}
.x85_c00369{left:269.292567pt;}
.x72_c00369{left:272.176273pt;}
.x4c_c00369{left:273.928000pt;}
.x1c_c00369{left:276.617333pt;}
.x5a_c00369{left:279.033827pt;}
.xe_c00369{left:280.560000pt;}
.x7_c00369{left:282.457333pt;}
.x42_c00369{left:284.313333pt;}
.x5e_c00369{left:286.485147pt;}
.x79_c00369{left:290.294000pt;}
.x1d_c00369{left:293.133333pt;}
.x99_c00369{left:294.960000pt;}
.x4d_c00369{left:296.250667pt;}
.x9e_c00369{left:297.840000pt;}
.x25_c00369{left:299.522667pt;}
.x38_c00369{left:301.142667pt;}
.x2f_c00369{left:308.162667pt;}
.x9a_c00369{left:312.480000pt;}
.x5b_c00369{left:313.582573pt;}
.xa2_c00369{left:319.920000pt;}
.x26_c00369{left:320.882667pt;}
.x80_c00369{left:321.860153pt;}
.xf_c00369{left:324.960000pt;}
.x1e_c00369{left:327.489333pt;}
.x6d_c00369{left:329.781760pt;}
.x8_c00369{left:335.997333pt;}
.x86_c00369{left:338.181400pt;}
.x65_c00369{left:340.823647pt;}
.x33_c00369{left:342.002667pt;}
.x93_c00369{left:342.960000pt;}
.x30_c00369{left:344.402667pt;}
.x10_c00369{left:346.560000pt;}
.x39_c00369{left:348.690667pt;}
.x6e_c00369{left:351.143893pt;}
.x5f_c00369{left:353.935853pt;}
.x43_c00369{left:355.342667pt;}
.x7a_c00369{left:356.257273pt;}
.x90_c00369{left:361.143120pt;}
.x9f_c00369{left:365.280000pt;}
.x87_c00369{left:367.945693pt;}
.x3a_c00369{left:372.901333pt;}
.x6f_c00369{left:376.827007pt;}
.x27_c00369{left:378.242667pt;}
.x31_c00369{left:381.602667pt;}
.x11_c00369{left:386.880000pt;}
.x60_c00369{left:389.168640pt;}
.xa3_c00369{left:390.240000pt;}
.x4e_c00369{left:394.206667pt;}
.x7d_c00369{left:396.748487pt;}
.x66_c00369{left:397.949840pt;}
.x73_c00369{left:399.630267pt;}
.x34_c00369{left:401.042667pt;}
.x3b_c00369{left:403.148000pt;}
.x1f_c00369{left:405.498667pt;}
.x2_c00369{left:406.800000pt;}
.x9b_c00369{left:408.000000pt;}
.x32_c00369{left:409.442667pt;}
.x4f_c00369{left:410.486667pt;}
.x91_c00369{left:413.661077pt;}
.x35_c00369{left:417.842667pt;}
.x61_c00369{left:419.485127pt;}
.x88_c00369{left:420.960000pt;}
.x44_c00369{left:422.261333pt;}
.x81_c00369{left:423.871113pt;}
.x50_c00369{left:426.104000pt;}
.x20_c00369{left:428.541333pt;}
.x3c_c00369{left:433.861333pt;}
.x28_c00369{left:435.122667pt;}
.x36_c00369{left:437.042667pt;}
.x70_c00369{left:438.274160pt;}
.x12_c00369{left:440.160000pt;}
.x94_c00369{left:441.840000pt;}
.x7b_c00369{left:446.781413pt;}
.x67_c00369{left:449.076007pt;}
.x45_c00369{left:450.146667pt;}
.x7e_c00369{left:453.394560pt;}
.x89_c00369{left:454.320000pt;}
.x7c_c00369{left:455.419527pt;}
.x51_c00369{left:457.085333pt;}
.x29_c00369{left:460.322667pt;}
.x37_c00369{left:466.082667pt;}
.x74_c00369{left:467.078780pt;}
.xa4_c00369{left:470.400000pt;}
.x46_c00369{left:474.382667pt;}
.x13_c00369{left:476.640000pt;}
.x52_c00369{left:480.365333pt;}
.x2a_c00369{left:482.642667pt;}
.x68_c00369{left:484.359947pt;}
.x95_c00369{left:485.760000pt;}
.x8a_c00369{left:487.200000pt;}
.x3d_c00369{left:489.250667pt;}
.x75_c00369{left:501.642560pt;}
.x2b_c00369{left:502.802667pt;}
.xa5_c00369{left:505.920000pt;}
.x7f_c00369{left:509.320473pt;}
.x62_c00369{left:510.658607pt;}
.x53_c00369{left:512.966667pt;}
.x96_c00369{left:514.080000pt;}
.x9c_c00369{left:518.640000pt;}
.x76_c00369{left:520.364113pt;}
.x21_c00369{left:523.898667pt;}
.x82_c00369{left:525.161913pt;}
.x47_c00369{left:526.184000pt;}
.x77_c00369{left:529.004720pt;}
.x14_c00369{left:532.080000pt;}
.x2c_c00369{left:533.282667pt;}
.x3e_c00369{left:535.330667pt;}
.x8b_c00369{left:539.760000pt;}
.x54_c00369{left:541.800000pt;}
.x69_c00369{left:545.567040pt;}
.x9d_c00369{left:549.600000pt;}
.x15_c00369{left:551.040000pt;}
.x48_c00369{left:552.094667pt;}
.x3f_c00369{left:554.266667pt;}
.x55_c00369{left:559.057333pt;}
.x2d_c00369{left:565.442667pt;}
.x6a_c00369{left:566.689133pt;}
.x6b_c00369{left:579.170600pt;}
.x83_c00369{left:590.448593pt;}
.x3_c00369{left:606.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_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;}
.m1a_c00370{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m6d_c00370{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);}
.m28_c00370{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);}
.m9b_c00370{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);}
.m9e_c00370{transform:matrix(0.031385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031385,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.044100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044100,0.000000,0.000000,0.250000,0,0);}
.m9a_c00370{transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048315,0.000000,0.000000,0.250000,0,0);}
.m84_c00370{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00370{transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{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);}
.m98_c00370{transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{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);}
.mab_c00370{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);}
.m3b_c00370{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);}
.m73_c00370{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);}
.mad_c00370{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);}
.m33_c00370{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);}
.mff_c00370{transform:matrix(0.150556,0.001054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150556,0.001054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150556,0.001054,-0.001750,0.249994,0,0);}
.m20_c00370{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);}
.m76_c00370{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{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);}
.mf4_c00370{transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154170,0.002467,-0.003999,0.249968,0,0);}
.me1_c00370{transform:matrix(0.154240,0.002468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154240,0.002468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154240,0.002468,-0.003999,0.249968,0,0);}
.mcc_c00370{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);}
.m82_c00370{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);}
.m100_c00370{transform:matrix(0.156251,0.001094,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156251,0.001094,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156251,0.001094,-0.001750,0.249994,0,0);}
.maa_c00370{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);}
.m9d_c00370{transform:matrix(0.157715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157715,0.000000,0.000000,0.250000,0,0);}
.mf1_c00370{transform:matrix(0.158195,0.002531,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158195,0.002531,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158195,0.002531,-0.003999,0.249968,0,0);}
.m7d_c00370{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);}
.m40_c00370{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);}
.m17_c00370{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);}
.m97_c00370{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);}
.m3e_c00370{transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{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);}
.m81_c00370{transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161865,0.000000,0.000000,0.250000,0,0);}
.ma6_c00370{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);}
.m1f_c00370{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m7f_c00370{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);}
.m91_c00370{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);}
.m8a_c00370{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);}
.m10d_c00370{transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165136,0.001156,-0.001750,0.249994,0,0);}
.m21_c00370{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);}
.md7_c00370{transform:matrix(0.165269,0.002644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165269,0.002644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165269,0.002644,-0.003999,0.249968,0,0);}
.m3d_c00370{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{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);}
.mdc_c00370{transform:matrix(0.166249,0.002660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166249,0.002660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166249,0.002660,-0.003999,0.249968,0,0);}
.ma9_c00370{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);}
.mb8_c00370{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);}
.m79_c00370{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);}
.mc6_c00370{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);}
.mc4_c00370{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);}
.m6c_c00370{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);}
.m74_c00370{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);}
.m29_c00370{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);}
.ma8_c00370{transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00370{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{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);}
.me6_c00370{transform:matrix(0.171053,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171053,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171053,0.002737,-0.003999,0.249968,0,0);}
.m83_c00370{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_c00370{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);}
.mc2_c00370{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);}
.ma7_c00370{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);}
.mcb_c00370{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);}
.m23_c00370{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);}
.m5d_c00370{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);}
.m71_c00370{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);}
.m5f_c00370{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);}
.mae_c00370{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);}
.m24_c00370{transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);}
.m105_c00370{transform:matrix(0.176481,0.001235,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176481,0.001235,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176481,0.001235,-0.001750,0.249994,0,0);}
.m8f_c00370{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);}
.m5a_c00370{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);}
.mc7_c00370{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);}
.mbc_c00370{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);}
.mce_c00370{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);}
.med_c00370{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);}
.mfb_c00370{transform:matrix(0.177541,0.001243,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177541,0.001243,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177541,0.001243,-0.001750,0.249994,0,0);}
.m4a_c00370{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);}
.m14_c00370{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);}
.m5c_c00370{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);}
.mfd_c00370{transform:matrix(0.178946,0.001253,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178946,0.001253,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178946,0.001253,-0.001750,0.249994,0,0);}
.m41_c00370{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);}
.mec_c00370{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);}
.m96_c00370{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);}
.m34_c00370{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);}
.mbd_c00370{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);}
.ma2_c00370{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);}
.m8e_c00370{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);}
.m101_c00370{transform:matrix(0.180166,0.001261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180166,0.001261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180166,0.001261,-0.001750,0.249994,0,0);}
.m1e_c00370{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);}
.mcd_c00370{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);}
.mbe_c00370{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);}
.m22_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);}
.me5_c00370{transform:matrix(0.181202,0.002899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181202,0.002899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181202,0.002899,-0.003999,0.249968,0,0);}
.m89_c00370{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.mee_c00370{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);}
.m9f_c00370{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_c00370{transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182407,0.002919,-0.003999,0.249968,0,0);}
.m3a_c00370{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);}
.meb_c00370{transform:matrix(0.183676,0.002939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183676,0.002939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183676,0.002939,-0.003999,0.249968,0,0);}
.me3_c00370{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);}
.md4_c00370{transform:matrix(0.183851,0.002942,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183851,0.002942,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183851,0.002942,-0.003999,0.249968,0,0);}
.m25_c00370{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);}
.m7b_c00370{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);}
.m32_c00370{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);}
.m8c_c00370{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);}
.mf9_c00370{transform:matrix(0.184850,0.001294,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184850,0.001294,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184850,0.001294,-0.001750,0.249994,0,0);}
.m31_c00370{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);}
.m6f_c00370{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{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);}
.mb6_c00370{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);}
.mbb_c00370{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);}
.mba_c00370{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);}
.m2c_c00370{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);}
.m49_c00370{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);}
.md9_c00370{transform:matrix(0.187996,0.003008,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187996,0.003008,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187996,0.003008,-0.003999,0.249968,0,0);}
.m35_c00370{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);}
.m60_c00370{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);}
.me8_c00370{transform:matrix(0.188531,0.003016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188531,0.003016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188531,0.003016,-0.003999,0.249968,0,0);}
.m58_c00370{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);}
.m39_c00370{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);}
.m5e_c00370{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);}
.m80_c00370{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);}
.mf3_c00370{transform:matrix(0.189371,0.003030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189371,0.003030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189371,0.003030,-0.003999,0.249968,0,0);}
.mb5_c00370{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);}
.mfa_c00370{transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);}
.m2d_c00370{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);}
.mf0_c00370{transform:matrix(0.190426,0.003047,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190426,0.003047,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190426,0.003047,-0.003999,0.249968,0,0);}
.md6_c00370{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);}
.mf5_c00370{transform:matrix(0.191450,0.003063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191450,0.003063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191450,0.003063,-0.003999,0.249968,0,0);}
.m42_c00370{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);}
.m1b_c00370{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);}
.m18_c00370{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);}
.m10c_c00370{transform:matrix(0.193250,0.001353,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193250,0.001353,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193250,0.001353,-0.001750,0.249994,0,0);}
.mc0_c00370{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);}
.me7_c00370{transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193410,0.003095,-0.003999,0.249968,0,0);}
.mb4_c00370{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);}
.m37_c00370{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);}
.ma3_c00370{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);}
.m10a_c00370{transform:matrix(0.194740,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194740,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194740,0.001363,-0.001750,0.249994,0,0);}
.m61_c00370{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);}
.me2_c00370{transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195140,0.003122,-0.003999,0.249968,0,0);}
.md8_c00370{transform:matrix(0.195350,0.003126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195350,0.003126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195350,0.003126,-0.003999,0.249968,0,0);}
.m36_c00370{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);}
.m15_c00370{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);}
.mc5_c00370{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);}
.me0_c00370{transform:matrix(0.196040,0.003137,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196040,0.003137,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196040,0.003137,-0.003999,0.249968,0,0);}
.m56_c00370{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);}
.mdd_c00370{transform:matrix(0.196290,0.003141,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196290,0.003141,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196290,0.003141,-0.003999,0.249968,0,0);}
.mdf_c00370{transform:matrix(0.197105,0.003154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197105,0.003154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197105,0.003154,-0.003999,0.249968,0,0);}
.m7e_c00370{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);}
.mb1_c00370{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);}
.m88_c00370{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);}
.mda_c00370{transform:matrix(0.198235,0.003172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198235,0.003172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198235,0.003172,-0.003999,0.249968,0,0);}
.mcf_c00370{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_c00370{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);}
.m19_c00370{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);}
.m75_c00370{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);}
.mb9_c00370{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);}
.m5b_c00370{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);}
.m12_c00370{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);}
.md3_c00370{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);}
.m8b_c00370{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);}
.ma0_c00370{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);}
.mca_c00370{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);}
.m7a_c00370{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);}
.ma5_c00370{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);}
.m7c_c00370{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);}
.mfc_c00370{transform:matrix(0.203220,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203220,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203220,0.001423,-0.001750,0.249994,0,0);}
.md0_c00370{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);}
.m11_c00370{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);}
.me4_c00370{transform:matrix(0.204414,0.003271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204414,0.003271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204414,0.003271,-0.003999,0.249968,0,0);}
.m108_c00370{transform:matrix(0.205080,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205080,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205080,0.001436,-0.001750,0.249994,0,0);}
.maf_c00370{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);}
.m4e_c00370{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);}
.m66_c00370{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);}
.m9c_c00370{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);}
.mf2_c00370{transform:matrix(0.207293,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207293,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207293,0.003317,-0.003999,0.249968,0,0);}
.m4d_c00370{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);}
.m103_c00370{transform:matrix(0.209420,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209420,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209420,0.001466,-0.001750,0.249994,0,0);}
.m10b_c00370{transform:matrix(0.209975,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209975,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209975,0.001470,-0.001750,0.249994,0,0);}
.m44_c00370{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);}
.mb7_c00370{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);}
.mb0_c00370{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);}
.m57_c00370{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);}
.ma4_c00370{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);}
.m10e_c00370{transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);}
.m54_c00370{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);}
.m1c_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);}
.m13_c00370{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);}
.m2f_c00370{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);}
.m86_c00370{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);}
.md2_c00370{transform:matrix(0.215067,0.003441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215067,0.003441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215067,0.003441,-0.003999,0.249968,0,0);}
.mdb_c00370{transform:matrix(0.215202,0.003443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215202,0.003443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215202,0.003443,-0.003999,0.249968,0,0);}
.m10f_c00370{transform:matrix(0.216125,0.001513,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216125,0.001513,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216125,0.001513,-0.001750,0.249994,0,0);}
.m9_c00370{transform:matrix(0.216514,-0.006935,0.008004,0.249872,0,0);-ms-transform:matrix(0.216514,-0.006935,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216514,-0.006935,0.008004,0.249872,0,0);}
.mb3_c00370{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);}
.m2a_c00370{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);}
.m62_c00370{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);}
.mb2_c00370{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);}
.m109_c00370{transform:matrix(0.222035,0.001554,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222035,0.001554,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222035,0.001554,-0.001750,0.249994,0,0);}
.m2e_c00370{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);}
.m47_c00370{transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228260,0.000000,0.000000,0.250000,0,0);}
.mde_c00370{transform:matrix(0.228731,0.003660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228731,0.003660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228731,0.003660,-0.003999,0.249968,0,0);}
.mc3_c00370{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);}
.m85_c00370{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.mc9_c00370{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);}
.m51_c00370{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);}
.m55_c00370{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);}
.m93_c00370{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);}
.m77_c00370{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);}
.m5_c00370{transform:matrix(0.238288,-0.007633,0.008004,0.249872,0,0);-ms-transform:matrix(0.238288,-0.007633,0.008004,0.249872,0,0);-webkit-transform:matrix(0.238288,-0.007633,0.008004,0.249872,0,0);}
.me9_c00370{transform:matrix(0.240474,0.003848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240474,0.003848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240474,0.003848,-0.003999,0.249968,0,0);}
.m63_c00370{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);}
.m8d_c00370{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);}
.m87_c00370{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.m43_c00370{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{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);}
.md5_c00370{transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);}
.m48_c00370{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.253625,-0.008124,0.008004,0.249872,0,0);-ms-transform:matrix(0.253625,-0.008124,0.008004,0.249872,0,0);-webkit-transform:matrix(0.253625,-0.008124,0.008004,0.249872,0,0);}
.m107_c00370{transform:matrix(0.257159,0.001800,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257159,0.001800,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257159,0.001800,-0.001750,0.249994,0,0);}
.m70_c00370{transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.261781,-0.008385,0.008004,0.249872,0,0);-ms-transform:matrix(0.261781,-0.008385,0.008004,0.249872,0,0);-webkit-transform:matrix(0.261781,-0.008385,0.008004,0.249872,0,0);}
.m94_c00370{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);}
.m16_c00370{transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);}
.mea_c00370{transform:matrix(0.271140,0.004338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271140,0.004338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271140,0.004338,-0.003999,0.249968,0,0);}
.m69_c00370{transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{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);}
.m4b_c00370{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.md_c00370{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);}
.m90_c00370{transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.305109,-0.009773,0.008004,0.249872,0,0);-ms-transform:matrix(0.305109,-0.009773,0.008004,0.249872,0,0);-webkit-transform:matrix(0.305109,-0.009773,0.008004,0.249872,0,0);}
.m95_c00370{transform:matrix(0.325815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325815,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.332704,-0.010657,0.008004,0.249872,0,0);-ms-transform:matrix(0.332704,-0.010657,0.008004,0.249872,0,0);-webkit-transform:matrix(0.332704,-0.010657,0.008004,0.249872,0,0);}
.m3_c00370{transform:matrix(0.345228,-0.011058,0.008004,0.249872,0,0);-ms-transform:matrix(0.345228,-0.011058,0.008004,0.249872,0,0);-webkit-transform:matrix(0.345228,-0.011058,0.008004,0.249872,0,0);}
.m27_c00370{transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.365030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365030,0.000000,0.000000,0.250000,0,0);}
.mf6_c00370{transform:matrix(0.367228,0.005876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367228,0.005876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367228,0.005876,-0.003999,0.249968,0,0);}
.m45_c00370{transform:matrix(0.367955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367955,0.000000,0.000000,0.250000,0,0);}
.m102_c00370{transform:matrix(0.370951,0.002597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.370951,0.002597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.370951,0.002597,-0.001750,0.249994,0,0);}
.m10_c00370{transform:matrix(0.373400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373400,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.374408,-0.011993,0.008004,0.249872,0,0);-ms-transform:matrix(0.374408,-0.011993,0.008004,0.249872,0,0);-webkit-transform:matrix(0.374408,-0.011993,0.008004,0.249872,0,0);}
.m92_c00370{transform:matrix(0.385980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385980,0.000000,0.000000,0.250000,0,0);}
.m46_c00370{transform:matrix(0.397710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397710,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.409430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409430,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.416235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416235,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.423593,-0.013569,0.008004,0.249872,0,0);-ms-transform:matrix(0.423593,-0.013569,0.008004,0.249872,0,0);-webkit-transform:matrix(0.423593,-0.013569,0.008004,0.249872,0,0);}
.m4f_c00370{transform:matrix(0.434955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434955,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.437915,-0.014027,0.008004,0.249872,0,0);-ms-transform:matrix(0.437915,-0.014027,0.008004,0.249872,0,0);-webkit-transform:matrix(0.437915,-0.014027,0.008004,0.249872,0,0);}
.m65_c00370{transform:matrix(0.454175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454175,0.000000,0.000000,0.250000,0,0);}
.m67_c00370{transform:matrix(0.454825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454825,0.000000,0.000000,0.250000,0,0);}
.mf8_c00370{transform:matrix(0.456340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456340,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.459299,-0.014712,0.008004,0.249872,0,0);-ms-transform:matrix(0.459299,-0.014712,0.008004,0.249872,0,0);-webkit-transform:matrix(0.459299,-0.014712,0.008004,0.249872,0,0);}
.m106_c00370{transform:matrix(0.496278,0.003474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.496278,0.003474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.496278,0.003474,-0.001750,0.249994,0,0);}
.mfe_c00370{transform:matrix(0.522497,0.003657,-0.001750,0.249994,0,0);-ms-transform:matrix(0.522497,0.003657,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.522497,0.003657,-0.001750,0.249994,0,0);}
.m26_c00370{transform:matrix(0.583940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583940,0.000000,0.000000,0.250000,0,0);}
.m104_c00370{transform:matrix(0.597550,0.004183,-0.001750,0.249994,0,0);-ms-transform:matrix(0.597550,0.004183,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.597550,0.004183,-0.001750,0.249994,0,0);}
.m6b_c00370{transform:matrix(0.606640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606640,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.662130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662130,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.686973,-0.022005,0.008004,0.249872,0,0);-ms-transform:matrix(0.686973,-0.022005,0.008004,0.249872,0,0);-webkit-transform:matrix(0.686973,-0.022005,0.008004,0.249872,0,0);}
.mf7_c00370{transform:matrix(0.740240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740240,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{transform:matrix(0.837600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837600,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(1.264401,-0.040501,0.008004,0.249872,0,0);-ms-transform:matrix(1.264401,-0.040501,0.008004,0.249872,0,0);-webkit-transform:matrix(1.264401,-0.040501,0.008004,0.249872,0,0);}
.m1_c00370{transform:matrix(1.388173,-0.044466,0.008004,0.249872,0,0);-ms-transform:matrix(1.388173,-0.044466,0.008004,0.249872,0,0);-webkit-transform:matrix(1.388173,-0.044466,0.008004,0.249872,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;}
.fs10_c00370{font-size:27.300000px;}
.fs8_c00370{font-size:28.350000px;}
.fs0_c00370{font-size:43.029008px;}
.fs12_c00370{font-size:52.501286px;}
.fs11_c00370{font-size:57.751415px;}
.fsb_c00370{font-size:63.000000px;}
.fs7_c00370{font-size:64.050000px;}
.fse_c00370{font-size:65.108332px;}
.fsd_c00370{font-size:67.200000px;}
.fsc_c00370{font-size:69.300000px;}
.fsf_c00370{font-size:69.308870px;}
.fs6_c00370{font-size:70.350000px;}
.fs9_c00370{font-size:71.400000px;}
.fs5_c00370{font-size:72.450000px;}
.fs3_c00370{font-size:73.500000px;}
.fs4_c00370{font-size:74.550000px;}
.fsa_c00370{font-size:76.650000px;}
.fs2_c00370{font-size:89.250000px;}
.fs1_c00370{font-size:168.967568px;}
.y0_c00370{bottom:0.000000px;}
.y5f_c00370{bottom:166.179421px;}
.y5e_c00370{bottom:166.179901px;}
.y60_c00370{bottom:166.179942px;}
.y61_c00370{bottom:166.180312px;}
.y62_c00370{bottom:166.180893px;}
.y63_c00370{bottom:166.181264px;}
.y64_c00370{bottom:166.181744px;}
.y65_c00370{bottom:166.182133px;}
.y5d_c00370{bottom:181.978359px;}
.y5c_c00370{bottom:182.320281px;}
.y5b_c00370{bottom:182.799112px;}
.y5a_c00370{bottom:182.902663px;}
.y59_c00370{bottom:183.044539px;}
.y58_c00370{bottom:183.405193px;}
.y57_c00370{bottom:183.528117px;}
.y56_c00370{bottom:183.743640px;}
.y55_c00370{bottom:183.845753px;}
.y54_c00370{bottom:184.348419px;}
.y53_c00370{bottom:184.866447px;}
.y52_c00370{bottom:185.094916px;}
.y51_c00370{bottom:185.268933px;}
.y50_c00370{bottom:185.490000px;}
.y4f_c00370{bottom:193.456500px;}
.y4e_c00370{bottom:226.250076px;}
.y4d_c00370{bottom:227.063004px;}
.y4c_c00370{bottom:227.235120px;}
.y4b_c00370{bottom:227.414520px;}
.y4a_c00370{bottom:227.857380px;}
.y49_c00370{bottom:228.027156px;}
.y48_c00370{bottom:228.633780px;}
.y47_c00370{bottom:228.856584px;}
.y46_c00370{bottom:229.137936px;}
.y45_c00370{bottom:229.350804px;}
.y44_c00370{bottom:229.631988px;}
.y43_c00370{bottom:229.765704px;}
.y37_c00370{bottom:250.549116px;}
.y39_c00370{bottom:250.549128px;}
.y38_c00370{bottom:250.549176px;}
.y3b_c00370{bottom:250.549596px;}
.y3a_c00370{bottom:250.549644px;}
.y3e_c00370{bottom:250.550016px;}
.y3c_c00370{bottom:250.550088px;}
.y3d_c00370{bottom:250.550688px;}
.y3f_c00370{bottom:250.550748px;}
.y40_c00370{bottom:250.551300px;}
.y42_c00370{bottom:250.551672px;}
.y41_c00370{bottom:250.551828px;}
.y36_c00370{bottom:270.853692px;}
.y35_c00370{bottom:271.829196px;}
.y34_c00370{bottom:272.347188px;}
.y33_c00370{bottom:273.186060px;}
.y32_c00370{bottom:273.750948px;}
.y31_c00370{bottom:274.234524px;}
.y30_c00370{bottom:274.709652px;}
.y2f_c00370{bottom:275.223732px;}
.y2e_c00370{bottom:276.144948px;}
.y2d_c00370{bottom:276.516564px;}
.y2c_c00370{bottom:277.742940px;}
.y2b_c00370{bottom:278.239596px;}
.y2a_c00370{bottom:279.181500px;}
.y29_c00370{bottom:296.352000px;}
.y28_c00370{bottom:323.727000px;}
.y27_c00370{bottom:351.763500px;}
.y26_c00370{bottom:375.081000px;}
.y25_c00370{bottom:397.207500px;}
.y24_c00370{bottom:425.727000px;}
.y23_c00370{bottom:448.383000px;}
.y22_c00370{bottom:470.757000px;}
.y21_c00370{bottom:493.485000px;}
.y20_c00370{bottom:516.436500px;}
.y1f_c00370{bottom:547.830000px;}
.y1c_c00370{bottom:566.731500px;}
.y1d_c00370{bottom:568.635000px;}
.y1e_c00370{bottom:570.679500px;}
.y1b_c00370{bottom:589.945500px;}
.y1a_c00370{bottom:611.715000px;}
.y19_c00370{bottom:638.668500px;}
.y18_c00370{bottom:639.102000px;}
.y17_c00370{bottom:657.546000px;}
.y16_c00370{bottom:681.160500px;}
.y15_c00370{bottom:704.005500px;}
.y14_c00370{bottom:731.430000px;}
.y13_c00370{bottom:768.702000px;}
.y12_c00370{bottom:804.315000px;}
.y11_c00370{bottom:828.208500px;}
.y10_c00370{bottom:871.560000px;}
.yc_c00370{bottom:910.971721px;}
.yd_c00370{bottom:913.155577px;}
.ye_c00370{bottom:919.759561px;}
.yf_c00370{bottom:924.326953px;}
.y1_c00370{bottom:930.676500px;}
.y2_c00370{bottom:930.850260px;}
.y3_c00370{bottom:933.247476px;}
.y4_c00370{bottom:936.428292px;}
.y5_c00370{bottom:938.155956px;}
.y6_c00370{bottom:940.521012px;}
.y7_c00370{bottom:941.894052px;}
.y8_c00370{bottom:942.932868px;}
.y9_c00370{bottom:944.355204px;}
.ya_c00370{bottom:944.981364px;}
.yb_c00370{bottom:945.501588px;}
.h12_c00370{height:27.300000px;}
.ha_c00370{height:28.350000px;}
.h2_c00370{height:43.029008px;}
.h14_c00370{height:52.501286px;}
.h13_c00370{height:57.751415px;}
.hd_c00370{height:63.000000px;}
.h9_c00370{height:64.050000px;}
.h10_c00370{height:65.108332px;}
.hf_c00370{height:67.200000px;}
.he_c00370{height:69.300000px;}
.h11_c00370{height:69.308870px;}
.h8_c00370{height:70.350000px;}
.hb_c00370{height:71.400000px;}
.h7_c00370{height:72.450000px;}
.h5_c00370{height:73.500000px;}
.h6_c00370{height:74.550000px;}
.hc_c00370{height:76.650000px;}
.h4_c00370{height:89.250000px;}
.h3_c00370{height:168.967568px;}
.h1_c00370{height:1005.000000px;}
.h0_c00370{height:1005.150000px;}
.w0_c00370{width:715.200000px;}
.w1_c00370{width:715.500000px;}
.x0_c00370{left:0.000000px;}
.xc_c00370{left:44.611113px;}
.x30_c00370{left:83.430000px;}
.x84_c00370{left:86.940000px;}
.x13_c00370{left:92.880000px;}
.x3c_c00370{left:93.960000px;}
.x6d_c00370{left:95.850000px;}
.xa1_c00370{left:96.872328px;}
.x1_c00370{left:106.762500px;}
.xaa_c00370{left:109.078922px;}
.x2_c00370{left:112.187070px;}
.x5f_c00370{left:114.480000px;}
.x3d_c00370{left:116.910000px;}
.x76_c00370{left:126.090000px;}
.xa7_c00370{left:128.709000px;}
.x14_c00370{left:131.760000px;}
.x92_c00370{left:132.840000px;}
.x50_c00370{left:135.540000px;}
.x8d_c00370{left:141.210000px;}
.x7e_c00370{left:142.290000px;}
.xab_c00370{left:149.580906px;}
.x65_c00370{left:152.010000px;}
.x31_c00370{left:153.630000px;}
.xa2_c00370{left:156.280896px;}
.x60_c00370{left:157.410000px;}
.x15_c00370{left:164.970000px;}
.x6e_c00370{left:171.180000px;}
.x85_c00370{left:172.800000px;}
.x3e_c00370{left:175.770000px;}
.x61_c00370{left:177.660000px;}
.xac_c00370{left:182.791034px;}
.x20_c00370{left:184.140000px;}
.x3_c00370{left:187.025157px;}
.x9d_c00370{left:188.201652px;}
.x86_c00370{left:189.810000px;}
.x43_c00370{left:192.780000px;}
.x7a_c00370{left:195.750000px;}
.x48_c00370{left:198.450000px;}
.x51_c00370{left:200.340000px;}
.x3f_c00370{left:202.230000px;}
.x62_c00370{left:208.710000px;}
.x32_c00370{left:210.060000px;}
.x44_c00370{left:212.760000px;}
.xad_c00370{left:216.811203px;}
.x66_c00370{left:217.890000px;}
.x29_c00370{left:219.240000px;}
.x87_c00370{left:221.400000px;}
.xf_c00370{left:222.750000px;}
.x40_c00370{left:224.370000px;}
.xa3_c00370{left:227.023596px;}
.x41_c00370{left:230.310000px;}
.x21_c00370{left:233.820000px;}
.x45_c00370{left:235.440000px;}
.x33_c00370{left:236.790000px;}
.x23_c00370{left:238.950000px;}
.x16_c00370{left:241.110000px;}
.x49_c00370{left:244.890000px;}
.x2a_c00370{left:247.320000px;}
.x5a_c00370{left:250.020000px;}
.x7b_c00370{left:255.960000px;}
.x94_c00370{left:257.040000px;}
.x6f_c00370{left:259.740000px;}
.x67_c00370{left:263.520000px;}
.x9e_c00370{left:265.160856px;}
.x52_c00370{left:267.300000px;}
.x22_c00370{left:268.650000px;}
.x4a_c00370{left:273.780000px;}
.x88_c00370{left:278.370000px;}
.x70_c00370{left:283.500000px;}
.x4_c00370{left:286.326256px;}
.x17_c00370{left:289.710000px;}
.x25_c00370{left:290.790000px;}
.x34_c00370{left:292.680000px;}
.x77_c00370{left:294.300000px;}
.x9f_c00370{left:304.046316px;}
.x68_c00370{left:306.180000px;}
.x78_c00370{left:310.230000px;}
.x89_c00370{left:312.120000px;}
.x46_c00370{left:314.280000px;}
.xd_c00370{left:318.956493px;}
.x18_c00370{left:320.220000px;}
.x79_c00370{left:326.160000px;}
.x8e_c00370{left:327.510000px;}
.x35_c00370{left:332.910000px;}
.x69_c00370{left:337.500000px;}
.x63_c00370{left:339.120000px;}
.x5_c00370{left:340.261767px;}
.x53_c00370{left:342.630000px;}
.xa4_c00370{left:345.536160px;}
.xa8_c00370{left:346.608000px;}
.x8f_c00370{left:351.810000px;}
.x7f_c00370{left:353.430000px;}
.x19_c00370{left:354.510000px;}
.x36_c00370{left:356.130000px;}
.x1a_c00370{left:358.020000px;}
.x71_c00370{left:360.990000px;}
.x26_c00370{left:362.880000px;}
.x10_c00370{left:365.040000px;}
.x2b_c00370{left:369.090000px;}
.x80_c00370{left:370.440000px;}
.x98_c00370{left:373.321500px;}
.x8a_c00370{left:375.030000px;}
.x64_c00370{left:376.650000px;}
.x6a_c00370{left:381.510000px;}
.x37_c00370{left:384.210000px;}
.x54_c00370{left:386.910000px;}
.x24_c00370{left:389.070000px;}
.x90_c00370{left:394.470000px;}
.x2c_c00370{left:396.630000px;}
.x95_c00370{left:400.950000px;}
.x93_c00370{left:403.380000px;}
.x5b_c00370{left:409.050000px;}
.x1b_c00370{left:412.020000px;}
.x6_c00370{left:414.095859px;}
.x4b_c00370{left:416.880000px;}
.x91_c00370{left:419.040000px;}
.x6b_c00370{left:420.930000px;}
.x38_c00370{left:422.550000px;}
.x42_c00370{left:423.630000px;}
.x72_c00370{left:426.330000px;}
.x99_c00370{left:433.240500px;}
.x6c_c00370{left:436.860000px;}
.x7c_c00370{left:439.830000px;}
.x96_c00370{left:442.800000px;}
.x1c_c00370{left:444.690000px;}
.x81_c00370{left:447.120000px;}
.x27_c00370{left:449.280000px;}
.x7d_c00370{left:450.630000px;}
.x7_c00370{left:456.960451px;}
.xa5_c00370{left:458.710956px;}
.xe_c00370{left:461.544762px;}
.x11_c00370{left:463.860000px;}
.x28_c00370{left:465.750000px;}
.x9a_c00370{left:468.546000px;}
.x1d_c00370{left:471.150000px;}
.x2d_c00370{left:472.500000px;}
.x39_c00370{left:476.820000px;}
.x73_c00370{left:477.900000px;}
.x4c_c00370{left:480.600000px;}
.xa6_c00370{left:483.252984px;}
.x8b_c00370{left:487.080000px;}
.x8_c00370{left:489.390988px;}
.x97_c00370{left:490.860000px;}
.x5c_c00370{left:493.290000px;}
.x4d_c00370{left:494.640000px;}
.x55_c00370{left:497.070000px;}
.x56_c00370{left:500.310000px;}
.x3a_c00370{left:501.930000px;}
.x82_c00370{left:504.360000px;}
.x74_c00370{left:510.840000px;}
.x2e_c00370{left:513.810000px;}
.x9b_c00370{left:520.975500px;}
.x57_c00370{left:525.420000px;}
.x8c_c00370{left:530.010000px;}
.x1e_c00370{left:532.710000px;}
.x9_c00370{left:533.794541px;}
.x75_c00370{left:536.760000px;}
.x4e_c00370{left:539.460000px;}
.x12_c00370{left:540.540000px;}
.xa0_c00370{left:542.217300px;}
.x3b_c00370{left:543.780000px;}
.x5d_c00370{left:548.370000px;}
.x83_c00370{left:549.990000px;}
.xa_c00370{left:553.342473px;}
.x1f_c00370{left:555.930000px;}
.x2f_c00370{left:559.440000px;}
.xb_c00370{left:569.583216px;}
.x59_c00370{left:588.474000px;}
.xa9_c00370{left:598.791000px;}
.x58_c00370{left:599.940000px;}
.x4f_c00370{left:601.290000px;}
.x47_c00370{left:603.990000px;}
.x5e_c00370{left:606.420000px;}
.x9c_c00370{left:614.319000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fs10_c00370{font-size:24.266667pt;}
.fs8_c00370{font-size:25.200000pt;}
.fs0_c00370{font-size:38.248007pt;}
.fs12_c00370{font-size:46.667810pt;}
.fs11_c00370{font-size:51.334591pt;}
.fsb_c00370{font-size:56.000000pt;}
.fs7_c00370{font-size:56.933333pt;}
.fse_c00370{font-size:57.874073pt;}
.fsd_c00370{font-size:59.733333pt;}
.fsc_c00370{font-size:61.600000pt;}
.fsf_c00370{font-size:61.607884pt;}
.fs6_c00370{font-size:62.533333pt;}
.fs9_c00370{font-size:63.466667pt;}
.fs5_c00370{font-size:64.400000pt;}
.fs3_c00370{font-size:65.333333pt;}
.fs4_c00370{font-size:66.266667pt;}
.fsa_c00370{font-size:68.133333pt;}
.fs2_c00370{font-size:79.333333pt;}
.fs1_c00370{font-size:150.193394pt;}
.y0_c00370{bottom:0.000000pt;}
.y5f_c00370{bottom:147.715041pt;}
.y5e_c00370{bottom:147.715468pt;}
.y60_c00370{bottom:147.715504pt;}
.y61_c00370{bottom:147.715833pt;}
.y62_c00370{bottom:147.716349pt;}
.y63_c00370{bottom:147.716679pt;}
.y64_c00370{bottom:147.717105pt;}
.y65_c00370{bottom:147.717452pt;}
.y5d_c00370{bottom:161.758541pt;}
.y5c_c00370{bottom:162.062472pt;}
.y5b_c00370{bottom:162.488100pt;}
.y5a_c00370{bottom:162.580145pt;}
.y59_c00370{bottom:162.706257pt;}
.y58_c00370{bottom:163.026839pt;}
.y57_c00370{bottom:163.136104pt;}
.y56_c00370{bottom:163.327680pt;}
.y55_c00370{bottom:163.418447pt;}
.y54_c00370{bottom:163.865261pt;}
.y53_c00370{bottom:164.325731pt;}
.y52_c00370{bottom:164.528815pt;}
.y51_c00370{bottom:164.683496pt;}
.y50_c00370{bottom:164.880000pt;}
.y4f_c00370{bottom:171.961333pt;}
.y4e_c00370{bottom:201.111179pt;}
.y4d_c00370{bottom:201.833781pt;}
.y4c_c00370{bottom:201.986773pt;}
.y4b_c00370{bottom:202.146240pt;}
.y4a_c00370{bottom:202.539893pt;}
.y49_c00370{bottom:202.690805pt;}
.y48_c00370{bottom:203.230027pt;}
.y47_c00370{bottom:203.428075pt;}
.y46_c00370{bottom:203.678165pt;}
.y45_c00370{bottom:203.867381pt;}
.y44_c00370{bottom:204.117323pt;}
.y43_c00370{bottom:204.236181pt;}
.y37_c00370{bottom:222.710325pt;}
.y39_c00370{bottom:222.710336pt;}
.y38_c00370{bottom:222.710379pt;}
.y3b_c00370{bottom:222.710752pt;}
.y3a_c00370{bottom:222.710795pt;}
.y3e_c00370{bottom:222.711125pt;}
.y3c_c00370{bottom:222.711189pt;}
.y3d_c00370{bottom:222.711723pt;}
.y3f_c00370{bottom:222.711776pt;}
.y40_c00370{bottom:222.712267pt;}
.y42_c00370{bottom:222.712597pt;}
.y41_c00370{bottom:222.712736pt;}
.y36_c00370{bottom:240.758837pt;}
.y35_c00370{bottom:241.625952pt;}
.y34_c00370{bottom:242.086389pt;}
.y33_c00370{bottom:242.832053pt;}
.y32_c00370{bottom:243.334176pt;}
.y31_c00370{bottom:243.764021pt;}
.y30_c00370{bottom:244.186357pt;}
.y2f_c00370{bottom:244.643317pt;}
.y2e_c00370{bottom:245.462176pt;}
.y2d_c00370{bottom:245.792501pt;}
.y2c_c00370{bottom:246.882613pt;}
.y2b_c00370{bottom:247.324085pt;}
.y2a_c00370{bottom:248.161333pt;}
.y29_c00370{bottom:263.424000pt;}
.y28_c00370{bottom:287.757333pt;}
.y27_c00370{bottom:312.678667pt;}
.y26_c00370{bottom:333.405333pt;}
.y25_c00370{bottom:353.073333pt;}
.y24_c00370{bottom:378.424000pt;}
.y23_c00370{bottom:398.562667pt;}
.y22_c00370{bottom:418.450667pt;}
.y21_c00370{bottom:438.653333pt;}
.y20_c00370{bottom:459.054667pt;}
.y1f_c00370{bottom:486.960000pt;}
.y1c_c00370{bottom:503.761333pt;}
.y1d_c00370{bottom:505.453333pt;}
.y1e_c00370{bottom:507.270667pt;}
.y1b_c00370{bottom:524.396000pt;}
.y1a_c00370{bottom:543.746667pt;}
.y19_c00370{bottom:567.705333pt;}
.y18_c00370{bottom:568.090667pt;}
.y17_c00370{bottom:584.485333pt;}
.y16_c00370{bottom:605.476000pt;}
.y15_c00370{bottom:625.782667pt;}
.y14_c00370{bottom:650.160000pt;}
.y13_c00370{bottom:683.290667pt;}
.y12_c00370{bottom:714.946667pt;}
.y11_c00370{bottom:736.185333pt;}
.y10_c00370{bottom:774.720000pt;}
.yc_c00370{bottom:809.752641pt;}
.yd_c00370{bottom:811.693847pt;}
.ye_c00370{bottom:817.564055pt;}
.yf_c00370{bottom:821.623959pt;}
.y1_c00370{bottom:827.268000pt;}
.y2_c00370{bottom:827.422453pt;}
.y3_c00370{bottom:829.553312pt;}
.y4_c00370{bottom:832.380704pt;}
.y5_c00370{bottom:833.916405pt;}
.y6_c00370{bottom:836.018677pt;}
.y7_c00370{bottom:837.239157pt;}
.y8_c00370{bottom:838.162549pt;}
.y9_c00370{bottom:839.426848pt;}
.ya_c00370{bottom:839.983435pt;}
.yb_c00370{bottom:840.445856pt;}
.h12_c00370{height:24.266667pt;}
.ha_c00370{height:25.200000pt;}
.h2_c00370{height:38.248007pt;}
.h14_c00370{height:46.667810pt;}
.h13_c00370{height:51.334591pt;}
.hd_c00370{height:56.000000pt;}
.h9_c00370{height:56.933333pt;}
.h10_c00370{height:57.874073pt;}
.hf_c00370{height:59.733333pt;}
.he_c00370{height:61.600000pt;}
.h11_c00370{height:61.607884pt;}
.h8_c00370{height:62.533333pt;}
.hb_c00370{height:63.466667pt;}
.h7_c00370{height:64.400000pt;}
.h5_c00370{height:65.333333pt;}
.h6_c00370{height:66.266667pt;}
.hc_c00370{height:68.133333pt;}
.h4_c00370{height:79.333333pt;}
.h3_c00370{height:150.193394pt;}
.h1_c00370{height:893.333333pt;}
.h0_c00370{height:893.466667pt;}
.w0_c00370{width:635.733333pt;}
.w1_c00370{width:636.000000pt;}
.x0_c00370{left:0.000000pt;}
.xc_c00370{left:39.654323pt;}
.x30_c00370{left:74.160000pt;}
.x84_c00370{left:77.280000pt;}
.x13_c00370{left:82.560000pt;}
.x3c_c00370{left:83.520000pt;}
.x6d_c00370{left:85.200000pt;}
.xa1_c00370{left:86.108736pt;}
.x1_c00370{left:94.900000pt;}
.xaa_c00370{left:96.959041pt;}
.x2_c00370{left:99.721840pt;}
.x5f_c00370{left:101.760000pt;}
.x3d_c00370{left:103.920000pt;}
.x76_c00370{left:112.080000pt;}
.xa7_c00370{left:114.408000pt;}
.x14_c00370{left:117.120000pt;}
.x92_c00370{left:118.080000pt;}
.x50_c00370{left:120.480000pt;}
.x8d_c00370{left:125.520000pt;}
.x7e_c00370{left:126.480000pt;}
.xab_c00370{left:132.960805pt;}
.x65_c00370{left:135.120000pt;}
.x31_c00370{left:136.560000pt;}
.xa2_c00370{left:138.916352pt;}
.x60_c00370{left:139.920000pt;}
.x15_c00370{left:146.640000pt;}
.x6e_c00370{left:152.160000pt;}
.x85_c00370{left:153.600000pt;}
.x3e_c00370{left:156.240000pt;}
.x61_c00370{left:157.920000pt;}
.xac_c00370{left:162.480919pt;}
.x20_c00370{left:163.680000pt;}
.x3_c00370{left:166.244584pt;}
.x9d_c00370{left:167.290357pt;}
.x86_c00370{left:168.720000pt;}
.x43_c00370{left:171.360000pt;}
.x7a_c00370{left:174.000000pt;}
.x48_c00370{left:176.400000pt;}
.x51_c00370{left:178.080000pt;}
.x3f_c00370{left:179.760000pt;}
.x62_c00370{left:185.520000pt;}
.x32_c00370{left:186.720000pt;}
.x44_c00370{left:189.120000pt;}
.xad_c00370{left:192.721069pt;}
.x66_c00370{left:193.680000pt;}
.x29_c00370{left:194.880000pt;}
.x87_c00370{left:196.800000pt;}
.xf_c00370{left:198.000000pt;}
.x40_c00370{left:199.440000pt;}
.xa3_c00370{left:201.798752pt;}
.x41_c00370{left:204.720000pt;}
.x21_c00370{left:207.840000pt;}
.x45_c00370{left:209.280000pt;}
.x33_c00370{left:210.480000pt;}
.x23_c00370{left:212.400000pt;}
.x16_c00370{left:214.320000pt;}
.x49_c00370{left:217.680000pt;}
.x2a_c00370{left:219.840000pt;}
.x5a_c00370{left:222.240000pt;}
.x7b_c00370{left:227.520000pt;}
.x94_c00370{left:228.480000pt;}
.x6f_c00370{left:230.880000pt;}
.x67_c00370{left:234.240000pt;}
.x9e_c00370{left:235.698539pt;}
.x52_c00370{left:237.600000pt;}
.x22_c00370{left:238.800000pt;}
.x4a_c00370{left:243.360000pt;}
.x88_c00370{left:247.440000pt;}
.x70_c00370{left:252.000000pt;}
.x4_c00370{left:254.512228pt;}
.x17_c00370{left:257.520000pt;}
.x25_c00370{left:258.480000pt;}
.x34_c00370{left:260.160000pt;}
.x77_c00370{left:261.600000pt;}
.x9f_c00370{left:270.263392pt;}
.x68_c00370{left:272.160000pt;}
.x78_c00370{left:275.760000pt;}
.x89_c00370{left:277.440000pt;}
.x46_c00370{left:279.360000pt;}
.xd_c00370{left:283.516883pt;}
.x18_c00370{left:284.640000pt;}
.x79_c00370{left:289.920000pt;}
.x8e_c00370{left:291.120000pt;}
.x35_c00370{left:295.920000pt;}
.x69_c00370{left:300.000000pt;}
.x63_c00370{left:301.440000pt;}
.x5_c00370{left:302.454904pt;}
.x53_c00370{left:304.560000pt;}
.xa4_c00370{left:307.143253pt;}
.xa8_c00370{left:308.096000pt;}
.x8f_c00370{left:312.720000pt;}
.x7f_c00370{left:314.160000pt;}
.x19_c00370{left:315.120000pt;}
.x36_c00370{left:316.560000pt;}
.x1a_c00370{left:318.240000pt;}
.x71_c00370{left:320.880000pt;}
.x26_c00370{left:322.560000pt;}
.x10_c00370{left:324.480000pt;}
.x2b_c00370{left:328.080000pt;}
.x80_c00370{left:329.280000pt;}
.x98_c00370{left:331.841333pt;}
.x8a_c00370{left:333.360000pt;}
.x64_c00370{left:334.800000pt;}
.x6a_c00370{left:339.120000pt;}
.x37_c00370{left:341.520000pt;}
.x54_c00370{left:343.920000pt;}
.x24_c00370{left:345.840000pt;}
.x90_c00370{left:350.640000pt;}
.x2c_c00370{left:352.560000pt;}
.x95_c00370{left:356.400000pt;}
.x93_c00370{left:358.560000pt;}
.x5b_c00370{left:363.600000pt;}
.x1b_c00370{left:366.240000pt;}
.x6_c00370{left:368.085208pt;}
.x4b_c00370{left:370.560000pt;}
.x91_c00370{left:372.480000pt;}
.x6b_c00370{left:374.160000pt;}
.x38_c00370{left:375.600000pt;}
.x42_c00370{left:376.560000pt;}
.x72_c00370{left:378.960000pt;}
.x99_c00370{left:385.102667pt;}
.x6c_c00370{left:388.320000pt;}
.x7c_c00370{left:390.960000pt;}
.x96_c00370{left:393.600000pt;}
.x1c_c00370{left:395.280000pt;}
.x81_c00370{left:397.440000pt;}
.x27_c00370{left:399.360000pt;}
.x7d_c00370{left:400.560000pt;}
.x7_c00370{left:406.187068pt;}
.xa5_c00370{left:407.743072pt;}
.xe_c00370{left:410.262011pt;}
.x11_c00370{left:412.320000pt;}
.x28_c00370{left:414.000000pt;}
.x9a_c00370{left:416.485333pt;}
.x1d_c00370{left:418.800000pt;}
.x2d_c00370{left:420.000000pt;}
.x39_c00370{left:423.840000pt;}
.x73_c00370{left:424.800000pt;}
.x4c_c00370{left:427.200000pt;}
.xa6_c00370{left:429.558208pt;}
.x8b_c00370{left:432.960000pt;}
.x8_c00370{left:435.014212pt;}
.x97_c00370{left:436.320000pt;}
.x5c_c00370{left:438.480000pt;}
.x4d_c00370{left:439.680000pt;}
.x55_c00370{left:441.840000pt;}
.x56_c00370{left:444.720000pt;}
.x3a_c00370{left:446.160000pt;}
.x82_c00370{left:448.320000pt;}
.x74_c00370{left:454.080000pt;}
.x2e_c00370{left:456.720000pt;}
.x9b_c00370{left:463.089333pt;}
.x57_c00370{left:467.040000pt;}
.x8c_c00370{left:471.120000pt;}
.x1e_c00370{left:473.520000pt;}
.x9_c00370{left:474.484036pt;}
.x75_c00370{left:477.120000pt;}
.x4e_c00370{left:479.520000pt;}
.x12_c00370{left:480.480000pt;}
.xa0_c00370{left:481.970933pt;}
.x3b_c00370{left:483.360000pt;}
.x5d_c00370{left:487.440000pt;}
.x83_c00370{left:488.880000pt;}
.xa_c00370{left:491.859976pt;}
.x1f_c00370{left:494.160000pt;}
.x2f_c00370{left:497.280000pt;}
.xb_c00370{left:506.296192pt;}
.x59_c00370{left:523.088000pt;}
.xa9_c00370{left:532.258667pt;}
.x58_c00370{left:533.280000pt;}
.x4f_c00370{left:534.480000pt;}
.x47_c00370{left:536.880000pt;}
.x5e_c00370{left:539.040000pt;}
.x9c_c00370{left:546.061333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.ma_c00371{transform:matrix(0.005385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005385,0.000000,0.000000,0.250000,0,0);}
.m89_c00371{transform:matrix(0.100905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100905,0.000000,0.000000,0.250000,0,0);}
.me0_c00371{transform:matrix(0.105545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105545,0.000000,0.000000,0.250000,0,0);}
.ma6_c00371{transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);}
.m7d_c00371{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.m40_c00371{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);}
.me_c00371{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);}
.m7b_c00371{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m99_c00371{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);}
.m8e_c00371{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);}
.m78_c00371{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);}
.m5e_c00371{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);}
.m62_c00371{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);}
.mb0_c00371{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);}
.m52_c00371{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);}
.mc2_c00371{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m3d_c00371{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);}
.m54_c00371{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);}
.m35_c00371{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);}
.ma8_c00371{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);}
.ma0_c00371{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);}
.m73_c00371{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);}
.mc4_c00371{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);}
.m3f_c00371{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);}
.m63_c00371{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);}
.m6f_c00371{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);}
.m75_c00371{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);}
.m7f_c00371{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);}
.m27_c00371{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);}
.m58_c00371{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);}
.m68_c00371{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);}
.m5d_c00371{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);}
.m51_c00371{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);}
.m72_c00371{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);}
.m71_c00371{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);}
.m42_c00371{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);}
.mf1_c00371{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);}
.m55_c00371{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);}
.md2_c00371{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);}
.m5c_c00371{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);}
.m10_c00371{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);}
.md5_c00371{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);}
.m91_c00371{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);}
.m79_c00371{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);}
.m61_c00371{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);}
.mee_c00371{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);}
.m92_c00371{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);}
.mb1_c00371{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);}
.m21_c00371{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);}
.m1d_c00371{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);}
.m7e_c00371{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);}
.md4_c00371{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);}
.m2b_c00371{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);}
.mc9_c00371{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);}
.m9f_c00371{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);}
.mf6_c00371{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);}
.md9_c00371{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);}
.ma2_c00371{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);}
.m1f_c00371{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);}
.ma4_c00371{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);}
.maf_c00371{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);}
.ma7_c00371{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);}
.m66_c00371{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);}
.me5_c00371{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);}
.me2_c00371{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);}
.m9b_c00371{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);}
.mfb_c00371{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);}
.m23_c00371{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);}
.md6_c00371{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);}
.m6c_c00371{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);}
.m46_c00371{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);}
.m94_c00371{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);}
.m28_c00371{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);}
.m2a_c00371{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);}
.m65_c00371{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);}
.m64_c00371{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);}
.m5f_c00371{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);}
.m4f_c00371{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);}
.m7a_c00371{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);}
.m36_c00371{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00371{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);}
.m4a_c00371{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);}
.m44_c00371{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);}
.md1_c00371{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);}
.m57_c00371{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);}
.mab_c00371{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);}
.mb4_c00371{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);}
.md3_c00371{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);}
.m98_c00371{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);}
.mf7_c00371{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);}
.m0_c00371{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);}
.mcf_c00371{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);}
.mbb_c00371{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);}
.mbc_c00371{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);}
.md0_c00371{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);}
.m85_c00371{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);}
.m1e_c00371{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);}
.m3a_c00371{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);}
.m83_c00371{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);}
.med_c00371{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);}
.m88_c00371{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);}
.m6e_c00371{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);}
.mad_c00371{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);}
.m4b_c00371{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);}
.ma5_c00371{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);}
.m38_c00371{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);}
.m29_c00371{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);}
.m45_c00371{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);}
.m2f_c00371{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);}
.m22_c00371{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);}
.m25_c00371{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);}
.mec_c00371{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);}
.m31_c00371{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);}
.ma3_c00371{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);}
.mc8_c00371{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);}
.m49_c00371{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);}
.m76_c00371{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);}
.mba_c00371{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);}
.m96_c00371{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);}
.m56_c00371{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);}
.m101_c00371{transform:matrix(0.197225,-0.001972,0.002500,0.249988,0,0);-ms-transform:matrix(0.197225,-0.001972,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197225,-0.001972,0.002500,0.249988,0,0);}
.m3e_c00371{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);}
.ma1_c00371{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);}
.m24_c00371{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);}
.m59_c00371{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);}
.mef_c00371{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);}
.m53_c00371{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);}
.mcd_c00371{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);}
.m26_c00371{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);}
.mdc_c00371{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);}
.mfa_c00371{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);}
.mb6_c00371{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);}
.mf8_c00371{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);}
.m9c_c00371{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);}
.m41_c00371{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);}
.m6d_c00371{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);}
.m33_c00371{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);}
.m4c_c00371{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);}
.m47_c00371{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);}
.me4_c00371{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);}
.m81_c00371{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);}
.mc1_c00371{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);}
.mac_c00371{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);}
.m1c_c00371{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);}
.mea_c00371{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);}
.ma9_c00371{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);}
.mae_c00371{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);}
.mf9_c00371{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);}
.m2c_c00371{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);}
.m87_c00371{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);}
.m6a_c00371{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);}
.me6_c00371{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);}
.meb_c00371{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);}
.mc6_c00371{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);}
.m9e_c00371{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);}
.me9_c00371{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);}
.m37_c00371{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);}
.m48_c00371{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);}
.mc5_c00371{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);}
.m77_c00371{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);}
.m9d_c00371{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);}
.mc7_c00371{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);}
.mca_c00371{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);}
.mb2_c00371{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);}
.m2e_c00371{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);}
.m17_c00371{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);}
.m2d_c00371{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);}
.mb8_c00371{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.m8b_c00371{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);}
.mdd_c00371{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);}
.m9a_c00371{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);}
.mf5_c00371{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);}
.m32_c00371{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);}
.mf2_c00371{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);}
.m69_c00371{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);}
.m90_c00371{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);}
.me7_c00371{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);}
.m39_c00371{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);}
.mc_c00371{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);}
.m4d_c00371{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);}
.mb9_c00371{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);}
.mbd_c00371{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);}
.m67_c00371{transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);}
.me3_c00371{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);}
.m5a_c00371{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.md7_c00371{transform:matrix(0.234670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234670,0.000000,0.000000,0.250000,0,0);}
.m7c_c00371{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);}
.mbe_c00371{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);}
.m93_c00371{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);}
.mc3_c00371{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);}
.m43_c00371{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);}
.m50_c00371{transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00371{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);}
.mce_c00371{transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);}
.md8_c00371{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m82_c00371{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.mb5_c00371{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);}
.mcb_c00371{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);}
.me8_c00371{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);}
.m86_c00371{transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{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);}
.maa_c00371{transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262645,0.000000,0.000000,0.250000,0,0);}
.mf0_c00371{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.mf4_c00371{transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269205,0.000000,0.000000,0.250000,0,0);}
.m4e_c00371{transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00371{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);}
.m80_c00371{transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00371{transform:matrix(0.275190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275190,0.000000,0.000000,0.250000,0,0);}
.m84_c00371{transform:matrix(0.276075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276075,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{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);}
.mda_c00371{transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281910,0.000000,0.000000,0.250000,0,0);}
.m60_c00371{transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.291440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291440,0.000000,0.000000,0.250000,0,0);}
.m34_c00371{transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{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);}
.m70_c00371{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);}
.m18_c00371{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.mdb_c00371{transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);}
.me1_c00371{transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308685,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{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);}
.m8f_c00371{transform:matrix(0.318445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318445,0.000000,0.000000,0.250000,0,0);}
.mf3_c00371{transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00371{transform:matrix(0.323645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323645,0.000000,0.000000,0.250000,0,0);}
.mb3_c00371{transform:matrix(0.330575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{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);}
.m19_c00371{transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336695,0.000000,0.000000,0.250000,0,0);}
.m5b_c00371{transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);}
.mbf_c00371{transform:matrix(0.366010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366010,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.382130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382130,0.000000,0.000000,0.250000,0,0);}
.m8c_c00371{transform:matrix(0.383895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383895,0.000000,0.000000,0.250000,0,0);}
.mfc_c00371{transform:matrix(0.386741,-0.003867,0.002500,0.249988,0,0);-ms-transform:matrix(0.386741,-0.003867,0.002500,0.249988,0,0);-webkit-transform:matrix(0.386741,-0.003867,0.002500,0.249988,0,0);}
.m3b_c00371{transform:matrix(0.395385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395385,0.000000,0.000000,0.250000,0,0);}
.mde_c00371{transform:matrix(0.396270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396270,0.000000,0.000000,0.250000,0,0);}
.m103_c00371{transform:matrix(0.402580,-0.004026,0.002500,0.249988,0,0);-ms-transform:matrix(0.402580,-0.004026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.402580,-0.004026,0.002500,0.249988,0,0);}
.m8d_c00371{transform:matrix(0.404905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404905,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);}
.mfe_c00371{transform:matrix(0.413319,-0.004133,0.002500,0.249988,0,0);-ms-transform:matrix(0.413319,-0.004133,0.002500,0.249988,0,0);-webkit-transform:matrix(0.413319,-0.004133,0.002500,0.249988,0,0);}
.m7_c00371{transform:matrix(0.413405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413405,0.000000,0.000000,0.250000,0,0);}
.mdf_c00371{transform:matrix(0.432585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432585,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.452710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452710,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.474475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00371{transform:matrix(0.479535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479535,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.484605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484605,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.546905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546905,0.000000,0.000000,0.250000,0,0);}
.m95_c00371{transform:matrix(0.554505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554505,0.000000,0.000000,0.250000,0,0);}
.m100_c00371{transform:matrix(0.592520,-0.005925,0.002500,0.249988,0,0);-ms-transform:matrix(0.592520,-0.005925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.592520,-0.005925,0.002500,0.249988,0,0);}
.m8_c00371{transform:matrix(0.626070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626070,0.000000,0.000000,0.250000,0,0);}
.m104_c00371{transform:matrix(0.652837,-0.006528,0.002500,0.249988,0,0);-ms-transform:matrix(0.652837,-0.006528,0.002500,0.249988,0,0);-webkit-transform:matrix(0.652837,-0.006528,0.002500,0.249988,0,0);}
.m97_c00371{transform:matrix(0.672355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672355,0.000000,0.000000,0.250000,0,0);}
.mfd_c00371{transform:matrix(0.762667,-0.007627,0.002500,0.249988,0,0);-ms-transform:matrix(0.762667,-0.007627,0.002500,0.249988,0,0);-webkit-transform:matrix(0.762667,-0.007627,0.002500,0.249988,0,0);}
.mb7_c00371{transform:matrix(0.768090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768090,0.000000,0.000000,0.250000,0,0);}
.m74_c00371{transform:matrix(0.786565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786565,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.817545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817545,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.853660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853660,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.919540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919540,0.000000,0.000000,0.250000,0,0);}
.mff_c00371{transform:matrix(0.979331,-0.009793,0.002500,0.249988,0,0);-ms-transform:matrix(0.979331,-0.009793,0.002500,0.249988,0,0);-webkit-transform:matrix(0.979331,-0.009793,0.002500,0.249988,0,0);}
.m102_c00371{transform:matrix(1.031998,-0.010320,0.002500,0.249988,0,0);-ms-transform:matrix(1.031998,-0.010320,0.002500,0.249988,0,0);-webkit-transform:matrix(1.031998,-0.010320,0.002500,0.249988,0,0);}
.m16_c00371{transform:matrix(1.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235375,0.000000,0.000000,0.250000,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;}
.fs4_c00371{font-size:22.050000px;}
.fsa_c00371{font-size:23.100000px;}
.fse_c00371{font-size:25.200000px;}
.fs0_c00371{font-size:28.350000px;}
.fs10_c00371{font-size:49.350000px;}
.fs12_c00371{font-size:51.450000px;}
.fsf_c00371{font-size:52.500000px;}
.fs11_c00371{font-size:53.550000px;}
.fs1_c00371{font-size:54.600000px;}
.fs13_c00371{font-size:60.903045px;}
.fs8_c00371{font-size:67.200000px;}
.fsb_c00371{font-size:68.250000px;}
.fs6_c00371{font-size:69.300000px;}
.fsd_c00371{font-size:70.350000px;}
.fs7_c00371{font-size:71.400000px;}
.fsc_c00371{font-size:72.450000px;}
.fs9_c00371{font-size:73.500000px;}
.fs5_c00371{font-size:90.300000px;}
.fs3_c00371{font-size:107.100000px;}
.fs2_c00371{font-size:141.750000px;}
.y0_c00371{bottom:0.000000px;}
.y25_c00371{bottom:98.539500px;}
.y26_c00371{bottom:98.768775px;}
.y27_c00371{bottom:99.183420px;}
.y28_c00371{bottom:99.231255px;}
.y29_c00371{bottom:100.777545px;}
.y2a_c00371{bottom:102.843990px;}
.y2b_c00371{bottom:103.077990px;}
.y2c_c00371{bottom:103.606215px;}
.y2d_c00371{bottom:103.864290px;}
.y24_c00371{bottom:144.550500px;}
.y23_c00371{bottom:162.640500px;}
.y22_c00371{bottom:180.154500px;}
.y21_c00371{bottom:198.208500px;}
.y20_c00371{bottom:216.040500px;}
.y1f_c00371{bottom:239.220000px;}
.y1e_c00371{bottom:316.179000px;}
.y1d_c00371{bottom:339.151500px;}
.y1c_c00371{bottom:361.611000px;}
.y1b_c00371{bottom:388.212000px;}
.y1a_c00371{bottom:425.004000px;}
.y19_c00371{bottom:443.997000px;}
.y18_c00371{bottom:466.450500px;}
.y17_c00371{bottom:494.004000px;}
.y16_c00371{bottom:512.740500px;}
.y15_c00371{bottom:535.888500px;}
.y14_c00371{bottom:559.089000px;}
.y13_c00371{bottom:567.000000px;}
.y12_c00371{bottom:586.689000px;}
.y11_c00371{bottom:614.571000px;}
.y10_c00371{bottom:637.050000px;}
.yf_c00371{bottom:659.961000px;}
.ye_c00371{bottom:686.313000px;}
.yd_c00371{bottom:709.957500px;}
.yc_c00371{bottom:749.925000px;}
.yb_c00371{bottom:795.673500px;}
.ya_c00371{bottom:873.450000px;}
.y9_c00371{bottom:876.219000px;}
.y8_c00371{bottom:877.603500px;}
.y7_c00371{bottom:877.995000px;}
.y6_c00371{bottom:879.138000px;}
.y5_c00371{bottom:879.909000px;}
.y4_c00371{bottom:880.471500px;}
.y3_c00371{bottom:912.972000px;}
.y2_c00371{bottom:933.007500px;}
.y1_c00371{bottom:990.360000px;}
.h6_c00371{height:22.050000px;}
.hc_c00371{height:23.100000px;}
.h10_c00371{height:25.200000px;}
.h2_c00371{height:28.350000px;}
.h12_c00371{height:49.350000px;}
.h14_c00371{height:51.450000px;}
.h11_c00371{height:52.500000px;}
.h13_c00371{height:53.550000px;}
.h3_c00371{height:54.600000px;}
.h15_c00371{height:60.903045px;}
.ha_c00371{height:67.200000px;}
.hd_c00371{height:68.250000px;}
.h8_c00371{height:69.300000px;}
.hf_c00371{height:70.350000px;}
.h9_c00371{height:71.400000px;}
.he_c00371{height:72.450000px;}
.hb_c00371{height:73.500000px;}
.h7_c00371{height:90.300000px;}
.h5_c00371{height:107.100000px;}
.h4_c00371{height:141.750000px;}
.h0_c00371{height:1008.450000px;}
.h1_c00371{height:1008.750000px;}
.w1_c00371{width:689.250000px;}
.w0_c00371{width:689.550000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:97.740000px;}
.x9_c00371{left:99.090000px;}
.x11_c00371{left:116.100000px;}
.xa0_c00371{left:127.473000px;}
.x30_c00371{left:149.850000px;}
.x51_c00371{left:151.470000px;}
.x3a_c00371{left:152.550000px;}
.xc_c00371{left:154.656000px;}
.x94_c00371{left:158.220000px;}
.x80_c00371{left:164.970000px;}
.x3_c00371{left:166.860000px;}
.x45_c00371{left:169.020000px;}
.x60_c00371{left:170.100000px;}
.x29_c00371{left:171.180000px;}
.x99_c00371{left:172.530000px;}
.x88_c00371{left:176.310000px;}
.x7c_c00371{left:177.390000px;}
.x6b_c00371{left:182.250000px;}
.x8e_c00371{left:187.380000px;}
.x1b_c00371{left:188.460000px;}
.x46_c00371{left:190.620000px;}
.xa1_c00371{left:191.865000px;}
.x95_c00371{left:193.590000px;}
.xa2_c00371{left:196.648500px;}
.x15_c00371{left:200.880000px;}
.x81_c00371{left:202.230000px;}
.x3b_c00371{left:203.310000px;}
.x31_c00371{left:206.820000px;}
.x89_c00371{left:208.170000px;}
.x72_c00371{left:209.790000px;}
.x61_c00371{left:211.950000px;}
.x2a_c00371{left:213.840000px;}
.xa_c00371{left:215.190000px;}
.x41_c00371{left:216.810000px;}
.x9a_c00371{left:219.240000px;}
.x47_c00371{left:221.400000px;}
.x5b_c00371{left:225.990000px;}
.x6c_c00371{left:228.690000px;}
.xd_c00371{left:231.744000px;}
.x73_c00371{left:234.630000px;}
.x9b_c00371{left:236.520000px;}
.x7d_c00371{left:239.760000px;}
.x8a_c00371{left:241.380000px;}
.x32_c00371{left:249.750000px;}
.x82_c00371{left:252.180000px;}
.x52_c00371{left:256.230000px;}
.x8b_c00371{left:260.280000px;}
.x4_c00371{left:263.250000px;}
.x6d_c00371{left:268.110000px;}
.x24_c00371{left:271.350000px;}
.x7e_c00371{left:272.700000px;}
.x1c_c00371{left:279.180000px;}
.x62_c00371{left:280.260000px;}
.x9c_c00371{left:284.040000px;}
.x12_c00371{left:285.120000px;}
.x48_c00371{left:286.470000px;}
.x6e_c00371{left:289.710000px;}
.x42_c00371{left:291.330000px;}
.x2b_c00371{left:292.680000px;}
.x33_c00371{left:293.760000px;}
.x74_c00371{left:297.000000px;}
.x5_c00371{left:299.970000px;}
.x8c_c00371{left:302.670000px;}
.x3c_c00371{left:308.340000px;}
.x8f_c00371{left:309.690000px;}
.x13_c00371{left:311.310000px;}
.x25_c00371{left:312.390000px;}
.x63_c00371{left:314.010000px;}
.x1d_c00371{left:317.520000px;}
.x34_c00371{left:319.680000px;}
.x7f_c00371{left:320.760000px;}
.x53_c00371{left:326.700000px;}
.x6f_c00371{left:328.860000px;}
.x8d_c00371{left:332.910000px;}
.x75_c00371{left:334.800000px;}
.x1e_c00371{left:336.420000px;}
.x64_c00371{left:339.930000px;}
.x90_c00371{left:341.820000px;}
.xe_c00371{left:346.008000px;}
.x6_c00371{left:349.110000px;}
.x79_c00371{left:350.460000px;}
.x49_c00371{left:352.620000px;}
.x96_c00371{left:353.970000px;}
.x16_c00371{left:356.670000px;}
.x9d_c00371{left:358.830000px;}
.x70_c00371{left:367.740000px;}
.x35_c00371{left:369.630000px;}
.x3d_c00371{left:371.790000px;}
.x91_c00371{left:373.410000px;}
.x54_c00371{left:376.920000px;}
.x1f_c00371{left:380.700000px;}
.xf_c00371{left:385.143000px;}
.x2c_c00371{left:387.450000px;}
.x83_c00371{left:394.470000px;}
.x26_c00371{left:400.140000px;}
.x65_c00371{left:403.380000px;}
.x43_c00371{left:406.080000px;}
.x7_c00371{left:407.430000px;}
.x2d_c00371{left:411.480000px;}
.x7a_c00371{left:413.370000px;}
.x55_c00371{left:414.990000px;}
.x14_c00371{left:417.150000px;}
.x27_c00371{left:421.470000px;}
.x4a_c00371{left:424.170000px;}
.x84_c00371{left:425.250000px;}
.x5c_c00371{left:426.870000px;}
.x71_c00371{left:429.570000px;}
.x56_c00371{left:434.700000px;}
.x3e_c00371{left:437.400000px;}
.x4b_c00371{left:441.450000px;}
.x44_c00371{left:443.070000px;}
.x20_c00371{left:447.660000px;}
.x17_c00371{left:448.740000px;}
.x8_c00371{left:450.360000px;}
.x92_c00371{left:451.440000px;}
.x85_c00371{left:454.410000px;}
.x76_c00371{left:455.760000px;}
.x36_c00371{left:457.650000px;}
.x28_c00371{left:460.620000px;}
.x5d_c00371{left:463.860000px;}
.x86_c00371{left:470.610000px;}
.x3f_c00371{left:473.040000px;}
.x37_c00371{left:477.360000px;}
.x97_c00371{left:480.600000px;}
.x18_c00371{left:482.220000px;}
.x57_c00371{left:485.190000px;}
.x21_c00371{left:488.430000px;}
.x77_c00371{left:493.560000px;}
.x40_c00371{left:494.910000px;}
.x2e_c00371{left:499.770000px;}
.x66_c00371{left:505.170000px;}
.x4c_c00371{left:507.330000px;}
.x19_c00371{left:511.380000px;}
.x22_c00371{left:517.590000px;}
.x5e_c00371{left:521.640000px;}
.x10_c00371{left:523.639500px;}
.x4d_c00371{left:525.420000px;}
.x9e_c00371{left:527.580000px;}
.x38_c00371{left:529.740000px;}
.xb_c00371{left:535.680000px;}
.x5f_c00371{left:540.270000px;}
.x58_c00371{left:542.160000px;}
.x98_c00371{left:547.020000px;}
.x4e_c00371{left:549.720000px;}
.x1_c00371{left:552.960000px;}
.x78_c00371{left:557.550000px;}
.x67_c00371{left:558.900000px;}
.x1a_c00371{left:561.600000px;}
.x87_c00371{left:564.840000px;}
.x59_c00371{left:568.890000px;}
.x39_c00371{left:569.970000px;}
.x68_c00371{left:573.210000px;}
.xa3_c00371{left:581.322000px;}
.x4f_c00371{left:582.660000px;}
.x23_c00371{left:584.280000px;}
.x7b_c00371{left:585.630000px;}
.x69_c00371{left:594.270000px;}
.x9f_c00371{left:597.780000px;}
.x50_c00371{left:603.990000px;}
.x5a_c00371{left:608.040000px;}
.x2f_c00371{left:609.930000px;}
.x93_c00371{left:612.630000px;}
.x6a_c00371{left:614.520000px;}
.xa4_c00371{left:634.144500px;}
.xa5_c00371{left:659.952000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.fs4_c00371{font-size:19.600000pt;}
.fsa_c00371{font-size:20.533333pt;}
.fse_c00371{font-size:22.400000pt;}
.fs0_c00371{font-size:25.200000pt;}
.fs10_c00371{font-size:43.866667pt;}
.fs12_c00371{font-size:45.733333pt;}
.fsf_c00371{font-size:46.666667pt;}
.fs11_c00371{font-size:47.600000pt;}
.fs1_c00371{font-size:48.533333pt;}
.fs13_c00371{font-size:54.136040pt;}
.fs8_c00371{font-size:59.733333pt;}
.fsb_c00371{font-size:60.666667pt;}
.fs6_c00371{font-size:61.600000pt;}
.fsd_c00371{font-size:62.533333pt;}
.fs7_c00371{font-size:63.466667pt;}
.fsc_c00371{font-size:64.400000pt;}
.fs9_c00371{font-size:65.333333pt;}
.fs5_c00371{font-size:80.266667pt;}
.fs3_c00371{font-size:95.200000pt;}
.fs2_c00371{font-size:126.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y25_c00371{bottom:87.590667pt;}
.y26_c00371{bottom:87.794467pt;}
.y27_c00371{bottom:88.163040pt;}
.y28_c00371{bottom:88.205560pt;}
.y29_c00371{bottom:89.580040pt;}
.y2a_c00371{bottom:91.416880pt;}
.y2b_c00371{bottom:91.624880pt;}
.y2c_c00371{bottom:92.094413pt;}
.y2d_c00371{bottom:92.323813pt;}
.y24_c00371{bottom:128.489333pt;}
.y23_c00371{bottom:144.569333pt;}
.y22_c00371{bottom:160.137333pt;}
.y21_c00371{bottom:176.185333pt;}
.y20_c00371{bottom:192.036000pt;}
.y1f_c00371{bottom:212.640000pt;}
.y1e_c00371{bottom:281.048000pt;}
.y1d_c00371{bottom:301.468000pt;}
.y1c_c00371{bottom:321.432000pt;}
.y1b_c00371{bottom:345.077333pt;}
.y1a_c00371{bottom:377.781333pt;}
.y19_c00371{bottom:394.664000pt;}
.y18_c00371{bottom:414.622667pt;}
.y17_c00371{bottom:439.114667pt;}
.y16_c00371{bottom:455.769333pt;}
.y15_c00371{bottom:476.345333pt;}
.y14_c00371{bottom:496.968000pt;}
.y13_c00371{bottom:504.000000pt;}
.y12_c00371{bottom:521.501333pt;}
.y11_c00371{bottom:546.285333pt;}
.y10_c00371{bottom:566.266667pt;}
.yf_c00371{bottom:586.632000pt;}
.ye_c00371{bottom:610.056000pt;}
.yd_c00371{bottom:631.073333pt;}
.yc_c00371{bottom:666.600000pt;}
.yb_c00371{bottom:707.265333pt;}
.ya_c00371{bottom:776.400000pt;}
.y9_c00371{bottom:778.861333pt;}
.y8_c00371{bottom:780.092000pt;}
.y7_c00371{bottom:780.440000pt;}
.y6_c00371{bottom:781.456000pt;}
.y5_c00371{bottom:782.141333pt;}
.y4_c00371{bottom:782.641333pt;}
.y3_c00371{bottom:811.530667pt;}
.y2_c00371{bottom:829.340000pt;}
.y1_c00371{bottom:880.320000pt;}
.h6_c00371{height:19.600000pt;}
.hc_c00371{height:20.533333pt;}
.h10_c00371{height:22.400000pt;}
.h2_c00371{height:25.200000pt;}
.h12_c00371{height:43.866667pt;}
.h14_c00371{height:45.733333pt;}
.h11_c00371{height:46.666667pt;}
.h13_c00371{height:47.600000pt;}
.h3_c00371{height:48.533333pt;}
.h15_c00371{height:54.136040pt;}
.ha_c00371{height:59.733333pt;}
.hd_c00371{height:60.666667pt;}
.h8_c00371{height:61.600000pt;}
.hf_c00371{height:62.533333pt;}
.h9_c00371{height:63.466667pt;}
.he_c00371{height:64.400000pt;}
.hb_c00371{height:65.333333pt;}
.h7_c00371{height:80.266667pt;}
.h5_c00371{height:95.200000pt;}
.h4_c00371{height:126.000000pt;}
.h0_c00371{height:896.400000pt;}
.h1_c00371{height:896.666667pt;}
.w1_c00371{width:612.666667pt;}
.w0_c00371{width:612.933333pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:86.880000pt;}
.x9_c00371{left:88.080000pt;}
.x11_c00371{left:103.200000pt;}
.xa0_c00371{left:113.309333pt;}
.x30_c00371{left:133.200000pt;}
.x51_c00371{left:134.640000pt;}
.x3a_c00371{left:135.600000pt;}
.xc_c00371{left:137.472000pt;}
.x94_c00371{left:140.640000pt;}
.x80_c00371{left:146.640000pt;}
.x3_c00371{left:148.320000pt;}
.x45_c00371{left:150.240000pt;}
.x60_c00371{left:151.200000pt;}
.x29_c00371{left:152.160000pt;}
.x99_c00371{left:153.360000pt;}
.x88_c00371{left:156.720000pt;}
.x7c_c00371{left:157.680000pt;}
.x6b_c00371{left:162.000000pt;}
.x8e_c00371{left:166.560000pt;}
.x1b_c00371{left:167.520000pt;}
.x46_c00371{left:169.440000pt;}
.xa1_c00371{left:170.546667pt;}
.x95_c00371{left:172.080000pt;}
.xa2_c00371{left:174.798667pt;}
.x15_c00371{left:178.560000pt;}
.x81_c00371{left:179.760000pt;}
.x3b_c00371{left:180.720000pt;}
.x31_c00371{left:183.840000pt;}
.x89_c00371{left:185.040000pt;}
.x72_c00371{left:186.480000pt;}
.x61_c00371{left:188.400000pt;}
.x2a_c00371{left:190.080000pt;}
.xa_c00371{left:191.280000pt;}
.x41_c00371{left:192.720000pt;}
.x9a_c00371{left:194.880000pt;}
.x47_c00371{left:196.800000pt;}
.x5b_c00371{left:200.880000pt;}
.x6c_c00371{left:203.280000pt;}
.xd_c00371{left:205.994667pt;}
.x73_c00371{left:208.560000pt;}
.x9b_c00371{left:210.240000pt;}
.x7d_c00371{left:213.120000pt;}
.x8a_c00371{left:214.560000pt;}
.x32_c00371{left:222.000000pt;}
.x82_c00371{left:224.160000pt;}
.x52_c00371{left:227.760000pt;}
.x8b_c00371{left:231.360000pt;}
.x4_c00371{left:234.000000pt;}
.x6d_c00371{left:238.320000pt;}
.x24_c00371{left:241.200000pt;}
.x7e_c00371{left:242.400000pt;}
.x1c_c00371{left:248.160000pt;}
.x62_c00371{left:249.120000pt;}
.x9c_c00371{left:252.480000pt;}
.x12_c00371{left:253.440000pt;}
.x48_c00371{left:254.640000pt;}
.x6e_c00371{left:257.520000pt;}
.x42_c00371{left:258.960000pt;}
.x2b_c00371{left:260.160000pt;}
.x33_c00371{left:261.120000pt;}
.x74_c00371{left:264.000000pt;}
.x5_c00371{left:266.640000pt;}
.x8c_c00371{left:269.040000pt;}
.x3c_c00371{left:274.080000pt;}
.x8f_c00371{left:275.280000pt;}
.x13_c00371{left:276.720000pt;}
.x25_c00371{left:277.680000pt;}
.x63_c00371{left:279.120000pt;}
.x1d_c00371{left:282.240000pt;}
.x34_c00371{left:284.160000pt;}
.x7f_c00371{left:285.120000pt;}
.x53_c00371{left:290.400000pt;}
.x6f_c00371{left:292.320000pt;}
.x8d_c00371{left:295.920000pt;}
.x75_c00371{left:297.600000pt;}
.x1e_c00371{left:299.040000pt;}
.x64_c00371{left:302.160000pt;}
.x90_c00371{left:303.840000pt;}
.xe_c00371{left:307.562667pt;}
.x6_c00371{left:310.320000pt;}
.x79_c00371{left:311.520000pt;}
.x49_c00371{left:313.440000pt;}
.x96_c00371{left:314.640000pt;}
.x16_c00371{left:317.040000pt;}
.x9d_c00371{left:318.960000pt;}
.x70_c00371{left:326.880000pt;}
.x35_c00371{left:328.560000pt;}
.x3d_c00371{left:330.480000pt;}
.x91_c00371{left:331.920000pt;}
.x54_c00371{left:335.040000pt;}
.x1f_c00371{left:338.400000pt;}
.xf_c00371{left:342.349333pt;}
.x2c_c00371{left:344.400000pt;}
.x83_c00371{left:350.640000pt;}
.x26_c00371{left:355.680000pt;}
.x65_c00371{left:358.560000pt;}
.x43_c00371{left:360.960000pt;}
.x7_c00371{left:362.160000pt;}
.x2d_c00371{left:365.760000pt;}
.x7a_c00371{left:367.440000pt;}
.x55_c00371{left:368.880000pt;}
.x14_c00371{left:370.800000pt;}
.x27_c00371{left:374.640000pt;}
.x4a_c00371{left:377.040000pt;}
.x84_c00371{left:378.000000pt;}
.x5c_c00371{left:379.440000pt;}
.x71_c00371{left:381.840000pt;}
.x56_c00371{left:386.400000pt;}
.x3e_c00371{left:388.800000pt;}
.x4b_c00371{left:392.400000pt;}
.x44_c00371{left:393.840000pt;}
.x20_c00371{left:397.920000pt;}
.x17_c00371{left:398.880000pt;}
.x8_c00371{left:400.320000pt;}
.x92_c00371{left:401.280000pt;}
.x85_c00371{left:403.920000pt;}
.x76_c00371{left:405.120000pt;}
.x36_c00371{left:406.800000pt;}
.x28_c00371{left:409.440000pt;}
.x5d_c00371{left:412.320000pt;}
.x86_c00371{left:418.320000pt;}
.x3f_c00371{left:420.480000pt;}
.x37_c00371{left:424.320000pt;}
.x97_c00371{left:427.200000pt;}
.x18_c00371{left:428.640000pt;}
.x57_c00371{left:431.280000pt;}
.x21_c00371{left:434.160000pt;}
.x77_c00371{left:438.720000pt;}
.x40_c00371{left:439.920000pt;}
.x2e_c00371{left:444.240000pt;}
.x66_c00371{left:449.040000pt;}
.x4c_c00371{left:450.960000pt;}
.x19_c00371{left:454.560000pt;}
.x22_c00371{left:460.080000pt;}
.x5e_c00371{left:463.680000pt;}
.x10_c00371{left:465.457333pt;}
.x4d_c00371{left:467.040000pt;}
.x9e_c00371{left:468.960000pt;}
.x38_c00371{left:470.880000pt;}
.xb_c00371{left:476.160000pt;}
.x5f_c00371{left:480.240000pt;}
.x58_c00371{left:481.920000pt;}
.x98_c00371{left:486.240000pt;}
.x4e_c00371{left:488.640000pt;}
.x1_c00371{left:491.520000pt;}
.x78_c00371{left:495.600000pt;}
.x67_c00371{left:496.800000pt;}
.x1a_c00371{left:499.200000pt;}
.x87_c00371{left:502.080000pt;}
.x59_c00371{left:505.680000pt;}
.x39_c00371{left:506.640000pt;}
.x68_c00371{left:509.520000pt;}
.xa3_c00371{left:516.730667pt;}
.x4f_c00371{left:517.920000pt;}
.x23_c00371{left:519.360000pt;}
.x7b_c00371{left:520.560000pt;}
.x69_c00371{left:528.240000pt;}
.x9f_c00371{left:531.360000pt;}
.x50_c00371{left:536.880000pt;}
.x5a_c00371{left:540.480000pt;}
.x2f_c00371{left:542.160000pt;}
.x93_c00371{left:544.560000pt;}
.x6a_c00371{left:546.240000pt;}
.xa4_c00371{left:563.684000pt;}
.xa5_c00371{left:586.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_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.007969,-0.000096,0.003000,0.249982,0,0);-ms-transform:matrix(0.007969,-0.000096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.007969,-0.000096,0.003000,0.249982,0,0);}
.mad_c00372{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);}
.mc4_c00372{transform:matrix(0.057920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057920,0.000000,0.000000,0.250000,0,0);}
.m8b_c00372{transform:matrix(0.057975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057975,0.000000,0.000000,0.250000,0,0);}
.ma6_c00372{transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098610,0.000000,0.000000,0.250000,0,0);}
.m8c_c00372{transform:matrix(0.115770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115770,0.000000,0.000000,0.250000,0,0);}
.mf1_c00372{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);}
.m9d_c00372{transform:matrix(0.129060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129060,0.000000,0.000000,0.250000,0,0);}
.m8e_c00372{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);}
.m18_c00372{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);}
.m7a_c00372{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);}
.m74_c00372{transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);}
.mb4_c00372{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);}
.m96_c00372{transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147615,0.000000,0.000000,0.250000,0,0);}
.m9c_c00372{transform:matrix(0.148835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148835,0.000000,0.000000,0.250000,0,0);}
.m77_c00372{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);}
.m24_c00372{transform:matrix(0.149269,-0.001343,0.002250,0.249990,0,0);-ms-transform:matrix(0.149269,-0.001343,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149269,-0.001343,0.002250,0.249990,0,0);}
.m8f_c00372{transform:matrix(0.149385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149385,0.000000,0.000000,0.250000,0,0);}
.ma2_c00372{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);}
.mec_c00372{transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151410,0.000000,0.000000,0.250000,0,0);}
.m3d_c00372{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);}
.m59_c00372{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);}
.m3f_c00372{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);}
.mca_c00372{transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152240,0.000000,0.000000,0.250000,0,0);}
.maf_c00372{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);}
.md1_c00372{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);}
.m1c_c00372{transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{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);}
.mef_c00372{transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);-ms-transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154669,-0.001392,0.002250,0.249990,0,0);}
.ma5_c00372{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);}
.m83_c00372{transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155835,0.000000,0.000000,0.250000,0,0);}
.m9a_c00372{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);}
.m1b_c00372{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);}
.m71_c00372{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);}
.m7e_c00372{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);}
.m27_c00372{transform:matrix(0.157879,-0.001421,0.002250,0.249990,0,0);-ms-transform:matrix(0.157879,-0.001421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157879,-0.001421,0.002250,0.249990,0,0);}
.m9f_c00372{transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158440,0.000000,0.000000,0.250000,0,0);}
.m39_c00372{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);}
.m60_c00372{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);}
.mf9_c00372{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m93_c00372{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);}
.m7f_c00372{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);}
.mb0_c00372{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);}
.mb8_c00372{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);}
.m6c_c00372{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);}
.m6e_c00372{transform:matrix(0.162345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162345,0.000000,0.000000,0.250000,0,0);}
.m91_c00372{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);}
.mbf_c00372{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);}
.m58_c00372{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);}
.m61_c00372{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);}
.m80_c00372{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);}
.m2e_c00372{transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);-ms-transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165658,-0.001491,0.002250,0.249990,0,0);}
.m3c_c00372{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);}
.m95_c00372{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);}
.m37_c00372{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);}
.m99_c00372{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);}
.m22_c00372{transform:matrix(0.166453,-0.001498,0.002250,0.249990,0,0);-ms-transform:matrix(0.166453,-0.001498,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166453,-0.001498,0.002250,0.249990,0,0);}
.m57_c00372{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);}
.m7b_c00372{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);}
.m9b_c00372{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);}
.m55_c00372{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);}
.m84_c00372{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);}
.m78_c00372{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);}
.ma3_c00372{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);}
.m20_c00372{transform:matrix(0.168608,-0.001517,0.002250,0.249990,0,0);-ms-transform:matrix(0.168608,-0.001517,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168608,-0.001517,0.002250,0.249990,0,0);}
.ma0_c00372{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);}
.md0_c00372{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);}
.m76_c00372{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);}
.m65_c00372{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);}
.m88_c00372{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);}
.m2f_c00372{transform:matrix(0.170988,-0.001539,0.002250,0.249990,0,0);-ms-transform:matrix(0.170988,-0.001539,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170988,-0.001539,0.002250,0.249990,0,0);}
.mab_c00372{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);}
.mb6_c00372{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);}
.m1a_c00372{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);}
.m64_c00372{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);}
.ma9_c00372{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);}
.m7d_c00372{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);}
.m21_c00372{transform:matrix(0.173778,-0.001564,0.002250,0.249990,0,0);-ms-transform:matrix(0.173778,-0.001564,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173778,-0.001564,0.002250,0.249990,0,0);}
.m79_c00372{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);}
.m89_c00372{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);}
.m19_c00372{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);}
.m3a_c00372{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);}
.mc1_c00372{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_c00372{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);}
.m5c_c00372{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);}
.m67_c00372{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);}
.mea_c00372{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);}
.ma1_c00372{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);}
.m68_c00372{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);}
.m82_c00372{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);}
.m66_c00372{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);}
.m94_c00372{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);}
.m72_c00372{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);}
.m47_c00372{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);}
.m6f_c00372{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);}
.mf4_c00372{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);}
.m75_c00372{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);}
.mfe_c00372{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);}
.mc7_c00372{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);}
.mb2_c00372{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);}
.m85_c00372{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);}
.m50_c00372{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);}
.med_c00372{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);}
.mfc_c00372{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);}
.mc5_c00372{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);}
.md5_c00372{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);}
.m8d_c00372{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);}
.m90_c00372{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);}
.m1f_c00372{transform:matrix(0.183503,-0.001652,0.002250,0.249990,0,0);-ms-transform:matrix(0.183503,-0.001652,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183503,-0.001652,0.002250,0.249990,0,0);}
.m73_c00372{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);}
.me0_c00372{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);}
.mb3_c00372{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);}
.m9e_c00372{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);}
.m6b_c00372{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);}
.mcb_c00372{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);}
.m23_c00372{transform:matrix(0.184963,-0.001665,0.002250,0.249990,0,0);-ms-transform:matrix(0.184963,-0.001665,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184963,-0.001665,0.002250,0.249990,0,0);}
.md6_c00372{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);}
.mcc_c00372{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);}
.m54_c00372{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);}
.ma4_c00372{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);}
.m51_c00372{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);}
.m25_c00372{transform:matrix(0.186682,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186682,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186682,-0.001680,0.002250,0.249990,0,0);}
.m3b_c00372{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);}
.m6d_c00372{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);}
.m3e_c00372{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);}
.m5b_c00372{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);}
.m29_c00372{transform:matrix(0.187667,-0.001689,0.002250,0.249990,0,0);-ms-transform:matrix(0.187667,-0.001689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187667,-0.001689,0.002250,0.249990,0,0);}
.mae_c00372{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);}
.m4f_c00372{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);}
.mc6_c00372{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);}
.m5a_c00372{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);}
.mb5_c00372{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);}
.mac_c00372{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);}
.m5d_c00372{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_c00372{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m2d_c00372{transform:matrix(0.190772,-0.001717,0.002250,0.249990,0,0);-ms-transform:matrix(0.190772,-0.001717,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190772,-0.001717,0.002250,0.249990,0,0);}
.mf7_c00372{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);}
.mb1_c00372{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);}
.m35_c00372{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_c00372{transform:matrix(0.191782,-0.001726,0.002250,0.249990,0,0);-ms-transform:matrix(0.191782,-0.001726,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191782,-0.001726,0.002250,0.249990,0,0);}
.m28_c00372{transform:matrix(0.192232,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192232,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192232,-0.001730,0.002250,0.249990,0,0);}
.mbe_c00372{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);}
.mf8_c00372{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);}
.m5_c00372{transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);-ms-transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193036,-0.002316,0.003000,0.249982,0,0);}
.m38_c00372{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);}
.mfa_c00372{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);}
.m26_c00372{transform:matrix(0.194297,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194297,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194297,-0.001749,0.002250,0.249990,0,0);}
.ma8_c00372{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);}
.m52_c00372{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);}
.me8_c00372{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);}
.m34_c00372{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);}
.mc2_c00372{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);}
.mc0_c00372{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);}
.m69_c00372{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);}
.md9_c00372{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);}
.m42_c00372{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);}
.maa_c00372{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);}
.mfb_c00372{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);}
.me2_c00372{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);}
.m87_c00372{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);}
.md7_c00372{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);}
.mb7_c00372{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);}
.mba_c00372{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);}
.mf6_c00372{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);}
.m8a_c00372{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);}
.mda_c00372{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);}
.m17_c00372{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);}
.mf2_c00372{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);}
.m40_c00372{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);}
.m92_c00372{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{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);}
.mcf_c00372{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);}
.mc8_c00372{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);}
.mee_c00372{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);}
.md8_c00372{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);}
.m62_c00372{transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{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);}
.m30_c00372{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);}
.m5e_c00372{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);}
.mdc_c00372{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);}
.mce_c00372{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.mde_c00372{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);}
.mbb_c00372{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);}
.m70_c00372{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);}
.meb_c00372{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);}
.mf5_c00372{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);}
.mbd_c00372{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);}
.mb9_c00372{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);}
.md2_c00372{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);}
.m32_c00372{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);}
.mc3_c00372{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);}
.m49_c00372{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);}
.m56_c00372{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);}
.m63_c00372{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);}
.me6_c00372{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);}
.m46_c00372{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);}
.md4_c00372{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);}
.me7_c00372{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);}
.m7c_c00372{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);}
.mdb_c00372{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.me4_c00372{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{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);}
.m81_c00372{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);}
.m6a_c00372{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me3_c00372{transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);}
.me9_c00372{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.246012,-0.002952,0.003000,0.249982,0,0);-ms-transform:matrix(0.246012,-0.002952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246012,-0.002952,0.003000,0.249982,0,0);}
.m2b_c00372{transform:matrix(0.248970,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.248970,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248970,-0.002241,0.002250,0.249990,0,0);}
.m2_c00372{transform:matrix(0.250312,-0.003004,0.003000,0.249982,0,0);-ms-transform:matrix(0.250312,-0.003004,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250312,-0.003004,0.003000,0.249982,0,0);}
.m31_c00372{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.mdf_c00372{transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);}
.m86_c00372{transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260015,0.000000,0.000000,0.250000,0,0);}
.mcd_c00372{transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);}
.ma7_c00372{transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.276615,-0.003319,0.003000,0.249982,0,0);-ms-transform:matrix(0.276615,-0.003319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276615,-0.003319,0.003000,0.249982,0,0);}
.me5_c00372{transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283660,0.000000,0.000000,0.250000,0,0);}
.m48_c00372{transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286385,0.000000,0.000000,0.250000,0,0);}
.m98_c00372{transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290825,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291395,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.297834,-0.003574,0.003000,0.249982,0,0);-ms-transform:matrix(0.297834,-0.003574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.297834,-0.003574,0.003000,0.249982,0,0);}
.m33_c00372{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);}
.m12_c00372{transform:matrix(0.312745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312745,0.000000,0.000000,0.250000,0,0);}
.m5f_c00372{transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314025,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.317672,-0.003812,0.003000,0.249982,0,0);-ms-transform:matrix(0.317672,-0.003812,0.003000,0.249982,0,0);-webkit-transform:matrix(0.317672,-0.003812,0.003000,0.249982,0,0);}
.m16_c00372{transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327245,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);}
.me1_c00372{transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342330,0.000000,0.000000,0.250000,0,0);}
.m100_c00372{transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347995,0.000000,0.000000,0.250000,0,0);}
.mf3_c00372{transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);}
.m4b_c00372{transform:matrix(0.355990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355990,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.364684,-0.004376,0.003000,0.249982,0,0);-ms-transform:matrix(0.364684,-0.004376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.364684,-0.004376,0.003000,0.249982,0,0);}
.mc9_c00372{transform:matrix(0.365545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365545,0.000000,0.000000,0.250000,0,0);}
.md3_c00372{transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);}
.mfd_c00372{transform:matrix(0.368690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368690,0.000000,0.000000,0.250000,0,0);}
.mff_c00372{transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369925,0.000000,0.000000,0.250000,0,0);}
.mf0_c00372{transform:matrix(0.385235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385235,0.000000,0.000000,0.250000,0,0);}
.m45_c00372{transform:matrix(0.396340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396340,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.397740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397740,0.000000,0.000000,0.250000,0,0);}
.m97_c00372{transform:matrix(0.398515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398515,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.416105,-0.004993,0.003000,0.249982,0,0);-ms-transform:matrix(0.416105,-0.004993,0.003000,0.249982,0,0);-webkit-transform:matrix(0.416105,-0.004993,0.003000,0.249982,0,0);}
.m43_c00372{transform:matrix(0.433510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00372{transform:matrix(0.436320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436320,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.474851,-0.005698,0.003000,0.249982,0,0);-ms-transform:matrix(0.474851,-0.005698,0.003000,0.249982,0,0);-webkit-transform:matrix(0.474851,-0.005698,0.003000,0.249982,0,0);}
.m41_c00372{transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480480,0.000000,0.000000,0.250000,0,0);}
.m4d_c00372{transform:matrix(0.545750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545750,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.579213,-0.006951,0.003000,0.249982,0,0);-ms-transform:matrix(0.579213,-0.006951,0.003000,0.249982,0,0);-webkit-transform:matrix(0.579213,-0.006951,0.003000,0.249982,0,0);}
.mbc_c00372{transform:matrix(0.581720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581720,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.613615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613615,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.629770,-0.007557,0.003000,0.249982,0,0);-ms-transform:matrix(0.629770,-0.007557,0.003000,0.249982,0,0);-webkit-transform:matrix(0.629770,-0.007557,0.003000,0.249982,0,0);}
.m4e_c00372{transform:matrix(0.636680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636680,0.000000,0.000000,0.250000,0,0);}
.m4c_c00372{transform:matrix(0.681355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681355,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.769625,-0.009235,0.003000,0.249982,0,0);-ms-transform:matrix(0.769625,-0.009235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.769625,-0.009235,0.003000,0.249982,0,0);}
.mb_c00372{transform:matrix(0.796823,-0.009562,0.003000,0.249982,0,0);-ms-transform:matrix(0.796823,-0.009562,0.003000,0.249982,0,0);-webkit-transform:matrix(0.796823,-0.009562,0.003000,0.249982,0,0);}
.m6_c00372{transform:matrix(1.050434,-0.012605,0.003000,0.249982,0,0);-ms-transform:matrix(1.050434,-0.012605,0.003000,0.249982,0,0);-webkit-transform:matrix(1.050434,-0.012605,0.003000,0.249982,0,0);}
.m4_c00372{transform:matrix(1.092566,-0.013111,0.003000,0.249982,0,0);-ms-transform:matrix(1.092566,-0.013111,0.003000,0.249982,0,0);-webkit-transform:matrix(1.092566,-0.013111,0.003000,0.249982,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;}
.fs7_c00372{font-size:22.050000px;}
.fs10_c00372{font-size:45.150000px;}
.fs11_c00372{font-size:51.450000px;}
.fs12_c00372{font-size:52.500000px;}
.fs0_c00372{font-size:53.553855px;}
.fsf_c00372{font-size:54.600000px;}
.fs13_c00372{font-size:60.900000px;}
.fs9_c00372{font-size:67.200000px;}
.fsa_c00372{font-size:68.250000px;}
.fsb_c00372{font-size:69.300000px;}
.fs3_c00372{font-size:70.350000px;}
.fs6_c00372{font-size:70.352849px;}
.fs8_c00372{font-size:71.400000px;}
.fsc_c00372{font-size:72.450000px;}
.fse_c00372{font-size:73.500000px;}
.fs5_c00372{font-size:74.553019px;}
.fs4_c00372{font-size:75.600000px;}
.fsd_c00372{font-size:78.750000px;}
.fs2_c00372{font-size:88.200000px;}
.fs1_c00372{font-size:91.356577px;}
.y0_c00372{bottom:0.000000px;}
.y3b_c00372{bottom:133.662000px;}
.y3a_c00372{bottom:158.355000px;}
.y39_c00372{bottom:177.159000px;}
.y38_c00372{bottom:194.845500px;}
.y37_c00372{bottom:212.863500px;}
.y36_c00372{bottom:276.172500px;}
.y35_c00372{bottom:294.715500px;}
.y34_c00372{bottom:317.707500px;}
.y33_c00372{bottom:344.494500px;}
.y32_c00372{bottom:374.839500px;}
.y31_c00372{bottom:397.900500px;}
.y30_c00372{bottom:425.362500px;}
.y2f_c00372{bottom:447.327000px;}
.y2e_c00372{bottom:475.092000px;}
.y2d_c00372{bottom:497.848500px;}
.y2c_c00372{bottom:520.768500px;}
.y2b_c00372{bottom:543.471000px;}
.y2a_c00372{bottom:570.072000px;}
.y29_c00372{bottom:606.783000px;}
.y28_c00372{bottom:644.572500px;}
.y27_c00372{bottom:668.595000px;}
.y26_c00372{bottom:695.377500px;}
.y25_c00372{bottom:715.770000px;}
.y1d_c00372{bottom:724.043022px;}
.y1e_c00372{bottom:724.043038px;}
.y1f_c00372{bottom:724.043385px;}
.y23_c00372{bottom:724.043500px;}
.y20_c00372{bottom:724.043658px;}
.y24_c00372{bottom:724.043697px;}
.y22_c00372{bottom:724.043797px;}
.y21_c00372{bottom:724.043871px;}
.y14_c00372{bottom:744.931500px;}
.y15_c00372{bottom:745.886085px;}
.y16_c00372{bottom:746.131947px;}
.y17_c00372{bottom:746.600572px;}
.y18_c00372{bottom:746.887690px;}
.y19_c00372{bottom:747.592161px;}
.y1a_c00372{bottom:747.959402px;}
.y1b_c00372{bottom:748.542615px;}
.y1c_c00372{bottom:748.797778px;}
.y13_c00372{bottom:773.733000px;}
.y12_c00372{bottom:811.590000px;}
.y11_c00372{bottom:864.919500px;}
.ya_c00372{bottom:902.343168px;}
.yb_c00372{bottom:902.890032px;}
.yc_c00372{bottom:904.734810px;}
.yd_c00372{bottom:905.963076px;}
.yf_c00372{bottom:906.733644px;}
.ye_c00372{bottom:907.080432px;}
.y10_c00372{bottom:908.109612px;}
.y1_c00372{bottom:925.561500px;}
.y2_c00372{bottom:926.322108px;}
.y3_c00372{bottom:926.591172px;}
.y4_c00372{bottom:927.223476px;}
.y5_c00372{bottom:928.668714px;}
.y6_c00372{bottom:930.005340px;}
.y7_c00372{bottom:930.823008px;}
.y8_c00372{bottom:932.144640px;}
.y9_c00372{bottom:932.423928px;}
.h9_c00372{height:22.050000px;}
.h12_c00372{height:45.150000px;}
.h13_c00372{height:51.450000px;}
.h14_c00372{height:52.500000px;}
.h2_c00372{height:53.553855px;}
.h11_c00372{height:54.600000px;}
.h15_c00372{height:60.900000px;}
.hb_c00372{height:67.200000px;}
.hc_c00372{height:68.250000px;}
.hd_c00372{height:69.300000px;}
.h5_c00372{height:70.350000px;}
.h8_c00372{height:70.352849px;}
.ha_c00372{height:71.400000px;}
.he_c00372{height:72.450000px;}
.h10_c00372{height:73.500000px;}
.h7_c00372{height:74.553019px;}
.h6_c00372{height:75.600000px;}
.hf_c00372{height:78.750000px;}
.h4_c00372{height:88.200000px;}
.h3_c00372{height:91.356577px;}
.h1_c00372{height:1005.000000px;}
.h0_c00372{height:1005.150000px;}
.w0_c00372{width:715.200000px;}
.w1_c00372{width:715.500000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:33.906000px;}
.xa_c00372{left:73.144668px;}
.x3d_c00372{left:95.850000px;}
.x2_c00372{left:97.290000px;}
.x9c_c00372{left:98.550000px;}
.x8b_c00372{left:99.900000px;}
.x1d_c00372{left:116.764500px;}
.x83_c00372{left:118.260000px;}
.x3_c00372{left:119.712000px;}
.x7e_c00372{left:121.770000px;}
.x56_c00372{left:124.470000px;}
.x65_c00372{left:127.170000px;}
.x9d_c00372{left:129.870000px;}
.x8f_c00372{left:130.950000px;}
.x67_c00372{left:133.110000px;}
.x2e_c00372{left:134.190000px;}
.x16_c00372{left:135.270000px;}
.x4c_c00372{left:138.240000px;}
.x33_c00372{left:142.830000px;}
.x26_c00372{left:144.181202px;}
.x77_c00372{left:148.500000px;}
.x66_c00372{left:150.390000px;}
.x84_c00372{left:153.900000px;}
.x7f_c00372{left:156.600000px;}
.x46_c00372{left:157.680000px;}
.x81_c00372{left:159.030000px;}
.x90_c00372{left:164.430000px;}
.x17_c00372{left:169.290000px;}
.x5e_c00372{left:170.370000px;}
.x4_c00372{left:172.404000px;}
.x68_c00372{left:174.960000px;}
.x9e_c00372{left:176.310000px;}
.x6f_c00372{left:177.930000px;}
.x34_c00372{left:179.820000px;}
.x4d_c00372{left:181.170000px;}
.x2f_c00372{left:184.140000px;}
.x27_c00372{left:185.223023px;}
.x18_c00372{left:188.730000px;}
.x57_c00372{left:193.590000px;}
.x95_c00372{left:196.830000px;}
.x8c_c00372{left:198.180000px;}
.xb_c00372{left:204.873000px;}
.x3e_c00372{left:207.360000px;}
.x70_c00372{left:211.950000px;}
.x9f_c00372{left:215.730000px;}
.xf_c00372{left:221.130000px;}
.x1e_c00372{left:222.829500px;}
.x5f_c00372{left:224.100000px;}
.x47_c00372{left:225.990000px;}
.x3f_c00372{left:227.610000px;}
.x44_c00372{left:230.310000px;}
.x19_c00372{left:231.390000px;}
.x78_c00372{left:233.010000px;}
.x14_c00372{left:234.360000px;}
.x96_c00372{left:238.410000px;}
.x91_c00372{left:240.030000px;}
.x71_c00372{left:241.920000px;}
.xa0_c00372{left:247.860000px;}
.x1f_c00372{left:250.147500px;}
.x69_c00372{left:252.450000px;}
.x28_c00372{left:255.425706px;}
.x8d_c00372{left:258.930000px;}
.x35_c00372{left:261.360000px;}
.x30_c00372{left:262.710000px;}
.x40_c00372{left:264.330000px;}
.x48_c00372{left:266.490000px;}
.x85_c00372{left:268.650000px;}
.x80_c00372{left:271.080000px;}
.x31_c00372{left:274.050000px;}
.x97_c00372{left:277.290000px;}
.x72_c00372{left:279.180000px;}
.x4e_c00372{left:283.500000px;}
.x41_c00372{left:287.280000px;}
.x8e_c00372{left:290.520000px;}
.x5_c00372{left:292.840500px;}
.x36_c00372{left:294.570000px;}
.x1a_c00372{left:297.810000px;}
.x58_c00372{left:300.510000px;}
.x20_c00372{left:302.217000px;}
.x10_c00372{left:310.500000px;}
.x29_c00372{left:314.287472px;}
.x98_c00372{left:315.360000px;}
.x59_c00372{left:319.950000px;}
.x79_c00372{left:321.300000px;}
.x6a_c00372{left:323.460000px;}
.x42_c00372{left:325.620000px;}
.x4f_c00372{left:331.830000px;}
.x21_c00372{left:334.119000px;}
.x60_c00372{left:338.310000px;}
.x37_c00372{left:340.740000px;}
.x32_c00372{left:342.090000px;}
.x2a_c00372{left:343.448334px;}
.x6b_c00372{left:345.060000px;}
.xd_c00372{left:347.689080px;}
.x86_c00372{left:349.920000px;}
.x1b_c00372{left:351.810000px;}
.x73_c00372{left:354.780000px;}
.x50_c00372{left:356.400000px;}
.x45_c00372{left:357.480000px;}
.x5a_c00372{left:358.560000px;}
.x49_c00372{left:361.530000px;}
.x7a_c00372{left:364.770000px;}
.xa1_c00372{left:368.280000px;}
.xc_c00372{left:372.462486px;}
.x11_c00372{left:376.110000px;}
.x82_c00372{left:377.190000px;}
.x43_c00372{left:384.210000px;}
.x87_c00372{left:386.100000px;}
.x15_c00372{left:391.230000px;}
.x38_c00372{left:392.310000px;}
.x74_c00372{left:399.060000px;}
.x2b_c00372{left:400.419951px;}
.x6_c00372{left:404.226000px;}
.x4a_c00372{left:407.160000px;}
.x22_c00372{left:412.393500px;}
.x51_c00372{left:415.800000px;}
.x39_c00372{left:419.310000px;}
.x75_c00372{left:420.660000px;}
.xa2_c00372{left:423.630000px;}
.x7b_c00372{left:426.870000px;}
.x99_c00372{left:427.950000px;}
.x61_c00372{left:430.650000px;}
.x1c_c00372{left:434.700000px;}
.x2c_c00372{left:440.111664px;}
.x4b_c00372{left:442.800000px;}
.xe_c00372{left:445.975722px;}
.x88_c00372{left:448.470000px;}
.x6c_c00372{left:451.170000px;}
.x23_c00372{left:453.198000px;}
.x52_c00372{left:461.160000px;}
.x89_c00372{left:465.480000px;}
.x7c_c00372{left:468.180000px;}
.x92_c00372{left:469.530000px;}
.x7_c00372{left:472.365000px;}
.x3a_c00372{left:475.470000px;}
.x62_c00372{left:476.820000px;}
.x53_c00372{left:480.870000px;}
.x5b_c00372{left:483.840000px;}
.x76_c00372{left:487.890000px;}
.x8a_c00372{left:497.340000px;}
.x6e_c00372{left:501.930000px;}
.x6d_c00372{left:503.820000px;}
.x9a_c00372{left:507.060000px;}
.x93_c00372{left:509.220000px;}
.x3b_c00372{left:510.300000px;}
.x5c_c00372{left:511.380000px;}
.x54_c00372{left:514.620000px;}
.x63_c00372{left:515.970000px;}
.x24_c00372{left:517.999500px;}
.x7d_c00372{left:520.560000px;}
.x9b_c00372{left:527.850000px;}
.x3c_c00372{left:534.330000px;}
.x94_c00372{left:538.650000px;}
.x55_c00372{left:540.000000px;}
.x12_c00372{left:542.160000px;}
.x25_c00372{left:546.351000px;}
.x64_c00372{left:548.640000px;}
.x5d_c00372{left:558.630000px;}
.x13_c00372{left:563.220000px;}
.x2d_c00372{left:564.840000px;}
.x8_c00372{left:582.501000px;}
.x9_c00372{left:605.775000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.fs7_c00372{font-size:19.600000pt;}
.fs10_c00372{font-size:40.133333pt;}
.fs11_c00372{font-size:45.733333pt;}
.fs12_c00372{font-size:46.666667pt;}
.fs0_c00372{font-size:47.603427pt;}
.fsf_c00372{font-size:48.533333pt;}
.fs13_c00372{font-size:54.133333pt;}
.fs9_c00372{font-size:59.733333pt;}
.fsa_c00372{font-size:60.666667pt;}
.fsb_c00372{font-size:61.600000pt;}
.fs3_c00372{font-size:62.533333pt;}
.fs6_c00372{font-size:62.535866pt;}
.fs8_c00372{font-size:63.466667pt;}
.fsc_c00372{font-size:64.400000pt;}
.fse_c00372{font-size:65.333333pt;}
.fs5_c00372{font-size:66.269350pt;}
.fs4_c00372{font-size:67.200000pt;}
.fsd_c00372{font-size:70.000000pt;}
.fs2_c00372{font-size:78.400000pt;}
.fs1_c00372{font-size:81.205846pt;}
.y0_c00372{bottom:0.000000pt;}
.y3b_c00372{bottom:118.810667pt;}
.y3a_c00372{bottom:140.760000pt;}
.y39_c00372{bottom:157.474667pt;}
.y38_c00372{bottom:173.196000pt;}
.y37_c00372{bottom:189.212000pt;}
.y36_c00372{bottom:245.486667pt;}
.y35_c00372{bottom:261.969333pt;}
.y34_c00372{bottom:282.406667pt;}
.y33_c00372{bottom:306.217333pt;}
.y32_c00372{bottom:333.190667pt;}
.y31_c00372{bottom:353.689333pt;}
.y30_c00372{bottom:378.100000pt;}
.y2f_c00372{bottom:397.624000pt;}
.y2e_c00372{bottom:422.304000pt;}
.y2d_c00372{bottom:442.532000pt;}
.y2c_c00372{bottom:462.905333pt;}
.y2b_c00372{bottom:483.085333pt;}
.y2a_c00372{bottom:506.730667pt;}
.y29_c00372{bottom:539.362667pt;}
.y28_c00372{bottom:572.953333pt;}
.y27_c00372{bottom:594.306667pt;}
.y26_c00372{bottom:618.113333pt;}
.y25_c00372{bottom:636.240000pt;}
.y1d_c00372{bottom:643.593797pt;}
.y1e_c00372{bottom:643.593812pt;}
.y1f_c00372{bottom:643.594120pt;}
.y23_c00372{bottom:643.594223pt;}
.y20_c00372{bottom:643.594363pt;}
.y24_c00372{bottom:643.594397pt;}
.y22_c00372{bottom:643.594487pt;}
.y21_c00372{bottom:643.594552pt;}
.y14_c00372{bottom:662.161333pt;}
.y15_c00372{bottom:663.009853pt;}
.y16_c00372{bottom:663.228397pt;}
.y17_c00372{bottom:663.644953pt;}
.y18_c00372{bottom:663.900169pt;}
.y19_c00372{bottom:664.526365pt;}
.y1a_c00372{bottom:664.852801pt;}
.y1b_c00372{bottom:665.371213pt;}
.y1c_c00372{bottom:665.598025pt;}
.y13_c00372{bottom:687.762667pt;}
.y12_c00372{bottom:721.413333pt;}
.y11_c00372{bottom:768.817333pt;}
.ya_c00372{bottom:802.082816pt;}
.yb_c00372{bottom:802.568917pt;}
.yc_c00372{bottom:804.208720pt;}
.yd_c00372{bottom:805.300512pt;}
.yf_c00372{bottom:805.985461pt;}
.ye_c00372{bottom:806.293717pt;}
.y10_c00372{bottom:807.208544pt;}
.y1_c00372{bottom:822.721333pt;}
.y2_c00372{bottom:823.397429pt;}
.y3_c00372{bottom:823.636597pt;}
.y4_c00372{bottom:824.198645pt;}
.y5_c00372{bottom:825.483301pt;}
.y6_c00372{bottom:826.671413pt;}
.y7_c00372{bottom:827.398229pt;}
.y8_c00372{bottom:828.573013pt;}
.y9_c00372{bottom:828.821269pt;}
.h9_c00372{height:19.600000pt;}
.h12_c00372{height:40.133333pt;}
.h13_c00372{height:45.733333pt;}
.h14_c00372{height:46.666667pt;}
.h2_c00372{height:47.603427pt;}
.h11_c00372{height:48.533333pt;}
.h15_c00372{height:54.133333pt;}
.hb_c00372{height:59.733333pt;}
.hc_c00372{height:60.666667pt;}
.hd_c00372{height:61.600000pt;}
.h5_c00372{height:62.533333pt;}
.h8_c00372{height:62.535866pt;}
.ha_c00372{height:63.466667pt;}
.he_c00372{height:64.400000pt;}
.h10_c00372{height:65.333333pt;}
.h7_c00372{height:66.269350pt;}
.h6_c00372{height:67.200000pt;}
.hf_c00372{height:70.000000pt;}
.h4_c00372{height:78.400000pt;}
.h3_c00372{height:81.205846pt;}
.h1_c00372{height:893.333333pt;}
.h0_c00372{height:893.466667pt;}
.w0_c00372{width:635.733333pt;}
.w1_c00372{width:636.000000pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:30.138667pt;}
.xa_c00372{left:65.017483pt;}
.x3d_c00372{left:85.200000pt;}
.x2_c00372{left:86.480000pt;}
.x9c_c00372{left:87.600000pt;}
.x8b_c00372{left:88.800000pt;}
.x1d_c00372{left:103.790667pt;}
.x83_c00372{left:105.120000pt;}
.x3_c00372{left:106.410667pt;}
.x7e_c00372{left:108.240000pt;}
.x56_c00372{left:110.640000pt;}
.x65_c00372{left:113.040000pt;}
.x9d_c00372{left:115.440000pt;}
.x8f_c00372{left:116.400000pt;}
.x67_c00372{left:118.320000pt;}
.x2e_c00372{left:119.280000pt;}
.x16_c00372{left:120.240000pt;}
.x4c_c00372{left:122.880000pt;}
.x33_c00372{left:126.960000pt;}
.x26_c00372{left:128.161068pt;}
.x77_c00372{left:132.000000pt;}
.x66_c00372{left:133.680000pt;}
.x84_c00372{left:136.800000pt;}
.x7f_c00372{left:139.200000pt;}
.x46_c00372{left:140.160000pt;}
.x81_c00372{left:141.360000pt;}
.x90_c00372{left:146.160000pt;}
.x17_c00372{left:150.480000pt;}
.x5e_c00372{left:151.440000pt;}
.x4_c00372{left:153.248000pt;}
.x68_c00372{left:155.520000pt;}
.x9e_c00372{left:156.720000pt;}
.x6f_c00372{left:158.160000pt;}
.x34_c00372{left:159.840000pt;}
.x4d_c00372{left:161.040000pt;}
.x2f_c00372{left:163.680000pt;}
.x27_c00372{left:164.642687pt;}
.x18_c00372{left:167.760000pt;}
.x57_c00372{left:172.080000pt;}
.x95_c00372{left:174.960000pt;}
.x8c_c00372{left:176.160000pt;}
.xb_c00372{left:182.109333pt;}
.x3e_c00372{left:184.320000pt;}
.x70_c00372{left:188.400000pt;}
.x9f_c00372{left:191.760000pt;}
.xf_c00372{left:196.560000pt;}
.x1e_c00372{left:198.070667pt;}
.x5f_c00372{left:199.200000pt;}
.x47_c00372{left:200.880000pt;}
.x3f_c00372{left:202.320000pt;}
.x44_c00372{left:204.720000pt;}
.x19_c00372{left:205.680000pt;}
.x78_c00372{left:207.120000pt;}
.x14_c00372{left:208.320000pt;}
.x96_c00372{left:211.920000pt;}
.x91_c00372{left:213.360000pt;}
.x71_c00372{left:215.040000pt;}
.xa0_c00372{left:220.320000pt;}
.x1f_c00372{left:222.353333pt;}
.x69_c00372{left:224.400000pt;}
.x28_c00372{left:227.045072pt;}
.x8d_c00372{left:230.160000pt;}
.x35_c00372{left:232.320000pt;}
.x30_c00372{left:233.520000pt;}
.x40_c00372{left:234.960000pt;}
.x48_c00372{left:236.880000pt;}
.x85_c00372{left:238.800000pt;}
.x80_c00372{left:240.960000pt;}
.x31_c00372{left:243.600000pt;}
.x97_c00372{left:246.480000pt;}
.x72_c00372{left:248.160000pt;}
.x4e_c00372{left:252.000000pt;}
.x41_c00372{left:255.360000pt;}
.x8e_c00372{left:258.240000pt;}
.x5_c00372{left:260.302667pt;}
.x36_c00372{left:261.840000pt;}
.x1a_c00372{left:264.720000pt;}
.x58_c00372{left:267.120000pt;}
.x20_c00372{left:268.637333pt;}
.x10_c00372{left:276.000000pt;}
.x29_c00372{left:279.366641pt;}
.x98_c00372{left:280.320000pt;}
.x59_c00372{left:284.400000pt;}
.x79_c00372{left:285.600000pt;}
.x6a_c00372{left:287.520000pt;}
.x42_c00372{left:289.440000pt;}
.x4f_c00372{left:294.960000pt;}
.x21_c00372{left:296.994667pt;}
.x60_c00372{left:300.720000pt;}
.x37_c00372{left:302.880000pt;}
.x32_c00372{left:304.080000pt;}
.x2a_c00372{left:305.287408pt;}
.x6b_c00372{left:306.720000pt;}
.xd_c00372{left:309.056960pt;}
.x86_c00372{left:311.040000pt;}
.x1b_c00372{left:312.720000pt;}
.x73_c00372{left:315.360000pt;}
.x50_c00372{left:316.800000pt;}
.x45_c00372{left:317.760000pt;}
.x5a_c00372{left:318.720000pt;}
.x49_c00372{left:321.360000pt;}
.x7a_c00372{left:324.240000pt;}
.xa1_c00372{left:327.360000pt;}
.xc_c00372{left:331.077765pt;}
.x11_c00372{left:334.320000pt;}
.x82_c00372{left:335.280000pt;}
.x43_c00372{left:341.520000pt;}
.x87_c00372{left:343.200000pt;}
.x15_c00372{left:347.760000pt;}
.x38_c00372{left:348.720000pt;}
.x74_c00372{left:354.720000pt;}
.x2b_c00372{left:355.928845pt;}
.x6_c00372{left:359.312000pt;}
.x4a_c00372{left:361.920000pt;}
.x22_c00372{left:366.572000pt;}
.x51_c00372{left:369.600000pt;}
.x39_c00372{left:372.720000pt;}
.x75_c00372{left:373.920000pt;}
.xa2_c00372{left:376.560000pt;}
.x7b_c00372{left:379.440000pt;}
.x99_c00372{left:380.400000pt;}
.x61_c00372{left:382.800000pt;}
.x1c_c00372{left:386.400000pt;}
.x2c_c00372{left:391.210368pt;}
.x4b_c00372{left:393.600000pt;}
.xe_c00372{left:396.422864pt;}
.x88_c00372{left:398.640000pt;}
.x6c_c00372{left:401.040000pt;}
.x23_c00372{left:402.842667pt;}
.x52_c00372{left:409.920000pt;}
.x89_c00372{left:413.760000pt;}
.x7c_c00372{left:416.160000pt;}
.x92_c00372{left:417.360000pt;}
.x7_c00372{left:419.880000pt;}
.x3a_c00372{left:422.640000pt;}
.x62_c00372{left:423.840000pt;}
.x53_c00372{left:427.440000pt;}
.x5b_c00372{left:430.080000pt;}
.x76_c00372{left:433.680000pt;}
.x8a_c00372{left:442.080000pt;}
.x6e_c00372{left:446.160000pt;}
.x6d_c00372{left:447.840000pt;}
.x9a_c00372{left:450.720000pt;}
.x93_c00372{left:452.640000pt;}
.x3b_c00372{left:453.600000pt;}
.x5c_c00372{left:454.560000pt;}
.x54_c00372{left:457.440000pt;}
.x63_c00372{left:458.640000pt;}
.x24_c00372{left:460.444000pt;}
.x7d_c00372{left:462.720000pt;}
.x9b_c00372{left:469.200000pt;}
.x3c_c00372{left:474.960000pt;}
.x94_c00372{left:478.800000pt;}
.x55_c00372{left:480.000000pt;}
.x12_c00372{left:481.920000pt;}
.x25_c00372{left:485.645333pt;}
.x64_c00372{left:487.680000pt;}
.x5d_c00372{left:496.560000pt;}
.x13_c00372{left:500.640000pt;}
.x2d_c00372{left:502.080000pt;}
.x8_c00372{left:517.778667pt;}
.x9_c00372{left:538.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m2d_c00373{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);}
.m36_c00373{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m41_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);}
.m92_c00373{transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085215,0.000000,0.000000,0.250000,0,0);}
.m8c_c00373{transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{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);}
.mdf_c00373{transform:matrix(0.144541,0.001012,-0.001750,0.249994,0,0);-ms-transform:matrix(0.144541,0.001012,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.144541,0.001012,-0.001750,0.249994,0,0);}
.m8_c00373{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);}
.m6a_c00373{transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146140,0.000000,0.000000,0.250000,0,0);}
.mda_c00373{transform:matrix(0.147101,0.001030,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147101,0.001030,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147101,0.001030,-0.001750,0.249994,0,0);}
.md_c00373{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.md8_c00373{transform:matrix(0.147681,0.001034,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147681,0.001034,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147681,0.001034,-0.001750,0.249994,0,0);}
.me3_c00373{transform:matrix(0.147771,0.001034,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147771,0.001034,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147771,0.001034,-0.001750,0.249994,0,0);}
.m67_c00373{transform:matrix(0.148890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148890,0.000000,0.000000,0.250000,0,0);}
.mbb_c00373{transform:matrix(0.150696,0.001055,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150696,0.001055,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150696,0.001055,-0.001750,0.249994,0,0);}
.md4_c00373{transform:matrix(0.151671,0.001062,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151671,0.001062,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151671,0.001062,-0.001750,0.249994,0,0);}
.mc8_c00373{transform:matrix(0.152141,0.001065,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152141,0.001065,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152141,0.001065,-0.001750,0.249994,0,0);}
.m7_c00373{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);}
.m85_c00373{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);}
.m5c_c00373{transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00373{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);}
.mf1_c00373{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{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);}
.ma7_c00373{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);}
.m1b_c00373{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);}
.m78_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);}
.m44_c00373{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);}
.m54_c00373{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);}
.m1a_c00373{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);}
.m6f_c00373{transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{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);}
.mbf_c00373{transform:matrix(0.159051,0.001113,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159051,0.001113,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159051,0.001113,-0.001750,0.249994,0,0);}
.m79_c00373{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);}
.me6_c00373{transform:matrix(0.159576,0.001117,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159576,0.001117,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159576,0.001117,-0.001750,0.249994,0,0);}
.m4c_c00373{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);}
.m50_c00373{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);}
.mad_c00373{transform:matrix(0.161926,0.001133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161926,0.001133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161926,0.001133,-0.001750,0.249994,0,0);}
.m11_c00373{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);}
.mb_c00373{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);}
.m71_c00373{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{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);}
.m73_c00373{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);}
.mf_c00373{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);}
.m88_c00373{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);}
.mc9_c00373{transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166336,0.001164,-0.001750,0.249994,0,0);}
.m5d_c00373{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);}
.m4a_c00373{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);}
.m58_c00373{transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167855,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{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);}
.ma5_c00373{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);}
.m8e_c00373{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);}
.m8b_c00373{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{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);}
.ma2_c00373{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);}
.m48_c00373{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);}
.m72_c00373{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);}
.mcc_c00373{transform:matrix(0.169921,0.001189,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169921,0.001189,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169921,0.001189,-0.001750,0.249994,0,0);}
.m51_c00373{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);}
.mcd_c00373{transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170551,0.001194,-0.001750,0.249994,0,0);}
.m86_c00373{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);}
.mbc_c00373{transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);}
.m64_c00373{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);}
.meb_c00373{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);}
.m45_c00373{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);}
.m29_c00373{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);}
.m95_c00373{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);}
.mca_c00373{transform:matrix(0.173441,0.001214,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173441,0.001214,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173441,0.001214,-0.001750,0.249994,0,0);}
.m59_c00373{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);}
.mb2_c00373{transform:matrix(0.173656,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173656,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173656,0.001216,-0.001750,0.249994,0,0);}
.m3d_c00373{transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);}
.m99_c00373{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);}
.m6d_c00373{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);}
.mc5_c00373{transform:matrix(0.174096,0.001219,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174096,0.001219,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174096,0.001219,-0.001750,0.249994,0,0);}
.mdd_c00373{transform:matrix(0.174461,0.001221,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174461,0.001221,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174461,0.001221,-0.001750,0.249994,0,0);}
.m89_c00373{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_c00373{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);}
.m4d_c00373{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);}
.me5_c00373{transform:matrix(0.175501,0.001229,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175501,0.001229,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175501,0.001229,-0.001750,0.249994,0,0);}
.m7e_c00373{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);}
.m20_c00373{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);}
.m84_c00373{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);}
.m3e_c00373{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);}
.m43_c00373{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);}
.m3a_c00373{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);}
.mdb_c00373{transform:matrix(0.178221,0.001248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178221,0.001248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178221,0.001248,-0.001750,0.249994,0,0);}
.m53_c00373{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);}
.ma4_c00373{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);}
.m6e_c00373{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);}
.m52_c00373{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);}
.m9d_c00373{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_c00373{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);}
.m9_c00373{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);}
.m80_c00373{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);}
.m96_c00373{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);}
.md2_c00373{transform:matrix(0.180126,0.001261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180126,0.001261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180126,0.001261,-0.001750,0.249994,0,0);}
.m4b_c00373{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);}
.m30_c00373{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);}
.m83_c00373{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);}
.maa_c00373{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.mc7_c00373{transform:matrix(0.180541,0.001264,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180541,0.001264,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180541,0.001264,-0.001750,0.249994,0,0);}
.mab_c00373{transform:matrix(0.180576,0.001264,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180576,0.001264,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180576,0.001264,-0.001750,0.249994,0,0);}
.m65_c00373{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);}
.m1f_c00373{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);}
.m13_c00373{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);}
.m77_c00373{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);}
.m9f_c00373{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_c00373{transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);}
.ma3_c00373{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);}
.m3b_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);}
.m9a_c00373{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);}
.ma_c00373{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_c00373{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_c00373{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);}
.mcf_c00373{transform:matrix(0.184125,0.001289,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184125,0.001289,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184125,0.001289,-0.001750,0.249994,0,0);}
.m12_c00373{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);}
.m5_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);}
.m7a_c00373{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);}
.m66_c00373{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);}
.mdc_c00373{transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);}
.me_c00373{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);}
.m2a_c00373{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);}
.m39_c00373{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);}
.m8a_c00373{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);}
.m10_c00373{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_c00373{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);}
.m93_c00373{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);}
.mf0_c00373{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);}
.m94_c00373{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);}
.m7b_c00373{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);}
.mc4_c00373{transform:matrix(0.188280,0.001318,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188280,0.001318,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188280,0.001318,-0.001750,0.249994,0,0);}
.m1d_c00373{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);}
.mba_c00373{transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188800,0.001322,-0.001750,0.249994,0,0);}
.mb1_c00373{transform:matrix(0.188880,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188880,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188880,0.001322,-0.001750,0.249994,0,0);}
.m76_c00373{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);}
.m68_c00373{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);}
.m63_c00373{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);}
.mb6_c00373{transform:matrix(0.189320,0.001325,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189320,0.001325,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189320,0.001325,-0.001750,0.249994,0,0);}
.md1_c00373{transform:matrix(0.189495,0.001326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189495,0.001326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189495,0.001326,-0.001750,0.249994,0,0);}
.me8_c00373{transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);}
.m4f_c00373{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);}
.m27_c00373{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);}
.m22_c00373{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);}
.m31_c00373{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);}
.m5a_c00373{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);}
.mde_c00373{transform:matrix(0.192505,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192505,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192505,0.001348,-0.001750,0.249994,0,0);}
.ma1_c00373{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);}
.mce_c00373{transform:matrix(0.192700,0.001349,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192700,0.001349,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192700,0.001349,-0.001750,0.249994,0,0);}
.mac_c00373{transform:matrix(0.192780,0.001349,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192780,0.001349,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192780,0.001349,-0.001750,0.249994,0,0);}
.m24_c00373{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);}
.mb8_c00373{transform:matrix(0.193140,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193140,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193140,0.001352,-0.001750,0.249994,0,0);}
.mfc_c00373{transform:matrix(0.193281,0.002706,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193281,0.002706,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193281,0.002706,-0.003500,0.249976,0,0);}
.mf3_c00373{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);}
.m69_c00373{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);}
.ma9_c00373{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);}
.mc_c00373{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);}
.m40_c00373{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);}
.mbd_c00373{transform:matrix(0.194630,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194630,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194630,0.001362,-0.001750,0.249994,0,0);}
.m7f_c00373{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);}
.m18_c00373{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);}
.m3f_c00373{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);}
.me2_c00373{transform:matrix(0.196170,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196170,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196170,0.001373,-0.001750,0.249994,0,0);}
.mb5_c00373{transform:matrix(0.196550,0.001376,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196550,0.001376,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196550,0.001376,-0.001750,0.249994,0,0);}
.m28_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);}
.m0_c00373{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);}
.mbe_c00373{transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197530,0.001383,-0.001750,0.249994,0,0);}
.m81_c00373{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);}
.m37_c00373{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);}
.m97_c00373{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);}
.m2b_c00373{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);}
.m7d_c00373{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);}
.mc2_c00373{transform:matrix(0.198360,0.001389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198360,0.001389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198360,0.001389,-0.001750,0.249994,0,0);}
.m91_c00373{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);}
.m34_c00373{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);}
.mff_c00373{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);}
.md6_c00373{transform:matrix(0.199370,0.001396,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199370,0.001396,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199370,0.001396,-0.001750,0.249994,0,0);}
.ma6_c00373{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_c00373{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);}
.mf4_c00373{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);}
.md7_c00373{transform:matrix(0.200920,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200920,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200920,0.001406,-0.001750,0.249994,0,0);}
.me9_c00373{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);}
.m70_c00373{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);}
.m42_c00373{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);}
.m38_c00373{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);}
.m90_c00373{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);}
.mb3_c00373{transform:matrix(0.202590,0.001418,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202590,0.001418,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202590,0.001418,-0.001750,0.249994,0,0);}
.mfd_c00373{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);}
.mf7_c00373{transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203270,0.002846,-0.003500,0.249976,0,0);}
.mcb_c00373{transform:matrix(0.203300,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203300,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203300,0.001423,-0.001750,0.249994,0,0);}
.mb7_c00373{transform:matrix(0.204520,0.001432,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204520,0.001432,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204520,0.001432,-0.001750,0.249994,0,0);}
.m9e_c00373{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_c00373{transform:matrix(0.205165,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205165,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205165,0.001436,-0.001750,0.249994,0,0);}
.m16_c00373{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);}
.m6c_c00373{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);}
.me7_c00373{transform:matrix(0.206180,0.001443,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206180,0.001443,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206180,0.001443,-0.001750,0.249994,0,0);}
.m57_c00373{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);}
.mfb_c00373{transform:matrix(0.206665,0.002893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206665,0.002893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206665,0.002893,-0.003500,0.249976,0,0);}
.m98_c00373{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.mc3_c00373{transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);}
.me4_c00373{transform:matrix(0.209100,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209100,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209100,0.001464,-0.001750,0.249994,0,0);}
.md9_c00373{transform:matrix(0.209110,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209110,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209110,0.001464,-0.001750,0.249994,0,0);}
.md5_c00373{transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);}
.m4_c00373{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);}
.m9b_c00373{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);}
.md3_c00373{transform:matrix(0.210760,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210760,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210760,0.001475,-0.001750,0.249994,0,0);}
.m87_c00373{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);}
.mf8_c00373{transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);}
.m5b_c00373{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);}
.m26_c00373{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);}
.mf2_c00373{transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);}
.med_c00373{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);}
.m82_c00373{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);}
.mef_c00373{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);}
.mb9_c00373{transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);}
.m7c_c00373{transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);}
.m102_c00373{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);}
.mc0_c00373{transform:matrix(0.217385,0.001522,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217385,0.001522,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217385,0.001522,-0.001750,0.249994,0,0);}
.m35_c00373{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);}
.mc1_c00373{transform:matrix(0.219165,0.001534,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219165,0.001534,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219165,0.001534,-0.001750,0.249994,0,0);}
.ma8_c00373{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);}
.m23_c00373{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);}
.mc6_c00373{transform:matrix(0.224934,0.001575,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224934,0.001575,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224934,0.001575,-0.001750,0.249994,0,0);}
.mec_c00373{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);}
.m61_c00373{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{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);}
.me1_c00373{transform:matrix(0.226799,0.001588,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226799,0.001588,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226799,0.001588,-0.001750,0.249994,0,0);}
.m15_c00373{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);}
.m2f_c00373{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);}
.mf9_c00373{transform:matrix(0.233112,0.003264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233112,0.003264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233112,0.003264,-0.003500,0.249976,0,0);}
.mea_c00373{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);}
.m25_c00373{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);}
.m9c_c00373{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);}
.m4e_c00373{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{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);}
.m5f_c00373{transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238985,0.000000,0.000000,0.250000,0,0);}
.mf6_c00373{transform:matrix(0.240751,0.003371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240751,0.003371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240751,0.003371,-0.003500,0.249976,0,0);}
.m1c_c00373{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{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);}
.mfa_c00373{transform:matrix(0.249936,0.003499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249936,0.003499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249936,0.003499,-0.003500,0.249976,0,0);}
.mee_c00373{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);}
.m5e_c00373{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.mf5_c00373{transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);}
.mb4_c00373{transform:matrix(0.254674,0.001783,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254674,0.001783,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254674,0.001783,-0.001750,0.249994,0,0);}
.m60_c00373{transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);}
.m101_c00373{transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);}
.maf_c00373{transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);}
.m32_c00373{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);}
.m56_c00373{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);}
.mfe_c00373{transform:matrix(0.275145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275145,0.000000,0.000000,0.250000,0,0);}
.mae_c00373{transform:matrix(0.275838,0.001931,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275838,0.001931,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275838,0.001931,-0.001750,0.249994,0,0);}
.m100_c00373{transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293235,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302395,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{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);}
.m8d_c00373{transform:matrix(0.330725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330725,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.336980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336980,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me0_c00373{transform:matrix(0.433989,0.003038,-0.001750,0.249994,0,0);-ms-transform:matrix(0.433989,0.003038,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.433989,0.003038,-0.001750,0.249994,0,0);}
.m14_c00373{transform:matrix(0.545560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545560,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.550380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550380,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;}
.fsd_c00373{font-size:50.404939px;}
.fsc_c00373{font-size:63.000000px;}
.fs8_c00373{font-size:67.201646px;}
.fs6_c00373{font-size:68.250000px;}
.fs9_c00373{font-size:68.251672px;}
.fs4_c00373{font-size:69.300000px;}
.fs5_c00373{font-size:70.350000px;}
.fsb_c00373{font-size:70.351724px;}
.fs1_c00373{font-size:71.400000px;}
.fsa_c00373{font-size:71.401749px;}
.fs2_c00373{font-size:72.450000px;}
.fs7_c00373{font-size:74.550000px;}
.fsf_c00373{font-size:86.100000px;}
.fs3_c00373{font-size:90.300000px;}
.fse_c00373{font-size:97.650000px;}
.fs0_c00373{font-size:121.800000px;}
.y0_c00373{bottom:0.000000px;}
.y5d_c00373{bottom:92.487000px;}
.y5c_c00373{bottom:107.511000px;}
.y5b_c00373{bottom:155.452044px;}
.y5a_c00373{bottom:155.806797px;}
.y59_c00373{bottom:156.388959px;}
.y58_c00373{bottom:157.001361px;}
.y57_c00373{bottom:157.345257px;}
.y56_c00373{bottom:157.924017px;}
.y55_c00373{bottom:158.207811px;}
.y54_c00373{bottom:158.491500px;}
.y53_c00373{bottom:209.107500px;}
.y52_c00373{bottom:228.182682px;}
.y51_c00373{bottom:228.977421px;}
.y50_c00373{bottom:229.255083px;}
.y4f_c00373{bottom:229.556811px;}
.y4e_c00373{bottom:230.452245px;}
.y4d_c00373{bottom:230.779257px;}
.y4c_c00373{bottom:231.420834px;}
.y4b_c00373{bottom:231.770549px;}
.y4a_c00373{bottom:232.680981px;}
.y49_c00373{bottom:233.083226px;}
.y48_c00373{bottom:233.543647px;}
.y43_c00373{bottom:255.063159px;}
.y3e_c00373{bottom:255.063427px;}
.y42_c00373{bottom:255.063609px;}
.y44_c00373{bottom:255.063770px;}
.y46_c00373{bottom:255.063810px;}
.y45_c00373{bottom:255.063890px;}
.y40_c00373{bottom:255.063918px;}
.y41_c00373{bottom:255.063929px;}
.y3f_c00373{bottom:255.063948px;}
.y47_c00373{bottom:255.064200px;}
.y3d_c00373{bottom:275.443307px;}
.y3c_c00373{bottom:275.761896px;}
.y3b_c00373{bottom:276.081315px;}
.y3a_c00373{bottom:276.642267px;}
.y39_c00373{bottom:276.991088px;}
.y38_c00373{bottom:277.711749px;}
.y37_c00373{bottom:278.055321px;}
.y36_c00373{bottom:278.576165px;}
.y35_c00373{bottom:279.165615px;}
.y34_c00373{bottom:279.445461px;}
.y33_c00373{bottom:298.319951px;}
.y32_c00373{bottom:298.510008px;}
.y31_c00373{bottom:298.709566px;}
.y30_c00373{bottom:299.104937px;}
.y2f_c00373{bottom:299.344674px;}
.y2e_c00373{bottom:299.737933px;}
.y2d_c00373{bottom:299.997713px;}
.y2c_c00373{bottom:300.440936px;}
.y2b_c00373{bottom:300.773754px;}
.y2a_c00373{bottom:301.064914px;}
.y29_c00373{bottom:301.424190px;}
.y28_c00373{bottom:301.608978px;}
.y27_c00373{bottom:301.858006px;}
.y24_c00373{bottom:322.851689px;}
.y23_c00373{bottom:322.851838px;}
.y25_c00373{bottom:322.852259px;}
.y20_c00373{bottom:322.852437px;}
.y26_c00373{bottom:322.852449px;}
.y21_c00373{bottom:322.852508px;}
.y22_c00373{bottom:322.852518px;}
.y1e_c00373{bottom:322.852926px;}
.y1f_c00373{bottom:322.853026px;}
.y1d_c00373{bottom:322.853666px;}
.y1c_c00373{bottom:343.744746px;}
.y1b_c00373{bottom:344.130411px;}
.y1a_c00373{bottom:344.699291px;}
.y19_c00373{bottom:345.268139px;}
.y18_c00373{bottom:345.447920px;}
.y17_c00373{bottom:345.976952px;}
.y16_c00373{bottom:346.175370px;}
.y15_c00373{bottom:346.462776px;}
.y14_c00373{bottom:346.680000px;}
.y13_c00373{bottom:382.147500px;}
.y12_c00373{bottom:405.061500px;}
.y11_c00373{bottom:427.950000px;}
.y10_c00373{bottom:450.900000px;}
.yf_c00373{bottom:473.850000px;}
.ye_c00373{bottom:497.098500px;}
.yd_c00373{bottom:519.724500px;}
.yc_c00373{bottom:541.858500px;}
.yb_c00373{bottom:587.520000px;}
.ya_c00373{bottom:611.010000px;}
.y9_c00373{bottom:633.331500px;}
.y8_c00373{bottom:660.264000px;}
.y7_c00373{bottom:687.547500px;}
.y6_c00373{bottom:711.099000px;}
.y5_c00373{bottom:738.223500px;}
.y4_c00373{bottom:777.870000px;}
.y3_c00373{bottom:800.421000px;}
.y2_c00373{bottom:823.270500px;}
.y1_c00373{bottom:868.240500px;}
.hf_c00373{height:50.404939px;}
.he_c00373{height:63.000000px;}
.ha_c00373{height:67.201646px;}
.h8_c00373{height:68.250000px;}
.hb_c00373{height:68.251672px;}
.h6_c00373{height:69.300000px;}
.h7_c00373{height:70.350000px;}
.hd_c00373{height:70.351724px;}
.h3_c00373{height:71.400000px;}
.hc_c00373{height:71.401749px;}
.h4_c00373{height:72.450000px;}
.h9_c00373{height:74.550000px;}
.h11_c00373{height:86.100000px;}
.h5_c00373{height:90.300000px;}
.h10_c00373{height:97.650000px;}
.h2_c00373{height:121.800000px;}
.h0_c00373{height:1008.450000px;}
.h1_c00373{height:1008.750000px;}
.w1_c00373{width:689.250000px;}
.w0_c00373{width:689.550000px;}
.x0_c00373{left:0.000000px;}
.x50_c00373{left:140.940000px;}
.x57_c00373{left:143.370000px;}
.x1_c00373{left:145.800000px;}
.x27_c00373{left:147.150000px;}
.x3c_c00373{left:148.230000px;}
.x48_c00373{left:149.850000px;}
.x7a_c00373{left:150.930000px;}
.x8f_c00373{left:152.158132px;}
.x97_c00373{left:153.627659px;}
.x30_c00373{left:154.710000px;}
.x2d_c00373{left:158.760000px;}
.x8_c00373{left:164.970000px;}
.x1b_c00373{left:166.050000px;}
.xab_c00373{left:168.603000px;}
.x46_c00373{left:174.150000px;}
.x3d_c00373{left:177.120000px;}
.x28_c00373{left:180.090000px;}
.x9_c00373{left:181.980000px;}
.x14_c00373{left:183.060000px;}
.x84_c00373{left:185.403000px;}
.x89_c00373{left:186.569781px;}
.x31_c00373{left:187.650000px;}
.xac_c00373{left:188.866500px;}
.x9f_c00373{left:192.361703px;}
.x1c_c00373{left:200.070000px;}
.x49_c00373{left:202.500000px;}
.x90_c00373{left:206.417254px;}
.x29_c00373{left:208.440000px;}
.x2_c00373{left:210.330000px;}
.x7e_c00373{left:211.410000px;}
.x47_c00373{left:217.350000px;}
.x70_c00373{left:218.700000px;}
.x8a_c00373{left:220.319929px;}
.xa_c00373{left:221.940000px;}
.x3e_c00373{left:224.370000px;}
.xa0_c00373{left:225.824027px;}
.x65_c00373{left:231.930000px;}
.x58_c00373{left:233.820000px;}
.x2a_c00373{left:235.440000px;}
.x1d_c00373{left:240.030000px;}
.x2e_c00373{left:247.590000px;}
.x91_c00373{left:251.313439px;}
.x71_c00373{left:253.260000px;}
.x15_c00373{left:256.770000px;}
.x5f_c00373{left:259.200000px;}
.x3_c00373{left:265.140000px;}
.x7f_c00373{left:267.840000px;}
.x66_c00373{left:271.350000px;}
.x16_c00373{left:273.510000px;}
.x60_c00373{left:275.400000px;}
.xa5_c00373{left:277.290000px;}
.x4a_c00373{left:278.370000px;}
.x1e_c00373{left:279.720000px;}
.x32_c00373{left:283.230000px;}
.x51_c00373{left:284.580000px;}
.x85_c00373{left:285.838500px;}
.x92_c00373{left:287.764687px;}
.xb_c00373{left:290.250000px;}
.x96_c00373{left:292.024875px;}
.x72_c00373{left:293.760000px;}
.x13_c00373{left:296.190000px;}
.x59_c00373{left:298.890000px;}
.x2f_c00373{left:300.780000px;}
.x17_c00373{left:301.860000px;}
.x3f_c00373{left:303.480000px;}
.x67_c00373{left:305.100000px;}
.x98_c00373{left:306.992177px;}
.x8b_c00373{left:317.251675px;}
.xad_c00373{left:318.784500px;}
.x73_c00373{left:320.220000px;}
.x33_c00373{left:322.650000px;}
.xc_c00373{left:324.270000px;}
.x52_c00373{left:325.350000px;}
.x4b_c00373{left:327.240000px;}
.x68_c00373{left:329.400000px;}
.xa1_c00373{left:330.841352px;}
.x5a_c00373{left:333.450000px;}
.x74_c00373{left:335.610000px;}
.x1f_c00373{left:336.690000px;}
.x4_c00373{left:338.850000px;}
.xb1_c00373{left:344.250000px;}
.x99_c00373{left:346.682619px;}
.x80_c00373{left:348.030000px;}
.x61_c00373{left:351.810000px;}
.x40_c00373{left:353.430000px;}
.x8c_c00373{left:356.672107px;}
.x18_c00373{left:358.830000px;}
.xae_c00373{left:360.367500px;}
.x86_c00373{left:361.414500px;}
.x2b_c00373{left:362.610000px;}
.x20_c00373{left:370.710000px;}
.x62_c00373{left:372.870000px;}
.x9a_c00373{left:375.034005px;}
.x5_c00373{left:376.110000px;}
.x69_c00373{left:379.080000px;}
.x75_c00373{left:382.590000px;}
.xb0_c00373{left:383.670000px;}
.x93_c00373{left:384.698505px;}
.xaf_c00373{left:385.707000px;}
.x34_c00373{left:386.910000px;}
.xd_c00373{left:394.470000px;}
.x7b_c00373{left:397.440000px;}
.xb2_c00373{left:401.220000px;}
.x21_c00373{left:405.810000px;}
.x81_c00373{left:406.890000px;}
.xa6_c00373{left:409.320000px;}
.x6_c00373{left:410.400000px;}
.xa2_c00373{left:411.565527px;}
.x63_c00373{left:414.180000px;}
.xe_c00373{left:417.150000px;}
.x41_c00373{left:419.580000px;}
.x2c_c00373{left:421.200000px;}
.xa7_c00373{left:423.630000px;}
.x19_c00373{left:430.380000px;}
.x9b_c00373{left:431.735288px;}
.x22_c00373{left:433.080000px;}
.x6a_c00373{left:434.160000px;}
.x53_c00373{left:438.210000px;}
.x7c_c00373{left:443.610000px;}
.x7_c00373{left:446.040000px;}
.x76_c00373{left:447.120000px;}
.x4c_c00373{left:450.360000px;}
.x6b_c00373{left:451.440000px;}
.x35_c00373{left:453.870000px;}
.x9c_c00373{left:456.576506px;}
.x77_c00373{left:459.270000px;}
.xa8_c00373{left:461.160000px;}
.x5b_c00373{left:462.240000px;}
.xf_c00373{left:463.860000px;}
.x94_c00373{left:466.203427px;}
.x1a_c00373{left:467.640000px;}
.x42_c00373{left:472.770000px;}
.x6c_c00373{left:477.360000px;}
.x82_c00373{left:479.250000px;}
.x23_c00373{left:480.330000px;}
.x54_c00373{left:483.840000px;}
.xa3_c00373{left:486.124913px;}
.x64_c00373{left:490.320000px;}
.x5c_c00373{left:492.480000px;}
.x95_c00373{left:496.165717px;}
.x8d_c00373{left:497.345995px;}
.x78_c00373{left:498.960000px;}
.x10_c00373{left:503.010000px;}
.x24_c00373{left:505.440000px;}
.x36_c00373{left:507.600000px;}
.xa4_c00373{left:511.228031px;}
.x43_c00373{left:516.240000px;}
.x9d_c00373{left:518.948061px;}
.x8e_c00373{left:520.297119px;}
.x55_c00373{left:522.720000px;}
.x5d_c00373{left:524.340000px;}
.x4d_c00373{left:526.770000px;}
.x9e_c00373{left:532.178712px;}
.x7d_c00373{left:533.790000px;}
.x37_c00373{left:535.410000px;}
.x6d_c00373{left:539.460000px;}
.x83_c00373{left:544.050000px;}
.x11_c00373{left:545.940000px;}
.x87_c00373{left:549.630000px;}
.x4e_c00373{left:554.040000px;}
.x25_c00373{left:557.280000px;}
.x6e_c00373{left:559.980000px;}
.x38_c00373{left:563.760000px;}
.x39_c00373{left:570.780000px;}
.x79_c00373{left:578.070000px;}
.x44_c00373{left:579.960000px;}
.x3a_c00373{left:582.930000px;}
.xa9_c00373{left:591.570000px;}
.x12_c00373{left:593.190000px;}
.x26_c00373{left:594.270000px;}
.x3b_c00373{left:600.210000px;}
.x88_c00373{left:604.725000px;}
.x4f_c00373{left:607.500000px;}
.x45_c00373{left:608.580000px;}
.x5e_c00373{left:612.360000px;}
.x6f_c00373{left:614.520000px;}
.xaa_c00373{left:617.220000px;}
.x56_c00373{left:621.000000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fsd_c00373{font-size:44.804390pt;}
.fsc_c00373{font-size:56.000000pt;}
.fs8_c00373{font-size:59.734797pt;}
.fs6_c00373{font-size:60.666667pt;}
.fs9_c00373{font-size:60.668153pt;}
.fs4_c00373{font-size:61.600000pt;}
.fs5_c00373{font-size:62.533333pt;}
.fsb_c00373{font-size:62.534865pt;}
.fs1_c00373{font-size:63.466667pt;}
.fsa_c00373{font-size:63.468222pt;}
.fs2_c00373{font-size:64.400000pt;}
.fs7_c00373{font-size:66.266667pt;}
.fsf_c00373{font-size:76.533333pt;}
.fs3_c00373{font-size:80.266667pt;}
.fse_c00373{font-size:86.800000pt;}
.fs0_c00373{font-size:108.266667pt;}
.y0_c00373{bottom:0.000000pt;}
.y5d_c00373{bottom:82.210667pt;}
.y5c_c00373{bottom:95.565333pt;}
.y5b_c00373{bottom:138.179595pt;}
.y5a_c00373{bottom:138.494931pt;}
.y59_c00373{bottom:139.012408pt;}
.y58_c00373{bottom:139.556765pt;}
.y57_c00373{bottom:139.862451pt;}
.y56_c00373{bottom:140.376904pt;}
.y55_c00373{bottom:140.629165pt;}
.y54_c00373{bottom:140.881333pt;}
.y53_c00373{bottom:185.873333pt;}
.y52_c00373{bottom:202.829051pt;}
.y51_c00373{bottom:203.535485pt;}
.y50_c00373{bottom:203.782296pt;}
.y4f_c00373{bottom:204.050499pt;}
.y4e_c00373{bottom:204.846440pt;}
.y4d_c00373{bottom:205.137117pt;}
.y4c_c00373{bottom:205.707408pt;}
.y4b_c00373{bottom:206.018265pt;}
.y4a_c00373{bottom:206.827539pt;}
.y49_c00373{bottom:207.185089pt;}
.y48_c00373{bottom:207.594353pt;}
.y43_c00373{bottom:226.722808pt;}
.y3e_c00373{bottom:226.723047pt;}
.y42_c00373{bottom:226.723208pt;}
.y44_c00373{bottom:226.723351pt;}
.y46_c00373{bottom:226.723387pt;}
.y45_c00373{bottom:226.723457pt;}
.y40_c00373{bottom:226.723483pt;}
.y41_c00373{bottom:226.723492pt;}
.y3f_c00373{bottom:226.723509pt;}
.y47_c00373{bottom:226.723733pt;}
.y3d_c00373{bottom:244.838495pt;}
.y3c_c00373{bottom:245.121685pt;}
.y3b_c00373{bottom:245.405613pt;}
.y3a_c00373{bottom:245.904237pt;}
.y39_c00373{bottom:246.214300pt;}
.y38_c00373{bottom:246.854888pt;}
.y37_c00373{bottom:247.160285pt;}
.y36_c00373{bottom:247.623257pt;}
.y35_c00373{bottom:248.147213pt;}
.y34_c00373{bottom:248.395965pt;}
.y33_c00373{bottom:265.173289pt;}
.y32_c00373{bottom:265.342229pt;}
.y31_c00373{bottom:265.519615pt;}
.y30_c00373{bottom:265.871055pt;}
.y2f_c00373{bottom:266.084155pt;}
.y2e_c00373{bottom:266.433719pt;}
.y2d_c00373{bottom:266.664633pt;}
.y2c_c00373{bottom:267.058609pt;}
.y2b_c00373{bottom:267.354448pt;}
.y2a_c00373{bottom:267.613257pt;}
.y29_c00373{bottom:267.932613pt;}
.y28_c00373{bottom:268.096869pt;}
.y27_c00373{bottom:268.318228pt;}
.y24_c00373{bottom:286.979279pt;}
.y23_c00373{bottom:286.979412pt;}
.y25_c00373{bottom:286.979785pt;}
.y20_c00373{bottom:286.979944pt;}
.y26_c00373{bottom:286.979955pt;}
.y21_c00373{bottom:286.980007pt;}
.y22_c00373{bottom:286.980016pt;}
.y1e_c00373{bottom:286.980379pt;}
.y1f_c00373{bottom:286.980468pt;}
.y1d_c00373{bottom:286.981036pt;}
.y1c_c00373{bottom:305.550885pt;}
.y1b_c00373{bottom:305.893699pt;}
.y1a_c00373{bottom:306.399369pt;}
.y19_c00373{bottom:306.905012pt;}
.y18_c00373{bottom:307.064817pt;}
.y17_c00373{bottom:307.535068pt;}
.y16_c00373{bottom:307.711440pt;}
.y15_c00373{bottom:307.966912pt;}
.y14_c00373{bottom:308.160000pt;}
.y13_c00373{bottom:339.686667pt;}
.y12_c00373{bottom:360.054667pt;}
.y11_c00373{bottom:380.400000pt;}
.y10_c00373{bottom:400.800000pt;}
.yf_c00373{bottom:421.200000pt;}
.ye_c00373{bottom:441.865333pt;}
.yd_c00373{bottom:461.977333pt;}
.yc_c00373{bottom:481.652000pt;}
.yb_c00373{bottom:522.240000pt;}
.ya_c00373{bottom:543.120000pt;}
.y9_c00373{bottom:562.961333pt;}
.y8_c00373{bottom:586.901333pt;}
.y7_c00373{bottom:611.153333pt;}
.y6_c00373{bottom:632.088000pt;}
.y5_c00373{bottom:656.198667pt;}
.y4_c00373{bottom:691.440000pt;}
.y3_c00373{bottom:711.485333pt;}
.y2_c00373{bottom:731.796000pt;}
.y1_c00373{bottom:771.769333pt;}
.hf_c00373{height:44.804390pt;}
.he_c00373{height:56.000000pt;}
.ha_c00373{height:59.734797pt;}
.h8_c00373{height:60.666667pt;}
.hb_c00373{height:60.668153pt;}
.h6_c00373{height:61.600000pt;}
.h7_c00373{height:62.533333pt;}
.hd_c00373{height:62.534865pt;}
.h3_c00373{height:63.466667pt;}
.hc_c00373{height:63.468222pt;}
.h4_c00373{height:64.400000pt;}
.h9_c00373{height:66.266667pt;}
.h11_c00373{height:76.533333pt;}
.h5_c00373{height:80.266667pt;}
.h10_c00373{height:86.800000pt;}
.h2_c00373{height:108.266667pt;}
.h0_c00373{height:896.400000pt;}
.h1_c00373{height:896.666667pt;}
.w1_c00373{width:612.666667pt;}
.w0_c00373{width:612.933333pt;}
.x0_c00373{left:0.000000pt;}
.x50_c00373{left:125.280000pt;}
.x57_c00373{left:127.440000pt;}
.x1_c00373{left:129.600000pt;}
.x27_c00373{left:130.800000pt;}
.x3c_c00373{left:131.760000pt;}
.x48_c00373{left:133.200000pt;}
.x7a_c00373{left:134.160000pt;}
.x8f_c00373{left:135.251673pt;}
.x97_c00373{left:136.557919pt;}
.x30_c00373{left:137.520000pt;}
.x2d_c00373{left:141.120000pt;}
.x8_c00373{left:146.640000pt;}
.x1b_c00373{left:147.600000pt;}
.xab_c00373{left:149.869333pt;}
.x46_c00373{left:154.800000pt;}
.x3d_c00373{left:157.440000pt;}
.x28_c00373{left:160.080000pt;}
.x9_c00373{left:161.760000pt;}
.x14_c00373{left:162.720000pt;}
.x84_c00373{left:164.802667pt;}
.x89_c00373{left:165.839805pt;}
.x31_c00373{left:166.800000pt;}
.xac_c00373{left:167.881333pt;}
.x9f_c00373{left:170.988180pt;}
.x1c_c00373{left:177.840000pt;}
.x49_c00373{left:180.000000pt;}
.x90_c00373{left:183.482004pt;}
.x29_c00373{left:185.280000pt;}
.x2_c00373{left:186.960000pt;}
.x7e_c00373{left:187.920000pt;}
.x47_c00373{left:193.200000pt;}
.x70_c00373{left:194.400000pt;}
.x8a_c00373{left:195.839937pt;}
.xa_c00373{left:197.280000pt;}
.x3e_c00373{left:199.440000pt;}
.xa0_c00373{left:200.732468pt;}
.x65_c00373{left:206.160000pt;}
.x58_c00373{left:207.840000pt;}
.x2a_c00373{left:209.280000pt;}
.x1d_c00373{left:213.360000pt;}
.x2e_c00373{left:220.080000pt;}
.x91_c00373{left:223.389724pt;}
.x71_c00373{left:225.120000pt;}
.x15_c00373{left:228.240000pt;}
.x5f_c00373{left:230.400000pt;}
.x3_c00373{left:235.680000pt;}
.x7f_c00373{left:238.080000pt;}
.x66_c00373{left:241.200000pt;}
.x16_c00373{left:243.120000pt;}
.x60_c00373{left:244.800000pt;}
.xa5_c00373{left:246.480000pt;}
.x4a_c00373{left:247.440000pt;}
.x1e_c00373{left:248.640000pt;}
.x32_c00373{left:251.760000pt;}
.x51_c00373{left:252.960000pt;}
.x85_c00373{left:254.078667pt;}
.x92_c00373{left:255.790833pt;}
.xb_c00373{left:258.000000pt;}
.x96_c00373{left:259.577667pt;}
.x72_c00373{left:261.120000pt;}
.x13_c00373{left:263.280000pt;}
.x59_c00373{left:265.680000pt;}
.x2f_c00373{left:267.360000pt;}
.x17_c00373{left:268.320000pt;}
.x3f_c00373{left:269.760000pt;}
.x67_c00373{left:271.200000pt;}
.x98_c00373{left:272.881935pt;}
.x8b_c00373{left:282.001489pt;}
.xad_c00373{left:283.364000pt;}
.x73_c00373{left:284.640000pt;}
.x33_c00373{left:286.800000pt;}
.xc_c00373{left:288.240000pt;}
.x52_c00373{left:289.200000pt;}
.x4b_c00373{left:290.880000pt;}
.x68_c00373{left:292.800000pt;}
.xa1_c00373{left:294.081201pt;}
.x5a_c00373{left:296.400000pt;}
.x74_c00373{left:298.320000pt;}
.x1f_c00373{left:299.280000pt;}
.x4_c00373{left:301.200000pt;}
.xb1_c00373{left:306.000000pt;}
.x99_c00373{left:308.162328pt;}
.x80_c00373{left:309.360000pt;}
.x61_c00373{left:312.720000pt;}
.x40_c00373{left:314.160000pt;}
.x8c_c00373{left:317.041873pt;}
.x18_c00373{left:318.960000pt;}
.xae_c00373{left:320.326667pt;}
.x86_c00373{left:321.257333pt;}
.x2b_c00373{left:322.320000pt;}
.x20_c00373{left:329.520000pt;}
.x62_c00373{left:331.440000pt;}
.x9a_c00373{left:333.363560pt;}
.x5_c00373{left:334.320000pt;}
.x69_c00373{left:336.960000pt;}
.x75_c00373{left:340.080000pt;}
.xb0_c00373{left:341.040000pt;}
.x93_c00373{left:341.954227pt;}
.xaf_c00373{left:342.850667pt;}
.x34_c00373{left:343.920000pt;}
.xd_c00373{left:350.640000pt;}
.x7b_c00373{left:353.280000pt;}
.xb2_c00373{left:356.640000pt;}
.x21_c00373{left:360.720000pt;}
.x81_c00373{left:361.680000pt;}
.xa6_c00373{left:363.840000pt;}
.x6_c00373{left:364.800000pt;}
.xa2_c00373{left:365.836024pt;}
.x63_c00373{left:368.160000pt;}
.xe_c00373{left:370.800000pt;}
.x41_c00373{left:372.960000pt;}
.x2c_c00373{left:374.400000pt;}
.xa7_c00373{left:376.560000pt;}
.x19_c00373{left:382.560000pt;}
.x9b_c00373{left:383.764700pt;}
.x22_c00373{left:384.960000pt;}
.x6a_c00373{left:385.920000pt;}
.x53_c00373{left:389.520000pt;}
.x7c_c00373{left:394.320000pt;}
.x7_c00373{left:396.480000pt;}
.x76_c00373{left:397.440000pt;}
.x4c_c00373{left:400.320000pt;}
.x6b_c00373{left:401.280000pt;}
.x35_c00373{left:403.440000pt;}
.x9c_c00373{left:405.845783pt;}
.x77_c00373{left:408.240000pt;}
.xa8_c00373{left:409.920000pt;}
.x5b_c00373{left:410.880000pt;}
.xf_c00373{left:412.320000pt;}
.x94_c00373{left:414.403047pt;}
.x1a_c00373{left:415.680000pt;}
.x42_c00373{left:420.240000pt;}
.x6c_c00373{left:424.320000pt;}
.x82_c00373{left:426.000000pt;}
.x23_c00373{left:426.960000pt;}
.x54_c00373{left:430.080000pt;}
.xa3_c00373{left:432.111033pt;}
.x64_c00373{left:435.840000pt;}
.x5c_c00373{left:437.760000pt;}
.x95_c00373{left:441.036193pt;}
.x8d_c00373{left:442.085329pt;}
.x78_c00373{left:443.520000pt;}
.x10_c00373{left:447.120000pt;}
.x24_c00373{left:449.280000pt;}
.x36_c00373{left:451.200000pt;}
.xa4_c00373{left:454.424916pt;}
.x43_c00373{left:458.880000pt;}
.x9d_c00373{left:461.287165pt;}
.x8e_c00373{left:462.486328pt;}
.x55_c00373{left:464.640000pt;}
.x5d_c00373{left:466.080000pt;}
.x4d_c00373{left:468.240000pt;}
.x9e_c00373{left:473.047744pt;}
.x7d_c00373{left:474.480000pt;}
.x37_c00373{left:475.920000pt;}
.x6d_c00373{left:479.520000pt;}
.x83_c00373{left:483.600000pt;}
.x11_c00373{left:485.280000pt;}
.x87_c00373{left:488.560000pt;}
.x4e_c00373{left:492.480000pt;}
.x25_c00373{left:495.360000pt;}
.x6e_c00373{left:497.760000pt;}
.x38_c00373{left:501.120000pt;}
.x39_c00373{left:507.360000pt;}
.x79_c00373{left:513.840000pt;}
.x44_c00373{left:515.520000pt;}
.x3a_c00373{left:518.160000pt;}
.xa9_c00373{left:525.840000pt;}
.x12_c00373{left:527.280000pt;}
.x26_c00373{left:528.240000pt;}
.x3b_c00373{left:533.520000pt;}
.x88_c00373{left:537.533333pt;}
.x4f_c00373{left:540.000000pt;}
.x45_c00373{left:540.960000pt;}
.x5e_c00373{left:544.320000pt;}
.x6f_c00373{left:546.240000pt;}
.xaa_c00373{left:548.640000pt;}
.x56_c00373{left:552.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_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_ef4e99a7aa2876b3106553d3.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;}
.m6b_c00374{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);}
.mc5_c00374{transform:matrix(0.019005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019005,0.000000,0.000000,0.250000,0,0);}
.m133_c00374{transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);}
.m6c_c00374{transform:matrix(0.051285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051285,0.000000,0.000000,0.250000,0,0);}
.m123_c00374{transform:matrix(0.072715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072715,0.000000,0.000000,0.250000,0,0);}
.m8c_c00374{transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);}
.m12f_c00374{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);}
.m139_c00374{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.m74_c00374{transform:matrix(0.129485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129485,0.000000,0.000000,0.250000,0,0);}
.m86_c00374{transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);}
.md4_c00374{transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139705,0.000000,0.000000,0.250000,0,0);}
.m10b_c00374{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);}
.m11d_c00374{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);}
.mad_c00374{transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.146640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146640,0.000000,0.000000,0.250000,0,0);}
.m9c_c00374{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);}
.mf7_c00374{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);}
.m10_c00374{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);}
.mef_c00374{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);}
.m29_c00374{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);}
.m27_c00374{transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);}
.md9_c00374{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);}
.me8_c00374{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);}
.m108_c00374{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);}
.m100_c00374{transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);}
.m84_c00374{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);}
.m2d_c00374{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);}
.maa_c00374{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);}
.m85_c00374{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);}
.mfb_c00374{transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155820,0.000000,0.000000,0.250000,0,0);}
.m116_c00374{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);}
.mcc_c00374{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);}
.m106_c00374{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);}
.ma1_c00374{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);}
.mae_c00374{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);}
.m11_c00374{transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{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);}
.m1c_c00374{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);}
.m11c_c00374{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);}
.m2a_c00374{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);}
.m8e_c00374{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);}
.m87_c00374{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.ma7_c00374{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);}
.m55_c00374{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);}
.m63_c00374{transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{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);}
.mac_c00374{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);}
.m107_c00374{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);}
.mbb_c00374{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);}
.mf0_c00374{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00374{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{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);}
.m57_c00374{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);}
.mc4_c00374{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_c00374{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);}
.m91_c00374{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);}
.m60_c00374{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);}
.me1_c00374{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);}
.m111_c00374{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);}
.m96_c00374{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);}
.m37_c00374{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);}
.m33_c00374{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);}
.m38_c00374{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);}
.m25_c00374{transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{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);}
.m88_c00374{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);}
.md5_c00374{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);}
.m9b_c00374{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);}
.me2_c00374{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);}
.meb_c00374{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00374{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_c00374{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);}
.m39_c00374{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);}
.mb3_c00374{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);}
.m9a_c00374{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);}
.m115_c00374{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);}
.med_c00374{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);}
.mdd_c00374{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);}
.mcf_c00374{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);}
.m4f_c00374{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);}
.m4d_c00374{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);}
.m7e_c00374{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);}
.mc6_c00374{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);}
.m6d_c00374{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);}
.m6f_c00374{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);}
.m1a_c00374{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);}
.m8b_c00374{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);}
.mf2_c00374{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);}
.ma5_c00374{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);}
.m6_c00374{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);}
.m19_c00374{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);}
.m35_c00374{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);}
.m41_c00374{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);}
.m11e_c00374{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);}
.md2_c00374{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);}
.m121_c00374{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);}
.m52_c00374{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);}
.m94_c00374{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);}
.m109_c00374{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);}
.m134_c00374{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);}
.m99_c00374{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);}
.m59_c00374{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);}
.ma2_c00374{transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{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);}
.me6_c00374{transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);}
.m58_c00374{transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);}
.me9_c00374{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);}
.mc8_c00374{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);}
.m36_c00374{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);}
.m28_c00374{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);}
.mf6_c00374{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);}
.mfa_c00374{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);}
.m3a_c00374{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);}
.mb7_c00374{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);}
.mc7_c00374{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);}
.md6_c00374{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);}
.maf_c00374{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00374{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);}
.me0_c00374{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);}
.mb0_c00374{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);}
.m117_c00374{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);}
.ma_c00374{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);}
.m13a_c00374{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);}
.m120_c00374{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);}
.mfd_c00374{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);}
.m10f_c00374{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);}
.m7b_c00374{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);}
.m113_c00374{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);}
.m12_c00374{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);}
.ma9_c00374{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);}
.m97_c00374{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);}
.md7_c00374{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);}
.m20_c00374{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);}
.m110_c00374{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);}
.mb8_c00374{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);}
.mee_c00374{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m10c_c00374{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);}
.m7d_c00374{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);}
.m11a_c00374{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);}
.m22_c00374{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);}
.mf3_c00374{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);}
.m21_c00374{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);}
.md3_c00374{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);}
.me3_c00374{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);}
.md1_c00374{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);}
.m8f_c00374{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);}
.me4_c00374{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);}
.m47_c00374{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);}
.m11f_c00374{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);}
.m6a_c00374{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);}
.mcb_c00374{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);}
.me_c00374{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);}
.m10a_c00374{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);}
.m5e_c00374{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);}
.m130_c00374{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);}
.m105_c00374{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);}
.mdb_c00374{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);}
.m26_c00374{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);}
.mda_c00374{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_c00374{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);}
.mbe_c00374{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);}
.mf_c00374{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);}
.m49_c00374{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);}
.m48_c00374{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);}
.m95_c00374{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);}
.m53_c00374{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);}
.m2b_c00374{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);}
.m3d_c00374{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);}
.m82_c00374{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);}
.ma6_c00374{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);}
.m5_c00374{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);}
.m18_c00374{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);}
.m9e_c00374{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);}
.m34_c00374{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);}
.m3b_c00374{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);}
.m4c_c00374{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);}
.mab_c00374{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);}
.m80_c00374{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_c00374{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);}
.m43_c00374{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);}
.m50_c00374{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);}
.mba_c00374{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);}
.m56_c00374{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);}
.m81_c00374{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);}
.m128_c00374{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);}
.m4b_c00374{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);}
.mcd_c00374{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);}
.ma4_c00374{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);}
.m44_c00374{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);}
.m7_c00374{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);}
.md8_c00374{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);}
.m90_c00374{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);}
.m5a_c00374{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);}
.m11b_c00374{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);}
.mc1_c00374{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);}
.md_c00374{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);}
.mc2_c00374{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);}
.m32_c00374{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);}
.ma3_c00374{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);}
.m104_c00374{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);}
.ma0_c00374{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);}
.mf4_c00374{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);}
.mce_c00374{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);}
.m14_c00374{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);}
.mec_c00374{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);}
.m51_c00374{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);}
.m71_c00374{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);}
.mde_c00374{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);}
.m102_c00374{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);}
.m101_c00374{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);}
.m93_c00374{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);}
.mf1_c00374{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);}
.mdc_c00374{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);}
.m136_c00374{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);}
.mb1_c00374{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);}
.mc9_c00374{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);}
.mbd_c00374{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);}
.m125_c00374{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);}
.m12b_c00374{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);}
.m135_c00374{transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205505,0.000000,0.000000,0.250000,0,0);}
.mfe_c00374{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);}
.mf5_c00374{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);}
.m15_c00374{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);}
.mb2_c00374{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);}
.m1d_c00374{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);}
.m10d_c00374{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);}
.m13_c00374{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);}
.m13b_c00374{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);}
.m2e_c00374{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);}
.m3c_c00374{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);}
.m119_c00374{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);}
.mb5_c00374{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);}
.m42_c00374{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);}
.m124_c00374{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);}
.m112_c00374{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);}
.m2f_c00374{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);}
.m54_c00374{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);}
.m5c_c00374{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);}
.mdf_c00374{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);}
.m17_c00374{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);}
.mca_c00374{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);}
.m24_c00374{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);}
.m114_c00374{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);}
.m30_c00374{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);}
.m46_c00374{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);}
.m72_c00374{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);}
.m23_c00374{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);}
.mbc_c00374{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);}
.m7f_c00374{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);}
.mea_c00374{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);}
.m89_c00374{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);}
.mb6_c00374{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);}
.m45_c00374{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);}
.m138_c00374{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);}
.md0_c00374{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);}
.m4_c00374{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);}
.m10e_c00374{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);}
.m137_c00374{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);}
.mf9_c00374{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);}
.m132_c00374{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);}
.m83_c00374{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);}
.mc0_c00374{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);}
.m3e_c00374{transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00374{transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230405,0.000000,0.000000,0.250000,0,0);}
.m122_c00374{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00374{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);}
.ma8_c00374{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);}
.m69_c00374{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);}
.m5d_c00374{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);}
.m73_c00374{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);}
.mbf_c00374{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);}
.m5b_c00374{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.mf8_c00374{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00374{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.m4a_c00374{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);}
.m5f_c00374{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);}
.m98_c00374{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);}
.m1f_c00374{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.mb9_c00374{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);}
.m8d_c00374{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);}
.m68_c00374{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m78_c00374{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);}
.me7_c00374{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.m77_c00374{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);}
.me5_c00374{transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);}
.m79_c00374{transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);}
.m118_c00374{transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.258420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258420,0.000000,0.000000,0.250000,0,0);}
.m103_c00374{transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);}
.m126_c00374{transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260070,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);}
.m127_c00374{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);}
.m40_c00374{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);}
.m2_c00374{transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270925,0.000000,0.000000,0.250000,0,0);}
.m76_c00374{transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274195,0.000000,0.000000,0.250000,0,0);}
.m66_c00374{transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);}
.m65_c00374{transform:matrix(0.279460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279460,0.000000,0.000000,0.250000,0,0);}
.mff_c00374{transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);}
.m67_c00374{transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295815,0.000000,0.000000,0.250000,0,0);}
.m75_c00374{transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);}
.m70_c00374{transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309120,0.000000,0.000000,0.250000,0,0);}
.m64_c00374{transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);}
.m6e_c00374{transform:matrix(0.331015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331015,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.344925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344925,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.356160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356160,0.000000,0.000000,0.250000,0,0);}
.m12a_c00374{transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362545,0.000000,0.000000,0.250000,0,0);}
.m131_c00374{transform:matrix(0.396915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396915,0.000000,0.000000,0.250000,0,0);}
.m12d_c00374{transform:matrix(0.426550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426550,0.000000,0.000000,0.250000,0,0);}
.m129_c00374{transform:matrix(0.439070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439070,0.000000,0.000000,0.250000,0,0);}
.m61_c00374{transform:matrix(0.463495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463495,0.000000,0.000000,0.250000,0,0);}
.m12c_c00374{transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486875,0.000000,0.000000,0.250000,0,0);}
.m7a_c00374{transform:matrix(0.720045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720045,0.000000,0.000000,0.250000,0,0);}
.m12e_c00374{transform:matrix(0.900505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900505,0.000000,0.000000,0.250000,0,0);}
.m62_c00374{transform:matrix(1.010420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.010420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.010420,0.000000,0.000000,0.250000,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:50.400000px;}
.fsb_c00374{font-size:53.550000px;}
.fs7_c00374{font-size:60.900000px;}
.fs5_c00374{font-size:64.050000px;}
.fs8_c00374{font-size:66.150000px;}
.fsa_c00374{font-size:67.200000px;}
.fs2_c00374{font-size:69.300000px;}
.fs6_c00374{font-size:70.350000px;}
.fs3_c00374{font-size:71.400000px;}
.fs9_c00374{font-size:72.450000px;}
.fs4_c00374{font-size:73.500000px;}
.fs1_c00374{font-size:74.550000px;}
.fs0_c00374{font-size:117.600000px;}
.y0_c00374{bottom:0.000000px;}
.y1e_c00374{bottom:146.449500px;}
.y1d_c00374{bottom:164.658000px;}
.y1c_c00374{bottom:227.580000px;}
.y1b_c00374{bottom:250.020000px;}
.y1a_c00374{bottom:272.460000px;}
.y19_c00374{bottom:295.620000px;}
.y18_c00374{bottom:318.330000px;}
.y17_c00374{bottom:341.010000px;}
.y16_c00374{bottom:363.720000px;}
.y15_c00374{bottom:386.370000px;}
.y14_c00374{bottom:408.757500px;}
.y13_c00374{bottom:431.760000px;}
.y12_c00374{bottom:454.710000px;}
.y11_c00374{bottom:477.660000px;}
.y10_c00374{bottom:500.610000px;}
.yf_c00374{bottom:523.020000px;}
.ye_c00374{bottom:545.970000px;}
.yd_c00374{bottom:568.668000px;}
.yc_c00374{bottom:591.595500px;}
.yb_c00374{bottom:614.598000px;}
.ya_c00374{bottom:636.453000px;}
.y9_c00374{bottom:659.371500px;}
.y8_c00374{bottom:682.051500px;}
.y7_c00374{bottom:705.538500px;}
.y6_c00374{bottom:727.951500px;}
.y5_c00374{bottom:751.171500px;}
.y4_c00374{bottom:773.611500px;}
.y3_c00374{bottom:796.593000px;}
.y2_c00374{bottom:819.492000px;}
.y1_c00374{bottom:865.044000px;}
.he_c00374{height:50.400000px;}
.hd_c00374{height:53.550000px;}
.h9_c00374{height:60.900000px;}
.h7_c00374{height:64.050000px;}
.ha_c00374{height:66.150000px;}
.hc_c00374{height:67.200000px;}
.h4_c00374{height:69.300000px;}
.h8_c00374{height:70.350000px;}
.h5_c00374{height:71.400000px;}
.hb_c00374{height:72.450000px;}
.h6_c00374{height:73.500000px;}
.h3_c00374{height:74.550000px;}
.h2_c00374{height:117.600000px;}
.h1_c00374{height:1005.000000px;}
.h0_c00374{height:1005.150000px;}
.w0_c00374{width:715.200000px;}
.w1_c00374{width:715.500000px;}
.x0_c00374{left:0.000000px;}
.x85_c00374{left:81.540000px;}
.x8a_c00374{left:83.430000px;}
.xb2_c00374{left:85.320000px;}
.x92_c00374{left:94.500000px;}
.xf_c00374{left:95.580000px;}
.x5_c00374{left:96.660000px;}
.xab_c00374{left:99.360000px;}
.xac_c00374{left:110.160000px;}
.xb3_c00374{left:114.750000px;}
.x63_c00374{left:119.880000px;}
.x10_c00374{left:122.040000px;}
.xa3_c00374{left:124.470000px;}
.x7c_c00374{left:126.090000px;}
.x1a_c00374{left:127.440000px;}
.xa0_c00374{left:128.520000px;}
.xad_c00374{left:130.140000px;}
.x4a_c00374{left:133.110000px;}
.x2e_c00374{left:135.540000px;}
.xa7_c00374{left:136.620000px;}
.x80_c00374{left:138.240000px;}
.x3b_c00374{left:142.830000px;}
.x97_c00374{left:146.610000px;}
.x64_c00374{left:147.960000px;}
.xae_c00374{left:149.310000px;}
.x53_c00374{left:153.630000px;}
.x72_c00374{left:156.870000px;}
.x59_c00374{left:158.760000px;}
.x6a_c00374{left:161.460000px;}
.x36_c00374{left:165.240000px;}
.x77_c00374{left:167.130000px;}
.x93_c00374{left:169.830000px;}
.x1b_c00374{left:173.340000px;}
.x26_c00374{left:176.850000px;}
.xa8_c00374{left:178.200000px;}
.x44_c00374{left:181.440000px;}
.x11_c00374{left:182.520000px;}
.x3c_c00374{left:189.540000px;}
.x1c_c00374{left:192.240000px;}
.x4b_c00374{left:194.940000px;}
.x8b_c00374{left:196.290000px;}
.x7d_c00374{left:199.260000px;}
.x81_c00374{left:200.340000px;}
.x27_c00374{left:203.040000px;}
.x1_c00374{left:204.390000px;}
.x4c_c00374{left:209.790000px;}
.x2f_c00374{left:211.140000px;}
.x6_c00374{left:212.490000px;}
.x37_c00374{left:215.190000px;}
.x61_c00374{left:220.320000px;}
.x28_c00374{left:223.830000px;}
.x98_c00374{left:225.720000px;}
.x7_c00374{left:228.690000px;}
.x12_c00374{left:229.770000px;}
.x45_c00374{left:231.660000px;}
.x6b_c00374{left:234.360000px;}
.xaf_c00374{left:236.790000px;}
.x1d_c00374{left:237.870000px;}
.x65_c00374{left:238.950000px;}
.x99_c00374{left:240.570000px;}
.xb4_c00374{left:242.730000px;}
.x8c_c00374{left:246.510000px;}
.x54_c00374{left:247.590000px;}
.x5a_c00374{left:250.830000px;}
.x4d_c00374{left:253.800000px;}
.x1e_c00374{left:254.880000px;}
.x78_c00374{left:256.770000px;}
.x3d_c00374{left:260.010000px;}
.x66_c00374{left:263.250000px;}
.x73_c00374{left:264.600000px;}
.x13_c00374{left:265.680000px;}
.x86_c00374{left:269.730000px;}
.x8d_c00374{left:271.620000px;}
.x55_c00374{left:272.970000px;}
.x30_c00374{left:274.050000px;}
.x1f_c00374{left:279.450000px;}
.x3e_c00374{left:281.340000px;}
.x8_c00374{left:287.820000px;}
.x38_c00374{left:290.250000px;}
.x6c_c00374{left:292.140000px;}
.x4e_c00374{left:298.080000px;}
.x31_c00374{left:300.780000px;}
.x20_c00374{left:303.750000px;}
.x29_c00374{left:308.880000px;}
.x94_c00374{left:311.580000px;}
.x14_c00374{left:313.740000px;}
.x56_c00374{left:317.250000px;}
.x3f_c00374{left:319.410000px;}
.x2a_c00374{left:323.460000px;}
.x95_c00374{left:326.160000px;}
.x74_c00374{left:328.320000px;}
.x9a_c00374{left:333.450000px;}
.x9_c00374{left:334.530000px;}
.x9d_c00374{left:336.150000px;}
.x2_c00374{left:338.040000px;}
.x4f_c00374{left:340.740000px;}
.xa4_c00374{left:342.360000px;}
.x79_c00374{left:343.440000px;}
.x21_c00374{left:345.330000px;}
.x6d_c00374{left:346.410000px;}
.x7e_c00374{left:353.160000px;}
.x62_c00374{left:357.750000px;}
.x67_c00374{left:359.370000px;}
.x50_c00374{left:360.720000px;}
.x32_c00374{left:364.230000px;}
.x9e_c00374{left:367.470000px;}
.x3_c00374{left:368.550000px;}
.x22_c00374{left:370.710000px;}
.x2b_c00374{left:373.410000px;}
.x57_c00374{left:376.110000px;}
.x8e_c00374{left:378.810000px;}
.x5b_c00374{left:381.240000px;}
.x15_c00374{left:382.320000px;}
.x7a_c00374{left:385.290000px;}
.xa_c00374{left:388.530000px;}
.x46_c00374{left:392.040000px;}
.x82_c00374{left:393.930000px;}
.x87_c00374{left:395.550000px;}
.x16_c00374{left:397.440000px;}
.x5c_c00374{left:400.140000px;}
.x6e_c00374{left:402.570000px;}
.x39_c00374{left:407.430000px;}
.x51_c00374{left:409.860000px;}
.x17_c00374{left:410.940000px;}
.x40_c00374{left:412.560000px;}
.x2c_c00374{left:418.500000px;}
.x8f_c00374{left:420.930000px;}
.x9b_c00374{left:422.820000px;}
.xa9_c00374{left:423.900000px;}
.x33_c00374{left:427.410000px;}
.xb_c00374{left:430.650000px;}
.x75_c00374{left:432.540000px;}
.x4_c00374{left:434.970000px;}
.x5d_c00374{left:438.210000px;}
.x47_c00374{left:440.370000px;}
.x41_c00374{left:441.720000px;}
.x96_c00374{left:445.230000px;}
.x90_c00374{left:447.390000px;}
.x6f_c00374{left:450.360000px;}
.x83_c00374{left:451.440000px;}
.x7f_c00374{left:454.140000px;}
.x88_c00374{left:458.190000px;}
.xa1_c00374{left:464.130000px;}
.xc_c00374{left:466.830000px;}
.x9f_c00374{left:469.260000px;}
.x23_c00374{left:472.500000px;}
.x52_c00374{left:473.850000px;}
.x5e_c00374{left:476.550000px;}
.x2d_c00374{left:479.250000px;}
.x42_c00374{left:481.410000px;}
.x9c_c00374{left:483.300000px;}
.x68_c00374{left:484.920000px;}
.x91_c00374{left:488.970000px;}
.x5f_c00374{left:490.860000px;}
.xd_c00374{left:493.020000px;}
.x24_c00374{left:497.610000px;}
.x70_c00374{left:498.960000px;}
.xaa_c00374{left:500.310000px;}
.xb0_c00374{left:501.390000px;}
.x43_c00374{left:505.440000px;}
.xa5_c00374{left:507.060000px;}
.x3a_c00374{left:508.950000px;}
.x34_c00374{left:510.570000px;}
.x48_c00374{left:512.190000px;}
.xb1_c00374{left:513.270000px;}
.x18_c00374{left:518.130000px;}
.x58_c00374{left:522.180000px;}
.x89_c00374{left:526.500000px;}
.x7b_c00374{left:530.550000px;}
.xa6_c00374{left:532.170000px;}
.x49_c00374{left:540.000000px;}
.x25_c00374{left:543.240000px;}
.xa2_c00374{left:546.210000px;}
.x71_c00374{left:548.370000px;}
.x60_c00374{left:550.260000px;}
.x35_c00374{left:553.230000px;}
.x84_c00374{left:555.930000px;}
.x19_c00374{left:557.820000px;}
.x69_c00374{left:560.790000px;}
.x76_c00374{left:562.680000px;}
.xe_c00374{left:566.730000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fsc_c00374{font-size:44.800000pt;}
.fsb_c00374{font-size:47.600000pt;}
.fs7_c00374{font-size:54.133333pt;}
.fs5_c00374{font-size:56.933333pt;}
.fs8_c00374{font-size:58.800000pt;}
.fsa_c00374{font-size:59.733333pt;}
.fs2_c00374{font-size:61.600000pt;}
.fs6_c00374{font-size:62.533333pt;}
.fs3_c00374{font-size:63.466667pt;}
.fs9_c00374{font-size:64.400000pt;}
.fs4_c00374{font-size:65.333333pt;}
.fs1_c00374{font-size:66.266667pt;}
.fs0_c00374{font-size:104.533333pt;}
.y0_c00374{bottom:0.000000pt;}
.y1e_c00374{bottom:130.177333pt;}
.y1d_c00374{bottom:146.362667pt;}
.y1c_c00374{bottom:202.293333pt;}
.y1b_c00374{bottom:222.240000pt;}
.y1a_c00374{bottom:242.186667pt;}
.y19_c00374{bottom:262.773333pt;}
.y18_c00374{bottom:282.960000pt;}
.y17_c00374{bottom:303.120000pt;}
.y16_c00374{bottom:323.306667pt;}
.y15_c00374{bottom:343.440000pt;}
.y14_c00374{bottom:363.340000pt;}
.y13_c00374{bottom:383.786667pt;}
.y12_c00374{bottom:404.186667pt;}
.y11_c00374{bottom:424.586667pt;}
.y10_c00374{bottom:444.986667pt;}
.yf_c00374{bottom:464.906667pt;}
.ye_c00374{bottom:485.306667pt;}
.yd_c00374{bottom:505.482667pt;}
.yc_c00374{bottom:525.862667pt;}
.yb_c00374{bottom:546.309333pt;}
.ya_c00374{bottom:565.736000pt;}
.y9_c00374{bottom:586.108000pt;}
.y8_c00374{bottom:606.268000pt;}
.y7_c00374{bottom:627.145333pt;}
.y6_c00374{bottom:647.068000pt;}
.y5_c00374{bottom:667.708000pt;}
.y4_c00374{bottom:687.654667pt;}
.y3_c00374{bottom:708.082667pt;}
.y2_c00374{bottom:728.437333pt;}
.y1_c00374{bottom:768.928000pt;}
.he_c00374{height:44.800000pt;}
.hd_c00374{height:47.600000pt;}
.h9_c00374{height:54.133333pt;}
.h7_c00374{height:56.933333pt;}
.ha_c00374{height:58.800000pt;}
.hc_c00374{height:59.733333pt;}
.h4_c00374{height:61.600000pt;}
.h8_c00374{height:62.533333pt;}
.h5_c00374{height:63.466667pt;}
.hb_c00374{height:64.400000pt;}
.h6_c00374{height:65.333333pt;}
.h3_c00374{height:66.266667pt;}
.h2_c00374{height:104.533333pt;}
.h1_c00374{height:893.333333pt;}
.h0_c00374{height:893.466667pt;}
.w0_c00374{width:635.733333pt;}
.w1_c00374{width:636.000000pt;}
.x0_c00374{left:0.000000pt;}
.x85_c00374{left:72.480000pt;}
.x8a_c00374{left:74.160000pt;}
.xb2_c00374{left:75.840000pt;}
.x92_c00374{left:84.000000pt;}
.xf_c00374{left:84.960000pt;}
.x5_c00374{left:85.920000pt;}
.xab_c00374{left:88.320000pt;}
.xac_c00374{left:97.920000pt;}
.xb3_c00374{left:102.000000pt;}
.x63_c00374{left:106.560000pt;}
.x10_c00374{left:108.480000pt;}
.xa3_c00374{left:110.640000pt;}
.x7c_c00374{left:112.080000pt;}
.x1a_c00374{left:113.280000pt;}
.xa0_c00374{left:114.240000pt;}
.xad_c00374{left:115.680000pt;}
.x4a_c00374{left:118.320000pt;}
.x2e_c00374{left:120.480000pt;}
.xa7_c00374{left:121.440000pt;}
.x80_c00374{left:122.880000pt;}
.x3b_c00374{left:126.960000pt;}
.x97_c00374{left:130.320000pt;}
.x64_c00374{left:131.520000pt;}
.xae_c00374{left:132.720000pt;}
.x53_c00374{left:136.560000pt;}
.x72_c00374{left:139.440000pt;}
.x59_c00374{left:141.120000pt;}
.x6a_c00374{left:143.520000pt;}
.x36_c00374{left:146.880000pt;}
.x77_c00374{left:148.560000pt;}
.x93_c00374{left:150.960000pt;}
.x1b_c00374{left:154.080000pt;}
.x26_c00374{left:157.200000pt;}
.xa8_c00374{left:158.400000pt;}
.x44_c00374{left:161.280000pt;}
.x11_c00374{left:162.240000pt;}
.x3c_c00374{left:168.480000pt;}
.x1c_c00374{left:170.880000pt;}
.x4b_c00374{left:173.280000pt;}
.x8b_c00374{left:174.480000pt;}
.x7d_c00374{left:177.120000pt;}
.x81_c00374{left:178.080000pt;}
.x27_c00374{left:180.480000pt;}
.x1_c00374{left:181.680000pt;}
.x4c_c00374{left:186.480000pt;}
.x2f_c00374{left:187.680000pt;}
.x6_c00374{left:188.880000pt;}
.x37_c00374{left:191.280000pt;}
.x61_c00374{left:195.840000pt;}
.x28_c00374{left:198.960000pt;}
.x98_c00374{left:200.640000pt;}
.x7_c00374{left:203.280000pt;}
.x12_c00374{left:204.240000pt;}
.x45_c00374{left:205.920000pt;}
.x6b_c00374{left:208.320000pt;}
.xaf_c00374{left:210.480000pt;}
.x1d_c00374{left:211.440000pt;}
.x65_c00374{left:212.400000pt;}
.x99_c00374{left:213.840000pt;}
.xb4_c00374{left:215.760000pt;}
.x8c_c00374{left:219.120000pt;}
.x54_c00374{left:220.080000pt;}
.x5a_c00374{left:222.960000pt;}
.x4d_c00374{left:225.600000pt;}
.x1e_c00374{left:226.560000pt;}
.x78_c00374{left:228.240000pt;}
.x3d_c00374{left:231.120000pt;}
.x66_c00374{left:234.000000pt;}
.x73_c00374{left:235.200000pt;}
.x13_c00374{left:236.160000pt;}
.x86_c00374{left:239.760000pt;}
.x8d_c00374{left:241.440000pt;}
.x55_c00374{left:242.640000pt;}
.x30_c00374{left:243.600000pt;}
.x1f_c00374{left:248.400000pt;}
.x3e_c00374{left:250.080000pt;}
.x8_c00374{left:255.840000pt;}
.x38_c00374{left:258.000000pt;}
.x6c_c00374{left:259.680000pt;}
.x4e_c00374{left:264.960000pt;}
.x31_c00374{left:267.360000pt;}
.x20_c00374{left:270.000000pt;}
.x29_c00374{left:274.560000pt;}
.x94_c00374{left:276.960000pt;}
.x14_c00374{left:278.880000pt;}
.x56_c00374{left:282.000000pt;}
.x3f_c00374{left:283.920000pt;}
.x2a_c00374{left:287.520000pt;}
.x95_c00374{left:289.920000pt;}
.x74_c00374{left:291.840000pt;}
.x9a_c00374{left:296.400000pt;}
.x9_c00374{left:297.360000pt;}
.x9d_c00374{left:298.800000pt;}
.x2_c00374{left:300.480000pt;}
.x4f_c00374{left:302.880000pt;}
.xa4_c00374{left:304.320000pt;}
.x79_c00374{left:305.280000pt;}
.x21_c00374{left:306.960000pt;}
.x6d_c00374{left:307.920000pt;}
.x7e_c00374{left:313.920000pt;}
.x62_c00374{left:318.000000pt;}
.x67_c00374{left:319.440000pt;}
.x50_c00374{left:320.640000pt;}
.x32_c00374{left:323.760000pt;}
.x9e_c00374{left:326.640000pt;}
.x3_c00374{left:327.600000pt;}
.x22_c00374{left:329.520000pt;}
.x2b_c00374{left:331.920000pt;}
.x57_c00374{left:334.320000pt;}
.x8e_c00374{left:336.720000pt;}
.x5b_c00374{left:338.880000pt;}
.x15_c00374{left:339.840000pt;}
.x7a_c00374{left:342.480000pt;}
.xa_c00374{left:345.360000pt;}
.x46_c00374{left:348.480000pt;}
.x82_c00374{left:350.160000pt;}
.x87_c00374{left:351.600000pt;}
.x16_c00374{left:353.280000pt;}
.x5c_c00374{left:355.680000pt;}
.x6e_c00374{left:357.840000pt;}
.x39_c00374{left:362.160000pt;}
.x51_c00374{left:364.320000pt;}
.x17_c00374{left:365.280000pt;}
.x40_c00374{left:366.720000pt;}
.x2c_c00374{left:372.000000pt;}
.x8f_c00374{left:374.160000pt;}
.x9b_c00374{left:375.840000pt;}
.xa9_c00374{left:376.800000pt;}
.x33_c00374{left:379.920000pt;}
.xb_c00374{left:382.800000pt;}
.x75_c00374{left:384.480000pt;}
.x4_c00374{left:386.640000pt;}
.x5d_c00374{left:389.520000pt;}
.x47_c00374{left:391.440000pt;}
.x41_c00374{left:392.640000pt;}
.x96_c00374{left:395.760000pt;}
.x90_c00374{left:397.680000pt;}
.x6f_c00374{left:400.320000pt;}
.x83_c00374{left:401.280000pt;}
.x7f_c00374{left:403.680000pt;}
.x88_c00374{left:407.280000pt;}
.xa1_c00374{left:412.560000pt;}
.xc_c00374{left:414.960000pt;}
.x9f_c00374{left:417.120000pt;}
.x23_c00374{left:420.000000pt;}
.x52_c00374{left:421.200000pt;}
.x5e_c00374{left:423.600000pt;}
.x2d_c00374{left:426.000000pt;}
.x42_c00374{left:427.920000pt;}
.x9c_c00374{left:429.600000pt;}
.x68_c00374{left:431.040000pt;}
.x91_c00374{left:434.640000pt;}
.x5f_c00374{left:436.320000pt;}
.xd_c00374{left:438.240000pt;}
.x24_c00374{left:442.320000pt;}
.x70_c00374{left:443.520000pt;}
.xaa_c00374{left:444.720000pt;}
.xb0_c00374{left:445.680000pt;}
.x43_c00374{left:449.280000pt;}
.xa5_c00374{left:450.720000pt;}
.x3a_c00374{left:452.400000pt;}
.x34_c00374{left:453.840000pt;}
.x48_c00374{left:455.280000pt;}
.xb1_c00374{left:456.240000pt;}
.x18_c00374{left:460.560000pt;}
.x58_c00374{left:464.160000pt;}
.x89_c00374{left:468.000000pt;}
.x7b_c00374{left:471.600000pt;}
.xa6_c00374{left:473.040000pt;}
.x49_c00374{left:480.000000pt;}
.x25_c00374{left:482.880000pt;}
.xa2_c00374{left:485.520000pt;}
.x71_c00374{left:487.440000pt;}
.x60_c00374{left:489.120000pt;}
.x35_c00374{left:491.760000pt;}
.x84_c00374{left:494.160000pt;}
.x19_c00374{left:495.840000pt;}
.x69_c00374{left:498.480000pt;}
.x76_c00374{left:500.160000pt;}
.xe_c00374{left:503.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m59_c00375{transform:matrix(0.048545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048545,0.000000,0.000000,0.250000,0,0);}
.m2d_c00375{transform:matrix(0.131945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131945,0.000000,0.000000,0.250000,0,0);}
.m103_c00375{transform:matrix(0.134655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134655,0.000000,0.000000,0.250000,0,0);}
.m100_c00375{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);}
.m6b_c00375{transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{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);}
.m49_c00375{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.m89_c00375{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);}
.mad_c00375{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);}
.mb1_c00375{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00375{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);}
.m22_c00375{transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);}
.mb9_c00375{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);}
.m4d_c00375{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);}
.mf0_c00375{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);}
.m19_c00375{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);}
.mfc_c00375{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);}
.ma6_c00375{transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);}
.m120_c00375{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);}
.m128_c00375{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);}
.m25_c00375{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);}
.mb6_c00375{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);}
.md2_c00375{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);}
.m71_c00375{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);}
.m1_c00375{transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00375{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);}
.m6d_c00375{transform:matrix(0.155020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155020,0.000000,0.000000,0.250000,0,0);}
.m45_c00375{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m61_c00375{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);}
.m130_c00375{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m3e_c00375{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);}
.md4_c00375{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);}
.m2b_c00375{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);}
.m133_c00375{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);}
.mb5_c00375{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);}
.mc7_c00375{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);}
.m80_c00375{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{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);}
.md7_c00375{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);}
.m7a_c00375{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);}
.m114_c00375{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);}
.m117_c00375{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);}
.m126_c00375{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);}
.m9a_c00375{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);}
.m9f_c00375{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);}
.m4f_c00375{transform:matrix(0.162370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162370,0.000000,0.000000,0.250000,0,0);}
.m105_c00375{transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);}
.m9b_c00375{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);}
.mc5_c00375{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);}
.m12d_c00375{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);}
.m118_c00375{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);}
.mfa_c00375{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m69_c00375{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);}
.m68_c00375{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);}
.m1b_c00375{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);}
.mba_c00375{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);}
.mf6_c00375{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);}
.mf1_c00375{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{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);}
.mb4_c00375{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);}
.m10d_c00375{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m3c_c00375{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);}
.mb3_c00375{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);}
.m41_c00375{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);}
.m21_c00375{transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);}
.m83_c00375{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);}
.m121_c00375{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);}
.m37_c00375{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);}
.mbc_c00375{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);}
.mf2_c00375{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);}
.m23_c00375{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);}
.md5_c00375{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);}
.md3_c00375{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);}
.m3a_c00375{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);}
.mc4_c00375{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);}
.maf_c00375{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);}
.m123_c00375{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);}
.m7_c00375{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);}
.me3_c00375{transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{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);}
.me0_c00375{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);}
.mcb_c00375{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);}
.med_c00375{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);}
.m66_c00375{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);}
.m97_c00375{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);}
.mf9_c00375{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);}
.m2a_c00375{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);}
.m108_c00375{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);}
.m1f_c00375{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);}
.m7b_c00375{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);}
.m50_c00375{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);}
.m62_c00375{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);}
.m67_c00375{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);}
.mab_c00375{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);}
.m127_c00375{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);}
.meb_c00375{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);}
.md0_c00375{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);}
.mce_c00375{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);}
.mfd_c00375{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);}
.m113_c00375{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);}
.m135_c00375{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);}
.m3b_c00375{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);}
.m134_c00375{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);}
.m116_c00375{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);}
.m4a_c00375{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);}
.m86_c00375{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);}
.ma4_c00375{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);}
.m12a_c00375{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);}
.m8d_c00375{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);}
.m11e_c00375{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);}
.m26_c00375{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);}
.mc9_c00375{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);}
.m10c_c00375{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);}
.mc0_c00375{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);}
.m52_c00375{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);}
.mec_c00375{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.mc6_c00375{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);}
.m11c_c00375{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);}
.m115_c00375{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);}
.m11d_c00375{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);}
.mf3_c00375{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);}
.ma9_c00375{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);}
.m51_c00375{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);}
.mbf_c00375{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);}
.mc2_c00375{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);}
.me8_c00375{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);}
.m124_c00375{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);}
.m47_c00375{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);}
.m1a_c00375{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);}
.mae_c00375{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);}
.m13c_c00375{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);}
.m8c_c00375{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);}
.m48_c00375{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);}
.m112_c00375{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);}
.m17_c00375{transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183416,-0.001284,0.001750,0.249994,0,0);}
.m11b_c00375{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);}
.m9e_c00375{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);}
.m104_c00375{transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);}
.m101_c00375{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);}
.m96_c00375{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);}
.mf5_c00375{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);}
.mc8_c00375{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);}
.ma5_c00375{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);}
.m5e_c00375{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);}
.m6e_c00375{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);}
.m10a_c00375{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_c00375{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);}
.m84_c00375{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);}
.m122_c00375{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);}
.m8e_c00375{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);}
.m2f_c00375{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);}
.m131_c00375{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);}
.m18_c00375{transform:matrix(0.187435,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187435,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187435,-0.001312,0.001750,0.249994,0,0);}
.m3d_c00375{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);}
.mef_c00375{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);}
.m85_c00375{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);}
.m12f_c00375{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);}
.m35_c00375{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);}
.mfe_c00375{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);}
.m93_c00375{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);}
.m9c_c00375{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);}
.mb7_c00375{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);}
.m5d_c00375{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);}
.mcc_c00375{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);}
.m6c_c00375{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);}
.m43_c00375{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);}
.m8f_c00375{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);}
.m6_c00375{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);}
.mc1_c00375{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);}
.m2c_c00375{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);}
.md9_c00375{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);}
.maa_c00375{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);}
.mcd_c00375{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.mfb_c00375{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);}
.mc_c00375{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);}
.m44_c00375{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);}
.ma3_c00375{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);}
.md6_c00375{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);}
.m2e_c00375{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);}
.m6f_c00375{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);}
.md1_c00375{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);}
.mb0_c00375{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);}
.m5c_c00375{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);}
.me1_c00375{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);}
.m33_c00375{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);}
.mdb_c00375{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);}
.m10b_c00375{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);}
.m7f_c00375{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);}
.m65_c00375{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);}
.mbd_c00375{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);}
.m82_c00375{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);}
.m7d_c00375{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);}
.m53_c00375{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);}
.m28_c00375{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);}
.m106_c00375{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);}
.m129_c00375{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);}
.mbe_c00375{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);}
.m132_c00375{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);}
.m139_c00375{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);}
.mb2_c00375{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m57_c00375{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);}
.mde_c00375{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);}
.m46_c00375{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);}
.mf4_c00375{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);}
.m56_c00375{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);}
.ma8_c00375{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);}
.m12c_c00375{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);}
.m110_c00375{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);}
.m109_c00375{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);}
.mf8_c00375{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);}
.m8_c00375{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);}
.m95_c00375{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);}
.m60_c00375{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);}
.m27_c00375{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);}
.mc3_c00375{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);}
.m8b_c00375{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);}
.m73_c00375{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);}
.m7e_c00375{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);}
.m72_c00375{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);}
.m137_c00375{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);}
.m3f_c00375{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);}
.m5f_c00375{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);}
.m78_c00375{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);}
.m55_c00375{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);}
.m11_c00375{transform:matrix(0.200905,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200905,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200905,-0.001406,0.001750,0.249994,0,0);}
.mca_c00375{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);}
.m111_c00375{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);}
.m74_c00375{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);}
.m136_c00375{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);}
.ma2_c00375{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);}
.m125_c00375{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);}
.m81_c00375{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);}
.m32_c00375{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);}
.md_c00375{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);}
.me6_c00375{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);}
.me5_c00375{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);}
.m13a_c00375{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);}
.m88_c00375{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);}
.mdc_c00375{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);}
.ma7_c00375{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);}
.m4_c00375{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);}
.ma1_c00375{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);}
.mcf_c00375{transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);}
.m40_c00375{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);}
.m5_c00375{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);}
.m102_c00375{transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);}
.m77_c00375{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);}
.mf_c00375{transform:matrix(0.205445,-0.001438,0.001750,0.249994,0,0);-ms-transform:matrix(0.205445,-0.001438,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205445,-0.001438,0.001750,0.249994,0,0);}
.mda_c00375{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);}
.m20_c00375{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);}
.m30_c00375{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);}
.m119_c00375{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m92_c00375{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);}
.m98_c00375{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);}
.mdd_c00375{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);}
.m1c_c00375{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);}
.m11a_c00375{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);}
.m1d_c00375{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);}
.md8_c00375{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);}
.m64_c00375{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);}
.m58_c00375{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);}
.me7_c00375{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);}
.m36_c00375{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);}
.m29_c00375{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);}
.mea_c00375{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);}
.m4b_c00375{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);}
.m31_c00375{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);}
.m4c_c00375{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);}
.m3_c00375{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);}
.m13_c00375{transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);-ms-transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);}
.m12e_c00375{transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);}
.mff_c00375{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);}
.m12b_c00375{transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.214475,-0.001501,0.001750,0.249994,0,0);-ms-transform:matrix(0.214475,-0.001501,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214475,-0.001501,0.001750,0.249994,0,0);}
.m10f_c00375{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);}
.m13b_c00375{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);}
.m10e_c00375{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);}
.m16_c00375{transform:matrix(0.215585,-0.001509,0.001750,0.249994,0,0);-ms-transform:matrix(0.215585,-0.001509,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215585,-0.001509,0.001750,0.249994,0,0);}
.m79_c00375{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);}
.mdf_c00375{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);}
.m7c_c00375{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);}
.me2_c00375{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);}
.me4_c00375{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m138_c00375{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);}
.m15_c00375{transform:matrix(0.220790,-0.001546,0.001750,0.249994,0,0);-ms-transform:matrix(0.220790,-0.001546,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220790,-0.001546,0.001750,0.249994,0,0);}
.m14_c00375{transform:matrix(0.221055,-0.001547,0.001750,0.249994,0,0);-ms-transform:matrix(0.221055,-0.001547,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221055,-0.001547,0.001750,0.249994,0,0);}
.mb_c00375{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);}
.m76_c00375{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);}
.m91_c00375{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00375{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);}
.mbb_c00375{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);}
.m34_c00375{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);}
.m87_c00375{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);}
.mb8_c00375{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m107_c00375{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);}
.m12_c00375{transform:matrix(0.237974,-0.001666,0.001750,0.249994,0,0);-ms-transform:matrix(0.237974,-0.001666,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237974,-0.001666,0.001750,0.249994,0,0);}
.m11f_c00375{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);}
.ma0_c00375{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);}
.mee_c00375{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.240564,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240564,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240564,-0.001684,0.001750,0.249994,0,0);}
.m5b_c00375{transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);}
.m42_c00375{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);}
.m63_c00375{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);}
.m24_c00375{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m90_c00375{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);}
.m75_c00375{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);}
.m6a_c00375{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);}
.m9d_c00375{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m94_c00375{transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.me9_c00375{transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);}
.m13d_c00375{transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);}
.m70_c00375{transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290140,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{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);}
.m8a_c00375{transform:matrix(0.388225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388225,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.440180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440180,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.983565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.983565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.983565,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;}
.fsc_c00375{font-size:23.100000px;}
.fs8_c00375{font-size:60.900000px;}
.fs3_c00375{font-size:61.951518px;}
.fs5_c00375{font-size:63.000000px;}
.fs2_c00375{font-size:64.050000px;}
.fsa_c00375{font-size:66.150000px;}
.fs9_c00375{font-size:68.250000px;}
.fs4_c00375{font-size:69.300000px;}
.fs6_c00375{font-size:70.350000px;}
.fsd_c00375{font-size:71.400000px;}
.fs7_c00375{font-size:72.450000px;}
.fsb_c00375{font-size:73.500000px;}
.fs1_c00375{font-size:134.400000px;}
.y0_c00375{bottom:0.000000px;}
.y2b_c00375{bottom:162.624000px;}
.y2a_c00375{bottom:184.744500px;}
.y29_c00375{bottom:207.721500px;}
.y28_c00375{bottom:230.944500px;}
.y27_c00375{bottom:253.636500px;}
.y26_c00375{bottom:276.025500px;}
.y25_c00375{bottom:284.580000px;}
.y24_c00375{bottom:297.696000px;}
.y23_c00375{bottom:321.394500px;}
.y22_c00375{bottom:344.313000px;}
.y21_c00375{bottom:366.753000px;}
.y20_c00375{bottom:389.973000px;}
.y1f_c00375{bottom:412.683000px;}
.y1e_c00375{bottom:435.364500px;}
.y1d_c00375{bottom:458.046000px;}
.y1c_c00375{bottom:481.189500px;}
.y1b_c00375{bottom:503.581500px;}
.y1a_c00375{bottom:526.261500px;}
.y19_c00375{bottom:549.243000px;}
.y18_c00375{bottom:571.890000px;}
.y17_c00375{bottom:595.953000px;}
.y16_c00375{bottom:618.355500px;}
.y15_c00375{bottom:641.281500px;}
.y14_c00375{bottom:664.422000px;}
.y13_c00375{bottom:687.118500px;}
.y12_c00375{bottom:710.040000px;}
.y11_c00375{bottom:732.687000px;}
.y10_c00375{bottom:755.304000px;}
.yf_c00375{bottom:777.954000px;}
.y4_c00375{bottom:799.534500px;}
.y5_c00375{bottom:799.993854px;}
.y6_c00375{bottom:800.362341px;}
.y7_c00375{bottom:800.651427px;}
.y8_c00375{bottom:800.893557px;}
.y9_c00375{bottom:801.263966px;}
.ya_c00375{bottom:801.422726px;}
.yb_c00375{bottom:801.849634px;}
.yc_c00375{bottom:802.136946px;}
.yd_c00375{bottom:802.428174px;}
.ye_c00375{bottom:802.599923px;}
.y3_c00375{bottom:823.342500px;}
.y2_c00375{bottom:869.799000px;}
.y1_c00375{bottom:912.148500px;}
.h2_c00375{height:22.050000px;}
.he_c00375{height:23.100000px;}
.ha_c00375{height:60.900000px;}
.h5_c00375{height:61.951518px;}
.h7_c00375{height:63.000000px;}
.h4_c00375{height:64.050000px;}
.hc_c00375{height:66.150000px;}
.hb_c00375{height:68.250000px;}
.h6_c00375{height:69.300000px;}
.h8_c00375{height:70.350000px;}
.hf_c00375{height:71.400000px;}
.h9_c00375{height:72.450000px;}
.hd_c00375{height:73.500000px;}
.h3_c00375{height:134.400000px;}
.h0_c00375{height:1008.450000px;}
.h1_c00375{height:1008.750000px;}
.w1_c00375{width:689.250000px;}
.w0_c00375{width:689.550000px;}
.x0_c00375{left:0.000000px;}
.x74_c00375{left:138.240000px;}
.x4d_c00375{left:139.860000px;}
.xa4_c00375{left:141.750000px;}
.x4_c00375{left:150.390000px;}
.x2_c00375{left:152.280000px;}
.xb1_c00375{left:153.630000px;}
.x7e_c00375{left:172.800000px;}
.x1d_c00375{left:174.960000px;}
.x28_c00375{left:176.310000px;}
.x92_c00375{left:180.630000px;}
.x6b_c00375{left:184.680000px;}
.x17_c00375{left:186.570000px;}
.x56_c00375{left:191.430000px;}
.x3c_c00375{left:192.780000px;}
.x4e_c00375{left:194.670000px;}
.x29_c00375{left:195.750000px;}
.x7f_c00375{left:199.260000px;}
.x93_c00375{left:206.820000px;}
.x8f_c00375{left:209.790000px;}
.x34_c00375{left:212.760000px;}
.x75_c00375{left:214.110000px;}
.xf_c00375{left:216.373500px;}
.xa9_c00375{left:218.430000px;}
.x57_c00375{left:220.050000px;}
.x5_c00375{left:221.400000px;}
.x78_c00375{left:226.800000px;}
.x4a_c00375{left:228.150000px;}
.x1e_c00375{left:229.770000px;}
.x9d_c00375{left:232.470000px;}
.x68_c00375{left:233.820000px;}
.x3_c00375{left:236.250000px;}
.x64_c00375{left:238.410000px;}
.x18_c00375{left:242.460000px;}
.x5d_c00375{left:245.700000px;}
.x9e_c00375{left:247.320000px;}
.x2a_c00375{left:248.940000px;}
.x42_c00375{left:250.830000px;}
.x35_c00375{left:254.070000px;}
.x1f_c00375{left:255.960000px;}
.x82_c00375{left:258.120000px;}
.x76_c00375{left:259.200000px;}
.x6c_c00375{left:260.550000px;}
.xae_c00375{left:263.790000px;}
.x10_c00375{left:269.014500px;}
.x65_c00375{left:271.620000px;}
.x4f_c00375{left:275.670000px;}
.x6_c00375{left:277.290000px;}
.x20_c00375{left:281.610000px;}
.x1_c00375{left:282.690000px;}
.x6d_c00375{left:284.310000px;}
.xa5_c00375{left:285.390000px;}
.x43_c00375{left:287.820000px;}
.xaa_c00375{left:288.900000px;}
.xaf_c00375{left:290.790000px;}
.x2b_c00375{left:292.680000px;}
.x83_c00375{left:294.030000px;}
.x36_c00375{left:296.460000px;}
.x9a_c00375{left:297.810000px;}
.x3d_c00375{left:299.430000px;}
.xb3_c00375{left:301.590000px;}
.x7_c00375{left:305.100000px;}
.x50_c00375{left:307.530000px;}
.x11_c00375{left:310.312500px;}
.x96_c00375{left:314.010000px;}
.x79_c00375{left:316.170000px;}
.x5e_c00375{left:318.600000px;}
.x77_c00375{left:321.030000px;}
.x19_c00375{left:322.920000px;}
.x88_c00375{left:324.270000px;}
.x66_c00375{left:331.290000px;}
.x2c_c00375{left:332.910000px;}
.x97_c00375{left:334.800000px;}
.x80_c00375{left:336.690000px;}
.x9f_c00375{left:337.770000px;}
.x21_c00375{left:339.930000px;}
.x58_c00375{left:342.090000px;}
.x8_c00375{left:344.250000px;}
.x3e_c00375{left:347.760000px;}
.xb0_c00375{left:352.890000px;}
.x89_c00375{left:355.860000px;}
.x44_c00375{left:357.750000px;}
.x37_c00375{left:363.420000px;}
.x9_c00375{left:367.740000px;}
.x84_c00375{left:370.440000px;}
.x22_c00375{left:372.330000px;}
.x51_c00375{left:376.650000px;}
.x4b_c00375{left:381.780000px;}
.x6e_c00375{left:384.480000px;}
.x9b_c00375{left:386.910000px;}
.x2d_c00375{left:389.880000px;}
.x7a_c00375{left:391.770000px;}
.x98_c00375{left:393.660000px;}
.xb2_c00375{left:395.550000px;}
.x12_c00375{left:397.818000px;}
.x3f_c00375{left:399.600000px;}
.x59_c00375{left:401.760000px;}
.x6f_c00375{left:404.460000px;}
.x2e_c00375{left:408.240000px;}
.x1a_c00375{left:410.670000px;}
.x7b_c00375{left:413.910000px;}
.x23_c00375{left:415.260000px;}
.x85_c00375{left:417.150000px;}
.xa_c00375{left:421.470000px;}
.xab_c00375{left:423.630000px;}
.x90_c00375{left:425.250000px;}
.x8a_c00375{left:427.140000px;}
.x69_c00375{left:431.460000px;}
.x45_c00375{left:433.080000px;}
.x2f_c00375{left:434.430000px;}
.x1b_c00375{left:436.050000px;}
.x5a_c00375{left:437.130000px;}
.x52_c00375{left:438.750000px;}
.x4c_c00375{left:441.180000px;}
.x7c_c00375{left:443.610000px;}
.x86_c00375{left:445.230000px;}
.xb_c00375{left:447.930000px;}
.x38_c00375{left:449.280000px;}
.x8b_c00375{left:455.490000px;}
.x9c_c00375{left:458.190000px;}
.x94_c00375{left:459.810000px;}
.x5f_c00375{left:461.700000px;}
.xac_c00375{left:463.590000px;}
.x53_c00375{left:466.290000px;}
.xa0_c00375{left:469.800000px;}
.x24_c00375{left:473.580000px;}
.xc_c00375{left:476.820000px;}
.x39_c00375{left:478.440000px;}
.x13_c00375{left:481.485000px;}
.x70_c00375{left:484.920000px;}
.x91_c00375{left:488.970000px;}
.xa6_c00375{left:493.020000px;}
.x5b_c00375{left:495.450000px;}
.xa1_c00375{left:497.340000px;}
.x25_c00375{left:500.580000px;}
.x30_c00375{left:501.930000px;}
.x46_c00375{left:505.440000px;}
.x60_c00375{left:508.950000px;}
.x71_c00375{left:513.270000px;}
.x1c_c00375{left:517.050000px;}
.x14_c00375{left:522.529500px;}
.xb4_c00375{left:524.610000px;}
.x61_c00375{left:527.040000px;}
.x47_c00375{left:528.660000px;}
.xa7_c00375{left:530.010000px;}
.x31_c00375{left:531.360000px;}
.x87_c00375{left:533.520000px;}
.x3a_c00375{left:535.410000px;}
.xa2_c00375{left:536.490000px;}
.x8c_c00375{left:541.620000px;}
.x54_c00375{left:542.700000px;}
.x72_c00375{left:544.590000px;}
.xd_c00375{left:546.750000px;}
.x26_c00375{left:548.370000px;}
.x99_c00375{left:562.410000px;}
.x15_c00375{left:564.133500px;}
.x5c_c00375{left:567.270000px;}
.x8d_c00375{left:569.430000px;}
.x48_c00375{left:571.590000px;}
.x40_c00375{left:573.480000px;}
.x62_c00375{left:576.180000px;}
.x95_c00375{left:577.260000px;}
.x6a_c00375{left:580.230000px;}
.xa3_c00375{left:582.120000px;}
.x16_c00375{left:588.669000px;}
.xa8_c00375{left:592.650000px;}
.x41_c00375{left:593.730000px;}
.xad_c00375{left:595.080000px;}
.x7d_c00375{left:597.510000px;}
.x67_c00375{left:599.400000px;}
.x32_c00375{left:601.290000px;}
.x27_c00375{left:603.990000px;}
.x8e_c00375{left:605.340000px;}
.x81_c00375{left:606.420000px;}
.x3b_c00375{left:607.770000px;}
.xe_c00375{left:612.900000px;}
.x63_c00375{left:614.520000px;}
.x55_c00375{left:616.140000px;}
.x33_c00375{left:619.650000px;}
.x73_c00375{left:622.890000px;}
.x49_c00375{left:640.170000px;}
@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;}
.fsc_c00375{font-size:20.533333pt;}
.fs8_c00375{font-size:54.133333pt;}
.fs3_c00375{font-size:55.068016pt;}
.fs5_c00375{font-size:56.000000pt;}
.fs2_c00375{font-size:56.933333pt;}
.fsa_c00375{font-size:58.800000pt;}
.fs9_c00375{font-size:60.666667pt;}
.fs4_c00375{font-size:61.600000pt;}
.fs6_c00375{font-size:62.533333pt;}
.fsd_c00375{font-size:63.466667pt;}
.fs7_c00375{font-size:64.400000pt;}
.fsb_c00375{font-size:65.333333pt;}
.fs1_c00375{font-size:119.466667pt;}
.y0_c00375{bottom:0.000000pt;}
.y2b_c00375{bottom:144.554667pt;}
.y2a_c00375{bottom:164.217333pt;}
.y29_c00375{bottom:184.641333pt;}
.y28_c00375{bottom:205.284000pt;}
.y27_c00375{bottom:225.454667pt;}
.y26_c00375{bottom:245.356000pt;}
.y25_c00375{bottom:252.960000pt;}
.y24_c00375{bottom:264.618667pt;}
.y23_c00375{bottom:285.684000pt;}
.y22_c00375{bottom:306.056000pt;}
.y21_c00375{bottom:326.002667pt;}
.y20_c00375{bottom:346.642667pt;}
.y1f_c00375{bottom:366.829333pt;}
.y1e_c00375{bottom:386.990667pt;}
.y1d_c00375{bottom:407.152000pt;}
.y1c_c00375{bottom:427.724000pt;}
.y1b_c00375{bottom:447.628000pt;}
.y1a_c00375{bottom:467.788000pt;}
.y19_c00375{bottom:488.216000pt;}
.y18_c00375{bottom:508.346667pt;}
.y17_c00375{bottom:529.736000pt;}
.y16_c00375{bottom:549.649333pt;}
.y15_c00375{bottom:570.028000pt;}
.y14_c00375{bottom:590.597333pt;}
.y13_c00375{bottom:610.772000pt;}
.y12_c00375{bottom:631.146667pt;}
.y11_c00375{bottom:651.277333pt;}
.y10_c00375{bottom:671.381333pt;}
.yf_c00375{bottom:691.514667pt;}
.y4_c00375{bottom:710.697333pt;}
.y5_c00375{bottom:711.105648pt;}
.y6_c00375{bottom:711.433192pt;}
.y7_c00375{bottom:711.690157pt;}
.y8_c00375{bottom:711.905384pt;}
.y9_c00375{bottom:712.234636pt;}
.ya_c00375{bottom:712.375756pt;}
.yb_c00375{bottom:712.755231pt;}
.yc_c00375{bottom:713.010619pt;}
.yd_c00375{bottom:713.269488pt;}
.ye_c00375{bottom:713.422153pt;}
.y3_c00375{bottom:731.860000pt;}
.y2_c00375{bottom:773.154667pt;}
.y1_c00375{bottom:810.798667pt;}
.h2_c00375{height:19.600000pt;}
.he_c00375{height:20.533333pt;}
.ha_c00375{height:54.133333pt;}
.h5_c00375{height:55.068016pt;}
.h7_c00375{height:56.000000pt;}
.h4_c00375{height:56.933333pt;}
.hc_c00375{height:58.800000pt;}
.hb_c00375{height:60.666667pt;}
.h6_c00375{height:61.600000pt;}
.h8_c00375{height:62.533333pt;}
.hf_c00375{height:63.466667pt;}
.h9_c00375{height:64.400000pt;}
.hd_c00375{height:65.333333pt;}
.h3_c00375{height:119.466667pt;}
.h0_c00375{height:896.400000pt;}
.h1_c00375{height:896.666667pt;}
.w1_c00375{width:612.666667pt;}
.w0_c00375{width:612.933333pt;}
.x0_c00375{left:0.000000pt;}
.x74_c00375{left:122.880000pt;}
.x4d_c00375{left:124.320000pt;}
.xa4_c00375{left:126.000000pt;}
.x4_c00375{left:133.680000pt;}
.x2_c00375{left:135.360000pt;}
.xb1_c00375{left:136.560000pt;}
.x7e_c00375{left:153.600000pt;}
.x1d_c00375{left:155.520000pt;}
.x28_c00375{left:156.720000pt;}
.x92_c00375{left:160.560000pt;}
.x6b_c00375{left:164.160000pt;}
.x17_c00375{left:165.840000pt;}
.x56_c00375{left:170.160000pt;}
.x3c_c00375{left:171.360000pt;}
.x4e_c00375{left:173.040000pt;}
.x29_c00375{left:174.000000pt;}
.x7f_c00375{left:177.120000pt;}
.x93_c00375{left:183.840000pt;}
.x8f_c00375{left:186.480000pt;}
.x34_c00375{left:189.120000pt;}
.x75_c00375{left:190.320000pt;}
.xf_c00375{left:192.332000pt;}
.xa9_c00375{left:194.160000pt;}
.x57_c00375{left:195.600000pt;}
.x5_c00375{left:196.800000pt;}
.x78_c00375{left:201.600000pt;}
.x4a_c00375{left:202.800000pt;}
.x1e_c00375{left:204.240000pt;}
.x9d_c00375{left:206.640000pt;}
.x68_c00375{left:207.840000pt;}
.x3_c00375{left:210.000000pt;}
.x64_c00375{left:211.920000pt;}
.x18_c00375{left:215.520000pt;}
.x5d_c00375{left:218.400000pt;}
.x9e_c00375{left:219.840000pt;}
.x2a_c00375{left:221.280000pt;}
.x42_c00375{left:222.960000pt;}
.x35_c00375{left:225.840000pt;}
.x1f_c00375{left:227.520000pt;}
.x82_c00375{left:229.440000pt;}
.x76_c00375{left:230.400000pt;}
.x6c_c00375{left:231.600000pt;}
.xae_c00375{left:234.480000pt;}
.x10_c00375{left:239.124000pt;}
.x65_c00375{left:241.440000pt;}
.x4f_c00375{left:245.040000pt;}
.x6_c00375{left:246.480000pt;}
.x20_c00375{left:250.320000pt;}
.x1_c00375{left:251.280000pt;}
.x6d_c00375{left:252.720000pt;}
.xa5_c00375{left:253.680000pt;}
.x43_c00375{left:255.840000pt;}
.xaa_c00375{left:256.800000pt;}
.xaf_c00375{left:258.480000pt;}
.x2b_c00375{left:260.160000pt;}
.x83_c00375{left:261.360000pt;}
.x36_c00375{left:263.520000pt;}
.x9a_c00375{left:264.720000pt;}
.x3d_c00375{left:266.160000pt;}
.xb3_c00375{left:268.080000pt;}
.x7_c00375{left:271.200000pt;}
.x50_c00375{left:273.360000pt;}
.x11_c00375{left:275.833333pt;}
.x96_c00375{left:279.120000pt;}
.x79_c00375{left:281.040000pt;}
.x5e_c00375{left:283.200000pt;}
.x77_c00375{left:285.360000pt;}
.x19_c00375{left:287.040000pt;}
.x88_c00375{left:288.240000pt;}
.x66_c00375{left:294.480000pt;}
.x2c_c00375{left:295.920000pt;}
.x97_c00375{left:297.600000pt;}
.x80_c00375{left:299.280000pt;}
.x9f_c00375{left:300.240000pt;}
.x21_c00375{left:302.160000pt;}
.x58_c00375{left:304.080000pt;}
.x8_c00375{left:306.000000pt;}
.x3e_c00375{left:309.120000pt;}
.xb0_c00375{left:313.680000pt;}
.x89_c00375{left:316.320000pt;}
.x44_c00375{left:318.000000pt;}
.x37_c00375{left:323.040000pt;}
.x9_c00375{left:326.880000pt;}
.x84_c00375{left:329.280000pt;}
.x22_c00375{left:330.960000pt;}
.x51_c00375{left:334.800000pt;}
.x4b_c00375{left:339.360000pt;}
.x6e_c00375{left:341.760000pt;}
.x9b_c00375{left:343.920000pt;}
.x2d_c00375{left:346.560000pt;}
.x7a_c00375{left:348.240000pt;}
.x98_c00375{left:349.920000pt;}
.xb2_c00375{left:351.600000pt;}
.x12_c00375{left:353.616000pt;}
.x3f_c00375{left:355.200000pt;}
.x59_c00375{left:357.120000pt;}
.x6f_c00375{left:359.520000pt;}
.x2e_c00375{left:362.880000pt;}
.x1a_c00375{left:365.040000pt;}
.x7b_c00375{left:367.920000pt;}
.x23_c00375{left:369.120000pt;}
.x85_c00375{left:370.800000pt;}
.xa_c00375{left:374.640000pt;}
.xab_c00375{left:376.560000pt;}
.x90_c00375{left:378.000000pt;}
.x8a_c00375{left:379.680000pt;}
.x69_c00375{left:383.520000pt;}
.x45_c00375{left:384.960000pt;}
.x2f_c00375{left:386.160000pt;}
.x1b_c00375{left:387.600000pt;}
.x5a_c00375{left:388.560000pt;}
.x52_c00375{left:390.000000pt;}
.x4c_c00375{left:392.160000pt;}
.x7c_c00375{left:394.320000pt;}
.x86_c00375{left:395.760000pt;}
.xb_c00375{left:398.160000pt;}
.x38_c00375{left:399.360000pt;}
.x8b_c00375{left:404.880000pt;}
.x9c_c00375{left:407.280000pt;}
.x94_c00375{left:408.720000pt;}
.x5f_c00375{left:410.400000pt;}
.xac_c00375{left:412.080000pt;}
.x53_c00375{left:414.480000pt;}
.xa0_c00375{left:417.600000pt;}
.x24_c00375{left:420.960000pt;}
.xc_c00375{left:423.840000pt;}
.x39_c00375{left:425.280000pt;}
.x13_c00375{left:427.986667pt;}
.x70_c00375{left:431.040000pt;}
.x91_c00375{left:434.640000pt;}
.xa6_c00375{left:438.240000pt;}
.x5b_c00375{left:440.400000pt;}
.xa1_c00375{left:442.080000pt;}
.x25_c00375{left:444.960000pt;}
.x30_c00375{left:446.160000pt;}
.x46_c00375{left:449.280000pt;}
.x60_c00375{left:452.400000pt;}
.x71_c00375{left:456.240000pt;}
.x1c_c00375{left:459.600000pt;}
.x14_c00375{left:464.470667pt;}
.xb4_c00375{left:466.320000pt;}
.x61_c00375{left:468.480000pt;}
.x47_c00375{left:469.920000pt;}
.xa7_c00375{left:471.120000pt;}
.x31_c00375{left:472.320000pt;}
.x87_c00375{left:474.240000pt;}
.x3a_c00375{left:475.920000pt;}
.xa2_c00375{left:476.880000pt;}
.x8c_c00375{left:481.440000pt;}
.x54_c00375{left:482.400000pt;}
.x72_c00375{left:484.080000pt;}
.xd_c00375{left:486.000000pt;}
.x26_c00375{left:487.440000pt;}
.x99_c00375{left:499.920000pt;}
.x15_c00375{left:501.452000pt;}
.x5c_c00375{left:504.240000pt;}
.x8d_c00375{left:506.160000pt;}
.x48_c00375{left:508.080000pt;}
.x40_c00375{left:509.760000pt;}
.x62_c00375{left:512.160000pt;}
.x95_c00375{left:513.120000pt;}
.x6a_c00375{left:515.760000pt;}
.xa3_c00375{left:517.440000pt;}
.x16_c00375{left:523.261333pt;}
.xa8_c00375{left:526.800000pt;}
.x41_c00375{left:527.760000pt;}
.xad_c00375{left:528.960000pt;}
.x7d_c00375{left:531.120000pt;}
.x67_c00375{left:532.800000pt;}
.x32_c00375{left:534.480000pt;}
.x27_c00375{left:536.880000pt;}
.x8e_c00375{left:538.080000pt;}
.x81_c00375{left:539.040000pt;}
.x3b_c00375{left:540.240000pt;}
.xe_c00375{left:544.800000pt;}
.x63_c00375{left:546.240000pt;}
.x55_c00375{left:547.680000pt;}
.x33_c00375{left:550.800000pt;}
.x73_c00375{left:553.680000pt;}
.x49_c00375{left:569.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m85_c00376{transform:matrix(0.009365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009365,0.000000,0.000000,0.250000,0,0);}
.mec_c00376{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);}
.m72_c00376{transform:matrix(0.018620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018620,0.000000,0.000000,0.250000,0,0);}
.md7_c00376{transform:matrix(0.046915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046915,0.000000,0.000000,0.250000,0,0);}
.m73_c00376{transform:matrix(0.064420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064420,0.000000,0.000000,0.250000,0,0);}
.m5b_c00376{transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085795,0.000000,0.000000,0.250000,0,0);}
.m132_c00376{transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087605,0.000000,0.000000,0.250000,0,0);}
.me0_c00376{transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103965,0.000000,0.000000,0.250000,0,0);}
.m12c_c00376{transform:matrix(0.116980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116980,0.000000,0.000000,0.250000,0,0);}
.m159_c00376{transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);}
.m15c_c00376{transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.128619,0.001286,-0.002500,0.249988,0,0);-ms-transform:matrix(0.128619,0.001286,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.128619,0.001286,-0.002500,0.249988,0,0);}
.m70_c00376{transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134460,0.000000,0.000000,0.250000,0,0);}
.m71_c00376{transform:matrix(0.135955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135955,0.000000,0.000000,0.250000,0,0);}
.ma5_c00376{transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141565,0.000000,0.000000,0.250000,0,0);}
.m59_c00376{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m86_c00376{transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143445,0.000000,0.000000,0.250000,0,0);}
.m116_c00376{transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);}
.m5d_c00376{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.mae_c00376{transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);}
.mba_c00376{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.mf8_c00376{transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145945,0.000000,0.000000,0.250000,0,0);}
.ma0_c00376{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m130_c00376{transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);}
.mf3_c00376{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_c00376{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);}
.m13a_c00376{transform:matrix(0.149890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149890,0.000000,0.000000,0.250000,0,0);}
.m13b_c00376{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);}
.m17_c00376{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);}
.m96_c00376{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);}
.m111_c00376{transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151855,0.000000,0.000000,0.250000,0,0);}
.mc4_c00376{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);}
.m1b_c00376{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);}
.mef_c00376{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);}
.me5_c00376{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);}
.mf7_c00376{transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);}
.me9_c00376{transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00376{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);}
.m14_c00376{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);}
.m1f_c00376{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);}
.m12e_c00376{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);}
.mff_c00376{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);}
.md_c00376{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);}
.m77_c00376{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);}
.m11c_c00376{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);}
.m13_c00376{transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157620,0.000000,0.000000,0.250000,0,0);}
.mb9_c00376{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);}
.mfc_c00376{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);}
.mb7_c00376{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);}
.m98_c00376{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);}
.m43_c00376{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);}
.mf0_c00376{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);}
.m113_c00376{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);}
.m2c_c00376{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);}
.m9c_c00376{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);}
.m79_c00376{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);}
.m1_c00376{transform:matrix(0.162032,0.001620,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162032,0.001620,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162032,0.001620,-0.002500,0.249988,0,0);}
.m124_c00376{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00376{transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162685,0.000000,0.000000,0.250000,0,0);}
.mcc_c00376{transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);}
.m7a_c00376{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);}
.m11d_c00376{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);}
.m112_c00376{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);}
.ma3_c00376{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);}
.m7e_c00376{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);}
.m14e_c00376{transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);}
.me6_c00376{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);}
.mfb_c00376{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);}
.m12b_c00376{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);}
.m106_c00376{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);}
.m100_c00376{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);}
.m69_c00376{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);}
.m44_c00376{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);}
.m12_c00376{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);}
.mb0_c00376{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);}
.m49_c00376{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);}
.m4a_c00376{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);}
.m60_c00376{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);}
.m4b_c00376{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);}
.me7_c00376{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);}
.m45_c00376{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);}
.m31_c00376{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);}
.m126_c00376{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);}
.m38_c00376{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);}
.mf4_c00376{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);}
.m9a_c00376{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);}
.m1e_c00376{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);}
.me_c00376{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);}
.mcd_c00376{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);}
.mf6_c00376{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);}
.mc1_c00376{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);}
.m7c_c00376{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);}
.m29_c00376{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.ma6_c00376{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);}
.md5_c00376{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);}
.m57_c00376{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);}
.m56_c00376{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);}
.m13c_c00376{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);}
.m65_c00376{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);}
.m13e_c00376{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);}
.mad_c00376{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);}
.m122_c00376{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);}
.m2e_c00376{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);}
.m68_c00376{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);}
.m102_c00376{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);}
.m2b_c00376{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);}
.m1c_c00376{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);}
.m12d_c00376{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);}
.mb5_c00376{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);}
.mcb_c00376{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);}
.mb1_c00376{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);}
.m89_c00376{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);}
.ma_c00376{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);}
.mc8_c00376{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);}
.m11e_c00376{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);}
.m13d_c00376{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);}
.mf1_c00376{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m11b_c00376{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);}
.m47_c00376{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);}
.m54_c00376{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);}
.m8f_c00376{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);}
.md4_c00376{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);}
.ma2_c00376{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);}
.mfd_c00376{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);}
.me3_c00376{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);}
.m3e_c00376{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);}
.m33_c00376{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);}
.m129_c00376{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);}
.m24_c00376{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);}
.mdb_c00376{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);}
.ma4_c00376{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);}
.mf_c00376{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);}
.m18_c00376{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);}
.m7f_c00376{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);}
.mab_c00376{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);}
.me4_c00376{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);}
.m99_c00376{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);}
.mce_c00376{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);}
.m131_c00376{transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);}
.m51_c00376{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);}
.mac_c00376{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);}
.m40_c00376{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);}
.m110_c00376{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);}
.m103_c00376{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);}
.m67_c00376{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m50_c00376{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);}
.mfe_c00376{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);}
.m95_c00376{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);}
.m10a_c00376{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);}
.m32_c00376{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);}
.ma9_c00376{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);}
.mb8_c00376{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);}
.m127_c00376{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);}
.mca_c00376{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);}
.m118_c00376{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);}
.mee_c00376{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);}
.m3d_c00376{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);}
.m150_c00376{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);}
.m5c_c00376{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);}
.m28_c00376{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);}
.m138_c00376{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);}
.m10e_c00376{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);}
.m42_c00376{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_c00376{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);}
.m152_c00376{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);}
.m55_c00376{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);}
.mc_c00376{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);}
.m139_c00376{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);}
.mfa_c00376{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m133_c00376{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);}
.m52_c00376{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);}
.m144_c00376{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);}
.m14f_c00376{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);}
.m136_c00376{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);}
.m6c_c00376{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);}
.mbf_c00376{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);}
.m121_c00376{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);}
.m120_c00376{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);}
.m12a_c00376{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);}
.mc7_c00376{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);}
.m2f_c00376{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);}
.md0_c00376{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);}
.m10c_c00376{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);}
.m97_c00376{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);}
.m9b_c00376{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_c00376{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);}
.m109_c00376{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);}
.m2d_c00376{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);}
.m119_c00376{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);}
.m7d_c00376{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);}
.m8c_c00376{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);}
.md1_c00376{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);}
.m58_c00376{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);}
.mbd_c00376{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);}
.m157_c00376{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);}
.m153_c00376{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);}
.m53_c00376{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);}
.mf2_c00376{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);}
.maa_c00376{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);}
.mbb_c00376{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_c00376{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);}
.m20_c00376{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);}
.mb3_c00376{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);}
.m4e_c00376{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);}
.m46_c00376{transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);}
.m123_c00376{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);}
.m7b_c00376{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);}
.m94_c00376{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);}
.m108_c00376{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);}
.mda_c00376{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);}
.m15a_c00376{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);}
.me2_c00376{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);}
.m48_c00376{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);}
.m4c_c00376{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);}
.m11_c00376{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);}
.m84_c00376{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);}
.ma7_c00376{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);}
.mb4_c00376{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);}
.m2a_c00376{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);}
.m10_c00376{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);}
.m15_c00376{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);}
.m22_c00376{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);}
.m41_c00376{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);}
.m105_c00376{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);}
.m9d_c00376{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);}
.meb_c00376{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);}
.m3a_c00376{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);}
.m16_c00376{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);}
.m8a_c00376{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);}
.m14d_c00376{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);}
.m1a_c00376{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);}
.mc9_c00376{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);}
.mea_c00376{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);}
.m25_c00376{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);}
.m34_c00376{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);}
.m9_c00376{transform:matrix(0.208505,0.002085,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208505,0.002085,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208505,0.002085,-0.002500,0.249988,0,0);}
.m104_c00376{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);}
.m23_c00376{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);}
.md2_c00376{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);}
.m143_c00376{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);}
.m11a_c00376{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);}
.m90_c00376{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);}
.ma1_c00376{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);}
.m6b_c00376{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);}
.m78_c00376{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);}
.m5e_c00376{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);}
.m8b_c00376{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);}
.me8_c00376{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);}
.mf5_c00376{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);}
.mde_c00376{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);}
.m26_c00376{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);}
.m125_c00376{transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);}
.maf_c00376{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);}
.m155_c00376{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m5a_c00376{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);}
.m76_c00376{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);}
.m140_c00376{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);}
.m156_c00376{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);}
.ma8_c00376{transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);}
.m14b_c00376{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);}
.m5f_c00376{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);}
.m145_c00376{transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);}
.m117_c00376{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);}
.m91_c00376{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);}
.m10b_c00376{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);}
.mdc_c00376{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);}
.mc5_c00376{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);}
.m64_c00376{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);}
.mc0_c00376{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);}
.m87_c00376{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);}
.m14c_c00376{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);}
.md8_c00376{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);}
.m80_c00376{transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{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);}
.mf9_c00376{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);}
.m6d_c00376{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m134_c00376{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);}
.mcf_c00376{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);}
.md9_c00376{transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);}
.m141_c00376{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);}
.me1_c00376{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);}
.m81_c00376{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);}
.m3b_c00376{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);}
.m107_c00376{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);}
.m21_c00376{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);}
.m5_c00376{transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);}
.m66_c00376{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);}
.m63_c00376{transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);}
.md6_c00376{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);}
.m82_c00376{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);}
.m137_c00376{transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);}
.m114_c00376{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);}
.m10d_c00376{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);}
.m142_c00376{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);}
.m92_c00376{transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233845,0.000000,0.000000,0.250000,0,0);}
.mc2_c00376{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);}
.mb_c00376{transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);}
.mbc_c00376{transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);}
.mdd_c00376{transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);}
.m101_c00376{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);}
.m4d_c00376{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);}
.m37_c00376{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);}
.m19_c00376{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);}
.m61_c00376{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);}
.m83_c00376{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);}
.med_c00376{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00376{transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244360,0.000000,0.000000,0.250000,0,0);}
.m149_c00376{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);}
.m11f_c00376{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.mdf_c00376{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.mbe_c00376{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m14a_c00376{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);}
.m74_c00376{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);}
.m151_c00376{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.mc6_c00376{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);}
.m39_c00376{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.mb2_c00376{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m8d_c00376{transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.258467,0.002585,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258467,0.002585,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258467,0.002585,-0.002500,0.249988,0,0);}
.m12f_c00376{transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);}
.m13f_c00376{transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);}
.m35_c00376{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);}
.m62_c00376{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);}
.m4f_c00376{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);}
.m15b_c00376{transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262595,0.000000,0.000000,0.250000,0,0);}
.m75_c00376{transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.m147_c00376{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.m88_c00376{transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.275126,0.002751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275126,0.002751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275126,0.002751,-0.002500,0.249988,0,0);}
.m6e_c00376{transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);}
.m10f_c00376{transform:matrix(0.282475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282475,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.282681,0.002827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282681,0.002827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282681,0.002827,-0.002500,0.249988,0,0);}
.m9e_c00376{transform:matrix(0.283395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283395,0.000000,0.000000,0.250000,0,0);}
.m148_c00376{transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287845,0.000000,0.000000,0.250000,0,0);}
.m158_c00376{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);}
.m115_c00376{transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311120,0.000000,0.000000,0.250000,0,0);}
.m128_c00376{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);}
.m8e_c00376{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);}
.m3c_c00376{transform:matrix(0.358415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358415,0.000000,0.000000,0.250000,0,0);}
.m154_c00376{transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358835,0.000000,0.000000,0.250000,0,0);}
.m6a_c00376{transform:matrix(0.367065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367065,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.397835,0.003978,-0.002500,0.249988,0,0);-ms-transform:matrix(0.397835,0.003978,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.397835,0.003978,-0.002500,0.249988,0,0);}
.m93_c00376{transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);}
.m135_c00376{transform:matrix(0.477450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477450,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.520799,0.005208,-0.002500,0.249988,0,0);-ms-transform:matrix(0.520799,0.005208,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.520799,0.005208,-0.002500,0.249988,0,0);}
.m3_c00376{transform:matrix(0.566777,0.005668,-0.002500,0.249988,0,0);-ms-transform:matrix(0.566777,0.005668,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.566777,0.005668,-0.002500,0.249988,0,0);}
.m146_c00376{transform:matrix(0.624120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624120,0.000000,0.000000,0.250000,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;}
.fsa_c00376{font-size:46.200000px;}
.fsb_c00376{font-size:53.550000px;}
.fs7_c00376{font-size:61.950000px;}
.fs5_c00376{font-size:63.000000px;}
.fs8_c00376{font-size:68.250000px;}
.fs3_c00376{font-size:69.300000px;}
.fs2_c00376{font-size:70.350000px;}
.fs4_c00376{font-size:71.400000px;}
.fs6_c00376{font-size:72.450000px;}
.fs9_c00376{font-size:73.500000px;}
.fs1_c00376{font-size:77.700000px;}
.fsc_c00376{font-size:80.850000px;}
.fs0_c00376{font-size:142.807140px;}
.y0_c00376{bottom:0.000000px;}
.y28_c00376{bottom:92.694000px;}
.y27_c00376{bottom:160.590000px;}
.y26_c00376{bottom:178.200000px;}
.y25_c00376{bottom:228.658500px;}
.y24_c00376{bottom:250.830000px;}
.y23_c00376{bottom:273.511500px;}
.y22_c00376{bottom:296.196000px;}
.y21_c00376{bottom:319.150500px;}
.y20_c00376{bottom:342.060000px;}
.y1f_c00376{bottom:364.476000px;}
.y1e_c00376{bottom:387.151500px;}
.y1d_c00376{bottom:410.130000px;}
.y1c_c00376{bottom:432.810000px;}
.y1b_c00376{bottom:455.517000px;}
.y1a_c00376{bottom:478.440000px;}
.y19_c00376{bottom:501.360000px;}
.y18_c00376{bottom:524.038500px;}
.y17_c00376{bottom:546.750000px;}
.y16_c00376{bottom:569.700000px;}
.y15_c00376{bottom:591.570000px;}
.y14_c00376{bottom:614.818500px;}
.y13_c00376{bottom:637.440000px;}
.y12_c00376{bottom:659.908500px;}
.y11_c00376{bottom:682.530000px;}
.y10_c00376{bottom:705.481500px;}
.yf_c00376{bottom:728.161500px;}
.ye_c00376{bottom:750.841500px;}
.yd_c00376{bottom:773.523000px;}
.yc_c00376{bottom:796.260000px;}
.yb_c00376{bottom:819.088500px;}
.y8_c00376{bottom:865.004565px;}
.y9_c00376{bottom:865.005000px;}
.ya_c00376{bottom:865.005615px;}
.y7_c00376{bottom:905.737605px;}
.y6_c00376{bottom:905.812530px;}
.y5_c00376{bottom:906.528135px;}
.y4_c00376{bottom:907.864455px;}
.y3_c00376{bottom:908.355825px;}
.y2_c00376{bottom:909.106095px;}
.y1_c00376{bottom:910.170000px;}
.hc_c00376{height:46.200000px;}
.hd_c00376{height:53.550000px;}
.h9_c00376{height:61.950000px;}
.h7_c00376{height:63.000000px;}
.ha_c00376{height:68.250000px;}
.h5_c00376{height:69.300000px;}
.h4_c00376{height:70.350000px;}
.h6_c00376{height:71.400000px;}
.h8_c00376{height:72.450000px;}
.hb_c00376{height:73.500000px;}
.h3_c00376{height:77.700000px;}
.he_c00376{height:80.850000px;}
.h2_c00376{height:142.807140px;}
.h1_c00376{height:1005.000000px;}
.h0_c00376{height:1005.150000px;}
.w0_c00376{width:715.200000px;}
.w1_c00376{width:715.500000px;}
.x0_c00376{left:0.000000px;}
.xa4_c00376{left:80.190000px;}
.x1_c00376{left:81.280500px;}
.x20_c00376{left:82.620000px;}
.x8c_c00376{left:84.240000px;}
.x9f_c00376{left:88.560000px;}
.xb_c00376{left:90.180000px;}
.x47_c00376{left:91.260000px;}
.x6a_c00376{left:92.610000px;}
.x99_c00376{left:93.690000px;}
.xc4_c00376{left:107.730000px;}
.xa5_c00376{left:111.510000px;}
.x92_c00376{left:122.310000px;}
.x27_c00376{left:123.930000px;}
.x36_c00376{left:125.010000px;}
.x56_c00376{left:128.790000px;}
.x5e_c00376{left:129.870000px;}
.xbd_c00376{left:131.760000px;}
.x7c_c00376{left:133.380000px;}
.x16_c00376{left:135.810000px;}
.x72_c00376{left:140.130000px;}
.xc_c00376{left:143.100000px;}
.x3e_c00376{left:144.450000px;}
.xa7_c00376{left:148.770000px;}
.x48_c00376{left:151.470000px;}
.x57_c00376{left:154.170000px;}
.x85_c00376{left:156.330000px;}
.xae_c00376{left:157.950000px;}
.xd_c00376{left:160.650000px;}
.x6b_c00376{left:162.000000px;}
.x73_c00376{left:164.700000px;}
.x3f_c00376{left:168.210000px;}
.x88_c00376{left:169.830000px;}
.x50_c00376{left:171.990000px;}
.xa8_c00376{left:173.610000px;}
.x28_c00376{left:174.690000px;}
.x49_c00376{left:176.580000px;}
.x5f_c00376{left:179.010000px;}
.x7d_c00376{left:180.630000px;}
.x58_c00376{left:183.060000px;}
.x6c_c00376{left:184.410000px;}
.x2e_c00376{left:185.760000px;}
.x2_c00376{left:187.671000px;}
.x17_c00376{left:190.350000px;}
.x37_c00376{left:191.970000px;}
.xbe_c00376{left:193.860000px;}
.x7e_c00376{left:194.940000px;}
.x86_c00376{left:196.290000px;}
.x60_c00376{left:197.640000px;}
.x9a_c00376{left:199.260000px;}
.x74_c00376{left:206.010000px;}
.x59_c00376{left:207.900000px;}
.xaf_c00376{left:211.950000px;}
.x93_c00376{left:213.030000px;}
.xbf_c00376{left:215.460000px;}
.x8_c00376{left:218.436105px;}
.x18_c00376{left:219.510000px;}
.xb7_c00376{left:220.590000px;}
.xcb_c00376{left:221.940000px;}
.xc1_c00376{left:223.290000px;}
.xe_c00376{left:224.640000px;}
.x40_c00376{left:228.150000px;}
.x87_c00376{left:229.230000px;}
.x2f_c00376{left:236.790000px;}
.x4a_c00376{left:237.870000px;}
.x75_c00376{left:238.950000px;}
.xa0_c00376{left:241.380000px;}
.xc5_c00376{left:244.080000px;}
.x38_c00376{left:245.970000px;}
.x51_c00376{left:248.130000px;}
.x61_c00376{left:249.210000px;}
.x7f_c00376{left:252.180000px;}
.xf_c00376{left:253.530000px;}
.xc0_c00376{left:257.040000px;}
.x21_c00376{left:258.930000px;}
.x94_c00376{left:260.010000px;}
.x76_c00376{left:261.090000px;}
.x3_c00376{left:262.698000px;}
.x30_c00376{left:263.790000px;}
.x29_c00376{left:265.680000px;}
.x89_c00376{left:267.300000px;}
.xc6_c00376{left:271.890000px;}
.x19_c00376{left:274.860000px;}
.x62_c00376{left:275.940000px;}
.x8d_c00376{left:277.020000px;}
.xb0_c00376{left:279.180000px;}
.x6d_c00376{left:280.800000px;}
.x39_c00376{left:282.420000px;}
.x10_c00376{left:283.500000px;}
.xb8_c00376{left:285.390000px;}
.x31_c00376{left:286.740000px;}
.xaa_c00376{left:291.060000px;}
.x95_c00376{left:292.410000px;}
.x8e_c00376{left:295.380000px;}
.x1a_c00376{left:297.810000px;}
.x80_c00376{left:299.430000px;}
.xca_c00376{left:300.780000px;}
.x41_c00376{left:302.400000px;}
.x9b_c00376{left:303.480000px;}
.x77_c00376{left:306.450000px;}
.x32_c00376{left:309.960000px;}
.x4_c00376{left:311.835000px;}
.x6e_c00376{left:315.630000px;}
.xab_c00376{left:316.710000px;}
.x11_c00376{left:319.680000px;}
.xb9_c00376{left:321.570000px;}
.xa9_c00376{left:322.920000px;}
.x22_c00376{left:328.860000px;}
.x8a_c00376{left:332.100000px;}
.xb1_c00376{left:336.150000px;}
.xa1_c00376{left:337.230000px;}
.x81_c00376{left:338.850000px;}
.x78_c00376{left:341.280000px;}
.x63_c00376{left:344.250000px;}
.x1b_c00376{left:348.300000px;}
.x9c_c00376{left:349.650000px;}
.x33_c00376{left:354.510000px;}
.x79_c00376{left:358.830000px;}
.x2a_c00376{left:359.910000px;}
.x52_c00376{left:360.990000px;}
.x3a_c00376{left:363.960000px;}
.xac_c00376{left:365.580000px;}
.x8f_c00376{left:367.200000px;}
.x4b_c00376{left:372.600000px;}
.x82_c00376{left:374.220000px;}
.x1c_c00376{left:377.190000px;}
.x5a_c00376{left:379.350000px;}
.x7a_c00376{left:381.780000px;}
.x42_c00376{left:388.800000px;}
.x3b_c00376{left:391.770000px;}
.x12_c00376{left:393.660000px;}
.x23_c00376{left:395.280000px;}
.x6f_c00376{left:396.360000px;}
.xc2_c00376{left:398.250000px;}
.xa6_c00376{left:400.140000px;}
.x83_c00376{left:402.300000px;}
.x53_c00376{left:403.380000px;}
.x90_c00376{left:405.810000px;}
.x9d_c00376{left:409.050000px;}
.xc7_c00376{left:412.020000px;}
.x3c_c00376{left:413.640000px;}
.x13_c00376{left:419.040000px;}
.x43_c00376{left:420.120000px;}
.xb2_c00376{left:422.280000px;}
.x64_c00376{left:423.630000px;}
.x2b_c00376{left:424.710000px;}
.xba_c00376{left:427.140000px;}
.xa2_c00376{left:429.840000px;}
.x5b_c00376{left:432.000000px;}
.x34_c00376{left:433.890000px;}
.x1d_c00376{left:436.050000px;}
.x8b_c00376{left:441.720000px;}
.x5_c00376{left:445.467000px;}
.x44_c00376{left:446.850000px;}
.xa3_c00376{left:448.200000px;}
.x70_c00376{left:449.820000px;}
.x3d_c00376{left:451.440000px;}
.x24_c00376{left:452.790000px;}
.xb3_c00376{left:458.190000px;}
.x5c_c00376{left:462.240000px;}
.x96_c00376{left:463.860000px;}
.x1e_c00376{left:465.480000px;}
.x4c_c00376{left:468.720000px;}
.x65_c00376{left:469.800000px;}
.x5d_c00376{left:472.230000px;}
.x14_c00376{left:474.120000px;}
.x2c_c00376{left:477.900000px;}
.x97_c00376{left:481.680000px;}
.x4d_c00376{left:483.570000px;}
.x54_c00376{left:489.240000px;}
.x1f_c00376{left:493.020000px;}
.x9_c00376{left:494.120175px;}
.x25_c00376{left:495.450000px;}
.x66_c00376{left:497.340000px;}
.xbb_c00376{left:500.580000px;}
.x45_c00376{left:502.200000px;}
.x91_c00376{left:505.980000px;}
.xc8_c00376{left:513.270000px;}
.x2d_c00376{left:515.970000px;}
.x6_c00376{left:517.027500px;}
.x9e_c00376{left:519.480000px;}
.xb4_c00376{left:521.100000px;}
.x7b_c00376{left:522.720000px;}
.x7_c00376{left:524.520000px;}
.x4e_c00376{left:529.200000px;}
.x15_c00376{left:531.090000px;}
.xc3_c00376{left:532.170000px;}
.xc9_c00376{left:533.250000px;}
.xa_c00376{left:537.863055px;}
.x84_c00376{left:538.920000px;}
.x46_c00376{left:541.620000px;}
.x26_c00376{left:542.970000px;}
.xb5_c00376{left:544.050000px;}
.x67_c00376{left:545.940000px;}
.xad_c00376{left:547.020000px;}
.x4f_c00376{left:549.180000px;}
.x35_c00376{left:555.930000px;}
.x55_c00376{left:561.060000px;}
.x98_c00376{left:572.130000px;}
.x71_c00376{left:597.780000px;}
.x68_c00376{left:601.830000px;}
.xbc_c00376{left:604.800000px;}
.xb6_c00376{left:610.470000px;}
.x69_c00376{left:622.890000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fsa_c00376{font-size:41.066667pt;}
.fsb_c00376{font-size:47.600000pt;}
.fs7_c00376{font-size:55.066667pt;}
.fs5_c00376{font-size:56.000000pt;}
.fs8_c00376{font-size:60.666667pt;}
.fs3_c00376{font-size:61.600000pt;}
.fs2_c00376{font-size:62.533333pt;}
.fs4_c00376{font-size:63.466667pt;}
.fs6_c00376{font-size:64.400000pt;}
.fs9_c00376{font-size:65.333333pt;}
.fs1_c00376{font-size:69.066667pt;}
.fsc_c00376{font-size:71.866667pt;}
.fs0_c00376{font-size:126.939680pt;}
.y0_c00376{bottom:0.000000pt;}
.y28_c00376{bottom:82.394667pt;}
.y27_c00376{bottom:142.746667pt;}
.y26_c00376{bottom:158.400000pt;}
.y25_c00376{bottom:203.252000pt;}
.y24_c00376{bottom:222.960000pt;}
.y23_c00376{bottom:243.121333pt;}
.y22_c00376{bottom:263.285333pt;}
.y21_c00376{bottom:283.689333pt;}
.y20_c00376{bottom:304.053333pt;}
.y1f_c00376{bottom:323.978667pt;}
.y1e_c00376{bottom:344.134667pt;}
.y1d_c00376{bottom:364.560000pt;}
.y1c_c00376{bottom:384.720000pt;}
.y1b_c00376{bottom:404.904000pt;}
.y1a_c00376{bottom:425.280000pt;}
.y19_c00376{bottom:445.653333pt;}
.y18_c00376{bottom:465.812000pt;}
.y17_c00376{bottom:486.000000pt;}
.y16_c00376{bottom:506.400000pt;}
.y15_c00376{bottom:525.840000pt;}
.y14_c00376{bottom:546.505333pt;}
.y13_c00376{bottom:566.613333pt;}
.y12_c00376{bottom:586.585333pt;}
.y11_c00376{bottom:606.693333pt;}
.y10_c00376{bottom:627.094667pt;}
.yf_c00376{bottom:647.254667pt;}
.ye_c00376{bottom:667.414667pt;}
.yd_c00376{bottom:687.576000pt;}
.yc_c00376{bottom:707.786667pt;}
.yb_c00376{bottom:728.078667pt;}
.y8_c00376{bottom:768.892947pt;}
.y9_c00376{bottom:768.893333pt;}
.ya_c00376{bottom:768.893880pt;}
.y7_c00376{bottom:805.100093pt;}
.y6_c00376{bottom:805.166693pt;}
.y5_c00376{bottom:805.802787pt;}
.y4_c00376{bottom:806.990627pt;}
.y3_c00376{bottom:807.427400pt;}
.y2_c00376{bottom:808.094307pt;}
.y1_c00376{bottom:809.040000pt;}
.hc_c00376{height:41.066667pt;}
.hd_c00376{height:47.600000pt;}
.h9_c00376{height:55.066667pt;}
.h7_c00376{height:56.000000pt;}
.ha_c00376{height:60.666667pt;}
.h5_c00376{height:61.600000pt;}
.h4_c00376{height:62.533333pt;}
.h6_c00376{height:63.466667pt;}
.h8_c00376{height:64.400000pt;}
.hb_c00376{height:65.333333pt;}
.h3_c00376{height:69.066667pt;}
.he_c00376{height:71.866667pt;}
.h2_c00376{height:126.939680pt;}
.h1_c00376{height:893.333333pt;}
.h0_c00376{height:893.466667pt;}
.w0_c00376{width:635.733333pt;}
.w1_c00376{width:636.000000pt;}
.x0_c00376{left:0.000000pt;}
.xa4_c00376{left:71.280000pt;}
.x1_c00376{left:72.249333pt;}
.x20_c00376{left:73.440000pt;}
.x8c_c00376{left:74.880000pt;}
.x9f_c00376{left:78.720000pt;}
.xb_c00376{left:80.160000pt;}
.x47_c00376{left:81.120000pt;}
.x6a_c00376{left:82.320000pt;}
.x99_c00376{left:83.280000pt;}
.xc4_c00376{left:95.760000pt;}
.xa5_c00376{left:99.120000pt;}
.x92_c00376{left:108.720000pt;}
.x27_c00376{left:110.160000pt;}
.x36_c00376{left:111.120000pt;}
.x56_c00376{left:114.480000pt;}
.x5e_c00376{left:115.440000pt;}
.xbd_c00376{left:117.120000pt;}
.x7c_c00376{left:118.560000pt;}
.x16_c00376{left:120.720000pt;}
.x72_c00376{left:124.560000pt;}
.xc_c00376{left:127.200000pt;}
.x3e_c00376{left:128.400000pt;}
.xa7_c00376{left:132.240000pt;}
.x48_c00376{left:134.640000pt;}
.x57_c00376{left:137.040000pt;}
.x85_c00376{left:138.960000pt;}
.xae_c00376{left:140.400000pt;}
.xd_c00376{left:142.800000pt;}
.x6b_c00376{left:144.000000pt;}
.x73_c00376{left:146.400000pt;}
.x3f_c00376{left:149.520000pt;}
.x88_c00376{left:150.960000pt;}
.x50_c00376{left:152.880000pt;}
.xa8_c00376{left:154.320000pt;}
.x28_c00376{left:155.280000pt;}
.x49_c00376{left:156.960000pt;}
.x5f_c00376{left:159.120000pt;}
.x7d_c00376{left:160.560000pt;}
.x58_c00376{left:162.720000pt;}
.x6c_c00376{left:163.920000pt;}
.x2e_c00376{left:165.120000pt;}
.x2_c00376{left:166.818667pt;}
.x17_c00376{left:169.200000pt;}
.x37_c00376{left:170.640000pt;}
.xbe_c00376{left:172.320000pt;}
.x7e_c00376{left:173.280000pt;}
.x86_c00376{left:174.480000pt;}
.x60_c00376{left:175.680000pt;}
.x9a_c00376{left:177.120000pt;}
.x74_c00376{left:183.120000pt;}
.x59_c00376{left:184.800000pt;}
.xaf_c00376{left:188.400000pt;}
.x93_c00376{left:189.360000pt;}
.xbf_c00376{left:191.520000pt;}
.x8_c00376{left:194.165427pt;}
.x18_c00376{left:195.120000pt;}
.xb7_c00376{left:196.080000pt;}
.xcb_c00376{left:197.280000pt;}
.xc1_c00376{left:198.480000pt;}
.xe_c00376{left:199.680000pt;}
.x40_c00376{left:202.800000pt;}
.x87_c00376{left:203.760000pt;}
.x2f_c00376{left:210.480000pt;}
.x4a_c00376{left:211.440000pt;}
.x75_c00376{left:212.400000pt;}
.xa0_c00376{left:214.560000pt;}
.xc5_c00376{left:216.960000pt;}
.x38_c00376{left:218.640000pt;}
.x51_c00376{left:220.560000pt;}
.x61_c00376{left:221.520000pt;}
.x7f_c00376{left:224.160000pt;}
.xf_c00376{left:225.360000pt;}
.xc0_c00376{left:228.480000pt;}
.x21_c00376{left:230.160000pt;}
.x94_c00376{left:231.120000pt;}
.x76_c00376{left:232.080000pt;}
.x3_c00376{left:233.509333pt;}
.x30_c00376{left:234.480000pt;}
.x29_c00376{left:236.160000pt;}
.x89_c00376{left:237.600000pt;}
.xc6_c00376{left:241.680000pt;}
.x19_c00376{left:244.320000pt;}
.x62_c00376{left:245.280000pt;}
.x8d_c00376{left:246.240000pt;}
.xb0_c00376{left:248.160000pt;}
.x6d_c00376{left:249.600000pt;}
.x39_c00376{left:251.040000pt;}
.x10_c00376{left:252.000000pt;}
.xb8_c00376{left:253.680000pt;}
.x31_c00376{left:254.880000pt;}
.xaa_c00376{left:258.720000pt;}
.x95_c00376{left:259.920000pt;}
.x8e_c00376{left:262.560000pt;}
.x1a_c00376{left:264.720000pt;}
.x80_c00376{left:266.160000pt;}
.xca_c00376{left:267.360000pt;}
.x41_c00376{left:268.800000pt;}
.x9b_c00376{left:269.760000pt;}
.x77_c00376{left:272.400000pt;}
.x32_c00376{left:275.520000pt;}
.x4_c00376{left:277.186667pt;}
.x6e_c00376{left:280.560000pt;}
.xab_c00376{left:281.520000pt;}
.x11_c00376{left:284.160000pt;}
.xb9_c00376{left:285.840000pt;}
.xa9_c00376{left:287.040000pt;}
.x22_c00376{left:292.320000pt;}
.x8a_c00376{left:295.200000pt;}
.xb1_c00376{left:298.800000pt;}
.xa1_c00376{left:299.760000pt;}
.x81_c00376{left:301.200000pt;}
.x78_c00376{left:303.360000pt;}
.x63_c00376{left:306.000000pt;}
.x1b_c00376{left:309.600000pt;}
.x9c_c00376{left:310.800000pt;}
.x33_c00376{left:315.120000pt;}
.x79_c00376{left:318.960000pt;}
.x2a_c00376{left:319.920000pt;}
.x52_c00376{left:320.880000pt;}
.x3a_c00376{left:323.520000pt;}
.xac_c00376{left:324.960000pt;}
.x8f_c00376{left:326.400000pt;}
.x4b_c00376{left:331.200000pt;}
.x82_c00376{left:332.640000pt;}
.x1c_c00376{left:335.280000pt;}
.x5a_c00376{left:337.200000pt;}
.x7a_c00376{left:339.360000pt;}
.x42_c00376{left:345.600000pt;}
.x3b_c00376{left:348.240000pt;}
.x12_c00376{left:349.920000pt;}
.x23_c00376{left:351.360000pt;}
.x6f_c00376{left:352.320000pt;}
.xc2_c00376{left:354.000000pt;}
.xa6_c00376{left:355.680000pt;}
.x83_c00376{left:357.600000pt;}
.x53_c00376{left:358.560000pt;}
.x90_c00376{left:360.720000pt;}
.x9d_c00376{left:363.600000pt;}
.xc7_c00376{left:366.240000pt;}
.x3c_c00376{left:367.680000pt;}
.x13_c00376{left:372.480000pt;}
.x43_c00376{left:373.440000pt;}
.xb2_c00376{left:375.360000pt;}
.x64_c00376{left:376.560000pt;}
.x2b_c00376{left:377.520000pt;}
.xba_c00376{left:379.680000pt;}
.xa2_c00376{left:382.080000pt;}
.x5b_c00376{left:384.000000pt;}
.x34_c00376{left:385.680000pt;}
.x1d_c00376{left:387.600000pt;}
.x8b_c00376{left:392.640000pt;}
.x5_c00376{left:395.970667pt;}
.x44_c00376{left:397.200000pt;}
.xa3_c00376{left:398.400000pt;}
.x70_c00376{left:399.840000pt;}
.x3d_c00376{left:401.280000pt;}
.x24_c00376{left:402.480000pt;}
.xb3_c00376{left:407.280000pt;}
.x5c_c00376{left:410.880000pt;}
.x96_c00376{left:412.320000pt;}
.x1e_c00376{left:413.760000pt;}
.x4c_c00376{left:416.640000pt;}
.x65_c00376{left:417.600000pt;}
.x5d_c00376{left:419.760000pt;}
.x14_c00376{left:421.440000pt;}
.x2c_c00376{left:424.800000pt;}
.x97_c00376{left:428.160000pt;}
.x4d_c00376{left:429.840000pt;}
.x54_c00376{left:434.880000pt;}
.x1f_c00376{left:438.240000pt;}
.x9_c00376{left:439.217933pt;}
.x25_c00376{left:440.400000pt;}
.x66_c00376{left:442.080000pt;}
.xbb_c00376{left:444.960000pt;}
.x45_c00376{left:446.400000pt;}
.x91_c00376{left:449.760000pt;}
.xc8_c00376{left:456.240000pt;}
.x2d_c00376{left:458.640000pt;}
.x6_c00376{left:459.580000pt;}
.x9e_c00376{left:461.760000pt;}
.xb4_c00376{left:463.200000pt;}
.x7b_c00376{left:464.640000pt;}
.x7_c00376{left:466.240000pt;}
.x4e_c00376{left:470.400000pt;}
.x15_c00376{left:472.080000pt;}
.xc3_c00376{left:473.040000pt;}
.xc9_c00376{left:474.000000pt;}
.xa_c00376{left:478.100493pt;}
.x84_c00376{left:479.040000pt;}
.x46_c00376{left:481.440000pt;}
.x26_c00376{left:482.640000pt;}
.xb5_c00376{left:483.600000pt;}
.x67_c00376{left:485.280000pt;}
.xad_c00376{left:486.240000pt;}
.x4f_c00376{left:488.160000pt;}
.x35_c00376{left:494.160000pt;}
.x55_c00376{left:498.720000pt;}
.x98_c00376{left:508.560000pt;}
.x71_c00376{left:531.360000pt;}
.x68_c00376{left:534.960000pt;}
.xbc_c00376{left:537.600000pt;}
.xb6_c00376{left:542.640000pt;}
.x69_c00376{left:553.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_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_ef4e99a7aa2876b3106553d3.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;}
.m110_c00377{transform:matrix(0.023459,0.000188,-0.002000,0.249992,0,0);-ms-transform:matrix(0.023459,0.000188,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.023459,0.000188,-0.002000,0.249992,0,0);}
.m13f_c00377{transform:matrix(0.040800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040800,0.000000,0.000000,0.250000,0,0);}
.m147_c00377{transform:matrix(0.047915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047915,0.000000,0.000000,0.250000,0,0);}
.m14e_c00377{transform:matrix(0.058900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058900,0.000000,0.000000,0.250000,0,0);}
.mc4_c00377{transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{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);}
.mc6_c00377{transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140935,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141265,0.000000,0.000000,0.250000,0,0);}
.m136_c00377{transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);}
.m102_c00377{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);}
.m72_c00377{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);}
.mc2_c00377{transform:matrix(0.147405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147405,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.mf9_c00377{transform:matrix(0.149956,0.001050,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149956,0.001050,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149956,0.001050,-0.001750,0.249994,0,0);}
.m91_c00377{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);}
.mdc_c00377{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.mfa_c00377{transform:matrix(0.151706,0.001062,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151706,0.001062,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151706,0.001062,-0.001750,0.249994,0,0);}
.m4c_c00377{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);}
.m8e_c00377{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);}
.m4_c00377{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);}
.md0_c00377{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);}
.md6_c00377{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);}
.mce_c00377{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);}
.md8_c00377{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);}
.m4a_c00377{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);}
.m7a_c00377{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);}
.m4e_c00377{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);}
.m61_c00377{transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158305,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158540,0.000000,0.000000,0.250000,0,0);}
.md7_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);}
.m44_c00377{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);}
.mca_c00377{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);}
.mec_c00377{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);}
.m101_c00377{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);}
.m85_c00377{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_c00377{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);}
.m104_c00377{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);}
.m93_c00377{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);}
.m73_c00377{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{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);}
.m75_c00377{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);}
.m78_c00377{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);}
.mb6_c00377{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);}
.m53_c00377{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);}
.mf4_c00377{transform:matrix(0.166556,0.001166,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166556,0.001166,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166556,0.001166,-0.001750,0.249994,0,0);}
.mf8_c00377{transform:matrix(0.166821,0.001168,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166821,0.001168,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166821,0.001168,-0.001750,0.249994,0,0);}
.mc0_c00377{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);}
.m103_c00377{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);}
.mbe_c00377{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);}
.mcd_c00377{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);}
.mba_c00377{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);}
.m65_c00377{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);}
.mc8_c00377{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);}
.m42_c00377{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);}
.m131_c00377{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);}
.m4b_c00377{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);}
.m135_c00377{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.mc1_c00377{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);}
.m9_c00377{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);}
.m1f_c00377{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);}
.m90_c00377{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);}
.m88_c00377{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);}
.me2_c00377{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);}
.md1_c00377{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);}
.m43_c00377{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);}
.m146_c00377{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);}
.m55_c00377{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);}
.me5_c00377{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);}
.m84_c00377{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);}
.mda_c00377{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);}
.mde_c00377{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);}
.mc3_c00377{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_c00377{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);}
.m8a_c00377{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);}
.m6a_c00377{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);}
.m12d_c00377{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);}
.m8b_c00377{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);}
.m143_c00377{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);}
.mef_c00377{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);}
.mdd_c00377{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);}
.m52_c00377{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);}
.m100_c00377{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);}
.m1d_c00377{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);}
.m79_c00377{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);}
.mea_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);}
.m97_c00377{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);}
.m8d_c00377{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);}
.md2_c00377{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);}
.m20_c00377{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);}
.m74_c00377{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);}
.mb8_c00377{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);}
.m68_c00377{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);}
.m3_c00377{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);}
.m38_c00377{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);}
.m81_c00377{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);}
.m58_c00377{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);}
.md5_c00377{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);}
.m10b_c00377{transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);}
.m48_c00377{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);}
.mcb_c00377{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);}
.ma7_c00377{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);}
.m32_c00377{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);}
.m41_c00377{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{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);}
.m70_c00377{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);}
.mbd_c00377{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_c00377{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);}
.m150_c00377{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_c00377{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);}
.m5f_c00377{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);}
.mcf_c00377{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);}
.meb_c00377{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);}
.m36_c00377{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);}
.m4f_c00377{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);}
.mfe_c00377{transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184010,0.001288,-0.001750,0.249994,0,0);}
.m6b_c00377{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);}
.m9a_c00377{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);}
.md3_c00377{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);}
.me3_c00377{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);}
.m108_c00377{transform:matrix(0.185464,0.001484,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185464,0.001484,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185464,0.001484,-0.002000,0.249992,0,0);}
.mee_c00377{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);}
.m77_c00377{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);}
.m16_c00377{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);}
.m86_c00377{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);}
.m40_c00377{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);}
.m46_c00377{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);}
.mb2_c00377{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);}
.m26_c00377{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);}
.me0_c00377{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);}
.mb9_c00377{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);}
.mf5_c00377{transform:matrix(0.187660,0.001314,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187660,0.001314,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187660,0.001314,-0.001750,0.249994,0,0);}
.m7c_c00377{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);}
.m57_c00377{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);}
.ma1_c00377{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);}
.m10a_c00377{transform:matrix(0.188634,0.001509,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188634,0.001509,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188634,0.001509,-0.002000,0.249992,0,0);}
.m89_c00377{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);}
.mb3_c00377{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);}
.m19_c00377{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);}
.mdb_c00377{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);}
.m14b_c00377{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);}
.m3b_c00377{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);}
.ma8_c00377{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);}
.m7b_c00377{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);}
.mbf_c00377{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);}
.md4_c00377{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);}
.m1b_c00377{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);}
.m83_c00377{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);}
.mf1_c00377{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);}
.m34_c00377{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_c00377{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);}
.m10_c00377{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);}
.m109_c00377{transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);}
.m39_c00377{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);}
.m25_c00377{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);}
.m64_c00377{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);}
.m13a_c00377{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);}
.mfc_c00377{transform:matrix(0.193105,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193105,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193105,0.001352,-0.001750,0.249994,0,0);}
.m30_c00377{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);}
.m13c_c00377{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);}
.m99_c00377{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);}
.m2e_c00377{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);}
.m49_c00377{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);}
.m13d_c00377{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);}
.m76_c00377{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);}
.mbb_c00377{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);}
.m117_c00377{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);}
.m9c_c00377{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);}
.m6e_c00377{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);}
.m66_c00377{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);}
.m123_c00377{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);}
.m145_c00377{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);}
.m9f_c00377{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);}
.me9_c00377{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);}
.med_c00377{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);}
.m62_c00377{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);}
.m17_c00377{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);}
.m94_c00377{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);}
.mff_c00377{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);}
.m10d_c00377{transform:matrix(0.197874,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197874,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197874,0.001583,-0.002000,0.249992,0,0);}
.m13b_c00377{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);}
.m138_c00377{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);}
.m95_c00377{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);}
.m15_c00377{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);}
.m7e_c00377{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);}
.ma0_c00377{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);}
.m7f_c00377{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);}
.m8f_c00377{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);}
.m5d_c00377{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);}
.mc7_c00377{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);}
.m50_c00377{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);}
.mae_c00377{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);}
.m2b_c00377{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);}
.m9b_c00377{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);}
.m112_c00377{transform:matrix(0.201819,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201819,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201819,0.001615,-0.002000,0.249992,0,0);}
.m121_c00377{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);}
.m142_c00377{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);}
.m134_c00377{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);}
.m11e_c00377{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);}
.m137_c00377{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);}
.m1c_c00377{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);}
.mb4_c00377{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);}
.m10c_c00377{transform:matrix(0.204203,0.001634,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204203,0.001634,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204203,0.001634,-0.002000,0.249992,0,0);}
.m7d_c00377{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);}
.me_c00377{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);}
.mf_c00377{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);}
.m140_c00377{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);}
.m92_c00377{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);}
.mf0_c00377{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);}
.mdf_c00377{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);}
.m107_c00377{transform:matrix(0.206638,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206638,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206638,0.001653,-0.002000,0.249992,0,0);}
.m5c_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);}
.ma6_c00377{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);}
.m59_c00377{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);}
.m3e_c00377{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);}
.m23_c00377{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);}
.m2c_c00377{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);}
.m29_c00377{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);}
.m132_c00377{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);}
.m60_c00377{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);}
.m82_c00377{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);}
.m9d_c00377{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);}
.m105_c00377{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);}
.m6f_c00377{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);}
.mab_c00377{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);}
.m31_c00377{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{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);}
.m8c_c00377{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);}
.m12b_c00377{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);}
.md9_c00377{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);}
.m13_c00377{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);}
.me1_c00377{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);}
.m35_c00377{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);}
.mac_c00377{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);}
.mc_c00377{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);}
.m12f_c00377{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);}
.ma4_c00377{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{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);}
.m148_c00377{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);}
.mbc_c00377{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);}
.m12_c00377{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);}
.m2a_c00377{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);}
.me8_c00377{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);}
.m4d_c00377{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);}
.m98_c00377{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);}
.m5b_c00377{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);}
.m6d_c00377{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);}
.m126_c00377{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);}
.m139_c00377{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);}
.m24_c00377{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);}
.m11b_c00377{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);}
.ma9_c00377{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);}
.m87_c00377{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);}
.m2d_c00377{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);}
.m128_c00377{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);}
.mc5_c00377{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);}
.m33_c00377{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);}
.m37_c00377{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);}
.mf6_c00377{transform:matrix(0.226734,0.001587,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226734,0.001587,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226734,0.001587,-0.001750,0.249994,0,0);}
.m5a_c00377{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);}
.m125_c00377{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);}
.m127_c00377{transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228315,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{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);}
.m28_c00377{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);}
.m11a_c00377{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);}
.m10e_c00377{transform:matrix(0.229638,0.001837,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229638,0.001837,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229638,0.001837,-0.002000,0.249992,0,0);}
.m13e_c00377{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{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);}
.m3a_c00377{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);}
.m56_c00377{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);}
.m63_c00377{transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{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);}
.m9e_c00377{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);}
.m124_c00377{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);}
.m96_c00377{transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);}
.m130_c00377{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);}
.m144_c00377{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);}
.mf2_c00377{transform:matrix(0.237474,0.001662,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237474,0.001662,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237474,0.001662,-0.001750,0.249994,0,0);}
.mb7_c00377{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);}
.ma2_c00377{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);}
.m18_c00377{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);}
.maf_c00377{transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);}
.m12a_c00377{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);}
.m116_c00377{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);}
.m45_c00377{transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241280,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{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);}
.m12e_c00377{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);}
.me6_c00377{transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.mfb_c00377{transform:matrix(0.243729,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243729,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243729,0.001706,-0.001750,0.249994,0,0);}
.m149_c00377{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{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);}
.m6c_c00377{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);}
.mb0_c00377{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);}
.mfd_c00377{transform:matrix(0.246909,0.001728,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246909,0.001728,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246909,0.001728,-0.001750,0.249994,0,0);}
.mf3_c00377{transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);}
.md_c00377{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);}
.mb5_c00377{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);}
.m14d_c00377{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);}
.m106_c00377{transform:matrix(0.254262,0.002034,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254262,0.002034,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254262,0.002034,-0.002000,0.249992,0,0);}
.m8_c00377{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.m14c_c00377{transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);}
.m122_c00377{transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);}
.m12c_c00377{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);}
.m2_c00377{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);}
.mad_c00377{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);}
.m115_c00377{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);}
.m141_c00377{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.mb1_c00377{transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275910,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00377{transform:matrix(0.289485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289485,0.000000,0.000000,0.250000,0,0);}
.m133_c00377{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);}
.m111_c00377{transform:matrix(0.293911,0.002351,-0.002000,0.249992,0,0);-ms-transform:matrix(0.293911,0.002351,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.293911,0.002351,-0.002000,0.249992,0,0);}
.m3d_c00377{transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);}
.m11f_c00377{transform:matrix(0.301810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301810,0.000000,0.000000,0.250000,0,0);}
.mf7_c00377{transform:matrix(0.331237,0.002319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.331237,0.002319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.331237,0.002319,-0.001750,0.249994,0,0);}
.me7_c00377{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);}
.m119_c00377{transform:matrix(0.342235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342235,0.000000,0.000000,0.250000,0,0);}
.m129_c00377{transform:matrix(0.373130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373130,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.404815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404815,0.000000,0.000000,0.250000,0,0);}
.m113_c00377{transform:matrix(0.428570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428570,0.000000,0.000000,0.250000,0,0);}
.m11d_c00377{transform:matrix(0.433890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433890,0.000000,0.000000,0.250000,0,0);}
.m11c_c00377{transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434175,0.000000,0.000000,0.250000,0,0);}
.m10f_c00377{transform:matrix(0.449826,0.003599,-0.002000,0.249992,0,0);-ms-transform:matrix(0.449826,0.003599,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.449826,0.003599,-0.002000,0.249992,0,0);}
.m1_c00377{transform:matrix(0.477030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477030,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.482275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482275,0.000000,0.000000,0.250000,0,0);}
.m14f_c00377{transform:matrix(0.510480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510480,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.521565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521565,0.000000,0.000000,0.250000,0,0);}
.m114_c00377{transform:matrix(0.560480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560480,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.600605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600605,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.603280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603280,0.000000,0.000000,0.250000,0,0);}
.m118_c00377{transform:matrix(0.646245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646245,0.000000,0.000000,0.250000,0,0);}
.m120_c00377{transform:matrix(0.733875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733875,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;}
.fs2_c00377{font-size:16.800000px;}
.fs14_c00377{font-size:18.900000px;}
.fse_c00377{font-size:22.050000px;}
.fs10_c00377{font-size:32.551042px;}
.fs12_c00377{font-size:46.200000px;}
.fs13_c00377{font-size:50.400000px;}
.fs11_c00377{font-size:51.450000px;}
.fs7_c00377{font-size:60.900000px;}
.fs5_c00377{font-size:63.000000px;}
.fsb_c00377{font-size:67.200000px;}
.fs6_c00377{font-size:68.250000px;}
.fs4_c00377{font-size:69.300000px;}
.fs8_c00377{font-size:70.350000px;}
.fsa_c00377{font-size:71.400000px;}
.fsd_c00377{font-size:71.401749px;}
.fsf_c00377{font-size:71.402285px;}
.fs9_c00377{font-size:73.500000px;}
.fsc_c00377{font-size:74.550000px;}
.fs3_c00377{font-size:87.150000px;}
.fs0_c00377{font-size:114.450000px;}
.fs1_c00377{font-size:214.200000px;}
.y0_c00377{bottom:0.000000px;}
.y91_c00377{bottom:102.603000px;}
.y90_c00377{bottom:156.972000px;}
.y8f_c00377{bottom:157.183500px;}
.y8e_c00377{bottom:157.446000px;}
.y8d_c00377{bottom:157.624500px;}
.y8c_c00377{bottom:157.777500px;}
.y8b_c00377{bottom:158.115000px;}
.y8a_c00377{bottom:158.199000px;}
.y89_c00377{bottom:158.469000px;}
.y88_c00377{bottom:158.575500px;}
.y87_c00377{bottom:158.976000px;}
.y86_c00377{bottom:159.087000px;}
.y85_c00377{bottom:159.240000px;}
.y84_c00377{bottom:159.385500px;}
.y83_c00377{bottom:159.481500px;}
.y82_c00377{bottom:159.840000px;}
.y81_c00377{bottom:174.271500px;}
.y80_c00377{bottom:174.441000px;}
.y7f_c00377{bottom:174.558000px;}
.y7e_c00377{bottom:174.906000px;}
.y7d_c00377{bottom:175.015500px;}
.y7c_c00377{bottom:175.275000px;}
.y7b_c00377{bottom:175.515000px;}
.y7a_c00377{bottom:175.732500px;}
.y79_c00377{bottom:175.885500px;}
.y78_c00377{bottom:176.031000px;}
.y77_c00377{bottom:176.193000px;}
.y76_c00377{bottom:176.601000px;}
.y75_c00377{bottom:176.683500px;}
.y74_c00377{bottom:177.001500px;}
.y73_c00377{bottom:177.133500px;}
.y72_c00377{bottom:177.315000px;}
.y71_c00377{bottom:177.658500px;}
.y70_c00377{bottom:191.575500px;}
.y6f_c00377{bottom:193.012500px;}
.y6e_c00377{bottom:193.251000px;}
.y6d_c00377{bottom:193.639500px;}
.y6c_c00377{bottom:193.783500px;}
.y6b_c00377{bottom:193.996500px;}
.y6a_c00377{bottom:194.203500px;}
.y69_c00377{bottom:194.376000px;}
.y68_c00377{bottom:194.755500px;}
.y67_c00377{bottom:194.950500px;}
.y66_c00377{bottom:195.225000px;}
.y65_c00377{bottom:195.480000px;}
.y64_c00377{bottom:212.137500px;}
.y63_c00377{bottom:269.050500px;}
.y61_c00377{bottom:286.673940px;}
.y5f_c00377{bottom:286.674156px;}
.y60_c00377{bottom:286.674276px;}
.y62_c00377{bottom:286.674552px;}
.y5e_c00377{bottom:296.582412px;}
.y5d_c00377{bottom:296.774904px;}
.y5c_c00377{bottom:297.033876px;}
.y5b_c00377{bottom:297.601932px;}
.y5a_c00377{bottom:298.297500px;}
.y59_c00377{bottom:298.489728px;}
.y58_c00377{bottom:299.079492px;}
.y57_c00377{bottom:299.368920px;}
.y56_c00377{bottom:299.701500px;}
.y54_c00377{bottom:341.010000px;}
.y55_c00377{bottom:342.460500px;}
.y53_c00377{bottom:364.502335px;}
.y52_c00377{bottom:364.661095px;}
.y51_c00377{bottom:365.090230px;}
.y50_c00377{bottom:365.403645px;}
.y4f_c00377{bottom:365.757306px;}
.y4e_c00377{bottom:366.037036px;}
.y4d_c00377{bottom:366.227958px;}
.y4c_c00377{bottom:366.335909px;}
.y4b_c00377{bottom:366.481197px;}
.y4a_c00377{bottom:366.863156px;}
.y49_c00377{bottom:367.010481px;}
.y48_c00377{bottom:367.159707px;}
.y47_c00377{bottom:367.740000px;}
.y46_c00377{bottom:386.331000px;}
.y45_c00377{bottom:386.475000px;}
.y44_c00377{bottom:386.883000px;}
.y43_c00377{bottom:387.165000px;}
.y42_c00377{bottom:387.520500px;}
.y41_c00377{bottom:387.685500px;}
.y40_c00377{bottom:387.936000px;}
.y3f_c00377{bottom:388.126500px;}
.y3e_c00377{bottom:388.666500px;}
.y3d_c00377{bottom:389.004000px;}
.y3c_c00377{bottom:389.116500px;}
.y3b_c00377{bottom:389.854500px;}
.y3a_c00377{bottom:390.030000px;}
.y39_c00377{bottom:390.418500px;}
.y38_c00377{bottom:409.824000px;}
.y37_c00377{bottom:410.136000px;}
.y36_c00377{bottom:410.410500px;}
.y35_c00377{bottom:410.892000px;}
.y34_c00377{bottom:411.178500px;}
.y33_c00377{bottom:411.385500px;}
.y32_c00377{bottom:411.885000px;}
.y31_c00377{bottom:412.105500px;}
.y30_c00377{bottom:412.312500px;}
.y2f_c00377{bottom:412.864500px;}
.y2e_c00377{bottom:413.391000px;}
.y2d_c00377{bottom:413.646000px;}
.y2c_c00377{bottom:413.908500px;}
.y2b_c00377{bottom:432.211500px;}
.y2a_c00377{bottom:433.054500px;}
.y29_c00377{bottom:433.440000px;}
.y28_c00377{bottom:433.699500px;}
.y27_c00377{bottom:434.113500px;}
.y26_c00377{bottom:434.434500px;}
.y25_c00377{bottom:434.716500px;}
.y24_c00377{bottom:435.328500px;}
.y23_c00377{bottom:435.595500px;}
.y22_c00377{bottom:435.930000px;}
.y21_c00377{bottom:436.317000px;}
.y20_c00377{bottom:455.340000px;}
.y1f_c00377{bottom:455.485500px;}
.y1e_c00377{bottom:455.694000px;}
.y1d_c00377{bottom:456.304500px;}
.y1c_c00377{bottom:456.799500px;}
.y1b_c00377{bottom:456.999000px;}
.y1a_c00377{bottom:457.129500px;}
.y19_c00377{bottom:457.231500px;}
.y18_c00377{bottom:457.624500px;}
.y17_c00377{bottom:457.818000px;}
.y16_c00377{bottom:457.975500px;}
.y15_c00377{bottom:458.457000px;}
.y3_c00377{bottom:469.260000px;}
.y14_c00377{bottom:480.213000px;}
.y13_c00377{bottom:503.640000px;}
.y12_c00377{bottom:526.830000px;}
.y11_c00377{bottom:550.497000px;}
.y10_c00377{bottom:573.447000px;}
.yf_c00377{bottom:596.397000px;}
.ye_c00377{bottom:619.317000px;}
.yd_c00377{bottom:642.234000px;}
.yc_c00377{bottom:664.915500px;}
.yb_c00377{bottom:688.468500px;}
.ya_c00377{bottom:711.385500px;}
.y9_c00377{bottom:733.765500px;}
.y8_c00377{bottom:757.432500px;}
.y7_c00377{bottom:779.385000px;}
.y6_c00377{bottom:802.345500px;}
.y5_c00377{bottom:825.612000px;}
.y4_c00377{bottom:867.996000px;}
.y2_c00377{bottom:910.426500px;}
.y1_c00377{bottom:918.954000px;}
.h4_c00377{height:16.800000px;}
.h16_c00377{height:18.900000px;}
.h10_c00377{height:22.050000px;}
.h12_c00377{height:32.551042px;}
.h14_c00377{height:46.200000px;}
.h15_c00377{height:50.400000px;}
.h13_c00377{height:51.450000px;}
.h9_c00377{height:60.900000px;}
.h7_c00377{height:63.000000px;}
.hd_c00377{height:67.200000px;}
.h8_c00377{height:68.250000px;}
.h6_c00377{height:69.300000px;}
.ha_c00377{height:70.350000px;}
.hc_c00377{height:71.400000px;}
.hf_c00377{height:71.401749px;}
.h11_c00377{height:71.402285px;}
.hb_c00377{height:73.500000px;}
.he_c00377{height:74.550000px;}
.h5_c00377{height:87.150000px;}
.h2_c00377{height:114.450000px;}
.h3_c00377{height:214.200000px;}
.h0_c00377{height:1008.450000px;}
.h1_c00377{height:1008.750000px;}
.w1_c00377{width:689.250000px;}
.w0_c00377{width:689.550000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:93.960000px;}
.x2_c00377{left:108.270000px;}
.x3_c00377{left:139.050000px;}
.x9b_c00377{left:142.470000px;}
.xa_c00377{left:149.850000px;}
.x4_c00377{left:151.200000px;}
.x51_c00377{left:152.280000px;}
.xa4_c00377{left:153.360000px;}
.xb0_c00377{left:154.620000px;}
.xb9_c00377{left:155.718000px;}
.xab_c00377{left:164.430000px;}
.xb_c00377{left:170.100000px;}
.x5_c00377{left:172.530000px;}
.x48_c00377{left:173.880000px;}
.xa6_c00377{left:177.832500px;}
.x2d_c00377{left:179.820000px;}
.x91_c00377{left:181.869000px;}
.xb1_c00377{left:182.974500px;}
.x74_c00377{left:184.950000px;}
.x52_c00377{left:186.840000px;}
.xac_c00377{left:188.190000px;}
.x7b_c00377{left:190.080000px;}
.x13_c00377{left:192.780000px;}
.x8c_c00377{left:194.853000px;}
.x95_c00377{left:195.898500px;}
.x2e_c00377{left:197.640000px;}
.x1d_c00377{left:198.720000px;}
.x75_c00377{left:202.500000px;}
.x49_c00377{left:204.390000px;}
.xba_c00377{left:207.030000px;}
.x6_c00377{left:210.330000px;}
.x80_c00377{left:211.950000px;}
.xad_c00377{left:213.030000px;}
.x96_c00377{left:215.326500px;}
.x41_c00377{left:217.350000px;}
.xa7_c00377{left:219.405000px;}
.xbb_c00377{left:220.819500px;}
.x14_c00377{left:222.210000px;}
.x53_c00377{left:223.290000px;}
.x9c_c00377{left:225.369000px;}
.x81_c00377{left:227.340000px;}
.x1e_c00377{left:229.770000px;}
.x7c_c00377{left:230.850000px;}
.x8d_c00377{left:232.081500px;}
.x42_c00377{left:234.630000px;}
.x62_c00377{left:237.600000px;}
.x4a_c00377{left:239.760000px;}
.x2f_c00377{left:241.110000px;}
.x86_c00377{left:243.981000px;}
.x9d_c00377{left:246.687000px;}
.x27_c00377{left:248.670000px;}
.x7d_c00377{left:250.830000px;}
.xc_c00377{left:252.720000px;}
.x76_c00377{left:254.880000px;}
.x5c_c00377{left:257.580000px;}
.x54_c00377{left:262.170000px;}
.xbc_c00377{left:263.461500px;}
.x30_c00377{left:264.870000px;}
.x1f_c00377{left:267.570000px;}
.x92_c00377{left:268.804500px;}
.x87_c00377{left:271.519500px;}
.x39_c00377{left:272.970000px;}
.x15_c00377{left:274.320000px;}
.xb2_c00377{left:277.212000px;}
.xbd_c00377{left:279.394500px;}
.x28_c00377{left:285.120000px;}
.xa5_c00377{left:286.470000px;}
.xd_c00377{left:290.250000px;}
.x70_c00377{left:294.570000px;}
.xb3_c00377{left:296.383500px;}
.x97_c00377{left:297.390000px;}
.x55_c00377{left:300.240000px;}
.x16_c00377{left:301.320000px;}
.x3a_c00377{left:304.560000px;}
.x63_c00377{left:306.720000px;}
.x20_c00377{left:308.070000px;}
.x5d_c00377{left:310.500000px;}
.x71_c00377{left:312.390000px;}
.x82_c00377{left:316.170000px;}
.x43_c00377{left:319.140000px;}
.x21_c00377{left:321.300000px;}
.x4b_c00377{left:327.240000px;}
.x8e_c00377{left:329.826000px;}
.xae_c00377{left:331.830000px;}
.x56_c00377{left:334.530000px;}
.x3b_c00377{left:336.420000px;}
.x83_c00377{left:337.500000px;}
.x17_c00377{left:338.850000px;}
.x64_c00377{left:339.930000px;}
.x22_c00377{left:342.360000px;}
.x5e_c00377{left:344.250000px;}
.x98_c00377{left:347.370000px;}
.x31_c00377{left:348.840000px;}
.x7e_c00377{left:351.540000px;}
.x93_c00377{left:353.094000px;}
.x9e_c00377{left:358.476000px;}
.x65_c00377{left:359.910000px;}
.x88_c00377{left:360.921000px;}
.x57_c00377{left:362.340000px;}
.x77_c00377{left:365.040000px;}
.x72_c00377{left:378.270000px;}
.x23_c00377{left:379.890000px;}
.x3c_c00377{left:380.970000px;}
.x9f_c00377{left:385.750500px;}
.x32_c00377{left:387.450000px;}
.x89_c00377{left:389.511000px;}
.xe_c00377{left:393.120000px;}
.x7_c00377{left:397.440000px;}
.x66_c00377{left:399.330000px;}
.x4c_c00377{left:401.490000px;}
.x6c_c00377{left:403.110000px;}
.x73_c00377{left:406.620000px;}
.xb5_c00377{left:408.718500px;}
.xf_c00377{left:412.290000px;}
.x18_c00377{left:414.990000px;}
.x29_c00377{left:420.390000px;}
.x4d_c00377{left:424.170000px;}
.xa0_c00377{left:425.712000px;}
.x67_c00377{left:427.410000px;}
.x99_c00377{left:428.415000px;}
.x3d_c00377{left:430.920000px;}
.x6d_c00377{left:433.350000px;}
.x5f_c00377{left:434.430000px;}
.x78_c00377{left:436.590000px;}
.xaf_c00377{left:438.480000px;}
.xa8_c00377{left:440.278500px;}
.x8f_c00377{left:442.723500px;}
.x2a_c00377{left:444.150000px;}
.x10_c00377{left:446.040000px;}
.x44_c00377{left:449.820000px;}
.x84_c00377{left:452.520000px;}
.x58_c00377{left:453.600000px;}
.x3e_c00377{left:455.490000px;}
.x68_c00377{left:457.380000px;}
.x33_c00377{left:458.460000px;}
.x8a_c00377{left:460.255500px;}
.x8_c00377{left:461.700000px;}
.x19_c00377{left:464.670000px;}
.x60_c00377{left:467.100000px;}
.x24_c00377{left:471.960000px;}
.x4e_c00377{left:473.310000px;}
.x7f_c00377{left:474.930000px;}
.xa1_c00377{left:476.235000px;}
.x45_c00377{left:478.440000px;}
.x59_c00377{left:483.030000px;}
.x34_c00377{left:485.190000px;}
.x4f_c00377{left:487.620000px;}
.x61_c00377{left:490.050000px;}
.x1a_c00377{left:491.400000px;}
.x6e_c00377{left:494.100000px;}
.xb6_c00377{left:495.925500px;}
.xbe_c00377{left:498.081000px;}
.x79_c00377{left:500.310000px;}
.x25_c00377{left:506.520000px;}
.x9_c00377{left:508.950000px;}
.x46_c00377{left:511.110000px;}
.x11_c00377{left:514.890000px;}
.x69_c00377{left:517.590000px;}
.xa2_c00377{left:521.008500px;}
.x35_c00377{left:522.180000px;}
.x1b_c00377{left:523.800000px;}
.xb7_c00377{left:532.921500px;}
.xbf_c00377{left:535.590000px;}
.x36_c00377{left:540.000000px;}
.x85_c00377{left:542.160000px;}
.x12_c00377{left:544.320000px;}
.x3f_c00377{left:547.290000px;}
.x2b_c00377{left:549.180000px;}
.x6a_c00377{left:550.530000px;}
.x37_c00377{left:554.850000px;}
.x26_c00377{left:559.710000px;}
.x5a_c00377{left:564.300000px;}
.xc0_c00377{left:565.828500px;}
.xa9_c00377{left:567.718500px;}
.x6f_c00377{left:571.320000px;}
.x38_c00377{left:573.750000px;}
.x8b_c00377{left:577.164000px;}
.x47_c00377{left:583.200000px;}
.x40_c00377{left:586.710000px;}
.xb4_c00377{left:588.285000px;}
.x9a_c00377{left:590.637000px;}
.x2c_c00377{left:592.110000px;}
.x50_c00377{left:597.780000px;}
.x6b_c00377{left:599.130000px;}
.x5b_c00377{left:602.100000px;}
.x1c_c00377{left:603.180000px;}
.xa3_c00377{left:604.993500px;}
.x94_c00377{left:606.609000px;}
.x90_c00377{left:608.235000px;}
.xaa_c00377{left:611.562048px;}
.x7a_c00377{left:614.790000px;}
.xb8_c00377{left:639.277500px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs2_c00377{font-size:14.933333pt;}
.fs14_c00377{font-size:16.800000pt;}
.fse_c00377{font-size:19.600000pt;}
.fs10_c00377{font-size:28.934259pt;}
.fs12_c00377{font-size:41.066667pt;}
.fs13_c00377{font-size:44.800000pt;}
.fs11_c00377{font-size:45.733333pt;}
.fs7_c00377{font-size:54.133333pt;}
.fs5_c00377{font-size:56.000000pt;}
.fsb_c00377{font-size:59.733333pt;}
.fs6_c00377{font-size:60.666667pt;}
.fs4_c00377{font-size:61.600000pt;}
.fs8_c00377{font-size:62.533333pt;}
.fsa_c00377{font-size:63.466667pt;}
.fsd_c00377{font-size:63.468222pt;}
.fsf_c00377{font-size:63.468698pt;}
.fs9_c00377{font-size:65.333333pt;}
.fsc_c00377{font-size:66.266667pt;}
.fs3_c00377{font-size:77.466667pt;}
.fs0_c00377{font-size:101.733333pt;}
.fs1_c00377{font-size:190.400000pt;}
.y0_c00377{bottom:0.000000pt;}
.y91_c00377{bottom:91.202667pt;}
.y90_c00377{bottom:139.530667pt;}
.y8f_c00377{bottom:139.718667pt;}
.y8e_c00377{bottom:139.952000pt;}
.y8d_c00377{bottom:140.110667pt;}
.y8c_c00377{bottom:140.246667pt;}
.y8b_c00377{bottom:140.546667pt;}
.y8a_c00377{bottom:140.621333pt;}
.y89_c00377{bottom:140.861333pt;}
.y88_c00377{bottom:140.956000pt;}
.y87_c00377{bottom:141.312000pt;}
.y86_c00377{bottom:141.410667pt;}
.y85_c00377{bottom:141.546667pt;}
.y84_c00377{bottom:141.676000pt;}
.y83_c00377{bottom:141.761333pt;}
.y82_c00377{bottom:142.080000pt;}
.y81_c00377{bottom:154.908000pt;}
.y80_c00377{bottom:155.058667pt;}
.y7f_c00377{bottom:155.162667pt;}
.y7e_c00377{bottom:155.472000pt;}
.y7d_c00377{bottom:155.569333pt;}
.y7c_c00377{bottom:155.800000pt;}
.y7b_c00377{bottom:156.013333pt;}
.y7a_c00377{bottom:156.206667pt;}
.y79_c00377{bottom:156.342667pt;}
.y78_c00377{bottom:156.472000pt;}
.y77_c00377{bottom:156.616000pt;}
.y76_c00377{bottom:156.978667pt;}
.y75_c00377{bottom:157.052000pt;}
.y74_c00377{bottom:157.334667pt;}
.y73_c00377{bottom:157.452000pt;}
.y72_c00377{bottom:157.613333pt;}
.y71_c00377{bottom:157.918667pt;}
.y70_c00377{bottom:170.289333pt;}
.y6f_c00377{bottom:171.566667pt;}
.y6e_c00377{bottom:171.778667pt;}
.y6d_c00377{bottom:172.124000pt;}
.y6c_c00377{bottom:172.252000pt;}
.y6b_c00377{bottom:172.441333pt;}
.y6a_c00377{bottom:172.625333pt;}
.y69_c00377{bottom:172.778667pt;}
.y68_c00377{bottom:173.116000pt;}
.y67_c00377{bottom:173.289333pt;}
.y66_c00377{bottom:173.533333pt;}
.y65_c00377{bottom:173.760000pt;}
.y64_c00377{bottom:188.566667pt;}
.y63_c00377{bottom:239.156000pt;}
.y61_c00377{bottom:254.821280pt;}
.y5f_c00377{bottom:254.821472pt;}
.y60_c00377{bottom:254.821579pt;}
.y62_c00377{bottom:254.821824pt;}
.y5e_c00377{bottom:263.628811pt;}
.y5d_c00377{bottom:263.799915pt;}
.y5c_c00377{bottom:264.030112pt;}
.y5b_c00377{bottom:264.535051pt;}
.y5a_c00377{bottom:265.153333pt;}
.y59_c00377{bottom:265.324203pt;}
.y58_c00377{bottom:265.848437pt;}
.y57_c00377{bottom:266.105707pt;}
.y56_c00377{bottom:266.401333pt;}
.y54_c00377{bottom:303.120000pt;}
.y55_c00377{bottom:304.409333pt;}
.y53_c00377{bottom:324.002076pt;}
.y52_c00377{bottom:324.143196pt;}
.y51_c00377{bottom:324.524649pt;}
.y50_c00377{bottom:324.803240pt;}
.y4f_c00377{bottom:325.117605pt;}
.y4e_c00377{bottom:325.366255pt;}
.y4d_c00377{bottom:325.535963pt;}
.y4c_c00377{bottom:325.631919pt;}
.y4b_c00377{bottom:325.761064pt;}
.y4a_c00377{bottom:326.100583pt;}
.y49_c00377{bottom:326.231539pt;}
.y48_c00377{bottom:326.364184pt;}
.y47_c00377{bottom:326.880000pt;}
.y46_c00377{bottom:343.405333pt;}
.y45_c00377{bottom:343.533333pt;}
.y44_c00377{bottom:343.896000pt;}
.y43_c00377{bottom:344.146667pt;}
.y42_c00377{bottom:344.462667pt;}
.y41_c00377{bottom:344.609333pt;}
.y40_c00377{bottom:344.832000pt;}
.y3f_c00377{bottom:345.001333pt;}
.y3e_c00377{bottom:345.481333pt;}
.y3d_c00377{bottom:345.781333pt;}
.y3c_c00377{bottom:345.881333pt;}
.y3b_c00377{bottom:346.537333pt;}
.y3a_c00377{bottom:346.693333pt;}
.y39_c00377{bottom:347.038667pt;}
.y38_c00377{bottom:364.288000pt;}
.y37_c00377{bottom:364.565333pt;}
.y36_c00377{bottom:364.809333pt;}
.y35_c00377{bottom:365.237333pt;}
.y34_c00377{bottom:365.492000pt;}
.y33_c00377{bottom:365.676000pt;}
.y32_c00377{bottom:366.120000pt;}
.y31_c00377{bottom:366.316000pt;}
.y30_c00377{bottom:366.500000pt;}
.y2f_c00377{bottom:366.990667pt;}
.y2e_c00377{bottom:367.458667pt;}
.y2d_c00377{bottom:367.685333pt;}
.y2c_c00377{bottom:367.918667pt;}
.y2b_c00377{bottom:384.188000pt;}
.y2a_c00377{bottom:384.937333pt;}
.y29_c00377{bottom:385.280000pt;}
.y28_c00377{bottom:385.510667pt;}
.y27_c00377{bottom:385.878667pt;}
.y26_c00377{bottom:386.164000pt;}
.y25_c00377{bottom:386.414667pt;}
.y24_c00377{bottom:386.958667pt;}
.y23_c00377{bottom:387.196000pt;}
.y22_c00377{bottom:387.493333pt;}
.y21_c00377{bottom:387.837333pt;}
.y20_c00377{bottom:404.746667pt;}
.y1f_c00377{bottom:404.876000pt;}
.y1e_c00377{bottom:405.061333pt;}
.y1d_c00377{bottom:405.604000pt;}
.y1c_c00377{bottom:406.044000pt;}
.y1b_c00377{bottom:406.221333pt;}
.y1a_c00377{bottom:406.337333pt;}
.y19_c00377{bottom:406.428000pt;}
.y18_c00377{bottom:406.777333pt;}
.y17_c00377{bottom:406.949333pt;}
.y16_c00377{bottom:407.089333pt;}
.y15_c00377{bottom:407.517333pt;}
.y3_c00377{bottom:417.120000pt;}
.y14_c00377{bottom:426.856000pt;}
.y13_c00377{bottom:447.680000pt;}
.y12_c00377{bottom:468.293333pt;}
.y11_c00377{bottom:489.330667pt;}
.y10_c00377{bottom:509.730667pt;}
.yf_c00377{bottom:530.130667pt;}
.ye_c00377{bottom:550.504000pt;}
.yd_c00377{bottom:570.874667pt;}
.yc_c00377{bottom:591.036000pt;}
.yb_c00377{bottom:611.972000pt;}
.ya_c00377{bottom:632.342667pt;}
.y9_c00377{bottom:652.236000pt;}
.y8_c00377{bottom:673.273333pt;}
.y7_c00377{bottom:692.786667pt;}
.y6_c00377{bottom:713.196000pt;}
.y5_c00377{bottom:733.877333pt;}
.y4_c00377{bottom:771.552000pt;}
.y2_c00377{bottom:809.268000pt;}
.y1_c00377{bottom:816.848000pt;}
.h4_c00377{height:14.933333pt;}
.h16_c00377{height:16.800000pt;}
.h10_c00377{height:19.600000pt;}
.h12_c00377{height:28.934259pt;}
.h14_c00377{height:41.066667pt;}
.h15_c00377{height:44.800000pt;}
.h13_c00377{height:45.733333pt;}
.h9_c00377{height:54.133333pt;}
.h7_c00377{height:56.000000pt;}
.hd_c00377{height:59.733333pt;}
.h8_c00377{height:60.666667pt;}
.h6_c00377{height:61.600000pt;}
.ha_c00377{height:62.533333pt;}
.hc_c00377{height:63.466667pt;}
.hf_c00377{height:63.468222pt;}
.h11_c00377{height:63.468698pt;}
.hb_c00377{height:65.333333pt;}
.he_c00377{height:66.266667pt;}
.h5_c00377{height:77.466667pt;}
.h2_c00377{height:101.733333pt;}
.h3_c00377{height:190.400000pt;}
.h0_c00377{height:896.400000pt;}
.h1_c00377{height:896.666667pt;}
.w1_c00377{width:612.666667pt;}
.w0_c00377{width:612.933333pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:83.520000pt;}
.x2_c00377{left:96.240000pt;}
.x3_c00377{left:123.600000pt;}
.x9b_c00377{left:126.640000pt;}
.xa_c00377{left:133.200000pt;}
.x4_c00377{left:134.400000pt;}
.x51_c00377{left:135.360000pt;}
.xa4_c00377{left:136.320000pt;}
.xb0_c00377{left:137.440000pt;}
.xb9_c00377{left:138.416000pt;}
.xab_c00377{left:146.160000pt;}
.xb_c00377{left:151.200000pt;}
.x5_c00377{left:153.360000pt;}
.x48_c00377{left:154.560000pt;}
.xa6_c00377{left:158.073333pt;}
.x2d_c00377{left:159.840000pt;}
.x91_c00377{left:161.661333pt;}
.xb1_c00377{left:162.644000pt;}
.x74_c00377{left:164.400000pt;}
.x52_c00377{left:166.080000pt;}
.xac_c00377{left:167.280000pt;}
.x7b_c00377{left:168.960000pt;}
.x13_c00377{left:171.360000pt;}
.x8c_c00377{left:173.202667pt;}
.x95_c00377{left:174.132000pt;}
.x2e_c00377{left:175.680000pt;}
.x1d_c00377{left:176.640000pt;}
.x75_c00377{left:180.000000pt;}
.x49_c00377{left:181.680000pt;}
.xba_c00377{left:184.026667pt;}
.x6_c00377{left:186.960000pt;}
.x80_c00377{left:188.400000pt;}
.xad_c00377{left:189.360000pt;}
.x96_c00377{left:191.401333pt;}
.x41_c00377{left:193.200000pt;}
.xa7_c00377{left:195.026667pt;}
.xbb_c00377{left:196.284000pt;}
.x14_c00377{left:197.520000pt;}
.x53_c00377{left:198.480000pt;}
.x9c_c00377{left:200.328000pt;}
.x81_c00377{left:202.080000pt;}
.x1e_c00377{left:204.240000pt;}
.x7c_c00377{left:205.200000pt;}
.x8d_c00377{left:206.294667pt;}
.x42_c00377{left:208.560000pt;}
.x62_c00377{left:211.200000pt;}
.x4a_c00377{left:213.120000pt;}
.x2f_c00377{left:214.320000pt;}
.x86_c00377{left:216.872000pt;}
.x9d_c00377{left:219.277333pt;}
.x27_c00377{left:221.040000pt;}
.x7d_c00377{left:222.960000pt;}
.xc_c00377{left:224.640000pt;}
.x76_c00377{left:226.560000pt;}
.x5c_c00377{left:228.960000pt;}
.x54_c00377{left:233.040000pt;}
.xbc_c00377{left:234.188000pt;}
.x30_c00377{left:235.440000pt;}
.x1f_c00377{left:237.840000pt;}
.x92_c00377{left:238.937333pt;}
.x87_c00377{left:241.350667pt;}
.x39_c00377{left:242.640000pt;}
.x15_c00377{left:243.840000pt;}
.xb2_c00377{left:246.410667pt;}
.xbd_c00377{left:248.350667pt;}
.x28_c00377{left:253.440000pt;}
.xa5_c00377{left:254.640000pt;}
.xd_c00377{left:258.000000pt;}
.x70_c00377{left:261.840000pt;}
.xb3_c00377{left:263.452000pt;}
.x97_c00377{left:264.346667pt;}
.x55_c00377{left:266.880000pt;}
.x16_c00377{left:267.840000pt;}
.x3a_c00377{left:270.720000pt;}
.x63_c00377{left:272.640000pt;}
.x20_c00377{left:273.840000pt;}
.x5d_c00377{left:276.000000pt;}
.x71_c00377{left:277.680000pt;}
.x82_c00377{left:281.040000pt;}
.x43_c00377{left:283.680000pt;}
.x21_c00377{left:285.600000pt;}
.x4b_c00377{left:290.880000pt;}
.x8e_c00377{left:293.178667pt;}
.xae_c00377{left:294.960000pt;}
.x56_c00377{left:297.360000pt;}
.x3b_c00377{left:299.040000pt;}
.x83_c00377{left:300.000000pt;}
.x17_c00377{left:301.200000pt;}
.x64_c00377{left:302.160000pt;}
.x22_c00377{left:304.320000pt;}
.x5e_c00377{left:306.000000pt;}
.x98_c00377{left:308.773333pt;}
.x31_c00377{left:310.080000pt;}
.x7e_c00377{left:312.480000pt;}
.x93_c00377{left:313.861333pt;}
.x9e_c00377{left:318.645333pt;}
.x65_c00377{left:319.920000pt;}
.x88_c00377{left:320.818667pt;}
.x57_c00377{left:322.080000pt;}
.x77_c00377{left:324.480000pt;}
.x72_c00377{left:336.240000pt;}
.x23_c00377{left:337.680000pt;}
.x3c_c00377{left:338.640000pt;}
.x9f_c00377{left:342.889333pt;}
.x32_c00377{left:344.400000pt;}
.x89_c00377{left:346.232000pt;}
.xe_c00377{left:349.440000pt;}
.x7_c00377{left:353.280000pt;}
.x66_c00377{left:354.960000pt;}
.x4c_c00377{left:356.880000pt;}
.x6c_c00377{left:358.320000pt;}
.x73_c00377{left:361.440000pt;}
.xb5_c00377{left:363.305333pt;}
.xf_c00377{left:366.480000pt;}
.x18_c00377{left:368.880000pt;}
.x29_c00377{left:373.680000pt;}
.x4d_c00377{left:377.040000pt;}
.xa0_c00377{left:378.410667pt;}
.x67_c00377{left:379.920000pt;}
.x99_c00377{left:380.813333pt;}
.x3d_c00377{left:383.040000pt;}
.x6d_c00377{left:385.200000pt;}
.x5f_c00377{left:386.160000pt;}
.x78_c00377{left:388.080000pt;}
.xaf_c00377{left:389.760000pt;}
.xa8_c00377{left:391.358667pt;}
.x8f_c00377{left:393.532000pt;}
.x2a_c00377{left:394.800000pt;}
.x10_c00377{left:396.480000pt;}
.x44_c00377{left:399.840000pt;}
.x84_c00377{left:402.240000pt;}
.x58_c00377{left:403.200000pt;}
.x3e_c00377{left:404.880000pt;}
.x68_c00377{left:406.560000pt;}
.x33_c00377{left:407.520000pt;}
.x8a_c00377{left:409.116000pt;}
.x8_c00377{left:410.400000pt;}
.x19_c00377{left:413.040000pt;}
.x60_c00377{left:415.200000pt;}
.x24_c00377{left:419.520000pt;}
.x4e_c00377{left:420.720000pt;}
.x7f_c00377{left:422.160000pt;}
.xa1_c00377{left:423.320000pt;}
.x45_c00377{left:425.280000pt;}
.x59_c00377{left:429.360000pt;}
.x34_c00377{left:431.280000pt;}
.x4f_c00377{left:433.440000pt;}
.x61_c00377{left:435.600000pt;}
.x1a_c00377{left:436.800000pt;}
.x6e_c00377{left:439.200000pt;}
.xb6_c00377{left:440.822667pt;}
.xbe_c00377{left:442.738667pt;}
.x79_c00377{left:444.720000pt;}
.x25_c00377{left:450.240000pt;}
.x9_c00377{left:452.400000pt;}
.x46_c00377{left:454.320000pt;}
.x11_c00377{left:457.680000pt;}
.x69_c00377{left:460.080000pt;}
.xa2_c00377{left:463.118667pt;}
.x35_c00377{left:464.160000pt;}
.x1b_c00377{left:465.600000pt;}
.xb7_c00377{left:473.708000pt;}
.xbf_c00377{left:476.080000pt;}
.x36_c00377{left:480.000000pt;}
.x85_c00377{left:481.920000pt;}
.x12_c00377{left:483.840000pt;}
.x3f_c00377{left:486.480000pt;}
.x2b_c00377{left:488.160000pt;}
.x6a_c00377{left:489.360000pt;}
.x37_c00377{left:493.200000pt;}
.x26_c00377{left:497.520000pt;}
.x5a_c00377{left:501.600000pt;}
.xc0_c00377{left:502.958667pt;}
.xa9_c00377{left:504.638667pt;}
.x6f_c00377{left:507.840000pt;}
.x38_c00377{left:510.000000pt;}
.x8b_c00377{left:513.034667pt;}
.x47_c00377{left:518.400000pt;}
.x40_c00377{left:521.520000pt;}
.xb4_c00377{left:522.920000pt;}
.x9a_c00377{left:525.010667pt;}
.x2c_c00377{left:526.320000pt;}
.x50_c00377{left:531.360000pt;}
.x6b_c00377{left:532.560000pt;}
.x5b_c00377{left:535.200000pt;}
.x1c_c00377{left:536.160000pt;}
.xa3_c00377{left:537.772000pt;}
.x94_c00377{left:539.208000pt;}
.x90_c00377{left:540.653333pt;}
.xaa_c00377{left:543.610709pt;}
.x7a_c00377{left:546.480000pt;}
.xb8_c00377{left:568.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_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_4ab86c84425994a9e06b01c2.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;}
.mad_c00378{transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);}
.m14_c00378{transform:matrix(0.012324,0.000123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.012324,0.000123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.012324,0.000123,-0.002500,0.249988,0,0);}
.m40_c00378{transform:matrix(0.016569,0.000215,-0.003250,0.249979,0,0);-ms-transform:matrix(0.016569,0.000215,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.016569,0.000215,-0.003250,0.249979,0,0);}
.m6_c00378{transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.036958,0.000370,-0.002500,0.249988,0,0);}
.m41_c00378{transform:matrix(0.090567,0.001177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.090567,0.001177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.090567,0.001177,-0.003250,0.249979,0,0);}
.m5e_c00378{transform:matrix(0.101395,0.001420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.101395,0.001420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.101395,0.001420,-0.003500,0.249976,0,0);}
.m38_c00378{transform:matrix(0.114280,0.001486,-0.003250,0.249979,0,0);-ms-transform:matrix(0.114280,0.001486,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.114280,0.001486,-0.003250,0.249979,0,0);}
.me6_c00378{transform:matrix(0.118133,0.002008,-0.004249,0.249964,0,0);-ms-transform:matrix(0.118133,0.002008,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.118133,0.002008,-0.004249,0.249964,0,0);}
.m55_c00378{transform:matrix(0.119030,0.001547,-0.003250,0.249979,0,0);-ms-transform:matrix(0.119030,0.001547,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.119030,0.001547,-0.003250,0.249979,0,0);}
.m31_c00378{transform:matrix(0.123836,0.001486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.123836,0.001486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.123836,0.001486,-0.003000,0.249982,0,0);}
.m63_c00378{transform:matrix(0.141589,0.002124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.141589,0.002124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.141589,0.002124,-0.003750,0.249972,0,0);}
.m3f_c00378{transform:matrix(0.141843,0.001844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.141843,0.001844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.141843,0.001844,-0.003250,0.249979,0,0);}
.m74_c00378{transform:matrix(0.143661,0.002011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143661,0.002011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143661,0.002011,-0.003500,0.249976,0,0);}
.m52_c00378{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);}
.m50_c00378{transform:matrix(0.144838,0.001883,-0.003250,0.249979,0,0);-ms-transform:matrix(0.144838,0.001883,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.144838,0.001883,-0.003250,0.249979,0,0);}
.m3b_c00378{transform:matrix(0.147438,0.001917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147438,0.001917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147438,0.001917,-0.003250,0.249979,0,0);}
.me3_c00378{transform:matrix(0.150403,0.002557,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150403,0.002557,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150403,0.002557,-0.004249,0.249964,0,0);}
.me0_c00378{transform:matrix(0.154968,0.002634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154968,0.002634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154968,0.002634,-0.004249,0.249964,0,0);}
.mc1_c00378{transform:matrix(0.155924,0.001871,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155924,0.001871,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155924,0.001871,-0.003000,0.249982,0,0);}
.m62_c00378{transform:matrix(0.156187,0.002343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156187,0.002343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156187,0.002343,-0.003750,0.249972,0,0);}
.md4_c00378{transform:matrix(0.157937,0.002685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157937,0.002685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157937,0.002685,-0.004249,0.249964,0,0);}
.mc0_c00378{transform:matrix(0.158169,0.001898,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158169,0.001898,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158169,0.001898,-0.003000,0.249982,0,0);}
.mb8_c00378{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);}
.me1_c00378{transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);}
.m57_c00378{transform:matrix(0.160699,0.002250,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160699,0.002250,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160699,0.002250,-0.003500,0.249976,0,0);}
.m80_c00378{transform:matrix(0.161450,0.001776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161450,0.001776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161450,0.001776,-0.002750,0.249985,0,0);}
.m79_c00378{transform:matrix(0.161889,0.002266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161889,0.002266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161889,0.002266,-0.003500,0.249976,0,0);}
.m54_c00378{transform:matrix(0.162021,0.002106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162021,0.002106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162021,0.002106,-0.003250,0.249979,0,0);}
.m9c_c00378{transform:matrix(0.162090,0.001783,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162090,0.001783,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162090,0.001783,-0.002750,0.249985,0,0);}
.m67_c00378{transform:matrix(0.162314,0.002272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162314,0.002272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162314,0.002272,-0.003500,0.249976,0,0);}
.m86_c00378{transform:matrix(0.162675,0.001789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162675,0.001789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162675,0.001789,-0.002750,0.249985,0,0);}
.m6a_c00378{transform:matrix(0.162754,0.002279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162754,0.002279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162754,0.002279,-0.003500,0.249976,0,0);}
.m88_c00378{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);}
.m51_c00378{transform:matrix(0.163176,0.002121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163176,0.002121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163176,0.002121,-0.003250,0.249979,0,0);}
.m26_c00378{transform:matrix(0.163578,0.001963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163578,0.001963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163578,0.001963,-0.003000,0.249982,0,0);}
.md0_c00378{transform:matrix(0.163603,0.001963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163603,0.001963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163603,0.001963,-0.003000,0.249982,0,0);}
.m9d_c00378{transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163765,0.001801,-0.002750,0.249985,0,0);}
.m46_c00378{transform:matrix(0.164931,0.002144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164931,0.002144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164931,0.002144,-0.003250,0.249979,0,0);}
.mef_c00378{transform:matrix(0.165046,0.002806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165046,0.002806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165046,0.002806,-0.004249,0.249964,0,0);}
.ma8_c00378{transform:matrix(0.165825,0.001824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165825,0.001824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165825,0.001824,-0.002750,0.249985,0,0);}
.m3d_c00378{transform:matrix(0.165881,0.002156,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165881,0.002156,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165881,0.002156,-0.003250,0.249979,0,0);}
.mdf_c00378{transform:matrix(0.166161,0.002825,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166161,0.002825,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166161,0.002825,-0.004249,0.249964,0,0);}
.m5b_c00378{transform:matrix(0.166324,0.002329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166324,0.002329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166324,0.002329,-0.003500,0.249976,0,0);}
.m98_c00378{transform:matrix(0.166445,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166445,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166445,0.001831,-0.002750,0.249985,0,0);}
.ma6_c00378{transform:matrix(0.166835,0.001835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166835,0.001835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166835,0.001835,-0.002750,0.249985,0,0);}
.m9_c00378{transform:matrix(0.167297,0.001673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167297,0.001673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167297,0.001673,-0.002500,0.249988,0,0);}
.mcb_c00378{transform:matrix(0.167373,0.002008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167373,0.002008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167373,0.002008,-0.003000,0.249982,0,0);}
.mb2_c00378{transform:matrix(0.167618,0.002011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167618,0.002011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167618,0.002011,-0.003000,0.249982,0,0);}
.m29_c00378{transform:matrix(0.167643,0.002012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167643,0.002012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167643,0.002012,-0.003000,0.249982,0,0);}
.me7_c00378{transform:matrix(0.167911,0.002854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167911,0.002854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167911,0.002854,-0.004249,0.249964,0,0);}
.mf3_c00378{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);}
.m101_c00378{transform:matrix(0.169016,0.002873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169016,0.002873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169016,0.002873,-0.004249,0.249964,0,0);}
.mf2_c00378{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);}
.md7_c00378{transform:matrix(0.169286,0.002878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169286,0.002878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169286,0.002878,-0.004249,0.249964,0,0);}
.mda_c00378{transform:matrix(0.169835,0.002887,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169835,0.002887,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169835,0.002887,-0.004249,0.249964,0,0);}
.m94_c00378{transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170195,0.001872,-0.002750,0.249985,0,0);}
.m4e_c00378{transform:matrix(0.170261,0.002213,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170261,0.002213,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170261,0.002213,-0.003250,0.249979,0,0);}
.m97_c00378{transform:matrix(0.171925,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171925,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171925,0.001891,-0.002750,0.249985,0,0);}
.m4d_c00378{transform:matrix(0.172100,0.002237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172100,0.002237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172100,0.002237,-0.003250,0.249979,0,0);}
.mea_c00378{transform:matrix(0.172500,0.002933,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172500,0.002933,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172500,0.002933,-0.004249,0.249964,0,0);}
.m3e_c00378{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);}
.mdb_c00378{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);}
.mf_c00378{transform:matrix(0.174561,0.001746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174561,0.001746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174561,0.001746,-0.002500,0.249988,0,0);}
.mb5_c00378{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);}
.m1f_c00378{transform:matrix(0.175267,0.002103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175267,0.002103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175267,0.002103,-0.003000,0.249982,0,0);}
.mdd_c00378{transform:matrix(0.175370,0.002981,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175370,0.002981,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175370,0.002981,-0.004249,0.249964,0,0);}
.mce_c00378{transform:matrix(0.175532,0.002106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175532,0.002106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175532,0.002106,-0.003000,0.249982,0,0);}
.m33_c00378{transform:matrix(0.176015,0.002288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176015,0.002288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176015,0.002288,-0.003250,0.249979,0,0);}
.m13_c00378{transform:matrix(0.176181,0.001762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176181,0.001762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176181,0.001762,-0.002500,0.249988,0,0);}
.m3a_c00378{transform:matrix(0.176185,0.002290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176185,0.002290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176185,0.002290,-0.003250,0.249979,0,0);}
.m75_c00378{transform:matrix(0.176213,0.002467,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176213,0.002467,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176213,0.002467,-0.003500,0.249976,0,0);}
.m6f_c00378{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);}
.ma3_c00378{transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177249,0.001950,-0.002750,0.249985,0,0);}
.mcc_c00378{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);}
.m53_c00378{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);}
.m8a_c00378{transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178524,0.001964,-0.002750,0.249985,0,0);}
.m5d_c00378{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);}
.m11_c00378{transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179111,0.001791,-0.002500,0.249988,0,0);}
.mc_c00378{transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);}
.mf5_c00378{transform:matrix(0.179554,0.003052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179554,0.003052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179554,0.003052,-0.004249,0.249964,0,0);}
.m96_c00378{transform:matrix(0.179799,0.001978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179799,0.001978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179799,0.001978,-0.002750,0.249985,0,0);}
.m25_c00378{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);}
.m58_c00378{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);}
.ma7_c00378{transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180224,0.001982,-0.002750,0.249985,0,0);}
.md_c00378{transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180261,0.001803,-0.002500,0.249988,0,0);}
.m4a_c00378{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);}
.m81_c00378{transform:matrix(0.180914,0.001990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180914,0.001990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180914,0.001990,-0.002750,0.249985,0,0);}
.mb_c00378{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);}
.mb0_c00378{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);}
.mb1_c00378{transform:matrix(0.181197,0.002174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181197,0.002174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181197,0.002174,-0.003000,0.249982,0,0);}
.mff_c00378{transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181284,0.003082,-0.004249,0.249964,0,0);}
.m70_c00378{transform:matrix(0.181482,0.002541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181482,0.002541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181482,0.002541,-0.003500,0.249976,0,0);}
.mcd_c00378{transform:matrix(0.182082,0.002185,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182082,0.002185,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182082,0.002185,-0.003000,0.249982,0,0);}
.m39_c00378{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);}
.m108_c00378{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);}
.m5a_c00378{transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182542,0.002556,-0.003500,0.249976,0,0);}
.m7a_c00378{transform:matrix(0.183417,0.002568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183417,0.002568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183417,0.002568,-0.003500,0.249976,0,0);}
.ma2_c00378{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);}
.mbd_c00378{transform:matrix(0.185007,0.002220,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185007,0.002220,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185007,0.002220,-0.003000,0.249982,0,0);}
.m8b_c00378{transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);}
.mcf_c00378{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);}
.m82_c00378{transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185744,0.002043,-0.002750,0.249985,0,0);}
.mf1_c00378{transform:matrix(0.185923,0.003161,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185923,0.003161,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185923,0.003161,-0.004249,0.249964,0,0);}
.mc5_c00378{transform:matrix(0.185977,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185977,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185977,0.002232,-0.003000,0.249982,0,0);}
.m100_c00378{transform:matrix(0.186338,0.003168,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186338,0.003168,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186338,0.003168,-0.004249,0.249964,0,0);}
.m7b_c00378{transform:matrix(0.186777,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186777,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186777,0.002615,-0.003500,0.249976,0,0);}
.m2a_c00378{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);}
.m8c_c00378{transform:matrix(0.186999,0.002057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186999,0.002057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186999,0.002057,-0.002750,0.249985,0,0);}
.me9_c00378{transform:matrix(0.187378,0.003185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187378,0.003185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187378,0.003185,-0.004249,0.249964,0,0);}
.m35_c00378{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);}
.md5_c00378{transform:matrix(0.188038,0.003197,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188038,0.003197,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188038,0.003197,-0.004249,0.249964,0,0);}
.m19_c00378{transform:matrix(0.188121,0.001881,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188121,0.001881,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188121,0.001881,-0.002500,0.249988,0,0);}
.m92_c00378{transform:matrix(0.188144,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188144,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188144,0.002070,-0.002750,0.249985,0,0);}
.m4f_c00378{transform:matrix(0.188144,0.002446,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188144,0.002446,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188144,0.002446,-0.003250,0.249979,0,0);}
.mbc_c00378{transform:matrix(0.188541,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188541,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188541,0.002262,-0.003000,0.249982,0,0);}
.m9e_c00378{transform:matrix(0.188954,0.002078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188954,0.002078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188954,0.002078,-0.002750,0.249985,0,0);}
.mb4_c00378{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);}
.mc2_c00378{transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);}
.me4_c00378{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);}
.mb3_c00378{transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189466,0.002274,-0.003000,0.249982,0,0);}
.m5f_c00378{transform:matrix(0.189734,0.002846,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189734,0.002846,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189734,0.002846,-0.003750,0.249972,0,0);}
.mca_c00378{transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189881,0.002279,-0.003000,0.249982,0,0);}
.ma1_c00378{transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190153,0.002092,-0.002750,0.249985,0,0);}
.m36_c00378{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);}
.m6d_c00378{transform:matrix(0.191086,0.002675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191086,0.002675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191086,0.002675,-0.003500,0.249976,0,0);}
.m2f_c00378{transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191116,0.002293,-0.003000,0.249982,0,0);}
.m9f_c00378{transform:matrix(0.191233,0.002104,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191233,0.002104,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191233,0.002104,-0.002750,0.249985,0,0);}
.mdc_c00378{transform:matrix(0.191802,0.003261,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191802,0.003261,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191802,0.003261,-0.004249,0.249964,0,0);}
.m109_c00378{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);}
.m56_c00378{transform:matrix(0.192401,0.002694,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192401,0.002694,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192401,0.002694,-0.003500,0.249976,0,0);}
.m47_c00378{transform:matrix(0.192509,0.002503,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192509,0.002503,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192509,0.002503,-0.003250,0.249979,0,0);}
.m68_c00378{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);}
.m73_c00378{transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193941,0.002715,-0.003500,0.249976,0,0);}
.mbe_c00378{transform:matrix(0.194261,0.002331,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194261,0.002331,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194261,0.002331,-0.003000,0.249982,0,0);}
.mab_c00378{transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);}
.m16_c00378{transform:matrix(0.195060,0.001951,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195060,0.001951,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195060,0.001951,-0.002500,0.249988,0,0);}
.mbb_c00378{transform:matrix(0.195301,0.002344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195301,0.002344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195301,0.002344,-0.003000,0.249982,0,0);}
.m43_c00378{transform:matrix(0.195578,0.002543,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195578,0.002543,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195578,0.002543,-0.003250,0.249979,0,0);}
.mc6_c00378{transform:matrix(0.196161,0.002354,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196161,0.002354,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196161,0.002354,-0.003000,0.249982,0,0);}
.m2c_c00378{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);}
.m18_c00378{transform:matrix(0.196800,0.001968,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196800,0.001968,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196800,0.001968,-0.002500,0.249988,0,0);}
.m22_c00378{transform:matrix(0.196906,0.002363,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196906,0.002363,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196906,0.002363,-0.003000,0.249982,0,0);}
.m87_c00378{transform:matrix(0.197068,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197068,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197068,0.002168,-0.002750,0.249985,0,0);}
.md3_c00378{transform:matrix(0.197132,0.003351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197132,0.003351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197132,0.003351,-0.004249,0.249964,0,0);}
.m23_c00378{transform:matrix(0.197296,0.002368,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197296,0.002368,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197296,0.002368,-0.003000,0.249982,0,0);}
.m2e_c00378{transform:matrix(0.197351,0.002368,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197351,0.002368,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197351,0.002368,-0.003000,0.249982,0,0);}
.m1c_c00378{transform:matrix(0.197720,0.001977,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197720,0.001977,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197720,0.001977,-0.002500,0.249988,0,0);}
.mba_c00378{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);}
.m9b_c00378{transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);}
.me2_c00378{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);}
.m5c_c00378{transform:matrix(0.198636,0.002781,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198636,0.002781,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198636,0.002781,-0.003500,0.249976,0,0);}
.m24_c00378{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);}
.m93_c00378{transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199828,0.002198,-0.002750,0.249985,0,0);}
.m69_c00378{transform:matrix(0.199905,0.002799,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199905,0.002799,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199905,0.002799,-0.003500,0.249976,0,0);}
.mc4_c00378{transform:matrix(0.200686,0.002408,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200686,0.002408,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200686,0.002408,-0.003000,0.249982,0,0);}
.mb6_c00378{transform:matrix(0.200831,0.002410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200831,0.002410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200831,0.002410,-0.003000,0.249982,0,0);}
.m65_c00378{transform:matrix(0.200990,0.002814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200990,0.002814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200990,0.002814,-0.003500,0.249976,0,0);}
.m37_c00378{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);}
.m7f_c00378{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);}
.meb_c00378{transform:matrix(0.202181,0.003437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202181,0.003437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202181,0.003437,-0.004249,0.249964,0,0);}
.m21_c00378{transform:matrix(0.202385,0.002429,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202385,0.002429,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202385,0.002429,-0.003000,0.249982,0,0);}
.mde_c00378{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);}
.me5_c00378{transform:matrix(0.203901,0.003466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203901,0.003466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203901,0.003466,-0.004249,0.249964,0,0);}
.m28_c00378{transform:matrix(0.203920,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203920,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203920,0.002447,-0.003000,0.249982,0,0);}
.m60_c00378{transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);}
.m30_c00378{transform:matrix(0.204835,0.002458,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204835,0.002458,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204835,0.002458,-0.003000,0.249982,0,0);}
.m34_c00378{transform:matrix(0.204958,0.002664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204958,0.002664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204958,0.002664,-0.003250,0.249979,0,0);}
.m85_c00378{transform:matrix(0.205243,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205243,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205243,0.002258,-0.002750,0.249985,0,0);}
.m10a_c00378{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);}
.ma5_c00378{transform:matrix(0.205363,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205363,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205363,0.002259,-0.002750,0.249985,0,0);}
.m66_c00378{transform:matrix(0.205510,0.002877,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205510,0.002877,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205510,0.002877,-0.003500,0.249976,0,0);}
.m2d_c00378{transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);}
.m10_c00378{transform:matrix(0.205710,0.002057,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205710,0.002057,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205710,0.002057,-0.002500,0.249988,0,0);}
.mee_c00378{transform:matrix(0.205865,0.003500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205865,0.003500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205865,0.003500,-0.004249,0.249964,0,0);}
.m27_c00378{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);}
.m72_c00378{transform:matrix(0.205965,0.002884,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205965,0.002884,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205965,0.002884,-0.003500,0.249976,0,0);}
.m6c_c00378{transform:matrix(0.205970,0.002884,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205970,0.002884,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205970,0.002884,-0.003500,0.249976,0,0);}
.md6_c00378{transform:matrix(0.206170,0.003505,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206170,0.003505,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206170,0.003505,-0.004249,0.249964,0,0);}
.m17_c00378{transform:matrix(0.206365,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206365,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206365,0.002064,-0.002500,0.249988,0,0);}
.m71_c00378{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);}
.m45_c00378{transform:matrix(0.208182,0.002706,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208182,0.002706,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208182,0.002706,-0.003250,0.249979,0,0);}
.mec_c00378{transform:matrix(0.208315,0.003541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208315,0.003541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208315,0.003541,-0.004249,0.249964,0,0);}
.maf_c00378{transform:matrix(0.208350,0.002500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208350,0.002500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208350,0.002500,-0.003000,0.249982,0,0);}
.m61_c00378{transform:matrix(0.209146,0.003137,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209146,0.003137,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209146,0.003137,-0.003750,0.249972,0,0);}
.m1b_c00378{transform:matrix(0.209370,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209370,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209370,0.002094,-0.002500,0.249988,0,0);}
.ma4_c00378{transform:matrix(0.209492,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209492,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209492,0.002304,-0.002750,0.249985,0,0);}
.mb9_c00378{transform:matrix(0.209565,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209565,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209565,0.002515,-0.003000,0.249982,0,0);}
.m7e_c00378{transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);}
.m1e_c00378{transform:matrix(0.210010,0.002520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210010,0.002520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210010,0.002520,-0.003000,0.249982,0,0);}
.m83_c00378{transform:matrix(0.210217,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210217,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210217,0.002312,-0.002750,0.249985,0,0);}
.m15_c00378{transform:matrix(0.210594,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210594,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210594,0.002106,-0.002500,0.249988,0,0);}
.m8d_c00378{transform:matrix(0.210602,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210602,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210602,0.002317,-0.002750,0.249985,0,0);}
.m2b_c00378{transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);}
.mf4_c00378{transform:matrix(0.211199,0.003590,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211199,0.003590,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211199,0.003590,-0.004249,0.249964,0,0);}
.m103_c00378{transform:matrix(0.212104,0.003606,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212104,0.003606,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212104,0.003606,-0.004249,0.249964,0,0);}
.mb7_c00378{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);}
.md8_c00378{transform:matrix(0.212784,0.003617,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212784,0.003617,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212784,0.003617,-0.004249,0.249964,0,0);}
.m32_c00378{transform:matrix(0.212887,0.002768,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212887,0.002768,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212887,0.002768,-0.003250,0.249979,0,0);}
.m7c_c00378{transform:matrix(0.213124,0.002984,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213124,0.002984,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213124,0.002984,-0.003500,0.249976,0,0);}
.m99_c00378{transform:matrix(0.213182,0.002345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213182,0.002345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213182,0.002345,-0.002750,0.249985,0,0);}
.m12_c00378{transform:matrix(0.213354,0.002134,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213354,0.002134,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213354,0.002134,-0.002500,0.249988,0,0);}
.m59_c00378{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);}
.m95_c00378{transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);}
.m107_c00378{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);}
.mbf_c00378{transform:matrix(0.214840,0.002578,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214840,0.002578,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214840,0.002578,-0.003000,0.249982,0,0);}
.m78_c00378{transform:matrix(0.215264,0.003014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215264,0.003014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215264,0.003014,-0.003500,0.249976,0,0);}
.m89_c00378{transform:matrix(0.216452,0.002381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216452,0.002381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216452,0.002381,-0.002750,0.249985,0,0);}
.m90_c00378{transform:matrix(0.217852,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217852,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217852,0.002396,-0.002750,0.249985,0,0);}
.m104_c00378{transform:matrix(0.217879,0.003704,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217879,0.003704,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217879,0.003704,-0.004249,0.249964,0,0);}
.mf9_c00378{transform:matrix(0.217919,0.003705,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217919,0.003705,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217919,0.003705,-0.004249,0.249964,0,0);}
.m5_c00378{transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);}
.m1d_c00378{transform:matrix(0.218224,0.002182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218224,0.002182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218224,0.002182,-0.002500,0.249988,0,0);}
.m1a_c00378{transform:matrix(0.218639,0.002186,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218639,0.002186,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218639,0.002186,-0.002500,0.249988,0,0);}
.m8e_c00378{transform:matrix(0.218902,0.002408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218902,0.002408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218902,0.002408,-0.002750,0.249985,0,0);}
.mf6_c00378{transform:matrix(0.219728,0.003735,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219728,0.003735,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219728,0.003735,-0.004249,0.249964,0,0);}
.m4c_c00378{transform:matrix(0.219981,0.002860,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219981,0.002860,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219981,0.002860,-0.003250,0.249979,0,0);}
.m7d_c00378{transform:matrix(0.220258,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220258,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220258,0.003084,-0.003500,0.249976,0,0);}
.m9a_c00378{transform:matrix(0.223191,0.002455,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223191,0.002455,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223191,0.002455,-0.002750,0.249985,0,0);}
.mac_c00378{transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);}
.med_c00378{transform:matrix(0.224153,0.003811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224153,0.003811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224153,0.003811,-0.004249,0.249964,0,0);}
.mc3_c00378{transform:matrix(0.226219,0.002715,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226219,0.002715,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226219,0.002715,-0.003000,0.249982,0,0);}
.mfb_c00378{transform:matrix(0.227332,0.003865,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227332,0.003865,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227332,0.003865,-0.004249,0.249964,0,0);}
.m48_c00378{transform:matrix(0.229691,0.002986,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229691,0.002986,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229691,0.002986,-0.003250,0.249979,0,0);}
.m8f_c00378{transform:matrix(0.230916,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230916,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230916,0.002540,-0.002750,0.249985,0,0);}
.m8_c00378{transform:matrix(0.233753,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233753,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233753,0.002338,-0.002500,0.249988,0,0);}
.m64_c00378{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);}
.m10b_c00378{transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235595,0.000000,0.000000,0.250000,0,0);}
.ma0_c00378{transform:matrix(0.239051,0.002630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239051,0.002630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239051,0.002630,-0.002750,0.249985,0,0);}
.m20_c00378{transform:matrix(0.239183,0.002870,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239183,0.002870,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239183,0.002870,-0.003000,0.249982,0,0);}
.mae_c00378{transform:matrix(0.239298,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239298,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239298,0.002872,-0.003000,0.249982,0,0);}
.md1_c00378{transform:matrix(0.239458,0.002873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239458,0.002873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239458,0.002873,-0.003000,0.249982,0,0);}
.m44_c00378{transform:matrix(0.242979,0.003159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242979,0.003159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242979,0.003159,-0.003250,0.249979,0,0);}
.m6b_c00378{transform:matrix(0.243771,0.003413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243771,0.003413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243771,0.003413,-0.003500,0.249976,0,0);}
.ma_c00378{transform:matrix(0.250197,0.002502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250197,0.002502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250197,0.002502,-0.002500,0.249988,0,0);}
.m42_c00378{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);}
.mf8_c00378{transform:matrix(0.254763,0.004331,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254763,0.004331,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254763,0.004331,-0.004249,0.249964,0,0);}
.mfe_c00378{transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257033,0.004370,-0.004249,0.249964,0,0);}
.ma9_c00378{transform:matrix(0.257254,0.002830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257254,0.002830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257254,0.002830,-0.002750,0.249985,0,0);}
.m76_c00378{transform:matrix(0.257835,0.003610,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257835,0.003610,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257835,0.003610,-0.003500,0.249976,0,0);}
.m102_c00378{transform:matrix(0.258438,0.004393,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258438,0.004393,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258438,0.004393,-0.004249,0.249964,0,0);}
.maa_c00378{transform:matrix(0.258519,0.002844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258519,0.002844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258519,0.002844,-0.002750,0.249985,0,0);}
.m84_c00378{transform:matrix(0.260969,0.002871,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260969,0.002871,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260969,0.002871,-0.002750,0.249985,0,0);}
.mc7_c00378{transform:matrix(0.261161,0.003134,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261161,0.003134,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261161,0.003134,-0.003000,0.249982,0,0);}
.mc9_c00378{transform:matrix(0.271825,0.003262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271825,0.003262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271825,0.003262,-0.003000,0.249982,0,0);}
.m4b_c00378{transform:matrix(0.273187,0.003551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273187,0.003551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273187,0.003551,-0.003250,0.249979,0,0);}
.me_c00378{transform:matrix(0.275976,0.002760,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275976,0.002760,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275976,0.002760,-0.002500,0.249988,0,0);}
.m105_c00378{transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276705,0.000000,0.000000,0.250000,0,0);}
.m6e_c00378{transform:matrix(0.281002,0.003934,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281002,0.003934,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281002,0.003934,-0.003500,0.249976,0,0);}
.mf0_c00378{transform:matrix(0.296072,0.005033,-0.004249,0.249964,0,0);-ms-transform:matrix(0.296072,0.005033,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.296072,0.005033,-0.004249,0.249964,0,0);}
.m106_c00378{transform:matrix(0.300645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300645,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(0.303234,0.003942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.303234,0.003942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.303234,0.003942,-0.003250,0.249979,0,0);}
.m3_c00378{transform:matrix(0.303580,0.003036,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303580,0.003036,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303580,0.003036,-0.002500,0.249988,0,0);}
.mfd_c00378{transform:matrix(0.304251,0.005172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.304251,0.005172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.304251,0.005172,-0.004249,0.249964,0,0);}
.md2_c00378{transform:matrix(0.307288,0.003687,-0.003000,0.249982,0,0);-ms-transform:matrix(0.307288,0.003687,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.307288,0.003687,-0.003000,0.249982,0,0);}
.m91_c00378{transform:matrix(0.313736,0.003451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.313736,0.003451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.313736,0.003451,-0.002750,0.249985,0,0);}
.mc8_c00378{transform:matrix(0.313807,0.003766,-0.003000,0.249982,0,0);-ms-transform:matrix(0.313807,0.003766,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.313807,0.003766,-0.003000,0.249982,0,0);}
.m77_c00378{transform:matrix(0.321648,0.004503,-0.003500,0.249976,0,0);-ms-transform:matrix(0.321648,0.004503,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.321648,0.004503,-0.003500,0.249976,0,0);}
.mfc_c00378{transform:matrix(0.339536,0.005772,-0.004249,0.249964,0,0);-ms-transform:matrix(0.339536,0.005772,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.339536,0.005772,-0.004249,0.249964,0,0);}
.md9_c00378{transform:matrix(0.354394,0.006025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.354394,0.006025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.354394,0.006025,-0.004249,0.249964,0,0);}
.mfa_c00378{transform:matrix(0.355179,0.006038,-0.004249,0.249964,0,0);-ms-transform:matrix(0.355179,0.006038,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.355179,0.006038,-0.004249,0.249964,0,0);}
.me8_c00378{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);}
.m1_c00378{transform:matrix(0.370335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370335,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{transform:matrix(0.375273,0.004879,-0.003250,0.249979,0,0);-ms-transform:matrix(0.375273,0.004879,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.375273,0.004879,-0.003250,0.249979,0,0);}
.m0_c00378{transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386405,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.391355,0.003914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391355,0.003914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391355,0.003914,-0.002500,0.249988,0,0);}
.m2_c00378{transform:matrix(0.487121,0.004871,-0.002500,0.249988,0,0);-ms-transform:matrix(0.487121,0.004871,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.487121,0.004871,-0.002500,0.249988,0,0);}
.m7_c00378{transform:matrix(0.581796,0.005818,-0.002500,0.249988,0,0);-ms-transform:matrix(0.581796,0.005818,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.581796,0.005818,-0.002500,0.249988,0,0);}
.mf7_c00378{transform:matrix(0.690035,0.011731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.690035,0.011731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.690035,0.011731,-0.004249,0.249964,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;}
.fs1a_c00378{font-size:48.300000px;}
.fs18_c00378{font-size:50.407282px;}
.fs19_c00378{font-size:53.557737px;}
.fs17_c00378{font-size:55.658041px;}
.fs4_c00378{font-size:61.953097px;}
.fs12_c00378{font-size:64.053875px;}
.fs0_c00378{font-size:66.150000px;}
.fs14_c00378{font-size:67.204065px;}
.fs5_c00378{font-size:67.204838px;}
.fsb_c00378{font-size:67.206585px;}
.fs11_c00378{font-size:68.254129px;}
.fs6_c00378{font-size:68.254914px;}
.fs9_c00378{font-size:68.255767px;}
.fsd_c00378{font-size:68.256688px;}
.fs1_c00378{font-size:69.300000px;}
.fs3_c00378{font-size:69.303465px;}
.fs15_c00378{font-size:69.304989px;}
.fs10_c00378{font-size:70.350000px;}
.fs13_c00378{font-size:70.354256px;}
.fsa_c00378{font-size:70.355944px;}
.fse_c00378{font-size:70.356894px;}
.fsc_c00378{font-size:70.357914px;}
.fsf_c00378{font-size:71.406997px;}
.fs16_c00378{font-size:72.455216px;}
.fs7_c00378{font-size:77.706565px;}
.fs8_c00378{font-size:93.457896px;}
.fs2_c00378{font-size:99.754987px;}
.y0_c00378{bottom:0.000000px;}
.y109_c00378{bottom:138.906000px;}
.y108_c00378{bottom:140.993727px;}
.y107_c00378{bottom:141.991961px;}
.y106_c00378{bottom:142.942962px;}
.y105_c00378{bottom:144.002465px;}
.y104_c00378{bottom:144.381030px;}
.y103_c00378{bottom:145.042886px;}
.y102_c00378{bottom:145.376055px;}
.y101_c00378{bottom:146.070213px;}
.y100_c00378{bottom:155.922540px;}
.yff_c00378{bottom:159.403016px;}
.yfe_c00378{bottom:159.666590px;}
.yfd_c00378{bottom:159.938579px;}
.yfc_c00378{bottom:160.482072px;}
.yfb_c00378{bottom:160.754571px;}
.yfa_c00378{bottom:161.273615px;}
.yf9_c00378{bottom:162.527804px;}
.yf8_c00378{bottom:163.187610px;}
.yf7_c00378{bottom:163.887723px;}
.yf6_c00378{bottom:173.592375px;}
.yf5_c00378{bottom:173.831244px;}
.yf4_c00378{bottom:174.098643px;}
.yf3_c00378{bottom:174.313572px;}
.yf2_c00378{bottom:175.120640px;}
.yf1_c00378{bottom:175.407567px;}
.yf0_c00378{bottom:175.737789px;}
.yef_c00378{bottom:176.277203px;}
.yee_c00378{bottom:176.420643px;}
.yed_c00378{bottom:176.732760px;}
.yec_c00378{bottom:177.268323px;}
.yeb_c00378{bottom:177.528200px;}
.yea_c00378{bottom:178.004612px;}
.ye9_c00378{bottom:178.123373px;}
.ye8_c00378{bottom:179.179713px;}
.ye7_c00378{bottom:179.703525px;}
.ye6_c00378{bottom:180.044351px;}
.ye5_c00378{bottom:180.647480px;}
.ye4_c00378{bottom:181.005671px;}
.ye3_c00378{bottom:181.331736px;}
.ye2_c00378{bottom:181.710705px;}
.ye1_c00378{bottom:192.698516px;}
.ye0_c00378{bottom:193.138238px;}
.ydf_c00378{bottom:194.106830px;}
.yde_c00378{bottom:194.547495px;}
.ydd_c00378{bottom:195.318896px;}
.ydc_c00378{bottom:195.576369px;}
.ydb_c00378{bottom:196.048680px;}
.yda_c00378{bottom:196.296591px;}
.yd9_c00378{bottom:196.740750px;}
.yd8_c00378{bottom:198.835830px;}
.yd7_c00378{bottom:199.051050px;}
.yd6_c00378{bottom:199.533000px;}
.yd5_c00378{bottom:243.668592px;}
.yd4_c00378{bottom:244.140642px;}
.yd3_c00378{bottom:244.401774px;}
.yd2_c00378{bottom:244.835748px;}
.yd1_c00378{bottom:245.469780px;}
.yd0_c00378{bottom:245.995734px;}
.ycf_c00378{bottom:247.001718px;}
.yce_c00378{bottom:247.724094px;}
.ycd_c00378{bottom:248.340570px;}
.ycc_c00378{bottom:248.938566px;}
.ycb_c00378{bottom:266.986440px;}
.yca_c00378{bottom:267.687972px;}
.yc9_c00378{bottom:267.964950px;}
.yc8_c00378{bottom:268.702494px;}
.yc7_c00378{bottom:269.333820px;}
.yc6_c00378{bottom:269.773626px;}
.yc5_c00378{bottom:270.120396px;}
.yc4_c00378{bottom:270.496350px;}
.yc3_c00378{bottom:270.998670px;}
.yc2_c00378{bottom:271.349508px;}
.yc1_c00378{bottom:292.047270px;}
.yc0_c00378{bottom:292.365474px;}
.ybf_c00378{bottom:292.857018px;}
.ybe_c00378{bottom:293.129628px;}
.ybd_c00378{bottom:293.988282px;}
.ybc_c00378{bottom:294.241020px;}
.ybb_c00378{bottom:294.555354px;}
.yba_c00378{bottom:294.840654px;}
.yb9_c00378{bottom:313.429404px;}
.yb8_c00378{bottom:313.743072px;}
.yb7_c00378{bottom:314.232348px;}
.yb6_c00378{bottom:314.967972px;}
.yb5_c00378{bottom:315.230502px;}
.yb4_c00378{bottom:315.755886px;}
.yb3_c00378{bottom:316.115112px;}
.yb2_c00378{bottom:316.610796px;}
.yb1_c00378{bottom:317.100504px;}
.yb0_c00378{bottom:317.253000px;}
.yaf_c00378{bottom:335.208303px;}
.yae_c00378{bottom:336.573534px;}
.yad_c00378{bottom:336.883388px;}
.yac_c00378{bottom:337.749286px;}
.yab_c00378{bottom:338.111829px;}
.yaa_c00378{bottom:338.826357px;}
.ya9_c00378{bottom:339.118443px;}
.ya8_c00378{bottom:340.018984px;}
.ya7_c00378{bottom:341.008674px;}
.ya6_c00378{bottom:359.378391px;}
.ya5_c00378{bottom:360.038702px;}
.ya4_c00378{bottom:360.586022px;}
.ya3_c00378{bottom:360.877663px;}
.ya2_c00378{bottom:361.930812px;}
.ya1_c00378{bottom:362.547487px;}
.ya0_c00378{bottom:363.025485px;}
.y9f_c00378{bottom:363.438962px;}
.y9e_c00378{bottom:363.958055px;}
.y9d_c00378{bottom:382.215448px;}
.y9c_c00378{bottom:382.687199px;}
.y9b_c00378{bottom:383.077207px;}
.y9a_c00378{bottom:383.394287px;}
.y99_c00378{bottom:384.010397px;}
.y98_c00378{bottom:385.019519px;}
.y97_c00378{bottom:385.227935px;}
.y96_c00378{bottom:385.801665px;}
.y95_c00378{bottom:386.391233px;}
.y94_c00378{bottom:386.909502px;}
.y93_c00378{bottom:405.854823px;}
.y92_c00378{bottom:406.581591px;}
.y91_c00378{bottom:406.910283px;}
.y90_c00378{bottom:407.885175px;}
.y8f_c00378{bottom:408.521130px;}
.y8e_c00378{bottom:409.220019px;}
.y8d_c00378{bottom:409.553395px;}
.y8c_c00378{bottom:409.884480px;}
.y8b_c00378{bottom:410.131416px;}
.y8a_c00378{bottom:429.110005px;}
.y89_c00378{bottom:429.823449px;}
.y88_c00378{bottom:430.256755px;}
.y87_c00378{bottom:430.453254px;}
.y86_c00378{bottom:431.288236px;}
.y85_c00378{bottom:431.902664px;}
.y84_c00378{bottom:432.288351px;}
.y83_c00378{bottom:432.585302px;}
.y82_c00378{bottom:432.811500px;}
.y80_c00378{bottom:452.119242px;}
.y7f_c00378{bottom:452.444367px;}
.y7e_c00378{bottom:452.546085px;}
.y7d_c00378{bottom:453.085371px;}
.y7c_c00378{bottom:453.515931px;}
.y7b_c00378{bottom:453.897450px;}
.y7a_c00378{bottom:454.408212px;}
.y79_c00378{bottom:473.749896px;}
.y78_c00378{bottom:474.425064px;}
.y77_c00378{bottom:474.825213px;}
.y76_c00378{bottom:475.368699px;}
.y75_c00378{bottom:475.619706px;}
.y74_c00378{bottom:476.381388px;}
.y73_c00378{bottom:477.252777px;}
.y72_c00378{bottom:477.613092px;}
.y71_c00378{bottom:478.272942px;}
.y70_c00378{bottom:478.791114px;}
.y6f_c00378{bottom:497.089194px;}
.y6e_c00378{bottom:497.652666px;}
.y6d_c00378{bottom:498.098769px;}
.y6c_c00378{bottom:498.325653px;}
.y6b_c00378{bottom:498.563814px;}
.y6a_c00378{bottom:499.334913px;}
.y69_c00378{bottom:499.977723px;}
.y68_c00378{bottom:500.748654px;}
.y67_c00378{bottom:501.123000px;}
.y66_c00378{bottom:519.618900px;}
.y65_c00378{bottom:520.518382px;}
.y64_c00378{bottom:520.939605px;}
.y63_c00378{bottom:522.421860px;}
.y62_c00378{bottom:523.300912px;}
.y61_c00378{bottom:523.803000px;}
.y60_c00378{bottom:542.105154px;}
.y5f_c00378{bottom:542.927346px;}
.y5e_c00378{bottom:543.611505px;}
.y5d_c00378{bottom:544.035096px;}
.y5c_c00378{bottom:544.503249px;}
.y5b_c00378{bottom:545.312841px;}
.y5a_c00378{bottom:545.736222px;}
.y59_c00378{bottom:546.110400px;}
.y58_c00378{bottom:546.753000px;}
.y57_c00378{bottom:565.050565px;}
.y56_c00378{bottom:565.486644px;}
.y55_c00378{bottom:565.897372px;}
.y54_c00378{bottom:566.371359px;}
.y53_c00378{bottom:566.641648px;}
.y52_c00378{bottom:566.866230px;}
.y51_c00378{bottom:567.571818px;}
.y50_c00378{bottom:568.238659px;}
.y4f_c00378{bottom:568.526674px;}
.y4e_c00378{bottom:568.891500px;}
.y4d_c00378{bottom:587.539542px;}
.y4c_c00378{bottom:587.718084px;}
.y4b_c00378{bottom:587.905108px;}
.y4a_c00378{bottom:588.680565px;}
.y49_c00378{bottom:589.020450px;}
.y48_c00378{bottom:589.476808px;}
.y47_c00378{bottom:590.235124px;}
.y46_c00378{bottom:590.800819px;}
.y45_c00378{bottom:591.241675px;}
.y44_c00378{bottom:591.573000px;}
.y3f_c00378{bottom:611.396268px;}
.y3e_c00378{bottom:611.396380px;}
.y43_c00378{bottom:611.396703px;}
.y42_c00378{bottom:611.396934px;}
.y40_c00378{bottom:611.396967px;}
.y3c_c00378{bottom:611.397042px;}
.y3d_c00378{bottom:611.397111px;}
.y41_c00378{bottom:611.397246px;}
.y81_c00378{bottom:631.132500px;}
.y3b_c00378{bottom:632.734483px;}
.y3a_c00378{bottom:632.832900px;}
.y39_c00378{bottom:633.668709px;}
.y38_c00378{bottom:634.184640px;}
.y37_c00378{bottom:634.717243px;}
.y36_c00378{bottom:635.029556px;}
.y35_c00378{bottom:635.423416px;}
.y34_c00378{bottom:635.851500px;}
.y33_c00378{bottom:654.108936px;}
.y32_c00378{bottom:654.854946px;}
.y31_c00378{bottom:655.120644px;}
.y30_c00378{bottom:655.577016px;}
.y2f_c00378{bottom:656.028006px;}
.y2e_c00378{bottom:656.377350px;}
.y2d_c00378{bottom:656.938608px;}
.y2c_c00378{bottom:657.917088px;}
.y2b_c00378{bottom:658.324716px;}
.y2a_c00378{bottom:658.801500px;}
.y29_c00378{bottom:677.431284px;}
.y28_c00378{bottom:677.706666px;}
.y27_c00378{bottom:678.088374px;}
.y26_c00378{bottom:678.678792px;}
.y25_c00378{bottom:679.177824px;}
.y24_c00378{bottom:679.682760px;}
.y23_c00378{bottom:680.175240px;}
.y22_c00378{bottom:680.959932px;}
.y21_c00378{bottom:681.170478px;}
.y20_c00378{bottom:681.481500px;}
.y1f_c00378{bottom:700.759710px;}
.y1e_c00378{bottom:701.016540px;}
.y1d_c00378{bottom:701.320815px;}
.y1c_c00378{bottom:701.672100px;}
.y1b_c00378{bottom:701.987160px;}
.y1a_c00378{bottom:702.304260px;}
.y19_c00378{bottom:702.499335px;}
.y18_c00378{bottom:702.803895px;}
.y17_c00378{bottom:703.251675px;}
.y16_c00378{bottom:703.349040px;}
.y15_c00378{bottom:724.681980px;}
.y14_c00378{bottom:725.524815px;}
.y13_c00378{bottom:725.950935px;}
.y12_c00378{bottom:726.460140px;}
.y11_c00378{bottom:726.761625px;}
.y10_c00378{bottom:727.059870px;}
.yf_c00378{bottom:727.387965px;}
.ye_c00378{bottom:727.711335px;}
.yd_c00378{bottom:728.274945px;}
.yc_c00378{bottom:728.658225px;}
.yb_c00378{bottom:729.323820px;}
.ya_c00378{bottom:729.882825px;}
.y9_c00378{bottom:730.210515px;}
.y8_c00378{bottom:730.715535px;}
.y7_c00378{bottom:730.887075px;}
.y6_c00378{bottom:775.997250px;}
.y5_c00378{bottom:777.695955px;}
.y4_c00378{bottom:778.181910px;}
.y3_c00378{bottom:780.031500px;}
.y2_c00378{bottom:917.604000px;}
.y1_c00378{bottom:918.684000px;}
.h1c_c00378{height:48.300000px;}
.h1a_c00378{height:50.407282px;}
.h1b_c00378{height:53.557737px;}
.h19_c00378{height:55.658041px;}
.h6_c00378{height:61.953097px;}
.h14_c00378{height:64.053875px;}
.h2_c00378{height:66.150000px;}
.h16_c00378{height:67.204065px;}
.h7_c00378{height:67.204838px;}
.hd_c00378{height:67.206585px;}
.h13_c00378{height:68.254129px;}
.h8_c00378{height:68.254914px;}
.hb_c00378{height:68.255767px;}
.hf_c00378{height:68.256688px;}
.h3_c00378{height:69.300000px;}
.h5_c00378{height:69.303465px;}
.h17_c00378{height:69.304989px;}
.h12_c00378{height:70.350000px;}
.h15_c00378{height:70.354256px;}
.hc_c00378{height:70.355944px;}
.h10_c00378{height:70.356894px;}
.he_c00378{height:70.357914px;}
.h11_c00378{height:71.406997px;}
.h18_c00378{height:72.455216px;}
.h9_c00378{height:77.706565px;}
.ha_c00378{height:93.457896px;}
.h4_c00378{height:99.754987px;}
.h1_c00378{height:1005.000000px;}
.h0_c00378{height:1005.150000px;}
.w0_c00378{width:715.200000px;}
.w1_c00378{width:715.500000px;}
.x0_c00378{left:0.000000px;}
.x85_c00378{left:91.909500px;}
.x8b_c00378{left:93.241994px;}
.x7e_c00378{left:108.853722px;}
.x77_c00378{left:113.179500px;}
.x65_c00378{left:114.581165px;}
.x3_c00378{left:115.624500px;}
.x30_c00378{left:116.638531px;}
.x4f_c00378{left:120.511197px;}
.x55_c00378{left:121.913178px;}
.x7b_c00378{left:123.482574px;}
.x19_c00378{left:124.591500px;}
.x78_c00378{left:125.887500px;}
.x7_c00378{left:127.029030px;}
.x72_c00378{left:129.426113px;}
.x86_c00378{left:132.919500px;}
.x60_c00378{left:144.339459px;}
.x5b_c00378{left:147.333000px;}
.x1a_c00378{left:150.510000px;}
.x66_c00378{left:151.604444px;}
.x36_c00378{left:152.979000px;}
.x3c_c00378{left:154.266000px;}
.x31_c00378{left:156.332240px;}
.x2a_c00378{left:159.121500px;}
.x2_c00378{left:161.460000px;}
.x1_c00378{left:164.970000px;}
.x22_c00378{left:166.213500px;}
.x1b_c00378{left:168.055500px;}
.x42_c00378{left:172.900500px;}
.x5c_c00378{left:174.328500px;}
.x32_c00378{left:176.584152px;}
.x56_c00378{left:178.650147px;}
.x8_c00378{left:182.547255px;}
.x8c_c00378{left:185.878938px;}
.x37_c00378{left:186.891000px;}
.x2b_c00378{left:189.418500px;}
.x61_c00378{left:191.788892px;}
.x67_c00378{left:193.745558px;}
.x7f_c00378{left:195.557634px;}
.x50_c00378{left:199.083105px;}
.x23_c00378{left:200.182500px;}
.x8d_c00378{left:204.780107px;}
.x4a_c00378{left:208.531500px;}
.x2c_c00378{left:213.442500px;}
.x98_c00378{left:217.398003px;}
.x48_c00378{left:218.520000px;}
.x9_c00378{left:219.845895px;}
.x57_c00378{left:221.011608px;}
.x7d_c00378{left:222.096672px;}
.x51_c00378{left:223.105269px;}
.x3d_c00378{left:227.716500px;}
.x38_c00378{left:230.406000px;}
.x1c_c00378{left:233.446500px;}
.x68_c00378{left:234.719705px;}
.x6c_c00378{left:236.147423px;}
.x79_c00378{left:237.939000px;}
.x62_c00378{left:241.686242px;}
.x13_c00378{left:245.084250px;}
.x80_c00378{left:247.129392px;}
.x69_c00378{left:249.575210px;}
.x2d_c00378{left:254.412000px;}
.x87_c00378{left:256.159500px;}
.xa_c00378{left:264.203175px;}
.x5d_c00378{left:265.248000px;}
.x58_c00378{left:268.804947px;}
.x1d_c00378{left:274.486500px;}
.x95_c00378{left:280.384280px;}
.x24_c00378{left:281.722500px;}
.x6d_c00378{left:283.616883px;}
.x14_c00378{left:284.745045px;}
.x43_c00378{left:287.697000px;}
.x39_c00378{left:288.738000px;}
.xb_c00378{left:289.779900px;}
.x8e_c00378{left:292.611128px;}
.x2e_c00378{left:294.099000px;}
.x99_c00378{left:295.342395px;}
.x88_c00378{left:296.869500px;}
.x33_c00378{left:299.444419px;}
.x4_c00378{left:300.583500px;}
.x7a_c00378{left:303.598500px;}
.x4b_c00378{left:309.525000px;}
.x96_c00378{left:310.589270px;}
.x1e_c00378{left:316.564500px;}
.x81_c00378{left:318.959664px;}
.x3e_c00378{left:320.059500px;}
.x44_c00378{left:321.136500px;}
.x15_c00378{left:324.201840px;}
.x8f_c00378{left:325.679567px;}
.xc_c00378{left:327.389025px;}
.x25_c00378{left:328.494000px;}
.x7c_c00378{left:329.747574px;}
.x52_c00378{left:331.930236px;}
.x34_c00378{left:333.467172px;}
.x73_c00378{left:336.314282px;}
.x59_c00378{left:340.095945px;}
.x5e_c00378{left:341.155500px;}
.x4c_c00378{left:342.742500px;}
.x49_c00378{left:345.418500px;}
.x5_c00378{left:349.179000px;}
.x45_c00378{left:351.393000px;}
.x9a_c00378{left:354.510000px;}
.x3f_c00378{left:356.520000px;}
.x1f_c00378{left:358.150500px;}
.x74_c00378{left:362.180924px;}
.x6e_c00378{left:364.628601px;}
.x2f_c00378{left:365.962500px;}
.x16_c00378{left:368.181225px;}
.xd_c00378{left:370.783350px;}
.x4d_c00378{left:374.607000px;}
.x5a_c00378{left:376.285986px;}
.x63_c00378{left:380.230671px;}
.x53_c00378{left:384.929001px;}
.x6f_c00378{left:387.050106px;}
.x40_c00378{left:388.114500px;}
.xe_c00378{left:390.706860px;}
.x26_c00378{left:395.188500px;}
.x35_c00378{left:398.002072px;}
.x46_c00378{left:400.261500px;}
.x82_c00378{left:401.873184px;}
.x17_c00378{left:406.259490px;}
.x20_c00378{left:407.352000px;}
.x3a_c00378{left:409.638000px;}
.xf_c00378{left:410.804355px;}
.x4e_c00378{left:414.855000px;}
.x6a_c00378{left:416.189715px;}
.x41_c00378{left:421.659000px;}
.x3b_c00378{left:424.024500px;}
.x90_c00378{left:425.084358px;}
.x70_c00378{left:429.169182px;}
.x64_c00378{left:432.116955px;}
.x27_c00378{left:433.219500px;}
.x18_c00378{left:438.393135px;}
.x91_c00378{left:443.450052px;}
.x10_c00378{left:444.773160px;}
.x75_c00378{left:446.155652px;}
.x6b_c00378{left:449.938609px;}
.x83_c00378{left:451.547496px;}
.x28_c00378{left:455.361000px;}
.x54_c00378{left:456.593493px;}
.x47_c00378{left:458.989500px;}
.x21_c00378{left:462.109500px;}
.x5f_c00378{left:463.269000px;}
.x89_c00378{left:468.072000px;}
.x11_c00378{left:473.133735px;}
.x71_c00378{left:479.923560px;}
.x84_c00378{left:485.259186px;}
.x8a_c00378{left:493.938000px;}
.x9b_c00378{left:497.880000px;}
.x92_c00378{left:504.184007px;}
.x93_c00378{left:516.120803px;}
.x29_c00378{left:517.528500px;}
.x6_c00378{left:519.049500px;}
.x9c_c00378{left:523.260000px;}
.x12_c00378{left:529.364430px;}
.x94_c00378{left:530.967548px;}
.x97_c00378{left:533.675970px;}
.x76_c00378{left:543.673434px;}
.x9d_c00378{left:549.450000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs1a_c00378{font-size:42.933333pt;}
.fs18_c00378{font-size:44.806473pt;}
.fs19_c00378{font-size:47.606878pt;}
.fs17_c00378{font-size:49.473814pt;}
.fs4_c00378{font-size:55.069420pt;}
.fs12_c00378{font-size:56.936778pt;}
.fs0_c00378{font-size:58.800000pt;}
.fs14_c00378{font-size:59.736947pt;}
.fs5_c00378{font-size:59.737634pt;}
.fsb_c00378{font-size:59.739187pt;}
.fs11_c00378{font-size:60.670337pt;}
.fs6_c00378{font-size:60.671035pt;}
.fs9_c00378{font-size:60.671793pt;}
.fsd_c00378{font-size:60.672612pt;}
.fs1_c00378{font-size:61.600000pt;}
.fs3_c00378{font-size:61.603080pt;}
.fs15_c00378{font-size:61.604435pt;}
.fs10_c00378{font-size:62.533333pt;}
.fs13_c00378{font-size:62.537116pt;}
.fsa_c00378{font-size:62.538617pt;}
.fse_c00378{font-size:62.539461pt;}
.fsc_c00378{font-size:62.540368pt;}
.fsf_c00378{font-size:63.472886pt;}
.fs16_c00378{font-size:64.404637pt;}
.fs7_c00378{font-size:69.072503pt;}
.fs8_c00378{font-size:83.073686pt;}
.fs2_c00378{font-size:88.671100pt;}
.y0_c00378{bottom:0.000000pt;}
.y109_c00378{bottom:123.472000pt;}
.y108_c00378{bottom:125.327757pt;}
.y107_c00378{bottom:126.215076pt;}
.y106_c00378{bottom:127.060411pt;}
.y105_c00378{bottom:128.002191pt;}
.y104_c00378{bottom:128.338693pt;}
.y103_c00378{bottom:128.927009pt;}
.y102_c00378{bottom:129.223160pt;}
.y101_c00378{bottom:129.840189pt;}
.y100_c00378{bottom:138.597813pt;}
.yff_c00378{bottom:141.691569pt;}
.yfe_c00378{bottom:141.925857pt;}
.yfd_c00378{bottom:142.167625pt;}
.yfc_c00378{bottom:142.650731pt;}
.yfb_c00378{bottom:142.892952pt;}
.yfa_c00378{bottom:143.354324pt;}
.yf9_c00378{bottom:144.469159pt;}
.yf8_c00378{bottom:145.055653pt;}
.yf7_c00378{bottom:145.677976pt;}
.yf6_c00378{bottom:154.304333pt;}
.yf5_c00378{bottom:154.516661pt;}
.yf4_c00378{bottom:154.754349pt;}
.yf3_c00378{bottom:154.945397pt;}
.yf2_c00378{bottom:155.662791pt;}
.yf1_c00378{bottom:155.917837pt;}
.yf0_c00378{bottom:156.211368pt;}
.yef_c00378{bottom:156.690847pt;}
.yee_c00378{bottom:156.818349pt;}
.yed_c00378{bottom:157.095787pt;}
.yec_c00378{bottom:157.571843pt;}
.yeb_c00378{bottom:157.802844pt;}
.yea_c00378{bottom:158.226321pt;}
.ye9_c00378{bottom:158.331887pt;}
.ye8_c00378{bottom:159.270856pt;}
.ye7_c00378{bottom:159.736467pt;}
.ye6_c00378{bottom:160.039423pt;}
.ye5_c00378{bottom:160.575537pt;}
.ye4_c00378{bottom:160.893929pt;}
.ye3_c00378{bottom:161.183765pt;}
.ye2_c00378{bottom:161.520627pt;}
.ye1_c00378{bottom:171.287569pt;}
.ye0_c00378{bottom:171.678433pt;}
.ydf_c00378{bottom:172.539404pt;}
.yde_c00378{bottom:172.931107pt;}
.ydd_c00378{bottom:173.616796pt;}
.ydc_c00378{bottom:173.845661pt;}
.ydb_c00378{bottom:174.265493pt;}
.yda_c00378{bottom:174.485859pt;}
.yd9_c00378{bottom:174.880667pt;}
.yd8_c00378{bottom:176.742960pt;}
.yd7_c00378{bottom:176.934267pt;}
.yd6_c00378{bottom:177.362667pt;}
.yd5_c00378{bottom:216.594304pt;}
.yd4_c00378{bottom:217.013904pt;}
.yd3_c00378{bottom:217.246021pt;}
.yd2_c00378{bottom:217.631776pt;}
.yd1_c00378{bottom:218.195360pt;}
.yd0_c00378{bottom:218.662875pt;}
.ycf_c00378{bottom:219.557083pt;}
.yce_c00378{bottom:220.199195pt;}
.ycd_c00378{bottom:220.747173pt;}
.ycc_c00378{bottom:221.278725pt;}
.ycb_c00378{bottom:237.321280pt;}
.yca_c00378{bottom:237.944864pt;}
.yc9_c00378{bottom:238.191067pt;}
.yc8_c00378{bottom:238.846661pt;}
.yc7_c00378{bottom:239.407840pt;}
.yc6_c00378{bottom:239.798779pt;}
.yc5_c00378{bottom:240.107019pt;}
.yc4_c00378{bottom:240.441200pt;}
.yc3_c00378{bottom:240.887707pt;}
.yc2_c00378{bottom:241.199563pt;}
.yc1_c00378{bottom:259.597573pt;}
.yc0_c00378{bottom:259.880421pt;}
.ybf_c00378{bottom:260.317349pt;}
.ybe_c00378{bottom:260.559669pt;}
.ybd_c00378{bottom:261.322917pt;}
.ybc_c00378{bottom:261.547573pt;}
.ybb_c00378{bottom:261.826981pt;}
.yba_c00378{bottom:262.080581pt;}
.yb9_c00378{bottom:278.603915pt;}
.yb8_c00378{bottom:278.882731pt;}
.yb7_c00378{bottom:279.317643pt;}
.yb6_c00378{bottom:279.971531pt;}
.yb5_c00378{bottom:280.204891pt;}
.yb4_c00378{bottom:280.671899pt;}
.yb3_c00378{bottom:280.991211pt;}
.yb2_c00378{bottom:281.431819pt;}
.yb1_c00378{bottom:281.867115pt;}
.yb0_c00378{bottom:282.002667pt;}
.yaf_c00378{bottom:297.962936pt;}
.yae_c00378{bottom:299.176475pt;}
.yad_c00378{bottom:299.451900pt;}
.yac_c00378{bottom:300.221588pt;}
.yab_c00378{bottom:300.543848pt;}
.yaa_c00378{bottom:301.178984pt;}
.ya9_c00378{bottom:301.438616pt;}
.ya8_c00378{bottom:302.239097pt;}
.ya7_c00378{bottom:303.118821pt;}
.ya6_c00378{bottom:319.447459pt;}
.ya5_c00378{bottom:320.034401pt;}
.ya4_c00378{bottom:320.520908pt;}
.ya3_c00378{bottom:320.780145pt;}
.ya2_c00378{bottom:321.716277pt;}
.ya1_c00378{bottom:322.264433pt;}
.ya0_c00378{bottom:322.689320pt;}
.y9f_c00378{bottom:323.056855pt;}
.y9e_c00378{bottom:323.518271pt;}
.y9d_c00378{bottom:339.747065pt;}
.y9c_c00378{bottom:340.166399pt;}
.y9b_c00378{bottom:340.513073pt;}
.y9a_c00378{bottom:340.794921pt;}
.y99_c00378{bottom:341.342575pt;}
.y98_c00378{bottom:342.239572pt;}
.y97_c00378{bottom:342.424831pt;}
.y96_c00378{bottom:342.934813pt;}
.y95_c00378{bottom:343.458873pt;}
.y94_c00378{bottom:343.919557pt;}
.y93_c00378{bottom:360.759843pt;}
.y92_c00378{bottom:361.405859pt;}
.y91_c00378{bottom:361.698029pt;}
.y90_c00378{bottom:362.564600pt;}
.y8f_c00378{bottom:363.129893pt;}
.y8e_c00378{bottom:363.751128pt;}
.y8d_c00378{bottom:364.047463pt;}
.y8c_c00378{bottom:364.341760pt;}
.y8b_c00378{bottom:364.561259pt;}
.y8a_c00378{bottom:381.431116pt;}
.y89_c00378{bottom:382.065288pt;}
.y88_c00378{bottom:382.450449pt;}
.y87_c00378{bottom:382.625115pt;}
.y86_c00378{bottom:383.367321pt;}
.y85_c00378{bottom:383.913479pt;}
.y84_c00378{bottom:384.256312pt;}
.y83_c00378{bottom:384.520268pt;}
.y82_c00378{bottom:384.721333pt;}
.y80_c00378{bottom:401.883771pt;}
.y7f_c00378{bottom:402.172771pt;}
.y7e_c00378{bottom:402.263187pt;}
.y7d_c00378{bottom:402.742552pt;}
.y7c_c00378{bottom:403.125272pt;}
.y7b_c00378{bottom:403.464400pt;}
.y7a_c00378{bottom:403.918411pt;}
.y79_c00378{bottom:421.111019pt;}
.y78_c00378{bottom:421.711168pt;}
.y77_c00378{bottom:422.066856pt;}
.y76_c00378{bottom:422.549955pt;}
.y75_c00378{bottom:422.773072pt;}
.y74_c00378{bottom:423.450123pt;}
.y73_c00378{bottom:424.224691pt;}
.y72_c00378{bottom:424.544971pt;}
.y71_c00378{bottom:425.131504pt;}
.y70_c00378{bottom:425.592101pt;}
.y6f_c00378{bottom:441.857061pt;}
.y6e_c00378{bottom:442.357925pt;}
.y6d_c00378{bottom:442.754461pt;}
.y6c_c00378{bottom:442.956136pt;}
.y6b_c00378{bottom:443.167835pt;}
.y6a_c00378{bottom:443.853256pt;}
.y69_c00378{bottom:444.424643pt;}
.y68_c00378{bottom:445.109915pt;}
.y67_c00378{bottom:445.442667pt;}
.y66_c00378{bottom:461.883467pt;}
.y65_c00378{bottom:462.683007pt;}
.y64_c00378{bottom:463.057427pt;}
.y63_c00378{bottom:464.374987pt;}
.y62_c00378{bottom:465.156367pt;}
.y61_c00378{bottom:465.602667pt;}
.y60_c00378{bottom:481.871248pt;}
.y5f_c00378{bottom:482.602085pt;}
.y5e_c00378{bottom:483.210227pt;}
.y5d_c00378{bottom:483.586752pt;}
.y5c_c00378{bottom:484.002888pt;}
.y5b_c00378{bottom:484.722525pt;}
.y5a_c00378{bottom:485.098864pt;}
.y59_c00378{bottom:485.431467pt;}
.y58_c00378{bottom:486.002667pt;}
.y57_c00378{bottom:502.267169pt;}
.y56_c00378{bottom:502.654795pt;}
.y55_c00378{bottom:503.019887pt;}
.y54_c00378{bottom:503.441208pt;}
.y53_c00378{bottom:503.681465pt;}
.y52_c00378{bottom:503.881093pt;}
.y51_c00378{bottom:504.508283pt;}
.y50_c00378{bottom:505.101031pt;}
.y4f_c00378{bottom:505.357044pt;}
.y4e_c00378{bottom:505.681333pt;}
.y4d_c00378{bottom:522.257371pt;}
.y4c_c00378{bottom:522.416075pt;}
.y4b_c00378{bottom:522.582319pt;}
.y4a_c00378{bottom:523.271613pt;}
.y49_c00378{bottom:523.573733pt;}
.y48_c00378{bottom:523.979385pt;}
.y47_c00378{bottom:524.653444pt;}
.y46_c00378{bottom:525.156284pt;}
.y45_c00378{bottom:525.548156pt;}
.y44_c00378{bottom:525.842667pt;}
.y3f_c00378{bottom:543.463349pt;}
.y3e_c00378{bottom:543.463449pt;}
.y43_c00378{bottom:543.463736pt;}
.y42_c00378{bottom:543.463941pt;}
.y40_c00378{bottom:543.463971pt;}
.y3c_c00378{bottom:543.464037pt;}
.y3d_c00378{bottom:543.464099pt;}
.y41_c00378{bottom:543.464219pt;}
.y81_c00378{bottom:561.006667pt;}
.y3b_c00378{bottom:562.430652pt;}
.y3a_c00378{bottom:562.518133pt;}
.y39_c00378{bottom:563.261075pt;}
.y38_c00378{bottom:563.719680pt;}
.y37_c00378{bottom:564.193105pt;}
.y36_c00378{bottom:564.470716pt;}
.y35_c00378{bottom:564.820815pt;}
.y34_c00378{bottom:565.201333pt;}
.y33_c00378{bottom:581.430165pt;}
.y32_c00378{bottom:582.093285pt;}
.y31_c00378{bottom:582.329461pt;}
.y30_c00378{bottom:582.735125pt;}
.y2f_c00378{bottom:583.136005pt;}
.y2e_c00378{bottom:583.446533pt;}
.y2d_c00378{bottom:583.945429pt;}
.y2c_c00378{bottom:584.815189pt;}
.y2b_c00378{bottom:585.177525pt;}
.y2a_c00378{bottom:585.601333pt;}
.y29_c00378{bottom:602.161141pt;}
.y28_c00378{bottom:602.405925pt;}
.y27_c00378{bottom:602.745221pt;}
.y26_c00378{bottom:603.270037pt;}
.y25_c00378{bottom:603.713621pt;}
.y24_c00378{bottom:604.162453pt;}
.y23_c00378{bottom:604.600213pt;}
.y22_c00378{bottom:605.297717pt;}
.y21_c00378{bottom:605.484869pt;}
.y20_c00378{bottom:605.761333pt;}
.y1f_c00378{bottom:622.897520pt;}
.y1e_c00378{bottom:623.125813pt;}
.y1d_c00378{bottom:623.396280pt;}
.y1c_c00378{bottom:623.708533pt;}
.y1b_c00378{bottom:623.988587pt;}
.y1a_c00378{bottom:624.270453pt;}
.y19_c00378{bottom:624.443853pt;}
.y18_c00378{bottom:624.714573pt;}
.y17_c00378{bottom:625.112600pt;}
.y16_c00378{bottom:625.199147pt;}
.y15_c00378{bottom:644.161760pt;}
.y14_c00378{bottom:644.910947pt;}
.y13_c00378{bottom:645.289720pt;}
.y12_c00378{bottom:645.742347pt;}
.y11_c00378{bottom:646.010333pt;}
.y10_c00378{bottom:646.275440pt;}
.yf_c00378{bottom:646.567080pt;}
.ye_c00378{bottom:646.854520pt;}
.yd_c00378{bottom:647.355507pt;}
.yc_c00378{bottom:647.696200pt;}
.yb_c00378{bottom:648.287840pt;}
.ya_c00378{bottom:648.784733pt;}
.y9_c00378{bottom:649.076013pt;}
.y8_c00378{bottom:649.524920pt;}
.y7_c00378{bottom:649.677400pt;}
.y6_c00378{bottom:689.775333pt;}
.y5_c00378{bottom:691.285293pt;}
.y4_c00378{bottom:691.717253pt;}
.y3_c00378{bottom:693.361333pt;}
.y2_c00378{bottom:815.648000pt;}
.y1_c00378{bottom:816.608000pt;}
.h1c_c00378{height:42.933333pt;}
.h1a_c00378{height:44.806473pt;}
.h1b_c00378{height:47.606878pt;}
.h19_c00378{height:49.473814pt;}
.h6_c00378{height:55.069420pt;}
.h14_c00378{height:56.936778pt;}
.h2_c00378{height:58.800000pt;}
.h16_c00378{height:59.736947pt;}
.h7_c00378{height:59.737634pt;}
.hd_c00378{height:59.739187pt;}
.h13_c00378{height:60.670337pt;}
.h8_c00378{height:60.671035pt;}
.hb_c00378{height:60.671793pt;}
.hf_c00378{height:60.672612pt;}
.h3_c00378{height:61.600000pt;}
.h5_c00378{height:61.603080pt;}
.h17_c00378{height:61.604435pt;}
.h12_c00378{height:62.533333pt;}
.h15_c00378{height:62.537116pt;}
.hc_c00378{height:62.538617pt;}
.h10_c00378{height:62.539461pt;}
.he_c00378{height:62.540368pt;}
.h11_c00378{height:63.472886pt;}
.h18_c00378{height:64.404637pt;}
.h9_c00378{height:69.072503pt;}
.ha_c00378{height:83.073686pt;}
.h4_c00378{height:88.671100pt;}
.h1_c00378{height:893.333333pt;}
.h0_c00378{height:893.466667pt;}
.w0_c00378{width:635.733333pt;}
.w1_c00378{width:636.000000pt;}
.x0_c00378{left:0.000000pt;}
.x85_c00378{left:81.697333pt;}
.x8b_c00378{left:82.881772pt;}
.x7e_c00378{left:96.758864pt;}
.x77_c00378{left:100.604000pt;}
.x65_c00378{left:101.849924pt;}
.x3_c00378{left:102.777333pt;}
.x30_c00378{left:103.678695pt;}
.x4f_c00378{left:107.121064pt;}
.x55_c00378{left:108.367269pt;}
.x7b_c00378{left:109.762288pt;}
.x19_c00378{left:110.748000pt;}
.x78_c00378{left:111.900000pt;}
.x7_c00378{left:112.914693pt;}
.x72_c00378{left:115.045433pt;}
.x86_c00378{left:118.150667pt;}
.x60_c00378{left:128.301741pt;}
.x5b_c00378{left:130.962667pt;}
.x1a_c00378{left:133.786667pt;}
.x66_c00378{left:134.759505pt;}
.x36_c00378{left:135.981333pt;}
.x3c_c00378{left:137.125333pt;}
.x31_c00378{left:138.961991pt;}
.x2a_c00378{left:141.441333pt;}
.x2_c00378{left:143.520000pt;}
.x1_c00378{left:146.640000pt;}
.x22_c00378{left:147.745333pt;}
.x1b_c00378{left:149.382667pt;}
.x42_c00378{left:153.689333pt;}
.x5c_c00378{left:154.958667pt;}
.x32_c00378{left:156.963691pt;}
.x56_c00378{left:158.800131pt;}
.x8_c00378{left:162.264227pt;}
.x8c_c00378{left:165.225723pt;}
.x37_c00378{left:166.125333pt;}
.x2b_c00378{left:168.372000pt;}
.x61_c00378{left:170.479015pt;}
.x67_c00378{left:172.218273pt;}
.x7f_c00378{left:173.829008pt;}
.x50_c00378{left:176.962760pt;}
.x23_c00378{left:177.940000pt;}
.x8d_c00378{left:182.026761pt;}
.x4a_c00378{left:185.361333pt;}
.x2c_c00378{left:189.726667pt;}
.x98_c00378{left:193.242669pt;}
.x48_c00378{left:194.240000pt;}
.x9_c00378{left:195.418573pt;}
.x57_c00378{left:196.454763pt;}
.x7d_c00378{left:197.419264pt;}
.x51_c00378{left:198.315795pt;}
.x3d_c00378{left:202.414667pt;}
.x38_c00378{left:204.805333pt;}
.x1c_c00378{left:207.508000pt;}
.x68_c00378{left:208.639737pt;}
.x6c_c00378{left:209.908820pt;}
.x79_c00378{left:211.501333pt;}
.x62_c00378{left:214.832215pt;}
.x13_c00378{left:217.852667pt;}
.x80_c00378{left:219.670571pt;}
.x69_c00378{left:221.844631pt;}
.x2d_c00378{left:226.144000pt;}
.x87_c00378{left:227.697333pt;}
.xa_c00378{left:234.847267pt;}
.x5d_c00378{left:235.776000pt;}
.x58_c00378{left:238.937731pt;}
.x1d_c00378{left:243.988000pt;}
.x95_c00378{left:249.230471pt;}
.x24_c00378{left:250.420000pt;}
.x6d_c00378{left:252.103896pt;}
.x14_c00378{left:253.106707pt;}
.x43_c00378{left:255.730667pt;}
.x39_c00378{left:256.656000pt;}
.xb_c00378{left:257.582133pt;}
.x8e_c00378{left:260.098780pt;}
.x2e_c00378{left:261.421333pt;}
.x99_c00378{left:262.526573pt;}
.x88_c00378{left:263.884000pt;}
.x33_c00378{left:266.172817pt;}
.x4_c00378{left:267.185333pt;}
.x7a_c00378{left:269.865333pt;}
.x4b_c00378{left:275.133333pt;}
.x96_c00378{left:276.079351pt;}
.x1e_c00378{left:281.390667pt;}
.x81_c00378{left:283.519701pt;}
.x3e_c00378{left:284.497333pt;}
.x44_c00378{left:285.454667pt;}
.x15_c00378{left:288.179413pt;}
.x8f_c00378{left:289.492948pt;}
.xc_c00378{left:291.012467pt;}
.x25_c00378{left:291.994667pt;}
.x7c_c00378{left:293.108955pt;}
.x52_c00378{left:295.049099pt;}
.x34_c00378{left:296.415264pt;}
.x73_c00378{left:298.946028pt;}
.x59_c00378{left:302.307507pt;}
.x5e_c00378{left:303.249333pt;}
.x4c_c00378{left:304.660000pt;}
.x49_c00378{left:307.038667pt;}
.x5_c00378{left:310.381333pt;}
.x45_c00378{left:312.349333pt;}
.x9a_c00378{left:315.120000pt;}
.x3f_c00378{left:316.906667pt;}
.x1f_c00378{left:318.356000pt;}
.x74_c00378{left:321.938599pt;}
.x6e_c00378{left:324.114312pt;}
.x2f_c00378{left:325.300000pt;}
.x16_c00378{left:327.272200pt;}
.xd_c00378{left:329.585200pt;}
.x4d_c00378{left:332.984000pt;}
.x5a_c00378{left:334.476432pt;}
.x63_c00378{left:337.982819pt;}
.x53_c00378{left:342.159112pt;}
.x6f_c00378{left:344.044539pt;}
.x40_c00378{left:344.990667pt;}
.xe_c00378{left:347.294987pt;}
.x26_c00378{left:351.278667pt;}
.x35_c00378{left:353.779620pt;}
.x46_c00378{left:355.788000pt;}
.x82_c00378{left:357.220608pt;}
.x17_c00378{left:361.119547pt;}
.x20_c00378{left:362.090667pt;}
.x3a_c00378{left:364.122667pt;}
.xf_c00378{left:365.159427pt;}
.x4e_c00378{left:368.760000pt;}
.x6a_c00378{left:369.946413pt;}
.x41_c00378{left:374.808000pt;}
.x3b_c00378{left:376.910667pt;}
.x90_c00378{left:377.852763pt;}
.x70_c00378{left:381.483717pt;}
.x64_c00378{left:384.103960pt;}
.x27_c00378{left:385.084000pt;}
.x18_c00378{left:389.682787pt;}
.x91_c00378{left:394.177824pt;}
.x10_c00378{left:395.353920pt;}
.x75_c00378{left:396.582801pt;}
.x6b_c00378{left:399.945431pt;}
.x83_c00378{left:401.375552pt;}
.x28_c00378{left:404.765333pt;}
.x54_c00378{left:405.860883pt;}
.x47_c00378{left:407.990667pt;}
.x21_c00378{left:410.764000pt;}
.x5f_c00378{left:411.794667pt;}
.x89_c00378{left:416.064000pt;}
.x11_c00378{left:420.563320pt;}
.x71_c00378{left:426.598720pt;}
.x84_c00378{left:431.341499pt;}
.x8a_c00378{left:439.056000pt;}
.x9b_c00378{left:442.560000pt;}
.x92_c00378{left:448.163561pt;}
.x93_c00378{left:458.774047pt;}
.x29_c00378{left:460.025333pt;}
.x6_c00378{left:461.377333pt;}
.x9c_c00378{left:465.120000pt;}
.x12_c00378{left:470.546160pt;}
.x94_c00378{left:471.971153pt;}
.x97_c00378{left:474.378640pt;}
.x76_c00378{left:483.265275pt;}
.x9d_c00378{left:488.400000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00379 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00379 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00379 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00379 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m14a_c00380{transform:matrix(0.015640,0.000094,-0.001500,0.249996,0,0);-ms-transform:matrix(0.015640,0.000094,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.015640,0.000094,-0.001500,0.249996,0,0);}
.mc2_c00380{transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017300,0.000000,0.000000,0.250000,0,0);}
.m12b_c00380{transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);}
.me1_c00380{transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);}
.m98_c00380{transform:matrix(0.058666,0.000704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.058666,0.000704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.058666,0.000704,-0.003000,0.249982,0,0);}
.mf_c00380{transform:matrix(0.075235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075235,0.000000,0.000000,0.250000,0,0);}
.mfc_c00380{transform:matrix(0.087210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087210,0.000000,0.000000,0.250000,0,0);}
.mc6_c00380{transform:matrix(0.093490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093490,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.098735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098735,0.000000,0.000000,0.250000,0,0);}
.m115_c00380{transform:matrix(0.129917,0.001819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.129917,0.001819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.129917,0.001819,-0.003500,0.249976,0,0);}
.m5c_c00380{transform:matrix(0.140930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140930,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{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);}
.m66_c00380{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);}
.m11d_c00380{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);}
.m2d_c00380{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m5f_c00380{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);}
.m8a_c00380{transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155380,0.000000,0.000000,0.250000,0,0);}
.m10f_c00380{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);}
.m5d_c00380{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);}
.m8c_c00380{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);}
.m120_c00380{transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);}
.m8e_c00380{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);}
.m8_c00380{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);}
.m67_c00380{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);}
.m88_c00380{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.m3b_c00380{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);}
.m60_c00380{transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{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);}
.m69_c00380{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);}
.m145_c00380{transform:matrix(0.163857,0.000983,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163857,0.000983,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163857,0.000983,-0.001500,0.249996,0,0);}
.ma2_c00380{transform:matrix(0.163883,0.001967,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163883,0.001967,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163883,0.001967,-0.003000,0.249982,0,0);}
.m7_c00380{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);}
.m11f_c00380{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);}
.m61_c00380{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);}
.mab_c00380{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);}
.m7e_c00380{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);}
.m6c_c00380{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);}
.m77_c00380{transform:matrix(0.166335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166335,0.000000,0.000000,0.250000,0,0);}
.m122_c00380{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);}
.m58_c00380{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);}
.m11_c00380{transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);}
.mea_c00380{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);}
.m107_c00380{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);}
.m36_c00380{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);}
.m27_c00380{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);}
.m13b_c00380{transform:matrix(0.169182,0.001015,-0.001500,0.249996,0,0);-ms-transform:matrix(0.169182,0.001015,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.169182,0.001015,-0.001500,0.249996,0,0);}
.m103_c00380{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);}
.mf1_c00380{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);}
.m9f_c00380{transform:matrix(0.170178,0.002042,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170178,0.002042,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170178,0.002042,-0.003000,0.249982,0,0);}
.m85_c00380{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);}
.m13f_c00380{transform:matrix(0.171442,0.001029,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171442,0.001029,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171442,0.001029,-0.001500,0.249996,0,0);}
.m11e_c00380{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);}
.meb_c00380{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);}
.m13e_c00380{transform:matrix(0.173142,0.001039,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173142,0.001039,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173142,0.001039,-0.001500,0.249996,0,0);}
.mcf_c00380{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);}
.me3_c00380{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);}
.m16_c00380{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);}
.m99_c00380{transform:matrix(0.173977,0.002088,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173977,0.002088,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173977,0.002088,-0.003000,0.249982,0,0);}
.m6f_c00380{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);}
.m123_c00380{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);}
.m22_c00380{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);}
.m26_c00380{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);}
.m3c_c00380{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);}
.m129_c00380{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);}
.m1_c00380{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);}
.me4_c00380{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);}
.me8_c00380{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);}
.m10a_c00380{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);}
.ma_c00380{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);}
.m39_c00380{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);}
.m12d_c00380{transform:matrix(0.178687,0.001072,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178687,0.001072,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178687,0.001072,-0.001500,0.249996,0,0);}
.mcc_c00380{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);}
.m79_c00380{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);}
.m9e_c00380{transform:matrix(0.180222,0.002163,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180222,0.002163,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180222,0.002163,-0.003000,0.249982,0,0);}
.md4_c00380{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);}
.me9_c00380{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);}
.m109_c00380{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.mde_c00380{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);}
.me6_c00380{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);}
.m72_c00380{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);}
.m105_c00380{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);}
.m76_c00380{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);}
.m9d_c00380{transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183227,0.002199,-0.003000,0.249982,0,0);}
.m11b_c00380{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);}
.m57_c00380{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);}
.m54_c00380{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);}
.m14_c00380{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);}
.m89_c00380{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);}
.m10b_c00380{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);}
.m110_c00380{transform:matrix(0.184187,0.002579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184187,0.002579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184187,0.002579,-0.003500,0.249976,0,0);}
.ma1_c00380{transform:matrix(0.184867,0.002218,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184867,0.002218,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184867,0.002218,-0.003000,0.249982,0,0);}
.md8_c00380{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);}
.m6d_c00380{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);}
.m10e_c00380{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);}
.m74_c00380{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);}
.m5b_c00380{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);}
.m146_c00380{transform:matrix(0.186387,0.001118,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186387,0.001118,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186387,0.001118,-0.001500,0.249996,0,0);}
.m144_c00380{transform:matrix(0.186527,0.001119,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186527,0.001119,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186527,0.001119,-0.001500,0.249996,0,0);}
.m100_c00380{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);}
.m56_c00380{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);}
.mef_c00380{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);}
.m2_c00380{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);}
.m13_c00380{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);}
.m12e_c00380{transform:matrix(0.188067,0.001128,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188067,0.001128,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188067,0.001128,-0.001500,0.249996,0,0);}
.m32_c00380{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);}
.m124_c00380{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);}
.m37_c00380{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);}
.m1a_c00380{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);}
.m6e_c00380{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);}
.m15_c00380{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);}
.mca_c00380{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);}
.m9b_c00380{transform:matrix(0.190196,0.002282,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190196,0.002282,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190196,0.002282,-0.003000,0.249982,0,0);}
.m134_c00380{transform:matrix(0.190322,0.001142,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190322,0.001142,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190322,0.001142,-0.001500,0.249996,0,0);}
.m19_c00380{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);}
.m95_c00380{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);}
.m7b_c00380{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);}
.mc3_c00380{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);}
.m13d_c00380{transform:matrix(0.191297,0.001148,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191297,0.001148,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191297,0.001148,-0.001500,0.249996,0,0);}
.m143_c00380{transform:matrix(0.191662,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191662,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191662,0.001150,-0.001500,0.249996,0,0);}
.md2_c00380{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);}
.mc1_c00380{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.m70_c00380{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);}
.m78_c00380{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);}
.m41_c00380{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);}
.m34_c00380{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);}
.m111_c00380{transform:matrix(0.192376,0.002693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192376,0.002693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192376,0.002693,-0.003500,0.249976,0,0);}
.me_c00380{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);}
.m55_c00380{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);}
.m5a_c00380{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);}
.m139_c00380{transform:matrix(0.193297,0.001160,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193297,0.001160,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193297,0.001160,-0.001500,0.249996,0,0);}
.m7f_c00380{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);}
.m28_c00380{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);}
.m10d_c00380{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);}
.m5e_c00380{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);}
.m12_c00380{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);}
.m133_c00380{transform:matrix(0.194681,0.001168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194681,0.001168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194681,0.001168,-0.001500,0.249996,0,0);}
.m125_c00380{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);}
.mb_c00380{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);}
.m73_c00380{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);}
.m136_c00380{transform:matrix(0.195406,0.001172,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195406,0.001172,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195406,0.001172,-0.001500,0.249996,0,0);}
.m29_c00380{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);}
.m97_c00380{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);}
.m80_c00380{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);}
.m128_c00380{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);}
.m63_c00380{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);}
.m3a_c00380{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);}
.m112_c00380{transform:matrix(0.196181,0.002747,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196181,0.002747,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196181,0.002747,-0.003500,0.249976,0,0);}
.mbb_c00380{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);}
.me7_c00380{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);}
.mb4_c00380{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);}
.m30_c00380{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);}
.mbe_c00380{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);}
.m48_c00380{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);}
.m3d_c00380{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);}
.m53_c00380{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);}
.m62_c00380{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);}
.mce_c00380{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);}
.m64_c00380{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);}
.m92_c00380{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);}
.m2e_c00380{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);}
.m106_c00380{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);}
.m75_c00380{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);}
.me5_c00380{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);}
.m38_c00380{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);}
.me2_c00380{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);}
.mfe_c00380{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);}
.m91_c00380{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);}
.m83_c00380{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);}
.mfa_c00380{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);}
.m96_c00380{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);}
.m40_c00380{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);}
.md5_c00380{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);}
.md3_c00380{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);}
.mb6_c00380{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);}
.m132_c00380{transform:matrix(0.203761,0.001223,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203761,0.001223,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203761,0.001223,-0.001500,0.249996,0,0);}
.m113_c00380{transform:matrix(0.203770,0.002853,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203770,0.002853,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203770,0.002853,-0.003500,0.249976,0,0);}
.ma9_c00380{transform:matrix(0.203855,0.002446,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203855,0.002446,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203855,0.002446,-0.003000,0.249982,0,0);}
.mcd_c00380{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.mbf_c00380{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);}
.mb8_c00380{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);}
.m71_c00380{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);}
.mfb_c00380{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);}
.m126_c00380{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);}
.mdf_c00380{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);}
.mf2_c00380{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);}
.m11c_c00380{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);}
.m17_c00380{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);}
.mc0_c00380{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);}
.m13a_c00380{transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);}
.m23_c00380{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);}
.m127_c00380{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);}
.m25_c00380{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);}
.m68_c00380{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);}
.ma7_c00380{transform:matrix(0.209215,0.002511,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209215,0.002511,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209215,0.002511,-0.003000,0.249982,0,0);}
.m20_c00380{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_c00380{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);}
.m33_c00380{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);}
.mbc_c00380{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);}
.m87_c00380{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);}
.m5_c00380{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);}
.m108_c00380{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);}
.m86_c00380{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);}
.md7_c00380{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);}
.mf6_c00380{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);}
.mb2_c00380{transform:matrix(0.213625,0.002563,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213625,0.002563,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213625,0.002563,-0.003000,0.249982,0,0);}
.m135_c00380{transform:matrix(0.213941,0.001284,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213941,0.001284,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213941,0.001284,-0.001500,0.249996,0,0);}
.maa_c00380{transform:matrix(0.214150,0.002570,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214150,0.002570,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214150,0.002570,-0.003000,0.249982,0,0);}
.mb7_c00380{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);}
.m12a_c00380{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);}
.mba_c00380{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);}
.md9_c00380{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);}
.m8d_c00380{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);}
.mb9_c00380{transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);}
.mcb_c00380{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);}
.mf3_c00380{transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);}
.md_c00380{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);}
.m118_c00380{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);}
.ma4_c00380{transform:matrix(0.218829,0.002626,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218829,0.002626,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218829,0.002626,-0.003000,0.249982,0,0);}
.m10c_c00380{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);}
.m90_c00380{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);}
.m8b_c00380{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);}
.m18_c00380{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);}
.m10_c00380{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);}
.m65_c00380{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_c00380{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m7d_c00380{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m101_c00380{transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);}
.md0_c00380{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);}
.ma0_c00380{transform:matrix(0.221739,0.002661,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221739,0.002661,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221739,0.002661,-0.003000,0.249982,0,0);}
.m4c_c00380{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.mc5_c00380{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);}
.m52_c00380{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);}
.m45_c00380{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);}
.m4d_c00380{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);}
.mac_c00380{transform:matrix(0.223334,0.002680,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223334,0.002680,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223334,0.002680,-0.003000,0.249982,0,0);}
.maf_c00380{transform:matrix(0.223609,0.002683,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223609,0.002683,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223609,0.002683,-0.003000,0.249982,0,0);}
.m93_c00380{transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);}
.m49_c00380{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);}
.med_c00380{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);}
.mdb_c00380{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);}
.m4a_c00380{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);}
.md6_c00380{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);}
.m140_c00380{transform:matrix(0.225611,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225611,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225611,0.001354,-0.001500,0.249996,0,0);}
.mff_c00380{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);}
.ma8_c00380{transform:matrix(0.227869,0.002734,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227869,0.002734,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227869,0.002734,-0.003000,0.249982,0,0);}
.m21_c00380{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);}
.m119_c00380{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m1b_c00380{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);}
.m6b_c00380{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00380{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.mb5_c00380{transform:matrix(0.229623,0.002755,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229623,0.002755,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229623,0.002755,-0.003000,0.249982,0,0);}
.m42_c00380{transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);}
.m121_c00380{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{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);}
.m31_c00380{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);}
.m81_c00380{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);}
.mc_c00380{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);}
.mad_c00380{transform:matrix(0.234818,0.002818,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234818,0.002818,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234818,0.002818,-0.003000,0.249982,0,0);}
.m2a_c00380{transform:matrix(0.237515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237515,0.000000,0.000000,0.250000,0,0);}
.ma3_c00380{transform:matrix(0.238513,0.002862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238513,0.002862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238513,0.002862,-0.003000,0.249982,0,0);}
.mda_c00380{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.mc8_c00380{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);}
.m82_c00380{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);}
.m4_c00380{transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);}
.m43_c00380{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);}
.m116_c00380{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);}
.mb3_c00380{transform:matrix(0.241938,0.002903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241938,0.002903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241938,0.002903,-0.003000,0.249982,0,0);}
.m3f_c00380{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);}
.mf0_c00380{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);}
.m1d_c00380{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);}
.m148_c00380{transform:matrix(0.244791,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244791,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244791,0.001469,-0.001500,0.249996,0,0);}
.m94_c00380{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.m59_c00380{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);}
.mb0_c00380{transform:matrix(0.246122,0.002953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246122,0.002953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246122,0.002953,-0.003000,0.249982,0,0);}
.mfd_c00380{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);}
.m12c_c00380{transform:matrix(0.246911,0.001481,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246911,0.001481,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246911,0.001481,-0.001500,0.249996,0,0);}
.m9_c00380{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.mdc_c00380{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);}
.m104_c00380{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);}
.m114_c00380{transform:matrix(0.249191,0.003489,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249191,0.003489,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249191,0.003489,-0.003500,0.249976,0,0);}
.mf4_c00380{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_c00380{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m7c_c00380{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);}
.m9c_c00380{transform:matrix(0.251332,0.003016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251332,0.003016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251332,0.003016,-0.003000,0.249982,0,0);}
.mf5_c00380{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);}
.me0_c00380{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);}
.m138_c00380{transform:matrix(0.254540,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254540,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254540,0.001527,-0.001500,0.249996,0,0);}
.m24_c00380{transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);}
.m12f_c00380{transform:matrix(0.256780,0.001541,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256780,0.001541,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256780,0.001541,-0.001500,0.249996,0,0);}
.m102_c00380{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);}
.ma6_c00380{transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259181,0.003110,-0.003000,0.249982,0,0);}
.m84_c00380{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);}
.mae_c00380{transform:matrix(0.263396,0.003161,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263396,0.003161,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263396,0.003161,-0.003000,0.249982,0,0);}
.mc7_c00380{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);}
.m131_c00380{transform:matrix(0.267535,0.001605,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267535,0.001605,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267535,0.001605,-0.001500,0.249996,0,0);}
.mf7_c00380{transform:matrix(0.267895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267895,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269465,0.000000,0.000000,0.250000,0,0);}
.m2f_c00380{transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{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);}
.m3e_c00380{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00380{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);}
.m50_c00380{transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);}
.m117_c00380{transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);}
.mc9_c00380{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);}
.mec_c00380{transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);}
.md1_c00380{transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);}
.m11a_c00380{transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00380{transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278270,0.000000,0.000000,0.250000,0,0);}
.mf9_c00380{transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);}
.m147_c00380{transform:matrix(0.278895,0.001673,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278895,0.001673,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278895,0.001673,-0.001500,0.249996,0,0);}
.mf8_c00380{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);}
.m13c_c00380{transform:matrix(0.284320,0.001706,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284320,0.001706,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284320,0.001706,-0.001500,0.249996,0,0);}
.m4f_c00380{transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289115,0.000000,0.000000,0.250000,0,0);}
.m44_c00380{transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289440,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290430,0.000000,0.000000,0.250000,0,0);}
.m47_c00380{transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00380{transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305590,0.000000,0.000000,0.250000,0,0);}
.m137_c00380{transform:matrix(0.312959,0.001878,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312959,0.001878,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312959,0.001878,-0.001500,0.249996,0,0);}
.m141_c00380{transform:matrix(0.325629,0.001954,-0.001500,0.249996,0,0);-ms-transform:matrix(0.325629,0.001954,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.325629,0.001954,-0.001500,0.249996,0,0);}
.m130_c00380{transform:matrix(0.333454,0.002001,-0.001500,0.249996,0,0);-ms-transform:matrix(0.333454,0.002001,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.333454,0.002001,-0.001500,0.249996,0,0);}
.m9a_c00380{transform:matrix(0.342655,0.004112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.342655,0.004112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.342655,0.004112,-0.003000,0.249982,0,0);}
.m46_c00380{transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);}
.m142_c00380{transform:matrix(0.362198,0.002173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.362198,0.002173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.362198,0.002173,-0.001500,0.249996,0,0);}
.ma5_c00380{transform:matrix(0.364204,0.004370,-0.003000,0.249982,0,0);-ms-transform:matrix(0.364204,0.004370,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.364204,0.004370,-0.003000,0.249982,0,0);}
.m51_c00380{transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369495,0.000000,0.000000,0.250000,0,0);}
.mb1_c00380{transform:matrix(0.371418,0.004457,-0.003000,0.249982,0,0);-ms-transform:matrix(0.371418,0.004457,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.371418,0.004457,-0.003000,0.249982,0,0);}
.mee_c00380{transform:matrix(0.414035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414035,0.000000,0.000000,0.250000,0,0);}
.m149_c00380{transform:matrix(0.444362,0.002666,-0.001500,0.249996,0,0);-ms-transform:matrix(0.444362,0.002666,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.444362,0.002666,-0.001500,0.249996,0,0);}
.m14b_c00380{transform:matrix(0.448537,0.002691,-0.001500,0.249996,0,0);-ms-transform:matrix(0.448537,0.002691,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.448537,0.002691,-0.001500,0.249996,0,0);}
.m8f_c00380{transform:matrix(0.584610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584610,0.000000,0.000000,0.250000,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;}
.fs15_c00380{font-size:46.200000px;}
.fs13_c00380{font-size:47.250000px;}
.fse_c00380{font-size:47.253402px;}
.fs11_c00380{font-size:49.350000px;}
.fsc_c00380{font-size:49.353553px;}
.fs10_c00380{font-size:50.400000px;}
.fsd_c00380{font-size:50.403629px;}
.fsf_c00380{font-size:51.450000px;}
.fsa_c00380{font-size:51.453704px;}
.fs16_c00380{font-size:51.455042px;}
.fs12_c00380{font-size:52.500000px;}
.fs17_c00380{font-size:52.500945px;}
.fs14_c00380{font-size:53.550000px;}
.fs18_c00380{font-size:54.600983px;}
.fsb_c00380{font-size:54.603931px;}
.fs8_c00380{font-size:58.800000px;}
.fs1_c00380{font-size:61.950000px;}
.fs4_c00380{font-size:63.000000px;}
.fs0_c00380{font-size:65.100000px;}
.fs9_c00380{font-size:67.200000px;}
.fs7_c00380{font-size:68.250000px;}
.fs3_c00380{font-size:69.300000px;}
.fs6_c00380{font-size:70.350000px;}
.fs5_c00380{font-size:71.400000px;}
.fs2_c00380{font-size:72.450000px;}
.y0_c00380{bottom:0.000000px;}
.y4a_c00380{bottom:142.801443px;}
.y49_c00380{bottom:143.785041px;}
.y48_c00380{bottom:144.740814px;}
.y47_c00380{bottom:144.971415px;}
.y46_c00380{bottom:145.497045px;}
.y45_c00380{bottom:146.071500px;}
.y6d_c00380{bottom:159.683403px;}
.y6c_c00380{bottom:160.521339px;}
.y6b_c00380{bottom:161.264577px;}
.y6a_c00380{bottom:161.431893px;}
.y69_c00380{bottom:161.550255px;}
.y68_c00380{bottom:161.910123px;}
.y67_c00380{bottom:162.009282px;}
.y66_c00380{bottom:162.556881px;}
.y65_c00380{bottom:162.692610px;}
.y64_c00380{bottom:162.804819px;}
.y63_c00380{bottom:163.020864px;}
.y62_c00380{bottom:163.292340px;}
.y61_c00380{bottom:163.476924px;}
.y60_c00380{bottom:163.934529px;}
.y5f_c00380{bottom:164.160153px;}
.y5e_c00380{bottom:178.701363px;}
.y5d_c00380{bottom:178.943013px;}
.y5c_c00380{bottom:179.090334px;}
.y5b_c00380{bottom:179.313939px;}
.y5a_c00380{bottom:179.386929px;}
.y59_c00380{bottom:179.513244px;}
.y58_c00380{bottom:179.788626px;}
.y57_c00380{bottom:179.958663px;}
.y56_c00380{bottom:180.219537px;}
.y55_c00380{bottom:180.329697px;}
.y54_c00380{bottom:180.595341px;}
.y53_c00380{bottom:180.695871px;}
.y52_c00380{bottom:180.917766px;}
.y51_c00380{bottom:180.980937px;}
.y50_c00380{bottom:181.249848px;}
.y4f_c00380{bottom:181.416717px;}
.y4e_c00380{bottom:181.710000px;}
.y4d_c00380{bottom:196.945500px;}
.y44_c00380{bottom:196.998000px;}
.y43_c00380{bottom:197.490000px;}
.y42_c00380{bottom:197.935500px;}
.y41_c00380{bottom:198.517500px;}
.y40_c00380{bottom:198.930000px;}
.y3f_c00380{bottom:199.315500px;}
.y3e_c00380{bottom:199.803000px;}
.y4c_c00380{bottom:214.807500px;}
.y3d_c00380{bottom:216.051000px;}
.y4b_c00380{bottom:232.654500px;}
.y3c_c00380{bottom:234.042000px;}
.y38_c00380{bottom:250.323000px;}
.y3b_c00380{bottom:252.076500px;}
.y37_c00380{bottom:268.210500px;}
.y3a_c00380{bottom:269.856000px;}
.y36_c00380{bottom:286.146000px;}
.y39_c00380{bottom:288.048000px;}
.y35_c00380{bottom:303.970500px;}
.y2f_c00380{bottom:306.547854px;}
.y2e_c00380{bottom:306.548118px;}
.y30_c00380{bottom:306.548232px;}
.y31_c00380{bottom:306.548970px;}
.y34_c00380{bottom:322.333500px;}
.y2d_c00380{bottom:323.959680px;}
.y2a_c00380{bottom:323.960352px;}
.y2c_c00380{bottom:323.960388px;}
.y2b_c00380{bottom:323.960490px;}
.y27_c00380{bottom:323.960640px;}
.y28_c00380{bottom:323.960718px;}
.y29_c00380{bottom:323.960934px;}
.y33_c00380{bottom:340.171500px;}
.y1f_c00380{bottom:341.766336px;}
.y20_c00380{bottom:341.766372px;}
.y21_c00380{bottom:341.766492px;}
.y24_c00380{bottom:341.766726px;}
.y23_c00380{bottom:341.766828px;}
.y22_c00380{bottom:341.766990px;}
.y26_c00380{bottom:341.766996px;}
.y25_c00380{bottom:341.767002px;}
.y32_c00380{bottom:358.152000px;}
.y1a_c00380{bottom:360.004734px;}
.y19_c00380{bottom:360.004818px;}
.y1b_c00380{bottom:360.004932px;}
.y17_c00380{bottom:360.004944px;}
.y18_c00380{bottom:360.005262px;}
.y1c_c00380{bottom:360.005550px;}
.y1d_c00380{bottom:360.006126px;}
.y1e_c00380{bottom:360.006264px;}
.y16_c00380{bottom:380.362842px;}
.y15_c00380{bottom:383.573952px;}
.y14_c00380{bottom:383.940000px;}
.y13_c00380{bottom:403.212000px;}
.y12_c00380{bottom:425.781000px;}
.y11_c00380{bottom:448.125000px;}
.y10_c00380{bottom:470.803500px;}
.yf_c00380{bottom:493.660500px;}
.ye_c00380{bottom:517.186500px;}
.yd_c00380{bottom:539.730000px;}
.yc_c00380{bottom:562.377000px;}
.yb_c00380{bottom:585.430500px;}
.ya_c00380{bottom:607.225500px;}
.y9_c00380{bottom:630.246000px;}
.y8_c00380{bottom:652.620000px;}
.y7_c00380{bottom:675.843000px;}
.y6_c00380{bottom:698.944500px;}
.y5_c00380{bottom:721.372500px;}
.y4_c00380{bottom:744.609000px;}
.y3_c00380{bottom:767.275500px;}
.y2_c00380{bottom:790.356000px;}
.y1_c00380{bottom:812.767500px;}
.h17_c00380{height:46.200000px;}
.h15_c00380{height:47.250000px;}
.h10_c00380{height:47.253402px;}
.h13_c00380{height:49.350000px;}
.he_c00380{height:49.353553px;}
.h12_c00380{height:50.400000px;}
.hf_c00380{height:50.403629px;}
.h11_c00380{height:51.450000px;}
.hc_c00380{height:51.453704px;}
.h18_c00380{height:51.455042px;}
.h14_c00380{height:52.500000px;}
.h19_c00380{height:52.500945px;}
.h16_c00380{height:53.550000px;}
.h1a_c00380{height:54.600983px;}
.hd_c00380{height:54.603931px;}
.ha_c00380{height:58.800000px;}
.h3_c00380{height:61.950000px;}
.h6_c00380{height:63.000000px;}
.h2_c00380{height:65.100000px;}
.hb_c00380{height:67.200000px;}
.h9_c00380{height:68.250000px;}
.h5_c00380{height:69.300000px;}
.h8_c00380{height:70.350000px;}
.h7_c00380{height:71.400000px;}
.h4_c00380{height:72.450000px;}
.h1_c00380{height:1005.000000px;}
.h0_c00380{height:1005.150000px;}
.w0_c00380{width:715.200000px;}
.w1_c00380{width:715.500000px;}
.x0_c00380{left:0.000000px;}
.x74_c00380{left:92.870646px;}
.x9b_c00380{left:94.230000px;}
.x6d_c00380{left:96.111582px;}
.x96_c00380{left:104.490000px;}
.xa1_c00380{left:112.590000px;}
.x75_c00380{left:114.742296px;}
.x6e_c00380{left:117.713196px;}
.xb9_c00380{left:118.980696px;}
.x9f_c00380{left:121.500000px;}
.x77_c00380{left:124.731810px;}
.x38_c00380{left:126.900000px;}
.xa4_c00380{left:128.250000px;}
.x29_c00380{left:129.870000px;}
.xa_c00380{left:131.220000px;}
.x1_c00380{left:132.840000px;}
.x11_c00380{left:134.460000px;}
.x9c_c00380{left:135.540000px;}
.x78_c00380{left:141.202686px;}
.xa2_c00380{left:142.290000px;}
.x70_c00380{left:143.905632px;}
.x9d_c00380{left:147.690000px;}
.x97_c00380{left:150.390000px;}
.x71_c00380{left:153.897072px;}
.x39_c00380{left:155.790000px;}
.x2a_c00380{left:157.950000px;}
.x40_c00380{left:160.110000px;}
.x56_c00380{left:162.000000px;}
.x30_c00380{left:163.890000px;}
.x24_c00380{left:166.320000px;}
.x1d_c00380{left:170.640000px;}
.x12_c00380{left:173.070000px;}
.x52_c00380{left:174.960000px;}
.xa0_c00380{left:176.310000px;}
.x2_c00380{left:177.660000px;}
.x98_c00380{left:179.010000px;}
.x41_c00380{left:181.440000px;}
.x4c_c00380{left:187.920000px;}
.x3a_c00380{left:190.080000px;}
.x60_c00380{left:191.430000px;}
.x67_c00380{left:193.860000px;}
.x72_c00380{left:199.259106px;}
.x31_c00380{left:200.880000px;}
.x6a_c00380{left:201.951000px;}
.x57_c00380{left:203.580000px;}
.x47_c00380{left:205.740000px;}
.x76_c00380{left:207.899706px;}
.x19_c00380{left:209.520000px;}
.x13_c00380{left:211.680000px;}
.xa3_c00380{left:215.730000px;}
.xb2_c00380{left:217.018500px;}
.xb_c00380{left:218.700000px;}
.x9e_c00380{left:220.050000px;}
.x2b_c00380{left:221.670000px;}
.x5a_c00380{left:225.720000px;}
.x3b_c00380{left:227.340000px;}
.xa6_c00380{left:228.843000px;}
.x3_c00380{left:231.120000px;}
.x6b_c00380{left:232.455000px;}
.x1e_c00380{left:234.090000px;}
.x32_c00380{left:235.440000px;}
.x73_c00380{left:239.491902px;}
.x25_c00380{left:240.840000px;}
.x6f_c00380{left:244.082394px;}
.x14_c00380{left:245.430000px;}
.x4d_c00380{left:246.510000px;}
.x58_c00380{left:247.860000px;}
.x63_c00380{left:249.210000px;}
.xa5_c00380{left:251.100000px;}
.x5b_c00380{left:252.180000px;}
.x42_c00380{left:255.690000px;}
.x99_c00380{left:257.040000px;}
.x1f_c00380{left:258.660000px;}
.xa7_c00380{left:260.692500px;}
.x4_c00380{left:262.710000px;}
.xb3_c00380{left:264.529500px;}
.x65_c00380{left:270.270000px;}
.x3c_c00380{left:271.620000px;}
.xc_c00380{left:273.240000px;}
.x26_c00380{left:275.670000px;}
.x48_c00380{left:278.100000px;}
.x4e_c00380{left:279.990000px;}
.xb4_c00380{left:281.284500px;}
.x15_c00380{left:284.040000px;}
.x2c_c00380{left:291.600000px;}
.x9a_c00380{left:294.030000px;}
.x1a_c00380{left:295.110000px;}
.x33_c00380{left:297.270000px;}
.x27_c00380{left:298.620000px;}
.x5_c00380{left:303.750000px;}
.xd_c00380{left:305.100000px;}
.x4f_c00380{left:308.340000px;}
.x20_c00380{left:311.850000px;}
.x5c_c00380{left:312.930000px;}
.x64_c00380{left:316.440000px;}
.x2d_c00380{left:317.790000px;}
.x61_c00380{left:323.190000px;}
.x16_c00380{left:325.620000px;}
.x50_c00380{left:329.670000px;}
.x43_c00380{left:331.020000px;}
.xba_c00380{left:332.851344px;}
.x5d_c00380{left:336.150000px;}
.x80_c00380{left:337.770000px;}
.x1b_c00380{left:340.740000px;}
.x49_c00380{left:341.820000px;}
.x21_c00380{left:342.900000px;}
.x86_c00380{left:344.520000px;}
.x62_c00380{left:346.680000px;}
.x68_c00380{left:348.300000px;}
.xe_c00380{left:351.540000px;}
.x3d_c00380{left:354.240000px;}
.x6_c00380{left:357.750000px;}
.x91_c00380{left:362.070000px;}
.xad_c00380{left:364.230000px;}
.x22_c00380{left:367.200000px;}
.x2e_c00380{left:371.250000px;}
.x5e_c00380{left:372.870000px;}
.x44_c00380{left:376.650000px;}
.x34_c00380{left:377.730000px;}
.xae_c00380{left:379.620000px;}
.xf_c00380{left:383.130000px;}
.x53_c00380{left:384.750000px;}
.x4a_c00380{left:386.370000px;}
.x7_c00380{left:387.450000px;}
.x2f_c00380{left:389.070000px;}
.x8c_c00380{left:390.150000px;}
.x51_c00380{left:391.500000px;}
.x17_c00380{left:393.120000px;}
.xbb_c00380{left:397.081692px;}
.x87_c00380{left:399.060000px;}
.x7a_c00380{left:400.410000px;}
.x45_c00380{left:404.190000px;}
.x54_c00380{left:405.810000px;}
.x59_c00380{left:406.890000px;}
.x8_c00380{left:408.240000px;}
.x3e_c00380{left:409.860000px;}
.x4b_c00380{left:412.290000px;}
.x35_c00380{left:414.990000px;}
.x23_c00380{left:416.880000px;}
.x5f_c00380{left:420.390000px;}
.x81_c00380{left:422.820000px;}
.x7b_c00380{left:424.440000px;}
.x8d_c00380{left:426.870000px;}
.x69_c00380{left:428.220000px;}
.x82_c00380{left:430.650000px;}
.xaf_c00380{left:433.890000px;}
.x18_c00380{left:435.240000px;}
.x28_c00380{left:436.590000px;}
.x88_c00380{left:438.750000px;}
.x1c_c00380{left:444.150000px;}
.xaa_c00380{left:451.170000px;}
.x89_c00380{left:453.600000px;}
.x36_c00380{left:454.950000px;}
.x55_c00380{left:460.080000px;}
.x92_c00380{left:461.430000px;}
.x10_c00380{left:462.780000px;}
.x9_c00380{left:465.480000px;}
.xa8_c00380{left:467.370000px;}
.x83_c00380{left:471.420000px;}
.x8a_c00380{left:475.200000px;}
.x7c_c00380{left:478.980000px;}
.x66_c00380{left:481.950000px;}
.x93_c00380{left:486.810000px;}
.x3f_c00380{left:492.750000px;}
.xb5_c00380{left:494.851500px;}
.x95_c00380{left:496.800000px;}
.xbc_c00380{left:498.338874px;}
.x6c_c00380{left:500.047500px;}
.xab_c00380{left:501.930000px;}
.x7d_c00380{left:506.250000px;}
.x46_c00380{left:507.600000px;}
.xb0_c00380{left:517.050000px;}
.x8e_c00380{left:518.130000px;}
.x37_c00380{left:519.210000px;}
.x84_c00380{left:521.370000px;}
.x79_c00380{left:525.690000px;}
.x7e_c00380{left:526.770000px;}
.xac_c00380{left:530.820000px;}
.xb6_c00380{left:532.119000px;}
.x8f_c00380{left:536.220000px;}
.x85_c00380{left:554.580000px;}
.xb7_c00380{left:556.672500px;}
.x8b_c00380{left:561.600000px;}
.x7f_c00380{left:564.300000px;}
.xa9_c00380{left:565.650000px;}
.xb1_c00380{left:575.640000px;}
.x94_c00380{left:579.960000px;}
.x90_c00380{left:581.850000px;}
.xbd_c00380{left:591.493200px;}
.xb8_c00380{left:596.947500px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fs15_c00380{font-size:41.066667pt;}
.fs13_c00380{font-size:42.000000pt;}
.fse_c00380{font-size:42.003024pt;}
.fs11_c00380{font-size:43.866667pt;}
.fsc_c00380{font-size:43.869825pt;}
.fs10_c00380{font-size:44.800000pt;}
.fsd_c00380{font-size:44.803225pt;}
.fsf_c00380{font-size:45.733333pt;}
.fsa_c00380{font-size:45.736626pt;}
.fs16_c00380{font-size:45.737815pt;}
.fs12_c00380{font-size:46.666667pt;}
.fs17_c00380{font-size:46.667507pt;}
.fs14_c00380{font-size:47.600000pt;}
.fs18_c00380{font-size:48.534207pt;}
.fsb_c00380{font-size:48.536828pt;}
.fs8_c00380{font-size:52.266667pt;}
.fs1_c00380{font-size:55.066667pt;}
.fs4_c00380{font-size:56.000000pt;}
.fs0_c00380{font-size:57.866667pt;}
.fs9_c00380{font-size:59.733333pt;}
.fs7_c00380{font-size:60.666667pt;}
.fs3_c00380{font-size:61.600000pt;}
.fs6_c00380{font-size:62.533333pt;}
.fs5_c00380{font-size:63.466667pt;}
.fs2_c00380{font-size:64.400000pt;}
.y0_c00380{bottom:0.000000pt;}
.y4a_c00380{bottom:126.934616pt;}
.y49_c00380{bottom:127.808925pt;}
.y48_c00380{bottom:128.658501pt;}
.y47_c00380{bottom:128.863480pt;}
.y46_c00380{bottom:129.330707pt;}
.y45_c00380{bottom:129.841333pt;}
.y6d_c00380{bottom:141.940803pt;}
.y6c_c00380{bottom:142.685635pt;}
.y6b_c00380{bottom:143.346291pt;}
.y6a_c00380{bottom:143.495016pt;}
.y69_c00380{bottom:143.600227pt;}
.y68_c00380{bottom:143.920109pt;}
.y67_c00380{bottom:144.008251pt;}
.y66_c00380{bottom:144.495005pt;}
.y65_c00380{bottom:144.615653pt;}
.y64_c00380{bottom:144.715395pt;}
.y63_c00380{bottom:144.907435pt;}
.y62_c00380{bottom:145.148747pt;}
.y61_c00380{bottom:145.312821pt;}
.y60_c00380{bottom:145.719581pt;}
.y5f_c00380{bottom:145.920136pt;}
.y5e_c00380{bottom:158.845656pt;}
.y5d_c00380{bottom:159.060456pt;}
.y5c_c00380{bottom:159.191408pt;}
.y5b_c00380{bottom:159.390168pt;}
.y5a_c00380{bottom:159.455048pt;}
.y59_c00380{bottom:159.567328pt;}
.y58_c00380{bottom:159.812112pt;}
.y57_c00380{bottom:159.963256pt;}
.y56_c00380{bottom:160.195144pt;}
.y55_c00380{bottom:160.293064pt;}
.y54_c00380{bottom:160.529192pt;}
.y53_c00380{bottom:160.618552pt;}
.y52_c00380{bottom:160.815792pt;}
.y51_c00380{bottom:160.871944pt;}
.y50_c00380{bottom:161.110976pt;}
.y4f_c00380{bottom:161.259304pt;}
.y4e_c00380{bottom:161.520000pt;}
.y4d_c00380{bottom:175.062667pt;}
.y44_c00380{bottom:175.109333pt;}
.y43_c00380{bottom:175.546667pt;}
.y42_c00380{bottom:175.942667pt;}
.y41_c00380{bottom:176.460000pt;}
.y40_c00380{bottom:176.826667pt;}
.y3f_c00380{bottom:177.169333pt;}
.y3e_c00380{bottom:177.602667pt;}
.y4c_c00380{bottom:190.940000pt;}
.y3d_c00380{bottom:192.045333pt;}
.y4b_c00380{bottom:206.804000pt;}
.y3c_c00380{bottom:208.037333pt;}
.y38_c00380{bottom:222.509333pt;}
.y3b_c00380{bottom:224.068000pt;}
.y37_c00380{bottom:238.409333pt;}
.y3a_c00380{bottom:239.872000pt;}
.y36_c00380{bottom:254.352000pt;}
.y39_c00380{bottom:256.042667pt;}
.y35_c00380{bottom:270.196000pt;}
.y2f_c00380{bottom:272.486981pt;}
.y2e_c00380{bottom:272.487216pt;}
.y30_c00380{bottom:272.487317pt;}
.y31_c00380{bottom:272.487973pt;}
.y34_c00380{bottom:286.518667pt;}
.y2d_c00380{bottom:287.964160pt;}
.y2a_c00380{bottom:287.964757pt;}
.y2c_c00380{bottom:287.964789pt;}
.y2b_c00380{bottom:287.964880pt;}
.y27_c00380{bottom:287.965013pt;}
.y28_c00380{bottom:287.965083pt;}
.y29_c00380{bottom:287.965275pt;}
.y33_c00380{bottom:302.374667pt;}
.y1f_c00380{bottom:303.792299pt;}
.y20_c00380{bottom:303.792331pt;}
.y21_c00380{bottom:303.792437pt;}
.y24_c00380{bottom:303.792645pt;}
.y23_c00380{bottom:303.792736pt;}
.y22_c00380{bottom:303.792880pt;}
.y26_c00380{bottom:303.792885pt;}
.y25_c00380{bottom:303.792891pt;}
.y32_c00380{bottom:318.357333pt;}
.y1a_c00380{bottom:320.004208pt;}
.y19_c00380{bottom:320.004283pt;}
.y1b_c00380{bottom:320.004384pt;}
.y17_c00380{bottom:320.004395pt;}
.y18_c00380{bottom:320.004677pt;}
.y1c_c00380{bottom:320.004933pt;}
.y1d_c00380{bottom:320.005445pt;}
.y1e_c00380{bottom:320.005568pt;}
.y16_c00380{bottom:338.100304pt;}
.y15_c00380{bottom:340.954624pt;}
.y14_c00380{bottom:341.280000pt;}
.y13_c00380{bottom:358.410667pt;}
.y12_c00380{bottom:378.472000pt;}
.y11_c00380{bottom:398.333333pt;}
.y10_c00380{bottom:418.492000pt;}
.yf_c00380{bottom:438.809333pt;}
.ye_c00380{bottom:459.721333pt;}
.yd_c00380{bottom:479.760000pt;}
.yc_c00380{bottom:499.890667pt;}
.yb_c00380{bottom:520.382667pt;}
.ya_c00380{bottom:539.756000pt;}
.y9_c00380{bottom:560.218667pt;}
.y8_c00380{bottom:580.106667pt;}
.y7_c00380{bottom:600.749333pt;}
.y6_c00380{bottom:621.284000pt;}
.y5_c00380{bottom:641.220000pt;}
.y4_c00380{bottom:661.874667pt;}
.y3_c00380{bottom:682.022667pt;}
.y2_c00380{bottom:702.538667pt;}
.y1_c00380{bottom:722.460000pt;}
.h17_c00380{height:41.066667pt;}
.h15_c00380{height:42.000000pt;}
.h10_c00380{height:42.003024pt;}
.h13_c00380{height:43.866667pt;}
.he_c00380{height:43.869825pt;}
.h12_c00380{height:44.800000pt;}
.hf_c00380{height:44.803225pt;}
.h11_c00380{height:45.733333pt;}
.hc_c00380{height:45.736626pt;}
.h18_c00380{height:45.737815pt;}
.h14_c00380{height:46.666667pt;}
.h19_c00380{height:46.667507pt;}
.h16_c00380{height:47.600000pt;}
.h1a_c00380{height:48.534207pt;}
.hd_c00380{height:48.536828pt;}
.ha_c00380{height:52.266667pt;}
.h3_c00380{height:55.066667pt;}
.h6_c00380{height:56.000000pt;}
.h2_c00380{height:57.866667pt;}
.hb_c00380{height:59.733333pt;}
.h9_c00380{height:60.666667pt;}
.h5_c00380{height:61.600000pt;}
.h8_c00380{height:62.533333pt;}
.h7_c00380{height:63.466667pt;}
.h4_c00380{height:64.400000pt;}
.h1_c00380{height:893.333333pt;}
.h0_c00380{height:893.466667pt;}
.w0_c00380{width:635.733333pt;}
.w1_c00380{width:636.000000pt;}
.x0_c00380{left:0.000000pt;}
.x74_c00380{left:82.551685pt;}
.x9b_c00380{left:83.760000pt;}
.x6d_c00380{left:85.432517pt;}
.x96_c00380{left:92.880000pt;}
.xa1_c00380{left:100.080000pt;}
.x75_c00380{left:101.993152pt;}
.x6e_c00380{left:104.633952pt;}
.xb9_c00380{left:105.760619pt;}
.x9f_c00380{left:108.000000pt;}
.x77_c00380{left:110.872720pt;}
.x38_c00380{left:112.800000pt;}
.xa4_c00380{left:114.000000pt;}
.x29_c00380{left:115.440000pt;}
.xa_c00380{left:116.640000pt;}
.x1_c00380{left:118.080000pt;}
.x11_c00380{left:119.520000pt;}
.x9c_c00380{left:120.480000pt;}
.x78_c00380{left:125.513499pt;}
.xa2_c00380{left:126.480000pt;}
.x70_c00380{left:127.916117pt;}
.x9d_c00380{left:131.280000pt;}
.x97_c00380{left:133.680000pt;}
.x71_c00380{left:136.797397pt;}
.x39_c00380{left:138.480000pt;}
.x2a_c00380{left:140.400000pt;}
.x40_c00380{left:142.320000pt;}
.x56_c00380{left:144.000000pt;}
.x30_c00380{left:145.680000pt;}
.x24_c00380{left:147.840000pt;}
.x1d_c00380{left:151.680000pt;}
.x12_c00380{left:153.840000pt;}
.x52_c00380{left:155.520000pt;}
.xa0_c00380{left:156.720000pt;}
.x2_c00380{left:157.920000pt;}
.x98_c00380{left:159.120000pt;}
.x41_c00380{left:161.280000pt;}
.x4c_c00380{left:167.040000pt;}
.x3a_c00380{left:168.960000pt;}
.x60_c00380{left:170.160000pt;}
.x67_c00380{left:172.320000pt;}
.x72_c00380{left:177.119205pt;}
.x31_c00380{left:178.560000pt;}
.x6a_c00380{left:179.512000pt;}
.x57_c00380{left:180.960000pt;}
.x47_c00380{left:182.880000pt;}
.x76_c00380{left:184.799739pt;}
.x19_c00380{left:186.240000pt;}
.x13_c00380{left:188.160000pt;}
.xa3_c00380{left:191.760000pt;}
.xb2_c00380{left:192.905333pt;}
.xb_c00380{left:194.400000pt;}
.x9e_c00380{left:195.600000pt;}
.x2b_c00380{left:197.040000pt;}
.x5a_c00380{left:200.640000pt;}
.x3b_c00380{left:202.080000pt;}
.xa6_c00380{left:203.416000pt;}
.x3_c00380{left:205.440000pt;}
.x6b_c00380{left:206.626667pt;}
.x1e_c00380{left:208.080000pt;}
.x32_c00380{left:209.280000pt;}
.x73_c00380{left:212.881691pt;}
.x25_c00380{left:214.080000pt;}
.x6f_c00380{left:216.962128pt;}
.x14_c00380{left:218.160000pt;}
.x4d_c00380{left:219.120000pt;}
.x58_c00380{left:220.320000pt;}
.x63_c00380{left:221.520000pt;}
.xa5_c00380{left:223.200000pt;}
.x5b_c00380{left:224.160000pt;}
.x42_c00380{left:227.280000pt;}
.x99_c00380{left:228.480000pt;}
.x1f_c00380{left:229.920000pt;}
.xa7_c00380{left:231.726667pt;}
.x4_c00380{left:233.520000pt;}
.xb3_c00380{left:235.137333pt;}
.x65_c00380{left:240.240000pt;}
.x3c_c00380{left:241.440000pt;}
.xc_c00380{left:242.880000pt;}
.x26_c00380{left:245.040000pt;}
.x48_c00380{left:247.200000pt;}
.x4e_c00380{left:248.880000pt;}
.xb4_c00380{left:250.030667pt;}
.x15_c00380{left:252.480000pt;}
.x2c_c00380{left:259.200000pt;}
.x9a_c00380{left:261.360000pt;}
.x1a_c00380{left:262.320000pt;}
.x33_c00380{left:264.240000pt;}
.x27_c00380{left:265.440000pt;}
.x5_c00380{left:270.000000pt;}
.xd_c00380{left:271.200000pt;}
.x4f_c00380{left:274.080000pt;}
.x20_c00380{left:277.200000pt;}
.x5c_c00380{left:278.160000pt;}
.x64_c00380{left:281.280000pt;}
.x2d_c00380{left:282.480000pt;}
.x61_c00380{left:287.280000pt;}
.x16_c00380{left:289.440000pt;}
.x50_c00380{left:293.040000pt;}
.x43_c00380{left:294.240000pt;}
.xba_c00380{left:295.867861pt;}
.x5d_c00380{left:298.800000pt;}
.x80_c00380{left:300.240000pt;}
.x1b_c00380{left:302.880000pt;}
.x49_c00380{left:303.840000pt;}
.x21_c00380{left:304.800000pt;}
.x86_c00380{left:306.240000pt;}
.x62_c00380{left:308.160000pt;}
.x68_c00380{left:309.600000pt;}
.xe_c00380{left:312.480000pt;}
.x3d_c00380{left:314.880000pt;}
.x6_c00380{left:318.000000pt;}
.x91_c00380{left:321.840000pt;}
.xad_c00380{left:323.760000pt;}
.x22_c00380{left:326.400000pt;}
.x2e_c00380{left:330.000000pt;}
.x5e_c00380{left:331.440000pt;}
.x44_c00380{left:334.800000pt;}
.x34_c00380{left:335.760000pt;}
.xae_c00380{left:337.440000pt;}
.xf_c00380{left:340.560000pt;}
.x53_c00380{left:342.000000pt;}
.x4a_c00380{left:343.440000pt;}
.x7_c00380{left:344.400000pt;}
.x2f_c00380{left:345.840000pt;}
.x8c_c00380{left:346.800000pt;}
.x51_c00380{left:348.000000pt;}
.x17_c00380{left:349.440000pt;}
.xbb_c00380{left:352.961504pt;}
.x87_c00380{left:354.720000pt;}
.x7a_c00380{left:355.920000pt;}
.x45_c00380{left:359.280000pt;}
.x54_c00380{left:360.720000pt;}
.x59_c00380{left:361.680000pt;}
.x8_c00380{left:362.880000pt;}
.x3e_c00380{left:364.320000pt;}
.x4b_c00380{left:366.480000pt;}
.x35_c00380{left:368.880000pt;}
.x23_c00380{left:370.560000pt;}
.x5f_c00380{left:373.680000pt;}
.x81_c00380{left:375.840000pt;}
.x7b_c00380{left:377.280000pt;}
.x8d_c00380{left:379.440000pt;}
.x69_c00380{left:380.640000pt;}
.x82_c00380{left:382.800000pt;}
.xaf_c00380{left:385.680000pt;}
.x18_c00380{left:386.880000pt;}
.x28_c00380{left:388.080000pt;}
.x88_c00380{left:390.000000pt;}
.x1c_c00380{left:394.800000pt;}
.xaa_c00380{left:401.040000pt;}
.x89_c00380{left:403.200000pt;}
.x36_c00380{left:404.400000pt;}
.x55_c00380{left:408.960000pt;}
.x92_c00380{left:410.160000pt;}
.x10_c00380{left:411.360000pt;}
.x9_c00380{left:413.760000pt;}
.xa8_c00380{left:415.440000pt;}
.x83_c00380{left:419.040000pt;}
.x8a_c00380{left:422.400000pt;}
.x7c_c00380{left:425.760000pt;}
.x66_c00380{left:428.400000pt;}
.x93_c00380{left:432.720000pt;}
.x3f_c00380{left:438.000000pt;}
.xb5_c00380{left:439.868000pt;}
.x95_c00380{left:441.600000pt;}
.xbc_c00380{left:442.967888pt;}
.x6c_c00380{left:444.486667pt;}
.xab_c00380{left:446.160000pt;}
.x7d_c00380{left:450.000000pt;}
.x46_c00380{left:451.200000pt;}
.xb0_c00380{left:459.600000pt;}
.x8e_c00380{left:460.560000pt;}
.x37_c00380{left:461.520000pt;}
.x84_c00380{left:463.440000pt;}
.x79_c00380{left:467.280000pt;}
.x7e_c00380{left:468.240000pt;}
.xac_c00380{left:471.840000pt;}
.xb6_c00380{left:472.994667pt;}
.x8f_c00380{left:476.640000pt;}
.x85_c00380{left:492.960000pt;}
.xb7_c00380{left:494.820000pt;}
.x8b_c00380{left:499.200000pt;}
.x7f_c00380{left:501.600000pt;}
.xa9_c00380{left:502.800000pt;}
.xb1_c00380{left:511.680000pt;}
.x94_c00380{left:515.520000pt;}
.x90_c00380{left:517.200000pt;}
.xbd_c00380{left:525.771733pt;}
.xb8_c00380{left:530.620000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.mde_c00381{transform:matrix(0.014744,0.000206,-0.003500,0.249976,0,0);-ms-transform:matrix(0.014744,0.000206,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.014744,0.000206,-0.003500,0.249976,0,0);}
.mae_c00381{transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);}
.mba_c00381{transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{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);}
.md0_c00381{transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143615,0.000000,0.000000,0.250000,0,0);}
.ma5_c00381{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.m87_c00381{transform:matrix(0.151645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151645,0.000000,0.000000,0.250000,0,0);}
.mcb_c00381{transform:matrix(0.152565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152565,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{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);}
.m50_c00381{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);}
.m6d_c00381{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);}
.m4d_c00381{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);}
.m7a_c00381{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);}
.m32_c00381{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);}
.m46_c00381{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);}
.m8c_c00381{transform:matrix(0.160294,0.001443,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160294,0.001443,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160294,0.001443,-0.002250,0.249990,0,0);}
.m18_c00381{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);}
.mb8_c00381{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);}
.m11_c00381{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);}
.m8b_c00381{transform:matrix(0.165003,0.001485,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165003,0.001485,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165003,0.001485,-0.002250,0.249990,0,0);}
.m2a_c00381{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);}
.m51_c00381{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);}
.m5d_c00381{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);}
.mdc_c00381{transform:matrix(0.166944,0.002337,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166944,0.002337,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166944,0.002337,-0.003500,0.249976,0,0);}
.mdb_c00381{transform:matrix(0.167519,0.002345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167519,0.002345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167519,0.002345,-0.003500,0.249976,0,0);}
.mb6_c00381{transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);}
.mbc_c00381{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);}
.m73_c00381{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);}
.m39_c00381{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);}
.mef_c00381{transform:matrix(0.170173,0.002382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170173,0.002382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170173,0.002382,-0.003500,0.249976,0,0);}
.m8f_c00381{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);}
.m6b_c00381{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);}
.m34_c00381{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);}
.m76_c00381{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);}
.m47_c00381{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);}
.m56_c00381{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);}
.m91_c00381{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);}
.m95_c00381{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);}
.mca_c00381{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);}
.mec_c00381{transform:matrix(0.174693,0.002446,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174693,0.002446,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174693,0.002446,-0.003500,0.249976,0,0);}
.mb9_c00381{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);}
.m35_c00381{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);}
.m42_c00381{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);}
.m82_c00381{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);}
.mad_c00381{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);}
.m40_c00381{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);}
.m26_c00381{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);}
.mc9_c00381{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);}
.mb7_c00381{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);}
.me2_c00381{transform:matrix(0.177353,0.002483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177353,0.002483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177353,0.002483,-0.003500,0.249976,0,0);}
.ma8_c00381{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);}
.m30_c00381{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);}
.ma6_c00381{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);}
.m59_c00381{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);}
.m98_c00381{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);}
.m25_c00381{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);}
.m58_c00381{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);}
.m92_c00381{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);}
.m27_c00381{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);}
.m8_c00381{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);}
.mc5_c00381{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);}
.md4_c00381{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);}
.mbf_c00381{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.mc4_c00381{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);}
.m41_c00381{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);}
.m2f_c00381{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);}
.m48_c00381{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);}
.md3_c00381{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);}
.m86_c00381{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);}
.mcc_c00381{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);}
.mea_c00381{transform:matrix(0.186077,0.002605,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186077,0.002605,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186077,0.002605,-0.003500,0.249976,0,0);}
.mf_c00381{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);}
.m4_c00381{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);}
.m53_c00381{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);}
.mc3_c00381{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);}
.m64_c00381{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);}
.m7e_c00381{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);}
.m5_c00381{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);}
.m61_c00381{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);}
.m36_c00381{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);}
.ma9_c00381{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);}
.m6a_c00381{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);}
.meb_c00381{transform:matrix(0.189951,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189951,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189951,0.002659,-0.003500,0.249976,0,0);}
.m16_c00381{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);}
.m3e_c00381{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);}
.me8_c00381{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);}
.mcd_c00381{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);}
.maa_c00381{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);}
.m37_c00381{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);}
.m4c_c00381{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);}
.m55_c00381{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);}
.m10_c00381{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);}
.mb2_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);}
.m9a_c00381{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);}
.m6_c00381{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);}
.md5_c00381{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);}
.m88_c00381{transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192277,0.001730,-0.002250,0.249990,0,0);}
.m5c_c00381{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);}
.m2c_c00381{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);}
.m90_c00381{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);}
.m1f_c00381{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);}
.m77_c00381{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);}
.m5f_c00381{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);}
.mce_c00381{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);}
.m74_c00381{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);}
.m33_c00381{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);}
.m85_c00381{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);}
.m96_c00381{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);}
.m23_c00381{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);}
.m4f_c00381{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);}
.mc7_c00381{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);}
.mda_c00381{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);}
.m63_c00381{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);}
.me7_c00381{transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);}
.m57_c00381{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);}
.m99_c00381{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);}
.mb5_c00381{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);}
.m2e_c00381{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);}
.m17_c00381{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);}
.m2d_c00381{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);}
.mab_c00381{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);}
.m2b_c00381{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);}
.mbb_c00381{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);}
.m44_c00381{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);}
.m60_c00381{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);}
.md_c00381{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);}
.mdf_c00381{transform:matrix(0.202050,0.002829,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202050,0.002829,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202050,0.002829,-0.003500,0.249976,0,0);}
.m75_c00381{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);}
.m8a_c00381{transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);}
.m78_c00381{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);}
.m72_c00381{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);}
.m38_c00381{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_c00381{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);}
.m1a_c00381{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);}
.m6e_c00381{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);}
.me6_c00381{transform:matrix(0.204480,0.002863,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204480,0.002863,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204480,0.002863,-0.003500,0.249976,0,0);}
.mb4_c00381{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);}
.mb1_c00381{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);}
.mc2_c00381{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);}
.m21_c00381{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);}
.m4e_c00381{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);}
.m84_c00381{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);}
.m49_c00381{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);}
.mb3_c00381{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);}
.m12_c00381{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);}
.m67_c00381{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);}
.ma3_c00381{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);}
.mb0_c00381{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);}
.m28_c00381{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);}
.md8_c00381{transform:matrix(0.209145,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209145,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209145,0.002928,-0.003500,0.249976,0,0);}
.mc6_c00381{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);}
.m22_c00381{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);}
.m79_c00381{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);}
.m13_c00381{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);}
.m1e_c00381{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);}
.m7d_c00381{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);}
.me_c00381{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);}
.m52_c00381{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);}
.m62_c00381{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);}
.m3d_c00381{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);}
.m83_c00381{transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{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);}
.mdd_c00381{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);}
.mc_c00381{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{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);}
.md9_c00381{transform:matrix(0.220298,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220298,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220298,0.003084,-0.003500,0.249976,0,0);}
.m69_c00381{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);}
.m70_c00381{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);}
.m9_c00381{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);}
.m45_c00381{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);}
.m54_c00381{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.m7b_c00381{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);}
.m89_c00381{transform:matrix(0.223836,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223836,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223836,0.002015,-0.002250,0.249990,0,0);}
.me0_c00381{transform:matrix(0.223908,0.003135,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223908,0.003135,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223908,0.003135,-0.003500,0.249976,0,0);}
.m6f_c00381{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_c00381{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);}
.m3c_c00381{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);}
.m66_c00381{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);}
.m80_c00381{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);}
.m65_c00381{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);}
.m6c_c00381{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.me9_c00381{transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);}
.m9d_c00381{transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);}
.mc0_c00381{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);}
.m8d_c00381{transform:matrix(0.229081,0.002062,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229081,0.002062,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229081,0.002062,-0.002250,0.249990,0,0);}
.mc8_c00381{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);}
.m1c_c00381{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);}
.md2_c00381{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);}
.m9c_c00381{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);}
.m9e_c00381{transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233115,0.000000,0.000000,0.250000,0,0);}
.md7_c00381{transform:matrix(0.233277,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233277,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233277,0.003266,-0.003500,0.249976,0,0);}
.ma7_c00381{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);}
.m1b_c00381{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);}
.mcf_c00381{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);}
.m94_c00381{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);}
.m9b_c00381{transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236930,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{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);}
.m1_c00381{transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240135,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{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);}
.m93_c00381{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);}
.me3_c00381{transform:matrix(0.244296,0.003420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244296,0.003420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244296,0.003420,-0.003500,0.249976,0,0);}
.m3b_c00381{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);}
.m5a_c00381{transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);}
.m71_c00381{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);}
.ma1_c00381{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);}
.m7_c00381{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);}
.m4b_c00381{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m81_c00381{transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);}
.m3f_c00381{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.me1_c00381{transform:matrix(0.248721,0.003482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248721,0.003482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248721,0.003482,-0.003500,0.249976,0,0);}
.ma_c00381{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);}
.m19_c00381{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);}
.m7c_c00381{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);}
.m31_c00381{transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255080,0.000000,0.000000,0.250000,0,0);}
.mc1_c00381{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);}
.m97_c00381{transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);}
.m8e_c00381{transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260030,0.000000,0.000000,0.250000,0,0);}
.m68_c00381{transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260800,0.000000,0.000000,0.250000,0,0);}
.mee_c00381{transform:matrix(0.262904,0.003681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262904,0.003681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262904,0.003681,-0.003500,0.249976,0,0);}
.m5e_c00381{transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267560,0.000000,0.000000,0.250000,0,0);}
.m7f_c00381{transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268040,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00381{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{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);}
.m3a_c00381{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);}
.m4a_c00381{transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285460,0.000000,0.000000,0.250000,0,0);}
.maf_c00381{transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289110,0.000000,0.000000,0.250000,0,0);}
.mbe_c00381{transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00381{transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);}
.med_c00381{transform:matrix(0.303045,0.004243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303045,0.004243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303045,0.004243,-0.003500,0.249976,0,0);}
.md1_c00381{transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00381{transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312645,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.317285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317285,0.000000,0.000000,0.250000,0,0);}
.m9f_c00381{transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);}
.mbd_c00381{transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458180,0.000000,0.000000,0.250000,0,0);}
.mac_c00381{transform:matrix(0.488740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488740,0.000000,0.000000,0.250000,0,0);}
.md6_c00381{transform:matrix(0.681203,0.009537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.681203,0.009537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.681203,0.009537,-0.003500,0.249976,0,0);}
.me4_c00381{transform:matrix(0.891863,0.012486,-0.003500,0.249976,0,0);-ms-transform:matrix(0.891863,0.012486,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.891863,0.012486,-0.003500,0.249976,0,0);}
.me5_c00381{transform:matrix(1.032904,0.014461,-0.003500,0.249976,0,0);-ms-transform:matrix(1.032904,0.014461,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.032904,0.014461,-0.003500,0.249976,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;}
.fse_c00381{font-size:54.605351px;}
.fs1_c00381{font-size:61.950000px;}
.fs4_c00381{font-size:63.000000px;}
.fs9_c00381{font-size:64.050000px;}
.fs6_c00381{font-size:65.100000px;}
.fsc_c00381{font-size:67.200000px;}
.fsb_c00381{font-size:68.250000px;}
.fs7_c00381{font-size:69.300000px;}
.fsa_c00381{font-size:69.302807px;}
.fs5_c00381{font-size:70.350000px;}
.fs2_c00381{font-size:71.400000px;}
.fs3_c00381{font-size:72.450000px;}
.fs8_c00381{font-size:73.500000px;}
.fsd_c00381{font-size:75.600000px;}
.fs0_c00381{font-size:150.150000px;}
.y0_c00381{bottom:0.000000px;}
.y51_c00381{bottom:152.337198px;}
.y50_c00381{bottom:152.700345px;}
.y4f_c00381{bottom:153.309264px;}
.y4e_c00381{bottom:154.113858px;}
.y4d_c00381{bottom:154.768518px;}
.y4c_c00381{bottom:155.961681px;}
.y4b_c00381{bottom:156.380751px;}
.y4a_c00381{bottom:157.381083px;}
.y49_c00381{bottom:158.039805px;}
.y48_c00381{bottom:158.864898px;}
.y47_c00381{bottom:160.131123px;}
.y46_c00381{bottom:170.208627px;}
.y45_c00381{bottom:170.569302px;}
.y44_c00381{bottom:171.083592px;}
.y43_c00381{bottom:171.324903px;}
.y42_c00381{bottom:172.014711px;}
.y41_c00381{bottom:172.445106px;}
.y40_c00381{bottom:172.525767px;}
.y3f_c00381{bottom:172.969203px;}
.y3e_c00381{bottom:173.594436px;}
.y3d_c00381{bottom:173.982369px;}
.y3c_c00381{bottom:174.290796px;}
.y3b_c00381{bottom:174.562872px;}
.y3a_c00381{bottom:175.220151px;}
.y39_c00381{bottom:175.450752px;}
.y38_c00381{bottom:175.902000px;}
.y37_c00381{bottom:225.213000px;}
.y36_c00381{bottom:225.738000px;}
.y35_c00381{bottom:226.026000px;}
.y34_c00381{bottom:226.698000px;}
.y33_c00381{bottom:226.966500px;}
.y32_c00381{bottom:227.569500px;}
.y31_c00381{bottom:228.106500px;}
.y30_c00381{bottom:228.420000px;}
.y2f_c00381{bottom:247.438500px;}
.y2e_c00381{bottom:247.858500px;}
.y2d_c00381{bottom:248.311500px;}
.y2c_c00381{bottom:248.910000px;}
.y2b_c00381{bottom:250.068000px;}
.y2a_c00381{bottom:250.573500px;}
.y29_c00381{bottom:251.103000px;}
.y28_c00381{bottom:270.000000px;}
.y27_c00381{bottom:293.775000px;}
.y26_c00381{bottom:317.041500px;}
.y25_c00381{bottom:338.079000px;}
.y24_c00381{bottom:338.623500px;}
.y23_c00381{bottom:338.907000px;}
.y22_c00381{bottom:339.283500px;}
.y21_c00381{bottom:339.789000px;}
.y20_c00381{bottom:340.123500px;}
.y1f_c00381{bottom:340.534500px;}
.y1e_c00381{bottom:341.125500px;}
.y1d_c00381{bottom:341.314500px;}
.y1c_c00381{bottom:341.820000px;}
.y1b_c00381{bottom:362.827500px;}
.y1a_c00381{bottom:386.025000px;}
.y19_c00381{bottom:409.810500px;}
.y18_c00381{bottom:431.162016px;}
.y17_c00381{bottom:431.463282px;}
.y16_c00381{bottom:431.696184px;}
.y15_c00381{bottom:432.187071px;}
.y14_c00381{bottom:432.957502px;}
.y13_c00381{bottom:433.351500px;}
.y12_c00381{bottom:454.387500px;}
.y11_c00381{bottom:477.031500px;}
.y10_c00381{bottom:499.915500px;}
.yf_c00381{bottom:522.693000px;}
.ye_c00381{bottom:545.607000px;}
.yd_c00381{bottom:568.890000px;}
.yc_c00381{bottom:591.531000px;}
.yb_c00381{bottom:613.807500px;}
.ya_c00381{bottom:637.111500px;}
.y9_c00381{bottom:659.340000px;}
.y8_c00381{bottom:682.368000px;}
.y7_c00381{bottom:705.439500px;}
.y6_c00381{bottom:727.408500px;}
.y5_c00381{bottom:750.007500px;}
.y4_c00381{bottom:772.912500px;}
.y3_c00381{bottom:795.339000px;}
.y2_c00381{bottom:818.523000px;}
.y1_c00381{bottom:907.315500px;}
.h10_c00381{height:54.605351px;}
.h3_c00381{height:61.950000px;}
.h6_c00381{height:63.000000px;}
.hb_c00381{height:64.050000px;}
.h8_c00381{height:65.100000px;}
.he_c00381{height:67.200000px;}
.hd_c00381{height:68.250000px;}
.h9_c00381{height:69.300000px;}
.hc_c00381{height:69.302807px;}
.h7_c00381{height:70.350000px;}
.h4_c00381{height:71.400000px;}
.h5_c00381{height:72.450000px;}
.ha_c00381{height:73.500000px;}
.hf_c00381{height:75.600000px;}
.h2_c00381{height:150.150000px;}
.h0_c00381{height:1008.450000px;}
.h1_c00381{height:1008.750000px;}
.w1_c00381{width:689.250000px;}
.w0_c00381{width:689.550000px;}
.x0_c00381{left:0.000000px;}
.x8a_c00381{left:94.031370px;}
.x8b_c00381{left:149.111940px;}
.x1_c00381{left:150.390000px;}
.x72_c00381{left:164.970000px;}
.x6e_c00381{left:169.021500px;}
.x68_c00381{left:172.956000px;}
.x79_c00381{left:177.120000px;}
.x12_c00381{left:181.980000px;}
.x4_c00381{left:183.060000px;}
.x19_c00381{left:184.140000px;}
.x85_c00381{left:198.261000px;}
.x49_c00381{left:207.090000px;}
.x13_c00381{left:208.710000px;}
.x80_c00381{left:210.165000px;}
.x33_c00381{left:211.680000px;}
.x54_c00381{left:213.030000px;}
.x35_c00381{left:217.620000px;}
.x73_c00381{left:221.130000px;}
.x2b_c00381{left:222.210000px;}
.x4e_c00381{left:223.830000px;}
.xc_c00381{left:224.910000px;}
.x5b_c00381{left:226.455000px;}
.x60_c00381{left:227.610000px;}
.x69_c00381{left:229.111500px;}
.x23_c00381{left:233.280000px;}
.x41_c00381{left:234.360000px;}
.x4a_c00381{left:236.790000px;}
.x46_c00381{left:238.140000px;}
.x44_c00381{left:240.030000px;}
.x5_c00381{left:243.810000px;}
.x1a_c00381{left:245.700000px;}
.x36_c00381{left:247.050000px;}
.x6a_c00381{left:250.171500px;}
.x7a_c00381{left:251.370000px;}
.x4b_c00381{left:252.450000px;}
.x81_c00381{left:254.976000px;}
.x6f_c00381{left:256.501500px;}
.x7d_c00381{left:257.898000px;}
.x74_c00381{left:263.790000px;}
.x24_c00381{left:266.490000px;}
.x6_c00381{left:269.190000px;}
.x64_c00381{left:270.540000px;}
.x1b_c00381{left:272.160000px;}
.x42_c00381{left:274.590000px;}
.x55_c00381{left:275.670000px;}
.x3d_c00381{left:279.180000px;}
.x37_c00381{left:281.610000px;}
.x2_c00381{left:287.010000px;}
.x2c_c00381{left:288.630000px;}
.x7b_c00381{left:290.520000px;}
.x25_c00381{left:294.300000px;}
.x7_c00381{left:297.270000px;}
.x14_c00381{left:298.350000px;}
.x34_c00381{left:300.510000px;}
.x4f_c00381{left:303.480000px;}
.x82_c00381{left:305.238000px;}
.x51_c00381{left:308.070000px;}
.x1c_c00381{left:312.120000px;}
.x86_c00381{left:314.383500px;}
.x6b_c00381{left:315.786000px;}
.x26_c00381{left:319.950000px;}
.x65_c00381{left:324.810000px;}
.x56_c00381{left:326.700000px;}
.x52_c00381{left:334.800000px;}
.x2d_c00381{left:336.150000px;}
.x4c_c00381{left:338.310000px;}
.x57_c00381{left:339.390000px;}
.x7e_c00381{left:340.570500px;}
.x8_c00381{left:342.900000px;}
.x15_c00381{left:347.760000px;}
.x38_c00381{left:349.650000px;}
.x7c_c00381{left:351.540000px;}
.x66_c00381{left:353.700000px;}
.x61_c00381{left:355.050000px;}
.x1d_c00381{left:359.370000px;}
.x6c_c00381{left:361.449000px;}
.x3e_c00381{left:365.580000px;}
.x5c_c00381{left:366.601500px;}
.xd_c00381{left:368.820000px;}
.x75_c00381{left:372.870000px;}
.x16_c00381{left:374.220000px;}
.x62_c00381{left:376.380000px;}
.x5d_c00381{left:377.730000px;}
.x9_c00381{left:379.350000px;}
.x27_c00381{left:380.970000px;}
.x43_c00381{left:383.130000px;}
.x2e_c00381{left:384.210000px;}
.x4d_c00381{left:386.640000px;}
.x87_c00381{left:390.717000px;}
.x58_c00381{left:392.310000px;}
.x76_c00381{left:395.820000px;}
.x39_c00381{left:397.710000px;}
.x67_c00381{left:402.570000px;}
.x28_c00381{left:403.650000px;}
.x3f_c00381{left:404.730000px;}
.x83_c00381{left:407.520000px;}
.x2f_c00381{left:409.590000px;}
.x59_c00381{left:413.910000px;}
.x7f_c00381{left:415.618500px;}
.x1e_c00381{left:417.420000px;}
.x45_c00381{left:418.500000px;}
.x5e_c00381{left:422.280000px;}
.x47_c00381{left:423.900000px;}
.xe_c00381{left:426.330000px;}
.x53_c00381{left:428.490000px;}
.xa_c00381{left:429.840000px;}
.x3_c00381{left:430.920000px;}
.x8c_c00381{left:432.876177px;}
.x17_c00381{left:436.590000px;}
.xb_c00381{left:437.670000px;}
.x29_c00381{left:440.640000px;}
.x40_c00381{left:446.040000px;}
.x2a_c00381{left:447.390000px;}
.x63_c00381{left:450.090000px;}
.x84_c00381{left:451.309500px;}
.x30_c00381{left:453.870000px;}
.x77_c00381{left:456.030000px;}
.x1f_c00381{left:457.110000px;}
.x70_c00381{left:458.191500px;}
.x3a_c00381{left:460.350000px;}
.xf_c00381{left:462.780000px;}
.x18_c00381{left:465.210000px;}
.x5f_c00381{left:471.960000px;}
.x50_c00381{left:474.660000px;}
.x88_c00381{left:476.493000px;}
.x48_c00381{left:490.320000px;}
.x20_c00381{left:492.750000px;}
.x31_c00381{left:494.100000px;}
.x10_c00381{left:497.610000px;}
.x71_c00381{left:500.041500px;}
.x78_c00381{left:511.650000px;}
.x5a_c00381{left:515.700000px;}
.x11_c00381{left:525.960000px;}
.x6d_c00381{left:528.265500px;}
.x89_c00381{left:530.464500px;}
.x21_c00381{left:552.690000px;}
.x32_c00381{left:556.470000px;}
.x3b_c00381{left:558.360000px;}
.x22_c00381{left:574.830000px;}
.x3c_c00381{left:589.410000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fse_c00381{font-size:48.538089pt;}
.fs1_c00381{font-size:55.066667pt;}
.fs4_c00381{font-size:56.000000pt;}
.fs9_c00381{font-size:56.933333pt;}
.fs6_c00381{font-size:57.866667pt;}
.fsc_c00381{font-size:59.733333pt;}
.fsb_c00381{font-size:60.666667pt;}
.fs7_c00381{font-size:61.600000pt;}
.fsa_c00381{font-size:61.602495pt;}
.fs5_c00381{font-size:62.533333pt;}
.fs2_c00381{font-size:63.466667pt;}
.fs3_c00381{font-size:64.400000pt;}
.fs8_c00381{font-size:65.333333pt;}
.fsd_c00381{font-size:67.200000pt;}
.fs0_c00381{font-size:133.466667pt;}
.y0_c00381{bottom:0.000000pt;}
.y51_c00381{bottom:135.410843pt;}
.y50_c00381{bottom:135.733640pt;}
.y4f_c00381{bottom:136.274901pt;}
.y4e_c00381{bottom:136.990096pt;}
.y4d_c00381{bottom:137.572016pt;}
.y4c_c00381{bottom:138.632605pt;}
.y4b_c00381{bottom:139.005112pt;}
.y4a_c00381{bottom:139.894296pt;}
.y49_c00381{bottom:140.479827pt;}
.y48_c00381{bottom:141.213243pt;}
.y47_c00381{bottom:142.338776pt;}
.y46_c00381{bottom:151.296557pt;}
.y45_c00381{bottom:151.617157pt;}
.y44_c00381{bottom:152.074304pt;}
.y43_c00381{bottom:152.288803pt;}
.y42_c00381{bottom:152.901965pt;}
.y41_c00381{bottom:153.284539pt;}
.y40_c00381{bottom:153.356237pt;}
.y3f_c00381{bottom:153.750403pt;}
.y3e_c00381{bottom:154.306165pt;}
.y3d_c00381{bottom:154.650995pt;}
.y3c_c00381{bottom:154.925152pt;}
.y3b_c00381{bottom:155.166997pt;}
.y3a_c00381{bottom:155.751245pt;}
.y39_c00381{bottom:155.956224pt;}
.y38_c00381{bottom:156.357333pt;}
.y37_c00381{bottom:200.189333pt;}
.y36_c00381{bottom:200.656000pt;}
.y35_c00381{bottom:200.912000pt;}
.y34_c00381{bottom:201.509333pt;}
.y33_c00381{bottom:201.748000pt;}
.y32_c00381{bottom:202.284000pt;}
.y31_c00381{bottom:202.761333pt;}
.y30_c00381{bottom:203.040000pt;}
.y2f_c00381{bottom:219.945333pt;}
.y2e_c00381{bottom:220.318667pt;}
.y2d_c00381{bottom:220.721333pt;}
.y2c_c00381{bottom:221.253333pt;}
.y2b_c00381{bottom:222.282667pt;}
.y2a_c00381{bottom:222.732000pt;}
.y29_c00381{bottom:223.202667pt;}
.y28_c00381{bottom:240.000000pt;}
.y27_c00381{bottom:261.133333pt;}
.y26_c00381{bottom:281.814667pt;}
.y25_c00381{bottom:300.514667pt;}
.y24_c00381{bottom:300.998667pt;}
.y23_c00381{bottom:301.250667pt;}
.y22_c00381{bottom:301.585333pt;}
.y21_c00381{bottom:302.034667pt;}
.y20_c00381{bottom:302.332000pt;}
.y1f_c00381{bottom:302.697333pt;}
.y1e_c00381{bottom:303.222667pt;}
.y1d_c00381{bottom:303.390667pt;}
.y1c_c00381{bottom:303.840000pt;}
.y1b_c00381{bottom:322.513333pt;}
.y1a_c00381{bottom:343.133333pt;}
.y19_c00381{bottom:364.276000pt;}
.y18_c00381{bottom:383.255125pt;}
.y17_c00381{bottom:383.522917pt;}
.y16_c00381{bottom:383.729941pt;}
.y15_c00381{bottom:384.166285pt;}
.y14_c00381{bottom:384.851113pt;}
.y13_c00381{bottom:385.201333pt;}
.y12_c00381{bottom:403.900000pt;}
.y11_c00381{bottom:424.028000pt;}
.y10_c00381{bottom:444.369333pt;}
.yf_c00381{bottom:464.616000pt;}
.ye_c00381{bottom:484.984000pt;}
.yd_c00381{bottom:505.680000pt;}
.yc_c00381{bottom:525.805333pt;}
.yb_c00381{bottom:545.606667pt;}
.ya_c00381{bottom:566.321333pt;}
.y9_c00381{bottom:586.080000pt;}
.y8_c00381{bottom:606.549333pt;}
.y7_c00381{bottom:627.057333pt;}
.y6_c00381{bottom:646.585333pt;}
.y5_c00381{bottom:666.673333pt;}
.y4_c00381{bottom:687.033333pt;}
.y3_c00381{bottom:706.968000pt;}
.y2_c00381{bottom:727.576000pt;}
.y1_c00381{bottom:806.502667pt;}
.h10_c00381{height:48.538089pt;}
.h3_c00381{height:55.066667pt;}
.h6_c00381{height:56.000000pt;}
.hb_c00381{height:56.933333pt;}
.h8_c00381{height:57.866667pt;}
.he_c00381{height:59.733333pt;}
.hd_c00381{height:60.666667pt;}
.h9_c00381{height:61.600000pt;}
.hc_c00381{height:61.602495pt;}
.h7_c00381{height:62.533333pt;}
.h4_c00381{height:63.466667pt;}
.h5_c00381{height:64.400000pt;}
.ha_c00381{height:65.333333pt;}
.hf_c00381{height:67.200000pt;}
.h2_c00381{height:133.466667pt;}
.h0_c00381{height:896.400000pt;}
.h1_c00381{height:896.666667pt;}
.w1_c00381{width:612.666667pt;}
.w0_c00381{width:612.933333pt;}
.x0_c00381{left:0.000000pt;}
.x8a_c00381{left:83.583440pt;}
.x8b_c00381{left:132.543947pt;}
.x1_c00381{left:133.680000pt;}
.x72_c00381{left:146.640000pt;}
.x6e_c00381{left:150.241333pt;}
.x68_c00381{left:153.738667pt;}
.x79_c00381{left:157.440000pt;}
.x12_c00381{left:161.760000pt;}
.x4_c00381{left:162.720000pt;}
.x19_c00381{left:163.680000pt;}
.x85_c00381{left:176.232000pt;}
.x49_c00381{left:184.080000pt;}
.x13_c00381{left:185.520000pt;}
.x80_c00381{left:186.813333pt;}
.x33_c00381{left:188.160000pt;}
.x54_c00381{left:189.360000pt;}
.x35_c00381{left:193.440000pt;}
.x73_c00381{left:196.560000pt;}
.x2b_c00381{left:197.520000pt;}
.x4e_c00381{left:198.960000pt;}
.xc_c00381{left:199.920000pt;}
.x5b_c00381{left:201.293333pt;}
.x60_c00381{left:202.320000pt;}
.x69_c00381{left:203.654667pt;}
.x23_c00381{left:207.360000pt;}
.x41_c00381{left:208.320000pt;}
.x4a_c00381{left:210.480000pt;}
.x46_c00381{left:211.680000pt;}
.x44_c00381{left:213.360000pt;}
.x5_c00381{left:216.720000pt;}
.x1a_c00381{left:218.400000pt;}
.x36_c00381{left:219.600000pt;}
.x6a_c00381{left:222.374667pt;}
.x7a_c00381{left:223.440000pt;}
.x4b_c00381{left:224.400000pt;}
.x81_c00381{left:226.645333pt;}
.x6f_c00381{left:228.001333pt;}
.x7d_c00381{left:229.242667pt;}
.x74_c00381{left:234.480000pt;}
.x24_c00381{left:236.880000pt;}
.x6_c00381{left:239.280000pt;}
.x64_c00381{left:240.480000pt;}
.x1b_c00381{left:241.920000pt;}
.x42_c00381{left:244.080000pt;}
.x55_c00381{left:245.040000pt;}
.x3d_c00381{left:248.160000pt;}
.x37_c00381{left:250.320000pt;}
.x2_c00381{left:255.120000pt;}
.x2c_c00381{left:256.560000pt;}
.x7b_c00381{left:258.240000pt;}
.x25_c00381{left:261.600000pt;}
.x7_c00381{left:264.240000pt;}
.x14_c00381{left:265.200000pt;}
.x34_c00381{left:267.120000pt;}
.x4f_c00381{left:269.760000pt;}
.x82_c00381{left:271.322667pt;}
.x51_c00381{left:273.840000pt;}
.x1c_c00381{left:277.440000pt;}
.x86_c00381{left:279.452000pt;}
.x6b_c00381{left:280.698667pt;}
.x26_c00381{left:284.400000pt;}
.x65_c00381{left:288.720000pt;}
.x56_c00381{left:290.400000pt;}
.x52_c00381{left:297.600000pt;}
.x2d_c00381{left:298.800000pt;}
.x4c_c00381{left:300.720000pt;}
.x57_c00381{left:301.680000pt;}
.x7e_c00381{left:302.729333pt;}
.x8_c00381{left:304.800000pt;}
.x15_c00381{left:309.120000pt;}
.x38_c00381{left:310.800000pt;}
.x7c_c00381{left:312.480000pt;}
.x66_c00381{left:314.400000pt;}
.x61_c00381{left:315.600000pt;}
.x1d_c00381{left:319.440000pt;}
.x6c_c00381{left:321.288000pt;}
.x3e_c00381{left:324.960000pt;}
.x5c_c00381{left:325.868000pt;}
.xd_c00381{left:327.840000pt;}
.x75_c00381{left:331.440000pt;}
.x16_c00381{left:332.640000pt;}
.x62_c00381{left:334.560000pt;}
.x5d_c00381{left:335.760000pt;}
.x9_c00381{left:337.200000pt;}
.x27_c00381{left:338.640000pt;}
.x43_c00381{left:340.560000pt;}
.x2e_c00381{left:341.520000pt;}
.x4d_c00381{left:343.680000pt;}
.x87_c00381{left:347.304000pt;}
.x58_c00381{left:348.720000pt;}
.x76_c00381{left:351.840000pt;}
.x39_c00381{left:353.520000pt;}
.x67_c00381{left:357.840000pt;}
.x28_c00381{left:358.800000pt;}
.x3f_c00381{left:359.760000pt;}
.x83_c00381{left:362.240000pt;}
.x2f_c00381{left:364.080000pt;}
.x59_c00381{left:367.920000pt;}
.x7f_c00381{left:369.438667pt;}
.x1e_c00381{left:371.040000pt;}
.x45_c00381{left:372.000000pt;}
.x5e_c00381{left:375.360000pt;}
.x47_c00381{left:376.800000pt;}
.xe_c00381{left:378.960000pt;}
.x53_c00381{left:380.880000pt;}
.xa_c00381{left:382.080000pt;}
.x3_c00381{left:383.040000pt;}
.x8c_c00381{left:384.778824pt;}
.x17_c00381{left:388.080000pt;}
.xb_c00381{left:389.040000pt;}
.x29_c00381{left:391.680000pt;}
.x40_c00381{left:396.480000pt;}
.x2a_c00381{left:397.680000pt;}
.x63_c00381{left:400.080000pt;}
.x84_c00381{left:401.164000pt;}
.x30_c00381{left:403.440000pt;}
.x77_c00381{left:405.360000pt;}
.x1f_c00381{left:406.320000pt;}
.x70_c00381{left:407.281333pt;}
.x3a_c00381{left:409.200000pt;}
.xf_c00381{left:411.360000pt;}
.x18_c00381{left:413.520000pt;}
.x5f_c00381{left:419.520000pt;}
.x50_c00381{left:421.920000pt;}
.x88_c00381{left:423.549333pt;}
.x48_c00381{left:435.840000pt;}
.x20_c00381{left:438.000000pt;}
.x31_c00381{left:439.200000pt;}
.x10_c00381{left:442.320000pt;}
.x71_c00381{left:444.481333pt;}
.x78_c00381{left:454.800000pt;}
.x5a_c00381{left:458.400000pt;}
.x11_c00381{left:467.520000pt;}
.x6d_c00381{left:469.569333pt;}
.x89_c00381{left:471.524000pt;}
.x21_c00381{left:491.280000pt;}
.x32_c00381{left:494.640000pt;}
.x3b_c00381{left:496.320000pt;}
.x22_c00381{left:510.960000pt;}
.x3c_c00381{left:523.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_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_2f6c0d3825a5d54c0b922384.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;}
.m5e_c00382{transform:matrix(0.010855,0.000098,-0.002250,0.249990,0,0);-ms-transform:matrix(0.010855,0.000098,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.010855,0.000098,-0.002250,0.249990,0,0);}
.mbb_c00382{transform:matrix(0.011189,0.000179,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011189,0.000179,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011189,0.000179,-0.003999,0.249968,0,0);}
.me7_c00382{transform:matrix(0.034750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034750,0.000000,0.000000,0.250000,0,0);}
.mba_c00382{transform:matrix(0.104617,0.001674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.104617,0.001674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.104617,0.001674,-0.003999,0.249968,0,0);}
.m7e_c00382{transform:matrix(0.144864,0.001304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144864,0.001304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144864,0.001304,-0.002250,0.249990,0,0);}
.ma9_c00382{transform:matrix(0.147466,0.002359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147466,0.002359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147466,0.002359,-0.003999,0.249968,0,0);}
.mc5_c00382{transform:matrix(0.150706,0.002411,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150706,0.002411,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150706,0.002411,-0.003999,0.249968,0,0);}
.m6a_c00382{transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);}
.m3b_c00382{transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);}
.m32_c00382{transform:matrix(0.155319,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155319,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155319,0.001398,-0.002250,0.249990,0,0);}
.m21_c00382{transform:matrix(0.155739,0.001402,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155739,0.001402,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155739,0.001402,-0.002250,0.249990,0,0);}
.m3f_c00382{transform:matrix(0.157189,0.001415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157189,0.001415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157189,0.001415,-0.002250,0.249990,0,0);}
.m4b_c00382{transform:matrix(0.157744,0.001420,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157744,0.001420,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157744,0.001420,-0.002250,0.249990,0,0);}
.m7c_c00382{transform:matrix(0.158919,0.001430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158919,0.001430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158919,0.001430,-0.002250,0.249990,0,0);}
.ma2_c00382{transform:matrix(0.161498,0.001453,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161498,0.001453,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161498,0.001453,-0.002250,0.249990,0,0);}
.m88_c00382{transform:matrix(0.161888,0.001457,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161888,0.001457,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161888,0.001457,-0.002250,0.249990,0,0);}
.mae_c00382{transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);}
.ma0_c00382{transform:matrix(0.162773,0.001465,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162773,0.001465,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162773,0.001465,-0.002250,0.249990,0,0);}
.m1a_c00382{transform:matrix(0.162908,0.001466,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162908,0.001466,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162908,0.001466,-0.002250,0.249990,0,0);}
.ma7_c00382{transform:matrix(0.162944,0.002607,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162944,0.002607,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162944,0.002607,-0.003999,0.249968,0,0);}
.m6c_c00382{transform:matrix(0.163508,0.001472,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163508,0.001472,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163508,0.001472,-0.002250,0.249990,0,0);}
.m80_c00382{transform:matrix(0.163938,0.001475,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163938,0.001475,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163938,0.001475,-0.002250,0.249990,0,0);}
.mdd_c00382{transform:matrix(0.166370,0.003161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166370,0.003161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166370,0.003161,-0.004749,0.249955,0,0);}
.md1_c00382{transform:matrix(0.167075,0.003174,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167075,0.003174,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167075,0.003174,-0.004749,0.249955,0,0);}
.m95_c00382{transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);}
.m67_c00382{transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167718,0.001509,-0.002250,0.249990,0,0);}
.m9f_c00382{transform:matrix(0.167778,0.001510,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167778,0.001510,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167778,0.001510,-0.002250,0.249990,0,0);}
.m46_c00382{transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168263,0.001514,-0.002250,0.249990,0,0);}
.mc7_c00382{transform:matrix(0.168473,0.002696,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168473,0.002696,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168473,0.002696,-0.003999,0.249968,0,0);}
.m7a_c00382{transform:matrix(0.170288,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170288,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170288,0.001533,-0.002250,0.249990,0,0);}
.m91_c00382{transform:matrix(0.171398,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171398,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171398,0.001543,-0.002250,0.249990,0,0);}
.m24_c00382{transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172108,0.001549,-0.002250,0.249990,0,0);}
.m25_c00382{transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173978,0.001566,-0.002250,0.249990,0,0);}
.m65_c00382{transform:matrix(0.174233,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174233,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174233,0.001568,-0.002250,0.249990,0,0);}
.m89_c00382{transform:matrix(0.175208,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175208,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175208,0.001577,-0.002250,0.249990,0,0);}
.m36_c00382{transform:matrix(0.175743,0.001582,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175743,0.001582,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175743,0.001582,-0.002250,0.249990,0,0);}
.ma1_c00382{transform:matrix(0.176198,0.001586,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176198,0.001586,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176198,0.001586,-0.002250,0.249990,0,0);}
.m58_c00382{transform:matrix(0.176758,0.001591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176758,0.001591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176758,0.001591,-0.002250,0.249990,0,0);}
.md5_c00382{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);}
.m72_c00382{transform:matrix(0.178798,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178798,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178798,0.001609,-0.002250,0.249990,0,0);}
.m27_c00382{transform:matrix(0.178823,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178823,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178823,0.001609,-0.002250,0.249990,0,0);}
.m42_c00382{transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);}
.mcf_c00382{transform:matrix(0.179508,0.003411,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179508,0.003411,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179508,0.003411,-0.004749,0.249955,0,0);}
.me2_c00382{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);}
.mcc_c00382{transform:matrix(0.180442,0.003428,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180442,0.003428,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180442,0.003428,-0.004749,0.249955,0,0);}
.mb1_c00382{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);}
.mbe_c00382{transform:matrix(0.182017,0.002912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182017,0.002912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182017,0.002912,-0.003999,0.249968,0,0);}
.m18_c00382{transform:matrix(0.182598,0.001643,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182598,0.001643,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182598,0.001643,-0.002250,0.249990,0,0);}
.m43_c00382{transform:matrix(0.183078,0.001648,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183078,0.001648,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183078,0.001648,-0.002250,0.249990,0,0);}
.m93_c00382{transform:matrix(0.183093,0.001648,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183093,0.001648,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183093,0.001648,-0.002250,0.249990,0,0);}
.m97_c00382{transform:matrix(0.183803,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183803,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183803,0.001654,-0.002250,0.249990,0,0);}
.m79_c00382{transform:matrix(0.184348,0.001659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184348,0.001659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184348,0.001659,-0.002250,0.249990,0,0);}
.m9d_c00382{transform:matrix(0.184478,0.001660,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184478,0.001660,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184478,0.001660,-0.002250,0.249990,0,0);}
.m3e_c00382{transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184993,0.001665,-0.002250,0.249990,0,0);}
.m8f_c00382{transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185762,0.001672,-0.002250,0.249990,0,0);}
.m9c_c00382{transform:matrix(0.186182,0.001676,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186182,0.001676,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186182,0.001676,-0.002250,0.249990,0,0);}
.m61_c00382{transform:matrix(0.186507,0.001679,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186507,0.001679,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186507,0.001679,-0.002250,0.249990,0,0);}
.m7f_c00382{transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);}
.m96_c00382{transform:matrix(0.187017,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187017,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187017,0.001683,-0.002250,0.249990,0,0);}
.m62_c00382{transform:matrix(0.187367,0.001686,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187367,0.001686,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187367,0.001686,-0.002250,0.249990,0,0);}
.md6_c00382{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);}
.m76_c00382{transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188962,0.001701,-0.002250,0.249990,0,0);}
.m55_c00382{transform:matrix(0.189342,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189342,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189342,0.001704,-0.002250,0.249990,0,0);}
.m7d_c00382{transform:matrix(0.190432,0.001714,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190432,0.001714,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190432,0.001714,-0.002250,0.249990,0,0);}
.mda_c00382{transform:matrix(0.190456,0.003619,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190456,0.003619,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190456,0.003619,-0.004749,0.249955,0,0);}
.m63_c00382{transform:matrix(0.190602,0.001715,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190602,0.001715,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190602,0.001715,-0.002250,0.249990,0,0);}
.mbd_c00382{transform:matrix(0.190781,0.003052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190781,0.003052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190781,0.003052,-0.003999,0.249968,0,0);}
.m4a_c00382{transform:matrix(0.190887,0.001718,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190887,0.001718,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190887,0.001718,-0.002250,0.249990,0,0);}
.m86_c00382{transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191097,0.001720,-0.002250,0.249990,0,0);}
.m1b_c00382{transform:matrix(0.191752,0.001726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191752,0.001726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191752,0.001726,-0.002250,0.249990,0,0);}
.mb6_c00382{transform:matrix(0.192190,0.003075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192190,0.003075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192190,0.003075,-0.003999,0.249968,0,0);}
.m48_c00382{transform:matrix(0.192202,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192202,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192202,0.001730,-0.002250,0.249990,0,0);}
.m64_c00382{transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192227,0.001730,-0.002250,0.249990,0,0);}
.mb3_c00382{transform:matrix(0.192280,0.003076,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192280,0.003076,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192280,0.003076,-0.003999,0.249968,0,0);}
.mc0_c00382{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);}
.m5c_c00382{transform:matrix(0.192502,0.001733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192502,0.001733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192502,0.001733,-0.002250,0.249990,0,0);}
.m69_c00382{transform:matrix(0.192612,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192612,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192612,0.001734,-0.002250,0.249990,0,0);}
.mbf_c00382{transform:matrix(0.192645,0.003082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192645,0.003082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192645,0.003082,-0.003999,0.249968,0,0);}
.me_c00382{transform:matrix(0.192852,0.001736,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192852,0.001736,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192852,0.001736,-0.002250,0.249990,0,0);}
.m20_c00382{transform:matrix(0.193442,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193442,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193442,0.001741,-0.002250,0.249990,0,0);}
.m82_c00382{transform:matrix(0.193477,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193477,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193477,0.001741,-0.002250,0.249990,0,0);}
.md7_c00382{transform:matrix(0.193670,0.003680,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193670,0.003680,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193670,0.003680,-0.004749,0.249955,0,0);}
.md4_c00382{transform:matrix(0.193885,0.003684,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193885,0.003684,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193885,0.003684,-0.004749,0.249955,0,0);}
.m84_c00382{transform:matrix(0.194352,0.001749,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194352,0.001749,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194352,0.001749,-0.002250,0.249990,0,0);}
.m39_c00382{transform:matrix(0.195692,0.001761,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195692,0.001761,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195692,0.001761,-0.002250,0.249990,0,0);}
.m49_c00382{transform:matrix(0.195852,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195852,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195852,0.001763,-0.002250,0.249990,0,0);}
.m6e_c00382{transform:matrix(0.195897,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195897,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195897,0.001763,-0.002250,0.249990,0,0);}
.m98_c00382{transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196067,0.001765,-0.002250,0.249990,0,0);}
.maa_c00382{transform:matrix(0.196235,0.003140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196235,0.003140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196235,0.003140,-0.003999,0.249968,0,0);}
.m70_c00382{transform:matrix(0.196247,0.001766,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196247,0.001766,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196247,0.001766,-0.002250,0.249990,0,0);}
.mcd_c00382{transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);}
.m94_c00382{transform:matrix(0.196867,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196867,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196867,0.001772,-0.002250,0.249990,0,0);}
.m8d_c00382{transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);}
.m50_c00382{transform:matrix(0.197002,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197002,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197002,0.001773,-0.002250,0.249990,0,0);}
.m23_c00382{transform:matrix(0.197522,0.001778,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197522,0.001778,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197522,0.001778,-0.002250,0.249990,0,0);}
.m77_c00382{transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198357,0.001785,-0.002250,0.249990,0,0);}
.m2f_c00382{transform:matrix(0.198402,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198402,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198402,0.001786,-0.002250,0.249990,0,0);}
.mc6_c00382{transform:matrix(0.198830,0.003181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198830,0.003181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198830,0.003181,-0.003999,0.249968,0,0);}
.m8a_c00382{transform:matrix(0.199152,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199152,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199152,0.001792,-0.002250,0.249990,0,0);}
.maf_c00382{transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);}
.m19_c00382{transform:matrix(0.199552,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199552,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199552,0.001796,-0.002250,0.249990,0,0);}
.mc4_c00382{transform:matrix(0.199644,0.003194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199644,0.003194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199644,0.003194,-0.003999,0.249968,0,0);}
.m8e_c00382{transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199817,0.001798,-0.002250,0.249990,0,0);}
.m54_c00382{transform:matrix(0.199902,0.001799,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199902,0.001799,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199902,0.001799,-0.002250,0.249990,0,0);}
.m45_c00382{transform:matrix(0.200207,0.001802,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200207,0.001802,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200207,0.001802,-0.002250,0.249990,0,0);}
.mdc_c00382{transform:matrix(0.200334,0.003806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200334,0.003806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200334,0.003806,-0.004749,0.249955,0,0);}
.m66_c00382{transform:matrix(0.200412,0.001804,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200412,0.001804,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200412,0.001804,-0.002250,0.249990,0,0);}
.m4d_c00382{transform:matrix(0.200772,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200772,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200772,0.001807,-0.002250,0.249990,0,0);}
.mb7_c00382{transform:matrix(0.200794,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200794,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200794,0.003213,-0.003999,0.249968,0,0);}
.mb8_c00382{transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);}
.m51_c00382{transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200857,0.001808,-0.002250,0.249990,0,0);}
.mca_c00382{transform:matrix(0.201029,0.003820,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201029,0.003820,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201029,0.003820,-0.004749,0.249955,0,0);}
.md3_c00382{transform:matrix(0.202498,0.003847,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202498,0.003847,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202498,0.003847,-0.004749,0.249955,0,0);}
.m8b_c00382{transform:matrix(0.202587,0.001823,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202587,0.001823,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202587,0.001823,-0.002250,0.249990,0,0);}
.m34_c00382{transform:matrix(0.202727,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202727,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202727,0.001825,-0.002250,0.249990,0,0);}
.m3_c00382{transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202752,0.001825,-0.002250,0.249990,0,0);}
.m78_c00382{transform:matrix(0.202982,0.001827,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202982,0.001827,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202982,0.001827,-0.002250,0.249990,0,0);}
.m1e_c00382{transform:matrix(0.203787,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203787,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203787,0.001834,-0.002250,0.249990,0,0);}
.m59_c00382{transform:matrix(0.204157,0.001837,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204157,0.001837,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204157,0.001837,-0.002250,0.249990,0,0);}
.m3a_c00382{transform:matrix(0.204992,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204992,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204992,0.001845,-0.002250,0.249990,0,0);}
.m85_c00382{transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);}
.m7b_c00382{transform:matrix(0.205257,0.001847,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205257,0.001847,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205257,0.001847,-0.002250,0.249990,0,0);}
.mb9_c00382{transform:matrix(0.205314,0.003285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205314,0.003285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205314,0.003285,-0.003999,0.249968,0,0);}
.md2_c00382{transform:matrix(0.205543,0.003905,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205543,0.003905,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205543,0.003905,-0.004749,0.249955,0,0);}
.m1c_c00382{transform:matrix(0.205572,0.001850,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205572,0.001850,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205572,0.001850,-0.002250,0.249990,0,0);}
.m92_c00382{transform:matrix(0.205607,0.001850,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205607,0.001850,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205607,0.001850,-0.002250,0.249990,0,0);}
.mce_c00382{transform:matrix(0.205763,0.003909,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205763,0.003909,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205763,0.003909,-0.004749,0.249955,0,0);}
.m22_c00382{transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205987,0.001854,-0.002250,0.249990,0,0);}
.m9b_c00382{transform:matrix(0.206317,0.001857,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206317,0.001857,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206317,0.001857,-0.002250,0.249990,0,0);}
.me1_c00382{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);}
.m7_c00382{transform:matrix(0.206857,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206857,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206857,0.001862,-0.002250,0.249990,0,0);}
.m52_c00382{transform:matrix(0.206942,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206942,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206942,0.001862,-0.002250,0.249990,0,0);}
.ma8_c00382{transform:matrix(0.207748,0.003324,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207748,0.003324,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207748,0.003324,-0.003999,0.249968,0,0);}
.m8c_c00382{transform:matrix(0.207782,0.001870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207782,0.001870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207782,0.001870,-0.002250,0.249990,0,0);}
.me4_c00382{transform:matrix(0.208612,0.003964,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208612,0.003964,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208612,0.003964,-0.004749,0.249955,0,0);}
.m4c_c00382{transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);}
.m40_c00382{transform:matrix(0.209107,0.001882,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209107,0.001882,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209107,0.001882,-0.002250,0.249990,0,0);}
.m1d_c00382{transform:matrix(0.209177,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209177,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209177,0.001883,-0.002250,0.249990,0,0);}
.m9a_c00382{transform:matrix(0.209272,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209272,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209272,0.001883,-0.002250,0.249990,0,0);}
.m47_c00382{transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);}
.m60_c00382{transform:matrix(0.209402,0.001885,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209402,0.001885,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209402,0.001885,-0.002250,0.249990,0,0);}
.m87_c00382{transform:matrix(0.209562,0.001886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209562,0.001886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209562,0.001886,-0.002250,0.249990,0,0);}
.m6d_c00382{transform:matrix(0.210166,0.001891,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210166,0.001891,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210166,0.001891,-0.002250,0.249990,0,0);}
.m35_c00382{transform:matrix(0.210351,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210351,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210351,0.001893,-0.002250,0.249990,0,0);}
.m81_c00382{transform:matrix(0.210836,0.001898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210836,0.001898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210836,0.001898,-0.002250,0.249990,0,0);}
.mb2_c00382{transform:matrix(0.211403,0.003382,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211403,0.003382,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211403,0.003382,-0.003999,0.249968,0,0);}
.m41_c00382{transform:matrix(0.211691,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211691,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211691,0.001905,-0.002250,0.249990,0,0);}
.m5a_c00382{transform:matrix(0.211711,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211711,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211711,0.001905,-0.002250,0.249990,0,0);}
.m5f_c00382{transform:matrix(0.212136,0.001909,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212136,0.001909,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212136,0.001909,-0.002250,0.249990,0,0);}
.m99_c00382{transform:matrix(0.212671,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212671,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212671,0.001914,-0.002250,0.249990,0,0);}
.m13_c00382{transform:matrix(0.213621,0.001923,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213621,0.001923,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213621,0.001923,-0.002250,0.249990,0,0);}
.m57_c00382{transform:matrix(0.213816,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213816,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213816,0.001924,-0.002250,0.249990,0,0);}
.mdb_c00382{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);}
.m71_c00382{transform:matrix(0.214831,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214831,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214831,0.001933,-0.002250,0.249990,0,0);}
.mc9_c00382{transform:matrix(0.216021,0.004104,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216021,0.004104,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216021,0.004104,-0.004749,0.249955,0,0);}
.mde_c00382{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);}
.me6_c00382{transform:matrix(0.216566,0.004115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216566,0.004115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216566,0.004115,-0.004749,0.249955,0,0);}
.m16_c00382{transform:matrix(0.217041,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217041,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217041,0.001953,-0.002250,0.249990,0,0);}
.mbc_c00382{transform:matrix(0.218112,0.003490,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218112,0.003490,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218112,0.003490,-0.003999,0.249968,0,0);}
.mad_c00382{transform:matrix(0.218267,0.003492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218267,0.003492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218267,0.003492,-0.003999,0.249968,0,0);}
.m3d_c00382{transform:matrix(0.219351,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219351,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219351,0.001974,-0.002250,0.249990,0,0);}
.m2_c00382{transform:matrix(0.220091,0.001981,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220091,0.001981,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220091,0.001981,-0.002250,0.249990,0,0);}
.mb0_c00382{transform:matrix(0.220647,0.003530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220647,0.003530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220647,0.003530,-0.003999,0.249968,0,0);}
.m90_c00382{transform:matrix(0.220696,0.001986,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220696,0.001986,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220696,0.001986,-0.002250,0.249990,0,0);}
.m4e_c00382{transform:matrix(0.221201,0.001991,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221201,0.001991,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221201,0.001991,-0.002250,0.249990,0,0);}
.m1f_c00382{transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222211,0.002000,-0.002250,0.249990,0,0);}
.m75_c00382{transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);}
.m2c_c00382{transform:matrix(0.224826,0.002023,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224826,0.002023,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224826,0.002023,-0.002250,0.249990,0,0);}
.m17_c00382{transform:matrix(0.225151,0.002026,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225151,0.002026,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225151,0.002026,-0.002250,0.249990,0,0);}
.m37_c00382{transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);}
.m2e_c00382{transform:matrix(0.225961,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225961,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225961,0.002034,-0.002250,0.249990,0,0);}
.m31_c00382{transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);}
.m3c_c00382{transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228006,0.002052,-0.002250,0.249990,0,0);}
.md_c00382{transform:matrix(0.229851,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229851,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229851,0.002069,-0.002250,0.249990,0,0);}
.me5_c00382{transform:matrix(0.230608,0.004382,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230608,0.004382,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230608,0.004382,-0.004749,0.249955,0,0);}
.m83_c00382{transform:matrix(0.231361,0.002082,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231361,0.002082,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231361,0.002082,-0.002250,0.249990,0,0);}
.mc_c00382{transform:matrix(0.233046,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233046,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233046,0.002097,-0.002250,0.249990,0,0);}
.m4_c00382{transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);}
.m68_c00382{transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233971,0.002106,-0.002250,0.249990,0,0);}
.m2d_c00382{transform:matrix(0.236270,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236270,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236270,0.002126,-0.002250,0.249990,0,0);}
.m9_c00382{transform:matrix(0.237585,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237585,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237585,0.002138,-0.002250,0.249990,0,0);}
.m10_c00382{transform:matrix(0.237945,0.002142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237945,0.002142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237945,0.002142,-0.002250,0.249990,0,0);}
.m15_c00382{transform:matrix(0.239015,0.002151,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239015,0.002151,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239015,0.002151,-0.002250,0.249990,0,0);}
.m12_c00382{transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);}
.m4f_c00382{transform:matrix(0.239795,0.002158,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239795,0.002158,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239795,0.002158,-0.002250,0.249990,0,0);}
.m9e_c00382{transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240705,0.002166,-0.002250,0.249990,0,0);}
.mdf_c00382{transform:matrix(0.241201,0.004583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241201,0.004583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241201,0.004583,-0.004749,0.249955,0,0);}
.m73_c00382{transform:matrix(0.241780,0.002176,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241780,0.002176,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241780,0.002176,-0.002250,0.249990,0,0);}
.m26_c00382{transform:matrix(0.242025,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242025,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242025,0.002178,-0.002250,0.249990,0,0);}
.m38_c00382{transform:matrix(0.242980,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242980,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242980,0.002187,-0.002250,0.249990,0,0);}
.mc8_c00382{transform:matrix(0.244924,0.003919,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244924,0.003919,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244924,0.003919,-0.003999,0.249968,0,0);}
.m11_c00382{transform:matrix(0.248105,0.002233,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248105,0.002233,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248105,0.002233,-0.002250,0.249990,0,0);}
.md8_c00382{transform:matrix(0.250030,0.004751,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250030,0.004751,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250030,0.004751,-0.004749,0.249955,0,0);}
.m6b_c00382{transform:matrix(0.250550,0.002255,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250550,0.002255,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250550,0.002255,-0.002250,0.249990,0,0);}
.m5b_c00382{transform:matrix(0.250930,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250930,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250930,0.002258,-0.002250,0.249990,0,0);}
.me9_c00382{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);}
.m14_c00382{transform:matrix(0.252205,0.002270,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252205,0.002270,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252205,0.002270,-0.002250,0.249990,0,0);}
.me3_c00382{transform:matrix(0.253334,0.004813,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253334,0.004813,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253334,0.004813,-0.004749,0.249955,0,0);}
.mf_c00382{transform:matrix(0.253905,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253905,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253905,0.002285,-0.002250,0.249990,0,0);}
.m53_c00382{transform:matrix(0.254435,0.002290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254435,0.002290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254435,0.002290,-0.002250,0.249990,0,0);}
.m33_c00382{transform:matrix(0.254545,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254545,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254545,0.002291,-0.002250,0.249990,0,0);}
.mc1_c00382{transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);}
.m28_c00382{transform:matrix(0.258395,0.002326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258395,0.002326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258395,0.002326,-0.002250,0.249990,0,0);}
.m5d_c00382{transform:matrix(0.259215,0.002333,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259215,0.002333,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259215,0.002333,-0.002250,0.249990,0,0);}
.m29_c00382{transform:matrix(0.262214,0.002360,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262214,0.002360,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262214,0.002360,-0.002250,0.249990,0,0);}
.m6f_c00382{transform:matrix(0.262819,0.002365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262819,0.002365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262819,0.002365,-0.002250,0.249990,0,0);}
.m74_c00382{transform:matrix(0.263094,0.002368,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263094,0.002368,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263094,0.002368,-0.002250,0.249990,0,0);}
.m8_c00382{transform:matrix(0.265719,0.002391,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265719,0.002391,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265719,0.002391,-0.002250,0.249990,0,0);}
.mee_c00382{transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);}
.mb5_c00382{transform:matrix(0.272790,0.004365,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272790,0.004365,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272790,0.004365,-0.003999,0.249968,0,0);}
.mb4_c00382{transform:matrix(0.273580,0.004377,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273580,0.004377,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273580,0.004377,-0.003999,0.249968,0,0);}
.m6_c00382{transform:matrix(0.276444,0.002488,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276444,0.002488,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276444,0.002488,-0.002250,0.249990,0,0);}
.mac_c00382{transform:matrix(0.291963,0.004671,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291963,0.004671,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291963,0.004671,-0.003999,0.249968,0,0);}
.m5_c00382{transform:matrix(0.301103,0.002710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301103,0.002710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301103,0.002710,-0.002250,0.249990,0,0);}
.meb_c00382{transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.306888,0.002762,-0.002250,0.249990,0,0);-ms-transform:matrix(0.306888,0.002762,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.306888,0.002762,-0.002250,0.249990,0,0);}
.m44_c00382{transform:matrix(0.309177,0.002783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.309177,0.002783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.309177,0.002783,-0.002250,0.249990,0,0);}
.mcb_c00382{transform:matrix(0.317638,0.006035,-0.004749,0.249955,0,0);-ms-transform:matrix(0.317638,0.006035,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.317638,0.006035,-0.004749,0.249955,0,0);}
.m2b_c00382{transform:matrix(0.318502,0.002867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.318502,0.002867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.318502,0.002867,-0.002250,0.249990,0,0);}
.md9_c00382{transform:matrix(0.320132,0.006083,-0.004749,0.249955,0,0);-ms-transform:matrix(0.320132,0.006083,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.320132,0.006083,-0.004749,0.249955,0,0);}
.mef_c00382{transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322415,0.000000,0.000000,0.250000,0,0);}
.m30_c00382{transform:matrix(0.322682,0.002904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.322682,0.002904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.322682,0.002904,-0.002250,0.249990,0,0);}
.m56_c00382{transform:matrix(0.351636,0.003165,-0.002250,0.249990,0,0);-ms-transform:matrix(0.351636,0.003165,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.351636,0.003165,-0.002250,0.249990,0,0);}
.ma_c00382{transform:matrix(0.358375,0.003225,-0.002250,0.249990,0,0);-ms-transform:matrix(0.358375,0.003225,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.358375,0.003225,-0.002250,0.249990,0,0);}
.m1_c00382{transform:matrix(0.358525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358525,0.000000,0.000000,0.250000,0,0);}
.me8_c00382{transform:matrix(0.363285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363285,0.000000,0.000000,0.250000,0,0);}
.md0_c00382{transform:matrix(0.368279,0.006997,-0.004749,0.249955,0,0);-ms-transform:matrix(0.368279,0.006997,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.368279,0.006997,-0.004749,0.249955,0,0);}
.mc2_c00382{transform:matrix(0.370323,0.005925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.370323,0.005925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.370323,0.005925,-0.003999,0.249968,0,0);}
.me0_c00382{transform:matrix(0.379966,0.007219,-0.004749,0.249955,0,0);-ms-transform:matrix(0.379966,0.007219,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.379966,0.007219,-0.004749,0.249955,0,0);}
.mc3_c00382{transform:matrix(0.394420,0.006311,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394420,0.006311,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394420,0.006311,-0.003999,0.249968,0,0);}
.med_c00382{transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);}
.mab_c00382{transform:matrix(0.461476,0.007384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.461476,0.007384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.461476,0.007384,-0.003999,0.249968,0,0);}
.mea_c00382{transform:matrix(0.492100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492100,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.546278,0.004917,-0.002250,0.249990,0,0);-ms-transform:matrix(0.546278,0.004917,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.546278,0.004917,-0.002250,0.249990,0,0);}
.ma4_c00382{transform:matrix(0.634811,0.008253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.634811,0.008253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.634811,0.008253,-0.003250,0.249979,0,0);}
.m0_c00382{transform:matrix(0.650210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650210,0.000000,0.000000,0.250000,0,0);}
.ma5_c00382{transform:matrix(0.682492,0.008872,-0.003250,0.249979,0,0);-ms-transform:matrix(0.682492,0.008872,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.682492,0.008872,-0.003250,0.249979,0,0);}
.mec_c00382{transform:matrix(0.719135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719135,0.000000,0.000000,0.250000,0,0);}
.ma6_c00382{transform:matrix(1.098289,0.017573,-0.003999,0.249968,0,0);-ms-transform:matrix(1.098289,0.017573,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.098289,0.017573,-0.003999,0.249968,0,0);}
.mf0_c00382{transform:matrix(1.503235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.503235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.503235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00382{transform:matrix(2.907824,0.037802,-0.003250,0.249979,0,0);-ms-transform:matrix(2.907824,0.037802,-0.003250,0.249979,0,0);-webkit-transform:matrix(2.907824,0.037802,-0.003250,0.249979,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;}
.fs11_c00382{font-size:38.850000px;}
.fs10_c00382{font-size:49.358907px;}
.fsf_c00382{font-size:53.559665px;}
.fs4_c00382{font-size:61.952509px;}
.fs6_c00382{font-size:63.002551px;}
.fsd_c00382{font-size:63.008063px;}
.fs12_c00382{font-size:65.100000px;}
.fs2_c00382{font-size:67.202722px;}
.fs7_c00382{font-size:68.252764px;}
.fse_c00382{font-size:68.258735px;}
.fs0_c00382{font-size:69.300000px;}
.fs5_c00382{font-size:69.302807px;}
.fsc_c00382{font-size:69.308870px;}
.fs1_c00382{font-size:70.352849px;}
.fs3_c00382{font-size:71.402892px;}
.fs8_c00382{font-size:72.452934px;}
.fsb_c00382{font-size:72.459273px;}
.fsa_c00382{font-size:89.257541px;}
.fs9_c00382{font-size:92.407807px;}
.y0_c00382{bottom:0.000000px;}
.ye8_c00382{bottom:118.929000px;}
.ye7_c00382{bottom:142.596000px;}
.ye6_c00382{bottom:158.400012px;}
.ye5_c00382{bottom:158.712381px;}
.ye4_c00382{bottom:159.301750px;}
.ye3_c00382{bottom:160.695146px;}
.ye2_c00382{bottom:161.288933px;}
.ye1_c00382{bottom:161.871045px;}
.ye0_c00382{bottom:162.180137px;}
.ydf_c00382{bottom:163.286460px;}
.yde_c00382{bottom:163.734665px;}
.ydd_c00382{bottom:164.059107px;}
.ydc_c00382{bottom:164.426175px;}
.ydb_c00382{bottom:165.852638px;}
.yda_c00382{bottom:166.231466px;}
.yd9_c00382{bottom:166.409812px;}
.yd8_c00382{bottom:166.948473px;}
.yd7_c00382{bottom:175.863483px;}
.yd6_c00382{bottom:176.140075px;}
.yd5_c00382{bottom:176.509863px;}
.yd4_c00382{bottom:177.089439px;}
.yd3_c00382{bottom:177.597708px;}
.yd2_c00382{bottom:179.100513px;}
.yd1_c00382{bottom:179.521401px;}
.yd0_c00382{bottom:179.799532px;}
.ycf_c00382{bottom:180.355482px;}
.yce_c00382{bottom:180.829693px;}
.ycd_c00382{bottom:181.681502px;}
.ycc_c00382{bottom:182.075457px;}
.ycb_c00382{bottom:182.906489px;}
.yca_c00382{bottom:183.639936px;}
.yc9_c00382{bottom:184.144500px;}
.yc8_c00382{bottom:221.679888px;}
.yc7_c00382{bottom:223.136604px;}
.yc6_c00382{bottom:224.075592px;}
.yc5_c00382{bottom:224.855592px;}
.yc4_c00382{bottom:225.852588px;}
.yc3_c00382{bottom:227.062824px;}
.yc2_c00382{bottom:243.715632px;}
.yc1_c00382{bottom:245.079444px;}
.yc0_c00382{bottom:246.066072px;}
.ybf_c00382{bottom:246.725988px;}
.ybe_c00382{bottom:247.566468px;}
.ybd_c00382{bottom:248.088600px;}
.ybc_c00382{bottom:249.109728px;}
.ybb_c00382{bottom:249.470436px;}
.yba_c00382{bottom:268.256808px;}
.yb9_c00382{bottom:269.130564px;}
.yb8_c00382{bottom:269.699244px;}
.yb7_c00382{bottom:270.632040px;}
.yb6_c00382{bottom:271.964580px;}
.yb5_c00382{bottom:272.697636px;}
.yb4_c00382{bottom:290.476044px;}
.yb3_c00382{bottom:291.444804px;}
.yb2_c00382{bottom:291.963864px;}
.yb1_c00382{bottom:292.656372px;}
.yb0_c00382{bottom:293.646396px;}
.yaf_c00382{bottom:294.273252px;}
.yae_c00382{bottom:294.636516px;}
.yad_c00382{bottom:295.355124px;}
.yac_c00382{bottom:295.653048px;}
.yab_c00382{bottom:314.366196px;}
.yaa_c00382{bottom:315.144636px;}
.ya9_c00382{bottom:315.415644px;}
.ya8_c00382{bottom:316.375932px;}
.ya7_c00382{bottom:316.963860px;}
.ya6_c00382{bottom:318.598500px;}
.ya5_c00382{bottom:356.098097px;}
.ya4_c00382{bottom:359.258247px;}
.ya3_c00382{bottom:411.210000px;}
.ya2_c00382{bottom:432.693219px;}
.ya1_c00382{bottom:433.197060px;}
.ya0_c00382{bottom:433.844703px;}
.y9f_c00382{bottom:434.453718px;}
.y9e_c00382{bottom:434.829978px;}
.y9d_c00382{bottom:435.981583px;}
.y9c_c00382{bottom:436.519515px;}
.y9b_c00382{bottom:436.771597px;}
.y9a_c00382{bottom:437.657709px;}
.y99_c00382{bottom:454.705014px;}
.y98_c00382{bottom:455.136601px;}
.y97_c00382{bottom:455.946094px;}
.y96_c00382{bottom:456.441357px;}
.y95_c00382{bottom:457.020309px;}
.y94_c00382{bottom:457.983418px;}
.y93_c00382{bottom:458.335489px;}
.y92_c00382{bottom:458.989906px;}
.y91_c00382{bottom:477.779712px;}
.y90_c00382{bottom:478.556677px;}
.y8f_c00382{bottom:479.066884px;}
.y8e_c00382{bottom:479.581102px;}
.y8d_c00382{bottom:479.771718px;}
.y8c_c00382{bottom:480.428013px;}
.y8b_c00382{bottom:480.916462px;}
.y8a_c00382{bottom:482.209794px;}
.y89_c00382{bottom:500.795455px;}
.y88_c00382{bottom:501.243331px;}
.y87_c00382{bottom:501.601443px;}
.y86_c00382{bottom:502.239892px;}
.y85_c00382{bottom:502.777303px;}
.y84_c00382{bottom:503.368954px;}
.y83_c00382{bottom:503.808013px;}
.y82_c00382{bottom:523.812811px;}
.y81_c00382{bottom:524.194647px;}
.y80_c00382{bottom:524.606584px;}
.y7f_c00382{bottom:525.063601px;}
.y7e_c00382{bottom:525.388095px;}
.y7d_c00382{bottom:526.353420px;}
.y7c_c00382{bottom:527.185128px;}
.y7b_c00382{bottom:527.570961px;}
.y7a_c00382{bottom:545.324787px;}
.y79_c00382{bottom:545.796288px;}
.y78_c00382{bottom:546.192888px;}
.y77_c00382{bottom:547.115968px;}
.y76_c00382{bottom:547.716472px;}
.y75_c00382{bottom:548.330982px;}
.y74_c00382{bottom:548.907906px;}
.y73_c00382{bottom:549.260545px;}
.y72_c00382{bottom:549.899148px;}
.y71_c00382{bottom:550.522354px;}
.y70_c00382{bottom:568.805014px;}
.y6f_c00382{bottom:568.814236px;}
.y6e_c00382{bottom:569.673016px;}
.y6d_c00382{bottom:569.855743px;}
.y6c_c00382{bottom:570.158322px;}
.y6b_c00382{bottom:570.822318px;}
.y6a_c00382{bottom:571.016629px;}
.y69_c00382{bottom:571.405185px;}
.y68_c00382{bottom:571.851580px;}
.y67_c00382{bottom:591.284811px;}
.y66_c00382{bottom:591.689034px;}
.y65_c00382{bottom:592.086964px;}
.y64_c00382{bottom:592.458955px;}
.y63_c00382{bottom:593.119837px;}
.y62_c00382{bottom:593.372823px;}
.y61_c00382{bottom:593.942935px;}
.y60_c00382{bottom:594.289459px;}
.y5f_c00382{bottom:594.801399px;}
.y5e_c00382{bottom:612.341616px;}
.y5d_c00382{bottom:612.594912px;}
.y5c_c00382{bottom:613.291828px;}
.y5b_c00382{bottom:614.229279px;}
.y5a_c00382{bottom:615.140476px;}
.y59_c00382{bottom:616.093093px;}
.y58_c00382{bottom:616.504761px;}
.y57_c00382{bottom:617.163445px;}
.y56_c00382{bottom:617.752755px;}
.y55_c00382{bottom:635.443722px;}
.y54_c00382{bottom:636.165127px;}
.y53_c00382{bottom:636.658852px;}
.y52_c00382{bottom:637.326174px;}
.y51_c00382{bottom:637.940896px;}
.y50_c00382{bottom:638.561182px;}
.y4f_c00382{bottom:639.027805px;}
.y4e_c00382{bottom:639.621975px;}
.y4d_c00382{bottom:658.100197px;}
.y4c_c00382{bottom:658.778034px;}
.y4b_c00382{bottom:659.367909px;}
.y4a_c00382{bottom:659.881573px;}
.y49_c00382{bottom:660.518502px;}
.y48_c00382{bottom:661.324761px;}
.y47_c00382{bottom:661.616775px;}
.y46_c00382{bottom:661.988146px;}
.y45_c00382{bottom:662.843470px;}
.y44_c00382{bottom:680.817565px;}
.y43_c00382{bottom:681.394120px;}
.y42_c00382{bottom:681.723459px;}
.y41_c00382{bottom:682.136256px;}
.y40_c00382{bottom:682.584213px;}
.y3f_c00382{bottom:683.143458px;}
.y3e_c00382{bottom:683.852998px;}
.y3d_c00382{bottom:684.248121px;}
.y3c_c00382{bottom:684.444487px;}
.y3b_c00382{bottom:703.798057px;}
.y3a_c00382{bottom:704.563039px;}
.y39_c00382{bottom:704.832913px;}
.y38_c00382{bottom:705.139243px;}
.y37_c00382{bottom:705.454161px;}
.y36_c00382{bottom:705.768349px;}
.y35_c00382{bottom:706.104898px;}
.y34_c00382{bottom:706.473651px;}
.y33_c00382{bottom:706.764277px;}
.y32_c00382{bottom:707.084961px;}
.y31_c00382{bottom:707.397070px;}
.y30_c00382{bottom:725.990167px;}
.y2f_c00382{bottom:726.352368px;}
.y2e_c00382{bottom:726.802206px;}
.y2d_c00382{bottom:727.065346px;}
.y2c_c00382{bottom:727.528134px;}
.y2b_c00382{bottom:727.839535px;}
.y2a_c00382{bottom:728.552365px;}
.y29_c00382{bottom:729.025321px;}
.y28_c00382{bottom:730.079571px;}
.y27_c00382{bottom:749.543370px;}
.y26_c00382{bottom:749.559450px;}
.y25_c00382{bottom:749.949207px;}
.y24_c00382{bottom:750.138510px;}
.y23_c00382{bottom:750.829684px;}
.y22_c00382{bottom:751.271245px;}
.y21_c00382{bottom:751.649418px;}
.y20_c00382{bottom:752.100228px;}
.y1f_c00382{bottom:752.499963px;}
.y1e_c00382{bottom:752.759121px;}
.y1d_c00382{bottom:771.208588px;}
.y1c_c00382{bottom:771.813970px;}
.y1b_c00382{bottom:772.324957px;}
.y1a_c00382{bottom:772.788010px;}
.y19_c00382{bottom:772.925331px;}
.y18_c00382{bottom:773.567710px;}
.y17_c00382{bottom:774.621847px;}
.y16_c00382{bottom:775.198321px;}
.y15_c00382{bottom:793.928903px;}
.y14_c00382{bottom:794.558589px;}
.y13_c00382{bottom:794.949403px;}
.y12_c00382{bottom:795.279255px;}
.y11_c00382{bottom:795.755109px;}
.y10_c00382{bottom:796.043144px;}
.yf_c00382{bottom:796.338253px;}
.ye_c00382{bottom:796.807613px;}
.yd_c00382{bottom:797.311807px;}
.yc_c00382{bottom:817.398744px;}
.yb_c00382{bottom:817.656756px;}
.ya_c00382{bottom:817.690857px;}
.y9_c00382{bottom:817.982362px;}
.y8_c00382{bottom:818.220408px;}
.y7_c00382{bottom:818.470428px;}
.y6_c00382{bottom:818.769345px;}
.y5_c00382{bottom:818.976192px;}
.y4_c00382{bottom:819.196958px;}
.y3_c00382{bottom:819.729154px;}
.y2_c00382{bottom:819.991500px;}
.y1_c00382{bottom:862.056000px;}
.h13_c00382{height:38.850000px;}
.h12_c00382{height:49.358907px;}
.h11_c00382{height:53.559665px;}
.h6_c00382{height:61.952509px;}
.h8_c00382{height:63.002551px;}
.hf_c00382{height:63.008063px;}
.h14_c00382{height:65.100000px;}
.h4_c00382{height:67.202722px;}
.h9_c00382{height:68.252764px;}
.h10_c00382{height:68.258735px;}
.h2_c00382{height:69.300000px;}
.h7_c00382{height:69.302807px;}
.he_c00382{height:69.308870px;}
.h3_c00382{height:70.352849px;}
.h5_c00382{height:71.402892px;}
.ha_c00382{height:72.452934px;}
.hd_c00382{height:72.459273px;}
.hc_c00382{height:89.257541px;}
.hb_c00382{height:92.407807px;}
.h1_c00382{height:1005.000000px;}
.h0_c00382{height:1005.150000px;}
.w0_c00382{width:715.200000px;}
.w1_c00382{width:715.500000px;}
.x0_c00382{left:0.000000px;}
.x87_c00382{left:80.323213px;}
.x6f_c00382{left:91.212000px;}
.x7b_c00382{left:100.175028px;}
.x80_c00382{left:103.887048px;}
.x88_c00382{left:107.252200px;}
.x42_c00382{left:115.586742px;}
.x82_c00382{left:117.076500px;}
.x7c_c00382{left:120.187380px;}
.x74_c00382{left:121.224648px;}
.x61_c00382{left:123.196570px;}
.x59_c00382{left:125.641986px;}
.x50_c00382{left:127.305114px;}
.x1c_c00382{left:128.928782px;}
.x31_c00382{left:129.995586px;}
.x3_c00382{left:131.103000px;}
.x89_c00382{left:135.076659px;}
.x75_c00382{left:136.937904px;}
.x32_c00382{left:147.813762px;}
.x5a_c00382{left:153.177744px;}
.x1d_c00382{left:154.890552px;}
.x2a_c00382{left:157.260042px;}
.x4_c00382{left:160.252500px;}
.x79_c00382{left:162.041676px;}
.x5e_c00382{left:166.706011px;}
.x53_c00382{left:169.103443px;}
.x4a_c00382{left:171.079584px;}
.x69_c00382{left:174.480313px;}
.xe_c00382{left:176.385529px;}
.x15_c00382{left:184.271513px;}
.x2b_c00382{left:186.391016px;}
.x6a_c00382{left:189.321747px;}
.x70_c00382{left:193.377000px;}
.x1e_c00382{left:194.805188px;}
.x4b_c00382{left:199.914801px;}
.x43_c00382{left:204.748732px;}
.x7d_c00382{left:205.857120px;}
.x62_c00382{left:209.395413px;}
.x39_c00382{left:211.209231px;}
.x2c_c00382{left:212.849043px;}
.x25_c00382{left:216.977826px;}
.x5_c00382{left:219.385500px;}
.x5f_c00382{left:220.444039px;}
.x8a_c00382{left:224.734449px;}
.x76_c00382{left:226.854084px;}
.x3a_c00382{left:230.654178px;}
.x44_c00382{left:234.154910px;}
.x54_c00382{left:235.237879px;}
.x1f_c00382{left:239.894783px;}
.x8b_c00382{left:240.941635px;}
.x63_c00382{left:241.999158px;}
.x6_c00382{left:243.915000px;}
.xf_c00382{left:245.825274px;}
.x33_c00382{left:248.218953px;}
.x7e_c00382{left:252.573132px;}
.x26_c00382{left:256.360760px;}
.x3f_c00382{left:258.986535px;}
.x81_c00382{left:261.144012px;}
.x66_c00382{left:264.146299px;}
.x7_c00382{left:266.898000px;}
.x4c_c00382{left:268.534952px;}
.x10_c00382{left:271.995301px;}
.x55_c00382{left:273.671800px;}
.x20_c00382{left:277.746945px;}
.x77_c00382{left:278.978088px;}
.x16_c00382{left:280.062785px;}
.x5b_c00382{left:281.508966px;}
.x3b_c00382{left:284.402276px;}
.x64_c00382{left:285.751795px;}
.x6b_c00382{left:288.707592px;}
.x71_c00382{left:290.140500px;}
.x51_c00382{left:296.610088px;}
.x34_c00382{left:299.023035px;}
.x8_c00382{left:300.111000px;}
.x45_c00382{left:302.164845px;}
.x2d_c00382{left:305.457369px;}
.x72_c00382{left:307.078500px;}
.x1_c00382{left:309.960000px;}
.x11_c00382{left:315.200518px;}
.x7a_c00382{left:319.475136px;}
.x21_c00382{left:321.975554px;}
.x4d_c00382{left:323.631466px;}
.x3c_c00382{left:326.836480px;}
.x9_c00382{left:327.891000px;}
.x65_c00382{left:332.730757px;}
.x2e_c00382{left:334.114356px;}
.x5c_c00382{left:337.340955px;}
.x17_c00382{left:338.437232px;}
.x35_c00382{left:339.795306px;}
.x27_c00382{left:341.661951px;}
.x78_c00382{left:342.698016px;}
.x7f_c00382{left:344.041704px;}
.x12_c00382{left:345.183478px;}
.x6c_c00382{left:346.678420px;}
.x18_c00382{left:350.861502px;}
.xa_c00382{left:354.340500px;}
.x73_c00382{left:355.731000px;}
.x40_c00382{left:357.598984px;}
.x60_c00382{left:360.049542px;}
.x2f_c00382{left:361.983857px;}
.x8c_c00382{left:363.267327px;}
.x46_c00382{left:367.239416px;}
.x2_c00382{left:370.980000px;}
.x36_c00382{left:377.327631px;}
.x13_c00382{left:380.773344px;}
.x90_c00382{left:383.130000px;}
.x6d_c00382{left:384.802680px;}
.xb_c00382{left:386.730000px;}
.x4e_c00382{left:387.843238px;}
.xc_c00382{left:390.519000px;}
.x19_c00382{left:392.977746px;}
.x5d_c00382{left:394.035403px;}
.x41_c00382{left:395.622621px;}
.x67_c00382{left:398.607738px;}
.x3d_c00382{left:400.448012px;}
.x28_c00382{left:402.152318px;}
.x37_c00382{left:407.253591px;}
.x22_c00382{left:409.972257px;}
.x6e_c00382{left:414.449547px;}
.x56_c00382{left:416.230106px;}
.xd_c00382{left:419.187000px;}
.x4f_c00382{left:421.589334px;}
.x68_c00382{left:429.393847px;}
.x52_c00382{left:431.118387px;}
.x47_c00382{left:434.230905px;}
.x14_c00382{left:438.070818px;}
.x1a_c00382{left:439.419909px;}
.x57_c00382{left:442.628674px;}
.x8e_c00382{left:444.150000px;}
.x3e_c00382{left:445.594068px;}
.x23_c00382{left:448.944906px;}
.x24_c00382{left:450.564893px;}
.x30_c00382{left:455.966156px;}
.x38_c00382{left:459.647646px;}
.x83_c00382{left:461.839500px;}
.x91_c00382{left:468.180000px;}
.x29_c00382{left:469.876995px;}
.x58_c00382{left:474.015973px;}
.x48_c00382{left:483.997164px;}
.x84_c00382{left:492.343500px;}
.x1b_c00382{left:494.516924px;}
.x49_c00382{left:502.140354px;}
.x8d_c00382{left:507.734091px;}
.x85_c00382{left:511.806000px;}
.x8f_c00382{left:520.290000px;}
.x86_c00382{left:526.363500px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.fs11_c00382{font-size:34.533333pt;}
.fs10_c00382{font-size:43.874584pt;}
.fsf_c00382{font-size:47.608591pt;}
.fs4_c00382{font-size:55.068897pt;}
.fs6_c00382{font-size:56.002268pt;}
.fsd_c00382{font-size:56.007168pt;}
.fs12_c00382{font-size:57.866667pt;}
.fs2_c00382{font-size:59.735752pt;}
.fs7_c00382{font-size:60.669124pt;}
.fse_c00382{font-size:60.674432pt;}
.fs0_c00382{font-size:61.600000pt;}
.fs5_c00382{font-size:61.602495pt;}
.fsc_c00382{font-size:61.607884pt;}
.fs1_c00382{font-size:62.535866pt;}
.fs3_c00382{font-size:63.469237pt;}
.fs8_c00382{font-size:64.402608pt;}
.fsb_c00382{font-size:64.408243pt;}
.fsa_c00382{font-size:79.340037pt;}
.fs9_c00382{font-size:82.140273pt;}
.y0_c00382{bottom:0.000000pt;}
.ye8_c00382{bottom:105.714667pt;}
.ye7_c00382{bottom:126.752000pt;}
.ye6_c00382{bottom:140.800011pt;}
.ye5_c00382{bottom:141.077672pt;}
.ye4_c00382{bottom:141.601556pt;}
.ye3_c00382{bottom:142.840129pt;}
.ye2_c00382{bottom:143.367940pt;}
.ye1_c00382{bottom:143.885373pt;}
.ye0_c00382{bottom:144.160121pt;}
.ydf_c00382{bottom:145.143520pt;}
.yde_c00382{bottom:145.541924pt;}
.ydd_c00382{bottom:145.830317pt;}
.ydc_c00382{bottom:146.156600pt;}
.ydb_c00382{bottom:147.424567pt;}
.yda_c00382{bottom:147.761303pt;}
.yd9_c00382{bottom:147.919833pt;}
.yd8_c00382{bottom:148.398643pt;}
.yd7_c00382{bottom:156.323096pt;}
.yd6_c00382{bottom:156.568956pt;}
.yd5_c00382{bottom:156.897656pt;}
.yd4_c00382{bottom:157.412835pt;}
.yd3_c00382{bottom:157.864629pt;}
.yd2_c00382{bottom:159.200456pt;}
.yd1_c00382{bottom:159.574579pt;}
.yd0_c00382{bottom:159.821807pt;}
.ycf_c00382{bottom:160.315984pt;}
.yce_c00382{bottom:160.737505pt;}
.ycd_c00382{bottom:161.494668pt;}
.ycc_c00382{bottom:161.844851pt;}
.ycb_c00382{bottom:162.583545pt;}
.yca_c00382{bottom:163.235499pt;}
.yc9_c00382{bottom:163.684000pt;}
.yc8_c00382{bottom:197.048789pt;}
.yc7_c00382{bottom:198.343648pt;}
.yc6_c00382{bottom:199.178304pt;}
.yc5_c00382{bottom:199.871637pt;}
.yc4_c00382{bottom:200.757856pt;}
.yc3_c00382{bottom:201.833621pt;}
.yc2_c00382{bottom:216.636117pt;}
.yc1_c00382{bottom:217.848395pt;}
.yc0_c00382{bottom:218.725397pt;}
.ybf_c00382{bottom:219.311989pt;}
.ybe_c00382{bottom:220.059083pt;}
.ybd_c00382{bottom:220.523200pt;}
.ybc_c00382{bottom:221.430869pt;}
.ybb_c00382{bottom:221.751499pt;}
.yba_c00382{bottom:238.450496pt;}
.yb9_c00382{bottom:239.227168pt;}
.yb8_c00382{bottom:239.732661pt;}
.yb7_c00382{bottom:240.561813pt;}
.yb6_c00382{bottom:241.746293pt;}
.yb5_c00382{bottom:242.397899pt;}
.yb4_c00382{bottom:258.200928pt;}
.yb3_c00382{bottom:259.062048pt;}
.yb2_c00382{bottom:259.523435pt;}
.yb1_c00382{bottom:260.138997pt;}
.yb0_c00382{bottom:261.019019pt;}
.yaf_c00382{bottom:261.576224pt;}
.yae_c00382{bottom:261.899125pt;}
.yad_c00382{bottom:262.537888pt;}
.yac_c00382{bottom:262.802709pt;}
.yab_c00382{bottom:279.436619pt;}
.yaa_c00382{bottom:280.128565pt;}
.ya9_c00382{bottom:280.369461pt;}
.ya8_c00382{bottom:281.223051pt;}
.ya7_c00382{bottom:281.745653pt;}
.ya6_c00382{bottom:283.198667pt;}
.ya5_c00382{bottom:316.531641pt;}
.ya4_c00382{bottom:319.340664pt;}
.ya3_c00382{bottom:365.520000pt;}
.ya2_c00382{bottom:384.616195pt;}
.ya1_c00382{bottom:385.064053pt;}
.ya0_c00382{bottom:385.639736pt;}
.y9f_c00382{bottom:386.181083pt;}
.y9e_c00382{bottom:386.515536pt;}
.y9d_c00382{bottom:387.539185pt;}
.y9c_c00382{bottom:388.017347pt;}
.y9b_c00382{bottom:388.241420pt;}
.y9a_c00382{bottom:389.029075pt;}
.y99_c00382{bottom:404.182235pt;}
.y98_c00382{bottom:404.565868pt;}
.y97_c00382{bottom:405.285417pt;}
.y96_c00382{bottom:405.725651pt;}
.y95_c00382{bottom:406.240275pt;}
.y94_c00382{bottom:407.096372pt;}
.y93_c00382{bottom:407.409324pt;}
.y92_c00382{bottom:407.991028pt;}
.y91_c00382{bottom:424.693077pt;}
.y90_c00382{bottom:425.383713pt;}
.y8f_c00382{bottom:425.837231pt;}
.y8e_c00382{bottom:426.294313pt;}
.y8d_c00382{bottom:426.463749pt;}
.y8c_c00382{bottom:427.047123pt;}
.y8b_c00382{bottom:427.481300pt;}
.y8a_c00382{bottom:428.630928pt;}
.y89_c00382{bottom:445.151516pt;}
.y88_c00382{bottom:445.549628pt;}
.y87_c00382{bottom:445.867949pt;}
.y86_c00382{bottom:446.435460pt;}
.y85_c00382{bottom:446.913159pt;}
.y84_c00382{bottom:447.439071pt;}
.y83_c00382{bottom:447.829345pt;}
.y82_c00382{bottom:465.611388pt;}
.y81_c00382{bottom:465.950797pt;}
.y80_c00382{bottom:466.316964pt;}
.y7f_c00382{bottom:466.723201pt;}
.y7e_c00382{bottom:467.011640pt;}
.y7d_c00382{bottom:467.869707pt;}
.y7c_c00382{bottom:468.609003pt;}
.y7b_c00382{bottom:468.951965pt;}
.y7a_c00382{bottom:484.733144pt;}
.y79_c00382{bottom:485.152256pt;}
.y78_c00382{bottom:485.504789pt;}
.y77_c00382{bottom:486.325305pt;}
.y76_c00382{bottom:486.859087pt;}
.y75_c00382{bottom:487.405317pt;}
.y74_c00382{bottom:487.918139pt;}
.y73_c00382{bottom:488.231596pt;}
.y72_c00382{bottom:488.799243pt;}
.y71_c00382{bottom:489.353204pt;}
.y70_c00382{bottom:505.604457pt;}
.y6f_c00382{bottom:505.612655pt;}
.y6e_c00382{bottom:506.376015pt;}
.y6d_c00382{bottom:506.538439pt;}
.y6c_c00382{bottom:506.807397pt;}
.y6b_c00382{bottom:507.397616pt;}
.y6a_c00382{bottom:507.570337pt;}
.y69_c00382{bottom:507.915720pt;}
.y68_c00382{bottom:508.312516pt;}
.y67_c00382{bottom:525.586499pt;}
.y66_c00382{bottom:525.945808pt;}
.y65_c00382{bottom:526.299524pt;}
.y64_c00382{bottom:526.630183pt;}
.y63_c00382{bottom:527.217633pt;}
.y62_c00382{bottom:527.442509pt;}
.y61_c00382{bottom:527.949276pt;}
.y60_c00382{bottom:528.257297pt;}
.y5f_c00382{bottom:528.712355pt;}
.y5e_c00382{bottom:544.303659pt;}
.y5d_c00382{bottom:544.528811pt;}
.y5c_c00382{bottom:545.148292pt;}
.y5b_c00382{bottom:545.981581pt;}
.y5a_c00382{bottom:546.791535pt;}
.y59_c00382{bottom:547.638305pt;}
.y58_c00382{bottom:548.004232pt;}
.y57_c00382{bottom:548.589729pt;}
.y56_c00382{bottom:549.113560pt;}
.y55_c00382{bottom:564.838864pt;}
.y54_c00382{bottom:565.480113pt;}
.y53_c00382{bottom:565.918980pt;}
.y52_c00382{bottom:566.512155pt;}
.y51_c00382{bottom:567.058575pt;}
.y50_c00382{bottom:567.609940pt;}
.y4f_c00382{bottom:568.024716pt;}
.y4e_c00382{bottom:568.552867pt;}
.y4d_c00382{bottom:584.977953pt;}
.y4c_c00382{bottom:585.580475pt;}
.y4b_c00382{bottom:586.104808pt;}
.y4a_c00382{bottom:586.561399pt;}
.y49_c00382{bottom:587.127557pt;}
.y48_c00382{bottom:587.844232pt;}
.y47_c00382{bottom:588.103800pt;}
.y46_c00382{bottom:588.433908pt;}
.y45_c00382{bottom:589.194196pt;}
.y44_c00382{bottom:605.171169pt;}
.y43_c00382{bottom:605.683663pt;}
.y42_c00382{bottom:605.976408pt;}
.y41_c00382{bottom:606.343339pt;}
.y40_c00382{bottom:606.741523pt;}
.y3f_c00382{bottom:607.238629pt;}
.y3e_c00382{bottom:607.869332pt;}
.y3d_c00382{bottom:608.220552pt;}
.y3c_c00382{bottom:608.395100pt;}
.y3b_c00382{bottom:625.598273pt;}
.y3a_c00382{bottom:626.278257pt;}
.y39_c00382{bottom:626.518145pt;}
.y38_c00382{bottom:626.790439pt;}
.y37_c00382{bottom:627.070365pt;}
.y36_c00382{bottom:627.349644pt;}
.y35_c00382{bottom:627.648799pt;}
.y34_c00382{bottom:627.976579pt;}
.y33_c00382{bottom:628.234913pt;}
.y32_c00382{bottom:628.519965pt;}
.y31_c00382{bottom:628.797396pt;}
.y30_c00382{bottom:645.324593pt;}
.y2f_c00382{bottom:645.646549pt;}
.y2e_c00382{bottom:646.046405pt;}
.y2d_c00382{bottom:646.280308pt;}
.y2c_c00382{bottom:646.691675pt;}
.y2b_c00382{bottom:646.968476pt;}
.y2a_c00382{bottom:647.602103pt;}
.y29_c00382{bottom:648.022508pt;}
.y28_c00382{bottom:648.959619pt;}
.y27_c00382{bottom:666.260773pt;}
.y26_c00382{bottom:666.275067pt;}
.y25_c00382{bottom:666.621517pt;}
.y24_c00382{bottom:666.789787pt;}
.y23_c00382{bottom:667.404164pt;}
.y22_c00382{bottom:667.796663pt;}
.y21_c00382{bottom:668.132816pt;}
.y20_c00382{bottom:668.533536pt;}
.y1f_c00382{bottom:668.888856pt;}
.y1e_c00382{bottom:669.119219pt;}
.y1d_c00382{bottom:685.518745pt;}
.y1c_c00382{bottom:686.056863pt;}
.y1b_c00382{bottom:686.511073pt;}
.y1a_c00382{bottom:686.922676pt;}
.y19_c00382{bottom:687.044739pt;}
.y18_c00382{bottom:687.615743pt;}
.y17_c00382{bottom:688.552753pt;}
.y16_c00382{bottom:689.065175pt;}
.y15_c00382{bottom:705.714580pt;}
.y14_c00382{bottom:706.274301pt;}
.y13_c00382{bottom:706.621692pt;}
.y12_c00382{bottom:706.914893pt;}
.y11_c00382{bottom:707.337875pt;}
.y10_c00382{bottom:707.593905pt;}
.yf_c00382{bottom:707.856225pt;}
.ye_c00382{bottom:708.273433pt;}
.yd_c00382{bottom:708.721607pt;}
.yc_c00382{bottom:726.576661pt;}
.yb_c00382{bottom:726.806005pt;}
.ya_c00382{bottom:726.836317pt;}
.y9_c00382{bottom:727.095433pt;}
.y8_c00382{bottom:727.307029pt;}
.y7_c00382{bottom:727.529269pt;}
.y6_c00382{bottom:727.794973pt;}
.y5_c00382{bottom:727.978837pt;}
.y4_c00382{bottom:728.175073pt;}
.y3_c00382{bottom:728.648137pt;}
.y2_c00382{bottom:728.881333pt;}
.y1_c00382{bottom:766.272000pt;}
.h13_c00382{height:34.533333pt;}
.h12_c00382{height:43.874584pt;}
.h11_c00382{height:47.608591pt;}
.h6_c00382{height:55.068897pt;}
.h8_c00382{height:56.002268pt;}
.hf_c00382{height:56.007168pt;}
.h14_c00382{height:57.866667pt;}
.h4_c00382{height:59.735752pt;}
.h9_c00382{height:60.669124pt;}
.h10_c00382{height:60.674432pt;}
.h2_c00382{height:61.600000pt;}
.h7_c00382{height:61.602495pt;}
.he_c00382{height:61.607884pt;}
.h3_c00382{height:62.535866pt;}
.h5_c00382{height:63.469237pt;}
.ha_c00382{height:64.402608pt;}
.hd_c00382{height:64.408243pt;}
.hc_c00382{height:79.340037pt;}
.hb_c00382{height:82.140273pt;}
.h1_c00382{height:893.333333pt;}
.h0_c00382{height:893.466667pt;}
.w0_c00382{width:635.733333pt;}
.w1_c00382{width:636.000000pt;}
.x0_c00382{left:0.000000pt;}
.x87_c00382{left:71.398412pt;}
.x6f_c00382{left:81.077333pt;}
.x7b_c00382{left:89.044469pt;}
.x80_c00382{left:92.344043pt;}
.x88_c00382{left:95.335289pt;}
.x42_c00382{left:102.743771pt;}
.x82_c00382{left:104.068000pt;}
.x7c_c00382{left:106.833227pt;}
.x74_c00382{left:107.755243pt;}
.x61_c00382{left:109.508063pt;}
.x59_c00382{left:111.681765pt;}
.x50_c00382{left:113.160101pt;}
.x1c_c00382{left:114.603361pt;}
.x31_c00382{left:115.551632pt;}
.x3_c00382{left:116.536000pt;}
.x89_c00382{left:120.068141pt;}
.x75_c00382{left:121.722581pt;}
.x32_c00382{left:131.390011pt;}
.x5a_c00382{left:136.157995pt;}
.x1d_c00382{left:137.680491pt;}
.x2a_c00382{left:139.786704pt;}
.x4_c00382{left:142.446667pt;}
.x79_c00382{left:144.037045pt;}
.x5e_c00382{left:148.183121pt;}
.x53_c00382{left:150.314172pt;}
.x4a_c00382{left:152.070741pt;}
.x69_c00382{left:155.093612pt;}
.xe_c00382{left:156.787137pt;}
.x15_c00382{left:163.796900pt;}
.x2b_c00382{left:165.680903pt;}
.x6a_c00382{left:168.285997pt;}
.x70_c00382{left:171.890667pt;}
.x1e_c00382{left:173.160167pt;}
.x4b_c00382{left:177.702045pt;}
.x43_c00382{left:181.998873pt;}
.x7d_c00382{left:182.984107pt;}
.x62_c00382{left:186.129256pt;}
.x39_c00382{left:187.741539pt;}
.x2c_c00382{left:189.199149pt;}
.x25_c00382{left:192.869179pt;}
.x5_c00382{left:195.009333pt;}
.x5f_c00382{left:195.950257pt;}
.x8a_c00382{left:199.763955pt;}
.x76_c00382{left:201.648075pt;}
.x3a_c00382{left:205.025936pt;}
.x44_c00382{left:208.137697pt;}
.x54_c00382{left:209.100337pt;}
.x1f_c00382{left:213.239807pt;}
.x8b_c00382{left:214.170343pt;}
.x63_c00382{left:215.110363pt;}
.x6_c00382{left:216.813333pt;}
.xf_c00382{left:218.511355pt;}
.x33_c00382{left:220.639069pt;}
.x7e_c00382{left:224.509451pt;}
.x26_c00382{left:227.876231pt;}
.x3f_c00382{left:230.210253pt;}
.x81_c00382{left:232.128011pt;}
.x66_c00382{left:234.796711pt;}
.x7_c00382{left:237.242667pt;}
.x4c_c00382{left:238.697735pt;}
.x10_c00382{left:241.773601pt;}
.x55_c00382{left:243.263823pt;}
.x20_c00382{left:246.886173pt;}
.x77_c00382{left:247.980523pt;}
.x16_c00382{left:248.944697pt;}
.x5b_c00382{left:250.230192pt;}
.x3b_c00382{left:252.802023pt;}
.x64_c00382{left:254.001596pt;}
.x6b_c00382{left:256.628971pt;}
.x71_c00382{left:257.902667pt;}
.x51_c00382{left:263.653412pt;}
.x34_c00382{left:265.798253pt;}
.x8_c00382{left:266.765333pt;}
.x45_c00382{left:268.590973pt;}
.x2d_c00382{left:271.517661pt;}
.x72_c00382{left:272.958667pt;}
.x1_c00382{left:275.520000pt;}
.x11_c00382{left:280.178239pt;}
.x7a_c00382{left:283.977899pt;}
.x21_c00382{left:286.200492pt;}
.x4d_c00382{left:287.672415pt;}
.x3c_c00382{left:290.521316pt;}
.x9_c00382{left:291.458667pt;}
.x65_c00382{left:295.760673pt;}
.x2e_c00382{left:296.990539pt;}
.x5c_c00382{left:299.858627pt;}
.x17_c00382{left:300.833095pt;}
.x35_c00382{left:302.040272pt;}
.x27_c00382{left:303.699512pt;}
.x78_c00382{left:304.620459pt;}
.x7f_c00382{left:305.814848pt;}
.x12_c00382{left:306.829759pt;}
.x6c_c00382{left:308.158596pt;}
.x18_c00382{left:311.876891pt;}
.xa_c00382{left:314.969333pt;}
.x73_c00382{left:316.205333pt;}
.x40_c00382{left:317.865764pt;}
.x60_c00382{left:320.044037pt;}
.x2f_c00382{left:321.763428pt;}
.x8c_c00382{left:322.904291pt;}
.x46_c00382{left:326.435036pt;}
.x2_c00382{left:329.760000pt;}
.x36_c00382{left:335.402339pt;}
.x13_c00382{left:338.465195pt;}
.x90_c00382{left:340.560000pt;}
.x6d_c00382{left:342.046827pt;}
.xb_c00382{left:343.760000pt;}
.x4e_c00382{left:344.749545pt;}
.xc_c00382{left:347.128000pt;}
.x19_c00382{left:349.313552pt;}
.x5d_c00382{left:350.253692pt;}
.x41_c00382{left:351.664552pt;}
.x67_c00382{left:354.317989pt;}
.x3d_c00382{left:355.953788pt;}
.x28_c00382{left:357.468727pt;}
.x37_c00382{left:362.003192pt;}
.x22_c00382{left:364.419784pt;}
.x6e_c00382{left:368.399597pt;}
.x56_c00382{left:369.982316pt;}
.xd_c00382{left:372.610667pt;}
.x4f_c00382{left:374.746075pt;}
.x68_c00382{left:381.683420pt;}
.x52_c00382{left:383.216344pt;}
.x47_c00382{left:385.983027pt;}
.x14_c00382{left:389.396283pt;}
.x1a_c00382{left:390.595475pt;}
.x57_c00382{left:393.447711pt;}
.x8e_c00382{left:394.800000pt;}
.x3e_c00382{left:396.083616pt;}
.x23_c00382{left:399.062139pt;}
.x24_c00382{left:400.502127pt;}
.x30_c00382{left:405.303249pt;}
.x38_c00382{left:408.575685pt;}
.x83_c00382{left:410.524000pt;}
.x91_c00382{left:416.160000pt;}
.x29_c00382{left:417.668440pt;}
.x58_c00382{left:421.347532pt;}
.x48_c00382{left:430.219701pt;}
.x84_c00382{left:437.638667pt;}
.x1b_c00382{left:439.570599pt;}
.x49_c00382{left:446.346981pt;}
.x8d_c00382{left:451.319192pt;}
.x85_c00382{left:454.938667pt;}
.x8f_c00382{left:462.480000pt;}
.x86_c00382{left:467.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_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_ef4e99a7aa2876b3106553d3.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;}
.m8b_c00383{transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);}
.mb7_c00383{transform:matrix(0.042330,-0.000635,0.003750,0.249972,0,0);-ms-transform:matrix(0.042330,-0.000635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.042330,-0.000635,0.003750,0.249972,0,0);}
.mc8_c00383{transform:matrix(0.096950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00383{transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.113755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113755,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120385,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.123420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123420,0.000000,0.000000,0.250000,0,0);}
.m81_c00383{transform:matrix(0.127155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127155,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.138660,-0.002635,0.004749,0.249955,0,0);-ms-transform:matrix(0.138660,-0.002635,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138660,-0.002635,0.004749,0.249955,0,0);}
.mc2_c00383{transform:matrix(0.142365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142365,0.000000,0.000000,0.250000,0,0);}
.mc5_c00383{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);}
.mae_c00383{transform:matrix(0.150240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150240,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{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);}
.m68_c00383{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);}
.m2b_c00383{transform:matrix(0.155509,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155509,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155509,-0.001866,0.003000,0.249982,0,0);}
.mc1_c00383{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);}
.m11_c00383{transform:matrix(0.157187,-0.002987,0.004749,0.249955,0,0);-ms-transform:matrix(0.157187,-0.002987,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157187,-0.002987,0.004749,0.249955,0,0);}
.m7e_c00383{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);}
.m46_c00383{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);}
.mb6_c00383{transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);}
.mc7_c00383{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);}
.m4d_c00383{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);}
.m64_c00383{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);}
.mc4_c00383{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);}
.m44_c00383{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);}
.m27_c00383{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);}
.mc3_c00383{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);}
.m2e_c00383{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);}
.m25_c00383{transform:matrix(0.169873,-0.002038,0.003000,0.249982,0,0);-ms-transform:matrix(0.169873,-0.002038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169873,-0.002038,0.003000,0.249982,0,0);}
.m6b_c00383{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);}
.m5a_c00383{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);}
.mc6_c00383{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);}
.m7b_c00383{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_c00383{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);}
.mbc_c00383{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);}
.m67_c00383{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);}
.m1a_c00383{transform:matrix(0.175313,-0.003331,0.004749,0.249955,0,0);-ms-transform:matrix(0.175313,-0.003331,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175313,-0.003331,0.004749,0.249955,0,0);}
.m58_c00383{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);}
.m4c_c00383{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);}
.m18_c00383{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);}
.m40_c00383{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);}
.m4f_c00383{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);}
.m1b_c00383{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);}
.mcc_c00383{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);}
.m17_c00383{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);}
.m71_c00383{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);}
.md2_c00383{transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);}
.mbd_c00383{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);}
.md0_c00383{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);}
.m4e_c00383{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);}
.ma0_c00383{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);}
.m97_c00383{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);}
.mb2_c00383{transform:matrix(0.187454,-0.002812,0.003750,0.249972,0,0);-ms-transform:matrix(0.187454,-0.002812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187454,-0.002812,0.003750,0.249972,0,0);}
.ma2_c00383{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);}
.mcf_c00383{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);}
.m8f_c00383{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);}
.mb8_c00383{transform:matrix(0.189459,-0.002842,0.003750,0.249972,0,0);-ms-transform:matrix(0.189459,-0.002842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189459,-0.002842,0.003750,0.249972,0,0);}
.m42_c00383{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);}
.m15_c00383{transform:matrix(0.189911,-0.003608,0.004749,0.249955,0,0);-ms-transform:matrix(0.189911,-0.003608,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189911,-0.003608,0.004749,0.249955,0,0);}
.m22_c00383{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);}
.m63_c00383{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);}
.m66_c00383{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);}
.m56_c00383{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);}
.m47_c00383{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);}
.m93_c00383{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);}
.m3c_c00383{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);}
.mac_c00383{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);}
.m1e_c00383{transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);-ms-transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);}
.m7d_c00383{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);}
.mf_c00383{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);}
.m59_c00383{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_c00383{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);}
.m9f_c00383{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);}
.m3b_c00383{transform:matrix(0.198261,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198261,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198261,-0.002379,0.003000,0.249982,0,0);}
.m6e_c00383{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);}
.m2d_c00383{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);}
.m5d_c00383{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);}
.mbe_c00383{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);}
.ma8_c00383{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);}
.ma3_c00383{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);}
.m7c_c00383{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);}
.m9d_c00383{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{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);}
.m61_c00383{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);}
.mab_c00383{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);}
.m23_c00383{transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);}
.m9e_c00383{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);}
.mb3_c00383{transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);-ms-transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);}
.ma_c00383{transform:matrix(0.203513,-0.003867,0.004749,0.249955,0,0);-ms-transform:matrix(0.203513,-0.003867,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203513,-0.003867,0.004749,0.249955,0,0);}
.m5e_c00383{transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{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);}
.m4a_c00383{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);}
.m3e_c00383{transform:matrix(0.203695,-0.002444,0.003000,0.249982,0,0);-ms-transform:matrix(0.203695,-0.002444,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203695,-0.002444,0.003000,0.249982,0,0);}
.m6d_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);}
.m9_c00383{transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);-ms-transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);}
.m19_c00383{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_c00383{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);}
.mba_c00383{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);}
.m62_c00383{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);}
.m8e_c00383{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);}
.md1_c00383{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);}
.m90_c00383{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);}
.m55_c00383{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);}
.m39_c00383{transform:matrix(0.206660,-0.002480,0.003000,0.249982,0,0);-ms-transform:matrix(0.206660,-0.002480,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206660,-0.002480,0.003000,0.249982,0,0);}
.m2c_c00383{transform:matrix(0.206850,-0.002482,0.003000,0.249982,0,0);-ms-transform:matrix(0.206850,-0.002482,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206850,-0.002482,0.003000,0.249982,0,0);}
.m5f_c00383{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);}
.mbb_c00383{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);}
.mb4_c00383{transform:matrix(0.208067,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208067,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208067,-0.003121,0.003750,0.249972,0,0);}
.m26_c00383{transform:matrix(0.208610,-0.002503,0.003000,0.249982,0,0);-ms-transform:matrix(0.208610,-0.002503,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208610,-0.002503,0.003000,0.249982,0,0);}
.m73_c00383{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);}
.m32_c00383{transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);-ms-transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);}
.m52_c00383{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);}
.m5c_c00383{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);}
.m9b_c00383{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);}
.m65_c00383{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);}
.m48_c00383{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);}
.m57_c00383{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);}
.m21_c00383{transform:matrix(0.211640,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211640,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211640,-0.002540,0.003000,0.249982,0,0);}
.m9c_c00383{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);}
.ma5_c00383{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);}
.m69_c00383{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);}
.m8c_c00383{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);}
.m1c_c00383{transform:matrix(0.213416,-0.004055,0.004749,0.249955,0,0);-ms-transform:matrix(0.213416,-0.004055,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213416,-0.004055,0.004749,0.249955,0,0);}
.m80_c00383{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);}
.m7_c00383{transform:matrix(0.213841,-0.004063,0.004749,0.249955,0,0);-ms-transform:matrix(0.213841,-0.004063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213841,-0.004063,0.004749,0.249955,0,0);}
.m10_c00383{transform:matrix(0.214246,-0.004071,0.004749,0.249955,0,0);-ms-transform:matrix(0.214246,-0.004071,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214246,-0.004071,0.004749,0.249955,0,0);}
.m82_c00383{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);}
.m43_c00383{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);}
.m84_c00383{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);}
.m4b_c00383{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);}
.m51_c00383{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);}
.m77_c00383{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);}
.me_c00383{transform:matrix(0.217746,-0.004137,0.004749,0.249955,0,0);-ms-transform:matrix(0.217746,-0.004137,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217746,-0.004137,0.004749,0.249955,0,0);}
.m50_c00383{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);}
.mb_c00383{transform:matrix(0.218456,-0.004151,0.004749,0.249955,0,0);-ms-transform:matrix(0.218456,-0.004151,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218456,-0.004151,0.004749,0.249955,0,0);}
.maf_c00383{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);}
.m24_c00383{transform:matrix(0.218614,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218614,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218614,-0.002623,0.003000,0.249982,0,0);}
.mca_c00383{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);}
.m72_c00383{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);}
.mcd_c00383{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);}
.mc_c00383{transform:matrix(0.219175,-0.004164,0.004749,0.249955,0,0);-ms-transform:matrix(0.219175,-0.004164,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219175,-0.004164,0.004749,0.249955,0,0);}
.m1_c00383{transform:matrix(0.219240,-0.004166,0.004749,0.249955,0,0);-ms-transform:matrix(0.219240,-0.004166,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219240,-0.004166,0.004749,0.249955,0,0);}
.m1f_c00383{transform:matrix(0.219990,-0.004180,0.004749,0.249955,0,0);-ms-transform:matrix(0.219990,-0.004180,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219990,-0.004180,0.004749,0.249955,0,0);}
.m28_c00383{transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);-ms-transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220224,-0.002643,0.003000,0.249982,0,0);}
.m98_c00383{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);}
.m4_c00383{transform:matrix(0.220655,-0.004192,0.004749,0.249955,0,0);-ms-transform:matrix(0.220655,-0.004192,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220655,-0.004192,0.004749,0.249955,0,0);}
.mb9_c00383{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);}
.m60_c00383{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);}
.m83_c00383{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);}
.m6c_c00383{transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.225969,-0.004293,0.004749,0.249955,0,0);-ms-transform:matrix(0.225969,-0.004293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225969,-0.004293,0.004749,0.249955,0,0);}
.mce_c00383{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);}
.mb5_c00383{transform:matrix(0.226924,-0.003404,0.003750,0.249972,0,0);-ms-transform:matrix(0.226924,-0.003404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226924,-0.003404,0.003750,0.249972,0,0);}
.m8_c00383{transform:matrix(0.228999,-0.004351,0.004749,0.249955,0,0);-ms-transform:matrix(0.228999,-0.004351,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228999,-0.004351,0.004749,0.249955,0,0);}
.md_c00383{transform:matrix(0.231503,-0.004399,0.004749,0.249955,0,0);-ms-transform:matrix(0.231503,-0.004399,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231503,-0.004399,0.004749,0.249955,0,0);}
.m3d_c00383{transform:matrix(0.231713,-0.002781,0.003000,0.249982,0,0);-ms-transform:matrix(0.231713,-0.002781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231713,-0.002781,0.003000,0.249982,0,0);}
.m29_c00383{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);}
.m6a_c00383{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);}
.mb1_c00383{transform:matrix(0.236318,-0.003545,0.003750,0.249972,0,0);-ms-transform:matrix(0.236318,-0.003545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236318,-0.003545,0.003750,0.249972,0,0);}
.m54_c00383{transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.238708,-0.002864,0.003000,0.249982,0,0);-ms-transform:matrix(0.238708,-0.002864,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238708,-0.002864,0.003000,0.249982,0,0);}
.m96_c00383{transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238910,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{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);}
.mcb_c00383{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);}
.m3a_c00383{transform:matrix(0.243053,-0.002917,0.003000,0.249982,0,0);-ms-transform:matrix(0.243053,-0.002917,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243053,-0.002917,0.003000,0.249982,0,0);}
.maa_c00383{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);}
.m76_c00383{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.246332,-0.002956,0.003000,0.249982,0,0);-ms-transform:matrix(0.246332,-0.002956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246332,-0.002956,0.003000,0.249982,0,0);}
.m49_c00383{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.249172,-0.002990,0.003000,0.249982,0,0);-ms-transform:matrix(0.249172,-0.002990,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249172,-0.002990,0.003000,0.249982,0,0);}
.m37_c00383{transform:matrix(0.249207,-0.002990,0.003000,0.249982,0,0);-ms-transform:matrix(0.249207,-0.002990,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249207,-0.002990,0.003000,0.249982,0,0);}
.m14_c00383{transform:matrix(0.249680,-0.004744,0.004749,0.249955,0,0);-ms-transform:matrix(0.249680,-0.004744,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249680,-0.004744,0.004749,0.249955,0,0);}
.m86_c00383{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);}
.ma7_c00383{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.253149,-0.004810,0.004749,0.249955,0,0);-ms-transform:matrix(0.253149,-0.004810,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253149,-0.004810,0.004749,0.249955,0,0);}
.ma6_c00383{transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.260791,-0.003129,0.003000,0.249982,0,0);-ms-transform:matrix(0.260791,-0.003129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260791,-0.003129,0.003000,0.249982,0,0);}
.m1d_c00383{transform:matrix(0.261798,-0.004974,0.004749,0.249955,0,0);-ms-transform:matrix(0.261798,-0.004974,0.004749,0.249955,0,0);-webkit-transform:matrix(0.261798,-0.004974,0.004749,0.249955,0,0);}
.m7a_c00383{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);}
.m13_c00383{transform:matrix(0.264272,-0.005021,0.004749,0.249955,0,0);-ms-transform:matrix(0.264272,-0.005021,0.004749,0.249955,0,0);-webkit-transform:matrix(0.264272,-0.005021,0.004749,0.249955,0,0);}
.m5b_c00383{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);}
.mc0_c00383{transform:matrix(0.266565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266565,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267685,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.268437,-0.005100,0.004749,0.249955,0,0);-ms-transform:matrix(0.268437,-0.005100,0.004749,0.249955,0,0);-webkit-transform:matrix(0.268437,-0.005100,0.004749,0.249955,0,0);}
.m45_c00383{transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269810,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270215,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.271195,-0.003254,0.003000,0.249982,0,0);-ms-transform:matrix(0.271195,-0.003254,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271195,-0.003254,0.003000,0.249982,0,0);}
.m3f_c00383{transform:matrix(0.271930,-0.003263,0.003000,0.249982,0,0);-ms-transform:matrix(0.271930,-0.003263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271930,-0.003263,0.003000,0.249982,0,0);}
.m36_c00383{transform:matrix(0.276210,-0.003315,0.003000,0.249982,0,0);-ms-transform:matrix(0.276210,-0.003315,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276210,-0.003315,0.003000,0.249982,0,0);}
.m95_c00383{transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.ma4_c00383{transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284215,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.296535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296535,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299860,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.304903,-0.003659,0.003000,0.249982,0,0);-ms-transform:matrix(0.304903,-0.003659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.304903,-0.003659,0.003000,0.249982,0,0);}
.m34_c00383{transform:matrix(0.305163,-0.003662,0.003000,0.249982,0,0);-ms-transform:matrix(0.305163,-0.003662,0.003000,0.249982,0,0);-webkit-transform:matrix(0.305163,-0.003662,0.003000,0.249982,0,0);}
.m20_c00383{transform:matrix(0.305935,-0.005813,0.004749,0.249955,0,0);-ms-transform:matrix(0.305935,-0.005813,0.004749,0.249955,0,0);-webkit-transform:matrix(0.305935,-0.005813,0.004749,0.249955,0,0);}
.mc9_c00383{transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311425,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{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);}
.m30_c00383{transform:matrix(0.314532,-0.003774,0.003000,0.249982,0,0);-ms-transform:matrix(0.314532,-0.003774,0.003000,0.249982,0,0);-webkit-transform:matrix(0.314532,-0.003774,0.003000,0.249982,0,0);}
.m16_c00383{transform:matrix(0.320032,-0.006081,0.004749,0.249955,0,0);-ms-transform:matrix(0.320032,-0.006081,0.004749,0.249955,0,0);-webkit-transform:matrix(0.320032,-0.006081,0.004749,0.249955,0,0);}
.m6_c00383{transform:matrix(0.322392,-0.006125,0.004749,0.249955,0,0);-ms-transform:matrix(0.322392,-0.006125,0.004749,0.249955,0,0);-webkit-transform:matrix(0.322392,-0.006125,0.004749,0.249955,0,0);}
.m70_c00383{transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352120,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.370173,-0.007033,0.004749,0.249955,0,0);-ms-transform:matrix(0.370173,-0.007033,0.004749,0.249955,0,0);-webkit-transform:matrix(0.370173,-0.007033,0.004749,0.249955,0,0);}
.m8a_c00383{transform:matrix(0.378215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378215,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.385795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385795,0.000000,0.000000,0.250000,0,0);}
.mb0_c00383{transform:matrix(0.389356,-0.005840,0.003750,0.249972,0,0);-ms-transform:matrix(0.389356,-0.005840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.389356,-0.005840,0.003750,0.249972,0,0);}
.ma1_c00383{transform:matrix(0.632640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632640,0.000000,0.000000,0.250000,0,0);}
.ma9_c00383{transform:matrix(0.645120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645120,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.682800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682800,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;}
.fs12_c00383{font-size:45.150000px;}
.fs11_c00383{font-size:46.200000px;}
.fsd_c00383{font-size:47.250000px;}
.fsb_c00383{font-size:48.300000px;}
.fs13_c00383{font-size:49.350000px;}
.fs10_c00383{font-size:50.400000px;}
.fsf_c00383{font-size:51.450000px;}
.fsa_c00383{font-size:52.500000px;}
.fs14_c00383{font-size:53.550000px;}
.fs9_c00383{font-size:54.600000px;}
.fs15_c00383{font-size:54.606142px;}
.fsc_c00383{font-size:55.650000px;}
.fse_c00383{font-size:57.750000px;}
.fs16_c00383{font-size:58.806615px;}
.fs17_c00383{font-size:60.900000px;}
.fs0_c00383{font-size:65.111749px;}
.fs1_c00383{font-size:66.161939px;}
.fs4_c00383{font-size:67.212129px;}
.fs3_c00383{font-size:68.250000px;}
.fs7_c00383{font-size:68.254914px;}
.fs5_c00383{font-size:69.304989px;}
.fs6_c00383{font-size:70.355065px;}
.fs2_c00383{font-size:71.412887px;}
.fs8_c00383{font-size:72.450000px;}
.y0_c00383{bottom:0.000000px;}
.y61_c00383{bottom:146.221500px;}
.y4b_c00383{bottom:146.616000px;}
.y60_c00383{bottom:164.974500px;}
.y4a_c00383{bottom:165.898500px;}
.y4e_c00383{bottom:182.919000px;}
.y5f_c00383{bottom:183.244500px;}
.y4d_c00383{bottom:200.419500px;}
.y5e_c00383{bottom:201.273000px;}
.y49_c00383{bottom:201.451500px;}
.y48_c00383{bottom:218.788500px;}
.y5c_c00383{bottom:219.130147px;}
.y5d_c00383{bottom:219.130275px;}
.y55_c00383{bottom:235.039500px;}
.y56_c00383{bottom:235.498432px;}
.y57_c00383{bottom:235.796895px;}
.y58_c00383{bottom:236.610855px;}
.y59_c00383{bottom:236.995627px;}
.y47_c00383{bottom:237.186000px;}
.y5a_c00383{bottom:237.513487px;}
.y5b_c00383{bottom:237.886897px;}
.y54_c00383{bottom:254.598000px;}
.y46_c00383{bottom:254.899500px;}
.y53_c00383{bottom:272.419500px;}
.y45_c00383{bottom:272.584500px;}
.y4c_c00383{bottom:289.852500px;}
.y44_c00383{bottom:290.524500px;}
.y43_c00383{bottom:309.037500px;}
.y52_c00383{bottom:309.061500px;}
.y51_c00383{bottom:325.893000px;}
.y42_c00383{bottom:326.250000px;}
.y41_c00383{bottom:344.568000px;}
.y50_c00383{bottom:345.117000px;}
.y40_c00383{bottom:361.837500px;}
.y4f_c00383{bottom:363.235500px;}
.y3f_c00383{bottom:623.266500px;}
.y39_c00383{bottom:642.871776px;}
.y3a_c00383{bottom:643.439550px;}
.y3b_c00383{bottom:644.154078px;}
.y3c_c00383{bottom:645.023196px;}
.y3d_c00383{bottom:645.499194px;}
.y3e_c00383{bottom:646.546680px;}
.y31_c00383{bottom:665.820018px;}
.y32_c00383{bottom:666.323016px;}
.y33_c00383{bottom:667.294206px;}
.y34_c00383{bottom:667.988508px;}
.y35_c00383{bottom:668.325108px;}
.y36_c00383{bottom:668.712912px;}
.y37_c00383{bottom:669.437028px;}
.y38_c00383{bottom:669.792174px;}
.y28_c00383{bottom:689.039352px;}
.y29_c00383{bottom:689.635620px;}
.y2a_c00383{bottom:690.008382px;}
.y2b_c00383{bottom:690.478110px;}
.y2c_c00383{bottom:690.824880px;}
.y2d_c00383{bottom:691.479360px;}
.y2e_c00383{bottom:691.687800px;}
.y2f_c00383{bottom:691.921098px;}
.y30_c00383{bottom:692.580222px;}
.y20_c00383{bottom:711.451500px;}
.y21_c00383{bottom:712.338882px;}
.y22_c00383{bottom:712.634478px;}
.y23_c00383{bottom:713.181912px;}
.y24_c00383{bottom:713.464008px;}
.y25_c00383{bottom:713.732982px;}
.y26_c00383{bottom:714.302556px;}
.y27_c00383{bottom:714.625242px;}
.y19_c00383{bottom:733.864500px;}
.y1a_c00383{bottom:734.660191px;}
.y1b_c00383{bottom:735.628622px;}
.y1c_c00383{bottom:736.486357px;}
.y1d_c00383{bottom:737.040796px;}
.y1e_c00383{bottom:737.646137px;}
.y1f_c00383{bottom:738.431368px;}
.y18_c00383{bottom:760.066500px;}
.y10_c00383{bottom:780.026166px;}
.y11_c00383{bottom:780.503075px;}
.y12_c00383{bottom:780.885375px;}
.y13_c00383{bottom:782.160432px;}
.y14_c00383{bottom:782.576052px;}
.y15_c00383{bottom:782.925461px;}
.y16_c00383{bottom:783.805296px;}
.y17_c00383{bottom:784.819197px;}
.y8_c00383{bottom:801.900829px;}
.y9_c00383{bottom:802.451592px;}
.ya_c00383{bottom:803.541660px;}
.yb_c00383{bottom:803.991590px;}
.yc_c00383{bottom:804.840291px;}
.yd_c00383{bottom:805.913430px;}
.ye_c00383{bottom:806.505717px;}
.yf_c00383{bottom:807.157683px;}
.y1_c00383{bottom:825.877500px;}
.y2_c00383{bottom:827.118447px;}
.y3_c00383{bottom:828.134301px;}
.y4_c00383{bottom:828.874047px;}
.y5_c00383{bottom:829.802520px;}
.y6_c00383{bottom:830.910401px;}
.y7_c00383{bottom:830.961159px;}
.h14_c00383{height:45.150000px;}
.h13_c00383{height:46.200000px;}
.hf_c00383{height:47.250000px;}
.hd_c00383{height:48.300000px;}
.h15_c00383{height:49.350000px;}
.h12_c00383{height:50.400000px;}
.h11_c00383{height:51.450000px;}
.hc_c00383{height:52.500000px;}
.h16_c00383{height:53.550000px;}
.hb_c00383{height:54.600000px;}
.h17_c00383{height:54.606142px;}
.he_c00383{height:55.650000px;}
.h10_c00383{height:57.750000px;}
.h18_c00383{height:58.806615px;}
.h19_c00383{height:60.900000px;}
.h2_c00383{height:65.111749px;}
.h3_c00383{height:66.161939px;}
.h6_c00383{height:67.212129px;}
.h5_c00383{height:68.250000px;}
.h9_c00383{height:68.254914px;}
.h7_c00383{height:69.304989px;}
.h8_c00383{height:70.355065px;}
.h4_c00383{height:71.412887px;}
.ha_c00383{height:72.450000px;}
.h0_c00383{height:1008.450000px;}
.h1_c00383{height:1008.750000px;}
.w1_c00383{width:689.250000px;}
.w0_c00383{width:689.550000px;}
.x0_c00383{left:0.000000px;}
.x33_c00383{left:153.630000px;}
.x41_c00383{left:154.710000px;}
.x47_c00383{left:156.870000px;}
.x56_c00383{left:159.840000px;}
.x36_c00383{left:167.130000px;}
.x5d_c00383{left:172.530000px;}
.x57_c00383{left:176.580000px;}
.x4e_c00383{left:182.790000px;}
.x8_c00383{left:184.648743px;}
.x37_c00383{left:186.840000px;}
.x2c_c00383{left:188.239212px;}
.x44_c00383{left:189.270000px;}
.x48_c00383{left:195.750000px;}
.x1_c00383{left:198.918000px;}
.x5e_c00383{left:200.610000px;}
.x38_c00383{left:206.280000px;}
.x42_c00383{left:207.360000px;}
.x54_c00383{left:210.600000px;}
.x9_c00383{left:213.636243px;}
.x58_c00383{left:214.650000px;}
.x34_c00383{left:215.730000px;}
.x3d_c00383{left:217.620000px;}
.x2d_c00383{left:219.801444px;}
.x17_c00383{left:226.545000px;}
.x45_c00383{left:227.610000px;}
.x5f_c00383{left:231.930000px;}
.x49_c00383{left:234.090000px;}
.x10_c00383{left:235.410711px;}
.x39_c00383{left:242.730000px;}
.x35_c00383{left:245.700000px;}
.x4b_c00383{left:247.860000px;}
.x15_c00383{left:255.960000px;}
.x43_c00383{left:257.040000px;}
.x30_c00383{left:258.120000px;}
.x1d_c00383{left:259.591500px;}
.x3e_c00383{left:262.710000px;}
.x2_c00383{left:264.231000px;}
.x24_c00383{left:265.860330px;}
.x28_c00383{left:267.285066px;}
.xa_c00383{left:271.008243px;}
.x59_c00383{left:272.160000px;}
.x60_c00383{left:276.480000px;}
.x18_c00383{left:277.515000px;}
.x3f_c00383{left:279.180000px;}
.x4f_c00383{left:281.880000px;}
.x1e_c00383{left:284.224500px;}
.x3a_c00383{left:288.900000px;}
.xb_c00383{left:294.688743px;}
.x16_c00383{left:298.890000px;}
.x31_c00383{left:301.320000px;}
.x4c_c00383{left:302.940000px;}
.x25_c00383{left:305.004330px;}
.x2e_c00383{left:307.765608px;}
.x61_c00383{left:309.150000px;}
.x11_c00383{left:310.416561px;}
.x50_c00383{left:313.740000px;}
.x3_c00383{left:317.697000px;}
.x3b_c00383{left:319.410000px;}
.x19_c00383{left:322.659000px;}
.x29_c00383{left:324.564444px;}
.x1f_c00383{left:329.844000px;}
.x5a_c00383{left:333.450000px;}
.x12_c00383{left:334.897501px;}
.x40_c00383{left:336.150000px;}
.x32_c00383{left:337.230000px;}
.xc_c00383{left:339.357243px;}
.x51_c00383{left:341.820000px;}
.x3c_c00383{left:343.170000px;}
.x2a_c00383{left:346.129896px;}
.x1a_c00383{left:351.840000px;}
.x20_c00383{left:353.352000px;}
.x13_c00383{left:355.419771px;}
.x4_c00383{left:356.631000px;}
.x4a_c00383{left:358.290000px;}
.x52_c00383{left:359.370000px;}
.x46_c00383{left:363.690000px;}
.x62_c00383{left:370.440000px;}
.x55_c00383{left:373.950000px;}
.x21_c00383{left:375.766500px;}
.x53_c00383{left:380.700000px;}
.x4d_c00383{left:382.320000px;}
.x1b_c00383{left:383.700000px;}
.x2b_c00383{left:386.344998px;}
.x26_c00383{left:388.441830px;}
.x2f_c00383{left:392.341506px;}
.xd_c00383{left:395.838243px;}
.x63_c00383{left:396.900000px;}
.x5b_c00383{left:401.760000px;}
.x5c_c00383{left:403.380000px;}
.x5_c00383{left:405.498000px;}
.x14_c00383{left:407.176238px;}
.x70_c00383{left:414.720000px;}
.x64_c00383{left:416.880000px;}
.x87_c00383{left:419.310000px;}
.x7d_c00383{left:420.553500px;}
.x91_c00383{left:421.740000px;}
.x22_c00383{left:423.231000px;}
.x1c_c00383{left:425.028000px;}
.xe_c00383{left:427.011243px;}
.x76_c00383{left:429.030000px;}
.x7c_c00383{left:443.610000px;}
.x23_c00383{left:450.121500px;}
.x7e_c00383{left:451.149000px;}
.x83_c00383{left:454.140000px;}
.x71_c00383{left:457.920000px;}
.xf_c00383{left:461.325243px;}
.x6_c00383{left:463.807500px;}
.x7_c00383{left:466.479000px;}
.x92_c00383{left:468.990000px;}
.x65_c00383{left:471.420000px;}
.x6b_c00383{left:477.090000px;}
.x27_c00383{left:480.180330px;}
.x77_c00383{left:481.410000px;}
.x88_c00383{left:486.810000px;}
.x6c_c00383{left:491.130000px;}
.x66_c00383{left:495.450000px;}
.x89_c00383{left:496.530000px;}
.x78_c00383{left:501.390000px;}
.x72_c00383{left:512.190000px;}
.x84_c00383{left:515.700000px;}
.x8a_c00383{left:518.130000px;}
.x8e_c00383{left:522.990000px;}
.x79_c00383{left:524.070000px;}
.x7f_c00383{left:525.310500px;}
.x67_c00383{left:528.660000px;}
.x6d_c00383{left:530.010000px;}
.x73_c00383{left:535.680000px;}
.x85_c00383{left:537.030000px;}
.x8b_c00383{left:538.110000px;}
.x8f_c00383{left:545.400000px;}
.x80_c00383{left:550.962000px;}
.x68_c00383{left:555.390000px;}
.x6e_c00383{left:560.520000px;}
.x8c_c00383{left:562.950000px;}
.x74_c00383{left:566.460000px;}
.x69_c00383{left:568.080000px;}
.x7a_c00383{left:574.290000px;}
.x6a_c00383{left:581.850000px;}
.x81_c00383{left:585.486000px;}
.x90_c00383{left:590.760000px;}
.x75_c00383{left:596.970000px;}
.x86_c00383{left:602.910000px;}
.x82_c00383{left:610.380000px;}
.x8d_c00383{left:612.630000px;}
.x7b_c00383{left:616.680000px;}
.x6f_c00383{left:623.700000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs12_c00383{font-size:40.133333pt;}
.fs11_c00383{font-size:41.066667pt;}
.fsd_c00383{font-size:42.000000pt;}
.fsb_c00383{font-size:42.933333pt;}
.fs13_c00383{font-size:43.866667pt;}
.fs10_c00383{font-size:44.800000pt;}
.fsf_c00383{font-size:45.733333pt;}
.fsa_c00383{font-size:46.666667pt;}
.fs14_c00383{font-size:47.600000pt;}
.fs9_c00383{font-size:48.533333pt;}
.fs15_c00383{font-size:48.538793pt;}
.fsc_c00383{font-size:49.466667pt;}
.fse_c00383{font-size:51.333333pt;}
.fs16_c00383{font-size:52.272546pt;}
.fs17_c00383{font-size:54.133333pt;}
.fs0_c00383{font-size:57.877111pt;}
.fs1_c00383{font-size:58.810612pt;}
.fs4_c00383{font-size:59.744114pt;}
.fs3_c00383{font-size:60.666667pt;}
.fs7_c00383{font-size:60.671035pt;}
.fs5_c00383{font-size:61.604435pt;}
.fs6_c00383{font-size:62.537836pt;}
.fs2_c00383{font-size:63.478121pt;}
.fs8_c00383{font-size:64.400000pt;}
.y0_c00383{bottom:0.000000pt;}
.y61_c00383{bottom:129.974667pt;}
.y4b_c00383{bottom:130.325333pt;}
.y60_c00383{bottom:146.644000pt;}
.y4a_c00383{bottom:147.465333pt;}
.y4e_c00383{bottom:162.594667pt;}
.y5f_c00383{bottom:162.884000pt;}
.y4d_c00383{bottom:178.150667pt;}
.y5e_c00383{bottom:178.909333pt;}
.y49_c00383{bottom:179.068000pt;}
.y48_c00383{bottom:194.478667pt;}
.y5c_c00383{bottom:194.782353pt;}
.y5d_c00383{bottom:194.782467pt;}
.y55_c00383{bottom:208.924000pt;}
.y56_c00383{bottom:209.331940pt;}
.y57_c00383{bottom:209.597240pt;}
.y58_c00383{bottom:210.320760pt;}
.y59_c00383{bottom:210.662780pt;}
.y47_c00383{bottom:210.832000pt;}
.y5a_c00383{bottom:211.123100pt;}
.y5b_c00383{bottom:211.455020pt;}
.y54_c00383{bottom:226.309333pt;}
.y46_c00383{bottom:226.577333pt;}
.y53_c00383{bottom:242.150667pt;}
.y45_c00383{bottom:242.297333pt;}
.y4c_c00383{bottom:257.646667pt;}
.y44_c00383{bottom:258.244000pt;}
.y43_c00383{bottom:274.700000pt;}
.y52_c00383{bottom:274.721333pt;}
.y51_c00383{bottom:289.682667pt;}
.y42_c00383{bottom:290.000000pt;}
.y41_c00383{bottom:306.282667pt;}
.y50_c00383{bottom:306.770667pt;}
.y40_c00383{bottom:321.633333pt;}
.y4f_c00383{bottom:322.876000pt;}
.y3f_c00383{bottom:554.014667pt;}
.y39_c00383{bottom:571.441579pt;}
.y3a_c00383{bottom:571.946267pt;}
.y3b_c00383{bottom:572.581403pt;}
.y3c_c00383{bottom:573.353952pt;}
.y3d_c00383{bottom:573.777061pt;}
.y3e_c00383{bottom:574.708160pt;}
.y31_c00383{bottom:591.840016pt;}
.y32_c00383{bottom:592.287125pt;}
.y33_c00383{bottom:593.150405pt;}
.y34_c00383{bottom:593.767563pt;}
.y35_c00383{bottom:594.066763pt;}
.y36_c00383{bottom:594.411477pt;}
.y37_c00383{bottom:595.055136pt;}
.y38_c00383{bottom:595.370821pt;}
.y28_c00383{bottom:612.479424pt;}
.y29_c00383{bottom:613.009440pt;}
.y2a_c00383{bottom:613.340784pt;}
.y2b_c00383{bottom:613.758320pt;}
.y2c_c00383{bottom:614.066560pt;}
.y2d_c00383{bottom:614.648320pt;}
.y2e_c00383{bottom:614.833600pt;}
.y2f_c00383{bottom:615.040976pt;}
.y30_c00383{bottom:615.626864pt;}
.y20_c00383{bottom:632.401333pt;}
.y21_c00383{bottom:633.190117pt;}
.y22_c00383{bottom:633.452869pt;}
.y23_c00383{bottom:633.939477pt;}
.y24_c00383{bottom:634.190229pt;}
.y25_c00383{bottom:634.429317pt;}
.y26_c00383{bottom:634.935605pt;}
.y27_c00383{bottom:635.222437pt;}
.y19_c00383{bottom:652.324000pt;}
.y1a_c00383{bottom:653.031281pt;}
.y1b_c00383{bottom:653.892108pt;}
.y1c_c00383{bottom:654.654540pt;}
.y1d_c00383{bottom:655.147375pt;}
.y1e_c00383{bottom:655.685455pt;}
.y1f_c00383{bottom:656.383439pt;}
.y18_c00383{bottom:675.614667pt;}
.y10_c00383{bottom:693.356592pt;}
.y11_c00383{bottom:693.780511pt;}
.y12_c00383{bottom:694.120333pt;}
.y13_c00383{bottom:695.253717pt;}
.y14_c00383{bottom:695.623157pt;}
.y15_c00383{bottom:695.933743pt;}
.y16_c00383{bottom:696.715819pt;}
.y17_c00383{bottom:697.617064pt;}
.y8_c00383{bottom:712.800737pt;}
.y9_c00383{bottom:713.290304pt;}
.ya_c00383{bottom:714.259253pt;}
.yb_c00383{bottom:714.659191pt;}
.yc_c00383{bottom:715.413592pt;}
.yd_c00383{bottom:716.367493pt;}
.ye_c00383{bottom:716.893971pt;}
.yf_c00383{bottom:717.473496pt;}
.y1_c00383{bottom:734.113333pt;}
.y2_c00383{bottom:735.216397pt;}
.y3_c00383{bottom:736.119379pt;}
.y4_c00383{bottom:736.776931pt;}
.y5_c00383{bottom:737.602240pt;}
.y6_c00383{bottom:738.587023pt;}
.y7_c00383{bottom:738.632141pt;}
.h14_c00383{height:40.133333pt;}
.h13_c00383{height:41.066667pt;}
.hf_c00383{height:42.000000pt;}
.hd_c00383{height:42.933333pt;}
.h15_c00383{height:43.866667pt;}
.h12_c00383{height:44.800000pt;}
.h11_c00383{height:45.733333pt;}
.hc_c00383{height:46.666667pt;}
.h16_c00383{height:47.600000pt;}
.hb_c00383{height:48.533333pt;}
.h17_c00383{height:48.538793pt;}
.he_c00383{height:49.466667pt;}
.h10_c00383{height:51.333333pt;}
.h18_c00383{height:52.272546pt;}
.h19_c00383{height:54.133333pt;}
.h2_c00383{height:57.877111pt;}
.h3_c00383{height:58.810612pt;}
.h6_c00383{height:59.744114pt;}
.h5_c00383{height:60.666667pt;}
.h9_c00383{height:60.671035pt;}
.h7_c00383{height:61.604435pt;}
.h8_c00383{height:62.537836pt;}
.h4_c00383{height:63.478121pt;}
.ha_c00383{height:64.400000pt;}
.h0_c00383{height:896.400000pt;}
.h1_c00383{height:896.666667pt;}
.w1_c00383{width:612.666667pt;}
.w0_c00383{width:612.933333pt;}
.x0_c00383{left:0.000000pt;}
.x33_c00383{left:136.560000pt;}
.x41_c00383{left:137.520000pt;}
.x47_c00383{left:139.440000pt;}
.x56_c00383{left:142.080000pt;}
.x36_c00383{left:148.560000pt;}
.x5d_c00383{left:153.360000pt;}
.x57_c00383{left:156.960000pt;}
.x4e_c00383{left:162.480000pt;}
.x8_c00383{left:164.132216pt;}
.x37_c00383{left:166.080000pt;}
.x2c_c00383{left:167.323744pt;}
.x44_c00383{left:168.240000pt;}
.x48_c00383{left:174.000000pt;}
.x1_c00383{left:176.816000pt;}
.x5e_c00383{left:178.320000pt;}
.x38_c00383{left:183.360000pt;}
.x42_c00383{left:184.320000pt;}
.x54_c00383{left:187.200000pt;}
.x9_c00383{left:189.898883pt;}
.x58_c00383{left:190.800000pt;}
.x34_c00383{left:191.760000pt;}
.x3d_c00383{left:193.440000pt;}
.x2d_c00383{left:195.379061pt;}
.x17_c00383{left:201.373333pt;}
.x45_c00383{left:202.320000pt;}
.x5f_c00383{left:206.160000pt;}
.x49_c00383{left:208.080000pt;}
.x10_c00383{left:209.253965pt;}
.x39_c00383{left:215.760000pt;}
.x35_c00383{left:218.400000pt;}
.x4b_c00383{left:220.320000pt;}
.x15_c00383{left:227.520000pt;}
.x43_c00383{left:228.480000pt;}
.x30_c00383{left:229.440000pt;}
.x1d_c00383{left:230.748000pt;}
.x3e_c00383{left:233.520000pt;}
.x2_c00383{left:234.872000pt;}
.x24_c00383{left:236.320293pt;}
.x28_c00383{left:237.586725pt;}
.xa_c00383{left:240.896216pt;}
.x59_c00383{left:241.920000pt;}
.x60_c00383{left:245.760000pt;}
.x18_c00383{left:246.680000pt;}
.x3f_c00383{left:248.160000pt;}
.x4f_c00383{left:250.560000pt;}
.x1e_c00383{left:252.644000pt;}
.x3a_c00383{left:256.800000pt;}
.xb_c00383{left:261.945549pt;}
.x16_c00383{left:265.680000pt;}
.x31_c00383{left:267.840000pt;}
.x4c_c00383{left:269.280000pt;}
.x25_c00383{left:271.114960pt;}
.x2e_c00383{left:273.569429pt;}
.x61_c00383{left:274.800000pt;}
.x11_c00383{left:275.925832pt;}
.x50_c00383{left:278.880000pt;}
.x3_c00383{left:282.397333pt;}
.x3b_c00383{left:283.920000pt;}
.x19_c00383{left:286.808000pt;}
.x29_c00383{left:288.501728pt;}
.x1f_c00383{left:293.194667pt;}
.x5a_c00383{left:296.400000pt;}
.x12_c00383{left:297.686668pt;}
.x40_c00383{left:298.800000pt;}
.x32_c00383{left:299.760000pt;}
.xc_c00383{left:301.650883pt;}
.x51_c00383{left:303.840000pt;}
.x3c_c00383{left:305.040000pt;}
.x2a_c00383{left:307.671019pt;}
.x1a_c00383{left:312.746667pt;}
.x20_c00383{left:314.090667pt;}
.x13_c00383{left:315.928685pt;}
.x4_c00383{left:317.005333pt;}
.x4a_c00383{left:318.480000pt;}
.x52_c00383{left:319.440000pt;}
.x46_c00383{left:323.280000pt;}
.x62_c00383{left:329.280000pt;}
.x55_c00383{left:332.400000pt;}
.x21_c00383{left:334.014667pt;}
.x53_c00383{left:338.400000pt;}
.x4d_c00383{left:339.840000pt;}
.x1b_c00383{left:341.066667pt;}
.x2b_c00383{left:343.417776pt;}
.x26_c00383{left:345.281627pt;}
.x2f_c00383{left:348.748005pt;}
.xd_c00383{left:351.856216pt;}
.x63_c00383{left:352.800000pt;}
.x5b_c00383{left:357.120000pt;}
.x5c_c00383{left:358.560000pt;}
.x5_c00383{left:360.442667pt;}
.x14_c00383{left:361.934433pt;}
.x70_c00383{left:368.640000pt;}
.x64_c00383{left:370.560000pt;}
.x87_c00383{left:372.720000pt;}
.x7d_c00383{left:373.825333pt;}
.x91_c00383{left:374.880000pt;}
.x22_c00383{left:376.205333pt;}
.x1c_c00383{left:377.802667pt;}
.xe_c00383{left:379.565549pt;}
.x76_c00383{left:381.360000pt;}
.x7c_c00383{left:394.320000pt;}
.x23_c00383{left:400.108000pt;}
.x7e_c00383{left:401.021333pt;}
.x83_c00383{left:403.680000pt;}
.x71_c00383{left:407.040000pt;}
.xf_c00383{left:410.066883pt;}
.x6_c00383{left:412.273333pt;}
.x7_c00383{left:414.648000pt;}
.x92_c00383{left:416.880000pt;}
.x65_c00383{left:419.040000pt;}
.x6b_c00383{left:424.080000pt;}
.x27_c00383{left:426.826960pt;}
.x77_c00383{left:427.920000pt;}
.x88_c00383{left:432.720000pt;}
.x6c_c00383{left:436.560000pt;}
.x66_c00383{left:440.400000pt;}
.x89_c00383{left:441.360000pt;}
.x78_c00383{left:445.680000pt;}
.x72_c00383{left:455.280000pt;}
.x84_c00383{left:458.400000pt;}
.x8a_c00383{left:460.560000pt;}
.x8e_c00383{left:464.880000pt;}
.x79_c00383{left:465.840000pt;}
.x7f_c00383{left:466.942667pt;}
.x67_c00383{left:469.920000pt;}
.x6d_c00383{left:471.120000pt;}
.x73_c00383{left:476.160000pt;}
.x85_c00383{left:477.360000pt;}
.x8b_c00383{left:478.320000pt;}
.x8f_c00383{left:484.800000pt;}
.x80_c00383{left:489.744000pt;}
.x68_c00383{left:493.680000pt;}
.x6e_c00383{left:498.240000pt;}
.x8c_c00383{left:500.400000pt;}
.x74_c00383{left:503.520000pt;}
.x69_c00383{left:504.960000pt;}
.x7a_c00383{left:510.480000pt;}
.x6a_c00383{left:517.200000pt;}
.x81_c00383{left:520.432000pt;}
.x90_c00383{left:525.120000pt;}
.x75_c00383{left:530.640000pt;}
.x86_c00383{left:535.920000pt;}
.x82_c00383{left:542.560000pt;}
.x8d_c00383{left:544.560000pt;}
.x7b_c00383{left:548.160000pt;}
.x6f_c00383{left:554.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_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_308acfcf3a382dd29a8e016d.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;}
.m21_c00384{transform:matrix(0.013106,-0.000617,0.011749,0.249724,0,0);-ms-transform:matrix(0.013106,-0.000617,0.011749,0.249724,0,0);-webkit-transform:matrix(0.013106,-0.000617,0.011749,0.249724,0,0);}
.m23_c00384{transform:matrix(0.056458,-0.002656,0.011749,0.249724,0,0);-ms-transform:matrix(0.056458,-0.002656,0.011749,0.249724,0,0);-webkit-transform:matrix(0.056458,-0.002656,0.011749,0.249724,0,0);}
.m2a_c00384{transform:matrix(0.154354,-0.007262,0.011749,0.249724,0,0);-ms-transform:matrix(0.154354,-0.007262,0.011749,0.249724,0,0);-webkit-transform:matrix(0.154354,-0.007262,0.011749,0.249724,0,0);}
.m1c_c00384{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);}
.m1e_c00384{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);}
.m19_c00384{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);}
.m1b_c00384{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);}
.m11_c00384{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);}
.m1d_c00384{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);}
.ma_c00384{transform:matrix(0.205207,-0.003078,0.003750,0.249972,0,0);-ms-transform:matrix(0.205207,-0.003078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205207,-0.003078,0.003750,0.249972,0,0);}
.m18_c00384{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);}
.m15_c00384{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);}
.m14_c00384{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);}
.m12_c00384{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{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);}
.m2e_c00384{transform:matrix(0.232498,-0.010938,0.011749,0.249724,0,0);-ms-transform:matrix(0.232498,-0.010938,0.011749,0.249724,0,0);-webkit-transform:matrix(0.232498,-0.010938,0.011749,0.249724,0,0);}
.m6_c00384{transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);-ms-transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233039,-0.003496,0.003750,0.249972,0,0);}
.m1a_c00384{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);}
.m1f_c00384{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);}
.m16_c00384{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);}
.m17_c00384{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);}
.m24_c00384{transform:matrix(0.252421,-0.011876,0.011749,0.249724,0,0);-ms-transform:matrix(0.252421,-0.011876,0.011749,0.249724,0,0);-webkit-transform:matrix(0.252421,-0.011876,0.011749,0.249724,0,0);}
.m2f_c00384{transform:matrix(0.253949,-0.011948,0.011749,0.249724,0,0);-ms-transform:matrix(0.253949,-0.011948,0.011749,0.249724,0,0);-webkit-transform:matrix(0.253949,-0.011948,0.011749,0.249724,0,0);}
.m20_c00384{transform:matrix(0.270990,-0.012749,0.011749,0.249724,0,0);-ms-transform:matrix(0.270990,-0.012749,0.011749,0.249724,0,0);-webkit-transform:matrix(0.270990,-0.012749,0.011749,0.249724,0,0);}
.me_c00384{transform:matrix(0.311115,-0.004667,0.003750,0.249972,0,0);-ms-transform:matrix(0.311115,-0.004667,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311115,-0.004667,0.003750,0.249972,0,0);}
.m27_c00384{transform:matrix(0.315716,-0.014853,0.011749,0.249724,0,0);-ms-transform:matrix(0.315716,-0.014853,0.011749,0.249724,0,0);-webkit-transform:matrix(0.315716,-0.014853,0.011749,0.249724,0,0);}
.m7_c00384{transform:matrix(0.326658,-0.004900,0.003750,0.249972,0,0);-ms-transform:matrix(0.326658,-0.004900,0.003750,0.249972,0,0);-webkit-transform:matrix(0.326658,-0.004900,0.003750,0.249972,0,0);}
.mf_c00384{transform:matrix(0.334362,-0.005015,0.003750,0.249972,0,0);-ms-transform:matrix(0.334362,-0.005015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.334362,-0.005015,0.003750,0.249972,0,0);}
.m2b_c00384{transform:matrix(0.372303,-0.017516,0.011749,0.249724,0,0);-ms-transform:matrix(0.372303,-0.017516,0.011749,0.249724,0,0);-webkit-transform:matrix(0.372303,-0.017516,0.011749,0.249724,0,0);}
.m28_c00384{transform:matrix(0.380649,-0.017908,0.011749,0.249724,0,0);-ms-transform:matrix(0.380649,-0.017908,0.011749,0.249724,0,0);-webkit-transform:matrix(0.380649,-0.017908,0.011749,0.249724,0,0);}
.m2c_c00384{transform:matrix(0.389294,-0.018315,0.011749,0.249724,0,0);-ms-transform:matrix(0.389294,-0.018315,0.011749,0.249724,0,0);-webkit-transform:matrix(0.389294,-0.018315,0.011749,0.249724,0,0);}
.m0_c00384{transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392305,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.418225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418225,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.434745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434745,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.446216,-0.020993,0.011749,0.249724,0,0);-ms-transform:matrix(0.446216,-0.020993,0.011749,0.249724,0,0);-webkit-transform:matrix(0.446216,-0.020993,0.011749,0.249724,0,0);}
.m22_c00384{transform:matrix(0.448224,-0.021088,0.011749,0.249724,0,0);-ms-transform:matrix(0.448224,-0.021088,0.011749,0.249724,0,0);-webkit-transform:matrix(0.448224,-0.021088,0.011749,0.249724,0,0);}
.m9_c00384{transform:matrix(0.458863,-0.006883,0.003750,0.249972,0,0);-ms-transform:matrix(0.458863,-0.006883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.458863,-0.006883,0.003750,0.249972,0,0);}
.m10_c00384{transform:matrix(0.483320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483320,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.522075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522075,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.528021,-0.007920,0.003750,0.249972,0,0);-ms-transform:matrix(0.528021,-0.007920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.528021,-0.007920,0.003750,0.249972,0,0);}
.md_c00384{transform:matrix(0.545464,-0.008182,0.003750,0.249972,0,0);-ms-transform:matrix(0.545464,-0.008182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.545464,-0.008182,0.003750,0.249972,0,0);}
.m25_c00384{transform:matrix(0.546610,-0.025716,0.011749,0.249724,0,0);-ms-transform:matrix(0.546610,-0.025716,0.011749,0.249724,0,0);-webkit-transform:matrix(0.546610,-0.025716,0.011749,0.249724,0,0);}
.mc_c00384{transform:matrix(0.556002,-0.008340,0.003750,0.249972,0,0);-ms-transform:matrix(0.556002,-0.008340,0.003750,0.249972,0,0);-webkit-transform:matrix(0.556002,-0.008340,0.003750,0.249972,0,0);}
.m2_c00384{transform:matrix(0.562400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562400,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.564110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564110,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.598938,-0.008984,0.003750,0.249972,0,0);-ms-transform:matrix(0.598938,-0.008984,0.003750,0.249972,0,0);-webkit-transform:matrix(0.598938,-0.008984,0.003750,0.249972,0,0);}
.m29_c00384{transform:matrix(0.610650,-0.028729,0.011749,0.249724,0,0);-ms-transform:matrix(0.610650,-0.028729,0.011749,0.249724,0,0);-webkit-transform:matrix(0.610650,-0.028729,0.011749,0.249724,0,0);}
.m26_c00384{transform:matrix(0.692045,-0.032559,0.011749,0.249724,0,0);-ms-transform:matrix(0.692045,-0.032559,0.011749,0.249724,0,0);-webkit-transform:matrix(0.692045,-0.032559,0.011749,0.249724,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;}
.fs9_c00384{font-size:44.104630px;}
.fs5_c00384{font-size:74.550000px;}
.fs6_c00384{font-size:81.900000px;}
.fs8_c00384{font-size:102.910804px;}
.fs7_c00384{font-size:107.100000px;}
.fs0_c00384{font-size:116.550000px;}
.fs4_c00384{font-size:132.314883px;}
.fs3_c00384{font-size:133.365001px;}
.fs1_c00384{font-size:139.650000px;}
.fs2_c00384{font-size:214.224096px;}
.fsa_c00384{font-size:240.475246px;}
.y0_c00384{bottom:0.000000px;}
.y1e_c00384{bottom:91.535043px;}
.y1f_c00384{bottom:101.525274px;}
.y10_c00384{bottom:105.142500px;}
.y15_c00384{bottom:107.223519px;}
.y11_c00384{bottom:108.630981px;}
.y16_c00384{bottom:110.022966px;}
.y12_c00384{bottom:114.071395px;}
.y17_c00384{bottom:114.487203px;}
.y18_c00384{bottom:116.686761px;}
.y19_c00384{bottom:119.090265px;}
.y1a_c00384{bottom:121.836135px;}
.y1b_c00384{bottom:123.920855px;}
.y1c_c00384{bottom:126.019568px;}
.y13_c00384{bottom:127.782940px;}
.y1d_c00384{bottom:127.872618px;}
.y14_c00384{bottom:130.567620px;}
.yf_c00384{bottom:144.454500px;}
.ye_c00384{bottom:390.945000px;}
.yd_c00384{bottom:417.907500px;}
.yc_c00384{bottom:468.108030px;}
.y9_c00384{bottom:468.108308px;}
.yb_c00384{bottom:468.108547px;}
.ya_c00384{bottom:468.108982px;}
.y5_c00384{bottom:522.858150px;}
.y8_c00384{bottom:522.858210px;}
.y6_c00384{bottom:522.858375px;}
.y7_c00384{bottom:522.858772px;}
.y3_c00384{bottom:592.119000px;}
.y4_c00384{bottom:593.569822px;}
.y2_c00384{bottom:650.433000px;}
.y1_c00384{bottom:694.383000px;}
.hb_c00384{height:44.104630px;}
.h7_c00384{height:74.550000px;}
.h8_c00384{height:81.900000px;}
.ha_c00384{height:102.910804px;}
.h9_c00384{height:107.100000px;}
.h2_c00384{height:116.550000px;}
.h6_c00384{height:132.314883px;}
.h5_c00384{height:133.365001px;}
.h3_c00384{height:139.650000px;}
.h4_c00384{height:214.224096px;}
.hc_c00384{height:240.475246px;}
.h1_c00384{height:1005.000000px;}
.h0_c00384{height:1005.150000px;}
.w0_c00384{width:715.200000px;}
.w1_c00384{width:715.500000px;}
.x0_c00384{left:0.000000px;}
.x2d_c00384{left:53.249706px;}
.x20_c00384{left:67.476000px;}
.x25_c00384{left:96.705573px;}
.x9_c00384{left:100.435657px;}
.x11_c00384{left:102.600000px;}
.x1_c00384{left:112.860000px;}
.x7_c00384{left:136.095000px;}
.x21_c00384{left:141.624777px;}
.x18_c00384{left:148.770000px;}
.x26_c00384{left:168.402762px;}
.xd_c00384{left:181.985565px;}
.x2_c00384{left:204.390000px;}
.x8_c00384{left:232.816500px;}
.x19_c00384{left:233.820000px;}
.xa_c00384{left:237.881573px;}
.x12_c00384{left:253.260000px;}
.x22_c00384{left:257.262524px;}
.x3_c00384{left:275.670000px;}
.x6_c00384{left:281.880000px;}
.x13_c00384{left:283.230000px;}
.x1a_c00384{left:301.320000px;}
.xe_c00384{left:311.059590px;}
.x14_c00384{left:319.950000px;}
.x27_c00384{left:339.060582px;}
.xb_c00384{left:359.935522px;}
.x1b_c00384{left:366.120000px;}
.x15_c00384{left:375.030000px;}
.x4_c00384{left:377.460000px;}
.xf_c00384{left:395.849670px;}
.x28_c00384{left:400.618110px;}
.x1e_c00384{left:402.570000px;}
.x1c_c00384{left:406.890000px;}
.xc_c00384{left:422.312062px;}
.x10_c00384{left:439.324957px;}
.x1f_c00384{left:441.180000px;}
.x16_c00384{left:460.080000px;}
.x29_c00384{left:470.921130px;}
.x5_c00384{left:480.330000px;}
.x1d_c00384{left:482.220000px;}
.x2e_c00384{left:486.716148px;}
.x17_c00384{left:500.580000px;}
.x2a_c00384{left:524.298241px;}
.x23_c00384{left:548.705788px;}
.x2b_c00384{left:578.036632px;}
.x24_c00384{left:607.895040px;}
.x2c_c00384{left:625.499976px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs9_c00384{font-size:39.204116pt;}
.fs5_c00384{font-size:66.266667pt;}
.fs6_c00384{font-size:72.800000pt;}
.fs8_c00384{font-size:91.476270pt;}
.fs7_c00384{font-size:95.200000pt;}
.fs0_c00384{font-size:103.600000pt;}
.fs4_c00384{font-size:117.613229pt;}
.fs3_c00384{font-size:118.546668pt;}
.fs1_c00384{font-size:124.133333pt;}
.fs2_c00384{font-size:190.421419pt;}
.fsa_c00384{font-size:213.755774pt;}
.y0_c00384{bottom:0.000000pt;}
.y1e_c00384{bottom:81.364483pt;}
.y1f_c00384{bottom:90.244688pt;}
.y10_c00384{bottom:93.460000pt;}
.y15_c00384{bottom:95.309795pt;}
.y11_c00384{bottom:96.560872pt;}
.y16_c00384{bottom:97.798192pt;}
.y12_c00384{bottom:101.396796pt;}
.y17_c00384{bottom:101.766403pt;}
.y18_c00384{bottom:103.721565pt;}
.y19_c00384{bottom:105.858013pt;}
.y1a_c00384{bottom:108.298787pt;}
.y1b_c00384{bottom:110.151871pt;}
.y1c_c00384{bottom:112.017393pt;}
.y13_c00384{bottom:113.584836pt;}
.y1d_c00384{bottom:113.664549pt;}
.y14_c00384{bottom:116.060107pt;}
.yf_c00384{bottom:128.404000pt;}
.ye_c00384{bottom:347.506667pt;}
.yd_c00384{bottom:371.473333pt;}
.yc_c00384{bottom:416.096027pt;}
.y9_c00384{bottom:416.096273pt;}
.yb_c00384{bottom:416.096487pt;}
.ya_c00384{bottom:416.096873pt;}
.y5_c00384{bottom:464.762800pt;}
.y8_c00384{bottom:464.762853pt;}
.y6_c00384{bottom:464.763000pt;}
.y7_c00384{bottom:464.763353pt;}
.y3_c00384{bottom:526.328000pt;}
.y4_c00384{bottom:527.617620pt;}
.y2_c00384{bottom:578.162667pt;}
.y1_c00384{bottom:617.229333pt;}
.hb_c00384{height:39.204116pt;}
.h7_c00384{height:66.266667pt;}
.h8_c00384{height:72.800000pt;}
.ha_c00384{height:91.476270pt;}
.h9_c00384{height:95.200000pt;}
.h2_c00384{height:103.600000pt;}
.h6_c00384{height:117.613229pt;}
.h5_c00384{height:118.546668pt;}
.h3_c00384{height:124.133333pt;}
.h4_c00384{height:190.421419pt;}
.hc_c00384{height:213.755774pt;}
.h1_c00384{height:893.333333pt;}
.h0_c00384{height:893.466667pt;}
.w0_c00384{width:635.733333pt;}
.w1_c00384{width:636.000000pt;}
.x0_c00384{left:0.000000pt;}
.x2d_c00384{left:47.333072pt;}
.x20_c00384{left:59.978667pt;}
.x25_c00384{left:85.960509pt;}
.x9_c00384{left:89.276140pt;}
.x11_c00384{left:91.200000pt;}
.x1_c00384{left:100.320000pt;}
.x7_c00384{left:120.973333pt;}
.x21_c00384{left:125.888691pt;}
.x18_c00384{left:132.240000pt;}
.x26_c00384{left:149.691344pt;}
.xd_c00384{left:161.764947pt;}
.x2_c00384{left:181.680000pt;}
.x8_c00384{left:206.948000pt;}
.x19_c00384{left:207.840000pt;}
.xa_c00384{left:211.450287pt;}
.x12_c00384{left:225.120000pt;}
.x22_c00384{left:228.677799pt;}
.x3_c00384{left:245.040000pt;}
.x6_c00384{left:250.560000pt;}
.x13_c00384{left:251.760000pt;}
.x1a_c00384{left:267.840000pt;}
.xe_c00384{left:276.497413pt;}
.x14_c00384{left:284.400000pt;}
.x27_c00384{left:301.387184pt;}
.xb_c00384{left:319.942687pt;}
.x1b_c00384{left:325.440000pt;}
.x15_c00384{left:333.360000pt;}
.x4_c00384{left:335.520000pt;}
.xf_c00384{left:351.866373pt;}
.x28_c00384{left:356.104987pt;}
.x1e_c00384{left:357.840000pt;}
.x1c_c00384{left:361.680000pt;}
.xc_c00384{left:375.388500pt;}
.x10_c00384{left:390.511073pt;}
.x1f_c00384{left:392.160000pt;}
.x16_c00384{left:408.960000pt;}
.x29_c00384{left:418.596560pt;}
.x5_c00384{left:426.960000pt;}
.x1d_c00384{left:428.640000pt;}
.x2e_c00384{left:432.636576pt;}
.x17_c00384{left:444.960000pt;}
.x2a_c00384{left:466.042881pt;}
.x23_c00384{left:487.738479pt;}
.x2b_c00384{left:513.810340pt;}
.x24_c00384{left:540.351147pt;}
.x2c_c00384{left:555.999979pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00385{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
}
.y0_c00385{bottom:0.000000px;}
.h0_c00385{height:1008.450000px;}
.h1_c00385{height:1008.750000px;}
.w1_c00385{width:689.250000px;}
.w0_c00385{width:689.550000px;}
.x0_c00385{left:0.000000px;}
@media print{
.y0_c00385{bottom:0.000000pt;}
.h0_c00385{height:896.400000pt;}
.h1_c00385{height:896.666667pt;}
.w1_c00385{width:612.666667pt;}
.w0_c00385{width:612.933333pt;}
.x0_c00385{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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1a_c00386{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);}
.m5_c00386{transform:matrix(0.016529,0.000132,-0.002000,0.249992,0,0);-ms-transform:matrix(0.016529,0.000132,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.016529,0.000132,-0.002000,0.249992,0,0);}
.m6e_c00386{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);}
.m57_c00386{transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);}
.m84_c00386{transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);}
.m51_c00386{transform:matrix(0.103015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103015,0.000000,0.000000,0.250000,0,0);}
.maa_c00386{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);}
.m2d_c00386{transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);}
.m7a_c00386{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m67_c00386{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);}
.m79_c00386{transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148780,0.000000,0.000000,0.250000,0,0);}
.m9b_c00386{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);}
.m5f_c00386{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);}
.m14_c00386{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);}
.m11_c00386{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);}
.ma0_c00386{transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{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);}
.m42_c00386{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);}
.m81_c00386{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);}
.m93_c00386{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);}
.m16_c00386{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);}
.m55_c00386{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);}
.m94_c00386{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);}
.m90_c00386{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);}
.ma5_c00386{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{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);}
.m77_c00386{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);}
.m35_c00386{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);}
.m72_c00386{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);}
.ma8_c00386{transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161820,0.000000,0.000000,0.250000,0,0);}
.ma7_c00386{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{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);}
.m7c_c00386{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);}
.m86_c00386{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);}
.m9d_c00386{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00386{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);}
.m71_c00386{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);}
.m82_c00386{transform:matrix(0.169530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169530,0.000000,0.000000,0.250000,0,0);}
.m78_c00386{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);}
.m4a_c00386{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);}
.m7e_c00386{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);}
.m65_c00386{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);}
.m3e_c00386{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);}
.m44_c00386{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);}
.m3d_c00386{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);}
.m2f_c00386{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);}
.m3a_c00386{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);}
.m23_c00386{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);}
.m7f_c00386{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);}
.m28_c00386{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);}
.m91_c00386{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);}
.m19_c00386{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);}
.m9c_c00386{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);}
.m33_c00386{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);}
.m58_c00386{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);}
.m3f_c00386{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);}
.m8b_c00386{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);}
.m62_c00386{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);}
.m37_c00386{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);}
.m54_c00386{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);}
.m9a_c00386{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);}
.m39_c00386{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);}
.m13_c00386{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);}
.m80_c00386{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);}
.m98_c00386{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);}
.m26_c00386{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);}
.m45_c00386{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);}
.ma6_c00386{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);}
.m92_c00386{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);}
.m2a_c00386{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);}
.m24_c00386{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);}
.m9e_c00386{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);}
.m29_c00386{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);}
.m5b_c00386{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);}
.m64_c00386{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);}
.m68_c00386{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);}
.m30_c00386{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);}
.m5c_c00386{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);}
.m88_c00386{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);}
.ma9_c00386{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);}
.m8a_c00386{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);}
.m10_c00386{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);}
.m50_c00386{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_c00386{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);}
.m36_c00386{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);}
.m3b_c00386{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);}
.m63_c00386{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);}
.m2b_c00386{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);}
.m8e_c00386{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);}
.m12_c00386{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);}
.m1c_c00386{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);}
.m15_c00386{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);}
.m32_c00386{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);}
.m87_c00386{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);}
.m8f_c00386{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);}
.m41_c00386{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);}
.m3c_c00386{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m8c_c00386{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);}
.m25_c00386{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m8d_c00386{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);}
.m99_c00386{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);}
.m85_c00386{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);}
.m38_c00386{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);}
.m7b_c00386{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);}
.m5d_c00386{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);}
.m56_c00386{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);}
.m89_c00386{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);}
.m59_c00386{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);}
.m9f_c00386{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);}
.m60_c00386{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);}
.m22_c00386{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);}
.ma2_c00386{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);}
.m1b_c00386{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);}
.m34_c00386{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);}
.m2c_c00386{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);}
.m74_c00386{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);}
.m97_c00386{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);}
.m17_c00386{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);}
.m18_c00386{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);}
.m4d_c00386{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);}
.m61_c00386{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);}
.m75_c00386{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);}
.m70_c00386{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);}
.m40_c00386{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);}
.m31_c00386{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);}
.m6b_c00386{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);}
.m5e_c00386{transform:matrix(0.219640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219640,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{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);}
.m5a_c00386{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m6a_c00386{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{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);}
.m73_c00386{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);}
.m47_c00386{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);}
.m4f_c00386{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);}
.ma3_c00386{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);}
.m53_c00386{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);}
.m1e_c00386{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);}
.m4c_c00386{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);}
.m6c_c00386{transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00386{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);}
.m21_c00386{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);}
.m95_c00386{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);}
.m4b_c00386{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);}
.m48_c00386{transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);}
.me_c00386{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);}
.m52_c00386{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);}
.m83_c00386{transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m69_c00386{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_c00386{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{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);}
.m6f_c00386{transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);}
.m96_c00386{transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);}
.m27_c00386{transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261305,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267485,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.270481,0.002164,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270481,0.002164,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270481,0.002164,-0.002000,0.249992,0,0);}
.m1d_c00386{transform:matrix(0.275020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275020,0.000000,0.000000,0.250000,0,0);}
.m76_c00386{transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326420,0.000000,0.000000,0.250000,0,0);}
.m6d_c00386{transform:matrix(0.326665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326665,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327475,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.328764,0.002630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.328764,0.002630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.328764,0.002630,-0.002000,0.249992,0,0);}
.m3_c00386{transform:matrix(0.342269,0.002738,-0.002000,0.249992,0,0);-ms-transform:matrix(0.342269,0.002738,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.342269,0.002738,-0.002000,0.249992,0,0);}
.m9_c00386{transform:matrix(0.347695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347695,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{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);}
.m7_c00386{transform:matrix(0.385723,0.003086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.385723,0.003086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.385723,0.003086,-0.002000,0.249992,0,0);}
.m4_c00386{transform:matrix(0.410617,0.003285,-0.002000,0.249992,0,0);-ms-transform:matrix(0.410617,0.003285,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.410617,0.003285,-0.002000,0.249992,0,0);}
.mc_c00386{transform:matrix(0.425980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425980,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.445411,0.003563,-0.002000,0.249992,0,0);-ms-transform:matrix(0.445411,0.003563,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.445411,0.003563,-0.002000,0.249992,0,0);}
.md_c00386{transform:matrix(0.626630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626630,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.626710,0.005014,-0.002000,0.249992,0,0);-ms-transform:matrix(0.626710,0.005014,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.626710,0.005014,-0.002000,0.249992,0,0);}
.m1_c00386{transform:matrix(0.786160,0.006289,-0.002000,0.249992,0,0);-ms-transform:matrix(0.786160,0.006289,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.786160,0.006289,-0.002000,0.249992,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;}
.fse_c00386{font-size:22.050000px;}
.fs0_c00386{font-size:46.201478px;}
.fs3_c00386{font-size:60.900000px;}
.fs7_c00386{font-size:64.050000px;}
.fsa_c00386{font-size:65.100000px;}
.fs5_c00386{font-size:66.150000px;}
.fs8_c00386{font-size:67.200000px;}
.fs2_c00386{font-size:68.250000px;}
.fs4_c00386{font-size:69.300000px;}
.fs6_c00386{font-size:70.350000px;}
.fsb_c00386{font-size:72.450000px;}
.fs9_c00386{font-size:74.550000px;}
.fsc_c00386{font-size:76.650000px;}
.fsd_c00386{font-size:78.750000px;}
.fs1_c00386{font-size:131.250000px;}
.y0_c00386{bottom:0.000000px;}
.y1a_c00386{bottom:266.220000px;}
.y1b_c00386{bottom:266.760000px;}
.y19_c00386{bottom:414.054000px;}
.y18_c00386{bottom:436.101000px;}
.y17_c00386{bottom:459.324000px;}
.y16_c00386{bottom:482.521500px;}
.y15_c00386{bottom:505.681500px;}
.y14_c00386{bottom:528.492000px;}
.y13_c00386{bottom:550.975500px;}
.y12_c00386{bottom:573.273000px;}
.y11_c00386{bottom:595.921500px;}
.y10_c00386{bottom:618.963000px;}
.yf_c00386{bottom:641.641500px;}
.ye_c00386{bottom:664.296000px;}
.yd_c00386{bottom:686.700000px;}
.yc_c00386{bottom:709.650000px;}
.yb_c00386{bottom:732.330000px;}
.ya_c00386{bottom:779.955000px;}
.y9_c00386{bottom:919.607976px;}
.y8_c00386{bottom:920.137056px;}
.y7_c00386{bottom:921.081048px;}
.y6_c00386{bottom:921.254916px;}
.y5_c00386{bottom:921.582240px;}
.y4_c00386{bottom:921.996900px;}
.y3_c00386{bottom:922.505388px;}
.y2_c00386{bottom:923.045040px;}
.y1_c00386{bottom:923.401500px;}
.h10_c00386{height:22.050000px;}
.h2_c00386{height:46.201478px;}
.h5_c00386{height:60.900000px;}
.h9_c00386{height:64.050000px;}
.hc_c00386{height:65.100000px;}
.h7_c00386{height:66.150000px;}
.ha_c00386{height:67.200000px;}
.h4_c00386{height:68.250000px;}
.h6_c00386{height:69.300000px;}
.h8_c00386{height:70.350000px;}
.hd_c00386{height:72.450000px;}
.hb_c00386{height:74.550000px;}
.he_c00386{height:76.650000px;}
.hf_c00386{height:78.750000px;}
.h3_c00386{height:131.250000px;}
.h1_c00386{height:1005.000000px;}
.h0_c00386{height:1005.150000px;}
.w0_c00386{width:715.200000px;}
.w1_c00386{width:715.500000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:52.248000px;}
.x77_c00386{left:65.340000px;}
.x1b_c00386{left:75.870000px;}
.x71_c00386{left:81.540000px;}
.x61_c00386{left:89.100000px;}
.xe_c00386{left:90.990000px;}
.x2_c00386{left:96.805500px;}
.x5b_c00386{left:108.540000px;}
.x78_c00386{left:118.260000px;}
.x68_c00386{left:121.770000px;}
.xf_c00386{left:127.170000px;}
.x1c_c00386{left:128.250000px;}
.x47_c00386{left:131.220000px;}
.x62_c00386{left:132.840000px;}
.x69_c00386{left:137.970000px;}
.x5c_c00386{left:140.130000px;}
.x2f_c00386{left:141.210000px;}
.x10_c00386{left:147.420000px;}
.x1d_c00386{left:152.010000px;}
.xa_c00386{left:154.980000px;}
.x50_c00386{left:157.680000px;}
.x72_c00386{left:159.570000px;}
.x48_c00386{left:163.080000px;}
.x3_c00386{left:164.262000px;}
.x38_c00386{left:166.320000px;}
.x30_c00386{left:171.990000px;}
.x3f_c00386{left:181.170000px;}
.x5a_c00386{left:186.030000px;}
.x24_c00386{left:188.190000px;}
.x11_c00386{left:189.540000px;}
.x5d_c00386{left:193.050000px;}
.x7f_c00386{left:195.210000px;}
.x39_c00386{left:196.560000px;}
.x73_c00386{left:198.990000px;}
.x79_c00386{left:202.230000px;}
.x6a_c00386{left:203.310000px;}
.x1e_c00386{left:205.470000px;}
.x25_c00386{left:213.030000px;}
.x51_c00386{left:216.540000px;}
.x7a_c00386{left:217.890000px;}
.x40_c00386{left:220.590000px;}
.x12_c00386{left:223.290000px;}
.x49_c00386{left:225.990000px;}
.x4_c00386{left:227.823000px;}
.xb_c00386{left:231.120000px;}
.x3a_c00386{left:234.090000px;}
.x31_c00386{left:235.710000px;}
.x6b_c00386{left:238.140000px;}
.x52_c00386{left:240.570000px;}
.x5e_c00386{left:245.430000px;}
.x26_c00386{left:249.750000px;}
.x13_c00386{left:252.720000px;}
.x4a_c00386{left:260.820000px;}
.x53_c00386{left:261.900000px;}
.x63_c00386{left:267.840000px;}
.xc_c00386{left:271.350000px;}
.x41_c00386{left:274.320000px;}
.x27_c00386{left:275.400000px;}
.x5_c00386{left:279.655500px;}
.x54_c00386{left:281.340000px;}
.x14_c00386{left:289.980000px;}
.x7b_c00386{left:302.670000px;}
.x4b_c00386{left:305.910000px;}
.x64_c00386{left:310.500000px;}
.xd_c00386{left:316.170000px;}
.x74_c00386{left:317.250000px;}
.x4c_c00386{left:319.140000px;}
.x6_c00386{left:320.571000px;}
.x1f_c00386{left:322.110000px;}
.x6c_c00386{left:324.000000px;}
.x28_c00386{left:325.350000px;}
.x32_c00386{left:332.640000px;}
.x65_c00386{left:335.070000px;}
.x15_c00386{left:336.690000px;}
.x7_c00386{left:342.304500px;}
.x55_c00386{left:352.350000px;}
.x29_c00386{left:357.210000px;}
.x3b_c00386{left:360.450000px;}
.x33_c00386{left:361.530000px;}
.x7c_c00386{left:363.960000px;}
.x16_c00386{left:375.300000px;}
.x56_c00386{left:380.160000px;}
.x3c_c00386{left:382.590000px;}
.x75_c00386{left:384.210000px;}
.x4d_c00386{left:389.880000px;}
.x42_c00386{left:395.280000px;}
.x34_c00386{left:400.140000px;}
.x66_c00386{left:403.110000px;}
.x17_c00386{left:409.050000px;}
.x2a_c00386{left:412.560000px;}
.x6d_c00386{left:418.770000px;}
.x20_c00386{left:422.550000px;}
.x57_c00386{left:426.870000px;}
.x5f_c00386{left:430.650000px;}
.x3d_c00386{left:432.810000px;}
.x35_c00386{left:433.890000px;}
.x18_c00386{left:436.590000px;}
.x76_c00386{left:441.990000px;}
.x58_c00386{left:448.740000px;}
.x21_c00386{left:450.900000px;}
.x43_c00386{left:452.790000px;}
.x44_c00386{left:457.920000px;}
.x8_c00386{left:460.303500px;}
.x6e_c00386{left:465.210000px;}
.x2b_c00386{left:470.880000px;}
.x2c_c00386{left:484.110000px;}
.x7d_c00386{left:485.190000px;}
.x59_c00386{left:487.890000px;}
.x67_c00386{left:493.020000px;}
.x36_c00386{left:501.660000px;}
.x3e_c00386{left:506.790000px;}
.x19_c00386{left:509.220000px;}
.x2d_c00386{left:511.110000px;}
.x22_c00386{left:512.190000px;}
.x4e_c00386{left:515.700000px;}
.x6f_c00386{left:521.910000px;}
.x45_c00386{left:522.990000px;}
.x9_c00386{left:526.438500px;}
.x37_c00386{left:537.300000px;}
.x23_c00386{left:539.190000px;}
.x2e_c00386{left:540.810000px;}
.x1a_c00386{left:544.320000px;}
.x70_c00386{left:548.370000px;}
.x7e_c00386{left:551.610000px;}
.x60_c00386{left:553.230000px;}
.x4f_c00386{left:557.820000px;}
.x46_c00386{left:566.190000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.fse_c00386{font-size:19.600000pt;}
.fs0_c00386{font-size:41.067981pt;}
.fs3_c00386{font-size:54.133333pt;}
.fs7_c00386{font-size:56.933333pt;}
.fsa_c00386{font-size:57.866667pt;}
.fs5_c00386{font-size:58.800000pt;}
.fs8_c00386{font-size:59.733333pt;}
.fs2_c00386{font-size:60.666667pt;}
.fs4_c00386{font-size:61.600000pt;}
.fs6_c00386{font-size:62.533333pt;}
.fsb_c00386{font-size:64.400000pt;}
.fs9_c00386{font-size:66.266667pt;}
.fsc_c00386{font-size:68.133333pt;}
.fsd_c00386{font-size:70.000000pt;}
.fs1_c00386{font-size:116.666667pt;}
.y0_c00386{bottom:0.000000pt;}
.y1a_c00386{bottom:236.640000pt;}
.y1b_c00386{bottom:237.120000pt;}
.y19_c00386{bottom:368.048000pt;}
.y18_c00386{bottom:387.645333pt;}
.y17_c00386{bottom:408.288000pt;}
.y16_c00386{bottom:428.908000pt;}
.y15_c00386{bottom:449.494667pt;}
.y14_c00386{bottom:469.770667pt;}
.y13_c00386{bottom:489.756000pt;}
.y12_c00386{bottom:509.576000pt;}
.y11_c00386{bottom:529.708000pt;}
.y10_c00386{bottom:550.189333pt;}
.yf_c00386{bottom:570.348000pt;}
.ye_c00386{bottom:590.485333pt;}
.yd_c00386{bottom:610.400000pt;}
.yc_c00386{bottom:630.800000pt;}
.yb_c00386{bottom:650.960000pt;}
.ya_c00386{bottom:693.293333pt;}
.y9_c00386{bottom:817.429312pt;}
.y8_c00386{bottom:817.899605pt;}
.y7_c00386{bottom:818.738709pt;}
.y6_c00386{bottom:818.893259pt;}
.y5_c00386{bottom:819.184213pt;}
.y4_c00386{bottom:819.552800pt;}
.y3_c00386{bottom:820.004789pt;}
.y2_c00386{bottom:820.484480pt;}
.y1_c00386{bottom:820.801333pt;}
.h10_c00386{height:19.600000pt;}
.h2_c00386{height:41.067981pt;}
.h5_c00386{height:54.133333pt;}
.h9_c00386{height:56.933333pt;}
.hc_c00386{height:57.866667pt;}
.h7_c00386{height:58.800000pt;}
.ha_c00386{height:59.733333pt;}
.h4_c00386{height:60.666667pt;}
.h6_c00386{height:61.600000pt;}
.h8_c00386{height:62.533333pt;}
.hd_c00386{height:64.400000pt;}
.hb_c00386{height:66.266667pt;}
.he_c00386{height:68.133333pt;}
.hf_c00386{height:70.000000pt;}
.h3_c00386{height:116.666667pt;}
.h1_c00386{height:893.333333pt;}
.h0_c00386{height:893.466667pt;}
.w0_c00386{width:635.733333pt;}
.w1_c00386{width:636.000000pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:46.442667pt;}
.x77_c00386{left:58.080000pt;}
.x1b_c00386{left:67.440000pt;}
.x71_c00386{left:72.480000pt;}
.x61_c00386{left:79.200000pt;}
.xe_c00386{left:80.880000pt;}
.x2_c00386{left:86.049333pt;}
.x5b_c00386{left:96.480000pt;}
.x78_c00386{left:105.120000pt;}
.x68_c00386{left:108.240000pt;}
.xf_c00386{left:113.040000pt;}
.x1c_c00386{left:114.000000pt;}
.x47_c00386{left:116.640000pt;}
.x62_c00386{left:118.080000pt;}
.x69_c00386{left:122.640000pt;}
.x5c_c00386{left:124.560000pt;}
.x2f_c00386{left:125.520000pt;}
.x10_c00386{left:131.040000pt;}
.x1d_c00386{left:135.120000pt;}
.xa_c00386{left:137.760000pt;}
.x50_c00386{left:140.160000pt;}
.x72_c00386{left:141.840000pt;}
.x48_c00386{left:144.960000pt;}
.x3_c00386{left:146.010667pt;}
.x38_c00386{left:147.840000pt;}
.x30_c00386{left:152.880000pt;}
.x3f_c00386{left:161.040000pt;}
.x5a_c00386{left:165.360000pt;}
.x24_c00386{left:167.280000pt;}
.x11_c00386{left:168.480000pt;}
.x5d_c00386{left:171.600000pt;}
.x7f_c00386{left:173.520000pt;}
.x39_c00386{left:174.720000pt;}
.x73_c00386{left:176.880000pt;}
.x79_c00386{left:179.760000pt;}
.x6a_c00386{left:180.720000pt;}
.x1e_c00386{left:182.640000pt;}
.x25_c00386{left:189.360000pt;}
.x51_c00386{left:192.480000pt;}
.x7a_c00386{left:193.680000pt;}
.x40_c00386{left:196.080000pt;}
.x12_c00386{left:198.480000pt;}
.x49_c00386{left:200.880000pt;}
.x4_c00386{left:202.509333pt;}
.xb_c00386{left:205.440000pt;}
.x3a_c00386{left:208.080000pt;}
.x31_c00386{left:209.520000pt;}
.x6b_c00386{left:211.680000pt;}
.x52_c00386{left:213.840000pt;}
.x5e_c00386{left:218.160000pt;}
.x26_c00386{left:222.000000pt;}
.x13_c00386{left:224.640000pt;}
.x4a_c00386{left:231.840000pt;}
.x53_c00386{left:232.800000pt;}
.x63_c00386{left:238.080000pt;}
.xc_c00386{left:241.200000pt;}
.x41_c00386{left:243.840000pt;}
.x27_c00386{left:244.800000pt;}
.x5_c00386{left:248.582667pt;}
.x54_c00386{left:250.080000pt;}
.x14_c00386{left:257.760000pt;}
.x7b_c00386{left:269.040000pt;}
.x4b_c00386{left:271.920000pt;}
.x64_c00386{left:276.000000pt;}
.xd_c00386{left:281.040000pt;}
.x74_c00386{left:282.000000pt;}
.x4c_c00386{left:283.680000pt;}
.x6_c00386{left:284.952000pt;}
.x1f_c00386{left:286.320000pt;}
.x6c_c00386{left:288.000000pt;}
.x28_c00386{left:289.200000pt;}
.x32_c00386{left:295.680000pt;}
.x65_c00386{left:297.840000pt;}
.x15_c00386{left:299.280000pt;}
.x7_c00386{left:304.270667pt;}
.x55_c00386{left:313.200000pt;}
.x29_c00386{left:317.520000pt;}
.x3b_c00386{left:320.400000pt;}
.x33_c00386{left:321.360000pt;}
.x7c_c00386{left:323.520000pt;}
.x16_c00386{left:333.600000pt;}
.x56_c00386{left:337.920000pt;}
.x3c_c00386{left:340.080000pt;}
.x75_c00386{left:341.520000pt;}
.x4d_c00386{left:346.560000pt;}
.x42_c00386{left:351.360000pt;}
.x34_c00386{left:355.680000pt;}
.x66_c00386{left:358.320000pt;}
.x17_c00386{left:363.600000pt;}
.x2a_c00386{left:366.720000pt;}
.x6d_c00386{left:372.240000pt;}
.x20_c00386{left:375.600000pt;}
.x57_c00386{left:379.440000pt;}
.x5f_c00386{left:382.800000pt;}
.x3d_c00386{left:384.720000pt;}
.x35_c00386{left:385.680000pt;}
.x18_c00386{left:388.080000pt;}
.x76_c00386{left:392.880000pt;}
.x58_c00386{left:398.880000pt;}
.x21_c00386{left:400.800000pt;}
.x43_c00386{left:402.480000pt;}
.x44_c00386{left:407.040000pt;}
.x8_c00386{left:409.158667pt;}
.x6e_c00386{left:413.520000pt;}
.x2b_c00386{left:418.560000pt;}
.x2c_c00386{left:430.320000pt;}
.x7d_c00386{left:431.280000pt;}
.x59_c00386{left:433.680000pt;}
.x67_c00386{left:438.240000pt;}
.x36_c00386{left:445.920000pt;}
.x3e_c00386{left:450.480000pt;}
.x19_c00386{left:452.640000pt;}
.x2d_c00386{left:454.320000pt;}
.x22_c00386{left:455.280000pt;}
.x4e_c00386{left:458.400000pt;}
.x6f_c00386{left:463.920000pt;}
.x45_c00386{left:464.880000pt;}
.x9_c00386{left:467.945333pt;}
.x37_c00386{left:477.600000pt;}
.x23_c00386{left:479.280000pt;}
.x2e_c00386{left:480.720000pt;}
.x1a_c00386{left:483.840000pt;}
.x70_c00386{left:487.440000pt;}
.x7e_c00386{left:490.320000pt;}
.x60_c00386{left:491.760000pt;}
.x4f_c00386{left:495.840000pt;}
.x46_c00386{left:503.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_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;}
.m14a_c00387{transform:matrix(0.020328,0.000264,-0.003250,0.249979,0,0);-ms-transform:matrix(0.020328,0.000264,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.020328,0.000264,-0.003250,0.249979,0,0);}
.m125_c00387{transform:matrix(0.026630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026630,0.000000,0.000000,0.250000,0,0);}
.m144_c00387{transform:matrix(0.032142,0.000418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.032142,0.000418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.032142,0.000418,-0.003250,0.249979,0,0);}
.m148_c00387{transform:matrix(0.032777,0.000426,-0.003250,0.249979,0,0);-ms-transform:matrix(0.032777,0.000426,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.032777,0.000426,-0.003250,0.249979,0,0);}
.m19_c00387{transform:matrix(0.040394,0.000283,-0.001750,0.249994,0,0);-ms-transform:matrix(0.040394,0.000283,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.040394,0.000283,-0.001750,0.249994,0,0);}
.m114_c00387{transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);}
.m15f_c00387{transform:matrix(0.077693,0.001010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.077693,0.001010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.077693,0.001010,-0.003250,0.249979,0,0);}
.me2_c00387{transform:matrix(0.088353,0.000618,-0.001750,0.249994,0,0);-ms-transform:matrix(0.088353,0.000618,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.088353,0.000618,-0.001750,0.249994,0,0);}
.m51_c00387{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.094449,0.001417,-0.003750,0.249972,0,0);-ms-transform:matrix(0.094449,0.001417,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.094449,0.001417,-0.003750,0.249972,0,0);}
.m104_c00387{transform:matrix(0.122740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122740,0.000000,0.000000,0.250000,0,0);}
.mc6_c00387{transform:matrix(0.130242,0.000912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.130242,0.000912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.130242,0.000912,-0.001750,0.249994,0,0);}
.md9_c00387{transform:matrix(0.138922,0.000972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.138922,0.000972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.138922,0.000972,-0.001750,0.249994,0,0);}
.med_c00387{transform:matrix(0.140867,0.000986,-0.001750,0.249994,0,0);-ms-transform:matrix(0.140867,0.000986,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.140867,0.000986,-0.001750,0.249994,0,0);}
.ma_c00387{transform:matrix(0.142344,0.002135,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142344,0.002135,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142344,0.002135,-0.003750,0.249972,0,0);}
.m123_c00387{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);}
.m22_c00387{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);}
.m109_c00387{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147620,0.000000,0.000000,0.250000,0,0);}
.m99_c00387{transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);}
.mf2_c00387{transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149231,0.001045,-0.001750,0.249994,0,0);}
.m36_c00387{transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149480,0.000000,0.000000,0.250000,0,0);}
.ma9_c00387{transform:matrix(0.150351,0.001052,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150351,0.001052,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150351,0.001052,-0.001750,0.249994,0,0);}
.md7_c00387{transform:matrix(0.150806,0.001056,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150806,0.001056,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150806,0.001056,-0.001750,0.249994,0,0);}
.mca_c00387{transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);}
.m23_c00387{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);}
.m58_c00387{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);}
.m11f_c00387{transform:matrix(0.151685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151685,0.000000,0.000000,0.250000,0,0);}
.m37_c00387{transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151810,0.000000,0.000000,0.250000,0,0);}
.m12d_c00387{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);}
.m4a_c00387{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);}
.m10e_c00387{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);}
.mce_c00387{transform:matrix(0.152616,0.001068,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152616,0.001068,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152616,0.001068,-0.001750,0.249994,0,0);}
.mbf_c00387{transform:matrix(0.152701,0.001069,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152701,0.001069,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152701,0.001069,-0.001750,0.249994,0,0);}
.m96_c00387{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);}
.m54_c00387{transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{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);}
.me1_c00387{transform:matrix(0.155741,0.001090,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155741,0.001090,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155741,0.001090,-0.001750,0.249994,0,0);}
.me9_c00387{transform:matrix(0.156221,0.001094,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156221,0.001094,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156221,0.001094,-0.001750,0.249994,0,0);}
.mab_c00387{transform:matrix(0.156371,0.001095,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156371,0.001095,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156371,0.001095,-0.001750,0.249994,0,0);}
.m8b_c00387{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);}
.m20_c00387{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);}
.meb_c00387{transform:matrix(0.158156,0.001107,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158156,0.001107,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158156,0.001107,-0.001750,0.249994,0,0);}
.mcd_c00387{transform:matrix(0.158191,0.001107,-0.001750,0.249994,0,0);-ms-transform:matrix(0.158191,0.001107,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.158191,0.001107,-0.001750,0.249994,0,0);}
.m43_c00387{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);}
.m28_c00387{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);}
.mdd_c00387{transform:matrix(0.159196,0.001114,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159196,0.001114,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159196,0.001114,-0.001750,0.249994,0,0);}
.m73_c00387{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);}
.me0_c00387{transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);}
.mec_c00387{transform:matrix(0.160276,0.001122,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160276,0.001122,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160276,0.001122,-0.001750,0.249994,0,0);}
.mc4_c00387{transform:matrix(0.160421,0.001123,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160421,0.001123,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160421,0.001123,-0.001750,0.249994,0,0);}
.mea_c00387{transform:matrix(0.160561,0.001124,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160561,0.001124,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160561,0.001124,-0.001750,0.249994,0,0);}
.m1d_c00387{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.mfa_c00387{transform:matrix(0.162261,0.001136,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162261,0.001136,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162261,0.001136,-0.001750,0.249994,0,0);}
.m25_c00387{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);}
.mb1_c00387{transform:matrix(0.162991,0.001141,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162991,0.001141,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162991,0.001141,-0.001750,0.249994,0,0);}
.m106_c00387{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);}
.m64_c00387{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);}
.m3e_c00387{transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164265,0.000000,0.000000,0.250000,0,0);}
.m128_c00387{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);}
.mbe_c00387{transform:matrix(0.164691,0.001153,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164691,0.001153,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164691,0.001153,-0.001750,0.249994,0,0);}
.m80_c00387{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);}
.m107_c00387{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.166681,0.002500,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166681,0.002500,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166681,0.002500,-0.003750,0.249972,0,0);}
.m2_c00387{transform:matrix(0.166906,0.002504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166906,0.002504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166906,0.002504,-0.003750,0.249972,0,0);}
.m41_c00387{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);}
.m1c_c00387{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);}
.ma2_c00387{transform:matrix(0.167156,0.001170,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167156,0.001170,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167156,0.001170,-0.001750,0.249994,0,0);}
.m84_c00387{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);}
.m1e_c00387{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);}
.m44_c00387{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);}
.m9d_c00387{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);}
.m12b_c00387{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);}
.mdc_c00387{transform:matrix(0.167836,0.001175,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167836,0.001175,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167836,0.001175,-0.001750,0.249994,0,0);}
.mcc_c00387{transform:matrix(0.168001,0.001176,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168001,0.001176,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168001,0.001176,-0.001750,0.249994,0,0);}
.m88_c00387{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);}
.m74_c00387{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);}
.m1b_c00387{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);}
.maa_c00387{transform:matrix(0.169286,0.001185,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169286,0.001185,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169286,0.001185,-0.001750,0.249994,0,0);}
.m56_c00387{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);}
.m2d_c00387{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);}
.m86_c00387{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);}
.mcf_c00387{transform:matrix(0.171371,0.001200,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171371,0.001200,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171371,0.001200,-0.001750,0.249994,0,0);}
.m4c_c00387{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);}
.mc8_c00387{transform:matrix(0.171891,0.001203,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171891,0.001203,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171891,0.001203,-0.001750,0.249994,0,0);}
.m33_c00387{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);}
.m46_c00387{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);}
.m31_c00387{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);}
.maf_c00387{transform:matrix(0.173221,0.001213,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173221,0.001213,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173221,0.001213,-0.001750,0.249994,0,0);}
.mad_c00387{transform:matrix(0.173541,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173541,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173541,0.001215,-0.001750,0.249994,0,0);}
.mc5_c00387{transform:matrix(0.173681,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173681,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173681,0.001216,-0.001750,0.249994,0,0);}
.m42_c00387{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);}
.m2e_c00387{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);}
.mc7_c00387{transform:matrix(0.174601,0.001222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174601,0.001222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174601,0.001222,-0.001750,0.249994,0,0);}
.m1f_c00387{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);}
.m90_c00387{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);}
.me5_c00387{transform:matrix(0.175671,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175671,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175671,0.001230,-0.001750,0.249994,0,0);}
.mf5_c00387{transform:matrix(0.176041,0.001232,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176041,0.001232,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176041,0.001232,-0.001750,0.249994,0,0);}
.m50_c00387{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);}
.mb9_c00387{transform:matrix(0.176576,0.001236,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176576,0.001236,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176576,0.001236,-0.001750,0.249994,0,0);}
.m24_c00387{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);}
.ma4_c00387{transform:matrix(0.176751,0.001237,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176751,0.001237,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176751,0.001237,-0.001750,0.249994,0,0);}
.m5a_c00387{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);}
.m89_c00387{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);}
.md1_c00387{transform:matrix(0.177276,0.001241,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177276,0.001241,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177276,0.001241,-0.001750,0.249994,0,0);}
.m6e_c00387{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);}
.m101_c00387{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);}
.m21_c00387{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);}
.m65_c00387{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);}
.mfb_c00387{transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);}
.m11e_c00387{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);}
.m3f_c00387{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);}
.m121_c00387{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);}
.mdf_c00387{transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);}
.m7e_c00387{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);}
.m122_c00387{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);}
.mc3_c00387{transform:matrix(0.179336,0.001255,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179336,0.001255,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179336,0.001255,-0.001750,0.249994,0,0);}
.m11a_c00387{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);}
.m4b_c00387{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);}
.m29_c00387{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);}
.m6d_c00387{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);}
.m124_c00387{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);}
.mb3_c00387{transform:matrix(0.180721,0.001265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180721,0.001265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180721,0.001265,-0.001750,0.249994,0,0);}
.me8_c00387{transform:matrix(0.180971,0.001267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180971,0.001267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180971,0.001267,-0.001750,0.249994,0,0);}
.m10c_c00387{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);}
.m5f_c00387{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);}
.m61_c00387{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);}
.m32_c00387{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);}
.m6c_c00387{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);}
.mc2_c00387{transform:matrix(0.182381,0.001277,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182381,0.001277,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182381,0.001277,-0.001750,0.249994,0,0);}
.md3_c00387{transform:matrix(0.182646,0.001279,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182646,0.001279,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182646,0.001279,-0.001750,0.249994,0,0);}
.m5c_c00387{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);}
.m12a_c00387{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);}
.me6_c00387{transform:matrix(0.182796,0.001280,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182796,0.001280,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182796,0.001280,-0.001750,0.249994,0,0);}
.m8a_c00387{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);}
.mbb_c00387{transform:matrix(0.182811,0.001280,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182811,0.001280,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182811,0.001280,-0.001750,0.249994,0,0);}
.mf8_c00387{transform:matrix(0.182856,0.001280,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182856,0.001280,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182856,0.001280,-0.001750,0.249994,0,0);}
.m57_c00387{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);}
.m85_c00387{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);}
.m69_c00387{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);}
.m77_c00387{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);}
.m108_c00387{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);}
.ma8_c00387{transform:matrix(0.184025,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184025,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184025,0.001288,-0.001750,0.249994,0,0);}
.m8f_c00387{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);}
.m94_c00387{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);}
.mf3_c00387{transform:matrix(0.185030,0.001295,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185030,0.001295,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185030,0.001295,-0.001750,0.249994,0,0);}
.m4e_c00387{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);}
.m92_c00387{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{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);}
.mb8_c00387{transform:matrix(0.185670,0.001300,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185670,0.001300,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185670,0.001300,-0.001750,0.249994,0,0);}
.m6f_c00387{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);}
.mc1_c00387{transform:matrix(0.185810,0.001301,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185810,0.001301,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185810,0.001301,-0.001750,0.249994,0,0);}
.mba_c00387{transform:matrix(0.185885,0.001301,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185885,0.001301,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185885,0.001301,-0.001750,0.249994,0,0);}
.mdb_c00387{transform:matrix(0.186100,0.001303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186100,0.001303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186100,0.001303,-0.001750,0.249994,0,0);}
.m10_c00387{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);}
.m11d_c00387{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);}
.mb5_c00387{transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186365,0.001305,-0.001750,0.249994,0,0);}
.mfe_c00387{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);}
.md8_c00387{transform:matrix(0.187290,0.001311,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187290,0.001311,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187290,0.001311,-0.001750,0.249994,0,0);}
.mf0_c00387{transform:matrix(0.187520,0.001313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187520,0.001313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187520,0.001313,-0.001750,0.249994,0,0);}
.m52_c00387{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);}
.mb6_c00387{transform:matrix(0.188840,0.001322,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188840,0.001322,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188840,0.001322,-0.001750,0.249994,0,0);}
.m34_c00387{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);}
.mac_c00387{transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189315,0.001325,-0.001750,0.249994,0,0);}
.m79_c00387{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);}
.mbd_c00387{transform:matrix(0.190215,0.001332,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190215,0.001332,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190215,0.001332,-0.001750,0.249994,0,0);}
.m12c_c00387{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_c00387{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);}
.ma6_c00387{transform:matrix(0.190475,0.001333,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190475,0.001333,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190475,0.001333,-0.001750,0.249994,0,0);}
.ma1_c00387{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);}
.m105_c00387{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);}
.md0_c00387{transform:matrix(0.191095,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191095,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191095,0.001338,-0.001750,0.249994,0,0);}
.ma7_c00387{transform:matrix(0.191125,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191125,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191125,0.001338,-0.001750,0.249994,0,0);}
.m133_c00387{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m9f_c00387{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);}
.m120_c00387{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);}
.m2f_c00387{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);}
.ma5_c00387{transform:matrix(0.191730,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191730,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191730,0.001342,-0.001750,0.249994,0,0);}
.mc0_c00387{transform:matrix(0.191755,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191755,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191755,0.001342,-0.001750,0.249994,0,0);}
.mbc_c00387{transform:matrix(0.191815,0.001343,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191815,0.001343,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191815,0.001343,-0.001750,0.249994,0,0);}
.m118_c00387{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);}
.m70_c00387{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);}
.m100_c00387{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);}
.m6b_c00387{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);}
.m3a_c00387{transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);}
.m127_c00387{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);}
.m4d_c00387{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);}
.mf4_c00387{transform:matrix(0.194415,0.001361,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194415,0.001361,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194415,0.001361,-0.001750,0.249994,0,0);}
.m3c_c00387{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);}
.m53_c00387{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);}
.m72_c00387{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_c00387{transform:matrix(0.196295,0.001374,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196295,0.001374,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196295,0.001374,-0.001750,0.249994,0,0);}
.m38_c00387{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);}
.m98_c00387{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);}
.m35_c00387{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);}
.m45_c00387{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);}
.m132_c00387{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);}
.m60_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);}
.m8d_c00387{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);}
.m103_c00387{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);}
.m62_c00387{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);}
.md5_c00387{transform:matrix(0.200700,0.001405,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200700,0.001405,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200700,0.001405,-0.001750,0.249994,0,0);}
.m117_c00387{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);}
.mf9_c00387{transform:matrix(0.201615,0.001411,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201615,0.001411,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201615,0.001411,-0.001750,0.249994,0,0);}
.m134_c00387{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);}
.mb7_c00387{transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);}
.m83_c00387{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);}
.m10a_c00387{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);}
.m63_c00387{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m9a_c00387{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);}
.m67_c00387{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);}
.m7b_c00387{transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202620,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{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);}
.mb0_c00387{transform:matrix(0.202710,0.001419,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202710,0.001419,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202710,0.001419,-0.001750,0.249994,0,0);}
.m126_c00387{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);}
.m40_c00387{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);}
.mde_c00387{transform:matrix(0.203635,0.001425,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203635,0.001425,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203635,0.001425,-0.001750,0.249994,0,0);}
.m9c_c00387{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);}
.me7_c00387{transform:matrix(0.204705,0.001433,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204705,0.001433,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204705,0.001433,-0.001750,0.249994,0,0);}
.m11b_c00387{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);}
.m8c_c00387{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);}
.m2a_c00387{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);}
.mff_c00387{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);}
.m82_c00387{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);}
.m13b_c00387{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);}
.m8e_c00387{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);}
.m87_c00387{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);}
.md6_c00387{transform:matrix(0.207540,0.001453,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207540,0.001453,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207540,0.001453,-0.001750,0.249994,0,0);}
.m5b_c00387{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_c00387{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);}
.md4_c00387{transform:matrix(0.208110,0.001457,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208110,0.001457,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208110,0.001457,-0.001750,0.249994,0,0);}
.m112_c00387{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);}
.mcb_c00387{transform:matrix(0.208580,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208580,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208580,0.001460,-0.001750,0.249994,0,0);}
.m138_c00387{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);}
.m6a_c00387{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);}
.md2_c00387{transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209180,0.001464,-0.001750,0.249994,0,0);}
.m55_c00387{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);}
.m78_c00387{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_c00387{transform:matrix(0.210725,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210725,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210725,0.001475,-0.001750,0.249994,0,0);}
.m5e_c00387{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);}
.m7f_c00387{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);}
.m111_c00387{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);}
.m115_c00387{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);}
.m1a_c00387{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);}
.m6_c00387{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);}
.me4_c00387{transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212795,0.001490,-0.001750,0.249994,0,0);}
.mef_c00387{transform:matrix(0.212865,0.001490,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212865,0.001490,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212865,0.001490,-0.001750,0.249994,0,0);}
.m27_c00387{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);}
.mc9_c00387{transform:matrix(0.214775,0.001503,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214775,0.001503,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214775,0.001503,-0.001750,0.249994,0,0);}
.m66_c00387{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);}
.m76_c00387{transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{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);}
.m13a_c00387{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);}
.m97_c00387{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);}
.m11c_c00387{transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);}
.m150_c00387{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);}
.mda_c00387{transform:matrix(0.219640,0.001537,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219640,0.001537,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219640,0.001537,-0.001750,0.249994,0,0);}
.mfd_c00387{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);}
.m68_c00387{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);}
.m3d_c00387{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);}
.ma3_c00387{transform:matrix(0.222115,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222115,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222115,0.001555,-0.001750,0.249994,0,0);}
.m10d_c00387{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);}
.m93_c00387{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);}
.m9e_c00387{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);}
.m39_c00387{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);}
.m14_c00387{transform:matrix(0.225684,0.001580,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225684,0.001580,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225684,0.001580,-0.001750,0.249994,0,0);}
.m10f_c00387{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);}
.m155_c00387{transform:matrix(0.227446,0.002957,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227446,0.002957,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227446,0.002957,-0.003250,0.249979,0,0);}
.mfc_c00387{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.m135_c00387{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);}
.ma0_c00387{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);}
.m10b_c00387{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);}
.m30_c00387{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);}
.m4_c00387{transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);}
.m119_c00387{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);}
.m95_c00387{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.m13d_c00387{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);}
.m12f_c00387{transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{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);}
.m102_c00387{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);}
.mf7_c00387{transform:matrix(0.241129,0.001688,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241129,0.001688,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241129,0.001688,-0.001750,0.249994,0,0);}
.m163_c00387{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);}
.m113_c00387{transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);}
.m13e_c00387{transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);}
.m149_c00387{transform:matrix(0.244774,0.003182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244774,0.003182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244774,0.003182,-0.003250,0.249979,0,0);}
.m139_c00387{transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);}
.m110_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);}
.m5d_c00387{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);}
.m2b_c00387{transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);}
.mae_c00387{transform:matrix(0.246374,0.001725,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246374,0.001725,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246374,0.001725,-0.001750,0.249994,0,0);}
.mf_c00387{transform:matrix(0.247827,0.003717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247827,0.003717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247827,0.003717,-0.003750,0.249972,0,0);}
.m129_c00387{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);}
.m130_c00387{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.252302,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252302,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252302,0.003785,-0.003750,0.249972,0,0);}
.m145_c00387{transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);}
.md_c00387{transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);}
.m2c_c00387{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m137_c00387{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);}
.m116_c00387{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);}
.me_c00387{transform:matrix(0.261151,0.003917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261151,0.003917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261151,0.003917,-0.003750,0.249972,0,0);}
.mb_c00387{transform:matrix(0.261326,0.003920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261326,0.003920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261326,0.003920,-0.003750,0.249972,0,0);}
.m12_c00387{transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);}
.m13c_c00387{transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262165,0.000000,0.000000,0.250000,0,0);}
.m15a_c00387{transform:matrix(0.264783,0.003442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264783,0.003442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264783,0.003442,-0.003250,0.249979,0,0);}
.m0_c00387{transform:matrix(0.265790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265790,0.000000,0.000000,0.250000,0,0);}
.m14d_c00387{transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);}
.m7a_c00387{transform:matrix(0.272265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272265,0.000000,0.000000,0.250000,0,0);}
.m146_c00387{transform:matrix(0.282191,0.003668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282191,0.003668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282191,0.003668,-0.003250,0.249979,0,0);}
.m71_c00387{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);}
.mf6_c00387{transform:matrix(0.283513,0.001985,-0.001750,0.249994,0,0);-ms-transform:matrix(0.283513,0.001985,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.283513,0.001985,-0.001750,0.249994,0,0);}
.m91_c00387{transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.295853,0.002071,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295853,0.002071,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295853,0.002071,-0.001750,0.249994,0,0);}
.m14c_c00387{transform:matrix(0.302679,0.003935,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302679,0.003935,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302679,0.003935,-0.003250,0.249979,0,0);}
.m158_c00387{transform:matrix(0.307814,0.004002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307814,0.004002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307814,0.004002,-0.003250,0.249979,0,0);}
.m142_c00387{transform:matrix(0.307979,0.004004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307979,0.004004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307979,0.004004,-0.003250,0.249979,0,0);}
.m11_c00387{transform:matrix(0.310800,0.004662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310800,0.004662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310800,0.004662,-0.003750,0.249972,0,0);}
.m5_c00387{transform:matrix(0.316519,0.004748,-0.003750,0.249972,0,0);-ms-transform:matrix(0.316519,0.004748,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.316519,0.004748,-0.003750,0.249972,0,0);}
.m15_c00387{transform:matrix(0.320552,0.002244,-0.001750,0.249994,0,0);-ms-transform:matrix(0.320552,0.002244,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.320552,0.002244,-0.001750,0.249994,0,0);}
.me3_c00387{transform:matrix(0.322952,0.002261,-0.001750,0.249994,0,0);-ms-transform:matrix(0.322952,0.002261,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.322952,0.002261,-0.001750,0.249994,0,0);}
.m141_c00387{transform:matrix(0.329302,0.004281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.329302,0.004281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.329302,0.004281,-0.003250,0.249979,0,0);}
.m8_c00387{transform:matrix(0.330573,0.004959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.330573,0.004959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.330573,0.004959,-0.003750,0.249972,0,0);}
.m7_c00387{transform:matrix(0.331938,0.004979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.331938,0.004979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.331938,0.004979,-0.003750,0.249972,0,0);}
.m162_c00387{transform:matrix(0.333727,0.004338,-0.003250,0.249979,0,0);-ms-transform:matrix(0.333727,0.004338,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.333727,0.004338,-0.003250,0.249979,0,0);}
.m47_c00387{transform:matrix(0.336105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336105,0.000000,0.000000,0.250000,0,0);}
.m153_c00387{transform:matrix(0.336477,0.004374,-0.003250,0.249979,0,0);-ms-transform:matrix(0.336477,0.004374,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.336477,0.004374,-0.003250,0.249979,0,0);}
.m18_c00387{transform:matrix(0.342387,0.002397,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342387,0.002397,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342387,0.002397,-0.001750,0.249994,0,0);}
.m3b_c00387{transform:matrix(0.349235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349235,0.000000,0.000000,0.250000,0,0);}
.m131_c00387{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);}
.m143_c00387{transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.352600,0.004584,-0.003250,0.249979,0,0);}
.mb4_c00387{transform:matrix(0.353136,0.002472,-0.001750,0.249994,0,0);-ms-transform:matrix(0.353136,0.002472,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.353136,0.002472,-0.001750,0.249994,0,0);}
.m147_c00387{transform:matrix(0.363554,0.004726,-0.003250,0.249979,0,0);-ms-transform:matrix(0.363554,0.004726,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.363554,0.004726,-0.003250,0.249979,0,0);}
.m15b_c00387{transform:matrix(0.366214,0.004761,-0.003250,0.249979,0,0);-ms-transform:matrix(0.366214,0.004761,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.366214,0.004761,-0.003250,0.249979,0,0);}
.m15d_c00387{transform:matrix(0.378398,0.004919,-0.003250,0.249979,0,0);-ms-transform:matrix(0.378398,0.004919,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.378398,0.004919,-0.003250,0.249979,0,0);}
.m136_c00387{transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381320,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00387{transform:matrix(0.387426,0.002712,-0.001750,0.249994,0,0);-ms-transform:matrix(0.387426,0.002712,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.387426,0.002712,-0.001750,0.249994,0,0);}
.m12e_c00387{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);}
.m14f_c00387{transform:matrix(0.398356,0.005179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.398356,0.005179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.398356,0.005179,-0.003250,0.249979,0,0);}
.m3_c00387{transform:matrix(0.404005,0.006060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.404005,0.006060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.404005,0.006060,-0.003750,0.249972,0,0);}
.m160_c00387{transform:matrix(0.421974,0.005486,-0.003250,0.249979,0,0);-ms-transform:matrix(0.421974,0.005486,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.421974,0.005486,-0.003250,0.249979,0,0);}
.m154_c00387{transform:matrix(0.425524,0.005532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.425524,0.005532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.425524,0.005532,-0.003250,0.249979,0,0);}
.m140_c00387{transform:matrix(0.433808,0.005640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.433808,0.005640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.433808,0.005640,-0.003250,0.249979,0,0);}
.m13_c00387{transform:matrix(0.440330,0.006605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.440330,0.006605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.440330,0.006605,-0.003750,0.249972,0,0);}
.m14b_c00387{transform:matrix(0.443902,0.005771,-0.003250,0.249979,0,0);-ms-transform:matrix(0.443902,0.005771,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.443902,0.005771,-0.003250,0.249979,0,0);}
.m15c_c00387{transform:matrix(0.474865,0.006173,-0.003250,0.249979,0,0);-ms-transform:matrix(0.474865,0.006173,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.474865,0.006173,-0.003250,0.249979,0,0);}
.m17_c00387{transform:matrix(0.509858,0.003569,-0.001750,0.249994,0,0);-ms-transform:matrix(0.509858,0.003569,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.509858,0.003569,-0.001750,0.249994,0,0);}
.m15e_c00387{transform:matrix(0.568192,0.007386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.568192,0.007386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.568192,0.007386,-0.003250,0.249979,0,0);}
.m159_c00387{transform:matrix(0.575311,0.007479,-0.003250,0.249979,0,0);-ms-transform:matrix(0.575311,0.007479,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.575311,0.007479,-0.003250,0.249979,0,0);}
.m157_c00387{transform:matrix(0.590620,0.007678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.590620,0.007678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.590620,0.007678,-0.003250,0.249979,0,0);}
.m151_c00387{transform:matrix(0.679008,0.008827,-0.003250,0.249979,0,0);-ms-transform:matrix(0.679008,0.008827,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.679008,0.008827,-0.003250,0.249979,0,0);}
.m14e_c00387{transform:matrix(0.703746,0.009149,-0.003250,0.249979,0,0);-ms-transform:matrix(0.703746,0.009149,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.703746,0.009149,-0.003250,0.249979,0,0);}
.m13f_c00387{transform:matrix(0.707760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707760,0.000000,0.000000,0.250000,0,0);}
.m152_c00387{transform:matrix(0.710915,0.009242,-0.003250,0.249979,0,0);-ms-transform:matrix(0.710915,0.009242,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.710915,0.009242,-0.003250,0.249979,0,0);}
.m161_c00387{transform:matrix(0.719204,0.009350,-0.003250,0.249979,0,0);-ms-transform:matrix(0.719204,0.009350,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.719204,0.009350,-0.003250,0.249979,0,0);}
.m156_c00387{transform:matrix(1.341542,0.017440,-0.003250,0.249979,0,0);-ms-transform:matrix(1.341542,0.017440,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.341542,0.017440,-0.003250,0.249979,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;}
.fs18_c00387{font-size:22.050000px;}
.fs0_c00387{font-size:27.300000px;}
.fs19_c00387{font-size:42.003549px;}
.fs17_c00387{font-size:47.250000px;}
.fs13_c00387{font-size:50.400000px;}
.fs15_c00387{font-size:51.450000px;}
.fs16_c00387{font-size:54.600000px;}
.fs14_c00387{font-size:55.650000px;}
.fsc_c00387{font-size:59.850000px;}
.fse_c00387{font-size:65.101595px;}
.fs8_c00387{font-size:66.150000px;}
.fs12_c00387{font-size:66.151621px;}
.fsb_c00387{font-size:67.200000px;}
.fs11_c00387{font-size:67.201646px;}
.fsa_c00387{font-size:68.250000px;}
.fsd_c00387{font-size:68.251672px;}
.fs9_c00387{font-size:69.300000px;}
.fs7_c00387{font-size:70.350000px;}
.fsf_c00387{font-size:70.351724px;}
.fs10_c00387{font-size:71.401749px;}
.fs6_c00387{font-size:75.600000px;}
.fs1a_c00387{font-size:77.706565px;}
.fs5_c00387{font-size:87.152135px;}
.fs1_c00387{font-size:93.460513px;}
.fs3_c00387{font-size:102.911576px;}
.fs2_c00387{font-size:137.565474px;}
.fs4_c00387{font-size:231.005659px;}
.y0_c00387{bottom:0.000000px;}
.yba_c00387{bottom:83.160000px;}
.yb0_c00387{bottom:87.479962px;}
.yb7_c00387{bottom:87.480193px;}
.yb4_c00387{bottom:87.480196px;}
.yb1_c00387{bottom:87.480261px;}
.yb5_c00387{bottom:87.480285px;}
.yb3_c00387{bottom:87.480318px;}
.yb9_c00387{bottom:87.480549px;}
.yb2_c00387{bottom:87.480600px;}
.yaf_c00387{bottom:87.480673px;}
.yb6_c00387{bottom:87.480834px;}
.yb8_c00387{bottom:87.480901px;}
.ya5_c00387{bottom:103.114885px;}
.ya7_c00387{bottom:103.115483px;}
.ya4_c00387{bottom:103.115526px;}
.ya6_c00387{bottom:103.115533px;}
.ya9_c00387{bottom:103.115650px;}
.ya8_c00387{bottom:103.115772px;}
.yab_c00387{bottom:103.116088px;}
.yaa_c00387{bottom:103.116279px;}
.yac_c00387{bottom:103.116817px;}
.yad_c00387{bottom:103.117396px;}
.yae_c00387{bottom:103.118011px;}
.ya3_c00387{bottom:103.552738px;}
.ya2_c00387{bottom:103.994862px;}
.ya1_c00387{bottom:104.296332px;}
.ya0_c00387{bottom:104.608703px;}
.y9f_c00387{bottom:105.153747px;}
.y9e_c00387{bottom:106.265188px;}
.y9d_c00387{bottom:107.265460px;}
.y9c_c00387{bottom:107.988833px;}
.y9b_c00387{bottom:108.314093px;}
.y9a_c00387{bottom:108.901043px;}
.y99_c00387{bottom:109.255572px;}
.y98_c00387{bottom:109.596062px;}
.y97_c00387{bottom:110.607000px;}
.y95_c00387{bottom:139.174500px;}
.y94_c00387{bottom:139.423500px;}
.y93_c00387{bottom:139.525500px;}
.y92_c00387{bottom:139.714500px;}
.y91_c00387{bottom:139.825500px;}
.y90_c00387{bottom:140.080500px;}
.y8f_c00387{bottom:140.311500px;}
.y8e_c00387{bottom:140.568000px;}
.y8d_c00387{bottom:140.664000px;}
.y8c_c00387{bottom:140.919000px;}
.y8b_c00387{bottom:141.201000px;}
.y8a_c00387{bottom:141.319500px;}
.y89_c00387{bottom:141.594000px;}
.y88_c00387{bottom:141.717000px;}
.y87_c00387{bottom:142.074000px;}
.y86_c00387{bottom:142.317000px;}
.y85_c00387{bottom:142.560000px;}
.y84_c00387{bottom:158.689500px;}
.y83_c00387{bottom:176.236500px;}
.y96_c00387{bottom:182.250000px;}
.y82_c00387{bottom:193.894500px;}
.y81_c00387{bottom:243.681000px;}
.y80_c00387{bottom:268.221594px;}
.y7f_c00387{bottom:268.672003px;}
.y7e_c00387{bottom:269.085831px;}
.y7d_c00387{bottom:269.289165px;}
.y7c_c00387{bottom:269.524011px;}
.y7b_c00387{bottom:269.678577px;}
.y7a_c00387{bottom:270.172684px;}
.y79_c00387{bottom:270.391785px;}
.y78_c00387{bottom:270.810714px;}
.y77_c00387{bottom:271.245567px;}
.y76_c00387{bottom:271.483939px;}
.y75_c00387{bottom:271.915339px;}
.y74_c00387{bottom:272.136372px;}
.y73_c00387{bottom:272.695623px;}
.y72_c00387{bottom:291.145785px;}
.y71_c00387{bottom:291.588000px;}
.y70_c00387{bottom:291.956133px;}
.y6f_c00387{bottom:292.303000px;}
.y6e_c00387{bottom:292.930053px;}
.y6d_c00387{bottom:293.615863px;}
.y6c_c00387{bottom:293.829660px;}
.y6b_c00387{bottom:294.282213px;}
.y6a_c00387{bottom:294.745116px;}
.y69_c00387{bottom:295.317819px;}
.y68_c00387{bottom:295.609959px;}
.y67_c00387{bottom:295.792404px;}
.y66_c00387{bottom:296.185161px;}
.y65_c00387{bottom:314.380720px;}
.y64_c00387{bottom:314.731630px;}
.y63_c00387{bottom:314.928132px;}
.y62_c00387{bottom:315.094465px;}
.y61_c00387{bottom:315.324462px;}
.y60_c00387{bottom:315.802897px;}
.y5f_c00387{bottom:316.288713px;}
.y5e_c00387{bottom:316.482947px;}
.y5d_c00387{bottom:317.069049px;}
.y5c_c00387{bottom:317.454483px;}
.y5b_c00387{bottom:317.849175px;}
.y5a_c00387{bottom:318.457477px;}
.y59_c00387{bottom:318.865888px;}
.y58_c00387{bottom:336.843908px;}
.y57_c00387{bottom:337.224177px;}
.y56_c00387{bottom:337.604667px;}
.y55_c00387{bottom:337.842956px;}
.y54_c00387{bottom:338.072280px;}
.y53_c00387{bottom:338.312522px;}
.y52_c00387{bottom:338.893207px;}
.y51_c00387{bottom:339.419289px;}
.y50_c00387{bottom:339.714030px;}
.y4f_c00387{bottom:340.127416px;}
.y4e_c00387{bottom:340.306146px;}
.y4d_c00387{bottom:340.824858px;}
.y4c_c00387{bottom:341.543913px;}
.y4b_c00387{bottom:341.818846px;}
.y4a_c00387{bottom:361.524007px;}
.y49_c00387{bottom:361.813167px;}
.y48_c00387{bottom:361.970037px;}
.y47_c00387{bottom:362.444574px;}
.y46_c00387{bottom:362.593758px;}
.y45_c00387{bottom:362.979318px;}
.y44_c00387{bottom:363.336507px;}
.y43_c00387{bottom:363.610347px;}
.y42_c00387{bottom:363.844812px;}
.y41_c00387{bottom:364.219210px;}
.y40_c00387{bottom:364.387200px;}
.y3f_c00387{bottom:364.769305px;}
.y3e_c00387{bottom:384.832861px;}
.y3d_c00387{bottom:385.328031px;}
.y3c_c00387{bottom:385.664388px;}
.y3b_c00387{bottom:385.885570px;}
.y3a_c00387{bottom:386.131229px;}
.y39_c00387{bottom:386.344851px;}
.y38_c00387{bottom:386.802283px;}
.y37_c00387{bottom:387.129222px;}
.y36_c00387{bottom:387.322033px;}
.y35_c00387{bottom:387.533682px;}
.y34_c00387{bottom:387.802104px;}
.y33_c00387{bottom:387.989351px;}
.y32_c00387{bottom:407.965129px;}
.y31_c00387{bottom:408.261733px;}
.y30_c00387{bottom:408.441294px;}
.y2f_c00387{bottom:408.656723px;}
.y2e_c00387{bottom:408.851455px;}
.y2d_c00387{bottom:409.133055px;}
.y2c_c00387{bottom:409.501374px;}
.y2b_c00387{bottom:409.887207px;}
.y2a_c00387{bottom:410.240584px;}
.y29_c00387{bottom:410.452338px;}
.y28_c00387{bottom:410.663976px;}
.y27_c00387{bottom:410.940000px;}
.y26_c00387{bottom:431.013000px;}
.y25_c00387{bottom:454.200000px;}
.y24_c00387{bottom:477.151500px;}
.y23_c00387{bottom:501.091500px;}
.y22_c00387{bottom:523.530000px;}
.y21_c00387{bottom:546.010500px;}
.y20_c00387{bottom:568.926000px;}
.y1f_c00387{bottom:592.888500px;}
.y1e_c00387{bottom:615.540000px;}
.y1d_c00387{bottom:638.217000px;}
.y1c_c00387{bottom:661.411500px;}
.y1b_c00387{bottom:683.562000px;}
.y18_c00387{bottom:715.279920px;}
.y1a_c00387{bottom:715.280042px;}
.y19_c00387{bottom:715.280201px;}
.y17_c00387{bottom:790.393275px;}
.y16_c00387{bottom:792.999333px;}
.y15_c00387{bottom:793.800000px;}
.y14_c00387{bottom:858.544650px;}
.y13_c00387{bottom:858.545310px;}
.ye_c00387{bottom:904.154700px;}
.yf_c00387{bottom:904.154963px;}
.y12_c00387{bottom:904.155255px;}
.yd_c00387{bottom:904.155338px;}
.y10_c00387{bottom:904.155503px;}
.yb_c00387{bottom:904.155705px;}
.y11_c00387{bottom:904.155765px;}
.yc_c00387{bottom:904.155975px;}
.ya_c00387{bottom:919.344593px;}
.y9_c00387{bottom:921.086633px;}
.y8_c00387{bottom:921.916793px;}
.y7_c00387{bottom:922.250445px;}
.y6_c00387{bottom:923.030363px;}
.y5_c00387{bottom:923.783640px;}
.y4_c00387{bottom:924.804060px;}
.y3_c00387{bottom:925.617593px;}
.y2_c00387{bottom:926.367000px;}
.y1_c00387{bottom:928.260000px;}
.h1a_c00387{height:22.050000px;}
.h2_c00387{height:27.300000px;}
.h1b_c00387{height:42.003549px;}
.h19_c00387{height:47.250000px;}
.h15_c00387{height:50.400000px;}
.h17_c00387{height:51.450000px;}
.h18_c00387{height:54.600000px;}
.h16_c00387{height:55.650000px;}
.he_c00387{height:59.850000px;}
.h10_c00387{height:65.101595px;}
.ha_c00387{height:66.150000px;}
.h14_c00387{height:66.151621px;}
.hd_c00387{height:67.200000px;}
.h13_c00387{height:67.201646px;}
.hc_c00387{height:68.250000px;}
.hf_c00387{height:68.251672px;}
.hb_c00387{height:69.300000px;}
.h9_c00387{height:70.350000px;}
.h11_c00387{height:70.351724px;}
.h12_c00387{height:71.401749px;}
.h8_c00387{height:75.600000px;}
.h1c_c00387{height:77.706565px;}
.h7_c00387{height:87.152135px;}
.h3_c00387{height:93.460513px;}
.h5_c00387{height:102.911576px;}
.h4_c00387{height:137.565474px;}
.h6_c00387{height:231.005659px;}
.h0_c00387{height:1008.450000px;}
.h1_c00387{height:1008.750000px;}
.w1_c00387{width:689.250000px;}
.w0_c00387{width:689.550000px;}
.x0_c00387{left:0.000000px;}
.xba_c00387{left:108.272181px;}
.xb_c00387{left:114.210503px;}
.x2_c00387{left:124.893000px;}
.xbb_c00387{left:126.093684px;}
.xbf_c00387{left:147.965160px;}
.x22_c00387{left:158.760000px;}
.x2a_c00387{left:160.380000px;}
.x59_c00387{left:161.730000px;}
.x15_c00387{left:163.419000px;}
.x9b_c00387{left:173.610000px;}
.x3_c00387{left:174.853500px;}
.x19_c00387{left:177.390000px;}
.x68_c00387{left:180.900000px;}
.x74_c00387{left:188.110339px;}
.x4e_c00387{left:190.620000px;}
.xb3_c00387{left:191.637000px;}
.x47_c00387{left:193.860000px;}
.x54_c00387{left:195.480000px;}
.x91_c00387{left:197.066742px;}
.x2b_c00387{left:200.610000px;}
.x1a_c00387{left:203.040000px;}
.x5a_c00387{left:204.120000px;}
.xa6_c00387{left:207.360000px;}
.x23_c00387{left:209.250000px;}
.x92_c00387{left:213.701280px;}
.x7a_c00387{left:216.219820px;}
.xb4_c00387{left:217.828500px;}
.x60_c00387{left:220.050000px;}
.x75_c00387{left:226.456339px;}
.x4_c00387{left:229.089000px;}
.x69_c00387{left:231.120000px;}
.x17_c00387{left:232.201259px;}
.x2c_c00387{left:234.900000px;}
.x96_c00387{left:236.125024px;}
.x4f_c00387{left:237.870000px;}
.x7b_c00387{left:240.218321px;}
.x1b_c00387{left:241.380000px;}
.x36_c00387{left:244.080000px;}
.xb5_c00387{left:245.100000px;}
.xab_c00387{left:246.175500px;}
.xa1_c00387{left:248.130000px;}
.x3f_c00387{left:249.750000px;}
.xa7_c00387{left:252.990000px;}
.xbc_c00387{left:254.354868px;}
.x76_c00387{left:256.691840px;}
.x61_c00387{left:258.930000px;}
.x82_c00387{left:260.463060px;}
.x50_c00387{left:262.440000px;}
.xac_c00387{left:263.727000px;}
.xa2_c00387{left:269.460000px;}
.xc_c00387{left:270.827738px;}
.x37_c00387{left:275.670000px;}
.x13_c00387{left:278.656493px;}
.xa8_c00387{left:280.800000px;}
.x77_c00387{left:284.236339px;}
.x62_c00387{left:287.010000px;}
.xb6_c00387{left:290.250000px;}
.x93_c00387{left:292.248075px;}
.x7c_c00387{left:293.703821px;}
.x5_c00387{left:297.117000px;}
.x8a_c00387{left:300.426433px;}
.x48_c00387{left:301.860000px;}
.x97_c00387{left:303.091117px;}
.x1c_c00387{left:305.100000px;}
.x55_c00387{left:311.310000px;}
.x5b_c00387{left:312.390000px;}
.xb7_c00387{left:315.270000px;}
.x40_c00387{left:316.980000px;}
.xad_c00387{left:319.888500px;}
.x38_c00387{left:321.570000px;}
.x2d_c00387{left:323.460000px;}
.x14_c00387{left:325.911113px;}
.x7d_c00387{left:327.198821px;}
.x83_c00387{left:330.096090px;}
.xd_c00387{left:331.583895px;}
.x51_c00387{left:335.070000px;}
.x49_c00387{left:336.150000px;}
.x8b_c00387{left:338.987625px;}
.x24_c00387{left:342.360000px;}
.x56_c00387{left:343.440000px;}
.x6a_c00387{left:345.870000px;}
.x6_c00387{left:347.335500px;}
.xbd_c00387{left:351.832346px;}
.x2e_c00387{left:354.240000px;}
.x18_c00387{left:356.944369px;}
.xae_c00387{left:360.111000px;}
.x4a_c00387{left:363.150000px;}
.x70_c00387{left:367.161000px;}
.x39_c00387{left:368.820000px;}
.x84_c00387{left:371.364718px;}
.x63_c00387{left:373.140000px;}
.x94_c00387{left:375.453744px;}
.x25_c00387{left:377.730000px;}
.x98_c00387{left:388.415322px;}
.xe_c00387{left:392.340053px;}
.x2f_c00387{left:395.550000px;}
.xaf_c00387{left:396.552000px;}
.x8c_c00387{left:397.643896px;}
.x7_c00387{left:399.330000px;}
.x85_c00387{left:400.827099px;}
.xbe_c00387{left:406.377069px;}
.x41_c00387{left:407.700000px;}
.x99_c00387{left:410.286360px;}
.x4b_c00387{left:412.830000px;}
.x8d_c00387{left:417.033987px;}
.x30_c00387{left:418.230000px;}
.x71_c00387{left:419.778000px;}
.x8_c00387{left:421.573500px;}
.x3a_c00387{left:423.900000px;}
.x57_c00387{left:427.140000px;}
.x6e_c00387{left:430.920000px;}
.x1d_c00387{left:437.130000px;}
.x5c_c00387{left:439.290000px;}
.x64_c00387{left:444.960000px;}
.xb0_c00387{left:447.066000px;}
.x3b_c00387{left:452.250000px;}
.x86_c00387{left:453.480497px;}
.xf_c00387{left:456.336953px;}
.xc0_c00387{left:457.411959px;}
.xa3_c00387{left:458.730000px;}
.x31_c00387{left:460.350000px;}
.x78_c00387{left:461.900840px;}
.x1e_c00387{left:464.940000px;}
.x9c_c00387{left:468.990000px;}
.x7e_c00387{left:472.425821px;}
.x65_c00387{left:474.390000px;}
.x9_c00387{left:476.917500px;}
.x26_c00387{left:478.980000px;}
.xb1_c00387{left:480.006000px;}
.x32_c00387{left:481.950000px;}
.x5d_c00387{left:484.920000px;}
.x72_c00387{left:487.825500px;}
.x9d_c00387{left:489.240000px;}
.x42_c00387{left:490.860000px;}
.x79_c00387{left:493.498339px;}
.x9a_c00387{left:498.573001px;}
.x4c_c00387{left:500.310000px;}
.x27_c00387{left:501.660000px;}
.x1f_c00387{left:503.010000px;}
.x33_c00387{left:506.790000px;}
.x10_c00387{left:507.912563px;}
.x5e_c00387{left:511.380000px;}
.x6b_c00387{left:513.270000px;}
.x9e_c00387{left:515.430000px;}
.xb2_c00387{left:516.472500px;}
.x73_c00387{left:518.601000px;}
.x52_c00387{left:526.500000px;}
.x3c_c00387{left:532.710000px;}
.x87_c00387{left:535.611274px;}
.xc1_c00387{left:539.228285px;}
.x6f_c00387{left:540.810000px;}
.x43_c00387{left:542.970000px;}
.x66_c00387{left:544.590000px;}
.x20_c00387{left:546.210000px;}
.xa9_c00387{left:548.100000px;}
.xa4_c00387{left:549.720000px;}
.x8e_c00387{left:553.114131px;}
.x44_c00387{left:557.820000px;}
.x6c_c00387{left:559.170000px;}
.x7f_c00387{left:561.528820px;}
.x58_c00387{left:569.160000px;}
.x28_c00387{left:571.590000px;}
.x8f_c00387{left:572.828221px;}
.x11_c00387{left:574.610070px;}
.x34_c00387{left:575.640000px;}
.xa5_c00387{left:577.530000px;}
.x95_c00387{left:579.328042px;}
.x45_c00387{left:582.660000px;}
.x80_c00387{left:583.938820px;}
.x53_c00387{left:585.630000px;}
.x9f_c00387{left:587.520000px;}
.x6d_c00387{left:591.840000px;}
.xa_c00387{left:593.053500px;}
.x29_c00387{left:595.620000px;}
.xb8_c00387{left:599.308500px;}
.x21_c00387{left:601.290000px;}
.x1_c00387{left:602.910000px;}
.x5f_c00387{left:604.260000px;}
.x3d_c00387{left:606.150000px;}
.x90_c00387{left:607.957486px;}
.x4d_c00387{left:610.470000px;}
.x67_c00387{left:611.550000px;}
.x46_c00387{left:612.900000px;}
.xa0_c00387{left:614.250000px;}
.x88_c00387{left:620.338489px;}
.xaa_c00387{left:622.350000px;}
.x35_c00387{left:623.970000px;}
.x81_c00387{left:625.247320px;}
.x12_c00387{left:626.455725px;}
.x3e_c00387{left:628.830000px;}
.xc2_c00387{left:632.386521px;}
.x16_c00387{left:650.094000px;}
.xb9_c00387{left:656.508000px;}
.x89_c00387{left:658.376191px;}
.xc3_c00387{left:666.630000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.fs18_c00387{font-size:19.600000pt;}
.fs0_c00387{font-size:24.266667pt;}
.fs19_c00387{font-size:37.336488pt;}
.fs17_c00387{font-size:42.000000pt;}
.fs13_c00387{font-size:44.800000pt;}
.fs15_c00387{font-size:45.733333pt;}
.fs16_c00387{font-size:48.533333pt;}
.fs14_c00387{font-size:49.466667pt;}
.fsc_c00387{font-size:53.200000pt;}
.fse_c00387{font-size:57.868084pt;}
.fs8_c00387{font-size:58.800000pt;}
.fs12_c00387{font-size:58.801441pt;}
.fsb_c00387{font-size:59.733333pt;}
.fs11_c00387{font-size:59.734797pt;}
.fsa_c00387{font-size:60.666667pt;}
.fsd_c00387{font-size:60.668153pt;}
.fs9_c00387{font-size:61.600000pt;}
.fs7_c00387{font-size:62.533333pt;}
.fsf_c00387{font-size:62.534865pt;}
.fs10_c00387{font-size:63.468222pt;}
.fs6_c00387{font-size:67.200000pt;}
.fs1a_c00387{font-size:69.072503pt;}
.fs5_c00387{font-size:77.468565pt;}
.fs1_c00387{font-size:83.076011pt;}
.fs3_c00387{font-size:91.476956pt;}
.fs2_c00387{font-size:122.280421pt;}
.fs4_c00387{font-size:205.338364pt;}
.y0_c00387{bottom:0.000000pt;}
.yba_c00387{bottom:73.920000pt;}
.yb0_c00387{bottom:77.759967pt;}
.yb7_c00387{bottom:77.760172pt;}
.yb4_c00387{bottom:77.760175pt;}
.yb1_c00387{bottom:77.760232pt;}
.yb5_c00387{bottom:77.760253pt;}
.yb3_c00387{bottom:77.760283pt;}
.yb9_c00387{bottom:77.760488pt;}
.yb2_c00387{bottom:77.760533pt;}
.yaf_c00387{bottom:77.760599pt;}
.yb6_c00387{bottom:77.760741pt;}
.yb8_c00387{bottom:77.760801pt;}
.ya5_c00387{bottom:91.657676pt;}
.ya7_c00387{bottom:91.658207pt;}
.ya4_c00387{bottom:91.658245pt;}
.ya6_c00387{bottom:91.658252pt;}
.ya9_c00387{bottom:91.658356pt;}
.ya8_c00387{bottom:91.658464pt;}
.yab_c00387{bottom:91.658745pt;}
.yaa_c00387{bottom:91.658915pt;}
.yac_c00387{bottom:91.659393pt;}
.yad_c00387{bottom:91.659908pt;}
.yae_c00387{bottom:91.660455pt;}
.ya3_c00387{bottom:92.046879pt;}
.ya2_c00387{bottom:92.439877pt;}
.ya1_c00387{bottom:92.707851pt;}
.ya0_c00387{bottom:92.985513pt;}
.y9f_c00387{bottom:93.469997pt;}
.y9e_c00387{bottom:94.457945pt;}
.y9d_c00387{bottom:95.347076pt;}
.y9c_c00387{bottom:95.990073pt;}
.y9b_c00387{bottom:96.279193pt;}
.y9a_c00387{bottom:96.800927pt;}
.y99_c00387{bottom:97.116064pt;}
.y98_c00387{bottom:97.418721pt;}
.y97_c00387{bottom:98.317333pt;}
.y95_c00387{bottom:123.710667pt;}
.y94_c00387{bottom:123.932000pt;}
.y93_c00387{bottom:124.022667pt;}
.y92_c00387{bottom:124.190667pt;}
.y91_c00387{bottom:124.289333pt;}
.y90_c00387{bottom:124.516000pt;}
.y8f_c00387{bottom:124.721333pt;}
.y8e_c00387{bottom:124.949333pt;}
.y8d_c00387{bottom:125.034667pt;}
.y8c_c00387{bottom:125.261333pt;}
.y8b_c00387{bottom:125.512000pt;}
.y8a_c00387{bottom:125.617333pt;}
.y89_c00387{bottom:125.861333pt;}
.y88_c00387{bottom:125.970667pt;}
.y87_c00387{bottom:126.288000pt;}
.y86_c00387{bottom:126.504000pt;}
.y85_c00387{bottom:126.720000pt;}
.y84_c00387{bottom:141.057333pt;}
.y83_c00387{bottom:156.654667pt;}
.y96_c00387{bottom:162.000000pt;}
.y82_c00387{bottom:172.350667pt;}
.y81_c00387{bottom:216.605333pt;}
.y80_c00387{bottom:238.419195pt;}
.y7f_c00387{bottom:238.819559pt;}
.y7e_c00387{bottom:239.187405pt;}
.y7d_c00387{bottom:239.368147pt;}
.y7c_c00387{bottom:239.576899pt;}
.y7b_c00387{bottom:239.714291pt;}
.y7a_c00387{bottom:240.153497pt;}
.y79_c00387{bottom:240.348253pt;}
.y78_c00387{bottom:240.720635pt;}
.y77_c00387{bottom:241.107171pt;}
.y76_c00387{bottom:241.319057pt;}
.y75_c00387{bottom:241.702524pt;}
.y74_c00387{bottom:241.898997pt;}
.y73_c00387{bottom:242.396109pt;}
.y72_c00387{bottom:258.796253pt;}
.y71_c00387{bottom:259.189333pt;}
.y70_c00387{bottom:259.516563pt;}
.y6f_c00387{bottom:259.824889pt;}
.y6e_c00387{bottom:260.382269pt;}
.y6d_c00387{bottom:260.991879pt;}
.y6c_c00387{bottom:261.181920pt;}
.y6b_c00387{bottom:261.584189pt;}
.y6a_c00387{bottom:261.995659pt;}
.y69_c00387{bottom:262.504728pt;}
.y68_c00387{bottom:262.764408pt;}
.y67_c00387{bottom:262.926581pt;}
.y66_c00387{bottom:263.275699pt;}
.y65_c00387{bottom:279.449529pt;}
.y64_c00387{bottom:279.761449pt;}
.y63_c00387{bottom:279.936117pt;}
.y62_c00387{bottom:280.083969pt;}
.y61_c00387{bottom:280.288411pt;}
.y60_c00387{bottom:280.713687pt;}
.y5f_c00387{bottom:281.145523pt;}
.y5e_c00387{bottom:281.318175pt;}
.y5d_c00387{bottom:281.839155pt;}
.y5c_c00387{bottom:282.181763pt;}
.y5b_c00387{bottom:282.532600pt;}
.y5a_c00387{bottom:283.073313pt;}
.y59_c00387{bottom:283.436345pt;}
.y58_c00387{bottom:299.416807pt;}
.y57_c00387{bottom:299.754824pt;}
.y56_c00387{bottom:300.093037pt;}
.y55_c00387{bottom:300.304849pt;}
.y54_c00387{bottom:300.508693pt;}
.y53_c00387{bottom:300.722241pt;}
.y52_c00387{bottom:301.238407pt;}
.y51_c00387{bottom:301.706035pt;}
.y50_c00387{bottom:301.968027pt;}
.y4f_c00387{bottom:302.335481pt;}
.y4e_c00387{bottom:302.494352pt;}
.y4d_c00387{bottom:302.955429pt;}
.y4c_c00387{bottom:303.594589pt;}
.y4b_c00387{bottom:303.838975pt;}
.y4a_c00387{bottom:321.354673pt;}
.y49_c00387{bottom:321.611704pt;}
.y48_c00387{bottom:321.751144pt;}
.y47_c00387{bottom:322.172955pt;}
.y46_c00387{bottom:322.305563pt;}
.y45_c00387{bottom:322.648283pt;}
.y44_c00387{bottom:322.965784pt;}
.y43_c00387{bottom:323.209197pt;}
.y42_c00387{bottom:323.417611pt;}
.y41_c00387{bottom:323.750409pt;}
.y40_c00387{bottom:323.899733pt;}
.y3f_c00387{bottom:324.239383pt;}
.y3e_c00387{bottom:342.073655pt;}
.y3d_c00387{bottom:342.513805pt;}
.y3c_c00387{bottom:342.812789pt;}
.y3b_c00387{bottom:343.009396pt;}
.y3a_c00387{bottom:343.227759pt;}
.y39_c00387{bottom:343.417645pt;}
.y38_c00387{bottom:343.824252pt;}
.y37_c00387{bottom:344.114864pt;}
.y36_c00387{bottom:344.286252pt;}
.y35_c00387{bottom:344.474384pt;}
.y34_c00387{bottom:344.712981pt;}
.y33_c00387{bottom:344.879423pt;}
.y32_c00387{bottom:362.635671pt;}
.y31_c00387{bottom:362.899319pt;}
.y30_c00387{bottom:363.058928pt;}
.y2f_c00387{bottom:363.250420pt;}
.y2e_c00387{bottom:363.423516pt;}
.y2d_c00387{bottom:363.673827pt;}
.y2c_c00387{bottom:364.001221pt;}
.y2b_c00387{bottom:364.344184pt;}
.y2a_c00387{bottom:364.658297pt;}
.y29_c00387{bottom:364.846523pt;}
.y28_c00387{bottom:365.034645pt;}
.y27_c00387{bottom:365.280000pt;}
.y26_c00387{bottom:383.122667pt;}
.y25_c00387{bottom:403.733333pt;}
.y24_c00387{bottom:424.134667pt;}
.y23_c00387{bottom:445.414667pt;}
.y22_c00387{bottom:465.360000pt;}
.y21_c00387{bottom:485.342667pt;}
.y20_c00387{bottom:505.712000pt;}
.y1f_c00387{bottom:527.012000pt;}
.y1e_c00387{bottom:547.146667pt;}
.y1d_c00387{bottom:567.304000pt;}
.y1c_c00387{bottom:587.921333pt;}
.y1b_c00387{bottom:607.610667pt;}
.y18_c00387{bottom:635.804373pt;}
.y1a_c00387{bottom:635.804481pt;}
.y19_c00387{bottom:635.804623pt;}
.y17_c00387{bottom:702.571800pt;}
.y16_c00387{bottom:704.888296pt;}
.y15_c00387{bottom:705.600000pt;}
.y14_c00387{bottom:763.150800pt;}
.y13_c00387{bottom:763.151387pt;}
.ye_c00387{bottom:803.693067pt;}
.yf_c00387{bottom:803.693300pt;}
.y12_c00387{bottom:803.693560pt;}
.yd_c00387{bottom:803.693633pt;}
.y10_c00387{bottom:803.693780pt;}
.yb_c00387{bottom:803.693960pt;}
.y11_c00387{bottom:803.694013pt;}
.yc_c00387{bottom:803.694200pt;}
.ya_c00387{bottom:817.195193pt;}
.y9_c00387{bottom:818.743673pt;}
.y8_c00387{bottom:819.481593pt;}
.y7_c00387{bottom:819.778173pt;}
.y6_c00387{bottom:820.471433pt;}
.y5_c00387{bottom:821.141013pt;}
.y4_c00387{bottom:822.048053pt;}
.y3_c00387{bottom:822.771193pt;}
.y2_c00387{bottom:823.437333pt;}
.y1_c00387{bottom:825.120000pt;}
.h1a_c00387{height:19.600000pt;}
.h2_c00387{height:24.266667pt;}
.h1b_c00387{height:37.336488pt;}
.h19_c00387{height:42.000000pt;}
.h15_c00387{height:44.800000pt;}
.h17_c00387{height:45.733333pt;}
.h18_c00387{height:48.533333pt;}
.h16_c00387{height:49.466667pt;}
.he_c00387{height:53.200000pt;}
.h10_c00387{height:57.868084pt;}
.ha_c00387{height:58.800000pt;}
.h14_c00387{height:58.801441pt;}
.hd_c00387{height:59.733333pt;}
.h13_c00387{height:59.734797pt;}
.hc_c00387{height:60.666667pt;}
.hf_c00387{height:60.668153pt;}
.hb_c00387{height:61.600000pt;}
.h9_c00387{height:62.533333pt;}
.h11_c00387{height:62.534865pt;}
.h12_c00387{height:63.468222pt;}
.h8_c00387{height:67.200000pt;}
.h1c_c00387{height:69.072503pt;}
.h7_c00387{height:77.468565pt;}
.h3_c00387{height:83.076011pt;}
.h5_c00387{height:91.476956pt;}
.h4_c00387{height:122.280421pt;}
.h6_c00387{height:205.338364pt;}
.h0_c00387{height:896.400000pt;}
.h1_c00387{height:896.666667pt;}
.w1_c00387{width:612.666667pt;}
.w0_c00387{width:612.933333pt;}
.x0_c00387{left:0.000000pt;}
.xba_c00387{left:96.241939pt;}
.xb_c00387{left:101.520447pt;}
.x2_c00387{left:111.016000pt;}
.xbb_c00387{left:112.083275pt;}
.xbf_c00387{left:131.524587pt;}
.x22_c00387{left:141.120000pt;}
.x2a_c00387{left:142.560000pt;}
.x59_c00387{left:143.760000pt;}
.x15_c00387{left:145.261333pt;}
.x9b_c00387{left:154.320000pt;}
.x3_c00387{left:155.425333pt;}
.x19_c00387{left:157.680000pt;}
.x68_c00387{left:160.800000pt;}
.x74_c00387{left:167.209191pt;}
.x4e_c00387{left:169.440000pt;}
.xb3_c00387{left:170.344000pt;}
.x47_c00387{left:172.320000pt;}
.x54_c00387{left:173.760000pt;}
.x91_c00387{left:175.170437pt;}
.x2b_c00387{left:178.320000pt;}
.x1a_c00387{left:180.480000pt;}
.x5a_c00387{left:181.440000pt;}
.xa6_c00387{left:184.320000pt;}
.x23_c00387{left:186.000000pt;}
.x92_c00387{left:189.956693pt;}
.x7a_c00387{left:192.195396pt;}
.xb4_c00387{left:193.625333pt;}
.x60_c00387{left:195.600000pt;}
.x75_c00387{left:201.294524pt;}
.x4_c00387{left:203.634667pt;}
.x69_c00387{left:205.440000pt;}
.x17_c00387{left:206.401119pt;}
.x2c_c00387{left:208.800000pt;}
.x96_c00387{left:209.888911pt;}
.x4f_c00387{left:211.440000pt;}
.x7b_c00387{left:213.527396pt;}
.x1b_c00387{left:214.560000pt;}
.x36_c00387{left:216.960000pt;}
.xb5_c00387{left:217.866667pt;}
.xab_c00387{left:218.822667pt;}
.xa1_c00387{left:220.560000pt;}
.x3f_c00387{left:222.000000pt;}
.xa7_c00387{left:224.880000pt;}
.xbc_c00387{left:226.093216pt;}
.x76_c00387{left:228.170524pt;}
.x61_c00387{left:230.160000pt;}
.x82_c00387{left:231.522720pt;}
.x50_c00387{left:233.280000pt;}
.xac_c00387{left:234.424000pt;}
.xa2_c00387{left:239.520000pt;}
.xc_c00387{left:240.735767pt;}
.x37_c00387{left:245.040000pt;}
.x13_c00387{left:247.694660pt;}
.xa8_c00387{left:249.600000pt;}
.x77_c00387{left:252.654524pt;}
.x62_c00387{left:255.120000pt;}
.xb6_c00387{left:258.000000pt;}
.x93_c00387{left:259.776067pt;}
.x7c_c00387{left:261.070063pt;}
.x5_c00387{left:264.104000pt;}
.x8a_c00387{left:267.045719pt;}
.x48_c00387{left:268.320000pt;}
.x97_c00387{left:269.414327pt;}
.x1c_c00387{left:271.200000pt;}
.x55_c00387{left:276.720000pt;}
.x5b_c00387{left:277.680000pt;}
.xb7_c00387{left:280.240000pt;}
.x40_c00387{left:281.760000pt;}
.xad_c00387{left:284.345333pt;}
.x38_c00387{left:285.840000pt;}
.x2d_c00387{left:287.520000pt;}
.x14_c00387{left:289.698767pt;}
.x7d_c00387{left:290.843396pt;}
.x83_c00387{left:293.418747pt;}
.xd_c00387{left:294.741240pt;}
.x51_c00387{left:297.840000pt;}
.x49_c00387{left:298.800000pt;}
.x8b_c00387{left:301.322333pt;}
.x24_c00387{left:304.320000pt;}
.x56_c00387{left:305.280000pt;}
.x6a_c00387{left:307.440000pt;}
.x6_c00387{left:308.742667pt;}
.xbd_c00387{left:312.739863pt;}
.x2e_c00387{left:314.880000pt;}
.x18_c00387{left:317.283884pt;}
.xae_c00387{left:320.098667pt;}
.x4a_c00387{left:322.800000pt;}
.x70_c00387{left:326.365333pt;}
.x39_c00387{left:327.840000pt;}
.x84_c00387{left:330.101972pt;}
.x63_c00387{left:331.680000pt;}
.x94_c00387{left:333.736661pt;}
.x25_c00387{left:335.760000pt;}
.x98_c00387{left:345.258064pt;}
.xe_c00387{left:348.746713pt;}
.x2f_c00387{left:351.600000pt;}
.xaf_c00387{left:352.490667pt;}
.x8c_c00387{left:353.461241pt;}
.x7_c00387{left:354.960000pt;}
.x85_c00387{left:356.290755pt;}
.xbe_c00387{left:361.224061pt;}
.x41_c00387{left:362.400000pt;}
.x99_c00387{left:364.698987pt;}
.x4b_c00387{left:366.960000pt;}
.x8d_c00387{left:370.696877pt;}
.x30_c00387{left:371.760000pt;}
.x71_c00387{left:373.136000pt;}
.x8_c00387{left:374.732000pt;}
.x3a_c00387{left:376.800000pt;}
.x57_c00387{left:379.680000pt;}
.x6e_c00387{left:383.040000pt;}
.x1d_c00387{left:388.560000pt;}
.x5c_c00387{left:390.480000pt;}
.x64_c00387{left:395.520000pt;}
.xb0_c00387{left:397.392000pt;}
.x3b_c00387{left:402.000000pt;}
.x86_c00387{left:403.093775pt;}
.xf_c00387{left:405.632847pt;}
.xc0_c00387{left:406.588408pt;}
.xa3_c00387{left:407.760000pt;}
.x31_c00387{left:409.200000pt;}
.x78_c00387{left:410.578524pt;}
.x1e_c00387{left:413.280000pt;}
.x9c_c00387{left:416.880000pt;}
.x7e_c00387{left:419.934063pt;}
.x65_c00387{left:421.680000pt;}
.x9_c00387{left:423.926667pt;}
.x26_c00387{left:425.760000pt;}
.xb1_c00387{left:426.672000pt;}
.x32_c00387{left:428.400000pt;}
.x5d_c00387{left:431.040000pt;}
.x72_c00387{left:433.622667pt;}
.x9d_c00387{left:434.880000pt;}
.x42_c00387{left:436.320000pt;}
.x79_c00387{left:438.665191pt;}
.x9a_c00387{left:443.176001pt;}
.x4c_c00387{left:444.720000pt;}
.x27_c00387{left:445.920000pt;}
.x1f_c00387{left:447.120000pt;}
.x33_c00387{left:450.480000pt;}
.x10_c00387{left:451.477833pt;}
.x5e_c00387{left:454.560000pt;}
.x6b_c00387{left:456.240000pt;}
.x9e_c00387{left:458.160000pt;}
.xb2_c00387{left:459.086667pt;}
.x73_c00387{left:460.978667pt;}
.x52_c00387{left:468.000000pt;}
.x3c_c00387{left:473.520000pt;}
.x87_c00387{left:476.098911pt;}
.xc1_c00387{left:479.314031pt;}
.x6f_c00387{left:480.720000pt;}
.x43_c00387{left:482.640000pt;}
.x66_c00387{left:484.080000pt;}
.x20_c00387{left:485.520000pt;}
.xa9_c00387{left:487.200000pt;}
.xa4_c00387{left:488.640000pt;}
.x8e_c00387{left:491.657005pt;}
.x44_c00387{left:495.840000pt;}
.x6c_c00387{left:497.040000pt;}
.x7f_c00387{left:499.136729pt;}
.x58_c00387{left:505.920000pt;}
.x28_c00387{left:508.080000pt;}
.x8f_c00387{left:509.180641pt;}
.x11_c00387{left:510.764507pt;}
.x34_c00387{left:511.680000pt;}
.xa5_c00387{left:513.360000pt;}
.x95_c00387{left:514.958260pt;}
.x45_c00387{left:517.920000pt;}
.x80_c00387{left:519.056729pt;}
.x53_c00387{left:520.560000pt;}
.x9f_c00387{left:522.240000pt;}
.x6d_c00387{left:526.080000pt;}
.xa_c00387{left:527.158667pt;}
.x29_c00387{left:529.440000pt;}
.xb8_c00387{left:532.718667pt;}
.x21_c00387{left:534.480000pt;}
.x1_c00387{left:535.920000pt;}
.x5f_c00387{left:537.120000pt;}
.x3d_c00387{left:538.800000pt;}
.x90_c00387{left:540.406655pt;}
.x4d_c00387{left:542.640000pt;}
.x67_c00387{left:543.600000pt;}
.x46_c00387{left:544.800000pt;}
.xa0_c00387{left:546.000000pt;}
.x88_c00387{left:551.411991pt;}
.xaa_c00387{left:553.200000pt;}
.x35_c00387{left:554.640000pt;}
.x81_c00387{left:555.775396pt;}
.x12_c00387{left:556.849533pt;}
.x3e_c00387{left:558.960000pt;}
.xc2_c00387{left:562.121352pt;}
.x16_c00387{left:577.861333pt;}
.xb9_c00387{left:583.562667pt;}
.x89_c00387{left:585.223281pt;}
.xc3_c00387{left:592.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_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_b7c6946d376484085f411cc4.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;}
.m7_c00388{transform:matrix(0.005214,0.000099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.005214,0.000099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.005214,0.000099,-0.004749,0.249955,0,0);}
.md8_c00388{transform:matrix(0.016594,0.000133,-0.002000,0.249992,0,0);-ms-transform:matrix(0.016594,0.000133,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.016594,0.000133,-0.002000,0.249992,0,0);}
.med_c00388{transform:matrix(0.024084,0.000217,-0.002250,0.249990,0,0);-ms-transform:matrix(0.024084,0.000217,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.024084,0.000217,-0.002250,0.249990,0,0);}
.mbd_c00388{transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00388{transform:matrix(0.092498,0.000647,-0.001750,0.249994,0,0);-ms-transform:matrix(0.092498,0.000647,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.092498,0.000647,-0.001750,0.249994,0,0);}
.m14_c00388{transform:matrix(0.097358,0.000682,-0.001750,0.249994,0,0);-ms-transform:matrix(0.097358,0.000682,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.097358,0.000682,-0.001750,0.249994,0,0);}
.m94_c00388{transform:matrix(0.098088,0.000687,-0.001750,0.249994,0,0);-ms-transform:matrix(0.098088,0.000687,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.098088,0.000687,-0.001750,0.249994,0,0);}
.m1a_c00388{transform:matrix(0.100808,0.000706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.100808,0.000706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.100808,0.000706,-0.001750,0.249994,0,0);}
.mc0_c00388{transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.133932,0.000938,-0.001750,0.249994,0,0);-ms-transform:matrix(0.133932,0.000938,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.133932,0.000938,-0.001750,0.249994,0,0);}
.m3f_c00388{transform:matrix(0.134167,0.000939,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134167,0.000939,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134167,0.000939,-0.001750,0.249994,0,0);}
.m4c_c00388{transform:matrix(0.137667,0.000964,-0.001750,0.249994,0,0);-ms-transform:matrix(0.137667,0.000964,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.137667,0.000964,-0.001750,0.249994,0,0);}
.m9c_c00388{transform:matrix(0.140447,0.000983,-0.001750,0.249994,0,0);-ms-transform:matrix(0.140447,0.000983,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.140447,0.000983,-0.001750,0.249994,0,0);}
.m9a_c00388{transform:matrix(0.141187,0.000988,-0.001750,0.249994,0,0);-ms-transform:matrix(0.141187,0.000988,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.141187,0.000988,-0.001750,0.249994,0,0);}
.m70_c00388{transform:matrix(0.142687,0.000999,-0.001750,0.249994,0,0);-ms-transform:matrix(0.142687,0.000999,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.142687,0.000999,-0.001750,0.249994,0,0);}
.m39_c00388{transform:matrix(0.143556,0.001005,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143556,0.001005,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143556,0.001005,-0.001750,0.249994,0,0);}
.m1e_c00388{transform:matrix(0.144906,0.001014,-0.001750,0.249994,0,0);-ms-transform:matrix(0.144906,0.001014,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.144906,0.001014,-0.001750,0.249994,0,0);}
.m51_c00388{transform:matrix(0.146426,0.001025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146426,0.001025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146426,0.001025,-0.001750,0.249994,0,0);}
.m9f_c00388{transform:matrix(0.147396,0.001032,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147396,0.001032,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147396,0.001032,-0.001750,0.249994,0,0);}
.m2d_c00388{transform:matrix(0.147436,0.001032,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147436,0.001032,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147436,0.001032,-0.001750,0.249994,0,0);}
.mb0_c00388{transform:matrix(0.149626,0.001047,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149626,0.001047,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149626,0.001047,-0.001750,0.249994,0,0);}
.m3_c00388{transform:matrix(0.149698,0.002844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.149698,0.002844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.149698,0.002844,-0.004749,0.249955,0,0);}
.mb6_c00388{transform:matrix(0.150591,0.001054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150591,0.001054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150591,0.001054,-0.001750,0.249994,0,0);}
.m27_c00388{transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);}
.m24_c00388{transform:matrix(0.151841,0.001063,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151841,0.001063,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151841,0.001063,-0.001750,0.249994,0,0);}
.m45_c00388{transform:matrix(0.153271,0.001073,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153271,0.001073,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153271,0.001073,-0.001750,0.249994,0,0);}
.m99_c00388{transform:matrix(0.154726,0.001083,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154726,0.001083,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154726,0.001083,-0.001750,0.249994,0,0);}
.m35_c00388{transform:matrix(0.155246,0.001087,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155246,0.001087,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155246,0.001087,-0.001750,0.249994,0,0);}
.m7f_c00388{transform:matrix(0.155361,0.001088,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155361,0.001088,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155361,0.001088,-0.001750,0.249994,0,0);}
.m2b_c00388{transform:matrix(0.155691,0.001090,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155691,0.001090,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155691,0.001090,-0.001750,0.249994,0,0);}
.m1d_c00388{transform:matrix(0.156571,0.001096,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156571,0.001096,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156571,0.001096,-0.001750,0.249994,0,0);}
.m2a_c00388{transform:matrix(0.156606,0.001096,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156606,0.001096,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156606,0.001096,-0.001750,0.249994,0,0);}
.m3a_c00388{transform:matrix(0.157291,0.001101,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157291,0.001101,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157291,0.001101,-0.001750,0.249994,0,0);}
.m54_c00388{transform:matrix(0.157601,0.001103,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157601,0.001103,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157601,0.001103,-0.001750,0.249994,0,0);}
.mb4_c00388{transform:matrix(0.161106,0.001128,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161106,0.001128,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161106,0.001128,-0.001750,0.249994,0,0);}
.m8f_c00388{transform:matrix(0.161891,0.001133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161891,0.001133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161891,0.001133,-0.001750,0.249994,0,0);}
.m97_c00388{transform:matrix(0.162116,0.001135,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162116,0.001135,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162116,0.001135,-0.001750,0.249994,0,0);}
.me9_c00388{transform:matrix(0.162396,0.002111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162396,0.002111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162396,0.002111,-0.003250,0.249979,0,0);}
.m9b_c00388{transform:matrix(0.162896,0.001140,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162896,0.001140,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162896,0.001140,-0.001750,0.249994,0,0);}
.maa_c00388{transform:matrix(0.163641,0.001145,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163641,0.001145,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163641,0.001145,-0.001750,0.249994,0,0);}
.m9e_c00388{transform:matrix(0.163671,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163671,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163671,0.001146,-0.001750,0.249994,0,0);}
.ma6_c00388{transform:matrix(0.164121,0.001149,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164121,0.001149,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164121,0.001149,-0.001750,0.249994,0,0);}
.m7c_c00388{transform:matrix(0.164696,0.001153,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164696,0.001153,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164696,0.001153,-0.001750,0.249994,0,0);}
.md9_c00388{transform:matrix(0.165750,0.001326,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165750,0.001326,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165750,0.001326,-0.002000,0.249992,0,0);}
.m1_c00388{transform:matrix(0.165870,0.003152,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165870,0.003152,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165870,0.003152,-0.004749,0.249955,0,0);}
.m7d_c00388{transform:matrix(0.167081,0.001170,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167081,0.001170,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167081,0.001170,-0.001750,0.249994,0,0);}
.m69_c00388{transform:matrix(0.167521,0.001173,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167521,0.001173,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167521,0.001173,-0.001750,0.249994,0,0);}
.mbc_c00388{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);}
.me4_c00388{transform:matrix(0.168310,0.001346,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168310,0.001346,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168310,0.001346,-0.002000,0.249992,0,0);}
.m50_c00388{transform:matrix(0.168471,0.001179,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168471,0.001179,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168471,0.001179,-0.001750,0.249994,0,0);}
.mcd_c00388{transform:matrix(0.168505,0.001348,-0.002000,0.249992,0,0);-ms-transform:matrix(0.168505,0.001348,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.168505,0.001348,-0.002000,0.249992,0,0);}
.m82_c00388{transform:matrix(0.169131,0.001184,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169131,0.001184,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169131,0.001184,-0.001750,0.249994,0,0);}
.m2_c00388{transform:matrix(0.169739,0.003225,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169739,0.003225,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169739,0.003225,-0.004749,0.249955,0,0);}
.m98_c00388{transform:matrix(0.170186,0.001191,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170186,0.001191,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170186,0.001191,-0.001750,0.249994,0,0);}
.m61_c00388{transform:matrix(0.170381,0.001193,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170381,0.001193,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170381,0.001193,-0.001750,0.249994,0,0);}
.ma0_c00388{transform:matrix(0.170536,0.001194,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170536,0.001194,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170536,0.001194,-0.001750,0.249994,0,0);}
.m5c_c00388{transform:matrix(0.171146,0.001198,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171146,0.001198,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171146,0.001198,-0.001750,0.249994,0,0);}
.m10_c00388{transform:matrix(0.171164,0.003252,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171164,0.003252,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171164,0.003252,-0.004749,0.249955,0,0);}
.m47_c00388{transform:matrix(0.171526,0.001201,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171526,0.001201,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171526,0.001201,-0.001750,0.249994,0,0);}
.mdb_c00388{transform:matrix(0.171830,0.001375,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171830,0.001375,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171830,0.001375,-0.002000,0.249992,0,0);}
.m48_c00388{transform:matrix(0.172196,0.001205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172196,0.001205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172196,0.001205,-0.001750,0.249994,0,0);}
.m17_c00388{transform:matrix(0.172571,0.001208,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172571,0.001208,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172571,0.001208,-0.001750,0.249994,0,0);}
.m96_c00388{transform:matrix(0.173261,0.001213,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173261,0.001213,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173261,0.001213,-0.001750,0.249994,0,0);}
.m8c_c00388{transform:matrix(0.173536,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173536,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173536,0.001215,-0.001750,0.249994,0,0);}
.m57_c00388{transform:matrix(0.173806,0.001217,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173806,0.001217,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173806,0.001217,-0.001750,0.249994,0,0);}
.m32_c00388{transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174271,0.001220,-0.001750,0.249994,0,0);}
.mac_c00388{transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174321,0.001220,-0.001750,0.249994,0,0);}
.mc8_c00388{transform:matrix(0.175654,0.001405,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175654,0.001405,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175654,0.001405,-0.002000,0.249992,0,0);}
.mbb_c00388{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);}
.ma3_c00388{transform:matrix(0.175946,0.001232,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175946,0.001232,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175946,0.001232,-0.001750,0.249994,0,0);}
.m5a_c00388{transform:matrix(0.176151,0.001233,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176151,0.001233,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176151,0.001233,-0.001750,0.249994,0,0);}
.mb3_c00388{transform:matrix(0.176271,0.001234,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176271,0.001234,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176271,0.001234,-0.001750,0.249994,0,0);}
.m11_c00388{transform:matrix(0.176596,0.001236,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176596,0.001236,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176596,0.001236,-0.001750,0.249994,0,0);}
.m8a_c00388{transform:matrix(0.176616,0.001236,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176616,0.001236,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176616,0.001236,-0.001750,0.249994,0,0);}
.m3b_c00388{transform:matrix(0.177771,0.001244,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177771,0.001244,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177771,0.001244,-0.001750,0.249994,0,0);}
.m2c_c00388{transform:matrix(0.177781,0.001244,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177781,0.001244,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177781,0.001244,-0.001750,0.249994,0,0);}
.m4d_c00388{transform:matrix(0.178101,0.001247,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178101,0.001247,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178101,0.001247,-0.001750,0.249994,0,0);}
.mb1_c00388{transform:matrix(0.178511,0.001250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178511,0.001250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178511,0.001250,-0.001750,0.249994,0,0);}
.m55_c00388{transform:matrix(0.178531,0.001250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178531,0.001250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178531,0.001250,-0.001750,0.249994,0,0);}
.m6c_c00388{transform:matrix(0.178641,0.001250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178641,0.001250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178641,0.001250,-0.001750,0.249994,0,0);}
.maf_c00388{transform:matrix(0.178836,0.001252,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178836,0.001252,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178836,0.001252,-0.001750,0.249994,0,0);}
.m3c_c00388{transform:matrix(0.178921,0.001252,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178921,0.001252,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178921,0.001252,-0.001750,0.249994,0,0);}
.m4e_c00388{transform:matrix(0.178971,0.001253,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178971,0.001253,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178971,0.001253,-0.001750,0.249994,0,0);}
.ma1_c00388{transform:matrix(0.179036,0.001253,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179036,0.001253,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179036,0.001253,-0.001750,0.249994,0,0);}
.mae_c00388{transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179251,0.001255,-0.001750,0.249994,0,0);}
.m87_c00388{transform:matrix(0.179296,0.001255,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179296,0.001255,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179296,0.001255,-0.001750,0.249994,0,0);}
.mad_c00388{transform:matrix(0.179941,0.001260,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179941,0.001260,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179941,0.001260,-0.001750,0.249994,0,0);}
.m56_c00388{transform:matrix(0.180226,0.001262,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180226,0.001262,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180226,0.001262,-0.001750,0.249994,0,0);}
.ma5_c00388{transform:matrix(0.180281,0.001262,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180281,0.001262,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180281,0.001262,-0.001750,0.249994,0,0);}
.mc5_c00388{transform:matrix(0.180599,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,0.001445,-0.002000,0.249992,0,0);}
.m18_c00388{transform:matrix(0.180751,0.001265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180751,0.001265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180751,0.001265,-0.001750,0.249994,0,0);}
.mf_c00388{transform:matrix(0.180942,0.003438,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180942,0.003438,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180942,0.003438,-0.004749,0.249955,0,0);}
.m88_c00388{transform:matrix(0.181431,0.001270,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181431,0.001270,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181431,0.001270,-0.001750,0.249994,0,0);}
.m28_c00388{transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181506,0.001271,-0.001750,0.249994,0,0);}
.m52_c00388{transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181751,0.001272,-0.001750,0.249994,0,0);}
.m41_c00388{transform:matrix(0.181856,0.001273,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181856,0.001273,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181856,0.001273,-0.001750,0.249994,0,0);}
.m6a_c00388{transform:matrix(0.182211,0.001275,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182211,0.001275,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182211,0.001275,-0.001750,0.249994,0,0);}
.ma9_c00388{transform:matrix(0.182961,0.001281,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182961,0.001281,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182961,0.001281,-0.001750,0.249994,0,0);}
.m6d_c00388{transform:matrix(0.183186,0.001282,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183186,0.001282,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183186,0.001282,-0.001750,0.249994,0,0);}
.m43_c00388{transform:matrix(0.183376,0.001284,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183376,0.001284,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183376,0.001284,-0.001750,0.249994,0,0);}
.ma7_c00388{transform:matrix(0.183820,0.001287,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183820,0.001287,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183820,0.001287,-0.001750,0.249994,0,0);}
.m29_c00388{transform:matrix(0.183990,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183990,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183990,0.001288,-0.001750,0.249994,0,0);}
.m42_c00388{transform:matrix(0.184270,0.001290,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184270,0.001290,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184270,0.001290,-0.001750,0.249994,0,0);}
.m3d_c00388{transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);}
.m30_c00388{transform:matrix(0.184905,0.001294,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184905,0.001294,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184905,0.001294,-0.001750,0.249994,0,0);}
.m80_c00388{transform:matrix(0.185215,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185215,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185215,0.001297,-0.001750,0.249994,0,0);}
.ma8_c00388{transform:matrix(0.185520,0.001299,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185520,0.001299,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185520,0.001299,-0.001750,0.249994,0,0);}
.m49_c00388{transform:matrix(0.185725,0.001300,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185725,0.001300,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185725,0.001300,-0.001750,0.249994,0,0);}
.m81_c00388{transform:matrix(0.185975,0.001302,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185975,0.001302,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185975,0.001302,-0.001750,0.249994,0,0);}
.m5_c00388{transform:matrix(0.186396,0.003542,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186396,0.003542,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186396,0.003542,-0.004749,0.249955,0,0);}
.m4b_c00388{transform:matrix(0.186435,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186435,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186435,0.001305,-0.001750,0.249994,0,0);}
.m83_c00388{transform:matrix(0.187010,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187010,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187010,0.001309,-0.001750,0.249994,0,0);}
.m73_c00388{transform:matrix(0.187070,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187070,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187070,0.001309,-0.001750,0.249994,0,0);}
.m53_c00388{transform:matrix(0.187350,0.001311,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187350,0.001311,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187350,0.001311,-0.001750,0.249994,0,0);}
.m68_c00388{transform:matrix(0.187655,0.001314,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187655,0.001314,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187655,0.001314,-0.001750,0.249994,0,0);}
.m8e_c00388{transform:matrix(0.187785,0.001314,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187785,0.001314,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187785,0.001314,-0.001750,0.249994,0,0);}
.md1_c00388{transform:matrix(0.187909,0.001503,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187909,0.001503,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187909,0.001503,-0.002000,0.249992,0,0);}
.m34_c00388{transform:matrix(0.188315,0.001318,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188315,0.001318,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188315,0.001318,-0.001750,0.249994,0,0);}
.m8b_c00388{transform:matrix(0.188460,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188460,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188460,0.001319,-0.001750,0.249994,0,0);}
.md6_c00388{transform:matrix(0.189014,0.001512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189014,0.001512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189014,0.001512,-0.002000,0.249992,0,0);}
.m33_c00388{transform:matrix(0.190530,0.001334,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190530,0.001334,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190530,0.001334,-0.001750,0.249994,0,0);}
.m5b_c00388{transform:matrix(0.191080,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191080,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191080,0.001338,-0.001750,0.249994,0,0);}
.ma4_c00388{transform:matrix(0.191410,0.001340,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191410,0.001340,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191410,0.001340,-0.001750,0.249994,0,0);}
.mce_c00388{transform:matrix(0.191614,0.001533,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191614,0.001533,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191614,0.001533,-0.002000,0.249992,0,0);}
.m31_c00388{transform:matrix(0.191720,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191720,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191720,0.001342,-0.001750,0.249994,0,0);}
.m13_c00388{transform:matrix(0.191740,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191740,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191740,0.001342,-0.001750,0.249994,0,0);}
.m19_c00388{transform:matrix(0.192460,0.001347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192460,0.001347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192460,0.001347,-0.001750,0.249994,0,0);}
.m5d_c00388{transform:matrix(0.192585,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192585,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192585,0.001348,-0.001750,0.249994,0,0);}
.m15_c00388{transform:matrix(0.192675,0.001349,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192675,0.001349,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192675,0.001349,-0.001750,0.249994,0,0);}
.m8_c00388{transform:matrix(0.192845,0.003664,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192845,0.003664,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192845,0.003664,-0.004749,0.249955,0,0);}
.m92_c00388{transform:matrix(0.193520,0.001355,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193520,0.001355,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193520,0.001355,-0.001750,0.249994,0,0);}
.mab_c00388{transform:matrix(0.194670,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194670,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194670,0.001363,-0.001750,0.249994,0,0);}
.m72_c00388{transform:matrix(0.194840,0.001364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194840,0.001364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194840,0.001364,-0.001750,0.249994,0,0);}
.mde_c00388{transform:matrix(0.195569,0.001565,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195569,0.001565,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195569,0.001565,-0.002000,0.249992,0,0);}
.m67_c00388{transform:matrix(0.196485,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196485,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196485,0.001375,-0.001750,0.249994,0,0);}
.mbf_c00388{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);}
.m46_c00388{transform:matrix(0.197010,0.001379,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197010,0.001379,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197010,0.001379,-0.001750,0.249994,0,0);}
.m2f_c00388{transform:matrix(0.197200,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197200,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197200,0.001380,-0.001750,0.249994,0,0);}
.m6b_c00388{transform:matrix(0.197550,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197550,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197550,0.001383,-0.001750,0.249994,0,0);}
.m9d_c00388{transform:matrix(0.197655,0.001384,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197655,0.001384,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197655,0.001384,-0.001750,0.249994,0,0);}
.m6e_c00388{transform:matrix(0.197795,0.001385,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197795,0.001385,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197795,0.001385,-0.001750,0.249994,0,0);}
.mcf_c00388{transform:matrix(0.198124,0.001585,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198124,0.001585,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198124,0.001585,-0.002000,0.249992,0,0);}
.m84_c00388{transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198285,0.001388,-0.001750,0.249994,0,0);}
.m2e_c00388{transform:matrix(0.198490,0.001389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198490,0.001389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198490,0.001389,-0.001750,0.249994,0,0);}
.m1c_c00388{transform:matrix(0.198610,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198610,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198610,0.001390,-0.001750,0.249994,0,0);}
.m4f_c00388{transform:matrix(0.198630,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198630,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198630,0.001390,-0.001750,0.249994,0,0);}
.m91_c00388{transform:matrix(0.198675,0.001391,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198675,0.001391,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198675,0.001391,-0.001750,0.249994,0,0);}
.mb2_c00388{transform:matrix(0.198835,0.001392,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198835,0.001392,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198835,0.001392,-0.001750,0.249994,0,0);}
.mca_c00388{transform:matrix(0.198889,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198889,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198889,0.001591,-0.002000,0.249992,0,0);}
.m40_c00388{transform:matrix(0.199115,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199115,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199115,0.001394,-0.001750,0.249994,0,0);}
.md2_c00388{transform:matrix(0.199144,0.001593,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199144,0.001593,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199144,0.001593,-0.002000,0.249992,0,0);}
.m36_c00388{transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);}
.m62_c00388{transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200040,0.001400,-0.001750,0.249994,0,0);}
.m86_c00388{transform:matrix(0.200575,0.001404,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200575,0.001404,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200575,0.001404,-0.001750,0.249994,0,0);}
.m23_c00388{transform:matrix(0.200760,0.001405,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200760,0.001405,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200760,0.001405,-0.001750,0.249994,0,0);}
.mb9_c00388{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);}
.mc3_c00388{transform:matrix(0.201219,0.001610,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201219,0.001610,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201219,0.001610,-0.002000,0.249992,0,0);}
.m5f_c00388{transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201920,0.001413,-0.001750,0.249994,0,0);}
.m12_c00388{transform:matrix(0.202155,0.001415,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202155,0.001415,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202155,0.001415,-0.001750,0.249994,0,0);}
.m25_c00388{transform:matrix(0.202460,0.001417,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202460,0.001417,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202460,0.001417,-0.001750,0.249994,0,0);}
.me2_c00388{transform:matrix(0.202679,0.001621,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202679,0.001621,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202679,0.001621,-0.002000,0.249992,0,0);}
.mc6_c00388{transform:matrix(0.203069,0.001625,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203069,0.001625,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203069,0.001625,-0.002000,0.249992,0,0);}
.m85_c00388{transform:matrix(0.203215,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203215,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203215,0.001423,-0.001750,0.249994,0,0);}
.m58_c00388{transform:matrix(0.203735,0.001426,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203735,0.001426,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203735,0.001426,-0.001750,0.249994,0,0);}
.mdd_c00388{transform:matrix(0.204258,0.001634,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204258,0.001634,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204258,0.001634,-0.002000,0.249992,0,0);}
.mbe_c00388{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);}
.m59_c00388{transform:matrix(0.206565,0.001446,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206565,0.001446,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206565,0.001446,-0.001750,0.249994,0,0);}
.md0_c00388{transform:matrix(0.206733,0.001654,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206733,0.001654,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206733,0.001654,-0.002000,0.249992,0,0);}
.m6f_c00388{transform:matrix(0.207005,0.001449,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207005,0.001449,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207005,0.001449,-0.001750,0.249994,0,0);}
.m60_c00388{transform:matrix(0.207545,0.001453,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207545,0.001453,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207545,0.001453,-0.001750,0.249994,0,0);}
.mda_c00388{transform:matrix(0.207698,0.001662,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207698,0.001662,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207698,0.001662,-0.002000,0.249992,0,0);}
.m71_c00388{transform:matrix(0.209030,0.001463,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209030,0.001463,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209030,0.001463,-0.001750,0.249994,0,0);}
.m22_c00388{transform:matrix(0.209415,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209415,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209415,0.001466,-0.001750,0.249994,0,0);}
.m20_c00388{transform:matrix(0.209745,0.001468,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209745,0.001468,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209745,0.001468,-0.001750,0.249994,0,0);}
.m16_c00388{transform:matrix(0.210785,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210785,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210785,0.001475,-0.001750,0.249994,0,0);}
.m89_c00388{transform:matrix(0.210845,0.001476,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210845,0.001476,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210845,0.001476,-0.001750,0.249994,0,0);}
.mb5_c00388{transform:matrix(0.210870,0.001476,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210870,0.001476,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210870,0.001476,-0.001750,0.249994,0,0);}
.m37_c00388{transform:matrix(0.211040,0.001477,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211040,0.001477,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211040,0.001477,-0.001750,0.249994,0,0);}
.m4_c00388{transform:matrix(0.212837,0.004044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212837,0.004044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212837,0.004044,-0.004749,0.249955,0,0);}
.m95_c00388{transform:matrix(0.213275,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213275,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213275,0.001493,-0.001750,0.249994,0,0);}
.m26_c00388{transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213510,0.001495,-0.001750,0.249994,0,0);}
.m90_c00388{transform:matrix(0.214015,0.001498,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214015,0.001498,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214015,0.001498,-0.001750,0.249994,0,0);}
.me3_c00388{transform:matrix(0.214898,0.001719,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214898,0.001719,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214898,0.001719,-0.002000,0.249992,0,0);}
.md5_c00388{transform:matrix(0.215578,0.001725,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215578,0.001725,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215578,0.001725,-0.002000,0.249992,0,0);}
.m65_c00388{transform:matrix(0.215595,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215595,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215595,0.001509,-0.001750,0.249994,0,0);}
.m7a_c00388{transform:matrix(0.215775,0.001510,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215775,0.001510,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215775,0.001510,-0.001750,0.249994,0,0);}
.m7b_c00388{transform:matrix(0.215845,0.001511,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215845,0.001511,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215845,0.001511,-0.001750,0.249994,0,0);}
.md4_c00388{transform:matrix(0.215918,0.001727,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215918,0.001727,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215918,0.001727,-0.002000,0.249992,0,0);}
.m4a_c00388{transform:matrix(0.216430,0.001515,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216430,0.001515,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216430,0.001515,-0.001750,0.249994,0,0);}
.mc_c00388{transform:matrix(0.217256,0.004128,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217256,0.004128,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217256,0.004128,-0.004749,0.249955,0,0);}
.m5e_c00388{transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);}
.m64_c00388{transform:matrix(0.217795,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217795,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217795,0.001525,-0.001750,0.249994,0,0);}
.mc4_c00388{transform:matrix(0.218268,0.001746,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218268,0.001746,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218268,0.001746,-0.002000,0.249992,0,0);}
.m1f_c00388{transform:matrix(0.219230,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219230,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219230,0.001535,-0.001750,0.249994,0,0);}
.mc9_c00388{transform:matrix(0.220853,0.001767,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220853,0.001767,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220853,0.001767,-0.002000,0.249992,0,0);}
.m7e_c00388{transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);}
.me6_c00388{transform:matrix(0.221988,0.001776,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221988,0.001776,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221988,0.001776,-0.002000,0.249992,0,0);}
.md7_c00388{transform:matrix(0.222193,0.001778,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222193,0.001778,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222193,0.001778,-0.002000,0.249992,0,0);}
.mc7_c00388{transform:matrix(0.222623,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222623,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222623,0.001781,-0.002000,0.249992,0,0);}
.m79_c00388{transform:matrix(0.226284,0.001584,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226284,0.001584,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226284,0.001584,-0.001750,0.249994,0,0);}
.me1_c00388{transform:matrix(0.226503,0.001812,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226503,0.001812,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226503,0.001812,-0.002000,0.249992,0,0);}
.mdc_c00388{transform:matrix(0.226518,0.001812,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226518,0.001812,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226518,0.001812,-0.002000,0.249992,0,0);}
.mb7_c00388{transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229704,0.001608,-0.001750,0.249994,0,0);}
.m21_c00388{transform:matrix(0.230929,0.001617,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230929,0.001617,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230929,0.001617,-0.001750,0.249994,0,0);}
.mba_c00388{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_c00388{transform:matrix(0.233403,0.001867,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233403,0.001867,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233403,0.001867,-0.002000,0.249992,0,0);}
.m76_c00388{transform:matrix(0.235034,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235034,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235034,0.001645,-0.001750,0.249994,0,0);}
.md3_c00388{transform:matrix(0.242212,0.001938,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242212,0.001938,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242212,0.001938,-0.002000,0.249992,0,0);}
.m77_c00388{transform:matrix(0.243444,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243444,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243444,0.001704,-0.001750,0.249994,0,0);}
.m78_c00388{transform:matrix(0.246854,0.001728,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246854,0.001728,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246854,0.001728,-0.001750,0.249994,0,0);}
.me5_c00388{transform:matrix(0.248392,0.001987,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248392,0.001987,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248392,0.001987,-0.002000,0.249992,0,0);}
.me0_c00388{transform:matrix(0.251997,0.002016,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251997,0.002016,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251997,0.002016,-0.002000,0.249992,0,0);}
.m93_c00388{transform:matrix(0.253344,0.001773,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253344,0.001773,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253344,0.001773,-0.001750,0.249994,0,0);}
.mb_c00388{transform:matrix(0.254494,0.004835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254494,0.004835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254494,0.004835,-0.004749,0.249955,0,0);}
.md_c00388{transform:matrix(0.254949,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254949,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254949,0.004844,-0.004749,0.249955,0,0);}
.m75_c00388{transform:matrix(0.254959,0.001785,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254959,0.001785,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254959,0.001785,-0.001750,0.249994,0,0);}
.m74_c00388{transform:matrix(0.255704,0.001790,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255704,0.001790,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255704,0.001790,-0.001750,0.249994,0,0);}
.mcc_c00388{transform:matrix(0.258547,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258547,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258547,0.002068,-0.002000,0.249992,0,0);}
.m6_c00388{transform:matrix(0.267867,0.005089,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267867,0.005089,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267867,0.005089,-0.004749,0.249955,0,0);}
.me8_c00388{transform:matrix(0.268357,0.003489,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268357,0.003489,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268357,0.003489,-0.003250,0.249979,0,0);}
.m44_c00388{transform:matrix(0.271168,0.001898,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271168,0.001898,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271168,0.001898,-0.001750,0.249994,0,0);}
.mef_c00388{transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);}
.m1b_c00388{transform:matrix(0.272433,0.001907,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272433,0.001907,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272433,0.001907,-0.001750,0.249994,0,0);}
.m3e_c00388{transform:matrix(0.273718,0.001916,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273718,0.001916,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273718,0.001916,-0.001750,0.249994,0,0);}
.mea_c00388{transform:matrix(0.293265,0.003812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293265,0.003812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293265,0.003812,-0.003250,0.249979,0,0);}
.m63_c00388{transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);}
.mec_c00388{transform:matrix(0.317928,0.004133,-0.003250,0.249979,0,0);-ms-transform:matrix(0.317928,0.004133,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.317928,0.004133,-0.003250,0.249979,0,0);}
.ma2_c00388{transform:matrix(0.323547,0.002265,-0.001750,0.249994,0,0);-ms-transform:matrix(0.323547,0.002265,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.323547,0.002265,-0.001750,0.249994,0,0);}
.mf0_c00388{transform:matrix(0.330517,0.002975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330517,0.002975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330517,0.002975,-0.002250,0.249990,0,0);}
.m66_c00388{transform:matrix(0.351461,0.002460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.351461,0.002460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.351461,0.002460,-0.001750,0.249994,0,0);}
.mb8_c00388{transform:matrix(0.358960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358960,0.000000,0.000000,0.250000,0,0);}
.mcb_c00388{transform:matrix(0.371733,0.002974,-0.002000,0.249992,0,0);-ms-transform:matrix(0.371733,0.002974,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.371733,0.002974,-0.002000,0.249992,0,0);}
.meb_c00388{transform:matrix(0.388992,0.005057,-0.003250,0.249979,0,0);-ms-transform:matrix(0.388992,0.005057,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.388992,0.005057,-0.003250,0.249979,0,0);}
.m9_c00388{transform:matrix(0.395979,0.007524,-0.004749,0.249955,0,0);-ms-transform:matrix(0.395979,0.007524,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.395979,0.007524,-0.004749,0.249955,0,0);}
.mdf_c00388{transform:matrix(0.417032,0.003336,-0.002000,0.249992,0,0);-ms-transform:matrix(0.417032,0.003336,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.417032,0.003336,-0.002000,0.249992,0,0);}
.ma_c00388{transform:matrix(0.452793,0.008603,-0.004749,0.249955,0,0);-ms-transform:matrix(0.452793,0.008603,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.452793,0.008603,-0.004749,0.249955,0,0);}
.me_c00388{transform:matrix(0.453273,0.008612,-0.004749,0.249955,0,0);-ms-transform:matrix(0.453273,0.008612,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.453273,0.008612,-0.004749,0.249955,0,0);}
.mc1_c00388{transform:matrix(0.458825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458825,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.593488,0.011276,-0.004749,0.249955,0,0);-ms-transform:matrix(0.593488,0.011276,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.593488,0.011276,-0.004749,0.249955,0,0);}
.me7_c00388{transform:matrix(0.712632,0.005701,-0.002000,0.249992,0,0);-ms-transform:matrix(0.712632,0.005701,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.712632,0.005701,-0.002000,0.249992,0,0);}
.mee_c00388{transform:matrix(0.993120,0.008938,-0.002250,0.249990,0,0);-ms-transform:matrix(0.993120,0.008938,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.993120,0.008938,-0.002250,0.249990,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;}
.fsc_c00388{font-size:50.400000px;}
.fsb_c00388{font-size:51.450000px;}
.fsd_c00388{font-size:51.451646px;}
.fse_c00388{font-size:52.501680px;}
.fsa_c00388{font-size:53.550000px;}
.fs6_c00388{font-size:64.051569px;}
.fs3_c00388{font-size:66.151621px;}
.fs8_c00388{font-size:67.201646px;}
.fs7_c00388{font-size:68.251672px;}
.fs4_c00388{font-size:69.301698px;}
.fsf_c00388{font-size:69.305856px;}
.fs5_c00388{font-size:71.401749px;}
.fs9_c00388{font-size:97.650000px;}
.fs0_c00388{font-size:97.667624px;}
.fs2_c00388{font-size:137.574826px;}
.fs1_c00388{font-size:138.625015px;}
.fs10_c00388{font-size:158.556421px;}
.y0_c00388{bottom:0.000000px;}
.yed_c00388{bottom:72.031869px;}
.yec_c00388{bottom:72.544666px;}
.yeb_c00388{bottom:74.673171px;}
.yea_c00388{bottom:74.790000px;}
.ye9_c00388{bottom:116.662543px;}
.ye8_c00388{bottom:117.810801px;}
.ye7_c00388{bottom:119.066718px;}
.ye6_c00388{bottom:120.085710px;}
.ye5_c00388{bottom:120.421500px;}
.ye4_c00388{bottom:145.642908px;}
.ye3_c00388{bottom:145.910760px;}
.ye2_c00388{bottom:146.512476px;}
.ye1_c00388{bottom:147.284532px;}
.ye0_c00388{bottom:147.729648px;}
.ydf_c00388{bottom:148.553496px;}
.yde_c00388{bottom:149.039928px;}
.ydd_c00388{bottom:162.095064px;}
.ydc_c00388{bottom:162.341208px;}
.ydb_c00388{bottom:162.483624px;}
.yda_c00388{bottom:162.732228px;}
.yd9_c00388{bottom:163.147008px;}
.yd8_c00388{bottom:163.358628px;}
.yd7_c00388{bottom:163.555032px;}
.yd6_c00388{bottom:163.937532px;}
.yd5_c00388{bottom:164.028408px;}
.yd4_c00388{bottom:164.505648px;}
.yd3_c00388{bottom:164.909604px;}
.yd2_c00388{bottom:165.412956px;}
.yd1_c00388{bottom:165.475596px;}
.yd0_c00388{bottom:166.050120px;}
.ycf_c00388{bottom:180.815988px;}
.yce_c00388{bottom:180.966852px;}
.ycd_c00388{bottom:181.209024px;}
.ycc_c00388{bottom:181.493916px;}
.ycb_c00388{bottom:181.738200px;}
.yca_c00388{bottom:181.854852px;}
.yc9_c00388{bottom:182.390568px;}
.yc8_c00388{bottom:182.513892px;}
.yc7_c00388{bottom:182.690784px;}
.yc6_c00388{bottom:182.850780px;}
.yc5_c00388{bottom:182.952156px;}
.yc4_c00388{bottom:183.381984px;}
.yc3_c00388{bottom:183.669120px;}
.yc2_c00388{bottom:183.770880px;}
.yc1_c00388{bottom:183.840036px;}
.yc0_c00388{bottom:184.183464px;}
.ybf_c00388{bottom:184.410000px;}
.ybe_c00388{bottom:347.730000px;}
.ybd_c00388{bottom:367.056000px;}
.ybc_c00388{bottom:384.784500px;}
.ybb_c00388{bottom:455.254500px;}
.yba_c00388{bottom:500.546601px;}
.yb9_c00388{bottom:500.735461px;}
.yb8_c00388{bottom:500.944123px;}
.yb7_c00388{bottom:501.282948px;}
.yb6_c00388{bottom:501.630895px;}
.yb5_c00388{bottom:501.952963px;}
.yb4_c00388{bottom:502.134244px;}
.yb3_c00388{bottom:502.359021px;}
.yb2_c00388{bottom:502.800417px;}
.yb1_c00388{bottom:503.591136px;}
.yb0_c00388{bottom:504.054169px;}
.yaf_c00388{bottom:504.352206px;}
.yae_c00388{bottom:524.519005px;}
.yad_c00388{bottom:524.834554px;}
.yac_c00388{bottom:525.370428px;}
.yab_c00388{bottom:525.674134px;}
.yaa_c00388{bottom:526.036738px;}
.ya9_c00388{bottom:526.201599px;}
.ya8_c00388{bottom:526.501630px;}
.ya7_c00388{bottom:526.862239px;}
.ya6_c00388{bottom:527.027089px;}
.ya5_c00388{bottom:527.253756px;}
.ya4_c00388{bottom:527.448202px;}
.ya3_c00388{bottom:528.118102px;}
.ya2_c00388{bottom:546.622710px;}
.ya1_c00388{bottom:546.873490px;}
.ya0_c00388{bottom:547.351810px;}
.y9f_c00388{bottom:547.870900px;}
.y9e_c00388{bottom:548.184588px;}
.y9d_c00388{bottom:548.745760px;}
.y9c_c00388{bottom:548.926044px;}
.y9b_c00388{bottom:549.180235px;}
.y9a_c00388{bottom:549.645067px;}
.y99_c00388{bottom:550.381663px;}
.y98_c00388{bottom:550.700347px;}
.y97_c00388{bottom:551.065113px;}
.y94_c00388{bottom:571.228573px;}
.y8b_c00388{bottom:571.228681px;}
.y96_c00388{bottom:571.228704px;}
.y8d_c00388{bottom:571.228752px;}
.y95_c00388{bottom:571.228753px;}
.y8a_c00388{bottom:571.228761px;}
.y93_c00388{bottom:571.228833px;}
.y92_c00388{bottom:571.228882px;}
.y91_c00388{bottom:571.229062px;}
.y8c_c00388{bottom:571.229281px;}
.y8e_c00388{bottom:571.229352px;}
.y90_c00388{bottom:571.229632px;}
.y8f_c00388{bottom:571.229962px;}
.y89_c00388{bottom:593.013834px;}
.y88_c00388{bottom:593.238870px;}
.y87_c00388{bottom:593.700240px;}
.y86_c00388{bottom:593.953017px;}
.y85_c00388{bottom:594.298981px;}
.y84_c00388{bottom:594.471076px;}
.y83_c00388{bottom:594.858547px;}
.y82_c00388{bottom:595.126906px;}
.y81_c00388{bottom:595.251667px;}
.y80_c00388{bottom:595.622328px;}
.y7f_c00388{bottom:595.921011px;}
.y7e_c00388{bottom:596.155119px;}
.y7d_c00388{bottom:614.988841px;}
.y7c_c00388{bottom:615.528621px;}
.y7b_c00388{bottom:615.730438px;}
.y7a_c00388{bottom:615.930586px;}
.y79_c00388{bottom:616.273734px;}
.y78_c00388{bottom:616.632912px;}
.y77_c00388{bottom:616.797390px;}
.y76_c00388{bottom:617.060188px;}
.y75_c00388{bottom:617.565609px;}
.y74_c00388{bottom:617.747848px;}
.y73_c00388{bottom:618.019350px;}
.y72_c00388{bottom:618.167377px;}
.y71_c00388{bottom:618.557344px;}
.y70_c00388{bottom:618.780483px;}
.y6f_c00388{bottom:619.105711px;}
.y6e_c00388{bottom:638.974230px;}
.y6d_c00388{bottom:639.108015px;}
.y6c_c00388{bottom:639.314682px;}
.y6b_c00388{bottom:639.595407px;}
.y6a_c00388{bottom:639.750745px;}
.y69_c00388{bottom:640.281685px;}
.y68_c00388{bottom:640.396887px;}
.y67_c00388{bottom:640.552467px;}
.y66_c00388{bottom:640.795879px;}
.y65_c00388{bottom:641.729653px;}
.y64_c00388{bottom:642.073611px;}
.y63_c00388{bottom:642.325979px;}
.y62_c00388{bottom:661.370193px;}
.y61_c00388{bottom:662.128062px;}
.y60_c00388{bottom:662.297994px;}
.y5f_c00388{bottom:662.604415px;}
.y5e_c00388{bottom:662.747856px;}
.y5d_c00388{bottom:662.999236px;}
.y5c_c00388{bottom:663.165567px;}
.y5b_c00388{bottom:663.354746px;}
.y5a_c00388{bottom:663.672244px;}
.y59_c00388{bottom:663.819696px;}
.y58_c00388{bottom:664.069197px;}
.y57_c00388{bottom:664.322478px;}
.y56_c00388{bottom:664.465992px;}
.y55_c00388{bottom:683.982928px;}
.y54_c00388{bottom:684.107668px;}
.y53_c00388{bottom:684.521578px;}
.y52_c00388{bottom:684.674700px;}
.y51_c00388{bottom:685.016832px;}
.y50_c00388{bottom:685.343949px;}
.y4f_c00388{bottom:685.602459px;}
.y4e_c00388{bottom:685.872739px;}
.y4d_c00388{bottom:686.124351px;}
.y4c_c00388{bottom:686.421091px;}
.y4b_c00388{bottom:687.146904px;}
.y4a_c00388{bottom:707.109573px;}
.y49_c00388{bottom:707.366445px;}
.y48_c00388{bottom:707.664991px;}
.y47_c00388{bottom:708.007333px;}
.y46_c00388{bottom:708.239562px;}
.y45_c00388{bottom:708.425013px;}
.y44_c00388{bottom:709.105444px;}
.y43_c00388{bottom:709.492884px;}
.y42_c00388{bottom:709.744033px;}
.y41_c00388{bottom:710.057941px;}
.y40_c00388{bottom:710.367964px;}
.y3f_c00388{bottom:729.926938px;}
.y3e_c00388{bottom:730.406540px;}
.y3d_c00388{bottom:730.758246px;}
.y3c_c00388{bottom:731.239642px;}
.y3b_c00388{bottom:731.470152px;}
.y3a_c00388{bottom:731.693532px;}
.y39_c00388{bottom:731.894791px;}
.y38_c00388{bottom:732.304891px;}
.y37_c00388{bottom:732.885343px;}
.y36_c00388{bottom:733.244041px;}
.y35_c00388{bottom:733.588104px;}
.y34_c00388{bottom:753.208468px;}
.y33_c00388{bottom:753.469120px;}
.y32_c00388{bottom:753.796206px;}
.y31_c00388{bottom:754.202661px;}
.y30_c00388{bottom:754.692181px;}
.y2f_c00388{bottom:754.871710px;}
.y2e_c00388{bottom:755.124823px;}
.y2d_c00388{bottom:755.306211px;}
.y2c_c00388{bottom:755.457390px;}
.y2b_c00388{bottom:755.854531px;}
.y2a_c00388{bottom:756.013291px;}
.y29_c00388{bottom:756.268221px;}
.y28_c00388{bottom:775.708011px;}
.y27_c00388{bottom:775.949962px;}
.y26_c00388{bottom:776.415039px;}
.y25_c00388{bottom:776.543412px;}
.y24_c00388{bottom:776.925265px;}
.y23_c00388{bottom:777.382635px;}
.y22_c00388{bottom:777.618927px;}
.y21_c00388{bottom:778.100667px;}
.y20_c00388{bottom:778.427815px;}
.y1f_c00388{bottom:778.584444px;}
.y1e_c00388{bottom:778.949392px;}
.y1d_c00388{bottom:798.638256px;}
.y1c_c00388{bottom:799.072756px;}
.y1b_c00388{bottom:799.123555px;}
.y1a_c00388{bottom:799.634317px;}
.y19_c00388{bottom:799.934670px;}
.y18_c00388{bottom:800.184234px;}
.y17_c00388{bottom:800.354439px;}
.y16_c00388{bottom:800.556417px;}
.y15_c00388{bottom:800.669617px;}
.y14_c00388{bottom:801.142558px;}
.y13_c00388{bottom:801.388248px;}
.y12_c00388{bottom:801.630000px;}
.y11_c00388{bottom:845.636792px;}
.y10_c00388{bottom:845.637113px;}
.ye_c00388{bottom:845.637474px;}
.yf_c00388{bottom:845.637792px;}
.yc_c00388{bottom:888.491166px;}
.yb_c00388{bottom:888.491249px;}
.yd_c00388{bottom:888.491451px;}
.ya_c00388{bottom:888.491963px;}
.y9_c00388{bottom:901.055453px;}
.y8_c00388{bottom:901.557395px;}
.y7_c00388{bottom:902.531667px;}
.y6_c00388{bottom:902.846877px;}
.y5_c00388{bottom:903.556898px;}
.y4_c00388{bottom:904.562691px;}
.y3_c00388{bottom:905.108808px;}
.y2_c00388{bottom:905.589489px;}
.y1_c00388{bottom:911.524500px;}
.he_c00388{height:50.400000px;}
.hd_c00388{height:51.450000px;}
.hf_c00388{height:51.451646px;}
.h10_c00388{height:52.501680px;}
.hc_c00388{height:53.550000px;}
.h8_c00388{height:64.051569px;}
.h5_c00388{height:66.151621px;}
.ha_c00388{height:67.201646px;}
.h9_c00388{height:68.251672px;}
.h6_c00388{height:69.301698px;}
.h11_c00388{height:69.305856px;}
.h7_c00388{height:71.401749px;}
.hb_c00388{height:97.650000px;}
.h2_c00388{height:97.667624px;}
.h4_c00388{height:137.574826px;}
.h3_c00388{height:138.625015px;}
.h12_c00388{height:158.556421px;}
.h1_c00388{height:1005.000000px;}
.h0_c00388{height:1005.150000px;}
.w0_c00388{width:715.200000px;}
.w1_c00388{width:715.500000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:49.734000px;}
.xa_c00388{left:57.511847px;}
.x9b_c00388{left:62.080500px;}
.x9c_c00388{left:75.061500px;}
.x8e_c00388{left:88.479972px;}
.x26_c00388{left:96.334865px;}
.x12_c00388{left:98.755500px;}
.x44_c00388{left:118.441359px;}
.x82_c00388{left:127.084500px;}
.x4e_c00388{left:129.767180px;}
.x13_c00388{left:133.291500px;}
.x56_c00388{left:134.908388px;}
.x96_c00388{left:136.796100px;}
.x2f_c00388{left:140.844384px;}
.x35_c00388{left:142.482170px;}
.x1e_c00388{left:150.604730px;}
.x99_c00388{left:152.305500px;}
.x27_c00388{left:155.433365px;}
.x57_c00388{left:159.713541px;}
.x6b_c00388{left:165.119600px;}
.x14_c00388{left:168.390000px;}
.x83_c00388{left:170.013000px;}
.x1f_c00388{left:172.980230px;}
.x84_c00388{left:178.657500px;}
.x70_c00388{left:181.882895px;}
.x30_c00388{left:185.658069px;}
.x36_c00388{left:187.326170px;}
.x45_c00388{left:190.267359px;}
.x85_c00388{left:191.377500px;}
.x78_c00388{left:193.225959px;}
.x3d_c00388{left:201.869630px;}
.x58_c00388{left:202.993932px;}
.x71_c00388{left:206.232227px;}
.x28_c00388{left:212.167865px;}
.x64_c00388{left:216.812559px;}
.x20_c00388{left:219.715730px;}
.x37_c00388{left:223.204670px;}
.x5d_c00388{left:225.364626px;}
.x86_c00388{left:227.269500px;}
.x8f_c00388{left:231.044472px;}
.x29_c00388{left:233.764865px;}
.x15_c00388{left:235.953000px;}
.x6c_c00388{left:238.846056px;}
.xe_c00388{left:240.605478px;}
.x5e_c00388{left:243.187626px;}
.x3e_c00388{left:244.261130px;}
.x59_c00388{left:249.640281px;}
.x16_c00388{left:252.124500px;}
.x72_c00388{left:255.091380px;}
.x46_c00388{left:256.688859px;}
.x31_c00388{left:258.293565px;}
.x2a_c00388{left:259.677365px;}
.x97_c00388{left:263.727072px;}
.x5a_c00388{left:269.888498px;}
.x65_c00388{left:273.513842px;}
.x38_c00388{left:278.553170px;}
.x17_c00388{left:280.978500px;}
.x47_c00388{left:283.714359px;}
.x66_c00388{left:286.204461px;}
.x21_c00388{left:288.535730px;}
.x79_c00388{left:292.042266px;}
.x87_c00388{left:293.670000px;}
.x2b_c00388{left:295.836365px;}
.x73_c00388{left:300.178065px;}
.x18_c00388{left:305.293500px;}
.x48_c00388{left:307.475859px;}
.xf_c00388{left:310.008530px;}
.x9d_c00388{left:311.562000px;}
.x88_c00388{left:313.669500px;}
.x67_c00388{left:316.715952px;}
.x3f_c00388{left:318.817130px;}
.x4f_c00388{left:319.857846px;}
.x22_c00388{left:322.291729px;}
.x5b_c00388{left:326.019210px;}
.x9a_c00388{left:327.298500px;}
.x6d_c00388{left:328.745166px;}
.x68_c00388{left:333.456771px;}
.x32_c00388{left:334.701530px;}
.x89_c00388{left:335.781000px;}
.x5f_c00388{left:336.877626px;}
.x50_c00388{left:339.297710px;}
.x19_c00388{left:340.945500px;}
.x49_c00388{left:343.387359px;}
.x7a_c00388{left:347.169878px;}
.x8a_c00388{left:351.196500px;}
.x90_c00388{left:352.553472px;}
.xb_c00388{left:354.024835px;}
.x40_c00388{left:355.747130px;}
.x74_c00388{left:358.233656px;}
.x2_c00388{left:362.103000px;}
.x4a_c00388{left:363.878859px;}
.x9e_c00388{left:368.539500px;}
.x5c_c00388{left:373.558049px;}
.x39_c00388{left:375.757670px;}
.x1a_c00388{left:383.853000px;}
.x6e_c00388{left:384.911490px;}
.x3_c00388{left:387.402000px;}
.x2c_c00388{left:391.414865px;}
.x7b_c00388{left:397.892021px;}
.x91_c00388{left:400.365972px;}
.x3a_c00388{left:402.250670px;}
.x75_c00388{left:403.605341px;}
.x4b_c00388{left:407.653359px;}
.x60_c00388{left:410.886126px;}
.x7e_c00388{left:412.560000px;}
.x10_c00388{left:413.976535px;}
.x4_c00388{left:416.145000px;}
.x8b_c00388{left:418.161000px;}
.x51_c00388{left:420.031643px;}
.x92_c00388{left:424.916472px;}
.x98_c00388{left:427.864944px;}
.x4c_c00388{left:431.929359px;}
.x3b_c00388{left:435.426170px;}
.x7c_c00388{left:438.115737px;}
.x52_c00388{left:439.437006px;}
.x23_c00388{left:442.180729px;}
.x81_c00388{left:445.230000px;}
.x61_c00388{left:446.997126px;}
.x2d_c00388{left:449.479865px;}
.x33_c00388{left:451.598711px;}
.x1b_c00388{left:456.819000px;}
.x24_c00388{left:460.519729px;}
.x1c_c00388{left:464.076000px;}
.x69_c00388{left:467.650344px;}
.x5_c00388{left:469.081500px;}
.x41_c00388{left:473.228630px;}
.x53_c00388{left:474.611765px;}
.x7d_c00388{left:481.607933px;}
.xc_c00388{left:482.838819px;}
.x3c_c00388{left:484.332170px;}
.x6a_c00388{left:491.411510px;}
.x2e_c00388{left:496.206365px;}
.x8c_c00388{left:498.889500px;}
.x54_c00388{left:500.492586px;}
.x93_c00388{left:503.216472px;}
.x6_c00388{left:506.451000px;}
.x76_c00388{left:508.544606px;}
.x62_c00388{left:512.907126px;}
.x6f_c00388{left:515.851229px;}
.x55_c00388{left:517.247471px;}
.x7_c00388{left:523.041000px;}
.x1d_c00388{left:526.147500px;}
.x8d_c00388{left:529.161000px;}
.x42_c00388{left:532.358630px;}
.x11_c00388{left:533.878799px;}
.x7f_c00388{left:536.490000px;}
.x4d_c00388{left:540.196359px;}
.x80_c00388{left:543.780000px;}
.x63_c00388{left:545.055126px;}
.x77_c00388{left:548.051333px;}
.x43_c00388{left:550.178630px;}
.x94_c00388{left:552.093972px;}
.x34_c00388{left:555.570486px;}
.x25_c00388{left:561.523730px;}
.xd_c00388{left:563.853060px;}
.x8_c00388{left:574.318500px;}
.x95_c00388{left:582.861972px;}
.x9_c00388{left:600.736500px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fsc_c00388{font-size:44.800000pt;}
.fsb_c00388{font-size:45.733333pt;}
.fsd_c00388{font-size:45.734797pt;}
.fse_c00388{font-size:46.668160pt;}
.fsa_c00388{font-size:47.600000pt;}
.fs6_c00388{font-size:56.934728pt;}
.fs3_c00388{font-size:58.801441pt;}
.fs8_c00388{font-size:59.734797pt;}
.fs7_c00388{font-size:60.668153pt;}
.fs4_c00388{font-size:61.601509pt;}
.fsf_c00388{font-size:61.605205pt;}
.fs5_c00388{font-size:63.468222pt;}
.fs9_c00388{font-size:86.800000pt;}
.fs0_c00388{font-size:86.815666pt;}
.fs2_c00388{font-size:122.288734pt;}
.fs1_c00388{font-size:123.222236pt;}
.fs10_c00388{font-size:140.939041pt;}
.y0_c00388{bottom:0.000000pt;}
.yed_c00388{bottom:64.028328pt;}
.yec_c00388{bottom:64.484148pt;}
.yeb_c00388{bottom:66.376152pt;}
.yea_c00388{bottom:66.480000pt;}
.ye9_c00388{bottom:103.700039pt;}
.ye8_c00388{bottom:104.720712pt;}
.ye7_c00388{bottom:105.837083pt;}
.ye6_c00388{bottom:106.742853pt;}
.ye5_c00388{bottom:107.041333pt;}
.ye4_c00388{bottom:129.460363pt;}
.ye3_c00388{bottom:129.698453pt;}
.ye2_c00388{bottom:130.233312pt;}
.ye1_c00388{bottom:130.919584pt;}
.ye0_c00388{bottom:131.315243pt;}
.ydf_c00388{bottom:132.047552pt;}
.yde_c00388{bottom:132.479936pt;}
.ydd_c00388{bottom:144.084501pt;}
.ydc_c00388{bottom:144.303296pt;}
.ydb_c00388{bottom:144.429888pt;}
.yda_c00388{bottom:144.650869pt;}
.yd9_c00388{bottom:145.019563pt;}
.yd8_c00388{bottom:145.207669pt;}
.yd7_c00388{bottom:145.382251pt;}
.yd6_c00388{bottom:145.722251pt;}
.yd5_c00388{bottom:145.803029pt;}
.yd4_c00388{bottom:146.227243pt;}
.yd3_c00388{bottom:146.586315pt;}
.yd2_c00388{bottom:147.033739pt;}
.yd1_c00388{bottom:147.089419pt;}
.yd0_c00388{bottom:147.600107pt;}
.ycf_c00388{bottom:160.725323pt;}
.yce_c00388{bottom:160.859424pt;}
.ycd_c00388{bottom:161.074688pt;}
.ycc_c00388{bottom:161.327925pt;}
.ycb_c00388{bottom:161.545067pt;}
.yca_c00388{bottom:161.648757pt;}
.yc9_c00388{bottom:162.124949pt;}
.yc8_c00388{bottom:162.234571pt;}
.yc7_c00388{bottom:162.391808pt;}
.yc6_c00388{bottom:162.534027pt;}
.yc5_c00388{bottom:162.624139pt;}
.yc4_c00388{bottom:163.006208pt;}
.yc3_c00388{bottom:163.261440pt;}
.yc2_c00388{bottom:163.351893pt;}
.yc1_c00388{bottom:163.413365pt;}
.yc0_c00388{bottom:163.718635pt;}
.ybf_c00388{bottom:163.920000pt;}
.ybe_c00388{bottom:309.093333pt;}
.ybd_c00388{bottom:326.272000pt;}
.ybc_c00388{bottom:342.030667pt;}
.ybb_c00388{bottom:404.670667pt;}
.yba_c00388{bottom:444.930312pt;}
.yb9_c00388{bottom:445.098188pt;}
.yb8_c00388{bottom:445.283665pt;}
.yb7_c00388{bottom:445.584843pt;}
.yb6_c00388{bottom:445.894129pt;}
.yb5_c00388{bottom:446.180412pt;}
.yb4_c00388{bottom:446.341551pt;}
.yb3_c00388{bottom:446.541352pt;}
.yb2_c00388{bottom:446.933704pt;}
.yb1_c00388{bottom:447.636565pt;}
.yb0_c00388{bottom:448.048151pt;}
.yaf_c00388{bottom:448.313072pt;}
.yae_c00388{bottom:466.239116pt;}
.yad_c00388{bottom:466.519604pt;}
.yac_c00388{bottom:466.995936pt;}
.yab_c00388{bottom:467.265897pt;}
.yaa_c00388{bottom:467.588212pt;}
.ya9_c00388{bottom:467.734755pt;}
.ya8_c00388{bottom:468.001449pt;}
.ya7_c00388{bottom:468.321991pt;}
.ya6_c00388{bottom:468.468524pt;}
.ya5_c00388{bottom:468.670005pt;}
.ya4_c00388{bottom:468.842847pt;}
.ya3_c00388{bottom:469.438313pt;}
.ya2_c00388{bottom:485.886853pt;}
.ya1_c00388{bottom:486.109769pt;}
.ya0_c00388{bottom:486.534943pt;}
.y9f_c00388{bottom:486.996356pt;}
.y9e_c00388{bottom:487.275189pt;}
.y9d_c00388{bottom:487.774009pt;}
.y9c_c00388{bottom:487.934261pt;}
.y9b_c00388{bottom:488.160209pt;}
.y9a_c00388{bottom:488.573393pt;}
.y99_c00388{bottom:489.228145pt;}
.y98_c00388{bottom:489.511420pt;}
.y97_c00388{bottom:489.835656pt;}
.y94_c00388{bottom:507.758732pt;}
.y8b_c00388{bottom:507.758828pt;}
.y96_c00388{bottom:507.758848pt;}
.y8d_c00388{bottom:507.758891pt;}
.y95_c00388{bottom:507.758892pt;}
.y8a_c00388{bottom:507.758899pt;}
.y93_c00388{bottom:507.758963pt;}
.y92_c00388{bottom:507.759007pt;}
.y91_c00388{bottom:507.759167pt;}
.y8c_c00388{bottom:507.759361pt;}
.y8e_c00388{bottom:507.759424pt;}
.y90_c00388{bottom:507.759673pt;}
.y8f_c00388{bottom:507.759967pt;}
.y89_c00388{bottom:527.123408pt;}
.y88_c00388{bottom:527.323440pt;}
.y87_c00388{bottom:527.733547pt;}
.y86_c00388{bottom:527.958237pt;}
.y85_c00388{bottom:528.265761pt;}
.y84_c00388{bottom:528.418735pt;}
.y83_c00388{bottom:528.763153pt;}
.y82_c00388{bottom:529.001695pt;}
.y81_c00388{bottom:529.112593pt;}
.y80_c00388{bottom:529.442069pt;}
.y7f_c00388{bottom:529.707565pt;}
.y7e_c00388{bottom:529.915661pt;}
.y7d_c00388{bottom:546.656748pt;}
.y7c_c00388{bottom:547.136552pt;}
.y7b_c00388{bottom:547.315945pt;}
.y7a_c00388{bottom:547.493855pt;}
.y79_c00388{bottom:547.798875pt;}
.y78_c00388{bottom:548.118144pt;}
.y77_c00388{bottom:548.264347pt;}
.y76_c00388{bottom:548.497945pt;}
.y75_c00388{bottom:548.947208pt;}
.y74_c00388{bottom:549.109199pt;}
.y73_c00388{bottom:549.350533pt;}
.y72_c00388{bottom:549.482113pt;}
.y71_c00388{bottom:549.828751pt;}
.y70_c00388{bottom:550.027096pt;}
.y6f_c00388{bottom:550.316188pt;}
.y6e_c00388{bottom:567.977093pt;}
.y6d_c00388{bottom:568.096013pt;}
.y6c_c00388{bottom:568.279717pt;}
.y6b_c00388{bottom:568.529251pt;}
.y6a_c00388{bottom:568.667329pt;}
.y69_c00388{bottom:569.139276pt;}
.y68_c00388{bottom:569.241677pt;}
.y67_c00388{bottom:569.379971pt;}
.y66_c00388{bottom:569.596337pt;}
.y65_c00388{bottom:570.426359pt;}
.y64_c00388{bottom:570.732099pt;}
.y63_c00388{bottom:570.956425pt;}
.y62_c00388{bottom:587.884616pt;}
.y61_c00388{bottom:588.558277pt;}
.y60_c00388{bottom:588.709328pt;}
.y5f_c00388{bottom:588.981703pt;}
.y5e_c00388{bottom:589.109205pt;}
.y5d_c00388{bottom:589.332655pt;}
.y5c_c00388{bottom:589.480504pt;}
.y5b_c00388{bottom:589.648663pt;}
.y5a_c00388{bottom:589.930884pt;}
.y59_c00388{bottom:590.061952pt;}
.y58_c00388{bottom:590.283731pt;}
.y57_c00388{bottom:590.508869pt;}
.y56_c00388{bottom:590.636437pt;}
.y55_c00388{bottom:607.984825pt;}
.y54_c00388{bottom:608.095705pt;}
.y53_c00388{bottom:608.463625pt;}
.y52_c00388{bottom:608.599733pt;}
.y51_c00388{bottom:608.903851pt;}
.y50_c00388{bottom:609.194621pt;}
.y4f_c00388{bottom:609.424408pt;}
.y4e_c00388{bottom:609.664657pt;}
.y4d_c00388{bottom:609.888312pt;}
.y4c_c00388{bottom:610.152081pt;}
.y4b_c00388{bottom:610.797248pt;}
.y4a_c00388{bottom:628.541843pt;}
.y49_c00388{bottom:628.770173pt;}
.y48_c00388{bottom:629.035548pt;}
.y47_c00388{bottom:629.339852pt;}
.y46_c00388{bottom:629.546277pt;}
.y45_c00388{bottom:629.711123pt;}
.y44_c00388{bottom:630.315951pt;}
.y43_c00388{bottom:630.660341pt;}
.y42_c00388{bottom:630.883585pt;}
.y41_c00388{bottom:631.162615pt;}
.y40_c00388{bottom:631.438191pt;}
.y3f_c00388{bottom:648.823945pt;}
.y3e_c00388{bottom:649.250257pt;}
.y3d_c00388{bottom:649.562885pt;}
.y3c_c00388{bottom:649.990793pt;}
.y3b_c00388{bottom:650.195691pt;}
.y3a_c00388{bottom:650.394251pt;}
.y39_c00388{bottom:650.573148pt;}
.y38_c00388{bottom:650.937681pt;}
.y37_c00388{bottom:651.453639pt;}
.y36_c00388{bottom:651.772481pt;}
.y35_c00388{bottom:652.078315pt;}
.y34_c00388{bottom:669.518639pt;}
.y33_c00388{bottom:669.750329pt;}
.y32_c00388{bottom:670.041072pt;}
.y31_c00388{bottom:670.402365pt;}
.y30_c00388{bottom:670.837495pt;}
.y2f_c00388{bottom:670.997076pt;}
.y2e_c00388{bottom:671.222065pt;}
.y2d_c00388{bottom:671.383299pt;}
.y2c_c00388{bottom:671.517680pt;}
.y2b_c00388{bottom:671.870695pt;}
.y2a_c00388{bottom:672.011815pt;}
.y29_c00388{bottom:672.238419pt;}
.y28_c00388{bottom:689.518232pt;}
.y27_c00388{bottom:689.733300pt;}
.y26_c00388{bottom:690.146701pt;}
.y25_c00388{bottom:690.260811pt;}
.y24_c00388{bottom:690.600236pt;}
.y23_c00388{bottom:691.006787pt;}
.y22_c00388{bottom:691.216824pt;}
.y21_c00388{bottom:691.645037pt;}
.y20_c00388{bottom:691.935836pt;}
.y1f_c00388{bottom:692.075061pt;}
.y1e_c00388{bottom:692.399460pt;}
.y1d_c00388{bottom:709.900672pt;}
.y1c_c00388{bottom:710.286895pt;}
.y1b_c00388{bottom:710.332049pt;}
.y1a_c00388{bottom:710.786060pt;}
.y19_c00388{bottom:711.053040pt;}
.y18_c00388{bottom:711.274875pt;}
.y17_c00388{bottom:711.426168pt;}
.y16_c00388{bottom:711.605704pt;}
.y15_c00388{bottom:711.706327pt;}
.y14_c00388{bottom:712.126719pt;}
.y13_c00388{bottom:712.345109pt;}
.y12_c00388{bottom:712.560000pt;}
.y11_c00388{bottom:751.677148pt;}
.y10_c00388{bottom:751.677433pt;}
.ye_c00388{bottom:751.677755pt;}
.yf_c00388{bottom:751.678037pt;}
.yc_c00388{bottom:789.769925pt;}
.yb_c00388{bottom:789.769999pt;}
.yd_c00388{bottom:789.770179pt;}
.ya_c00388{bottom:789.770633pt;}
.y9_c00388{bottom:800.938180pt;}
.y8_c00388{bottom:801.384351pt;}
.y7_c00388{bottom:802.250371pt;}
.y6_c00388{bottom:802.530557pt;}
.y5_c00388{bottom:803.161687pt;}
.y4_c00388{bottom:804.055725pt;}
.y3_c00388{bottom:804.541163pt;}
.y2_c00388{bottom:804.968435pt;}
.y1_c00388{bottom:810.244000pt;}
.he_c00388{height:44.800000pt;}
.hd_c00388{height:45.733333pt;}
.hf_c00388{height:45.734797pt;}
.h10_c00388{height:46.668160pt;}
.hc_c00388{height:47.600000pt;}
.h8_c00388{height:56.934728pt;}
.h5_c00388{height:58.801441pt;}
.ha_c00388{height:59.734797pt;}
.h9_c00388{height:60.668153pt;}
.h6_c00388{height:61.601509pt;}
.h11_c00388{height:61.605205pt;}
.h7_c00388{height:63.468222pt;}
.hb_c00388{height:86.800000pt;}
.h2_c00388{height:86.815666pt;}
.h4_c00388{height:122.288734pt;}
.h3_c00388{height:123.222236pt;}
.h12_c00388{height:140.939041pt;}
.h1_c00388{height:893.333333pt;}
.h0_c00388{height:893.466667pt;}
.w0_c00388{width:635.733333pt;}
.w1_c00388{width:636.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:44.208000pt;}
.xa_c00388{left:51.121641pt;}
.x9b_c00388{left:55.182667pt;}
.x9c_c00388{left:66.721333pt;}
.x8e_c00388{left:78.648864pt;}
.x26_c00388{left:85.630991pt;}
.x12_c00388{left:87.782667pt;}
.x44_c00388{left:105.281208pt;}
.x82_c00388{left:112.964000pt;}
.x4e_c00388{left:115.348604pt;}
.x13_c00388{left:118.481333pt;}
.x56_c00388{left:119.918567pt;}
.x96_c00388{left:121.596533pt;}
.x2f_c00388{left:125.195008pt;}
.x35_c00388{left:126.650817pt;}
.x1e_c00388{left:133.870871pt;}
.x99_c00388{left:135.382667pt;}
.x27_c00388{left:138.162991pt;}
.x57_c00388{left:141.967592pt;}
.x6b_c00388{left:146.772977pt;}
.x14_c00388{left:149.680000pt;}
.x83_c00388{left:151.122667pt;}
.x1f_c00388{left:153.760204pt;}
.x84_c00388{left:158.806667pt;}
.x70_c00388{left:161.673684pt;}
.x30_c00388{left:165.029395pt;}
.x36_c00388{left:166.512151pt;}
.x45_c00388{left:169.126541pt;}
.x85_c00388{left:170.113333pt;}
.x78_c00388{left:171.756408pt;}
.x3d_c00388{left:179.439671pt;}
.x58_c00388{left:180.439051pt;}
.x71_c00388{left:183.317535pt;}
.x28_c00388{left:188.593657pt;}
.x64_c00388{left:192.722275pt;}
.x20_c00388{left:195.302871pt;}
.x37_c00388{left:198.404151pt;}
.x5d_c00388{left:200.324112pt;}
.x86_c00388{left:202.017333pt;}
.x8f_c00388{left:205.372864pt;}
.x29_c00388{left:207.790991pt;}
.x15_c00388{left:209.736000pt;}
.x6c_c00388{left:212.307605pt;}
.xe_c00388{left:213.871536pt;}
.x5e_c00388{left:216.166779pt;}
.x3e_c00388{left:217.121004pt;}
.x59_c00388{left:221.902472pt;}
.x16_c00388{left:224.110667pt;}
.x72_c00388{left:226.747893pt;}
.x46_c00388{left:228.167875pt;}
.x31_c00388{left:229.594280pt;}
.x2a_c00388{left:230.824324pt;}
.x97_c00388{left:234.424064pt;}
.x5a_c00388{left:239.900887pt;}
.x65_c00388{left:243.123415pt;}
.x38_c00388{left:247.602817pt;}
.x17_c00388{left:249.758667pt;}
.x47_c00388{left:252.190541pt;}
.x66_c00388{left:254.403965pt;}
.x21_c00388{left:256.476204pt;}
.x79_c00388{left:259.593125pt;}
.x87_c00388{left:261.040000pt;}
.x2b_c00388{left:262.965657pt;}
.x73_c00388{left:266.824947pt;}
.x18_c00388{left:271.372000pt;}
.x48_c00388{left:273.311875pt;}
.xf_c00388{left:275.563137pt;}
.x9d_c00388{left:276.944000pt;}
.x88_c00388{left:278.817333pt;}
.x67_c00388{left:281.525291pt;}
.x3f_c00388{left:283.393004pt;}
.x4f_c00388{left:284.318085pt;}
.x22_c00388{left:286.481537pt;}
.x5b_c00388{left:289.794853pt;}
.x9a_c00388{left:290.932000pt;}
.x6d_c00388{left:292.217925pt;}
.x68_c00388{left:296.406019pt;}
.x32_c00388{left:297.512471pt;}
.x89_c00388{left:298.472000pt;}
.x5f_c00388{left:299.446779pt;}
.x50_c00388{left:301.597964pt;}
.x19_c00388{left:303.062667pt;}
.x49_c00388{left:305.233208pt;}
.x7a_c00388{left:308.595447pt;}
.x8a_c00388{left:312.174667pt;}
.x90_c00388{left:313.380864pt;}
.xb_c00388{left:314.688743pt;}
.x40_c00388{left:316.219671pt;}
.x74_c00388{left:318.429916pt;}
.x2_c00388{left:321.869333pt;}
.x4a_c00388{left:323.447875pt;}
.x9e_c00388{left:327.590667pt;}
.x5c_c00388{left:332.051599pt;}
.x39_c00388{left:334.006817pt;}
.x1a_c00388{left:341.202667pt;}
.x6e_c00388{left:342.143547pt;}
.x3_c00388{left:344.357333pt;}
.x2c_c00388{left:347.924324pt;}
.x7b_c00388{left:353.681796pt;}
.x91_c00388{left:355.880864pt;}
.x3a_c00388{left:357.556151pt;}
.x75_c00388{left:358.760303pt;}
.x4b_c00388{left:362.358541pt;}
.x60_c00388{left:365.232112pt;}
.x7e_c00388{left:366.720000pt;}
.x10_c00388{left:367.979143pt;}
.x4_c00388{left:369.906667pt;}
.x8b_c00388{left:371.698667pt;}
.x51_c00388{left:373.361460pt;}
.x92_c00388{left:377.703531pt;}
.x98_c00388{left:380.324395pt;}
.x4c_c00388{left:383.937208pt;}
.x3b_c00388{left:387.045484pt;}
.x7c_c00388{left:389.436211pt;}
.x52_c00388{left:390.610672pt;}
.x23_c00388{left:393.049537pt;}
.x81_c00388{left:395.760000pt;}
.x61_c00388{left:397.330779pt;}
.x2d_c00388{left:399.537657pt;}
.x33_c00388{left:401.421076pt;}
.x1b_c00388{left:406.061333pt;}
.x24_c00388{left:409.350871pt;}
.x1c_c00388{left:412.512000pt;}
.x69_c00388{left:415.689195pt;}
.x5_c00388{left:416.961333pt;}
.x41_c00388{left:420.647671pt;}
.x53_c00388{left:421.877124pt;}
.x7d_c00388{left:428.095940pt;}
.xc_c00388{left:429.190061pt;}
.x3c_c00388{left:430.517484pt;}
.x6a_c00388{left:436.810231pt;}
.x2e_c00388{left:441.072324pt;}
.x8c_c00388{left:443.457333pt;}
.x54_c00388{left:444.882299pt;}
.x93_c00388{left:447.303531pt;}
.x6_c00388{left:450.178667pt;}
.x76_c00388{left:452.039649pt;}
.x62_c00388{left:455.917445pt;}
.x6f_c00388{left:458.534425pt;}
.x55_c00388{left:459.775529pt;}
.x7_c00388{left:464.925333pt;}
.x1d_c00388{left:467.686667pt;}
.x8d_c00388{left:470.365333pt;}
.x42_c00388{left:473.207671pt;}
.x11_c00388{left:474.558932pt;}
.x7f_c00388{left:476.880000pt;}
.x4d_c00388{left:480.174541pt;}
.x80_c00388{left:483.360000pt;}
.x63_c00388{left:484.493445pt;}
.x77_c00388{left:487.156740pt;}
.x43_c00388{left:489.047671pt;}
.x94_c00388{left:490.750197pt;}
.x34_c00388{left:493.840432pt;}
.x25_c00388{left:499.132204pt;}
.xd_c00388{left:501.202720pt;}
.x8_c00388{left:510.505333pt;}
.x95_c00388{left:518.099531pt;}
.x9_c00388{left:533.988000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m70_c00389{transform:matrix(0.016283,-0.000244,0.003750,0.249972,0,0);-ms-transform:matrix(0.016283,-0.000244,0.003750,0.249972,0,0);-webkit-transform:matrix(0.016283,-0.000244,0.003750,0.249972,0,0);}
.mbd_c00389{transform:matrix(0.034299,-0.000309,0.002250,0.249990,0,0);-ms-transform:matrix(0.034299,-0.000309,0.002250,0.249990,0,0);-webkit-transform:matrix(0.034299,-0.000309,0.002250,0.249990,0,0);}
.m9e_c00389{transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.046355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);}
.mf5_c00389{transform:matrix(0.084702,-0.000762,0.002250,0.249990,0,0);-ms-transform:matrix(0.084702,-0.000762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.084702,-0.000762,0.002250,0.249990,0,0);}
.m1e_c00389{transform:matrix(0.090195,-0.001353,0.003750,0.249972,0,0);-ms-transform:matrix(0.090195,-0.001353,0.003750,0.249972,0,0);-webkit-transform:matrix(0.090195,-0.001353,0.003750,0.249972,0,0);}
.m18_c00389{transform:matrix(0.096619,-0.001449,0.003750,0.249972,0,0);-ms-transform:matrix(0.096619,-0.001449,0.003750,0.249972,0,0);-webkit-transform:matrix(0.096619,-0.001449,0.003750,0.249972,0,0);}
.m3d_c00389{transform:matrix(0.098599,-0.001479,0.003750,0.249972,0,0);-ms-transform:matrix(0.098599,-0.001479,0.003750,0.249972,0,0);-webkit-transform:matrix(0.098599,-0.001479,0.003750,0.249972,0,0);}
.m43_c00389{transform:matrix(0.128056,-0.001921,0.003750,0.249972,0,0);-ms-transform:matrix(0.128056,-0.001921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.128056,-0.001921,0.003750,0.249972,0,0);}
.m72_c00389{transform:matrix(0.135045,-0.002026,0.003750,0.249972,0,0);-ms-transform:matrix(0.135045,-0.002026,0.003750,0.249972,0,0);-webkit-transform:matrix(0.135045,-0.002026,0.003750,0.249972,0,0);}
.m14_c00389{transform:matrix(0.136229,-0.004087,0.007497,0.249888,0,0);-ms-transform:matrix(0.136229,-0.004087,0.007497,0.249888,0,0);-webkit-transform:matrix(0.136229,-0.004087,0.007497,0.249888,0,0);}
.m6f_c00389{transform:matrix(0.148953,-0.002234,0.003750,0.249972,0,0);-ms-transform:matrix(0.148953,-0.002234,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148953,-0.002234,0.003750,0.249972,0,0);}
.m62_c00389{transform:matrix(0.150943,-0.002264,0.003750,0.249972,0,0);-ms-transform:matrix(0.150943,-0.002264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150943,-0.002264,0.003750,0.249972,0,0);}
.m5a_c00389{transform:matrix(0.151338,-0.002270,0.003750,0.249972,0,0);-ms-transform:matrix(0.151338,-0.002270,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151338,-0.002270,0.003750,0.249972,0,0);}
.m1c_c00389{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);}
.ma1_c00389{transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);-ms-transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157082,-0.002356,0.003750,0.249972,0,0);}
.m6a_c00389{transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);-ms-transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);}
.m2f_c00389{transform:matrix(0.158182,-0.002373,0.003750,0.249972,0,0);-ms-transform:matrix(0.158182,-0.002373,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158182,-0.002373,0.003750,0.249972,0,0);}
.m67_c00389{transform:matrix(0.158322,-0.002375,0.003750,0.249972,0,0);-ms-transform:matrix(0.158322,-0.002375,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158322,-0.002375,0.003750,0.249972,0,0);}
.m58_c00389{transform:matrix(0.158867,-0.002383,0.003750,0.249972,0,0);-ms-transform:matrix(0.158867,-0.002383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158867,-0.002383,0.003750,0.249972,0,0);}
.m53_c00389{transform:matrix(0.160842,-0.002413,0.003750,0.249972,0,0);-ms-transform:matrix(0.160842,-0.002413,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160842,-0.002413,0.003750,0.249972,0,0);}
.mb3_c00389{transform:matrix(0.161118,-0.001450,0.002250,0.249990,0,0);-ms-transform:matrix(0.161118,-0.001450,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161118,-0.001450,0.002250,0.249990,0,0);}
.m64_c00389{transform:matrix(0.161712,-0.002426,0.003750,0.249972,0,0);-ms-transform:matrix(0.161712,-0.002426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161712,-0.002426,0.003750,0.249972,0,0);}
.m3b_c00389{transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);-ms-transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162202,-0.002433,0.003750,0.249972,0,0);}
.ma2_c00389{transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);-ms-transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162663,-0.001464,0.002250,0.249990,0,0);}
.m8f_c00389{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);}
.m2d_c00389{transform:matrix(0.163157,-0.002447,0.003750,0.249972,0,0);-ms-transform:matrix(0.163157,-0.002447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163157,-0.002447,0.003750,0.249972,0,0);}
.m8b_c00389{transform:matrix(0.164417,-0.002466,0.003750,0.249972,0,0);-ms-transform:matrix(0.164417,-0.002466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164417,-0.002466,0.003750,0.249972,0,0);}
.m32_c00389{transform:matrix(0.165811,-0.002487,0.003750,0.249972,0,0);-ms-transform:matrix(0.165811,-0.002487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165811,-0.002487,0.003750,0.249972,0,0);}
.m99_c00389{transform:matrix(0.166396,-0.002496,0.003750,0.249972,0,0);-ms-transform:matrix(0.166396,-0.002496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166396,-0.002496,0.003750,0.249972,0,0);}
.me2_c00389{transform:matrix(0.166838,-0.001502,0.002250,0.249990,0,0);-ms-transform:matrix(0.166838,-0.001502,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166838,-0.001502,0.002250,0.249990,0,0);}
.ma5_c00389{transform:matrix(0.167233,-0.001505,0.002250,0.249990,0,0);-ms-transform:matrix(0.167233,-0.001505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167233,-0.001505,0.002250,0.249990,0,0);}
.mbb_c00389{transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);-ms-transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);}
.m1b_c00389{transform:matrix(0.167586,-0.002514,0.003750,0.249972,0,0);-ms-transform:matrix(0.167586,-0.002514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167586,-0.002514,0.003750,0.249972,0,0);}
.m65_c00389{transform:matrix(0.168191,-0.002523,0.003750,0.249972,0,0);-ms-transform:matrix(0.168191,-0.002523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168191,-0.002523,0.003750,0.249972,0,0);}
.m3c_c00389{transform:matrix(0.168461,-0.002527,0.003750,0.249972,0,0);-ms-transform:matrix(0.168461,-0.002527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168461,-0.002527,0.003750,0.249972,0,0);}
.m76_c00389{transform:matrix(0.168821,-0.002532,0.003750,0.249972,0,0);-ms-transform:matrix(0.168821,-0.002532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168821,-0.002532,0.003750,0.249972,0,0);}
.m93_c00389{transform:matrix(0.169306,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169306,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169306,-0.002540,0.003750,0.249972,0,0);}
.m96_c00389{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);}
.m8d_c00389{transform:matrix(0.169521,-0.002543,0.003750,0.249972,0,0);-ms-transform:matrix(0.169521,-0.002543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169521,-0.002543,0.003750,0.249972,0,0);}
.mb6_c00389{transform:matrix(0.169543,-0.001526,0.002250,0.249990,0,0);-ms-transform:matrix(0.169543,-0.001526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169543,-0.001526,0.002250,0.249990,0,0);}
.m97_c00389{transform:matrix(0.170471,-0.002557,0.003750,0.249972,0,0);-ms-transform:matrix(0.170471,-0.002557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170471,-0.002557,0.003750,0.249972,0,0);}
.mb9_c00389{transform:matrix(0.170658,-0.001536,0.002250,0.249990,0,0);-ms-transform:matrix(0.170658,-0.001536,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170658,-0.001536,0.002250,0.249990,0,0);}
.maa_c00389{transform:matrix(0.170763,-0.001537,0.002250,0.249990,0,0);-ms-transform:matrix(0.170763,-0.001537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170763,-0.001537,0.002250,0.249990,0,0);}
.m3a_c00389{transform:matrix(0.171196,-0.002568,0.003750,0.249972,0,0);-ms-transform:matrix(0.171196,-0.002568,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171196,-0.002568,0.003750,0.249972,0,0);}
.m34_c00389{transform:matrix(0.173106,-0.002597,0.003750,0.249972,0,0);-ms-transform:matrix(0.173106,-0.002597,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173106,-0.002597,0.003750,0.249972,0,0);}
.m68_c00389{transform:matrix(0.173251,-0.002599,0.003750,0.249972,0,0);-ms-transform:matrix(0.173251,-0.002599,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173251,-0.002599,0.003750,0.249972,0,0);}
.m23_c00389{transform:matrix(0.173600,-0.002604,0.003750,0.249972,0,0);-ms-transform:matrix(0.173600,-0.002604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173600,-0.002604,0.003750,0.249972,0,0);}
.md4_c00389{transform:matrix(0.173738,-0.001564,0.002250,0.249990,0,0);-ms-transform:matrix(0.173738,-0.001564,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173738,-0.001564,0.002250,0.249990,0,0);}
.m3f_c00389{transform:matrix(0.174580,-0.002619,0.003750,0.249972,0,0);-ms-transform:matrix(0.174580,-0.002619,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174580,-0.002619,0.003750,0.249972,0,0);}
.m1f_c00389{transform:matrix(0.174715,-0.002621,0.003750,0.249972,0,0);-ms-transform:matrix(0.174715,-0.002621,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174715,-0.002621,0.003750,0.249972,0,0);}
.m8a_c00389{transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);-ms-transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176055,-0.002641,0.003750,0.249972,0,0);}
.m6b_c00389{transform:matrix(0.177110,-0.002657,0.003750,0.249972,0,0);-ms-transform:matrix(0.177110,-0.002657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177110,-0.002657,0.003750,0.249972,0,0);}
.mb2_c00389{transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177218,-0.001595,0.002250,0.249990,0,0);}
.mc3_c00389{transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);}
.mcc_c00389{transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177428,-0.001597,0.002250,0.249990,0,0);}
.m35_c00389{transform:matrix(0.177675,-0.002665,0.003750,0.249972,0,0);-ms-transform:matrix(0.177675,-0.002665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177675,-0.002665,0.003750,0.249972,0,0);}
.m26_c00389{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);}
.m27_c00389{transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-ms-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178145,-0.002672,0.003750,0.249972,0,0);}
.m40_c00389{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);}
.m84_c00389{transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);-ms-transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179310,-0.002690,0.003750,0.249972,0,0);}
.m7d_c00389{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);}
.m54_c00389{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);}
.m37_c00389{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);}
.m92_c00389{transform:matrix(0.180465,-0.002707,0.003750,0.249972,0,0);-ms-transform:matrix(0.180465,-0.002707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180465,-0.002707,0.003750,0.249972,0,0);}
.mb7_c00389{transform:matrix(0.180748,-0.001627,0.002250,0.249990,0,0);-ms-transform:matrix(0.180748,-0.001627,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180748,-0.001627,0.002250,0.249990,0,0);}
.m47_c00389{transform:matrix(0.180885,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180885,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180885,-0.002713,0.003750,0.249972,0,0);}
.m73_c00389{transform:matrix(0.181000,-0.002715,0.003750,0.249972,0,0);-ms-transform:matrix(0.181000,-0.002715,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181000,-0.002715,0.003750,0.249972,0,0);}
.m51_c00389{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);}
.mfd_c00389{transform:matrix(0.181123,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181123,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181123,-0.001630,0.002250,0.249990,0,0);}
.mb8_c00389{transform:matrix(0.181553,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181553,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181553,-0.001634,0.002250,0.249990,0,0);}
.mc0_c00389{transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);}
.mb1_c00389{transform:matrix(0.182773,-0.001645,0.002250,0.249990,0,0);-ms-transform:matrix(0.182773,-0.001645,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182773,-0.001645,0.002250,0.249990,0,0);}
.m20_c00389{transform:matrix(0.182929,-0.002744,0.003750,0.249972,0,0);-ms-transform:matrix(0.182929,-0.002744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182929,-0.002744,0.003750,0.249972,0,0);}
.m30_c00389{transform:matrix(0.182959,-0.002744,0.003750,0.249972,0,0);-ms-transform:matrix(0.182959,-0.002744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182959,-0.002744,0.003750,0.249972,0,0);}
.mc8_c00389{transform:matrix(0.183843,-0.001655,0.002250,0.249990,0,0);-ms-transform:matrix(0.183843,-0.001655,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183843,-0.001655,0.002250,0.249990,0,0);}
.m19_c00389{transform:matrix(0.184074,-0.002761,0.003750,0.249972,0,0);-ms-transform:matrix(0.184074,-0.002761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184074,-0.002761,0.003750,0.249972,0,0);}
.m104_c00389{transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);}
.m24_c00389{transform:matrix(0.184399,-0.002766,0.003750,0.249972,0,0);-ms-transform:matrix(0.184399,-0.002766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184399,-0.002766,0.003750,0.249972,0,0);}
.m1d_c00389{transform:matrix(0.184669,-0.002770,0.003750,0.249972,0,0);-ms-transform:matrix(0.184669,-0.002770,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184669,-0.002770,0.003750,0.249972,0,0);}
.m86_c00389{transform:matrix(0.186034,-0.002791,0.003750,0.249972,0,0);-ms-transform:matrix(0.186034,-0.002791,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186034,-0.002791,0.003750,0.249972,0,0);}
.m66_c00389{transform:matrix(0.186079,-0.002791,0.003750,0.249972,0,0);-ms-transform:matrix(0.186079,-0.002791,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186079,-0.002791,0.003750,0.249972,0,0);}
.m2b_c00389{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);}
.m61_c00389{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);}
.m74_c00389{transform:matrix(0.187394,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187394,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187394,-0.002811,0.003750,0.249972,0,0);}
.mfa_c00389{transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-ms-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187742,-0.001690,0.002250,0.249990,0,0);}
.mdc_c00389{transform:matrix(0.188287,-0.001695,0.002250,0.249990,0,0);-ms-transform:matrix(0.188287,-0.001695,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188287,-0.001695,0.002250,0.249990,0,0);}
.mc4_c00389{transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-ms-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);}
.ma4_c00389{transform:matrix(0.188427,-0.001696,0.002250,0.249990,0,0);-ms-transform:matrix(0.188427,-0.001696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188427,-0.001696,0.002250,0.249990,0,0);}
.m9c_c00389{transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189079,-0.002836,0.003750,0.249972,0,0);}
.md3_c00389{transform:matrix(0.189237,-0.001703,0.002250,0.249990,0,0);-ms-transform:matrix(0.189237,-0.001703,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189237,-0.001703,0.002250,0.249990,0,0);}
.m94_c00389{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);}
.m69_c00389{transform:matrix(0.191553,-0.002873,0.003750,0.249972,0,0);-ms-transform:matrix(0.191553,-0.002873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191553,-0.002873,0.003750,0.249972,0,0);}
.m4a_c00389{transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);-ms-transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191663,-0.002875,0.003750,0.249972,0,0);}
.mba_c00389{transform:matrix(0.191797,-0.001726,0.002250,0.249990,0,0);-ms-transform:matrix(0.191797,-0.001726,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191797,-0.001726,0.002250,0.249990,0,0);}
.m100_c00389{transform:matrix(0.192007,-0.001728,0.002250,0.249990,0,0);-ms-transform:matrix(0.192007,-0.001728,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192007,-0.001728,0.002250,0.249990,0,0);}
.m31_c00389{transform:matrix(0.192123,-0.002882,0.003750,0.249972,0,0);-ms-transform:matrix(0.192123,-0.002882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192123,-0.002882,0.003750,0.249972,0,0);}
.m77_c00389{transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192648,-0.002890,0.003750,0.249972,0,0);}
.md0_c00389{transform:matrix(0.192717,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192717,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192717,-0.001734,0.002250,0.249990,0,0);}
.m25_c00389{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);}
.me3_c00389{transform:matrix(0.194192,-0.001748,0.002250,0.249990,0,0);-ms-transform:matrix(0.194192,-0.001748,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194192,-0.001748,0.002250,0.249990,0,0);}
.m2a_c00389{transform:matrix(0.194823,-0.002922,0.003750,0.249972,0,0);-ms-transform:matrix(0.194823,-0.002922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194823,-0.002922,0.003750,0.249972,0,0);}
.mdb_c00389{transform:matrix(0.195097,-0.001756,0.002250,0.249990,0,0);-ms-transform:matrix(0.195097,-0.001756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195097,-0.001756,0.002250,0.249990,0,0);}
.mf1_c00389{transform:matrix(0.195247,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195247,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195247,-0.001757,0.002250,0.249990,0,0);}
.mbc_c00389{transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);}
.m33_c00389{transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195813,-0.002937,0.003750,0.249972,0,0);}
.m57_c00389{transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);-ms-transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);}
.m91_c00389{transform:matrix(0.196303,-0.002945,0.003750,0.249972,0,0);-ms-transform:matrix(0.196303,-0.002945,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196303,-0.002945,0.003750,0.249972,0,0);}
.m5c_c00389{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);}
.m78_c00389{transform:matrix(0.196628,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196628,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196628,-0.002949,0.003750,0.249972,0,0);}
.me8_c00389{transform:matrix(0.196657,-0.001770,0.002250,0.249990,0,0);-ms-transform:matrix(0.196657,-0.001770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196657,-0.001770,0.002250,0.249990,0,0);}
.m2c_c00389{transform:matrix(0.196773,-0.002952,0.003750,0.249972,0,0);-ms-transform:matrix(0.196773,-0.002952,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196773,-0.002952,0.003750,0.249972,0,0);}
.m7a_c00389{transform:matrix(0.197323,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197323,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197323,-0.002960,0.003750,0.249972,0,0);}
.m7b_c00389{transform:matrix(0.197333,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197333,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197333,-0.002960,0.003750,0.249972,0,0);}
.m101_c00389{transform:matrix(0.197842,-0.001781,0.002250,0.249990,0,0);-ms-transform:matrix(0.197842,-0.001781,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197842,-0.001781,0.002250,0.249990,0,0);}
.ma9_c00389{transform:matrix(0.197997,-0.001782,0.002250,0.249990,0,0);-ms-transform:matrix(0.197997,-0.001782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197997,-0.001782,0.002250,0.249990,0,0);}
.mee_c00389{transform:matrix(0.198502,-0.001787,0.002250,0.249990,0,0);-ms-transform:matrix(0.198502,-0.001787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198502,-0.001787,0.002250,0.249990,0,0);}
.mf8_c00389{transform:matrix(0.198582,-0.001787,0.002250,0.249990,0,0);-ms-transform:matrix(0.198582,-0.001787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198582,-0.001787,0.002250,0.249990,0,0);}
.m105_c00389{transform:matrix(0.199017,-0.001791,0.002250,0.249990,0,0);-ms-transform:matrix(0.199017,-0.001791,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199017,-0.001791,0.002250,0.249990,0,0);}
.md_c00389{transform:matrix(0.200374,-0.003807,0.004749,0.249955,0,0);-ms-transform:matrix(0.200374,-0.003807,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200374,-0.003807,0.004749,0.249955,0,0);}
.mbe_c00389{transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);}
.m22_c00389{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);}
.m49_c00389{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_c00389{transform:matrix(0.202217,-0.001820,0.002250,0.249990,0,0);-ms-transform:matrix(0.202217,-0.001820,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202217,-0.001820,0.002250,0.249990,0,0);}
.m95_c00389{transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);-ms-transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202577,-0.003039,0.003750,0.249972,0,0);}
.m85_c00389{transform:matrix(0.202657,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202657,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202657,-0.003040,0.003750,0.249972,0,0);}
.mf4_c00389{transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);-ms-transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202847,-0.001826,0.002250,0.249990,0,0);}
.mb0_c00389{transform:matrix(0.203087,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203087,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203087,-0.001828,0.002250,0.249990,0,0);}
.mae_c00389{transform:matrix(0.203252,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203252,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203252,-0.001829,0.002250,0.249990,0,0);}
.mff_c00389{transform:matrix(0.203442,-0.001831,0.002250,0.249990,0,0);-ms-transform:matrix(0.203442,-0.001831,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203442,-0.001831,0.002250,0.249990,0,0);}
.m8e_c00389{transform:matrix(0.203892,-0.003058,0.003750,0.249972,0,0);-ms-transform:matrix(0.203892,-0.003058,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203892,-0.003058,0.003750,0.249972,0,0);}
.m10a_c00389{transform:matrix(0.204442,-0.001840,0.002250,0.249990,0,0);-ms-transform:matrix(0.204442,-0.001840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204442,-0.001840,0.002250,0.249990,0,0);}
.m6c_c00389{transform:matrix(0.204757,-0.003071,0.003750,0.249972,0,0);-ms-transform:matrix(0.204757,-0.003071,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204757,-0.003071,0.003750,0.249972,0,0);}
.m89_c00389{transform:matrix(0.205032,-0.003075,0.003750,0.249972,0,0);-ms-transform:matrix(0.205032,-0.003075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205032,-0.003075,0.003750,0.249972,0,0);}
.m7e_c00389{transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);-ms-transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205407,-0.003081,0.003750,0.249972,0,0);}
.m9b_c00389{transform:matrix(0.205477,-0.003082,0.003750,0.249972,0,0);-ms-transform:matrix(0.205477,-0.003082,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205477,-0.003082,0.003750,0.249972,0,0);}
.m55_c00389{transform:matrix(0.205507,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205507,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205507,-0.003083,0.003750,0.249972,0,0);}
.me6_c00389{transform:matrix(0.205627,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205627,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205627,-0.001851,0.002250,0.249990,0,0);}
.mca_c00389{transform:matrix(0.205722,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205722,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205722,-0.001851,0.002250,0.249990,0,0);}
.m41_c00389{transform:matrix(0.205722,-0.003086,0.003750,0.249972,0,0);-ms-transform:matrix(0.205722,-0.003086,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205722,-0.003086,0.003750,0.249972,0,0);}
.m83_c00389{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);}
.md5_c00389{transform:matrix(0.206387,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206387,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206387,-0.001857,0.002250,0.249990,0,0);}
.m102_c00389{transform:matrix(0.206552,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206552,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206552,-0.001859,0.002250,0.249990,0,0);}
.mad_c00389{transform:matrix(0.206577,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206577,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206577,-0.001859,0.002250,0.249990,0,0);}
.mc5_c00389{transform:matrix(0.206677,-0.001860,0.002250,0.249990,0,0);-ms-transform:matrix(0.206677,-0.001860,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206677,-0.001860,0.002250,0.249990,0,0);}
.mb4_c00389{transform:matrix(0.207227,-0.001865,0.002250,0.249990,0,0);-ms-transform:matrix(0.207227,-0.001865,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207227,-0.001865,0.002250,0.249990,0,0);}
.me9_c00389{transform:matrix(0.207237,-0.001865,0.002250,0.249990,0,0);-ms-transform:matrix(0.207237,-0.001865,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207237,-0.001865,0.002250,0.249990,0,0);}
.mf0_c00389{transform:matrix(0.207312,-0.001866,0.002250,0.249990,0,0);-ms-transform:matrix(0.207312,-0.001866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207312,-0.001866,0.002250,0.249990,0,0);}
.mfe_c00389{transform:matrix(0.207667,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207667,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207667,-0.001869,0.002250,0.249990,0,0);}
.ma7_c00389{transform:matrix(0.207967,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.207967,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207967,-0.001872,0.002250,0.249990,0,0);}
.m75_c00389{transform:matrix(0.208082,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208082,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208082,-0.003121,0.003750,0.249972,0,0);}
.mc9_c00389{transform:matrix(0.208937,-0.001880,0.002250,0.249990,0,0);-ms-transform:matrix(0.208937,-0.001880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208937,-0.001880,0.002250,0.249990,0,0);}
.m7c_c00389{transform:matrix(0.208961,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208961,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208961,-0.003134,0.003750,0.249972,0,0);}
.mfc_c00389{transform:matrix(0.208977,-0.001881,0.002250,0.249990,0,0);-ms-transform:matrix(0.208977,-0.001881,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208977,-0.001881,0.002250,0.249990,0,0);}
.meb_c00389{transform:matrix(0.209612,-0.001887,0.002250,0.249990,0,0);-ms-transform:matrix(0.209612,-0.001887,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209612,-0.001887,0.002250,0.249990,0,0);}
.mc2_c00389{transform:matrix(0.209622,-0.001887,0.002250,0.249990,0,0);-ms-transform:matrix(0.209622,-0.001887,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209622,-0.001887,0.002250,0.249990,0,0);}
.m98_c00389{transform:matrix(0.209786,-0.003147,0.003750,0.249972,0,0);-ms-transform:matrix(0.209786,-0.003147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209786,-0.003147,0.003750,0.249972,0,0);}
.m6e_c00389{transform:matrix(0.210071,-0.003151,0.003750,0.249972,0,0);-ms-transform:matrix(0.210071,-0.003151,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210071,-0.003151,0.003750,0.249972,0,0);}
.me_c00389{transform:matrix(0.210602,-0.004001,0.004749,0.249955,0,0);-ms-transform:matrix(0.210602,-0.004001,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210602,-0.004001,0.004749,0.249955,0,0);}
.m87_c00389{transform:matrix(0.210671,-0.003160,0.003750,0.249972,0,0);-ms-transform:matrix(0.210671,-0.003160,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210671,-0.003160,0.003750,0.249972,0,0);}
.mab_c00389{transform:matrix(0.210831,-0.001897,0.002250,0.249990,0,0);-ms-transform:matrix(0.210831,-0.001897,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210831,-0.001897,0.002250,0.249990,0,0);}
.mdd_c00389{transform:matrix(0.211501,-0.001904,0.002250,0.249990,0,0);-ms-transform:matrix(0.211501,-0.001904,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211501,-0.001904,0.002250,0.249990,0,0);}
.ma8_c00389{transform:matrix(0.212126,-0.001909,0.002250,0.249990,0,0);-ms-transform:matrix(0.212126,-0.001909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212126,-0.001909,0.002250,0.249990,0,0);}
.m39_c00389{transform:matrix(0.212526,-0.003188,0.003750,0.249972,0,0);-ms-transform:matrix(0.212526,-0.003188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212526,-0.003188,0.003750,0.249972,0,0);}
.md8_c00389{transform:matrix(0.213086,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213086,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213086,-0.001918,0.002250,0.249990,0,0);}
.md1_c00389{transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);-ms-transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);}
.mef_c00389{transform:matrix(0.214276,-0.001928,0.002250,0.249990,0,0);-ms-transform:matrix(0.214276,-0.001928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214276,-0.001928,0.002250,0.249990,0,0);}
.m88_c00389{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);}
.mf2_c00389{transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);-ms-transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);}
.m9a_c00389{transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);-ms-transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215291,-0.003229,0.003750,0.249972,0,0);}
.m106_c00389{transform:matrix(0.215641,-0.001941,0.002250,0.249990,0,0);-ms-transform:matrix(0.215641,-0.001941,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215641,-0.001941,0.002250,0.249990,0,0);}
.mc1_c00389{transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);-ms-transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215666,-0.001941,0.002250,0.249990,0,0);}
.mec_c00389{transform:matrix(0.215946,-0.001944,0.002250,0.249990,0,0);-ms-transform:matrix(0.215946,-0.001944,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215946,-0.001944,0.002250,0.249990,0,0);}
.m50_c00389{transform:matrix(0.216201,-0.003243,0.003750,0.249972,0,0);-ms-transform:matrix(0.216201,-0.003243,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216201,-0.003243,0.003750,0.249972,0,0);}
.m9d_c00389{transform:matrix(0.216426,-0.003246,0.003750,0.249972,0,0);-ms-transform:matrix(0.216426,-0.003246,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216426,-0.003246,0.003750,0.249972,0,0);}
.m7f_c00389{transform:matrix(0.216921,-0.003254,0.003750,0.249972,0,0);-ms-transform:matrix(0.216921,-0.003254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216921,-0.003254,0.003750,0.249972,0,0);}
.mf6_c00389{transform:matrix(0.217876,-0.001961,0.002250,0.249990,0,0);-ms-transform:matrix(0.217876,-0.001961,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217876,-0.001961,0.002250,0.249990,0,0);}
.m3e_c00389{transform:matrix(0.218125,-0.003272,0.003750,0.249972,0,0);-ms-transform:matrix(0.218125,-0.003272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218125,-0.003272,0.003750,0.249972,0,0);}
.m5e_c00389{transform:matrix(0.218750,-0.003281,0.003750,0.249972,0,0);-ms-transform:matrix(0.218750,-0.003281,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218750,-0.003281,0.003750,0.249972,0,0);}
.m4c_c00389{transform:matrix(0.221390,-0.003321,0.003750,0.249972,0,0);-ms-transform:matrix(0.221390,-0.003321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221390,-0.003321,0.003750,0.249972,0,0);}
.mf7_c00389{transform:matrix(0.222486,-0.002002,0.002250,0.249990,0,0);-ms-transform:matrix(0.222486,-0.002002,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222486,-0.002002,0.002250,0.249990,0,0);}
.m46_c00389{transform:matrix(0.222705,-0.003341,0.003750,0.249972,0,0);-ms-transform:matrix(0.222705,-0.003341,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222705,-0.003341,0.003750,0.249972,0,0);}
.mcf_c00389{transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);-ms-transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);}
.m4_c00389{transform:matrix(0.223000,-0.004237,0.004749,0.249955,0,0);-ms-transform:matrix(0.223000,-0.004237,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223000,-0.004237,0.004749,0.249955,0,0);}
.m109_c00389{transform:matrix(0.223241,-0.002009,0.002250,0.249990,0,0);-ms-transform:matrix(0.223241,-0.002009,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223241,-0.002009,0.002250,0.249990,0,0);}
.m6d_c00389{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);}
.m4b_c00389{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);}
.md2_c00389{transform:matrix(0.224981,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.224981,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224981,-0.002025,0.002250,0.249990,0,0);}
.me4_c00389{transform:matrix(0.225196,-0.002027,0.002250,0.249990,0,0);-ms-transform:matrix(0.225196,-0.002027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225196,-0.002027,0.002250,0.249990,0,0);}
.mcb_c00389{transform:matrix(0.225311,-0.002028,0.002250,0.249990,0,0);-ms-transform:matrix(0.225311,-0.002028,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225311,-0.002028,0.002250,0.249990,0,0);}
.m81_c00389{transform:matrix(0.226779,-0.003402,0.003750,0.249972,0,0);-ms-transform:matrix(0.226779,-0.003402,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226779,-0.003402,0.003750,0.249972,0,0);}
.mea_c00389{transform:matrix(0.227056,-0.002044,0.002250,0.249990,0,0);-ms-transform:matrix(0.227056,-0.002044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227056,-0.002044,0.002250,0.249990,0,0);}
.m52_c00389{transform:matrix(0.227099,-0.003406,0.003750,0.249972,0,0);-ms-transform:matrix(0.227099,-0.003406,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227099,-0.003406,0.003750,0.249972,0,0);}
.m2e_c00389{transform:matrix(0.227504,-0.003413,0.003750,0.249972,0,0);-ms-transform:matrix(0.227504,-0.003413,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227504,-0.003413,0.003750,0.249972,0,0);}
.mcd_c00389{transform:matrix(0.227906,-0.002051,0.002250,0.249990,0,0);-ms-transform:matrix(0.227906,-0.002051,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227906,-0.002051,0.002250,0.249990,0,0);}
.m8c_c00389{transform:matrix(0.228114,-0.003422,0.003750,0.249972,0,0);-ms-transform:matrix(0.228114,-0.003422,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228114,-0.003422,0.003750,0.249972,0,0);}
.m4d_c00389{transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);-ms-transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);}
.mc_c00389{transform:matrix(0.229134,-0.004354,0.004749,0.249955,0,0);-ms-transform:matrix(0.229134,-0.004354,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229134,-0.004354,0.004749,0.249955,0,0);}
.mbf_c00389{transform:matrix(0.229286,-0.002064,0.002250,0.249990,0,0);-ms-transform:matrix(0.229286,-0.002064,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229286,-0.002064,0.002250,0.249990,0,0);}
.ma3_c00389{transform:matrix(0.230291,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230291,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230291,-0.002073,0.002250,0.249990,0,0);}
.mf3_c00389{transform:matrix(0.230611,-0.002075,0.002250,0.249990,0,0);-ms-transform:matrix(0.230611,-0.002075,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230611,-0.002075,0.002250,0.249990,0,0);}
.m90_c00389{transform:matrix(0.230839,-0.003463,0.003750,0.249972,0,0);-ms-transform:matrix(0.230839,-0.003463,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230839,-0.003463,0.003750,0.249972,0,0);}
.m5b_c00389{transform:matrix(0.231049,-0.003466,0.003750,0.249972,0,0);-ms-transform:matrix(0.231049,-0.003466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231049,-0.003466,0.003750,0.249972,0,0);}
.md7_c00389{transform:matrix(0.232061,-0.002089,0.002250,0.249990,0,0);-ms-transform:matrix(0.232061,-0.002089,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232061,-0.002089,0.002250,0.249990,0,0);}
.m79_c00389{transform:matrix(0.232329,-0.003485,0.003750,0.249972,0,0);-ms-transform:matrix(0.232329,-0.003485,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232329,-0.003485,0.003750,0.249972,0,0);}
.me0_c00389{transform:matrix(0.232821,-0.002095,0.002250,0.249990,0,0);-ms-transform:matrix(0.232821,-0.002095,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232821,-0.002095,0.002250,0.249990,0,0);}
.m80_c00389{transform:matrix(0.232854,-0.003493,0.003750,0.249972,0,0);-ms-transform:matrix(0.232854,-0.003493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232854,-0.003493,0.003750,0.249972,0,0);}
.m71_c00389{transform:matrix(0.233639,-0.003505,0.003750,0.249972,0,0);-ms-transform:matrix(0.233639,-0.003505,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233639,-0.003505,0.003750,0.249972,0,0);}
.mfb_c00389{transform:matrix(0.234975,-0.002115,0.002250,0.249990,0,0);-ms-transform:matrix(0.234975,-0.002115,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234975,-0.002115,0.002250,0.249990,0,0);}
.m38_c00389{transform:matrix(0.236063,-0.003541,0.003750,0.249972,0,0);-ms-transform:matrix(0.236063,-0.003541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236063,-0.003541,0.003750,0.249972,0,0);}
.m28_c00389{transform:matrix(0.237413,-0.003561,0.003750,0.249972,0,0);-ms-transform:matrix(0.237413,-0.003561,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237413,-0.003561,0.003750,0.249972,0,0);}
.maf_c00389{transform:matrix(0.239505,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239505,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239505,-0.002156,0.002250,0.249990,0,0);}
.me5_c00389{transform:matrix(0.239740,-0.002158,0.002250,0.249990,0,0);-ms-transform:matrix(0.239740,-0.002158,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239740,-0.002158,0.002250,0.249990,0,0);}
.m63_c00389{transform:matrix(0.242013,-0.003630,0.003750,0.249972,0,0);-ms-transform:matrix(0.242013,-0.003630,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242013,-0.003630,0.003750,0.249972,0,0);}
.m5d_c00389{transform:matrix(0.242473,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242473,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242473,-0.003637,0.003750,0.249972,0,0);}
.m5f_c00389{transform:matrix(0.242658,-0.003640,0.003750,0.249972,0,0);-ms-transform:matrix(0.242658,-0.003640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242658,-0.003640,0.003750,0.249972,0,0);}
.m45_c00389{transform:matrix(0.244742,-0.003671,0.003750,0.249972,0,0);-ms-transform:matrix(0.244742,-0.003671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244742,-0.003671,0.003750,0.249972,0,0);}
.m48_c00389{transform:matrix(0.246582,-0.003699,0.003750,0.249972,0,0);-ms-transform:matrix(0.246582,-0.003699,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246582,-0.003699,0.003750,0.249972,0,0);}
.m59_c00389{transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);-ms-transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);}
.mb_c00389{transform:matrix(0.250420,-0.004758,0.004749,0.249955,0,0);-ms-transform:matrix(0.250420,-0.004758,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250420,-0.004758,0.004749,0.249955,0,0);}
.mdf_c00389{transform:matrix(0.250495,-0.002254,0.002250,0.249990,0,0);-ms-transform:matrix(0.250495,-0.002254,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250495,-0.002254,0.002250,0.249990,0,0);}
.mf_c00389{transform:matrix(0.250767,-0.007523,0.007497,0.249888,0,0);-ms-transform:matrix(0.250767,-0.007523,0.007497,0.249888,0,0);-webkit-transform:matrix(0.250767,-0.007523,0.007497,0.249888,0,0);}
.m4e_c00389{transform:matrix(0.250832,-0.003762,0.003750,0.249972,0,0);-ms-transform:matrix(0.250832,-0.003762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250832,-0.003762,0.003750,0.249972,0,0);}
.med_c00389{transform:matrix(0.252580,-0.002273,0.002250,0.249990,0,0);-ms-transform:matrix(0.252580,-0.002273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252580,-0.002273,0.002250,0.249990,0,0);}
.ma6_c00389{transform:matrix(0.253795,-0.002284,0.002250,0.249990,0,0);-ms-transform:matrix(0.253795,-0.002284,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253795,-0.002284,0.002250,0.249990,0,0);}
.m82_c00389{transform:matrix(0.255021,-0.003825,0.003750,0.249972,0,0);-ms-transform:matrix(0.255021,-0.003825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255021,-0.003825,0.003750,0.249972,0,0);}
.m4f_c00389{transform:matrix(0.255441,-0.003832,0.003750,0.249972,0,0);-ms-transform:matrix(0.255441,-0.003832,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255441,-0.003832,0.003750,0.249972,0,0);}
.m12_c00389{transform:matrix(0.255995,-0.007680,0.007497,0.249888,0,0);-ms-transform:matrix(0.255995,-0.007680,0.007497,0.249888,0,0);-webkit-transform:matrix(0.255995,-0.007680,0.007497,0.249888,0,0);}
.mda_c00389{transform:matrix(0.256040,-0.002304,0.002250,0.249990,0,0);-ms-transform:matrix(0.256040,-0.002304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256040,-0.002304,0.002250,0.249990,0,0);}
.mde_c00389{transform:matrix(0.256375,-0.002307,0.002250,0.249990,0,0);-ms-transform:matrix(0.256375,-0.002307,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256375,-0.002307,0.002250,0.249990,0,0);}
.m29_c00389{transform:matrix(0.256856,-0.003853,0.003750,0.249972,0,0);-ms-transform:matrix(0.256856,-0.003853,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256856,-0.003853,0.003750,0.249972,0,0);}
.m8_c00389{transform:matrix(0.258208,-0.004906,0.004749,0.249955,0,0);-ms-transform:matrix(0.258208,-0.004906,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258208,-0.004906,0.004749,0.249955,0,0);}
.m6_c00389{transform:matrix(0.263487,-0.005006,0.004749,0.249955,0,0);-ms-transform:matrix(0.263487,-0.005006,0.004749,0.249955,0,0);-webkit-transform:matrix(0.263487,-0.005006,0.004749,0.249955,0,0);}
.m60_c00389{transform:matrix(0.265480,-0.003982,0.003750,0.249972,0,0);-ms-transform:matrix(0.265480,-0.003982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265480,-0.003982,0.003750,0.249972,0,0);}
.m9_c00389{transform:matrix(0.265542,-0.005045,0.004749,0.249955,0,0);-ms-transform:matrix(0.265542,-0.005045,0.004749,0.249955,0,0);-webkit-transform:matrix(0.265542,-0.005045,0.004749,0.249955,0,0);}
.m44_c00389{transform:matrix(0.269970,-0.004050,0.003750,0.249972,0,0);-ms-transform:matrix(0.269970,-0.004050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269970,-0.004050,0.003750,0.249972,0,0);}
.md9_c00389{transform:matrix(0.270794,-0.002437,0.002250,0.249990,0,0);-ms-transform:matrix(0.270794,-0.002437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270794,-0.002437,0.002250,0.249990,0,0);}
.m36_c00389{transform:matrix(0.273109,-0.004097,0.003750,0.249972,0,0);-ms-transform:matrix(0.273109,-0.004097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273109,-0.004097,0.003750,0.249972,0,0);}
.me7_c00389{transform:matrix(0.275154,-0.002476,0.002250,0.249990,0,0);-ms-transform:matrix(0.275154,-0.002476,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275154,-0.002476,0.002250,0.249990,0,0);}
.mce_c00389{transform:matrix(0.276064,-0.002485,0.002250,0.249990,0,0);-ms-transform:matrix(0.276064,-0.002485,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276064,-0.002485,0.002250,0.249990,0,0);}
.mc6_c00389{transform:matrix(0.287563,-0.002588,0.002250,0.249990,0,0);-ms-transform:matrix(0.287563,-0.002588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287563,-0.002588,0.002250,0.249990,0,0);}
.m10b_c00389{transform:matrix(0.291718,-0.002625,0.002250,0.249990,0,0);-ms-transform:matrix(0.291718,-0.002625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291718,-0.002625,0.002250,0.249990,0,0);}
.m10_c00389{transform:matrix(0.304473,-0.009134,0.007497,0.249888,0,0);-ms-transform:matrix(0.304473,-0.009134,0.007497,0.249888,0,0);-webkit-transform:matrix(0.304473,-0.009134,0.007497,0.249888,0,0);}
.mf9_c00389{transform:matrix(0.310537,-0.002795,0.002250,0.249990,0,0);-ms-transform:matrix(0.310537,-0.002795,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310537,-0.002795,0.002250,0.249990,0,0);}
.m15_c00389{transform:matrix(0.318132,-0.009544,0.007497,0.249888,0,0);-ms-transform:matrix(0.318132,-0.009544,0.007497,0.249888,0,0);-webkit-transform:matrix(0.318132,-0.009544,0.007497,0.249888,0,0);}
.me1_c00389{transform:matrix(0.330742,-0.002977,0.002250,0.249990,0,0);-ms-transform:matrix(0.330742,-0.002977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.330742,-0.002977,0.002250,0.249990,0,0);}
.m3_c00389{transform:matrix(0.333975,-0.006346,0.004749,0.249955,0,0);-ms-transform:matrix(0.333975,-0.006346,0.004749,0.249955,0,0);-webkit-transform:matrix(0.333975,-0.006346,0.004749,0.249955,0,0);}
.m2_c00389{transform:matrix(0.336064,-0.006385,0.004749,0.249955,0,0);-ms-transform:matrix(0.336064,-0.006385,0.004749,0.249955,0,0);-webkit-transform:matrix(0.336064,-0.006385,0.004749,0.249955,0,0);}
.m42_c00389{transform:matrix(0.354825,-0.005322,0.003750,0.249972,0,0);-ms-transform:matrix(0.354825,-0.005322,0.003750,0.249972,0,0);-webkit-transform:matrix(0.354825,-0.005322,0.003750,0.249972,0,0);}
.mb5_c00389{transform:matrix(0.359650,-0.003237,0.002250,0.249990,0,0);-ms-transform:matrix(0.359650,-0.003237,0.002250,0.249990,0,0);-webkit-transform:matrix(0.359650,-0.003237,0.002250,0.249990,0,0);}
.mc7_c00389{transform:matrix(0.367175,-0.003305,0.002250,0.249990,0,0);-ms-transform:matrix(0.367175,-0.003305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.367175,-0.003305,0.002250,0.249990,0,0);}
.m5_c00389{transform:matrix(0.371743,-0.007063,0.004749,0.249955,0,0);-ms-transform:matrix(0.371743,-0.007063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.371743,-0.007063,0.004749,0.249955,0,0);}
.ma_c00389{transform:matrix(0.377047,-0.007164,0.004749,0.249955,0,0);-ms-transform:matrix(0.377047,-0.007164,0.004749,0.249955,0,0);-webkit-transform:matrix(0.377047,-0.007164,0.004749,0.249955,0,0);}
.m7_c00389{transform:matrix(0.382091,-0.007260,0.004749,0.249955,0,0);-ms-transform:matrix(0.382091,-0.007260,0.004749,0.249955,0,0);-webkit-transform:matrix(0.382091,-0.007260,0.004749,0.249955,0,0);}
.md6_c00389{transform:matrix(0.387199,-0.003485,0.002250,0.249990,0,0);-ms-transform:matrix(0.387199,-0.003485,0.002250,0.249990,0,0);-webkit-transform:matrix(0.387199,-0.003485,0.002250,0.249990,0,0);}
.m16_c00389{transform:matrix(0.389130,-0.011674,0.007497,0.249888,0,0);-ms-transform:matrix(0.389130,-0.011674,0.007497,0.249888,0,0);-webkit-transform:matrix(0.389130,-0.011674,0.007497,0.249888,0,0);}
.m103_c00389{transform:matrix(0.396824,-0.003571,0.002250,0.249990,0,0);-ms-transform:matrix(0.396824,-0.003571,0.002250,0.249990,0,0);-webkit-transform:matrix(0.396824,-0.003571,0.002250,0.249990,0,0);}
.m21_c00389{transform:matrix(0.418473,-0.006277,0.003750,0.249972,0,0);-ms-transform:matrix(0.418473,-0.006277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.418473,-0.006277,0.003750,0.249972,0,0);}
.m13_c00389{transform:matrix(0.477940,-0.014338,0.007497,0.249888,0,0);-ms-transform:matrix(0.477940,-0.014338,0.007497,0.249888,0,0);-webkit-transform:matrix(0.477940,-0.014338,0.007497,0.249888,0,0);}
.m107_c00389{transform:matrix(0.497975,-0.004482,0.002250,0.249990,0,0);-ms-transform:matrix(0.497975,-0.004482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.497975,-0.004482,0.002250,0.249990,0,0);}
.m17_c00389{transform:matrix(0.530970,-0.007965,0.003750,0.249972,0,0);-ms-transform:matrix(0.530970,-0.007965,0.003750,0.249972,0,0);-webkit-transform:matrix(0.530970,-0.007965,0.003750,0.249972,0,0);}
.m1a_c00389{transform:matrix(0.599368,-0.008991,0.003750,0.249972,0,0);-ms-transform:matrix(0.599368,-0.008991,0.003750,0.249972,0,0);-webkit-transform:matrix(0.599368,-0.008991,0.003750,0.249972,0,0);}
.m108_c00389{transform:matrix(0.620045,-0.005580,0.002250,0.249990,0,0);-ms-transform:matrix(0.620045,-0.005580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.620045,-0.005580,0.002250,0.249990,0,0);}
.m0_c00389{transform:matrix(0.664822,-0.013296,0.004999,0.249950,0,0);-ms-transform:matrix(0.664822,-0.013296,0.004999,0.249950,0,0);-webkit-transform:matrix(0.664822,-0.013296,0.004999,0.249950,0,0);}
.m1_c00389{transform:matrix(0.688997,-0.013780,0.004999,0.249950,0,0);-ms-transform:matrix(0.688997,-0.013780,0.004999,0.249950,0,0);-webkit-transform:matrix(0.688997,-0.013780,0.004999,0.249950,0,0);}
.m11_c00389{transform:matrix(0.721640,-0.021649,0.007497,0.249888,0,0);-ms-transform:matrix(0.721640,-0.021649,0.007497,0.249888,0,0);-webkit-transform:matrix(0.721640,-0.021649,0.007497,0.249888,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;}
.fsb_c00389{font-size:21.000000px;}
.fsc_c00389{font-size:49.351999px;}
.fse_c00389{font-size:50.402041px;}
.fsf_c00389{font-size:52.502126px;}
.fsd_c00389{font-size:54.602211px;}
.fs8_c00389{font-size:63.007087px;}
.fs6_c00389{font-size:69.307796px;}
.fs9_c00389{font-size:70.357914px;}
.fs4_c00389{font-size:70.381650px;}
.fs5_c00389{font-size:71.408032px;}
.fsa_c00389{font-size:72.458150px;}
.fs7_c00389{font-size:74.558386px;}
.fs2_c00389{font-size:98.717814px;}
.fs3_c00389{font-size:118.671414px;}
.fs1_c00389{font-size:138.625015px;}
.fs0_c00389{font-size:140.728137px;}
.y0_c00389{bottom:0.000000px;}
.yff_c00389{bottom:136.077812px;}
.y100_c00389{bottom:136.272782px;}
.y101_c00389{bottom:136.533785px;}
.y102_c00389{bottom:136.758018px;}
.y103_c00389{bottom:137.181555px;}
.y104_c00389{bottom:137.416763px;}
.y105_c00389{bottom:138.086130px;}
.y106_c00389{bottom:138.307731px;}
.y107_c00389{bottom:138.735087px;}
.y108_c00389{bottom:138.990341px;}
.y109_c00389{bottom:139.343807px;}
.y10a_c00389{bottom:139.475550px;}
.y10b_c00389{bottom:139.786484px;}
.yee_c00389{bottom:154.170191px;}
.yef_c00389{bottom:154.475483px;}
.yf0_c00389{bottom:154.626096px;}
.yf1_c00389{bottom:155.039832px;}
.yf2_c00389{bottom:155.184656px;}
.yf3_c00389{bottom:155.277470px;}
.yf4_c00389{bottom:155.780700px;}
.yf5_c00389{bottom:156.092984px;}
.yf6_c00389{bottom:156.175944px;}
.yf7_c00389{bottom:156.499836px;}
.yf8_c00389{bottom:156.737055px;}
.yf9_c00389{bottom:156.836903px;}
.yfa_c00389{bottom:156.878990px;}
.yfb_c00389{bottom:157.013393px;}
.yfc_c00389{bottom:157.173672px;}
.yfd_c00389{bottom:157.529838px;}
.yfe_c00389{bottom:157.761335px;}
.ye0_c00389{bottom:171.722223px;}
.ye1_c00389{bottom:172.264316px;}
.ye2_c00389{bottom:172.293708px;}
.ye3_c00389{bottom:172.415666px;}
.ye4_c00389{bottom:172.966400px;}
.ye5_c00389{bottom:173.301314px;}
.ye6_c00389{bottom:173.701143px;}
.ye7_c00389{bottom:174.147093px;}
.ye8_c00389{bottom:174.474380px;}
.ye9_c00389{bottom:174.975819px;}
.yea_c00389{bottom:175.408052px;}
.yeb_c00389{bottom:175.863722px;}
.yec_c00389{bottom:176.039834px;}
.yed_c00389{bottom:176.358114px;}
.yce_c00389{bottom:189.270084px;}
.ycf_c00389{bottom:189.471392px;}
.yd0_c00389{bottom:190.017215px;}
.yd1_c00389{bottom:190.216281px;}
.yd2_c00389{bottom:190.412702px;}
.yd3_c00389{bottom:190.843106px;}
.yd4_c00389{bottom:191.196735px;}
.yd5_c00389{bottom:191.425967px;}
.yd6_c00389{bottom:191.877908px;}
.yd7_c00389{bottom:192.025895px;}
.yd8_c00389{bottom:192.379200px;}
.yd9_c00389{bottom:192.484412px;}
.yda_c00389{bottom:192.621732px;}
.ydb_c00389{bottom:192.866005px;}
.ydc_c00389{bottom:193.261182px;}
.ydd_c00389{bottom:193.424819px;}
.yde_c00389{bottom:193.739547px;}
.ydf_c00389{bottom:194.414090px;}
.ybd_c00389{bottom:207.360441px;}
.ybe_c00389{bottom:207.465404px;}
.ybf_c00389{bottom:207.832387px;}
.yc0_c00389{bottom:207.978228px;}
.yc1_c00389{bottom:208.109354px;}
.yc2_c00389{bottom:208.388642px;}
.yc3_c00389{bottom:208.607328px;}
.yc4_c00389{bottom:208.741518px;}
.yc5_c00389{bottom:208.971855px;}
.yc6_c00389{bottom:209.198102px;}
.yc7_c00389{bottom:209.584782px;}
.yc8_c00389{bottom:209.715421px;}
.yc9_c00389{bottom:209.888235px;}
.yca_c00389{bottom:210.082689px;}
.ycb_c00389{bottom:211.215082px;}
.ycc_c00389{bottom:211.307288px;}
.ycd_c00389{bottom:211.499527px;}
.yaf_c00389{bottom:225.450693px;}
.yb0_c00389{bottom:226.155491px;}
.yb1_c00389{bottom:226.386930px;}
.yb2_c00389{bottom:226.771071px;}
.yb3_c00389{bottom:227.151187px;}
.yb4_c00389{bottom:227.675418px;}
.yb5_c00389{bottom:227.823717px;}
.yb6_c00389{bottom:228.102588px;}
.yb7_c00389{bottom:228.415981px;}
.yb8_c00389{bottom:228.683565px;}
.yb9_c00389{bottom:229.077035px;}
.yba_c00389{bottom:229.269348px;}
.ybb_c00389{bottom:229.520851px;}
.ybc_c00389{bottom:229.694439px;}
.ya1_c00389{bottom:244.081500px;}
.ya2_c00389{bottom:244.193294px;}
.ya3_c00389{bottom:244.710884px;}
.ya4_c00389{bottom:244.859127px;}
.ya5_c00389{bottom:246.093324px;}
.ya6_c00389{bottom:246.232010px;}
.ya7_c00389{bottom:246.516414px;}
.ya8_c00389{bottom:246.764193px;}
.ya9_c00389{bottom:247.004911px;}
.yaa_c00389{bottom:247.158082px;}
.yab_c00389{bottom:247.556495px;}
.yac_c00389{bottom:247.690252px;}
.yad_c00389{bottom:247.826279px;}
.yae_c00389{bottom:248.013402px;}
.ya0_c00389{bottom:273.918000px;}
.y96_c00389{bottom:295.069583px;}
.y97_c00389{bottom:295.737465px;}
.y98_c00389{bottom:296.195543px;}
.y99_c00389{bottom:296.357108px;}
.y9a_c00389{bottom:296.992583px;}
.y9b_c00389{bottom:297.318615px;}
.y9c_c00389{bottom:297.575993px;}
.y9d_c00389{bottom:297.709598px;}
.y9e_c00389{bottom:297.955995px;}
.y9f_c00389{bottom:298.670505px;}
.y8d_c00389{bottom:318.023858px;}
.y8e_c00389{bottom:318.391290px;}
.y8f_c00389{bottom:318.898995px;}
.y90_c00389{bottom:319.237350px;}
.y91_c00389{bottom:319.684695px;}
.y92_c00389{bottom:320.187390px;}
.y93_c00389{bottom:320.683958px;}
.y94_c00389{bottom:321.161513px;}
.y95_c00389{bottom:321.541830px;}
.y84_c00389{bottom:340.976243px;}
.y85_c00389{bottom:341.423138px;}
.y86_c00389{bottom:342.023543px;}
.y87_c00389{bottom:342.522053px;}
.y88_c00389{bottom:342.790545px;}
.y89_c00389{bottom:343.326788px;}
.y8a_c00389{bottom:343.645020px;}
.y8b_c00389{bottom:343.864800px;}
.y8c_c00389{bottom:344.387400px;}
.y7b_c00389{bottom:363.928673px;}
.y7c_c00389{bottom:364.278345px;}
.y7d_c00389{bottom:364.940573px;}
.y7e_c00389{bottom:365.604653px;}
.y7f_c00389{bottom:365.693978px;}
.y80_c00389{bottom:366.091530px;}
.y81_c00389{bottom:366.728790px;}
.y82_c00389{bottom:367.412273px;}
.y83_c00389{bottom:368.452230px;}
.y73_c00389{bottom:386.343360px;}
.y74_c00389{bottom:386.816310px;}
.y75_c00389{bottom:387.104228px;}
.y76_c00389{bottom:387.855360px;}
.y77_c00389{bottom:388.409940px;}
.y78_c00389{bottom:388.828845px;}
.y79_c00389{bottom:389.618303px;}
.y7a_c00389{bottom:390.725475px;}
.y70_c00389{bottom:409.026255px;}
.y71_c00389{bottom:409.809345px;}
.y72_c00389{bottom:413.919953px;}
.y67_c00389{bottom:432.519420px;}
.y68_c00389{bottom:432.998543px;}
.y69_c00389{bottom:433.626615px;}
.y6a_c00389{bottom:434.012610px;}
.y6b_c00389{bottom:434.172698px;}
.y6c_c00389{bottom:434.360985px;}
.y6d_c00389{bottom:434.554020px;}
.y6e_c00389{bottom:435.173527px;}
.y6f_c00389{bottom:435.800460px;}
.y5e_c00389{bottom:455.202562px;}
.y5f_c00389{bottom:455.707928px;}
.y60_c00389{bottom:456.002625px;}
.y61_c00389{bottom:456.759262px;}
.y62_c00389{bottom:457.042170px;}
.y63_c00389{bottom:458.390460px;}
.y64_c00389{bottom:459.100343px;}
.y65_c00389{bottom:459.715530px;}
.y66_c00389{bottom:460.311090px;}
.y53_c00389{bottom:477.344243px;}
.y54_c00389{bottom:477.639405px;}
.y55_c00389{bottom:478.392360px;}
.y56_c00389{bottom:478.919925px;}
.y57_c00389{bottom:479.603363px;}
.y58_c00389{bottom:480.211852px;}
.y59_c00389{bottom:480.935025px;}
.y5a_c00389{bottom:481.194547px;}
.y5b_c00389{bottom:481.897830px;}
.y5c_c00389{bottom:482.656755px;}
.y5d_c00389{bottom:482.954175px;}
.y49_c00389{bottom:499.755825px;}
.y4a_c00389{bottom:500.795918px;}
.y4b_c00389{bottom:501.174098px;}
.y4c_c00389{bottom:501.541515px;}
.y4d_c00389{bottom:502.233210px;}
.y4e_c00389{bottom:503.454338px;}
.y4f_c00389{bottom:504.297622px;}
.y50_c00389{bottom:504.748028px;}
.y51_c00389{bottom:505.114433px;}
.y52_c00389{bottom:505.632795px;}
.y41_c00389{bottom:522.978675px;}
.y42_c00389{bottom:523.753628px;}
.y43_c00389{bottom:524.582505px;}
.y44_c00389{bottom:525.997065px;}
.y45_c00389{bottom:526.306058px;}
.y46_c00389{bottom:526.758495px;}
.y47_c00389{bottom:527.334383px;}
.y48_c00389{bottom:528.207180px;}
.y37_c00389{bottom:545.930783px;}
.y38_c00389{bottom:546.728423px;}
.y39_c00389{bottom:547.250160px;}
.y3a_c00389{bottom:548.080913px;}
.y3b_c00389{bottom:548.436585px;}
.y3c_c00389{bottom:549.431235px;}
.y3d_c00389{bottom:550.421677px;}
.y3e_c00389{bottom:551.132168px;}
.y3f_c00389{bottom:552.000323px;}
.y40_c00389{bottom:552.278363px;}
.y2e_c00389{bottom:568.885448px;}
.y2f_c00389{bottom:570.177525px;}
.y30_c00389{bottom:570.951510px;}
.y31_c00389{bottom:571.721963px;}
.y32_c00389{bottom:571.855433px;}
.y33_c00389{bottom:572.196180px;}
.y34_c00389{bottom:573.151740px;}
.y35_c00389{bottom:573.406035px;}
.y36_c00389{bottom:574.890690px;}
.y25_c00389{bottom:591.837998px;}
.y26_c00389{bottom:592.119038px;}
.y27_c00389{bottom:592.553805px;}
.y28_c00389{bottom:593.495543px;}
.y29_c00389{bottom:594.404948px;}
.y2a_c00389{bottom:594.749303px;}
.y2b_c00389{bottom:595.742453px;}
.y2c_c00389{bottom:596.588453px;}
.y2d_c00389{bottom:597.686175px;}
.y18_c00389{bottom:614.526000px;}
.y19_c00389{bottom:615.049170px;}
.y1a_c00389{bottom:615.089220px;}
.y1b_c00389{bottom:615.697193px;}
.y1c_c00389{bottom:616.790760px;}
.y1d_c00389{bottom:617.426835px;}
.y1e_c00389{bottom:617.961368px;}
.y1f_c00389{bottom:618.906840px;}
.y20_c00389{bottom:619.079235px;}
.y21_c00389{bottom:619.322145px;}
.y22_c00389{bottom:619.867815px;}
.y23_c00389{bottom:620.537190px;}
.y24_c00389{bottom:620.788313px;}
.y10_c00389{bottom:656.115000px;}
.y11_c00389{bottom:656.464110px;}
.y12_c00389{bottom:658.255245px;}
.y13_c00389{bottom:659.592915px;}
.y14_c00389{bottom:660.762915px;}
.y15_c00389{bottom:662.847720px;}
.y16_c00389{bottom:663.116775px;}
.y17_c00389{bottom:664.263780px;}
.y9_c00389{bottom:697.399560px;}
.ya_c00389{bottom:698.473752px;}
.yb_c00389{bottom:698.979814px;}
.yc_c00389{bottom:700.178496px;}
.yd_c00389{bottom:700.835531px;}
.ye_c00389{bottom:701.984022px;}
.yf_c00389{bottom:702.721540px;}
.y7_c00389{bottom:742.154898px;}
.y8_c00389{bottom:743.087177px;}
.y3_c00389{bottom:778.890000px;}
.y4_c00389{bottom:780.272535px;}
.y5_c00389{bottom:783.065449px;}
.y6_c00389{bottom:784.276044px;}
.y1_c00389{bottom:835.932000px;}
.y2_c00389{bottom:839.264100px;}
.hd_c00389{height:21.000000px;}
.he_c00389{height:49.351999px;}
.h10_c00389{height:50.402041px;}
.h11_c00389{height:52.502126px;}
.hf_c00389{height:54.602211px;}
.ha_c00389{height:63.007087px;}
.h8_c00389{height:69.307796px;}
.hb_c00389{height:70.357914px;}
.h6_c00389{height:70.381650px;}
.h7_c00389{height:71.408032px;}
.hc_c00389{height:72.458150px;}
.h9_c00389{height:74.558386px;}
.h4_c00389{height:98.717814px;}
.h5_c00389{height:118.671414px;}
.h3_c00389{height:138.625015px;}
.h2_c00389{height:140.728137px;}
.h0_c00389{height:1008.450000px;}
.h1_c00389{height:1008.750000px;}
.w1_c00389{width:689.250000px;}
.w0_c00389{width:689.550000px;}
.x0_c00389{left:0.000000px;}
.x84_c00389{left:156.092969px;}
.x6c_c00389{left:157.239990px;}
.x3_c00389{left:158.530500px;}
.x60_c00389{left:159.696098px;}
.x22_c00389{left:162.951750px;}
.x17_c00389{left:165.145500px;}
.x85_c00389{left:167.755469px;}
.x9a_c00389{left:169.378218px;}
.x74_c00389{left:180.715500px;}
.x9_c00389{left:182.827028px;}
.x23_c00389{left:184.588402px;}
.x42_c00389{left:189.430800px;}
.x75_c00389{left:193.137000px;}
.x18_c00389{left:200.023500px;}
.x19_c00389{left:202.693500px;}
.x9b_c00389{left:207.466555px;}
.x86_c00389{left:208.531469px;}
.x49_c00389{left:210.465930px;}
.x64_c00389{left:211.783013px;}
.x61_c00389{left:215.594970px;}
.x24_c00389{left:218.073915px;}
.x30_c00389{left:220.236128px;}
.x1_c00389{left:222.280500px;}
.x50_c00389{left:224.750708px;}
.x94_c00389{left:225.777187px;}
.x4_c00389{left:231.295500px;}
.x8f_c00389{left:233.896846px;}
.x56_c00389{left:235.854465px;}
.x3c_c00389{left:238.061970px;}
.x87_c00389{left:239.305469px;}
.x6d_c00389{left:240.674243px;}
.x1a_c00389{left:243.225000px;}
.xf_c00389{left:244.827000px;}
.x76_c00389{left:250.647000px;}
.x43_c00389{left:252.130613px;}
.x2a_c00389{left:255.365873px;}
.x10_c00389{left:256.464000px;}
.x31_c00389{left:257.519190px;}
.x7_c00389{left:259.206546px;}
.x3d_c00389{left:265.074375px;}
.x5d_c00389{left:266.082645px;}
.x77_c00389{left:267.118500px;}
.x88_c00389{left:270.337469px;}
.x7b_c00389{left:274.152306px;}
.x65_c00389{left:275.236673px;}
.x37_c00389{left:277.786688px;}
.x25_c00389{left:290.458575px;}
.x72_c00389{left:291.600000px;}
.x95_c00389{left:293.020080px;}
.x89_c00389{left:294.635969px;}
.xa_c00389{left:295.693244px;}
.x6e_c00389{left:297.918750px;}
.x51_c00389{left:303.330465px;}
.x73_c00389{left:304.830000px;}
.x4a_c00389{left:306.060668px;}
.x9c_c00389{left:307.910473px;}
.x8a_c00389{left:309.545969px;}
.x8_c00389{left:310.959015px;}
.x7c_c00389{left:312.500955px;}
.x11_c00389{left:316.168500px;}
.x66_c00389{left:317.598128px;}
.x58_c00389{left:319.803585px;}
.x96_c00389{left:326.565783px;}
.x4b_c00389{left:331.722698px;}
.x8b_c00389{left:335.138969px;}
.xa5_c00389{left:337.050567px;}
.x3e_c00389{left:340.683000px;}
.x32_c00389{left:342.315473px;}
.x7d_c00389{left:350.569118px;}
.x52_c00389{left:351.668550px;}
.x44_c00389{left:353.068658px;}
.x1b_c00389{left:358.534500px;}
.x12_c00389{left:360.757500px;}
.x90_c00389{left:361.922538px;}
.x2b_c00389{left:365.730038px;}
.x59_c00389{left:370.278623px;}
.x53_c00389{left:371.643143px;}
.x67_c00389{left:373.527000px;}
.x2c_c00389{left:375.228173px;}
.x5_c00389{left:378.291000px;}
.xb_c00389{left:381.289866px;}
.x26_c00389{left:386.845455px;}
.x2_c00389{left:388.885500px;}
.x1c_c00389{left:394.170000px;}
.x6f_c00389{left:397.565213px;}
.x13_c00389{left:399.757500px;}
.x38_c00389{left:400.892033px;}
.x45_c00389{left:403.836953px;}
.x5a_c00389{left:408.407918px;}
.x9d_c00389{left:409.857391px;}
.x97_c00389{left:411.040513px;}
.x33_c00389{left:413.326530px;}
.x91_c00389{left:416.413553px;}
.x7e_c00389{left:417.794010px;}
.x54_c00389{left:419.169615px;}
.x9e_c00389{left:420.241986px;}
.xc_c00389{left:428.269841px;}
.x39_c00389{left:433.255028px;}
.x68_c00389{left:436.446615px;}
.x70_c00389{left:438.304988px;}
.x6_c00389{left:442.006500px;}
.x98_c00389{left:443.738716px;}
.x5e_c00389{left:444.810533px;}
.x92_c00389{left:448.502472px;}
.x78_c00389{left:451.261500px;}
.x4c_c00389{left:454.316055px;}
.x1d_c00389{left:457.201500px;}
.x8c_c00389{left:458.564968px;}
.x9f_c00389{left:460.730350px;}
.x27_c00389{left:463.257750px;}
.x2d_c00389{left:467.850068px;}
.x14_c00389{left:469.251000px;}
.x71_c00389{left:470.466863px;}
.x3a_c00389{left:474.348135px;}
.x7f_c00389{left:476.933970px;}
.x15_c00389{left:478.219500px;}
.x5b_c00389{left:480.242738px;}
.x1e_c00389{left:484.888500px;}
.x2e_c00389{left:486.003338px;}
.x3f_c00389{left:488.112705px;}
.xa0_c00389{left:490.421620px;}
.x62_c00389{left:493.149585px;}
.x55_c00389{left:496.678260px;}
.x69_c00389{left:498.557640px;}
.xa6_c00389{left:502.032565px;}
.x80_c00389{left:503.665227px;}
.x79_c00389{left:505.539000px;}
.xa1_c00389{left:508.192282px;}
.xd_c00389{left:510.356150px;}
.x5f_c00389{left:513.181163px;}
.x16_c00389{left:516.453000px;}
.x4d_c00389{left:518.845425px;}
.x40_c00389{left:520.240178px;}
.x1f_c00389{left:521.266500px;}
.x7a_c00389{left:522.558000px;}
.xa2_c00389{left:524.959431px;}
.x28_c00389{left:528.359708px;}
.x34_c00389{left:534.823853px;}
.x3b_c00389{left:536.735580px;}
.x81_c00389{left:543.050376px;}
.x46_c00389{left:544.241753px;}
.x41_c00389{left:546.367560px;}
.x6a_c00389{left:558.200895px;}
.xe_c00389{left:563.072666px;}
.x20_c00389{left:565.891500px;}
.x93_c00389{left:571.983231px;}
.x4e_c00389{left:574.761278px;}
.xa7_c00389{left:578.168754px;}
.x5c_c00389{left:580.960290px;}
.x21_c00389{left:582.633000px;}
.x8d_c00389{left:584.386468px;}
.x63_c00389{left:586.051350px;}
.x82_c00389{left:587.362971px;}
.xa3_c00389{left:589.509511px;}
.x2f_c00389{left:592.081935px;}
.x8e_c00389{left:594.631468px;}
.x35_c00389{left:596.801775px;}
.x99_c00389{left:600.343312px;}
.x83_c00389{left:604.650309px;}
.x6b_c00389{left:605.760390px;}
.x47_c00389{left:607.439588px;}
.x29_c00389{left:612.843750px;}
.x36_c00389{left:616.638068px;}
.xa4_c00389{left:618.398268px;}
.x4f_c00389{left:628.968540px;}
.x48_c00389{left:632.268713px;}
.xa8_c00389{left:633.522254px;}
.x57_c00389{left:646.925790px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.fsb_c00389{font-size:18.666667pt;}
.fsc_c00389{font-size:43.868443pt;}
.fse_c00389{font-size:44.801814pt;}
.fsf_c00389{font-size:46.668557pt;}
.fsd_c00389{font-size:48.535299pt;}
.fs8_c00389{font-size:56.006300pt;}
.fs6_c00389{font-size:61.606930pt;}
.fs9_c00389{font-size:62.540368pt;}
.fs4_c00389{font-size:62.561467pt;}
.fs5_c00389{font-size:63.473806pt;}
.fsa_c00389{font-size:64.407245pt;}
.fs7_c00389{font-size:66.274121pt;}
.fs2_c00389{font-size:87.749168pt;}
.fs3_c00389{font-size:105.485702pt;}
.fs1_c00389{font-size:123.222236pt;}
.fs0_c00389{font-size:125.091677pt;}
.y0_c00389{bottom:0.000000pt;}
.yff_c00389{bottom:120.958055pt;}
.y100_c00389{bottom:121.131361pt;}
.y101_c00389{bottom:121.363364pt;}
.y102_c00389{bottom:121.562683pt;}
.y103_c00389{bottom:121.939160pt;}
.y104_c00389{bottom:122.148233pt;}
.y105_c00389{bottom:122.743227pt;}
.y106_c00389{bottom:122.940205pt;}
.y107_c00389{bottom:123.320077pt;}
.y108_c00389{bottom:123.546969pt;}
.y109_c00389{bottom:123.861161pt;}
.y10a_c00389{bottom:123.978267pt;}
.y10b_c00389{bottom:124.254652pt;}
.yee_c00389{bottom:137.040169pt;}
.yef_c00389{bottom:137.311540pt;}
.yf0_c00389{bottom:137.445419pt;}
.yf1_c00389{bottom:137.813184pt;}
.yf2_c00389{bottom:137.941916pt;}
.yf3_c00389{bottom:138.024417pt;}
.yf4_c00389{bottom:138.471733pt;}
.yf5_c00389{bottom:138.749319pt;}
.yf6_c00389{bottom:138.823061pt;}
.yf7_c00389{bottom:139.110965pt;}
.yf8_c00389{bottom:139.321827pt;}
.yf9_c00389{bottom:139.410580pt;}
.yfa_c00389{bottom:139.447991pt;}
.yfb_c00389{bottom:139.567460pt;}
.yfc_c00389{bottom:139.709931pt;}
.yfd_c00389{bottom:140.026523pt;}
.yfe_c00389{bottom:140.232297pt;}
.ye0_c00389{bottom:152.641976pt;}
.ye1_c00389{bottom:153.123836pt;}
.ye2_c00389{bottom:153.149963pt;}
.ye3_c00389{bottom:153.258369pt;}
.ye4_c00389{bottom:153.747911pt;}
.ye5_c00389{bottom:154.045612pt;}
.ye6_c00389{bottom:154.401016pt;}
.ye7_c00389{bottom:154.797416pt;}
.ye8_c00389{bottom:155.088337pt;}
.ye9_c00389{bottom:155.534061pt;}
.yea_c00389{bottom:155.918268pt;}
.yeb_c00389{bottom:156.323308pt;}
.yec_c00389{bottom:156.479852pt;}
.yed_c00389{bottom:156.762768pt;}
.yce_c00389{bottom:168.240075pt;}
.ycf_c00389{bottom:168.419015pt;}
.yd0_c00389{bottom:168.904191pt;}
.yd1_c00389{bottom:169.081139pt;}
.yd2_c00389{bottom:169.255735pt;}
.yd3_c00389{bottom:169.638316pt;}
.yd4_c00389{bottom:169.952653pt;}
.yd5_c00389{bottom:170.156415pt;}
.yd6_c00389{bottom:170.558140pt;}
.yd7_c00389{bottom:170.689684pt;}
.yd8_c00389{bottom:171.003733pt;}
.yd9_c00389{bottom:171.097255pt;}
.yda_c00389{bottom:171.219317pt;}
.ydb_c00389{bottom:171.436449pt;}
.ydc_c00389{bottom:171.787717pt;}
.ydd_c00389{bottom:171.933172pt;}
.yde_c00389{bottom:172.212931pt;}
.ydf_c00389{bottom:172.812524pt;}
.ybd_c00389{bottom:184.320392pt;}
.ybe_c00389{bottom:184.413692pt;}
.ybf_c00389{bottom:184.739900pt;}
.yc0_c00389{bottom:184.869536pt;}
.yc1_c00389{bottom:184.986092pt;}
.yc2_c00389{bottom:185.234348pt;}
.yc3_c00389{bottom:185.428736pt;}
.yc4_c00389{bottom:185.548016pt;}
.yc5_c00389{bottom:185.752760pt;}
.yc6_c00389{bottom:185.953868pt;}
.yc7_c00389{bottom:186.297584pt;}
.yc8_c00389{bottom:186.413708pt;}
.yc9_c00389{bottom:186.567320pt;}
.yca_c00389{bottom:186.740168pt;}
.ycb_c00389{bottom:187.746740pt;}
.ycc_c00389{bottom:187.828700pt;}
.ycd_c00389{bottom:187.999580pt;}
.yaf_c00389{bottom:200.400616pt;}
.yb0_c00389{bottom:201.027103pt;}
.yb1_c00389{bottom:201.232827pt;}
.yb2_c00389{bottom:201.574285pt;}
.yb3_c00389{bottom:201.912167pt;}
.yb4_c00389{bottom:202.378149pt;}
.yb5_c00389{bottom:202.509971pt;}
.yb6_c00389{bottom:202.757856pt;}
.yb7_c00389{bottom:203.036428pt;}
.yb8_c00389{bottom:203.274280pt;}
.yb9_c00389{bottom:203.624031pt;}
.yba_c00389{bottom:203.794976pt;}
.ybb_c00389{bottom:204.018535pt;}
.ybc_c00389{bottom:204.172835pt;}
.ya1_c00389{bottom:216.961333pt;}
.ya2_c00389{bottom:217.060705pt;}
.ya3_c00389{bottom:217.520785pt;}
.ya4_c00389{bottom:217.652557pt;}
.ya5_c00389{bottom:218.749621pt;}
.ya6_c00389{bottom:218.872897pt;}
.ya7_c00389{bottom:219.125701pt;}
.ya8_c00389{bottom:219.345949pt;}
.ya9_c00389{bottom:219.559921pt;}
.yaa_c00389{bottom:219.696073pt;}
.yab_c00389{bottom:220.050217pt;}
.yac_c00389{bottom:220.169113pt;}
.yad_c00389{bottom:220.290025pt;}
.yae_c00389{bottom:220.456357pt;}
.ya0_c00389{bottom:243.482667pt;}
.y96_c00389{bottom:262.284073pt;}
.y97_c00389{bottom:262.877747pt;}
.y98_c00389{bottom:263.284927pt;}
.y99_c00389{bottom:263.428540pt;}
.y9a_c00389{bottom:263.993407pt;}
.y9b_c00389{bottom:264.283213pt;}
.y9c_c00389{bottom:264.511993pt;}
.y9d_c00389{bottom:264.630753pt;}
.y9e_c00389{bottom:264.849773pt;}
.y9f_c00389{bottom:265.484893pt;}
.y8d_c00389{bottom:282.687873pt;}
.y8e_c00389{bottom:283.014480pt;}
.y8f_c00389{bottom:283.465773pt;}
.y90_c00389{bottom:283.766533pt;}
.y91_c00389{bottom:284.164173pt;}
.y92_c00389{bottom:284.611013pt;}
.y93_c00389{bottom:285.052407pt;}
.y94_c00389{bottom:285.476900pt;}
.y95_c00389{bottom:285.814960pt;}
.y84_c00389{bottom:303.089993pt;}
.y85_c00389{bottom:303.487233pt;}
.y86_c00389{bottom:304.020927pt;}
.y87_c00389{bottom:304.464047pt;}
.y88_c00389{bottom:304.702707pt;}
.y89_c00389{bottom:305.179367pt;}
.y8a_c00389{bottom:305.462240pt;}
.y8b_c00389{bottom:305.657600pt;}
.y8c_c00389{bottom:306.122133pt;}
.y7b_c00389{bottom:323.492153pt;}
.y7c_c00389{bottom:323.802973pt;}
.y7d_c00389{bottom:324.391620pt;}
.y7e_c00389{bottom:324.981913pt;}
.y7f_c00389{bottom:325.061313pt;}
.y80_c00389{bottom:325.414693pt;}
.y81_c00389{bottom:325.981147pt;}
.y82_c00389{bottom:326.588687pt;}
.y83_c00389{bottom:327.513093pt;}
.y73_c00389{bottom:343.416320pt;}
.y74_c00389{bottom:343.836720pt;}
.y75_c00389{bottom:344.092647pt;}
.y76_c00389{bottom:344.760320pt;}
.y77_c00389{bottom:345.253280pt;}
.y78_c00389{bottom:345.625640pt;}
.y79_c00389{bottom:346.327380pt;}
.y7a_c00389{bottom:347.311533pt;}
.y70_c00389{bottom:363.578893pt;}
.y71_c00389{bottom:364.274973pt;}
.y72_c00389{bottom:367.928847pt;}
.y67_c00389{bottom:384.461707pt;}
.y68_c00389{bottom:384.887593pt;}
.y69_c00389{bottom:385.445880pt;}
.y6a_c00389{bottom:385.788987pt;}
.y6b_c00389{bottom:385.931287pt;}
.y6c_c00389{bottom:386.098653pt;}
.y6d_c00389{bottom:386.270240pt;}
.y6e_c00389{bottom:386.820913pt;}
.y6f_c00389{bottom:387.378187pt;}
.y5e_c00389{bottom:404.624500pt;}
.y5f_c00389{bottom:405.073713pt;}
.y60_c00389{bottom:405.335667pt;}
.y61_c00389{bottom:406.008233pt;}
.y62_c00389{bottom:406.259707pt;}
.y63_c00389{bottom:407.458187pt;}
.y64_c00389{bottom:408.089193pt;}
.y65_c00389{bottom:408.636027pt;}
.y66_c00389{bottom:409.165413pt;}
.y53_c00389{bottom:424.305993pt;}
.y54_c00389{bottom:424.568360pt;}
.y55_c00389{bottom:425.237653pt;}
.y56_c00389{bottom:425.706600pt;}
.y57_c00389{bottom:426.314100pt;}
.y58_c00389{bottom:426.854980pt;}
.y59_c00389{bottom:427.497800pt;}
.y5a_c00389{bottom:427.728487pt;}
.y5b_c00389{bottom:428.353627pt;}
.y5c_c00389{bottom:429.028227pt;}
.y5d_c00389{bottom:429.292600pt;}
.y49_c00389{bottom:444.227400pt;}
.y4a_c00389{bottom:445.151927pt;}
.y4b_c00389{bottom:445.488087pt;}
.y4c_c00389{bottom:445.814680pt;}
.y4d_c00389{bottom:446.429520pt;}
.y4e_c00389{bottom:447.514967pt;}
.y4f_c00389{bottom:448.264553pt;}
.y50_c00389{bottom:448.664913pt;}
.y51_c00389{bottom:448.990607pt;}
.y52_c00389{bottom:449.451373pt;}
.y41_c00389{bottom:464.869933pt;}
.y42_c00389{bottom:465.558780pt;}
.y43_c00389{bottom:466.295560pt;}
.y44_c00389{bottom:467.552947pt;}
.y45_c00389{bottom:467.827607pt;}
.y46_c00389{bottom:468.229773pt;}
.y47_c00389{bottom:468.741673pt;}
.y48_c00389{bottom:469.517493pt;}
.y37_c00389{bottom:485.271807pt;}
.y38_c00389{bottom:485.980820pt;}
.y39_c00389{bottom:486.444587pt;}
.y3a_c00389{bottom:487.183033pt;}
.y3b_c00389{bottom:487.499187pt;}
.y3c_c00389{bottom:488.383320pt;}
.y3d_c00389{bottom:489.263713pt;}
.y3e_c00389{bottom:489.895260pt;}
.y3f_c00389{bottom:490.666953pt;}
.y40_c00389{bottom:490.914100pt;}
.y2e_c00389{bottom:505.675953pt;}
.y2f_c00389{bottom:506.824467pt;}
.y30_c00389{bottom:507.512453pt;}
.y31_c00389{bottom:508.197300pt;}
.y32_c00389{bottom:508.315940pt;}
.y33_c00389{bottom:508.618827pt;}
.y34_c00389{bottom:509.468213pt;}
.y35_c00389{bottom:509.694253pt;}
.y36_c00389{bottom:511.013947pt;}
.y25_c00389{bottom:526.078220pt;}
.y26_c00389{bottom:526.328033pt;}
.y27_c00389{bottom:526.714493pt;}
.y28_c00389{bottom:527.551593pt;}
.y29_c00389{bottom:528.359953pt;}
.y2a_c00389{bottom:528.666047pt;}
.y2b_c00389{bottom:529.548847pt;}
.y2c_c00389{bottom:530.300847pt;}
.y2d_c00389{bottom:531.276600pt;}
.y18_c00389{bottom:546.245333pt;}
.y19_c00389{bottom:546.710373pt;}
.y1a_c00389{bottom:546.745973pt;}
.y1b_c00389{bottom:547.286393pt;}
.y1c_c00389{bottom:548.258453pt;}
.y1d_c00389{bottom:548.823853pt;}
.y1e_c00389{bottom:549.298993pt;}
.y1f_c00389{bottom:550.139413pt;}
.y20_c00389{bottom:550.292653pt;}
.y21_c00389{bottom:550.508573pt;}
.y22_c00389{bottom:550.993613pt;}
.y23_c00389{bottom:551.588613pt;}
.y24_c00389{bottom:551.811833pt;}
.y10_c00389{bottom:583.213333pt;}
.y11_c00389{bottom:583.523653pt;}
.y12_c00389{bottom:585.115773pt;}
.y13_c00389{bottom:586.304813pt;}
.y14_c00389{bottom:587.344813pt;}
.y15_c00389{bottom:589.197973pt;}
.y16_c00389{bottom:589.437133pt;}
.y17_c00389{bottom:590.456693pt;}
.y9_c00389{bottom:619.910720pt;}
.ya_c00389{bottom:620.865557pt;}
.yb_c00389{bottom:621.315391pt;}
.yc_c00389{bottom:622.380885pt;}
.yd_c00389{bottom:622.964916pt;}
.ye_c00389{bottom:623.985797pt;}
.yf_c00389{bottom:624.641369pt;}
.y7_c00389{bottom:659.693243pt;}
.y8_c00389{bottom:660.521935pt;}
.y3_c00389{bottom:692.346667pt;}
.y4_c00389{bottom:693.575587pt;}
.y5_c00389{bottom:696.058177pt;}
.y6_c00389{bottom:697.134261pt;}
.y1_c00389{bottom:743.050667pt;}
.y2_c00389{bottom:746.012533pt;}
.hd_c00389{height:18.666667pt;}
.he_c00389{height:43.868443pt;}
.h10_c00389{height:44.801814pt;}
.h11_c00389{height:46.668557pt;}
.hf_c00389{height:48.535299pt;}
.ha_c00389{height:56.006300pt;}
.h8_c00389{height:61.606930pt;}
.hb_c00389{height:62.540368pt;}
.h6_c00389{height:62.561467pt;}
.h7_c00389{height:63.473806pt;}
.hc_c00389{height:64.407245pt;}
.h9_c00389{height:66.274121pt;}
.h4_c00389{height:87.749168pt;}
.h5_c00389{height:105.485702pt;}
.h3_c00389{height:123.222236pt;}
.h2_c00389{height:125.091677pt;}
.h0_c00389{height:896.400000pt;}
.h1_c00389{height:896.666667pt;}
.w1_c00389{width:612.666667pt;}
.w0_c00389{width:612.933333pt;}
.x0_c00389{left:0.000000pt;}
.x84_c00389{left:138.749305pt;}
.x6c_c00389{left:139.768880pt;}
.x3_c00389{left:140.916000pt;}
.x60_c00389{left:141.952087pt;}
.x22_c00389{left:144.846000pt;}
.x17_c00389{left:146.796000pt;}
.x85_c00389{left:149.115972pt;}
.x9a_c00389{left:150.558416pt;}
.x74_c00389{left:160.636000pt;}
.x9_c00389{left:162.512913pt;}
.x23_c00389{left:164.078580pt;}
.x42_c00389{left:168.382933pt;}
.x75_c00389{left:171.677333pt;}
.x18_c00389{left:177.798667pt;}
.x19_c00389{left:180.172000pt;}
.x9b_c00389{left:184.414716pt;}
.x86_c00389{left:185.361305pt;}
.x49_c00389{left:187.080827pt;}
.x64_c00389{left:188.251567pt;}
.x61_c00389{left:191.639973pt;}
.x24_c00389{left:193.843480pt;}
.x30_c00389{left:195.765447pt;}
.x1_c00389{left:197.582667pt;}
.x50_c00389{left:199.778407pt;}
.x94_c00389{left:200.690833pt;}
.x4_c00389{left:205.596000pt;}
.x8f_c00389{left:207.908308pt;}
.x56_c00389{left:209.648413pt;}
.x3c_c00389{left:211.610640pt;}
.x87_c00389{left:212.715972pt;}
.x6d_c00389{left:213.932660pt;}
.x1a_c00389{left:216.200000pt;}
.xf_c00389{left:217.624000pt;}
.x76_c00389{left:222.797333pt;}
.x43_c00389{left:224.116100pt;}
.x2a_c00389{left:226.991887pt;}
.x10_c00389{left:227.968000pt;}
.x31_c00389{left:228.905947pt;}
.x7_c00389{left:230.405819pt;}
.x3d_c00389{left:235.621667pt;}
.x5d_c00389{left:236.517907pt;}
.x77_c00389{left:237.438667pt;}
.x88_c00389{left:240.299972pt;}
.x7b_c00389{left:243.690939pt;}
.x65_c00389{left:244.654820pt;}
.x37_c00389{left:246.921500pt;}
.x25_c00389{left:258.185400pt;}
.x72_c00389{left:259.200000pt;}
.x95_c00389{left:260.462293pt;}
.x89_c00389{left:261.898639pt;}
.xa_c00389{left:262.838439pt;}
.x6e_c00389{left:264.816667pt;}
.x51_c00389{left:269.627080pt;}
.x73_c00389{left:270.960000pt;}
.x4a_c00389{left:272.053927pt;}
.x9c_c00389{left:273.698199pt;}
.x8a_c00389{left:275.151972pt;}
.x8_c00389{left:276.408013pt;}
.x7c_c00389{left:277.778627pt;}
.x11_c00389{left:281.038667pt;}
.x66_c00389{left:282.309447pt;}
.x58_c00389{left:284.269853pt;}
.x96_c00389{left:290.280696pt;}
.x4b_c00389{left:294.864620pt;}
.x8b_c00389{left:297.901305pt;}
.xa5_c00389{left:299.600504pt;}
.x3e_c00389{left:302.829333pt;}
.x32_c00389{left:304.280420pt;}
.x7d_c00389{left:311.616993pt;}
.x52_c00389{left:312.594267pt;}
.x44_c00389{left:313.838807pt;}
.x1b_c00389{left:318.697333pt;}
.x12_c00389{left:320.673333pt;}
.x90_c00389{left:321.708923pt;}
.x2b_c00389{left:325.093367pt;}
.x59_c00389{left:329.136553pt;}
.x53_c00389{left:330.349460pt;}
.x67_c00389{left:332.024000pt;}
.x2c_c00389{left:333.536153pt;}
.x5_c00389{left:336.258667pt;}
.xb_c00389{left:338.924325pt;}
.x26_c00389{left:343.862627pt;}
.x2_c00389{left:345.676000pt;}
.x1c_c00389{left:350.373333pt;}
.x6f_c00389{left:353.391300pt;}
.x13_c00389{left:355.340000pt;}
.x38_c00389{left:356.348473pt;}
.x45_c00389{left:358.966180pt;}
.x5a_c00389{left:363.029260pt;}
.x9d_c00389{left:364.317681pt;}
.x97_c00389{left:365.369345pt;}
.x33_c00389{left:367.401360pt;}
.x91_c00389{left:370.145380pt;}
.x7e_c00389{left:371.372453pt;}
.x54_c00389{left:372.595213pt;}
.x9e_c00389{left:373.548432pt;}
.xc_c00389{left:380.684303pt;}
.x39_c00389{left:385.115580pt;}
.x68_c00389{left:387.952547pt;}
.x70_c00389{left:389.604433pt;}
.x6_c00389{left:392.894667pt;}
.x98_c00389{left:394.434415pt;}
.x5e_c00389{left:395.387140pt;}
.x92_c00389{left:398.668864pt;}
.x78_c00389{left:401.121333pt;}
.x4c_c00389{left:403.836493pt;}
.x1d_c00389{left:406.401333pt;}
.x8c_c00389{left:407.613305pt;}
.x9f_c00389{left:409.538089pt;}
.x27_c00389{left:411.784667pt;}
.x2d_c00389{left:415.866727pt;}
.x14_c00389{left:417.112000pt;}
.x71_c00389{left:418.192767pt;}
.x3a_c00389{left:421.642787pt;}
.x7f_c00389{left:423.941307pt;}
.x15_c00389{left:425.084000pt;}
.x5b_c00389{left:426.882433pt;}
.x1e_c00389{left:431.012000pt;}
.x2e_c00389{left:432.002967pt;}
.x3f_c00389{left:433.877960pt;}
.xa0_c00389{left:435.930329pt;}
.x62_c00389{left:438.355187pt;}
.x55_c00389{left:441.491787pt;}
.x69_c00389{left:443.162347pt;}
.xa6_c00389{left:446.251169pt;}
.x80_c00389{left:447.702424pt;}
.x79_c00389{left:449.368000pt;}
.xa1_c00389{left:451.726473pt;}
.xd_c00389{left:453.649911pt;}
.x5f_c00389{left:456.161033pt;}
.x16_c00389{left:459.069333pt;}
.x4d_c00389{left:461.195933pt;}
.x40_c00389{left:462.435713pt;}
.x1f_c00389{left:463.348000pt;}
.x7a_c00389{left:464.496000pt;}
.xa2_c00389{left:466.630605pt;}
.x28_c00389{left:469.653073pt;}
.x34_c00389{left:475.398980pt;}
.x3b_c00389{left:477.098293pt;}
.x81_c00389{left:482.711445pt;}
.x46_c00389{left:483.770447pt;}
.x41_c00389{left:485.660053pt;}
.x6a_c00389{left:496.178573pt;}
.xe_c00389{left:500.509036pt;}
.x20_c00389{left:503.014667pt;}
.x93_c00389{left:508.429539pt;}
.x4e_c00389{left:510.898913pt;}
.xa7_c00389{left:513.927781pt;}
.x5c_c00389{left:516.409147pt;}
.x21_c00389{left:517.896000pt;}
.x8d_c00389{left:519.454639pt;}
.x63_c00389{left:520.934533pt;}
.x82_c00389{left:522.100419pt;}
.xa3_c00389{left:524.008455pt;}
.x2f_c00389{left:526.295053pt;}
.x8e_c00389{left:528.561305pt;}
.x35_c00389{left:530.490467pt;}
.x99_c00389{left:533.638500pt;}
.x83_c00389{left:537.466941pt;}
.x6b_c00389{left:538.453680pt;}
.x47_c00389{left:539.946300pt;}
.x29_c00389{left:544.750000pt;}
.x36_c00389{left:548.122727pt;}
.xa4_c00389{left:549.687349pt;}
.x4f_c00389{left:559.083147pt;}
.x48_c00389{left:562.016633pt;}
.xa8_c00389{left:563.130892pt;}
.x57_c00389{left:575.045147pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m130_c00390{transform:matrix(0.029403,-0.000353,0.003000,0.249982,0,0);-ms-transform:matrix(0.029403,-0.000353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.029403,-0.000353,0.003000,0.249982,0,0);}
.m132_c00390{transform:matrix(0.043102,-0.000517,0.003000,0.249982,0,0);-ms-transform:matrix(0.043102,-0.000517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.043102,-0.000517,0.003000,0.249982,0,0);}
.m13_c00390{transform:matrix(0.085573,-0.001112,0.003250,0.249979,0,0);-ms-transform:matrix(0.085573,-0.001112,0.003250,0.249979,0,0);-webkit-transform:matrix(0.085573,-0.001112,0.003250,0.249979,0,0);}
.m48_c00390{transform:matrix(0.086238,-0.001121,0.003250,0.249979,0,0);-ms-transform:matrix(0.086238,-0.001121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.086238,-0.001121,0.003250,0.249979,0,0);}
.mba_c00390{transform:matrix(0.087618,-0.001139,0.003250,0.249979,0,0);-ms-transform:matrix(0.087618,-0.001139,0.003250,0.249979,0,0);-webkit-transform:matrix(0.087618,-0.001139,0.003250,0.249979,0,0);}
.mbf_c00390{transform:matrix(0.089672,-0.001166,0.003250,0.249979,0,0);-ms-transform:matrix(0.089672,-0.001166,0.003250,0.249979,0,0);-webkit-transform:matrix(0.089672,-0.001166,0.003250,0.249979,0,0);}
.md2_c00390{transform:matrix(0.092262,-0.001199,0.003250,0.249979,0,0);-ms-transform:matrix(0.092262,-0.001199,0.003250,0.249979,0,0);-webkit-transform:matrix(0.092262,-0.001199,0.003250,0.249979,0,0);}
.mb1_c00390{transform:matrix(0.093687,-0.001218,0.003250,0.249979,0,0);-ms-transform:matrix(0.093687,-0.001218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.093687,-0.001218,0.003250,0.249979,0,0);}
.m7d_c00390{transform:matrix(0.095432,-0.001241,0.003250,0.249979,0,0);-ms-transform:matrix(0.095432,-0.001241,0.003250,0.249979,0,0);-webkit-transform:matrix(0.095432,-0.001241,0.003250,0.249979,0,0);}
.ma2_c00390{transform:matrix(0.096572,-0.001255,0.003250,0.249979,0,0);-ms-transform:matrix(0.096572,-0.001255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.096572,-0.001255,0.003250,0.249979,0,0);}
.m5e_c00390{transform:matrix(0.105731,-0.001375,0.003250,0.249979,0,0);-ms-transform:matrix(0.105731,-0.001375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.105731,-0.001375,0.003250,0.249979,0,0);}
.ma7_c00390{transform:matrix(0.125299,-0.001629,0.003250,0.249979,0,0);-ms-transform:matrix(0.125299,-0.001629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.125299,-0.001629,0.003250,0.249979,0,0);}
.m72_c00390{transform:matrix(0.135234,-0.001758,0.003250,0.249979,0,0);-ms-transform:matrix(0.135234,-0.001758,0.003250,0.249979,0,0);-webkit-transform:matrix(0.135234,-0.001758,0.003250,0.249979,0,0);}
.mc9_c00390{transform:matrix(0.136958,-0.001780,0.003250,0.249979,0,0);-ms-transform:matrix(0.136958,-0.001780,0.003250,0.249979,0,0);-webkit-transform:matrix(0.136958,-0.001780,0.003250,0.249979,0,0);}
.mcb_c00390{transform:matrix(0.142853,-0.001857,0.003250,0.249979,0,0);-ms-transform:matrix(0.142853,-0.001857,0.003250,0.249979,0,0);-webkit-transform:matrix(0.142853,-0.001857,0.003250,0.249979,0,0);}
.m8c_c00390{transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);-ms-transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.143973,-0.001872,0.003250,0.249979,0,0);}
.md4_c00390{transform:matrix(0.145638,-0.001893,0.003250,0.249979,0,0);-ms-transform:matrix(0.145638,-0.001893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145638,-0.001893,0.003250,0.249979,0,0);}
.mb9_c00390{transform:matrix(0.146553,-0.001905,0.003250,0.249979,0,0);-ms-transform:matrix(0.146553,-0.001905,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146553,-0.001905,0.003250,0.249979,0,0);}
.m96_c00390{transform:matrix(0.146638,-0.001906,0.003250,0.249979,0,0);-ms-transform:matrix(0.146638,-0.001906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.146638,-0.001906,0.003250,0.249979,0,0);}
.m4_c00390{transform:matrix(0.149422,-0.001942,0.003250,0.249979,0,0);-ms-transform:matrix(0.149422,-0.001942,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149422,-0.001942,0.003250,0.249979,0,0);}
.mb8_c00390{transform:matrix(0.150417,-0.001955,0.003250,0.249979,0,0);-ms-transform:matrix(0.150417,-0.001955,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150417,-0.001955,0.003250,0.249979,0,0);}
.m9e_c00390{transform:matrix(0.151147,-0.001965,0.003250,0.249979,0,0);-ms-transform:matrix(0.151147,-0.001965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151147,-0.001965,0.003250,0.249979,0,0);}
.m57_c00390{transform:matrix(0.151237,-0.001966,0.003250,0.249979,0,0);-ms-transform:matrix(0.151237,-0.001966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151237,-0.001966,0.003250,0.249979,0,0);}
.mdc_c00390{transform:matrix(0.151807,-0.001973,0.003250,0.249979,0,0);-ms-transform:matrix(0.151807,-0.001973,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151807,-0.001973,0.003250,0.249979,0,0);}
.m93_c00390{transform:matrix(0.152587,-0.001984,0.003250,0.249979,0,0);-ms-transform:matrix(0.152587,-0.001984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152587,-0.001984,0.003250,0.249979,0,0);}
.m14_c00390{transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);-ms-transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);}
.m3d_c00390{transform:matrix(0.154502,-0.002009,0.003250,0.249979,0,0);-ms-transform:matrix(0.154502,-0.002009,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154502,-0.002009,0.003250,0.249979,0,0);}
.m74_c00390{transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-ms-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);}
.m21_c00390{transform:matrix(0.157522,-0.002048,0.003250,0.249979,0,0);-ms-transform:matrix(0.157522,-0.002048,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157522,-0.002048,0.003250,0.249979,0,0);}
.m11c_c00390{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);}
.m111_c00390{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);}
.md_c00390{transform:matrix(0.159532,-0.002074,0.003250,0.249979,0,0);-ms-transform:matrix(0.159532,-0.002074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159532,-0.002074,0.003250,0.249979,0,0);}
.m37_c00390{transform:matrix(0.160071,-0.002081,0.003250,0.249979,0,0);-ms-transform:matrix(0.160071,-0.002081,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160071,-0.002081,0.003250,0.249979,0,0);}
.mc4_c00390{transform:matrix(0.160101,-0.002081,0.003250,0.249979,0,0);-ms-transform:matrix(0.160101,-0.002081,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160101,-0.002081,0.003250,0.249979,0,0);}
.m4f_c00390{transform:matrix(0.160351,-0.002085,0.003250,0.249979,0,0);-ms-transform:matrix(0.160351,-0.002085,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160351,-0.002085,0.003250,0.249979,0,0);}
.mdb_c00390{transform:matrix(0.161401,-0.002098,0.003250,0.249979,0,0);-ms-transform:matrix(0.161401,-0.002098,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161401,-0.002098,0.003250,0.249979,0,0);}
.m79_c00390{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);}
.m11f_c00390{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);}
.m8a_c00390{transform:matrix(0.163896,-0.002131,0.003250,0.249979,0,0);-ms-transform:matrix(0.163896,-0.002131,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163896,-0.002131,0.003250,0.249979,0,0);}
.m49_c00390{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);}
.m3c_c00390{transform:matrix(0.165011,-0.002145,0.003250,0.249979,0,0);-ms-transform:matrix(0.165011,-0.002145,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165011,-0.002145,0.003250,0.249979,0,0);}
.m7_c00390{transform:matrix(0.165041,-0.002146,0.003250,0.249979,0,0);-ms-transform:matrix(0.165041,-0.002146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165041,-0.002146,0.003250,0.249979,0,0);}
.m29_c00390{transform:matrix(0.165066,-0.002146,0.003250,0.249979,0,0);-ms-transform:matrix(0.165066,-0.002146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165066,-0.002146,0.003250,0.249979,0,0);}
.mcd_c00390{transform:matrix(0.165216,-0.002148,0.003250,0.249979,0,0);-ms-transform:matrix(0.165216,-0.002148,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165216,-0.002148,0.003250,0.249979,0,0);}
.mae_c00390{transform:matrix(0.165381,-0.002150,0.003250,0.249979,0,0);-ms-transform:matrix(0.165381,-0.002150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165381,-0.002150,0.003250,0.249979,0,0);}
.m12e_c00390{transform:matrix(0.165543,-0.001987,0.003000,0.249982,0,0);-ms-transform:matrix(0.165543,-0.001987,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165543,-0.001987,0.003000,0.249982,0,0);}
.md8_c00390{transform:matrix(0.165886,-0.002157,0.003250,0.249979,0,0);-ms-transform:matrix(0.165886,-0.002157,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165886,-0.002157,0.003250,0.249979,0,0);}
.m12c_c00390{transform:matrix(0.165918,-0.001991,0.003000,0.249982,0,0);-ms-transform:matrix(0.165918,-0.001991,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165918,-0.001991,0.003000,0.249982,0,0);}
.mca_c00390{transform:matrix(0.166591,-0.002166,0.003250,0.249979,0,0);-ms-transform:matrix(0.166591,-0.002166,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166591,-0.002166,0.003250,0.249979,0,0);}
.m101_c00390{transform:matrix(0.166647,-0.001666,0.002500,0.249988,0,0);-ms-transform:matrix(0.166647,-0.001666,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166647,-0.001666,0.002500,0.249988,0,0);}
.m8e_c00390{transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);-ms-transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166736,-0.002168,0.003250,0.249979,0,0);}
.m36_c00390{transform:matrix(0.167061,-0.002172,0.003250,0.249979,0,0);-ms-transform:matrix(0.167061,-0.002172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167061,-0.002172,0.003250,0.249979,0,0);}
.m45_c00390{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);}
.m1f_c00390{transform:matrix(0.167291,-0.002175,0.003250,0.249979,0,0);-ms-transform:matrix(0.167291,-0.002175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167291,-0.002175,0.003250,0.249979,0,0);}
.m6f_c00390{transform:matrix(0.167881,-0.002182,0.003250,0.249979,0,0);-ms-transform:matrix(0.167881,-0.002182,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167881,-0.002182,0.003250,0.249979,0,0);}
.mc_c00390{transform:matrix(0.167896,-0.002183,0.003250,0.249979,0,0);-ms-transform:matrix(0.167896,-0.002183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167896,-0.002183,0.003250,0.249979,0,0);}
.m71_c00390{transform:matrix(0.167981,-0.002184,0.003250,0.249979,0,0);-ms-transform:matrix(0.167981,-0.002184,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167981,-0.002184,0.003250,0.249979,0,0);}
.m12b_c00390{transform:matrix(0.168163,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168163,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168163,-0.002018,0.003000,0.249982,0,0);}
.ma5_c00390{transform:matrix(0.168901,-0.002196,0.003250,0.249979,0,0);-ms-transform:matrix(0.168901,-0.002196,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168901,-0.002196,0.003250,0.249979,0,0);}
.m8d_c00390{transform:matrix(0.169221,-0.002200,0.003250,0.249979,0,0);-ms-transform:matrix(0.169221,-0.002200,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169221,-0.002200,0.003250,0.249979,0,0);}
.mb7_c00390{transform:matrix(0.170401,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170401,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170401,-0.002215,0.003250,0.249979,0,0);}
.m9c_c00390{transform:matrix(0.170496,-0.002216,0.003250,0.249979,0,0);-ms-transform:matrix(0.170496,-0.002216,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170496,-0.002216,0.003250,0.249979,0,0);}
.m44_c00390{transform:matrix(0.170521,-0.002217,0.003250,0.249979,0,0);-ms-transform:matrix(0.170521,-0.002217,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170521,-0.002217,0.003250,0.249979,0,0);}
.ma6_c00390{transform:matrix(0.171166,-0.002225,0.003250,0.249979,0,0);-ms-transform:matrix(0.171166,-0.002225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171166,-0.002225,0.003250,0.249979,0,0);}
.m103_c00390{transform:matrix(0.171176,-0.001712,0.002500,0.249988,0,0);-ms-transform:matrix(0.171176,-0.001712,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171176,-0.001712,0.002500,0.249988,0,0);}
.m6a_c00390{transform:matrix(0.171581,-0.002231,0.003250,0.249979,0,0);-ms-transform:matrix(0.171581,-0.002231,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171581,-0.002231,0.003250,0.249979,0,0);}
.m12d_c00390{transform:matrix(0.171868,-0.002062,0.003000,0.249982,0,0);-ms-transform:matrix(0.171868,-0.002062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171868,-0.002062,0.003000,0.249982,0,0);}
.m6d_c00390{transform:matrix(0.172715,-0.002245,0.003250,0.249979,0,0);-ms-transform:matrix(0.172715,-0.002245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172715,-0.002245,0.003250,0.249979,0,0);}
.m11a_c00390{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);}
.m75_c00390{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);}
.m4c_c00390{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);}
.me6_c00390{transform:matrix(0.173846,-0.001738,0.002500,0.249988,0,0);-ms-transform:matrix(0.173846,-0.001738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173846,-0.001738,0.002500,0.249988,0,0);}
.m11_c00390{transform:matrix(0.173985,-0.002262,0.003250,0.249979,0,0);-ms-transform:matrix(0.173985,-0.002262,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173985,-0.002262,0.003250,0.249979,0,0);}
.mbb_c00390{transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);-ms-transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174325,-0.002266,0.003250,0.249979,0,0);}
.m123_c00390{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);}
.m83_c00390{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);}
.m95_c00390{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);}
.m78_c00390{transform:matrix(0.176395,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176395,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176395,-0.002293,0.003250,0.249979,0,0);}
.m1e_c00390{transform:matrix(0.176585,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176585,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176585,-0.002296,0.003250,0.249979,0,0);}
.mc6_c00390{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);}
.m99_c00390{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);}
.m3f_c00390{transform:matrix(0.176775,-0.002298,0.003250,0.249979,0,0);-ms-transform:matrix(0.176775,-0.002298,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176775,-0.002298,0.003250,0.249979,0,0);}
.mbe_c00390{transform:matrix(0.176790,-0.002298,0.003250,0.249979,0,0);-ms-transform:matrix(0.176790,-0.002298,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176790,-0.002298,0.003250,0.249979,0,0);}
.m97_c00390{transform:matrix(0.177220,-0.002304,0.003250,0.249979,0,0);-ms-transform:matrix(0.177220,-0.002304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177220,-0.002304,0.003250,0.249979,0,0);}
.mcc_c00390{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);}
.m70_c00390{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);}
.m62_c00390{transform:matrix(0.179535,-0.002334,0.003250,0.249979,0,0);-ms-transform:matrix(0.179535,-0.002334,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179535,-0.002334,0.003250,0.249979,0,0);}
.m2e_c00390{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);}
.mc3_c00390{transform:matrix(0.181330,-0.002357,0.003250,0.249979,0,0);-ms-transform:matrix(0.181330,-0.002357,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181330,-0.002357,0.003250,0.249979,0,0);}
.m12a_c00390{transform:matrix(0.181357,-0.002176,0.003000,0.249982,0,0);-ms-transform:matrix(0.181357,-0.002176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181357,-0.002176,0.003000,0.249982,0,0);}
.me1_c00390{transform:matrix(0.181666,-0.001817,0.002500,0.249988,0,0);-ms-transform:matrix(0.181666,-0.001817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181666,-0.001817,0.002500,0.249988,0,0);}
.m9b_c00390{transform:matrix(0.181720,-0.002362,0.003250,0.249979,0,0);-ms-transform:matrix(0.181720,-0.002362,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181720,-0.002362,0.003250,0.249979,0,0);}
.m47_c00390{transform:matrix(0.181960,-0.002365,0.003250,0.249979,0,0);-ms-transform:matrix(0.181960,-0.002365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181960,-0.002365,0.003250,0.249979,0,0);}
.m2b_c00390{transform:matrix(0.182415,-0.002371,0.003250,0.249979,0,0);-ms-transform:matrix(0.182415,-0.002371,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182415,-0.002371,0.003250,0.249979,0,0);}
.m89_c00390{transform:matrix(0.182685,-0.002375,0.003250,0.249979,0,0);-ms-transform:matrix(0.182685,-0.002375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182685,-0.002375,0.003250,0.249979,0,0);}
.m25_c00390{transform:matrix(0.183035,-0.002379,0.003250,0.249979,0,0);-ms-transform:matrix(0.183035,-0.002379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183035,-0.002379,0.003250,0.249979,0,0);}
.me3_c00390{transform:matrix(0.183721,-0.001837,0.002500,0.249988,0,0);-ms-transform:matrix(0.183721,-0.001837,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183721,-0.001837,0.002500,0.249988,0,0);}
.mc1_c00390{transform:matrix(0.183744,-0.002389,0.003250,0.249979,0,0);-ms-transform:matrix(0.183744,-0.002389,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183744,-0.002389,0.003250,0.249979,0,0);}
.m10_c00390{transform:matrix(0.184099,-0.002393,0.003250,0.249979,0,0);-ms-transform:matrix(0.184099,-0.002393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184099,-0.002393,0.003250,0.249979,0,0);}
.m92_c00390{transform:matrix(0.184144,-0.002394,0.003250,0.249979,0,0);-ms-transform:matrix(0.184144,-0.002394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184144,-0.002394,0.003250,0.249979,0,0);}
.m24_c00390{transform:matrix(0.184754,-0.002402,0.003250,0.249979,0,0);-ms-transform:matrix(0.184754,-0.002402,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184754,-0.002402,0.003250,0.249979,0,0);}
.m11e_c00390{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);}
.m20_c00390{transform:matrix(0.185664,-0.002414,0.003250,0.249979,0,0);-ms-transform:matrix(0.185664,-0.002414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185664,-0.002414,0.003250,0.249979,0,0);}
.md6_c00390{transform:matrix(0.185959,-0.002417,0.003250,0.249979,0,0);-ms-transform:matrix(0.185959,-0.002417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185959,-0.002417,0.003250,0.249979,0,0);}
.m73_c00390{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);}
.m19_c00390{transform:matrix(0.186789,-0.002428,0.003250,0.249979,0,0);-ms-transform:matrix(0.186789,-0.002428,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186789,-0.002428,0.003250,0.249979,0,0);}
.mab_c00390{transform:matrix(0.187269,-0.002434,0.003250,0.249979,0,0);-ms-transform:matrix(0.187269,-0.002434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187269,-0.002434,0.003250,0.249979,0,0);}
.m12_c00390{transform:matrix(0.187329,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187329,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187329,-0.002435,0.003250,0.249979,0,0);}
.m46_c00390{transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);-ms-transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);}
.m17_c00390{transform:matrix(0.187364,-0.002436,0.003250,0.249979,0,0);-ms-transform:matrix(0.187364,-0.002436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187364,-0.002436,0.003250,0.249979,0,0);}
.m58_c00390{transform:matrix(0.187669,-0.002440,0.003250,0.249979,0,0);-ms-transform:matrix(0.187669,-0.002440,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187669,-0.002440,0.003250,0.249979,0,0);}
.m8_c00390{transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);-ms-transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187759,-0.002441,0.003250,0.249979,0,0);}
.m41_c00390{transform:matrix(0.187869,-0.002442,0.003250,0.249979,0,0);-ms-transform:matrix(0.187869,-0.002442,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187869,-0.002442,0.003250,0.249979,0,0);}
.m98_c00390{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);}
.m55_c00390{transform:matrix(0.188139,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188139,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188139,-0.002446,0.003250,0.249979,0,0);}
.md9_c00390{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);}
.ma_c00390{transform:matrix(0.189089,-0.002458,0.003250,0.249979,0,0);-ms-transform:matrix(0.189089,-0.002458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189089,-0.002458,0.003250,0.249979,0,0);}
.md3_c00390{transform:matrix(0.189259,-0.002460,0.003250,0.249979,0,0);-ms-transform:matrix(0.189259,-0.002460,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189259,-0.002460,0.003250,0.249979,0,0);}
.m6e_c00390{transform:matrix(0.189674,-0.002466,0.003250,0.249979,0,0);-ms-transform:matrix(0.189674,-0.002466,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189674,-0.002466,0.003250,0.249979,0,0);}
.m125_c00390{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);}
.m9_c00390{transform:matrix(0.190294,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190294,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190294,-0.002474,0.003250,0.249979,0,0);}
.mb6_c00390{transform:matrix(0.190374,-0.002475,0.003250,0.249979,0,0);-ms-transform:matrix(0.190374,-0.002475,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190374,-0.002475,0.003250,0.249979,0,0);}
.m102_c00390{transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190455,-0.001905,0.002500,0.249988,0,0);}
.md5_c00390{transform:matrix(0.190489,-0.002476,0.003250,0.249979,0,0);-ms-transform:matrix(0.190489,-0.002476,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190489,-0.002476,0.003250,0.249979,0,0);}
.mb_c00390{transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);}
.m1c_c00390{transform:matrix(0.191504,-0.002490,0.003250,0.249979,0,0);-ms-transform:matrix(0.191504,-0.002490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191504,-0.002490,0.003250,0.249979,0,0);}
.m35_c00390{transform:matrix(0.191834,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191834,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191834,-0.002494,0.003250,0.249979,0,0);}
.m77_c00390{transform:matrix(0.192514,-0.002503,0.003250,0.249979,0,0);-ms-transform:matrix(0.192514,-0.002503,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192514,-0.002503,0.003250,0.249979,0,0);}
.mfd_c00390{transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192530,-0.001925,0.002500,0.249988,0,0);}
.m84_c00390{transform:matrix(0.192654,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192654,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192654,-0.002504,0.003250,0.249979,0,0);}
.md0_c00390{transform:matrix(0.193094,-0.002510,0.003250,0.249979,0,0);-ms-transform:matrix(0.193094,-0.002510,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193094,-0.002510,0.003250,0.249979,0,0);}
.mb0_c00390{transform:matrix(0.193909,-0.002521,0.003250,0.249979,0,0);-ms-transform:matrix(0.193909,-0.002521,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193909,-0.002521,0.003250,0.249979,0,0);}
.ma1_c00390{transform:matrix(0.193949,-0.002521,0.003250,0.249979,0,0);-ms-transform:matrix(0.193949,-0.002521,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193949,-0.002521,0.003250,0.249979,0,0);}
.m10f_c00390{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);}
.m76_c00390{transform:matrix(0.194054,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194054,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194054,-0.002523,0.003250,0.249979,0,0);}
.m4a_c00390{transform:matrix(0.194059,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194059,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194059,-0.002523,0.003250,0.249979,0,0);}
.m15_c00390{transform:matrix(0.194129,-0.002524,0.003250,0.249979,0,0);-ms-transform:matrix(0.194129,-0.002524,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194129,-0.002524,0.003250,0.249979,0,0);}
.mc8_c00390{transform:matrix(0.194514,-0.002529,0.003250,0.249979,0,0);-ms-transform:matrix(0.194514,-0.002529,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194514,-0.002529,0.003250,0.249979,0,0);}
.m1_c00390{transform:matrix(0.194964,-0.002535,0.003250,0.249979,0,0);-ms-transform:matrix(0.194964,-0.002535,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194964,-0.002535,0.003250,0.249979,0,0);}
.m88_c00390{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);}
.meb_c00390{transform:matrix(0.195740,-0.001957,0.002500,0.249988,0,0);-ms-transform:matrix(0.195740,-0.001957,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195740,-0.001957,0.002500,0.249988,0,0);}
.me8_c00390{transform:matrix(0.196560,-0.001966,0.002500,0.249988,0,0);-ms-transform:matrix(0.196560,-0.001966,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196560,-0.001966,0.002500,0.249988,0,0);}
.mee_c00390{transform:matrix(0.196650,-0.001967,0.002500,0.249988,0,0);-ms-transform:matrix(0.196650,-0.001967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196650,-0.001967,0.002500,0.249988,0,0);}
.m12f_c00390{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);}
.m43_c00390{transform:matrix(0.197258,-0.002564,0.003250,0.249979,0,0);-ms-transform:matrix(0.197258,-0.002564,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197258,-0.002564,0.003250,0.249979,0,0);}
.mb5_c00390{transform:matrix(0.197448,-0.002567,0.003250,0.249979,0,0);-ms-transform:matrix(0.197448,-0.002567,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197448,-0.002567,0.003250,0.249979,0,0);}
.m0_c00390{transform:matrix(0.197468,-0.002567,0.003250,0.249979,0,0);-ms-transform:matrix(0.197468,-0.002567,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197468,-0.002567,0.003250,0.249979,0,0);}
.ma8_c00390{transform:matrix(0.198173,-0.002576,0.003250,0.249979,0,0);-ms-transform:matrix(0.198173,-0.002576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198173,-0.002576,0.003250,0.249979,0,0);}
.md1_c00390{transform:matrix(0.198243,-0.002577,0.003250,0.249979,0,0);-ms-transform:matrix(0.198243,-0.002577,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198243,-0.002577,0.003250,0.249979,0,0);}
.m5b_c00390{transform:matrix(0.198378,-0.002579,0.003250,0.249979,0,0);-ms-transform:matrix(0.198378,-0.002579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198378,-0.002579,0.003250,0.249979,0,0);}
.mf7_c00390{transform:matrix(0.198455,-0.001985,0.002500,0.249988,0,0);-ms-transform:matrix(0.198455,-0.001985,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198455,-0.001985,0.002500,0.249988,0,0);}
.m51_c00390{transform:matrix(0.198678,-0.002583,0.003250,0.249979,0,0);-ms-transform:matrix(0.198678,-0.002583,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198678,-0.002583,0.003250,0.249979,0,0);}
.mbd_c00390{transform:matrix(0.198828,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198828,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198828,-0.002585,0.003250,0.249979,0,0);}
.ma4_c00390{transform:matrix(0.199208,-0.002590,0.003250,0.249979,0,0);-ms-transform:matrix(0.199208,-0.002590,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199208,-0.002590,0.003250,0.249979,0,0);}
.me_c00390{transform:matrix(0.199523,-0.002594,0.003250,0.249979,0,0);-ms-transform:matrix(0.199523,-0.002594,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199523,-0.002594,0.003250,0.249979,0,0);}
.m113_c00390{transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);}
.mfc_c00390{transform:matrix(0.199575,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199575,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199575,-0.001996,0.002500,0.249988,0,0);}
.m16_c00390{transform:matrix(0.199873,-0.002598,0.003250,0.249979,0,0);-ms-transform:matrix(0.199873,-0.002598,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199873,-0.002598,0.003250,0.249979,0,0);}
.mc5_c00390{transform:matrix(0.200133,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200133,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200133,-0.002602,0.003250,0.249979,0,0);}
.m56_c00390{transform:matrix(0.200488,-0.002606,0.003250,0.249979,0,0);-ms-transform:matrix(0.200488,-0.002606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200488,-0.002606,0.003250,0.249979,0,0);}
.maf_c00390{transform:matrix(0.201048,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201048,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201048,-0.002614,0.003250,0.249979,0,0);}
.m120_c00390{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);}
.m10c_c00390{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);}
.me0_c00390{transform:matrix(0.202745,-0.002027,0.002500,0.249988,0,0);-ms-transform:matrix(0.202745,-0.002027,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202745,-0.002027,0.002500,0.249988,0,0);}
.m126_c00390{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);}
.mf9_c00390{transform:matrix(0.202970,-0.002030,0.002500,0.249988,0,0);-ms-transform:matrix(0.202970,-0.002030,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202970,-0.002030,0.002500,0.249988,0,0);}
.mf_c00390{transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);-ms-transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);}
.m104_c00390{transform:matrix(0.203320,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203320,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203320,-0.002033,0.002500,0.249988,0,0);}
.m10d_c00390{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);}
.m87_c00390{transform:matrix(0.203673,-0.002648,0.003250,0.249979,0,0);-ms-transform:matrix(0.203673,-0.002648,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203673,-0.002648,0.003250,0.249979,0,0);}
.m4e_c00390{transform:matrix(0.203703,-0.002648,0.003250,0.249979,0,0);-ms-transform:matrix(0.203703,-0.002648,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203703,-0.002648,0.003250,0.249979,0,0);}
.m3e_c00390{transform:matrix(0.204088,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204088,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204088,-0.002653,0.003250,0.249979,0,0);}
.m108_c00390{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);}
.m9d_c00390{transform:matrix(0.204213,-0.002655,0.003250,0.249979,0,0);-ms-transform:matrix(0.204213,-0.002655,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204213,-0.002655,0.003250,0.249979,0,0);}
.m18_c00390{transform:matrix(0.204328,-0.002656,0.003250,0.249979,0,0);-ms-transform:matrix(0.204328,-0.002656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204328,-0.002656,0.003250,0.249979,0,0);}
.m106_c00390{transform:matrix(0.204350,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204350,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204350,-0.002043,0.002500,0.249988,0,0);}
.m121_c00390{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);}
.m28_c00390{transform:matrix(0.204493,-0.002658,0.003250,0.249979,0,0);-ms-transform:matrix(0.204493,-0.002658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204493,-0.002658,0.003250,0.249979,0,0);}
.m65_c00390{transform:matrix(0.204688,-0.002661,0.003250,0.249979,0,0);-ms-transform:matrix(0.204688,-0.002661,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204688,-0.002661,0.003250,0.249979,0,0);}
.mcf_c00390{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);}
.me5_c00390{transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);-ms-transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205535,-0.002055,0.002500,0.249988,0,0);}
.mc0_c00390{transform:matrix(0.205648,-0.002673,0.003250,0.249979,0,0);-ms-transform:matrix(0.205648,-0.002673,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205648,-0.002673,0.003250,0.249979,0,0);}
.m2d_c00390{transform:matrix(0.205753,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205753,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205753,-0.002675,0.003250,0.249979,0,0);}
.m60_c00390{transform:matrix(0.205783,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205783,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205783,-0.002675,0.003250,0.249979,0,0);}
.mdf_c00390{transform:matrix(0.206140,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206140,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206140,-0.002061,0.002500,0.249988,0,0);}
.mde_c00390{transform:matrix(0.206310,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206310,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206310,-0.002063,0.002500,0.249988,0,0);}
.ma3_c00390{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);}
.m22_c00390{transform:matrix(0.206523,-0.002685,0.003250,0.249979,0,0);-ms-transform:matrix(0.206523,-0.002685,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206523,-0.002685,0.003250,0.249979,0,0);}
.m52_c00390{transform:matrix(0.206808,-0.002688,0.003250,0.249979,0,0);-ms-transform:matrix(0.206808,-0.002688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206808,-0.002688,0.003250,0.249979,0,0);}
.m85_c00390{transform:matrix(0.206843,-0.002689,0.003250,0.249979,0,0);-ms-transform:matrix(0.206843,-0.002689,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206843,-0.002689,0.003250,0.249979,0,0);}
.mc2_c00390{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);}
.maa_c00390{transform:matrix(0.207267,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207267,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207267,-0.002694,0.003250,0.249979,0,0);}
.mfe_c00390{transform:matrix(0.207460,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207460,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207460,-0.002075,0.002500,0.249988,0,0);}
.m11b_c00390{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);}
.m5f_c00390{transform:matrix(0.208127,-0.002706,0.003250,0.249979,0,0);-ms-transform:matrix(0.208127,-0.002706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208127,-0.002706,0.003250,0.249979,0,0);}
.mf0_c00390{transform:matrix(0.208130,-0.002081,0.002500,0.249988,0,0);-ms-transform:matrix(0.208130,-0.002081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208130,-0.002081,0.002500,0.249988,0,0);}
.m119_c00390{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);}
.mdd_c00390{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);}
.m100_c00390{transform:matrix(0.208575,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208575,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208575,-0.002086,0.002500,0.249988,0,0);}
.mf5_c00390{transform:matrix(0.208635,-0.002086,0.002500,0.249988,0,0);-ms-transform:matrix(0.208635,-0.002086,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208635,-0.002086,0.002500,0.249988,0,0);}
.m8b_c00390{transform:matrix(0.208707,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208707,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208707,-0.002713,0.003250,0.249979,0,0);}
.mfb_c00390{transform:matrix(0.208865,-0.002089,0.002500,0.249988,0,0);-ms-transform:matrix(0.208865,-0.002089,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208865,-0.002089,0.002500,0.249988,0,0);}
.m2a_c00390{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);}
.m1a_c00390{transform:matrix(0.209637,-0.002725,0.003250,0.249979,0,0);-ms-transform:matrix(0.209637,-0.002725,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209637,-0.002725,0.003250,0.249979,0,0);}
.m26_c00390{transform:matrix(0.209797,-0.002727,0.003250,0.249979,0,0);-ms-transform:matrix(0.209797,-0.002727,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209797,-0.002727,0.003250,0.249979,0,0);}
.m1d_c00390{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);}
.m7b_c00390{transform:matrix(0.211077,-0.002744,0.003250,0.249979,0,0);-ms-transform:matrix(0.211077,-0.002744,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211077,-0.002744,0.003250,0.249979,0,0);}
.m64_c00390{transform:matrix(0.211082,-0.002744,0.003250,0.249979,0,0);-ms-transform:matrix(0.211082,-0.002744,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211082,-0.002744,0.003250,0.249979,0,0);}
.mfa_c00390{transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);-ms-transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);}
.me7_c00390{transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211659,-0.002117,0.002500,0.249988,0,0);}
.ma9_c00390{transform:matrix(0.211777,-0.002753,0.003250,0.249979,0,0);-ms-transform:matrix(0.211777,-0.002753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211777,-0.002753,0.003250,0.249979,0,0);}
.mb2_c00390{transform:matrix(0.211882,-0.002754,0.003250,0.249979,0,0);-ms-transform:matrix(0.211882,-0.002754,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211882,-0.002754,0.003250,0.249979,0,0);}
.m2c_c00390{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);}
.m115_c00390{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);}
.m40_c00390{transform:matrix(0.213332,-0.002773,0.003250,0.249979,0,0);-ms-transform:matrix(0.213332,-0.002773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213332,-0.002773,0.003250,0.249979,0,0);}
.m109_c00390{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);}
.m2_c00390{transform:matrix(0.213802,-0.002779,0.003250,0.249979,0,0);-ms-transform:matrix(0.213802,-0.002779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213802,-0.002779,0.003250,0.249979,0,0);}
.m4b_c00390{transform:matrix(0.214097,-0.002783,0.003250,0.249979,0,0);-ms-transform:matrix(0.214097,-0.002783,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214097,-0.002783,0.003250,0.249979,0,0);}
.m105_c00390{transform:matrix(0.214319,-0.002143,0.002500,0.249988,0,0);-ms-transform:matrix(0.214319,-0.002143,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214319,-0.002143,0.002500,0.249988,0,0);}
.mea_c00390{transform:matrix(0.214329,-0.002143,0.002500,0.249988,0,0);-ms-transform:matrix(0.214329,-0.002143,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214329,-0.002143,0.002500,0.249988,0,0);}
.m1b_c00390{transform:matrix(0.214382,-0.002787,0.003250,0.249979,0,0);-ms-transform:matrix(0.214382,-0.002787,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214382,-0.002787,0.003250,0.249979,0,0);}
.m39_c00390{transform:matrix(0.214412,-0.002787,0.003250,0.249979,0,0);-ms-transform:matrix(0.214412,-0.002787,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214412,-0.002787,0.003250,0.249979,0,0);}
.m136_c00390{transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214665,-0.002576,0.003000,0.249982,0,0);}
.mbc_c00390{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);}
.mc7_c00390{transform:matrix(0.215307,-0.002799,0.003250,0.249979,0,0);-ms-transform:matrix(0.215307,-0.002799,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215307,-0.002799,0.003250,0.249979,0,0);}
.mef_c00390{transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);-ms-transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);}
.mf8_c00390{transform:matrix(0.215794,-0.002158,0.002500,0.249988,0,0);-ms-transform:matrix(0.215794,-0.002158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215794,-0.002158,0.002500,0.249988,0,0);}
.m11d_c00390{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.m116_c00390{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);}
.me9_c00390{transform:matrix(0.216099,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216099,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216099,-0.002161,0.002500,0.249988,0,0);}
.md7_c00390{transform:matrix(0.216227,-0.002811,0.003250,0.249979,0,0);-ms-transform:matrix(0.216227,-0.002811,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216227,-0.002811,0.003250,0.249979,0,0);}
.mf1_c00390{transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216459,-0.002165,0.002500,0.249988,0,0);}
.m32_c00390{transform:matrix(0.217442,-0.002827,0.003250,0.249979,0,0);-ms-transform:matrix(0.217442,-0.002827,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217442,-0.002827,0.003250,0.249979,0,0);}
.m10b_c00390{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);}
.m38_c00390{transform:matrix(0.218117,-0.002836,0.003250,0.249979,0,0);-ms-transform:matrix(0.218117,-0.002836,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218117,-0.002836,0.003250,0.249979,0,0);}
.m30_c00390{transform:matrix(0.218592,-0.002842,0.003250,0.249979,0,0);-ms-transform:matrix(0.218592,-0.002842,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218592,-0.002842,0.003250,0.249979,0,0);}
.m112_c00390{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);}
.m5c_c00390{transform:matrix(0.218867,-0.002845,0.003250,0.249979,0,0);-ms-transform:matrix(0.218867,-0.002845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218867,-0.002845,0.003250,0.249979,0,0);}
.m9f_c00390{transform:matrix(0.220076,-0.002861,0.003250,0.249979,0,0);-ms-transform:matrix(0.220076,-0.002861,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220076,-0.002861,0.003250,0.249979,0,0);}
.m91_c00390{transform:matrix(0.220126,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220126,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220126,-0.002862,0.003250,0.249979,0,0);}
.m94_c00390{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);}
.m50_c00390{transform:matrix(0.220411,-0.002865,0.003250,0.249979,0,0);-ms-transform:matrix(0.220411,-0.002865,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220411,-0.002865,0.003250,0.249979,0,0);}
.ma0_c00390{transform:matrix(0.220991,-0.002873,0.003250,0.249979,0,0);-ms-transform:matrix(0.220991,-0.002873,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220991,-0.002873,0.003250,0.249979,0,0);}
.mf6_c00390{transform:matrix(0.222259,-0.002223,0.002500,0.249988,0,0);-ms-transform:matrix(0.222259,-0.002223,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222259,-0.002223,0.002500,0.249988,0,0);}
.m61_c00390{transform:matrix(0.223931,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223931,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223931,-0.002911,0.003250,0.249979,0,0);}
.me2_c00390{transform:matrix(0.224244,-0.002242,0.002500,0.249988,0,0);-ms-transform:matrix(0.224244,-0.002242,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224244,-0.002242,0.002500,0.249988,0,0);}
.m6_c00390{transform:matrix(0.224296,-0.002916,0.003250,0.249979,0,0);-ms-transform:matrix(0.224296,-0.002916,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224296,-0.002916,0.003250,0.249979,0,0);}
.m114_c00390{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);-ms-transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);}
.mb4_c00390{transform:matrix(0.226586,-0.002946,0.003250,0.249979,0,0);-ms-transform:matrix(0.226586,-0.002946,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226586,-0.002946,0.003250,0.249979,0,0);}
.m3_c00390{transform:matrix(0.226776,-0.002948,0.003250,0.249979,0,0);-ms-transform:matrix(0.226776,-0.002948,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226776,-0.002948,0.003250,0.249979,0,0);}
.m7f_c00390{transform:matrix(0.229486,-0.002983,0.003250,0.249979,0,0);-ms-transform:matrix(0.229486,-0.002983,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229486,-0.002983,0.003250,0.249979,0,0);}
.m4d_c00390{transform:matrix(0.229826,-0.002988,0.003250,0.249979,0,0);-ms-transform:matrix(0.229826,-0.002988,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229826,-0.002988,0.003250,0.249979,0,0);}
.m7c_c00390{transform:matrix(0.230316,-0.002994,0.003250,0.249979,0,0);-ms-transform:matrix(0.230316,-0.002994,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230316,-0.002994,0.003250,0.249979,0,0);}
.m138_c00390{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);}
.mf3_c00390{transform:matrix(0.233303,-0.002333,0.002500,0.249988,0,0);-ms-transform:matrix(0.233303,-0.002333,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233303,-0.002333,0.002500,0.249988,0,0);}
.m86_c00390{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);}
.m9a_c00390{transform:matrix(0.234905,-0.003054,0.003250,0.249979,0,0);-ms-transform:matrix(0.234905,-0.003054,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234905,-0.003054,0.003250,0.249979,0,0);}
.m2f_c00390{transform:matrix(0.235170,-0.003057,0.003250,0.249979,0,0);-ms-transform:matrix(0.235170,-0.003057,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235170,-0.003057,0.003250,0.249979,0,0);}
.m90_c00390{transform:matrix(0.236310,-0.003072,0.003250,0.249979,0,0);-ms-transform:matrix(0.236310,-0.003072,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236310,-0.003072,0.003250,0.249979,0,0);}
.m54_c00390{transform:matrix(0.236625,-0.003076,0.003250,0.249979,0,0);-ms-transform:matrix(0.236625,-0.003076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236625,-0.003076,0.003250,0.249979,0,0);}
.m3b_c00390{transform:matrix(0.236880,-0.003079,0.003250,0.249979,0,0);-ms-transform:matrix(0.236880,-0.003079,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236880,-0.003079,0.003250,0.249979,0,0);}
.m82_c00390{transform:matrix(0.236890,-0.003080,0.003250,0.249979,0,0);-ms-transform:matrix(0.236890,-0.003080,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236890,-0.003080,0.003250,0.249979,0,0);}
.m66_c00390{transform:matrix(0.236900,-0.003080,0.003250,0.249979,0,0);-ms-transform:matrix(0.236900,-0.003080,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236900,-0.003080,0.003250,0.249979,0,0);}
.m81_c00390{transform:matrix(0.237010,-0.003081,0.003250,0.249979,0,0);-ms-transform:matrix(0.237010,-0.003081,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237010,-0.003081,0.003250,0.249979,0,0);}
.m110_c00390{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);}
.mec_c00390{transform:matrix(0.240153,-0.002402,0.002500,0.249988,0,0);-ms-transform:matrix(0.240153,-0.002402,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240153,-0.002402,0.002500,0.249988,0,0);}
.m80_c00390{transform:matrix(0.241690,-0.003142,0.003250,0.249979,0,0);-ms-transform:matrix(0.241690,-0.003142,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241690,-0.003142,0.003250,0.249979,0,0);}
.med_c00390{transform:matrix(0.242493,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242493,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242493,-0.002425,0.002500,0.249988,0,0);}
.m8f_c00390{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);}
.m59_c00390{transform:matrix(0.244134,-0.003174,0.003250,0.249979,0,0);-ms-transform:matrix(0.244134,-0.003174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244134,-0.003174,0.003250,0.249979,0,0);}
.m7e_c00390{transform:matrix(0.244614,-0.003180,0.003250,0.249979,0,0);-ms-transform:matrix(0.244614,-0.003180,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244614,-0.003180,0.003250,0.249979,0,0);}
.m6c_c00390{transform:matrix(0.246594,-0.003206,0.003250,0.249979,0,0);-ms-transform:matrix(0.246594,-0.003206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246594,-0.003206,0.003250,0.249979,0,0);}
.mad_c00390{transform:matrix(0.246634,-0.003206,0.003250,0.249979,0,0);-ms-transform:matrix(0.246634,-0.003206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246634,-0.003206,0.003250,0.249979,0,0);}
.m118_c00390{transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247060,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.247314,-0.003215,0.003250,0.249979,0,0);-ms-transform:matrix(0.247314,-0.003215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247314,-0.003215,0.003250,0.249979,0,0);}
.m10a_c00390{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.247939,-0.003223,0.003250,0.249979,0,0);-ms-transform:matrix(0.247939,-0.003223,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247939,-0.003223,0.003250,0.249979,0,0);}
.m5_c00390{transform:matrix(0.248079,-0.003225,0.003250,0.249979,0,0);-ms-transform:matrix(0.248079,-0.003225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248079,-0.003225,0.003250,0.249979,0,0);}
.mce_c00390{transform:matrix(0.250319,-0.003254,0.003250,0.249979,0,0);-ms-transform:matrix(0.250319,-0.003254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250319,-0.003254,0.003250,0.249979,0,0);}
.mf2_c00390{transform:matrix(0.250912,-0.002509,0.002500,0.249988,0,0);-ms-transform:matrix(0.250912,-0.002509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250912,-0.002509,0.002500,0.249988,0,0);}
.m33_c00390{transform:matrix(0.251674,-0.003272,0.003250,0.249979,0,0);-ms-transform:matrix(0.251674,-0.003272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251674,-0.003272,0.003250,0.249979,0,0);}
.m34_c00390{transform:matrix(0.251714,-0.003272,0.003250,0.249979,0,0);-ms-transform:matrix(0.251714,-0.003272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251714,-0.003272,0.003250,0.249979,0,0);}
.m23_c00390{transform:matrix(0.254374,-0.003307,0.003250,0.249979,0,0);-ms-transform:matrix(0.254374,-0.003307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254374,-0.003307,0.003250,0.249979,0,0);}
.m5a_c00390{transform:matrix(0.260368,-0.003385,0.003250,0.249979,0,0);-ms-transform:matrix(0.260368,-0.003385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260368,-0.003385,0.003250,0.249979,0,0);}
.mda_c00390{transform:matrix(0.260558,-0.003387,0.003250,0.249979,0,0);-ms-transform:matrix(0.260558,-0.003387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260558,-0.003387,0.003250,0.249979,0,0);}
.m135_c00390{transform:matrix(0.265551,-0.003187,0.003000,0.249982,0,0);-ms-transform:matrix(0.265551,-0.003187,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265551,-0.003187,0.003000,0.249982,0,0);}
.m107_c00390{transform:matrix(0.272780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272780,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.274237,-0.003565,0.003250,0.249979,0,0);-ms-transform:matrix(0.274237,-0.003565,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274237,-0.003565,0.003250,0.249979,0,0);}
.m53_c00390{transform:matrix(0.278751,-0.003624,0.003250,0.249979,0,0);-ms-transform:matrix(0.278751,-0.003624,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278751,-0.003624,0.003250,0.249979,0,0);}
.m133_c00390{transform:matrix(0.279130,-0.003350,0.003000,0.249982,0,0);-ms-transform:matrix(0.279130,-0.003350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279130,-0.003350,0.003000,0.249982,0,0);}
.mb3_c00390{transform:matrix(0.287846,-0.003742,0.003250,0.249979,0,0);-ms-transform:matrix(0.287846,-0.003742,0.003250,0.249979,0,0);-webkit-transform:matrix(0.287846,-0.003742,0.003250,0.249979,0,0);}
.m137_c00390{transform:matrix(0.291039,-0.003492,0.003000,0.249982,0,0);-ms-transform:matrix(0.291039,-0.003492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291039,-0.003492,0.003000,0.249982,0,0);}
.m128_c00390{transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);}
.m122_c00390{transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310665,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.313384,-0.004074,0.003250,0.249979,0,0);-ms-transform:matrix(0.313384,-0.004074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.313384,-0.004074,0.003250,0.249979,0,0);}
.m67_c00390{transform:matrix(0.321013,-0.004173,0.003250,0.249979,0,0);-ms-transform:matrix(0.321013,-0.004173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.321013,-0.004173,0.003250,0.249979,0,0);}
.m69_c00390{transform:matrix(0.326307,-0.004242,0.003250,0.249979,0,0);-ms-transform:matrix(0.326307,-0.004242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.326307,-0.004242,0.003250,0.249979,0,0);}
.m7a_c00390{transform:matrix(0.327397,-0.004256,0.003250,0.249979,0,0);-ms-transform:matrix(0.327397,-0.004256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327397,-0.004256,0.003250,0.249979,0,0);}
.m124_c00390{transform:matrix(0.335690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335690,0.000000,0.000000,0.250000,0,0);}
.mac_c00390{transform:matrix(0.345386,-0.004490,0.003250,0.249979,0,0);-ms-transform:matrix(0.345386,-0.004490,0.003250,0.249979,0,0);-webkit-transform:matrix(0.345386,-0.004490,0.003250,0.249979,0,0);}
.m27_c00390{transform:matrix(0.359010,-0.004667,0.003250,0.249979,0,0);-ms-transform:matrix(0.359010,-0.004667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.359010,-0.004667,0.003250,0.249979,0,0);}
.m3a_c00390{transform:matrix(0.361164,-0.004695,0.003250,0.249979,0,0);-ms-transform:matrix(0.361164,-0.004695,0.003250,0.249979,0,0);-webkit-transform:matrix(0.361164,-0.004695,0.003250,0.249979,0,0);}
.me4_c00390{transform:matrix(0.363337,-0.003633,0.002500,0.249988,0,0);-ms-transform:matrix(0.363337,-0.003633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.363337,-0.003633,0.002500,0.249988,0,0);}
.mff_c00390{transform:matrix(0.365072,-0.003651,0.002500,0.249988,0,0);-ms-transform:matrix(0.365072,-0.003651,0.002500,0.249988,0,0);-webkit-transform:matrix(0.365072,-0.003651,0.002500,0.249988,0,0);}
.m139_c00390{transform:matrix(0.380380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380380,0.000000,0.000000,0.250000,0,0);}
.m10e_c00390{transform:matrix(0.383125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383125,0.000000,0.000000,0.250000,0,0);}
.mf4_c00390{transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);-ms-transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.386406,-0.003864,0.002500,0.249988,0,0);}
.m129_c00390{transform:matrix(0.391100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391100,0.000000,0.000000,0.250000,0,0);}
.m127_c00390{transform:matrix(0.487765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487765,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.557458,-0.007247,0.003250,0.249979,0,0);-ms-transform:matrix(0.557458,-0.007247,0.003250,0.249979,0,0);-webkit-transform:matrix(0.557458,-0.007247,0.003250,0.249979,0,0);}
.m134_c00390{transform:matrix(0.570509,-0.006846,0.003000,0.249982,0,0);-ms-transform:matrix(0.570509,-0.006846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.570509,-0.006846,0.003000,0.249982,0,0);}
.m117_c00390{transform:matrix(0.643325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643325,0.000000,0.000000,0.250000,0,0);}
.m131_c00390{transform:matrix(0.845089,-0.010141,0.003000,0.249982,0,0);-ms-transform:matrix(0.845089,-0.010141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.845089,-0.010141,0.003000,0.249982,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;}
.fs12_c00390{font-size:22.050000px;}
.fsa_c00390{font-size:47.252362px;}
.fs9_c00390{font-size:48.302415px;}
.fsc_c00390{font-size:51.450000px;}
.fsb_c00390{font-size:51.452572px;}
.fsd_c00390{font-size:55.650000px;}
.fsf_c00390{font-size:57.754158px;}
.fs6_c00390{font-size:59.855057px;}
.fse_c00390{font-size:60.900000px;}
.fs11_c00390{font-size:63.000000px;}
.fs5_c00390{font-size:64.055412px;}
.fs10_c00390{font-size:68.254914px;}
.fs1_c00390{font-size:68.255767px;}
.fs2_c00390{font-size:69.305856px;}
.fs3_c00390{font-size:70.355944px;}
.fs4_c00390{font-size:71.406033px;}
.fs0_c00390{font-size:72.456122px;}
.fs7_c00390{font-size:73.506210px;}
.fs8_c00390{font-size:74.556299px;}
.y0_c00390{bottom:0.000000px;}
.y126_c00390{bottom:130.002000px;}
.y127_c00390{bottom:136.620000px;}
.y123_c00390{bottom:141.500652px;}
.y124_c00390{bottom:141.501336px;}
.y125_c00390{bottom:141.502032px;}
.y118_c00390{bottom:155.251500px;}
.y119_c00390{bottom:155.705064px;}
.y11a_c00390{bottom:156.093450px;}
.y11b_c00390{bottom:156.301422px;}
.y11c_c00390{bottom:156.842394px;}
.y11d_c00390{bottom:157.237836px;}
.y11e_c00390{bottom:158.076312px;}
.y11f_c00390{bottom:158.508168px;}
.y120_c00390{bottom:159.550908px;}
.y121_c00390{bottom:160.627290px;}
.y122_c00390{bottom:161.134512px;}
.y117_c00390{bottom:176.052000px;}
.y10c_c00390{bottom:191.703000px;}
.y10d_c00390{bottom:192.424500px;}
.y10e_c00390{bottom:193.408500px;}
.y10f_c00390{bottom:194.061000px;}
.y110_c00390{bottom:194.635500px;}
.y111_c00390{bottom:195.702000px;}
.y112_c00390{bottom:196.552500px;}
.y113_c00390{bottom:196.906500px;}
.y114_c00390{bottom:197.826000px;}
.y115_c00390{bottom:198.538500px;}
.y116_c00390{bottom:199.735500px;}
.y10b_c00390{bottom:214.896000px;}
.yff_c00390{bottom:227.387415px;}
.y100_c00390{bottom:227.634360px;}
.y101_c00390{bottom:228.258450px;}
.y102_c00390{bottom:229.078785px;}
.y103_c00390{bottom:229.972560px;}
.y104_c00390{bottom:230.143800px;}
.y105_c00390{bottom:230.473845px;}
.y106_c00390{bottom:230.705400px;}
.y107_c00390{bottom:231.266790px;}
.y108_c00390{bottom:231.583905px;}
.y109_c00390{bottom:231.860790px;}
.y10a_c00390{bottom:232.306260px;}
.yf1_c00390{bottom:245.161575px;}
.yf2_c00390{bottom:245.490915px;}
.yf3_c00390{bottom:245.728575px;}
.yf4_c00390{bottom:246.208020px;}
.yf5_c00390{bottom:246.733275px;}
.yf6_c00390{bottom:247.144650px;}
.yf7_c00390{bottom:247.731255px;}
.yf8_c00390{bottom:248.439090px;}
.yf9_c00390{bottom:248.658375px;}
.yfa_c00390{bottom:249.451395px;}
.yfb_c00390{bottom:249.788085px;}
.yfc_c00390{bottom:250.078545px;}
.yfd_c00390{bottom:250.437090px;}
.yfe_c00390{bottom:250.947045px;}
.ye1_c00390{bottom:263.791500px;}
.ye2_c00390{bottom:264.318000px;}
.ye3_c00390{bottom:264.644685px;}
.ye4_c00390{bottom:264.798525px;}
.ye5_c00390{bottom:265.119615px;}
.ye6_c00390{bottom:265.317135px;}
.ye7_c00390{bottom:265.916565px;}
.ye8_c00390{bottom:266.162475px;}
.ye9_c00390{bottom:266.302740px;}
.yea_c00390{bottom:266.818440px;}
.yeb_c00390{bottom:266.999010px;}
.yec_c00390{bottom:267.188295px;}
.yed_c00390{bottom:267.390900px;}
.yee_c00390{bottom:267.679815px;}
.yef_c00390{bottom:268.095600px;}
.yf0_c00390{bottom:268.454625px;}
.yd7_c00390{bottom:320.214813px;}
.yd8_c00390{bottom:320.590441px;}
.yd9_c00390{bottom:321.408291px;}
.yda_c00390{bottom:322.176825px;}
.ydb_c00390{bottom:323.352266px;}
.ydc_c00390{bottom:323.759894px;}
.ydd_c00390{bottom:324.489642px;}
.yde_c00390{bottom:324.949998px;}
.ydf_c00390{bottom:325.224071px;}
.ye0_c00390{bottom:325.929425px;}
.ycf_c00390{bottom:343.706246px;}
.yd0_c00390{bottom:345.798575px;}
.yd1_c00390{bottom:346.106583px;}
.yd2_c00390{bottom:346.529144px;}
.yd3_c00390{bottom:347.319740px;}
.yd4_c00390{bottom:347.889578px;}
.yd5_c00390{bottom:348.753285px;}
.yd6_c00390{bottom:348.936347px;}
.yc4_c00390{bottom:366.657879px;}
.yc5_c00390{bottom:367.270425px;}
.yc6_c00390{bottom:368.230139px;}
.yc7_c00390{bottom:369.016679px;}
.yc8_c00390{bottom:369.522492px;}
.yc9_c00390{bottom:370.280949px;}
.yca_c00390{bottom:371.062340px;}
.ycb_c00390{bottom:371.282630px;}
.ycc_c00390{bottom:371.531958px;}
.ycd_c00390{bottom:371.958986px;}
.yce_c00390{bottom:372.185166px;}
.yba_c00390{bottom:389.879366px;}
.ybb_c00390{bottom:390.422485px;}
.ybc_c00390{bottom:390.644921px;}
.ybd_c00390{bottom:391.723867px;}
.ybe_c00390{bottom:392.617394px;}
.ybf_c00390{bottom:392.827699px;}
.yc0_c00390{bottom:393.643179px;}
.yc1_c00390{bottom:393.929014px;}
.yc2_c00390{bottom:394.435257px;}
.yc3_c00390{bottom:395.261405px;}
.yb0_c00390{bottom:413.100795px;}
.yb1_c00390{bottom:413.693157px;}
.yb2_c00390{bottom:414.690723px;}
.yb3_c00390{bottom:414.926069px;}
.yb4_c00390{bottom:416.102055px;}
.yb5_c00390{bottom:416.413652px;}
.yb6_c00390{bottom:417.297855px;}
.yb7_c00390{bottom:417.975225px;}
.yb8_c00390{bottom:418.295813px;}
.yb9_c00390{bottom:418.622445px;}
.ya6_c00390{bottom:435.780951px;}
.ya7_c00390{bottom:436.443662px;}
.ya8_c00390{bottom:436.803150px;}
.ya9_c00390{bottom:436.947436px;}
.yaa_c00390{bottom:437.872548px;}
.yab_c00390{bottom:438.506374px;}
.yac_c00390{bottom:439.332369px;}
.yad_c00390{bottom:439.944390px;}
.yae_c00390{bottom:440.419107px;}
.yaf_c00390{bottom:440.729896px;}
.y9e_c00390{bottom:459.003000px;}
.y9f_c00390{bottom:459.880422px;}
.ya0_c00390{bottom:460.336722px;}
.ya1_c00390{bottom:460.968561px;}
.ya2_c00390{bottom:462.123429px;}
.ya3_c00390{bottom:463.139964px;}
.ya4_c00390{bottom:463.405008px;}
.ya5_c00390{bottom:464.141991px;}
.y93_c00390{bottom:481.927178px;}
.y94_c00390{bottom:482.854083px;}
.y95_c00390{bottom:483.183791px;}
.y96_c00390{bottom:483.537605px;}
.y97_c00390{bottom:484.056848px;}
.y98_c00390{bottom:484.398315px;}
.y99_c00390{bottom:484.710645px;}
.y9a_c00390{bottom:485.243364px;}
.y9b_c00390{bottom:485.907948px;}
.y9c_c00390{bottom:486.398091px;}
.y9d_c00390{bottom:486.773280px;}
.y89_c00390{bottom:505.149721px;}
.y8a_c00390{bottom:505.875356px;}
.y8b_c00390{bottom:506.395577px;}
.y8c_c00390{bottom:506.939900px;}
.y8d_c00390{bottom:507.835008px;}
.y8e_c00390{bottom:508.224579px;}
.y8f_c00390{bottom:508.824926px;}
.y90_c00390{bottom:509.832569px;}
.y91_c00390{bottom:510.548921px;}
.y92_c00390{bottom:510.790682px;}
.y80_c00390{bottom:527.562635px;}
.y81_c00390{bottom:528.401933px;}
.y82_c00390{bottom:529.440683px;}
.y83_c00390{bottom:530.600752px;}
.y84_c00390{bottom:530.991095px;}
.y85_c00390{bottom:531.580167px;}
.y86_c00390{bottom:532.381209px;}
.y87_c00390{bottom:532.948502px;}
.y88_c00390{bottom:533.804705px;}
.y77_c00390{bottom:550.784190px;}
.y78_c00390{bottom:552.091728px;}
.y79_c00390{bottom:552.965558px;}
.y7a_c00390{bottom:553.808210px;}
.y7b_c00390{bottom:554.263014px;}
.y7c_c00390{bottom:554.375600px;}
.y7d_c00390{bottom:555.377555px;}
.y7e_c00390{bottom:556.279540px;}
.y7f_c00390{bottom:556.537566px;}
.y6e_c00390{bottom:573.195033px;}
.y6f_c00390{bottom:573.747689px;}
.y70_c00390{bottom:575.239146px;}
.y71_c00390{bottom:576.138918px;}
.y72_c00390{bottom:577.516055px;}
.y73_c00390{bottom:578.829480px;}
.y74_c00390{bottom:579.499479px;}
.y75_c00390{bottom:580.225274px;}
.y76_c00390{bottom:581.297229px;}
.y61_c00390{bottom:596.687064px;}
.y62_c00390{bottom:597.595979px;}
.y63_c00390{bottom:598.427225px;}
.y64_c00390{bottom:598.602627px;}
.y65_c00390{bottom:599.165007px;}
.y66_c00390{bottom:599.642738px;}
.y67_c00390{bottom:600.390387px;}
.y68_c00390{bottom:600.948477px;}
.y69_c00390{bottom:601.194197px;}
.y6a_c00390{bottom:601.562668px;}
.y6b_c00390{bottom:601.732592px;}
.y6c_c00390{bottom:601.853882px;}
.y6d_c00390{bottom:602.187215px;}
.y59_c00390{bottom:619.368316px;}
.y5a_c00390{bottom:620.534163px;}
.y5b_c00390{bottom:621.292484px;}
.y5c_c00390{bottom:621.930908px;}
.y5d_c00390{bottom:622.515176px;}
.y5e_c00390{bottom:623.150499px;}
.y5f_c00390{bottom:623.992404px;}
.y60_c00390{bottom:624.487648px;}
.y4f_c00390{bottom:641.238642px;}
.y50_c00390{bottom:641.602406px;}
.y51_c00390{bottom:642.201268px;}
.y52_c00390{bottom:642.894830px;}
.y53_c00390{bottom:643.240596px;}
.y54_c00390{bottom:643.924214px;}
.y55_c00390{bottom:645.618732px;}
.y56_c00390{bottom:646.165809px;}
.y57_c00390{bottom:646.833654px;}
.y58_c00390{bottom:647.947287px;}
.y46_c00390{bottom:664.730358px;}
.y47_c00390{bottom:666.036059px;}
.y48_c00390{bottom:667.050097px;}
.y49_c00390{bottom:667.593095px;}
.y4a_c00390{bottom:667.801589px;}
.y4b_c00390{bottom:668.065092px;}
.y4c_c00390{bottom:668.682209px;}
.y4d_c00390{bottom:669.731971px;}
.y4e_c00390{bottom:670.585194px;}
.y3c_c00390{bottom:687.680967px;}
.y3d_c00390{bottom:688.102527px;}
.y3e_c00390{bottom:688.499978px;}
.y3f_c00390{bottom:688.797909px;}
.y40_c00390{bottom:689.937090px;}
.y41_c00390{bottom:690.288683px;}
.y42_c00390{bottom:690.969534px;}
.y43_c00390{bottom:691.163247px;}
.y44_c00390{bottom:691.500114px;}
.y45_c00390{bottom:691.910810px;}
.y31_c00390{bottom:710.363464px;}
.y32_c00390{bottom:710.917041px;}
.y33_c00390{bottom:711.816164px;}
.y34_c00390{bottom:712.196586px;}
.y35_c00390{bottom:712.668765px;}
.y36_c00390{bottom:712.838739px;}
.y37_c00390{bottom:713.302257px;}
.y38_c00390{bottom:713.529655px;}
.y39_c00390{bottom:713.876469px;}
.y3a_c00390{bottom:714.591534px;}
.y3b_c00390{bottom:715.113588px;}
.y27_c00390{bottom:733.585871px;}
.y28_c00390{bottom:734.351987px;}
.y29_c00390{bottom:734.544101px;}
.y2a_c00390{bottom:735.270710px;}
.y2b_c00390{bottom:736.008122px;}
.y2c_c00390{bottom:737.092712px;}
.y2d_c00390{bottom:737.815889px;}
.y2e_c00390{bottom:738.478499px;}
.y2f_c00390{bottom:738.974286px;}
.y30_c00390{bottom:739.359586px;}
.y1f_c00390{bottom:755.997296px;}
.y20_c00390{bottom:756.419646px;}
.y21_c00390{bottom:757.163337px;}
.y22_c00390{bottom:758.146546px;}
.y23_c00390{bottom:758.539823px;}
.y24_c00390{bottom:759.592862px;}
.y25_c00390{bottom:760.235367px;}
.y26_c00390{bottom:761.453239px;}
.y16_c00390{bottom:778.948209px;}
.y17_c00390{bottom:780.078640px;}
.y18_c00390{bottom:780.831267px;}
.y19_c00390{bottom:781.879083px;}
.y1a_c00390{bottom:782.811234px;}
.y1b_c00390{bottom:783.432361px;}
.y1c_c00390{bottom:784.328263px;}
.y1d_c00390{bottom:784.808592px;}
.y1e_c00390{bottom:785.388461px;}
.yb_c00390{bottom:801.360054px;}
.yc_c00390{bottom:801.704326px;}
.yd_c00390{bottom:802.136115px;}
.ye_c00390{bottom:803.006751px;}
.yf_c00390{bottom:803.613981px;}
.y10_c00390{bottom:804.375729px;}
.y11_c00390{bottom:805.190888px;}
.y12_c00390{bottom:805.905777px;}
.y13_c00390{bottom:806.250420px;}
.y14_c00390{bottom:807.157697px;}
.y15_c00390{bottom:807.372977px;}
.y1_c00390{bottom:824.581500px;}
.y2_c00390{bottom:825.424836px;}
.y3_c00390{bottom:826.371678px;}
.y4_c00390{bottom:827.125899px;}
.y5_c00390{bottom:827.551526px;}
.y6_c00390{bottom:828.320196px;}
.y7_c00390{bottom:828.485069px;}
.y8_c00390{bottom:829.168914px;}
.y9_c00390{bottom:829.640911px;}
.ya_c00390{bottom:830.257151px;}
.h14_c00390{height:22.050000px;}
.hc_c00390{height:47.252362px;}
.hb_c00390{height:48.302415px;}
.he_c00390{height:51.450000px;}
.hd_c00390{height:51.452572px;}
.hf_c00390{height:55.650000px;}
.h11_c00390{height:57.754158px;}
.h8_c00390{height:59.855057px;}
.h10_c00390{height:60.900000px;}
.h13_c00390{height:63.000000px;}
.h7_c00390{height:64.055412px;}
.h12_c00390{height:68.254914px;}
.h3_c00390{height:68.255767px;}
.h4_c00390{height:69.305856px;}
.h5_c00390{height:70.355944px;}
.h6_c00390{height:71.406033px;}
.h2_c00390{height:72.456122px;}
.h9_c00390{height:73.506210px;}
.ha_c00390{height:74.556299px;}
.h1_c00390{height:1005.000000px;}
.h0_c00390{height:1005.150000px;}
.w0_c00390{width:715.200000px;}
.w1_c00390{width:715.500000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:90.885000px;}
.xb_c00390{left:93.845328px;}
.x39_c00390{left:96.029583px;}
.x5f_c00390{left:97.103144px;}
.x83_c00390{left:98.156441px;}
.x96_c00390{left:100.045920px;}
.xac_c00390{left:101.127000px;}
.xb2_c00390{left:111.633000px;}
.x41_c00390{left:118.991576px;}
.xc_c00390{left:120.327828px;}
.xa0_c00390{left:122.151885px;}
.x97_c00390{left:123.528975px;}
.x1d_c00390{left:126.018891px;}
.x52_c00390{left:127.666004px;}
.x72_c00390{left:129.778500px;}
.x33_c00390{left:136.745676px;}
.x98_c00390{left:140.544300px;}
.x7e_c00390{left:142.055471px;}
.x79_c00390{left:146.459247px;}
.x2b_c00390{left:150.029382px;}
.x8e_c00390{left:151.302000px;}
.x24_c00390{left:152.528702px;}
.xd_c00390{left:153.542328px;}
.x2_c00390{left:155.757000px;}
.x60_c00390{left:157.048364px;}
.x42_c00390{left:158.941542px;}
.x7f_c00390{left:160.550705px;}
.x4c_c00390{left:165.192369px;}
.x25_c00390{left:167.306702px;}
.x15_c00390{left:173.795949px;}
.x99_c00390{left:174.837435px;}
.x34_c00390{left:176.435717px;}
.xa1_c00390{left:178.860315px;}
.x6b_c00390{left:180.232803px;}
.xb3_c00390{left:181.795500px;}
.x1e_c00390{left:183.225891px;}
.x59_c00390{left:189.999516px;}
.x47_c00390{left:191.105102px;}
.x3a_c00390{left:196.468083px;}
.x8f_c00390{left:199.354500px;}
.x77_c00390{left:202.687994px;}
.x43_c00390{left:205.137333px;}
.x35_c00390{left:206.162367px;}
.xad_c00390{left:207.775500px;}
.x6c_c00390{left:210.211083px;}
.x9a_c00390{left:212.361435px;}
.x53_c00390{left:215.388941px;}
.xe_c00390{left:220.514328px;}
.x26_c00390{left:223.199702px;}
.xa4_c00390{left:224.370000px;}
.x16_c00390{left:227.535747px;}
.x3_c00390{left:228.591000px;}
.x61_c00390{left:231.297408px;}
.x73_c00390{left:232.372500px;}
.x2c_c00390{left:239.965392px;}
.x4d_c00390{left:242.626869px;}
.xb4_c00390{left:244.207500px;}
.x7a_c00390{left:249.146073px;}
.x80_c00390{left:250.470875px;}
.x5a_c00390{left:252.370197px;}
.x48_c00390{left:254.284421px;}
.x1f_c00390{left:258.857391px;}
.x88_c00390{left:265.509343px;}
.xf_c00390{left:267.224328px;}
.x54_c00390{left:268.330191px;}
.xb1_c00390{left:270.540000px;}
.xa5_c00390{left:272.160000px;}
.x3b_c00390{left:274.471083px;}
.x2d_c00390{left:277.999374px;}
.x27_c00390{left:279.923702px;}
.x74_c00390{left:280.975500px;}
.x9b_c00390{left:283.656585px;}
.x4_c00390{left:286.608000px;}
.x20_c00390{left:289.109391px;}
.x89_c00390{left:291.164175px;}
.x84_c00390{left:294.720495px;}
.x67_c00390{left:300.153369px;}
.x17_c00390{left:302.366772px;}
.x49_c00390{left:307.433103px;}
.x90_c00390{left:311.158500px;}
.x5b_c00390{left:312.573417px;}
.x62_c00390{left:314.186336px;}
.x3c_c00390{left:316.240083px;}
.x5_c00390{left:319.348500px;}
.x6d_c00390{left:320.600450px;}
.x4e_c00390{left:322.635369px;}
.x10_c00390{left:325.820328px;}
.x68_c00390{left:330.120369px;}
.x3d_c00390{left:332.278083px;}
.x9c_c00390{left:334.188060px;}
.x91_c00390{left:335.749500px;}
.x85_c00390{left:336.860541px;}
.x8c_c00390{left:339.520602px;}
.x2e_c00390{left:342.282890px;}
.x5c_c00390{left:345.019488px;}
.x7b_c00390{left:347.107841px;}
.x55_c00390{left:349.336479px;}
.xa6_c00390{left:351.000000px;}
.x3e_c00390{left:352.547583px;}
.x36_c00390{left:355.227678px;}
.x28_c00390{left:363.353702px;}
.x18_c00390{left:368.992914px;}
.x21_c00390{left:370.112391px;}
.x7c_c00390{left:373.038672px;}
.x69_c00390{left:376.300869px;}
.x6_c00390{left:378.477000px;}
.x4f_c00390{left:380.146869px;}
.xb5_c00390{left:383.022000px;}
.x63_c00390{left:384.101919px;}
.x44_c00390{left:386.625095px;}
.x11_c00390{left:388.524828px;}
.x7_c00390{left:391.159500px;}
.x8a_c00390{left:392.215981px;}
.x6e_c00390{left:397.375439px;}
.xb6_c00390{left:398.810334px;}
.x3f_c00390{left:400.018083px;}
.x92_c00390{left:401.346000px;}
.xae_c00390{left:404.343000px;}
.x9d_c00390{left:406.465665px;}
.x4a_c00390{left:408.979910px;}
.x2f_c00390{left:411.356081px;}
.x19_c00390{left:413.309829px;}
.x22_c00390{left:419.535891px;}
.x37_c00390{left:423.295830px;}
.x5d_c00390{left:424.636955px;}
.x56_c00390{left:426.595962px;}
.x9e_c00390{left:430.533705px;}
.x81_c00390{left:434.292273px;}
.x93_c00390{left:438.331500px;}
.x8b_c00390{left:439.742606px;}
.x64_c00390{left:441.335178px;}
.x38_c00390{left:442.697591px;}
.x8_c00390{left:443.763000px;}
.x30_c00390{left:445.996926px;}
.x75_c00390{left:448.006500px;}
.x9f_c00390{left:451.328880px;}
.xa2_c00390{left:452.391585px;}
.x6a_c00390{left:453.811869px;}
.xa7_c00390{left:456.570000px;}
.x6f_c00390{left:457.845018px;}
.x8d_c00390{left:462.423102px;}
.x57_c00390{left:466.016915px;}
.x45_c00390{left:467.616989px;}
.x12_c00390{left:470.027328px;}
.x78_c00390{left:475.114572px;}
.x1a_c00390{left:477.262991px;}
.x9_c00390{left:480.070500px;}
.x65_c00390{left:481.857152px;}
.x50_c00390{left:483.393369px;}
.x94_c00390{left:487.483500px;}
.x5e_c00390{left:489.058116px;}
.x51_c00390{left:492.723369px;}
.xa8_c00390{left:497.070000px;}
.x70_c00390{left:502.357169px;}
.x86_c00390{left:504.244706px;}
.xa3_c00390{left:506.391045px;}
.x29_c00390{left:508.090202px;}
.x1b_c00390{left:511.557042px;}
.x23_c00390{left:513.218391px;}
.x31_c00390{left:517.504715px;}
.x4b_c00390{left:520.492872px;}
.x76_c00390{left:525.085500px;}
.xa_c00390{left:527.473500px;}
.xaf_c00390{left:528.541500px;}
.x7d_c00390{left:529.937719px;}
.xa9_c00390{left:533.250000px;}
.x71_c00390{left:536.411046px;}
.x2a_c00390{left:537.728702px;}
.x13_c00390{left:539.817828px;}
.x46_c00390{left:541.856058px;}
.x66_c00390{left:542.987352px;}
.x82_c00390{left:545.323716px;}
.x40_c00390{left:546.401583px;}
.xaa_c00390{left:549.180000px;}
.x1c_c00390{left:552.930996px;}
.x14_c00390{left:556.377828px;}
.x87_c00390{left:558.761427px;}
.x95_c00390{left:564.964500px;}
.x32_c00390{left:569.664743px;}
.x58_c00390{left:571.761416px;}
.xab_c00390{left:601.560000px;}
.xb0_c00390{left:603.360000px;}
.xb7_c00390{left:606.455214px;}
.xb8_c00390{left:621.000000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.fs12_c00390{font-size:19.600000pt;}
.fsa_c00390{font-size:42.002100pt;}
.fs9_c00390{font-size:42.935480pt;}
.fsc_c00390{font-size:45.733333pt;}
.fsb_c00390{font-size:45.735620pt;}
.fsd_c00390{font-size:49.466667pt;}
.fsf_c00390{font-size:51.337029pt;}
.fs6_c00390{font-size:53.204495pt;}
.fse_c00390{font-size:54.133333pt;}
.fs11_c00390{font-size:56.000000pt;}
.fs5_c00390{font-size:56.938144pt;}
.fs10_c00390{font-size:60.671035pt;}
.fs1_c00390{font-size:60.671793pt;}
.fs2_c00390{font-size:61.605205pt;}
.fs3_c00390{font-size:62.538617pt;}
.fs4_c00390{font-size:63.472029pt;}
.fs0_c00390{font-size:64.405442pt;}
.fs7_c00390{font-size:65.338854pt;}
.fs8_c00390{font-size:66.272266pt;}
.y0_c00390{bottom:0.000000pt;}
.y126_c00390{bottom:115.557333pt;}
.y127_c00390{bottom:121.440000pt;}
.y123_c00390{bottom:125.778357pt;}
.y124_c00390{bottom:125.778965pt;}
.y125_c00390{bottom:125.779584pt;}
.y118_c00390{bottom:138.001333pt;}
.y119_c00390{bottom:138.404501pt;}
.y11a_c00390{bottom:138.749733pt;}
.y11b_c00390{bottom:138.934597pt;}
.y11c_c00390{bottom:139.415461pt;}
.y11d_c00390{bottom:139.766965pt;}
.y11e_c00390{bottom:140.512277pt;}
.y11f_c00390{bottom:140.896149pt;}
.y120_c00390{bottom:141.823029pt;}
.y121_c00390{bottom:142.779813pt;}
.y122_c00390{bottom:143.230677pt;}
.y117_c00390{bottom:156.490667pt;}
.y10c_c00390{bottom:170.402667pt;}
.y10d_c00390{bottom:171.044000pt;}
.y10e_c00390{bottom:171.918667pt;}
.y10f_c00390{bottom:172.498667pt;}
.y110_c00390{bottom:173.009333pt;}
.y111_c00390{bottom:173.957333pt;}
.y112_c00390{bottom:174.713333pt;}
.y113_c00390{bottom:175.028000pt;}
.y114_c00390{bottom:175.845333pt;}
.y115_c00390{bottom:176.478667pt;}
.y116_c00390{bottom:177.542667pt;}
.y10b_c00390{bottom:191.018667pt;}
.yff_c00390{bottom:202.122147pt;}
.y100_c00390{bottom:202.341653pt;}
.y101_c00390{bottom:202.896400pt;}
.y102_c00390{bottom:203.625587pt;}
.y103_c00390{bottom:204.420053pt;}
.y104_c00390{bottom:204.572267pt;}
.y105_c00390{bottom:204.865640pt;}
.y106_c00390{bottom:205.071467pt;}
.y107_c00390{bottom:205.570480pt;}
.y108_c00390{bottom:205.852360pt;}
.y109_c00390{bottom:206.098480pt;}
.y10a_c00390{bottom:206.494453pt;}
.yf1_c00390{bottom:217.921400pt;}
.yf2_c00390{bottom:218.214147pt;}
.yf3_c00390{bottom:218.425400pt;}
.yf4_c00390{bottom:218.851573pt;}
.yf5_c00390{bottom:219.318467pt;}
.yf6_c00390{bottom:219.684133pt;}
.yf7_c00390{bottom:220.205560pt;}
.yf8_c00390{bottom:220.834747pt;}
.yf9_c00390{bottom:221.029667pt;}
.yfa_c00390{bottom:221.734573pt;}
.yfb_c00390{bottom:222.033853pt;}
.yfc_c00390{bottom:222.292040pt;}
.yfd_c00390{bottom:222.610747pt;}
.yfe_c00390{bottom:223.064040pt;}
.ye1_c00390{bottom:234.481333pt;}
.ye2_c00390{bottom:234.949333pt;}
.ye3_c00390{bottom:235.239720pt;}
.ye4_c00390{bottom:235.376467pt;}
.ye5_c00390{bottom:235.661880pt;}
.ye6_c00390{bottom:235.837453pt;}
.ye7_c00390{bottom:236.370280pt;}
.ye8_c00390{bottom:236.588867pt;}
.ye9_c00390{bottom:236.713547pt;}
.yea_c00390{bottom:237.171947pt;}
.yeb_c00390{bottom:237.332453pt;}
.yec_c00390{bottom:237.500707pt;}
.yed_c00390{bottom:237.680800pt;}
.yee_c00390{bottom:237.937613pt;}
.yef_c00390{bottom:238.307200pt;}
.yf0_c00390{bottom:238.626333pt;}
.yd7_c00390{bottom:284.635389pt;}
.yd8_c00390{bottom:284.969281pt;}
.yd9_c00390{bottom:285.696259pt;}
.yda_c00390{bottom:286.379400pt;}
.ydb_c00390{bottom:287.424236pt;}
.ydc_c00390{bottom:287.786572pt;}
.ydd_c00390{bottom:288.435237pt;}
.yde_c00390{bottom:288.844443pt;}
.ydf_c00390{bottom:289.088063pt;}
.ye0_c00390{bottom:289.715044pt;}
.ycf_c00390{bottom:305.516663pt;}
.yd0_c00390{bottom:307.376511pt;}
.yd1_c00390{bottom:307.650296pt;}
.yd2_c00390{bottom:308.025905pt;}
.yd3_c00390{bottom:308.728657pt;}
.yd4_c00390{bottom:309.235180pt;}
.yd5_c00390{bottom:310.002920pt;}
.yd6_c00390{bottom:310.165641pt;}
.yc4_c00390{bottom:325.918115pt;}
.yc5_c00390{bottom:326.462600pt;}
.yc6_c00390{bottom:327.315679pt;}
.yc7_c00390{bottom:328.014825pt;}
.yc8_c00390{bottom:328.464437pt;}
.yc9_c00390{bottom:329.138621pt;}
.yca_c00390{bottom:329.833191pt;}
.ycb_c00390{bottom:330.029004pt;}
.ycc_c00390{bottom:330.250629pt;}
.ycd_c00390{bottom:330.630209pt;}
.yce_c00390{bottom:330.831259pt;}
.yba_c00390{bottom:346.559436pt;}
.ybb_c00390{bottom:347.042209pt;}
.ybc_c00390{bottom:347.239929pt;}
.ybd_c00390{bottom:348.198993pt;}
.ybe_c00390{bottom:348.993239pt;}
.ybf_c00390{bottom:349.180177pt;}
.yc0_c00390{bottom:349.905048pt;}
.yc1_c00390{bottom:350.159124pt;}
.yc2_c00390{bottom:350.609117pt;}
.yc3_c00390{bottom:351.343471pt;}
.yb0_c00390{bottom:367.200707pt;}
.yb1_c00390{bottom:367.727251pt;}
.yb2_c00390{bottom:368.613976pt;}
.yb3_c00390{bottom:368.823172pt;}
.yb4_c00390{bottom:369.868493pt;}
.yb5_c00390{bottom:370.145468pt;}
.yb6_c00390{bottom:370.931427pt;}
.yb7_c00390{bottom:371.533533pt;}
.yb8_c00390{bottom:371.818500pt;}
.yb9_c00390{bottom:372.108840pt;}
.ya6_c00390{bottom:387.360845pt;}
.ya7_c00390{bottom:387.949921pt;}
.ya8_c00390{bottom:388.269467pt;}
.ya9_c00390{bottom:388.397721pt;}
.yaa_c00390{bottom:389.220043pt;}
.yab_c00390{bottom:389.783444pt;}
.yac_c00390{bottom:390.517661pt;}
.yad_c00390{bottom:391.061680pt;}
.yae_c00390{bottom:391.483651pt;}
.yaf_c00390{bottom:391.759908pt;}
.y9e_c00390{bottom:408.002667pt;}
.y9f_c00390{bottom:408.782597pt;}
.ya0_c00390{bottom:409.188197pt;}
.ya1_c00390{bottom:409.749832pt;}
.ya2_c00390{bottom:410.776381pt;}
.ya3_c00390{bottom:411.679968pt;}
.ya4_c00390{bottom:411.915563pt;}
.ya5_c00390{bottom:412.570659pt;}
.y93_c00390{bottom:428.379713pt;}
.y94_c00390{bottom:429.203629pt;}
.y95_c00390{bottom:429.496703pt;}
.y96_c00390{bottom:429.811204pt;}
.y97_c00390{bottom:430.272753pt;}
.y98_c00390{bottom:430.576280pt;}
.y99_c00390{bottom:430.853907pt;}
.y9a_c00390{bottom:431.327435pt;}
.y9b_c00390{bottom:431.918176pt;}
.y9c_c00390{bottom:432.353859pt;}
.y9d_c00390{bottom:432.687360pt;}
.y89_c00390{bottom:449.021975pt;}
.y8a_c00390{bottom:449.666983pt;}
.y8b_c00390{bottom:450.129401pt;}
.y8c_c00390{bottom:450.613244pt;}
.y8d_c00390{bottom:451.408896pt;}
.y8e_c00390{bottom:451.755181pt;}
.y8f_c00390{bottom:452.288823pt;}
.y90_c00390{bottom:453.184505pt;}
.y91_c00390{bottom:453.821263pt;}
.y92_c00390{bottom:454.036161pt;}
.y80_c00390{bottom:468.944564pt;}
.y81_c00390{bottom:469.690607pt;}
.y82_c00390{bottom:470.613940pt;}
.y83_c00390{bottom:471.645113pt;}
.y84_c00390{bottom:471.992084pt;}
.y85_c00390{bottom:472.515704pt;}
.y86_c00390{bottom:473.227741pt;}
.y87_c00390{bottom:473.732001pt;}
.y88_c00390{bottom:474.493071pt;}
.y77_c00390{bottom:489.585947pt;}
.y78_c00390{bottom:490.748203pt;}
.y79_c00390{bottom:491.524940pt;}
.y7a_c00390{bottom:492.273964pt;}
.y7b_c00390{bottom:492.678235pt;}
.y7c_c00390{bottom:492.778311pt;}
.y7d_c00390{bottom:493.668937pt;}
.y7e_c00390{bottom:494.470703pt;}
.y7f_c00390{bottom:494.700059pt;}
.y6e_c00390{bottom:509.506696pt;}
.y6f_c00390{bottom:509.997945pt;}
.y70_c00390{bottom:511.323685pt;}
.y71_c00390{bottom:512.123483pt;}
.y72_c00390{bottom:513.347604pt;}
.y73_c00390{bottom:514.515093pt;}
.y74_c00390{bottom:515.110648pt;}
.y75_c00390{bottom:515.755799pt;}
.y76_c00390{bottom:516.708648pt;}
.y61_c00390{bottom:530.388501pt;}
.y62_c00390{bottom:531.196425pt;}
.y63_c00390{bottom:531.935311pt;}
.y64_c00390{bottom:532.091224pt;}
.y65_c00390{bottom:532.591117pt;}
.y66_c00390{bottom:533.015767pt;}
.y67_c00390{bottom:533.680344pt;}
.y68_c00390{bottom:534.176424pt;}
.y69_c00390{bottom:534.394841pt;}
.y6a_c00390{bottom:534.722372pt;}
.y6b_c00390{bottom:534.873415pt;}
.y6c_c00390{bottom:534.981228pt;}
.y6d_c00390{bottom:535.277524pt;}
.y59_c00390{bottom:550.549615pt;}
.y5a_c00390{bottom:551.585923pt;}
.y5b_c00390{bottom:552.259985pt;}
.y5c_c00390{bottom:552.827473pt;}
.y5d_c00390{bottom:553.346823pt;}
.y5e_c00390{bottom:553.911555pt;}
.y5f_c00390{bottom:554.659915pt;}
.y60_c00390{bottom:555.100132pt;}
.y4f_c00390{bottom:569.989904pt;}
.y50_c00390{bottom:570.313249pt;}
.y51_c00390{bottom:570.845572pt;}
.y52_c00390{bottom:571.462071pt;}
.y53_c00390{bottom:571.769419pt;}
.y54_c00390{bottom:572.377079pt;}
.y55_c00390{bottom:573.883317pt;}
.y56_c00390{bottom:574.369608pt;}
.y57_c00390{bottom:574.963248pt;}
.y58_c00390{bottom:575.953144pt;}
.y46_c00390{bottom:590.871429pt;}
.y47_c00390{bottom:592.032052pt;}
.y48_c00390{bottom:592.933420pt;}
.y49_c00390{bottom:593.416084pt;}
.y4a_c00390{bottom:593.601412pt;}
.y4b_c00390{bottom:593.835637pt;}
.y4c_c00390{bottom:594.384185pt;}
.y4d_c00390{bottom:595.317308pt;}
.y4e_c00390{bottom:596.075728pt;}
.y3c_c00390{bottom:611.271971pt;}
.y3d_c00390{bottom:611.646691pt;}
.y3e_c00390{bottom:611.999980pt;}
.y3f_c00390{bottom:612.264808pt;}
.y40_c00390{bottom:613.277413pt;}
.y41_c00390{bottom:613.589940pt;}
.y42_c00390{bottom:614.195141pt;}
.y43_c00390{bottom:614.367331pt;}
.y44_c00390{bottom:614.666768pt;}
.y45_c00390{bottom:615.031831pt;}
.y31_c00390{bottom:631.434191pt;}
.y32_c00390{bottom:631.926259pt;}
.y33_c00390{bottom:632.725479pt;}
.y34_c00390{bottom:633.063632pt;}
.y35_c00390{bottom:633.483347pt;}
.y36_c00390{bottom:633.634435pt;}
.y37_c00390{bottom:634.046451pt;}
.y38_c00390{bottom:634.248583pt;}
.y39_c00390{bottom:634.556861pt;}
.y3a_c00390{bottom:635.192475pt;}
.y3b_c00390{bottom:635.656523pt;}
.y27_c00390{bottom:652.076329pt;}
.y28_c00390{bottom:652.757321pt;}
.y29_c00390{bottom:652.928089pt;}
.y2a_c00390{bottom:653.573964pt;}
.y2b_c00390{bottom:654.229441pt;}
.y2c_c00390{bottom:655.193521pt;}
.y2d_c00390{bottom:655.836345pt;}
.y2e_c00390{bottom:656.425332pt;}
.y2f_c00390{bottom:656.866032pt;}
.y30_c00390{bottom:657.208521pt;}
.y1f_c00390{bottom:671.997596pt;}
.y20_c00390{bottom:672.373019pt;}
.y21_c00390{bottom:673.034077pt;}
.y22_c00390{bottom:673.908041pt;}
.y23_c00390{bottom:674.257620pt;}
.y24_c00390{bottom:675.193655pt;}
.y25_c00390{bottom:675.764771pt;}
.y26_c00390{bottom:676.847324pt;}
.y16_c00390{bottom:692.398408pt;}
.y17_c00390{bottom:693.403236pt;}
.y18_c00390{bottom:694.072237pt;}
.y19_c00390{bottom:695.003629pt;}
.y1a_c00390{bottom:695.832208pt;}
.y1b_c00390{bottom:696.384321pt;}
.y1c_c00390{bottom:697.180679pt;}
.y1d_c00390{bottom:697.607637pt;}
.y1e_c00390{bottom:698.123076pt;}
.yb_c00390{bottom:712.320048pt;}
.yc_c00390{bottom:712.626068pt;}
.yd_c00390{bottom:713.009880pt;}
.ye_c00390{bottom:713.783779pt;}
.yf_c00390{bottom:714.323539pt;}
.y10_c00390{bottom:715.000648pt;}
.y11_c00390{bottom:715.725233pt;}
.y12_c00390{bottom:716.360691pt;}
.y13_c00390{bottom:716.667040pt;}
.y14_c00390{bottom:717.473508pt;}
.y15_c00390{bottom:717.664868pt;}
.y1_c00390{bottom:732.961333pt;}
.y2_c00390{bottom:733.710965pt;}
.y3_c00390{bottom:734.552603pt;}
.y4_c00390{bottom:735.223021pt;}
.y5_c00390{bottom:735.601356pt;}
.y6_c00390{bottom:736.284619pt;}
.y7_c00390{bottom:736.431172pt;}
.y8_c00390{bottom:737.039035pt;}
.y9_c00390{bottom:737.458588pt;}
.ya_c00390{bottom:738.006356pt;}
.h14_c00390{height:19.600000pt;}
.hc_c00390{height:42.002100pt;}
.hb_c00390{height:42.935480pt;}
.he_c00390{height:45.733333pt;}
.hd_c00390{height:45.735620pt;}
.hf_c00390{height:49.466667pt;}
.h11_c00390{height:51.337029pt;}
.h8_c00390{height:53.204495pt;}
.h10_c00390{height:54.133333pt;}
.h13_c00390{height:56.000000pt;}
.h7_c00390{height:56.938144pt;}
.h12_c00390{height:60.671035pt;}
.h3_c00390{height:60.671793pt;}
.h4_c00390{height:61.605205pt;}
.h5_c00390{height:62.538617pt;}
.h6_c00390{height:63.472029pt;}
.h2_c00390{height:64.405442pt;}
.h9_c00390{height:65.338854pt;}
.ha_c00390{height:66.272266pt;}
.h1_c00390{height:893.333333pt;}
.h0_c00390{height:893.466667pt;}
.w0_c00390{width:635.733333pt;}
.w1_c00390{width:636.000000pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:80.786667pt;}
.xb_c00390{left:83.418069pt;}
.x39_c00390{left:85.359629pt;}
.x5f_c00390{left:86.313905pt;}
.x83_c00390{left:87.250169pt;}
.x96_c00390{left:88.929707pt;}
.xac_c00390{left:89.890667pt;}
.xb2_c00390{left:99.229333pt;}
.x41_c00390{left:105.770289pt;}
.xc_c00390{left:106.958069pt;}
.xa0_c00390{left:108.579453pt;}
.x97_c00390{left:109.803533pt;}
.x1d_c00390{left:112.016792pt;}
.x52_c00390{left:113.480892pt;}
.x72_c00390{left:115.358667pt;}
.x33_c00390{left:121.551712pt;}
.x98_c00390{left:124.928267pt;}
.x7e_c00390{left:126.271529pt;}
.x79_c00390{left:130.185997pt;}
.x2b_c00390{left:133.359451pt;}
.x8e_c00390{left:134.490667pt;}
.x24_c00390{left:135.581068pt;}
.xd_c00390{left:136.482069pt;}
.x2_c00390{left:138.450667pt;}
.x60_c00390{left:139.598545pt;}
.x42_c00390{left:141.281371pt;}
.x7f_c00390{left:142.711737pt;}
.x4c_c00390{left:146.837661pt;}
.x25_c00390{left:148.717068pt;}
.x15_c00390{left:154.485288pt;}
.x99_c00390{left:155.411053pt;}
.x34_c00390{left:156.831748pt;}
.xa1_c00390{left:158.986947pt;}
.x6b_c00390{left:160.206936pt;}
.xb3_c00390{left:161.596000pt;}
.x1e_c00390{left:162.867459pt;}
.x59_c00390{left:168.888459pt;}
.x47_c00390{left:169.871201pt;}
.x3a_c00390{left:174.638296pt;}
.x8f_c00390{left:177.204000pt;}
.x77_c00390{left:180.167105pt;}
.x43_c00390{left:182.344296pt;}
.x35_c00390{left:183.255437pt;}
.xad_c00390{left:184.689333pt;}
.x6c_c00390{left:186.854296pt;}
.x9a_c00390{left:188.765720pt;}
.x53_c00390{left:191.456836pt;}
.xe_c00390{left:196.012736pt;}
.x26_c00390{left:198.399735pt;}
.xa4_c00390{left:199.440000pt;}
.x16_c00390{left:202.253997pt;}
.x3_c00390{left:203.192000pt;}
.x61_c00390{left:205.597696pt;}
.x73_c00390{left:206.553333pt;}
.x2c_c00390{left:213.302571pt;}
.x4d_c00390{left:215.668328pt;}
.xb4_c00390{left:217.073333pt;}
.x7a_c00390{left:221.463176pt;}
.x80_c00390{left:222.640777pt;}
.x5a_c00390{left:224.329064pt;}
.x48_c00390{left:226.030596pt;}
.x1f_c00390{left:230.095459pt;}
.x88_c00390{left:236.008305pt;}
.xf_c00390{left:237.532736pt;}
.x54_c00390{left:238.515725pt;}
.xb1_c00390{left:240.480000pt;}
.xa5_c00390{left:241.920000pt;}
.x3b_c00390{left:243.974296pt;}
.x2d_c00390{left:247.110555pt;}
.x27_c00390{left:248.821068pt;}
.x74_c00390{left:249.756000pt;}
.x9b_c00390{left:252.139187pt;}
.x4_c00390{left:254.762667pt;}
.x20_c00390{left:256.986125pt;}
.x89_c00390{left:258.812600pt;}
.x84_c00390{left:261.973773pt;}
.x67_c00390{left:266.802995pt;}
.x17_c00390{left:268.770464pt;}
.x49_c00390{left:273.273869pt;}
.x90_c00390{left:276.585333pt;}
.x5b_c00390{left:277.843037pt;}
.x62_c00390{left:279.276743pt;}
.x3c_c00390{left:281.102296pt;}
.x5_c00390{left:283.865333pt;}
.x6d_c00390{left:284.978177pt;}
.x4e_c00390{left:286.786995pt;}
.x10_c00390{left:289.618069pt;}
.x68_c00390{left:293.440328pt;}
.x3d_c00390{left:295.358296pt;}
.x9c_c00390{left:297.056053pt;}
.x91_c00390{left:298.444000pt;}
.x85_c00390{left:299.431592pt;}
.x8c_c00390{left:301.796091pt;}
.x2e_c00390{left:304.251457pt;}
.x5c_c00390{left:306.683989pt;}
.x7b_c00390{left:308.540303pt;}
.x55_c00390{left:310.521315pt;}
.xa6_c00390{left:312.000000pt;}
.x3e_c00390{left:313.375629pt;}
.x36_c00390{left:315.757936pt;}
.x28_c00390{left:322.981068pt;}
.x18_c00390{left:327.993701pt;}
.x21_c00390{left:328.988792pt;}
.x7c_c00390{left:331.589931pt;}
.x69_c00390{left:334.489661pt;}
.x6_c00390{left:336.424000pt;}
.x4f_c00390{left:337.908328pt;}
.xb5_c00390{left:340.464000pt;}
.x63_c00390{left:341.423928pt;}
.x44_c00390{left:343.666751pt;}
.x11_c00390{left:345.355403pt;}
.x7_c00390{left:347.697333pt;}
.x8a_c00390{left:348.636428pt;}
.x6e_c00390{left:353.222612pt;}
.xb6_c00390{left:354.498075pt;}
.x3f_c00390{left:355.571629pt;}
.x92_c00390{left:356.752000pt;}
.xae_c00390{left:359.416000pt;}
.x9d_c00390{left:361.302813pt;}
.x4a_c00390{left:363.537697pt;}
.x2f_c00390{left:365.649849pt;}
.x19_c00390{left:367.386515pt;}
.x22_c00390{left:372.920792pt;}
.x37_c00390{left:376.262960pt;}
.x5d_c00390{left:377.455071pt;}
.x56_c00390{left:379.196411pt;}
.x9e_c00390{left:382.696627pt;}
.x81_c00390{left:386.037576pt;}
.x93_c00390{left:389.628000pt;}
.x8b_c00390{left:390.882316pt;}
.x64_c00390{left:392.297936pt;}
.x38_c00390{left:393.508969pt;}
.x8_c00390{left:394.456000pt;}
.x30_c00390{left:396.441712pt;}
.x75_c00390{left:398.228000pt;}
.x9f_c00390{left:401.181227pt;}
.xa2_c00390{left:402.125853pt;}
.x6a_c00390{left:403.388328pt;}
.xa7_c00390{left:405.840000pt;}
.x6f_c00390{left:406.973349pt;}
.x8d_c00390{left:411.042757pt;}
.x57_c00390{left:414.237257pt;}
.x45_c00390{left:415.659545pt;}
.x12_c00390{left:417.802069pt;}
.x78_c00390{left:422.324064pt;}
.x1a_c00390{left:424.233769pt;}
.x9_c00390{left:426.729333pt;}
.x65_c00390{left:428.317468pt;}
.x50_c00390{left:429.682995pt;}
.x94_c00390{left:433.318667pt;}
.x5e_c00390{left:434.718325pt;}
.x51_c00390{left:437.976328pt;}
.xa8_c00390{left:441.840000pt;}
.x70_c00390{left:446.539705pt;}
.x86_c00390{left:448.217516pt;}
.xa3_c00390{left:450.125373pt;}
.x29_c00390{left:451.635735pt;}
.x1b_c00390{left:454.717371pt;}
.x23_c00390{left:456.194125pt;}
.x31_c00390{left:460.004191pt;}
.x4b_c00390{left:462.660331pt;}
.x76_c00390{left:466.742667pt;}
.xa_c00390{left:468.865333pt;}
.xaf_c00390{left:469.814667pt;}
.x7d_c00390{left:471.055751pt;}
.xa9_c00390{left:474.000000pt;}
.x71_c00390{left:476.809819pt;}
.x2a_c00390{left:477.981068pt;}
.x13_c00390{left:479.838069pt;}
.x46_c00390{left:481.649829pt;}
.x66_c00390{left:482.655424pt;}
.x82_c00390{left:484.732192pt;}
.x40_c00390{left:485.690296pt;}
.xaa_c00390{left:488.160000pt;}
.x1c_c00390{left:491.494219pt;}
.x14_c00390{left:494.558069pt;}
.x87_c00390{left:496.676824pt;}
.x95_c00390{left:502.190667pt;}
.x32_c00390{left:506.368660pt;}
.x58_c00390{left:508.232369pt;}
.xab_c00390{left:534.720000pt;}
.xb0_c00390{left:536.320000pt;}
.xb7_c00390{left:539.071301pt;}
.xb8_c00390{left:552.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m122_c00391{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);}
.mfe_c00391{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);}
.m83_c00391{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);}
.m102_c00391{transform:matrix(0.037480,0.000600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.037480,0.000600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.037480,0.000600,-0.003999,0.249968,0,0);}
.m53_c00391{transform:matrix(0.079300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079300,0.000000,0.000000,0.250000,0,0);}
.mf0_c00391{transform:matrix(0.080710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080710,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);}
.ma1_c00391{transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087555,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);}
.m9b_c00391{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.md9_c00391{transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);}
.mf7_c00391{transform:matrix(0.099910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099910,0.000000,0.000000,0.250000,0,0);}
.mf6_c00391{transform:matrix(0.112060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112060,0.000000,0.000000,0.250000,0,0);}
.m129_c00391{transform:matrix(0.112480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112480,0.000000,0.000000,0.250000,0,0);}
.m134_c00391{transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112890,0.000000,0.000000,0.250000,0,0);}
.m100_c00391{transform:matrix(0.113720,0.001820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.113720,0.001820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.113720,0.001820,-0.003999,0.249968,0,0);}
.m7f_c00391{transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120340,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.130395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130395,0.000000,0.000000,0.250000,0,0);}
.m35_c00391{transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);}
.m6c_c00391{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);}
.m68_c00391{transform:matrix(0.139660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139660,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);}
.m101_c00391{transform:matrix(0.141557,0.002265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.141557,0.002265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.141557,0.002265,-0.003999,0.249968,0,0);}
.mf5_c00391{transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143460,0.000000,0.000000,0.250000,0,0);}
.m117_c00391{transform:matrix(0.143467,0.002295,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143467,0.002295,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143467,0.002295,-0.003999,0.249968,0,0);}
.mb9_c00391{transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);}
.m8f_c00391{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m128_c00391{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);}
.m11b_c00391{transform:matrix(0.147161,0.002355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147161,0.002355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147161,0.002355,-0.003999,0.249968,0,0);}
.m127_c00391{transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148495,0.000000,0.000000,0.250000,0,0);}
.m114_c00391{transform:matrix(0.149331,0.002389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149331,0.002389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149331,0.002389,-0.003999,0.249968,0,0);}
.mdf_c00391{transform:matrix(0.149715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149715,0.000000,0.000000,0.250000,0,0);}
.m55_c00391{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00391{transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);}
.m28_c00391{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);}
.m11f_c00391{transform:matrix(0.150551,0.002409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150551,0.002409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150551,0.002409,-0.003999,0.249968,0,0);}
.mfa_c00391{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);}
.m2c_c00391{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);}
.m59_c00391{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);}
.mcf_c00391{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);}
.m67_c00391{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);}
.m78_c00391{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);}
.m112_c00391{transform:matrix(0.156710,0.002507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156710,0.002507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156710,0.002507,-0.003999,0.249968,0,0);}
.mac_c00391{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);}
.mc_c00391{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);}
.mdc_c00391{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);}
.me2_c00391{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);}
.m54_c00391{transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158690,0.000000,0.000000,0.250000,0,0);}
.mf8_c00391{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);}
.m11c_c00391{transform:matrix(0.160219,0.002564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160219,0.002564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160219,0.002564,-0.003999,0.249968,0,0);}
.mdb_c00391{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);}
.me3_c00391{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);}
.m74_c00391{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);}
.mc6_c00391{transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);}
.mce_c00391{transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162895,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{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);}
.mfb_c00391{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);}
.m94_c00391{transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);}
.m10d_c00391{transform:matrix(0.164559,0.002633,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164559,0.002633,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164559,0.002633,-0.003999,0.249968,0,0);}
.m5a_c00391{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);}
.mf4_c00391{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);}
.m80_c00391{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);}
.m52_c00391{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);}
.m15_c00391{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);}
.m118_c00391{transform:matrix(0.166084,0.002657,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166084,0.002657,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166084,0.002657,-0.003999,0.249968,0,0);}
.me6_c00391{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);}
.m63_c00391{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);}
.me1_c00391{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);}
.mf2_c00391{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);}
.m7b_c00391{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);}
.m1c_c00391{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);}
.mfc_c00391{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);}
.ma7_c00391{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);}
.m34_c00391{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);}
.m6f_c00391{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);}
.m8e_c00391{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);}
.m69_c00391{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);}
.mf3_c00391{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);}
.m116_c00391{transform:matrix(0.171653,0.002746,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171653,0.002746,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171653,0.002746,-0.003999,0.249968,0,0);}
.m71_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);}
.me4_c00391{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);}
.m82_c00391{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);}
.mc1_c00391{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);}
.m10c_c00391{transform:matrix(0.172123,0.002754,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172123,0.002754,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172123,0.002754,-0.003999,0.249968,0,0);}
.mf9_c00391{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);}
.m10a_c00391{transform:matrix(0.173228,0.002772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173228,0.002772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173228,0.002772,-0.003999,0.249968,0,0);}
.m113_c00391{transform:matrix(0.173283,0.002773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173283,0.002773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173283,0.002773,-0.003999,0.249968,0,0);}
.m7d_c00391{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);}
.m75_c00391{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);}
.mdd_c00391{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);}
.mb3_c00391{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);}
.m5e_c00391{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);}
.m26_c00391{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);}
.m115_c00391{transform:matrix(0.175458,0.002807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175458,0.002807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175458,0.002807,-0.003999,0.249968,0,0);}
.me_c00391{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{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);}
.md7_c00391{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);}
.m11e_c00391{transform:matrix(0.177172,0.002835,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177172,0.002835,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177172,0.002835,-0.003999,0.249968,0,0);}
.m109_c00391{transform:matrix(0.177182,0.002835,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177182,0.002835,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177182,0.002835,-0.003999,0.249968,0,0);}
.md4_c00391{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);}
.mb7_c00391{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);}
.md5_c00391{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);}
.m4_c00391{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);}
.mc0_c00391{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);}
.mee_c00391{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);}
.md0_c00391{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);}
.m9d_c00391{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);}
.m11d_c00391{transform:matrix(0.180852,0.002894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180852,0.002894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180852,0.002894,-0.003999,0.249968,0,0);}
.m91_c00391{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);}
.me7_c00391{transform:matrix(0.181215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181215,0.000000,0.000000,0.250000,0,0);}
.ma6_c00391{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);}
.md3_c00391{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);}
.m86_c00391{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);}
.mf1_c00391{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);}
.m1_c00391{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);}
.m70_c00391{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);}
.ma_c00391{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);}
.mc9_c00391{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);}
.m2e_c00391{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);}
.m8c_c00391{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);}
.m2a_c00391{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);}
.m21_c00391{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);}
.m9c_c00391{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);}
.m7a_c00391{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);}
.m31_c00391{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);}
.mcb_c00391{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);}
.m6a_c00391{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);}
.mcd_c00391{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);}
.m33_c00391{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);}
.m8d_c00391{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);}
.mde_c00391{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);}
.m23_c00391{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);}
.m56_c00391{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);}
.med_c00391{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);}
.m6b_c00391{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);}
.ma4_c00391{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);}
.m7c_c00391{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);}
.m76_c00391{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);}
.mba_c00391{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);}
.m51_c00391{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);}
.m77_c00391{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);}
.m96_c00391{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);}
.m97_c00391{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);}
.m30_c00391{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);}
.m9a_c00391{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);}
.mec_c00391{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);}
.m6d_c00391{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);}
.m5d_c00391{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);}
.m65_c00391{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);}
.md6_c00391{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);}
.m8b_c00391{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);}
.m1e_c00391{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);}
.m98_c00391{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);}
.ma0_c00391{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);}
.ma5_c00391{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);}
.m62_c00391{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);}
.me0_c00391{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);}
.m40_c00391{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);}
.m81_c00391{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);}
.m4e_c00391{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);}
.mbc_c00391{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);}
.m79_c00391{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);}
.m32_c00391{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);}
.mab_c00391{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);}
.m1f_c00391{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);}
.m11a_c00391{transform:matrix(0.193555,0.003097,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193555,0.003097,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193555,0.003097,-0.003999,0.249968,0,0);}
.m12a_c00391{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);}
.m103_c00391{transform:matrix(0.194540,0.003113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194540,0.003113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194540,0.003113,-0.003999,0.249968,0,0);}
.m9f_c00391{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);}
.ma3_c00391{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);}
.mbd_c00391{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);}
.m105_c00391{transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);}
.m107_c00391{transform:matrix(0.195650,0.003130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195650,0.003130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195650,0.003130,-0.003999,0.249968,0,0);}
.mb6_c00391{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);}
.m5_c00391{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);}
.m108_c00391{transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196355,0.003142,-0.003999,0.249968,0,0);}
.ma8_c00391{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);}
.m110_c00391{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);}
.mc4_c00391{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);}
.m7_c00391{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);}
.m7e_c00391{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);}
.m106_c00391{transform:matrix(0.197335,0.003157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197335,0.003157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197335,0.003157,-0.003999,0.249968,0,0);}
.mb4_c00391{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);}
.m12e_c00391{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);}
.m73_c00391{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);}
.m3_c00391{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);}
.m0_c00391{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);}
.m84_c00391{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);}
.meb_c00391{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);}
.m5f_c00391{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);}
.m5b_c00391{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);}
.m89_c00391{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);}
.m2b_c00391{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);}
.m10e_c00391{transform:matrix(0.199994,0.003200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199994,0.003200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199994,0.003200,-0.003999,0.249968,0,0);}
.m47_c00391{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);}
.mb8_c00391{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);}
.m121_c00391{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);}
.mf_c00391{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);}
.mae_c00391{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);}
.mb1_c00391{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);}
.md2_c00391{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);}
.m120_c00391{transform:matrix(0.202224,0.003236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202224,0.003236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202224,0.003236,-0.003999,0.249968,0,0);}
.m111_c00391{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);}
.m57_c00391{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);}
.m27_c00391{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);}
.ma2_c00391{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);}
.m8a_c00391{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.md_c00391{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);}
.m18_c00391{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);}
.m8_c00391{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);}
.m4f_c00391{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);}
.m1d_c00391{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);}
.mad_c00391{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);}
.mc3_c00391{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);}
.m66_c00391{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);}
.mc8_c00391{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);}
.me5_c00391{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);}
.m11_c00391{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);}
.mbb_c00391{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.mca_c00391{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);}
.md1_c00391{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);}
.m6e_c00391{transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);}
.m4a_c00391{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);}
.mc7_c00391{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);}
.m14_c00391{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);}
.me8_c00391{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);}
.me9_c00391{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);}
.m58_c00391{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);}
.m20_c00391{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);}
.mc2_c00391{transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);}
.mc5_c00391{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);}
.m88_c00391{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);}
.m41_c00391{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);}
.m87_c00391{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);}
.m45_c00391{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);}
.m10f_c00391{transform:matrix(0.215342,0.003445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215342,0.003445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215342,0.003445,-0.003999,0.249968,0,0);}
.m93_c00391{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);}
.ma9_c00391{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);}
.m4b_c00391{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);}
.mea_c00391{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);}
.m22_c00391{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);}
.m104_c00391{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);}
.mb2_c00391{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);}
.mb5_c00391{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);}
.mb0_c00391{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);}
.m29_c00391{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);}
.m1b_c00391{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);}
.m44_c00391{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);}
.mbf_c00391{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);}
.m99_c00391{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.mcc_c00391{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);}
.m64_c00391{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);}
.mda_c00391{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);}
.m90_c00391{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);}
.m125_c00391{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);}
.m3a_c00391{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);}
.m48_c00391{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);}
.m60_c00391{transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);}
.m92_c00391{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);}
.m25_c00391{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);}
.m2f_c00391{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);}
.m85_c00391{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);}
.mb_c00391{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);}
.m10_c00391{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);}
.md8_c00391{transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);}
.maa_c00391{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m50_c00391{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);}
.mef_c00391{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);}
.m132_c00391{transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{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);}
.m49_c00391{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m43_c00391{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);}
.m13_c00391{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);}
.m4c_c00391{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);}
.m3b_c00391{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);}
.m5c_c00391{transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241490,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00391{transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);}
.m42_c00391{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m46_c00391{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00391{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.maf_c00391{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{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);}
.m38_c00391{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);}
.m123_c00391{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.mfd_c00391{transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);}
.m36_c00391{transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275835,0.000000,0.000000,0.250000,0,0);}
.m72_c00391{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);}
.m39_c00391{transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291095,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{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);}
.m3e_c00391{transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);}
.m12c_c00391{transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308495,0.000000,0.000000,0.250000,0,0);}
.m95_c00391{transform:matrix(0.321490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321490,0.000000,0.000000,0.250000,0,0);}
.m124_c00391{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);}
.m9e_c00391{transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);}
.m61_c00391{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);}
.m1a_c00391{transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348305,0.000000,0.000000,0.250000,0,0);}
.m130_c00391{transform:matrix(0.348735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348735,0.000000,0.000000,0.250000,0,0);}
.m37_c00391{transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351620,0.000000,0.000000,0.250000,0,0);}
.m133_c00391{transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);}
.m10b_c00391{transform:matrix(0.361714,0.005787,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361714,0.005787,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361714,0.005787,-0.003999,0.249968,0,0);}
.mff_c00391{transform:matrix(0.393930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393930,0.000000,0.000000,0.250000,0,0);}
.m126_c00391{transform:matrix(0.412415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412415,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.460670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460670,0.000000,0.000000,0.250000,0,0);}
.m119_c00391{transform:matrix(0.499436,0.007991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.499436,0.007991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.499436,0.007991,-0.003999,0.249968,0,0);}
.m131_c00391{transform:matrix(0.556570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556570,0.000000,0.000000,0.250000,0,0);}
.m12d_c00391{transform:matrix(0.909230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.909230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.909230,0.000000,0.000000,0.250000,0,0);}
.m12f_c00391{transform:matrix(1.078355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.078355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.078355,0.000000,0.000000,0.250000,0,0);}
.m12b_c00391{transform:matrix(1.859165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.859165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.859165,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;}
.fs12_c00391{font-size:22.050000px;}
.fse_c00391{font-size:42.005376px;}
.fsf_c00391{font-size:52.506720px;}
.fs13_c00391{font-size:58.800000px;}
.fs10_c00391{font-size:58.807526px;}
.fs6_c00391{font-size:60.900000px;}
.fs2_c00391{font-size:63.000000px;}
.fsc_c00391{font-size:64.050000px;}
.fs1_c00391{font-size:65.100000px;}
.fs4_c00391{font-size:66.150000px;}
.fs7_c00391{font-size:67.200000px;}
.fsb_c00391{font-size:68.250000px;}
.fs3_c00391{font-size:69.300000px;}
.fs0_c00391{font-size:70.350000px;}
.fs5_c00391{font-size:71.400000px;}
.fsa_c00391{font-size:72.450000px;}
.fs9_c00391{font-size:73.500000px;}
.fs8_c00391{font-size:75.600000px;}
.fsd_c00391{font-size:79.800000px;}
.fs11_c00391{font-size:135.450000px;}
.y0_c00391{bottom:0.000000px;}
.ya1_c00391{bottom:94.770000px;}
.ya0_c00391{bottom:96.651000px;}
.y9f_c00391{bottom:96.783000px;}
.y9e_c00391{bottom:102.039000px;}
.y9d_c00391{bottom:102.702000px;}
.y9c_c00391{bottom:104.475000px;}
.y9b_c00391{bottom:116.097000px;}
.y9a_c00391{bottom:118.222500px;}
.y99_c00391{bottom:120.847500px;}
.y98_c00391{bottom:121.447500px;}
.y97_c00391{bottom:122.041500px;}
.y95_c00391{bottom:129.870000px;}
.y96_c00391{bottom:131.737500px;}
.y94_c00391{bottom:164.778984px;}
.y93_c00391{bottom:165.280704px;}
.y92_c00391{bottom:165.770376px;}
.y91_c00391{bottom:166.470900px;}
.y90_c00391{bottom:166.673904px;}
.y8f_c00391{bottom:167.005740px;}
.y8e_c00391{bottom:167.994084px;}
.y8d_c00391{bottom:168.208632px;}
.y8c_c00391{bottom:169.003956px;}
.y8b_c00391{bottom:169.209912px;}
.y8a_c00391{bottom:169.477896px;}
.y89_c00391{bottom:170.446092px;}
.y88_c00391{bottom:170.875536px;}
.y87_c00391{bottom:171.422616px;}
.y86_c00391{bottom:171.718236px;}
.y85_c00391{bottom:182.420808px;}
.y84_c00391{bottom:183.294168px;}
.y83_c00391{bottom:184.378704px;}
.y82_c00391{bottom:185.044248px;}
.y81_c00391{bottom:185.528016px;}
.y80_c00391{bottom:185.774352px;}
.y7f_c00391{bottom:186.013176px;}
.y7e_c00391{bottom:186.465408px;}
.y7d_c00391{bottom:186.936096px;}
.y7c_c00391{bottom:187.381632px;}
.y7b_c00391{bottom:188.085432px;}
.y7a_c00391{bottom:188.962416px;}
.y79_c00391{bottom:189.304056px;}
.y78_c00391{bottom:189.541896px;}
.y77_c00391{bottom:192.945552px;}
.y76_c00391{bottom:195.641568px;}
.y75_c00391{bottom:198.440352px;}
.y74_c00391{bottom:199.800000px;}
.y73_c00391{bottom:232.903500px;}
.y72_c00391{bottom:234.001500px;}
.y71_c00391{bottom:235.452000px;}
.y70_c00391{bottom:236.043000px;}
.y6f_c00391{bottom:236.425500px;}
.y6e_c00391{bottom:236.689500px;}
.y6d_c00391{bottom:237.328500px;}
.y6c_c00391{bottom:255.388500px;}
.y6b_c00391{bottom:255.688500px;}
.y6a_c00391{bottom:255.769500px;}
.y69_c00391{bottom:255.942000px;}
.y68_c00391{bottom:256.176000px;}
.y67_c00391{bottom:256.452000px;}
.y66_c00391{bottom:256.755000px;}
.y65_c00391{bottom:257.191500px;}
.y64_c00391{bottom:257.992500px;}
.y63_c00391{bottom:258.079500px;}
.y62_c00391{bottom:258.388500px;}
.y61_c00391{bottom:279.088500px;}
.y60_c00391{bottom:301.020000px;}
.y5f_c00391{bottom:301.414500px;}
.y5e_c00391{bottom:301.812000px;}
.y5d_c00391{bottom:302.409000px;}
.y5c_c00391{bottom:302.655000px;}
.y5b_c00391{bottom:302.925000px;}
.y5a_c00391{bottom:303.630000px;}
.y59_c00391{bottom:303.984000px;}
.y58_c00391{bottom:304.470000px;}
.y57_c00391{bottom:304.786500px;}
.y56_c00391{bottom:305.373000px;}
.y55_c00391{bottom:323.532000px;}
.y54_c00391{bottom:324.108000px;}
.y53_c00391{bottom:324.252000px;}
.y52_c00391{bottom:325.275000px;}
.y51_c00391{bottom:326.077500px;}
.y50_c00391{bottom:326.748000px;}
.y4f_c00391{bottom:327.109500px;}
.y4e_c00391{bottom:327.588000px;}
.y4d_c00391{bottom:327.900000px;}
.y4c_c00391{bottom:328.593000px;}
.y4b_c00391{bottom:346.845000px;}
.y4a_c00391{bottom:347.577000px;}
.y49_c00391{bottom:347.763000px;}
.y48_c00391{bottom:348.465000px;}
.y47_c00391{bottom:348.829500px;}
.y46_c00391{bottom:349.257000px;}
.y45_c00391{bottom:349.680000px;}
.y44_c00391{bottom:349.978500px;}
.y43_c00391{bottom:350.481000px;}
.y42_c00391{bottom:351.001500px;}
.y41_c00391{bottom:370.117500px;}
.y40_c00391{bottom:370.353000px;}
.y3f_c00391{bottom:370.737000px;}
.y3e_c00391{bottom:371.475000px;}
.y3d_c00391{bottom:372.073500px;}
.y3c_c00391{bottom:372.705000px;}
.y3b_c00391{bottom:372.982500px;}
.y3a_c00391{bottom:373.249500px;}
.y39_c00391{bottom:373.516500px;}
.y38_c00391{bottom:373.951500px;}
.y37_c00391{bottom:392.091000px;}
.y36_c00391{bottom:392.547000px;}
.y35_c00391{bottom:392.970000px;}
.y34_c00391{bottom:393.678000px;}
.y33_c00391{bottom:394.002000px;}
.y32_c00391{bottom:394.671000px;}
.y31_c00391{bottom:395.119500px;}
.y30_c00391{bottom:395.697000px;}
.y2f_c00391{bottom:396.196500px;}
.y2e_c00391{bottom:396.631500px;}
.y2d_c00391{bottom:415.411500px;}
.y2c_c00391{bottom:416.109000px;}
.y2b_c00391{bottom:416.799000px;}
.y2a_c00391{bottom:417.306000px;}
.y29_c00391{bottom:417.918000px;}
.y28_c00391{bottom:418.599000px;}
.y27_c00391{bottom:419.311500px;}
.y26_c00391{bottom:438.813000px;}
.y25_c00391{bottom:439.162500px;}
.y24_c00391{bottom:439.368000px;}
.y23_c00391{bottom:439.491000px;}
.y22_c00391{bottom:439.743000px;}
.y21_c00391{bottom:440.056500px;}
.y20_c00391{bottom:440.302500px;}
.y1f_c00391{bottom:440.854500px;}
.y1e_c00391{bottom:441.075000px;}
.y1d_c00391{bottom:441.408000px;}
.y1c_c00391{bottom:441.645000px;}
.y1b_c00391{bottom:441.720000px;}
.y1a_c00391{bottom:441.990000px;}
.y19_c00391{bottom:461.325000px;}
.y18_c00391{bottom:461.785500px;}
.y17_c00391{bottom:462.204000px;}
.y16_c00391{bottom:462.475500px;}
.y15_c00391{bottom:462.624000px;}
.y14_c00391{bottom:463.137000px;}
.y13_c00391{bottom:463.557000px;}
.y12_c00391{bottom:464.205000px;}
.y11_c00391{bottom:464.671500px;}
.y10_c00391{bottom:486.120000px;}
.yf_c00391{bottom:509.281500px;}
.ye_c00391{bottom:531.988500px;}
.yd_c00391{bottom:554.662500px;}
.yc_c00391{bottom:577.926000px;}
.yb_c00391{bottom:600.091500px;}
.ya_c00391{bottom:623.761500px;}
.y9_c00391{bottom:646.741500px;}
.y8_c00391{bottom:669.393000px;}
.y7_c00391{bottom:692.064000px;}
.y6_c00391{bottom:715.540500px;}
.y5_c00391{bottom:738.205500px;}
.y4_c00391{bottom:761.190000px;}
.y3_c00391{bottom:784.258500px;}
.y2_c00391{bottom:807.238500px;}
.y1_c00391{bottom:830.188500px;}
.h14_c00391{height:22.050000px;}
.h10_c00391{height:42.005376px;}
.h11_c00391{height:52.506720px;}
.h15_c00391{height:58.800000px;}
.h12_c00391{height:58.807526px;}
.h8_c00391{height:60.900000px;}
.h4_c00391{height:63.000000px;}
.he_c00391{height:64.050000px;}
.h3_c00391{height:65.100000px;}
.h6_c00391{height:66.150000px;}
.h9_c00391{height:67.200000px;}
.hd_c00391{height:68.250000px;}
.h5_c00391{height:69.300000px;}
.h2_c00391{height:70.350000px;}
.h7_c00391{height:71.400000px;}
.hc_c00391{height:72.450000px;}
.hb_c00391{height:73.500000px;}
.ha_c00391{height:75.600000px;}
.hf_c00391{height:79.800000px;}
.h13_c00391{height:135.450000px;}
.h0_c00391{height:1008.450000px;}
.h1_c00391{height:1008.750000px;}
.w1_c00391{width:689.250000px;}
.w0_c00391{width:689.550000px;}
.x0_c00391{left:0.000000px;}
.xb0_c00391{left:87.438000px;}
.xac_c00391{left:116.785500px;}
.x62_c00391{left:124.200000px;}
.x6a_c00391{left:130.410000px;}
.x6f_c00391{left:139.758000px;}
.x55_c00391{left:140.940000px;}
.x5e_c00391{left:142.560000px;}
.xc_c00391{left:144.450000px;}
.x30_c00391{left:145.530000px;}
.x1_c00391{left:146.610000px;}
.x9c_c00391{left:154.539192px;}
.xa3_c00391{left:160.768452px;}
.x25_c00391{left:163.350000px;}
.x9d_c00391{left:169.404192px;}
.xad_c00391{left:170.791500px;}
.x16_c00391{left:179.010000px;}
.x75_c00391{left:181.149000px;}
.x7e_c00391{left:185.946000px;}
.x50_c00391{left:187.650000px;}
.x94_c00391{left:189.001500px;}
.x83_c00391{left:190.789500px;}
.x76_c00391{left:191.880000px;}
.x3f_c00391{left:194.940000px;}
.x56_c00391{left:197.910000px;}
.x5f_c00391{left:199.800000px;}
.x29_c00391{left:201.150000px;}
.x8b_c00391{left:204.796500px;}
.xa9_c00391{left:207.360000px;}
.x45_c00391{left:212.490000px;}
.x6b_c00391{left:214.110000px;}
.x17_c00391{left:221.130000px;}
.x2a_c00391{left:222.480000px;}
.x99_c00391{left:223.690500px;}
.x49_c00391{left:225.450000px;}
.x57_c00391{left:226.530000px;}
.x2_c00391{left:231.120000px;}
.x8c_c00391{left:233.161500px;}
.x63_c00391{left:236.520000px;}
.xd_c00391{left:238.680000px;}
.x31_c00391{left:240.300000px;}
.x26_c00391{left:244.080000px;}
.x9e_c00391{left:245.568192px;}
.xb1_c00391{left:248.596500px;}
.x84_c00391{left:250.201500px;}
.x38_c00391{left:251.370000px;}
.x86_c00391{left:255.573000px;}
.x9a_c00391{left:258.531000px;}
.x40_c00391{left:260.820000px;}
.x3_c00391{left:261.900000px;}
.x51_c00391{left:262.980000px;}
.xaa_c00391{left:267.570000px;}
.xe_c00391{left:268.920000px;}
.x4a_c00391{left:273.510000px;}
.x8d_c00391{left:276.670500px;}
.x32_c00391{left:277.830000px;}
.x70_c00391{left:279.048000px;}
.x18_c00391{left:280.260000px;}
.x58_c00391{left:283.770000px;}
.x1e_c00391{left:285.930000px;}
.x87_c00391{left:288.798000px;}
.x64_c00391{left:291.060000px;}
.x7f_c00391{left:293.625000px;}
.x7a_c00391{left:296.925000px;}
.x52_c00391{left:300.240000px;}
.x77_c00391{left:304.744500px;}
.x27_c00391{left:306.180000px;}
.x2b_c00391{left:308.610000px;}
.xf_c00391{left:311.310000px;}
.x96_c00391{left:313.383000px;}
.x91_c00391{left:316.054500px;}
.x9f_c00391{left:317.401692px;}
.x4_c00391{left:319.140000px;}
.x39_c00391{left:320.760000px;}
.xa4_c00391{left:321.968520px;}
.x60_c00391{left:329.670000px;}
.x71_c00391{left:331.459500px;}
.x28_c00391{left:334.260000px;}
.x88_c00391{left:335.764500px;}
.x80_c00391{left:338.448000px;}
.x59_c00391{left:343.980000px;}
.x33_c00391{left:347.760000px;}
.x19_c00391{left:349.380000px;}
.x1f_c00391{left:351.000000px;}
.x41_c00391{left:352.890000px;}
.x65_c00391{left:359.370000px;}
.x7b_c00391{left:364.933500px;}
.x1a_c00391{left:366.120000px;}
.x4b_c00391{left:367.470000px;}
.x8e_c00391{left:370.593000px;}
.x5_c00391{left:374.220000px;}
.x97_c00391{left:375.759000px;}
.x61_c00391{left:379.890000px;}
.x78_c00391{left:383.584500px;}
.x3a_c00391{left:385.020000px;}
.x92_c00391{left:386.577000px;}
.xa0_c00391{left:390.010692px;}
.x5a_c00391{left:392.580000px;}
.x72_c00391{left:395.521500px;}
.x6c_c00391{left:397.980000px;}
.x20_c00391{left:402.840000px;}
.x34_c00391{left:406.350000px;}
.x3b_c00391{left:407.700000px;}
.x6_c00391{left:411.210000px;}
.x93_c00391{left:413.563500px;}
.x4c_c00391{left:414.990000px;}
.x85_c00391{left:417.583500px;}
.x10_c00391{left:419.310000px;}
.x7c_c00391{left:421.336500px;}
.x53_c00391{left:423.630000px;}
.x5b_c00391{left:436.590000px;}
.x81_c00391{left:437.766000px;}
.xb2_c00391{left:442.260000px;}
.x66_c00391{left:443.340000px;}
.x46_c00391{left:444.690000px;}
.x73_c00391{left:448.107000px;}
.x11_c00391{left:449.820000px;}
.x2c_c00391{left:453.330000px;}
.xa5_c00391{left:455.109132px;}
.x3c_c00391{left:459.000000px;}
.x1b_c00391{left:460.350000px;}
.x35_c00391{left:462.510000px;}
.xae_c00391{left:464.040000px;}
.x5c_c00391{left:466.830000px;}
.x42_c00391{left:471.420000px;}
.x4d_c00391{left:473.580000px;}
.x54_c00391{left:476.010000px;}
.x7_c00391{left:477.360000px;}
.x8_c00391{left:489.240000px;}
.xa6_c00391{left:490.787208px;}
.x67_c00391{left:491.940000px;}
.x1c_c00391{left:494.100000px;}
.x12_c00391{left:496.800000px;}
.x7d_c00391{left:498.073500px;}
.x4e_c00391{left:500.310000px;}
.x21_c00391{left:502.470000px;}
.x2d_c00391{left:504.630000px;}
.x6d_c00391{left:507.060000px;}
.x82_c00391{left:508.593000px;}
.x36_c00391{left:511.110000px;}
.x3d_c00391{left:513.000000px;}
.x13_c00391{left:514.890000px;}
.x79_c00391{left:516.961500px;}
.x9_c00391{left:520.830000px;}
.x89_c00391{left:522.609000px;}
.x47_c00391{left:524.070000px;}
.xb3_c00391{left:525.960000px;}
.x98_c00391{left:527.992500px;}
.x37_c00391{left:529.740000px;}
.xb4_c00391{left:533.250000px;}
.x4f_c00391{left:534.330000px;}
.x8f_c00391{left:536.460000px;}
.xa7_c00391{left:537.476952px;}
.x14_c00391{left:543.240000px;}
.xa1_c00391{left:545.022192px;}
.x22_c00391{left:546.210000px;}
.x6e_c00391{left:549.450000px;}
.x48_c00391{left:550.530000px;}
.x68_c00391{left:554.040000px;}
.x74_c00391{left:557.988000px;}
.x1d_c00391{left:560.250000px;}
.x95_c00391{left:564.301500px;}
.x2e_c00391{left:568.350000px;}
.xa_c00391{left:569.430000px;}
.x43_c00391{left:570.510000px;}
.x5d_c00391{left:571.590000px;}
.x3e_c00391{left:575.100000px;}
.xb_c00391{left:576.450000px;}
.xb5_c00391{left:578.610000px;}
.x15_c00391{left:582.390000px;}
.x23_c00391{left:584.550000px;}
.x2f_c00391{left:587.250000px;}
.x69_c00391{left:591.570000px;}
.xb6_c00391{left:593.190000px;}
.x44_c00391{left:595.620000px;}
.xa2_c00391{left:599.607192px;}
.x90_c00391{left:602.010000px;}
.x8a_c00391{left:603.885000px;}
.x24_c00391{left:610.200000px;}
.x9b_c00391{left:620.922000px;}
.xa8_c00391{left:642.600000px;}
.xab_c00391{left:645.570000px;}
.xaf_c00391{left:657.304500px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.fs12_c00391{font-size:19.600000pt;}
.fse_c00391{font-size:37.338112pt;}
.fsf_c00391{font-size:46.672640pt;}
.fs13_c00391{font-size:52.266667pt;}
.fs10_c00391{font-size:52.273356pt;}
.fs6_c00391{font-size:54.133333pt;}
.fs2_c00391{font-size:56.000000pt;}
.fsc_c00391{font-size:56.933333pt;}
.fs1_c00391{font-size:57.866667pt;}
.fs4_c00391{font-size:58.800000pt;}
.fs7_c00391{font-size:59.733333pt;}
.fsb_c00391{font-size:60.666667pt;}
.fs3_c00391{font-size:61.600000pt;}
.fs0_c00391{font-size:62.533333pt;}
.fs5_c00391{font-size:63.466667pt;}
.fsa_c00391{font-size:64.400000pt;}
.fs9_c00391{font-size:65.333333pt;}
.fs8_c00391{font-size:67.200000pt;}
.fsd_c00391{font-size:70.933333pt;}
.fs11_c00391{font-size:120.400000pt;}
.y0_c00391{bottom:0.000000pt;}
.ya1_c00391{bottom:84.240000pt;}
.ya0_c00391{bottom:85.912000pt;}
.y9f_c00391{bottom:86.029333pt;}
.y9e_c00391{bottom:90.701333pt;}
.y9d_c00391{bottom:91.290667pt;}
.y9c_c00391{bottom:92.866667pt;}
.y9b_c00391{bottom:103.197333pt;}
.y9a_c00391{bottom:105.086667pt;}
.y99_c00391{bottom:107.420000pt;}
.y98_c00391{bottom:107.953333pt;}
.y97_c00391{bottom:108.481333pt;}
.y95_c00391{bottom:115.440000pt;}
.y96_c00391{bottom:117.100000pt;}
.y94_c00391{bottom:146.470208pt;}
.y93_c00391{bottom:146.916181pt;}
.y92_c00391{bottom:147.351445pt;}
.y91_c00391{bottom:147.974133pt;}
.y90_c00391{bottom:148.154581pt;}
.y8f_c00391{bottom:148.449547pt;}
.y8e_c00391{bottom:149.328075pt;}
.y8d_c00391{bottom:149.518784pt;}
.y8c_c00391{bottom:150.225739pt;}
.y8b_c00391{bottom:150.408811pt;}
.y8a_c00391{bottom:150.647019pt;}
.y89_c00391{bottom:151.507637pt;}
.y88_c00391{bottom:151.889365pt;}
.y87_c00391{bottom:152.375659pt;}
.y86_c00391{bottom:152.638432pt;}
.y85_c00391{bottom:162.151829pt;}
.y84_c00391{bottom:162.928149pt;}
.y83_c00391{bottom:163.892181pt;}
.y82_c00391{bottom:164.483776pt;}
.y81_c00391{bottom:164.913792pt;}
.y80_c00391{bottom:165.132757pt;}
.y7f_c00391{bottom:165.345045pt;}
.y7e_c00391{bottom:165.747029pt;}
.y7d_c00391{bottom:166.165419pt;}
.y7c_c00391{bottom:166.561451pt;}
.y7b_c00391{bottom:167.187051pt;}
.y7a_c00391{bottom:167.966592pt;}
.y79_c00391{bottom:168.270272pt;}
.y78_c00391{bottom:168.481685pt;}
.y77_c00391{bottom:171.507157pt;}
.y76_c00391{bottom:173.903616pt;}
.y75_c00391{bottom:176.391424pt;}
.y74_c00391{bottom:177.600000pt;}
.y73_c00391{bottom:207.025333pt;}
.y72_c00391{bottom:208.001333pt;}
.y71_c00391{bottom:209.290667pt;}
.y70_c00391{bottom:209.816000pt;}
.y6f_c00391{bottom:210.156000pt;}
.y6e_c00391{bottom:210.390667pt;}
.y6d_c00391{bottom:210.958667pt;}
.y6c_c00391{bottom:227.012000pt;}
.y6b_c00391{bottom:227.278667pt;}
.y6a_c00391{bottom:227.350667pt;}
.y69_c00391{bottom:227.504000pt;}
.y68_c00391{bottom:227.712000pt;}
.y67_c00391{bottom:227.957333pt;}
.y66_c00391{bottom:228.226667pt;}
.y65_c00391{bottom:228.614667pt;}
.y64_c00391{bottom:229.326667pt;}
.y63_c00391{bottom:229.404000pt;}
.y62_c00391{bottom:229.678667pt;}
.y61_c00391{bottom:248.078667pt;}
.y60_c00391{bottom:267.573333pt;}
.y5f_c00391{bottom:267.924000pt;}
.y5e_c00391{bottom:268.277333pt;}
.y5d_c00391{bottom:268.808000pt;}
.y5c_c00391{bottom:269.026667pt;}
.y5b_c00391{bottom:269.266667pt;}
.y5a_c00391{bottom:269.893333pt;}
.y59_c00391{bottom:270.208000pt;}
.y58_c00391{bottom:270.640000pt;}
.y57_c00391{bottom:270.921333pt;}
.y56_c00391{bottom:271.442667pt;}
.y55_c00391{bottom:287.584000pt;}
.y54_c00391{bottom:288.096000pt;}
.y53_c00391{bottom:288.224000pt;}
.y52_c00391{bottom:289.133333pt;}
.y51_c00391{bottom:289.846667pt;}
.y50_c00391{bottom:290.442667pt;}
.y4f_c00391{bottom:290.764000pt;}
.y4e_c00391{bottom:291.189333pt;}
.y4d_c00391{bottom:291.466667pt;}
.y4c_c00391{bottom:292.082667pt;}
.y4b_c00391{bottom:308.306667pt;}
.y4a_c00391{bottom:308.957333pt;}
.y49_c00391{bottom:309.122667pt;}
.y48_c00391{bottom:309.746667pt;}
.y47_c00391{bottom:310.070667pt;}
.y46_c00391{bottom:310.450667pt;}
.y45_c00391{bottom:310.826667pt;}
.y44_c00391{bottom:311.092000pt;}
.y43_c00391{bottom:311.538667pt;}
.y42_c00391{bottom:312.001333pt;}
.y41_c00391{bottom:328.993333pt;}
.y40_c00391{bottom:329.202667pt;}
.y3f_c00391{bottom:329.544000pt;}
.y3e_c00391{bottom:330.200000pt;}
.y3d_c00391{bottom:330.732000pt;}
.y3c_c00391{bottom:331.293333pt;}
.y3b_c00391{bottom:331.540000pt;}
.y3a_c00391{bottom:331.777333pt;}
.y39_c00391{bottom:332.014667pt;}
.y38_c00391{bottom:332.401333pt;}
.y37_c00391{bottom:348.525333pt;}
.y36_c00391{bottom:348.930667pt;}
.y35_c00391{bottom:349.306667pt;}
.y34_c00391{bottom:349.936000pt;}
.y33_c00391{bottom:350.224000pt;}
.y32_c00391{bottom:350.818667pt;}
.y31_c00391{bottom:351.217333pt;}
.y30_c00391{bottom:351.730667pt;}
.y2f_c00391{bottom:352.174667pt;}
.y2e_c00391{bottom:352.561333pt;}
.y2d_c00391{bottom:369.254667pt;}
.y2c_c00391{bottom:369.874667pt;}
.y2b_c00391{bottom:370.488000pt;}
.y2a_c00391{bottom:370.938667pt;}
.y29_c00391{bottom:371.482667pt;}
.y28_c00391{bottom:372.088000pt;}
.y27_c00391{bottom:372.721333pt;}
.y26_c00391{bottom:390.056000pt;}
.y25_c00391{bottom:390.366667pt;}
.y24_c00391{bottom:390.549333pt;}
.y23_c00391{bottom:390.658667pt;}
.y22_c00391{bottom:390.882667pt;}
.y21_c00391{bottom:391.161333pt;}
.y20_c00391{bottom:391.380000pt;}
.y1f_c00391{bottom:391.870667pt;}
.y1e_c00391{bottom:392.066667pt;}
.y1d_c00391{bottom:392.362667pt;}
.y1c_c00391{bottom:392.573333pt;}
.y1b_c00391{bottom:392.640000pt;}
.y1a_c00391{bottom:392.880000pt;}
.y19_c00391{bottom:410.066667pt;}
.y18_c00391{bottom:410.476000pt;}
.y17_c00391{bottom:410.848000pt;}
.y16_c00391{bottom:411.089333pt;}
.y15_c00391{bottom:411.221333pt;}
.y14_c00391{bottom:411.677333pt;}
.y13_c00391{bottom:412.050667pt;}
.y12_c00391{bottom:412.626667pt;}
.y11_c00391{bottom:413.041333pt;}
.y10_c00391{bottom:432.106667pt;}
.yf_c00391{bottom:452.694667pt;}
.ye_c00391{bottom:472.878667pt;}
.yd_c00391{bottom:493.033333pt;}
.yc_c00391{bottom:513.712000pt;}
.yb_c00391{bottom:533.414667pt;}
.ya_c00391{bottom:554.454667pt;}
.y9_c00391{bottom:574.881333pt;}
.y8_c00391{bottom:595.016000pt;}
.y7_c00391{bottom:615.168000pt;}
.y6_c00391{bottom:636.036000pt;}
.y5_c00391{bottom:656.182667pt;}
.y4_c00391{bottom:676.613333pt;}
.y3_c00391{bottom:697.118667pt;}
.y2_c00391{bottom:717.545333pt;}
.y1_c00391{bottom:737.945333pt;}
.h14_c00391{height:19.600000pt;}
.h10_c00391{height:37.338112pt;}
.h11_c00391{height:46.672640pt;}
.h15_c00391{height:52.266667pt;}
.h12_c00391{height:52.273356pt;}
.h8_c00391{height:54.133333pt;}
.h4_c00391{height:56.000000pt;}
.he_c00391{height:56.933333pt;}
.h3_c00391{height:57.866667pt;}
.h6_c00391{height:58.800000pt;}
.h9_c00391{height:59.733333pt;}
.hd_c00391{height:60.666667pt;}
.h5_c00391{height:61.600000pt;}
.h2_c00391{height:62.533333pt;}
.h7_c00391{height:63.466667pt;}
.hc_c00391{height:64.400000pt;}
.hb_c00391{height:65.333333pt;}
.ha_c00391{height:67.200000pt;}
.hf_c00391{height:70.933333pt;}
.h13_c00391{height:120.400000pt;}
.h0_c00391{height:896.400000pt;}
.h1_c00391{height:896.666667pt;}
.w1_c00391{width:612.666667pt;}
.w0_c00391{width:612.933333pt;}
.x0_c00391{left:0.000000pt;}
.xb0_c00391{left:77.722667pt;}
.xac_c00391{left:103.809333pt;}
.x62_c00391{left:110.400000pt;}
.x6a_c00391{left:115.920000pt;}
.x6f_c00391{left:124.229333pt;}
.x55_c00391{left:125.280000pt;}
.x5e_c00391{left:126.720000pt;}
.xc_c00391{left:128.400000pt;}
.x30_c00391{left:129.360000pt;}
.x1_c00391{left:130.320000pt;}
.x9c_c00391{left:137.368171pt;}
.xa3_c00391{left:142.905291pt;}
.x25_c00391{left:145.200000pt;}
.x9d_c00391{left:150.581504pt;}
.xad_c00391{left:151.814667pt;}
.x16_c00391{left:159.120000pt;}
.x75_c00391{left:161.021333pt;}
.x7e_c00391{left:165.285333pt;}
.x50_c00391{left:166.800000pt;}
.x94_c00391{left:168.001333pt;}
.x83_c00391{left:169.590667pt;}
.x76_c00391{left:170.560000pt;}
.x3f_c00391{left:173.280000pt;}
.x56_c00391{left:175.920000pt;}
.x5f_c00391{left:177.600000pt;}
.x29_c00391{left:178.800000pt;}
.x8b_c00391{left:182.041333pt;}
.xa9_c00391{left:184.320000pt;}
.x45_c00391{left:188.880000pt;}
.x6b_c00391{left:190.320000pt;}
.x17_c00391{left:196.560000pt;}
.x2a_c00391{left:197.760000pt;}
.x99_c00391{left:198.836000pt;}
.x49_c00391{left:200.400000pt;}
.x57_c00391{left:201.360000pt;}
.x2_c00391{left:205.440000pt;}
.x8c_c00391{left:207.254667pt;}
.x63_c00391{left:210.240000pt;}
.xd_c00391{left:212.160000pt;}
.x31_c00391{left:213.600000pt;}
.x26_c00391{left:216.960000pt;}
.x9e_c00391{left:218.282837pt;}
.xb1_c00391{left:220.974667pt;}
.x84_c00391{left:222.401333pt;}
.x38_c00391{left:223.440000pt;}
.x86_c00391{left:227.176000pt;}
.x9a_c00391{left:229.805333pt;}
.x40_c00391{left:231.840000pt;}
.x3_c00391{left:232.800000pt;}
.x51_c00391{left:233.760000pt;}
.xaa_c00391{left:237.840000pt;}
.xe_c00391{left:239.040000pt;}
.x4a_c00391{left:243.120000pt;}
.x8d_c00391{left:245.929333pt;}
.x32_c00391{left:246.960000pt;}
.x70_c00391{left:248.042667pt;}
.x18_c00391{left:249.120000pt;}
.x58_c00391{left:252.240000pt;}
.x1e_c00391{left:254.160000pt;}
.x87_c00391{left:256.709333pt;}
.x64_c00391{left:258.720000pt;}
.x7f_c00391{left:261.000000pt;}
.x7a_c00391{left:263.933333pt;}
.x52_c00391{left:266.880000pt;}
.x77_c00391{left:270.884000pt;}
.x27_c00391{left:272.160000pt;}
.x2b_c00391{left:274.320000pt;}
.xf_c00391{left:276.720000pt;}
.x96_c00391{left:278.562667pt;}
.x91_c00391{left:280.937333pt;}
.x9f_c00391{left:282.134837pt;}
.x4_c00391{left:283.680000pt;}
.x39_c00391{left:285.120000pt;}
.xa4_c00391{left:286.194240pt;}
.x60_c00391{left:293.040000pt;}
.x71_c00391{left:294.630667pt;}
.x28_c00391{left:297.120000pt;}
.x88_c00391{left:298.457333pt;}
.x80_c00391{left:300.842667pt;}
.x59_c00391{left:305.760000pt;}
.x33_c00391{left:309.120000pt;}
.x19_c00391{left:310.560000pt;}
.x1f_c00391{left:312.000000pt;}
.x41_c00391{left:313.680000pt;}
.x65_c00391{left:319.440000pt;}
.x7b_c00391{left:324.385333pt;}
.x1a_c00391{left:325.440000pt;}
.x4b_c00391{left:326.640000pt;}
.x8e_c00391{left:329.416000pt;}
.x5_c00391{left:332.640000pt;}
.x97_c00391{left:334.008000pt;}
.x61_c00391{left:337.680000pt;}
.x78_c00391{left:340.964000pt;}
.x3a_c00391{left:342.240000pt;}
.x92_c00391{left:343.624000pt;}
.xa0_c00391{left:346.676171pt;}
.x5a_c00391{left:348.960000pt;}
.x72_c00391{left:351.574667pt;}
.x6c_c00391{left:353.760000pt;}
.x20_c00391{left:358.080000pt;}
.x34_c00391{left:361.200000pt;}
.x3b_c00391{left:362.400000pt;}
.x6_c00391{left:365.520000pt;}
.x93_c00391{left:367.612000pt;}
.x4c_c00391{left:368.880000pt;}
.x85_c00391{left:371.185333pt;}
.x10_c00391{left:372.720000pt;}
.x7c_c00391{left:374.521333pt;}
.x53_c00391{left:376.560000pt;}
.x5b_c00391{left:388.080000pt;}
.x81_c00391{left:389.125333pt;}
.xb2_c00391{left:393.120000pt;}
.x66_c00391{left:394.080000pt;}
.x46_c00391{left:395.280000pt;}
.x73_c00391{left:398.317333pt;}
.x11_c00391{left:399.840000pt;}
.x2c_c00391{left:402.960000pt;}
.xa5_c00391{left:404.541451pt;}
.x3c_c00391{left:408.000000pt;}
.x1b_c00391{left:409.200000pt;}
.x35_c00391{left:411.120000pt;}
.xae_c00391{left:412.480000pt;}
.x5c_c00391{left:414.960000pt;}
.x42_c00391{left:419.040000pt;}
.x4d_c00391{left:420.960000pt;}
.x54_c00391{left:423.120000pt;}
.x7_c00391{left:424.320000pt;}
.x8_c00391{left:434.880000pt;}
.xa6_c00391{left:436.255296pt;}
.x67_c00391{left:437.280000pt;}
.x1c_c00391{left:439.200000pt;}
.x12_c00391{left:441.600000pt;}
.x7d_c00391{left:442.732000pt;}
.x4e_c00391{left:444.720000pt;}
.x21_c00391{left:446.640000pt;}
.x2d_c00391{left:448.560000pt;}
.x6d_c00391{left:450.720000pt;}
.x82_c00391{left:452.082667pt;}
.x36_c00391{left:454.320000pt;}
.x3d_c00391{left:456.000000pt;}
.x13_c00391{left:457.680000pt;}
.x79_c00391{left:459.521333pt;}
.x9_c00391{left:462.960000pt;}
.x89_c00391{left:464.541333pt;}
.x47_c00391{left:465.840000pt;}
.xb3_c00391{left:467.520000pt;}
.x98_c00391{left:469.326667pt;}
.x37_c00391{left:470.880000pt;}
.xb4_c00391{left:474.000000pt;}
.x4f_c00391{left:474.960000pt;}
.x8f_c00391{left:476.853333pt;}
.xa7_c00391{left:477.757291pt;}
.x14_c00391{left:482.880000pt;}
.xa1_c00391{left:484.464171pt;}
.x22_c00391{left:485.520000pt;}
.x6e_c00391{left:488.400000pt;}
.x48_c00391{left:489.360000pt;}
.x68_c00391{left:492.480000pt;}
.x74_c00391{left:495.989333pt;}
.x1d_c00391{left:498.000000pt;}
.x95_c00391{left:501.601333pt;}
.x2e_c00391{left:505.200000pt;}
.xa_c00391{left:506.160000pt;}
.x43_c00391{left:507.120000pt;}
.x5d_c00391{left:508.080000pt;}
.x3e_c00391{left:511.200000pt;}
.xb_c00391{left:512.400000pt;}
.xb5_c00391{left:514.320000pt;}
.x15_c00391{left:517.680000pt;}
.x23_c00391{left:519.600000pt;}
.x2f_c00391{left:522.000000pt;}
.x69_c00391{left:525.840000pt;}
.xb6_c00391{left:527.280000pt;}
.x44_c00391{left:529.440000pt;}
.xa2_c00391{left:532.984171pt;}
.x90_c00391{left:535.120000pt;}
.x8a_c00391{left:536.786667pt;}
.x24_c00391{left:542.400000pt;}
.x9b_c00391{left:551.930667pt;}
.xa8_c00391{left:571.200000pt;}
.xab_c00391{left:573.840000pt;}
.xaf_c00391{left:584.270667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m139_c00392{transform:matrix(0.021700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021700,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);}
.me6_c00392{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);}
.m135_c00392{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00392{transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080960,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096735,0.000000,0.000000,0.250000,0,0);}
.mdc_c00392{transform:matrix(0.113255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113255,0.000000,0.000000,0.250000,0,0);}
.m11c_c00392{transform:matrix(0.115215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115215,0.000000,0.000000,0.250000,0,0);}
.meb_c00392{transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124340,0.000000,0.000000,0.250000,0,0);}
.mc0_c00392{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);}
.m3d_c00392{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);}
.mdd_c00392{transform:matrix(0.137935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137935,0.000000,0.000000,0.250000,0,0);}
.mfb_c00392{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);}
.m95_c00392{transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);}
.m60_c00392{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);}
.md0_c00392{transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145010,0.000000,0.000000,0.250000,0,0);}
.ma8_c00392{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);}
.m2e_c00392{transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);}
.m99_c00392{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);}
.m51_c00392{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);}
.mbf_c00392{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);}
.ma3_c00392{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);}
.m8e_c00392{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);}
.mcf_c00392{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);}
.m13c_c00392{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.ma6_c00392{transform:matrix(0.151740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151740,0.000000,0.000000,0.250000,0,0);}
.mc5_c00392{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);}
.m5b_c00392{transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);}
.mc9_c00392{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);}
.mb3_c00392{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);}
.m28_c00392{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);}
.m84_c00392{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);}
.mfd_c00392{transform:matrix(0.155690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155690,0.000000,0.000000,0.250000,0,0);}
.m90_c00392{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);}
.m47_c00392{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);}
.m75_c00392{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);}
.mec_c00392{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);}
.m2b_c00392{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);}
.m64_c00392{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);}
.m141_c00392{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);}
.mee_c00392{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);}
.m106_c00392{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);}
.m133_c00392{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);}
.mcc_c00392{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);}
.m91_c00392{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);}
.m35_c00392{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);}
.mc1_c00392{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);}
.m101_c00392{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);}
.m7c_c00392{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);}
.m126_c00392{transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163090,0.000000,0.000000,0.250000,0,0);}
.mc4_c00392{transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{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);}
.mfc_c00392{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);}
.mbb_c00392{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);}
.m5d_c00392{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);}
.ma5_c00392{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);}
.m7e_c00392{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);}
.m12_c00392{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);}
.m7f_c00392{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);}
.m9a_c00392{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m89_c00392{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);}
.mfa_c00392{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);}
.md4_c00392{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);}
.mc3_c00392{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);}
.m7a_c00392{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);}
.m62_c00392{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);}
.mc2_c00392{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);}
.m59_c00392{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);}
.mcb_c00392{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.mda_c00392{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);}
.m5c_c00392{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);}
.m42_c00392{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);}
.m81_c00392{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);}
.m105_c00392{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);}
.m77_c00392{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);}
.m31_c00392{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);}
.m124_c00392{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);}
.m82_c00392{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);}
.m14_c00392{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);}
.m1f_c00392{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);}
.m12e_c00392{transform:matrix(0.171495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171495,0.000000,0.000000,0.250000,0,0);}
.m12a_c00392{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);}
.mb8_c00392{transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);}
.m96_c00392{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);}
.mf7_c00392{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);}
.m119_c00392{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);}
.md3_c00392{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);}
.m123_c00392{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);}
.m3f_c00392{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);}
.m3e_c00392{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);}
.mb0_c00392{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);}
.mf0_c00392{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);}
.ma9_c00392{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);}
.m120_c00392{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);}
.m4c_c00392{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);}
.mcd_c00392{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);}
.m4a_c00392{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);}
.ma1_c00392{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);}
.md_c00392{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);}
.mf_c00392{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);}
.mc_c00392{transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);}
.md8_c00392{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_c00392{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);}
.mf2_c00392{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);}
.m98_c00392{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);}
.me7_c00392{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);}
.mc8_c00392{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);}
.m104_c00392{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);}
.mf6_c00392{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);}
.mbc_c00392{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);}
.m5e_c00392{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);}
.m48_c00392{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);}
.m6c_c00392{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);}
.mea_c00392{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);}
.me3_c00392{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);}
.mb4_c00392{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);}
.ma4_c00392{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);}
.m10e_c00392{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);}
.m8a_c00392{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);}
.m76_c00392{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);}
.m43_c00392{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);}
.m23_c00392{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);}
.m2f_c00392{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);}
.mdb_c00392{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.mde_c00392{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);}
.m132_c00392{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);}
.m93_c00392{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);}
.m88_c00392{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);}
.m78_c00392{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);}
.m1e_c00392{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);}
.mbe_c00392{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);}
.m30_c00392{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);}
.mce_c00392{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);}
.mc6_c00392{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);}
.m41_c00392{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);}
.m10b_c00392{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);}
.ma7_c00392{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);}
.mf8_c00392{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);}
.m8b_c00392{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);}
.mb5_c00392{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);}
.m116_c00392{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);}
.m9d_c00392{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);}
.m79_c00392{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);}
.mef_c00392{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);}
.m12d_c00392{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);}
.m6e_c00392{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);}
.m13_c00392{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);}
.me5_c00392{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);}
.m37_c00392{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);}
.mca_c00392{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);}
.m52_c00392{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);}
.mf1_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);}
.mf5_c00392{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);}
.m15_c00392{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);}
.mff_c00392{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);}
.maa_c00392{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);}
.m39_c00392{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);}
.m6a_c00392{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);}
.mb7_c00392{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);}
.mbd_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);}
.m125_c00392{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);}
.mb6_c00392{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);}
.m3b_c00392{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);}
.mba_c00392{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);}
.m2c_c00392{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);}
.m11_c00392{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_c00392{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);}
.md1_c00392{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);}
.md5_c00392{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.m8d_c00392{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);}
.m27_c00392{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);}
.m138_c00392{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);}
.m73_c00392{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);}
.m128_c00392{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);}
.m109_c00392{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);}
.me9_c00392{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);}
.m86_c00392{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);}
.m87_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);}
.m55_c00392{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);}
.m85_c00392{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);}
.m4b_c00392{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);}
.me2_c00392{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);}
.me4_c00392{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);}
.m1c_c00392{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);}
.m117_c00392{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);}
.m4_c00392{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);}
.me0_c00392{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);}
.m4d_c00392{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);}
.m61_c00392{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);}
.m11d_c00392{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);}
.m9c_c00392{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);}
.m10_c00392{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);}
.m5f_c00392{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);}
.m108_c00392{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);}
.m17_c00392{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00392{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);}
.m10d_c00392{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);}
.m74_c00392{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);}
.m10a_c00392{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);}
.m68_c00392{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);}
.mac_c00392{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);}
.m57_c00392{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);}
.mad_c00392{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);}
.m67_c00392{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);}
.m4f_c00392{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);}
.m7d_c00392{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);}
.mae_c00392{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m50_c00392{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);}
.me8_c00392{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);}
.me1_c00392{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);}
.m92_c00392{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);}
.m7b_c00392{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);}
.m58_c00392{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);}
.m8c_c00392{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);}
.m107_c00392{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);}
.mdf_c00392{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);}
.m1d_c00392{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);}
.m103_c00392{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);}
.m12c_c00392{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_c00392{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);}
.m3c_c00392{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);}
.m1b_c00392{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);}
.m12b_c00392{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);}
.med_c00392{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);}
.m94_c00392{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);}
.m26_c00392{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);}
.mf3_c00392{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);}
.md9_c00392{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);}
.m11a_c00392{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m5a_c00392{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);}
.m71_c00392{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);}
.m2d_c00392{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);}
.mfe_c00392{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);}
.m3a_c00392{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);}
.m1a_c00392{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);}
.mb2_c00392{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);}
.m22_c00392{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);}
.maf_c00392{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);}
.m97_c00392{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);}
.m70_c00392{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);}
.mab_c00392{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);}
.mf9_c00392{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);}
.m29_c00392{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);}
.m45_c00392{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);}
.m83_c00392{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);}
.m65_c00392{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);}
.m6f_c00392{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);}
.m6b_c00392{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);}
.m9f_c00392{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);}
.m13f_c00392{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);}
.md6_c00392{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);}
.mb_c00392{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);}
.m36_c00392{transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00392{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);}
.m100_c00392{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);}
.m11b_c00392{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);}
.m127_c00392{transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);}
.m49_c00392{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);}
.m110_c00392{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);}
.m66_c00392{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);}
.m6d_c00392{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);}
.m24_c00392{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);}
.m10c_c00392{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{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);}
.m16_c00392{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);}
.m11e_c00392{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m113_c00392{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);}
.ma0_c00392{transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);}
.m69_c00392{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);}
.md2_c00392{transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m13e_c00392{transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);}
.m131_c00392{transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);}
.m112_c00392{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);}
.m54_c00392{transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262090,0.000000,0.000000,0.250000,0,0);}
.m13b_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);}
.ma_c00392{transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);}
.m21_c00392{transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270715,0.000000,0.000000,0.250000,0,0);}
.m136_c00392{transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.274570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274570,0.000000,0.000000,0.250000,0,0);}
.m115_c00392{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.278205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278205,0.000000,0.000000,0.250000,0,0);}
.m72_c00392{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.mc7_c00392{transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311705,0.000000,0.000000,0.250000,0,0);}
.m56_c00392{transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325660,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);}
.m11f_c00392{transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.330105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330105,0.000000,0.000000,0.250000,0,0);}
.m129_c00392{transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);}
.m8f_c00392{transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334345,0.000000,0.000000,0.250000,0,0);}
.m63_c00392{transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.342080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342080,0.000000,0.000000,0.250000,0,0);}
.m13a_c00392{transform:matrix(0.343895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343895,0.000000,0.000000,0.250000,0,0);}
.m137_c00392{transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346150,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);}
.md7_c00392{transform:matrix(0.346790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346790,0.000000,0.000000,0.250000,0,0);}
.m114_c00392{transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);}
.m134_c00392{transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348685,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.349495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349495,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359740,0.000000,0.000000,0.250000,0,0);}
.m33_c00392{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);}
.mb1_c00392{transform:matrix(0.366650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366650,0.000000,0.000000,0.250000,0,0);}
.m111_c00392{transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);}
.m118_c00392{transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387950,0.000000,0.000000,0.250000,0,0);}
.m46_c00392{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m9b_c00392{transform:matrix(0.414415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414415,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.425370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425370,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.437730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437730,0.000000,0.000000,0.250000,0,0);}
.m53_c00392{transform:matrix(0.440320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440320,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);}
.m140_c00392{transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);}
.m10f_c00392{transform:matrix(0.477550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477550,0.000000,0.000000,0.250000,0,0);}
.m102_c00392{transform:matrix(0.503680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503680,0.000000,0.000000,0.250000,0,0);}
.m122_c00392{transform:matrix(0.527015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527015,0.000000,0.000000,0.250000,0,0);}
.m121_c00392{transform:matrix(0.595435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595435,0.000000,0.000000,0.250000,0,0);}
.m130_c00392{transform:matrix(0.670225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670225,0.000000,0.000000,0.250000,0,0);}
.mf4_c00392{transform:matrix(0.699615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699615,0.000000,0.000000,0.250000,0,0);}
.m12f_c00392{transform:matrix(0.703170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703170,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.725855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725855,0.000000,0.000000,0.250000,0,0);}
.m13d_c00392{transform:matrix(0.730635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730635,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;}
.fs10_c00392{font-size:29.400000px;}
.fs5_c00392{font-size:36.750000px;}
.fse_c00392{font-size:51.450000px;}
.fsf_c00392{font-size:55.650000px;}
.fs8_c00392{font-size:60.900000px;}
.fsa_c00392{font-size:64.050000px;}
.fs4_c00392{font-size:65.100000px;}
.fsd_c00392{font-size:66.150000px;}
.fs6_c00392{font-size:67.200000px;}
.fsb_c00392{font-size:68.250000px;}
.fs3_c00392{font-size:69.300000px;}
.fs7_c00392{font-size:70.350000px;}
.fs9_c00392{font-size:71.400000px;}
.fsc_c00392{font-size:73.500000px;}
.fs2_c00392{font-size:78.750000px;}
.fs1_c00392{font-size:112.350000px;}
.fs0_c00392{font-size:135.450000px;}
.fs11_c00392{font-size:176.400000px;}
.y0_c00392{bottom:0.000000px;}
.y1e_c00392{bottom:94.521000px;}
.y1d_c00392{bottom:112.050000px;}
.y1c_c00392{bottom:119.610000px;}
.y1b_c00392{bottom:137.491500px;}
.y1a_c00392{bottom:158.733000px;}
.y19_c00392{bottom:176.583000px;}
.y18_c00392{bottom:223.569000px;}
.y17_c00392{bottom:246.256500px;}
.y16_c00392{bottom:269.725500px;}
.y15_c00392{bottom:292.410000px;}
.y14_c00392{bottom:314.877000px;}
.y13_c00392{bottom:338.338500px;}
.y12_c00392{bottom:361.047000px;}
.y11_c00392{bottom:383.743500px;}
.y10_c00392{bottom:406.945500px;}
.yf_c00392{bottom:429.570000px;}
.ye_c00392{bottom:452.518500px;}
.yd_c00392{bottom:475.740000px;}
.yc_c00392{bottom:497.884500px;}
.yb_c00392{bottom:521.370000px;}
.ya_c00392{bottom:528.120000px;}
.y9_c00392{bottom:544.032000px;}
.y8_c00392{bottom:567.267000px;}
.y7_c00392{bottom:582.660000px;}
.y6_c00392{bottom:590.472000px;}
.y5_c00392{bottom:612.892500px;}
.y4_c00392{bottom:635.547000px;}
.y3_c00392{bottom:666.879000px;}
.y2_c00392{bottom:725.962500px;}
.y1_c00392{bottom:770.562000px;}
.h12_c00392{height:29.400000px;}
.h7_c00392{height:36.750000px;}
.h10_c00392{height:51.450000px;}
.h11_c00392{height:55.650000px;}
.ha_c00392{height:60.900000px;}
.hc_c00392{height:64.050000px;}
.h6_c00392{height:65.100000px;}
.hf_c00392{height:66.150000px;}
.h8_c00392{height:67.200000px;}
.hd_c00392{height:68.250000px;}
.h5_c00392{height:69.300000px;}
.h9_c00392{height:70.350000px;}
.hb_c00392{height:71.400000px;}
.he_c00392{height:73.500000px;}
.h4_c00392{height:78.750000px;}
.h3_c00392{height:112.350000px;}
.h2_c00392{height:135.450000px;}
.h13_c00392{height:176.400000px;}
.h1_c00392{height:1005.000000px;}
.h0_c00392{height:1005.150000px;}
.w0_c00392{width:715.200000px;}
.w1_c00392{width:715.500000px;}
.x0_c00392{left:0.000000px;}
.xba_c00392{left:36.990000px;}
.xb4_c00392{left:41.580000px;}
.x7d_c00392{left:78.840000px;}
.x5c_c00392{left:80.460000px;}
.x8_c00392{left:82.080000px;}
.x1_c00392{left:83.160000px;}
.x2e_c00392{left:95.580000px;}
.xa_c00392{left:99.630000px;}
.xa0_c00392{left:102.600000px;}
.x5_c00392{left:103.680000px;}
.x8d_c00392{left:106.920000px;}
.x90_c00392{left:108.270000px;}
.x16_c00392{left:115.020000px;}
.x48_c00392{left:117.720000px;}
.xb5_c00392{left:120.150000px;}
.x3e_c00392{left:122.040000px;}
.x7e_c00392{left:123.660000px;}
.x21_c00392{left:125.010000px;}
.xb_c00392{left:126.090000px;}
.x2f_c00392{left:129.330000px;}
.x86_c00392{left:132.030000px;}
.xaa_c00392{left:133.110000px;}
.x6d_c00392{left:135.270000px;}
.x99_c00392{left:136.890000px;}
.xbc_c00392{left:139.050000px;}
.x6_c00392{left:140.130000px;}
.x75_c00392{left:141.480000px;}
.x30_c00392{left:143.910000px;}
.x87_c00392{left:147.420000px;}
.x82_c00392{left:148.770000px;}
.x17_c00392{left:150.120000px;}
.x51_c00392{left:153.900000px;}
.x9a_c00392{left:155.790000px;}
.xc_c00392{left:159.570000px;}
.x91_c00392{left:162.000000px;}
.xb6_c00392{left:164.970000px;}
.x18_c00392{left:168.750000px;}
.x76_c00392{left:170.370000px;}
.x22_c00392{left:171.450000px;}
.x3f_c00392{left:176.580000px;}
.xa1_c00392{left:181.980000px;}
.x77_c00392{left:186.570000px;}
.x49_c00392{left:188.730000px;}
.x23_c00392{left:190.620000px;}
.x52_c00392{left:192.510000px;}
.x65_c00392{left:193.860000px;}
.xd_c00392{left:196.560000px;}
.x6e_c00392{left:199.800000px;}
.x31_c00392{left:203.310000px;}
.x78_c00392{left:206.550000px;}
.x19_c00392{left:207.900000px;}
.xbd_c00392{left:210.060000px;}
.xab_c00392{left:211.410000px;}
.x66_c00392{left:214.650000px;}
.x88_c00392{left:216.540000px;}
.x92_c00392{left:218.160000px;}
.x4a_c00392{left:219.510000px;}
.x9b_c00392{left:223.020000px;}
.x32_c00392{left:224.910000px;}
.xe_c00392{left:228.420000px;}
.x67_c00392{left:230.310000px;}
.x5d_c00392{left:233.280000px;}
.x93_c00392{left:241.920000px;}
.x40_c00392{left:243.810000px;}
.x24_c00392{left:245.160000px;}
.x5e_c00392{left:251.370000px;}
.x7f_c00392{left:255.690000px;}
.x4b_c00392{left:258.390000px;}
.x1a_c00392{left:260.820000px;}
.xc1_c00392{left:262.170000px;}
.xac_c00392{left:263.520000px;}
.xb7_c00392{left:265.680000px;}
.x6f_c00392{left:266.760000px;}
.x53_c00392{left:268.920000px;}
.x25_c00392{left:272.970000px;}
.x1b_c00392{left:274.050000px;}
.x33_c00392{left:275.400000px;}
.x68_c00392{left:278.370000px;}
.x54_c00392{left:280.260000px;}
.xf_c00392{left:282.420000px;}
.x5f_c00392{left:284.310000px;}
.x79_c00392{left:287.550000px;}
.x34_c00392{left:291.060000px;}
.x41_c00392{left:292.950000px;}
.x8e_c00392{left:294.840000px;}
.xa2_c00392{left:298.350000px;}
.x1c_c00392{left:302.670000px;}
.x26_c00392{left:303.750000px;}
.x69_c00392{left:307.260000px;}
.x55_c00392{left:309.150000px;}
.xa7_c00392{left:312.660000px;}
.x4c_c00392{left:317.520000px;}
.xad_c00392{left:318.600000px;}
.xb8_c00392{left:319.950000px;}
.x2_c00392{left:321.840000px;}
.x7a_c00392{left:323.460000px;}
.x70_c00392{left:326.700000px;}
.x94_c00392{left:328.320000px;}
.x42_c00392{left:330.480000px;}
.x27_c00392{left:332.100000px;}
.x35_c00392{left:333.720000px;}
.x80_c00392{left:335.340000px;}
.x7_c00392{left:341.280000px;}
.x56_c00392{left:342.360000px;}
.x60_c00392{left:344.790000px;}
.xa3_c00392{left:346.950000px;}
.x28_c00392{left:349.650000px;}
.x43_c00392{left:352.350000px;}
.x83_c00392{left:355.050000px;}
.xbe_c00392{left:359.100000px;}
.x71_c00392{left:360.450000px;}
.x36_c00392{left:364.770000px;}
.x10_c00392{left:365.850000px;}
.xae_c00392{left:370.710000px;}
.x89_c00392{left:373.950000px;}
.x95_c00392{left:375.030000px;}
.x4d_c00392{left:380.160000px;}
.x9c_c00392{left:381.240000px;}
.xbb_c00392{left:382.590000px;}
.x57_c00392{left:386.640000px;}
.xaf_c00392{left:389.880000px;}
.x84_c00392{left:390.960000px;}
.x37_c00392{left:393.660000px;}
.x6a_c00392{left:395.550000px;}
.x8a_c00392{left:396.630000px;}
.x44_c00392{left:397.980000px;}
.x3_c00392{left:400.410000px;}
.xb9_c00392{left:402.570000px;}
.x58_c00392{left:407.430000px;}
.x38_c00392{left:412.290000px;}
.x45_c00392{left:415.530000px;}
.x11_c00392{left:416.880000px;}
.x72_c00392{left:422.010000px;}
.x1d_c00392{left:424.980000px;}
.xa4_c00392{left:428.760000px;}
.x61_c00392{left:430.380000px;}
.xb0_c00392{left:432.810000px;}
.x29_c00392{left:436.050000px;}
.x4e_c00392{left:439.560000px;}
.x73_c00392{left:442.260000px;}
.x39_c00392{left:443.340000px;}
.x1e_c00392{left:446.850000px;}
.x62_c00392{left:449.010000px;}
.x8f_c00392{left:451.170000px;}
.x3a_c00392{left:456.030000px;}
.xa5_c00392{left:459.270000px;}
.x9d_c00392{left:460.890000px;}
.x1f_c00392{left:465.210000px;}
.x46_c00392{left:469.800000px;}
.x8b_c00392{left:470.880000px;}
.x7b_c00392{left:475.470000px;}
.x4f_c00392{left:477.900000px;}
.x3b_c00392{left:478.980000px;}
.x12_c00392{left:480.600000px;}
.x85_c00392{left:482.490000px;}
.xa8_c00392{left:484.380000px;}
.x2a_c00392{left:487.890000px;}
.x8c_c00392{left:490.320000px;}
.xbf_c00392{left:495.720000px;}
.x96_c00392{left:497.070000px;}
.x59_c00392{left:498.420000px;}
.x6b_c00392{left:500.850000px;}
.x63_c00392{left:502.740000px;}
.x13_c00392{left:503.820000px;}
.x47_c00392{left:507.870000px;}
.x7c_c00392{left:510.300000px;}
.x2b_c00392{left:514.080000px;}
.x9e_c00392{left:517.590000px;}
.x20_c00392{left:520.830000px;}
.x81_c00392{left:522.720000px;}
.x74_c00392{left:523.800000px;}
.x64_c00392{left:526.770000px;}
.xa6_c00392{left:528.930000px;}
.x5a_c00392{left:533.520000px;}
.x50_c00392{left:535.680000px;}
.x9_c00392{left:539.190000px;}
.x14_c00392{left:541.350000px;}
.xb1_c00392{left:544.320000px;}
.x3c_c00392{left:545.400000px;}
.x97_c00392{left:550.800000px;}
.xb2_c00392{left:554.580000px;}
.x2c_c00392{left:556.740000px;}
.x4_c00392{left:588.600000px;}
.x15_c00392{left:590.490000px;}
.x9f_c00392{left:591.840000px;}
.x5b_c00392{left:597.240000px;}
.x2d_c00392{left:602.100000px;}
.x6c_c00392{left:603.450000px;}
.x3d_c00392{left:605.070000px;}
.xa9_c00392{left:606.150000px;}
.xb3_c00392{left:607.500000px;}
.xc0_c00392{left:610.740000px;}
.x98_c00392{left:616.680000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fs10_c00392{font-size:26.133333pt;}
.fs5_c00392{font-size:32.666667pt;}
.fse_c00392{font-size:45.733333pt;}
.fsf_c00392{font-size:49.466667pt;}
.fs8_c00392{font-size:54.133333pt;}
.fsa_c00392{font-size:56.933333pt;}
.fs4_c00392{font-size:57.866667pt;}
.fsd_c00392{font-size:58.800000pt;}
.fs6_c00392{font-size:59.733333pt;}
.fsb_c00392{font-size:60.666667pt;}
.fs3_c00392{font-size:61.600000pt;}
.fs7_c00392{font-size:62.533333pt;}
.fs9_c00392{font-size:63.466667pt;}
.fsc_c00392{font-size:65.333333pt;}
.fs2_c00392{font-size:70.000000pt;}
.fs1_c00392{font-size:99.866667pt;}
.fs0_c00392{font-size:120.400000pt;}
.fs11_c00392{font-size:156.800000pt;}
.y0_c00392{bottom:0.000000pt;}
.y1e_c00392{bottom:84.018667pt;}
.y1d_c00392{bottom:99.600000pt;}
.y1c_c00392{bottom:106.320000pt;}
.y1b_c00392{bottom:122.214667pt;}
.y1a_c00392{bottom:141.096000pt;}
.y19_c00392{bottom:156.962667pt;}
.y18_c00392{bottom:198.728000pt;}
.y17_c00392{bottom:218.894667pt;}
.y16_c00392{bottom:239.756000pt;}
.y15_c00392{bottom:259.920000pt;}
.y14_c00392{bottom:279.890667pt;}
.y13_c00392{bottom:300.745333pt;}
.y12_c00392{bottom:320.930667pt;}
.y11_c00392{bottom:341.105333pt;}
.y10_c00392{bottom:361.729333pt;}
.yf_c00392{bottom:381.840000pt;}
.ye_c00392{bottom:402.238667pt;}
.yd_c00392{bottom:422.880000pt;}
.yc_c00392{bottom:442.564000pt;}
.yb_c00392{bottom:463.440000pt;}
.ya_c00392{bottom:469.440000pt;}
.y9_c00392{bottom:483.584000pt;}
.y8_c00392{bottom:504.237333pt;}
.y7_c00392{bottom:517.920000pt;}
.y6_c00392{bottom:524.864000pt;}
.y5_c00392{bottom:544.793333pt;}
.y4_c00392{bottom:564.930667pt;}
.y3_c00392{bottom:592.781333pt;}
.y2_c00392{bottom:645.300000pt;}
.y1_c00392{bottom:684.944000pt;}
.h12_c00392{height:26.133333pt;}
.h7_c00392{height:32.666667pt;}
.h10_c00392{height:45.733333pt;}
.h11_c00392{height:49.466667pt;}
.ha_c00392{height:54.133333pt;}
.hc_c00392{height:56.933333pt;}
.h6_c00392{height:57.866667pt;}
.hf_c00392{height:58.800000pt;}
.h8_c00392{height:59.733333pt;}
.hd_c00392{height:60.666667pt;}
.h5_c00392{height:61.600000pt;}
.h9_c00392{height:62.533333pt;}
.hb_c00392{height:63.466667pt;}
.he_c00392{height:65.333333pt;}
.h4_c00392{height:70.000000pt;}
.h3_c00392{height:99.866667pt;}
.h2_c00392{height:120.400000pt;}
.h13_c00392{height:156.800000pt;}
.h1_c00392{height:893.333333pt;}
.h0_c00392{height:893.466667pt;}
.w0_c00392{width:635.733333pt;}
.w1_c00392{width:636.000000pt;}
.x0_c00392{left:0.000000pt;}
.xba_c00392{left:32.880000pt;}
.xb4_c00392{left:36.960000pt;}
.x7d_c00392{left:70.080000pt;}
.x5c_c00392{left:71.520000pt;}
.x8_c00392{left:72.960000pt;}
.x1_c00392{left:73.920000pt;}
.x2e_c00392{left:84.960000pt;}
.xa_c00392{left:88.560000pt;}
.xa0_c00392{left:91.200000pt;}
.x5_c00392{left:92.160000pt;}
.x8d_c00392{left:95.040000pt;}
.x90_c00392{left:96.240000pt;}
.x16_c00392{left:102.240000pt;}
.x48_c00392{left:104.640000pt;}
.xb5_c00392{left:106.800000pt;}
.x3e_c00392{left:108.480000pt;}
.x7e_c00392{left:109.920000pt;}
.x21_c00392{left:111.120000pt;}
.xb_c00392{left:112.080000pt;}
.x2f_c00392{left:114.960000pt;}
.x86_c00392{left:117.360000pt;}
.xaa_c00392{left:118.320000pt;}
.x6d_c00392{left:120.240000pt;}
.x99_c00392{left:121.680000pt;}
.xbc_c00392{left:123.600000pt;}
.x6_c00392{left:124.560000pt;}
.x75_c00392{left:125.760000pt;}
.x30_c00392{left:127.920000pt;}
.x87_c00392{left:131.040000pt;}
.x82_c00392{left:132.240000pt;}
.x17_c00392{left:133.440000pt;}
.x51_c00392{left:136.800000pt;}
.x9a_c00392{left:138.480000pt;}
.xc_c00392{left:141.840000pt;}
.x91_c00392{left:144.000000pt;}
.xb6_c00392{left:146.640000pt;}
.x18_c00392{left:150.000000pt;}
.x76_c00392{left:151.440000pt;}
.x22_c00392{left:152.400000pt;}
.x3f_c00392{left:156.960000pt;}
.xa1_c00392{left:161.760000pt;}
.x77_c00392{left:165.840000pt;}
.x49_c00392{left:167.760000pt;}
.x23_c00392{left:169.440000pt;}
.x52_c00392{left:171.120000pt;}
.x65_c00392{left:172.320000pt;}
.xd_c00392{left:174.720000pt;}
.x6e_c00392{left:177.600000pt;}
.x31_c00392{left:180.720000pt;}
.x78_c00392{left:183.600000pt;}
.x19_c00392{left:184.800000pt;}
.xbd_c00392{left:186.720000pt;}
.xab_c00392{left:187.920000pt;}
.x66_c00392{left:190.800000pt;}
.x88_c00392{left:192.480000pt;}
.x92_c00392{left:193.920000pt;}
.x4a_c00392{left:195.120000pt;}
.x9b_c00392{left:198.240000pt;}
.x32_c00392{left:199.920000pt;}
.xe_c00392{left:203.040000pt;}
.x67_c00392{left:204.720000pt;}
.x5d_c00392{left:207.360000pt;}
.x93_c00392{left:215.040000pt;}
.x40_c00392{left:216.720000pt;}
.x24_c00392{left:217.920000pt;}
.x5e_c00392{left:223.440000pt;}
.x7f_c00392{left:227.280000pt;}
.x4b_c00392{left:229.680000pt;}
.x1a_c00392{left:231.840000pt;}
.xc1_c00392{left:233.040000pt;}
.xac_c00392{left:234.240000pt;}
.xb7_c00392{left:236.160000pt;}
.x6f_c00392{left:237.120000pt;}
.x53_c00392{left:239.040000pt;}
.x25_c00392{left:242.640000pt;}
.x1b_c00392{left:243.600000pt;}
.x33_c00392{left:244.800000pt;}
.x68_c00392{left:247.440000pt;}
.x54_c00392{left:249.120000pt;}
.xf_c00392{left:251.040000pt;}
.x5f_c00392{left:252.720000pt;}
.x79_c00392{left:255.600000pt;}
.x34_c00392{left:258.720000pt;}
.x41_c00392{left:260.400000pt;}
.x8e_c00392{left:262.080000pt;}
.xa2_c00392{left:265.200000pt;}
.x1c_c00392{left:269.040000pt;}
.x26_c00392{left:270.000000pt;}
.x69_c00392{left:273.120000pt;}
.x55_c00392{left:274.800000pt;}
.xa7_c00392{left:277.920000pt;}
.x4c_c00392{left:282.240000pt;}
.xad_c00392{left:283.200000pt;}
.xb8_c00392{left:284.400000pt;}
.x2_c00392{left:286.080000pt;}
.x7a_c00392{left:287.520000pt;}
.x70_c00392{left:290.400000pt;}
.x94_c00392{left:291.840000pt;}
.x42_c00392{left:293.760000pt;}
.x27_c00392{left:295.200000pt;}
.x35_c00392{left:296.640000pt;}
.x80_c00392{left:298.080000pt;}
.x7_c00392{left:303.360000pt;}
.x56_c00392{left:304.320000pt;}
.x60_c00392{left:306.480000pt;}
.xa3_c00392{left:308.400000pt;}
.x28_c00392{left:310.800000pt;}
.x43_c00392{left:313.200000pt;}
.x83_c00392{left:315.600000pt;}
.xbe_c00392{left:319.200000pt;}
.x71_c00392{left:320.400000pt;}
.x36_c00392{left:324.240000pt;}
.x10_c00392{left:325.200000pt;}
.xae_c00392{left:329.520000pt;}
.x89_c00392{left:332.400000pt;}
.x95_c00392{left:333.360000pt;}
.x4d_c00392{left:337.920000pt;}
.x9c_c00392{left:338.880000pt;}
.xbb_c00392{left:340.080000pt;}
.x57_c00392{left:343.680000pt;}
.xaf_c00392{left:346.560000pt;}
.x84_c00392{left:347.520000pt;}
.x37_c00392{left:349.920000pt;}
.x6a_c00392{left:351.600000pt;}
.x8a_c00392{left:352.560000pt;}
.x44_c00392{left:353.760000pt;}
.x3_c00392{left:355.920000pt;}
.xb9_c00392{left:357.840000pt;}
.x58_c00392{left:362.160000pt;}
.x38_c00392{left:366.480000pt;}
.x45_c00392{left:369.360000pt;}
.x11_c00392{left:370.560000pt;}
.x72_c00392{left:375.120000pt;}
.x1d_c00392{left:377.760000pt;}
.xa4_c00392{left:381.120000pt;}
.x61_c00392{left:382.560000pt;}
.xb0_c00392{left:384.720000pt;}
.x29_c00392{left:387.600000pt;}
.x4e_c00392{left:390.720000pt;}
.x73_c00392{left:393.120000pt;}
.x39_c00392{left:394.080000pt;}
.x1e_c00392{left:397.200000pt;}
.x62_c00392{left:399.120000pt;}
.x8f_c00392{left:401.040000pt;}
.x3a_c00392{left:405.360000pt;}
.xa5_c00392{left:408.240000pt;}
.x9d_c00392{left:409.680000pt;}
.x1f_c00392{left:413.520000pt;}
.x46_c00392{left:417.600000pt;}
.x8b_c00392{left:418.560000pt;}
.x7b_c00392{left:422.640000pt;}
.x4f_c00392{left:424.800000pt;}
.x3b_c00392{left:425.760000pt;}
.x12_c00392{left:427.200000pt;}
.x85_c00392{left:428.880000pt;}
.xa8_c00392{left:430.560000pt;}
.x2a_c00392{left:433.680000pt;}
.x8c_c00392{left:435.840000pt;}
.xbf_c00392{left:440.640000pt;}
.x96_c00392{left:441.840000pt;}
.x59_c00392{left:443.040000pt;}
.x6b_c00392{left:445.200000pt;}
.x63_c00392{left:446.880000pt;}
.x13_c00392{left:447.840000pt;}
.x47_c00392{left:451.440000pt;}
.x7c_c00392{left:453.600000pt;}
.x2b_c00392{left:456.960000pt;}
.x9e_c00392{left:460.080000pt;}
.x20_c00392{left:462.960000pt;}
.x81_c00392{left:464.640000pt;}
.x74_c00392{left:465.600000pt;}
.x64_c00392{left:468.240000pt;}
.xa6_c00392{left:470.160000pt;}
.x5a_c00392{left:474.240000pt;}
.x50_c00392{left:476.160000pt;}
.x9_c00392{left:479.280000pt;}
.x14_c00392{left:481.200000pt;}
.xb1_c00392{left:483.840000pt;}
.x3c_c00392{left:484.800000pt;}
.x97_c00392{left:489.600000pt;}
.xb2_c00392{left:492.960000pt;}
.x2c_c00392{left:494.880000pt;}
.x4_c00392{left:523.200000pt;}
.x15_c00392{left:524.880000pt;}
.x9f_c00392{left:526.080000pt;}
.x5b_c00392{left:530.880000pt;}
.x2d_c00392{left:535.200000pt;}
.x6c_c00392{left:536.400000pt;}
.x3d_c00392{left:537.840000pt;}
.xa9_c00392{left:538.800000pt;}
.xb3_c00392{left:540.000000pt;}
.xc0_c00392{left:542.880000pt;}
.x98_c00392{left:548.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m152_c00393{transform:matrix(0.011065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011065,0.000000,0.000000,0.250000,0,0);}
.m9d_c00393{transform:matrix(0.016045,-0.000112,0.001750,0.249994,0,0);-ms-transform:matrix(0.016045,-0.000112,0.001750,0.249994,0,0);-webkit-transform:matrix(0.016045,-0.000112,0.001750,0.249994,0,0);}
.m2a_c00393{transform:matrix(0.084564,-0.001015,0.003000,0.249982,0,0);-ms-transform:matrix(0.084564,-0.001015,0.003000,0.249982,0,0);-webkit-transform:matrix(0.084564,-0.001015,0.003000,0.249982,0,0);}
.ma7_c00393{transform:matrix(0.088198,-0.000617,0.001750,0.249994,0,0);-ms-transform:matrix(0.088198,-0.000617,0.001750,0.249994,0,0);-webkit-transform:matrix(0.088198,-0.000617,0.001750,0.249994,0,0);}
.m177_c00393{transform:matrix(0.091715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091715,0.000000,0.000000,0.250000,0,0);}
.m110_c00393{transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.099953,-0.001199,0.003000,0.249982,0,0);-ms-transform:matrix(0.099953,-0.001199,0.003000,0.249982,0,0);-webkit-transform:matrix(0.099953,-0.001199,0.003000,0.249982,0,0);}
.md_c00393{transform:matrix(0.111894,-0.001567,0.003500,0.249976,0,0);-ms-transform:matrix(0.111894,-0.001567,0.003500,0.249976,0,0);-webkit-transform:matrix(0.111894,-0.001567,0.003500,0.249976,0,0);}
.ma1_c00393{transform:matrix(0.123867,-0.000867,0.001750,0.249994,0,0);-ms-transform:matrix(0.123867,-0.000867,0.001750,0.249994,0,0);-webkit-transform:matrix(0.123867,-0.000867,0.001750,0.249994,0,0);}
.ma9_c00393{transform:matrix(0.127202,-0.000890,0.001750,0.249994,0,0);-ms-transform:matrix(0.127202,-0.000890,0.001750,0.249994,0,0);-webkit-transform:matrix(0.127202,-0.000890,0.001750,0.249994,0,0);}
.m18f_c00393{transform:matrix(0.127735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127735,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.132107,-0.001849,0.003500,0.249976,0,0);-ms-transform:matrix(0.132107,-0.001849,0.003500,0.249976,0,0);-webkit-transform:matrix(0.132107,-0.001849,0.003500,0.249976,0,0);}
.md8_c00393{transform:matrix(0.133887,-0.000937,0.001750,0.249994,0,0);-ms-transform:matrix(0.133887,-0.000937,0.001750,0.249994,0,0);-webkit-transform:matrix(0.133887,-0.000937,0.001750,0.249994,0,0);}
.m8e_c00393{transform:matrix(0.134140,-0.001610,0.003000,0.249982,0,0);-ms-transform:matrix(0.134140,-0.001610,0.003000,0.249982,0,0);-webkit-transform:matrix(0.134140,-0.001610,0.003000,0.249982,0,0);}
.mf1_c00393{transform:matrix(0.134457,-0.000941,0.001750,0.249994,0,0);-ms-transform:matrix(0.134457,-0.000941,0.001750,0.249994,0,0);-webkit-transform:matrix(0.134457,-0.000941,0.001750,0.249994,0,0);}
.m2b_c00393{transform:matrix(0.135570,-0.001627,0.003000,0.249982,0,0);-ms-transform:matrix(0.135570,-0.001627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.135570,-0.001627,0.003000,0.249982,0,0);}
.m98_c00393{transform:matrix(0.135580,-0.001627,0.003000,0.249982,0,0);-ms-transform:matrix(0.135580,-0.001627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.135580,-0.001627,0.003000,0.249982,0,0);}
.mec_c00393{transform:matrix(0.136437,-0.000955,0.001750,0.249994,0,0);-ms-transform:matrix(0.136437,-0.000955,0.001750,0.249994,0,0);-webkit-transform:matrix(0.136437,-0.000955,0.001750,0.249994,0,0);}
.m25_c00393{transform:matrix(0.137485,-0.001650,0.003000,0.249982,0,0);-ms-transform:matrix(0.137485,-0.001650,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137485,-0.001650,0.003000,0.249982,0,0);}
.m2_c00393{transform:matrix(0.140691,-0.001970,0.003500,0.249976,0,0);-ms-transform:matrix(0.140691,-0.001970,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140691,-0.001970,0.003500,0.249976,0,0);}
.mbb_c00393{transform:matrix(0.142417,-0.000997,0.001750,0.249994,0,0);-ms-transform:matrix(0.142417,-0.000997,0.001750,0.249994,0,0);-webkit-transform:matrix(0.142417,-0.000997,0.001750,0.249994,0,0);}
.mc4_c00393{transform:matrix(0.142951,-0.001001,0.001750,0.249994,0,0);-ms-transform:matrix(0.142951,-0.001001,0.001750,0.249994,0,0);-webkit-transform:matrix(0.142951,-0.001001,0.001750,0.249994,0,0);}
.ma_c00393{transform:matrix(0.143166,-0.002004,0.003500,0.249976,0,0);-ms-transform:matrix(0.143166,-0.002004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.143166,-0.002004,0.003500,0.249976,0,0);}
.m56_c00393{transform:matrix(0.144285,-0.001731,0.003000,0.249982,0,0);-ms-transform:matrix(0.144285,-0.001731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144285,-0.001731,0.003000,0.249982,0,0);}
.mf8_c00393{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);}
.mb0_c00393{transform:matrix(0.145886,-0.001021,0.001750,0.249994,0,0);-ms-transform:matrix(0.145886,-0.001021,0.001750,0.249994,0,0);-webkit-transform:matrix(0.145886,-0.001021,0.001750,0.249994,0,0);}
.m7_c00393{transform:matrix(0.146296,-0.002048,0.003500,0.249976,0,0);-ms-transform:matrix(0.146296,-0.002048,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146296,-0.002048,0.003500,0.249976,0,0);}
.m32_c00393{transform:matrix(0.146929,-0.001763,0.003000,0.249982,0,0);-ms-transform:matrix(0.146929,-0.001763,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146929,-0.001763,0.003000,0.249982,0,0);}
.m11a_c00393{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);}
.m43_c00393{transform:matrix(0.148134,-0.001778,0.003000,0.249982,0,0);-ms-transform:matrix(0.148134,-0.001778,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148134,-0.001778,0.003000,0.249982,0,0);}
.m93_c00393{transform:matrix(0.148284,-0.001779,0.003000,0.249982,0,0);-ms-transform:matrix(0.148284,-0.001779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148284,-0.001779,0.003000,0.249982,0,0);}
.m21_c00393{transform:matrix(0.148534,-0.001782,0.003000,0.249982,0,0);-ms-transform:matrix(0.148534,-0.001782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148534,-0.001782,0.003000,0.249982,0,0);}
.m118_c00393{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.me2_c00393{transform:matrix(0.149106,-0.001044,0.001750,0.249994,0,0);-ms-transform:matrix(0.149106,-0.001044,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149106,-0.001044,0.001750,0.249994,0,0);}
.m17_c00393{transform:matrix(0.149495,-0.002093,0.003500,0.249976,0,0);-ms-transform:matrix(0.149495,-0.002093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149495,-0.002093,0.003500,0.249976,0,0);}
.mb7_c00393{transform:matrix(0.150636,-0.001054,0.001750,0.249994,0,0);-ms-transform:matrix(0.150636,-0.001054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150636,-0.001054,0.001750,0.249994,0,0);}
.m8_c00393{transform:matrix(0.151410,-0.002120,0.003500,0.249976,0,0);-ms-transform:matrix(0.151410,-0.002120,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151410,-0.002120,0.003500,0.249976,0,0);}
.m85_c00393{transform:matrix(0.151469,-0.001818,0.003000,0.249982,0,0);-ms-transform:matrix(0.151469,-0.001818,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151469,-0.001818,0.003000,0.249982,0,0);}
.m107_c00393{transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.153824,-0.001846,0.003000,0.249982,0,0);-ms-transform:matrix(0.153824,-0.001846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153824,-0.001846,0.003000,0.249982,0,0);}
.m97_c00393{transform:matrix(0.153864,-0.001846,0.003000,0.249982,0,0);-ms-transform:matrix(0.153864,-0.001846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153864,-0.001846,0.003000,0.249982,0,0);}
.m115_c00393{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);}
.m6_c00393{transform:matrix(0.154730,-0.002166,0.003500,0.249976,0,0);-ms-transform:matrix(0.154730,-0.002166,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154730,-0.002166,0.003500,0.249976,0,0);}
.m35_c00393{transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);-ms-transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155749,-0.001869,0.003000,0.249982,0,0);}
.mac_c00393{transform:matrix(0.155751,-0.001090,0.001750,0.249994,0,0);-ms-transform:matrix(0.155751,-0.001090,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155751,-0.001090,0.001750,0.249994,0,0);}
.maa_c00393{transform:matrix(0.156246,-0.001094,0.001750,0.249994,0,0);-ms-transform:matrix(0.156246,-0.001094,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156246,-0.001094,0.001750,0.249994,0,0);}
.m94_c00393{transform:matrix(0.156379,-0.001877,0.003000,0.249982,0,0);-ms-transform:matrix(0.156379,-0.001877,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156379,-0.001877,0.003000,0.249982,0,0);}
.mf_c00393{transform:matrix(0.157570,-0.002206,0.003500,0.249976,0,0);-ms-transform:matrix(0.157570,-0.002206,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157570,-0.002206,0.003500,0.249976,0,0);}
.m187_c00393{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);}
.m5_c00393{transform:matrix(0.157940,-0.002211,0.003500,0.249976,0,0);-ms-transform:matrix(0.157940,-0.002211,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157940,-0.002211,0.003500,0.249976,0,0);}
.mbf_c00393{transform:matrix(0.158091,-0.001107,0.001750,0.249994,0,0);-ms-transform:matrix(0.158091,-0.001107,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158091,-0.001107,0.001750,0.249994,0,0);}
.mf5_c00393{transform:matrix(0.158146,-0.001107,0.001750,0.249994,0,0);-ms-transform:matrix(0.158146,-0.001107,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158146,-0.001107,0.001750,0.249994,0,0);}
.mfd_c00393{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);}
.m16_c00393{transform:matrix(0.158604,-0.002220,0.003500,0.249976,0,0);-ms-transform:matrix(0.158604,-0.002220,0.003500,0.249976,0,0);-webkit-transform:matrix(0.158604,-0.002220,0.003500,0.249976,0,0);}
.mf3_c00393{transform:matrix(0.158766,-0.001111,0.001750,0.249994,0,0);-ms-transform:matrix(0.158766,-0.001111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158766,-0.001111,0.001750,0.249994,0,0);}
.m11f_c00393{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);}
.m36_c00393{transform:matrix(0.159009,-0.001908,0.003000,0.249982,0,0);-ms-transform:matrix(0.159009,-0.001908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159009,-0.001908,0.003000,0.249982,0,0);}
.m149_c00393{transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);}
.m121_c00393{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);}
.md1_c00393{transform:matrix(0.159836,-0.001119,0.001750,0.249994,0,0);-ms-transform:matrix(0.159836,-0.001119,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159836,-0.001119,0.001750,0.249994,0,0);}
.mf6_c00393{transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);-ms-transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159846,-0.001119,0.001750,0.249994,0,0);}
.mb_c00393{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);}
.mc3_c00393{transform:matrix(0.160261,-0.001122,0.001750,0.249994,0,0);-ms-transform:matrix(0.160261,-0.001122,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160261,-0.001122,0.001750,0.249994,0,0);}
.m105_c00393{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);}
.m9c_c00393{transform:matrix(0.160783,-0.001929,0.003000,0.249982,0,0);-ms-transform:matrix(0.160783,-0.001929,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160783,-0.001929,0.003000,0.249982,0,0);}
.m9_c00393{transform:matrix(0.161039,-0.002255,0.003500,0.249976,0,0);-ms-transform:matrix(0.161039,-0.002255,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161039,-0.002255,0.003500,0.249976,0,0);}
.m117_c00393{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);}
.m26_c00393{transform:matrix(0.162313,-0.001948,0.003000,0.249982,0,0);-ms-transform:matrix(0.162313,-0.001948,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162313,-0.001948,0.003000,0.249982,0,0);}
.m47_c00393{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);}
.m2c_c00393{transform:matrix(0.162378,-0.001949,0.003000,0.249982,0,0);-ms-transform:matrix(0.162378,-0.001949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162378,-0.001949,0.003000,0.249982,0,0);}
.m44_c00393{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);}
.mf0_c00393{transform:matrix(0.162886,-0.001140,0.001750,0.249994,0,0);-ms-transform:matrix(0.162886,-0.001140,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162886,-0.001140,0.001750,0.249994,0,0);}
.mb8_c00393{transform:matrix(0.162981,-0.001141,0.001750,0.249994,0,0);-ms-transform:matrix(0.162981,-0.001141,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162981,-0.001141,0.001750,0.249994,0,0);}
.m5b_c00393{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);}
.m102_c00393{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);}
.m67_c00393{transform:matrix(0.163168,-0.001958,0.003000,0.249982,0,0);-ms-transform:matrix(0.163168,-0.001958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163168,-0.001958,0.003000,0.249982,0,0);}
.m14_c00393{transform:matrix(0.163264,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163264,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163264,-0.002286,0.003500,0.249976,0,0);}
.mad_c00393{transform:matrix(0.163866,-0.001147,0.001750,0.249994,0,0);-ms-transform:matrix(0.163866,-0.001147,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163866,-0.001147,0.001750,0.249994,0,0);}
.m28_c00393{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);}
.m7d_c00393{transform:matrix(0.164733,-0.001977,0.003000,0.249982,0,0);-ms-transform:matrix(0.164733,-0.001977,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164733,-0.001977,0.003000,0.249982,0,0);}
.m1a_c00393{transform:matrix(0.164984,-0.002310,0.003500,0.249976,0,0);-ms-transform:matrix(0.164984,-0.002310,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164984,-0.002310,0.003500,0.249976,0,0);}
.m139_c00393{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);}
.m7c_c00393{transform:matrix(0.165448,-0.001985,0.003000,0.249982,0,0);-ms-transform:matrix(0.165448,-0.001985,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165448,-0.001985,0.003000,0.249982,0,0);}
.mfc_c00393{transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165760,0.000000,0.000000,0.250000,0,0);}
.m17a_c00393{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);}
.m147_c00393{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);}
.m10f_c00393{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);}
.md4_c00393{transform:matrix(0.167201,-0.001170,0.001750,0.249994,0,0);-ms-transform:matrix(0.167201,-0.001170,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167201,-0.001170,0.001750,0.249994,0,0);}
.m186_c00393{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);}
.m189_c00393{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);}
.ma3_c00393{transform:matrix(0.167901,-0.001175,0.001750,0.249994,0,0);-ms-transform:matrix(0.167901,-0.001175,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167901,-0.001175,0.001750,0.249994,0,0);}
.m63_c00393{transform:matrix(0.167903,-0.002015,0.003000,0.249982,0,0);-ms-transform:matrix(0.167903,-0.002015,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167903,-0.002015,0.003000,0.249982,0,0);}
.ma8_c00393{transform:matrix(0.167966,-0.001176,0.001750,0.249994,0,0);-ms-transform:matrix(0.167966,-0.001176,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167966,-0.001176,0.001750,0.249994,0,0);}
.mfe_c00393{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);}
.m72_c00393{transform:matrix(0.168078,-0.002017,0.003000,0.249982,0,0);-ms-transform:matrix(0.168078,-0.002017,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168078,-0.002017,0.003000,0.249982,0,0);}
.m38_c00393{transform:matrix(0.168458,-0.002021,0.003000,0.249982,0,0);-ms-transform:matrix(0.168458,-0.002021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168458,-0.002021,0.003000,0.249982,0,0);}
.md9_c00393{transform:matrix(0.168511,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168511,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168511,-0.001180,0.001750,0.249994,0,0);}
.mba_c00393{transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168526,-0.001180,0.001750,0.249994,0,0);}
.m4c_c00393{transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168893,-0.002027,0.003000,0.249982,0,0);}
.m48_c00393{transform:matrix(0.168898,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168898,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168898,-0.002027,0.003000,0.249982,0,0);}
.m131_c00393{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);}
.m8b_c00393{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);}
.mda_c00393{transform:matrix(0.169176,-0.001184,0.001750,0.249994,0,0);-ms-transform:matrix(0.169176,-0.001184,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169176,-0.001184,0.001750,0.249994,0,0);}
.m22_c00393{transform:matrix(0.169303,-0.002032,0.003000,0.249982,0,0);-ms-transform:matrix(0.169303,-0.002032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169303,-0.002032,0.003000,0.249982,0,0);}
.m15c_c00393{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);}
.md5_c00393{transform:matrix(0.169456,-0.001186,0.001750,0.249994,0,0);-ms-transform:matrix(0.169456,-0.001186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169456,-0.001186,0.001750,0.249994,0,0);}
.m1c_c00393{transform:matrix(0.169653,-0.002036,0.003000,0.249982,0,0);-ms-transform:matrix(0.169653,-0.002036,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169653,-0.002036,0.003000,0.249982,0,0);}
.m12d_c00393{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);}
.m37_c00393{transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170363,-0.002044,0.003000,0.249982,0,0);}
.m100_c00393{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);}
.m108_c00393{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);}
.m61_c00393{transform:matrix(0.171013,-0.002052,0.003000,0.249982,0,0);-ms-transform:matrix(0.171013,-0.002052,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171013,-0.002052,0.003000,0.249982,0,0);}
.mf2_c00393{transform:matrix(0.171031,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.171031,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171031,-0.001197,0.001750,0.249994,0,0);}
.m42_c00393{transform:matrix(0.171443,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171443,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171443,-0.002057,0.003000,0.249982,0,0);}
.m84_c00393{transform:matrix(0.172483,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172483,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172483,-0.002070,0.003000,0.249982,0,0);}
.m29_c00393{transform:matrix(0.172683,-0.002072,0.003000,0.249982,0,0);-ms-transform:matrix(0.172683,-0.002072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172683,-0.002072,0.003000,0.249982,0,0);}
.m5d_c00393{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);}
.m113_c00393{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);}
.mde_c00393{transform:matrix(0.173351,-0.001213,0.001750,0.249994,0,0);-ms-transform:matrix(0.173351,-0.001213,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173351,-0.001213,0.001750,0.249994,0,0);}
.mdc_c00393{transform:matrix(0.173361,-0.001214,0.001750,0.249994,0,0);-ms-transform:matrix(0.173361,-0.001214,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173361,-0.001214,0.001750,0.249994,0,0);}
.mc_c00393{transform:matrix(0.173423,-0.002428,0.003500,0.249976,0,0);-ms-transform:matrix(0.173423,-0.002428,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173423,-0.002428,0.003500,0.249976,0,0);}
.mb6_c00393{transform:matrix(0.173551,-0.001215,0.001750,0.249994,0,0);-ms-transform:matrix(0.173551,-0.001215,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173551,-0.001215,0.001750,0.249994,0,0);}
.m83_c00393{transform:matrix(0.173662,-0.002084,0.003000,0.249982,0,0);-ms-transform:matrix(0.173662,-0.002084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173662,-0.002084,0.003000,0.249982,0,0);}
.m182_c00393{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);}
.m19_c00393{transform:matrix(0.173793,-0.002433,0.003500,0.249976,0,0);-ms-transform:matrix(0.173793,-0.002433,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173793,-0.002433,0.003500,0.249976,0,0);}
.me8_c00393{transform:matrix(0.174426,-0.001221,0.001750,0.249994,0,0);-ms-transform:matrix(0.174426,-0.001221,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174426,-0.001221,0.001750,0.249994,0,0);}
.m144_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);}
.m11d_c00393{transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);}
.md3_c00393{transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);}
.m55_c00393{transform:matrix(0.175532,-0.002106,0.003000,0.249982,0,0);-ms-transform:matrix(0.175532,-0.002106,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175532,-0.002106,0.003000,0.249982,0,0);}
.m155_c00393{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);}
.m191_c00393{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);}
.m49_c00393{transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);-ms-transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175797,-0.002110,0.003000,0.249982,0,0);}
.m11b_c00393{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);}
.mb3_c00393{transform:matrix(0.176276,-0.001234,0.001750,0.249994,0,0);-ms-transform:matrix(0.176276,-0.001234,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176276,-0.001234,0.001750,0.249994,0,0);}
.m3f_c00393{transform:matrix(0.176577,-0.002119,0.003000,0.249982,0,0);-ms-transform:matrix(0.176577,-0.002119,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176577,-0.002119,0.003000,0.249982,0,0);}
.m129_c00393{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);}
.ma4_c00393{transform:matrix(0.176746,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176746,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176746,-0.001237,0.001750,0.249994,0,0);}
.mdd_c00393{transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176751,-0.001237,0.001750,0.249994,0,0);}
.mee_c00393{transform:matrix(0.176971,-0.001239,0.001750,0.249994,0,0);-ms-transform:matrix(0.176971,-0.001239,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176971,-0.001239,0.001750,0.249994,0,0);}
.m23_c00393{transform:matrix(0.177282,-0.002127,0.003000,0.249982,0,0);-ms-transform:matrix(0.177282,-0.002127,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177282,-0.002127,0.003000,0.249982,0,0);}
.m109_c00393{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);}
.m80_c00393{transform:matrix(0.177472,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177472,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177472,-0.002130,0.003000,0.249982,0,0);}
.mef_c00393{transform:matrix(0.177511,-0.001243,0.001750,0.249994,0,0);-ms-transform:matrix(0.177511,-0.001243,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177511,-0.001243,0.001750,0.249994,0,0);}
.m13b_c00393{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);}
.m106_c00393{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);}
.m6c_c00393{transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);-ms-transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177812,-0.002134,0.003000,0.249982,0,0);}
.m11c_c00393{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);}
.m3c_c00393{transform:matrix(0.177992,-0.002136,0.003000,0.249982,0,0);-ms-transform:matrix(0.177992,-0.002136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177992,-0.002136,0.003000,0.249982,0,0);}
.m3b_c00393{transform:matrix(0.177997,-0.002136,0.003000,0.249982,0,0);-ms-transform:matrix(0.177997,-0.002136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177997,-0.002136,0.003000,0.249982,0,0);}
.m50_c00393{transform:matrix(0.178002,-0.002136,0.003000,0.249982,0,0);-ms-transform:matrix(0.178002,-0.002136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178002,-0.002136,0.003000,0.249982,0,0);}
.m7b_c00393{transform:matrix(0.178022,-0.002136,0.003000,0.249982,0,0);-ms-transform:matrix(0.178022,-0.002136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178022,-0.002136,0.003000,0.249982,0,0);}
.m10e_c00393{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);}
.m9a_c00393{transform:matrix(0.178522,-0.002142,0.003000,0.249982,0,0);-ms-transform:matrix(0.178522,-0.002142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178522,-0.002142,0.003000,0.249982,0,0);}
.m6f_c00393{transform:matrix(0.178547,-0.002143,0.003000,0.249982,0,0);-ms-transform:matrix(0.178547,-0.002143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178547,-0.002143,0.003000,0.249982,0,0);}
.mdb_c00393{transform:matrix(0.178576,-0.001250,0.001750,0.249994,0,0);-ms-transform:matrix(0.178576,-0.001250,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178576,-0.001250,0.001750,0.249994,0,0);}
.m12_c00393{transform:matrix(0.178862,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178862,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178862,-0.002504,0.003500,0.249976,0,0);}
.med_c00393{transform:matrix(0.178956,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.178956,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178956,-0.001253,0.001750,0.249994,0,0);}
.mc6_c00393{transform:matrix(0.179026,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.179026,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179026,-0.001253,0.001750,0.249994,0,0);}
.m96_c00393{transform:matrix(0.179077,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179077,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179077,-0.002149,0.003000,0.249982,0,0);}
.m165_c00393{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_c00393{transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);-ms-transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179257,-0.002151,0.003000,0.249982,0,0);}
.m8d_c00393{transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);-ms-transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179482,-0.002154,0.003000,0.249982,0,0);}
.m75_c00393{transform:matrix(0.179497,-0.002154,0.003000,0.249982,0,0);-ms-transform:matrix(0.179497,-0.002154,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179497,-0.002154,0.003000,0.249982,0,0);}
.m8f_c00393{transform:matrix(0.179697,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179697,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179697,-0.002156,0.003000,0.249982,0,0);}
.m119_c00393{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);}
.m20_c00393{transform:matrix(0.179882,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179882,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179882,-0.002159,0.003000,0.249982,0,0);}
.mc8_c00393{transform:matrix(0.179981,-0.001260,0.001750,0.249994,0,0);-ms-transform:matrix(0.179981,-0.001260,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179981,-0.001260,0.001750,0.249994,0,0);}
.m45_c00393{transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179992,-0.002160,0.003000,0.249982,0,0);}
.mfa_c00393{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);}
.m27_c00393{transform:matrix(0.180537,-0.002166,0.003000,0.249982,0,0);-ms-transform:matrix(0.180537,-0.002166,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180537,-0.002166,0.003000,0.249982,0,0);}
.m12a_c00393{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);}
.m87_c00393{transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);-ms-transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);}
.m3e_c00393{transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);-ms-transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181057,-0.002173,0.003000,0.249982,0,0);}
.m1d_c00393{transform:matrix(0.181122,-0.002173,0.003000,0.249982,0,0);-ms-transform:matrix(0.181122,-0.002173,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181122,-0.002173,0.003000,0.249982,0,0);}
.m125_c00393{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);}
.m39_c00393{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);}
.m10b_c00393{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);}
.m2f_c00393{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);}
.mf9_c00393{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);}
.m99_c00393{transform:matrix(0.182202,-0.002186,0.003000,0.249982,0,0);-ms-transform:matrix(0.182202,-0.002186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182202,-0.002186,0.003000,0.249982,0,0);}
.m172_c00393{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);}
.mc5_c00393{transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);-ms-transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182531,-0.001278,0.001750,0.249994,0,0);}
.m62_c00393{transform:matrix(0.182867,-0.002194,0.003000,0.249982,0,0);-ms-transform:matrix(0.182867,-0.002194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182867,-0.002194,0.003000,0.249982,0,0);}
.m71_c00393{transform:matrix(0.182887,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182887,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182887,-0.002195,0.003000,0.249982,0,0);}
.mf4_c00393{transform:matrix(0.182891,-0.001280,0.001750,0.249994,0,0);-ms-transform:matrix(0.182891,-0.001280,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182891,-0.001280,0.001750,0.249994,0,0);}
.m146_c00393{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);}
.m1e_c00393{transform:matrix(0.183102,-0.002197,0.003000,0.249982,0,0);-ms-transform:matrix(0.183102,-0.002197,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183102,-0.002197,0.003000,0.249982,0,0);}
.ma6_c00393{transform:matrix(0.183356,-0.001283,0.001750,0.249994,0,0);-ms-transform:matrix(0.183356,-0.001283,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183356,-0.001283,0.001750,0.249994,0,0);}
.m126_c00393{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);}
.m79_c00393{transform:matrix(0.183797,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183797,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183797,-0.002206,0.003000,0.249982,0,0);}
.m120_c00393{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);}
.m116_c00393{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);}
.m170_c00393{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);}
.m95_c00393{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);}
.m7a_c00393{transform:matrix(0.184372,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184372,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184372,-0.002212,0.003000,0.249982,0,0);}
.m10c_c00393{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);}
.mc2_c00393{transform:matrix(0.184575,-0.001292,0.001750,0.249994,0,0);-ms-transform:matrix(0.184575,-0.001292,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184575,-0.001292,0.001750,0.249994,0,0);}
.m11_c00393{transform:matrix(0.184667,-0.002585,0.003500,0.249976,0,0);-ms-transform:matrix(0.184667,-0.002585,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184667,-0.002585,0.003500,0.249976,0,0);}
.m3a_c00393{transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);-ms-transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184672,-0.002216,0.003000,0.249982,0,0);}
.m10d_c00393{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);}
.m88_c00393{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);}
.m142_c00393{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);}
.m8c_c00393{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);}
.m5c_c00393{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);}
.m1b_c00393{transform:matrix(0.185912,-0.002603,0.003500,0.249976,0,0);-ms-transform:matrix(0.185912,-0.002603,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185912,-0.002603,0.003500,0.249976,0,0);}
.m15d_c00393{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);}
.m127_c00393{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);}
.md2_c00393{transform:matrix(0.186185,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186185,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186185,-0.001303,0.001750,0.249994,0,0);}
.mb5_c00393{transform:matrix(0.186360,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186360,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186360,-0.001305,0.001750,0.249994,0,0);}
.mff_c00393{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);}
.m81_c00393{transform:matrix(0.186667,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186667,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186667,-0.002240,0.003000,0.249982,0,0);}
.m184_c00393{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);}
.mab_c00393{transform:matrix(0.186905,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186905,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186905,-0.001308,0.001750,0.249994,0,0);}
.m103_c00393{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);}
.m7e_c00393{transform:matrix(0.187362,-0.002248,0.003000,0.249982,0,0);-ms-transform:matrix(0.187362,-0.002248,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187362,-0.002248,0.003000,0.249982,0,0);}
.mc7_c00393{transform:matrix(0.187545,-0.001313,0.001750,0.249994,0,0);-ms-transform:matrix(0.187545,-0.001313,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187545,-0.001313,0.001750,0.249994,0,0);}
.m40_c00393{transform:matrix(0.187861,-0.002254,0.003000,0.249982,0,0);-ms-transform:matrix(0.187861,-0.002254,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187861,-0.002254,0.003000,0.249982,0,0);}
.m12e_c00393{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);}
.m122_c00393{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);}
.mdf_c00393{transform:matrix(0.188410,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188410,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188410,-0.001319,0.001750,0.249994,0,0);}
.mb4_c00393{transform:matrix(0.188435,-0.001319,0.001750,0.249994,0,0);-ms-transform:matrix(0.188435,-0.001319,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188435,-0.001319,0.001750,0.249994,0,0);}
.m123_c00393{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);}
.mce_c00393{transform:matrix(0.188580,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188580,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188580,-0.001320,0.001750,0.249994,0,0);}
.m52_c00393{transform:matrix(0.188746,-0.002265,0.003000,0.249982,0,0);-ms-transform:matrix(0.188746,-0.002265,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188746,-0.002265,0.003000,0.249982,0,0);}
.m41_c00393{transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);-ms-transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188821,-0.002266,0.003000,0.249982,0,0);}
.m10a_c00393{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);}
.m192_c00393{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);}
.m18_c00393{transform:matrix(0.189131,-0.002648,0.003500,0.249976,0,0);-ms-transform:matrix(0.189131,-0.002648,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189131,-0.002648,0.003500,0.249976,0,0);}
.m12b_c00393{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);}
.m4e_c00393{transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189426,-0.002273,0.003000,0.249982,0,0);}
.m4a_c00393{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);}
.m51_c00393{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);}
.m16b_c00393{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);}
.m17d_c00393{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);}
.m16a_c00393{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);}
.me5_c00393{transform:matrix(0.190370,-0.001333,0.001750,0.249994,0,0);-ms-transform:matrix(0.190370,-0.001333,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190370,-0.001333,0.001750,0.249994,0,0);}
.m128_c00393{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);}
.m111_c00393{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);}
.mb2_c00393{transform:matrix(0.191530,-0.001341,0.001750,0.249994,0,0);-ms-transform:matrix(0.191530,-0.001341,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191530,-0.001341,0.001750,0.249994,0,0);}
.mbd_c00393{transform:matrix(0.191620,-0.001341,0.001750,0.249994,0,0);-ms-transform:matrix(0.191620,-0.001341,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191620,-0.001341,0.001750,0.249994,0,0);}
.m65_c00393{transform:matrix(0.191696,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191696,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191696,-0.002300,0.003000,0.249982,0,0);}
.m6b_c00393{transform:matrix(0.191876,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191876,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191876,-0.002303,0.003000,0.249982,0,0);}
.m86_c00393{transform:matrix(0.191886,-0.002303,0.003000,0.249982,0,0);-ms-transform:matrix(0.191886,-0.002303,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191886,-0.002303,0.003000,0.249982,0,0);}
.m130_c00393{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);}
.m24_c00393{transform:matrix(0.192746,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192746,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192746,-0.002313,0.003000,0.249982,0,0);}
.mb9_c00393{transform:matrix(0.193100,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193100,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193100,-0.001352,0.001750,0.249994,0,0);}
.m9f_c00393{transform:matrix(0.193330,-0.001353,0.001750,0.249994,0,0);-ms-transform:matrix(0.193330,-0.001353,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193330,-0.001353,0.001750,0.249994,0,0);}
.m159_c00393{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);}
.m33_c00393{transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);}
.meb_c00393{transform:matrix(0.194240,-0.001360,0.001750,0.249994,0,0);-ms-transform:matrix(0.194240,-0.001360,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194240,-0.001360,0.001750,0.249994,0,0);}
.m8a_c00393{transform:matrix(0.194596,-0.002335,0.003000,0.249982,0,0);-ms-transform:matrix(0.194596,-0.002335,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194596,-0.002335,0.003000,0.249982,0,0);}
.m14d_c00393{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);}
.m5e_c00393{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);}
.mc0_c00393{transform:matrix(0.194805,-0.001364,0.001750,0.249994,0,0);-ms-transform:matrix(0.194805,-0.001364,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194805,-0.001364,0.001750,0.249994,0,0);}
.m180_c00393{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);}
.m160_c00393{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);}
.mbc_c00393{transform:matrix(0.195390,-0.001368,0.001750,0.249994,0,0);-ms-transform:matrix(0.195390,-0.001368,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195390,-0.001368,0.001750,0.249994,0,0);}
.m18d_c00393{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);}
.m90_c00393{transform:matrix(0.195701,-0.002348,0.003000,0.249982,0,0);-ms-transform:matrix(0.195701,-0.002348,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195701,-0.002348,0.003000,0.249982,0,0);}
.m168_c00393{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);}
.m14f_c00393{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);}
.m101_c00393{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);}
.md6_c00393{transform:matrix(0.196150,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196150,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196150,-0.001373,0.001750,0.249994,0,0);}
.m114_c00393{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);}
.mc1_c00393{transform:matrix(0.196515,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196515,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196515,-0.001376,0.001750,0.249994,0,0);}
.m76_c00393{transform:matrix(0.196846,-0.002362,0.003000,0.249982,0,0);-ms-transform:matrix(0.196846,-0.002362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196846,-0.002362,0.003000,0.249982,0,0);}
.m157_c00393{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);}
.mca_c00393{transform:matrix(0.197345,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197345,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197345,-0.001381,0.001750,0.249994,0,0);}
.m17f_c00393{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);}
.m179_c00393{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);}
.m12c_c00393{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);}
.m151_c00393{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);}
.m136_c00393{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);}
.m145_c00393{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);}
.m169_c00393{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);}
.mb1_c00393{transform:matrix(0.199880,-0.001399,0.001750,0.249994,0,0);-ms-transform:matrix(0.199880,-0.001399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199880,-0.001399,0.001750,0.249994,0,0);}
.m57_c00393{transform:matrix(0.199891,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199891,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199891,-0.002399,0.003000,0.249982,0,0);}
.m16c_c00393{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);}
.m58_c00393{transform:matrix(0.200246,-0.002403,0.003000,0.249982,0,0);-ms-transform:matrix(0.200246,-0.002403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200246,-0.002403,0.003000,0.249982,0,0);}
.m15a_c00393{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);}
.ma0_c00393{transform:matrix(0.200500,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200500,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200500,-0.001404,0.001750,0.249994,0,0);}
.m183_c00393{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);}
.m13f_c00393{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);}
.m15_c00393{transform:matrix(0.201515,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201515,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201515,-0.002821,0.003500,0.249976,0,0);}
.m82_c00393{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);}
.m171_c00393{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_c00393{transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202555,-0.002431,0.003000,0.249982,0,0);}
.m13c_c00393{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);}
.md7_c00393{transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202790,-0.001420,0.001750,0.249994,0,0);}
.m16f_c00393{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);}
.m16d_c00393{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);}
.m17e_c00393{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);}
.m9b_c00393{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);}
.m16e_c00393{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);}
.m18a_c00393{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);}
.m9e_c00393{transform:matrix(0.204180,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204180,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204180,-0.001429,0.001750,0.249994,0,0);}
.mc9_c00393{transform:matrix(0.204220,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204220,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204220,-0.001430,0.001750,0.249994,0,0);}
.md0_c00393{transform:matrix(0.204350,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204350,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204350,-0.001430,0.001750,0.249994,0,0);}
.m15f_c00393{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);}
.m135_c00393{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);}
.mcb_c00393{transform:matrix(0.205270,-0.001437,0.001750,0.249994,0,0);-ms-transform:matrix(0.205270,-0.001437,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205270,-0.001437,0.001750,0.249994,0,0);}
.m92_c00393{transform:matrix(0.205855,-0.002470,0.003000,0.249982,0,0);-ms-transform:matrix(0.205855,-0.002470,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205855,-0.002470,0.003000,0.249982,0,0);}
.m141_c00393{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);}
.m3_c00393{transform:matrix(0.206880,-0.002896,0.003500,0.249976,0,0);-ms-transform:matrix(0.206880,-0.002896,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206880,-0.002896,0.003500,0.249976,0,0);}
.mea_c00393{transform:matrix(0.207395,-0.001452,0.001750,0.249994,0,0);-ms-transform:matrix(0.207395,-0.001452,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207395,-0.001452,0.001750,0.249994,0,0);}
.m167_c00393{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);}
.m4b_c00393{transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208110,-0.002497,0.003000,0.249982,0,0);}
.m78_c00393{transform:matrix(0.208185,-0.002498,0.003000,0.249982,0,0);-ms-transform:matrix(0.208185,-0.002498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208185,-0.002498,0.003000,0.249982,0,0);}
.m137_c00393{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);}
.m2e_c00393{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);}
.m14e_c00393{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);}
.m161_c00393{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);}
.m188_c00393{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);}
.mae_c00393{transform:matrix(0.211305,-0.001479,0.001750,0.249994,0,0);-ms-transform:matrix(0.211305,-0.001479,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211305,-0.001479,0.001750,0.249994,0,0);}
.mcc_c00393{transform:matrix(0.211420,-0.001480,0.001750,0.249994,0,0);-ms-transform:matrix(0.211420,-0.001480,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211420,-0.001480,0.001750,0.249994,0,0);}
.mcf_c00393{transform:matrix(0.211710,-0.001482,0.001750,0.249994,0,0);-ms-transform:matrix(0.211710,-0.001482,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211710,-0.001482,0.001750,0.249994,0,0);}
.m4f_c00393{transform:matrix(0.211800,-0.002542,0.003000,0.249982,0,0);-ms-transform:matrix(0.211800,-0.002542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211800,-0.002542,0.003000,0.249982,0,0);}
.m7f_c00393{transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);-ms-transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);}
.m18c_c00393{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);}
.m4_c00393{transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212984,-0.002982,0.003500,0.249976,0,0);}
.m2d_c00393{transform:matrix(0.212990,-0.002556,0.003000,0.249982,0,0);-ms-transform:matrix(0.212990,-0.002556,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212990,-0.002556,0.003000,0.249982,0,0);}
.m176_c00393{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);}
.mfb_c00393{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);}
.m164_c00393{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);}
.m133_c00393{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);}
.me3_c00393{transform:matrix(0.214835,-0.001504,0.001750,0.249994,0,0);-ms-transform:matrix(0.214835,-0.001504,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214835,-0.001504,0.001750,0.249994,0,0);}
.m153_c00393{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);}
.m10_c00393{transform:matrix(0.216024,-0.003024,0.003500,0.249976,0,0);-ms-transform:matrix(0.216024,-0.003024,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216024,-0.003024,0.003500,0.249976,0,0);}
.m6d_c00393{transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);-ms-transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217159,-0.002606,0.003000,0.249982,0,0);}
.ma5_c00393{transform:matrix(0.217590,-0.001523,0.001750,0.249994,0,0);-ms-transform:matrix(0.217590,-0.001523,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217590,-0.001523,0.001750,0.249994,0,0);}
.m6e_c00393{transform:matrix(0.217999,-0.002616,0.003000,0.249982,0,0);-ms-transform:matrix(0.217999,-0.002616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217999,-0.002616,0.003000,0.249982,0,0);}
.m163_c00393{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);}
.m3d_c00393{transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);-ms-transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218909,-0.002627,0.003000,0.249982,0,0);}
.m1f_c00393{transform:matrix(0.219239,-0.002631,0.003000,0.249982,0,0);-ms-transform:matrix(0.219239,-0.002631,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219239,-0.002631,0.003000,0.249982,0,0);}
.m185_c00393{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);}
.me4_c00393{transform:matrix(0.220300,-0.001542,0.001750,0.249994,0,0);-ms-transform:matrix(0.220300,-0.001542,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220300,-0.001542,0.001750,0.249994,0,0);}
.m53_c00393{transform:matrix(0.220359,-0.002644,0.003000,0.249982,0,0);-ms-transform:matrix(0.220359,-0.002644,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220359,-0.002644,0.003000,0.249982,0,0);}
.m13a_c00393{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);}
.m132_c00393{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);}
.m69_c00393{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);}
.m12f_c00393{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);}
.m124_c00393{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);}
.me7_c00393{transform:matrix(0.222040,-0.001554,0.001750,0.249994,0,0);-ms-transform:matrix(0.222040,-0.001554,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222040,-0.001554,0.001750,0.249994,0,0);}
.m18b_c00393{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);}
.m64_c00393{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);}
.m178_c00393{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);}
.me1_c00393{transform:matrix(0.224989,-0.001575,0.001750,0.249994,0,0);-ms-transform:matrix(0.224989,-0.001575,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224989,-0.001575,0.001750,0.249994,0,0);}
.m6a_c00393{transform:matrix(0.225334,-0.002704,0.003000,0.249982,0,0);-ms-transform:matrix(0.225334,-0.002704,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225334,-0.002704,0.003000,0.249982,0,0);}
.m14c_c00393{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);}
.m175_c00393{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);}
.m46_c00393{transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);-ms-transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);}
.m156_c00393{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);}
.me6_c00393{transform:matrix(0.227794,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227794,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227794,-0.001595,0.001750,0.249994,0,0);}
.m138_c00393{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);}
.ma2_c00393{transform:matrix(0.233524,-0.001635,0.001750,0.249994,0,0);-ms-transform:matrix(0.233524,-0.001635,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233524,-0.001635,0.001750,0.249994,0,0);}
.me0_c00393{transform:matrix(0.234499,-0.001641,0.001750,0.249994,0,0);-ms-transform:matrix(0.234499,-0.001641,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234499,-0.001641,0.001750,0.249994,0,0);}
.mcd_c00393{transform:matrix(0.235239,-0.001647,0.001750,0.249994,0,0);-ms-transform:matrix(0.235239,-0.001647,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235239,-0.001647,0.001750,0.249994,0,0);}
.m74_c00393{transform:matrix(0.235803,-0.002830,0.003000,0.249982,0,0);-ms-transform:matrix(0.235803,-0.002830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235803,-0.002830,0.003000,0.249982,0,0);}
.m143_c00393{transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);}
.m174_c00393{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);}
.m31_c00393{transform:matrix(0.239043,-0.002869,0.003000,0.249982,0,0);-ms-transform:matrix(0.239043,-0.002869,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239043,-0.002869,0.003000,0.249982,0,0);}
.m14a_c00393{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);}
.m68_c00393{transform:matrix(0.239608,-0.002875,0.003000,0.249982,0,0);-ms-transform:matrix(0.239608,-0.002875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239608,-0.002875,0.003000,0.249982,0,0);}
.m181_c00393{transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.m134_c00393{transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);}
.m15b_c00393{transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);}
.m66_c00393{transform:matrix(0.245772,-0.002949,0.003000,0.249982,0,0);-ms-transform:matrix(0.245772,-0.002949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245772,-0.002949,0.003000,0.249982,0,0);}
.m60_c00393{transform:matrix(0.247387,-0.002969,0.003000,0.249982,0,0);-ms-transform:matrix(0.247387,-0.002969,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247387,-0.002969,0.003000,0.249982,0,0);}
.m112_c00393{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.mbe_c00393{transform:matrix(0.251099,-0.001758,0.001750,0.249994,0,0);-ms-transform:matrix(0.251099,-0.001758,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251099,-0.001758,0.001750,0.249994,0,0);}
.maf_c00393{transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251764,-0.001762,0.001750,0.249994,0,0);}
.m89_c00393{transform:matrix(0.255747,-0.003069,0.003000,0.249982,0,0);-ms-transform:matrix(0.255747,-0.003069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255747,-0.003069,0.003000,0.249982,0,0);}
.m158_c00393{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);}
.m70_c00393{transform:matrix(0.260311,-0.003124,0.003000,0.249982,0,0);-ms-transform:matrix(0.260311,-0.003124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260311,-0.003124,0.003000,0.249982,0,0);}
.m77_c00393{transform:matrix(0.260356,-0.003124,0.003000,0.249982,0,0);-ms-transform:matrix(0.260356,-0.003124,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260356,-0.003124,0.003000,0.249982,0,0);}
.m154_c00393{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);}
.m18e_c00393{transform:matrix(0.263870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263870,0.000000,0.000000,0.250000,0,0);}
.m13e_c00393{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);}
.m148_c00393{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m166_c00393{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);}
.m15e_c00393{transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);}
.m17b_c00393{transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);}
.m190_c00393{transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);}
.me9_c00393{transform:matrix(0.289963,-0.002030,0.001750,0.249994,0,0);-ms-transform:matrix(0.289963,-0.002030,0.001750,0.249994,0,0);-webkit-transform:matrix(0.289963,-0.002030,0.001750,0.249994,0,0);}
.mf7_c00393{transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294925,0.000000,0.000000,0.250000,0,0);}
.m13d_c00393{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);}
.m13_c00393{transform:matrix(0.328353,-0.004597,0.003500,0.249976,0,0);-ms-transform:matrix(0.328353,-0.004597,0.003500,0.249976,0,0);-webkit-transform:matrix(0.328353,-0.004597,0.003500,0.249976,0,0);}
.m11e_c00393{transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332895,0.000000,0.000000,0.250000,0,0);}
.m104_c00393{transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335680,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.342055,-0.004105,0.003000,0.249982,0,0);-ms-transform:matrix(0.342055,-0.004105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.342055,-0.004105,0.003000,0.249982,0,0);}
.m30_c00393{transform:matrix(0.343005,-0.004116,0.003000,0.249982,0,0);-ms-transform:matrix(0.343005,-0.004116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.343005,-0.004116,0.003000,0.249982,0,0);}
.m14b_c00393{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.346585,-0.004159,0.003000,0.249982,0,0);-ms-transform:matrix(0.346585,-0.004159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.346585,-0.004159,0.003000,0.249982,0,0);}
.m17c_c00393{transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);}
.m173_c00393{transform:matrix(0.385545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385545,0.000000,0.000000,0.250000,0,0);}
.m162_c00393{transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.395842,-0.004750,0.003000,0.249982,0,0);-ms-transform:matrix(0.395842,-0.004750,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395842,-0.004750,0.003000,0.249982,0,0);}
.m194_c00393{transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421075,0.000000,0.000000,0.250000,0,0);}
.m140_c00393{transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455280,0.000000,0.000000,0.250000,0,0);}
.m195_c00393{transform:matrix(0.456445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456445,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.494269,-0.005931,0.003000,0.249982,0,0);-ms-transform:matrix(0.494269,-0.005931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.494269,-0.005931,0.003000,0.249982,0,0);}
.m150_c00393{transform:matrix(0.535095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535095,0.000000,0.000000,0.250000,0,0);}
.m193_c00393{transform:matrix(0.581335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581335,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;}
.fs15_c00393{font-size:48.300000px;}
.fs17_c00393{font-size:49.350000px;}
.fs14_c00393{font-size:51.450000px;}
.fs16_c00393{font-size:52.500000px;}
.fse_c00393{font-size:61.951518px;}
.fs12_c00393{font-size:63.000000px;}
.fs8_c00393{font-size:63.004536px;}
.fs13_c00393{font-size:64.050000px;}
.fs9_c00393{font-size:66.154763px;}
.fs6_c00393{font-size:67.204838px;}
.fs10_c00393{font-size:68.250000px;}
.fsb_c00393{font-size:68.251672px;}
.fsc_c00393{font-size:69.301698px;}
.fs7_c00393{font-size:69.304989px;}
.fsd_c00393{font-size:70.351724px;}
.fs5_c00393{font-size:70.355065px;}
.fs2_c00393{font-size:70.356894px;}
.fs11_c00393{font-size:71.400000px;}
.fsa_c00393{font-size:71.401749px;}
.fsf_c00393{font-size:72.451775px;}
.fs4_c00393{font-size:73.505292px;}
.fs1_c00393{font-size:73.507203px;}
.fs3_c00393{font-size:74.555367px;}
.fs0_c00393{font-size:87.150000px;}
.fs18_c00393{font-size:147.000000px;}
.y0_c00393{bottom:0.000000px;}
.y110_c00393{bottom:95.092500px;}
.y10f_c00393{bottom:158.335500px;}
.y10e_c00393{bottom:176.121000px;}
.y10d_c00393{bottom:193.627500px;}
.y10c_c00393{bottom:212.023500px;}
.y10b_c00393{bottom:229.513500px;}
.y10a_c00393{bottom:273.184500px;}
.y109_c00393{bottom:296.830500px;}
.y108_c00393{bottom:319.290000px;}
.y107_c00393{bottom:341.740500px;}
.yf9_c00393{bottom:363.420000px;}
.yfa_c00393{bottom:363.574500px;}
.yfb_c00393{bottom:363.747000px;}
.yfc_c00393{bottom:364.062000px;}
.yfd_c00393{bottom:364.189500px;}
.yfe_c00393{bottom:364.482000px;}
.yff_c00393{bottom:365.062500px;}
.y100_c00393{bottom:365.301000px;}
.y101_c00393{bottom:365.455500px;}
.y102_c00393{bottom:365.829000px;}
.y103_c00393{bottom:365.959500px;}
.y104_c00393{bottom:366.168000px;}
.y105_c00393{bottom:366.516000px;}
.y106_c00393{bottom:366.622500px;}
.yf8_c00393{bottom:388.411500px;}
.yf2_c00393{bottom:410.941516px;}
.yf4_c00393{bottom:410.941626px;}
.yee_c00393{bottom:410.941668px;}
.yf3_c00393{bottom:410.941746px;}
.yf1_c00393{bottom:410.941797px;}
.yf0_c00393{bottom:410.941887px;}
.yef_c00393{bottom:410.941957px;}
.yf5_c00393{bottom:410.942076px;}
.yf7_c00393{bottom:410.942365px;}
.yf6_c00393{bottom:410.942455px;}
.ye0_c00393{bottom:432.273591px;}
.ye1_c00393{bottom:432.456177px;}
.ye2_c00393{bottom:432.985218px;}
.ye3_c00393{bottom:433.108345px;}
.ye4_c00393{bottom:433.317648px;}
.ye5_c00393{bottom:433.891272px;}
.ye6_c00393{bottom:434.075181px;}
.ye7_c00393{bottom:434.414991px;}
.ye8_c00393{bottom:434.900907px;}
.ye9_c00393{bottom:435.082894px;}
.yea_c00393{bottom:435.270729px;}
.yeb_c00393{bottom:435.851334px;}
.yec_c00393{bottom:436.214038px;}
.yed_c00393{bottom:436.702033px;}
.ydb_c00393{bottom:456.965883px;}
.yd5_c00393{bottom:456.966114px;}
.yde_c00393{bottom:456.966252px;}
.yd9_c00393{bottom:456.966374px;}
.yd4_c00393{bottom:456.966394px;}
.yda_c00393{bottom:456.966463px;}
.ydc_c00393{bottom:456.966502px;}
.ydf_c00393{bottom:456.966512px;}
.yd6_c00393{bottom:456.966654px;}
.yd8_c00393{bottom:456.966823px;}
.yd7_c00393{bottom:456.966834px;}
.ydd_c00393{bottom:456.966892px;}
.yc5_c00393{bottom:480.269418px;}
.yc6_c00393{bottom:480.269928px;}
.yc7_c00393{bottom:480.270048px;}
.yc8_c00393{bottom:480.270228px;}
.ycb_c00393{bottom:480.270297px;}
.yca_c00393{bottom:480.270417px;}
.ycc_c00393{bottom:480.270736px;}
.yc9_c00393{bottom:480.270937px;}
.ycd_c00393{bottom:480.271156px;}
.yce_c00393{bottom:480.271656px;}
.yd1_c00393{bottom:480.271975px;}
.yd2_c00393{bottom:480.272385px;}
.ycf_c00393{bottom:480.272406px;}
.yd0_c00393{bottom:480.272526px;}
.yd3_c00393{bottom:480.272715px;}
.yb9_c00393{bottom:500.040992px;}
.yba_c00393{bottom:500.544183px;}
.ybb_c00393{bottom:500.767584px;}
.ybc_c00393{bottom:501.058713px;}
.ybd_c00393{bottom:501.203343px;}
.ybe_c00393{bottom:501.829254px;}
.ybf_c00393{bottom:502.336666px;}
.yc0_c00393{bottom:502.490083px;}
.yc1_c00393{bottom:502.695396px;}
.yc2_c00393{bottom:502.980823px;}
.yc3_c00393{bottom:503.436571px;}
.yc4_c00393{bottom:503.590272px;}
.yae_c00393{bottom:522.720714px;}
.yaf_c00393{bottom:523.185774px;}
.yb0_c00393{bottom:523.969365px;}
.yb1_c00393{bottom:524.152389px;}
.yb2_c00393{bottom:524.333670px;}
.yb3_c00393{bottom:524.642730px;}
.yb4_c00393{bottom:525.027308px;}
.yb5_c00393{bottom:525.550719px;}
.yb6_c00393{bottom:525.706435px;}
.yb7_c00393{bottom:526.028398px;}
.yb8_c00393{bottom:526.458225px;}
.y9e_c00393{bottom:546.939000px;}
.y9f_c00393{bottom:547.020501px;}
.ya0_c00393{bottom:547.167984px;}
.ya1_c00393{bottom:547.508205px;}
.ya2_c00393{bottom:547.959589px;}
.ya3_c00393{bottom:548.045049px;}
.ya4_c00393{bottom:548.190547px;}
.ya5_c00393{bottom:548.306037px;}
.ya6_c00393{bottom:548.759479px;}
.ya7_c00393{bottom:548.901156px;}
.ya8_c00393{bottom:549.193707px;}
.ya9_c00393{bottom:549.299767px;}
.yaa_c00393{bottom:549.519070px;}
.yab_c00393{bottom:549.692867px;}
.yac_c00393{bottom:549.870747px;}
.yad_c00393{bottom:550.118305px;}
.y9c_c00393{bottom:571.438206px;}
.y9b_c00393{bottom:571.438302px;}
.y9d_c00393{bottom:571.438452px;}
.y96_c00393{bottom:571.438542px;}
.y9a_c00393{bottom:571.438620px;}
.y99_c00393{bottom:571.438758px;}
.y95_c00393{bottom:571.438800px;}
.y97_c00393{bottom:571.438908px;}
.y92_c00393{bottom:571.439088px;}
.y94_c00393{bottom:571.439094px;}
.y98_c00393{bottom:571.439454px;}
.y93_c00393{bottom:571.439832px;}
.y8d_c00393{bottom:594.680190px;}
.y8e_c00393{bottom:594.680274px;}
.y8b_c00393{bottom:594.680424px;}
.y8c_c00393{bottom:594.680466px;}
.y8f_c00393{bottom:594.680676px;}
.y88_c00393{bottom:594.681048px;}
.y8a_c00393{bottom:594.681162px;}
.y90_c00393{bottom:594.681258px;}
.y87_c00393{bottom:594.681462px;}
.y91_c00393{bottom:594.681720px;}
.y89_c00393{bottom:594.681732px;}
.y86_c00393{bottom:594.682020px;}
.y85_c00393{bottom:594.682596px;}
.y79_c00393{bottom:615.314316px;}
.y7a_c00393{bottom:615.500430px;}
.y7b_c00393{bottom:615.686508px;}
.y7c_c00393{bottom:616.161726px;}
.y7d_c00393{bottom:616.564044px;}
.y7e_c00393{bottom:616.733916px;}
.y7f_c00393{bottom:617.390700px;}
.y80_c00393{bottom:617.593254px;}
.y81_c00393{bottom:618.595182px;}
.y82_c00393{bottom:618.949266px;}
.y83_c00393{bottom:619.497738px;}
.y84_c00393{bottom:619.708476px;}
.y6c_c00393{bottom:637.995252px;}
.y6d_c00393{bottom:638.327568px;}
.y6e_c00393{bottom:638.641656px;}
.y6f_c00393{bottom:638.786520px;}
.y70_c00393{bottom:638.899752px;}
.y71_c00393{bottom:639.240672px;}
.y72_c00393{bottom:639.337584px;}
.y73_c00393{bottom:640.124712px;}
.y74_c00393{bottom:640.280478px;}
.y75_c00393{bottom:640.680270px;}
.y76_c00393{bottom:640.950324px;}
.y77_c00393{bottom:641.395710px;}
.y78_c00393{bottom:641.555862px;}
.y5f_c00393{bottom:660.945270px;}
.y60_c00393{bottom:661.439304px;}
.y61_c00393{bottom:661.519644px;}
.y62_c00393{bottom:661.854246px;}
.y63_c00393{bottom:662.032410px;}
.y64_c00393{bottom:662.163330px;}
.y65_c00393{bottom:662.348922px;}
.y66_c00393{bottom:662.780052px;}
.y67_c00393{bottom:663.043038px;}
.y68_c00393{bottom:663.300588px;}
.y69_c00393{bottom:663.460758px;}
.y6a_c00393{bottom:663.579162px;}
.y6b_c00393{bottom:664.178778px;}
.y53_c00393{bottom:683.628942px;}
.y54_c00393{bottom:684.103950px;}
.y55_c00393{bottom:684.793008px;}
.y56_c00393{bottom:684.943776px;}
.y57_c00393{bottom:685.324392px;}
.y58_c00393{bottom:685.582542px;}
.y59_c00393{bottom:686.212458px;}
.y5a_c00393{bottom:686.488296px;}
.y5b_c00393{bottom:687.454404px;}
.y5c_c00393{bottom:687.715506px;}
.y5d_c00393{bottom:688.567260px;}
.y5e_c00393{bottom:688.774470px;}
.y43_c00393{bottom:706.583100px;}
.y44_c00393{bottom:706.792524px;}
.y45_c00393{bottom:706.907136px;}
.y46_c00393{bottom:707.190738px;}
.y47_c00393{bottom:707.354424px;}
.y48_c00393{bottom:707.442318px;}
.y49_c00393{bottom:707.773038px;}
.y4a_c00393{bottom:708.323274px;}
.y4b_c00393{bottom:708.470130px;}
.y4c_c00393{bottom:708.718248px;}
.y4d_c00393{bottom:709.044024px;}
.y4e_c00393{bottom:709.216206px;}
.y4f_c00393{bottom:709.354566px;}
.y50_c00393{bottom:709.595496px;}
.y51_c00393{bottom:710.098830px;}
.y52_c00393{bottom:710.271012px;}
.y37_c00393{bottom:729.268032px;}
.y38_c00393{bottom:729.509970px;}
.y39_c00393{bottom:730.012962px;}
.y3a_c00393{bottom:730.660890px;}
.y3b_c00393{bottom:730.816188px;}
.y3c_c00393{bottom:730.991700px;}
.y3d_c00393{bottom:731.418738px;}
.y3e_c00393{bottom:731.619540px;}
.y3f_c00393{bottom:731.761380px;}
.y40_c00393{bottom:731.962182px;}
.y41_c00393{bottom:732.566238px;}
.y42_c00393{bottom:732.859572px;}
.y28_c00393{bottom:752.760978px;}
.y29_c00393{bottom:752.974764px;}
.y2a_c00393{bottom:753.841590px;}
.y2b_c00393{bottom:754.037106px;}
.y2c_c00393{bottom:754.442700px;}
.y2d_c00393{bottom:754.915830px;}
.y2e_c00393{bottom:755.168370px;}
.y2f_c00393{bottom:756.101508px;}
.y30_c00393{bottom:756.597696px;}
.y31_c00393{bottom:756.730212px;}
.y32_c00393{bottom:757.005522px;}
.y33_c00393{bottom:757.167630px;}
.y34_c00393{bottom:757.403934px;}
.y35_c00393{bottom:757.760550px;}
.y36_c00393{bottom:758.129964px;}
.y1c_c00393{bottom:775.443000px;}
.y1d_c00393{bottom:776.123310px;}
.y1e_c00393{bottom:776.547840px;}
.y1f_c00393{bottom:776.952426px;}
.y20_c00393{bottom:777.454986px;}
.y21_c00393{bottom:778.043964px;}
.y22_c00393{bottom:778.190538px;}
.y23_c00393{bottom:779.292174px;}
.y24_c00393{bottom:779.804292px;}
.y25_c00393{bottom:780.192750px;}
.y26_c00393{bottom:780.458412px;}
.y27_c00393{bottom:780.976938px;}
.y10_c00393{bottom:797.579445px;}
.y11_c00393{bottom:798.188172px;}
.y12_c00393{bottom:798.475263px;}
.y13_c00393{bottom:799.583433px;}
.y14_c00393{bottom:799.874472px;}
.y15_c00393{bottom:800.335800px;}
.y16_c00393{bottom:801.280758px;}
.y17_c00393{bottom:801.911682px;}
.y18_c00393{bottom:802.364820px;}
.y19_c00393{bottom:802.670979px;}
.y1a_c00393{bottom:803.136612px;}
.y1b_c00393{bottom:803.457891px;}
.y2_c00393{bottom:820.531500px;}
.y3_c00393{bottom:820.823589px;}
.y4_c00393{bottom:821.345397px;}
.y5_c00393{bottom:821.651598px;}
.y6_c00393{bottom:822.158286px;}
.y7_c00393{bottom:822.921930px;}
.y8_c00393{bottom:823.560519px;}
.y9_c00393{bottom:824.036127px;}
.ya_c00393{bottom:824.305536px;}
.yb_c00393{bottom:824.910378px;}
.yc_c00393{bottom:825.273384px;}
.yd_c00393{bottom:826.307886px;}
.ye_c00393{bottom:826.497810px;}
.yf_c00393{bottom:826.905210px;}
.y1_c00393{bottom:863.055000px;}
.h17_c00393{height:48.300000px;}
.h19_c00393{height:49.350000px;}
.h16_c00393{height:51.450000px;}
.h18_c00393{height:52.500000px;}
.h10_c00393{height:61.951518px;}
.h14_c00393{height:63.000000px;}
.ha_c00393{height:63.004536px;}
.h15_c00393{height:64.050000px;}
.hb_c00393{height:66.154763px;}
.h8_c00393{height:67.204838px;}
.h12_c00393{height:68.250000px;}
.hd_c00393{height:68.251672px;}
.he_c00393{height:69.301698px;}
.h9_c00393{height:69.304989px;}
.hf_c00393{height:70.351724px;}
.h7_c00393{height:70.355065px;}
.h4_c00393{height:70.356894px;}
.h13_c00393{height:71.400000px;}
.hc_c00393{height:71.401749px;}
.h11_c00393{height:72.451775px;}
.h6_c00393{height:73.505292px;}
.h3_c00393{height:73.507203px;}
.h5_c00393{height:74.555367px;}
.h2_c00393{height:87.150000px;}
.h1a_c00393{height:147.000000px;}
.h0_c00393{height:1008.450000px;}
.h1_c00393{height:1008.750000px;}
.w1_c00393{width:689.250000px;}
.w0_c00393{width:689.550000px;}
.x0_c00393{left:0.000000px;}
.xc8_c00393{left:113.400000px;}
.x45_c00393{left:153.777060px;}
.x3_c00393{left:155.634000px;}
.x11_c00393{left:156.772989px;}
.xbd_c00393{left:157.950000px;}
.xb7_c00393{left:160.650000px;}
.x73_c00393{left:162.589500px;}
.xc0_c00393{left:170.100000px;}
.x84_c00393{left:172.260635px;}
.x24_c00393{left:173.766408px;}
.x5c_c00393{left:175.096554px;}
.x4_c00393{left:176.497500px;}
.x99_c00393{left:179.070000px;}
.x38_c00393{left:181.551636px;}
.xc1_c00393{left:183.060000px;}
.x32_c00393{left:186.150228px;}
.x63_c00393{left:190.356036px;}
.x5d_c00393{left:193.728504px;}
.x39_c00393{left:195.853320px;}
.x46_c00393{left:196.986582px;}
.xb0_c00393{left:198.181500px;}
.x12_c00393{left:200.253489px;}
.x85_c00393{left:201.422063px;}
.x9a_c00393{left:203.667000px;}
.x64_c00393{left:204.936642px;}
.xaa_c00393{left:207.631500px;}
.x8d_c00393{left:209.523579px;}
.x6d_c00393{left:212.227560px;}
.x5_c00393{left:213.769500px;}
.x7e_c00393{left:216.085869px;}
.x86_c00393{left:218.162882px;}
.xa4_c00393{left:219.241500px;}
.x13_c00393{left:220.759989px;}
.xab_c00393{left:223.291500px;}
.x4f_c00393{left:226.292238px;}
.x3a_c00393{left:231.238512px;}
.x8e_c00393{left:232.744713px;}
.x6_c00393{left:235.641000px;}
.x50_c00393{left:237.737922px;}
.x5e_c00393{left:241.206138px;}
.x74_c00393{left:243.904500px;}
.x25_c00393{left:246.001908px;}
.xb8_c00393{left:247.860000px;}
.x1c_c00393{left:249.667500px;}
.x3b_c00393{left:251.755002px;}
.x57_c00393{left:254.711124px;}
.x87_c00393{left:258.123335px;}
.x47_c00393{left:259.658838px;}
.x26_c00393{left:262.294908px;}
.xb1_c00393{left:264.601500px;}
.x9b_c00393{left:266.862000px;}
.x58_c00393{left:268.772790px;}
.x7_c00393{left:271.833000px;}
.x48_c00393{left:273.348000px;}
.x65_c00393{left:275.412294px;}
.xc5_c00393{left:276.480000px;}
.x7f_c00393{left:280.375418px;}
.x5f_c00393{left:281.483610px;}
.x1d_c00393{left:283.383000px;}
.x51_c00393{left:285.499284px;}
.xc2_c00393{left:289.170000px;}
.xa5_c00393{left:290.791500px;}
.x6e_c00393{left:292.693152px;}
.x27_c00393{left:296.094408px;}
.x60_c00393{left:298.515024px;}
.x14_c00393{left:299.914989px;}
.xb9_c00393{left:301.590000px;}
.xbe_c00393{left:302.940000px;}
.x3c_c00393{left:304.142022px;}
.x9f_c00393{left:305.371500px;}
.x49_c00393{left:307.941414px;}
.x52_c00393{left:310.847796px;}
.x15_c00393{left:320.703489px;}
.xa0_c00393{left:322.381500px;}
.x59_c00393{left:323.636436px;}
.x1e_c00393{left:325.263000px;}
.x8_c00393{left:326.379000px;}
.x33_c00393{left:330.067140px;}
.x4a_c00393{left:331.454202px;}
.x7b_c00393{left:334.384416px;}
.x28_c00393{left:335.521908px;}
.xc7_c00393{left:339.390000px;}
.x75_c00393{left:341.382000px;}
.x94_c00393{left:342.909771px;}
.x8f_c00393{left:343.988663px;}
.xa6_c00393{left:348.301500px;}
.x34_c00393{left:349.509576px;}
.xba_c00393{left:352.350000px;}
.x16_c00393{left:353.655489px;}
.x97_c00393{left:355.320000px;}
.x29_c00393{left:356.566908px;}
.x76_c00393{left:357.880500px;}
.x1_c00393{left:362.610000px;}
.x61_c00393{left:364.123590px;}
.xb2_c00393{left:366.931500px;}
.xbb_c00393{left:369.630000px;}
.x9_c00393{left:371.992500px;}
.x3d_c00393{left:372.998334px;}
.x1f_c00393{left:374.344500px;}
.x80_c00393{left:376.737746px;}
.x90_c00393{left:378.010332px;}
.x62_c00393{left:384.378576px;}
.x20_c00393{left:386.559000px;}
.x4b_c00393{left:388.697886px;}
.x88_c00393{left:389.886792px;}
.x3e_c00393{left:391.362216px;}
.x92_c00393{left:394.601498px;}
.x7c_c00393{left:395.646986px;}
.x95_c00393{left:399.071022px;}
.xc3_c00393{left:400.680000px;}
.xb3_c00393{left:402.031500px;}
.xa_c00393{left:405.964500px;}
.x66_c00393{left:410.691270px;}
.x4c_c00393{left:413.809692px;}
.xa1_c00393{left:415.531500px;}
.x53_c00393{left:417.532686px;}
.xb4_c00393{left:419.851500px;}
.x2_c00393{left:421.740000px;}
.xc4_c00393{left:424.170000px;}
.xb_c00393{left:425.208000px;}
.x96_c00393{left:427.422408px;}
.xa7_c00393{left:428.491500px;}
.x67_c00393{left:430.132578px;}
.x2a_c00393{left:434.328408px;}
.xac_c00393{left:435.781500px;}
.x81_c00393{left:440.224805px;}
.x5a_c00393{left:441.591606px;}
.x77_c00393{left:442.897500px;}
.x6f_c00393{left:444.983076px;}
.x9c_c00393{left:447.757500px;}
.x68_c00393{left:448.763760px;}
.x35_c00393{left:449.960400px;}
.xc6_c00393{left:451.170000px;}
.x54_c00393{left:455.075436px;}
.x82_c00393{left:459.355668px;}
.x70_c00393{left:461.723988px;}
.x3f_c00393{left:463.190172px;}
.x17_c00393{left:466.218489px;}
.xc_c00393{left:468.411000px;}
.xad_c00393{left:472.501500px;}
.xbf_c00393{left:474.660000px;}
.x2b_c00393{left:475.677408px;}
.x21_c00393{left:478.362000px;}
.x89_c00393{left:480.879744px;}
.xa8_c00393{left:482.761500px;}
.x40_c00393{left:484.789716px;}
.x2c_c00393{left:486.720408px;}
.x69_c00393{left:488.996556px;}
.x71_c00393{left:490.076574px;}
.x55_c00393{left:491.790132px;}
.x36_c00393{left:492.890970px;}
.xd_c00393{left:494.340000px;}
.x18_c00393{left:498.585489px;}
.x78_c00393{left:499.842000px;}
.x41_c00393{left:502.070544px;}
.xa9_c00393{left:504.361500px;}
.xbc_c00393{left:508.410000px;}
.x2d_c00393{left:509.662908px;}
.x56_c00393{left:514.764018px;}
.x8a_c00393{left:516.791498px;}
.x19_c00393{left:520.453989px;}
.x2e_c00393{left:523.171908px;}
.x4d_c00393{left:525.328524px;}
.x7d_c00393{left:528.532551px;}
.x79_c00393{left:531.171000px;}
.x42_c00393{left:532.274502px;}
.xae_c00393{left:538.381500px;}
.xa2_c00393{left:539.731500px;}
.x2f_c00393{left:542.863908px;}
.x9d_c00393{left:549.543000px;}
.x1a_c00393{left:553.713489px;}
.x7a_c00393{left:555.999000px;}
.xb5_c00393{left:558.091500px;}
.x8b_c00393{left:561.072171px;}
.x6a_c00393{left:562.172586px;}
.x91_c00393{left:563.774936px;}
.xe_c00393{left:568.233000px;}
.x30_c00393{left:572.581908px;}
.xb6_c00393{left:574.291500px;}
.x22_c00393{left:575.548500px;}
.x1b_c00393{left:576.661989px;}
.x6b_c00393{left:579.723606px;}
.x98_c00393{left:580.770000px;}
.xf_c00393{left:581.799000px;}
.xaf_c00393{left:587.521500px;}
.xa3_c00393{left:593.461500px;}
.x43_c00393{left:595.222026px;}
.x83_c00393{left:596.810202px;}
.x72_c00393{left:598.354662px;}
.x5b_c00393{left:600.881238px;}
.x31_c00393{left:603.366408px;}
.x37_c00393{left:605.178870px;}
.x6c_c00393{left:607.266066px;}
.x8c_c00393{left:608.322981px;}
.x10_c00393{left:610.899000px;}
.x9e_c00393{left:614.335500px;}
.x44_c00393{left:616.821570px;}
.x23_c00393{left:618.759000px;}
.x4e_c00393{left:621.701694px;}
.x93_c00393{left:648.675438px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.fs15_c00393{font-size:42.933333pt;}
.fs17_c00393{font-size:43.866667pt;}
.fs14_c00393{font-size:45.733333pt;}
.fs16_c00393{font-size:46.666667pt;}
.fse_c00393{font-size:55.068016pt;}
.fs12_c00393{font-size:56.000000pt;}
.fs8_c00393{font-size:56.004032pt;}
.fs13_c00393{font-size:56.933333pt;}
.fs9_c00393{font-size:58.804233pt;}
.fs6_c00393{font-size:59.737634pt;}
.fs10_c00393{font-size:60.666667pt;}
.fsb_c00393{font-size:60.668153pt;}
.fsc_c00393{font-size:61.601509pt;}
.fs7_c00393{font-size:61.604435pt;}
.fsd_c00393{font-size:62.534865pt;}
.fs5_c00393{font-size:62.537836pt;}
.fs2_c00393{font-size:62.539461pt;}
.fs11_c00393{font-size:63.466667pt;}
.fsa_c00393{font-size:63.468222pt;}
.fsf_c00393{font-size:64.401578pt;}
.fs4_c00393{font-size:65.338037pt;}
.fs1_c00393{font-size:65.339736pt;}
.fs3_c00393{font-size:66.271438pt;}
.fs0_c00393{font-size:77.466667pt;}
.fs18_c00393{font-size:130.666667pt;}
.y0_c00393{bottom:0.000000pt;}
.y110_c00393{bottom:84.526667pt;}
.y10f_c00393{bottom:140.742667pt;}
.y10e_c00393{bottom:156.552000pt;}
.y10d_c00393{bottom:172.113333pt;}
.y10c_c00393{bottom:188.465333pt;}
.y10b_c00393{bottom:204.012000pt;}
.y10a_c00393{bottom:242.830667pt;}
.y109_c00393{bottom:263.849333pt;}
.y108_c00393{bottom:283.813333pt;}
.y107_c00393{bottom:303.769333pt;}
.yf9_c00393{bottom:323.040000pt;}
.yfa_c00393{bottom:323.177333pt;}
.yfb_c00393{bottom:323.330667pt;}
.yfc_c00393{bottom:323.610667pt;}
.yfd_c00393{bottom:323.724000pt;}
.yfe_c00393{bottom:323.984000pt;}
.yff_c00393{bottom:324.500000pt;}
.y100_c00393{bottom:324.712000pt;}
.y101_c00393{bottom:324.849333pt;}
.y102_c00393{bottom:325.181333pt;}
.y103_c00393{bottom:325.297333pt;}
.y104_c00393{bottom:325.482667pt;}
.y105_c00393{bottom:325.792000pt;}
.y106_c00393{bottom:325.886667pt;}
.yf8_c00393{bottom:345.254667pt;}
.yf2_c00393{bottom:365.281348pt;}
.yf4_c00393{bottom:365.281445pt;}
.yee_c00393{bottom:365.281483pt;}
.yf3_c00393{bottom:365.281552pt;}
.yf1_c00393{bottom:365.281597pt;}
.yf0_c00393{bottom:365.281677pt;}
.yef_c00393{bottom:365.281740pt;}
.yf5_c00393{bottom:365.281845pt;}
.yf7_c00393{bottom:365.282103pt;}
.yf6_c00393{bottom:365.282183pt;}
.ye0_c00393{bottom:384.243192pt;}
.ye1_c00393{bottom:384.405491pt;}
.ye2_c00393{bottom:384.875749pt;}
.ye3_c00393{bottom:384.985196pt;}
.ye4_c00393{bottom:385.171243pt;}
.ye5_c00393{bottom:385.681131pt;}
.ye6_c00393{bottom:385.844605pt;}
.ye7_c00393{bottom:386.146659pt;}
.ye8_c00393{bottom:386.578584pt;}
.ye9_c00393{bottom:386.740351pt;}
.yea_c00393{bottom:386.907315pt;}
.yeb_c00393{bottom:387.423408pt;}
.yec_c00393{bottom:387.745812pt;}
.yed_c00393{bottom:388.179585pt;}
.ydb_c00393{bottom:406.191896pt;}
.yd5_c00393{bottom:406.192101pt;}
.yde_c00393{bottom:406.192224pt;}
.yd9_c00393{bottom:406.192332pt;}
.yd4_c00393{bottom:406.192351pt;}
.yda_c00393{bottom:406.192412pt;}
.ydc_c00393{bottom:406.192447pt;}
.ydf_c00393{bottom:406.192455pt;}
.yd6_c00393{bottom:406.192581pt;}
.yd8_c00393{bottom:406.192732pt;}
.yd7_c00393{bottom:406.192741pt;}
.ydd_c00393{bottom:406.192793pt;}
.yc5_c00393{bottom:426.906149pt;}
.yc6_c00393{bottom:426.906603pt;}
.yc7_c00393{bottom:426.906709pt;}
.yc8_c00393{bottom:426.906869pt;}
.ycb_c00393{bottom:426.906931pt;}
.yca_c00393{bottom:426.907037pt;}
.ycc_c00393{bottom:426.907321pt;}
.yc9_c00393{bottom:426.907500pt;}
.ycd_c00393{bottom:426.907695pt;}
.yce_c00393{bottom:426.908139pt;}
.yd1_c00393{bottom:426.908423pt;}
.yd2_c00393{bottom:426.908787pt;}
.ycf_c00393{bottom:426.908805pt;}
.yd0_c00393{bottom:426.908912pt;}
.yd3_c00393{bottom:426.909080pt;}
.yb9_c00393{bottom:444.480881pt;}
.yba_c00393{bottom:444.928163pt;}
.ybb_c00393{bottom:445.126741pt;}
.ybc_c00393{bottom:445.385523pt;}
.ybd_c00393{bottom:445.514083pt;}
.ybe_c00393{bottom:446.070448pt;}
.ybf_c00393{bottom:446.521481pt;}
.yc0_c00393{bottom:446.657852pt;}
.yc1_c00393{bottom:446.840352pt;}
.yc2_c00393{bottom:447.094065pt;}
.yc3_c00393{bottom:447.499175pt;}
.yc4_c00393{bottom:447.635797pt;}
.yae_c00393{bottom:464.640635pt;}
.yaf_c00393{bottom:465.054021pt;}
.yb0_c00393{bottom:465.750547pt;}
.yb1_c00393{bottom:465.913235pt;}
.yb2_c00393{bottom:466.074373pt;}
.yb3_c00393{bottom:466.349093pt;}
.yb4_c00393{bottom:466.690940pt;}
.yb5_c00393{bottom:467.156195pt;}
.yb6_c00393{bottom:467.294609pt;}
.yb7_c00393{bottom:467.580799pt;}
.yb8_c00393{bottom:467.962867pt;}
.y9e_c00393{bottom:486.168000pt;}
.y9f_c00393{bottom:486.240445pt;}
.ya0_c00393{bottom:486.371541pt;}
.ya1_c00393{bottom:486.673960pt;}
.ya2_c00393{bottom:487.075191pt;}
.ya3_c00393{bottom:487.151155pt;}
.ya4_c00393{bottom:487.280487pt;}
.ya5_c00393{bottom:487.383144pt;}
.ya6_c00393{bottom:487.786204pt;}
.ya7_c00393{bottom:487.912139pt;}
.ya8_c00393{bottom:488.172184pt;}
.ya9_c00393{bottom:488.266460pt;}
.yaa_c00393{bottom:488.461396pt;}
.yab_c00393{bottom:488.615881pt;}
.yac_c00393{bottom:488.773997pt;}
.yad_c00393{bottom:488.994049pt;}
.y9c_c00393{bottom:507.945072pt;}
.y9b_c00393{bottom:507.945157pt;}
.y9d_c00393{bottom:507.945291pt;}
.y96_c00393{bottom:507.945371pt;}
.y9a_c00393{bottom:507.945440pt;}
.y99_c00393{bottom:507.945563pt;}
.y95_c00393{bottom:507.945600pt;}
.y97_c00393{bottom:507.945696pt;}
.y92_c00393{bottom:507.945856pt;}
.y94_c00393{bottom:507.945861pt;}
.y98_c00393{bottom:507.946181pt;}
.y93_c00393{bottom:507.946517pt;}
.y8d_c00393{bottom:528.604613pt;}
.y8e_c00393{bottom:528.604688pt;}
.y8b_c00393{bottom:528.604821pt;}
.y8c_c00393{bottom:528.604859pt;}
.y8f_c00393{bottom:528.605045pt;}
.y88_c00393{bottom:528.605376pt;}
.y8a_c00393{bottom:528.605477pt;}
.y90_c00393{bottom:528.605563pt;}
.y87_c00393{bottom:528.605744pt;}
.y91_c00393{bottom:528.605973pt;}
.y89_c00393{bottom:528.605984pt;}
.y86_c00393{bottom:528.606240pt;}
.y85_c00393{bottom:528.606752pt;}
.y79_c00393{bottom:546.946059pt;}
.y7a_c00393{bottom:547.111493pt;}
.y7b_c00393{bottom:547.276896pt;}
.y7c_c00393{bottom:547.699312pt;}
.y7d_c00393{bottom:548.056928pt;}
.y7e_c00393{bottom:548.207925pt;}
.y7f_c00393{bottom:548.791733pt;}
.y80_c00393{bottom:548.971781pt;}
.y81_c00393{bottom:549.862384pt;}
.y82_c00393{bottom:550.177125pt;}
.y83_c00393{bottom:550.664656pt;}
.y84_c00393{bottom:550.851979pt;}
.y6c_c00393{bottom:567.106891pt;}
.y6d_c00393{bottom:567.402283pt;}
.y6e_c00393{bottom:567.681472pt;}
.y6f_c00393{bottom:567.810240pt;}
.y70_c00393{bottom:567.910891pt;}
.y71_c00393{bottom:568.213931pt;}
.y72_c00393{bottom:568.300075pt;}
.y73_c00393{bottom:568.999744pt;}
.y74_c00393{bottom:569.138203pt;}
.y75_c00393{bottom:569.493573pt;}
.y76_c00393{bottom:569.733621pt;}
.y77_c00393{bottom:570.129520pt;}
.y78_c00393{bottom:570.271877pt;}
.y5f_c00393{bottom:587.506907pt;}
.y60_c00393{bottom:587.946048pt;}
.y61_c00393{bottom:588.017461pt;}
.y62_c00393{bottom:588.314885pt;}
.y63_c00393{bottom:588.473253pt;}
.y64_c00393{bottom:588.589627pt;}
.y65_c00393{bottom:588.754597pt;}
.y66_c00393{bottom:589.137824pt;}
.y67_c00393{bottom:589.371589pt;}
.y68_c00393{bottom:589.600523pt;}
.y69_c00393{bottom:589.742896pt;}
.y6a_c00393{bottom:589.848144pt;}
.y6b_c00393{bottom:590.381136pt;}
.y53_c00393{bottom:607.670171pt;}
.y54_c00393{bottom:608.092400pt;}
.y55_c00393{bottom:608.704896pt;}
.y56_c00393{bottom:608.838912pt;}
.y57_c00393{bottom:609.177237pt;}
.y58_c00393{bottom:609.406704pt;}
.y59_c00393{bottom:609.966629pt;}
.y5a_c00393{bottom:610.211819pt;}
.y5b_c00393{bottom:611.070581pt;}
.y5c_c00393{bottom:611.302672pt;}
.y5d_c00393{bottom:612.059787pt;}
.y5e_c00393{bottom:612.243973pt;}
.y43_c00393{bottom:628.073867pt;}
.y44_c00393{bottom:628.260021pt;}
.y45_c00393{bottom:628.361899pt;}
.y46_c00393{bottom:628.613989pt;}
.y47_c00393{bottom:628.759488pt;}
.y48_c00393{bottom:628.837616pt;}
.y49_c00393{bottom:629.131589pt;}
.y4a_c00393{bottom:629.620688pt;}
.y4b_c00393{bottom:629.751227pt;}
.y4c_c00393{bottom:629.971776pt;}
.y4d_c00393{bottom:630.261355pt;}
.y4e_c00393{bottom:630.414405pt;}
.y4f_c00393{bottom:630.537392pt;}
.y50_c00393{bottom:630.751552pt;}
.y51_c00393{bottom:631.198960pt;}
.y52_c00393{bottom:631.352011pt;}
.y37_c00393{bottom:648.238251pt;}
.y38_c00393{bottom:648.453307pt;}
.y39_c00393{bottom:648.900411pt;}
.y3a_c00393{bottom:649.476347pt;}
.y3b_c00393{bottom:649.614389pt;}
.y3c_c00393{bottom:649.770400pt;}
.y3d_c00393{bottom:650.149989pt;}
.y3e_c00393{bottom:650.328480pt;}
.y3f_c00393{bottom:650.454560pt;}
.y40_c00393{bottom:650.633051pt;}
.y41_c00393{bottom:651.169989pt;}
.y42_c00393{bottom:651.430731pt;}
.y28_c00393{bottom:669.120869pt;}
.y29_c00393{bottom:669.310901pt;}
.y2a_c00393{bottom:670.081413pt;}
.y2b_c00393{bottom:670.255205pt;}
.y2c_c00393{bottom:670.615733pt;}
.y2d_c00393{bottom:671.036293pt;}
.y2e_c00393{bottom:671.260773pt;}
.y2f_c00393{bottom:672.090229pt;}
.y30_c00393{bottom:672.531285pt;}
.y31_c00393{bottom:672.649077pt;}
.y32_c00393{bottom:672.893797pt;}
.y33_c00393{bottom:673.037893pt;}
.y34_c00393{bottom:673.247941pt;}
.y35_c00393{bottom:673.564933pt;}
.y36_c00393{bottom:673.893301pt;}
.y1c_c00393{bottom:689.282667pt;}
.y1d_c00393{bottom:689.887387pt;}
.y1e_c00393{bottom:690.264747pt;}
.y1f_c00393{bottom:690.624379pt;}
.y20_c00393{bottom:691.071099pt;}
.y21_c00393{bottom:691.594635pt;}
.y22_c00393{bottom:691.724923pt;}
.y23_c00393{bottom:692.704155pt;}
.y24_c00393{bottom:693.159371pt;}
.y25_c00393{bottom:693.504667pt;}
.y26_c00393{bottom:693.740811pt;}
.y27_c00393{bottom:694.201723pt;}
.y10_c00393{bottom:708.959507pt;}
.y11_c00393{bottom:709.500597pt;}
.y12_c00393{bottom:709.755789pt;}
.y13_c00393{bottom:710.740829pt;}
.y14_c00393{bottom:710.999531pt;}
.y15_c00393{bottom:711.409600pt;}
.y16_c00393{bottom:712.249563pt;}
.y17_c00393{bottom:712.810384pt;}
.y18_c00393{bottom:713.213173pt;}
.y19_c00393{bottom:713.485315pt;}
.y1a_c00393{bottom:713.899211pt;}
.y1b_c00393{bottom:714.184792pt;}
.y2_c00393{bottom:729.361333pt;}
.y3_c00393{bottom:729.620968pt;}
.y4_c00393{bottom:730.084797pt;}
.y5_c00393{bottom:730.356976pt;}
.y6_c00393{bottom:730.807365pt;}
.y7_c00393{bottom:731.486160pt;}
.y8_c00393{bottom:732.053795pt;}
.y9_c00393{bottom:732.476557pt;}
.ya_c00393{bottom:732.716032pt;}
.yb_c00393{bottom:733.253669pt;}
.yc_c00393{bottom:733.576341pt;}
.yd_c00393{bottom:734.495899pt;}
.ye_c00393{bottom:734.664720pt;}
.yf_c00393{bottom:735.026853pt;}
.y1_c00393{bottom:767.160000pt;}
.h17_c00393{height:42.933333pt;}
.h19_c00393{height:43.866667pt;}
.h16_c00393{height:45.733333pt;}
.h18_c00393{height:46.666667pt;}
.h10_c00393{height:55.068016pt;}
.h14_c00393{height:56.000000pt;}
.ha_c00393{height:56.004032pt;}
.h15_c00393{height:56.933333pt;}
.hb_c00393{height:58.804233pt;}
.h8_c00393{height:59.737634pt;}
.h12_c00393{height:60.666667pt;}
.hd_c00393{height:60.668153pt;}
.he_c00393{height:61.601509pt;}
.h9_c00393{height:61.604435pt;}
.hf_c00393{height:62.534865pt;}
.h7_c00393{height:62.537836pt;}
.h4_c00393{height:62.539461pt;}
.h13_c00393{height:63.466667pt;}
.hc_c00393{height:63.468222pt;}
.h11_c00393{height:64.401578pt;}
.h6_c00393{height:65.338037pt;}
.h3_c00393{height:65.339736pt;}
.h5_c00393{height:66.271438pt;}
.h2_c00393{height:77.466667pt;}
.h1a_c00393{height:130.666667pt;}
.h0_c00393{height:896.400000pt;}
.h1_c00393{height:896.666667pt;}
.w1_c00393{width:612.666667pt;}
.w0_c00393{width:612.933333pt;}
.x0_c00393{left:0.000000pt;}
.xc8_c00393{left:100.800000pt;}
.x45_c00393{left:136.690720pt;}
.x3_c00393{left:138.341333pt;}
.x11_c00393{left:139.353768pt;}
.xbd_c00393{left:140.400000pt;}
.xb7_c00393{left:142.800000pt;}
.x73_c00393{left:144.524000pt;}
.xc0_c00393{left:151.200000pt;}
.x84_c00393{left:153.120564pt;}
.x24_c00393{left:154.459029pt;}
.x5c_c00393{left:155.641381pt;}
.x4_c00393{left:156.886667pt;}
.x99_c00393{left:159.173333pt;}
.x38_c00393{left:161.379232pt;}
.xc1_c00393{left:162.720000pt;}
.x32_c00393{left:165.466869pt;}
.x63_c00393{left:169.205365pt;}
.x5d_c00393{left:172.203115pt;}
.x39_c00393{left:174.091840pt;}
.x46_c00393{left:175.099184pt;}
.xb0_c00393{left:176.161333pt;}
.x12_c00393{left:178.003101pt;}
.x85_c00393{left:179.041833pt;}
.x9a_c00393{left:181.037333pt;}
.x64_c00393{left:182.165904pt;}
.xaa_c00393{left:184.561333pt;}
.x8d_c00393{left:186.243181pt;}
.x6d_c00393{left:188.646720pt;}
.x5_c00393{left:190.017333pt;}
.x7e_c00393{left:192.076328pt;}
.x86_c00393{left:193.922561pt;}
.xa4_c00393{left:194.881333pt;}
.x13_c00393{left:196.231101pt;}
.xab_c00393{left:198.481333pt;}
.x4f_c00393{left:201.148656pt;}
.x3a_c00393{left:205.545344pt;}
.x8e_c00393{left:206.884189pt;}
.x6_c00393{left:209.458667pt;}
.x50_c00393{left:211.322597pt;}
.x5e_c00393{left:214.405456pt;}
.x74_c00393{left:216.804000pt;}
.x25_c00393{left:218.668363pt;}
.xb8_c00393{left:220.320000pt;}
.x1c_c00393{left:221.926667pt;}
.x3b_c00393{left:223.782224pt;}
.x57_c00393{left:226.409888pt;}
.x87_c00393{left:229.442964pt;}
.x47_c00393{left:230.807856pt;}
.x26_c00393{left:233.151029pt;}
.xb1_c00393{left:235.201333pt;}
.x9b_c00393{left:237.210667pt;}
.x58_c00393{left:238.909147pt;}
.x7_c00393{left:241.629333pt;}
.x48_c00393{left:242.976000pt;}
.x65_c00393{left:244.810928pt;}
.xc5_c00393{left:245.760000pt;}
.x7f_c00393{left:249.222593pt;}
.x5f_c00393{left:250.207653pt;}
.x1d_c00393{left:251.896000pt;}
.x51_c00393{left:253.777141pt;}
.xc2_c00393{left:257.040000pt;}
.xa5_c00393{left:258.481333pt;}
.x6e_c00393{left:260.171691pt;}
.x27_c00393{left:263.195029pt;}
.x60_c00393{left:265.346688pt;}
.x14_c00393{left:266.591101pt;}
.xb9_c00393{left:268.080000pt;}
.xbe_c00393{left:269.280000pt;}
.x3c_c00393{left:270.348464pt;}
.x9f_c00393{left:271.441333pt;}
.x49_c00393{left:273.725701pt;}
.x52_c00393{left:276.309152pt;}
.x15_c00393{left:285.069768pt;}
.xa0_c00393{left:286.561333pt;}
.x59_c00393{left:287.676832pt;}
.x1e_c00393{left:289.122667pt;}
.x8_c00393{left:290.114667pt;}
.x33_c00393{left:293.393013pt;}
.x4a_c00393{left:294.625957pt;}
.x7b_c00393{left:297.230592pt;}
.x28_c00393{left:298.241696pt;}
.xc7_c00393{left:301.680000pt;}
.x75_c00393{left:303.450667pt;}
.x94_c00393{left:304.808685pt;}
.x8f_c00393{left:305.767700pt;}
.xa6_c00393{left:309.601333pt;}
.x34_c00393{left:310.675179pt;}
.xba_c00393{left:313.200000pt;}
.x16_c00393{left:314.360435pt;}
.x97_c00393{left:315.840000pt;}
.x29_c00393{left:316.948363pt;}
.x76_c00393{left:318.116000pt;}
.x1_c00393{left:322.320000pt;}
.x61_c00393{left:323.665413pt;}
.xb2_c00393{left:326.161333pt;}
.xbb_c00393{left:328.560000pt;}
.x9_c00393{left:330.660000pt;}
.x3d_c00393{left:331.554075pt;}
.x1f_c00393{left:332.750667pt;}
.x80_c00393{left:334.877996pt;}
.x90_c00393{left:336.009184pt;}
.x62_c00393{left:341.669845pt;}
.x20_c00393{left:343.608000pt;}
.x4b_c00393{left:345.509232pt;}
.x88_c00393{left:346.566037pt;}
.x3e_c00393{left:347.877525pt;}
.x92_c00393{left:350.756887pt;}
.x7c_c00393{left:351.686209pt;}
.x95_c00393{left:354.729797pt;}
.xc3_c00393{left:356.160000pt;}
.xb3_c00393{left:357.361333pt;}
.xa_c00393{left:360.857333pt;}
.x66_c00393{left:365.058907pt;}
.x4c_c00393{left:367.830837pt;}
.xa1_c00393{left:369.361333pt;}
.x53_c00393{left:371.140165pt;}
.xb4_c00393{left:373.201333pt;}
.x2_c00393{left:374.880000pt;}
.xc4_c00393{left:377.040000pt;}
.xb_c00393{left:377.962667pt;}
.x96_c00393{left:379.931029pt;}
.xa7_c00393{left:380.881333pt;}
.x67_c00393{left:382.340069pt;}
.x2a_c00393{left:386.069696pt;}
.xac_c00393{left:387.361333pt;}
.x81_c00393{left:391.310937pt;}
.x5a_c00393{left:392.525872pt;}
.x77_c00393{left:393.686667pt;}
.x6f_c00393{left:395.540512pt;}
.x9c_c00393{left:398.006667pt;}
.x68_c00393{left:398.901120pt;}
.x35_c00393{left:399.964800pt;}
.xc6_c00393{left:401.040000pt;}
.x54_c00393{left:404.511499pt;}
.x82_c00393{left:408.316149pt;}
.x70_c00393{left:410.421323pt;}
.x3f_c00393{left:411.724597pt;}
.x17_c00393{left:414.416435pt;}
.xc_c00393{left:416.365333pt;}
.xad_c00393{left:420.001333pt;}
.xbf_c00393{left:421.920000pt;}
.x2b_c00393{left:422.824363pt;}
.x21_c00393{left:425.210667pt;}
.x89_c00393{left:427.448661pt;}
.xa8_c00393{left:429.121333pt;}
.x40_c00393{left:430.924192pt;}
.x2c_c00393{left:432.640363pt;}
.x69_c00393{left:434.663605pt;}
.x71_c00393{left:435.623621pt;}
.x55_c00393{left:437.146784pt;}
.x36_c00393{left:438.125307pt;}
.xd_c00393{left:439.413333pt;}
.x18_c00393{left:443.187101pt;}
.x78_c00393{left:444.304000pt;}
.x41_c00393{left:446.284928pt;}
.xa9_c00393{left:448.321333pt;}
.xbc_c00393{left:451.920000pt;}
.x2d_c00393{left:453.033696pt;}
.x56_c00393{left:457.568016pt;}
.x8a_c00393{left:459.370220pt;}
.x19_c00393{left:462.625768pt;}
.x2e_c00393{left:465.041696pt;}
.x4d_c00393{left:466.958688pt;}
.x7d_c00393{left:469.806712pt;}
.x79_c00393{left:472.152000pt;}
.x42_c00393{left:473.132891pt;}
.xae_c00393{left:478.561333pt;}
.xa2_c00393{left:479.761333pt;}
.x2f_c00393{left:482.545696pt;}
.x9d_c00393{left:488.482667pt;}
.x1a_c00393{left:492.189768pt;}
.x7a_c00393{left:494.221333pt;}
.xb5_c00393{left:496.081333pt;}
.x8b_c00393{left:498.730819pt;}
.x6a_c00393{left:499.708965pt;}
.x91_c00393{left:501.133276pt;}
.xe_c00393{left:505.096000pt;}
.x30_c00393{left:508.961696pt;}
.xb6_c00393{left:510.481333pt;}
.x22_c00393{left:511.598667pt;}
.x1b_c00393{left:512.588435pt;}
.x6b_c00393{left:515.309872pt;}
.x98_c00393{left:516.240000pt;}
.xf_c00393{left:517.154667pt;}
.xaf_c00393{left:522.241333pt;}
.xa3_c00393{left:527.521333pt;}
.x43_c00393{left:529.086245pt;}
.x83_c00393{left:530.497957pt;}
.x72_c00393{left:531.870811pt;}
.x5b_c00393{left:534.116656pt;}
.x31_c00393{left:536.325696pt;}
.x37_c00393{left:537.936773pt;}
.x6c_c00393{left:539.792059pt;}
.x8c_c00393{left:540.731539pt;}
.x10_c00393{left:543.021333pt;}
.x9e_c00393{left:546.076000pt;}
.x44_c00393{left:548.285840pt;}
.x23_c00393{left:550.008000pt;}
.x4e_c00393{left:552.623728pt;}
.x93_c00393{left:576.600389pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m149_c00394{transform:matrix(0.015473,-0.000232,0.003750,0.249972,0,0);-ms-transform:matrix(0.015473,-0.000232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.015473,-0.000232,0.003750,0.249972,0,0);}
.m58_c00394{transform:matrix(0.096219,-0.001058,0.002750,0.249985,0,0);-ms-transform:matrix(0.096219,-0.001058,0.002750,0.249985,0,0);-webkit-transform:matrix(0.096219,-0.001058,0.002750,0.249985,0,0);}
.m123_c00394{transform:matrix(0.105886,-0.001694,0.003999,0.249968,0,0);-ms-transform:matrix(0.105886,-0.001694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.105886,-0.001694,0.003999,0.249968,0,0);}
.mc0_c00394{transform:matrix(0.106749,-0.001174,0.002750,0.249985,0,0);-ms-transform:matrix(0.106749,-0.001174,0.002750,0.249985,0,0);-webkit-transform:matrix(0.106749,-0.001174,0.002750,0.249985,0,0);}
.m29_c00394{transform:matrix(0.139232,-0.001532,0.002750,0.249985,0,0);-ms-transform:matrix(0.139232,-0.001532,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139232,-0.001532,0.002750,0.249985,0,0);}
.mc7_c00394{transform:matrix(0.139267,-0.001532,0.002750,0.249985,0,0);-ms-transform:matrix(0.139267,-0.001532,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139267,-0.001532,0.002750,0.249985,0,0);}
.m7_c00394{transform:matrix(0.139992,-0.001540,0.002750,0.249985,0,0);-ms-transform:matrix(0.139992,-0.001540,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139992,-0.001540,0.002750,0.249985,0,0);}
.m73_c00394{transform:matrix(0.141311,-0.001554,0.002750,0.249985,0,0);-ms-transform:matrix(0.141311,-0.001554,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141311,-0.001554,0.002750,0.249985,0,0);}
.m77_c00394{transform:matrix(0.141991,-0.001562,0.002750,0.249985,0,0);-ms-transform:matrix(0.141991,-0.001562,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141991,-0.001562,0.002750,0.249985,0,0);}
.m8e_c00394{transform:matrix(0.142211,-0.001564,0.002750,0.249985,0,0);-ms-transform:matrix(0.142211,-0.001564,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142211,-0.001564,0.002750,0.249985,0,0);}
.m99_c00394{transform:matrix(0.142766,-0.001570,0.002750,0.249985,0,0);-ms-transform:matrix(0.142766,-0.001570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.142766,-0.001570,0.002750,0.249985,0,0);}
.ma9_c00394{transform:matrix(0.144971,-0.001595,0.002750,0.249985,0,0);-ms-transform:matrix(0.144971,-0.001595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144971,-0.001595,0.002750,0.249985,0,0);}
.m50_c00394{transform:matrix(0.146196,-0.001608,0.002750,0.249985,0,0);-ms-transform:matrix(0.146196,-0.001608,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146196,-0.001608,0.002750,0.249985,0,0);}
.md9_c00394{transform:matrix(0.147081,-0.001618,0.002750,0.249985,0,0);-ms-transform:matrix(0.147081,-0.001618,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147081,-0.001618,0.002750,0.249985,0,0);}
.m22_c00394{transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);-ms-transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148411,-0.001633,0.002750,0.249985,0,0);}
.mf6_c00394{transform:matrix(0.148671,-0.001635,0.002750,0.249985,0,0);-ms-transform:matrix(0.148671,-0.001635,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148671,-0.001635,0.002750,0.249985,0,0);}
.m79_c00394{transform:matrix(0.150751,-0.001658,0.002750,0.249985,0,0);-ms-transform:matrix(0.150751,-0.001658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150751,-0.001658,0.002750,0.249985,0,0);}
.me1_c00394{transform:matrix(0.150866,-0.001660,0.002750,0.249985,0,0);-ms-transform:matrix(0.150866,-0.001660,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150866,-0.001660,0.002750,0.249985,0,0);}
.m27_c00394{transform:matrix(0.151451,-0.001666,0.002750,0.249985,0,0);-ms-transform:matrix(0.151451,-0.001666,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151451,-0.001666,0.002750,0.249985,0,0);}
.mc8_c00394{transform:matrix(0.151616,-0.001668,0.002750,0.249985,0,0);-ms-transform:matrix(0.151616,-0.001668,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151616,-0.001668,0.002750,0.249985,0,0);}
.m1b_c00394{transform:matrix(0.152071,-0.001673,0.002750,0.249985,0,0);-ms-transform:matrix(0.152071,-0.001673,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152071,-0.001673,0.002750,0.249985,0,0);}
.m90_c00394{transform:matrix(0.152106,-0.001673,0.002750,0.249985,0,0);-ms-transform:matrix(0.152106,-0.001673,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152106,-0.001673,0.002750,0.249985,0,0);}
.m80_c00394{transform:matrix(0.153086,-0.001684,0.002750,0.249985,0,0);-ms-transform:matrix(0.153086,-0.001684,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153086,-0.001684,0.002750,0.249985,0,0);}
.mde_c00394{transform:matrix(0.153196,-0.001685,0.002750,0.249985,0,0);-ms-transform:matrix(0.153196,-0.001685,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153196,-0.001685,0.002750,0.249985,0,0);}
.m15_c00394{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);}
.m12_c00394{transform:matrix(0.153566,-0.001689,0.002750,0.249985,0,0);-ms-transform:matrix(0.153566,-0.001689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153566,-0.001689,0.002750,0.249985,0,0);}
.m2a_c00394{transform:matrix(0.153776,-0.001692,0.002750,0.249985,0,0);-ms-transform:matrix(0.153776,-0.001692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153776,-0.001692,0.002750,0.249985,0,0);}
.m32_c00394{transform:matrix(0.154341,-0.001698,0.002750,0.249985,0,0);-ms-transform:matrix(0.154341,-0.001698,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154341,-0.001698,0.002750,0.249985,0,0);}
.m9_c00394{transform:matrix(0.154526,-0.001700,0.002750,0.249985,0,0);-ms-transform:matrix(0.154526,-0.001700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154526,-0.001700,0.002750,0.249985,0,0);}
.m85_c00394{transform:matrix(0.154561,-0.001700,0.002750,0.249985,0,0);-ms-transform:matrix(0.154561,-0.001700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154561,-0.001700,0.002750,0.249985,0,0);}
.m12b_c00394{transform:matrix(0.154820,-0.002477,0.003999,0.249968,0,0);-ms-transform:matrix(0.154820,-0.002477,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154820,-0.002477,0.003999,0.249968,0,0);}
.me0_c00394{transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);-ms-transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155766,-0.001713,0.002750,0.249985,0,0);}
.m70_c00394{transform:matrix(0.157055,-0.001728,0.002750,0.249985,0,0);-ms-transform:matrix(0.157055,-0.001728,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157055,-0.001728,0.002750,0.249985,0,0);}
.m9b_c00394{transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);-ms-transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157400,-0.001731,0.002750,0.249985,0,0);}
.me5_c00394{transform:matrix(0.157555,-0.001733,0.002750,0.249985,0,0);-ms-transform:matrix(0.157555,-0.001733,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157555,-0.001733,0.002750,0.249985,0,0);}
.m92_c00394{transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157765,-0.001735,0.002750,0.249985,0,0);}
.m1d_c00394{transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);-ms-transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158255,-0.001741,0.002750,0.249985,0,0);}
.m1e_c00394{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);}
.m31_c00394{transform:matrix(0.158780,-0.001747,0.002750,0.249985,0,0);-ms-transform:matrix(0.158780,-0.001747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158780,-0.001747,0.002750,0.249985,0,0);}
.m11_c00394{transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);-ms-transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160100,-0.001761,0.002750,0.249985,0,0);}
.m5f_c00394{transform:matrix(0.160300,-0.001763,0.002750,0.249985,0,0);-ms-transform:matrix(0.160300,-0.001763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160300,-0.001763,0.002750,0.249985,0,0);}
.m5_c00394{transform:matrix(0.160660,-0.001767,0.002750,0.249985,0,0);-ms-transform:matrix(0.160660,-0.001767,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160660,-0.001767,0.002750,0.249985,0,0);}
.mf2_c00394{transform:matrix(0.161390,-0.001775,0.002750,0.249985,0,0);-ms-transform:matrix(0.161390,-0.001775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161390,-0.001775,0.002750,0.249985,0,0);}
.m1c_c00394{transform:matrix(0.161435,-0.001776,0.002750,0.249985,0,0);-ms-transform:matrix(0.161435,-0.001776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161435,-0.001776,0.002750,0.249985,0,0);}
.mb5_c00394{transform:matrix(0.161610,-0.001778,0.002750,0.249985,0,0);-ms-transform:matrix(0.161610,-0.001778,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161610,-0.001778,0.002750,0.249985,0,0);}
.mc_c00394{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);}
.m52_c00394{transform:matrix(0.163610,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163610,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163610,-0.001800,0.002750,0.249985,0,0);}
.m43_c00394{transform:matrix(0.163825,-0.001802,0.002750,0.249985,0,0);-ms-transform:matrix(0.163825,-0.001802,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163825,-0.001802,0.002750,0.249985,0,0);}
.m7e_c00394{transform:matrix(0.164845,-0.001813,0.002750,0.249985,0,0);-ms-transform:matrix(0.164845,-0.001813,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164845,-0.001813,0.002750,0.249985,0,0);}
.m23_c00394{transform:matrix(0.165950,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165950,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165950,-0.001825,0.002750,0.249985,0,0);}
.mca_c00394{transform:matrix(0.166030,-0.001826,0.002750,0.249985,0,0);-ms-transform:matrix(0.166030,-0.001826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166030,-0.001826,0.002750,0.249985,0,0);}
.m11e_c00394{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);}
.m78_c00394{transform:matrix(0.166345,-0.001830,0.002750,0.249985,0,0);-ms-transform:matrix(0.166345,-0.001830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166345,-0.001830,0.002750,0.249985,0,0);}
.m8f_c00394{transform:matrix(0.166440,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166440,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166440,-0.001831,0.002750,0.249985,0,0);}
.me2_c00394{transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);-ms-transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166670,-0.001833,0.002750,0.249985,0,0);}
.m104_c00394{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);}
.m115_c00394{transform:matrix(0.166954,-0.002671,0.003999,0.249968,0,0);-ms-transform:matrix(0.166954,-0.002671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166954,-0.002671,0.003999,0.249968,0,0);}
.m1f_c00394{transform:matrix(0.167180,-0.001839,0.002750,0.249985,0,0);-ms-transform:matrix(0.167180,-0.001839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167180,-0.001839,0.002750,0.249985,0,0);}
.mac_c00394{transform:matrix(0.167550,-0.001843,0.002750,0.249985,0,0);-ms-transform:matrix(0.167550,-0.001843,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167550,-0.001843,0.002750,0.249985,0,0);}
.m19_c00394{transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);-ms-transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167735,-0.001845,0.002750,0.249985,0,0);}
.m9d_c00394{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);}
.m111_c00394{transform:matrix(0.167799,-0.002685,0.003999,0.249968,0,0);-ms-transform:matrix(0.167799,-0.002685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167799,-0.002685,0.003999,0.249968,0,0);}
.m4d_c00394{transform:matrix(0.168570,-0.001854,0.002750,0.249985,0,0);-ms-transform:matrix(0.168570,-0.001854,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168570,-0.001854,0.002750,0.249985,0,0);}
.m2f_c00394{transform:matrix(0.168595,-0.001855,0.002750,0.249985,0,0);-ms-transform:matrix(0.168595,-0.001855,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168595,-0.001855,0.002750,0.249985,0,0);}
.md7_c00394{transform:matrix(0.168715,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168715,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168715,-0.001856,0.002750,0.249985,0,0);}
.m116_c00394{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);}
.mad_c00394{transform:matrix(0.168930,-0.001858,0.002750,0.249985,0,0);-ms-transform:matrix(0.168930,-0.001858,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168930,-0.001858,0.002750,0.249985,0,0);}
.m119_c00394{transform:matrix(0.169228,-0.002708,0.003999,0.249968,0,0);-ms-transform:matrix(0.169228,-0.002708,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169228,-0.002708,0.003999,0.249968,0,0);}
.m5b_c00394{transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);-ms-transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169400,-0.001863,0.002750,0.249985,0,0);}
.m20_c00394{transform:matrix(0.169625,-0.001866,0.002750,0.249985,0,0);-ms-transform:matrix(0.169625,-0.001866,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169625,-0.001866,0.002750,0.249985,0,0);}
.m4_c00394{transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);-ms-transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169990,-0.001870,0.002750,0.249985,0,0);}
.m9e_c00394{transform:matrix(0.170135,-0.001871,0.002750,0.249985,0,0);-ms-transform:matrix(0.170135,-0.001871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170135,-0.001871,0.002750,0.249985,0,0);}
.m112_c00394{transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);-ms-transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);}
.mc2_c00394{transform:matrix(0.170370,-0.001874,0.002750,0.249985,0,0);-ms-transform:matrix(0.170370,-0.001874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170370,-0.001874,0.002750,0.249985,0,0);}
.me4_c00394{transform:matrix(0.170430,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170430,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170430,-0.001875,0.002750,0.249985,0,0);}
.mb8_c00394{transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);}
.md_c00394{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);}
.m5a_c00394{transform:matrix(0.171345,-0.001885,0.002750,0.249985,0,0);-ms-transform:matrix(0.171345,-0.001885,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171345,-0.001885,0.002750,0.249985,0,0);}
.m6f_c00394{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);}
.m30_c00394{transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);-ms-transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171545,-0.001887,0.002750,0.249985,0,0);}
.med_c00394{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);}
.m56_c00394{transform:matrix(0.172590,-0.001898,0.002750,0.249985,0,0);-ms-transform:matrix(0.172590,-0.001898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172590,-0.001898,0.002750,0.249985,0,0);}
.m7f_c00394{transform:matrix(0.173195,-0.001905,0.002750,0.249985,0,0);-ms-transform:matrix(0.173195,-0.001905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173195,-0.001905,0.002750,0.249985,0,0);}
.m16_c00394{transform:matrix(0.173280,-0.001906,0.002750,0.249985,0,0);-ms-transform:matrix(0.173280,-0.001906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173280,-0.001906,0.002750,0.249985,0,0);}
.m86_c00394{transform:matrix(0.173335,-0.001907,0.002750,0.249985,0,0);-ms-transform:matrix(0.173335,-0.001907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173335,-0.001907,0.002750,0.249985,0,0);}
.mf0_c00394{transform:matrix(0.173435,-0.001908,0.002750,0.249985,0,0);-ms-transform:matrix(0.173435,-0.001908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173435,-0.001908,0.002750,0.249985,0,0);}
.m10_c00394{transform:matrix(0.173919,-0.001913,0.002750,0.249985,0,0);-ms-transform:matrix(0.173919,-0.001913,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173919,-0.001913,0.002750,0.249985,0,0);}
.mc5_c00394{transform:matrix(0.174184,-0.001916,0.002750,0.249985,0,0);-ms-transform:matrix(0.174184,-0.001916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174184,-0.001916,0.002750,0.249985,0,0);}
.m51_c00394{transform:matrix(0.174449,-0.001919,0.002750,0.249985,0,0);-ms-transform:matrix(0.174449,-0.001919,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174449,-0.001919,0.002750,0.249985,0,0);}
.m130_c00394{transform:matrix(0.174598,-0.002794,0.003999,0.249968,0,0);-ms-transform:matrix(0.174598,-0.002794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174598,-0.002794,0.003999,0.249968,0,0);}
.m4e_c00394{transform:matrix(0.174609,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174609,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174609,-0.001921,0.002750,0.249985,0,0);}
.m127_c00394{transform:matrix(0.174833,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174833,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174833,-0.002797,0.003999,0.249968,0,0);}
.m125_c00394{transform:matrix(0.174853,-0.002798,0.003999,0.249968,0,0);-ms-transform:matrix(0.174853,-0.002798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174853,-0.002798,0.003999,0.249968,0,0);}
.m28_c00394{transform:matrix(0.175439,-0.001930,0.002750,0.249985,0,0);-ms-transform:matrix(0.175439,-0.001930,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175439,-0.001930,0.002750,0.249985,0,0);}
.m3e_c00394{transform:matrix(0.175919,-0.001935,0.002750,0.249985,0,0);-ms-transform:matrix(0.175919,-0.001935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175919,-0.001935,0.002750,0.249985,0,0);}
.mfa_c00394{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);}
.m10c_c00394{transform:matrix(0.176052,-0.002817,0.003999,0.249968,0,0);-ms-transform:matrix(0.176052,-0.002817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176052,-0.002817,0.003999,0.249968,0,0);}
.mbb_c00394{transform:matrix(0.176214,-0.001938,0.002750,0.249985,0,0);-ms-transform:matrix(0.176214,-0.001938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176214,-0.001938,0.002750,0.249985,0,0);}
.m33_c00394{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);}
.maa_c00394{transform:matrix(0.176389,-0.001940,0.002750,0.249985,0,0);-ms-transform:matrix(0.176389,-0.001940,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176389,-0.001940,0.002750,0.249985,0,0);}
.m124_c00394{transform:matrix(0.176972,-0.002832,0.003999,0.249968,0,0);-ms-transform:matrix(0.176972,-0.002832,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176972,-0.002832,0.003999,0.249968,0,0);}
.m57_c00394{transform:matrix(0.176999,-0.001947,0.002750,0.249985,0,0);-ms-transform:matrix(0.176999,-0.001947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176999,-0.001947,0.002750,0.249985,0,0);}
.mbc_c00394{transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);-ms-transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177029,-0.001947,0.002750,0.249985,0,0);}
.m66_c00394{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);}
.mf7_c00394{transform:matrix(0.177219,-0.001949,0.002750,0.249985,0,0);-ms-transform:matrix(0.177219,-0.001949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177219,-0.001949,0.002750,0.249985,0,0);}
.m7a_c00394{transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);}
.m1_c00394{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);}
.m3f_c00394{transform:matrix(0.178309,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178309,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178309,-0.001961,0.002750,0.249985,0,0);}
.m132_c00394{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);}
.m6a_c00394{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);}
.m25_c00394{transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);}
.m11b_c00394{transform:matrix(0.179067,-0.002865,0.003999,0.249968,0,0);-ms-transform:matrix(0.179067,-0.002865,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179067,-0.002865,0.003999,0.249968,0,0);}
.m13c_c00394{transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);-ms-transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179252,-0.002868,0.003999,0.249968,0,0);}
.mf4_c00394{transform:matrix(0.179349,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179349,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179349,-0.001973,0.002750,0.249985,0,0);}
.m4f_c00394{transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);-ms-transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179374,-0.001973,0.002750,0.249985,0,0);}
.m6_c00394{transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);}
.m81_c00394{transform:matrix(0.179569,-0.001975,0.002750,0.249985,0,0);-ms-transform:matrix(0.179569,-0.001975,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179569,-0.001975,0.002750,0.249985,0,0);}
.mf1_c00394{transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);}
.m97_c00394{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);}
.m75_c00394{transform:matrix(0.180119,-0.001981,0.002750,0.249985,0,0);-ms-transform:matrix(0.180119,-0.001981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180119,-0.001981,0.002750,0.249985,0,0);}
.mc9_c00394{transform:matrix(0.180139,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180139,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180139,-0.001982,0.002750,0.249985,0,0);}
.m11f_c00394{transform:matrix(0.180227,-0.002884,0.003999,0.249968,0,0);-ms-transform:matrix(0.180227,-0.002884,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180227,-0.002884,0.003999,0.249968,0,0);}
.m8_c00394{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);}
.mb7_c00394{transform:matrix(0.180349,-0.001984,0.002750,0.249985,0,0);-ms-transform:matrix(0.180349,-0.001984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180349,-0.001984,0.002750,0.249985,0,0);}
.m14e_c00394{transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);-ms-transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);}
.mb3_c00394{transform:matrix(0.180949,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180949,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180949,-0.001990,0.002750,0.249985,0,0);}
.mab_c00394{transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);-ms-transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181019,-0.001991,0.002750,0.249985,0,0);}
.m8b_c00394{transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);-ms-transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181169,-0.001993,0.002750,0.249985,0,0);}
.m55_c00394{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);}
.md8_c00394{transform:matrix(0.181234,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181234,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181234,-0.001994,0.002750,0.249985,0,0);}
.m108_c00394{transform:matrix(0.181802,-0.002909,0.003999,0.249968,0,0);-ms-transform:matrix(0.181802,-0.002909,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181802,-0.002909,0.003999,0.249968,0,0);}
.m128_c00394{transform:matrix(0.181952,-0.002911,0.003999,0.249968,0,0);-ms-transform:matrix(0.181952,-0.002911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181952,-0.002911,0.003999,0.249968,0,0);}
.m117_c00394{transform:matrix(0.182017,-0.002912,0.003999,0.249968,0,0);-ms-transform:matrix(0.182017,-0.002912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182017,-0.002912,0.003999,0.249968,0,0);}
.m24_c00394{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);}
.m34_c00394{transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);-ms-transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);}
.ma2_c00394{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);}
.m26_c00394{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);}
.m39_c00394{transform:matrix(0.182569,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182569,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182569,-0.002008,0.002750,0.249985,0,0);}
.m95_c00394{transform:matrix(0.183229,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183229,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183229,-0.002016,0.002750,0.249985,0,0);}
.m6e_c00394{transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);}
.m12a_c00394{transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);-ms-transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183971,-0.002944,0.003999,0.249968,0,0);}
.m121_c00394{transform:matrix(0.184201,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184201,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184201,-0.002947,0.003999,0.249968,0,0);}
.mfc_c00394{transform:matrix(0.184389,-0.002028,0.002750,0.249985,0,0);-ms-transform:matrix(0.184389,-0.002028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184389,-0.002028,0.002750,0.249985,0,0);}
.ma5_c00394{transform:matrix(0.184559,-0.002030,0.002750,0.249985,0,0);-ms-transform:matrix(0.184559,-0.002030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184559,-0.002030,0.002750,0.249985,0,0);}
.m93_c00394{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);}
.m13b_c00394{transform:matrix(0.184916,-0.002959,0.003999,0.249968,0,0);-ms-transform:matrix(0.184916,-0.002959,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184916,-0.002959,0.003999,0.249968,0,0);}
.m11c_c00394{transform:matrix(0.185221,-0.002964,0.003999,0.249968,0,0);-ms-transform:matrix(0.185221,-0.002964,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185221,-0.002964,0.003999,0.249968,0,0);}
.m76_c00394{transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);-ms-transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185329,-0.002039,0.002750,0.249985,0,0);}
.ma4_c00394{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);}
.ma7_c00394{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);}
.m3_c00394{transform:matrix(0.186039,-0.002046,0.002750,0.249985,0,0);-ms-transform:matrix(0.186039,-0.002046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186039,-0.002046,0.002750,0.249985,0,0);}
.mb9_c00394{transform:matrix(0.186074,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186074,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186074,-0.002047,0.002750,0.249985,0,0);}
.m59_c00394{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);}
.ma6_c00394{transform:matrix(0.186874,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186874,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186874,-0.002056,0.002750,0.249985,0,0);}
.mda_c00394{transform:matrix(0.186904,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186904,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186904,-0.002056,0.002750,0.249985,0,0);}
.ma3_c00394{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);}
.mb2_c00394{transform:matrix(0.187199,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187199,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187199,-0.002059,0.002750,0.249985,0,0);}
.m6d_c00394{transform:matrix(0.187344,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187344,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187344,-0.002061,0.002750,0.249985,0,0);}
.m14_c00394{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);}
.m13_c00394{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);}
.mae_c00394{transform:matrix(0.187584,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187584,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187584,-0.002063,0.002750,0.249985,0,0);}
.m35_c00394{transform:matrix(0.187934,-0.002067,0.002750,0.249985,0,0);-ms-transform:matrix(0.187934,-0.002067,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187934,-0.002067,0.002750,0.249985,0,0);}
.m10f_c00394{transform:matrix(0.188356,-0.003014,0.003999,0.249968,0,0);-ms-transform:matrix(0.188356,-0.003014,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188356,-0.003014,0.003999,0.249968,0,0);}
.m120_c00394{transform:matrix(0.188521,-0.003016,0.003999,0.249968,0,0);-ms-transform:matrix(0.188521,-0.003016,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188521,-0.003016,0.003999,0.249968,0,0);}
.mf8_c00394{transform:matrix(0.188709,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188709,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188709,-0.002076,0.002750,0.249985,0,0);}
.m74_c00394{transform:matrix(0.188719,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188719,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188719,-0.002076,0.002750,0.249985,0,0);}
.mdf_c00394{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);}
.mb0_c00394{transform:matrix(0.189309,-0.002082,0.002750,0.249985,0,0);-ms-transform:matrix(0.189309,-0.002082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189309,-0.002082,0.002750,0.249985,0,0);}
.m62_c00394{transform:matrix(0.189354,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189354,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189354,-0.002083,0.002750,0.249985,0,0);}
.m148_c00394{transform:matrix(0.189384,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189384,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189384,-0.002841,0.003750,0.249972,0,0);}
.m94_c00394{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);}
.mef_c00394{transform:matrix(0.189589,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189589,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189589,-0.002085,0.002750,0.249985,0,0);}
.m2b_c00394{transform:matrix(0.190228,-0.002093,0.002750,0.249985,0,0);-ms-transform:matrix(0.190228,-0.002093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190228,-0.002093,0.002750,0.249985,0,0);}
.m12e_c00394{transform:matrix(0.190546,-0.003049,0.003999,0.249968,0,0);-ms-transform:matrix(0.190546,-0.003049,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190546,-0.003049,0.003999,0.249968,0,0);}
.m21_c00394{transform:matrix(0.190663,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190663,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190663,-0.002097,0.002750,0.249985,0,0);}
.m146_c00394{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);}
.me3_c00394{transform:matrix(0.191088,-0.002102,0.002750,0.249985,0,0);-ms-transform:matrix(0.191088,-0.002102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191088,-0.002102,0.002750,0.249985,0,0);}
.m8c_c00394{transform:matrix(0.191343,-0.002105,0.002750,0.249985,0,0);-ms-transform:matrix(0.191343,-0.002105,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191343,-0.002105,0.002750,0.249985,0,0);}
.m88_c00394{transform:matrix(0.191788,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191788,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191788,-0.002110,0.002750,0.249985,0,0);}
.m72_c00394{transform:matrix(0.192088,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192088,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192088,-0.002113,0.002750,0.249985,0,0);}
.m83_c00394{transform:matrix(0.192183,-0.002114,0.002750,0.249985,0,0);-ms-transform:matrix(0.192183,-0.002114,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192183,-0.002114,0.002750,0.249985,0,0);}
.m13e_c00394{transform:matrix(0.192410,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192410,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192410,-0.003079,0.003999,0.249968,0,0);}
.m12f_c00394{transform:matrix(0.192740,-0.003084,0.003999,0.249968,0,0);-ms-transform:matrix(0.192740,-0.003084,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192740,-0.003084,0.003999,0.249968,0,0);}
.mf9_c00394{transform:matrix(0.192838,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192838,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192838,-0.002121,0.002750,0.249985,0,0);}
.m4c_c00394{transform:matrix(0.192848,-0.002121,0.002750,0.249985,0,0);-ms-transform:matrix(0.192848,-0.002121,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192848,-0.002121,0.002750,0.249985,0,0);}
.mc6_c00394{transform:matrix(0.193938,-0.002133,0.002750,0.249985,0,0);-ms-transform:matrix(0.193938,-0.002133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193938,-0.002133,0.002750,0.249985,0,0);}
.m89_c00394{transform:matrix(0.194118,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194118,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194118,-0.002135,0.002750,0.249985,0,0);}
.mfe_c00394{transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);-ms-transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194128,-0.002135,0.002750,0.249985,0,0);}
.me_c00394{transform:matrix(0.194383,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194383,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194383,-0.002138,0.002750,0.249985,0,0);}
.m98_c00394{transform:matrix(0.195238,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195238,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195238,-0.002148,0.002750,0.249985,0,0);}
.m17_c00394{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);}
.m6c_c00394{transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195548,-0.002151,0.002750,0.249985,0,0);}
.m134_c00394{transform:matrix(0.195595,-0.003130,0.003999,0.249968,0,0);-ms-transform:matrix(0.195595,-0.003130,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195595,-0.003130,0.003999,0.249968,0,0);}
.m5c_c00394{transform:matrix(0.195998,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.195998,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195998,-0.002156,0.002750,0.249985,0,0);}
.mbd_c00394{transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);-ms-transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);}
.m12c_c00394{transform:matrix(0.196335,-0.003141,0.003999,0.249968,0,0);-ms-transform:matrix(0.196335,-0.003141,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196335,-0.003141,0.003999,0.249968,0,0);}
.mce_c00394{transform:matrix(0.196338,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196338,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196338,-0.002160,0.002750,0.249985,0,0);}
.m7c_c00394{transform:matrix(0.196603,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196603,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196603,-0.002163,0.002750,0.249985,0,0);}
.m2c_c00394{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);}
.mb6_c00394{transform:matrix(0.197233,-0.002170,0.002750,0.249985,0,0);-ms-transform:matrix(0.197233,-0.002170,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197233,-0.002170,0.002750,0.249985,0,0);}
.m114_c00394{transform:matrix(0.197330,-0.003157,0.003999,0.249968,0,0);-ms-transform:matrix(0.197330,-0.003157,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197330,-0.003157,0.003999,0.249968,0,0);}
.m67_c00394{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);}
.m14d_c00394{transform:matrix(0.197488,-0.002962,0.003750,0.249972,0,0);-ms-transform:matrix(0.197488,-0.002962,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197488,-0.002962,0.003750,0.249972,0,0);}
.m41_c00394{transform:matrix(0.197633,-0.002174,0.002750,0.249985,0,0);-ms-transform:matrix(0.197633,-0.002174,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197633,-0.002174,0.002750,0.249985,0,0);}
.m107_c00394{transform:matrix(0.197990,-0.003168,0.003999,0.249968,0,0);-ms-transform:matrix(0.197990,-0.003168,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197990,-0.003168,0.003999,0.249968,0,0);}
.m14c_c00394{transform:matrix(0.198263,-0.002974,0.003750,0.249972,0,0);-ms-transform:matrix(0.198263,-0.002974,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198263,-0.002974,0.003750,0.249972,0,0);}
.mf_c00394{transform:matrix(0.198378,-0.002182,0.002750,0.249985,0,0);-ms-transform:matrix(0.198378,-0.002182,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198378,-0.002182,0.002750,0.249985,0,0);}
.mbf_c00394{transform:matrix(0.198573,-0.002184,0.002750,0.249985,0,0);-ms-transform:matrix(0.198573,-0.002184,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198573,-0.002184,0.002750,0.249985,0,0);}
.m9c_c00394{transform:matrix(0.198748,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198748,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198748,-0.002186,0.002750,0.249985,0,0);}
.mee_c00394{transform:matrix(0.198928,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198928,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198928,-0.002188,0.002750,0.249985,0,0);}
.m61_c00394{transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);}
.m150_c00394{transform:matrix(0.198988,-0.002985,0.003750,0.249972,0,0);-ms-transform:matrix(0.198988,-0.002985,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198988,-0.002985,0.003750,0.249972,0,0);}
.m102_c00394{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);}
.mcf_c00394{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);}
.m8a_c00394{transform:matrix(0.199398,-0.002193,0.002750,0.249985,0,0);-ms-transform:matrix(0.199398,-0.002193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199398,-0.002193,0.002750,0.249985,0,0);}
.m5e_c00394{transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);-ms-transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199508,-0.002195,0.002750,0.249985,0,0);}
.m2e_c00394{transform:matrix(0.199913,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199913,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199913,-0.002199,0.002750,0.249985,0,0);}
.m8d_c00394{transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199948,-0.002199,0.002750,0.249985,0,0);}
.m113_c00394{transform:matrix(0.200474,-0.003208,0.003999,0.249968,0,0);-ms-transform:matrix(0.200474,-0.003208,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200474,-0.003208,0.003999,0.249968,0,0);}
.m2d_c00394{transform:matrix(0.200608,-0.002207,0.002750,0.249985,0,0);-ms-transform:matrix(0.200608,-0.002207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200608,-0.002207,0.002750,0.249985,0,0);}
.m45_c00394{transform:matrix(0.200678,-0.002207,0.002750,0.249985,0,0);-ms-transform:matrix(0.200678,-0.002207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200678,-0.002207,0.002750,0.249985,0,0);}
.mcc_c00394{transform:matrix(0.200848,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200848,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200848,-0.002209,0.002750,0.249985,0,0);}
.ma_c00394{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m4b_c00394{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);}
.m87_c00394{transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);-ms-transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201553,-0.002217,0.002750,0.249985,0,0);}
.m5d_c00394{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);}
.m7b_c00394{transform:matrix(0.203298,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203298,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203298,-0.002236,0.002750,0.249985,0,0);}
.m54_c00394{transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203373,-0.002237,0.002750,0.249985,0,0);}
.m36_c00394{transform:matrix(0.203408,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203408,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203408,-0.002237,0.002750,0.249985,0,0);}
.m145_c00394{transform:matrix(0.203542,-0.003053,0.003750,0.249972,0,0);-ms-transform:matrix(0.203542,-0.003053,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203542,-0.003053,0.003750,0.249972,0,0);}
.md0_c00394{transform:matrix(0.203568,-0.002239,0.002750,0.249985,0,0);-ms-transform:matrix(0.203568,-0.002239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203568,-0.002239,0.002750,0.249985,0,0);}
.m49_c00394{transform:matrix(0.204248,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204248,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204248,-0.002247,0.002750,0.249985,0,0);}
.m144_c00394{transform:matrix(0.204527,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204527,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204527,-0.003068,0.003750,0.249972,0,0);}
.ma8_c00394{transform:matrix(0.204683,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204683,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204683,-0.002252,0.002750,0.249985,0,0);}
.mb1_c00394{transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204698,-0.002252,0.002750,0.249985,0,0);}
.m69_c00394{transform:matrix(0.204893,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204893,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204893,-0.002254,0.002750,0.249985,0,0);}
.m131_c00394{transform:matrix(0.204914,-0.003279,0.003999,0.249968,0,0);-ms-transform:matrix(0.204914,-0.003279,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204914,-0.003279,0.003999,0.249968,0,0);}
.m10a_c00394{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);}
.m18_c00394{transform:matrix(0.205118,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205118,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205118,-0.002256,0.002750,0.249985,0,0);}
.m126_c00394{transform:matrix(0.205304,-0.003285,0.003999,0.249968,0,0);-ms-transform:matrix(0.205304,-0.003285,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205304,-0.003285,0.003999,0.249968,0,0);}
.mf5_c00394{transform:matrix(0.205368,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205368,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205368,-0.002259,0.002750,0.249985,0,0);}
.m40_c00394{transform:matrix(0.205568,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205568,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205568,-0.002261,0.002750,0.249985,0,0);}
.m13d_c00394{transform:matrix(0.205584,-0.003289,0.003999,0.249968,0,0);-ms-transform:matrix(0.205584,-0.003289,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205584,-0.003289,0.003999,0.249968,0,0);}
.m53_c00394{transform:matrix(0.205858,-0.002264,0.002750,0.249985,0,0);-ms-transform:matrix(0.205858,-0.002264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205858,-0.002264,0.002750,0.249985,0,0);}
.m151_c00394{transform:matrix(0.206187,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206187,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206187,-0.003093,0.003750,0.249972,0,0);}
.m68_c00394{transform:matrix(0.206293,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206293,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206293,-0.002269,0.002750,0.249985,0,0);}
.m64_c00394{transform:matrix(0.207087,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207087,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207087,-0.002278,0.002750,0.249985,0,0);}
.m140_c00394{transform:matrix(0.207183,-0.003315,0.003999,0.249968,0,0);-ms-transform:matrix(0.207183,-0.003315,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207183,-0.003315,0.003999,0.249968,0,0);}
.m44_c00394{transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);}
.m11a_c00394{transform:matrix(0.208278,-0.003332,0.003999,0.249968,0,0);-ms-transform:matrix(0.208278,-0.003332,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208278,-0.003332,0.003999,0.249968,0,0);}
.m60_c00394{transform:matrix(0.208467,-0.002293,0.002750,0.249985,0,0);-ms-transform:matrix(0.208467,-0.002293,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208467,-0.002293,0.002750,0.249985,0,0);}
.m9f_c00394{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);}
.m71_c00394{transform:matrix(0.209092,-0.002300,0.002750,0.249985,0,0);-ms-transform:matrix(0.209092,-0.002300,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209092,-0.002300,0.002750,0.249985,0,0);}
.m109_c00394{transform:matrix(0.209213,-0.003347,0.003999,0.249968,0,0);-ms-transform:matrix(0.209213,-0.003347,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209213,-0.003347,0.003999,0.249968,0,0);}
.m47_c00394{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);}
.maf_c00394{transform:matrix(0.209727,-0.002307,0.002750,0.249985,0,0);-ms-transform:matrix(0.209727,-0.002307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209727,-0.002307,0.002750,0.249985,0,0);}
.me9_c00394{transform:matrix(0.209797,-0.002308,0.002750,0.249985,0,0);-ms-transform:matrix(0.209797,-0.002308,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209797,-0.002308,0.002750,0.249985,0,0);}
.m100_c00394{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);}
.m9a_c00394{transform:matrix(0.211017,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.211017,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211017,-0.002321,0.002750,0.249985,0,0);}
.mdc_c00394{transform:matrix(0.211467,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211467,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211467,-0.002326,0.002750,0.249985,0,0);}
.m48_c00394{transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);-ms-transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211662,-0.002328,0.002750,0.249985,0,0);}
.md3_c00394{transform:matrix(0.212297,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212297,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212297,-0.002335,0.002750,0.249985,0,0);}
.m14f_c00394{transform:matrix(0.212786,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212786,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212786,-0.003192,0.003750,0.249972,0,0);}
.m122_c00394{transform:matrix(0.212908,-0.003407,0.003999,0.249968,0,0);-ms-transform:matrix(0.212908,-0.003407,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212908,-0.003407,0.003999,0.249968,0,0);}
.m6b_c00394{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);}
.m136_c00394{transform:matrix(0.213438,-0.003415,0.003999,0.249968,0,0);-ms-transform:matrix(0.213438,-0.003415,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213438,-0.003415,0.003999,0.249968,0,0);}
.mb_c00394{transform:matrix(0.213892,-0.002353,0.002750,0.249985,0,0);-ms-transform:matrix(0.213892,-0.002353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213892,-0.002353,0.002750,0.249985,0,0);}
.mea_c00394{transform:matrix(0.213967,-0.002354,0.002750,0.249985,0,0);-ms-transform:matrix(0.213967,-0.002354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213967,-0.002354,0.002750,0.249985,0,0);}
.ma1_c00394{transform:matrix(0.214292,-0.002357,0.002750,0.249985,0,0);-ms-transform:matrix(0.214292,-0.002357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214292,-0.002357,0.002750,0.249985,0,0);}
.m101_c00394{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);}
.mb4_c00394{transform:matrix(0.215477,-0.002370,0.002750,0.249985,0,0);-ms-transform:matrix(0.215477,-0.002370,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215477,-0.002370,0.002750,0.249985,0,0);}
.m63_c00394{transform:matrix(0.216047,-0.002377,0.002750,0.249985,0,0);-ms-transform:matrix(0.216047,-0.002377,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216047,-0.002377,0.002750,0.249985,0,0);}
.m3c_c00394{transform:matrix(0.216167,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216167,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216167,-0.002378,0.002750,0.249985,0,0);}
.mcb_c00394{transform:matrix(0.216267,-0.002379,0.002750,0.249985,0,0);-ms-transform:matrix(0.216267,-0.002379,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216267,-0.002379,0.002750,0.249985,0,0);}
.m11d_c00394{transform:matrix(0.216817,-0.003469,0.003999,0.249968,0,0);-ms-transform:matrix(0.216817,-0.003469,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216817,-0.003469,0.003999,0.249968,0,0);}
.me6_c00394{transform:matrix(0.218607,-0.002405,0.002750,0.249985,0,0);-ms-transform:matrix(0.218607,-0.002405,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218607,-0.002405,0.002750,0.249985,0,0);}
.m10d_c00394{transform:matrix(0.219137,-0.003506,0.003999,0.249968,0,0);-ms-transform:matrix(0.219137,-0.003506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219137,-0.003506,0.003999,0.249968,0,0);}
.md4_c00394{transform:matrix(0.219252,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219252,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219252,-0.002412,0.002750,0.249985,0,0);}
.m91_c00394{transform:matrix(0.220112,-0.002421,0.002750,0.249985,0,0);-ms-transform:matrix(0.220112,-0.002421,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220112,-0.002421,0.002750,0.249985,0,0);}
.m143_c00394{transform:matrix(0.220447,-0.003527,0.003999,0.249968,0,0);-ms-transform:matrix(0.220447,-0.003527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220447,-0.003527,0.003999,0.249968,0,0);}
.md6_c00394{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);}
.m142_c00394{transform:matrix(0.223106,-0.003570,0.003999,0.249968,0,0);-ms-transform:matrix(0.223106,-0.003570,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223106,-0.003570,0.003999,0.249968,0,0);}
.mc1_c00394{transform:matrix(0.224701,-0.002472,0.002750,0.249985,0,0);-ms-transform:matrix(0.224701,-0.002472,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224701,-0.002472,0.002750,0.249985,0,0);}
.m3d_c00394{transform:matrix(0.225546,-0.002481,0.002750,0.249985,0,0);-ms-transform:matrix(0.225546,-0.002481,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225546,-0.002481,0.002750,0.249985,0,0);}
.mfd_c00394{transform:matrix(0.226546,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226546,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226546,-0.002492,0.002750,0.249985,0,0);}
.m137_c00394{transform:matrix(0.227386,-0.003638,0.003999,0.249968,0,0);-ms-transform:matrix(0.227386,-0.003638,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227386,-0.003638,0.003999,0.249968,0,0);}
.m42_c00394{transform:matrix(0.228021,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.228021,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228021,-0.002508,0.002750,0.249985,0,0);}
.m133_c00394{transform:matrix(0.228886,-0.003662,0.003999,0.249968,0,0);-ms-transform:matrix(0.228886,-0.003662,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228886,-0.003662,0.003999,0.249968,0,0);}
.mc3_c00394{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);}
.m3b_c00394{transform:matrix(0.229151,-0.002521,0.002750,0.249985,0,0);-ms-transform:matrix(0.229151,-0.002521,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229151,-0.002521,0.002750,0.249985,0,0);}
.m105_c00394{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);}
.m10b_c00394{transform:matrix(0.229736,-0.003676,0.003999,0.249968,0,0);-ms-transform:matrix(0.229736,-0.003676,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229736,-0.003676,0.003999,0.249968,0,0);}
.m139_c00394{transform:matrix(0.231720,-0.003708,0.003999,0.249968,0,0);-ms-transform:matrix(0.231720,-0.003708,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231720,-0.003708,0.003999,0.249968,0,0);}
.mc4_c00394{transform:matrix(0.231976,-0.002552,0.002750,0.249985,0,0);-ms-transform:matrix(0.231976,-0.002552,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231976,-0.002552,0.002750,0.249985,0,0);}
.m38_c00394{transform:matrix(0.233821,-0.002572,0.002750,0.249985,0,0);-ms-transform:matrix(0.233821,-0.002572,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233821,-0.002572,0.002750,0.249985,0,0);}
.mfb_c00394{transform:matrix(0.234636,-0.002581,0.002750,0.249985,0,0);-ms-transform:matrix(0.234636,-0.002581,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234636,-0.002581,0.002750,0.249985,0,0);}
.m141_c00394{transform:matrix(0.238534,-0.003817,0.003999,0.249968,0,0);-ms-transform:matrix(0.238534,-0.003817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238534,-0.003817,0.003999,0.249968,0,0);}
.ma0_c00394{transform:matrix(0.238666,-0.002625,0.002750,0.249985,0,0);-ms-transform:matrix(0.238666,-0.002625,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238666,-0.002625,0.002750,0.249985,0,0);}
.md5_c00394{transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);-ms-transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239915,-0.002639,0.002750,0.249985,0,0);}
.m135_c00394{transform:matrix(0.240429,-0.003847,0.003999,0.249968,0,0);-ms-transform:matrix(0.240429,-0.003847,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240429,-0.003847,0.003999,0.249968,0,0);}
.m14b_c00394{transform:matrix(0.240458,-0.003607,0.003750,0.249972,0,0);-ms-transform:matrix(0.240458,-0.003607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240458,-0.003607,0.003750,0.249972,0,0);}
.m96_c00394{transform:matrix(0.241075,-0.002652,0.002750,0.249985,0,0);-ms-transform:matrix(0.241075,-0.002652,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241075,-0.002652,0.002750,0.249985,0,0);}
.m147_c00394{transform:matrix(0.241958,-0.003629,0.003750,0.249972,0,0);-ms-transform:matrix(0.241958,-0.003629,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241958,-0.003629,0.003750,0.249972,0,0);}
.mec_c00394{transform:matrix(0.241980,-0.002662,0.002750,0.249985,0,0);-ms-transform:matrix(0.241980,-0.002662,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241980,-0.002662,0.002750,0.249985,0,0);}
.me8_c00394{transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);-ms-transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242120,-0.002663,0.002750,0.249985,0,0);}
.m4a_c00394{transform:matrix(0.242245,-0.002665,0.002750,0.249985,0,0);-ms-transform:matrix(0.242245,-0.002665,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242245,-0.002665,0.002750,0.249985,0,0);}
.mbe_c00394{transform:matrix(0.243980,-0.002684,0.002750,0.249985,0,0);-ms-transform:matrix(0.243980,-0.002684,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243980,-0.002684,0.002750,0.249985,0,0);}
.m13f_c00394{transform:matrix(0.244709,-0.003915,0.003999,0.249968,0,0);-ms-transform:matrix(0.244709,-0.003915,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244709,-0.003915,0.003999,0.249968,0,0);}
.m3a_c00394{transform:matrix(0.252240,-0.002775,0.002750,0.249985,0,0);-ms-transform:matrix(0.252240,-0.002775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252240,-0.002775,0.002750,0.249985,0,0);}
.m12d_c00394{transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);-ms-transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);}
.me7_c00394{transform:matrix(0.255655,-0.002812,0.002750,0.249985,0,0);-ms-transform:matrix(0.255655,-0.002812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255655,-0.002812,0.002750,0.249985,0,0);}
.m10e_c00394{transform:matrix(0.259987,-0.004160,0.003999,0.249968,0,0);-ms-transform:matrix(0.259987,-0.004160,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259987,-0.004160,0.003999,0.249968,0,0);}
.m110_c00394{transform:matrix(0.260902,-0.004174,0.003999,0.249968,0,0);-ms-transform:matrix(0.260902,-0.004174,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260902,-0.004174,0.003999,0.249968,0,0);}
.mdd_c00394{transform:matrix(0.262879,-0.002892,0.002750,0.249985,0,0);-ms-transform:matrix(0.262879,-0.002892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262879,-0.002892,0.002750,0.249985,0,0);}
.m106_c00394{transform:matrix(0.265916,-0.004255,0.003999,0.249968,0,0);-ms-transform:matrix(0.265916,-0.004255,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265916,-0.004255,0.003999,0.249968,0,0);}
.m46_c00394{transform:matrix(0.267134,-0.002938,0.002750,0.249985,0,0);-ms-transform:matrix(0.267134,-0.002938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267134,-0.002938,0.002750,0.249985,0,0);}
.m138_c00394{transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);-ms-transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270455,-0.004327,0.003999,0.249968,0,0);}
.meb_c00394{transform:matrix(0.291552,-0.003207,0.002750,0.249985,0,0);-ms-transform:matrix(0.291552,-0.003207,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291552,-0.003207,0.002750,0.249985,0,0);}
.m1a_c00394{transform:matrix(0.301297,-0.003314,0.002750,0.249985,0,0);-ms-transform:matrix(0.301297,-0.003314,0.002750,0.249985,0,0);-webkit-transform:matrix(0.301297,-0.003314,0.002750,0.249985,0,0);}
.m82_c00394{transform:matrix(0.303857,-0.003342,0.002750,0.249985,0,0);-ms-transform:matrix(0.303857,-0.003342,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303857,-0.003342,0.002750,0.249985,0,0);}
.mff_c00394{transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.319161,-0.003511,0.002750,0.249985,0,0);-ms-transform:matrix(0.319161,-0.003511,0.002750,0.249985,0,0);-webkit-transform:matrix(0.319161,-0.003511,0.002750,0.249985,0,0);}
.mba_c00394{transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);-ms-transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);-webkit-transform:matrix(0.328365,-0.003612,0.002750,0.249985,0,0);}
.m7d_c00394{transform:matrix(0.331170,-0.003643,0.002750,0.249985,0,0);-ms-transform:matrix(0.331170,-0.003643,0.002750,0.249985,0,0);-webkit-transform:matrix(0.331170,-0.003643,0.002750,0.249985,0,0);}
.md2_c00394{transform:matrix(0.332310,-0.003655,0.002750,0.249985,0,0);-ms-transform:matrix(0.332310,-0.003655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.332310,-0.003655,0.002750,0.249985,0,0);}
.md1_c00394{transform:matrix(0.350834,-0.003859,0.002750,0.249985,0,0);-ms-transform:matrix(0.350834,-0.003859,0.002750,0.249985,0,0);-webkit-transform:matrix(0.350834,-0.003859,0.002750,0.249985,0,0);}
.m103_c00394{transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362345,0.000000,0.000000,0.250000,0,0);}
.m14a_c00394{transform:matrix(0.365054,-0.005476,0.003750,0.249972,0,0);-ms-transform:matrix(0.365054,-0.005476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.365054,-0.005476,0.003750,0.249972,0,0);}
.m118_c00394{transform:matrix(0.365158,-0.005843,0.003999,0.249968,0,0);-ms-transform:matrix(0.365158,-0.005843,0.003999,0.249968,0,0);-webkit-transform:matrix(0.365158,-0.005843,0.003999,0.249968,0,0);}
.m129_c00394{transform:matrix(0.369128,-0.005906,0.003999,0.249968,0,0);-ms-transform:matrix(0.369128,-0.005906,0.003999,0.249968,0,0);-webkit-transform:matrix(0.369128,-0.005906,0.003999,0.249968,0,0);}
.mdb_c00394{transform:matrix(0.371623,-0.004088,0.002750,0.249985,0,0);-ms-transform:matrix(0.371623,-0.004088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.371623,-0.004088,0.002750,0.249985,0,0);}
.mcd_c00394{transform:matrix(0.386372,-0.004250,0.002750,0.249985,0,0);-ms-transform:matrix(0.386372,-0.004250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.386372,-0.004250,0.002750,0.249985,0,0);}
.m13a_c00394{transform:matrix(0.387475,-0.006200,0.003999,0.249968,0,0);-ms-transform:matrix(0.387475,-0.006200,0.003999,0.249968,0,0);-webkit-transform:matrix(0.387475,-0.006200,0.003999,0.249968,0,0);}
.mf3_c00394{transform:matrix(0.399616,-0.004396,0.002750,0.249985,0,0);-ms-transform:matrix(0.399616,-0.004396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.399616,-0.004396,0.002750,0.249985,0,0);}
.m37_c00394{transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);-ms-transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);}
.m2_c00394{transform:matrix(0.430655,-0.006890,0.003999,0.249968,0,0);-ms-transform:matrix(0.430655,-0.006890,0.003999,0.249968,0,0);-webkit-transform:matrix(0.430655,-0.006890,0.003999,0.249968,0,0);}
.m0_c00394{transform:matrix(0.430745,-0.006892,0.003999,0.249968,0,0);-ms-transform:matrix(0.430745,-0.006892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.430745,-0.006892,0.003999,0.249968,0,0);}
.m84_c00394{transform:matrix(0.521818,-0.005740,0.002750,0.249985,0,0);-ms-transform:matrix(0.521818,-0.005740,0.002750,0.249985,0,0);-webkit-transform:matrix(0.521818,-0.005740,0.002750,0.249985,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;}
.fs0_c00394{font-size:22.052822px;}
.fs12_c00394{font-size:46.205913px;}
.fs13_c00394{font-size:49.355552px;}
.fsf_c00394{font-size:50.406451px;}
.fse_c00394{font-size:52.500000px;}
.fs11_c00394{font-size:52.506720px;}
.fs10_c00394{font-size:55.657123px;}
.fsb_c00394{font-size:58.803557px;}
.fs4_c00394{font-size:63.003811px;}
.fs7_c00394{font-size:64.053875px;}
.fsc_c00394{font-size:65.103938px;}
.fs5_c00394{font-size:67.204065px;}
.fs3_c00394{font-size:68.254129px;}
.fs6_c00394{font-size:69.304193px;}
.fs9_c00394{font-size:70.354256px;}
.fsa_c00394{font-size:71.404320px;}
.fs1_c00394{font-size:72.454383px;}
.fs2_c00394{font-size:73.504447px;}
.fs8_c00394{font-size:76.654637px;}
.fsd_c00394{font-size:96.600000px;}
.y0_c00394{bottom:0.000000px;}
.y146_c00394{bottom:147.421500px;}
.y147_c00394{bottom:147.652508px;}
.y148_c00394{bottom:148.462665px;}
.y149_c00394{bottom:149.212680px;}
.y14a_c00394{bottom:149.527635px;}
.y14b_c00394{bottom:150.699997px;}
.y14c_c00394{bottom:150.897593px;}
.y14d_c00394{bottom:151.119285px;}
.y14e_c00394{bottom:151.767758px;}
.y14f_c00394{bottom:152.322540px;}
.y150_c00394{bottom:152.626245px;}
.y151_c00394{bottom:152.816685px;}
.y152_c00394{bottom:153.330923px;}
.y153_c00394{bottom:153.574080px;}
.y136_c00394{bottom:165.509196px;}
.y137_c00394{bottom:165.747108px;}
.y138_c00394{bottom:166.598100px;}
.y139_c00394{bottom:167.422428px;}
.y13a_c00394{bottom:167.802684px;}
.y13b_c00394{bottom:168.455820px;}
.y13c_c00394{bottom:169.225092px;}
.y13d_c00394{bottom:169.462380px;}
.y13e_c00394{bottom:169.932444px;}
.y13f_c00394{bottom:170.092404px;}
.y140_c00394{bottom:170.361036px;}
.y141_c00394{bottom:170.620260px;}
.y142_c00394{bottom:171.471612px;}
.y143_c00394{bottom:171.886284px;}
.y144_c00394{bottom:172.537956px;}
.y145_c00394{bottom:172.836828px;}
.y123_c00394{bottom:183.871500px;}
.y124_c00394{bottom:184.295508px;}
.y125_c00394{bottom:185.149092px;}
.y126_c00394{bottom:185.228772px;}
.y127_c00394{bottom:185.437140px;}
.y128_c00394{bottom:185.963076px;}
.y129_c00394{bottom:186.489564px;}
.y12a_c00394{bottom:186.745308px;}
.y12b_c00394{bottom:187.597140px;}
.y12c_c00394{bottom:187.824420px;}
.y12d_c00394{bottom:188.097372px;}
.y12e_c00394{bottom:188.356884px;}
.y12f_c00394{bottom:188.875020px;}
.y130_c00394{bottom:189.117324px;}
.y131_c00394{bottom:189.747972px;}
.y132_c00394{bottom:190.011588px;}
.y133_c00394{bottom:190.253964px;}
.y134_c00394{bottom:190.893036px;}
.y135_c00394{bottom:191.221596px;}
.y113_c00394{bottom:200.070816px;}
.y114_c00394{bottom:200.614140px;}
.y115_c00394{bottom:201.209904px;}
.y116_c00394{bottom:201.865452px;}
.y117_c00394{bottom:202.656096px;}
.y118_c00394{bottom:202.902744px;}
.y119_c00394{bottom:203.718408px;}
.y11a_c00394{bottom:204.478560px;}
.y11b_c00394{bottom:204.764688px;}
.y11c_c00394{bottom:205.350480px;}
.y11d_c00394{bottom:205.995624px;}
.y11e_c00394{bottom:206.457924px;}
.y11f_c00394{bottom:206.854404px;}
.y120_c00394{bottom:207.583896px;}
.y121_c00394{bottom:207.999024px;}
.y122_c00394{bottom:208.430076px;}
.y106_c00394{bottom:219.511500px;}
.y107_c00394{bottom:219.832044px;}
.y108_c00394{bottom:220.713204px;}
.y109_c00394{bottom:221.452044px;}
.y10a_c00394{bottom:221.741508px;}
.y10b_c00394{bottom:222.000948px;}
.y10c_c00394{bottom:222.656748px;}
.y10d_c00394{bottom:223.690068px;}
.y10e_c00394{bottom:224.225820px;}
.y10f_c00394{bottom:224.562876px;}
.y110_c00394{bottom:225.443772px;}
.y111_c00394{bottom:226.563276px;}
.y112_c00394{bottom:226.913436px;}
.y105_c00394{bottom:296.584500px;}
.y104_c00394{bottom:313.614000px;}
.y103_c00394{bottom:351.523500px;}
.yfc_c00394{bottom:378.251141px;}
.yfd_c00394{bottom:379.380242px;}
.yfe_c00394{bottom:379.932939px;}
.yff_c00394{bottom:381.130830px;}
.y100_c00394{bottom:381.440882px;}
.y101_c00394{bottom:382.982312px;}
.y102_c00394{bottom:383.605895px;}
.yf1_c00394{bottom:401.469266px;}
.yf2_c00394{bottom:402.512507px;}
.yf3_c00394{bottom:402.758600px;}
.yf4_c00394{bottom:403.179777px;}
.yf5_c00394{bottom:403.642959px;}
.yf6_c00394{bottom:403.978029px;}
.yf7_c00394{bottom:404.574108px;}
.yf8_c00394{bottom:404.898471px;}
.yf9_c00394{bottom:405.617019px;}
.yfa_c00394{bottom:406.007030px;}
.yfb_c00394{bottom:406.253733px;}
.ye5_c00394{bottom:423.880683px;}
.ye6_c00394{bottom:424.402950px;}
.ye7_c00394{bottom:425.011027px;}
.ye8_c00394{bottom:425.302752px;}
.ye9_c00394{bottom:425.797224px;}
.yea_c00394{bottom:426.445716px;}
.yeb_c00394{bottom:427.766453px;}
.yec_c00394{bottom:428.049105px;}
.yed_c00394{bottom:428.430566px;}
.yee_c00394{bottom:429.066389px;}
.yef_c00394{bottom:429.565331px;}
.yf0_c00394{bottom:430.752107px;}
.yda_c00394{bottom:446.833476px;}
.ydb_c00394{bottom:447.795723px;}
.ydc_c00394{bottom:448.017399px;}
.ydd_c00394{bottom:448.781809px;}
.yde_c00394{bottom:449.006983px;}
.ydf_c00394{bottom:450.069931px;}
.ye0_c00394{bottom:450.364659px;}
.ye1_c00394{bottom:451.343487px;}
.ye2_c00394{bottom:451.581315px;}
.ye3_c00394{bottom:452.391819px;}
.ye4_c00394{bottom:452.861997px;}
.yce_c00394{bottom:469.785927px;}
.ycf_c00394{bottom:470.105944px;}
.yd0_c00394{bottom:470.604267px;}
.yd1_c00394{bottom:470.933655px;}
.yd2_c00394{bottom:471.414705px;}
.yd3_c00394{bottom:471.688299px;}
.yd4_c00394{bottom:472.341169px;}
.yd5_c00394{bottom:472.800475px;}
.yd6_c00394{bottom:473.523790px;}
.yd7_c00394{bottom:473.777191px;}
.yd8_c00394{bottom:474.623049px;}
.yd9_c00394{bottom:475.766917px;}
.ybf_c00394{bottom:492.196751px;}
.yc0_c00394{bottom:492.674810px;}
.yc1_c00394{bottom:493.574249px;}
.yc2_c00394{bottom:494.419896px;}
.yc3_c00394{bottom:494.677937px;}
.yc4_c00394{bottom:494.833622px;}
.yc5_c00394{bottom:495.334775px;}
.yc6_c00394{bottom:495.858197px;}
.yc7_c00394{bottom:496.514738px;}
.yc8_c00394{bottom:496.839486px;}
.yc9_c00394{bottom:497.401771px;}
.yca_c00394{bottom:497.823911px;}
.ycb_c00394{bottom:498.111214px;}
.ycc_c00394{bottom:498.544554px;}
.ycd_c00394{bottom:499.050491px;}
.yb2_c00394{bottom:515.416646px;}
.yb3_c00394{bottom:515.984957px;}
.yb4_c00394{bottom:516.136530px;}
.yb5_c00394{bottom:516.800946px;}
.yb6_c00394{bottom:516.988223px;}
.yb7_c00394{bottom:517.243836px;}
.yb8_c00394{bottom:517.957187px;}
.yb9_c00394{bottom:518.929335px;}
.yba_c00394{bottom:519.077939px;}
.ybb_c00394{bottom:519.341174px;}
.ybc_c00394{bottom:520.050170px;}
.ybd_c00394{bottom:520.291875px;}
.ybe_c00394{bottom:520.717556px;}
.ya2_c00394{bottom:538.370366px;}
.ya3_c00394{bottom:538.549211px;}
.ya4_c00394{bottom:539.111232px;}
.ya5_c00394{bottom:539.532760px;}
.ya6_c00394{bottom:540.050739px;}
.ya7_c00394{bottom:540.553195px;}
.ya8_c00394{bottom:541.007468px;}
.ya9_c00394{bottom:541.485823px;}
.yaa_c00394{bottom:541.784675px;}
.yab_c00394{bottom:542.279147px;}
.yac_c00394{bottom:542.528594px;}
.yad_c00394{bottom:543.075934px;}
.yae_c00394{bottom:543.387009px;}
.yaf_c00394{bottom:544.055641px;}
.yb0_c00394{bottom:544.363928px;}
.yb1_c00394{bottom:544.837516px;}
.y95_c00394{bottom:561.321549px;}
.y96_c00394{bottom:561.584386px;}
.y97_c00394{bottom:562.136638px;}
.y98_c00394{bottom:562.817654px;}
.y99_c00394{bottom:563.186702px;}
.y9a_c00394{bottom:564.067106px;}
.y9b_c00394{bottom:564.392320px;}
.y9c_c00394{bottom:564.877609px;}
.y9d_c00394{bottom:565.260153px;}
.y9e_c00394{bottom:565.824812px;}
.y9f_c00394{bottom:566.315611px;}
.ya0_c00394{bottom:566.646352px;}
.ya1_c00394{bottom:567.362062px;}
.y8a_c00394{bottom:584.271533px;}
.y8b_c00394{bottom:585.381053px;}
.y8c_c00394{bottom:586.327644px;}
.y8d_c00394{bottom:586.707531px;}
.y8e_c00394{bottom:587.262489px;}
.y8f_c00394{bottom:587.634359px;}
.y90_c00394{bottom:588.596490px;}
.y91_c00394{bottom:588.808218px;}
.y92_c00394{bottom:589.474436px;}
.y93_c00394{bottom:590.007683px;}
.y94_c00394{bottom:590.183941px;}
.y7b_c00394{bottom:607.037096px;}
.y7c_c00394{bottom:607.237686px;}
.y7d_c00394{bottom:607.583844px;}
.y7e_c00394{bottom:608.228973px;}
.y7f_c00394{bottom:608.514201px;}
.y80_c00394{bottom:608.791775px;}
.y81_c00394{bottom:609.057864px;}
.y82_c00394{bottom:609.256128px;}
.y83_c00394{bottom:609.922970px;}
.y84_c00394{bottom:610.195181px;}
.y85_c00394{bottom:610.516623px;}
.y86_c00394{bottom:611.032469px;}
.y87_c00394{bottom:611.441024px;}
.y88_c00394{bottom:612.040073px;}
.y89_c00394{bottom:612.474019px;}
.y6d_c00394{bottom:629.904279px;}
.y6e_c00394{bottom:630.045894px;}
.y6f_c00394{bottom:630.457856px;}
.y70_c00394{bottom:631.564595px;}
.y71_c00394{bottom:631.835568px;}
.y72_c00394{bottom:632.285865px;}
.y73_c00394{bottom:632.662493px;}
.y74_c00394{bottom:633.184232px;}
.y75_c00394{bottom:633.622173px;}
.y76_c00394{bottom:634.570884px;}
.y77_c00394{bottom:635.060886px;}
.y78_c00394{bottom:635.917833px;}
.y79_c00394{bottom:636.210003px;}
.y7a_c00394{bottom:636.829265px;}
.y60_c00394{bottom:653.393385px;}
.y61_c00394{bottom:653.692731px;}
.y62_c00394{bottom:654.342830px;}
.y63_c00394{bottom:654.802334px;}
.y64_c00394{bottom:654.910970px;}
.y65_c00394{bottom:656.002640px;}
.y66_c00394{bottom:656.781996px;}
.y67_c00394{bottom:656.985773px;}
.y68_c00394{bottom:657.929625px;}
.y69_c00394{bottom:658.257462px;}
.y6a_c00394{bottom:658.446557px;}
.y6b_c00394{bottom:658.983467px;}
.y6c_c00394{bottom:659.357877px;}
.y5d_c00394{bottom:678.090030px;}
.y54_c00394{bottom:678.090255px;}
.y57_c00394{bottom:678.090326px;}
.y58_c00394{bottom:678.090429px;}
.y56_c00394{bottom:678.090539px;}
.y59_c00394{bottom:678.090606px;}
.y55_c00394{bottom:678.090615px;}
.y5e_c00394{bottom:678.090657px;}
.y5c_c00394{bottom:678.090767px;}
.y53_c00394{bottom:678.090768px;}
.y5a_c00394{bottom:678.090816px;}
.y5f_c00394{bottom:678.090924px;}
.y52_c00394{bottom:678.091145px;}
.y5b_c00394{bottom:678.091190px;}
.y44_c00394{bottom:698.911314px;}
.y45_c00394{bottom:699.456539px;}
.y46_c00394{bottom:699.861131px;}
.y47_c00394{bottom:700.899798px;}
.y48_c00394{bottom:701.096304px;}
.y49_c00394{bottom:701.319023px;}
.y4a_c00394{bottom:701.569026px;}
.y4b_c00394{bottom:702.632091px;}
.y4c_c00394{bottom:702.872742px;}
.y4d_c00394{bottom:703.171229px;}
.y4e_c00394{bottom:703.859082px;}
.y4f_c00394{bottom:704.381987px;}
.y50_c00394{bottom:704.654970px;}
.y51_c00394{bottom:705.368871px;}
.y37_c00394{bottom:722.246186px;}
.y38_c00394{bottom:722.784486px;}
.y39_c00394{bottom:723.020714px;}
.y3a_c00394{bottom:723.572180px;}
.y3b_c00394{bottom:724.200612px;}
.y3c_c00394{bottom:725.048839px;}
.y3d_c00394{bottom:725.412024px;}
.y3e_c00394{bottom:725.554737px;}
.y3f_c00394{bottom:725.881856px;}
.y40_c00394{bottom:726.428720px;}
.y41_c00394{bottom:726.895581px;}
.y42_c00394{bottom:727.362343px;}
.y43_c00394{bottom:727.845489px;}
.y2a_c00394{bottom:744.927371px;}
.y2b_c00394{bottom:745.253526px;}
.y2c_c00394{bottom:745.444217px;}
.y2d_c00394{bottom:745.788291px;}
.y2e_c00394{bottom:746.103738px;}
.y2f_c00394{bottom:746.513483px;}
.y30_c00394{bottom:747.475647px;}
.y31_c00394{bottom:747.817313px;}
.y32_c00394{bottom:748.395869px;}
.y33_c00394{bottom:748.622298px;}
.y34_c00394{bottom:748.984456px;}
.y35_c00394{bottom:749.427218px;}
.y36_c00394{bottom:749.629260px;}
.y1d_c00394{bottom:767.878897px;}
.y1e_c00394{bottom:768.323222px;}
.y1f_c00394{bottom:768.922205px;}
.y20_c00394{bottom:769.385997px;}
.y21_c00394{bottom:770.221158px;}
.y22_c00394{bottom:770.814168px;}
.y23_c00394{bottom:771.167948px;}
.y24_c00394{bottom:771.310760px;}
.y25_c00394{bottom:771.755199px;}
.y26_c00394{bottom:772.005483px;}
.y27_c00394{bottom:772.507734px;}
.y28_c00394{bottom:773.196304px;}
.y29_c00394{bottom:773.306846px;}
.y14_c00394{bottom:790.830308px;}
.y15_c00394{bottom:791.629353px;}
.y16_c00394{bottom:792.751947px;}
.y17_c00394{bottom:792.873717px;}
.y18_c00394{bottom:793.396569px;}
.y19_c00394{bottom:794.617256px;}
.y1a_c00394{bottom:794.786661px;}
.y1b_c00394{bottom:795.520235px;}
.y1c_c00394{bottom:795.754848px;}
.y4_c00394{bottom:814.051500px;}
.y5_c00394{bottom:814.410292px;}
.y6_c00394{bottom:814.669293px;}
.y7_c00394{bottom:814.990070px;}
.y8_c00394{bottom:815.343582px;}
.y9_c00394{bottom:815.774051px;}
.ya_c00394{bottom:816.311819px;}
.yb_c00394{bottom:816.484095px;}
.yc_c00394{bottom:816.676584px;}
.yd_c00394{bottom:817.229565px;}
.ye_c00394{bottom:817.405307px;}
.yf_c00394{bottom:818.040491px;}
.y10_c00394{bottom:818.281044px;}
.y11_c00394{bottom:818.803797px;}
.y12_c00394{bottom:818.993860px;}
.y13_c00394{bottom:819.169074px;}
.y1_c00394{bottom:837.540000px;}
.y2_c00394{bottom:838.313040px;}
.y3_c00394{bottom:841.920480px;}
.h2_c00394{height:22.052822px;}
.h14_c00394{height:46.205913px;}
.h15_c00394{height:49.355552px;}
.h11_c00394{height:50.406451px;}
.h10_c00394{height:52.500000px;}
.h13_c00394{height:52.506720px;}
.h12_c00394{height:55.657123px;}
.hd_c00394{height:58.803557px;}
.h6_c00394{height:63.003811px;}
.h9_c00394{height:64.053875px;}
.he_c00394{height:65.103938px;}
.h7_c00394{height:67.204065px;}
.h5_c00394{height:68.254129px;}
.h8_c00394{height:69.304193px;}
.hb_c00394{height:70.354256px;}
.hc_c00394{height:71.404320px;}
.h3_c00394{height:72.454383px;}
.h4_c00394{height:73.504447px;}
.ha_c00394{height:76.654637px;}
.hf_c00394{height:96.600000px;}
.h1_c00394{height:1005.000000px;}
.h0_c00394{height:1005.150000px;}
.w0_c00394{width:715.200000px;}
.w1_c00394{width:715.500000px;}
.x0_c00394{left:0.000000px;}
.x4_c00394{left:83.302500px;}
.x1b_c00394{left:85.483101px;}
.x3b_c00394{left:87.143354px;}
.x5a_c00394{left:88.217469px;}
.x6d_c00394{left:89.287998px;}
.x84_c00394{left:90.828497px;}
.x95_c00394{left:91.947009px;}
.xa3_c00394{left:93.882504px;}
.x5b_c00394{left:97.682057px;}
.xbb_c00394{left:98.695500px;}
.x7a_c00394{left:101.990420px;}
.x65_c00394{left:105.505863px;}
.x51_c00394{left:110.590535px;}
.xb7_c00394{left:112.492164px;}
.xbc_c00394{left:114.096000px;}
.x5_c00394{left:115.920000px;}
.x47_c00394{left:117.189987px;}
.x8d_c00394{left:119.006036px;}
.x1c_c00394{left:122.466689px;}
.xaf_c00394{left:124.348500px;}
.x3c_c00394{left:126.071567px;}
.x32_c00394{left:130.037970px;}
.x27_c00394{left:133.264634px;}
.x66_c00394{left:134.383550px;}
.x85_c00394{left:138.128969px;}
.x6_c00394{left:139.465500px;}
.x33_c00394{left:149.740256px;}
.x86_c00394{left:150.817337px;}
.x72_c00394{left:152.185062px;}
.x1_c00394{left:154.474500px;}
.x14_c00394{left:155.680871px;}
.xaa_c00394{left:157.632828px;}
.x52_c00394{left:160.552929px;}
.x28_c00394{left:164.544134px;}
.xb8_c00394{left:165.679164px;}
.x7b_c00394{left:167.537532px;}
.x7_c00394{left:168.627000px;}
.x1d_c00394{left:172.419144px;}
.x48_c00394{left:175.514049px;}
.xb0_c00394{left:177.697500px;}
.x8e_c00394{left:178.952396px;}
.x96_c00394{left:180.193062px;}
.x9a_c00394{left:182.149347px;}
.x49_c00394{left:185.775287px;}
.xa0_c00394{left:187.022768px;}
.x67_c00394{left:188.121956px;}
.xab_c00394{left:192.134172px;}
.x29_c00394{left:193.221134px;}
.x34_c00394{left:195.645744px;}
.x5c_c00394{left:198.923102px;}
.x8_c00394{left:200.764500px;}
.x2_c00394{left:202.789500px;}
.x53_c00394{left:204.291972px;}
.x87_c00394{left:206.172726px;}
.x1e_c00394{left:211.036215px;}
.x4a_c00394{left:213.317120px;}
.x5d_c00394{left:217.010810px;}
.xa5_c00394{left:218.052000px;}
.xa1_c00394{left:219.973316px;}
.x88_c00394{left:221.834061px;}
.x3d_c00394{left:229.182668px;}
.x2a_c00394{left:230.470634px;}
.x73_c00394{left:232.916280px;}
.x68_c00394{left:235.057944px;}
.xa6_c00394{left:236.143500px;}
.x97_c00394{left:238.295792px;}
.x9_c00394{left:239.898000px;}
.x9b_c00394{left:241.003560px;}
.x3e_c00394{left:243.228206px;}
.xac_c00394{left:246.743556px;}
.x35_c00394{left:248.002667px;}
.x8f_c00394{left:252.557162px;}
.x4b_c00394{left:255.439218px;}
.x15_c00394{left:257.734871px;}
.x3f_c00394{left:259.111178px;}
.xb1_c00394{left:261.477000px;}
.x90_c00394{left:262.891700px;}
.x7c_c00394{left:265.870209px;}
.x16_c00394{left:268.804871px;}
.x5e_c00394{left:272.137884px;}
.x69_c00394{left:273.726015px;}
.x40_c00394{left:276.929084px;}
.x1f_c00394{left:280.686456px;}
.xb9_c00394{left:281.786664px;}
.xa_c00394{left:288.786000px;}
.xa7_c00394{left:293.346000px;}
.x91_c00394{left:296.313231px;}
.x7d_c00394{left:297.764807px;}
.xa4_c00394{left:299.620223px;}
.x74_c00394{left:300.678795px;}
.x89_c00394{left:302.557170px;}
.xb_c00394{left:304.447500px;}
.x5f_c00394{left:306.885350px;}
.x17_c00394{left:316.336871px;}
.x2b_c00394{left:317.940134px;}
.x6e_c00394{left:319.324433px;}
.xc_c00394{left:321.946500px;}
.x98_c00394{left:323.855411px;}
.x75_c00394{left:325.743251px;}
.x20_c00394{left:330.095912px;}
.x92_c00394{left:331.213697px;}
.x4c_c00394{left:333.474156px;}
.x60_c00394{left:336.060563px;}
.x9c_c00394{left:340.103382px;}
.x4d_c00394{left:345.085559px;}
.x6f_c00394{left:347.948306px;}
.x2c_c00394{left:349.000634px;}
.x7e_c00394{left:350.655480px;}
.x41_c00394{left:352.841576px;}
.xa8_c00394{left:357.928500px;}
.x21_c00394{left:359.530082px;}
.x36_c00394{left:360.876429px;}
.x9d_c00394{left:362.805387px;}
.x54_c00394{left:363.861458px;}
.x7f_c00394{left:367.331754px;}
.x4e_c00394{left:368.576897px;}
.x42_c00394{left:370.082015px;}
.xd_c00394{left:372.217500px;}
.x93_c00394{left:374.942766px;}
.x6a_c00394{left:378.769860px;}
.x8a_c00394{left:383.569779px;}
.xe_c00394{left:388.194000px;}
.x43_c00394{left:391.352805px;}
.x76_c00394{left:392.499282px;}
.x8b_c00394{left:395.988147px;}
.x61_c00394{left:399.258774px;}
.x2d_c00394{left:401.596634px;}
.x80_c00394{left:403.861154px;}
.x22_c00394{left:408.416037px;}
.xad_c00394{left:409.478232px;}
.xb2_c00394{left:410.568000px;}
.x4f_c00394{left:412.589226px;}
.x8c_c00394{left:417.872900px;}
.x2e_c00394{left:422.181134px;}
.x81_c00394{left:424.639746px;}
.xb3_c00394{left:425.712000px;}
.x3_c00394{left:428.254500px;}
.x23_c00394{left:429.259806px;}
.x62_c00394{left:431.939339px;}
.x37_c00394{left:433.783137px;}
.x55_c00394{left:436.437357px;}
.x70_c00394{left:438.160809px;}
.x44_c00394{left:440.519688px;}
.x18_c00394{left:442.708871px;}
.xf_c00394{left:445.938000px;}
.x2f_c00394{left:455.104634px;}
.x9e_c00394{left:456.499341px;}
.xbd_c00394{left:458.374500px;}
.x56_c00394{left:461.603796px;}
.x99_c00394{left:464.040825px;}
.xb4_c00394{left:465.127500px;}
.x10_c00394{left:467.806500px;}
.x82_c00394{left:469.195283px;}
.x24_c00394{left:471.100344px;}
.x38_c00394{left:472.679208px;}
.x77_c00394{left:473.721000px;}
.x57_c00394{left:476.202983px;}
.x45_c00394{left:477.827951px;}
.x94_c00394{left:481.345080px;}
.x63_c00394{left:489.113831px;}
.xa2_c00394{left:491.040063px;}
.xae_c00394{left:492.991200px;}
.x50_c00394{left:494.134593px;}
.x30_c00394{left:495.355634px;}
.x46_c00394{left:497.325807px;}
.x78_c00394{left:499.151439px;}
.x6b_c00394{left:505.672958px;}
.x19_c00394{left:509.397371px;}
.x39_c00394{left:511.566279px;}
.x31_c00394{left:513.723134px;}
.x11_c00394{left:515.329500px;}
.x58_c00394{left:517.512075px;}
.x9f_c00394{left:518.861972px;}
.x83_c00394{left:521.317989px;}
.x25_c00394{left:528.515217px;}
.x1a_c00394{left:530.725871px;}
.x12_c00394{left:532.608000px;}
.xb5_c00394{left:536.694000px;}
.x26_c00394{left:537.746118px;}
.x6c_c00394{left:541.849562px;}
.x71_c00394{left:543.996983px;}
.x59_c00394{left:546.366948px;}
.x13_c00394{left:548.536500px;}
.x64_c00394{left:549.877658px;}
.x3a_c00394{left:551.806334px;}
.x79_c00394{left:554.260235px;}
.xba_c00394{left:555.599664px;}
.xb6_c00394{left:557.229000px;}
.xa9_c00394{left:559.389000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs0_c00394{font-size:19.602509pt;}
.fs12_c00394{font-size:41.071923pt;}
.fs13_c00394{font-size:43.871601pt;}
.fsf_c00394{font-size:44.805734pt;}
.fse_c00394{font-size:46.666667pt;}
.fs11_c00394{font-size:46.672640pt;}
.fs10_c00394{font-size:49.472998pt;}
.fsb_c00394{font-size:52.269829pt;}
.fs4_c00394{font-size:56.003388pt;}
.fs7_c00394{font-size:56.936778pt;}
.fsc_c00394{font-size:57.870167pt;}
.fs5_c00394{font-size:59.736947pt;}
.fs3_c00394{font-size:60.670337pt;}
.fs6_c00394{font-size:61.603727pt;}
.fs9_c00394{font-size:62.537116pt;}
.fsa_c00394{font-size:63.470506pt;}
.fs1_c00394{font-size:64.403896pt;}
.fs2_c00394{font-size:65.337286pt;}
.fs8_c00394{font-size:68.137455pt;}
.fsd_c00394{font-size:85.866667pt;}
.y0_c00394{bottom:0.000000pt;}
.y146_c00394{bottom:131.041333pt;}
.y147_c00394{bottom:131.246673pt;}
.y148_c00394{bottom:131.966813pt;}
.y149_c00394{bottom:132.633493pt;}
.y14a_c00394{bottom:132.913453pt;}
.y14b_c00394{bottom:133.955553pt;}
.y14c_c00394{bottom:134.131193pt;}
.y14d_c00394{bottom:134.328253pt;}
.y14e_c00394{bottom:134.904673pt;}
.y14f_c00394{bottom:135.397813pt;}
.y150_c00394{bottom:135.667773pt;}
.y151_c00394{bottom:135.837053pt;}
.y152_c00394{bottom:136.294153pt;}
.y153_c00394{bottom:136.510293pt;}
.y136_c00394{bottom:147.119285pt;}
.y137_c00394{bottom:147.330763pt;}
.y138_c00394{bottom:148.087200pt;}
.y139_c00394{bottom:148.819936pt;}
.y13a_c00394{bottom:149.157941pt;}
.y13b_c00394{bottom:149.738507pt;}
.y13c_c00394{bottom:150.422304pt;}
.y13d_c00394{bottom:150.633227pt;}
.y13e_c00394{bottom:151.051061pt;}
.y13f_c00394{bottom:151.193248pt;}
.y140_c00394{bottom:151.432032pt;}
.y141_c00394{bottom:151.662453pt;}
.y142_c00394{bottom:152.419211pt;}
.y143_c00394{bottom:152.787808pt;}
.y144_c00394{bottom:153.367072pt;}
.y145_c00394{bottom:153.632736pt;}
.y123_c00394{bottom:163.441333pt;}
.y124_c00394{bottom:163.818229pt;}
.y125_c00394{bottom:164.576971pt;}
.y126_c00394{bottom:164.647797pt;}
.y127_c00394{bottom:164.833013pt;}
.y128_c00394{bottom:165.300512pt;}
.y129_c00394{bottom:165.768501pt;}
.y12a_c00394{bottom:165.995829pt;}
.y12b_c00394{bottom:166.753013pt;}
.y12c_c00394{bottom:166.955040pt;}
.y12d_c00394{bottom:167.197664pt;}
.y12e_c00394{bottom:167.428341pt;}
.y12f_c00394{bottom:167.888907pt;}
.y130_c00394{bottom:168.104288pt;}
.y131_c00394{bottom:168.664864pt;}
.y132_c00394{bottom:168.899189pt;}
.y133_c00394{bottom:169.114635pt;}
.y134_c00394{bottom:169.682699pt;}
.y135_c00394{bottom:169.974752pt;}
.y113_c00394{bottom:177.840725pt;}
.y114_c00394{bottom:178.323680pt;}
.y115_c00394{bottom:178.853248pt;}
.y116_c00394{bottom:179.435957pt;}
.y117_c00394{bottom:180.138752pt;}
.y118_c00394{bottom:180.357995pt;}
.y119_c00394{bottom:181.083029pt;}
.y11a_c00394{bottom:181.758720pt;}
.y11b_c00394{bottom:182.013056pt;}
.y11c_c00394{bottom:182.533760pt;}
.y11d_c00394{bottom:183.107221pt;}
.y11e_c00394{bottom:183.518155pt;}
.y11f_c00394{bottom:183.870581pt;}
.y120_c00394{bottom:184.519019pt;}
.y121_c00394{bottom:184.888021pt;}
.y122_c00394{bottom:185.271179pt;}
.y106_c00394{bottom:195.121333pt;}
.y107_c00394{bottom:195.406261pt;}
.y108_c00394{bottom:196.189515pt;}
.y109_c00394{bottom:196.846261pt;}
.y10a_c00394{bottom:197.103563pt;}
.y10b_c00394{bottom:197.334176pt;}
.y10c_c00394{bottom:197.917109pt;}
.y10d_c00394{bottom:198.835616pt;}
.y10e_c00394{bottom:199.311840pt;}
.y10f_c00394{bottom:199.611445pt;}
.y110_c00394{bottom:200.394464pt;}
.y111_c00394{bottom:201.389579pt;}
.y112_c00394{bottom:201.700832pt;}
.y105_c00394{bottom:263.630667pt;}
.y104_c00394{bottom:278.768000pt;}
.y103_c00394{bottom:312.465333pt;}
.yfc_c00394{bottom:336.223236pt;}
.yfd_c00394{bottom:337.226881pt;}
.yfe_c00394{bottom:337.718168pt;}
.yff_c00394{bottom:338.782960pt;}
.y100_c00394{bottom:339.058561pt;}
.y101_c00394{bottom:340.428721pt;}
.y102_c00394{bottom:340.983017pt;}
.yf1_c00394{bottom:356.861569pt;}
.yf2_c00394{bottom:357.788895pt;}
.yf3_c00394{bottom:358.007644pt;}
.yf4_c00394{bottom:358.382024pt;}
.yf5_c00394{bottom:358.793741pt;}
.yf6_c00394{bottom:359.091581pt;}
.yf7_c00394{bottom:359.621429pt;}
.yf8_c00394{bottom:359.909752pt;}
.yf9_c00394{bottom:360.548461pt;}
.yfa_c00394{bottom:360.895137pt;}
.yfb_c00394{bottom:361.114429pt;}
.ye5_c00394{bottom:376.782829pt;}
.ye6_c00394{bottom:377.247067pt;}
.ye7_c00394{bottom:377.787580pt;}
.ye8_c00394{bottom:378.046891pt;}
.ye9_c00394{bottom:378.486421pt;}
.yea_c00394{bottom:379.062859pt;}
.yeb_c00394{bottom:380.236847pt;}
.yec_c00394{bottom:380.488093pt;}
.yed_c00394{bottom:380.827169pt;}
.yee_c00394{bottom:381.392345pt;}
.yef_c00394{bottom:381.835849pt;}
.yf0_c00394{bottom:382.890761pt;}
.yda_c00394{bottom:397.185312pt;}
.ydb_c00394{bottom:398.040643pt;}
.ydc_c00394{bottom:398.237688pt;}
.ydd_c00394{bottom:398.917164pt;}
.yde_c00394{bottom:399.117319pt;}
.ydf_c00394{bottom:400.062161pt;}
.ye0_c00394{bottom:400.324141pt;}
.ye1_c00394{bottom:401.194211pt;}
.ye2_c00394{bottom:401.405613pt;}
.ye3_c00394{bottom:402.126061pt;}
.ye4_c00394{bottom:402.543997pt;}
.yce_c00394{bottom:417.587491pt;}
.ycf_c00394{bottom:417.871951pt;}
.yd0_c00394{bottom:418.314904pt;}
.yd1_c00394{bottom:418.607693pt;}
.yd2_c00394{bottom:419.035293pt;}
.yd3_c00394{bottom:419.278488pt;}
.yd4_c00394{bottom:419.858817pt;}
.yd5_c00394{bottom:420.267089pt;}
.yd6_c00394{bottom:420.910036pt;}
.yd7_c00394{bottom:421.135281pt;}
.yd8_c00394{bottom:421.887155pt;}
.yd9_c00394{bottom:422.903927pt;}
.ybf_c00394{bottom:437.508223pt;}
.yc0_c00394{bottom:437.933164pt;}
.yc1_c00394{bottom:438.732665pt;}
.yc2_c00394{bottom:439.484352pt;}
.yc3_c00394{bottom:439.713721pt;}
.yc4_c00394{bottom:439.852108pt;}
.yc5_c00394{bottom:440.297577pt;}
.yc6_c00394{bottom:440.762841pt;}
.yc7_c00394{bottom:441.346433pt;}
.yc8_c00394{bottom:441.635099pt;}
.yc9_c00394{bottom:442.134908pt;}
.yca_c00394{bottom:442.510143pt;}
.ycb_c00394{bottom:442.765524pt;}
.ycc_c00394{bottom:443.150715pt;}
.ycd_c00394{bottom:443.600436pt;}
.yb2_c00394{bottom:458.148129pt;}
.yb3_c00394{bottom:458.653295pt;}
.yb4_c00394{bottom:458.788027pt;}
.yb5_c00394{bottom:459.378619pt;}
.yb6_c00394{bottom:459.545087pt;}
.yb7_c00394{bottom:459.772299pt;}
.yb8_c00394{bottom:460.406388pt;}
.yb9_c00394{bottom:461.270520pt;}
.yba_c00394{bottom:461.402612pt;}
.ybb_c00394{bottom:461.636599pt;}
.ybc_c00394{bottom:462.266817pt;}
.ybd_c00394{bottom:462.481667pt;}
.ybe_c00394{bottom:462.860049pt;}
.ya2_c00394{bottom:478.551436pt;}
.ya3_c00394{bottom:478.710409pt;}
.ya4_c00394{bottom:479.209984pt;}
.ya5_c00394{bottom:479.584676pt;}
.ya6_c00394{bottom:480.045101pt;}
.ya7_c00394{bottom:480.491729pt;}
.ya8_c00394{bottom:480.895527pt;}
.ya9_c00394{bottom:481.320732pt;}
.yaa_c00394{bottom:481.586377pt;}
.yab_c00394{bottom:482.025908pt;}
.yac_c00394{bottom:482.247639pt;}
.yad_c00394{bottom:482.734164pt;}
.yae_c00394{bottom:483.010675pt;}
.yaf_c00394{bottom:483.605015pt;}
.yb0_c00394{bottom:483.879047pt;}
.yb1_c00394{bottom:484.300015pt;}
.y95_c00394{bottom:498.952488pt;}
.y96_c00394{bottom:499.186121pt;}
.y97_c00394{bottom:499.677012pt;}
.y98_c00394{bottom:500.282359pt;}
.y99_c00394{bottom:500.610401pt;}
.y9a_c00394{bottom:501.392983pt;}
.y9b_c00394{bottom:501.682063pt;}
.y9c_c00394{bottom:502.113431pt;}
.y9d_c00394{bottom:502.453469pt;}
.y9e_c00394{bottom:502.955388pt;}
.y9f_c00394{bottom:503.391655pt;}
.ya0_c00394{bottom:503.685647pt;}
.ya1_c00394{bottom:504.321833pt;}
.y8a_c00394{bottom:519.352473pt;}
.y8b_c00394{bottom:520.338713pt;}
.y8c_c00394{bottom:521.180128pt;}
.y8d_c00394{bottom:521.517805pt;}
.y8e_c00394{bottom:522.011101pt;}
.y8f_c00394{bottom:522.341652pt;}
.y90_c00394{bottom:523.196880pt;}
.y91_c00394{bottom:523.385083pt;}
.y92_c00394{bottom:523.977276pt;}
.y93_c00394{bottom:524.451273pt;}
.y94_c00394{bottom:524.607948pt;}
.y7b_c00394{bottom:539.588529pt;}
.y7c_c00394{bottom:539.766832pt;}
.y7d_c00394{bottom:540.074528pt;}
.y7e_c00394{bottom:540.647976pt;}
.y7f_c00394{bottom:540.901512pt;}
.y80_c00394{bottom:541.148244pt;}
.y81_c00394{bottom:541.384768pt;}
.y82_c00394{bottom:541.561003pt;}
.y83_c00394{bottom:542.153751pt;}
.y84_c00394{bottom:542.395716pt;}
.y85_c00394{bottom:542.681443pt;}
.y86_c00394{bottom:543.139972pt;}
.y87_c00394{bottom:543.503132pt;}
.y88_c00394{bottom:544.035620pt;}
.y89_c00394{bottom:544.421351pt;}
.y6d_c00394{bottom:559.914915pt;}
.y6e_c00394{bottom:560.040795pt;}
.y6f_c00394{bottom:560.406983pt;}
.y70_c00394{bottom:561.390751pt;}
.y71_c00394{bottom:561.631616pt;}
.y72_c00394{bottom:562.031880pt;}
.y73_c00394{bottom:562.366660pt;}
.y74_c00394{bottom:562.830428pt;}
.y75_c00394{bottom:563.219709pt;}
.y76_c00394{bottom:564.063008pt;}
.y77_c00394{bottom:564.498565pt;}
.y78_c00394{bottom:565.260296pt;}
.y79_c00394{bottom:565.520003pt;}
.y7a_c00394{bottom:566.070457pt;}
.y60_c00394{bottom:580.794120pt;}
.y61_c00394{bottom:581.060205pt;}
.y62_c00394{bottom:581.638071pt;}
.y63_c00394{bottom:582.046519pt;}
.y64_c00394{bottom:582.143084pt;}
.y65_c00394{bottom:583.113457pt;}
.y66_c00394{bottom:583.806219pt;}
.y67_c00394{bottom:583.987353pt;}
.y68_c00394{bottom:584.826333pt;}
.y69_c00394{bottom:585.117744pt;}
.y6a_c00394{bottom:585.285828pt;}
.y6b_c00394{bottom:585.763081pt;}
.y6c_c00394{bottom:586.095891pt;}
.y5d_c00394{bottom:602.746693pt;}
.y54_c00394{bottom:602.746893pt;}
.y57_c00394{bottom:602.746956pt;}
.y58_c00394{bottom:602.747048pt;}
.y56_c00394{bottom:602.747145pt;}
.y59_c00394{bottom:602.747205pt;}
.y55_c00394{bottom:602.747213pt;}
.y5e_c00394{bottom:602.747251pt;}
.y5c_c00394{bottom:602.747348pt;}
.y53_c00394{bottom:602.747349pt;}
.y5a_c00394{bottom:602.747392pt;}
.y5f_c00394{bottom:602.747488pt;}
.y52_c00394{bottom:602.747684pt;}
.y5b_c00394{bottom:602.747724pt;}
.y44_c00394{bottom:621.254501pt;}
.y45_c00394{bottom:621.739145pt;}
.y46_c00394{bottom:622.098783pt;}
.y47_c00394{bottom:623.022043pt;}
.y48_c00394{bottom:623.196715pt;}
.y49_c00394{bottom:623.394687pt;}
.y4a_c00394{bottom:623.616912pt;}
.y4b_c00394{bottom:624.561859pt;}
.y4c_c00394{bottom:624.775771pt;}
.y4d_c00394{bottom:625.041092pt;}
.y4e_c00394{bottom:625.652517pt;}
.y4f_c00394{bottom:626.117321pt;}
.y50_c00394{bottom:626.359973pt;}
.y51_c00394{bottom:626.994552pt;}
.y37_c00394{bottom:641.996609pt;}
.y38_c00394{bottom:642.475099pt;}
.y39_c00394{bottom:642.685079pt;}
.y3a_c00394{bottom:643.175271pt;}
.y3b_c00394{bottom:643.733877pt;}
.y3c_c00394{bottom:644.487857pt;}
.y3d_c00394{bottom:644.810688pt;}
.y3e_c00394{bottom:644.937544pt;}
.y3f_c00394{bottom:645.228316pt;}
.y40_c00394{bottom:645.714417pt;}
.y41_c00394{bottom:646.129405pt;}
.y42_c00394{bottom:646.544305pt;}
.y43_c00394{bottom:646.973768pt;}
.y2a_c00394{bottom:662.157663pt;}
.y2b_c00394{bottom:662.447579pt;}
.y2c_c00394{bottom:662.617081pt;}
.y2d_c00394{bottom:662.922925pt;}
.y2e_c00394{bottom:663.203323pt;}
.y2f_c00394{bottom:663.567540pt;}
.y30_c00394{bottom:664.422797pt;}
.y31_c00394{bottom:664.726500pt;}
.y32_c00394{bottom:665.240772pt;}
.y33_c00394{bottom:665.442043pt;}
.y34_c00394{bottom:665.763961pt;}
.y35_c00394{bottom:666.157527pt;}
.y36_c00394{bottom:666.337120pt;}
.y1d_c00394{bottom:682.559020pt;}
.y1e_c00394{bottom:682.953975pt;}
.y1f_c00394{bottom:683.486404pt;}
.y20_c00394{bottom:683.898664pt;}
.y21_c00394{bottom:684.641029pt;}
.y22_c00394{bottom:685.168149pt;}
.y23_c00394{bottom:685.482620pt;}
.y24_c00394{bottom:685.609564pt;}
.y25_c00394{bottom:686.004621pt;}
.y26_c00394{bottom:686.227096pt;}
.y27_c00394{bottom:686.673541pt;}
.y28_c00394{bottom:687.285604pt;}
.y29_c00394{bottom:687.383863pt;}
.y14_c00394{bottom:702.960273pt;}
.y15_c00394{bottom:703.670536pt;}
.y16_c00394{bottom:704.668397pt;}
.y17_c00394{bottom:704.776637pt;}
.y18_c00394{bottom:705.241395pt;}
.y19_c00394{bottom:706.326449pt;}
.y1a_c00394{bottom:706.477032pt;}
.y1b_c00394{bottom:707.129097pt;}
.y1c_c00394{bottom:707.337643pt;}
.y4_c00394{bottom:723.601333pt;}
.y5_c00394{bottom:723.920260pt;}
.y6_c00394{bottom:724.150483pt;}
.y7_c00394{bottom:724.435617pt;}
.y8_c00394{bottom:724.749851pt;}
.y9_c00394{bottom:725.132489pt;}
.ya_c00394{bottom:725.610505pt;}
.yb_c00394{bottom:725.763640pt;}
.yc_c00394{bottom:725.934741pt;}
.yd_c00394{bottom:726.426280pt;}
.ye_c00394{bottom:726.582495pt;}
.yf_c00394{bottom:727.147103pt;}
.y10_c00394{bottom:727.360928pt;}
.y11_c00394{bottom:727.825597pt;}
.y12_c00394{bottom:727.994543pt;}
.y13_c00394{bottom:728.150288pt;}
.y1_c00394{bottom:744.480000pt;}
.y2_c00394{bottom:745.167147pt;}
.y3_c00394{bottom:748.373760pt;}
.h2_c00394{height:19.602509pt;}
.h14_c00394{height:41.071923pt;}
.h15_c00394{height:43.871601pt;}
.h11_c00394{height:44.805734pt;}
.h10_c00394{height:46.666667pt;}
.h13_c00394{height:46.672640pt;}
.h12_c00394{height:49.472998pt;}
.hd_c00394{height:52.269829pt;}
.h6_c00394{height:56.003388pt;}
.h9_c00394{height:56.936778pt;}
.he_c00394{height:57.870167pt;}
.h7_c00394{height:59.736947pt;}
.h5_c00394{height:60.670337pt;}
.h8_c00394{height:61.603727pt;}
.hb_c00394{height:62.537116pt;}
.hc_c00394{height:63.470506pt;}
.h3_c00394{height:64.403896pt;}
.h4_c00394{height:65.337286pt;}
.ha_c00394{height:68.137455pt;}
.hf_c00394{height:85.866667pt;}
.h1_c00394{height:893.333333pt;}
.h0_c00394{height:893.466667pt;}
.w0_c00394{width:635.733333pt;}
.w1_c00394{width:636.000000pt;}
.x0_c00394{left:0.000000pt;}
.x4_c00394{left:74.046667pt;}
.x1b_c00394{left:75.984979pt;}
.x3b_c00394{left:77.460759pt;}
.x5a_c00394{left:78.415528pt;}
.x6d_c00394{left:79.367109pt;}
.x84_c00394{left:80.736441pt;}
.x95_c00394{left:81.730675pt;}
.xa3_c00394{left:83.451115pt;}
.x5b_c00394{left:86.828495pt;}
.xbb_c00394{left:87.729333pt;}
.x7a_c00394{left:90.658151pt;}
.x65_c00394{left:93.782989pt;}
.x51_c00394{left:98.302697pt;}
.xb7_c00394{left:99.993035pt;}
.xbc_c00394{left:101.418667pt;}
.x5_c00394{left:103.040000pt;}
.x47_c00394{left:104.168877pt;}
.x8d_c00394{left:105.783143pt;}
.x1c_c00394{left:108.859279pt;}
.xaf_c00394{left:110.532000pt;}
.x3c_c00394{left:112.063615pt;}
.x32_c00394{left:115.589307pt;}
.x27_c00394{left:118.457452pt;}
.x66_c00394{left:119.452044pt;}
.x85_c00394{left:122.781305pt;}
.x6_c00394{left:123.969333pt;}
.x33_c00394{left:133.102449pt;}
.x86_c00394{left:134.059855pt;}
.x72_c00394{left:135.275611pt;}
.x1_c00394{left:137.310667pt;}
.x14_c00394{left:138.382996pt;}
.xaa_c00394{left:140.118069pt;}
.x52_c00394{left:142.713715pt;}
.x28_c00394{left:146.261452pt;}
.xb8_c00394{left:147.270368pt;}
.x7b_c00394{left:148.922251pt;}
.x7_c00394{left:149.890667pt;}
.x1d_c00394{left:153.261461pt;}
.x48_c00394{left:156.012488pt;}
.xb0_c00394{left:157.953333pt;}
.x8e_c00394{left:159.068796pt;}
.x96_c00394{left:160.171611pt;}
.x9a_c00394{left:161.910531pt;}
.x49_c00394{left:165.133588pt;}
.xa0_c00394{left:166.242460pt;}
.x67_c00394{left:167.219516pt;}
.xab_c00394{left:170.785931pt;}
.x29_c00394{left:171.752119pt;}
.x34_c00394{left:173.907328pt;}
.x5c_c00394{left:176.820535pt;}
.x8_c00394{left:178.457333pt;}
.x2_c00394{left:180.257333pt;}
.x53_c00394{left:181.592864pt;}
.x87_c00394{left:183.264645pt;}
.x1e_c00394{left:187.587747pt;}
.x4a_c00394{left:189.615217pt;}
.x5d_c00394{left:192.898497pt;}
.xa5_c00394{left:193.824000pt;}
.xa1_c00394{left:195.531836pt;}
.x88_c00394{left:197.185832pt;}
.x3d_c00394{left:203.717927pt;}
.x2a_c00394{left:204.862785pt;}
.x73_c00394{left:207.036693pt;}
.x68_c00394{left:208.940395pt;}
.xa6_c00394{left:209.905333pt;}
.x97_c00394{left:211.818481pt;}
.x9_c00394{left:213.242667pt;}
.x9b_c00394{left:214.225387pt;}
.x3e_c00394{left:216.202849pt;}
.xac_c00394{left:219.327605pt;}
.x35_c00394{left:220.446815pt;}
.x8f_c00394{left:224.495255pt;}
.x4b_c00394{left:227.057083pt;}
.x15_c00394{left:229.097663pt;}
.x3f_c00394{left:230.321047pt;}
.xb1_c00394{left:232.424000pt;}
.x90_c00394{left:233.681511pt;}
.x7c_c00394{left:236.329075pt;}
.x16_c00394{left:238.937663pt;}
.x5e_c00394{left:241.900341pt;}
.x69_c00394{left:243.312013pt;}
.x40_c00394{left:246.159185pt;}
.x1f_c00394{left:249.499072pt;}
.xb9_c00394{left:250.477035pt;}
.xa_c00394{left:256.698667pt;}
.xa7_c00394{left:260.752000pt;}
.x91_c00394{left:263.389539pt;}
.x7d_c00394{left:264.679828pt;}
.xa4_c00394{left:266.329087pt;}
.x74_c00394{left:267.270040pt;}
.x89_c00394{left:268.939707pt;}
.xb_c00394{left:270.620000pt;}
.x5f_c00394{left:272.786977pt;}
.x17_c00394{left:281.188329pt;}
.x2b_c00394{left:282.613452pt;}
.x6e_c00394{left:283.843940pt;}
.xc_c00394{left:286.174667pt;}
.x98_c00394{left:287.871476pt;}
.x75_c00394{left:289.549556pt;}
.x20_c00394{left:293.418588pt;}
.x92_c00394{left:294.412175pt;}
.x4c_c00394{left:296.421472pt;}
.x60_c00394{left:298.720500pt;}
.x9c_c00394{left:302.314117pt;}
.x4d_c00394{left:306.742719pt;}
.x6f_c00394{left:309.287383pt;}
.x2c_c00394{left:310.222785pt;}
.x7e_c00394{left:311.693760pt;}
.x41_c00394{left:313.636956pt;}
.xa8_c00394{left:318.158667pt;}
.x21_c00394{left:319.582295pt;}
.x36_c00394{left:320.779048pt;}
.x9d_c00394{left:322.493677pt;}
.x54_c00394{left:323.432407pt;}
.x7f_c00394{left:326.517115pt;}
.x4e_c00394{left:327.623908pt;}
.x42_c00394{left:328.961791pt;}
.xd_c00394{left:330.860000pt;}
.x93_c00394{left:333.282459pt;}
.x6a_c00394{left:336.684320pt;}
.x8a_c00394{left:340.950915pt;}
.xe_c00394{left:345.061333pt;}
.x43_c00394{left:347.869160pt;}
.x76_c00394{left:348.888251pt;}
.x8b_c00394{left:351.989464pt;}
.x61_c00394{left:354.896688pt;}
.x2d_c00394{left:356.974785pt;}
.x80_c00394{left:358.987692pt;}
.x22_c00394{left:363.036477pt;}
.xad_c00394{left:363.980651pt;}
.xb2_c00394{left:364.949333pt;}
.x4f_c00394{left:366.745979pt;}
.x8c_c00394{left:371.442577pt;}
.x2e_c00394{left:375.272119pt;}
.x81_c00394{left:377.457552pt;}
.xb3_c00394{left:378.410667pt;}
.x3_c00394{left:380.670667pt;}
.x23_c00394{left:381.564272pt;}
.x62_c00394{left:383.946079pt;}
.x37_c00394{left:385.585011pt;}
.x55_c00394{left:387.944317pt;}
.x70_c00394{left:389.476275pt;}
.x44_c00394{left:391.573056pt;}
.x18_c00394{left:393.518996pt;}
.xf_c00394{left:396.389333pt;}
.x2f_c00394{left:404.537452pt;}
.x9e_c00394{left:405.777192pt;}
.xbd_c00394{left:407.444000pt;}
.x56_c00394{left:410.314485pt;}
.x99_c00394{left:412.480733pt;}
.xb4_c00394{left:413.446667pt;}
.x10_c00394{left:415.828000pt;}
.x82_c00394{left:417.062473pt;}
.x24_c00394{left:418.755861pt;}
.x38_c00394{left:420.159296pt;}
.x77_c00394{left:421.085333pt;}
.x57_c00394{left:423.291540pt;}
.x45_c00394{left:424.735956pt;}
.x94_c00394{left:427.862293pt;}
.x63_c00394{left:434.767849pt;}
.xa2_c00394{left:436.480056pt;}
.xae_c00394{left:438.214400pt;}
.x50_c00394{left:439.230749pt;}
.x30_c00394{left:440.316119pt;}
.x46_c00394{left:442.067384pt;}
.x78_c00394{left:443.690168pt;}
.x6b_c00394{left:449.487073pt;}
.x19_c00394{left:452.797663pt;}
.x39_c00394{left:454.725581pt;}
.x31_c00394{left:456.642785pt;}
.x11_c00394{left:458.070667pt;}
.x58_c00394{left:460.010733pt;}
.x9f_c00394{left:461.210641pt;}
.x83_c00394{left:463.393768pt;}
.x25_c00394{left:469.791304pt;}
.x1a_c00394{left:471.756329pt;}
.x12_c00394{left:473.429333pt;}
.xb5_c00394{left:477.061333pt;}
.x26_c00394{left:477.996549pt;}
.x6c_c00394{left:481.644055pt;}
.x71_c00394{left:483.552873pt;}
.x59_c00394{left:485.659509pt;}
.x13_c00394{left:487.588000pt;}
.x64_c00394{left:488.780140pt;}
.x3a_c00394{left:490.494519pt;}
.x79_c00394{left:492.675764pt;}
.xba_c00394{left:493.866368pt;}
.xb6_c00394{left:495.314667pt;}
.xa9_c00394{left:497.234667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31cbb8ad81f4c1d1a4b2c7cb.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;}
.m3c_c00395{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);}
.m3d_c00395{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);}
.m54_c00395{transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018730,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);}
.m5e_c00395{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);}
.m53_c00395{transform:matrix(0.036920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036920,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103835,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.133095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133095,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.133605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133605,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.135290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135290,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142135,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.147710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147710,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{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);}
.m5_c00395{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);}
.m57_c00395{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{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);}
.m30_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);}
.m32_c00395{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);}
.m6_c00395{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);}
.m12_c00395{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);}
.m49_c00395{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);}
.m4a_c00395{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);}
.me_c00395{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);}
.m20_c00395{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{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);}
.m3b_c00395{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_c00395{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);}
.m51_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);}
.m60_c00395{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);}
.mb_c00395{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);}
.m19_c00395{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);}
.m10_c00395{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);}
.m16_c00395{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_c00395{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);}
.m2d_c00395{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);}
.m50_c00395{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);}
.m5a_c00395{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);}
.m28_c00395{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);}
.m58_c00395{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);}
.m56_c00395{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);}
.m2a_c00395{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{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);}
.m27_c00395{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);}
.m31_c00395{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);}
.m13_c00395{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);}
.m11_c00395{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);}
.m24_c00395{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);}
.m52_c00395{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);}
.m5c_c00395{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);}
.m47_c00395{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);}
.m3a_c00395{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{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);}
.m25_c00395{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);}
.m4c_c00395{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);}
.m1f_c00395{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);}
.m14_c00395{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);}
.m9_c00395{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);}
.ma_c00395{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);}
.m37_c00395{transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268415,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{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);}
.m2c_c00395{transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281205,0.000000,0.000000,0.250000,0,0);}
.m5d_c00395{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);}
.m35_c00395{transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304460,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);}
.m43_c00395{transform:matrix(0.311915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311915,0.000000,0.000000,0.250000,0,0);}
.m3f_c00395{transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00395{transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326020,0.000000,0.000000,0.250000,0,0);}
.m46_c00395{transform:matrix(0.330805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330805,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.333700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333700,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.337110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337110,0.000000,0.000000,0.250000,0,0);}
.m59_c00395{transform:matrix(0.338305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338305,0.000000,0.000000,0.250000,0,0);}
.m45_c00395{transform:matrix(0.355615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355615,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.363925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366775,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.385705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385705,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.387040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387040,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.390670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390670,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.393085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393085,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.402555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402555,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.403330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403330,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.432120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432120,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);}
.m55_c00395{transform:matrix(0.512510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512510,0.000000,0.000000,0.250000,0,0);}
.m4d_c00395{transform:matrix(0.756355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756355,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.757410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757410,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.793690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793690,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.837690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837690,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.838515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.838515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.838515,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.847820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847820,0.000000,0.000000,0.250000,0,0);}
.m5b_c00395{transform:matrix(0.961135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.961135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.961135,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:36.750000px;}
.fs5_c00395{font-size:64.050000px;}
.fs6_c00395{font-size:66.150000px;}
.fs2_c00395{font-size:69.300000px;}
.fs7_c00395{font-size:71.400000px;}
.fs3_c00395{font-size:72.450000px;}
.fs4_c00395{font-size:73.500000px;}
.fs9_c00395{font-size:76.650000px;}
.fsa_c00395{font-size:82.950000px;}
.fs1_c00395{font-size:87.150000px;}
.fs8_c00395{font-size:92.400000px;}
.fs0_c00395{font-size:145.950000px;}
.y0_c00395{bottom:0.000000px;}
.yf_c00395{bottom:104.226000px;}
.ye_c00395{bottom:333.180000px;}
.yd_c00395{bottom:374.851500px;}
.yc_c00395{bottom:437.700000px;}
.yb_c00395{bottom:477.651000px;}
.ya_c00395{bottom:517.579500px;}
.y9_c00395{bottom:557.020500px;}
.y8_c00395{bottom:593.806500px;}
.y7_c00395{bottom:615.375000px;}
.y6_c00395{bottom:655.278000px;}
.y5_c00395{bottom:693.114000px;}
.y4_c00395{bottom:713.643000px;}
.y3_c00395{bottom:750.786000px;}
.y2_c00395{bottom:789.717000px;}
.y1_c00395{bottom:842.292000px;}
.hd_c00395{height:36.750000px;}
.h7_c00395{height:64.050000px;}
.h8_c00395{height:66.150000px;}
.h4_c00395{height:69.300000px;}
.h9_c00395{height:71.400000px;}
.h5_c00395{height:72.450000px;}
.h6_c00395{height:73.500000px;}
.hb_c00395{height:76.650000px;}
.hc_c00395{height:82.950000px;}
.h3_c00395{height:87.150000px;}
.ha_c00395{height:92.400000px;}
.h2_c00395{height:145.950000px;}
.h0_c00395{height:1008.450000px;}
.h1_c00395{height:1008.750000px;}
.w1_c00395{width:689.250000px;}
.w0_c00395{width:689.550000px;}
.x0_c00395{left:0.000000px;}
.x49_c00395{left:103.410000px;}
.x4a_c00395{left:133.920000px;}
.x8_c00395{left:147.150000px;}
.x2d_c00395{left:162.270000px;}
.x1c_c00395{left:164.700000px;}
.xd_c00395{left:166.050000px;}
.x3_c00395{left:168.210000px;}
.x36_c00395{left:175.500000px;}
.x9_c00395{left:188.190000px;}
.x2e_c00395{left:198.450000px;}
.xa_c00395{left:203.310000px;}
.x2f_c00395{left:215.730000px;}
.x29_c00395{left:217.890000px;}
.x19_c00395{left:219.780000px;}
.xb_c00395{left:225.450000px;}
.x20_c00395{left:231.120000px;}
.x3d_c00395{left:233.010000px;}
.x37_c00395{left:234.900000px;}
.x21_c00395{left:243.810000px;}
.x30_c00395{left:245.430000px;}
.x2a_c00395{left:247.320000px;}
.x4_c00395{left:258.930000px;}
.x31_c00395{left:264.600000px;}
.x1_c00395{left:267.570000px;}
.x38_c00395{left:271.080000px;}
.xe_c00395{left:272.970000px;}
.xc_c00395{left:274.050000px;}
.x32_c00395{left:277.830000px;}
.x39_c00395{left:298.620000px;}
.xf_c00395{left:304.020000px;}
.x22_c00395{left:307.530000px;}
.x3e_c00395{left:311.310000px;}
.x43_c00395{left:321.030000px;}
.x2b_c00395{left:328.860000px;}
.x23_c00395{left:332.100000px;}
.x1d_c00395{left:339.120000px;}
.x44_c00395{left:345.600000px;}
.x10_c00395{left:348.030000px;}
.x24_c00395{left:356.400000px;}
.x33_c00395{left:363.420000px;}
.x2_c00395{left:367.740000px;}
.x3f_c00395{left:379.620000px;}
.x11_c00395{left:383.130000px;}
.x45_c00395{left:388.260000px;}
.x3a_c00395{left:393.390000px;}
.x35_c00395{left:396.360000px;}
.x1a_c00395{left:398.790000px;}
.x12_c00395{left:404.190000px;}
.x1e_c00395{left:410.940000px;}
.x25_c00395{left:427.680000px;}
.x46_c00395{left:431.190000px;}
.x1f_c00395{left:435.780000px;}
.x3b_c00395{left:451.170000px;}
.x13_c00395{left:460.350000px;}
.x3c_c00395{left:465.210000px;}
.x40_c00395{left:473.310000px;}
.x14_c00395{left:475.740000px;}
.x26_c00395{left:477.900000px;}
.x41_c00395{left:491.130000px;}
.x5_c00395{left:497.610000px;}
.x15_c00395{left:515.970000px;}
.x16_c00395{left:541.620000px;}
.x17_c00395{left:563.490000px;}
.x27_c00395{left:567.810000px;}
.x6_c00395{left:575.910000px;}
.x28_c00395{left:589.950000px;}
.x34_c00395{left:595.350000px;}
.x7_c00395{left:599.940000px;}
.x47_c00395{left:659.880000px;}
.x42_c00395{left:660.960000px;}
.x2c_c00395{left:663.390000px;}
.x1b_c00395{left:665.010000px;}
.x48_c00395{left:672.840000px;}
.x18_c00395{left:675.540000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fsb_c00395{font-size:32.666667pt;}
.fs5_c00395{font-size:56.933333pt;}
.fs6_c00395{font-size:58.800000pt;}
.fs2_c00395{font-size:61.600000pt;}
.fs7_c00395{font-size:63.466667pt;}
.fs3_c00395{font-size:64.400000pt;}
.fs4_c00395{font-size:65.333333pt;}
.fs9_c00395{font-size:68.133333pt;}
.fsa_c00395{font-size:73.733333pt;}
.fs1_c00395{font-size:77.466667pt;}
.fs8_c00395{font-size:82.133333pt;}
.fs0_c00395{font-size:129.733333pt;}
.y0_c00395{bottom:0.000000pt;}
.yf_c00395{bottom:92.645333pt;}
.ye_c00395{bottom:296.160000pt;}
.yd_c00395{bottom:333.201333pt;}
.yc_c00395{bottom:389.066667pt;}
.yb_c00395{bottom:424.578667pt;}
.ya_c00395{bottom:460.070667pt;}
.y9_c00395{bottom:495.129333pt;}
.y8_c00395{bottom:527.828000pt;}
.y7_c00395{bottom:547.000000pt;}
.y6_c00395{bottom:582.469333pt;}
.y5_c00395{bottom:616.101333pt;}
.y4_c00395{bottom:634.349333pt;}
.y3_c00395{bottom:667.365333pt;}
.y2_c00395{bottom:701.970667pt;}
.y1_c00395{bottom:748.704000pt;}
.hd_c00395{height:32.666667pt;}
.h7_c00395{height:56.933333pt;}
.h8_c00395{height:58.800000pt;}
.h4_c00395{height:61.600000pt;}
.h9_c00395{height:63.466667pt;}
.h5_c00395{height:64.400000pt;}
.h6_c00395{height:65.333333pt;}
.hb_c00395{height:68.133333pt;}
.hc_c00395{height:73.733333pt;}
.h3_c00395{height:77.466667pt;}
.ha_c00395{height:82.133333pt;}
.h2_c00395{height:129.733333pt;}
.h0_c00395{height:896.400000pt;}
.h1_c00395{height:896.666667pt;}
.w1_c00395{width:612.666667pt;}
.w0_c00395{width:612.933333pt;}
.x0_c00395{left:0.000000pt;}
.x49_c00395{left:91.920000pt;}
.x4a_c00395{left:119.040000pt;}
.x8_c00395{left:130.800000pt;}
.x2d_c00395{left:144.240000pt;}
.x1c_c00395{left:146.400000pt;}
.xd_c00395{left:147.600000pt;}
.x3_c00395{left:149.520000pt;}
.x36_c00395{left:156.000000pt;}
.x9_c00395{left:167.280000pt;}
.x2e_c00395{left:176.400000pt;}
.xa_c00395{left:180.720000pt;}
.x2f_c00395{left:191.760000pt;}
.x29_c00395{left:193.680000pt;}
.x19_c00395{left:195.360000pt;}
.xb_c00395{left:200.400000pt;}
.x20_c00395{left:205.440000pt;}
.x3d_c00395{left:207.120000pt;}
.x37_c00395{left:208.800000pt;}
.x21_c00395{left:216.720000pt;}
.x30_c00395{left:218.160000pt;}
.x2a_c00395{left:219.840000pt;}
.x4_c00395{left:230.160000pt;}
.x31_c00395{left:235.200000pt;}
.x1_c00395{left:237.840000pt;}
.x38_c00395{left:240.960000pt;}
.xe_c00395{left:242.640000pt;}
.xc_c00395{left:243.600000pt;}
.x32_c00395{left:246.960000pt;}
.x39_c00395{left:265.440000pt;}
.xf_c00395{left:270.240000pt;}
.x22_c00395{left:273.360000pt;}
.x3e_c00395{left:276.720000pt;}
.x43_c00395{left:285.360000pt;}
.x2b_c00395{left:292.320000pt;}
.x23_c00395{left:295.200000pt;}
.x1d_c00395{left:301.440000pt;}
.x44_c00395{left:307.200000pt;}
.x10_c00395{left:309.360000pt;}
.x24_c00395{left:316.800000pt;}
.x33_c00395{left:323.040000pt;}
.x2_c00395{left:326.880000pt;}
.x3f_c00395{left:337.440000pt;}
.x11_c00395{left:340.560000pt;}
.x45_c00395{left:345.120000pt;}
.x3a_c00395{left:349.680000pt;}
.x35_c00395{left:352.320000pt;}
.x1a_c00395{left:354.480000pt;}
.x12_c00395{left:359.280000pt;}
.x1e_c00395{left:365.280000pt;}
.x25_c00395{left:380.160000pt;}
.x46_c00395{left:383.280000pt;}
.x1f_c00395{left:387.360000pt;}
.x3b_c00395{left:401.040000pt;}
.x13_c00395{left:409.200000pt;}
.x3c_c00395{left:413.520000pt;}
.x40_c00395{left:420.720000pt;}
.x14_c00395{left:422.880000pt;}
.x26_c00395{left:424.800000pt;}
.x41_c00395{left:436.560000pt;}
.x5_c00395{left:442.320000pt;}
.x15_c00395{left:458.640000pt;}
.x16_c00395{left:481.440000pt;}
.x17_c00395{left:500.880000pt;}
.x27_c00395{left:504.720000pt;}
.x6_c00395{left:511.920000pt;}
.x28_c00395{left:524.400000pt;}
.x34_c00395{left:529.200000pt;}
.x7_c00395{left:533.280000pt;}
.x47_c00395{left:586.560000pt;}
.x42_c00395{left:587.520000pt;}
.x2c_c00395{left:589.680000pt;}
.x1b_c00395{left:591.120000pt;}
.x48_c00395{left:598.080000pt;}
.x18_c00395{left:600.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_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;}
.sc__c00396{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
}
.y0_c00396{bottom:0.000000px;}
.h1_c00396{height:1005.000000px;}
.h0_c00396{height:1005.150000px;}
.w0_c00396{width:715.200000px;}
.w1_c00396{width:715.500000px;}
.x0_c00396{left:0.000000px;}
@media print{
.y0_c00396{bottom:0.000000pt;}
.h1_c00396{height:893.333333pt;}
.h0_c00396{height:893.466667pt;}
.w0_c00396{width:635.733333pt;}
.w1_c00396{width:636.000000pt;}
.x0_c00396{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_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_9ae85e9faa49507919ebdb39.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;}
.m2_c00397{transform:matrix(0.001455,-0.161633,0.249990,0.002250,0,0);-ms-transform:matrix(0.001455,-0.161633,0.249990,0.002250,0,0);-webkit-transform:matrix(0.001455,-0.161633,0.249990,0.002250,0,0);}
.m1_c00397{transform:matrix(0.005004,0.104155,-0.249712,0.011998,0,0);-ms-transform:matrix(0.005004,0.104155,-0.249712,0.011998,0,0);-webkit-transform:matrix(0.005004,0.104155,-0.249712,0.011998,0,0);}
.m3_c00397{transform:matrix(0.005794,-0.386267,0.249972,0.003750,0,0);-ms-transform:matrix(0.005794,-0.386267,0.249972,0.003750,0,0);-webkit-transform:matrix(0.005794,-0.386267,0.249972,0.003750,0,0);}
.m6_c00397{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);}
.m4_c00397{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);}
.m5_c00397{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);}
.m0_c00397{transform:matrix(0.347520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347520,0.000000,0.000000,0.250000,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;}
.fs4_c00397{font-size:22.050000px;}
.fs0_c00397{font-size:23.100000px;}
.fs1_c00397{font-size:31.504803px;}
.fs2_c00397{font-size:33.601361px;}
.fs3_c00397{font-size:33.603780px;}
.y0_c00397{bottom:0.000000px;}
.y4_c00397{bottom:649.615500px;}
.y3_c00397{bottom:689.577000px;}
.y6_c00397{bottom:765.994500px;}
.y7_c00397{bottom:766.260000px;}
.y5_c00397{bottom:774.090000px;}
.y2_c00397{bottom:884.520000px;}
.y1_c00397{bottom:903.690000px;}
.h6_c00397{height:22.050000px;}
.h2_c00397{height:23.100000px;}
.h3_c00397{height:31.504803px;}
.h4_c00397{height:33.601361px;}
.h5_c00397{height:33.603780px;}
.h0_c00397{height:1008.450000px;}
.h1_c00397{height:1008.750000px;}
.w1_c00397{width:689.250000px;}
.w0_c00397{width:689.550000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:101.520000px;}
.x1_c00397{left:139.320000px;}
.x6_c00397{left:419.040000px;}
.x5_c00397{left:429.840000px;}
.x4_c00397{left:453.060000px;}
.x3_c00397{left:583.740000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.fs4_c00397{font-size:19.600000pt;}
.fs0_c00397{font-size:20.533333pt;}
.fs1_c00397{font-size:28.004270pt;}
.fs2_c00397{font-size:29.867876pt;}
.fs3_c00397{font-size:29.870026pt;}
.y0_c00397{bottom:0.000000pt;}
.y4_c00397{bottom:577.436000pt;}
.y3_c00397{bottom:612.957333pt;}
.y6_c00397{bottom:680.884000pt;}
.y7_c00397{bottom:681.120000pt;}
.y5_c00397{bottom:688.080000pt;}
.y2_c00397{bottom:786.240000pt;}
.y1_c00397{bottom:803.280000pt;}
.h6_c00397{height:19.600000pt;}
.h2_c00397{height:20.533333pt;}
.h3_c00397{height:28.004270pt;}
.h4_c00397{height:29.867876pt;}
.h5_c00397{height:29.870026pt;}
.h0_c00397{height:896.400000pt;}
.h1_c00397{height:896.666667pt;}
.w1_c00397{width:612.666667pt;}
.w0_c00397{width:612.933333pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:90.240000pt;}
.x1_c00397{left:123.840000pt;}
.x6_c00397{left:372.480000pt;}
.x5_c00397{left:382.080000pt;}
.x4_c00397{left:402.720000pt;}
.x3_c00397{left:518.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_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_ef4e99a7aa2876b3106553d3.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;}
.m102_c00398{transform:matrix(0.007721,0.000239,-0.007746,0.249880,0,0);-ms-transform:matrix(0.007721,0.000239,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.007721,0.000239,-0.007746,0.249880,0,0);}
.md8_c00398{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);}
.ma2_c00398{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_c00398{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.ma5_c00398{transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);}
.me2_c00398{transform:matrix(0.057490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057490,0.000000,0.000000,0.250000,0,0);}
.me0_c00398{transform:matrix(0.078920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078920,0.000000,0.000000,0.250000,0,0);}
.m100_c00398{transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);}
.m6a_c00398{transform:matrix(0.082890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082890,0.000000,0.000000,0.250000,0,0);}
.m41_c00398{transform:matrix(0.098335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098335,0.000000,0.000000,0.250000,0,0);}
.m69_c00398{transform:matrix(0.106370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106370,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);}
.m99_c00398{transform:matrix(0.137585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00398{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);}
.m104_c00398{transform:matrix(0.146849,0.004552,-0.007746,0.249880,0,0);-ms-transform:matrix(0.146849,0.004552,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.146849,0.004552,-0.007746,0.249880,0,0);}
.m81_c00398{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);}
.m73_c00398{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);}
.mbf_c00398{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);}
.m7f_c00398{transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);}
.m8f_c00398{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);}
.m1f_c00398{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m8d_c00398{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);}
.m55_c00398{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);}
.m38_c00398{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);}
.m8e_c00398{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);}
.m7_c00398{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);}
.m58_c00398{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);}
.mb_c00398{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);}
.ma_c00398{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);}
.m106_c00398{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);}
.mfc_c00398{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);}
.m9_c00398{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);}
.mdd_c00398{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);}
.m86_c00398{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);}
.m27_c00398{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);}
.m23_c00398{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);}
.mf8_c00398{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);}
.mfe_c00398{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);}
.mc1_c00398{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);}
.m5f_c00398{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);}
.m82_c00398{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);}
.m87_c00398{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);}
.m92_c00398{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);}
.mc_c00398{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);}
.m57_c00398{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);}
.m4f_c00398{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);}
.mc2_c00398{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);}
.m4b_c00398{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);}
.m25_c00398{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);}
.m33_c00398{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_c00398{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);}
.m93_c00398{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);}
.m4e_c00398{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);}
.ma1_c00398{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);}
.m6_c00398{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);}
.md7_c00398{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);}
.m8a_c00398{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);}
.m53_c00398{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);}
.m4a_c00398{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);}
.md_c00398{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);}
.mf3_c00398{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);}
.me3_c00398{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);}
.m90_c00398{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);}
.mad_c00398{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);}
.mde_c00398{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);}
.m35_c00398{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);}
.mda_c00398{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);}
.maf_c00398{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);}
.m2c_c00398{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);}
.m83_c00398{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);}
.m48_c00398{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);}
.mec_c00398{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);}
.m45_c00398{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);}
.mc4_c00398{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);}
.m3b_c00398{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);}
.m19_c00398{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);}
.m17_c00398{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);}
.m88_c00398{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);}
.m40_c00398{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);}
.m1d_c00398{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);}
.m56_c00398{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);}
.meb_c00398{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);}
.m7d_c00398{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);}
.m9c_c00398{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);}
.mb0_c00398{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);}
.mdb_c00398{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);}
.m6f_c00398{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);}
.m8c_c00398{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);}
.m65_c00398{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);}
.m68_c00398{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);}
.m74_c00398{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);}
.m80_c00398{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);}
.m52_c00398{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);}
.m5d_c00398{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);}
.m7a_c00398{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);}
.mbc_c00398{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);}
.m2e_c00398{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);}
.mc5_c00398{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);}
.m79_c00398{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);}
.m72_c00398{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);}
.me_c00398{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);}
.mcb_c00398{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);}
.m11_c00398{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);}
.m4d_c00398{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);}
.m4_c00398{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);}
.m9a_c00398{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);}
.m13_c00398{transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);}
.m7e_c00398{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);}
.m78_c00398{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);}
.m89_c00398{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);}
.mf9_c00398{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);}
.mf_c00398{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);}
.mbb_c00398{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);}
.m37_c00398{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);}
.m9b_c00398{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);}
.m22_c00398{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);}
.m61_c00398{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);}
.m24_c00398{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);}
.med_c00398{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);}
.m21_c00398{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);}
.m18_c00398{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);}
.m46_c00398{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);}
.md6_c00398{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);}
.md0_c00398{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);}
.m2f_c00398{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);}
.mf6_c00398{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);}
.m44_c00398{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);}
.ma9_c00398{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);}
.m3_c00398{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);}
.m50_c00398{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);}
.m8_c00398{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);}
.m8b_c00398{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);}
.m7c_c00398{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);}
.m39_c00398{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);}
.m49_c00398{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);}
.m10_c00398{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);}
.mc7_c00398{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);}
.m51_c00398{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);}
.mc9_c00398{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);}
.m85_c00398{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);}
.m9e_c00398{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);}
.m84_c00398{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);}
.m67_c00398{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);}
.mf0_c00398{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);}
.maa_c00398{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00398{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);}
.m3c_c00398{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.mfd_c00398{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);}
.m66_c00398{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);}
.mef_c00398{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);}
.m32_c00398{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);}
.m9f_c00398{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);}
.me7_c00398{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);}
.mc3_c00398{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);}
.mc6_c00398{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);}
.m12_c00398{transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229630,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);}
.m3f_c00398{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);}
.mb9_c00398{transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);}
.m3a_c00398{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);}
.m5_c00398{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.md1_c00398{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);}
.m3d_c00398{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);}
.m76_c00398{transform:matrix(0.232720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232720,0.000000,0.000000,0.250000,0,0);}
.m91_c00398{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);}
.mcd_c00398{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);}
.md9_c00398{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);}
.me9_c00398{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);}
.mf1_c00398{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);}
.mcc_c00398{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);}
.ma0_c00398{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);}
.m16_c00398{transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);}
.m30_c00398{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m97_c00398{transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237130,0.000000,0.000000,0.250000,0,0);}
.mf5_c00398{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);}
.mcf_c00398{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);}
.m47_c00398{transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);}
.mf4_c00398{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);}
.m6e_c00398{transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{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);}
.m1b_c00398{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);}
.me6_c00398{transform:matrix(0.240380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240380,0.000000,0.000000,0.250000,0,0);}
.mbe_c00398{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{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);}
.m43_c00398{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);}
.m71_c00398{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);}
.m94_c00398{transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{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);}
.m5b_c00398{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);}
.mb1_c00398{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);}
.m98_c00398{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);}
.mb5_c00398{transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.mfa_c00398{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);}
.m1e_c00398{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00398{transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);}
.mee_c00398{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);}
.mf7_c00398{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{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);}
.ma8_c00398{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.mc8_c00398{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.m64_c00398{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);}
.m9d_c00398{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);}
.mab_c00398{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);}
.mb4_c00398{transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259775,0.000000,0.000000,0.250000,0,0);}
.m6d_c00398{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);}
.m2d_c00398{transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00398{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);}
.me4_c00398{transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);}
.mca_c00398{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);}
.m36_c00398{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);}
.mbd_c00398{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);}
.me1_c00398{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);}
.ma4_c00398{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);}
.m5c_c00398{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);}
.m103_c00398{transform:matrix(0.269141,0.008343,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269141,0.008343,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269141,0.008343,-0.007746,0.249880,0,0);}
.mba_c00398{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m42_c00398{transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);}
.mc0_c00398{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);}
.m77_c00398{transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);}
.m75_c00398{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);}
.mf2_c00398{transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);}
.mac_c00398{transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278730,0.000000,0.000000,0.250000,0,0);}
.m95_c00398{transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279285,0.000000,0.000000,0.250000,0,0);}
.md3_c00398{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.me5_c00398{transform:matrix(0.281490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281490,0.000000,0.000000,0.250000,0,0);}
.m60_c00398{transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);}
.mb6_c00398{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);}
.m15_c00398{transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);}
.m5a_c00398{transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301405,0.000000,0.000000,0.250000,0,0);}
.mff_c00398{transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302620,0.000000,0.000000,0.250000,0,0);}
.mb8_c00398{transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308315,0.000000,0.000000,0.250000,0,0);}
.mfb_c00398{transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311265,0.000000,0.000000,0.250000,0,0);}
.mea_c00398{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me8_c00398{transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316185,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);}
.m96_c00398{transform:matrix(0.329805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329805,0.000000,0.000000,0.250000,0,0);}
.m7b_c00398{transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330540,0.000000,0.000000,0.250000,0,0);}
.md2_c00398{transform:matrix(0.330755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330755,0.000000,0.000000,0.250000,0,0);}
.mdf_c00398{transform:matrix(0.331560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331560,0.000000,0.000000,0.250000,0,0);}
.ma7_c00398{transform:matrix(0.336810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336810,0.000000,0.000000,0.250000,0,0);}
.mb2_c00398{transform:matrix(0.347670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347670,0.000000,0.000000,0.250000,0,0);}
.mce_c00398{transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350995,0.000000,0.000000,0.250000,0,0);}
.m6b_c00398{transform:matrix(0.360515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360515,0.000000,0.000000,0.250000,0,0);}
.md5_c00398{transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363790,0.000000,0.000000,0.250000,0,0);}
.m101_c00398{transform:matrix(0.371137,0.011505,-0.007746,0.249880,0,0);-ms-transform:matrix(0.371137,0.011505,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.371137,0.011505,-0.007746,0.249880,0,0);}
.mb7_c00398{transform:matrix(0.392180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392180,0.000000,0.000000,0.250000,0,0);}
.ma3_c00398{transform:matrix(0.392515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392515,0.000000,0.000000,0.250000,0,0);}
.m70_c00398{transform:matrix(0.392540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392540,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.437515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437515,0.000000,0.000000,0.250000,0,0);}
.mae_c00398{transform:matrix(0.464010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464010,0.000000,0.000000,0.250000,0,0);}
.mdc_c00398{transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473520,0.000000,0.000000,0.250000,0,0);}
.m105_c00398{transform:matrix(0.501100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501100,0.000000,0.000000,0.250000,0,0);}
.m63_c00398{transform:matrix(0.504045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504045,0.000000,0.000000,0.250000,0,0);}
.m62_c00398{transform:matrix(0.539505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539505,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{transform:matrix(0.640980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640980,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.869355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869355,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.979855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.979855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.979855,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(1.024855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.024855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.024855,0.000000,0.000000,0.250000,0,0);}
.m2b_c00398{transform:matrix(1.499895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.499895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.499895,0.000000,0.000000,0.250000,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;}
.fs14_c00398{font-size:16.800000px;}
.fs13_c00398{font-size:22.050000px;}
.fs19_c00398{font-size:24.150000px;}
.fs4_c00398{font-size:36.750000px;}
.fs12_c00398{font-size:44.100000px;}
.fs15_c00398{font-size:45.150000px;}
.fs17_c00398{font-size:46.200000px;}
.fs2_c00398{font-size:47.250000px;}
.fs3_c00398{font-size:48.300000px;}
.fse_c00398{font-size:49.350000px;}
.fs0_c00398{font-size:50.400000px;}
.fs5_c00398{font-size:51.450000px;}
.fs10_c00398{font-size:52.500000px;}
.fs16_c00398{font-size:53.550000px;}
.fsf_c00398{font-size:55.650000px;}
.fs11_c00398{font-size:58.800000px;}
.fs6_c00398{font-size:59.850000px;}
.fs1_c00398{font-size:63.000000px;}
.fs7_c00398{font-size:65.100000px;}
.fs8_c00398{font-size:67.200000px;}
.fs9_c00398{font-size:69.300000px;}
.fsa_c00398{font-size:70.350000px;}
.fsb_c00398{font-size:73.500000px;}
.fsc_c00398{font-size:75.600000px;}
.fsd_c00398{font-size:77.700000px;}
.fs18_c00398{font-size:84.040352px;}
.y0_c00398{bottom:0.000000px;}
.y8_c00398{bottom:93.351000px;}
.y32_c00398{bottom:93.420000px;}
.y31_c00398{bottom:124.040654px;}
.y30_c00398{bottom:125.403476px;}
.y2f_c00398{bottom:127.824312px;}
.y2e_c00398{bottom:130.420500px;}
.y7_c00398{bottom:137.137500px;}
.y2d_c00398{bottom:137.593500px;}
.y1d_c00398{bottom:158.671500px;}
.y2c_c00398{bottom:158.974500px;}
.y1c_c00398{bottom:176.850000px;}
.y2b_c00398{bottom:177.093000px;}
.y6_c00398{bottom:194.557500px;}
.y2a_c00398{bottom:194.965500px;}
.y5_c00398{bottom:205.470000px;}
.y1b_c00398{bottom:212.101500px;}
.y29_c00398{bottom:212.952000px;}
.y1a_c00398{bottom:229.588500px;}
.y28_c00398{bottom:230.527500px;}
.y4_c00398{bottom:247.548000px;}
.y27_c00398{bottom:248.965500px;}
.y19_c00398{bottom:265.494000px;}
.y26_c00398{bottom:266.605500px;}
.y3_c00398{bottom:283.410000px;}
.y25_c00398{bottom:284.467500px;}
.y18_c00398{bottom:298.261500px;}
.y17_c00398{bottom:298.851000px;}
.y16_c00398{bottom:299.092500px;}
.y15_c00398{bottom:300.255000px;}
.y14_c00398{bottom:300.666000px;}
.y13_c00398{bottom:301.321500px;}
.y24_c00398{bottom:302.172000px;}
.y12_c00398{bottom:317.641500px;}
.y23_c00398{bottom:320.556000px;}
.y2_c00398{bottom:337.098000px;}
.y22_c00398{bottom:338.310000px;}
.y11_c00398{bottom:354.564000px;}
.y21_c00398{bottom:356.130000px;}
.y1_c00398{bottom:372.567000px;}
.y20_c00398{bottom:374.190000px;}
.y10_c00398{bottom:423.513000px;}
.yf_c00398{bottom:446.103000px;}
.ye_c00398{bottom:468.726000px;}
.yd_c00398{bottom:491.407500px;}
.yc_c00398{bottom:514.429500px;}
.yb_c00398{bottom:536.811000px;}
.ya_c00398{bottom:559.360500px;}
.y9_c00398{bottom:581.580000px;}
.y1f_c00398{bottom:612.093000px;}
.y1e_c00398{bottom:616.275000px;}
.h16_c00398{height:16.800000px;}
.h15_c00398{height:22.050000px;}
.h1b_c00398{height:24.150000px;}
.h6_c00398{height:36.750000px;}
.h14_c00398{height:44.100000px;}
.h17_c00398{height:45.150000px;}
.h19_c00398{height:46.200000px;}
.h4_c00398{height:47.250000px;}
.h5_c00398{height:48.300000px;}
.h10_c00398{height:49.350000px;}
.h2_c00398{height:50.400000px;}
.h7_c00398{height:51.450000px;}
.h12_c00398{height:52.500000px;}
.h18_c00398{height:53.550000px;}
.h11_c00398{height:55.650000px;}
.h13_c00398{height:58.800000px;}
.h8_c00398{height:59.850000px;}
.h3_c00398{height:63.000000px;}
.h9_c00398{height:65.100000px;}
.ha_c00398{height:67.200000px;}
.hb_c00398{height:69.300000px;}
.hc_c00398{height:70.350000px;}
.hd_c00398{height:73.500000px;}
.he_c00398{height:75.600000px;}
.hf_c00398{height:77.700000px;}
.h1a_c00398{height:84.040352px;}
.h1_c00398{height:1005.000000px;}
.h0_c00398{height:1005.150000px;}
.w0_c00398{width:715.200000px;}
.w1_c00398{width:715.500000px;}
.x0_c00398{left:0.000000px;}
.x8_c00398{left:93.150000px;}
.xe_c00398{left:94.230000px;}
.x1_c00398{left:97.740000px;}
.x26_c00398{left:102.600000px;}
.x2_c00398{left:106.650000px;}
.x61_c00398{left:107.730000px;}
.x49_c00398{left:114.210000px;}
.x24_c00398{left:116.100000px;}
.xf_c00398{left:118.260000px;}
.x50_c00398{left:122.310000px;}
.x3_c00398{left:123.930000px;}
.x14_c00398{left:126.090000px;}
.x36_c00398{left:127.980000px;}
.x2d_c00398{left:129.060000px;}
.x1a_c00398{left:131.220000px;}
.x9_c00398{left:133.650000px;}
.x15_c00398{left:140.670000px;}
.x21_c00398{left:143.910000px;}
.x27_c00398{left:146.070000px;}
.x1b_c00398{left:148.770000px;}
.x4a_c00398{left:151.470000px;}
.x16_c00398{left:153.900000px;}
.x62_c00398{left:156.060000px;}
.x5a_c00398{left:159.300000px;}
.x65_c00398{left:160.650000px;}
.x10_c00398{left:165.240000px;}
.xa_c00398{left:168.480000px;}
.x2e_c00398{left:172.260000px;}
.x51_c00398{left:173.340000px;}
.x5b_c00398{left:175.500000px;}
.x4_c00398{left:183.330000px;}
.x1c_c00398{left:184.410000px;}
.x6a_c00398{left:186.570000px;}
.x1d_c00398{left:188.730000px;}
.x2f_c00398{left:192.240000px;}
.x3a_c00398{left:193.590000px;}
.x67_c00398{left:197.640000px;}
.x1e_c00398{left:204.390000px;}
.x4b_c00398{left:206.820000px;}
.x5c_c00398{left:209.790000px;}
.x22_c00398{left:211.680000px;}
.x68_c00398{left:215.730000px;}
.x17_c00398{left:218.970000px;}
.x52_c00398{left:223.560000px;}
.xb_c00398{left:226.260000px;}
.x66_c00398{left:228.150000px;}
.x5_c00398{left:232.200000px;}
.x11_c00398{left:236.250000px;}
.x30_c00398{left:238.950000px;}
.x3e_c00398{left:245.970000px;}
.x44_c00398{left:252.720000px;}
.x3b_c00398{left:254.340000px;}
.x6_c00398{left:255.690000px;}
.x23_c00398{left:259.470000px;}
.x25_c00398{left:260.550000px;}
.x5f_c00398{left:265.251000px;}
.x37_c00398{left:269.460000px;}
.x1f_c00398{left:271.080000px;}
.x12_c00398{left:273.510000px;}
.x5d_c00398{left:277.830000px;}
.x18_c00398{left:279.720000px;}
.x53_c00398{left:280.800000px;}
.x6b_c00398{left:281.880000px;}
.x60_c00398{left:283.864500px;}
.xc_c00398{left:285.390000px;}
.x63_c00398{left:286.470000px;}
.x4c_c00398{left:289.170000px;}
.x54_c00398{left:290.520000px;}
.x13_c00398{left:293.760000px;}
.x20_c00398{left:295.920000px;}
.x28_c00398{left:299.160000px;}
.x64_c00398{left:300.780000px;}
.xd_c00398{left:302.670000px;}
.x19_c00398{left:304.290000px;}
.x7_c00398{left:307.530000px;}
.x4d_c00398{left:310.770000px;}
.x3c_c00398{left:312.120000px;}
.x55_c00398{left:316.980000px;}
.x45_c00398{left:318.330000px;}
.x3f_c00398{left:319.680000px;}
.x69_c00398{left:326.700000px;}
.x5e_c00398{left:329.400000px;}
.x38_c00398{left:335.070000px;}
.x56_c00398{left:337.500000px;}
.x31_c00398{left:343.170000px;}
.x29_c00398{left:345.060000px;}
.x76_c00398{left:346.950000px;}
.x87_c00398{left:352.080000px;}
.x4e_c00398{left:355.320000px;}
.x40_c00398{left:357.210000px;}
.x32_c00398{left:359.370000px;}
.xa9_c00398{left:362.880000px;}
.x94_c00398{left:366.390000px;}
.x7e_c00398{left:369.360000px;}
.x9a_c00398{left:373.950000px;}
.x95_c00398{left:375.030000px;}
.x57_c00398{left:377.460000px;}
.x46_c00398{left:379.080000px;}
.x3d_c00398{left:381.240000px;}
.x41_c00398{left:382.860000px;}
.x77_c00398{left:385.560000px;}
.x9b_c00398{left:391.230000px;}
.xa5_c00398{left:392.794500px;}
.xa1_c00398{left:393.930000px;}
.x58_c00398{left:397.440000px;}
.x78_c00398{left:398.520000px;}
.x2a_c00398{left:402.840000px;}
.x88_c00398{left:403.920000px;}
.x2b_c00398{left:405.000000px;}
.x84_c00398{left:407.700000px;}
.x33_c00398{left:410.130000px;}
.xa4_c00398{left:411.480000px;}
.x47_c00398{left:413.640000px;}
.x8b_c00398{left:415.800000px;}
.x42_c00398{left:417.150000px;}
.x80_c00398{left:420.120000px;}
.x7f_c00398{left:421.200000px;}
.xa2_c00398{left:422.820000px;}
.x39_c00398{left:424.710000px;}
.x34_c00398{left:427.680000px;}
.x9c_c00398{left:430.110000px;}
.x79_c00398{left:434.430000px;}
.x48_c00398{left:436.590000px;}
.x8e_c00398{left:439.830000px;}
.x9e_c00398{left:444.690000px;}
.x8f_c00398{left:446.580000px;}
.x89_c00398{left:455.220000px;}
.x81_c00398{left:457.380000px;}
.x7a_c00398{left:459.270000px;}
.x90_c00398{left:462.510000px;}
.x85_c00398{left:466.290000px;}
.x59_c00398{left:467.370000px;}
.x72_c00398{left:472.230000px;}
.xa6_c00398{left:476.542500px;}
.x43_c00398{left:478.710000px;}
.x96_c00398{left:480.060000px;}
.x8c_c00398{left:481.950000px;}
.x6c_c00398{left:483.030000px;}
.x2c_c00398{left:485.730000px;}
.xaa_c00398{left:486.810000px;}
.x91_c00398{left:490.860000px;}
.x6f_c00398{left:492.480000px;}
.x35_c00398{left:493.830000px;}
.x4f_c00398{left:498.150000px;}
.x97_c00398{left:500.310000px;}
.x70_c00398{left:502.740000px;}
.x6d_c00398{left:503.820000px;}
.x8d_c00398{left:504.900000px;}
.x7b_c00398{left:507.060000px;}
.x82_c00398{left:511.920000px;}
.x71_c00398{left:517.860000px;}
.x73_c00398{left:520.020000px;}
.x6e_c00398{left:525.420000px;}
.x92_c00398{left:527.310000px;}
.x9f_c00398{left:528.930000px;}
.x83_c00398{left:532.170000px;}
.x74_c00398{left:535.410000px;}
.xa3_c00398{left:541.890000px;}
.x98_c00398{left:543.510000px;}
.x9d_c00398{left:546.750000px;}
.x75_c00398{left:548.100000px;}
.x8a_c00398{left:552.150000px;}
.x86_c00398{left:553.500000px;}
.xa7_c00398{left:554.634000px;}
.x7d_c00398{left:561.600000px;}
.x7c_c00398{left:562.950000px;}
.xa0_c00398{left:566.190000px;}
.x93_c00398{left:575.370000px;}
.x99_c00398{left:582.120000px;}
.xa8_c00398{left:598.596000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fs14_c00398{font-size:14.933333pt;}
.fs13_c00398{font-size:19.600000pt;}
.fs19_c00398{font-size:21.466667pt;}
.fs4_c00398{font-size:32.666667pt;}
.fs12_c00398{font-size:39.200000pt;}
.fs15_c00398{font-size:40.133333pt;}
.fs17_c00398{font-size:41.066667pt;}
.fs2_c00398{font-size:42.000000pt;}
.fs3_c00398{font-size:42.933333pt;}
.fse_c00398{font-size:43.866667pt;}
.fs0_c00398{font-size:44.800000pt;}
.fs5_c00398{font-size:45.733333pt;}
.fs10_c00398{font-size:46.666667pt;}
.fs16_c00398{font-size:47.600000pt;}
.fsf_c00398{font-size:49.466667pt;}
.fs11_c00398{font-size:52.266667pt;}
.fs6_c00398{font-size:53.200000pt;}
.fs1_c00398{font-size:56.000000pt;}
.fs7_c00398{font-size:57.866667pt;}
.fs8_c00398{font-size:59.733333pt;}
.fs9_c00398{font-size:61.600000pt;}
.fsa_c00398{font-size:62.533333pt;}
.fsb_c00398{font-size:65.333333pt;}
.fsc_c00398{font-size:67.200000pt;}
.fsd_c00398{font-size:69.066667pt;}
.fs18_c00398{font-size:74.702535pt;}
.y0_c00398{bottom:0.000000pt;}
.y8_c00398{bottom:82.978667pt;}
.y32_c00398{bottom:83.040000pt;}
.y31_c00398{bottom:110.258359pt;}
.y30_c00398{bottom:111.469756pt;}
.y2f_c00398{bottom:113.621611pt;}
.y2e_c00398{bottom:115.929333pt;}
.y7_c00398{bottom:121.900000pt;}
.y2d_c00398{bottom:122.305333pt;}
.y1d_c00398{bottom:141.041333pt;}
.y2c_c00398{bottom:141.310667pt;}
.y1c_c00398{bottom:157.200000pt;}
.y2b_c00398{bottom:157.416000pt;}
.y6_c00398{bottom:172.940000pt;}
.y2a_c00398{bottom:173.302667pt;}
.y5_c00398{bottom:182.640000pt;}
.y1b_c00398{bottom:188.534667pt;}
.y29_c00398{bottom:189.290667pt;}
.y1a_c00398{bottom:204.078667pt;}
.y28_c00398{bottom:204.913333pt;}
.y4_c00398{bottom:220.042667pt;}
.y27_c00398{bottom:221.302667pt;}
.y19_c00398{bottom:235.994667pt;}
.y26_c00398{bottom:236.982667pt;}
.y3_c00398{bottom:251.920000pt;}
.y25_c00398{bottom:252.860000pt;}
.y18_c00398{bottom:265.121333pt;}
.y17_c00398{bottom:265.645333pt;}
.y16_c00398{bottom:265.860000pt;}
.y15_c00398{bottom:266.893333pt;}
.y14_c00398{bottom:267.258667pt;}
.y13_c00398{bottom:267.841333pt;}
.y24_c00398{bottom:268.597333pt;}
.y12_c00398{bottom:282.348000pt;}
.y23_c00398{bottom:284.938667pt;}
.y2_c00398{bottom:299.642667pt;}
.y22_c00398{bottom:300.720000pt;}
.y11_c00398{bottom:315.168000pt;}
.y21_c00398{bottom:316.560000pt;}
.y1_c00398{bottom:331.170667pt;}
.y20_c00398{bottom:332.613333pt;}
.y10_c00398{bottom:376.456000pt;}
.yf_c00398{bottom:396.536000pt;}
.ye_c00398{bottom:416.645333pt;}
.yd_c00398{bottom:436.806667pt;}
.yc_c00398{bottom:457.270667pt;}
.yb_c00398{bottom:477.165333pt;}
.ya_c00398{bottom:497.209333pt;}
.y9_c00398{bottom:516.960000pt;}
.y1f_c00398{bottom:544.082667pt;}
.y1e_c00398{bottom:547.800000pt;}
.h16_c00398{height:14.933333pt;}
.h15_c00398{height:19.600000pt;}
.h1b_c00398{height:21.466667pt;}
.h6_c00398{height:32.666667pt;}
.h14_c00398{height:39.200000pt;}
.h17_c00398{height:40.133333pt;}
.h19_c00398{height:41.066667pt;}
.h4_c00398{height:42.000000pt;}
.h5_c00398{height:42.933333pt;}
.h10_c00398{height:43.866667pt;}
.h2_c00398{height:44.800000pt;}
.h7_c00398{height:45.733333pt;}
.h12_c00398{height:46.666667pt;}
.h18_c00398{height:47.600000pt;}
.h11_c00398{height:49.466667pt;}
.h13_c00398{height:52.266667pt;}
.h8_c00398{height:53.200000pt;}
.h3_c00398{height:56.000000pt;}
.h9_c00398{height:57.866667pt;}
.ha_c00398{height:59.733333pt;}
.hb_c00398{height:61.600000pt;}
.hc_c00398{height:62.533333pt;}
.hd_c00398{height:65.333333pt;}
.he_c00398{height:67.200000pt;}
.hf_c00398{height:69.066667pt;}
.h1a_c00398{height:74.702535pt;}
.h1_c00398{height:893.333333pt;}
.h0_c00398{height:893.466667pt;}
.w0_c00398{width:635.733333pt;}
.w1_c00398{width:636.000000pt;}
.x0_c00398{left:0.000000pt;}
.x8_c00398{left:82.800000pt;}
.xe_c00398{left:83.760000pt;}
.x1_c00398{left:86.880000pt;}
.x26_c00398{left:91.200000pt;}
.x2_c00398{left:94.800000pt;}
.x61_c00398{left:95.760000pt;}
.x49_c00398{left:101.520000pt;}
.x24_c00398{left:103.200000pt;}
.xf_c00398{left:105.120000pt;}
.x50_c00398{left:108.720000pt;}
.x3_c00398{left:110.160000pt;}
.x14_c00398{left:112.080000pt;}
.x36_c00398{left:113.760000pt;}
.x2d_c00398{left:114.720000pt;}
.x1a_c00398{left:116.640000pt;}
.x9_c00398{left:118.800000pt;}
.x15_c00398{left:125.040000pt;}
.x21_c00398{left:127.920000pt;}
.x27_c00398{left:129.840000pt;}
.x1b_c00398{left:132.240000pt;}
.x4a_c00398{left:134.640000pt;}
.x16_c00398{left:136.800000pt;}
.x62_c00398{left:138.720000pt;}
.x5a_c00398{left:141.600000pt;}
.x65_c00398{left:142.800000pt;}
.x10_c00398{left:146.880000pt;}
.xa_c00398{left:149.760000pt;}
.x2e_c00398{left:153.120000pt;}
.x51_c00398{left:154.080000pt;}
.x5b_c00398{left:156.000000pt;}
.x4_c00398{left:162.960000pt;}
.x1c_c00398{left:163.920000pt;}
.x6a_c00398{left:165.840000pt;}
.x1d_c00398{left:167.760000pt;}
.x2f_c00398{left:170.880000pt;}
.x3a_c00398{left:172.080000pt;}
.x67_c00398{left:175.680000pt;}
.x1e_c00398{left:181.680000pt;}
.x4b_c00398{left:183.840000pt;}
.x5c_c00398{left:186.480000pt;}
.x22_c00398{left:188.160000pt;}
.x68_c00398{left:191.760000pt;}
.x17_c00398{left:194.640000pt;}
.x52_c00398{left:198.720000pt;}
.xb_c00398{left:201.120000pt;}
.x66_c00398{left:202.800000pt;}
.x5_c00398{left:206.400000pt;}
.x11_c00398{left:210.000000pt;}
.x30_c00398{left:212.400000pt;}
.x3e_c00398{left:218.640000pt;}
.x44_c00398{left:224.640000pt;}
.x3b_c00398{left:226.080000pt;}
.x6_c00398{left:227.280000pt;}
.x23_c00398{left:230.640000pt;}
.x25_c00398{left:231.600000pt;}
.x5f_c00398{left:235.778667pt;}
.x37_c00398{left:239.520000pt;}
.x1f_c00398{left:240.960000pt;}
.x12_c00398{left:243.120000pt;}
.x5d_c00398{left:246.960000pt;}
.x18_c00398{left:248.640000pt;}
.x53_c00398{left:249.600000pt;}
.x6b_c00398{left:250.560000pt;}
.x60_c00398{left:252.324000pt;}
.xc_c00398{left:253.680000pt;}
.x63_c00398{left:254.640000pt;}
.x4c_c00398{left:257.040000pt;}
.x54_c00398{left:258.240000pt;}
.x13_c00398{left:261.120000pt;}
.x20_c00398{left:263.040000pt;}
.x28_c00398{left:265.920000pt;}
.x64_c00398{left:267.360000pt;}
.xd_c00398{left:269.040000pt;}
.x19_c00398{left:270.480000pt;}
.x7_c00398{left:273.360000pt;}
.x4d_c00398{left:276.240000pt;}
.x3c_c00398{left:277.440000pt;}
.x55_c00398{left:281.760000pt;}
.x45_c00398{left:282.960000pt;}
.x3f_c00398{left:284.160000pt;}
.x69_c00398{left:290.400000pt;}
.x5e_c00398{left:292.800000pt;}
.x38_c00398{left:297.840000pt;}
.x56_c00398{left:300.000000pt;}
.x31_c00398{left:305.040000pt;}
.x29_c00398{left:306.720000pt;}
.x76_c00398{left:308.400000pt;}
.x87_c00398{left:312.960000pt;}
.x4e_c00398{left:315.840000pt;}
.x40_c00398{left:317.520000pt;}
.x32_c00398{left:319.440000pt;}
.xa9_c00398{left:322.560000pt;}
.x94_c00398{left:325.680000pt;}
.x7e_c00398{left:328.320000pt;}
.x9a_c00398{left:332.400000pt;}
.x95_c00398{left:333.360000pt;}
.x57_c00398{left:335.520000pt;}
.x46_c00398{left:336.960000pt;}
.x3d_c00398{left:338.880000pt;}
.x41_c00398{left:340.320000pt;}
.x77_c00398{left:342.720000pt;}
.x9b_c00398{left:347.760000pt;}
.xa5_c00398{left:349.150667pt;}
.xa1_c00398{left:350.160000pt;}
.x58_c00398{left:353.280000pt;}
.x78_c00398{left:354.240000pt;}
.x2a_c00398{left:358.080000pt;}
.x88_c00398{left:359.040000pt;}
.x2b_c00398{left:360.000000pt;}
.x84_c00398{left:362.400000pt;}
.x33_c00398{left:364.560000pt;}
.xa4_c00398{left:365.760000pt;}
.x47_c00398{left:367.680000pt;}
.x8b_c00398{left:369.600000pt;}
.x42_c00398{left:370.800000pt;}
.x80_c00398{left:373.440000pt;}
.x7f_c00398{left:374.400000pt;}
.xa2_c00398{left:375.840000pt;}
.x39_c00398{left:377.520000pt;}
.x34_c00398{left:380.160000pt;}
.x9c_c00398{left:382.320000pt;}
.x79_c00398{left:386.160000pt;}
.x48_c00398{left:388.080000pt;}
.x8e_c00398{left:390.960000pt;}
.x9e_c00398{left:395.280000pt;}
.x8f_c00398{left:396.960000pt;}
.x89_c00398{left:404.640000pt;}
.x81_c00398{left:406.560000pt;}
.x7a_c00398{left:408.240000pt;}
.x90_c00398{left:411.120000pt;}
.x85_c00398{left:414.480000pt;}
.x59_c00398{left:415.440000pt;}
.x72_c00398{left:419.760000pt;}
.xa6_c00398{left:423.593333pt;}
.x43_c00398{left:425.520000pt;}
.x96_c00398{left:426.720000pt;}
.x8c_c00398{left:428.400000pt;}
.x6c_c00398{left:429.360000pt;}
.x2c_c00398{left:431.760000pt;}
.xaa_c00398{left:432.720000pt;}
.x91_c00398{left:436.320000pt;}
.x6f_c00398{left:437.760000pt;}
.x35_c00398{left:438.960000pt;}
.x4f_c00398{left:442.800000pt;}
.x97_c00398{left:444.720000pt;}
.x70_c00398{left:446.880000pt;}
.x6d_c00398{left:447.840000pt;}
.x8d_c00398{left:448.800000pt;}
.x7b_c00398{left:450.720000pt;}
.x82_c00398{left:455.040000pt;}
.x71_c00398{left:460.320000pt;}
.x73_c00398{left:462.240000pt;}
.x6e_c00398{left:467.040000pt;}
.x92_c00398{left:468.720000pt;}
.x9f_c00398{left:470.160000pt;}
.x83_c00398{left:473.040000pt;}
.x74_c00398{left:475.920000pt;}
.xa3_c00398{left:481.680000pt;}
.x98_c00398{left:483.120000pt;}
.x9d_c00398{left:486.000000pt;}
.x75_c00398{left:487.200000pt;}
.x8a_c00398{left:490.800000pt;}
.x86_c00398{left:492.000000pt;}
.xa7_c00398{left:493.008000pt;}
.x7d_c00398{left:499.200000pt;}
.x7c_c00398{left:500.400000pt;}
.xa0_c00398{left:503.280000pt;}
.x93_c00398{left:511.440000pt;}
.x99_c00398{left:517.440000pt;}
.xa8_c00398{left:532.085333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.mdf_c00399{transform:matrix(0.036590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036590,0.000000,0.000000,0.250000,0,0);}
.mb0_c00399{transform:matrix(0.058805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058805,0.000000,0.000000,0.250000,0,0);}
.m155_c00399{transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);}
.m12e_c00399{transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);}
.m10c_c00399{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);}
.m10e_c00399{transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);}
.m110_c00399{transform:matrix(0.097310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097310,0.000000,0.000000,0.250000,0,0);}
.maf_c00399{transform:matrix(0.107590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107590,0.000000,0.000000,0.250000,0,0);}
.m5c_c00399{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{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);}
.m10_c00399{transform:matrix(0.138580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138580,0.000000,0.000000,0.250000,0,0);}
.m13b_c00399{transform:matrix(0.140890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140890,0.000000,0.000000,0.250000,0,0);}
.mb3_c00399{transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);}
.m103_c00399{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);}
.m58_c00399{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);}
.md2_c00399{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);}
.m7a_c00399{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);}
.m4d_c00399{transform:matrix(0.146090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146090,0.000000,0.000000,0.250000,0,0);}
.mbe_c00399{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);}
.m87_c00399{transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);}
.m12f_c00399{transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{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);}
.m14_c00399{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);}
.m20_c00399{transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);}
.m13d_c00399{transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158890,0.000000,0.000000,0.250000,0,0);}
.mab_c00399{transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);}
.m5a_c00399{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);}
.m1e_c00399{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);}
.mf0_c00399{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);}
.ma2_c00399{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);}
.m150_c00399{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);}
.m61_c00399{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);}
.m52_c00399{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);}
.m5d_c00399{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);}
.me0_c00399{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);}
.mbd_c00399{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);}
.m63_c00399{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);}
.mbb_c00399{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);}
.m123_c00399{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);}
.m111_c00399{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);}
.m73_c00399{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);}
.mad_c00399{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);}
.m153_c00399{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);}
.ma4_c00399{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);}
.m74_c00399{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);}
.m79_c00399{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);}
.m3a_c00399{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);}
.m60_c00399{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);}
.m7c_c00399{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{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);}
.m12c_c00399{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);}
.ma5_c00399{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);}
.m134_c00399{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);}
.m154_c00399{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);}
.m78_c00399{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);}
.m35_c00399{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);}
.m11c_c00399{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);}
.m1f_c00399{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);}
.m75_c00399{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);}
.m129_c00399{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);}
.m51_c00399{transform:matrix(0.178205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178205,0.000000,0.000000,0.250000,0,0);}
.m140_c00399{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);}
.me1_c00399{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);}
.mc_c00399{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);}
.m13_c00399{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);}
.m22_c00399{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);}
.m7b_c00399{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);}
.m151_c00399{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);}
.m128_c00399{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);}
.m16_c00399{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);}
.m59_c00399{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);}
.md1_c00399{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m38_c00399{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);}
.m18_c00399{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);}
.ma7_c00399{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);}
.m127_c00399{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);}
.ma3_c00399{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);}
.m6f_c00399{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);}
.me7_c00399{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);}
.m3c_c00399{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);}
.m50_c00399{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);}
.m91_c00399{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);}
.m56_c00399{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);}
.m8b_c00399{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);}
.m12a_c00399{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);}
.m104_c00399{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);}
.m9e_c00399{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);}
.me4_c00399{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);}
.md_c00399{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);}
.m3d_c00399{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);}
.m125_c00399{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);}
.m92_c00399{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);}
.m7d_c00399{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);}
.mb1_c00399{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);}
.m65_c00399{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);}
.m9f_c00399{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);}
.m9d_c00399{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);}
.m11f_c00399{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);}
.m82_c00399{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);}
.m54_c00399{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);}
.md7_c00399{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);}
.m133_c00399{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);}
.me8_c00399{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_c00399{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);}
.m5_c00399{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);}
.m34_c00399{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);}
.m105_c00399{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);}
.m32_c00399{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);}
.m15_c00399{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);}
.mcd_c00399{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);}
.m132_c00399{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);}
.me_c00399{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);}
.m55_c00399{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);}
.m3b_c00399{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);}
.m62_c00399{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);}
.m1b_c00399{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);}
.m115_c00399{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);}
.mdd_c00399{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);}
.mb2_c00399{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);}
.m28_c00399{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);}
.mec_c00399{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);}
.m101_c00399{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);}
.m14c_c00399{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);}
.ma6_c00399{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);}
.m64_c00399{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);}
.m77_c00399{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);}
.m156_c00399{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);}
.m4a_c00399{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);}
.m69_c00399{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);}
.m4c_c00399{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);}
.m83_c00399{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);}
.m57_c00399{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.mb6_c00399{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);}
.m1c_c00399{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);}
.m23_c00399{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);}
.mea_c00399{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);}
.md3_c00399{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);}
.me2_c00399{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);}
.mce_c00399{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m53_c00399{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);}
.m7e_c00399{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);}
.mae_c00399{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);}
.me5_c00399{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);}
.m148_c00399{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);}
.m47_c00399{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.md8_c00399{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);}
.m5e_c00399{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);}
.mca_c00399{transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{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);}
.mf5_c00399{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);}
.m46_c00399{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);}
.m72_c00399{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);}
.m120_c00399{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);}
.m68_c00399{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);}
.mf6_c00399{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);}
.mb5_c00399{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);}
.meb_c00399{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);}
.m27_c00399{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);}
.m12b_c00399{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);}
.m7f_c00399{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);}
.m124_c00399{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);}
.mc8_c00399{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);}
.m70_c00399{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);}
.m4b_c00399{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);}
.m40_c00399{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);}
.m26_c00399{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);}
.m102_c00399{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);}
.mfd_c00399{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);}
.m66_c00399{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);}
.m118_c00399{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);}
.m119_c00399{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);}
.mf8_c00399{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);}
.m6_c00399{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);}
.m1d_c00399{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);}
.m37_c00399{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);}
.m113_c00399{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);}
.mcb_c00399{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);}
.me9_c00399{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{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);}
.m10f_c00399{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);}
.mda_c00399{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);}
.m141_c00399{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);}
.m8e_c00399{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);}
.m2f_c00399{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);}
.m6c_c00399{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);}
.m14d_c00399{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);}
.mf_c00399{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);}
.mfe_c00399{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);}
.m122_c00399{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);}
.m71_c00399{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_c00399{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);}
.m7_c00399{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);}
.m11_c00399{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);}
.m95_c00399{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);}
.ma_c00399{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);}
.mf3_c00399{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);}
.m49_c00399{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);}
.m11d_c00399{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);}
.m2c_c00399{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);}
.m2e_c00399{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);}
.m19_c00399{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);}
.mcf_c00399{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);}
.mee_c00399{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.m98_c00399{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m41_c00399{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);}
.m106_c00399{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);}
.m11e_c00399{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);}
.m12d_c00399{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);}
.m143_c00399{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.m10d_c00399{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);}
.m5f_c00399{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);}
.m9_c00399{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);}
.mfb_c00399{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);}
.med_c00399{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);}
.m4f_c00399{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);}
.mac_c00399{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);}
.ma0_c00399{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);}
.m80_c00399{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);}
.m9a_c00399{transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{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);}
.md4_c00399{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m6d_c00399{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);}
.mb7_c00399{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);}
.m12_c00399{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_c00399{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);}
.mf7_c00399{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);}
.mdc_c00399{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);}
.mdb_c00399{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);}
.m107_c00399{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);}
.me3_c00399{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);}
.m2a_c00399{transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227935,0.000000,0.000000,0.250000,0,0);}
.m90_c00399{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);}
.m117_c00399{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);}
.md0_c00399{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);}
.m4_c00399{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);}
.m45_c00399{transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);}
.mf2_c00399{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);}
.m1a_c00399{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);}
.mf1_c00399{transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);}
.m142_c00399{transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);}
.m126_c00399{transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);}
.m13f_c00399{transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);}
.m121_c00399{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);}
.ma1_c00399{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);}
.m152_c00399{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);}
.m89_c00399{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00399{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);}
.mc0_c00399{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);}
.m9b_c00399{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);}
.ma8_c00399{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.m96_c00399{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);}
.m2d_c00399{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);}
.m8a_c00399{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);}
.mff_c00399{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);}
.m144_c00399{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);}
.m36_c00399{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);}
.mf9_c00399{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);}
.m8d_c00399{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);}
.m67_c00399{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);}
.m2_c00399{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);}
.m99_c00399{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);}
.m48_c00399{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);}
.m14e_c00399{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);}
.maa_c00399{transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244640,0.000000,0.000000,0.250000,0,0);}
.m86_c00399{transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244830,0.000000,0.000000,0.250000,0,0);}
.mef_c00399{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);}
.mde_c00399{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.m6b_c00399{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m85_c00399{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00399{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00399{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);}
.m13e_c00399{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);}
.m11a_c00399{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m8f_c00399{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);}
.m6a_c00399{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m100_c00399{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m43_c00399{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);}
.md9_c00399{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m44_c00399{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{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);}
.mba_c00399{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);}
.mc7_c00399{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);}
.m42_c00399{transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);}
.m84_c00399{transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);}
.m14a_c00399{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);}
.m8c_c00399{transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);}
.m10b_c00399{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.m10a_c00399{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m4e_c00399{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);}
.m146_c00399{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);}
.m81_c00399{transform:matrix(0.266275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266275,0.000000,0.000000,0.250000,0,0);}
.me6_c00399{transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267320,0.000000,0.000000,0.250000,0,0);}
.mfa_c00399{transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);}
.md6_c00399{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.md5_c00399{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.mfc_c00399{transform:matrix(0.271290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271290,0.000000,0.000000,0.250000,0,0);}
.m109_c00399{transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);}
.mf4_c00399{transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);}
.mbf_c00399{transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.mb4_c00399{transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280915,0.000000,0.000000,0.250000,0,0);}
.m9c_c00399{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m17_c00399{transform:matrix(0.282285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282285,0.000000,0.000000,0.250000,0,0);}
.m39_c00399{transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);}
.m88_c00399{transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);}
.m112_c00399{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m147_c00399{transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304600,0.000000,0.000000,0.250000,0,0);}
.m145_c00399{transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307420,0.000000,0.000000,0.250000,0,0);}
.m135_c00399{transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312345,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313265,0.000000,0.000000,0.250000,0,0);}
.m31_c00399{transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318040,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.318815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318815,0.000000,0.000000,0.250000,0,0);}
.m76_c00399{transform:matrix(0.320690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320690,0.000000,0.000000,0.250000,0,0);}
.m14f_c00399{transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322455,0.000000,0.000000,0.250000,0,0);}
.mc6_c00399{transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328860,0.000000,0.000000,0.250000,0,0);}
.mc4_c00399{transform:matrix(0.329585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329585,0.000000,0.000000,0.250000,0,0);}
.mb9_c00399{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);}
.m116_c00399{transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335350,0.000000,0.000000,0.250000,0,0);}
.m93_c00399{transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);}
.m138_c00399{transform:matrix(0.349780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349780,0.000000,0.000000,0.250000,0,0);}
.mc1_c00399{transform:matrix(0.350455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350455,0.000000,0.000000,0.250000,0,0);}
.ma9_c00399{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);}
.m2b_c00399{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.m114_c00399{transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);}
.m136_c00399{transform:matrix(0.396125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396125,0.000000,0.000000,0.250000,0,0);}
.m14b_c00399{transform:matrix(0.397315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397315,0.000000,0.000000,0.250000,0,0);}
.m94_c00399{transform:matrix(0.406375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406375,0.000000,0.000000,0.250000,0,0);}
.m97_c00399{transform:matrix(0.425380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425380,0.000000,0.000000,0.250000,0,0);}
.mc9_c00399{transform:matrix(0.526695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526695,0.000000,0.000000,0.250000,0,0);}
.m131_c00399{transform:matrix(0.529225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529225,0.000000,0.000000,0.250000,0,0);}
.mb8_c00399{transform:matrix(0.529240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529240,0.000000,0.000000,0.250000,0,0);}
.mbc_c00399{transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00399{transform:matrix(0.541860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541860,0.000000,0.000000,0.250000,0,0);}
.mc5_c00399{transform:matrix(0.545715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545715,0.000000,0.000000,0.250000,0,0);}
.mc3_c00399{transform:matrix(0.552690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552690,0.000000,0.000000,0.250000,0,0);}
.m108_c00399{transform:matrix(0.574340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574340,0.000000,0.000000,0.250000,0,0);}
.m149_c00399{transform:matrix(0.613220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613220,0.000000,0.000000,0.250000,0,0);}
.m13a_c00399{transform:matrix(0.626325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626325,0.000000,0.000000,0.250000,0,0);}
.m137_c00399{transform:matrix(0.630830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630830,0.000000,0.000000,0.250000,0,0);}
.m13c_c00399{transform:matrix(0.697625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697625,0.000000,0.000000,0.250000,0,0);}
.m139_c00399{transform:matrix(0.928250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928250,0.000000,0.000000,0.250000,0,0);}
.m130_c00399{transform:matrix(1.100705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100705,0.000000,0.000000,0.250000,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;}
.fs10_c00399{font-size:47.250000px;}
.fs9_c00399{font-size:48.300000px;}
.fsa_c00399{font-size:49.350000px;}
.fsb_c00399{font-size:50.400000px;}
.fsf_c00399{font-size:51.450000px;}
.fs11_c00399{font-size:52.500000px;}
.fs12_c00399{font-size:53.550000px;}
.fsc_c00399{font-size:55.650000px;}
.fse_c00399{font-size:58.800000px;}
.fs0_c00399{font-size:61.950000px;}
.fs6_c00399{font-size:64.050000px;}
.fsd_c00399{font-size:65.100000px;}
.fs3_c00399{font-size:69.300000px;}
.fs5_c00399{font-size:70.350000px;}
.fs2_c00399{font-size:71.400000px;}
.fs1_c00399{font-size:73.500000px;}
.fs4_c00399{font-size:75.600000px;}
.fs7_c00399{font-size:77.700000px;}
.fs8_c00399{font-size:81.900000px;}
.y0_c00399{bottom:0.000000px;}
.y19_c00399{bottom:168.498000px;}
.y18_c00399{bottom:186.544500px;}
.y2f_c00399{bottom:188.905500px;}
.y16_c00399{bottom:204.069000px;}
.y2e_c00399{bottom:207.108000px;}
.y15_c00399{bottom:222.133500px;}
.y17_c00399{bottom:223.026000px;}
.y2d_c00399{bottom:229.846500px;}
.y14_c00399{bottom:239.479500px;}
.y2c_c00399{bottom:247.780500px;}
.y13_c00399{bottom:257.611500px;}
.y2b_c00399{bottom:265.248000px;}
.y12_c00399{bottom:275.533500px;}
.y2a_c00399{bottom:283.020000px;}
.y11_c00399{bottom:293.494500px;}
.y22_c00399{bottom:311.253000px;}
.y29_c00399{bottom:323.311500px;}
.y21_c00399{bottom:329.280000px;}
.y28_c00399{bottom:341.467500px;}
.y20_c00399{bottom:347.254500px;}
.y27_c00399{bottom:358.912500px;}
.y1f_c00399{bottom:365.344500px;}
.y26_c00399{bottom:377.574000px;}
.y1e_c00399{bottom:383.236500px;}
.y25_c00399{bottom:394.891500px;}
.y1d_c00399{bottom:401.133000px;}
.y24_c00399{bottom:412.813500px;}
.y1c_c00399{bottom:419.500500px;}
.y23_c00399{bottom:435.780000px;}
.y1b_c00399{bottom:437.437500px;}
.y1a_c00399{bottom:453.388500px;}
.y10_c00399{bottom:455.448000px;}
.yf_c00399{bottom:505.528500px;}
.ye_c00399{bottom:527.793000px;}
.yd_c00399{bottom:550.500000px;}
.yc_c00399{bottom:574.368000px;}
.yb_c00399{bottom:597.510000px;}
.ya_c00399{bottom:621.453000px;}
.y9_c00399{bottom:643.089000px;}
.y8_c00399{bottom:665.470500px;}
.y7_c00399{bottom:688.692000px;}
.y6_c00399{bottom:711.358500px;}
.y5_c00399{bottom:735.019500px;}
.y4_c00399{bottom:757.767000px;}
.y3_c00399{bottom:780.984000px;}
.y2_c00399{bottom:803.970000px;}
.y1_c00399{bottom:826.945500px;}
.h12_c00399{height:47.250000px;}
.hb_c00399{height:48.300000px;}
.hc_c00399{height:49.350000px;}
.hd_c00399{height:50.400000px;}
.h11_c00399{height:51.450000px;}
.h13_c00399{height:52.500000px;}
.h14_c00399{height:53.550000px;}
.he_c00399{height:55.650000px;}
.h10_c00399{height:58.800000px;}
.h2_c00399{height:61.950000px;}
.h8_c00399{height:64.050000px;}
.hf_c00399{height:65.100000px;}
.h5_c00399{height:69.300000px;}
.h7_c00399{height:70.350000px;}
.h4_c00399{height:71.400000px;}
.h3_c00399{height:73.500000px;}
.h6_c00399{height:75.600000px;}
.h9_c00399{height:77.700000px;}
.ha_c00399{height:81.900000px;}
.h0_c00399{height:1008.450000px;}
.h1_c00399{height:1008.750000px;}
.w1_c00399{width:689.250000px;}
.w0_c00399{width:689.550000px;}
.x0_c00399{left:0.000000px;}
.x8d_c00399{left:147.420000px;}
.x67_c00399{left:149.850000px;}
.x5c_c00399{left:151.200000px;}
.x56_c00399{left:152.550000px;}
.x75_c00399{left:157.410000px;}
.x61_c00399{left:165.780000px;}
.x5d_c00399{left:167.400000px;}
.x8e_c00399{left:174.150000px;}
.x84_c00399{left:175.230000px;}
.x68_c00399{left:177.660000px;}
.x5e_c00399{left:179.280000px;}
.x62_c00399{left:181.440000px;}
.x76_c00399{left:183.600000px;}
.x28_c00399{left:185.760000px;}
.x2f_c00399{left:186.840000px;}
.x1_c00399{left:188.190000px;}
.x8f_c00399{left:189.540000px;}
.x87_c00399{left:192.510000px;}
.x57_c00399{left:193.590000px;}
.x5f_c00399{left:204.120000px;}
.x30_c00399{left:210.060000px;}
.xb_c00399{left:213.570000px;}
.x40_c00399{left:214.920000px;}
.x2_c00399{left:218.970000px;}
.x3c_c00399{left:220.320000px;}
.x69_c00399{left:223.290000px;}
.x12_c00399{left:228.420000px;}
.x8b_c00399{left:233.820000px;}
.x36_c00399{left:234.900000px;}
.x77_c00399{left:235.980000px;}
.x70_c00399{left:238.140000px;}
.x6c_c00399{left:239.220000px;}
.x89_c00399{left:240.570000px;}
.x47_c00399{left:242.460000px;}
.x88_c00399{left:244.080000px;}
.x63_c00399{left:245.970000px;}
.x21_c00399{left:247.860000px;}
.x90_c00399{left:250.830000px;}
.x85_c00399{left:254.610000px;}
.x4f_c00399{left:258.120000px;}
.x48_c00399{left:260.280000px;}
.x13_c00399{left:261.360000px;}
.x19_c00399{left:262.710000px;}
.x71_c00399{left:264.870000px;}
.x41_c00399{left:265.950000px;}
.x64_c00399{left:268.380000px;}
.x58_c00399{left:271.350000px;}
.xc_c00399{left:272.700000px;}
.x60_c00399{left:274.050000px;}
.x37_c00399{left:275.940000px;}
.x78_c00399{left:277.020000px;}
.x3_c00399{left:278.370000px;}
.x14_c00399{left:280.800000px;}
.x29_c00399{left:283.230000px;}
.x1a_c00399{left:287.550000px;}
.x22_c00399{left:289.710000px;}
.x6d_c00399{left:292.950000px;}
.x59_c00399{left:294.300000px;}
.x49_c00399{left:295.650000px;}
.x72_c00399{left:297.810000px;}
.x4_c00399{left:299.430000px;}
.x54_c00399{left:300.780000px;}
.x50_c00399{left:303.480000px;}
.x6a_c00399{left:304.830000px;}
.x86_c00399{left:306.990000px;}
.x1b_c00399{left:308.340000px;}
.x31_c00399{left:311.580000px;}
.xd_c00399{left:312.930000px;}
.x65_c00399{left:315.900000px;}
.x6e_c00399{left:317.250000px;}
.x79_c00399{left:318.600000px;}
.x38_c00399{left:320.220000px;}
.x23_c00399{left:321.570000px;}
.x73_c00399{left:322.650000px;}
.x6b_c00399{left:325.890000px;}
.x5a_c00399{left:327.240000px;}
.x1c_c00399{left:329.130000px;}
.x15_c00399{left:330.210000px;}
.x83_c00399{left:331.290000px;}
.x2a_c00399{left:332.370000px;}
.x7a_c00399{left:334.800000px;}
.x4a_c00399{left:337.770000px;}
.x6f_c00399{left:341.280000px;}
.x4e_c00399{left:342.360000px;}
.x8a_c00399{left:343.980000px;}
.x3d_c00399{left:347.220000px;}
.x8c_c00399{left:348.840000px;}
.x32_c00399{left:351.810000px;}
.x39_c00399{left:353.430000px;}
.x5_c00399{left:356.400000px;}
.x4b_c00399{left:358.560000px;}
.x5b_c00399{left:359.910000px;}
.x42_c00399{left:362.340000px;}
.x1d_c00399{left:366.660000px;}
.x7b_c00399{left:369.360000px;}
.x16_c00399{left:376.650000px;}
.x55_c00399{left:379.890000px;}
.x74_c00399{left:381.240000px;}
.x2b_c00399{left:382.590000px;}
.x66_c00399{left:386.910000px;}
.xe_c00399{left:389.070000px;}
.x24_c00399{left:393.120000px;}
.x3a_c00399{left:394.200000px;}
.x3e_c00399{left:396.360000px;}
.xb6_c00399{left:398.250000px;}
.x1e_c00399{left:399.330000px;}
.x33_c00399{left:401.490000px;}
.x91_c00399{left:403.920000px;}
.xf_c00399{left:405.000000px;}
.xb9_c00399{left:408.780000px;}
.x4c_c00399{left:411.480000px;}
.x43_c00399{left:413.100000px;}
.x94_c00399{left:416.340000px;}
.x7c_c00399{left:417.420000px;}
.x6_c00399{left:421.740000px;}
.x17_c00399{left:423.900000px;}
.xb7_c00399{left:430.650000px;}
.x95_c00399{left:432.810000px;}
.x25_c00399{left:433.890000px;}
.x10_c00399{left:435.240000px;}
.x9c_c00399{left:439.290000px;}
.xb4_c00399{left:440.640000px;}
.x51_c00399{left:444.150000px;}
.x7_c00399{left:449.010000px;}
.x7d_c00399{left:451.170000px;}
.x2c_c00399{left:453.870000px;}
.x34_c00399{left:455.220000px;}
.x92_c00399{left:459.540000px;}
.x18_c00399{left:460.620000px;}
.x52_c00399{left:465.750000px;}
.x3f_c00399{left:467.100000px;}
.xac_c00399{left:469.260000px;}
.xa5_c00399{left:472.230000px;}
.x4d_c00399{left:474.120000px;}
.x2d_c00399{left:475.740000px;}
.x11_c00399{left:478.980000px;}
.x1f_c00399{left:480.600000px;}
.x7e_c00399{left:483.570000px;}
.xa9_c00399{left:484.650000px;}
.x96_c00399{left:488.970000px;}
.x44_c00399{left:490.320000px;}
.x7f_c00399{left:493.830000px;}
.xa1_c00399{left:495.990000px;}
.xb1_c00399{left:498.150000px;}
.x2e_c00399{left:499.770000px;}
.x8_c00399{left:501.120000px;}
.x26_c00399{left:502.740000px;}
.x27_c00399{left:506.520000px;}
.xa6_c00399{left:508.140000px;}
.xaa_c00399{left:512.190000px;}
.x9d_c00399{left:513.810000px;}
.x80_c00399{left:518.400000px;}
.x3b_c00399{left:521.100000px;}
.x20_c00399{left:522.720000px;}
.x9_c00399{left:525.150000px;}
.x35_c00399{left:526.770000px;}
.x45_c00399{left:528.930000px;}
.x53_c00399{left:531.090000px;}
.x93_c00399{left:535.140000px;}
.xbc_c00399{left:537.840000px;}
.xa7_c00399{left:540.270000px;}
.xa2_c00399{left:544.050000px;}
.xad_c00399{left:545.940000px;}
.xa_c00399{left:547.560000px;}
.xba_c00399{left:549.990000px;}
.x98_c00399{left:551.610000px;}
.x97_c00399{left:553.770000px;}
.xae_c00399{left:555.930000px;}
.x81_c00399{left:558.090000px;}
.xa3_c00399{left:560.250000px;}
.x99_c00399{left:564.300000px;}
.xa8_c00399{left:567.540000px;}
.x9e_c00399{left:570.240000px;}
.xb5_c00399{left:573.210000px;}
.x82_c00399{left:576.720000px;}
.xaf_c00399{left:578.880000px;}
.x9a_c00399{left:579.960000px;}
.x9f_c00399{left:584.010000px;}
.x46_c00399{left:588.870000px;}
.xa4_c00399{left:594.540000px;}
.xbb_c00399{left:601.020000px;}
.xb2_c00399{left:603.180000px;}
.xb0_c00399{left:604.530000px;}
.xbd_c00399{left:606.960000px;}
.xb8_c00399{left:608.040000px;}
.xb3_c00399{left:610.200000px;}
.x9b_c00399{left:612.360000px;}
.xa0_c00399{left:621.270000px;}
.xab_c00399{left:633.150000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fs10_c00399{font-size:42.000000pt;}
.fs9_c00399{font-size:42.933333pt;}
.fsa_c00399{font-size:43.866667pt;}
.fsb_c00399{font-size:44.800000pt;}
.fsf_c00399{font-size:45.733333pt;}
.fs11_c00399{font-size:46.666667pt;}
.fs12_c00399{font-size:47.600000pt;}
.fsc_c00399{font-size:49.466667pt;}
.fse_c00399{font-size:52.266667pt;}
.fs0_c00399{font-size:55.066667pt;}
.fs6_c00399{font-size:56.933333pt;}
.fsd_c00399{font-size:57.866667pt;}
.fs3_c00399{font-size:61.600000pt;}
.fs5_c00399{font-size:62.533333pt;}
.fs2_c00399{font-size:63.466667pt;}
.fs1_c00399{font-size:65.333333pt;}
.fs4_c00399{font-size:67.200000pt;}
.fs7_c00399{font-size:69.066667pt;}
.fs8_c00399{font-size:72.800000pt;}
.y0_c00399{bottom:0.000000pt;}
.y19_c00399{bottom:149.776000pt;}
.y18_c00399{bottom:165.817333pt;}
.y2f_c00399{bottom:167.916000pt;}
.y16_c00399{bottom:181.394667pt;}
.y2e_c00399{bottom:184.096000pt;}
.y15_c00399{bottom:197.452000pt;}
.y17_c00399{bottom:198.245333pt;}
.y2d_c00399{bottom:204.308000pt;}
.y14_c00399{bottom:212.870667pt;}
.y2c_c00399{bottom:220.249333pt;}
.y13_c00399{bottom:228.988000pt;}
.y2b_c00399{bottom:235.776000pt;}
.y12_c00399{bottom:244.918667pt;}
.y2a_c00399{bottom:251.573333pt;}
.y11_c00399{bottom:260.884000pt;}
.y22_c00399{bottom:276.669333pt;}
.y29_c00399{bottom:287.388000pt;}
.y21_c00399{bottom:292.693333pt;}
.y28_c00399{bottom:303.526667pt;}
.y20_c00399{bottom:308.670667pt;}
.y27_c00399{bottom:319.033333pt;}
.y1f_c00399{bottom:324.750667pt;}
.y26_c00399{bottom:335.621333pt;}
.y1e_c00399{bottom:340.654667pt;}
.y25_c00399{bottom:351.014667pt;}
.y1d_c00399{bottom:356.562667pt;}
.y24_c00399{bottom:366.945333pt;}
.y1c_c00399{bottom:372.889333pt;}
.y23_c00399{bottom:387.360000pt;}
.y1b_c00399{bottom:388.833333pt;}
.y1a_c00399{bottom:403.012000pt;}
.y10_c00399{bottom:404.842667pt;}
.yf_c00399{bottom:449.358667pt;}
.ye_c00399{bottom:469.149333pt;}
.yd_c00399{bottom:489.333333pt;}
.yc_c00399{bottom:510.549333pt;}
.yb_c00399{bottom:531.120000pt;}
.ya_c00399{bottom:552.402667pt;}
.y9_c00399{bottom:571.634667pt;}
.y8_c00399{bottom:591.529333pt;}
.y7_c00399{bottom:612.170667pt;}
.y6_c00399{bottom:632.318667pt;}
.y5_c00399{bottom:653.350667pt;}
.y4_c00399{bottom:673.570667pt;}
.y3_c00399{bottom:694.208000pt;}
.y2_c00399{bottom:714.640000pt;}
.y1_c00399{bottom:735.062667pt;}
.h12_c00399{height:42.000000pt;}
.hb_c00399{height:42.933333pt;}
.hc_c00399{height:43.866667pt;}
.hd_c00399{height:44.800000pt;}
.h11_c00399{height:45.733333pt;}
.h13_c00399{height:46.666667pt;}
.h14_c00399{height:47.600000pt;}
.he_c00399{height:49.466667pt;}
.h10_c00399{height:52.266667pt;}
.h2_c00399{height:55.066667pt;}
.h8_c00399{height:56.933333pt;}
.hf_c00399{height:57.866667pt;}
.h5_c00399{height:61.600000pt;}
.h7_c00399{height:62.533333pt;}
.h4_c00399{height:63.466667pt;}
.h3_c00399{height:65.333333pt;}
.h6_c00399{height:67.200000pt;}
.h9_c00399{height:69.066667pt;}
.ha_c00399{height:72.800000pt;}
.h0_c00399{height:896.400000pt;}
.h1_c00399{height:896.666667pt;}
.w1_c00399{width:612.666667pt;}
.w0_c00399{width:612.933333pt;}
.x0_c00399{left:0.000000pt;}
.x8d_c00399{left:131.040000pt;}
.x67_c00399{left:133.200000pt;}
.x5c_c00399{left:134.400000pt;}
.x56_c00399{left:135.600000pt;}
.x75_c00399{left:139.920000pt;}
.x61_c00399{left:147.360000pt;}
.x5d_c00399{left:148.800000pt;}
.x8e_c00399{left:154.800000pt;}
.x84_c00399{left:155.760000pt;}
.x68_c00399{left:157.920000pt;}
.x5e_c00399{left:159.360000pt;}
.x62_c00399{left:161.280000pt;}
.x76_c00399{left:163.200000pt;}
.x28_c00399{left:165.120000pt;}
.x2f_c00399{left:166.080000pt;}
.x1_c00399{left:167.280000pt;}
.x8f_c00399{left:168.480000pt;}
.x87_c00399{left:171.120000pt;}
.x57_c00399{left:172.080000pt;}
.x5f_c00399{left:181.440000pt;}
.x30_c00399{left:186.720000pt;}
.xb_c00399{left:189.840000pt;}
.x40_c00399{left:191.040000pt;}
.x2_c00399{left:194.640000pt;}
.x3c_c00399{left:195.840000pt;}
.x69_c00399{left:198.480000pt;}
.x12_c00399{left:203.040000pt;}
.x8b_c00399{left:207.840000pt;}
.x36_c00399{left:208.800000pt;}
.x77_c00399{left:209.760000pt;}
.x70_c00399{left:211.680000pt;}
.x6c_c00399{left:212.640000pt;}
.x89_c00399{left:213.840000pt;}
.x47_c00399{left:215.520000pt;}
.x88_c00399{left:216.960000pt;}
.x63_c00399{left:218.640000pt;}
.x21_c00399{left:220.320000pt;}
.x90_c00399{left:222.960000pt;}
.x85_c00399{left:226.320000pt;}
.x4f_c00399{left:229.440000pt;}
.x48_c00399{left:231.360000pt;}
.x13_c00399{left:232.320000pt;}
.x19_c00399{left:233.520000pt;}
.x71_c00399{left:235.440000pt;}
.x41_c00399{left:236.400000pt;}
.x64_c00399{left:238.560000pt;}
.x58_c00399{left:241.200000pt;}
.xc_c00399{left:242.400000pt;}
.x60_c00399{left:243.600000pt;}
.x37_c00399{left:245.280000pt;}
.x78_c00399{left:246.240000pt;}
.x3_c00399{left:247.440000pt;}
.x14_c00399{left:249.600000pt;}
.x29_c00399{left:251.760000pt;}
.x1a_c00399{left:255.600000pt;}
.x22_c00399{left:257.520000pt;}
.x6d_c00399{left:260.400000pt;}
.x59_c00399{left:261.600000pt;}
.x49_c00399{left:262.800000pt;}
.x72_c00399{left:264.720000pt;}
.x4_c00399{left:266.160000pt;}
.x54_c00399{left:267.360000pt;}
.x50_c00399{left:269.760000pt;}
.x6a_c00399{left:270.960000pt;}
.x86_c00399{left:272.880000pt;}
.x1b_c00399{left:274.080000pt;}
.x31_c00399{left:276.960000pt;}
.xd_c00399{left:278.160000pt;}
.x65_c00399{left:280.800000pt;}
.x6e_c00399{left:282.000000pt;}
.x79_c00399{left:283.200000pt;}
.x38_c00399{left:284.640000pt;}
.x23_c00399{left:285.840000pt;}
.x73_c00399{left:286.800000pt;}
.x6b_c00399{left:289.680000pt;}
.x5a_c00399{left:290.880000pt;}
.x1c_c00399{left:292.560000pt;}
.x15_c00399{left:293.520000pt;}
.x83_c00399{left:294.480000pt;}
.x2a_c00399{left:295.440000pt;}
.x7a_c00399{left:297.600000pt;}
.x4a_c00399{left:300.240000pt;}
.x6f_c00399{left:303.360000pt;}
.x4e_c00399{left:304.320000pt;}
.x8a_c00399{left:305.760000pt;}
.x3d_c00399{left:308.640000pt;}
.x8c_c00399{left:310.080000pt;}
.x32_c00399{left:312.720000pt;}
.x39_c00399{left:314.160000pt;}
.x5_c00399{left:316.800000pt;}
.x4b_c00399{left:318.720000pt;}
.x5b_c00399{left:319.920000pt;}
.x42_c00399{left:322.080000pt;}
.x1d_c00399{left:325.920000pt;}
.x7b_c00399{left:328.320000pt;}
.x16_c00399{left:334.800000pt;}
.x55_c00399{left:337.680000pt;}
.x74_c00399{left:338.880000pt;}
.x2b_c00399{left:340.080000pt;}
.x66_c00399{left:343.920000pt;}
.xe_c00399{left:345.840000pt;}
.x24_c00399{left:349.440000pt;}
.x3a_c00399{left:350.400000pt;}
.x3e_c00399{left:352.320000pt;}
.xb6_c00399{left:354.000000pt;}
.x1e_c00399{left:354.960000pt;}
.x33_c00399{left:356.880000pt;}
.x91_c00399{left:359.040000pt;}
.xf_c00399{left:360.000000pt;}
.xb9_c00399{left:363.360000pt;}
.x4c_c00399{left:365.760000pt;}
.x43_c00399{left:367.200000pt;}
.x94_c00399{left:370.080000pt;}
.x7c_c00399{left:371.040000pt;}
.x6_c00399{left:374.880000pt;}
.x17_c00399{left:376.800000pt;}
.xb7_c00399{left:382.800000pt;}
.x95_c00399{left:384.720000pt;}
.x25_c00399{left:385.680000pt;}
.x10_c00399{left:386.880000pt;}
.x9c_c00399{left:390.480000pt;}
.xb4_c00399{left:391.680000pt;}
.x51_c00399{left:394.800000pt;}
.x7_c00399{left:399.120000pt;}
.x7d_c00399{left:401.040000pt;}
.x2c_c00399{left:403.440000pt;}
.x34_c00399{left:404.640000pt;}
.x92_c00399{left:408.480000pt;}
.x18_c00399{left:409.440000pt;}
.x52_c00399{left:414.000000pt;}
.x3f_c00399{left:415.200000pt;}
.xac_c00399{left:417.120000pt;}
.xa5_c00399{left:419.760000pt;}
.x4d_c00399{left:421.440000pt;}
.x2d_c00399{left:422.880000pt;}
.x11_c00399{left:425.760000pt;}
.x1f_c00399{left:427.200000pt;}
.x7e_c00399{left:429.840000pt;}
.xa9_c00399{left:430.800000pt;}
.x96_c00399{left:434.640000pt;}
.x44_c00399{left:435.840000pt;}
.x7f_c00399{left:438.960000pt;}
.xa1_c00399{left:440.880000pt;}
.xb1_c00399{left:442.800000pt;}
.x2e_c00399{left:444.240000pt;}
.x8_c00399{left:445.440000pt;}
.x26_c00399{left:446.880000pt;}
.x27_c00399{left:450.240000pt;}
.xa6_c00399{left:451.680000pt;}
.xaa_c00399{left:455.280000pt;}
.x9d_c00399{left:456.720000pt;}
.x80_c00399{left:460.800000pt;}
.x3b_c00399{left:463.200000pt;}
.x20_c00399{left:464.640000pt;}
.x9_c00399{left:466.800000pt;}
.x35_c00399{left:468.240000pt;}
.x45_c00399{left:470.160000pt;}
.x53_c00399{left:472.080000pt;}
.x93_c00399{left:475.680000pt;}
.xbc_c00399{left:478.080000pt;}
.xa7_c00399{left:480.240000pt;}
.xa2_c00399{left:483.600000pt;}
.xad_c00399{left:485.280000pt;}
.xa_c00399{left:486.720000pt;}
.xba_c00399{left:488.880000pt;}
.x98_c00399{left:490.320000pt;}
.x97_c00399{left:492.240000pt;}
.xae_c00399{left:494.160000pt;}
.x81_c00399{left:496.080000pt;}
.xa3_c00399{left:498.000000pt;}
.x99_c00399{left:501.600000pt;}
.xa8_c00399{left:504.480000pt;}
.x9e_c00399{left:506.880000pt;}
.xb5_c00399{left:509.520000pt;}
.x82_c00399{left:512.640000pt;}
.xaf_c00399{left:514.560000pt;}
.x9a_c00399{left:515.520000pt;}
.x9f_c00399{left:519.120000pt;}
.x46_c00399{left:523.440000pt;}
.xa4_c00399{left:528.480000pt;}
.xbb_c00399{left:534.240000pt;}
.xb2_c00399{left:536.160000pt;}
.xb0_c00399{left:537.360000pt;}
.xbd_c00399{left:539.520000pt;}
.xb8_c00399{left:540.480000pt;}
.xb3_c00399{left:542.400000pt;}
.x9b_c00399{left:544.320000pt;}
.xa0_c00399{left:552.240000pt;}
.xab_c00399{left:562.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mbd_c00400{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);}
.m167_c00400{transform:matrix(0.034633,-0.000416,0.003000,0.249982,0,0);-ms-transform:matrix(0.034633,-0.000416,0.003000,0.249982,0,0);-webkit-transform:matrix(0.034633,-0.000416,0.003000,0.249982,0,0);}
.m92_c00400{transform:matrix(0.034870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034870,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.039612,-0.000475,0.003000,0.249982,0,0);-ms-transform:matrix(0.039612,-0.000475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.039612,-0.000475,0.003000,0.249982,0,0);}
.m16a_c00400{transform:matrix(0.051946,-0.000623,0.003000,0.249982,0,0);-ms-transform:matrix(0.051946,-0.000623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.051946,-0.000623,0.003000,0.249982,0,0);}
.mbe_c00400{transform:matrix(0.066680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066680,0.000000,0.000000,0.250000,0,0);}
.m13a_c00400{transform:matrix(0.068555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068555,0.000000,0.000000,0.250000,0,0);}
.m168_c00400{transform:matrix(0.071395,-0.000857,0.003000,0.249982,0,0);-ms-transform:matrix(0.071395,-0.000857,0.003000,0.249982,0,0);-webkit-transform:matrix(0.071395,-0.000857,0.003000,0.249982,0,0);}
.m24_c00400{transform:matrix(0.080444,-0.000965,0.003000,0.249982,0,0);-ms-transform:matrix(0.080444,-0.000965,0.003000,0.249982,0,0);-webkit-transform:matrix(0.080444,-0.000965,0.003000,0.249982,0,0);}
.m16b_c00400{transform:matrix(0.088294,-0.001060,0.003000,0.249982,0,0);-ms-transform:matrix(0.088294,-0.001060,0.003000,0.249982,0,0);-webkit-transform:matrix(0.088294,-0.001060,0.003000,0.249982,0,0);}
.mde_c00400{transform:matrix(0.091432,-0.000731,0.002000,0.249992,0,0);-ms-transform:matrix(0.091432,-0.000731,0.002000,0.249992,0,0);-webkit-transform:matrix(0.091432,-0.000731,0.002000,0.249992,0,0);}
.m66_c00400{transform:matrix(0.098963,-0.001188,0.003000,0.249982,0,0);-ms-transform:matrix(0.098963,-0.001188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.098963,-0.001188,0.003000,0.249982,0,0);}
.ma4_c00400{transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);}
.m141_c00400{transform:matrix(0.103045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103045,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(0.119071,-0.001429,0.003000,0.249982,0,0);-ms-transform:matrix(0.119071,-0.001429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.119071,-0.001429,0.003000,0.249982,0,0);}
.mae_c00400{transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);}
.m6f_c00400{transform:matrix(0.125696,-0.001508,0.003000,0.249982,0,0);-ms-transform:matrix(0.125696,-0.001508,0.003000,0.249982,0,0);-webkit-transform:matrix(0.125696,-0.001508,0.003000,0.249982,0,0);}
.m78_c00400{transform:matrix(0.133590,-0.001603,0.003000,0.249982,0,0);-ms-transform:matrix(0.133590,-0.001603,0.003000,0.249982,0,0);-webkit-transform:matrix(0.133590,-0.001603,0.003000,0.249982,0,0);}
.m11_c00400{transform:matrix(0.134275,-0.001611,0.003000,0.249982,0,0);-ms-transform:matrix(0.134275,-0.001611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.134275,-0.001611,0.003000,0.249982,0,0);}
.m3f_c00400{transform:matrix(0.144225,-0.001731,0.003000,0.249982,0,0);-ms-transform:matrix(0.144225,-0.001731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144225,-0.001731,0.003000,0.249982,0,0);}
.m15f_c00400{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m52_c00400{transform:matrix(0.148484,-0.001782,0.003000,0.249982,0,0);-ms-transform:matrix(0.148484,-0.001782,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148484,-0.001782,0.003000,0.249982,0,0);}
.m5f_c00400{transform:matrix(0.151634,-0.001820,0.003000,0.249982,0,0);-ms-transform:matrix(0.151634,-0.001820,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151634,-0.001820,0.003000,0.249982,0,0);}
.mc0_c00400{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);}
.m1d_c00400{transform:matrix(0.156024,-0.001872,0.003000,0.249982,0,0);-ms-transform:matrix(0.156024,-0.001872,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156024,-0.001872,0.003000,0.249982,0,0);}
.m43_c00400{transform:matrix(0.156739,-0.001881,0.003000,0.249982,0,0);-ms-transform:matrix(0.156739,-0.001881,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156739,-0.001881,0.003000,0.249982,0,0);}
.meb_c00400{transform:matrix(0.157555,-0.001260,0.002000,0.249992,0,0);-ms-transform:matrix(0.157555,-0.001260,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157555,-0.001260,0.002000,0.249992,0,0);}
.m18_c00400{transform:matrix(0.158769,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158769,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158769,-0.001905,0.003000,0.249982,0,0);}
.m118_c00400{transform:matrix(0.158850,-0.001271,0.002000,0.249992,0,0);-ms-transform:matrix(0.158850,-0.001271,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158850,-0.001271,0.002000,0.249992,0,0);}
.m16f_c00400{transform:matrix(0.158870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158870,0.000000,0.000000,0.250000,0,0);}
.m121_c00400{transform:matrix(0.160085,-0.001281,0.002000,0.249992,0,0);-ms-transform:matrix(0.160085,-0.001281,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160085,-0.001281,0.002000,0.249992,0,0);}
.md2_c00400{transform:matrix(0.161495,-0.001292,0.002000,0.249992,0,0);-ms-transform:matrix(0.161495,-0.001292,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161495,-0.001292,0.002000,0.249992,0,0);}
.me2_c00400{transform:matrix(0.162120,-0.001297,0.002000,0.249992,0,0);-ms-transform:matrix(0.162120,-0.001297,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162120,-0.001297,0.002000,0.249992,0,0);}
.mdc_c00400{transform:matrix(0.163095,-0.001305,0.002000,0.249992,0,0);-ms-transform:matrix(0.163095,-0.001305,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163095,-0.001305,0.002000,0.249992,0,0);}
.m163_c00400{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);}
.m14e_c00400{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);}
.m54_c00400{transform:matrix(0.165133,-0.001982,0.003000,0.249982,0,0);-ms-transform:matrix(0.165133,-0.001982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165133,-0.001982,0.003000,0.249982,0,0);}
.m109_c00400{transform:matrix(0.165400,-0.001323,0.002000,0.249992,0,0);-ms-transform:matrix(0.165400,-0.001323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165400,-0.001323,0.002000,0.249992,0,0);}
.m63_c00400{transform:matrix(0.165783,-0.001989,0.003000,0.249982,0,0);-ms-transform:matrix(0.165783,-0.001989,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165783,-0.001989,0.003000,0.249982,0,0);}
.m76_c00400{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);}
.mc9_c00400{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);}
.m162_c00400{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);}
.m169_c00400{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);}
.mcc_c00400{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);}
.m117_c00400{transform:matrix(0.168595,-0.001349,0.002000,0.249992,0,0);-ms-transform:matrix(0.168595,-0.001349,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168595,-0.001349,0.002000,0.249992,0,0);}
.m11b_c00400{transform:matrix(0.168710,-0.001350,0.002000,0.249992,0,0);-ms-transform:matrix(0.168710,-0.001350,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168710,-0.001350,0.002000,0.249992,0,0);}
.m1c_c00400{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);}
.m3e_c00400{transform:matrix(0.168963,-0.002028,0.003000,0.249982,0,0);-ms-transform:matrix(0.168963,-0.002028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168963,-0.002028,0.003000,0.249982,0,0);}
.m10_c00400{transform:matrix(0.169048,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169048,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169048,-0.002029,0.003000,0.249982,0,0);}
.m16_c00400{transform:matrix(0.169313,-0.002032,0.003000,0.249982,0,0);-ms-transform:matrix(0.169313,-0.002032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169313,-0.002032,0.003000,0.249982,0,0);}
.m1a_c00400{transform:matrix(0.169698,-0.002036,0.003000,0.249982,0,0);-ms-transform:matrix(0.169698,-0.002036,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169698,-0.002036,0.003000,0.249982,0,0);}
.m72_c00400{transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);-ms-transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169948,-0.002039,0.003000,0.249982,0,0);}
.me5_c00400{transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);-ms-transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170025,-0.001360,0.002000,0.249992,0,0);}
.m2f_c00400{transform:matrix(0.170178,-0.002042,0.003000,0.249982,0,0);-ms-transform:matrix(0.170178,-0.002042,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170178,-0.002042,0.003000,0.249982,0,0);}
.m120_c00400{transform:matrix(0.172139,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172139,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172139,-0.001377,0.002000,0.249992,0,0);}
.me3_c00400{transform:matrix(0.172504,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172504,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172504,-0.001380,0.002000,0.249992,0,0);}
.m22_c00400{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);}
.mc1_c00400{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);}
.m13_c00400{transform:matrix(0.173563,-0.002083,0.003000,0.249982,0,0);-ms-transform:matrix(0.173563,-0.002083,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173563,-0.002083,0.003000,0.249982,0,0);}
.m9_c00400{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);}
.m13c_c00400{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m113_c00400{transform:matrix(0.173794,-0.001390,0.002000,0.249992,0,0);-ms-transform:matrix(0.173794,-0.001390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173794,-0.001390,0.002000,0.249992,0,0);}
.m93_c00400{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);}
.m1e_c00400{transform:matrix(0.175712,-0.002109,0.003000,0.249982,0,0);-ms-transform:matrix(0.175712,-0.002109,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175712,-0.002109,0.003000,0.249982,0,0);}
.m21_c00400{transform:matrix(0.175742,-0.002109,0.003000,0.249982,0,0);-ms-transform:matrix(0.175742,-0.002109,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175742,-0.002109,0.003000,0.249982,0,0);}
.m149_c00400{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);}
.m119_c00400{transform:matrix(0.176459,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176459,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176459,-0.001412,0.002000,0.249992,0,0);}
.m146_c00400{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);}
.m6b_c00400{transform:matrix(0.177537,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177537,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177537,-0.002130,0.003000,0.249982,0,0);}
.mce_c00400{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);}
.mdb_c00400{transform:matrix(0.178234,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178234,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178234,-0.001426,0.002000,0.249992,0,0);}
.m6c_c00400{transform:matrix(0.178502,-0.002142,0.003000,0.249982,0,0);-ms-transform:matrix(0.178502,-0.002142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178502,-0.002142,0.003000,0.249982,0,0);}
.m74_c00400{transform:matrix(0.178652,-0.002144,0.003000,0.249982,0,0);-ms-transform:matrix(0.178652,-0.002144,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178652,-0.002144,0.003000,0.249982,0,0);}
.mc7_c00400{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);}
.m3b_c00400{transform:matrix(0.179932,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179932,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179932,-0.002159,0.003000,0.249982,0,0);}
.m157_c00400{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);}
.m73_c00400{transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);-ms-transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180752,-0.002169,0.003000,0.249982,0,0);}
.ma5_c00400{transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);}
.md9_c00400{transform:matrix(0.181209,-0.001450,0.002000,0.249992,0,0);-ms-transform:matrix(0.181209,-0.001450,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181209,-0.001450,0.002000,0.249992,0,0);}
.m29_c00400{transform:matrix(0.182192,-0.002186,0.003000,0.249982,0,0);-ms-transform:matrix(0.182192,-0.002186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182192,-0.002186,0.003000,0.249982,0,0);}
.mc2_c00400{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);}
.mc3_c00400{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);}
.m7e_c00400{transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182932,-0.002195,0.003000,0.249982,0,0);}
.m11a_c00400{transform:matrix(0.183734,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183734,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183734,-0.001470,0.002000,0.249992,0,0);}
.md0_c00400{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);}
.mcb_c00400{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);}
.me1_c00400{transform:matrix(0.184134,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184134,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184134,-0.001473,0.002000,0.249992,0,0);}
.m4b_c00400{transform:matrix(0.184297,-0.002212,0.003000,0.249982,0,0);-ms-transform:matrix(0.184297,-0.002212,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184297,-0.002212,0.003000,0.249982,0,0);}
.m20_c00400{transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);-ms-transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184457,-0.002213,0.003000,0.249982,0,0);}
.mdd_c00400{transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);-ms-transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);}
.m106_c00400{transform:matrix(0.185689,-0.001486,0.002000,0.249992,0,0);-ms-transform:matrix(0.185689,-0.001486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185689,-0.001486,0.002000,0.249992,0,0);}
.m14_c00400{transform:matrix(0.186637,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186637,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186637,-0.002240,0.003000,0.249982,0,0);}
.m11c_c00400{transform:matrix(0.186849,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186849,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186849,-0.001495,0.002000,0.249992,0,0);}
.mf5_c00400{transform:matrix(0.186874,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186874,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186874,-0.001495,0.002000,0.249992,0,0);}
.m79_c00400{transform:matrix(0.186932,-0.002243,0.003000,0.249982,0,0);-ms-transform:matrix(0.186932,-0.002243,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186932,-0.002243,0.003000,0.249982,0,0);}
.mbf_c00400{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);}
.m161_c00400{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);}
.m10b_c00400{transform:matrix(0.187544,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187544,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187544,-0.001500,0.002000,0.249992,0,0);}
.m2e_c00400{transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);-ms-transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187591,-0.002251,0.003000,0.249982,0,0);}
.me4_c00400{transform:matrix(0.187699,-0.001502,0.002000,0.249992,0,0);-ms-transform:matrix(0.187699,-0.001502,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187699,-0.001502,0.002000,0.249992,0,0);}
.md7_c00400{transform:matrix(0.188294,-0.001506,0.002000,0.249992,0,0);-ms-transform:matrix(0.188294,-0.001506,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188294,-0.001506,0.002000,0.249992,0,0);}
.m148_c00400{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);}
.m9f_c00400{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);}
.mff_c00400{transform:matrix(0.188724,-0.001510,0.002000,0.249992,0,0);-ms-transform:matrix(0.188724,-0.001510,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188724,-0.001510,0.002000,0.249992,0,0);}
.m61_c00400{transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);-ms-transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189061,-0.002269,0.003000,0.249982,0,0);}
.m110_c00400{transform:matrix(0.189349,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189349,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189349,-0.001515,0.002000,0.249992,0,0);}
.m58_c00400{transform:matrix(0.189436,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189436,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189436,-0.002273,0.003000,0.249982,0,0);}
.m115_c00400{transform:matrix(0.189569,-0.001517,0.002000,0.249992,0,0);-ms-transform:matrix(0.189569,-0.001517,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189569,-0.001517,0.002000,0.249992,0,0);}
.m160_c00400{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);}
.mec_c00400{transform:matrix(0.189819,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189819,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189819,-0.001519,0.002000,0.249992,0,0);}
.mb7_c00400{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);}
.m124_c00400{transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);}
.md1_c00400{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);}
.m48_c00400{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);}
.m155_c00400{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);}
.m68_c00400{transform:matrix(0.192586,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192586,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192586,-0.002311,0.003000,0.249982,0,0);}
.m14c_c00400{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);}
.mfd_c00400{transform:matrix(0.192834,-0.001543,0.002000,0.249992,0,0);-ms-transform:matrix(0.192834,-0.001543,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192834,-0.001543,0.002000,0.249992,0,0);}
.mf2_c00400{transform:matrix(0.192969,-0.001544,0.002000,0.249992,0,0);-ms-transform:matrix(0.192969,-0.001544,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192969,-0.001544,0.002000,0.249992,0,0);}
.m126_c00400{transform:matrix(0.193209,-0.001546,0.002000,0.249992,0,0);-ms-transform:matrix(0.193209,-0.001546,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193209,-0.001546,0.002000,0.249992,0,0);}
.m9e_c00400{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);}
.m19_c00400{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);}
.m14b_c00400{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);}
.m3c_c00400{transform:matrix(0.194451,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194451,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194451,-0.002333,0.003000,0.249982,0,0);}
.mac_c00400{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);}
.m82_c00400{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);}
.m5a_c00400{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);}
.m10a_c00400{transform:matrix(0.196119,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196119,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196119,-0.001569,0.002000,0.249992,0,0);}
.m32_c00400{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);}
.mb4_c00400{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);}
.md3_c00400{transform:matrix(0.196639,-0.001573,0.002000,0.249992,0,0);-ms-transform:matrix(0.196639,-0.001573,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196639,-0.001573,0.002000,0.249992,0,0);}
.m1b_c00400{transform:matrix(0.196766,-0.002361,0.003000,0.249982,0,0);-ms-transform:matrix(0.196766,-0.002361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196766,-0.002361,0.003000,0.249982,0,0);}
.m100_c00400{transform:matrix(0.196929,-0.001575,0.002000,0.249992,0,0);-ms-transform:matrix(0.196929,-0.001575,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196929,-0.001575,0.002000,0.249992,0,0);}
.m14d_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);}
.mba_c00400{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);}
.mee_c00400{transform:matrix(0.197199,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197199,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197199,-0.001578,0.002000,0.249992,0,0);}
.m6_c00400{transform:matrix(0.197201,-0.002366,0.003000,0.249982,0,0);-ms-transform:matrix(0.197201,-0.002366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197201,-0.002366,0.003000,0.249982,0,0);}
.mc8_c00400{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00400{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);}
.m71_c00400{transform:matrix(0.197726,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197726,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197726,-0.002373,0.003000,0.249982,0,0);}
.md5_c00400{transform:matrix(0.197774,-0.001582,0.002000,0.249992,0,0);-ms-transform:matrix(0.197774,-0.001582,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197774,-0.001582,0.002000,0.249992,0,0);}
.mc6_c00400{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);}
.mb2_c00400{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);}
.m164_c00400{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);}
.mf3_c00400{transform:matrix(0.198589,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198589,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198589,-0.001589,0.002000,0.249992,0,0);}
.md4_c00400{transform:matrix(0.198594,-0.001589,0.002000,0.249992,0,0);-ms-transform:matrix(0.198594,-0.001589,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198594,-0.001589,0.002000,0.249992,0,0);}
.mc5_c00400{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);}
.m77_c00400{transform:matrix(0.198966,-0.002388,0.003000,0.249982,0,0);-ms-transform:matrix(0.198966,-0.002388,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198966,-0.002388,0.003000,0.249982,0,0);}
.ma3_c00400{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);}
.m136_c00400{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);}
.m13e_c00400{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);}
.m138_c00400{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);}
.m4f_c00400{transform:matrix(0.199741,-0.002397,0.003000,0.249982,0,0);-ms-transform:matrix(0.199741,-0.002397,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199741,-0.002397,0.003000,0.249982,0,0);}
.m17_c00400{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);}
.m12a_c00400{transform:matrix(0.200954,-0.001608,0.002000,0.249992,0,0);-ms-transform:matrix(0.200954,-0.001608,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200954,-0.001608,0.002000,0.249992,0,0);}
.m64_c00400{transform:matrix(0.200986,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200986,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200986,-0.002412,0.003000,0.249982,0,0);}
.maf_c00400{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);}
.me6_c00400{transform:matrix(0.201389,-0.001611,0.002000,0.249992,0,0);-ms-transform:matrix(0.201389,-0.001611,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201389,-0.001611,0.002000,0.249992,0,0);}
.m15c_c00400{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);}
.ma0_c00400{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);}
.m10f_c00400{transform:matrix(0.201784,-0.001614,0.002000,0.249992,0,0);-ms-transform:matrix(0.201784,-0.001614,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201784,-0.001614,0.002000,0.249992,0,0);}
.mb8_c00400{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);}
.m7c_c00400{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);}
.m28_c00400{transform:matrix(0.202440,-0.002429,0.003000,0.249982,0,0);-ms-transform:matrix(0.202440,-0.002429,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202440,-0.002429,0.003000,0.249982,0,0);}
.m103_c00400{transform:matrix(0.203034,-0.001624,0.002000,0.249992,0,0);-ms-transform:matrix(0.203034,-0.001624,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203034,-0.001624,0.002000,0.249992,0,0);}
.mb_c00400{transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);}
.md6_c00400{transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);}
.m143_c00400{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);}
.m49_c00400{transform:matrix(0.203415,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203415,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203415,-0.002441,0.003000,0.249982,0,0);}
.m45_c00400{transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);}
.mfe_c00400{transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203598,-0.001629,0.002000,0.249992,0,0);}
.m9b_c00400{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);}
.m7b_c00400{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);}
.mb9_c00400{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);}
.m13b_c00400{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);}
.m8c_c00400{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);}
.m11f_c00400{transform:matrix(0.204028,-0.001632,0.002000,0.249992,0,0);-ms-transform:matrix(0.204028,-0.001632,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204028,-0.001632,0.002000,0.249992,0,0);}
.m104_c00400{transform:matrix(0.204118,-0.001633,0.002000,0.249992,0,0);-ms-transform:matrix(0.204118,-0.001633,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204118,-0.001633,0.002000,0.249992,0,0);}
.mc4_c00400{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);}
.m12d_c00400{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);}
.m37_c00400{transform:matrix(0.204870,-0.002458,0.003000,0.249982,0,0);-ms-transform:matrix(0.204870,-0.002458,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204870,-0.002458,0.003000,0.249982,0,0);}
.m134_c00400{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);}
.m69_c00400{transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);}
.md8_c00400{transform:matrix(0.205608,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205608,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205608,-0.001645,0.002000,0.249992,0,0);}
.m15d_c00400{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);}
.mf0_c00400{transform:matrix(0.205843,-0.001647,0.002000,0.249992,0,0);-ms-transform:matrix(0.205843,-0.001647,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205843,-0.001647,0.002000,0.249992,0,0);}
.m89_c00400{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);}
.m50_c00400{transform:matrix(0.205995,-0.002472,0.003000,0.249982,0,0);-ms-transform:matrix(0.205995,-0.002472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205995,-0.002472,0.003000,0.249982,0,0);}
.m6e_c00400{transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);-ms-transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);}
.m3_c00400{transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206175,-0.002474,0.003000,0.249982,0,0);}
.m62_c00400{transform:matrix(0.206310,-0.002476,0.003000,0.249982,0,0);-ms-transform:matrix(0.206310,-0.002476,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206310,-0.002476,0.003000,0.249982,0,0);}
.m131_c00400{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.207285,-0.002487,0.003000,0.249982,0,0);-ms-transform:matrix(0.207285,-0.002487,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207285,-0.002487,0.003000,0.249982,0,0);}
.m137_c00400{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_c00400{transform:matrix(0.207900,-0.002495,0.003000,0.249982,0,0);-ms-transform:matrix(0.207900,-0.002495,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207900,-0.002495,0.003000,0.249982,0,0);}
.mcf_c00400{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);}
.m112_c00400{transform:matrix(0.208458,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208458,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208458,-0.001668,0.002000,0.249992,0,0);}
.m14f_c00400{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.209500,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209500,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209500,-0.002514,0.003000,0.249982,0,0);}
.mf6_c00400{transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209508,-0.001676,0.002000,0.249992,0,0);}
.m0_c00400{transform:matrix(0.209715,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209715,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209715,-0.002517,0.003000,0.249982,0,0);}
.mfb_c00400{transform:matrix(0.209818,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209818,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209818,-0.001679,0.002000,0.249992,0,0);}
.m150_c00400{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);}
.m31_c00400{transform:matrix(0.210110,-0.002521,0.003000,0.249982,0,0);-ms-transform:matrix(0.210110,-0.002521,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210110,-0.002521,0.003000,0.249982,0,0);}
.m12f_c00400{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);}
.m7d_c00400{transform:matrix(0.210860,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210860,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210860,-0.002530,0.003000,0.249982,0,0);}
.ma2_c00400{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);}
.m38_c00400{transform:matrix(0.211540,-0.002538,0.003000,0.249982,0,0);-ms-transform:matrix(0.211540,-0.002538,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211540,-0.002538,0.003000,0.249982,0,0);}
.m108_c00400{transform:matrix(0.211643,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211643,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211643,-0.001693,0.002000,0.249992,0,0);}
.mbc_c00400{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);}
.m27_c00400{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);}
.mcd_c00400{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);}
.mfc_c00400{transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);-ms-transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212663,-0.001701,0.002000,0.249992,0,0);}
.m4d_c00400{transform:matrix(0.212815,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212815,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212815,-0.002554,0.003000,0.249982,0,0);}
.m2b_c00400{transform:matrix(0.214240,-0.002571,0.003000,0.249982,0,0);-ms-transform:matrix(0.214240,-0.002571,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214240,-0.002571,0.003000,0.249982,0,0);}
.m6d_c00400{transform:matrix(0.214495,-0.002574,0.003000,0.249982,0,0);-ms-transform:matrix(0.214495,-0.002574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214495,-0.002574,0.003000,0.249982,0,0);}
.mef_c00400{transform:matrix(0.214598,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214598,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214598,-0.001717,0.002000,0.249992,0,0);}
.m107_c00400{transform:matrix(0.214693,-0.001718,0.002000,0.249992,0,0);-ms-transform:matrix(0.214693,-0.001718,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214693,-0.001718,0.002000,0.249992,0,0);}
.m8a_c00400{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);}
.m35_c00400{transform:matrix(0.215170,-0.002582,0.003000,0.249982,0,0);-ms-transform:matrix(0.215170,-0.002582,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215170,-0.002582,0.003000,0.249982,0,0);}
.me8_c00400{transform:matrix(0.215478,-0.001724,0.002000,0.249992,0,0);-ms-transform:matrix(0.215478,-0.001724,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215478,-0.001724,0.002000,0.249992,0,0);}
.ma_c00400{transform:matrix(0.216474,-0.002598,0.003000,0.249982,0,0);-ms-transform:matrix(0.216474,-0.002598,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216474,-0.002598,0.003000,0.249982,0,0);}
.m105_c00400{transform:matrix(0.216858,-0.001735,0.002000,0.249992,0,0);-ms-transform:matrix(0.216858,-0.001735,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216858,-0.001735,0.002000,0.249992,0,0);}
.m123_c00400{transform:matrix(0.216943,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.216943,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216943,-0.001736,0.002000,0.249992,0,0);}
.m144_c00400{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);}
.m84_c00400{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);}
.m65_c00400{transform:matrix(0.217739,-0.002613,0.003000,0.249982,0,0);-ms-transform:matrix(0.217739,-0.002613,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217739,-0.002613,0.003000,0.249982,0,0);}
.maa_c00400{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);}
.mca_c00400{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);}
.m67_c00400{transform:matrix(0.218134,-0.002618,0.003000,0.249982,0,0);-ms-transform:matrix(0.218134,-0.002618,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218134,-0.002618,0.003000,0.249982,0,0);}
.m13f_c00400{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);}
.m15_c00400{transform:matrix(0.218369,-0.002620,0.003000,0.249982,0,0);-ms-transform:matrix(0.218369,-0.002620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218369,-0.002620,0.003000,0.249982,0,0);}
.m14a_c00400{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);}
.m42_c00400{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);}
.m46_c00400{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);}
.m53_c00400{transform:matrix(0.221074,-0.002653,0.003000,0.249982,0,0);-ms-transform:matrix(0.221074,-0.002653,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221074,-0.002653,0.003000,0.249982,0,0);}
.me0_c00400{transform:matrix(0.221998,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.221998,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221998,-0.001776,0.002000,0.249992,0,0);}
.m4c_c00400{transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);-ms-transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222014,-0.002664,0.003000,0.249982,0,0);}
.m59_c00400{transform:matrix(0.222314,-0.002668,0.003000,0.249982,0,0);-ms-transform:matrix(0.222314,-0.002668,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222314,-0.002668,0.003000,0.249982,0,0);}
.m1f_c00400{transform:matrix(0.222404,-0.002669,0.003000,0.249982,0,0);-ms-transform:matrix(0.222404,-0.002669,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222404,-0.002669,0.003000,0.249982,0,0);}
.m12e_c00400{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);}
.mf1_c00400{transform:matrix(0.223218,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223218,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223218,-0.001786,0.002000,0.249992,0,0);}
.m15b_c00400{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);}
.mbb_c00400{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);}
.mf4_c00400{transform:matrix(0.223798,-0.001790,0.002000,0.249992,0,0);-ms-transform:matrix(0.223798,-0.001790,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223798,-0.001790,0.002000,0.249992,0,0);}
.m122_c00400{transform:matrix(0.223868,-0.001791,0.002000,0.249992,0,0);-ms-transform:matrix(0.223868,-0.001791,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223868,-0.001791,0.002000,0.249992,0,0);}
.m2a_c00400{transform:matrix(0.224084,-0.002689,0.003000,0.249982,0,0);-ms-transform:matrix(0.224084,-0.002689,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224084,-0.002689,0.003000,0.249982,0,0);}
.m142_c00400{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);}
.mda_c00400{transform:matrix(0.225418,-0.001803,0.002000,0.249992,0,0);-ms-transform:matrix(0.225418,-0.001803,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225418,-0.001803,0.002000,0.249992,0,0);}
.m5b_c00400{transform:matrix(0.225494,-0.002706,0.003000,0.249982,0,0);-ms-transform:matrix(0.225494,-0.002706,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225494,-0.002706,0.003000,0.249982,0,0);}
.m55_c00400{transform:matrix(0.227599,-0.002731,0.003000,0.249982,0,0);-ms-transform:matrix(0.227599,-0.002731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227599,-0.002731,0.003000,0.249982,0,0);}
.mf7_c00400{transform:matrix(0.227893,-0.001823,0.002000,0.249992,0,0);-ms-transform:matrix(0.227893,-0.001823,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227893,-0.001823,0.002000,0.249992,0,0);}
.m26_c00400{transform:matrix(0.228239,-0.002739,0.003000,0.249982,0,0);-ms-transform:matrix(0.228239,-0.002739,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228239,-0.002739,0.003000,0.249982,0,0);}
.m153_c00400{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);}
.m60_c00400{transform:matrix(0.230073,-0.002761,0.003000,0.249982,0,0);-ms-transform:matrix(0.230073,-0.002761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230073,-0.002761,0.003000,0.249982,0,0);}
.m85_c00400{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);}
.m12b_c00400{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00400{transform:matrix(0.230768,-0.002769,0.003000,0.249982,0,0);-ms-transform:matrix(0.230768,-0.002769,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230768,-0.002769,0.003000,0.249982,0,0);}
.mb5_c00400{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);}
.m152_c00400{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);}
.m8f_c00400{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);}
.md_c00400{transform:matrix(0.231658,-0.002780,0.003000,0.249982,0,0);-ms-transform:matrix(0.231658,-0.002780,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231658,-0.002780,0.003000,0.249982,0,0);}
.m130_c00400{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);}
.m9a_c00400{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);}
.m30_c00400{transform:matrix(0.234598,-0.002815,0.003000,0.249982,0,0);-ms-transform:matrix(0.234598,-0.002815,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234598,-0.002815,0.003000,0.249982,0,0);}
.m2d_c00400{transform:matrix(0.234908,-0.002819,0.003000,0.249982,0,0);-ms-transform:matrix(0.234908,-0.002819,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234908,-0.002819,0.003000,0.249982,0,0);}
.m8d_c00400{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);}
.m75_c00400{transform:matrix(0.235618,-0.002827,0.003000,0.249982,0,0);-ms-transform:matrix(0.235618,-0.002827,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235618,-0.002827,0.003000,0.249982,0,0);}
.m40_c00400{transform:matrix(0.235658,-0.002828,0.003000,0.249982,0,0);-ms-transform:matrix(0.235658,-0.002828,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235658,-0.002828,0.003000,0.249982,0,0);}
.m102_c00400{transform:matrix(0.235747,-0.001886,0.002000,0.249992,0,0);-ms-transform:matrix(0.235747,-0.001886,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235747,-0.001886,0.002000,0.249992,0,0);}
.m81_c00400{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m44_c00400{transform:matrix(0.236408,-0.002837,0.003000,0.249982,0,0);-ms-transform:matrix(0.236408,-0.002837,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236408,-0.002837,0.003000,0.249982,0,0);}
.mab_c00400{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);}
.m165_c00400{transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);}
.m15a_c00400{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);}
.mad_c00400{transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);}
.m147_c00400{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);}
.mea_c00400{transform:matrix(0.238217,-0.001906,0.002000,0.249992,0,0);-ms-transform:matrix(0.238217,-0.001906,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238217,-0.001906,0.002000,0.249992,0,0);}
.m7_c00400{transform:matrix(0.238308,-0.002860,0.003000,0.249982,0,0);-ms-transform:matrix(0.238308,-0.002860,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238308,-0.002860,0.003000,0.249982,0,0);}
.m145_c00400{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m140_c00400{transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);}
.m10e_c00400{transform:matrix(0.239212,-0.001914,0.002000,0.249992,0,0);-ms-transform:matrix(0.239212,-0.001914,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239212,-0.001914,0.002000,0.249992,0,0);}
.m34_c00400{transform:matrix(0.239373,-0.002872,0.003000,0.249982,0,0);-ms-transform:matrix(0.239373,-0.002872,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239373,-0.002872,0.003000,0.249982,0,0);}
.m12_c00400{transform:matrix(0.240058,-0.002881,0.003000,0.249982,0,0);-ms-transform:matrix(0.240058,-0.002881,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240058,-0.002881,0.003000,0.249982,0,0);}
.m33_c00400{transform:matrix(0.240143,-0.002882,0.003000,0.249982,0,0);-ms-transform:matrix(0.240143,-0.002882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240143,-0.002882,0.003000,0.249982,0,0);}
.me7_c00400{transform:matrix(0.241672,-0.001933,0.002000,0.249992,0,0);-ms-transform:matrix(0.241672,-0.001933,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241672,-0.001933,0.002000,0.249992,0,0);}
.m139_c00400{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);}
.ma8_c00400{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m7f_c00400{transform:matrix(0.243567,-0.002923,0.003000,0.249982,0,0);-ms-transform:matrix(0.243567,-0.002923,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243567,-0.002923,0.003000,0.249982,0,0);}
.m159_c00400{transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);}
.m127_c00400{transform:matrix(0.243917,-0.001951,0.002000,0.249992,0,0);-ms-transform:matrix(0.243917,-0.001951,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243917,-0.001951,0.002000,0.249992,0,0);}
.m5e_c00400{transform:matrix(0.244037,-0.002928,0.003000,0.249982,0,0);-ms-transform:matrix(0.244037,-0.002928,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244037,-0.002928,0.003000,0.249982,0,0);}
.mfa_c00400{transform:matrix(0.244372,-0.001955,0.002000,0.249992,0,0);-ms-transform:matrix(0.244372,-0.001955,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244372,-0.001955,0.002000,0.249992,0,0);}
.m90_c00400{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);}
.m51_c00400{transform:matrix(0.245047,-0.002941,0.003000,0.249982,0,0);-ms-transform:matrix(0.245047,-0.002941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245047,-0.002941,0.003000,0.249982,0,0);}
.m158_c00400{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);}
.m13d_c00400{transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);}
.m11d_c00400{transform:matrix(0.245387,-0.001963,0.002000,0.249992,0,0);-ms-transform:matrix(0.245387,-0.001963,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245387,-0.001963,0.002000,0.249992,0,0);}
.m135_c00400{transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);}
.m56_c00400{transform:matrix(0.248932,-0.002987,0.003000,0.249982,0,0);-ms-transform:matrix(0.248932,-0.002987,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248932,-0.002987,0.003000,0.249982,0,0);}
.mf9_c00400{transform:matrix(0.249717,-0.001998,0.002000,0.249992,0,0);-ms-transform:matrix(0.249717,-0.001998,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249717,-0.001998,0.002000,0.249992,0,0);}
.m128_c00400{transform:matrix(0.249962,-0.002000,0.002000,0.249992,0,0);-ms-transform:matrix(0.249962,-0.002000,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249962,-0.002000,0.002000,0.249992,0,0);}
.m3a_c00400{transform:matrix(0.250592,-0.003007,0.003000,0.249982,0,0);-ms-transform:matrix(0.250592,-0.003007,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250592,-0.003007,0.003000,0.249982,0,0);}
.m16c_c00400{transform:matrix(0.251227,-0.003015,0.003000,0.249982,0,0);-ms-transform:matrix(0.251227,-0.003015,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251227,-0.003015,0.003000,0.249982,0,0);}
.m156_c00400{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);}
.me_c00400{transform:matrix(0.251602,-0.003019,0.003000,0.249982,0,0);-ms-transform:matrix(0.251602,-0.003019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251602,-0.003019,0.003000,0.249982,0,0);}
.m132_c00400{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);}
.m70_c00400{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);}
.med_c00400{transform:matrix(0.252067,-0.002017,0.002000,0.249992,0,0);-ms-transform:matrix(0.252067,-0.002017,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252067,-0.002017,0.002000,0.249992,0,0);}
.m154_c00400{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);}
.m10c_c00400{transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);-ms-transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255352,-0.002043,0.002000,0.249992,0,0);}
.m57_c00400{transform:matrix(0.257261,-0.003087,0.003000,0.249982,0,0);-ms-transform:matrix(0.257261,-0.003087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257261,-0.003087,0.003000,0.249982,0,0);}
.mdf_c00400{transform:matrix(0.259702,-0.002078,0.002000,0.249992,0,0);-ms-transform:matrix(0.259702,-0.002078,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259702,-0.002078,0.002000,0.249992,0,0);}
.m125_c00400{transform:matrix(0.260537,-0.002084,0.002000,0.249992,0,0);-ms-transform:matrix(0.260537,-0.002084,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260537,-0.002084,0.002000,0.249992,0,0);}
.mb3_c00400{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);}
.mf8_c00400{transform:matrix(0.266671,-0.002133,0.002000,0.249992,0,0);-ms-transform:matrix(0.266671,-0.002133,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266671,-0.002133,0.002000,0.249992,0,0);}
.m12c_c00400{transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00400{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.m7a_c00400{transform:matrix(0.268726,-0.003225,0.003000,0.249982,0,0);-ms-transform:matrix(0.268726,-0.003225,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268726,-0.003225,0.003000,0.249982,0,0);}
.m111_c00400{transform:matrix(0.268971,-0.002152,0.002000,0.249992,0,0);-ms-transform:matrix(0.268971,-0.002152,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268971,-0.002152,0.002000,0.249992,0,0);}
.m47_c00400{transform:matrix(0.269176,-0.003230,0.003000,0.249982,0,0);-ms-transform:matrix(0.269176,-0.003230,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269176,-0.003230,0.003000,0.249982,0,0);}
.m114_c00400{transform:matrix(0.272746,-0.002182,0.002000,0.249992,0,0);-ms-transform:matrix(0.272746,-0.002182,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272746,-0.002182,0.002000,0.249992,0,0);}
.mc_c00400{transform:matrix(0.273195,-0.003278,0.003000,0.249982,0,0);-ms-transform:matrix(0.273195,-0.003278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273195,-0.003278,0.003000,0.249982,0,0);}
.m25_c00400{transform:matrix(0.274885,-0.003299,0.003000,0.249982,0,0);-ms-transform:matrix(0.274885,-0.003299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274885,-0.003299,0.003000,0.249982,0,0);}
.mb6_c00400{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);}
.m9c_c00400{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.m166_c00400{transform:matrix(0.282675,-0.003392,0.003000,0.249982,0,0);-ms-transform:matrix(0.282675,-0.003392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282675,-0.003392,0.003000,0.249982,0,0);}
.mb0_c00400{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);}
.m41_c00400{transform:matrix(0.293579,-0.003523,0.003000,0.249982,0,0);-ms-transform:matrix(0.293579,-0.003523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.293579,-0.003523,0.003000,0.249982,0,0);}
.m151_c00400{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);}
.m133_c00400{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);}
.ma9_c00400{transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.304488,-0.003654,0.003000,0.249982,0,0);-ms-transform:matrix(0.304488,-0.003654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.304488,-0.003654,0.003000,0.249982,0,0);}
.mf_c00400{transform:matrix(0.305008,-0.003660,0.003000,0.249982,0,0);-ms-transform:matrix(0.305008,-0.003660,0.003000,0.249982,0,0);-webkit-transform:matrix(0.305008,-0.003660,0.003000,0.249982,0,0);}
.me9_c00400{transform:matrix(0.308315,-0.002467,0.002000,0.249992,0,0);-ms-transform:matrix(0.308315,-0.002467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.308315,-0.002467,0.002000,0.249992,0,0);}
.ma7_c00400{transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);}
.m172_c00400{transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.312083,-0.003745,0.003000,0.249982,0,0);-ms-transform:matrix(0.312083,-0.003745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.312083,-0.003745,0.003000,0.249982,0,0);}
.ma6_c00400{transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.313862,-0.003766,0.003000,0.249982,0,0);-ms-transform:matrix(0.313862,-0.003766,0.003000,0.249982,0,0);-webkit-transform:matrix(0.313862,-0.003766,0.003000,0.249982,0,0);}
.m99_c00400{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);}
.m8e_c00400{transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.331386,-0.003977,0.003000,0.249982,0,0);-ms-transform:matrix(0.331386,-0.003977,0.003000,0.249982,0,0);-webkit-transform:matrix(0.331386,-0.003977,0.003000,0.249982,0,0);}
.mb1_c00400{transform:matrix(0.332830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332830,0.000000,0.000000,0.250000,0,0);}
.m91_c00400{transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333280,0.000000,0.000000,0.250000,0,0);}
.m171_c00400{transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);}
.m8b_c00400{transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339245,0.000000,0.000000,0.250000,0,0);}
.m97_c00400{transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);}
.m80_c00400{transform:matrix(0.348115,-0.004177,0.003000,0.249982,0,0);-ms-transform:matrix(0.348115,-0.004177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.348115,-0.004177,0.003000,0.249982,0,0);}
.m15e_c00400{transform:matrix(0.350860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350860,0.000000,0.000000,0.250000,0,0);}
.m116_c00400{transform:matrix(0.350954,-0.002808,0.002000,0.249992,0,0);-ms-transform:matrix(0.350954,-0.002808,0.002000,0.249992,0,0);-webkit-transform:matrix(0.350954,-0.002808,0.002000,0.249992,0,0);}
.m83_c00400{transform:matrix(0.358295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358295,0.000000,0.000000,0.250000,0,0);}
.m101_c00400{transform:matrix(0.359913,-0.002879,0.002000,0.249992,0,0);-ms-transform:matrix(0.359913,-0.002879,0.002000,0.249992,0,0);-webkit-transform:matrix(0.359913,-0.002879,0.002000,0.249992,0,0);}
.m39_c00400{transform:matrix(0.362209,-0.004347,0.003000,0.249982,0,0);-ms-transform:matrix(0.362209,-0.004347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.362209,-0.004347,0.003000,0.249982,0,0);}
.m16e_c00400{transform:matrix(0.362444,-0.004349,0.003000,0.249982,0,0);-ms-transform:matrix(0.362444,-0.004349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.362444,-0.004349,0.003000,0.249982,0,0);}
.m4_c00400{transform:matrix(0.370903,-0.004451,0.003000,0.249982,0,0);-ms-transform:matrix(0.370903,-0.004451,0.003000,0.249982,0,0);-webkit-transform:matrix(0.370903,-0.004451,0.003000,0.249982,0,0);}
.m10d_c00400{transform:matrix(0.378158,-0.003025,0.002000,0.249992,0,0);-ms-transform:matrix(0.378158,-0.003025,0.002000,0.249992,0,0);-webkit-transform:matrix(0.378158,-0.003025,0.002000,0.249992,0,0);}
.m87_c00400{transform:matrix(0.382375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382375,0.000000,0.000000,0.250000,0,0);}
.m95_c00400{transform:matrix(0.427310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427310,0.000000,0.000000,0.250000,0,0);}
.m170_c00400{transform:matrix(0.449085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449085,0.000000,0.000000,0.250000,0,0);}
.m94_c00400{transform:matrix(0.476710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476710,0.000000,0.000000,0.250000,0,0);}
.m86_c00400{transform:matrix(0.479340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479340,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.506369,-0.006076,0.003000,0.249982,0,0);-ms-transform:matrix(0.506369,-0.006076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.506369,-0.006076,0.003000,0.249982,0,0);}
.m1_c00400{transform:matrix(0.524767,-0.006297,0.003000,0.249982,0,0);-ms-transform:matrix(0.524767,-0.006297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.524767,-0.006297,0.003000,0.249982,0,0);}
.m11e_c00400{transform:matrix(0.542088,-0.004337,0.002000,0.249992,0,0);-ms-transform:matrix(0.542088,-0.004337,0.002000,0.249992,0,0);-webkit-transform:matrix(0.542088,-0.004337,0.002000,0.249992,0,0);}
.m16d_c00400{transform:matrix(0.594252,-0.007131,0.003000,0.249982,0,0);-ms-transform:matrix(0.594252,-0.007131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.594252,-0.007131,0.003000,0.249982,0,0);}
.m98_c00400{transform:matrix(0.597755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597755,0.000000,0.000000,0.250000,0,0);}
.m88_c00400{transform:matrix(0.602120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602120,0.000000,0.000000,0.250000,0,0);}
.m96_c00400{transform:matrix(0.609020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609020,0.000000,0.000000,0.250000,0,0);}
.m129_c00400{transform:matrix(0.764871,-0.006119,0.002000,0.249992,0,0);-ms-transform:matrix(0.764871,-0.006119,0.002000,0.249992,0,0);-webkit-transform:matrix(0.764871,-0.006119,0.002000,0.249992,0,0);}
.m5_c00400{transform:matrix(1.136323,-0.013636,0.003000,0.249982,0,0);-ms-transform:matrix(1.136323,-0.013636,0.003000,0.249982,0,0);-webkit-transform:matrix(1.136323,-0.013636,0.003000,0.249982,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;}
._0_c00400{width:31.414811px;}
.fc0_c00400{color:transparent;}
.fs17_c00400{font-size:22.051588px;}
.fs8_c00400{font-size:45.150000px;}
.fs15_c00400{font-size:47.250000px;}
.fsa_c00400{font-size:48.300000px;}
.fs9_c00400{font-size:49.350000px;}
.fs11_c00400{font-size:49.351579px;}
.fs14_c00400{font-size:50.400000px;}
.fsf_c00400{font-size:50.401613px;}
.fsb_c00400{font-size:51.450000px;}
.fs10_c00400{font-size:51.451646px;}
.fsc_c00400{font-size:53.550000px;}
.fsd_c00400{font-size:55.651781px;}
.fs13_c00400{font-size:58.801882px;}
.fs16_c00400{font-size:59.850000px;}
.fse_c00400{font-size:59.851915px;}
.fs12_c00400{font-size:61.951982px;}
.fs6_c00400{font-size:63.004536px;}
.fs4_c00400{font-size:66.154763px;}
.fs1_c00400{font-size:67.204838px;}
.fs3_c00400{font-size:68.254914px;}
.fs5_c00400{font-size:69.304989px;}
.fs0_c00400{font-size:70.355065px;}
.fs18_c00400{font-size:71.400000px;}
.fs7_c00400{font-size:71.405141px;}
.fs2_c00400{font-size:72.455216px;}
.y0_c00400{bottom:0.000000px;}
.yef_c00400{bottom:98.550000px;}
.ye6_c00400{bottom:161.190000px;}
.ye7_c00400{bottom:161.850996px;}
.ye8_c00400{bottom:162.204210px;}
.ye9_c00400{bottom:162.363078px;}
.yea_c00400{bottom:162.573426px;}
.yeb_c00400{bottom:163.137294px;}
.yec_c00400{bottom:163.358334px;}
.yed_c00400{bottom:163.788642px;}
.yee_c00400{bottom:164.190456px;}
.ye5_c00400{bottom:178.657500px;}
.yd9_c00400{bottom:185.214060px;}
.yda_c00400{bottom:185.699508px;}
.ydb_c00400{bottom:186.104172px;}
.ydc_c00400{bottom:186.446772px;}
.ydd_c00400{bottom:187.777752px;}
.ye4_c00400{bottom:196.861500px;}
.yd8_c00400{bottom:205.191840px;}
.yd7_c00400{bottom:205.192512px;}
.yd6_c00400{bottom:205.193172px;}
.yd3_c00400{bottom:205.193268px;}
.yd5_c00400{bottom:205.193436px;}
.yd4_c00400{bottom:205.193736px;}
.ye3_c00400{bottom:214.830000px;}
.yd2_c00400{bottom:222.770136px;}
.yd1_c00400{bottom:222.770148px;}
.yce_c00400{bottom:222.770352px;}
.yd0_c00400{bottom:222.770460px;}
.ycf_c00400{bottom:222.770520px;}
.ycb_c00400{bottom:222.770616px;}
.ycc_c00400{bottom:222.770964px;}
.ycd_c00400{bottom:222.771084px;}
.ye2_c00400{bottom:232.570500px;}
.yca_c00400{bottom:240.149820px;}
.yc9_c00400{bottom:240.150312px;}
.yc7_c00400{bottom:240.150396px;}
.yc6_c00400{bottom:240.150528px;}
.yc8_c00400{bottom:240.150624px;}
.yc5_c00400{bottom:240.150768px;}
.yc2_c00400{bottom:240.151032px;}
.yc3_c00400{bottom:240.151212px;}
.yc4_c00400{bottom:240.151380px;}
.ye1_c00400{bottom:250.384500px;}
.ybb_c00400{bottom:257.995908px;}
.ybd_c00400{bottom:257.995956px;}
.yba_c00400{bottom:257.995980px;}
.ybf_c00400{bottom:257.996256px;}
.ybc_c00400{bottom:257.996388px;}
.ybe_c00400{bottom:257.996556px;}
.yc1_c00400{bottom:257.996712px;}
.yc0_c00400{bottom:257.997264px;}
.ye0_c00400{bottom:267.832500px;}
.yb8_c00400{bottom:275.778720px;}
.yb9_c00400{bottom:275.778840px;}
.yb7_c00400{bottom:275.778852px;}
.yb4_c00400{bottom:275.778996px;}
.yb3_c00400{bottom:275.779236px;}
.yb6_c00400{bottom:275.779332px;}
.yb5_c00400{bottom:275.779404px;}
.yb2_c00400{bottom:275.779428px;}
.ydf_c00400{bottom:285.855000px;}
.yaf_c00400{bottom:294.354684px;}
.yae_c00400{bottom:294.354924px;}
.yb0_c00400{bottom:294.355332px;}
.yb1_c00400{bottom:294.355368px;}
.yad_c00400{bottom:294.355608px;}
.yac_c00400{bottom:294.355968px;}
.yde_c00400{bottom:303.601500px;}
.ya6_c00400{bottom:311.679624px;}
.yab_c00400{bottom:311.680044px;}
.ya7_c00400{bottom:311.680272px;}
.yaa_c00400{bottom:311.680716px;}
.ya8_c00400{bottom:311.680980px;}
.ya9_c00400{bottom:311.681028px;}
.ya5_c00400{bottom:326.256960px;}
.ya4_c00400{bottom:326.257572px;}
.y9c_c00400{bottom:326.257740px;}
.y9d_c00400{bottom:326.258148px;}
.ya2_c00400{bottom:326.258184px;}
.ya3_c00400{bottom:326.258292px;}
.ya0_c00400{bottom:326.258556px;}
.y9f_c00400{bottom:326.258568px;}
.y9e_c00400{bottom:326.258724px;}
.ya1_c00400{bottom:326.258904px;}
.y98_c00400{bottom:344.070756px;}
.y93_c00400{bottom:344.070768px;}
.y94_c00400{bottom:344.070876px;}
.y99_c00400{bottom:344.071116px;}
.y91_c00400{bottom:344.071140px;}
.y97_c00400{bottom:344.071188px;}
.y9b_c00400{bottom:344.071212px;}
.y95_c00400{bottom:344.071284px;}
.y9a_c00400{bottom:344.071344px;}
.y92_c00400{bottom:344.071368px;}
.y96_c00400{bottom:344.071392px;}
.y8a_c00400{bottom:360.720000px;}
.y8b_c00400{bottom:360.890460px;}
.y8c_c00400{bottom:361.320480px;}
.y8d_c00400{bottom:361.480368px;}
.y8e_c00400{bottom:361.845312px;}
.y8f_c00400{bottom:361.975044px;}
.y90_c00400{bottom:362.340024px;}
.y89_c00400{bottom:366.306000px;}
.y88_c00400{bottom:383.278500px;}
.y87_c00400{bottom:397.179000px;}
.y86_c00400{bottom:401.874000px;}
.y85_c00400{bottom:418.917000px;}
.y84_c00400{bottom:437.344500px;}
.y83_c00400{bottom:455.124000px;}
.y7f_c00400{bottom:506.178708px;}
.y7b_c00400{bottom:506.178828px;}
.y7e_c00400{bottom:506.178942px;}
.y80_c00400{bottom:506.179056px;}
.y82_c00400{bottom:506.179122px;}
.y81_c00400{bottom:506.179158px;}
.y7c_c00400{bottom:506.179332px;}
.y7d_c00400{bottom:506.179458px;}
.y73_c00400{bottom:528.425058px;}
.y72_c00400{bottom:528.425094px;}
.y74_c00400{bottom:528.425460px;}
.y76_c00400{bottom:528.425508px;}
.y71_c00400{bottom:528.425610px;}
.y78_c00400{bottom:528.425736px;}
.y75_c00400{bottom:528.425844px;}
.y7a_c00400{bottom:528.425904px;}
.y77_c00400{bottom:528.425934px;}
.y79_c00400{bottom:528.426222px;}
.y68_c00400{bottom:550.899492px;}
.y6f_c00400{bottom:550.899504px;}
.y6e_c00400{bottom:550.899522px;}
.y69_c00400{bottom:550.899654px;}
.y70_c00400{bottom:550.899750px;}
.y6c_c00400{bottom:550.899972px;}
.y6b_c00400{bottom:550.900044px;}
.y6d_c00400{bottom:550.900278px;}
.y6a_c00400{bottom:550.900302px;}
.y65_c00400{bottom:574.151538px;}
.y63_c00400{bottom:574.151574px;}
.y62_c00400{bottom:574.151628px;}
.y61_c00400{bottom:574.151766px;}
.y67_c00400{bottom:574.152138px;}
.y66_c00400{bottom:574.152144px;}
.y64_c00400{bottom:574.152276px;}
.y60_c00400{bottom:574.152342px;}
.y5f_c00400{bottom:574.152978px;}
.y5e_c00400{bottom:596.611092px;}
.y5d_c00400{bottom:596.611212px;}
.y5b_c00400{bottom:596.611326px;}
.y57_c00400{bottom:596.611548px;}
.y54_c00400{bottom:596.611578px;}
.y5a_c00400{bottom:596.611842px;}
.y5c_c00400{bottom:596.611908px;}
.y55_c00400{bottom:596.612082px;}
.y56_c00400{bottom:596.612184px;}
.y58_c00400{bottom:596.612250px;}
.y59_c00400{bottom:596.612376px;}
.y4c_c00400{bottom:618.491652px;}
.y51_c00400{bottom:618.491808px;}
.y4d_c00400{bottom:618.491934px;}
.y52_c00400{bottom:618.492150px;}
.y50_c00400{bottom:618.492264px;}
.y53_c00400{bottom:618.492576px;}
.y4e_c00400{bottom:618.492618px;}
.y4f_c00400{bottom:618.492642px;}
.y4a_c00400{bottom:640.889856px;}
.y4b_c00400{bottom:640.890024px;}
.y49_c00400{bottom:640.890072px;}
.y45_c00400{bottom:640.890336px;}
.y48_c00400{bottom:640.890546px;}
.y46_c00400{bottom:640.890780px;}
.y47_c00400{bottom:640.891062px;}
.y3b_c00400{bottom:663.020124px;}
.y44_c00400{bottom:663.020238px;}
.y42_c00400{bottom:663.020634px;}
.y3c_c00400{bottom:663.020730px;}
.y43_c00400{bottom:663.020754px;}
.y3f_c00400{bottom:663.021126px;}
.y3e_c00400{bottom:663.021198px;}
.y41_c00400{bottom:663.021210px;}
.y40_c00400{bottom:663.021348px;}
.y3d_c00400{bottom:663.021432px;}
.y35_c00400{bottom:686.138400px;}
.y3a_c00400{bottom:686.138628px;}
.y37_c00400{bottom:686.138868px;}
.y34_c00400{bottom:686.138874px;}
.y39_c00400{bottom:686.138880px;}
.y36_c00400{bottom:686.138904px;}
.y38_c00400{bottom:686.139234px;}
.y33_c00400{bottom:709.255710px;}
.y32_c00400{bottom:709.256028px;}
.y30_c00400{bottom:709.256436px;}
.y31_c00400{bottom:709.256622px;}
.y2f_c00400{bottom:709.256772px;}
.y2e_c00400{bottom:709.256886px;}
.y2b_c00400{bottom:731.767008px;}
.y2d_c00400{bottom:731.767494px;}
.y2c_c00400{bottom:731.767590px;}
.y2a_c00400{bottom:731.767644px;}
.y29_c00400{bottom:731.767920px;}
.y26_c00400{bottom:731.768148px;}
.y28_c00400{bottom:731.768514px;}
.y27_c00400{bottom:731.768592px;}
.y1c_c00400{bottom:753.025338px;}
.y1d_c00400{bottom:753.504168px;}
.y1e_c00400{bottom:753.744294px;}
.y1f_c00400{bottom:753.977250px;}
.y20_c00400{bottom:754.611702px;}
.y21_c00400{bottom:754.753578px;}
.y22_c00400{bottom:754.937676px;}
.y23_c00400{bottom:755.244558px;}
.y24_c00400{bottom:755.727666px;}
.y25_c00400{bottom:756.067836px;}
.y1b_c00400{bottom:777.298254px;}
.y16_c00400{bottom:777.298710px;}
.y14_c00400{bottom:777.298782px;}
.y19_c00400{bottom:777.298800px;}
.y1a_c00400{bottom:777.298884px;}
.y18_c00400{bottom:777.298998px;}
.y17_c00400{bottom:777.299214px;}
.y13_c00400{bottom:777.299298px;}
.y15_c00400{bottom:777.299406px;}
.y9_c00400{bottom:798.659820px;}
.ya_c00400{bottom:799.096926px;}
.yb_c00400{bottom:799.238766px;}
.yc_c00400{bottom:799.632000px;}
.yd_c00400{bottom:799.979514px;}
.ye_c00400{bottom:800.212542px;}
.yf_c00400{bottom:800.634324px;}
.y10_c00400{bottom:801.018972px;}
.y11_c00400{bottom:801.229956px;}
.y12_c00400{bottom:801.700290px;}
.y1_c00400{bottom:819.442500px;}
.y2_c00400{bottom:819.720060px;}
.y3_c00400{bottom:820.259304px;}
.y4_c00400{bottom:820.664430px;}
.y5_c00400{bottom:821.673780px;}
.y6_c00400{bottom:821.982174px;}
.y7_c00400{bottom:822.737868px;}
.y8_c00400{bottom:822.951888px;}
.h19_c00400{height:22.051588px;}
.ha_c00400{height:45.150000px;}
.h17_c00400{height:47.250000px;}
.hc_c00400{height:48.300000px;}
.hb_c00400{height:49.350000px;}
.h13_c00400{height:49.351579px;}
.h16_c00400{height:50.400000px;}
.h11_c00400{height:50.401613px;}
.hd_c00400{height:51.450000px;}
.h12_c00400{height:51.451646px;}
.he_c00400{height:53.550000px;}
.hf_c00400{height:55.651781px;}
.h15_c00400{height:58.801882px;}
.h18_c00400{height:59.850000px;}
.h10_c00400{height:59.851915px;}
.h14_c00400{height:61.951982px;}
.h8_c00400{height:63.004536px;}
.h6_c00400{height:66.154763px;}
.h3_c00400{height:67.204838px;}
.h5_c00400{height:68.254914px;}
.h7_c00400{height:69.304989px;}
.h2_c00400{height:70.355065px;}
.h1a_c00400{height:71.400000px;}
.h9_c00400{height:71.405141px;}
.h4_c00400{height:72.455216px;}
.h1_c00400{height:1005.000000px;}
.h0_c00400{height:1005.150000px;}
.w0_c00400{width:715.200000px;}
.w1_c00400{width:715.500000px;}
.x0_c00400{left:0.000000px;}
.xaf_c00400{left:95.580000px;}
.x91_c00400{left:97.471020px;}
.xb3_c00400{left:98.550000px;}
.x7e_c00400{left:99.900000px;}
.x73_c00400{left:101.250000px;}
.xbe_c00400{left:106.389000px;}
.xac_c00400{left:110.160000px;}
.x88_c00400{left:121.285500px;}
.x40_c00400{left:123.126780px;}
.x5d_c00400{left:124.740000px;}
.xb0_c00400{left:127.980000px;}
.x9_c00400{left:129.431958px;}
.x21_c00400{left:130.678722px;}
.x1_c00400{left:132.198000px;}
.x53_c00400{left:133.657410px;}
.x2f_c00400{left:135.002202px;}
.x4b_c00400{left:136.086612px;}
.xbc_c00400{left:141.750000px;}
.x81_c00400{left:143.640000px;}
.xb4_c00400{left:144.990000px;}
.x89_c00400{left:148.772808px;}
.x5e_c00400{left:152.010000px;}
.x2_c00400{left:155.328000px;}
.x3b_c00400{left:156.607074px;}
.xb7_c00400{left:161.190000px;}
.xbd_c00400{left:162.540000px;}
.x22_c00400{left:164.970654px;}
.x54_c00400{left:166.869198px;}
.x74_c00400{left:168.210000px;}
.x82_c00400{left:172.800000px;}
.x12_c00400{left:175.233348px;}
.xad_c00400{left:176.850000px;}
.x37_c00400{left:179.287092px;}
.x67_c00400{left:180.900000px;}
.xa_c00400{left:183.985068px;}
.xb5_c00400{left:185.220000px;}
.x1a_c00400{left:189.886452px;}
.xbf_c00400{left:190.906500px;}
.x23_c00400{left:193.593276px;}
.x2a_c00400{left:195.756570px;}
.x3c_c00400{left:197.920014px;}
.x68_c00400{left:199.260000px;}
.x3_c00400{left:200.265000px;}
.xb_c00400{left:201.805932px;}
.x30_c00400{left:204.937764px;}
.x55_c00400{left:207.372030px;}
.x75_c00400{left:209.520000px;}
.x47_c00400{left:210.882894px;}
.x41_c00400{left:216.012654px;}
.x92_c00400{left:218.164236px;}
.x1b_c00400{left:219.898392px;}
.xc0_c00400{left:221.674500px;}
.x69_c00400{left:222.750000px;}
.x13_c00400{left:224.917494px;}
.x2b_c00400{left:228.428268px;}
.xb1_c00400{left:229.770000px;}
.x31_c00400{left:232.750260px;}
.x4_c00400{left:234.025500px;}
.x26_c00400{left:235.987986px;}
.x42_c00400{left:237.074178px;}
.xb8_c00400{left:238.680000px;}
.x4c_c00400{left:240.044070px;}
.x3d_c00400{left:243.553584px;}
.xba_c00400{left:246.240000px;}
.x1c_c00400{left:249.062796px;}
.xc_c00400{left:250.952790px;}
.x14_c00400{left:256.239012px;}
.x5f_c00400{left:258.390000px;}
.xb9_c00400{left:259.740000px;}
.x2c_c00400{left:262.180128px;}
.x4d_c00400{left:266.776422px;}
.x83_c00400{left:269.190000px;}
.x56_c00400{left:272.446890px;}
.x3e_c00400{left:273.526404px;}
.x60_c00400{left:275.400000px;}
.x59_c00400{left:277.306014px;}
.xb2_c00400{left:281.340000px;}
.x32_c00400{left:284.863266px;}
.xc1_c00400{left:287.083500px;}
.x15_c00400{left:288.910710px;}
.x8a_c00400{left:290.797392px;}
.x6a_c00400{left:291.870000px;}
.xd_c00400{left:294.414378px;}
.xae_c00400{left:298.080000px;}
.xc2_c00400{left:299.700000px;}
.x7f_c00400{left:301.590000px;}
.x48_c00400{left:302.688606px;}
.x27_c00400{left:303.763242px;}
.x43_c00400{left:306.469668px;}
.x76_c00400{left:308.340000px;}
.xbb_c00400{left:309.420000px;}
.xb6_c00400{left:312.930000px;}
.x57_c00400{left:314.299920px;}
.x38_c00400{left:316.997928px;}
.x5_c00400{left:318.138000px;}
.xe_c00400{left:323.584782px;}
.x3f_c00400{left:325.370874px;}
.x1d_c00400{left:328.437612px;}
.x97_c00400{left:331.838136px;}
.x16_c00400{left:334.274244px;}
.x6b_c00400{left:336.960000px;}
.x24_c00400{left:338.863710px;}
.x4e_c00400{left:341.031114px;}
.x6_c00400{left:343.837500px;}
.x1e_c00400{left:346.261476px;}
.x6c_c00400{left:348.570000px;}
.x61_c00400{left:350.190000px;}
.x85_c00400{left:351.270000px;}
.x17_c00400{left:352.635390px;}
.x8b_c00400{left:354.519972px;}
.x39_c00400{left:355.610490px;}
.x44_c00400{left:359.932872px;}
.x80_c00400{left:362.880000px;}
.xa0_c00400{left:365.861004px;}
.x1f_c00400{left:369.229074px;}
.xc3_c00400{left:370.710000px;}
.x28_c00400{left:372.348624px;}
.x6d_c00400{left:374.760000px;}
.xf_c00400{left:376.235802px;}
.x8c_c00400{left:379.090044px;}
.xab_c00400{left:381.647100px;}
.x49_c00400{left:385.314504px;}
.x2d_c00400{left:387.199128px;}
.xa7_c00400{left:388.270080px;}
.x33_c00400{left:393.141354px;}
.x18_c00400{left:396.648726px;}
.xa4_c00400{left:397.721076px;}
.x29_c00400{left:400.701210px;}
.x77_c00400{left:401.760000px;}
.x9c_c00400{left:403.120140px;}
.x4f_c00400{left:405.565902px;}
.x7_c00400{left:406.812000px;}
.x6e_c00400{left:408.780000px;}
.x93_c00400{left:410.949072px;}
.xa5_c00400{left:413.112060px;}
.x34_c00400{left:416.633238px;}
.x25_c00400{left:418.790712px;}
.x8d_c00400{left:423.101364px;}
.x8_c00400{left:424.647000px;}
.x78_c00400{left:425.790000px;}
.x7b_c00400{left:430.650000px;}
.x5a_c00400{left:432.837906px;}
.x3a_c00400{left:436.886190px;}
.x50_c00400{left:438.507654px;}
.x94_c00400{left:440.110944px;}
.x8e_c00400{left:442.272588px;}
.x58_c00400{left:446.878500px;}
.x7c_c00400{left:449.280000px;}
.x10_c00400{left:450.750384px;}
.x35_c00400{left:454.975764px;}
.x79_c00400{left:456.840000px;}
.x98_c00400{left:458.742348px;}
.x86_c00400{left:461.970000px;}
.x5b_c00400{left:463.350798px;}
.x51_c00400{left:465.510042px;}
.x20_c00400{left:467.941308px;}
.x6f_c00400{left:472.500000px;}
.x45_c00400{left:475.772058px;}
.xa8_c00400{left:477.642804px;}
.x2e_c00400{left:479.816466px;}
.x62_c00400{left:481.680000px;}
.xa9_c00400{left:484.393236px;}
.x46_c00400{left:485.763498px;}
.x9d_c00400{left:491.144268px;}
.x19_c00400{left:492.234996px;}
.x70_c00400{left:496.530000px;}
.x36_c00400{left:501.689496px;}
.x99_c00400{left:504.912396px;}
.x8f_c00400{left:506.805216px;}
.x11_c00400{left:509.572710px;}
.x5c_c00400{left:510.604602px;}
.x95_c00400{left:511.664028px;}
.x7a_c00400{left:513.810000px;}
.x7d_c00400{left:515.430000px;}
.x9e_c00400{left:518.145996px;}
.x71_c00400{left:522.720000px;}
.x63_c00400{left:530.820000px;}
.x90_c00400{left:531.915324px;}
.xa1_c00400{left:536.235912px;}
.x4a_c00400{left:537.335892px;}
.x52_c00400{left:538.416036px;}
.x87_c00400{left:540.810000px;}
.x9a_c00400{left:542.713320px;}
.xaa_c00400{left:544.605600px;}
.x64_c00400{left:555.120000px;}
.x9b_c00400{left:558.104304px;}
.xa2_c00400{left:561.886056px;}
.x96_c00400{left:562.965816px;}
.x72_c00400{left:565.110000px;}
.x84_c00400{left:567.540000px;}
.xa6_c00400{left:584.567040px;}
.x65_c00400{left:589.680000px;}
.x9f_c00400{left:591.857712px;}
.x66_c00400{left:601.290000px;}
.xa3_c00400{left:621.828396px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
._0_c00400{width:27.924276pt;}
.fs17_c00400{font-size:19.601411pt;}
.fs8_c00400{font-size:40.133333pt;}
.fs15_c00400{font-size:42.000000pt;}
.fsa_c00400{font-size:42.933333pt;}
.fs9_c00400{font-size:43.866667pt;}
.fs11_c00400{font-size:43.868070pt;}
.fs14_c00400{font-size:44.800000pt;}
.fsf_c00400{font-size:44.801434pt;}
.fsb_c00400{font-size:45.733333pt;}
.fs10_c00400{font-size:45.734797pt;}
.fsc_c00400{font-size:47.600000pt;}
.fsd_c00400{font-size:49.468250pt;}
.fs13_c00400{font-size:52.268339pt;}
.fs16_c00400{font-size:53.200000pt;}
.fse_c00400{font-size:53.201702pt;}
.fs12_c00400{font-size:55.068429pt;}
.fs6_c00400{font-size:56.004032pt;}
.fs4_c00400{font-size:58.804233pt;}
.fs1_c00400{font-size:59.737634pt;}
.fs3_c00400{font-size:60.671035pt;}
.fs5_c00400{font-size:61.604435pt;}
.fs0_c00400{font-size:62.537836pt;}
.fs18_c00400{font-size:63.466667pt;}
.fs7_c00400{font-size:63.471236pt;}
.fs2_c00400{font-size:64.404637pt;}
.y0_c00400{bottom:0.000000pt;}
.yef_c00400{bottom:87.600000pt;}
.ye6_c00400{bottom:143.280000pt;}
.ye7_c00400{bottom:143.867552pt;}
.ye8_c00400{bottom:144.181520pt;}
.ye9_c00400{bottom:144.322736pt;}
.yea_c00400{bottom:144.509712pt;}
.yeb_c00400{bottom:145.010928pt;}
.yec_c00400{bottom:145.207408pt;}
.yed_c00400{bottom:145.589904pt;}
.yee_c00400{bottom:145.947072pt;}
.ye5_c00400{bottom:158.806667pt;}
.yd9_c00400{bottom:164.634720pt;}
.yda_c00400{bottom:165.066229pt;}
.ydb_c00400{bottom:165.425931pt;}
.ydc_c00400{bottom:165.730464pt;}
.ydd_c00400{bottom:166.913557pt;}
.ye4_c00400{bottom:174.988000pt;}
.yd8_c00400{bottom:182.392747pt;}
.yd7_c00400{bottom:182.393344pt;}
.yd6_c00400{bottom:182.393931pt;}
.yd3_c00400{bottom:182.394016pt;}
.yd5_c00400{bottom:182.394165pt;}
.yd4_c00400{bottom:182.394432pt;}
.ye3_c00400{bottom:190.960000pt;}
.yd2_c00400{bottom:198.017899pt;}
.yd1_c00400{bottom:198.017909pt;}
.yce_c00400{bottom:198.018091pt;}
.yd0_c00400{bottom:198.018187pt;}
.ycf_c00400{bottom:198.018240pt;}
.ycb_c00400{bottom:198.018325pt;}
.ycc_c00400{bottom:198.018635pt;}
.ycd_c00400{bottom:198.018741pt;}
.ye2_c00400{bottom:206.729333pt;}
.yca_c00400{bottom:213.466507pt;}
.yc9_c00400{bottom:213.466944pt;}
.yc7_c00400{bottom:213.467019pt;}
.yc6_c00400{bottom:213.467136pt;}
.yc8_c00400{bottom:213.467221pt;}
.yc5_c00400{bottom:213.467349pt;}
.yc2_c00400{bottom:213.467584pt;}
.yc3_c00400{bottom:213.467744pt;}
.yc4_c00400{bottom:213.467893pt;}
.ye1_c00400{bottom:222.564000pt;}
.ybb_c00400{bottom:229.329696pt;}
.ybd_c00400{bottom:229.329739pt;}
.yba_c00400{bottom:229.329760pt;}
.ybf_c00400{bottom:229.330005pt;}
.ybc_c00400{bottom:229.330123pt;}
.ybe_c00400{bottom:229.330272pt;}
.yc1_c00400{bottom:229.330411pt;}
.yc0_c00400{bottom:229.330901pt;}
.ye0_c00400{bottom:238.073333pt;}
.yb8_c00400{bottom:245.136640pt;}
.yb9_c00400{bottom:245.136747pt;}
.yb7_c00400{bottom:245.136757pt;}
.yb4_c00400{bottom:245.136885pt;}
.yb3_c00400{bottom:245.137099pt;}
.yb6_c00400{bottom:245.137184pt;}
.yb5_c00400{bottom:245.137248pt;}
.yb2_c00400{bottom:245.137269pt;}
.ydf_c00400{bottom:254.093333pt;}
.yaf_c00400{bottom:261.648608pt;}
.yae_c00400{bottom:261.648821pt;}
.yb0_c00400{bottom:261.649184pt;}
.yb1_c00400{bottom:261.649216pt;}
.yad_c00400{bottom:261.649429pt;}
.yac_c00400{bottom:261.649749pt;}
.yde_c00400{bottom:269.868000pt;}
.ya6_c00400{bottom:277.048555pt;}
.yab_c00400{bottom:277.048928pt;}
.ya7_c00400{bottom:277.049131pt;}
.yaa_c00400{bottom:277.049525pt;}
.ya8_c00400{bottom:277.049760pt;}
.ya9_c00400{bottom:277.049803pt;}
.ya5_c00400{bottom:290.006187pt;}
.ya4_c00400{bottom:290.006731pt;}
.y9c_c00400{bottom:290.006880pt;}
.y9d_c00400{bottom:290.007243pt;}
.ya2_c00400{bottom:290.007275pt;}
.ya3_c00400{bottom:290.007371pt;}
.ya0_c00400{bottom:290.007605pt;}
.y9f_c00400{bottom:290.007616pt;}
.y9e_c00400{bottom:290.007755pt;}
.ya1_c00400{bottom:290.007915pt;}
.y98_c00400{bottom:305.840672pt;}
.y93_c00400{bottom:305.840683pt;}
.y94_c00400{bottom:305.840779pt;}
.y99_c00400{bottom:305.840992pt;}
.y91_c00400{bottom:305.841013pt;}
.y97_c00400{bottom:305.841056pt;}
.y9b_c00400{bottom:305.841077pt;}
.y95_c00400{bottom:305.841141pt;}
.y9a_c00400{bottom:305.841195pt;}
.y92_c00400{bottom:305.841216pt;}
.y96_c00400{bottom:305.841237pt;}
.y8a_c00400{bottom:320.640000pt;}
.y8b_c00400{bottom:320.791520pt;}
.y8c_c00400{bottom:321.173760pt;}
.y8d_c00400{bottom:321.315883pt;}
.y8e_c00400{bottom:321.640277pt;}
.y8f_c00400{bottom:321.755595pt;}
.y90_c00400{bottom:322.080021pt;}
.y89_c00400{bottom:325.605333pt;}
.y88_c00400{bottom:340.692000pt;}
.y87_c00400{bottom:353.048000pt;}
.y86_c00400{bottom:357.221333pt;}
.y85_c00400{bottom:372.370667pt;}
.y84_c00400{bottom:388.750667pt;}
.y83_c00400{bottom:404.554667pt;}
.y7f_c00400{bottom:449.936629pt;}
.y7b_c00400{bottom:449.936736pt;}
.y7e_c00400{bottom:449.936837pt;}
.y80_c00400{bottom:449.936939pt;}
.y82_c00400{bottom:449.936997pt;}
.y81_c00400{bottom:449.937029pt;}
.y7c_c00400{bottom:449.937184pt;}
.y7d_c00400{bottom:449.937296pt;}
.y73_c00400{bottom:469.711163pt;}
.y72_c00400{bottom:469.711195pt;}
.y74_c00400{bottom:469.711520pt;}
.y76_c00400{bottom:469.711563pt;}
.y71_c00400{bottom:469.711653pt;}
.y78_c00400{bottom:469.711765pt;}
.y75_c00400{bottom:469.711861pt;}
.y7a_c00400{bottom:469.711915pt;}
.y77_c00400{bottom:469.711941pt;}
.y79_c00400{bottom:469.712197pt;}
.y68_c00400{bottom:489.688437pt;}
.y6f_c00400{bottom:489.688448pt;}
.y6e_c00400{bottom:489.688464pt;}
.y69_c00400{bottom:489.688581pt;}
.y70_c00400{bottom:489.688667pt;}
.y6c_c00400{bottom:489.688864pt;}
.y6b_c00400{bottom:489.688928pt;}
.y6d_c00400{bottom:489.689136pt;}
.y6a_c00400{bottom:489.689157pt;}
.y65_c00400{bottom:510.356923pt;}
.y63_c00400{bottom:510.356955pt;}
.y62_c00400{bottom:510.357003pt;}
.y61_c00400{bottom:510.357125pt;}
.y67_c00400{bottom:510.357456pt;}
.y66_c00400{bottom:510.357461pt;}
.y64_c00400{bottom:510.357579pt;}
.y60_c00400{bottom:510.357637pt;}
.y5f_c00400{bottom:510.358203pt;}
.y5e_c00400{bottom:530.320971pt;}
.y5d_c00400{bottom:530.321077pt;}
.y5b_c00400{bottom:530.321179pt;}
.y57_c00400{bottom:530.321376pt;}
.y54_c00400{bottom:530.321403pt;}
.y5a_c00400{bottom:530.321637pt;}
.y5c_c00400{bottom:530.321696pt;}
.y55_c00400{bottom:530.321851pt;}
.y56_c00400{bottom:530.321941pt;}
.y58_c00400{bottom:530.322000pt;}
.y59_c00400{bottom:530.322112pt;}
.y4c_c00400{bottom:549.770357pt;}
.y51_c00400{bottom:549.770496pt;}
.y4d_c00400{bottom:549.770608pt;}
.y52_c00400{bottom:549.770800pt;}
.y50_c00400{bottom:549.770901pt;}
.y53_c00400{bottom:549.771179pt;}
.y4e_c00400{bottom:549.771216pt;}
.y4f_c00400{bottom:549.771237pt;}
.y4a_c00400{bottom:569.679872pt;}
.y4b_c00400{bottom:569.680021pt;}
.y49_c00400{bottom:569.680064pt;}
.y45_c00400{bottom:569.680299pt;}
.y48_c00400{bottom:569.680485pt;}
.y46_c00400{bottom:569.680693pt;}
.y47_c00400{bottom:569.680944pt;}
.y3b_c00400{bottom:589.351221pt;}
.y44_c00400{bottom:589.351323pt;}
.y42_c00400{bottom:589.351675pt;}
.y3c_c00400{bottom:589.351760pt;}
.y43_c00400{bottom:589.351781pt;}
.y3f_c00400{bottom:589.352112pt;}
.y3e_c00400{bottom:589.352176pt;}
.y41_c00400{bottom:589.352187pt;}
.y40_c00400{bottom:589.352309pt;}
.y3d_c00400{bottom:589.352384pt;}
.y35_c00400{bottom:609.900800pt;}
.y3a_c00400{bottom:609.901003pt;}
.y37_c00400{bottom:609.901216pt;}
.y34_c00400{bottom:609.901221pt;}
.y39_c00400{bottom:609.901227pt;}
.y36_c00400{bottom:609.901248pt;}
.y38_c00400{bottom:609.901541pt;}
.y33_c00400{bottom:630.449520pt;}
.y32_c00400{bottom:630.449803pt;}
.y30_c00400{bottom:630.450165pt;}
.y31_c00400{bottom:630.450331pt;}
.y2f_c00400{bottom:630.450464pt;}
.y2e_c00400{bottom:630.450565pt;}
.y2b_c00400{bottom:650.459563pt;}
.y2d_c00400{bottom:650.459995pt;}
.y2c_c00400{bottom:650.460080pt;}
.y2a_c00400{bottom:650.460128pt;}
.y29_c00400{bottom:650.460373pt;}
.y26_c00400{bottom:650.460576pt;}
.y28_c00400{bottom:650.460901pt;}
.y27_c00400{bottom:650.460971pt;}
.y1c_c00400{bottom:669.355856pt;}
.y1d_c00400{bottom:669.781483pt;}
.y1e_c00400{bottom:669.994928pt;}
.y1f_c00400{bottom:670.202000pt;}
.y20_c00400{bottom:670.765957pt;}
.y21_c00400{bottom:670.892069pt;}
.y22_c00400{bottom:671.055712pt;}
.y23_c00400{bottom:671.328496pt;}
.y24_c00400{bottom:671.757925pt;}
.y25_c00400{bottom:672.060299pt;}
.y1b_c00400{bottom:690.931781pt;}
.y16_c00400{bottom:690.932187pt;}
.y14_c00400{bottom:690.932251pt;}
.y19_c00400{bottom:690.932267pt;}
.y1a_c00400{bottom:690.932341pt;}
.y18_c00400{bottom:690.932443pt;}
.y17_c00400{bottom:690.932635pt;}
.y13_c00400{bottom:690.932709pt;}
.y15_c00400{bottom:690.932805pt;}
.y9_c00400{bottom:709.919840pt;}
.ya_c00400{bottom:710.308379pt;}
.yb_c00400{bottom:710.434459pt;}
.yc_c00400{bottom:710.784000pt;}
.yd_c00400{bottom:711.092901pt;}
.ye_c00400{bottom:711.300037pt;}
.yf_c00400{bottom:711.674955pt;}
.y10_c00400{bottom:712.016864pt;}
.y11_c00400{bottom:712.204405pt;}
.y12_c00400{bottom:712.622480pt;}
.y1_c00400{bottom:728.393333pt;}
.y2_c00400{bottom:728.640053pt;}
.y3_c00400{bottom:729.119381pt;}
.y4_c00400{bottom:729.479493pt;}
.y5_c00400{bottom:730.376693pt;}
.y6_c00400{bottom:730.650821pt;}
.y7_c00400{bottom:731.322549pt;}
.y8_c00400{bottom:731.512789pt;}
.h19_c00400{height:19.601411pt;}
.ha_c00400{height:40.133333pt;}
.h17_c00400{height:42.000000pt;}
.hc_c00400{height:42.933333pt;}
.hb_c00400{height:43.866667pt;}
.h13_c00400{height:43.868070pt;}
.h16_c00400{height:44.800000pt;}
.h11_c00400{height:44.801434pt;}
.hd_c00400{height:45.733333pt;}
.h12_c00400{height:45.734797pt;}
.he_c00400{height:47.600000pt;}
.hf_c00400{height:49.468250pt;}
.h15_c00400{height:52.268339pt;}
.h18_c00400{height:53.200000pt;}
.h10_c00400{height:53.201702pt;}
.h14_c00400{height:55.068429pt;}
.h8_c00400{height:56.004032pt;}
.h6_c00400{height:58.804233pt;}
.h3_c00400{height:59.737634pt;}
.h5_c00400{height:60.671035pt;}
.h7_c00400{height:61.604435pt;}
.h2_c00400{height:62.537836pt;}
.h1a_c00400{height:63.466667pt;}
.h9_c00400{height:63.471236pt;}
.h4_c00400{height:64.404637pt;}
.h1_c00400{height:893.333333pt;}
.h0_c00400{height:893.466667pt;}
.w0_c00400{width:635.733333pt;}
.w1_c00400{width:636.000000pt;}
.x0_c00400{left:0.000000pt;}
.xaf_c00400{left:84.960000pt;}
.x91_c00400{left:86.640907pt;}
.xb3_c00400{left:87.600000pt;}
.x7e_c00400{left:88.800000pt;}
.x73_c00400{left:90.000000pt;}
.xbe_c00400{left:94.568000pt;}
.xac_c00400{left:97.920000pt;}
.x88_c00400{left:107.809333pt;}
.x40_c00400{left:109.446027pt;}
.x5d_c00400{left:110.880000pt;}
.xb0_c00400{left:113.760000pt;}
.x9_c00400{left:115.050629pt;}
.x21_c00400{left:116.158864pt;}
.x1_c00400{left:117.509333pt;}
.x53_c00400{left:118.806587pt;}
.x2f_c00400{left:120.001957pt;}
.x4b_c00400{left:120.965877pt;}
.xbc_c00400{left:126.000000pt;}
.x81_c00400{left:127.680000pt;}
.xb4_c00400{left:128.880000pt;}
.x89_c00400{left:132.242496pt;}
.x5e_c00400{left:135.120000pt;}
.x2_c00400{left:138.069333pt;}
.x3b_c00400{left:139.206288pt;}
.xb7_c00400{left:143.280000pt;}
.xbd_c00400{left:144.480000pt;}
.x22_c00400{left:146.640581pt;}
.x54_c00400{left:148.328176pt;}
.x74_c00400{left:149.520000pt;}
.x82_c00400{left:153.600000pt;}
.x12_c00400{left:155.762976pt;}
.xad_c00400{left:157.200000pt;}
.x37_c00400{left:159.366304pt;}
.x67_c00400{left:160.800000pt;}
.xa_c00400{left:163.542283pt;}
.xb5_c00400{left:164.640000pt;}
.x1a_c00400{left:168.787957pt;}
.xbf_c00400{left:169.694667pt;}
.x23_c00400{left:172.082912pt;}
.x2a_c00400{left:174.005840pt;}
.x3c_c00400{left:175.928901pt;}
.x68_c00400{left:177.120000pt;}
.x3_c00400{left:178.013333pt;}
.xb_c00400{left:179.383051pt;}
.x30_c00400{left:182.166901pt;}
.x55_c00400{left:184.330693pt;}
.x75_c00400{left:186.240000pt;}
.x47_c00400{left:187.451461pt;}
.x41_c00400{left:192.011248pt;}
.x92_c00400{left:193.923765pt;}
.x1b_c00400{left:195.465237pt;}
.xc0_c00400{left:197.044000pt;}
.x69_c00400{left:198.000000pt;}
.x13_c00400{left:199.926661pt;}
.x2b_c00400{left:203.047349pt;}
.xb1_c00400{left:204.240000pt;}
.x31_c00400{left:206.889120pt;}
.x4_c00400{left:208.022667pt;}
.x26_c00400{left:209.767099pt;}
.x42_c00400{left:210.732603pt;}
.xb8_c00400{left:212.160000pt;}
.x4c_c00400{left:213.372507pt;}
.x3d_c00400{left:216.492075pt;}
.xba_c00400{left:218.880000pt;}
.x1c_c00400{left:221.389152pt;}
.xc_c00400{left:223.069147pt;}
.x14_c00400{left:227.768011pt;}
.x5f_c00400{left:229.680000pt;}
.xb9_c00400{left:230.880000pt;}
.x2c_c00400{left:233.049003pt;}
.x4d_c00400{left:237.134597pt;}
.x83_c00400{left:239.280000pt;}
.x56_c00400{left:242.175013pt;}
.x3e_c00400{left:243.134581pt;}
.x60_c00400{left:244.800000pt;}
.x59_c00400{left:246.494235pt;}
.xb2_c00400{left:250.080000pt;}
.x32_c00400{left:253.211792pt;}
.xc1_c00400{left:255.185333pt;}
.x15_c00400{left:256.809520pt;}
.x8a_c00400{left:258.486571pt;}
.x6a_c00400{left:259.440000pt;}
.xd_c00400{left:261.701669pt;}
.xae_c00400{left:264.960000pt;}
.xc2_c00400{left:266.400000pt;}
.x7f_c00400{left:268.080000pt;}
.x48_c00400{left:269.056539pt;}
.x27_c00400{left:270.011771pt;}
.x43_c00400{left:272.417483pt;}
.x76_c00400{left:274.080000pt;}
.xbb_c00400{left:275.040000pt;}
.xb6_c00400{left:278.160000pt;}
.x57_c00400{left:279.377707pt;}
.x38_c00400{left:281.775936pt;}
.x5_c00400{left:282.789333pt;}
.xe_c00400{left:287.630917pt;}
.x3f_c00400{left:289.218555pt;}
.x1d_c00400{left:291.944544pt;}
.x97_c00400{left:294.967232pt;}
.x16_c00400{left:297.132661pt;}
.x6b_c00400{left:299.520000pt;}
.x24_c00400{left:301.212187pt;}
.x4e_c00400{left:303.138768pt;}
.x6_c00400{left:305.633333pt;}
.x1e_c00400{left:307.787979pt;}
.x6c_c00400{left:309.840000pt;}
.x61_c00400{left:311.280000pt;}
.x85_c00400{left:312.240000pt;}
.x17_c00400{left:313.453680pt;}
.x8b_c00400{left:315.128864pt;}
.x39_c00400{left:316.098213pt;}
.x44_c00400{left:319.940331pt;}
.x80_c00400{left:322.560000pt;}
.xa0_c00400{left:325.209781pt;}
.x1f_c00400{left:328.203621pt;}
.xc3_c00400{left:329.520000pt;}
.x28_c00400{left:330.976555pt;}
.x6d_c00400{left:333.120000pt;}
.xf_c00400{left:334.431824pt;}
.x8c_c00400{left:336.968928pt;}
.xab_c00400{left:339.241867pt;}
.x49_c00400{left:342.501781pt;}
.x2d_c00400{left:344.177003pt;}
.xa7_c00400{left:345.128960pt;}
.x33_c00400{left:349.458981pt;}
.x18_c00400{left:352.576645pt;}
.xa4_c00400{left:353.529845pt;}
.x29_c00400{left:356.178853pt;}
.x77_c00400{left:357.120000pt;}
.x9c_c00400{left:358.329013pt;}
.x4f_c00400{left:360.503024pt;}
.x7_c00400{left:361.610667pt;}
.x6e_c00400{left:363.360000pt;}
.x93_c00400{left:365.288064pt;}
.xa5_c00400{left:367.210720pt;}
.x34_c00400{left:370.340656pt;}
.x25_c00400{left:372.258411pt;}
.x8d_c00400{left:376.090101pt;}
.x8_c00400{left:377.464000pt;}
.x78_c00400{left:378.480000pt;}
.x7b_c00400{left:382.800000pt;}
.x5a_c00400{left:384.744805pt;}
.x3a_c00400{left:388.343280pt;}
.x50_c00400{left:389.784581pt;}
.x94_c00400{left:391.209728pt;}
.x8e_c00400{left:393.131189pt;}
.x58_c00400{left:397.225333pt;}
.x7c_c00400{left:399.360000pt;}
.x10_c00400{left:400.667008pt;}
.x35_c00400{left:404.422901pt;}
.x79_c00400{left:406.080000pt;}
.x98_c00400{left:407.770976pt;}
.x86_c00400{left:410.640000pt;}
.x5b_c00400{left:411.867376pt;}
.x51_c00400{left:413.786704pt;}
.x20_c00400{left:415.947829pt;}
.x6f_c00400{left:420.000000pt;}
.x45_c00400{left:422.908496pt;}
.xa8_c00400{left:424.571381pt;}
.x2e_c00400{left:426.503525pt;}
.x62_c00400{left:428.160000pt;}
.xa9_c00400{left:430.571765pt;}
.x46_c00400{left:431.789776pt;}
.x9d_c00400{left:436.572683pt;}
.x19_c00400{left:437.542219pt;}
.x70_c00400{left:441.360000pt;}
.x36_c00400{left:445.946219pt;}
.x99_c00400{left:448.811019pt;}
.x8f_c00400{left:450.493525pt;}
.x11_c00400{left:452.953520pt;}
.x5c_c00400{left:453.870757pt;}
.x95_c00400{left:454.812469pt;}
.x7a_c00400{left:456.720000pt;}
.x7d_c00400{left:458.160000pt;}
.x9e_c00400{left:460.574219pt;}
.x71_c00400{left:464.640000pt;}
.x63_c00400{left:471.840000pt;}
.x90_c00400{left:472.813621pt;}
.xa1_c00400{left:476.654144pt;}
.x4a_c00400{left:477.631904pt;}
.x52_c00400{left:478.592032pt;}
.x87_c00400{left:480.720000pt;}
.x9a_c00400{left:482.411840pt;}
.xaa_c00400{left:484.093867pt;}
.x64_c00400{left:493.440000pt;}
.x9b_c00400{left:496.092715pt;}
.xa2_c00400{left:499.454272pt;}
.x96_c00400{left:500.414059pt;}
.x72_c00400{left:502.320000pt;}
.x84_c00400{left:504.480000pt;}
.xa6_c00400{left:519.615147pt;}
.x65_c00400{left:524.160000pt;}
.x9f_c00400{left:526.095744pt;}
.x66_c00400{left:534.480000pt;}
.xa3_c00400{left:552.736352pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.me2_c00401{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);}
.m5e_c00401{transform:matrix(0.138730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138730,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.139585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139585,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.147205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147205,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);}
.md3_c00401{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);}
.m1a_c00401{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);}
.m40_c00401{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);}
.m62_c00401{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);}
.m44_c00401{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_c00401{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_c00401{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);}
.me3_c00401{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);}
.meb_c00401{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);}
.m17_c00401{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);}
.m58_c00401{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);}
.mcd_c00401{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);}
.m74_c00401{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);}
.m52_c00401{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);}
.m2a_c00401{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);}
.m4d_c00401{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);}
.m13_c00401{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);}
.m5c_c00401{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);}
.mf_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);}
.m36_c00401{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);}
.m33_c00401{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);}
.m69_c00401{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);}
.m5d_c00401{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);}
.m91_c00401{transform:matrix(0.175643,0.002459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175643,0.002459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175643,0.002459,-0.003500,0.249976,0,0);}
.m23_c00401{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);}
.m3_c00401{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);}
.m2c_c00401{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);}
.mb2_c00401{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);}
.m45_c00401{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);}
.m4c_c00401{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);}
.m28_c00401{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{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);}
.m48_c00401{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);}
.mea_c00401{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);}
.m65_c00401{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);}
.m5a_c00401{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);}
.m3f_c00401{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);}
.m5b_c00401{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);}
.m26_c00401{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);}
.mc8_c00401{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);}
.m60_c00401{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);}
.m21_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);}
.m61_c00401{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);}
.m7d_c00401{transform:matrix(0.184724,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184724,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184724,0.002401,-0.003250,0.249979,0,0);}
.m30_c00401{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);}
.m42_c00401{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);}
.me_c00401{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);}
.m1f_c00401{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);}
.m24_c00401{transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{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);}
.m79_c00401{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);}
.m9b_c00401{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);}
.m7b_c00401{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);}
.m9c_c00401{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);}
.m56_c00401{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);}
.m2b_c00401{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);}
.m3c_c00401{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);}
.m1d_c00401{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);}
.med_c00401{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);}
.mb7_c00401{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);}
.mb1_c00401{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);}
.m14_c00401{transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191310,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{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);}
.m7a_c00401{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);}
.mb4_c00401{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);}
.m7_c00401{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);}
.mcf_c00401{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);}
.me5_c00401{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);}
.m11_c00401{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);}
.m75_c00401{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);}
.ma3_c00401{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);}
.m15_c00401{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);}
.ma2_c00401{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);}
.m64_c00401{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);}
.m20_c00401{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);}
.mc5_c00401{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);}
.m88_c00401{transform:matrix(0.195161,0.002732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195161,0.002732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195161,0.002732,-0.003500,0.249976,0,0);}
.m31_c00401{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);}
.m83_c00401{transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195668,0.002544,-0.003250,0.249979,0,0);}
.m2f_c00401{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);}
.mba_c00401{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);}
.m4_c00401{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);}
.mb_c00401{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);}
.me9_c00401{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);}
.m5_c00401{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);}
.m77_c00401{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);}
.m54_c00401{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);}
.m68_c00401{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);}
.m37_c00401{transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{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);}
.ma0_c00401{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);}
.mcc_c00401{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);}
.md8_c00401{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);}
.m80_c00401{transform:matrix(0.200888,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200888,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200888,0.002612,-0.003250,0.249979,0,0);}
.m8d_c00401{transform:matrix(0.200895,0.002813,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200895,0.002813,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200895,0.002813,-0.003500,0.249976,0,0);}
.m6c_c00401{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);}
.m82_c00401{transform:matrix(0.201523,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201523,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201523,0.002620,-0.003250,0.249979,0,0);}
.m0_c00401{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);}
.mca_c00401{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);}
.maf_c00401{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);}
.m4f_c00401{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);}
.m86_c00401{transform:matrix(0.202770,0.002839,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202770,0.002839,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202770,0.002839,-0.003500,0.249976,0,0);}
.mc7_c00401{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);}
.m4a_c00401{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);}
.m34_c00401{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);}
.m5f_c00401{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);}
.m3d_c00401{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);}
.m51_c00401{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);}
.mb3_c00401{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);}
.me7_c00401{transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);}
.me8_c00401{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);}
.m8c_c00401{transform:matrix(0.205520,0.002877,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205520,0.002877,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205520,0.002877,-0.003500,0.249976,0,0);}
.mdf_c00401{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);}
.m87_c00401{transform:matrix(0.205820,0.002881,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205820,0.002881,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205820,0.002881,-0.003500,0.249976,0,0);}
.m6_c00401{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);}
.mee_c00401{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);}
.md_c00401{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);}
.mb6_c00401{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);}
.mae_c00401{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);}
.m22_c00401{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);}
.mb5_c00401{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);}
.mc9_c00401{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_c00401{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);}
.m27_c00401{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);}
.m3b_c00401{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);}
.mc3_c00401{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);}
.mb8_c00401{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);}
.m2_c00401{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);}
.md4_c00401{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);}
.me6_c00401{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);}
.m32_c00401{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);}
.m94_c00401{transform:matrix(0.212384,0.002973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212384,0.002973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212384,0.002973,-0.003500,0.249976,0,0);}
.mdc_c00401{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);}
.mda_c00401{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);}
.mde_c00401{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);}
.m25_c00401{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_c00401{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);}
.m16_c00401{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);}
.m50_c00401{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);}
.me0_c00401{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);}
.mce_c00401{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);}
.m99_c00401{transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);}
.m8f_c00401{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);}
.m66_c00401{transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.219771,0.002857,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219771,0.002857,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219771,0.002857,-0.003250,0.249979,0,0);}
.m63_c00401{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);}
.ma_c00401{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);}
.m18_c00401{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);}
.mc4_c00401{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);}
.mbd_c00401{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);}
.m1b_c00401{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);}
.ma1_c00401{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);}
.m57_c00401{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);}
.m90_c00401{transform:matrix(0.222688,0.003118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222688,0.003118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222688,0.003118,-0.003500,0.249976,0,0);}
.mc1_c00401{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);}
.md7_c00401{transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);}
.m98_c00401{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);}
.ma5_c00401{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);}
.m7e_c00401{transform:matrix(0.225421,0.002930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225421,0.002930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225421,0.002930,-0.003250,0.249979,0,0);}
.mbf_c00401{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.225998,0.003164,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225998,0.003164,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225998,0.003164,-0.003500,0.249976,0,0);}
.md0_c00401{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);}
.m95_c00401{transform:matrix(0.228558,0.003200,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228558,0.003200,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228558,0.003200,-0.003500,0.249976,0,0);}
.m92_c00401{transform:matrix(0.229538,0.003214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229538,0.003214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229538,0.003214,-0.003500,0.249976,0,0);}
.mbc_c00401{transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);}
.mc0_c00401{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);}
.mb9_c00401{transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231335,0.000000,0.000000,0.250000,0,0);}
.m6b_c00401{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);}
.m9e_c00401{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);}
.m46_c00401{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);}
.m8a_c00401{transform:matrix(0.233017,0.003262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233017,0.003262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233017,0.003262,-0.003500,0.249976,0,0);}
.mcb_c00401{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);}
.mdd_c00401{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.mc6_c00401{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{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);}
.m49_c00401{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);}
.mec_c00401{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);}
.m35_c00401{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);}
.m78_c00401{transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.238065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238065,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{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);}
.m4e_c00401{transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{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);}
.ma4_c00401{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);}
.me1_c00401{transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);}
.md2_c00401{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);}
.m9_c00401{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);}
.m3a_c00401{transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{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);}
.m59_c00401{transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);}
.mac_c00401{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);}
.mbb_c00401{transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.247851,0.003470,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247851,0.003470,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247851,0.003470,-0.003500,0.249976,0,0);}
.maa_c00401{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);}
.md1_c00401{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);}
.m81_c00401{transform:matrix(0.249564,0.003244,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249564,0.003244,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249564,0.003244,-0.003250,0.249979,0,0);}
.m47_c00401{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.mbe_c00401{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);}
.m4b_c00401{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);}
.mc2_c00401{transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{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);}
.m85_c00401{transform:matrix(0.265369,0.003715,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265369,0.003715,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265369,0.003715,-0.003500,0.249976,0,0);}
.m2d_c00401{transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{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);}
.m89_c00401{transform:matrix(0.268839,0.003764,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268839,0.003764,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268839,0.003764,-0.003500,0.249976,0,0);}
.mb0_c00401{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);}
.mad_c00401{transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272005,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.272133,0.003810,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272133,0.003810,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272133,0.003810,-0.003500,0.249976,0,0);}
.m7f_c00401{transform:matrix(0.274812,0.003573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274812,0.003573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274812,0.003573,-0.003250,0.249979,0,0);}
.m8b_c00401{transform:matrix(0.277088,0.003879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277088,0.003879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277088,0.003879,-0.003500,0.249976,0,0);}
.ma7_c00401{transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.280465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00401{transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);}
.md6_c00401{transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288355,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294935,0.000000,0.000000,0.250000,0,0);}
.me4_c00401{transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297020,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307540,0.000000,0.000000,0.250000,0,0);}
.md5_c00401{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.mab_c00401{transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313460,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314480,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.335582,0.004698,-0.003500,0.249976,0,0);-ms-transform:matrix(0.335582,0.004698,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.335582,0.004698,-0.003500,0.249976,0,0);}
.ma9_c00401{transform:matrix(0.338960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338960,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341205,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.360005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360005,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.371735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371735,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.418925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418925,0.000000,0.000000,0.250000,0,0);}
.m72_c00401{transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434675,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.444436,0.006222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.444436,0.006222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.444436,0.006222,-0.003500,0.249976,0,0);}
.m76_c00401{transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.489240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489240,0.000000,0.000000,0.250000,0,0);}
.md9_c00401{transform:matrix(0.645340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645340,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;}
.fs17_c00401{font-size:32.550000px;}
.fs15_c00401{font-size:45.150000px;}
.fs13_c00401{font-size:46.200000px;}
.fs16_c00401{font-size:48.300000px;}
.fs11_c00401{font-size:49.350000px;}
.fs12_c00401{font-size:50.400000px;}
.fs10_c00401{font-size:50.404939px;}
.fs14_c00401{font-size:51.450000px;}
.fsf_c00401{font-size:51.455042px;}
.fs7_c00401{font-size:61.950000px;}
.fs4_c00401{font-size:64.050000px;}
.fs6_c00401{font-size:65.100000px;}
.fs0_c00401{font-size:67.200000px;}
.fs1_c00401{font-size:69.300000px;}
.fsd_c00401{font-size:70.350000px;}
.fs5_c00401{font-size:71.400000px;}
.fse_c00401{font-size:71.406033px;}
.fs2_c00401{font-size:72.450000px;}
.fs9_c00401{font-size:73.500000px;}
.fs3_c00401{font-size:74.550000px;}
.fs8_c00401{font-size:76.650000px;}
.fsc_c00401{font-size:89.250000px;}
.fsb_c00401{font-size:94.500000px;}
.fsa_c00401{font-size:103.950000px;}
.y0_c00401{bottom:0.000000px;}
.y3f_c00401{bottom:164.794500px;}
.y37_c00401{bottom:167.241000px;}
.y3e_c00401{bottom:184.318500px;}
.y36_c00401{bottom:186.411000px;}
.y3d_c00401{bottom:201.519000px;}
.y35_c00401{bottom:204.144000px;}
.y3c_c00401{bottom:218.842500px;}
.y34_c00401{bottom:221.730000px;}
.y3b_c00401{bottom:237.436500px;}
.y33_c00401{bottom:239.529000px;}
.y3a_c00401{bottom:254.893500px;}
.y2c_c00401{bottom:257.186085px;}
.y2d_c00401{bottom:257.186427px;}
.y32_c00401{bottom:257.186538px;}
.y2e_c00401{bottom:257.186790px;}
.y31_c00401{bottom:257.187255px;}
.y2f_c00401{bottom:257.187372px;}
.y30_c00401{bottom:257.187993px;}
.y39_c00401{bottom:272.475000px;}
.y2b_c00401{bottom:273.961320px;}
.y2a_c00401{bottom:274.157481px;}
.y29_c00401{bottom:274.489449px;}
.y28_c00401{bottom:275.076819px;}
.y27_c00401{bottom:275.537517px;}
.y26_c00401{bottom:275.904450px;}
.y25_c00401{bottom:276.483000px;}
.y38_c00401{bottom:290.658000px;}
.y24_c00401{bottom:291.079866px;}
.y23_c00401{bottom:291.226740px;}
.y22_c00401{bottom:291.494679px;}
.y21_c00401{bottom:292.054056px;}
.y20_c00401{bottom:292.435269px;}
.y1f_c00401{bottom:292.821648px;}
.y1e_c00401{bottom:293.566917px;}
.y1d_c00401{bottom:294.031500px;}
.y1c_c00401{bottom:340.923201px;}
.y1b_c00401{bottom:341.483982px;}
.y1a_c00401{bottom:341.989422px;}
.y19_c00401{bottom:342.843230px;}
.y18_c00401{bottom:343.243428px;}
.y17_c00401{bottom:344.071632px;}
.y16_c00401{bottom:344.738883px;}
.y15_c00401{bottom:345.616500px;}
.y14_c00401{bottom:364.786500px;}
.y12_c00401{bottom:367.468500px;}
.y13_c00401{bottom:387.786000px;}
.y11_c00401{bottom:425.395500px;}
.y10_c00401{bottom:466.291500px;}
.yf_c00401{bottom:467.118000px;}
.ye_c00401{bottom:533.256000px;}
.yd_c00401{bottom:556.192500px;}
.yc_c00401{bottom:578.568000px;}
.yb_c00401{bottom:601.738500px;}
.ya_c00401{bottom:623.388000px;}
.y9_c00401{bottom:647.104500px;}
.y8_c00401{bottom:669.325500px;}
.y7_c00401{bottom:691.939500px;}
.y6_c00401{bottom:714.735000px;}
.y5_c00401{bottom:737.014500px;}
.y4_c00401{bottom:760.045500px;}
.y3_c00401{bottom:782.614500px;}
.y2_c00401{bottom:805.651500px;}
.y1_c00401{bottom:828.156000px;}
.h19_c00401{height:32.550000px;}
.h17_c00401{height:45.150000px;}
.h15_c00401{height:46.200000px;}
.h18_c00401{height:48.300000px;}
.h13_c00401{height:49.350000px;}
.h14_c00401{height:50.400000px;}
.h12_c00401{height:50.404939px;}
.h16_c00401{height:51.450000px;}
.h11_c00401{height:51.455042px;}
.h9_c00401{height:61.950000px;}
.h6_c00401{height:64.050000px;}
.h8_c00401{height:65.100000px;}
.h2_c00401{height:67.200000px;}
.h3_c00401{height:69.300000px;}
.hf_c00401{height:70.350000px;}
.h7_c00401{height:71.400000px;}
.h10_c00401{height:71.406033px;}
.h4_c00401{height:72.450000px;}
.hb_c00401{height:73.500000px;}
.h5_c00401{height:74.550000px;}
.ha_c00401{height:76.650000px;}
.he_c00401{height:89.250000px;}
.hd_c00401{height:94.500000px;}
.hc_c00401{height:103.950000px;}
.h0_c00401{height:1008.450000px;}
.h1_c00401{height:1008.750000px;}
.w1_c00401{width:689.250000px;}
.w0_c00401{width:689.550000px;}
.x0_c00401{left:0.000000px;}
.x69_c00401{left:142.020000px;}
.x5c_c00401{left:145.656000px;}
.x62_c00401{left:146.706000px;}
.x73_c00401{left:148.230000px;}
.x78_c00401{left:166.050000px;}
.x67_c00401{left:170.910144px;}
.x6a_c00401{left:175.770000px;}
.x25_c00401{left:179.010000px;}
.x4c_c00401{left:180.360000px;}
.x45_c00401{left:181.710000px;}
.x2d_c00401{left:182.790000px;}
.x1_c00401{left:183.870000px;}
.x63_c00401{left:188.031000px;}
.x6c_c00401{left:191.430000px;}
.x10_c00401{left:194.940000px;}
.x74_c00401{left:199.800000px;}
.x71_c00401{left:201.150000px;}
.x4d_c00401{left:204.120000px;}
.x79_c00401{left:206.010000px;}
.x34_c00401{left:207.900000px;}
.x2_c00401{left:209.250000px;}
.xa_c00401{left:211.410000px;}
.x64_c00401{left:214.240500px;}
.x68_c00401{left:215.464380px;}
.x3d_c00401{left:216.540000px;}
.x6d_c00401{left:218.970000px;}
.x49_c00401{left:220.590000px;}
.x53_c00401{left:223.830000px;}
.x18_c00401{left:226.260000px;}
.x75_c00401{left:228.690000px;}
.x4e_c00401{left:230.310000px;}
.x5d_c00401{left:232.074000px;}
.x52_c00401{left:234.900000px;}
.x28_c00401{left:236.790000px;}
.x6b_c00401{left:243.000000px;}
.x3_c00401{left:244.620000px;}
.x7a_c00401{left:245.700000px;}
.x11_c00401{left:247.050000px;}
.x54_c00401{left:253.800000px;}
.x2e_c00401{left:257.310000px;}
.x5e_c00401{left:259.672500px;}
.x3e_c00401{left:261.090000px;}
.x1f_c00401{left:263.790000px;}
.x76_c00401{left:264.870000px;}
.x19_c00401{left:266.760000px;}
.x4a_c00401{left:268.650000px;}
.x35_c00401{left:271.080000px;}
.x6e_c00401{left:272.160000px;}
.x72_c00401{left:275.400000px;}
.x77_c00401{left:279.990000px;}
.x29_c00401{left:284.040000px;}
.x5f_c00401{left:286.902000px;}
.x65_c00401{left:289.102500px;}
.x50_c00401{left:290.520000px;}
.xb_c00401{left:292.140000px;}
.x6f_c00401{left:294.300000px;}
.x2f_c00401{left:295.650000px;}
.x20_c00401{left:296.730000px;}
.x3f_c00401{left:298.350000px;}
.x56_c00401{left:301.590000px;}
.x1a_c00401{left:303.210000px;}
.x12_c00401{left:306.180000px;}
.x36_c00401{left:308.070000px;}
.x66_c00401{left:312.814500px;}
.x40_c00401{left:316.710000px;}
.x26_c00401{left:325.350000px;}
.x60_c00401{left:326.857500px;}
.x55_c00401{left:329.940000px;}
.x4_c00401{left:331.290000px;}
.x13_c00401{left:336.150000px;}
.x1b_c00401{left:341.280000px;}
.x61_c00401{left:345.996000px;}
.x46_c00401{left:347.760000px;}
.xc_c00401{left:348.840000px;}
.x37_c00401{left:350.460000px;}
.x21_c00401{left:351.810000px;}
.x7b_c00401{left:353.970000px;}
.x2a_c00401{left:355.050000px;}
.x5_c00401{left:357.210000px;}
.x70_c00401{left:358.830000px;}
.x59_c00401{left:362.998500px;}
.x57_c00401{left:366.930000px;}
.x1c_c00401{left:373.680000px;}
.xd_c00401{left:379.890000px;}
.x14_c00401{left:382.590000px;}
.x8f_c00401{left:383.940000px;}
.x30_c00401{left:387.450000px;}
.x7c_c00401{left:391.230000px;}
.x41_c00401{left:392.580000px;}
.x6_c00401{left:393.660000px;}
.x4b_c00401{left:396.090000px;}
.x8a_c00401{left:397.170000px;}
.x1d_c00401{left:399.870000px;}
.x22_c00401{left:405.270000px;}
.x80_c00401{left:408.780000px;}
.x38_c00401{left:412.020000px;}
.x2b_c00401{left:413.370000px;}
.x42_c00401{left:414.990000px;}
.x4f_c00401{left:417.150000px;}
.x31_c00401{left:419.580000px;}
.x47_c00401{left:420.660000px;}
.xe_c00401{left:423.630000px;}
.x7_c00401{left:425.250000px;}
.x94_c00401{left:427.140000px;}
.x58_c00401{left:429.030000px;}
.x39_c00401{left:430.920000px;}
.x51_c00401{left:434.700000px;}
.x90_c00401{left:435.780000px;}
.x23_c00401{left:444.420000px;}
.x89_c00401{left:446.040000px;}
.x91_c00401{left:449.010000px;}
.x1e_c00401{left:453.060000px;}
.x33_c00401{left:454.140000px;}
.x3a_c00401{left:455.760000px;}
.x81_c00401{left:456.840000px;}
.x2c_c00401{left:459.000000px;}
.x48_c00401{left:462.510000px;}
.x86_c00401{left:465.750000px;}
.x8_c00401{left:467.100000px;}
.x3b_c00401{left:469.260000px;}
.x82_c00401{left:473.310000px;}
.x43_c00401{left:475.470000px;}
.x15_c00401{left:476.550000px;}
.xf_c00401{left:479.790000px;}
.x27_c00401{left:482.220000px;}
.x32_c00401{left:483.840000px;}
.x24_c00401{left:489.240000px;}
.x44_c00401{left:495.180000px;}
.x5a_c00401{left:498.340500px;}
.x8b_c00401{left:508.410000px;}
.x92_c00401{left:514.620000px;}
.x9_c00401{left:523.530000px;}
.x16_c00401{left:526.500000px;}
.x7d_c00401{left:529.740000px;}
.x83_c00401{left:531.360000px;}
.x3c_c00401{left:537.030000px;}
.x7e_c00401{left:539.730000px;}
.x5b_c00401{left:541.477500px;}
.x95_c00401{left:542.700000px;}
.x84_c00401{left:547.830000px;}
.x17_c00401{left:555.120000px;}
.x96_c00401{left:558.090000px;}
.x8c_c00401{left:564.840000px;}
.x85_c00401{left:577.800000px;}
.x8e_c00401{left:582.660000px;}
.x87_c00401{left:584.550000px;}
.x93_c00401{left:589.950000px;}
.x7f_c00401{left:596.160000px;}
.x88_c00401{left:603.180000px;}
.x8d_c00401{left:605.070000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:0.000000pt;}
.fs17_c00401{font-size:28.933333pt;}
.fs15_c00401{font-size:40.133333pt;}
.fs13_c00401{font-size:41.066667pt;}
.fs16_c00401{font-size:42.933333pt;}
.fs11_c00401{font-size:43.866667pt;}
.fs12_c00401{font-size:44.800000pt;}
.fs10_c00401{font-size:44.804390pt;}
.fs14_c00401{font-size:45.733333pt;}
.fsf_c00401{font-size:45.737815pt;}
.fs7_c00401{font-size:55.066667pt;}
.fs4_c00401{font-size:56.933333pt;}
.fs6_c00401{font-size:57.866667pt;}
.fs0_c00401{font-size:59.733333pt;}
.fs1_c00401{font-size:61.600000pt;}
.fsd_c00401{font-size:62.533333pt;}
.fs5_c00401{font-size:63.466667pt;}
.fse_c00401{font-size:63.472029pt;}
.fs2_c00401{font-size:64.400000pt;}
.fs9_c00401{font-size:65.333333pt;}
.fs3_c00401{font-size:66.266667pt;}
.fs8_c00401{font-size:68.133333pt;}
.fsc_c00401{font-size:79.333333pt;}
.fsb_c00401{font-size:84.000000pt;}
.fsa_c00401{font-size:92.400000pt;}
.y0_c00401{bottom:0.000000pt;}
.y3f_c00401{bottom:146.484000pt;}
.y37_c00401{bottom:148.658667pt;}
.y3e_c00401{bottom:163.838667pt;}
.y36_c00401{bottom:165.698667pt;}
.y3d_c00401{bottom:179.128000pt;}
.y35_c00401{bottom:181.461333pt;}
.y3c_c00401{bottom:194.526667pt;}
.y34_c00401{bottom:197.093333pt;}
.y3b_c00401{bottom:211.054667pt;}
.y33_c00401{bottom:212.914667pt;}
.y3a_c00401{bottom:226.572000pt;}
.y2c_c00401{bottom:228.609853pt;}
.y2d_c00401{bottom:228.610157pt;}
.y32_c00401{bottom:228.610256pt;}
.y2e_c00401{bottom:228.610480pt;}
.y31_c00401{bottom:228.610893pt;}
.y2f_c00401{bottom:228.610997pt;}
.y30_c00401{bottom:228.611549pt;}
.y39_c00401{bottom:242.200000pt;}
.y2b_c00401{bottom:243.521173pt;}
.y2a_c00401{bottom:243.695539pt;}
.y29_c00401{bottom:243.990621pt;}
.y28_c00401{bottom:244.512728pt;}
.y27_c00401{bottom:244.922237pt;}
.y26_c00401{bottom:245.248400pt;}
.y25_c00401{bottom:245.762667pt;}
.y38_c00401{bottom:258.362667pt;}
.y24_c00401{bottom:258.737659pt;}
.y23_c00401{bottom:258.868213pt;}
.y22_c00401{bottom:259.106381pt;}
.y21_c00401{bottom:259.603605pt;}
.y20_c00401{bottom:259.942461pt;}
.y1f_c00401{bottom:260.285909pt;}
.y1e_c00401{bottom:260.948371pt;}
.y1d_c00401{bottom:261.361333pt;}
.y1c_c00401{bottom:303.042845pt;}
.y1b_c00401{bottom:303.541317pt;}
.y1a_c00401{bottom:303.990597pt;}
.y19_c00401{bottom:304.749537pt;}
.y18_c00401{bottom:305.105269pt;}
.y17_c00401{bottom:305.841451pt;}
.y16_c00401{bottom:306.434563pt;}
.y15_c00401{bottom:307.214667pt;}
.y14_c00401{bottom:324.254667pt;}
.y12_c00401{bottom:326.638667pt;}
.y13_c00401{bottom:344.698667pt;}
.y11_c00401{bottom:378.129333pt;}
.y10_c00401{bottom:414.481333pt;}
.yf_c00401{bottom:415.216000pt;}
.ye_c00401{bottom:474.005333pt;}
.yd_c00401{bottom:494.393333pt;}
.yc_c00401{bottom:514.282667pt;}
.yb_c00401{bottom:534.878667pt;}
.ya_c00401{bottom:554.122667pt;}
.y9_c00401{bottom:575.204000pt;}
.y8_c00401{bottom:594.956000pt;}
.y7_c00401{bottom:615.057333pt;}
.y6_c00401{bottom:635.320000pt;}
.y5_c00401{bottom:655.124000pt;}
.y4_c00401{bottom:675.596000pt;}
.y3_c00401{bottom:695.657333pt;}
.y2_c00401{bottom:716.134667pt;}
.y1_c00401{bottom:736.138667pt;}
.h19_c00401{height:28.933333pt;}
.h17_c00401{height:40.133333pt;}
.h15_c00401{height:41.066667pt;}
.h18_c00401{height:42.933333pt;}
.h13_c00401{height:43.866667pt;}
.h14_c00401{height:44.800000pt;}
.h12_c00401{height:44.804390pt;}
.h16_c00401{height:45.733333pt;}
.h11_c00401{height:45.737815pt;}
.h9_c00401{height:55.066667pt;}
.h6_c00401{height:56.933333pt;}
.h8_c00401{height:57.866667pt;}
.h2_c00401{height:59.733333pt;}
.h3_c00401{height:61.600000pt;}
.hf_c00401{height:62.533333pt;}
.h7_c00401{height:63.466667pt;}
.h10_c00401{height:63.472029pt;}
.h4_c00401{height:64.400000pt;}
.hb_c00401{height:65.333333pt;}
.h5_c00401{height:66.266667pt;}
.ha_c00401{height:68.133333pt;}
.he_c00401{height:79.333333pt;}
.hd_c00401{height:84.000000pt;}
.hc_c00401{height:92.400000pt;}
.h0_c00401{height:896.400000pt;}
.h1_c00401{height:896.666667pt;}
.w1_c00401{width:612.666667pt;}
.w0_c00401{width:612.933333pt;}
.x0_c00401{left:0.000000pt;}
.x69_c00401{left:126.240000pt;}
.x5c_c00401{left:129.472000pt;}
.x62_c00401{left:130.405333pt;}
.x73_c00401{left:131.760000pt;}
.x78_c00401{left:147.600000pt;}
.x67_c00401{left:151.920128pt;}
.x6a_c00401{left:156.240000pt;}
.x25_c00401{left:159.120000pt;}
.x4c_c00401{left:160.320000pt;}
.x45_c00401{left:161.520000pt;}
.x2d_c00401{left:162.480000pt;}
.x1_c00401{left:163.440000pt;}
.x63_c00401{left:167.138667pt;}
.x6c_c00401{left:170.160000pt;}
.x10_c00401{left:173.280000pt;}
.x74_c00401{left:177.600000pt;}
.x71_c00401{left:178.800000pt;}
.x4d_c00401{left:181.440000pt;}
.x79_c00401{left:183.120000pt;}
.x34_c00401{left:184.800000pt;}
.x2_c00401{left:186.000000pt;}
.xa_c00401{left:187.920000pt;}
.x64_c00401{left:190.436000pt;}
.x68_c00401{left:191.523893pt;}
.x3d_c00401{left:192.480000pt;}
.x6d_c00401{left:194.640000pt;}
.x49_c00401{left:196.080000pt;}
.x53_c00401{left:198.960000pt;}
.x18_c00401{left:201.120000pt;}
.x75_c00401{left:203.280000pt;}
.x4e_c00401{left:204.720000pt;}
.x5d_c00401{left:206.288000pt;}
.x52_c00401{left:208.800000pt;}
.x28_c00401{left:210.480000pt;}
.x6b_c00401{left:216.000000pt;}
.x3_c00401{left:217.440000pt;}
.x7a_c00401{left:218.400000pt;}
.x11_c00401{left:219.600000pt;}
.x54_c00401{left:225.600000pt;}
.x2e_c00401{left:228.720000pt;}
.x5e_c00401{left:230.820000pt;}
.x3e_c00401{left:232.080000pt;}
.x1f_c00401{left:234.480000pt;}
.x76_c00401{left:235.440000pt;}
.x19_c00401{left:237.120000pt;}
.x4a_c00401{left:238.800000pt;}
.x35_c00401{left:240.960000pt;}
.x6e_c00401{left:241.920000pt;}
.x72_c00401{left:244.800000pt;}
.x77_c00401{left:248.880000pt;}
.x29_c00401{left:252.480000pt;}
.x5f_c00401{left:255.024000pt;}
.x65_c00401{left:256.980000pt;}
.x50_c00401{left:258.240000pt;}
.xb_c00401{left:259.680000pt;}
.x6f_c00401{left:261.600000pt;}
.x2f_c00401{left:262.800000pt;}
.x20_c00401{left:263.760000pt;}
.x3f_c00401{left:265.200000pt;}
.x56_c00401{left:268.080000pt;}
.x1a_c00401{left:269.520000pt;}
.x12_c00401{left:272.160000pt;}
.x36_c00401{left:273.840000pt;}
.x66_c00401{left:278.057333pt;}
.x40_c00401{left:281.520000pt;}
.x26_c00401{left:289.200000pt;}
.x60_c00401{left:290.540000pt;}
.x55_c00401{left:293.280000pt;}
.x4_c00401{left:294.480000pt;}
.x13_c00401{left:298.800000pt;}
.x1b_c00401{left:303.360000pt;}
.x61_c00401{left:307.552000pt;}
.x46_c00401{left:309.120000pt;}
.xc_c00401{left:310.080000pt;}
.x37_c00401{left:311.520000pt;}
.x21_c00401{left:312.720000pt;}
.x7b_c00401{left:314.640000pt;}
.x2a_c00401{left:315.600000pt;}
.x5_c00401{left:317.520000pt;}
.x70_c00401{left:318.960000pt;}
.x59_c00401{left:322.665333pt;}
.x57_c00401{left:326.160000pt;}
.x1c_c00401{left:332.160000pt;}
.xd_c00401{left:337.680000pt;}
.x14_c00401{left:340.080000pt;}
.x8f_c00401{left:341.280000pt;}
.x30_c00401{left:344.400000pt;}
.x7c_c00401{left:347.760000pt;}
.x41_c00401{left:348.960000pt;}
.x6_c00401{left:349.920000pt;}
.x4b_c00401{left:352.080000pt;}
.x8a_c00401{left:353.040000pt;}
.x1d_c00401{left:355.440000pt;}
.x22_c00401{left:360.240000pt;}
.x80_c00401{left:363.360000pt;}
.x38_c00401{left:366.240000pt;}
.x2b_c00401{left:367.440000pt;}
.x42_c00401{left:368.880000pt;}
.x4f_c00401{left:370.800000pt;}
.x31_c00401{left:372.960000pt;}
.x47_c00401{left:373.920000pt;}
.xe_c00401{left:376.560000pt;}
.x7_c00401{left:378.000000pt;}
.x94_c00401{left:379.680000pt;}
.x58_c00401{left:381.360000pt;}
.x39_c00401{left:383.040000pt;}
.x51_c00401{left:386.400000pt;}
.x90_c00401{left:387.360000pt;}
.x23_c00401{left:395.040000pt;}
.x89_c00401{left:396.480000pt;}
.x91_c00401{left:399.120000pt;}
.x1e_c00401{left:402.720000pt;}
.x33_c00401{left:403.680000pt;}
.x3a_c00401{left:405.120000pt;}
.x81_c00401{left:406.080000pt;}
.x2c_c00401{left:408.000000pt;}
.x48_c00401{left:411.120000pt;}
.x86_c00401{left:414.000000pt;}
.x8_c00401{left:415.200000pt;}
.x3b_c00401{left:417.120000pt;}
.x82_c00401{left:420.720000pt;}
.x43_c00401{left:422.640000pt;}
.x15_c00401{left:423.600000pt;}
.xf_c00401{left:426.480000pt;}
.x27_c00401{left:428.640000pt;}
.x32_c00401{left:430.080000pt;}
.x24_c00401{left:434.880000pt;}
.x44_c00401{left:440.160000pt;}
.x5a_c00401{left:442.969333pt;}
.x8b_c00401{left:451.920000pt;}
.x92_c00401{left:457.440000pt;}
.x9_c00401{left:465.360000pt;}
.x16_c00401{left:468.000000pt;}
.x7d_c00401{left:470.880000pt;}
.x83_c00401{left:472.320000pt;}
.x3c_c00401{left:477.360000pt;}
.x7e_c00401{left:479.760000pt;}
.x5b_c00401{left:481.313333pt;}
.x95_c00401{left:482.400000pt;}
.x84_c00401{left:486.960000pt;}
.x17_c00401{left:493.440000pt;}
.x96_c00401{left:496.080000pt;}
.x8c_c00401{left:502.080000pt;}
.x85_c00401{left:513.600000pt;}
.x8e_c00401{left:517.920000pt;}
.x87_c00401{left:519.600000pt;}
.x93_c00401{left:524.400000pt;}
.x7f_c00401{left:529.920000pt;}
.x88_c00401{left:536.160000pt;}
.x8d_c00401{left:537.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_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_ef4e99a7aa2876b3106553d3.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;}
.m99_c00402{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.mf7_c00402{transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015640,0.000000,0.000000,0.250000,0,0);}
.m106_c00402{transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);}
.m10e_c00402{transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);}
.me8_c00402{transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037085,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.044260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044260,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.053385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053385,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{transform:matrix(0.099360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099360,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);}
.m10f_c00402{transform:matrix(0.113935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113935,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122780,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.132880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132880,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.133955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133955,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{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);}
.m6b_c00402{transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146715,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147730,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{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);}
.m41_c00402{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);}
.mff_c00402{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);}
.m56_c00402{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);}
.m8d_c00402{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);}
.mc2_c00402{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);}
.m63_c00402{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);}
.m8c_c00402{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);}
.mb_c00402{transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156445,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{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_c00402{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158060,0.000000,0.000000,0.250000,0,0);}
.mbe_c00402{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);}
.md0_c00402{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);}
.ma9_c00402{transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{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);}
.mcd_c00402{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);}
.m61_c00402{transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161020,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{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);}
.m1d_c00402{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.mfb_c00402{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);}
.md1_c00402{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);}
.m102_c00402{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);}
.mac_c00402{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);}
.m98_c00402{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);}
.mb4_c00402{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);}
.m1a_c00402{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);}
.md5_c00402{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);}
.m22_c00402{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);}
.m4b_c00402{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);}
.m10a_c00402{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);}
.maf_c00402{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);}
.m110_c00402{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);}
.m3b_c00402{transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{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);}
.mda_c00402{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);}
.maa_c00402{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);}
.ma2_c00402{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);}
.m79_c00402{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);}
.me4_c00402{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{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);}
.m51_c00402{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);}
.ma6_c00402{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);}
.mcf_c00402{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);}
.m3a_c00402{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);}
.ma7_c00402{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);}
.m82_c00402{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);}
.m97_c00402{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);}
.mb9_c00402{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);}
.m109_c00402{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);}
.m11_c00402{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);}
.m74_c00402{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);}
.mc1_c00402{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);}
.m53_c00402{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);}
.md2_c00402{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);}
.m17_c00402{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_c00402{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);}
.m36_c00402{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);}
.m9c_c00402{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);}
.m38_c00402{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);}
.m6c_c00402{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);}
.mfd_c00402{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);}
.m54_c00402{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);}
.m9e_c00402{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);}
.mbb_c00402{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);}
.mb8_c00402{transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{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);}
.mc_c00402{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);}
.m44_c00402{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);}
.m60_c00402{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);}
.m31_c00402{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);}
.mba_c00402{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);}
.m90_c00402{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);}
.m42_c00402{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);}
.m39_c00402{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);}
.m15_c00402{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);}
.ma8_c00402{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{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);}
.m104_c00402{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);}
.m72_c00402{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);}
.mca_c00402{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);}
.mc8_c00402{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);}
.mdf_c00402{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);}
.m1_c00402{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);}
.m24_c00402{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);}
.m5b_c00402{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);}
.md_c00402{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);}
.mb3_c00402{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);}
.m81_c00402{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);}
.m62_c00402{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);}
.mbf_c00402{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);}
.m3e_c00402{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);}
.m8_c00402{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);}
.me2_c00402{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);}
.mf_c00402{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{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);}
.m27_c00402{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);}
.m95_c00402{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);}
.m1f_c00402{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);}
.m100_c00402{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);}
.ma5_c00402{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);}
.m107_c00402{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);}
.mf8_c00402{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);}
.m20_c00402{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);}
.ma3_c00402{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);}
.mf0_c00402{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);}
.m6_c00402{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);}
.md3_c00402{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);}
.m55_c00402{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);}
.mf6_c00402{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);}
.m3f_c00402{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);}
.m5c_c00402{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);}
.mc3_c00402{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);}
.m67_c00402{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);}
.m5d_c00402{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);}
.m18_c00402{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);}
.m101_c00402{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_c00402{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);}
.m3c_c00402{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);}
.m10c_c00402{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);}
.m9f_c00402{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);}
.mf1_c00402{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);}
.mc9_c00402{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);}
.m28_c00402{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);}
.mae_c00402{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);}
.m43_c00402{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);}
.m50_c00402{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);}
.m5a_c00402{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);}
.m8e_c00402{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);}
.mf2_c00402{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);}
.mbc_c00402{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);}
.m9d_c00402{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);}
.m33_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);}
.m6f_c00402{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);}
.m66_c00402{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_c00402{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);}
.m3_c00402{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);}
.m4e_c00402{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);}
.m73_c00402{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);}
.m4c_c00402{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);}
.mc5_c00402{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);}
.mec_c00402{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);}
.mfa_c00402{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_c00402{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);}
.m68_c00402{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);}
.m108_c00402{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);}
.m111_c00402{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);}
.mfc_c00402{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);}
.ma1_c00402{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);}
.md4_c00402{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);}
.m6a_c00402{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);}
.m10b_c00402{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);}
.md8_c00402{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);}
.m105_c00402{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);}
.m32_c00402{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);}
.m1b_c00402{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);}
.mbd_c00402{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);}
.me5_c00402{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);}
.m35_c00402{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);}
.m94_c00402{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);}
.m34_c00402{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);}
.m21_c00402{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);}
.mdd_c00402{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);}
.mb0_c00402{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);}
.mcb_c00402{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);}
.m2_c00402{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);}
.m5_c00402{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);}
.m58_c00402{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);}
.m2f_c00402{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);}
.mfe_c00402{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);}
.mc7_c00402{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);}
.m29_c00402{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);}
.meb_c00402{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);}
.m75_c00402{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);}
.m48_c00402{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);}
.m4a_c00402{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);}
.m93_c00402{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);}
.m3d_c00402{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);}
.m2b_c00402{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);}
.m6d_c00402{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);}
.m7a_c00402{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{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);}
.m37_c00402{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);}
.m30_c00402{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);}
.mad_c00402{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{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);}
.ma4_c00402{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);}
.m49_c00402{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);}
.mef_c00402{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);}
.m26_c00402{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);}
.mb6_c00402{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);}
.m8a_c00402{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);}
.m83_c00402{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);}
.mc4_c00402{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);}
.mdc_c00402{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);}
.med_c00402{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);}
.m57_c00402{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);}
.m7d_c00402{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);}
.m7_c00402{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);}
.me0_c00402{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);}
.m16_c00402{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);}
.m52_c00402{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);}
.me7_c00402{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);}
.m80_c00402{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);}
.mab_c00402{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);}
.md9_c00402{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);}
.m6e_c00402{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);}
.mea_c00402{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);}
.m1e_c00402{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);}
.m7c_c00402{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);}
.mb7_c00402{transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);}
.mf3_c00402{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);}
.md7_c00402{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);}
.me9_c00402{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);}
.m92_c00402{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);}
.m10d_c00402{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);}
.mf5_c00402{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);}
.me3_c00402{transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{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);}
.m84_c00402{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);}
.m2e_c00402{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);}
.m103_c00402{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);}
.m7b_c00402{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);}
.m86_c00402{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{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);}
.mce_c00402{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);}
.m59_c00402{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);}
.m7e_c00402{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);}
.m8b_c00402{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);}
.m1c_c00402{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);}
.mf4_c00402{transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);}
.mee_c00402{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);}
.m7f_c00402{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);}
.md6_c00402{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.mc6_c00402{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);}
.m25_c00402{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);}
.ma0_c00402{transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);}
.me6_c00402{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.me1_c00402{transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);}
.mf9_c00402{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);}
.m71_c00402{transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);}
.m88_c00402{transform:matrix(0.263015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263015,0.000000,0.000000,0.250000,0,0);}
.mdb_c00402{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);}
.m85_c00402{transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264740,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286155,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320615,0.000000,0.000000,0.250000,0,0);}
.mb5_c00402{transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);}
.m89_c00402{transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);}
.mcc_c00402{transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393045,0.000000,0.000000,0.250000,0,0);}
.m113_c00402{transform:matrix(0.483389,-0.023710,0.012248,0.249700,0,0);-ms-transform:matrix(0.483389,-0.023710,0.012248,0.249700,0,0);-webkit-transform:matrix(0.483389,-0.023710,0.012248,0.249700,0,0);}
.m112_c00402{transform:matrix(0.820264,-0.040233,0.012248,0.249700,0,0);-ms-transform:matrix(0.820264,-0.040233,0.012248,0.249700,0,0);-webkit-transform:matrix(0.820264,-0.040233,0.012248,0.249700,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;}
.fse_c00402{font-size:48.300000px;}
.fsb_c00402{font-size:49.350000px;}
.fs9_c00402{font-size:51.450000px;}
.fsc_c00402{font-size:52.500000px;}
.fsa_c00402{font-size:53.550000px;}
.fsd_c00402{font-size:54.600000px;}
.fs5_c00402{font-size:60.900000px;}
.fs3_c00402{font-size:67.200000px;}
.fs7_c00402{font-size:68.250000px;}
.fs6_c00402{font-size:69.300000px;}
.fs4_c00402{font-size:70.350000px;}
.fs2_c00402{font-size:71.400000px;}
.fs0_c00402{font-size:72.450000px;}
.fsf_c00402{font-size:72.464561px;}
.fs1_c00402{font-size:73.500000px;}
.fs8_c00402{font-size:76.650000px;}
.y0_c00402{bottom:0.000000px;}
.y20_c00402{bottom:95.113500px;}
.y21_c00402{bottom:99.989490px;}
.y1f_c00402{bottom:142.054500px;}
.y1e_c00402{bottom:158.947500px;}
.y1d_c00402{bottom:176.850000px;}
.y1c_c00402{bottom:194.910000px;}
.y1b_c00402{bottom:211.920000px;}
.y1a_c00402{bottom:229.770000px;}
.y19_c00402{bottom:247.896000px;}
.y18_c00402{bottom:265.440000px;}
.y17_c00402{bottom:283.951500px;}
.y16_c00402{bottom:337.228500px;}
.y15_c00402{bottom:360.583500px;}
.y14_c00402{bottom:382.942500px;}
.y13_c00402{bottom:405.367500px;}
.y12_c00402{bottom:428.323500px;}
.y11_c00402{bottom:449.715000px;}
.y10_c00402{bottom:472.309500px;}
.yf_c00402{bottom:500.674500px;}
.ye_c00402{bottom:523.234500px;}
.yd_c00402{bottom:546.264000px;}
.yc_c00402{bottom:568.549500px;}
.yb_c00402{bottom:591.211500px;}
.ya_c00402{bottom:613.788000px;}
.y9_c00402{bottom:635.850000px;}
.y8_c00402{bottom:658.783500px;}
.y7_c00402{bottom:680.670000px;}
.y6_c00402{bottom:702.916500px;}
.y5_c00402{bottom:726.411000px;}
.y4_c00402{bottom:749.814000px;}
.y3_c00402{bottom:776.317500px;}
.y2_c00402{bottom:799.537500px;}
.y1_c00402{bottom:821.544000px;}
.h10_c00402{height:48.300000px;}
.hd_c00402{height:49.350000px;}
.hb_c00402{height:51.450000px;}
.he_c00402{height:52.500000px;}
.hc_c00402{height:53.550000px;}
.hf_c00402{height:54.600000px;}
.h7_c00402{height:60.900000px;}
.h5_c00402{height:67.200000px;}
.h9_c00402{height:68.250000px;}
.h8_c00402{height:69.300000px;}
.h6_c00402{height:70.350000px;}
.h4_c00402{height:71.400000px;}
.h2_c00402{height:72.450000px;}
.h11_c00402{height:72.464561px;}
.h3_c00402{height:73.500000px;}
.ha_c00402{height:76.650000px;}
.h1_c00402{height:1005.000000px;}
.h0_c00402{height:1005.150000px;}
.w0_c00402{width:715.200000px;}
.w1_c00402{width:715.500000px;}
.x0_c00402{left:0.000000px;}
.x74_c00402{left:97.470000px;}
.x89_c00402{left:98.550000px;}
.xa0_c00402{left:99.900000px;}
.x86_c00402{left:110.430000px;}
.x7d_c00402{left:114.480000px;}
.x9d_c00402{left:117.720000px;}
.x69_c00402{left:121.770000px;}
.x9_c00402{left:124.740000px;}
.x55_c00402{left:126.090000px;}
.x1_c00402{left:127.170000px;}
.x37_c00402{left:129.060000px;}
.x44_c00402{left:130.140000px;}
.x5a_c00402{left:131.220000px;}
.x70_c00402{left:132.300000px;}
.x7e_c00402{left:141.480000px;}
.x20_c00402{left:148.230000px;}
.x45_c00402{left:156.600000px;}
.x27_c00402{left:157.680000px;}
.x2_c00402{left:159.300000px;}
.x75_c00402{left:160.650000px;}
.x18_c00402{left:163.350000px;}
.x6a_c00402{left:164.970000px;}
.x4a_c00402{left:169.020000px;}
.x8a_c00402{left:170.370000px;}
.x30_c00402{left:171.450000px;}
.x53_c00402{left:174.690000px;}
.x11_c00402{left:176.040000px;}
.x19_c00402{left:179.280000px;}
.x76_c00402{left:180.900000px;}
.x21_c00402{left:181.980000px;}
.x3_c00402{left:183.870000px;}
.x3e_c00402{left:188.460000px;}
.x3c_c00402{left:190.350000px;}
.x99_c00402{left:194.670000px;}
.x92_c00402{left:200.340000px;}
.x38_c00402{left:202.230000px;}
.x7f_c00402{left:203.580000px;}
.x46_c00402{left:206.820000px;}
.x28_c00402{left:208.710000px;}
.xa_c00402{left:210.600000px;}
.x4b_c00402{left:211.680000px;}
.x60_c00402{left:213.840000px;}
.x31_c00402{left:217.080000px;}
.x80_c00402{left:220.320000px;}
.x1a_c00402{left:221.940000px;}
.x56_c00402{left:224.370000px;}
.x4_c00402{left:226.530000px;}
.x71_c00402{left:228.150000px;}
.x77_c00402{left:229.770000px;}
.xb_c00402{left:231.660000px;}
.x54_c00402{left:234.360000px;}
.x61_c00402{left:237.600000px;}
.x93_c00402{left:240.570000px;}
.x1b_c00402{left:242.190000px;}
.x4c_c00402{left:244.080000px;}
.x39_c00402{left:245.970000px;}
.x29_c00402{left:247.320000px;}
.x32_c00402{left:252.450000px;}
.x9a_c00402{left:254.340000px;}
.x12_c00402{left:257.040000px;}
.x87_c00402{left:260.280000px;}
.x47_c00402{left:263.790000px;}
.xc_c00402{left:265.140000px;}
.x94_c00402{left:269.190000px;}
.x2a_c00402{left:272.700000px;}
.x17_c00402{left:275.670000px;}
.x78_c00402{left:278.910000px;}
.x13_c00402{left:281.610000px;}
.x4d_c00402{left:282.960000px;}
.x3f_c00402{left:284.580000px;}
.x5_c00402{left:285.930000px;}
.x65_c00402{left:287.820000px;}
.x5b_c00402{left:289.710000px;}
.x6b_c00402{left:291.060000px;}
.x3d_c00402{left:294.030000px;}
.x33_c00402{left:296.460000px;}
.x1c_c00402{left:298.080000px;}
.x57_c00402{left:300.510000px;}
.xd_c00402{left:302.670000px;}
.x6_c00402{left:304.020000px;}
.x95_c00402{left:305.370000px;}
.x62_c00402{left:308.340000px;}
.x40_c00402{left:309.420000px;}
.x2b_c00402{left:310.770000px;}
.x4e_c00402{left:311.850000px;}
.x8b_c00402{left:312.930000px;}
.x14_c00402{left:314.280000px;}
.x5c_c00402{left:321.570000px;}
.x6c_c00402{left:323.460000px;}
.x22_c00402{left:328.590000px;}
.x1d_c00402{left:331.020000px;}
.x4f_c00402{left:332.910000px;}
.x96_c00402{left:334.530000px;}
.x2c_c00402{left:343.710000px;}
.xe_c00402{left:344.790000px;}
.x66_c00402{left:346.410000px;}
.x81_c00402{left:348.840000px;}
.x51_c00402{left:350.730000px;}
.x3a_c00402{left:352.620000px;}
.x15_c00402{left:355.050000px;}
.x34_c00402{left:359.370000px;}
.xa2_c00402{left:360.874500px;}
.x5d_c00402{left:362.070000px;}
.xf_c00402{left:363.420000px;}
.x1e_c00402{left:365.040000px;}
.xa1_c00402{left:366.120000px;}
.x79_c00402{left:367.200000px;}
.x23_c00402{left:368.280000px;}
.x7_c00402{left:370.440000px;}
.x50_c00402{left:371.520000px;}
.x48_c00402{left:372.870000px;}
.x52_c00402{left:378.000000px;}
.x72_c00402{left:381.780000px;}
.x8c_c00402{left:382.860000px;}
.x2d_c00402{left:385.020000px;}
.x6d_c00402{left:387.990000px;}
.x67_c00402{left:389.610000px;}
.x3b_c00402{left:390.960000px;}
.x35_c00402{left:392.040000px;}
.x41_c00402{left:394.200000px;}
.x82_c00402{left:399.060000px;}
.x10_c00402{left:400.410000px;}
.x58_c00402{left:401.490000px;}
.x9e_c00402{left:403.110000px;}
.x8_c00402{left:405.000000px;}
.x16_c00402{left:409.320000px;}
.x24_c00402{left:410.940000px;}
.x1f_c00402{left:413.370000px;}
.x88_c00402{left:414.450000px;}
.x8d_c00402{left:416.610000px;}
.x73_c00402{left:418.770000px;}
.x63_c00402{left:423.090000px;}
.x42_c00402{left:433.080000px;}
.x7a_c00402{left:436.320000px;}
.x2e_c00402{left:438.480000px;}
.x49_c00402{left:440.910000px;}
.x59_c00402{left:442.530000px;}
.x6e_c00402{left:445.230000px;}
.x43_c00402{left:450.090000px;}
.x36_c00402{left:452.790000px;}
.x25_c00402{left:454.410000px;}
.x5e_c00402{left:457.380000px;}
.x8e_c00402{left:458.460000px;}
.xa3_c00402{left:460.284990px;}
.x64_c00402{left:466.560000px;}
.x83_c00402{left:468.450000px;}
.x6f_c00402{left:471.420000px;}
.x5f_c00402{left:474.120000px;}
.x2f_c00402{left:488.160000px;}
.x9f_c00402{left:493.020000px;}
.x84_c00402{left:498.690000px;}
.x26_c00402{left:500.310000px;}
.x8f_c00402{left:505.710000px;}
.x97_c00402{left:508.680000px;}
.x7b_c00402{left:521.100000px;}
.x9b_c00402{left:526.230000px;}
.x68_c00402{left:528.660000px;}
.x90_c00402{left:534.330000px;}
.x98_c00402{left:541.890000px;}
.x9c_c00402{left:547.560000px;}
.x91_c00402{left:551.340000px;}
.x7c_c00402{left:552.690000px;}
.x85_c00402{left:560.520000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
.fse_c00402{font-size:42.933333pt;}
.fsb_c00402{font-size:43.866667pt;}
.fs9_c00402{font-size:45.733333pt;}
.fsc_c00402{font-size:46.666667pt;}
.fsa_c00402{font-size:47.600000pt;}
.fsd_c00402{font-size:48.533333pt;}
.fs5_c00402{font-size:54.133333pt;}
.fs3_c00402{font-size:59.733333pt;}
.fs7_c00402{font-size:60.666667pt;}
.fs6_c00402{font-size:61.600000pt;}
.fs4_c00402{font-size:62.533333pt;}
.fs2_c00402{font-size:63.466667pt;}
.fs0_c00402{font-size:64.400000pt;}
.fsf_c00402{font-size:64.412943pt;}
.fs1_c00402{font-size:65.333333pt;}
.fs8_c00402{font-size:68.133333pt;}
.y0_c00402{bottom:0.000000pt;}
.y20_c00402{bottom:84.545333pt;}
.y21_c00402{bottom:88.879547pt;}
.y1f_c00402{bottom:126.270667pt;}
.y1e_c00402{bottom:141.286667pt;}
.y1d_c00402{bottom:157.200000pt;}
.y1c_c00402{bottom:173.253333pt;}
.y1b_c00402{bottom:188.373333pt;}
.y1a_c00402{bottom:204.240000pt;}
.y19_c00402{bottom:220.352000pt;}
.y18_c00402{bottom:235.946667pt;}
.y17_c00402{bottom:252.401333pt;}
.y16_c00402{bottom:299.758667pt;}
.y15_c00402{bottom:320.518667pt;}
.y14_c00402{bottom:340.393333pt;}
.y13_c00402{bottom:360.326667pt;}
.y12_c00402{bottom:380.732000pt;}
.y11_c00402{bottom:399.746667pt;}
.y10_c00402{bottom:419.830667pt;}
.yf_c00402{bottom:445.044000pt;}
.ye_c00402{bottom:465.097333pt;}
.yd_c00402{bottom:485.568000pt;}
.yc_c00402{bottom:505.377333pt;}
.yb_c00402{bottom:525.521333pt;}
.ya_c00402{bottom:545.589333pt;}
.y9_c00402{bottom:565.200000pt;}
.y8_c00402{bottom:585.585333pt;}
.y7_c00402{bottom:605.040000pt;}
.y6_c00402{bottom:624.814667pt;}
.y5_c00402{bottom:645.698667pt;}
.y4_c00402{bottom:666.501333pt;}
.y3_c00402{bottom:690.060000pt;}
.y2_c00402{bottom:710.700000pt;}
.y1_c00402{bottom:730.261333pt;}
.h10_c00402{height:42.933333pt;}
.hd_c00402{height:43.866667pt;}
.hb_c00402{height:45.733333pt;}
.he_c00402{height:46.666667pt;}
.hc_c00402{height:47.600000pt;}
.hf_c00402{height:48.533333pt;}
.h7_c00402{height:54.133333pt;}
.h5_c00402{height:59.733333pt;}
.h9_c00402{height:60.666667pt;}
.h8_c00402{height:61.600000pt;}
.h6_c00402{height:62.533333pt;}
.h4_c00402{height:63.466667pt;}
.h2_c00402{height:64.400000pt;}
.h11_c00402{height:64.412943pt;}
.h3_c00402{height:65.333333pt;}
.ha_c00402{height:68.133333pt;}
.h1_c00402{height:893.333333pt;}
.h0_c00402{height:893.466667pt;}
.w0_c00402{width:635.733333pt;}
.w1_c00402{width:636.000000pt;}
.x0_c00402{left:0.000000pt;}
.x74_c00402{left:86.640000pt;}
.x89_c00402{left:87.600000pt;}
.xa0_c00402{left:88.800000pt;}
.x86_c00402{left:98.160000pt;}
.x7d_c00402{left:101.760000pt;}
.x9d_c00402{left:104.640000pt;}
.x69_c00402{left:108.240000pt;}
.x9_c00402{left:110.880000pt;}
.x55_c00402{left:112.080000pt;}
.x1_c00402{left:113.040000pt;}
.x37_c00402{left:114.720000pt;}
.x44_c00402{left:115.680000pt;}
.x5a_c00402{left:116.640000pt;}
.x70_c00402{left:117.600000pt;}
.x7e_c00402{left:125.760000pt;}
.x20_c00402{left:131.760000pt;}
.x45_c00402{left:139.200000pt;}
.x27_c00402{left:140.160000pt;}
.x2_c00402{left:141.600000pt;}
.x75_c00402{left:142.800000pt;}
.x18_c00402{left:145.200000pt;}
.x6a_c00402{left:146.640000pt;}
.x4a_c00402{left:150.240000pt;}
.x8a_c00402{left:151.440000pt;}
.x30_c00402{left:152.400000pt;}
.x53_c00402{left:155.280000pt;}
.x11_c00402{left:156.480000pt;}
.x19_c00402{left:159.360000pt;}
.x76_c00402{left:160.800000pt;}
.x21_c00402{left:161.760000pt;}
.x3_c00402{left:163.440000pt;}
.x3e_c00402{left:167.520000pt;}
.x3c_c00402{left:169.200000pt;}
.x99_c00402{left:173.040000pt;}
.x92_c00402{left:178.080000pt;}
.x38_c00402{left:179.760000pt;}
.x7f_c00402{left:180.960000pt;}
.x46_c00402{left:183.840000pt;}
.x28_c00402{left:185.520000pt;}
.xa_c00402{left:187.200000pt;}
.x4b_c00402{left:188.160000pt;}
.x60_c00402{left:190.080000pt;}
.x31_c00402{left:192.960000pt;}
.x80_c00402{left:195.840000pt;}
.x1a_c00402{left:197.280000pt;}
.x56_c00402{left:199.440000pt;}
.x4_c00402{left:201.360000pt;}
.x71_c00402{left:202.800000pt;}
.x77_c00402{left:204.240000pt;}
.xb_c00402{left:205.920000pt;}
.x54_c00402{left:208.320000pt;}
.x61_c00402{left:211.200000pt;}
.x93_c00402{left:213.840000pt;}
.x1b_c00402{left:215.280000pt;}
.x4c_c00402{left:216.960000pt;}
.x39_c00402{left:218.640000pt;}
.x29_c00402{left:219.840000pt;}
.x32_c00402{left:224.400000pt;}
.x9a_c00402{left:226.080000pt;}
.x12_c00402{left:228.480000pt;}
.x87_c00402{left:231.360000pt;}
.x47_c00402{left:234.480000pt;}
.xc_c00402{left:235.680000pt;}
.x94_c00402{left:239.280000pt;}
.x2a_c00402{left:242.400000pt;}
.x17_c00402{left:245.040000pt;}
.x78_c00402{left:247.920000pt;}
.x13_c00402{left:250.320000pt;}
.x4d_c00402{left:251.520000pt;}
.x3f_c00402{left:252.960000pt;}
.x5_c00402{left:254.160000pt;}
.x65_c00402{left:255.840000pt;}
.x5b_c00402{left:257.520000pt;}
.x6b_c00402{left:258.720000pt;}
.x3d_c00402{left:261.360000pt;}
.x33_c00402{left:263.520000pt;}
.x1c_c00402{left:264.960000pt;}
.x57_c00402{left:267.120000pt;}
.xd_c00402{left:269.040000pt;}
.x6_c00402{left:270.240000pt;}
.x95_c00402{left:271.440000pt;}
.x62_c00402{left:274.080000pt;}
.x40_c00402{left:275.040000pt;}
.x2b_c00402{left:276.240000pt;}
.x4e_c00402{left:277.200000pt;}
.x8b_c00402{left:278.160000pt;}
.x14_c00402{left:279.360000pt;}
.x5c_c00402{left:285.840000pt;}
.x6c_c00402{left:287.520000pt;}
.x22_c00402{left:292.080000pt;}
.x1d_c00402{left:294.240000pt;}
.x4f_c00402{left:295.920000pt;}
.x96_c00402{left:297.360000pt;}
.x2c_c00402{left:305.520000pt;}
.xe_c00402{left:306.480000pt;}
.x66_c00402{left:307.920000pt;}
.x81_c00402{left:310.080000pt;}
.x51_c00402{left:311.760000pt;}
.x3a_c00402{left:313.440000pt;}
.x15_c00402{left:315.600000pt;}
.x34_c00402{left:319.440000pt;}
.xa2_c00402{left:320.777333pt;}
.x5d_c00402{left:321.840000pt;}
.xf_c00402{left:323.040000pt;}
.x1e_c00402{left:324.480000pt;}
.xa1_c00402{left:325.440000pt;}
.x79_c00402{left:326.400000pt;}
.x23_c00402{left:327.360000pt;}
.x7_c00402{left:329.280000pt;}
.x50_c00402{left:330.240000pt;}
.x48_c00402{left:331.440000pt;}
.x52_c00402{left:336.000000pt;}
.x72_c00402{left:339.360000pt;}
.x8c_c00402{left:340.320000pt;}
.x2d_c00402{left:342.240000pt;}
.x6d_c00402{left:344.880000pt;}
.x67_c00402{left:346.320000pt;}
.x3b_c00402{left:347.520000pt;}
.x35_c00402{left:348.480000pt;}
.x41_c00402{left:350.400000pt;}
.x82_c00402{left:354.720000pt;}
.x10_c00402{left:355.920000pt;}
.x58_c00402{left:356.880000pt;}
.x9e_c00402{left:358.320000pt;}
.x8_c00402{left:360.000000pt;}
.x16_c00402{left:363.840000pt;}
.x24_c00402{left:365.280000pt;}
.x1f_c00402{left:367.440000pt;}
.x88_c00402{left:368.400000pt;}
.x8d_c00402{left:370.320000pt;}
.x73_c00402{left:372.240000pt;}
.x63_c00402{left:376.080000pt;}
.x42_c00402{left:384.960000pt;}
.x7a_c00402{left:387.840000pt;}
.x2e_c00402{left:389.760000pt;}
.x49_c00402{left:391.920000pt;}
.x59_c00402{left:393.360000pt;}
.x6e_c00402{left:395.760000pt;}
.x43_c00402{left:400.080000pt;}
.x36_c00402{left:402.480000pt;}
.x25_c00402{left:403.920000pt;}
.x5e_c00402{left:406.560000pt;}
.x8e_c00402{left:407.520000pt;}
.xa3_c00402{left:409.142213pt;}
.x64_c00402{left:414.720000pt;}
.x83_c00402{left:416.400000pt;}
.x6f_c00402{left:419.040000pt;}
.x5f_c00402{left:421.440000pt;}
.x2f_c00402{left:433.920000pt;}
.x9f_c00402{left:438.240000pt;}
.x84_c00402{left:443.280000pt;}
.x26_c00402{left:444.720000pt;}
.x8f_c00402{left:449.520000pt;}
.x97_c00402{left:452.160000pt;}
.x7b_c00402{left:463.200000pt;}
.x9b_c00402{left:467.760000pt;}
.x68_c00402{left:469.920000pt;}
.x90_c00402{left:474.960000pt;}
.x98_c00402{left:481.680000pt;}
.x9c_c00402{left:486.720000pt;}
.x91_c00402{left:490.080000pt;}
.x7c_c00402{left:491.280000pt;}
.x85_c00402{left:498.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc9_c00403{transform:matrix(0.013575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013575,0.000000,0.000000,0.250000,0,0);}
.m66_c00403{transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016910,0.000000,0.000000,0.250000,0,0);}
.m102_c00403{transform:matrix(0.078890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078890,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.083185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083185,0.000000,0.000000,0.250000,0,0);}
.m10f_c00403{transform:matrix(0.105995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105995,0.000000,0.000000,0.250000,0,0);}
.md6_c00403{transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);}
.md7_c00403{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);}
.md8_c00403{transform:matrix(0.127690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127690,0.000000,0.000000,0.250000,0,0);}
.mf7_c00403{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);}
.md3_c00403{transform:matrix(0.136490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136490,0.000000,0.000000,0.250000,0,0);}
.m5d_c00403{transform:matrix(0.143768,-0.001438,0.002500,0.249988,0,0);-ms-transform:matrix(0.143768,-0.001438,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143768,-0.001438,0.002500,0.249988,0,0);}
.mc8_c00403{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.md5_c00403{transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145740,0.000000,0.000000,0.250000,0,0);}
.md1_c00403{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);}
.md9_c00403{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);}
.m1e_c00403{transform:matrix(0.150852,-0.001509,0.002500,0.249988,0,0);-ms-transform:matrix(0.150852,-0.001509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150852,-0.001509,0.002500,0.249988,0,0);}
.mc3_c00403{transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151935,0.000000,0.000000,0.250000,0,0);}
.m58_c00403{transform:matrix(0.152992,-0.001530,0.002500,0.249988,0,0);-ms-transform:matrix(0.152992,-0.001530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152992,-0.001530,0.002500,0.249988,0,0);}
.m85_c00403{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);}
.m3d_c00403{transform:matrix(0.157397,-0.001574,0.002500,0.249988,0,0);-ms-transform:matrix(0.157397,-0.001574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157397,-0.001574,0.002500,0.249988,0,0);}
.m51_c00403{transform:matrix(0.157687,-0.001577,0.002500,0.249988,0,0);-ms-transform:matrix(0.157687,-0.001577,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157687,-0.001577,0.002500,0.249988,0,0);}
.mcd_c00403{transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.159147,-0.001591,0.002500,0.249988,0,0);-ms-transform:matrix(0.159147,-0.001591,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159147,-0.001591,0.002500,0.249988,0,0);}
.m27_c00403{transform:matrix(0.159307,-0.001593,0.002500,0.249988,0,0);-ms-transform:matrix(0.159307,-0.001593,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159307,-0.001593,0.002500,0.249988,0,0);}
.m10d_c00403{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);}
.m7_c00403{transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);}
.m86_c00403{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);}
.mbd_c00403{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);}
.mc1_c00403{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);}
.m33_c00403{transform:matrix(0.163857,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163857,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163857,-0.001639,0.002500,0.249988,0,0);}
.m65_c00403{transform:matrix(0.165492,-0.001655,0.002500,0.249988,0,0);-ms-transform:matrix(0.165492,-0.001655,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165492,-0.001655,0.002500,0.249988,0,0);}
.m26_c00403{transform:matrix(0.165637,-0.001656,0.002500,0.249988,0,0);-ms-transform:matrix(0.165637,-0.001656,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165637,-0.001656,0.002500,0.249988,0,0);}
.m62_c00403{transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);}
.m3c_c00403{transform:matrix(0.166407,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166407,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166407,-0.001664,0.002500,0.249988,0,0);}
.m3b_c00403{transform:matrix(0.167257,-0.001673,0.002500,0.249988,0,0);-ms-transform:matrix(0.167257,-0.001673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167257,-0.001673,0.002500,0.249988,0,0);}
.mcf_c00403{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);}
.mc6_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);}
.m5b_c00403{transform:matrix(0.168662,-0.001687,0.002500,0.249988,0,0);-ms-transform:matrix(0.168662,-0.001687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168662,-0.001687,0.002500,0.249988,0,0);}
.m30_c00403{transform:matrix(0.168947,-0.001689,0.002500,0.249988,0,0);-ms-transform:matrix(0.168947,-0.001689,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168947,-0.001689,0.002500,0.249988,0,0);}
.m10c_c00403{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);}
.mf8_c00403{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);}
.m39_c00403{transform:matrix(0.170926,-0.001709,0.002500,0.249988,0,0);-ms-transform:matrix(0.170926,-0.001709,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170926,-0.001709,0.002500,0.249988,0,0);}
.m2e_c00403{transform:matrix(0.171371,-0.001714,0.002500,0.249988,0,0);-ms-transform:matrix(0.171371,-0.001714,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171371,-0.001714,0.002500,0.249988,0,0);}
.mc4_c00403{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);}
.mc_c00403{transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);-ms-transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);}
.mc5_c00403{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);}
.mc2_c00403{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);}
.m29_c00403{transform:matrix(0.172621,-0.001726,0.002500,0.249988,0,0);-ms-transform:matrix(0.172621,-0.001726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172621,-0.001726,0.002500,0.249988,0,0);}
.ma5_c00403{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);}
.m7c_c00403{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);}
.m6c_c00403{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);}
.m34_c00403{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);}
.m7e_c00403{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);}
.md4_c00403{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);}
.m96_c00403{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);}
.m6a_c00403{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);}
.m41_c00403{transform:matrix(0.176176,-0.001762,0.002500,0.249988,0,0);-ms-transform:matrix(0.176176,-0.001762,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176176,-0.001762,0.002500,0.249988,0,0);}
.m78_c00403{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.176546,-0.001765,0.002500,0.249988,0,0);-ms-transform:matrix(0.176546,-0.001765,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176546,-0.001765,0.002500,0.249988,0,0);}
.mb8_c00403{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);}
.m15_c00403{transform:matrix(0.176806,-0.001768,0.002500,0.249988,0,0);-ms-transform:matrix(0.176806,-0.001768,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176806,-0.001768,0.002500,0.249988,0,0);}
.ma8_c00403{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);}
.mf2_c00403{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);}
.m4c_c00403{transform:matrix(0.177376,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177376,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177376,-0.001774,0.002500,0.249988,0,0);}
.m0_c00403{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);}
.m101_c00403{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);}
.mcc_c00403{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);}
.mfe_c00403{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);}
.m7f_c00403{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);}
.mb0_c00403{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);}
.md0_c00403{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);}
.m56_c00403{transform:matrix(0.181761,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181761,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181761,-0.001818,0.002500,0.249988,0,0);}
.m4_c00403{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.mad_c00403{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);}
.mbb_c00403{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_c00403{transform:matrix(0.182081,-0.001821,0.002500,0.249988,0,0);-ms-transform:matrix(0.182081,-0.001821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182081,-0.001821,0.002500,0.249988,0,0);}
.m7b_c00403{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);}
.m8d_c00403{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);}
.m59_c00403{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);}
.m3a_c00403{transform:matrix(0.183621,-0.001836,0.002500,0.249988,0,0);-ms-transform:matrix(0.183621,-0.001836,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183621,-0.001836,0.002500,0.249988,0,0);}
.m81_c00403{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);}
.ma2_c00403{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);}
.m76_c00403{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);}
.m14_c00403{transform:matrix(0.185531,-0.001855,0.002500,0.249988,0,0);-ms-transform:matrix(0.185531,-0.001855,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185531,-0.001855,0.002500,0.249988,0,0);}
.m94_c00403{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);}
.mae_c00403{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);}
.m74_c00403{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);}
.m19_c00403{transform:matrix(0.187116,-0.001871,0.002500,0.249988,0,0);-ms-transform:matrix(0.187116,-0.001871,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187116,-0.001871,0.002500,0.249988,0,0);}
.ma1_c00403{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);}
.m6b_c00403{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);}
.mb3_c00403{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);}
.m35_c00403{transform:matrix(0.187681,-0.001877,0.002500,0.249988,0,0);-ms-transform:matrix(0.187681,-0.001877,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187681,-0.001877,0.002500,0.249988,0,0);}
.mb5_c00403{transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187740,0.000000,0.000000,0.250000,0,0);}
.m2c_c00403{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);}
.m63_c00403{transform:matrix(0.189621,-0.001896,0.002500,0.249988,0,0);-ms-transform:matrix(0.189621,-0.001896,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189621,-0.001896,0.002500,0.249988,0,0);}
.me5_c00403{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);}
.mab_c00403{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);}
.m69_c00403{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.190480,-0.001905,0.002500,0.249988,0,0);-ms-transform:matrix(0.190480,-0.001905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190480,-0.001905,0.002500,0.249988,0,0);}
.m64_c00403{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);}
.mf9_c00403{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);}
.m60_c00403{transform:matrix(0.191185,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191185,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191185,-0.001912,0.002500,0.249988,0,0);}
.m82_c00403{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);}
.m24_c00403{transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);-ms-transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191890,-0.001919,0.002500,0.249988,0,0);}
.m71_c00403{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);}
.m3e_c00403{transform:matrix(0.192565,-0.001926,0.002500,0.249988,0,0);-ms-transform:matrix(0.192565,-0.001926,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192565,-0.001926,0.002500,0.249988,0,0);}
.m11_c00403{transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);-ms-transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192990,-0.001930,0.002500,0.249988,0,0);}
.maa_c00403{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);}
.m5e_c00403{transform:matrix(0.193095,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193095,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193095,-0.001931,0.002500,0.249988,0,0);}
.m32_c00403{transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193130,-0.001931,0.002500,0.249988,0,0);}
.m75_c00403{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);}
.ma0_c00403{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);}
.m28_c00403{transform:matrix(0.193950,-0.001940,0.002500,0.249988,0,0);-ms-transform:matrix(0.193950,-0.001940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193950,-0.001940,0.002500,0.249988,0,0);}
.m47_c00403{transform:matrix(0.193995,-0.001940,0.002500,0.249988,0,0);-ms-transform:matrix(0.193995,-0.001940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193995,-0.001940,0.002500,0.249988,0,0);}
.mb_c00403{transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);-ms-transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);}
.m18_c00403{transform:matrix(0.194485,-0.001945,0.002500,0.249988,0,0);-ms-transform:matrix(0.194485,-0.001945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194485,-0.001945,0.002500,0.249988,0,0);}
.m1c_c00403{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);}
.mbf_c00403{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);}
.m54_c00403{transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);-ms-transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195260,-0.001953,0.002500,0.249988,0,0);}
.mb2_c00403{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);}
.m9a_c00403{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);}
.mf0_c00403{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);}
.m6_c00403{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);}
.m3f_c00403{transform:matrix(0.195805,-0.001958,0.002500,0.249988,0,0);-ms-transform:matrix(0.195805,-0.001958,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195805,-0.001958,0.002500,0.249988,0,0);}
.m10e_c00403{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);}
.m98_c00403{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);}
.m9c_c00403{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);}
.m106_c00403{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);}
.m36_c00403{transform:matrix(0.196385,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196385,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196385,-0.001964,0.002500,0.249988,0,0);}
.m97_c00403{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);}
.m79_c00403{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);}
.m104_c00403{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);}
.m2d_c00403{transform:matrix(0.197980,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.197980,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197980,-0.001980,0.002500,0.249988,0,0);}
.mf_c00403{transform:matrix(0.198090,-0.001981,0.002500,0.249988,0,0);-ms-transform:matrix(0.198090,-0.001981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198090,-0.001981,0.002500,0.249988,0,0);}
.m12_c00403{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);}
.mb7_c00403{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);}
.m1a_c00403{transform:matrix(0.198640,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198640,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198640,-0.001986,0.002500,0.249988,0,0);}
.ma6_c00403{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);}
.m9d_c00403{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);}
.m7a_c00403{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);}
.m7d_c00403{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);}
.me_c00403{transform:matrix(0.200815,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200815,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200815,-0.002008,0.002500,0.249988,0,0);}
.m55_c00403{transform:matrix(0.200905,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200905,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200905,-0.002009,0.002500,0.249988,0,0);}
.me4_c00403{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);}
.mb1_c00403{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);}
.mf4_c00403{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);}
.m93_c00403{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);}
.m17_c00403{transform:matrix(0.202065,-0.002021,0.002500,0.249988,0,0);-ms-transform:matrix(0.202065,-0.002021,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202065,-0.002021,0.002500,0.249988,0,0);}
.m61_c00403{transform:matrix(0.202090,-0.002021,0.002500,0.249988,0,0);-ms-transform:matrix(0.202090,-0.002021,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202090,-0.002021,0.002500,0.249988,0,0);}
.ma4_c00403{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);}
.ma9_c00403{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);}
.meb_c00403{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);}
.m72_c00403{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);}
.m70_c00403{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);}
.mce_c00403{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);}
.mdc_c00403{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);}
.m1d_c00403{transform:matrix(0.205325,-0.002053,0.002500,0.249988,0,0);-ms-transform:matrix(0.205325,-0.002053,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205325,-0.002053,0.002500,0.249988,0,0);}
.m6e_c00403{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);}
.m16_c00403{transform:matrix(0.206085,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206085,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206085,-0.002061,0.002500,0.249988,0,0);}
.m4e_c00403{transform:matrix(0.206300,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206300,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206300,-0.002063,0.002500,0.249988,0,0);}
.m91_c00403{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);}
.m53_c00403{transform:matrix(0.207760,-0.002078,0.002500,0.249988,0,0);-ms-transform:matrix(0.207760,-0.002078,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207760,-0.002078,0.002500,0.249988,0,0);}
.m42_c00403{transform:matrix(0.208120,-0.002081,0.002500,0.249988,0,0);-ms-transform:matrix(0.208120,-0.002081,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208120,-0.002081,0.002500,0.249988,0,0);}
.m92_c00403{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);}
.m10a_c00403{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.m77_c00403{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);}
.m83_c00403{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);}
.m20_c00403{transform:matrix(0.210129,-0.002101,0.002500,0.249988,0,0);-ms-transform:matrix(0.210129,-0.002101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210129,-0.002101,0.002500,0.249988,0,0);}
.m2b_c00403{transform:matrix(0.210309,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210309,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210309,-0.002103,0.002500,0.249988,0,0);}
.mb6_c00403{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);}
.mbc_c00403{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);}
.m22_c00403{transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);-ms-transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211274,-0.002113,0.002500,0.249988,0,0);}
.m109_c00403{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);}
.m57_c00403{transform:matrix(0.212669,-0.002127,0.002500,0.249988,0,0);-ms-transform:matrix(0.212669,-0.002127,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212669,-0.002127,0.002500,0.249988,0,0);}
.m5f_c00403{transform:matrix(0.212899,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212899,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212899,-0.002129,0.002500,0.249988,0,0);}
.m4b_c00403{transform:matrix(0.213564,-0.002136,0.002500,0.249988,0,0);-ms-transform:matrix(0.213564,-0.002136,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213564,-0.002136,0.002500,0.249988,0,0);}
.m103_c00403{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);}
.m8a_c00403{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);}
.md_c00403{transform:matrix(0.214724,-0.002147,0.002500,0.249988,0,0);-ms-transform:matrix(0.214724,-0.002147,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214724,-0.002147,0.002500,0.249988,0,0);}
.m9b_c00403{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);}
.m8c_c00403{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);}
.m6d_c00403{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);}
.m52_c00403{transform:matrix(0.215914,-0.002159,0.002500,0.249988,0,0);-ms-transform:matrix(0.215914,-0.002159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215914,-0.002159,0.002500,0.249988,0,0);}
.m100_c00403{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);}
.m84_c00403{transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);}
.mff_c00403{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);}
.m73_c00403{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);}
.mfb_c00403{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);}
.mc7_c00403{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);}
.mf5_c00403{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);}
.mcb_c00403{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);}
.m37_c00403{transform:matrix(0.222619,-0.002226,0.002500,0.249988,0,0);-ms-transform:matrix(0.222619,-0.002226,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222619,-0.002226,0.002500,0.249988,0,0);}
.mac_c00403{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);}
.m99_c00403{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);}
.m1f_c00403{transform:matrix(0.224364,-0.002244,0.002500,0.249988,0,0);-ms-transform:matrix(0.224364,-0.002244,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224364,-0.002244,0.002500,0.249988,0,0);}
.ma3_c00403{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);}
.m2f_c00403{transform:matrix(0.225614,-0.002256,0.002500,0.249988,0,0);-ms-transform:matrix(0.225614,-0.002256,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225614,-0.002256,0.002500,0.249988,0,0);}
.m80_c00403{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);}
.mc0_c00403{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);}
.mfc_c00403{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);}
.m9e_c00403{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00403{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.me0_c00403{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.227404,-0.002274,0.002500,0.249988,0,0);-ms-transform:matrix(0.227404,-0.002274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227404,-0.002274,0.002500,0.249988,0,0);}
.mb9_c00403{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);}
.m95_c00403{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);}
.m5a_c00403{transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);-ms-transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228369,-0.002284,0.002500,0.249988,0,0);}
.m68_c00403{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);}
.m5c_c00403{transform:matrix(0.228414,-0.002284,0.002500,0.249988,0,0);-ms-transform:matrix(0.228414,-0.002284,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228414,-0.002284,0.002500,0.249988,0,0);}
.me1_c00403{transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.228959,-0.002290,0.002500,0.249988,0,0);-ms-transform:matrix(0.228959,-0.002290,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228959,-0.002290,0.002500,0.249988,0,0);}
.m50_c00403{transform:matrix(0.229054,-0.002291,0.002500,0.249988,0,0);-ms-transform:matrix(0.229054,-0.002291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229054,-0.002291,0.002500,0.249988,0,0);}
.m5_c00403{transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);}
.m10b_c00403{transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);}
.mf3_c00403{transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.230903,-0.002309,0.002500,0.249988,0,0);-ms-transform:matrix(0.230903,-0.002309,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230903,-0.002309,0.002500,0.249988,0,0);}
.md2_c00403{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);}
.mfd_c00403{transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);}
.m108_c00403{transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);}
.m87_c00403{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);}
.mf6_c00403{transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233245,0.000000,0.000000,0.250000,0,0);}
.mef_c00403{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);}
.m89_c00403{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);}
.m105_c00403{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);}
.mee_c00403{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);}
.me2_c00403{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);}
.m48_c00403{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);}
.m8e_c00403{transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);}
.mde_c00403{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.mba_c00403{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);}
.ma7_c00403{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);}
.mdf_c00403{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.me7_c00403{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);}
.med_c00403{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);}
.me6_c00403{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.mdd_c00403{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);-ms-transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249898,-0.002499,0.002500,0.249988,0,0);}
.m23_c00403{transform:matrix(0.252537,-0.002525,0.002500,0.249988,0,0);-ms-transform:matrix(0.252537,-0.002525,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252537,-0.002525,0.002500,0.249988,0,0);}
.m6f_c00403{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m40_c00403{transform:matrix(0.254887,-0.002549,0.002500,0.249988,0,0);-ms-transform:matrix(0.254887,-0.002549,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254887,-0.002549,0.002500,0.249988,0,0);}
.mbe_c00403{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);}
.m4d_c00403{transform:matrix(0.255462,-0.002555,0.002500,0.249988,0,0);-ms-transform:matrix(0.255462,-0.002555,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255462,-0.002555,0.002500,0.249988,0,0);}
.m46_c00403{transform:matrix(0.257392,-0.002574,0.002500,0.249988,0,0);-ms-transform:matrix(0.257392,-0.002574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257392,-0.002574,0.002500,0.249988,0,0);}
.mca_c00403{transform:matrix(0.259660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259660,0.000000,0.000000,0.250000,0,0);}
.maf_c00403{transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262185,0.000000,0.000000,0.250000,0,0);}
.m8f_c00403{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00403{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);}
.mf1_c00403{transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{transform:matrix(0.274621,-0.002746,0.002500,0.249988,0,0);-ms-transform:matrix(0.274621,-0.002746,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274621,-0.002746,0.002500,0.249988,0,0);}
.m49_c00403{transform:matrix(0.276146,-0.002761,0.002500,0.249988,0,0);-ms-transform:matrix(0.276146,-0.002761,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276146,-0.002761,0.002500,0.249988,0,0);}
.m88_c00403{transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.276796,-0.002768,0.002500,0.249988,0,0);-ms-transform:matrix(0.276796,-0.002768,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276796,-0.002768,0.002500,0.249988,0,0);}
.mda_c00403{transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);}
.mea_c00403{transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);}
.m107_c00403{transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291135,0.000000,0.000000,0.250000,0,0);}
.m8b_c00403{transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);}
.m90_c00403{transform:matrix(0.295705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295705,0.000000,0.000000,0.250000,0,0);}
.mec_c00403{transform:matrix(0.310085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310085,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.318964,-0.003190,0.002500,0.249988,0,0);-ms-transform:matrix(0.318964,-0.003190,0.002500,0.249988,0,0);-webkit-transform:matrix(0.318964,-0.003190,0.002500,0.249988,0,0);}
.me3_c00403{transform:matrix(0.321205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321205,0.000000,0.000000,0.250000,0,0);}
.mdb_c00403{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m4f_c00403{transform:matrix(0.331743,-0.003317,0.002500,0.249988,0,0);-ms-transform:matrix(0.331743,-0.003317,0.002500,0.249988,0,0);-webkit-transform:matrix(0.331743,-0.003317,0.002500,0.249988,0,0);}
.m43_c00403{transform:matrix(0.331748,-0.003317,0.002500,0.249988,0,0);-ms-transform:matrix(0.331748,-0.003317,0.002500,0.249988,0,0);-webkit-transform:matrix(0.331748,-0.003317,0.002500,0.249988,0,0);}
.me8_c00403{transform:matrix(0.338520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338520,0.000000,0.000000,0.250000,0,0);}
.m67_c00403{transform:matrix(0.360595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360595,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.395660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395660,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.419825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419825,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.489501,-0.004895,0.002500,0.249988,0,0);-ms-transform:matrix(0.489501,-0.004895,0.002500,0.249988,0,0);-webkit-transform:matrix(0.489501,-0.004895,0.002500,0.249988,0,0);}
.me9_c00403{transform:matrix(0.614115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614115,0.000000,0.000000,0.250000,0,0);}
.mfa_c00403{transform:matrix(0.646735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646735,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.845650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845650,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;}
.fs15_c00403{font-size:45.150000px;}
.fs0_c00403{font-size:47.250000px;}
.fs16_c00403{font-size:48.300000px;}
.fs17_c00403{font-size:51.450000px;}
.fs18_c00403{font-size:57.750000px;}
.fsa_c00403{font-size:61.950000px;}
.fsc_c00403{font-size:63.000000px;}
.fse_c00403{font-size:64.050000px;}
.fs10_c00403{font-size:66.150000px;}
.fsf_c00403{font-size:67.200000px;}
.fs9_c00403{font-size:68.250000px;}
.fsb_c00403{font-size:69.300000px;}
.fsd_c00403{font-size:70.350000px;}
.fs3_c00403{font-size:70.353517px;}
.fs8_c00403{font-size:71.400000px;}
.fs5_c00403{font-size:71.403570px;}
.fs7_c00403{font-size:72.453622px;}
.fs4_c00403{font-size:73.503675px;}
.fs6_c00403{font-size:75.603780px;}
.fs13_c00403{font-size:76.650000px;}
.fs11_c00403{font-size:77.700000px;}
.fs2_c00403{font-size:90.300000px;}
.fs14_c00403{font-size:100.800000px;}
.fs12_c00403{font-size:107.100000px;}
.fs1_c00403{font-size:108.150000px;}
.y0_c00403{bottom:0.000000px;}
.y73_c00403{bottom:153.946500px;}
.y72_c00403{bottom:172.555500px;}
.y71_c00403{bottom:190.080000px;}
.y70_c00403{bottom:208.461000px;}
.y6f_c00403{bottom:258.414000px;}
.y6e_c00403{bottom:283.893000px;}
.y6d_c00403{bottom:305.640000px;}
.y6c_c00403{bottom:328.815000px;}
.y6b_c00403{bottom:351.777000px;}
.y6a_c00403{bottom:374.020500px;}
.y69_c00403{bottom:397.102500px;}
.y68_c00403{bottom:419.649000px;}
.y67_c00403{bottom:443.070000px;}
.y66_c00403{bottom:465.658500px;}
.y65_c00403{bottom:487.975500px;}
.y64_c00403{bottom:510.865500px;}
.y63_c00403{bottom:532.800000px;}
.y62_c00403{bottom:555.741000px;}
.y61_c00403{bottom:579.076500px;}
.y60_c00403{bottom:600.096000px;}
.y5f_c00403{bottom:623.490990px;}
.y5c_c00403{bottom:623.491350px;}
.y59_c00403{bottom:623.491395px;}
.y58_c00403{bottom:623.491425px;}
.y5e_c00403{bottom:623.491605px;}
.y5d_c00403{bottom:623.491635px;}
.y5a_c00403{bottom:623.491680px;}
.y5b_c00403{bottom:623.491965px;}
.y57_c00403{bottom:623.492040px;}
.y56_c00403{bottom:623.492055px;}
.y4d_c00403{bottom:646.289220px;}
.y55_c00403{bottom:646.289370px;}
.y54_c00403{bottom:646.289385px;}
.y4c_c00403{bottom:646.289535px;}
.y52_c00403{bottom:646.289730px;}
.y51_c00403{bottom:646.289745px;}
.y4e_c00403{bottom:646.289805px;}
.y53_c00403{bottom:646.290015px;}
.y4f_c00403{bottom:646.290075px;}
.y50_c00403{bottom:646.290360px;}
.y4b_c00403{bottom:668.703690px;}
.y43_c00403{bottom:668.703855px;}
.y42_c00403{bottom:668.703870px;}
.y4a_c00403{bottom:668.704005px;}
.y48_c00403{bottom:668.704050px;}
.y44_c00403{bottom:668.704125px;}
.y49_c00403{bottom:668.704305px;}
.y47_c00403{bottom:668.704365px;}
.y46_c00403{bottom:668.704380px;}
.y45_c00403{bottom:668.704410px;}
.y3a_c00403{bottom:691.988595px;}
.y41_c00403{bottom:691.988775px;}
.y40_c00403{bottom:691.989090px;}
.y3b_c00403{bottom:691.989180px;}
.y3f_c00403{bottom:691.989405px;}
.y3e_c00403{bottom:691.989420px;}
.y3c_c00403{bottom:691.989450px;}
.y3d_c00403{bottom:691.990035px;}
.y35_c00403{bottom:714.410985px;}
.y39_c00403{bottom:714.411510px;}
.y38_c00403{bottom:714.411525px;}
.y36_c00403{bottom:714.411570px;}
.y34_c00403{bottom:714.411615px;}
.y33_c00403{bottom:714.411945px;}
.y37_c00403{bottom:714.412155px;}
.y32_c00403{bottom:714.412560px;}
.y2b_c00403{bottom:736.572435px;}
.y2a_c00403{bottom:736.572750px;}
.y2e_c00403{bottom:736.572960px;}
.y2d_c00403{bottom:736.572975px;}
.y2c_c00403{bottom:736.573005px;}
.y31_c00403{bottom:736.573215px;}
.y29_c00403{bottom:736.573365px;}
.y2f_c00403{bottom:736.573545px;}
.y30_c00403{bottom:736.573830px;}
.y25_c00403{bottom:760.064715px;}
.y24_c00403{bottom:760.064730px;}
.y26_c00403{bottom:760.065000px;}
.y27_c00403{bottom:760.065285px;}
.y23_c00403{bottom:760.065360px;}
.y28_c00403{bottom:760.065555px;}
.y22_c00403{bottom:760.065675px;}
.y20_c00403{bottom:760.065705px;}
.y21_c00403{bottom:760.065990px;}
.y1f_c00403{bottom:760.066020px;}
.y1a_c00403{bottom:782.469780px;}
.y16_c00403{bottom:782.469855px;}
.y1e_c00403{bottom:782.469990px;}
.y1b_c00403{bottom:782.470065px;}
.y19_c00403{bottom:782.470110px;}
.y1c_c00403{bottom:782.470350px;}
.y18_c00403{bottom:782.470425px;}
.y17_c00403{bottom:782.470440px;}
.y1d_c00403{bottom:782.470620px;}
.yd_c00403{bottom:803.789760px;}
.ye_c00403{bottom:804.194865px;}
.yf_c00403{bottom:804.708180px;}
.y10_c00403{bottom:805.045755px;}
.y11_c00403{bottom:805.595100px;}
.y12_c00403{bottom:805.713570px;}
.y13_c00403{bottom:805.963410px;}
.y14_c00403{bottom:806.307495px;}
.y15_c00403{bottom:806.638230px;}
.y4_c00403{bottom:826.471500px;}
.y5_c00403{bottom:826.862520px;}
.y6_c00403{bottom:827.281050px;}
.y7_c00403{bottom:827.481375px;}
.y8_c00403{bottom:828.388665px;}
.y9_c00403{bottom:828.542580px;}
.ya_c00403{bottom:828.858360px;}
.yb_c00403{bottom:829.298310px;}
.yc_c00403{bottom:829.663140px;}
.y3_c00403{bottom:873.664500px;}
.y2_c00403{bottom:931.173000px;}
.y1_c00403{bottom:935.280000px;}
.h17_c00403{height:45.150000px;}
.h2_c00403{height:47.250000px;}
.h18_c00403{height:48.300000px;}
.h19_c00403{height:51.450000px;}
.h1a_c00403{height:57.750000px;}
.hc_c00403{height:61.950000px;}
.he_c00403{height:63.000000px;}
.h10_c00403{height:64.050000px;}
.h12_c00403{height:66.150000px;}
.h11_c00403{height:67.200000px;}
.hb_c00403{height:68.250000px;}
.hd_c00403{height:69.300000px;}
.hf_c00403{height:70.350000px;}
.h5_c00403{height:70.353517px;}
.ha_c00403{height:71.400000px;}
.h7_c00403{height:71.403570px;}
.h9_c00403{height:72.453622px;}
.h6_c00403{height:73.503675px;}
.h8_c00403{height:75.603780px;}
.h15_c00403{height:76.650000px;}
.h13_c00403{height:77.700000px;}
.h4_c00403{height:90.300000px;}
.h16_c00403{height:100.800000px;}
.h14_c00403{height:107.100000px;}
.h3_c00403{height:108.150000px;}
.h0_c00403{height:1008.450000px;}
.h1_c00403{height:1008.750000px;}
.w1_c00403{width:689.250000px;}
.w0_c00403{width:689.550000px;}
.x0_c00403{left:0.000000px;}
.x2_c00403{left:111.510000px;}
.x89_c00403{left:143.370000px;}
.x6_c00403{left:146.340000px;}
.x8a_c00403{left:160.650000px;}
.x13_c00403{left:173.494230px;}
.x38_c00403{left:177.656370px;}
.xb_c00403{left:179.142000px;}
.x60_c00403{left:180.360000px;}
.x73_c00403{left:181.440000px;}
.x7b_c00403{left:187.650000px;}
.x8b_c00403{left:193.050000px;}
.x30_c00403{left:195.208590px;}
.x1a_c00403{left:203.578410px;}
.x45_c00403{left:204.928170px;}
.x2a_c00403{left:206.818665px;}
.x22_c00403{left:208.979475px;}
.x51_c00403{left:210.330000px;}
.x97_c00403{left:211.410000px;}
.x5c_c00403{left:213.300000px;}
.x6f_c00403{left:214.920000px;}
.xc_c00403{left:218.244000px;}
.x4c_c00403{left:221.940000px;}
.x3e_c00403{left:223.020030px;}
.x14_c00403{left:224.205750px;}
.x68_c00403{left:227.070000px;}
.x7c_c00403{left:231.390000px;}
.x82_c00403{left:234.090000px;}
.x2b_c00403{left:235.440030px;}
.x7_c00403{left:240.300000px;}
.x46_c00403{left:241.920375px;}
.x70_c00403{left:243.000000px;}
.x1b_c00403{left:245.431095px;}
.x63_c00403{left:247.860000px;}
.x74_c00403{left:250.830000px;}
.x6c_c00403{left:254.070000px;}
.x3f_c00403{left:256.231845px;}
.x77_c00403{left:258.930000px;}
.xd_c00403{left:260.097000px;}
.x23_c00403{left:262.981875px;}
.x4a_c00403{left:267.570000px;}
.x5d_c00403{left:268.650000px;}
.x75_c00403{left:270.000000px;}
.x1c_c00403{left:271.352190px;}
.x4d_c00403{left:273.780000px;}
.x71_c00403{left:275.400000px;}
.x7d_c00403{left:278.370000px;}
.x3_c00403{left:280.530000px;}
.x98_c00403{left:281.880000px;}
.x56_c00403{left:283.770000px;}
.x92_c00403{left:286.470000px;}
.x8_c00403{left:287.550000px;}
.x1_c00403{left:292.410000px;}
.x24_c00403{left:295.653645px;}
.x31_c00403{left:297.272805px;}
.x39_c00403{left:298.622460px;}
.x40_c00403{left:303.213540px;}
.x52_c00403{left:304.560000px;}
.x76_c00403{left:310.500000px;}
.x83_c00403{left:313.740000px;}
.x35_c00403{left:320.492820px;}
.x57_c00403{left:323.730000px;}
.x47_c00403{left:325.354215px;}
.x32_c00403{left:327.784350px;}
.x4b_c00403{left:328.860000px;}
.x9_c00403{left:329.940000px;}
.x1d_c00403{left:331.025160px;}
.x5e_c00403{left:333.450000px;}
.x41_c00403{left:338.045520px;}
.x8c_c00403{left:341.010000px;}
.x36_c00403{left:344.793750px;}
.x7f_c00403{left:347.220000px;}
.x66_c00403{left:348.570000px;}
.x2c_c00403{left:352.355715px;}
.x64_c00403{left:354.240000px;}
.x33_c00403{left:355.595625px;}
.x25_c00403{left:358.296915px;}
.x78_c00403{left:362.610000px;}
.x48_c00403{left:364.236600px;}
.x5f_c00403{left:366.120000px;}
.x58_c00403{left:367.200000px;}
.x4e_c00403{left:369.090000px;}
.xe_c00403{left:370.858500px;}
.x1e_c00403{left:373.957950px;}
.x53_c00403{left:375.030000px;}
.x42_c00403{left:377.737995px;}
.x26_c00403{left:379.897575px;}
.x93_c00403{left:382.590000px;}
.x65_c00403{left:384.480000px;}
.xf_c00403{left:386.250000px;}
.x3a_c00403{left:393.127410px;}
.x2d_c00403{left:394.208400px;}
.xa_c00403{left:396.630000px;}
.x69_c00403{left:397.710000px;}
.x15_c00403{left:399.182745px;}
.x27_c00403{left:403.928475px;}
.x72_c00403{left:405.540000px;}
.x1f_c00403{left:408.789930px;}
.x37_c00403{left:410.137290px;}
.x54_c00403{left:412.830000px;}
.x16_c00403{left:414.030045px;}
.x4f_c00403{left:416.070000px;}
.x10_c00403{left:417.828000px;}
.x3b_c00403{left:423.098910px;}
.x84_c00403{left:429.840000px;}
.x79_c00403{left:430.920000px;}
.x80_c00403{left:432.000000px;}
.x43_c00403{left:434.170635px;}
.x34_c00403{left:435.789150px;}
.x28_c00403{left:438.760455px;}
.x4_c00403{left:442.260000px;}
.x59_c00403{left:443.340000px;}
.x17_c00403{left:445.314675px;}
.x67_c00403{left:447.390000px;}
.x99_c00403{left:449.280000px;}
.x50_c00403{left:457.380000px;}
.x7a_c00403{left:460.620000px;}
.x11_c00403{left:461.823000px;}
.x7e_c00403{left:467.370000px;}
.x6a_c00403{left:469.260000px;}
.x49_c00403{left:472.511430px;}
.x20_c00403{left:474.673515px;}
.x5a_c00403{left:477.090000px;}
.x2e_c00403{left:478.453815px;}
.x55_c00403{left:481.410000px;}
.x61_c00403{left:483.030000px;}
.x18_c00403{left:488.274030px;}
.x81_c00403{left:491.940000px;}
.x12_c00403{left:498.306000px;}
.x44_c00403{left:500.862810px;}
.x3c_c00403{left:502.482345px;}
.x5b_c00403{left:503.820000px;}
.x5_c00403{left:506.250000px;}
.x29_c00403{left:507.344310px;}
.x2f_c00403{left:511.395615px;}
.x6d_c00403{left:513.000000px;}
.x6b_c00403{left:514.080000px;}
.x21_c00403{left:521.115165px;}
.x19_c00403{left:529.598355px;}
.x94_c00403{left:534.330000px;}
.x6e_c00403{left:538.380000px;}
.x3d_c00403{left:539.474550px;}
.x62_c00403{left:541.620000px;}
.x8d_c00403{left:544.860000px;}
.x85_c00403{left:550.260000px;}
.x95_c00403{left:561.600000px;}
.x8e_c00403{left:567.000000px;}
.x8f_c00403{left:568.350000px;}
.x96_c00403{left:573.480000px;}
.x90_c00403{left:576.990000px;}
.x86_c00403{left:586.710000px;}
.x87_c00403{left:606.150000px;}
.x88_c00403{left:645.570000px;}
.x9a_c00403{left:650.970000px;}
.x91_c00403{left:654.750000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs15_c00403{font-size:40.133333pt;}
.fs0_c00403{font-size:42.000000pt;}
.fs16_c00403{font-size:42.933333pt;}
.fs17_c00403{font-size:45.733333pt;}
.fs18_c00403{font-size:51.333333pt;}
.fsa_c00403{font-size:55.066667pt;}
.fsc_c00403{font-size:56.000000pt;}
.fse_c00403{font-size:56.933333pt;}
.fs10_c00403{font-size:58.800000pt;}
.fsf_c00403{font-size:59.733333pt;}
.fs9_c00403{font-size:60.666667pt;}
.fsb_c00403{font-size:61.600000pt;}
.fsd_c00403{font-size:62.533333pt;}
.fs3_c00403{font-size:62.536460pt;}
.fs8_c00403{font-size:63.466667pt;}
.fs5_c00403{font-size:63.469840pt;}
.fs7_c00403{font-size:64.403220pt;}
.fs4_c00403{font-size:65.336600pt;}
.fs6_c00403{font-size:67.203360pt;}
.fs13_c00403{font-size:68.133333pt;}
.fs11_c00403{font-size:69.066667pt;}
.fs2_c00403{font-size:80.266667pt;}
.fs14_c00403{font-size:89.600000pt;}
.fs12_c00403{font-size:95.200000pt;}
.fs1_c00403{font-size:96.133333pt;}
.y0_c00403{bottom:0.000000pt;}
.y73_c00403{bottom:136.841333pt;}
.y72_c00403{bottom:153.382667pt;}
.y71_c00403{bottom:168.960000pt;}
.y70_c00403{bottom:185.298667pt;}
.y6f_c00403{bottom:229.701333pt;}
.y6e_c00403{bottom:252.349333pt;}
.y6d_c00403{bottom:271.680000pt;}
.y6c_c00403{bottom:292.280000pt;}
.y6b_c00403{bottom:312.690667pt;}
.y6a_c00403{bottom:332.462667pt;}
.y69_c00403{bottom:352.980000pt;}
.y68_c00403{bottom:373.021333pt;}
.y67_c00403{bottom:393.840000pt;}
.y66_c00403{bottom:413.918667pt;}
.y65_c00403{bottom:433.756000pt;}
.y64_c00403{bottom:454.102667pt;}
.y63_c00403{bottom:473.600000pt;}
.y62_c00403{bottom:493.992000pt;}
.y61_c00403{bottom:514.734667pt;}
.y60_c00403{bottom:533.418667pt;}
.y5f_c00403{bottom:554.214213pt;}
.y5c_c00403{bottom:554.214533pt;}
.y59_c00403{bottom:554.214573pt;}
.y58_c00403{bottom:554.214600pt;}
.y5e_c00403{bottom:554.214760pt;}
.y5d_c00403{bottom:554.214787pt;}
.y5a_c00403{bottom:554.214827pt;}
.y5b_c00403{bottom:554.215080pt;}
.y57_c00403{bottom:554.215147pt;}
.y56_c00403{bottom:554.215160pt;}
.y4d_c00403{bottom:574.479307pt;}
.y55_c00403{bottom:574.479440pt;}
.y54_c00403{bottom:574.479453pt;}
.y4c_c00403{bottom:574.479587pt;}
.y52_c00403{bottom:574.479760pt;}
.y51_c00403{bottom:574.479773pt;}
.y4e_c00403{bottom:574.479827pt;}
.y53_c00403{bottom:574.480013pt;}
.y4f_c00403{bottom:574.480067pt;}
.y50_c00403{bottom:574.480320pt;}
.y4b_c00403{bottom:594.403280pt;}
.y43_c00403{bottom:594.403427pt;}
.y42_c00403{bottom:594.403440pt;}
.y4a_c00403{bottom:594.403560pt;}
.y48_c00403{bottom:594.403600pt;}
.y44_c00403{bottom:594.403667pt;}
.y49_c00403{bottom:594.403827pt;}
.y47_c00403{bottom:594.403880pt;}
.y46_c00403{bottom:594.403893pt;}
.y45_c00403{bottom:594.403920pt;}
.y3a_c00403{bottom:615.100973pt;}
.y41_c00403{bottom:615.101133pt;}
.y40_c00403{bottom:615.101413pt;}
.y3b_c00403{bottom:615.101493pt;}
.y3f_c00403{bottom:615.101693pt;}
.y3e_c00403{bottom:615.101707pt;}
.y3c_c00403{bottom:615.101733pt;}
.y3d_c00403{bottom:615.102253pt;}
.y35_c00403{bottom:635.031987pt;}
.y39_c00403{bottom:635.032453pt;}
.y38_c00403{bottom:635.032467pt;}
.y36_c00403{bottom:635.032507pt;}
.y34_c00403{bottom:635.032547pt;}
.y33_c00403{bottom:635.032840pt;}
.y37_c00403{bottom:635.033027pt;}
.y32_c00403{bottom:635.033387pt;}
.y2b_c00403{bottom:654.731053pt;}
.y2a_c00403{bottom:654.731333pt;}
.y2e_c00403{bottom:654.731520pt;}
.y2d_c00403{bottom:654.731533pt;}
.y2c_c00403{bottom:654.731560pt;}
.y31_c00403{bottom:654.731747pt;}
.y29_c00403{bottom:654.731880pt;}
.y2f_c00403{bottom:654.732040pt;}
.y30_c00403{bottom:654.732293pt;}
.y25_c00403{bottom:675.613080pt;}
.y24_c00403{bottom:675.613093pt;}
.y26_c00403{bottom:675.613333pt;}
.y27_c00403{bottom:675.613587pt;}
.y23_c00403{bottom:675.613653pt;}
.y28_c00403{bottom:675.613827pt;}
.y22_c00403{bottom:675.613933pt;}
.y20_c00403{bottom:675.613960pt;}
.y21_c00403{bottom:675.614213pt;}
.y1f_c00403{bottom:675.614240pt;}
.y1a_c00403{bottom:695.528693pt;}
.y16_c00403{bottom:695.528760pt;}
.y1e_c00403{bottom:695.528880pt;}
.y1b_c00403{bottom:695.528947pt;}
.y19_c00403{bottom:695.528987pt;}
.y1c_c00403{bottom:695.529200pt;}
.y18_c00403{bottom:695.529267pt;}
.y17_c00403{bottom:695.529280pt;}
.y1d_c00403{bottom:695.529440pt;}
.yd_c00403{bottom:714.479787pt;}
.ye_c00403{bottom:714.839880pt;}
.yf_c00403{bottom:715.296160pt;}
.y10_c00403{bottom:715.596227pt;}
.y11_c00403{bottom:716.084533pt;}
.y12_c00403{bottom:716.189840pt;}
.y13_c00403{bottom:716.411920pt;}
.y14_c00403{bottom:716.717773pt;}
.y15_c00403{bottom:717.011760pt;}
.y4_c00403{bottom:734.641333pt;}
.y5_c00403{bottom:734.988907pt;}
.y6_c00403{bottom:735.360933pt;}
.y7_c00403{bottom:735.539000pt;}
.y8_c00403{bottom:736.345480pt;}
.y9_c00403{bottom:736.482293pt;}
.ya_c00403{bottom:736.762987pt;}
.yb_c00403{bottom:737.154053pt;}
.yc_c00403{bottom:737.478347pt;}
.y3_c00403{bottom:776.590667pt;}
.y2_c00403{bottom:827.709333pt;}
.y1_c00403{bottom:831.360000pt;}
.h17_c00403{height:40.133333pt;}
.h2_c00403{height:42.000000pt;}
.h18_c00403{height:42.933333pt;}
.h19_c00403{height:45.733333pt;}
.h1a_c00403{height:51.333333pt;}
.hc_c00403{height:55.066667pt;}
.he_c00403{height:56.000000pt;}
.h10_c00403{height:56.933333pt;}
.h12_c00403{height:58.800000pt;}
.h11_c00403{height:59.733333pt;}
.hb_c00403{height:60.666667pt;}
.hd_c00403{height:61.600000pt;}
.hf_c00403{height:62.533333pt;}
.h5_c00403{height:62.536460pt;}
.ha_c00403{height:63.466667pt;}
.h7_c00403{height:63.469840pt;}
.h9_c00403{height:64.403220pt;}
.h6_c00403{height:65.336600pt;}
.h8_c00403{height:67.203360pt;}
.h15_c00403{height:68.133333pt;}
.h13_c00403{height:69.066667pt;}
.h4_c00403{height:80.266667pt;}
.h16_c00403{height:89.600000pt;}
.h14_c00403{height:95.200000pt;}
.h3_c00403{height:96.133333pt;}
.h0_c00403{height:896.400000pt;}
.h1_c00403{height:896.666667pt;}
.w1_c00403{width:612.666667pt;}
.w0_c00403{width:612.933333pt;}
.x0_c00403{left:0.000000pt;}
.x2_c00403{left:99.120000pt;}
.x89_c00403{left:127.440000pt;}
.x6_c00403{left:130.080000pt;}
.x8a_c00403{left:142.800000pt;}
.x13_c00403{left:154.217093pt;}
.x38_c00403{left:157.916773pt;}
.xb_c00403{left:159.237333pt;}
.x60_c00403{left:160.320000pt;}
.x73_c00403{left:161.280000pt;}
.x7b_c00403{left:166.800000pt;}
.x8b_c00403{left:171.600000pt;}
.x30_c00403{left:173.518747pt;}
.x1a_c00403{left:180.958587pt;}
.x45_c00403{left:182.158373pt;}
.x2a_c00403{left:183.838813pt;}
.x22_c00403{left:185.759533pt;}
.x51_c00403{left:186.960000pt;}
.x97_c00403{left:187.920000pt;}
.x5c_c00403{left:189.600000pt;}
.x6f_c00403{left:191.040000pt;}
.xc_c00403{left:193.994667pt;}
.x4c_c00403{left:197.280000pt;}
.x3e_c00403{left:198.240027pt;}
.x14_c00403{left:199.294000pt;}
.x68_c00403{left:201.840000pt;}
.x7c_c00403{left:205.680000pt;}
.x82_c00403{left:208.080000pt;}
.x2b_c00403{left:209.280027pt;}
.x7_c00403{left:213.600000pt;}
.x46_c00403{left:215.040333pt;}
.x70_c00403{left:216.000000pt;}
.x1b_c00403{left:218.160973pt;}
.x63_c00403{left:220.320000pt;}
.x74_c00403{left:222.960000pt;}
.x6c_c00403{left:225.840000pt;}
.x3f_c00403{left:227.761640pt;}
.x77_c00403{left:230.160000pt;}
.xd_c00403{left:231.197333pt;}
.x23_c00403{left:233.761667pt;}
.x4a_c00403{left:237.840000pt;}
.x5d_c00403{left:238.800000pt;}
.x75_c00403{left:240.000000pt;}
.x1c_c00403{left:241.201947pt;}
.x4d_c00403{left:243.360000pt;}
.x71_c00403{left:244.800000pt;}
.x7d_c00403{left:247.440000pt;}
.x3_c00403{left:249.360000pt;}
.x98_c00403{left:250.560000pt;}
.x56_c00403{left:252.240000pt;}
.x92_c00403{left:254.640000pt;}
.x8_c00403{left:255.600000pt;}
.x1_c00403{left:259.920000pt;}
.x24_c00403{left:262.803240pt;}
.x31_c00403{left:264.242493pt;}
.x39_c00403{left:265.442187pt;}
.x40_c00403{left:269.523147pt;}
.x52_c00403{left:270.720000pt;}
.x76_c00403{left:276.000000pt;}
.x83_c00403{left:278.880000pt;}
.x35_c00403{left:284.882507pt;}
.x57_c00403{left:287.760000pt;}
.x47_c00403{left:289.203747pt;}
.x32_c00403{left:291.363867pt;}
.x4b_c00403{left:292.320000pt;}
.x9_c00403{left:293.280000pt;}
.x1d_c00403{left:294.244587pt;}
.x5e_c00403{left:296.400000pt;}
.x41_c00403{left:300.484907pt;}
.x8c_c00403{left:303.120000pt;}
.x36_c00403{left:306.483333pt;}
.x7f_c00403{left:308.640000pt;}
.x66_c00403{left:309.840000pt;}
.x2c_c00403{left:313.205080pt;}
.x64_c00403{left:314.880000pt;}
.x33_c00403{left:316.085000pt;}
.x25_c00403{left:318.486147pt;}
.x78_c00403{left:322.320000pt;}
.x48_c00403{left:323.765867pt;}
.x5f_c00403{left:325.440000pt;}
.x58_c00403{left:326.400000pt;}
.x4e_c00403{left:328.080000pt;}
.xe_c00403{left:329.652000pt;}
.x1e_c00403{left:332.407067pt;}
.x53_c00403{left:333.360000pt;}
.x42_c00403{left:335.767107pt;}
.x26_c00403{left:337.686733pt;}
.x93_c00403{left:340.080000pt;}
.x65_c00403{left:341.760000pt;}
.xf_c00403{left:343.333333pt;}
.x3a_c00403{left:349.446587pt;}
.x2d_c00403{left:350.407467pt;}
.xa_c00403{left:352.560000pt;}
.x69_c00403{left:353.520000pt;}
.x15_c00403{left:354.829107pt;}
.x27_c00403{left:359.047533pt;}
.x72_c00403{left:360.480000pt;}
.x1f_c00403{left:363.368827pt;}
.x37_c00403{left:364.566480pt;}
.x54_c00403{left:366.960000pt;}
.x16_c00403{left:368.026707pt;}
.x4f_c00403{left:369.840000pt;}
.x10_c00403{left:371.402667pt;}
.x3b_c00403{left:376.087920pt;}
.x84_c00403{left:382.080000pt;}
.x79_c00403{left:383.040000pt;}
.x80_c00403{left:384.000000pt;}
.x43_c00403{left:385.929453pt;}
.x34_c00403{left:387.368133pt;}
.x28_c00403{left:390.009293pt;}
.x4_c00403{left:393.120000pt;}
.x59_c00403{left:394.080000pt;}
.x17_c00403{left:395.835267pt;}
.x67_c00403{left:397.680000pt;}
.x99_c00403{left:399.360000pt;}
.x50_c00403{left:406.560000pt;}
.x7a_c00403{left:409.440000pt;}
.x11_c00403{left:410.509333pt;}
.x7e_c00403{left:415.440000pt;}
.x6a_c00403{left:417.120000pt;}
.x49_c00403{left:420.010160pt;}
.x20_c00403{left:421.932013pt;}
.x5a_c00403{left:424.080000pt;}
.x2e_c00403{left:425.292280pt;}
.x55_c00403{left:427.920000pt;}
.x61_c00403{left:429.360000pt;}
.x18_c00403{left:434.021360pt;}
.x81_c00403{left:437.280000pt;}
.x12_c00403{left:442.938667pt;}
.x44_c00403{left:445.211387pt;}
.x3c_c00403{left:446.650973pt;}
.x5b_c00403{left:447.840000pt;}
.x5_c00403{left:450.000000pt;}
.x29_c00403{left:450.972720pt;}
.x2f_c00403{left:454.573880pt;}
.x6d_c00403{left:456.000000pt;}
.x6b_c00403{left:456.960000pt;}
.x21_c00403{left:463.213480pt;}
.x19_c00403{left:470.754093pt;}
.x94_c00403{left:474.960000pt;}
.x6e_c00403{left:478.560000pt;}
.x3d_c00403{left:479.532933pt;}
.x62_c00403{left:481.440000pt;}
.x8d_c00403{left:484.320000pt;}
.x85_c00403{left:489.120000pt;}
.x95_c00403{left:499.200000pt;}
.x8e_c00403{left:504.000000pt;}
.x8f_c00403{left:505.200000pt;}
.x96_c00403{left:509.760000pt;}
.x90_c00403{left:512.880000pt;}
.x86_c00403{left:521.520000pt;}
.x87_c00403{left:538.800000pt;}
.x88_c00403{left:573.840000pt;}
.x9a_c00403{left:578.640000pt;}
.x91_c00403{left:582.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_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;}
.m2e_c00404{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);}
.m9f_c00404{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m93_c00404{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.mc6_c00404{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);}
.m23_c00404{transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070770,0.000000,0.000000,0.250000,0,0);}
.me8_c00404{transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);}
.mc4_c00404{transform:matrix(0.101870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101870,0.000000,0.000000,0.250000,0,0);}
.me1_c00404{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.mde_c00404{transform:matrix(0.122245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122245,0.000000,0.000000,0.250000,0,0);}
.mef_c00404{transform:matrix(0.126885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126885,0.000000,0.000000,0.250000,0,0);}
.m69_c00404{transform:matrix(0.131390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131390,0.000000,0.000000,0.250000,0,0);}
.me2_c00404{transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.135180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135180,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{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);}
.m6f_c00404{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);}
.me9_c00404{transform:matrix(0.139815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139815,0.000000,0.000000,0.250000,0,0);}
.m66_c00404{transform:matrix(0.149635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149635,0.000000,0.000000,0.250000,0,0);}
.m77_c00404{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);}
.md7_c00404{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);}
.m26_c00404{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);}
.ma8_c00404{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);}
.m5_c00404{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);}
.m9b_c00404{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);}
.me0_c00404{transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158595,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{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);}
.m30_c00404{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);}
.m9_c00404{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);}
.ma0_c00404{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);}
.m27_c00404{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_c00404{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);}
.m67_c00404{transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);}
.m65_c00404{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);}
.m8d_c00404{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);}
.mb9_c00404{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);}
.m14_c00404{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);}
.m60_c00404{transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167620,0.000000,0.000000,0.250000,0,0);}
.mb0_c00404{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);}
.mb1_c00404{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);}
.m2d_c00404{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);}
.mb4_c00404{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);}
.ma4_c00404{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);}
.ma7_c00404{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m33_c00404{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);}
.ma3_c00404{transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173090,0.000000,0.000000,0.250000,0,0);}
.med_c00404{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);}
.m76_c00404{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);}
.m47_c00404{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);}
.m82_c00404{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);}
.m36_c00404{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);}
.m5f_c00404{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);}
.m2c_c00404{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);}
.m68_c00404{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);}
.m7a_c00404{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);}
.m79_c00404{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);}
.m7_c00404{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);}
.m56_c00404{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);}
.m1b_c00404{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);}
.mba_c00404{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);}
.m83_c00404{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);}
.mea_c00404{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);}
.m3f_c00404{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);}
.m2a_c00404{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);}
.m59_c00404{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);}
.mb_c00404{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);}
.m9a_c00404{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);}
.m55_c00404{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);}
.m5d_c00404{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);}
.m1f_c00404{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);}
.m29_c00404{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);}
.m1d_c00404{transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);}
.m9c_c00404{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);}
.me5_c00404{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);}
.mb5_c00404{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);}
.m97_c00404{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);}
.m95_c00404{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);}
.m11_c00404{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_c00404{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);}
.m46_c00404{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);}
.m78_c00404{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);}
.me3_c00404{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);}
.m4_c00404{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);}
.m41_c00404{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);}
.m2b_c00404{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);}
.m31_c00404{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);}
.mac_c00404{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);}
.m61_c00404{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);}
.m7e_c00404{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);}
.m17_c00404{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);}
.m3_c00404{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);}
.mc3_c00404{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);}
.mab_c00404{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);}
.m51_c00404{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);}
.m90_c00404{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);}
.m16_c00404{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);}
.ma6_c00404{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);}
.m62_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);}
.m70_c00404{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);}
.m74_c00404{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);}
.m6_c00404{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);}
.m3a_c00404{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);}
.m32_c00404{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);}
.m19_c00404{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);}
.m6e_c00404{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);}
.mb7_c00404{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);}
.mb6_c00404{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);}
.m53_c00404{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);}
.mc_c00404{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);}
.m15_c00404{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);}
.m99_c00404{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);}
.m6b_c00404{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);}
.m6c_c00404{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);}
.m3d_c00404{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);}
.m5c_c00404{transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);}
.md_c00404{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);}
.mc8_c00404{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);}
.m5b_c00404{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);}
.m81_c00404{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);}
.mcc_c00404{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);}
.m1c_c00404{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);}
.m1e_c00404{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);}
.m3b_c00404{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);}
.mbe_c00404{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);}
.mdc_c00404{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);}
.mb8_c00404{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);}
.m18_c00404{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);}
.m6d_c00404{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);}
.m20_c00404{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);}
.m13_c00404{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);}
.m52_c00404{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);}
.mcb_c00404{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);}
.m5e_c00404{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);}
.m34_c00404{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);}
.mc0_c00404{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);}
.m3c_c00404{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);}
.m54_c00404{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);}
.m35_c00404{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);}
.m8c_c00404{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);}
.m96_c00404{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);}
.mad_c00404{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);}
.m22_c00404{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);}
.m4f_c00404{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);}
.m28_c00404{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);}
.mae_c00404{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.m63_c00404{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);}
.m86_c00404{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);}
.m39_c00404{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);}
.mc2_c00404{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);}
.m1a_c00404{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);}
.ma2_c00404{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);}
.md0_c00404{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);}
.mb2_c00404{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);}
.mc5_c00404{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);}
.mbc_c00404{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);}
.m64_c00404{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);}
.mf_c00404{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);}
.m7b_c00404{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);}
.ma_c00404{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);}
.m2_c00404{transform:matrix(0.217299,0.002173,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217299,0.002173,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217299,0.002173,-0.002500,0.249988,0,0);}
.me6_c00404{transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);}
.mc1_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);}
.m91_c00404{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);}
.m72_c00404{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);}
.me4_c00404{transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);}
.mdd_c00404{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);}
.m98_c00404{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);}
.m92_c00404{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);}
.m10_c00404{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);}
.m24_c00404{transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227220,0.000000,0.000000,0.250000,0,0);}
.md2_c00404{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);}
.m73_c00404{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{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);}
.mdb_c00404{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);}
.m9d_c00404{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);}
.m75_c00404{transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231085,0.000000,0.000000,0.250000,0,0);}
.m45_c00404{transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{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);}
.m89_c00404{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);}
.m88_c00404{transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);}
.md1_c00404{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);}
.mb3_c00404{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);}
.m57_c00404{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.maf_c00404{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);}
.maa_c00404{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);}
.mca_c00404{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);}
.m3e_c00404{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);}
.m7f_c00404{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);}
.m94_c00404{transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);}
.mcd_c00404{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);}
.m85_c00404{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);}
.mc7_c00404{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);}
.m1_c00404{transform:matrix(0.244878,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244878,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244878,0.002449,-0.002500,0.249988,0,0);}
.me_c00404{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);}
.m4c_c00404{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);}
.mce_c00404{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.m87_c00404{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);}
.mcf_c00404{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);}
.ma5_c00404{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m7c_c00404{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);}
.m84_c00404{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m6a_c00404{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.md6_c00404{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);}
.m21_c00404{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{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);}
.md8_c00404{transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267705,0.000000,0.000000,0.250000,0,0);}
.mbf_c00404{transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268675,0.000000,0.000000,0.250000,0,0);}
.m40_c00404{transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270305,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{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);}
.m12_c00404{transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);}
.m8a_c00404{transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);}
.m8e_c00404{transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);}
.mda_c00404{transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290480,0.000000,0.000000,0.250000,0,0);}
.m43_c00404{transform:matrix(0.300765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00404{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);}
.m7d_c00404{transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315035,0.000000,0.000000,0.250000,0,0);}
.m37_c00404{transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316980,0.000000,0.000000,0.250000,0,0);}
.me7_c00404{transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);}
.md9_c00404{transform:matrix(0.325670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325670,0.000000,0.000000,0.250000,0,0);}
.m9e_c00404{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m42_c00404{transform:matrix(0.328380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328380,0.000000,0.000000,0.250000,0,0);}
.m4b_c00404{transform:matrix(0.331895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331895,0.000000,0.000000,0.250000,0,0);}
.ma9_c00404{transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332640,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{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);}
.m50_c00404{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);}
.m8b_c00404{transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364775,0.000000,0.000000,0.250000,0,0);}
.m4d_c00404{transform:matrix(0.366360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366360,0.000000,0.000000,0.250000,0,0);}
.m49_c00404{transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368230,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.384460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384460,0.000000,0.000000,0.250000,0,0);}
.md4_c00404{transform:matrix(0.417695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417695,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.419359,0.004194,-0.002500,0.249988,0,0);-ms-transform:matrix(0.419359,0.004194,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.419359,0.004194,-0.002500,0.249988,0,0);}
.m2f_c00404{transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);}
.md3_c00404{transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);}
.m71_c00404{transform:matrix(0.487200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487200,0.000000,0.000000,0.250000,0,0);}
.mc9_c00404{transform:matrix(0.514710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514710,0.000000,0.000000,0.250000,0,0);}
.mdf_c00404{transform:matrix(0.519530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519530,0.000000,0.000000,0.250000,0,0);}
.mec_c00404{transform:matrix(0.530175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530175,0.000000,0.000000,0.250000,0,0);}
.m4a_c00404{transform:matrix(0.567265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567265,0.000000,0.000000,0.250000,0,0);}
.m4e_c00404{transform:matrix(0.642100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642100,0.000000,0.000000,0.250000,0,0);}
.mee_c00404{transform:matrix(0.653870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653870,0.000000,0.000000,0.250000,0,0);}
.meb_c00404{transform:matrix(0.695275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695275,0.000000,0.000000,0.250000,0,0);}
.md5_c00404{transform:matrix(0.757560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757560,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;}
.fc0_c00404{color:transparent;}
.fs9_c00404{font-size:52.500000px;}
.fsa_c00404{font-size:59.850000px;}
.fs5_c00404{font-size:61.950000px;}
.fs6_c00404{font-size:64.050000px;}
.fs4_c00404{font-size:67.200000px;}
.fs8_c00404{font-size:68.250000px;}
.fs3_c00404{font-size:70.350000px;}
.fs2_c00404{font-size:71.400000px;}
.fs7_c00404{font-size:72.450000px;}
.fs1_c00404{font-size:73.500000px;}
.fs0_c00404{font-size:93.454672px;}
.y0_c00404{bottom:0.000000px;}
.yb1_c00404{bottom:167.095500px;}
.yb0_c00404{bottom:168.054000px;}
.yaf_c00404{bottom:168.646500px;}
.yae_c00404{bottom:170.115000px;}
.yad_c00404{bottom:183.726000px;}
.yac_c00404{bottom:184.618500px;}
.yab_c00404{bottom:184.965000px;}
.yaa_c00404{bottom:186.192000px;}
.ya9_c00404{bottom:186.718500px;}
.ya8_c00404{bottom:187.756500px;}
.ya7_c00404{bottom:188.364000px;}
.ya6_c00404{bottom:189.061500px;}
.ya5_c00404{bottom:189.481500px;}
.ya4_c00404{bottom:190.204500px;}
.ya3_c00404{bottom:190.527000px;}
.ya2_c00404{bottom:190.915500px;}
.ya1_c00404{bottom:191.545500px;}
.ya0_c00404{bottom:204.954000px;}
.y9f_c00404{bottom:252.940500px;}
.y9e_c00404{bottom:253.740000px;}
.y9d_c00404{bottom:253.999500px;}
.y9c_c00404{bottom:254.262000px;}
.y9b_c00404{bottom:255.406500px;}
.y9a_c00404{bottom:255.694500px;}
.y99_c00404{bottom:256.183500px;}
.y98_c00404{bottom:256.675500px;}
.y97_c00404{bottom:256.990500px;}
.y96_c00404{bottom:257.227500px;}
.y95_c00404{bottom:257.845500px;}
.y94_c00404{bottom:258.160500px;}
.y93_c00404{bottom:275.760000px;}
.y92_c00404{bottom:276.711000px;}
.y91_c00404{bottom:276.738000px;}
.y90_c00404{bottom:277.279500px;}
.y8f_c00404{bottom:278.104500px;}
.y8e_c00404{bottom:278.265000px;}
.y8d_c00404{bottom:278.979000px;}
.y8c_c00404{bottom:279.252000px;}
.y8b_c00404{bottom:279.789000px;}
.y8a_c00404{bottom:280.264500px;}
.y89_c00404{bottom:298.810500px;}
.y88_c00404{bottom:299.302500px;}
.y87_c00404{bottom:299.667000px;}
.y86_c00404{bottom:299.974500px;}
.y85_c00404{bottom:300.268500px;}
.y84_c00404{bottom:300.697500px;}
.y83_c00404{bottom:300.912000px;}
.y82_c00404{bottom:301.162500px;}
.y81_c00404{bottom:301.726500px;}
.y80_c00404{bottom:301.993500px;}
.y7f_c00404{bottom:321.876000px;}
.y7e_c00404{bottom:322.141500px;}
.y7d_c00404{bottom:322.351500px;}
.y7c_c00404{bottom:322.528500px;}
.y7b_c00404{bottom:322.789500px;}
.y7a_c00404{bottom:323.319000px;}
.y79_c00404{bottom:323.574000px;}
.y78_c00404{bottom:323.946000px;}
.y77_c00404{bottom:324.126000px;}
.y76_c00404{bottom:324.544500px;}
.y75_c00404{bottom:344.235000px;}
.y74_c00404{bottom:344.545500px;}
.y73_c00404{bottom:344.734500px;}
.y72_c00404{bottom:344.982000px;}
.y71_c00404{bottom:345.276000px;}
.y70_c00404{bottom:345.726000px;}
.y6f_c00404{bottom:345.985500px;}
.y6e_c00404{bottom:346.491000px;}
.y6d_c00404{bottom:346.813500px;}
.y6c_c00404{bottom:346.951500px;}
.y6b_c00404{bottom:367.881000px;}
.y6a_c00404{bottom:389.028000px;}
.y69_c00404{bottom:389.268000px;}
.y68_c00404{bottom:389.659500px;}
.y67_c00404{bottom:389.866500px;}
.y66_c00404{bottom:390.337500px;}
.y65_c00404{bottom:390.763500px;}
.y64_c00404{bottom:391.395000px;}
.y63_c00404{bottom:391.776000px;}
.y62_c00404{bottom:392.043000px;}
.y61_c00404{bottom:411.106500px;}
.y60_c00404{bottom:411.999000px;}
.y5f_c00404{bottom:412.404000px;}
.y5e_c00404{bottom:412.765500px;}
.y5d_c00404{bottom:413.169000px;}
.y5c_c00404{bottom:413.373000px;}
.y5b_c00404{bottom:413.856000px;}
.y5a_c00404{bottom:414.204000px;}
.y59_c00404{bottom:414.309000px;}
.y58_c00404{bottom:414.991500px;}
.y57_c00404{bottom:434.647500px;}
.y56_c00404{bottom:434.994000px;}
.y55_c00404{bottom:435.387000px;}
.y54_c00404{bottom:435.454500px;}
.y53_c00404{bottom:436.072500px;}
.y52_c00404{bottom:436.612500px;}
.y51_c00404{bottom:437.130000px;}
.y50_c00404{bottom:458.926500px;}
.y4f_c00404{bottom:478.743000px;}
.y4e_c00404{bottom:479.427000px;}
.y4d_c00404{bottom:480.049500px;}
.y4c_c00404{bottom:480.532500px;}
.y4b_c00404{bottom:481.002000px;}
.y4a_c00404{bottom:481.284000px;}
.y49_c00404{bottom:481.504500px;}
.y48_c00404{bottom:482.155500px;}
.y47_c00404{bottom:482.763000px;}
.y46_c00404{bottom:503.043000px;}
.y45_c00404{bottom:525.580500px;}
.y44_c00404{bottom:548.418000px;}
.y43_c00404{bottom:571.033500px;}
.y42_c00404{bottom:571.737000px;}
.y41_c00404{bottom:572.041500px;}
.y40_c00404{bottom:572.527500px;}
.y3f_c00404{bottom:572.815500px;}
.y3e_c00404{bottom:573.408000px;}
.y3d_c00404{bottom:573.751500px;}
.y3c_c00404{bottom:594.628500px;}
.y3b_c00404{bottom:617.074500px;}
.y3a_c00404{bottom:659.721000px;}
.y39_c00404{bottom:659.991000px;}
.y38_c00404{bottom:660.645000px;}
.y37_c00404{bottom:660.703500px;}
.y36_c00404{bottom:660.984000px;}
.y35_c00404{bottom:661.494000px;}
.y34_c00404{bottom:662.007000px;}
.y33_c00404{bottom:662.305500px;}
.y32_c00404{bottom:681.963000px;}
.y31_c00404{bottom:682.159500px;}
.y30_c00404{bottom:683.065500px;}
.y2f_c00404{bottom:683.437500px;}
.y2e_c00404{bottom:683.886000px;}
.y2d_c00404{bottom:684.673500px;}
.y2c_c00404{bottom:685.101000px;}
.y2b_c00404{bottom:685.677000px;}
.y2a_c00404{bottom:686.067000px;}
.y29_c00404{bottom:705.138000px;}
.y28_c00404{bottom:706.104000px;}
.y27_c00404{bottom:706.471500px;}
.y26_c00404{bottom:706.791000px;}
.y25_c00404{bottom:707.374500px;}
.y24_c00404{bottom:708.031500px;}
.y23_c00404{bottom:708.298500px;}
.y22_c00404{bottom:708.786000px;}
.y21_c00404{bottom:709.015500px;}
.y20_c00404{bottom:726.934500px;}
.y1f_c00404{bottom:727.218000px;}
.y1e_c00404{bottom:727.620000px;}
.y1d_c00404{bottom:728.119500px;}
.y1c_c00404{bottom:728.625000px;}
.y1b_c00404{bottom:728.929500px;}
.y1a_c00404{bottom:729.480000px;}
.y19_c00404{bottom:729.703500px;}
.y18_c00404{bottom:729.957000px;}
.y17_c00404{bottom:730.227000px;}
.y16_c00404{bottom:751.005000px;}
.y15_c00404{bottom:773.662500px;}
.y14_c00404{bottom:774.465000px;}
.y13_c00404{bottom:774.721500px;}
.y12_c00404{bottom:775.120500px;}
.y11_c00404{bottom:775.303500px;}
.y10_c00404{bottom:775.617000px;}
.yf_c00404{bottom:775.993500px;}
.ye_c00404{bottom:776.247000px;}
.yd_c00404{bottom:795.190500px;}
.yc_c00404{bottom:795.793500px;}
.yb_c00404{bottom:796.161000px;}
.ya_c00404{bottom:796.414500px;}
.y9_c00404{bottom:796.605000px;}
.y8_c00404{bottom:797.193000px;}
.y7_c00404{bottom:797.581500px;}
.y6_c00404{bottom:797.851500px;}
.y5_c00404{bottom:798.120000px;}
.y4_c00404{bottom:820.615500px;}
.y3_c00404{bottom:863.539305px;}
.y2_c00404{bottom:864.298095px;}
.y1_c00404{bottom:866.431500px;}
.hb_c00404{height:52.500000px;}
.hc_c00404{height:59.850000px;}
.h7_c00404{height:61.950000px;}
.h8_c00404{height:64.050000px;}
.h6_c00404{height:67.200000px;}
.ha_c00404{height:68.250000px;}
.h5_c00404{height:70.350000px;}
.h4_c00404{height:71.400000px;}
.h9_c00404{height:72.450000px;}
.h3_c00404{height:73.500000px;}
.h2_c00404{height:93.454672px;}
.h1_c00404{height:1005.000000px;}
.h0_c00404{height:1005.150000px;}
.w0_c00404{width:715.200000px;}
.w1_c00404{width:715.500000px;}
.x0_c00404{left:0.000000px;}
.x88_c00404{left:86.274000px;}
.x8d_c00404{left:90.922500px;}
.x81_c00404{left:100.440000px;}
.x2b_c00404{left:106.645500px;}
.x3f_c00404{left:108.000000px;}
.x32_c00404{left:111.592500px;}
.x6c_c00404{left:112.837500px;}
.x44_c00404{left:118.800000px;}
.x22_c00404{left:124.654500px;}
.x13_c00404{left:125.979000px;}
.x19_c00404{left:127.171500px;}
.x4_c00404{left:128.250000px;}
.x89_c00404{left:139.917000px;}
.x33_c00404{left:141.537000px;}
.x7c_c00404{left:150.285000px;}
.x1a_c00404{left:151.471500px;}
.x5_c00404{left:153.630000px;}
.x40_c00404{left:156.060000px;}
.x4c_c00404{left:157.680000px;}
.x3a_c00404{left:159.988500px;}
.xb_c00404{left:161.652000px;}
.x5d_c00404{left:164.700000px;}
.x53_c00404{left:171.180000px;}
.x6_c00404{left:172.800000px;}
.x1_c00404{left:175.570500px;}
.x23_c00404{left:177.024000px;}
.x70_c00404{left:180.781500px;}
.x2c_c00404{left:182.359500px;}
.x61_c00404{left:184.558500px;}
.x34_c00404{left:185.865000px;}
.xc_c00404{left:195.357000px;}
.x24_c00404{left:199.402500px;}
.x7d_c00404{left:201.802500px;}
.x41_c00404{left:203.580000px;}
.x49_c00404{left:206.125500px;}
.x45_c00404{left:208.980000px;}
.x3b_c00404{left:216.958500px;}
.x35_c00404{left:218.764500px;}
.x4d_c00404{left:220.860000px;}
.x1b_c00404{left:226.801500px;}
.x5e_c00404{left:227.880000px;}
.x54_c00404{left:229.500000px;}
.x14_c00404{left:230.736000px;}
.x59_c00404{left:231.769500px;}
.x2d_c00404{left:232.848000px;}
.x74_c00404{left:235.032000px;}
.x7_c00404{left:240.570000px;}
.xd_c00404{left:243.967500px;}
.x7e_c00404{left:247.747500px;}
.x6d_c00404{left:249.082500px;}
.x15_c00404{left:251.023500px;}
.x4e_c00404{left:253.260000px;}
.x25_c00404{left:254.526000px;}
.x75_c00404{left:256.408500px;}
.x82_c00404{left:260.280000px;}
.x58_c00404{left:261.360000px;}
.x46_c00404{left:267.570000px;}
.x67_c00404{left:269.608500px;}
.x4a_c00404{left:270.627000px;}
.x8_c00404{left:272.970000px;}
.x6b_c00404{left:275.937000px;}
.x2e_c00404{left:277.716000px;}
.x36_c00404{left:279.343500px;}
.x71_c00404{left:281.472000px;}
.x26_c00404{left:284.989500px;}
.x64_c00404{left:289.237500px;}
.x16_c00404{left:295.302000px;}
.x4f_c00404{left:297.000000px;}
.x47_c00404{left:299.700000px;}
.x8e_c00404{left:300.775500px;}
.x2f_c00404{left:302.296500px;}
.x3c_c00404{left:304.747500px;}
.x1c_c00404{left:307.261500px;}
.x65_c00404{left:309.693000px;}
.x3d_c00404{left:311.190000px;}
.x5a_c00404{left:312.771000px;}
.x37_c00404{left:313.837500px;}
.xe_c00404{left:317.412000px;}
.x50_c00404{left:321.300000px;}
.x42_c00404{left:322.650000px;}
.x17_c00404{left:323.881500px;}
.x1d_c00404{left:325.081500px;}
.x76_c00404{left:328.722000px;}
.x30_c00404{left:330.553500px;}
.x9_c00404{left:332.370000px;}
.x27_c00404{left:335.485500px;}
.x83_c00404{left:339.390000px;}
.xf_c00404{left:341.137500px;}
.x38_c00404{left:342.484500px;}
.x5f_c00404{left:343.980000px;}
.x48_c00404{left:346.410000px;}
.x72_c00404{left:347.691000px;}
.x51_c00404{left:350.460000px;}
.x5b_c00404{left:353.001000px;}
.x4b_c00404{left:354.618000px;}
.xa_c00404{left:356.130000px;}
.x55_c00404{left:357.750000px;}
.x6e_c00404{left:359.248500px;}
.x62_c00404{left:364.392000px;}
.x8a_c00404{left:368.077500px;}
.x68_c00404{left:369.237000px;}
.x10_c00404{left:372.771000px;}
.x6f_c00404{left:380.304000px;}
.x3e_c00404{left:383.862000px;}
.x28_c00404{left:385.476000px;}
.x2_c00404{left:388.911000px;}
.x60_c00404{left:390.420000px;}
.x69_c00404{left:392.224500px;}
.x1e_c00404{left:394.201500px;}
.x56_c00404{left:395.280000px;}
.x43_c00404{left:397.710000px;}
.x78_c00404{left:398.862000px;}
.x63_c00404{left:402.948000px;}
.x31_c00404{left:404.892000px;}
.x52_c00404{left:409.590000px;}
.x18_c00404{left:412.981500px;}
.x57_c00404{left:414.180000px;}
.x11_c00404{left:418.639500px;}
.x29_c00404{left:425.653500px;}
.x39_c00404{left:427.243500px;}
.x73_c00404{left:428.632500px;}
.x1f_c00404{left:431.461500px;}
.x8b_c00404{left:432.646500px;}
.x6a_c00404{left:435.657000px;}
.x77_c00404{left:445.101000px;}
.x79_c00404{left:448.108500px;}
.x7a_c00404{left:450.544500px;}
.x2a_c00404{left:454.000500px;}
.x5c_c00404{left:461.802000px;}
.x3_c00404{left:464.790000px;}
.x20_c00404{left:470.611500px;}
.x84_c00404{left:484.920000px;}
.x7f_c00404{left:492.298500px;}
.x12_c00404{left:493.986000px;}
.x8c_c00404{left:497.907000px;}
.x85_c00404{left:504.630000px;}
.x66_c00404{left:515.934000px;}
.x8f_c00404{left:522.421500px;}
.x21_c00404{left:525.691500px;}
.x7b_c00404{left:536.985000px;}
.x86_c00404{left:549.990000px;}
.x80_c00404{left:558.952500px;}
.x87_c00404{left:589.950000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.fs9_c00404{font-size:46.666667pt;}
.fsa_c00404{font-size:53.200000pt;}
.fs5_c00404{font-size:55.066667pt;}
.fs6_c00404{font-size:56.933333pt;}
.fs4_c00404{font-size:59.733333pt;}
.fs8_c00404{font-size:60.666667pt;}
.fs3_c00404{font-size:62.533333pt;}
.fs2_c00404{font-size:63.466667pt;}
.fs7_c00404{font-size:64.400000pt;}
.fs1_c00404{font-size:65.333333pt;}
.fs0_c00404{font-size:83.070820pt;}
.y0_c00404{bottom:0.000000pt;}
.yb1_c00404{bottom:148.529333pt;}
.yb0_c00404{bottom:149.381333pt;}
.yaf_c00404{bottom:149.908000pt;}
.yae_c00404{bottom:151.213333pt;}
.yad_c00404{bottom:163.312000pt;}
.yac_c00404{bottom:164.105333pt;}
.yab_c00404{bottom:164.413333pt;}
.yaa_c00404{bottom:165.504000pt;}
.ya9_c00404{bottom:165.972000pt;}
.ya8_c00404{bottom:166.894667pt;}
.ya7_c00404{bottom:167.434667pt;}
.ya6_c00404{bottom:168.054667pt;}
.ya5_c00404{bottom:168.428000pt;}
.ya4_c00404{bottom:169.070667pt;}
.ya3_c00404{bottom:169.357333pt;}
.ya2_c00404{bottom:169.702667pt;}
.ya1_c00404{bottom:170.262667pt;}
.ya0_c00404{bottom:182.181333pt;}
.y9f_c00404{bottom:224.836000pt;}
.y9e_c00404{bottom:225.546667pt;}
.y9d_c00404{bottom:225.777333pt;}
.y9c_c00404{bottom:226.010667pt;}
.y9b_c00404{bottom:227.028000pt;}
.y9a_c00404{bottom:227.284000pt;}
.y99_c00404{bottom:227.718667pt;}
.y98_c00404{bottom:228.156000pt;}
.y97_c00404{bottom:228.436000pt;}
.y96_c00404{bottom:228.646667pt;}
.y95_c00404{bottom:229.196000pt;}
.y94_c00404{bottom:229.476000pt;}
.y93_c00404{bottom:245.120000pt;}
.y92_c00404{bottom:245.965333pt;}
.y91_c00404{bottom:245.989333pt;}
.y90_c00404{bottom:246.470667pt;}
.y8f_c00404{bottom:247.204000pt;}
.y8e_c00404{bottom:247.346667pt;}
.y8d_c00404{bottom:247.981333pt;}
.y8c_c00404{bottom:248.224000pt;}
.y8b_c00404{bottom:248.701333pt;}
.y8a_c00404{bottom:249.124000pt;}
.y89_c00404{bottom:265.609333pt;}
.y88_c00404{bottom:266.046667pt;}
.y87_c00404{bottom:266.370667pt;}
.y86_c00404{bottom:266.644000pt;}
.y85_c00404{bottom:266.905333pt;}
.y84_c00404{bottom:267.286667pt;}
.y83_c00404{bottom:267.477333pt;}
.y82_c00404{bottom:267.700000pt;}
.y81_c00404{bottom:268.201333pt;}
.y80_c00404{bottom:268.438667pt;}
.y7f_c00404{bottom:286.112000pt;}
.y7e_c00404{bottom:286.348000pt;}
.y7d_c00404{bottom:286.534667pt;}
.y7c_c00404{bottom:286.692000pt;}
.y7b_c00404{bottom:286.924000pt;}
.y7a_c00404{bottom:287.394667pt;}
.y79_c00404{bottom:287.621333pt;}
.y78_c00404{bottom:287.952000pt;}
.y77_c00404{bottom:288.112000pt;}
.y76_c00404{bottom:288.484000pt;}
.y75_c00404{bottom:305.986667pt;}
.y74_c00404{bottom:306.262667pt;}
.y73_c00404{bottom:306.430667pt;}
.y72_c00404{bottom:306.650667pt;}
.y71_c00404{bottom:306.912000pt;}
.y70_c00404{bottom:307.312000pt;}
.y6f_c00404{bottom:307.542667pt;}
.y6e_c00404{bottom:307.992000pt;}
.y6d_c00404{bottom:308.278667pt;}
.y6c_c00404{bottom:308.401333pt;}
.y6b_c00404{bottom:327.005333pt;}
.y6a_c00404{bottom:345.802667pt;}
.y69_c00404{bottom:346.016000pt;}
.y68_c00404{bottom:346.364000pt;}
.y67_c00404{bottom:346.548000pt;}
.y66_c00404{bottom:346.966667pt;}
.y65_c00404{bottom:347.345333pt;}
.y64_c00404{bottom:347.906667pt;}
.y63_c00404{bottom:348.245333pt;}
.y62_c00404{bottom:348.482667pt;}
.y61_c00404{bottom:365.428000pt;}
.y60_c00404{bottom:366.221333pt;}
.y5f_c00404{bottom:366.581333pt;}
.y5e_c00404{bottom:366.902667pt;}
.y5d_c00404{bottom:367.261333pt;}
.y5c_c00404{bottom:367.442667pt;}
.y5b_c00404{bottom:367.872000pt;}
.y5a_c00404{bottom:368.181333pt;}
.y59_c00404{bottom:368.274667pt;}
.y58_c00404{bottom:368.881333pt;}
.y57_c00404{bottom:386.353333pt;}
.y56_c00404{bottom:386.661333pt;}
.y55_c00404{bottom:387.010667pt;}
.y54_c00404{bottom:387.070667pt;}
.y53_c00404{bottom:387.620000pt;}
.y52_c00404{bottom:388.100000pt;}
.y51_c00404{bottom:388.560000pt;}
.y50_c00404{bottom:407.934667pt;}
.y4f_c00404{bottom:425.549333pt;}
.y4e_c00404{bottom:426.157333pt;}
.y4d_c00404{bottom:426.710667pt;}
.y4c_c00404{bottom:427.140000pt;}
.y4b_c00404{bottom:427.557333pt;}
.y4a_c00404{bottom:427.808000pt;}
.y49_c00404{bottom:428.004000pt;}
.y48_c00404{bottom:428.582667pt;}
.y47_c00404{bottom:429.122667pt;}
.y46_c00404{bottom:447.149333pt;}
.y45_c00404{bottom:467.182667pt;}
.y44_c00404{bottom:487.482667pt;}
.y43_c00404{bottom:507.585333pt;}
.y42_c00404{bottom:508.210667pt;}
.y41_c00404{bottom:508.481333pt;}
.y40_c00404{bottom:508.913333pt;}
.y3f_c00404{bottom:509.169333pt;}
.y3e_c00404{bottom:509.696000pt;}
.y3d_c00404{bottom:510.001333pt;}
.y3c_c00404{bottom:528.558667pt;}
.y3b_c00404{bottom:548.510667pt;}
.y3a_c00404{bottom:586.418667pt;}
.y39_c00404{bottom:586.658667pt;}
.y38_c00404{bottom:587.240000pt;}
.y37_c00404{bottom:587.292000pt;}
.y36_c00404{bottom:587.541333pt;}
.y35_c00404{bottom:587.994667pt;}
.y34_c00404{bottom:588.450667pt;}
.y33_c00404{bottom:588.716000pt;}
.y32_c00404{bottom:606.189333pt;}
.y31_c00404{bottom:606.364000pt;}
.y30_c00404{bottom:607.169333pt;}
.y2f_c00404{bottom:607.500000pt;}
.y2e_c00404{bottom:607.898667pt;}
.y2d_c00404{bottom:608.598667pt;}
.y2c_c00404{bottom:608.978667pt;}
.y2b_c00404{bottom:609.490667pt;}
.y2a_c00404{bottom:609.837333pt;}
.y29_c00404{bottom:626.789333pt;}
.y28_c00404{bottom:627.648000pt;}
.y27_c00404{bottom:627.974667pt;}
.y26_c00404{bottom:628.258667pt;}
.y25_c00404{bottom:628.777333pt;}
.y24_c00404{bottom:629.361333pt;}
.y23_c00404{bottom:629.598667pt;}
.y22_c00404{bottom:630.032000pt;}
.y21_c00404{bottom:630.236000pt;}
.y20_c00404{bottom:646.164000pt;}
.y1f_c00404{bottom:646.416000pt;}
.y1e_c00404{bottom:646.773333pt;}
.y1d_c00404{bottom:647.217333pt;}
.y1c_c00404{bottom:647.666667pt;}
.y1b_c00404{bottom:647.937333pt;}
.y1a_c00404{bottom:648.426667pt;}
.y19_c00404{bottom:648.625333pt;}
.y18_c00404{bottom:648.850667pt;}
.y17_c00404{bottom:649.090667pt;}
.y16_c00404{bottom:667.560000pt;}
.y15_c00404{bottom:687.700000pt;}
.y14_c00404{bottom:688.413333pt;}
.y13_c00404{bottom:688.641333pt;}
.y12_c00404{bottom:688.996000pt;}
.y11_c00404{bottom:689.158667pt;}
.y10_c00404{bottom:689.437333pt;}
.yf_c00404{bottom:689.772000pt;}
.ye_c00404{bottom:689.997333pt;}
.yd_c00404{bottom:706.836000pt;}
.yc_c00404{bottom:707.372000pt;}
.yb_c00404{bottom:707.698667pt;}
.ya_c00404{bottom:707.924000pt;}
.y9_c00404{bottom:708.093333pt;}
.y8_c00404{bottom:708.616000pt;}
.y7_c00404{bottom:708.961333pt;}
.y6_c00404{bottom:709.201333pt;}
.y5_c00404{bottom:709.440000pt;}
.y4_c00404{bottom:729.436000pt;}
.y3_c00404{bottom:767.590493pt;}
.y2_c00404{bottom:768.264973pt;}
.y1_c00404{bottom:770.161333pt;}
.hb_c00404{height:46.666667pt;}
.hc_c00404{height:53.200000pt;}
.h7_c00404{height:55.066667pt;}
.h8_c00404{height:56.933333pt;}
.h6_c00404{height:59.733333pt;}
.ha_c00404{height:60.666667pt;}
.h5_c00404{height:62.533333pt;}
.h4_c00404{height:63.466667pt;}
.h9_c00404{height:64.400000pt;}
.h3_c00404{height:65.333333pt;}
.h2_c00404{height:83.070820pt;}
.h1_c00404{height:893.333333pt;}
.h0_c00404{height:893.466667pt;}
.w0_c00404{width:635.733333pt;}
.w1_c00404{width:636.000000pt;}
.x0_c00404{left:0.000000pt;}
.x88_c00404{left:76.688000pt;}
.x8d_c00404{left:80.820000pt;}
.x81_c00404{left:89.280000pt;}
.x2b_c00404{left:94.796000pt;}
.x3f_c00404{left:96.000000pt;}
.x32_c00404{left:99.193333pt;}
.x6c_c00404{left:100.300000pt;}
.x44_c00404{left:105.600000pt;}
.x22_c00404{left:110.804000pt;}
.x13_c00404{left:111.981333pt;}
.x19_c00404{left:113.041333pt;}
.x4_c00404{left:114.000000pt;}
.x89_c00404{left:124.370667pt;}
.x33_c00404{left:125.810667pt;}
.x7c_c00404{left:133.586667pt;}
.x1a_c00404{left:134.641333pt;}
.x5_c00404{left:136.560000pt;}
.x40_c00404{left:138.720000pt;}
.x4c_c00404{left:140.160000pt;}
.x3a_c00404{left:142.212000pt;}
.xb_c00404{left:143.690667pt;}
.x5d_c00404{left:146.400000pt;}
.x53_c00404{left:152.160000pt;}
.x6_c00404{left:153.600000pt;}
.x1_c00404{left:156.062667pt;}
.x23_c00404{left:157.354667pt;}
.x70_c00404{left:160.694667pt;}
.x2c_c00404{left:162.097333pt;}
.x61_c00404{left:164.052000pt;}
.x34_c00404{left:165.213333pt;}
.xc_c00404{left:173.650667pt;}
.x24_c00404{left:177.246667pt;}
.x7d_c00404{left:179.380000pt;}
.x41_c00404{left:180.960000pt;}
.x49_c00404{left:183.222667pt;}
.x45_c00404{left:185.760000pt;}
.x3b_c00404{left:192.852000pt;}
.x35_c00404{left:194.457333pt;}
.x4d_c00404{left:196.320000pt;}
.x1b_c00404{left:201.601333pt;}
.x5e_c00404{left:202.560000pt;}
.x54_c00404{left:204.000000pt;}
.x14_c00404{left:205.098667pt;}
.x59_c00404{left:206.017333pt;}
.x2d_c00404{left:206.976000pt;}
.x74_c00404{left:208.917333pt;}
.x7_c00404{left:213.840000pt;}
.xd_c00404{left:216.860000pt;}
.x7e_c00404{left:220.220000pt;}
.x6d_c00404{left:221.406667pt;}
.x15_c00404{left:223.132000pt;}
.x4e_c00404{left:225.120000pt;}
.x25_c00404{left:226.245333pt;}
.x75_c00404{left:227.918667pt;}
.x82_c00404{left:231.360000pt;}
.x58_c00404{left:232.320000pt;}
.x46_c00404{left:237.840000pt;}
.x67_c00404{left:239.652000pt;}
.x4a_c00404{left:240.557333pt;}
.x8_c00404{left:242.640000pt;}
.x6b_c00404{left:245.277333pt;}
.x2e_c00404{left:246.858667pt;}
.x36_c00404{left:248.305333pt;}
.x71_c00404{left:250.197333pt;}
.x26_c00404{left:253.324000pt;}
.x64_c00404{left:257.100000pt;}
.x16_c00404{left:262.490667pt;}
.x4f_c00404{left:264.000000pt;}
.x47_c00404{left:266.400000pt;}
.x8e_c00404{left:267.356000pt;}
.x2f_c00404{left:268.708000pt;}
.x3c_c00404{left:270.886667pt;}
.x1c_c00404{left:273.121333pt;}
.x65_c00404{left:275.282667pt;}
.x3d_c00404{left:276.613333pt;}
.x5a_c00404{left:278.018667pt;}
.x37_c00404{left:278.966667pt;}
.xe_c00404{left:282.144000pt;}
.x50_c00404{left:285.600000pt;}
.x42_c00404{left:286.800000pt;}
.x17_c00404{left:287.894667pt;}
.x1d_c00404{left:288.961333pt;}
.x76_c00404{left:292.197333pt;}
.x30_c00404{left:293.825333pt;}
.x9_c00404{left:295.440000pt;}
.x27_c00404{left:298.209333pt;}
.x83_c00404{left:301.680000pt;}
.xf_c00404{left:303.233333pt;}
.x38_c00404{left:304.430667pt;}
.x5f_c00404{left:305.760000pt;}
.x48_c00404{left:307.920000pt;}
.x72_c00404{left:309.058667pt;}
.x51_c00404{left:311.520000pt;}
.x5b_c00404{left:313.778667pt;}
.x4b_c00404{left:315.216000pt;}
.xa_c00404{left:316.560000pt;}
.x55_c00404{left:318.000000pt;}
.x6e_c00404{left:319.332000pt;}
.x62_c00404{left:323.904000pt;}
.x8a_c00404{left:327.180000pt;}
.x68_c00404{left:328.210667pt;}
.x10_c00404{left:331.352000pt;}
.x6f_c00404{left:338.048000pt;}
.x3e_c00404{left:341.210667pt;}
.x28_c00404{left:342.645333pt;}
.x2_c00404{left:345.698667pt;}
.x60_c00404{left:347.040000pt;}
.x69_c00404{left:348.644000pt;}
.x1e_c00404{left:350.401333pt;}
.x56_c00404{left:351.360000pt;}
.x43_c00404{left:353.520000pt;}
.x78_c00404{left:354.544000pt;}
.x63_c00404{left:358.176000pt;}
.x31_c00404{left:359.904000pt;}
.x52_c00404{left:364.080000pt;}
.x18_c00404{left:367.094667pt;}
.x57_c00404{left:368.160000pt;}
.x11_c00404{left:372.124000pt;}
.x29_c00404{left:378.358667pt;}
.x39_c00404{left:379.772000pt;}
.x73_c00404{left:381.006667pt;}
.x1f_c00404{left:383.521333pt;}
.x8b_c00404{left:384.574667pt;}
.x6a_c00404{left:387.250667pt;}
.x77_c00404{left:395.645333pt;}
.x79_c00404{left:398.318667pt;}
.x7a_c00404{left:400.484000pt;}
.x2a_c00404{left:403.556000pt;}
.x5c_c00404{left:410.490667pt;}
.x3_c00404{left:413.146667pt;}
.x20_c00404{left:418.321333pt;}
.x84_c00404{left:431.040000pt;}
.x7f_c00404{left:437.598667pt;}
.x12_c00404{left:439.098667pt;}
.x8c_c00404{left:442.584000pt;}
.x85_c00404{left:448.560000pt;}
.x66_c00404{left:458.608000pt;}
.x8f_c00404{left:464.374667pt;}
.x21_c00404{left:467.281333pt;}
.x7b_c00404{left:477.320000pt;}
.x86_c00404{left:488.880000pt;}
.x80_c00404{left:496.846667pt;}
.x87_c00404{left:524.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_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_4ab86c84425994a9e06b01c2.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;}
.m4_c00405{transform:matrix(0.008745,-0.000087,0.002500,0.249988,0,0);-ms-transform:matrix(0.008745,-0.000087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.008745,-0.000087,0.002500,0.249988,0,0);}
.m96_c00405{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);}
.m5d_c00405{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);}
.mc5_c00405{transform:matrix(0.014259,-0.000157,0.002750,0.249985,0,0);-ms-transform:matrix(0.014259,-0.000157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014259,-0.000157,0.002750,0.249985,0,0);}
.ma9_c00405{transform:matrix(0.014700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014700,0.000000,0.000000,0.250000,0,0);}
.mae_c00405{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);}
.m107_c00405{transform:matrix(0.017755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017755,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.020409,-0.000184,0.002250,0.249990,0,0);-ms-transform:matrix(0.020409,-0.000184,0.002250,0.249990,0,0);-webkit-transform:matrix(0.020409,-0.000184,0.002250,0.249990,0,0);}
.m9b_c00405{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);}
.mfa_c00405{transform:matrix(0.039205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039205,0.000000,0.000000,0.250000,0,0);}
.meb_c00405{transform:matrix(0.051772,-0.000569,0.002750,0.249985,0,0);-ms-transform:matrix(0.051772,-0.000569,0.002750,0.249985,0,0);-webkit-transform:matrix(0.051772,-0.000569,0.002750,0.249985,0,0);}
.m2c_c00405{transform:matrix(0.063786,-0.000702,0.002750,0.249985,0,0);-ms-transform:matrix(0.063786,-0.000702,0.002750,0.249985,0,0);-webkit-transform:matrix(0.063786,-0.000702,0.002750,0.249985,0,0);}
.m47_c00405{transform:matrix(0.067030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067030,0.000000,0.000000,0.250000,0,0);}
.mec_c00405{transform:matrix(0.073095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073095,0.000000,0.000000,0.250000,0,0);}
.m5e_c00405{transform:matrix(0.074535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074535,0.000000,0.000000,0.250000,0,0);}
.md8_c00405{transform:matrix(0.087835,-0.000966,0.002750,0.249985,0,0);-ms-transform:matrix(0.087835,-0.000966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.087835,-0.000966,0.002750,0.249985,0,0);}
.m9a_c00405{transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088895,0.000000,0.000000,0.250000,0,0);}
.mff_c00405{transform:matrix(0.093370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093370,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.106389,-0.001170,0.002750,0.249985,0,0);-ms-transform:matrix(0.106389,-0.001170,0.002750,0.249985,0,0);-webkit-transform:matrix(0.106389,-0.001170,0.002750,0.249985,0,0);}
.mf6_c00405{transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);}
.m113_c00405{transform:matrix(0.140495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140495,0.000000,0.000000,0.250000,0,0);}
.ma8_c00405{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);}
.mab_c00405{transform:matrix(0.146005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146005,0.000000,0.000000,0.250000,0,0);}
.m7d_c00405{transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);}
.m4d_c00405{transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);}
.m79_c00405{transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151890,0.000000,0.000000,0.250000,0,0);}
.ma1_c00405{transform:matrix(0.153810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153810,0.000000,0.000000,0.250000,0,0);}
.m6a_c00405{transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);}
.ma3_c00405{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00405{transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);}
.m65_c00405{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);}
.m116_c00405{transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156420,0.000000,0.000000,0.250000,0,0);}
.m71_c00405{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);}
.m84_c00405{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);}
.m6c_c00405{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.mcf_c00405{transform:matrix(0.157865,-0.001737,0.002750,0.249985,0,0);-ms-transform:matrix(0.157865,-0.001737,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157865,-0.001737,0.002750,0.249985,0,0);}
.mc3_c00405{transform:matrix(0.159435,-0.001754,0.002750,0.249985,0,0);-ms-transform:matrix(0.159435,-0.001754,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159435,-0.001754,0.002750,0.249985,0,0);}
.m8e_c00405{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);}
.m39_c00405{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);}
.m50_c00405{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);}
.m7a_c00405{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);}
.me7_c00405{transform:matrix(0.163170,-0.001795,0.002750,0.249985,0,0);-ms-transform:matrix(0.163170,-0.001795,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163170,-0.001795,0.002750,0.249985,0,0);}
.m20_c00405{transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);-ms-transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163375,-0.001797,0.002750,0.249985,0,0);}
.m88_c00405{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);}
.m16_c00405{transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);-ms-transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);}
.m67_c00405{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);}
.m66_c00405{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);}
.md2_c00405{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);}
.m27_c00405{transform:matrix(0.167870,-0.001847,0.002750,0.249985,0,0);-ms-transform:matrix(0.167870,-0.001847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167870,-0.001847,0.002750,0.249985,0,0);}
.m60_c00405{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);}
.ma4_c00405{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);}
.m4b_c00405{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);}
.m82_c00405{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);}
.m5a_c00405{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);}
.m2f_c00405{transform:matrix(0.170595,-0.001877,0.002750,0.249985,0,0);-ms-transform:matrix(0.170595,-0.001877,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170595,-0.001877,0.002750,0.249985,0,0);}
.m51_c00405{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);}
.m118_c00405{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);}
.me6_c00405{transform:matrix(0.171460,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171460,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171460,-0.001886,0.002750,0.249985,0,0);}
.m78_c00405{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);}
.mbd_c00405{transform:matrix(0.171715,-0.001889,0.002750,0.249985,0,0);-ms-transform:matrix(0.171715,-0.001889,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171715,-0.001889,0.002750,0.249985,0,0);}
.m63_c00405{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);}
.m3f_c00405{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);}
.m109_c00405{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);}
.mbf_c00405{transform:matrix(0.173025,-0.001903,0.002750,0.249985,0,0);-ms-transform:matrix(0.173025,-0.001903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173025,-0.001903,0.002750,0.249985,0,0);}
.m68_c00405{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);}
.m37_c00405{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);}
.mce_c00405{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);}
.ma5_c00405{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);}
.m6e_c00405{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);}
.m3e_c00405{transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.179928,-0.001619,0.002250,0.249990,0,0);-ms-transform:matrix(0.179928,-0.001619,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179928,-0.001619,0.002250,0.249990,0,0);}
.m5b_c00405{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);}
.m111_c00405{transform:matrix(0.180155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180155,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.180334,-0.001984,0.002750,0.249985,0,0);-ms-transform:matrix(0.180334,-0.001984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180334,-0.001984,0.002750,0.249985,0,0);}
.m70_c00405{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_c00405{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);}
.mdd_c00405{transform:matrix(0.180694,-0.001988,0.002750,0.249985,0,0);-ms-transform:matrix(0.180694,-0.001988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180694,-0.001988,0.002750,0.249985,0,0);}
.m91_c00405{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);}
.m10b_c00405{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);}
.m108_c00405{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);}
.m75_c00405{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);}
.m30_c00405{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);}
.m8d_c00405{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);}
.mb6_c00405{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);}
.m115_c00405{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);}
.m9e_c00405{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);}
.m45_c00405{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);}
.m6b_c00405{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);}
.m33_c00405{transform:matrix(0.184344,-0.002028,0.002750,0.249985,0,0);-ms-transform:matrix(0.184344,-0.002028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184344,-0.002028,0.002750,0.249985,0,0);}
.m36_c00405{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);}
.m10f_c00405{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);}
.ma7_c00405{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);}
.md9_c00405{transform:matrix(0.185279,-0.002038,0.002750,0.249985,0,0);-ms-transform:matrix(0.185279,-0.002038,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185279,-0.002038,0.002750,0.249985,0,0);}
.mc0_c00405{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);}
.m3a_c00405{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);}
.m4f_c00405{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);}
.m72_c00405{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);}
.m43_c00405{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);}
.m90_c00405{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);}
.m4e_c00405{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);}
.ma2_c00405{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);}
.m89_c00405{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);}
.m99_c00405{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);}
.m54_c00405{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_c00405{transform:matrix(0.187254,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187254,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187254,-0.002060,0.002750,0.249985,0,0);}
.m1d_c00405{transform:matrix(0.187774,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187774,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187774,-0.002066,0.002750,0.249985,0,0);}
.m9c_c00405{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);}
.m61_c00405{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_c00405{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);}
.mbe_c00405{transform:matrix(0.189449,-0.002084,0.002750,0.249985,0,0);-ms-transform:matrix(0.189449,-0.002084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189449,-0.002084,0.002750,0.249985,0,0);}
.m8a_c00405{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);}
.m86_c00405{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);}
.m8f_c00405{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);}
.m4a_c00405{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{transform:matrix(0.190618,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190618,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190618,-0.002097,0.002750,0.249985,0,0);}
.mc2_c00405{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);}
.m117_c00405{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);}
.m92_c00405{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);}
.m53_c00405{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);}
.mc9_c00405{transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);-ms-transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);}
.m6d_c00405{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);}
.m95_c00405{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);}
.m18_c00405{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);}
.md1_c00405{transform:matrix(0.194238,-0.002137,0.002750,0.249985,0,0);-ms-transform:matrix(0.194238,-0.002137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194238,-0.002137,0.002750,0.249985,0,0);}
.m8c_c00405{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);}
.m94_c00405{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);}
.m38_c00405{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);}
.m1e_c00405{transform:matrix(0.195098,-0.002146,0.002750,0.249985,0,0);-ms-transform:matrix(0.195098,-0.002146,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195098,-0.002146,0.002750,0.249985,0,0);}
.m112_c00405{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);}
.m10d_c00405{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);}
.m8_c00405{transform:matrix(0.195832,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195832,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195832,-0.001762,0.002250,0.249990,0,0);}
.me5_c00405{transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);-ms-transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196008,-0.002156,0.002750,0.249985,0,0);}
.mac_c00405{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);}
.m9f_c00405{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);}
.m85_c00405{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);}
.m9_c00405{transform:matrix(0.196932,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196932,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196932,-0.001772,0.002250,0.249990,0,0);}
.m46_c00405{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);}
.m3b_c00405{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);}
.m77_c00405{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);}
.mf3_c00405{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);}
.m10_c00405{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);}
.m23_c00405{transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198943,-0.002188,0.002750,0.249985,0,0);}
.mdc_c00405{transform:matrix(0.198988,-0.002189,0.002750,0.249985,0,0);-ms-transform:matrix(0.198988,-0.002189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198988,-0.002189,0.002750,0.249985,0,0);}
.m1f_c00405{transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);}
.m83_c00405{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);}
.mf4_c00405{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);}
.m3d_c00405{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);}
.m10a_c00405{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);}
.m97_c00405{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);}
.md7_c00405{transform:matrix(0.200533,-0.002206,0.002750,0.249985,0,0);-ms-transform:matrix(0.200533,-0.002206,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200533,-0.002206,0.002750,0.249985,0,0);}
.m7c_c00405{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);}
.m4c_c00405{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);}
.m1a_c00405{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m17_c00405{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);}
.m10c_c00405{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);}
.mb4_c00405{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);}
.mf5_c00405{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);}
.m93_c00405{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);}
.mf1_c00405{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);}
.mf0_c00405{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);}
.m32_c00405{transform:matrix(0.203923,-0.002243,0.002750,0.249985,0,0);-ms-transform:matrix(0.203923,-0.002243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203923,-0.002243,0.002750,0.249985,0,0);}
.md3_c00405{transform:matrix(0.204108,-0.002245,0.002750,0.249985,0,0);-ms-transform:matrix(0.204108,-0.002245,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204108,-0.002245,0.002750,0.249985,0,0);}
.m57_c00405{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);}
.maf_c00405{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);}
.mbb_c00405{transform:matrix(0.204783,-0.002253,0.002750,0.249985,0,0);-ms-transform:matrix(0.204783,-0.002253,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204783,-0.002253,0.002750,0.249985,0,0);}
.m7b_c00405{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);}
.m87_c00405{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);}
.m55_c00405{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);}
.m14_c00405{transform:matrix(0.206070,-0.002885,0.003500,0.249976,0,0);-ms-transform:matrix(0.206070,-0.002885,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206070,-0.002885,0.003500,0.249976,0,0);}
.m114_c00405{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);}
.m59_c00405{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);}
.m31_c00405{transform:matrix(0.207787,-0.002286,0.002750,0.249985,0,0);-ms-transform:matrix(0.207787,-0.002286,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207787,-0.002286,0.002750,0.249985,0,0);}
.m28_c00405{transform:matrix(0.209032,-0.002299,0.002750,0.249985,0,0);-ms-transform:matrix(0.209032,-0.002299,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209032,-0.002299,0.002750,0.249985,0,0);}
.m9d_c00405{transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209070,0.000000,0.000000,0.250000,0,0);}
.mdb_c00405{transform:matrix(0.209687,-0.002307,0.002750,0.249985,0,0);-ms-transform:matrix(0.209687,-0.002307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209687,-0.002307,0.002750,0.249985,0,0);}
.m74_c00405{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);}
.m98_c00405{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);}
.m62_c00405{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);}
.m2a_c00405{transform:matrix(0.211972,-0.002332,0.002750,0.249985,0,0);-ms-transform:matrix(0.211972,-0.002332,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211972,-0.002332,0.002750,0.249985,0,0);}
.mfc_c00405{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);}
.m69_c00405{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);}
.m25_c00405{transform:matrix(0.213162,-0.002345,0.002750,0.249985,0,0);-ms-transform:matrix(0.213162,-0.002345,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213162,-0.002345,0.002750,0.249985,0,0);}
.mf7_c00405{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);}
.m52_c00405{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);}
.mb_c00405{transform:matrix(0.214726,-0.001933,0.002250,0.249990,0,0);-ms-transform:matrix(0.214726,-0.001933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214726,-0.001933,0.002250,0.249990,0,0);}
.mb8_c00405{transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);-ms-transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214747,-0.002362,0.002750,0.249985,0,0);}
.m2e_c00405{transform:matrix(0.214752,-0.002362,0.002750,0.249985,0,0);-ms-transform:matrix(0.214752,-0.002362,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214752,-0.002362,0.002750,0.249985,0,0);}
.m2b_c00405{transform:matrix(0.214902,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214902,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214902,-0.002364,0.002750,0.249985,0,0);}
.mef_c00405{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);}
.m11_c00405{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);}
.mf2_c00405{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);}
.m42_c00405{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);}
.m29_c00405{transform:matrix(0.218277,-0.002401,0.002750,0.249985,0,0);-ms-transform:matrix(0.218277,-0.002401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218277,-0.002401,0.002750,0.249985,0,0);}
.m13_c00405{transform:matrix(0.218524,-0.003059,0.003500,0.249976,0,0);-ms-transform:matrix(0.218524,-0.003059,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218524,-0.003059,0.003500,0.249976,0,0);}
.m110_c00405{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);}
.mf_c00405{transform:matrix(0.218944,-0.003065,0.003500,0.249976,0,0);-ms-transform:matrix(0.218944,-0.003065,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218944,-0.003065,0.003500,0.249976,0,0);}
.mf8_c00405{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);}
.m40_c00405{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);}
.m24_c00405{transform:matrix(0.220747,-0.002428,0.002750,0.249985,0,0);-ms-transform:matrix(0.220747,-0.002428,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220747,-0.002428,0.002750,0.249985,0,0);}
.m22_c00405{transform:matrix(0.222772,-0.002450,0.002750,0.249985,0,0);-ms-transform:matrix(0.222772,-0.002450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222772,-0.002450,0.002750,0.249985,0,0);}
.m73_c00405{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);}
.mb5_c00405{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);}
.m102_c00405{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.mee_c00405{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);}
.m3c_c00405{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);}
.m7_c00405{transform:matrix(0.226486,-0.002038,0.002250,0.249990,0,0);-ms-transform:matrix(0.226486,-0.002038,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226486,-0.002038,0.002250,0.249990,0,0);}
.m48_c00405{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);}
.m76_c00405{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);}
.m35_c00405{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);}
.m6_c00405{transform:matrix(0.229936,-0.002069,0.002250,0.249990,0,0);-ms-transform:matrix(0.229936,-0.002069,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229936,-0.002069,0.002250,0.249990,0,0);}
.mfd_c00405{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_c00405{transform:matrix(0.232136,-0.002553,0.002750,0.249985,0,0);-ms-transform:matrix(0.232136,-0.002553,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232136,-0.002553,0.002750,0.249985,0,0);}
.m19_c00405{transform:matrix(0.232266,-0.002555,0.002750,0.249985,0,0);-ms-transform:matrix(0.232266,-0.002555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232266,-0.002555,0.002750,0.249985,0,0);}
.mad_c00405{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);}
.m58_c00405{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);}
.me0_c00405{transform:matrix(0.234126,-0.002575,0.002750,0.249985,0,0);-ms-transform:matrix(0.234126,-0.002575,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234126,-0.002575,0.002750,0.249985,0,0);}
.m5f_c00405{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);}
.m64_c00405{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);}
.m56_c00405{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);}
.m49_c00405{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);}
.mde_c00405{transform:matrix(0.238756,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238756,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238756,-0.002626,0.002750,0.249985,0,0);}
.mc6_c00405{transform:matrix(0.239745,-0.002637,0.002750,0.249985,0,0);-ms-transform:matrix(0.239745,-0.002637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239745,-0.002637,0.002750,0.249985,0,0);}
.me4_c00405{transform:matrix(0.240150,-0.002642,0.002750,0.249985,0,0);-ms-transform:matrix(0.240150,-0.002642,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240150,-0.002642,0.002750,0.249985,0,0);}
.mb3_c00405{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);}
.mfe_c00405{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);}
.m12_c00405{transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);-ms-transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);}
.m7f_c00405{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);}
.md4_c00405{transform:matrix(0.245430,-0.002700,0.002750,0.249985,0,0);-ms-transform:matrix(0.245430,-0.002700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245430,-0.002700,0.002750,0.249985,0,0);}
.m44_c00405{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00405{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.mea_c00405{transform:matrix(0.252345,-0.002776,0.002750,0.249985,0,0);-ms-transform:matrix(0.252345,-0.002776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252345,-0.002776,0.002750,0.249985,0,0);}
.m5c_c00405{transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);}
.mca_c00405{transform:matrix(0.259159,-0.002851,0.002750,0.249985,0,0);-ms-transform:matrix(0.259159,-0.002851,0.002750,0.249985,0,0);-webkit-transform:matrix(0.259159,-0.002851,0.002750,0.249985,0,0);}
.mba_c00405{transform:matrix(0.261424,-0.002876,0.002750,0.249985,0,0);-ms-transform:matrix(0.261424,-0.002876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261424,-0.002876,0.002750,0.249985,0,0);}
.mdf_c00405{transform:matrix(0.262804,-0.002891,0.002750,0.249985,0,0);-ms-transform:matrix(0.262804,-0.002891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262804,-0.002891,0.002750,0.249985,0,0);}
.me8_c00405{transform:matrix(0.263669,-0.002900,0.002750,0.249985,0,0);-ms-transform:matrix(0.263669,-0.002900,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263669,-0.002900,0.002750,0.249985,0,0);}
.m81_c00405{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);-ms-transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);}
.m11c_c00405{transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270230,0.000000,0.000000,0.250000,0,0);}
.m100_c00405{transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);}
.mcc_c00405{transform:matrix(0.274968,-0.003025,0.002750,0.249985,0,0);-ms-transform:matrix(0.274968,-0.003025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274968,-0.003025,0.002750,0.249985,0,0);}
.m2d_c00405{transform:matrix(0.275948,-0.003035,0.002750,0.249985,0,0);-ms-transform:matrix(0.275948,-0.003035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275948,-0.003035,0.002750,0.249985,0,0);}
.md0_c00405{transform:matrix(0.278938,-0.003068,0.002750,0.249985,0,0);-ms-transform:matrix(0.278938,-0.003068,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278938,-0.003068,0.002750,0.249985,0,0);}
.me1_c00405{transform:matrix(0.282943,-0.003112,0.002750,0.249985,0,0);-ms-transform:matrix(0.282943,-0.003112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282943,-0.003112,0.002750,0.249985,0,0);}
.m80_c00405{transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);}
.mcb_c00405{transform:matrix(0.290852,-0.003199,0.002750,0.249985,0,0);-ms-transform:matrix(0.290852,-0.003199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290852,-0.003199,0.002750,0.249985,0,0);}
.maa_c00405{transform:matrix(0.293620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293620,0.000000,0.000000,0.250000,0,0);}
.m7e_c00405{transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);}
.mc4_c00405{transform:matrix(0.308676,-0.003395,0.002750,0.249985,0,0);-ms-transform:matrix(0.308676,-0.003395,0.002750,0.249985,0,0);-webkit-transform:matrix(0.308676,-0.003395,0.002750,0.249985,0,0);}
.md5_c00405{transform:matrix(0.309141,-0.003401,0.002750,0.249985,0,0);-ms-transform:matrix(0.309141,-0.003401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.309141,-0.003401,0.002750,0.249985,0,0);}
.m119_c00405{transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312570,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.314044,-0.003140,0.002500,0.249988,0,0);-ms-transform:matrix(0.314044,-0.003140,0.002500,0.249988,0,0);-webkit-transform:matrix(0.314044,-0.003140,0.002500,0.249988,0,0);}
.m103_c00405{transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319575,0.000000,0.000000,0.250000,0,0);}
.mc1_c00405{transform:matrix(0.327710,-0.003605,0.002750,0.249985,0,0);-ms-transform:matrix(0.327710,-0.003605,0.002750,0.249985,0,0);-webkit-transform:matrix(0.327710,-0.003605,0.002750,0.249985,0,0);}
.m15_c00405{transform:matrix(0.330340,-0.003634,0.002750,0.249985,0,0);-ms-transform:matrix(0.330340,-0.003634,0.002750,0.249985,0,0);-webkit-transform:matrix(0.330340,-0.003634,0.002750,0.249985,0,0);}
.m41_c00405{transform:matrix(0.342015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342015,0.000000,0.000000,0.250000,0,0);}
.m101_c00405{transform:matrix(0.345595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345595,0.000000,0.000000,0.250000,0,0);}
.m1b_c00405{transform:matrix(0.346164,-0.003808,0.002750,0.249985,0,0);-ms-transform:matrix(0.346164,-0.003808,0.002750,0.249985,0,0);-webkit-transform:matrix(0.346164,-0.003808,0.002750,0.249985,0,0);}
.mb0_c00405{transform:matrix(0.348375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348375,0.000000,0.000000,0.250000,0,0);}
.mcd_c00405{transform:matrix(0.349694,-0.003847,0.002750,0.249985,0,0);-ms-transform:matrix(0.349694,-0.003847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.349694,-0.003847,0.002750,0.249985,0,0);}
.md6_c00405{transform:matrix(0.382612,-0.004209,0.002750,0.249985,0,0);-ms-transform:matrix(0.382612,-0.004209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.382612,-0.004209,0.002750,0.249985,0,0);}
.mbc_c00405{transform:matrix(0.385237,-0.004238,0.002750,0.249985,0,0);-ms-transform:matrix(0.385237,-0.004238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.385237,-0.004238,0.002750,0.249985,0,0);}
.mda_c00405{transform:matrix(0.408430,-0.004493,0.002750,0.249985,0,0);-ms-transform:matrix(0.408430,-0.004493,0.002750,0.249985,0,0);-webkit-transform:matrix(0.408430,-0.004493,0.002750,0.249985,0,0);}
.mc7_c00405{transform:matrix(0.428069,-0.004709,0.002750,0.249985,0,0);-ms-transform:matrix(0.428069,-0.004709,0.002750,0.249985,0,0);-webkit-transform:matrix(0.428069,-0.004709,0.002750,0.249985,0,0);}
.mc8_c00405{transform:matrix(0.460232,-0.005063,0.002750,0.249985,0,0);-ms-transform:matrix(0.460232,-0.005063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.460232,-0.005063,0.002750,0.249985,0,0);}
.m104_c00405{transform:matrix(0.470960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470960,0.000000,0.000000,0.250000,0,0);}
.mfb_c00405{transform:matrix(0.475580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475580,0.000000,0.000000,0.250000,0,0);}
.m105_c00405{transform:matrix(0.486155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486155,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.504115,-0.004537,0.002250,0.249990,0,0);-ms-transform:matrix(0.504115,-0.004537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.504115,-0.004537,0.002250,0.249990,0,0);}
.m11b_c00405{transform:matrix(0.513970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513970,0.000000,0.000000,0.250000,0,0);}
.mb1_c00405{transform:matrix(0.522955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522955,0.000000,0.000000,0.250000,0,0);}
.me3_c00405{transform:matrix(0.526888,-0.005796,0.002750,0.249985,0,0);-ms-transform:matrix(0.526888,-0.005796,0.002750,0.249985,0,0);-webkit-transform:matrix(0.526888,-0.005796,0.002750,0.249985,0,0);}
.me2_c00405{transform:matrix(0.532083,-0.005853,0.002750,0.249985,0,0);-ms-transform:matrix(0.532083,-0.005853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.532083,-0.005853,0.002750,0.249985,0,0);}
.md_c00405{transform:matrix(0.535932,-0.007503,0.003500,0.249976,0,0);-ms-transform:matrix(0.535932,-0.007503,0.003500,0.249976,0,0);-webkit-transform:matrix(0.535932,-0.007503,0.003500,0.249976,0,0);}
.m106_c00405{transform:matrix(0.547855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547855,0.000000,0.000000,0.250000,0,0);}
.med_c00405{transform:matrix(0.565085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565085,0.000000,0.000000,0.250000,0,0);}
.mb2_c00405{transform:matrix(0.567085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567085,0.000000,0.000000,0.250000,0,0);}
.m11a_c00405{transform:matrix(0.598420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598420,0.000000,0.000000,0.250000,0,0);}
.ma0_c00405{transform:matrix(0.638105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638105,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.652142,-0.006521,0.002500,0.249988,0,0);-ms-transform:matrix(0.652142,-0.006521,0.002500,0.249988,0,0);-webkit-transform:matrix(0.652142,-0.006521,0.002500,0.249988,0,0);}
.mf9_c00405{transform:matrix(0.795850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795850,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.963662,-0.010600,0.002750,0.249985,0,0);-ms-transform:matrix(0.963662,-0.010600,0.002750,0.249985,0,0);-webkit-transform:matrix(0.963662,-0.010600,0.002750,0.249985,0,0);}
.m1_c00405{transform:matrix(1.116144,-0.011161,0.002500,0.249988,0,0);-ms-transform:matrix(1.116144,-0.011161,0.002500,0.249988,0,0);-webkit-transform:matrix(1.116144,-0.011161,0.002500,0.249988,0,0);}
.m2_c00405{transform:matrix(1.128234,-0.011282,0.002500,0.249988,0,0);-ms-transform:matrix(1.128234,-0.011282,0.002500,0.249988,0,0);-webkit-transform:matrix(1.128234,-0.011282,0.002500,0.249988,0,0);}
.mb7_c00405{transform:matrix(1.145711,-0.012603,0.002750,0.249985,0,0);-ms-transform:matrix(1.145711,-0.012603,0.002750,0.249985,0,0);-webkit-transform:matrix(1.145711,-0.012603,0.002750,0.249985,0,0);}
.m11d_c00405{transform:matrix(1.377975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377975,0.000000,0.000000,0.250000,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;}
.fs14_c00405{font-size:46.200000px;}
.fs12_c00405{font-size:48.302922px;}
.fs13_c00405{font-size:52.500000px;}
.fs10_c00405{font-size:53.553240px;}
.fs15_c00405{font-size:54.600000px;}
.fs17_c00405{font-size:55.650000px;}
.fs11_c00405{font-size:57.753494px;}
.fsa_c00405{font-size:63.000000px;}
.fs5_c00405{font-size:64.053875px;}
.fs3_c00405{font-size:65.106379px;}
.fsf_c00405{font-size:66.150000px;}
.fs2_c00405{font-size:66.152679px;}
.fs6_c00405{font-size:68.254129px;}
.fs8_c00405{font-size:69.300000px;}
.fsd_c00405{font-size:70.350000px;}
.fs9_c00405{font-size:71.400000px;}
.fsb_c00405{font-size:72.450000px;}
.fs4_c00405{font-size:72.454383px;}
.fs7_c00405{font-size:73.500000px;}
.fse_c00405{font-size:74.550000px;}
.fsc_c00405{font-size:75.600000px;}
.fs1_c00405{font-size:97.654882px;}
.fs16_c00405{font-size:121.800000px;}
.fs0_c00405{font-size:121.806090px;}
.y0_c00405{bottom:0.000000px;}
.ya8_c00405{bottom:94.777500px;}
.ya7_c00405{bottom:110.268000px;}
.ya6_c00405{bottom:126.022500px;}
.ya5_c00405{bottom:153.856500px;}
.y99_c00405{bottom:170.100000px;}
.y9a_c00405{bottom:170.178000px;}
.y9b_c00405{bottom:170.877000px;}
.y9c_c00405{bottom:171.388500px;}
.y9d_c00405{bottom:171.799500px;}
.y9e_c00405{bottom:172.269000px;}
.y9f_c00405{bottom:172.402500px;}
.ya0_c00405{bottom:173.515500px;}
.ya1_c00405{bottom:173.683500px;}
.ya2_c00405{bottom:174.084000px;}
.ya3_c00405{bottom:174.369000px;}
.ya4_c00405{bottom:176.544000px;}
.y98_c00405{bottom:189.538500px;}
.y87_c00405{bottom:207.565071px;}
.y88_c00405{bottom:207.565624px;}
.y8a_c00405{bottom:207.565635px;}
.y89_c00405{bottom:207.565998px;}
.y8d_c00405{bottom:207.566229px;}
.y8b_c00405{bottom:207.566338px;}
.y8c_c00405{bottom:207.566442px;}
.y8e_c00405{bottom:207.566962px;}
.y8f_c00405{bottom:207.567036px;}
.y91_c00405{bottom:207.567423px;}
.y97_c00405{bottom:207.567561px;}
.y93_c00405{bottom:207.567570px;}
.y92_c00405{bottom:207.567646px;}
.y90_c00405{bottom:207.567769px;}
.y96_c00405{bottom:207.567940px;}
.y94_c00405{bottom:207.567987px;}
.y95_c00405{bottom:207.568197px;}
.y86_c00405{bottom:223.210348px;}
.y85_c00405{bottom:223.210614px;}
.y83_c00405{bottom:223.210903px;}
.y82_c00405{bottom:223.210920px;}
.y84_c00405{bottom:223.211064px;}
.y7f_c00405{bottom:223.211136px;}
.y7b_c00405{bottom:223.211232px;}
.y7e_c00405{bottom:223.211242px;}
.y81_c00405{bottom:223.211416px;}
.y7a_c00405{bottom:223.211728px;}
.y80_c00405{bottom:223.211763px;}
.y7c_c00405{bottom:223.211905px;}
.y7d_c00405{bottom:223.211919px;}
.y79_c00405{bottom:223.212121px;}
.y63_c00405{bottom:238.414500px;}
.y64_c00405{bottom:239.172229px;}
.y65_c00405{bottom:239.357376px;}
.y66_c00405{bottom:239.669143px;}
.y67_c00405{bottom:240.050689px;}
.y68_c00405{bottom:240.206878px;}
.y69_c00405{bottom:240.475796px;}
.y6a_c00405{bottom:240.714336px;}
.y6b_c00405{bottom:241.158499px;}
.y6c_c00405{bottom:241.339785px;}
.y6d_c00405{bottom:241.622380px;}
.y6e_c00405{bottom:241.797462px;}
.y6f_c00405{bottom:242.295960px;}
.y70_c00405{bottom:242.354056px;}
.y72_c00405{bottom:242.605153px;}
.y71_c00405{bottom:242.639061px;}
.y73_c00405{bottom:243.126141px;}
.y74_c00405{bottom:243.295612px;}
.y75_c00405{bottom:243.799308px;}
.y76_c00405{bottom:243.986104px;}
.y77_c00405{bottom:244.143960px;}
.y78_c00405{bottom:244.473712px;}
.y62_c00405{bottom:414.888000px;}
.y61_c00405{bottom:437.668500px;}
.y60_c00405{bottom:460.627500px;}
.y5f_c00405{bottom:483.522000px;}
.y5e_c00405{bottom:506.839500px;}
.y5d_c00405{bottom:529.060500px;}
.y5c_c00405{bottom:552.396000px;}
.y5b_c00405{bottom:574.251000px;}
.y5a_c00405{bottom:597.244500px;}
.y59_c00405{bottom:619.374000px;}
.y4d_c00405{bottom:640.707000px;}
.y4e_c00405{bottom:641.047500px;}
.y4f_c00405{bottom:641.220000px;}
.y50_c00405{bottom:641.562000px;}
.y51_c00405{bottom:641.824500px;}
.y52_c00405{bottom:642.345000px;}
.y53_c00405{bottom:642.681000px;}
.y54_c00405{bottom:643.033500px;}
.y55_c00405{bottom:643.288500px;}
.y56_c00405{bottom:643.507500px;}
.y57_c00405{bottom:643.681500px;}
.y58_c00405{bottom:644.128500px;}
.y44_c00405{bottom:662.568000px;}
.y45_c00405{bottom:662.863500px;}
.y46_c00405{bottom:663.324000px;}
.y47_c00405{bottom:663.490500px;}
.y48_c00405{bottom:663.834000px;}
.y49_c00405{bottom:664.036500px;}
.y4a_c00405{bottom:664.455000px;}
.y4b_c00405{bottom:664.656000px;}
.y4c_c00405{bottom:664.809000px;}
.y37_c00405{bottom:684.975000px;}
.y38_c00405{bottom:685.620000px;}
.y39_c00405{bottom:685.974000px;}
.y3a_c00405{bottom:686.346000px;}
.y3b_c00405{bottom:686.518500px;}
.y3c_c00405{bottom:687.106500px;}
.y3d_c00405{bottom:687.268500px;}
.y3e_c00405{bottom:687.919500px;}
.y3f_c00405{bottom:688.332000px;}
.y40_c00405{bottom:688.527000px;}
.y41_c00405{bottom:688.750500px;}
.y43_c00405{bottom:689.239500px;}
.y42_c00405{bottom:689.260500px;}
.y36_c00405{bottom:709.122000px;}
.y2e_c00405{bottom:729.538202px;}
.y2f_c00405{bottom:730.299814px;}
.y30_c00405{bottom:730.694973px;}
.y31_c00405{bottom:730.986011px;}
.y32_c00405{bottom:731.220183px;}
.y33_c00405{bottom:731.608854px;}
.y34_c00405{bottom:731.939077px;}
.y35_c00405{bottom:732.217339px;}
.y22_c00405{bottom:746.564380px;}
.y23_c00405{bottom:748.574740px;}
.y24_c00405{bottom:749.850804px;}
.y25_c00405{bottom:750.604396px;}
.y26_c00405{bottom:751.159308px;}
.y27_c00405{bottom:752.378902px;}
.y28_c00405{bottom:752.672083px;}
.y29_c00405{bottom:753.137805px;}
.y2a_c00405{bottom:753.953869px;}
.y2b_c00405{bottom:755.274198px;}
.y2c_c00405{bottom:756.051671px;}
.y2d_c00405{bottom:757.860133px;}
.y16_c00405{bottom:774.903000px;}
.y17_c00405{bottom:776.149674px;}
.y18_c00405{bottom:776.425834px;}
.y19_c00405{bottom:776.892257px;}
.y1a_c00405{bottom:777.415075px;}
.y1b_c00405{bottom:777.724071px;}
.y1c_c00405{bottom:778.276689px;}
.y1d_c00405{bottom:778.433835px;}
.y1e_c00405{bottom:779.048064px;}
.y1f_c00405{bottom:779.357059px;}
.y20_c00405{bottom:779.704978px;}
.y21_c00405{bottom:780.227731px;}
.ye_c00405{bottom:797.047500px;}
.yf_c00405{bottom:798.363423px;}
.y10_c00405{bottom:798.993612px;}
.y11_c00405{bottom:799.432260px;}
.y12_c00405{bottom:800.532345px;}
.y13_c00405{bottom:800.913243px;}
.y14_c00405{bottom:801.510588px;}
.y15_c00405{bottom:802.120113px;}
.y6_c00405{bottom:821.881500px;}
.y7_c00405{bottom:822.720930px;}
.y8_c00405{bottom:822.968776px;}
.y9_c00405{bottom:823.304346px;}
.ya_c00405{bottom:823.763751px;}
.yb_c00405{bottom:824.339769px;}
.yc_c00405{bottom:825.175635px;}
.yd_c00405{bottom:825.780354px;}
.y5_c00405{bottom:858.318030px;}
.y4_c00405{bottom:858.318105px;}
.y3_c00405{bottom:858.318435px;}
.y1_c00405{bottom:865.083000px;}
.y2_c00405{bottom:866.311545px;}
.h16_c00405{height:46.200000px;}
.h14_c00405{height:48.302922px;}
.h15_c00405{height:52.500000px;}
.h12_c00405{height:53.553240px;}
.h17_c00405{height:54.600000px;}
.h19_c00405{height:55.650000px;}
.h13_c00405{height:57.753494px;}
.hc_c00405{height:63.000000px;}
.h7_c00405{height:64.053875px;}
.h5_c00405{height:65.106379px;}
.h11_c00405{height:66.150000px;}
.h4_c00405{height:66.152679px;}
.h8_c00405{height:68.254129px;}
.ha_c00405{height:69.300000px;}
.hf_c00405{height:70.350000px;}
.hb_c00405{height:71.400000px;}
.hd_c00405{height:72.450000px;}
.h6_c00405{height:72.454383px;}
.h9_c00405{height:73.500000px;}
.h10_c00405{height:74.550000px;}
.he_c00405{height:75.600000px;}
.h3_c00405{height:97.654882px;}
.h18_c00405{height:121.800000px;}
.h2_c00405{height:121.806090px;}
.h0_c00405{height:1008.450000px;}
.h1_c00405{height:1008.750000px;}
.w1_c00405{width:689.250000px;}
.w0_c00405{width:689.550000px;}
.x0_c00405{left:0.000000px;}
.x3_c00405{left:86.938530px;}
.x1_c00405{left:88.027500px;}
.x84_c00405{left:90.718930px;}
.x78_c00405{left:92.995500px;}
.xa6_c00405{left:95.850000px;}
.x95_c00405{left:97.470000px;}
.xa2_c00405{left:109.890000px;}
.xa7_c00405{left:129.870000px;}
.x4_c00405{left:135.810420px;}
.xa8_c00405{left:139.590000px;}
.x8d_c00405{left:145.802191px;}
.x85_c00405{left:147.962860px;}
.x9b_c00405{left:151.060500px;}
.x79_c00405{left:161.880000px;}
.x48_c00405{left:166.860000px;}
.x7a_c00405{left:178.711500px;}
.x6_c00405{left:180.726000px;}
.x1d_c00405{left:182.617092px;}
.x62_c00405{left:184.140000px;}
.x9c_c00405{left:190.464000px;}
.x73_c00405{left:195.480000px;}
.x13_c00405{left:200.764500px;}
.x67_c00405{left:204.660000px;}
.x7b_c00405{left:207.054000px;}
.x7_c00405{left:208.264500px;}
.x2_c00405{left:210.882000px;}
.x86_c00405{left:213.577797px;}
.x3b_c00405{left:217.464000px;}
.x41_c00405{left:220.183500px;}
.x9d_c00405{left:222.052500px;}
.xd_c00405{left:225.120000px;}
.x87_c00405{left:226.807897px;}
.x51_c00405{left:228.420000px;}
.x28_c00405{left:230.977097px;}
.x5d_c00405{left:234.900000px;}
.x42_c00405{left:239.352000px;}
.x7c_c00405{left:241.740000px;}
.x1e_c00405{left:243.388910px;}
.x8_c00405{left:245.550000px;}
.x30_c00405{left:246.643500px;}
.x77_c00405{left:248.130000px;}
.x49_c00405{left:250.290000px;}
.xe_c00405{left:256.452000px;}
.x9e_c00405{left:258.184500px;}
.x88_c00405{left:259.750390px;}
.x8e_c00405{left:261.640200px;}
.xa3_c00405{left:262.980000px;}
.x5e_c00405{left:264.600000px;}
.x14_c00405{left:268.272000px;}
.x58_c00405{left:272.430000px;}
.x3c_c00405{left:274.971000px;}
.x6a_c00405{left:276.210000px;}
.x2c_c00405{left:277.560000px;}
.x1f_c00405{left:279.302466px;}
.x7d_c00405{left:280.386000px;}
.x31_c00405{left:282.021000px;}
.x5_c00405{left:285.667905px;}
.x89_c00405{left:287.562256px;}
.x5f_c00405{left:289.980000px;}
.x4a_c00405{left:293.220000px;}
.x9_c00405{left:296.595000px;}
.x7e_c00405{left:302.071500px;}
.x20_c00405{left:305.746062px;}
.x8f_c00405{left:308.082810px;}
.x4b_c00405{left:310.770000px;}
.x96_c00405{left:313.200000px;}
.x15_c00405{left:315.801000px;}
.x32_c00405{left:319.279500px;}
.x97_c00405{left:323.190000px;}
.x68_c00405{left:324.810000px;}
.x6f_c00405{left:328.590000px;}
.x52_c00405{left:333.180000px;}
.xf_c00405{left:335.029500px;}
.x2d_c00405{left:336.420000px;}
.x3d_c00405{left:338.701500px;}
.x59_c00405{left:340.470000px;}
.x7f_c00405{left:342.450000px;}
.x16_c00405{left:343.891500px;}
.x29_c00405{left:345.151859px;}
.x70_c00405{left:347.490000px;}
.x98_c00405{left:350.190000px;}
.x63_c00405{left:351.540000px;}
.x9f_c00405{left:354.081000px;}
.x4c_c00405{left:359.370000px;}
.xa_c00405{left:360.597000px;}
.x10_c00405{left:362.236500px;}
.x21_c00405{left:363.839177px;}
.xa0_c00405{left:367.024500px;}
.x5a_c00405{left:369.630000px;}
.x64_c00405{left:372.060000px;}
.x74_c00405{left:374.490000px;}
.x22_c00405{left:377.808642px;}
.x4d_c00405{left:378.810000px;}
.x71_c00405{left:382.050000px;}
.x75_c00405{left:384.210000px;}
.x2a_c00405{left:386.491728px;}
.x5b_c00405{left:392.040000px;}
.x17_c00405{left:394.129500px;}
.x33_c00405{left:395.403000px;}
.x6b_c00405{left:397.170000px;}
.x4e_c00405{left:398.790000px;}
.x23_c00405{left:399.962700px;}
.x43_c00405{left:401.611500px;}
.x11_c00405{left:404.904000px;}
.x18_c00405{left:408.415500px;}
.x90_c00405{left:410.149152px;}
.x34_c00405{left:411.609000px;}
.x3e_c00405{left:416.449500px;}
.x2e_c00405{left:419.310000px;}
.x2b_c00405{left:421.334883px;}
.x53_c00405{left:428.490000px;}
.x91_c00405{left:430.400094px;}
.x76_c00405{left:435.240000px;}
.x24_c00405{left:438.827927px;}
.x60_c00405{left:440.370000px;}
.x3f_c00405{left:441.555000px;}
.x4f_c00405{left:446.040000px;}
.x12_c00405{left:448.441500px;}
.x5c_c00405{left:450.900000px;}
.xb_c00405{left:453.471000px;}
.x54_c00405{left:454.680000px;}
.x65_c00405{left:458.190000px;}
.x40_c00405{left:460.753500px;}
.x8a_c00405{left:462.531426px;}
.x19_c00405{left:464.254500px;}
.x8b_c00405{left:466.581921px;}
.x50_c00405{left:467.910000px;}
.x44_c00405{left:469.104000px;}
.x61_c00405{left:471.690000px;}
.x80_c00405{left:473.964000px;}
.x35_c00405{left:476.674500px;}
.x66_c00405{left:481.410000px;}
.xa4_c00405{left:483.030000px;}
.x92_c00405{left:485.752293px;}
.x99_c00405{left:487.350000px;}
.x55_c00405{left:488.700000px;}
.x1a_c00405{left:492.345000px;}
.x45_c00405{left:493.402500px;}
.x6c_c00405{left:496.800000px;}
.x2f_c00405{left:498.150000px;}
.x25_c00405{left:501.714513px;}
.x46_c00405{left:512.697000px;}
.x36_c00405{left:517.945500px;}
.xc_c00405{left:520.662000px;}
.x1b_c00405{left:523.974000px;}
.x6d_c00405{left:528.660000px;}
.x56_c00405{left:534.870000px;}
.x37_c00405{left:537.424500px;}
.x26_c00405{left:538.707938px;}
.x72_c00405{left:544.050000px;}
.x93_c00405{left:547.316735px;}
.x69_c00405{left:558.360000px;}
.x38_c00405{left:559.837500px;}
.x47_c00405{left:562.392000px;}
.x9a_c00405{left:568.620000px;}
.x1c_c00405{left:571.497000px;}
.x57_c00405{left:582.930000px;}
.xa1_c00405{left:587.016000px;}
.x6e_c00405{left:592.110000px;}
.x81_c00405{left:599.505000px;}
.xa5_c00405{left:603.720000px;}
.x3a_c00405{left:608.706000px;}
.x39_c00405{left:610.830000px;}
.x82_c00405{left:613.855500px;}
.x27_c00405{left:624.831467px;}
.x8c_c00405{left:629.941188px;}
.x83_c00405{left:643.833000px;}
.x94_c00405{left:646.952796px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs14_c00405{font-size:41.066667pt;}
.fs12_c00405{font-size:42.935931pt;}
.fs13_c00405{font-size:46.666667pt;}
.fs10_c00405{font-size:47.602880pt;}
.fs15_c00405{font-size:48.533333pt;}
.fs17_c00405{font-size:49.466667pt;}
.fs11_c00405{font-size:51.336439pt;}
.fsa_c00405{font-size:56.000000pt;}
.fs5_c00405{font-size:56.936778pt;}
.fs3_c00405{font-size:57.872337pt;}
.fsf_c00405{font-size:58.800000pt;}
.fs2_c00405{font-size:58.802381pt;}
.fs6_c00405{font-size:60.670337pt;}
.fs8_c00405{font-size:61.600000pt;}
.fsd_c00405{font-size:62.533333pt;}
.fs9_c00405{font-size:63.466667pt;}
.fsb_c00405{font-size:64.400000pt;}
.fs4_c00405{font-size:64.403896pt;}
.fs7_c00405{font-size:65.333333pt;}
.fse_c00405{font-size:66.266667pt;}
.fsc_c00405{font-size:67.200000pt;}
.fs1_c00405{font-size:86.804340pt;}
.fs16_c00405{font-size:108.266667pt;}
.fs0_c00405{font-size:108.272080pt;}
.y0_c00405{bottom:0.000000pt;}
.ya8_c00405{bottom:84.246667pt;}
.ya7_c00405{bottom:98.016000pt;}
.ya6_c00405{bottom:112.020000pt;}
.ya5_c00405{bottom:136.761333pt;}
.y99_c00405{bottom:151.200000pt;}
.y9a_c00405{bottom:151.269333pt;}
.y9b_c00405{bottom:151.890667pt;}
.y9c_c00405{bottom:152.345333pt;}
.y9d_c00405{bottom:152.710667pt;}
.y9e_c00405{bottom:153.128000pt;}
.y9f_c00405{bottom:153.246667pt;}
.ya0_c00405{bottom:154.236000pt;}
.ya1_c00405{bottom:154.385333pt;}
.ya2_c00405{bottom:154.741333pt;}
.ya3_c00405{bottom:154.994667pt;}
.ya4_c00405{bottom:156.928000pt;}
.y98_c00405{bottom:168.478667pt;}
.y87_c00405{bottom:184.502285pt;}
.y88_c00405{bottom:184.502777pt;}
.y8a_c00405{bottom:184.502787pt;}
.y89_c00405{bottom:184.503109pt;}
.y8d_c00405{bottom:184.503315pt;}
.y8b_c00405{bottom:184.503412pt;}
.y8c_c00405{bottom:184.503504pt;}
.y8e_c00405{bottom:184.503967pt;}
.y8f_c00405{bottom:184.504032pt;}
.y91_c00405{bottom:184.504376pt;}
.y97_c00405{bottom:184.504499pt;}
.y93_c00405{bottom:184.504507pt;}
.y92_c00405{bottom:184.504575pt;}
.y90_c00405{bottom:184.504684pt;}
.y96_c00405{bottom:184.504836pt;}
.y94_c00405{bottom:184.504877pt;}
.y95_c00405{bottom:184.505064pt;}
.y86_c00405{bottom:198.409199pt;}
.y85_c00405{bottom:198.409435pt;}
.y83_c00405{bottom:198.409692pt;}
.y82_c00405{bottom:198.409707pt;}
.y84_c00405{bottom:198.409835pt;}
.y7f_c00405{bottom:198.409899pt;}
.y7b_c00405{bottom:198.409984pt;}
.y7e_c00405{bottom:198.409993pt;}
.y81_c00405{bottom:198.410148pt;}
.y7a_c00405{bottom:198.410425pt;}
.y80_c00405{bottom:198.410456pt;}
.y7c_c00405{bottom:198.410583pt;}
.y7d_c00405{bottom:198.410595pt;}
.y79_c00405{bottom:198.410775pt;}
.y63_c00405{bottom:211.924000pt;}
.y64_c00405{bottom:212.597537pt;}
.y65_c00405{bottom:212.762112pt;}
.y66_c00405{bottom:213.039239pt;}
.y67_c00405{bottom:213.378391pt;}
.y68_c00405{bottom:213.517225pt;}
.y69_c00405{bottom:213.756263pt;}
.y6a_c00405{bottom:213.968299pt;}
.y6b_c00405{bottom:214.363111pt;}
.y6c_c00405{bottom:214.524253pt;}
.y6d_c00405{bottom:214.775449pt;}
.y6e_c00405{bottom:214.931077pt;}
.y6f_c00405{bottom:215.374187pt;}
.y70_c00405{bottom:215.425828pt;}
.y72_c00405{bottom:215.649025pt;}
.y71_c00405{bottom:215.679165pt;}
.y73_c00405{bottom:216.112125pt;}
.y74_c00405{bottom:216.262767pt;}
.y75_c00405{bottom:216.710496pt;}
.y76_c00405{bottom:216.876537pt;}
.y77_c00405{bottom:217.016853pt;}
.y78_c00405{bottom:217.309967pt;}
.y62_c00405{bottom:368.789333pt;}
.y61_c00405{bottom:389.038667pt;}
.y60_c00405{bottom:409.446667pt;}
.y5f_c00405{bottom:429.797333pt;}
.y5e_c00405{bottom:450.524000pt;}
.y5d_c00405{bottom:470.276000pt;}
.y5c_c00405{bottom:491.018667pt;}
.y5b_c00405{bottom:510.445333pt;}
.y5a_c00405{bottom:530.884000pt;}
.y59_c00405{bottom:550.554667pt;}
.y4d_c00405{bottom:569.517333pt;}
.y4e_c00405{bottom:569.820000pt;}
.y4f_c00405{bottom:569.973333pt;}
.y50_c00405{bottom:570.277333pt;}
.y51_c00405{bottom:570.510667pt;}
.y52_c00405{bottom:570.973333pt;}
.y53_c00405{bottom:571.272000pt;}
.y54_c00405{bottom:571.585333pt;}
.y55_c00405{bottom:571.812000pt;}
.y56_c00405{bottom:572.006667pt;}
.y57_c00405{bottom:572.161333pt;}
.y58_c00405{bottom:572.558667pt;}
.y44_c00405{bottom:588.949333pt;}
.y45_c00405{bottom:589.212000pt;}
.y46_c00405{bottom:589.621333pt;}
.y47_c00405{bottom:589.769333pt;}
.y48_c00405{bottom:590.074667pt;}
.y49_c00405{bottom:590.254667pt;}
.y4a_c00405{bottom:590.626667pt;}
.y4b_c00405{bottom:590.805333pt;}
.y4c_c00405{bottom:590.941333pt;}
.y37_c00405{bottom:608.866667pt;}
.y38_c00405{bottom:609.440000pt;}
.y39_c00405{bottom:609.754667pt;}
.y3a_c00405{bottom:610.085333pt;}
.y3b_c00405{bottom:610.238667pt;}
.y3c_c00405{bottom:610.761333pt;}
.y3d_c00405{bottom:610.905333pt;}
.y3e_c00405{bottom:611.484000pt;}
.y3f_c00405{bottom:611.850667pt;}
.y40_c00405{bottom:612.024000pt;}
.y41_c00405{bottom:612.222667pt;}
.y43_c00405{bottom:612.657333pt;}
.y42_c00405{bottom:612.676000pt;}
.y36_c00405{bottom:630.330667pt;}
.y2e_c00405{bottom:648.478401pt;}
.y2f_c00405{bottom:649.155391pt;}
.y30_c00405{bottom:649.506643pt;}
.y31_c00405{bottom:649.765343pt;}
.y32_c00405{bottom:649.973496pt;}
.y33_c00405{bottom:650.318981pt;}
.y34_c00405{bottom:650.612513pt;}
.y35_c00405{bottom:650.859857pt;}
.y22_c00405{bottom:663.612783pt;}
.y23_c00405{bottom:665.399769pt;}
.y24_c00405{bottom:666.534048pt;}
.y25_c00405{bottom:667.203908pt;}
.y26_c00405{bottom:667.697163pt;}
.y27_c00405{bottom:668.781247pt;}
.y28_c00405{bottom:669.041852pt;}
.y29_c00405{bottom:669.455827pt;}
.y2a_c00405{bottom:670.181217pt;}
.y2b_c00405{bottom:671.354843pt;}
.y2c_c00405{bottom:672.045929pt;}
.y2d_c00405{bottom:673.653452pt;}
.y16_c00405{bottom:688.802667pt;}
.y17_c00405{bottom:689.910821pt;}
.y18_c00405{bottom:690.156297pt;}
.y19_c00405{bottom:690.570895pt;}
.y1a_c00405{bottom:691.035623pt;}
.y1b_c00405{bottom:691.310285pt;}
.y1c_c00405{bottom:691.801501pt;}
.y1d_c00405{bottom:691.941187pt;}
.y1e_c00405{bottom:692.487168pt;}
.y1f_c00405{bottom:692.761831pt;}
.y20_c00405{bottom:693.071092pt;}
.y21_c00405{bottom:693.535761pt;}
.ye_c00405{bottom:708.486667pt;}
.yf_c00405{bottom:709.656376pt;}
.y10_c00405{bottom:710.216544pt;}
.y11_c00405{bottom:710.606453pt;}
.y12_c00405{bottom:711.584307pt;}
.y13_c00405{bottom:711.922883pt;}
.y14_c00405{bottom:712.453856pt;}
.y15_c00405{bottom:712.995656pt;}
.y6_c00405{bottom:730.561333pt;}
.y7_c00405{bottom:731.307493pt;}
.y8_c00405{bottom:731.527801pt;}
.y9_c00405{bottom:731.826085pt;}
.ya_c00405{bottom:732.234445pt;}
.yb_c00405{bottom:732.746461pt;}
.yc_c00405{bottom:733.489453pt;}
.yd_c00405{bottom:734.026981pt;}
.y5_c00405{bottom:762.949360pt;}
.y4_c00405{bottom:762.949427pt;}
.y3_c00405{bottom:762.949720pt;}
.y1_c00405{bottom:768.962667pt;}
.y2_c00405{bottom:770.054707pt;}
.h16_c00405{height:41.066667pt;}
.h14_c00405{height:42.935931pt;}
.h15_c00405{height:46.666667pt;}
.h12_c00405{height:47.602880pt;}
.h17_c00405{height:48.533333pt;}
.h19_c00405{height:49.466667pt;}
.h13_c00405{height:51.336439pt;}
.hc_c00405{height:56.000000pt;}
.h7_c00405{height:56.936778pt;}
.h5_c00405{height:57.872337pt;}
.h11_c00405{height:58.800000pt;}
.h4_c00405{height:58.802381pt;}
.h8_c00405{height:60.670337pt;}
.ha_c00405{height:61.600000pt;}
.hf_c00405{height:62.533333pt;}
.hb_c00405{height:63.466667pt;}
.hd_c00405{height:64.400000pt;}
.h6_c00405{height:64.403896pt;}
.h9_c00405{height:65.333333pt;}
.h10_c00405{height:66.266667pt;}
.he_c00405{height:67.200000pt;}
.h3_c00405{height:86.804340pt;}
.h18_c00405{height:108.266667pt;}
.h2_c00405{height:108.272080pt;}
.h0_c00405{height:896.400000pt;}
.h1_c00405{height:896.666667pt;}
.w1_c00405{width:612.666667pt;}
.w0_c00405{width:612.933333pt;}
.x0_c00405{left:0.000000pt;}
.x3_c00405{left:77.278693pt;}
.x1_c00405{left:78.246667pt;}
.x84_c00405{left:80.639049pt;}
.x78_c00405{left:82.662667pt;}
.xa6_c00405{left:85.200000pt;}
.x95_c00405{left:86.640000pt;}
.xa2_c00405{left:97.680000pt;}
.xa7_c00405{left:115.440000pt;}
.x4_c00405{left:120.720373pt;}
.xa8_c00405{left:124.080000pt;}
.x8d_c00405{left:129.601948pt;}
.x85_c00405{left:131.522543pt;}
.x9b_c00405{left:134.276000pt;}
.x79_c00405{left:143.893333pt;}
.x48_c00405{left:148.320000pt;}
.x7a_c00405{left:158.854667pt;}
.x6_c00405{left:160.645333pt;}
.x1d_c00405{left:162.326304pt;}
.x62_c00405{left:163.680000pt;}
.x9c_c00405{left:169.301333pt;}
.x73_c00405{left:173.760000pt;}
.x13_c00405{left:178.457333pt;}
.x67_c00405{left:181.920000pt;}
.x7b_c00405{left:184.048000pt;}
.x7_c00405{left:185.124000pt;}
.x2_c00405{left:187.450667pt;}
.x86_c00405{left:189.846931pt;}
.x3b_c00405{left:193.301333pt;}
.x41_c00405{left:195.718667pt;}
.x9d_c00405{left:197.380000pt;}
.xd_c00405{left:200.106667pt;}
.x87_c00405{left:201.607020pt;}
.x51_c00405{left:203.040000pt;}
.x28_c00405{left:205.312975pt;}
.x5d_c00405{left:208.800000pt;}
.x42_c00405{left:212.757333pt;}
.x7c_c00405{left:214.880000pt;}
.x1e_c00405{left:216.345697pt;}
.x8_c00405{left:218.266667pt;}
.x30_c00405{left:219.238667pt;}
.x77_c00405{left:220.560000pt;}
.x49_c00405{left:222.480000pt;}
.xe_c00405{left:227.957333pt;}
.x9e_c00405{left:229.497333pt;}
.x88_c00405{left:230.889236pt;}
.x8e_c00405{left:232.569067pt;}
.xa3_c00405{left:233.760000pt;}
.x5e_c00405{left:235.200000pt;}
.x14_c00405{left:238.464000pt;}
.x58_c00405{left:242.160000pt;}
.x3c_c00405{left:244.418667pt;}
.x6a_c00405{left:245.520000pt;}
.x2c_c00405{left:246.720000pt;}
.x1f_c00405{left:248.268859pt;}
.x7d_c00405{left:249.232000pt;}
.x31_c00405{left:250.685333pt;}
.x5_c00405{left:253.927027pt;}
.x89_c00405{left:255.610895pt;}
.x5f_c00405{left:257.760000pt;}
.x4a_c00405{left:260.640000pt;}
.x9_c00405{left:263.640000pt;}
.x7e_c00405{left:268.508000pt;}
.x20_c00405{left:271.774277pt;}
.x8f_c00405{left:273.851387pt;}
.x4b_c00405{left:276.240000pt;}
.x96_c00405{left:278.400000pt;}
.x15_c00405{left:280.712000pt;}
.x32_c00405{left:283.804000pt;}
.x97_c00405{left:287.280000pt;}
.x68_c00405{left:288.720000pt;}
.x6f_c00405{left:292.080000pt;}
.x52_c00405{left:296.160000pt;}
.xf_c00405{left:297.804000pt;}
.x2d_c00405{left:299.040000pt;}
.x3d_c00405{left:301.068000pt;}
.x59_c00405{left:302.640000pt;}
.x7f_c00405{left:304.400000pt;}
.x16_c00405{left:305.681333pt;}
.x29_c00405{left:306.801652pt;}
.x70_c00405{left:308.880000pt;}
.x98_c00405{left:311.280000pt;}
.x63_c00405{left:312.480000pt;}
.x9f_c00405{left:314.738667pt;}
.x4c_c00405{left:319.440000pt;}
.xa_c00405{left:320.530667pt;}
.x10_c00405{left:321.988000pt;}
.x21_c00405{left:323.412601pt;}
.xa0_c00405{left:326.244000pt;}
.x5a_c00405{left:328.560000pt;}
.x64_c00405{left:330.720000pt;}
.x74_c00405{left:332.880000pt;}
.x22_c00405{left:335.829904pt;}
.x4d_c00405{left:336.720000pt;}
.x71_c00405{left:339.600000pt;}
.x75_c00405{left:341.520000pt;}
.x2a_c00405{left:343.548203pt;}
.x5b_c00405{left:348.480000pt;}
.x17_c00405{left:350.337333pt;}
.x33_c00405{left:351.469333pt;}
.x6b_c00405{left:353.040000pt;}
.x4e_c00405{left:354.480000pt;}
.x23_c00405{left:355.522400pt;}
.x43_c00405{left:356.988000pt;}
.x11_c00405{left:359.914667pt;}
.x18_c00405{left:363.036000pt;}
.x90_c00405{left:364.577024pt;}
.x34_c00405{left:365.874667pt;}
.x3e_c00405{left:370.177333pt;}
.x2e_c00405{left:372.720000pt;}
.x2b_c00405{left:374.519896pt;}
.x53_c00405{left:380.880000pt;}
.x91_c00405{left:382.577861pt;}
.x76_c00405{left:386.880000pt;}
.x24_c00405{left:390.069268pt;}
.x60_c00405{left:391.440000pt;}
.x3f_c00405{left:392.493333pt;}
.x4f_c00405{left:396.480000pt;}
.x12_c00405{left:398.614667pt;}
.x5c_c00405{left:400.800000pt;}
.xb_c00405{left:403.085333pt;}
.x54_c00405{left:404.160000pt;}
.x65_c00405{left:407.280000pt;}
.x40_c00405{left:409.558667pt;}
.x8a_c00405{left:411.139045pt;}
.x19_c00405{left:412.670667pt;}
.x8b_c00405{left:414.739485pt;}
.x50_c00405{left:415.920000pt;}
.x44_c00405{left:416.981333pt;}
.x61_c00405{left:419.280000pt;}
.x80_c00405{left:421.301333pt;}
.x35_c00405{left:423.710667pt;}
.x66_c00405{left:427.920000pt;}
.xa4_c00405{left:429.360000pt;}
.x92_c00405{left:431.779816pt;}
.x99_c00405{left:433.200000pt;}
.x55_c00405{left:434.400000pt;}
.x1a_c00405{left:437.640000pt;}
.x45_c00405{left:438.580000pt;}
.x6c_c00405{left:441.600000pt;}
.x2f_c00405{left:442.800000pt;}
.x25_c00405{left:445.968456pt;}
.x46_c00405{left:455.730667pt;}
.x36_c00405{left:460.396000pt;}
.xc_c00405{left:462.810667pt;}
.x1b_c00405{left:465.754667pt;}
.x6d_c00405{left:469.920000pt;}
.x56_c00405{left:475.440000pt;}
.x37_c00405{left:477.710667pt;}
.x26_c00405{left:478.851500pt;}
.x72_c00405{left:483.600000pt;}
.x93_c00405{left:486.503764pt;}
.x69_c00405{left:496.320000pt;}
.x38_c00405{left:497.633333pt;}
.x47_c00405{left:499.904000pt;}
.x9a_c00405{left:505.440000pt;}
.x1c_c00405{left:507.997333pt;}
.x57_c00405{left:518.160000pt;}
.xa1_c00405{left:521.792000pt;}
.x6e_c00405{left:526.320000pt;}
.x81_c00405{left:532.893333pt;}
.xa5_c00405{left:536.640000pt;}
.x3a_c00405{left:541.072000pt;}
.x39_c00405{left:542.960000pt;}
.x82_c00405{left:545.649333pt;}
.x27_c00405{left:555.405748pt;}
.x8c_c00405{left:559.947723pt;}
.x83_c00405{left:572.296000pt;}
.x94_c00405{left:575.069152pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m28_c00406{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);}
.m30_c00406{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);}
.mc1_c00406{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);}
.ma4_c00406{transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.064990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064990,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076570,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.096435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096435,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.mb1_c00406{transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102645,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{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);}
.m14_c00406{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.150890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150890,0.000000,0.000000,0.250000,0,0);}
.m6f_c00406{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);}
.m8b_c00406{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_c00406{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);}
.mc_c00406{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);}
.m40_c00406{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);}
.mab_c00406{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);}
.m35_c00406{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);}
.m34_c00406{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);}
.m9e_c00406{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);}
.m1f_c00406{transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170090,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{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);}
.m44_c00406{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);}
.m4d_c00406{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);}
.m58_c00406{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);}
.m61_c00406{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);}
.mb4_c00406{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);}
.m66_c00406{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);}
.mad_c00406{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);}
.m9_c00406{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);}
.m32_c00406{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);}
.mbb_c00406{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);}
.m1b_c00406{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);}
.m7c_c00406{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);}
.m5f_c00406{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);}
.maf_c00406{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);}
.m38_c00406{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);}
.mb_c00406{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);}
.m3b_c00406{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);}
.m3a_c00406{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);}
.m3d_c00406{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);}
.m2e_c00406{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);}
.mb0_c00406{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);}
.mba_c00406{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);}
.m49_c00406{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);}
.m4c_c00406{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);}
.m47_c00406{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);}
.m6a_c00406{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);}
.m6e_c00406{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);}
.m45_c00406{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);}
.ma5_c00406{transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);}
.m74_c00406{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);}
.m83_c00406{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);}
.m90_c00406{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);}
.m9c_c00406{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);}
.m36_c00406{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_c00406{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);}
.m4e_c00406{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);}
.m6c_c00406{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);}
.m4b_c00406{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);}
.m72_c00406{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);}
.m2b_c00406{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{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);}
.mae_c00406{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);}
.m2d_c00406{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);}
.ma_c00406{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);}
.mb5_c00406{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);}
.m1d_c00406{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);}
.m5d_c00406{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);}
.m6d_c00406{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);}
.m42_c00406{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);}
.m7f_c00406{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);}
.m1c_c00406{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);}
.m9f_c00406{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);}
.m7a_c00406{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);}
.mac_c00406{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);}
.m77_c00406{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);}
.mbe_c00406{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);}
.m3f_c00406{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);}
.m9a_c00406{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);}
.m7e_c00406{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);}
.m55_c00406{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);}
.m43_c00406{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);}
.m16_c00406{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);}
.m70_c00406{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);}
.m6b_c00406{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);}
.m37_c00406{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);}
.ma6_c00406{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_c00406{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);}
.m59_c00406{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);}
.ma2_c00406{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);}
.m3c_c00406{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);}
.m76_c00406{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);}
.ma8_c00406{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);}
.m63_c00406{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);}
.m4f_c00406{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);}
.m41_c00406{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);}
.m71_c00406{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);}
.mb3_c00406{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);}
.mb7_c00406{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);}
.m19_c00406{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);}
.m2a_c00406{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);}
.m2f_c00406{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);}
.m62_c00406{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);}
.m22_c00406{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);}
.m33_c00406{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);}
.m78_c00406{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);}
.m9d_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);}
.m8_c00406{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);}
.m80_c00406{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);}
.m5a_c00406{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);}
.m5c_c00406{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);}
.ma1_c00406{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);}
.m79_c00406{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);}
.m5e_c00406{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);}
.m4a_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);}
.m60_c00406{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);}
.mbd_c00406{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);}
.m7d_c00406{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);}
.mbc_c00406{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);}
.m54_c00406{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);}
.ma7_c00406{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);}
.m53_c00406{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);}
.m46_c00406{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);}
.m57_c00406{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);}
.m81_c00406{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);}
.m85_c00406{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{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);}
.m15_c00406{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.m98_c00406{transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);}
.m99_c00406{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);}
.m1e_c00406{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);}
.m31_c00406{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);}
.m5b_c00406{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);}
.ma0_c00406{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);}
.m84_c00406{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);}
.ma9_c00406{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);}
.m65_c00406{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);}
.md_c00406{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);}
.mb2_c00406{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);}
.m8d_c00406{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);}
.m24_c00406{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);}
.m92_c00406{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);}
.m50_c00406{transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{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);}
.m75_c00406{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);}
.m8c_c00406{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);}
.mc3_c00406{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);}
.m89_c00406{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);}
.m7b_c00406{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);}
.m91_c00406{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m97_c00406{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{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);}
.m12_c00406{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);}
.m96_c00406{transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);}
.m68_c00406{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.mb6_c00406{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.ma3_c00406{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);}
.m4_c00406{transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{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);}
.m9b_c00406{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m52_c00406{transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283410,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291620,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{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);}
.m5_c00406{transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295980,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.298620,-0.002986,0.002500,0.249988,0,0);-ms-transform:matrix(0.298620,-0.002986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298620,-0.002986,0.002500,0.249988,0,0);}
.m17_c00406{transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.307645,-0.003076,0.002500,0.249988,0,0);-ms-transform:matrix(0.307645,-0.003076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.307645,-0.003076,0.002500,0.249988,0,0);}
.m21_c00406{transform:matrix(0.317630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317630,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.321055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00406{transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321840,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.336530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336530,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.344643,-0.003446,0.002500,0.249988,0,0);-ms-transform:matrix(0.344643,-0.003446,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344643,-0.003446,0.002500,0.249988,0,0);}
.m8a_c00406{transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345190,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346690,0.000000,0.000000,0.250000,0,0);}
.mb9_c00406{transform:matrix(0.348115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348115,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);}
.maa_c00406{transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372650,0.000000,0.000000,0.250000,0,0);}
.mc0_c00406{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);}
.m8f_c00406{transform:matrix(0.385565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385565,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.390265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390265,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.393215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393215,0.000000,0.000000,0.250000,0,0);}
.mc2_c00406{transform:matrix(0.403125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403125,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.419215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419215,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.505945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505945,0.000000,0.000000,0.250000,0,0);}
.mb8_c00406{transform:matrix(0.629400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629400,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.749930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749930,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.753955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753955,0.000000,0.000000,0.250000,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;}
.fsa_c00406{font-size:45.150000px;}
.fsb_c00406{font-size:48.300000px;}
.fsd_c00406{font-size:52.500000px;}
.fsc_c00406{font-size:57.750000px;}
.fse_c00406{font-size:59.850000px;}
.fs9_c00406{font-size:60.900000px;}
.fs7_c00406{font-size:64.050000px;}
.fs6_c00406{font-size:67.200000px;}
.fs5_c00406{font-size:68.250000px;}
.fs8_c00406{font-size:69.300000px;}
.fs3_c00406{font-size:70.350000px;}
.fs1_c00406{font-size:71.400000px;}
.fs2_c00406{font-size:73.500000px;}
.fs4_c00406{font-size:74.550000px;}
.fs0_c00406{font-size:124.956247px;}
.y0_c00406{bottom:0.000000px;}
.y1b_c00406{bottom:151.956000px;}
.y1a_c00406{bottom:178.798500px;}
.y19_c00406{bottom:197.910000px;}
.y18_c00406{bottom:215.496000px;}
.y17_c00406{bottom:232.893000px;}
.y16_c00406{bottom:284.398500px;}
.y15_c00406{bottom:307.429500px;}
.y14_c00406{bottom:330.130500px;}
.y13_c00406{bottom:352.983000px;}
.y12_c00406{bottom:375.462000px;}
.y11_c00406{bottom:398.841000px;}
.y10_c00406{bottom:421.743000px;}
.yf_c00406{bottom:443.818500px;}
.ye_c00406{bottom:466.527000px;}
.yd_c00406{bottom:488.997000px;}
.yc_c00406{bottom:511.854000px;}
.yb_c00406{bottom:534.886500px;}
.ya_c00406{bottom:557.068500px;}
.y9_c00406{bottom:580.239000px;}
.y8_c00406{bottom:602.706000px;}
.y7_c00406{bottom:625.137000px;}
.y6_c00406{bottom:647.191500px;}
.y5_c00406{bottom:669.537000px;}
.y4_c00406{bottom:718.624500px;}
.y1_c00406{bottom:762.211500px;}
.y2_c00406{bottom:763.624875px;}
.y3_c00406{bottom:765.136335px;}
.hc_c00406{height:45.150000px;}
.hd_c00406{height:48.300000px;}
.hf_c00406{height:52.500000px;}
.he_c00406{height:57.750000px;}
.h10_c00406{height:59.850000px;}
.hb_c00406{height:60.900000px;}
.h9_c00406{height:64.050000px;}
.h8_c00406{height:67.200000px;}
.h7_c00406{height:68.250000px;}
.ha_c00406{height:69.300000px;}
.h5_c00406{height:70.350000px;}
.h3_c00406{height:71.400000px;}
.h4_c00406{height:73.500000px;}
.h6_c00406{height:74.550000px;}
.h2_c00406{height:124.956247px;}
.h1_c00406{height:1005.000000px;}
.h0_c00406{height:1005.150000px;}
.w0_c00406{width:715.200000px;}
.w1_c00406{width:715.500000px;}
.x0_c00406{left:0.000000px;}
.x6a_c00406{left:86.130000px;}
.x5e_c00406{left:87.480000px;}
.x5f_c00406{left:111.510000px;}
.x1_c00406{left:112.786500px;}
.x7d_c00406{left:115.560000px;}
.x7b_c00406{left:119.070000px;}
.x60_c00406{left:121.500000px;}
.x3d_c00406{left:123.660000px;}
.x32_c00406{left:124.740000px;}
.xb_c00406{left:125.820000px;}
.x61_c00406{left:136.080000px;}
.x7e_c00406{left:138.510000px;}
.x71_c00406{left:141.750000px;}
.x4d_c00406{left:148.230000px;}
.x43_c00406{left:149.310000px;}
.x33_c00406{left:151.740000px;}
.x14_c00406{left:153.630000px;}
.x28_c00406{left:154.980000px;}
.xc_c00406{left:159.570000px;}
.x62_c00406{left:162.000000px;}
.x51_c00406{left:170.370000px;}
.x38_c00406{left:171.720000px;}
.x63_c00406{left:175.500000px;}
.x48_c00406{left:177.120000px;}
.x3e_c00406{left:179.010000px;}
.x19_c00406{left:180.090000px;}
.x23_c00406{left:181.440000px;}
.x44_c00406{left:185.490000px;}
.x5a_c00406{left:192.780000px;}
.x4e_c00406{left:197.370000px;}
.x39_c00406{left:198.720000px;}
.x2c_c00406{left:203.850000px;}
.x34_c00406{left:205.740000px;}
.x29_c00406{left:207.630000px;}
.xd_c00406{left:209.250000px;}
.x45_c00406{left:220.320000px;}
.x21_c00406{left:223.560000px;}
.x52_c00406{left:226.800000px;}
.x72_c00406{left:228.960000px;}
.x7_c00406{left:231.660000px;}
.xe_c00406{left:233.010000px;}
.x4f_c00406{left:237.870000px;}
.x2d_c00406{left:243.270000px;}
.x3f_c00406{left:244.350000px;}
.x49_c00406{left:248.940000px;}
.x64_c00406{left:250.020000px;}
.x56_c00406{left:251.640000px;}
.x2_c00406{left:254.124000px;}
.x6b_c00406{left:259.470000px;}
.x24_c00406{left:261.630000px;}
.x4_c00406{left:263.520000px;}
.x3a_c00406{left:269.730000px;}
.x22_c00406{left:272.700000px;}
.x35_c00406{left:274.320000px;}
.xf_c00406{left:276.480000px;}
.x15_c00406{left:279.180000px;}
.x57_c00406{left:285.930000px;}
.x53_c00406{left:287.010000px;}
.x10_c00406{left:288.090000px;}
.x5b_c00406{left:292.410000px;}
.x2e_c00406{left:294.300000px;}
.x5_c00406{left:298.080000px;}
.x8_c00406{left:300.510000px;}
.x16_c00406{left:304.020000px;}
.x25_c00406{left:308.340000px;}
.x2a_c00406{left:311.310000px;}
.x58_c00406{left:312.660000px;}
.x54_c00406{left:319.950000px;}
.x2f_c00406{left:321.840000px;}
.x73_c00406{left:322.920000px;}
.x65_c00406{left:324.810000px;}
.x46_c00406{left:327.780000px;}
.x2b_c00406{left:330.480000px;}
.x1a_c00406{left:331.560000px;}
.x5c_c00406{left:333.180000px;}
.x59_c00406{left:337.500000px;}
.x74_c00406{left:338.580000px;}
.x6c_c00406{left:339.660000px;}
.x11_c00406{left:341.010000px;}
.x40_c00406{left:343.170000px;}
.x1b_c00406{left:345.870000px;}
.x36_c00406{left:354.240000px;}
.x6_c00406{left:360.180000px;}
.x3b_c00406{left:363.690000px;}
.x5d_c00406{left:365.040000px;}
.x75_c00406{left:366.930000px;}
.x1c_c00406{left:370.710000px;}
.x17_c00406{left:372.330000px;}
.x4a_c00406{left:373.680000px;}
.x7c_c00406{left:384.210000px;}
.x26_c00406{left:386.100000px;}
.x55_c00406{left:390.150000px;}
.x47_c00406{left:391.770000px;}
.x12_c00406{left:392.850000px;}
.x1d_c00406{left:393.930000px;}
.x1e_c00406{left:396.090000px;}
.x3c_c00406{left:399.870000px;}
.x7f_c00406{left:402.840000px;}
.x3_c00406{left:405.270000px;}
.x37_c00406{left:407.160000px;}
.x4b_c00406{left:412.830000px;}
.x9_c00406{left:414.720000px;}
.x30_c00406{left:418.500000px;}
.x80_c00406{left:420.390000px;}
.x41_c00406{left:421.740000px;}
.x50_c00406{left:426.060000px;}
.x66_c00406{left:430.380000px;}
.x18_c00406{left:431.730000px;}
.x76_c00406{left:436.860000px;}
.x67_c00406{left:441.450000px;}
.x27_c00406{left:447.660000px;}
.x31_c00406{left:458.460000px;}
.x13_c00406{left:459.540000px;}
.xa_c00406{left:461.700000px;}
.x77_c00406{left:464.940000px;}
.x6d_c00406{left:467.370000px;}
.x4c_c00406{left:470.070000px;}
.x1f_c00406{left:471.150000px;}
.x78_c00406{left:486.810000px;}
.x42_c00406{left:504.090000px;}
.x68_c00406{left:511.110000px;}
.x6e_c00406{left:522.450000px;}
.x69_c00406{left:528.660000px;}
.x20_c00406{left:544.320000px;}
.x79_c00406{left:547.290000px;}
.x6f_c00406{left:550.530000px;}
.x7a_c00406{left:554.850000px;}
.x70_c00406{left:589.950000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fsa_c00406{font-size:40.133333pt;}
.fsb_c00406{font-size:42.933333pt;}
.fsd_c00406{font-size:46.666667pt;}
.fsc_c00406{font-size:51.333333pt;}
.fse_c00406{font-size:53.200000pt;}
.fs9_c00406{font-size:54.133333pt;}
.fs7_c00406{font-size:56.933333pt;}
.fs6_c00406{font-size:59.733333pt;}
.fs5_c00406{font-size:60.666667pt;}
.fs8_c00406{font-size:61.600000pt;}
.fs3_c00406{font-size:62.533333pt;}
.fs1_c00406{font-size:63.466667pt;}
.fs2_c00406{font-size:65.333333pt;}
.fs4_c00406{font-size:66.266667pt;}
.fs0_c00406{font-size:111.072220pt;}
.y0_c00406{bottom:0.000000pt;}
.y1b_c00406{bottom:135.072000pt;}
.y1a_c00406{bottom:158.932000pt;}
.y19_c00406{bottom:175.920000pt;}
.y18_c00406{bottom:191.552000pt;}
.y17_c00406{bottom:207.016000pt;}
.y16_c00406{bottom:252.798667pt;}
.y15_c00406{bottom:273.270667pt;}
.y14_c00406{bottom:293.449333pt;}
.y13_c00406{bottom:313.762667pt;}
.y12_c00406{bottom:333.744000pt;}
.y11_c00406{bottom:354.525333pt;}
.y10_c00406{bottom:374.882667pt;}
.yf_c00406{bottom:394.505333pt;}
.ye_c00406{bottom:414.690667pt;}
.yd_c00406{bottom:434.664000pt;}
.yc_c00406{bottom:454.981333pt;}
.yb_c00406{bottom:475.454667pt;}
.ya_c00406{bottom:495.172000pt;}
.y9_c00406{bottom:515.768000pt;}
.y8_c00406{bottom:535.738667pt;}
.y7_c00406{bottom:555.677333pt;}
.y6_c00406{bottom:575.281333pt;}
.y5_c00406{bottom:595.144000pt;}
.y4_c00406{bottom:638.777333pt;}
.y1_c00406{bottom:677.521333pt;}
.y2_c00406{bottom:678.777667pt;}
.y3_c00406{bottom:680.121187pt;}
.hc_c00406{height:40.133333pt;}
.hd_c00406{height:42.933333pt;}
.hf_c00406{height:46.666667pt;}
.he_c00406{height:51.333333pt;}
.h10_c00406{height:53.200000pt;}
.hb_c00406{height:54.133333pt;}
.h9_c00406{height:56.933333pt;}
.h8_c00406{height:59.733333pt;}
.h7_c00406{height:60.666667pt;}
.ha_c00406{height:61.600000pt;}
.h5_c00406{height:62.533333pt;}
.h3_c00406{height:63.466667pt;}
.h4_c00406{height:65.333333pt;}
.h6_c00406{height:66.266667pt;}
.h2_c00406{height:111.072220pt;}
.h1_c00406{height:893.333333pt;}
.h0_c00406{height:893.466667pt;}
.w0_c00406{width:635.733333pt;}
.w1_c00406{width:636.000000pt;}
.x0_c00406{left:0.000000pt;}
.x6a_c00406{left:76.560000pt;}
.x5e_c00406{left:77.760000pt;}
.x5f_c00406{left:99.120000pt;}
.x1_c00406{left:100.254667pt;}
.x7d_c00406{left:102.720000pt;}
.x7b_c00406{left:105.840000pt;}
.x60_c00406{left:108.000000pt;}
.x3d_c00406{left:109.920000pt;}
.x32_c00406{left:110.880000pt;}
.xb_c00406{left:111.840000pt;}
.x61_c00406{left:120.960000pt;}
.x7e_c00406{left:123.120000pt;}
.x71_c00406{left:126.000000pt;}
.x4d_c00406{left:131.760000pt;}
.x43_c00406{left:132.720000pt;}
.x33_c00406{left:134.880000pt;}
.x14_c00406{left:136.560000pt;}
.x28_c00406{left:137.760000pt;}
.xc_c00406{left:141.840000pt;}
.x62_c00406{left:144.000000pt;}
.x51_c00406{left:151.440000pt;}
.x38_c00406{left:152.640000pt;}
.x63_c00406{left:156.000000pt;}
.x48_c00406{left:157.440000pt;}
.x3e_c00406{left:159.120000pt;}
.x19_c00406{left:160.080000pt;}
.x23_c00406{left:161.280000pt;}
.x44_c00406{left:164.880000pt;}
.x5a_c00406{left:171.360000pt;}
.x4e_c00406{left:175.440000pt;}
.x39_c00406{left:176.640000pt;}
.x2c_c00406{left:181.200000pt;}
.x34_c00406{left:182.880000pt;}
.x29_c00406{left:184.560000pt;}
.xd_c00406{left:186.000000pt;}
.x45_c00406{left:195.840000pt;}
.x21_c00406{left:198.720000pt;}
.x52_c00406{left:201.600000pt;}
.x72_c00406{left:203.520000pt;}
.x7_c00406{left:205.920000pt;}
.xe_c00406{left:207.120000pt;}
.x4f_c00406{left:211.440000pt;}
.x2d_c00406{left:216.240000pt;}
.x3f_c00406{left:217.200000pt;}
.x49_c00406{left:221.280000pt;}
.x64_c00406{left:222.240000pt;}
.x56_c00406{left:223.680000pt;}
.x2_c00406{left:225.888000pt;}
.x6b_c00406{left:230.640000pt;}
.x24_c00406{left:232.560000pt;}
.x4_c00406{left:234.240000pt;}
.x3a_c00406{left:239.760000pt;}
.x22_c00406{left:242.400000pt;}
.x35_c00406{left:243.840000pt;}
.xf_c00406{left:245.760000pt;}
.x15_c00406{left:248.160000pt;}
.x57_c00406{left:254.160000pt;}
.x53_c00406{left:255.120000pt;}
.x10_c00406{left:256.080000pt;}
.x5b_c00406{left:259.920000pt;}
.x2e_c00406{left:261.600000pt;}
.x5_c00406{left:264.960000pt;}
.x8_c00406{left:267.120000pt;}
.x16_c00406{left:270.240000pt;}
.x25_c00406{left:274.080000pt;}
.x2a_c00406{left:276.720000pt;}
.x58_c00406{left:277.920000pt;}
.x54_c00406{left:284.400000pt;}
.x2f_c00406{left:286.080000pt;}
.x73_c00406{left:287.040000pt;}
.x65_c00406{left:288.720000pt;}
.x46_c00406{left:291.360000pt;}
.x2b_c00406{left:293.760000pt;}
.x1a_c00406{left:294.720000pt;}
.x5c_c00406{left:296.160000pt;}
.x59_c00406{left:300.000000pt;}
.x74_c00406{left:300.960000pt;}
.x6c_c00406{left:301.920000pt;}
.x11_c00406{left:303.120000pt;}
.x40_c00406{left:305.040000pt;}
.x1b_c00406{left:307.440000pt;}
.x36_c00406{left:314.880000pt;}
.x6_c00406{left:320.160000pt;}
.x3b_c00406{left:323.280000pt;}
.x5d_c00406{left:324.480000pt;}
.x75_c00406{left:326.160000pt;}
.x1c_c00406{left:329.520000pt;}
.x17_c00406{left:330.960000pt;}
.x4a_c00406{left:332.160000pt;}
.x7c_c00406{left:341.520000pt;}
.x26_c00406{left:343.200000pt;}
.x55_c00406{left:346.800000pt;}
.x47_c00406{left:348.240000pt;}
.x12_c00406{left:349.200000pt;}
.x1d_c00406{left:350.160000pt;}
.x1e_c00406{left:352.080000pt;}
.x3c_c00406{left:355.440000pt;}
.x7f_c00406{left:358.080000pt;}
.x3_c00406{left:360.240000pt;}
.x37_c00406{left:361.920000pt;}
.x4b_c00406{left:366.960000pt;}
.x9_c00406{left:368.640000pt;}
.x30_c00406{left:372.000000pt;}
.x80_c00406{left:373.680000pt;}
.x41_c00406{left:374.880000pt;}
.x50_c00406{left:378.720000pt;}
.x66_c00406{left:382.560000pt;}
.x18_c00406{left:383.760000pt;}
.x76_c00406{left:388.320000pt;}
.x67_c00406{left:392.400000pt;}
.x27_c00406{left:397.920000pt;}
.x31_c00406{left:407.520000pt;}
.x13_c00406{left:408.480000pt;}
.xa_c00406{left:410.400000pt;}
.x77_c00406{left:413.280000pt;}
.x6d_c00406{left:415.440000pt;}
.x4c_c00406{left:417.840000pt;}
.x1f_c00406{left:418.800000pt;}
.x78_c00406{left:432.720000pt;}
.x42_c00406{left:448.080000pt;}
.x68_c00406{left:454.320000pt;}
.x6e_c00406{left:464.400000pt;}
.x69_c00406{left:469.920000pt;}
.x20_c00406{left:483.840000pt;}
.x79_c00406{left:486.480000pt;}
.x6f_c00406{left:489.360000pt;}
.x7a_c00406{left:493.200000pt;}
.x70_c00406{left:524.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mfe_c00407{transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00407{transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017830,0.000000,0.000000,0.250000,0,0);}
.med_c00407{transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.057720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057720,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.063910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063910,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.099835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099835,0.000000,0.000000,0.250000,0,0);}
.m148_c00407{transform:matrix(0.105055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105055,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{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);}
.mf9_c00407{transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.mf3_c00407{transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138065,0.000000,0.000000,0.250000,0,0);}
.m141_c00407{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);}
.m6c_c00407{transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146520,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.148785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148785,0.000000,0.000000,0.250000,0,0);}
.me7_c00407{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);}
.mda_c00407{transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151095,0.000000,0.000000,0.250000,0,0);}
.me9_c00407{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.m13a_c00407{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);}
.mc0_c00407{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);}
.m47_c00407{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);}
.mc2_c00407{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);}
.m60_c00407{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{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);}
.mc4_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);}
.m147_c00407{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);}
.m9c_c00407{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);}
.m10d_c00407{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);}
.mc9_c00407{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);}
.m146_c00407{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);}
.m11b_c00407{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);}
.m6e_c00407{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);}
.me5_c00407{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);}
.mec_c00407{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);}
.m1a_c00407{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);}
.m99_c00407{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);}
.me6_c00407{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);}
.m4c_c00407{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);}
.m39_c00407{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);}
.m6f_c00407{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);}
.m6b_c00407{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);}
.mb_c00407{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);}
.m136_c00407{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);}
.m48_c00407{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);}
.m125_c00407{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);}
.m10c_c00407{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);}
.m3c_c00407{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);}
.m7b_c00407{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);}
.m135_c00407{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);}
.m8f_c00407{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);}
.m46_c00407{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);}
.m61_c00407{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);}
.m20_c00407{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);}
.m30_c00407{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);}
.m13d_c00407{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);}
.m7f_c00407{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);}
.m90_c00407{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);}
.m68_c00407{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);}
.mc1_c00407{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);}
.m23_c00407{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);}
.m6_c00407{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);}
.m91_c00407{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);}
.m7_c00407{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);}
.m137_c00407{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);}
.me2_c00407{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);}
.m5f_c00407{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.me8_c00407{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);}
.m138_c00407{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);}
.m139_c00407{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);}
.m112_c00407{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);}
.m108_c00407{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);}
.m9b_c00407{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);}
.m128_c00407{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);}
.m8_c00407{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);}
.m81_c00407{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);}
.m77_c00407{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);}
.m13c_c00407{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);}
.me_c00407{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);}
.md_c00407{transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172195,0.000000,0.000000,0.250000,0,0);}
.m114_c00407{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);}
.m145_c00407{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);}
.m142_c00407{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);}
.m82_c00407{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);}
.m113_c00407{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);}
.m5b_c00407{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);}
.m126_c00407{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);}
.m44_c00407{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);}
.m67_c00407{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);}
.m144_c00407{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);}
.m33_c00407{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);}
.m10a_c00407{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);}
.m104_c00407{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);}
.m25_c00407{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);}
.m4e_c00407{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);}
.m8b_c00407{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);}
.mca_c00407{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);}
.m109_c00407{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);}
.m52_c00407{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);}
.m11a_c00407{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);}
.mce_c00407{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);}
.md6_c00407{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);}
.me3_c00407{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);}
.m69_c00407{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);}
.m5c_c00407{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);}
.m45_c00407{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);}
.m149_c00407{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);}
.mc3_c00407{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);}
.m102_c00407{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);}
.m18_c00407{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);}
.mb2_c00407{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);}
.m12a_c00407{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);}
.m127_c00407{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);}
.ma1_c00407{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);}
.m6d_c00407{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);}
.m9_c00407{transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);}
.ma3_c00407{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);}
.m14a_c00407{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);}
.mdf_c00407{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);}
.m4d_c00407{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);}
.ma8_c00407{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);}
.mf0_c00407{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);}
.md9_c00407{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);}
.m58_c00407{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);}
.m143_c00407{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);}
.m150_c00407{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);}
.m16_c00407{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);}
.maf_c00407{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);}
.me4_c00407{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);}
.m13e_c00407{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);}
.mc_c00407{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);}
.m97_c00407{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);}
.m8d_c00407{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);}
.m38_c00407{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);}
.m3e_c00407{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);}
.mab_c00407{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);}
.meb_c00407{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);}
.mc5_c00407{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);}
.m64_c00407{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);}
.m11d_c00407{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);}
.m118_c00407{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);}
.m11c_c00407{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);}
.m132_c00407{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);}
.mb0_c00407{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);}
.m7d_c00407{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);}
.m56_c00407{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);}
.m9d_c00407{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);}
.m8e_c00407{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);}
.ma2_c00407{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);}
.m13_c00407{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);}
.m75_c00407{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);}
.m11f_c00407{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);}
.m105_c00407{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);}
.m71_c00407{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);}
.mfd_c00407{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);}
.mf2_c00407{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);}
.m13b_c00407{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);}
.mbb_c00407{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);}
.m80_c00407{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);}
.m103_c00407{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);}
.m106_c00407{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);}
.mdc_c00407{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);}
.me0_c00407{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);}
.m17_c00407{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);}
.m115_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);}
.ma0_c00407{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);}
.m10e_c00407{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);}
.m98_c00407{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_c00407{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);}
.m28_c00407{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);}
.me1_c00407{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);}
.mcb_c00407{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);}
.m130_c00407{transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);}
.mea_c00407{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);}
.m84_c00407{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);}
.maa_c00407{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);}
.m88_c00407{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);}
.mde_c00407{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);}
.mba_c00407{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);}
.mad_c00407{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);}
.m57_c00407{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);}
.m2e_c00407{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);}
.m1f_c00407{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);}
.m11e_c00407{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);}
.m73_c00407{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);}
.m29_c00407{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);}
.mae_c00407{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);}
.m2d_c00407{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);}
.m86_c00407{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);}
.m2b_c00407{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);}
.m87_c00407{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);}
.mfa_c00407{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);}
.m31_c00407{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);}
.md5_c00407{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);}
.m13f_c00407{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);}
.m12d_c00407{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);}
.m79_c00407{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);}
.m10_c00407{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);}
.m74_c00407{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);}
.mdd_c00407{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);}
.m140_c00407{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);}
.m124_c00407{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);}
.m70_c00407{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);}
.m96_c00407{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);}
.m1e_c00407{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);}
.m101_c00407{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);}
.m59_c00407{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);}
.m76_c00407{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);}
.m63_c00407{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);}
.mcc_c00407{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);}
.m37_c00407{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);}
.ma9_c00407{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);}
.m32_c00407{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);}
.mb3_c00407{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);}
.m27_c00407{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);}
.mbc_c00407{transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{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);}
.m120_c00407{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);}
.m1d_c00407{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);}
.m123_c00407{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);}
.ma_c00407{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);}
.m151_c00407{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);}
.m40_c00407{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);}
.m54_c00407{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);}
.m131_c00407{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);}
.m43_c00407{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);}
.m66_c00407{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);}
.m14b_c00407{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);}
.m2a_c00407{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);}
.m24_c00407{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);}
.md8_c00407{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);}
.m92_c00407{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);}
.md2_c00407{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);}
.m26_c00407{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);}
.mb8_c00407{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);}
.m3f_c00407{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);}
.m117_c00407{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);}
.m95_c00407{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);}
.m4b_c00407{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);}
.m12e_c00407{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);}
.m4f_c00407{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);}
.mdb_c00407{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);}
.mb7_c00407{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);}
.m14f_c00407{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);}
.mbf_c00407{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);}
.mb9_c00407{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);}
.m1c_c00407{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);}
.m9a_c00407{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);}
.mef_c00407{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);}
.m78_c00407{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);}
.m12f_c00407{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m7a_c00407{transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);}
.mb6_c00407{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);}
.m10f_c00407{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);}
.mac_c00407{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);}
.m5a_c00407{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);}
.ma7_c00407{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);}
.m14_c00407{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{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);}
.m5e_c00407{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);}
.m14e_c00407{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);}
.m22_c00407{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);}
.ma5_c00407{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);}
.m9e_c00407{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{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);}
.md3_c00407{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);}
.mcf_c00407{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);}
.m9f_c00407{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);}
.mee_c00407{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);}
.m42_c00407{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);}
.m7e_c00407{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);}
.mb4_c00407{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);}
.ma6_c00407{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);}
.m49_c00407{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);}
.m14c_c00407{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);}
.mfc_c00407{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);}
.m10b_c00407{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);}
.m119_c00407{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);}
.m107_c00407{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);}
.m2f_c00407{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{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);}
.m121_c00407{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);}
.m110_c00407{transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{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);}
.md4_c00407{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);}
.mc8_c00407{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);}
.mb5_c00407{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.md7_c00407{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);}
.m12c_c00407{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.mc6_c00407{transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{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);}
.mff_c00407{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);}
.m14d_c00407{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);}
.mc7_c00407{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);}
.m116_c00407{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);}
.m93_c00407{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m100_c00407{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.mbe_c00407{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{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);}
.m55_c00407{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.mcd_c00407{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260865,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.md1_c00407{transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262015,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00407{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);}
.md0_c00407{transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272460,0.000000,0.000000,0.250000,0,0);}
.mfb_c00407{transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);}
.m12b_c00407{transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277420,0.000000,0.000000,0.250000,0,0);}
.m133_c00407{transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280525,0.000000,0.000000,0.250000,0,0);}
.mf4_c00407{transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282900,0.000000,0.000000,0.250000,0,0);}
.m129_c00407{transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);}
.m134_c00407{transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298735,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299780,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314505,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.314810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314810,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);}
.m111_c00407{transform:matrix(0.326125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326125,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.345020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345020,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);}
.m122_c00407{transform:matrix(0.366155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366155,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374295,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.381235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391650,0.000000,0.000000,0.250000,0,0);}
.mf8_c00407{transform:matrix(0.400805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400805,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00407{transform:matrix(0.422480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422480,0.000000,0.000000,0.250000,0,0);}
.mf6_c00407{transform:matrix(0.475120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475120,0.000000,0.000000,0.250000,0,0);}
.mf1_c00407{transform:matrix(0.523770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523770,0.000000,0.000000,0.250000,0,0);}
.mf5_c00407{transform:matrix(0.540480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540480,0.000000,0.000000,0.250000,0,0);}
.ma4_c00407{transform:matrix(0.547880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547880,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.547945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547945,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.743280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743280,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.967630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967630,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;}
.fs11_c00407{font-size:47.250000px;}
.fse_c00407{font-size:49.350000px;}
.fs16_c00407{font-size:50.400000px;}
.fsf_c00407{font-size:51.450000px;}
.fs17_c00407{font-size:52.500000px;}
.fsd_c00407{font-size:53.550000px;}
.fs10_c00407{font-size:54.600000px;}
.fs15_c00407{font-size:57.750000px;}
.fs18_c00407{font-size:59.850000px;}
.fs12_c00407{font-size:60.900000px;}
.fs8_c00407{font-size:61.950000px;}
.fsc_c00407{font-size:64.050000px;}
.fs6_c00407{font-size:65.100000px;}
.fsb_c00407{font-size:66.150000px;}
.fs5_c00407{font-size:68.250000px;}
.fs9_c00407{font-size:69.300000px;}
.fs7_c00407{font-size:70.350000px;}
.fs3_c00407{font-size:71.400000px;}
.fsa_c00407{font-size:73.500000px;}
.fs4_c00407{font-size:77.700000px;}
.fs14_c00407{font-size:88.200000px;}
.fs2_c00407{font-size:90.300000px;}
.fs0_c00407{font-size:93.450000px;}
.fs13_c00407{font-size:96.600000px;}
.fs1_c00407{font-size:106.050000px;}
.y0_c00407{bottom:0.000000px;}
.y25_c00407{bottom:104.248500px;}
.y24_c00407{bottom:119.482500px;}
.y23_c00407{bottom:134.713500px;}
.y31_c00407{bottom:161.209500px;}
.y22_c00407{bottom:162.801000px;}
.y30_c00407{bottom:179.421000px;}
.y21_c00407{bottom:180.934500px;}
.y2f_c00407{bottom:197.596500px;}
.y20_c00407{bottom:199.287000px;}
.y2e_c00407{bottom:215.769000px;}
.y1f_c00407{bottom:217.599000px;}
.y2d_c00407{bottom:233.494500px;}
.y1e_c00407{bottom:235.038000px;}
.y26_c00407{bottom:235.419000px;}
.y2c_c00407{bottom:251.214000px;}
.y1d_c00407{bottom:252.799500px;}
.y2b_c00407{bottom:269.112000px;}
.y1c_c00407{bottom:270.832500px;}
.y2a_c00407{bottom:287.434500px;}
.y1b_c00407{bottom:289.680000px;}
.y29_c00407{bottom:306.067500px;}
.y1a_c00407{bottom:307.014000px;}
.y28_c00407{bottom:324.157500px;}
.y19_c00407{bottom:324.676500px;}
.y27_c00407{bottom:341.869500px;}
.y18_c00407{bottom:342.948000px;}
.y17_c00407{bottom:398.520000px;}
.y16_c00407{bottom:421.540500px;}
.y15_c00407{bottom:444.438000px;}
.y14_c00407{bottom:466.419000px;}
.y13_c00407{bottom:489.013500px;}
.y12_c00407{bottom:512.191500px;}
.y11_c00407{bottom:534.510000px;}
.y10_c00407{bottom:556.776000px;}
.yf_c00407{bottom:580.156500px;}
.ye_c00407{bottom:603.076500px;}
.yd_c00407{bottom:625.573500px;}
.yc_c00407{bottom:648.700500px;}
.yb_c00407{bottom:671.070000px;}
.ya_c00407{bottom:693.919500px;}
.y9_c00407{bottom:716.530500px;}
.y8_c00407{bottom:739.221000px;}
.y7_c00407{bottom:761.901000px;}
.y6_c00407{bottom:785.104500px;}
.y5_c00407{bottom:807.331500px;}
.y4_c00407{bottom:832.140000px;}
.y2_c00407{bottom:870.750000px;}
.y3_c00407{bottom:878.293500px;}
.y1_c00407{bottom:932.530500px;}
.h13_c00407{height:47.250000px;}
.h10_c00407{height:49.350000px;}
.h18_c00407{height:50.400000px;}
.h11_c00407{height:51.450000px;}
.h19_c00407{height:52.500000px;}
.hf_c00407{height:53.550000px;}
.h12_c00407{height:54.600000px;}
.h17_c00407{height:57.750000px;}
.h1a_c00407{height:59.850000px;}
.h14_c00407{height:60.900000px;}
.ha_c00407{height:61.950000px;}
.he_c00407{height:64.050000px;}
.h8_c00407{height:65.100000px;}
.hd_c00407{height:66.150000px;}
.h7_c00407{height:68.250000px;}
.hb_c00407{height:69.300000px;}
.h9_c00407{height:70.350000px;}
.h5_c00407{height:71.400000px;}
.hc_c00407{height:73.500000px;}
.h6_c00407{height:77.700000px;}
.h16_c00407{height:88.200000px;}
.h4_c00407{height:90.300000px;}
.h2_c00407{height:93.450000px;}
.h15_c00407{height:96.600000px;}
.h3_c00407{height:106.050000px;}
.h0_c00407{height:1008.450000px;}
.h1_c00407{height:1008.750000px;}
.w1_c00407{width:689.250000px;}
.w0_c00407{width:689.550000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:84.510000px;}
.x98_c00407{left:94.500000px;}
.x9b_c00407{left:99.090000px;}
.x9c_c00407{left:116.100000px;}
.x99_c00407{left:129.330000px;}
.x2_c00407{left:140.670000px;}
.x7d_c00407{left:148.230000px;}
.x88_c00407{left:149.580000px;}
.x84_c00407{left:152.280000px;}
.x85_c00407{left:157.680000px;}
.x8a_c00407{left:158.760000px;}
.x75_c00407{left:160.920000px;}
.x19_c00407{left:163.620000px;}
.x93_c00407{left:166.590000px;}
.x12_c00407{left:167.670000px;}
.x13_c00407{left:172.260000px;}
.x76_c00407{left:174.690000px;}
.x7_c00407{left:177.390000px;}
.x22_c00407{left:178.470000px;}
.x28_c00407{left:179.550000px;}
.x5b_c00407{left:181.710000px;}
.x41_c00407{left:183.060000px;}
.x81_c00407{left:186.030000px;}
.x7e_c00407{left:188.460000px;}
.x9a_c00407{left:190.620000px;}
.x77_c00407{left:193.590000px;}
.x56_c00407{left:202.230000px;}
.x48_c00407{left:203.580000px;}
.x65_c00407{left:204.660000px;}
.x1a_c00407{left:206.550000px;}
.x3b_c00407{left:208.980000px;}
.x8b_c00407{left:213.570000px;}
.x82_c00407{left:214.650000px;}
.x8_c00407{left:216.270000px;}
.x69_c00407{left:220.050000px;}
.x57_c00407{left:221.670000px;}
.x14_c00407{left:223.830000px;}
.x86_c00407{left:225.450000px;}
.x8c_c00407{left:227.610000px;}
.x34_c00407{left:228.690000px;}
.x49_c00407{left:230.850000px;}
.x8e_c00407{left:232.200000px;}
.x63_c00407{left:234.630000px;}
.x4d_c00407{left:236.250000px;}
.x1b_c00407{left:238.950000px;}
.x78_c00407{left:240.840000px;}
.x3c_c00407{left:242.460000px;}
.x29_c00407{left:244.350000px;}
.x6f_c00407{left:245.430000px;}
.x94_c00407{left:246.510000px;}
.x83_c00407{left:247.590000px;}
.x9_c00407{left:249.480000px;}
.x7f_c00407{left:252.180000px;}
.x6a_c00407{left:255.150000px;}
.x58_c00407{left:258.390000px;}
.x79_c00407{left:260.010000px;}
.x90_c00407{left:262.170000px;}
.x35_c00407{left:266.220000px;}
.x64_c00407{left:268.110000px;}
.x4e_c00407{left:269.730000px;}
.x2e_c00407{left:270.810000px;}
.x3_c00407{left:274.320000px;}
.x15_c00407{left:275.400000px;}
.x23_c00407{left:277.560000px;}
.x1c_c00407{left:279.720000px;}
.x42_c00407{left:280.800000px;}
.x6b_c00407{left:282.420000px;}
.x72_c00407{left:285.390000px;}
.x4f_c00407{left:287.280000px;}
.x89_c00407{left:288.630000px;}
.x2f_c00407{left:290.520000px;}
.x7a_c00407{left:291.600000px;}
.xa_c00407{left:295.110000px;}
.x87_c00407{left:297.540000px;}
.x70_c00407{left:299.430000px;}
.x24_c00407{left:303.750000px;}
.x95_c00407{left:305.100000px;}
.x1d_c00407{left:307.260000px;}
.x36_c00407{left:309.690000px;}
.x43_c00407{left:310.770000px;}
.x66_c00407{left:315.630000px;}
.x91_c00407{left:318.330000px;}
.x73_c00407{left:320.490000px;}
.x80_c00407{left:321.570000px;}
.x2a_c00407{left:323.190000px;}
.x50_c00407{left:324.540000px;}
.xb_c00407{left:326.970000px;}
.x7b_c00407{left:328.590000px;}
.x4a_c00407{left:329.940000px;}
.x8f_c00407{left:332.370000px;}
.x8d_c00407{left:335.070000px;}
.x6_c00407{left:338.040000px;}
.x3d_c00407{left:340.200000px;}
.x96_c00407{left:343.710000px;}
.x37_c00407{left:345.870000px;}
.x25_c00407{left:347.490000px;}
.x7c_c00407{left:349.650000px;}
.x92_c00407{left:353.430000px;}
.x4b_c00407{left:356.940000px;}
.x4_c00407{left:358.560000px;}
.x44_c00407{left:359.910000px;}
.x59_c00407{left:361.260000px;}
.x1e_c00407{left:363.960000px;}
.x74_c00407{left:366.390000px;}
.x5c_c00407{left:373.950000px;}
.x3e_c00407{left:376.650000px;}
.x45_c00407{left:378.810000px;}
.x38_c00407{left:381.510000px;}
.x97_c00407{left:384.210000px;}
.x6c_c00407{left:389.070000px;}
.x2b_c00407{left:390.690000px;}
.x51_c00407{left:391.770000px;}
.x16_c00407{left:393.660000px;}
.xaa_c00407{left:395.010000px;}
.x5_c00407{left:396.630000px;}
.x67_c00407{left:398.250000px;}
.xbe_c00407{left:399.330000px;}
.x30_c00407{left:400.410000px;}
.xa1_c00407{left:401.490000px;}
.xc5_c00407{left:402.570000px;}
.x39_c00407{left:406.080000px;}
.x46_c00407{left:409.050000px;}
.x71_c00407{left:410.670000px;}
.x5d_c00407{left:412.020000px;}
.xc_c00407{left:413.640000px;}
.x31_c00407{left:420.120000px;}
.x4c_c00407{left:422.010000px;}
.x2c_c00407{left:423.630000px;}
.x47_c00407{left:426.330000px;}
.x61_c00407{left:428.490000px;}
.x68_c00407{left:433.080000px;}
.xba_c00407{left:434.160000px;}
.x52_c00407{left:435.780000px;}
.xbf_c00407{left:437.130000px;}
.x6d_c00407{left:438.750000px;}
.x17_c00407{left:443.340000px;}
.x3a_c00407{left:446.850000px;}
.xb3_c00407{left:448.200000px;}
.xc6_c00407{left:450.090000px;}
.x1f_c00407{left:451.710000px;}
.xc0_c00407{left:455.220000px;}
.x9d_c00407{left:459.000000px;}
.x3f_c00407{left:461.430000px;}
.x18_c00407{left:462.510000px;}
.xa2_c00407{left:463.860000px;}
.x53_c00407{left:464.940000px;}
.x6e_c00407{left:466.020000px;}
.xb4_c00407{left:467.370000px;}
.xd_c00407{left:468.990000px;}
.x62_c00407{left:471.690000px;}
.x32_c00407{left:477.090000px;}
.x5e_c00407{left:478.980000px;}
.xbb_c00407{left:481.140000px;}
.xab_c00407{left:482.760000px;}
.xb5_c00407{left:486.270000px;}
.x26_c00407{left:487.350000px;}
.xbc_c00407{left:488.430000px;}
.x2d_c00407{left:489.510000px;}
.xc1_c00407{left:491.130000px;}
.xe_c00407{left:493.290000px;}
.x5f_c00407{left:496.530000px;}
.x9e_c00407{left:497.610000px;}
.x33_c00407{left:501.120000px;}
.x54_c00407{left:502.200000px;}
.xa3_c00407{left:503.820000px;}
.xb1_c00407{left:505.440000px;}
.xb6_c00407{left:510.300000px;}
.x27_c00407{left:511.920000px;}
.xc2_c00407{left:513.810000px;}
.xf_c00407{left:515.430000px;}
.xc7_c00407{left:519.750000px;}
.xae_c00407{left:521.640000px;}
.x40_c00407{left:523.800000px;}
.x9f_c00407{left:527.580000px;}
.x60_c00407{left:532.170000px;}
.x21_c00407{left:534.330000px;}
.xa4_c00407{left:535.680000px;}
.x20_c00407{left:537.300000px;}
.xa7_c00407{left:542.430000px;}
.xb7_c00407{left:544.050000px;}
.xaf_c00407{left:545.670000px;}
.xb2_c00407{left:547.290000px;}
.x10_c00407{left:551.070000px;}
.xac_c00407{left:560.250000px;}
.xb8_c00407{left:561.330000px;}
.xc3_c00407{left:562.410000px;}
.xa8_c00407{left:565.380000px;}
.x55_c00407{left:567.540000px;}
.xc8_c00407{left:569.430000px;}
.xc4_c00407{left:577.800000px;}
.x5a_c00407{left:578.880000px;}
.x11_c00407{left:583.740000px;}
.xa0_c00407{left:585.900000px;}
.xa5_c00407{left:587.790000px;}
.xa9_c00407{left:592.920000px;}
.xc9_c00407{left:594.810000px;}
.xbd_c00407{left:599.400000px;}
.xb9_c00407{left:605.340000px;}
.xad_c00407{left:612.360000px;}
.xa6_c00407{left:615.060000px;}
.xb0_c00407{left:621.540000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fs11_c00407{font-size:42.000000pt;}
.fse_c00407{font-size:43.866667pt;}
.fs16_c00407{font-size:44.800000pt;}
.fsf_c00407{font-size:45.733333pt;}
.fs17_c00407{font-size:46.666667pt;}
.fsd_c00407{font-size:47.600000pt;}
.fs10_c00407{font-size:48.533333pt;}
.fs15_c00407{font-size:51.333333pt;}
.fs18_c00407{font-size:53.200000pt;}
.fs12_c00407{font-size:54.133333pt;}
.fs8_c00407{font-size:55.066667pt;}
.fsc_c00407{font-size:56.933333pt;}
.fs6_c00407{font-size:57.866667pt;}
.fsb_c00407{font-size:58.800000pt;}
.fs5_c00407{font-size:60.666667pt;}
.fs9_c00407{font-size:61.600000pt;}
.fs7_c00407{font-size:62.533333pt;}
.fs3_c00407{font-size:63.466667pt;}
.fsa_c00407{font-size:65.333333pt;}
.fs4_c00407{font-size:69.066667pt;}
.fs14_c00407{font-size:78.400000pt;}
.fs2_c00407{font-size:80.266667pt;}
.fs0_c00407{font-size:83.066667pt;}
.fs13_c00407{font-size:85.866667pt;}
.fs1_c00407{font-size:94.266667pt;}
.y0_c00407{bottom:0.000000pt;}
.y25_c00407{bottom:92.665333pt;}
.y24_c00407{bottom:106.206667pt;}
.y23_c00407{bottom:119.745333pt;}
.y31_c00407{bottom:143.297333pt;}
.y22_c00407{bottom:144.712000pt;}
.y30_c00407{bottom:159.485333pt;}
.y21_c00407{bottom:160.830667pt;}
.y2f_c00407{bottom:175.641333pt;}
.y20_c00407{bottom:177.144000pt;}
.y2e_c00407{bottom:191.794667pt;}
.y1f_c00407{bottom:193.421333pt;}
.y2d_c00407{bottom:207.550667pt;}
.y1e_c00407{bottom:208.922667pt;}
.y26_c00407{bottom:209.261333pt;}
.y2c_c00407{bottom:223.301333pt;}
.y1d_c00407{bottom:224.710667pt;}
.y2b_c00407{bottom:239.210667pt;}
.y1c_c00407{bottom:240.740000pt;}
.y2a_c00407{bottom:255.497333pt;}
.y1b_c00407{bottom:257.493333pt;}
.y29_c00407{bottom:272.060000pt;}
.y1a_c00407{bottom:272.901333pt;}
.y28_c00407{bottom:288.140000pt;}
.y19_c00407{bottom:288.601333pt;}
.y27_c00407{bottom:303.884000pt;}
.y18_c00407{bottom:304.842667pt;}
.y17_c00407{bottom:354.240000pt;}
.y16_c00407{bottom:374.702667pt;}
.y15_c00407{bottom:395.056000pt;}
.y14_c00407{bottom:414.594667pt;}
.y13_c00407{bottom:434.678667pt;}
.y12_c00407{bottom:455.281333pt;}
.y11_c00407{bottom:475.120000pt;}
.y10_c00407{bottom:494.912000pt;}
.yf_c00407{bottom:515.694667pt;}
.ye_c00407{bottom:536.068000pt;}
.yd_c00407{bottom:556.065333pt;}
.yc_c00407{bottom:576.622667pt;}
.yb_c00407{bottom:596.506667pt;}
.ya_c00407{bottom:616.817333pt;}
.y9_c00407{bottom:636.916000pt;}
.y8_c00407{bottom:657.085333pt;}
.y7_c00407{bottom:677.245333pt;}
.y6_c00407{bottom:697.870667pt;}
.y5_c00407{bottom:717.628000pt;}
.y4_c00407{bottom:739.680000pt;}
.y2_c00407{bottom:774.000000pt;}
.y3_c00407{bottom:780.705333pt;}
.y1_c00407{bottom:828.916000pt;}
.h13_c00407{height:42.000000pt;}
.h10_c00407{height:43.866667pt;}
.h18_c00407{height:44.800000pt;}
.h11_c00407{height:45.733333pt;}
.h19_c00407{height:46.666667pt;}
.hf_c00407{height:47.600000pt;}
.h12_c00407{height:48.533333pt;}
.h17_c00407{height:51.333333pt;}
.h1a_c00407{height:53.200000pt;}
.h14_c00407{height:54.133333pt;}
.ha_c00407{height:55.066667pt;}
.he_c00407{height:56.933333pt;}
.h8_c00407{height:57.866667pt;}
.hd_c00407{height:58.800000pt;}
.h7_c00407{height:60.666667pt;}
.hb_c00407{height:61.600000pt;}
.h9_c00407{height:62.533333pt;}
.h5_c00407{height:63.466667pt;}
.hc_c00407{height:65.333333pt;}
.h6_c00407{height:69.066667pt;}
.h16_c00407{height:78.400000pt;}
.h4_c00407{height:80.266667pt;}
.h2_c00407{height:83.066667pt;}
.h15_c00407{height:85.866667pt;}
.h3_c00407{height:94.266667pt;}
.h0_c00407{height:896.400000pt;}
.h1_c00407{height:896.666667pt;}
.w1_c00407{width:612.666667pt;}
.w0_c00407{width:612.933333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:75.120000pt;}
.x98_c00407{left:84.000000pt;}
.x9b_c00407{left:88.080000pt;}
.x9c_c00407{left:103.200000pt;}
.x99_c00407{left:114.960000pt;}
.x2_c00407{left:125.040000pt;}
.x7d_c00407{left:131.760000pt;}
.x88_c00407{left:132.960000pt;}
.x84_c00407{left:135.360000pt;}
.x85_c00407{left:140.160000pt;}
.x8a_c00407{left:141.120000pt;}
.x75_c00407{left:143.040000pt;}
.x19_c00407{left:145.440000pt;}
.x93_c00407{left:148.080000pt;}
.x12_c00407{left:149.040000pt;}
.x13_c00407{left:153.120000pt;}
.x76_c00407{left:155.280000pt;}
.x7_c00407{left:157.680000pt;}
.x22_c00407{left:158.640000pt;}
.x28_c00407{left:159.600000pt;}
.x5b_c00407{left:161.520000pt;}
.x41_c00407{left:162.720000pt;}
.x81_c00407{left:165.360000pt;}
.x7e_c00407{left:167.520000pt;}
.x9a_c00407{left:169.440000pt;}
.x77_c00407{left:172.080000pt;}
.x56_c00407{left:179.760000pt;}
.x48_c00407{left:180.960000pt;}
.x65_c00407{left:181.920000pt;}
.x1a_c00407{left:183.600000pt;}
.x3b_c00407{left:185.760000pt;}
.x8b_c00407{left:189.840000pt;}
.x82_c00407{left:190.800000pt;}
.x8_c00407{left:192.240000pt;}
.x69_c00407{left:195.600000pt;}
.x57_c00407{left:197.040000pt;}
.x14_c00407{left:198.960000pt;}
.x86_c00407{left:200.400000pt;}
.x8c_c00407{left:202.320000pt;}
.x34_c00407{left:203.280000pt;}
.x49_c00407{left:205.200000pt;}
.x8e_c00407{left:206.400000pt;}
.x63_c00407{left:208.560000pt;}
.x4d_c00407{left:210.000000pt;}
.x1b_c00407{left:212.400000pt;}
.x78_c00407{left:214.080000pt;}
.x3c_c00407{left:215.520000pt;}
.x29_c00407{left:217.200000pt;}
.x6f_c00407{left:218.160000pt;}
.x94_c00407{left:219.120000pt;}
.x83_c00407{left:220.080000pt;}
.x9_c00407{left:221.760000pt;}
.x7f_c00407{left:224.160000pt;}
.x6a_c00407{left:226.800000pt;}
.x58_c00407{left:229.680000pt;}
.x79_c00407{left:231.120000pt;}
.x90_c00407{left:233.040000pt;}
.x35_c00407{left:236.640000pt;}
.x64_c00407{left:238.320000pt;}
.x4e_c00407{left:239.760000pt;}
.x2e_c00407{left:240.720000pt;}
.x3_c00407{left:243.840000pt;}
.x15_c00407{left:244.800000pt;}
.x23_c00407{left:246.720000pt;}
.x1c_c00407{left:248.640000pt;}
.x42_c00407{left:249.600000pt;}
.x6b_c00407{left:251.040000pt;}
.x72_c00407{left:253.680000pt;}
.x4f_c00407{left:255.360000pt;}
.x89_c00407{left:256.560000pt;}
.x2f_c00407{left:258.240000pt;}
.x7a_c00407{left:259.200000pt;}
.xa_c00407{left:262.320000pt;}
.x87_c00407{left:264.480000pt;}
.x70_c00407{left:266.160000pt;}
.x24_c00407{left:270.000000pt;}
.x95_c00407{left:271.200000pt;}
.x1d_c00407{left:273.120000pt;}
.x36_c00407{left:275.280000pt;}
.x43_c00407{left:276.240000pt;}
.x66_c00407{left:280.560000pt;}
.x91_c00407{left:282.960000pt;}
.x73_c00407{left:284.880000pt;}
.x80_c00407{left:285.840000pt;}
.x2a_c00407{left:287.280000pt;}
.x50_c00407{left:288.480000pt;}
.xb_c00407{left:290.640000pt;}
.x7b_c00407{left:292.080000pt;}
.x4a_c00407{left:293.280000pt;}
.x8f_c00407{left:295.440000pt;}
.x8d_c00407{left:297.840000pt;}
.x6_c00407{left:300.480000pt;}
.x3d_c00407{left:302.400000pt;}
.x96_c00407{left:305.520000pt;}
.x37_c00407{left:307.440000pt;}
.x25_c00407{left:308.880000pt;}
.x7c_c00407{left:310.800000pt;}
.x92_c00407{left:314.160000pt;}
.x4b_c00407{left:317.280000pt;}
.x4_c00407{left:318.720000pt;}
.x44_c00407{left:319.920000pt;}
.x59_c00407{left:321.120000pt;}
.x1e_c00407{left:323.520000pt;}
.x74_c00407{left:325.680000pt;}
.x5c_c00407{left:332.400000pt;}
.x3e_c00407{left:334.800000pt;}
.x45_c00407{left:336.720000pt;}
.x38_c00407{left:339.120000pt;}
.x97_c00407{left:341.520000pt;}
.x6c_c00407{left:345.840000pt;}
.x2b_c00407{left:347.280000pt;}
.x51_c00407{left:348.240000pt;}
.x16_c00407{left:349.920000pt;}
.xaa_c00407{left:351.120000pt;}
.x5_c00407{left:352.560000pt;}
.x67_c00407{left:354.000000pt;}
.xbe_c00407{left:354.960000pt;}
.x30_c00407{left:355.920000pt;}
.xa1_c00407{left:356.880000pt;}
.xc5_c00407{left:357.840000pt;}
.x39_c00407{left:360.960000pt;}
.x46_c00407{left:363.600000pt;}
.x71_c00407{left:365.040000pt;}
.x5d_c00407{left:366.240000pt;}
.xc_c00407{left:367.680000pt;}
.x31_c00407{left:373.440000pt;}
.x4c_c00407{left:375.120000pt;}
.x2c_c00407{left:376.560000pt;}
.x47_c00407{left:378.960000pt;}
.x61_c00407{left:380.880000pt;}
.x68_c00407{left:384.960000pt;}
.xba_c00407{left:385.920000pt;}
.x52_c00407{left:387.360000pt;}
.xbf_c00407{left:388.560000pt;}
.x6d_c00407{left:390.000000pt;}
.x17_c00407{left:394.080000pt;}
.x3a_c00407{left:397.200000pt;}
.xb3_c00407{left:398.400000pt;}
.xc6_c00407{left:400.080000pt;}
.x1f_c00407{left:401.520000pt;}
.xc0_c00407{left:404.640000pt;}
.x9d_c00407{left:408.000000pt;}
.x3f_c00407{left:410.160000pt;}
.x18_c00407{left:411.120000pt;}
.xa2_c00407{left:412.320000pt;}
.x53_c00407{left:413.280000pt;}
.x6e_c00407{left:414.240000pt;}
.xb4_c00407{left:415.440000pt;}
.xd_c00407{left:416.880000pt;}
.x62_c00407{left:419.280000pt;}
.x32_c00407{left:424.080000pt;}
.x5e_c00407{left:425.760000pt;}
.xbb_c00407{left:427.680000pt;}
.xab_c00407{left:429.120000pt;}
.xb5_c00407{left:432.240000pt;}
.x26_c00407{left:433.200000pt;}
.xbc_c00407{left:434.160000pt;}
.x2d_c00407{left:435.120000pt;}
.xc1_c00407{left:436.560000pt;}
.xe_c00407{left:438.480000pt;}
.x5f_c00407{left:441.360000pt;}
.x9e_c00407{left:442.320000pt;}
.x33_c00407{left:445.440000pt;}
.x54_c00407{left:446.400000pt;}
.xa3_c00407{left:447.840000pt;}
.xb1_c00407{left:449.280000pt;}
.xb6_c00407{left:453.600000pt;}
.x27_c00407{left:455.040000pt;}
.xc2_c00407{left:456.720000pt;}
.xf_c00407{left:458.160000pt;}
.xc7_c00407{left:462.000000pt;}
.xae_c00407{left:463.680000pt;}
.x40_c00407{left:465.600000pt;}
.x9f_c00407{left:468.960000pt;}
.x60_c00407{left:473.040000pt;}
.x21_c00407{left:474.960000pt;}
.xa4_c00407{left:476.160000pt;}
.x20_c00407{left:477.600000pt;}
.xa7_c00407{left:482.160000pt;}
.xb7_c00407{left:483.600000pt;}
.xaf_c00407{left:485.040000pt;}
.xb2_c00407{left:486.480000pt;}
.x10_c00407{left:489.840000pt;}
.xac_c00407{left:498.000000pt;}
.xb8_c00407{left:498.960000pt;}
.xc3_c00407{left:499.920000pt;}
.xa8_c00407{left:502.560000pt;}
.x55_c00407{left:504.480000pt;}
.xc8_c00407{left:506.160000pt;}
.xc4_c00407{left:513.600000pt;}
.x5a_c00407{left:514.560000pt;}
.x11_c00407{left:518.880000pt;}
.xa0_c00407{left:520.800000pt;}
.xa5_c00407{left:522.480000pt;}
.xa9_c00407{left:527.040000pt;}
.xc9_c00407{left:528.720000pt;}
.xbd_c00407{left:532.800000pt;}
.xb9_c00407{left:538.080000pt;}
.xad_c00407{left:544.320000pt;}
.xa6_c00407{left:546.720000pt;}
.xb0_c00407{left:552.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_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_4ab86c84425994a9e06b01c2.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;}
.m4e_c00408{transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);-ms-transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011019,-0.000132,0.003000,0.249982,0,0);}
.mc9_c00408{transform:matrix(0.016160,-0.000113,0.001750,0.249994,0,0);-ms-transform:matrix(0.016160,-0.000113,0.001750,0.249994,0,0);-webkit-transform:matrix(0.016160,-0.000113,0.001750,0.249994,0,0);}
.md8_c00408{transform:matrix(0.029220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029220,0.000000,0.000000,0.250000,0,0);}
.m120_c00408{transform:matrix(0.035792,-0.000465,0.003250,0.249979,0,0);-ms-transform:matrix(0.035792,-0.000465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.035792,-0.000465,0.003250,0.249979,0,0);}
.m37_c00408{transform:matrix(0.039774,-0.000318,0.002000,0.249992,0,0);-ms-transform:matrix(0.039774,-0.000318,0.002000,0.249992,0,0);-webkit-transform:matrix(0.039774,-0.000318,0.002000,0.249992,0,0);}
.ma0_c00408{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00408{transform:matrix(0.084418,-0.000591,0.001750,0.249994,0,0);-ms-transform:matrix(0.084418,-0.000591,0.001750,0.249994,0,0);-webkit-transform:matrix(0.084418,-0.000591,0.001750,0.249994,0,0);}
.mbd_c00408{transform:matrix(0.094548,-0.000662,0.001750,0.249994,0,0);-ms-transform:matrix(0.094548,-0.000662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.094548,-0.000662,0.001750,0.249994,0,0);}
.me4_c00408{transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{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);}
.m2e_c00408{transform:matrix(0.118646,-0.000949,0.002000,0.249992,0,0);-ms-transform:matrix(0.118646,-0.000949,0.002000,0.249992,0,0);-webkit-transform:matrix(0.118646,-0.000949,0.002000,0.249992,0,0);}
.mb9_c00408{transform:matrix(0.134752,-0.000943,0.001750,0.249994,0,0);-ms-transform:matrix(0.134752,-0.000943,0.001750,0.249994,0,0);-webkit-transform:matrix(0.134752,-0.000943,0.001750,0.249994,0,0);}
.md1_c00408{transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143455,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{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);}
.m34_c00408{transform:matrix(0.146935,-0.001175,0.002000,0.249992,0,0);-ms-transform:matrix(0.146935,-0.001175,0.002000,0.249992,0,0);-webkit-transform:matrix(0.146935,-0.001175,0.002000,0.249992,0,0);}
.m3f_c00408{transform:matrix(0.147730,-0.001182,0.002000,0.249992,0,0);-ms-transform:matrix(0.147730,-0.001182,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147730,-0.001182,0.002000,0.249992,0,0);}
.mda_c00408{transform:matrix(0.147845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147845,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{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);}
.m13_c00408{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);}
.m32_c00408{transform:matrix(0.151825,-0.001215,0.002000,0.249992,0,0);-ms-transform:matrix(0.151825,-0.001215,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151825,-0.001215,0.002000,0.249992,0,0);}
.m95_c00408{transform:matrix(0.151980,-0.001216,0.002000,0.249992,0,0);-ms-transform:matrix(0.151980,-0.001216,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151980,-0.001216,0.002000,0.249992,0,0);}
.m98_c00408{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);}
.mc3_c00408{transform:matrix(0.154351,-0.001080,0.001750,0.249994,0,0);-ms-transform:matrix(0.154351,-0.001080,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154351,-0.001080,0.001750,0.249994,0,0);}
.m6d_c00408{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);}
.mfe_c00408{transform:matrix(0.157245,-0.002201,0.003500,0.249976,0,0);-ms-transform:matrix(0.157245,-0.002201,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157245,-0.002201,0.003500,0.249976,0,0);}
.m20_c00408{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);}
.m67_c00408{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);}
.m2c_c00408{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00408{transform:matrix(0.159091,-0.001114,0.001750,0.249994,0,0);-ms-transform:matrix(0.159091,-0.001114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159091,-0.001114,0.001750,0.249994,0,0);}
.m85_c00408{transform:matrix(0.159725,-0.001278,0.002000,0.249992,0,0);-ms-transform:matrix(0.159725,-0.001278,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159725,-0.001278,0.002000,0.249992,0,0);}
.m73_c00408{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);}
.ma2_c00408{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);}
.m22_c00408{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);}
.mf5_c00408{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);}
.m9b_c00408{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);}
.m14_c00408{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);}
.m1c_c00408{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);}
.m28_c00408{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);}
.mf9_c00408{transform:matrix(0.163299,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163299,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163299,-0.002286,0.003500,0.249976,0,0);}
.m15_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);}
.m97_c00408{transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);-ms-transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164500,-0.001316,0.002000,0.249992,0,0);}
.m76_c00408{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);}
.mba_c00408{transform:matrix(0.165286,-0.001157,0.001750,0.249994,0,0);-ms-transform:matrix(0.165286,-0.001157,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165286,-0.001157,0.001750,0.249994,0,0);}
.me3_c00408{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);}
.m44_c00408{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);}
.ma3_c00408{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);}
.mbb_c00408{transform:matrix(0.165766,-0.001160,0.001750,0.249994,0,0);-ms-transform:matrix(0.165766,-0.001160,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165766,-0.001160,0.001750,0.249994,0,0);}
.m93_c00408{transform:matrix(0.167250,-0.001338,0.002000,0.249992,0,0);-ms-transform:matrix(0.167250,-0.001338,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167250,-0.001338,0.002000,0.249992,0,0);}
.m21_c00408{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);}
.m47_c00408{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);}
.m102_c00408{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);}
.mb0_c00408{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);}
.m101_c00408{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);}
.m29_c00408{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);}
.m69_c00408{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.172344,-0.001379,0.002000,0.249992,0,0);-ms-transform:matrix(0.172344,-0.001379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172344,-0.001379,0.002000,0.249992,0,0);}
.m88_c00408{transform:matrix(0.172884,-0.001383,0.002000,0.249992,0,0);-ms-transform:matrix(0.172884,-0.001383,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172884,-0.001383,0.002000,0.249992,0,0);}
.m11b_c00408{transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172925,-0.002248,0.003250,0.249979,0,0);}
.m3a_c00408{transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);-ms-transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);}
.m6a_c00408{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);}
.m90_c00408{transform:matrix(0.174724,-0.001398,0.002000,0.249992,0,0);-ms-transform:matrix(0.174724,-0.001398,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174724,-0.001398,0.002000,0.249992,0,0);}
.m48_c00408{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);}
.m9_c00408{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);}
.m33_c00408{transform:matrix(0.175999,-0.001408,0.002000,0.249992,0,0);-ms-transform:matrix(0.175999,-0.001408,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175999,-0.001408,0.002000,0.249992,0,0);}
.mbf_c00408{transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);-ms-transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176056,-0.001232,0.001750,0.249994,0,0);}
.m1b_c00408{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);}
.m10c_c00408{transform:matrix(0.176760,-0.002298,0.003250,0.249979,0,0);-ms-transform:matrix(0.176760,-0.002298,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176760,-0.002298,0.003250,0.249979,0,0);}
.m10_c00408{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);}
.m100_c00408{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);}
.m3e_c00408{transform:matrix(0.177139,-0.001417,0.002000,0.249992,0,0);-ms-transform:matrix(0.177139,-0.001417,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177139,-0.001417,0.002000,0.249992,0,0);}
.me8_c00408{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);}
.mc5_c00408{transform:matrix(0.177666,-0.001244,0.001750,0.249994,0,0);-ms-transform:matrix(0.177666,-0.001244,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177666,-0.001244,0.001750,0.249994,0,0);}
.m61_c00408{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);}
.m18_c00408{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);}
.m104_c00408{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);}
.mf2_c00408{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);}
.m3b_c00408{transform:matrix(0.179519,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179519,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179519,-0.001436,0.002000,0.249992,0,0);}
.m89_c00408{transform:matrix(0.179524,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179524,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179524,-0.001436,0.002000,0.249992,0,0);}
.m30_c00408{transform:matrix(0.179574,-0.001437,0.002000,0.249992,0,0);-ms-transform:matrix(0.179574,-0.001437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179574,-0.001437,0.002000,0.249992,0,0);}
.m26_c00408{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);}
.mfa_c00408{transform:matrix(0.179932,-0.002519,0.003500,0.249976,0,0);-ms-transform:matrix(0.179932,-0.002519,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179932,-0.002519,0.003500,0.249976,0,0);}
.md2_c00408{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);}
.mca_c00408{transform:matrix(0.180321,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180321,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180321,-0.001262,0.001750,0.249994,0,0);}
.m36_c00408{transform:matrix(0.180889,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180889,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180889,-0.001447,0.002000,0.249992,0,0);}
.m62_c00408{transform:matrix(0.180942,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180942,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180942,-0.002171,0.003000,0.249982,0,0);}
.m39_c00408{transform:matrix(0.181014,-0.001448,0.002000,0.249992,0,0);-ms-transform:matrix(0.181014,-0.001448,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181014,-0.001448,0.002000,0.249992,0,0);}
.mc_c00408{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);}
.mb6_c00408{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);}
.m43_c00408{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);}
.m2a_c00408{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);}
.md3_c00408{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);}
.m68_c00408{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);}
.mf0_c00408{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);}
.mac_c00408{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);}
.mc4_c00408{transform:matrix(0.182381,-0.001277,0.001750,0.249994,0,0);-ms-transform:matrix(0.182381,-0.001277,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182381,-0.001277,0.001750,0.249994,0,0);}
.m50_c00408{transform:matrix(0.182522,-0.002190,0.003000,0.249982,0,0);-ms-transform:matrix(0.182522,-0.002190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182522,-0.002190,0.003000,0.249982,0,0);}
.m99_c00408{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);}
.m35_c00408{transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);-ms-transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183199,-0.001466,0.002000,0.249992,0,0);}
.mb_c00408{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);}
.m96_c00408{transform:matrix(0.184194,-0.001474,0.002000,0.249992,0,0);-ms-transform:matrix(0.184194,-0.001474,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184194,-0.001474,0.002000,0.249992,0,0);}
.m5f_c00408{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);}
.m116_c00408{transform:matrix(0.184299,-0.002396,0.003250,0.249979,0,0);-ms-transform:matrix(0.184299,-0.002396,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184299,-0.002396,0.003250,0.249979,0,0);}
.m94_c00408{transform:matrix(0.184629,-0.001477,0.002000,0.249992,0,0);-ms-transform:matrix(0.184629,-0.001477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184629,-0.001477,0.002000,0.249992,0,0);}
.m77_c00408{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);}
.m63_c00408{transform:matrix(0.184917,-0.002219,0.003000,0.249982,0,0);-ms-transform:matrix(0.184917,-0.002219,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184917,-0.002219,0.003000,0.249982,0,0);}
.m75_c00408{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);}
.m108_c00408{transform:matrix(0.185679,-0.002414,0.003250,0.249979,0,0);-ms-transform:matrix(0.185679,-0.002414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185679,-0.002414,0.003250,0.249979,0,0);}
.m7_c00408{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);}
.ma8_c00408{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);}
.mb3_c00408{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);}
.m74_c00408{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);}
.mc1_c00408{transform:matrix(0.186125,-0.001303,0.001750,0.249994,0,0);-ms-transform:matrix(0.186125,-0.001303,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186125,-0.001303,0.001750,0.249994,0,0);}
.m71_c00408{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);}
.mb5_c00408{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);}
.m11_c00408{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);}
.mdc_c00408{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);}
.m9a_c00408{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);}
.maf_c00408{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);}
.mcf_c00408{transform:matrix(0.187375,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187375,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187375,-0.001312,0.001750,0.249994,0,0);}
.mc6_c00408{transform:matrix(0.187535,-0.001313,0.001750,0.249994,0,0);-ms-transform:matrix(0.187535,-0.001313,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187535,-0.001313,0.001750,0.249994,0,0);}
.m115_c00408{transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188184,-0.002446,0.003250,0.249979,0,0);}
.m12_c00408{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_c00408{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);}
.m8f_c00408{transform:matrix(0.189369,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189369,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189369,-0.001515,0.002000,0.249992,0,0);}
.m83_c00408{transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);-ms-transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189469,-0.001516,0.002000,0.249992,0,0);}
.m82_c00408{transform:matrix(0.190084,-0.001521,0.002000,0.249992,0,0);-ms-transform:matrix(0.190084,-0.001521,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190084,-0.001521,0.002000,0.249992,0,0);}
.ma1_c00408{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);}
.mcc_c00408{transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);-ms-transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190645,-0.001335,0.001750,0.249994,0,0);}
.mec_c00408{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);}
.ma5_c00408{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);}
.mc2_c00408{transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);-ms-transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191440,-0.001340,0.001750,0.249994,0,0);}
.mf8_c00408{transform:matrix(0.191766,-0.002685,0.003500,0.249976,0,0);-ms-transform:matrix(0.191766,-0.002685,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191766,-0.002685,0.003500,0.249976,0,0);}
.m9e_c00408{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);}
.mfd_c00408{transform:matrix(0.192486,-0.002695,0.003500,0.249976,0,0);-ms-transform:matrix(0.192486,-0.002695,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192486,-0.002695,0.003500,0.249976,0,0);}
.m10f_c00408{transform:matrix(0.192754,-0.002506,0.003250,0.249979,0,0);-ms-transform:matrix(0.192754,-0.002506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192754,-0.002506,0.003250,0.249979,0,0);}
.mc8_c00408{transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193205,-0.001352,0.001750,0.249994,0,0);}
.mce_c00408{transform:matrix(0.193840,-0.001357,0.001750,0.249994,0,0);-ms-transform:matrix(0.193840,-0.001357,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193840,-0.001357,0.001750,0.249994,0,0);}
.mff_c00408{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);}
.m5d_c00408{transform:matrix(0.194266,-0.002331,0.003000,0.249982,0,0);-ms-transform:matrix(0.194266,-0.002331,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194266,-0.002331,0.003000,0.249982,0,0);}
.m52_c00408{transform:matrix(0.194331,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194331,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194331,-0.002332,0.003000,0.249982,0,0);}
.m6e_c00408{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);}
.m60_c00408{transform:matrix(0.195391,-0.002345,0.003000,0.249982,0,0);-ms-transform:matrix(0.195391,-0.002345,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195391,-0.002345,0.003000,0.249982,0,0);}
.m65_c00408{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);}
.mdf_c00408{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);}
.mb4_c00408{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);}
.mde_c00408{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);}
.m41_c00408{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);}
.m70_c00408{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);}
.m109_c00408{transform:matrix(0.198373,-0.002579,0.003250,0.249979,0,0);-ms-transform:matrix(0.198373,-0.002579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198373,-0.002579,0.003250,0.249979,0,0);}
.m9c_c00408{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);}
.m8_c00408{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);}
.me2_c00408{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);}
.m4d_c00408{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);}
.mfb_c00408{transform:matrix(0.199755,-0.002797,0.003500,0.249976,0,0);-ms-transform:matrix(0.199755,-0.002797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199755,-0.002797,0.003500,0.249976,0,0);}
.m91_c00408{transform:matrix(0.200059,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.200059,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200059,-0.001600,0.002000,0.249992,0,0);}
.m103_c00408{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);}
.m6f_c00408{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);}
.ma7_c00408{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_c00408{transform:matrix(0.201554,-0.001612,0.002000,0.249992,0,0);-ms-transform:matrix(0.201554,-0.001612,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201554,-0.001612,0.002000,0.249992,0,0);}
.m4f_c00408{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);}
.mcb_c00408{transform:matrix(0.202475,-0.001417,0.001750,0.249994,0,0);-ms-transform:matrix(0.202475,-0.001417,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202475,-0.001417,0.001750,0.249994,0,0);}
.m9d_c00408{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);}
.m10d_c00408{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);}
.m56_c00408{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);}
.m7c_c00408{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);}
.m1a_c00408{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);}
.m53_c00408{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);}
.m7b_c00408{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_c00408{transform:matrix(0.203049,-0.001624,0.002000,0.249992,0,0);-ms-transform:matrix(0.203049,-0.001624,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203049,-0.001624,0.002000,0.249992,0,0);}
.me1_c00408{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);}
.m64_c00408{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);}
.mf7_c00408{transform:matrix(0.203530,-0.002849,0.003500,0.249976,0,0);-ms-transform:matrix(0.203530,-0.002849,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203530,-0.002849,0.003500,0.249976,0,0);}
.m110_c00408{transform:matrix(0.203808,-0.002650,0.003250,0.249979,0,0);-ms-transform:matrix(0.203808,-0.002650,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203808,-0.002650,0.003250,0.249979,0,0);}
.m25_c00408{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);}
.m5e_c00408{transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205550,-0.002467,0.003000,0.249982,0,0);}
.md5_c00408{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);}
.m10b_c00408{transform:matrix(0.205768,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205768,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205768,-0.002675,0.003250,0.249979,0,0);}
.m54_c00408{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);}
.m92_c00408{transform:matrix(0.206108,-0.001649,0.002000,0.249992,0,0);-ms-transform:matrix(0.206108,-0.001649,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206108,-0.001649,0.002000,0.249992,0,0);}
.m7a_c00408{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);}
.ma4_c00408{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.207338,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207338,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207338,-0.001659,0.002000,0.249992,0,0);}
.m7e_c00408{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);}
.md7_c00408{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);}
.mfc_c00408{transform:matrix(0.208330,-0.002917,0.003500,0.249976,0,0);-ms-transform:matrix(0.208330,-0.002917,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208330,-0.002917,0.003500,0.249976,0,0);}
.m87_c00408{transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208518,-0.001668,0.002000,0.249992,0,0);}
.mab_c00408{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);}
.m72_c00408{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);}
.m4a_c00408{transform:matrix(0.209955,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209955,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209955,-0.002519,0.003000,0.249982,0,0);}
.m105_c00408{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);}
.me_c00408{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);}
.m66_c00408{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);}
.m24_c00408{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);}
.m78_c00408{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);}
.ma6_c00408{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);}
.m5a_c00408{transform:matrix(0.212830,-0.002554,0.003000,0.249982,0,0);-ms-transform:matrix(0.212830,-0.002554,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212830,-0.002554,0.003000,0.249982,0,0);}
.m9f_c00408{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);}
.m45_c00408{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);}
.m10e_c00408{transform:matrix(0.214472,-0.002788,0.003250,0.249979,0,0);-ms-transform:matrix(0.214472,-0.002788,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214472,-0.002788,0.003250,0.249979,0,0);}
.m19_c00408{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);}
.m10a_c00408{transform:matrix(0.215332,-0.002799,0.003250,0.249979,0,0);-ms-transform:matrix(0.215332,-0.002799,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215332,-0.002799,0.003250,0.249979,0,0);}
.md6_c00408{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);}
.md_c00408{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);}
.m4_c00408{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.mf6_c00408{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);}
.m42_c00408{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);}
.m49_c00408{transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);-ms-transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216884,-0.002603,0.003000,0.249982,0,0);}
.mb8_c00408{transform:matrix(0.217150,-0.001520,0.001750,0.249994,0,0);-ms-transform:matrix(0.217150,-0.001520,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217150,-0.001520,0.001750,0.249994,0,0);}
.mdd_c00408{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);}
.mb1_c00408{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);}
.m11c_c00408{transform:matrix(0.222806,-0.002896,0.003250,0.249979,0,0);-ms-transform:matrix(0.222806,-0.002896,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222806,-0.002896,0.003250,0.249979,0,0);}
.me6_c00408{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);}
.me7_c00408{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);}
.m117_c00408{transform:matrix(0.226171,-0.002940,0.003250,0.249979,0,0);-ms-transform:matrix(0.226171,-0.002940,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226171,-0.002940,0.003250,0.249979,0,0);}
.m11d_c00408{transform:matrix(0.226356,-0.002943,0.003250,0.249979,0,0);-ms-transform:matrix(0.226356,-0.002943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226356,-0.002943,0.003250,0.249979,0,0);}
.md9_c00408{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);}
.m8d_c00408{transform:matrix(0.227758,-0.001822,0.002000,0.249992,0,0);-ms-transform:matrix(0.227758,-0.001822,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227758,-0.001822,0.002000,0.249992,0,0);}
.mb7_c00408{transform:matrix(0.228459,-0.001599,0.001750,0.249994,0,0);-ms-transform:matrix(0.228459,-0.001599,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228459,-0.001599,0.001750,0.249994,0,0);}
.m119_c00408{transform:matrix(0.228606,-0.002972,0.003250,0.249979,0,0);-ms-transform:matrix(0.228606,-0.002972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228606,-0.002972,0.003250,0.249979,0,0);}
.m79_c00408{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);}
.mae_c00408{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);}
.m5c_c00408{transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);-ms-transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230128,-0.002762,0.003000,0.249982,0,0);}
.mcd_c00408{transform:matrix(0.230264,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230264,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230264,-0.001612,0.001750,0.249994,0,0);}
.m8a_c00408{transform:matrix(0.231873,-0.001855,0.002000,0.249992,0,0);-ms-transform:matrix(0.231873,-0.001855,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231873,-0.001855,0.002000,0.249992,0,0);}
.m107_c00408{transform:matrix(0.232745,-0.003026,0.003250,0.249979,0,0);-ms-transform:matrix(0.232745,-0.003026,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232745,-0.003026,0.003250,0.249979,0,0);}
.m51_c00408{transform:matrix(0.232843,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232843,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232843,-0.002794,0.003000,0.249982,0,0);}
.md4_c00408{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);}
.m6_c00408{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);}
.mee_c00408{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);}
.m7d_c00408{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);}
.m6b_c00408{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);}
.m114_c00408{transform:matrix(0.236280,-0.003072,0.003250,0.249979,0,0);-ms-transform:matrix(0.236280,-0.003072,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236280,-0.003072,0.003250,0.249979,0,0);}
.m7f_c00408{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);-ms-transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237003,-0.002844,0.003000,0.249982,0,0);}
.m8b_c00408{transform:matrix(0.238457,-0.001908,0.002000,0.249992,0,0);-ms-transform:matrix(0.238457,-0.001908,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238457,-0.001908,0.002000,0.249992,0,0);}
.ma_c00408{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);}
.me5_c00408{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);}
.m4c_c00408{transform:matrix(0.242268,-0.002907,0.003000,0.249982,0,0);-ms-transform:matrix(0.242268,-0.002907,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242268,-0.002907,0.003000,0.249982,0,0);}
.m40_c00408{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);}
.m23_c00408{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);}
.m8c_c00408{transform:matrix(0.244602,-0.001957,0.002000,0.249992,0,0);-ms-transform:matrix(0.244602,-0.001957,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244602,-0.001957,0.002000,0.249992,0,0);}
.m3c_c00408{transform:matrix(0.244787,-0.001958,0.002000,0.249992,0,0);-ms-transform:matrix(0.244787,-0.001958,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244787,-0.001958,0.002000,0.249992,0,0);}
.m2d_c00408{transform:matrix(0.245197,-0.001962,0.002000,0.249992,0,0);-ms-transform:matrix(0.245197,-0.001962,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245197,-0.001962,0.002000,0.249992,0,0);}
.m1f_c00408{transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);}
.me0_c00408{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);}
.mdb_c00408{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);}
.m27_c00408{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m106_c00408{transform:matrix(0.246789,-0.003208,0.003250,0.249979,0,0);-ms-transform:matrix(0.246789,-0.003208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246789,-0.003208,0.003250,0.249979,0,0);}
.m4b_c00408{transform:matrix(0.248477,-0.002982,0.003000,0.249982,0,0);-ms-transform:matrix(0.248477,-0.002982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248477,-0.002982,0.003000,0.249982,0,0);}
.m8e_c00408{transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);-ms-transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249262,-0.001994,0.002000,0.249992,0,0);}
.m16_c00408{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{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);}
.md0_c00408{transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253249,-0.001773,0.001750,0.249994,0,0);}
.mf4_c00408{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.261412,-0.002091,0.002000,0.249992,0,0);-ms-transform:matrix(0.261412,-0.002091,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261412,-0.002091,0.002000,0.249992,0,0);}
.m118_c00408{transform:matrix(0.261818,-0.003404,0.003250,0.249979,0,0);-ms-transform:matrix(0.261818,-0.003404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261818,-0.003404,0.003250,0.249979,0,0);}
.m5b_c00408{transform:matrix(0.263911,-0.003167,0.003000,0.249982,0,0);-ms-transform:matrix(0.263911,-0.003167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263911,-0.003167,0.003000,0.249982,0,0);}
.m5_c00408{transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);}
.mad_c00408{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);}
.m11a_c00408{transform:matrix(0.285691,-0.003714,0.003250,0.249979,0,0);-ms-transform:matrix(0.285691,-0.003714,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285691,-0.003714,0.003250,0.249979,0,0);}
.m55_c00408{transform:matrix(0.294069,-0.003529,0.003000,0.249982,0,0);-ms-transform:matrix(0.294069,-0.003529,0.003000,0.249982,0,0);-webkit-transform:matrix(0.294069,-0.003529,0.003000,0.249982,0,0);}
.m113_c00408{transform:matrix(0.294560,-0.003829,0.003250,0.249979,0,0);-ms-transform:matrix(0.294560,-0.003829,0.003250,0.249979,0,0);-webkit-transform:matrix(0.294560,-0.003829,0.003250,0.249979,0,0);}
.m31_c00408{transform:matrix(0.301305,-0.002410,0.002000,0.249992,0,0);-ms-transform:matrix(0.301305,-0.002410,0.002000,0.249992,0,0);-webkit-transform:matrix(0.301305,-0.002410,0.002000,0.249992,0,0);}
.m46_c00408{transform:matrix(0.306890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306890,0.000000,0.000000,0.250000,0,0);}
.mb2_c00408{transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322100,0.000000,0.000000,0.250000,0,0);}
.m111_c00408{transform:matrix(0.322833,-0.004197,0.003250,0.249979,0,0);-ms-transform:matrix(0.322833,-0.004197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322833,-0.004197,0.003250,0.249979,0,0);}
.m3_c00408{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.mef_c00408{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);}
.maa_c00408{transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);}
.m11f_c00408{transform:matrix(0.345271,-0.004489,0.003250,0.249979,0,0);-ms-transform:matrix(0.345271,-0.004489,0.003250,0.249979,0,0);-webkit-transform:matrix(0.345271,-0.004489,0.003250,0.249979,0,0);}
.m58_c00408{transform:matrix(0.345635,-0.004148,0.003000,0.249982,0,0);-ms-transform:matrix(0.345635,-0.004148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.345635,-0.004148,0.003000,0.249982,0,0);}
.m6c_c00408{transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);}
.m112_c00408{transform:matrix(0.348481,-0.004530,0.003250,0.249979,0,0);-ms-transform:matrix(0.348481,-0.004530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.348481,-0.004530,0.003250,0.249979,0,0);}
.m80_c00408{transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348650,0.000000,0.000000,0.250000,0,0);}
.m11e_c00408{transform:matrix(0.349830,-0.004548,0.003250,0.249979,0,0);-ms-transform:matrix(0.349830,-0.004548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.349830,-0.004548,0.003250,0.249979,0,0);}
.ma9_c00408{transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);}
.mc0_c00408{transform:matrix(0.364486,-0.002551,0.001750,0.249994,0,0);-ms-transform:matrix(0.364486,-0.002551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.364486,-0.002551,0.001750,0.249994,0,0);}
.mbe_c00408{transform:matrix(0.376856,-0.002638,0.001750,0.249994,0,0);-ms-transform:matrix(0.376856,-0.002638,0.001750,0.249994,0,0);-webkit-transform:matrix(0.376856,-0.002638,0.001750,0.249994,0,0);}
.m2_c00408{transform:matrix(0.392565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392565,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.438480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438480,0.000000,0.000000,0.250000,0,0);}
.mf3_c00408{transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.473705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473705,0.000000,0.000000,0.250000,0,0);}
.mf1_c00408{transform:matrix(0.485690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485690,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.520153,-0.006242,0.003000,0.249982,0,0);-ms-transform:matrix(0.520153,-0.006242,0.003000,0.249982,0,0);-webkit-transform:matrix(0.520153,-0.006242,0.003000,0.249982,0,0);}
.meb_c00408{transform:matrix(0.530510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530510,0.000000,0.000000,0.250000,0,0);}
.me9_c00408{transform:matrix(0.609880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609880,0.000000,0.000000,0.250000,0,0);}
.mea_c00408{transform:matrix(0.691200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691200,0.000000,0.000000,0.250000,0,0);}
.med_c00408{transform:matrix(0.754960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754960,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;}
.fs15_c00408{font-size:45.150000px;}
.fs14_c00408{font-size:46.200000px;}
.fs16_c00408{font-size:47.250000px;}
.fs12_c00408{font-size:47.251158px;}
.fs1c_c00408{font-size:48.304081px;}
.fs10_c00408{font-size:49.350000px;}
.fs19_c00408{font-size:49.354170px;}
.fs13_c00408{font-size:51.450000px;}
.fs1a_c00408{font-size:51.454347px;}
.fs18_c00408{font-size:51.455042px;}
.fsf_c00408{font-size:52.500000px;}
.fs1b_c00408{font-size:53.554525px;}
.fs17_c00408{font-size:54.600000px;}
.fs11_c00408{font-size:58.801441px;}
.fs7_c00408{font-size:61.954460px;}
.fsc_c00408{font-size:64.050000px;}
.fs5_c00408{font-size:67.202150px;}
.fsa_c00408{font-size:68.250000px;}
.fsd_c00408{font-size:68.252184px;}
.fs2_c00408{font-size:69.300000px;}
.fs6_c00408{font-size:69.304989px;}
.fs1_c00408{font-size:70.350000px;}
.fse_c00408{font-size:70.352251px;}
.fs9_c00408{font-size:71.400000px;}
.fs4_c00408{font-size:73.502352px;}
.fsb_c00408{font-size:74.550000px;}
.fs8_c00408{font-size:74.555367px;}
.fs3_c00408{font-size:78.750000px;}
.fs0_c00408{font-size:85.050000px;}
.y0_c00408{bottom:0.000000px;}
.y84_c00408{bottom:166.023000px;}
.ya6_c00408{bottom:166.857459px;}
.ya7_c00408{bottom:167.396575px;}
.ya8_c00408{bottom:168.088981px;}
.ya9_c00408{bottom:169.846848px;}
.y9e_c00408{bottom:184.139557px;}
.y9f_c00408{bottom:184.510224px;}
.y83_c00408{bottom:184.521000px;}
.ya0_c00408{bottom:184.996342px;}
.ya1_c00408{bottom:185.671234px;}
.ya2_c00408{bottom:185.957095px;}
.ya3_c00408{bottom:186.461091px;}
.ya4_c00408{bottom:186.722680px;}
.ya5_c00408{bottom:187.045797px;}
.y96_c00408{bottom:202.229988px;}
.y82_c00408{bottom:202.230000px;}
.y97_c00408{bottom:202.606737px;}
.y98_c00408{bottom:203.111454px;}
.y99_c00408{bottom:203.791473px;}
.y9a_c00408{bottom:204.558091px;}
.y9b_c00408{bottom:204.820051px;}
.y9c_c00408{bottom:205.306287px;}
.y9d_c00408{bottom:205.572126px;}
.y81_c00408{bottom:219.355500px;}
.y8f_c00408{bottom:220.861500px;}
.y90_c00408{bottom:221.798767px;}
.y91_c00408{bottom:221.946129px;}
.y92_c00408{bottom:222.135649px;}
.y93_c00408{bottom:222.543004px;}
.y94_c00408{bottom:223.200232px;}
.y95_c00408{bottom:223.820488px;}
.y80_c00408{bottom:237.969000px;}
.y85_c00408{bottom:238.411500px;}
.y86_c00408{bottom:238.924950px;}
.y87_c00408{bottom:239.205279px;}
.y88_c00408{bottom:239.439135px;}
.y89_c00408{bottom:239.726394px;}
.y8a_c00408{bottom:240.108867px;}
.y8b_c00408{bottom:240.675909px;}
.y8c_c00408{bottom:240.978708px;}
.y8d_c00408{bottom:241.790694px;}
.y7f_c00408{bottom:256.242000px;}
.y8e_c00408{bottom:257.904000px;}
.y7e_c00408{bottom:273.736500px;}
.y7d_c00408{bottom:275.666279px;}
.y7c_c00408{bottom:275.666619px;}
.y7b_c00408{bottom:275.666779px;}
.y7a_c00408{bottom:275.666929px;}
.y79_c00408{bottom:275.667090px;}
.y78_c00408{bottom:275.667300px;}
.y75_c00408{bottom:275.667360px;}
.y76_c00408{bottom:275.667690px;}
.y77_c00408{bottom:275.667960px;}
.y63_c00408{bottom:291.556500px;}
.y64_c00408{bottom:291.686858px;}
.y65_c00408{bottom:291.815084px;}
.y66_c00408{bottom:291.938333px;}
.y67_c00408{bottom:292.308825px;}
.y68_c00408{bottom:292.552572px;}
.y69_c00408{bottom:292.557675px;}
.y6a_c00408{bottom:292.616864px;}
.y6b_c00408{bottom:292.764315px;}
.y6c_c00408{bottom:293.140467px;}
.y6d_c00408{bottom:293.245992px;}
.y6e_c00408{bottom:293.383920px;}
.y6f_c00408{bottom:293.572952px;}
.y70_c00408{bottom:293.716749px;}
.y71_c00408{bottom:293.907649px;}
.y72_c00408{bottom:294.155156px;}
.y73_c00408{bottom:294.461199px;}
.y74_c00408{bottom:294.573014px;}
.y62_c00408{bottom:310.504500px;}
.y61_c00408{bottom:328.515000px;}
.y60_c00408{bottom:380.218500px;}
.y5d_c00408{bottom:402.913440px;}
.y5f_c00408{bottom:402.913584px;}
.y5e_c00408{bottom:402.913728px;}
.y5c_c00408{bottom:402.913944px;}
.y5b_c00408{bottom:402.914556px;}
.y5a_c00408{bottom:402.914808px;}
.y56_c00408{bottom:425.859696px;}
.y59_c00408{bottom:425.859780px;}
.y57_c00408{bottom:425.860404px;}
.y55_c00408{bottom:425.860428px;}
.y58_c00408{bottom:425.860512px;}
.y53_c00408{bottom:425.860752px;}
.y54_c00408{bottom:425.860800px;}
.y52_c00408{bottom:425.861124px;}
.y4a_c00408{bottom:447.121500px;}
.y4b_c00408{bottom:447.315648px;}
.y4c_c00408{bottom:447.650976px;}
.y4d_c00408{bottom:447.955320px;}
.y4e_c00408{bottom:448.266396px;}
.y4f_c00408{bottom:448.691880px;}
.y50_c00408{bottom:448.890576px;}
.y51_c00408{bottom:449.171424px;}
.y40_c00408{bottom:470.071500px;}
.y41_c00408{bottom:470.640000px;}
.y42_c00408{bottom:470.953500px;}
.y43_c00408{bottom:471.322500px;}
.y44_c00408{bottom:471.526500px;}
.y45_c00408{bottom:471.907500px;}
.y46_c00408{bottom:472.248000px;}
.y47_c00408{bottom:472.807500px;}
.y48_c00408{bottom:473.035500px;}
.y49_c00408{bottom:473.404500px;}
.y3f_c00408{bottom:493.974000px;}
.y3e_c00408{bottom:516.979500px;}
.y3d_c00408{bottom:539.389500px;}
.y3a_c00408{bottom:563.030784px;}
.y3b_c00408{bottom:563.031030px;}
.y39_c00408{bottom:563.031336px;}
.y38_c00408{bottom:563.031690px;}
.y3c_c00408{bottom:563.031696px;}
.y37_c00408{bottom:563.031804px;}
.y32_c00408{bottom:585.417498px;}
.y36_c00408{bottom:585.417774px;}
.y31_c00408{bottom:585.417816px;}
.y33_c00408{bottom:585.417822px;}
.y35_c00408{bottom:585.417972px;}
.y30_c00408{bottom:585.418332px;}
.y34_c00408{bottom:585.418368px;}
.y2f_c00408{bottom:585.418506px;}
.y28_c00408{bottom:605.609490px;}
.y29_c00408{bottom:605.829132px;}
.y2a_c00408{bottom:606.620772px;}
.y2b_c00408{bottom:607.249296px;}
.y2c_c00408{bottom:607.507854px;}
.y2d_c00408{bottom:607.783590px;}
.y2e_c00408{bottom:608.364528px;}
.y22_c00408{bottom:628.021500px;}
.y23_c00408{bottom:628.559538px;}
.y24_c00408{bottom:629.431116px;}
.y25_c00408{bottom:629.600082px;}
.y26_c00408{bottom:630.060054px;}
.y27_c00408{bottom:631.825098px;}
.y21_c00408{bottom:652.374000px;}
.y1f_c00408{bottom:674.700636px;}
.y20_c00408{bottom:674.700684px;}
.y1d_c00408{bottom:674.701260px;}
.y1a_c00408{bottom:674.701368px;}
.y19_c00408{bottom:674.701668px;}
.y1c_c00408{bottom:674.701752px;}
.y1e_c00408{bottom:674.701968px;}
.y1b_c00408{bottom:674.702004px;}
.yf_c00408{bottom:696.061500px;}
.y10_c00408{bottom:696.316368px;}
.y11_c00408{bottom:696.521652px;}
.y12_c00408{bottom:697.348920px;}
.y13_c00408{bottom:697.861008px;}
.y14_c00408{bottom:698.027112px;}
.y15_c00408{bottom:698.247516px;}
.y16_c00408{bottom:698.610336px;}
.y17_c00408{bottom:698.839308px;}
.y18_c00408{bottom:699.124536px;}
.ye_c00408{bottom:720.339000px;}
.yd_c00408{bottom:743.665500px;}
.yc_c00408{bottom:766.164000px;}
.y3_c00408{bottom:787.051500px;}
.y4_c00408{bottom:787.291500px;}
.y5_c00408{bottom:787.629000px;}
.y6_c00408{bottom:787.920000px;}
.y7_c00408{bottom:788.178000px;}
.y8_c00408{bottom:788.808000px;}
.y9_c00408{bottom:789.031500px;}
.ya_c00408{bottom:789.286500px;}
.yb_c00408{bottom:789.757500px;}
.y2_c00408{bottom:811.549500px;}
.y1_c00408{bottom:855.564000px;}
.h17_c00408{height:45.150000px;}
.h16_c00408{height:46.200000px;}
.h18_c00408{height:47.250000px;}
.h14_c00408{height:47.251158px;}
.h1e_c00408{height:48.304081px;}
.h12_c00408{height:49.350000px;}
.h1b_c00408{height:49.354170px;}
.h15_c00408{height:51.450000px;}
.h1c_c00408{height:51.454347px;}
.h1a_c00408{height:51.455042px;}
.h11_c00408{height:52.500000px;}
.h1d_c00408{height:53.554525px;}
.h19_c00408{height:54.600000px;}
.h13_c00408{height:58.801441px;}
.h9_c00408{height:61.954460px;}
.he_c00408{height:64.050000px;}
.h7_c00408{height:67.202150px;}
.hc_c00408{height:68.250000px;}
.hf_c00408{height:68.252184px;}
.h4_c00408{height:69.300000px;}
.h8_c00408{height:69.304989px;}
.h3_c00408{height:70.350000px;}
.h10_c00408{height:70.352251px;}
.hb_c00408{height:71.400000px;}
.h6_c00408{height:73.502352px;}
.hd_c00408{height:74.550000px;}
.ha_c00408{height:74.555367px;}
.h5_c00408{height:78.750000px;}
.h2_c00408{height:85.050000px;}
.h1_c00408{height:1005.000000px;}
.h0_c00408{height:1005.150000px;}
.w0_c00408{width:715.200000px;}
.w1_c00408{width:715.500000px;}
.x0_c00408{left:0.000000px;}
.x8b_c00408{left:76.950000px;}
.x6b_c00408{left:78.300000px;}
.x6c_c00408{left:87.750000px;}
.x85_c00408{left:89.100000px;}
.x78_c00408{left:100.534500px;}
.x86_c00408{left:105.570000px;}
.x6d_c00408{left:107.460000px;}
.x32_c00408{left:109.889256px;}
.x23_c00408{left:112.591500px;}
.x8d_c00408{left:117.450000px;}
.x28_c00408{left:119.448000px;}
.x5_c00408{left:121.230000px;}
.x16_c00408{left:122.851500px;}
.x57_c00408{left:124.470000px;}
.x4c_c00408{left:126.360000px;}
.x87_c00408{left:130.950000px;}
.x8c_c00408{left:136.080000px;}
.x79_c00408{left:137.475000px;}
.x51_c00408{left:140.400000px;}
.x91_c00408{left:143.100000px;}
.x76_c00408{left:144.180000px;}
.x6_c00408{left:145.260000px;}
.x5e_c00408{left:146.952000px;}
.xe_c00408{left:148.890000px;}
.x29_c00408{left:151.306500px;}
.x17_c00408{left:154.171500px;}
.x1e_c00408{left:155.251500px;}
.x58_c00408{left:157.410000px;}
.x24_c00408{left:160.651500px;}
.x1_c00408{left:162.000000px;}
.x61_c00408{left:164.700264px;}
.x3d_c00408{left:167.299500px;}
.x6e_c00408{left:169.560000px;}
.x88_c00408{left:174.420000px;}
.x2a_c00408{left:176.967000px;}
.x45_c00408{left:180.093462px;}
.x89_c00408{left:183.870000px;}
.xf_c00408{left:186.426000px;}
.x77_c00408{left:187.650000px;}
.x5f_c00408{left:188.868000px;}
.x49_c00408{left:191.435196px;}
.x59_c00408{left:193.860000px;}
.x33_c00408{left:196.561800px;}
.x52_c00408{left:202.770000px;}
.x18_c00408{left:205.201500px;}
.x7a_c00408{left:208.009500px;}
.x62_c00408{left:209.521632px;}
.x7_c00408{left:213.030000px;}
.x10_c00408{left:218.827500px;}
.x53_c00408{left:220.860000px;}
.x68_c00408{left:221.940000px;}
.x41_c00408{left:223.465314px;}
.x2_c00408{left:225.180000px;}
.x46_c00408{left:226.807194px;}
.x6f_c00408{left:227.880000px;}
.x19_c00408{left:234.631500px;}
.x34_c00408{left:240.033084px;}
.x8_c00408{left:241.650000px;}
.x7b_c00408{left:242.830500px;}
.x8f_c00408{left:245.700000px;}
.x11_c00408{left:247.450500px;}
.x54_c00408{left:251.910000px;}
.x3e_c00408{left:254.011500px;}
.x5a_c00408{left:261.900000px;}
.x1a_c00408{left:264.331500px;}
.x1f_c00408{left:266.761500px;}
.x8a_c00408{left:268.380000px;}
.x35_c00408{left:272.973696px;}
.x93_c00408{left:275.670000px;}
.x70_c00408{left:277.020000px;}
.x67_c00408{left:278.102088px;}
.x90_c00408{left:279.180000px;}
.x2b_c00408{left:280.375500px;}
.x9_c00408{left:284.310000px;}
.x42_c00408{left:286.343826px;}
.x92_c00408{left:288.630000px;}
.x94_c00408{left:289.710000px;}
.x3f_c00408{left:292.342500px;}
.x25_c00408{left:298.081500px;}
.x39_c00408{left:301.590000px;}
.x8e_c00408{left:304.560000px;}
.x4d_c00408{left:306.180000px;}
.x63_c00408{left:307.264896px;}
.x43_c00408{left:312.265956px;}
.x1b_c00408{left:314.551500px;}
.x12_c00408{left:317.382000px;}
.x55_c00408{left:319.410000px;}
.x4a_c00408{left:320.503290px;}
.x3a_c00408{left:322.110000px;}
.x20_c00408{left:324.811500px;}
.x5b_c00408{left:326.778000px;}
.x81_c00408{left:329.136920px;}
.xa_c00408{left:333.990000px;}
.x36_c00408{left:335.616204px;}
.x64_c00408{left:338.855412px;}
.x44_c00408{left:339.869622px;}
.x13_c00408{left:342.181500px;}
.x2c_c00408{left:344.386500px;}
.x21_c00408{left:347.761500px;}
.x4e_c00408{left:349.110000px;}
.x47_c00408{left:350.746032px;}
.x26_c00408{left:356.941500px;}
.x7c_c00408{left:361.594500px;}
.x2d_c00408{left:365.149500px;}
.x3b_c00408{left:366.390000px;}
.x69_c00408{left:367.740000px;}
.x99_c00408{left:369.090000px;}
.x14_c00408{left:370.573500px;}
.x4b_c00408{left:373.156368px;}
.x60_c00408{left:378.924000px;}
.x82_c00408{left:382.059513px;}
.xa7_c00408{left:384.265442px;}
.x3_c00408{left:386.370000px;}
.x7d_c00408{left:388.599000px;}
.x27_c00408{left:390.961500px;}
.x2e_c00408{left:392.700000px;}
.xb_c00408{left:394.740000px;}
.x37_c00408{left:398.528736px;}
.x65_c00408{left:401.497920px;}
.x56_c00408{left:409.320000px;}
.x1c_c00408{left:411.751500px;}
.x6a_c00408{left:415.260000px;}
.x4f_c00408{left:417.420000px;}
.x48_c00408{left:419.331414px;}
.x15_c00408{left:422.952000px;}
.xc_c00408{left:424.440000px;}
.x9e_c00408{left:426.183000px;}
.x22_c00408{left:427.681500px;}
.x95_c00408{left:429.937500px;}
.x9a_c00408{left:434.430000px;}
.x3c_c00408{left:435.780000px;}
.x2f_c00408{left:438.052500px;}
.x40_c00408{left:439.429500px;}
.x9f_c00408{left:440.761500px;}
.x66_c00408{left:444.159156px;}
.xd_c00408{left:445.500000px;}
.x50_c00408{left:448.740000px;}
.xa6_c00408{left:450.575400px;}
.x5c_c00408{left:452.098500px;}
.x71_c00408{left:454.140000px;}
.x38_c00408{left:456.850968px;}
.x4_c00408{left:457.920000px;}
.x9b_c00408{left:464.130000px;}
.x30_c00408{left:466.674000px;}
.x7e_c00408{left:471.771000px;}
.x83_c00408{left:474.132528px;}
.x1d_c00408{left:476.281500px;}
.x72_c00408{left:478.170000px;}
.xa2_c00408{left:480.530689px;}
.x9c_c00408{left:488.160000px;}
.x5d_c00408{left:493.045500px;}
.xa3_c00408{left:495.949890px;}
.x96_c00408{left:497.760000px;}
.x31_c00408{left:502.327500px;}
.x73_c00408{left:505.170000px;}
.x7f_c00408{left:515.491500px;}
.x74_c00408{left:517.320000px;}
.x97_c00408{left:519.388500px;}
.xa0_c00408{left:522.652500px;}
.xa4_c00408{left:524.581908px;}
.x9d_c00408{left:525.960000px;}
.x80_c00408{left:531.465000px;}
.xa5_c00408{left:540.184089px;}
.x84_c00408{left:546.493077px;}
.x75_c00408{left:553.500000px;}
.xa1_c00408{left:570.364500px;}
.xa8_c00408{left:572.747942px;}
.x98_c00408{left:577.387500px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs15_c00408{font-size:40.133333pt;}
.fs14_c00408{font-size:41.066667pt;}
.fs16_c00408{font-size:42.000000pt;}
.fs12_c00408{font-size:42.001029pt;}
.fs1c_c00408{font-size:42.936961pt;}
.fs10_c00408{font-size:43.866667pt;}
.fs19_c00408{font-size:43.870373pt;}
.fs13_c00408{font-size:45.733333pt;}
.fs1a_c00408{font-size:45.737198pt;}
.fs18_c00408{font-size:45.737815pt;}
.fsf_c00408{font-size:46.666667pt;}
.fs1b_c00408{font-size:47.604022pt;}
.fs17_c00408{font-size:48.533333pt;}
.fs11_c00408{font-size:52.267947pt;}
.fs7_c00408{font-size:55.070631pt;}
.fsc_c00408{font-size:56.933333pt;}
.fs5_c00408{font-size:59.735245pt;}
.fsa_c00408{font-size:60.666667pt;}
.fsd_c00408{font-size:60.668608pt;}
.fs2_c00408{font-size:61.600000pt;}
.fs6_c00408{font-size:61.604435pt;}
.fs1_c00408{font-size:62.533333pt;}
.fse_c00408{font-size:62.535334pt;}
.fs9_c00408{font-size:63.466667pt;}
.fs4_c00408{font-size:65.335424pt;}
.fsb_c00408{font-size:66.266667pt;}
.fs8_c00408{font-size:66.271438pt;}
.fs3_c00408{font-size:70.000000pt;}
.fs0_c00408{font-size:75.600000pt;}
.y0_c00408{bottom:0.000000pt;}
.y84_c00408{bottom:147.576000pt;}
.ya6_c00408{bottom:148.317741pt;}
.ya7_c00408{bottom:148.796956pt;}
.ya8_c00408{bottom:149.412428pt;}
.ya9_c00408{bottom:150.974976pt;}
.y9e_c00408{bottom:163.679607pt;}
.y9f_c00408{bottom:164.009088pt;}
.y83_c00408{bottom:164.018667pt;}
.ya0_c00408{bottom:164.441193pt;}
.ya1_c00408{bottom:165.041097pt;}
.ya2_c00408{bottom:165.295196pt;}
.ya3_c00408{bottom:165.743192pt;}
.ya4_c00408{bottom:165.975716pt;}
.ya5_c00408{bottom:166.262931pt;}
.y96_c00408{bottom:179.759989pt;}
.y82_c00408{bottom:179.760000pt;}
.y97_c00408{bottom:180.094877pt;}
.y98_c00408{bottom:180.543515pt;}
.y99_c00408{bottom:181.147976pt;}
.y9a_c00408{bottom:181.829415pt;}
.y9b_c00408{bottom:182.062268pt;}
.y9c_c00408{bottom:182.494477pt;}
.y9d_c00408{bottom:182.730779pt;}
.y81_c00408{bottom:194.982667pt;}
.y8f_c00408{bottom:196.321333pt;}
.y90_c00408{bottom:197.154460pt;}
.y91_c00408{bottom:197.285448pt;}
.y92_c00408{bottom:197.453911pt;}
.y93_c00408{bottom:197.816004pt;}
.y94_c00408{bottom:198.400207pt;}
.y95_c00408{bottom:198.951545pt;}
.y80_c00408{bottom:211.528000pt;}
.y85_c00408{bottom:211.921333pt;}
.y86_c00408{bottom:212.377733pt;}
.y87_c00408{bottom:212.626915pt;}
.y88_c00408{bottom:212.834787pt;}
.y89_c00408{bottom:213.090128pt;}
.y8a_c00408{bottom:213.430104pt;}
.y8b_c00408{bottom:213.934141pt;}
.y8c_c00408{bottom:214.203296pt;}
.y8d_c00408{bottom:214.925061pt;}
.y7f_c00408{bottom:227.770667pt;}
.y8e_c00408{bottom:229.248000pt;}
.y7e_c00408{bottom:243.321333pt;}
.y7d_c00408{bottom:245.036692pt;}
.y7c_c00408{bottom:245.036995pt;}
.y7b_c00408{bottom:245.037137pt;}
.y7a_c00408{bottom:245.037271pt;}
.y79_c00408{bottom:245.037413pt;}
.y78_c00408{bottom:245.037600pt;}
.y75_c00408{bottom:245.037653pt;}
.y76_c00408{bottom:245.037947pt;}
.y77_c00408{bottom:245.038187pt;}
.y63_c00408{bottom:259.161333pt;}
.y64_c00408{bottom:259.277207pt;}
.y65_c00408{bottom:259.391185pt;}
.y66_c00408{bottom:259.500740pt;}
.y67_c00408{bottom:259.830067pt;}
.y68_c00408{bottom:260.046731pt;}
.y69_c00408{bottom:260.051267pt;}
.y6a_c00408{bottom:260.103879pt;}
.y6b_c00408{bottom:260.234947pt;}
.y6c_c00408{bottom:260.569304pt;}
.y6d_c00408{bottom:260.663104pt;}
.y6e_c00408{bottom:260.785707pt;}
.y6f_c00408{bottom:260.953735pt;}
.y70_c00408{bottom:261.081555pt;}
.y71_c00408{bottom:261.251244pt;}
.y72_c00408{bottom:261.471249pt;}
.y73_c00408{bottom:261.743288pt;}
.y74_c00408{bottom:261.842679pt;}
.y62_c00408{bottom:276.004000pt;}
.y61_c00408{bottom:292.013333pt;}
.y60_c00408{bottom:337.972000pt;}
.y5d_c00408{bottom:358.145280pt;}
.y5f_c00408{bottom:358.145408pt;}
.y5e_c00408{bottom:358.145536pt;}
.y5c_c00408{bottom:358.145728pt;}
.y5b_c00408{bottom:358.146272pt;}
.y5a_c00408{bottom:358.146496pt;}
.y56_c00408{bottom:378.541952pt;}
.y59_c00408{bottom:378.542027pt;}
.y57_c00408{bottom:378.542581pt;}
.y55_c00408{bottom:378.542603pt;}
.y58_c00408{bottom:378.542677pt;}
.y53_c00408{bottom:378.542891pt;}
.y54_c00408{bottom:378.542933pt;}
.y52_c00408{bottom:378.543221pt;}
.y4a_c00408{bottom:397.441333pt;}
.y4b_c00408{bottom:397.613909pt;}
.y4c_c00408{bottom:397.911979pt;}
.y4d_c00408{bottom:398.182507pt;}
.y4e_c00408{bottom:398.459019pt;}
.y4f_c00408{bottom:398.837227pt;}
.y50_c00408{bottom:399.013845pt;}
.y51_c00408{bottom:399.263488pt;}
.y40_c00408{bottom:417.841333pt;}
.y41_c00408{bottom:418.346667pt;}
.y42_c00408{bottom:418.625333pt;}
.y43_c00408{bottom:418.953333pt;}
.y44_c00408{bottom:419.134667pt;}
.y45_c00408{bottom:419.473333pt;}
.y46_c00408{bottom:419.776000pt;}
.y47_c00408{bottom:420.273333pt;}
.y48_c00408{bottom:420.476000pt;}
.y49_c00408{bottom:420.804000pt;}
.y3f_c00408{bottom:439.088000pt;}
.y3e_c00408{bottom:459.537333pt;}
.y3d_c00408{bottom:479.457333pt;}
.y3a_c00408{bottom:500.471808pt;}
.y3b_c00408{bottom:500.472027pt;}
.y39_c00408{bottom:500.472299pt;}
.y38_c00408{bottom:500.472613pt;}
.y3c_c00408{bottom:500.472619pt;}
.y37_c00408{bottom:500.472715pt;}
.y32_c00408{bottom:520.371109pt;}
.y36_c00408{bottom:520.371355pt;}
.y31_c00408{bottom:520.371392pt;}
.y33_c00408{bottom:520.371397pt;}
.y35_c00408{bottom:520.371531pt;}
.y30_c00408{bottom:520.371851pt;}
.y34_c00408{bottom:520.371883pt;}
.y2f_c00408{bottom:520.372005pt;}
.y28_c00408{bottom:538.319547pt;}
.y29_c00408{bottom:538.514784pt;}
.y2a_c00408{bottom:539.218464pt;}
.y2b_c00408{bottom:539.777152pt;}
.y2c_c00408{bottom:540.006981pt;}
.y2d_c00408{bottom:540.252080pt;}
.y2e_c00408{bottom:540.768469pt;}
.y22_c00408{bottom:558.241333pt;}
.y23_c00408{bottom:558.719589pt;}
.y24_c00408{bottom:559.494325pt;}
.y25_c00408{bottom:559.644517pt;}
.y26_c00408{bottom:560.053381pt;}
.y27_c00408{bottom:561.622309pt;}
.y21_c00408{bottom:579.888000pt;}
.y1f_c00408{bottom:599.733899pt;}
.y20_c00408{bottom:599.733941pt;}
.y1d_c00408{bottom:599.734453pt;}
.y1a_c00408{bottom:599.734549pt;}
.y19_c00408{bottom:599.734816pt;}
.y1c_c00408{bottom:599.734891pt;}
.y1e_c00408{bottom:599.735083pt;}
.y1b_c00408{bottom:599.735115pt;}
.yf_c00408{bottom:618.721333pt;}
.y10_c00408{bottom:618.947883pt;}
.y11_c00408{bottom:619.130357pt;}
.y12_c00408{bottom:619.865707pt;}
.y13_c00408{bottom:620.320896pt;}
.y14_c00408{bottom:620.468544pt;}
.y15_c00408{bottom:620.664459pt;}
.y16_c00408{bottom:620.986965pt;}
.y17_c00408{bottom:621.190496pt;}
.y18_c00408{bottom:621.444032pt;}
.ye_c00408{bottom:640.301333pt;}
.yd_c00408{bottom:661.036000pt;}
.yc_c00408{bottom:681.034667pt;}
.y3_c00408{bottom:699.601333pt;}
.y4_c00408{bottom:699.814667pt;}
.y5_c00408{bottom:700.114667pt;}
.y6_c00408{bottom:700.373333pt;}
.y7_c00408{bottom:700.602667pt;}
.y8_c00408{bottom:701.162667pt;}
.y9_c00408{bottom:701.361333pt;}
.ya_c00408{bottom:701.588000pt;}
.yb_c00408{bottom:702.006667pt;}
.y2_c00408{bottom:721.377333pt;}
.y1_c00408{bottom:760.501333pt;}
.h17_c00408{height:40.133333pt;}
.h16_c00408{height:41.066667pt;}
.h18_c00408{height:42.000000pt;}
.h14_c00408{height:42.001029pt;}
.h1e_c00408{height:42.936961pt;}
.h12_c00408{height:43.866667pt;}
.h1b_c00408{height:43.870373pt;}
.h15_c00408{height:45.733333pt;}
.h1c_c00408{height:45.737198pt;}
.h1a_c00408{height:45.737815pt;}
.h11_c00408{height:46.666667pt;}
.h1d_c00408{height:47.604022pt;}
.h19_c00408{height:48.533333pt;}
.h13_c00408{height:52.267947pt;}
.h9_c00408{height:55.070631pt;}
.he_c00408{height:56.933333pt;}
.h7_c00408{height:59.735245pt;}
.hc_c00408{height:60.666667pt;}
.hf_c00408{height:60.668608pt;}
.h4_c00408{height:61.600000pt;}
.h8_c00408{height:61.604435pt;}
.h3_c00408{height:62.533333pt;}
.h10_c00408{height:62.535334pt;}
.hb_c00408{height:63.466667pt;}
.h6_c00408{height:65.335424pt;}
.hd_c00408{height:66.266667pt;}
.ha_c00408{height:66.271438pt;}
.h5_c00408{height:70.000000pt;}
.h2_c00408{height:75.600000pt;}
.h1_c00408{height:893.333333pt;}
.h0_c00408{height:893.466667pt;}
.w0_c00408{width:635.733333pt;}
.w1_c00408{width:636.000000pt;}
.x0_c00408{left:0.000000pt;}
.x8b_c00408{left:68.400000pt;}
.x6b_c00408{left:69.600000pt;}
.x6c_c00408{left:78.000000pt;}
.x85_c00408{left:79.200000pt;}
.x78_c00408{left:89.364000pt;}
.x86_c00408{left:93.840000pt;}
.x6d_c00408{left:95.520000pt;}
.x32_c00408{left:97.679339pt;}
.x23_c00408{left:100.081333pt;}
.x8d_c00408{left:104.400000pt;}
.x28_c00408{left:106.176000pt;}
.x5_c00408{left:107.760000pt;}
.x16_c00408{left:109.201333pt;}
.x57_c00408{left:110.640000pt;}
.x4c_c00408{left:112.320000pt;}
.x87_c00408{left:116.400000pt;}
.x8c_c00408{left:120.960000pt;}
.x79_c00408{left:122.200000pt;}
.x51_c00408{left:124.800000pt;}
.x91_c00408{left:127.200000pt;}
.x76_c00408{left:128.160000pt;}
.x6_c00408{left:129.120000pt;}
.x5e_c00408{left:130.624000pt;}
.xe_c00408{left:132.346667pt;}
.x29_c00408{left:134.494667pt;}
.x17_c00408{left:137.041333pt;}
.x1e_c00408{left:138.001333pt;}
.x58_c00408{left:139.920000pt;}
.x24_c00408{left:142.801333pt;}
.x1_c00408{left:144.000000pt;}
.x61_c00408{left:146.400235pt;}
.x3d_c00408{left:148.710667pt;}
.x6e_c00408{left:150.720000pt;}
.x88_c00408{left:155.040000pt;}
.x2a_c00408{left:157.304000pt;}
.x45_c00408{left:160.083077pt;}
.x89_c00408{left:163.440000pt;}
.xf_c00408{left:165.712000pt;}
.x77_c00408{left:166.800000pt;}
.x5f_c00408{left:167.882667pt;}
.x49_c00408{left:170.164619pt;}
.x59_c00408{left:172.320000pt;}
.x33_c00408{left:174.721600pt;}
.x52_c00408{left:180.240000pt;}
.x18_c00408{left:182.401333pt;}
.x7a_c00408{left:184.897333pt;}
.x62_c00408{left:186.241451pt;}
.x7_c00408{left:189.360000pt;}
.x10_c00408{left:194.513333pt;}
.x53_c00408{left:196.320000pt;}
.x68_c00408{left:197.280000pt;}
.x41_c00408{left:198.635835pt;}
.x2_c00408{left:200.160000pt;}
.x46_c00408{left:201.606395pt;}
.x6f_c00408{left:202.560000pt;}
.x19_c00408{left:208.561333pt;}
.x34_c00408{left:213.362741pt;}
.x8_c00408{left:214.800000pt;}
.x7b_c00408{left:215.849333pt;}
.x8f_c00408{left:218.400000pt;}
.x11_c00408{left:219.956000pt;}
.x54_c00408{left:223.920000pt;}
.x3e_c00408{left:225.788000pt;}
.x5a_c00408{left:232.800000pt;}
.x1a_c00408{left:234.961333pt;}
.x1f_c00408{left:237.121333pt;}
.x8a_c00408{left:238.560000pt;}
.x35_c00408{left:242.643285pt;}
.x93_c00408{left:245.040000pt;}
.x70_c00408{left:246.240000pt;}
.x67_c00408{left:247.201856pt;}
.x90_c00408{left:248.160000pt;}
.x2b_c00408{left:249.222667pt;}
.x9_c00408{left:252.720000pt;}
.x42_c00408{left:254.527845pt;}
.x92_c00408{left:256.560000pt;}
.x94_c00408{left:257.520000pt;}
.x3f_c00408{left:259.860000pt;}
.x25_c00408{left:264.961333pt;}
.x39_c00408{left:268.080000pt;}
.x8e_c00408{left:270.720000pt;}
.x4d_c00408{left:272.160000pt;}
.x63_c00408{left:273.124352pt;}
.x43_c00408{left:277.569739pt;}
.x1b_c00408{left:279.601333pt;}
.x12_c00408{left:282.117333pt;}
.x55_c00408{left:283.920000pt;}
.x4a_c00408{left:284.891813pt;}
.x3a_c00408{left:286.320000pt;}
.x20_c00408{left:288.721333pt;}
.x5b_c00408{left:290.469333pt;}
.x81_c00408{left:292.566151pt;}
.xa_c00408{left:296.880000pt;}
.x36_c00408{left:298.325515pt;}
.x64_c00408{left:301.204811pt;}
.x44_c00408{left:302.106331pt;}
.x13_c00408{left:304.161333pt;}
.x2c_c00408{left:306.121333pt;}
.x21_c00408{left:309.121333pt;}
.x4e_c00408{left:310.320000pt;}
.x47_c00408{left:311.774251pt;}
.x26_c00408{left:317.281333pt;}
.x7c_c00408{left:321.417333pt;}
.x2d_c00408{left:324.577333pt;}
.x3b_c00408{left:325.680000pt;}
.x69_c00408{left:326.880000pt;}
.x99_c00408{left:328.080000pt;}
.x14_c00408{left:329.398667pt;}
.x4b_c00408{left:331.694549pt;}
.x60_c00408{left:336.821333pt;}
.x82_c00408{left:339.608456pt;}
.xa7_c00408{left:341.569281pt;}
.x3_c00408{left:343.440000pt;}
.x7d_c00408{left:345.421333pt;}
.x27_c00408{left:347.521333pt;}
.x2e_c00408{left:349.066667pt;}
.xb_c00408{left:350.880000pt;}
.x37_c00408{left:354.247765pt;}
.x65_c00408{left:356.887040pt;}
.x56_c00408{left:363.840000pt;}
.x1c_c00408{left:366.001333pt;}
.x6a_c00408{left:369.120000pt;}
.x4f_c00408{left:371.040000pt;}
.x48_c00408{left:372.739035pt;}
.x15_c00408{left:375.957333pt;}
.xc_c00408{left:377.280000pt;}
.x9e_c00408{left:378.829333pt;}
.x22_c00408{left:380.161333pt;}
.x95_c00408{left:382.166667pt;}
.x9a_c00408{left:386.160000pt;}
.x3c_c00408{left:387.360000pt;}
.x2f_c00408{left:389.380000pt;}
.x40_c00408{left:390.604000pt;}
.x9f_c00408{left:391.788000pt;}
.x66_c00408{left:394.808139pt;}
.xd_c00408{left:396.000000pt;}
.x50_c00408{left:398.880000pt;}
.xa6_c00408{left:400.511467pt;}
.x5c_c00408{left:401.865333pt;}
.x71_c00408{left:403.680000pt;}
.x38_c00408{left:406.089749pt;}
.x4_c00408{left:407.040000pt;}
.x9b_c00408{left:412.560000pt;}
.x30_c00408{left:414.821333pt;}
.x7e_c00408{left:419.352000pt;}
.x83_c00408{left:421.451136pt;}
.x1d_c00408{left:423.361333pt;}
.x72_c00408{left:425.040000pt;}
.xa2_c00408{left:427.138391pt;}
.x9c_c00408{left:433.920000pt;}
.x5d_c00408{left:438.262667pt;}
.xa3_c00408{left:440.844347pt;}
.x96_c00408{left:442.453333pt;}
.x31_c00408{left:446.513333pt;}
.x73_c00408{left:449.040000pt;}
.x7f_c00408{left:458.214667pt;}
.x74_c00408{left:459.840000pt;}
.x97_c00408{left:461.678667pt;}
.xa0_c00408{left:464.580000pt;}
.xa4_c00408{left:466.295029pt;}
.x9d_c00408{left:467.520000pt;}
.x80_c00408{left:472.413333pt;}
.xa5_c00408{left:480.163635pt;}
.x84_c00408{left:485.771624pt;}
.x75_c00408{left:492.000000pt;}
.xa1_c00408{left:506.990667pt;}
.xa8_c00408{left:509.109281pt;}
.x98_c00408{left:513.233333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m71_c00409{transform:matrix(0.012119,-0.000170,0.003500,0.249976,0,0);-ms-transform:matrix(0.012119,-0.000170,0.003500,0.249976,0,0);-webkit-transform:matrix(0.012119,-0.000170,0.003500,0.249976,0,0);}
.m95_c00409{transform:matrix(0.013634,-0.000191,0.003500,0.249976,0,0);-ms-transform:matrix(0.013634,-0.000191,0.003500,0.249976,0,0);-webkit-transform:matrix(0.013634,-0.000191,0.003500,0.249976,0,0);}
.ma8_c00409{transform:matrix(0.035871,-0.000502,0.003500,0.249976,0,0);-ms-transform:matrix(0.035871,-0.000502,0.003500,0.249976,0,0);-webkit-transform:matrix(0.035871,-0.000502,0.003500,0.249976,0,0);}
.m14_c00409{transform:matrix(0.068618,-0.000961,0.003500,0.249976,0,0);-ms-transform:matrix(0.068618,-0.000961,0.003500,0.249976,0,0);-webkit-transform:matrix(0.068618,-0.000961,0.003500,0.249976,0,0);}
.m58_c00409{transform:matrix(0.070553,-0.000988,0.003500,0.249976,0,0);-ms-transform:matrix(0.070553,-0.000988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.070553,-0.000988,0.003500,0.249976,0,0);}
.m3_c00409{transform:matrix(0.084959,-0.001359,0.003999,0.249968,0,0);-ms-transform:matrix(0.084959,-0.001359,0.003999,0.249968,0,0);-webkit-transform:matrix(0.084959,-0.001359,0.003999,0.249968,0,0);}
.mba_c00409{transform:matrix(0.099650,-0.001395,0.003500,0.249976,0,0);-ms-transform:matrix(0.099650,-0.001395,0.003500,0.249976,0,0);-webkit-transform:matrix(0.099650,-0.001395,0.003500,0.249976,0,0);}
.mc_c00409{transform:matrix(0.106385,-0.001489,0.003500,0.249976,0,0);-ms-transform:matrix(0.106385,-0.001489,0.003500,0.249976,0,0);-webkit-transform:matrix(0.106385,-0.001489,0.003500,0.249976,0,0);}
.m3f_c00409{transform:matrix(0.110254,-0.001544,0.003500,0.249976,0,0);-ms-transform:matrix(0.110254,-0.001544,0.003500,0.249976,0,0);-webkit-transform:matrix(0.110254,-0.001544,0.003500,0.249976,0,0);}
.m57_c00409{transform:matrix(0.119303,-0.001670,0.003500,0.249976,0,0);-ms-transform:matrix(0.119303,-0.001670,0.003500,0.249976,0,0);-webkit-transform:matrix(0.119303,-0.001670,0.003500,0.249976,0,0);}
.ma6_c00409{transform:matrix(0.120628,-0.001689,0.003500,0.249976,0,0);-ms-transform:matrix(0.120628,-0.001689,0.003500,0.249976,0,0);-webkit-transform:matrix(0.120628,-0.001689,0.003500,0.249976,0,0);}
.mc6_c00409{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);}
.m54_c00409{transform:matrix(0.132157,-0.001850,0.003500,0.249976,0,0);-ms-transform:matrix(0.132157,-0.001850,0.003500,0.249976,0,0);-webkit-transform:matrix(0.132157,-0.001850,0.003500,0.249976,0,0);}
.mcd_c00409{transform:matrix(0.136965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136965,0.000000,0.000000,0.250000,0,0);}
.m65_c00409{transform:matrix(0.140686,-0.001970,0.003500,0.249976,0,0);-ms-transform:matrix(0.140686,-0.001970,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140686,-0.001970,0.003500,0.249976,0,0);}
.mc2_c00409{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);}
.m63_c00409{transform:matrix(0.148645,-0.002081,0.003500,0.249976,0,0);-ms-transform:matrix(0.148645,-0.002081,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148645,-0.002081,0.003500,0.249976,0,0);}
.me0_c00409{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.mb6_c00409{transform:matrix(0.150145,-0.002102,0.003500,0.249976,0,0);-ms-transform:matrix(0.150145,-0.002102,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150145,-0.002102,0.003500,0.249976,0,0);}
.m5d_c00409{transform:matrix(0.151135,-0.002116,0.003500,0.249976,0,0);-ms-transform:matrix(0.151135,-0.002116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151135,-0.002116,0.003500,0.249976,0,0);}
.m38_c00409{transform:matrix(0.151160,-0.002116,0.003500,0.249976,0,0);-ms-transform:matrix(0.151160,-0.002116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151160,-0.002116,0.003500,0.249976,0,0);}
.m2c_c00409{transform:matrix(0.152610,-0.002137,0.003500,0.249976,0,0);-ms-transform:matrix(0.152610,-0.002137,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152610,-0.002137,0.003500,0.249976,0,0);}
.m2e_c00409{transform:matrix(0.154315,-0.002160,0.003500,0.249976,0,0);-ms-transform:matrix(0.154315,-0.002160,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154315,-0.002160,0.003500,0.249976,0,0);}
.m91_c00409{transform:matrix(0.155165,-0.002172,0.003500,0.249976,0,0);-ms-transform:matrix(0.155165,-0.002172,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155165,-0.002172,0.003500,0.249976,0,0);}
.m18_c00409{transform:matrix(0.156820,-0.002195,0.003500,0.249976,0,0);-ms-transform:matrix(0.156820,-0.002195,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156820,-0.002195,0.003500,0.249976,0,0);}
.mca_c00409{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);}
.m61_c00409{transform:matrix(0.159499,-0.002233,0.003500,0.249976,0,0);-ms-transform:matrix(0.159499,-0.002233,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159499,-0.002233,0.003500,0.249976,0,0);}
.m2a_c00409{transform:matrix(0.160069,-0.002241,0.003500,0.249976,0,0);-ms-transform:matrix(0.160069,-0.002241,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160069,-0.002241,0.003500,0.249976,0,0);}
.m68_c00409{transform:matrix(0.161184,-0.002257,0.003500,0.249976,0,0);-ms-transform:matrix(0.161184,-0.002257,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161184,-0.002257,0.003500,0.249976,0,0);}
.m86_c00409{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);}
.m19_c00409{transform:matrix(0.161334,-0.002259,0.003500,0.249976,0,0);-ms-transform:matrix(0.161334,-0.002259,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161334,-0.002259,0.003500,0.249976,0,0);}
.m74_c00409{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);}
.ma2_c00409{transform:matrix(0.163559,-0.002290,0.003500,0.249976,0,0);-ms-transform:matrix(0.163559,-0.002290,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163559,-0.002290,0.003500,0.249976,0,0);}
.m51_c00409{transform:matrix(0.163939,-0.002295,0.003500,0.249976,0,0);-ms-transform:matrix(0.163939,-0.002295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163939,-0.002295,0.003500,0.249976,0,0);}
.m1b_c00409{transform:matrix(0.163999,-0.002296,0.003500,0.249976,0,0);-ms-transform:matrix(0.163999,-0.002296,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163999,-0.002296,0.003500,0.249976,0,0);}
.m67_c00409{transform:matrix(0.165089,-0.002311,0.003500,0.249976,0,0);-ms-transform:matrix(0.165089,-0.002311,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165089,-0.002311,0.003500,0.249976,0,0);}
.m11e_c00409{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);}
.m16_c00409{transform:matrix(0.167329,-0.002343,0.003500,0.249976,0,0);-ms-transform:matrix(0.167329,-0.002343,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167329,-0.002343,0.003500,0.249976,0,0);}
.m5_c00409{transform:matrix(0.167689,-0.002348,0.003500,0.249976,0,0);-ms-transform:matrix(0.167689,-0.002348,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167689,-0.002348,0.003500,0.249976,0,0);}
.mc0_c00409{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);}
.mf8_c00409{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);}
.m94_c00409{transform:matrix(0.169058,-0.002367,0.003500,0.249976,0,0);-ms-transform:matrix(0.169058,-0.002367,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169058,-0.002367,0.003500,0.249976,0,0);}
.mce_c00409{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);}
.m27_c00409{transform:matrix(0.169483,-0.002373,0.003500,0.249976,0,0);-ms-transform:matrix(0.169483,-0.002373,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169483,-0.002373,0.003500,0.249976,0,0);}
.m118_c00409{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.mc5_c00409{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);}
.mb0_c00409{transform:matrix(0.171278,-0.002398,0.003500,0.249976,0,0);-ms-transform:matrix(0.171278,-0.002398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171278,-0.002398,0.003500,0.249976,0,0);}
.ma_c00409{transform:matrix(0.172828,-0.002420,0.003500,0.249976,0,0);-ms-transform:matrix(0.172828,-0.002420,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172828,-0.002420,0.003500,0.249976,0,0);}
.m76_c00409{transform:matrix(0.173493,-0.002429,0.003500,0.249976,0,0);-ms-transform:matrix(0.173493,-0.002429,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173493,-0.002429,0.003500,0.249976,0,0);}
.m50_c00409{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);}
.m34_c00409{transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);-ms-transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174793,-0.002447,0.003500,0.249976,0,0);}
.m87_c00409{transform:matrix(0.175003,-0.002450,0.003500,0.249976,0,0);-ms-transform:matrix(0.175003,-0.002450,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175003,-0.002450,0.003500,0.249976,0,0);}
.m123_c00409{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);}
.m9d_c00409{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);}
.m9a_c00409{transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);-ms-transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176203,-0.002467,0.003500,0.249976,0,0);}
.m109_c00409{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);}
.mdc_c00409{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);}
.meb_c00409{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);}
.m73_c00409{transform:matrix(0.178068,-0.002493,0.003500,0.249976,0,0);-ms-transform:matrix(0.178068,-0.002493,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178068,-0.002493,0.003500,0.249976,0,0);}
.ma5_c00409{transform:matrix(0.178672,-0.002501,0.003500,0.249976,0,0);-ms-transform:matrix(0.178672,-0.002501,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178672,-0.002501,0.003500,0.249976,0,0);}
.m79_c00409{transform:matrix(0.178682,-0.002502,0.003500,0.249976,0,0);-ms-transform:matrix(0.178682,-0.002502,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178682,-0.002502,0.003500,0.249976,0,0);}
.mfd_c00409{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);}
.ma1_c00409{transform:matrix(0.178847,-0.002504,0.003500,0.249976,0,0);-ms-transform:matrix(0.178847,-0.002504,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178847,-0.002504,0.003500,0.249976,0,0);}
.m122_c00409{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);}
.m6c_c00409{transform:matrix(0.179527,-0.002513,0.003500,0.249976,0,0);-ms-transform:matrix(0.179527,-0.002513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179527,-0.002513,0.003500,0.249976,0,0);}
.m2b_c00409{transform:matrix(0.179532,-0.002513,0.003500,0.249976,0,0);-ms-transform:matrix(0.179532,-0.002513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179532,-0.002513,0.003500,0.249976,0,0);}
.mc1_c00409{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);}
.m33_c00409{transform:matrix(0.179727,-0.002516,0.003500,0.249976,0,0);-ms-transform:matrix(0.179727,-0.002516,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179727,-0.002516,0.003500,0.249976,0,0);}
.m11a_c00409{transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);}
.mfc_c00409{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);}
.mc3_c00409{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);}
.md5_c00409{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);}
.ma7_c00409{transform:matrix(0.180872,-0.002532,0.003500,0.249976,0,0);-ms-transform:matrix(0.180872,-0.002532,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180872,-0.002532,0.003500,0.249976,0,0);}
.mad_c00409{transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);-ms-transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180892,-0.002532,0.003500,0.249976,0,0);}
.m11_c00409{transform:matrix(0.181907,-0.002547,0.003500,0.249976,0,0);-ms-transform:matrix(0.181907,-0.002547,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181907,-0.002547,0.003500,0.249976,0,0);}
.me3_c00409{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);}
.m26_c00409{transform:matrix(0.182762,-0.002559,0.003500,0.249976,0,0);-ms-transform:matrix(0.182762,-0.002559,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182762,-0.002559,0.003500,0.249976,0,0);}
.m60_c00409{transform:matrix(0.182982,-0.002562,0.003500,0.249976,0,0);-ms-transform:matrix(0.182982,-0.002562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182982,-0.002562,0.003500,0.249976,0,0);}
.m100_c00409{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);}
.mdf_c00409{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);}
.m7a_c00409{transform:matrix(0.183467,-0.002569,0.003500,0.249976,0,0);-ms-transform:matrix(0.183467,-0.002569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183467,-0.002569,0.003500,0.249976,0,0);}
.m7_c00409{transform:matrix(0.183687,-0.002572,0.003500,0.249976,0,0);-ms-transform:matrix(0.183687,-0.002572,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183687,-0.002572,0.003500,0.249976,0,0);}
.m17_c00409{transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);-ms-transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);}
.m89_c00409{transform:matrix(0.184127,-0.002578,0.003500,0.249976,0,0);-ms-transform:matrix(0.184127,-0.002578,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184127,-0.002578,0.003500,0.249976,0,0);}
.mc9_c00409{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);}
.m105_c00409{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);}
.me4_c00409{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);}
.mb7_c00409{transform:matrix(0.185442,-0.002596,0.003500,0.249976,0,0);-ms-transform:matrix(0.185442,-0.002596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185442,-0.002596,0.003500,0.249976,0,0);}
.mac_c00409{transform:matrix(0.185642,-0.002599,0.003500,0.249976,0,0);-ms-transform:matrix(0.185642,-0.002599,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185642,-0.002599,0.003500,0.249976,0,0);}
.mf7_c00409{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);}
.mf0_c00409{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);}
.m15_c00409{transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,-0.002615,0.003500,0.249976,0,0);}
.md9_c00409{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);}
.m11c_c00409{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);}
.mf_c00409{transform:matrix(0.187902,-0.002631,0.003500,0.249976,0,0);-ms-transform:matrix(0.187902,-0.002631,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187902,-0.002631,0.003500,0.249976,0,0);}
.mea_c00409{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);}
.me1_c00409{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);}
.maa_c00409{transform:matrix(0.188821,-0.002644,0.003500,0.249976,0,0);-ms-transform:matrix(0.188821,-0.002644,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188821,-0.002644,0.003500,0.249976,0,0);}
.m25_c00409{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);}
.m28_c00409{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);}
.m9f_c00409{transform:matrix(0.189686,-0.002656,0.003500,0.249976,0,0);-ms-transform:matrix(0.189686,-0.002656,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189686,-0.002656,0.003500,0.249976,0,0);}
.mf6_c00409{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);}
.m36_c00409{transform:matrix(0.190071,-0.002661,0.003500,0.249976,0,0);-ms-transform:matrix(0.190071,-0.002661,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190071,-0.002661,0.003500,0.249976,0,0);}
.mdb_c00409{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);}
.ma3_c00409{transform:matrix(0.190281,-0.002664,0.003500,0.249976,0,0);-ms-transform:matrix(0.190281,-0.002664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190281,-0.002664,0.003500,0.249976,0,0);}
.m7d_c00409{transform:matrix(0.190651,-0.002669,0.003500,0.249976,0,0);-ms-transform:matrix(0.190651,-0.002669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190651,-0.002669,0.003500,0.249976,0,0);}
.m4c_c00409{transform:matrix(0.191176,-0.002676,0.003500,0.249976,0,0);-ms-transform:matrix(0.191176,-0.002676,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191176,-0.002676,0.003500,0.249976,0,0);}
.mee_c00409{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);}
.mec_c00409{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);}
.m7e_c00409{transform:matrix(0.191956,-0.002687,0.003500,0.249976,0,0);-ms-transform:matrix(0.191956,-0.002687,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191956,-0.002687,0.003500,0.249976,0,0);}
.m35_c00409{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);}
.m4b_c00409{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);}
.mb3_c00409{transform:matrix(0.192376,-0.002693,0.003500,0.249976,0,0);-ms-transform:matrix(0.192376,-0.002693,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192376,-0.002693,0.003500,0.249976,0,0);}
.mc4_c00409{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);}
.m9b_c00409{transform:matrix(0.193221,-0.002705,0.003500,0.249976,0,0);-ms-transform:matrix(0.193221,-0.002705,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193221,-0.002705,0.003500,0.249976,0,0);}
.m4e_c00409{transform:matrix(0.193516,-0.002709,0.003500,0.249976,0,0);-ms-transform:matrix(0.193516,-0.002709,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193516,-0.002709,0.003500,0.249976,0,0);}
.m90_c00409{transform:matrix(0.193901,-0.002715,0.003500,0.249976,0,0);-ms-transform:matrix(0.193901,-0.002715,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193901,-0.002715,0.003500,0.249976,0,0);}
.m99_c00409{transform:matrix(0.194021,-0.002716,0.003500,0.249976,0,0);-ms-transform:matrix(0.194021,-0.002716,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194021,-0.002716,0.003500,0.249976,0,0);}
.m12_c00409{transform:matrix(0.194186,-0.002719,0.003500,0.249976,0,0);-ms-transform:matrix(0.194186,-0.002719,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194186,-0.002719,0.003500,0.249976,0,0);}
.m116_c00409{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);}
.md7_c00409{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);}
.m11f_c00409{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);}
.ma0_c00409{transform:matrix(0.195181,-0.002733,0.003500,0.249976,0,0);-ms-transform:matrix(0.195181,-0.002733,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195181,-0.002733,0.003500,0.249976,0,0);}
.m1c_c00409{transform:matrix(0.195216,-0.002733,0.003500,0.249976,0,0);-ms-transform:matrix(0.195216,-0.002733,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195216,-0.002733,0.003500,0.249976,0,0);}
.m110_c00409{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);}
.m88_c00409{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);}
.m32_c00409{transform:matrix(0.196306,-0.002748,0.003500,0.249976,0,0);-ms-transform:matrix(0.196306,-0.002748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196306,-0.002748,0.003500,0.249976,0,0);}
.m40_c00409{transform:matrix(0.196336,-0.002749,0.003500,0.249976,0,0);-ms-transform:matrix(0.196336,-0.002749,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196336,-0.002749,0.003500,0.249976,0,0);}
.m97_c00409{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);}
.m31_c00409{transform:matrix(0.196446,-0.002750,0.003500,0.249976,0,0);-ms-transform:matrix(0.196446,-0.002750,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196446,-0.002750,0.003500,0.249976,0,0);}
.m2_c00409{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);}
.m21_c00409{transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197511,-0.002765,0.003500,0.249976,0,0);}
.m55_c00409{transform:matrix(0.198141,-0.002774,0.003500,0.249976,0,0);-ms-transform:matrix(0.198141,-0.002774,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198141,-0.002774,0.003500,0.249976,0,0);}
.m4a_c00409{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);}
.m66_c00409{transform:matrix(0.198881,-0.002784,0.003500,0.249976,0,0);-ms-transform:matrix(0.198881,-0.002784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198881,-0.002784,0.003500,0.249976,0,0);}
.m72_c00409{transform:matrix(0.198971,-0.002786,0.003500,0.249976,0,0);-ms-transform:matrix(0.198971,-0.002786,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198971,-0.002786,0.003500,0.249976,0,0);}
.m3e_c00409{transform:matrix(0.199045,-0.002787,0.003500,0.249976,0,0);-ms-transform:matrix(0.199045,-0.002787,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199045,-0.002787,0.003500,0.249976,0,0);}
.m75_c00409{transform:matrix(0.199110,-0.002788,0.003500,0.249976,0,0);-ms-transform:matrix(0.199110,-0.002788,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199110,-0.002788,0.003500,0.249976,0,0);}
.m92_c00409{transform:matrix(0.199450,-0.002792,0.003500,0.249976,0,0);-ms-transform:matrix(0.199450,-0.002792,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199450,-0.002792,0.003500,0.249976,0,0);}
.m69_c00409{transform:matrix(0.199540,-0.002794,0.003500,0.249976,0,0);-ms-transform:matrix(0.199540,-0.002794,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199540,-0.002794,0.003500,0.249976,0,0);}
.m7c_c00409{transform:matrix(0.199760,-0.002797,0.003500,0.249976,0,0);-ms-transform:matrix(0.199760,-0.002797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199760,-0.002797,0.003500,0.249976,0,0);}
.m108_c00409{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);}
.m8f_c00409{transform:matrix(0.200275,-0.002804,0.003500,0.249976,0,0);-ms-transform:matrix(0.200275,-0.002804,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200275,-0.002804,0.003500,0.249976,0,0);}
.mf1_c00409{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);}
.m7f_c00409{transform:matrix(0.200720,-0.002810,0.003500,0.249976,0,0);-ms-transform:matrix(0.200720,-0.002810,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200720,-0.002810,0.003500,0.249976,0,0);}
.m62_c00409{transform:matrix(0.201030,-0.002814,0.003500,0.249976,0,0);-ms-transform:matrix(0.201030,-0.002814,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201030,-0.002814,0.003500,0.249976,0,0);}
.m98_c00409{transform:matrix(0.201425,-0.002820,0.003500,0.249976,0,0);-ms-transform:matrix(0.201425,-0.002820,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201425,-0.002820,0.003500,0.249976,0,0);}
.m80_c00409{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);}
.m85_c00409{transform:matrix(0.201545,-0.002822,0.003500,0.249976,0,0);-ms-transform:matrix(0.201545,-0.002822,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201545,-0.002822,0.003500,0.249976,0,0);}
.m11d_c00409{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);}
.mb_c00409{transform:matrix(0.202610,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202610,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202610,-0.002837,0.003500,0.249976,0,0);}
.me_c00409{transform:matrix(0.202760,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202760,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202760,-0.002839,0.003500,0.249976,0,0);}
.m4d_c00409{transform:matrix(0.202810,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202810,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202810,-0.002839,0.003500,0.249976,0,0);}
.m8e_c00409{transform:matrix(0.202870,-0.002840,0.003500,0.249976,0,0);-ms-transform:matrix(0.202870,-0.002840,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202870,-0.002840,0.003500,0.249976,0,0);}
.mda_c00409{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);}
.m64_c00409{transform:matrix(0.203410,-0.002848,0.003500,0.249976,0,0);-ms-transform:matrix(0.203410,-0.002848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203410,-0.002848,0.003500,0.249976,0,0);}
.m6a_c00409{transform:matrix(0.203635,-0.002851,0.003500,0.249976,0,0);-ms-transform:matrix(0.203635,-0.002851,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203635,-0.002851,0.003500,0.249976,0,0);}
.m10c_c00409{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);}
.m77_c00409{transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);-ms-transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203840,-0.002854,0.003500,0.249976,0,0);}
.m10a_c00409{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);}
.mcb_c00409{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);}
.mef_c00409{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);}
.m53_c00409{transform:matrix(0.204625,-0.002865,0.003500,0.249976,0,0);-ms-transform:matrix(0.204625,-0.002865,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204625,-0.002865,0.003500,0.249976,0,0);}
.m11b_c00409{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);}
.m6f_c00409{transform:matrix(0.204990,-0.002870,0.003500,0.249976,0,0);-ms-transform:matrix(0.204990,-0.002870,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204990,-0.002870,0.003500,0.249976,0,0);}
.m128_c00409{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);}
.m10b_c00409{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);}
.m3c_c00409{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);}
.m23_c00409{transform:matrix(0.206385,-0.002889,0.003500,0.249976,0,0);-ms-transform:matrix(0.206385,-0.002889,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206385,-0.002889,0.003500,0.249976,0,0);}
.m46_c00409{transform:matrix(0.206575,-0.002892,0.003500,0.249976,0,0);-ms-transform:matrix(0.206575,-0.002892,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206575,-0.002892,0.003500,0.249976,0,0);}
.m1a_c00409{transform:matrix(0.206775,-0.002895,0.003500,0.249976,0,0);-ms-transform:matrix(0.206775,-0.002895,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206775,-0.002895,0.003500,0.249976,0,0);}
.md8_c00409{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);}
.mbf_c00409{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);}
.ma4_c00409{transform:matrix(0.207275,-0.002902,0.003500,0.249976,0,0);-ms-transform:matrix(0.207275,-0.002902,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207275,-0.002902,0.003500,0.249976,0,0);}
.m45_c00409{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);}
.mc8_c00409{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_c00409{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);}
.m9c_c00409{transform:matrix(0.208530,-0.002919,0.003500,0.249976,0,0);-ms-transform:matrix(0.208530,-0.002919,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208530,-0.002919,0.003500,0.249976,0,0);}
.m1f_c00409{transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);-ms-transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209394,-0.002932,0.003500,0.249976,0,0);}
.m6d_c00409{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);}
.m8d_c00409{transform:matrix(0.209464,-0.002933,0.003500,0.249976,0,0);-ms-transform:matrix(0.209464,-0.002933,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209464,-0.002933,0.003500,0.249976,0,0);}
.mb5_c00409{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);}
.m49_c00409{transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);-ms-transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);}
.m42_c00409{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);}
.md_c00409{transform:matrix(0.210434,-0.002946,0.003500,0.249976,0,0);-ms-transform:matrix(0.210434,-0.002946,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210434,-0.002946,0.003500,0.249976,0,0);}
.m10f_c00409{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);}
.m5b_c00409{transform:matrix(0.210719,-0.002950,0.003500,0.249976,0,0);-ms-transform:matrix(0.210719,-0.002950,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210719,-0.002950,0.003500,0.249976,0,0);}
.m6e_c00409{transform:matrix(0.211819,-0.002965,0.003500,0.249976,0,0);-ms-transform:matrix(0.211819,-0.002965,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211819,-0.002965,0.003500,0.249976,0,0);}
.mdd_c00409{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);}
.m5c_c00409{transform:matrix(0.212489,-0.002975,0.003500,0.249976,0,0);-ms-transform:matrix(0.212489,-0.002975,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212489,-0.002975,0.003500,0.249976,0,0);}
.m0_c00409{transform:matrix(0.212648,-0.003402,0.003999,0.249968,0,0);-ms-transform:matrix(0.212648,-0.003402,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212648,-0.003402,0.003999,0.249968,0,0);}
.m93_c00409{transform:matrix(0.213064,-0.002983,0.003500,0.249976,0,0);-ms-transform:matrix(0.213064,-0.002983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213064,-0.002983,0.003500,0.249976,0,0);}
.m56_c00409{transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);-ms-transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);}
.mfb_c00409{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);}
.m20_c00409{transform:matrix(0.213479,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213479,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213479,-0.002989,0.003500,0.249976,0,0);}
.m10_c00409{transform:matrix(0.213544,-0.002990,0.003500,0.249976,0,0);-ms-transform:matrix(0.213544,-0.002990,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213544,-0.002990,0.003500,0.249976,0,0);}
.mb9_c00409{transform:matrix(0.213639,-0.002991,0.003500,0.249976,0,0);-ms-transform:matrix(0.213639,-0.002991,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213639,-0.002991,0.003500,0.249976,0,0);}
.mde_c00409{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);}
.m83_c00409{transform:matrix(0.214029,-0.002996,0.003500,0.249976,0,0);-ms-transform:matrix(0.214029,-0.002996,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214029,-0.002996,0.003500,0.249976,0,0);}
.m4f_c00409{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);}
.mcc_c00409{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);}
.m8_c00409{transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-ms-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214569,-0.003004,0.003500,0.249976,0,0);}
.m9e_c00409{transform:matrix(0.214644,-0.003005,0.003500,0.249976,0,0);-ms-transform:matrix(0.214644,-0.003005,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214644,-0.003005,0.003500,0.249976,0,0);}
.m44_c00409{transform:matrix(0.215124,-0.003012,0.003500,0.249976,0,0);-ms-transform:matrix(0.215124,-0.003012,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215124,-0.003012,0.003500,0.249976,0,0);}
.m2d_c00409{transform:matrix(0.215319,-0.003014,0.003500,0.249976,0,0);-ms-transform:matrix(0.215319,-0.003014,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215319,-0.003014,0.003500,0.249976,0,0);}
.me9_c00409{transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);}
.m10e_c00409{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);}
.m13_c00409{transform:matrix(0.216559,-0.003032,0.003500,0.249976,0,0);-ms-transform:matrix(0.216559,-0.003032,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216559,-0.003032,0.003500,0.249976,0,0);}
.m126_c00409{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);}
.m30_c00409{transform:matrix(0.217129,-0.003040,0.003500,0.249976,0,0);-ms-transform:matrix(0.217129,-0.003040,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217129,-0.003040,0.003500,0.249976,0,0);}
.mc7_c00409{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);}
.m107_c00409{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);}
.m24_c00409{transform:matrix(0.220533,-0.003087,0.003500,0.249976,0,0);-ms-transform:matrix(0.220533,-0.003087,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220533,-0.003087,0.003500,0.249976,0,0);}
.md3_c00409{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);}
.mfe_c00409{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);}
.m6_c00409{transform:matrix(0.223258,-0.003126,0.003500,0.249976,0,0);-ms-transform:matrix(0.223258,-0.003126,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223258,-0.003126,0.003500,0.249976,0,0);}
.m5a_c00409{transform:matrix(0.224633,-0.003145,0.003500,0.249976,0,0);-ms-transform:matrix(0.224633,-0.003145,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224633,-0.003145,0.003500,0.249976,0,0);}
.m5f_c00409{transform:matrix(0.225003,-0.003150,0.003500,0.249976,0,0);-ms-transform:matrix(0.225003,-0.003150,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225003,-0.003150,0.003500,0.249976,0,0);}
.m1d_c00409{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);}
.mb8_c00409{transform:matrix(0.226153,-0.003166,0.003500,0.249976,0,0);-ms-transform:matrix(0.226153,-0.003166,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226153,-0.003166,0.003500,0.249976,0,0);}
.m101_c00409{transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);}
.maf_c00409{transform:matrix(0.226483,-0.003171,0.003500,0.249976,0,0);-ms-transform:matrix(0.226483,-0.003171,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226483,-0.003171,0.003500,0.249976,0,0);}
.me8_c00409{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);}
.m9_c00409{transform:matrix(0.226833,-0.003176,0.003500,0.249976,0,0);-ms-transform:matrix(0.226833,-0.003176,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226833,-0.003176,0.003500,0.249976,0,0);}
.m5e_c00409{transform:matrix(0.227548,-0.003186,0.003500,0.249976,0,0);-ms-transform:matrix(0.227548,-0.003186,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227548,-0.003186,0.003500,0.249976,0,0);}
.m41_c00409{transform:matrix(0.228013,-0.003192,0.003500,0.249976,0,0);-ms-transform:matrix(0.228013,-0.003192,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228013,-0.003192,0.003500,0.249976,0,0);}
.m81_c00409{transform:matrix(0.228408,-0.003198,0.003500,0.249976,0,0);-ms-transform:matrix(0.228408,-0.003198,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228408,-0.003198,0.003500,0.249976,0,0);}
.m102_c00409{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);}
.mcf_c00409{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);}
.m78_c00409{transform:matrix(0.230927,-0.003233,0.003500,0.249976,0,0);-ms-transform:matrix(0.230927,-0.003233,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230927,-0.003233,0.003500,0.249976,0,0);}
.m96_c00409{transform:matrix(0.231857,-0.003246,0.003500,0.249976,0,0);-ms-transform:matrix(0.231857,-0.003246,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231857,-0.003246,0.003500,0.249976,0,0);}
.m8a_c00409{transform:matrix(0.231872,-0.003246,0.003500,0.249976,0,0);-ms-transform:matrix(0.231872,-0.003246,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231872,-0.003246,0.003500,0.249976,0,0);}
.m43_c00409{transform:matrix(0.232282,-0.003252,0.003500,0.249976,0,0);-ms-transform:matrix(0.232282,-0.003252,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232282,-0.003252,0.003500,0.249976,0,0);}
.mae_c00409{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);}
.mab_c00409{transform:matrix(0.233437,-0.003268,0.003500,0.249976,0,0);-ms-transform:matrix(0.233437,-0.003268,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233437,-0.003268,0.003500,0.249976,0,0);}
.md4_c00409{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);}
.mbe_c00409{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00409{transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);-ms-transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);}
.m120_c00409{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);}
.md0_c00409{transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);}
.m84_c00409{transform:matrix(0.235802,-0.003301,0.003500,0.249976,0,0);-ms-transform:matrix(0.235802,-0.003301,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235802,-0.003301,0.003500,0.249976,0,0);}
.m59_c00409{transform:matrix(0.238657,-0.003341,0.003500,0.249976,0,0);-ms-transform:matrix(0.238657,-0.003341,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238657,-0.003341,0.003500,0.249976,0,0);}
.m22_c00409{transform:matrix(0.239762,-0.003357,0.003500,0.249976,0,0);-ms-transform:matrix(0.239762,-0.003357,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239762,-0.003357,0.003500,0.249976,0,0);}
.m48_c00409{transform:matrix(0.240866,-0.003372,0.003500,0.249976,0,0);-ms-transform:matrix(0.240866,-0.003372,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240866,-0.003372,0.003500,0.249976,0,0);}
.m121_c00409{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);}
.mff_c00409{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m114_c00409{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);}
.mf9_c00409{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);}
.m6b_c00409{transform:matrix(0.243306,-0.003406,0.003500,0.249976,0,0);-ms-transform:matrix(0.243306,-0.003406,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243306,-0.003406,0.003500,0.249976,0,0);}
.m29_c00409{transform:matrix(0.246926,-0.003457,0.003500,0.249976,0,0);-ms-transform:matrix(0.246926,-0.003457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246926,-0.003457,0.003500,0.249976,0,0);}
.m37_c00409{transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);-ms-transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);}
.m3b_c00409{transform:matrix(0.247716,-0.003468,0.003500,0.249976,0,0);-ms-transform:matrix(0.247716,-0.003468,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247716,-0.003468,0.003500,0.249976,0,0);}
.md1_c00409{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);}
.mb4_c00409{transform:matrix(0.249691,-0.003496,0.003500,0.249976,0,0);-ms-transform:matrix(0.249691,-0.003496,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249691,-0.003496,0.003500,0.249976,0,0);}
.m52_c00409{transform:matrix(0.250955,-0.003513,0.003500,0.249976,0,0);-ms-transform:matrix(0.250955,-0.003513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250955,-0.003513,0.003500,0.249976,0,0);}
.m113_c00409{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.med_c00409{transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);}
.mb1_c00409{transform:matrix(0.255245,-0.003573,0.003500,0.249976,0,0);-ms-transform:matrix(0.255245,-0.003573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255245,-0.003573,0.003500,0.249976,0,0);}
.md2_c00409{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);}
.m119_c00409{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.m124_c00409{transform:matrix(0.258910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258910,0.000000,0.000000,0.250000,0,0);}
.m117_c00409{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);}
.mf3_c00409{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);}
.m115_c00409{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);}
.me2_c00409{transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262150,0.000000,0.000000,0.250000,0,0);}
.m70_c00409{transform:matrix(0.262179,-0.003671,0.003500,0.249976,0,0);-ms-transform:matrix(0.262179,-0.003671,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262179,-0.003671,0.003500,0.249976,0,0);}
.mb2_c00409{transform:matrix(0.262734,-0.003678,0.003500,0.249976,0,0);-ms-transform:matrix(0.262734,-0.003678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262734,-0.003678,0.003500,0.249976,0,0);}
.m4_c00409{transform:matrix(0.262849,-0.003680,0.003500,0.249976,0,0);-ms-transform:matrix(0.262849,-0.003680,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262849,-0.003680,0.003500,0.249976,0,0);}
.m104_c00409{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.me6_c00409{transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);}
.me7_c00409{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);}
.m3a_c00409{transform:matrix(0.274653,-0.003845,0.003500,0.249976,0,0);-ms-transform:matrix(0.274653,-0.003845,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274653,-0.003845,0.003500,0.249976,0,0);}
.m82_c00409{transform:matrix(0.275078,-0.003851,0.003500,0.249976,0,0);-ms-transform:matrix(0.275078,-0.003851,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275078,-0.003851,0.003500,0.249976,0,0);}
.m103_c00409{transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277035,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.291818,-0.004669,0.003999,0.249968,0,0);-ms-transform:matrix(0.291818,-0.004669,0.003999,0.249968,0,0);-webkit-transform:matrix(0.291818,-0.004669,0.003999,0.249968,0,0);}
.m7b_c00409{transform:matrix(0.296886,-0.004156,0.003500,0.249976,0,0);-ms-transform:matrix(0.296886,-0.004156,0.003500,0.249976,0,0);-webkit-transform:matrix(0.296886,-0.004156,0.003500,0.249976,0,0);}
.m125_c00409{transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303360,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.307710,-0.004308,0.003500,0.249976,0,0);-ms-transform:matrix(0.307710,-0.004308,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307710,-0.004308,0.003500,0.249976,0,0);}
.mbb_c00409{transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.335887,-0.004702,0.003500,0.249976,0,0);-ms-transform:matrix(0.335887,-0.004702,0.003500,0.249976,0,0);-webkit-transform:matrix(0.335887,-0.004702,0.003500,0.249976,0,0);}
.m8c_c00409{transform:matrix(0.337037,-0.004719,0.003500,0.249976,0,0);-ms-transform:matrix(0.337037,-0.004719,0.003500,0.249976,0,0);-webkit-transform:matrix(0.337037,-0.004719,0.003500,0.249976,0,0);}
.m2f_c00409{transform:matrix(0.338437,-0.004738,0.003500,0.249976,0,0);-ms-transform:matrix(0.338437,-0.004738,0.003500,0.249976,0,0);-webkit-transform:matrix(0.338437,-0.004738,0.003500,0.249976,0,0);}
.mf5_c00409{transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343340,0.000000,0.000000,0.250000,0,0);}
.m111_c00409{transform:matrix(0.343660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343660,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.348451,-0.004878,0.003500,0.249976,0,0);-ms-transform:matrix(0.348451,-0.004878,0.003500,0.249976,0,0);-webkit-transform:matrix(0.348451,-0.004878,0.003500,0.249976,0,0);}
.md6_c00409{transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);}
.mfa_c00409{transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365095,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{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);}
.m106_c00409{transform:matrix(0.412070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412070,0.000000,0.000000,0.250000,0,0);}
.ma9_c00409{transform:matrix(0.427383,-0.005983,0.003500,0.249976,0,0);-ms-transform:matrix(0.427383,-0.005983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.427383,-0.005983,0.003500,0.249976,0,0);}
.m127_c00409{transform:matrix(0.467195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467195,0.000000,0.000000,0.250000,0,0);}
.m112_c00409{transform:matrix(0.473365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473365,0.000000,0.000000,0.250000,0,0);}
.mf4_c00409{transform:matrix(0.508230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508230,0.000000,0.000000,0.250000,0,0);}
.mbc_c00409{transform:matrix(0.569575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569575,0.000000,0.000000,0.250000,0,0);}
.me5_c00409{transform:matrix(0.586930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586930,0.000000,0.000000,0.250000,0,0);}
.mbd_c00409{transform:matrix(0.611500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00409{transform:matrix(0.885720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885720,0.000000,0.000000,0.250000,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;}
.fsd_c00409{font-size:16.800000px;}
.fsc_c00409{font-size:22.050000px;}
.fse_c00409{font-size:30.450000px;}
.fs14_c00409{font-size:44.100000px;}
.fs10_c00409{font-size:48.300000px;}
.fs12_c00409{font-size:49.350000px;}
.fs13_c00409{font-size:51.450000px;}
.fsf_c00409{font-size:52.500000px;}
.fs15_c00409{font-size:53.550000px;}
.fs11_c00409{font-size:55.650000px;}
.fs9_c00409{font-size:63.006174px;}
.fs1_c00409{font-size:64.056277px;}
.fs5_c00409{font-size:65.106379px;}
.fsb_c00409{font-size:66.156482px;}
.fs7_c00409{font-size:67.206585px;}
.fs3_c00409{font-size:68.256688px;}
.fs6_c00409{font-size:70.356894px;}
.fsa_c00409{font-size:71.406997px;}
.fs2_c00409{font-size:72.457100px;}
.fs4_c00409{font-size:73.507203px;}
.fs8_c00409{font-size:75.607408px;}
.fs0_c00409{font-size:134.417202px;}
.y0_c00409{bottom:0.000000px;}
.yc8_c00409{bottom:155.367000px;}
.yc7_c00409{bottom:173.127000px;}
.yc6_c00409{bottom:190.983000px;}
.yc5_c00409{bottom:208.804500px;}
.yc4_c00409{bottom:226.861500px;}
.yc3_c00409{bottom:244.414500px;}
.yc2_c00409{bottom:262.510500px;}
.yc1_c00409{bottom:280.092000px;}
.ybb_c00409{bottom:340.747260px;}
.yba_c00409{bottom:340.747344px;}
.ybd_c00409{bottom:340.747554px;}
.yb7_c00409{bottom:340.747671px;}
.yb9_c00409{bottom:340.747725px;}
.yb6_c00409{bottom:340.747794px;}
.ybc_c00409{bottom:340.747878px;}
.yb8_c00409{bottom:340.748169px;}
.yb5_c00409{bottom:340.748196px;}
.yb1_c00409{bottom:363.576498px;}
.yb2_c00409{bottom:363.576936px;}
.yb0_c00409{bottom:363.577221px;}
.yb3_c00409{bottom:363.577554px;}
.yad_c00409{bottom:363.577668px;}
.yaf_c00409{bottom:363.577683px;}
.yac_c00409{bottom:363.577731px;}
.yb4_c00409{bottom:363.577932px;}
.yae_c00409{bottom:363.578025px;}
.yaa_c00409{bottom:386.391105px;}
.yab_c00409{bottom:386.391396px;}
.ya9_c00409{bottom:386.391627px;}
.ya8_c00409{bottom:386.392170px;}
.ya7_c00409{bottom:386.392734px;}
.ya4_c00409{bottom:386.392800px;}
.ya6_c00409{bottom:386.393016px;}
.ya5_c00409{bottom:386.393118px;}
.ya3_c00409{bottom:386.393364px;}
.ya1_c00409{bottom:408.878013px;}
.y9f_c00409{bottom:408.878037px;}
.ya0_c00409{bottom:408.878055px;}
.y9a_c00409{bottom:408.878310px;}
.y9e_c00409{bottom:408.878439px;}
.y9b_c00409{bottom:408.878628px;}
.y9c_c00409{bottom:408.878646px;}
.ya2_c00409{bottom:408.878670px;}
.y99_c00409{bottom:408.878673px;}
.y98_c00409{bottom:408.879075px;}
.y9d_c00409{bottom:408.879084px;}
.y93_c00409{bottom:432.504480px;}
.y92_c00409{bottom:432.504723px;}
.y8f_c00409{bottom:432.504813px;}
.y95_c00409{bottom:432.505056px;}
.y94_c00409{bottom:432.505179px;}
.y90_c00409{bottom:432.505251px;}
.y96_c00409{bottom:432.505314px;}
.y91_c00409{bottom:432.505326px;}
.y97_c00409{bottom:432.505368px;}
.y8b_c00409{bottom:455.142132px;}
.y86_c00409{bottom:455.142186px;}
.y89_c00409{bottom:455.142318px;}
.y8a_c00409{bottom:455.142354px;}
.y88_c00409{bottom:455.142420px;}
.y8c_c00409{bottom:455.142609px;}
.y87_c00409{bottom:455.142783px;}
.y8e_c00409{bottom:455.143263px;}
.y8d_c00409{bottom:455.143347px;}
.yc0_c00409{bottom:455.220000px;}
.ybf_c00409{bottom:475.062000px;}
.y84_c00409{bottom:477.800982px;}
.y83_c00409{bottom:477.801126px;}
.y81_c00409{bottom:477.801294px;}
.y85_c00409{bottom:477.801300px;}
.y82_c00409{bottom:477.801810px;}
.y80_c00409{bottom:477.801816px;}
.ybe_c00409{bottom:479.520000px;}
.y7b_c00409{bottom:500.409606px;}
.y7a_c00409{bottom:500.409627px;}
.y7f_c00409{bottom:500.409711px;}
.y7e_c00409{bottom:500.410035px;}
.y7c_c00409{bottom:500.410143px;}
.y7d_c00409{bottom:500.410596px;}
.y79_c00409{bottom:523.451745px;}
.y76_c00409{bottom:523.451991px;}
.y74_c00409{bottom:523.452099px;}
.y78_c00409{bottom:523.452288px;}
.y75_c00409{bottom:523.452414px;}
.y73_c00409{bottom:523.452642px;}
.y77_c00409{bottom:523.452729px;}
.y6d_c00409{bottom:546.624654px;}
.y70_c00409{bottom:546.624684px;}
.y6c_c00409{bottom:546.624738px;}
.y6f_c00409{bottom:546.624906px;}
.y6e_c00409{bottom:546.625110px;}
.y72_c00409{bottom:546.625197px;}
.y71_c00409{bottom:546.625362px;}
.y6b_c00409{bottom:566.917707px;}
.y6a_c00409{bottom:566.917773px;}
.y68_c00409{bottom:566.918160px;}
.y69_c00409{bottom:566.918295px;}
.y67_c00409{bottom:566.918724px;}
.y66_c00409{bottom:566.919126px;}
.y65_c00409{bottom:566.919768px;}
.y5a_c00409{bottom:590.205180px;}
.y5b_c00409{bottom:590.434755px;}
.y5c_c00409{bottom:590.747481px;}
.y5d_c00409{bottom:591.024363px;}
.y5e_c00409{bottom:591.491217px;}
.y5f_c00409{bottom:591.723705px;}
.y60_c00409{bottom:592.122858px;}
.y61_c00409{bottom:592.430664px;}
.y62_c00409{bottom:592.797180px;}
.y63_c00409{bottom:592.991460px;}
.y64_c00409{bottom:593.505348px;}
.y50_c00409{bottom:615.511980px;}
.y51_c00409{bottom:615.512397px;}
.y52_c00409{bottom:615.513033px;}
.y53_c00409{bottom:615.513051px;}
.y55_c00409{bottom:615.513147px;}
.y58_c00409{bottom:615.513414px;}
.y54_c00409{bottom:615.513708px;}
.y56_c00409{bottom:615.513825px;}
.y57_c00409{bottom:615.513921px;}
.y59_c00409{bottom:615.514011px;}
.y49_c00409{bottom:636.108594px;}
.y4a_c00409{bottom:636.650454px;}
.y4b_c00409{bottom:637.212366px;}
.y4c_c00409{bottom:637.946463px;}
.y4d_c00409{bottom:638.178564px;}
.y4e_c00409{bottom:638.522313px;}
.y4f_c00409{bottom:639.224487px;}
.y41_c00409{bottom:657.980775px;}
.y42_c00409{bottom:658.444875px;}
.y43_c00409{bottom:659.140626px;}
.y44_c00409{bottom:659.933907px;}
.y45_c00409{bottom:660.204492px;}
.y46_c00409{bottom:660.624018px;}
.y47_c00409{bottom:661.535394px;}
.y48_c00409{bottom:661.962840px;}
.y37_c00409{bottom:681.203727px;}
.y38_c00409{bottom:681.464514px;}
.y39_c00409{bottom:681.698487px;}
.y3a_c00409{bottom:682.054692px;}
.y3b_c00409{bottom:682.172850px;}
.y3c_c00409{bottom:682.449579px;}
.y3d_c00409{bottom:682.961037px;}
.y3e_c00409{bottom:683.843004px;}
.y3f_c00409{bottom:684.205143px;}
.y40_c00409{bottom:684.824496px;}
.y2f_c00409{bottom:705.326397px;}
.y30_c00409{bottom:705.326673px;}
.y31_c00409{bottom:705.326931px;}
.y32_c00409{bottom:705.327366px;}
.y33_c00409{bottom:705.328044px;}
.y35_c00409{bottom:705.328098px;}
.y34_c00409{bottom:705.328260px;}
.y36_c00409{bottom:705.328836px;}
.y26_c00409{bottom:726.562845px;}
.y27_c00409{bottom:726.841896px;}
.y28_c00409{bottom:727.260183px;}
.y29_c00409{bottom:727.576119px;}
.y2a_c00409{bottom:727.749468px;}
.y2b_c00409{bottom:728.393010px;}
.y2c_c00409{bottom:728.678625px;}
.y2d_c00409{bottom:729.032382px;}
.y2e_c00409{bottom:729.309069px;}
.y23_c00409{bottom:750.542106px;}
.y22_c00409{bottom:750.542532px;}
.y21_c00409{bottom:750.542616px;}
.y25_c00409{bottom:750.542661px;}
.y24_c00409{bottom:750.542784px;}
.y20_c00409{bottom:750.543138px;}
.y16_c00409{bottom:771.656361px;}
.y17_c00409{bottom:771.995805px;}
.y18_c00409{bottom:772.504512px;}
.y19_c00409{bottom:772.915719px;}
.y1a_c00409{bottom:773.120562px;}
.y1b_c00409{bottom:773.485299px;}
.y1c_c00409{bottom:773.738598px;}
.y1d_c00409{bottom:774.145962px;}
.y1e_c00409{bottom:774.643524px;}
.y1f_c00409{bottom:775.527168px;}
.ye_c00409{bottom:794.610408px;}
.yf_c00409{bottom:795.001305px;}
.y10_c00409{bottom:795.439155px;}
.y11_c00409{bottom:796.258974px;}
.y12_c00409{bottom:796.729074px;}
.y13_c00409{bottom:797.062977px;}
.y14_c00409{bottom:797.671659px;}
.y15_c00409{bottom:799.031499px;}
.y5_c00409{bottom:817.293000px;}
.y6_c00409{bottom:817.996374px;}
.y7_c00409{bottom:818.775348px;}
.y8_c00409{bottom:819.473787px;}
.y9_c00409{bottom:819.833916px;}
.ya_c00409{bottom:820.370613px;}
.yb_c00409{bottom:820.703379px;}
.yc_c00409{bottom:821.100237px;}
.yd_c00409{bottom:821.782443px;}
.y1_c00409{bottom:861.304500px;}
.y2_c00409{bottom:862.462596px;}
.y3_c00409{bottom:863.706732px;}
.y4_c00409{bottom:865.105620px;}
.hf_c00409{height:16.800000px;}
.he_c00409{height:22.050000px;}
.h10_c00409{height:30.450000px;}
.h16_c00409{height:44.100000px;}
.h12_c00409{height:48.300000px;}
.h14_c00409{height:49.350000px;}
.h15_c00409{height:51.450000px;}
.h11_c00409{height:52.500000px;}
.h17_c00409{height:53.550000px;}
.h13_c00409{height:55.650000px;}
.hb_c00409{height:63.006174px;}
.h3_c00409{height:64.056277px;}
.h7_c00409{height:65.106379px;}
.hd_c00409{height:66.156482px;}
.h9_c00409{height:67.206585px;}
.h5_c00409{height:68.256688px;}
.h8_c00409{height:70.356894px;}
.hc_c00409{height:71.406997px;}
.h4_c00409{height:72.457100px;}
.h6_c00409{height:73.507203px;}
.ha_c00409{height:75.607408px;}
.h2_c00409{height:134.417202px;}
.h0_c00409{height:1008.450000px;}
.h1_c00409{height:1008.750000px;}
.w1_c00409{width:689.250000px;}
.w0_c00409{width:689.550000px;}
.x0_c00409{left:0.000000px;}
.x7f_c00409{left:142.020000px;}
.x77_c00409{left:154.440000px;}
.x6b_c00409{left:157.680372px;}
.x80_c00409{left:160.380000px;}
.x88_c00409{left:162.810000px;}
.x93_c00409{left:167.400000px;}
.x6e_c00409{left:168.749592px;}
.x78_c00409{left:172.530000px;}
.x8e_c00409{left:173.610000px;}
.x29_c00409{left:175.769373px;}
.x5_c00409{left:177.567000px;}
.xa1_c00409{left:179.010000px;}
.x94_c00409{left:184.680000px;}
.x3e_c00409{left:195.214839px;}
.x57_c00409{left:196.835274px;}
.x95_c00409{left:198.990000px;}
.x2e_c00409{left:200.223666px;}
.x22_c00409{left:202.651983px;}
.x46_c00409{left:204.230118px;}
.x1d_c00409{left:206.551002px;}
.x62_c00409{left:207.909126px;}
.xe_c00409{left:210.442965px;}
.x14_c00409{left:211.515189px;}
.x5a_c00409{left:213.847062px;}
.x99_c00409{left:215.460000px;}
.x36_c00409{left:218.610981px;}
.x2f_c00409{left:221.544069px;}
.x79_c00409{left:222.750000px;}
.x96_c00409{left:223.830000px;}
.x8f_c00409{left:225.720000px;}
.x6_c00409{left:227.808000px;}
.x97_c00409{left:231.660000px;}
.x2a_c00409{left:233.014587px;}
.x4d_c00409{left:234.098631px;}
.x23_c00409{left:240.674079px;}
.x47_c00409{left:243.392415px;}
.x52_c00409{left:244.629756px;}
.xf_c00409{left:246.968994px;}
.x6c_c00409{left:249.219306px;}
.x63_c00409{left:252.463362px;}
.x30_c00409{left:253.952934px;}
.x6f_c00409{left:259.479879px;}
.x15_c00409{left:262.318524px;}
.x31_c00409{left:264.750396px;}
.x9a_c00409{left:268.110000px;}
.x24_c00409{left:269.349276px;}
.x1e_c00409{left:274.058232px;}
.x64_c00409{left:275.954961px;}
.x48_c00409{left:277.958313px;}
.x5b_c00409{left:280.004019px;}
.x1_c00409{left:281.380500px;}
.x7_c00409{left:283.449000px;}
.x25_c00409{left:285.053427px;}
.x3a_c00409{left:288.778428px;}
.x32_c00409{left:289.874946px;}
.x70_c00409{left:291.343116px;}
.x3f_c00409{left:293.773638px;}
.x4e_c00409{left:297.285021px;}
.x90_c00409{left:298.890000px;}
.x16_c00409{left:303.371313px;}
.x81_c00409{left:307.530000px;}
.x7a_c00409{left:309.420000px;}
.x10_c00409{left:315.279405px;}
.x40_c00409{left:321.316035px;}
.x17_c00409{left:323.896968px;}
.x82_c00409{left:326.700000px;}
.xa2_c00409{left:328.320000px;}
.xa0_c00409{left:331.290000px;}
.x8_c00409{left:333.337500px;}
.x55_c00409{left:334.817283px;}
.x33_c00409{left:336.373899px;}
.x7b_c00409{left:338.850000px;}
.x65_c00409{left:341.571813px;}
.x26_c00409{left:343.558884px;}
.x6d_c00409{left:344.807559px;}
.x91_c00409{left:346.680000px;}
.x2b_c00409{left:348.586725px;}
.x89_c00409{left:352.620000px;}
.x2_c00409{left:353.761500px;}
.x71_c00409{left:355.609716px;}
.x9_c00409{left:359.061000px;}
.x18_c00409{left:360.344505px;}
.x3b_c00409{left:362.218044px;}
.x58_c00409{left:364.791681px;}
.x1f_c00409{left:365.867229px;}
.x41_c00409{left:368.300733px;}
.x27_c00409{left:369.532476px;}
.x72_c00409{left:372.621555px;}
.x4f_c00409{left:373.702494px;}
.x2c_c00409{left:375.318954px;}
.x7c_c00409{left:377.460000px;}
.x37_c00409{left:378.483180px;}
.x11_c00409{left:382.245774px;}
.x92_c00409{left:384.210000px;}
.x19_c00409{left:385.724433px;}
.x42_c00409{left:390.443580px;}
.x20_c00409{left:392.599458px;}
.x53_c00409{left:395.304282px;}
.xa_c00409{left:397.396500px;}
.x8a_c00409{left:399.870000px;}
.x28_c00409{left:401.659320px;}
.x50_c00409{left:403.135269px;}
.x5e_c00409{left:405.296100px;}
.xa3_c00409{left:406.350000px;}
.x5c_c00409{left:407.724714px;}
.x83_c00409{left:409.050000px;}
.x49_c00409{left:415.362363px;}
.x34_c00409{left:416.517759px;}
.x66_c00409{left:417.719244px;}
.x3c_c00409{left:419.746257px;}
.xb_c00409{left:421.165500px;}
.x59_c00409{left:423.387168px;}
.x1a_c00409{left:426.502722px;}
.x68_c00409{left:427.978008px;}
.x3_c00409{left:431.520000px;}
.x12_c00409{left:433.010202px;}
.x56_c00409{left:434.997918px;}
.x21_c00409{left:439.314114px;}
.x5d_c00409{left:441.748371px;}
.xc_c00409{left:449.512500px;}
.x8b_c00409{left:452.250000px;}
.x4a_c00409{left:453.744576px;}
.x84_c00409{left:454.950000px;}
.x69_c00409{left:457.410783px;}
.x5f_c00409{left:458.762079px;}
.x2d_c00409{left:464.697468px;}
.x9b_c00409{left:466.290000px;}
.x43_c00409{left:472.800708px;}
.x1b_c00409{left:476.188494px;}
.x3d_c00409{left:489.941184px;}
.x51_c00409{left:491.433573px;}
.x60_c00409{left:495.216219px;}
.xd_c00409{left:498.241500px;}
.x38_c00409{left:499.481262px;}
.x54_c00409{left:502.504782px;}
.x76_c00409{left:504.630000px;}
.x35_c00409{left:505.699497px;}
.x7d_c00409{left:507.330000px;}
.x73_c00409{left:511.413750px;}
.x74_c00409{left:512.460000px;}
.x75_c00409{left:515.700000px;}
.x4_c00409{left:518.950500px;}
.x85_c00409{left:521.100000px;}
.x4b_c00409{left:523.914477px;}
.x8c_c00409{left:527.850000px;}
.xa4_c00409{left:530.010000px;}
.x86_c00409{left:537.300000px;}
.x39_c00409{left:538.371900px;}
.x67_c00409{left:543.010293px;}
.xa5_c00409{left:544.320000px;}
.x13_c00409{left:546.323373px;}
.x9c_c00409{left:547.830000px;}
.x87_c00409{left:552.150000px;}
.x9d_c00409{left:559.170000px;}
.x1c_c00409{left:564.489429px;}
.x8d_c00409{left:572.130000px;}
.x9e_c00409{left:576.450000px;}
.x44_c00409{left:577.570746px;}
.xa6_c00409{left:585.090000px;}
.x4c_c00409{left:588.161874px;}
.x6a_c00409{left:589.993260px;}
.x61_c00409{left:591.346056px;}
.x7e_c00409{left:594.540000px;}
.x98_c00409{left:599.670000px;}
.x9f_c00409{left:603.720000px;}
.xa7_c00409{left:610.470000px;}
.x45_c00409{left:617.264016px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fsd_c00409{font-size:14.933333pt;}
.fsc_c00409{font-size:19.600000pt;}
.fse_c00409{font-size:27.066667pt;}
.fs14_c00409{font-size:39.200000pt;}
.fs10_c00409{font-size:42.933333pt;}
.fs12_c00409{font-size:43.866667pt;}
.fs13_c00409{font-size:45.733333pt;}
.fsf_c00409{font-size:46.666667pt;}
.fs15_c00409{font-size:47.600000pt;}
.fs11_c00409{font-size:49.466667pt;}
.fs9_c00409{font-size:56.005488pt;}
.fs1_c00409{font-size:56.938913pt;}
.fs5_c00409{font-size:57.872337pt;}
.fsb_c00409{font-size:58.805762pt;}
.fs7_c00409{font-size:59.739187pt;}
.fs3_c00409{font-size:60.672612pt;}
.fs6_c00409{font-size:62.539461pt;}
.fsa_c00409{font-size:63.472886pt;}
.fs2_c00409{font-size:64.406311pt;}
.fs4_c00409{font-size:65.339736pt;}
.fs8_c00409{font-size:67.206585pt;}
.fs0_c00409{font-size:119.481957pt;}
.y0_c00409{bottom:0.000000pt;}
.yc8_c00409{bottom:138.104000pt;}
.yc7_c00409{bottom:153.890667pt;}
.yc6_c00409{bottom:169.762667pt;}
.yc5_c00409{bottom:185.604000pt;}
.yc4_c00409{bottom:201.654667pt;}
.yc3_c00409{bottom:217.257333pt;}
.yc2_c00409{bottom:233.342667pt;}
.yc1_c00409{bottom:248.970667pt;}
.ybb_c00409{bottom:302.886453pt;}
.yba_c00409{bottom:302.886528pt;}
.ybd_c00409{bottom:302.886715pt;}
.yb7_c00409{bottom:302.886819pt;}
.yb9_c00409{bottom:302.886867pt;}
.yb6_c00409{bottom:302.886928pt;}
.ybc_c00409{bottom:302.887003pt;}
.yb8_c00409{bottom:302.887261pt;}
.yb5_c00409{bottom:302.887285pt;}
.yb1_c00409{bottom:323.179109pt;}
.yb2_c00409{bottom:323.179499pt;}
.yb0_c00409{bottom:323.179752pt;}
.yb3_c00409{bottom:323.180048pt;}
.yad_c00409{bottom:323.180149pt;}
.yaf_c00409{bottom:323.180163pt;}
.yac_c00409{bottom:323.180205pt;}
.yb4_c00409{bottom:323.180384pt;}
.yae_c00409{bottom:323.180467pt;}
.yaa_c00409{bottom:343.458760pt;}
.yab_c00409{bottom:343.459019pt;}
.ya9_c00409{bottom:343.459224pt;}
.ya8_c00409{bottom:343.459707pt;}
.ya7_c00409{bottom:343.460208pt;}
.ya4_c00409{bottom:343.460267pt;}
.ya6_c00409{bottom:343.460459pt;}
.ya5_c00409{bottom:343.460549pt;}
.ya3_c00409{bottom:343.460768pt;}
.ya1_c00409{bottom:363.447123pt;}
.y9f_c00409{bottom:363.447144pt;}
.ya0_c00409{bottom:363.447160pt;}
.y9a_c00409{bottom:363.447387pt;}
.y9e_c00409{bottom:363.447501pt;}
.y9b_c00409{bottom:363.447669pt;}
.y9c_c00409{bottom:363.447685pt;}
.ya2_c00409{bottom:363.447707pt;}
.y99_c00409{bottom:363.447709pt;}
.y98_c00409{bottom:363.448067pt;}
.y9d_c00409{bottom:363.448075pt;}
.y93_c00409{bottom:384.448427pt;}
.y92_c00409{bottom:384.448643pt;}
.y8f_c00409{bottom:384.448723pt;}
.y95_c00409{bottom:384.448939pt;}
.y94_c00409{bottom:384.449048pt;}
.y90_c00409{bottom:384.449112pt;}
.y96_c00409{bottom:384.449168pt;}
.y91_c00409{bottom:384.449179pt;}
.y97_c00409{bottom:384.449216pt;}
.y8b_c00409{bottom:404.570784pt;}
.y86_c00409{bottom:404.570832pt;}
.y89_c00409{bottom:404.570949pt;}
.y8a_c00409{bottom:404.570981pt;}
.y88_c00409{bottom:404.571040pt;}
.y8c_c00409{bottom:404.571208pt;}
.y87_c00409{bottom:404.571363pt;}
.y8e_c00409{bottom:404.571789pt;}
.y8d_c00409{bottom:404.571864pt;}
.yc0_c00409{bottom:404.640000pt;}
.ybf_c00409{bottom:422.277333pt;}
.y84_c00409{bottom:424.711984pt;}
.y83_c00409{bottom:424.712112pt;}
.y81_c00409{bottom:424.712261pt;}
.y85_c00409{bottom:424.712267pt;}
.y82_c00409{bottom:424.712720pt;}
.y80_c00409{bottom:424.712725pt;}
.ybe_c00409{bottom:426.240000pt;}
.y7b_c00409{bottom:444.808539pt;}
.y7a_c00409{bottom:444.808557pt;}
.y7f_c00409{bottom:444.808632pt;}
.y7e_c00409{bottom:444.808920pt;}
.y7c_c00409{bottom:444.809016pt;}
.y7d_c00409{bottom:444.809419pt;}
.y79_c00409{bottom:465.290440pt;}
.y76_c00409{bottom:465.290659pt;}
.y74_c00409{bottom:465.290755pt;}
.y78_c00409{bottom:465.290923pt;}
.y75_c00409{bottom:465.291035pt;}
.y73_c00409{bottom:465.291237pt;}
.y77_c00409{bottom:465.291315pt;}
.y6d_c00409{bottom:485.888581pt;}
.y70_c00409{bottom:485.888608pt;}
.y6c_c00409{bottom:485.888656pt;}
.y6f_c00409{bottom:485.888805pt;}
.y6e_c00409{bottom:485.888987pt;}
.y72_c00409{bottom:485.889064pt;}
.y71_c00409{bottom:485.889211pt;}
.y6b_c00409{bottom:503.926851pt;}
.y6a_c00409{bottom:503.926909pt;}
.y68_c00409{bottom:503.927253pt;}
.y69_c00409{bottom:503.927373pt;}
.y67_c00409{bottom:503.927755pt;}
.y66_c00409{bottom:503.928112pt;}
.y65_c00409{bottom:503.928683pt;}
.y5a_c00409{bottom:524.626827pt;}
.y5b_c00409{bottom:524.830893pt;}
.y5c_c00409{bottom:525.108872pt;}
.y5d_c00409{bottom:525.354989pt;}
.y5e_c00409{bottom:525.769971pt;}
.y5f_c00409{bottom:525.976627pt;}
.y60_c00409{bottom:526.331429pt;}
.y61_c00409{bottom:526.605035pt;}
.y62_c00409{bottom:526.930827pt;}
.y63_c00409{bottom:527.103520pt;}
.y64_c00409{bottom:527.560309pt;}
.y50_c00409{bottom:547.121760pt;}
.y51_c00409{bottom:547.122131pt;}
.y52_c00409{bottom:547.122696pt;}
.y53_c00409{bottom:547.122712pt;}
.y55_c00409{bottom:547.122797pt;}
.y58_c00409{bottom:547.123035pt;}
.y54_c00409{bottom:547.123296pt;}
.y56_c00409{bottom:547.123400pt;}
.y57_c00409{bottom:547.123485pt;}
.y59_c00409{bottom:547.123565pt;}
.y49_c00409{bottom:565.429861pt;}
.y4a_c00409{bottom:565.911515pt;}
.y4b_c00409{bottom:566.410992pt;}
.y4c_c00409{bottom:567.063523pt;}
.y4d_c00409{bottom:567.269835pt;}
.y4e_c00409{bottom:567.575389pt;}
.y4f_c00409{bottom:568.199544pt;}
.y41_c00409{bottom:584.871800pt;}
.y42_c00409{bottom:585.284333pt;}
.y43_c00409{bottom:585.902779pt;}
.y44_c00409{bottom:586.607917pt;}
.y45_c00409{bottom:586.848437pt;}
.y46_c00409{bottom:587.221349pt;}
.y47_c00409{bottom:588.031461pt;}
.y48_c00409{bottom:588.411413pt;}
.y37_c00409{bottom:605.514424pt;}
.y38_c00409{bottom:605.746235pt;}
.y39_c00409{bottom:605.954211pt;}
.y3a_c00409{bottom:606.270837pt;}
.y3b_c00409{bottom:606.375867pt;}
.y3c_c00409{bottom:606.621848pt;}
.y3d_c00409{bottom:607.076477pt;}
.y3e_c00409{bottom:607.860448pt;}
.y3f_c00409{bottom:608.182349pt;}
.y40_c00409{bottom:608.732885pt;}
.y2f_c00409{bottom:626.956797pt;}
.y30_c00409{bottom:626.957043pt;}
.y31_c00409{bottom:626.957272pt;}
.y32_c00409{bottom:626.957659pt;}
.y33_c00409{bottom:626.958261pt;}
.y35_c00409{bottom:626.958309pt;}
.y34_c00409{bottom:626.958453pt;}
.y36_c00409{bottom:626.958965pt;}
.y26_c00409{bottom:645.833640pt;}
.y27_c00409{bottom:646.081685pt;}
.y28_c00409{bottom:646.453496pt;}
.y29_c00409{bottom:646.734328pt;}
.y2a_c00409{bottom:646.888416pt;}
.y2b_c00409{bottom:647.460453pt;}
.y2c_c00409{bottom:647.714333pt;}
.y2d_c00409{bottom:648.028784pt;}
.y2e_c00409{bottom:648.274728pt;}
.y23_c00409{bottom:667.148539pt;}
.y22_c00409{bottom:667.148917pt;}
.y21_c00409{bottom:667.148992pt;}
.y25_c00409{bottom:667.149032pt;}
.y24_c00409{bottom:667.149141pt;}
.y20_c00409{bottom:667.149456pt;}
.y16_c00409{bottom:685.916765pt;}
.y17_c00409{bottom:686.218493pt;}
.y18_c00409{bottom:686.670677pt;}
.y19_c00409{bottom:687.036195pt;}
.y1a_c00409{bottom:687.218277pt;}
.y1b_c00409{bottom:687.542488pt;}
.y1c_c00409{bottom:687.767643pt;}
.y1d_c00409{bottom:688.129744pt;}
.y1e_c00409{bottom:688.572021pt;}
.y1f_c00409{bottom:689.357483pt;}
.ye_c00409{bottom:706.320363pt;}
.yf_c00409{bottom:706.667827pt;}
.y10_c00409{bottom:707.057027pt;}
.y11_c00409{bottom:707.785755pt;}
.y12_c00409{bottom:708.203621pt;}
.y13_c00409{bottom:708.500424pt;}
.y14_c00409{bottom:709.041475pt;}
.y15_c00409{bottom:710.250221pt;}
.y5_c00409{bottom:726.482667pt;}
.y6_c00409{bottom:727.107888pt;}
.y7_c00409{bottom:727.800309pt;}
.y8_c00409{bottom:728.421144pt;}
.y9_c00409{bottom:728.741259pt;}
.ya_c00409{bottom:729.218323pt;}
.yb_c00409{bottom:729.514115pt;}
.yc_c00409{bottom:729.866877pt;}
.yd_c00409{bottom:730.473283pt;}
.y1_c00409{bottom:765.604000pt;}
.y2_c00409{bottom:766.633419pt;}
.y3_c00409{bottom:767.739317pt;}
.y4_c00409{bottom:768.982773pt;}
.hf_c00409{height:14.933333pt;}
.he_c00409{height:19.600000pt;}
.h10_c00409{height:27.066667pt;}
.h16_c00409{height:39.200000pt;}
.h12_c00409{height:42.933333pt;}
.h14_c00409{height:43.866667pt;}
.h15_c00409{height:45.733333pt;}
.h11_c00409{height:46.666667pt;}
.h17_c00409{height:47.600000pt;}
.h13_c00409{height:49.466667pt;}
.hb_c00409{height:56.005488pt;}
.h3_c00409{height:56.938913pt;}
.h7_c00409{height:57.872337pt;}
.hd_c00409{height:58.805762pt;}
.h9_c00409{height:59.739187pt;}
.h5_c00409{height:60.672612pt;}
.h8_c00409{height:62.539461pt;}
.hc_c00409{height:63.472886pt;}
.h4_c00409{height:64.406311pt;}
.h6_c00409{height:65.339736pt;}
.ha_c00409{height:67.206585pt;}
.h2_c00409{height:119.481957pt;}
.h0_c00409{height:896.400000pt;}
.h1_c00409{height:896.666667pt;}
.w1_c00409{width:612.666667pt;}
.w0_c00409{width:612.933333pt;}
.x0_c00409{left:0.000000pt;}
.x7f_c00409{left:126.240000pt;}
.x77_c00409{left:137.280000pt;}
.x6b_c00409{left:140.160331pt;}
.x80_c00409{left:142.560000pt;}
.x88_c00409{left:144.720000pt;}
.x93_c00409{left:148.800000pt;}
.x6e_c00409{left:149.999637pt;}
.x78_c00409{left:153.360000pt;}
.x8e_c00409{left:154.320000pt;}
.x29_c00409{left:156.239443pt;}
.x5_c00409{left:157.837333pt;}
.xa1_c00409{left:159.120000pt;}
.x94_c00409{left:164.160000pt;}
.x3e_c00409{left:173.524301pt;}
.x57_c00409{left:174.964688pt;}
.x95_c00409{left:176.880000pt;}
.x2e_c00409{left:177.976592pt;}
.x22_c00409{left:180.135096pt;}
.x46_c00409{left:181.537883pt;}
.x1d_c00409{left:183.600891pt;}
.x62_c00409{left:184.808112pt;}
.xe_c00409{left:187.060413pt;}
.x14_c00409{left:188.013501pt;}
.x5a_c00409{left:190.086277pt;}
.x99_c00409{left:191.520000pt;}
.x36_c00409{left:194.320872pt;}
.x2f_c00409{left:196.928061pt;}
.x79_c00409{left:198.000000pt;}
.x96_c00409{left:198.960000pt;}
.x8f_c00409{left:200.640000pt;}
.x6_c00409{left:202.496000pt;}
.x97_c00409{left:205.920000pt;}
.x2a_c00409{left:207.124077pt;}
.x4d_c00409{left:208.087672pt;}
.x23_c00409{left:213.932515pt;}
.x47_c00409{left:216.348813pt;}
.x52_c00409{left:217.448672pt;}
.xf_c00409{left:219.527995pt;}
.x6c_c00409{left:221.528272pt;}
.x63_c00409{left:224.411877pt;}
.x30_c00409{left:225.735941pt;}
.x6f_c00409{left:230.648781pt;}
.x15_c00409{left:233.172021pt;}
.x31_c00409{left:235.333685pt;}
.x9a_c00409{left:238.320000pt;}
.x24_c00409{left:239.421579pt;}
.x1e_c00409{left:243.607317pt;}
.x64_c00409{left:245.293299pt;}
.x48_c00409{left:247.074056pt;}
.x5b_c00409{left:248.892461pt;}
.x1_c00409{left:250.116000pt;}
.x7_c00409{left:251.954667pt;}
.x25_c00409{left:253.380824pt;}
.x3a_c00409{left:256.691936pt;}
.x32_c00409{left:257.666619pt;}
.x70_c00409{left:258.971659pt;}
.x3f_c00409{left:261.132123pt;}
.x4e_c00409{left:264.253352pt;}
.x90_c00409{left:265.680000pt;}
.x16_c00409{left:269.663389pt;}
.x81_c00409{left:273.360000pt;}
.x7a_c00409{left:275.040000pt;}
.x10_c00409{left:280.248360pt;}
.x40_c00409{left:285.614253pt;}
.x17_c00409{left:287.908416pt;}
.x82_c00409{left:290.400000pt;}
.xa2_c00409{left:291.840000pt;}
.xa0_c00409{left:294.480000pt;}
.x8_c00409{left:296.300000pt;}
.x55_c00409{left:297.615363pt;}
.x33_c00409{left:298.999021pt;}
.x7b_c00409{left:301.200000pt;}
.x65_c00409{left:303.619389pt;}
.x26_c00409{left:305.385675pt;}
.x6d_c00409{left:306.495608pt;}
.x91_c00409{left:308.160000pt;}
.x2b_c00409{left:309.854867pt;}
.x89_c00409{left:313.440000pt;}
.x2_c00409{left:314.454667pt;}
.x71_c00409{left:316.097525pt;}
.x9_c00409{left:319.165333pt;}
.x18_c00409{left:320.306227pt;}
.x3b_c00409{left:321.971595pt;}
.x58_c00409{left:324.259272pt;}
.x1f_c00409{left:325.215315pt;}
.x41_c00409{left:327.378429pt;}
.x27_c00409{left:328.473312pt;}
.x72_c00409{left:331.219160pt;}
.x4f_c00409{left:332.179995pt;}
.x2c_c00409{left:333.616848pt;}
.x7c_c00409{left:335.520000pt;}
.x37_c00409{left:336.429493pt;}
.x11_c00409{left:339.774021pt;}
.x92_c00409{left:341.520000pt;}
.x19_c00409{left:342.866163pt;}
.x42_c00409{left:347.060960pt;}
.x20_c00409{left:348.977296pt;}
.x53_c00409{left:351.381584pt;}
.xa_c00409{left:353.241333pt;}
.x8a_c00409{left:355.440000pt;}
.x28_c00409{left:357.030507pt;}
.x50_c00409{left:358.342461pt;}
.x5e_c00409{left:360.263200pt;}
.xa3_c00409{left:361.200000pt;}
.x5c_c00409{left:362.421968pt;}
.x83_c00409{left:363.600000pt;}
.x49_c00409{left:369.210989pt;}
.x34_c00409{left:370.238008pt;}
.x66_c00409{left:371.305995pt;}
.x3c_c00409{left:373.107784pt;}
.xb_c00409{left:374.369333pt;}
.x59_c00409{left:376.344149pt;}
.x1a_c00409{left:379.113531pt;}
.x68_c00409{left:380.424896pt;}
.x3_c00409{left:383.573333pt;}
.x12_c00409{left:384.897957pt;}
.x56_c00409{left:386.664816pt;}
.x21_c00409{left:390.501435pt;}
.x5d_c00409{left:392.665219pt;}
.xc_c00409{left:399.566667pt;}
.x8b_c00409{left:402.000000pt;}
.x4a_c00409{left:403.328512pt;}
.x84_c00409{left:404.400000pt;}
.x69_c00409{left:406.587363pt;}
.x5f_c00409{left:407.788515pt;}
.x2d_c00409{left:413.064416pt;}
.x9b_c00409{left:414.480000pt;}
.x43_c00409{left:420.267296pt;}
.x1b_c00409{left:423.278661pt;}
.x3d_c00409{left:435.503275pt;}
.x51_c00409{left:436.829843pt;}
.x60_c00409{left:440.192195pt;}
.xd_c00409{left:442.881333pt;}
.x38_c00409{left:443.983344pt;}
.x54_c00409{left:446.670917pt;}
.x76_c00409{left:448.560000pt;}
.x35_c00409{left:449.510664pt;}
.x7d_c00409{left:450.960000pt;}
.x73_c00409{left:454.590000pt;}
.x74_c00409{left:455.520000pt;}
.x75_c00409{left:458.400000pt;}
.x4_c00409{left:461.289333pt;}
.x85_c00409{left:463.200000pt;}
.x4b_c00409{left:465.701757pt;}
.x8c_c00409{left:469.200000pt;}
.xa4_c00409{left:471.120000pt;}
.x86_c00409{left:477.600000pt;}
.x39_c00409{left:478.552800pt;}
.x67_c00409{left:482.675816pt;}
.xa5_c00409{left:483.840000pt;}
.x13_c00409{left:485.620776pt;}
.x9c_c00409{left:486.960000pt;}
.x87_c00409{left:490.800000pt;}
.x9d_c00409{left:497.040000pt;}
.x1c_c00409{left:501.768381pt;}
.x8d_c00409{left:508.560000pt;}
.x9e_c00409{left:512.400000pt;}
.x44_c00409{left:513.396219pt;}
.xa6_c00409{left:520.080000pt;}
.x4c_c00409{left:522.810555pt;}
.x6a_c00409{left:524.438453pt;}
.x61_c00409{left:525.640939pt;}
.x7e_c00409{left:528.480000pt;}
.x98_c00409{left:533.040000pt;}
.x9f_c00409{left:536.640000pt;}
.xa7_c00409{left:542.640000pt;}
.x45_c00409{left:548.679125pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m6c_c00410{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.mbe_c00410{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);}
.m119_c00410{transform:matrix(0.089320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089320,0.000000,0.000000,0.250000,0,0);}
.m103_c00410{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.mee_c00410{transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);}
.mf1_c00410{transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);}
.ma6_c00410{transform:matrix(0.133330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133330,0.000000,0.000000,0.250000,0,0);}
.mbc_c00410{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);}
.m3a_c00410{transform:matrix(0.140287,-0.001543,0.002750,0.249985,0,0);-ms-transform:matrix(0.140287,-0.001543,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140287,-0.001543,0.002750,0.249985,0,0);}
.m12_c00410{transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140710,0.000000,0.000000,0.250000,0,0);}
.m9f_c00410{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);}
.mc2_c00410{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);}
.m33_c00410{transform:matrix(0.146653,-0.001467,0.002500,0.249988,0,0);-ms-transform:matrix(0.146653,-0.001467,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146653,-0.001467,0.002500,0.249988,0,0);}
.m36_c00410{transform:matrix(0.148988,-0.001490,0.002500,0.249988,0,0);-ms-transform:matrix(0.148988,-0.001490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148988,-0.001490,0.002500,0.249988,0,0);}
.ma5_c00410{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);}
.m18_c00410{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);}
.m64_c00410{transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);-ms-transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);}
.mab_c00410{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);}
.m95_c00410{transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);}
.m88_c00410{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);}
.m94_c00410{transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{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);}
.m8c_c00410{transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156760,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{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);}
.m13_c00410{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);}
.mb7_c00410{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);}
.m108_c00410{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);}
.m8b_c00410{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.ma1_c00410{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);}
.mdc_c00410{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);}
.m104_c00410{transform:matrix(0.160585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160585,0.000000,0.000000,0.250000,0,0);}
.maa_c00410{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);}
.m45_c00410{transform:matrix(0.161450,-0.001776,0.002750,0.249985,0,0);-ms-transform:matrix(0.161450,-0.001776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161450,-0.001776,0.002750,0.249985,0,0);}
.m8f_c00410{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);}
.m59_c00410{transform:matrix(0.161925,-0.001781,0.002750,0.249985,0,0);-ms-transform:matrix(0.161925,-0.001781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161925,-0.001781,0.002750,0.249985,0,0);}
.ma7_c00410{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);}
.ma0_c00410{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);}
.me5_c00410{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);}
.mc8_c00410{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);}
.m65_c00410{transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);-ms-transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);}
.mda_c00410{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);}
.m75_c00410{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);}
.me3_c00410{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);}
.mcc_c00410{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);}
.m2a_c00410{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);}
.m4e_c00410{transform:matrix(0.167335,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167335,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167335,-0.001841,0.002750,0.249985,0,0);}
.mae_c00410{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);}
.m41_c00410{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);}
.m6b_c00410{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);}
.m5a_c00410{transform:matrix(0.169790,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169790,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169790,-0.001868,0.002750,0.249985,0,0);}
.m93_c00410{transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);}
.m96_c00410{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);}
.m87_c00410{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);}
.mba_c00410{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);}
.m21_c00410{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);}
.ma4_c00410{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.mfd_c00410{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);}
.m57_c00410{transform:matrix(0.171465,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171465,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171465,-0.001886,0.002750,0.249985,0,0);}
.m8d_c00410{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);}
.m51_c00410{transform:matrix(0.171945,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171945,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171945,-0.001891,0.002750,0.249985,0,0);}
.m1e_c00410{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);}
.m5e_c00410{transform:matrix(0.172020,-0.001892,0.002750,0.249985,0,0);-ms-transform:matrix(0.172020,-0.001892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172020,-0.001892,0.002750,0.249985,0,0);}
.mc5_c00410{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);}
.mb0_c00410{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);}
.m70_c00410{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);}
.m115_c00410{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);}
.me9_c00410{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);}
.m14_c00410{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);}
.m3b_c00410{transform:matrix(0.174934,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174934,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174934,-0.001924,0.002750,0.249985,0,0);}
.m92_c00410{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);}
.m9e_c00410{transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);}
.m4b_c00410{transform:matrix(0.175579,-0.001931,0.002750,0.249985,0,0);-ms-transform:matrix(0.175579,-0.001931,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175579,-0.001931,0.002750,0.249985,0,0);}
.mb8_c00410{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);}
.m2b_c00410{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);}
.mfc_c00410{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);}
.m2_c00410{transform:matrix(0.177147,-0.002834,0.003999,0.249968,0,0);-ms-transform:matrix(0.177147,-0.002834,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177147,-0.002834,0.003999,0.249968,0,0);}
.m100_c00410{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);}
.mf_c00410{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);}
.m81_c00410{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);}
.m10_c00410{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);}
.me1_c00410{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);}
.m5d_c00410{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);}
.m9a_c00410{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);}
.m1a_c00410{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);}
.m46_c00410{transform:matrix(0.178349,-0.001962,0.002750,0.249985,0,0);-ms-transform:matrix(0.178349,-0.001962,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178349,-0.001962,0.002750,0.249985,0,0);}
.m61_c00410{transform:matrix(0.178539,-0.001964,0.002750,0.249985,0,0);-ms-transform:matrix(0.178539,-0.001964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178539,-0.001964,0.002750,0.249985,0,0);}
.m16_c00410{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);}
.m110_c00410{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{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);}
.mf7_c00410{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);}
.m48_c00410{transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180204,-0.001982,0.002750,0.249985,0,0);}
.mc_c00410{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);}
.md9_c00410{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);}
.m52_c00410{transform:matrix(0.180699,-0.001988,0.002750,0.249985,0,0);-ms-transform:matrix(0.180699,-0.001988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180699,-0.001988,0.002750,0.249985,0,0);}
.mc9_c00410{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);}
.m39_c00410{transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);-ms-transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181304,-0.001994,0.002750,0.249985,0,0);}
.m63_c00410{transform:matrix(0.182434,-0.002007,0.002750,0.249985,0,0);-ms-transform:matrix(0.182434,-0.002007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182434,-0.002007,0.002750,0.249985,0,0);}
.m3d_c00410{transform:matrix(0.182694,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182694,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182694,-0.002010,0.002750,0.249985,0,0);}
.m10f_c00410{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);}
.m73_c00410{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);}
.m50_c00410{transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183279,-0.002016,0.002750,0.249985,0,0);}
.mb9_c00410{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);}
.m2f_c00410{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);}
.m2d_c00410{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_c00410{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);}
.m20_c00410{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);}
.m7a_c00410{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);}
.mcd_c00410{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);}
.m2c_c00410{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);}
.m99_c00410{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);}
.m30_c00410{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);}
.m66_c00410{transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);}
.m72_c00410{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m8a_c00410{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);}
.m53_c00410{transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186174,-0.002048,0.002750,0.249985,0,0);}
.m37_c00410{transform:matrix(0.186611,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186611,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186611,-0.001866,0.002500,0.249988,0,0);}
.m3_c00410{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);}
.m60_c00410{transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);}
.mec_c00410{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);}
.m3c_c00410{transform:matrix(0.187729,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187729,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187729,-0.002065,0.002750,0.249985,0,0);}
.m15_c00410{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);}
.mff_c00410{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);}
.ma8_c00410{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);}
.m76_c00410{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);}
.m82_c00410{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);}
.m56_c00410{transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);-ms-transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188574,-0.002074,0.002750,0.249985,0,0);}
.m116_c00410{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);}
.m1f_c00410{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);}
.m5f_c00410{transform:matrix(0.189064,-0.002080,0.002750,0.249985,0,0);-ms-transform:matrix(0.189064,-0.002080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189064,-0.002080,0.002750,0.249985,0,0);}
.m40_c00410{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);}
.mfe_c00410{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);}
.m32_c00410{transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-ms-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189886,-0.001899,0.002500,0.249988,0,0);}
.m91_c00410{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);}
.maf_c00410{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.191100,-0.001911,0.002500,0.249988,0,0);-ms-transform:matrix(0.191100,-0.001911,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191100,-0.001911,0.002500,0.249988,0,0);}
.m5c_c00410{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);}
.m6e_c00410{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);}
.m2e_c00410{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);}
.mef_c00410{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);}
.m34_c00410{transform:matrix(0.193085,-0.001931,0.002500,0.249988,0,0);-ms-transform:matrix(0.193085,-0.001931,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193085,-0.001931,0.002500,0.249988,0,0);}
.m4f_c00410{transform:matrix(0.193103,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193103,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193103,-0.002124,0.002750,0.249985,0,0);}
.m31_c00410{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);}
.mc4_c00410{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);}
.m19_c00410{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);}
.m9d_c00410{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.m85_c00410{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);}
.m4d_c00410{transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);-ms-transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194323,-0.002138,0.002750,0.249985,0,0);}
.m74_c00410{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m89_c00410{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);}
.m62_c00410{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);}
.md4_c00410{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);}
.m4_c00410{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);}
.m77_c00410{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);}
.mde_c00410{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);}
.med_c00410{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);}
.m5b_c00410{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);}
.m49_c00410{transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);-ms-transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196273,-0.002159,0.002750,0.249985,0,0);}
.mdb_c00410{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);}
.m6d_c00410{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);}
.mcb_c00410{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);}
.m55_c00410{transform:matrix(0.197963,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.197963,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197963,-0.002178,0.002750,0.249985,0,0);}
.m86_c00410{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);}
.m43_c00410{transform:matrix(0.198468,-0.002183,0.002750,0.249985,0,0);-ms-transform:matrix(0.198468,-0.002183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198468,-0.002183,0.002750,0.249985,0,0);}
.m22_c00410{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);}
.ma2_c00410{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);}
.m0_c00410{transform:matrix(0.200144,-0.003202,0.003999,0.249968,0,0);-ms-transform:matrix(0.200144,-0.003202,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200144,-0.003202,0.003999,0.249968,0,0);}
.mb1_c00410{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);}
.m114_c00410{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);}
.m1_c00410{transform:matrix(0.202239,-0.003236,0.003999,0.249968,0,0);-ms-transform:matrix(0.202239,-0.003236,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202239,-0.003236,0.003999,0.249968,0,0);}
.m58_c00410{transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202448,-0.002227,0.002750,0.249985,0,0);}
.mad_c00410{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);}
.m83_c00410{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);}
.m24_c00410{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);}
.m54_c00410{transform:matrix(0.203358,-0.002237,0.002750,0.249985,0,0);-ms-transform:matrix(0.203358,-0.002237,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203358,-0.002237,0.002750,0.249985,0,0);}
.mf4_c00410{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);}
.mdf_c00410{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);}
.m23_c00410{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);}
.me7_c00410{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);}
.ma9_c00410{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);}
.m7d_c00410{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);}
.m25_c00410{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);}
.mc1_c00410{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);}
.mc0_c00410{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);}
.m106_c00410{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_c00410{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);}
.m112_c00410{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);}
.mc3_c00410{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);}
.m117_c00410{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);}
.mcf_c00410{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);}
.m5_c00410{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);}
.m26_c00410{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);}
.m42_c00410{transform:matrix(0.209272,-0.002302,0.002750,0.249985,0,0);-ms-transform:matrix(0.209272,-0.002302,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209272,-0.002302,0.002750,0.249985,0,0);}
.mea_c00410{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);}
.m71_c00410{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);}
.m44_c00410{transform:matrix(0.209697,-0.002307,0.002750,0.249985,0,0);-ms-transform:matrix(0.209697,-0.002307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209697,-0.002307,0.002750,0.249985,0,0);}
.meb_c00410{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);}
.md8_c00410{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);}
.m27_c00410{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);}
.mfa_c00410{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);}
.mac_c00410{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);}
.md3_c00410{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);}
.m4a_c00410{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);}
.m4c_c00410{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);}
.mc7_c00410{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);}
.md0_c00410{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);}
.mca_c00410{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);}
.mb2_c00410{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);}
.mf2_c00410{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);}
.m67_c00410{transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216357,-0.002380,0.002750,0.249985,0,0);}
.me8_c00410{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);}
.mf3_c00410{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);}
.m29_c00410{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);}
.md2_c00410{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);}
.m28_c00410{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00410{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);}
.m6_c00410{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);}
.me0_c00410{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);}
.md6_c00410{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);}
.m98_c00410{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);}
.mf6_c00410{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);}
.m107_c00410{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);}
.m47_c00410{transform:matrix(0.225646,-0.002482,0.002750,0.249985,0,0);-ms-transform:matrix(0.225646,-0.002482,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225646,-0.002482,0.002750,0.249985,0,0);}
.m78_c00410{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.mb4_c00410{transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);}
.md1_c00410{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_c00410{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);}
.mdd_c00410{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);}
.m79_c00410{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.m111_c00410{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);}
.m8e_c00410{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);}
.m10b_c00410{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);}
.mf9_c00410{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);}
.m84_c00410{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);}
.mf8_c00410{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);}
.m10a_c00410{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);}
.m68_c00410{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);}
.m10d_c00410{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);}
.m1d_c00410{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);}
.m7e_c00410{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);}
.m7b_c00410{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);}
.m69_c00410{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);}
.me_c00410{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);}
.mbf_c00410{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);}
.m8_c00410{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{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);}
.md7_c00410{transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);}
.m80_c00410{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);}
.m97_c00410{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m10c_c00410{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.me6_c00410{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);}
.m102_c00410{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);}
.m109_c00410{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.me2_c00410{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);}
.m3e_c00410{transform:matrix(0.253410,-0.002788,0.002750,0.249985,0,0);-ms-transform:matrix(0.253410,-0.002788,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253410,-0.002788,0.002750,0.249985,0,0);}
.m1c_c00410{transform:matrix(0.255725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255725,0.000000,0.000000,0.250000,0,0);}
.mf5_c00410{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);}
.me4_c00410{transform:matrix(0.256465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00410{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m7f_c00410{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);}
.mfb_c00410{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m113_c00410{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);}
.m9c_c00410{transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);}
.mc6_c00410{transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);}
.m90_c00410{transform:matrix(0.296085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296085,0.000000,0.000000,0.250000,0,0);}
.m105_c00410{transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);}
.mbd_c00410{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);}
.mf0_c00410{transform:matrix(0.309205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309205,0.000000,0.000000,0.250000,0,0);}
.ma3_c00410{transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.324030,-0.003564,0.002750,0.249985,0,0);-ms-transform:matrix(0.324030,-0.003564,0.002750,0.249985,0,0);-webkit-transform:matrix(0.324030,-0.003564,0.002750,0.249985,0,0);}
.m7c_c00410{transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339120,0.000000,0.000000,0.250000,0,0);}
.mb3_c00410{transform:matrix(0.342860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342860,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.352787,-0.003528,0.002500,0.249988,0,0);-ms-transform:matrix(0.352787,-0.003528,0.002500,0.249988,0,0);-webkit-transform:matrix(0.352787,-0.003528,0.002500,0.249988,0,0);}
.m10e_c00410{transform:matrix(0.354445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354445,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.355585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355585,0.000000,0.000000,0.250000,0,0);}
.m9b_c00410{transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);}
.mbb_c00410{transform:matrix(0.392055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392055,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.401715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401715,0.000000,0.000000,0.250000,0,0);}
.mb6_c00410{transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427260,0.000000,0.000000,0.250000,0,0);}
.mb5_c00410{transform:matrix(0.498915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498915,0.000000,0.000000,0.250000,0,0);}
.m101_c00410{transform:matrix(0.622350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622350,0.000000,0.000000,0.250000,0,0);}
.m118_c00410{transform:matrix(0.727660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727660,0.000000,0.000000,0.250000,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;}
.fsf_c00410{font-size:22.050000px;}
.fs14_c00410{font-size:44.100000px;}
.fs10_c00410{font-size:47.250000px;}
.fs12_c00410{font-size:48.300000px;}
.fs16_c00410{font-size:49.350000px;}
.fs13_c00410{font-size:50.400000px;}
.fs11_c00410{font-size:51.450000px;}
.fs18_c00410{font-size:53.550000px;}
.fs15_c00410{font-size:54.600000px;}
.fs19_c00410{font-size:55.650000px;}
.fsa_c00410{font-size:57.750000px;}
.fs1a_c00410{font-size:59.850000px;}
.fs17_c00410{font-size:60.900000px;}
.fsc_c00410{font-size:61.950000px;}
.fsb_c00410{font-size:67.200000px;}
.fs3_c00410{font-size:68.250000px;}
.fs7_c00410{font-size:68.254129px;}
.fse_c00410{font-size:69.300000px;}
.fs5_c00410{font-size:69.303465px;}
.fs1_c00410{font-size:70.350000px;}
.fs6_c00410{font-size:70.354256px;}
.fs4_c00410{font-size:71.400000px;}
.fs9_c00410{font-size:71.404320px;}
.fs0_c00410{font-size:71.409139px;}
.fsd_c00410{font-size:72.450000px;}
.fs8_c00410{font-size:73.504447px;}
.fs2_c00410{font-size:74.550000px;}
.y0_c00410{bottom:0.000000px;}
.y54_c00410{bottom:153.997500px;}
.y50_c00410{bottom:154.032000px;}
.y53_c00410{bottom:171.952500px;}
.y5b_c00410{bottom:172.956000px;}
.y52_c00410{bottom:189.487500px;}
.y5a_c00410{bottom:191.295000px;}
.y4f_c00410{bottom:207.375000px;}
.y59_c00410{bottom:208.518000px;}
.y4e_c00410{bottom:225.475500px;}
.y58_c00410{bottom:226.980000px;}
.y4d_c00410{bottom:242.685000px;}
.y57_c00410{bottom:244.390500px;}
.y4c_c00410{bottom:260.629500px;}
.y56_c00410{bottom:262.981500px;}
.y51_c00410{bottom:278.821500px;}
.y55_c00410{bottom:280.222500px;}
.y9_c00410{bottom:335.920500px;}
.y8_c00410{bottom:358.692000px;}
.y7_c00410{bottom:381.484500px;}
.y6_c00410{bottom:403.887000px;}
.y4b_c00410{bottom:422.550000px;}
.y4a_c00410{bottom:424.440000px;}
.y5_c00410{bottom:426.922500px;}
.y49_c00410{bottom:472.039500px;}
.y48_c00410{bottom:494.473500px;}
.y47_c00410{bottom:516.855000px;}
.y46_c00410{bottom:540.046500px;}
.y45_c00410{bottom:562.168500px;}
.y44_c00410{bottom:585.372000px;}
.y43_c00410{bottom:607.600500px;}
.y42_c00410{bottom:629.673000px;}
.y41_c00410{bottom:652.845000px;}
.y1_c00410{bottom:673.923000px;}
.y2_c00410{bottom:675.015552px;}
.y3_c00410{bottom:675.715584px;}
.y40_c00410{bottom:676.443000px;}
.y4_c00410{bottom:676.471752px;}
.y3f_c00410{bottom:697.682899px;}
.y3e_c00410{bottom:697.683232px;}
.y39_c00410{bottom:697.683871px;}
.y3d_c00410{bottom:697.683879px;}
.y3b_c00410{bottom:697.683882px;}
.y3a_c00410{bottom:697.683928px;}
.y37_c00410{bottom:697.683934px;}
.y38_c00410{bottom:697.684098px;}
.y3c_c00410{bottom:697.684585px;}
.y2d_c00410{bottom:718.467894px;}
.y2e_c00410{bottom:719.222920px;}
.y2f_c00410{bottom:719.459115px;}
.y30_c00410{bottom:719.922544px;}
.y31_c00410{bottom:720.545746px;}
.y32_c00410{bottom:720.957453px;}
.y33_c00410{bottom:721.193746px;}
.y34_c00410{bottom:721.637971px;}
.y35_c00410{bottom:721.977909px;}
.y36_c00410{bottom:722.425879px;}
.y24_c00410{bottom:741.959110px;}
.y25_c00410{bottom:742.261935px;}
.y26_c00410{bottom:742.733769px;}
.y27_c00410{bottom:743.146698px;}
.y28_c00410{bottom:743.863045px;}
.y29_c00410{bottom:744.518722px;}
.y2a_c00410{bottom:744.831199px;}
.y2b_c00410{bottom:745.303396px;}
.y2c_c00410{bottom:745.535073px;}
.y1a_c00410{bottom:763.559992px;}
.y1b_c00410{bottom:764.026414px;}
.y1c_c00410{bottom:764.608765px;}
.y1d_c00410{bottom:764.983002px;}
.y1e_c00410{bottom:765.205570px;}
.y1f_c00410{bottom:765.776107px;}
.y20_c00410{bottom:766.069527px;}
.y21_c00410{bottom:766.515588px;}
.y22_c00410{bottom:767.103648px;}
.y23_c00410{bottom:767.460064px;}
.y11_c00410{bottom:786.241500px;}
.y12_c00410{bottom:786.663339px;}
.y13_c00410{bottom:786.927751px;}
.y14_c00410{bottom:787.450636px;}
.y15_c00410{bottom:788.148537px;}
.y16_c00410{bottom:788.567340px;}
.y17_c00410{bottom:789.238642px;}
.y18_c00410{bottom:789.389947px;}
.y19_c00410{bottom:789.787944px;}
.ya_c00410{bottom:810.001500px;}
.yb_c00410{bottom:810.255450px;}
.yc_c00410{bottom:810.477330px;}
.yd_c00410{bottom:811.540920px;}
.ye_c00410{bottom:811.773075px;}
.yf_c00410{bottom:812.013735px;}
.y10_c00410{bottom:812.553390px;}
.h11_c00410{height:22.050000px;}
.h16_c00410{height:44.100000px;}
.h12_c00410{height:47.250000px;}
.h14_c00410{height:48.300000px;}
.h18_c00410{height:49.350000px;}
.h15_c00410{height:50.400000px;}
.h13_c00410{height:51.450000px;}
.h1a_c00410{height:53.550000px;}
.h17_c00410{height:54.600000px;}
.h1b_c00410{height:55.650000px;}
.hc_c00410{height:57.750000px;}
.h1c_c00410{height:59.850000px;}
.h19_c00410{height:60.900000px;}
.he_c00410{height:61.950000px;}
.hd_c00410{height:67.200000px;}
.h5_c00410{height:68.250000px;}
.h9_c00410{height:68.254129px;}
.h10_c00410{height:69.300000px;}
.h7_c00410{height:69.303465px;}
.h3_c00410{height:70.350000px;}
.h8_c00410{height:70.354256px;}
.h6_c00410{height:71.400000px;}
.hb_c00410{height:71.404320px;}
.h2_c00410{height:71.409139px;}
.hf_c00410{height:72.450000px;}
.ha_c00410{height:73.504447px;}
.h4_c00410{height:74.550000px;}
.h1_c00410{height:1005.000000px;}
.h0_c00410{height:1005.150000px;}
.w0_c00410{width:715.200000px;}
.w1_c00410{width:715.500000px;}
.x0_c00410{left:0.000000px;}
.x74_c00410{left:85.320000px;}
.x75_c00410{left:89.910000px;}
.x7f_c00410{left:92.340000px;}
.x7a_c00410{left:93.420000px;}
.x85_c00410{left:102.870000px;}
.x4e_c00410{left:117.180000px;}
.x19_c00410{left:119.070000px;}
.x80_c00410{left:120.690000px;}
.x88_c00410{left:123.120000px;}
.x86_c00410{left:124.740000px;}
.x1_c00410{left:126.045000px;}
.x47_c00410{left:127.169259px;}
.x5_c00410{left:129.060000px;}
.x20_c00410{left:130.410000px;}
.x7d_c00410{left:131.490000px;}
.x7c_c00410{left:136.350000px;}
.x8b_c00410{left:140.670000px;}
.x81_c00410{left:145.530000px;}
.x87_c00410{left:148.770000px;}
.x6_c00410{left:150.120000px;}
.x6c_c00410{left:152.010000px;}
.x3b_c00410{left:153.227613px;}
.x76_c00410{left:155.790000px;}
.x4f_c00410{left:157.680000px;}
.x7e_c00410{left:160.380000px;}
.x10_c00410{left:163.080000px;}
.x7_c00410{left:167.130000px;}
.x21_c00410{left:168.210000px;}
.x65_c00410{left:169.290000px;}
.x1a_c00410{left:171.180000px;}
.x2f_c00410{left:172.977000px;}
.x8c_c00410{left:176.040000px;}
.x29_c00410{left:179.010000px;}
.x48_c00410{left:181.442826px;}
.x59_c00410{left:184.680000px;}
.x31_c00410{left:187.542000px;}
.x40_c00410{left:189.165859px;}
.x2_c00410{left:194.329500px;}
.x3c_c00410{left:196.121613px;}
.x22_c00410{left:200.340000px;}
.x82_c00410{left:201.690000px;}
.x8d_c00410{left:202.770000px;}
.x89_c00410{left:205.470000px;}
.x8_c00410{left:206.820000px;}
.x11_c00410{left:208.440000px;}
.x63_c00410{left:210.330000px;}
.x1b_c00410{left:211.680000px;}
.x2a_c00410{left:217.890000px;}
.x23_c00410{left:219.780000px;}
.x36_c00410{left:221.565596px;}
.x77_c00410{left:223.560000px;}
.x83_c00410{left:227.340000px;}
.x68_c00410{left:231.660000px;}
.x50_c00410{left:232.740000px;}
.x12_c00410{left:234.360000px;}
.x3_c00410{left:238.081500px;}
.x5d_c00410{left:241.110000px;}
.xa_c00410{left:243.270000px;}
.x9_c00410{left:244.620000px;}
.x41_c00410{left:247.449216px;}
.x6d_c00410{left:249.750000px;}
.x1c_c00410{left:251.640000px;}
.xb_c00410{left:254.880000px;}
.x2b_c00410{left:257.040000px;}
.x7b_c00410{left:258.390000px;}
.x78_c00410{left:261.630000px;}
.x5a_c00410{left:263.250000px;}
.x13_c00410{left:267.030000px;}
.x51_c00410{left:268.920000px;}
.x60_c00410{left:270.000000px;}
.x6e_c00410{left:271.620000px;}
.x24_c00410{left:274.860000px;}
.x8a_c00410{left:275.940000px;}
.x30_c00410{left:279.336000px;}
.x84_c00410{left:281.340000px;}
.x49_c00410{left:282.429036px;}
.x4_c00410{left:285.342000px;}
.x79_c00410{left:287.280000px;}
.x25_c00410{left:296.730000px;}
.xc_c00410{left:298.620000px;}
.x1d_c00410{left:301.590000px;}
.x2c_c00410{left:305.640000px;}
.x57_c00410{left:308.340000px;}
.x6f_c00410{left:313.740000px;}
.x5b_c00410{left:315.360000px;}
.x69_c00410{left:317.520000px;}
.x61_c00410{left:319.140000px;}
.x64_c00410{left:321.300000px;}
.x1e_c00410{left:323.730000px;}
.x14_c00410{left:325.890000px;}
.x37_c00410{left:327.687595px;}
.xd_c00410{left:332.100000px;}
.x42_c00410{left:333.621759px;}
.x26_c00410{left:335.340000px;}
.x32_c00410{left:336.595500px;}
.x58_c00410{left:339.930000px;}
.x9e_c00410{left:343.710000px;}
.x2d_c00410{left:345.060000px;}
.x43_c00410{left:353.330044px;}
.x38_c00410{left:354.362095px;}
.x27_c00410{left:358.830000px;}
.xa1_c00410{left:360.990000px;}
.x15_c00410{left:363.420000px;}
.x52_c00410{left:370.440000px;}
.x5e_c00410{left:371.790000px;}
.x6a_c00410{left:373.140000px;}
.xe_c00410{left:374.490000px;}
.x4b_c00410{left:375.840000px;}
.x1f_c00410{left:376.920000px;}
.x4a_c00410{left:378.014619px;}
.x2e_c00410{left:380.970000px;}
.x5c_c00410{left:383.670000px;}
.x3d_c00410{left:386.797113px;}
.x66_c00410{left:388.260000px;}
.x44_c00410{left:390.304632px;}
.x62_c00410{left:392.040000px;}
.x53_c00410{left:393.390000px;}
.x39_c00410{left:394.913095px;}
.x33_c00410{left:397.623000px;}
.x6b_c00410{left:402.840000px;}
.xa2_c00410{left:404.730000px;}
.x8e_c00410{left:406.350000px;}
.xa3_c00410{left:407.430000px;}
.x28_c00410{left:408.780000px;}
.x5f_c00410{left:409.860000px;}
.x34_c00410{left:411.378000px;}
.x67_c00410{left:412.830000px;}
.xf_c00410{left:415.260000px;}
.x45_c00410{left:418.616818px;}
.x99_c00410{left:422.010000px;}
.x70_c00410{left:424.170000px;}
.x93_c00410{left:427.410000px;}
.x3e_c00410{left:429.724113px;}
.x16_c00410{left:431.460000px;}
.x9a_c00410{left:438.210000px;}
.x4c_c00410{left:440.370000px;}
.x35_c00410{left:447.559500px;}
.x9f_c00410{left:449.280000px;}
.x3f_c00410{left:450.785613px;}
.x46_c00410{left:455.931906px;}
.x9b_c00410{left:457.650000px;}
.x8f_c00410{left:461.160000px;}
.x54_c00410{left:463.320000px;}
.x17_c00410{left:469.800000px;}
.x9c_c00410{left:474.120000px;}
.x71_c00410{left:477.630000px;}
.x3a_c00410{left:480.774595px;}
.x94_c00410{left:482.490000px;}
.x55_c00410{left:484.110000px;}
.x18_c00410{left:487.620000px;}
.x4d_c00410{left:494.370000px;}
.x9d_c00410{left:502.200000px;}
.x95_c00410{left:505.170000px;}
.x56_c00410{left:508.950000px;}
.x90_c00410{left:512.190000px;}
.x72_c00410{left:528.120000px;}
.x73_c00410{left:533.520000px;}
.xa0_c00410{left:537.030000px;}
.x96_c00410{left:553.770000px;}
.x98_c00410{left:556.200000px;}
.x91_c00410{left:559.170000px;}
.x92_c00410{left:573.750000px;}
.x97_c00410{left:575.910000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
.fsf_c00410{font-size:19.600000pt;}
.fs14_c00410{font-size:39.200000pt;}
.fs10_c00410{font-size:42.000000pt;}
.fs12_c00410{font-size:42.933333pt;}
.fs16_c00410{font-size:43.866667pt;}
.fs13_c00410{font-size:44.800000pt;}
.fs11_c00410{font-size:45.733333pt;}
.fs18_c00410{font-size:47.600000pt;}
.fs15_c00410{font-size:48.533333pt;}
.fs19_c00410{font-size:49.466667pt;}
.fsa_c00410{font-size:51.333333pt;}
.fs1a_c00410{font-size:53.200000pt;}
.fs17_c00410{font-size:54.133333pt;}
.fsc_c00410{font-size:55.066667pt;}
.fsb_c00410{font-size:59.733333pt;}
.fs3_c00410{font-size:60.666667pt;}
.fs7_c00410{font-size:60.670337pt;}
.fse_c00410{font-size:61.600000pt;}
.fs5_c00410{font-size:61.603080pt;}
.fs1_c00410{font-size:62.533333pt;}
.fs6_c00410{font-size:62.537116pt;}
.fs4_c00410{font-size:63.466667pt;}
.fs9_c00410{font-size:63.470506pt;}
.fs0_c00410{font-size:63.474790pt;}
.fsd_c00410{font-size:64.400000pt;}
.fs8_c00410{font-size:65.337286pt;}
.fs2_c00410{font-size:66.266667pt;}
.y0_c00410{bottom:0.000000pt;}
.y54_c00410{bottom:136.886667pt;}
.y50_c00410{bottom:136.917333pt;}
.y53_c00410{bottom:152.846667pt;}
.y5b_c00410{bottom:153.738667pt;}
.y52_c00410{bottom:168.433333pt;}
.y5a_c00410{bottom:170.040000pt;}
.y4f_c00410{bottom:184.333333pt;}
.y59_c00410{bottom:185.349333pt;}
.y4e_c00410{bottom:200.422667pt;}
.y58_c00410{bottom:201.760000pt;}
.y4d_c00410{bottom:215.720000pt;}
.y57_c00410{bottom:217.236000pt;}
.y4c_c00410{bottom:231.670667pt;}
.y56_c00410{bottom:233.761333pt;}
.y51_c00410{bottom:247.841333pt;}
.y55_c00410{bottom:249.086667pt;}
.y9_c00410{bottom:298.596000pt;}
.y8_c00410{bottom:318.837333pt;}
.y7_c00410{bottom:339.097333pt;}
.y6_c00410{bottom:359.010667pt;}
.y4b_c00410{bottom:375.600000pt;}
.y4a_c00410{bottom:377.280000pt;}
.y5_c00410{bottom:379.486667pt;}
.y49_c00410{bottom:419.590667pt;}
.y48_c00410{bottom:439.532000pt;}
.y47_c00410{bottom:459.426667pt;}
.y46_c00410{bottom:480.041333pt;}
.y45_c00410{bottom:499.705333pt;}
.y44_c00410{bottom:520.330667pt;}
.y43_c00410{bottom:540.089333pt;}
.y42_c00410{bottom:559.709333pt;}
.y41_c00410{bottom:580.306667pt;}
.y1_c00410{bottom:599.042667pt;}
.y2_c00410{bottom:600.013824pt;}
.y3_c00410{bottom:600.636075pt;}
.y40_c00410{bottom:601.282667pt;}
.y4_c00410{bottom:601.308224pt;}
.y3f_c00410{bottom:620.162577pt;}
.y3e_c00410{bottom:620.162873pt;}
.y39_c00410{bottom:620.163441pt;}
.y3d_c00410{bottom:620.163448pt;}
.y3b_c00410{bottom:620.163451pt;}
.y3a_c00410{bottom:620.163492pt;}
.y37_c00410{bottom:620.163497pt;}
.y38_c00410{bottom:620.163643pt;}
.y3c_c00410{bottom:620.164076pt;}
.y2d_c00410{bottom:638.638128pt;}
.y2e_c00410{bottom:639.309263pt;}
.y2f_c00410{bottom:639.519213pt;}
.y30_c00410{bottom:639.931151pt;}
.y31_c00410{bottom:640.485108pt;}
.y32_c00410{bottom:640.851069pt;}
.y33_c00410{bottom:641.061108pt;}
.y34_c00410{bottom:641.455975pt;}
.y35_c00410{bottom:641.758141pt;}
.y36_c00410{bottom:642.156337pt;}
.y24_c00410{bottom:659.519209pt;}
.y25_c00410{bottom:659.788387pt;}
.y26_c00410{bottom:660.207795pt;}
.y27_c00410{bottom:660.574843pt;}
.y28_c00410{bottom:661.211596pt;}
.y29_c00410{bottom:661.794420pt;}
.y2a_c00410{bottom:662.072177pt;}
.y2b_c00410{bottom:662.491908pt;}
.y2c_c00410{bottom:662.697843pt;}
.y1a_c00410{bottom:678.719993pt;}
.y1b_c00410{bottom:679.134591pt;}
.y1c_c00410{bottom:679.652236pt;}
.y1d_c00410{bottom:679.984891pt;}
.y1e_c00410{bottom:680.182729pt;}
.y1f_c00410{bottom:680.689873pt;}
.y20_c00410{bottom:680.950691pt;}
.y21_c00410{bottom:681.347189pt;}
.y22_c00410{bottom:681.869909pt;}
.y23_c00410{bottom:682.186724pt;}
.y11_c00410{bottom:698.881333pt;}
.y12_c00410{bottom:699.256301pt;}
.y13_c00410{bottom:699.491335pt;}
.y14_c00410{bottom:699.956121pt;}
.y15_c00410{bottom:700.576477pt;}
.y16_c00410{bottom:700.948747pt;}
.y17_c00410{bottom:701.545460pt;}
.y18_c00410{bottom:701.679953pt;}
.y19_c00410{bottom:702.033728pt;}
.ya_c00410{bottom:720.001333pt;}
.yb_c00410{bottom:720.227067pt;}
.yc_c00410{bottom:720.424293pt;}
.yd_c00410{bottom:721.369707pt;}
.ye_c00410{bottom:721.576067pt;}
.yf_c00410{bottom:721.789987pt;}
.y10_c00410{bottom:722.269680pt;}
.h11_c00410{height:19.600000pt;}
.h16_c00410{height:39.200000pt;}
.h12_c00410{height:42.000000pt;}
.h14_c00410{height:42.933333pt;}
.h18_c00410{height:43.866667pt;}
.h15_c00410{height:44.800000pt;}
.h13_c00410{height:45.733333pt;}
.h1a_c00410{height:47.600000pt;}
.h17_c00410{height:48.533333pt;}
.h1b_c00410{height:49.466667pt;}
.hc_c00410{height:51.333333pt;}
.h1c_c00410{height:53.200000pt;}
.h19_c00410{height:54.133333pt;}
.he_c00410{height:55.066667pt;}
.hd_c00410{height:59.733333pt;}
.h5_c00410{height:60.666667pt;}
.h9_c00410{height:60.670337pt;}
.h10_c00410{height:61.600000pt;}
.h7_c00410{height:61.603080pt;}
.h3_c00410{height:62.533333pt;}
.h8_c00410{height:62.537116pt;}
.h6_c00410{height:63.466667pt;}
.hb_c00410{height:63.470506pt;}
.h2_c00410{height:63.474790pt;}
.hf_c00410{height:64.400000pt;}
.ha_c00410{height:65.337286pt;}
.h4_c00410{height:66.266667pt;}
.h1_c00410{height:893.333333pt;}
.h0_c00410{height:893.466667pt;}
.w0_c00410{width:635.733333pt;}
.w1_c00410{width:636.000000pt;}
.x0_c00410{left:0.000000pt;}
.x74_c00410{left:75.840000pt;}
.x75_c00410{left:79.920000pt;}
.x7f_c00410{left:82.080000pt;}
.x7a_c00410{left:83.040000pt;}
.x85_c00410{left:91.440000pt;}
.x4e_c00410{left:104.160000pt;}
.x19_c00410{left:105.840000pt;}
.x80_c00410{left:107.280000pt;}
.x88_c00410{left:109.440000pt;}
.x86_c00410{left:110.880000pt;}
.x1_c00410{left:112.040000pt;}
.x47_c00410{left:113.039341pt;}
.x5_c00410{left:114.720000pt;}
.x20_c00410{left:115.920000pt;}
.x7d_c00410{left:116.880000pt;}
.x7c_c00410{left:121.200000pt;}
.x8b_c00410{left:125.040000pt;}
.x81_c00410{left:129.360000pt;}
.x87_c00410{left:132.240000pt;}
.x6_c00410{left:133.440000pt;}
.x6c_c00410{left:135.120000pt;}
.x3b_c00410{left:136.202323pt;}
.x76_c00410{left:138.480000pt;}
.x4f_c00410{left:140.160000pt;}
.x7e_c00410{left:142.560000pt;}
.x10_c00410{left:144.960000pt;}
.x7_c00410{left:148.560000pt;}
.x21_c00410{left:149.520000pt;}
.x65_c00410{left:150.480000pt;}
.x1a_c00410{left:152.160000pt;}
.x2f_c00410{left:153.757333pt;}
.x8c_c00410{left:156.480000pt;}
.x29_c00410{left:159.120000pt;}
.x48_c00410{left:161.282512pt;}
.x59_c00410{left:164.160000pt;}
.x31_c00410{left:166.704000pt;}
.x40_c00410{left:168.147431pt;}
.x2_c00410{left:172.737333pt;}
.x3c_c00410{left:174.330323pt;}
.x22_c00410{left:178.080000pt;}
.x82_c00410{left:179.280000pt;}
.x8d_c00410{left:180.240000pt;}
.x89_c00410{left:182.640000pt;}
.x8_c00410{left:183.840000pt;}
.x11_c00410{left:185.280000pt;}
.x63_c00410{left:186.960000pt;}
.x1b_c00410{left:188.160000pt;}
.x2a_c00410{left:193.680000pt;}
.x23_c00410{left:195.360000pt;}
.x36_c00410{left:196.947196pt;}
.x77_c00410{left:198.720000pt;}
.x83_c00410{left:202.080000pt;}
.x68_c00410{left:205.920000pt;}
.x50_c00410{left:206.880000pt;}
.x12_c00410{left:208.320000pt;}
.x3_c00410{left:211.628000pt;}
.x5d_c00410{left:214.320000pt;}
.xa_c00410{left:216.240000pt;}
.x9_c00410{left:217.440000pt;}
.x41_c00410{left:219.954859pt;}
.x6d_c00410{left:222.000000pt;}
.x1c_c00410{left:223.680000pt;}
.xb_c00410{left:226.560000pt;}
.x2b_c00410{left:228.480000pt;}
.x7b_c00410{left:229.680000pt;}
.x78_c00410{left:232.560000pt;}
.x5a_c00410{left:234.000000pt;}
.x13_c00410{left:237.360000pt;}
.x51_c00410{left:239.040000pt;}
.x60_c00410{left:240.000000pt;}
.x6e_c00410{left:241.440000pt;}
.x24_c00410{left:244.320000pt;}
.x8a_c00410{left:245.280000pt;}
.x30_c00410{left:248.298667pt;}
.x84_c00410{left:250.080000pt;}
.x49_c00410{left:251.048032pt;}
.x4_c00410{left:253.637333pt;}
.x79_c00410{left:255.360000pt;}
.x25_c00410{left:263.760000pt;}
.xc_c00410{left:265.440000pt;}
.x1d_c00410{left:268.080000pt;}
.x2c_c00410{left:271.680000pt;}
.x57_c00410{left:274.080000pt;}
.x6f_c00410{left:278.880000pt;}
.x5b_c00410{left:280.320000pt;}
.x69_c00410{left:282.240000pt;}
.x61_c00410{left:283.680000pt;}
.x64_c00410{left:285.600000pt;}
.x1e_c00410{left:287.760000pt;}
.x14_c00410{left:289.680000pt;}
.x37_c00410{left:291.277863pt;}
.xd_c00410{left:295.200000pt;}
.x42_c00410{left:296.552675pt;}
.x26_c00410{left:298.080000pt;}
.x32_c00410{left:299.196000pt;}
.x58_c00410{left:302.160000pt;}
.x9e_c00410{left:305.520000pt;}
.x2d_c00410{left:306.720000pt;}
.x43_c00410{left:314.071151pt;}
.x38_c00410{left:314.988529pt;}
.x27_c00410{left:318.960000pt;}
.xa1_c00410{left:320.880000pt;}
.x15_c00410{left:323.040000pt;}
.x52_c00410{left:329.280000pt;}
.x5e_c00410{left:330.480000pt;}
.x6a_c00410{left:331.680000pt;}
.xe_c00410{left:332.880000pt;}
.x4b_c00410{left:334.080000pt;}
.x1f_c00410{left:335.040000pt;}
.x4a_c00410{left:336.012995pt;}
.x2e_c00410{left:338.640000pt;}
.x5c_c00410{left:341.040000pt;}
.x3d_c00410{left:343.819656pt;}
.x66_c00410{left:345.120000pt;}
.x44_c00410{left:346.937451pt;}
.x62_c00410{left:348.480000pt;}
.x53_c00410{left:349.680000pt;}
.x39_c00410{left:351.033863pt;}
.x33_c00410{left:353.442667pt;}
.x6b_c00410{left:358.080000pt;}
.xa2_c00410{left:359.760000pt;}
.x8e_c00410{left:361.200000pt;}
.xa3_c00410{left:362.160000pt;}
.x28_c00410{left:363.360000pt;}
.x5f_c00410{left:364.320000pt;}
.x34_c00410{left:365.669333pt;}
.x67_c00410{left:366.960000pt;}
.xf_c00410{left:369.120000pt;}
.x45_c00410{left:372.103839pt;}
.x99_c00410{left:375.120000pt;}
.x70_c00410{left:377.040000pt;}
.x93_c00410{left:379.920000pt;}
.x3e_c00410{left:381.976989pt;}
.x16_c00410{left:383.520000pt;}
.x9a_c00410{left:389.520000pt;}
.x4c_c00410{left:391.440000pt;}
.x35_c00410{left:397.830667pt;}
.x9f_c00410{left:399.360000pt;}
.x3f_c00410{left:400.698323pt;}
.x46_c00410{left:405.272805pt;}
.x9b_c00410{left:406.800000pt;}
.x8f_c00410{left:409.920000pt;}
.x54_c00410{left:411.840000pt;}
.x17_c00410{left:417.600000pt;}
.x9c_c00410{left:421.440000pt;}
.x71_c00410{left:424.560000pt;}
.x3a_c00410{left:427.355196pt;}
.x94_c00410{left:428.880000pt;}
.x55_c00410{left:430.320000pt;}
.x18_c00410{left:433.440000pt;}
.x4d_c00410{left:439.440000pt;}
.x9d_c00410{left:446.400000pt;}
.x95_c00410{left:449.040000pt;}
.x56_c00410{left:452.400000pt;}
.x90_c00410{left:455.280000pt;}
.x72_c00410{left:469.440000pt;}
.x73_c00410{left:474.240000pt;}
.xa0_c00410{left:477.360000pt;}
.x96_c00410{left:492.240000pt;}
.x98_c00410{left:494.400000pt;}
.x91_c00410{left:497.040000pt;}
.x92_c00410{left:510.000000pt;}
.x97_c00410{left:511.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_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_4ab86c84425994a9e06b01c2.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.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{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);}
.m14_c00411{transform:matrix(0.094060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094060,0.000000,0.000000,0.250000,0,0);}
.md6_c00411{transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);}
.mad_c00411{transform:matrix(0.121920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121920,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.134385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134385,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.138930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138930,0.000000,0.000000,0.250000,0,0);}
.mca_c00411{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);}
.mb6_c00411{transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142345,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{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);}
.m8d_c00411{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);}
.mc2_c00411{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);}
.m7_c00411{transform:matrix(0.146340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146340,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{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);}
.mc4_c00411{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);}
.m82_c00411{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);}
.m8f_c00411{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);}
.m8a_c00411{transform:matrix(0.153290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153290,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{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);}
.ma_c00411{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);}
.m6b_c00411{transform:matrix(0.154745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154745,0.000000,0.000000,0.250000,0,0);}
.mc3_c00411{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);}
.me4_c00411{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);}
.m15_c00411{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);}
.m6f_c00411{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);}
.m8c_c00411{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);}
.mcb_c00411{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);}
.m17_c00411{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);}
.mef_c00411{transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157770,0.000000,0.000000,0.250000,0,0);}
.m103_c00411{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);}
.mcc_c00411{transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.160535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160535,0.000000,0.000000,0.250000,0,0);}
.mce_c00411{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);}
.mf4_c00411{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);}
.m104_c00411{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);}
.meb_c00411{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);}
.m2e_c00411{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);}
.me9_c00411{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);}
.m35_c00411{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);}
.me3_c00411{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);}
.m37_c00411{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);}
.mcf_c00411{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);}
.m21_c00411{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);}
.m107_c00411{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);}
.m114_c00411{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);}
.m113_c00411{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);}
.m105_c00411{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);}
.m9a_c00411{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);}
.mfe_c00411{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);}
.m4c_c00411{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);}
.m27_c00411{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);}
.m96_c00411{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);}
.ma8_c00411{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{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);}
.mb0_c00411{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);}
.m5_c00411{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);}
.m67_c00411{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);}
.m3f_c00411{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);}
.mc6_c00411{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);}
.me5_c00411{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);}
.ma9_c00411{transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{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);}
.m75_c00411{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);}
.m9e_c00411{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);}
.m72_c00411{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);}
.mff_c00411{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);}
.m7e_c00411{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);}
.mf8_c00411{transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);}
.m102_c00411{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);}
.m1b_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);}
.m76_c00411{transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174220,0.000000,0.000000,0.250000,0,0);}
.mdd_c00411{transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);}
.mea_c00411{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);}
.m9f_c00411{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);}
.m118_c00411{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{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);}
.m101_c00411{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);}
.m83_c00411{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);}
.mbe_c00411{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);}
.m12_c00411{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);}
.m36_c00411{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);}
.mdf_c00411{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);}
.m9b_c00411{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);}
.m58_c00411{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);}
.m7a_c00411{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);}
.m1c_c00411{transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177285,0.000000,0.000000,0.250000,0,0);}
.m112_c00411{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);}
.m62_c00411{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);}
.m6e_c00411{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);}
.m46_c00411{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);}
.m3_c00411{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);}
.mdb_c00411{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);}
.me2_c00411{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);}
.m32_c00411{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{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);}
.m69_c00411{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);}
.mb3_c00411{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);}
.mb4_c00411{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);}
.m18_c00411{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);}
.m28_c00411{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);}
.m6d_c00411{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);}
.m109_c00411{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);}
.ma2_c00411{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);}
.m56_c00411{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);}
.m68_c00411{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);}
.m10b_c00411{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);}
.m61_c00411{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);}
.m65_c00411{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);}
.m30_c00411{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);}
.md8_c00411{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);}
.m4_c00411{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);}
.md5_c00411{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);}
.ma3_c00411{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);}
.m2f_c00411{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);}
.mf6_c00411{transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183745,0.000000,0.000000,0.250000,0,0);}
.m116_c00411{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);}
.mc8_c00411{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);}
.m60_c00411{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);}
.me8_c00411{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);}
.m2d_c00411{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);}
.m3d_c00411{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);}
.m55_c00411{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);}
.m10_c00411{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);}
.m2_c00411{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);}
.m2c_c00411{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);}
.m87_c00411{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);}
.m73_c00411{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);}
.ma7_c00411{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);}
.maf_c00411{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);}
.m52_c00411{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_c00411{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);}
.mcd_c00411{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);}
.med_c00411{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);}
.m9_c00411{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);}
.me7_c00411{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);}
.m7c_c00411{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);}
.m1a_c00411{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);}
.mf5_c00411{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);}
.m0_c00411{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);}
.m13_c00411{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);}
.m8b_c00411{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);}
.m70_c00411{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);}
.m97_c00411{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);}
.mee_c00411{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);}
.m98_c00411{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);}
.m2b_c00411{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);}
.m93_c00411{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);}
.mdc_c00411{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);}
.mac_c00411{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);}
.m1f_c00411{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);}
.m5a_c00411{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);}
.m11b_c00411{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);}
.m5e_c00411{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);}
.ma6_c00411{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);}
.m3c_c00411{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);}
.mc1_c00411{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);}
.m86_c00411{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);}
.m47_c00411{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);}
.mab_c00411{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);}
.mb1_c00411{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);}
.md9_c00411{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);}
.m6c_c00411{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);}
.ma1_c00411{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);}
.mc_c00411{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);}
.mc5_c00411{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);}
.m7b_c00411{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);}
.m11a_c00411{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);}
.m80_c00411{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);}
.m43_c00411{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);}
.mb5_c00411{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);}
.m94_c00411{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);}
.mb_c00411{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);}
.m106_c00411{transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{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);}
.m10a_c00411{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);}
.m1d_c00411{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);}
.mfa_c00411{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);}
.mbd_c00411{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);}
.m90_c00411{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);}
.m92_c00411{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);}
.md7_c00411{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);}
.m8e_c00411{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);}
.m88_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);}
.m4a_c00411{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);}
.maa_c00411{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);}
.m5c_c00411{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);}
.m49_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);}
.m7d_c00411{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);}
.m41_c00411{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);}
.m5f_c00411{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);}
.m117_c00411{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);}
.m10f_c00411{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);}
.m77_c00411{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);}
.m85_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);}
.m42_c00411{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);}
.md3_c00411{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);}
.m89_c00411{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);}
.m59_c00411{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);}
.m10e_c00411{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);}
.mec_c00411{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);}
.m84_c00411{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);}
.m4f_c00411{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);}
.m50_c00411{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);}
.md_c00411{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);}
.ma0_c00411{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);}
.ma4_c00411{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);}
.m4b_c00411{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);}
.m51_c00411{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);}
.m26_c00411{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);}
.m2a_c00411{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);}
.m111_c00411{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);}
.md0_c00411{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);}
.m95_c00411{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);}
.m20_c00411{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);}
.m1e_c00411{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);}
.m115_c00411{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);}
.mb8_c00411{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);}
.m7f_c00411{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);}
.mfd_c00411{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);}
.mae_c00411{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);}
.mbc_c00411{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);}
.m100_c00411{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);}
.m25_c00411{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);}
.mfb_c00411{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);}
.m78_c00411{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);}
.mde_c00411{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);}
.mfc_c00411{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{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);}
.m99_c00411{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);}
.m4d_c00411{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);}
.m119_c00411{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);}
.m33_c00411{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);}
.m79_c00411{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);}
.m71_c00411{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);}
.m45_c00411{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);}
.m110_c00411{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);}
.m29_c00411{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);}
.mf7_c00411{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);}
.me6_c00411{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);}
.mbf_c00411{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);}
.m57_c00411{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);}
.me_c00411{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);}
.mf3_c00411{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);}
.ma5_c00411{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);}
.m5d_c00411{transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223115,0.000000,0.000000,0.250000,0,0);}
.md4_c00411{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);}
.me0_c00411{transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{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);}
.m34_c00411{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);}
.mda_c00411{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);}
.m108_c00411{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);}
.m53_c00411{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);}
.mc0_c00411{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);}
.m24_c00411{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);}
.m6a_c00411{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);}
.m9c_c00411{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);}
.me1_c00411{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);}
.m10c_c00411{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);}
.m16_c00411{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);}
.m22_c00411{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);}
.mf9_c00411{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);}
.m44_c00411{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);}
.m40_c00411{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);}
.m9d_c00411{transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.mb2_c00411{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{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);}
.mb9_c00411{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.mf2_c00411{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);}
.m54_c00411{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);}
.m5b_c00411{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);}
.mb7_c00411{transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288715,0.000000,0.000000,0.250000,0,0);}
.mf1_c00411{transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289320,0.000000,0.000000,0.250000,0,0);}
.mc7_c00411{transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291840,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{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);}
.m19_c00411{transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322905,0.000000,0.000000,0.250000,0,0);}
.mbb_c00411{transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323610,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.346680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346680,0.000000,0.000000,0.250000,0,0);}
.m10d_c00411{transform:matrix(0.363355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363355,0.000000,0.000000,0.250000,0,0);}
.mba_c00411{transform:matrix(0.390130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390130,0.000000,0.000000,0.250000,0,0);}
.mf0_c00411{transform:matrix(0.396655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396655,0.000000,0.000000,0.250000,0,0);}
.md1_c00411{transform:matrix(0.907770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907770,0.000000,0.000000,0.250000,0,0);}
.m11c_c00411{transform:matrix(4.727545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.727545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.727545,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;}
._0_c00411{margin-left:-18.695170px;}
.fc0_c00411{color:transparent;}
.fs16_c00411{font-size:22.050000px;}
.fs11_c00411{font-size:47.250000px;}
.fs15_c00411{font-size:48.300000px;}
.fs14_c00411{font-size:49.350000px;}
.fsd_c00411{font-size:50.400000px;}
.fsf_c00411{font-size:51.450000px;}
.fsc_c00411{font-size:52.500000px;}
.fse_c00411{font-size:53.550000px;}
.fs10_c00411{font-size:54.600000px;}
.fs12_c00411{font-size:55.650000px;}
.fs13_c00411{font-size:58.800000px;}
.fs4_c00411{font-size:63.000000px;}
.fs7_c00411{font-size:64.050000px;}
.fsb_c00411{font-size:66.150000px;}
.fs3_c00411{font-size:67.200000px;}
.fsa_c00411{font-size:68.250000px;}
.fs1_c00411{font-size:69.300000px;}
.fs9_c00411{font-size:70.350000px;}
.fs0_c00411{font-size:71.400000px;}
.fs2_c00411{font-size:72.450000px;}
.fs8_c00411{font-size:73.500000px;}
.fs6_c00411{font-size:74.550000px;}
.fs5_c00411{font-size:75.600000px;}
.y0_c00411{bottom:0.000000px;}
.y28_c00411{bottom:160.920000px;}
.y27_c00411{bottom:162.621000px;}
.y24_c00411{bottom:166.872000px;}
.y26_c00411{bottom:180.588000px;}
.y23_c00411{bottom:186.244500px;}
.y25_c00411{bottom:198.720000px;}
.y22_c00411{bottom:204.741000px;}
.y1e_c00411{bottom:215.947500px;}
.y21_c00411{bottom:229.549500px;}
.y1d_c00411{bottom:233.910000px;}
.y20_c00411{bottom:248.847000px;}
.y1c_c00411{bottom:251.524500px;}
.y1f_c00411{bottom:268.056000px;}
.y1b_c00411{bottom:269.776500px;}
.y1a_c00411{bottom:287.524500px;}
.y18_c00411{bottom:289.164000px;}
.y19_c00411{bottom:306.540000px;}
.y17_c00411{bottom:306.828000px;}
.y16_c00411{bottom:317.520000px;}
.y15_c00411{bottom:366.265500px;}
.y14_c00411{bottom:389.179500px;}
.y13_c00411{bottom:412.323000px;}
.y12_c00411{bottom:434.368500px;}
.y11_c00411{bottom:457.939500px;}
.y10_c00411{bottom:481.198500px;}
.yf_c00411{bottom:503.376000px;}
.ye_c00411{bottom:526.723500px;}
.yd_c00411{bottom:548.943000px;}
.yc_c00411{bottom:572.593500px;}
.yb_c00411{bottom:594.984000px;}
.ya_c00411{bottom:617.406000px;}
.y9_c00411{bottom:640.440000px;}
.y8_c00411{bottom:663.027000px;}
.y7_c00411{bottom:686.292000px;}
.y6_c00411{bottom:708.573000px;}
.y5_c00411{bottom:731.025000px;}
.y4_c00411{bottom:753.825000px;}
.y3_c00411{bottom:776.728500px;}
.y2_c00411{bottom:799.297500px;}
.y1_c00411{bottom:822.708000px;}
.h18_c00411{height:22.050000px;}
.h13_c00411{height:47.250000px;}
.h17_c00411{height:48.300000px;}
.h16_c00411{height:49.350000px;}
.hf_c00411{height:50.400000px;}
.h11_c00411{height:51.450000px;}
.he_c00411{height:52.500000px;}
.h10_c00411{height:53.550000px;}
.h12_c00411{height:54.600000px;}
.h14_c00411{height:55.650000px;}
.h15_c00411{height:58.800000px;}
.h6_c00411{height:63.000000px;}
.h9_c00411{height:64.050000px;}
.hd_c00411{height:66.150000px;}
.h5_c00411{height:67.200000px;}
.hc_c00411{height:68.250000px;}
.h3_c00411{height:69.300000px;}
.hb_c00411{height:70.350000px;}
.h2_c00411{height:71.400000px;}
.h4_c00411{height:72.450000px;}
.ha_c00411{height:73.500000px;}
.h8_c00411{height:74.550000px;}
.h7_c00411{height:75.600000px;}
.h0_c00411{height:1008.450000px;}
.h1_c00411{height:1008.750000px;}
.w1_c00411{width:689.250000px;}
.w0_c00411{width:689.550000px;}
.x0_c00411{left:0.000000px;}
.x8e_c00411{left:137.700000px;}
.x7e_c00411{left:138.780000px;}
.x7c_c00411{left:144.180000px;}
.x94_c00411{left:145.800000px;}
.x95_c00411{left:161.730000px;}
.x31_c00411{left:168.750000px;}
.x90_c00411{left:169.830000px;}
.x6a_c00411{left:171.990000px;}
.x70_c00411{left:173.610000px;}
.x44_c00411{left:174.690000px;}
.x9_c00411{left:176.040000px;}
.x1_c00411{left:177.120000px;}
.x99_c00411{left:184.680000px;}
.x91_c00411{left:186.570000px;}
.x98_c00411{left:190.890000px;}
.x3d_c00411{left:194.130000px;}
.xa_c00411{left:197.100000px;}
.x4b_c00411{left:201.150000px;}
.x25_c00411{left:204.390000px;}
.x53_c00411{left:205.740000px;}
.x2_c00411{left:208.710000px;}
.x6b_c00411{left:210.600000px;}
.x9a_c00411{left:215.460000px;}
.x61_c00411{left:217.350000px;}
.x37_c00411{left:219.780000px;}
.x8f_c00411{left:221.130000px;}
.x92_c00411{left:223.020000px;}
.x5a_c00411{left:224.910000px;}
.x7f_c00411{left:227.340000px;}
.x5f_c00411{left:229.230000px;}
.x9b_c00411{left:231.390000px;}
.x11_c00411{left:234.630000px;}
.x32_c00411{left:236.520000px;}
.x2a_c00411{left:238.680000px;}
.x4c_c00411{left:240.570000px;}
.xb_c00411{left:243.540000px;}
.x5b_c00411{left:244.620000px;}
.x45_c00411{left:247.590000px;}
.x96_c00411{left:248.940000px;}
.x3e_c00411{left:251.910000px;}
.x26_c00411{left:253.260000px;}
.x17_c00411{left:254.880000px;}
.x54_c00411{left:257.310000px;}
.x1d_c00411{left:259.200000px;}
.x57_c00411{left:262.710000px;}
.x3_c00411{left:267.030000px;}
.x80_c00411{left:269.730000px;}
.x2b_c00411{left:279.990000px;}
.xc_c00411{left:281.340000px;}
.x50_c00411{left:282.420000px;}
.x66_c00411{left:284.850000px;}
.x1e_c00411{left:286.200000px;}
.x60_c00411{left:287.550000px;}
.x33_c00411{left:288.900000px;}
.x18_c00411{left:291.330000px;}
.x3f_c00411{left:292.680000px;}
.x5c_c00411{left:297.540000px;}
.x67_c00411{left:300.780000px;}
.x27_c00411{left:302.130000px;}
.x7d_c00411{left:303.210000px;}
.x46_c00411{left:307.530000px;}
.x38_c00411{left:309.690000px;}
.x81_c00411{left:314.280000px;}
.x4_c00411{left:315.360000px;}
.x68_c00411{left:321.840000px;}
.x47_c00411{left:326.160000px;}
.x82_c00411{left:327.510000px;}
.x62_c00411{left:329.670000px;}
.x2c_c00411{left:332.370000px;}
.x93_c00411{left:334.800000px;}
.x5_c00411{left:338.580000px;}
.x4d_c00411{left:340.740000px;}
.x12_c00411{left:341.820000px;}
.x5d_c00411{left:344.250000px;}
.xd_c00411{left:345.330000px;}
.x1f_c00411{left:349.110000px;}
.x97_c00411{left:350.460000px;}
.x13_c00411{left:353.430000px;}
.x40_c00411{left:356.400000px;}
.x39_c00411{left:358.020000px;}
.x55_c00411{left:360.450000px;}
.x34_c00411{left:362.070000px;}
.x6c_c00411{left:364.500000px;}
.x4e_c00411{left:366.120000px;}
.x58_c00411{left:367.740000px;}
.x6_c00411{left:370.980000px;}
.x41_c00411{left:373.140000px;}
.xa4_c00411{left:375.300000px;}
.x35_c00411{left:377.190000px;}
.xe_c00411{left:379.350000px;}
.x63_c00411{left:382.590000px;}
.x7b_c00411{left:383.670000px;}
.x19_c00411{left:385.830000px;}
.x71_c00411{left:387.720000px;}
.x3a_c00411{left:389.070000px;}
.x20_c00411{left:390.150000px;}
.x4f_c00411{left:391.770000px;}
.x51_c00411{left:394.200000px;}
.x59_c00411{left:395.820000px;}
.x48_c00411{left:397.710000px;}
.x6d_c00411{left:405.270000px;}
.x2d_c00411{left:406.350000px;}
.x7_c00411{left:410.130000px;}
.x3b_c00411{left:411.480000px;}
.x14_c00411{left:414.180000px;}
.x36_c00411{left:415.530000px;}
.x49_c00411{left:417.150000px;}
.x83_c00411{left:421.200000px;}
.x21_c00411{left:422.820000px;}
.x2e_c00411{left:425.250000px;}
.x72_c00411{left:427.140000px;}
.x87_c00411{left:429.030000px;}
.x6e_c00411{left:431.730000px;}
.x56_c00411{left:433.350000px;}
.x52_c00411{left:436.320000px;}
.xf_c00411{left:437.670000px;}
.x8_c00411{left:443.070000px;}
.x64_c00411{left:444.150000px;}
.x1a_c00411{left:445.500000px;}
.x28_c00411{left:446.850000px;}
.x22_c00411{left:455.490000px;}
.x73_c00411{left:458.190000px;}
.x15_c00411{left:459.270000px;}
.x5e_c00411{left:464.940000px;}
.x76_c00411{left:466.290000px;}
.x9c_c00411{left:467.910000px;}
.x4a_c00411{left:468.990000px;}
.x84_c00411{left:472.500000px;}
.x29_c00411{left:474.120000px;}
.x3c_c00411{left:477.900000px;}
.x6f_c00411{left:479.790000px;}
.x69_c00411{left:482.220000px;}
.x1b_c00411{left:484.650000px;}
.x65_c00411{left:488.160000px;}
.x2f_c00411{left:491.670000px;}
.x42_c00411{left:499.230000px;}
.x16_c00411{left:501.390000px;}
.x23_c00411{left:505.440000px;}
.x85_c00411{left:506.520000px;}
.x8b_c00411{left:509.490000px;}
.x9d_c00411{left:513.270000px;}
.x10_c00411{left:514.350000px;}
.xa1_c00411{left:516.240000px;}
.x43_c00411{left:524.880000px;}
.x77_c00411{left:527.040000px;}
.x1c_c00411{left:528.930000px;}
.x74_c00411{left:530.280000px;}
.x9f_c00411{left:539.460000px;}
.x86_c00411{left:545.940000px;}
.x24_c00411{left:549.720000px;}
.x30_c00411{left:552.420000px;}
.x89_c00411{left:556.470000px;}
.x75_c00411{left:557.550000px;}
.x9e_c00411{left:572.940000px;}
.x8a_c00411{left:574.290000px;}
.xa2_c00411{left:576.450000px;}
.x88_c00411{left:578.610000px;}
.x78_c00411{left:579.690000px;}
.x8c_c00411{left:588.330000px;}
.x79_c00411{left:594.540000px;}
.xa3_c00411{left:598.860000px;}
.x8d_c00411{left:600.480000px;}
.xa0_c00411{left:602.100000px;}
.x7a_c00411{left:610.470000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
._0_c00411{margin-left:-16.617929pt;}
.fs16_c00411{font-size:19.600000pt;}
.fs11_c00411{font-size:42.000000pt;}
.fs15_c00411{font-size:42.933333pt;}
.fs14_c00411{font-size:43.866667pt;}
.fsd_c00411{font-size:44.800000pt;}
.fsf_c00411{font-size:45.733333pt;}
.fsc_c00411{font-size:46.666667pt;}
.fse_c00411{font-size:47.600000pt;}
.fs10_c00411{font-size:48.533333pt;}
.fs12_c00411{font-size:49.466667pt;}
.fs13_c00411{font-size:52.266667pt;}
.fs4_c00411{font-size:56.000000pt;}
.fs7_c00411{font-size:56.933333pt;}
.fsb_c00411{font-size:58.800000pt;}
.fs3_c00411{font-size:59.733333pt;}
.fsa_c00411{font-size:60.666667pt;}
.fs1_c00411{font-size:61.600000pt;}
.fs9_c00411{font-size:62.533333pt;}
.fs0_c00411{font-size:63.466667pt;}
.fs2_c00411{font-size:64.400000pt;}
.fs8_c00411{font-size:65.333333pt;}
.fs6_c00411{font-size:66.266667pt;}
.fs5_c00411{font-size:67.200000pt;}
.y0_c00411{bottom:0.000000pt;}
.y28_c00411{bottom:143.040000pt;}
.y27_c00411{bottom:144.552000pt;}
.y24_c00411{bottom:148.330667pt;}
.y26_c00411{bottom:160.522667pt;}
.y23_c00411{bottom:165.550667pt;}
.y25_c00411{bottom:176.640000pt;}
.y22_c00411{bottom:181.992000pt;}
.y1e_c00411{bottom:191.953333pt;}
.y21_c00411{bottom:204.044000pt;}
.y1d_c00411{bottom:207.920000pt;}
.y20_c00411{bottom:221.197333pt;}
.y1c_c00411{bottom:223.577333pt;}
.y1f_c00411{bottom:238.272000pt;}
.y1b_c00411{bottom:239.801333pt;}
.y1a_c00411{bottom:255.577333pt;}
.y18_c00411{bottom:257.034667pt;}
.y19_c00411{bottom:272.480000pt;}
.y17_c00411{bottom:272.736000pt;}
.y16_c00411{bottom:282.240000pt;}
.y15_c00411{bottom:325.569333pt;}
.y14_c00411{bottom:345.937333pt;}
.y13_c00411{bottom:366.509333pt;}
.y12_c00411{bottom:386.105333pt;}
.y11_c00411{bottom:407.057333pt;}
.y10_c00411{bottom:427.732000pt;}
.yf_c00411{bottom:447.445333pt;}
.ye_c00411{bottom:468.198667pt;}
.yd_c00411{bottom:487.949333pt;}
.yc_c00411{bottom:508.972000pt;}
.yb_c00411{bottom:528.874667pt;}
.ya_c00411{bottom:548.805333pt;}
.y9_c00411{bottom:569.280000pt;}
.y8_c00411{bottom:589.357333pt;}
.y7_c00411{bottom:610.037333pt;}
.y6_c00411{bottom:629.842667pt;}
.y5_c00411{bottom:649.800000pt;}
.y4_c00411{bottom:670.066667pt;}
.y3_c00411{bottom:690.425333pt;}
.y2_c00411{bottom:710.486667pt;}
.y1_c00411{bottom:731.296000pt;}
.h18_c00411{height:19.600000pt;}
.h13_c00411{height:42.000000pt;}
.h17_c00411{height:42.933333pt;}
.h16_c00411{height:43.866667pt;}
.hf_c00411{height:44.800000pt;}
.h11_c00411{height:45.733333pt;}
.he_c00411{height:46.666667pt;}
.h10_c00411{height:47.600000pt;}
.h12_c00411{height:48.533333pt;}
.h14_c00411{height:49.466667pt;}
.h15_c00411{height:52.266667pt;}
.h6_c00411{height:56.000000pt;}
.h9_c00411{height:56.933333pt;}
.hd_c00411{height:58.800000pt;}
.h5_c00411{height:59.733333pt;}
.hc_c00411{height:60.666667pt;}
.h3_c00411{height:61.600000pt;}
.hb_c00411{height:62.533333pt;}
.h2_c00411{height:63.466667pt;}
.h4_c00411{height:64.400000pt;}
.ha_c00411{height:65.333333pt;}
.h8_c00411{height:66.266667pt;}
.h7_c00411{height:67.200000pt;}
.h0_c00411{height:896.400000pt;}
.h1_c00411{height:896.666667pt;}
.w1_c00411{width:612.666667pt;}
.w0_c00411{width:612.933333pt;}
.x0_c00411{left:0.000000pt;}
.x8e_c00411{left:122.400000pt;}
.x7e_c00411{left:123.360000pt;}
.x7c_c00411{left:128.160000pt;}
.x94_c00411{left:129.600000pt;}
.x95_c00411{left:143.760000pt;}
.x31_c00411{left:150.000000pt;}
.x90_c00411{left:150.960000pt;}
.x6a_c00411{left:152.880000pt;}
.x70_c00411{left:154.320000pt;}
.x44_c00411{left:155.280000pt;}
.x9_c00411{left:156.480000pt;}
.x1_c00411{left:157.440000pt;}
.x99_c00411{left:164.160000pt;}
.x91_c00411{left:165.840000pt;}
.x98_c00411{left:169.680000pt;}
.x3d_c00411{left:172.560000pt;}
.xa_c00411{left:175.200000pt;}
.x4b_c00411{left:178.800000pt;}
.x25_c00411{left:181.680000pt;}
.x53_c00411{left:182.880000pt;}
.x2_c00411{left:185.520000pt;}
.x6b_c00411{left:187.200000pt;}
.x9a_c00411{left:191.520000pt;}
.x61_c00411{left:193.200000pt;}
.x37_c00411{left:195.360000pt;}
.x8f_c00411{left:196.560000pt;}
.x92_c00411{left:198.240000pt;}
.x5a_c00411{left:199.920000pt;}
.x7f_c00411{left:202.080000pt;}
.x5f_c00411{left:203.760000pt;}
.x9b_c00411{left:205.680000pt;}
.x11_c00411{left:208.560000pt;}
.x32_c00411{left:210.240000pt;}
.x2a_c00411{left:212.160000pt;}
.x4c_c00411{left:213.840000pt;}
.xb_c00411{left:216.480000pt;}
.x5b_c00411{left:217.440000pt;}
.x45_c00411{left:220.080000pt;}
.x96_c00411{left:221.280000pt;}
.x3e_c00411{left:223.920000pt;}
.x26_c00411{left:225.120000pt;}
.x17_c00411{left:226.560000pt;}
.x54_c00411{left:228.720000pt;}
.x1d_c00411{left:230.400000pt;}
.x57_c00411{left:233.520000pt;}
.x3_c00411{left:237.360000pt;}
.x80_c00411{left:239.760000pt;}
.x2b_c00411{left:248.880000pt;}
.xc_c00411{left:250.080000pt;}
.x50_c00411{left:251.040000pt;}
.x66_c00411{left:253.200000pt;}
.x1e_c00411{left:254.400000pt;}
.x60_c00411{left:255.600000pt;}
.x33_c00411{left:256.800000pt;}
.x18_c00411{left:258.960000pt;}
.x3f_c00411{left:260.160000pt;}
.x5c_c00411{left:264.480000pt;}
.x67_c00411{left:267.360000pt;}
.x27_c00411{left:268.560000pt;}
.x7d_c00411{left:269.520000pt;}
.x46_c00411{left:273.360000pt;}
.x38_c00411{left:275.280000pt;}
.x81_c00411{left:279.360000pt;}
.x4_c00411{left:280.320000pt;}
.x68_c00411{left:286.080000pt;}
.x47_c00411{left:289.920000pt;}
.x82_c00411{left:291.120000pt;}
.x62_c00411{left:293.040000pt;}
.x2c_c00411{left:295.440000pt;}
.x93_c00411{left:297.600000pt;}
.x5_c00411{left:300.960000pt;}
.x4d_c00411{left:302.880000pt;}
.x12_c00411{left:303.840000pt;}
.x5d_c00411{left:306.000000pt;}
.xd_c00411{left:306.960000pt;}
.x1f_c00411{left:310.320000pt;}
.x97_c00411{left:311.520000pt;}
.x13_c00411{left:314.160000pt;}
.x40_c00411{left:316.800000pt;}
.x39_c00411{left:318.240000pt;}
.x55_c00411{left:320.400000pt;}
.x34_c00411{left:321.840000pt;}
.x6c_c00411{left:324.000000pt;}
.x4e_c00411{left:325.440000pt;}
.x58_c00411{left:326.880000pt;}
.x6_c00411{left:329.760000pt;}
.x41_c00411{left:331.680000pt;}
.xa4_c00411{left:333.600000pt;}
.x35_c00411{left:335.280000pt;}
.xe_c00411{left:337.200000pt;}
.x63_c00411{left:340.080000pt;}
.x7b_c00411{left:341.040000pt;}
.x19_c00411{left:342.960000pt;}
.x71_c00411{left:344.640000pt;}
.x3a_c00411{left:345.840000pt;}
.x20_c00411{left:346.800000pt;}
.x4f_c00411{left:348.240000pt;}
.x51_c00411{left:350.400000pt;}
.x59_c00411{left:351.840000pt;}
.x48_c00411{left:353.520000pt;}
.x6d_c00411{left:360.240000pt;}
.x2d_c00411{left:361.200000pt;}
.x7_c00411{left:364.560000pt;}
.x3b_c00411{left:365.760000pt;}
.x14_c00411{left:368.160000pt;}
.x36_c00411{left:369.360000pt;}
.x49_c00411{left:370.800000pt;}
.x83_c00411{left:374.400000pt;}
.x21_c00411{left:375.840000pt;}
.x2e_c00411{left:378.000000pt;}
.x72_c00411{left:379.680000pt;}
.x87_c00411{left:381.360000pt;}
.x6e_c00411{left:383.760000pt;}
.x56_c00411{left:385.200000pt;}
.x52_c00411{left:387.840000pt;}
.xf_c00411{left:389.040000pt;}
.x8_c00411{left:393.840000pt;}
.x64_c00411{left:394.800000pt;}
.x1a_c00411{left:396.000000pt;}
.x28_c00411{left:397.200000pt;}
.x22_c00411{left:404.880000pt;}
.x73_c00411{left:407.280000pt;}
.x15_c00411{left:408.240000pt;}
.x5e_c00411{left:413.280000pt;}
.x76_c00411{left:414.480000pt;}
.x9c_c00411{left:415.920000pt;}
.x4a_c00411{left:416.880000pt;}
.x84_c00411{left:420.000000pt;}
.x29_c00411{left:421.440000pt;}
.x3c_c00411{left:424.800000pt;}
.x6f_c00411{left:426.480000pt;}
.x69_c00411{left:428.640000pt;}
.x1b_c00411{left:430.800000pt;}
.x65_c00411{left:433.920000pt;}
.x2f_c00411{left:437.040000pt;}
.x42_c00411{left:443.760000pt;}
.x16_c00411{left:445.680000pt;}
.x23_c00411{left:449.280000pt;}
.x85_c00411{left:450.240000pt;}
.x8b_c00411{left:452.880000pt;}
.x9d_c00411{left:456.240000pt;}
.x10_c00411{left:457.200000pt;}
.xa1_c00411{left:458.880000pt;}
.x43_c00411{left:466.560000pt;}
.x77_c00411{left:468.480000pt;}
.x1c_c00411{left:470.160000pt;}
.x74_c00411{left:471.360000pt;}
.x9f_c00411{left:479.520000pt;}
.x86_c00411{left:485.280000pt;}
.x24_c00411{left:488.640000pt;}
.x30_c00411{left:491.040000pt;}
.x89_c00411{left:494.640000pt;}
.x75_c00411{left:495.600000pt;}
.x9e_c00411{left:509.280000pt;}
.x8a_c00411{left:510.480000pt;}
.xa2_c00411{left:512.400000pt;}
.x88_c00411{left:514.320000pt;}
.x78_c00411{left:515.280000pt;}
.x8c_c00411{left:522.960000pt;}
.x79_c00411{left:528.480000pt;}
.xa3_c00411{left:532.320000pt;}
.x8d_c00411{left:533.760000pt;}
.xa0_c00411{left:535.200000pt;}
.x7a_c00411{left:542.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m2e_c00412{transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012200,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{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);}
.mdf_c00412{transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023210,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.032035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032035,0.000000,0.000000,0.250000,0,0);}
.m11b_c00412{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);}
.mc0_c00412{transform:matrix(0.064060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064060,0.000000,0.000000,0.250000,0,0);}
.mb7_c00412{transform:matrix(0.072775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072775,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.077840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077840,0.000000,0.000000,0.250000,0,0);}
.md1_c00412{transform:matrix(0.117670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117670,0.000000,0.000000,0.250000,0,0);}
.m118_c00412{transform:matrix(0.122030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122030,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.126105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126105,0.000000,0.000000,0.250000,0,0);}
.m113_c00412{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);}
.mc1_c00412{transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);}
.m116_c00412{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{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);}
.m92_c00412{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);}
.mb6_c00412{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);}
.m67_c00412{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{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);}
.me_c00412{transform:matrix(0.148665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148665,0.000000,0.000000,0.250000,0,0);}
.m107_c00412{transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{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);}
.m10c_c00412{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);}
.m106_c00412{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);}
.m27_c00412{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);}
.m104_c00412{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);}
.m73_c00412{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);}
.m51_c00412{transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152755,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{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);}
.mc_c00412{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);}
.m6f_c00412{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);}
.m98_c00412{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);}
.m63_c00412{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);}
.mb9_c00412{transform:matrix(0.161835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161835,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{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);}
.m10a_c00412{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);}
.m25_c00412{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{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);}
.m3d_c00412{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);}
.mbe_c00412{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);}
.m41_c00412{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);}
.m20_c00412{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);}
.m1f_c00412{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);}
.m26_c00412{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);}
.ma1_c00412{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);}
.m3b_c00412{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);}
.m44_c00412{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);}
.maa_c00412{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);}
.med_c00412{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);}
.mdd_c00412{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);}
.m62_c00412{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);}
.md7_c00412{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);}
.md8_c00412{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.mce_c00412{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);}
.m14_c00412{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);}
.me5_c00412{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);}
.mb5_c00412{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);}
.mad_c00412{transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169640,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{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);}
.m43_c00412{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);}
.mb2_c00412{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);}
.mc2_c00412{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);}
.mf_c00412{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);}
.ma9_c00412{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);}
.ma8_c00412{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);}
.m5c_c00412{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{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);}
.m2c_c00412{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);}
.m70_c00412{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);}
.m45_c00412{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);}
.mee_c00412{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);}
.m28_c00412{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);}
.mdb_c00412{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);}
.mc4_c00412{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);}
.m58_c00412{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);}
.m10f_c00412{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);}
.m3f_c00412{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);}
.m64_c00412{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);}
.mcc_c00412{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{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);}
.m9d_c00412{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);}
.ma5_c00412{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);}
.m6e_c00412{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);}
.mf7_c00412{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);}
.m10d_c00412{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);}
.m5b_c00412{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);}
.me8_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);}
.m78_c00412{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);}
.mb8_c00412{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);}
.m4d_c00412{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);}
.m114_c00412{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);}
.m5e_c00412{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);}
.m95_c00412{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);}
.m68_c00412{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);}
.md9_c00412{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);}
.mb_c00412{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);}
.md3_c00412{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);}
.m110_c00412{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);}
.mb1_c00412{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);}
.m5d_c00412{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);}
.md_c00412{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);}
.m22_c00412{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);}
.mfe_c00412{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);}
.m57_c00412{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);}
.m1c_c00412{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);}
.me9_c00412{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);}
.mbf_c00412{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);}
.m7c_c00412{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);}
.md5_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);}
.m4c_c00412{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);}
.m31_c00412{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{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);}
.m1d_c00412{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);}
.m5a_c00412{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);}
.mb4_c00412{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);}
.ma6_c00412{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);}
.m10_c00412{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);}
.mf1_c00412{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);}
.m83_c00412{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);}
.mb0_c00412{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{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);}
.mea_c00412{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);}
.me2_c00412{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);}
.m103_c00412{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);}
.mf0_c00412{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);}
.m80_c00412{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);}
.m96_c00412{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);}
.m10e_c00412{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);}
.m35_c00412{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);}
.m111_c00412{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_c00412{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);}
.m16_c00412{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);}
.m4b_c00412{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);}
.m6d_c00412{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);}
.maf_c00412{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);}
.m1a_c00412{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);}
.mc7_c00412{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);}
.mcd_c00412{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);}
.ma_c00412{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);}
.md6_c00412{transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193870,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{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);}
.m72_c00412{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);}
.mf3_c00412{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);}
.mc5_c00412{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);}
.mb3_c00412{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);}
.m46_c00412{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);}
.m97_c00412{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);}
.m1b_c00412{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);}
.m112_c00412{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);}
.m7d_c00412{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.mde_c00412{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);}
.m65_c00412{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);}
.m54_c00412{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);}
.mac_c00412{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);}
.m56_c00412{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_c00412{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);}
.m53_c00412{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);}
.mda_c00412{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);}
.m42_c00412{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);}
.m117_c00412{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);}
.m99_c00412{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);}
.m75_c00412{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);}
.m7a_c00412{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);}
.me7_c00412{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);}
.m9c_c00412{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);}
.m93_c00412{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);}
.m100_c00412{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);}
.m9b_c00412{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);}
.m79_c00412{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);}
.m61_c00412{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);}
.m2d_c00412{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);}
.m32_c00412{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);}
.m7f_c00412{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);}
.m6b_c00412{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);}
.m8f_c00412{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);}
.m38_c00412{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);}
.mfb_c00412{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);}
.m77_c00412{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);}
.m81_c00412{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);}
.m84_c00412{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);}
.m18_c00412{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);}
.m3c_c00412{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);}
.mc3_c00412{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);}
.m105_c00412{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);}
.mef_c00412{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);}
.mab_c00412{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);}
.m76_c00412{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);}
.m90_c00412{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);}
.mbd_c00412{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);}
.m108_c00412{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);}
.m34_c00412{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);}
.m50_c00412{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);}
.md4_c00412{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);}
.me3_c00412{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);}
.mba_c00412{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);}
.m8b_c00412{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);}
.m23_c00412{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);}
.m10b_c00412{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);}
.m6a_c00412{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{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);}
.mc6_c00412{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{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);}
.me4_c00412{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);}
.mca_c00412{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);}
.mcb_c00412{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);}
.mf6_c00412{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);}
.mf4_c00412{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);}
.m88_c00412{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);}
.ma0_c00412{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);}
.m55_c00412{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);}
.m15_c00412{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);}
.md2_c00412{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);}
.mdc_c00412{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);}
.mfc_c00412{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);}
.ma3_c00412{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);}
.m6c_c00412{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);}
.m71_c00412{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);}
.mcf_c00412{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);}
.me0_c00412{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);}
.m4e_c00412{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);}
.m12_c00412{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);}
.m109_c00412{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);}
.m17_c00412{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);}
.m94_c00412{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);}
.me6_c00412{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);}
.m8_c00412{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);}
.mbb_c00412{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);}
.m11_c00412{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);}
.m82_c00412{transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230265,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{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);}
.m2a_c00412{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);}
.m7e_c00412{transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231105,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{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);}
.m40_c00412{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);}
.m59_c00412{transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{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);}
.m86_c00412{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{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);}
.m9f_c00412{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);}
.me1_c00412{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);}
.mc8_c00412{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);}
.m52_c00412{transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);}
.m5f_c00412{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);}
.m6_c00412{transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);}
.meb_c00412{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);}
.m5_c00412{transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244690,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{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);}
.m30_c00412{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);}
.m89_c00412{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);}
.m39_c00412{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);}
.m87_c00412{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);}
.m8e_c00412{transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);}
.mbc_c00412{transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);}
.m11a_c00412{transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.mfa_c00412{transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266805,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);}
.mf9_c00412{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);}
.mec_c00412{transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);}
.m115_c00412{transform:matrix(0.273155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273155,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);}
.m119_c00412{transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280090,0.000000,0.000000,0.250000,0,0);}
.mf8_c00412{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);}
.m60_c00412{transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);}
.m101_c00412{transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296905,0.000000,0.000000,0.250000,0,0);}
.mff_c00412{transform:matrix(0.308715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308715,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326165,0.000000,0.000000,0.250000,0,0);}
.mf5_c00412{transform:matrix(0.327115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327115,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{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);}
.mf2_c00412{transform:matrix(0.345195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345195,0.000000,0.000000,0.250000,0,0);}
.m102_c00412{transform:matrix(0.345655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345655,0.000000,0.000000,0.250000,0,0);}
.mc9_c00412{transform:matrix(0.354615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354615,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.365610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365610,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.411010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411010,0.000000,0.000000,0.250000,0,0);}
.m11c_c00412{transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.429650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429650,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.685370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685370,0.000000,0.000000,0.250000,0,0);}
.md0_c00412{transform:matrix(1.675470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.675470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.675470,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;}
.fs18_c00412{font-size:23.100000px;}
.fs15_c00412{font-size:45.150000px;}
.fs14_c00412{font-size:47.250000px;}
.fs13_c00412{font-size:48.300000px;}
.fs11_c00412{font-size:49.350000px;}
.fsd_c00412{font-size:50.400000px;}
.fs12_c00412{font-size:51.450000px;}
.fs10_c00412{font-size:53.550000px;}
.fs16_c00412{font-size:54.600000px;}
.fsf_c00412{font-size:55.650000px;}
.fse_c00412{font-size:59.850000px;}
.fs17_c00412{font-size:60.900000px;}
.fsc_c00412{font-size:63.000000px;}
.fs8_c00412{font-size:65.100000px;}
.fs4_c00412{font-size:67.200000px;}
.fs9_c00412{font-size:68.250000px;}
.fsb_c00412{font-size:69.300000px;}
.fs2_c00412{font-size:70.350000px;}
.fs5_c00412{font-size:71.400000px;}
.fsa_c00412{font-size:72.450000px;}
.fs7_c00412{font-size:76.650000px;}
.fs3_c00412{font-size:77.700000px;}
.fs6_c00412{font-size:79.800000px;}
.fs0_c00412{font-size:87.150000px;}
.fs1_c00412{font-size:90.300000px;}
.y0_c00412{bottom:0.000000px;}
.y28_c00412{bottom:163.497000px;}
.y1e_c00412{bottom:177.342000px;}
.y27_c00412{bottom:178.611000px;}
.y1d_c00412{bottom:196.270500px;}
.y26_c00412{bottom:197.260500px;}
.y1c_c00412{bottom:213.430500px;}
.y25_c00412{bottom:215.190000px;}
.y1b_c00412{bottom:231.204000px;}
.y24_c00412{bottom:232.837500px;}
.y1a_c00412{bottom:249.616500px;}
.y23_c00412{bottom:250.389000px;}
.y19_c00412{bottom:267.805500px;}
.y22_c00412{bottom:268.542000px;}
.y18_c00412{bottom:285.843000px;}
.y21_c00412{bottom:286.077000px;}
.y17_c00412{bottom:303.921000px;}
.y20_c00412{bottom:304.104000px;}
.y16_c00412{bottom:321.171000px;}
.y1f_c00412{bottom:322.266000px;}
.y15_c00412{bottom:392.128500px;}
.y14_c00412{bottom:415.323000px;}
.y13_c00412{bottom:437.881500px;}
.y12_c00412{bottom:461.160000px;}
.y11_c00412{bottom:483.216000px;}
.y10_c00412{bottom:506.317500px;}
.yf_c00412{bottom:529.684500px;}
.ye_c00412{bottom:552.325500px;}
.yd_c00412{bottom:575.833500px;}
.yc_c00412{bottom:642.835500px;}
.yb_c00412{bottom:665.338500px;}
.ya_c00412{bottom:687.688500px;}
.y9_c00412{bottom:710.538000px;}
.y8_c00412{bottom:733.396500px;}
.y7_c00412{bottom:756.339000px;}
.y6_c00412{bottom:779.136000px;}
.y5_c00412{bottom:801.546000px;}
.y4_c00412{bottom:825.390000px;}
.y2_c00412{bottom:875.472000px;}
.y3_c00412{bottom:875.739000px;}
.y1_c00412{bottom:934.812000px;}
.h1a_c00412{height:23.100000px;}
.h17_c00412{height:45.150000px;}
.h16_c00412{height:47.250000px;}
.h15_c00412{height:48.300000px;}
.h13_c00412{height:49.350000px;}
.hf_c00412{height:50.400000px;}
.h14_c00412{height:51.450000px;}
.h12_c00412{height:53.550000px;}
.h18_c00412{height:54.600000px;}
.h11_c00412{height:55.650000px;}
.h10_c00412{height:59.850000px;}
.h19_c00412{height:60.900000px;}
.he_c00412{height:63.000000px;}
.ha_c00412{height:65.100000px;}
.h6_c00412{height:67.200000px;}
.hb_c00412{height:68.250000px;}
.hd_c00412{height:69.300000px;}
.h4_c00412{height:70.350000px;}
.h7_c00412{height:71.400000px;}
.hc_c00412{height:72.450000px;}
.h9_c00412{height:76.650000px;}
.h5_c00412{height:77.700000px;}
.h8_c00412{height:79.800000px;}
.h2_c00412{height:87.150000px;}
.h3_c00412{height:90.300000px;}
.h1_c00412{height:1005.000000px;}
.h0_c00412{height:1005.150000px;}
.w0_c00412{width:715.200000px;}
.w1_c00412{width:715.500000px;}
.x0_c00412{left:0.000000px;}
.x87_c00412{left:88.830000px;}
.x7f_c00412{left:94.500000px;}
.x7a_c00412{left:98.010000px;}
.x88_c00412{left:100.170000px;}
.x8b_c00412{left:101.250000px;}
.x29_c00412{left:111.240000px;}
.x8c_c00412{left:113.400000px;}
.x31_c00412{left:115.560000px;}
.x7b_c00412{left:117.450000px;}
.x89_c00412{left:119.340000px;}
.x83_c00412{left:125.010000px;}
.x39_c00412{left:127.980000px;}
.x12_c00412{left:129.060000px;}
.x9_c00412{left:130.950000px;}
.x42_c00412{left:132.030000px;}
.x60_c00412{left:133.110000px;}
.x70_c00412{left:134.460000px;}
.x80_c00412{left:139.860000px;}
.x84_c00412{left:144.180000px;}
.x4d_c00412{left:147.420000px;}
.x43_c00412{left:152.010000px;}
.x32_c00412{left:153.360000px;}
.x7c_c00412{left:154.710000px;}
.x6b_c00412{left:155.790000px;}
.x13_c00412{left:158.490000px;}
.x41_c00412{left:160.650000px;}
.xa_c00412{left:162.540000px;}
.x21_c00412{left:165.240000px;}
.x71_c00412{left:169.560000px;}
.x59_c00412{left:173.880000px;}
.x4e_c00412{left:177.390000px;}
.x1_c00412{left:181.440000px;}
.x7d_c00412{left:182.520000px;}
.x49_c00412{left:184.680000px;}
.x44_c00412{left:187.380000px;}
.x22_c00412{left:189.270000px;}
.x14_c00412{left:191.430000px;}
.x2a_c00412{left:193.860000px;}
.x5a_c00412{left:196.020000px;}
.x1b_c00412{left:198.450000px;}
.x81_c00412{left:200.880000px;}
.xb_c00412{left:204.120000px;}
.x4f_c00412{left:207.360000px;}
.x6_c00412{left:208.710000px;}
.x4a_c00412{left:212.760000px;}
.x15_c00412{left:214.650000px;}
.x2b_c00412{left:218.430000px;}
.x85_c00412{left:220.860000px;}
.x61_c00412{left:222.750000px;}
.x1c_c00412{left:224.640000px;}
.x23_c00412{left:229.230000px;}
.x64_c00412{left:230.850000px;}
.x33_c00412{left:231.930000px;}
.x72_c00412{left:233.010000px;}
.x7_c00412{left:234.630000px;}
.x8a_c00412{left:240.030000px;}
.x5b_c00412{left:241.380000px;}
.x7e_c00412{left:243.810000px;}
.x86_c00412{left:248.130000px;}
.xc_c00412{left:249.480000px;}
.x1d_c00412{left:250.560000px;}
.x34_c00412{left:256.500000px;}
.x4b_c00412{left:260.820000px;}
.x3a_c00412{left:262.440000px;}
.x65_c00412{left:265.410000px;}
.x45_c00412{left:267.300000px;}
.x50_c00412{left:270.270000px;}
.xd_c00412{left:273.240000px;}
.x8_c00412{left:275.400000px;}
.x82_c00412{left:279.450000px;}
.x2c_c00412{left:284.040000px;}
.x66_c00412{left:285.390000px;}
.x2_c00412{left:288.360000px;}
.x5c_c00412{left:289.980000px;}
.x24_c00412{left:291.060000px;}
.x35_c00412{left:292.140000px;}
.x76_c00412{left:294.300000px;}
.x73_c00412{left:295.650000px;}
.x3b_c00412{left:297.540000px;}
.x16_c00412{left:300.240000px;}
.x51_c00412{left:301.860000px;}
.x1e_c00412{left:303.750000px;}
.x2d_c00412{left:308.610000px;}
.x25_c00412{left:312.390000px;}
.x62_c00412{left:317.520000px;}
.x1f_c00412{left:322.920000px;}
.xe_c00412{left:324.270000px;}
.x5d_c00412{left:325.350000px;}
.x36_c00412{left:334.260000px;}
.x67_c00412{left:336.690000px;}
.x4_c00412{left:338.040000px;}
.x17_c00412{left:340.200000px;}
.x46_c00412{left:342.900000px;}
.x52_c00412{left:343.980000px;}
.x26_c00412{left:347.220000px;}
.x6c_c00412{left:348.570000px;}
.x3c_c00412{left:350.460000px;}
.x2e_c00412{left:356.400000px;}
.x3_c00412{left:359.100000px;}
.xf_c00412{left:360.720000px;}
.x95_c00412{left:361.800000px;}
.x37_c00412{left:363.960000px;}
.x47_c00412{left:366.120000px;}
.x8d_c00412{left:371.520000px;}
.xa3_c00412{left:373.680000px;}
.x53_c00412{left:376.110000px;}
.x2f_c00412{left:377.190000px;}
.x74_c00412{left:379.890000px;}
.x27_c00412{left:380.970000px;}
.x9c_c00412{left:383.130000px;}
.x6d_c00412{left:384.210000px;}
.x3d_c00412{left:387.180000px;}
.x18_c00412{left:389.610000px;}
.xa0_c00412{left:392.040000px;}
.x5_c00412{left:398.790000px;}
.x54_c00412{left:400.680000px;}
.x75_c00412{left:405.270000px;}
.x77_c00412{left:409.590000px;}
.x20_c00412{left:411.750000px;}
.x10_c00412{left:412.830000px;}
.x28_c00412{left:414.720000px;}
.x4c_c00412{left:415.800000px;}
.x6e_c00412{left:417.960000px;}
.x38_c00412{left:419.040000px;}
.x68_c00412{left:421.200000px;}
.xa4_c00412{left:422.550000px;}
.x5e_c00412{left:425.250000px;}
.x3e_c00412{left:427.680000px;}
.x19_c00412{left:429.030000px;}
.xa7_c00412{left:433.350000px;}
.xa1_c00412{left:434.970000px;}
.x11_c00412{left:437.130000px;}
.x30_c00412{left:441.720000px;}
.x98_c00412{left:443.610000px;}
.xa8_c00412{left:444.960000px;}
.x78_c00412{left:446.310000px;}
.x5f_c00412{left:447.660000px;}
.x69_c00412{left:451.170000px;}
.x1a_c00412{left:452.520000px;}
.x99_c00412{left:453.600000px;}
.x8e_c00412{left:457.110000px;}
.x92_c00412{left:460.350000px;}
.x63_c00412{left:464.130000px;}
.x6f_c00412{left:473.040000px;}
.x55_c00412{left:478.710000px;}
.x9d_c00412{left:481.140000px;}
.x3f_c00412{left:483.300000px;}
.x79_c00412{left:486.540000px;}
.x48_c00412{left:493.560000px;}
.x8f_c00412{left:496.800000px;}
.x56_c00412{left:500.850000px;}
.x9a_c00412{left:501.930000px;}
.xa2_c00412{left:503.820000px;}
.x6a_c00412{left:510.840000px;}
.x9e_c00412{left:512.460000px;}
.x93_c00412{left:516.510000px;}
.xa5_c00412{left:525.690000px;}
.x90_c00412{left:531.360000px;}
.x40_c00412{left:539.190000px;}
.x96_c00412{left:540.270000px;}
.x9b_c00412{left:541.350000px;}
.x57_c00412{left:552.150000px;}
.x94_c00412{left:554.310000px;}
.x97_c00412{left:557.820000px;}
.x58_c00412{left:561.600000px;}
.x91_c00412{left:562.950000px;}
.xa6_c00412{left:567.000000px;}
.x9f_c00412{left:568.080000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs18_c00412{font-size:20.533333pt;}
.fs15_c00412{font-size:40.133333pt;}
.fs14_c00412{font-size:42.000000pt;}
.fs13_c00412{font-size:42.933333pt;}
.fs11_c00412{font-size:43.866667pt;}
.fsd_c00412{font-size:44.800000pt;}
.fs12_c00412{font-size:45.733333pt;}
.fs10_c00412{font-size:47.600000pt;}
.fs16_c00412{font-size:48.533333pt;}
.fsf_c00412{font-size:49.466667pt;}
.fse_c00412{font-size:53.200000pt;}
.fs17_c00412{font-size:54.133333pt;}
.fsc_c00412{font-size:56.000000pt;}
.fs8_c00412{font-size:57.866667pt;}
.fs4_c00412{font-size:59.733333pt;}
.fs9_c00412{font-size:60.666667pt;}
.fsb_c00412{font-size:61.600000pt;}
.fs2_c00412{font-size:62.533333pt;}
.fs5_c00412{font-size:63.466667pt;}
.fsa_c00412{font-size:64.400000pt;}
.fs7_c00412{font-size:68.133333pt;}
.fs3_c00412{font-size:69.066667pt;}
.fs6_c00412{font-size:70.933333pt;}
.fs0_c00412{font-size:77.466667pt;}
.fs1_c00412{font-size:80.266667pt;}
.y0_c00412{bottom:0.000000pt;}
.y28_c00412{bottom:145.330667pt;}
.y1e_c00412{bottom:157.637333pt;}
.y27_c00412{bottom:158.765333pt;}
.y1d_c00412{bottom:174.462667pt;}
.y26_c00412{bottom:175.342667pt;}
.y1c_c00412{bottom:189.716000pt;}
.y25_c00412{bottom:191.280000pt;}
.y1b_c00412{bottom:205.514667pt;}
.y24_c00412{bottom:206.966667pt;}
.y1a_c00412{bottom:221.881333pt;}
.y23_c00412{bottom:222.568000pt;}
.y19_c00412{bottom:238.049333pt;}
.y22_c00412{bottom:238.704000pt;}
.y18_c00412{bottom:254.082667pt;}
.y21_c00412{bottom:254.290667pt;}
.y17_c00412{bottom:270.152000pt;}
.y20_c00412{bottom:270.314667pt;}
.y16_c00412{bottom:285.485333pt;}
.y1f_c00412{bottom:286.458667pt;}
.y15_c00412{bottom:348.558667pt;}
.y14_c00412{bottom:369.176000pt;}
.y13_c00412{bottom:389.228000pt;}
.y12_c00412{bottom:409.920000pt;}
.y11_c00412{bottom:429.525333pt;}
.y10_c00412{bottom:450.060000pt;}
.yf_c00412{bottom:470.830667pt;}
.ye_c00412{bottom:490.956000pt;}
.yd_c00412{bottom:511.852000pt;}
.yc_c00412{bottom:571.409333pt;}
.yb_c00412{bottom:591.412000pt;}
.ya_c00412{bottom:611.278667pt;}
.y9_c00412{bottom:631.589333pt;}
.y8_c00412{bottom:651.908000pt;}
.y7_c00412{bottom:672.301333pt;}
.y6_c00412{bottom:692.565333pt;}
.y5_c00412{bottom:712.485333pt;}
.y4_c00412{bottom:733.680000pt;}
.y2_c00412{bottom:778.197333pt;}
.y3_c00412{bottom:778.434667pt;}
.y1_c00412{bottom:830.944000pt;}
.h1a_c00412{height:20.533333pt;}
.h17_c00412{height:40.133333pt;}
.h16_c00412{height:42.000000pt;}
.h15_c00412{height:42.933333pt;}
.h13_c00412{height:43.866667pt;}
.hf_c00412{height:44.800000pt;}
.h14_c00412{height:45.733333pt;}
.h12_c00412{height:47.600000pt;}
.h18_c00412{height:48.533333pt;}
.h11_c00412{height:49.466667pt;}
.h10_c00412{height:53.200000pt;}
.h19_c00412{height:54.133333pt;}
.he_c00412{height:56.000000pt;}
.ha_c00412{height:57.866667pt;}
.h6_c00412{height:59.733333pt;}
.hb_c00412{height:60.666667pt;}
.hd_c00412{height:61.600000pt;}
.h4_c00412{height:62.533333pt;}
.h7_c00412{height:63.466667pt;}
.hc_c00412{height:64.400000pt;}
.h9_c00412{height:68.133333pt;}
.h5_c00412{height:69.066667pt;}
.h8_c00412{height:70.933333pt;}
.h2_c00412{height:77.466667pt;}
.h3_c00412{height:80.266667pt;}
.h1_c00412{height:893.333333pt;}
.h0_c00412{height:893.466667pt;}
.w0_c00412{width:635.733333pt;}
.w1_c00412{width:636.000000pt;}
.x0_c00412{left:0.000000pt;}
.x87_c00412{left:78.960000pt;}
.x7f_c00412{left:84.000000pt;}
.x7a_c00412{left:87.120000pt;}
.x88_c00412{left:89.040000pt;}
.x8b_c00412{left:90.000000pt;}
.x29_c00412{left:98.880000pt;}
.x8c_c00412{left:100.800000pt;}
.x31_c00412{left:102.720000pt;}
.x7b_c00412{left:104.400000pt;}
.x89_c00412{left:106.080000pt;}
.x83_c00412{left:111.120000pt;}
.x39_c00412{left:113.760000pt;}
.x12_c00412{left:114.720000pt;}
.x9_c00412{left:116.400000pt;}
.x42_c00412{left:117.360000pt;}
.x60_c00412{left:118.320000pt;}
.x70_c00412{left:119.520000pt;}
.x80_c00412{left:124.320000pt;}
.x84_c00412{left:128.160000pt;}
.x4d_c00412{left:131.040000pt;}
.x43_c00412{left:135.120000pt;}
.x32_c00412{left:136.320000pt;}
.x7c_c00412{left:137.520000pt;}
.x6b_c00412{left:138.480000pt;}
.x13_c00412{left:140.880000pt;}
.x41_c00412{left:142.800000pt;}
.xa_c00412{left:144.480000pt;}
.x21_c00412{left:146.880000pt;}
.x71_c00412{left:150.720000pt;}
.x59_c00412{left:154.560000pt;}
.x4e_c00412{left:157.680000pt;}
.x1_c00412{left:161.280000pt;}
.x7d_c00412{left:162.240000pt;}
.x49_c00412{left:164.160000pt;}
.x44_c00412{left:166.560000pt;}
.x22_c00412{left:168.240000pt;}
.x14_c00412{left:170.160000pt;}
.x2a_c00412{left:172.320000pt;}
.x5a_c00412{left:174.240000pt;}
.x1b_c00412{left:176.400000pt;}
.x81_c00412{left:178.560000pt;}
.xb_c00412{left:181.440000pt;}
.x4f_c00412{left:184.320000pt;}
.x6_c00412{left:185.520000pt;}
.x4a_c00412{left:189.120000pt;}
.x15_c00412{left:190.800000pt;}
.x2b_c00412{left:194.160000pt;}
.x85_c00412{left:196.320000pt;}
.x61_c00412{left:198.000000pt;}
.x1c_c00412{left:199.680000pt;}
.x23_c00412{left:203.760000pt;}
.x64_c00412{left:205.200000pt;}
.x33_c00412{left:206.160000pt;}
.x72_c00412{left:207.120000pt;}
.x7_c00412{left:208.560000pt;}
.x8a_c00412{left:213.360000pt;}
.x5b_c00412{left:214.560000pt;}
.x7e_c00412{left:216.720000pt;}
.x86_c00412{left:220.560000pt;}
.xc_c00412{left:221.760000pt;}
.x1d_c00412{left:222.720000pt;}
.x34_c00412{left:228.000000pt;}
.x4b_c00412{left:231.840000pt;}
.x3a_c00412{left:233.280000pt;}
.x65_c00412{left:235.920000pt;}
.x45_c00412{left:237.600000pt;}
.x50_c00412{left:240.240000pt;}
.xd_c00412{left:242.880000pt;}
.x8_c00412{left:244.800000pt;}
.x82_c00412{left:248.400000pt;}
.x2c_c00412{left:252.480000pt;}
.x66_c00412{left:253.680000pt;}
.x2_c00412{left:256.320000pt;}
.x5c_c00412{left:257.760000pt;}
.x24_c00412{left:258.720000pt;}
.x35_c00412{left:259.680000pt;}
.x76_c00412{left:261.600000pt;}
.x73_c00412{left:262.800000pt;}
.x3b_c00412{left:264.480000pt;}
.x16_c00412{left:266.880000pt;}
.x51_c00412{left:268.320000pt;}
.x1e_c00412{left:270.000000pt;}
.x2d_c00412{left:274.320000pt;}
.x25_c00412{left:277.680000pt;}
.x62_c00412{left:282.240000pt;}
.x1f_c00412{left:287.040000pt;}
.xe_c00412{left:288.240000pt;}
.x5d_c00412{left:289.200000pt;}
.x36_c00412{left:297.120000pt;}
.x67_c00412{left:299.280000pt;}
.x4_c00412{left:300.480000pt;}
.x17_c00412{left:302.400000pt;}
.x46_c00412{left:304.800000pt;}
.x52_c00412{left:305.760000pt;}
.x26_c00412{left:308.640000pt;}
.x6c_c00412{left:309.840000pt;}
.x3c_c00412{left:311.520000pt;}
.x2e_c00412{left:316.800000pt;}
.x3_c00412{left:319.200000pt;}
.xf_c00412{left:320.640000pt;}
.x95_c00412{left:321.600000pt;}
.x37_c00412{left:323.520000pt;}
.x47_c00412{left:325.440000pt;}
.x8d_c00412{left:330.240000pt;}
.xa3_c00412{left:332.160000pt;}
.x53_c00412{left:334.320000pt;}
.x2f_c00412{left:335.280000pt;}
.x74_c00412{left:337.680000pt;}
.x27_c00412{left:338.640000pt;}
.x9c_c00412{left:340.560000pt;}
.x6d_c00412{left:341.520000pt;}
.x3d_c00412{left:344.160000pt;}
.x18_c00412{left:346.320000pt;}
.xa0_c00412{left:348.480000pt;}
.x5_c00412{left:354.480000pt;}
.x54_c00412{left:356.160000pt;}
.x75_c00412{left:360.240000pt;}
.x77_c00412{left:364.080000pt;}
.x20_c00412{left:366.000000pt;}
.x10_c00412{left:366.960000pt;}
.x28_c00412{left:368.640000pt;}
.x4c_c00412{left:369.600000pt;}
.x6e_c00412{left:371.520000pt;}
.x38_c00412{left:372.480000pt;}
.x68_c00412{left:374.400000pt;}
.xa4_c00412{left:375.600000pt;}
.x5e_c00412{left:378.000000pt;}
.x3e_c00412{left:380.160000pt;}
.x19_c00412{left:381.360000pt;}
.xa7_c00412{left:385.200000pt;}
.xa1_c00412{left:386.640000pt;}
.x11_c00412{left:388.560000pt;}
.x30_c00412{left:392.640000pt;}
.x98_c00412{left:394.320000pt;}
.xa8_c00412{left:395.520000pt;}
.x78_c00412{left:396.720000pt;}
.x5f_c00412{left:397.920000pt;}
.x69_c00412{left:401.040000pt;}
.x1a_c00412{left:402.240000pt;}
.x99_c00412{left:403.200000pt;}
.x8e_c00412{left:406.320000pt;}
.x92_c00412{left:409.200000pt;}
.x63_c00412{left:412.560000pt;}
.x6f_c00412{left:420.480000pt;}
.x55_c00412{left:425.520000pt;}
.x9d_c00412{left:427.680000pt;}
.x3f_c00412{left:429.600000pt;}
.x79_c00412{left:432.480000pt;}
.x48_c00412{left:438.720000pt;}
.x8f_c00412{left:441.600000pt;}
.x56_c00412{left:445.200000pt;}
.x9a_c00412{left:446.160000pt;}
.xa2_c00412{left:447.840000pt;}
.x6a_c00412{left:454.080000pt;}
.x9e_c00412{left:455.520000pt;}
.x93_c00412{left:459.120000pt;}
.xa5_c00412{left:467.280000pt;}
.x90_c00412{left:472.320000pt;}
.x40_c00412{left:479.280000pt;}
.x96_c00412{left:480.240000pt;}
.x9b_c00412{left:481.200000pt;}
.x57_c00412{left:490.800000pt;}
.x94_c00412{left:492.720000pt;}
.x97_c00412{left:495.840000pt;}
.x58_c00412{left:499.200000pt;}
.x91_c00412{left:500.400000pt;}
.xa6_c00412{left:504.000000pt;}
.x9f_c00412{left:504.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mc7_c00413{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.040180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040180,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.053225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053225,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00413{transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00413{transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117980,0.000000,0.000000,0.250000,0,0);}
.mc6_c00413{transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125955,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.138945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138945,0.000000,0.000000,0.250000,0,0);}
.m71_c00413{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_c00413{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);}
.m83_c00413{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);}
.m32_c00413{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);}
.mcd_c00413{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);}
.m3b_c00413{transform:matrix(0.159209,0.001433,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159209,0.001433,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159209,0.001433,-0.002250,0.249990,0,0);}
.mce_c00413{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);}
.m54_c00413{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);}
.m52_c00413{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);}
.m64_c00413{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);}
.m7_c00413{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);}
.m3e_c00413{transform:matrix(0.170198,0.001532,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170198,0.001532,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170198,0.001532,-0.002250,0.249990,0,0);}
.m53_c00413{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);}
.m8f_c00413{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);}
.m7f_c00413{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);}
.m4b_c00413{transform:matrix(0.172048,0.001548,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172048,0.001548,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172048,0.001548,-0.002250,0.249990,0,0);}
.m2e_c00413{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);}
.m79_c00413{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);}
.ma8_c00413{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);}
.mcc_c00413{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);}
.maf_c00413{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);}
.mbd_c00413{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m9d_c00413{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);}
.m42_c00413{transform:matrix(0.174833,0.001573,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174833,0.001573,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174833,0.001573,-0.002250,0.249990,0,0);}
.m9c_c00413{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);}
.m95_c00413{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);}
.m58_c00413{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);}
.mb5_c00413{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);}
.m6e_c00413{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);}
.m46_c00413{transform:matrix(0.178293,0.001605,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178293,0.001605,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178293,0.001605,-0.002250,0.249990,0,0);}
.m45_c00413{transform:matrix(0.178703,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178703,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178703,0.001608,-0.002250,0.249990,0,0);}
.md5_c00413{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);}
.m7a_c00413{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);}
.mb9_c00413{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);}
.m5f_c00413{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);}
.m86_c00413{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);}
.mb7_c00413{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);}
.m44_c00413{transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182838,0.001646,-0.002250,0.249990,0,0);}
.mc1_c00413{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);}
.m36_c00413{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);}
.m40_c00413{transform:matrix(0.184898,0.001664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184898,0.001664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184898,0.001664,-0.002250,0.249990,0,0);}
.ma0_c00413{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);}
.m41_c00413{transform:matrix(0.186922,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186922,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186922,0.001682,-0.002250,0.249990,0,0);}
.m5b_c00413{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);}
.m92_c00413{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);}
.md3_c00413{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);}
.m6d_c00413{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);}
.mb6_c00413{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);}
.md7_c00413{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);}
.m3a_c00413{transform:matrix(0.189352,0.001704,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189352,0.001704,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189352,0.001704,-0.002250,0.249990,0,0);}
.m3c_c00413{transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189452,0.001705,-0.002250,0.249990,0,0);}
.m78_c00413{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_c00413{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);}
.m50_c00413{transform:matrix(0.190612,0.001716,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190612,0.001716,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190612,0.001716,-0.002250,0.249990,0,0);}
.mdf_c00413{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);}
.m4f_c00413{transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);}
.m90_c00413{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);}
.mb4_c00413{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);}
.mcb_c00413{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);}
.m34_c00413{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);}
.m7e_c00413{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);}
.m31_c00413{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);}
.m33_c00413{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);}
.ma5_c00413{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);}
.m55_c00413{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);}
.m8c_c00413{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);}
.m94_c00413{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);}
.m51_c00413{transform:matrix(0.197507,0.001778,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197507,0.001778,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197507,0.001778,-0.002250,0.249990,0,0);}
.md4_c00413{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);}
.md0_c00413{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);}
.m5c_c00413{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);}
.m9b_c00413{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);}
.m1f_c00413{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);}
.ma1_c00413{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);}
.mba_c00413{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);}
.m3f_c00413{transform:matrix(0.200032,0.001800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200032,0.001800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200032,0.001800,-0.002250,0.249990,0,0);}
.m48_c00413{transform:matrix(0.200117,0.001801,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200117,0.001801,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200117,0.001801,-0.002250,0.249990,0,0);}
.m75_c00413{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);}
.m3d_c00413{transform:matrix(0.200587,0.001805,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200587,0.001805,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200587,0.001805,-0.002250,0.249990,0,0);}
.mc3_c00413{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);}
.m98_c00413{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);}
.m43_c00413{transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200932,0.001808,-0.002250,0.249990,0,0);}
.m4a_c00413{transform:matrix(0.201077,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201077,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201077,0.001810,-0.002250,0.249990,0,0);}
.mdb_c00413{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);}
.me4_c00413{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);}
.m35_c00413{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);}
.m85_c00413{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);}
.m5a_c00413{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);}
.m37_c00413{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);}
.ma9_c00413{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);}
.mab_c00413{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);}
.m84_c00413{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);}
.mdc_c00413{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);}
.md8_c00413{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);}
.mbc_c00413{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);}
.m9e_c00413{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);}
.mde_c00413{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);}
.m20_c00413{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);}
.m59_c00413{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);}
.m47_c00413{transform:matrix(0.208702,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208702,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208702,0.001878,-0.002250,0.249990,0,0);}
.m39_c00413{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);}
.m96_c00413{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);}
.mca_c00413{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);}
.m13_c00413{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);}
.maa_c00413{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);}
.mb0_c00413{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);}
.m97_c00413{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);}
.ma3_c00413{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.me1_c00413{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);}
.m38_c00413{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_c00413{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);}
.mc4_c00413{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);}
.m6b_c00413{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);}
.m65_c00413{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);}
.m99_c00413{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);}
.me2_c00413{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);}
.m89_c00413{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);}
.ma2_c00413{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);}
.m7c_c00413{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);}
.m72_c00413{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);}
.me3_c00413{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);}
.mcf_c00413{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);}
.m6a_c00413{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);}
.mc0_c00413{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);}
.mb2_c00413{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);}
.ma4_c00413{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);}
.mbe_c00413{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);}
.m1a_c00413{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);}
.m4c_c00413{transform:matrix(0.215381,0.001938,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215381,0.001938,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215381,0.001938,-0.002250,0.249990,0,0);}
.mae_c00413{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);}
.mc2_c00413{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);}
.m7b_c00413{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);}
.mc5_c00413{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);}
.mb1_c00413{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);}
.mc9_c00413{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);}
.m69_c00413{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);}
.m91_c00413{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);}
.mbb_c00413{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);}
.m77_c00413{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);}
.m5e_c00413{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);}
.mb8_c00413{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);}
.m87_c00413{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);}
.mdd_c00413{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);}
.md6_c00413{transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);}
.me0_c00413{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.m28_c00413{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);}
.m63_c00413{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);}
.md9_c00413{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);}
.m49_c00413{transform:matrix(0.230811,0.002077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230811,0.002077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230811,0.002077,-0.002250,0.249990,0,0);}
.m24_c00413{transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231260,0.000000,0.000000,0.250000,0,0);}
.md1_c00413{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.m76_c00413{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);}
.mbf_c00413{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);}
.m73_c00413{transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234180,0.000000,0.000000,0.250000,0,0);}
.m5d_c00413{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);}
.m1b_c00413{transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);}
.m9a_c00413{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);}
.m26_c00413{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);}
.m8a_c00413{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);}
.mc_c00413{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);}
.m9f_c00413{transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239935,0.000000,0.000000,0.250000,0,0);}
.mda_c00413{transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);}
.me_c00413{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);}
.m7d_c00413{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m70_c00413{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.m60_c00413{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m57_c00413{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);}
.m2a_c00413{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m8e_c00413{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m4e_c00413{transform:matrix(0.254295,0.002289,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254295,0.002289,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254295,0.002289,-0.002250,0.249990,0,0);}
.m8b_c00413{transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);}
.ma7_c00413{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);}
.m61_c00413{transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00413{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);}
.m9_c00413{transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00413{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);}
.m1d_c00413{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);}
.ma6_c00413{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);}
.md_c00413{transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);}
.m66_c00413{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);}
.m1e_c00413{transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);}
.mac_c00413{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);}
.m88_c00413{transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00413{transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298715,0.000000,0.000000,0.250000,0,0);}
.m4d_c00413{transform:matrix(0.300123,0.002701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.300123,0.002701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.300123,0.002701,-0.002250,0.249990,0,0);}
.m62_c00413{transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.302815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302815,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.306155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306155,0.000000,0.000000,0.250000,0,0);}
.m56_c00413{transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);}
.m25_c00413{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);}
.m93_c00413{transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);}
.m68_c00413{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m29_c00413{transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326905,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330290,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330625,0.000000,0.000000,0.250000,0,0);}
.mc8_c00413{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);}
.mad_c00413{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);}
.m22_c00413{transform:matrix(0.335380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335380,0.000000,0.000000,0.250000,0,0);}
.mb3_c00413{transform:matrix(0.338370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338370,0.000000,0.000000,0.250000,0,0);}
.md2_c00413{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{transform:matrix(0.352240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352240,0.000000,0.000000,0.250000,0,0);}
.m27_c00413{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);}
.m0_c00413{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.354600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354600,0.000000,0.000000,0.250000,0,0);}
.m81_c00413{transform:matrix(0.354665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354665,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);}
.m21_c00413{transform:matrix(0.383075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383075,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.387615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387615,0.000000,0.000000,0.250000,0,0);}
.m67_c00413{transform:matrix(0.399165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399165,0.000000,0.000000,0.250000,0,0);}
.m6f_c00413{transform:matrix(0.421345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421345,0.000000,0.000000,0.250000,0,0);}
.m2b_c00413{transform:matrix(0.433635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433635,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.437560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437560,0.000000,0.000000,0.250000,0,0);}
.m30_c00413{transform:matrix(0.484670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484670,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.500255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500255,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.509380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509380,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.512445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512445,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.589625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589625,0.000000,0.000000,0.250000,0,0);}
.m80_c00413{transform:matrix(0.611730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611730,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.798285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798285,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.920455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920455,0.000000,0.000000,0.250000,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;}
.fsa_c00413{font-size:22.050000px;}
.fs0_c00413{font-size:33.600000px;}
.fs16_c00413{font-size:48.300000px;}
.fs15_c00413{font-size:49.350000px;}
.fs14_c00413{font-size:50.400000px;}
.fs2_c00413{font-size:51.450000px;}
.fs12_c00413{font-size:52.500000px;}
.fs13_c00413{font-size:53.550000px;}
.fs10_c00413{font-size:59.850000px;}
.fs9_c00413{font-size:60.900000px;}
.fs7_c00413{font-size:61.950000px;}
.fs6_c00413{font-size:63.000000px;}
.fsb_c00413{font-size:64.050000px;}
.fs3_c00413{font-size:66.150000px;}
.fs5_c00413{font-size:68.250000px;}
.fse_c00413{font-size:69.302807px;}
.fs8_c00413{font-size:70.350000px;}
.fs11_c00413{font-size:71.400000px;}
.fsd_c00413{font-size:71.402892px;}
.fsc_c00413{font-size:72.452934px;}
.fsf_c00413{font-size:82.950000px;}
.fs1_c00413{font-size:88.200000px;}
.fs4_c00413{font-size:89.250000px;}
.y0_c00413{bottom:0.000000px;}
.y38_c00413{bottom:97.293000px;}
.y1_c00413{bottom:124.498500px;}
.y40_c00413{bottom:165.108000px;}
.y37_c00413{bottom:167.647500px;}
.y3f_c00413{bottom:183.307500px;}
.y36_c00413{bottom:186.045000px;}
.y3e_c00413{bottom:201.282000px;}
.y35_c00413{bottom:203.599500px;}
.y3d_c00413{bottom:219.388500px;}
.y34_c00413{bottom:222.211500px;}
.y3c_c00413{bottom:237.103500px;}
.y33_c00413{bottom:239.517000px;}
.y3b_c00413{bottom:254.967000px;}
.y32_c00413{bottom:257.538000px;}
.y3a_c00413{bottom:273.325500px;}
.y31_c00413{bottom:275.268000px;}
.y39_c00413{bottom:290.734500px;}
.y30_c00413{bottom:293.074500px;}
.y2f_c00413{bottom:343.842000px;}
.y2e_c00413{bottom:369.778500px;}
.y2d_c00413{bottom:393.667500px;}
.y2c_c00413{bottom:417.415500px;}
.y2b_c00413{bottom:439.800000px;}
.y2a_c00413{bottom:462.591000px;}
.y29_c00413{bottom:485.041500px;}
.y28_c00413{bottom:507.220500px;}
.y27_c00413{bottom:526.908000px;}
.y1f_c00413{bottom:549.917098px;}
.y20_c00413{bottom:549.917112px;}
.y26_c00413{bottom:549.917163px;}
.y22_c00413{bottom:549.917379px;}
.y25_c00413{bottom:549.917539px;}
.y1e_c00413{bottom:549.917565px;}
.y23_c00413{bottom:549.917632px;}
.y21_c00413{bottom:549.917845px;}
.y24_c00413{bottom:549.918156px;}
.y1d_c00413{bottom:571.945338px;}
.y1c_c00413{bottom:571.945655px;}
.y1b_c00413{bottom:571.946331px;}
.y19_c00413{bottom:571.946440px;}
.y17_c00413{bottom:571.946834px;}
.y18_c00413{bottom:571.946877px;}
.y1a_c00413{bottom:571.947037px;}
.y16_c00413{bottom:593.561522px;}
.y15_c00413{bottom:593.952292px;}
.y14_c00413{bottom:594.270960px;}
.y13_c00413{bottom:594.620488px;}
.y12_c00413{bottom:595.293990px;}
.y11_c00413{bottom:595.699476px;}
.y10_c00413{bottom:595.945284px;}
.yf_c00413{bottom:596.161500px;}
.ye_c00413{bottom:617.760000px;}
.yc_c00413{bottom:617.796000px;}
.yd_c00413{bottom:626.400000px;}
.yb_c00413{bottom:640.179000px;}
.ya_c00413{bottom:662.655000px;}
.y9_c00413{bottom:684.766500px;}
.y8_c00413{bottom:707.940000px;}
.y6_c00413{bottom:708.067500px;}
.y7_c00413{bottom:730.350000px;}
.y5_c00413{bottom:768.834000px;}
.y3_c00413{bottom:795.828000px;}
.y2_c00413{bottom:810.919500px;}
.y4_c00413{bottom:810.988500px;}
.hc_c00413{height:22.050000px;}
.h2_c00413{height:33.600000px;}
.h18_c00413{height:48.300000px;}
.h17_c00413{height:49.350000px;}
.h16_c00413{height:50.400000px;}
.h4_c00413{height:51.450000px;}
.h14_c00413{height:52.500000px;}
.h15_c00413{height:53.550000px;}
.h12_c00413{height:59.850000px;}
.hb_c00413{height:60.900000px;}
.h9_c00413{height:61.950000px;}
.h8_c00413{height:63.000000px;}
.hd_c00413{height:64.050000px;}
.h5_c00413{height:66.150000px;}
.h7_c00413{height:68.250000px;}
.h10_c00413{height:69.302807px;}
.ha_c00413{height:70.350000px;}
.h13_c00413{height:71.400000px;}
.hf_c00413{height:71.402892px;}
.he_c00413{height:72.452934px;}
.h11_c00413{height:82.950000px;}
.h3_c00413{height:88.200000px;}
.h6_c00413{height:89.250000px;}
.h0_c00413{height:1008.450000px;}
.h1_c00413{height:1008.750000px;}
.w1_c00413{width:689.250000px;}
.w0_c00413{width:689.550000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:83.160000px;}
.x2_c00413{left:106.650000px;}
.x72_c00413{left:135.810000px;}
.x64_c00413{left:137.160000px;}
.x4_c00413{left:139.860000px;}
.x3_c00413{left:142.290000px;}
.x10_c00413{left:143.370000px;}
.x5e_c00413{left:149.850000px;}
.x69_c00413{left:151.470000px;}
.x6d_c00413{left:153.630000px;}
.x78_c00413{left:157.140000px;}
.x5f_c00413{left:164.700000px;}
.x5_c00413{left:168.210000px;}
.x75_c00413{left:169.830000px;}
.x6e_c00413{left:170.910000px;}
.x55_c00413{left:173.070000px;}
.x3a_c00413{left:174.958029px;}
.x2d_c00413{left:176.040000px;}
.x13_c00413{left:178.740000px;}
.x76_c00413{left:184.140000px;}
.x15_c00413{left:189.000000px;}
.x14_c00413{left:190.890000px;}
.x46_c00413{left:191.970000px;}
.x73_c00413{left:193.050000px;}
.x3b_c00413{left:196.288257px;}
.x40_c00413{left:198.176658px;}
.x34_c00413{left:199.681500px;}
.x23_c00413{left:201.960000px;}
.x6_c00413{left:203.310000px;}
.x74_c00413{left:210.330000px;}
.xc_c00413{left:211.410000px;}
.x70_c00413{left:215.730000px;}
.x65_c00413{left:220.050000px;}
.x4c_c00413{left:221.400000px;}
.x35_c00413{left:226.993500px;}
.x66_c00413{left:230.850000px;}
.x47_c00413{left:234.900000px;}
.x41_c00413{left:238.678438px;}
.x77_c00413{left:243.540000px;}
.x56_c00413{left:245.970000px;}
.x60_c00413{left:249.210000px;}
.x11_c00413{left:250.290000px;}
.x71_c00413{left:262.710000px;}
.x42_c00413{left:264.599044px;}
.x24_c00413{left:267.300000px;}
.x6f_c00413{left:270.540000px;}
.x4d_c00413{left:271.620000px;}
.xd_c00413{left:272.970000px;}
.x6a_c00413{left:274.860000px;}
.x61_c00413{left:277.020000px;}
.x2e_c00413{left:278.100000px;}
.x16_c00413{left:280.260000px;}
.x7_c00413{left:284.580000px;}
.x8_c00413{left:287.010000px;}
.x4a_c00413{left:290.520000px;}
.x3c_c00413{left:295.111762px;}
.x1a_c00413{left:296.730000px;}
.x4e_c00413{left:297.810000px;}
.x25_c00413{left:299.430000px;}
.x9_c00413{left:304.290000px;}
.x67_c00413{left:308.340000px;}
.x17_c00413{left:310.230000px;}
.x59_c00413{left:311.850000px;}
.x57_c00413{left:313.200000px;}
.x43_c00413{left:314.821608px;}
.x6b_c00413{left:316.170000px;}
.x52_c00413{left:317.790000px;}
.x48_c00413{left:321.570000px;}
.x62_c00413{left:322.920000px;}
.x2f_c00413{left:324.540000px;}
.x21_c00413{left:330.480000px;}
.x58_c00413{left:334.800000px;}
.x3d_c00413{left:336.693624px;}
.x63_c00413{left:338.850000px;}
.x1b_c00413{left:339.930000px;}
.x26_c00413{left:341.280000px;}
.x68_c00413{left:342.630000px;}
.x49_c00413{left:343.980000px;}
.x36_c00413{left:346.881000px;}
.x27_c00413{left:351.000000px;}
.x53_c00413{left:355.590000px;}
.x6c_c00413{left:357.750000px;}
.x3e_c00413{left:359.103933px;}
.x30_c00413{left:362.610000px;}
.xa_c00413{left:366.930000px;}
.x87_c00413{left:369.090000px;}
.x28_c00413{left:375.300000px;}
.x1c_c00413{left:378.810000px;}
.x18_c00413{left:382.050000px;}
.x4f_c00413{left:383.940000px;}
.x37_c00413{left:385.717500px;}
.x5a_c00413{left:388.530000px;}
.x22_c00413{left:392.310000px;}
.x3f_c00413{left:394.475295px;}
.xb_c00413{left:399.330000px;}
.x7d_c00413{left:400.950000px;}
.x31_c00413{left:402.570000px;}
.x19_c00413{left:404.730000px;}
.x54_c00413{left:406.620000px;}
.x44_c00413{left:413.645113px;}
.x32_c00413{left:416.880000px;}
.x38_c00413{left:421.125000px;}
.x29_c00413{left:427.140000px;}
.x94_c00413{left:431.190000px;}
.xe_c00413{left:434.970000px;}
.x83_c00413{left:436.050000px;}
.x50_c00413{left:441.720000px;}
.x1d_c00413{left:444.690000px;}
.x95_c00413{left:447.930000px;}
.x8c_c00413{left:451.440000px;}
.xf_c00413{left:457.380000px;}
.x33_c00413{left:459.000000px;}
.x45_c00413{left:460.357393px;}
.x96_c00413{left:461.970000px;}
.x39_c00413{left:464.544000px;}
.x1e_c00413{left:467.100000px;}
.x79_c00413{left:468.450000px;}
.x2a_c00413{left:474.390000px;}
.x8d_c00413{left:476.010000px;}
.x51_c00413{left:477.360000px;}
.x84_c00413{left:481.410000px;}
.x88_c00413{left:482.490000px;}
.x7e_c00413{left:488.430000px;}
.x5b_c00413{left:490.320000px;}
.x12_c00413{left:508.140000px;}
.x5c_c00413{left:509.220000px;}
.x89_c00413{left:513.540000px;}
.x8e_c00413{left:514.890000px;}
.x4b_c00413{left:525.690000px;}
.x7a_c00413{left:528.660000px;}
.x1f_c00413{left:529.740000px;}
.x8a_c00413{left:535.950000px;}
.x97_c00413{left:537.570000px;}
.x2b_c00413{left:540.270000px;}
.x2c_c00413{left:542.430000px;}
.x8f_c00413{left:545.940000px;}
.x7b_c00413{left:554.040000px;}
.x85_c00413{left:557.010000px;}
.x81_c00413{left:559.440000px;}
.x7f_c00413{left:560.790000px;}
.x92_c00413{left:564.030000px;}
.x20_c00413{left:565.380000px;}
.x90_c00413{left:570.240000px;}
.x8b_c00413{left:572.670000px;}
.x91_c00413{left:581.580000px;}
.x80_c00413{left:583.740000px;}
.x93_c00413{left:584.820000px;}
.x82_c00413{left:597.510000px;}
.x5d_c00413{left:599.130000px;}
.x7c_c00413{left:603.180000px;}
.x86_c00413{left:607.770000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.fsa_c00413{font-size:19.600000pt;}
.fs0_c00413{font-size:29.866667pt;}
.fs16_c00413{font-size:42.933333pt;}
.fs15_c00413{font-size:43.866667pt;}
.fs14_c00413{font-size:44.800000pt;}
.fs2_c00413{font-size:45.733333pt;}
.fs12_c00413{font-size:46.666667pt;}
.fs13_c00413{font-size:47.600000pt;}
.fs10_c00413{font-size:53.200000pt;}
.fs9_c00413{font-size:54.133333pt;}
.fs7_c00413{font-size:55.066667pt;}
.fs6_c00413{font-size:56.000000pt;}
.fsb_c00413{font-size:56.933333pt;}
.fs3_c00413{font-size:58.800000pt;}
.fs5_c00413{font-size:60.666667pt;}
.fse_c00413{font-size:61.602495pt;}
.fs8_c00413{font-size:62.533333pt;}
.fs11_c00413{font-size:63.466667pt;}
.fsd_c00413{font-size:63.469237pt;}
.fsc_c00413{font-size:64.402608pt;}
.fsf_c00413{font-size:73.733333pt;}
.fs1_c00413{font-size:78.400000pt;}
.fs4_c00413{font-size:79.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y38_c00413{bottom:86.482667pt;}
.y1_c00413{bottom:110.665333pt;}
.y40_c00413{bottom:146.762667pt;}
.y37_c00413{bottom:149.020000pt;}
.y3f_c00413{bottom:162.940000pt;}
.y36_c00413{bottom:165.373333pt;}
.y3e_c00413{bottom:178.917333pt;}
.y35_c00413{bottom:180.977333pt;}
.y3d_c00413{bottom:195.012000pt;}
.y34_c00413{bottom:197.521333pt;}
.y3c_c00413{bottom:210.758667pt;}
.y33_c00413{bottom:212.904000pt;}
.y3b_c00413{bottom:226.637333pt;}
.y32_c00413{bottom:228.922667pt;}
.y3a_c00413{bottom:242.956000pt;}
.y31_c00413{bottom:244.682667pt;}
.y39_c00413{bottom:258.430667pt;}
.y30_c00413{bottom:260.510667pt;}
.y2f_c00413{bottom:305.637333pt;}
.y2e_c00413{bottom:328.692000pt;}
.y2d_c00413{bottom:349.926667pt;}
.y2c_c00413{bottom:371.036000pt;}
.y2b_c00413{bottom:390.933333pt;}
.y2a_c00413{bottom:411.192000pt;}
.y29_c00413{bottom:431.148000pt;}
.y28_c00413{bottom:450.862667pt;}
.y27_c00413{bottom:468.362667pt;}
.y1f_c00413{bottom:488.815199pt;}
.y20_c00413{bottom:488.815211pt;}
.y26_c00413{bottom:488.815256pt;}
.y22_c00413{bottom:488.815448pt;}
.y25_c00413{bottom:488.815591pt;}
.y1e_c00413{bottom:488.815613pt;}
.y23_c00413{bottom:488.815673pt;}
.y21_c00413{bottom:488.815863pt;}
.y24_c00413{bottom:488.816139pt;}
.y1d_c00413{bottom:508.395856pt;}
.y1c_c00413{bottom:508.396137pt;}
.y1b_c00413{bottom:508.396739pt;}
.y19_c00413{bottom:508.396836pt;}
.y17_c00413{bottom:508.397185pt;}
.y18_c00413{bottom:508.397224pt;}
.y1a_c00413{bottom:508.397367pt;}
.y16_c00413{bottom:527.610241pt;}
.y15_c00413{bottom:527.957593pt;}
.y14_c00413{bottom:528.240853pt;}
.y13_c00413{bottom:528.551545pt;}
.y12_c00413{bottom:529.150213pt;}
.y11_c00413{bottom:529.510645pt;}
.y10_c00413{bottom:529.729141pt;}
.yf_c00413{bottom:529.921333pt;}
.ye_c00413{bottom:549.120000pt;}
.yc_c00413{bottom:549.152000pt;}
.yd_c00413{bottom:556.800000pt;}
.yb_c00413{bottom:569.048000pt;}
.ya_c00413{bottom:589.026667pt;}
.y9_c00413{bottom:608.681333pt;}
.y8_c00413{bottom:629.280000pt;}
.y6_c00413{bottom:629.393333pt;}
.y7_c00413{bottom:649.200000pt;}
.y5_c00413{bottom:683.408000pt;}
.y3_c00413{bottom:707.402667pt;}
.y2_c00413{bottom:720.817333pt;}
.y4_c00413{bottom:720.878667pt;}
.hc_c00413{height:19.600000pt;}
.h2_c00413{height:29.866667pt;}
.h18_c00413{height:42.933333pt;}
.h17_c00413{height:43.866667pt;}
.h16_c00413{height:44.800000pt;}
.h4_c00413{height:45.733333pt;}
.h14_c00413{height:46.666667pt;}
.h15_c00413{height:47.600000pt;}
.h12_c00413{height:53.200000pt;}
.hb_c00413{height:54.133333pt;}
.h9_c00413{height:55.066667pt;}
.h8_c00413{height:56.000000pt;}
.hd_c00413{height:56.933333pt;}
.h5_c00413{height:58.800000pt;}
.h7_c00413{height:60.666667pt;}
.h10_c00413{height:61.602495pt;}
.ha_c00413{height:62.533333pt;}
.h13_c00413{height:63.466667pt;}
.hf_c00413{height:63.469237pt;}
.he_c00413{height:64.402608pt;}
.h11_c00413{height:73.733333pt;}
.h3_c00413{height:78.400000pt;}
.h6_c00413{height:79.333333pt;}
.h0_c00413{height:896.400000pt;}
.h1_c00413{height:896.666667pt;}
.w1_c00413{width:612.666667pt;}
.w0_c00413{width:612.933333pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:73.920000pt;}
.x2_c00413{left:94.800000pt;}
.x72_c00413{left:120.720000pt;}
.x64_c00413{left:121.920000pt;}
.x4_c00413{left:124.320000pt;}
.x3_c00413{left:126.480000pt;}
.x10_c00413{left:127.440000pt;}
.x5e_c00413{left:133.200000pt;}
.x69_c00413{left:134.640000pt;}
.x6d_c00413{left:136.560000pt;}
.x78_c00413{left:139.680000pt;}
.x5f_c00413{left:146.400000pt;}
.x5_c00413{left:149.520000pt;}
.x75_c00413{left:150.960000pt;}
.x6e_c00413{left:151.920000pt;}
.x55_c00413{left:153.840000pt;}
.x3a_c00413{left:155.518248pt;}
.x2d_c00413{left:156.480000pt;}
.x13_c00413{left:158.880000pt;}
.x76_c00413{left:163.680000pt;}
.x15_c00413{left:168.000000pt;}
.x14_c00413{left:169.680000pt;}
.x46_c00413{left:170.640000pt;}
.x73_c00413{left:171.600000pt;}
.x3b_c00413{left:174.478451pt;}
.x40_c00413{left:176.157029pt;}
.x34_c00413{left:177.494667pt;}
.x23_c00413{left:179.520000pt;}
.x6_c00413{left:180.720000pt;}
.x74_c00413{left:186.960000pt;}
.xc_c00413{left:187.920000pt;}
.x70_c00413{left:191.760000pt;}
.x65_c00413{left:195.600000pt;}
.x4c_c00413{left:196.800000pt;}
.x35_c00413{left:201.772000pt;}
.x66_c00413{left:205.200000pt;}
.x47_c00413{left:208.800000pt;}
.x41_c00413{left:212.158612pt;}
.x77_c00413{left:216.480000pt;}
.x56_c00413{left:218.640000pt;}
.x60_c00413{left:221.520000pt;}
.x11_c00413{left:222.480000pt;}
.x71_c00413{left:233.520000pt;}
.x42_c00413{left:235.199151pt;}
.x24_c00413{left:237.600000pt;}
.x6f_c00413{left:240.480000pt;}
.x4d_c00413{left:241.440000pt;}
.xd_c00413{left:242.640000pt;}
.x6a_c00413{left:244.320000pt;}
.x61_c00413{left:246.240000pt;}
.x2e_c00413{left:247.200000pt;}
.x16_c00413{left:249.120000pt;}
.x7_c00413{left:252.960000pt;}
.x8_c00413{left:255.120000pt;}
.x4a_c00413{left:258.240000pt;}
.x3c_c00413{left:262.321567pt;}
.x1a_c00413{left:263.760000pt;}
.x4e_c00413{left:264.720000pt;}
.x25_c00413{left:266.160000pt;}
.x9_c00413{left:270.480000pt;}
.x67_c00413{left:274.080000pt;}
.x17_c00413{left:275.760000pt;}
.x59_c00413{left:277.200000pt;}
.x57_c00413{left:278.400000pt;}
.x43_c00413{left:279.841429pt;}
.x6b_c00413{left:281.040000pt;}
.x52_c00413{left:282.480000pt;}
.x48_c00413{left:285.840000pt;}
.x62_c00413{left:287.040000pt;}
.x2f_c00413{left:288.480000pt;}
.x21_c00413{left:293.760000pt;}
.x58_c00413{left:297.600000pt;}
.x3d_c00413{left:299.283221pt;}
.x63_c00413{left:301.200000pt;}
.x1b_c00413{left:302.160000pt;}
.x26_c00413{left:303.360000pt;}
.x68_c00413{left:304.560000pt;}
.x49_c00413{left:305.760000pt;}
.x36_c00413{left:308.338667pt;}
.x27_c00413{left:312.000000pt;}
.x53_c00413{left:316.080000pt;}
.x6c_c00413{left:318.000000pt;}
.x3e_c00413{left:319.203496pt;}
.x30_c00413{left:322.320000pt;}
.xa_c00413{left:326.160000pt;}
.x87_c00413{left:328.080000pt;}
.x28_c00413{left:333.600000pt;}
.x1c_c00413{left:336.720000pt;}
.x18_c00413{left:339.600000pt;}
.x4f_c00413{left:341.280000pt;}
.x37_c00413{left:342.860000pt;}
.x5a_c00413{left:345.360000pt;}
.x22_c00413{left:348.720000pt;}
.x3f_c00413{left:350.644707pt;}
.xb_c00413{left:354.960000pt;}
.x7d_c00413{left:356.400000pt;}
.x31_c00413{left:357.840000pt;}
.x19_c00413{left:359.760000pt;}
.x54_c00413{left:361.440000pt;}
.x44_c00413{left:367.684545pt;}
.x32_c00413{left:370.560000pt;}
.x38_c00413{left:374.333333pt;}
.x29_c00413{left:379.680000pt;}
.x94_c00413{left:383.280000pt;}
.xe_c00413{left:386.640000pt;}
.x83_c00413{left:387.600000pt;}
.x50_c00413{left:392.640000pt;}
.x1d_c00413{left:395.280000pt;}
.x95_c00413{left:398.160000pt;}
.x8c_c00413{left:401.280000pt;}
.xf_c00413{left:406.560000pt;}
.x33_c00413{left:408.000000pt;}
.x45_c00413{left:409.206572pt;}
.x96_c00413{left:410.640000pt;}
.x39_c00413{left:412.928000pt;}
.x1e_c00413{left:415.200000pt;}
.x79_c00413{left:416.400000pt;}
.x2a_c00413{left:421.680000pt;}
.x8d_c00413{left:423.120000pt;}
.x51_c00413{left:424.320000pt;}
.x84_c00413{left:427.920000pt;}
.x88_c00413{left:428.880000pt;}
.x7e_c00413{left:434.160000pt;}
.x5b_c00413{left:435.840000pt;}
.x12_c00413{left:451.680000pt;}
.x5c_c00413{left:452.640000pt;}
.x89_c00413{left:456.480000pt;}
.x8e_c00413{left:457.680000pt;}
.x4b_c00413{left:467.280000pt;}
.x7a_c00413{left:469.920000pt;}
.x1f_c00413{left:470.880000pt;}
.x8a_c00413{left:476.400000pt;}
.x97_c00413{left:477.840000pt;}
.x2b_c00413{left:480.240000pt;}
.x2c_c00413{left:482.160000pt;}
.x8f_c00413{left:485.280000pt;}
.x7b_c00413{left:492.480000pt;}
.x85_c00413{left:495.120000pt;}
.x81_c00413{left:497.280000pt;}
.x7f_c00413{left:498.480000pt;}
.x92_c00413{left:501.360000pt;}
.x20_c00413{left:502.560000pt;}
.x90_c00413{left:506.880000pt;}
.x8b_c00413{left:509.040000pt;}
.x91_c00413{left:516.960000pt;}
.x80_c00413{left:518.880000pt;}
.x93_c00413{left:519.840000pt;}
.x82_c00413{left:531.120000pt;}
.x5d_c00413{left:532.560000pt;}
.x7c_c00413{left:536.160000pt;}
.x86_c00413{left:540.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_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_4ab86c84425994a9e06b01c2.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;}
.me4_c00414{transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.025275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025275,0.000000,0.000000,0.250000,0,0);}
.mad_c00414{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.mdc_c00414{transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);}
.m100_c00414{transform:matrix(0.061900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061900,0.000000,0.000000,0.250000,0,0);}
.mf9_c00414{transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064510,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087625,0.000000,0.000000,0.250000,0,0);}
.m116_c00414{transform:matrix(0.100405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100405,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.mec_c00414{transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);}
.md_c00414{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);}
.m68_c00414{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);}
.m13_c00414{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);}
.m1b_c00414{transform:matrix(0.148265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148265,0.000000,0.000000,0.250000,0,0);}
.m69_c00414{transform:matrix(0.150411,-0.001655,0.002750,0.249985,0,0);-ms-transform:matrix(0.150411,-0.001655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150411,-0.001655,0.002750,0.249985,0,0);}
.m24_c00414{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{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);}
.m2_c00414{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);}
.m94_c00414{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);}
.m1d_c00414{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);}
.m14_c00414{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);}
.m75_c00414{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);}
.ma8_c00414{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);}
.m70_c00414{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);}
.m25_c00414{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);}
.m2f_c00414{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);}
.me_c00414{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_c00414{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);}
.m1c_c00414{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);}
.m3d_c00414{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);}
.m10c_c00414{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);}
.mc6_c00414{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);}
.mef_c00414{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);}
.m4b_c00414{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);}
.m4_c00414{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);}
.m22_c00414{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);}
.m60_c00414{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);}
.m66_c00414{transform:matrix(0.168605,-0.001855,0.002750,0.249985,0,0);-ms-transform:matrix(0.168605,-0.001855,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168605,-0.001855,0.002750,0.249985,0,0);}
.mfd_c00414{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);}
.mee_c00414{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);}
.m101_c00414{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);}
.m15_c00414{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);}
.ma1_c00414{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);}
.m72_c00414{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);}
.mf7_c00414{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);}
.m99_c00414{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);}
.m9a_c00414{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);}
.m56_c00414{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);}
.m1_c00414{transform:matrix(0.174760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174760,0.000000,0.000000,0.250000,0,0);}
.md1_c00414{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);}
.m96_c00414{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);}
.mc3_c00414{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);}
.mf4_c00414{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);}
.m2e_c00414{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);}
.m6d_c00414{transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);-ms-transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179059,-0.001970,0.002750,0.249985,0,0);}
.m18_c00414{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);}
.md8_c00414{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);}
.m17_c00414{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);}
.m41_c00414{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);}
.mea_c00414{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);}
.m74_c00414{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);}
.m9d_c00414{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);}
.mab_c00414{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);}
.ma_c00414{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);}
.m10e_c00414{transform:matrix(0.181615,-0.002361,0.003250,0.249979,0,0);-ms-transform:matrix(0.181615,-0.002361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181615,-0.002361,0.003250,0.249979,0,0);}
.m6c_c00414{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);}
.m103_c00414{transform:matrix(0.181820,-0.002364,0.003250,0.249979,0,0);-ms-transform:matrix(0.181820,-0.002364,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181820,-0.002364,0.003250,0.249979,0,0);}
.mc8_c00414{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);}
.m6b_c00414{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);}
.m10d_c00414{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);}
.m115_c00414{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);}
.m79_c00414{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);}
.m57_c00414{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);}
.m7f_c00414{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);}
.mbc_c00414{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.ma2_c00414{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);}
.m71_c00414{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);}
.md9_c00414{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);}
.mac_c00414{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);}
.m80_c00414{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);}
.m10b_c00414{transform:matrix(0.186219,-0.002421,0.003250,0.249979,0,0);-ms-transform:matrix(0.186219,-0.002421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186219,-0.002421,0.003250,0.249979,0,0);}
.mf_c00414{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);}
.m77_c00414{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);}
.m43_c00414{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);}
.m1f_c00414{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);}
.m23_c00414{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);}
.md2_c00414{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);}
.mfe_c00414{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);}
.m5f_c00414{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);}
.m6a_c00414{transform:matrix(0.189499,-0.002084,0.002750,0.249985,0,0);-ms-transform:matrix(0.189499,-0.002084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189499,-0.002084,0.002750,0.249985,0,0);}
.m10_c00414{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);}
.m95_c00414{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);}
.m61_c00414{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);}
.mff_c00414{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);}
.m3a_c00414{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);}
.m46_c00414{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);}
.m32_c00414{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.m76_c00414{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);}
.m20_c00414{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);}
.m6_c00414{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);}
.mf3_c00414{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);}
.m47_c00414{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);}
.mfb_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);}
.m58_c00414{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);}
.m7b_c00414{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);}
.me9_c00414{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);}
.mae_c00414{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);}
.m4a_c00414{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);}
.m5d_c00414{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);}
.m104_c00414{transform:matrix(0.195763,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195763,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195763,-0.002545,0.003250,0.249979,0,0);}
.m45_c00414{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);}
.m111_c00414{transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);-ms-transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195988,-0.002548,0.003250,0.249979,0,0);}
.m87_c00414{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);}
.m67_c00414{transform:matrix(0.196218,-0.002158,0.002750,0.249985,0,0);-ms-transform:matrix(0.196218,-0.002158,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196218,-0.002158,0.002750,0.249985,0,0);}
.m5b_c00414{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);}
.m81_c00414{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);}
.m7d_c00414{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);}
.m63_c00414{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);}
.m64_c00414{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);}
.ma4_c00414{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);}
.m105_c00414{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);}
.mce_c00414{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);}
.m93_c00414{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);}
.mc2_c00414{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);}
.maa_c00414{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);}
.m82_c00414{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);}
.m2c_c00414{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);}
.m59_c00414{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);}
.m42_c00414{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);}
.m1a_c00414{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);}
.m62_c00414{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);}
.mcc_c00414{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);}
.ma9_c00414{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);}
.me2_c00414{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);}
.m6f_c00414{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);}
.m6e_c00414{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);}
.m98_c00414{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);}
.mdf_c00414{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);}
.m9c_c00414{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);}
.m5e_c00414{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);}
.md5_c00414{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);}
.mf1_c00414{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);}
.m37_c00414{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);}
.m83_c00414{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);}
.mf2_c00414{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);}
.maf_c00414{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);}
.m107_c00414{transform:matrix(0.204538,-0.002659,0.003250,0.249979,0,0);-ms-transform:matrix(0.204538,-0.002659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204538,-0.002659,0.003250,0.249979,0,0);}
.m7a_c00414{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.mcd_c00414{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);}
.me0_c00414{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);}
.mf0_c00414{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);}
.m1e_c00414{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);}
.md7_c00414{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);}
.m33_c00414{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);}
.m4d_c00414{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);}
.m31_c00414{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);}
.m89_c00414{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);}
.mf8_c00414{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);}
.m5_c00414{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);}
.m86_c00414{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);}
.md6_c00414{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);}
.md3_c00414{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);}
.m12_c00414{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);}
.m65_c00414{transform:matrix(0.208462,-0.002293,0.002750,0.249985,0,0);-ms-transform:matrix(0.208462,-0.002293,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208462,-0.002293,0.002750,0.249985,0,0);}
.me5_c00414{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);}
.m2d_c00414{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_c00414{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);}
.mbf_c00414{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);}
.m8c_c00414{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);}
.m8b_c00414{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);}
.me3_c00414{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);}
.m2a_c00414{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);}
.m85_c00414{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);}
.m113_c00414{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);}
.m78_c00414{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.mfa_c00414{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);}
.m4e_c00414{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);}
.ma5_c00414{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);}
.m114_c00414{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);}
.md0_c00414{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);}
.mf5_c00414{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);}
.m40_c00414{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);}
.mc4_c00414{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);}
.mc_c00414{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);}
.m30_c00414{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);}
.mb8_c00414{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);}
.mb9_c00414{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);}
.mbd_c00414{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);}
.m84_c00414{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);}
.ma6_c00414{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);}
.m3b_c00414{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);}
.m3_c00414{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);}
.m97_c00414{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);}
.m73_c00414{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);}
.me8_c00414{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);}
.me1_c00414{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);}
.mc7_c00414{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);}
.m8e_c00414{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_c00414{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);}
.m106_c00414{transform:matrix(0.222531,-0.002893,0.003250,0.249979,0,0);-ms-transform:matrix(0.222531,-0.002893,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222531,-0.002893,0.003250,0.249979,0,0);}
.ma0_c00414{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);}
.mb4_c00414{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);}
.m39_c00414{transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223345,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{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);}
.m11_c00414{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);}
.m90_c00414{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);}
.m34_c00414{transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226055,0.000000,0.000000,0.250000,0,0);}
.m55_c00414{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);}
.m2b_c00414{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);}
.mcb_c00414{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);}
.md4_c00414{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);}
.mb2_c00414{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);}
.m110_c00414{transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);-ms-transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);}
.m7_c00414{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);}
.m92_c00414{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);}
.mda_c00414{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);}
.m21_c00414{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m9e_c00414{transform:matrix(0.229940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229940,0.000000,0.000000,0.250000,0,0);}
.m3f_c00414{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);}
.mbb_c00414{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);}
.m51_c00414{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.mfc_c00414{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);}
.ma3_c00414{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);}
.m9b_c00414{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);}
.m7c_c00414{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);}
.m5a_c00414{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);}
.me7_c00414{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);}
.m10a_c00414{transform:matrix(0.238190,-0.003096,0.003250,0.249979,0,0);-ms-transform:matrix(0.238190,-0.003096,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238190,-0.003096,0.003250,0.249979,0,0);}
.m7e_c00414{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);}
.meb_c00414{transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238930,0.000000,0.000000,0.250000,0,0);}
.ma7_c00414{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);}
.m88_c00414{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);}
.m8_c00414{transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);}
.mcf_c00414{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);}
.m26_c00414{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);}
.m53_c00414{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);}
.m27_c00414{transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242780,0.000000,0.000000,0.250000,0,0);}
.mb1_c00414{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);}
.mf6_c00414{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.mb6_c00414{transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245195,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{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);}
.mc9_c00414{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.m8f_c00414{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);}
.m36_c00414{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);}
.m117_c00414{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);}
.mde_c00414{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.mca_c00414{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.mb5_c00414{transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279470,0.000000,0.000000,0.250000,0,0);}
.med_c00414{transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280675,0.000000,0.000000,0.250000,0,0);}
.m102_c00414{transform:matrix(0.282321,-0.003670,0.003250,0.249979,0,0);-ms-transform:matrix(0.282321,-0.003670,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282321,-0.003670,0.003250,0.249979,0,0);}
.mb3_c00414{transform:matrix(0.283575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283575,0.000000,0.000000,0.250000,0,0);}
.mb7_c00414{transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);}
.m29_c00414{transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284425,0.000000,0.000000,0.250000,0,0);}
.mc0_c00414{transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{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);}
.mdb_c00414{transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);}
.m10f_c00414{transform:matrix(0.288481,-0.003750,0.003250,0.249979,0,0);-ms-transform:matrix(0.288481,-0.003750,0.003250,0.249979,0,0);-webkit-transform:matrix(0.288481,-0.003750,0.003250,0.249979,0,0);}
.m109_c00414{transform:matrix(0.293095,-0.003810,0.003250,0.249979,0,0);-ms-transform:matrix(0.293095,-0.003810,0.003250,0.249979,0,0);-webkit-transform:matrix(0.293095,-0.003810,0.003250,0.249979,0,0);}
.m112_c00414{transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294480,0.000000,0.000000,0.250000,0,0);}
.m108_c00414{transform:matrix(0.295455,-0.003841,0.003250,0.249979,0,0);-ms-transform:matrix(0.295455,-0.003841,0.003250,0.249979,0,0);-webkit-transform:matrix(0.295455,-0.003841,0.003250,0.249979,0,0);}
.m8d_c00414{transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299115,0.000000,0.000000,0.250000,0,0);}
.m8a_c00414{transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.305370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305370,0.000000,0.000000,0.250000,0,0);}
.mbe_c00414{transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314455,0.000000,0.000000,0.250000,0,0);}
.mb0_c00414{transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);}
.mc1_c00414{transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345525,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);}
.m9f_c00414{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.mba_c00414{transform:matrix(0.374200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374200,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.407205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407205,0.000000,0.000000,0.250000,0,0);}
.me6_c00414{transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);}
.mdd_c00414{transform:matrix(0.513085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513085,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.516450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516450,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.577490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00414{transform:matrix(0.608730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608730,0.000000,0.000000,0.250000,0,0);}
.m91_c00414{transform:matrix(0.788590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788590,0.000000,0.000000,0.250000,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;}
.fs11_c00414{font-size:48.300000px;}
.fs12_c00414{font-size:49.350000px;}
.fs10_c00414{font-size:50.400000px;}
.fs13_c00414{font-size:50.404259px;}
.fsd_c00414{font-size:51.450000px;}
.fse_c00414{font-size:53.550000px;}
.fs14_c00414{font-size:55.654702px;}
.fsf_c00414{font-size:63.000000px;}
.fs1_c00414{font-size:64.050000px;}
.fs8_c00414{font-size:66.150000px;}
.fsc_c00414{font-size:67.200000px;}
.fs9_c00414{font-size:68.250000px;}
.fsb_c00414{font-size:69.300000px;}
.fs7_c00414{font-size:70.350000px;}
.fs6_c00414{font-size:71.400000px;}
.fs2_c00414{font-size:72.450000px;}
.fs3_c00414{font-size:73.500000px;}
.fsa_c00414{font-size:74.554510px;}
.fs4_c00414{font-size:75.600000px;}
.fs15_c00414{font-size:91.350000px;}
.fs5_c00414{font-size:95.550000px;}
.fs0_c00414{font-size:136.500000px;}
.y0_c00414{bottom:0.000000px;}
.y22_c00414{bottom:145.933500px;}
.y3d_c00414{bottom:146.073000px;}
.y21_c00414{bottom:167.712000px;}
.y3c_c00414{bottom:185.397000px;}
.y20_c00414{bottom:185.641500px;}
.y27_c00414{bottom:203.788500px;}
.y37_c00414{bottom:203.989803px;}
.y36_c00414{bottom:203.990302px;}
.y38_c00414{bottom:203.990495px;}
.y39_c00414{bottom:203.990965px;}
.y35_c00414{bottom:203.991031px;}
.y3a_c00414{bottom:203.991336px;}
.y3b_c00414{bottom:203.991837px;}
.y2c_c00414{bottom:220.861500px;}
.y2d_c00414{bottom:221.171764px;}
.y1f_c00414{bottom:221.559000px;}
.y2e_c00414{bottom:221.683366px;}
.y2f_c00414{bottom:221.908123px;}
.y30_c00414{bottom:222.132705px;}
.y31_c00414{bottom:222.651132px;}
.y32_c00414{bottom:222.761658px;}
.y33_c00414{bottom:222.965218px;}
.y34_c00414{bottom:223.295178px;}
.y26_c00414{bottom:239.436000px;}
.y2b_c00414{bottom:240.193500px;}
.y25_c00414{bottom:257.461500px;}
.y2a_c00414{bottom:257.814000px;}
.y24_c00414{bottom:275.283000px;}
.y29_c00414{bottom:275.922000px;}
.y23_c00414{bottom:293.316000px;}
.y28_c00414{bottom:294.168000px;}
.y1e_c00414{bottom:344.935500px;}
.y1d_c00414{bottom:367.702500px;}
.y1c_c00414{bottom:390.801000px;}
.y1b_c00414{bottom:413.145000px;}
.y1a_c00414{bottom:436.258500px;}
.y19_c00414{bottom:459.613500px;}
.y18_c00414{bottom:482.359500px;}
.y17_c00414{bottom:503.488500px;}
.ye_c00414{bottom:526.486500px;}
.yf_c00414{bottom:527.133432px;}
.y10_c00414{bottom:527.416159px;}
.y11_c00414{bottom:527.977093px;}
.y12_c00414{bottom:528.209232px;}
.y13_c00414{bottom:528.574525px;}
.y14_c00414{bottom:528.744030px;}
.y15_c00414{bottom:529.026031px;}
.y16_c00414{bottom:529.628941px;}
.yd_c00414{bottom:552.985500px;}
.yc_c00414{bottom:577.081500px;}
.yb_c00414{bottom:599.485500px;}
.ya_c00414{bottom:646.833000px;}
.y9_c00414{bottom:669.118500px;}
.y8_c00414{bottom:692.838000px;}
.y7_c00414{bottom:716.082000px;}
.y6_c00414{bottom:738.136500px;}
.y5_c00414{bottom:760.977000px;}
.y4_c00414{bottom:782.988000px;}
.y3_c00414{bottom:805.812000px;}
.y2_c00414{bottom:829.341000px;}
.y1_c00414{bottom:878.373000px;}
.h13_c00414{height:48.300000px;}
.h14_c00414{height:49.350000px;}
.h12_c00414{height:50.400000px;}
.h15_c00414{height:50.404259px;}
.hf_c00414{height:51.450000px;}
.h10_c00414{height:53.550000px;}
.h16_c00414{height:55.654702px;}
.h11_c00414{height:63.000000px;}
.h3_c00414{height:64.050000px;}
.ha_c00414{height:66.150000px;}
.he_c00414{height:67.200000px;}
.hb_c00414{height:68.250000px;}
.hd_c00414{height:69.300000px;}
.h9_c00414{height:70.350000px;}
.h8_c00414{height:71.400000px;}
.h4_c00414{height:72.450000px;}
.h5_c00414{height:73.500000px;}
.hc_c00414{height:74.554510px;}
.h6_c00414{height:75.600000px;}
.h17_c00414{height:91.350000px;}
.h7_c00414{height:95.550000px;}
.h2_c00414{height:136.500000px;}
.h1_c00414{height:1005.000000px;}
.h0_c00414{height:1005.150000px;}
.w0_c00414{width:715.200000px;}
.w1_c00414{width:715.500000px;}
.x0_c00414{left:0.000000px;}
.x75_c00414{left:98.550000px;}
.x6f_c00414{left:105.570000px;}
.x7a_c00414{left:108.000000px;}
.x76_c00414{left:109.080000px;}
.x8a_c00414{left:119.340000px;}
.x83_c00414{left:122.310000px;}
.x7f_c00414{left:136.620000px;}
.xd_c00414{left:139.050000px;}
.x28_c00414{left:140.940000px;}
.x15_c00414{left:142.020000px;}
.x4_c00414{left:143.370000px;}
.x87_c00414{left:149.040000px;}
.x85_c00414{left:154.170000px;}
.x80_c00414{left:160.110000px;}
.x16_c00414{left:162.000000px;}
.x4a_c00414{left:164.970000px;}
.x29_c00414{left:166.050000px;}
.x25_c00414{left:169.020000px;}
.x5_c00414{left:170.640000px;}
.x53_c00414{left:171.720000px;}
.x6e_c00414{left:174.690000px;}
.x8b_c00414{left:177.660000px;}
.x7b_c00414{left:179.550000px;}
.x3d_c00414{left:180.630000px;}
.x1_c00414{left:182.790000px;}
.x2a_c00414{left:184.410000px;}
.x70_c00414{left:187.650000px;}
.x62_c00414{left:189.540000px;}
.xe_c00414{left:191.160000px;}
.x67_c00414{left:193.590000px;}
.x6_c00414{left:198.180000px;}
.x69_c00414{left:199.800000px;}
.x71_c00414{left:200.880000px;}
.x44_c00414{left:201.960000px;}
.x77_c00414{left:204.930000px;}
.x31_c00414{left:207.630000px;}
.x88_c00414{left:210.870000px;}
.x37_c00414{left:213.840000px;}
.xf_c00414{left:219.510000px;}
.x68_c00414{left:223.020000px;}
.x45_c00414{left:227.070000px;}
.x72_c00414{left:229.500000px;}
.x3e_c00414{left:230.580000px;}
.x89_c00414{left:231.660000px;}
.x17_c00414{left:232.740000px;}
.x32_c00414{left:236.250000px;}
.x1e_c00414{left:238.680000px;}
.x84_c00414{left:240.030000px;}
.x7c_c00414{left:242.190000px;}
.x7_c00414{left:243.540000px;}
.x54_c00414{left:244.890000px;}
.x57_c00414{left:247.050000px;}
.x73_c00414{left:249.750000px;}
.x38_c00414{left:251.370000px;}
.x66_c00414{left:257.040000px;}
.x10_c00414{left:260.820000px;}
.x63_c00414{left:263.790000px;}
.x78_c00414{left:265.950000px;}
.x2b_c00414{left:267.300000px;}
.x46_c00414{left:269.460000px;}
.x7d_c00414{left:271.620000px;}
.x5d_c00414{left:274.050000px;}
.x82_c00414{left:276.480000px;}
.x4f_c00414{left:278.220000px;}
.x18_c00414{left:279.450000px;}
.x81_c00414{left:283.770000px;}
.x74_c00414{left:287.550000px;}
.x7e_c00414{left:288.900000px;}
.x55_c00414{left:290.520000px;}
.x1f_c00414{left:292.140000px;}
.x79_c00414{left:293.220000px;}
.x26_c00414{left:294.300000px;}
.x11_c00414{left:297.540000px;}
.x50_c00414{left:299.323500px;}
.x4b_c00414{left:303.210000px;}
.x2c_c00414{left:305.370000px;}
.x8_c00414{left:306.720000px;}
.x64_c00414{left:308.340000px;}
.x6a_c00414{left:311.580000px;}
.x20_c00414{left:312.660000px;}
.x47_c00414{left:314.010000px;}
.x9_c00414{left:317.250000px;}
.x3f_c00414{left:320.490000px;}
.x4c_c00414{left:323.190000px;}
.x39_c00414{left:325.620000px;}
.x33_c00414{left:326.700000px;}
.x19_c00414{left:329.400000px;}
.x12_c00414{left:332.370000px;}
.x6b_c00414{left:333.720000px;}
.x5e_c00414{left:334.800000px;}
.x2d_c00414{left:336.150000px;}
.x1a_c00414{left:340.740000px;}
.x40_c00414{left:342.360000px;}
.x86_c00414{left:344.520000px;}
.x51_c00414{left:347.941500px;}
.x34_c00414{left:352.080000px;}
.x21_c00414{left:354.510000px;}
.x27_c00414{left:356.670000px;}
.x8c_c00414{left:360.180000px;}
.xa_c00414{left:362.880000px;}
.x3a_c00414{left:367.200000px;}
.x2e_c00414{left:368.550000px;}
.x5f_c00414{left:369.630000px;}
.x13_c00414{left:373.140000px;}
.xa4_c00414{left:376.110000px;}
.x35_c00414{left:378.810000px;}
.x56_c00414{left:380.970000px;}
.x6c_c00414{left:382.320000px;}
.x65_c00414{left:383.940000px;}
.x58_c00414{left:386.100000px;}
.x22_c00414{left:389.880000px;}
.x4d_c00414{left:394.740000px;}
.x48_c00414{left:397.710000px;}
.x3b_c00414{left:403.650000px;}
.x1b_c00414{left:404.730000px;}
.x97_c00414{left:406.620000px;}
.x41_c00414{left:409.320000px;}
.x2_c00414{left:411.480000px;}
.x2f_c00414{left:415.260000px;}
.xb_c00414{left:417.960000px;}
.x1c_c00414{left:419.850000px;}
.x4e_c00414{left:422.550000px;}
.x3c_c00414{left:425.520000px;}
.x92_c00414{left:427.140000px;}
.x52_c00414{left:428.388000px;}
.x59_c00414{left:430.110000px;}
.x42_c00414{left:434.430000px;}
.xa5_c00414{left:435.780000px;}
.x30_c00414{left:437.940000px;}
.x14_c00414{left:439.290000px;}
.x9c_c00414{left:440.370000px;}
.x93_c00414{left:441.450000px;}
.x6d_c00414{left:444.960000px;}
.xc_c00414{left:448.200000px;}
.xa6_c00414{left:451.440000px;}
.x5a_c00414{left:453.600000px;}
.x49_c00414{left:456.300000px;}
.x1d_c00414{left:457.650000px;}
.x60_c00414{left:464.670000px;}
.x23_c00414{left:467.100000px;}
.x94_c00414{left:471.420000px;}
.x8d_c00414{left:477.900000px;}
.x43_c00414{left:479.520000px;}
.x98_c00414{left:482.760000px;}
.x9d_c00414{left:484.920000px;}
.x36_c00414{left:486.270000px;}
.x3_c00414{left:487.620000px;}
.x5b_c00414{left:490.320000px;}
.xa0_c00414{left:497.388000px;}
.x8e_c00414{left:500.040000px;}
.xa1_c00414{left:505.890000px;}
.xa2_c00414{left:507.340218px;}
.x95_c00414{left:515.970000px;}
.x99_c00414{left:521.100000px;}
.x24_c00414{left:522.720000px;}
.x8f_c00414{left:528.120000px;}
.x61_c00414{left:532.710000px;}
.x5c_c00414{left:535.950000px;}
.x9a_c00414{left:541.080000px;}
.x90_c00414{left:546.210000px;}
.xa3_c00414{left:548.924238px;}
.x96_c00414{left:559.710000px;}
.x9f_c00414{left:572.130000px;}
.x9e_c00414{left:573.480000px;}
.x91_c00414{left:574.560000px;}
.x9b_c00414{left:589.680000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
.fs11_c00414{font-size:42.933333pt;}
.fs12_c00414{font-size:43.866667pt;}
.fs10_c00414{font-size:44.800000pt;}
.fs13_c00414{font-size:44.803785pt;}
.fsd_c00414{font-size:45.733333pt;}
.fse_c00414{font-size:47.600000pt;}
.fs14_c00414{font-size:49.470846pt;}
.fsf_c00414{font-size:56.000000pt;}
.fs1_c00414{font-size:56.933333pt;}
.fs8_c00414{font-size:58.800000pt;}
.fsc_c00414{font-size:59.733333pt;}
.fs9_c00414{font-size:60.666667pt;}
.fsb_c00414{font-size:61.600000pt;}
.fs7_c00414{font-size:62.533333pt;}
.fs6_c00414{font-size:63.466667pt;}
.fs2_c00414{font-size:64.400000pt;}
.fs3_c00414{font-size:65.333333pt;}
.fsa_c00414{font-size:66.270676pt;}
.fs4_c00414{font-size:67.200000pt;}
.fs15_c00414{font-size:81.200000pt;}
.fs5_c00414{font-size:84.933333pt;}
.fs0_c00414{font-size:121.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y22_c00414{bottom:129.718667pt;}
.y3d_c00414{bottom:129.842667pt;}
.y21_c00414{bottom:149.077333pt;}
.y3c_c00414{bottom:164.797333pt;}
.y20_c00414{bottom:165.014667pt;}
.y27_c00414{bottom:181.145333pt;}
.y37_c00414{bottom:181.324269pt;}
.y36_c00414{bottom:181.324713pt;}
.y38_c00414{bottom:181.324884pt;}
.y39_c00414{bottom:181.325303pt;}
.y35_c00414{bottom:181.325361pt;}
.y3a_c00414{bottom:181.325632pt;}
.y3b_c00414{bottom:181.326077pt;}
.y2c_c00414{bottom:196.321333pt;}
.y2d_c00414{bottom:196.597124pt;}
.y1f_c00414{bottom:196.941333pt;}
.y2e_c00414{bottom:197.051881pt;}
.y2f_c00414{bottom:197.251665pt;}
.y30_c00414{bottom:197.451293pt;}
.y31_c00414{bottom:197.912117pt;}
.y32_c00414{bottom:198.010363pt;}
.y33_c00414{bottom:198.191305pt;}
.y34_c00414{bottom:198.484603pt;}
.y26_c00414{bottom:212.832000pt;}
.y2b_c00414{bottom:213.505333pt;}
.y25_c00414{bottom:228.854667pt;}
.y2a_c00414{bottom:229.168000pt;}
.y24_c00414{bottom:244.696000pt;}
.y29_c00414{bottom:245.264000pt;}
.y23_c00414{bottom:260.725333pt;}
.y28_c00414{bottom:261.482667pt;}
.y1e_c00414{bottom:306.609333pt;}
.y1d_c00414{bottom:326.846667pt;}
.y1c_c00414{bottom:347.378667pt;}
.y1b_c00414{bottom:367.240000pt;}
.y1a_c00414{bottom:387.785333pt;}
.y19_c00414{bottom:408.545333pt;}
.y18_c00414{bottom:428.764000pt;}
.y17_c00414{bottom:447.545333pt;}
.ye_c00414{bottom:467.988000pt;}
.yf_c00414{bottom:468.563051pt;}
.y10_c00414{bottom:468.814364pt;}
.y11_c00414{bottom:469.312972pt;}
.y12_c00414{bottom:469.519317pt;}
.y13_c00414{bottom:469.844023pt;}
.y14_c00414{bottom:469.994693pt;}
.y15_c00414{bottom:470.245361pt;}
.y16_c00414{bottom:470.781281pt;}
.yd_c00414{bottom:491.542667pt;}
.yc_c00414{bottom:512.961333pt;}
.yb_c00414{bottom:532.876000pt;}
.ya_c00414{bottom:574.962667pt;}
.y9_c00414{bottom:594.772000pt;}
.y8_c00414{bottom:615.856000pt;}
.y7_c00414{bottom:636.517333pt;}
.y6_c00414{bottom:656.121333pt;}
.y5_c00414{bottom:676.424000pt;}
.y4_c00414{bottom:695.989333pt;}
.y3_c00414{bottom:716.277333pt;}
.y2_c00414{bottom:737.192000pt;}
.y1_c00414{bottom:780.776000pt;}
.h13_c00414{height:42.933333pt;}
.h14_c00414{height:43.866667pt;}
.h12_c00414{height:44.800000pt;}
.h15_c00414{height:44.803785pt;}
.hf_c00414{height:45.733333pt;}
.h10_c00414{height:47.600000pt;}
.h16_c00414{height:49.470846pt;}
.h11_c00414{height:56.000000pt;}
.h3_c00414{height:56.933333pt;}
.ha_c00414{height:58.800000pt;}
.he_c00414{height:59.733333pt;}
.hb_c00414{height:60.666667pt;}
.hd_c00414{height:61.600000pt;}
.h9_c00414{height:62.533333pt;}
.h8_c00414{height:63.466667pt;}
.h4_c00414{height:64.400000pt;}
.h5_c00414{height:65.333333pt;}
.hc_c00414{height:66.270676pt;}
.h6_c00414{height:67.200000pt;}
.h17_c00414{height:81.200000pt;}
.h7_c00414{height:84.933333pt;}
.h2_c00414{height:121.333333pt;}
.h1_c00414{height:893.333333pt;}
.h0_c00414{height:893.466667pt;}
.w0_c00414{width:635.733333pt;}
.w1_c00414{width:636.000000pt;}
.x0_c00414{left:0.000000pt;}
.x75_c00414{left:87.600000pt;}
.x6f_c00414{left:93.840000pt;}
.x7a_c00414{left:96.000000pt;}
.x76_c00414{left:96.960000pt;}
.x8a_c00414{left:106.080000pt;}
.x83_c00414{left:108.720000pt;}
.x7f_c00414{left:121.440000pt;}
.xd_c00414{left:123.600000pt;}
.x28_c00414{left:125.280000pt;}
.x15_c00414{left:126.240000pt;}
.x4_c00414{left:127.440000pt;}
.x87_c00414{left:132.480000pt;}
.x85_c00414{left:137.040000pt;}
.x80_c00414{left:142.320000pt;}
.x16_c00414{left:144.000000pt;}
.x4a_c00414{left:146.640000pt;}
.x29_c00414{left:147.600000pt;}
.x25_c00414{left:150.240000pt;}
.x5_c00414{left:151.680000pt;}
.x53_c00414{left:152.640000pt;}
.x6e_c00414{left:155.280000pt;}
.x8b_c00414{left:157.920000pt;}
.x7b_c00414{left:159.600000pt;}
.x3d_c00414{left:160.560000pt;}
.x1_c00414{left:162.480000pt;}
.x2a_c00414{left:163.920000pt;}
.x70_c00414{left:166.800000pt;}
.x62_c00414{left:168.480000pt;}
.xe_c00414{left:169.920000pt;}
.x67_c00414{left:172.080000pt;}
.x6_c00414{left:176.160000pt;}
.x69_c00414{left:177.600000pt;}
.x71_c00414{left:178.560000pt;}
.x44_c00414{left:179.520000pt;}
.x77_c00414{left:182.160000pt;}
.x31_c00414{left:184.560000pt;}
.x88_c00414{left:187.440000pt;}
.x37_c00414{left:190.080000pt;}
.xf_c00414{left:195.120000pt;}
.x68_c00414{left:198.240000pt;}
.x45_c00414{left:201.840000pt;}
.x72_c00414{left:204.000000pt;}
.x3e_c00414{left:204.960000pt;}
.x89_c00414{left:205.920000pt;}
.x17_c00414{left:206.880000pt;}
.x32_c00414{left:210.000000pt;}
.x1e_c00414{left:212.160000pt;}
.x84_c00414{left:213.360000pt;}
.x7c_c00414{left:215.280000pt;}
.x7_c00414{left:216.480000pt;}
.x54_c00414{left:217.680000pt;}
.x57_c00414{left:219.600000pt;}
.x73_c00414{left:222.000000pt;}
.x38_c00414{left:223.440000pt;}
.x66_c00414{left:228.480000pt;}
.x10_c00414{left:231.840000pt;}
.x63_c00414{left:234.480000pt;}
.x78_c00414{left:236.400000pt;}
.x2b_c00414{left:237.600000pt;}
.x46_c00414{left:239.520000pt;}
.x7d_c00414{left:241.440000pt;}
.x5d_c00414{left:243.600000pt;}
.x82_c00414{left:245.760000pt;}
.x4f_c00414{left:247.306667pt;}
.x18_c00414{left:248.400000pt;}
.x81_c00414{left:252.240000pt;}
.x74_c00414{left:255.600000pt;}
.x7e_c00414{left:256.800000pt;}
.x55_c00414{left:258.240000pt;}
.x1f_c00414{left:259.680000pt;}
.x79_c00414{left:260.640000pt;}
.x26_c00414{left:261.600000pt;}
.x11_c00414{left:264.480000pt;}
.x50_c00414{left:266.065333pt;}
.x4b_c00414{left:269.520000pt;}
.x2c_c00414{left:271.440000pt;}
.x8_c00414{left:272.640000pt;}
.x64_c00414{left:274.080000pt;}
.x6a_c00414{left:276.960000pt;}
.x20_c00414{left:277.920000pt;}
.x47_c00414{left:279.120000pt;}
.x9_c00414{left:282.000000pt;}
.x3f_c00414{left:284.880000pt;}
.x4c_c00414{left:287.280000pt;}
.x39_c00414{left:289.440000pt;}
.x33_c00414{left:290.400000pt;}
.x19_c00414{left:292.800000pt;}
.x12_c00414{left:295.440000pt;}
.x6b_c00414{left:296.640000pt;}
.x5e_c00414{left:297.600000pt;}
.x2d_c00414{left:298.800000pt;}
.x1a_c00414{left:302.880000pt;}
.x40_c00414{left:304.320000pt;}
.x86_c00414{left:306.240000pt;}
.x51_c00414{left:309.281333pt;}
.x34_c00414{left:312.960000pt;}
.x21_c00414{left:315.120000pt;}
.x27_c00414{left:317.040000pt;}
.x8c_c00414{left:320.160000pt;}
.xa_c00414{left:322.560000pt;}
.x3a_c00414{left:326.400000pt;}
.x2e_c00414{left:327.600000pt;}
.x5f_c00414{left:328.560000pt;}
.x13_c00414{left:331.680000pt;}
.xa4_c00414{left:334.320000pt;}
.x35_c00414{left:336.720000pt;}
.x56_c00414{left:338.640000pt;}
.x6c_c00414{left:339.840000pt;}
.x65_c00414{left:341.280000pt;}
.x58_c00414{left:343.200000pt;}
.x22_c00414{left:346.560000pt;}
.x4d_c00414{left:350.880000pt;}
.x48_c00414{left:353.520000pt;}
.x3b_c00414{left:358.800000pt;}
.x1b_c00414{left:359.760000pt;}
.x97_c00414{left:361.440000pt;}
.x41_c00414{left:363.840000pt;}
.x2_c00414{left:365.760000pt;}
.x2f_c00414{left:369.120000pt;}
.xb_c00414{left:371.520000pt;}
.x1c_c00414{left:373.200000pt;}
.x4e_c00414{left:375.600000pt;}
.x3c_c00414{left:378.240000pt;}
.x92_c00414{left:379.680000pt;}
.x52_c00414{left:380.789333pt;}
.x59_c00414{left:382.320000pt;}
.x42_c00414{left:386.160000pt;}
.xa5_c00414{left:387.360000pt;}
.x30_c00414{left:389.280000pt;}
.x14_c00414{left:390.480000pt;}
.x9c_c00414{left:391.440000pt;}
.x93_c00414{left:392.400000pt;}
.x6d_c00414{left:395.520000pt;}
.xc_c00414{left:398.400000pt;}
.xa6_c00414{left:401.280000pt;}
.x5a_c00414{left:403.200000pt;}
.x49_c00414{left:405.600000pt;}
.x1d_c00414{left:406.800000pt;}
.x60_c00414{left:413.040000pt;}
.x23_c00414{left:415.200000pt;}
.x94_c00414{left:419.040000pt;}
.x8d_c00414{left:424.800000pt;}
.x43_c00414{left:426.240000pt;}
.x98_c00414{left:429.120000pt;}
.x9d_c00414{left:431.040000pt;}
.x36_c00414{left:432.240000pt;}
.x3_c00414{left:433.440000pt;}
.x5b_c00414{left:435.840000pt;}
.xa0_c00414{left:442.122667pt;}
.x8e_c00414{left:444.480000pt;}
.xa1_c00414{left:449.680000pt;}
.xa2_c00414{left:450.969083pt;}
.x95_c00414{left:458.640000pt;}
.x99_c00414{left:463.200000pt;}
.x24_c00414{left:464.640000pt;}
.x8f_c00414{left:469.440000pt;}
.x61_c00414{left:473.520000pt;}
.x5c_c00414{left:476.400000pt;}
.x9a_c00414{left:480.960000pt;}
.x90_c00414{left:485.520000pt;}
.xa3_c00414{left:487.932656pt;}
.x96_c00414{left:497.520000pt;}
.x9f_c00414{left:508.560000pt;}
.x9e_c00414{left:509.760000pt;}
.x91_c00414{left:510.720000pt;}
.x9b_c00414{left:524.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_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_ef4e99a7aa2876b3106553d3.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;}
.mcf_c00415{transform:matrix(0.008130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008130,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{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);}
.mde_c00415{transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);}
.mbb_c00415{transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020670,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040070,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.058290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058290,0.000000,0.000000,0.250000,0,0);}
.md3_c00415{transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);}
.md6_c00415{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);}
.mda_c00415{transform:matrix(0.077970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077970,0.000000,0.000000,0.250000,0,0);}
.me3_c00415{transform:matrix(0.080005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080005,0.000000,0.000000,0.250000,0,0);}
.md1_c00415{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);}
.md0_c00415{transform:matrix(0.113610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113610,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.115345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115345,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.118915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118915,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.128215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128215,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{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);}
.m6_c00415{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.143305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143305,0.000000,0.000000,0.250000,0,0);}
.mdf_c00415{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);}
.me_c00415{transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{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);}
.mb3_c00415{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);}
.m21_c00415{transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{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);}
.mb6_c00415{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_c00415{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);}
.m49_c00415{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);}
.m4c_c00415{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);}
.m65_c00415{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);}
.m2f_c00415{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);}
.m61_c00415{transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{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);}
.m81_c00415{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);}
.m22_c00415{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_c00415{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);}
.m53_c00415{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);}
.mac_c00415{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);}
.m2b_c00415{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);}
.m8_c00415{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);}
.m32_c00415{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);}
.m10_c00415{transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);}
.mb8_c00415{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);}
.ma7_c00415{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);}
.m3_c00415{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);}
.mb0_c00415{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);}
.m41_c00415{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);}
.mfb_c00415{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);}
.maf_c00415{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);}
.m96_c00415{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);}
.m60_c00415{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);}
.m9_c00415{transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169805,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{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);}
.m4f_c00415{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);}
.m46_c00415{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);}
.mab_c00415{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);}
.m87_c00415{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);}
.m4d_c00415{transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172080,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{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);}
.mc_c00415{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);}
.m50_c00415{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);}
.mb_c00415{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);}
.mf3_c00415{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);}
.m59_c00415{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);}
.m7d_c00415{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);}
.m31_c00415{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);}
.m42_c00415{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);}
.m9d_c00415{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);}
.m4a_c00415{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);}
.mf5_c00415{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);}
.m27_c00415{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);}
.m5a_c00415{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);}
.m90_c00415{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);}
.m80_c00415{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);}
.m7c_c00415{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);}
.mb5_c00415{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);}
.mf_c00415{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);}
.m3e_c00415{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);}
.me8_c00415{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);}
.md_c00415{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_c00415{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);}
.m3b_c00415{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);}
.m5_c00415{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);}
.m57_c00415{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);}
.m3a_c00415{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);}
.m74_c00415{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);}
.m54_c00415{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);}
.m55_c00415{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);}
.m78_c00415{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);}
.m86_c00415{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);}
.m2c_c00415{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);}
.m48_c00415{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);}
.m52_c00415{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);}
.ma1_c00415{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);}
.mc7_c00415{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);}
.m5b_c00415{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);}
.m11_c00415{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);}
.m47_c00415{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);}
.m1b_c00415{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);}
.m9e_c00415{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);}
.m2_c00415{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);}
.mb1_c00415{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{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);}
.ma5_c00415{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);}
.m8b_c00415{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);}
.m40_c00415{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);}
.mc9_c00415{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);}
.m2e_c00415{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);}
.m6a_c00415{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);}
.mb4_c00415{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);}
.m62_c00415{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);}
.mf4_c00415{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);}
.m64_c00415{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);}
.m4b_c00415{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);}
.m7a_c00415{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);}
.m8a_c00415{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);}
.m77_c00415{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);}
.m45_c00415{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);}
.m44_c00415{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);}
.mb7_c00415{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);}
.m58_c00415{transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{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);}
.m5d_c00415{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);}
.mee_c00415{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);}
.m9c_c00415{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);}
.ma0_c00415{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);}
.m17_c00415{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);}
.m34_c00415{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);}
.m3f_c00415{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);}
.m9b_c00415{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);}
.m95_c00415{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);}
.m16_c00415{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);}
.m8c_c00415{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);}
.mf6_c00415{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{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);}
.m51_c00415{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);}
.mba_c00415{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);}
.m94_c00415{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);}
.m35_c00415{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);}
.m92_c00415{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);}
.mae_c00415{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);}
.m7e_c00415{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);}
.m76_c00415{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);}
.m7b_c00415{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);}
.m12_c00415{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);}
.mcc_c00415{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);}
.m1_c00415{transform:matrix(0.208760,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208760,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208760,-0.002505,0.003000,0.249982,0,0);}
.m103_c00415{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);}
.m23_c00415{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);}
.m30_c00415{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{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);}
.m24_c00415{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);}
.me1_c00415{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{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);}
.m85_c00415{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);}
.m56_c00415{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);}
.m36_c00415{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);}
.m5c_c00415{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);}
.me9_c00415{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);}
.ma4_c00415{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);}
.mad_c00415{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);}
.mc1_c00415{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);}
.me6_c00415{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);}
.m89_c00415{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);}
.mc4_c00415{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);}
.m15_c00415{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);}
.md7_c00415{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);}
.mc2_c00415{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);}
.mb9_c00415{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);}
.me7_c00415{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);}
.maa_c00415{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);}
.m6b_c00415{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);}
.mf7_c00415{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);}
.m97_c00415{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);}
.md2_c00415{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);}
.m100_c00415{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{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);}
.ma_c00415{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{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);}
.m66_c00415{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);}
.m37_c00415{transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);}
.mef_c00415{transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{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);}
.m6c_c00415{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);}
.m71_c00415{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);}
.mfe_c00415{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);}
.m73_c00415{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);}
.m33_c00415{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);}
.mbf_c00415{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);}
.mf8_c00415{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);}
.m2a_c00415{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{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);}
.m72_c00415{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);}
.m106_c00415{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);}
.m104_c00415{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);}
.m102_c00415{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);}
.meb_c00415{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{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);}
.m6e_c00415{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);}
.m63_c00415{transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);}
.m98_c00415{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);}
.m88_c00415{transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243115,0.000000,0.000000,0.250000,0,0);}
.mc3_c00415{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);}
.me0_c00415{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.md5_c00415{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.mf1_c00415{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.mc5_c00415{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00415{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);}
.mdc_c00415{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{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);}
.m38_c00415{transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256620,0.000000,0.000000,0.250000,0,0);}
.mce_c00415{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);}
.mbe_c00415{transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{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);}
.mfc_c00415{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);}
.m75_c00415{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.mcb_c00415{transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264240,0.000000,0.000000,0.250000,0,0);}
.mf0_c00415{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.mff_c00415{transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273010,0.000000,0.000000,0.250000,0,0);}
.m99_c00415{transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275340,0.000000,0.000000,0.250000,0,0);}
.md8_c00415{transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277545,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{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);}
.me2_c00415{transform:matrix(0.280580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280580,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);}
.md9_c00415{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);}
.m93_c00415{transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296295,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297890,0.000000,0.000000,0.250000,0,0);}
.mbd_c00415{transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309015,0.000000,0.000000,0.250000,0,0);}
.m101_c00415{transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310365,0.000000,0.000000,0.250000,0,0);}
.mdd_c00415{transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311225,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{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);}
.mc6_c00415{transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);}
.mfa_c00415{transform:matrix(0.319635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319635,0.000000,0.000000,0.250000,0,0);}
.mdb_c00415{transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.324277,-0.003891,0.003000,0.249982,0,0);-ms-transform:matrix(0.324277,-0.003891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.324277,-0.003891,0.003000,0.249982,0,0);}
.m1d_c00415{transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326235,0.000000,0.000000,0.250000,0,0);}
.mca_c00415{transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337695,0.000000,0.000000,0.250000,0,0);}
.m105_c00415{transform:matrix(0.339915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339915,0.000000,0.000000,0.250000,0,0);}
.md4_c00415{transform:matrix(0.341085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341085,0.000000,0.000000,0.250000,0,0);}
.me5_c00415{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);}
.m25_c00415{transform:matrix(0.342565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342565,0.000000,0.000000,0.250000,0,0);}
.mf2_c00415{transform:matrix(0.348070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348070,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.358905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358905,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.363830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363830,0.000000,0.000000,0.250000,0,0);}
.mf9_c00415{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);}
.mfd_c00415{transform:matrix(0.378675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378675,0.000000,0.000000,0.250000,0,0);}
.mbc_c00415{transform:matrix(0.397485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397485,0.000000,0.000000,0.250000,0,0);}
.mea_c00415{transform:matrix(0.400810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400810,0.000000,0.000000,0.250000,0,0);}
.me4_c00415{transform:matrix(0.411280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411280,0.000000,0.000000,0.250000,0,0);}
.mc0_c00415{transform:matrix(0.432275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00415{transform:matrix(0.611575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611575,0.000000,0.000000,0.250000,0,0);}
.mec_c00415{transform:matrix(0.622395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622395,0.000000,0.000000,0.250000,0,0);}
.mcd_c00415{transform:matrix(0.633325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633325,0.000000,0.000000,0.250000,0,0);}
.med_c00415{transform:matrix(0.887430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887430,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;}
.fs10_c00415{font-size:46.200000px;}
.fs11_c00415{font-size:48.300000px;}
.fs15_c00415{font-size:49.350000px;}
.fs12_c00415{font-size:50.400000px;}
.fsf_c00415{font-size:52.500000px;}
.fs14_c00415{font-size:54.600000px;}
.fs13_c00415{font-size:58.800000px;}
.fsb_c00415{font-size:63.000000px;}
.fs5_c00415{font-size:65.100000px;}
.fs7_c00415{font-size:66.150000px;}
.fse_c00415{font-size:67.200000px;}
.fs1_c00415{font-size:68.254914px;}
.fs9_c00415{font-size:69.300000px;}
.fs8_c00415{font-size:70.350000px;}
.fsa_c00415{font-size:71.400000px;}
.fs2_c00415{font-size:72.450000px;}
.fs3_c00415{font-size:73.500000px;}
.fs4_c00415{font-size:74.550000px;}
.fs6_c00415{font-size:76.650000px;}
.fsc_c00415{font-size:80.850000px;}
.fsd_c00415{font-size:93.450000px;}
.fs0_c00415{font-size:223.666102px;}
.y0_c00415{bottom:0.000000px;}
.y20_c00415{bottom:162.400500px;}
.y23_c00415{bottom:162.751500px;}
.y22_c00415{bottom:180.259500px;}
.y1f_c00415{bottom:180.480000px;}
.y1e_c00415{bottom:198.051000px;}
.y21_c00415{bottom:198.298500px;}
.y1d_c00415{bottom:216.810000px;}
.y1c_c00415{bottom:234.657000px;}
.y1b_c00415{bottom:286.516500px;}
.y1a_c00415{bottom:309.075000px;}
.y19_c00415{bottom:332.077500px;}
.y18_c00415{bottom:354.981000px;}
.y17_c00415{bottom:378.895500px;}
.y16_c00415{bottom:401.718000px;}
.y15_c00415{bottom:424.932000px;}
.y14_c00415{bottom:447.559500px;}
.y13_c00415{bottom:471.534000px;}
.y12_c00415{bottom:494.704500px;}
.y11_c00415{bottom:517.860000px;}
.y10_c00415{bottom:540.343500px;}
.yf_c00415{bottom:563.748000px;}
.ye_c00415{bottom:587.095500px;}
.yd_c00415{bottom:609.996000px;}
.yc_c00415{bottom:633.310500px;}
.yb_c00415{bottom:656.017500px;}
.ya_c00415{bottom:678.967500px;}
.y9_c00415{bottom:701.833500px;}
.y8_c00415{bottom:724.303500px;}
.y7_c00415{bottom:747.783000px;}
.y6_c00415{bottom:770.922000px;}
.y5_c00415{bottom:794.478000px;}
.y4_c00415{bottom:816.501000px;}
.y3_c00415{bottom:839.002500px;}
.y2_c00415{bottom:908.279274px;}
.y1_c00415{bottom:923.674500px;}
.h12_c00415{height:46.200000px;}
.h13_c00415{height:48.300000px;}
.h17_c00415{height:49.350000px;}
.h14_c00415{height:50.400000px;}
.h11_c00415{height:52.500000px;}
.h16_c00415{height:54.600000px;}
.h15_c00415{height:58.800000px;}
.hd_c00415{height:63.000000px;}
.h7_c00415{height:65.100000px;}
.h9_c00415{height:66.150000px;}
.h10_c00415{height:67.200000px;}
.h3_c00415{height:68.254914px;}
.hb_c00415{height:69.300000px;}
.ha_c00415{height:70.350000px;}
.hc_c00415{height:71.400000px;}
.h4_c00415{height:72.450000px;}
.h5_c00415{height:73.500000px;}
.h6_c00415{height:74.550000px;}
.h8_c00415{height:76.650000px;}
.he_c00415{height:80.850000px;}
.hf_c00415{height:93.450000px;}
.h2_c00415{height:223.666102px;}
.h0_c00415{height:1008.450000px;}
.h1_c00415{height:1008.750000px;}
.w1_c00415{width:689.250000px;}
.w0_c00415{width:689.550000px;}
.x0_c00415{left:0.000000px;}
.x91_c00415{left:64.260000px;}
.x80_c00415{left:70.740000px;}
.x94_c00415{left:72.090000px;}
.x5d_c00415{left:75.330000px;}
.x97_c00415{left:78.840000px;}
.x1_c00415{left:86.254500px;}
.x2_c00415{left:92.879670px;}
.x7b_c00415{left:116.100000px;}
.x8b_c00415{left:124.470000px;}
.x95_c00415{left:125.550000px;}
.x92_c00415{left:126.900000px;}
.x81_c00415{left:137.430000px;}
.x93_c00415{left:145.800000px;}
.x14_c00415{left:150.390000px;}
.x66_c00415{left:151.470000px;}
.x86_c00415{left:156.060000px;}
.x75_c00415{left:157.950000px;}
.x3_c00415{left:159.840000px;}
.x1f_c00415{left:161.190000px;}
.xb_c00415{left:162.540000px;}
.x96_c00415{left:167.940000px;}
.x87_c00415{left:173.610000px;}
.x6b_c00415{left:177.120000px;}
.x42_c00415{left:178.200000px;}
.x76_c00415{left:182.250000px;}
.x33_c00415{left:183.870000px;}
.x4_c00415{left:186.840000px;}
.x6e_c00415{left:189.540000px;}
.x20_c00415{left:190.890000px;}
.x4d_c00415{left:193.050000px;}
.x26_c00415{left:194.940000px;}
.xc_c00415{left:199.530000px;}
.x3e_c00415{left:201.150000px;}
.x16_c00415{left:203.040000px;}
.x2e_c00415{left:204.930000px;}
.x5f_c00415{left:206.010000px;}
.x82_c00415{left:208.980000px;}
.x21_c00415{left:215.190000px;}
.x46_c00415{left:217.080000px;}
.x3a_c00415{left:218.430000px;}
.x88_c00415{left:220.050000px;}
.x5_c00415{left:222.210000px;}
.x7c_c00415{left:223.290000px;}
.x48_c00415{left:225.720000px;}
.x54_c00415{left:229.230000px;}
.x17_c00415{left:235.170000px;}
.x3f_c00415{left:240.030000px;}
.x27_c00415{left:241.650000px;}
.x77_c00415{left:245.430000px;}
.xd_c00415{left:249.750000px;}
.x5b_c00415{left:252.990000px;}
.x67_c00415{left:255.960000px;}
.x34_c00415{left:257.040000px;}
.x22_c00415{left:258.390000px;}
.x6f_c00415{left:260.010000px;}
.x49_c00415{left:270.000000px;}
.x98_c00415{left:272.430000px;}
.x2f_c00415{left:273.510000px;}
.x5c_c00415{left:276.210000px;}
.xe_c00415{left:281.610000px;}
.x28_c00415{left:282.960000px;}
.x35_c00415{left:284.580000px;}
.x43_c00415{left:289.170000px;}
.x4a_c00415{left:291.060000px;}
.x70_c00415{left:292.680000px;}
.x83_c00415{left:294.030000px;}
.x5e_c00415{left:299.160000px;}
.x15_c00415{left:300.240000px;}
.x29_c00415{left:302.400000px;}
.x7d_c00415{left:304.020000px;}
.x60_c00415{left:306.180000px;}
.x40_c00415{left:309.420000px;}
.x55_c00415{left:311.040000px;}
.x6_c00415{left:313.200000px;}
.x71_c00415{left:318.870000px;}
.x84_c00415{left:320.220000px;}
.x4e_c00415{left:323.460000px;}
.x47_c00415{left:326.700000px;}
.x7e_c00415{left:328.320000px;}
.xf_c00415{left:330.750000px;}
.x78_c00415{left:331.830000px;}
.x36_c00415{left:333.450000px;}
.x18_c00415{left:334.530000px;}
.x3b_c00415{left:336.420000px;}
.x68_c00415{left:338.850000px;}
.x99_c00415{left:341.010000px;}
.x30_c00415{left:342.090000px;}
.x61_c00415{left:345.060000px;}
.x44_c00415{left:346.680000px;}
.x10_c00415{left:348.570000px;}
.x1d_c00415{left:352.620000px;}
.x2a_c00415{left:353.970000px;}
.x37_c00415{left:358.830000px;}
.x56_c00415{left:360.180000px;}
.x7_c00415{left:362.340000px;}
.x31_c00415{left:363.690000px;}
.x23_c00415{left:365.850000px;}
.x19_c00415{left:366.930000px;}
.x7f_c00415{left:368.550000px;}
.x62_c00415{left:373.140000px;}
.x4b_c00415{left:374.760000px;}
.x1e_c00415{left:377.730000px;}
.x8_c00415{left:380.160000px;}
.x2b_c00415{left:381.240000px;}
.x69_c00415{left:383.400000px;}
.x57_c00415{left:387.720000px;}
.x9a_c00415{left:390.150000px;}
.x11_c00415{left:391.500000px;}
.x4f_c00415{left:393.930000px;}
.x41_c00415{left:396.090000px;}
.x79_c00415{left:397.170000px;}
.x8c_c00415{left:400.950000px;}
.x3c_c00415{left:402.570000px;}
.x2c_c00415{left:405.000000px;}
.x45_c00415{left:411.480000px;}
.xa0_c00415{left:413.370000px;}
.x9_c00415{left:415.260000px;}
.x89_c00415{left:417.960000px;}
.x24_c00415{left:419.310000px;}
.x4c_c00415{left:422.280000px;}
.x72_c00415{left:425.790000px;}
.x12_c00415{left:426.870000px;}
.x6a_c00415{left:431.730000px;}
.x32_c00415{left:433.080000px;}
.x7a_c00415{left:439.830000px;}
.x3d_c00415{left:440.910000px;}
.x58_c00415{left:442.800000px;}
.x63_c00415{left:445.230000px;}
.x38_c00415{left:449.010000px;}
.xa_c00415{left:451.710000px;}
.x1a_c00415{left:452.790000px;}
.x8d_c00415{left:453.870000px;}
.x50_c00415{left:456.570000px;}
.x25_c00415{left:458.190000px;}
.x73_c00415{left:463.590000px;}
.x2d_c00415{left:464.940000px;}
.x6c_c00415{left:466.560000px;}
.x64_c00415{left:467.910000px;}
.x13_c00415{left:470.070000px;}
.x51_c00415{left:476.010000px;}
.xa1_c00415{left:478.170000px;}
.x1b_c00415{left:479.520000px;}
.x59_c00415{left:482.220000px;}
.x9b_c00415{left:484.920000px;}
.x85_c00415{left:493.830000px;}
.x5a_c00415{left:498.150000px;}
.x8e_c00415{left:501.390000px;}
.x9c_c00415{left:503.010000px;}
.x1c_c00415{left:506.250000px;}
.xa2_c00415{left:508.140000px;}
.x39_c00415{left:511.110000px;}
.x74_c00415{left:516.780000px;}
.x65_c00415{left:519.210000px;}
.x6d_c00415{left:525.150000px;}
.x9d_c00415{left:535.140000px;}
.x8a_c00415{left:538.110000px;}
.x52_c00415{left:559.440000px;}
.x9e_c00415{left:564.030000px;}
.x8f_c00415{left:565.650000px;}
.x53_c00415{left:570.240000px;}
.xa3_c00415{left:574.830000px;}
.x9f_c00415{left:594.000000px;}
.x90_c00415{left:611.550000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.fs10_c00415{font-size:41.066667pt;}
.fs11_c00415{font-size:42.933333pt;}
.fs15_c00415{font-size:43.866667pt;}
.fs12_c00415{font-size:44.800000pt;}
.fsf_c00415{font-size:46.666667pt;}
.fs14_c00415{font-size:48.533333pt;}
.fs13_c00415{font-size:52.266667pt;}
.fsb_c00415{font-size:56.000000pt;}
.fs5_c00415{font-size:57.866667pt;}
.fs7_c00415{font-size:58.800000pt;}
.fse_c00415{font-size:59.733333pt;}
.fs1_c00415{font-size:60.671035pt;}
.fs9_c00415{font-size:61.600000pt;}
.fs8_c00415{font-size:62.533333pt;}
.fsa_c00415{font-size:63.466667pt;}
.fs2_c00415{font-size:64.400000pt;}
.fs3_c00415{font-size:65.333333pt;}
.fs4_c00415{font-size:66.266667pt;}
.fs6_c00415{font-size:68.133333pt;}
.fsc_c00415{font-size:71.866667pt;}
.fsd_c00415{font-size:83.066667pt;}
.fs0_c00415{font-size:198.814313pt;}
.y0_c00415{bottom:0.000000pt;}
.y20_c00415{bottom:144.356000pt;}
.y23_c00415{bottom:144.668000pt;}
.y22_c00415{bottom:160.230667pt;}
.y1f_c00415{bottom:160.426667pt;}
.y1e_c00415{bottom:176.045333pt;}
.y21_c00415{bottom:176.265333pt;}
.y1d_c00415{bottom:192.720000pt;}
.y1c_c00415{bottom:208.584000pt;}
.y1b_c00415{bottom:254.681333pt;}
.y1a_c00415{bottom:274.733333pt;}
.y19_c00415{bottom:295.180000pt;}
.y18_c00415{bottom:315.538667pt;}
.y17_c00415{bottom:336.796000pt;}
.y16_c00415{bottom:357.082667pt;}
.y15_c00415{bottom:377.717333pt;}
.y14_c00415{bottom:397.830667pt;}
.y13_c00415{bottom:419.141333pt;}
.y12_c00415{bottom:439.737333pt;}
.y11_c00415{bottom:460.320000pt;}
.y10_c00415{bottom:480.305333pt;}
.yf_c00415{bottom:501.109333pt;}
.ye_c00415{bottom:521.862667pt;}
.yd_c00415{bottom:542.218667pt;}
.yc_c00415{bottom:562.942667pt;}
.yb_c00415{bottom:583.126667pt;}
.ya_c00415{bottom:603.526667pt;}
.y9_c00415{bottom:623.852000pt;}
.y8_c00415{bottom:643.825333pt;}
.y7_c00415{bottom:664.696000pt;}
.y6_c00415{bottom:685.264000pt;}
.y5_c00415{bottom:706.202667pt;}
.y4_c00415{bottom:725.778667pt;}
.y3_c00415{bottom:745.780000pt;}
.y2_c00415{bottom:807.359355pt;}
.y1_c00415{bottom:821.044000pt;}
.h12_c00415{height:41.066667pt;}
.h13_c00415{height:42.933333pt;}
.h17_c00415{height:43.866667pt;}
.h14_c00415{height:44.800000pt;}
.h11_c00415{height:46.666667pt;}
.h16_c00415{height:48.533333pt;}
.h15_c00415{height:52.266667pt;}
.hd_c00415{height:56.000000pt;}
.h7_c00415{height:57.866667pt;}
.h9_c00415{height:58.800000pt;}
.h10_c00415{height:59.733333pt;}
.h3_c00415{height:60.671035pt;}
.hb_c00415{height:61.600000pt;}
.ha_c00415{height:62.533333pt;}
.hc_c00415{height:63.466667pt;}
.h4_c00415{height:64.400000pt;}
.h5_c00415{height:65.333333pt;}
.h6_c00415{height:66.266667pt;}
.h8_c00415{height:68.133333pt;}
.he_c00415{height:71.866667pt;}
.hf_c00415{height:83.066667pt;}
.h2_c00415{height:198.814313pt;}
.h0_c00415{height:896.400000pt;}
.h1_c00415{height:896.666667pt;}
.w1_c00415{width:612.666667pt;}
.w0_c00415{width:612.933333pt;}
.x0_c00415{left:0.000000pt;}
.x91_c00415{left:57.120000pt;}
.x80_c00415{left:62.880000pt;}
.x94_c00415{left:64.080000pt;}
.x5d_c00415{left:66.960000pt;}
.x97_c00415{left:70.080000pt;}
.x1_c00415{left:76.670667pt;}
.x2_c00415{left:82.559707pt;}
.x7b_c00415{left:103.200000pt;}
.x8b_c00415{left:110.640000pt;}
.x95_c00415{left:111.600000pt;}
.x92_c00415{left:112.800000pt;}
.x81_c00415{left:122.160000pt;}
.x93_c00415{left:129.600000pt;}
.x14_c00415{left:133.680000pt;}
.x66_c00415{left:134.640000pt;}
.x86_c00415{left:138.720000pt;}
.x75_c00415{left:140.400000pt;}
.x3_c00415{left:142.080000pt;}
.x1f_c00415{left:143.280000pt;}
.xb_c00415{left:144.480000pt;}
.x96_c00415{left:149.280000pt;}
.x87_c00415{left:154.320000pt;}
.x6b_c00415{left:157.440000pt;}
.x42_c00415{left:158.400000pt;}
.x76_c00415{left:162.000000pt;}
.x33_c00415{left:163.440000pt;}
.x4_c00415{left:166.080000pt;}
.x6e_c00415{left:168.480000pt;}
.x20_c00415{left:169.680000pt;}
.x4d_c00415{left:171.600000pt;}
.x26_c00415{left:173.280000pt;}
.xc_c00415{left:177.360000pt;}
.x3e_c00415{left:178.800000pt;}
.x16_c00415{left:180.480000pt;}
.x2e_c00415{left:182.160000pt;}
.x5f_c00415{left:183.120000pt;}
.x82_c00415{left:185.760000pt;}
.x21_c00415{left:191.280000pt;}
.x46_c00415{left:192.960000pt;}
.x3a_c00415{left:194.160000pt;}
.x88_c00415{left:195.600000pt;}
.x5_c00415{left:197.520000pt;}
.x7c_c00415{left:198.480000pt;}
.x48_c00415{left:200.640000pt;}
.x54_c00415{left:203.760000pt;}
.x17_c00415{left:209.040000pt;}
.x3f_c00415{left:213.360000pt;}
.x27_c00415{left:214.800000pt;}
.x77_c00415{left:218.160000pt;}
.xd_c00415{left:222.000000pt;}
.x5b_c00415{left:224.880000pt;}
.x67_c00415{left:227.520000pt;}
.x34_c00415{left:228.480000pt;}
.x22_c00415{left:229.680000pt;}
.x6f_c00415{left:231.120000pt;}
.x49_c00415{left:240.000000pt;}
.x98_c00415{left:242.160000pt;}
.x2f_c00415{left:243.120000pt;}
.x5c_c00415{left:245.520000pt;}
.xe_c00415{left:250.320000pt;}
.x28_c00415{left:251.520000pt;}
.x35_c00415{left:252.960000pt;}
.x43_c00415{left:257.040000pt;}
.x4a_c00415{left:258.720000pt;}
.x70_c00415{left:260.160000pt;}
.x83_c00415{left:261.360000pt;}
.x5e_c00415{left:265.920000pt;}
.x15_c00415{left:266.880000pt;}
.x29_c00415{left:268.800000pt;}
.x7d_c00415{left:270.240000pt;}
.x60_c00415{left:272.160000pt;}
.x40_c00415{left:275.040000pt;}
.x55_c00415{left:276.480000pt;}
.x6_c00415{left:278.400000pt;}
.x71_c00415{left:283.440000pt;}
.x84_c00415{left:284.640000pt;}
.x4e_c00415{left:287.520000pt;}
.x47_c00415{left:290.400000pt;}
.x7e_c00415{left:291.840000pt;}
.xf_c00415{left:294.000000pt;}
.x78_c00415{left:294.960000pt;}
.x36_c00415{left:296.400000pt;}
.x18_c00415{left:297.360000pt;}
.x3b_c00415{left:299.040000pt;}
.x68_c00415{left:301.200000pt;}
.x99_c00415{left:303.120000pt;}
.x30_c00415{left:304.080000pt;}
.x61_c00415{left:306.720000pt;}
.x44_c00415{left:308.160000pt;}
.x10_c00415{left:309.840000pt;}
.x1d_c00415{left:313.440000pt;}
.x2a_c00415{left:314.640000pt;}
.x37_c00415{left:318.960000pt;}
.x56_c00415{left:320.160000pt;}
.x7_c00415{left:322.080000pt;}
.x31_c00415{left:323.280000pt;}
.x23_c00415{left:325.200000pt;}
.x19_c00415{left:326.160000pt;}
.x7f_c00415{left:327.600000pt;}
.x62_c00415{left:331.680000pt;}
.x4b_c00415{left:333.120000pt;}
.x1e_c00415{left:335.760000pt;}
.x8_c00415{left:337.920000pt;}
.x2b_c00415{left:338.880000pt;}
.x69_c00415{left:340.800000pt;}
.x57_c00415{left:344.640000pt;}
.x9a_c00415{left:346.800000pt;}
.x11_c00415{left:348.000000pt;}
.x4f_c00415{left:350.160000pt;}
.x41_c00415{left:352.080000pt;}
.x79_c00415{left:353.040000pt;}
.x8c_c00415{left:356.400000pt;}
.x3c_c00415{left:357.840000pt;}
.x2c_c00415{left:360.000000pt;}
.x45_c00415{left:365.760000pt;}
.xa0_c00415{left:367.440000pt;}
.x9_c00415{left:369.120000pt;}
.x89_c00415{left:371.520000pt;}
.x24_c00415{left:372.720000pt;}
.x4c_c00415{left:375.360000pt;}
.x72_c00415{left:378.480000pt;}
.x12_c00415{left:379.440000pt;}
.x6a_c00415{left:383.760000pt;}
.x32_c00415{left:384.960000pt;}
.x7a_c00415{left:390.960000pt;}
.x3d_c00415{left:391.920000pt;}
.x58_c00415{left:393.600000pt;}
.x63_c00415{left:395.760000pt;}
.x38_c00415{left:399.120000pt;}
.xa_c00415{left:401.520000pt;}
.x1a_c00415{left:402.480000pt;}
.x8d_c00415{left:403.440000pt;}
.x50_c00415{left:405.840000pt;}
.x25_c00415{left:407.280000pt;}
.x73_c00415{left:412.080000pt;}
.x2d_c00415{left:413.280000pt;}
.x6c_c00415{left:414.720000pt;}
.x64_c00415{left:415.920000pt;}
.x13_c00415{left:417.840000pt;}
.x51_c00415{left:423.120000pt;}
.xa1_c00415{left:425.040000pt;}
.x1b_c00415{left:426.240000pt;}
.x59_c00415{left:428.640000pt;}
.x9b_c00415{left:431.040000pt;}
.x85_c00415{left:438.960000pt;}
.x5a_c00415{left:442.800000pt;}
.x8e_c00415{left:445.680000pt;}
.x9c_c00415{left:447.120000pt;}
.x1c_c00415{left:450.000000pt;}
.xa2_c00415{left:451.680000pt;}
.x39_c00415{left:454.320000pt;}
.x74_c00415{left:459.360000pt;}
.x65_c00415{left:461.520000pt;}
.x6d_c00415{left:466.800000pt;}
.x9d_c00415{left:475.680000pt;}
.x8a_c00415{left:478.320000pt;}
.x52_c00415{left:497.280000pt;}
.x9e_c00415{left:501.360000pt;}
.x8f_c00415{left:502.800000pt;}
.x53_c00415{left:506.880000pt;}
.xa3_c00415{left:510.960000pt;}
.x9f_c00415{left:528.000000pt;}
.x90_c00415{left:543.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.me8_c00416{transform:matrix(0.017829,-0.000214,0.003000,0.249982,0,0);-ms-transform:matrix(0.017829,-0.000214,0.003000,0.249982,0,0);-webkit-transform:matrix(0.017829,-0.000214,0.003000,0.249982,0,0);}
.mde_c00416{transform:matrix(0.030073,-0.000361,0.003000,0.249982,0,0);-ms-transform:matrix(0.030073,-0.000361,0.003000,0.249982,0,0);-webkit-transform:matrix(0.030073,-0.000361,0.003000,0.249982,0,0);}
.m128_c00416{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);}
.m12a_c00416{transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);}
.mea_c00416{transform:matrix(0.069930,-0.000839,0.003000,0.249982,0,0);-ms-transform:matrix(0.069930,-0.000839,0.003000,0.249982,0,0);-webkit-transform:matrix(0.069930,-0.000839,0.003000,0.249982,0,0);}
.m10_c00416{transform:matrix(0.071155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071155,0.000000,0.000000,0.250000,0,0);}
.m120_c00416{transform:matrix(0.071445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071445,0.000000,0.000000,0.250000,0,0);}
.m111_c00416{transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);}
.mca_c00416{transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);}
.me1_c00416{transform:matrix(0.140290,-0.001683,0.003000,0.249982,0,0);-ms-transform:matrix(0.140290,-0.001683,0.003000,0.249982,0,0);-webkit-transform:matrix(0.140290,-0.001683,0.003000,0.249982,0,0);}
.m72_c00416{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);}
.md0_c00416{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);}
.ma4_c00416{transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145840,0.000000,0.000000,0.250000,0,0);}
.mb4_c00416{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);}
.m7f_c00416{transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{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);}
.m61_c00416{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);}
.m9e_c00416{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);}
.m20_c00416{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);}
.mdd_c00416{transform:matrix(0.150099,-0.001801,0.003000,0.249982,0,0);-ms-transform:matrix(0.150099,-0.001801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150099,-0.001801,0.003000,0.249982,0,0);}
.m5c_c00416{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);}
.mdc_c00416{transform:matrix(0.150994,-0.001812,0.003000,0.249982,0,0);-ms-transform:matrix(0.150994,-0.001812,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150994,-0.001812,0.003000,0.249982,0,0);}
.m47_c00416{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);}
.mbb_c00416{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);}
.ma7_c00416{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);}
.m7_c00416{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);}
.m6f_c00416{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);}
.m85_c00416{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{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);}
.ma0_c00416{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);}
.ma9_c00416{transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157370,0.000000,0.000000,0.250000,0,0);}
.me2_c00416{transform:matrix(0.157514,-0.001890,0.003000,0.249982,0,0);-ms-transform:matrix(0.157514,-0.001890,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157514,-0.001890,0.003000,0.249982,0,0);}
.m12b_c00416{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);}
.m86_c00416{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);}
.m84_c00416{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{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);}
.md_c00416{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);}
.mb2_c00416{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);}
.m6c_c00416{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.mbf_c00416{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);}
.m12_c00416{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);}
.m51_c00416{transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162415,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{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);}
.mcf_c00416{transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163305,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{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);}
.mc9_c00416{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);}
.m80_c00416{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);}
.mc2_c00416{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{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);}
.m15_c00416{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);}
.m114_c00416{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);}
.mc7_c00416{transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{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);}
.m9d_c00416{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);}
.m6e_c00416{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);}
.m17_c00416{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);}
.m30_c00416{transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171505,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{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);}
.m1b_c00416{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);}
.m74_c00416{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);}
.m5f_c00416{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);}
.mb3_c00416{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);}
.m38_c00416{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);}
.mcc_c00416{transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173105,0.000000,0.000000,0.250000,0,0);}
.m105_c00416{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);}
.m13_c00416{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);}
.mcb_c00416{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);}
.m9c_c00416{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);}
.mc0_c00416{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);}
.m5d_c00416{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);}
.m108_c00416{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);}
.m1c_c00416{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);}
.md3_c00416{transform:matrix(0.175172,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175172,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175172,-0.002102,0.003000,0.249982,0,0);}
.m32_c00416{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);}
.mc3_c00416{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);}
.m3d_c00416{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);}
.m113_c00416{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);}
.m14_c00416{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);}
.mdf_c00416{transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);-ms-transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177572,-0.002131,0.003000,0.249982,0,0);}
.m60_c00416{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);}
.m7d_c00416{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);}
.m8d_c00416{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);}
.m7c_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);}
.m126_c00416{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);}
.m11b_c00416{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);}
.m5e_c00416{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);}
.mbd_c00416{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);}
.m6_c00416{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);}
.mac_c00416{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);}
.m3e_c00416{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);}
.m11c_c00416{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);}
.m96_c00416{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);}
.mda_c00416{transform:matrix(0.181802,-0.002182,0.003000,0.249982,0,0);-ms-transform:matrix(0.181802,-0.002182,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181802,-0.002182,0.003000,0.249982,0,0);}
.mb1_c00416{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);}
.m35_c00416{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);}
.m10d_c00416{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);}
.m5a_c00416{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);}
.ma8_c00416{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);}
.mf0_c00416{transform:matrix(0.183977,-0.002208,0.003000,0.249982,0,0);-ms-transform:matrix(0.183977,-0.002208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183977,-0.002208,0.003000,0.249982,0,0);}
.mbc_c00416{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{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);}
.m2c_c00416{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);}
.m9b_c00416{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);}
.md1_c00416{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);}
.m34_c00416{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);}
.m59_c00416{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);}
.mba_c00416{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);}
.m107_c00416{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);}
.m11_c00416{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);}
.mdb_c00416{transform:matrix(0.187197,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187197,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187197,-0.002246,0.003000,0.249982,0,0);}
.mb0_c00416{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);}
.m31_c00416{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);}
.mc5_c00416{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);}
.m50_c00416{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);}
.mc8_c00416{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);}
.m71_c00416{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);}
.ma1_c00416{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);}
.mb8_c00416{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);}
.m77_c00416{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);}
.m83_c00416{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);}
.m48_c00416{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);}
.m65_c00416{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);}
.m4f_c00416{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);}
.m16_c00416{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);}
.mce_c00416{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);}
.m70_c00416{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);}
.mee_c00416{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);}
.mc4_c00416{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);}
.med_c00416{transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);-ms-transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192366,-0.002308,0.003000,0.249982,0,0);}
.m8f_c00416{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);}
.me_c00416{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);}
.m3c_c00416{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);}
.m18_c00416{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);}
.m57_c00416{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);}
.m10c_c00416{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);}
.m26_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);}
.m75_c00416{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);}
.m78_c00416{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);}
.m1_c00416{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);}
.md6_c00416{transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);}
.m88_c00416{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);}
.m11e_c00416{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);}
.mb5_c00416{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);}
.m2_c00416{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);}
.me0_c00416{transform:matrix(0.197711,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197711,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197711,-0.002373,0.003000,0.249982,0,0);}
.me7_c00416{transform:matrix(0.198496,-0.002382,0.003000,0.249982,0,0);-ms-transform:matrix(0.198496,-0.002382,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198496,-0.002382,0.003000,0.249982,0,0);}
.mf5_c00416{transform:matrix(0.198586,-0.002383,0.003000,0.249982,0,0);-ms-transform:matrix(0.198586,-0.002383,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198586,-0.002383,0.003000,0.249982,0,0);}
.mae_c00416{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);}
.m55_c00416{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);}
.m7a_c00416{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);}
.m42_c00416{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);}
.mb9_c00416{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);}
.m125_c00416{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);}
.me3_c00416{transform:matrix(0.199141,-0.002390,0.003000,0.249982,0,0);-ms-transform:matrix(0.199141,-0.002390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199141,-0.002390,0.003000,0.249982,0,0);}
.m6d_c00416{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);}
.mc_c00416{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);}
.m68_c00416{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);}
.m7b_c00416{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);}
.m100_c00416{transform:matrix(0.201610,-0.002419,0.003000,0.249982,0,0);-ms-transform:matrix(0.201610,-0.002419,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201610,-0.002419,0.003000,0.249982,0,0);}
.m44_c00416{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);}
.m27_c00416{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);}
.m54_c00416{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);}
.mb6_c00416{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);}
.ma5_c00416{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);}
.m9a_c00416{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);}
.m52_c00416{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);}
.m4d_c00416{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);}
.m9f_c00416{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);}
.m8e_c00416{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);}
.m58_c00416{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);}
.m67_c00416{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);}
.m1f_c00416{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);}
.ma_c00416{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{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);}
.m4_c00416{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);}
.mec_c00416{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);}
.m110_c00416{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);}
.m8_c00416{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);}
.m56_c00416{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);}
.m66_c00416{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_c00416{transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{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);}
.md4_c00416{transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);-ms-transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);}
.meb_c00416{transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207575,-0.002491,0.003000,0.249982,0,0);}
.m123_c00416{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{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);}
.m2d_c00416{transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208695,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{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);}
.m81_c00416{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);}
.m1d_c00416{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);}
.m10b_c00416{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);}
.mb7_c00416{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);}
.mf1_c00416{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);}
.m7e_c00416{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);}
.m24_c00416{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);}
.m45_c00416{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);}
.ma6_c00416{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);}
.mf4_c00416{transform:matrix(0.212230,-0.002547,0.003000,0.249982,0,0);-ms-transform:matrix(0.212230,-0.002547,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212230,-0.002547,0.003000,0.249982,0,0);}
.m62_c00416{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);}
.ma3_c00416{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_c00416{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);}
.me5_c00416{transform:matrix(0.214365,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214365,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214365,-0.002572,0.003000,0.249982,0,0);}
.mfe_c00416{transform:matrix(0.214630,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214630,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214630,-0.002576,0.003000,0.249982,0,0);}
.m6b_c00416{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);}
.m69_c00416{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);}
.mc1_c00416{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);}
.mef_c00416{transform:matrix(0.216269,-0.002595,0.003000,0.249982,0,0);-ms-transform:matrix(0.216269,-0.002595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216269,-0.002595,0.003000,0.249982,0,0);}
.mf_c00416{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);}
.mbe_c00416{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);}
.m22_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);}
.m3_c00416{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);}
.m115_c00416{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);}
.m11f_c00416{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);}
.mfc_c00416{transform:matrix(0.220149,-0.002642,0.003000,0.249982,0,0);-ms-transform:matrix(0.220149,-0.002642,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220149,-0.002642,0.003000,0.249982,0,0);}
.md2_c00416{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);}
.m25_c00416{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);}
.m3b_c00416{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);}
.m0_c00416{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{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);}
.m2e_c00416{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);}
.m11d_c00416{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);}
.m11a_c00416{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);}
.m1e_c00416{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);}
.mc6_c00416{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);}
.m64_c00416{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);}
.m92_c00416{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.mfb_c00416{transform:matrix(0.225514,-0.002706,0.003000,0.249982,0,0);-ms-transform:matrix(0.225514,-0.002706,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225514,-0.002706,0.003000,0.249982,0,0);}
.m76_c00416{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);}
.m39_c00416{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);}
.m33_c00416{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);}
.mcd_c00416{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);}
.m116_c00416{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);}
.m29_c00416{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);}
.maa_c00416{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);}
.ma2_c00416{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{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);}
.m112_c00416{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);}
.m79_c00416{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);}
.m21_c00416{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);}
.m53_c00416{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);}
.mf6_c00416{transform:matrix(0.237803,-0.002854,0.003000,0.249982,0,0);-ms-transform:matrix(0.237803,-0.002854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237803,-0.002854,0.003000,0.249982,0,0);}
.m1a_c00416{transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);}
.mf8_c00416{transform:matrix(0.239403,-0.002873,0.003000,0.249982,0,0);-ms-transform:matrix(0.239403,-0.002873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239403,-0.002873,0.003000,0.249982,0,0);}
.m6a_c00416{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);}
.m43_c00416{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);}
.m5_c00416{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);}
.m40_c00416{transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);}
.m10e_c00416{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{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);}
.m95_c00416{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);}
.m4b_c00416{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);}
.m106_c00416{transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);}
.mf3_c00416{transform:matrix(0.255877,-0.003071,0.003000,0.249982,0,0);-ms-transform:matrix(0.255877,-0.003071,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255877,-0.003071,0.003000,0.249982,0,0);}
.m28_c00416{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.me4_c00416{transform:matrix(0.257411,-0.003089,0.003000,0.249982,0,0);-ms-transform:matrix(0.257411,-0.003089,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257411,-0.003089,0.003000,0.249982,0,0);}
.m46_c00416{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);}
.m10f_c00416{transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261785,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);}
.m12c_c00416{transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267710,0.000000,0.000000,0.250000,0,0);}
.me9_c00416{transform:matrix(0.275585,-0.003307,0.003000,0.249982,0,0);-ms-transform:matrix(0.275585,-0.003307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275585,-0.003307,0.003000,0.249982,0,0);}
.md8_c00416{transform:matrix(0.278640,-0.003344,0.003000,0.249982,0,0);-ms-transform:matrix(0.278640,-0.003344,0.003000,0.249982,0,0);-webkit-transform:matrix(0.278640,-0.003344,0.003000,0.249982,0,0);}
.m8c_c00416{transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);}
.m109_c00416{transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);}
.m101_c00416{transform:matrix(0.288324,-0.003460,0.003000,0.249982,0,0);-ms-transform:matrix(0.288324,-0.003460,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288324,-0.003460,0.003000,0.249982,0,0);}
.mf9_c00416{transform:matrix(0.291824,-0.003502,0.003000,0.249982,0,0);-ms-transform:matrix(0.291824,-0.003502,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291824,-0.003502,0.003000,0.249982,0,0);}
.m117_c00416{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m103_c00416{transform:matrix(0.310990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310990,0.000000,0.000000,0.250000,0,0);}
.mf7_c00416{transform:matrix(0.312537,-0.003750,0.003000,0.249982,0,0);-ms-transform:matrix(0.312537,-0.003750,0.003000,0.249982,0,0);-webkit-transform:matrix(0.312537,-0.003750,0.003000,0.249982,0,0);}
.md9_c00416{transform:matrix(0.321277,-0.003855,0.003000,0.249982,0,0);-ms-transform:matrix(0.321277,-0.003855,0.003000,0.249982,0,0);-webkit-transform:matrix(0.321277,-0.003855,0.003000,0.249982,0,0);}
.m121_c00416{transform:matrix(0.324265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324265,0.000000,0.000000,0.250000,0,0);}
.mff_c00416{transform:matrix(0.325337,-0.003904,0.003000,0.249982,0,0);-ms-transform:matrix(0.325337,-0.003904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.325337,-0.003904,0.003000,0.249982,0,0);}
.m102_c00416{transform:matrix(0.333741,-0.004005,0.003000,0.249982,0,0);-ms-transform:matrix(0.333741,-0.004005,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333741,-0.004005,0.003000,0.249982,0,0);}
.m23_c00416{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);}
.m8b_c00416{transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);}
.m10a_c00416{transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339480,0.000000,0.000000,0.250000,0,0);}
.md5_c00416{transform:matrix(0.346985,-0.004164,0.003000,0.249982,0,0);-ms-transform:matrix(0.346985,-0.004164,0.003000,0.249982,0,0);-webkit-transform:matrix(0.346985,-0.004164,0.003000,0.249982,0,0);}
.me6_c00416{transform:matrix(0.360279,-0.004323,0.003000,0.249982,0,0);-ms-transform:matrix(0.360279,-0.004323,0.003000,0.249982,0,0);-webkit-transform:matrix(0.360279,-0.004323,0.003000,0.249982,0,0);}
.mfd_c00416{transform:matrix(0.364869,-0.004378,0.003000,0.249982,0,0);-ms-transform:matrix(0.364869,-0.004378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.364869,-0.004378,0.003000,0.249982,0,0);}
.m41_c00416{transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);}
.md7_c00416{transform:matrix(0.376668,-0.004520,0.003000,0.249982,0,0);-ms-transform:matrix(0.376668,-0.004520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.376668,-0.004520,0.003000,0.249982,0,0);}
.m129_c00416{transform:matrix(0.402390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402390,0.000000,0.000000,0.250000,0,0);}
.m124_c00416{transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406500,0.000000,0.000000,0.250000,0,0);}
.m119_c00416{transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);}
.m104_c00416{transform:matrix(0.415040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415040,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.417825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417825,0.000000,0.000000,0.250000,0,0);}
.mf2_c00416{transform:matrix(0.423759,-0.005085,0.003000,0.249982,0,0);-ms-transform:matrix(0.423759,-0.005085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.423759,-0.005085,0.003000,0.249982,0,0);}
.m36_c00416{transform:matrix(0.460040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460040,0.000000,0.000000,0.250000,0,0);}
.mfa_c00416{transform:matrix(0.469001,-0.005628,0.003000,0.249982,0,0);-ms-transform:matrix(0.469001,-0.005628,0.003000,0.249982,0,0);-webkit-transform:matrix(0.469001,-0.005628,0.003000,0.249982,0,0);}
.m4a_c00416{transform:matrix(0.483580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483580,0.000000,0.000000,0.250000,0,0);}
.m97_c00416{transform:matrix(0.489560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489560,0.000000,0.000000,0.250000,0,0);}
.m122_c00416{transform:matrix(0.496090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496090,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.525950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525950,0.000000,0.000000,0.250000,0,0);}
.m118_c00416{transform:matrix(0.551990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551990,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.629515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629515,0.000000,0.000000,0.250000,0,0);}
.m127_c00416{transform:matrix(0.630280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630280,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.642615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642615,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(1.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.222990,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;}
.fs11_c00416{font-size:19.950000px;}
.fsc_c00416{font-size:22.050000px;}
.fs12_c00416{font-size:49.350000px;}
.fsf_c00416{font-size:50.400000px;}
.fs10_c00416{font-size:52.500000px;}
.fse_c00416{font-size:54.603931px;}
.fsd_c00416{font-size:59.854309px;}
.fs7_c00416{font-size:60.900000px;}
.fsa_c00416{font-size:61.950000px;}
.fsb_c00416{font-size:64.050000px;}
.fs0_c00416{font-size:67.200000px;}
.fs6_c00416{font-size:68.250000px;}
.fs3_c00416{font-size:69.300000px;}
.fs5_c00416{font-size:70.350000px;}
.fs4_c00416{font-size:71.400000px;}
.fs8_c00416{font-size:72.450000px;}
.fs9_c00416{font-size:73.500000px;}
.fs1_c00416{font-size:74.550000px;}
.fs2_c00416{font-size:75.600000px;}
.y0_c00416{bottom:0.000000px;}
.y5d_c00416{bottom:83.565000px;}
.y5c_c00416{bottom:139.039500px;}
.y4c_c00416{bottom:145.611000px;}
.y4d_c00416{bottom:145.711500px;}
.y4e_c00416{bottom:145.981500px;}
.y4f_c00416{bottom:146.041500px;}
.y50_c00416{bottom:146.125500px;}
.y51_c00416{bottom:146.341500px;}
.y52_c00416{bottom:146.490000px;}
.y53_c00416{bottom:146.865000px;}
.y54_c00416{bottom:147.259500px;}
.y55_c00416{bottom:147.352500px;}
.y56_c00416{bottom:147.579000px;}
.y57_c00416{bottom:147.765000px;}
.y58_c00416{bottom:147.933000px;}
.y59_c00416{bottom:148.093500px;}
.y5a_c00416{bottom:148.177500px;}
.y5b_c00416{bottom:148.425000px;}
.y4b_c00416{bottom:167.146500px;}
.y3a_c00416{bottom:179.549376px;}
.y3b_c00416{bottom:180.057294px;}
.y3c_c00416{bottom:180.225960px;}
.y3d_c00416{bottom:180.342546px;}
.y3e_c00416{bottom:180.563454px;}
.y3f_c00416{bottom:180.695544px;}
.y40_c00416{bottom:180.853050px;}
.y41_c00416{bottom:181.094106px;}
.y42_c00416{bottom:181.224366px;}
.y43_c00416{bottom:181.521834px;}
.y44_c00416{bottom:181.606014px;}
.y45_c00416{bottom:181.845996px;}
.y46_c00416{bottom:181.967202px;}
.y47_c00416{bottom:182.412624px;}
.y48_c00416{bottom:182.514156px;}
.y49_c00416{bottom:183.064248px;}
.y4a_c00416{bottom:183.071076px;}
.y2e_c00416{bottom:194.130300px;}
.y2f_c00416{bottom:194.808192px;}
.y30_c00416{bottom:195.384642px;}
.y31_c00416{bottom:196.086210px;}
.y32_c00416{bottom:197.837790px;}
.y33_c00416{bottom:198.090552px;}
.y34_c00416{bottom:198.336834px;}
.y35_c00416{bottom:198.845220px;}
.y36_c00416{bottom:199.329894px;}
.y37_c00416{bottom:199.738422px;}
.y38_c00416{bottom:200.128080px;}
.y39_c00416{bottom:200.865174px;}
.y1b_c00416{bottom:213.571500px;}
.y1c_c00416{bottom:214.039194px;}
.y1d_c00416{bottom:214.505340px;}
.y1e_c00416{bottom:215.078082px;}
.y1f_c00416{bottom:215.275398px;}
.y20_c00416{bottom:215.528406px;}
.y21_c00416{bottom:215.709954px;}
.y22_c00416{bottom:215.868858px;}
.y23_c00416{bottom:215.959812px;}
.y24_c00416{bottom:216.357882px;}
.y25_c00416{bottom:216.529620px;}
.y26_c00416{bottom:216.885138px;}
.y27_c00416{bottom:217.080528px;}
.y28_c00416{bottom:217.416768px;}
.y29_c00416{bottom:217.556592px;}
.y2a_c00416{bottom:217.951692px;}
.y2b_c00416{bottom:218.220936px;}
.y2c_c00416{bottom:218.844330px;}
.y2d_c00416{bottom:219.504930px;}
.y19_c00416{bottom:269.088000px;}
.y18_c00416{bottom:291.600000px;}
.y17_c00416{bottom:314.980500px;}
.y16_c00416{bottom:337.717500px;}
.y15_c00416{bottom:360.618000px;}
.y14_c00416{bottom:383.301000px;}
.y13_c00416{bottom:405.991500px;}
.y12_c00416{bottom:433.134000px;}
.y11_c00416{bottom:452.076000px;}
.y10_c00416{bottom:475.531500px;}
.yf_c00416{bottom:497.605500px;}
.ye_c00416{bottom:520.710000px;}
.yd_c00416{bottom:543.165000px;}
.yc_c00416{bottom:566.004000px;}
.yb_c00416{bottom:588.274500px;}
.ya_c00416{bottom:611.734500px;}
.y9_c00416{bottom:633.447000px;}
.y8_c00416{bottom:655.740000px;}
.y7_c00416{bottom:679.320000px;}
.y6_c00416{bottom:700.851000px;}
.y5_c00416{bottom:724.542000px;}
.y1a_c00416{bottom:740.070000px;}
.y4_c00416{bottom:747.009000px;}
.y3_c00416{bottom:769.275000px;}
.y2_c00416{bottom:793.201500px;}
.y1_c00416{bottom:815.584500px;}
.h13_c00416{height:19.950000px;}
.he_c00416{height:22.050000px;}
.h14_c00416{height:49.350000px;}
.h11_c00416{height:50.400000px;}
.h12_c00416{height:52.500000px;}
.h10_c00416{height:54.603931px;}
.hf_c00416{height:59.854309px;}
.h9_c00416{height:60.900000px;}
.hc_c00416{height:61.950000px;}
.hd_c00416{height:64.050000px;}
.h2_c00416{height:67.200000px;}
.h8_c00416{height:68.250000px;}
.h5_c00416{height:69.300000px;}
.h7_c00416{height:70.350000px;}
.h6_c00416{height:71.400000px;}
.ha_c00416{height:72.450000px;}
.hb_c00416{height:73.500000px;}
.h3_c00416{height:74.550000px;}
.h4_c00416{height:75.600000px;}
.h1_c00416{height:1005.000000px;}
.h0_c00416{height:1005.150000px;}
.w0_c00416{width:715.200000px;}
.w1_c00416{width:715.500000px;}
.x0_c00416{left:0.000000px;}
.x9b_c00416{left:43.200000px;}
.x8c_c00416{left:44.757480px;}
.x9c_c00416{left:50.760000px;}
.xb1_c00416{left:55.078500px;}
.x84_c00416{left:57.126000px;}
.xaa_c00416{left:74.317500px;}
.xb2_c00416{left:76.678500px;}
.x9d_c00416{left:93.420000px;}
.x85_c00416{left:96.100500px;}
.x93_c00416{left:109.185108px;}
.xab_c00416{left:119.401500px;}
.x9e_c00416{left:123.390000px;}
.x74_c00416{left:124.740000px;}
.x40_c00416{left:128.250000px;}
.xac_c00416{left:129.387000px;}
.x79_c00416{left:131.220000px;}
.x38_c00416{left:132.300000px;}
.x11_c00416{left:133.380000px;}
.x1_c00416{left:134.730000px;}
.x8d_c00416{left:141.159810px;}
.xad_c00416{left:143.433000px;}
.x94_c00416{left:144.832818px;}
.x9f_c00416{left:149.040000px;}
.x62_c00416{left:150.120000px;}
.x63_c00416{left:154.170000px;}
.x39_c00416{left:157.410000px;}
.x29_c00416{left:158.490000px;}
.x12_c00416{left:159.570000px;}
.x22_c00416{left:161.460000px;}
.x4b_c00416{left:163.080000px;}
.x1a_c00416{left:164.700000px;}
.x2f_c00416{left:170.910000px;}
.x45_c00416{left:171.990000px;}
.xa0_c00416{left:174.690000px;}
.x5d_c00416{left:177.660000px;}
.x7c_c00416{left:179.280000px;}
.x3a_c00416{left:183.600000px;}
.x2_c00416{left:184.950000px;}
.x95_c00416{left:188.876424px;}
.x13_c00416{left:190.620000px;}
.x4c_c00416{left:191.970000px;}
.x50_c00416{left:193.590000px;}
.x8e_c00416{left:195.123162px;}
.x9_c00416{left:196.560000px;}
.x7a_c00416{left:199.800000px;}
.x58_c00416{left:201.150000px;}
.x23_c00416{left:204.930000px;}
.x1b_c00416{left:206.280000px;}
.x3_c00416{left:208.980000px;}
.x41_c00416{left:211.140000px;}
.x46_c00416{left:212.220000px;}
.x64_c00416{left:213.840000px;}
.x14_c00416{left:217.080000px;}
.x53_c00416{left:220.320000px;}
.x69_c00416{left:223.020000px;}
.xa_c00416{left:226.800000px;}
.xa1_c00416{left:228.690000px;}
.x30_c00416{left:230.310000px;}
.x3b_c00416{left:232.470000px;}
.x1c_c00416{left:234.090000px;}
.x75_c00416{left:235.170000px;}
.x59_c00416{left:236.250000px;}
.x7d_c00416{left:239.490000px;}
.xa2_c00416{left:240.570000px;}
.xb_c00416{left:244.620000px;}
.x5e_c00416{left:248.940000px;}
.x4_c00416{left:252.180000px;}
.x47_c00416{left:254.070000px;}
.x96_c00416{left:255.073110px;}
.x86_c00416{left:256.152000px;}
.x3c_c00416{left:257.580000px;}
.x15_c00416{left:259.470000px;}
.x42_c00416{left:260.550000px;}
.x31_c00416{left:262.980000px;}
.x54_c00416{left:264.330000px;}
.xae_c00416{left:266.565000px;}
.x68_c00416{left:267.840000px;}
.x6c_c00416{left:268.920000px;}
.x7e_c00416{left:273.240000px;}
.x72_c00416{left:275.670000px;}
.x5a_c00416{left:279.990000px;}
.xc_c00416{left:281.340000px;}
.x24_c00416{left:284.310000px;}
.x76_c00416{left:286.470000px;}
.x2e_c00416{left:289.980000px;}
.x97_c00416{left:292.238892px;}
.x48_c00416{left:293.490000px;}
.x7b_c00416{left:294.570000px;}
.x32_c00416{left:296.190000px;}
.xa3_c00416{left:298.890000px;}
.x5f_c00416{left:301.860000px;}
.x1d_c00416{left:304.020000px;}
.x6a_c00416{left:305.100000px;}
.x55_c00416{left:307.260000px;}
.x6d_c00416{left:309.150000px;}
.x82_c00416{left:311.040000px;}
.x43_c00416{left:312.120000px;}
.x16_c00416{left:313.740000px;}
.x77_c00416{left:318.600000px;}
.x5_c00416{left:319.950000px;}
.x25_c00416{left:324.810000px;}
.x6e_c00416{left:326.700000px;}
.x3d_c00416{left:327.780000px;}
.x8f_c00416{left:329.836542px;}
.x1e_c00416{left:331.290000px;}
.x87_c00416{left:333.262500px;}
.x51_c00416{left:335.070000px;}
.x4d_c00416{left:336.420000px;}
.x5b_c00416{left:338.040000px;}
.x78_c00416{left:339.120000px;}
.x65_c00416{left:340.200000px;}
.x33_c00416{left:342.360000px;}
.x98_c00416{left:347.855556px;}
.xd_c00416{left:349.650000px;}
.x7f_c00416{left:353.700000px;}
.x6f_c00416{left:357.480000px;}
.x4e_c00416{left:358.560000px;}
.x2a_c00416{left:359.640000px;}
.x66_c00416{left:361.530000px;}
.x34_c00416{left:363.420000px;}
.x26_c00416{left:365.040000px;}
.x6_c00416{left:367.200000px;}
.x56_c00416{left:370.710000px;}
.xe_c00416{left:374.760000px;}
.x60_c00416{left:375.840000px;}
.x88_c00416{left:377.565000px;}
.x67_c00416{left:385.020000px;}
.x17_c00416{left:386.910000px;}
.x4f_c00416{left:388.800000px;}
.x2b_c00416{left:391.500000px;}
.x1f_c00416{left:393.120000px;}
.x52_c00416{left:396.090000px;}
.x70_c00416{left:397.440000px;}
.x27_c00416{left:400.680000px;}
.x35_c00416{left:403.110000px;}
.x61_c00416{left:404.730000px;}
.x5c_c00416{left:407.700000px;}
.x6b_c00416{left:409.050000px;}
.x80_c00416{left:410.130000px;}
.x3e_c00416{left:411.210000px;}
.x7_c00416{left:412.830000px;}
.x18_c00416{left:414.720000px;}
.x99_c00416{left:416.188332px;}
.x20_c00416{left:419.580000px;}
.x28_c00416{left:422.280000px;}
.x71_c00416{left:425.790000px;}
.x73_c00416{left:430.110000px;}
.xa4_c00416{left:431.730000px;}
.xa5_c00416{left:432.810000px;}
.xf_c00416{left:436.320000px;}
.x44_c00416{left:439.290000px;}
.x3f_c00416{left:442.260000px;}
.x89_c00416{left:444.579000px;}
.x2c_c00416{left:450.090000px;}
.x36_c00416{left:451.710000px;}
.x19_c00416{left:454.950000px;}
.x57_c00416{left:456.300000px;}
.x49_c00416{left:463.860000px;}
.x81_c00416{left:465.480000px;}
.xaf_c00416{left:471.468000px;}
.x90_c00416{left:475.970778px;}
.x8_c00416{left:477.090000px;}
.x21_c00416{left:480.330000px;}
.xa6_c00416{left:481.410000px;}
.x9a_c00416{left:485.032644px;}
.xa7_c00416{left:492.210000px;}
.x2d_c00416{left:494.640000px;}
.x8a_c00416{left:496.528500px;}
.x4a_c00416{left:499.230000px;}
.x83_c00416{left:501.120000px;}
.x10_c00416{left:504.630000px;}
.x91_c00416{left:505.941918px;}
.x37_c00416{left:515.700000px;}
.xb0_c00416{left:526.837500px;}
.xa8_c00416{left:540.810000px;}
.x8b_c00416{left:551.578500px;}
.xa9_c00416{left:560.520000px;}
.x92_c00416{left:562.615734px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.fs11_c00416{font-size:17.733333pt;}
.fsc_c00416{font-size:19.600000pt;}
.fs12_c00416{font-size:43.866667pt;}
.fsf_c00416{font-size:44.800000pt;}
.fs10_c00416{font-size:46.666667pt;}
.fse_c00416{font-size:48.536828pt;}
.fsd_c00416{font-size:53.203830pt;}
.fs7_c00416{font-size:54.133333pt;}
.fsa_c00416{font-size:55.066667pt;}
.fsb_c00416{font-size:56.933333pt;}
.fs0_c00416{font-size:59.733333pt;}
.fs6_c00416{font-size:60.666667pt;}
.fs3_c00416{font-size:61.600000pt;}
.fs5_c00416{font-size:62.533333pt;}
.fs4_c00416{font-size:63.466667pt;}
.fs8_c00416{font-size:64.400000pt;}
.fs9_c00416{font-size:65.333333pt;}
.fs1_c00416{font-size:66.266667pt;}
.fs2_c00416{font-size:67.200000pt;}
.y0_c00416{bottom:0.000000pt;}
.y5d_c00416{bottom:74.280000pt;}
.y5c_c00416{bottom:123.590667pt;}
.y4c_c00416{bottom:129.432000pt;}
.y4d_c00416{bottom:129.521333pt;}
.y4e_c00416{bottom:129.761333pt;}
.y4f_c00416{bottom:129.814667pt;}
.y50_c00416{bottom:129.889333pt;}
.y51_c00416{bottom:130.081333pt;}
.y52_c00416{bottom:130.213333pt;}
.y53_c00416{bottom:130.546667pt;}
.y54_c00416{bottom:130.897333pt;}
.y55_c00416{bottom:130.980000pt;}
.y56_c00416{bottom:131.181333pt;}
.y57_c00416{bottom:131.346667pt;}
.y58_c00416{bottom:131.496000pt;}
.y59_c00416{bottom:131.638667pt;}
.y5a_c00416{bottom:131.713333pt;}
.y5b_c00416{bottom:131.933333pt;}
.y4b_c00416{bottom:148.574667pt;}
.y3a_c00416{bottom:159.599445pt;}
.y3b_c00416{bottom:160.050928pt;}
.y3c_c00416{bottom:160.200853pt;}
.y3d_c00416{bottom:160.304485pt;}
.y3e_c00416{bottom:160.500848pt;}
.y3f_c00416{bottom:160.618261pt;}
.y40_c00416{bottom:160.758267pt;}
.y41_c00416{bottom:160.972539pt;}
.y42_c00416{bottom:161.088325pt;}
.y43_c00416{bottom:161.352741pt;}
.y44_c00416{bottom:161.427568pt;}
.y45_c00416{bottom:161.640885pt;}
.y46_c00416{bottom:161.748624pt;}
.y47_c00416{bottom:162.144555pt;}
.y48_c00416{bottom:162.234805pt;}
.y49_c00416{bottom:162.723776pt;}
.y4a_c00416{bottom:162.729845pt;}
.y2e_c00416{bottom:172.560267pt;}
.y2f_c00416{bottom:173.162837pt;}
.y30_c00416{bottom:173.675237pt;}
.y31_c00416{bottom:174.298853pt;}
.y32_c00416{bottom:175.855813pt;}
.y33_c00416{bottom:176.080491pt;}
.y34_c00416{bottom:176.299408pt;}
.y35_c00416{bottom:176.751307pt;}
.y36_c00416{bottom:177.182128pt;}
.y37_c00416{bottom:177.545264pt;}
.y38_c00416{bottom:177.891627pt;}
.y39_c00416{bottom:178.546821pt;}
.y1b_c00416{bottom:189.841333pt;}
.y1c_c00416{bottom:190.257061pt;}
.y1d_c00416{bottom:190.671413pt;}
.y1e_c00416{bottom:191.180517pt;}
.y1f_c00416{bottom:191.355909pt;}
.y20_c00416{bottom:191.580805pt;}
.y21_c00416{bottom:191.742181pt;}
.y22_c00416{bottom:191.883429pt;}
.y23_c00416{bottom:191.964277pt;}
.y24_c00416{bottom:192.318117pt;}
.y25_c00416{bottom:192.470773pt;}
.y26_c00416{bottom:192.786789pt;}
.y27_c00416{bottom:192.960469pt;}
.y28_c00416{bottom:193.259349pt;}
.y29_c00416{bottom:193.383637pt;}
.y2a_c00416{bottom:193.734837pt;}
.y2b_c00416{bottom:193.974165pt;}
.y2c_c00416{bottom:194.528293pt;}
.y2d_c00416{bottom:195.115493pt;}
.y19_c00416{bottom:239.189333pt;}
.y18_c00416{bottom:259.200000pt;}
.y17_c00416{bottom:279.982667pt;}
.y16_c00416{bottom:300.193333pt;}
.y15_c00416{bottom:320.549333pt;}
.y14_c00416{bottom:340.712000pt;}
.y13_c00416{bottom:360.881333pt;}
.y12_c00416{bottom:385.008000pt;}
.y11_c00416{bottom:401.845333pt;}
.y10_c00416{bottom:422.694667pt;}
.yf_c00416{bottom:442.316000pt;}
.ye_c00416{bottom:462.853333pt;}
.yd_c00416{bottom:482.813333pt;}
.yc_c00416{bottom:503.114667pt;}
.yb_c00416{bottom:522.910667pt;}
.ya_c00416{bottom:543.764000pt;}
.y9_c00416{bottom:563.064000pt;}
.y8_c00416{bottom:582.880000pt;}
.y7_c00416{bottom:603.840000pt;}
.y6_c00416{bottom:622.978667pt;}
.y5_c00416{bottom:644.037333pt;}
.y1a_c00416{bottom:657.840000pt;}
.y4_c00416{bottom:664.008000pt;}
.y3_c00416{bottom:683.800000pt;}
.y2_c00416{bottom:705.068000pt;}
.y1_c00416{bottom:724.964000pt;}
.h13_c00416{height:17.733333pt;}
.he_c00416{height:19.600000pt;}
.h14_c00416{height:43.866667pt;}
.h11_c00416{height:44.800000pt;}
.h12_c00416{height:46.666667pt;}
.h10_c00416{height:48.536828pt;}
.hf_c00416{height:53.203830pt;}
.h9_c00416{height:54.133333pt;}
.hc_c00416{height:55.066667pt;}
.hd_c00416{height:56.933333pt;}
.h2_c00416{height:59.733333pt;}
.h8_c00416{height:60.666667pt;}
.h5_c00416{height:61.600000pt;}
.h7_c00416{height:62.533333pt;}
.h6_c00416{height:63.466667pt;}
.ha_c00416{height:64.400000pt;}
.hb_c00416{height:65.333333pt;}
.h3_c00416{height:66.266667pt;}
.h4_c00416{height:67.200000pt;}
.h1_c00416{height:893.333333pt;}
.h0_c00416{height:893.466667pt;}
.w0_c00416{width:635.733333pt;}
.w1_c00416{width:636.000000pt;}
.x0_c00416{left:0.000000pt;}
.x9b_c00416{left:38.400000pt;}
.x8c_c00416{left:39.784427pt;}
.x9c_c00416{left:45.120000pt;}
.xb1_c00416{left:48.958667pt;}
.x84_c00416{left:50.778667pt;}
.xaa_c00416{left:66.060000pt;}
.xb2_c00416{left:68.158667pt;}
.x9d_c00416{left:83.040000pt;}
.x85_c00416{left:85.422667pt;}
.x93_c00416{left:97.053429pt;}
.xab_c00416{left:106.134667pt;}
.x9e_c00416{left:109.680000pt;}
.x74_c00416{left:110.880000pt;}
.x40_c00416{left:114.000000pt;}
.xac_c00416{left:115.010667pt;}
.x79_c00416{left:116.640000pt;}
.x38_c00416{left:117.600000pt;}
.x11_c00416{left:118.560000pt;}
.x1_c00416{left:119.760000pt;}
.x8d_c00416{left:125.475387pt;}
.xad_c00416{left:127.496000pt;}
.x94_c00416{left:128.740283pt;}
.x9f_c00416{left:132.480000pt;}
.x62_c00416{left:133.440000pt;}
.x63_c00416{left:137.040000pt;}
.x39_c00416{left:139.920000pt;}
.x29_c00416{left:140.880000pt;}
.x12_c00416{left:141.840000pt;}
.x22_c00416{left:143.520000pt;}
.x4b_c00416{left:144.960000pt;}
.x1a_c00416{left:146.400000pt;}
.x2f_c00416{left:151.920000pt;}
.x45_c00416{left:152.880000pt;}
.xa0_c00416{left:155.280000pt;}
.x5d_c00416{left:157.920000pt;}
.x7c_c00416{left:159.360000pt;}
.x3a_c00416{left:163.200000pt;}
.x2_c00416{left:164.400000pt;}
.x95_c00416{left:167.890155pt;}
.x13_c00416{left:169.440000pt;}
.x4c_c00416{left:170.640000pt;}
.x50_c00416{left:172.080000pt;}
.x8e_c00416{left:173.442811pt;}
.x9_c00416{left:174.720000pt;}
.x7a_c00416{left:177.600000pt;}
.x58_c00416{left:178.800000pt;}
.x23_c00416{left:182.160000pt;}
.x1b_c00416{left:183.360000pt;}
.x3_c00416{left:185.760000pt;}
.x41_c00416{left:187.680000pt;}
.x46_c00416{left:188.640000pt;}
.x64_c00416{left:190.080000pt;}
.x14_c00416{left:192.960000pt;}
.x53_c00416{left:195.840000pt;}
.x69_c00416{left:198.240000pt;}
.xa_c00416{left:201.600000pt;}
.xa1_c00416{left:203.280000pt;}
.x30_c00416{left:204.720000pt;}
.x3b_c00416{left:206.640000pt;}
.x1c_c00416{left:208.080000pt;}
.x75_c00416{left:209.040000pt;}
.x59_c00416{left:210.000000pt;}
.x7d_c00416{left:212.880000pt;}
.xa2_c00416{left:213.840000pt;}
.xb_c00416{left:217.440000pt;}
.x5e_c00416{left:221.280000pt;}
.x4_c00416{left:224.160000pt;}
.x47_c00416{left:225.840000pt;}
.x96_c00416{left:226.731653pt;}
.x86_c00416{left:227.690667pt;}
.x3c_c00416{left:228.960000pt;}
.x15_c00416{left:230.640000pt;}
.x42_c00416{left:231.600000pt;}
.x31_c00416{left:233.760000pt;}
.x54_c00416{left:234.960000pt;}
.xae_c00416{left:236.946667pt;}
.x68_c00416{left:238.080000pt;}
.x6c_c00416{left:239.040000pt;}
.x7e_c00416{left:242.880000pt;}
.x72_c00416{left:245.040000pt;}
.x5a_c00416{left:248.880000pt;}
.xc_c00416{left:250.080000pt;}
.x24_c00416{left:252.720000pt;}
.x76_c00416{left:254.640000pt;}
.x2e_c00416{left:257.760000pt;}
.x97_c00416{left:259.767904pt;}
.x48_c00416{left:260.880000pt;}
.x7b_c00416{left:261.840000pt;}
.x32_c00416{left:263.280000pt;}
.xa3_c00416{left:265.680000pt;}
.x5f_c00416{left:268.320000pt;}
.x1d_c00416{left:270.240000pt;}
.x6a_c00416{left:271.200000pt;}
.x55_c00416{left:273.120000pt;}
.x6d_c00416{left:274.800000pt;}
.x82_c00416{left:276.480000pt;}
.x43_c00416{left:277.440000pt;}
.x16_c00416{left:278.880000pt;}
.x77_c00416{left:283.200000pt;}
.x5_c00416{left:284.400000pt;}
.x25_c00416{left:288.720000pt;}
.x6e_c00416{left:290.400000pt;}
.x3d_c00416{left:291.360000pt;}
.x8f_c00416{left:293.188037pt;}
.x1e_c00416{left:294.480000pt;}
.x87_c00416{left:296.233333pt;}
.x51_c00416{left:297.840000pt;}
.x4d_c00416{left:299.040000pt;}
.x5b_c00416{left:300.480000pt;}
.x78_c00416{left:301.440000pt;}
.x65_c00416{left:302.400000pt;}
.x33_c00416{left:304.320000pt;}
.x98_c00416{left:309.204939pt;}
.xd_c00416{left:310.800000pt;}
.x7f_c00416{left:314.400000pt;}
.x6f_c00416{left:317.760000pt;}
.x4e_c00416{left:318.720000pt;}
.x2a_c00416{left:319.680000pt;}
.x66_c00416{left:321.360000pt;}
.x34_c00416{left:323.040000pt;}
.x26_c00416{left:324.480000pt;}
.x6_c00416{left:326.400000pt;}
.x56_c00416{left:329.520000pt;}
.xe_c00416{left:333.120000pt;}
.x60_c00416{left:334.080000pt;}
.x88_c00416{left:335.613333pt;}
.x67_c00416{left:342.240000pt;}
.x17_c00416{left:343.920000pt;}
.x4f_c00416{left:345.600000pt;}
.x2b_c00416{left:348.000000pt;}
.x1f_c00416{left:349.440000pt;}
.x52_c00416{left:352.080000pt;}
.x70_c00416{left:353.280000pt;}
.x27_c00416{left:356.160000pt;}
.x35_c00416{left:358.320000pt;}
.x61_c00416{left:359.760000pt;}
.x5c_c00416{left:362.400000pt;}
.x6b_c00416{left:363.600000pt;}
.x80_c00416{left:364.560000pt;}
.x3e_c00416{left:365.520000pt;}
.x7_c00416{left:366.960000pt;}
.x18_c00416{left:368.640000pt;}
.x99_c00416{left:369.945184pt;}
.x20_c00416{left:372.960000pt;}
.x28_c00416{left:375.360000pt;}
.x71_c00416{left:378.480000pt;}
.x73_c00416{left:382.320000pt;}
.xa4_c00416{left:383.760000pt;}
.xa5_c00416{left:384.720000pt;}
.xf_c00416{left:387.840000pt;}
.x44_c00416{left:390.480000pt;}
.x3f_c00416{left:393.120000pt;}
.x89_c00416{left:395.181333pt;}
.x2c_c00416{left:400.080000pt;}
.x36_c00416{left:401.520000pt;}
.x19_c00416{left:404.400000pt;}
.x57_c00416{left:405.600000pt;}
.x49_c00416{left:412.320000pt;}
.x81_c00416{left:413.760000pt;}
.xaf_c00416{left:419.082667pt;}
.x90_c00416{left:423.085136pt;}
.x8_c00416{left:424.080000pt;}
.x21_c00416{left:426.960000pt;}
.xa6_c00416{left:427.920000pt;}
.x9a_c00416{left:431.140128pt;}
.xa7_c00416{left:437.520000pt;}
.x2d_c00416{left:439.680000pt;}
.x8a_c00416{left:441.358667pt;}
.x4a_c00416{left:443.760000pt;}
.x83_c00416{left:445.440000pt;}
.x10_c00416{left:448.560000pt;}
.x91_c00416{left:449.726149pt;}
.x37_c00416{left:458.400000pt;}
.xb0_c00416{left:468.300000pt;}
.xa8_c00416{left:480.720000pt;}
.x8b_c00416{left:490.292000pt;}
.xa9_c00416{left:498.240000pt;}
.x92_c00416{left:500.102875pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m72_c00417{transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);-ms-transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);-webkit-transform:matrix(0.014265,-0.000100,0.001750,0.249994,0,0);}
.m4c_c00417{transform:matrix(0.023209,-0.000186,0.002000,0.249992,0,0);-ms-transform:matrix(0.023209,-0.000186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.023209,-0.000186,0.002000,0.249992,0,0);}
.ma9_c00417{transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);-ms-transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.086377,-0.000691,0.002000,0.249992,0,0);}
.m71_c00417{transform:matrix(0.088858,-0.000622,0.001750,0.249994,0,0);-ms-transform:matrix(0.088858,-0.000622,0.001750,0.249994,0,0);-webkit-transform:matrix(0.088858,-0.000622,0.001750,0.249994,0,0);}
.m4f_c00417{transform:matrix(0.112651,-0.000901,0.002000,0.249992,0,0);-ms-transform:matrix(0.112651,-0.000901,0.002000,0.249992,0,0);-webkit-transform:matrix(0.112651,-0.000901,0.002000,0.249992,0,0);}
.m13_c00417{transform:matrix(0.130995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00417{transform:matrix(0.135231,-0.001082,0.002000,0.249992,0,0);-ms-transform:matrix(0.135231,-0.001082,0.002000,0.249992,0,0);-webkit-transform:matrix(0.135231,-0.001082,0.002000,0.249992,0,0);}
.m90_c00417{transform:matrix(0.142785,-0.001142,0.002000,0.249992,0,0);-ms-transform:matrix(0.142785,-0.001142,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142785,-0.001142,0.002000,0.249992,0,0);}
.m78_c00417{transform:matrix(0.143236,-0.001003,0.001750,0.249994,0,0);-ms-transform:matrix(0.143236,-0.001003,0.001750,0.249994,0,0);-webkit-transform:matrix(0.143236,-0.001003,0.001750,0.249994,0,0);}
.m7b_c00417{transform:matrix(0.151965,-0.001216,0.002000,0.249992,0,0);-ms-transform:matrix(0.151965,-0.001216,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151965,-0.001216,0.002000,0.249992,0,0);}
.m7a_c00417{transform:matrix(0.157625,-0.001261,0.002000,0.249992,0,0);-ms-transform:matrix(0.157625,-0.001261,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157625,-0.001261,0.002000,0.249992,0,0);}
.m77_c00417{transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);-ms-transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158711,-0.001111,0.001750,0.249994,0,0);}
.mb4_c00417{transform:matrix(0.162700,-0.001302,0.002000,0.249992,0,0);-ms-transform:matrix(0.162700,-0.001302,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162700,-0.001302,0.002000,0.249992,0,0);}
.mbb_c00417{transform:matrix(0.163565,-0.001309,0.002000,0.249992,0,0);-ms-transform:matrix(0.163565,-0.001309,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163565,-0.001309,0.002000,0.249992,0,0);}
.mb3_c00417{transform:matrix(0.165215,-0.001322,0.002000,0.249992,0,0);-ms-transform:matrix(0.165215,-0.001322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165215,-0.001322,0.002000,0.249992,0,0);}
.m97_c00417{transform:matrix(0.165285,-0.001322,0.002000,0.249992,0,0);-ms-transform:matrix(0.165285,-0.001322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165285,-0.001322,0.002000,0.249992,0,0);}
.mbc_c00417{transform:matrix(0.165445,-0.001324,0.002000,0.249992,0,0);-ms-transform:matrix(0.165445,-0.001324,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165445,-0.001324,0.002000,0.249992,0,0);}
.m84_c00417{transform:matrix(0.165725,-0.001326,0.002000,0.249992,0,0);-ms-transform:matrix(0.165725,-0.001326,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165725,-0.001326,0.002000,0.249992,0,0);}
.mb6_c00417{transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);-ms-transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166435,-0.001331,0.002000,0.249992,0,0);}
.m83_c00417{transform:matrix(0.170670,-0.001365,0.002000,0.249992,0,0);-ms-transform:matrix(0.170670,-0.001365,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170670,-0.001365,0.002000,0.249992,0,0);}
.mb8_c00417{transform:matrix(0.171805,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171805,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171805,-0.001374,0.002000,0.249992,0,0);}
.m1f_c00417{transform:matrix(0.172093,-0.005163,0.007497,0.249888,0,0);-ms-transform:matrix(0.172093,-0.005163,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172093,-0.005163,0.007497,0.249888,0,0);}
.mc0_c00417{transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172114,-0.001377,0.002000,0.249992,0,0);}
.m86_c00417{transform:matrix(0.172169,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172169,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172169,-0.001377,0.002000,0.249992,0,0);}
.m73_c00417{transform:matrix(0.174531,-0.001222,0.001750,0.249994,0,0);-ms-transform:matrix(0.174531,-0.001222,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174531,-0.001222,0.001750,0.249994,0,0);}
.m76_c00417{transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175321,-0.001227,0.001750,0.249994,0,0);}
.me4_c00417{transform:matrix(0.175329,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175329,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175329,-0.001403,0.002000,0.249992,0,0);}
.m8f_c00417{transform:matrix(0.176384,-0.001411,0.002000,0.249992,0,0);-ms-transform:matrix(0.176384,-0.001411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176384,-0.001411,0.002000,0.249992,0,0);}
.mc3_c00417{transform:matrix(0.177044,-0.001416,0.002000,0.249992,0,0);-ms-transform:matrix(0.177044,-0.001416,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177044,-0.001416,0.002000,0.249992,0,0);}
.md7_c00417{transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);}
.mc4_c00417{transform:matrix(0.179014,-0.001432,0.002000,0.249992,0,0);-ms-transform:matrix(0.179014,-0.001432,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179014,-0.001432,0.002000,0.249992,0,0);}
.md_c00417{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);}
.m50_c00417{transform:matrix(0.179814,-0.001439,0.002000,0.249992,0,0);-ms-transform:matrix(0.179814,-0.001439,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179814,-0.001439,0.002000,0.249992,0,0);}
.m99_c00417{transform:matrix(0.180589,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180589,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180589,-0.001445,0.002000,0.249992,0,0);}
.m8c_c00417{transform:matrix(0.181304,-0.001450,0.002000,0.249992,0,0);-ms-transform:matrix(0.181304,-0.001450,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181304,-0.001450,0.002000,0.249992,0,0);}
.ma4_c00417{transform:matrix(0.181709,-0.001454,0.002000,0.249992,0,0);-ms-transform:matrix(0.181709,-0.001454,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181709,-0.001454,0.002000,0.249992,0,0);}
.mc5_c00417{transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);-ms-transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182509,-0.001460,0.002000,0.249992,0,0);}
.m88_c00417{transform:matrix(0.182694,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182694,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182694,-0.001462,0.002000,0.249992,0,0);}
.m1a_c00417{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);}
.m87_c00417{transform:matrix(0.183934,-0.001471,0.002000,0.249992,0,0);-ms-transform:matrix(0.183934,-0.001471,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183934,-0.001471,0.002000,0.249992,0,0);}
.mbe_c00417{transform:matrix(0.184004,-0.001472,0.002000,0.249992,0,0);-ms-transform:matrix(0.184004,-0.001472,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184004,-0.001472,0.002000,0.249992,0,0);}
.mce_c00417{transform:matrix(0.185879,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185879,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185879,-0.001487,0.002000,0.249992,0,0);}
.m15_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);}
.meb_c00417{transform:matrix(0.187164,-0.001497,0.002000,0.249992,0,0);-ms-transform:matrix(0.187164,-0.001497,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187164,-0.001497,0.002000,0.249992,0,0);}
.m3d_c00417{transform:matrix(0.188289,-0.001506,0.002000,0.249992,0,0);-ms-transform:matrix(0.188289,-0.001506,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188289,-0.001506,0.002000,0.249992,0,0);}
.m82_c00417{transform:matrix(0.189544,-0.001516,0.002000,0.249992,0,0);-ms-transform:matrix(0.189544,-0.001516,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189544,-0.001516,0.002000,0.249992,0,0);}
.m7_c00417{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);}
.m34_c00417{transform:matrix(0.189594,-0.001517,0.002000,0.249992,0,0);-ms-transform:matrix(0.189594,-0.001517,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189594,-0.001517,0.002000,0.249992,0,0);}
.m74_c00417{transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);-ms-transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);}
.md4_c00417{transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);}
.me9_c00417{transform:matrix(0.190024,-0.001520,0.002000,0.249992,0,0);-ms-transform:matrix(0.190024,-0.001520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190024,-0.001520,0.002000,0.249992,0,0);}
.ma6_c00417{transform:matrix(0.190194,-0.001522,0.002000,0.249992,0,0);-ms-transform:matrix(0.190194,-0.001522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190194,-0.001522,0.002000,0.249992,0,0);}
.ma2_c00417{transform:matrix(0.190699,-0.001526,0.002000,0.249992,0,0);-ms-transform:matrix(0.190699,-0.001526,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190699,-0.001526,0.002000,0.249992,0,0);}
.m6d_c00417{transform:matrix(0.190920,-0.001336,0.001750,0.249994,0,0);-ms-transform:matrix(0.190920,-0.001336,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190920,-0.001336,0.001750,0.249994,0,0);}
.m85_c00417{transform:matrix(0.191154,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191154,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191154,-0.001529,0.002000,0.249992,0,0);}
.m6a_c00417{transform:matrix(0.192110,-0.001345,0.001750,0.249994,0,0);-ms-transform:matrix(0.192110,-0.001345,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192110,-0.001345,0.001750,0.249994,0,0);}
.m12_c00417{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);}
.m63_c00417{transform:matrix(0.192830,-0.001350,0.001750,0.249994,0,0);-ms-transform:matrix(0.192830,-0.001350,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192830,-0.001350,0.001750,0.249994,0,0);}
.m16_c00417{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);}
.mb5_c00417{transform:matrix(0.193079,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193079,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193079,-0.001545,0.002000,0.249992,0,0);}
.m9c_c00417{transform:matrix(0.193104,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193104,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193104,-0.001545,0.002000,0.249992,0,0);}
.maa_c00417{transform:matrix(0.193434,-0.001547,0.002000,0.249992,0,0);-ms-transform:matrix(0.193434,-0.001547,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193434,-0.001547,0.002000,0.249992,0,0);}
.m7d_c00417{transform:matrix(0.193439,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193439,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193439,-0.001548,0.002000,0.249992,0,0);}
.m1d_c00417{transform:matrix(0.193763,-0.005813,0.007497,0.249888,0,0);-ms-transform:matrix(0.193763,-0.005813,0.007497,0.249888,0,0);-webkit-transform:matrix(0.193763,-0.005813,0.007497,0.249888,0,0);}
.m5c_c00417{transform:matrix(0.194165,-0.001359,0.001750,0.249994,0,0);-ms-transform:matrix(0.194165,-0.001359,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194165,-0.001359,0.001750,0.249994,0,0);}
.m44_c00417{transform:matrix(0.194914,-0.001559,0.002000,0.249992,0,0);-ms-transform:matrix(0.194914,-0.001559,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194914,-0.001559,0.002000,0.249992,0,0);}
.mb_c00417{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);}
.m2f_c00417{transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);}
.me2_c00417{transform:matrix(0.195324,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195324,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195324,-0.001563,0.002000,0.249992,0,0);}
.mc8_c00417{transform:matrix(0.195344,-0.001563,0.002000,0.249992,0,0);-ms-transform:matrix(0.195344,-0.001563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195344,-0.001563,0.002000,0.249992,0,0);}
.mb9_c00417{transform:matrix(0.195799,-0.001566,0.002000,0.249992,0,0);-ms-transform:matrix(0.195799,-0.001566,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195799,-0.001566,0.002000,0.249992,0,0);}
.m7f_c00417{transform:matrix(0.195864,-0.001567,0.002000,0.249992,0,0);-ms-transform:matrix(0.195864,-0.001567,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195864,-0.001567,0.002000,0.249992,0,0);}
.m66_c00417{transform:matrix(0.196595,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196595,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196595,-0.001376,0.001750,0.249994,0,0);}
.m18_c00417{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);}
.m33_c00417{transform:matrix(0.198159,-0.001585,0.002000,0.249992,0,0);-ms-transform:matrix(0.198159,-0.001585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198159,-0.001585,0.002000,0.249992,0,0);}
.m6f_c00417{transform:matrix(0.198710,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198710,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198710,-0.001391,0.001750,0.249994,0,0);}
.m1b_c00417{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);}
.m57_c00417{transform:matrix(0.199640,-0.001397,0.001750,0.249994,0,0);-ms-transform:matrix(0.199640,-0.001397,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199640,-0.001397,0.001750,0.249994,0,0);}
.me8_c00417{transform:matrix(0.199809,-0.001598,0.002000,0.249992,0,0);-ms-transform:matrix(0.199809,-0.001598,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199809,-0.001598,0.002000,0.249992,0,0);}
.m17_c00417{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);}
.me3_c00417{transform:matrix(0.200359,-0.001603,0.002000,0.249992,0,0);-ms-transform:matrix(0.200359,-0.001603,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200359,-0.001603,0.002000,0.249992,0,0);}
.m54_c00417{transform:matrix(0.200605,-0.001404,0.001750,0.249994,0,0);-ms-transform:matrix(0.200605,-0.001404,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200605,-0.001404,0.001750,0.249994,0,0);}
.m4b_c00417{transform:matrix(0.200909,-0.001607,0.002000,0.249992,0,0);-ms-transform:matrix(0.200909,-0.001607,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200909,-0.001607,0.002000,0.249992,0,0);}
.m5e_c00417{transform:matrix(0.201165,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201165,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201165,-0.001408,0.001750,0.249994,0,0);}
.m9b_c00417{transform:matrix(0.201589,-0.001613,0.002000,0.249992,0,0);-ms-transform:matrix(0.201589,-0.001613,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201589,-0.001613,0.002000,0.249992,0,0);}
.ma5_c00417{transform:matrix(0.202279,-0.001618,0.002000,0.249992,0,0);-ms-transform:matrix(0.202279,-0.001618,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202279,-0.001618,0.002000,0.249992,0,0);}
.m19_c00417{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);}
.m2e_c00417{transform:matrix(0.202369,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202369,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202369,-0.001619,0.002000,0.249992,0,0);}
.me6_c00417{transform:matrix(0.202779,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202779,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202779,-0.001622,0.002000,0.249992,0,0);}
.m40_c00417{transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203603,-0.001629,0.002000,0.249992,0,0);}
.m70_c00417{transform:matrix(0.203720,-0.001426,0.001750,0.249994,0,0);-ms-transform:matrix(0.203720,-0.001426,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203720,-0.001426,0.001750,0.249994,0,0);}
.mdc_c00417{transform:matrix(0.204013,-0.001632,0.002000,0.249992,0,0);-ms-transform:matrix(0.204013,-0.001632,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204013,-0.001632,0.002000,0.249992,0,0);}
.m60_c00417{transform:matrix(0.204360,-0.001431,0.001750,0.249994,0,0);-ms-transform:matrix(0.204360,-0.001431,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204360,-0.001431,0.001750,0.249994,0,0);}
.md1_c00417{transform:matrix(0.205053,-0.001640,0.002000,0.249992,0,0);-ms-transform:matrix(0.205053,-0.001640,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205053,-0.001640,0.002000,0.249992,0,0);}
.m36_c00417{transform:matrix(0.205463,-0.001644,0.002000,0.249992,0,0);-ms-transform:matrix(0.205463,-0.001644,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205463,-0.001644,0.002000,0.249992,0,0);}
.m91_c00417{transform:matrix(0.205873,-0.001647,0.002000,0.249992,0,0);-ms-transform:matrix(0.205873,-0.001647,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205873,-0.001647,0.002000,0.249992,0,0);}
.m6e_c00417{transform:matrix(0.205935,-0.001442,0.001750,0.249994,0,0);-ms-transform:matrix(0.205935,-0.001442,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205935,-0.001442,0.001750,0.249994,0,0);}
.m4d_c00417{transform:matrix(0.205953,-0.001648,0.002000,0.249992,0,0);-ms-transform:matrix(0.205953,-0.001648,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205953,-0.001648,0.002000,0.249992,0,0);}
.m67_c00417{transform:matrix(0.206170,-0.001443,0.001750,0.249994,0,0);-ms-transform:matrix(0.206170,-0.001443,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206170,-0.001443,0.001750,0.249994,0,0);}
.mc6_c00417{transform:matrix(0.206618,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206618,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206618,-0.001653,0.002000,0.249992,0,0);}
.m52_c00417{transform:matrix(0.206648,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206648,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206648,-0.001653,0.002000,0.249992,0,0);}
.mde_c00417{transform:matrix(0.207398,-0.001659,0.002000,0.249992,0,0);-ms-transform:matrix(0.207398,-0.001659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207398,-0.001659,0.002000,0.249992,0,0);}
.mda_c00417{transform:matrix(0.207438,-0.001660,0.002000,0.249992,0,0);-ms-transform:matrix(0.207438,-0.001660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207438,-0.001660,0.002000,0.249992,0,0);}
.mcb_c00417{transform:matrix(0.207673,-0.001661,0.002000,0.249992,0,0);-ms-transform:matrix(0.207673,-0.001661,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207673,-0.001661,0.002000,0.249992,0,0);}
.mad_c00417{transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208513,-0.001668,0.002000,0.249992,0,0);}
.mbd_c00417{transform:matrix(0.208668,-0.001669,0.002000,0.249992,0,0);-ms-transform:matrix(0.208668,-0.001669,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208668,-0.001669,0.002000,0.249992,0,0);}
.m9_c00417{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);}
.m81_c00417{transform:matrix(0.209193,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209193,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209193,-0.001674,0.002000,0.249992,0,0);}
.mbf_c00417{transform:matrix(0.209473,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209473,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209473,-0.001676,0.002000,0.249992,0,0);}
.m69_c00417{transform:matrix(0.209585,-0.001467,0.001750,0.249994,0,0);-ms-transform:matrix(0.209585,-0.001467,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209585,-0.001467,0.001750,0.249994,0,0);}
.m92_c00417{transform:matrix(0.210133,-0.001681,0.002000,0.249992,0,0);-ms-transform:matrix(0.210133,-0.001681,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210133,-0.001681,0.002000,0.249992,0,0);}
.m9d_c00417{transform:matrix(0.210988,-0.001688,0.002000,0.249992,0,0);-ms-transform:matrix(0.210988,-0.001688,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210988,-0.001688,0.002000,0.249992,0,0);}
.m5a_c00417{transform:matrix(0.211450,-0.001480,0.001750,0.249994,0,0);-ms-transform:matrix(0.211450,-0.001480,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211450,-0.001480,0.001750,0.249994,0,0);}
.mea_c00417{transform:matrix(0.211503,-0.001692,0.002000,0.249992,0,0);-ms-transform:matrix(0.211503,-0.001692,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211503,-0.001692,0.002000,0.249992,0,0);}
.m61_c00417{transform:matrix(0.211685,-0.001482,0.001750,0.249994,0,0);-ms-transform:matrix(0.211685,-0.001482,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211685,-0.001482,0.001750,0.249994,0,0);}
.m75_c00417{transform:matrix(0.212275,-0.001486,0.001750,0.249994,0,0);-ms-transform:matrix(0.212275,-0.001486,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212275,-0.001486,0.001750,0.249994,0,0);}
.m98_c00417{transform:matrix(0.212363,-0.001699,0.002000,0.249992,0,0);-ms-transform:matrix(0.212363,-0.001699,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212363,-0.001699,0.002000,0.249992,0,0);}
.mcf_c00417{transform:matrix(0.212448,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212448,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212448,-0.001700,0.002000,0.249992,0,0);}
.m6c_c00417{transform:matrix(0.212840,-0.001490,0.001750,0.249994,0,0);-ms-transform:matrix(0.212840,-0.001490,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212840,-0.001490,0.001750,0.249994,0,0);}
.me5_c00417{transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213153,-0.001705,0.002000,0.249992,0,0);}
.me0_c00417{transform:matrix(0.214103,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214103,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214103,-0.001713,0.002000,0.249992,0,0);}
.mcc_c00417{transform:matrix(0.214138,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214138,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214138,-0.001713,0.002000,0.249992,0,0);}
.ma1_c00417{transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);}
.m41_c00417{transform:matrix(0.215028,-0.001720,0.002000,0.249992,0,0);-ms-transform:matrix(0.215028,-0.001720,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215028,-0.001720,0.002000,0.249992,0,0);}
.ma3_c00417{transform:matrix(0.215533,-0.001724,0.002000,0.249992,0,0);-ms-transform:matrix(0.215533,-0.001724,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215533,-0.001724,0.002000,0.249992,0,0);}
.m38_c00417{transform:matrix(0.216083,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216083,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216083,-0.001729,0.002000,0.249992,0,0);}
.mcd_c00417{transform:matrix(0.216143,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216143,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216143,-0.001729,0.002000,0.249992,0,0);}
.m3b_c00417{transform:matrix(0.216368,-0.001731,0.002000,0.249992,0,0);-ms-transform:matrix(0.216368,-0.001731,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216368,-0.001731,0.002000,0.249992,0,0);}
.m22_c00417{transform:matrix(0.216503,-0.001732,0.002000,0.249992,0,0);-ms-transform:matrix(0.216503,-0.001732,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216503,-0.001732,0.002000,0.249992,0,0);}
.m62_c00417{transform:matrix(0.217005,-0.001519,0.001750,0.249994,0,0);-ms-transform:matrix(0.217005,-0.001519,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217005,-0.001519,0.001750,0.249994,0,0);}
.m30_c00417{transform:matrix(0.218488,-0.001748,0.002000,0.249992,0,0);-ms-transform:matrix(0.218488,-0.001748,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218488,-0.001748,0.002000,0.249992,0,0);}
.m2a_c00417{transform:matrix(0.219148,-0.001753,0.002000,0.249992,0,0);-ms-transform:matrix(0.219148,-0.001753,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219148,-0.001753,0.002000,0.249992,0,0);}
.m43_c00417{transform:matrix(0.219233,-0.001754,0.002000,0.249992,0,0);-ms-transform:matrix(0.219233,-0.001754,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219233,-0.001754,0.002000,0.249992,0,0);}
.m8_c00417{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);}
.mc_c00417{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);}
.m31_c00417{transform:matrix(0.221523,-0.001772,0.002000,0.249992,0,0);-ms-transform:matrix(0.221523,-0.001772,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221523,-0.001772,0.002000,0.249992,0,0);}
.ma8_c00417{transform:matrix(0.221538,-0.001772,0.002000,0.249992,0,0);-ms-transform:matrix(0.221538,-0.001772,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221538,-0.001772,0.002000,0.249992,0,0);}
.m3f_c00417{transform:matrix(0.221798,-0.001774,0.002000,0.249992,0,0);-ms-transform:matrix(0.221798,-0.001774,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221798,-0.001774,0.002000,0.249992,0,0);}
.me1_c00417{transform:matrix(0.222053,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.222053,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222053,-0.001776,0.002000,0.249992,0,0);}
.m2c_c00417{transform:matrix(0.223233,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223233,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223233,-0.001786,0.002000,0.249992,0,0);}
.m7e_c00417{transform:matrix(0.223323,-0.001787,0.002000,0.249992,0,0);-ms-transform:matrix(0.223323,-0.001787,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223323,-0.001787,0.002000,0.249992,0,0);}
.m94_c00417{transform:matrix(0.223353,-0.001787,0.002000,0.249992,0,0);-ms-transform:matrix(0.223353,-0.001787,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223353,-0.001787,0.002000,0.249992,0,0);}
.m49_c00417{transform:matrix(0.223398,-0.001787,0.002000,0.249992,0,0);-ms-transform:matrix(0.223398,-0.001787,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223398,-0.001787,0.002000,0.249992,0,0);}
.mca_c00417{transform:matrix(0.223448,-0.001788,0.002000,0.249992,0,0);-ms-transform:matrix(0.223448,-0.001788,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223448,-0.001788,0.002000,0.249992,0,0);}
.mab_c00417{transform:matrix(0.223858,-0.001791,0.002000,0.249992,0,0);-ms-transform:matrix(0.223858,-0.001791,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223858,-0.001791,0.002000,0.249992,0,0);}
.mc2_c00417{transform:matrix(0.223998,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.223998,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223998,-0.001792,0.002000,0.249992,0,0);}
.md8_c00417{transform:matrix(0.224323,-0.001795,0.002000,0.249992,0,0);-ms-transform:matrix(0.224323,-0.001795,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224323,-0.001795,0.002000,0.249992,0,0);}
.m39_c00417{transform:matrix(0.224928,-0.001799,0.002000,0.249992,0,0);-ms-transform:matrix(0.224928,-0.001799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224928,-0.001799,0.002000,0.249992,0,0);}
.mb1_c00417{transform:matrix(0.225313,-0.001803,0.002000,0.249992,0,0);-ms-transform:matrix(0.225313,-0.001803,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225313,-0.001803,0.002000,0.249992,0,0);}
.m35_c00417{transform:matrix(0.225463,-0.001804,0.002000,0.249992,0,0);-ms-transform:matrix(0.225463,-0.001804,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225463,-0.001804,0.002000,0.249992,0,0);}
.m2d_c00417{transform:matrix(0.225528,-0.001804,0.002000,0.249992,0,0);-ms-transform:matrix(0.225528,-0.001804,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225528,-0.001804,0.002000,0.249992,0,0);}
.m27_c00417{transform:matrix(0.226828,-0.001815,0.002000,0.249992,0,0);-ms-transform:matrix(0.226828,-0.001815,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226828,-0.001815,0.002000,0.249992,0,0);}
.ma7_c00417{transform:matrix(0.227138,-0.001817,0.002000,0.249992,0,0);-ms-transform:matrix(0.227138,-0.001817,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227138,-0.001817,0.002000,0.249992,0,0);}
.m6b_c00417{transform:matrix(0.227974,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.227974,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227974,-0.001596,0.001750,0.249994,0,0);}
.m8e_c00417{transform:matrix(0.228213,-0.001826,0.002000,0.249992,0,0);-ms-transform:matrix(0.228213,-0.001826,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228213,-0.001826,0.002000,0.249992,0,0);}
.m25_c00417{transform:matrix(0.228798,-0.001830,0.002000,0.249992,0,0);-ms-transform:matrix(0.228798,-0.001830,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228798,-0.001830,0.002000,0.249992,0,0);}
.mf_c00417{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);}
.md0_c00417{transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);-ms-transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229988,-0.001840,0.002000,0.249992,0,0);}
.m58_c00417{transform:matrix(0.230254,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230254,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230254,-0.001612,0.001750,0.249994,0,0);}
.m9e_c00417{transform:matrix(0.230798,-0.001846,0.002000,0.249992,0,0);-ms-transform:matrix(0.230798,-0.001846,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230798,-0.001846,0.002000,0.249992,0,0);}
.m4e_c00417{transform:matrix(0.230983,-0.001848,0.002000,0.249992,0,0);-ms-transform:matrix(0.230983,-0.001848,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230983,-0.001848,0.002000,0.249992,0,0);}
.m7c_c00417{transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231963,-0.001856,0.002000,0.249992,0,0);}
.m4a_c00417{transform:matrix(0.232323,-0.001859,0.002000,0.249992,0,0);-ms-transform:matrix(0.232323,-0.001859,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232323,-0.001859,0.002000,0.249992,0,0);}
.m1e_c00417{transform:matrix(0.232740,-0.006982,0.007497,0.249888,0,0);-ms-transform:matrix(0.232740,-0.006982,0.007497,0.249888,0,0);-webkit-transform:matrix(0.232740,-0.006982,0.007497,0.249888,0,0);}
.mac_c00417{transform:matrix(0.232968,-0.001864,0.002000,0.249992,0,0);-ms-transform:matrix(0.232968,-0.001864,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232968,-0.001864,0.002000,0.249992,0,0);}
.mb0_c00417{transform:matrix(0.234567,-0.001877,0.002000,0.249992,0,0);-ms-transform:matrix(0.234567,-0.001877,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234567,-0.001877,0.002000,0.249992,0,0);}
.m8b_c00417{transform:matrix(0.234812,-0.001878,0.002000,0.249992,0,0);-ms-transform:matrix(0.234812,-0.001878,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234812,-0.001878,0.002000,0.249992,0,0);}
.m3e_c00417{transform:matrix(0.235022,-0.001880,0.002000,0.249992,0,0);-ms-transform:matrix(0.235022,-0.001880,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235022,-0.001880,0.002000,0.249992,0,0);}
.ma_c00417{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);}
.m2b_c00417{transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);-ms-transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235597,-0.001885,0.002000,0.249992,0,0);}
.me_c00417{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);}
.m3c_c00417{transform:matrix(0.237222,-0.001898,0.002000,0.249992,0,0);-ms-transform:matrix(0.237222,-0.001898,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237222,-0.001898,0.002000,0.249992,0,0);}
.m53_c00417{transform:matrix(0.237774,-0.001664,0.001750,0.249994,0,0);-ms-transform:matrix(0.237774,-0.001664,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237774,-0.001664,0.001750,0.249994,0,0);}
.m79_c00417{transform:matrix(0.238342,-0.001907,0.002000,0.249992,0,0);-ms-transform:matrix(0.238342,-0.001907,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238342,-0.001907,0.002000,0.249992,0,0);}
.mdd_c00417{transform:matrix(0.239872,-0.001919,0.002000,0.249992,0,0);-ms-transform:matrix(0.239872,-0.001919,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239872,-0.001919,0.002000,0.249992,0,0);}
.mdb_c00417{transform:matrix(0.240967,-0.001928,0.002000,0.249992,0,0);-ms-transform:matrix(0.240967,-0.001928,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240967,-0.001928,0.002000,0.249992,0,0);}
.m5f_c00417{transform:matrix(0.241049,-0.001687,0.001750,0.249994,0,0);-ms-transform:matrix(0.241049,-0.001687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241049,-0.001687,0.001750,0.249994,0,0);}
.m5d_c00417{transform:matrix(0.241114,-0.001688,0.001750,0.249994,0,0);-ms-transform:matrix(0.241114,-0.001688,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241114,-0.001688,0.001750,0.249994,0,0);}
.m56_c00417{transform:matrix(0.241979,-0.001694,0.001750,0.249994,0,0);-ms-transform:matrix(0.241979,-0.001694,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241979,-0.001694,0.001750,0.249994,0,0);}
.m48_c00417{transform:matrix(0.242772,-0.001942,0.002000,0.249992,0,0);-ms-transform:matrix(0.242772,-0.001942,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242772,-0.001942,0.002000,0.249992,0,0);}
.m51_c00417{transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);}
.m32_c00417{transform:matrix(0.246427,-0.001971,0.002000,0.249992,0,0);-ms-transform:matrix(0.246427,-0.001971,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246427,-0.001971,0.002000,0.249992,0,0);}
.m3a_c00417{transform:matrix(0.246922,-0.001975,0.002000,0.249992,0,0);-ms-transform:matrix(0.246922,-0.001975,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246922,-0.001975,0.002000,0.249992,0,0);}
.md5_c00417{transform:matrix(0.248067,-0.001985,0.002000,0.249992,0,0);-ms-transform:matrix(0.248067,-0.001985,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248067,-0.001985,0.002000,0.249992,0,0);}
.m93_c00417{transform:matrix(0.250027,-0.002000,0.002000,0.249992,0,0);-ms-transform:matrix(0.250027,-0.002000,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250027,-0.002000,0.002000,0.249992,0,0);}
.m10_c00417{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);}
.m45_c00417{transform:matrix(0.252022,-0.002016,0.002000,0.249992,0,0);-ms-transform:matrix(0.252022,-0.002016,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252022,-0.002016,0.002000,0.249992,0,0);}
.m14_c00417{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);}
.mc1_c00417{transform:matrix(0.253307,-0.002026,0.002000,0.249992,0,0);-ms-transform:matrix(0.253307,-0.002026,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253307,-0.002026,0.002000,0.249992,0,0);}
.md3_c00417{transform:matrix(0.254007,-0.002032,0.002000,0.249992,0,0);-ms-transform:matrix(0.254007,-0.002032,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254007,-0.002032,0.002000,0.249992,0,0);}
.m29_c00417{transform:matrix(0.254017,-0.002032,0.002000,0.249992,0,0);-ms-transform:matrix(0.254017,-0.002032,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254017,-0.002032,0.002000,0.249992,0,0);}
.m8d_c00417{transform:matrix(0.256867,-0.002055,0.002000,0.249992,0,0);-ms-transform:matrix(0.256867,-0.002055,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256867,-0.002055,0.002000,0.249992,0,0);}
.m3_c00417{transform:matrix(0.257544,-0.002833,0.002750,0.249985,0,0);-ms-transform:matrix(0.257544,-0.002833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257544,-0.002833,0.002750,0.249985,0,0);}
.mb2_c00417{transform:matrix(0.257777,-0.002062,0.002000,0.249992,0,0);-ms-transform:matrix(0.257777,-0.002062,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257777,-0.002062,0.002000,0.249992,0,0);}
.m96_c00417{transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);-ms-transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);}
.m59_c00417{transform:matrix(0.259594,-0.001817,0.001750,0.249994,0,0);-ms-transform:matrix(0.259594,-0.001817,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259594,-0.001817,0.001750,0.249994,0,0);}
.med_c00417{transform:matrix(0.260232,-0.002082,0.002000,0.249992,0,0);-ms-transform:matrix(0.260232,-0.002082,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260232,-0.002082,0.002000,0.249992,0,0);}
.mec_c00417{transform:matrix(0.263222,-0.002106,0.002000,0.249992,0,0);-ms-transform:matrix(0.263222,-0.002106,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263222,-0.002106,0.002000,0.249992,0,0);}
.m64_c00417{transform:matrix(0.263519,-0.001845,0.001750,0.249994,0,0);-ms-transform:matrix(0.263519,-0.001845,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263519,-0.001845,0.001750,0.249994,0,0);}
.md2_c00417{transform:matrix(0.265092,-0.002121,0.002000,0.249992,0,0);-ms-transform:matrix(0.265092,-0.002121,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265092,-0.002121,0.002000,0.249992,0,0);}
.m95_c00417{transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);-ms-transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);}
.ma0_c00417{transform:matrix(0.271561,-0.002172,0.002000,0.249992,0,0);-ms-transform:matrix(0.271561,-0.002172,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271561,-0.002172,0.002000,0.249992,0,0);}
.m21_c00417{transform:matrix(0.274806,-0.002198,0.002000,0.249992,0,0);-ms-transform:matrix(0.274806,-0.002198,0.002000,0.249992,0,0);-webkit-transform:matrix(0.274806,-0.002198,0.002000,0.249992,0,0);}
.m1_c00417{transform:matrix(0.275773,-0.003034,0.002750,0.249985,0,0);-ms-transform:matrix(0.275773,-0.003034,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275773,-0.003034,0.002750,0.249985,0,0);}
.m5b_c00417{transform:matrix(0.275968,-0.001932,0.001750,0.249994,0,0);-ms-transform:matrix(0.275968,-0.001932,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275968,-0.001932,0.001750,0.249994,0,0);}
.m9a_c00417{transform:matrix(0.288481,-0.002308,0.002000,0.249992,0,0);-ms-transform:matrix(0.288481,-0.002308,0.002000,0.249992,0,0);-webkit-transform:matrix(0.288481,-0.002308,0.002000,0.249992,0,0);}
.mc7_c00417{transform:matrix(0.289181,-0.002313,0.002000,0.249992,0,0);-ms-transform:matrix(0.289181,-0.002313,0.002000,0.249992,0,0);-webkit-transform:matrix(0.289181,-0.002313,0.002000,0.249992,0,0);}
.m8a_c00417{transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);-ms-transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290411,-0.002323,0.002000,0.249992,0,0);}
.m9f_c00417{transform:matrix(0.290511,-0.002324,0.002000,0.249992,0,0);-ms-transform:matrix(0.290511,-0.002324,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290511,-0.002324,0.002000,0.249992,0,0);}
.m6_c00417{transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292755,0.000000,0.000000,0.250000,0,0);}
.maf_c00417{transform:matrix(0.293631,-0.002349,0.002000,0.249992,0,0);-ms-transform:matrix(0.293631,-0.002349,0.002000,0.249992,0,0);-webkit-transform:matrix(0.293631,-0.002349,0.002000,0.249992,0,0);}
.m24_c00417{transform:matrix(0.295861,-0.002367,0.002000,0.249992,0,0);-ms-transform:matrix(0.295861,-0.002367,0.002000,0.249992,0,0);-webkit-transform:matrix(0.295861,-0.002367,0.002000,0.249992,0,0);}
.m47_c00417{transform:matrix(0.299100,-0.002393,0.002000,0.249992,0,0);-ms-transform:matrix(0.299100,-0.002393,0.002000,0.249992,0,0);-webkit-transform:matrix(0.299100,-0.002393,0.002000,0.249992,0,0);}
.mae_c00417{transform:matrix(0.299845,-0.002399,0.002000,0.249992,0,0);-ms-transform:matrix(0.299845,-0.002399,0.002000,0.249992,0,0);-webkit-transform:matrix(0.299845,-0.002399,0.002000,0.249992,0,0);}
.m46_c00417{transform:matrix(0.316135,-0.002529,0.002000,0.249992,0,0);-ms-transform:matrix(0.316135,-0.002529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.316135,-0.002529,0.002000,0.249992,0,0);}
.m89_c00417{transform:matrix(0.320385,-0.002563,0.002000,0.249992,0,0);-ms-transform:matrix(0.320385,-0.002563,0.002000,0.249992,0,0);-webkit-transform:matrix(0.320385,-0.002563,0.002000,0.249992,0,0);}
.m55_c00417{transform:matrix(0.321797,-0.002253,0.001750,0.249994,0,0);-ms-transform:matrix(0.321797,-0.002253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.321797,-0.002253,0.001750,0.249994,0,0);}
.m42_c00417{transform:matrix(0.332784,-0.002662,0.002000,0.249992,0,0);-ms-transform:matrix(0.332784,-0.002662,0.002000,0.249992,0,0);-webkit-transform:matrix(0.332784,-0.002662,0.002000,0.249992,0,0);}
.m23_c00417{transform:matrix(0.350159,-0.002801,0.002000,0.249992,0,0);-ms-transform:matrix(0.350159,-0.002801,0.002000,0.249992,0,0);-webkit-transform:matrix(0.350159,-0.002801,0.002000,0.249992,0,0);}
.md9_c00417{transform:matrix(0.353049,-0.002824,0.002000,0.249992,0,0);-ms-transform:matrix(0.353049,-0.002824,0.002000,0.249992,0,0);-webkit-transform:matrix(0.353049,-0.002824,0.002000,0.249992,0,0);}
.mdf_c00417{transform:matrix(0.356899,-0.002855,0.002000,0.249992,0,0);-ms-transform:matrix(0.356899,-0.002855,0.002000,0.249992,0,0);-webkit-transform:matrix(0.356899,-0.002855,0.002000,0.249992,0,0);}
.md6_c00417{transform:matrix(0.363343,-0.002907,0.002000,0.249992,0,0);-ms-transform:matrix(0.363343,-0.002907,0.002000,0.249992,0,0);-webkit-transform:matrix(0.363343,-0.002907,0.002000,0.249992,0,0);}
.m37_c00417{transform:matrix(0.364063,-0.002913,0.002000,0.249992,0,0);-ms-transform:matrix(0.364063,-0.002913,0.002000,0.249992,0,0);-webkit-transform:matrix(0.364063,-0.002913,0.002000,0.249992,0,0);}
.mba_c00417{transform:matrix(0.366698,-0.002934,0.002000,0.249992,0,0);-ms-transform:matrix(0.366698,-0.002934,0.002000,0.249992,0,0);-webkit-transform:matrix(0.366698,-0.002934,0.002000,0.249992,0,0);}
.m11_c00417{transform:matrix(0.368210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368210,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.375431,-0.002628,0.001750,0.249994,0,0);-ms-transform:matrix(0.375431,-0.002628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.375431,-0.002628,0.001750,0.249994,0,0);}
.mc9_c00417{transform:matrix(0.378298,-0.003026,0.002000,0.249992,0,0);-ms-transform:matrix(0.378298,-0.003026,0.002000,0.249992,0,0);-webkit-transform:matrix(0.378298,-0.003026,0.002000,0.249992,0,0);}
.m26_c00417{transform:matrix(0.378383,-0.003027,0.002000,0.249992,0,0);-ms-transform:matrix(0.378383,-0.003027,0.002000,0.249992,0,0);-webkit-transform:matrix(0.378383,-0.003027,0.002000,0.249992,0,0);}
.me7_c00417{transform:matrix(0.378413,-0.003027,0.002000,0.249992,0,0);-ms-transform:matrix(0.378413,-0.003027,0.002000,0.249992,0,0);-webkit-transform:matrix(0.378413,-0.003027,0.002000,0.249992,0,0);}
.m80_c00417{transform:matrix(0.383093,-0.003065,0.002000,0.249992,0,0);-ms-transform:matrix(0.383093,-0.003065,0.002000,0.249992,0,0);-webkit-transform:matrix(0.383093,-0.003065,0.002000,0.249992,0,0);}
.m5_c00417{transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386055,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.387206,-0.002710,0.001750,0.249994,0,0);-ms-transform:matrix(0.387206,-0.002710,0.001750,0.249994,0,0);-webkit-transform:matrix(0.387206,-0.002710,0.001750,0.249994,0,0);}
.m28_c00417{transform:matrix(0.396912,-0.003175,0.002000,0.249992,0,0);-ms-transform:matrix(0.396912,-0.003175,0.002000,0.249992,0,0);-webkit-transform:matrix(0.396912,-0.003175,0.002000,0.249992,0,0);}
.m4_c00417{transform:matrix(0.421619,-0.004638,0.002750,0.249985,0,0);-ms-transform:matrix(0.421619,-0.004638,0.002750,0.249985,0,0);-webkit-transform:matrix(0.421619,-0.004638,0.002750,0.249985,0,0);}
.m20_c00417{transform:matrix(0.466400,-0.013992,0.007497,0.249888,0,0);-ms-transform:matrix(0.466400,-0.013992,0.007497,0.249888,0,0);-webkit-transform:matrix(0.466400,-0.013992,0.007497,0.249888,0,0);}
.m1c_c00417{transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.523713,-0.005761,0.002750,0.249985,0,0);-ms-transform:matrix(0.523713,-0.005761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.523713,-0.005761,0.002750,0.249985,0,0);}
.m0_c00417{transform:matrix(0.695493,-0.007650,0.002750,0.249985,0,0);-ms-transform:matrix(0.695493,-0.007650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.695493,-0.007650,0.002750,0.249985,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;}
.fs5_c00417{font-size:22.050000px;}
.fs8_c00417{font-size:46.201478px;}
.fs7_c00417{font-size:47.251512px;}
.fs10_c00417{font-size:48.301546px;}
.fsa_c00417{font-size:49.351209px;}
.fs9_c00417{font-size:49.351579px;}
.fse_c00417{font-size:50.401613px;}
.fs11_c00417{font-size:51.451646px;}
.fsd_c00417{font-size:53.551714px;}
.fsc_c00417{font-size:54.601747px;}
.fsf_c00417{font-size:57.751848px;}
.fsb_c00417{font-size:59.851466px;}
.fs3_c00417{font-size:65.100000px;}
.fs2_c00417{font-size:67.200000px;}
.fs4_c00417{font-size:70.350000px;}
.fs6_c00417{font-size:79.835902px;}
.fs0_c00417{font-size:109.206606px;}
.fs1_c00417{font-size:153.309274px;}
.y0_c00417{bottom:0.000000px;}
.ye6_c00417{bottom:156.538248px;}
.ye9_c00417{bottom:156.538500px;}
.ye0_c00417{bottom:156.538608px;}
.ye8_c00417{bottom:156.538704px;}
.ye7_c00417{bottom:156.538716px;}
.ye5_c00417{bottom:156.538788px;}
.ydf_c00417{bottom:156.538800px;}
.yeb_c00417{bottom:156.538968px;}
.ye4_c00417{bottom:156.538980px;}
.ye1_c00417{bottom:156.539076px;}
.ye3_c00417{bottom:156.539112px;}
.yea_c00417{bottom:156.539148px;}
.yde_c00417{bottom:156.539472px;}
.ye2_c00417{bottom:156.539664px;}
.ycf_c00417{bottom:173.611992px;}
.yd0_c00417{bottom:173.927700px;}
.yd1_c00417{bottom:173.971272px;}
.yd2_c00417{bottom:174.229764px;}
.yd3_c00417{bottom:174.350004px;}
.yd4_c00417{bottom:174.605688px;}
.yd5_c00417{bottom:174.690828px;}
.yd6_c00417{bottom:174.946452px;}
.yd7_c00417{bottom:175.248636px;}
.yd8_c00417{bottom:175.358820px;}
.yd9_c00417{bottom:175.593648px;}
.yda_c00417{bottom:176.049720px;}
.ydb_c00417{bottom:176.254500px;}
.ydc_c00417{bottom:176.522424px;}
.ydd_c00417{bottom:176.812968px;}
.yc0_c00417{bottom:192.902820px;}
.yc1_c00417{bottom:192.903348px;}
.yc3_c00417{bottom:192.903456px;}
.yc2_c00417{bottom:192.903828px;}
.yc4_c00417{bottom:192.904164px;}
.yc5_c00417{bottom:192.904512px;}
.yc6_c00417{bottom:192.905040px;}
.yc7_c00417{bottom:192.905448px;}
.yc9_c00417{bottom:192.905676px;}
.yc8_c00417{bottom:192.905748px;}
.yce_c00417{bottom:192.905760px;}
.ycb_c00417{bottom:192.905964px;}
.ycd_c00417{bottom:192.906252px;}
.yca_c00417{bottom:192.906276px;}
.ycc_c00417{bottom:192.906444px;}
.yb1_c00417{bottom:209.251080px;}
.yb2_c00417{bottom:209.656956px;}
.yb3_c00417{bottom:209.735064px;}
.yb4_c00417{bottom:210.030012px;}
.yb5_c00417{bottom:210.235452px;}
.yb6_c00417{bottom:210.459012px;}
.yb7_c00417{bottom:210.825228px;}
.yb8_c00417{bottom:210.904476px;}
.yb9_c00417{bottom:211.008048px;}
.yba_c00417{bottom:211.194924px;}
.ybb_c00417{bottom:211.446180px;}
.ybc_c00417{bottom:211.863276px;}
.ybd_c00417{bottom:212.029740px;}
.ybe_c00417{bottom:212.160612px;}
.ybf_c00417{bottom:212.480760px;}
.ya1_c00417{bottom:226.532208px;}
.ya2_c00417{bottom:226.869972px;}
.ya3_c00417{bottom:227.246772px;}
.ya4_c00417{bottom:227.436072px;}
.ya5_c00417{bottom:227.718468px;}
.ya6_c00417{bottom:227.998392px;}
.ya7_c00417{bottom:228.611844px;}
.ya8_c00417{bottom:228.782988px;}
.ya9_c00417{bottom:228.986868px;}
.yaa_c00417{bottom:229.125252px;}
.yab_c00417{bottom:229.319124px;}
.yac_c00417{bottom:229.778172px;}
.yad_c00417{bottom:229.881000px;}
.yae_c00417{bottom:230.039256px;}
.yaf_c00417{bottom:230.512860px;}
.yb0_c00417{bottom:230.745732px;}
.y94_c00417{bottom:245.366916px;}
.y95_c00417{bottom:245.367276px;}
.y93_c00417{bottom:245.367528px;}
.y97_c00417{bottom:245.367684px;}
.y96_c00417{bottom:245.367804px;}
.y98_c00417{bottom:245.368332px;}
.y99_c00417{bottom:245.368500px;}
.y9b_c00417{bottom:245.368776px;}
.y9c_c00417{bottom:245.368824px;}
.ya0_c00417{bottom:245.369040px;}
.y9a_c00417{bottom:245.369148px;}
.y9f_c00417{bottom:245.369220px;}
.y9d_c00417{bottom:245.369532px;}
.y9e_c00417{bottom:245.369772px;}
.y85_c00417{bottom:262.171008px;}
.y86_c00417{bottom:262.431948px;}
.y87_c00417{bottom:262.547028px;}
.y88_c00417{bottom:262.907808px;}
.y89_c00417{bottom:263.074032px;}
.y8a_c00417{bottom:263.670108px;}
.y8b_c00417{bottom:264.117504px;}
.y8c_c00417{bottom:264.294372px;}
.y8d_c00417{bottom:264.579828px;}
.y8e_c00417{bottom:264.920316px;}
.y8f_c00417{bottom:265.037424px;}
.y90_c00417{bottom:265.292160px;}
.y91_c00417{bottom:265.523424px;}
.y92_c00417{bottom:265.842960px;}
.y77_c00417{bottom:279.451500px;}
.y78_c00417{bottom:279.648156px;}
.y79_c00417{bottom:280.034208px;}
.y7a_c00417{bottom:280.142652px;}
.y7b_c00417{bottom:280.425624px;}
.y7c_c00417{bottom:280.641396px;}
.y7d_c00417{bottom:281.067072px;}
.y7e_c00417{bottom:281.209848px;}
.y7f_c00417{bottom:281.313444px;}
.y80_c00417{bottom:281.779716px;}
.y81_c00417{bottom:281.993796px;}
.y82_c00417{bottom:282.177444px;}
.y83_c00417{bottom:282.628872px;}
.y84_c00417{bottom:283.069548px;}
.y6e_c00417{bottom:296.731404px;}
.y6f_c00417{bottom:297.540775px;}
.y70_c00417{bottom:299.282922px;}
.y71_c00417{bottom:299.484060px;}
.y72_c00417{bottom:300.395832px;}
.y73_c00417{bottom:300.808752px;}
.y74_c00417{bottom:301.055527px;}
.y75_c00417{bottom:301.613032px;}
.y76_c00417{bottom:301.820364px;}
.y5e_c00417{bottom:316.709665px;}
.y5f_c00417{bottom:316.880101px;}
.y60_c00417{bottom:317.130883px;}
.y61_c00417{bottom:317.451114px;}
.y62_c00417{bottom:317.615796px;}
.y63_c00417{bottom:318.058872px;}
.y64_c00417{bottom:318.164814px;}
.y65_c00417{bottom:318.324016px;}
.y66_c00417{bottom:318.607911px;}
.y67_c00417{bottom:318.724782px;}
.y68_c00417{bottom:318.973642px;}
.y69_c00417{bottom:319.215406px;}
.y6a_c00417{bottom:319.651186px;}
.y6b_c00417{bottom:319.934797px;}
.y6c_c00417{bottom:320.094210px;}
.y6d_c00417{bottom:320.418168px;}
.y51_c00417{bottom:334.573500px;}
.y52_c00417{bottom:334.684884px;}
.y53_c00417{bottom:334.803975px;}
.y54_c00417{bottom:335.187865px;}
.y55_c00417{bottom:335.320123px;}
.y56_c00417{bottom:335.601691px;}
.y57_c00417{bottom:336.165111px;}
.y58_c00417{bottom:336.692358px;}
.y59_c00417{bottom:337.038154px;}
.y5a_c00417{bottom:337.194877px;}
.y5b_c00417{bottom:337.331010px;}
.y5c_c00417{bottom:337.510686px;}
.y5d_c00417{bottom:337.714858px;}
.y49_c00417{bottom:349.920180px;}
.y4a_c00417{bottom:350.368104px;}
.y4b_c00417{bottom:353.416632px;}
.y4c_c00417{bottom:354.259668px;}
.y4d_c00417{bottom:355.222356px;}
.y4e_c00417{bottom:355.450320px;}
.y4f_c00417{bottom:355.828260px;}
.y50_c00417{bottom:356.380680px;}
.y3b_c00417{bottom:370.168704px;}
.y3c_c00417{bottom:370.282332px;}
.y3d_c00417{bottom:370.797192px;}
.y3e_c00417{bottom:370.967940px;}
.y3f_c00417{bottom:371.159568px;}
.y40_c00417{bottom:371.742408px;}
.y41_c00417{bottom:371.888544px;}
.y42_c00417{bottom:372.059256px;}
.y43_c00417{bottom:372.421524px;}
.y44_c00417{bottom:372.487608px;}
.y45_c00417{bottom:372.910008px;}
.y46_c00417{bottom:373.099212px;}
.y47_c00417{bottom:373.667676px;}
.y48_c00417{bottom:373.923084px;}
.y2d_c00417{bottom:388.259352px;}
.y2e_c00417{bottom:388.492248px;}
.y2f_c00417{bottom:388.638132px;}
.y30_c00417{bottom:388.830036px;}
.y31_c00417{bottom:389.277000px;}
.y32_c00417{bottom:389.618832px;}
.y33_c00417{bottom:389.786016px;}
.y34_c00417{bottom:390.107148px;}
.y35_c00417{bottom:390.399456px;}
.y36_c00417{bottom:390.516552px;}
.y37_c00417{bottom:390.938952px;}
.y38_c00417{bottom:391.536096px;}
.y39_c00417{bottom:391.787364px;}
.y3a_c00417{bottom:392.081748px;}
.y1f_c00417{bottom:406.890000px;}
.y20_c00417{bottom:407.060604px;}
.y21_c00417{bottom:407.509920px;}
.y22_c00417{bottom:407.663412px;}
.y23_c00417{bottom:407.801544px;}
.y24_c00417{bottom:408.112680px;}
.y25_c00417{bottom:408.201120px;}
.y26_c00417{bottom:408.678588px;}
.y27_c00417{bottom:408.801600px;}
.y28_c00417{bottom:409.320348px;}
.y29_c00417{bottom:409.784676px;}
.y2a_c00417{bottom:409.924848px;}
.y2b_c00417{bottom:410.065464px;}
.y2c_c00417{bottom:410.486508px;}
.y1b_c00417{bottom:683.655000px;}
.y1c_c00417{bottom:684.586815px;}
.y1d_c00417{bottom:685.509540px;}
.y1e_c00417{bottom:687.187185px;}
.y1a_c00417{bottom:705.367500px;}
.y19_c00417{bottom:729.000000px;}
.y10_c00417{bottom:743.854500px;}
.y11_c00417{bottom:744.825000px;}
.y12_c00417{bottom:745.098000px;}
.y13_c00417{bottom:745.438500px;}
.y14_c00417{bottom:746.911500px;}
.y15_c00417{bottom:747.417000px;}
.y16_c00417{bottom:748.765500px;}
.y17_c00417{bottom:749.326500px;}
.y18_c00417{bottom:749.704500px;}
.yf_c00417{bottom:771.067500px;}
.y7_c00417{bottom:789.754500px;}
.y8_c00417{bottom:790.641000px;}
.y9_c00417{bottom:791.107500px;}
.ya_c00417{bottom:791.643000px;}
.yb_c00417{bottom:792.628500px;}
.yc_c00417{bottom:793.593000px;}
.yd_c00417{bottom:794.638500px;}
.ye_c00417{bottom:794.961000px;}
.y6_c00417{bottom:817.552500px;}
.y3_c00417{bottom:900.186388px;}
.y4_c00417{bottom:902.463871px;}
.y5_c00417{bottom:903.848805px;}
.y1_c00417{bottom:919.891500px;}
.y2_c00417{bottom:923.625384px;}
.h7_c00417{height:22.050000px;}
.ha_c00417{height:46.201478px;}
.h9_c00417{height:47.251512px;}
.h12_c00417{height:48.301546px;}
.hc_c00417{height:49.351209px;}
.hb_c00417{height:49.351579px;}
.h10_c00417{height:50.401613px;}
.h13_c00417{height:51.451646px;}
.hf_c00417{height:53.551714px;}
.he_c00417{height:54.601747px;}
.h11_c00417{height:57.751848px;}
.hd_c00417{height:59.851466px;}
.h5_c00417{height:65.100000px;}
.h4_c00417{height:67.200000px;}
.h6_c00417{height:70.350000px;}
.h8_c00417{height:79.835902px;}
.h2_c00417{height:109.206606px;}
.h3_c00417{height:153.309274px;}
.h0_c00417{height:1008.450000px;}
.h1_c00417{height:1008.750000px;}
.w1_c00417{width:689.250000px;}
.w0_c00417{width:689.550000px;}
.x0_c00417{left:0.000000px;}
.x3_c00417{left:78.511681px;}
.x1_c00417{left:95.443500px;}
.x2d_c00417{left:137.785224px;}
.x41_c00417{left:138.945492px;}
.x71_c00417{left:140.130336px;}
.x67_c00417{left:141.556008px;}
.x21_c00417{left:150.468000px;}
.x46_c00417{left:153.156000px;}
.x4f_c00417{left:158.294600px;}
.x2e_c00417{left:163.709520px;}
.x47_c00417{left:169.068000px;}
.x9_c00417{left:170.076000px;}
.x22_c00417{left:171.793500px;}
.x68_c00417{left:174.173508px;}
.x91_c00417{left:175.502184px;}
.x5c_c00417{left:177.499500px;}
.x2f_c00417{left:179.882388px;}
.x48_c00417{left:186.081000px;}
.x1b_c00417{left:187.380000px;}
.x69_c00417{left:188.558508px;}
.x50_c00417{left:189.620379px;}
.x72_c00417{left:191.432124px;}
.x8b_c00417{left:193.110360px;}
.x1c_c00417{left:196.560000px;}
.x81_c00417{left:197.973204px;}
.x30_c00417{left:201.245220px;}
.x92_c00417{left:203.042448px;}
.x38_c00417{left:208.534440px;}
.x73_c00417{left:210.603348px;}
.x4_c00417{left:212.455838px;}
.xa_c00417{left:216.718500px;}
.x7c_c00417{left:219.873396px;}
.x5d_c00417{left:225.756000px;}
.x13_c00417{left:227.172000px;}
.x51_c00417{left:229.581595px;}
.x6a_c00417{left:233.656008px;}
.x93_c00417{left:237.603156px;}
.x5e_c00417{left:239.311500px;}
.xb_c00417{left:241.285500px;}
.x14_c00417{left:243.235500px;}
.x23_c00417{left:247.144500px;}
.x39_c00417{left:248.768616px;}
.x31_c00417{left:250.927824px;}
.x6b_c00417{left:254.434008px;}
.x74_c00417{left:256.234764px;}
.x49_c00417{left:259.816500px;}
.x15_c00417{left:263.296500px;}
.x24_c00417{left:264.411000px;}
.xc_c00417{left:269.463000px;}
.x7d_c00417{left:272.272476px;}
.x5f_c00417{left:274.683000px;}
.x82_c00417{left:280.598364px;}
.x8c_c00417{left:283.850592px;}
.x32_c00417{left:288.969024px;}
.x5_c00417{left:293.898958px;}
.x1d_c00417{left:295.063500px;}
.x4a_c00417{left:300.040500px;}
.x60_c00417{left:301.654500px;}
.x25_c00417{left:303.303000px;}
.x52_c00417{left:305.475060px;}
.x33_c00417{left:307.616880px;}
.x83_c00417{left:312.481116px;}
.x3a_c00417{left:313.560600px;}
.x11_c00417{left:315.090000px;}
.x6_c00417{left:318.870000px;}
.xd_c00417{left:321.315000px;}
.x1e_c00417{left:326.124000px;}
.x75_c00417{left:328.326372px;}
.x3b_c00417{left:329.764968px;}
.x87_c00417{left:332.376312px;}
.x12_c00417{left:334.800000px;}
.x53_c00417{left:338.638329px;}
.x34_c00417{left:343.258092px;}
.x3c_c00417{left:348.666312px;}
.x16_c00417{left:349.914000px;}
.x61_c00417{left:354.864000px;}
.x1f_c00417{left:356.881500px;}
.x84_c00417{left:364.821036px;}
.xe_c00417{left:372.082500px;}
.x26_c00417{left:374.041500px;}
.x35_c00417{left:375.671328px;}
.x7_c00417{left:376.920000px;}
.x17_c00417{left:379.614000px;}
.x76_c00417{left:382.598340px;}
.x62_c00417{left:385.660500px;}
.x27_c00417{left:389.418000px;}
.x7e_c00417{left:390.524028px;}
.x3d_c00417{left:396.209928px;}
.x8_c00417{left:401.760000px;}
.x6c_c00417{left:406.976508px;}
.x20_c00417{left:412.803000px;}
.x85_c00417{left:417.783468px;}
.x54_c00417{left:419.655752px;}
.x8d_c00417{left:424.784208px;}
.xf_c00417{left:427.147500px;}
.x7f_c00417{left:428.619228px;}
.x2_c00417{left:434.887500px;}
.x77_c00417{left:437.680368px;}
.x6d_c00417{left:442.658508px;}
.x10_c00417{left:444.156000px;}
.x42_c00417{left:448.866612px;}
.x55_c00417{left:449.907541px;}
.x94_c00417{left:452.257896px;}
.x28_c00417{left:454.261500px;}
.x4b_c00417{left:455.850000px;}
.x18_c00417{left:458.907000px;}
.x78_c00417{left:462.250440px;}
.x3e_c00417{left:464.222388px;}
.x63_c00417{left:470.704500px;}
.x58_c00417{left:472.886898px;}
.x6e_c00417{left:485.219508px;}
.x88_c00417{left:489.251844px;}
.x19_c00417{left:491.920500px;}
.x64_c00417{left:493.660500px;}
.x6f_c00417{left:499.858008px;}
.x36_c00417{left:502.000320px;}
.x4c_c00417{left:505.249500px;}
.x79_c00417{left:507.341820px;}
.x59_c00417{left:510.445848px;}
.x29_c00417{left:512.302500px;}
.x1a_c00417{left:514.114500px;}
.x43_c00417{left:517.636812px;}
.x8e_c00417{left:519.016452px;}
.x7a_c00417{left:524.622924px;}
.x3f_c00417{left:527.404884px;}
.x2a_c00417{left:529.824000px;}
.x70_c00417{left:531.700008px;}
.x5a_c00417{left:532.841718px;}
.x44_c00417{left:533.944032px;}
.x86_c00417{left:537.136428px;}
.x56_c00417{left:539.819911px;}
.x2b_c00417{left:547.401000px;}
.x65_c00417{left:550.089000px;}
.x40_c00417{left:555.768156px;}
.x8f_c00417{left:557.382264px;}
.x57_c00417{left:559.807275px;}
.x45_c00417{left:560.935236px;}
.x37_c00417{left:562.518828px;}
.x89_c00417{left:564.855180px;}
.x4d_c00417{left:572.754000px;}
.x7b_c00417{left:580.244988px;}
.x95_c00417{left:581.321652px;}
.x5b_c00417{left:583.555300px;}
.x96_c00417{left:588.612120px;}
.x8a_c00417{left:597.795792px;}
.x90_c00417{left:598.950600px;}
.x2c_c00417{left:600.031500px;}
.x4e_c00417{left:601.921500px;}
.x66_c00417{left:605.173500px;}
.x80_c00417{left:608.677788px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
.fs5_c00417{font-size:19.600000pt;}
.fs8_c00417{font-size:41.067981pt;}
.fs7_c00417{font-size:42.001344pt;}
.fs10_c00417{font-size:42.934707pt;}
.fsa_c00417{font-size:43.867741pt;}
.fs9_c00417{font-size:43.868070pt;}
.fse_c00417{font-size:44.801434pt;}
.fs11_c00417{font-size:45.734797pt;}
.fsd_c00417{font-size:47.601523pt;}
.fsc_c00417{font-size:48.534886pt;}
.fsf_c00417{font-size:51.334976pt;}
.fsb_c00417{font-size:53.201303pt;}
.fs3_c00417{font-size:57.866667pt;}
.fs2_c00417{font-size:59.733333pt;}
.fs4_c00417{font-size:62.533333pt;}
.fs6_c00417{font-size:70.965246pt;}
.fs0_c00417{font-size:97.072539pt;}
.fs1_c00417{font-size:136.274911pt;}
.y0_c00417{bottom:0.000000pt;}
.ye6_c00417{bottom:139.145109pt;}
.ye9_c00417{bottom:139.145333pt;}
.ye0_c00417{bottom:139.145429pt;}
.ye8_c00417{bottom:139.145515pt;}
.ye7_c00417{bottom:139.145525pt;}
.ye5_c00417{bottom:139.145589pt;}
.ydf_c00417{bottom:139.145600pt;}
.yeb_c00417{bottom:139.145749pt;}
.ye4_c00417{bottom:139.145760pt;}
.ye1_c00417{bottom:139.145845pt;}
.ye3_c00417{bottom:139.145877pt;}
.yea_c00417{bottom:139.145909pt;}
.yde_c00417{bottom:139.146197pt;}
.ye2_c00417{bottom:139.146368pt;}
.ycf_c00417{bottom:154.321771pt;}
.yd0_c00417{bottom:154.602400pt;}
.yd1_c00417{bottom:154.641131pt;}
.yd2_c00417{bottom:154.870901pt;}
.yd3_c00417{bottom:154.977781pt;}
.yd4_c00417{bottom:155.205056pt;}
.yd5_c00417{bottom:155.280736pt;}
.yd6_c00417{bottom:155.507957pt;}
.yd7_c00417{bottom:155.776565pt;}
.yd8_c00417{bottom:155.874507pt;}
.yd9_c00417{bottom:156.083243pt;}
.yda_c00417{bottom:156.488640pt;}
.ydb_c00417{bottom:156.670667pt;}
.ydc_c00417{bottom:156.908821pt;}
.ydd_c00417{bottom:157.167083pt;}
.yc0_c00417{bottom:171.469173pt;}
.yc1_c00417{bottom:171.469643pt;}
.yc3_c00417{bottom:171.469739pt;}
.yc2_c00417{bottom:171.470069pt;}
.yc4_c00417{bottom:171.470368pt;}
.yc5_c00417{bottom:171.470677pt;}
.yc6_c00417{bottom:171.471147pt;}
.yc7_c00417{bottom:171.471509pt;}
.yc9_c00417{bottom:171.471712pt;}
.yc8_c00417{bottom:171.471776pt;}
.yce_c00417{bottom:171.471787pt;}
.ycb_c00417{bottom:171.471968pt;}
.ycd_c00417{bottom:171.472224pt;}
.yca_c00417{bottom:171.472245pt;}
.ycc_c00417{bottom:171.472395pt;}
.yb1_c00417{bottom:186.000960pt;}
.yb2_c00417{bottom:186.361739pt;}
.yb3_c00417{bottom:186.431168pt;}
.yb4_c00417{bottom:186.693344pt;}
.yb5_c00417{bottom:186.875957pt;}
.yb6_c00417{bottom:187.074677pt;}
.yb7_c00417{bottom:187.400203pt;}
.yb8_c00417{bottom:187.470645pt;}
.yb9_c00417{bottom:187.562709pt;}
.yba_c00417{bottom:187.728821pt;}
.ybb_c00417{bottom:187.952160pt;}
.ybc_c00417{bottom:188.322912pt;}
.ybd_c00417{bottom:188.470880pt;}
.ybe_c00417{bottom:188.587211pt;}
.ybf_c00417{bottom:188.871787pt;}
.ya1_c00417{bottom:201.361963pt;}
.ya2_c00417{bottom:201.662197pt;}
.ya3_c00417{bottom:201.997131pt;}
.ya4_c00417{bottom:202.165397pt;}
.ya5_c00417{bottom:202.416416pt;}
.ya6_c00417{bottom:202.665237pt;}
.ya7_c00417{bottom:203.210528pt;}
.ya8_c00417{bottom:203.362656pt;}
.ya9_c00417{bottom:203.543883pt;}
.yaa_c00417{bottom:203.666891pt;}
.yab_c00417{bottom:203.839221pt;}
.yac_c00417{bottom:204.247264pt;}
.yad_c00417{bottom:204.338667pt;}
.yae_c00417{bottom:204.479339pt;}
.yaf_c00417{bottom:204.900320pt;}
.yb0_c00417{bottom:205.107317pt;}
.y94_c00417{bottom:218.103925pt;}
.y95_c00417{bottom:218.104245pt;}
.y93_c00417{bottom:218.104469pt;}
.y97_c00417{bottom:218.104608pt;}
.y96_c00417{bottom:218.104715pt;}
.y98_c00417{bottom:218.105184pt;}
.y99_c00417{bottom:218.105333pt;}
.y9b_c00417{bottom:218.105579pt;}
.y9c_c00417{bottom:218.105621pt;}
.ya0_c00417{bottom:218.105813pt;}
.y9a_c00417{bottom:218.105909pt;}
.y9f_c00417{bottom:218.105973pt;}
.y9d_c00417{bottom:218.106251pt;}
.y9e_c00417{bottom:218.106464pt;}
.y85_c00417{bottom:233.040896pt;}
.y86_c00417{bottom:233.272843pt;}
.y87_c00417{bottom:233.375136pt;}
.y88_c00417{bottom:233.695829pt;}
.y89_c00417{bottom:233.843584pt;}
.y8a_c00417{bottom:234.373429pt;}
.y8b_c00417{bottom:234.771115pt;}
.y8c_c00417{bottom:234.928331pt;}
.y8d_c00417{bottom:235.182069pt;}
.y8e_c00417{bottom:235.484725pt;}
.y8f_c00417{bottom:235.588821pt;}
.y90_c00417{bottom:235.815253pt;}
.y91_c00417{bottom:236.020821pt;}
.y92_c00417{bottom:236.304853pt;}
.y77_c00417{bottom:248.401333pt;}
.y78_c00417{bottom:248.576139pt;}
.y79_c00417{bottom:248.919296pt;}
.y7a_c00417{bottom:249.015691pt;}
.y7b_c00417{bottom:249.267221pt;}
.y7c_c00417{bottom:249.459019pt;}
.y7d_c00417{bottom:249.837397pt;}
.y7e_c00417{bottom:249.964309pt;}
.y7f_c00417{bottom:250.056395pt;}
.y80_c00417{bottom:250.470859pt;}
.y81_c00417{bottom:250.661152pt;}
.y82_c00417{bottom:250.824395pt;}
.y83_c00417{bottom:251.225664pt;}
.y84_c00417{bottom:251.617376pt;}
.y6e_c00417{bottom:263.761248pt;}
.y6f_c00417{bottom:264.480689pt;}
.y70_c00417{bottom:266.029264pt;}
.y71_c00417{bottom:266.208053pt;}
.y72_c00417{bottom:267.018517pt;}
.y73_c00417{bottom:267.385557pt;}
.y74_c00417{bottom:267.604913pt;}
.y75_c00417{bottom:268.100473pt;}
.y76_c00417{bottom:268.284768pt;}
.y5e_c00417{bottom:281.519703pt;}
.y5f_c00417{bottom:281.671201pt;}
.y60_c00417{bottom:281.894119pt;}
.y61_c00417{bottom:282.178768pt;}
.y62_c00417{bottom:282.325152pt;}
.y63_c00417{bottom:282.718997pt;}
.y64_c00417{bottom:282.813168pt;}
.y65_c00417{bottom:282.954681pt;}
.y66_c00417{bottom:283.207032pt;}
.y67_c00417{bottom:283.310917pt;}
.y68_c00417{bottom:283.532127pt;}
.y69_c00417{bottom:283.747028pt;}
.y6a_c00417{bottom:284.134388pt;}
.y6b_c00417{bottom:284.386487pt;}
.y6c_c00417{bottom:284.528187pt;}
.y6d_c00417{bottom:284.816149pt;}
.y51_c00417{bottom:297.398667pt;}
.y52_c00417{bottom:297.497675pt;}
.y53_c00417{bottom:297.603533pt;}
.y54_c00417{bottom:297.944769pt;}
.y55_c00417{bottom:298.062332pt;}
.y56_c00417{bottom:298.312615pt;}
.y57_c00417{bottom:298.813432pt;}
.y58_c00417{bottom:299.282096pt;}
.y59_c00417{bottom:299.589471pt;}
.y5a_c00417{bottom:299.728780pt;}
.y5b_c00417{bottom:299.849787pt;}
.y5c_c00417{bottom:300.009499pt;}
.y5d_c00417{bottom:300.190985pt;}
.y49_c00417{bottom:311.040160pt;}
.y4a_c00417{bottom:311.438315pt;}
.y4b_c00417{bottom:314.148117pt;}
.y4c_c00417{bottom:314.897483pt;}
.y4d_c00417{bottom:315.753205pt;}
.y4e_c00417{bottom:315.955840pt;}
.y4f_c00417{bottom:316.291787pt;}
.y50_c00417{bottom:316.782827pt;}
.y3b_c00417{bottom:329.038848pt;}
.y3c_c00417{bottom:329.139851pt;}
.y3d_c00417{bottom:329.597504pt;}
.y3e_c00417{bottom:329.749280pt;}
.y3f_c00417{bottom:329.919616pt;}
.y40_c00417{bottom:330.437696pt;}
.y41_c00417{bottom:330.567595pt;}
.y42_c00417{bottom:330.719339pt;}
.y43_c00417{bottom:331.041355pt;}
.y44_c00417{bottom:331.100096pt;}
.y45_c00417{bottom:331.475563pt;}
.y46_c00417{bottom:331.643744pt;}
.y47_c00417{bottom:332.149045pt;}
.y48_c00417{bottom:332.376075pt;}
.y2d_c00417{bottom:345.119424pt;}
.y2e_c00417{bottom:345.326443pt;}
.y2f_c00417{bottom:345.456117pt;}
.y30_c00417{bottom:345.626699pt;}
.y31_c00417{bottom:346.024000pt;}
.y32_c00417{bottom:346.327851pt;}
.y33_c00417{bottom:346.476459pt;}
.y34_c00417{bottom:346.761909pt;}
.y35_c00417{bottom:347.021739pt;}
.y36_c00417{bottom:347.125824pt;}
.y37_c00417{bottom:347.501291pt;}
.y38_c00417{bottom:348.032085pt;}
.y39_c00417{bottom:348.255435pt;}
.y3a_c00417{bottom:348.517109pt;}
.y1f_c00417{bottom:361.680000pt;}
.y20_c00417{bottom:361.831648pt;}
.y21_c00417{bottom:362.231040pt;}
.y22_c00417{bottom:362.367477pt;}
.y23_c00417{bottom:362.490261pt;}
.y24_c00417{bottom:362.766827pt;}
.y25_c00417{bottom:362.845440pt;}
.y26_c00417{bottom:363.269856pt;}
.y27_c00417{bottom:363.379200pt;}
.y28_c00417{bottom:363.840309pt;}
.y29_c00417{bottom:364.253045pt;}
.y2a_c00417{bottom:364.377643pt;}
.y2b_c00417{bottom:364.502635pt;}
.y2c_c00417{bottom:364.876896pt;}
.y1b_c00417{bottom:607.693333pt;}
.y1c_c00417{bottom:608.521613pt;}
.y1d_c00417{bottom:609.341813pt;}
.y1e_c00417{bottom:610.833053pt;}
.y1a_c00417{bottom:626.993333pt;}
.y19_c00417{bottom:648.000000pt;}
.y10_c00417{bottom:661.204000pt;}
.y11_c00417{bottom:662.066667pt;}
.y12_c00417{bottom:662.309333pt;}
.y13_c00417{bottom:662.612000pt;}
.y14_c00417{bottom:663.921333pt;}
.y15_c00417{bottom:664.370667pt;}
.y16_c00417{bottom:665.569333pt;}
.y17_c00417{bottom:666.068000pt;}
.y18_c00417{bottom:666.404000pt;}
.yf_c00417{bottom:685.393333pt;}
.y7_c00417{bottom:702.004000pt;}
.y8_c00417{bottom:702.792000pt;}
.y9_c00417{bottom:703.206667pt;}
.ya_c00417{bottom:703.682667pt;}
.yb_c00417{bottom:704.558667pt;}
.yc_c00417{bottom:705.416000pt;}
.yd_c00417{bottom:706.345333pt;}
.ye_c00417{bottom:706.632000pt;}
.y6_c00417{bottom:726.713333pt;}
.y3_c00417{bottom:800.165679pt;}
.y4_c00417{bottom:802.190108pt;}
.y5_c00417{bottom:803.421160pt;}
.y1_c00417{bottom:817.681333pt;}
.y2_c00417{bottom:821.000341pt;}
.h7_c00417{height:19.600000pt;}
.ha_c00417{height:41.067981pt;}
.h9_c00417{height:42.001344pt;}
.h12_c00417{height:42.934707pt;}
.hc_c00417{height:43.867741pt;}
.hb_c00417{height:43.868070pt;}
.h10_c00417{height:44.801434pt;}
.h13_c00417{height:45.734797pt;}
.hf_c00417{height:47.601523pt;}
.he_c00417{height:48.534886pt;}
.h11_c00417{height:51.334976pt;}
.hd_c00417{height:53.201303pt;}
.h5_c00417{height:57.866667pt;}
.h4_c00417{height:59.733333pt;}
.h6_c00417{height:62.533333pt;}
.h8_c00417{height:70.965246pt;}
.h2_c00417{height:97.072539pt;}
.h3_c00417{height:136.274911pt;}
.h0_c00417{height:896.400000pt;}
.h1_c00417{height:896.666667pt;}
.w1_c00417{width:612.666667pt;}
.w0_c00417{width:612.933333pt;}
.x0_c00417{left:0.000000pt;}
.x3_c00417{left:69.788161pt;}
.x1_c00417{left:84.838667pt;}
.x2d_c00417{left:122.475755pt;}
.x41_c00417{left:123.507104pt;}
.x71_c00417{left:124.560299pt;}
.x67_c00417{left:125.827563pt;}
.x21_c00417{left:133.749333pt;}
.x46_c00417{left:136.138667pt;}
.x4f_c00417{left:140.706311pt;}
.x2e_c00417{left:145.519573pt;}
.x47_c00417{left:150.282667pt;}
.x9_c00417{left:151.178667pt;}
.x22_c00417{left:152.705333pt;}
.x68_c00417{left:154.820896pt;}
.x91_c00417{left:156.001941pt;}
.x5c_c00417{left:157.777333pt;}
.x2f_c00417{left:159.895456pt;}
.x48_c00417{left:165.405333pt;}
.x1b_c00417{left:166.560000pt;}
.x69_c00417{left:167.607563pt;}
.x50_c00417{left:168.551448pt;}
.x72_c00417{left:170.161888pt;}
.x8b_c00417{left:171.653653pt;}
.x1c_c00417{left:174.720000pt;}
.x81_c00417{left:175.976181pt;}
.x30_c00417{left:178.884640pt;}
.x92_c00417{left:180.482176pt;}
.x38_c00417{left:185.363947pt;}
.x73_c00417{left:187.202976pt;}
.x4_c00417{left:188.849633pt;}
.xa_c00417{left:192.638667pt;}
.x7c_c00417{left:195.443019pt;}
.x5d_c00417{left:200.672000pt;}
.x13_c00417{left:201.930667pt;}
.x51_c00417{left:204.072529pt;}
.x6a_c00417{left:207.694229pt;}
.x93_c00417{left:211.202805pt;}
.x5e_c00417{left:212.721333pt;}
.xb_c00417{left:214.476000pt;}
.x14_c00417{left:216.209333pt;}
.x23_c00417{left:219.684000pt;}
.x39_c00417{left:221.127659pt;}
.x31_c00417{left:223.046955pt;}
.x6b_c00417{left:226.163563pt;}
.x74_c00417{left:227.764235pt;}
.x49_c00417{left:230.948000pt;}
.x15_c00417{left:234.041333pt;}
.x24_c00417{left:235.032000pt;}
.xc_c00417{left:239.522667pt;}
.x7d_c00417{left:242.019979pt;}
.x5f_c00417{left:244.162667pt;}
.x82_c00417{left:249.420768pt;}
.x8c_c00417{left:252.311637pt;}
.x32_c00417{left:256.861355pt;}
.x5_c00417{left:261.243519pt;}
.x1d_c00417{left:262.278667pt;}
.x4a_c00417{left:266.702667pt;}
.x60_c00417{left:268.137333pt;}
.x25_c00417{left:269.602667pt;}
.x52_c00417{left:271.533387pt;}
.x33_c00417{left:273.437227pt;}
.x83_c00417{left:277.760992pt;}
.x3a_c00417{left:278.720533pt;}
.x11_c00417{left:280.080000pt;}
.x6_c00417{left:283.440000pt;}
.xd_c00417{left:285.613333pt;}
.x1e_c00417{left:289.888000pt;}
.x75_c00417{left:291.845664pt;}
.x3b_c00417{left:293.124416pt;}
.x87_c00417{left:295.445611pt;}
.x12_c00417{left:297.600000pt;}
.x53_c00417{left:301.011848pt;}
.x34_c00417{left:305.118304pt;}
.x3c_c00417{left:309.925611pt;}
.x16_c00417{left:311.034667pt;}
.x61_c00417{left:315.434667pt;}
.x1f_c00417{left:317.228000pt;}
.x84_c00417{left:324.285365pt;}
.xe_c00417{left:330.740000pt;}
.x26_c00417{left:332.481333pt;}
.x35_c00417{left:333.930069pt;}
.x7_c00417{left:335.040000pt;}
.x17_c00417{left:337.434667pt;}
.x76_c00417{left:340.087413pt;}
.x62_c00417{left:342.809333pt;}
.x27_c00417{left:346.149333pt;}
.x7e_c00417{left:347.132469pt;}
.x3d_c00417{left:352.186603pt;}
.x8_c00417{left:357.120000pt;}
.x6c_c00417{left:361.756896pt;}
.x20_c00417{left:366.936000pt;}
.x85_c00417{left:371.363083pt;}
.x54_c00417{left:373.027335pt;}
.x8d_c00417{left:377.585963pt;}
.xf_c00417{left:379.686667pt;}
.x7f_c00417{left:380.994869pt;}
.x2_c00417{left:386.566667pt;}
.x77_c00417{left:389.049216pt;}
.x6d_c00417{left:393.474229pt;}
.x10_c00417{left:394.805333pt;}
.x42_c00417{left:398.992544pt;}
.x55_c00417{left:399.917815pt;}
.x94_c00417{left:402.007019pt;}
.x28_c00417{left:403.788000pt;}
.x4b_c00417{left:405.200000pt;}
.x18_c00417{left:407.917333pt;}
.x78_c00417{left:410.889280pt;}
.x3e_c00417{left:412.642123pt;}
.x63_c00417{left:418.404000pt;}
.x58_c00417{left:420.343909pt;}
.x6e_c00417{left:431.306229pt;}
.x88_c00417{left:434.890528pt;}
.x19_c00417{left:437.262667pt;}
.x64_c00417{left:438.809333pt;}
.x6f_c00417{left:444.318229pt;}
.x36_c00417{left:446.222507pt;}
.x4c_c00417{left:449.110667pt;}
.x79_c00417{left:450.970507pt;}
.x59_c00417{left:453.729643pt;}
.x29_c00417{left:455.380000pt;}
.x1a_c00417{left:456.990667pt;}
.x43_c00417{left:460.121611pt;}
.x8e_c00417{left:461.347957pt;}
.x7a_c00417{left:466.331488pt;}
.x3f_c00417{left:468.804341pt;}
.x2a_c00417{left:470.954667pt;}
.x70_c00417{left:472.622229pt;}
.x5a_c00417{left:473.637083pt;}
.x44_c00417{left:474.616917pt;}
.x86_c00417{left:477.454603pt;}
.x56_c00417{left:479.839921pt;}
.x2b_c00417{left:486.578667pt;}
.x65_c00417{left:488.968000pt;}
.x40_c00417{left:494.016139pt;}
.x8f_c00417{left:495.450901pt;}
.x57_c00417{left:497.606467pt;}
.x45_c00417{left:498.609099pt;}
.x37_c00417{left:500.016736pt;}
.x89_c00417{left:502.093493pt;}
.x4d_c00417{left:509.114667pt;}
.x7b_c00417{left:515.773323pt;}
.x95_c00417{left:516.730357pt;}
.x5b_c00417{left:518.715823pt;}
.x96_c00417{left:523.210773pt;}
.x8a_c00417{left:531.374037pt;}
.x90_c00417{left:532.400533pt;}
.x2c_c00417{left:533.361333pt;}
.x4e_c00417{left:535.041333pt;}
.x66_c00417{left:537.932000pt;}
.x80_c00417{left:541.046923pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m64_c00418{transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016720,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{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);}
.me9_c00418{transform:matrix(0.037845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037845,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048795,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.127205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127205,0.000000,0.000000,0.250000,0,0);}
.m102_c00418{transform:matrix(0.131160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131160,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.133980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133980,0.000000,0.000000,0.250000,0,0);}
.m105_c00418{transform:matrix(0.134265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134265,0.000000,0.000000,0.250000,0,0);}
.m10a_c00418{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);}
.m15_c00418{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);}
.m95_c00418{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);}
.mb2_c00418{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);}
.m28_c00418{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);}
.mfd_c00418{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);}
.mb9_c00418{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);}
.m2b_c00418{transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);}
.mde_c00418{transform:matrix(0.158340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158340,0.000000,0.000000,0.250000,0,0);}
.m10e_c00418{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);}
.mbe_c00418{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);}
.m76_c00418{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);}
.ma0_c00418{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);}
.m67_c00418{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);}
.m4a_c00418{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);}
.m1c_c00418{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);}
.m85_c00418{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);}
.m63_c00418{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);}
.me7_c00418{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);}
.mb4_c00418{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);}
.m3a_c00418{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);}
.m58_c00418{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);}
.m34_c00418{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);}
.m93_c00418{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);}
.m97_c00418{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);}
.mdf_c00418{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);}
.m104_c00418{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);}
.m4f_c00418{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);}
.m60_c00418{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);}
.m5_c00418{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);}
.m30_c00418{transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);}
.m10d_c00418{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);}
.m88_c00418{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);}
.m38_c00418{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);}
.m6_c00418{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);}
.m9d_c00418{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);}
.ma8_c00418{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);}
.m27_c00418{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);}
.m100_c00418{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{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);}
.me2_c00418{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);}
.m5e_c00418{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);}
.m9_c00418{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);}
.mba_c00418{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);}
.mca_c00418{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);}
.mfc_c00418{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);}
.m65_c00418{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m101_c00418{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);}
.m5a_c00418{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);}
.mad_c00418{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);}
.m7b_c00418{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);}
.me5_c00418{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);}
.mc_c00418{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);}
.mbc_c00418{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);}
.mbd_c00418{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);}
.mc9_c00418{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);}
.ma9_c00418{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);}
.m9e_c00418{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);}
.m24_c00418{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);}
.m9f_c00418{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);}
.m107_c00418{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);}
.m8c_c00418{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);}
.mf0_c00418{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);}
.m106_c00418{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_c00418{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);}
.mab_c00418{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);}
.mfe_c00418{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);}
.me_c00418{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);}
.mf3_c00418{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);}
.md7_c00418{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);}
.m6f_c00418{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);}
.mce_c00418{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_c00418{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);}
.mff_c00418{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{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);}
.mb6_c00418{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);}
.m7a_c00418{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);}
.md5_c00418{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);}
.mb7_c00418{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);}
.mb_c00418{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);}
.me8_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);}
.mc1_c00418{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);}
.mec_c00418{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);}
.mea_c00418{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);}
.m62_c00418{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);}
.mf7_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);}
.m18_c00418{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);}
.mf8_c00418{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);}
.m89_c00418{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);}
.m31_c00418{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);}
.mac_c00418{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);}
.m98_c00418{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);}
.m57_c00418{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{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);}
.md4_c00418{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);}
.m4_c00418{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);}
.m109_c00418{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);}
.mae_c00418{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);}
.mb3_c00418{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);}
.m1a_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);}
.mbf_c00418{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);}
.med_c00418{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);}
.mfb_c00418{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);}
.m90_c00418{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);}
.m0_c00418{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);}
.mf2_c00418{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);}
.m2_c00418{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);}
.ma5_c00418{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);}
.m59_c00418{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);}
.m91_c00418{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);}
.m45_c00418{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);}
.m9b_c00418{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);}
.ma_c00418{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);}
.mbb_c00418{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);}
.mb8_c00418{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);}
.mdc_c00418{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);}
.mf1_c00418{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);}
.me4_c00418{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);}
.m5b_c00418{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);}
.me3_c00418{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);}
.m3c_c00418{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);}
.m48_c00418{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);}
.m1d_c00418{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);}
.md1_c00418{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);}
.m32_c00418{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);}
.m20_c00418{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);}
.m94_c00418{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);}
.m4e_c00418{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);}
.m8_c00418{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);}
.m7_c00418{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);}
.m5c_c00418{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);}
.mc7_c00418{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);}
.ma3_c00418{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);}
.m19_c00418{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{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);}
.m2d_c00418{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);}
.mc0_c00418{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);}
.me6_c00418{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);}
.mc3_c00418{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);}
.m3b_c00418{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);}
.mc6_c00418{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);}
.m46_c00418{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);}
.m10_c00418{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);}
.m5f_c00418{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);}
.mdb_c00418{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);}
.m1f_c00418{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);}
.m13_c00418{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);}
.mf_c00418{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);}
.m54_c00418{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);}
.mb5_c00418{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);}
.maf_c00418{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);}
.m79_c00418{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);}
.m8d_c00418{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);}
.mc8_c00418{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);}
.m3_c00418{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);}
.m35_c00418{transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00418{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);}
.md_c00418{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);}
.m5d_c00418{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);}
.mf4_c00418{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);}
.m9c_c00418{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);}
.m40_c00418{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);}
.m2e_c00418{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);}
.m99_c00418{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);}
.mc2_c00418{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);}
.m70_c00418{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);}
.m14_c00418{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);}
.m84_c00418{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);}
.m87_c00418{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);}
.m53_c00418{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);}
.m7d_c00418{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);}
.md2_c00418{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);}
.meb_c00418{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);}
.md0_c00418{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);}
.m4b_c00418{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);}
.m36_c00418{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);}
.m17_c00418{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);}
.m51_c00418{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);}
.mef_c00418{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);}
.m11_c00418{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.mc5_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);}
.m8f_c00418{transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219985,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{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);}
.md3_c00418{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);}
.m52_c00418{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);}
.m74_c00418{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.me1_c00418{transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{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);}
.m7f_c00418{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);}
.m2f_c00418{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.mda_c00418{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);}
.m26_c00418{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);}
.m103_c00418{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);}
.m82_c00418{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);}
.ma4_c00418{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);}
.m29_c00418{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);}
.m80_c00418{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);}
.m25_c00418{transform:matrix(0.227510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227510,0.000000,0.000000,0.250000,0,0);}
.mcd_c00418{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);}
.me0_c00418{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);}
.m7c_c00418{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);}
.m1_c00418{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);}
.maa_c00418{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);}
.m2c_c00418{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);}
.ma1_c00418{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);}
.m12_c00418{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);}
.mf6_c00418{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);}
.m37_c00418{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{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);}
.mc4_c00418{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);}
.m7e_c00418{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);}
.m77_c00418{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);}
.m96_c00418{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);}
.m66_c00418{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);}
.ma6_c00418{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);}
.m49_c00418{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);}
.m56_c00418{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);}
.m73_c00418{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);}
.m1b_c00418{transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{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);}
.mee_c00418{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);}
.m1e_c00418{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);}
.m47_c00418{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{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);}
.m44_c00418{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{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);}
.m55_c00418{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00418{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.mcc_c00418{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);}
.m23_c00418{transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);}
.m10b_c00418{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);}
.mfa_c00418{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);}
.m10c_c00418{transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);}
.md6_c00418{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{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);}
.mb0_c00418{transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);}
.m108_c00418{transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274715,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{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);}
.mdd_c00418{transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{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);}
.mcf_c00418{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313695,0.000000,0.000000,0.250000,0,0);}
.mf9_c00418{transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318560,0.000000,0.000000,0.250000,0,0);}
.m10f_c00418{transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319240,0.000000,0.000000,0.250000,0,0);}
.md8_c00418{transform:matrix(0.323370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.341440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341440,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{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);}
.m6b_c00418{transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364010,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.371015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371015,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.379755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379755,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.384260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384260,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.394375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394375,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{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);}
.mf5_c00418{transform:matrix(0.414105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414105,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.461435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461435,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.528005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528005,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.625935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625935,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.635955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635955,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.945650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945650,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;}
.fs6_c00418{font-size:19.950000px;}
.fs7_c00418{font-size:46.200000px;}
.fs15_c00418{font-size:48.300000px;}
.fs2_c00418{font-size:50.400000px;}
.fs14_c00418{font-size:51.450000px;}
.fs4_c00418{font-size:52.500000px;}
.fs1_c00418{font-size:53.550000px;}
.fs0_c00418{font-size:54.600000px;}
.fs16_c00418{font-size:57.750000px;}
.fs5_c00418{font-size:58.800000px;}
.fs9_c00418{font-size:59.850000px;}
.fs18_c00418{font-size:61.950000px;}
.fs13_c00418{font-size:63.000000px;}
.fs8_c00418{font-size:64.050000px;}
.fs3_c00418{font-size:66.150000px;}
.fs10_c00418{font-size:67.200000px;}
.fsf_c00418{font-size:69.300000px;}
.fs11_c00418{font-size:71.400000px;}
.fs12_c00418{font-size:73.500000px;}
.fsd_c00418{font-size:91.350000px;}
.fse_c00418{font-size:97.650000px;}
.fs17_c00418{font-size:101.850000px;}
.fsb_c00418{font-size:116.550000px;}
.fsc_c00418{font-size:120.750000px;}
.fsa_c00418{font-size:155.400000px;}
.y0_c00418{bottom:0.000000px;}
.y29_c00418{bottom:138.631500px;}
.y2b_c00418{bottom:160.827000px;}
.y10_c00418{bottom:161.224500px;}
.y2a_c00418{bottom:178.333500px;}
.yd_c00418{bottom:179.280000px;}
.yf_c00418{bottom:194.364000px;}
.y28_c00418{bottom:195.609000px;}
.y27_c00418{bottom:214.096500px;}
.yc_c00418{bottom:215.043000px;}
.yb_c00418{bottom:227.640000px;}
.ya_c00418{bottom:231.889500px;}
.y26_c00418{bottom:231.930000px;}
.y25_c00418{bottom:249.801000px;}
.ye_c00418{bottom:250.290000px;}
.y24_c00418{bottom:267.597000px;}
.y9_c00418{bottom:267.681000px;}
.y23_c00418{bottom:285.658500px;}
.y8_c00418{bottom:286.120500px;}
.y7_c00418{bottom:303.865500px;}
.y22_c00418{bottom:303.867000px;}
.y6_c00418{bottom:321.520500px;}
.y21_c00418{bottom:322.012500px;}
.y5_c00418{bottom:336.454500px;}
.y20_c00418{bottom:339.967500px;}
.y1f_c00418{bottom:357.787500px;}
.y4_c00418{bottom:357.939000px;}
.y3_c00418{bottom:375.840000px;}
.y1e_c00418{bottom:375.882000px;}
.y1d_c00418{bottom:393.816000px;}
.y2_c00418{bottom:394.200000px;}
.y1c_c00418{bottom:411.939000px;}
.y1_c00418{bottom:411.979500px;}
.y1b_c00418{bottom:469.620000px;}
.y1a_c00418{bottom:492.130500px;}
.y19_c00418{bottom:514.720500px;}
.y18_c00418{bottom:537.195000px;}
.y17_c00418{bottom:559.902000px;}
.y16_c00418{bottom:582.829500px;}
.y15_c00418{bottom:607.230000px;}
.y14_c00418{bottom:647.563500px;}
.y13_c00418{bottom:672.087000px;}
.y12_c00418{bottom:717.931500px;}
.y11_c00418{bottom:764.979000px;}
.h8_c00418{height:19.950000px;}
.h9_c00418{height:46.200000px;}
.h17_c00418{height:48.300000px;}
.h4_c00418{height:50.400000px;}
.h16_c00418{height:51.450000px;}
.h6_c00418{height:52.500000px;}
.h3_c00418{height:53.550000px;}
.h2_c00418{height:54.600000px;}
.h18_c00418{height:57.750000px;}
.h7_c00418{height:58.800000px;}
.hb_c00418{height:59.850000px;}
.h1a_c00418{height:61.950000px;}
.h15_c00418{height:63.000000px;}
.ha_c00418{height:64.050000px;}
.h5_c00418{height:66.150000px;}
.h12_c00418{height:67.200000px;}
.h11_c00418{height:69.300000px;}
.h13_c00418{height:71.400000px;}
.h14_c00418{height:73.500000px;}
.hf_c00418{height:91.350000px;}
.h10_c00418{height:97.650000px;}
.h19_c00418{height:101.850000px;}
.hd_c00418{height:116.550000px;}
.he_c00418{height:120.750000px;}
.hc_c00418{height:155.400000px;}
.h1_c00418{height:1005.000000px;}
.h0_c00418{height:1005.150000px;}
.w0_c00418{width:715.200000px;}
.w1_c00418{width:715.500000px;}
.x0_c00418{left:0.000000px;}
.xd_c00418{left:89.910000px;}
.x1_c00418{left:90.990000px;}
.x3a_c00418{left:93.150000px;}
.x18_c00418{left:100.170000px;}
.x36_c00418{left:102.060000px;}
.x3b_c00418{left:103.410000px;}
.x32_c00418{left:104.490000px;}
.x2e_c00418{left:105.840000px;}
.x2b_c00418{left:110.430000px;}
.x27_c00418{left:117.180000px;}
.x2_c00418{left:122.580000px;}
.xe_c00418{left:124.470000px;}
.x19_c00418{left:126.360000px;}
.x8_c00418{left:128.520000px;}
.x1e_c00418{left:136.350000px;}
.x2f_c00418{left:139.320000px;}
.x5d_c00418{left:145.800000px;}
.x64_c00418{left:147.960000px;}
.x1a_c00418{left:149.580000px;}
.x9_c00418{left:151.470000px;}
.x1f_c00418{left:153.360000px;}
.x3c_c00418{left:154.980000px;}
.xf_c00418{left:163.080000px;}
.x14_c00418{left:164.160000px;}
.x3_c00418{left:165.510000px;}
.x25_c00418{left:169.290000px;}
.x5e_c00418{left:174.150000px;}
.x55_c00418{left:176.850000px;}
.x15_c00418{left:178.740000px;}
.x20_c00418{left:181.170000px;}
.x3f_c00418{left:182.520000px;}
.x37_c00418{left:184.950000px;}
.x1b_c00418{left:187.920000px;}
.x4_c00418{left:189.270000px;}
.x2c_c00418{left:193.050000px;}
.x21_c00418{left:195.480000px;}
.x33_c00418{left:197.910000px;}
.x43_c00418{left:200.340000px;}
.x10_c00418{left:203.580000px;}
.x28_c00418{left:204.660000px;}
.x26_c00418{left:206.550000px;}
.x38_c00418{left:216.540000px;}
.xa_c00418{left:218.970000px;}
.x16_c00418{left:225.450000px;}
.x11_c00418{left:226.530000px;}
.x47_c00418{left:230.040000px;}
.x29_c00418{left:235.440000px;}
.x1c_c00418{left:237.060000px;}
.x2d_c00418{left:239.220000px;}
.x50_c00418{left:240.840000px;}
.x22_c00418{left:242.730000px;}
.x30_c00418{left:244.350000px;}
.x3d_c00418{left:246.780000px;}
.x5_c00418{left:247.860000px;}
.x34_c00418{left:249.210000px;}
.x4a_c00418{left:254.070000px;}
.xb_c00418{left:256.500000px;}
.x12_c00418{left:258.930000px;}
.x5f_c00418{left:260.010000px;}
.x3e_c00418{left:263.520000px;}
.x17_c00418{left:265.950000px;}
.x6_c00418{left:267.840000px;}
.x23_c00418{left:269.460000px;}
.x2a_c00418{left:270.810000px;}
.x4b_c00418{left:274.320000px;}
.x35_c00418{left:275.670000px;}
.x6a_c00418{left:281.610000px;}
.x24_c00418{left:282.690000px;}
.x56_c00418{left:285.660000px;}
.x49_c00418{left:289.710000px;}
.x39_c00418{left:290.790000px;}
.x41_c00418{left:291.870000px;}
.xc_c00418{left:294.030000px;}
.x1d_c00418{left:298.890000px;}
.x7_c00418{left:299.970000px;}
.x31_c00418{left:304.290000px;}
.x40_c00418{left:306.180000px;}
.x46_c00418{left:307.260000px;}
.x13_c00418{left:308.610000px;}
.x4c_c00418{left:314.280000px;}
.x42_c00418{left:325.620000px;}
.x51_c00418{left:327.780000px;}
.x44_c00418{left:331.830000px;}
.x9f_c00418{left:332.910000px;}
.x48_c00418{left:336.150000px;}
.x6b_c00418{left:338.580000px;}
.x60_c00418{left:341.820000px;}
.x84_c00418{left:342.900000px;}
.x52_c00418{left:343.980000px;}
.x4d_c00418{left:352.890000px;}
.x76_c00418{left:355.320000px;}
.x65_c00418{left:358.290000px;}
.x57_c00418{left:360.180000px;}
.x6c_c00418{left:361.530000px;}
.x61_c00418{left:367.200000px;}
.x85_c00418{left:369.630000px;}
.xa1_c00418{left:374.490000px;}
.x88_c00418{left:376.380000px;}
.x78_c00418{left:378.000000px;}
.x9e_c00418{left:380.970000px;}
.x7f_c00418{left:383.940000px;}
.x58_c00418{left:385.020000px;}
.x45_c00418{left:386.910000px;}
.x6f_c00418{left:388.800000px;}
.x66_c00418{left:389.880000px;}
.x6d_c00418{left:390.960000px;}
.xa2_c00418{left:392.040000px;}
.x53_c00418{left:401.760000px;}
.x70_c00418{left:406.080000px;}
.x62_c00418{left:408.510000px;}
.x96_c00418{left:411.480000px;}
.x89_c00418{left:417.420000px;}
.x9c_c00418{left:421.200000px;}
.x4e_c00418{left:423.630000px;}
.x67_c00418{left:427.680000px;}
.x79_c00418{left:429.300000px;}
.x59_c00418{left:432.540000px;}
.x93_c00418{left:435.240000px;}
.xa3_c00418{left:439.290000px;}
.x8d_c00418{left:440.910000px;}
.x68_c00418{left:446.310000px;}
.x7a_c00418{left:447.390000px;}
.x6e_c00418{left:448.470000px;}
.x77_c00418{left:450.090000px;}
.x98_c00418{left:452.520000px;}
.x94_c00418{left:454.950000px;}
.x80_c00418{left:456.300000px;}
.x71_c00418{left:457.380000px;}
.x5a_c00418{left:460.350000px;}
.x63_c00418{left:462.240000px;}
.x7b_c00418{left:466.290000px;}
.x8a_c00418{left:471.420000px;}
.x8e_c00418{left:473.040000px;}
.x9a_c00418{left:474.120000px;}
.x54_c00418{left:476.280000px;}
.x97_c00418{left:478.710000px;}
.x72_c00418{left:480.060000px;}
.x4f_c00418{left:482.490000px;}
.xa0_c00418{left:483.570000px;}
.x5b_c00418{left:484.650000px;}
.x7c_c00418{left:487.620000px;}
.x81_c00418{left:492.750000px;}
.x91_c00418{left:494.370000px;}
.x99_c00418{left:496.530000px;}
.x69_c00418{left:499.770000px;}
.x8b_c00418{left:506.250000px;}
.x82_c00418{left:508.140000px;}
.x73_c00418{left:515.700000px;}
.x92_c00418{left:518.400000px;}
.x8f_c00418{left:521.370000px;}
.x7d_c00418{left:527.040000px;}
.x9b_c00418{left:533.250000px;}
.x74_c00418{left:534.600000px;}
.x83_c00418{left:538.650000px;}
.x95_c00418{left:544.860000px;}
.x9d_c00418{left:546.210000px;}
.x5c_c00418{left:547.830000px;}
.x86_c00418{left:549.180000px;}
.x90_c00418{left:551.340000px;}
.x75_c00418{left:553.230000px;}
.x7e_c00418{left:559.980000px;}
.x8c_c00418{left:562.410000px;}
.x87_c00418{left:565.380000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
.fs6_c00418{font-size:17.733333pt;}
.fs7_c00418{font-size:41.066667pt;}
.fs15_c00418{font-size:42.933333pt;}
.fs2_c00418{font-size:44.800000pt;}
.fs14_c00418{font-size:45.733333pt;}
.fs4_c00418{font-size:46.666667pt;}
.fs1_c00418{font-size:47.600000pt;}
.fs0_c00418{font-size:48.533333pt;}
.fs16_c00418{font-size:51.333333pt;}
.fs5_c00418{font-size:52.266667pt;}
.fs9_c00418{font-size:53.200000pt;}
.fs18_c00418{font-size:55.066667pt;}
.fs13_c00418{font-size:56.000000pt;}
.fs8_c00418{font-size:56.933333pt;}
.fs3_c00418{font-size:58.800000pt;}
.fs10_c00418{font-size:59.733333pt;}
.fsf_c00418{font-size:61.600000pt;}
.fs11_c00418{font-size:63.466667pt;}
.fs12_c00418{font-size:65.333333pt;}
.fsd_c00418{font-size:81.200000pt;}
.fse_c00418{font-size:86.800000pt;}
.fs17_c00418{font-size:90.533333pt;}
.fsb_c00418{font-size:103.600000pt;}
.fsc_c00418{font-size:107.333333pt;}
.fsa_c00418{font-size:138.133333pt;}
.y0_c00418{bottom:0.000000pt;}
.y29_c00418{bottom:123.228000pt;}
.y2b_c00418{bottom:142.957333pt;}
.y10_c00418{bottom:143.310667pt;}
.y2a_c00418{bottom:158.518667pt;}
.yd_c00418{bottom:159.360000pt;}
.yf_c00418{bottom:172.768000pt;}
.y28_c00418{bottom:173.874667pt;}
.y27_c00418{bottom:190.308000pt;}
.yc_c00418{bottom:191.149333pt;}
.yb_c00418{bottom:202.346667pt;}
.ya_c00418{bottom:206.124000pt;}
.y26_c00418{bottom:206.160000pt;}
.y25_c00418{bottom:222.045333pt;}
.ye_c00418{bottom:222.480000pt;}
.y24_c00418{bottom:237.864000pt;}
.y9_c00418{bottom:237.938667pt;}
.y23_c00418{bottom:253.918667pt;}
.y8_c00418{bottom:254.329333pt;}
.y7_c00418{bottom:270.102667pt;}
.y22_c00418{bottom:270.104000pt;}
.y6_c00418{bottom:285.796000pt;}
.y21_c00418{bottom:286.233333pt;}
.y5_c00418{bottom:299.070667pt;}
.y20_c00418{bottom:302.193333pt;}
.y1f_c00418{bottom:318.033333pt;}
.y4_c00418{bottom:318.168000pt;}
.y3_c00418{bottom:334.080000pt;}
.y1e_c00418{bottom:334.117333pt;}
.y1d_c00418{bottom:350.058667pt;}
.y2_c00418{bottom:350.400000pt;}
.y1c_c00418{bottom:366.168000pt;}
.y1_c00418{bottom:366.204000pt;}
.y1b_c00418{bottom:417.440000pt;}
.y1a_c00418{bottom:437.449333pt;}
.y19_c00418{bottom:457.529333pt;}
.y18_c00418{bottom:477.506667pt;}
.y17_c00418{bottom:497.690667pt;}
.y16_c00418{bottom:518.070667pt;}
.y15_c00418{bottom:539.760000pt;}
.y14_c00418{bottom:575.612000pt;}
.y13_c00418{bottom:597.410667pt;}
.y12_c00418{bottom:638.161333pt;}
.y11_c00418{bottom:679.981333pt;}
.h8_c00418{height:17.733333pt;}
.h9_c00418{height:41.066667pt;}
.h17_c00418{height:42.933333pt;}
.h4_c00418{height:44.800000pt;}
.h16_c00418{height:45.733333pt;}
.h6_c00418{height:46.666667pt;}
.h3_c00418{height:47.600000pt;}
.h2_c00418{height:48.533333pt;}
.h18_c00418{height:51.333333pt;}
.h7_c00418{height:52.266667pt;}
.hb_c00418{height:53.200000pt;}
.h1a_c00418{height:55.066667pt;}
.h15_c00418{height:56.000000pt;}
.ha_c00418{height:56.933333pt;}
.h5_c00418{height:58.800000pt;}
.h12_c00418{height:59.733333pt;}
.h11_c00418{height:61.600000pt;}
.h13_c00418{height:63.466667pt;}
.h14_c00418{height:65.333333pt;}
.hf_c00418{height:81.200000pt;}
.h10_c00418{height:86.800000pt;}
.h19_c00418{height:90.533333pt;}
.hd_c00418{height:103.600000pt;}
.he_c00418{height:107.333333pt;}
.hc_c00418{height:138.133333pt;}
.h1_c00418{height:893.333333pt;}
.h0_c00418{height:893.466667pt;}
.w0_c00418{width:635.733333pt;}
.w1_c00418{width:636.000000pt;}
.x0_c00418{left:0.000000pt;}
.xd_c00418{left:79.920000pt;}
.x1_c00418{left:80.880000pt;}
.x3a_c00418{left:82.800000pt;}
.x18_c00418{left:89.040000pt;}
.x36_c00418{left:90.720000pt;}
.x3b_c00418{left:91.920000pt;}
.x32_c00418{left:92.880000pt;}
.x2e_c00418{left:94.080000pt;}
.x2b_c00418{left:98.160000pt;}
.x27_c00418{left:104.160000pt;}
.x2_c00418{left:108.960000pt;}
.xe_c00418{left:110.640000pt;}
.x19_c00418{left:112.320000pt;}
.x8_c00418{left:114.240000pt;}
.x1e_c00418{left:121.200000pt;}
.x2f_c00418{left:123.840000pt;}
.x5d_c00418{left:129.600000pt;}
.x64_c00418{left:131.520000pt;}
.x1a_c00418{left:132.960000pt;}
.x9_c00418{left:134.640000pt;}
.x1f_c00418{left:136.320000pt;}
.x3c_c00418{left:137.760000pt;}
.xf_c00418{left:144.960000pt;}
.x14_c00418{left:145.920000pt;}
.x3_c00418{left:147.120000pt;}
.x25_c00418{left:150.480000pt;}
.x5e_c00418{left:154.800000pt;}
.x55_c00418{left:157.200000pt;}
.x15_c00418{left:158.880000pt;}
.x20_c00418{left:161.040000pt;}
.x3f_c00418{left:162.240000pt;}
.x37_c00418{left:164.400000pt;}
.x1b_c00418{left:167.040000pt;}
.x4_c00418{left:168.240000pt;}
.x2c_c00418{left:171.600000pt;}
.x21_c00418{left:173.760000pt;}
.x33_c00418{left:175.920000pt;}
.x43_c00418{left:178.080000pt;}
.x10_c00418{left:180.960000pt;}
.x28_c00418{left:181.920000pt;}
.x26_c00418{left:183.600000pt;}
.x38_c00418{left:192.480000pt;}
.xa_c00418{left:194.640000pt;}
.x16_c00418{left:200.400000pt;}
.x11_c00418{left:201.360000pt;}
.x47_c00418{left:204.480000pt;}
.x29_c00418{left:209.280000pt;}
.x1c_c00418{left:210.720000pt;}
.x2d_c00418{left:212.640000pt;}
.x50_c00418{left:214.080000pt;}
.x22_c00418{left:215.760000pt;}
.x30_c00418{left:217.200000pt;}
.x3d_c00418{left:219.360000pt;}
.x5_c00418{left:220.320000pt;}
.x34_c00418{left:221.520000pt;}
.x4a_c00418{left:225.840000pt;}
.xb_c00418{left:228.000000pt;}
.x12_c00418{left:230.160000pt;}
.x5f_c00418{left:231.120000pt;}
.x3e_c00418{left:234.240000pt;}
.x17_c00418{left:236.400000pt;}
.x6_c00418{left:238.080000pt;}
.x23_c00418{left:239.520000pt;}
.x2a_c00418{left:240.720000pt;}
.x4b_c00418{left:243.840000pt;}
.x35_c00418{left:245.040000pt;}
.x6a_c00418{left:250.320000pt;}
.x24_c00418{left:251.280000pt;}
.x56_c00418{left:253.920000pt;}
.x49_c00418{left:257.520000pt;}
.x39_c00418{left:258.480000pt;}
.x41_c00418{left:259.440000pt;}
.xc_c00418{left:261.360000pt;}
.x1d_c00418{left:265.680000pt;}
.x7_c00418{left:266.640000pt;}
.x31_c00418{left:270.480000pt;}
.x40_c00418{left:272.160000pt;}
.x46_c00418{left:273.120000pt;}
.x13_c00418{left:274.320000pt;}
.x4c_c00418{left:279.360000pt;}
.x42_c00418{left:289.440000pt;}
.x51_c00418{left:291.360000pt;}
.x44_c00418{left:294.960000pt;}
.x9f_c00418{left:295.920000pt;}
.x48_c00418{left:298.800000pt;}
.x6b_c00418{left:300.960000pt;}
.x60_c00418{left:303.840000pt;}
.x84_c00418{left:304.800000pt;}
.x52_c00418{left:305.760000pt;}
.x4d_c00418{left:313.680000pt;}
.x76_c00418{left:315.840000pt;}
.x65_c00418{left:318.480000pt;}
.x57_c00418{left:320.160000pt;}
.x6c_c00418{left:321.360000pt;}
.x61_c00418{left:326.400000pt;}
.x85_c00418{left:328.560000pt;}
.xa1_c00418{left:332.880000pt;}
.x88_c00418{left:334.560000pt;}
.x78_c00418{left:336.000000pt;}
.x9e_c00418{left:338.640000pt;}
.x7f_c00418{left:341.280000pt;}
.x58_c00418{left:342.240000pt;}
.x45_c00418{left:343.920000pt;}
.x6f_c00418{left:345.600000pt;}
.x66_c00418{left:346.560000pt;}
.x6d_c00418{left:347.520000pt;}
.xa2_c00418{left:348.480000pt;}
.x53_c00418{left:357.120000pt;}
.x70_c00418{left:360.960000pt;}
.x62_c00418{left:363.120000pt;}
.x96_c00418{left:365.760000pt;}
.x89_c00418{left:371.040000pt;}
.x9c_c00418{left:374.400000pt;}
.x4e_c00418{left:376.560000pt;}
.x67_c00418{left:380.160000pt;}
.x79_c00418{left:381.600000pt;}
.x59_c00418{left:384.480000pt;}
.x93_c00418{left:386.880000pt;}
.xa3_c00418{left:390.480000pt;}
.x8d_c00418{left:391.920000pt;}
.x68_c00418{left:396.720000pt;}
.x7a_c00418{left:397.680000pt;}
.x6e_c00418{left:398.640000pt;}
.x77_c00418{left:400.080000pt;}
.x98_c00418{left:402.240000pt;}
.x94_c00418{left:404.400000pt;}
.x80_c00418{left:405.600000pt;}
.x71_c00418{left:406.560000pt;}
.x5a_c00418{left:409.200000pt;}
.x63_c00418{left:410.880000pt;}
.x7b_c00418{left:414.480000pt;}
.x8a_c00418{left:419.040000pt;}
.x8e_c00418{left:420.480000pt;}
.x9a_c00418{left:421.440000pt;}
.x54_c00418{left:423.360000pt;}
.x97_c00418{left:425.520000pt;}
.x72_c00418{left:426.720000pt;}
.x4f_c00418{left:428.880000pt;}
.xa0_c00418{left:429.840000pt;}
.x5b_c00418{left:430.800000pt;}
.x7c_c00418{left:433.440000pt;}
.x81_c00418{left:438.000000pt;}
.x91_c00418{left:439.440000pt;}
.x99_c00418{left:441.360000pt;}
.x69_c00418{left:444.240000pt;}
.x8b_c00418{left:450.000000pt;}
.x82_c00418{left:451.680000pt;}
.x73_c00418{left:458.400000pt;}
.x92_c00418{left:460.800000pt;}
.x8f_c00418{left:463.440000pt;}
.x7d_c00418{left:468.480000pt;}
.x9b_c00418{left:474.000000pt;}
.x74_c00418{left:475.200000pt;}
.x83_c00418{left:478.800000pt;}
.x95_c00418{left:484.320000pt;}
.x9d_c00418{left:485.520000pt;}
.x5c_c00418{left:486.960000pt;}
.x86_c00418{left:488.160000pt;}
.x90_c00418{left:490.080000pt;}
.x75_c00418{left:491.760000pt;}
.x7e_c00418{left:497.760000pt;}
.x8c_c00418{left:499.920000pt;}
.x87_c00418{left:502.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m11b_c00419{transform:matrix(0.009149,-0.000165,0.004499,0.249960,0,0);-ms-transform:matrix(0.009149,-0.000165,0.004499,0.249960,0,0);-webkit-transform:matrix(0.009149,-0.000165,0.004499,0.249960,0,0);}
.mf_c00419{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);}
.mc9_c00419{transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);}
.m17d_c00419{transform:matrix(0.024995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024995,0.000000,0.000000,0.250000,0,0);}
.m123_c00419{transform:matrix(0.029985,-0.000540,0.004499,0.249960,0,0);-ms-transform:matrix(0.029985,-0.000540,0.004499,0.249960,0,0);-webkit-transform:matrix(0.029985,-0.000540,0.004499,0.249960,0,0);}
.md3_c00419{transform:matrix(0.050820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050820,0.000000,0.000000,0.250000,0,0);}
.m17c_c00419{transform:matrix(0.062202,-0.000995,0.003999,0.249968,0,0);-ms-transform:matrix(0.062202,-0.000995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.062202,-0.000995,0.003999,0.249968,0,0);}
.m4_c00419{transform:matrix(0.075630,-0.000908,0.003000,0.249982,0,0);-ms-transform:matrix(0.075630,-0.000908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.075630,-0.000908,0.003000,0.249982,0,0);}
.m6_c00419{transform:matrix(0.091203,-0.001094,0.003000,0.249982,0,0);-ms-transform:matrix(0.091203,-0.001094,0.003000,0.249982,0,0);-webkit-transform:matrix(0.091203,-0.001094,0.003000,0.249982,0,0);}
.m14e_c00419{transform:matrix(0.096851,-0.001646,0.004249,0.249964,0,0);-ms-transform:matrix(0.096851,-0.001646,0.004249,0.249964,0,0);-webkit-transform:matrix(0.096851,-0.001646,0.004249,0.249964,0,0);}
.m82_c00419{transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103505,0.000000,0.000000,0.250000,0,0);}
.mcb_c00419{transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105385,0.000000,0.000000,0.250000,0,0);}
.m133_c00419{transform:matrix(0.105645,-0.001796,0.004249,0.249964,0,0);-ms-transform:matrix(0.105645,-0.001796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.105645,-0.001796,0.004249,0.249964,0,0);}
.m6a_c00419{transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110705,0.000000,0.000000,0.250000,0,0);}
.m188_c00419{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m17b_c00419{transform:matrix(0.139437,-0.002231,0.003999,0.249968,0,0);-ms-transform:matrix(0.139437,-0.002231,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139437,-0.002231,0.003999,0.249968,0,0);}
.m3c_c00419{transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);}
.m194_c00419{transform:matrix(0.142470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142470,0.000000,0.000000,0.250000,0,0);}
.mc4_c00419{transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143740,0.000000,0.000000,0.250000,0,0);}
.m147_c00419{transform:matrix(0.145689,-0.002477,0.004249,0.249964,0,0);-ms-transform:matrix(0.145689,-0.002477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145689,-0.002477,0.004249,0.249964,0,0);}
.mde_c00419{transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147880,0.000000,0.000000,0.250000,0,0);}
.m3d_c00419{transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.148202,-0.001927,0.003250,0.249979,0,0);-ms-transform:matrix(0.148202,-0.001927,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148202,-0.001927,0.003250,0.249979,0,0);}
.m1c_c00419{transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);-ms-transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);}
.mdc_c00419{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);}
.mc6_c00419{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);}
.m168_c00419{transform:matrix(0.153310,-0.002453,0.003999,0.249968,0,0);-ms-transform:matrix(0.153310,-0.002453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153310,-0.002453,0.003999,0.249968,0,0);}
.m18a_c00419{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);}
.m14f_c00419{transform:matrix(0.154563,-0.002628,0.004249,0.249964,0,0);-ms-transform:matrix(0.154563,-0.002628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.154563,-0.002628,0.004249,0.249964,0,0);}
.m14_c00419{transform:matrix(0.154757,-0.002012,0.003250,0.249979,0,0);-ms-transform:matrix(0.154757,-0.002012,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154757,-0.002012,0.003250,0.249979,0,0);}
.m13b_c00419{transform:matrix(0.156782,-0.002665,0.004249,0.249964,0,0);-ms-transform:matrix(0.156782,-0.002665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156782,-0.002665,0.004249,0.249964,0,0);}
.m111_c00419{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);}
.m25_c00419{transform:matrix(0.157652,-0.002049,0.003250,0.249979,0,0);-ms-transform:matrix(0.157652,-0.002049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157652,-0.002049,0.003250,0.249979,0,0);}
.mea_c00419{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);}
.m37_c00419{transform:matrix(0.158532,-0.002061,0.003250,0.249979,0,0);-ms-transform:matrix(0.158532,-0.002061,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158532,-0.002061,0.003250,0.249979,0,0);}
.m9d_c00419{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);}
.m189_c00419{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);}
.mf0_c00419{transform:matrix(0.159994,-0.002240,0.003500,0.249976,0,0);-ms-transform:matrix(0.159994,-0.002240,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159994,-0.002240,0.003500,0.249976,0,0);}
.me1_c00419{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);}
.m159_c00419{transform:matrix(0.160172,-0.002723,0.004249,0.249964,0,0);-ms-transform:matrix(0.160172,-0.002723,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160172,-0.002723,0.004249,0.249964,0,0);}
.m15f_c00419{transform:matrix(0.160577,-0.002730,0.004249,0.249964,0,0);-ms-transform:matrix(0.160577,-0.002730,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160577,-0.002730,0.004249,0.249964,0,0);}
.md1_c00419{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);}
.m18d_c00419{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);}
.m18b_c00419{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);}
.m190_c00419{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);}
.mdb_c00419{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);}
.m193_c00419{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);}
.m169_c00419{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);}
.m34_c00419{transform:matrix(0.164681,-0.002141,0.003250,0.249979,0,0);-ms-transform:matrix(0.164681,-0.002141,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164681,-0.002141,0.003250,0.249979,0,0);}
.m18e_c00419{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);}
.mff_c00419{transform:matrix(0.165476,-0.002482,0.003750,0.249972,0,0);-ms-transform:matrix(0.165476,-0.002482,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165476,-0.002482,0.003750,0.249972,0,0);}
.m16a_c00419{transform:matrix(0.166134,-0.002658,0.003999,0.249968,0,0);-ms-transform:matrix(0.166134,-0.002658,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166134,-0.002658,0.003999,0.249968,0,0);}
.m12_c00419{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);}
.m16b_c00419{transform:matrix(0.166484,-0.002664,0.003999,0.249968,0,0);-ms-transform:matrix(0.166484,-0.002664,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166484,-0.002664,0.003999,0.249968,0,0);}
.m14a_c00419{transform:matrix(0.167086,-0.002840,0.004249,0.249964,0,0);-ms-transform:matrix(0.167086,-0.002840,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167086,-0.002840,0.004249,0.249964,0,0);}
.m175_c00419{transform:matrix(0.167439,-0.002679,0.003999,0.249968,0,0);-ms-transform:matrix(0.167439,-0.002679,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167439,-0.002679,0.003999,0.249968,0,0);}
.m182_c00419{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);}
.m83_c00419{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);}
.m102_c00419{transform:matrix(0.167896,-0.002518,0.003750,0.249972,0,0);-ms-transform:matrix(0.167896,-0.002518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167896,-0.002518,0.003750,0.249972,0,0);}
.ma5_c00419{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);}
.m36_c00419{transform:matrix(0.168216,-0.002187,0.003250,0.249979,0,0);-ms-transform:matrix(0.168216,-0.002187,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168216,-0.002187,0.003250,0.249979,0,0);}
.m195_c00419{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);}
.md6_c00419{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);}
.m32_c00419{transform:matrix(0.168391,-0.002189,0.003250,0.249979,0,0);-ms-transform:matrix(0.168391,-0.002189,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168391,-0.002189,0.003250,0.249979,0,0);}
.m3a_c00419{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);}
.m13_c00419{transform:matrix(0.168671,-0.002193,0.003250,0.249979,0,0);-ms-transform:matrix(0.168671,-0.002193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168671,-0.002193,0.003250,0.249979,0,0);}
.md7_c00419{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);}
.m192_c00419{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);}
.m55_c00419{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);}
.m2e_c00419{transform:matrix(0.169116,-0.002199,0.003250,0.249979,0,0);-ms-transform:matrix(0.169116,-0.002199,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169116,-0.002199,0.003250,0.249979,0,0);}
.m1e_c00419{transform:matrix(0.169776,-0.002207,0.003250,0.249979,0,0);-ms-transform:matrix(0.169776,-0.002207,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169776,-0.002207,0.003250,0.249979,0,0);}
.m10c_c00419{transform:matrix(0.169911,-0.002549,0.003750,0.249972,0,0);-ms-transform:matrix(0.169911,-0.002549,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169911,-0.002549,0.003750,0.249972,0,0);}
.m122_c00419{transform:matrix(0.170092,-0.003062,0.004499,0.249960,0,0);-ms-transform:matrix(0.170092,-0.003062,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170092,-0.003062,0.004499,0.249960,0,0);}
.m157_c00419{transform:matrix(0.170200,-0.002893,0.004249,0.249964,0,0);-ms-transform:matrix(0.170200,-0.002893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170200,-0.002893,0.004249,0.249964,0,0);}
.mce_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);}
.m23_c00419{transform:matrix(0.170411,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170411,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170411,-0.002215,0.003250,0.249979,0,0);}
.m49_c00419{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);}
.m28_c00419{transform:matrix(0.170856,-0.002221,0.003250,0.249979,0,0);-ms-transform:matrix(0.170856,-0.002221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170856,-0.002221,0.003250,0.249979,0,0);}
.m10f_c00419{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);}
.m1b_c00419{transform:matrix(0.172015,-0.002236,0.003250,0.249979,0,0);-ms-transform:matrix(0.172015,-0.002236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172015,-0.002236,0.003250,0.249979,0,0);}
.ma2_c00419{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);}
.mee_c00419{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);}
.mc2_c00419{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);}
.m191_c00419{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);}
.mdf_c00419{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);}
.m15_c00419{transform:matrix(0.173600,-0.002257,0.003250,0.249979,0,0);-ms-transform:matrix(0.173600,-0.002257,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173600,-0.002257,0.003250,0.249979,0,0);}
.mf2_c00419{transform:matrix(0.173843,-0.002434,0.003500,0.249976,0,0);-ms-transform:matrix(0.173843,-0.002434,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173843,-0.002434,0.003500,0.249976,0,0);}
.m186_c00419{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);}
.m125_c00419{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);}
.m89_c00419{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);}
.m61_c00419{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);}
.meb_c00419{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);}
.m10b_c00419{transform:matrix(0.174955,-0.002624,0.003750,0.249972,0,0);-ms-transform:matrix(0.174955,-0.002624,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174955,-0.002624,0.003750,0.249972,0,0);}
.m136_c00419{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);}
.mc8_c00419{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);}
.m18_c00419{transform:matrix(0.175210,-0.002278,0.003250,0.249979,0,0);-ms-transform:matrix(0.175210,-0.002278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.175210,-0.002278,0.003250,0.249979,0,0);}
.m14c_c00419{transform:matrix(0.175430,-0.002982,0.004249,0.249964,0,0);-ms-transform:matrix(0.175430,-0.002982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175430,-0.002982,0.004249,0.249964,0,0);}
.md9_c00419{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);}
.m3_c00419{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);}
.m177_c00419{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);}
.m197_c00419{transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);}
.m19a_c00419{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);}
.m14d_c00419{transform:matrix(0.176619,-0.003003,0.004249,0.249964,0,0);-ms-transform:matrix(0.176619,-0.003003,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176619,-0.003003,0.004249,0.249964,0,0);}
.m116_c00419{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);}
.m33_c00419{transform:matrix(0.177260,-0.002304,0.003250,0.249979,0,0);-ms-transform:matrix(0.177260,-0.002304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177260,-0.002304,0.003250,0.249979,0,0);}
.m24_c00419{transform:matrix(0.177920,-0.002313,0.003250,0.249979,0,0);-ms-transform:matrix(0.177920,-0.002313,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177920,-0.002313,0.003250,0.249979,0,0);}
.m124_c00419{transform:matrix(0.177921,-0.003203,0.004499,0.249960,0,0);-ms-transform:matrix(0.177921,-0.003203,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177921,-0.003203,0.004499,0.249960,0,0);}
.m6b_c00419{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);}
.m4b_c00419{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);}
.m3e_c00419{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);}
.me4_c00419{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);}
.ma8_c00419{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);}
.m100_c00419{transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);-ms-transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179480,-0.002692,0.003750,0.249972,0,0);}
.m10a_c00419{transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);}
.m10e_c00419{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);}
.m5f_c00419{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);}
.mcd_c00419{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);}
.m173_c00419{transform:matrix(0.180777,-0.002892,0.003999,0.249968,0,0);-ms-transform:matrix(0.180777,-0.002892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180777,-0.002892,0.003999,0.249968,0,0);}
.mcf_c00419{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);}
.m58_c00419{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m8a_c00419{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);}
.m198_c00419{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);}
.m16c_c00419{transform:matrix(0.181917,-0.002911,0.003999,0.249968,0,0);-ms-transform:matrix(0.181917,-0.002911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181917,-0.002911,0.003999,0.249968,0,0);}
.m2a_c00419{transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);-ms-transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);}
.m150_c00419{transform:matrix(0.182489,-0.003102,0.004249,0.249964,0,0);-ms-transform:matrix(0.182489,-0.003102,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182489,-0.003102,0.004249,0.249964,0,0);}
.m138_c00419{transform:matrix(0.182714,-0.003106,0.004249,0.249964,0,0);-ms-transform:matrix(0.182714,-0.003106,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182714,-0.003106,0.004249,0.249964,0,0);}
.m2c_c00419{transform:matrix(0.182825,-0.002377,0.003250,0.249979,0,0);-ms-transform:matrix(0.182825,-0.002377,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182825,-0.002377,0.003250,0.249979,0,0);}
.m135_c00419{transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);-ms-transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183214,-0.003115,0.004249,0.249964,0,0);}
.m117_c00419{transform:matrix(0.183254,-0.002749,0.003750,0.249972,0,0);-ms-transform:matrix(0.183254,-0.002749,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183254,-0.002749,0.003750,0.249972,0,0);}
.mca_c00419{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);}
.m187_c00419{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);}
.m174_c00419{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);}
.m48_c00419{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);}
.m160_c00419{transform:matrix(0.183888,-0.003126,0.004249,0.249964,0,0);-ms-transform:matrix(0.183888,-0.003126,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183888,-0.003126,0.004249,0.249964,0,0);}
.m40_c00419{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);}
.m101_c00419{transform:matrix(0.184204,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184204,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184204,-0.002763,0.003750,0.249972,0,0);}
.m162_c00419{transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);-ms-transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);}
.m15d_c00419{transform:matrix(0.184343,-0.003134,0.004249,0.249964,0,0);-ms-transform:matrix(0.184343,-0.003134,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184343,-0.003134,0.004249,0.249964,0,0);}
.mdd_c00419{transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);}
.m151_c00419{transform:matrix(0.184508,-0.003137,0.004249,0.249964,0,0);-ms-transform:matrix(0.184508,-0.003137,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184508,-0.003137,0.004249,0.249964,0,0);}
.me0_c00419{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);}
.m29_c00419{transform:matrix(0.185289,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185289,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185289,-0.002409,0.003250,0.249979,0,0);}
.m51_c00419{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);}
.m13d_c00419{transform:matrix(0.185828,-0.003159,0.004249,0.249964,0,0);-ms-transform:matrix(0.185828,-0.003159,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185828,-0.003159,0.004249,0.249964,0,0);}
.m11d_c00419{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);}
.m64_c00419{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);}
.m19_c00419{transform:matrix(0.186399,-0.002423,0.003250,0.249979,0,0);-ms-transform:matrix(0.186399,-0.002423,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186399,-0.002423,0.003250,0.249979,0,0);}
.m115_c00419{transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186534,-0.002798,0.003750,0.249972,0,0);}
.m21_c00419{transform:matrix(0.186899,-0.002430,0.003250,0.249979,0,0);-ms-transform:matrix(0.186899,-0.002430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186899,-0.002430,0.003250,0.249979,0,0);}
.mb6_c00419{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);}
.m19b_c00419{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);}
.m106_c00419{transform:matrix(0.187399,-0.002811,0.003750,0.249972,0,0);-ms-transform:matrix(0.187399,-0.002811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187399,-0.002811,0.003750,0.249972,0,0);}
.mfb_c00419{transform:matrix(0.187549,-0.002813,0.003750,0.249972,0,0);-ms-transform:matrix(0.187549,-0.002813,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187549,-0.002813,0.003750,0.249972,0,0);}
.m14b_c00419{transform:matrix(0.187573,-0.003189,0.004249,0.249964,0,0);-ms-transform:matrix(0.187573,-0.003189,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187573,-0.003189,0.004249,0.249964,0,0);}
.m9b_c00419{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);}
.m119_c00419{transform:matrix(0.187759,-0.002816,0.003750,0.249972,0,0);-ms-transform:matrix(0.187759,-0.002816,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187759,-0.002816,0.003750,0.249972,0,0);}
.m130_c00419{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);}
.md4_c00419{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);}
.m2d_c00419{transform:matrix(0.188479,-0.002450,0.003250,0.249979,0,0);-ms-transform:matrix(0.188479,-0.002450,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188479,-0.002450,0.003250,0.249979,0,0);}
.m79_c00419{transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.188739,-0.002454,0.003250,0.249979,0,0);-ms-transform:matrix(0.188739,-0.002454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188739,-0.002454,0.003250,0.249979,0,0);}
.mf8_c00419{transform:matrix(0.188744,-0.002831,0.003750,0.249972,0,0);-ms-transform:matrix(0.188744,-0.002831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188744,-0.002831,0.003750,0.249972,0,0);}
.m99_c00419{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);}
.m109_c00419{transform:matrix(0.189034,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189034,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189034,-0.002836,0.003750,0.249972,0,0);}
.mbd_c00419{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);}
.mf6_c00419{transform:matrix(0.189339,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189339,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189339,-0.002840,0.003750,0.249972,0,0);}
.m13a_c00419{transform:matrix(0.189498,-0.003221,0.004249,0.249964,0,0);-ms-transform:matrix(0.189498,-0.003221,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189498,-0.003221,0.004249,0.249964,0,0);}
.m107_c00419{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);}
.m128_c00419{transform:matrix(0.189629,-0.003413,0.004499,0.249960,0,0);-ms-transform:matrix(0.189629,-0.003413,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189629,-0.003413,0.004499,0.249960,0,0);}
.med_c00419{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);}
.m56_c00419{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);}
.m176_c00419{transform:matrix(0.189866,-0.003038,0.003999,0.249968,0,0);-ms-transform:matrix(0.189866,-0.003038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189866,-0.003038,0.003999,0.249968,0,0);}
.m11a_c00419{transform:matrix(0.189869,-0.002848,0.003750,0.249972,0,0);-ms-transform:matrix(0.189869,-0.002848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189869,-0.002848,0.003750,0.249972,0,0);}
.m4c_c00419{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);}
.m148_c00419{transform:matrix(0.190113,-0.003232,0.004249,0.249964,0,0);-ms-transform:matrix(0.190113,-0.003232,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190113,-0.003232,0.004249,0.249964,0,0);}
.m90_c00419{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);}
.m171_c00419{transform:matrix(0.190341,-0.003045,0.003999,0.249968,0,0);-ms-transform:matrix(0.190341,-0.003045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190341,-0.003045,0.003999,0.249968,0,0);}
.mf4_c00419{transform:matrix(0.190441,-0.002666,0.003500,0.249976,0,0);-ms-transform:matrix(0.190441,-0.002666,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190441,-0.002666,0.003500,0.249976,0,0);}
.m2_c00419{transform:matrix(0.191136,-0.002294,0.003000,0.249982,0,0);-ms-transform:matrix(0.191136,-0.002294,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191136,-0.002294,0.003000,0.249982,0,0);}
.mf1_c00419{transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);-ms-transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);}
.m20_c00419{transform:matrix(0.191394,-0.002488,0.003250,0.249979,0,0);-ms-transform:matrix(0.191394,-0.002488,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191394,-0.002488,0.003250,0.249979,0,0);}
.m97_c00419{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);}
.m153_c00419{transform:matrix(0.191652,-0.003258,0.004249,0.249964,0,0);-ms-transform:matrix(0.191652,-0.003258,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191652,-0.003258,0.004249,0.249964,0,0);}
.m8c_c00419{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);}
.m98_c00419{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);}
.m11c_c00419{transform:matrix(0.192139,-0.003458,0.004499,0.249960,0,0);-ms-transform:matrix(0.192139,-0.003458,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192139,-0.003458,0.004499,0.249960,0,0);}
.m39_c00419{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);}
.m11e_c00419{transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);-ms-transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192319,-0.003462,0.004499,0.249960,0,0);}
.m139_c00419{transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192377,-0.003270,0.004249,0.249964,0,0);}
.m103_c00419{transform:matrix(0.192483,-0.002887,0.003750,0.249972,0,0);-ms-transform:matrix(0.192483,-0.002887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192483,-0.002887,0.003750,0.249972,0,0);}
.md0_c00419{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);}
.m16d_c00419{transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);-ms-transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192790,-0.003085,0.003999,0.249968,0,0);}
.m17f_c00419{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);}
.m4f_c00419{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);}
.m86_c00419{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);}
.m26_c00419{transform:matrix(0.194114,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194114,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194114,-0.002523,0.003250,0.249979,0,0);}
.m30_c00419{transform:matrix(0.194119,-0.002524,0.003250,0.249979,0,0);-ms-transform:matrix(0.194119,-0.002524,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194119,-0.002524,0.003250,0.249979,0,0);}
.m120_c00419{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);}
.m113_c00419{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);}
.mf5_c00419{transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194713,-0.002921,0.003750,0.249972,0,0);}
.m104_c00419{transform:matrix(0.194723,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194723,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194723,-0.002921,0.003750,0.249972,0,0);}
.m145_c00419{transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);-ms-transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194792,-0.003311,0.004249,0.249964,0,0);}
.m8b_c00419{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);}
.m78_c00419{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);}
.m164_c00419{transform:matrix(0.194887,-0.003313,0.004249,0.249964,0,0);-ms-transform:matrix(0.194887,-0.003313,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194887,-0.003313,0.004249,0.249964,0,0);}
.m1d_c00419{transform:matrix(0.194974,-0.002535,0.003250,0.249979,0,0);-ms-transform:matrix(0.194974,-0.002535,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194974,-0.002535,0.003250,0.249979,0,0);}
.me9_c00419{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);}
.m166_c00419{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);}
.m8e_c00419{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);}
.m161_c00419{transform:matrix(0.195562,-0.003325,0.004249,0.249964,0,0);-ms-transform:matrix(0.195562,-0.003325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195562,-0.003325,0.004249,0.249964,0,0);}
.m45_c00419{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);}
.m1a_c00419{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);}
.m35_c00419{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);}
.m5b_c00419{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);}
.mb7_c00419{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);}
.m105_c00419{transform:matrix(0.196803,-0.002952,0.003750,0.249972,0,0);-ms-transform:matrix(0.196803,-0.002952,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196803,-0.002952,0.003750,0.249972,0,0);}
.mec_c00419{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);}
.m143_c00419{transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);}
.mf3_c00419{transform:matrix(0.197081,-0.002759,0.003500,0.249976,0,0);-ms-transform:matrix(0.197081,-0.002759,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197081,-0.002759,0.003500,0.249976,0,0);}
.m5c_c00419{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);}
.m88_c00419{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);}
.m18c_c00419{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);}
.m15c_c00419{transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-ms-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197531,-0.003358,0.004249,0.249964,0,0);}
.m85_c00419{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);}
.m167_c00419{transform:matrix(0.197700,-0.003163,0.003999,0.249968,0,0);-ms-transform:matrix(0.197700,-0.003163,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197700,-0.003163,0.003999,0.249968,0,0);}
.m75_c00419{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);}
.m4a_c00419{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);}
.me3_c00419{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);}
.m50_c00419{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);}
.m67_c00419{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);}
.m199_c00419{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);}
.m59_c00419{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);}
.m65_c00419{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);}
.m69_c00419{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);}
.m13e_c00419{transform:matrix(0.198911,-0.003381,0.004249,0.249964,0,0);-ms-transform:matrix(0.198911,-0.003381,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198911,-0.003381,0.004249,0.249964,0,0);}
.m158_c00419{transform:matrix(0.199026,-0.003383,0.004249,0.249964,0,0);-ms-transform:matrix(0.199026,-0.003383,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199026,-0.003383,0.004249,0.249964,0,0);}
.m31_c00419{transform:matrix(0.199263,-0.002590,0.003250,0.249979,0,0);-ms-transform:matrix(0.199263,-0.002590,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199263,-0.002590,0.003250,0.249979,0,0);}
.m5a_c00419{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);}
.m76_c00419{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);}
.m73_c00419{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);}
.m6e_c00419{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);}
.m12d_c00419{transform:matrix(0.199931,-0.003399,0.004249,0.249964,0,0);-ms-transform:matrix(0.199931,-0.003399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199931,-0.003399,0.004249,0.249964,0,0);}
.ma6_c00419{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);}
.m165_c00419{transform:matrix(0.200131,-0.003402,0.004249,0.249964,0,0);-ms-transform:matrix(0.200131,-0.003402,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200131,-0.003402,0.004249,0.249964,0,0);}
.mc5_c00419{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);}
.m5e_c00419{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);}
.m70_c00419{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);}
.mc7_c00419{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);}
.mc3_c00419{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);}
.m163_c00419{transform:matrix(0.201281,-0.003422,0.004249,0.249964,0,0);-ms-transform:matrix(0.201281,-0.003422,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201281,-0.003422,0.004249,0.249964,0,0);}
.m60_c00419{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);}
.m12b_c00419{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);}
.mef_c00419{transform:matrix(0.201690,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201690,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201690,-0.002824,0.003500,0.249976,0,0);}
.m42_c00419{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m46_c00419{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);}
.m17e_c00419{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);}
.mab_c00419{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);}
.m142_c00419{transform:matrix(0.202941,-0.003450,0.004249,0.249964,0,0);-ms-transform:matrix(0.202941,-0.003450,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202941,-0.003450,0.004249,0.249964,0,0);}
.m16e_c00419{transform:matrix(0.202994,-0.003248,0.003999,0.249968,0,0);-ms-transform:matrix(0.202994,-0.003248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202994,-0.003248,0.003999,0.249968,0,0);}
.m8d_c00419{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);}
.m68_c00419{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);}
.m27_c00419{transform:matrix(0.203403,-0.002644,0.003250,0.249979,0,0);-ms-transform:matrix(0.203403,-0.002644,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203403,-0.002644,0.003250,0.249979,0,0);}
.m114_c00419{transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);-ms-transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203462,-0.003052,0.003750,0.249972,0,0);}
.m149_c00419{transform:matrix(0.203581,-0.003461,0.004249,0.249964,0,0);-ms-transform:matrix(0.203581,-0.003461,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203581,-0.003461,0.004249,0.249964,0,0);}
.m13c_c00419{transform:matrix(0.203681,-0.003463,0.004249,0.249964,0,0);-ms-transform:matrix(0.203681,-0.003463,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203681,-0.003463,0.004249,0.249964,0,0);}
.mf9_c00419{transform:matrix(0.203692,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203692,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203692,-0.003055,0.003750,0.249972,0,0);}
.m15a_c00419{transform:matrix(0.203711,-0.003463,0.004249,0.249964,0,0);-ms-transform:matrix(0.203711,-0.003463,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203711,-0.003463,0.004249,0.249964,0,0);}
.m108_c00419{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);}
.m93_c00419{transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203780,0.000000,0.000000,0.250000,0,0);}
.m6d_c00419{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);}
.me5_c00419{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);}
.m62_c00419{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);}
.m53_c00419{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);}
.ma1_c00419{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_c00419{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);}
.m1a0_c00419{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);}
.m12c_c00419{transform:matrix(0.205775,-0.003498,0.004249,0.249964,0,0);-ms-transform:matrix(0.205775,-0.003498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205775,-0.003498,0.004249,0.249964,0,0);}
.m154_c00419{transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);-ms-transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206775,-0.003515,0.004249,0.249964,0,0);}
.m80_c00419{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);}
.m137_c00419{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);}
.mad_c00419{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);}
.m41_c00419{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);}
.m9c_c00419{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);}
.me8_c00419{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);}
.mbb_c00419{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);}
.mae_c00419{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);}
.m170_c00419{transform:matrix(0.208318,-0.003333,0.003999,0.249968,0,0);-ms-transform:matrix(0.208318,-0.003333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208318,-0.003333,0.003999,0.249968,0,0);}
.me7_c00419{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);}
.m19f_c00419{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);}
.m66_c00419{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);}
.m72_c00419{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);}
.mcc_c00419{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);}
.m5d_c00419{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);}
.m7b_c00419{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);}
.md5_c00419{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);}
.m118_c00419{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);}
.ma9_c00419{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);}
.m38_c00419{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);}
.m77_c00419{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);}
.m1f_c00419{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);}
.maf_c00419{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);}
.m9f_c00419{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);}
.m44_c00419{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);}
.ma3_c00419{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);}
.m57_c00419{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);}
.m81_c00419{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);}
.m9e_c00419{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);}
.m92_c00419{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);}
.mba_c00419{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);}
.m3b_c00419{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);}
.m172_c00419{transform:matrix(0.212683,-0.003403,0.003999,0.249968,0,0);-ms-transform:matrix(0.212683,-0.003403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212683,-0.003403,0.003999,0.249968,0,0);}
.me6_c00419{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);}
.mf7_c00419{transform:matrix(0.212801,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212801,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212801,-0.003192,0.003750,0.249972,0,0);}
.mb5_c00419{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);}
.m11f_c00419{transform:matrix(0.213000,-0.003834,0.004499,0.249960,0,0);-ms-transform:matrix(0.213000,-0.003834,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213000,-0.003834,0.004499,0.249960,0,0);}
.m8f_c00419{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);}
.m91_c00419{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);}
.m19c_c00419{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);}
.m12f_c00419{transform:matrix(0.214249,-0.003642,0.004249,0.249964,0,0);-ms-transform:matrix(0.214249,-0.003642,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214249,-0.003642,0.004249,0.249964,0,0);}
.mfa_c00419{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_c00419{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);}
.m22_c00419{transform:matrix(0.214567,-0.002789,0.003250,0.249979,0,0);-ms-transform:matrix(0.214567,-0.002789,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214567,-0.002789,0.003250,0.249979,0,0);}
.m13f_c00419{transform:matrix(0.214864,-0.003653,0.004249,0.249964,0,0);-ms-transform:matrix(0.214864,-0.003653,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214864,-0.003653,0.004249,0.249964,0,0);}
.mb4_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);}
.m132_c00419{transform:matrix(0.215179,-0.003658,0.004249,0.249964,0,0);-ms-transform:matrix(0.215179,-0.003658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215179,-0.003658,0.004249,0.249964,0,0);}
.m7a_c00419{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);}
.m15b_c00419{transform:matrix(0.215564,-0.003665,0.004249,0.249964,0,0);-ms-transform:matrix(0.215564,-0.003665,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215564,-0.003665,0.004249,0.249964,0,0);}
.m18f_c00419{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);}
.ma4_c00419{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);}
.m152_c00419{transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-ms-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);}
.m19d_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);}
.m156_c00419{transform:matrix(0.217039,-0.003690,0.004249,0.249964,0,0);-ms-transform:matrix(0.217039,-0.003690,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217039,-0.003690,0.004249,0.249964,0,0);}
.m129_c00419{transform:matrix(0.217210,-0.003910,0.004499,0.249960,0,0);-ms-transform:matrix(0.217210,-0.003910,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217210,-0.003910,0.004499,0.249960,0,0);}
.m16f_c00419{transform:matrix(0.217567,-0.003481,0.003999,0.249968,0,0);-ms-transform:matrix(0.217567,-0.003481,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217567,-0.003481,0.003999,0.249968,0,0);}
.m7c_c00419{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);}
.md2_c00419{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);}
.m87_c00419{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);}
.m146_c00419{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);}
.maa_c00419{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);}
.mb0_c00419{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);}
.m15e_c00419{transform:matrix(0.219678,-0.003735,0.004249,0.249964,0,0);-ms-transform:matrix(0.219678,-0.003735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219678,-0.003735,0.004249,0.249964,0,0);}
.mb9_c00419{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);}
.m84_c00419{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);}
.m196_c00419{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);}
.m12a_c00419{transform:matrix(0.221523,-0.003766,0.004249,0.249964,0,0);-ms-transform:matrix(0.221523,-0.003766,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221523,-0.003766,0.004249,0.249964,0,0);}
.m131_c00419{transform:matrix(0.221908,-0.003772,0.004249,0.249964,0,0);-ms-transform:matrix(0.221908,-0.003772,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221908,-0.003772,0.004249,0.249964,0,0);}
.m181_c00419{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);}
.m185_c00419{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);}
.m11_c00419{transform:matrix(0.223481,-0.002905,0.003250,0.249979,0,0);-ms-transform:matrix(0.223481,-0.002905,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223481,-0.002905,0.003250,0.249979,0,0);}
.m127_c00419{transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);-ms-transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);}
.ma0_c00419{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);}
.md8_c00419{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);}
.m140_c00419{transform:matrix(0.225267,-0.003830,0.004249,0.249964,0,0);-ms-transform:matrix(0.225267,-0.003830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225267,-0.003830,0.004249,0.249964,0,0);}
.m71_c00419{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);}
.mda_c00419{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);}
.m155_c00419{transform:matrix(0.225977,-0.003842,0.004249,0.249964,0,0);-ms-transform:matrix(0.225977,-0.003842,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225977,-0.003842,0.004249,0.249964,0,0);}
.mbc_c00419{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);}
.m110_c00419{transform:matrix(0.227829,-0.003417,0.003750,0.249972,0,0);-ms-transform:matrix(0.227829,-0.003417,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227829,-0.003417,0.003750,0.249972,0,0);}
.m134_c00419{transform:matrix(0.229277,-0.003898,0.004249,0.249964,0,0);-ms-transform:matrix(0.229277,-0.003898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229277,-0.003898,0.004249,0.249964,0,0);}
.m178_c00419{transform:matrix(0.229506,-0.003672,0.003999,0.249968,0,0);-ms-transform:matrix(0.229506,-0.003672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229506,-0.003672,0.003999,0.249968,0,0);}
.m126_c00419{transform:matrix(0.229983,-0.004140,0.004499,0.249960,0,0);-ms-transform:matrix(0.229983,-0.004140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229983,-0.004140,0.004499,0.249960,0,0);}
.m141_c00419{transform:matrix(0.230937,-0.003926,0.004249,0.249964,0,0);-ms-transform:matrix(0.230937,-0.003926,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230937,-0.003926,0.004249,0.249964,0,0);}
.m47_c00419{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);}
.m7d_c00419{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);}
.mbe_c00419{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);}
.mb1_c00419{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);}
.m52_c00419{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);}
.m19e_c00419{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);}
.m74_c00419{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);}
.m9a_c00419{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);}
.m63_c00419{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);}
.m3f_c00419{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);}
.m184_c00419{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);}
.m1a1_c00419{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);}
.m12e_c00419{transform:matrix(0.239300,-0.004068,0.004249,0.249964,0,0);-ms-transform:matrix(0.239300,-0.004068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239300,-0.004068,0.004249,0.249964,0,0);}
.m6f_c00419{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);}
.m112_c00419{transform:matrix(0.242043,-0.003631,0.003750,0.249972,0,0);-ms-transform:matrix(0.242043,-0.003631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242043,-0.003631,0.003750,0.249972,0,0);}
.m183_c00419{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);}
.m5_c00419{transform:matrix(0.243192,-0.002918,0.003000,0.249982,0,0);-ms-transform:matrix(0.243192,-0.002918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243192,-0.002918,0.003000,0.249982,0,0);}
.m95_c00419{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00419{transform:matrix(0.245807,-0.003687,0.003750,0.249972,0,0);-ms-transform:matrix(0.245807,-0.003687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245807,-0.003687,0.003750,0.249972,0,0);}
.m6c_c00419{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m7e_c00419{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);}
.mac_c00419{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.mb3_c00419{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);}
.m94_c00419{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);}
.m54_c00419{transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);}
.m17a_c00419{transform:matrix(0.255932,-0.004095,0.003999,0.249968,0,0);-ms-transform:matrix(0.255932,-0.004095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255932,-0.004095,0.003999,0.249968,0,0);}
.me2_c00419{transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257475,0.000000,0.000000,0.250000,0,0);}
.m179_c00419{transform:matrix(0.257762,-0.004124,0.003999,0.249968,0,0);-ms-transform:matrix(0.257762,-0.004124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257762,-0.004124,0.003999,0.249968,0,0);}
.m144_c00419{transform:matrix(0.258183,-0.004389,0.004249,0.249964,0,0);-ms-transform:matrix(0.258183,-0.004389,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258183,-0.004389,0.004249,0.249964,0,0);}
.mfc_c00419{transform:matrix(0.258191,-0.003873,0.003750,0.249972,0,0);-ms-transform:matrix(0.258191,-0.003873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258191,-0.003873,0.003750,0.249972,0,0);}
.ma7_c00419{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);}
.m16_c00419{transform:matrix(0.262033,-0.003406,0.003250,0.249979,0,0);-ms-transform:matrix(0.262033,-0.003406,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262033,-0.003406,0.003250,0.249979,0,0);}
.mbf_c00419{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m96_c00419{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m10d_c00419{transform:matrix(0.269420,-0.004041,0.003750,0.249972,0,0);-ms-transform:matrix(0.269420,-0.004041,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269420,-0.004041,0.003750,0.249972,0,0);}
.mb2_c00419{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);}
.mb8_c00419{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.mfe_c00419{transform:matrix(0.279834,-0.004198,0.003750,0.249972,0,0);-ms-transform:matrix(0.279834,-0.004198,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279834,-0.004198,0.003750,0.249972,0,0);}
.mb_c00419{transform:matrix(0.291474,-0.003498,0.003000,0.249982,0,0);-ms-transform:matrix(0.291474,-0.003498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.291474,-0.003498,0.003000,0.249982,0,0);}
.m180_c00419{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00419{transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303240,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.324257,-0.003891,0.003000,0.249982,0,0);-ms-transform:matrix(0.324257,-0.003891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.324257,-0.003891,0.003000,0.249982,0,0);}
.m17_c00419{transform:matrix(0.332017,-0.004316,0.003250,0.249979,0,0);-ms-transform:matrix(0.332017,-0.004316,0.003250,0.249979,0,0);-webkit-transform:matrix(0.332017,-0.004316,0.003250,0.249979,0,0);}
.m121_c00419{transform:matrix(0.345474,-0.006219,0.004499,0.249960,0,0);-ms-transform:matrix(0.345474,-0.006219,0.004499,0.249960,0,0);-webkit-transform:matrix(0.345474,-0.006219,0.004499,0.249960,0,0);}
.mc1_c00419{transform:matrix(0.372280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372280,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.378688,-0.004544,0.003000,0.249982,0,0);-ms-transform:matrix(0.378688,-0.004544,0.003000,0.249982,0,0);-webkit-transform:matrix(0.378688,-0.004544,0.003000,0.249982,0,0);}
.me_c00419{transform:matrix(0.395557,-0.004747,0.003000,0.249982,0,0);-ms-transform:matrix(0.395557,-0.004747,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395557,-0.004747,0.003000,0.249982,0,0);}
.ma_c00419{transform:matrix(0.429669,-0.005156,0.003000,0.249982,0,0);-ms-transform:matrix(0.429669,-0.005156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.429669,-0.005156,0.003000,0.249982,0,0);}
.m7_c00419{transform:matrix(0.472581,-0.005671,0.003000,0.249982,0,0);-ms-transform:matrix(0.472581,-0.005671,0.003000,0.249982,0,0);-webkit-transform:matrix(0.472581,-0.005671,0.003000,0.249982,0,0);}
.md_c00419{transform:matrix(0.574674,-0.006896,0.003000,0.249982,0,0);-ms-transform:matrix(0.574674,-0.006896,0.003000,0.249982,0,0);-webkit-transform:matrix(0.574674,-0.006896,0.003000,0.249982,0,0);}
.m10_c00419{transform:matrix(0.678748,-0.008824,0.003250,0.249979,0,0);-ms-transform:matrix(0.678748,-0.008824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.678748,-0.008824,0.003250,0.249979,0,0);}
.mc_c00419{transform:matrix(0.700245,-0.008403,0.003000,0.249982,0,0);-ms-transform:matrix(0.700245,-0.008403,0.003000,0.249982,0,0);-webkit-transform:matrix(0.700245,-0.008403,0.003000,0.249982,0,0);}
.m0_c00419{transform:matrix(0.873207,-0.010478,0.003000,0.249982,0,0);-ms-transform:matrix(0.873207,-0.010478,0.003000,0.249982,0,0);-webkit-transform:matrix(0.873207,-0.010478,0.003000,0.249982,0,0);}
.m9_c00419{transform:matrix(1.161381,-0.013937,0.003000,0.249982,0,0);-ms-transform:matrix(1.161381,-0.013937,0.003000,0.249982,0,0);-webkit-transform:matrix(1.161381,-0.013937,0.003000,0.249982,0,0);}
.m4d_c00419{transform:matrix(2.727825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.727825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.727825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00419{transform:matrix(4.793405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.793405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.793405,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;}
.fsa_c00419{font-size:25.200000px;}
.fs12_c00419{font-size:40.950000px;}
.fs11_c00419{font-size:47.250000px;}
.fse_c00419{font-size:48.300000px;}
.fsb_c00419{font-size:49.350000px;}
.fsf_c00419{font-size:50.400000px;}
.fs1e_c00419{font-size:50.407282px;}
.fsd_c00419{font-size:51.450000px;}
.fs1d_c00419{font-size:51.457434px;}
.fs10_c00419{font-size:52.500000px;}
.fs18_c00419{font-size:52.505906px;}
.fs20_c00419{font-size:52.507586px;}
.fs1c_c00419{font-size:52.508504px;}
.fsc_c00419{font-size:53.550000px;}
.fs17_c00419{font-size:53.555248px;}
.fs1a_c00419{font-size:53.556024px;}
.fs24_c00419{font-size:53.556854px;}
.fs13_c00419{font-size:54.600000px;}
.fs19_c00419{font-size:54.606142px;}
.fs1f_c00419{font-size:54.607889px;}
.fs16_c00419{font-size:55.650000px;}
.fs23_c00419{font-size:55.657123px;}
.fs1b_c00419{font-size:55.659015px;}
.fs26_c00419{font-size:57.750000px;}
.fs21_c00419{font-size:58.808496px;}
.fs15_c00419{font-size:59.850000px;}
.fs22_c00419{font-size:59.857660px;}
.fs14_c00419{font-size:60.900000px;}
.fs25_c00419{font-size:61.950000px;}
.fs1_c00419{font-size:61.954460px;}
.fs27_c00419{font-size:63.000000px;}
.fs8_c00419{font-size:68.250000px;}
.fs2_c00419{font-size:69.304989px;}
.fs4_c00419{font-size:69.305856px;}
.fs9_c00419{font-size:70.350000px;}
.fs7_c00419{font-size:71.400000px;}
.fs6_c00419{font-size:71.406033px;}
.fs5_c00419{font-size:74.556299px;}
.fs3_c00419{font-size:75.606388px;}
.fs0_c00419{font-size:77.705594px;}
.y0_c00419{bottom:0.000000px;}
.y62_c00419{bottom:140.160000px;}
.yf7_c00419{bottom:140.401500px;}
.yf8_c00419{bottom:141.085500px;}
.yf9_c00419{bottom:141.753000px;}
.yfa_c00419{bottom:142.134000px;}
.yfb_c00419{bottom:142.765500px;}
.y61_c00419{bottom:158.248500px;}
.yf6_c00419{bottom:159.961500px;}
.y60_c00419{bottom:176.340000px;}
.yf5_c00419{bottom:176.761500px;}
.y5f_c00419{bottom:193.960500px;}
.yf4_c00419{bottom:195.910500px;}
.yec_c00419{bottom:212.229048px;}
.yea_c00419{bottom:212.229096px;}
.yed_c00419{bottom:212.229516px;}
.yeb_c00419{bottom:212.229600px;}
.ye9_c00419{bottom:212.229684px;}
.yee_c00419{bottom:212.230128px;}
.yef_c00419{bottom:212.230272px;}
.yf0_c00419{bottom:212.230500px;}
.yf1_c00419{bottom:212.231148px;}
.yf3_c00419{bottom:213.129000px;}
.y5e_c00419{bottom:229.633500px;}
.yf2_c00419{bottom:231.129000px;}
.ye4_c00419{bottom:247.590708px;}
.y5d_c00419{bottom:247.636500px;}
.ye5_c00419{bottom:248.611392px;}
.ye6_c00419{bottom:249.069960px;}
.ye7_c00419{bottom:250.018056px;}
.ye8_c00419{bottom:250.439100px;}
.ydc_c00419{bottom:264.337500px;}
.ydd_c00419{bottom:264.583836px;}
.yde_c00419{bottom:265.016124px;}
.ydf_c00419{bottom:265.521492px;}
.y5c_c00419{bottom:265.936500px;}
.ye0_c00419{bottom:266.109084px;}
.ye1_c00419{bottom:266.925588px;}
.ye2_c00419{bottom:267.284028px;}
.ye3_c00419{bottom:267.802716px;}
.yd5_c00419{bottom:283.471563px;}
.y5b_c00419{bottom:283.737000px;}
.yd6_c00419{bottom:283.841832px;}
.yd7_c00419{bottom:284.315031px;}
.yd8_c00419{bottom:284.636410px;}
.yd9_c00419{bottom:285.389167px;}
.yda_c00419{bottom:285.699369px;}
.ydb_c00419{bottom:286.259071px;}
.ycf_c00419{bottom:301.295214px;}
.y5a_c00419{bottom:301.330500px;}
.yd0_c00419{bottom:301.715035px;}
.yd1_c00419{bottom:302.576749px;}
.yd2_c00419{bottom:302.848831px;}
.yd3_c00419{bottom:303.097924px;}
.yd4_c00419{bottom:304.247590px;}
.ycb_c00419{bottom:319.389553px;}
.y59_c00419{bottom:319.851000px;}
.ycc_c00419{bottom:320.853330px;}
.ycd_c00419{bottom:321.358867px;}
.yce_c00419{bottom:322.722301px;}
.y58_c00419{bottom:338.496000px;}
.yca_c00419{bottom:339.497856px;}
.yc9_c00419{bottom:339.498022px;}
.yc8_c00419{bottom:339.498235px;}
.yc7_c00419{bottom:339.498448px;}
.yc6_c00419{bottom:339.498525px;}
.ybf_c00419{bottom:356.115591px;}
.y57_c00419{bottom:356.280000px;}
.yc0_c00419{bottom:356.399004px;}
.yc1_c00419{bottom:357.165799px;}
.yc2_c00419{bottom:357.427162px;}
.yc3_c00419{bottom:358.204366px;}
.yc4_c00419{bottom:358.361851px;}
.yc5_c00419{bottom:358.969882px;}
.y56_c00419{bottom:374.523000px;}
.yb8_c00419{bottom:375.700285px;}
.yb9_c00419{bottom:375.700354px;}
.ybb_c00419{bottom:375.700372px;}
.ybe_c00419{bottom:375.700572px;}
.ybd_c00419{bottom:375.700764px;}
.ybc_c00419{bottom:375.700845px;}
.yba_c00419{bottom:375.700869px;}
.yb4_c00419{bottom:392.032155px;}
.y55_c00419{bottom:392.499000px;}
.yb5_c00419{bottom:393.348430px;}
.yb6_c00419{bottom:394.284934px;}
.yb7_c00419{bottom:394.766109px;}
.y54_c00419{bottom:410.314500px;}
.yb1_c00419{bottom:411.697369px;}
.yb2_c00419{bottom:411.697572px;}
.yb3_c00419{bottom:411.698031px;}
.yaa_c00419{bottom:428.488303px;}
.y53_c00419{bottom:428.788500px;}
.yab_c00419{bottom:429.091341px;}
.yac_c00419{bottom:429.503281px;}
.yad_c00419{bottom:430.176165px;}
.yae_c00419{bottom:430.739251px;}
.yaf_c00419{bottom:431.250015px;}
.yb0_c00419{bottom:431.505399px;}
.ya4_c00419{bottom:446.310978px;}
.ya5_c00419{bottom:446.870014px;}
.y52_c00419{bottom:446.884500px;}
.ya6_c00419{bottom:447.679053px;}
.ya7_c00419{bottom:448.851900px;}
.ya8_c00419{bottom:449.079028px;}
.ya9_c00419{bottom:449.633781px;}
.y9e_c00419{bottom:464.133000px;}
.y9f_c00419{bottom:464.689257px;}
.y51_c00419{bottom:464.971500px;}
.ya0_c00419{bottom:465.444950px;}
.ya1_c00419{bottom:465.892066px;}
.ya2_c00419{bottom:466.942411px;}
.ya3_c00419{bottom:467.144422px;}
.y97_c00419{bottom:481.952040px;}
.y98_c00419{bottom:482.155431px;}
.y99_c00419{bottom:482.534700px;}
.y50_c00419{bottom:482.605500px;}
.y9a_c00419{bottom:482.889588px;}
.y9b_c00419{bottom:483.651528px;}
.y9c_c00419{bottom:484.230921px;}
.y9d_c00419{bottom:484.727073px;}
.y8f_c00419{bottom:499.773000px;}
.y90_c00419{bottom:499.976904px;}
.y91_c00419{bottom:500.527218px;}
.y4f_c00419{bottom:500.770500px;}
.y92_c00419{bottom:500.949957px;}
.y93_c00419{bottom:502.082499px;}
.y94_c00419{bottom:502.306275px;}
.y95_c00419{bottom:503.336433px;}
.y96_c00419{bottom:503.633460px;}
.y89_c00419{bottom:518.392853px;}
.y4e_c00419{bottom:518.394000px;}
.y8a_c00419{bottom:519.253590px;}
.y8b_c00419{bottom:519.904268px;}
.y8c_c00419{bottom:520.527113px;}
.y8d_c00419{bottom:521.473800px;}
.y8e_c00419{bottom:522.070950px;}
.y4d_c00419{bottom:536.634000px;}
.y81_c00419{bottom:536.757578px;}
.y82_c00419{bottom:537.101925px;}
.y83_c00419{bottom:537.553440px;}
.y84_c00419{bottom:538.403145px;}
.y85_c00419{bottom:538.923720px;}
.y86_c00419{bottom:539.331510px;}
.y87_c00419{bottom:540.063885px;}
.y88_c00419{bottom:540.515760px;}
.y4c_c00419{bottom:554.418000px;}
.y79_c00419{bottom:554.579100px;}
.y7a_c00419{bottom:555.057015px;}
.y7b_c00419{bottom:555.426705px;}
.y7c_c00419{bottom:555.909180px;}
.y7d_c00419{bottom:556.858245px;}
.y7e_c00419{bottom:557.642940px;}
.y7f_c00419{bottom:558.089880px;}
.y80_c00419{bottom:558.412260px;}
.y4b_c00419{bottom:572.244000px;}
.y70_c00419{bottom:572.941312px;}
.y71_c00419{bottom:573.172388px;}
.y72_c00419{bottom:573.394935px;}
.y73_c00419{bottom:574.245593px;}
.y74_c00419{bottom:574.479728px;}
.y75_c00419{bottom:574.763992px;}
.y76_c00419{bottom:575.200740px;}
.y77_c00419{bottom:575.411565px;}
.y78_c00419{bottom:575.963332px;}
.y69_c00419{bottom:591.303000px;}
.y4a_c00419{bottom:591.346500px;}
.y6a_c00419{bottom:591.820500px;}
.y6b_c00419{bottom:592.274955px;}
.y6c_c00419{bottom:592.946513px;}
.y6d_c00419{bottom:593.401147px;}
.y6e_c00419{bottom:594.134063px;}
.y6f_c00419{bottom:594.332423px;}
.y49_c00419{bottom:609.346500px;}
.y63_c00419{bottom:609.661500px;}
.y64_c00419{bottom:610.239735px;}
.y65_c00419{bottom:610.791657px;}
.y66_c00419{bottom:611.498391px;}
.y67_c00419{bottom:611.891679px;}
.y68_c00419{bottom:612.481149px;}
.y48_c00419{bottom:634.930500px;}
.y41_c00419{bottom:657.723000px;}
.y42_c00419{bottom:658.084500px;}
.y43_c00419{bottom:658.875000px;}
.y44_c00419{bottom:659.479500px;}
.y45_c00419{bottom:660.240000px;}
.y46_c00419{bottom:661.180500px;}
.y47_c00419{bottom:661.993500px;}
.y3a_c00419{bottom:680.671500px;}
.y3b_c00419{bottom:681.205500px;}
.y3c_c00419{bottom:681.931500px;}
.y3d_c00419{bottom:682.461000px;}
.y3e_c00419{bottom:682.764000px;}
.y3f_c00419{bottom:683.337000px;}
.y40_c00419{bottom:683.623500px;}
.y39_c00419{bottom:706.104000px;}
.y34_c00419{bottom:728.144983px;}
.y38_c00419{bottom:728.145388px;}
.y37_c00419{bottom:728.145438px;}
.y35_c00419{bottom:728.145495px;}
.y33_c00419{bottom:728.145562px;}
.y32_c00419{bottom:728.145741px;}
.y36_c00419{bottom:728.145796px;}
.y31_c00419{bottom:728.145880px;}
.y29_c00419{bottom:748.976695px;}
.y2a_c00419{bottom:749.416338px;}
.y2b_c00419{bottom:749.740681px;}
.y2c_c00419{bottom:749.991487px;}
.y2d_c00419{bottom:750.286299px;}
.y2e_c00419{bottom:750.894393px;}
.y2f_c00419{bottom:751.310569px;}
.y30_c00419{bottom:751.809880px;}
.y23_c00419{bottom:771.389284px;}
.y24_c00419{bottom:771.949332px;}
.y25_c00419{bottom:772.788448px;}
.y26_c00419{bottom:773.426814px;}
.y27_c00419{bottom:773.612040px;}
.y28_c00419{bottom:774.477151px;}
.y1b_c00419{bottom:794.341542px;}
.y1c_c00419{bottom:794.986680px;}
.y1d_c00419{bottom:795.478002px;}
.y1e_c00419{bottom:795.742695px;}
.y1f_c00419{bottom:796.604848px;}
.y20_c00419{bottom:796.945338px;}
.y21_c00419{bottom:797.356788px;}
.y22_c00419{bottom:797.988724px;}
.y11_c00419{bottom:817.293000px;}
.y12_c00419{bottom:817.767532px;}
.y13_c00419{bottom:818.177442px;}
.y14_c00419{bottom:818.714647px;}
.y15_c00419{bottom:819.275877px;}
.y16_c00419{bottom:819.795669px;}
.y17_c00419{bottom:820.118706px;}
.y18_c00419{bottom:820.701639px;}
.y19_c00419{bottom:820.950595px;}
.y1a_c00419{bottom:821.270025px;}
.yf_c00419{bottom:898.829358px;}
.y10_c00419{bottom:902.618346px;}
.y8_c00419{bottom:903.691056px;}
.y9_c00419{bottom:904.263996px;}
.ya_c00419{bottom:904.521684px;}
.yb_c00419{bottom:906.406104px;}
.yc_c00419{bottom:907.154598px;}
.yd_c00419{bottom:908.127966px;}
.ye_c00419{bottom:908.869944px;}
.y1_c00419{bottom:918.811500px;}
.y2_c00419{bottom:920.292540px;}
.y3_c00419{bottom:921.128082px;}
.y4_c00419{bottom:921.799140px;}
.y5_c00419{bottom:922.500348px;}
.y6_c00419{bottom:923.134272px;}
.y7_c00419{bottom:923.784072px;}
.hc_c00419{height:25.200000px;}
.h14_c00419{height:40.950000px;}
.h13_c00419{height:47.250000px;}
.h10_c00419{height:48.300000px;}
.hd_c00419{height:49.350000px;}
.h11_c00419{height:50.400000px;}
.h20_c00419{height:50.407282px;}
.hf_c00419{height:51.450000px;}
.h1f_c00419{height:51.457434px;}
.h12_c00419{height:52.500000px;}
.h1a_c00419{height:52.505906px;}
.h22_c00419{height:52.507586px;}
.h1e_c00419{height:52.508504px;}
.he_c00419{height:53.550000px;}
.h19_c00419{height:53.555248px;}
.h1c_c00419{height:53.556024px;}
.h26_c00419{height:53.556854px;}
.h15_c00419{height:54.600000px;}
.h1b_c00419{height:54.606142px;}
.h21_c00419{height:54.607889px;}
.h18_c00419{height:55.650000px;}
.h25_c00419{height:55.657123px;}
.h1d_c00419{height:55.659015px;}
.h28_c00419{height:57.750000px;}
.h23_c00419{height:58.808496px;}
.h17_c00419{height:59.850000px;}
.h24_c00419{height:59.857660px;}
.h16_c00419{height:60.900000px;}
.h27_c00419{height:61.950000px;}
.h3_c00419{height:61.954460px;}
.h29_c00419{height:63.000000px;}
.ha_c00419{height:68.250000px;}
.h4_c00419{height:69.304989px;}
.h6_c00419{height:69.305856px;}
.hb_c00419{height:70.350000px;}
.h9_c00419{height:71.400000px;}
.h8_c00419{height:71.406033px;}
.h7_c00419{height:74.556299px;}
.h5_c00419{height:75.606388px;}
.h2_c00419{height:77.705594px;}
.h0_c00419{height:1008.450000px;}
.h1_c00419{height:1008.750000px;}
.w1_c00419{width:689.250000px;}
.w0_c00419{width:689.550000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:88.452000px;}
.xe_c00419{left:94.514124px;}
.x73_c00419{left:128.790000px;}
.x8_c00419{left:136.216422px;}
.x4b_c00419{left:143.100000px;}
.x44_c00419{left:144.990000px;}
.x3e_c00419{left:146.070000px;}
.x7a_c00419{left:147.960000px;}
.xbe_c00419{left:154.137864px;}
.x9_c00419{left:157.690422px;}
.x4f_c00419{left:162.270000px;}
.x62_c00419{left:165.780000px;}
.x60_c00419{left:167.670000px;}
.x76_c00419{left:171.180000px;}
.x69_c00419{left:172.800000px;}
.x6d_c00419{left:174.690000px;}
.x5d_c00419{left:176.040000px;}
.x66_c00419{left:178.200000px;}
.x30_c00419{left:179.280000px;}
.x29_c00419{left:181.435956px;}
.x10_c00419{left:182.979000px;}
.x42_c00419{left:186.570000px;}
.x7e_c00419{left:188.460000px;}
.x45_c00419{left:189.810000px;}
.x55_c00419{left:194.940000px;}
.x75_c00419{left:197.370000px;}
.x53_c00419{left:199.260000px;}
.x63_c00419{left:200.340000px;}
.x2a_c00419{left:205.198473px;}
.x38_c00419{left:206.946000px;}
.x72_c00419{left:208.170000px;}
.x50_c00419{left:209.250000px;}
.x79_c00419{left:210.600000px;}
.x2_c00419{left:211.872000px;}
.x7c_c00419{left:213.300000px;}
.x46_c00419{left:214.380000px;}
.x5a_c00419{left:217.620000px;}
.x11_c00419{left:219.481500px;}
.x40_c00419{left:223.290000px;}
.x25_c00419{left:226.894668px;}
.x20_c00419{left:229.140168px;}
.x35_c00419{left:231.795000px;}
.x1a_c00419{left:233.137409px;}
.x4c_c00419{left:237.600000px;}
.x6e_c00419{left:239.490000px;}
.x7d_c00419{left:241.380000px;}
.x51_c00419{left:242.460000px;}
.x64_c00419{left:244.350000px;}
.xbf_c00419{left:247.028148px;}
.x6a_c00419{left:249.750000px;}
.x12_c00419{left:251.013000px;}
.x3f_c00419{left:252.450000px;}
.x77_c00419{left:254.880000px;}
.x2b_c00419{left:255.962553px;}
.x47_c00419{left:257.040000px;}
.x5e_c00419{left:258.120000px;}
.x26_c00419{left:259.345436px;}
.x39_c00419{left:263.445000px;}
.x5b_c00419{left:265.410000px;}
.x65_c00419{left:267.570000px;}
.x1b_c00419{left:270.931409px;}
.x7f_c00419{left:272.970000px;}
.x7b_c00419{left:275.670000px;}
.x56_c00419{left:277.020000px;}
.x67_c00419{left:278.910000px;}
.x3_c00419{left:281.500500px;}
.x27_c00419{left:284.408411px;}
.x58_c00419{left:287.010000px;}
.x1c_c00419{left:291.292409px;}
.x13_c00419{left:292.336500px;}
.x74_c00419{left:293.490000px;}
.x2c_c00419{left:295.386222px;}
.x6f_c00419{left:297.810000px;}
.x21_c00419{left:299.111585px;}
.x48_c00419{left:302.670000px;}
.x36_c00419{left:304.423500px;}
.x3a_c00419{left:306.648000px;}
.x4d_c00419{left:309.150000px;}
.x41_c00419{left:310.230000px;}
.x54_c00419{left:312.120000px;}
.xa_c00419{left:314.725422px;}
.x49_c00419{left:318.600000px;}
.x5c_c00419{left:321.030000px;}
.x70_c00419{left:322.650000px;}
.x5f_c00419{left:325.890000px;}
.x43_c00419{left:327.240000px;}
.x61_c00419{left:329.400000px;}
.x4e_c00419{left:330.750000px;}
.x14_c00419{left:335.508000px;}
.x4_c00419{left:337.422000px;}
.x6b_c00419{left:338.580000px;}
.x68_c00419{left:339.930000px;}
.x71_c00419{left:341.550000px;}
.x52_c00419{left:345.060000px;}
.x31_c00419{left:346.140000px;}
.x78_c00419{left:347.490000px;}
.x22_c00419{left:352.255767px;}
.x6c_c00419{left:353.430000px;}
.x57_c00419{left:355.860000px;}
.x1d_c00419{left:357.611909px;}
.x3b_c00419{left:360.972000px;}
.x59_c00419{left:362.880000px;}
.xf_c00419{left:365.131626px;}
.x23_c00419{left:367.657962px;}
.x4a_c00419{left:369.630000px;}
.x15_c00419{left:375.492000px;}
.xb_c00419{left:377.099922px;}
.x1e_c00419{left:383.803409px;}
.x9b_c00419{left:385.156500px;}
.x37_c00419{left:387.585000px;}
.x80_c00419{left:392.727000px;}
.x84_c00419{left:394.357500px;}
.x5_c00419{left:395.856000px;}
.xb5_c00419{left:397.707591px;}
.x32_c00419{left:399.060000px;}
.x16_c00419{left:400.341000px;}
.x2d_c00419{left:401.505143px;}
.xad_c00419{left:409.208100px;}
.x89_c00419{left:410.825603px;}
.xaf_c00419{left:413.910519px;}
.x1f_c00419{left:415.453409px;}
.xc0_c00419{left:416.609016px;}
.xa1_c00419{left:417.877287px;}
.x90_c00419{left:420.307905px;}
.xc3_c00419{left:422.550000px;}
.xb9_c00419{left:424.032087px;}
.x8a_c00419{left:425.662102px;}
.x9c_c00419{left:427.057500px;}
.x3c_c00419{left:428.128500px;}
.xa7_c00419{left:429.685542px;}
.x33_c00419{left:433.620000px;}
.xa2_c00419{left:437.593287px;}
.x24_c00419{left:439.744398px;}
.x97_c00419{left:444.055177px;}
.x17_c00419{left:445.182000px;}
.x2e_c00419{left:447.408403px;}
.x6_c00419{left:448.683000px;}
.x9d_c00419{left:450.543000px;}
.xca_c00419{left:452.250000px;}
.xc4_c00419{left:454.950000px;}
.xc_c00419{left:458.213922px;}
.xb0_c00419{left:459.277626px;}
.xc1_c00419{left:460.890000px;}
.x34_c00419{left:463.050000px;}
.x18_c00419{left:464.332500px;}
.x28_c00419{left:466.176489px;}
.xac_c00419{left:470.619619px;}
.xb3_c00419{left:471.827249px;}
.x2f_c00419{left:473.601330px;}
.xa8_c00419{left:477.276042px;}
.x98_c00419{left:480.232057px;}
.x8b_c00419{left:482.372602px;}
.xb7_c00419{left:483.714317px;}
.x3d_c00419{left:486.181500px;}
.x94_c00419{left:487.514775px;}
.x19_c00419{left:488.904000px;}
.xb4_c00419{left:490.467192px;}
.xbc_c00419{left:492.933780px;}
.xba_c00419{left:494.013000px;}
.xae_c00419{left:496.962584px;}
.x8c_c00419{left:497.981603px;}
.xa4_c00419{left:499.738500px;}
.x7_c00419{left:502.833000px;}
.x85_c00419{left:503.925000px;}
.xaa_c00419{left:509.118705px;}
.xb1_c00419{left:510.584942px;}
.xa3_c00419{left:512.111787px;}
.x9e_c00419{left:513.462000px;}
.x91_c00419{left:515.084213px;}
.x8d_c00419{left:516.932602px;}
.xd_c00419{left:520.045422px;}
.xc5_c00419{left:522.720000px;}
.x81_c00419{left:523.933500px;}
.x9f_c00419{left:525.894000px;}
.xcb_c00419{left:528.390000px;}
.xb2_c00419{left:532.998419px;}
.x86_c00419{left:534.234000px;}
.x95_c00419{left:539.103457px;}
.xb6_c00419{left:541.366605px;}
.xc6_c00419{left:543.510000px;}
.xbb_c00419{left:545.044500px;}
.x8e_c00419{left:546.049103px;}
.x82_c00419{left:552.025500px;}
.x92_c00419{left:556.394738px;}
.x8f_c00419{left:560.104102px;}
.xa5_c00419{left:561.523500px;}
.x99_c00419{left:567.463642px;}
.xc7_c00419{left:570.240000px;}
.xc8_c00419{left:572.400000px;}
.xa6_c00419{left:573.406500px;}
.x93_c00419{left:579.889320px;}
.x87_c00419{left:583.095000px;}
.xbd_c00419{left:584.225244px;}
.xc2_c00419{left:585.360000px;}
.xa9_c00419{left:592.260042px;}
.x83_c00419{left:594.130500px;}
.x88_c00419{left:596.319000px;}
.xab_c00419{left:597.723714px;}
.xa0_c00419{left:599.626500px;}
.x9a_c00419{left:600.672157px;}
.xc9_c00419{left:603.180000px;}
.x96_c00419{left:604.950510px;}
.xb8_c00419{left:608.489082px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:0.000000pt;}
.fsa_c00419{font-size:22.400000pt;}
.fs12_c00419{font-size:36.400000pt;}
.fs11_c00419{font-size:42.000000pt;}
.fse_c00419{font-size:42.933333pt;}
.fsb_c00419{font-size:43.866667pt;}
.fsf_c00419{font-size:44.800000pt;}
.fs1e_c00419{font-size:44.806473pt;}
.fsd_c00419{font-size:45.733333pt;}
.fs1d_c00419{font-size:45.739941pt;}
.fs10_c00419{font-size:46.666667pt;}
.fs18_c00419{font-size:46.671916pt;}
.fs20_c00419{font-size:46.673410pt;}
.fs1c_c00419{font-size:46.674226pt;}
.fsc_c00419{font-size:47.600000pt;}
.fs17_c00419{font-size:47.604665pt;}
.fs1a_c00419{font-size:47.605355pt;}
.fs24_c00419{font-size:47.606092pt;}
.fs13_c00419{font-size:48.533333pt;}
.fs19_c00419{font-size:48.538793pt;}
.fs1f_c00419{font-size:48.540346pt;}
.fs16_c00419{font-size:49.466667pt;}
.fs23_c00419{font-size:49.472998pt;}
.fs1b_c00419{font-size:49.474680pt;}
.fs26_c00419{font-size:51.333333pt;}
.fs21_c00419{font-size:52.274219pt;}
.fs15_c00419{font-size:53.200000pt;}
.fs22_c00419{font-size:53.206809pt;}
.fs14_c00419{font-size:54.133333pt;}
.fs25_c00419{font-size:55.066667pt;}
.fs1_c00419{font-size:55.070631pt;}
.fs27_c00419{font-size:56.000000pt;}
.fs8_c00419{font-size:60.666667pt;}
.fs2_c00419{font-size:61.604435pt;}
.fs4_c00419{font-size:61.605205pt;}
.fs9_c00419{font-size:62.533333pt;}
.fs7_c00419{font-size:63.466667pt;}
.fs6_c00419{font-size:63.472029pt;}
.fs5_c00419{font-size:66.272266pt;}
.fs3_c00419{font-size:67.205678pt;}
.fs0_c00419{font-size:69.071639pt;}
.y0_c00419{bottom:0.000000pt;}
.y62_c00419{bottom:124.586667pt;}
.yf7_c00419{bottom:124.801333pt;}
.yf8_c00419{bottom:125.409333pt;}
.yf9_c00419{bottom:126.002667pt;}
.yfa_c00419{bottom:126.341333pt;}
.yfb_c00419{bottom:126.902667pt;}
.y61_c00419{bottom:140.665333pt;}
.yf6_c00419{bottom:142.188000pt;}
.y60_c00419{bottom:156.746667pt;}
.yf5_c00419{bottom:157.121333pt;}
.y5f_c00419{bottom:172.409333pt;}
.yf4_c00419{bottom:174.142667pt;}
.yec_c00419{bottom:188.648043pt;}
.yea_c00419{bottom:188.648085pt;}
.yed_c00419{bottom:188.648459pt;}
.yeb_c00419{bottom:188.648533pt;}
.ye9_c00419{bottom:188.648608pt;}
.yee_c00419{bottom:188.649003pt;}
.yef_c00419{bottom:188.649131pt;}
.yf0_c00419{bottom:188.649333pt;}
.yf1_c00419{bottom:188.649909pt;}
.yf3_c00419{bottom:189.448000pt;}
.y5e_c00419{bottom:204.118667pt;}
.yf2_c00419{bottom:205.448000pt;}
.ye4_c00419{bottom:220.080629pt;}
.y5d_c00419{bottom:220.121333pt;}
.ye5_c00419{bottom:220.987904pt;}
.ye6_c00419{bottom:221.395520pt;}
.ye7_c00419{bottom:222.238272pt;}
.ye8_c00419{bottom:222.612533pt;}
.ydc_c00419{bottom:234.966667pt;}
.ydd_c00419{bottom:235.185632pt;}
.yde_c00419{bottom:235.569888pt;}
.ydf_c00419{bottom:236.019104pt;}
.y5c_c00419{bottom:236.388000pt;}
.ye0_c00419{bottom:236.541408pt;}
.ye1_c00419{bottom:237.267189pt;}
.ye2_c00419{bottom:237.585803pt;}
.ye3_c00419{bottom:238.046859pt;}
.yd5_c00419{bottom:251.974723pt;}
.y5b_c00419{bottom:252.210667pt;}
.yd6_c00419{bottom:252.303851pt;}
.yd7_c00419{bottom:252.724472pt;}
.yd8_c00419{bottom:253.010143pt;}
.yd9_c00419{bottom:253.679260pt;}
.yda_c00419{bottom:253.954995pt;}
.ydb_c00419{bottom:254.452508pt;}
.ycf_c00419{bottom:267.817968pt;}
.y5a_c00419{bottom:267.849333pt;}
.yd0_c00419{bottom:268.191143pt;}
.yd1_c00419{bottom:268.957111pt;}
.yd2_c00419{bottom:269.198961pt;}
.yd3_c00419{bottom:269.420377pt;}
.yd4_c00419{bottom:270.442303pt;}
.ycb_c00419{bottom:283.901825pt;}
.y59_c00419{bottom:284.312000pt;}
.ycc_c00419{bottom:285.202960pt;}
.ycd_c00419{bottom:285.652327pt;}
.yce_c00419{bottom:286.864268pt;}
.y58_c00419{bottom:300.885333pt;}
.yca_c00419{bottom:301.775872pt;}
.yc9_c00419{bottom:301.776020pt;}
.yc8_c00419{bottom:301.776209pt;}
.yc7_c00419{bottom:301.776399pt;}
.yc6_c00419{bottom:301.776467pt;}
.ybf_c00419{bottom:316.547192pt;}
.y57_c00419{bottom:316.693333pt;}
.yc0_c00419{bottom:316.799115pt;}
.yc1_c00419{bottom:317.480711pt;}
.yc2_c00419{bottom:317.713033pt;}
.yc3_c00419{bottom:318.403881pt;}
.yc4_c00419{bottom:318.543868pt;}
.yc5_c00419{bottom:319.084340pt;}
.y56_c00419{bottom:332.909333pt;}
.yb8_c00419{bottom:333.955809pt;}
.yb9_c00419{bottom:333.955871pt;}
.ybb_c00419{bottom:333.955887pt;}
.ybe_c00419{bottom:333.956064pt;}
.ybd_c00419{bottom:333.956235pt;}
.ybc_c00419{bottom:333.956307pt;}
.yba_c00419{bottom:333.956328pt;}
.yb4_c00419{bottom:348.473027pt;}
.y55_c00419{bottom:348.888000pt;}
.yb5_c00419{bottom:349.643049pt;}
.yb6_c00419{bottom:350.475497pt;}
.yb7_c00419{bottom:350.903208pt;}
.y54_c00419{bottom:364.724000pt;}
.yb1_c00419{bottom:365.953217pt;}
.yb2_c00419{bottom:365.953397pt;}
.yb3_c00419{bottom:365.953805pt;}
.yaa_c00419{bottom:380.878492pt;}
.y53_c00419{bottom:381.145333pt;}
.yab_c00419{bottom:381.414525pt;}
.yac_c00419{bottom:381.780695pt;}
.yad_c00419{bottom:382.378813pt;}
.yae_c00419{bottom:382.879335pt;}
.yaf_c00419{bottom:383.333347pt;}
.yb0_c00419{bottom:383.560355pt;}
.ya4_c00419{bottom:396.720869pt;}
.ya5_c00419{bottom:397.217791pt;}
.y52_c00419{bottom:397.230667pt;}
.ya6_c00419{bottom:397.936936pt;}
.ya7_c00419{bottom:398.979467pt;}
.ya8_c00419{bottom:399.181359pt;}
.ya9_c00419{bottom:399.674472pt;}
.y9e_c00419{bottom:412.562667pt;}
.y9f_c00419{bottom:413.057117pt;}
.y51_c00419{bottom:413.308000pt;}
.ya0_c00419{bottom:413.728844pt;}
.ya1_c00419{bottom:414.126281pt;}
.ya2_c00419{bottom:415.059921pt;}
.ya3_c00419{bottom:415.239487pt;}
.y97_c00419{bottom:428.401813pt;}
.y98_c00419{bottom:428.582605pt;}
.y99_c00419{bottom:428.919733pt;}
.y50_c00419{bottom:428.982667pt;}
.y9a_c00419{bottom:429.235189pt;}
.y9b_c00419{bottom:429.912469pt;}
.y9c_c00419{bottom:430.427485pt;}
.y9d_c00419{bottom:430.868509pt;}
.y8f_c00419{bottom:444.242667pt;}
.y90_c00419{bottom:444.423915pt;}
.y91_c00419{bottom:444.913083pt;}
.y4f_c00419{bottom:445.129333pt;}
.y92_c00419{bottom:445.288851pt;}
.y93_c00419{bottom:446.295555pt;}
.y94_c00419{bottom:446.494467pt;}
.y95_c00419{bottom:447.410163pt;}
.y96_c00419{bottom:447.674187pt;}
.y89_c00419{bottom:460.793647pt;}
.y4e_c00419{bottom:460.794667pt;}
.y8a_c00419{bottom:461.558747pt;}
.y8b_c00419{bottom:462.137127pt;}
.y8c_c00419{bottom:462.690767pt;}
.y8d_c00419{bottom:463.532267pt;}
.y8e_c00419{bottom:464.063067pt;}
.y4d_c00419{bottom:477.008000pt;}
.y81_c00419{bottom:477.117847pt;}
.y82_c00419{bottom:477.423933pt;}
.y83_c00419{bottom:477.825280pt;}
.y84_c00419{bottom:478.580573pt;}
.y85_c00419{bottom:479.043307pt;}
.y86_c00419{bottom:479.405787pt;}
.y87_c00419{bottom:480.056787pt;}
.y88_c00419{bottom:480.458453pt;}
.y4c_c00419{bottom:492.816000pt;}
.y79_c00419{bottom:492.959200pt;}
.y7a_c00419{bottom:493.384013pt;}
.y7b_c00419{bottom:493.712627pt;}
.y7c_c00419{bottom:494.141493pt;}
.y7d_c00419{bottom:494.985107pt;}
.y7e_c00419{bottom:495.682613pt;}
.y7f_c00419{bottom:496.079893pt;}
.y80_c00419{bottom:496.366453pt;}
.y4b_c00419{bottom:508.661333pt;}
.y70_c00419{bottom:509.281167pt;}
.y71_c00419{bottom:509.486567pt;}
.y72_c00419{bottom:509.684387pt;}
.y73_c00419{bottom:510.440527pt;}
.y74_c00419{bottom:510.648647pt;}
.y75_c00419{bottom:510.901327pt;}
.y76_c00419{bottom:511.289547pt;}
.y77_c00419{bottom:511.476947pt;}
.y78_c00419{bottom:511.967407pt;}
.y69_c00419{bottom:525.602667pt;}
.y4a_c00419{bottom:525.641333pt;}
.y6a_c00419{bottom:526.062667pt;}
.y6b_c00419{bottom:526.466627pt;}
.y6c_c00419{bottom:527.063567pt;}
.y6d_c00419{bottom:527.467687pt;}
.y6e_c00419{bottom:528.119167pt;}
.y6f_c00419{bottom:528.295487pt;}
.y49_c00419{bottom:541.641333pt;}
.y63_c00419{bottom:541.921333pt;}
.y64_c00419{bottom:542.435320pt;}
.y65_c00419{bottom:542.925917pt;}
.y66_c00419{bottom:543.554125pt;}
.y67_c00419{bottom:543.903715pt;}
.y68_c00419{bottom:544.427688pt;}
.y48_c00419{bottom:564.382667pt;}
.y41_c00419{bottom:584.642667pt;}
.y42_c00419{bottom:584.964000pt;}
.y43_c00419{bottom:585.666667pt;}
.y44_c00419{bottom:586.204000pt;}
.y45_c00419{bottom:586.880000pt;}
.y46_c00419{bottom:587.716000pt;}
.y47_c00419{bottom:588.438667pt;}
.y3a_c00419{bottom:605.041333pt;}
.y3b_c00419{bottom:605.516000pt;}
.y3c_c00419{bottom:606.161333pt;}
.y3d_c00419{bottom:606.632000pt;}
.y3e_c00419{bottom:606.901333pt;}
.y3f_c00419{bottom:607.410667pt;}
.y40_c00419{bottom:607.665333pt;}
.y39_c00419{bottom:627.648000pt;}
.y34_c00419{bottom:647.239985pt;}
.y38_c00419{bottom:647.240345pt;}
.y37_c00419{bottom:647.240389pt;}
.y35_c00419{bottom:647.240440pt;}
.y33_c00419{bottom:647.240500pt;}
.y32_c00419{bottom:647.240659pt;}
.y36_c00419{bottom:647.240708pt;}
.y31_c00419{bottom:647.240783pt;}
.y29_c00419{bottom:665.757063pt;}
.y2a_c00419{bottom:666.147856pt;}
.y2b_c00419{bottom:666.436161pt;}
.y2c_c00419{bottom:666.659100pt;}
.y2d_c00419{bottom:666.921155pt;}
.y2e_c00419{bottom:667.461683pt;}
.y2f_c00419{bottom:667.831617pt;}
.y30_c00419{bottom:668.275449pt;}
.y23_c00419{bottom:685.679364pt;}
.y24_c00419{bottom:686.177184pt;}
.y25_c00419{bottom:686.923065pt;}
.y26_c00419{bottom:687.490501pt;}
.y27_c00419{bottom:687.655147pt;}
.y28_c00419{bottom:688.424135pt;}
.y1b_c00419{bottom:706.081371pt;}
.y1c_c00419{bottom:706.654827pt;}
.y1d_c00419{bottom:707.091557pt;}
.y1e_c00419{bottom:707.326840pt;}
.y1f_c00419{bottom:708.093199pt;}
.y20_c00419{bottom:708.395856pt;}
.y21_c00419{bottom:708.761589pt;}
.y22_c00419{bottom:709.323311pt;}
.y11_c00419{bottom:726.482667pt;}
.y12_c00419{bottom:726.904473pt;}
.y13_c00419{bottom:727.268837pt;}
.y14_c00419{bottom:727.746353pt;}
.y15_c00419{bottom:728.245224pt;}
.y16_c00419{bottom:728.707261pt;}
.y17_c00419{bottom:728.994405pt;}
.y18_c00419{bottom:729.512568pt;}
.y19_c00419{bottom:729.733863pt;}
.y1a_c00419{bottom:730.017800pt;}
.yf_c00419{bottom:798.959429pt;}
.y10_c00419{bottom:802.327419pt;}
.y8_c00419{bottom:803.280939pt;}
.y9_c00419{bottom:803.790219pt;}
.ya_c00419{bottom:804.019275pt;}
.yb_c00419{bottom:805.694315pt;}
.yc_c00419{bottom:806.359643pt;}
.yd_c00419{bottom:807.224859pt;}
.ye_c00419{bottom:807.884395pt;}
.y1_c00419{bottom:816.721333pt;}
.y2_c00419{bottom:818.037813pt;}
.y3_c00419{bottom:818.780517pt;}
.y4_c00419{bottom:819.377013pt;}
.y5_c00419{bottom:820.000309pt;}
.y6_c00419{bottom:820.563797pt;}
.y7_c00419{bottom:821.141397pt;}
.hc_c00419{height:22.400000pt;}
.h14_c00419{height:36.400000pt;}
.h13_c00419{height:42.000000pt;}
.h10_c00419{height:42.933333pt;}
.hd_c00419{height:43.866667pt;}
.h11_c00419{height:44.800000pt;}
.h20_c00419{height:44.806473pt;}
.hf_c00419{height:45.733333pt;}
.h1f_c00419{height:45.739941pt;}
.h12_c00419{height:46.666667pt;}
.h1a_c00419{height:46.671916pt;}
.h22_c00419{height:46.673410pt;}
.h1e_c00419{height:46.674226pt;}
.he_c00419{height:47.600000pt;}
.h19_c00419{height:47.604665pt;}
.h1c_c00419{height:47.605355pt;}
.h26_c00419{height:47.606092pt;}
.h15_c00419{height:48.533333pt;}
.h1b_c00419{height:48.538793pt;}
.h21_c00419{height:48.540346pt;}
.h18_c00419{height:49.466667pt;}
.h25_c00419{height:49.472998pt;}
.h1d_c00419{height:49.474680pt;}
.h28_c00419{height:51.333333pt;}
.h23_c00419{height:52.274219pt;}
.h17_c00419{height:53.200000pt;}
.h24_c00419{height:53.206809pt;}
.h16_c00419{height:54.133333pt;}
.h27_c00419{height:55.066667pt;}
.h3_c00419{height:55.070631pt;}
.h29_c00419{height:56.000000pt;}
.ha_c00419{height:60.666667pt;}
.h4_c00419{height:61.604435pt;}
.h6_c00419{height:61.605205pt;}
.hb_c00419{height:62.533333pt;}
.h9_c00419{height:63.466667pt;}
.h8_c00419{height:63.472029pt;}
.h7_c00419{height:66.272266pt;}
.h5_c00419{height:67.205678pt;}
.h2_c00419{height:69.071639pt;}
.h0_c00419{height:896.400000pt;}
.h1_c00419{height:896.666667pt;}
.w1_c00419{width:612.666667pt;}
.w0_c00419{width:612.933333pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:78.624000pt;}
.xe_c00419{left:84.012555pt;}
.x73_c00419{left:114.480000pt;}
.x8_c00419{left:121.081264pt;}
.x4b_c00419{left:127.200000pt;}
.x44_c00419{left:128.880000pt;}
.x3e_c00419{left:129.840000pt;}
.x7a_c00419{left:131.520000pt;}
.xbe_c00419{left:137.011435pt;}
.x9_c00419{left:140.169264pt;}
.x4f_c00419{left:144.240000pt;}
.x62_c00419{left:147.360000pt;}
.x60_c00419{left:149.040000pt;}
.x76_c00419{left:152.160000pt;}
.x69_c00419{left:153.600000pt;}
.x6d_c00419{left:155.280000pt;}
.x5d_c00419{left:156.480000pt;}
.x66_c00419{left:158.400000pt;}
.x30_c00419{left:159.360000pt;}
.x29_c00419{left:161.276405pt;}
.x10_c00419{left:162.648000pt;}
.x42_c00419{left:165.840000pt;}
.x7e_c00419{left:167.520000pt;}
.x45_c00419{left:168.720000pt;}
.x55_c00419{left:173.280000pt;}
.x75_c00419{left:175.440000pt;}
.x53_c00419{left:177.120000pt;}
.x63_c00419{left:178.080000pt;}
.x2a_c00419{left:182.398643pt;}
.x38_c00419{left:183.952000pt;}
.x72_c00419{left:185.040000pt;}
.x50_c00419{left:186.000000pt;}
.x79_c00419{left:187.200000pt;}
.x2_c00419{left:188.330667pt;}
.x7c_c00419{left:189.600000pt;}
.x46_c00419{left:190.560000pt;}
.x5a_c00419{left:193.440000pt;}
.x11_c00419{left:195.094667pt;}
.x40_c00419{left:198.480000pt;}
.x25_c00419{left:201.684149pt;}
.x20_c00419{left:203.680149pt;}
.x35_c00419{left:206.040000pt;}
.x1a_c00419{left:207.233252pt;}
.x4c_c00419{left:211.200000pt;}
.x6e_c00419{left:212.880000pt;}
.x7d_c00419{left:214.560000pt;}
.x51_c00419{left:215.520000pt;}
.x64_c00419{left:217.200000pt;}
.xbf_c00419{left:219.580576pt;}
.x6a_c00419{left:222.000000pt;}
.x12_c00419{left:223.122667pt;}
.x3f_c00419{left:224.400000pt;}
.x77_c00419{left:226.560000pt;}
.x2b_c00419{left:227.522269pt;}
.x47_c00419{left:228.480000pt;}
.x5e_c00419{left:229.440000pt;}
.x26_c00419{left:230.529276pt;}
.x39_c00419{left:234.173333pt;}
.x5b_c00419{left:235.920000pt;}
.x65_c00419{left:237.840000pt;}
.x1b_c00419{left:240.827919pt;}
.x7f_c00419{left:242.640000pt;}
.x7b_c00419{left:245.040000pt;}
.x56_c00419{left:246.240000pt;}
.x67_c00419{left:247.920000pt;}
.x3_c00419{left:250.222667pt;}
.x27_c00419{left:252.807476pt;}
.x58_c00419{left:255.120000pt;}
.x1c_c00419{left:258.926585pt;}
.x13_c00419{left:259.854667pt;}
.x74_c00419{left:260.880000pt;}
.x2c_c00419{left:262.565531pt;}
.x6f_c00419{left:264.720000pt;}
.x21_c00419{left:265.876964pt;}
.x48_c00419{left:269.040000pt;}
.x36_c00419{left:270.598667pt;}
.x3a_c00419{left:272.576000pt;}
.x4d_c00419{left:274.800000pt;}
.x41_c00419{left:275.760000pt;}
.x54_c00419{left:277.440000pt;}
.xa_c00419{left:279.755931pt;}
.x49_c00419{left:283.200000pt;}
.x5c_c00419{left:285.360000pt;}
.x70_c00419{left:286.800000pt;}
.x5f_c00419{left:289.680000pt;}
.x43_c00419{left:290.880000pt;}
.x61_c00419{left:292.800000pt;}
.x4e_c00419{left:294.000000pt;}
.x14_c00419{left:298.229333pt;}
.x4_c00419{left:299.930667pt;}
.x6b_c00419{left:300.960000pt;}
.x68_c00419{left:302.160000pt;}
.x71_c00419{left:303.600000pt;}
.x52_c00419{left:306.720000pt;}
.x31_c00419{left:307.680000pt;}
.x78_c00419{left:308.880000pt;}
.x22_c00419{left:313.116237pt;}
.x6c_c00419{left:314.160000pt;}
.x57_c00419{left:316.320000pt;}
.x1d_c00419{left:317.877252pt;}
.x3b_c00419{left:320.864000pt;}
.x59_c00419{left:322.560000pt;}
.xf_c00419{left:324.561445pt;}
.x23_c00419{left:326.807077pt;}
.x4a_c00419{left:328.560000pt;}
.x15_c00419{left:333.770667pt;}
.xb_c00419{left:335.199931pt;}
.x1e_c00419{left:341.158585pt;}
.x9b_c00419{left:342.361333pt;}
.x37_c00419{left:344.520000pt;}
.x80_c00419{left:349.090667pt;}
.x84_c00419{left:350.540000pt;}
.x5_c00419{left:351.872000pt;}
.xb5_c00419{left:353.517859pt;}
.x32_c00419{left:354.720000pt;}
.x16_c00419{left:355.858667pt;}
.x2d_c00419{left:356.893460pt;}
.xad_c00419{left:363.740533pt;}
.x89_c00419{left:365.178313pt;}
.xaf_c00419{left:367.920461pt;}
.x1f_c00419{left:369.291919pt;}
.xc0_c00419{left:370.319125pt;}
.xa1_c00419{left:371.446477pt;}
.x90_c00419{left:373.607027pt;}
.xc3_c00419{left:375.600000pt;}
.xb9_c00419{left:376.917411pt;}
.x8a_c00419{left:378.366313pt;}
.x9c_c00419{left:379.606667pt;}
.x3c_c00419{left:380.558667pt;}
.xa7_c00419{left:381.942704pt;}
.x33_c00419{left:385.440000pt;}
.xa2_c00419{left:388.971811pt;}
.x24_c00419{left:390.883909pt;}
.x97_c00419{left:394.715713pt;}
.x17_c00419{left:395.717333pt;}
.x2e_c00419{left:397.696359pt;}
.x6_c00419{left:398.829333pt;}
.x9d_c00419{left:400.482667pt;}
.xca_c00419{left:402.000000pt;}
.xc4_c00419{left:404.400000pt;}
.xc_c00419{left:407.301264pt;}
.xb0_c00419{left:408.246779pt;}
.xc1_c00419{left:409.680000pt;}
.x34_c00419{left:411.600000pt;}
.x18_c00419{left:412.740000pt;}
.x28_c00419{left:414.379101pt;}
.xac_c00419{left:418.328551pt;}
.xb3_c00419{left:419.401999pt;}
.x2f_c00419{left:420.978960pt;}
.xa8_c00419{left:424.245371pt;}
.x98_c00419{left:426.872940pt;}
.x8b_c00419{left:428.775647pt;}
.xb7_c00419{left:429.968281pt;}
.x3d_c00419{left:432.161333pt;}
.x94_c00419{left:433.346467pt;}
.x19_c00419{left:434.581333pt;}
.xb4_c00419{left:435.970837pt;}
.xbc_c00419{left:438.163360pt;}
.xba_c00419{left:439.122667pt;}
.xae_c00419{left:441.744519pt;}
.x8c_c00419{left:442.650313pt;}
.xa4_c00419{left:444.212000pt;}
.x7_c00419{left:446.962667pt;}
.x85_c00419{left:447.933333pt;}
.xaa_c00419{left:452.549960pt;}
.xb1_c00419{left:453.853281pt;}
.xa3_c00419{left:455.210477pt;}
.x9e_c00419{left:456.410667pt;}
.x91_c00419{left:457.852633pt;}
.x8d_c00419{left:459.495647pt;}
.xd_c00419{left:462.262597pt;}
.xc5_c00419{left:464.640000pt;}
.x81_c00419{left:465.718667pt;}
.x9f_c00419{left:467.461333pt;}
.xcb_c00419{left:469.680000pt;}
.xb2_c00419{left:473.776372pt;}
.x86_c00419{left:474.874667pt;}
.x95_c00419{left:479.203073pt;}
.xb6_c00419{left:481.214760pt;}
.xc6_c00419{left:483.120000pt;}
.xbb_c00419{left:484.484000pt;}
.x8e_c00419{left:485.376980pt;}
.x82_c00419{left:490.689333pt;}
.x92_c00419{left:494.573100pt;}
.x8f_c00419{left:497.870313pt;}
.xa5_c00419{left:499.132000pt;}
.x99_c00419{left:504.412127pt;}
.xc7_c00419{left:506.880000pt;}
.xc8_c00419{left:508.800000pt;}
.xa6_c00419{left:509.694667pt;}
.x93_c00419{left:515.457173pt;}
.x87_c00419{left:518.306667pt;}
.xbd_c00419{left:519.311328pt;}
.xc2_c00419{left:520.320000pt;}
.xa9_c00419{left:526.453371pt;}
.x83_c00419{left:528.116000pt;}
.x88_c00419{left:530.061333pt;}
.xab_c00419{left:531.309968pt;}
.xa0_c00419{left:533.001333pt;}
.x9a_c00419{left:533.930807pt;}
.xc9_c00419{left:536.160000pt;}
.x96_c00419{left:537.733787pt;}
.xb8_c00419{left:540.879184pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m8_c00420{transform:matrix(0.011017,0.000264,-0.005998,0.249928,0,0);-ms-transform:matrix(0.011017,0.000264,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.011017,0.000264,-0.005998,0.249928,0,0);}
.me2_c00420{transform:matrix(0.012037,0.000289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.012037,0.000289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.012037,0.000289,-0.005998,0.249928,0,0);}
.ma4_c00420{transform:matrix(0.013467,0.000283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.013467,0.000283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.013467,0.000283,-0.005249,0.249945,0,0);}
.mad_c00420{transform:matrix(0.013720,0.000384,-0.006997,0.249902,0,0);-ms-transform:matrix(0.013720,0.000384,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.013720,0.000384,-0.006997,0.249902,0,0);}
.m7c_c00420{transform:matrix(0.014842,0.000312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.014842,0.000312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.014842,0.000312,-0.005249,0.249945,0,0);}
.mdd_c00420{transform:matrix(0.016695,0.000401,-0.005998,0.249928,0,0);-ms-transform:matrix(0.016695,0.000401,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.016695,0.000401,-0.005998,0.249928,0,0);}
.m116_c00420{transform:matrix(0.022258,0.000556,-0.006248,0.249922,0,0);-ms-transform:matrix(0.022258,0.000556,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.022258,0.000556,-0.006248,0.249922,0,0);}
.m18f_c00420{transform:matrix(0.030296,0.000727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.030296,0.000727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.030296,0.000727,-0.005998,0.249928,0,0);}
.mf8_c00420{transform:matrix(0.047285,0.001182,-0.006248,0.249922,0,0);-ms-transform:matrix(0.047285,0.001182,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.047285,0.001182,-0.006248,0.249922,0,0);}
.m180_c00420{transform:matrix(0.065771,0.001579,-0.005998,0.249928,0,0);-ms-transform:matrix(0.065771,0.001579,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.065771,0.001579,-0.005998,0.249928,0,0);}
.m8d_c00420{transform:matrix(0.072699,0.001527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.072699,0.001527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.072699,0.001527,-0.005249,0.249945,0,0);}
.m188_c00420{transform:matrix(0.098752,0.002370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.098752,0.002370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.098752,0.002370,-0.005998,0.249928,0,0);}
.m3f_c00420{transform:matrix(0.104290,0.002503,-0.005998,0.249928,0,0);-ms-transform:matrix(0.104290,0.002503,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.104290,0.002503,-0.005998,0.249928,0,0);}
.m7_c00420{transform:matrix(0.105235,0.002526,-0.005998,0.249928,0,0);-ms-transform:matrix(0.105235,0.002526,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.105235,0.002526,-0.005998,0.249928,0,0);}
.m13_c00420{transform:matrix(0.126184,0.003028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.126184,0.003028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.126184,0.003028,-0.005998,0.249928,0,0);}
.m2c_c00420{transform:matrix(0.132860,0.003056,-0.005748,0.249934,0,0);-ms-transform:matrix(0.132860,0.003056,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.132860,0.003056,-0.005748,0.249934,0,0);}
.m167_c00420{transform:matrix(0.134886,0.003237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.134886,0.003237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.134886,0.003237,-0.005998,0.249928,0,0);}
.m1a_c00420{transform:matrix(0.143959,0.003455,-0.005998,0.249928,0,0);-ms-transform:matrix(0.143959,0.003455,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.143959,0.003455,-0.005998,0.249928,0,0);}
.mf6_c00420{transform:matrix(0.144150,0.003604,-0.006248,0.249922,0,0);-ms-transform:matrix(0.144150,0.003604,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.144150,0.003604,-0.006248,0.249922,0,0);}
.m16e_c00420{transform:matrix(0.145458,0.003491,-0.005998,0.249928,0,0);-ms-transform:matrix(0.145458,0.003491,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.145458,0.003491,-0.005998,0.249928,0,0);}
.m129_c00420{transform:matrix(0.145480,0.003637,-0.006248,0.249922,0,0);-ms-transform:matrix(0.145480,0.003637,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.145480,0.003637,-0.006248,0.249922,0,0);}
.m16c_c00420{transform:matrix(0.147602,0.003542,-0.005998,0.249928,0,0);-ms-transform:matrix(0.147602,0.003542,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.147602,0.003542,-0.005998,0.249928,0,0);}
.m18_c00420{transform:matrix(0.152376,0.003657,-0.005998,0.249928,0,0);-ms-transform:matrix(0.152376,0.003657,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.152376,0.003657,-0.005998,0.249928,0,0);}
.md9_c00420{transform:matrix(0.153563,0.003378,-0.005499,0.249940,0,0);-ms-transform:matrix(0.153563,0.003378,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.153563,0.003378,-0.005499,0.249940,0,0);}
.me0_c00420{transform:matrix(0.153636,0.003687,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153636,0.003687,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153636,0.003687,-0.005998,0.249928,0,0);}
.me4_c00420{transform:matrix(0.153831,0.003692,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153831,0.003692,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153831,0.003692,-0.005998,0.249928,0,0);}
.mc8_c00420{transform:matrix(0.154806,0.003251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.154806,0.003251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.154806,0.003251,-0.005249,0.249945,0,0);}
.m6a_c00420{transform:matrix(0.155166,0.003258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155166,0.003258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155166,0.003258,-0.005249,0.249945,0,0);}
.m59_c00420{transform:matrix(0.156640,0.002193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156640,0.002193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156640,0.002193,-0.003500,0.249976,0,0);}
.m15d_c00420{transform:matrix(0.157895,0.003789,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157895,0.003789,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157895,0.003789,-0.005998,0.249928,0,0);}
.m19_c00420{transform:matrix(0.158394,0.003801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158394,0.003801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158394,0.003801,-0.005998,0.249928,0,0);}
.m6_c00420{transform:matrix(0.159244,0.003822,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159244,0.003822,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159244,0.003822,-0.005998,0.249928,0,0);}
.m23_c00420{transform:matrix(0.159734,0.003834,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159734,0.003834,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159734,0.003834,-0.005998,0.249928,0,0);}
.m165_c00420{transform:matrix(0.160579,0.003854,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160579,0.003854,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160579,0.003854,-0.005998,0.249928,0,0);}
.m151_c00420{transform:matrix(0.160994,0.003864,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160994,0.003864,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160994,0.003864,-0.005998,0.249928,0,0);}
.m1e_c00420{transform:matrix(0.161284,0.003871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161284,0.003871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161284,0.003871,-0.005998,0.249928,0,0);}
.m11a_c00420{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);}
.m4b_c00420{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);}
.m3e_c00420{transform:matrix(0.161998,0.003888,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161998,0.003888,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161998,0.003888,-0.005998,0.249928,0,0);}
.m28_c00420{transform:matrix(0.162772,0.003744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162772,0.003744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162772,0.003744,-0.005748,0.249934,0,0);}
.m5b_c00420{transform:matrix(0.162914,0.003421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162914,0.003421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162914,0.003421,-0.005249,0.249945,0,0);}
.m91_c00420{transform:matrix(0.163151,0.003100,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163151,0.003100,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163151,0.003100,-0.004749,0.249955,0,0);}
.m60_c00420{transform:matrix(0.163294,0.003429,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163294,0.003429,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163294,0.003429,-0.005249,0.249945,0,0);}
.m1b_c00420{transform:matrix(0.163868,0.003933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.163868,0.003933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.163868,0.003933,-0.005998,0.249928,0,0);}
.m4c_c00420{transform:matrix(0.165026,0.002805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165026,0.002805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165026,0.002805,-0.004249,0.249964,0,0);}
.ma_c00420{transform:matrix(0.165427,0.003970,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165427,0.003970,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165427,0.003970,-0.005998,0.249928,0,0);}
.m17c_c00420{transform:matrix(0.165557,0.003973,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165557,0.003973,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165557,0.003973,-0.005998,0.249928,0,0);}
.mc_c00420{transform:matrix(0.165742,0.003978,-0.005998,0.249928,0,0);-ms-transform:matrix(0.165742,0.003978,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.165742,0.003978,-0.005998,0.249928,0,0);}
.m4e_c00420{transform:matrix(0.165889,0.002322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165889,0.002322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165889,0.002322,-0.003500,0.249976,0,0);}
.m25_c00420{transform:matrix(0.166367,0.003993,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166367,0.003993,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166367,0.003993,-0.005998,0.249928,0,0);}
.m17_c00420{transform:matrix(0.166707,0.004001,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166707,0.004001,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166707,0.004001,-0.005998,0.249928,0,0);}
.m123_c00420{transform:matrix(0.166728,0.004168,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166728,0.004168,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166728,0.004168,-0.006248,0.249922,0,0);}
.m109_c00420{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);}
.m176_c00420{transform:matrix(0.167652,0.004024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167652,0.004024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167652,0.004024,-0.005998,0.249928,0,0);}
.m32_c00420{transform:matrix(0.167958,0.004199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167958,0.004199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167958,0.004199,-0.006248,0.249922,0,0);}
.m13e_c00420{transform:matrix(0.168008,0.004200,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168008,0.004200,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168008,0.004200,-0.006248,0.249922,0,0);}
.mc9_c00420{transform:matrix(0.168363,0.003536,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168363,0.003536,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168363,0.003536,-0.005249,0.249945,0,0);}
.m39_c00420{transform:matrix(0.168782,0.004220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168782,0.004220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168782,0.004220,-0.006248,0.249922,0,0);}
.m77_c00420{transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169258,0.003554,-0.005249,0.249945,0,0);}
.m16f_c00420{transform:matrix(0.169441,0.004067,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169441,0.004067,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169441,0.004067,-0.005998,0.249928,0,0);}
.md_c00420{transform:matrix(0.169501,0.004068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169501,0.004068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169501,0.004068,-0.005998,0.249928,0,0);}
.m8f_c00420{transform:matrix(0.169639,0.003223,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169639,0.003223,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169639,0.003223,-0.004749,0.249955,0,0);}
.m4a_c00420{transform:matrix(0.169820,0.002887,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169820,0.002887,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169820,0.002887,-0.004249,0.249964,0,0);}
.m169_c00420{transform:matrix(0.169936,0.004078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169936,0.004078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169936,0.004078,-0.005998,0.249928,0,0);}
.m17a_c00420{transform:matrix(0.170331,0.004088,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170331,0.004088,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170331,0.004088,-0.005998,0.249928,0,0);}
.m72_c00420{transform:matrix(0.170447,0.003579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170447,0.003579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170447,0.003579,-0.005249,0.249945,0,0);}
.m162_c00420{transform:matrix(0.170451,0.004091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170451,0.004091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170451,0.004091,-0.005998,0.249928,0,0);}
.m17b_c00420{transform:matrix(0.170811,0.004099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170811,0.004099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170811,0.004099,-0.005998,0.249928,0,0);}
.m75_c00420{transform:matrix(0.170967,0.003590,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170967,0.003590,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170967,0.003590,-0.005249,0.249945,0,0);}
.m112_c00420{transform:matrix(0.171067,0.004277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171067,0.004277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171067,0.004277,-0.006248,0.249922,0,0);}
.m6b_c00420{transform:matrix(0.171087,0.003593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171087,0.003593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171087,0.003593,-0.005249,0.249945,0,0);}
.m17d_c00420{transform:matrix(0.171481,0.004116,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171481,0.004116,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171481,0.004116,-0.005998,0.249928,0,0);}
.m11e_c00420{transform:matrix(0.171736,0.004293,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171736,0.004293,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171736,0.004293,-0.006248,0.249922,0,0);}
.m163_c00420{transform:matrix(0.172210,0.004133,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172210,0.004133,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172210,0.004133,-0.005998,0.249928,0,0);}
.m185_c00420{transform:matrix(0.172240,0.004134,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172240,0.004134,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172240,0.004134,-0.005998,0.249928,0,0);}
.m68_c00420{transform:matrix(0.172557,0.003624,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172557,0.003624,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172557,0.003624,-0.005249,0.249945,0,0);}
.m64_c00420{transform:matrix(0.172842,0.003630,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172842,0.003630,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172842,0.003630,-0.005249,0.249945,0,0);}
.me1_c00420{transform:matrix(0.173155,0.004156,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173155,0.004156,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173155,0.004156,-0.005998,0.249928,0,0);}
.m14e_c00420{transform:matrix(0.173215,0.004157,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173215,0.004157,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173215,0.004157,-0.005998,0.249928,0,0);}
.m5d_c00420{transform:matrix(0.173487,0.003643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173487,0.003643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173487,0.003643,-0.005249,0.249945,0,0);}
.m47_c00420{transform:matrix(0.173845,0.002955,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173845,0.002955,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173845,0.002955,-0.004249,0.249964,0,0);}
.m22_c00420{transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);}
.m164_c00420{transform:matrix(0.174000,0.004176,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174000,0.004176,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174000,0.004176,-0.005998,0.249928,0,0);}
.m52_c00420{transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174223,0.002439,-0.003500,0.249976,0,0);}
.m71_c00420{transform:matrix(0.174746,0.003670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174746,0.003670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174746,0.003670,-0.005249,0.249945,0,0);}
.meb_c00420{transform:matrix(0.174990,0.004200,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174990,0.004200,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174990,0.004200,-0.005998,0.249928,0,0);}
.md8_c00420{transform:matrix(0.175088,0.003852,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175088,0.003852,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175088,0.003852,-0.005499,0.249940,0,0);}
.m1f_c00420{transform:matrix(0.175305,0.004207,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175305,0.004207,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175305,0.004207,-0.005998,0.249928,0,0);}
.m166_c00420{transform:matrix(0.176309,0.004231,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176309,0.004231,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176309,0.004231,-0.005998,0.249928,0,0);}
.m6f_c00420{transform:matrix(0.176626,0.003709,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176626,0.003709,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176626,0.003709,-0.005249,0.249945,0,0);}
.m149_c00420{transform:matrix(0.176720,0.004418,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176720,0.004418,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176720,0.004418,-0.006248,0.249922,0,0);}
.md1_c00420{transform:matrix(0.176724,0.004241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176724,0.004241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176724,0.004241,-0.005998,0.249928,0,0);}
.m9d_c00420{transform:matrix(0.176826,0.003713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176826,0.003713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176826,0.003713,-0.005249,0.249945,0,0);}
.m157_c00420{transform:matrix(0.177229,0.004253,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177229,0.004253,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177229,0.004253,-0.005998,0.249928,0,0);}
.m144_c00420{transform:matrix(0.177300,0.004432,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177300,0.004432,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177300,0.004432,-0.006248,0.249922,0,0);}
.mec_c00420{transform:matrix(0.177414,0.004258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177414,0.004258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177414,0.004258,-0.005998,0.249928,0,0);}
.m3c_c00420{transform:matrix(0.177429,0.004258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177429,0.004258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177429,0.004258,-0.005998,0.249928,0,0);}
.m11d_c00420{transform:matrix(0.178059,0.004451,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178059,0.004451,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178059,0.004451,-0.006248,0.249922,0,0);}
.m172_c00420{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);}
.mf_c00420{transform:matrix(0.178664,0.004288,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178664,0.004288,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178664,0.004288,-0.005998,0.249928,0,0);}
.mdb_c00420{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);}
.m1d_c00420{transform:matrix(0.178888,0.004293,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178888,0.004293,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178888,0.004293,-0.005998,0.249928,0,0);}
.m29_c00420{transform:matrix(0.179038,0.004118,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179038,0.004118,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179038,0.004118,-0.005748,0.249934,0,0);}
.m20_c00420{transform:matrix(0.179218,0.004301,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179218,0.004301,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179218,0.004301,-0.005998,0.249928,0,0);}
.mbc_c00420{transform:matrix(0.179835,0.003777,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179835,0.003777,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179835,0.003777,-0.005249,0.249945,0,0);}
.m161_c00420{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);}
.m7a_c00420{transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180565,0.003792,-0.005249,0.249945,0,0);}
.m10f_c00420{transform:matrix(0.180689,0.004517,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180689,0.004517,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180689,0.004517,-0.006248,0.249922,0,0);}
.m13b_c00420{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);}
.m58_c00420{transform:matrix(0.180807,0.002531,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180807,0.002531,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180807,0.002531,-0.003500,0.249976,0,0);}
.m3a_c00420{transform:matrix(0.181148,0.004529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181148,0.004529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181148,0.004529,-0.006248,0.249922,0,0);}
.m6c_c00420{transform:matrix(0.181305,0.003807,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181305,0.003807,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181305,0.003807,-0.005249,0.249945,0,0);}
.m5c_c00420{transform:matrix(0.181375,0.003809,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181375,0.003809,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181375,0.003809,-0.005249,0.249945,0,0);}
.mf4_c00420{transform:matrix(0.181408,0.004535,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181408,0.004535,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181408,0.004535,-0.006248,0.249922,0,0);}
.m16b_c00420{transform:matrix(0.181618,0.004359,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181618,0.004359,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181618,0.004359,-0.005998,0.249928,0,0);}
.m9a_c00420{transform:matrix(0.181650,0.003815,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181650,0.003815,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181650,0.003815,-0.005249,0.249945,0,0);}
.m67_c00420{transform:matrix(0.182155,0.003825,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182155,0.003825,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182155,0.003825,-0.005249,0.249945,0,0);}
.m140_c00420{transform:matrix(0.182178,0.004554,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182178,0.004554,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182178,0.004554,-0.006248,0.249922,0,0);}
.mae_c00420{transform:matrix(0.182319,0.005105,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182319,0.005105,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182319,0.005105,-0.006997,0.249902,0,0);}
.mef_c00420{transform:matrix(0.182694,0.006218,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182694,0.006218,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182694,0.006218,-0.008504,0.249855,0,0);}
.m98_c00420{transform:matrix(0.182965,0.003842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182965,0.003842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182965,0.003842,-0.005249,0.249945,0,0);}
.m49_c00420{transform:matrix(0.183034,0.003112,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183034,0.003112,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183034,0.003112,-0.004249,0.249964,0,0);}
.m13f_c00420{transform:matrix(0.183073,0.004577,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183073,0.004577,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183073,0.004577,-0.006248,0.249922,0,0);}
.m9c_c00420{transform:matrix(0.183350,0.003850,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183350,0.003850,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183350,0.003850,-0.005249,0.249945,0,0);}
.m41_c00420{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);}
.m5e_c00420{transform:matrix(0.183490,0.003853,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183490,0.003853,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183490,0.003853,-0.005249,0.249945,0,0);}
.m7e_c00420{transform:matrix(0.183939,0.003863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183939,0.003863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183939,0.003863,-0.005249,0.249945,0,0);}
.maa_c00420{transform:matrix(0.183968,0.005151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183968,0.005151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183968,0.005151,-0.006997,0.249902,0,0);}
.m3_c00420{transform:matrix(0.184072,0.004418,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184072,0.004418,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184072,0.004418,-0.005998,0.249928,0,0);}
.mc5_c00420{transform:matrix(0.184249,0.003869,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184249,0.003869,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184249,0.003869,-0.005249,0.249945,0,0);}
.m55_c00420{transform:matrix(0.184352,0.002581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184352,0.002581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184352,0.002581,-0.003500,0.249976,0,0);}
.md7_c00420{transform:matrix(0.184370,0.004056,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184370,0.004056,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184370,0.004056,-0.005499,0.249940,0,0);}
.mee_c00420{transform:matrix(0.184472,0.004427,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184472,0.004427,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184472,0.004427,-0.005998,0.249928,0,0);}
.m15e_c00420{transform:matrix(0.184567,0.004430,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184567,0.004430,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184567,0.004430,-0.005998,0.249928,0,0);}
.m38_c00420{transform:matrix(0.184737,0.004618,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184737,0.004618,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184737,0.004618,-0.006248,0.249922,0,0);}
.m5a_c00420{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);}
.m152_c00420{transform:matrix(0.185122,0.004443,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185122,0.004443,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185122,0.004443,-0.005998,0.249928,0,0);}
.m69_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);}
.m83_c00420{transform:matrix(0.185184,0.003889,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185184,0.003889,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185184,0.003889,-0.005249,0.249945,0,0);}
.m14d_c00420{transform:matrix(0.185222,0.004445,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185222,0.004445,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185222,0.004445,-0.005998,0.249928,0,0);}
.me_c00420{transform:matrix(0.185267,0.004446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185267,0.004446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185267,0.004446,-0.005998,0.249928,0,0);}
.m133_c00420{transform:matrix(0.186187,0.004655,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186187,0.004655,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186187,0.004655,-0.006248,0.249922,0,0);}
.ma8_c00420{transform:matrix(0.186367,0.005218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186367,0.005218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186367,0.005218,-0.006997,0.249902,0,0);}
.m174_c00420{transform:matrix(0.186376,0.004473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186376,0.004473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186376,0.004473,-0.005998,0.249928,0,0);}
.mc0_c00420{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);}
.mca_c00420{transform:matrix(0.186754,0.003922,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186754,0.003922,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186754,0.003922,-0.005249,0.249945,0,0);}
.m97_c00420{transform:matrix(0.187904,0.003946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187904,0.003946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187904,0.003946,-0.005249,0.249945,0,0);}
.mb3_c00420{transform:matrix(0.188056,0.005266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188056,0.005266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188056,0.005266,-0.006997,0.249902,0,0);}
.m2a_c00420{transform:matrix(0.188140,0.004327,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188140,0.004327,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188140,0.004327,-0.005748,0.249934,0,0);}
.m57_c00420{transform:matrix(0.188362,0.002637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188362,0.002637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188362,0.002637,-0.003500,0.249976,0,0);}
.mfe_c00420{transform:matrix(0.188416,0.004710,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188416,0.004710,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188416,0.004710,-0.006248,0.249922,0,0);}
.m74_c00420{transform:matrix(0.188658,0.003962,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188658,0.003962,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188658,0.003962,-0.005249,0.249945,0,0);}
.m17e_c00420{transform:matrix(0.188901,0.004534,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188901,0.004534,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188901,0.004534,-0.005998,0.249928,0,0);}
.m94_c00420{transform:matrix(0.189076,0.003592,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189076,0.003592,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189076,0.003592,-0.004749,0.249955,0,0);}
.mf2_c00420{transform:matrix(0.189081,0.006435,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189081,0.006435,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189081,0.006435,-0.008504,0.249855,0,0);}
.mf5_c00420{transform:matrix(0.189166,0.004729,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189166,0.004729,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189166,0.004729,-0.006248,0.249922,0,0);}
.m2e_c00420{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);}
.mbb_c00420{transform:matrix(0.189613,0.003982,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189613,0.003982,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189613,0.003982,-0.005249,0.249945,0,0);}
.m9f_c00420{transform:matrix(0.189683,0.003983,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189683,0.003983,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189683,0.003983,-0.005249,0.249945,0,0);}
.m63_c00420{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);}
.m70_c00420{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);}
.m15c_c00420{transform:matrix(0.190090,0.004562,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190090,0.004562,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190090,0.004562,-0.005998,0.249928,0,0);}
.m46_c00420{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);}
.m8e_c00420{transform:matrix(0.190241,0.003615,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190241,0.003615,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190241,0.003615,-0.004749,0.249955,0,0);}
.m2b_c00420{transform:matrix(0.190530,0.004382,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190530,0.004382,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190530,0.004382,-0.005748,0.249934,0,0);}
.me8_c00420{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);}
.m78_c00420{transform:matrix(0.190743,0.004006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190743,0.004006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190743,0.004006,-0.005249,0.249945,0,0);}
.m31_c00420{transform:matrix(0.190860,0.004772,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190860,0.004772,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190860,0.004772,-0.006248,0.249922,0,0);}
.m145_c00420{transform:matrix(0.190940,0.004774,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190940,0.004774,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190940,0.004774,-0.006248,0.249922,0,0);}
.m171_c00420{transform:matrix(0.190955,0.004583,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190955,0.004583,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190955,0.004583,-0.005998,0.249928,0,0);}
.m26_c00420{transform:matrix(0.190969,0.004392,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190969,0.004392,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190969,0.004392,-0.005748,0.249934,0,0);}
.m178_c00420{transform:matrix(0.191245,0.004590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191245,0.004590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191245,0.004590,-0.005998,0.249928,0,0);}
.mcc_c00420{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);}
.m79_c00420{transform:matrix(0.191743,0.004027,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191743,0.004027,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191743,0.004027,-0.005249,0.249945,0,0);}
.m114_c00420{transform:matrix(0.191955,0.004799,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191955,0.004799,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191955,0.004799,-0.006248,0.249922,0,0);}
.m44_c00420{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);}
.mcf_c00420{transform:matrix(0.192225,0.004613,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192225,0.004613,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192225,0.004613,-0.005998,0.249928,0,0);}
.m179_c00420{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);}
.m14a_c00420{transform:matrix(0.192760,0.004819,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192760,0.004819,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192760,0.004819,-0.006248,0.249922,0,0);}
.m15b_c00420{transform:matrix(0.192994,0.004632,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192994,0.004632,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192994,0.004632,-0.005998,0.249928,0,0);}
.m121_c00420{transform:matrix(0.193135,0.004828,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193135,0.004828,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193135,0.004828,-0.006248,0.249922,0,0);}
.m134_c00420{transform:matrix(0.193575,0.004839,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193575,0.004839,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193575,0.004839,-0.006248,0.249922,0,0);}
.m16d_c00420{transform:matrix(0.194149,0.004660,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194149,0.004660,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194149,0.004660,-0.005998,0.249928,0,0);}
.m9e_c00420{transform:matrix(0.194542,0.004085,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194542,0.004085,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194542,0.004085,-0.005249,0.249945,0,0);}
.m86_c00420{transform:matrix(0.194897,0.004093,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194897,0.004093,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194897,0.004093,-0.005249,0.249945,0,0);}
.m90_c00420{transform:matrix(0.194930,0.003704,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194930,0.003704,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194930,0.003704,-0.004749,0.249955,0,0);}
.m24_c00420{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);}
.m6e_c00420{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);}
.m7b_c00420{transform:matrix(0.195097,0.004097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195097,0.004097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195097,0.004097,-0.005249,0.249945,0,0);}
.m37_c00420{transform:matrix(0.195219,0.004880,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195219,0.004880,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195219,0.004880,-0.006248,0.249922,0,0);}
.m100_c00420{transform:matrix(0.195329,0.004883,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195329,0.004883,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195329,0.004883,-0.006248,0.249922,0,0);}
.m173_c00420{transform:matrix(0.195589,0.004694,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195589,0.004694,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195589,0.004694,-0.005998,0.249928,0,0);}
.m50_c00420{transform:matrix(0.195781,0.002741,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195781,0.002741,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195781,0.002741,-0.003500,0.249976,0,0);}
.mb1_c00420{transform:matrix(0.195953,0.005487,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195953,0.005487,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195953,0.005487,-0.006997,0.249902,0,0);}
.m6d_c00420{transform:matrix(0.195992,0.004116,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195992,0.004116,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195992,0.004116,-0.005249,0.249945,0,0);}
.mc6_c00420{transform:matrix(0.196112,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196112,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196112,0.004118,-0.005249,0.249945,0,0);}
.m54_c00420{transform:matrix(0.196466,0.002751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196466,0.002751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196466,0.002751,-0.003500,0.249976,0,0);}
.m137_c00420{transform:matrix(0.196514,0.004913,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196514,0.004913,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196514,0.004913,-0.006248,0.249922,0,0);}
.m14f_c00420{transform:matrix(0.196668,0.004720,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196668,0.004720,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196668,0.004720,-0.005998,0.249928,0,0);}
.m48_c00420{transform:matrix(0.196972,0.003349,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196972,0.003349,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196972,0.003349,-0.004249,0.249964,0,0);}
.mc4_c00420{transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);}
.m1_c00420{transform:matrix(0.197318,0.004736,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197318,0.004736,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197318,0.004736,-0.005998,0.249928,0,0);}
.mc7_c00420{transform:matrix(0.197871,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197871,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197871,0.004155,-0.005249,0.249945,0,0);}
.m12_c00420{transform:matrix(0.197973,0.004751,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197973,0.004751,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197973,0.004751,-0.005998,0.249928,0,0);}
.mb8_c00420{transform:matrix(0.198037,0.005545,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198037,0.005545,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198037,0.005545,-0.006997,0.249902,0,0);}
.mdc_c00420{transform:matrix(0.198477,0.004366,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198477,0.004366,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198477,0.004366,-0.005499,0.249940,0,0);}
.m170_c00420{transform:matrix(0.198513,0.004764,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198513,0.004764,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198513,0.004764,-0.005998,0.249928,0,0);}
.m99_c00420{transform:matrix(0.199036,0.004180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199036,0.004180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199036,0.004180,-0.005249,0.249945,0,0);}
.m11b_c00420{transform:matrix(0.199078,0.004977,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199078,0.004977,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199078,0.004977,-0.006248,0.249922,0,0);}
.m96_c00420{transform:matrix(0.199156,0.004182,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199156,0.004182,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199156,0.004182,-0.005249,0.249945,0,0);}
.m1c_c00420{transform:matrix(0.199173,0.004780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199173,0.004780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199173,0.004780,-0.005998,0.249928,0,0);}
.m16a_c00420{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);}
.m5f_c00420{transform:matrix(0.199636,0.004192,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199636,0.004192,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199636,0.004192,-0.005249,0.249945,0,0);}
.m3d_c00420{transform:matrix(0.199692,0.004793,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199692,0.004793,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199692,0.004793,-0.005998,0.249928,0,0);}
.m155_c00420{transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);}
.m104_c00420{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);}
.m124_c00420{transform:matrix(0.200457,0.005011,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200457,0.005011,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200457,0.005011,-0.006248,0.249922,0,0);}
.m88_c00420{transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200766,0.004216,-0.005249,0.249945,0,0);}
.m2_c00420{transform:matrix(0.200772,0.004819,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200772,0.004819,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200772,0.004819,-0.005998,0.249928,0,0);}
.m66_c00420{transform:matrix(0.201136,0.004224,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201136,0.004224,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201136,0.004224,-0.005249,0.249945,0,0);}
.m102_c00420{transform:matrix(0.201462,0.005037,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201462,0.005037,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201462,0.005037,-0.006248,0.249922,0,0);}
.m14c_c00420{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);}
.ma5_c00420{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);}
.m105_c00420{transform:matrix(0.202262,0.005057,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202262,0.005057,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202262,0.005057,-0.006248,0.249922,0,0);}
.m103_c00420{transform:matrix(0.202402,0.005060,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202402,0.005060,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202402,0.005060,-0.006248,0.249922,0,0);}
.m16_c00420{transform:matrix(0.202677,0.004864,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202677,0.004864,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202677,0.004864,-0.005998,0.249928,0,0);}
.mb4_c00420{transform:matrix(0.203025,0.005685,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203025,0.005685,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203025,0.005685,-0.006997,0.249902,0,0);}
.m8c_c00420{transform:matrix(0.203205,0.004267,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203205,0.004267,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203205,0.004267,-0.005249,0.249945,0,0);}
.m42_c00420{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);}
.m89_c00420{transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203325,0.004270,-0.005249,0.249945,0,0);}
.m117_c00420{transform:matrix(0.203371,0.005084,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203371,0.005084,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203371,0.005084,-0.006248,0.249922,0,0);}
.m2d_c00420{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);}
.m158_c00420{transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204116,0.004899,-0.005998,0.249928,0,0);}
.m183_c00420{transform:matrix(0.204141,0.004899,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204141,0.004899,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204141,0.004899,-0.005998,0.249928,0,0);}
.m107_c00420{transform:matrix(0.204331,0.005108,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204331,0.005108,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204331,0.005108,-0.006248,0.249922,0,0);}
.m146_c00420{transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);}
.m43_c00420{transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204585,0.000000,0.000000,0.250000,0,0);}
.mc2_c00420{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);}
.mb7_c00420{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);}
.m181_c00420{transform:matrix(0.205076,0.004922,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205076,0.004922,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205076,0.004922,-0.005998,0.249928,0,0);}
.m175_c00420{transform:matrix(0.205121,0.004923,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205121,0.004923,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205121,0.004923,-0.005998,0.249928,0,0);}
.m150_c00420{transform:matrix(0.205181,0.004924,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205181,0.004924,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205181,0.004924,-0.005998,0.249928,0,0);}
.mb_c00420{transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);}
.m15_c00420{transform:matrix(0.205526,0.004933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205526,0.004933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205526,0.004933,-0.005998,0.249928,0,0);}
.m118_c00420{transform:matrix(0.205611,0.005140,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205611,0.005140,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205611,0.005140,-0.006248,0.249922,0,0);}
.ma9_c00420{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);}
.m13d_c00420{transform:matrix(0.205891,0.005147,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205891,0.005147,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205891,0.005147,-0.006248,0.249922,0,0);}
.mbe_c00420{transform:matrix(0.205980,0.004326,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205980,0.004326,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205980,0.004326,-0.005249,0.249945,0,0);}
.m85_c00420{transform:matrix(0.206140,0.004329,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206140,0.004329,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206140,0.004329,-0.005249,0.249945,0,0);}
.m76_c00420{transform:matrix(0.206165,0.004329,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206165,0.004329,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206165,0.004329,-0.005249,0.249945,0,0);}
.md3_c00420{transform:matrix(0.206271,0.004950,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206271,0.004950,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206271,0.004950,-0.005998,0.249928,0,0);}
.m5_c00420{transform:matrix(0.206311,0.004951,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206311,0.004951,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206311,0.004951,-0.005998,0.249928,0,0);}
.me7_c00420{transform:matrix(0.207055,0.004969,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207055,0.004969,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207055,0.004969,-0.005998,0.249928,0,0);}
.m10c_c00420{transform:matrix(0.207765,0.005194,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207765,0.005194,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207765,0.005194,-0.006248,0.249922,0,0);}
.mb6_c00420{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);}
.m33_c00420{transform:matrix(0.207940,0.005199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207940,0.005199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207940,0.005199,-0.006248,0.249922,0,0);}
.mb5_c00420{transform:matrix(0.208013,0.005824,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208013,0.005824,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208013,0.005824,-0.006997,0.249902,0,0);}
.m10d_c00420{transform:matrix(0.208030,0.005201,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208030,0.005201,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208030,0.005201,-0.006248,0.249922,0,0);}
.mf9_c00420{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);}
.mc3_c00420{transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);}
.mff_c00420{transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);}
.m136_c00420{transform:matrix(0.209385,0.005235,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209385,0.005235,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209385,0.005235,-0.006248,0.249922,0,0);}
.mcd_c00420{transform:matrix(0.209470,0.005027,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209470,0.005027,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209470,0.005027,-0.005998,0.249928,0,0);}
.mfd_c00420{transform:matrix(0.209500,0.005237,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209500,0.005237,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209500,0.005237,-0.006248,0.249922,0,0);}
.mf0_c00420{transform:matrix(0.209584,0.007133,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209584,0.007133,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209584,0.007133,-0.008504,0.249855,0,0);}
.m82_c00420{transform:matrix(0.209669,0.004403,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209669,0.004403,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209669,0.004403,-0.005249,0.249945,0,0);}
.m10a_c00420{transform:matrix(0.209894,0.005247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209894,0.005247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209894,0.005247,-0.006248,0.249922,0,0);}
.m45_c00420{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);}
.ma3_c00420{transform:matrix(0.210034,0.004411,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210034,0.004411,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210034,0.004411,-0.005249,0.249945,0,0);}
.m182_c00420{transform:matrix(0.210184,0.005044,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210184,0.005044,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210184,0.005044,-0.005998,0.249928,0,0);}
.m56_c00420{transform:matrix(0.210654,0.002949,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210654,0.002949,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210654,0.002949,-0.003500,0.249976,0,0);}
.m17f_c00420{transform:matrix(0.210714,0.005057,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210714,0.005057,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210714,0.005057,-0.005998,0.249928,0,0);}
.mba_c00420{transform:matrix(0.210789,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210789,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210789,0.004427,-0.005249,0.249945,0,0);}
.m40_c00420{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.m35_c00420{transform:matrix(0.211214,0.005280,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211214,0.005280,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211214,0.005280,-0.006248,0.249922,0,0);}
.m81_c00420{transform:matrix(0.211883,0.004450,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211883,0.004450,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211883,0.004450,-0.005249,0.249945,0,0);}
.m11f_c00420{transform:matrix(0.211889,0.005297,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211889,0.005297,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211889,0.005297,-0.006248,0.249922,0,0);}
.m36_c00420{transform:matrix(0.211909,0.005298,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211909,0.005298,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211909,0.005298,-0.006248,0.249922,0,0);}
.mde_c00420{transform:matrix(0.212099,0.005090,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212099,0.005090,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212099,0.005090,-0.005998,0.249928,0,0);}
.mc1_c00420{transform:matrix(0.212183,0.004456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212183,0.004456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212183,0.004456,-0.005249,0.249945,0,0);}
.m0_c00420{transform:matrix(0.212709,0.005105,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212709,0.005105,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212709,0.005105,-0.005998,0.249928,0,0);}
.m128_c00420{transform:matrix(0.212809,0.005320,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212809,0.005320,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212809,0.005320,-0.006248,0.249922,0,0);}
.m119_c00420{transform:matrix(0.213153,0.005329,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213153,0.005329,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213153,0.005329,-0.006248,0.249922,0,0);}
.m51_c00420{transform:matrix(0.213174,0.002984,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213174,0.002984,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213174,0.002984,-0.003500,0.249976,0,0);}
.m12e_c00420{transform:matrix(0.213493,0.005337,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213493,0.005337,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213493,0.005337,-0.006248,0.249922,0,0);}
.med_c00420{transform:matrix(0.213578,0.005126,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213578,0.005126,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213578,0.005126,-0.005998,0.249928,0,0);}
.ma7_c00420{transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);}
.m12d_c00420{transform:matrix(0.214133,0.005353,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214133,0.005353,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214133,0.005353,-0.006248,0.249922,0,0);}
.mfc_c00420{transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);}
.mea_c00420{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);}
.m13c_c00420{transform:matrix(0.214713,0.005368,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214713,0.005368,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214713,0.005368,-0.006248,0.249922,0,0);}
.ma2_c00420{transform:matrix(0.215233,0.004520,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215233,0.004520,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215233,0.004520,-0.005249,0.249945,0,0);}
.m73_c00420{transform:matrix(0.215712,0.004530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215712,0.004530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215712,0.004530,-0.005249,0.249945,0,0);}
.ma1_c00420{transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);}
.m4d_c00420{transform:matrix(0.216134,0.003026,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216134,0.003026,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216134,0.003026,-0.003500,0.249976,0,0);}
.m27_c00420{transform:matrix(0.216453,0.004978,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216453,0.004978,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216453,0.004978,-0.005748,0.249934,0,0);}
.m143_c00420{transform:matrix(0.216827,0.005421,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216827,0.005421,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216827,0.005421,-0.006248,0.249922,0,0);}
.m10e_c00420{transform:matrix(0.216877,0.005422,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216877,0.005422,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216877,0.005422,-0.006248,0.249922,0,0);}
.m9b_c00420{transform:matrix(0.217942,0.004577,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217942,0.004577,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217942,0.004577,-0.005249,0.249945,0,0);}
.mf7_c00420{transform:matrix(0.218372,0.005459,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218372,0.005459,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218372,0.005459,-0.006248,0.249922,0,0);}
.mcb_c00420{transform:matrix(0.218447,0.004587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218447,0.004587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218447,0.004587,-0.005249,0.249945,0,0);}
.ma0_c00420{transform:matrix(0.218687,0.004592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218687,0.004592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218687,0.004592,-0.005249,0.249945,0,0);}
.md2_c00420{transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);}
.m101_c00420{transform:matrix(0.219711,0.005493,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219711,0.005493,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219711,0.005493,-0.006248,0.249922,0,0);}
.m147_c00420{transform:matrix(0.220176,0.005504,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220176,0.005504,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220176,0.005504,-0.006248,0.249922,0,0);}
.m14_c00420{transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);}
.md6_c00420{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);}
.m156_c00420{transform:matrix(0.220487,0.005292,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220487,0.005292,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220487,0.005292,-0.005998,0.249928,0,0);}
.m110_c00420{transform:matrix(0.220916,0.005523,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220916,0.005523,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220916,0.005523,-0.006248,0.249922,0,0);}
.m14b_c00420{transform:matrix(0.221301,0.005311,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221301,0.005311,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221301,0.005311,-0.005998,0.249928,0,0);}
.m127_c00420{transform:matrix(0.221336,0.005533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221336,0.005533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221336,0.005533,-0.006248,0.249922,0,0);}
.mf3_c00420{transform:matrix(0.221622,0.007543,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221622,0.007543,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221622,0.007543,-0.008504,0.249855,0,0);}
.m95_c00420{transform:matrix(0.222495,0.004227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222495,0.004227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222495,0.004227,-0.004749,0.249955,0,0);}
.m148_c00420{transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222750,0.005569,-0.006248,0.249922,0,0);}
.m3b_c00420{transform:matrix(0.222826,0.005348,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222826,0.005348,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222826,0.005348,-0.005998,0.249928,0,0);}
.mb2_c00420{transform:matrix(0.223532,0.006259,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223532,0.006259,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223532,0.006259,-0.006997,0.249902,0,0);}
.m8a_c00420{transform:matrix(0.223851,0.004701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223851,0.004701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223851,0.004701,-0.005249,0.249945,0,0);}
.m8b_c00420{transform:matrix(0.224181,0.004708,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224181,0.004708,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224181,0.004708,-0.005249,0.249945,0,0);}
.m53_c00420{transform:matrix(0.224308,0.003140,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224308,0.003140,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224308,0.003140,-0.003500,0.249976,0,0);}
.m138_c00420{transform:matrix(0.224640,0.005616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224640,0.005616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224640,0.005616,-0.006248,0.249922,0,0);}
.m159_c00420{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);}
.m93_c00420{transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224729,0.004270,-0.004749,0.249955,0,0);}
.mf1_c00420{transform:matrix(0.225285,0.007667,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225285,0.007667,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225285,0.007667,-0.008504,0.249855,0,0);}
.m130_c00420{transform:matrix(0.226094,0.005652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226094,0.005652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226094,0.005652,-0.006248,0.249922,0,0);}
.m131_c00420{transform:matrix(0.227489,0.005687,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227489,0.005687,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227489,0.005687,-0.006248,0.249922,0,0);}
.m154_c00420{transform:matrix(0.227629,0.005463,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227629,0.005463,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227629,0.005463,-0.005998,0.249928,0,0);}
.me5_c00420{transform:matrix(0.227809,0.005467,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227809,0.005467,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227809,0.005467,-0.005998,0.249928,0,0);}
.m12a_c00420{transform:matrix(0.227974,0.005699,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227974,0.005699,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227974,0.005699,-0.006248,0.249922,0,0);}
.m80_c00420{transform:matrix(0.229074,0.004811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229074,0.004811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229074,0.004811,-0.005249,0.249945,0,0);}
.m12f_c00420{transform:matrix(0.229158,0.005729,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229158,0.005729,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229158,0.005729,-0.006248,0.249922,0,0);}
.m61_c00420{transform:matrix(0.229499,0.004819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229499,0.004819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229499,0.004819,-0.005249,0.249945,0,0);}
.me3_c00420{transform:matrix(0.229529,0.005509,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229529,0.005509,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229529,0.005509,-0.005998,0.249928,0,0);}
.m141_c00420{transform:matrix(0.229898,0.005747,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229898,0.005747,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229898,0.005747,-0.006248,0.249922,0,0);}
.me9_c00420{transform:matrix(0.229924,0.005518,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229924,0.005518,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229924,0.005518,-0.005998,0.249928,0,0);}
.m187_c00420{transform:matrix(0.230324,0.005528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230324,0.005528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230324,0.005528,-0.005998,0.249928,0,0);}
.m84_c00420{transform:matrix(0.231099,0.004853,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231099,0.004853,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231099,0.004853,-0.005249,0.249945,0,0);}
.mbd_c00420{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);}
.m2f_c00420{transform:matrix(0.232018,0.005800,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232018,0.005800,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232018,0.005800,-0.006248,0.249922,0,0);}
.m9_c00420{transform:matrix(0.233323,0.005600,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233323,0.005600,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233323,0.005600,-0.005998,0.249928,0,0);}
.m135_c00420{transform:matrix(0.234262,0.005857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234262,0.005857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234262,0.005857,-0.006248,0.249922,0,0);}
.m87_c00420{transform:matrix(0.234618,0.004927,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234618,0.004927,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234618,0.004927,-0.005249,0.249945,0,0);}
.mbf_c00420{transform:matrix(0.235358,0.004943,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235358,0.004943,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235358,0.004943,-0.005249,0.249945,0,0);}
.m7f_c00420{transform:matrix(0.235638,0.004948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235638,0.004948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235638,0.004948,-0.005249,0.249945,0,0);}
.m177_c00420{transform:matrix(0.236687,0.005680,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236687,0.005680,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236687,0.005680,-0.005998,0.249928,0,0);}
.m4f_c00420{transform:matrix(0.236767,0.003315,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236767,0.003315,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236767,0.003315,-0.003500,0.249976,0,0);}
.m120_c00420{transform:matrix(0.237241,0.005931,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237241,0.005931,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237241,0.005931,-0.006248,0.249922,0,0);}
.m111_c00420{transform:matrix(0.239260,0.005982,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239260,0.005982,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239260,0.005982,-0.006248,0.249922,0,0);}
.m92_c00420{transform:matrix(0.240797,0.004575,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240797,0.004575,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240797,0.004575,-0.004749,0.249955,0,0);}
.m21_c00420{transform:matrix(0.242595,0.005822,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242595,0.005822,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242595,0.005822,-0.005998,0.249928,0,0);}
.m113_c00420{transform:matrix(0.243424,0.006086,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243424,0.006086,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243424,0.006086,-0.006248,0.249922,0,0);}
.m13a_c00420{transform:matrix(0.244684,0.006117,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244684,0.006117,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244684,0.006117,-0.006248,0.249922,0,0);}
.m189_c00420{transform:matrix(0.244815,0.005876,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244815,0.005876,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244815,0.005876,-0.005998,0.249928,0,0);}
.m34_c00420{transform:matrix(0.245138,0.006128,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245138,0.006128,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245138,0.006128,-0.006248,0.249922,0,0);}
.m15a_c00420{transform:matrix(0.247419,0.005938,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247419,0.005938,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247419,0.005938,-0.005998,0.249928,0,0);}
.m30_c00420{transform:matrix(0.247883,0.006197,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247883,0.006197,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247883,0.006197,-0.006248,0.249922,0,0);}
.m132_c00420{transform:matrix(0.248792,0.006220,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248792,0.006220,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248792,0.006220,-0.006248,0.249922,0,0);}
.m4_c00420{transform:matrix(0.250273,0.006007,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250273,0.006007,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250273,0.006007,-0.005998,0.249928,0,0);}
.m10b_c00420{transform:matrix(0.252691,0.006317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252691,0.006317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252691,0.006317,-0.006248,0.249922,0,0);}
.mfa_c00420{transform:matrix(0.253306,0.006333,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253306,0.006333,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253306,0.006333,-0.006248,0.249922,0,0);}
.ma6_c00420{transform:matrix(0.255560,0.007156,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255560,0.007156,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255560,0.007156,-0.006997,0.249902,0,0);}
.m126_c00420{transform:matrix(0.256035,0.006401,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256035,0.006401,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256035,0.006401,-0.006248,0.249922,0,0);}
.m15f_c00420{transform:matrix(0.257271,0.006175,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257271,0.006175,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257271,0.006175,-0.005998,0.249928,0,0);}
.m160_c00420{transform:matrix(0.257611,0.006183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257611,0.006183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257611,0.006183,-0.005998,0.249928,0,0);}
.me6_c00420{transform:matrix(0.257671,0.006184,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257671,0.006184,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257671,0.006184,-0.005998,0.249928,0,0);}
.m62_c00420{transform:matrix(0.258163,0.005421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258163,0.005421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258163,0.005421,-0.005249,0.249945,0,0);}
.m184_c00420{transform:matrix(0.258686,0.006208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258686,0.006208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258686,0.006208,-0.005998,0.249928,0,0);}
.m18a_c00420{transform:matrix(0.258890,0.006213,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258890,0.006213,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258890,0.006213,-0.005998,0.249928,0,0);}
.m142_c00420{transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);}
.m7d_c00420{transform:matrix(0.259803,0.005456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259803,0.005456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259803,0.005456,-0.005249,0.249945,0,0);}
.mab_c00420{transform:matrix(0.261423,0.007320,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261423,0.007320,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261423,0.007320,-0.006997,0.249902,0,0);}
.m139_c00420{transform:matrix(0.262468,0.006562,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262468,0.006562,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262468,0.006562,-0.006248,0.249922,0,0);}
.m125_c00420{transform:matrix(0.262898,0.006572,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262898,0.006572,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262898,0.006572,-0.006248,0.249922,0,0);}
.m153_c00420{transform:matrix(0.263109,0.006315,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263109,0.006315,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263109,0.006315,-0.005998,0.249928,0,0);}
.md0_c00420{transform:matrix(0.265089,0.006362,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265089,0.006362,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265089,0.006362,-0.005998,0.249928,0,0);}
.m106_c00420{transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);}
.mfb_c00420{transform:matrix(0.267571,0.006689,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267571,0.006689,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267571,0.006689,-0.006248,0.249922,0,0);}
.m65_c00420{transform:matrix(0.268701,0.005643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268701,0.005643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268701,0.005643,-0.005249,0.249945,0,0);}
.mac_c00420{transform:matrix(0.269040,0.007533,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269040,0.007533,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269040,0.007533,-0.006997,0.249902,0,0);}
.mce_c00420{transform:matrix(0.272851,0.006548,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272851,0.006548,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272851,0.006548,-0.005998,0.249928,0,0);}
.m168_c00420{transform:matrix(0.274461,0.006587,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274461,0.006587,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274461,0.006587,-0.005998,0.249928,0,0);}
.m12c_c00420{transform:matrix(0.279298,0.006982,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279298,0.006982,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279298,0.006982,-0.006248,0.249922,0,0);}
.m115_c00420{transform:matrix(0.281307,0.007033,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281307,0.007033,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281307,0.007033,-0.006248,0.249922,0,0);}
.m122_c00420{transform:matrix(0.283142,0.007079,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283142,0.007079,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283142,0.007079,-0.006248,0.249922,0,0);}
.m11c_c00420{transform:matrix(0.286815,0.007170,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286815,0.007170,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286815,0.007170,-0.006248,0.249922,0,0);}
.mb9_c00420{transform:matrix(0.288537,0.008079,-0.006997,0.249902,0,0);-ms-transform:matrix(0.288537,0.008079,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.288537,0.008079,-0.006997,0.249902,0,0);}
.m12b_c00420{transform:matrix(0.292983,0.007325,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292983,0.007325,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292983,0.007325,-0.006248,0.249922,0,0);}
.mda_c00420{transform:matrix(0.298578,0.006569,-0.005499,0.249940,0,0);-ms-transform:matrix(0.298578,0.006569,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.298578,0.006569,-0.005499,0.249940,0,0);}
.md5_c00420{transform:matrix(0.312834,0.006882,-0.005499,0.249940,0,0);-ms-transform:matrix(0.312834,0.006882,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.312834,0.006882,-0.005499,0.249940,0,0);}
.mdf_c00420{transform:matrix(0.334704,0.008033,-0.005998,0.249928,0,0);-ms-transform:matrix(0.334704,0.008033,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.334704,0.008033,-0.005998,0.249928,0,0);}
.m108_c00420{transform:matrix(0.351925,0.008798,-0.006248,0.249922,0,0);-ms-transform:matrix(0.351925,0.008798,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.351925,0.008798,-0.006248,0.249922,0,0);}
.mb0_c00420{transform:matrix(0.355231,0.009946,-0.006997,0.249902,0,0);-ms-transform:matrix(0.355231,0.009946,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.355231,0.009946,-0.006997,0.249902,0,0);}
.m186_c00420{transform:matrix(0.355798,0.008539,-0.005998,0.249928,0,0);-ms-transform:matrix(0.355798,0.008539,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.355798,0.008539,-0.005998,0.249928,0,0);}
.md4_c00420{transform:matrix(0.371065,0.008163,-0.005499,0.249940,0,0);-ms-transform:matrix(0.371065,0.008163,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.371065,0.008163,-0.005499,0.249940,0,0);}
.m11_c00420{transform:matrix(0.374887,0.008997,-0.005998,0.249928,0,0);-ms-transform:matrix(0.374887,0.008997,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.374887,0.008997,-0.005998,0.249928,0,0);}
.m18b_c00420{transform:matrix(0.390668,0.009376,-0.005998,0.249928,0,0);-ms-transform:matrix(0.390668,0.009376,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.390668,0.009376,-0.005998,0.249928,0,0);}
.m10_c00420{transform:matrix(0.401364,0.009633,-0.005998,0.249928,0,0);-ms-transform:matrix(0.401364,0.009633,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.401364,0.009633,-0.005998,0.249928,0,0);}
.m18e_c00420{transform:matrix(0.458523,0.011005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.458523,0.011005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.458523,0.011005,-0.005998,0.249928,0,0);}
.maf_c00420{transform:matrix(0.499379,0.013983,-0.006997,0.249902,0,0);-ms-transform:matrix(0.499379,0.013983,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.499379,0.013983,-0.006997,0.249902,0,0);}
.m18d_c00420{transform:matrix(0.603116,0.014475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.603116,0.014475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.603116,0.014475,-0.005998,0.249928,0,0);}
.m18c_c00420{transform:matrix(0.684783,0.016435,-0.005998,0.249928,0,0);-ms-transform:matrix(0.684783,0.016435,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.684783,0.016435,-0.005998,0.249928,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;}
.fs21_c00420{font-size:45.164107px;}
.fs20_c00420{font-size:47.264763px;}
.fs25_c00420{font-size:48.313908px;}
.fs9_c00420{font-size:49.354836px;}
.fs23_c00420{font-size:49.364211px;}
.fs13_c00420{font-size:49.369341px;}
.fsa_c00420{font-size:50.404939px;}
.fs11_c00420{font-size:50.411112px;}
.fs16_c00420{font-size:50.414513px;}
.fs1e_c00420{font-size:50.415748px;}
.fsf_c00420{font-size:51.461343px;}
.fs1f_c00420{font-size:51.466076px;}
.fsc_c00420{font-size:52.511575px;}
.fs7_c00420{font-size:53.550000px;}
.fsb_c00420{font-size:53.561806px;}
.fs22_c00420{font-size:53.565420px;}
.fs15_c00420{font-size:53.570987px;}
.fs10_c00420{font-size:54.609854px;}
.fsd_c00420{font-size:54.612038px;}
.fse_c00420{font-size:55.662269px;}
.fs26_c00420{font-size:55.666025px;}
.fs14_c00420{font-size:55.671811px;}
.fs12_c00420{font-size:56.712501px;}
.fs18_c00420{font-size:57.763974px;}
.fs1a_c00420{font-size:57.766630px;}
.fs17_c00420{font-size:59.864482px;}
.fs24_c00420{font-size:59.867234px;}
.fs8_c00420{font-size:60.908799px;}
.fs1b_c00420{font-size:61.967839px;}
.fs1d_c00420{font-size:61.969356px;}
.fs4_c00420{font-size:64.070012px;}
.fs1c_c00420{font-size:66.122112px;}
.fs0_c00420{font-size:69.319956px;}
.fs5_c00420{font-size:70.371981px;}
.fs6_c00420{font-size:71.420560px;}
.fs1_c00420{font-size:72.470863px;}
.fs3_c00420{font-size:73.519438px;}
.fs2_c00420{font-size:74.571467px;}
.fs19_c00420{font-size:80.873281px;}
.y0_c00420{bottom:0.000000px;}
.yeb_c00420{bottom:165.185952px;}
.yea_c00420{bottom:166.149468px;}
.ye9_c00420{bottom:167.420508px;}
.ye8_c00420{bottom:167.983380px;}
.ye7_c00420{bottom:168.388140px;}
.ye6_c00420{bottom:169.827132px;}
.y18e_c00420{bottom:180.002604px;}
.y18d_c00420{bottom:181.572972px;}
.y18c_c00420{bottom:182.404944px;}
.ye5_c00420{bottom:182.652636px;}
.ye4_c00420{bottom:183.230064px;}
.y18b_c00420{bottom:183.366840px;}
.y18a_c00420{bottom:183.730188px;}
.ye3_c00420{bottom:184.348320px;}
.ye2_c00420{bottom:184.770708px;}
.y189_c00420{bottom:185.150820px;}
.ye1_c00420{bottom:185.478792px;}
.y188_c00420{bottom:186.004596px;}
.y187_c00420{bottom:186.265224px;}
.ye0_c00420{bottom:186.894624px;}
.ydf_c00420{bottom:187.223712px;}
.yde_c00420{bottom:195.765588px;}
.ydd_c00420{bottom:196.499844px;}
.ydc_c00420{bottom:197.290188px;}
.ydb_c00420{bottom:198.850320px;}
.yda_c00420{bottom:199.103436px;}
.yd9_c00420{bottom:199.530000px;}
.y186_c00420{bottom:199.903476px;}
.y185_c00420{bottom:200.283300px;}
.y184_c00420{bottom:201.229308px;}
.y183_c00420{bottom:201.702084px;}
.y182_c00420{bottom:203.067624px;}
.y181_c00420{bottom:203.678412px;}
.yd6_c00420{bottom:203.980023px;}
.yd8_c00420{bottom:203.980026px;}
.yd7_c00420{bottom:203.980500px;}
.y180_c00420{bottom:204.357288px;}
.yd5_c00420{bottom:217.795947px;}
.y17f_c00420{bottom:218.235996px;}
.yd4_c00420{bottom:218.919135px;}
.y17e_c00420{bottom:218.970672px;}
.y17d_c00420{bottom:220.260192px;}
.yd3_c00420{bottom:220.534947px;}
.yd2_c00420{bottom:220.982823px;}
.y17c_c00420{bottom:221.180772px;}
.yd1_c00420{bottom:221.789937px;}
.y17b_c00420{bottom:222.096084px;}
.y17a_c00420{bottom:222.452208px;}
.yd0_c00420{bottom:223.024500px;}
.ycf_c00420{bottom:236.041044px;}
.y179_c00420{bottom:236.275884px;}
.y178_c00420{bottom:236.587164px;}
.yce_c00420{bottom:237.045624px;}
.y177_c00420{bottom:237.403872px;}
.ycd_c00420{bottom:237.506028px;}
.ycc_c00420{bottom:237.907680px;}
.ycb_c00420{bottom:238.931844px;}
.y176_c00420{bottom:239.272884px;}
.yca_c00420{bottom:239.398584px;}
.y175_c00420{bottom:239.645040px;}
.y174_c00420{bottom:240.275760px;}
.yc9_c00420{bottom:240.306000px;}
.yc8_c00420{bottom:253.413306px;}
.yc7_c00420{bottom:253.686441px;}
.y173_c00420{bottom:254.059812px;}
.yc6_c00420{bottom:254.298825px;}
.y172_c00420{bottom:254.410800px;}
.y171_c00420{bottom:254.990064px;}
.yc5_c00420{bottom:255.070488px;}
.yc4_c00420{bottom:255.569394px;}
.y170_c00420{bottom:256.124868px;}
.yc3_c00420{bottom:256.264252px;}
.y16f_c00420{bottom:257.238000px;}
.y16e_c00420{bottom:257.646720px;}
.y16d_c00420{bottom:258.101184px;}
.yc2_c00420{bottom:258.118111px;}
.yc1_c00420{bottom:271.456602px;}
.yc0_c00420{bottom:272.569750px;}
.y16c_c00420{bottom:272.612472px;}
.y16b_c00420{bottom:273.102756px;}
.ybf_c00420{bottom:273.757719px;}
.y16a_c00420{bottom:273.804552px;}
.ybe_c00420{bottom:274.363280px;}
.y169_c00420{bottom:274.937580px;}
.ybd_c00420{bottom:275.207230px;}
.ybc_c00420{bottom:276.211343px;}
.y168_c00420{bottom:276.465744px;}
.ybb_c00420{bottom:289.309265px;}
.y167_c00420{bottom:289.973844px;}
.y166_c00420{bottom:290.354040px;}
.yba_c00420{bottom:290.494389px;}
.y165_c00420{bottom:291.330360px;}
.yb9_c00420{bottom:292.066050px;}
.y164_c00420{bottom:292.145724px;}
.yb8_c00420{bottom:292.309797px;}
.y163_c00420{bottom:292.750824px;}
.yb7_c00420{bottom:292.999710px;}
.y162_c00420{bottom:293.427420px;}
.yb6_c00420{bottom:293.493000px;}
.y161_c00420{bottom:294.289416px;}
.yb5_c00420{bottom:307.119048px;}
.y160_c00420{bottom:308.185476px;}
.yb4_c00420{bottom:308.304966px;}
.y15f_c00420{bottom:308.588400px;}
.yb3_c00420{bottom:308.694852px;}
.y15e_c00420{bottom:309.685368px;}
.yb2_c00420{bottom:310.317570px;}
.y15d_c00420{bottom:310.685412px;}
.y15c_c00420{bottom:311.243484px;}
.yb1_c00420{bottom:311.570934px;}
.y15b_c00420{bottom:311.718564px;}
.y15a_c00420{bottom:313.196724px;}
.yb0_c00420{bottom:324.885498px;}
.y159_c00420{bottom:325.844508px;}
.yaf_c00420{bottom:326.156922px;}
.y158_c00420{bottom:326.290188px;}
.yae_c00420{bottom:327.315420px;}
.y157_c00420{bottom:327.400056px;}
.yad_c00420{bottom:327.796452px;}
.yac_c00420{bottom:328.041000px;}
.y156_c00420{bottom:328.113480px;}
.y155_c00420{bottom:328.469892px;}
.yab_c00420{bottom:328.615980px;}
.y154_c00420{bottom:329.307300px;}
.yaa_c00420{bottom:329.465430px;}
.ya9_c00420{bottom:329.664732px;}
.y153_c00420{bottom:329.884764px;}
.y152_c00420{bottom:330.198336px;}
.y151_c00420{bottom:331.292880px;}
.ya8_c00420{bottom:341.593494px;}
.ya7_c00420{bottom:342.108834px;}
.ya6_c00420{bottom:342.818130px;}
.y150_c00420{bottom:343.611636px;}
.ya5_c00420{bottom:343.732974px;}
.y14f_c00420{bottom:343.871988px;}
.ya4_c00420{bottom:344.882682px;}
.y14e_c00420{bottom:344.908644px;}
.y14d_c00420{bottom:346.043400px;}
.ya3_c00420{bottom:346.652100px;}
.y14c_c00420{bottom:347.027928px;}
.ya2_c00420{bottom:347.227500px;}
.y14b_c00420{bottom:347.847288px;}
.y14a_c00420{bottom:348.306000px;}
.y149_c00420{bottom:367.427625px;}
.y148_c00420{bottom:367.765013px;}
.y147_c00420{bottom:368.062425px;}
.ya1_c00420{bottom:368.959041px;}
.ya0_c00420{bottom:368.959188px;}
.y146_c00420{bottom:369.343163px;}
.y145_c00420{bottom:369.876600px;}
.y144_c00420{bottom:370.830750px;}
.y143_c00420{bottom:371.479050px;}
.y9f_c00420{bottom:384.106216px;}
.y142_c00420{bottom:384.308212px;}
.y141_c00420{bottom:384.746813px;}
.y9e_c00420{bottom:384.770772px;}
.y9d_c00420{bottom:385.440147px;}
.y140_c00420{bottom:385.941863px;}
.y9c_c00420{bottom:386.466197px;}
.y13f_c00420{bottom:386.853675px;}
.y9b_c00420{bottom:386.988089px;}
.y13e_c00420{bottom:387.279112px;}
.y9a_c00420{bottom:387.805104px;}
.y13d_c00420{bottom:387.974475px;}
.y99_c00420{bottom:388.264500px;}
.y13c_c00420{bottom:388.649250px;}
.y13b_c00420{bottom:389.573888px;}
.y98_c00420{bottom:402.066940px;}
.y13a_c00420{bottom:402.504712px;}
.y97_c00420{bottom:403.098061px;}
.y139_c00420{bottom:403.516650px;}
.y96_c00420{bottom:403.961130px;}
.y95_c00420{bottom:404.516538px;}
.y138_c00420{bottom:404.740650px;}
.y137_c00420{bottom:405.318412px;}
.y94_c00420{bottom:405.452718px;}
.y93_c00420{bottom:405.843727px;}
.y136_c00420{bottom:406.076925px;}
.y92_c00420{bottom:406.354500px;}
.y135_c00420{bottom:407.399400px;}
.y134_c00420{bottom:419.910975px;}
.y91_c00420{bottom:420.204840px;}
.y90_c00420{bottom:420.523043px;}
.y8f_c00420{bottom:420.757512px;}
.y133_c00420{bottom:420.900263px;}
.y132_c00420{bottom:421.384388px;}
.y8e_c00420{bottom:421.614450px;}
.y8d_c00420{bottom:421.927409px;}
.y131_c00420{bottom:421.978500px;}
.y8c_c00420{bottom:422.876886px;}
.y130_c00420{bottom:423.107062px;}
.y8b_c00420{bottom:423.199934px;}
.y8a_c00420{bottom:423.903000px;}
.y12f_c00420{bottom:424.559700px;}
.y12e_c00420{bottom:425.767350px;}
.y89_c00420{bottom:435.606295px;}
.y88_c00420{bottom:435.783003px;}
.y87_c00420{bottom:436.195030px;}
.y86_c00420{bottom:436.972084px;}
.y12d_c00420{bottom:438.046613px;}
.y85_c00420{bottom:438.410743px;}
.y84_c00420{bottom:439.111884px;}
.y12c_c00420{bottom:439.442700px;}
.y83_c00420{bottom:439.563931px;}
.y12b_c00420{bottom:439.848563px;}
.y82_c00420{bottom:440.886972px;}
.y12a_c00420{bottom:441.187088px;}
.y81_c00420{bottom:442.059445px;}
.y129_c00420{bottom:442.155413px;}
.y80_c00420{bottom:442.526967px;}
.y128_c00420{bottom:443.695688px;}
.y127_c00420{bottom:443.858513px;}
.y7f_c00420{bottom:455.640372px;}
.y7e_c00420{bottom:455.984604px;}
.y126_c00420{bottom:456.869100px;}
.y7d_c00420{bottom:457.150261px;}
.y125_c00420{bottom:457.535813px;}
.y7c_c00420{bottom:457.791192px;}
.y7b_c00420{bottom:458.800452px;}
.y124_c00420{bottom:458.849700px;}
.y7a_c00420{bottom:459.634698px;}
.y123_c00420{bottom:459.761063px;}
.y79_c00420{bottom:460.025959px;}
.y122_c00420{bottom:460.301475px;}
.y78_c00420{bottom:460.350000px;}
.y121_c00420{bottom:461.146650px;}
.y120_c00420{bottom:473.283525px;}
.y77_c00420{bottom:473.824143px;}
.y76_c00420{bottom:474.124811px;}
.y75_c00420{bottom:474.515820px;}
.y11f_c00420{bottom:474.682913px;}
.y11e_c00420{bottom:475.394400px;}
.y74_c00420{bottom:475.542562px;}
.y11d_c00420{bottom:475.885838px;}
.y73_c00420{bottom:476.580172px;}
.y11c_c00420{bottom:477.389625px;}
.y72_c00420{bottom:477.616963px;}
.y11b_c00420{bottom:478.607588px;}
.y11a_c00420{bottom:479.242238px;}
.y71_c00420{bottom:490.524234px;}
.y119_c00420{bottom:490.988625px;}
.y70_c00420{bottom:491.436877px;}
.y118_c00420{bottom:491.934675px;}
.y117_c00420{bottom:492.418425px;}
.y6f_c00420{bottom:492.468633px;}
.y6e_c00420{bottom:493.089727px;}
.y6d_c00420{bottom:493.437436px;}
.y116_c00420{bottom:493.761750px;}
.y6c_c00420{bottom:493.962969px;}
.y115_c00420{bottom:495.200888px;}
.y6b_c00420{bottom:495.443823px;}
.y114_c00420{bottom:496.309913px;}
.y113_c00420{bottom:496.785075px;}
.y6a_c00420{bottom:508.422102px;}
.y69_c00420{bottom:508.898035px;}
.y68_c00420{bottom:509.606880px;}
.y67_c00420{bottom:510.378315px;}
.y66_c00420{bottom:510.904334px;}
.y65_c00420{bottom:512.165058px;}
.y64_c00420{bottom:512.724970px;}
.y112_c00420{bottom:517.850662px;}
.y111_c00420{bottom:517.851000px;}
.y63_c00420{bottom:525.637060px;}
.y62_c00420{bottom:526.237817px;}
.y61_c00420{bottom:527.196555px;}
.y60_c00420{bottom:528.385227px;}
.y5f_c00420{bottom:529.004008px;}
.y5e_c00420{bottom:529.417170px;}
.y5d_c00420{bottom:530.821152px;}
.y110_c00420{bottom:531.506175px;}
.y10f_c00420{bottom:532.363313px;}
.y10e_c00420{bottom:532.741538px;}
.y10d_c00420{bottom:533.876025px;}
.y10c_c00420{bottom:534.206513px;}
.y10b_c00420{bottom:534.855338px;}
.y10a_c00420{bottom:535.658175px;}
.y109_c00420{bottom:536.212013px;}
.y108_c00420{bottom:536.766000px;}
.y5c_c00420{bottom:544.336464px;}
.y5b_c00420{bottom:544.744861px;}
.y5a_c00420{bottom:545.476733px;}
.y59_c00420{bottom:545.822634px;}
.y58_c00420{bottom:546.337186px;}
.y57_c00420{bottom:547.370922px;}
.y56_c00420{bottom:547.847107px;}
.y55_c00420{bottom:548.373000px;}
.y106_c00420{bottom:558.886500px;}
.y107_c00420{bottom:558.886650px;}
.y54_c00420{bottom:561.695601px;}
.y53_c00420{bottom:562.144263px;}
.y52_c00420{bottom:562.605690px;}
.y51_c00420{bottom:563.447841px;}
.y50_c00420{bottom:563.776782px;}
.y4f_c00420{bottom:564.242985px;}
.y4e_c00420{bottom:565.921032px;}
.y105_c00420{bottom:573.007313px;}
.y104_c00420{bottom:574.345238px;}
.y103_c00420{bottom:574.714125px;}
.y102_c00420{bottom:575.427038px;}
.y101_c00420{bottom:576.199912px;}
.y100_c00420{bottom:576.755963px;}
.yff_c00420{bottom:577.523588px;}
.y4d_c00420{bottom:580.187769px;}
.y4c_c00420{bottom:580.959603px;}
.y4b_c00420{bottom:581.379519px;}
.y4a_c00420{bottom:582.150030px;}
.y49_c00420{bottom:582.437331px;}
.y48_c00420{bottom:583.201500px;}
.yfe_c00420{bottom:591.360450px;}
.yfd_c00420{bottom:591.968663px;}
.yfc_c00420{bottom:592.865663px;}
.yfb_c00420{bottom:593.297738px;}
.yfa_c00420{bottom:593.864175px;}
.yf9_c00420{bottom:594.361013px;}
.yf8_c00420{bottom:595.888350px;}
.y47_c00420{bottom:597.954456px;}
.y46_c00420{bottom:598.389664px;}
.y45_c00420{bottom:599.070056px;}
.y44_c00420{bottom:599.859255px;}
.y43_c00420{bottom:600.502467px;}
.y42_c00420{bottom:601.287000px;}
.yf7_c00420{bottom:608.105100px;}
.yf6_c00420{bottom:609.565500px;}
.yf5_c00420{bottom:609.889238px;}
.yf4_c00420{bottom:611.379675px;}
.yf3_c00420{bottom:612.594638px;}
.yf2_c00420{bottom:612.844988px;}
.yf1_c00420{bottom:613.717500px;}
.y41_c00420{bottom:618.117000px;}
.yf0_c00420{bottom:660.004899px;}
.yef_c00420{bottom:661.310193px;}
.yee_c00420{bottom:661.919133px;}
.yed_c00420{bottom:663.503244px;}
.yec_c00420{bottom:664.215000px;}
.y40_c00420{bottom:664.524120px;}
.y3f_c00420{bottom:665.761800px;}
.y3e_c00420{bottom:667.342452px;}
.y3d_c00420{bottom:668.451144px;}
.y3c_c00420{bottom:669.067500px;}
.y3b_c00420{bottom:685.348350px;}
.y3a_c00420{bottom:687.746025px;}
.y39_c00420{bottom:689.440425px;}
.y38_c00420{bottom:692.283037px;}
.y37_c00420{bottom:706.762763px;}
.y36_c00420{bottom:707.743575px;}
.y35_c00420{bottom:708.698737px;}
.y34_c00420{bottom:710.173650px;}
.y33_c00420{bottom:710.930437px;}
.y32_c00420{bottom:712.773787px;}
.y31_c00420{bottom:713.341275px;}
.y30_c00420{bottom:714.427500px;}
.y2f_c00420{bottom:730.936864px;}
.y2e_c00420{bottom:731.715495px;}
.y2d_c00420{bottom:732.305721px;}
.y2c_c00420{bottom:732.918338px;}
.y2b_c00420{bottom:733.324437px;}
.y2a_c00420{bottom:735.151281px;}
.y29_c00420{bottom:735.585740px;}
.y28_c00420{bottom:736.139154px;}
.y27_c00420{bottom:737.107500px;}
.y26_c00420{bottom:752.729496px;}
.y25_c00420{bottom:754.316160px;}
.y24_c00420{bottom:755.247120px;}
.y23_c00420{bottom:755.885940px;}
.y22_c00420{bottom:756.397836px;}
.y21_c00420{bottom:758.279556px;}
.y20_c00420{bottom:760.014084px;}
.y1f_c00420{bottom:760.849452px;}
.y1e_c00420{bottom:776.166060px;}
.y1d_c00420{bottom:776.500440px;}
.y1c_c00420{bottom:777.637212px;}
.y1b_c00420{bottom:778.009260px;}
.y1a_c00420{bottom:779.146320px;}
.y19_c00420{bottom:779.612532px;}
.y18_c00420{bottom:780.308976px;}
.y17_c00420{bottom:781.476180px;}
.y16_c00420{bottom:782.090520px;}
.y15_c00420{bottom:782.724768px;}
.y14_c00420{bottom:797.731692px;}
.y13_c00420{bottom:799.205640px;}
.y12_c00420{bottom:799.618740px;}
.y11_c00420{bottom:800.314476px;}
.y10_c00420{bottom:801.234672px;}
.yf_c00420{bottom:802.666968px;}
.ye_c00420{bottom:803.497272px;}
.yd_c00420{bottom:804.065028px;}
.yc_c00420{bottom:805.473888px;}
.yb_c00420{bottom:806.005572px;}
.ya_c00420{bottom:806.491428px;}
.y9_c00420{bottom:819.581880px;}
.y8_c00420{bottom:819.937704px;}
.y7_c00420{bottom:820.831260px;}
.y6_c00420{bottom:822.354384px;}
.y5_c00420{bottom:823.650780px;}
.y4_c00420{bottom:824.701332px;}
.y3_c00420{bottom:826.243428px;}
.y2_c00420{bottom:827.182920px;}
.y1_c00420{bottom:828.907500px;}
.h23_c00420{height:45.164107px;}
.h22_c00420{height:47.264763px;}
.h27_c00420{height:48.313908px;}
.hb_c00420{height:49.354836px;}
.h25_c00420{height:49.364211px;}
.h15_c00420{height:49.369341px;}
.hc_c00420{height:50.404939px;}
.h13_c00420{height:50.411112px;}
.h18_c00420{height:50.414513px;}
.h20_c00420{height:50.415748px;}
.h11_c00420{height:51.461343px;}
.h21_c00420{height:51.466076px;}
.he_c00420{height:52.511575px;}
.h9_c00420{height:53.550000px;}
.hd_c00420{height:53.561806px;}
.h24_c00420{height:53.565420px;}
.h17_c00420{height:53.570987px;}
.h12_c00420{height:54.609854px;}
.hf_c00420{height:54.612038px;}
.h10_c00420{height:55.662269px;}
.h28_c00420{height:55.666025px;}
.h16_c00420{height:55.671811px;}
.h14_c00420{height:56.712501px;}
.h1a_c00420{height:57.763974px;}
.h1c_c00420{height:57.766630px;}
.h19_c00420{height:59.864482px;}
.h26_c00420{height:59.867234px;}
.ha_c00420{height:60.908799px;}
.h1d_c00420{height:61.967839px;}
.h1f_c00420{height:61.969356px;}
.h6_c00420{height:64.070012px;}
.h1e_c00420{height:66.122112px;}
.h2_c00420{height:69.319956px;}
.h7_c00420{height:70.371981px;}
.h8_c00420{height:71.420560px;}
.h3_c00420{height:72.470863px;}
.h5_c00420{height:73.519438px;}
.h4_c00420{height:74.571467px;}
.h1b_c00420{height:80.873281px;}
.h1_c00420{height:1005.000000px;}
.h0_c00420{height:1005.150000px;}
.w0_c00420{width:715.200000px;}
.w1_c00420{width:715.500000px;}
.x0_c00420{left:0.000000px;}
.x5a_c00420{left:41.594208px;}
.x89_c00420{left:47.245080px;}
.x82_c00420{left:48.403500px;}
.x85_c00420{left:53.190540px;}
.x5b_c00420{left:60.284133px;}
.x56_c00420{left:62.404500px;}
.x72_c00420{left:63.633402px;}
.x7d_c00420{left:65.655608px;}
.x73_c00420{left:72.681414px;}
.x7b_c00420{left:74.028088px;}
.x67_c00420{left:75.120000px;}
.x62_c00420{left:77.305500px;}
.x51_c00420{left:78.344960px;}
.x35_c00420{left:80.460000px;}
.x88_c00420{left:86.156364px;}
.x6c_c00420{left:88.813500px;}
.x57_c00420{left:96.466500px;}
.x79_c00420{left:97.873500px;}
.x68_c00420{left:99.442500px;}
.x45_c00420{left:104.562000px;}
.x4d_c00420{left:106.173218px;}
.x5c_c00420{left:107.183695px;}
.x6d_c00420{left:109.363500px;}
.x74_c00420{left:111.275382px;}
.x36_c00420{left:112.590000px;}
.x63_c00420{left:114.309000px;}
.x30_c00420{left:117.634200px;}
.x22_c00420{left:119.041500px;}
.x1_c00420{left:120.919500px;}
.x3c_c00420{left:126.705000px;}
.x55_c00420{left:127.811303px;}
.x77_c00420{left:129.685350px;}
.x64_c00420{left:131.311500px;}
.x3f_c00420{left:134.637000px;}
.x49_c00420{left:135.876446px;}
.x6a_c00420{left:137.527500px;}
.xa_c00420{left:140.628516px;}
.x32_c00420{left:143.071500px;}
.x37_c00420{left:144.990000px;}
.x13_c00420{left:148.207248px;}
.x7e_c00420{left:149.932843px;}
.x1b_c00420{left:152.219028px;}
.x40_c00420{left:155.158500px;}
.x8a_c00420{left:156.651336px;}
.x7c_c00420{left:158.029324px;}
.x5d_c00420{left:160.109754px;}
.x23_c00420{left:161.143500px;}
.xb_c00420{left:162.782016px;}
.x3d_c00420{left:164.541000px;}
.x52_c00420{left:165.597806px;}
.x38_c00420{left:166.860000px;}
.x42_c00420{left:168.627990px;}
.x75_c00420{left:170.430336px;}
.x6e_c00420{left:172.557000px;}
.x80_c00420{left:173.683500px;}
.x14_c00420{left:174.930396px;}
.x46_c00420{left:176.463000px;}
.x5e_c00420{left:178.205742px;}
.x53_c00420{left:180.726176px;}
.x24_c00420{left:185.205000px;}
.x33_c00420{left:189.267000px;}
.x4e_c00420{left:191.256218px;}
.x2_c00420{left:192.777000px;}
.x65_c00420{left:197.755500px;}
.x47_c00420{left:200.965500px;}
.x25_c00420{left:204.094500px;}
.x5f_c00420{left:206.233880px;}
.x54_c00420{left:207.729542px;}
.x81_c00420{left:209.602500px;}
.x3e_c00420{left:210.964500px;}
.x6f_c00420{left:213.618000px;}
.x58_c00420{left:214.773000px;}
.x48_c00420{left:217.437000px;}
.x1c_c00420{left:218.925324px;}
.xc_c00420{left:221.484516px;}
.x39_c00420{left:223.560000px;}
.x4a_c00420{left:224.683980px;}
.x15_c00420{left:225.690120px;}
.x4f_c00420{left:227.991218px;}
.x69_c00420{left:230.188500px;}
.x3_c00420{left:231.922500px;}
.x83_c00420{left:235.011000px;}
.x41_c00420{left:240.189000px;}
.x66_c00420{left:242.857500px;}
.xd_c00420{left:245.141016px;}
.x70_c00420{left:246.291000px;}
.x3a_c00420{left:251.640000px;}
.x86_c00420{left:253.416000px;}
.x43_c00420{left:254.714442px;}
.x16_c00420{left:255.959340px;}
.x2b_c00420{left:258.372000px;}
.x50_c00420{left:261.745718px;}
.x4b_c00420{left:263.049267px;}
.x7f_c00420{left:267.111886px;}
.x78_c00420{left:268.741296px;}
.x59_c00420{left:270.280500px;}
.x3b_c00420{left:271.350000px;}
.x7a_c00420{left:273.609000px;}
.x6b_c00420{left:274.759500px;}
.x17_c00420{left:276.197808px;}
.xe_c00420{left:279.737016px;}
.x76_c00420{left:280.910400px;}
.x26_c00420{left:283.522500px;}
.x84_c00420{left:286.065000px;}
.x4c_c00420{left:287.083251px;}
.x2c_c00420{left:288.643500px;}
.x71_c00420{left:290.028000px;}
.x1d_c00420{left:291.326868px;}
.x60_c00420{left:294.879445px;}
.x4_c00420{left:296.176500px;}
.x27_c00420{left:301.179000px;}
.x44_c00420{left:302.574582px;}
.x34_c00420{left:306.697500px;}
.x1e_c00420{left:311.029932px;}
.xd5_c00420{left:315.633192px;}
.x87_c00420{left:316.941000px;}
.x61_c00420{left:318.412461px;}
.x8b_c00420{left:320.869500px;}
.xae_c00420{left:322.221487px;}
.xc3_c00420{left:324.307788px;}
.x18_c00420{left:325.638996px;}
.x28_c00420{left:327.814500px;}
.xaa_c00420{left:329.412412px;}
.x8d_c00420{left:330.709500px;}
.x1f_c00420{left:335.583744px;}
.xbc_c00420{left:338.334000px;}
.x5_c00420{left:339.949500px;}
.x19_c00420{left:341.828892px;}
.x9c_c00420{left:344.277000px;}
.x2d_c00420{left:347.640000px;}
.x9b_c00420{left:351.006262px;}
.xd1_c00420{left:352.209924px;}
.x29_c00420{left:353.476500px;}
.xcc_c00420{left:355.402464px;}
.xbd_c00420{left:357.447000px;}
.xab_c00420{left:361.898587px;}
.xb4_c00420{left:362.938050px;}
.x31_c00420{left:365.303138px;}
.x96_c00420{left:366.529912px;}
.x20_c00420{left:371.372016px;}
.xcd_c00420{left:374.035764px;}
.x8e_c00420{left:375.624000px;}
.xf_c00420{left:377.757516px;}
.xd2_c00420{left:379.973256px;}
.xce_c00420{left:381.318996px;}
.xac_c00420{left:382.674562px;}
.xb2_c00420{left:383.999625px;}
.x2e_c00420{left:385.846500px;}
.x2a_c00420{left:387.330000px;}
.x9d_c00420{left:388.590000px;}
.xb5_c00420{left:389.929050px;}
.x1a_c00420{left:391.258080px;}
.x92_c00420{left:392.924250px;}
.x6_c00420{left:393.966000px;}
.xa5_c00420{left:396.120900px;}
.xc6_c00420{left:397.584552px;}
.xc4_c00420{left:402.440916px;}
.x10_c00420{left:406.746516px;}
.xb8_c00420{left:410.528925px;}
.x93_c00420{left:414.538837px;}
.xad_c00420{left:417.748200px;}
.x9e_c00420{left:420.703500px;}
.xca_c00420{left:422.927124px;}
.x11_c00420{left:423.959016px;}
.x2f_c00420{left:425.079000px;}
.x97_c00420{left:426.951450px;}
.xb0_c00420{left:428.167200px;}
.x21_c00420{left:432.417600px;}
.xb6_c00420{left:434.761050px;}
.x94_c00420{left:439.177575px;}
.xc0_c00420{left:440.951232px;}
.xa2_c00420{left:442.834125px;}
.x8c_c00420{left:444.572173px;}
.x9f_c00420{left:446.656500px;}
.xa6_c00420{left:449.848388px;}
.x7_c00420{left:457.429500px;}
.x98_c00420{left:459.370387px;}
.xb9_c00420{left:461.758425px;}
.xd3_c00420{left:463.573788px;}
.xc5_c00420{left:464.735904px;}
.xa7_c00420{left:467.404575px;}
.xaf_c00420{left:470.732062px;}
.xba_c00420{left:473.654925px;}
.x99_c00420{left:476.107125px;}
.xbe_c00420{left:479.890500px;}
.xcf_c00420{left:481.786320px;}
.x8f_c00420{left:483.840000px;}
.x12_c00420{left:485.373516px;}
.xbb_c00420{left:487.150425px;}
.xd6_c00420{left:489.443700px;}
.xa8_c00420{left:492.802163px;}
.x8_c00420{left:494.661000px;}
.x90_c00420{left:496.789500px;}
.xc9_c00420{left:498.757752px;}
.xa0_c00420{left:505.255500px;}
.xd4_c00420{left:506.555340px;}
.xc1_c00420{left:508.479372px;}
.x9_c00420{left:509.487000px;}
.xc7_c00420{left:511.771296px;}
.xa3_c00420{left:513.155400px;}
.xd0_c00420{left:515.149404px;}
.xb7_c00420{left:519.035550px;}
.xa1_c00420{left:520.384500px;}
.x95_c00420{left:523.393275px;}
.xc2_c00420{left:524.985684px;}
.xcb_c00420{left:526.168524px;}
.xc8_c00420{left:529.864092px;}
.xbf_c00420{left:533.932500px;}
.x9a_c00420{left:536.888662px;}
.xb3_c00420{left:539.315887px;}
.xa9_c00420{left:542.773912px;}
.xd7_c00420{left:547.621524px;}
.xa4_c00420{left:549.556500px;}
.xb1_c00420{left:551.147662px;}
.x91_c00420{left:555.205500px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fs21_c00420{font-size:40.145873pt;}
.fs20_c00420{font-size:42.013123pt;}
.fs25_c00420{font-size:42.945696pt;}
.fs9_c00420{font-size:43.870965pt;}
.fs23_c00420{font-size:43.879298pt;}
.fs13_c00420{font-size:43.883859pt;}
.fsa_c00420{font-size:44.804390pt;}
.fs11_c00420{font-size:44.809877pt;}
.fs16_c00420{font-size:44.812901pt;}
.fs1e_c00420{font-size:44.813998pt;}
.fsf_c00420{font-size:45.743416pt;}
.fs1f_c00420{font-size:45.747623pt;}
.fsc_c00420{font-size:46.676956pt;}
.fs7_c00420{font-size:47.600000pt;}
.fsb_c00420{font-size:47.610495pt;}
.fs22_c00420{font-size:47.613707pt;}
.fs15_c00420{font-size:47.618656pt;}
.fs10_c00420{font-size:48.542093pt;}
.fsd_c00420{font-size:48.544034pt;}
.fse_c00420{font-size:49.477573pt;}
.fs26_c00420{font-size:49.480911pt;}
.fs14_c00420{font-size:49.486054pt;}
.fs12_c00420{font-size:50.411112pt;}
.fs18_c00420{font-size:51.345754pt;}
.fs1a_c00420{font-size:51.348115pt;}
.fs17_c00420{font-size:53.212873pt;}
.fs24_c00420{font-size:53.215319pt;}
.fs8_c00420{font-size:54.141155pt;}
.fs1b_c00420{font-size:55.082524pt;}
.fs1d_c00420{font-size:55.083872pt;}
.fs4_c00420{font-size:56.951122pt;}
.fs1c_c00420{font-size:58.775211pt;}
.fs0_c00420{font-size:61.617738pt;}
.fs5_c00420{font-size:62.552872pt;}
.fs6_c00420{font-size:63.484942pt;}
.fs1_c00420{font-size:64.418545pt;}
.fs3_c00420{font-size:65.350612pt;}
.fs2_c00420{font-size:66.285749pt;}
.fs19_c00420{font-size:71.887361pt;}
.y0_c00420{bottom:0.000000pt;}
.yeb_c00420{bottom:146.831957pt;}
.yea_c00420{bottom:147.688416pt;}
.ye9_c00420{bottom:148.818229pt;}
.ye8_c00420{bottom:149.318560pt;}
.ye7_c00420{bottom:149.678347pt;}
.ye6_c00420{bottom:150.957451pt;}
.y18e_c00420{bottom:160.002315pt;}
.y18d_c00420{bottom:161.398197pt;}
.y18c_c00420{bottom:162.137728pt;}
.ye5_c00420{bottom:162.357899pt;}
.ye4_c00420{bottom:162.871168pt;}
.y18b_c00420{bottom:162.992747pt;}
.y18a_c00420{bottom:163.315723pt;}
.ye3_c00420{bottom:163.865173pt;}
.ye2_c00420{bottom:164.240629pt;}
.y189_c00420{bottom:164.578507pt;}
.ye1_c00420{bottom:164.870037pt;}
.y188_c00420{bottom:165.337419pt;}
.y187_c00420{bottom:165.569088pt;}
.ye0_c00420{bottom:166.128555pt;}
.ydf_c00420{bottom:166.421077pt;}
.yde_c00420{bottom:174.013856pt;}
.ydd_c00420{bottom:174.666528pt;}
.ydc_c00420{bottom:175.369056pt;}
.ydb_c00420{bottom:176.755840pt;}
.yda_c00420{bottom:176.980832pt;}
.yd9_c00420{bottom:177.360000pt;}
.y186_c00420{bottom:177.691979pt;}
.y185_c00420{bottom:178.029600pt;}
.y184_c00420{bottom:178.870496pt;}
.y183_c00420{bottom:179.290741pt;}
.y182_c00420{bottom:180.504555pt;}
.y181_c00420{bottom:181.047477pt;}
.yd6_c00420{bottom:181.315576pt;}
.yd8_c00420{bottom:181.315579pt;}
.yd7_c00420{bottom:181.316000pt;}
.y180_c00420{bottom:181.650923pt;}
.yd5_c00420{bottom:193.596397pt;}
.y17f_c00420{bottom:193.987552pt;}
.yd4_c00420{bottom:194.594787pt;}
.y17e_c00420{bottom:194.640597pt;}
.y17d_c00420{bottom:195.786837pt;}
.yd3_c00420{bottom:196.031064pt;}
.yd2_c00420{bottom:196.429176pt;}
.y17c_c00420{bottom:196.605131pt;}
.yd1_c00420{bottom:197.146611pt;}
.y17b_c00420{bottom:197.418741pt;}
.y17a_c00420{bottom:197.735296pt;}
.yd0_c00420{bottom:198.244000pt;}
.ycf_c00420{bottom:209.814261pt;}
.y179_c00420{bottom:210.023008pt;}
.y178_c00420{bottom:210.299701pt;}
.yce_c00420{bottom:210.707221pt;}
.y177_c00420{bottom:211.025664pt;}
.ycd_c00420{bottom:211.116469pt;}
.ycc_c00420{bottom:211.473493pt;}
.ycb_c00420{bottom:212.383861pt;}
.y176_c00420{bottom:212.687008pt;}
.yca_c00420{bottom:212.798741pt;}
.y175_c00420{bottom:213.017813pt;}
.y174_c00420{bottom:213.578453pt;}
.yc9_c00420{bottom:213.605333pt;}
.yc8_c00420{bottom:225.256272pt;}
.yc7_c00420{bottom:225.499059pt;}
.y173_c00420{bottom:225.830944pt;}
.yc6_c00420{bottom:226.043400pt;}
.y172_c00420{bottom:226.142933pt;}
.y171_c00420{bottom:226.657835pt;}
.yc5_c00420{bottom:226.729323pt;}
.yc4_c00420{bottom:227.172795pt;}
.y170_c00420{bottom:227.666549pt;}
.yc3_c00420{bottom:227.790447pt;}
.y16f_c00420{bottom:228.656000pt;}
.y16e_c00420{bottom:229.019307pt;}
.y16d_c00420{bottom:229.423275pt;}
.yc2_c00420{bottom:229.438321pt;}
.yc1_c00420{bottom:241.294757pt;}
.yc0_c00420{bottom:242.284223pt;}
.y16c_c00420{bottom:242.322197pt;}
.y16b_c00420{bottom:242.758005pt;}
.ybf_c00420{bottom:243.340195pt;}
.y16a_c00420{bottom:243.381824pt;}
.ybe_c00420{bottom:243.878471pt;}
.y169_c00420{bottom:244.388960pt;}
.ybd_c00420{bottom:244.628649pt;}
.ybc_c00420{bottom:245.521193pt;}
.y168_c00420{bottom:245.747328pt;}
.ybb_c00420{bottom:257.163791pt;}
.y167_c00420{bottom:257.754528pt;}
.y166_c00420{bottom:258.092480pt;}
.yba_c00420{bottom:258.217235pt;}
.y165_c00420{bottom:258.960320pt;}
.yb9_c00420{bottom:259.614267pt;}
.y164_c00420{bottom:259.685088pt;}
.yb8_c00420{bottom:259.830931pt;}
.y163_c00420{bottom:260.222955pt;}
.yb7_c00420{bottom:260.444187pt;}
.y162_c00420{bottom:260.824373pt;}
.yb6_c00420{bottom:260.882667pt;}
.y161_c00420{bottom:261.590592pt;}
.yb5_c00420{bottom:272.994709pt;}
.y160_c00420{bottom:273.942645pt;}
.yb4_c00420{bottom:274.048859pt;}
.y15f_c00420{bottom:274.300800pt;}
.yb3_c00420{bottom:274.395424pt;}
.y15e_c00420{bottom:275.275883pt;}
.yb2_c00420{bottom:275.837840pt;}
.y15d_c00420{bottom:276.164811pt;}
.y15c_c00420{bottom:276.660875pt;}
.yb1_c00420{bottom:276.951941pt;}
.y15b_c00420{bottom:277.083168pt;}
.y15a_c00420{bottom:278.397088pt;}
.yb0_c00420{bottom:288.787109pt;}
.y159_c00420{bottom:289.639563pt;}
.yaf_c00420{bottom:289.917264pt;}
.y158_c00420{bottom:290.035723pt;}
.yae_c00420{bottom:290.947040pt;}
.y157_c00420{bottom:291.022272pt;}
.yad_c00420{bottom:291.374624pt;}
.yac_c00420{bottom:291.592000pt;}
.y156_c00420{bottom:291.656427pt;}
.y155_c00420{bottom:291.973237pt;}
.yab_c00420{bottom:292.103093pt;}
.y154_c00420{bottom:292.717600pt;}
.yaa_c00420{bottom:292.858160pt;}
.ya9_c00420{bottom:293.035317pt;}
.y153_c00420{bottom:293.230901pt;}
.y152_c00420{bottom:293.509632pt;}
.y151_c00420{bottom:294.482560pt;}
.ya8_c00420{bottom:303.638661pt;}
.ya7_c00420{bottom:304.096741pt;}
.ya6_c00420{bottom:304.727227pt;}
.y150_c00420{bottom:305.432565pt;}
.ya5_c00420{bottom:305.540421pt;}
.y14f_c00420{bottom:305.663989pt;}
.ya4_c00420{bottom:306.562384pt;}
.y14e_c00420{bottom:306.585461pt;}
.y14d_c00420{bottom:307.594133pt;}
.ya3_c00420{bottom:308.135200pt;}
.y14c_c00420{bottom:308.469269pt;}
.ya2_c00420{bottom:308.646667pt;}
.y14b_c00420{bottom:309.197589pt;}
.y14a_c00420{bottom:309.605333pt;}
.y149_c00420{bottom:326.602333pt;}
.y148_c00420{bottom:326.902233pt;}
.y147_c00420{bottom:327.166600pt;}
.ya1_c00420{bottom:327.963592pt;}
.ya0_c00420{bottom:327.963723pt;}
.y146_c00420{bottom:328.305033pt;}
.y145_c00420{bottom:328.779200pt;}
.y144_c00420{bottom:329.627333pt;}
.y143_c00420{bottom:330.203600pt;}
.y9f_c00420{bottom:341.427748pt;}
.y142_c00420{bottom:341.607300pt;}
.y141_c00420{bottom:341.997167pt;}
.y9e_c00420{bottom:342.018464pt;}
.y9d_c00420{bottom:342.613464pt;}
.y140_c00420{bottom:343.059433pt;}
.y9c_c00420{bottom:343.525508pt;}
.y13f_c00420{bottom:343.869933pt;}
.y9b_c00420{bottom:343.989412pt;}
.y13e_c00420{bottom:344.248100pt;}
.y9a_c00420{bottom:344.715648pt;}
.y13d_c00420{bottom:344.866200pt;}
.y99_c00420{bottom:345.124000pt;}
.y13c_c00420{bottom:345.466000pt;}
.y13b_c00420{bottom:346.287900pt;}
.y98_c00420{bottom:357.392836pt;}
.y13a_c00420{bottom:357.781967pt;}
.y97_c00420{bottom:358.309388pt;}
.y139_c00420{bottom:358.681467pt;}
.y96_c00420{bottom:359.076560pt;}
.y95_c00420{bottom:359.570256pt;}
.y138_c00420{bottom:359.769467pt;}
.y137_c00420{bottom:360.283033pt;}
.y94_c00420{bottom:360.402416pt;}
.y93_c00420{bottom:360.749980pt;}
.y136_c00420{bottom:360.957267pt;}
.y92_c00420{bottom:361.204000pt;}
.y135_c00420{bottom:362.132800pt;}
.y134_c00420{bottom:373.254200pt;}
.y91_c00420{bottom:373.515413pt;}
.y90_c00420{bottom:373.798260pt;}
.y8f_c00420{bottom:374.006677pt;}
.y133_c00420{bottom:374.133567pt;}
.y132_c00420{bottom:374.563900pt;}
.y8e_c00420{bottom:374.768400pt;}
.y8d_c00420{bottom:375.046585pt;}
.y131_c00420{bottom:375.092000pt;}
.y8c_c00420{bottom:375.890565pt;}
.y130_c00420{bottom:376.095167pt;}
.y8b_c00420{bottom:376.177719pt;}
.y8a_c00420{bottom:376.802667pt;}
.y12f_c00420{bottom:377.386400pt;}
.y12e_c00420{bottom:378.459867pt;}
.y89_c00420{bottom:387.205596pt;}
.y88_c00420{bottom:387.362669pt;}
.y87_c00420{bottom:387.728916pt;}
.y86_c00420{bottom:388.419631pt;}
.y12d_c00420{bottom:389.374767pt;}
.y85_c00420{bottom:389.698439pt;}
.y84_c00420{bottom:390.321675pt;}
.y12c_c00420{bottom:390.615733pt;}
.y83_c00420{bottom:390.723495pt;}
.y12b_c00420{bottom:390.976500pt;}
.y82_c00420{bottom:391.899531pt;}
.y12a_c00420{bottom:392.166300pt;}
.y81_c00420{bottom:392.941729pt;}
.y129_c00420{bottom:393.027033pt;}
.y80_c00420{bottom:393.357304pt;}
.y128_c00420{bottom:394.396167pt;}
.y127_c00420{bottom:394.540900pt;}
.y7f_c00420{bottom:405.013664pt;}
.y7e_c00420{bottom:405.319648pt;}
.y126_c00420{bottom:406.105867pt;}
.y7d_c00420{bottom:406.355788pt;}
.y125_c00420{bottom:406.698500pt;}
.y7c_c00420{bottom:406.925504pt;}
.y7b_c00420{bottom:407.822624pt;}
.y124_c00420{bottom:407.866400pt;}
.y7a_c00420{bottom:408.564176pt;}
.y123_c00420{bottom:408.676500pt;}
.y79_c00420{bottom:408.911964pt;}
.y122_c00420{bottom:409.156867pt;}
.y78_c00420{bottom:409.200000pt;}
.y121_c00420{bottom:409.908133pt;}
.y120_c00420{bottom:420.696467pt;}
.y77_c00420{bottom:421.177016pt;}
.y76_c00420{bottom:421.444276pt;}
.y75_c00420{bottom:421.791840pt;}
.y11f_c00420{bottom:421.940367pt;}
.y11e_c00420{bottom:422.572800pt;}
.y74_c00420{bottom:422.704500pt;}
.y11d_c00420{bottom:423.009633pt;}
.y73_c00420{bottom:423.626820pt;}
.y11c_c00420{bottom:424.346333pt;}
.y72_c00420{bottom:424.548412pt;}
.y11b_c00420{bottom:425.428967pt;}
.y11a_c00420{bottom:425.993100pt;}
.y71_c00420{bottom:436.021541pt;}
.y119_c00420{bottom:436.434333pt;}
.y70_c00420{bottom:436.832780pt;}
.y118_c00420{bottom:437.275267pt;}
.y117_c00420{bottom:437.705267pt;}
.y6f_c00420{bottom:437.749896pt;}
.y6e_c00420{bottom:438.301980pt;}
.y6d_c00420{bottom:438.611055pt;}
.y116_c00420{bottom:438.899333pt;}
.y6c_c00420{bottom:439.078195pt;}
.y115_c00420{bottom:440.178567pt;}
.y6b_c00420{bottom:440.394509pt;}
.y114_c00420{bottom:441.164367pt;}
.y113_c00420{bottom:441.586733pt;}
.y6a_c00420{bottom:451.930757pt;}
.y69_c00420{bottom:452.353809pt;}
.y68_c00420{bottom:452.983893pt;}
.y67_c00420{bottom:453.669613pt;}
.y66_c00420{bottom:454.137185pt;}
.y65_c00420{bottom:455.257829pt;}
.y64_c00420{bottom:455.755529pt;}
.y112_c00420{bottom:460.311700pt;}
.y111_c00420{bottom:460.312000pt;}
.y63_c00420{bottom:467.232943pt;}
.y62_c00420{bottom:467.766948pt;}
.y61_c00420{bottom:468.619160pt;}
.y60_c00420{bottom:469.675757pt;}
.y5f_c00420{bottom:470.225785pt;}
.y5e_c00420{bottom:470.593040pt;}
.y5d_c00420{bottom:471.841024pt;}
.y110_c00420{bottom:472.449933pt;}
.y10f_c00420{bottom:473.211833pt;}
.y10e_c00420{bottom:473.548033pt;}
.y10d_c00420{bottom:474.556467pt;}
.y10c_c00420{bottom:474.850233pt;}
.y10b_c00420{bottom:475.426967pt;}
.y10a_c00420{bottom:476.140600pt;}
.y109_c00420{bottom:476.632900pt;}
.y108_c00420{bottom:477.125333pt;}
.y5c_c00420{bottom:483.854635pt;}
.y5b_c00420{bottom:484.217655pt;}
.y5a_c00420{bottom:484.868207pt;}
.y59_c00420{bottom:485.175675pt;}
.y58_c00420{bottom:485.633055pt;}
.y57_c00420{bottom:486.551931pt;}
.y56_c00420{bottom:486.975207pt;}
.y55_c00420{bottom:487.442667pt;}
.y106_c00420{bottom:496.788000pt;}
.y107_c00420{bottom:496.788133pt;}
.y54_c00420{bottom:499.284979pt;}
.y53_c00420{bottom:499.683789pt;}
.y52_c00420{bottom:500.093947pt;}
.y51_c00420{bottom:500.842525pt;}
.y50_c00420{bottom:501.134917pt;}
.y4f_c00420{bottom:501.549320pt;}
.y4e_c00420{bottom:503.040917pt;}
.y105_c00420{bottom:509.339833pt;}
.y104_c00420{bottom:510.529100pt;}
.y103_c00420{bottom:510.857000pt;}
.y102_c00420{bottom:511.490700pt;}
.y101_c00420{bottom:512.177700pt;}
.y100_c00420{bottom:512.671967pt;}
.yff_c00420{bottom:513.354300pt;}
.y4d_c00420{bottom:515.722461pt;}
.y4c_c00420{bottom:516.408536pt;}
.y4b_c00420{bottom:516.781795pt;}
.y4a_c00420{bottom:517.466693pt;}
.y49_c00420{bottom:517.722072pt;}
.y48_c00420{bottom:518.401333pt;}
.yfe_c00420{bottom:525.653733pt;}
.yfd_c00420{bottom:526.194367pt;}
.yfc_c00420{bottom:526.991700pt;}
.yfb_c00420{bottom:527.375767pt;}
.yfa_c00420{bottom:527.879267pt;}
.yf9_c00420{bottom:528.320900pt;}
.yf8_c00420{bottom:529.678533pt;}
.y47_c00420{bottom:531.515072pt;}
.y46_c00420{bottom:531.901924pt;}
.y45_c00420{bottom:532.506716pt;}
.y44_c00420{bottom:533.208227pt;}
.y43_c00420{bottom:533.779971pt;}
.y42_c00420{bottom:534.477333pt;}
.yf7_c00420{bottom:540.537867pt;}
.yf6_c00420{bottom:541.836000pt;}
.yf5_c00420{bottom:542.123767pt;}
.yf4_c00420{bottom:543.448600pt;}
.yf3_c00420{bottom:544.528567pt;}
.yf2_c00420{bottom:544.751100pt;}
.yf1_c00420{bottom:545.526667pt;}
.y41_c00420{bottom:549.437333pt;}
.yf0_c00420{bottom:586.671021pt;}
.yef_c00420{bottom:587.831283pt;}
.yee_c00420{bottom:588.372563pt;}
.yed_c00420{bottom:589.780661pt;}
.yec_c00420{bottom:590.413333pt;}
.y40_c00420{bottom:590.688107pt;}
.y3f_c00420{bottom:591.788267pt;}
.y3e_c00420{bottom:593.193291pt;}
.y3d_c00420{bottom:594.178795pt;}
.y3c_c00420{bottom:594.726667pt;}
.y3b_c00420{bottom:609.198533pt;}
.y3a_c00420{bottom:611.329800pt;}
.y39_c00420{bottom:612.835933pt;}
.y38_c00420{bottom:615.362700pt;}
.y37_c00420{bottom:628.233567pt;}
.y36_c00420{bottom:629.105400pt;}
.y35_c00420{bottom:629.954433pt;}
.y34_c00420{bottom:631.265467pt;}
.y33_c00420{bottom:631.938167pt;}
.y32_c00420{bottom:633.576700pt;}
.y31_c00420{bottom:634.081133pt;}
.y30_c00420{bottom:635.046667pt;}
.y2f_c00420{bottom:649.721657pt;}
.y2e_c00420{bottom:650.413773pt;}
.y2d_c00420{bottom:650.938419pt;}
.y2c_c00420{bottom:651.482967pt;}
.y2b_c00420{bottom:651.843944pt;}
.y2a_c00420{bottom:653.467805pt;}
.y29_c00420{bottom:653.853991pt;}
.y28_c00420{bottom:654.345915pt;}
.y27_c00420{bottom:655.206667pt;}
.y26_c00420{bottom:669.092885pt;}
.y25_c00420{bottom:670.503253pt;}
.y24_c00420{bottom:671.330773pt;}
.y23_c00420{bottom:671.898613pt;}
.y22_c00420{bottom:672.353632pt;}
.y21_c00420{bottom:674.026272pt;}
.y20_c00420{bottom:675.568075pt;}
.y1f_c00420{bottom:676.310624pt;}
.y1e_c00420{bottom:689.925387pt;}
.y1d_c00420{bottom:690.222613pt;}
.y1c_c00420{bottom:691.233077pt;}
.y1b_c00420{bottom:691.563787pt;}
.y1a_c00420{bottom:692.574507pt;}
.y19_c00420{bottom:692.988917pt;}
.y18_c00420{bottom:693.607979pt;}
.y17_c00420{bottom:694.645493pt;}
.y16_c00420{bottom:695.191573pt;}
.y15_c00420{bottom:695.755349pt;}
.y14_c00420{bottom:709.094837pt;}
.y13_c00420{bottom:710.405013pt;}
.y12_c00420{bottom:710.772213pt;}
.y11_c00420{bottom:711.390645pt;}
.y10_c00420{bottom:712.208597pt;}
.yf_c00420{bottom:713.481749pt;}
.ye_c00420{bottom:714.219797pt;}
.yd_c00420{bottom:714.724469pt;}
.yc_c00420{bottom:715.976789pt;}
.yb_c00420{bottom:716.449397pt;}
.ya_c00420{bottom:716.881269pt;}
.y9_c00420{bottom:728.517227pt;}
.y8_c00420{bottom:728.833515pt;}
.y7_c00420{bottom:729.627787pt;}
.y6_c00420{bottom:730.981675pt;}
.y5_c00420{bottom:732.134027pt;}
.y4_c00420{bottom:733.067851pt;}
.y3_c00420{bottom:734.438603pt;}
.y2_c00420{bottom:735.273707pt;}
.y1_c00420{bottom:736.806667pt;}
.h23_c00420{height:40.145873pt;}
.h22_c00420{height:42.013123pt;}
.h27_c00420{height:42.945696pt;}
.hb_c00420{height:43.870965pt;}
.h25_c00420{height:43.879298pt;}
.h15_c00420{height:43.883859pt;}
.hc_c00420{height:44.804390pt;}
.h13_c00420{height:44.809877pt;}
.h18_c00420{height:44.812901pt;}
.h20_c00420{height:44.813998pt;}
.h11_c00420{height:45.743416pt;}
.h21_c00420{height:45.747623pt;}
.he_c00420{height:46.676956pt;}
.h9_c00420{height:47.600000pt;}
.hd_c00420{height:47.610495pt;}
.h24_c00420{height:47.613707pt;}
.h17_c00420{height:47.618656pt;}
.h12_c00420{height:48.542093pt;}
.hf_c00420{height:48.544034pt;}
.h10_c00420{height:49.477573pt;}
.h28_c00420{height:49.480911pt;}
.h16_c00420{height:49.486054pt;}
.h14_c00420{height:50.411112pt;}
.h1a_c00420{height:51.345754pt;}
.h1c_c00420{height:51.348115pt;}
.h19_c00420{height:53.212873pt;}
.h26_c00420{height:53.215319pt;}
.ha_c00420{height:54.141155pt;}
.h1d_c00420{height:55.082524pt;}
.h1f_c00420{height:55.083872pt;}
.h6_c00420{height:56.951122pt;}
.h1e_c00420{height:58.775211pt;}
.h2_c00420{height:61.617738pt;}
.h7_c00420{height:62.552872pt;}
.h8_c00420{height:63.484942pt;}
.h3_c00420{height:64.418545pt;}
.h5_c00420{height:65.350612pt;}
.h4_c00420{height:66.285749pt;}
.h1b_c00420{height:71.887361pt;}
.h1_c00420{height:893.333333pt;}
.h0_c00420{height:893.466667pt;}
.w0_c00420{width:635.733333pt;}
.w1_c00420{width:636.000000pt;}
.x0_c00420{left:0.000000pt;}
.x5a_c00420{left:36.972629pt;}
.x89_c00420{left:41.995627pt;}
.x82_c00420{left:43.025333pt;}
.x85_c00420{left:47.280480pt;}
.x5b_c00420{left:53.585896pt;}
.x56_c00420{left:55.470667pt;}
.x72_c00420{left:56.563024pt;}
.x7d_c00420{left:58.360540pt;}
.x73_c00420{left:64.605701pt;}
.x7b_c00420{left:65.802745pt;}
.x67_c00420{left:66.773333pt;}
.x62_c00420{left:68.716000pt;}
.x51_c00420{left:69.639964pt;}
.x35_c00420{left:71.520000pt;}
.x88_c00420{left:76.583435pt;}
.x6c_c00420{left:78.945333pt;}
.x57_c00420{left:85.748000pt;}
.x79_c00420{left:86.998667pt;}
.x68_c00420{left:88.393333pt;}
.x45_c00420{left:92.944000pt;}
.x4d_c00420{left:94.376193pt;}
.x5c_c00420{left:95.274396pt;}
.x6d_c00420{left:97.212000pt;}
.x74_c00420{left:98.911451pt;}
.x36_c00420{left:100.080000pt;}
.x63_c00420{left:101.608000pt;}
.x30_c00420{left:104.563733pt;}
.x22_c00420{left:105.814667pt;}
.x1_c00420{left:107.484000pt;}
.x3c_c00420{left:112.626667pt;}
.x55_c00420{left:113.610047pt;}
.x77_c00420{left:115.275867pt;}
.x64_c00420{left:116.721333pt;}
.x3f_c00420{left:119.677333pt;}
.x49_c00420{left:120.779063pt;}
.x6a_c00420{left:122.246667pt;}
.xa_c00420{left:125.003125pt;}
.x32_c00420{left:127.174667pt;}
.x37_c00420{left:128.880000pt;}
.x13_c00420{left:131.739776pt;}
.x7e_c00420{left:133.273639pt;}
.x1b_c00420{left:135.305803pt;}
.x40_c00420{left:137.918667pt;}
.x8a_c00420{left:139.245632pt;}
.x7c_c00420{left:140.470511pt;}
.x5d_c00420{left:142.319781pt;}
.x23_c00420{left:143.238667pt;}
.xb_c00420{left:144.695125pt;}
.x3d_c00420{left:146.258667pt;}
.x52_c00420{left:147.198049pt;}
.x38_c00420{left:148.320000pt;}
.x42_c00420{left:149.891547pt;}
.x75_c00420{left:151.493632pt;}
.x6e_c00420{left:153.384000pt;}
.x80_c00420{left:154.385333pt;}
.x14_c00420{left:155.493685pt;}
.x46_c00420{left:156.856000pt;}
.x5e_c00420{left:158.405104pt;}
.x53_c00420{left:160.645489pt;}
.x24_c00420{left:164.626667pt;}
.x33_c00420{left:168.237333pt;}
.x4e_c00420{left:170.005527pt;}
.x2_c00420{left:171.357333pt;}
.x65_c00420{left:175.782667pt;}
.x47_c00420{left:178.636000pt;}
.x25_c00420{left:181.417333pt;}
.x5f_c00420{left:183.319004pt;}
.x54_c00420{left:184.648481pt;}
.x81_c00420{left:186.313333pt;}
.x3e_c00420{left:187.524000pt;}
.x6f_c00420{left:189.882667pt;}
.x58_c00420{left:190.909333pt;}
.x48_c00420{left:193.277333pt;}
.x1c_c00420{left:194.600288pt;}
.xc_c00420{left:196.875125pt;}
.x39_c00420{left:198.720000pt;}
.x4a_c00420{left:199.719093pt;}
.x15_c00420{left:200.613440pt;}
.x4f_c00420{left:202.658860pt;}
.x69_c00420{left:204.612000pt;}
.x3_c00420{left:206.153333pt;}
.x83_c00420{left:208.898667pt;}
.x41_c00420{left:213.501333pt;}
.x66_c00420{left:215.873333pt;}
.xd_c00420{left:217.903125pt;}
.x70_c00420{left:218.925333pt;}
.x3a_c00420{left:223.680000pt;}
.x86_c00420{left:225.258667pt;}
.x43_c00420{left:226.412837pt;}
.x16_c00420{left:227.519413pt;}
.x2b_c00420{left:229.664000pt;}
.x50_c00420{left:232.662860pt;}
.x4b_c00420{left:233.821571pt;}
.x7f_c00420{left:237.432788pt;}
.x78_c00420{left:238.881152pt;}
.x59_c00420{left:240.249333pt;}
.x3b_c00420{left:241.200000pt;}
.x7a_c00420{left:243.208000pt;}
.x6b_c00420{left:244.230667pt;}
.x17_c00420{left:245.509163pt;}
.xe_c00420{left:248.655125pt;}
.x76_c00420{left:249.698133pt;}
.x26_c00420{left:252.020000pt;}
.x84_c00420{left:254.280000pt;}
.x4c_c00420{left:255.185112pt;}
.x2c_c00420{left:256.572000pt;}
.x71_c00420{left:257.802667pt;}
.x1d_c00420{left:258.957216pt;}
.x60_c00420{left:262.115063pt;}
.x4_c00420{left:263.268000pt;}
.x27_c00420{left:267.714667pt;}
.x44_c00420{left:268.955184pt;}
.x34_c00420{left:272.620000pt;}
.x1e_c00420{left:276.471051pt;}
.xd5_c00420{left:280.562837pt;}
.x87_c00420{left:281.725333pt;}
.x61_c00420{left:283.033299pt;}
.x8b_c00420{left:285.217333pt;}
.xae_c00420{left:286.419100pt;}
.xc3_c00420{left:288.273589pt;}
.x18_c00420{left:289.456885pt;}
.x28_c00420{left:291.390667pt;}
.xaa_c00420{left:292.811033pt;}
.x8d_c00420{left:293.964000pt;}
.x1f_c00420{left:298.296661pt;}
.xbc_c00420{left:300.741333pt;}
.x5_c00420{left:302.177333pt;}
.x19_c00420{left:303.847904pt;}
.x9c_c00420{left:306.024000pt;}
.x2d_c00420{left:309.013333pt;}
.x9b_c00420{left:312.005567pt;}
.xd1_c00420{left:313.075488pt;}
.x29_c00420{left:314.201333pt;}
.xcc_c00420{left:315.913301pt;}
.xbd_c00420{left:317.730667pt;}
.xab_c00420{left:321.687633pt;}
.xb4_c00420{left:322.611600pt;}
.x31_c00420{left:324.713900pt;}
.x96_c00420{left:325.804367pt;}
.x20_c00420{left:330.108459pt;}
.xcd_c00420{left:332.476235pt;}
.x8e_c00420{left:333.888000pt;}
.xf_c00420{left:335.784459pt;}
.xd2_c00420{left:337.754005pt;}
.xce_c00420{left:338.950219pt;}
.xac_c00420{left:340.155167pt;}
.xb2_c00420{left:341.333000pt;}
.x2e_c00420{left:342.974667pt;}
.x2a_c00420{left:344.293333pt;}
.x9d_c00420{left:345.413333pt;}
.xb5_c00420{left:346.603600pt;}
.x1a_c00420{left:347.784960pt;}
.x92_c00420{left:349.266000pt;}
.x6_c00420{left:350.192000pt;}
.xa5_c00420{left:352.107467pt;}
.xc6_c00420{left:353.408491pt;}
.xc4_c00420{left:357.725259pt;}
.x10_c00420{left:361.552459pt;}
.xb8_c00420{left:364.914600pt;}
.x93_c00420{left:368.478967pt;}
.xad_c00420{left:371.331733pt;}
.x9e_c00420{left:373.958667pt;}
.xca_c00420{left:375.935221pt;}
.x11_c00420{left:376.852459pt;}
.x2f_c00420{left:377.848000pt;}
.x97_c00420{left:379.512400pt;}
.xb0_c00420{left:380.593067pt;}
.x21_c00420{left:384.371200pt;}
.xb6_c00420{left:386.454267pt;}
.x94_c00420{left:390.380067pt;}
.xc0_c00420{left:391.956651pt;}
.xa2_c00420{left:393.630333pt;}
.x8c_c00420{left:395.175265pt;}
.x9f_c00420{left:397.028000pt;}
.xa6_c00420{left:399.865233pt;}
.x7_c00420{left:406.604000pt;}
.x98_c00420{left:408.329233pt;}
.xb9_c00420{left:410.451933pt;}
.xd3_c00420{left:412.065589pt;}
.xc5_c00420{left:413.098581pt;}
.xa7_c00420{left:415.470733pt;}
.xaf_c00420{left:418.428500pt;}
.xba_c00420{left:421.026600pt;}
.x99_c00420{left:423.206333pt;}
.xbe_c00420{left:426.569333pt;}
.xcf_c00420{left:428.254507pt;}
.x8f_c00420{left:430.080000pt;}
.x12_c00420{left:431.443125pt;}
.xbb_c00420{left:433.022600pt;}
.xd6_c00420{left:435.061067pt;}
.xa8_c00420{left:438.046367pt;}
.x8_c00420{left:439.698667pt;}
.x90_c00420{left:441.590667pt;}
.xc9_c00420{left:443.340224pt;}
.xa0_c00420{left:449.116000pt;}
.xd4_c00420{left:450.271413pt;}
.xc1_c00420{left:451.981664pt;}
.x9_c00420{left:452.877333pt;}
.xc7_c00420{left:454.907819pt;}
.xa3_c00420{left:456.138133pt;}
.xd0_c00420{left:457.910581pt;}
.xb7_c00420{left:461.364933pt;}
.xa1_c00420{left:462.564000pt;}
.x95_c00420{left:465.238467pt;}
.xc2_c00420{left:466.653941pt;}
.xcb_c00420{left:467.705355pt;}
.xc8_c00420{left:470.990304pt;}
.xbf_c00420{left:474.606667pt;}
.x9a_c00420{left:477.234367pt;}
.xb3_c00420{left:479.391900pt;}
.xa9_c00420{left:482.465700pt;}
.xd7_c00420{left:486.774688pt;}
.xa4_c00420{left:488.494667pt;}
.xb1_c00420{left:489.909033pt;}
.x91_c00420{left:493.516000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m10a_c00421{transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);}
.mfc_c00421{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);}
.m132_c00421{transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021820,0.000000,0.000000,0.250000,0,0);}
.me6_c00421{transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);}
.mfb_c00421{transform:matrix(0.034500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034500,0.000000,0.000000,0.250000,0,0);}
.md2_c00421{transform:matrix(0.043375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043375,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{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);}
.me4_c00421{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.145159,-0.001306,0.002250,0.249990,0,0);-ms-transform:matrix(0.145159,-0.001306,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145159,-0.001306,0.002250,0.249990,0,0);}
.m34_c00421{transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);-ms-transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);}
.m114_c00421{transform:matrix(0.148070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148070,0.000000,0.000000,0.250000,0,0);}
.m136_c00421{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);}
.m49_c00421{transform:matrix(0.151357,-0.001968,0.003250,0.249979,0,0);-ms-transform:matrix(0.151357,-0.001968,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151357,-0.001968,0.003250,0.249979,0,0);}
.mb9_c00421{transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152920,0.000000,0.000000,0.250000,0,0);}
.m115_c00421{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);}
.ma1_c00421{transform:matrix(0.153255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153255,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{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);}
.m9f_c00421{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.maa_c00421{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);}
.m63_c00421{transform:matrix(0.157385,-0.001731,0.002750,0.249985,0,0);-ms-transform:matrix(0.157385,-0.001731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157385,-0.001731,0.002750,0.249985,0,0);}
.m104_c00421{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);}
.mcd_c00421{transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.159635,-0.001756,0.002750,0.249985,0,0);-ms-transform:matrix(0.159635,-0.001756,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159635,-0.001756,0.002750,0.249985,0,0);}
.ma3_c00421{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);}
.m56_c00421{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);-ms-transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160699,-0.002250,0.003500,0.249976,0,0);}
.med_c00421{transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);}
.m12e_c00421{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);}
.m11_c00421{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);}
.m8f_c00421{transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162820,0.000000,0.000000,0.250000,0,0);}
.m133_c00421{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);}
.mcf_c00421{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);}
.m6f_c00421{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);}
.me8_c00421{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);}
.m47_c00421{transform:matrix(0.165451,-0.002151,0.003250,0.249979,0,0);-ms-transform:matrix(0.165451,-0.002151,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165451,-0.002151,0.003250,0.249979,0,0);}
.mc4_c00421{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);}
.m44_c00421{transform:matrix(0.165906,-0.002157,0.003250,0.249979,0,0);-ms-transform:matrix(0.165906,-0.002157,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165906,-0.002157,0.003250,0.249979,0,0);}
.mdf_c00421{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);}
.m73_c00421{transform:matrix(0.166395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166395,0.000000,0.000000,0.250000,0,0);}
.m113_c00421{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);}
.m64_c00421{transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);-ms-transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166655,-0.001833,0.002750,0.249985,0,0);}
.m10f_c00421{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);}
.m4d_c00421{transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);-ms-transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167298,-0.001506,0.002250,0.249990,0,0);}
.md6_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);}
.m77_c00421{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);}
.m16_c00421{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);}
.m2a_c00421{transform:matrix(0.168966,-0.002534,0.003750,0.249972,0,0);-ms-transform:matrix(0.168966,-0.002534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168966,-0.002534,0.003750,0.249972,0,0);}
.m118_c00421{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);}
.m96_c00421{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.169780,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169780,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169780,-0.001868,0.002750,0.249985,0,0);}
.m124_c00421{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{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);}
.m51_c00421{transform:matrix(0.170448,-0.001534,0.002250,0.249990,0,0);-ms-transform:matrix(0.170448,-0.001534,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170448,-0.001534,0.002250,0.249990,0,0);}
.m11a_c00421{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);}
.m8a_c00421{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.171965,-0.001892,0.002750,0.249985,0,0);-ms-transform:matrix(0.171965,-0.001892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171965,-0.001892,0.002750,0.249985,0,0);}
.mb2_c00421{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);}
.mbd_c00421{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_c00421{transform:matrix(0.173545,-0.002256,0.003250,0.249979,0,0);-ms-transform:matrix(0.173545,-0.002256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173545,-0.002256,0.003250,0.249979,0,0);}
.maf_c00421{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);}
.m9d_c00421{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);}
.m88_c00421{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);}
.m1f_c00421{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);}
.m116_c00421{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);}
.mf9_c00421{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);}
.mad_c00421{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);}
.m6_c00421{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);}
.m9a_c00421{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);}
.m11c_c00421{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);}
.m102_c00421{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);}
.m3d_c00421{transform:matrix(0.176403,-0.002470,0.003500,0.249976,0,0);-ms-transform:matrix(0.176403,-0.002470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176403,-0.002470,0.003500,0.249976,0,0);}
.m121_c00421{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);}
.m12f_c00421{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);}
.ma2_c00421{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);}
.m7f_c00421{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);}
.m5_c00421{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);}
.m13a_c00421{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);}
.m70_c00421{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);}
.m7_c00421{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);}
.m60_c00421{transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);-ms-transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180299,-0.001983,0.002750,0.249985,0,0);}
.m4_c00421{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);}
.mb7_c00421{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);}
.m72_c00421{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);}
.m5c_c00421{transform:matrix(0.181364,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181364,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181364,-0.001995,0.002750,0.249985,0,0);}
.m30_c00421{transform:matrix(0.181425,-0.002721,0.003750,0.249972,0,0);-ms-transform:matrix(0.181425,-0.002721,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181425,-0.002721,0.003750,0.249972,0,0);}
.m80_c00421{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);}
.mc3_c00421{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);}
.mf0_c00421{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);}
.m7d_c00421{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);}
.m33_c00421{transform:matrix(0.182904,-0.002744,0.003750,0.249972,0,0);-ms-transform:matrix(0.182904,-0.002744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182904,-0.002744,0.003750,0.249972,0,0);}
.m97_c00421{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);}
.m112_c00421{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);}
.m9c_c00421{transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{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);}
.ma0_c00421{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);}
.m79_c00421{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);}
.mce_c00421{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);}
.m23_c00421{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);}
.mc5_c00421{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);}
.m32_c00421{transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);-ms-transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185759,-0.002786,0.003750,0.249972,0,0);}
.m4e_c00421{transform:matrix(0.185887,-0.001673,0.002250,0.249990,0,0);-ms-transform:matrix(0.185887,-0.001673,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185887,-0.001673,0.002250,0.249990,0,0);}
.m21_c00421{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);}
.mbe_c00421{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);}
.m76_c00421{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);}
.ma7_c00421{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);}
.m5a_c00421{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);}
.mc_c00421{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);}
.m19_c00421{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);}
.mb4_c00421{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);}
.mb_c00421{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);}
.m119_c00421{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);}
.mdb_c00421{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);}
.m138_c00421{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);}
.m91_c00421{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);}
.m4a_c00421{transform:matrix(0.189894,-0.002469,0.003250,0.249979,0,0);-ms-transform:matrix(0.189894,-0.002469,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189894,-0.002469,0.003250,0.249979,0,0);}
.m7e_c00421{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);}
.m131_c00421{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);}
.m86_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);}
.m3a_c00421{transform:matrix(0.190486,-0.002667,0.003500,0.249976,0,0);-ms-transform:matrix(0.190486,-0.002667,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190486,-0.002667,0.003500,0.249976,0,0);}
.m9_c00421{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);}
.mef_c00421{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);}
.m3f_c00421{transform:matrix(0.192146,-0.002690,0.003500,0.249976,0,0);-ms-transform:matrix(0.192146,-0.002690,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192146,-0.002690,0.003500,0.249976,0,0);}
.m2b_c00421{transform:matrix(0.192363,-0.002885,0.003750,0.249972,0,0);-ms-transform:matrix(0.192363,-0.002885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192363,-0.002885,0.003750,0.249972,0,0);}
.m55_c00421{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);}
.md3_c00421{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);}
.m103_c00421{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);}
.m101_c00421{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);}
.mcb_c00421{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);}
.m62_c00421{transform:matrix(0.193393,-0.002127,0.002750,0.249985,0,0);-ms-transform:matrix(0.193393,-0.002127,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193393,-0.002127,0.002750,0.249985,0,0);}
.m13_c00421{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);}
.m3c_c00421{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);}
.m6d_c00421{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);}
.m135_c00421{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);}
.ma9_c00421{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m129_c00421{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);}
.m90_c00421{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);}
.m14_c00421{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);}
.m123_c00421{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);}
.mb8_c00421{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);}
.m40_c00421{transform:matrix(0.195516,-0.002737,0.003500,0.249976,0,0);-ms-transform:matrix(0.195516,-0.002737,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195516,-0.002737,0.003500,0.249976,0,0);}
.m12a_c00421{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);}
.mb6_c00421{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);}
.m78_c00421{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);}
.m9e_c00421{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);}
.m65_c00421{transform:matrix(0.195893,-0.002155,0.002750,0.249985,0,0);-ms-transform:matrix(0.195893,-0.002155,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195893,-0.002155,0.002750,0.249985,0,0);}
.m92_c00421{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);}
.m35_c00421{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);}
.m10c_c00421{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);}
.m8e_c00421{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);}
.m29_c00421{transform:matrix(0.196573,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196573,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196573,-0.002949,0.003750,0.249972,0,0);}
.mc1_c00421{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);}
.m17_c00421{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);}
.m22_c00421{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);}
.m1b_c00421{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);}
.m99_c00421{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);}
.mf_c00421{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);}
.me0_c00421{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);}
.m58_c00421{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);}
.mbc_c00421{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);}
.m5d_c00421{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);}
.m28_c00421{transform:matrix(0.199678,-0.002995,0.003750,0.249972,0,0);-ms-transform:matrix(0.199678,-0.002995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199678,-0.002995,0.003750,0.249972,0,0);}
.mba_c00421{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);}
.mdd_c00421{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);}
.m2f_c00421{transform:matrix(0.200232,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200232,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200232,-0.003003,0.003750,0.249972,0,0);}
.m98_c00421{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);}
.mab_c00421{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);}
.m2e_c00421{transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);-ms-transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);}
.m7b_c00421{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);}
.m18_c00421{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);}
.m66_c00421{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);}
.m26_c00421{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);}
.mae_c00421{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);}
.mc0_c00421{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);}
.mec_c00421{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);}
.m48_c00421{transform:matrix(0.201978,-0.002626,0.003250,0.249979,0,0);-ms-transform:matrix(0.201978,-0.002626,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201978,-0.002626,0.003250,0.249979,0,0);}
.mb0_c00421{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);}
.me1_c00421{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);}
.m2c_c00421{transform:matrix(0.202477,-0.003037,0.003750,0.249972,0,0);-ms-transform:matrix(0.202477,-0.003037,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202477,-0.003037,0.003750,0.249972,0,0);}
.m85_c00421{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);}
.m117_c00421{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);}
.mde_c00421{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);}
.m95_c00421{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);}
.ma8_c00421{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);}
.mfa_c00421{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);}
.m75_c00421{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);}
.m57_c00421{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);}
.mb3_c00421{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);}
.m8d_c00421{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);}
.m9b_c00421{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);}
.mb5_c00421{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);}
.mff_c00421{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);}
.m6a_c00421{transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);}
.m4f_c00421{transform:matrix(0.207037,-0.001863,0.002250,0.249990,0,0);-ms-transform:matrix(0.207037,-0.001863,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207037,-0.001863,0.002250,0.249990,0,0);}
.md7_c00421{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);}
.m1a_c00421{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);}
.m10d_c00421{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);}
.m31_c00421{transform:matrix(0.208387,-0.003126,0.003750,0.249972,0,0);-ms-transform:matrix(0.208387,-0.003126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208387,-0.003126,0.003750,0.249972,0,0);}
.m84_c00421{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);}
.m139_c00421{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);}
.mc2_c00421{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m134_c00421{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);}
.m4c_c00421{transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);}
.m81_c00421{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);}
.m13b_c00421{transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.211067,-0.002322,0.002750,0.249985,0,0);-ms-transform:matrix(0.211067,-0.002322,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211067,-0.002322,0.002750,0.249985,0,0);}
.m43_c00421{transform:matrix(0.211397,-0.002748,0.003250,0.249979,0,0);-ms-transform:matrix(0.211397,-0.002748,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211397,-0.002748,0.003250,0.249979,0,0);}
.m69_c00421{transform:matrix(0.212077,-0.002333,0.002750,0.249985,0,0);-ms-transform:matrix(0.212077,-0.002333,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212077,-0.002333,0.002750,0.249985,0,0);}
.md9_c00421{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);}
.m24_c00421{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);}
.mf1_c00421{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);}
.ma4_c00421{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);}
.m12c_c00421{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);}
.mac_c00421{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);}
.m10_c00421{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);}
.mbb_c00421{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);}
.m11b_c00421{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);}
.m2_c00421{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);}
.mbf_c00421{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);}
.m127_c00421{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);}
.m0_c00421{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);}
.m3_c00421{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);}
.mea_c00421{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);}
.md4_c00421{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);}
.m122_c00421{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);}
.m45_c00421{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);}
.mf5_c00421{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);}
.mc6_c00421{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);}
.m39_c00421{transform:matrix(0.224373,-0.003141,0.003500,0.249976,0,0);-ms-transform:matrix(0.224373,-0.003141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224373,-0.003141,0.003500,0.249976,0,0);}
.m130_c00421{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);}
.m20_c00421{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);}
.m7c_c00421{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);}
.m7a_c00421{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);}
.m1c_c00421{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);}
.m126_c00421{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);}
.m8b_c00421{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);}
.me3_c00421{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);}
.m109_c00421{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);}
.me2_c00421{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);}
.m10b_c00421{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);}
.m15_c00421{transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);}
.mf7_c00421{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);}
.md8_c00421{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{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);}
.mda_c00421{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);}
.mfe_c00421{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);}
.m100_c00421{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);}
.m3b_c00421{transform:matrix(0.235117,-0.003292,0.003500,0.249976,0,0);-ms-transform:matrix(0.235117,-0.003292,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235117,-0.003292,0.003500,0.249976,0,0);}
.m137_c00421{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);}
.mb1_c00421{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);}
.mcc_c00421{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{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);}
.m107_c00421{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);}
.m93_c00421{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);}
.mc7_c00421{transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238790,0.000000,0.000000,0.250000,0,0);}
.m111_c00421{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);}
.m82_c00421{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);}
.mee_c00421{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);}
.m110_c00421{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);}
.m50_c00421{transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);-ms-transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242490,-0.002182,0.002250,0.249990,0,0);}
.m53_c00421{transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);-ms-transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);}
.md0_c00421{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{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);}
.me7_c00421{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);}
.m36_c00421{transform:matrix(0.246007,-0.003690,0.003750,0.249972,0,0);-ms-transform:matrix(0.246007,-0.003690,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246007,-0.003690,0.003750,0.249972,0,0);}
.m89_c00421{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);}
.mc8_c00421{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);}
.m87_c00421{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m11e_c00421{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.249490,-0.002744,0.002750,0.249985,0,0);-ms-transform:matrix(0.249490,-0.002744,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249490,-0.002744,0.002750,0.249985,0,0);}
.m1_c00421{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.meb_c00421{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.252097,-0.003781,0.003750,0.249972,0,0);-ms-transform:matrix(0.252097,-0.003781,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252097,-0.003781,0.003750,0.249972,0,0);}
.m6b_c00421{transform:matrix(0.253945,-0.002793,0.002750,0.249985,0,0);-ms-transform:matrix(0.253945,-0.002793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253945,-0.002793,0.002750,0.249985,0,0);}
.m68_c00421{transform:matrix(0.254665,-0.002801,0.002750,0.249985,0,0);-ms-transform:matrix(0.254665,-0.002801,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254665,-0.002801,0.002750,0.249985,0,0);}
.mdc_c00421{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);}
.m106_c00421{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);}
.m128_c00421{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);}
.m94_c00421{transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);}
.mf2_c00421{transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.267094,-0.003739,0.003500,0.249976,0,0);-ms-transform:matrix(0.267094,-0.003739,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267094,-0.003739,0.003500,0.249976,0,0);}
.m6c_c00421{transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.271269,-0.004069,0.003750,0.249972,0,0);-ms-transform:matrix(0.271269,-0.004069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271269,-0.004069,0.003750,0.249972,0,0);}
.m1d_c00421{transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274920,0.000000,0.000000,0.250000,0,0);}
.md1_c00421{transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.278569,-0.002507,0.002250,0.249990,0,0);-ms-transform:matrix(0.278569,-0.002507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278569,-0.002507,0.002250,0.249990,0,0);}
.mca_c00421{transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);}
.mf8_c00421{transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288485,0.000000,0.000000,0.250000,0,0);}
.mfd_c00421{transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);}
.m11f_c00421{transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295670,0.000000,0.000000,0.250000,0,0);}
.mf3_c00421{transform:matrix(0.297815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297815,0.000000,0.000000,0.250000,0,0);}
.mf6_c00421{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.307565,-0.004306,0.003500,0.249976,0,0);-ms-transform:matrix(0.307565,-0.004306,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307565,-0.004306,0.003500,0.249976,0,0);}
.me9_c00421{transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308135,0.000000,0.000000,0.250000,0,0);}
.m12b_c00421{transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);}
.md5_c00421{transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311730,0.000000,0.000000,0.250000,0,0);}
.m125_c00421{transform:matrix(0.315880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315880,0.000000,0.000000,0.250000,0,0);}
.m108_c00421{transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320460,0.000000,0.000000,0.250000,0,0);}
.m120_c00421{transform:matrix(0.324815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324815,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.329962,-0.002970,0.002250,0.249990,0,0);-ms-transform:matrix(0.329962,-0.002970,0.002250,0.249990,0,0);-webkit-transform:matrix(0.329962,-0.002970,0.002250,0.249990,0,0);}
.m41_c00421{transform:matrix(0.332212,-0.004651,0.003500,0.249976,0,0);-ms-transform:matrix(0.332212,-0.004651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.332212,-0.004651,0.003500,0.249976,0,0);}
.m1e_c00421{transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343110,0.000000,0.000000,0.250000,0,0);}
.ma6_c00421{transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);}
.mf4_c00421{transform:matrix(0.348730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348730,0.000000,0.000000,0.250000,0,0);}
.mc9_c00421{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);}
.m37_c00421{transform:matrix(0.351540,-0.005273,0.003750,0.249972,0,0);-ms-transform:matrix(0.351540,-0.005273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.351540,-0.005273,0.003750,0.249972,0,0);}
.ma5_c00421{transform:matrix(0.355455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355455,0.000000,0.000000,0.250000,0,0);}
.m12d_c00421{transform:matrix(0.375005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375005,0.000000,0.000000,0.250000,0,0);}
.m11d_c00421{transform:matrix(0.384415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384415,0.000000,0.000000,0.250000,0,0);}
.m10e_c00421{transform:matrix(0.432945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432945,0.000000,0.000000,0.250000,0,0);}
.m105_c00421{transform:matrix(0.509375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509375,0.000000,0.000000,0.250000,0,0);}
.me5_c00421{transform:matrix(0.630335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630335,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.973785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973785,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;}
.fs5_c00421{font-size:16.800000px;}
.fs1a_c00421{font-size:47.250000px;}
.fs16_c00421{font-size:48.300000px;}
.fs4_c00421{font-size:49.350000px;}
.fs15_c00421{font-size:50.400000px;}
.fs19_c00421{font-size:51.450000px;}
.fs3_c00421{font-size:52.500000px;}
.fs14_c00421{font-size:53.550000px;}
.fs2_c00421{font-size:54.600000px;}
.fs1_c00421{font-size:55.650000px;}
.fs1b_c00421{font-size:57.750000px;}
.fs0_c00421{font-size:64.050000px;}
.fs6_c00421{font-size:66.157441px;}
.fs8_c00421{font-size:67.206585px;}
.fs10_c00421{font-size:68.250000px;}
.fsd_c00421{font-size:68.254129px;}
.fsb_c00421{font-size:69.300000px;}
.fsa_c00421{font-size:69.302807px;}
.fsf_c00421{font-size:70.350000px;}
.fs12_c00421{font-size:71.400000px;}
.fs7_c00421{font-size:71.408032px;}
.fse_c00421{font-size:72.450000px;}
.fs9_c00421{font-size:72.456122px;}
.fs11_c00421{font-size:73.500000px;}
.fs13_c00421{font-size:77.700000px;}
.fsc_c00421{font-size:77.704701px;}
.fs18_c00421{font-size:78.750000px;}
.fs17_c00421{font-size:145.950000px;}
.y0_c00421{bottom:0.000000px;}
.y56_c00421{bottom:181.282500px;}
.y63_c00421{bottom:181.939500px;}
.y5e_c00421{bottom:200.221500px;}
.y7_c00421{bottom:202.689000px;}
.y62_c00421{bottom:217.936500px;}
.y55_c00421{bottom:221.626500px;}
.y6_c00421{bottom:228.150000px;}
.y61_c00421{bottom:235.894500px;}
.y54_c00421{bottom:240.840000px;}
.y60_c00421{bottom:253.501500px;}
.y5_c00421{bottom:260.124000px;}
.y5d_c00421{bottom:270.540000px;}
.y5f_c00421{bottom:270.924000px;}
.y4_c00421{bottom:279.180000px;}
.y5c_c00421{bottom:288.847500px;}
.y3_c00421{bottom:301.602000px;}
.y5b_c00421{bottom:306.844500px;}
.y2_c00421{bottom:320.901000px;}
.y5a_c00421{bottom:324.810000px;}
.y53_c00421{bottom:340.783500px;}
.y59_c00421{bottom:342.630000px;}
.y58_c00421{bottom:400.666500px;}
.y52_c00421{bottom:422.616000px;}
.y51_c00421{bottom:446.221500px;}
.y50_c00421{bottom:468.736500px;}
.y4f_c00421{bottom:491.550000px;}
.y4e_c00421{bottom:514.159500px;}
.y4d_c00421{bottom:536.919000px;}
.y4c_c00421{bottom:560.017500px;}
.y4b_c00421{bottom:582.750000px;}
.y4a_c00421{bottom:605.586000px;}
.y49_c00421{bottom:628.300500px;}
.y48_c00421{bottom:650.688000px;}
.y41_c00421{bottom:671.491500px;}
.y42_c00421{bottom:672.129852px;}
.y43_c00421{bottom:672.574940px;}
.y44_c00421{bottom:673.573288px;}
.y45_c00421{bottom:673.906555px;}
.y46_c00421{bottom:674.515274px;}
.y47_c00421{bottom:674.749986px;}
.y37_c00421{bottom:695.521500px;}
.y38_c00421{bottom:696.218757px;}
.y39_c00421{bottom:696.519272px;}
.y3a_c00421{bottom:696.905421px;}
.y3b_c00421{bottom:697.588603px;}
.y3c_c00421{bottom:698.019187px;}
.y3d_c00421{bottom:698.247927px;}
.y3e_c00421{bottom:698.631041px;}
.y3f_c00421{bottom:698.913306px;}
.y40_c00421{bottom:699.150889px;}
.y1_c00421{bottom:718.044000px;}
.y36_c00421{bottom:720.748500px;}
.y2c_c00421{bottom:740.881500px;}
.y2d_c00421{bottom:741.225979px;}
.y2e_c00421{bottom:741.563803px;}
.y2f_c00421{bottom:741.860358px;}
.y30_c00421{bottom:742.144695px;}
.y31_c00421{bottom:742.667077px;}
.y32_c00421{bottom:742.851811px;}
.y33_c00421{bottom:743.337811px;}
.y34_c00421{bottom:743.576046px;}
.y35_c00421{bottom:743.933323px;}
.y24_c00421{bottom:762.483000px;}
.y25_c00421{bottom:763.047428px;}
.y26_c00421{bottom:763.416816px;}
.y27_c00421{bottom:763.609340px;}
.y28_c00421{bottom:764.507139px;}
.y29_c00421{bottom:765.027263px;}
.y2a_c00421{bottom:765.553762px;}
.y2b_c00421{bottom:766.080496px;}
.y19_c00421{bottom:785.433000px;}
.y1a_c00421{bottom:785.791638px;}
.y1b_c00421{bottom:786.532707px;}
.y1c_c00421{bottom:787.204644px;}
.y1d_c00421{bottom:787.787604px;}
.y1e_c00421{bottom:788.308509px;}
.y1f_c00421{bottom:788.656227px;}
.y20_c00421{bottom:788.921709px;}
.y21_c00421{bottom:789.405507px;}
.y22_c00421{bottom:789.704253px;}
.y23_c00421{bottom:790.347000px;}
.y12_c00421{bottom:808.114500px;}
.y13_c00421{bottom:809.312805px;}
.y14_c00421{bottom:810.175365px;}
.y15_c00421{bottom:810.781943px;}
.y16_c00421{bottom:811.103018px;}
.y17_c00421{bottom:811.989990px;}
.y18_c00421{bottom:812.909475px;}
.y8_c00421{bottom:830.523000px;}
.y9_c00421{bottom:830.932005px;}
.ya_c00421{bottom:831.632700px;}
.yb_c00421{bottom:831.948983px;}
.yc_c00421{bottom:832.702372px;}
.yd_c00421{bottom:833.249122px;}
.ye_c00421{bottom:834.257528px;}
.yf_c00421{bottom:834.618180px;}
.y10_c00421{bottom:835.420058px;}
.y11_c00421{bottom:835.819995px;}
.y57_c00421{bottom:878.317500px;}
.h7_c00421{height:16.800000px;}
.h1c_c00421{height:47.250000px;}
.h18_c00421{height:48.300000px;}
.h6_c00421{height:49.350000px;}
.h17_c00421{height:50.400000px;}
.h1b_c00421{height:51.450000px;}
.h5_c00421{height:52.500000px;}
.h16_c00421{height:53.550000px;}
.h4_c00421{height:54.600000px;}
.h3_c00421{height:55.650000px;}
.h1d_c00421{height:57.750000px;}
.h2_c00421{height:64.050000px;}
.h8_c00421{height:66.157441px;}
.ha_c00421{height:67.206585px;}
.h12_c00421{height:68.250000px;}
.hf_c00421{height:68.254129px;}
.hd_c00421{height:69.300000px;}
.hc_c00421{height:69.302807px;}
.h11_c00421{height:70.350000px;}
.h14_c00421{height:71.400000px;}
.h9_c00421{height:71.408032px;}
.h10_c00421{height:72.450000px;}
.hb_c00421{height:72.456122px;}
.h13_c00421{height:73.500000px;}
.h15_c00421{height:77.700000px;}
.he_c00421{height:77.704701px;}
.h1a_c00421{height:78.750000px;}
.h19_c00421{height:145.950000px;}
.h0_c00421{height:1008.450000px;}
.h1_c00421{height:1008.750000px;}
.w1_c00421{width:689.250000px;}
.w0_c00421{width:689.550000px;}
.x0_c00421{left:0.000000px;}
.x4_c00421{left:156.060000px;}
.xa_c00421{left:157.950000px;}
.x8a_c00421{left:159.030000px;}
.xb_c00421{left:167.400000px;}
.xe_c00421{left:169.830000px;}
.x15_c00421{left:178.740000px;}
.x5d_c00421{left:185.760000px;}
.x2b_c00421{left:187.372500px;}
.x5_c00421{left:189.540000px;}
.x66_c00421{left:190.620000px;}
.x1_c00421{left:191.970000px;}
.x1d_c00421{left:193.860000px;}
.xc_c00421{left:194.940000px;}
.x16_c00421{left:204.930000px;}
.x51_c00421{left:212.490000px;}
.x59_c00421{left:213.570000px;}
.x67_c00421{left:215.730000px;}
.x23_c00421{left:216.744000px;}
.x7c_c00421{left:220.590000px;}
.x73_c00421{left:222.210000px;}
.x1e_c00421{left:223.830000px;}
.x57_c00421{left:225.180000px;}
.x3d_c00421{left:227.451000px;}
.x83_c00421{left:229.230000px;}
.x2_c00421{left:231.390000px;}
.x17_c00421{left:232.740000px;}
.xf_c00421{left:234.090000px;}
.x6_c00421{left:236.520000px;}
.x52_c00421{left:240.030000px;}
.x68_c00421{left:241.650000px;}
.x84_c00421{left:243.270000px;}
.x5a_c00421{left:245.430000px;}
.x1c_c00421{left:247.590000px;}
.x18_c00421{left:250.560000px;}
.x1f_c00421{left:251.910000px;}
.x10_c00421{left:254.340000px;}
.x87_c00421{left:258.120000px;}
.x6e_c00421{left:262.170000px;}
.x24_c00421{left:263.457000px;}
.x3e_c00421{left:264.987000px;}
.x76_c00421{left:266.490000px;}
.x3_c00421{left:267.570000px;}
.x31_c00421{left:270.481500px;}
.x85_c00421{left:274.320000px;}
.x20_c00421{left:276.480000px;}
.x74_c00421{left:277.830000px;}
.x38_c00421{left:278.847000px;}
.x48_c00421{left:281.214000px;}
.xd_c00421{left:284.040000px;}
.x11_c00421{left:291.870000px;}
.x69_c00421{left:294.840000px;}
.x58_c00421{left:296.190000px;}
.x3f_c00421{left:297.937500px;}
.x19_c00421{left:301.050000px;}
.x86_c00421{left:302.670000px;}
.x12_c00421{left:304.560000px;}
.x7_c00421{left:311.040000px;}
.x5e_c00421{left:313.740000px;}
.x1a_c00421{left:315.630000px;}
.x32_c00421{left:318.477000px;}
.x6a_c00421{left:319.950000px;}
.x7d_c00421{left:322.920000px;}
.x2c_c00421{left:324.763500px;}
.x44_c00421{left:327.240000px;}
.x40_c00421{left:329.530500px;}
.x53_c00421{left:333.180000px;}
.x25_c00421{left:334.768500px;}
.x21_c00421{left:336.150000px;}
.x71_c00421{left:339.390000px;}
.x88_c00421{left:340.470000px;}
.x77_c00421{left:342.900000px;}
.x8_c00421{left:343.980000px;}
.x1b_c00421{left:345.060000px;}
.x39_c00421{left:347.908500px;}
.x13_c00421{left:349.920000px;}
.x5b_c00421{left:353.700000px;}
.x75_c00421{left:356.940000px;}
.x9_c00421{left:359.640000px;}
.x89_c00421{left:362.610000px;}
.x2d_c00421{left:365.202000px;}
.x14_c00421{left:366.930000px;}
.x22_c00421{left:370.170000px;}
.x26_c00421{left:371.218500px;}
.x7e_c00421{left:373.140000px;}
.x54_c00421{left:375.300000px;}
.x49_c00421{left:378.426000px;}
.x4e_c00421{left:381.906000px;}
.x45_c00421{left:385.290000px;}
.x2e_c00421{left:386.607000px;}
.x3a_c00421{left:387.918000px;}
.x82_c00421{left:390.150000px;}
.x78_c00421{left:393.120000px;}
.x5f_c00421{left:395.280000px;}
.x33_c00421{left:397.324500px;}
.xae_c00421{left:399.870000px;}
.x6b_c00421{left:402.030000px;}
.x55_c00421{left:405.270000px;}
.x8e_c00421{left:406.620000px;}
.x41_c00421{left:408.099000px;}
.x8b_c00421{left:409.320000px;}
.x4f_c00421{left:412.203000px;}
.x6f_c00421{left:413.910000px;}
.x79_c00421{left:416.340000px;}
.x4a_c00421{left:417.570000px;}
.x60_c00421{left:419.310000px;}
.x34_c00421{left:422.161500px;}
.x9a_c00421{left:425.520000px;}
.xb1_c00421{left:427.140000px;}
.x3b_c00421{left:428.418000px;}
.x8f_c00421{left:430.110000px;}
.x56_c00421{left:433.890000px;}
.x27_c00421{left:438.445500px;}
.x35_c00421{left:441.124500px;}
.x6c_c00421{left:443.340000px;}
.x2f_c00421{left:445.738500px;}
.x7a_c00421{left:447.660000px;}
.xa8_c00421{left:451.710000px;}
.xa1_c00421{left:453.600000px;}
.x63_c00421{left:454.680000px;}
.x5c_c00421{left:456.300000px;}
.x72_c00421{left:457.380000px;}
.x28_c00421{left:462.489000px;}
.x46_c00421{left:463.590000px;}
.xa0_c00421{left:465.210000px;}
.x50_c00421{left:467.541000px;}
.x3c_c00421{left:468.936000px;}
.x6d_c00421{left:471.150000px;}
.x4b_c00421{left:473.193000px;}
.x36_c00421{left:475.681500px;}
.x97_c00421{left:480.060000px;}
.x7f_c00421{left:486.270000px;}
.x42_c00421{left:488.569500px;}
.xa2_c00421{left:490.050000px;}
.x90_c00421{left:493.290000px;}
.x70_c00421{left:494.640000px;}
.x37_c00421{left:497.020500px;}
.x4c_c00421{left:498.853500px;}
.x9b_c00421{left:500.850000px;}
.x47_c00421{left:501.930000px;}
.x61_c00421{left:503.550000px;}
.x80_c00421{left:505.440000px;}
.x30_c00421{left:507.037500px;}
.x64_c00421{left:511.380000px;}
.xa3_c00421{left:514.890000px;}
.x29_c00421{left:515.947500px;}
.x91_c00421{left:517.590000px;}
.x4d_c00421{left:520.452000px;}
.x98_c00421{left:523.260000px;}
.x43_c00421{left:528.267000px;}
.x62_c00421{left:533.250000px;}
.x7b_c00421{left:534.330000px;}
.xa6_c00421{left:536.490000px;}
.x2a_c00421{left:542.610000px;}
.xa4_c00421{left:545.130000px;}
.x9c_c00421{left:546.210000px;}
.xaf_c00421{left:549.720000px;}
.xa9_c00421{left:554.310000px;}
.x99_c00421{left:558.900000px;}
.xb2_c00421{left:566.460000px;}
.xb4_c00421{left:568.620000px;}
.x9d_c00421{left:572.670000px;}
.xaa_c00421{left:574.560000px;}
.x65_c00421{left:577.530000px;}
.xa5_c00421{left:582.390000px;}
.x92_c00421{left:585.360000px;}
.xb5_c00421{left:586.980000px;}
.x81_c00421{left:589.410000px;}
.xab_c00421{left:590.760000px;}
.x9e_c00421{left:592.380000px;}
.x8c_c00421{left:599.670000px;}
.xb0_c00421{left:602.370000px;}
.x93_c00421{left:603.990000px;}
.xa7_c00421{left:611.010000px;}
.xac_c00421{left:614.250000px;}
.x94_c00421{left:620.190000px;}
.x9f_c00421{left:626.940000px;}
.x95_c00421{left:639.360000px;}
.xb3_c00421{left:642.060000px;}
.xad_c00421{left:649.080000px;}
.x8d_c00421{left:653.130000px;}
.xb6_c00421{left:654.210000px;}
.x96_c00421{left:664.740000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.fs5_c00421{font-size:14.933333pt;}
.fs1a_c00421{font-size:42.000000pt;}
.fs16_c00421{font-size:42.933333pt;}
.fs4_c00421{font-size:43.866667pt;}
.fs15_c00421{font-size:44.800000pt;}
.fs19_c00421{font-size:45.733333pt;}
.fs3_c00421{font-size:46.666667pt;}
.fs14_c00421{font-size:47.600000pt;}
.fs2_c00421{font-size:48.533333pt;}
.fs1_c00421{font-size:49.466667pt;}
.fs1b_c00421{font-size:51.333333pt;}
.fs0_c00421{font-size:56.933333pt;}
.fs6_c00421{font-size:58.806615pt;}
.fs8_c00421{font-size:59.739187pt;}
.fs10_c00421{font-size:60.666667pt;}
.fsd_c00421{font-size:60.670337pt;}
.fsb_c00421{font-size:61.600000pt;}
.fsa_c00421{font-size:61.602495pt;}
.fsf_c00421{font-size:62.533333pt;}
.fs12_c00421{font-size:63.466667pt;}
.fs7_c00421{font-size:63.473806pt;}
.fse_c00421{font-size:64.400000pt;}
.fs9_c00421{font-size:64.405442pt;}
.fs11_c00421{font-size:65.333333pt;}
.fs13_c00421{font-size:69.066667pt;}
.fsc_c00421{font-size:69.070845pt;}
.fs18_c00421{font-size:70.000000pt;}
.fs17_c00421{font-size:129.733333pt;}
.y0_c00421{bottom:0.000000pt;}
.y56_c00421{bottom:161.140000pt;}
.y63_c00421{bottom:161.724000pt;}
.y5e_c00421{bottom:177.974667pt;}
.y7_c00421{bottom:180.168000pt;}
.y62_c00421{bottom:193.721333pt;}
.y55_c00421{bottom:197.001333pt;}
.y6_c00421{bottom:202.800000pt;}
.y61_c00421{bottom:209.684000pt;}
.y54_c00421{bottom:214.080000pt;}
.y60_c00421{bottom:225.334667pt;}
.y5_c00421{bottom:231.221333pt;}
.y5d_c00421{bottom:240.480000pt;}
.y5f_c00421{bottom:240.821333pt;}
.y4_c00421{bottom:248.160000pt;}
.y5c_c00421{bottom:256.753333pt;}
.y3_c00421{bottom:268.090667pt;}
.y5b_c00421{bottom:272.750667pt;}
.y2_c00421{bottom:285.245333pt;}
.y5a_c00421{bottom:288.720000pt;}
.y53_c00421{bottom:302.918667pt;}
.y59_c00421{bottom:304.560000pt;}
.y58_c00421{bottom:356.148000pt;}
.y52_c00421{bottom:375.658667pt;}
.y51_c00421{bottom:396.641333pt;}
.y50_c00421{bottom:416.654667pt;}
.y4f_c00421{bottom:436.933333pt;}
.y4e_c00421{bottom:457.030667pt;}
.y4d_c00421{bottom:477.261333pt;}
.y4c_c00421{bottom:497.793333pt;}
.y4b_c00421{bottom:518.000000pt;}
.y4a_c00421{bottom:538.298667pt;}
.y49_c00421{bottom:558.489333pt;}
.y48_c00421{bottom:578.389333pt;}
.y41_c00421{bottom:596.881333pt;}
.y42_c00421{bottom:597.448757pt;}
.y43_c00421{bottom:597.844391pt;}
.y44_c00421{bottom:598.731812pt;}
.y45_c00421{bottom:599.028049pt;}
.y46_c00421{bottom:599.569132pt;}
.y47_c00421{bottom:599.777765pt;}
.y37_c00421{bottom:618.241333pt;}
.y38_c00421{bottom:618.861117pt;}
.y39_c00421{bottom:619.128241pt;}
.y3a_c00421{bottom:619.471485pt;}
.y3b_c00421{bottom:620.078759pt;}
.y3c_c00421{bottom:620.461500pt;}
.y3d_c00421{bottom:620.664824pt;}
.y3e_c00421{bottom:621.005369pt;}
.y3f_c00421{bottom:621.256272pt;}
.y40_c00421{bottom:621.467457pt;}
.y1_c00421{bottom:638.261333pt;}
.y36_c00421{bottom:640.665333pt;}
.y2c_c00421{bottom:658.561333pt;}
.y2d_c00421{bottom:658.867537pt;}
.y2e_c00421{bottom:659.167825pt;}
.y2f_c00421{bottom:659.431429pt;}
.y30_c00421{bottom:659.684173pt;}
.y31_c00421{bottom:660.148513pt;}
.y32_c00421{bottom:660.312721pt;}
.y33_c00421{bottom:660.744721pt;}
.y34_c00421{bottom:660.956485pt;}
.y35_c00421{bottom:661.274065pt;}
.y24_c00421{bottom:677.762667pt;}
.y25_c00421{bottom:678.264380pt;}
.y26_c00421{bottom:678.592725pt;}
.y27_c00421{bottom:678.763857pt;}
.y28_c00421{bottom:679.561901pt;}
.y29_c00421{bottom:680.024233pt;}
.y2a_c00421{bottom:680.492233pt;}
.y2b_c00421{bottom:680.960441pt;}
.y19_c00421{bottom:698.162667pt;}
.y1a_c00421{bottom:698.481456pt;}
.y1b_c00421{bottom:699.140184pt;}
.y1c_c00421{bottom:699.737461pt;}
.y1d_c00421{bottom:700.255648pt;}
.y1e_c00421{bottom:700.718675pt;}
.y1f_c00421{bottom:701.027757pt;}
.y20_c00421{bottom:701.263741pt;}
.y21_c00421{bottom:701.693784pt;}
.y22_c00421{bottom:701.959336pt;}
.y23_c00421{bottom:702.530667pt;}
.y12_c00421{bottom:718.324000pt;}
.y13_c00421{bottom:719.389160pt;}
.y14_c00421{bottom:720.155880pt;}
.y15_c00421{bottom:720.695060pt;}
.y16_c00421{bottom:720.980460pt;}
.y17_c00421{bottom:721.768880pt;}
.y18_c00421{bottom:722.586200pt;}
.y8_c00421{bottom:738.242667pt;}
.y9_c00421{bottom:738.606227pt;}
.ya_c00421{bottom:739.229067pt;}
.yb_c00421{bottom:739.510207pt;}
.yc_c00421{bottom:740.179887pt;}
.yd_c00421{bottom:740.665887pt;}
.ye_c00421{bottom:741.562247pt;}
.yf_c00421{bottom:741.882827pt;}
.y10_c00421{bottom:742.595607pt;}
.y11_c00421{bottom:742.951107pt;}
.y57_c00421{bottom:780.726667pt;}
.h7_c00421{height:14.933333pt;}
.h1c_c00421{height:42.000000pt;}
.h18_c00421{height:42.933333pt;}
.h6_c00421{height:43.866667pt;}
.h17_c00421{height:44.800000pt;}
.h1b_c00421{height:45.733333pt;}
.h5_c00421{height:46.666667pt;}
.h16_c00421{height:47.600000pt;}
.h4_c00421{height:48.533333pt;}
.h3_c00421{height:49.466667pt;}
.h1d_c00421{height:51.333333pt;}
.h2_c00421{height:56.933333pt;}
.h8_c00421{height:58.806615pt;}
.ha_c00421{height:59.739187pt;}
.h12_c00421{height:60.666667pt;}
.hf_c00421{height:60.670337pt;}
.hd_c00421{height:61.600000pt;}
.hc_c00421{height:61.602495pt;}
.h11_c00421{height:62.533333pt;}
.h14_c00421{height:63.466667pt;}
.h9_c00421{height:63.473806pt;}
.h10_c00421{height:64.400000pt;}
.hb_c00421{height:64.405442pt;}
.h13_c00421{height:65.333333pt;}
.h15_c00421{height:69.066667pt;}
.he_c00421{height:69.070845pt;}
.h1a_c00421{height:70.000000pt;}
.h19_c00421{height:129.733333pt;}
.h0_c00421{height:896.400000pt;}
.h1_c00421{height:896.666667pt;}
.w1_c00421{width:612.666667pt;}
.w0_c00421{width:612.933333pt;}
.x0_c00421{left:0.000000pt;}
.x4_c00421{left:138.720000pt;}
.xa_c00421{left:140.400000pt;}
.x8a_c00421{left:141.360000pt;}
.xb_c00421{left:148.800000pt;}
.xe_c00421{left:150.960000pt;}
.x15_c00421{left:158.880000pt;}
.x5d_c00421{left:165.120000pt;}
.x2b_c00421{left:166.553333pt;}
.x5_c00421{left:168.480000pt;}
.x66_c00421{left:169.440000pt;}
.x1_c00421{left:170.640000pt;}
.x1d_c00421{left:172.320000pt;}
.xc_c00421{left:173.280000pt;}
.x16_c00421{left:182.160000pt;}
.x51_c00421{left:188.880000pt;}
.x59_c00421{left:189.840000pt;}
.x67_c00421{left:191.760000pt;}
.x23_c00421{left:192.661333pt;}
.x7c_c00421{left:196.080000pt;}
.x73_c00421{left:197.520000pt;}
.x1e_c00421{left:198.960000pt;}
.x57_c00421{left:200.160000pt;}
.x3d_c00421{left:202.178667pt;}
.x83_c00421{left:203.760000pt;}
.x2_c00421{left:205.680000pt;}
.x17_c00421{left:206.880000pt;}
.xf_c00421{left:208.080000pt;}
.x6_c00421{left:210.240000pt;}
.x52_c00421{left:213.360000pt;}
.x68_c00421{left:214.800000pt;}
.x84_c00421{left:216.240000pt;}
.x5a_c00421{left:218.160000pt;}
.x1c_c00421{left:220.080000pt;}
.x18_c00421{left:222.720000pt;}
.x1f_c00421{left:223.920000pt;}
.x10_c00421{left:226.080000pt;}
.x87_c00421{left:229.440000pt;}
.x6e_c00421{left:233.040000pt;}
.x24_c00421{left:234.184000pt;}
.x3e_c00421{left:235.544000pt;}
.x76_c00421{left:236.880000pt;}
.x3_c00421{left:237.840000pt;}
.x31_c00421{left:240.428000pt;}
.x85_c00421{left:243.840000pt;}
.x20_c00421{left:245.760000pt;}
.x74_c00421{left:246.960000pt;}
.x38_c00421{left:247.864000pt;}
.x48_c00421{left:249.968000pt;}
.xd_c00421{left:252.480000pt;}
.x11_c00421{left:259.440000pt;}
.x69_c00421{left:262.080000pt;}
.x58_c00421{left:263.280000pt;}
.x3f_c00421{left:264.833333pt;}
.x19_c00421{left:267.600000pt;}
.x86_c00421{left:269.040000pt;}
.x12_c00421{left:270.720000pt;}
.x7_c00421{left:276.480000pt;}
.x5e_c00421{left:278.880000pt;}
.x1a_c00421{left:280.560000pt;}
.x32_c00421{left:283.090667pt;}
.x6a_c00421{left:284.400000pt;}
.x7d_c00421{left:287.040000pt;}
.x2c_c00421{left:288.678667pt;}
.x44_c00421{left:290.880000pt;}
.x40_c00421{left:292.916000pt;}
.x53_c00421{left:296.160000pt;}
.x25_c00421{left:297.572000pt;}
.x21_c00421{left:298.800000pt;}
.x71_c00421{left:301.680000pt;}
.x88_c00421{left:302.640000pt;}
.x77_c00421{left:304.800000pt;}
.x8_c00421{left:305.760000pt;}
.x1b_c00421{left:306.720000pt;}
.x39_c00421{left:309.252000pt;}
.x13_c00421{left:311.040000pt;}
.x5b_c00421{left:314.400000pt;}
.x75_c00421{left:317.280000pt;}
.x9_c00421{left:319.680000pt;}
.x89_c00421{left:322.320000pt;}
.x2d_c00421{left:324.624000pt;}
.x14_c00421{left:326.160000pt;}
.x22_c00421{left:329.040000pt;}
.x26_c00421{left:329.972000pt;}
.x7e_c00421{left:331.680000pt;}
.x54_c00421{left:333.600000pt;}
.x49_c00421{left:336.378667pt;}
.x4e_c00421{left:339.472000pt;}
.x45_c00421{left:342.480000pt;}
.x2e_c00421{left:343.650667pt;}
.x3a_c00421{left:344.816000pt;}
.x82_c00421{left:346.800000pt;}
.x78_c00421{left:349.440000pt;}
.x5f_c00421{left:351.360000pt;}
.x33_c00421{left:353.177333pt;}
.xae_c00421{left:355.440000pt;}
.x6b_c00421{left:357.360000pt;}
.x55_c00421{left:360.240000pt;}
.x8e_c00421{left:361.440000pt;}
.x41_c00421{left:362.754667pt;}
.x8b_c00421{left:363.840000pt;}
.x4f_c00421{left:366.402667pt;}
.x6f_c00421{left:367.920000pt;}
.x79_c00421{left:370.080000pt;}
.x4a_c00421{left:371.173333pt;}
.x60_c00421{left:372.720000pt;}
.x34_c00421{left:375.254667pt;}
.x9a_c00421{left:378.240000pt;}
.xb1_c00421{left:379.680000pt;}
.x3b_c00421{left:380.816000pt;}
.x8f_c00421{left:382.320000pt;}
.x56_c00421{left:385.680000pt;}
.x27_c00421{left:389.729333pt;}
.x35_c00421{left:392.110667pt;}
.x6c_c00421{left:394.080000pt;}
.x2f_c00421{left:396.212000pt;}
.x7a_c00421{left:397.920000pt;}
.xa8_c00421{left:401.520000pt;}
.xa1_c00421{left:403.200000pt;}
.x63_c00421{left:404.160000pt;}
.x5c_c00421{left:405.600000pt;}
.x72_c00421{left:406.560000pt;}
.x28_c00421{left:411.101333pt;}
.x46_c00421{left:412.080000pt;}
.xa0_c00421{left:413.520000pt;}
.x50_c00421{left:415.592000pt;}
.x3c_c00421{left:416.832000pt;}
.x6d_c00421{left:418.800000pt;}
.x4b_c00421{left:420.616000pt;}
.x36_c00421{left:422.828000pt;}
.x97_c00421{left:426.720000pt;}
.x7f_c00421{left:432.240000pt;}
.x42_c00421{left:434.284000pt;}
.xa2_c00421{left:435.600000pt;}
.x90_c00421{left:438.480000pt;}
.x70_c00421{left:439.680000pt;}
.x37_c00421{left:441.796000pt;}
.x4c_c00421{left:443.425333pt;}
.x9b_c00421{left:445.200000pt;}
.x47_c00421{left:446.160000pt;}
.x61_c00421{left:447.600000pt;}
.x80_c00421{left:449.280000pt;}
.x30_c00421{left:450.700000pt;}
.x64_c00421{left:454.560000pt;}
.xa3_c00421{left:457.680000pt;}
.x29_c00421{left:458.620000pt;}
.x91_c00421{left:460.080000pt;}
.x4d_c00421{left:462.624000pt;}
.x98_c00421{left:465.120000pt;}
.x43_c00421{left:469.570667pt;}
.x62_c00421{left:474.000000pt;}
.x7b_c00421{left:474.960000pt;}
.xa6_c00421{left:476.880000pt;}
.x2a_c00421{left:482.320000pt;}
.xa4_c00421{left:484.560000pt;}
.x9c_c00421{left:485.520000pt;}
.xaf_c00421{left:488.640000pt;}
.xa9_c00421{left:492.720000pt;}
.x99_c00421{left:496.800000pt;}
.xb2_c00421{left:503.520000pt;}
.xb4_c00421{left:505.440000pt;}
.x9d_c00421{left:509.040000pt;}
.xaa_c00421{left:510.720000pt;}
.x65_c00421{left:513.360000pt;}
.xa5_c00421{left:517.680000pt;}
.x92_c00421{left:520.320000pt;}
.xb5_c00421{left:521.760000pt;}
.x81_c00421{left:523.920000pt;}
.xab_c00421{left:525.120000pt;}
.x9e_c00421{left:526.560000pt;}
.x8c_c00421{left:533.040000pt;}
.xb0_c00421{left:535.440000pt;}
.x93_c00421{left:536.880000pt;}
.xa7_c00421{left:543.120000pt;}
.xac_c00421{left:546.000000pt;}
.x94_c00421{left:551.280000pt;}
.x9f_c00421{left:557.280000pt;}
.x95_c00421{left:568.320000pt;}
.xb3_c00421{left:570.720000pt;}
.xad_c00421{left:576.960000pt;}
.x8d_c00421{left:580.560000pt;}
.xb6_c00421{left:581.520000pt;}
.x96_c00421{left:590.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m4a_c00422{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);}
.m101_c00422{transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);}
.me4_c00422{transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);}
.mfa_c00422{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.037490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037490,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.037878,0.000379,-0.002500,0.249988,0,0);-ms-transform:matrix(0.037878,0.000379,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.037878,0.000379,-0.002500,0.249988,0,0);}
.m48_c00422{transform:matrix(0.060705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060705,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.082830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082830,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);}
.mf3_c00422{transform:matrix(0.098530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098530,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140740,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.144655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144655,0.000000,0.000000,0.250000,0,0);}
.m3f_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);}
.m26_c00422{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);}
.ma0_c00422{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{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);}
.mdb_c00422{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);}
.mfe_c00422{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);}
.m12_c00422{transform:matrix(0.155880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155880,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.160027,0.001600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160027,0.001600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160027,0.001600,-0.002500,0.249988,0,0);}
.m98_c00422{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);}
.mc7_c00422{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);}
.m39_c00422{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);}
.m5e_c00422{transform:matrix(0.164482,0.001645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164482,0.001645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164482,0.001645,-0.002500,0.249988,0,0);}
.mc2_c00422{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{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);}
.m49_c00422{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);}
.ma6_c00422{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);}
.m2e_c00422{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);}
.mb_c00422{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);}
.m120_c00422{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);}
.mdd_c00422{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);}
.m9c_c00422{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);}
.mde_c00422{transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169315,0.000000,0.000000,0.250000,0,0);}
.mbc_c00422{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{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);}
.mf1_c00422{transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172090,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{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);}
.m3a_c00422{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.mbf_c00422{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);}
.m87_c00422{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);}
.me0_c00422{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);}
.m5_c00422{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);}
.mb7_c00422{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);}
.m90_c00422{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);}
.m6d_c00422{transform:matrix(0.173926,0.001739,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173926,0.001739,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173926,0.001739,-0.002500,0.249988,0,0);}
.m70_c00422{transform:matrix(0.174056,0.001741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174056,0.001741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174056,0.001741,-0.002500,0.249988,0,0);}
.m88_c00422{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);}
.m124_c00422{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);}
.me_c00422{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);}
.m9d_c00422{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);}
.m76_c00422{transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176536,0.001765,-0.002500,0.249988,0,0);}
.m9e_c00422{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);}
.m51_c00422{transform:matrix(0.177081,0.001771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177081,0.001771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177081,0.001771,-0.002500,0.249988,0,0);}
.m71_c00422{transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);}
.m114_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);}
.mcb_c00422{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);}
.mbe_c00422{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);}
.mdc_c00422{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);}
.m74_c00422{transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);}
.m10_c00422{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);}
.mab_c00422{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);}
.m10e_c00422{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);}
.mae_c00422{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);}
.mcf_c00422{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);}
.m112_c00422{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);}
.mf9_c00422{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);}
.mf2_c00422{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);}
.m18_c00422{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);}
.m91_c00422{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);}
.m8d_c00422{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);}
.m86_c00422{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);}
.m6f_c00422{transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181491,0.001815,-0.002500,0.249988,0,0);}
.m66_c00422{transform:matrix(0.182561,0.001826,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182561,0.001826,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182561,0.001826,-0.002500,0.249988,0,0);}
.m24_c00422{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);}
.md4_c00422{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);}
.m97_c00422{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);}
.ma1_c00422{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);}
.m6e_c00422{transform:matrix(0.184296,0.001843,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184296,0.001843,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184296,0.001843,-0.002500,0.249988,0,0);}
.m11_c00422{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);}
.m73_c00422{transform:matrix(0.184551,0.001846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184551,0.001846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184551,0.001846,-0.002500,0.249988,0,0);}
.m5f_c00422{transform:matrix(0.184621,0.001846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184621,0.001846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184621,0.001846,-0.002500,0.249988,0,0);}
.m2a_c00422{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);}
.ma3_c00422{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);}
.md0_c00422{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);}
.m6c_c00422{transform:matrix(0.186456,0.001865,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186456,0.001865,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186456,0.001865,-0.002500,0.249988,0,0);}
.m1b_c00422{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);}
.m61_c00422{transform:matrix(0.186591,0.001866,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186591,0.001866,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186591,0.001866,-0.002500,0.249988,0,0);}
.m8f_c00422{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);}
.m3b_c00422{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);}
.m77_c00422{transform:matrix(0.187661,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187661,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187661,0.001877,-0.002500,0.249988,0,0);}
.m8a_c00422{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);}
.m9b_c00422{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);}
.mda_c00422{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);}
.mfb_c00422{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);}
.mec_c00422{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);}
.m115_c00422{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);}
.md9_c00422{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);}
.m33_c00422{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);}
.ma8_c00422{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);}
.m92_c00422{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);}
.mb4_c00422{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);}
.m5c_c00422{transform:matrix(0.190675,0.001907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190675,0.001907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190675,0.001907,-0.002500,0.249988,0,0);}
.m37_c00422{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);}
.m111_c00422{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);}
.mba_c00422{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);}
.m27_c00422{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);}
.m2c_c00422{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);}
.m40_c00422{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);}
.mc8_c00422{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);}
.m25_c00422{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);}
.m11e_c00422{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);}
.m9a_c00422{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);}
.mf4_c00422{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);}
.m9f_c00422{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);}
.m78_c00422{transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);}
.meb_c00422{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);}
.m5d_c00422{transform:matrix(0.194805,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194805,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194805,0.001948,-0.002500,0.249988,0,0);}
.ma4_c00422{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);}
.mca_c00422{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);}
.mcc_c00422{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);}
.mb1_c00422{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);}
.mad_c00422{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);}
.m6a_c00422{transform:matrix(0.196710,0.001967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196710,0.001967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196710,0.001967,-0.002500,0.249988,0,0);}
.m59_c00422{transform:matrix(0.197475,0.001975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197475,0.001975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197475,0.001975,-0.002500,0.249988,0,0);}
.mc9_c00422{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);}
.m84_c00422{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);}
.m7c_c00422{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.199235,0.001992,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199235,0.001992,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199235,0.001992,-0.002500,0.249988,0,0);}
.m4_c00422{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);}
.m80_c00422{transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{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);}
.m69_c00422{transform:matrix(0.200000,0.002000,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200000,0.002000,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200000,0.002000,-0.002500,0.249988,0,0);}
.m60_c00422{transform:matrix(0.200190,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200190,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200190,0.002002,-0.002500,0.249988,0,0);}
.me1_c00422{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);}
.m123_c00422{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);}
.me9_c00422{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);}
.m50_c00422{transform:matrix(0.200585,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200585,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200585,0.002006,-0.002500,0.249988,0,0);}
.m8b_c00422{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);}
.mc5_c00422{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);}
.mc3_c00422{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);}
.mf5_c00422{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);}
.maa_c00422{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);}
.m23_c00422{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);}
.m38_c00422{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{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);}
.m19_c00422{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);}
.m8_c00422{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);}
.m122_c00422{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);}
.m16_c00422{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);}
.mef_c00422{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);}
.m1e_c00422{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);}
.m95_c00422{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);}
.m56_c00422{transform:matrix(0.208410,0.002084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208410,0.002084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208410,0.002084,-0.002500,0.249988,0,0);}
.md6_c00422{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);}
.mc_c00422{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);}
.m7_c00422{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);}
.m118_c00422{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);}
.maf_c00422{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);}
.m15_c00422{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);}
.mc6_c00422{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);}
.mb9_c00422{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);}
.m79_c00422{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);}
.me6_c00422{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);}
.mbd_c00422{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);}
.m14_c00422{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);}
.m11c_c00422{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);}
.m30_c00422{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);}
.mc4_c00422{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);}
.m55_c00422{transform:matrix(0.214864,0.002149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214864,0.002149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214864,0.002149,-0.002500,0.249988,0,0);}
.ma2_c00422{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);}
.mb6_c00422{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);}
.m8c_c00422{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);}
.m11f_c00422{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);}
.mcd_c00422{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);}
.mbb_c00422{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);}
.m3e_c00422{transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);}
.mc1_c00422{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);}
.mf8_c00422{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);}
.m1c_c00422{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);}
.m8e_c00422{transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{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);}
.m75_c00422{transform:matrix(0.220664,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220664,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220664,0.002207,-0.002500,0.249988,0,0);}
.md5_c00422{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);}
.m62_c00422{transform:matrix(0.221319,0.002213,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221319,0.002213,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221319,0.002213,-0.002500,0.249988,0,0);}
.mac_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);}
.md8_c00422{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);}
.m119_c00422{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);}
.m36_c00422{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);}
.m94_c00422{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);}
.mb0_c00422{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);}
.mf_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);}
.m29_c00422{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);}
.m83_c00422{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);}
.m7f_c00422{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);}
.m5a_c00422{transform:matrix(0.226254,0.002263,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226254,0.002263,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226254,0.002263,-0.002500,0.249988,0,0);}
.m96_c00422{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);}
.me7_c00422{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);}
.mea_c00422{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);}
.me3_c00422{transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{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);}
.m103_c00422{transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229651,0.002985,-0.003250,0.249979,0,0);}
.m7a_c00422{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);}
.mdf_c00422{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);}
.m34_c00422{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);}
.m11a_c00422{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);}
.mb2_c00422{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);}
.me5_c00422{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);}
.m58_c00422{transform:matrix(0.232478,0.002325,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232478,0.002325,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232478,0.002325,-0.002500,0.249988,0,0);}
.m10d_c00422{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);}
.m1f_c00422{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);}
.m2b_c00422{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);}
.m72_c00422{transform:matrix(0.233528,0.002335,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233528,0.002335,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233528,0.002335,-0.002500,0.249988,0,0);}
.m3d_c00422{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);}
.m67_c00422{transform:matrix(0.234008,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234008,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234008,0.002340,-0.002500,0.249988,0,0);}
.m5b_c00422{transform:matrix(0.234833,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234833,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234833,0.002348,-0.002500,0.249988,0,0);}
.mc0_c00422{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{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);}
.m1a_c00422{transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);}
.m117_c00422{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);}
.md3_c00422{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);}
.m85_c00422{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{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);}
.m82_c00422{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);}
.m4e_c00422{transform:matrix(0.239163,0.002392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239163,0.002392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239163,0.002392,-0.002500,0.249988,0,0);}
.m9_c00422{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.240763,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240763,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240763,0.002408,-0.002500,0.249988,0,0);}
.md1_c00422{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.mee_c00422{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);}
.mce_c00422{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);}
.mb3_c00422{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.243323,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243323,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243323,0.002433,-0.002500,0.249988,0,0);}
.m10f_c00422{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);}
.m125_c00422{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{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);}
.m4f_c00422{transform:matrix(0.244493,0.002445,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244493,0.002445,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244493,0.002445,-0.002500,0.249988,0,0);}
.m3c_c00422{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);}
.m1_c00422{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{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);}
.m121_c00422{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00422{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);}
.mf0_c00422{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);}
.m89_c00422{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m127_c00422{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);}
.me8_c00422{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);}
.mb8_c00422{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);}
.m10c_c00422{transform:matrix(0.255278,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255278,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255278,0.003319,-0.003250,0.249979,0,0);}
.m43_c00422{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);}
.med_c00422{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);}
.m20_c00422{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);}
.m28_c00422{transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);}
.md7_c00422{transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{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);}
.m52_c00422{transform:matrix(0.265472,0.002655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265472,0.002655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265472,0.002655,-0.002500,0.249988,0,0);}
.mfd_c00422{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.266122,0.002661,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266122,0.002661,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266122,0.002661,-0.002500,0.249988,0,0);}
.m1d_c00422{transform:matrix(0.266160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266160,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{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);}
.m4c_c00422{transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);}
.m11b_c00422{transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);}
.m113_c00422{transform:matrix(0.273400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.274810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274810,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.281941,0.002819,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281941,0.002819,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281941,0.002819,-0.002500,0.249988,0,0);}
.m42_c00422{transform:matrix(0.283745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283745,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);}
.mf7_c00422{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286880,0.000000,0.000000,0.250000,0,0);}
.m110_c00422{transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290560,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293890,0.000000,0.000000,0.250000,0,0);}
.mff_c00422{transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296260,0.000000,0.000000,0.250000,0,0);}
.m102_c00422{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.m128_c00422{transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301285,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301855,0.000000,0.000000,0.250000,0,0);}
.m126_c00422{transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);}
.me2_c00422{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.m108_c00422{transform:matrix(0.365634,0.004753,-0.003250,0.249979,0,0);-ms-transform:matrix(0.365634,0.004753,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.365634,0.004753,-0.003250,0.249979,0,0);}
.m99_c00422{transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);}
.mf6_c00422{transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.471085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471085,0.000000,0.000000,0.250000,0,0);}
.m10b_c00422{transform:matrix(0.473485,0.006155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.473485,0.006155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.473485,0.006155,-0.003250,0.249979,0,0);}
.m10a_c00422{transform:matrix(0.476870,0.006199,-0.003250,0.249979,0,0);-ms-transform:matrix(0.476870,0.006199,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.476870,0.006199,-0.003250,0.249979,0,0);}
.m106_c00422{transform:matrix(0.597904,0.007773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.597904,0.007773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.597904,0.007773,-0.003250,0.249979,0,0);}
.m53_c00422{transform:matrix(0.613999,0.006140,-0.002500,0.249988,0,0);-ms-transform:matrix(0.613999,0.006140,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.613999,0.006140,-0.002500,0.249988,0,0);}
.m100_c00422{transform:matrix(0.622250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00422{transform:matrix(0.669215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669215,0.000000,0.000000,0.250000,0,0);}
.m109_c00422{transform:matrix(0.705565,0.009172,-0.003250,0.249979,0,0);-ms-transform:matrix(0.705565,0.009172,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.705565,0.009172,-0.003250,0.249979,0,0);}
.m107_c00422{transform:matrix(0.736833,0.009579,-0.003250,0.249979,0,0);-ms-transform:matrix(0.736833,0.009579,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.736833,0.009579,-0.003250,0.249979,0,0);}
.md_c00422{transform:matrix(0.758270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758270,0.000000,0.000000,0.250000,0,0);}
.m105_c00422{transform:matrix(0.896459,0.011654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.896459,0.011654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.896459,0.011654,-0.003250,0.249979,0,0);}
.m11d_c00422{transform:matrix(0.945505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945505,0.000000,0.000000,0.250000,0,0);}
.m104_c00422{transform:matrix(0.992751,0.012906,-0.003250,0.249979,0,0);-ms-transform:matrix(0.992751,0.012906,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.992751,0.012906,-0.003250,0.249979,0,0);}
.m116_c00422{transform:matrix(1.897185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.897185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.897185,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;}
.fs12_c00422{font-size:22.050000px;}
.fs17_c00422{font-size:43.053638px;}
.fs18_c00422{font-size:45.150000px;}
.fs13_c00422{font-size:46.200000px;}
.fs10_c00422{font-size:49.350000px;}
.fs11_c00422{font-size:50.400000px;}
.fs14_c00422{font-size:51.450000px;}
.fse_c00422{font-size:52.500000px;}
.fs16_c00422{font-size:53.550000px;}
.fs15_c00422{font-size:54.600000px;}
.fsf_c00422{font-size:59.850000px;}
.fsa_c00422{font-size:60.903045px;}
.fs8_c00422{font-size:61.950000px;}
.fs3_c00422{font-size:66.150000px;}
.fs1_c00422{font-size:67.200000px;}
.fsb_c00422{font-size:67.203360px;}
.fs6_c00422{font-size:68.250000px;}
.fs9_c00422{font-size:68.253412px;}
.fs4_c00422{font-size:69.300000px;}
.fsd_c00422{font-size:69.303465px;}
.fs5_c00422{font-size:70.350000px;}
.fsc_c00422{font-size:70.353517px;}
.fs2_c00422{font-size:71.400000px;}
.fs7_c00422{font-size:72.450000px;}
.fs0_c00422{font-size:117.600000px;}
.y0_c00422{bottom:0.000000px;}
.y54_c00422{bottom:99.174698px;}
.y53_c00422{bottom:99.592271px;}
.y52_c00422{bottom:100.224110px;}
.y51_c00422{bottom:100.774263px;}
.y50_c00422{bottom:101.039093px;}
.y4f_c00422{bottom:101.497499px;}
.y4e_c00422{bottom:102.213246px;}
.y4d_c00422{bottom:102.497439px;}
.y4c_c00422{bottom:103.318701px;}
.y4b_c00422{bottom:103.410000px;}
.y4a_c00422{bottom:148.474500px;}
.y49_c00422{bottom:175.198500px;}
.y57_c00422{bottom:175.471500px;}
.y56_c00422{bottom:192.732000px;}
.y48_c00422{bottom:193.294500px;}
.y47_c00422{bottom:211.009500px;}
.y44_c00422{bottom:211.296000px;}
.y43_c00422{bottom:228.375000px;}
.y46_c00422{bottom:228.397500px;}
.y42_c00422{bottom:246.105000px;}
.y45_c00422{bottom:246.490500px;}
.y41_c00422{bottom:264.172500px;}
.y3f_c00422{bottom:264.328500px;}
.y3e_c00422{bottom:271.890000px;}
.y40_c00422{bottom:282.699000px;}
.y3d_c00422{bottom:282.721500px;}
.y3b_c00422{bottom:299.719500px;}
.y3c_c00422{bottom:300.703500px;}
.y3a_c00422{bottom:317.076000px;}
.y55_c00422{bottom:335.398500px;}
.y39_c00422{bottom:395.761500px;}
.y38_c00422{bottom:419.503500px;}
.y37_c00422{bottom:442.452000px;}
.y30_c00422{bottom:464.253180px;}
.y31_c00422{bottom:464.253795px;}
.y34_c00422{bottom:464.253900px;}
.y36_c00422{bottom:464.253945px;}
.y32_c00422{bottom:464.254140px;}
.y33_c00422{bottom:464.254170px;}
.y35_c00422{bottom:464.254230px;}
.y29_c00422{bottom:486.931830px;}
.y2a_c00422{bottom:486.932175px;}
.y2e_c00422{bottom:486.932265px;}
.y2c_c00422{bottom:486.932520px;}
.y2b_c00422{bottom:486.932790px;}
.y2d_c00422{bottom:486.932850px;}
.y2f_c00422{bottom:486.932895px;}
.y22_c00422{bottom:509.565810px;}
.y27_c00422{bottom:509.565915px;}
.y21_c00422{bottom:509.566095px;}
.y23_c00422{bottom:509.566455px;}
.y24_c00422{bottom:509.566470px;}
.y26_c00422{bottom:509.566500px;}
.y28_c00422{bottom:509.566545px;}
.y25_c00422{bottom:509.567085px;}
.y19_c00422{bottom:532.624905px;}
.y1a_c00422{bottom:532.625220px;}
.y1c_c00422{bottom:532.625550px;}
.y1d_c00422{bottom:532.625565px;}
.y1b_c00422{bottom:532.625835px;}
.y20_c00422{bottom:532.625940px;}
.y1e_c00422{bottom:532.626195px;}
.y1f_c00422{bottom:532.626210px;}
.y18_c00422{bottom:555.424320px;}
.y17_c00422{bottom:555.424605px;}
.y16_c00422{bottom:555.425160px;}
.y12_c00422{bottom:555.425400px;}
.y13_c00422{bottom:555.425415px;}
.y14_c00422{bottom:555.425730px;}
.y15_c00422{bottom:555.425760px;}
.y11_c00422{bottom:577.135815px;}
.y10_c00422{bottom:577.747470px;}
.yf_c00422{bottom:578.360475px;}
.ye_c00422{bottom:578.814645px;}
.yd_c00422{bottom:579.422730px;}
.yc_c00422{bottom:579.691500px;}
.yb_c00422{bottom:600.973500px;}
.ya_c00422{bottom:623.152500px;}
.y9_c00422{bottom:645.760500px;}
.y8_c00422{bottom:667.998000px;}
.y7_c00422{bottom:690.742500px;}
.y6_c00422{bottom:713.529000px;}
.y5_c00422{bottom:736.096500px;}
.y4_c00422{bottom:759.546000px;}
.y3_c00422{bottom:782.383500px;}
.y2_c00422{bottom:805.240500px;}
.y1_c00422{bottom:872.167500px;}
.h14_c00422{height:22.050000px;}
.h19_c00422{height:43.053638px;}
.h1a_c00422{height:45.150000px;}
.h15_c00422{height:46.200000px;}
.h12_c00422{height:49.350000px;}
.h13_c00422{height:50.400000px;}
.h16_c00422{height:51.450000px;}
.h10_c00422{height:52.500000px;}
.h18_c00422{height:53.550000px;}
.h17_c00422{height:54.600000px;}
.h11_c00422{height:59.850000px;}
.hc_c00422{height:60.903045px;}
.ha_c00422{height:61.950000px;}
.h5_c00422{height:66.150000px;}
.h3_c00422{height:67.200000px;}
.hd_c00422{height:67.203360px;}
.h8_c00422{height:68.250000px;}
.hb_c00422{height:68.253412px;}
.h6_c00422{height:69.300000px;}
.hf_c00422{height:69.303465px;}
.h7_c00422{height:70.350000px;}
.he_c00422{height:70.353517px;}
.h4_c00422{height:71.400000px;}
.h9_c00422{height:72.450000px;}
.h2_c00422{height:117.600000px;}
.h1_c00422{height:1005.000000px;}
.h0_c00422{height:1005.150000px;}
.w0_c00422{width:715.200000px;}
.w1_c00422{width:715.500000px;}
.x0_c00422{left:0.000000px;}
.x95_c00422{left:86.670000px;}
.x74_c00422{left:91.530000px;}
.x98_c00422{left:92.610000px;}
.x79_c00422{left:94.500000px;}
.x90_c00422{left:95.580000px;}
.x62_c00422{left:96.930000px;}
.x91_c00422{left:107.190000px;}
.x92_c00422{left:111.240000px;}
.x9d_c00422{left:117.720000px;}
.x7_c00422{left:123.660000px;}
.x38_c00422{left:125.820000px;}
.x5b_c00422{left:127.440000px;}
.x1f_c00422{left:128.790000px;}
.x8_c00422{left:131.220000px;}
.x10_c00422{left:132.840000px;}
.x9a_c00422{left:136.080000px;}
.x63_c00422{left:143.370000px;}
.x93_c00422{left:145.800000px;}
.x8d_c00422{left:147.690000px;}
.x5d_c00422{left:150.660000px;}
.x39_c00422{left:152.820000px;}
.x40_c00422{left:154.738500px;}
.x43_c00422{left:156.330210px;}
.x9b_c00422{left:158.760000px;}
.x46_c00422{left:160.922190px;}
.x11_c00422{left:163.890000px;}
.x75_c00422{left:165.240000px;}
.x52_c00422{left:171.182070px;}
.x2b_c00422{left:173.070000px;}
.x7a_c00422{left:175.230000px;}
.x26_c00422{left:177.390000px;}
.x1_c00422{left:181.440000px;}
.x64_c00422{left:182.790000px;}
.x9_c00422{left:184.680000px;}
.x7c_c00422{left:185.760000px;}
.x20_c00422{left:188.730000px;}
.x7b_c00422{left:190.350000px;}
.x1a_c00422{left:192.240000px;}
.x56_c00422{left:194.130000px;}
.x16_c00422{left:195.480000px;}
.x3a_c00422{left:196.560000px;}
.x65_c00422{left:197.910000px;}
.x2c_c00422{left:199.530000px;}
.x99_c00422{left:206.010000px;}
.x5e_c00422{left:208.980000px;}
.x8e_c00422{left:210.330000px;}
.xa_c00422{left:214.110000px;}
.x41_c00422{left:215.547000px;}
.x33_c00422{left:218.160000px;}
.x66_c00422{left:219.510000px;}
.x76_c00422{left:222.210000px;}
.x9e_c00422{left:225.720000px;}
.x17_c00422{left:227.340000px;}
.x47_c00422{left:230.046105px;}
.x2d_c00422{left:234.630000px;}
.x67_c00422{left:236.520000px;}
.x2_c00422{left:237.600000px;}
.x27_c00422{left:239.490000px;}
.x96_c00422{left:240.570000px;}
.x7d_c00422{left:242.190000px;}
.x12_c00422{left:243.810000px;}
.x48_c00422{left:248.946495px;}
.x53_c00422{left:251.105565px;}
.xb_c00422{left:252.180000px;}
.x94_c00422{left:254.340000px;}
.x68_c00422{left:257.580000px;}
.x21_c00422{left:258.660000px;}
.x42_c00422{left:260.964000px;}
.x4c_c00422{left:264.877020px;}
.x44_c00422{left:266.766750px;}
.x5f_c00422{left:269.460000px;}
.x2e_c00422{left:273.780000px;}
.x77_c00422{left:279.720000px;}
.x8f_c00422{left:282.960000px;}
.x1b_c00422{left:286.740000px;}
.x3_c00422{left:288.090000px;}
.x13_c00422{left:291.330000px;}
.x57_c00422{left:293.220000px;}
.x5c_c00422{left:296.190000px;}
.x78_c00422{left:298.080000px;}
.xc_c00422{left:299.160000px;}
.x4f_c00422{left:300.249240px;}
.x18_c00422{left:302.130000px;}
.x4d_c00422{left:303.219360px;}
.x9f_c00422{left:304.560000px;}
.x49_c00422{left:306.189225px;}
.x54_c00422{left:307.808235px;}
.x22_c00422{left:309.420000px;}
.x69_c00422{left:311.580000px;}
.x3b_c00422{left:313.470000px;}
.x34_c00422{left:314.820000px;}
.x60_c00422{left:317.520000px;}
.xd_c00422{left:319.140000px;}
.x19_c00422{left:322.650000px;}
.x1c_c00422{left:327.240000px;}
.x97_c00422{left:329.670000px;}
.x6a_c00422{left:330.750000px;}
.x14_c00422{left:332.640000px;}
.x28_c00422{left:334.800000px;}
.x4a_c00422{left:337.240830px;}
.x4_c00422{left:339.390000px;}
.x8a_c00422{left:343.710000px;}
.x23_c00422{left:345.600000px;}
.x3c_c00422{left:347.760000px;}
.x2f_c00422{left:349.920000px;}
.x50_c00422{left:353.171535px;}
.x29_c00422{left:354.240000px;}
.x81_c00422{left:358.830000px;}
.x30_c00422{left:360.450000px;}
.x1d_c00422{left:364.770000px;}
.x6f_c00422{left:367.200000px;}
.x3f_c00422{left:368.550000px;}
.x7e_c00422{left:369.630000px;}
.x24_c00422{left:370.710000px;}
.x4e_c00422{left:373.693395px;}
.x58_c00422{left:375.300000px;}
.xa0_c00422{left:376.920000px;}
.xa2_c00422{left:378.540000px;}
.xe_c00422{left:379.620000px;}
.x35_c00422{left:383.400000px;}
.x45_c00422{left:384.762540px;}
.x31_c00422{left:391.230000px;}
.x6b_c00422{left:394.200000px;}
.x5_c00422{left:395.820000px;}
.x55_c00422{left:399.611415px;}
.x15_c00422{left:402.840000px;}
.x4b_c00422{left:404.474550px;}
.x2a_c00422{left:406.350000px;}
.x36_c00422{left:407.970000px;}
.x9c_c00422{left:409.993500px;}
.x70_c00422{left:412.560000px;}
.xa3_c00422{left:417.960000px;}
.x1e_c00422{left:423.090000px;}
.x51_c00422{left:426.074325px;}
.x88_c00422{left:432.810000px;}
.x7f_c00422{left:433.890000px;}
.x25_c00422{left:435.510000px;}
.x32_c00422{left:437.130000px;}
.x3d_c00422{left:438.750000px;}
.x71_c00422{left:441.990000px;}
.x37_c00422{left:443.070000px;}
.xa4_c00422{left:444.960000px;}
.x86_c00422{left:449.820000px;}
.x80_c00422{left:451.440000px;}
.x82_c00422{left:453.600000px;}
.x8b_c00422{left:456.840000px;}
.xf_c00422{left:458.190000px;}
.x59_c00422{left:459.270000px;}
.x6c_c00422{left:467.370000px;}
.x6_c00422{left:470.610000px;}
.x3e_c00422{left:474.930000px;}
.x5a_c00422{left:479.520000px;}
.xa5_c00422{left:481.950000px;}
.x6d_c00422{left:488.970000px;}
.x61_c00422{left:491.400000px;}
.x72_c00422{left:503.550000px;}
.x83_c00422{left:514.350000px;}
.x6e_c00422{left:518.130000px;}
.xa6_c00422{left:524.340000px;}
.x73_c00422{left:531.090000px;}
.x84_c00422{left:534.060000px;}
.x87_c00422{left:535.680000px;}
.xa1_c00422{left:537.840000px;}
.x8c_c00422{left:550.800000px;}
.xa7_c00422{left:555.930000px;}
.x85_c00422{left:560.250000px;}
.x89_c00422{left:564.030000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.fs12_c00422{font-size:19.600000pt;}
.fs17_c00422{font-size:38.269900pt;}
.fs18_c00422{font-size:40.133333pt;}
.fs13_c00422{font-size:41.066667pt;}
.fs10_c00422{font-size:43.866667pt;}
.fs11_c00422{font-size:44.800000pt;}
.fs14_c00422{font-size:45.733333pt;}
.fse_c00422{font-size:46.666667pt;}
.fs16_c00422{font-size:47.600000pt;}
.fs15_c00422{font-size:48.533333pt;}
.fsf_c00422{font-size:53.200000pt;}
.fsa_c00422{font-size:54.136040pt;}
.fs8_c00422{font-size:55.066667pt;}
.fs3_c00422{font-size:58.800000pt;}
.fs1_c00422{font-size:59.733333pt;}
.fsb_c00422{font-size:59.736320pt;}
.fs6_c00422{font-size:60.666667pt;}
.fs9_c00422{font-size:60.669700pt;}
.fs4_c00422{font-size:61.600000pt;}
.fsd_c00422{font-size:61.603080pt;}
.fs5_c00422{font-size:62.533333pt;}
.fsc_c00422{font-size:62.536460pt;}
.fs2_c00422{font-size:63.466667pt;}
.fs7_c00422{font-size:64.400000pt;}
.fs0_c00422{font-size:104.533333pt;}
.y0_c00422{bottom:0.000000pt;}
.y54_c00422{bottom:88.155287pt;}
.y53_c00422{bottom:88.526463pt;}
.y52_c00422{bottom:89.088097pt;}
.y51_c00422{bottom:89.577123pt;}
.y50_c00422{bottom:89.812527pt;}
.y4f_c00422{bottom:90.219999pt;}
.y4e_c00422{bottom:90.856219pt;}
.y4d_c00422{bottom:91.108835pt;}
.y4c_c00422{bottom:91.838845pt;}
.y4b_c00422{bottom:91.920000pt;}
.y4a_c00422{bottom:131.977333pt;}
.y49_c00422{bottom:155.732000pt;}
.y57_c00422{bottom:155.974667pt;}
.y56_c00422{bottom:171.317333pt;}
.y48_c00422{bottom:171.817333pt;}
.y47_c00422{bottom:187.564000pt;}
.y44_c00422{bottom:187.818667pt;}
.y43_c00422{bottom:203.000000pt;}
.y46_c00422{bottom:203.020000pt;}
.y42_c00422{bottom:218.760000pt;}
.y45_c00422{bottom:219.102667pt;}
.y41_c00422{bottom:234.820000pt;}
.y3f_c00422{bottom:234.958667pt;}
.y3e_c00422{bottom:241.680000pt;}
.y40_c00422{bottom:251.288000pt;}
.y3d_c00422{bottom:251.308000pt;}
.y3b_c00422{bottom:266.417333pt;}
.y3c_c00422{bottom:267.292000pt;}
.y3a_c00422{bottom:281.845333pt;}
.y55_c00422{bottom:298.132000pt;}
.y39_c00422{bottom:351.788000pt;}
.y38_c00422{bottom:372.892000pt;}
.y37_c00422{bottom:393.290667pt;}
.y30_c00422{bottom:412.669493pt;}
.y31_c00422{bottom:412.670040pt;}
.y34_c00422{bottom:412.670133pt;}
.y36_c00422{bottom:412.670173pt;}
.y32_c00422{bottom:412.670347pt;}
.y33_c00422{bottom:412.670373pt;}
.y35_c00422{bottom:412.670427pt;}
.y29_c00422{bottom:432.828293pt;}
.y2a_c00422{bottom:432.828600pt;}
.y2e_c00422{bottom:432.828680pt;}
.y2c_c00422{bottom:432.828907pt;}
.y2b_c00422{bottom:432.829147pt;}
.y2d_c00422{bottom:432.829200pt;}
.y2f_c00422{bottom:432.829240pt;}
.y22_c00422{bottom:452.947387pt;}
.y27_c00422{bottom:452.947480pt;}
.y21_c00422{bottom:452.947640pt;}
.y23_c00422{bottom:452.947960pt;}
.y24_c00422{bottom:452.947973pt;}
.y26_c00422{bottom:452.948000pt;}
.y28_c00422{bottom:452.948040pt;}
.y25_c00422{bottom:452.948520pt;}
.y19_c00422{bottom:473.444360pt;}
.y1a_c00422{bottom:473.444640pt;}
.y1c_c00422{bottom:473.444933pt;}
.y1d_c00422{bottom:473.444947pt;}
.y1b_c00422{bottom:473.445187pt;}
.y20_c00422{bottom:473.445280pt;}
.y1e_c00422{bottom:473.445507pt;}
.y1f_c00422{bottom:473.445520pt;}
.y18_c00422{bottom:493.710507pt;}
.y17_c00422{bottom:493.710760pt;}
.y16_c00422{bottom:493.711253pt;}
.y12_c00422{bottom:493.711467pt;}
.y13_c00422{bottom:493.711480pt;}
.y14_c00422{bottom:493.711760pt;}
.y15_c00422{bottom:493.711787pt;}
.y11_c00422{bottom:513.009613pt;}
.y10_c00422{bottom:513.553307pt;}
.yf_c00422{bottom:514.098200pt;}
.ye_c00422{bottom:514.501907pt;}
.yd_c00422{bottom:515.042427pt;}
.yc_c00422{bottom:515.281333pt;}
.yb_c00422{bottom:534.198667pt;}
.ya_c00422{bottom:553.913333pt;}
.y9_c00422{bottom:574.009333pt;}
.y8_c00422{bottom:593.776000pt;}
.y7_c00422{bottom:613.993333pt;}
.y6_c00422{bottom:634.248000pt;}
.y5_c00422{bottom:654.308000pt;}
.y4_c00422{bottom:675.152000pt;}
.y3_c00422{bottom:695.452000pt;}
.y2_c00422{bottom:715.769333pt;}
.y1_c00422{bottom:775.260000pt;}
.h14_c00422{height:19.600000pt;}
.h19_c00422{height:38.269900pt;}
.h1a_c00422{height:40.133333pt;}
.h15_c00422{height:41.066667pt;}
.h12_c00422{height:43.866667pt;}
.h13_c00422{height:44.800000pt;}
.h16_c00422{height:45.733333pt;}
.h10_c00422{height:46.666667pt;}
.h18_c00422{height:47.600000pt;}
.h17_c00422{height:48.533333pt;}
.h11_c00422{height:53.200000pt;}
.hc_c00422{height:54.136040pt;}
.ha_c00422{height:55.066667pt;}
.h5_c00422{height:58.800000pt;}
.h3_c00422{height:59.733333pt;}
.hd_c00422{height:59.736320pt;}
.h8_c00422{height:60.666667pt;}
.hb_c00422{height:60.669700pt;}
.h6_c00422{height:61.600000pt;}
.hf_c00422{height:61.603080pt;}
.h7_c00422{height:62.533333pt;}
.he_c00422{height:62.536460pt;}
.h4_c00422{height:63.466667pt;}
.h9_c00422{height:64.400000pt;}
.h2_c00422{height:104.533333pt;}
.h1_c00422{height:893.333333pt;}
.h0_c00422{height:893.466667pt;}
.w0_c00422{width:635.733333pt;}
.w1_c00422{width:636.000000pt;}
.x0_c00422{left:0.000000pt;}
.x95_c00422{left:77.040000pt;}
.x74_c00422{left:81.360000pt;}
.x98_c00422{left:82.320000pt;}
.x79_c00422{left:84.000000pt;}
.x90_c00422{left:84.960000pt;}
.x62_c00422{left:86.160000pt;}
.x91_c00422{left:95.280000pt;}
.x92_c00422{left:98.880000pt;}
.x9d_c00422{left:104.640000pt;}
.x7_c00422{left:109.920000pt;}
.x38_c00422{left:111.840000pt;}
.x5b_c00422{left:113.280000pt;}
.x1f_c00422{left:114.480000pt;}
.x8_c00422{left:116.640000pt;}
.x10_c00422{left:118.080000pt;}
.x9a_c00422{left:120.960000pt;}
.x63_c00422{left:127.440000pt;}
.x93_c00422{left:129.600000pt;}
.x8d_c00422{left:131.280000pt;}
.x5d_c00422{left:133.920000pt;}
.x39_c00422{left:135.840000pt;}
.x40_c00422{left:137.545333pt;}
.x43_c00422{left:138.960187pt;}
.x9b_c00422{left:141.120000pt;}
.x46_c00422{left:143.041947pt;}
.x11_c00422{left:145.680000pt;}
.x75_c00422{left:146.880000pt;}
.x52_c00422{left:152.161840pt;}
.x2b_c00422{left:153.840000pt;}
.x7a_c00422{left:155.760000pt;}
.x26_c00422{left:157.680000pt;}
.x1_c00422{left:161.280000pt;}
.x64_c00422{left:162.480000pt;}
.x9_c00422{left:164.160000pt;}
.x7c_c00422{left:165.120000pt;}
.x20_c00422{left:167.760000pt;}
.x7b_c00422{left:169.200000pt;}
.x1a_c00422{left:170.880000pt;}
.x56_c00422{left:172.560000pt;}
.x16_c00422{left:173.760000pt;}
.x3a_c00422{left:174.720000pt;}
.x65_c00422{left:175.920000pt;}
.x2c_c00422{left:177.360000pt;}
.x99_c00422{left:183.120000pt;}
.x5e_c00422{left:185.760000pt;}
.x8e_c00422{left:186.960000pt;}
.xa_c00422{left:190.320000pt;}
.x41_c00422{left:191.597333pt;}
.x33_c00422{left:193.920000pt;}
.x66_c00422{left:195.120000pt;}
.x76_c00422{left:197.520000pt;}
.x9e_c00422{left:200.640000pt;}
.x17_c00422{left:202.080000pt;}
.x47_c00422{left:204.485427pt;}
.x2d_c00422{left:208.560000pt;}
.x67_c00422{left:210.240000pt;}
.x2_c00422{left:211.200000pt;}
.x27_c00422{left:212.880000pt;}
.x96_c00422{left:213.840000pt;}
.x7d_c00422{left:215.280000pt;}
.x12_c00422{left:216.720000pt;}
.x48_c00422{left:221.285773pt;}
.x53_c00422{left:223.204947pt;}
.xb_c00422{left:224.160000pt;}
.x94_c00422{left:226.080000pt;}
.x68_c00422{left:228.960000pt;}
.x21_c00422{left:229.920000pt;}
.x42_c00422{left:231.968000pt;}
.x4c_c00422{left:235.446240pt;}
.x44_c00422{left:237.126000pt;}
.x5f_c00422{left:239.520000pt;}
.x2e_c00422{left:243.360000pt;}
.x77_c00422{left:248.640000pt;}
.x8f_c00422{left:251.520000pt;}
.x1b_c00422{left:254.880000pt;}
.x3_c00422{left:256.080000pt;}
.x13_c00422{left:258.960000pt;}
.x57_c00422{left:260.640000pt;}
.x5c_c00422{left:263.280000pt;}
.x78_c00422{left:264.960000pt;}
.xc_c00422{left:265.920000pt;}
.x4f_c00422{left:266.888213pt;}
.x18_c00422{left:268.560000pt;}
.x4d_c00422{left:269.528320pt;}
.x9f_c00422{left:270.720000pt;}
.x49_c00422{left:272.168200pt;}
.x54_c00422{left:273.607320pt;}
.x22_c00422{left:275.040000pt;}
.x69_c00422{left:276.960000pt;}
.x3b_c00422{left:278.640000pt;}
.x34_c00422{left:279.840000pt;}
.x60_c00422{left:282.240000pt;}
.xd_c00422{left:283.680000pt;}
.x19_c00422{left:286.800000pt;}
.x1c_c00422{left:290.880000pt;}
.x97_c00422{left:293.040000pt;}
.x6a_c00422{left:294.000000pt;}
.x14_c00422{left:295.680000pt;}
.x28_c00422{left:297.600000pt;}
.x4a_c00422{left:299.769627pt;}
.x4_c00422{left:301.680000pt;}
.x8a_c00422{left:305.520000pt;}
.x23_c00422{left:307.200000pt;}
.x3c_c00422{left:309.120000pt;}
.x2f_c00422{left:311.040000pt;}
.x50_c00422{left:313.930253pt;}
.x29_c00422{left:314.880000pt;}
.x81_c00422{left:318.960000pt;}
.x30_c00422{left:320.400000pt;}
.x1d_c00422{left:324.240000pt;}
.x6f_c00422{left:326.400000pt;}
.x3f_c00422{left:327.600000pt;}
.x7e_c00422{left:328.560000pt;}
.x24_c00422{left:329.520000pt;}
.x4e_c00422{left:332.171907pt;}
.x58_c00422{left:333.600000pt;}
.xa0_c00422{left:335.040000pt;}
.xa2_c00422{left:336.480000pt;}
.xe_c00422{left:337.440000pt;}
.x35_c00422{left:340.800000pt;}
.x45_c00422{left:342.011147pt;}
.x31_c00422{left:347.760000pt;}
.x6b_c00422{left:350.400000pt;}
.x5_c00422{left:351.840000pt;}
.x55_c00422{left:355.210147pt;}
.x15_c00422{left:358.080000pt;}
.x4b_c00422{left:359.532933pt;}
.x2a_c00422{left:361.200000pt;}
.x36_c00422{left:362.640000pt;}
.x9c_c00422{left:364.438667pt;}
.x70_c00422{left:366.720000pt;}
.xa3_c00422{left:371.520000pt;}
.x1e_c00422{left:376.080000pt;}
.x51_c00422{left:378.732733pt;}
.x88_c00422{left:384.720000pt;}
.x7f_c00422{left:385.680000pt;}
.x25_c00422{left:387.120000pt;}
.x32_c00422{left:388.560000pt;}
.x3d_c00422{left:390.000000pt;}
.x71_c00422{left:392.880000pt;}
.x37_c00422{left:393.840000pt;}
.xa4_c00422{left:395.520000pt;}
.x86_c00422{left:399.840000pt;}
.x80_c00422{left:401.280000pt;}
.x82_c00422{left:403.200000pt;}
.x8b_c00422{left:406.080000pt;}
.xf_c00422{left:407.280000pt;}
.x59_c00422{left:408.240000pt;}
.x6c_c00422{left:415.440000pt;}
.x6_c00422{left:418.320000pt;}
.x3e_c00422{left:422.160000pt;}
.x5a_c00422{left:426.240000pt;}
.xa5_c00422{left:428.400000pt;}
.x6d_c00422{left:434.640000pt;}
.x61_c00422{left:436.800000pt;}
.x72_c00422{left:447.600000pt;}
.x83_c00422{left:457.200000pt;}
.x6e_c00422{left:460.560000pt;}
.xa6_c00422{left:466.080000pt;}
.x73_c00422{left:472.080000pt;}
.x84_c00422{left:474.720000pt;}
.x87_c00422{left:476.160000pt;}
.xa1_c00422{left:478.080000pt;}
.x8c_c00422{left:489.600000pt;}
.xa7_c00422{left:494.160000pt;}
.x85_c00422{left:498.000000pt;}
.x89_c00422{left:501.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_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_ef4e99a7aa2876b3106553d3.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;}
.mf5_c00423{transform:matrix(0.016264,0.000179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016264,0.000179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016264,0.000179,-0.002750,0.249985,0,0);}
.m125_c00423{transform:matrix(0.020602,0.000330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.020602,0.000330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.020602,0.000330,-0.003999,0.249968,0,0);}
.m10f_c00423{transform:matrix(0.020776,0.000395,-0.004749,0.249955,0,0);-ms-transform:matrix(0.020776,0.000395,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.020776,0.000395,-0.004749,0.249955,0,0);}
.mfb_c00423{transform:matrix(0.024291,0.000462,-0.004749,0.249955,0,0);-ms-transform:matrix(0.024291,0.000462,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.024291,0.000462,-0.004749,0.249955,0,0);}
.m11e_c00423{transform:matrix(0.025969,0.000571,-0.005499,0.249940,0,0);-ms-transform:matrix(0.025969,0.000571,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.025969,0.000571,-0.005499,0.249940,0,0);}
.me3_c00423{transform:matrix(0.039113,0.000430,-0.002750,0.249985,0,0);-ms-transform:matrix(0.039113,0.000430,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.039113,0.000430,-0.002750,0.249985,0,0);}
.m11a_c00423{transform:matrix(0.039920,0.000878,-0.005499,0.249940,0,0);-ms-transform:matrix(0.039920,0.000878,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.039920,0.000878,-0.005499,0.249940,0,0);}
.m117_c00423{transform:matrix(0.060595,0.001333,-0.005499,0.249940,0,0);-ms-transform:matrix(0.060595,0.001333,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.060595,0.001333,-0.005499,0.249940,0,0);}
.mcc_c00423{transform:matrix(0.072726,0.000800,-0.002750,0.249985,0,0);-ms-transform:matrix(0.072726,0.000800,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.072726,0.000800,-0.002750,0.249985,0,0);}
.mcb_c00423{transform:matrix(0.073466,0.000808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.073466,0.000808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.073466,0.000808,-0.002750,0.249985,0,0);}
.mf_c00423{transform:matrix(0.077267,0.000695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.077267,0.000695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.077267,0.000695,-0.002250,0.249990,0,0);}
.m0_c00423{transform:matrix(0.081212,0.000731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.081212,0.000731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.081212,0.000731,-0.002250,0.249990,0,0);}
.mee_c00423{transform:matrix(0.091339,0.001005,-0.002750,0.249985,0,0);-ms-transform:matrix(0.091339,0.001005,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.091339,0.001005,-0.002750,0.249985,0,0);}
.mff_c00423{transform:matrix(0.092878,0.001765,-0.004749,0.249955,0,0);-ms-transform:matrix(0.092878,0.001765,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.092878,0.001765,-0.004749,0.249955,0,0);}
.m148_c00423{transform:matrix(0.102113,0.002553,-0.006248,0.249922,0,0);-ms-transform:matrix(0.102113,0.002553,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.102113,0.002553,-0.006248,0.249922,0,0);}
.m104_c00423{transform:matrix(0.105296,0.002001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.105296,0.002001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.105296,0.002001,-0.004749,0.249955,0,0);}
.m13e_c00423{transform:matrix(0.108506,0.002713,-0.006248,0.249922,0,0);-ms-transform:matrix(0.108506,0.002713,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.108506,0.002713,-0.006248,0.249922,0,0);}
.m10e_c00423{transform:matrix(0.111885,0.002126,-0.004749,0.249955,0,0);-ms-transform:matrix(0.111885,0.002126,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.111885,0.002126,-0.004749,0.249955,0,0);}
.m16f_c00423{transform:matrix(0.118140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118140,0.000000,0.000000,0.250000,0,0);}
.mfd_c00423{transform:matrix(0.135800,0.002580,-0.004749,0.249955,0,0);-ms-transform:matrix(0.135800,0.002580,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.135800,0.002580,-0.004749,0.249955,0,0);}
.m49_c00423{transform:matrix(0.138270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138270,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.138539,0.001247,-0.002250,0.249990,0,0);-ms-transform:matrix(0.138539,0.001247,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.138539,0.001247,-0.002250,0.249990,0,0);}
.mfc_c00423{transform:matrix(0.140520,0.002670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.140520,0.002670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.140520,0.002670,-0.004749,0.249955,0,0);}
.m22_c00423{transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141435,0.000000,0.000000,0.250000,0,0);}
.m101_c00423{transform:matrix(0.141559,0.002690,-0.004749,0.249955,0,0);-ms-transform:matrix(0.141559,0.002690,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.141559,0.002690,-0.004749,0.249955,0,0);}
.m3f_c00423{transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);}
.m87_c00423{transform:matrix(0.143104,0.001288,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143104,0.001288,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143104,0.001288,-0.002250,0.249990,0,0);}
.me4_c00423{transform:matrix(0.144101,0.001585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144101,0.001585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144101,0.001585,-0.002750,0.249985,0,0);}
.m74_c00423{transform:matrix(0.144336,0.001588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144336,0.001588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144336,0.001588,-0.002750,0.249985,0,0);}
.m85_c00423{transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145429,0.001309,-0.002250,0.249990,0,0);}
.m7e_c00423{transform:matrix(0.146236,0.001609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146236,0.001609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146236,0.001609,-0.002750,0.249985,0,0);}
.m92_c00423{transform:matrix(0.146474,0.001318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146474,0.001318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146474,0.001318,-0.002250,0.249990,0,0);}
.m3a_c00423{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);}
.mc1_c00423{transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);}
.m6c_c00423{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);}
.m28_c00423{transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149765,0.000000,0.000000,0.250000,0,0);}
.mf4_c00423{transform:matrix(0.150156,0.001652,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150156,0.001652,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150156,0.001652,-0.002750,0.249985,0,0);}
.m89_c00423{transform:matrix(0.150349,0.001353,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150349,0.001353,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150349,0.001353,-0.002250,0.249990,0,0);}
.m17_c00423{transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150605,0.000000,0.000000,0.250000,0,0);}
.m6e_c00423{transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154485,0.000000,0.000000,0.250000,0,0);}
.m11d_c00423{transform:matrix(0.154488,0.003399,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154488,0.003399,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154488,0.003399,-0.005499,0.249940,0,0);}
.mef_c00423{transform:matrix(0.154666,0.001701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154666,0.001701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154666,0.001701,-0.002750,0.249985,0,0);}
.m99_c00423{transform:matrix(0.155089,0.001396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155089,0.001396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155089,0.001396,-0.002250,0.249990,0,0);}
.m69_c00423{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);}
.m94_c00423{transform:matrix(0.156889,0.001412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156889,0.001412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156889,0.001412,-0.002250,0.249990,0,0);}
.mc6_c00423{transform:matrix(0.157505,0.002205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157505,0.002205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157505,0.002205,-0.003500,0.249976,0,0);}
.m5d_c00423{transform:matrix(0.157545,0.001260,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157545,0.001260,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157545,0.001260,-0.002000,0.249992,0,0);}
.mae_c00423{transform:matrix(0.157650,0.002207,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157650,0.002207,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157650,0.002207,-0.003500,0.249976,0,0);}
.m8e_c00423{transform:matrix(0.159004,0.001431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159004,0.001431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159004,0.001431,-0.002250,0.249990,0,0);}
.mf2_c00423{transform:matrix(0.159115,0.001750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159115,0.001750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159115,0.001750,-0.002750,0.249985,0,0);}
.m106_c00423{transform:matrix(0.159186,0.003025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159186,0.003025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159186,0.003025,-0.004749,0.249955,0,0);}
.m12_c00423{transform:matrix(0.159229,0.001433,-0.002250,0.249990,0,0);-ms-transform:matrix(0.159229,0.001433,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.159229,0.001433,-0.002250,0.249990,0,0);}
.m9e_c00423{transform:matrix(0.159490,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159490,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159490,0.001754,-0.002750,0.249985,0,0);}
.mb3_c00423{transform:matrix(0.159889,0.002238,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159889,0.002238,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159889,0.002238,-0.003500,0.249976,0,0);}
.m46_c00423{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);}
.m70_c00423{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);}
.m109_c00423{transform:matrix(0.160646,0.003052,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160646,0.003052,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160646,0.003052,-0.004749,0.249955,0,0);}
.m79_c00423{transform:matrix(0.161445,0.001776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161445,0.001776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161445,0.001776,-0.002750,0.249985,0,0);}
.m1f_c00423{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);}
.m31_c00423{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m118_c00423{transform:matrix(0.161921,0.003562,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161921,0.003562,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161921,0.003562,-0.005499,0.249940,0,0);}
.mb_c00423{transform:matrix(0.162528,0.001463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162528,0.001463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162528,0.001463,-0.002250,0.249990,0,0);}
.m72_c00423{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);}
.m21_c00423{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);}
.m41_c00423{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);}
.m164_c00423{transform:matrix(0.163770,0.003112,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163770,0.003112,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163770,0.003112,-0.004749,0.249955,0,0);}
.m115_c00423{transform:matrix(0.164020,0.003608,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164020,0.003608,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164020,0.003608,-0.005499,0.249940,0,0);}
.ma5_c00423{transform:matrix(0.164235,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164235,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164235,0.001807,-0.002750,0.249985,0,0);}
.m96_c00423{transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164483,0.001480,-0.002250,0.249990,0,0);}
.m84_c00423{transform:matrix(0.164548,0.001481,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164548,0.001481,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164548,0.001481,-0.002250,0.249990,0,0);}
.m61_c00423{transform:matrix(0.164725,0.001318,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164725,0.001318,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164725,0.001318,-0.002000,0.249992,0,0);}
.m7f_c00423{transform:matrix(0.165170,0.001817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165170,0.001817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165170,0.001817,-0.002750,0.249985,0,0);}
.m6f_c00423{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);}
.mec_c00423{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);}
.m161_c00423{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);}
.m91_c00423{transform:matrix(0.166313,0.001497,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166313,0.001497,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166313,0.001497,-0.002250,0.249990,0,0);}
.m62_c00423{transform:matrix(0.166335,0.001331,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166335,0.001331,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166335,0.001331,-0.002000,0.249992,0,0);}
.m71_c00423{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);}
.m40_c00423{transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166665,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{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);}
.m5a_c00423{transform:matrix(0.167740,0.001342,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167740,0.001342,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167740,0.001342,-0.002000,0.249992,0,0);}
.m75_c00423{transform:matrix(0.168570,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168570,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168570,0.001854,-0.002750,0.249985,0,0);}
.m76_c00423{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);}
.m3c_c00423{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);}
.m150_c00423{transform:matrix(0.169072,0.004227,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169072,0.004227,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169072,0.004227,-0.006248,0.249922,0,0);}
.m10a_c00423{transform:matrix(0.169134,0.003214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169134,0.003214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169134,0.003214,-0.004749,0.249955,0,0);}
.mbf_c00423{transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169503,0.002373,-0.003500,0.249976,0,0);}
.ma3_c00423{transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);}
.m44_c00423{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);}
.m60_c00423{transform:matrix(0.169795,0.001358,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169795,0.001358,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169795,0.001358,-0.002000,0.249992,0,0);}
.m81_c00423{transform:matrix(0.169870,0.001869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169870,0.001869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169870,0.001869,-0.002750,0.249985,0,0);}
.mad_c00423{transform:matrix(0.170498,0.002387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170498,0.002387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170498,0.002387,-0.003500,0.249976,0,0);}
.m9f_c00423{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);}
.m2a_c00423{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);}
.m1d_c00423{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);}
.m8b_c00423{transform:matrix(0.171823,0.001546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171823,0.001546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171823,0.001546,-0.002250,0.249990,0,0);}
.m12f_c00423{transform:matrix(0.171960,0.002923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171960,0.002923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171960,0.002923,-0.004249,0.249964,0,0);}
.mbe_c00423{transform:matrix(0.172298,0.002412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172298,0.002412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172298,0.002412,-0.003500,0.249976,0,0);}
.m14f_c00423{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);}
.m153_c00423{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);}
.mce_c00423{transform:matrix(0.173000,0.001903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173000,0.001903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173000,0.001903,-0.002750,0.249985,0,0);}
.ma4_c00423{transform:matrix(0.173200,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173200,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173200,0.001905,-0.002750,0.249985,0,0);}
.med_c00423{transform:matrix(0.173619,0.001910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173619,0.001910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173619,0.001910,-0.002750,0.249985,0,0);}
.m7a_c00423{transform:matrix(0.173639,0.001910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173639,0.001910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173639,0.001910,-0.002750,0.249985,0,0);}
.mf1_c00423{transform:matrix(0.173779,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173779,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173779,0.001912,-0.002750,0.249985,0,0);}
.m77_c00423{transform:matrix(0.174174,0.001916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174174,0.001916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174174,0.001916,-0.002750,0.249985,0,0);}
.m68_c00423{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);}
.md4_c00423{transform:matrix(0.174629,0.001921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174629,0.001921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174629,0.001921,-0.002750,0.249985,0,0);}
.me7_c00423{transform:matrix(0.174919,0.001924,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174919,0.001924,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174919,0.001924,-0.002750,0.249985,0,0);}
.m1a_c00423{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);}
.m107_c00423{transform:matrix(0.175153,0.003328,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175153,0.003328,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175153,0.003328,-0.004749,0.249955,0,0);}
.m39_c00423{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);}
.mc5_c00423{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);}
.mf3_c00423{transform:matrix(0.176519,0.001942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176519,0.001942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176519,0.001942,-0.002750,0.249985,0,0);}
.m110_c00423{transform:matrix(0.176633,0.003356,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176633,0.003356,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176633,0.003356,-0.004749,0.249955,0,0);}
.md0_c00423{transform:matrix(0.176724,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176724,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176724,0.001944,-0.002750,0.249985,0,0);}
.m15b_c00423{transform:matrix(0.177100,0.004427,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177100,0.004427,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177100,0.004427,-0.006248,0.249922,0,0);}
.m2f_c00423{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);}
.m78_c00423{transform:matrix(0.177399,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177399,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177399,0.001951,-0.002750,0.249985,0,0);}
.m9d_c00423{transform:matrix(0.177844,0.001956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177844,0.001956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177844,0.001956,-0.002750,0.249985,0,0);}
.m5f_c00423{transform:matrix(0.177874,0.001423,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177874,0.001423,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177874,0.001423,-0.002000,0.249992,0,0);}
.me5_c00423{transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177964,0.001958,-0.002750,0.249985,0,0);}
.m6d_c00423{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);}
.m11f_c00423{transform:matrix(0.178272,0.003922,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178272,0.003922,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178272,0.003922,-0.005499,0.249940,0,0);}
.me6_c00423{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);}
.mea_c00423{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);}
.mf0_c00423{transform:matrix(0.178654,0.001965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178654,0.001965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178654,0.001965,-0.002750,0.249985,0,0);}
.m152_c00423{transform:matrix(0.178689,0.004467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178689,0.004467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178689,0.004467,-0.006248,0.249922,0,0);}
.ma2_c00423{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);}
.mfe_c00423{transform:matrix(0.179433,0.003409,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179433,0.003409,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179433,0.003409,-0.004749,0.249955,0,0);}
.mcd_c00423{transform:matrix(0.180084,0.001981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180084,0.001981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180084,0.001981,-0.002750,0.249985,0,0);}
.m19_c00423{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{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);}
.ma0_c00423{transform:matrix(0.180944,0.001990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180944,0.001990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180944,0.001990,-0.002750,0.249985,0,0);}
.m80_c00423{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);}
.me1_c00423{transform:matrix(0.181594,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181594,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181594,0.001998,-0.002750,0.249985,0,0);}
.m2d_c00423{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);}
.mc0_c00423{transform:matrix(0.182002,0.002548,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182002,0.002548,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182002,0.002548,-0.003500,0.249976,0,0);}
.m4f_c00423{transform:matrix(0.182259,0.001458,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182259,0.001458,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182259,0.001458,-0.002000,0.249992,0,0);}
.m25_c00423{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);}
.m20_c00423{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);}
.mac_c00423{transform:matrix(0.182937,0.002561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182937,0.002561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182937,0.002561,-0.003500,0.249976,0,0);}
.m48_c00423{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);}
.m43_c00423{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);}
.m9b_c00423{transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183523,0.001652,-0.002250,0.249990,0,0);}
.m50_c00423{transform:matrix(0.183984,0.001472,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183984,0.001472,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183984,0.001472,-0.002000,0.249992,0,0);}
.m102_c00423{transform:matrix(0.184072,0.003497,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184072,0.003497,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184072,0.003497,-0.004749,0.249955,0,0);}
.m29_c00423{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);}
.m12b_c00423{transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);}
.mbd_c00423{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);}
.m15a_c00423{transform:matrix(0.184502,0.004613,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184502,0.004613,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184502,0.004613,-0.006248,0.249922,0,0);}
.m114_c00423{transform:matrix(0.184680,0.004063,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184680,0.004063,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184680,0.004063,-0.005499,0.249940,0,0);}
.mb9_c00423{transform:matrix(0.185202,0.002593,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185202,0.002593,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185202,0.002593,-0.003500,0.249976,0,0);}
.m10b_c00423{transform:matrix(0.185751,0.003529,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185751,0.003529,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185751,0.003529,-0.004749,0.249955,0,0);}
.maa_c00423{transform:matrix(0.186122,0.002606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186122,0.002606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186122,0.002606,-0.003500,0.249976,0,0);}
.ma7_c00423{transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);}
.m38_c00423{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);}
.m1c_c00423{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);}
.m6b_c00423{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);}
.m59_c00423{transform:matrix(0.187604,0.001501,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187604,0.001501,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187604,0.001501,-0.002000,0.249992,0,0);}
.m113_c00423{transform:matrix(0.188025,0.004137,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188025,0.004137,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188025,0.004137,-0.005499,0.249940,0,0);}
.m26_c00423{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);}
.mc9_c00423{transform:matrix(0.188537,0.002640,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188537,0.002640,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188537,0.002640,-0.003500,0.249976,0,0);}
.m86_c00423{transform:matrix(0.188557,0.001697,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188557,0.001697,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188557,0.001697,-0.002250,0.249990,0,0);}
.m14_c00423{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);}
.m156_c00423{transform:matrix(0.189731,0.004743,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189731,0.004743,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189731,0.004743,-0.006248,0.249922,0,0);}
.m116_c00423{transform:matrix(0.189899,0.004178,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189899,0.004178,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189899,0.004178,-0.005499,0.249940,0,0);}
.m15_c00423{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);}
.m5e_c00423{transform:matrix(0.190389,0.001523,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190389,0.001523,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190389,0.001523,-0.002000,0.249992,0,0);}
.m15e_c00423{transform:matrix(0.190635,0.004766,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190635,0.004766,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190635,0.004766,-0.006248,0.249922,0,0);}
.m154_c00423{transform:matrix(0.190645,0.004766,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190645,0.004766,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190645,0.004766,-0.006248,0.249922,0,0);}
.mb2_c00423{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);}
.m88_c00423{transform:matrix(0.191447,0.001723,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191447,0.001723,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191447,0.001723,-0.002250,0.249990,0,0);}
.m64_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);}
.m24_c00423{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);}
.m8a_c00423{transform:matrix(0.192117,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192117,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192117,0.001729,-0.002250,0.249990,0,0);}
.me2_c00423{transform:matrix(0.192158,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192158,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192158,0.002114,-0.002750,0.249985,0,0);}
.m95_c00423{transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192302,0.001731,-0.002250,0.249990,0,0);}
.mcf_c00423{transform:matrix(0.192518,0.002118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192518,0.002118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192518,0.002118,-0.002750,0.249985,0,0);}
.me8_c00423{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);}
.ma6_c00423{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);}
.m133_c00423{transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193257,0.003285,-0.004249,0.249964,0,0);}
.m1b_c00423{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);}
.m47_c00423{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);}
.mb5_c00423{transform:matrix(0.194071,0.002717,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194071,0.002717,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194071,0.002717,-0.003500,0.249976,0,0);}
.m3d_c00423{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);}
.m167_c00423{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);}
.m32_c00423{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);}
.m37_c00423{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);}
.m54_c00423{transform:matrix(0.195859,0.001567,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195859,0.001567,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195859,0.001567,-0.002000,0.249992,0,0);}
.m65_c00423{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);}
.m58_c00423{transform:matrix(0.196244,0.001570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196244,0.001570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196244,0.001570,-0.002000,0.249992,0,0);}
.m30_c00423{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);}
.mdd_c00423{transform:matrix(0.196663,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196663,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196663,0.002163,-0.002750,0.249985,0,0);}
.m10_c00423{transform:matrix(0.196902,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196902,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196902,0.001772,-0.002250,0.249990,0,0);}
.m16_c00423{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);}
.m66_c00423{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);}
.md6_c00423{transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);}
.m55_c00423{transform:matrix(0.198034,0.001584,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198034,0.001584,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198034,0.001584,-0.002000,0.249992,0,0);}
.m11_c00423{transform:matrix(0.198107,0.001783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198107,0.001783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198107,0.001783,-0.002250,0.249990,0,0);}
.m7d_c00423{transform:matrix(0.198618,0.002185,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198618,0.002185,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198618,0.002185,-0.002750,0.249985,0,0);}
.m143_c00423{transform:matrix(0.199093,0.004977,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199093,0.004977,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199093,0.004977,-0.006248,0.249922,0,0);}
.mca_c00423{transform:matrix(0.199660,0.002795,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199660,0.002795,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199660,0.002795,-0.003500,0.249976,0,0);}
.m165_c00423{transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200364,0.003807,-0.004749,0.249955,0,0);}
.m7b_c00423{transform:matrix(0.200648,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200648,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200648,0.002207,-0.002750,0.249985,0,0);}
.m145_c00423{transform:matrix(0.201087,0.005027,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201087,0.005027,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201087,0.005027,-0.006248,0.249922,0,0);}
.m14d_c00423{transform:matrix(0.201332,0.005033,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201332,0.005033,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201332,0.005033,-0.006248,0.249922,0,0);}
.m27_c00423{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);}
.m36_c00423{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);}
.m2b_c00423{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);}
.m18_c00423{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);}
.m8c_c00423{transform:matrix(0.201962,0.001818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201962,0.001818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201962,0.001818,-0.002250,0.249990,0,0);}
.m5_c00423{transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);}
.md5_c00423{transform:matrix(0.202073,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202073,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202073,0.002223,-0.002750,0.249985,0,0);}
.m45_c00423{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);}
.m4_c00423{transform:matrix(0.202182,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202182,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202182,0.001820,-0.002250,0.249990,0,0);}
.m1e_c00423{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);}
.m163_c00423{transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);}
.m162_c00423{transform:matrix(0.202828,0.003854,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202828,0.003854,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202828,0.003854,-0.004749,0.249955,0,0);}
.mb8_c00423{transform:matrix(0.203850,0.002854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203850,0.002854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203850,0.002854,-0.003500,0.249976,0,0);}
.m142_c00423{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);}
.m166_c00423{transform:matrix(0.205483,0.003904,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205483,0.003904,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205483,0.003904,-0.004749,0.249955,0,0);}
.mab_c00423{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);}
.mc4_c00423{transform:matrix(0.205665,0.002879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205665,0.002879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205665,0.002879,-0.003500,0.249976,0,0);}
.m10d_c00423{transform:matrix(0.205908,0.003912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205908,0.003912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205908,0.003912,-0.004749,0.249955,0,0);}
.m97_c00423{transform:matrix(0.206107,0.001855,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206107,0.001855,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206107,0.001855,-0.002250,0.249990,0,0);}
.mb7_c00423{transform:matrix(0.206305,0.002888,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206305,0.002888,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206305,0.002888,-0.003500,0.249976,0,0);}
.m128_c00423{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);}
.m90_c00423{transform:matrix(0.206922,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206922,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206922,0.001862,-0.002250,0.249990,0,0);}
.m119_c00423{transform:matrix(0.207055,0.004555,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207055,0.004555,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207055,0.004555,-0.005499,0.249940,0,0);}
.m9a_c00423{transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);}
.ma8_c00423{transform:matrix(0.208785,0.002923,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208785,0.002923,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208785,0.002923,-0.003500,0.249976,0,0);}
.m6a_c00423{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);}
.ma9_c00423{transform:matrix(0.209150,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209150,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209150,0.002928,-0.003500,0.249976,0,0);}
.m3b_c00423{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);}
.m149_c00423{transform:matrix(0.209435,0.005236,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209435,0.005236,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209435,0.005236,-0.006248,0.249922,0,0);}
.me0_c00423{transform:matrix(0.209732,0.002307,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209732,0.002307,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209732,0.002307,-0.002750,0.249985,0,0);}
.m103_c00423{transform:matrix(0.210402,0.003998,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210402,0.003998,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210402,0.003998,-0.004749,0.249955,0,0);}
.mb4_c00423{transform:matrix(0.210519,0.002947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210519,0.002947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210519,0.002947,-0.003500,0.249976,0,0);}
.m111_c00423{transform:matrix(0.210744,0.004636,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210744,0.004636,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210744,0.004636,-0.005499,0.249940,0,0);}
.m52_c00423{transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);}
.m14c_c00423{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);}
.mb1_c00423{transform:matrix(0.211014,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211014,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211014,0.002954,-0.003500,0.249976,0,0);}
.mc8_c00423{transform:matrix(0.211054,0.002955,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211054,0.002955,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211054,0.002955,-0.003500,0.249976,0,0);}
.m105_c00423{transform:matrix(0.211397,0.004017,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211397,0.004017,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211397,0.004017,-0.004749,0.249955,0,0);}
.m8f_c00423{transform:matrix(0.211786,0.001906,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211786,0.001906,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211786,0.001906,-0.002250,0.249990,0,0);}
.m4c_c00423{transform:matrix(0.212238,0.001698,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212238,0.001698,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212238,0.001698,-0.002000,0.249992,0,0);}
.m4d_c00423{transform:matrix(0.212318,0.001699,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212318,0.001699,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212318,0.001699,-0.002000,0.249992,0,0);}
.m2e_c00423{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);}
.mdf_c00423{transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214547,0.002360,-0.002750,0.249985,0,0);}
.m33_c00423{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);}
.m12a_c00423{transform:matrix(0.215082,0.003441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215082,0.003441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215082,0.003441,-0.003999,0.249968,0,0);}
.m159_c00423{transform:matrix(0.215213,0.005380,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215213,0.005380,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215213,0.005380,-0.006248,0.249922,0,0);}
.m98_c00423{transform:matrix(0.215221,0.001937,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215221,0.001937,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215221,0.001937,-0.002250,0.249990,0,0);}
.mc7_c00423{transform:matrix(0.215369,0.003015,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215369,0.003015,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215369,0.003015,-0.003500,0.249976,0,0);}
.m8d_c00423{transform:matrix(0.215886,0.001943,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215886,0.001943,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215886,0.001943,-0.002250,0.249990,0,0);}
.mdb_c00423{transform:matrix(0.216812,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216812,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216812,0.002385,-0.002750,0.249985,0,0);}
.maf_c00423{transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);}
.m56_c00423{transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217408,0.001739,-0.002000,0.249992,0,0);}
.m63_c00423{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);}
.mb6_c00423{transform:matrix(0.218029,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218029,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218029,0.003052,-0.003500,0.249976,0,0);}
.m12e_c00423{transform:matrix(0.219453,0.003731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219453,0.003731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219453,0.003731,-0.004249,0.249964,0,0);}
.m112_c00423{transform:matrix(0.219562,0.004830,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219562,0.004830,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219562,0.004830,-0.005499,0.249940,0,0);}
.m7c_c00423{transform:matrix(0.220102,0.002421,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220102,0.002421,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220102,0.002421,-0.002750,0.249985,0,0);}
.m129_c00423{transform:matrix(0.220517,0.003528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220517,0.003528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220517,0.003528,-0.003999,0.249968,0,0);}
.m2c_c00423{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);}
.m14b_c00423{transform:matrix(0.221631,0.005541,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221631,0.005541,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221631,0.005541,-0.006248,0.249922,0,0);}
.m82_c00423{transform:matrix(0.221777,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221777,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221777,0.002440,-0.002750,0.249985,0,0);}
.m93_c00423{transform:matrix(0.222106,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222106,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222106,0.001999,-0.002250,0.249990,0,0);}
.m73_c00423{transform:matrix(0.224696,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224696,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224696,0.002472,-0.002750,0.249985,0,0);}
.m34_c00423{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);}
.m42_c00423{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.225678,0.001805,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225678,0.001805,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225678,0.001805,-0.002000,0.249992,0,0);}
.mc3_c00423{transform:matrix(0.227063,0.003179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227063,0.003179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227063,0.003179,-0.003500,0.249976,0,0);}
.m9c_c00423{transform:matrix(0.227711,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227711,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227711,0.002049,-0.002250,0.249990,0,0);}
.mba_c00423{transform:matrix(0.228203,0.003195,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228203,0.003195,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228203,0.003195,-0.003500,0.249976,0,0);}
.mda_c00423{transform:matrix(0.229596,0.002526,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229596,0.002526,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229596,0.002526,-0.002750,0.249985,0,0);}
.m100_c00423{transform:matrix(0.229634,0.004363,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229634,0.004363,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229634,0.004363,-0.004749,0.249955,0,0);}
.m57_c00423{transform:matrix(0.229658,0.001837,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229658,0.001837,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229658,0.001837,-0.002000,0.249992,0,0);}
.m5b_c00423{transform:matrix(0.230653,0.001845,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230653,0.001845,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230653,0.001845,-0.002000,0.249992,0,0);}
.m15c_c00423{transform:matrix(0.230848,0.005771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230848,0.005771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230848,0.005771,-0.006248,0.249922,0,0);}
.md1_c00423{transform:matrix(0.230921,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230921,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230921,0.002540,-0.002750,0.249985,0,0);}
.ma1_c00423{transform:matrix(0.231531,0.002547,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231531,0.002547,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231531,0.002547,-0.002750,0.249985,0,0);}
.m155_c00423{transform:matrix(0.233447,0.005836,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233447,0.005836,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233447,0.005836,-0.006248,0.249922,0,0);}
.m3e_c00423{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);}
.m141_c00423{transform:matrix(0.234922,0.005873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234922,0.005873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234922,0.005873,-0.006248,0.249922,0,0);}
.m131_c00423{transform:matrix(0.235656,0.004006,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235656,0.004006,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235656,0.004006,-0.004249,0.249964,0,0);}
.m4e_c00423{transform:matrix(0.238757,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238757,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238757,0.001910,-0.002000,0.249992,0,0);}
.m16d_c00423{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);}
.mbc_c00423{transform:matrix(0.242671,0.003397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242671,0.003397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242671,0.003397,-0.003500,0.249976,0,0);}
.m15f_c00423{transform:matrix(0.243804,0.006095,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243804,0.006095,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243804,0.006095,-0.006248,0.249922,0,0);}
.m67_c00423{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);}
.m5c_c00423{transform:matrix(0.246692,0.001974,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246692,0.001974,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246692,0.001974,-0.002000,0.249992,0,0);}
.m13_c00423{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m139_c00423{transform:matrix(0.248162,0.006204,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248162,0.006204,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248162,0.006204,-0.006248,0.249922,0,0);}
.m138_c00423{transform:matrix(0.250782,0.006270,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250782,0.006270,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250782,0.006270,-0.006248,0.249922,0,0);}
.m134_c00423{transform:matrix(0.250819,0.004264,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250819,0.004264,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250819,0.004264,-0.004249,0.249964,0,0);}
.m4b_c00423{transform:matrix(0.253182,0.002025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253182,0.002025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253182,0.002025,-0.002000,0.249992,0,0);}
.m144_c00423{transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);}
.md_c00423{transform:matrix(0.260574,0.002345,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260574,0.002345,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260574,0.002345,-0.002250,0.249990,0,0);}
.m14a_c00423{transform:matrix(0.261323,0.006533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261323,0.006533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261323,0.006533,-0.006248,0.249922,0,0);}
.m127_c00423{transform:matrix(0.261637,0.004186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261637,0.004186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261637,0.004186,-0.003999,0.249968,0,0);}
.m53_c00423{transform:matrix(0.263732,0.002110,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263732,0.002110,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263732,0.002110,-0.002000,0.249992,0,0);}
.md9_c00423{transform:matrix(0.264689,0.002912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264689,0.002912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264689,0.002912,-0.002750,0.249985,0,0);}
.m126_c00423{transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266771,0.004268,-0.003999,0.249968,0,0);}
.mdc_c00423{transform:matrix(0.268889,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268889,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268889,0.002958,-0.002750,0.249985,0,0);}
.m4a_c00423{transform:matrix(0.269731,0.002158,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269731,0.002158,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269731,0.002158,-0.002000,0.249992,0,0);}
.md8_c00423{transform:matrix(0.272753,0.003000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272753,0.003000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272753,0.003000,-0.002750,0.249985,0,0);}
.mb0_c00423{transform:matrix(0.272813,0.003819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272813,0.003819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272813,0.003819,-0.003500,0.249976,0,0);}
.m2_c00423{transform:matrix(0.272904,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272904,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272904,0.002456,-0.002250,0.249990,0,0);}
.m140_c00423{transform:matrix(0.276918,0.006923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276918,0.006923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276918,0.006923,-0.006248,0.249922,0,0);}
.m108_c00423{transform:matrix(0.276945,0.005262,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276945,0.005262,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276945,0.005262,-0.004749,0.249955,0,0);}
.m160_c00423{transform:matrix(0.278343,0.006959,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278343,0.006959,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278343,0.006959,-0.006248,0.249922,0,0);}
.mbb_c00423{transform:matrix(0.280568,0.003928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280568,0.003928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280568,0.003928,-0.003500,0.249976,0,0);}
.md3_c00423{transform:matrix(0.281098,0.003092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281098,0.003092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281098,0.003092,-0.002750,0.249985,0,0);}
.m130_c00423{transform:matrix(0.284409,0.004835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284409,0.004835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284409,0.004835,-0.004249,0.249964,0,0);}
.md7_c00423{transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);}
.m1_c00423{transform:matrix(0.289613,0.002607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289613,0.002607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289613,0.002607,-0.002250,0.249990,0,0);}
.m158_c00423{transform:matrix(0.290624,0.007266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.290624,0.007266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.290624,0.007266,-0.006248,0.249922,0,0);}
.m13b_c00423{transform:matrix(0.292044,0.007301,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292044,0.007301,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292044,0.007301,-0.006248,0.249922,0,0);}
.m123_c00423{transform:matrix(0.309865,0.004958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309865,0.004958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309865,0.004958,-0.003999,0.249968,0,0);}
.m13c_c00423{transform:matrix(0.312957,0.007824,-0.006248,0.249922,0,0);-ms-transform:matrix(0.312957,0.007824,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.312957,0.007824,-0.006248,0.249922,0,0);}
.m15d_c00423{transform:matrix(0.315656,0.007891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.315656,0.007891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.315656,0.007891,-0.006248,0.249922,0,0);}
.mf7_c00423{transform:matrix(0.316736,0.003484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316736,0.003484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316736,0.003484,-0.002750,0.249985,0,0);}
.m135_c00423{transform:matrix(0.320159,0.005443,-0.004249,0.249964,0,0);-ms-transform:matrix(0.320159,0.005443,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.320159,0.005443,-0.004249,0.249964,0,0);}
.m7_c00423{transform:matrix(0.323767,0.002914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.323767,0.002914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.323767,0.002914,-0.002250,0.249990,0,0);}
.m13f_c00423{transform:matrix(0.336940,0.008423,-0.006248,0.249922,0,0);-ms-transform:matrix(0.336940,0.008423,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.336940,0.008423,-0.006248,0.249922,0,0);}
.m120_c00423{transform:matrix(0.337437,0.005399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337437,0.005399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337437,0.005399,-0.003999,0.249968,0,0);}
.m83_c00423{transform:matrix(0.342524,0.003768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342524,0.003768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342524,0.003768,-0.002750,0.249985,0,0);}
.md2_c00423{transform:matrix(0.342939,0.003772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342939,0.003772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342939,0.003772,-0.002750,0.249985,0,0);}
.m14e_c00423{transform:matrix(0.343168,0.008579,-0.006248,0.249922,0,0);-ms-transform:matrix(0.343168,0.008579,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.343168,0.008579,-0.006248,0.249922,0,0);}
.me9_c00423{transform:matrix(0.344224,0.003786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.344224,0.003786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.344224,0.003786,-0.002750,0.249985,0,0);}
.mc2_c00423{transform:matrix(0.373073,0.005223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.373073,0.005223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.373073,0.005223,-0.003500,0.249976,0,0);}
.m16b_c00423{transform:matrix(0.379756,0.007215,-0.004749,0.249955,0,0);-ms-transform:matrix(0.379756,0.007215,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.379756,0.007215,-0.004749,0.249955,0,0);}
.meb_c00423{transform:matrix(0.381662,0.004198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.381662,0.004198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.381662,0.004198,-0.002750,0.249985,0,0);}
.m169_c00423{transform:matrix(0.389060,0.007392,-0.004749,0.249955,0,0);-ms-transform:matrix(0.389060,0.007392,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.389060,0.007392,-0.004749,0.249955,0,0);}
.mfa_c00423{transform:matrix(0.396313,0.007530,-0.004749,0.249955,0,0);-ms-transform:matrix(0.396313,0.007530,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.396313,0.007530,-0.004749,0.249955,0,0);}
.m122_c00423{transform:matrix(0.400479,0.006408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.400479,0.006408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.400479,0.006408,-0.003999,0.249968,0,0);}
.m9_c00423{transform:matrix(0.405184,0.003647,-0.002250,0.249990,0,0);-ms-transform:matrix(0.405184,0.003647,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.405184,0.003647,-0.002250,0.249990,0,0);}
.m124_c00423{transform:matrix(0.414222,0.006628,-0.003999,0.249968,0,0);-ms-transform:matrix(0.414222,0.006628,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.414222,0.006628,-0.003999,0.249968,0,0);}
.m146_c00423{transform:matrix(0.425967,0.010649,-0.006248,0.249922,0,0);-ms-transform:matrix(0.425967,0.010649,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.425967,0.010649,-0.006248,0.249922,0,0);}
.m132_c00423{transform:matrix(0.427853,0.007274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.427853,0.007274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.427853,0.007274,-0.004249,0.249964,0,0);}
.m121_c00423{transform:matrix(0.431635,0.006906,-0.003999,0.249968,0,0);-ms-transform:matrix(0.431635,0.006906,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.431635,0.006906,-0.003999,0.249968,0,0);}
.m147_c00423{transform:matrix(0.438438,0.010961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.438438,0.010961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.438438,0.010961,-0.006248,0.249922,0,0);}
.m13a_c00423{transform:matrix(0.455678,0.011392,-0.006248,0.249922,0,0);-ms-transform:matrix(0.455678,0.011392,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.455678,0.011392,-0.006248,0.249922,0,0);}
.m157_c00423{transform:matrix(0.479785,0.011995,-0.006248,0.249922,0,0);-ms-transform:matrix(0.479785,0.011995,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.479785,0.011995,-0.006248,0.249922,0,0);}
.m12c_c00423{transform:matrix(0.483388,0.007734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.483388,0.007734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.483388,0.007734,-0.003999,0.249968,0,0);}
.m8_c00423{transform:matrix(0.483490,0.004351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.483490,0.004351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.483490,0.004351,-0.002250,0.249990,0,0);}
.m10c_c00423{transform:matrix(0.493376,0.009374,-0.004749,0.249955,0,0);-ms-transform:matrix(0.493376,0.009374,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.493376,0.009374,-0.004749,0.249955,0,0);}
.mf8_c00423{transform:matrix(0.496970,0.005467,-0.002750,0.249985,0,0);-ms-transform:matrix(0.496970,0.005467,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.496970,0.005467,-0.002750,0.249985,0,0);}
.mf9_c00423{transform:matrix(0.512612,0.009740,-0.004749,0.249955,0,0);-ms-transform:matrix(0.512612,0.009740,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.512612,0.009740,-0.004749,0.249955,0,0);}
.m3_c00423{transform:matrix(0.516854,0.004652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.516854,0.004652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.516854,0.004652,-0.002250,0.249990,0,0);}
.m151_c00423{transform:matrix(0.519923,0.012998,-0.006248,0.249922,0,0);-ms-transform:matrix(0.519923,0.012998,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.519923,0.012998,-0.006248,0.249922,0,0);}
.m168_c00423{transform:matrix(0.523770,0.009952,-0.004749,0.249955,0,0);-ms-transform:matrix(0.523770,0.009952,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.523770,0.009952,-0.004749,0.249955,0,0);}
.ma_c00423{transform:matrix(0.525029,0.004725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.525029,0.004725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.525029,0.004725,-0.002250,0.249990,0,0);}
.m136_c00423{transform:matrix(0.530539,0.013263,-0.006248,0.249922,0,0);-ms-transform:matrix(0.530539,0.013263,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.530539,0.013263,-0.006248,0.249922,0,0);}
.mf6_c00423{transform:matrix(0.539672,0.005936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.539672,0.005936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.539672,0.005936,-0.002750,0.249985,0,0);}
.m13d_c00423{transform:matrix(0.544555,0.013614,-0.006248,0.249922,0,0);-ms-transform:matrix(0.544555,0.013614,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.544555,0.013614,-0.006248,0.249922,0,0);}
.m11c_c00423{transform:matrix(0.558270,0.012282,-0.005499,0.249940,0,0);-ms-transform:matrix(0.558270,0.012282,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.558270,0.012282,-0.005499,0.249940,0,0);}
.m16a_c00423{transform:matrix(0.573916,0.010904,-0.004749,0.249955,0,0);-ms-transform:matrix(0.573916,0.010904,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.573916,0.010904,-0.004749,0.249955,0,0);}
.m6_c00423{transform:matrix(0.597526,0.005378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.597526,0.005378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.597526,0.005378,-0.002250,0.249990,0,0);}
.m170_c00423{transform:matrix(0.598565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598565,0.000000,0.000000,0.250000,0,0);}
.m171_c00423{transform:matrix(0.608350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608350,0.000000,0.000000,0.250000,0,0);}
.m16e_c00423{transform:matrix(0.656245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656245,0.000000,0.000000,0.250000,0,0);}
.mde_c00423{transform:matrix(0.737250,0.008110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.737250,0.008110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.737250,0.008110,-0.002750,0.249985,0,0);}
.mc_c00423{transform:matrix(0.748220,0.006734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.748220,0.006734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.748220,0.006734,-0.002250,0.249990,0,0);}
.m137_c00423{transform:matrix(0.778462,0.019462,-0.006248,0.249922,0,0);-ms-transform:matrix(0.778462,0.019462,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.778462,0.019462,-0.006248,0.249922,0,0);}
.m12d_c00423{transform:matrix(0.810698,0.013782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.810698,0.013782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.810698,0.013782,-0.004249,0.249964,0,0);}
.m11b_c00423{transform:matrix(0.897753,0.019751,-0.005499,0.249940,0,0);-ms-transform:matrix(0.897753,0.019751,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.897753,0.019751,-0.005499,0.249940,0,0);}
.m16c_c00423{transform:matrix(0.931917,0.017706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.931917,0.017706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.931917,0.017706,-0.004749,0.249955,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;}
.fc0_c00423{color:transparent;}
.fs1c_c00423{font-size:29.407114px;}
.fs14_c00423{font-size:36.752223px;}
.fs1a_c00423{font-size:36.756633px;}
.fs18_c00423{font-size:37.806822px;}
.fs22_c00423{font-size:45.158149px;}
.fs0_c00423{font-size:47.251914px;}
.fs1d_c00423{font-size:47.256048px;}
.fs15_c00423{font-size:48.302922px;}
.fs1f_c00423{font-size:48.315091px;}
.fs1b_c00423{font-size:50.412195px;}
.fs20_c00423{font-size:50.415748px;}
.fs1e_c00423{font-size:51.457434px;}
.fs26_c00423{font-size:52.500000px;}
.fs21_c00423{font-size:52.509475px;}
.fs25_c00423{font-size:53.550000px;}
.fs13_c00423{font-size:53.555248px;}
.fs23_c00423{font-size:54.609854px;}
.fs16_c00423{font-size:55.653367px;}
.fs17_c00423{font-size:59.853621px;}
.fs19_c00423{font-size:59.860802px;}
.fs24_c00423{font-size:60.900000px;}
.fs2_c00423{font-size:60.902466px;}
.fs6_c00423{font-size:67.200000px;}
.fsa_c00423{font-size:68.252184px;}
.fsf_c00423{font-size:68.252764px;}
.fs4_c00423{font-size:69.300000px;}
.fsc_c00423{font-size:69.304193px;}
.fs7_c00423{font-size:70.350000px;}
.fs9_c00423{font-size:70.352251px;}
.fs11_c00423{font-size:70.356894px;}
.fsd_c00423{font-size:71.402892px;}
.fs12_c00423{font-size:71.406997px;}
.fs8_c00423{font-size:72.450000px;}
.fsb_c00423{font-size:72.454383px;}
.fs10_c00423{font-size:73.504447px;}
.fse_c00423{font-size:74.553019px;}
.fs5_c00423{font-size:75.600000px;}
.fs3_c00423{font-size:133.355401px;}
.fs1_c00423{font-size:148.055996px;}
.y0_c00423{bottom:0.000000px;}
.y132_c00423{bottom:109.608000px;}
.y131_c00423{bottom:124.737000px;}
.y130_c00423{bottom:138.387000px;}
.y12f_c00423{bottom:150.247490px;}
.y124_c00423{bottom:173.783775px;}
.y123_c00423{bottom:174.361875px;}
.y122_c00423{bottom:175.240988px;}
.y12e_c00423{bottom:175.627158px;}
.y121_c00423{bottom:177.199950px;}
.y120_c00423{bottom:177.398663px;}
.y11f_c00423{bottom:178.254300px;}
.y11e_c00423{bottom:179.030962px;}
.y11d_c00423{bottom:179.643638px;}
.y11c_c00423{bottom:180.323175px;}
.y11b_c00423{bottom:180.888525px;}
.y12d_c00423{bottom:188.118414px;}
.y12c_c00423{bottom:188.538134px;}
.y12b_c00423{bottom:189.075530px;}
.y12a_c00423{bottom:189.811143px;}
.y129_c00423{bottom:190.440252px;}
.y128_c00423{bottom:190.989077px;}
.y127_c00423{bottom:191.461037px;}
.y126_c00423{bottom:191.974151px;}
.y125_c00423{bottom:192.513000px;}
.y11a_c00423{bottom:193.779900px;}
.y119_c00423{bottom:201.255375px;}
.y118_c00423{bottom:202.035562px;}
.y117_c00423{bottom:202.517325px;}
.y116_c00423{bottom:202.922962px;}
.y115_c00423{bottom:203.301225px;}
.y114_c00423{bottom:209.466637px;}
.y113_c00423{bottom:213.904050px;}
.y112_c00423{bottom:214.337587px;}
.y111_c00423{bottom:216.028950px;}
.y110_c00423{bottom:216.822675px;}
.y10f_c00423{bottom:217.808887px;}
.y10e_c00423{bottom:218.821425px;}
.y10d_c00423{bottom:219.220050px;}
.y10c_c00423{bottom:220.656525px;}
.y10b_c00423{bottom:221.108812px;}
.y10a_c00423{bottom:221.945737px;}
.y109_c00423{bottom:224.996737px;}
.y108_c00423{bottom:226.687575px;}
.y107_c00423{bottom:227.573400px;}
.y106_c00423{bottom:228.158625px;}
.y105_c00423{bottom:228.767100px;}
.y104_c00423{bottom:229.469212px;}
.y103_c00423{bottom:229.854187px;}
.y102_c00423{bottom:230.765137px;}
.y101_c00423{bottom:231.343275px;}
.y100_c00423{bottom:232.146262px;}
.yff_c00423{bottom:232.795912px;}
.yfe_c00423{bottom:233.265900px;}
.yfd_c00423{bottom:233.601450px;}
.yfc_c00423{bottom:234.139088px;}
.yfb_c00423{bottom:235.151625px;}
.yfa_c00423{bottom:236.067487px;}
.yf9_c00423{bottom:236.524500px;}
.yf8_c00423{bottom:243.081655px;}
.yf7_c00423{bottom:244.074039px;}
.yf6_c00423{bottom:244.615735px;}
.yf5_c00423{bottom:244.845057px;}
.yf4_c00423{bottom:245.382163px;}
.yf3_c00423{bottom:245.780958px;}
.yf2_c00423{bottom:246.800193px;}
.yf1_c00423{bottom:247.489228px;}
.yf0_c00423{bottom:251.566500px;}
.yef_c00423{bottom:261.714864px;}
.yee_c00423{bottom:262.231272px;}
.yed_c00423{bottom:263.134104px;}
.yec_c00423{bottom:263.808000px;}
.yeb_c00423{bottom:264.598656px;}
.ye2_c00423{bottom:264.860253px;}
.yea_c00423{bottom:265.212216px;}
.ye1_c00423{bottom:265.307964px;}
.ye9_c00423{bottom:265.519320px;}
.ye8_c00423{bottom:265.801632px;}
.ye7_c00423{bottom:267.858720px;}
.ye6_c00423{bottom:268.274496px;}
.ye5_c00423{bottom:268.528920px;}
.ye0_c00423{bottom:268.918884px;}
.ye4_c00423{bottom:269.281200px;}
.ye3_c00423{bottom:269.730000px;}
.ydf_c00423{bottom:270.258495px;}
.yde_c00423{bottom:275.086230px;}
.ydd_c00423{bottom:275.995545px;}
.ydc_c00423{bottom:276.888822px;}
.yda_c00423{bottom:277.128897px;}
.ydb_c00423{bottom:277.156320px;}
.yd9_c00423{bottom:278.006565px;}
.yd8_c00423{bottom:278.642112px;}
.yd7_c00423{bottom:278.854731px;}
.yd6_c00423{bottom:279.527370px;}
.yd5_c00423{bottom:280.198293px;}
.yd4_c00423{bottom:281.346000px;}
.yd3_c00423{bottom:282.760284px;}
.yd2_c00423{bottom:285.596571px;}
.yd1_c00423{bottom:289.167458px;}
.yd0_c00423{bottom:291.300761px;}
.ycf_c00423{bottom:291.532672px;}
.yce_c00423{bottom:291.880361px;}
.ycd_c00423{bottom:292.450335px;}
.ycc_c00423{bottom:292.916108px;}
.ycb_c00423{bottom:293.342085px;}
.yca_c00423{bottom:293.765573px;}
.yc9_c00423{bottom:294.203655px;}
.yc8_c00423{bottom:294.748515px;}
.yc7_c00423{bottom:295.087005px;}
.yc6_c00423{bottom:295.635998px;}
.yc5_c00423{bottom:296.127170px;}
.yc4_c00423{bottom:296.550515px;}
.yc3_c00423{bottom:296.773713px;}
.yc2_c00423{bottom:296.939195px;}
.yc1_c00423{bottom:297.621504px;}
.yc0_c00423{bottom:297.954473px;}
.ybf_c00423{bottom:298.491360px;}
.ybe_c00423{bottom:298.617816px;}
.ybd_c00423{bottom:298.992389px;}
.ybc_c00423{bottom:308.883000px;}
.ybb_c00423{bottom:309.643545px;}
.yba_c00423{bottom:309.875438px;}
.yb9_c00423{bottom:313.598811px;}
.yb8_c00423{bottom:314.044140px;}
.yb7_c00423{bottom:314.927442px;}
.yb6_c00423{bottom:315.401914px;}
.yb5_c00423{bottom:316.363146px;}
.yb4_c00423{bottom:317.086383px;}
.yb3_c00423{bottom:317.378690px;}
.yb2_c00423{bottom:317.716599px;}
.yb1_c00423{bottom:317.930531px;}
.yb0_c00423{bottom:318.980808px;}
.yaf_c00423{bottom:319.411573px;}
.yae_c00423{bottom:329.272260px;}
.yad_c00423{bottom:329.912635px;}
.yac_c00423{bottom:330.675390px;}
.yab_c00423{bottom:331.415482px;}
.yaa_c00423{bottom:331.927806px;}
.ya9_c00423{bottom:332.611575px;}
.ya8_c00423{bottom:333.181509px;}
.ya7_c00423{bottom:333.540694px;}
.ya6_c00423{bottom:334.185094px;}
.ya5_c00423{bottom:334.975540px;}
.ya4_c00423{bottom:335.848848px;}
.ya3_c00423{bottom:337.623864px;}
.ya2_c00423{bottom:338.853224px;}
.ya1_c00423{bottom:347.730441px;}
.ya0_c00423{bottom:349.587131px;}
.y9f_c00423{bottom:349.889761px;}
.y9e_c00423{bottom:350.541650px;}
.y9d_c00423{bottom:350.930770px;}
.y9c_c00423{bottom:351.432819px;}
.y9b_c00423{bottom:351.771867px;}
.y9a_c00423{bottom:352.537145px;}
.y99_c00423{bottom:353.249496px;}
.y98_c00423{bottom:353.813344px;}
.y97_c00423{bottom:354.084771px;}
.y96_c00423{bottom:354.992961px;}
.y95_c00423{bottom:355.178359px;}
.y94_c00423{bottom:355.972665px;}
.y93_c00423{bottom:356.296341px;}
.y92_c00423{bottom:356.639397px;}
.y91_c00423{bottom:357.213471px;}
.y90_c00423{bottom:359.103840px;}
.y8f_c00423{bottom:362.866401px;}
.y8e_c00423{bottom:364.500000px;}
.y8d_c00423{bottom:370.270125px;}
.y8c_c00423{bottom:370.643736px;}
.y8b_c00423{bottom:371.131881px;}
.y8a_c00423{bottom:371.736933px;}
.y89_c00423{bottom:371.917722px;}
.y88_c00423{bottom:372.141414px;}
.y87_c00423{bottom:372.984543px;}
.y86_c00423{bottom:373.331589px;}
.y85_c00423{bottom:373.537284px;}
.y84_c00423{bottom:373.759275px;}
.y83_c00423{bottom:374.151996px;}
.y82_c00423{bottom:374.556939px;}
.y81_c00423{bottom:374.964549px;}
.y80_c00423{bottom:375.551457px;}
.y7f_c00423{bottom:375.853836px;}
.y7e_c00423{bottom:376.432113px;}
.y7d_c00423{bottom:376.651500px;}
.y7c_c00423{bottom:421.875525px;}
.y7b_c00423{bottom:422.321460px;}
.y7a_c00423{bottom:422.570919px;}
.y79_c00423{bottom:423.410583px;}
.y78_c00423{bottom:423.953580px;}
.y77_c00423{bottom:424.631187px;}
.y76_c00423{bottom:425.296404px;}
.y75_c00423{bottom:425.858826px;}
.y74_c00423{bottom:426.464529px;}
.y73_c00423{bottom:426.873000px;}
.y72_c00423{bottom:445.075110px;}
.y71_c00423{bottom:445.354641px;}
.y70_c00423{bottom:445.849401px;}
.y6f_c00423{bottom:446.201592px;}
.y6e_c00423{bottom:447.021075px;}
.y6d_c00423{bottom:447.653175px;}
.y6c_c00423{bottom:448.156545px;}
.y6b_c00423{bottom:448.881654px;}
.y6a_c00423{bottom:449.463081px;}
.y69_c00423{bottom:449.823000px;}
.y68_c00423{bottom:469.287663px;}
.y67_c00423{bottom:469.629394px;}
.y66_c00423{bottom:470.166899px;}
.y65_c00423{bottom:470.541135px;}
.y64_c00423{bottom:470.748886px;}
.y63_c00423{bottom:471.378295px;}
.y62_c00423{bottom:471.669207px;}
.y61_c00423{bottom:471.987591px;}
.y60_c00423{bottom:472.501500px;}
.y5f_c00423{bottom:492.148198px;}
.y5e_c00423{bottom:492.434614px;}
.y5d_c00423{bottom:492.877252px;}
.y5c_c00423{bottom:493.110519px;}
.y5b_c00423{bottom:493.693800px;}
.y5a_c00423{bottom:494.250243px;}
.y59_c00423{bottom:494.437366px;}
.y58_c00423{bottom:494.641500px;}
.y57_c00423{bottom:514.107252px;}
.y56_c00423{bottom:514.762323px;}
.y55_c00423{bottom:515.201895px;}
.y54_c00423{bottom:515.476940px;}
.y53_c00423{bottom:515.771928px;}
.y52_c00423{bottom:516.610310px;}
.y51_c00423{bottom:516.854610px;}
.y50_c00423{bottom:517.861353px;}
.y4f_c00423{bottom:538.352232px;}
.y4e_c00423{bottom:538.682739px;}
.y4d_c00423{bottom:539.052018px;}
.y4c_c00423{bottom:539.219769px;}
.y4b_c00423{bottom:539.744649px;}
.y4a_c00423{bottom:539.956154px;}
.y49_c00423{bottom:540.249752px;}
.y48_c00423{bottom:540.434472px;}
.y47_c00423{bottom:540.811500px;}
.y46_c00423{bottom:560.168873px;}
.y45_c00423{bottom:560.679054px;}
.y44_c00423{bottom:561.132684px;}
.y43_c00423{bottom:561.513987px;}
.y42_c00423{bottom:561.837288px;}
.y41_c00423{bottom:562.117734px;}
.y40_c00423{bottom:562.858064px;}
.y3f_c00423{bottom:563.760027px;}
.y3e_c00423{bottom:583.242325px;}
.y3d_c00423{bottom:583.595904px;}
.y3c_c00423{bottom:584.210826px;}
.y3b_c00423{bottom:584.641295px;}
.y3a_c00423{bottom:585.101678px;}
.y39_c00423{bottom:585.478950px;}
.y38_c00423{bottom:585.840845px;}
.y37_c00423{bottom:586.102650px;}
.y36_c00423{bottom:586.711500px;}
.y35_c00423{bottom:607.656000px;}
.y34_c00423{bottom:629.961000px;}
.y33_c00423{bottom:653.171532px;}
.y32_c00423{bottom:653.172240px;}
.y2f_c00423{bottom:653.172384px;}
.y30_c00423{bottom:653.172396px;}
.y2e_c00423{bottom:653.172444px;}
.y31_c00423{bottom:653.172648px;}
.y2d_c00423{bottom:653.172852px;}
.y29_c00423{bottom:653.172924px;}
.y28_c00423{bottom:653.173152px;}
.y2c_c00423{bottom:653.173260px;}
.y2a_c00423{bottom:653.173356px;}
.y2b_c00423{bottom:653.173728px;}
.y27_c00423{bottom:673.871688px;}
.y26_c00423{bottom:674.256276px;}
.y25_c00423{bottom:674.413896px;}
.y24_c00423{bottom:674.627748px;}
.y23_c00423{bottom:674.969052px;}
.y22_c00423{bottom:675.120264px;}
.y21_c00423{bottom:675.340320px;}
.y20_c00423{bottom:675.614892px;}
.y1f_c00423{bottom:675.878112px;}
.y1e_c00423{bottom:676.353624px;}
.y1d_c00423{bottom:676.560972px;}
.y1c_c00423{bottom:676.945440px;}
.y1b_c00423{bottom:677.161500px;}
.y1a_c00423{bottom:699.255000px;}
.y19_c00423{bottom:722.037000px;}
.y18_c00423{bottom:744.561000px;}
.y17_c00423{bottom:767.151000px;}
.y16_c00423{bottom:790.078500px;}
.y15_c00423{bottom:812.871000px;}
.y14_c00423{bottom:835.732500px;}
.y10_c00423{bottom:879.469981px;}
.y11_c00423{bottom:879.470128px;}
.yf_c00423{bottom:879.470284px;}
.y12_c00423{bottom:879.470425px;}
.ye_c00423{bottom:879.470767px;}
.y13_c00423{bottom:879.471052px;}
.yd_c00423{bottom:907.094578px;}
.yc_c00423{bottom:919.500180px;}
.yb_c00423{bottom:921.886992px;}
.ya_c00423{bottom:923.138380px;}
.y9_c00423{bottom:941.077534px;}
.y8_c00423{bottom:941.599876px;}
.y7_c00423{bottom:942.404895px;}
.y6_c00423{bottom:942.592302px;}
.y5_c00423{bottom:942.700599px;}
.y4_c00423{bottom:943.080475px;}
.y3_c00423{bottom:943.641832px;}
.y2_c00423{bottom:944.259052px;}
.y1_c00423{bottom:944.730000px;}
.h1e_c00423{height:29.407114px;}
.h16_c00423{height:36.752223px;}
.h1c_c00423{height:36.756633px;}
.h1a_c00423{height:37.806822px;}
.h24_c00423{height:45.158149px;}
.h2_c00423{height:47.251914px;}
.h1f_c00423{height:47.256048px;}
.h17_c00423{height:48.302922px;}
.h21_c00423{height:48.315091px;}
.h1d_c00423{height:50.412195px;}
.h22_c00423{height:50.415748px;}
.h20_c00423{height:51.457434px;}
.h28_c00423{height:52.500000px;}
.h23_c00423{height:52.509475px;}
.h27_c00423{height:53.550000px;}
.h15_c00423{height:53.555248px;}
.h25_c00423{height:54.609854px;}
.h18_c00423{height:55.653367px;}
.h19_c00423{height:59.853621px;}
.h1b_c00423{height:59.860802px;}
.h26_c00423{height:60.900000px;}
.h4_c00423{height:60.902466px;}
.h8_c00423{height:67.200000px;}
.hc_c00423{height:68.252184px;}
.h11_c00423{height:68.252764px;}
.h6_c00423{height:69.300000px;}
.he_c00423{height:69.304193px;}
.h9_c00423{height:70.350000px;}
.hb_c00423{height:70.352251px;}
.h13_c00423{height:70.356894px;}
.hf_c00423{height:71.402892px;}
.h14_c00423{height:71.406997px;}
.ha_c00423{height:72.450000px;}
.hd_c00423{height:72.454383px;}
.h12_c00423{height:73.504447px;}
.h10_c00423{height:74.553019px;}
.h7_c00423{height:75.600000px;}
.h5_c00423{height:133.355401px;}
.h3_c00423{height:148.055996px;}
.h0_c00423{height:1008.450000px;}
.h1_c00423{height:1008.750000px;}
.w1_c00423{width:689.250000px;}
.w0_c00423{width:689.550000px;}
.x0_c00423{left:0.000000px;}
.xcc_c00423{left:79.380000px;}
.xca_c00423{left:82.080000px;}
.xa_c00423{left:84.213017px;}
.x9b_c00423{left:127.561500px;}
.x9c_c00423{left:130.403558px;}
.x8d_c00423{left:136.228924px;}
.x83_c00423{left:139.408747px;}
.xd_c00423{left:140.668608px;}
.xcb_c00423{left:146.340000px;}
.x73_c00423{left:151.323000px;}
.xbf_c00423{left:153.660450px;}
.x80_c00423{left:156.852000px;}
.x93_c00423{left:158.823588px;}
.xbb_c00423{left:159.937387px;}
.xac_c00423{left:164.910000px;}
.x74_c00423{left:166.993500px;}
.x84_c00423{left:169.640091px;}
.x63_c00423{left:172.381500px;}
.x3a_c00423{left:173.772000px;}
.x1a_c00423{left:175.230000px;}
.x11_c00423{left:176.310000px;}
.x9d_c00423{left:177.794561px;}
.xbc_c00423{left:181.266075px;}
.x85_c00423{left:187.734507px;}
.xa7_c00423{left:191.515500px;}
.xb4_c00423{left:193.585500px;}
.x61_c00423{left:196.173000px;}
.x2e_c00423{left:198.450000px;}
.x1b_c00423{left:201.690000px;}
.x86_c00423{left:204.749005px;}
.xbd_c00423{left:206.660400px;}
.x12_c00423{left:208.710000px;}
.xad_c00423{left:211.927500px;}
.x37_c00423{left:213.030000px;}
.x94_c00423{left:214.071220px;}
.x23_c00423{left:215.460000px;}
.xe_c00423{left:216.541751px;}
.x64_c00423{left:219.100500px;}
.x1_c00423{left:222.183000px;}
.x95_c00423{left:225.336730px;}
.xae_c00423{left:227.829000px;}
.x51_c00423{left:229.360500px;}
.xc0_c00423{left:234.447000px;}
.x1c_c00423{left:235.710000px;}
.x69_c00423{left:239.325000px;}
.xb_c00423{left:240.590921px;}
.x96_c00423{left:243.099663px;}
.x24_c00423{left:244.620000px;}
.x87_c00423{left:246.545826px;}
.xbe_c00423{left:247.714050px;}
.x3b_c00423{left:248.838000px;}
.x42_c00423{left:250.290504px;}
.x52_c00423{left:253.161000px;}
.x13_c00423{left:256.500000px;}
.x97_c00423{left:258.489810px;}
.x1d_c00423{left:261.090000px;}
.xa8_c00423{left:262.251000px;}
.x2a_c00423{left:263.520000px;}
.x5c_c00423{left:264.724817px;}
.x2f_c00423{left:269.190000px;}
.xb5_c00423{left:270.721500px;}
.x75_c00423{left:271.819500px;}
.x2_c00423{left:274.510500px;}
.x43_c00423{left:278.370804px;}
.x25_c00423{left:282.420000px;}
.x53_c00423{left:286.060500px;}
.x5a_c00423{left:291.762000px;}
.x14_c00423{left:294.570000px;}
.x98_c00423{left:296.553460px;}
.x1e_c00423{left:298.620000px;}
.x76_c00423{left:300.934500px;}
.xb9_c00423{left:301.941000px;}
.x2b_c00423{left:303.210000px;}
.x81_c00423{left:305.361000px;}
.x9e_c00423{left:308.243929px;}
.x44_c00423{left:312.931512px;}
.xc1_c00423{left:314.111512px;}
.x88_c00423{left:318.404506px;}
.x54_c00423{left:320.358000px;}
.x30_c00423{left:324.810000px;}
.x6a_c00423{left:327.073500px;}
.x77_c00423{left:329.859000px;}
.x65_c00423{left:331.710000px;}
.x6e_c00423{left:333.015000px;}
.x3c_c00423{left:334.195500px;}
.x26_c00423{left:336.690000px;}
.x4e_c00423{left:338.580000px;}
.x8e_c00423{left:340.363972px;}
.xa9_c00423{left:341.946000px;}
.x3_c00423{left:343.090500px;}
.x1f_c00423{left:346.140000px;}
.x15_c00423{left:349.110000px;}
.x66_c00423{left:350.596500px;}
.x31_c00423{left:353.160000px;}
.x27_c00423{left:356.670000px;}
.xf_c00423{left:358.837280px;}
.x4f_c00423{left:363.150000px;}
.x3d_c00423{left:367.098000px;}
.x5b_c00423{left:368.721000px;}
.x16_c00423{left:370.710000px;}
.x6b_c00423{left:372.223500px;}
.x78_c00423{left:373.767000px;}
.x38_c00423{left:375.570000px;}
.x2c_c00423{left:378.000000px;}
.x4a_c00423{left:379.080000px;}
.x6f_c00423{left:381.415500px;}
.x9f_c00423{left:382.496469px;}
.x67_c00423{left:384.618000px;}
.x45_c00423{left:386.913240px;}
.x79_c00423{left:388.459500px;}
.x5d_c00423{left:389.797049px;}
.x20_c00423{left:392.850000px;}
.x28_c00423{left:393.930000px;}
.x32_c00423{left:395.010000px;}
.x57_c00423{left:398.943574px;}
.xaf_c00423{left:400.027500px;}
.x3e_c00423{left:401.419500px;}
.x4b_c00423{left:403.650000px;}
.x4_c00423{left:405.463500px;}
.xa0_c00423{left:406.708777px;}
.x35_c00423{left:409.590000px;}
.x7a_c00423{left:413.248500px;}
.x5e_c00423{left:414.857103px;}
.xc3_c00423{left:416.695500px;}
.x2d_c00423{left:419.040000px;}
.x70_c00423{left:420.201000px;}
.x17_c00423{left:421.470000px;}
.x39_c00423{left:423.090000px;}
.x89_c00423{left:425.847552px;}
.x33_c00423{left:428.760000px;}
.x29_c00423{left:431.190000px;}
.x10_c00423{left:434.440409px;}
.x58_c00423{left:437.016987px;}
.x46_c00423{left:438.485040px;}
.xba_c00423{left:440.793000px;}
.x99_c00423{left:442.025656px;}
.x4c_c00423{left:443.880000px;}
.xc4_c00423{left:445.056000px;}
.x36_c00423{left:446.310000px;}
.x5_c00423{left:447.672000px;}
.x62_c00423{left:450.525000px;}
.x5f_c00423{left:454.864388px;}
.x6c_c00423{left:455.914500px;}
.x55_c00423{left:457.246500px;}
.x6_c00423{left:459.705000px;}
.x34_c00423{left:460.890000px;}
.xc2_c00423{left:462.585900px;}
.x68_c00423{left:464.548500px;}
.x50_c00423{left:467.370000px;}
.x4d_c00423{left:470.070000px;}
.xc5_c00423{left:472.062000px;}
.x7b_c00423{left:473.472000px;}
.xa1_c00423{left:476.922946px;}
.x21_c00423{left:478.170000px;}
.x7_c00423{left:480.528000px;}
.x47_c00423{left:481.956324px;}
.xb6_c00423{left:485.601000px;}
.x18_c00423{left:487.890000px;}
.x56_c00423{left:489.390000px;}
.x3f_c00423{left:490.491000px;}
.xc6_c00423{left:496.902000px;}
.x71_c00423{left:497.995500px;}
.x8f_c00423{left:500.689348px;}
.x7c_c00423{left:502.363500px;}
.x48_c00423{left:505.446324px;}
.xa2_c00423{left:507.188325px;}
.xb7_c00423{left:509.940000px;}
.x6d_c00423{left:511.221000px;}
.x60_c00423{left:514.482321px;}
.x40_c00423{left:517.222500px;}
.x19_c00423{left:523.530000px;}
.x8a_c00423{left:524.939340px;}
.x90_c00423{left:527.625472px;}
.x72_c00423{left:529.848000px;}
.xa6_c00423{left:531.656043px;}
.x59_c00423{left:533.364543px;}
.x22_c00423{left:536.760000px;}
.xc_c00423{left:538.961607px;}
.x8b_c00423{left:540.858937px;}
.x49_c00423{left:543.787272px;}
.x7d_c00423{left:545.581500px;}
.xb0_c00423{left:549.103500px;}
.xb2_c00423{left:550.384500px;}
.xc7_c00423{left:558.898500px;}
.x91_c00423{left:566.539540px;}
.xb8_c00423{left:568.782000px;}
.x8_c00423{left:569.974500px;}
.x7e_c00423{left:580.449000px;}
.xb3_c00423{left:582.249000px;}
.x41_c00423{left:584.998500px;}
.xc8_c00423{left:597.615000px;}
.xb1_c00423{left:605.530500px;}
.x7f_c00423{left:607.135500px;}
.xa3_c00423{left:611.683771px;}
.xc9_c00423{left:625.899000px;}
.x9_c00423{left:628.012500px;}
.xa4_c00423{left:636.538137px;}
.x8c_c00423{left:638.594841px;}
.x92_c00423{left:640.363039px;}
.xaa_c00423{left:643.324500px;}
.x82_c00423{left:647.412000px;}
.x9a_c00423{left:650.213341px;}
.xa5_c00423{left:653.087704px;}
.xab_c00423{left:660.725214px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.fs1c_c00423{font-size:26.139657pt;}
.fs14_c00423{font-size:32.668643pt;}
.fs1a_c00423{font-size:32.672562pt;}
.fs18_c00423{font-size:33.606064pt;}
.fs22_c00423{font-size:40.140577pt;}
.fs0_c00423{font-size:42.001701pt;}
.fs1d_c00423{font-size:42.005376pt;}
.fs15_c00423{font-size:42.935931pt;}
.fs1f_c00423{font-size:42.946748pt;}
.fs1b_c00423{font-size:44.810840pt;}
.fs20_c00423{font-size:44.813998pt;}
.fs1e_c00423{font-size:45.739941pt;}
.fs26_c00423{font-size:46.666667pt;}
.fs21_c00423{font-size:46.675089pt;}
.fs25_c00423{font-size:47.600000pt;}
.fs13_c00423{font-size:47.604665pt;}
.fs23_c00423{font-size:48.542093pt;}
.fs16_c00423{font-size:49.469659pt;}
.fs17_c00423{font-size:53.203219pt;}
.fs19_c00423{font-size:53.209602pt;}
.fs24_c00423{font-size:54.133333pt;}
.fs2_c00423{font-size:54.135526pt;}
.fs6_c00423{font-size:59.733333pt;}
.fsa_c00423{font-size:60.668608pt;}
.fsf_c00423{font-size:60.669124pt;}
.fs4_c00423{font-size:61.600000pt;}
.fsc_c00423{font-size:61.603727pt;}
.fs7_c00423{font-size:62.533333pt;}
.fs9_c00423{font-size:62.535334pt;}
.fs11_c00423{font-size:62.539461pt;}
.fsd_c00423{font-size:63.469237pt;}
.fs12_c00423{font-size:63.472886pt;}
.fs8_c00423{font-size:64.400000pt;}
.fsb_c00423{font-size:64.403896pt;}
.fs10_c00423{font-size:65.337286pt;}
.fse_c00423{font-size:66.269350pt;}
.fs5_c00423{font-size:67.200000pt;}
.fs3_c00423{font-size:118.538134pt;}
.fs1_c00423{font-size:131.605330pt;}
.y0_c00423{bottom:0.000000pt;}
.y132_c00423{bottom:97.429333pt;}
.y131_c00423{bottom:110.877333pt;}
.y130_c00423{bottom:123.010667pt;}
.y12f_c00423{bottom:133.553324pt;}
.y124_c00423{bottom:154.474467pt;}
.y123_c00423{bottom:154.988333pt;}
.y122_c00423{bottom:155.769767pt;}
.y12e_c00423{bottom:156.113029pt;}
.y121_c00423{bottom:157.511067pt;}
.y120_c00423{bottom:157.687700pt;}
.y11f_c00423{bottom:158.448267pt;}
.y11e_c00423{bottom:159.138633pt;}
.y11d_c00423{bottom:159.683233pt;}
.y11c_c00423{bottom:160.287267pt;}
.y11b_c00423{bottom:160.789800pt;}
.y12d_c00423{bottom:167.216368pt;}
.y12c_c00423{bottom:167.589452pt;}
.y12b_c00423{bottom:168.067137pt;}
.y12a_c00423{bottom:168.721016pt;}
.y129_c00423{bottom:169.280224pt;}
.y128_c00423{bottom:169.768068pt;}
.y127_c00423{bottom:170.187588pt;}
.y126_c00423{bottom:170.643689pt;}
.y125_c00423{bottom:171.122667pt;}
.y11a_c00423{bottom:172.248800pt;}
.y119_c00423{bottom:178.893667pt;}
.y118_c00423{bottom:179.587167pt;}
.y117_c00423{bottom:180.015400pt;}
.y116_c00423{bottom:180.375967pt;}
.y115_c00423{bottom:180.712200pt;}
.y114_c00423{bottom:186.192567pt;}
.y113_c00423{bottom:190.136933pt;}
.y112_c00423{bottom:190.522300pt;}
.y111_c00423{bottom:192.025733pt;}
.y110_c00423{bottom:192.731267pt;}
.y10f_c00423{bottom:193.607900pt;}
.y10e_c00423{bottom:194.507933pt;}
.y10d_c00423{bottom:194.862267pt;}
.y10c_c00423{bottom:196.139133pt;}
.y10b_c00423{bottom:196.541167pt;}
.y10a_c00423{bottom:197.285100pt;}
.y109_c00423{bottom:199.997100pt;}
.y108_c00423{bottom:201.500067pt;}
.y107_c00423{bottom:202.287467pt;}
.y106_c00423{bottom:202.807667pt;}
.y105_c00423{bottom:203.348533pt;}
.y104_c00423{bottom:203.972633pt;}
.y103_c00423{bottom:204.314833pt;}
.y102_c00423{bottom:205.124567pt;}
.y101_c00423{bottom:205.638467pt;}
.y100_c00423{bottom:206.352233pt;}
.yff_c00423{bottom:206.929700pt;}
.yfe_c00423{bottom:207.347467pt;}
.yfd_c00423{bottom:207.645733pt;}
.yfc_c00423{bottom:208.123633pt;}
.yfb_c00423{bottom:209.023667pt;}
.yfa_c00423{bottom:209.837767pt;}
.yf9_c00423{bottom:210.244000pt;}
.yf8_c00423{bottom:216.072583pt;}
.yf7_c00423{bottom:216.954701pt;}
.yf6_c00423{bottom:217.436209pt;}
.yf5_c00423{bottom:217.640051pt;}
.yf4_c00423{bottom:218.117479pt;}
.yf3_c00423{bottom:218.471963pt;}
.yf2_c00423{bottom:219.377949pt;}
.yf1_c00423{bottom:219.990425pt;}
.yf0_c00423{bottom:223.614667pt;}
.yef_c00423{bottom:232.635435pt;}
.yee_c00423{bottom:233.094464pt;}
.yed_c00423{bottom:233.896981pt;}
.yec_c00423{bottom:234.496000pt;}
.yeb_c00423{bottom:235.198805pt;}
.ye2_c00423{bottom:235.431336pt;}
.yea_c00423{bottom:235.744192pt;}
.ye1_c00423{bottom:235.829301pt;}
.ye9_c00423{bottom:236.017173pt;}
.ye8_c00423{bottom:236.268117pt;}
.ye7_c00423{bottom:238.096640pt;}
.ye6_c00423{bottom:238.466219pt;}
.ye5_c00423{bottom:238.692373pt;}
.ye0_c00423{bottom:239.039008pt;}
.ye4_c00423{bottom:239.361067pt;}
.ye3_c00423{bottom:239.760000pt;}
.ydf_c00423{bottom:240.229773pt;}
.yde_c00423{bottom:244.521093pt;}
.ydd_c00423{bottom:245.329373pt;}
.ydc_c00423{bottom:246.123397pt;}
.yda_c00423{bottom:246.336797pt;}
.ydb_c00423{bottom:246.361173pt;}
.yd9_c00423{bottom:247.116947pt;}
.yd8_c00423{bottom:247.681877pt;}
.yd7_c00423{bottom:247.870872pt;}
.yd6_c00423{bottom:248.468773pt;}
.yd5_c00423{bottom:249.065149pt;}
.yd4_c00423{bottom:250.085333pt;}
.yd3_c00423{bottom:251.342475pt;}
.yd2_c00423{bottom:253.863619pt;}
.yd1_c00423{bottom:257.037740pt;}
.yd0_c00423{bottom:258.934009pt;}
.ycf_c00423{bottom:259.140153pt;}
.yce_c00423{bottom:259.449209pt;}
.ycd_c00423{bottom:259.955853pt;}
.ycc_c00423{bottom:260.369873pt;}
.ycb_c00423{bottom:260.748520pt;}
.yca_c00423{bottom:261.124953pt;}
.yc9_c00423{bottom:261.514360pt;}
.yc8_c00423{bottom:261.998680pt;}
.yc7_c00423{bottom:262.299560pt;}
.yc6_c00423{bottom:262.787553pt;}
.yc5_c00423{bottom:263.224151pt;}
.yc4_c00423{bottom:263.600457pt;}
.yc3_c00423{bottom:263.798856pt;}
.yc2_c00423{bottom:263.945951pt;}
.yc1_c00423{bottom:264.552448pt;}
.yc0_c00423{bottom:264.848420pt;}
.ybf_c00423{bottom:265.325653pt;}
.ybe_c00423{bottom:265.438059pt;}
.ybd_c00423{bottom:265.771012pt;}
.ybc_c00423{bottom:274.562667pt;}
.ybb_c00423{bottom:275.238707pt;}
.yba_c00423{bottom:275.444833pt;}
.yb9_c00423{bottom:278.754499pt;}
.yb8_c00423{bottom:279.150347pt;}
.yb7_c00423{bottom:279.935504pt;}
.yb6_c00423{bottom:280.357257pt;}
.yb5_c00423{bottom:281.211685pt;}
.yb4_c00423{bottom:281.854563pt;}
.yb3_c00423{bottom:282.114391pt;}
.yb2_c00423{bottom:282.414755pt;}
.yb1_c00423{bottom:282.604916pt;}
.yb0_c00423{bottom:283.538496pt;}
.yaf_c00423{bottom:283.921399pt;}
.yae_c00423{bottom:292.686453pt;}
.yad_c00423{bottom:293.255676pt;}
.yac_c00423{bottom:293.933680pt;}
.yab_c00423{bottom:294.591540pt;}
.yaa_c00423{bottom:295.046939pt;}
.ya9_c00423{bottom:295.654733pt;}
.ya8_c00423{bottom:296.161341pt;}
.ya7_c00423{bottom:296.480617pt;}
.ya6_c00423{bottom:297.053417pt;}
.ya5_c00423{bottom:297.756036pt;}
.ya4_c00423{bottom:298.532309pt;}
.ya3_c00423{bottom:300.110101pt;}
.ya2_c00423{bottom:301.202865pt;}
.ya1_c00423{bottom:309.093725pt;}
.ya0_c00423{bottom:310.744116pt;}
.y9f_c00423{bottom:311.013121pt;}
.y9e_c00423{bottom:311.592577pt;}
.y9d_c00423{bottom:311.938463pt;}
.y9c_c00423{bottom:312.384728pt;}
.y9b_c00423{bottom:312.686104pt;}
.y9a_c00423{bottom:313.366351pt;}
.y99_c00423{bottom:313.999552pt;}
.y98_c00423{bottom:314.500751pt;}
.y97_c00423{bottom:314.742019pt;}
.y96_c00423{bottom:315.549299pt;}
.y95_c00423{bottom:315.714097pt;}
.y94_c00423{bottom:316.420147pt;}
.y93_c00423{bottom:316.707859pt;}
.y92_c00423{bottom:317.012797pt;}
.y91_c00423{bottom:317.523085pt;}
.y90_c00423{bottom:319.203413pt;}
.y8f_c00423{bottom:322.547912pt;}
.y8e_c00423{bottom:324.000000pt;}
.y8d_c00423{bottom:329.129000pt;}
.y8c_c00423{bottom:329.461099pt;}
.y8b_c00423{bottom:329.895005pt;}
.y8a_c00423{bottom:330.432829pt;}
.y89_c00423{bottom:330.593531pt;}
.y88_c00423{bottom:330.792368pt;}
.y87_c00423{bottom:331.541816pt;}
.y86_c00423{bottom:331.850301pt;}
.y85_c00423{bottom:332.033141pt;}
.y84_c00423{bottom:332.230467pt;}
.y83_c00423{bottom:332.579552pt;}
.y82_c00423{bottom:332.939501pt;}
.y81_c00423{bottom:333.301821pt;}
.y80_c00423{bottom:333.823517pt;}
.y7f_c00423{bottom:334.092299pt;}
.y7e_c00423{bottom:334.606323pt;}
.y7d_c00423{bottom:334.801333pt;}
.y7c_c00423{bottom:375.000467pt;}
.y7b_c00423{bottom:375.396853pt;}
.y7a_c00423{bottom:375.618595pt;}
.y79_c00423{bottom:376.364963pt;}
.y78_c00423{bottom:376.847627pt;}
.y77_c00423{bottom:377.449944pt;}
.y76_c00423{bottom:378.041248pt;}
.y75_c00423{bottom:378.541179pt;}
.y74_c00423{bottom:379.079581pt;}
.y73_c00423{bottom:379.442667pt;}
.y72_c00423{bottom:395.622320pt;}
.y71_c00423{bottom:395.870792pt;}
.y70_c00423{bottom:396.310579pt;}
.y6f_c00423{bottom:396.623637pt;}
.y6e_c00423{bottom:397.352067pt;}
.y6d_c00423{bottom:397.913933pt;}
.y6c_c00423{bottom:398.361373pt;}
.y6b_c00423{bottom:399.005915pt;}
.y6a_c00423{bottom:399.522739pt;}
.y69_c00423{bottom:399.842667pt;}
.y68_c00423{bottom:417.144589pt;}
.y67_c00423{bottom:417.448351pt;}
.y66_c00423{bottom:417.926132pt;}
.y65_c00423{bottom:418.258787pt;}
.y64_c00423{bottom:418.443455pt;}
.y63_c00423{bottom:419.002929pt;}
.y62_c00423{bottom:419.261517pt;}
.y61_c00423{bottom:419.544525pt;}
.y60_c00423{bottom:420.001333pt;}
.y5f_c00423{bottom:437.465065pt;}
.y5e_c00423{bottom:437.719657pt;}
.y5d_c00423{bottom:438.113113pt;}
.y5c_c00423{bottom:438.320461pt;}
.y5b_c00423{bottom:438.838933pt;}
.y5a_c00423{bottom:439.333549pt;}
.y59_c00423{bottom:439.499881pt;}
.y58_c00423{bottom:439.681333pt;}
.y57_c00423{bottom:456.984224pt;}
.y56_c00423{bottom:457.566509pt;}
.y55_c00423{bottom:457.957240pt;}
.y54_c00423{bottom:458.201724pt;}
.y53_c00423{bottom:458.463936pt;}
.y52_c00423{bottom:459.209164pt;}
.y51_c00423{bottom:459.426320pt;}
.y50_c00423{bottom:460.321203pt;}
.y4f_c00423{bottom:478.535317pt;}
.y4e_c00423{bottom:478.829101pt;}
.y4d_c00423{bottom:479.157349pt;}
.y4c_c00423{bottom:479.306461pt;}
.y4b_c00423{bottom:479.773021pt;}
.y4a_c00423{bottom:479.961025pt;}
.y49_c00423{bottom:480.222001pt;}
.y48_c00423{bottom:480.386197pt;}
.y47_c00423{bottom:480.721333pt;}
.y46_c00423{bottom:497.927887pt;}
.y45_c00423{bottom:498.381381pt;}
.y44_c00423{bottom:498.784608pt;}
.y43_c00423{bottom:499.123544pt;}
.y42_c00423{bottom:499.410923pt;}
.y41_c00423{bottom:499.660208pt;}
.y40_c00423{bottom:500.318279pt;}
.y3f_c00423{bottom:501.120024pt;}
.y3e_c00423{bottom:518.437623pt;}
.y3d_c00423{bottom:518.751915pt;}
.y3c_c00423{bottom:519.298512pt;}
.y3b_c00423{bottom:519.681151pt;}
.y3a_c00423{bottom:520.090380pt;}
.y39_c00423{bottom:520.425733pt;}
.y38_c00423{bottom:520.747417pt;}
.y37_c00423{bottom:520.980133pt;}
.y36_c00423{bottom:521.521333pt;}
.y35_c00423{bottom:540.138667pt;}
.y34_c00423{bottom:559.965333pt;}
.y33_c00423{bottom:580.596917pt;}
.y32_c00423{bottom:580.597547pt;}
.y2f_c00423{bottom:580.597675pt;}
.y30_c00423{bottom:580.597685pt;}
.y2e_c00423{bottom:580.597728pt;}
.y31_c00423{bottom:580.597909pt;}
.y2d_c00423{bottom:580.598091pt;}
.y29_c00423{bottom:580.598155pt;}
.y28_c00423{bottom:580.598357pt;}
.y2c_c00423{bottom:580.598453pt;}
.y2a_c00423{bottom:580.598539pt;}
.y2b_c00423{bottom:580.598869pt;}
.y27_c00423{bottom:598.997056pt;}
.y26_c00423{bottom:599.338912pt;}
.y25_c00423{bottom:599.479019pt;}
.y24_c00423{bottom:599.669109pt;}
.y23_c00423{bottom:599.972491pt;}
.y22_c00423{bottom:600.106901pt;}
.y21_c00423{bottom:600.302507pt;}
.y20_c00423{bottom:600.546571pt;}
.y1f_c00423{bottom:600.780544pt;}
.y1e_c00423{bottom:601.203221pt;}
.y1d_c00423{bottom:601.387531pt;}
.y1c_c00423{bottom:601.729280pt;}
.y1b_c00423{bottom:601.921333pt;}
.y1a_c00423{bottom:621.560000pt;}
.y19_c00423{bottom:641.810667pt;}
.y18_c00423{bottom:661.832000pt;}
.y17_c00423{bottom:681.912000pt;}
.y16_c00423{bottom:702.292000pt;}
.y15_c00423{bottom:722.552000pt;}
.y14_c00423{bottom:742.873333pt;}
.y10_c00423{bottom:781.751095pt;}
.y11_c00423{bottom:781.751225pt;}
.yf_c00423{bottom:781.751364pt;}
.y12_c00423{bottom:781.751489pt;}
.ye_c00423{bottom:781.751793pt;}
.y13_c00423{bottom:781.752047pt;}
.yd_c00423{bottom:806.306292pt;}
.yc_c00423{bottom:817.333493pt;}
.yb_c00423{bottom:819.455104pt;}
.ya_c00423{bottom:820.567449pt;}
.y9_c00423{bottom:836.513364pt;}
.y8_c00423{bottom:836.977668pt;}
.y7_c00423{bottom:837.693240pt;}
.y6_c00423{bottom:837.859824pt;}
.y5_c00423{bottom:837.956088pt;}
.y4_c00423{bottom:838.293756pt;}
.y3_c00423{bottom:838.792740pt;}
.y2_c00423{bottom:839.341380pt;}
.y1_c00423{bottom:839.760000pt;}
.h1e_c00423{height:26.139657pt;}
.h16_c00423{height:32.668643pt;}
.h1c_c00423{height:32.672562pt;}
.h1a_c00423{height:33.606064pt;}
.h24_c00423{height:40.140577pt;}
.h2_c00423{height:42.001701pt;}
.h1f_c00423{height:42.005376pt;}
.h17_c00423{height:42.935931pt;}
.h21_c00423{height:42.946748pt;}
.h1d_c00423{height:44.810840pt;}
.h22_c00423{height:44.813998pt;}
.h20_c00423{height:45.739941pt;}
.h28_c00423{height:46.666667pt;}
.h23_c00423{height:46.675089pt;}
.h27_c00423{height:47.600000pt;}
.h15_c00423{height:47.604665pt;}
.h25_c00423{height:48.542093pt;}
.h18_c00423{height:49.469659pt;}
.h19_c00423{height:53.203219pt;}
.h1b_c00423{height:53.209602pt;}
.h26_c00423{height:54.133333pt;}
.h4_c00423{height:54.135526pt;}
.h8_c00423{height:59.733333pt;}
.hc_c00423{height:60.668608pt;}
.h11_c00423{height:60.669124pt;}
.h6_c00423{height:61.600000pt;}
.he_c00423{height:61.603727pt;}
.h9_c00423{height:62.533333pt;}
.hb_c00423{height:62.535334pt;}
.h13_c00423{height:62.539461pt;}
.hf_c00423{height:63.469237pt;}
.h14_c00423{height:63.472886pt;}
.ha_c00423{height:64.400000pt;}
.hd_c00423{height:64.403896pt;}
.h12_c00423{height:65.337286pt;}
.h10_c00423{height:66.269350pt;}
.h7_c00423{height:67.200000pt;}
.h5_c00423{height:118.538134pt;}
.h3_c00423{height:131.605330pt;}
.h0_c00423{height:896.400000pt;}
.h1_c00423{height:896.666667pt;}
.w1_c00423{width:612.666667pt;}
.w0_c00423{width:612.933333pt;}
.x0_c00423{left:0.000000pt;}
.xcc_c00423{left:70.560000pt;}
.xca_c00423{left:72.960000pt;}
.xa_c00423{left:74.856015pt;}
.x9b_c00423{left:113.388000pt;}
.x9c_c00423{left:115.914273pt;}
.x8d_c00423{left:121.092377pt;}
.x83_c00423{left:123.918887pt;}
.xd_c00423{left:125.038763pt;}
.xcb_c00423{left:130.080000pt;}
.x73_c00423{left:134.509333pt;}
.xbf_c00423{left:136.587067pt;}
.x80_c00423{left:139.424000pt;}
.x93_c00423{left:141.176523pt;}
.xbb_c00423{left:142.166567pt;}
.xac_c00423{left:146.586667pt;}
.x74_c00423{left:148.438667pt;}
.x84_c00423{left:150.791192pt;}
.x63_c00423{left:153.228000pt;}
.x3a_c00423{left:154.464000pt;}
.x1a_c00423{left:155.760000pt;}
.x11_c00423{left:156.720000pt;}
.x9d_c00423{left:158.039609pt;}
.xbc_c00423{left:161.125400pt;}
.x85_c00423{left:166.875117pt;}
.xa7_c00423{left:170.236000pt;}
.xb4_c00423{left:172.076000pt;}
.x61_c00423{left:174.376000pt;}
.x2e_c00423{left:176.400000pt;}
.x1b_c00423{left:179.280000pt;}
.x86_c00423{left:181.999116pt;}
.xbd_c00423{left:183.698133pt;}
.x12_c00423{left:185.520000pt;}
.xad_c00423{left:188.380000pt;}
.x37_c00423{left:189.360000pt;}
.x94_c00423{left:190.285529pt;}
.x23_c00423{left:191.520000pt;}
.xe_c00423{left:192.481556pt;}
.x64_c00423{left:194.756000pt;}
.x1_c00423{left:197.496000pt;}
.x95_c00423{left:200.299316pt;}
.xae_c00423{left:202.514667pt;}
.x51_c00423{left:203.876000pt;}
.xc0_c00423{left:208.397333pt;}
.x1c_c00423{left:209.520000pt;}
.x69_c00423{left:212.733333pt;}
.xb_c00423{left:213.858596pt;}
.x96_c00423{left:216.088589pt;}
.x24_c00423{left:217.440000pt;}
.x87_c00423{left:219.151845pt;}
.xbe_c00423{left:220.190267pt;}
.x3b_c00423{left:221.189333pt;}
.x42_c00423{left:222.480448pt;}
.x52_c00423{left:225.032000pt;}
.x13_c00423{left:228.000000pt;}
.x97_c00423{left:229.768720pt;}
.x1d_c00423{left:232.080000pt;}
.xa8_c00423{left:233.112000pt;}
.x2a_c00423{left:234.240000pt;}
.x5c_c00423{left:235.310948pt;}
.x2f_c00423{left:239.280000pt;}
.xb5_c00423{left:240.641333pt;}
.x75_c00423{left:241.617333pt;}
.x2_c00423{left:244.009333pt;}
.x43_c00423{left:247.440715pt;}
.x25_c00423{left:251.040000pt;}
.x53_c00423{left:254.276000pt;}
.x5a_c00423{left:259.344000pt;}
.x14_c00423{left:261.840000pt;}
.x98_c00423{left:263.603076pt;}
.x1e_c00423{left:265.440000pt;}
.x76_c00423{left:267.497333pt;}
.xb9_c00423{left:268.392000pt;}
.x2b_c00423{left:269.520000pt;}
.x81_c00423{left:271.432000pt;}
.x9e_c00423{left:273.994604pt;}
.x44_c00423{left:278.161344pt;}
.xc1_c00423{left:279.210233pt;}
.x88_c00423{left:283.026228pt;}
.x54_c00423{left:284.762667pt;}
.x30_c00423{left:288.720000pt;}
.x6a_c00423{left:290.732000pt;}
.x77_c00423{left:293.208000pt;}
.x65_c00423{left:294.853333pt;}
.x6e_c00423{left:296.013333pt;}
.x3c_c00423{left:297.062667pt;}
.x26_c00423{left:299.280000pt;}
.x4e_c00423{left:300.960000pt;}
.x8e_c00423{left:302.545753pt;}
.xa9_c00423{left:303.952000pt;}
.x3_c00423{left:304.969333pt;}
.x1f_c00423{left:307.680000pt;}
.x15_c00423{left:310.320000pt;}
.x66_c00423{left:311.641333pt;}
.x31_c00423{left:313.920000pt;}
.x27_c00423{left:317.040000pt;}
.xf_c00423{left:318.966471pt;}
.x4f_c00423{left:322.800000pt;}
.x3d_c00423{left:326.309333pt;}
.x5b_c00423{left:327.752000pt;}
.x16_c00423{left:329.520000pt;}
.x6b_c00423{left:330.865333pt;}
.x78_c00423{left:332.237333pt;}
.x38_c00423{left:333.840000pt;}
.x2c_c00423{left:336.000000pt;}
.x4a_c00423{left:336.960000pt;}
.x6f_c00423{left:339.036000pt;}
.x9f_c00423{left:339.996861pt;}
.x67_c00423{left:341.882667pt;}
.x45_c00423{left:343.922880pt;}
.x79_c00423{left:345.297333pt;}
.x5d_c00423{left:346.486265pt;}
.x20_c00423{left:349.200000pt;}
.x28_c00423{left:350.160000pt;}
.x32_c00423{left:351.120000pt;}
.x57_c00423{left:354.616511pt;}
.xaf_c00423{left:355.580000pt;}
.x3e_c00423{left:356.817333pt;}
.x4b_c00423{left:358.800000pt;}
.x4_c00423{left:360.412000pt;}
.xa0_c00423{left:361.518913pt;}
.x35_c00423{left:364.080000pt;}
.x7a_c00423{left:367.332000pt;}
.x5e_c00423{left:368.761869pt;}
.xc3_c00423{left:370.396000pt;}
.x2d_c00423{left:372.480000pt;}
.x70_c00423{left:373.512000pt;}
.x17_c00423{left:374.640000pt;}
.x39_c00423{left:376.080000pt;}
.x89_c00423{left:378.531157pt;}
.x33_c00423{left:381.120000pt;}
.x29_c00423{left:383.280000pt;}
.x10_c00423{left:386.169252pt;}
.x58_c00423{left:388.459544pt;}
.x46_c00423{left:389.764480pt;}
.xba_c00423{left:391.816000pt;}
.x99_c00423{left:392.911695pt;}
.x4c_c00423{left:394.560000pt;}
.xc4_c00423{left:395.605333pt;}
.x36_c00423{left:396.720000pt;}
.x5_c00423{left:397.930667pt;}
.x62_c00423{left:400.466667pt;}
.x5f_c00423{left:404.323900pt;}
.x6c_c00423{left:405.257333pt;}
.x55_c00423{left:406.441333pt;}
.x6_c00423{left:408.626667pt;}
.x34_c00423{left:409.680000pt;}
.xc2_c00423{left:411.187467pt;}
.x68_c00423{left:412.932000pt;}
.x50_c00423{left:415.440000pt;}
.x4d_c00423{left:417.840000pt;}
.xc5_c00423{left:419.610667pt;}
.x7b_c00423{left:420.864000pt;}
.xa1_c00423{left:423.931508pt;}
.x21_c00423{left:425.040000pt;}
.x7_c00423{left:427.136000pt;}
.x47_c00423{left:428.405621pt;}
.xb6_c00423{left:431.645333pt;}
.x18_c00423{left:433.680000pt;}
.x56_c00423{left:435.013333pt;}
.x3f_c00423{left:435.992000pt;}
.xc6_c00423{left:441.690667pt;}
.x71_c00423{left:442.662667pt;}
.x8f_c00423{left:445.057199pt;}
.x7c_c00423{left:446.545333pt;}
.x48_c00423{left:449.285621pt;}
.xa2_c00423{left:450.834067pt;}
.xb7_c00423{left:453.280000pt;}
.x6d_c00423{left:454.418667pt;}
.x60_c00423{left:457.317619pt;}
.x40_c00423{left:459.753333pt;}
.x19_c00423{left:465.360000pt;}
.x8a_c00423{left:466.612747pt;}
.x90_c00423{left:469.000420pt;}
.x72_c00423{left:470.976000pt;}
.xa6_c00423{left:472.583149pt;}
.x59_c00423{left:474.101816pt;}
.x22_c00423{left:477.120000pt;}
.xc_c00423{left:479.076984pt;}
.x8b_c00423{left:480.763500pt;}
.x49_c00423{left:483.366464pt;}
.x7d_c00423{left:484.961333pt;}
.xb0_c00423{left:488.092000pt;}
.xb2_c00423{left:489.230667pt;}
.xc7_c00423{left:496.798667pt;}
.x91_c00423{left:503.590703pt;}
.xb8_c00423{left:505.584000pt;}
.x8_c00423{left:506.644000pt;}
.x7e_c00423{left:515.954667pt;}
.xb3_c00423{left:517.554667pt;}
.x41_c00423{left:519.998667pt;}
.xc8_c00423{left:531.213333pt;}
.xb1_c00423{left:538.249333pt;}
.x7f_c00423{left:539.676000pt;}
.xa3_c00423{left:543.718908pt;}
.xc9_c00423{left:556.354667pt;}
.x9_c00423{left:558.233333pt;}
.xa4_c00423{left:565.811677pt;}
.x8c_c00423{left:567.639859pt;}
.x92_c00423{left:569.211591pt;}
.xaa_c00423{left:571.844000pt;}
.x82_c00423{left:575.477333pt;}
.x9a_c00423{left:577.967415pt;}
.xa5_c00423{left:580.522404pt;}
.xab_c00423{left:587.311301pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mff_c00424{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);}
.m1_c00424{transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028365,0.000000,0.000000,0.250000,0,0);}
.mf0_c00424{transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);}
.md2_c00424{transform:matrix(0.117920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117920,0.000000,0.000000,0.250000,0,0);}
.m109_c00424{transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122280,0.000000,0.000000,0.250000,0,0);}
.mb9_c00424{transform:matrix(0.127805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127805,0.000000,0.000000,0.250000,0,0);}
.m5c_c00424{transform:matrix(0.134293,-0.001343,0.002500,0.249988,0,0);-ms-transform:matrix(0.134293,-0.001343,0.002500,0.249988,0,0);-webkit-transform:matrix(0.134293,-0.001343,0.002500,0.249988,0,0);}
.m64_c00424{transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136110,0.000000,0.000000,0.250000,0,0);}
.m5d_c00424{transform:matrix(0.137603,-0.001376,0.002500,0.249988,0,0);-ms-transform:matrix(0.137603,-0.001376,0.002500,0.249988,0,0);-webkit-transform:matrix(0.137603,-0.001376,0.002500,0.249988,0,0);}
.ma1_c00424{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);}
.m6c_c00424{transform:matrix(0.139965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139965,0.000000,0.000000,0.250000,0,0);}
.m6d_c00424{transform:matrix(0.140145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00424{transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140255,0.000000,0.000000,0.250000,0,0);}
.ma2_c00424{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);}
.m2d_c00424{transform:matrix(0.142030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142030,0.000000,0.000000,0.250000,0,0);}
.mba_c00424{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);}
.m7c_c00424{transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.146855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146855,0.000000,0.000000,0.250000,0,0);}
.m87_c00424{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);}
.m115_c00424{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);}
.mad_c00424{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);}
.m65_c00424{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);}
.m108_c00424{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);}
.me0_c00424{transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150320,0.000000,0.000000,0.250000,0,0);}
.m7b_c00424{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);}
.m3e_c00424{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);}
.m90_c00424{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);}
.m15_c00424{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);}
.m39_c00424{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);}
.m137_c00424{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);}
.m45_c00424{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);}
.m3f_c00424{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);}
.m7a_c00424{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);}
.mc0_c00424{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);}
.m94_c00424{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);}
.m133_c00424{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);}
.m139_c00424{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);}
.m62_c00424{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);}
.m40_c00424{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);}
.m76_c00424{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);}
.m6e_c00424{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);}
.m1b_c00424{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);}
.m10_c00424{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);}
.m43_c00424{transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164485,0.000000,0.000000,0.250000,0,0);}
.mc3_c00424{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);}
.m19_c00424{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);}
.mf5_c00424{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m136_c00424{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);}
.m29_c00424{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);}
.m44_c00424{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);}
.m75_c00424{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{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);}
.maa_c00424{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);}
.m7e_c00424{transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168065,0.000000,0.000000,0.250000,0,0);}
.m79_c00424{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);}
.m6a_c00424{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);}
.m89_c00424{transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169505,0.000000,0.000000,0.250000,0,0);}
.m67_c00424{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);}
.m66_c00424{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);}
.m80_c00424{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);}
.m116_c00424{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);}
.ma6_c00424{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);}
.m91_c00424{transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170790,0.000000,0.000000,0.250000,0,0);}
.m8e_c00424{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);}
.m88_c00424{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);}
.m78_c00424{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.m85_c00424{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);}
.m8c_c00424{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);}
.m104_c00424{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);}
.m41_c00424{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);}
.meb_c00424{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);}
.m4b_c00424{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);}
.m42_c00424{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);}
.md5_c00424{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00424{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);}
.ma7_c00424{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);}
.mf4_c00424{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);}
.m59_c00424{transform:matrix(0.175151,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175151,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175151,-0.001752,0.002500,0.249988,0,0);}
.m6b_c00424{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);}
.m5f_c00424{transform:matrix(0.175351,-0.001754,0.002500,0.249988,0,0);-ms-transform:matrix(0.175351,-0.001754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175351,-0.001754,0.002500,0.249988,0,0);}
.m86_c00424{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);}
.m12e_c00424{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);}
.m84_c00424{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);}
.me8_c00424{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);}
.m119_c00424{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);}
.mbf_c00424{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);}
.mb4_c00424{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);}
.m34_c00424{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);}
.mb0_c00424{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);}
.mdc_c00424{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);}
.m0_c00424{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);}
.mb2_c00424{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);}
.m8a_c00424{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);}
.med_c00424{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);}
.m6f_c00424{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);}
.m33_c00424{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);}
.m63_c00424{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);}
.m36_c00424{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);}
.m131_c00424{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);}
.m123_c00424{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);}
.m142_c00424{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);}
.mc4_c00424{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);}
.m26_c00424{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);}
.ma3_c00424{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m72_c00424{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);}
.m30_c00424{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);}
.m7d_c00424{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);}
.md6_c00424{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);}
.mbd_c00424{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);}
.m25_c00424{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);}
.m24_c00424{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);}
.m10c_c00424{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);}
.m4d_c00424{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_c00424{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);}
.m111_c00424{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);}
.ma4_c00424{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);}
.m10d_c00424{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);}
.mb_c00424{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);}
.mc5_c00424{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);}
.m114_c00424{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);}
.mc9_c00424{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);}
.mf1_c00424{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);}
.mfc_c00424{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);}
.m9d_c00424{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_c00424{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);}
.mcb_c00424{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);}
.m12a_c00424{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);}
.m1c_c00424{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);}
.m1e_c00424{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);}
.m95_c00424{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);}
.m92_c00424{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);}
.mf7_c00424{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);}
.m1f_c00424{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);}
.m27_c00424{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);}
.m71_c00424{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);}
.m28_c00424{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);}
.mec_c00424{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);}
.ma5_c00424{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);}
.mf6_c00424{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);}
.m112_c00424{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m117_c00424{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);}
.m13_c00424{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);}
.mae_c00424{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.m47_c00424{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);}
.mfa_c00424{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);}
.mcc_c00424{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);}
.mbc_c00424{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);}
.m4a_c00424{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);}
.m70_c00424{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);}
.m1a_c00424{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);}
.m12b_c00424{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);}
.me5_c00424{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);}
.m69_c00424{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);}
.mb8_c00424{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);}
.m9f_c00424{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);}
.m138_c00424{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);}
.m7f_c00424{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);}
.maf_c00424{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);}
.m17_c00424{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);}
.mc6_c00424{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);}
.m57_c00424{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);}
.mbb_c00424{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);}
.m83_c00424{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);}
.m8d_c00424{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);}
.m74_c00424{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);}
.m113_c00424{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);}
.m12_c00424{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);}
.m13e_c00424{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);}
.m53_c00424{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);}
.m31_c00424{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);}
.m9e_c00424{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);}
.m3d_c00424{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);}
.m13d_c00424{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);}
.mf9_c00424{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);}
.m68_c00424{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);}
.m37_c00424{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);}
.m46_c00424{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);}
.md3_c00424{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);}
.m3c_c00424{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);}
.m2f_c00424{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);}
.me1_c00424{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);}
.me4_c00424{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);}
.m129_c00424{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);}
.m52_c00424{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);}
.m98_c00424{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);}
.m3b_c00424{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);}
.ma0_c00424{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);}
.mf8_c00424{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);}
.m81_c00424{transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);}
.me7_c00424{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);}
.m11a_c00424{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);}
.m49_c00424{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);}
.m5b_c00424{transform:matrix(0.203215,-0.002032,0.002500,0.249988,0,0);-ms-transform:matrix(0.203215,-0.002032,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203215,-0.002032,0.002500,0.249988,0,0);}
.m107_c00424{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);}
.mcd_c00424{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);}
.m2c_c00424{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);}
.m82_c00424{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);}
.m140_c00424{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);}
.md8_c00424{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);}
.m61_c00424{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);}
.mb7_c00424{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);}
.m1d_c00424{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);}
.m13b_c00424{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.mfd_c00424{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);}
.md4_c00424{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_c00424{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);}
.m110_c00424{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);}
.m96_c00424{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);}
.me6_c00424{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);}
.m124_c00424{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);}
.m141_c00424{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);}
.m10e_c00424{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);}
.md0_c00424{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);}
.m8b_c00424{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);}
.me3_c00424{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);}
.m103_c00424{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);}
.m13c_c00424{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);}
.m16_c00424{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);}
.m8f_c00424{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);}
.mea_c00424{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);}
.mc1_c00424{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);}
.m13a_c00424{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);}
.m5e_c00424{transform:matrix(0.211914,-0.002119,0.002500,0.249988,0,0);-ms-transform:matrix(0.211914,-0.002119,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211914,-0.002119,0.002500,0.249988,0,0);}
.mfb_c00424{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);}
.md_c00424{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_c00424{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);}
.md9_c00424{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);}
.mb6_c00424{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);}
.m23_c00424{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);}
.mee_c00424{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);}
.m102_c00424{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);}
.m97_c00424{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);}
.mac_c00424{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);}
.m118_c00424{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);}
.m48_c00424{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);}
.m73_c00424{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);}
.mc_c00424{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m10f_c00424{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m106_c00424{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);}
.me2_c00424{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);}
.mf3_c00424{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);}
.m134_c00424{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);}
.m121_c00424{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);}
.m99_c00424{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);}
.mef_c00424{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);}
.m14_c00424{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);}
.m132_c00424{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);}
.m32_c00424{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);}
.mf2_c00424{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);}
.mdb_c00424{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);}
.m2a_c00424{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);}
.m130_c00424{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);}
.mb5_c00424{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);}
.mc7_c00424{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);}
.mc8_c00424{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);}
.ma8_c00424{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);}
.mca_c00424{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.mfe_c00424{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{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);}
.m5_c00424{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);}
.mb3_c00424{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);}
.mb1_c00424{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);}
.m11_c00424{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);}
.m9a_c00424{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);}
.md1_c00424{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);}
.m11b_c00424{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);}
.m10b_c00424{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);}
.m11f_c00424{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);}
.ma9_c00424{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);}
.me9_c00424{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);}
.mdf_c00424{transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);}
.m10a_c00424{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.m51_c00424{transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);}
.m100_c00424{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);}
.m4f_c00424{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);}
.m125_c00424{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);}
.m101_c00424{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);}
.m128_c00424{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);}
.m126_c00424{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.mab_c00424{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m122_c00424{transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mde_c00424{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m58_c00424{transform:matrix(0.251962,-0.002520,0.002500,0.249988,0,0);-ms-transform:matrix(0.251962,-0.002520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251962,-0.002520,0.002500,0.249988,0,0);}
.m12c_c00424{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m105_c00424{transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257460,0.000000,0.000000,0.250000,0,0);}
.mdd_c00424{transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.266140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266140,0.000000,0.000000,0.250000,0,0);}
.m12f_c00424{transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);}
.m135_c00424{transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);}
.m127_c00424{transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);}
.m9b_c00424{transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);}
.m50_c00424{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);}
.mbe_c00424{transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);}
.mce_c00424{transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);}
.m12d_c00424{transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276635,0.000000,0.000000,0.250000,0,0);}
.m56_c00424{transform:matrix(0.281366,-0.002814,0.002500,0.249988,0,0);-ms-transform:matrix(0.281366,-0.002814,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281366,-0.002814,0.002500,0.249988,0,0);}
.mda_c00424{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.m93_c00424{transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292150,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.298810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298810,0.000000,0.000000,0.250000,0,0);}
.mcf_c00424{transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308265,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317925,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);}
.m9c_c00424{transform:matrix(0.327575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327575,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331385,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.334380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334380,0.000000,0.000000,0.250000,0,0);}
.mc2_c00424{transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);}
.m60_c00424{transform:matrix(0.353697,-0.003537,0.002500,0.249988,0,0);-ms-transform:matrix(0.353697,-0.003537,0.002500,0.249988,0,0);-webkit-transform:matrix(0.353697,-0.003537,0.002500,0.249988,0,0);}
.m4_c00424{transform:matrix(0.372175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372175,0.000000,0.000000,0.250000,0,0);}
.m11e_c00424{transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.389190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389190,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.400170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400170,0.000000,0.000000,0.250000,0,0);}
.m54_c00424{transform:matrix(0.418670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418670,0.000000,0.000000,0.250000,0,0);}
.m120_c00424{transform:matrix(0.419290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419290,0.000000,0.000000,0.250000,0,0);}
.m5a_c00424{transform:matrix(0.470896,-0.004709,0.002500,0.249988,0,0);-ms-transform:matrix(0.470896,-0.004709,0.002500,0.249988,0,0);-webkit-transform:matrix(0.470896,-0.004709,0.002500,0.249988,0,0);}
.ma_c00424{transform:matrix(0.471960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471960,0.000000,0.000000,0.250000,0,0);}
.m55_c00424{transform:matrix(0.485895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485895,0.000000,0.000000,0.250000,0,0);}
.m11c_c00424{transform:matrix(0.551565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551565,0.000000,0.000000,0.250000,0,0);}
.m4e_c00424{transform:matrix(0.563000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563000,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.631785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631785,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.946300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.946300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.946300,0.000000,0.000000,0.250000,0,0);}
.m11d_c00424{transform:matrix(1.246670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.246670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.246670,0.000000,0.000000,0.250000,0,0);}
.m13f_c00424{transform:matrix(1.325110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.325110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.325110,0.000000,0.000000,0.250000,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;}
.fs14_c00424{font-size:45.150000px;}
.fs13_c00424{font-size:46.200000px;}
.fs11_c00424{font-size:47.250000px;}
.fs10_c00424{font-size:48.300000px;}
.fs16_c00424{font-size:49.350000px;}
.fsd_c00424{font-size:50.400000px;}
.fse_c00424{font-size:51.450000px;}
.fs12_c00424{font-size:52.500000px;}
.fs15_c00424{font-size:53.550000px;}
.fsf_c00424{font-size:57.750000px;}
.fs4_c00424{font-size:65.100000px;}
.fs8_c00424{font-size:67.200000px;}
.fs6_c00424{font-size:68.250000px;}
.fs0_c00424{font-size:69.300000px;}
.fs2_c00424{font-size:70.350000px;}
.fsb_c00424{font-size:71.400000px;}
.fs3_c00424{font-size:72.450000px;}
.fsc_c00424{font-size:73.500000px;}
.fs5_c00424{font-size:74.550000px;}
.fs7_c00424{font-size:78.750000px;}
.fs9_c00424{font-size:80.854042px;}
.fsa_c00424{font-size:94.504725px;}
.fs1_c00424{font-size:116.550000px;}
.y0_c00424{bottom:0.000000px;}
.y3d_c00424{bottom:158.220000px;}
.y3c_c00424{bottom:175.884000px;}
.y3b_c00424{bottom:197.338500px;}
.y3a_c00424{bottom:218.160000px;}
.y39_c00424{bottom:229.386000px;}
.y37_c00424{bottom:237.004500px;}
.y36_c00424{bottom:246.898500px;}
.y35_c00424{bottom:264.664500px;}
.y34_c00424{bottom:276.612000px;}
.y33_c00424{bottom:295.344000px;}
.y32_c00424{bottom:295.867500px;}
.y31_c00424{bottom:296.161500px;}
.y30_c00424{bottom:296.526000px;}
.y2f_c00424{bottom:296.914500px;}
.y2e_c00424{bottom:297.093000px;}
.y2d_c00424{bottom:297.700500px;}
.y2c_c00424{bottom:298.075500px;}
.y2b_c00424{bottom:298.216500px;}
.y2a_c00424{bottom:298.753500px;}
.y29_c00424{bottom:299.002500px;}
.y28_c00424{bottom:299.526000px;}
.y27_c00424{bottom:299.757000px;}
.y26_c00424{bottom:300.006000px;}
.y25_c00424{bottom:300.399000px;}
.y24_c00424{bottom:300.687000px;}
.y23_c00424{bottom:301.111500px;}
.y22_c00424{bottom:301.321500px;}
.y21_c00424{bottom:315.693000px;}
.y38_c00424{bottom:334.854000px;}
.y20_c00424{bottom:337.315500px;}
.y1f_c00424{bottom:354.894000px;}
.y1e_c00424{bottom:413.070000px;}
.y1d_c00424{bottom:436.525500px;}
.y1c_c00424{bottom:458.028000px;}
.y1b_c00424{bottom:480.810000px;}
.y1a_c00424{bottom:503.670000px;}
.y19_c00424{bottom:526.048500px;}
.y18_c00424{bottom:549.111000px;}
.y17_c00424{bottom:571.602000px;}
.y16_c00424{bottom:595.109655px;}
.yc_c00424{bottom:615.871500px;}
.yd_c00424{bottom:616.289925px;}
.ye_c00424{bottom:616.473540px;}
.yf_c00424{bottom:616.811100px;}
.y10_c00424{bottom:617.140515px;}
.y11_c00424{bottom:617.432100px;}
.y12_c00424{bottom:617.758845px;}
.y13_c00424{bottom:618.023355px;}
.y14_c00424{bottom:618.428385px;}
.y15_c00424{bottom:618.847005px;}
.yb_c00424{bottom:640.504500px;}
.ya_c00424{bottom:663.660000px;}
.y9_c00424{bottom:686.070000px;}
.y8_c00424{bottom:708.931500px;}
.y7_c00424{bottom:732.379500px;}
.y6_c00424{bottom:754.315500px;}
.y5_c00424{bottom:777.678000px;}
.y4_c00424{bottom:800.452500px;}
.y3_c00424{bottom:823.161000px;}
.y2_c00424{bottom:909.958500px;}
.y1_c00424{bottom:928.645500px;}
.h16_c00424{height:45.150000px;}
.h15_c00424{height:46.200000px;}
.h13_c00424{height:47.250000px;}
.h12_c00424{height:48.300000px;}
.h18_c00424{height:49.350000px;}
.hf_c00424{height:50.400000px;}
.h10_c00424{height:51.450000px;}
.h14_c00424{height:52.500000px;}
.h17_c00424{height:53.550000px;}
.h11_c00424{height:57.750000px;}
.h6_c00424{height:65.100000px;}
.ha_c00424{height:67.200000px;}
.h8_c00424{height:68.250000px;}
.h2_c00424{height:69.300000px;}
.h4_c00424{height:70.350000px;}
.hd_c00424{height:71.400000px;}
.h5_c00424{height:72.450000px;}
.he_c00424{height:73.500000px;}
.h7_c00424{height:74.550000px;}
.h9_c00424{height:78.750000px;}
.hb_c00424{height:80.854042px;}
.hc_c00424{height:94.504725px;}
.h3_c00424{height:116.550000px;}
.h1_c00424{height:1005.000000px;}
.h0_c00424{height:1005.150000px;}
.w0_c00424{width:715.200000px;}
.w1_c00424{width:715.500000px;}
.x0_c00424{left:0.000000px;}
.xa0_c00424{left:92.340000px;}
.x76_c00424{left:95.580000px;}
.x6d_c00424{left:109.080000px;}
.x7f_c00424{left:110.856000px;}
.x9d_c00424{left:114.480000px;}
.xa7_c00424{left:117.990000px;}
.x35_c00424{left:127.170000px;}
.x2e_c00424{left:128.790000px;}
.x9_c00424{left:130.680000px;}
.x16_c00424{left:132.570000px;}
.xa8_c00424{left:136.350000px;}
.x80_c00424{left:143.503500px;}
.x78_c00424{left:147.150000px;}
.x3b_c00424{left:149.310000px;}
.x9c_c00424{left:151.470000px;}
.x2f_c00424{left:154.980000px;}
.xa_c00424{left:158.220000px;}
.x62_c00424{left:159.570000px;}
.x12_c00424{left:160.650000px;}
.x17_c00424{left:162.000000px;}
.x29_c00424{left:164.160000px;}
.x5a_c00424{left:165.240000px;}
.x48_c00424{left:168.624000px;}
.x41_c00424{left:171.180000px;}
.x6e_c00424{left:172.530000px;}
.x5d_c00424{left:174.150000px;}
.x18_c00424{left:175.230000px;}
.xa1_c00424{left:178.740000px;}
.x4d_c00424{left:180.360000px;}
.x20_c00424{left:181.710000px;}
.x30_c00424{left:184.410000px;}
.x49_c00424{left:186.985500px;}
.x42_c00424{left:190.620000px;}
.x5b_c00424{left:195.210000px;}
.xb_c00424{left:197.100000px;}
.xc_c00424{left:198.990000px;}
.x8_c00424{left:200.880000px;}
.x52_c00424{left:203.310000px;}
.x19_c00424{left:204.930000px;}
.x31_c00424{left:206.280000px;}
.x21_c00424{left:214.110000px;}
.x3c_c00424{left:216.000000px;}
.x63_c00424{left:218.970000px;}
.x36_c00424{left:220.590000px;}
.x77_c00424{left:222.750000px;}
.x67_c00424{left:225.180000px;}
.x53_c00424{left:228.960000px;}
.xa6_c00424{left:231.390000px;}
.x81_c00424{left:232.855500px;}
.x79_c00424{left:234.900000px;}
.x6a_c00424{left:235.980000px;}
.x22_c00424{left:237.330000px;}
.x1_c00424{left:238.680000px;}
.x3d_c00424{left:240.840000px;}
.x55_c00424{left:242.460000px;}
.x5e_c00424{left:244.620000px;}
.x2a_c00424{left:245.970000px;}
.x88_c00424{left:247.866000px;}
.x4e_c00424{left:249.210000px;}
.x54_c00424{left:250.560000px;}
.x37_c00424{left:253.260000px;}
.x68_c00424{left:255.150000px;}
.x95_c00424{left:256.500000px;}
.xd_c00424{left:262.170000px;}
.x13_c00424{left:263.520000px;}
.x2_c00424{left:264.870000px;}
.x89_c00424{left:268.116000px;}
.x5f_c00424{left:269.190000px;}
.x1a_c00424{left:270.810000px;}
.x64_c00424{left:272.700000px;}
.x43_c00424{left:275.130000px;}
.xa2_c00424{left:279.180000px;}
.x4a_c00424{left:282.841500px;}
.x23_c00424{left:285.120000px;}
.x82_c00424{left:292.263000px;}
.x2b_c00424{left:295.380000px;}
.x3e_c00424{left:297.540000px;}
.x5c_c00424{left:300.510000px;}
.x44_c00424{left:302.400000px;}
.x7a_c00424{left:304.290000px;}
.x6f_c00424{left:306.720000px;}
.x90_c00424{left:309.696000px;}
.x1b_c00424{left:312.120000px;}
.x4b_c00424{left:315.516000px;}
.x38_c00424{left:318.330000px;}
.x69_c00424{left:321.030000px;}
.x14_c00424{left:322.110000px;}
.xe_c00424{left:325.350000px;}
.x91_c00424{left:332.646000px;}
.x4f_c00424{left:333.720000px;}
.x2c_c00424{left:337.230000px;}
.x65_c00424{left:340.740000px;}
.x32_c00424{left:342.090000px;}
.x8a_c00424{left:343.986000px;}
.x39_c00424{left:345.330000px;}
.x45_c00424{left:347.220000px;}
.x56_c00424{left:349.380000px;}
.x24_c00424{left:351.000000px;}
.x3f_c00424{left:354.510000px;}
.x70_c00424{left:358.560000px;}
.x3_c00424{left:362.880000px;}
.x15_c00424{left:365.850000px;}
.x60_c00424{left:367.470000px;}
.x1c_c00424{left:368.820000px;}
.x6b_c00424{left:370.440000px;}
.x57_c00424{left:372.870000px;}
.x25_c00424{left:378.540000px;}
.x40_c00424{left:379.620000px;}
.x33_c00424{left:382.050000px;}
.x46_c00424{left:383.940000px;}
.x9a_c00424{left:389.610000px;}
.x2d_c00424{left:391.770000px;}
.x50_c00424{left:393.120000px;}
.xf_c00424{left:394.740000px;}
.x7b_c00424{left:400.140000px;}
.x66_c00424{left:402.030000px;}
.x1d_c00424{left:403.920000px;}
.x6c_c00424{left:405.270000px;}
.x4_c00424{left:409.590000px;}
.xa3_c00424{left:412.020000px;}
.x58_c00424{left:413.370000px;}
.x61_c00424{left:415.260000px;}
.x51_c00424{left:418.500000px;}
.x3a_c00424{left:419.580000px;}
.x26_c00424{left:423.090000px;}
.x4c_c00424{left:424.332000px;}
.x92_c00424{left:426.066000px;}
.x10_c00424{left:427.410000px;}
.x71_c00424{left:428.490000px;}
.x47_c00424{left:430.110000px;}
.x83_c00424{left:433.830000px;}
.x59_c00424{left:436.320000px;}
.x1e_c00424{left:437.670000px;}
.x7c_c00424{left:439.020000px;}
.x96_c00424{left:442.800000px;}
.x5_c00424{left:446.580000px;}
.x34_c00424{left:449.010000px;}
.x7d_c00424{left:450.630000px;}
.x8b_c00424{left:452.796000px;}
.x1f_c00424{left:457.650000px;}
.x72_c00424{left:458.730000px;}
.xa4_c00424{left:460.080000px;}
.x9b_c00424{left:462.240000px;}
.x84_c00424{left:463.756500px;}
.x8c_c00424{left:467.916000px;}
.x6_c00424{left:471.150000px;}
.x93_c00424{left:472.236000px;}
.x11_c00424{left:474.390000px;}
.x27_c00424{left:480.060000px;}
.x97_c00424{left:483.030000px;}
.x85_c00424{left:491.850000px;}
.x73_c00424{left:494.370000px;}
.x8d_c00424{left:495.726000px;}
.x98_c00424{left:501.390000px;}
.x94_c00424{left:503.016000px;}
.x28_c00424{left:505.980000px;}
.x74_c00424{left:508.680000px;}
.x9e_c00424{left:511.110000px;}
.x86_c00424{left:514.512000px;}
.x7_c00424{left:522.720000px;}
.x7e_c00424{left:524.880000px;}
.x8e_c00424{left:534.876000px;}
.x9f_c00424{left:536.490000px;}
.x75_c00424{left:539.460000px;}
.xa5_c00424{left:541.080000px;}
.x8f_c00424{left:549.996000px;}
.x87_c00424{left:554.739000px;}
.x99_c00424{left:557.010000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs14_c00424{font-size:40.133333pt;}
.fs13_c00424{font-size:41.066667pt;}
.fs11_c00424{font-size:42.000000pt;}
.fs10_c00424{font-size:42.933333pt;}
.fs16_c00424{font-size:43.866667pt;}
.fsd_c00424{font-size:44.800000pt;}
.fse_c00424{font-size:45.733333pt;}
.fs12_c00424{font-size:46.666667pt;}
.fs15_c00424{font-size:47.600000pt;}
.fsf_c00424{font-size:51.333333pt;}
.fs4_c00424{font-size:57.866667pt;}
.fs8_c00424{font-size:59.733333pt;}
.fs6_c00424{font-size:60.666667pt;}
.fs0_c00424{font-size:61.600000pt;}
.fs2_c00424{font-size:62.533333pt;}
.fsb_c00424{font-size:63.466667pt;}
.fs3_c00424{font-size:64.400000pt;}
.fsc_c00424{font-size:65.333333pt;}
.fs5_c00424{font-size:66.266667pt;}
.fs7_c00424{font-size:70.000000pt;}
.fs9_c00424{font-size:71.870260pt;}
.fsa_c00424{font-size:84.004200pt;}
.fs1_c00424{font-size:103.600000pt;}
.y0_c00424{bottom:0.000000pt;}
.y3d_c00424{bottom:140.640000pt;}
.y3c_c00424{bottom:156.341333pt;}
.y3b_c00424{bottom:175.412000pt;}
.y3a_c00424{bottom:193.920000pt;}
.y39_c00424{bottom:203.898667pt;}
.y37_c00424{bottom:210.670667pt;}
.y36_c00424{bottom:219.465333pt;}
.y35_c00424{bottom:235.257333pt;}
.y34_c00424{bottom:245.877333pt;}
.y33_c00424{bottom:262.528000pt;}
.y32_c00424{bottom:262.993333pt;}
.y31_c00424{bottom:263.254667pt;}
.y30_c00424{bottom:263.578667pt;}
.y2f_c00424{bottom:263.924000pt;}
.y2e_c00424{bottom:264.082667pt;}
.y2d_c00424{bottom:264.622667pt;}
.y2c_c00424{bottom:264.956000pt;}
.y2b_c00424{bottom:265.081333pt;}
.y2a_c00424{bottom:265.558667pt;}
.y29_c00424{bottom:265.780000pt;}
.y28_c00424{bottom:266.245333pt;}
.y27_c00424{bottom:266.450667pt;}
.y26_c00424{bottom:266.672000pt;}
.y25_c00424{bottom:267.021333pt;}
.y24_c00424{bottom:267.277333pt;}
.y23_c00424{bottom:267.654667pt;}
.y22_c00424{bottom:267.841333pt;}
.y21_c00424{bottom:280.616000pt;}
.y38_c00424{bottom:297.648000pt;}
.y20_c00424{bottom:299.836000pt;}
.y1f_c00424{bottom:315.461333pt;}
.y1e_c00424{bottom:367.173333pt;}
.y1d_c00424{bottom:388.022667pt;}
.y1c_c00424{bottom:407.136000pt;}
.y1b_c00424{bottom:427.386667pt;}
.y1a_c00424{bottom:447.706667pt;}
.y19_c00424{bottom:467.598667pt;}
.y18_c00424{bottom:488.098667pt;}
.y17_c00424{bottom:508.090667pt;}
.y16_c00424{bottom:528.986360pt;}
.yc_c00424{bottom:547.441333pt;}
.yd_c00424{bottom:547.813267pt;}
.ye_c00424{bottom:547.976480pt;}
.yf_c00424{bottom:548.276533pt;}
.y10_c00424{bottom:548.569347pt;}
.y11_c00424{bottom:548.828533pt;}
.y12_c00424{bottom:549.118973pt;}
.y13_c00424{bottom:549.354093pt;}
.y14_c00424{bottom:549.714120pt;}
.y15_c00424{bottom:550.086227pt;}
.yb_c00424{bottom:569.337333pt;}
.ya_c00424{bottom:589.920000pt;}
.y9_c00424{bottom:609.840000pt;}
.y8_c00424{bottom:630.161333pt;}
.y7_c00424{bottom:651.004000pt;}
.y6_c00424{bottom:670.502667pt;}
.y5_c00424{bottom:691.269333pt;}
.y4_c00424{bottom:711.513333pt;}
.y3_c00424{bottom:731.698667pt;}
.y2_c00424{bottom:808.852000pt;}
.y1_c00424{bottom:825.462667pt;}
.h16_c00424{height:40.133333pt;}
.h15_c00424{height:41.066667pt;}
.h13_c00424{height:42.000000pt;}
.h12_c00424{height:42.933333pt;}
.h18_c00424{height:43.866667pt;}
.hf_c00424{height:44.800000pt;}
.h10_c00424{height:45.733333pt;}
.h14_c00424{height:46.666667pt;}
.h17_c00424{height:47.600000pt;}
.h11_c00424{height:51.333333pt;}
.h6_c00424{height:57.866667pt;}
.ha_c00424{height:59.733333pt;}
.h8_c00424{height:60.666667pt;}
.h2_c00424{height:61.600000pt;}
.h4_c00424{height:62.533333pt;}
.hd_c00424{height:63.466667pt;}
.h5_c00424{height:64.400000pt;}
.he_c00424{height:65.333333pt;}
.h7_c00424{height:66.266667pt;}
.h9_c00424{height:70.000000pt;}
.hb_c00424{height:71.870260pt;}
.hc_c00424{height:84.004200pt;}
.h3_c00424{height:103.600000pt;}
.h1_c00424{height:893.333333pt;}
.h0_c00424{height:893.466667pt;}
.w0_c00424{width:635.733333pt;}
.w1_c00424{width:636.000000pt;}
.x0_c00424{left:0.000000pt;}
.xa0_c00424{left:82.080000pt;}
.x76_c00424{left:84.960000pt;}
.x6d_c00424{left:96.960000pt;}
.x7f_c00424{left:98.538667pt;}
.x9d_c00424{left:101.760000pt;}
.xa7_c00424{left:104.880000pt;}
.x35_c00424{left:113.040000pt;}
.x2e_c00424{left:114.480000pt;}
.x9_c00424{left:116.160000pt;}
.x16_c00424{left:117.840000pt;}
.xa8_c00424{left:121.200000pt;}
.x80_c00424{left:127.558667pt;}
.x78_c00424{left:130.800000pt;}
.x3b_c00424{left:132.720000pt;}
.x9c_c00424{left:134.640000pt;}
.x2f_c00424{left:137.760000pt;}
.xa_c00424{left:140.640000pt;}
.x62_c00424{left:141.840000pt;}
.x12_c00424{left:142.800000pt;}
.x17_c00424{left:144.000000pt;}
.x29_c00424{left:145.920000pt;}
.x5a_c00424{left:146.880000pt;}
.x48_c00424{left:149.888000pt;}
.x41_c00424{left:152.160000pt;}
.x6e_c00424{left:153.360000pt;}
.x5d_c00424{left:154.800000pt;}
.x18_c00424{left:155.760000pt;}
.xa1_c00424{left:158.880000pt;}
.x4d_c00424{left:160.320000pt;}
.x20_c00424{left:161.520000pt;}
.x30_c00424{left:163.920000pt;}
.x49_c00424{left:166.209333pt;}
.x42_c00424{left:169.440000pt;}
.x5b_c00424{left:173.520000pt;}
.xb_c00424{left:175.200000pt;}
.xc_c00424{left:176.880000pt;}
.x8_c00424{left:178.560000pt;}
.x52_c00424{left:180.720000pt;}
.x19_c00424{left:182.160000pt;}
.x31_c00424{left:183.360000pt;}
.x21_c00424{left:190.320000pt;}
.x3c_c00424{left:192.000000pt;}
.x63_c00424{left:194.640000pt;}
.x36_c00424{left:196.080000pt;}
.x77_c00424{left:198.000000pt;}
.x67_c00424{left:200.160000pt;}
.x53_c00424{left:203.520000pt;}
.xa6_c00424{left:205.680000pt;}
.x81_c00424{left:206.982667pt;}
.x79_c00424{left:208.800000pt;}
.x6a_c00424{left:209.760000pt;}
.x22_c00424{left:210.960000pt;}
.x1_c00424{left:212.160000pt;}
.x3d_c00424{left:214.080000pt;}
.x55_c00424{left:215.520000pt;}
.x5e_c00424{left:217.440000pt;}
.x2a_c00424{left:218.640000pt;}
.x88_c00424{left:220.325333pt;}
.x4e_c00424{left:221.520000pt;}
.x54_c00424{left:222.720000pt;}
.x37_c00424{left:225.120000pt;}
.x68_c00424{left:226.800000pt;}
.x95_c00424{left:228.000000pt;}
.xd_c00424{left:233.040000pt;}
.x13_c00424{left:234.240000pt;}
.x2_c00424{left:235.440000pt;}
.x89_c00424{left:238.325333pt;}
.x5f_c00424{left:239.280000pt;}
.x1a_c00424{left:240.720000pt;}
.x64_c00424{left:242.400000pt;}
.x43_c00424{left:244.560000pt;}
.xa2_c00424{left:248.160000pt;}
.x4a_c00424{left:251.414667pt;}
.x23_c00424{left:253.440000pt;}
.x82_c00424{left:259.789333pt;}
.x2b_c00424{left:262.560000pt;}
.x3e_c00424{left:264.480000pt;}
.x5c_c00424{left:267.120000pt;}
.x44_c00424{left:268.800000pt;}
.x7a_c00424{left:270.480000pt;}
.x6f_c00424{left:272.640000pt;}
.x90_c00424{left:275.285333pt;}
.x1b_c00424{left:277.440000pt;}
.x4b_c00424{left:280.458667pt;}
.x38_c00424{left:282.960000pt;}
.x69_c00424{left:285.360000pt;}
.x14_c00424{left:286.320000pt;}
.xe_c00424{left:289.200000pt;}
.x91_c00424{left:295.685333pt;}
.x4f_c00424{left:296.640000pt;}
.x2c_c00424{left:299.760000pt;}
.x65_c00424{left:302.880000pt;}
.x32_c00424{left:304.080000pt;}
.x8a_c00424{left:305.765333pt;}
.x39_c00424{left:306.960000pt;}
.x45_c00424{left:308.640000pt;}
.x56_c00424{left:310.560000pt;}
.x24_c00424{left:312.000000pt;}
.x3f_c00424{left:315.120000pt;}
.x70_c00424{left:318.720000pt;}
.x3_c00424{left:322.560000pt;}
.x15_c00424{left:325.200000pt;}
.x60_c00424{left:326.640000pt;}
.x1c_c00424{left:327.840000pt;}
.x6b_c00424{left:329.280000pt;}
.x57_c00424{left:331.440000pt;}
.x25_c00424{left:336.480000pt;}
.x40_c00424{left:337.440000pt;}
.x33_c00424{left:339.600000pt;}
.x46_c00424{left:341.280000pt;}
.x9a_c00424{left:346.320000pt;}
.x2d_c00424{left:348.240000pt;}
.x50_c00424{left:349.440000pt;}
.xf_c00424{left:350.880000pt;}
.x7b_c00424{left:355.680000pt;}
.x66_c00424{left:357.360000pt;}
.x1d_c00424{left:359.040000pt;}
.x6c_c00424{left:360.240000pt;}
.x4_c00424{left:364.080000pt;}
.xa3_c00424{left:366.240000pt;}
.x58_c00424{left:367.440000pt;}
.x61_c00424{left:369.120000pt;}
.x51_c00424{left:372.000000pt;}
.x3a_c00424{left:372.960000pt;}
.x26_c00424{left:376.080000pt;}
.x4c_c00424{left:377.184000pt;}
.x92_c00424{left:378.725333pt;}
.x10_c00424{left:379.920000pt;}
.x71_c00424{left:380.880000pt;}
.x47_c00424{left:382.320000pt;}
.x83_c00424{left:385.626667pt;}
.x59_c00424{left:387.840000pt;}
.x1e_c00424{left:389.040000pt;}
.x7c_c00424{left:390.240000pt;}
.x96_c00424{left:393.600000pt;}
.x5_c00424{left:396.960000pt;}
.x34_c00424{left:399.120000pt;}
.x7d_c00424{left:400.560000pt;}
.x8b_c00424{left:402.485333pt;}
.x1f_c00424{left:406.800000pt;}
.x72_c00424{left:407.760000pt;}
.xa4_c00424{left:408.960000pt;}
.x9b_c00424{left:410.880000pt;}
.x84_c00424{left:412.228000pt;}
.x8c_c00424{left:415.925333pt;}
.x6_c00424{left:418.800000pt;}
.x93_c00424{left:419.765333pt;}
.x11_c00424{left:421.680000pt;}
.x27_c00424{left:426.720000pt;}
.x97_c00424{left:429.360000pt;}
.x85_c00424{left:437.200000pt;}
.x73_c00424{left:439.440000pt;}
.x8d_c00424{left:440.645333pt;}
.x98_c00424{left:445.680000pt;}
.x94_c00424{left:447.125333pt;}
.x28_c00424{left:449.760000pt;}
.x74_c00424{left:452.160000pt;}
.x9e_c00424{left:454.320000pt;}
.x86_c00424{left:457.344000pt;}
.x7_c00424{left:464.640000pt;}
.x7e_c00424{left:466.560000pt;}
.x8e_c00424{left:475.445333pt;}
.x9f_c00424{left:476.880000pt;}
.x75_c00424{left:479.520000pt;}
.xa5_c00424{left:480.960000pt;}
.x8f_c00424{left:488.885333pt;}
.x87_c00424{left:493.101333pt;}
.x99_c00424{left:495.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m42_c00425{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);}
.m2_c00425{transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);}
.m12d_c00425{transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025330,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.091655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091655,0.000000,0.000000,0.250000,0,0);}
.mdd_c00425{transform:matrix(0.115384,0.002654,-0.005748,0.249934,0,0);-ms-transform:matrix(0.115384,0.002654,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.115384,0.002654,-0.005748,0.249934,0,0);}
.m47_c00425{transform:matrix(0.124045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124045,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{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);}
.m94_c00425{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);}
.m96_c00425{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{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);}
.m87_c00425{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);}
.m37_c00425{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);}
.m92_c00425{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);}
.m97_c00425{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);}
.m1d_c00425{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);}
.m11a_c00425{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);}
.m28_c00425{transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152770,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{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);}
.mb3_c00425{transform:matrix(0.154273,0.002623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154273,0.002623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154273,0.002623,-0.004249,0.249964,0,0);}
.m1b_c00425{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);}
.m154_c00425{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);}
.ma0_c00425{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);}
.m3b_c00425{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);}
.m53_c00425{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);}
.m6_c00425{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);}
.md4_c00425{transform:matrix(0.158008,0.003634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158008,0.003634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158008,0.003634,-0.005748,0.249934,0,0);}
.m88_c00425{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{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);}
.m33_c00425{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);}
.m74_c00425{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);}
.m71_c00425{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);}
.m90_c00425{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);}
.m13_c00425{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);}
.m49_c00425{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);}
.m1e_c00425{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);}
.m2f_c00425{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);}
.m11f_c00425{transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{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);}
.m6f_c00425{transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);}
.mf3_c00425{transform:matrix(0.164994,0.003465,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164994,0.003465,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164994,0.003465,-0.005249,0.249945,0,0);}
.m95_c00425{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{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);}
.mb6_c00425{transform:matrix(0.166426,0.002829,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166426,0.002829,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166426,0.002829,-0.004249,0.249964,0,0);}
.m93_c00425{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);}
.mfe_c00425{transform:matrix(0.166953,0.003506,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166953,0.003506,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166953,0.003506,-0.005249,0.249945,0,0);}
.m105_c00425{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);}
.m2c_c00425{transform:matrix(0.167485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167485,0.000000,0.000000,0.250000,0,0);}
.m148_c00425{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);}
.m79_c00425{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);}
.m13e_c00425{transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168470,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{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);}
.mf9_c00425{transform:matrix(0.169423,0.003558,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169423,0.003558,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169423,0.003558,-0.005249,0.249945,0,0);}
.m20_c00425{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);}
.m6c_c00425{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);}
.m3d_c00425{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);}
.m9b_c00425{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);}
.m11c_c00425{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);}
.mc9_c00425{transform:matrix(0.171442,0.003086,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171442,0.003086,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171442,0.003086,-0.004499,0.249960,0,0);}
.m13c_c00425{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);}
.m4b_c00425{transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{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);}
.mf7_c00425{transform:matrix(0.173097,0.003635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173097,0.003635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173097,0.003635,-0.005249,0.249945,0,0);}
.m14b_c00425{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);}
.m2b_c00425{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);}
.m91_c00425{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);}
.m14f_c00425{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);}
.m45_c00425{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);}
.m4c_c00425{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);}
.m8_c00425{transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175405,0.000000,0.000000,0.250000,0,0);}
.ma7_c00425{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);}
.mf4_c00425{transform:matrix(0.176736,0.003711,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176736,0.003711,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176736,0.003711,-0.005249,0.249945,0,0);}
.m11b_c00425{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);}
.m1a_c00425{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);}
.mb9_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);}
.m14_c00425{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);}
.m25_c00425{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{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);}
.m5d_c00425{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);}
.m4e_c00425{transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{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);}
.m13d_c00425{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);}
.m156_c00425{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);}
.m70_c00425{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);}
.m14d_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);}
.m14e_c00425{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);}
.m24_c00425{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);}
.mca_c00425{transform:matrix(0.181006,0.003258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181006,0.003258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181006,0.003258,-0.004499,0.249960,0,0);}
.m9c_c00425{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);}
.m52_c00425{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);}
.mbc_c00425{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);}
.m54_c00425{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);}
.m8d_c00425{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);}
.m139_c00425{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);}
.mc4_c00425{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);}
.m72_c00425{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);}
.m63_c00425{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);}
.m8a_c00425{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);}
.m56_c00425{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);}
.m83_c00425{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);}
.m5_c00425{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);}
.m2e_c00425{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);}
.m51_c00425{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);}
.m111_c00425{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);}
.md_c00425{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);}
.m36_c00425{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);}
.mae_c00425{transform:matrix(0.185729,0.002786,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185729,0.002786,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185729,0.002786,-0.003750,0.249972,0,0);}
.ma6_c00425{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);}
.m9f_c00425{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);}
.mee_c00425{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);}
.mec_c00425{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);}
.m110_c00425{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);}
.m9d_c00425{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);}
.md7_c00425{transform:matrix(0.188820,0.004343,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188820,0.004343,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188820,0.004343,-0.005748,0.249934,0,0);}
.m10f_c00425{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);}
.m15_c00425{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);}
.m9a_c00425{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);}
.m5a_c00425{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);}
.m39_c00425{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);}
.mff_c00425{transform:matrix(0.190113,0.003992,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190113,0.003992,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190113,0.003992,-0.005249,0.249945,0,0);}
.m6b_c00425{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);}
.m8c_c00425{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);}
.m27_c00425{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);}
.mf6_c00425{transform:matrix(0.190718,0.004005,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190718,0.004005,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190718,0.004005,-0.005249,0.249945,0,0);}
.m26_c00425{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);}
.m32_c00425{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);}
.m14c_c00425{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);}
.m7_c00425{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);}
.m61_c00425{transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192040,0.000000,0.000000,0.250000,0,0);}
.mcd_c00425{transform:matrix(0.193074,0.003475,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193074,0.003475,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193074,0.003475,-0.004499,0.249960,0,0);}
.m7b_c00425{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);}
.md2_c00425{transform:matrix(0.194678,0.003504,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194678,0.003504,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194678,0.003504,-0.004499,0.249960,0,0);}
.m77_c00425{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);}
.mf0_c00425{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);}
.mfb_c00425{transform:matrix(0.195782,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195782,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195782,0.004111,-0.005249,0.249945,0,0);}
.m103_c00425{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);}
.m80_c00425{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);}
.mef_c00425{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);}
.med_c00425{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);}
.m12f_c00425{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);}
.mbe_c00425{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);}
.m85_c00425{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);}
.m99_c00425{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);}
.m14a_c00425{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);}
.m68_c00425{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);}
.m5e_c00425{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);}
.m144_c00425{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);}
.m13a_c00425{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);}
.mc1_c00425{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);}
.m3c_c00425{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);}
.m16_c00425{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);}
.m153_c00425{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);}
.md9_c00425{transform:matrix(0.198702,0.004570,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198702,0.004570,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198702,0.004570,-0.005748,0.249934,0,0);}
.m76_c00425{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);}
.m23_c00425{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);}
.m12c_c00425{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);}
.m86_c00425{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);}
.md6_c00425{transform:matrix(0.199577,0.004590,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199577,0.004590,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199577,0.004590,-0.005748,0.249934,0,0);}
.m30_c00425{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_c00425{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);}
.mfc_c00425{transform:matrix(0.199991,0.004200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199991,0.004200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199991,0.004200,-0.005249,0.249945,0,0);}
.m18_c00425{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);}
.m1f_c00425{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);}
.m113_c00425{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);}
.m6e_c00425{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);}
.m4_c00425{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);}
.m7a_c00425{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);}
.mb5_c00425{transform:matrix(0.201191,0.003420,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201191,0.003420,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201191,0.003420,-0.004249,0.249964,0,0);}
.m66_c00425{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);}
.mde_c00425{transform:matrix(0.201517,0.004635,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201517,0.004635,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201517,0.004635,-0.005748,0.249934,0,0);}
.mda_c00425{transform:matrix(0.201552,0.004636,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201552,0.004636,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201552,0.004636,-0.005748,0.249934,0,0);}
.mf8_c00425{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);}
.ma4_c00425{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);}
.md8_c00425{transform:matrix(0.202886,0.004666,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202886,0.004666,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202886,0.004666,-0.005748,0.249934,0,0);}
.m19_c00425{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);}
.mb8_c00425{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);}
.m31_c00425{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);}
.mcf_c00425{transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203707,0.003667,-0.004499,0.249960,0,0);}
.mbf_c00425{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);}
.ma8_c00425{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);}
.md0_c00425{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);}
.m62_c00425{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);}
.m112_c00425{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);}
.mdc_c00425{transform:matrix(0.204401,0.004701,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204401,0.004701,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204401,0.004701,-0.005748,0.249934,0,0);}
.mf1_c00425{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);}
.mc2_c00425{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);}
.m64_c00425{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);}
.m5f_c00425{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);}
.m67_c00425{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_c00425{transform:matrix(0.206307,0.003714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206307,0.003714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206307,0.003714,-0.004499,0.249960,0,0);}
.m3f_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);}
.me8_c00425{transform:matrix(0.206940,0.004760,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206940,0.004760,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206940,0.004760,-0.005748,0.249934,0,0);}
.m127_c00425{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);}
.m120_c00425{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);}
.me_c00425{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);}
.m1c_c00425{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);}
.m143_c00425{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);}
.m118_c00425{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);}
.m157_c00425{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);}
.m137_c00425{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);}
.me5_c00425{transform:matrix(0.209215,0.004812,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209215,0.004812,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209215,0.004812,-0.005748,0.249934,0,0);}
.md3_c00425{transform:matrix(0.209316,0.003768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209316,0.003768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209316,0.003768,-0.004499,0.249960,0,0);}
.m48_c00425{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);}
.m29_c00425{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);}
.m151_c00425{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);}
.m8b_c00425{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);}
.m134_c00425{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);}
.m2a_c00425{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);}
.m8f_c00425{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);}
.mac_c00425{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);}
.mb2_c00425{transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);}
.m133_c00425{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);}
.m107_c00425{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);}
.m58_c00425{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);}
.mad_c00425{transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);}
.m5b_c00425{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);}
.m138_c00425{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);}
.mb4_c00425{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);}
.mf2_c00425{transform:matrix(0.212933,0.004472,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212933,0.004472,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212933,0.004472,-0.005249,0.249945,0,0);}
.me7_c00425{transform:matrix(0.212949,0.004898,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212949,0.004898,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212949,0.004898,-0.005748,0.249934,0,0);}
.m7c_c00425{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);}
.mbd_c00425{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);}
.m6a_c00425{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);}
.m13b_c00425{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m155_c00425{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);}
.mba_c00425{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);}
.ma9_c00425{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);}
.m149_c00425{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);}
.mcb_c00425{transform:matrix(0.217690,0.003918,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217690,0.003918,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217690,0.003918,-0.004499,0.249960,0,0);}
.m128_c00425{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);}
.mc6_c00425{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);}
.m141_c00425{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);}
.m89_c00425{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);}
.m69_c00425{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);}
.meb_c00425{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.mc3_c00425{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);}
.mc0_c00425{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);}
.m116_c00425{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);}
.m9e_c00425{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);}
.mcc_c00425{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);}
.mce_c00425{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);}
.m3_c00425{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);}
.m15a_c00425{transform:matrix(0.222040,-0.004219,0.004749,0.249955,0,0);-ms-transform:matrix(0.222040,-0.004219,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222040,-0.004219,0.004749,0.249955,0,0);}
.mc_c00425{transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);}
.m131_c00425{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);}
.mf5_c00425{transform:matrix(0.222356,0.004669,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222356,0.004669,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222356,0.004669,-0.005249,0.249945,0,0);}
.m10a_c00425{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);}
.m108_c00425{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);}
.m7e_c00425{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);}
.m8e_c00425{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);}
.m7f_c00425{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);}
.m2d_c00425{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);}
.m109_c00425{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{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);}
.mf_c00425{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);}
.m12a_c00425{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);}
.m13f_c00425{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);}
.mdb_c00425{transform:matrix(0.227340,0.005229,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227340,0.005229,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227340,0.005229,-0.005748,0.249934,0,0);}
.me6_c00425{transform:matrix(0.227860,0.005241,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227860,0.005241,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227860,0.005241,-0.005748,0.249934,0,0);}
.m152_c00425{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);}
.m11e_c00425{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);}
.m10e_c00425{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);}
.me0_c00425{transform:matrix(0.228884,0.005264,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228884,0.005264,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228884,0.005264,-0.005748,0.249934,0,0);}
.m11d_c00425{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);}
.m100_c00425{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);}
.mb7_c00425{transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);}
.m5c_c00425{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);}
.m43_c00425{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);}
.m55_c00425{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);}
.m130_c00425{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.mc5_c00425{transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232310,0.000000,0.000000,0.250000,0,0);}
.m140_c00425{transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);}
.m129_c00425{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);}
.m6d_c00425{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.mb0_c00425{transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);}
.mc8_c00425{transform:matrix(0.235877,0.004246,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235877,0.004246,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235877,0.004246,-0.004499,0.249960,0,0);}
.m135_c00425{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);}
.m3e_c00425{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);}
.m106_c00425{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{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);}
.m117_c00425{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);}
.ma5_c00425{transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238365,0.000000,0.000000,0.250000,0,0);}
.m119_c00425{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);}
.m4a_c00425{transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238565,0.000000,0.000000,0.250000,0,0);}
.m142_c00425{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);}
.m10b_c00425{transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);}
.m115_c00425{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{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);}
.m41_c00425{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);}
.me2_c00425{transform:matrix(0.241091,0.005545,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241091,0.005545,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241091,0.005545,-0.005748,0.249934,0,0);}
.me3_c00425{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);}
.me9_c00425{transform:matrix(0.243341,0.005597,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243341,0.005597,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243341,0.005597,-0.005748,0.249934,0,0);}
.mbb_c00425{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);}
.mfa_c00425{transform:matrix(0.243906,0.005122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243906,0.005122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243906,0.005122,-0.005249,0.249945,0,0);}
.m158_c00425{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{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);}
.m81_c00425{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);}
.m101_c00425{transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);}
.m122_c00425{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.m125_c00425{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);}
.md1_c00425{transform:matrix(0.249355,0.004488,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249355,0.004488,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249355,0.004488,-0.004499,0.249960,0,0);}
.m7d_c00425{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);}
.m15d_c00425{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);}
.m123_c00425{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);}
.m124_c00425{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.maf_c00425{transform:matrix(0.257296,0.003859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257296,0.003859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257296,0.003859,-0.003750,0.249972,0,0);}
.m34_c00425{transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{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);}
.m12b_c00425{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);}
.m15b_c00425{transform:matrix(0.259243,-0.004926,0.004749,0.249955,0,0);-ms-transform:matrix(0.259243,-0.004926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259243,-0.004926,0.004749,0.249955,0,0);}
.m1_c00425{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);}
.m12e_c00425{transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);}
.mab_c00425{transform:matrix(0.262221,0.003933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262221,0.003933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262221,0.003933,-0.003750,0.249972,0,0);}
.m121_c00425{transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);}
.m132_c00425{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);}
.m44_c00425{transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);}
.m104_c00425{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);}
.ma_c00425{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);}
.m126_c00425{transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271340,0.000000,0.000000,0.250000,0,0);}
.maa_c00425{transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276524,0.004148,-0.003750,0.249972,0,0);}
.m57_c00425{transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);}
.m150_c00425{transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279240,0.000000,0.000000,0.250000,0,0);}
.m145_c00425{transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);}
.mdf_c00425{transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);}
.md5_c00425{transform:matrix(0.282650,0.006501,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282650,0.006501,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282650,0.006501,-0.005748,0.249934,0,0);}
.m10d_c00425{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m114_c00425{transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293580,0.000000,0.000000,0.250000,0,0);}
.m136_c00425{transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);}
.me4_c00425{transform:matrix(0.301735,0.006940,-0.005748,0.249934,0,0);-ms-transform:matrix(0.301735,0.006940,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.301735,0.006940,-0.005748,0.249934,0,0);}
.m65_c00425{transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303060,0.000000,0.000000,0.250000,0,0);}
.m10c_c00425{transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324080,0.000000,0.000000,0.250000,0,0);}
.m147_c00425{transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337660,0.000000,0.000000,0.250000,0,0);}
.mb1_c00425{transform:matrix(0.338301,0.005751,-0.004249,0.249964,0,0);-ms-transform:matrix(0.338301,0.005751,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.338301,0.005751,-0.004249,0.249964,0,0);}
.m46_c00425{transform:matrix(0.355610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355610,0.000000,0.000000,0.250000,0,0);}
.m146_c00425{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);}
.m84_c00425{transform:matrix(0.373340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373340,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.385320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385320,0.000000,0.000000,0.250000,0,0);}
.m15e_c00425{transform:matrix(0.389180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389180,0.000000,0.000000,0.250000,0,0);}
.mea_c00425{transform:matrix(0.423103,0.009731,-0.005748,0.249934,0,0);-ms-transform:matrix(0.423103,0.009731,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.423103,0.009731,-0.005748,0.249934,0,0);}
.mfd_c00425{transform:matrix(0.450526,0.009461,-0.005249,0.249945,0,0);-ms-transform:matrix(0.450526,0.009461,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.450526,0.009461,-0.005249,0.249945,0,0);}
.me1_c00425{transform:matrix(0.537663,0.012366,-0.005748,0.249934,0,0);-ms-transform:matrix(0.537663,0.012366,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.537663,0.012366,-0.005748,0.249934,0,0);}
.m102_c00425{transform:matrix(0.557135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557135,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.579785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579785,0.000000,0.000000,0.250000,0,0);}
.m15c_c00425{transform:matrix(0.592115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592115,0.000000,0.000000,0.250000,0,0);}
.m159_c00425{transform:matrix(0.651447,-0.012378,0.004749,0.249955,0,0);-ms-transform:matrix(0.651447,-0.012378,0.004749,0.249955,0,0);-webkit-transform:matrix(0.651447,-0.012378,0.004749,0.249955,0,0);}
.ma2_c00425{transform:matrix(0.938355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.938355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.938355,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;}
.fs1f_c00425{font-size:18.900000px;}
.fs9_c00425{font-size:22.050000px;}
.fs20_c00425{font-size:42.000000px;}
.fs1b_c00425{font-size:44.100000px;}
.fs19_c00425{font-size:45.150000px;}
.fs13_c00425{font-size:46.212218px;}
.fs15_c00425{font-size:47.250000px;}
.fs11_c00425{font-size:47.262496px;}
.fs14_c00425{font-size:48.300000px;}
.fsf_c00425{font-size:48.307824px;}
.fsa_c00425{font-size:49.350000px;}
.fs12_c00425{font-size:49.363051px;}
.fse_c00425{font-size:50.400000px;}
.fsb_c00425{font-size:50.405670px;}
.fs10_c00425{font-size:50.408164px;}
.fs16_c00425{font-size:50.411112px;}
.fs18_c00425{font-size:51.450000px;}
.fsc_c00425{font-size:51.457434px;}
.fs17_c00425{font-size:51.461343px;}
.fsd_c00425{font-size:52.500000px;}
.fs1a_c00425{font-size:53.550000px;}
.fs1c_c00425{font-size:55.650000px;}
.fs6_c00425{font-size:63.000000px;}
.fs1_c00425{font-size:67.200000px;}
.fs0_c00425{font-size:68.250000px;}
.fs4_c00425{font-size:69.300000px;}
.fs8_c00425{font-size:70.350000px;}
.fs2_c00425{font-size:71.400000px;}
.fs5_c00425{font-size:72.450000px;}
.fs3_c00425{font-size:73.500000px;}
.fs7_c00425{font-size:74.550000px;}
.fs1e_c00425{font-size:89.250000px;}
.fs1d_c00425{font-size:234.192260px;}
.y0_c00425{bottom:0.000000px;}
.y77_c00425{bottom:85.050000px;}
.y75_c00425{bottom:99.900000px;}
.y76_c00425{bottom:100.440000px;}
.y72_c00425{bottom:105.225000px;}
.y73_c00425{bottom:109.822990px;}
.y74_c00425{bottom:111.596944px;}
.y71_c00425{bottom:153.868500px;}
.y64_c00425{bottom:154.620203px;}
.y63_c00425{bottom:155.265008px;}
.y62_c00425{bottom:156.463622px;}
.y61_c00425{bottom:157.069103px;}
.y60_c00425{bottom:157.409970px;}
.y5f_c00425{bottom:158.759907px;}
.y70_c00425{bottom:171.844500px;}
.y5e_c00425{bottom:172.839258px;}
.y5d_c00425{bottom:173.663015px;}
.y5c_c00425{bottom:174.144020px;}
.y5b_c00425{bottom:174.585933px;}
.y5a_c00425{bottom:175.266427px;}
.y59_c00425{bottom:175.584231px;}
.y58_c00425{bottom:175.998173px;}
.y57_c00425{bottom:176.854500px;}
.y6f_c00425{bottom:189.720000px;}
.y54_c00425{bottom:191.301087px;}
.y53_c00425{bottom:192.041208px;}
.y52_c00425{bottom:192.485267px;}
.y51_c00425{bottom:192.771098px;}
.y50_c00425{bottom:193.390310px;}
.y4f_c00425{bottom:193.987886px;}
.y4e_c00425{bottom:194.387708px;}
.y6e_c00425{bottom:207.795000px;}
.y4c_c00425{bottom:209.224923px;}
.y4b_c00425{bottom:209.225016px;}
.y4d_c00425{bottom:209.225211px;}
.y4a_c00425{bottom:209.225418px;}
.y56_c00425{bottom:211.374000px;}
.y6d_c00425{bottom:225.441000px;}
.y49_c00425{bottom:225.953879px;}
.y48_c00425{bottom:227.873534px;}
.y47_c00425{bottom:228.225074px;}
.y55_c00425{bottom:228.946500px;}
.y46_c00425{bottom:243.113376px;}
.y6c_c00425{bottom:243.304500px;}
.y45_c00425{bottom:244.026419px;}
.y44_c00425{bottom:244.759440px;}
.y43_c00425{bottom:245.575158px;}
.y42_c00425{bottom:246.045152px;}
.y41_c00425{bottom:246.405090px;}
.y40_c00425{bottom:246.839963px;}
.y3f_c00425{bottom:247.095228px;}
.y3e_c00425{bottom:247.329000px;}
.y6b_c00425{bottom:260.664000px;}
.y3d_c00425{bottom:262.760832px;}
.y3c_c00425{bottom:263.656221px;}
.y3b_c00425{bottom:264.092016px;}
.y3a_c00425{bottom:264.579351px;}
.y39_c00425{bottom:265.066011px;}
.y38_c00425{bottom:265.409700px;}
.y6a_c00425{bottom:279.367500px;}
.y37_c00425{bottom:280.002543px;}
.y36_c00425{bottom:280.279698px;}
.y35_c00425{bottom:280.459653px;}
.y34_c00425{bottom:281.207877px;}
.y33_c00425{bottom:281.436432px;}
.y32_c00425{bottom:282.282207px;}
.y31_c00425{bottom:282.656616px;}
.y30_c00425{bottom:283.501500px;}
.y69_c00425{bottom:297.270000px;}
.y2f_c00425{bottom:298.728000px;}
.y68_c00425{bottom:315.360000px;}
.y2e_c00425{bottom:317.034000px;}
.y67_c00425{bottom:333.216000px;}
.y2d_c00425{bottom:333.914373px;}
.y2c_c00425{bottom:334.571202px;}
.y2b_c00425{bottom:334.997689px;}
.y2a_c00425{bottom:335.226756px;}
.y29_c00425{bottom:335.938180px;}
.y28_c00425{bottom:336.128053px;}
.y27_c00425{bottom:336.963000px;}
.y66_c00425{bottom:351.073500px;}
.y26_c00425{bottom:351.615480px;}
.y25_c00425{bottom:352.031910px;}
.y24_c00425{bottom:352.316108px;}
.y23_c00425{bottom:353.097668px;}
.y22_c00425{bottom:353.385488px;}
.y21_c00425{bottom:353.555565px;}
.y20_c00425{bottom:354.511500px;}
.y65_c00425{bottom:369.475500px;}
.y1f_c00425{bottom:370.287000px;}
.y1e_c00425{bottom:397.836000px;}
.y1d_c00425{bottom:421.324500px;}
.y1c_c00425{bottom:444.097500px;}
.y1b_c00425{bottom:466.296000px;}
.y1a_c00425{bottom:487.083000px;}
.y19_c00425{bottom:487.098000px;}
.y18_c00425{bottom:487.471500px;}
.y17_c00425{bottom:487.839000px;}
.y16_c00425{bottom:488.101500px;}
.y15_c00425{bottom:488.532000px;}
.y14_c00425{bottom:488.746500px;}
.y13_c00425{bottom:489.145500px;}
.y12_c00425{bottom:489.592500px;}
.y11_c00425{bottom:489.753000px;}
.y10_c00425{bottom:490.051500px;}
.yf_c00425{bottom:511.497000px;}
.ye_c00425{bottom:534.208500px;}
.yd_c00425{bottom:557.007000px;}
.yc_c00425{bottom:580.174500px;}
.yb_c00425{bottom:602.314500px;}
.ya_c00425{bottom:624.990000px;}
.y9_c00425{bottom:647.643000px;}
.y8_c00425{bottom:669.895500px;}
.y7_c00425{bottom:692.947500px;}
.y6_c00425{bottom:716.001000px;}
.y5_c00425{bottom:738.151500px;}
.y4_c00425{bottom:760.564500px;}
.y3_c00425{bottom:783.672000px;}
.y2_c00425{bottom:806.046000px;}
.y1_c00425{bottom:828.237000px;}
.h21_c00425{height:18.900000px;}
.hb_c00425{height:22.050000px;}
.h22_c00425{height:42.000000px;}
.h1d_c00425{height:44.100000px;}
.h1b_c00425{height:45.150000px;}
.h15_c00425{height:46.212218px;}
.h17_c00425{height:47.250000px;}
.h13_c00425{height:47.262496px;}
.h16_c00425{height:48.300000px;}
.h11_c00425{height:48.307824px;}
.hc_c00425{height:49.350000px;}
.h14_c00425{height:49.363051px;}
.h10_c00425{height:50.400000px;}
.hd_c00425{height:50.405670px;}
.h12_c00425{height:50.408164px;}
.h18_c00425{height:50.411112px;}
.h1a_c00425{height:51.450000px;}
.he_c00425{height:51.457434px;}
.h19_c00425{height:51.461343px;}
.hf_c00425{height:52.500000px;}
.h1c_c00425{height:53.550000px;}
.h1e_c00425{height:55.650000px;}
.h8_c00425{height:63.000000px;}
.h3_c00425{height:67.200000px;}
.h2_c00425{height:68.250000px;}
.h6_c00425{height:69.300000px;}
.ha_c00425{height:70.350000px;}
.h4_c00425{height:71.400000px;}
.h7_c00425{height:72.450000px;}
.h5_c00425{height:73.500000px;}
.h9_c00425{height:74.550000px;}
.h20_c00425{height:89.250000px;}
.h1f_c00425{height:234.192260px;}
.h0_c00425{height:1008.450000px;}
.h1_c00425{height:1008.750000px;}
.w1_c00425{width:689.250000px;}
.w0_c00425{width:689.550000px;}
.x0_c00425{left:0.000000px;}
.xbd_c00425{left:91.210500px;}
.x71_c00425{left:137.289000px;}
.x83_c00425{left:138.613785px;}
.x6c_c00425{left:139.860000px;}
.x6d_c00425{left:140.940000px;}
.x6e_c00425{left:149.850000px;}
.x78_c00425{left:150.930000px;}
.x84_c00425{left:158.874663px;}
.x87_c00425{left:161.227500px;}
.x42_c00425{left:169.830000px;}
.x79_c00425{left:170.910000px;}
.x4b_c00425{left:171.990000px;}
.x29_c00425{left:173.070000px;}
.x13_c00425{left:174.150000px;}
.xa_c00425{left:175.500000px;}
.x1_c00425{left:178.200000px;}
.x7d_c00425{left:181.710000px;}
.x81_c00425{left:184.527000px;}
.x74_c00425{left:186.379500px;}
.x85_c00425{left:187.495176px;}
.x2_c00425{left:189.270000px;}
.x67_c00425{left:190.887000px;}
.x14_c00425{left:193.320000px;}
.x43_c00425{left:197.100000px;}
.x24_c00425{left:198.990000px;}
.x50_c00425{left:200.340000px;}
.x8c_c00425{left:202.230000px;}
.x7e_c00425{left:203.850000px;}
.x57_c00425{left:205.354500px;}
.x88_c00425{left:206.883000px;}
.x3f_c00425{left:210.060000px;}
.x15_c00425{left:213.030000px;}
.x36_c00425{left:214.110000px;}
.x86_c00425{left:216.153189px;}
.x47_c00425{left:217.620000px;}
.x1c_c00425{left:219.510000px;}
.x51_c00425{left:223.290000px;}
.x8d_c00425{left:225.720000px;}
.x89_c00425{left:227.317500px;}
.x2a_c00425{left:231.120000px;}
.x68_c00425{left:233.007000px;}
.x2f_c00425{left:234.630000px;}
.x55_c00425{left:235.980000px;}
.xb_c00425{left:237.600000px;}
.x75_c00425{left:239.397000px;}
.x3b_c00425{left:241.650000px;}
.x48_c00425{left:242.730000px;}
.x25_c00425{left:245.160000px;}
.x61_c00425{left:247.047000px;}
.x4c_c00425{left:248.130000px;}
.x8a_c00425{left:249.669396px;}
.x16_c00425{left:251.370000px;}
.x76_c00425{left:252.871500px;}
.x5d_c00425{left:257.577000px;}
.x30_c00425{left:258.930000px;}
.x7a_c00425{left:262.440000px;}
.x2b_c00425{left:263.790000px;}
.x82_c00425{left:265.012500px;}
.xc_c00425{left:266.220000px;}
.x3_c00425{left:267.840000px;}
.x1d_c00425{left:268.920000px;}
.x37_c00425{left:271.080000px;}
.x4_c00425{left:272.700000px;}
.x31_c00425{left:274.320000px;}
.x8b_c00425{left:275.762484px;}
.x77_c00425{left:277.959000px;}
.x72_c00425{left:283.648500px;}
.x4d_c00425{left:289.440000px;}
.x7f_c00425{left:292.140000px;}
.x44_c00425{left:293.760000px;}
.x17_c00425{left:294.840000px;}
.x49_c00425{left:295.920000px;}
.x6f_c00425{left:302.670000px;}
.x5e_c00425{left:306.177000px;}
.x26_c00425{left:308.880000px;}
.xd_c00425{left:312.930000px;}
.x58_c00425{left:317.134500px;}
.x7b_c00425{left:319.140000px;}
.x80_c00425{left:320.490000px;}
.x62_c00425{left:321.567000px;}
.x3c_c00425{left:323.190000px;}
.x5_c00425{left:324.270000px;}
.x69_c00425{left:325.617000px;}
.x8e_c00425{left:328.704000px;}
.x73_c00425{left:330.357000px;}
.x52_c00425{left:331.830000px;}
.xbe_c00425{left:333.210000px;}
.x70_c00425{left:335.070000px;}
.x2c_c00425{left:339.390000px;}
.x18_c00425{left:340.470000px;}
.x7c_c00425{left:341.550000px;}
.x1e_c00425{left:343.710000px;}
.x8f_c00425{left:344.974240px;}
.x32_c00425{left:347.220000px;}
.x5f_c00425{left:348.837000px;}
.x4e_c00425{left:350.460000px;}
.x53_c00425{left:351.540000px;}
.xe_c00425{left:353.160000px;}
.x2d_c00425{left:362.610000px;}
.x63_c00425{left:363.957000px;}
.x45_c00425{left:366.390000px;}
.x4f_c00425{left:369.630000px;}
.x1f_c00425{left:371.790000px;}
.xb5_c00425{left:377.190000px;}
.xaa_c00425{left:378.270000px;}
.x6a_c00425{left:379.887000px;}
.x40_c00425{left:380.970000px;}
.x90_c00425{left:382.590000px;}
.x33_c00425{left:385.560000px;}
.x9c_c00425{left:386.640000px;}
.x59_c00425{left:388.683000px;}
.x20_c00425{left:392.040000px;}
.x54_c00425{left:393.660000px;}
.x56_c00425{left:395.010000px;}
.x6_c00425{left:397.710000px;}
.x27_c00425{left:399.330000px;}
.x91_c00425{left:401.490000px;}
.x19_c00425{left:404.460000px;}
.x46_c00425{left:409.590000px;}
.xf_c00425{left:416.610000px;}
.x5a_c00425{left:417.846000px;}
.xb0_c00425{left:419.850000px;}
.x21_c00425{left:423.630000px;}
.xbf_c00425{left:426.576000px;}
.xa1_c00425{left:429.300000px;}
.x92_c00425{left:431.730000px;}
.x1a_c00425{left:432.810000px;}
.x64_c00425{left:433.887000px;}
.x28_c00425{left:436.590000px;}
.x10_c00425{left:439.560000px;}
.x3d_c00425{left:441.990000px;}
.x34_c00425{left:444.960000px;}
.xa2_c00425{left:447.660000px;}
.x60_c00425{left:449.817000px;}
.x6b_c00425{left:452.787000px;}
.x97_c00425{left:454.140000px;}
.x3e_c00425{left:458.190000px;}
.x65_c00425{left:459.807000px;}
.x7_c00425{left:461.700000px;}
.x22_c00425{left:463.050000px;}
.x38_c00425{left:465.210000px;}
.xb7_c00425{left:467.370000px;}
.x1b_c00425{left:468.450000px;}
.x9d_c00425{left:471.150000px;}
.x11_c00425{left:475.470000px;}
.xab_c00425{left:477.360000px;}
.x66_c00425{left:479.517000px;}
.x98_c00425{left:482.220000px;}
.x8_c00425{left:485.190000px;}
.x41_c00425{left:486.270000px;}
.x35_c00425{left:488.160000px;}
.x2e_c00425{left:491.940000px;}
.x93_c00425{left:493.020000px;}
.xb8_c00425{left:496.800000px;}
.xa4_c00425{left:498.150000px;}
.x5b_c00425{left:500.097000px;}
.x5c_c00425{left:501.816000px;}
.x4a_c00425{left:503.550000px;}
.x39_c00425{left:505.170000px;}
.xb1_c00425{left:506.520000px;}
.xac_c00425{left:508.950000px;}
.x94_c00425{left:517.050000px;}
.xa3_c00425{left:521.370000px;}
.x9e_c00425{left:523.260000px;}
.x95_c00425{left:524.880000px;}
.x9_c00425{left:525.960000px;}
.x12_c00425{left:528.390000px;}
.xa7_c00425{left:529.740000px;}
.xba_c00425{left:530.820000px;}
.xb9_c00425{left:531.900000px;}
.x99_c00425{left:544.590000px;}
.x23_c00425{left:545.670000px;}
.xb2_c00425{left:546.750000px;}
.xbb_c00425{left:548.370000px;}
.x9f_c00425{left:549.990000px;}
.xb3_c00425{left:551.610000px;}
.xaf_c00425{left:552.690000px;}
.x3a_c00425{left:555.390000px;}
.xa8_c00425{left:557.280000px;}
.xa5_c00425{left:558.360000px;}
.xb6_c00425{left:561.870000px;}
.x96_c00425{left:563.760000px;}
.xc0_c00425{left:565.650000px;}
.xa6_c00425{left:576.180000px;}
.xb4_c00425{left:577.530000px;}
.xbc_c00425{left:581.580000px;}
.xad_c00425{left:584.820000px;}
.x9a_c00425{left:586.170000px;}
.xa9_c00425{left:593.190000px;}
.x9b_c00425{left:601.020000px;}
.xae_c00425{left:603.180000px;}
.xa0_c00425{left:611.010000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.fs1f_c00425{font-size:16.800000pt;}
.fs9_c00425{font-size:19.600000pt;}
.fs20_c00425{font-size:37.333333pt;}
.fs1b_c00425{font-size:39.200000pt;}
.fs19_c00425{font-size:40.133333pt;}
.fs13_c00425{font-size:41.077527pt;}
.fs15_c00425{font-size:42.000000pt;}
.fs11_c00425{font-size:42.011108pt;}
.fs14_c00425{font-size:42.933333pt;}
.fsf_c00425{font-size:42.940288pt;}
.fsa_c00425{font-size:43.866667pt;}
.fs12_c00425{font-size:43.878268pt;}
.fse_c00425{font-size:44.800000pt;}
.fsb_c00425{font-size:44.805040pt;}
.fs10_c00425{font-size:44.807257pt;}
.fs16_c00425{font-size:44.809877pt;}
.fs18_c00425{font-size:45.733333pt;}
.fsc_c00425{font-size:45.739941pt;}
.fs17_c00425{font-size:45.743416pt;}
.fsd_c00425{font-size:46.666667pt;}
.fs1a_c00425{font-size:47.600000pt;}
.fs1c_c00425{font-size:49.466667pt;}
.fs6_c00425{font-size:56.000000pt;}
.fs1_c00425{font-size:59.733333pt;}
.fs0_c00425{font-size:60.666667pt;}
.fs4_c00425{font-size:61.600000pt;}
.fs8_c00425{font-size:62.533333pt;}
.fs2_c00425{font-size:63.466667pt;}
.fs5_c00425{font-size:64.400000pt;}
.fs3_c00425{font-size:65.333333pt;}
.fs7_c00425{font-size:66.266667pt;}
.fs1e_c00425{font-size:79.333333pt;}
.fs1d_c00425{font-size:208.170898pt;}
.y0_c00425{bottom:0.000000pt;}
.y77_c00425{bottom:75.600000pt;}
.y75_c00425{bottom:88.800000pt;}
.y76_c00425{bottom:89.280000pt;}
.y72_c00425{bottom:93.533333pt;}
.y73_c00425{bottom:97.620436pt;}
.y74_c00425{bottom:99.197284pt;}
.y71_c00425{bottom:136.772000pt;}
.y64_c00425{bottom:137.440180pt;}
.y63_c00425{bottom:138.013340pt;}
.y62_c00425{bottom:139.078775pt;}
.y61_c00425{bottom:139.616980pt;}
.y60_c00425{bottom:139.919973pt;}
.y5f_c00425{bottom:141.119917pt;}
.y70_c00425{bottom:152.750667pt;}
.y5e_c00425{bottom:153.634896pt;}
.y5d_c00425{bottom:154.367124pt;}
.y5c_c00425{bottom:154.794684pt;}
.y5b_c00425{bottom:155.187496pt;}
.y5a_c00425{bottom:155.792380pt;}
.y59_c00425{bottom:156.074872pt;}
.y58_c00425{bottom:156.442820pt;}
.y57_c00425{bottom:157.204000pt;}
.y6f_c00425{bottom:168.640000pt;}
.y54_c00425{bottom:170.045411pt;}
.y53_c00425{bottom:170.703296pt;}
.y52_c00425{bottom:171.098015pt;}
.y51_c00425{bottom:171.352087pt;}
.y50_c00425{bottom:171.902497pt;}
.y4f_c00425{bottom:172.433676pt;}
.y4e_c00425{bottom:172.789073pt;}
.y6e_c00425{bottom:184.706667pt;}
.y4c_c00425{bottom:185.977709pt;}
.y4b_c00425{bottom:185.977792pt;}
.y4d_c00425{bottom:185.977965pt;}
.y4a_c00425{bottom:185.978149pt;}
.y56_c00425{bottom:187.888000pt;}
.y6d_c00425{bottom:200.392000pt;}
.y49_c00425{bottom:200.847892pt;}
.y48_c00425{bottom:202.554252pt;}
.y47_c00425{bottom:202.866732pt;}
.y55_c00425{bottom:203.508000pt;}
.y46_c00425{bottom:216.100779pt;}
.y6c_c00425{bottom:216.270667pt;}
.y45_c00425{bottom:216.912372pt;}
.y44_c00425{bottom:217.563947pt;}
.y43_c00425{bottom:218.289029pt;}
.y42_c00425{bottom:218.706801pt;}
.y41_c00425{bottom:219.026747pt;}
.y40_c00425{bottom:219.413300pt;}
.y3f_c00425{bottom:219.640203pt;}
.y3e_c00425{bottom:219.848000pt;}
.y6b_c00425{bottom:231.701333pt;}
.y3d_c00425{bottom:233.565184pt;}
.y3c_c00425{bottom:234.361085pt;}
.y3b_c00425{bottom:234.748459pt;}
.y3a_c00425{bottom:235.181645pt;}
.y39_c00425{bottom:235.614232pt;}
.y38_c00425{bottom:235.919733pt;}
.y6a_c00425{bottom:248.326667pt;}
.y37_c00425{bottom:248.891149pt;}
.y36_c00425{bottom:249.137509pt;}
.y35_c00425{bottom:249.297469pt;}
.y34_c00425{bottom:249.962557pt;}
.y33_c00425{bottom:250.165717pt;}
.y32_c00425{bottom:250.917517pt;}
.y31_c00425{bottom:251.250325pt;}
.y30_c00425{bottom:252.001333pt;}
.y69_c00425{bottom:264.240000pt;}
.y2f_c00425{bottom:265.536000pt;}
.y68_c00425{bottom:280.320000pt;}
.y2e_c00425{bottom:281.808000pt;}
.y67_c00425{bottom:296.192000pt;}
.y2d_c00425{bottom:296.812776pt;}
.y2c_c00425{bottom:297.396624pt;}
.y2b_c00425{bottom:297.775724pt;}
.y2a_c00425{bottom:297.979339pt;}
.y29_c00425{bottom:298.611716pt;}
.y28_c00425{bottom:298.780492pt;}
.y27_c00425{bottom:299.522667pt;}
.y66_c00425{bottom:312.065333pt;}
.y26_c00425{bottom:312.547093pt;}
.y25_c00425{bottom:312.917253pt;}
.y24_c00425{bottom:313.169873pt;}
.y23_c00425{bottom:313.864593pt;}
.y22_c00425{bottom:314.120433pt;}
.y21_c00425{bottom:314.271613pt;}
.y20_c00425{bottom:315.121333pt;}
.y65_c00425{bottom:328.422667pt;}
.y1f_c00425{bottom:329.144000pt;}
.y1e_c00425{bottom:353.632000pt;}
.y1d_c00425{bottom:374.510667pt;}
.y1c_c00425{bottom:394.753333pt;}
.y1b_c00425{bottom:414.485333pt;}
.y1a_c00425{bottom:432.962667pt;}
.y19_c00425{bottom:432.976000pt;}
.y18_c00425{bottom:433.308000pt;}
.y17_c00425{bottom:433.634667pt;}
.y16_c00425{bottom:433.868000pt;}
.y15_c00425{bottom:434.250667pt;}
.y14_c00425{bottom:434.441333pt;}
.y13_c00425{bottom:434.796000pt;}
.y12_c00425{bottom:435.193333pt;}
.y11_c00425{bottom:435.336000pt;}
.y10_c00425{bottom:435.601333pt;}
.yf_c00425{bottom:454.664000pt;}
.ye_c00425{bottom:474.852000pt;}
.yd_c00425{bottom:495.117333pt;}
.yc_c00425{bottom:515.710667pt;}
.yb_c00425{bottom:535.390667pt;}
.ya_c00425{bottom:555.546667pt;}
.y9_c00425{bottom:575.682667pt;}
.y8_c00425{bottom:595.462667pt;}
.y7_c00425{bottom:615.953333pt;}
.y6_c00425{bottom:636.445333pt;}
.y5_c00425{bottom:656.134667pt;}
.y4_c00425{bottom:676.057333pt;}
.y3_c00425{bottom:696.597333pt;}
.y2_c00425{bottom:716.485333pt;}
.y1_c00425{bottom:736.210667pt;}
.h21_c00425{height:16.800000pt;}
.hb_c00425{height:19.600000pt;}
.h22_c00425{height:37.333333pt;}
.h1d_c00425{height:39.200000pt;}
.h1b_c00425{height:40.133333pt;}
.h15_c00425{height:41.077527pt;}
.h17_c00425{height:42.000000pt;}
.h13_c00425{height:42.011108pt;}
.h16_c00425{height:42.933333pt;}
.h11_c00425{height:42.940288pt;}
.hc_c00425{height:43.866667pt;}
.h14_c00425{height:43.878268pt;}
.h10_c00425{height:44.800000pt;}
.hd_c00425{height:44.805040pt;}
.h12_c00425{height:44.807257pt;}
.h18_c00425{height:44.809877pt;}
.h1a_c00425{height:45.733333pt;}
.he_c00425{height:45.739941pt;}
.h19_c00425{height:45.743416pt;}
.hf_c00425{height:46.666667pt;}
.h1c_c00425{height:47.600000pt;}
.h1e_c00425{height:49.466667pt;}
.h8_c00425{height:56.000000pt;}
.h3_c00425{height:59.733333pt;}
.h2_c00425{height:60.666667pt;}
.h6_c00425{height:61.600000pt;}
.ha_c00425{height:62.533333pt;}
.h4_c00425{height:63.466667pt;}
.h7_c00425{height:64.400000pt;}
.h5_c00425{height:65.333333pt;}
.h9_c00425{height:66.266667pt;}
.h20_c00425{height:79.333333pt;}
.h1f_c00425{height:208.170898pt;}
.h0_c00425{height:896.400000pt;}
.h1_c00425{height:896.666667pt;}
.w1_c00425{width:612.666667pt;}
.w0_c00425{width:612.933333pt;}
.x0_c00425{left:0.000000pt;}
.xbd_c00425{left:81.076000pt;}
.x71_c00425{left:122.034667pt;}
.x83_c00425{left:123.212253pt;}
.x6c_c00425{left:124.320000pt;}
.x6d_c00425{left:125.280000pt;}
.x6e_c00425{left:133.200000pt;}
.x78_c00425{left:134.160000pt;}
.x84_c00425{left:141.221923pt;}
.x87_c00425{left:143.313333pt;}
.x42_c00425{left:150.960000pt;}
.x79_c00425{left:151.920000pt;}
.x4b_c00425{left:152.880000pt;}
.x29_c00425{left:153.840000pt;}
.x13_c00425{left:154.800000pt;}
.xa_c00425{left:156.000000pt;}
.x1_c00425{left:158.400000pt;}
.x7d_c00425{left:161.520000pt;}
.x81_c00425{left:164.024000pt;}
.x74_c00425{left:165.670667pt;}
.x85_c00425{left:166.662379pt;}
.x2_c00425{left:168.240000pt;}
.x67_c00425{left:169.677333pt;}
.x14_c00425{left:171.840000pt;}
.x43_c00425{left:175.200000pt;}
.x24_c00425{left:176.880000pt;}
.x50_c00425{left:178.080000pt;}
.x8c_c00425{left:179.760000pt;}
.x7e_c00425{left:181.200000pt;}
.x57_c00425{left:182.537333pt;}
.x88_c00425{left:183.896000pt;}
.x3f_c00425{left:186.720000pt;}
.x15_c00425{left:189.360000pt;}
.x36_c00425{left:190.320000pt;}
.x86_c00425{left:192.136168pt;}
.x47_c00425{left:193.440000pt;}
.x1c_c00425{left:195.120000pt;}
.x51_c00425{left:198.480000pt;}
.x8d_c00425{left:200.640000pt;}
.x89_c00425{left:202.060000pt;}
.x2a_c00425{left:205.440000pt;}
.x68_c00425{left:207.117333pt;}
.x2f_c00425{left:208.560000pt;}
.x55_c00425{left:209.760000pt;}
.xb_c00425{left:211.200000pt;}
.x75_c00425{left:212.797333pt;}
.x3b_c00425{left:214.800000pt;}
.x48_c00425{left:215.760000pt;}
.x25_c00425{left:217.920000pt;}
.x61_c00425{left:219.597333pt;}
.x4c_c00425{left:220.560000pt;}
.x8a_c00425{left:221.928352pt;}
.x16_c00425{left:223.440000pt;}
.x76_c00425{left:224.774667pt;}
.x5d_c00425{left:228.957333pt;}
.x30_c00425{left:230.160000pt;}
.x7a_c00425{left:233.280000pt;}
.x2b_c00425{left:234.480000pt;}
.x82_c00425{left:235.566667pt;}
.xc_c00425{left:236.640000pt;}
.x3_c00425{left:238.080000pt;}
.x1d_c00425{left:239.040000pt;}
.x37_c00425{left:240.960000pt;}
.x4_c00425{left:242.400000pt;}
.x31_c00425{left:243.840000pt;}
.x8b_c00425{left:245.122208pt;}
.x77_c00425{left:247.074667pt;}
.x72_c00425{left:252.132000pt;}
.x4d_c00425{left:257.280000pt;}
.x7f_c00425{left:259.680000pt;}
.x44_c00425{left:261.120000pt;}
.x17_c00425{left:262.080000pt;}
.x49_c00425{left:263.040000pt;}
.x6f_c00425{left:269.040000pt;}
.x5e_c00425{left:272.157333pt;}
.x26_c00425{left:274.560000pt;}
.xd_c00425{left:278.160000pt;}
.x58_c00425{left:281.897333pt;}
.x7b_c00425{left:283.680000pt;}
.x80_c00425{left:284.880000pt;}
.x62_c00425{left:285.837333pt;}
.x3c_c00425{left:287.280000pt;}
.x5_c00425{left:288.240000pt;}
.x69_c00425{left:289.437333pt;}
.x8e_c00425{left:292.181333pt;}
.x73_c00425{left:293.650667pt;}
.x52_c00425{left:294.960000pt;}
.xbe_c00425{left:296.186667pt;}
.x70_c00425{left:297.840000pt;}
.x2c_c00425{left:301.680000pt;}
.x18_c00425{left:302.640000pt;}
.x7c_c00425{left:303.600000pt;}
.x1e_c00425{left:305.520000pt;}
.x8f_c00425{left:306.643769pt;}
.x32_c00425{left:308.640000pt;}
.x5f_c00425{left:310.077333pt;}
.x4e_c00425{left:311.520000pt;}
.x53_c00425{left:312.480000pt;}
.xe_c00425{left:313.920000pt;}
.x2d_c00425{left:322.320000pt;}
.x63_c00425{left:323.517333pt;}
.x45_c00425{left:325.680000pt;}
.x4f_c00425{left:328.560000pt;}
.x1f_c00425{left:330.480000pt;}
.xb5_c00425{left:335.280000pt;}
.xaa_c00425{left:336.240000pt;}
.x6a_c00425{left:337.677333pt;}
.x40_c00425{left:338.640000pt;}
.x90_c00425{left:340.080000pt;}
.x33_c00425{left:342.720000pt;}
.x9c_c00425{left:343.680000pt;}
.x59_c00425{left:345.496000pt;}
.x20_c00425{left:348.480000pt;}
.x54_c00425{left:349.920000pt;}
.x56_c00425{left:351.120000pt;}
.x6_c00425{left:353.520000pt;}
.x27_c00425{left:354.960000pt;}
.x91_c00425{left:356.880000pt;}
.x19_c00425{left:359.520000pt;}
.x46_c00425{left:364.080000pt;}
.xf_c00425{left:370.320000pt;}
.x5a_c00425{left:371.418667pt;}
.xb0_c00425{left:373.200000pt;}
.x21_c00425{left:376.560000pt;}
.xbf_c00425{left:379.178667pt;}
.xa1_c00425{left:381.600000pt;}
.x92_c00425{left:383.760000pt;}
.x1a_c00425{left:384.720000pt;}
.x64_c00425{left:385.677333pt;}
.x28_c00425{left:388.080000pt;}
.x10_c00425{left:390.720000pt;}
.x3d_c00425{left:392.880000pt;}
.x34_c00425{left:395.520000pt;}
.xa2_c00425{left:397.920000pt;}
.x60_c00425{left:399.837333pt;}
.x6b_c00425{left:402.477333pt;}
.x97_c00425{left:403.680000pt;}
.x3e_c00425{left:407.280000pt;}
.x65_c00425{left:408.717333pt;}
.x7_c00425{left:410.400000pt;}
.x22_c00425{left:411.600000pt;}
.x38_c00425{left:413.520000pt;}
.xb7_c00425{left:415.440000pt;}
.x1b_c00425{left:416.400000pt;}
.x9d_c00425{left:418.800000pt;}
.x11_c00425{left:422.640000pt;}
.xab_c00425{left:424.320000pt;}
.x66_c00425{left:426.237333pt;}
.x98_c00425{left:428.640000pt;}
.x8_c00425{left:431.280000pt;}
.x41_c00425{left:432.240000pt;}
.x35_c00425{left:433.920000pt;}
.x2e_c00425{left:437.280000pt;}
.x93_c00425{left:438.240000pt;}
.xb8_c00425{left:441.600000pt;}
.xa4_c00425{left:442.800000pt;}
.x5b_c00425{left:444.530667pt;}
.x5c_c00425{left:446.058667pt;}
.x4a_c00425{left:447.600000pt;}
.x39_c00425{left:449.040000pt;}
.xb1_c00425{left:450.240000pt;}
.xac_c00425{left:452.400000pt;}
.x94_c00425{left:459.600000pt;}
.xa3_c00425{left:463.440000pt;}
.x9e_c00425{left:465.120000pt;}
.x95_c00425{left:466.560000pt;}
.x9_c00425{left:467.520000pt;}
.x12_c00425{left:469.680000pt;}
.xa7_c00425{left:470.880000pt;}
.xba_c00425{left:471.840000pt;}
.xb9_c00425{left:472.800000pt;}
.x99_c00425{left:484.080000pt;}
.x23_c00425{left:485.040000pt;}
.xb2_c00425{left:486.000000pt;}
.xbb_c00425{left:487.440000pt;}
.x9f_c00425{left:488.880000pt;}
.xb3_c00425{left:490.320000pt;}
.xaf_c00425{left:491.280000pt;}
.x3a_c00425{left:493.680000pt;}
.xa8_c00425{left:495.360000pt;}
.xa5_c00425{left:496.320000pt;}
.xb6_c00425{left:499.440000pt;}
.x96_c00425{left:501.120000pt;}
.xc0_c00425{left:502.800000pt;}
.xa6_c00425{left:512.160000pt;}
.xb4_c00425{left:513.360000pt;}
.xbc_c00425{left:516.960000pt;}
.xad_c00425{left:519.840000pt;}
.x9a_c00425{left:521.040000pt;}
.xa9_c00425{left:527.280000pt;}
.x9b_c00425{left:534.240000pt;}
.xae_c00425{left:536.160000pt;}
.xa0_c00425{left:543.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_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_2f6c0d3825a5d54c0b922384.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;}
.m129_c00426{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m131_c00426{transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023000,0.000000,0.000000,0.250000,0,0);}
.maf_c00426{transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063840,0.000000,0.000000,0.250000,0,0);}
.m8e_c00426{transform:matrix(0.076695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076695,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.096720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096720,0.000000,0.000000,0.250000,0,0);}
.mdf_c00426{transform:matrix(0.139190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139190,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.142420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142420,0.000000,0.000000,0.250000,0,0);}
.md6_c00426{transform:matrix(0.143315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143315,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{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);}
.m128_c00426{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);}
.m123_c00426{transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148905,0.000000,0.000000,0.250000,0,0);}
.m83_c00426{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);}
.m18_c00426{transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);}
.mf5_c00426{transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151730,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{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);}
.mce_c00426{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);}
.m1f_c00426{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);}
.m36_c00426{transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156995,0.000000,0.000000,0.250000,0,0);}
.me5_c00426{transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157110,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{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);}
.m77_c00426{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);}
.mf0_c00426{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);}
.m32_c00426{transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);}
.m73_c00426{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{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);}
.mfe_c00426{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);}
.me4_c00426{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);}
.m55_c00426{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00426{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);}
.m87_c00426{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);}
.ma0_c00426{transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{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);}
.m40_c00426{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);}
.m2e_c00426{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);}
.m5d_c00426{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);}
.m34_c00426{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);}
.m7b_c00426{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_c00426{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);}
.m35_c00426{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);}
.m111_c00426{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);}
.m9b_c00426{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);}
.m3a_c00426{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);}
.m56_c00426{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);}
.m9e_c00426{transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);}
.mcb_c00426{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);}
.m23_c00426{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);}
.m91_c00426{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);}
.m25_c00426{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);}
.m7e_c00426{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);}
.m78_c00426{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);}
.m66_c00426{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);}
.me0_c00426{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);}
.m68_c00426{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);}
.mc9_c00426{transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173335,0.000000,0.000000,0.250000,0,0);}
.mea_c00426{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);}
.mc7_c00426{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);}
.m57_c00426{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);}
.m107_c00426{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{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);}
.m6d_c00426{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);}
.ma4_c00426{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);}
.m11a_c00426{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);}
.mff_c00426{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);}
.m59_c00426{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);}
.m19_c00426{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);}
.mf1_c00426{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);}
.m2b_c00426{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);}
.m6c_c00426{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);}
.md1_c00426{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);}
.m8d_c00426{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);}
.mb9_c00426{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);}
.m108_c00426{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);}
.m48_c00426{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);}
.m10d_c00426{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);}
.m110_c00426{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);}
.ma_c00426{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);}
.m134_c00426{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);}
.m7_c00426{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);}
.m4f_c00426{transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179670,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{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);}
.m4c_c00426{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);}
.mfa_c00426{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);}
.m1d_c00426{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);}
.m102_c00426{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);}
.m130_c00426{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);}
.mb1_c00426{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);}
.m64_c00426{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);}
.m5_c00426{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);}
.mdd_c00426{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);}
.m88_c00426{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);}
.m74_c00426{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);}
.m86_c00426{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);}
.me2_c00426{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);}
.m22_c00426{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);}
.mb6_c00426{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);}
.ma2_c00426{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);}
.m109_c00426{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);}
.mf9_c00426{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);}
.m69_c00426{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);}
.ma6_c00426{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);}
.mab_c00426{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);}
.m6_c00426{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);}
.m10_c00426{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);}
.mf8_c00426{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);}
.mc1_c00426{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);}
.mfc_c00426{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);}
.mf7_c00426{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);}
.m7d_c00426{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);}
.m75_c00426{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);}
.m11_c00426{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.mc5_c00426{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);}
.mbb_c00426{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);}
.mb3_c00426{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);}
.m61_c00426{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);}
.m9f_c00426{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);}
.m80_c00426{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);}
.mcd_c00426{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);}
.me3_c00426{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);}
.m5f_c00426{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);}
.m17_c00426{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);}
.m138_c00426{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);}
.m1c_c00426{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_c00426{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);}
.m30_c00426{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);}
.m106_c00426{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.mf3_c00426{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);}
.m121_c00426{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);}
.m58_c00426{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);}
.m10c_c00426{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);}
.m2d_c00426{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);}
.m28_c00426{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);}
.m53_c00426{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);}
.m65_c00426{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);}
.m84_c00426{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);}
.m82_c00426{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);}
.m21_c00426{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);}
.m125_c00426{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);}
.m5e_c00426{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_c00426{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);}
.m5c_c00426{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);}
.m76_c00426{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);}
.mb4_c00426{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);}
.md9_c00426{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);}
.m46_c00426{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);}
.m67_c00426{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);}
.ma1_c00426{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);}
.m8b_c00426{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);}
.m26_c00426{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);}
.m2a_c00426{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);}
.mba_c00426{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);}
.m132_c00426{transform:matrix(0.196995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196995,0.000000,0.000000,0.250000,0,0);}
.m101_c00426{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);}
.m8_c00426{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);}
.m103_c00426{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);}
.m104_c00426{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);}
.m90_c00426{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);}
.m79_c00426{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);}
.m112_c00426{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);}
.mb7_c00426{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);}
.m42_c00426{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);}
.m13_c00426{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);}
.mca_c00426{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);}
.m12_c00426{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);}
.ma7_c00426{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);}
.md8_c00426{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);}
.m89_c00426{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);}
.md_c00426{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);}
.ma5_c00426{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);}
.m7a_c00426{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);}
.m98_c00426{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);}
.m6f_c00426{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);}
.m44_c00426{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);}
.m3b_c00426{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);}
.mcc_c00426{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);}
.m3c_c00426{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);}
.m99_c00426{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);}
.mee_c00426{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);}
.m12f_c00426{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m54_c00426{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);}
.m14_c00426{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);}
.m124_c00426{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);}
.m9d_c00426{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);}
.m72_c00426{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);}
.mad_c00426{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);}
.m12a_c00426{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);}
.m60_c00426{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);}
.m96_c00426{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);}
.ma3_c00426{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);}
.m1a_c00426{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);}
.m24_c00426{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);}
.m117_c00426{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);}
.m29_c00426{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);}
.maa_c00426{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);}
.m7f_c00426{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);}
.m10b_c00426{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);}
.ma8_c00426{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);}
.mbd_c00426{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);}
.m9c_c00426{transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209215,0.000000,0.000000,0.250000,0,0);}
.m10f_c00426{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);}
.m3e_c00426{transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{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);}
.mac_c00426{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);}
.m4e_c00426{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);}
.m71_c00426{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);}
.mf2_c00426{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);}
.m9a_c00426{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);}
.m81_c00426{transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);}
.m10e_c00426{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);}
.mfb_c00426{transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215585,0.000000,0.000000,0.250000,0,0);}
.me8_c00426{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);}
.m3f_c00426{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);}
.m127_c00426{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);}
.mc2_c00426{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);}
.m4d_c00426{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);}
.m38_c00426{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.m11d_c00426{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);}
.m3_c00426{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);}
.m11c_c00426{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);}
.mf6_c00426{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);}
.m4a_c00426{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);}
.m39_c00426{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);}
.me_c00426{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);}
.m12c_c00426{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);}
.mbe_c00426{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);}
.m1e_c00426{transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);}
.mdb_c00426{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);}
.m85_c00426{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);}
.md4_c00426{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);}
.m11b_c00426{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);}
.md0_c00426{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);}
.m115_c00426{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m11e_c00426{transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);}
.mcf_c00426{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.mae_c00426{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);}
.mec_c00426{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);}
.mbc_c00426{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);}
.md5_c00426{transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);}
.mb8_c00426{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);}
.m2c_c00426{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);}
.m4b_c00426{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);}
.me9_c00426{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);}
.m120_c00426{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);}
.md2_c00426{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);}
.me1_c00426{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);}
.mc4_c00426{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);}
.mf_c00426{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);}
.m100_c00426{transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);}
.m93_c00426{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);}
.mc8_c00426{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);}
.m6e_c00426{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m8f_c00426{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);}
.m70_c00426{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);}
.mef_c00426{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00426{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);}
.m15_c00426{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);}
.mc3_c00426{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{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);}
.m133_c00426{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);}
.md3_c00426{transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{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);}
.m50_c00426{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);}
.mda_c00426{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);}
.m63_c00426{transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);}
.m62_c00426{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);}
.m41_c00426{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);}
.mb5_c00426{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);}
.mf4_c00426{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);}
.m45_c00426{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m12b_c00426{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);}
.m49_c00426{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);}
.m97_c00426{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);}
.mbf_c00426{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m8a_c00426{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);}
.md7_c00426{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m105_c00426{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);}
.m4_c00426{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);}
.m9_c00426{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{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);}
.m6b_c00426{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);}
.m114_c00426{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.ma9_c00426{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m7c_c00426{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);}
.m5a_c00426{transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256050,0.000000,0.000000,0.250000,0,0);}
.m94_c00426{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);}
.mfd_c00426{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);}
.m122_c00426{transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.m6a_c00426{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);}
.me7_c00426{transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);}
.m12e_c00426{transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);}
.me6_c00426{transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);}
.m126_c00426{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);}
.m92_c00426{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);}
.m95_c00426{transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);}
.m116_c00426{transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299170,0.000000,0.000000,0.250000,0,0);}
.m118_c00426{transform:matrix(0.324160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324160,0.000000,0.000000,0.250000,0,0);}
.m119_c00426{transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325215,0.000000,0.000000,0.250000,0,0);}
.m52_c00426{transform:matrix(0.325765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325765,0.000000,0.000000,0.250000,0,0);}
.m11f_c00426{transform:matrix(0.328265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328265,0.000000,0.000000,0.250000,0,0);}
.mc6_c00426{transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337580,0.000000,0.000000,0.250000,0,0);}
.med_c00426{transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346025,0.000000,0.000000,0.250000,0,0);}
.m135_c00426{transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);}
.mb0_c00426{transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352995,0.000000,0.000000,0.250000,0,0);}
.meb_c00426{transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357855,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359295,0.000000,0.000000,0.250000,0,0);}
.m136_c00426{transform:matrix(0.363950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363950,0.000000,0.000000,0.250000,0,0);}
.mc0_c00426{transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);}
.m113_c00426{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);}
.m51_c00426{transform:matrix(0.506510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506510,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.550460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550460,0.000000,0.000000,0.250000,0,0);}
.m8c_c00426{transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);}
.m137_c00426{transform:matrix(0.583310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583310,0.000000,0.000000,0.250000,0,0);}
.m12d_c00426{transform:matrix(0.799520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799520,0.000000,0.000000,0.250000,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;}
._0_c00426{width:30.492723px;}
.fc0_c00426{color:transparent;}
.fs16_c00426{font-size:37.800000px;}
.fs12_c00426{font-size:46.200000px;}
.fsf_c00426{font-size:47.250000px;}
.fs14_c00426{font-size:48.300000px;}
.fsc_c00426{font-size:49.350000px;}
.fs10_c00426{font-size:50.400000px;}
.fsd_c00426{font-size:51.450000px;}
.fse_c00426{font-size:52.500000px;}
.fsb_c00426{font-size:53.550000px;}
.fs11_c00426{font-size:54.600000px;}
.fs13_c00426{font-size:57.750000px;}
.fs15_c00426{font-size:59.850000px;}
.fs8_c00426{font-size:61.950000px;}
.fs6_c00426{font-size:67.200000px;}
.fs4_c00426{font-size:69.300000px;}
.fs2_c00426{font-size:70.350000px;}
.fs3_c00426{font-size:71.400000px;}
.fsa_c00426{font-size:72.450000px;}
.fs0_c00426{font-size:73.500000px;}
.fs9_c00426{font-size:75.600000px;}
.fs7_c00426{font-size:78.750000px;}
.fs5_c00426{font-size:81.900000px;}
.fs1_c00426{font-size:93.450000px;}
.y0_c00426{bottom:0.000000px;}
.y22_c00426{bottom:98.820000px;}
.y30_c00426{bottom:101.632500px;}
.y2f_c00426{bottom:150.109500px;}
.y2e_c00426{bottom:170.664000px;}
.y21_c00426{bottom:188.481000px;}
.y2d_c00426{bottom:189.402000px;}
.y20_c00426{bottom:205.854000px;}
.y2c_c00426{bottom:207.526500px;}
.y1f_c00426{bottom:223.788000px;}
.y2b_c00426{bottom:225.163500px;}
.y1e_c00426{bottom:241.675500px;}
.y2a_c00426{bottom:242.889000px;}
.y1d_c00426{bottom:259.498500px;}
.y29_c00426{bottom:260.901000px;}
.y1c_c00426{bottom:277.744500px;}
.y28_c00426{bottom:277.915500px;}
.y1b_c00426{bottom:295.611000px;}
.y27_c00426{bottom:295.920000px;}
.y1a_c00426{bottom:313.153500px;}
.y26_c00426{bottom:314.194500px;}
.y19_c00426{bottom:331.845000px;}
.y25_c00426{bottom:332.137500px;}
.y18_c00426{bottom:349.267500px;}
.y24_c00426{bottom:349.957500px;}
.y17_c00426{bottom:367.119000px;}
.y23_c00426{bottom:368.176500px;}
.y16_c00426{bottom:417.892500px;}
.y15_c00426{bottom:440.823000px;}
.y14_c00426{bottom:463.107000px;}
.y13_c00426{bottom:486.270000px;}
.y12_c00426{bottom:509.137500px;}
.y11_c00426{bottom:531.703500px;}
.y10_c00426{bottom:554.503500px;}
.yf_c00426{bottom:576.819000px;}
.ye_c00426{bottom:599.796000px;}
.yc_c00426{bottom:622.135500px;}
.yd_c00426{bottom:622.864500px;}
.yb_c00426{bottom:644.266500px;}
.ya_c00426{bottom:667.161000px;}
.y9_c00426{bottom:689.161500px;}
.y8_c00426{bottom:712.281000px;}
.y7_c00426{bottom:735.144000px;}
.y6_c00426{bottom:757.750500px;}
.y5_c00426{bottom:780.369000px;}
.y4_c00426{bottom:803.085000px;}
.y3_c00426{bottom:825.613500px;}
.y2_c00426{bottom:916.110000px;}
.y1_c00426{bottom:930.993000px;}
.h18_c00426{height:37.800000px;}
.h14_c00426{height:46.200000px;}
.h11_c00426{height:47.250000px;}
.h16_c00426{height:48.300000px;}
.he_c00426{height:49.350000px;}
.h12_c00426{height:50.400000px;}
.hf_c00426{height:51.450000px;}
.h10_c00426{height:52.500000px;}
.hd_c00426{height:53.550000px;}
.h13_c00426{height:54.600000px;}
.h15_c00426{height:57.750000px;}
.h17_c00426{height:59.850000px;}
.ha_c00426{height:61.950000px;}
.h8_c00426{height:67.200000px;}
.h6_c00426{height:69.300000px;}
.h4_c00426{height:70.350000px;}
.h5_c00426{height:71.400000px;}
.hc_c00426{height:72.450000px;}
.h2_c00426{height:73.500000px;}
.hb_c00426{height:75.600000px;}
.h9_c00426{height:78.750000px;}
.h7_c00426{height:81.900000px;}
.h3_c00426{height:93.450000px;}
.h1_c00426{height:1005.000000px;}
.h0_c00426{height:1005.150000px;}
.w0_c00426{width:715.200000px;}
.w1_c00426{width:715.500000px;}
.x0_c00426{left:0.000000px;}
.x76_c00426{left:95.310000px;}
.x6d_c00426{left:98.010000px;}
.x83_c00426{left:99.090000px;}
.x75_c00426{left:102.600000px;}
.x87_c00426{left:117.450000px;}
.x73_c00426{left:118.800000px;}
.x46_c00426{left:122.310000px;}
.x77_c00426{left:123.390000px;}
.x7f_c00426{left:124.470000px;}
.x6e_c00426{left:126.630000px;}
.x3_c00426{left:127.710000px;}
.x29_c00426{left:128.790000px;}
.x15_c00426{left:129.870000px;}
.x23_c00426{left:130.950000px;}
.x50_c00426{left:132.030000px;}
.x64_c00426{left:133.380000px;}
.x5e_c00426{left:145.260000px;}
.x40_c00426{left:148.500000px;}
.x79_c00426{left:150.390000px;}
.x2a_c00426{left:152.550000px;}
.x33_c00426{left:153.900000px;}
.x6c_c00426{left:157.680000px;}
.x5f_c00426{left:159.030000px;}
.x55_c00426{left:162.810000px;}
.x51_c00426{left:164.160000px;}
.x7c_c00426{left:165.240000px;}
.x65_c00426{left:166.860000px;}
.x80_c00426{left:167.940000px;}
.xe_c00426{left:170.100000px;}
.x3b_c00426{left:171.720000px;}
.x86_c00426{left:173.340000px;}
.x60_c00426{left:177.120000px;}
.x78_c00426{left:178.200000px;}
.x2d_c00426{left:179.280000px;}
.x4_c00426{left:180.900000px;}
.x24_c00426{left:183.060000px;}
.x41_c00426{left:185.490000px;}
.x16_c00426{left:187.110000px;}
.x52_c00426{left:188.460000px;}
.x1c_c00426{left:192.240000px;}
.x5_c00426{left:193.590000px;}
.x59_c00426{left:194.940000px;}
.x56_c00426{left:197.640000px;}
.x47_c00426{left:200.340000px;}
.x7d_c00426{left:201.960000px;}
.x84_c00426{left:203.040000px;}
.x17_c00426{left:204.930000px;}
.x42_c00426{left:206.010000px;}
.x6f_c00426{left:207.360000px;}
.x3c_c00426{left:213.030000px;}
.x61_c00426{left:216.540000px;}
.x34_c00426{left:217.890000px;}
.x2e_c00426{left:219.780000px;}
.x85_c00426{left:220.860000px;}
.x7a_c00426{left:225.720000px;}
.x48_c00426{left:227.610000px;}
.x25_c00426{left:231.660000px;}
.x2b_c00426{left:232.740000px;}
.x70_c00426{left:234.090000px;}
.x5a_c00426{left:236.250000px;}
.x74_c00426{left:238.140000px;}
.x81_c00426{left:242.730000px;}
.x6_c00426{left:243.810000px;}
.x53_c00426{left:248.670000px;}
.x1d_c00426{left:252.720000px;}
.xf_c00426{left:254.610000px;}
.x35_c00426{left:256.500000px;}
.x7b_c00426{left:257.580000px;}
.x2_c00426{left:261.630000px;}
.x82_c00426{left:262.710000px;}
.x66_c00426{left:265.680000px;}
.x71_c00426{left:266.760000px;}
.x2f_c00426{left:271.350000px;}
.x69_c00426{left:275.670000px;}
.x10_c00426{left:279.450000px;}
.x43_c00426{left:281.880000px;}
.x7_c00426{left:283.770000px;}
.x88_c00426{left:288.630000px;}
.x1_c00426{left:292.140000px;}
.x3d_c00426{left:295.380000px;}
.x26_c00426{left:297.000000px;}
.x4e_c00426{left:301.320000px;}
.x7e_c00426{left:302.400000px;}
.x72_c00426{left:304.830000px;}
.x11_c00426{left:306.180000px;}
.x18_c00426{left:308.610000px;}
.x57_c00426{left:310.500000px;}
.x27_c00426{left:313.740000px;}
.x3e_c00426{left:315.090000px;}
.x8_c00426{left:319.140000px;}
.x5b_c00426{left:320.220000px;}
.x36_c00426{left:324.000000px;}
.x1e_c00426{left:327.240000px;}
.x2c_c00426{left:330.480000px;}
.x19_c00426{left:333.450000px;}
.x49_c00426{left:335.880000px;}
.x37_c00426{left:337.230000px;}
.xab_c00426{left:338.580000px;}
.x30_c00426{left:340.470000px;}
.x8f_c00426{left:341.820000px;}
.xb1_c00426{left:343.170000px;}
.x1f_c00426{left:346.140000px;}
.x9b_c00426{left:347.760000px;}
.x5c_c00426{left:351.000000px;}
.x12_c00426{left:352.080000px;}
.x9_c00426{left:353.160000px;}
.x4a_c00426{left:354.240000px;}
.x38_c00426{left:356.130000px;}
.x89_c00426{left:359.100000px;}
.xae_c00426{left:366.660000px;}
.xb2_c00426{left:369.090000px;}
.xa6_c00426{left:370.980000px;}
.x31_c00426{left:373.680000px;}
.x4f_c00426{left:375.030000px;}
.x20_c00426{left:376.650000px;}
.x62_c00426{left:378.270000px;}
.x28_c00426{left:380.700000px;}
.x44_c00426{left:382.320000px;}
.x90_c00426{left:384.480000px;}
.xac_c00426{left:386.910000px;}
.xa_c00426{left:389.340000px;}
.x58_c00426{left:391.770000px;}
.x6a_c00426{left:395.820000px;}
.xaf_c00426{left:396.900000px;}
.xad_c00426{left:398.790000px;}
.x8a_c00426{left:401.490000px;}
.x1a_c00426{left:402.570000px;}
.x91_c00426{left:404.190000px;}
.xa7_c00426{left:405.540000px;}
.x21_c00426{left:407.160000px;}
.x9c_c00426{left:410.400000px;}
.x13_c00426{left:413.910000px;}
.xb_c00426{left:415.530000px;}
.x4b_c00426{left:419.310000px;}
.x3f_c00426{left:420.390000px;}
.x8b_c00426{left:423.360000px;}
.xa8_c00426{left:426.600000px;}
.x39_c00426{left:427.680000px;}
.x1b_c00426{left:429.300000px;}
.x5d_c00426{left:430.920000px;}
.x63_c00426{left:436.050000px;}
.x14_c00426{left:439.020000px;}
.x92_c00426{left:440.100000px;}
.x6b_c00426{left:441.180000px;}
.x4c_c00426{left:443.340000px;}
.xb0_c00426{left:444.690000px;}
.x9d_c00426{left:446.580000px;}
.x22_c00426{left:448.740000px;}
.x45_c00426{left:450.900000px;}
.x54_c00426{left:455.490000px;}
.x8c_c00426{left:457.920000px;}
.xc_c00426{left:462.510000px;}
.x67_c00426{left:463.860000px;}
.xa2_c00426{left:465.750000px;}
.x32_c00426{left:468.450000px;}
.x99_c00426{left:471.690000px;}
.x9e_c00426{left:477.360000px;}
.x3a_c00426{left:490.050000px;}
.x94_c00426{left:493.020000px;}
.xaa_c00426{left:495.450000px;}
.x9f_c00426{left:497.610000px;}
.x4d_c00426{left:501.390000px;}
.xd_c00426{left:503.010000px;}
.x97_c00426{left:515.430000px;}
.xa3_c00426{left:517.050000px;}
.x95_c00426{left:522.180000px;}
.x8d_c00426{left:531.900000px;}
.x9a_c00426{left:536.760000px;}
.xa4_c00426{left:538.650000px;}
.x8e_c00426{left:544.050000px;}
.x98_c00426{left:548.370000px;}
.xa0_c00426{left:549.450000px;}
.x68_c00426{left:550.530000px;}
.xa9_c00426{left:553.500000px;}
.xa5_c00426{left:558.090000px;}
.x96_c00426{left:559.440000px;}
.x93_c00426{left:563.760000px;}
.xa1_c00426{left:569.160000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._0_c00426{width:27.104643pt;}
.fs16_c00426{font-size:33.600000pt;}
.fs12_c00426{font-size:41.066667pt;}
.fsf_c00426{font-size:42.000000pt;}
.fs14_c00426{font-size:42.933333pt;}
.fsc_c00426{font-size:43.866667pt;}
.fs10_c00426{font-size:44.800000pt;}
.fsd_c00426{font-size:45.733333pt;}
.fse_c00426{font-size:46.666667pt;}
.fsb_c00426{font-size:47.600000pt;}
.fs11_c00426{font-size:48.533333pt;}
.fs13_c00426{font-size:51.333333pt;}
.fs15_c00426{font-size:53.200000pt;}
.fs8_c00426{font-size:55.066667pt;}
.fs6_c00426{font-size:59.733333pt;}
.fs4_c00426{font-size:61.600000pt;}
.fs2_c00426{font-size:62.533333pt;}
.fs3_c00426{font-size:63.466667pt;}
.fsa_c00426{font-size:64.400000pt;}
.fs0_c00426{font-size:65.333333pt;}
.fs9_c00426{font-size:67.200000pt;}
.fs7_c00426{font-size:70.000000pt;}
.fs5_c00426{font-size:72.800000pt;}
.fs1_c00426{font-size:83.066667pt;}
.y0_c00426{bottom:0.000000pt;}
.y22_c00426{bottom:87.840000pt;}
.y30_c00426{bottom:90.340000pt;}
.y2f_c00426{bottom:133.430667pt;}
.y2e_c00426{bottom:151.701333pt;}
.y21_c00426{bottom:167.538667pt;}
.y2d_c00426{bottom:168.357333pt;}
.y20_c00426{bottom:182.981333pt;}
.y2c_c00426{bottom:184.468000pt;}
.y1f_c00426{bottom:198.922667pt;}
.y2b_c00426{bottom:200.145333pt;}
.y1e_c00426{bottom:214.822667pt;}
.y2a_c00426{bottom:215.901333pt;}
.y1d_c00426{bottom:230.665333pt;}
.y29_c00426{bottom:231.912000pt;}
.y1c_c00426{bottom:246.884000pt;}
.y28_c00426{bottom:247.036000pt;}
.y1b_c00426{bottom:262.765333pt;}
.y27_c00426{bottom:263.040000pt;}
.y1a_c00426{bottom:278.358667pt;}
.y26_c00426{bottom:279.284000pt;}
.y19_c00426{bottom:294.973333pt;}
.y25_c00426{bottom:295.233333pt;}
.y18_c00426{bottom:310.460000pt;}
.y24_c00426{bottom:311.073333pt;}
.y17_c00426{bottom:326.328000pt;}
.y23_c00426{bottom:327.268000pt;}
.y16_c00426{bottom:371.460000pt;}
.y15_c00426{bottom:391.842667pt;}
.y14_c00426{bottom:411.650667pt;}
.y13_c00426{bottom:432.240000pt;}
.y12_c00426{bottom:452.566667pt;}
.y11_c00426{bottom:472.625333pt;}
.y10_c00426{bottom:492.892000pt;}
.yf_c00426{bottom:512.728000pt;}
.ye_c00426{bottom:533.152000pt;}
.yc_c00426{bottom:553.009333pt;}
.yd_c00426{bottom:553.657333pt;}
.yb_c00426{bottom:572.681333pt;}
.ya_c00426{bottom:593.032000pt;}
.y9_c00426{bottom:612.588000pt;}
.y8_c00426{bottom:633.138667pt;}
.y7_c00426{bottom:653.461333pt;}
.y6_c00426{bottom:673.556000pt;}
.y5_c00426{bottom:693.661333pt;}
.y4_c00426{bottom:713.853333pt;}
.y3_c00426{bottom:733.878667pt;}
.y2_c00426{bottom:814.320000pt;}
.y1_c00426{bottom:827.549333pt;}
.h18_c00426{height:33.600000pt;}
.h14_c00426{height:41.066667pt;}
.h11_c00426{height:42.000000pt;}
.h16_c00426{height:42.933333pt;}
.he_c00426{height:43.866667pt;}
.h12_c00426{height:44.800000pt;}
.hf_c00426{height:45.733333pt;}
.h10_c00426{height:46.666667pt;}
.hd_c00426{height:47.600000pt;}
.h13_c00426{height:48.533333pt;}
.h15_c00426{height:51.333333pt;}
.h17_c00426{height:53.200000pt;}
.ha_c00426{height:55.066667pt;}
.h8_c00426{height:59.733333pt;}
.h6_c00426{height:61.600000pt;}
.h4_c00426{height:62.533333pt;}
.h5_c00426{height:63.466667pt;}
.hc_c00426{height:64.400000pt;}
.h2_c00426{height:65.333333pt;}
.hb_c00426{height:67.200000pt;}
.h9_c00426{height:70.000000pt;}
.h7_c00426{height:72.800000pt;}
.h3_c00426{height:83.066667pt;}
.h1_c00426{height:893.333333pt;}
.h0_c00426{height:893.466667pt;}
.w0_c00426{width:635.733333pt;}
.w1_c00426{width:636.000000pt;}
.x0_c00426{left:0.000000pt;}
.x76_c00426{left:84.720000pt;}
.x6d_c00426{left:87.120000pt;}
.x83_c00426{left:88.080000pt;}
.x75_c00426{left:91.200000pt;}
.x87_c00426{left:104.400000pt;}
.x73_c00426{left:105.600000pt;}
.x46_c00426{left:108.720000pt;}
.x77_c00426{left:109.680000pt;}
.x7f_c00426{left:110.640000pt;}
.x6e_c00426{left:112.560000pt;}
.x3_c00426{left:113.520000pt;}
.x29_c00426{left:114.480000pt;}
.x15_c00426{left:115.440000pt;}
.x23_c00426{left:116.400000pt;}
.x50_c00426{left:117.360000pt;}
.x64_c00426{left:118.560000pt;}
.x5e_c00426{left:129.120000pt;}
.x40_c00426{left:132.000000pt;}
.x79_c00426{left:133.680000pt;}
.x2a_c00426{left:135.600000pt;}
.x33_c00426{left:136.800000pt;}
.x6c_c00426{left:140.160000pt;}
.x5f_c00426{left:141.360000pt;}
.x55_c00426{left:144.720000pt;}
.x51_c00426{left:145.920000pt;}
.x7c_c00426{left:146.880000pt;}
.x65_c00426{left:148.320000pt;}
.x80_c00426{left:149.280000pt;}
.xe_c00426{left:151.200000pt;}
.x3b_c00426{left:152.640000pt;}
.x86_c00426{left:154.080000pt;}
.x60_c00426{left:157.440000pt;}
.x78_c00426{left:158.400000pt;}
.x2d_c00426{left:159.360000pt;}
.x4_c00426{left:160.800000pt;}
.x24_c00426{left:162.720000pt;}
.x41_c00426{left:164.880000pt;}
.x16_c00426{left:166.320000pt;}
.x52_c00426{left:167.520000pt;}
.x1c_c00426{left:170.880000pt;}
.x5_c00426{left:172.080000pt;}
.x59_c00426{left:173.280000pt;}
.x56_c00426{left:175.680000pt;}
.x47_c00426{left:178.080000pt;}
.x7d_c00426{left:179.520000pt;}
.x84_c00426{left:180.480000pt;}
.x17_c00426{left:182.160000pt;}
.x42_c00426{left:183.120000pt;}
.x6f_c00426{left:184.320000pt;}
.x3c_c00426{left:189.360000pt;}
.x61_c00426{left:192.480000pt;}
.x34_c00426{left:193.680000pt;}
.x2e_c00426{left:195.360000pt;}
.x85_c00426{left:196.320000pt;}
.x7a_c00426{left:200.640000pt;}
.x48_c00426{left:202.320000pt;}
.x25_c00426{left:205.920000pt;}
.x2b_c00426{left:206.880000pt;}
.x70_c00426{left:208.080000pt;}
.x5a_c00426{left:210.000000pt;}
.x74_c00426{left:211.680000pt;}
.x81_c00426{left:215.760000pt;}
.x6_c00426{left:216.720000pt;}
.x53_c00426{left:221.040000pt;}
.x1d_c00426{left:224.640000pt;}
.xf_c00426{left:226.320000pt;}
.x35_c00426{left:228.000000pt;}
.x7b_c00426{left:228.960000pt;}
.x2_c00426{left:232.560000pt;}
.x82_c00426{left:233.520000pt;}
.x66_c00426{left:236.160000pt;}
.x71_c00426{left:237.120000pt;}
.x2f_c00426{left:241.200000pt;}
.x69_c00426{left:245.040000pt;}
.x10_c00426{left:248.400000pt;}
.x43_c00426{left:250.560000pt;}
.x7_c00426{left:252.240000pt;}
.x88_c00426{left:256.560000pt;}
.x1_c00426{left:259.680000pt;}
.x3d_c00426{left:262.560000pt;}
.x26_c00426{left:264.000000pt;}
.x4e_c00426{left:267.840000pt;}
.x7e_c00426{left:268.800000pt;}
.x72_c00426{left:270.960000pt;}
.x11_c00426{left:272.160000pt;}
.x18_c00426{left:274.320000pt;}
.x57_c00426{left:276.000000pt;}
.x27_c00426{left:278.880000pt;}
.x3e_c00426{left:280.080000pt;}
.x8_c00426{left:283.680000pt;}
.x5b_c00426{left:284.640000pt;}
.x36_c00426{left:288.000000pt;}
.x1e_c00426{left:290.880000pt;}
.x2c_c00426{left:293.760000pt;}
.x19_c00426{left:296.400000pt;}
.x49_c00426{left:298.560000pt;}
.x37_c00426{left:299.760000pt;}
.xab_c00426{left:300.960000pt;}
.x30_c00426{left:302.640000pt;}
.x8f_c00426{left:303.840000pt;}
.xb1_c00426{left:305.040000pt;}
.x1f_c00426{left:307.680000pt;}
.x9b_c00426{left:309.120000pt;}
.x5c_c00426{left:312.000000pt;}
.x12_c00426{left:312.960000pt;}
.x9_c00426{left:313.920000pt;}
.x4a_c00426{left:314.880000pt;}
.x38_c00426{left:316.560000pt;}
.x89_c00426{left:319.200000pt;}
.xae_c00426{left:325.920000pt;}
.xb2_c00426{left:328.080000pt;}
.xa6_c00426{left:329.760000pt;}
.x31_c00426{left:332.160000pt;}
.x4f_c00426{left:333.360000pt;}
.x20_c00426{left:334.800000pt;}
.x62_c00426{left:336.240000pt;}
.x28_c00426{left:338.400000pt;}
.x44_c00426{left:339.840000pt;}
.x90_c00426{left:341.760000pt;}
.xac_c00426{left:343.920000pt;}
.xa_c00426{left:346.080000pt;}
.x58_c00426{left:348.240000pt;}
.x6a_c00426{left:351.840000pt;}
.xaf_c00426{left:352.800000pt;}
.xad_c00426{left:354.480000pt;}
.x8a_c00426{left:356.880000pt;}
.x1a_c00426{left:357.840000pt;}
.x91_c00426{left:359.280000pt;}
.xa7_c00426{left:360.480000pt;}
.x21_c00426{left:361.920000pt;}
.x9c_c00426{left:364.800000pt;}
.x13_c00426{left:367.920000pt;}
.xb_c00426{left:369.360000pt;}
.x4b_c00426{left:372.720000pt;}
.x3f_c00426{left:373.680000pt;}
.x8b_c00426{left:376.320000pt;}
.xa8_c00426{left:379.200000pt;}
.x39_c00426{left:380.160000pt;}
.x1b_c00426{left:381.600000pt;}
.x5d_c00426{left:383.040000pt;}
.x63_c00426{left:387.600000pt;}
.x14_c00426{left:390.240000pt;}
.x92_c00426{left:391.200000pt;}
.x6b_c00426{left:392.160000pt;}
.x4c_c00426{left:394.080000pt;}
.xb0_c00426{left:395.280000pt;}
.x9d_c00426{left:396.960000pt;}
.x22_c00426{left:398.880000pt;}
.x45_c00426{left:400.800000pt;}
.x54_c00426{left:404.880000pt;}
.x8c_c00426{left:407.040000pt;}
.xc_c00426{left:411.120000pt;}
.x67_c00426{left:412.320000pt;}
.xa2_c00426{left:414.000000pt;}
.x32_c00426{left:416.400000pt;}
.x99_c00426{left:419.280000pt;}
.x9e_c00426{left:424.320000pt;}
.x3a_c00426{left:435.600000pt;}
.x94_c00426{left:438.240000pt;}
.xaa_c00426{left:440.400000pt;}
.x9f_c00426{left:442.320000pt;}
.x4d_c00426{left:445.680000pt;}
.xd_c00426{left:447.120000pt;}
.x97_c00426{left:458.160000pt;}
.xa3_c00426{left:459.600000pt;}
.x95_c00426{left:464.160000pt;}
.x8d_c00426{left:472.800000pt;}
.x9a_c00426{left:477.120000pt;}
.xa4_c00426{left:478.800000pt;}
.x8e_c00426{left:483.600000pt;}
.x98_c00426{left:487.440000pt;}
.xa0_c00426{left:488.400000pt;}
.x68_c00426{left:489.360000pt;}
.xa9_c00426{left:492.000000pt;}
.xa5_c00426{left:496.080000pt;}
.x96_c00426{left:497.280000pt;}
.x93_c00426{left:501.120000pt;}
.xa1_c00426{left:505.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m7b_c00427{transform:matrix(0.021728,0.000261,-0.003000,0.249982,0,0);-ms-transform:matrix(0.021728,0.000261,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.021728,0.000261,-0.003000,0.249982,0,0);}
.mf0_c00427{transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083720,0.000000,0.000000,0.250000,0,0);}
.m99_c00427{transform:matrix(0.088877,0.001778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.088877,0.001778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.088877,0.001778,-0.004999,0.249950,0,0);}
.md2_c00427{transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00427{transform:matrix(0.114177,0.001713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.114177,0.001713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.114177,0.001713,-0.003750,0.249972,0,0);}
.mac_c00427{transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.132750,0.001593,-0.003000,0.249982,0,0);-ms-transform:matrix(0.132750,0.001593,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.132750,0.001593,-0.003000,0.249982,0,0);}
.meb_c00427{transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);}
.mec_c00427{transform:matrix(0.139955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139955,0.000000,0.000000,0.250000,0,0);}
.m8b_c00427{transform:matrix(0.141245,0.002401,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141245,0.002401,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141245,0.002401,-0.004249,0.249964,0,0);}
.m26_c00427{transform:matrix(0.145376,0.002326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145376,0.002326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145376,0.002326,-0.003999,0.249968,0,0);}
.mb4_c00427{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);}
.m83_c00427{transform:matrix(0.147569,0.001771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147569,0.001771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147569,0.001771,-0.003000,0.249982,0,0);}
.m89_c00427{transform:matrix(0.148234,0.002520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148234,0.002520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148234,0.002520,-0.004249,0.249964,0,0);}
.ma3_c00427{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);}
.m84_c00427{transform:matrix(0.151054,0.001813,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151054,0.001813,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151054,0.001813,-0.003000,0.249982,0,0);}
.m37_c00427{transform:matrix(0.153055,0.002449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153055,0.002449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153055,0.002449,-0.003999,0.249968,0,0);}
.m11b_c00427{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);}
.m7d_c00427{transform:matrix(0.156419,0.001877,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156419,0.001877,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156419,0.001877,-0.003000,0.249982,0,0);}
.m30_c00427{transform:matrix(0.156815,0.002509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156815,0.002509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156815,0.002509,-0.003999,0.249968,0,0);}
.mb3_c00427{transform:matrix(0.157332,0.002360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157332,0.002360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157332,0.002360,-0.003750,0.249972,0,0);}
.m1f_c00427{transform:matrix(0.157604,0.001891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157604,0.001891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157604,0.001891,-0.003000,0.249982,0,0);}
.me7_c00427{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);}
.ma_c00427{transform:matrix(0.159500,0.001276,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159500,0.001276,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159500,0.001276,-0.002000,0.249992,0,0);}
.mda_c00427{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);}
.m15_c00427{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);}
.m96_c00427{transform:matrix(0.160213,0.003204,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160213,0.003204,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160213,0.003204,-0.004999,0.249950,0,0);}
.m25_c00427{transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160284,0.002565,-0.003999,0.249968,0,0);}
.mf5_c00427{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);}
.m98_c00427{transform:matrix(0.163337,0.003267,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163337,0.003267,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163337,0.003267,-0.004999,0.249950,0,0);}
.m120_c00427{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.163848,0.001966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163848,0.001966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163848,0.001966,-0.003000,0.249982,0,0);}
.mcd_c00427{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);}
.mbc_c00427{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.me9_c00427{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);}
.me4_c00427{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);}
.mad_c00427{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);}
.ma0_c00427{transform:matrix(0.165361,0.002811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165361,0.002811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165361,0.002811,-0.004249,0.249964,0,0);}
.m45_c00427{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);}
.m52_c00427{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);}
.ma8_c00427{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);}
.mbe_c00427{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);}
.m9b_c00427{transform:matrix(0.167061,0.002840,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167061,0.002840,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167061,0.002840,-0.004249,0.249964,0,0);}
.m6b_c00427{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);}
.m47_c00427{transform:matrix(0.167704,0.002683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167704,0.002683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167704,0.002683,-0.003999,0.249968,0,0);}
.m50_c00427{transform:matrix(0.167914,0.002687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167914,0.002687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167914,0.002687,-0.003999,0.249968,0,0);}
.m22_c00427{transform:matrix(0.168013,0.002688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168013,0.002688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168013,0.002688,-0.003999,0.249968,0,0);}
.m58_c00427{transform:matrix(0.168171,0.003363,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168171,0.003363,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168171,0.003363,-0.004999,0.249950,0,0);}
.mbf_c00427{transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);}
.m121_c00427{transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);}
.m95_c00427{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);}
.m6d_c00427{transform:matrix(0.169088,0.002029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169088,0.002029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169088,0.002029,-0.003000,0.249982,0,0);}
.med_c00427{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);}
.m113_c00427{transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);}
.m4e_c00427{transform:matrix(0.170238,0.002724,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170238,0.002724,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170238,0.002724,-0.003999,0.249968,0,0);}
.m43_c00427{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);}
.m88_c00427{transform:matrix(0.171150,0.002910,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171150,0.002910,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171150,0.002910,-0.004249,0.249964,0,0);}
.m69_c00427{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);}
.mc0_c00427{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);}
.m63_c00427{transform:matrix(0.171986,0.002580,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171986,0.002580,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171986,0.002580,-0.003750,0.249972,0,0);}
.m23_c00427{transform:matrix(0.172218,0.002755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172218,0.002755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172218,0.002755,-0.003999,0.249968,0,0);}
.m103_c00427{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);}
.m2d_c00427{transform:matrix(0.172823,0.002765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172823,0.002765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172823,0.002765,-0.003999,0.249968,0,0);}
.m97_c00427{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);}
.m65_c00427{transform:matrix(0.173490,0.002602,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173490,0.002602,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173490,0.002602,-0.003750,0.249972,0,0);}
.mf6_c00427{transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);}
.m93_c00427{transform:matrix(0.173570,0.003471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173570,0.003471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173570,0.003471,-0.004999,0.249950,0,0);}
.mc1_c00427{transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174345,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174699,0.001398,-0.002000,0.249992,0,0);}
.m76_c00427{transform:matrix(0.174787,0.002097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174787,0.002097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174787,0.002097,-0.003000,0.249982,0,0);}
.m19_c00427{transform:matrix(0.174997,0.002100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174997,0.002100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174997,0.002100,-0.003000,0.249982,0,0);}
.m81_c00427{transform:matrix(0.175427,0.002105,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175427,0.002105,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175427,0.002105,-0.003000,0.249982,0,0);}
.m51_c00427{transform:matrix(0.176262,0.002820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176262,0.002820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176262,0.002820,-0.003999,0.249968,0,0);}
.m17_c00427{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);}
.m12_c00427{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);}
.m20_c00427{transform:matrix(0.178282,0.002853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178282,0.002853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178282,0.002853,-0.003999,0.249968,0,0);}
.m2e_c00427{transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);}
.m80_c00427{transform:matrix(0.178947,0.002147,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178947,0.002147,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178947,0.002147,-0.003000,0.249982,0,0);}
.m86_c00427{transform:matrix(0.178969,0.003042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178969,0.003042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178969,0.003042,-0.004249,0.249964,0,0);}
.m5d_c00427{transform:matrix(0.179275,0.002689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179275,0.002689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179275,0.002689,-0.003750,0.249972,0,0);}
.m59_c00427{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);}
.m94_c00427{transform:matrix(0.179464,0.003589,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179464,0.003589,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179464,0.003589,-0.004999,0.249950,0,0);}
.m9c_c00427{transform:matrix(0.179739,0.003056,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179739,0.003056,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179739,0.003056,-0.004249,0.249964,0,0);}
.m8c_c00427{transform:matrix(0.180534,0.003069,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180534,0.003069,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180534,0.003069,-0.004249,0.249964,0,0);}
.mef_c00427{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);}
.m13_c00427{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);}
.mc_c00427{transform:matrix(0.181039,0.001448,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181039,0.001448,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181039,0.001448,-0.002000,0.249992,0,0);}
.m108_c00427{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);}
.m9a_c00427{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);}
.m70_c00427{transform:matrix(0.181407,0.002177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181407,0.002177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181407,0.002177,-0.003000,0.249982,0,0);}
.m72_c00427{transform:matrix(0.181417,0.002177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181417,0.002177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181417,0.002177,-0.003000,0.249982,0,0);}
.m122_c00427{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);}
.md0_c00427{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);}
.mc2_c00427{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);}
.m4b_c00427{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);}
.mf_c00427{transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182709,0.001462,-0.002000,0.249992,0,0);}
.m9f_c00427{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);}
.m60_c00427{transform:matrix(0.183454,0.002752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183454,0.002752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183454,0.002752,-0.003750,0.249972,0,0);}
.mf4_c00427{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);}
.m9d_c00427{transform:matrix(0.184008,0.003128,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184008,0.003128,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184008,0.003128,-0.004249,0.249964,0,0);}
.m48_c00427{transform:matrix(0.184166,0.002947,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184166,0.002947,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184166,0.002947,-0.003999,0.249968,0,0);}
.m5c_c00427{transform:matrix(0.184169,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184169,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184169,0.002763,-0.003750,0.249972,0,0);}
.m57_c00427{transform:matrix(0.184423,0.003688,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184423,0.003688,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184423,0.003688,-0.004999,0.249950,0,0);}
.m8f_c00427{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);}
.m3b_c00427{transform:matrix(0.184886,0.002958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184886,0.002958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184886,0.002958,-0.003999,0.249968,0,0);}
.m2b_c00427{transform:matrix(0.184911,0.002959,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184911,0.002959,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184911,0.002959,-0.003999,0.249968,0,0);}
.m31_c00427{transform:matrix(0.185596,0.002970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185596,0.002970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185596,0.002970,-0.003999,0.249968,0,0);}
.m14_c00427{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);}
.m78_c00427{transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185887,0.002231,-0.003000,0.249982,0,0);}
.me6_c00427{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);}
.m2f_c00427{transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);}
.m18_c00427{transform:matrix(0.186282,0.002235,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186282,0.002235,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186282,0.002235,-0.003000,0.249982,0,0);}
.m4c_c00427{transform:matrix(0.186311,0.002981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186311,0.002981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186311,0.002981,-0.003999,0.249968,0,0);}
.m5_c00427{transform:matrix(0.186549,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186549,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186549,0.001492,-0.002000,0.249992,0,0);}
.m16_c00427{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);}
.m9e_c00427{transform:matrix(0.186768,0.003175,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186768,0.003175,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186768,0.003175,-0.004249,0.249964,0,0);}
.m6e_c00427{transform:matrix(0.186852,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186852,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186852,0.002242,-0.003000,0.249982,0,0);}
.m61_c00427{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);}
.md7_c00427{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);}
.m3a_c00427{transform:matrix(0.187006,0.002992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187006,0.002992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187006,0.002992,-0.003999,0.249968,0,0);}
.mf7_c00427{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);}
.m11f_c00427{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);}
.m11e_c00427{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);}
.mf9_c00427{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);}
.m118_c00427{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);}
.m5f_c00427{transform:matrix(0.188544,0.002828,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188544,0.002828,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188544,0.002828,-0.003750,0.249972,0,0);}
.m1c_c00427{transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);}
.m123_c00427{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);}
.m27_c00427{transform:matrix(0.189011,0.003024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189011,0.003024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189011,0.003024,-0.003999,0.249968,0,0);}
.m112_c00427{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);}
.mea_c00427{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);}
.m54_c00427{transform:matrix(0.190007,0.003800,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190007,0.003800,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190007,0.003800,-0.004999,0.249950,0,0);}
.m44_c00427{transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);}
.m5a_c00427{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);}
.me5_c00427{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);}
.m2a_c00427{transform:matrix(0.190466,0.003047,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190466,0.003047,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190466,0.003047,-0.003999,0.249968,0,0);}
.m35_c00427{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);}
.m33_c00427{transform:matrix(0.190821,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190821,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190821,0.003053,-0.003999,0.249968,0,0);}
.m11a_c00427{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);}
.m7e_c00427{transform:matrix(0.191006,0.002292,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191006,0.002292,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191006,0.002292,-0.003000,0.249982,0,0);}
.md1_c00427{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);}
.m62_c00427{transform:matrix(0.191084,0.002866,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191084,0.002866,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191084,0.002866,-0.003750,0.249972,0,0);}
.ma5_c00427{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);}
.md_c00427{transform:matrix(0.191414,0.001531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191414,0.001531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191414,0.001531,-0.002000,0.249992,0,0);}
.m7_c00427{transform:matrix(0.191539,0.001532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191539,0.001532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191539,0.001532,-0.002000,0.249992,0,0);}
.mcb_c00427{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00427{transform:matrix(0.192442,0.003272,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192442,0.003272,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192442,0.003272,-0.004249,0.249964,0,0);}
.m24_c00427{transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192515,0.003080,-0.003999,0.249968,0,0);}
.m119_c00427{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);}
.mee_c00427{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);}
.mcf_c00427{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);}
.m55_c00427{transform:matrix(0.193176,0.003864,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193176,0.003864,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193176,0.003864,-0.004999,0.249950,0,0);}
.mdb_c00427{transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);}
.md8_c00427{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);}
.m2c_c00427{transform:matrix(0.193495,0.003096,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193495,0.003096,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193495,0.003096,-0.003999,0.249968,0,0);}
.mdc_c00427{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);}
.m5e_c00427{transform:matrix(0.193688,0.002905,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193688,0.002905,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193688,0.002905,-0.003750,0.249972,0,0);}
.m2_c00427{transform:matrix(0.194214,0.001554,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194214,0.001554,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194214,0.001554,-0.002000,0.249992,0,0);}
.m110_c00427{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);}
.m82_c00427{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);}
.m8_c00427{transform:matrix(0.195129,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195129,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195129,0.001561,-0.002000,0.249992,0,0);}
.md3_c00427{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);}
.mfb_c00427{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);}
.m8d_c00427{transform:matrix(0.196257,0.003336,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196257,0.003336,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196257,0.003336,-0.004249,0.249964,0,0);}
.m7a_c00427{transform:matrix(0.196311,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196311,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196311,0.002356,-0.003000,0.249982,0,0);}
.m71_c00427{transform:matrix(0.196546,0.002359,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196546,0.002359,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196546,0.002359,-0.003000,0.249982,0,0);}
.m34_c00427{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);}
.m7f_c00427{transform:matrix(0.196736,0.002361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196736,0.002361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196736,0.002361,-0.003000,0.249982,0,0);}
.mb5_c00427{transform:matrix(0.197063,0.002956,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197063,0.002956,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197063,0.002956,-0.003750,0.249972,0,0);}
.m1d_c00427{transform:matrix(0.197591,0.002371,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197591,0.002371,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197591,0.002371,-0.003000,0.249982,0,0);}
.me_c00427{transform:matrix(0.197849,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197849,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197849,0.001583,-0.002000,0.249992,0,0);}
.m75_c00427{transform:matrix(0.198056,0.002377,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198056,0.002377,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198056,0.002377,-0.003000,0.249982,0,0);}
.mb0_c00427{transform:matrix(0.198153,0.002972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198153,0.002972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198153,0.002972,-0.003750,0.249972,0,0);}
.mc7_c00427{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);}
.m85_c00427{transform:matrix(0.198836,0.003380,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198836,0.003380,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198836,0.003380,-0.004249,0.249964,0,0);}
.me8_c00427{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);}
.m11c_c00427{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);}
.md6_c00427{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);}
.m21_c00427{transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);}
.mc9_c00427{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);}
.maa_c00427{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);}
.m92_c00427{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);}
.mf1_c00427{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);}
.m56_c00427{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);}
.m6c_c00427{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);}
.m91_c00427{transform:matrix(0.204255,0.003472,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204255,0.003472,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204255,0.003472,-0.004249,0.249964,0,0);}
.m8a_c00427{transform:matrix(0.204335,0.003474,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204335,0.003474,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204335,0.003474,-0.004249,0.249964,0,0);}
.m10c_c00427{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);}
.mb6_c00427{transform:matrix(0.205072,0.003076,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205072,0.003076,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205072,0.003076,-0.003750,0.249972,0,0);}
.m102_c00427{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);}
.m10e_c00427{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);}
.ma2_c00427{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);}
.mc5_c00427{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);}
.mf3_c00427{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);}
.mfd_c00427{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);}
.m36_c00427{transform:matrix(0.208748,0.003340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208748,0.003340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208748,0.003340,-0.003999,0.249968,0,0);}
.m6_c00427{transform:matrix(0.209633,0.001677,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209633,0.001677,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209633,0.001677,-0.002000,0.249992,0,0);}
.m10f_c00427{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);}
.m109_c00427{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);}
.mba_c00427{transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);}
.mf8_c00427{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);}
.m111_c00427{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);}
.mc6_c00427{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.mc4_c00427{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);}
.m114_c00427{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);}
.ma6_c00427{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);}
.m10a_c00427{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);}
.m6a_c00427{transform:matrix(0.213351,0.003200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213351,0.003200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213351,0.003200,-0.003750,0.249972,0,0);}
.mab_c00427{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);}
.m40_c00427{transform:matrix(0.214678,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214678,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214678,0.003435,-0.003999,0.249968,0,0);}
.ma4_c00427{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);}
.m79_c00427{transform:matrix(0.215250,0.002583,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215250,0.002583,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215250,0.002583,-0.003000,0.249982,0,0);}
.m29_c00427{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);}
.mce_c00427{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);}
.m28_c00427{transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215682,0.003451,-0.003999,0.249968,0,0);}
.m1b_c00427{transform:matrix(0.215809,0.002590,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215809,0.002590,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215809,0.002590,-0.003000,0.249982,0,0);}
.mc3_c00427{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);}
.me3_c00427{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);}
.m68_c00427{transform:matrix(0.217840,0.003268,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217840,0.003268,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217840,0.003268,-0.003750,0.249972,0,0);}
.m41_c00427{transform:matrix(0.218877,0.003502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218877,0.003502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218877,0.003502,-0.003999,0.249968,0,0);}
.m115_c00427{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);}
.ma9_c00427{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);}
.mff_c00427{transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);}
.mfe_c00427{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);}
.mb8_c00427{transform:matrix(0.220185,0.003303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220185,0.003303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220185,0.003303,-0.003750,0.249972,0,0);}
.m10d_c00427{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);}
.m11d_c00427{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);}
.mb9_c00427{transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222330,0.003335,-0.003750,0.249972,0,0);}
.mfc_c00427{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);}
.m46_c00427{transform:matrix(0.223086,0.003569,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223086,0.003569,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223086,0.003569,-0.003999,0.249968,0,0);}
.m3_c00427{transform:matrix(0.225193,0.001802,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225193,0.001802,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225193,0.001802,-0.002000,0.249992,0,0);}
.mcc_c00427{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);}
.m10b_c00427{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);}
.m38_c00427{transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);}
.md5_c00427{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);}
.m74_c00427{transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);}
.mc8_c00427{transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226920,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.227379,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227379,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227379,0.002729,-0.003000,0.249982,0,0);}
.m3c_c00427{transform:matrix(0.228006,0.003648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228006,0.003648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228006,0.003648,-0.003999,0.249968,0,0);}
.m104_c00427{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);}
.m10_c00427{transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);}
.md9_c00427{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);}
.mdd_c00427{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);}
.m4f_c00427{transform:matrix(0.229366,0.003670,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229366,0.003670,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229366,0.003670,-0.003999,0.249968,0,0);}
.m3e_c00427{transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230600,0.003690,-0.003999,0.249968,0,0);}
.mca_c00427{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);}
.m3f_c00427{transform:matrix(0.231945,0.003711,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231945,0.003711,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231945,0.003711,-0.003999,0.249968,0,0);}
.m3d_c00427{transform:matrix(0.232435,0.003719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232435,0.003719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232435,0.003719,-0.003999,0.249968,0,0);}
.mbd_c00427{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);}
.m4d_c00427{transform:matrix(0.232530,0.003720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232530,0.003720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232530,0.003720,-0.003999,0.249968,0,0);}
.m6f_c00427{transform:matrix(0.234528,0.002814,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234528,0.002814,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234528,0.002814,-0.003000,0.249982,0,0);}
.m87_c00427{transform:matrix(0.235331,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235331,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235331,0.004001,-0.004249,0.249964,0,0);}
.m116_c00427{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);}
.m49_c00427{transform:matrix(0.237545,0.003801,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237545,0.003801,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237545,0.003801,-0.003999,0.249968,0,0);}
.ma1_c00427{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);}
.m66_c00427{transform:matrix(0.238808,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238808,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238808,0.003582,-0.003750,0.249972,0,0);}
.m101_c00427{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);}
.m0_c00427{transform:matrix(0.239577,0.001917,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239577,0.001917,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239577,0.001917,-0.002000,0.249992,0,0);}
.mfa_c00427{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);}
.m90_c00427{transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);}
.mbb_c00427{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);}
.m4a_c00427{transform:matrix(0.241759,0.003868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241759,0.003868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241759,0.003868,-0.003999,0.249968,0,0);}
.m107_c00427{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);}
.m42_c00427{transform:matrix(0.247223,0.003956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247223,0.003956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247223,0.003956,-0.003999,0.249968,0,0);}
.me2_c00427{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.m124_c00427{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m64_c00427{transform:matrix(0.252712,0.003791,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252712,0.003791,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252712,0.003791,-0.003750,0.249972,0,0);}
.m9_c00427{transform:matrix(0.255482,0.002044,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255482,0.002044,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255482,0.002044,-0.002000,0.249992,0,0);}
.mde_c00427{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);}
.m32_c00427{transform:matrix(0.263346,0.004214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263346,0.004214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263346,0.004214,-0.003999,0.249968,0,0);}
.m100_c00427{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);}
.mf2_c00427{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);}
.me0_c00427{transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);}
.md4_c00427{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);}
.m106_c00427{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);}
.m77_c00427{transform:matrix(0.284385,0.003413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284385,0.003413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284385,0.003413,-0.003000,0.249982,0,0);}
.mae_c00427{transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284970,0.000000,0.000000,0.250000,0,0);}
.mb2_c00427{transform:matrix(0.289057,0.004336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289057,0.004336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289057,0.004336,-0.003750,0.249972,0,0);}
.m105_c00427{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);}
.mb7_c00427{transform:matrix(0.311810,0.004677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.311810,0.004677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.311810,0.004677,-0.003750,0.249972,0,0);}
.m117_c00427{transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);}
.maf_c00427{transform:matrix(0.314740,0.004721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314740,0.004721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314740,0.004721,-0.003750,0.249972,0,0);}
.m11_c00427{transform:matrix(0.317630,0.002541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.317630,0.002541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.317630,0.002541,-0.002000,0.249992,0,0);}
.me1_c00427{transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329240,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.335349,0.002683,-0.002000,0.249992,0,0);-ms-transform:matrix(0.335349,0.002683,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.335349,0.002683,-0.002000,0.249992,0,0);}
.m53_c00427{transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344360,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.349426,0.005241,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349426,0.005241,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349426,0.005241,-0.003750,0.249972,0,0);}
.ma7_c00427{transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357165,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.588295,0.009413,-0.003999,0.249968,0,0);-ms-transform:matrix(0.588295,0.009413,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.588295,0.009413,-0.003999,0.249968,0,0);}
.mdf_c00427{transform:matrix(0.746315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746315,0.000000,0.000000,0.250000,0,0);}
.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;}
.fc0_c00427{color:transparent;}
.fs1b_c00427{font-size:16.800000px;}
.fs1e_c00427{font-size:45.150000px;}
.fs14_c00427{font-size:47.250000px;}
.fs17_c00427{font-size:48.300000px;}
.fs16_c00427{font-size:48.305433px;}
.fs1d_c00427{font-size:49.350000px;}
.fs19_c00427{font-size:50.400000px;}
.fs1a_c00427{font-size:51.450000px;}
.fs13_c00427{font-size:52.500000px;}
.fs15_c00427{font-size:52.505906px;}
.fs12_c00427{font-size:53.550000px;}
.fs1f_c00427{font-size:54.600000px;}
.fs18_c00427{font-size:55.650000px;}
.fs1c_c00427{font-size:58.800000px;}
.fsc_c00427{font-size:63.007087px;}
.fs0_c00427{font-size:64.052050px;}
.fs1_c00427{font-size:67.202150px;}
.fs7_c00427{font-size:67.208601px;}
.fs6_c00427{font-size:68.258735px;}
.fs4_c00427{font-size:69.308870px;}
.fsa_c00427{font-size:70.364069px;}
.fs2_c00427{font-size:71.400000px;}
.fsb_c00427{font-size:71.408032px;}
.fs5_c00427{font-size:71.409139px;}
.fsf_c00427{font-size:71.410317px;}
.fsd_c00427{font-size:72.455216px;}
.fs8_c00427{font-size:72.459273px;}
.fs10_c00427{font-size:72.460468px;}
.fs11_c00427{font-size:72.464489px;}
.fse_c00427{font-size:73.505292px;}
.fs3_c00427{font-size:75.605443px;}
.fs9_c00427{font-size:108.150000px;}
.y0_c00427{bottom:0.000000px;}
.yba_c00427{bottom:123.930000px;}
.yc6_c00427{bottom:153.576000px;}
.yb9_c00427{bottom:155.226000px;}
.yb8_c00427{bottom:155.418000px;}
.yb7_c00427{bottom:155.898000px;}
.yb6_c00427{bottom:156.162000px;}
.yb5_c00427{bottom:156.906000px;}
.yb4_c00427{bottom:157.204500px;}
.yb3_c00427{bottom:157.480500px;}
.yb2_c00427{bottom:158.221500px;}
.yc5_c00427{bottom:171.627000px;}
.yb1_c00427{bottom:174.415500px;}
.yc4_c00427{bottom:189.561000px;}
.yb0_c00427{bottom:192.123000px;}
.yc3_c00427{bottom:207.763500px;}
.yaf_c00427{bottom:209.937000px;}
.yc2_c00427{bottom:225.525000px;}
.yae_c00427{bottom:228.205500px;}
.yc1_c00427{bottom:243.399000px;}
.ya7_c00427{bottom:245.153160px;}
.ya8_c00427{bottom:245.153355px;}
.ya9_c00427{bottom:245.153378px;}
.yab_c00427{bottom:245.153408px;}
.yac_c00427{bottom:245.153520px;}
.yaa_c00427{bottom:245.153895px;}
.yc0_c00427{bottom:261.262500px;}
.ya6_c00427{bottom:262.102440px;}
.ya5_c00427{bottom:262.547760px;}
.ya4_c00427{bottom:262.956945px;}
.ya3_c00427{bottom:263.852512px;}
.ya2_c00427{bottom:264.188685px;}
.ya1_c00427{bottom:264.443385px;}
.ya0_c00427{bottom:264.873000px;}
.ybf_c00427{bottom:278.878500px;}
.ybb_c00427{bottom:279.450000px;}
.y9f_c00427{bottom:282.421500px;}
.ybe_c00427{bottom:296.830500px;}
.yad_c00427{bottom:298.351500px;}
.y9e_c00427{bottom:299.962500px;}
.ybd_c00427{bottom:303.210000px;}
.ybc_c00427{bottom:314.860500px;}
.y9d_c00427{bottom:317.209500px;}
.y9c_c00427{bottom:372.982727px;}
.y9b_c00427{bottom:373.657431px;}
.y9a_c00427{bottom:374.335476px;}
.y99_c00427{bottom:374.763774px;}
.y98_c00427{bottom:376.269779px;}
.y97_c00427{bottom:376.825016px;}
.y96_c00427{bottom:377.463000px;}
.y95_c00427{bottom:395.571300px;}
.y94_c00427{bottom:396.973950px;}
.y93_c00427{bottom:397.816500px;}
.y92_c00427{bottom:398.279190px;}
.y91_c00427{bottom:399.024990px;}
.y90_c00427{bottom:399.501720px;}
.y8f_c00427{bottom:400.668420px;}
.y8e_c00427{bottom:401.224500px;}
.y8d_c00427{bottom:420.331700px;}
.y8c_c00427{bottom:420.694182px;}
.y8b_c00427{bottom:421.451660px;}
.y8a_c00427{bottom:423.150495px;}
.y89_c00427{bottom:423.903000px;}
.y88_c00427{bottom:441.959448px;}
.y87_c00427{bottom:442.266850px;}
.y86_c00427{bottom:443.547588px;}
.y85_c00427{bottom:444.038794px;}
.y84_c00427{bottom:444.938766px;}
.y83_c00427{bottom:445.315018px;}
.y82_c00427{bottom:446.113882px;}
.y81_c00427{bottom:446.853000px;}
.y80_c00427{bottom:464.316612px;}
.y7f_c00427{bottom:464.726262px;}
.y7e_c00427{bottom:464.960700px;}
.y7d_c00427{bottom:465.757368px;}
.y7c_c00427{bottom:466.523340px;}
.y7b_c00427{bottom:467.070474px;}
.y7a_c00427{bottom:467.775216px;}
.y79_c00427{bottom:468.362250px;}
.y78_c00427{bottom:468.824610px;}
.y77_c00427{bottom:468.989748px;}
.y76_c00427{bottom:486.899538px;}
.y75_c00427{bottom:488.390538px;}
.y74_c00427{bottom:488.866716px;}
.y73_c00427{bottom:489.259494px;}
.y72_c00427{bottom:490.573122px;}
.y71_c00427{bottom:491.666730px;}
.y70_c00427{bottom:492.482226px;}
.y6f_c00427{bottom:510.891900px;}
.y6e_c00427{bottom:511.384308px;}
.y6d_c00427{bottom:511.954512px;}
.y6c_c00427{bottom:512.858796px;}
.y6b_c00427{bottom:513.597498px;}
.y6a_c00427{bottom:514.099230px;}
.y69_c00427{bottom:514.621500px;}
.y68_c00427{bottom:533.092260px;}
.y67_c00427{bottom:533.441183px;}
.y66_c00427{bottom:534.544725px;}
.y65_c00427{bottom:535.047968px;}
.y64_c00427{bottom:535.643835px;}
.y63_c00427{bottom:535.916745px;}
.y62_c00427{bottom:536.885138px;}
.y61_c00427{bottom:537.623528px;}
.y60_c00427{bottom:538.137765px;}
.y5f_c00427{bottom:555.581707px;}
.y5e_c00427{bottom:556.377240px;}
.y5d_c00427{bottom:557.101380px;}
.y5c_c00427{bottom:557.724158px;}
.y5b_c00427{bottom:558.202125px;}
.y5a_c00427{bottom:559.353540px;}
.y59_c00427{bottom:559.973370px;}
.y58_c00427{bottom:560.471768px;}
.y57_c00427{bottom:561.063000px;}
.y56_c00427{bottom:579.596730px;}
.y55_c00427{bottom:580.126050px;}
.y54_c00427{bottom:580.887420px;}
.y53_c00427{bottom:581.744130px;}
.y52_c00427{bottom:582.259080px;}
.y51_c00427{bottom:583.528590px;}
.y50_c00427{bottom:584.014500px;}
.y4f_c00427{bottom:600.079500px;}
.y4e_c00427{bottom:624.309540px;}
.y4d_c00427{bottom:625.112124px;}
.y4c_c00427{bottom:626.046084px;}
.y4b_c00427{bottom:626.396172px;}
.y4a_c00427{bottom:627.130764px;}
.y49_c00427{bottom:627.558252px;}
.y48_c00427{bottom:628.313388px;}
.y47_c00427{bottom:628.983180px;}
.y46_c00427{bottom:629.908788px;}
.y45_c00427{bottom:647.764980px;}
.y44_c00427{bottom:648.367776px;}
.y43_c00427{bottom:649.049292px;}
.y42_c00427{bottom:649.610580px;}
.y41_c00427{bottom:650.123688px;}
.y40_c00427{bottom:650.628720px;}
.y3f_c00427{bottom:650.937072px;}
.y3e_c00427{bottom:651.527268px;}
.y3d_c00427{bottom:670.518072px;}
.y3c_c00427{bottom:670.906536px;}
.y3b_c00427{bottom:671.835504px;}
.y3a_c00427{bottom:672.820488px;}
.y39_c00427{bottom:673.114272px;}
.y38_c00427{bottom:673.740792px;}
.y37_c00427{bottom:674.142696px;}
.y36_c00427{bottom:674.484000px;}
.y35_c00427{bottom:693.206088px;}
.y34_c00427{bottom:694.130868px;}
.y33_c00427{bottom:694.547676px;}
.y32_c00427{bottom:694.807236px;}
.y31_c00427{bottom:695.345868px;}
.y30_c00427{bottom:696.265032px;}
.y2f_c00427{bottom:696.936288px;}
.y2e_c00427{bottom:697.407012px;}
.y2d_c00427{bottom:715.222776px;}
.y2c_c00427{bottom:715.865820px;}
.y2b_c00427{bottom:716.388336px;}
.y2a_c00427{bottom:716.948220px;}
.y29_c00427{bottom:717.417792px;}
.y28_c00427{bottom:718.569204px;}
.y27_c00427{bottom:719.170560px;}
.y26_c00427{bottom:719.811096px;}
.y25_c00427{bottom:720.359472px;}
.y24_c00427{bottom:738.164904px;}
.y23_c00427{bottom:738.821112px;}
.y22_c00427{bottom:739.306128px;}
.y21_c00427{bottom:739.608480px;}
.y20_c00427{bottom:740.138664px;}
.y1f_c00427{bottom:740.934888px;}
.y1e_c00427{bottom:741.522336px;}
.y1d_c00427{bottom:742.317192px;}
.y1c_c00427{bottom:743.043000px;}
.y1b_c00427{bottom:761.955468px;}
.y1a_c00427{bottom:762.470556px;}
.y19_c00427{bottom:763.008000px;}
.y18_c00427{bottom:763.364994px;}
.y17_c00427{bottom:764.459538px;}
.y16_c00427{bottom:764.754324px;}
.y15_c00427{bottom:765.136662px;}
.y14_c00427{bottom:765.451500px;}
.y13_c00427{bottom:786.874500px;}
.yd_c00427{bottom:809.361996px;}
.yc_c00427{bottom:809.362104px;}
.y12_c00427{bottom:809.362188px;}
.ye_c00427{bottom:809.362248px;}
.y11_c00427{bottom:809.362416px;}
.ya_c00427{bottom:809.362452px;}
.y10_c00427{bottom:809.362512px;}
.yb_c00427{bottom:809.362704px;}
.yf_c00427{bottom:809.362980px;}
.y9_c00427{bottom:830.644668px;}
.y8_c00427{bottom:830.940300px;}
.y7_c00427{bottom:831.465168px;}
.y6_c00427{bottom:831.709500px;}
.y5_c00427{bottom:831.830580px;}
.y4_c00427{bottom:832.310004px;}
.y3_c00427{bottom:832.674756px;}
.y2_c00427{bottom:832.884252px;}
.y1_c00427{bottom:833.221500px;}
.h1d_c00427{height:16.800000px;}
.h20_c00427{height:45.150000px;}
.h16_c00427{height:47.250000px;}
.h19_c00427{height:48.300000px;}
.h18_c00427{height:48.305433px;}
.h1f_c00427{height:49.350000px;}
.h1b_c00427{height:50.400000px;}
.h1c_c00427{height:51.450000px;}
.h15_c00427{height:52.500000px;}
.h17_c00427{height:52.505906px;}
.h14_c00427{height:53.550000px;}
.h21_c00427{height:54.600000px;}
.h1a_c00427{height:55.650000px;}
.h1e_c00427{height:58.800000px;}
.he_c00427{height:63.007087px;}
.h2_c00427{height:64.052050px;}
.h3_c00427{height:67.202150px;}
.h9_c00427{height:67.208601px;}
.h8_c00427{height:68.258735px;}
.h6_c00427{height:69.308870px;}
.hc_c00427{height:70.364069px;}
.h4_c00427{height:71.400000px;}
.hd_c00427{height:71.408032px;}
.h7_c00427{height:71.409139px;}
.h11_c00427{height:71.410317px;}
.hf_c00427{height:72.455216px;}
.ha_c00427{height:72.459273px;}
.h12_c00427{height:72.460468px;}
.h13_c00427{height:72.464489px;}
.h10_c00427{height:73.505292px;}
.h5_c00427{height:75.605443px;}
.hb_c00427{height:108.150000px;}
.h0_c00427{height:1008.450000px;}
.h1_c00427{height:1008.750000px;}
.w1_c00427{width:689.250000px;}
.w0_c00427{width:689.550000px;}
.x0_c00427{left:0.000000px;}
.x74_c00427{left:136.350000px;}
.x6f_c00427{left:137.430000px;}
.x6b_c00427{left:149.850000px;}
.x82_c00427{left:153.630000px;}
.x75_c00427{left:155.520000px;}
.x5b_c00427{left:160.505478px;}
.x57_c00427{left:164.206380px;}
.x72_c00427{left:168.483877px;}
.x83_c00427{left:170.100000px;}
.x6c_c00427{left:171.180000px;}
.x2a_c00427{left:172.334820px;}
.x36_c00427{left:173.380920px;}
.x19_c00427{left:175.035000px;}
.x1_c00427{left:176.203500px;}
.x70_c00427{left:178.873500px;}
.x76_c00427{left:187.650000px;}
.x86_c00427{left:189.139500px;}
.x5f_c00427{left:191.493000px;}
.x7b_c00427{left:193.050000px;}
.x32_c00427{left:194.190000px;}
.x45_c00427{left:196.572000px;}
.x4e_c00427{left:199.085017px;}
.x15_c00427{left:201.858000px;}
.x2b_c00427{left:203.724324px;}
.xa_c00427{left:206.551584px;}
.x7e_c00427{left:207.630000px;}
.x58_c00427{left:209.536122px;}
.x69_c00427{left:210.922500px;}
.x22_c00427{left:212.917080px;}
.x62_c00427{left:217.132500px;}
.x2_c00427{left:218.359500px;}
.x1a_c00427{left:220.398000px;}
.xb_c00427{left:222.752616px;}
.x77_c00427{left:226.530000px;}
.x3d_c00427{left:230.727984px;}
.x16_c00427{left:233.719500px;}
.x60_c00427{left:234.970500px;}
.x4f_c00427{left:237.908678px;}
.x5c_c00427{left:241.463562px;}
.x37_c00427{left:242.574756px;}
.x3_c00427{left:244.546500px;}
.x11_c00427{left:247.050000px;}
.x2c_c00427{left:248.491044px;}
.x78_c00427{left:252.990000px;}
.x23_c00427{left:255.576252px;}
.xc_c00427{left:258.393396px;}
.x46_c00427{left:260.047500px;}
.x6d_c00427{left:262.710000px;}
.x84_c00427{left:264.330000px;}
.x1b_c00427{left:270.076500px;}
.x3e_c00427{left:272.589984px;}
.x33_c00427{left:276.828000px;}
.x12_c00427{left:278.100000px;}
.x7c_c00427{left:279.990000px;}
.x38_c00427{left:281.453628px;}
.x6e_c00427{left:283.770000px;}
.x47_c00427{left:285.795000px;}
.x4a_c00427{left:288.463500px;}
.x4_c00427{left:290.140500px;}
.x7f_c00427{left:293.760000px;}
.x24_c00427{left:295.692900px;}
.x50_c00427{left:303.258263px;}
.x71_c00427{left:305.248500px;}
.x1c_c00427{left:306.792000px;}
.xd_c00427{left:308.615112px;}
.x2d_c00427{left:309.783528px;}
.x73_c00427{left:311.850000px;}
.x79_c00427{left:313.740000px;}
.x63_c00427{left:317.064000px;}
.x65_c00427{left:318.736500px;}
.x3f_c00427{left:319.785984px;}
.x39_c00427{left:320.931024px;}
.x44_c00427{left:324.540000px;}
.x80_c00427{left:327.240000px;}
.x48_c00427{left:328.630500px;}
.x6a_c00427{left:332.172000px;}
.x85_c00427{left:333.450000px;}
.x51_c00427{left:334.580873px;}
.x87_c00427{left:336.568500px;}
.x34_c00427{left:338.389500px;}
.x7d_c00427{left:339.390000px;}
.x66_c00427{left:341.871000px;}
.x59_c00427{left:343.254492px;}
.x2e_c00427{left:345.698604px;}
.x7a_c00427{left:346.950000px;}
.x5_c00427{left:350.068500px;}
.xe_c00427{left:351.276348px;}
.x13_c00427{left:352.350000px;}
.x1d_c00427{left:356.556000px;}
.x81_c00427{left:359.370000px;}
.x52_c00427{left:361.028775px;}
.x2f_c00427{left:363.046392px;}
.x3a_c00427{left:364.076088px;}
.x6_c00427{left:365.203500px;}
.x49_c00427{left:366.699000px;}
.x25_c00427{left:372.438624px;}
.x5d_c00427{left:375.987720px;}
.xf_c00427{left:379.086624px;}
.x64_c00427{left:382.944000px;}
.x67_c00427{left:383.998500px;}
.x61_c00427{left:385.929000px;}
.x89_c00427{left:387.180000px;}
.x1e_c00427{left:389.692500px;}
.x30_c00427{left:390.784824px;}
.x40_c00427{left:392.415984px;}
.x7_c00427{left:395.745000px;}
.x4b_c00427{left:397.089000px;}
.xac_c00427{left:402.030000px;}
.x26_c00427{left:403.756128px;}
.x1f_c00427{left:408.589500px;}
.xa6_c00427{left:412.830000px;}
.x41_c00427{left:414.296484px;}
.x3b_c00427{left:416.517108px;}
.x9e_c00427{left:417.690000px;}
.x53_c00427{left:419.094787px;}
.x35_c00427{left:420.729000px;}
.x14_c00427{left:422.550000px;}
.x17_c00427{left:424.033500px;}
.x8f_c00427{left:427.140000px;}
.x5e_c00427{left:429.124812px;}
.xa7_c00427{left:430.920000px;}
.x9f_c00427{left:436.050000px;}
.x54_c00427{left:437.455185px;}
.x20_c00427{left:438.903000px;}
.x27_c00427{left:441.093228px;}
.xa2_c00427{left:442.530000px;}
.x55_c00427{left:444.300000px;}
.xb1_c00427{left:446.850000px;}
.x88_c00427{left:448.200000px;}
.x92_c00427{left:450.900000px;}
.x31_c00427{left:452.428308px;}
.x68_c00427{left:454.131000px;}
.x99_c00427{left:456.030000px;}
.xad_c00427{left:457.650000px;}
.x8_c00427{left:461.353500px;}
.x3c_c00427{left:462.912840px;}
.xae_c00427{left:465.750000px;}
.x18_c00427{left:466.957500px;}
.xa8_c00427{left:468.450000px;}
.x42_c00427{left:472.668984px;}
.x5a_c00427{left:474.408060px;}
.x28_c00427{left:475.907280px;}
.x21_c00427{left:479.916000px;}
.x8a_c00427{left:482.490000px;}
.x56_c00427{left:485.334000px;}
.x4c_c00427{left:486.883500px;}
.x9a_c00427{left:492.210000px;}
.x8e_c00427{left:494.640000px;}
.x98_c00427{left:495.990000px;}
.x9_c00427{left:498.307500px;}
.xa3_c00427{left:500.310000px;}
.x10_c00427{left:506.260260px;}
.x93_c00427{left:507.870000px;}
.x9b_c00427{left:510.840000px;}
.xaf_c00427{left:514.080000px;}
.xb2_c00427{left:516.780000px;}
.x29_c00427{left:518.816976px;}
.x43_c00427{left:522.830484px;}
.x94_c00427{left:525.150000px;}
.x9c_c00427{left:528.390000px;}
.xa0_c00427{left:530.820000px;}
.xa4_c00427{left:533.520000px;}
.xa9_c00427{left:534.600000px;}
.x95_c00427{left:537.570000px;}
.x4d_c00427{left:539.919000px;}
.x8b_c00427{left:542.430000px;}
.x90_c00427{left:544.050000px;}
.xaa_c00427{left:552.420000px;}
.x8c_c00427{left:559.980000px;}
.xb0_c00427{left:563.760000px;}
.xb3_c00427{left:564.840000px;}
.x9d_c00427{left:572.940000px;}
.xa1_c00427{left:576.180000px;}
.x96_c00427{left:582.120000px;}
.xa5_c00427{left:584.820000px;}
.x91_c00427{left:589.410000px;}
.x8d_c00427{left:597.780000px;}
.xab_c00427{left:600.750000px;}
.x97_c00427{left:602.100000px;}
.xb4_c00427{left:603.180000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
.fs1b_c00427{font-size:14.933333pt;}
.fs1e_c00427{font-size:40.133333pt;}
.fs14_c00427{font-size:42.000000pt;}
.fs17_c00427{font-size:42.933333pt;}
.fs16_c00427{font-size:42.938163pt;}
.fs1d_c00427{font-size:43.866667pt;}
.fs19_c00427{font-size:44.800000pt;}
.fs1a_c00427{font-size:45.733333pt;}
.fs13_c00427{font-size:46.666667pt;}
.fs15_c00427{font-size:46.671916pt;}
.fs12_c00427{font-size:47.600000pt;}
.fs1f_c00427{font-size:48.533333pt;}
.fs18_c00427{font-size:49.466667pt;}
.fs1c_c00427{font-size:52.266667pt;}
.fsc_c00427{font-size:56.006300pt;}
.fs0_c00427{font-size:56.935155pt;}
.fs1_c00427{font-size:59.735245pt;}
.fs7_c00427{font-size:59.740979pt;}
.fs6_c00427{font-size:60.674432pt;}
.fs4_c00427{font-size:61.607884pt;}
.fsa_c00427{font-size:62.545839pt;}
.fs2_c00427{font-size:63.466667pt;}
.fsb_c00427{font-size:63.473806pt;}
.fs5_c00427{font-size:63.474790pt;}
.fsf_c00427{font-size:63.475837pt;}
.fsd_c00427{font-size:64.404637pt;}
.fs8_c00427{font-size:64.408243pt;}
.fs10_c00427{font-size:64.409305pt;}
.fs11_c00427{font-size:64.412879pt;}
.fse_c00427{font-size:65.338037pt;}
.fs3_c00427{font-size:67.204838pt;}
.fs9_c00427{font-size:96.133333pt;}
.y0_c00427{bottom:0.000000pt;}
.yba_c00427{bottom:110.160000pt;}
.yc6_c00427{bottom:136.512000pt;}
.yb9_c00427{bottom:137.978667pt;}
.yb8_c00427{bottom:138.149333pt;}
.yb7_c00427{bottom:138.576000pt;}
.yb6_c00427{bottom:138.810667pt;}
.yb5_c00427{bottom:139.472000pt;}
.yb4_c00427{bottom:139.737333pt;}
.yb3_c00427{bottom:139.982667pt;}
.yb2_c00427{bottom:140.641333pt;}
.yc5_c00427{bottom:152.557333pt;}
.yb1_c00427{bottom:155.036000pt;}
.yc4_c00427{bottom:168.498667pt;}
.yb0_c00427{bottom:170.776000pt;}
.yc3_c00427{bottom:184.678667pt;}
.yaf_c00427{bottom:186.610667pt;}
.yc2_c00427{bottom:200.466667pt;}
.yae_c00427{bottom:202.849333pt;}
.yc1_c00427{bottom:216.354667pt;}
.ya7_c00427{bottom:217.913920pt;}
.ya8_c00427{bottom:217.914093pt;}
.ya9_c00427{bottom:217.914113pt;}
.yab_c00427{bottom:217.914140pt;}
.yac_c00427{bottom:217.914240pt;}
.yaa_c00427{bottom:217.914573pt;}
.yc0_c00427{bottom:232.233333pt;}
.ya6_c00427{bottom:232.979947pt;}
.ya5_c00427{bottom:233.375787pt;}
.ya4_c00427{bottom:233.739507pt;}
.ya3_c00427{bottom:234.535567pt;}
.ya2_c00427{bottom:234.834387pt;}
.ya1_c00427{bottom:235.060787pt;}
.ya0_c00427{bottom:235.442667pt;}
.ybf_c00427{bottom:247.892000pt;}
.ybb_c00427{bottom:248.400000pt;}
.y9f_c00427{bottom:251.041333pt;}
.ybe_c00427{bottom:263.849333pt;}
.yad_c00427{bottom:265.201333pt;}
.y9e_c00427{bottom:266.633333pt;}
.ybd_c00427{bottom:269.520000pt;}
.ybc_c00427{bottom:279.876000pt;}
.y9d_c00427{bottom:281.964000pt;}
.y9c_c00427{bottom:331.540201pt;}
.y9b_c00427{bottom:332.139939pt;}
.y9a_c00427{bottom:332.742645pt;}
.y99_c00427{bottom:333.123355pt;}
.y98_c00427{bottom:334.462025pt;}
.y97_c00427{bottom:334.955569pt;}
.y96_c00427{bottom:335.522667pt;}
.y95_c00427{bottom:351.618933pt;}
.y94_c00427{bottom:352.865733pt;}
.y93_c00427{bottom:353.614667pt;}
.y92_c00427{bottom:354.025947pt;}
.y91_c00427{bottom:354.688880pt;}
.y90_c00427{bottom:355.112640pt;}
.y8f_c00427{bottom:356.149707pt;}
.y8e_c00427{bottom:356.644000pt;}
.y8d_c00427{bottom:373.628177pt;}
.y8c_c00427{bottom:373.950384pt;}
.y8b_c00427{bottom:374.623697pt;}
.y8a_c00427{bottom:376.133773pt;}
.y89_c00427{bottom:376.802667pt;}
.y88_c00427{bottom:392.852843pt;}
.y87_c00427{bottom:393.126089pt;}
.y86_c00427{bottom:394.264523pt;}
.y85_c00427{bottom:394.701151pt;}
.y84_c00427{bottom:395.501125pt;}
.y83_c00427{bottom:395.835572pt;}
.y82_c00427{bottom:396.545673pt;}
.y81_c00427{bottom:397.202667pt;}
.y80_c00427{bottom:412.725877pt;}
.y7f_c00427{bottom:413.090011pt;}
.y7e_c00427{bottom:413.298400pt;}
.y7d_c00427{bottom:414.006549pt;}
.y7c_c00427{bottom:414.687413pt;}
.y7b_c00427{bottom:415.173755pt;}
.y7a_c00427{bottom:415.800192pt;}
.y79_c00427{bottom:416.322000pt;}
.y78_c00427{bottom:416.732987pt;}
.y77_c00427{bottom:416.879776pt;}
.y76_c00427{bottom:432.799589pt;}
.y75_c00427{bottom:434.124923pt;}
.y74_c00427{bottom:434.548192pt;}
.y73_c00427{bottom:434.897328pt;}
.y72_c00427{bottom:436.064997pt;}
.y71_c00427{bottom:437.037093pt;}
.y70_c00427{bottom:437.761979pt;}
.y6f_c00427{bottom:454.126133pt;}
.y6e_c00427{bottom:454.563829pt;}
.y6d_c00427{bottom:455.070677pt;}
.y6c_c00427{bottom:455.874485pt;}
.y6b_c00427{bottom:456.531109pt;}
.y6a_c00427{bottom:456.977093pt;}
.y69_c00427{bottom:457.441333pt;}
.y68_c00427{bottom:473.859787pt;}
.y67_c00427{bottom:474.169940pt;}
.y66_c00427{bottom:475.150867pt;}
.y65_c00427{bottom:475.598193pt;}
.y64_c00427{bottom:476.127853pt;}
.y63_c00427{bottom:476.370440pt;}
.y62_c00427{bottom:477.231233pt;}
.y61_c00427{bottom:477.887580pt;}
.y60_c00427{bottom:478.344680pt;}
.y5f_c00427{bottom:493.850407pt;}
.y5e_c00427{bottom:494.557547pt;}
.y5d_c00427{bottom:495.201227pt;}
.y5c_c00427{bottom:495.754807pt;}
.y5b_c00427{bottom:496.179667pt;}
.y5a_c00427{bottom:497.203147pt;}
.y59_c00427{bottom:497.754107pt;}
.y58_c00427{bottom:498.197127pt;}
.y57_c00427{bottom:498.722667pt;}
.y56_c00427{bottom:515.197093pt;}
.y55_c00427{bottom:515.667600pt;}
.y54_c00427{bottom:516.344373pt;}
.y53_c00427{bottom:517.105893pt;}
.y52_c00427{bottom:517.563627pt;}
.y51_c00427{bottom:518.692080pt;}
.y50_c00427{bottom:519.124000pt;}
.y4f_c00427{bottom:533.404000pt;}
.y4e_c00427{bottom:554.941813pt;}
.y4d_c00427{bottom:555.655221pt;}
.y4c_c00427{bottom:556.485408pt;}
.y4b_c00427{bottom:556.796597pt;}
.y4a_c00427{bottom:557.449568pt;}
.y49_c00427{bottom:557.829557pt;}
.y48_c00427{bottom:558.500789pt;}
.y47_c00427{bottom:559.096160pt;}
.y46_c00427{bottom:559.918923pt;}
.y45_c00427{bottom:575.791093pt;}
.y44_c00427{bottom:576.326912pt;}
.y43_c00427{bottom:576.932704pt;}
.y42_c00427{bottom:577.431627pt;}
.y41_c00427{bottom:577.887723pt;}
.y40_c00427{bottom:578.336640pt;}
.y3f_c00427{bottom:578.610731pt;}
.y3e_c00427{bottom:579.135349pt;}
.y3d_c00427{bottom:596.016064pt;}
.y3c_c00427{bottom:596.361365pt;}
.y3b_c00427{bottom:597.187115pt;}
.y3a_c00427{bottom:598.062656pt;}
.y39_c00427{bottom:598.323797pt;}
.y38_c00427{bottom:598.880704pt;}
.y37_c00427{bottom:599.237952pt;}
.y36_c00427{bottom:599.541333pt;}
.y35_c00427{bottom:616.183189pt;}
.y34_c00427{bottom:617.005216pt;}
.y33_c00427{bottom:617.375712pt;}
.y32_c00427{bottom:617.606432pt;}
.y31_c00427{bottom:618.085216pt;}
.y30_c00427{bottom:618.902251pt;}
.y2f_c00427{bottom:619.498923pt;}
.y2e_c00427{bottom:619.917344pt;}
.y2d_c00427{bottom:635.753579pt;}
.y2c_c00427{bottom:636.325173pt;}
.y2b_c00427{bottom:636.789632pt;}
.y2a_c00427{bottom:637.287307pt;}
.y29_c00427{bottom:637.704704pt;}
.y28_c00427{bottom:638.728181pt;}
.y27_c00427{bottom:639.262720pt;}
.y26_c00427{bottom:639.832085pt;}
.y25_c00427{bottom:640.319531pt;}
.y24_c00427{bottom:656.146581pt;}
.y23_c00427{bottom:656.729877pt;}
.y22_c00427{bottom:657.161003pt;}
.y21_c00427{bottom:657.429760pt;}
.y20_c00427{bottom:657.901035pt;}
.y1f_c00427{bottom:658.608789pt;}
.y1e_c00427{bottom:659.130965pt;}
.y1d_c00427{bottom:659.837504pt;}
.y1c_c00427{bottom:660.482667pt;}
.y1b_c00427{bottom:677.293749pt;}
.y1a_c00427{bottom:677.751605pt;}
.y19_c00427{bottom:678.229333pt;}
.y18_c00427{bottom:678.546661pt;}
.y17_c00427{bottom:679.519589pt;}
.y16_c00427{bottom:679.781621pt;}
.y15_c00427{bottom:680.121477pt;}
.y14_c00427{bottom:680.401333pt;}
.y13_c00427{bottom:699.444000pt;}
.yd_c00427{bottom:719.432885pt;}
.yc_c00427{bottom:719.432981pt;}
.y12_c00427{bottom:719.433056pt;}
.ye_c00427{bottom:719.433109pt;}
.y11_c00427{bottom:719.433259pt;}
.ya_c00427{bottom:719.433291pt;}
.y10_c00427{bottom:719.433344pt;}
.yb_c00427{bottom:719.433515pt;}
.yf_c00427{bottom:719.433760pt;}
.y9_c00427{bottom:738.350816pt;}
.y8_c00427{bottom:738.613600pt;}
.y7_c00427{bottom:739.080149pt;}
.y6_c00427{bottom:739.297333pt;}
.y5_c00427{bottom:739.404960pt;}
.y4_c00427{bottom:739.831115pt;}
.y3_c00427{bottom:740.155339pt;}
.y2_c00427{bottom:740.341557pt;}
.y1_c00427{bottom:740.641333pt;}
.h1d_c00427{height:14.933333pt;}
.h20_c00427{height:40.133333pt;}
.h16_c00427{height:42.000000pt;}
.h19_c00427{height:42.933333pt;}
.h18_c00427{height:42.938163pt;}
.h1f_c00427{height:43.866667pt;}
.h1b_c00427{height:44.800000pt;}
.h1c_c00427{height:45.733333pt;}
.h15_c00427{height:46.666667pt;}
.h17_c00427{height:46.671916pt;}
.h14_c00427{height:47.600000pt;}
.h21_c00427{height:48.533333pt;}
.h1a_c00427{height:49.466667pt;}
.h1e_c00427{height:52.266667pt;}
.he_c00427{height:56.006300pt;}
.h2_c00427{height:56.935155pt;}
.h3_c00427{height:59.735245pt;}
.h9_c00427{height:59.740979pt;}
.h8_c00427{height:60.674432pt;}
.h6_c00427{height:61.607884pt;}
.hc_c00427{height:62.545839pt;}
.h4_c00427{height:63.466667pt;}
.hd_c00427{height:63.473806pt;}
.h7_c00427{height:63.474790pt;}
.h11_c00427{height:63.475837pt;}
.hf_c00427{height:64.404637pt;}
.ha_c00427{height:64.408243pt;}
.h12_c00427{height:64.409305pt;}
.h13_c00427{height:64.412879pt;}
.h10_c00427{height:65.338037pt;}
.h5_c00427{height:67.204838pt;}
.hb_c00427{height:96.133333pt;}
.h0_c00427{height:896.400000pt;}
.h1_c00427{height:896.666667pt;}
.w1_c00427{width:612.666667pt;}
.w0_c00427{width:612.933333pt;}
.x0_c00427{left:0.000000pt;}
.x74_c00427{left:121.200000pt;}
.x6f_c00427{left:122.160000pt;}
.x6b_c00427{left:133.200000pt;}
.x82_c00427{left:136.560000pt;}
.x75_c00427{left:138.240000pt;}
.x5b_c00427{left:142.671536pt;}
.x57_c00427{left:145.961227pt;}
.x72_c00427{left:149.763447pt;}
.x83_c00427{left:151.200000pt;}
.x6c_c00427{left:152.160000pt;}
.x2a_c00427{left:153.186507pt;}
.x36_c00427{left:154.116373pt;}
.x19_c00427{left:155.586667pt;}
.x1_c00427{left:156.625333pt;}
.x70_c00427{left:158.998667pt;}
.x76_c00427{left:166.800000pt;}
.x86_c00427{left:168.124000pt;}
.x5f_c00427{left:170.216000pt;}
.x7b_c00427{left:171.600000pt;}
.x32_c00427{left:172.613333pt;}
.x45_c00427{left:174.730667pt;}
.x4e_c00427{left:176.964460pt;}
.x15_c00427{left:179.429333pt;}
.x2b_c00427{left:181.088288pt;}
.xa_c00427{left:183.601408pt;}
.x7e_c00427{left:184.560000pt;}
.x58_c00427{left:186.254331pt;}
.x69_c00427{left:187.486667pt;}
.x22_c00427{left:189.259627pt;}
.x62_c00427{left:193.006667pt;}
.x2_c00427{left:194.097333pt;}
.x1a_c00427{left:195.909333pt;}
.xb_c00427{left:198.002325pt;}
.x77_c00427{left:201.360000pt;}
.x3d_c00427{left:205.091541pt;}
.x16_c00427{left:207.750667pt;}
.x60_c00427{left:208.862667pt;}
.x4f_c00427{left:211.474380pt;}
.x5c_c00427{left:214.634277pt;}
.x37_c00427{left:215.622005pt;}
.x3_c00427{left:217.374667pt;}
.x11_c00427{left:219.600000pt;}
.x2c_c00427{left:220.880928pt;}
.x78_c00427{left:224.880000pt;}
.x23_c00427{left:227.178891pt;}
.xc_c00427{left:229.683019pt;}
.x46_c00427{left:231.153333pt;}
.x6d_c00427{left:233.520000pt;}
.x84_c00427{left:234.960000pt;}
.x1b_c00427{left:240.068000pt;}
.x3e_c00427{left:242.302208pt;}
.x33_c00427{left:246.069333pt;}
.x12_c00427{left:247.200000pt;}
.x7c_c00427{left:248.880000pt;}
.x38_c00427{left:250.181003pt;}
.x6e_c00427{left:252.240000pt;}
.x47_c00427{left:254.040000pt;}
.x4a_c00427{left:256.412000pt;}
.x4_c00427{left:257.902667pt;}
.x7f_c00427{left:261.120000pt;}
.x24_c00427{left:262.838133pt;}
.x50_c00427{left:269.562900pt;}
.x71_c00427{left:271.332000pt;}
.x1c_c00427{left:272.704000pt;}
.xd_c00427{left:274.324544pt;}
.x2d_c00427{left:275.363136pt;}
.x73_c00427{left:277.200000pt;}
.x79_c00427{left:278.880000pt;}
.x63_c00427{left:281.834667pt;}
.x65_c00427{left:283.321333pt;}
.x3f_c00427{left:284.254208pt;}
.x39_c00427{left:285.272021pt;}
.x44_c00427{left:288.480000pt;}
.x80_c00427{left:290.880000pt;}
.x48_c00427{left:292.116000pt;}
.x6a_c00427{left:295.264000pt;}
.x85_c00427{left:296.400000pt;}
.x51_c00427{left:297.405220pt;}
.x87_c00427{left:299.172000pt;}
.x34_c00427{left:300.790667pt;}
.x7d_c00427{left:301.680000pt;}
.x66_c00427{left:303.885333pt;}
.x59_c00427{left:305.115104pt;}
.x2e_c00427{left:307.287648pt;}
.x7a_c00427{left:308.400000pt;}
.x5_c00427{left:311.172000pt;}
.xe_c00427{left:312.245643pt;}
.x13_c00427{left:313.200000pt;}
.x1d_c00427{left:316.938667pt;}
.x81_c00427{left:319.440000pt;}
.x52_c00427{left:320.914467pt;}
.x2f_c00427{left:322.707904pt;}
.x3a_c00427{left:323.623189pt;}
.x6_c00427{left:324.625333pt;}
.x49_c00427{left:325.954667pt;}
.x25_c00427{left:331.056555pt;}
.x5d_c00427{left:334.211307pt;}
.xf_c00427{left:336.965888pt;}
.x64_c00427{left:340.394667pt;}
.x67_c00427{left:341.332000pt;}
.x61_c00427{left:343.048000pt;}
.x89_c00427{left:344.160000pt;}
.x1e_c00427{left:346.393333pt;}
.x30_c00427{left:347.364288pt;}
.x40_c00427{left:348.814208pt;}
.x7_c00427{left:351.773333pt;}
.x4b_c00427{left:352.968000pt;}
.xac_c00427{left:357.360000pt;}
.x26_c00427{left:358.894336pt;}
.x1f_c00427{left:363.190667pt;}
.xa6_c00427{left:366.960000pt;}
.x41_c00427{left:368.263541pt;}
.x3b_c00427{left:370.237429pt;}
.x9e_c00427{left:371.280000pt;}
.x53_c00427{left:372.528700pt;}
.x35_c00427{left:373.981333pt;}
.x14_c00427{left:375.600000pt;}
.x17_c00427{left:376.918667pt;}
.x8f_c00427{left:379.680000pt;}
.x5e_c00427{left:381.444277pt;}
.xa7_c00427{left:383.040000pt;}
.x9f_c00427{left:387.600000pt;}
.x54_c00427{left:388.849053pt;}
.x20_c00427{left:390.136000pt;}
.x27_c00427{left:392.082869pt;}
.xa2_c00427{left:393.360000pt;}
.x55_c00427{left:394.933333pt;}
.xb1_c00427{left:397.200000pt;}
.x88_c00427{left:398.400000pt;}
.x92_c00427{left:400.800000pt;}
.x31_c00427{left:402.158496pt;}
.x68_c00427{left:403.672000pt;}
.x99_c00427{left:405.360000pt;}
.xad_c00427{left:406.800000pt;}
.x8_c00427{left:410.092000pt;}
.x3c_c00427{left:411.478080pt;}
.xae_c00427{left:414.000000pt;}
.x18_c00427{left:415.073333pt;}
.xa8_c00427{left:416.400000pt;}
.x42_c00427{left:420.150208pt;}
.x5a_c00427{left:421.696053pt;}
.x28_c00427{left:423.028693pt;}
.x21_c00427{left:426.592000pt;}
.x8a_c00427{left:428.880000pt;}
.x56_c00427{left:431.408000pt;}
.x4c_c00427{left:432.785333pt;}
.x9a_c00427{left:437.520000pt;}
.x8e_c00427{left:439.680000pt;}
.x98_c00427{left:440.880000pt;}
.x9_c00427{left:442.940000pt;}
.xa3_c00427{left:444.720000pt;}
.x10_c00427{left:450.009120pt;}
.x93_c00427{left:451.440000pt;}
.x9b_c00427{left:454.080000pt;}
.xaf_c00427{left:456.960000pt;}
.xb2_c00427{left:459.360000pt;}
.x29_c00427{left:461.170645pt;}
.x43_c00427{left:464.738208pt;}
.x94_c00427{left:466.800000pt;}
.x9c_c00427{left:469.680000pt;}
.xa0_c00427{left:471.840000pt;}
.xa4_c00427{left:474.240000pt;}
.xa9_c00427{left:475.200000pt;}
.x95_c00427{left:477.840000pt;}
.x4d_c00427{left:479.928000pt;}
.x8b_c00427{left:482.160000pt;}
.x90_c00427{left:483.600000pt;}
.xaa_c00427{left:491.040000pt;}
.x8c_c00427{left:497.760000pt;}
.xb0_c00427{left:501.120000pt;}
.xb3_c00427{left:502.080000pt;}
.x9d_c00427{left:509.280000pt;}
.xa1_c00427{left:512.160000pt;}
.x96_c00427{left:517.440000pt;}
.xa5_c00427{left:519.840000pt;}
.x91_c00427{left:523.920000pt;}
.x8d_c00427{left:531.360000pt;}
.xab_c00427{left:534.000000pt;}
.x97_c00427{left:535.200000pt;}
.xb4_c00427{left:536.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_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_4ab86c84425994a9e06b01c2.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;}
.m20_c00428{transform:matrix(0.032393,0.000389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.032393,0.000389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.032393,0.000389,-0.003000,0.249982,0,0);}
.mfb_c00428{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);}
.m6c_c00428{transform:matrix(0.100530,0.001709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.100530,0.001709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.100530,0.001709,-0.004249,0.249964,0,0);}
.m48_c00428{transform:matrix(0.104430,0.001775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.104430,0.001775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.104430,0.001775,-0.004249,0.249964,0,0);}
.mec_c00428{transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.118128,0.001654,-0.003500,0.249976,0,0);-ms-transform:matrix(0.118128,0.001654,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.118128,0.001654,-0.003500,0.249976,0,0);}
.m29_c00428{transform:matrix(0.122151,0.001466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.122151,0.001466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.122151,0.001466,-0.003000,0.249982,0,0);}
.m79_c00428{transform:matrix(0.134181,0.002281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.134181,0.002281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.134181,0.002281,-0.004249,0.249964,0,0);}
.mfd_c00428{transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.136245,0.002316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.136245,0.002316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.136245,0.002316,-0.004249,0.249964,0,0);}
.m5c_c00428{transform:matrix(0.142619,0.002425,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142619,0.002425,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142619,0.002425,-0.004249,0.249964,0,0);}
.m52_c00428{transform:matrix(0.144744,0.002461,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144744,0.002461,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144744,0.002461,-0.004249,0.249964,0,0);}
.m93_c00428{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.mcf_c00428{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);}
.m33_c00428{transform:matrix(0.146859,0.001762,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146859,0.001762,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146859,0.001762,-0.003000,0.249982,0,0);}
.m51_c00428{transform:matrix(0.149278,0.002538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149278,0.002538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149278,0.002538,-0.004249,0.249964,0,0);}
.m78_c00428{transform:matrix(0.149643,0.002544,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149643,0.002544,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149643,0.002544,-0.004249,0.249964,0,0);}
.mad_c00428{transform:matrix(0.150580,0.002108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150580,0.002108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150580,0.002108,-0.003500,0.249976,0,0);}
.m119_c00428{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.153246,0.001686,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153246,0.001686,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153246,0.001686,-0.002750,0.249985,0,0);}
.mb2_c00428{transform:matrix(0.154530,0.002163,-0.003500,0.249976,0,0);-ms-transform:matrix(0.154530,0.002163,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.154530,0.002163,-0.003500,0.249976,0,0);}
.mb4_c00428{transform:matrix(0.155055,0.002171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155055,0.002171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155055,0.002171,-0.003500,0.249976,0,0);}
.m112_c00428{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);}
.mb3_c00428{transform:matrix(0.158774,0.002223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158774,0.002223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158774,0.002223,-0.003500,0.249976,0,0);}
.m81_c00428{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);}
.m47_c00428{transform:matrix(0.160422,0.002727,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160422,0.002727,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160422,0.002727,-0.004249,0.249964,0,0);}
.mf6_c00428{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);}
.m30_c00428{transform:matrix(0.161028,0.001932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161028,0.001932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161028,0.001932,-0.003000,0.249982,0,0);}
.mf_c00428{transform:matrix(0.161060,0.001772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161060,0.001772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161060,0.001772,-0.002750,0.249985,0,0);}
.maa_c00428{transform:matrix(0.161099,0.002255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161099,0.002255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161099,0.002255,-0.003500,0.249976,0,0);}
.m2b_c00428{transform:matrix(0.161343,0.001936,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161343,0.001936,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161343,0.001936,-0.003000,0.249982,0,0);}
.m86_c00428{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{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);}
.m4c_c00428{transform:matrix(0.163166,0.002774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163166,0.002774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163166,0.002774,-0.004249,0.249964,0,0);}
.m8a_c00428{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);}
.m4f_c00428{transform:matrix(0.163661,0.002782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163661,0.002782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163661,0.002782,-0.004249,0.249964,0,0);}
.m76_c00428{transform:matrix(0.163671,0.002782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163671,0.002782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163671,0.002782,-0.004249,0.249964,0,0);}
.m91_c00428{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);}
.m80_c00428{transform:matrix(0.164520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164520,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.164783,0.001977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164783,0.001977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164783,0.001977,-0.003000,0.249982,0,0);}
.m77_c00428{transform:matrix(0.164901,0.002803,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164901,0.002803,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164901,0.002803,-0.004249,0.249964,0,0);}
.m46_c00428{transform:matrix(0.165141,0.002807,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165141,0.002807,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165141,0.002807,-0.004249,0.249964,0,0);}
.mb7_c00428{transform:matrix(0.165159,0.002312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165159,0.002312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165159,0.002312,-0.003500,0.249976,0,0);}
.m7f_c00428{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);}
.mb5_c00428{transform:matrix(0.165669,0.002319,-0.003500,0.249976,0,0);-ms-transform:matrix(0.165669,0.002319,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.165669,0.002319,-0.003500,0.249976,0,0);}
.m99_c00428{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);}
.m1a_c00428{transform:matrix(0.167895,0.001847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167895,0.001847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167895,0.001847,-0.002750,0.249985,0,0);}
.md2_c00428{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);}
.m2e_c00428{transform:matrix(0.168453,0.002021,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168453,0.002021,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168453,0.002021,-0.003000,0.249982,0,0);}
.md6_c00428{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);}
.mea_c00428{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);}
.m7b_c00428{transform:matrix(0.169121,0.002875,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169121,0.002875,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169121,0.002875,-0.004249,0.249964,0,0);}
.mb1_c00428{transform:matrix(0.169488,0.002373,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169488,0.002373,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169488,0.002373,-0.003500,0.249976,0,0);}
.m1d_c00428{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);}
.m43_c00428{transform:matrix(0.170610,0.002900,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170610,0.002900,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170610,0.002900,-0.004249,0.249964,0,0);}
.m72_c00428{transform:matrix(0.171100,0.002909,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171100,0.002909,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171100,0.002909,-0.004249,0.249964,0,0);}
.m14_c00428{transform:matrix(0.171235,0.001884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171235,0.001884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171235,0.001884,-0.002750,0.249985,0,0);}
.md8_c00428{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);}
.m8e_c00428{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);}
.m11a_c00428{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);}
.m3b_c00428{transform:matrix(0.172593,0.002071,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172593,0.002071,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172593,0.002071,-0.003000,0.249982,0,0);}
.me2_c00428{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);}
.mac_c00428{transform:matrix(0.173038,0.002423,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173038,0.002423,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173038,0.002423,-0.003500,0.249976,0,0);}
.m69_c00428{transform:matrix(0.173525,0.002950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173525,0.002950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173525,0.002950,-0.004249,0.249964,0,0);}
.mab_c00428{transform:matrix(0.173878,0.002434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173878,0.002434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173878,0.002434,-0.003500,0.249976,0,0);}
.m10e_c00428{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);}
.m1b_c00428{transform:matrix(0.174539,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174539,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174539,0.001920,-0.002750,0.249985,0,0);}
.mc4_c00428{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);}
.m95_c00428{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);}
.mc0_c00428{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);}
.m1e_c00428{transform:matrix(0.176694,0.001944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176694,0.001944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176694,0.001944,-0.002750,0.249985,0,0);}
.m54_c00428{transform:matrix(0.177779,0.003022,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177779,0.003022,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177779,0.003022,-0.004249,0.249964,0,0);}
.m121_c00428{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);}
.m104_c00428{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);}
.m2a_c00428{transform:matrix(0.178247,0.002139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178247,0.002139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178247,0.002139,-0.003000,0.249982,0,0);}
.m13_c00428{transform:matrix(0.178249,0.001961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178249,0.001961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178249,0.001961,-0.002750,0.249985,0,0);}
.m66_c00428{transform:matrix(0.178454,0.003034,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178454,0.003034,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178454,0.003034,-0.004249,0.249964,0,0);}
.mdc_c00428{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);}
.m89_c00428{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);}
.m85_c00428{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);}
.m70_c00428{transform:matrix(0.179129,0.003045,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179129,0.003045,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179129,0.003045,-0.004249,0.249964,0,0);}
.mb6_c00428{transform:matrix(0.179452,0.002512,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179452,0.002512,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179452,0.002512,-0.003500,0.249976,0,0);}
.mef_c00428{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);}
.m1f_c00428{transform:matrix(0.180879,0.001990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180879,0.001990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180879,0.001990,-0.002750,0.249985,0,0);}
.m44_c00428{transform:matrix(0.181144,0.003079,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181144,0.003079,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181144,0.003079,-0.004249,0.249964,0,0);}
.mc8_c00428{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);}
.me0_c00428{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);}
.ma6_c00428{transform:matrix(0.182132,0.002550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182132,0.002550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182132,0.002550,-0.003500,0.249976,0,0);}
.ma2_c00428{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);}
.mb0_c00428{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);}
.m83_c00428{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);}
.ma7_c00428{transform:matrix(0.182222,0.002551,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182222,0.002551,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182222,0.002551,-0.003500,0.249976,0,0);}
.m110_c00428{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);}
.mc2_c00428{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);}
.mff_c00428{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);}
.m87_c00428{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);}
.mf0_c00428{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);}
.mbd_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);}
.mdb_c00428{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);}
.m2c_c00428{transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184157,0.002210,-0.003000,0.249982,0,0);}
.m1c_c00428{transform:matrix(0.184169,0.002026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184169,0.002026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184169,0.002026,-0.002750,0.249985,0,0);}
.md5_c00428{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);}
.m2d_c00428{transform:matrix(0.184697,0.002216,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184697,0.002216,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184697,0.002216,-0.003000,0.249982,0,0);}
.m97_c00428{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);}
.maf_c00428{transform:matrix(0.185047,0.002591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185047,0.002591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185047,0.002591,-0.003500,0.249976,0,0);}
.md3_c00428{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);}
.m18_c00428{transform:matrix(0.185694,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185694,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185694,0.002043,-0.002750,0.249985,0,0);}
.m7e_c00428{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);}
.m11b_c00428{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);}
.m31_c00428{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);}
.m3d_c00428{transform:matrix(0.186952,0.002243,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186952,0.002243,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186952,0.002243,-0.003000,0.249982,0,0);}
.m4b_c00428{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);}
.m106_c00428{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);}
.m10c_c00428{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);}
.md7_c00428{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);}
.m82_c00428{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);}
.m4a_c00428{transform:matrix(0.187568,0.003189,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187568,0.003189,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187568,0.003189,-0.004249,0.249964,0,0);}
.m8f_c00428{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);}
.md1_c00428{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);}
.ma4_c00428{transform:matrix(0.188422,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188422,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188422,0.002638,-0.003500,0.249976,0,0);}
.m64_c00428{transform:matrix(0.188528,0.003205,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188528,0.003205,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188528,0.003205,-0.004249,0.249964,0,0);}
.m103_c00428{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);}
.m27_c00428{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);}
.m73_c00428{transform:matrix(0.189483,0.003221,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189483,0.003221,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189483,0.003221,-0.004249,0.249964,0,0);}
.m2f_c00428{transform:matrix(0.189516,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189516,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189516,0.002274,-0.003000,0.249982,0,0);}
.m10_c00428{transform:matrix(0.189804,0.002088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189804,0.002088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189804,0.002088,-0.002750,0.249985,0,0);}
.m4d_c00428{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);}
.m75_c00428{transform:matrix(0.190003,0.003230,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190003,0.003230,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190003,0.003230,-0.004249,0.249964,0,0);}
.m88_c00428{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);}
.mdf_c00428{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);}
.mfe_c00428{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);}
.m45_c00428{transform:matrix(0.190457,0.003238,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190457,0.003238,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190457,0.003238,-0.004249,0.249964,0,0);}
.m35_c00428{transform:matrix(0.190766,0.002289,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190766,0.002289,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190766,0.002289,-0.003000,0.249982,0,0);}
.mf5_c00428{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);}
.mbb_c00428{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);}
.m3c_c00428{transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191601,0.002299,-0.003000,0.249982,0,0);}
.m8c_c00428{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);}
.mda_c00428{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);}
.m105_c00428{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);}
.m15_c00428{transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);}
.m6f_c00428{transform:matrix(0.192662,0.003275,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192662,0.003275,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192662,0.003275,-0.004249,0.249964,0,0);}
.m67_c00428{transform:matrix(0.193407,0.003288,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193407,0.003288,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193407,0.003288,-0.004249,0.249964,0,0);}
.m71_c00428{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);}
.ma8_c00428{transform:matrix(0.193636,0.002711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193636,0.002711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193636,0.002711,-0.003500,0.249976,0,0);}
.mc3_c00428{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);}
.m26_c00428{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);}
.m120_c00428{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);}
.mee_c00428{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);}
.me5_c00428{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);}
.m131_c00428{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);}
.m8b_c00428{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);}
.m100_c00428{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);}
.m5b_c00428{transform:matrix(0.196122,0.003334,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196122,0.003334,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196122,0.003334,-0.004249,0.249964,0,0);}
.m8d_c00428{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);}
.m25_c00428{transform:matrix(0.196336,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196336,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196336,0.002356,-0.003000,0.249982,0,0);}
.m6b_c00428{transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);}
.m118_c00428{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);}
.mbe_c00428{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);}
.m10b_c00428{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);}
.m50_c00428{transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);}
.m10d_c00428{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);}
.md_c00428{transform:matrix(0.198853,0.002187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198853,0.002187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198853,0.002187,-0.002750,0.249985,0,0);}
.m34_c00428{transform:matrix(0.199156,0.002390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199156,0.002390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199156,0.002390,-0.003000,0.249982,0,0);}
.mc1_c00428{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);}
.mcd_c00428{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);}
.m114_c00428{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);}
.me8_c00428{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);}
.md9_c00428{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);}
.m92_c00428{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);}
.mbc_c00428{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);}
.mc6_c00428{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);}
.m94_c00428{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);}
.m126_c00428{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);}
.m117_c00428{transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);}
.m107_c00428{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);}
.ma0_c00428{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);}
.m128_c00428{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.mf7_c00428{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);}
.me7_c00428{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);}
.m12a_c00428{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);}
.m41_c00428{transform:matrix(0.205320,0.003490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205320,0.003490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205320,0.003490,-0.004249,0.249964,0,0);}
.m17_c00428{transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205723,0.002263,-0.002750,0.249985,0,0);}
.m68_c00428{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);}
.m90_c00428{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);}
.m10a_c00428{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);}
.mf3_c00428{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);}
.m3a_c00428{transform:matrix(0.207735,0.002493,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207735,0.002493,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207735,0.002493,-0.003000,0.249982,0,0);}
.m108_c00428{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);}
.m16_c00428{transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208082,0.002289,-0.002750,0.249985,0,0);}
.m59_c00428{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);}
.m12c_c00428{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);}
.m65_c00428{transform:matrix(0.209480,0.003561,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209480,0.003561,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209480,0.003561,-0.004249,0.249964,0,0);}
.m39_c00428{transform:matrix(0.210205,0.002522,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210205,0.002522,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210205,0.002522,-0.003000,0.249982,0,0);}
.md4_c00428{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);}
.m11c_c00428{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{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);}
.m21_c00428{transform:matrix(0.211545,0.002539,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211545,0.002539,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211545,0.002539,-0.003000,0.249982,0,0);}
.me_c00428{transform:matrix(0.211587,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211587,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211587,0.002327,-0.002750,0.249985,0,0);}
.mcc_c00428{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);}
.m24_c00428{transform:matrix(0.212230,0.002547,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212230,0.002547,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212230,0.002547,-0.003000,0.249982,0,0);}
.m12f_c00428{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);}
.m23_c00428{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);}
.m42_c00428{transform:matrix(0.213214,0.003625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213214,0.003625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213214,0.003625,-0.004249,0.249964,0,0);}
.mc7_c00428{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);}
.m102_c00428{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);}
.mfa_c00428{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);}
.m6a_c00428{transform:matrix(0.214184,0.003641,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214184,0.003641,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214184,0.003641,-0.004249,0.249964,0,0);}
.m9e_c00428{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);}
.m60_c00428{transform:matrix(0.215399,0.003662,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215399,0.003662,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215399,0.003662,-0.004249,0.249964,0,0);}
.mcb_c00428{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);}
.m12_c00428{transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);}
.m9a_c00428{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);}
.m111_c00428{transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217689,0.002612,-0.003000,0.249982,0,0);}
.me6_c00428{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);}
.m3e_c00428{transform:matrix(0.219134,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219134,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219134,0.002630,-0.003000,0.249982,0,0);}
.m101_c00428{transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219585,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.219822,0.002418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219822,0.002418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219822,0.002418,-0.002750,0.249985,0,0);}
.me1_c00428{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);}
.m11d_c00428{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{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);}
.m49_c00428{transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);}
.mae_c00428{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);}
.m9f_c00428{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);}
.m61_c00428{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);}
.meb_c00428{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);}
.m129_c00428{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);}
.mbf_c00428{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);}
.m122_c00428{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);}
.m113_c00428{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.227223,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227223,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227223,0.003181,-0.003500,0.249976,0,0);}
.m58_c00428{transform:matrix(0.227462,0.003867,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227462,0.003867,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227462,0.003867,-0.004249,0.249964,0,0);}
.m9b_c00428{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);}
.m84_c00428{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);}
.m56_c00428{transform:matrix(0.229162,0.003896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229162,0.003896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229162,0.003896,-0.004249,0.249964,0,0);}
.m62_c00428{transform:matrix(0.229552,0.003902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229552,0.003902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229552,0.003902,-0.004249,0.249964,0,0);}
.mca_c00428{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.230153,0.002762,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230153,0.002762,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230153,0.002762,-0.003000,0.249982,0,0);}
.me9_c00428{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);}
.m11e_c00428{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);}
.m5a_c00428{transform:matrix(0.231212,0.003931,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231212,0.003931,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231212,0.003931,-0.004249,0.249964,0,0);}
.m55_c00428{transform:matrix(0.232671,0.003955,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232671,0.003955,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232671,0.003955,-0.004249,0.249964,0,0);}
.m12b_c00428{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);}
.ma9_c00428{transform:matrix(0.234407,0.003282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234407,0.003282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234407,0.003282,-0.003500,0.249976,0,0);}
.mc9_c00428{transform:matrix(0.236255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236255,0.000000,0.000000,0.250000,0,0);}
.m10f_c00428{transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);}
.m127_c00428{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);}
.m5d_c00428{transform:matrix(0.239175,0.004066,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239175,0.004066,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239175,0.004066,-0.004249,0.249964,0,0);}
.m98_c00428{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);}
.mf4_c00428{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);}
.m38_c00428{transform:matrix(0.240933,0.002891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240933,0.002891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240933,0.002891,-0.003000,0.249982,0,0);}
.m109_c00428{transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241340,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.243705,0.004143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243705,0.004143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243705,0.004143,-0.004249,0.249964,0,0);}
.mfc_c00428{transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);}
.m115_c00428{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.mce_c00428{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);}
.m36_c00428{transform:matrix(0.252302,0.003028,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252302,0.003028,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252302,0.003028,-0.003000,0.249982,0,0);}
.mf1_c00428{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.mc5_c00428{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);}
.m9d_c00428{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);}
.m116_c00428{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.mf9_c00428{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.med_c00428{transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);}
.mde_c00428{transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.267350,0.001604,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267350,0.001604,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267350,0.001604,-0.001500,0.249996,0,0);}
.mb_c00428{transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);}
.m74_c00428{transform:matrix(0.272066,0.004625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272066,0.004625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272066,0.004625,-0.004249,0.249964,0,0);}
.m53_c00428{transform:matrix(0.279860,0.004758,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279860,0.004758,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279860,0.004758,-0.004249,0.249964,0,0);}
.m63_c00428{transform:matrix(0.280309,0.004765,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280309,0.004765,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280309,0.004765,-0.004249,0.249964,0,0);}
.m5f_c00428{transform:matrix(0.281079,0.004778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281079,0.004778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281079,0.004778,-0.004249,0.249964,0,0);}
.m11f_c00428{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.me3_c00428{transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);}
.mf8_c00428{transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334835,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.336736,0.004041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.336736,0.004041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.336736,0.004041,-0.003000,0.249982,0,0);}
.me4_c00428{transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340300,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.340646,0.005791,-0.004249,0.249964,0,0);-ms-transform:matrix(0.340646,0.005791,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.340646,0.005791,-0.004249,0.249964,0,0);}
.md0_c00428{transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341240,0.000000,0.000000,0.250000,0,0);}
.mf2_c00428{transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342765,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.344405,0.004133,-0.003000,0.249982,0,0);-ms-transform:matrix(0.344405,0.004133,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.344405,0.004133,-0.003000,0.249982,0,0);}
.m40_c00428{transform:matrix(0.345990,0.005882,-0.004249,0.249964,0,0);-ms-transform:matrix(0.345990,0.005882,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.345990,0.005882,-0.004249,0.249964,0,0);}
.m4_c00428{transform:matrix(0.347599,0.002086,-0.001500,0.249996,0,0);-ms-transform:matrix(0.347599,0.002086,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.347599,0.002086,-0.001500,0.249996,0,0);}
.m125_c00428{transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.350234,0.005954,-0.004249,0.249964,0,0);-ms-transform:matrix(0.350234,0.005954,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.350234,0.005954,-0.004249,0.249964,0,0);}
.m123_c00428{transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353330,0.000000,0.000000,0.250000,0,0);}
.m7d_c00428{transform:matrix(0.354255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354255,0.000000,0.000000,0.250000,0,0);}
.m5e_c00428{transform:matrix(0.356773,0.006065,-0.004249,0.249964,0,0);-ms-transform:matrix(0.356773,0.006065,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.356773,0.006065,-0.004249,0.249964,0,0);}
.m130_c00428{transform:matrix(0.364220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364220,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.373543,0.002241,-0.001500,0.249996,0,0);-ms-transform:matrix(0.373543,0.002241,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.373543,0.002241,-0.001500,0.249996,0,0);}
.m3_c00428{transform:matrix(0.374808,0.002249,-0.001500,0.249996,0,0);-ms-transform:matrix(0.374808,0.002249,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.374808,0.002249,-0.001500,0.249996,0,0);}
.m124_c00428{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);}
.m7c_c00428{transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391170,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.395733,0.002374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.395733,0.002374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.395733,0.002374,-0.001500,0.249996,0,0);}
.m5_c00428{transform:matrix(0.403573,0.002421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.403573,0.002421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.403573,0.002421,-0.001500,0.249996,0,0);}
.m0_c00428{transform:matrix(0.422047,0.002532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.422047,0.002532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.422047,0.002532,-0.001500,0.249996,0,0);}
.ma1_c00428{transform:matrix(0.455815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455815,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.462782,0.002777,-0.001500,0.249996,0,0);-ms-transform:matrix(0.462782,0.002777,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.462782,0.002777,-0.001500,0.249996,0,0);}
.m1_c00428{transform:matrix(0.464807,0.002789,-0.001500,0.249996,0,0);-ms-transform:matrix(0.464807,0.002789,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.464807,0.002789,-0.001500,0.249996,0,0);}
.m12d_c00428{transform:matrix(0.496865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496865,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.542535,0.003255,-0.001500,0.249996,0,0);-ms-transform:matrix(0.542535,0.003255,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.542535,0.003255,-0.001500,0.249996,0,0);}
.m8_c00428{transform:matrix(0.590914,0.003545,-0.001500,0.249996,0,0);-ms-transform:matrix(0.590914,0.003545,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.590914,0.003545,-0.001500,0.249996,0,0);}
.mb9_c00428{transform:matrix(0.654814,0.004584,-0.001750,0.249994,0,0);-ms-transform:matrix(0.654814,0.004584,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.654814,0.004584,-0.001750,0.249994,0,0);}
.m6_c00428{transform:matrix(0.744322,0.004466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.744322,0.004466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.744322,0.004466,-0.001500,0.249996,0,0);}
.m12e_c00428{transform:matrix(1.018940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018940,0.000000,0.000000,0.250000,0,0);}
.mb8_c00428{transform:matrix(13.794737,0.096563,-0.001750,0.249994,0,0);-ms-transform:matrix(13.794737,0.096563,-0.001750,0.249994,0,0);-webkit-transform:matrix(13.794737,0.096563,-0.001750,0.249994,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;}
.fs12_c00428{font-size:21.000514px;}
.fs15_c00428{font-size:44.100000px;}
.fs19_c00428{font-size:46.200000px;}
.fs1c_c00428{font-size:47.250000px;}
.fs14_c00428{font-size:50.400000px;}
.fs17_c00428{font-size:51.450000px;}
.fs18_c00428{font-size:52.500000px;}
.fs13_c00428{font-size:53.550000px;}
.fs16_c00428{font-size:58.800000px;}
.fs1b_c00428{font-size:60.900000px;}
.fs0_c00428{font-size:65.101172px;}
.fs6_c00428{font-size:65.104687px;}
.fsf_c00428{font-size:66.150000px;}
.fs4_c00428{font-size:67.204838px;}
.fsd_c00428{font-size:68.250000px;}
.fs7_c00428{font-size:68.259861px;}
.fse_c00428{font-size:69.300000px;}
.fs9_c00428{font-size:69.310013px;}
.fs8_c00428{font-size:70.360165px;}
.fsb_c00428{font-size:71.400000px;}
.fs3_c00428{font-size:71.404320px;}
.fs5_c00428{font-size:71.405141px;}
.fs10_c00428{font-size:71.406997px;}
.fsc_c00428{font-size:73.500000px;}
.fs11_c00428{font-size:74.557306px;}
.fsa_c00428{font-size:75.610923px;}
.fs2_c00428{font-size:85.051531px;}
.fs1a_c00428{font-size:86.100000px;}
.fs1_c00428{font-size:107.101928px;}
.y0_c00428{bottom:0.000000px;}
.yc3_c00428{bottom:164.857500px;}
.yc1_c00428{bottom:165.937500px;}
.ycd_c00428{bottom:182.055000px;}
.yc0_c00428{bottom:183.883500px;}
.ycc_c00428{bottom:200.076000px;}
.ybf_c00428{bottom:202.614000px;}
.ycb_c00428{bottom:218.019000px;}
.ybe_c00428{bottom:219.600000px;}
.yca_c00428{bottom:235.839000px;}
.ybd_c00428{bottom:237.079500px;}
.yc9_c00428{bottom:253.530000px;}
.ybc_c00428{bottom:255.307500px;}
.yc8_c00428{bottom:271.233000px;}
.ybb_c00428{bottom:273.100500px;}
.yc7_c00428{bottom:289.071000px;}
.yba_c00428{bottom:290.761500px;}
.yc6_c00428{bottom:307.117500px;}
.yc2_c00428{bottom:308.497500px;}
.yb9_c00428{bottom:309.420000px;}
.yb8_c00428{bottom:334.326764px;}
.yb7_c00428{bottom:337.500000px;}
.yb6_c00428{bottom:364.220445px;}
.yb5_c00428{bottom:365.254146px;}
.yb4_c00428{bottom:365.647521px;}
.yb3_c00428{bottom:366.222492px;}
.yb2_c00428{bottom:366.587658px;}
.yb1_c00428{bottom:367.240446px;}
.yb0_c00428{bottom:367.703301px;}
.yaf_c00428{bottom:368.221527px;}
.yae_c00428{bottom:369.094608px;}
.yad_c00428{bottom:369.631437px;}
.yac_c00428{bottom:387.032595px;}
.yab_c00428{bottom:387.857664px;}
.yaa_c00428{bottom:388.416201px;}
.ya9_c00428{bottom:388.749660px;}
.ya8_c00428{bottom:389.433777px;}
.ya7_c00428{bottom:389.906340px;}
.ya6_c00428{bottom:390.348768px;}
.ya5_c00428{bottom:390.885423px;}
.ya4_c00428{bottom:391.091559px;}
.ya3_c00428{bottom:391.959363px;}
.ya2_c00428{bottom:392.583000px;}
.ya1_c00428{bottom:411.594000px;}
.ya0_c00428{bottom:433.515000px;}
.y9f_c00428{bottom:434.161500px;}
.y9e_c00428{bottom:434.616000px;}
.y9d_c00428{bottom:435.544500px;}
.y9c_c00428{bottom:436.072500px;}
.y9b_c00428{bottom:437.244000px;}
.y9a_c00428{bottom:437.940000px;}
.y99_c00428{bottom:454.479000px;}
.y98_c00428{bottom:454.785000px;}
.y97_c00428{bottom:455.638500px;}
.y96_c00428{bottom:456.183000px;}
.y95_c00428{bottom:456.900000px;}
.y94_c00428{bottom:457.957500px;}
.y93_c00428{bottom:458.496000px;}
.y92_c00428{bottom:459.655500px;}
.y91_c00428{bottom:460.035000px;}
.y90_c00428{bottom:460.891500px;}
.y8f_c00428{bottom:478.027500px;}
.y8e_c00428{bottom:478.713000px;}
.y8d_c00428{bottom:479.419500px;}
.y8c_c00428{bottom:480.367500px;}
.y8b_c00428{bottom:480.993000px;}
.y8a_c00428{bottom:481.656000px;}
.y89_c00428{bottom:482.205000px;}
.y88_c00428{bottom:483.027000px;}
.y87_c00428{bottom:483.843000px;}
.y86_c00428{bottom:500.508000px;}
.y85_c00428{bottom:501.246000px;}
.y84_c00428{bottom:502.137000px;}
.y83_c00428{bottom:502.915500px;}
.y82_c00428{bottom:503.532000px;}
.y81_c00428{bottom:504.193500px;}
.y80_c00428{bottom:504.573000px;}
.y7f_c00428{bottom:505.773000px;}
.y7e_c00428{bottom:506.254500px;}
.y7d_c00428{bottom:524.859000px;}
.y7c_c00428{bottom:547.079630px;}
.y7b_c00428{bottom:547.766347px;}
.y7a_c00428{bottom:548.362114px;}
.y79_c00428{bottom:548.984355px;}
.y78_c00428{bottom:549.446985px;}
.y77_c00428{bottom:550.085728px;}
.y76_c00428{bottom:550.501021px;}
.y75_c00428{bottom:551.054475px;}
.y74_c00428{bottom:570.350960px;}
.y73_c00428{bottom:571.278918px;}
.y72_c00428{bottom:571.801374px;}
.y71_c00428{bottom:572.545332px;}
.y70_c00428{bottom:573.213986px;}
.y6f_c00428{bottom:573.512445px;}
.y6e_c00428{bottom:574.820334px;}
.y6d_c00428{bottom:591.596634px;}
.y6c_c00428{bottom:592.752549px;}
.y6b_c00428{bottom:594.013983px;}
.y6a_c00428{bottom:594.661147px;}
.y69_c00428{bottom:595.616505px;}
.y68_c00428{bottom:596.202470px;}
.y67_c00428{bottom:597.232032px;}
.yc5_c00428{bottom:613.351500px;}
.y66_c00428{bottom:616.020220px;}
.y65_c00428{bottom:616.879886px;}
.y64_c00428{bottom:617.390312px;}
.y63_c00428{bottom:618.171347px;}
.y62_c00428{bottom:618.572870px;}
.y61_c00428{bottom:619.237500px;}
.y60_c00428{bottom:619.643690px;}
.y5f_c00428{bottom:634.943875px;}
.y5e_c00428{bottom:636.231524px;}
.y5d_c00428{bottom:636.644802px;}
.y5c_c00428{bottom:637.296480px;}
.y5b_c00428{bottom:638.049520px;}
.y5a_c00428{bottom:638.511708px;}
.y59_c00428{bottom:639.140920px;}
.y58_c00428{bottom:639.490882px;}
.y57_c00428{bottom:640.040892px;}
.y56_c00428{bottom:640.601254px;}
.y55_c00428{bottom:641.001222px;}
.y54_c00428{bottom:642.056998px;}
.y53_c00428{bottom:661.283440px;}
.y52_c00428{bottom:661.747031px;}
.y51_c00428{bottom:662.325447px;}
.y50_c00428{bottom:663.050641px;}
.y4f_c00428{bottom:663.313648px;}
.y4e_c00428{bottom:664.106673px;}
.y4d_c00428{bottom:664.460128px;}
.y4c_c00428{bottom:664.900794px;}
.y4b_c00428{bottom:665.551478px;}
.y4a_c00428{bottom:666.089910px;}
.y49_c00428{bottom:682.408680px;}
.y48_c00428{bottom:683.017442px;}
.y47_c00428{bottom:683.356897px;}
.y46_c00428{bottom:684.380544px;}
.y45_c00428{bottom:685.046400px;}
.y44_c00428{bottom:686.134306px;}
.y43_c00428{bottom:687.254419px;}
.y42_c00428{bottom:687.938457px;}
.y41_c00428{bottom:688.774500px;}
.y40_c00428{bottom:705.861900px;}
.y3f_c00428{bottom:707.069664px;}
.y3e_c00428{bottom:707.652126px;}
.y3d_c00428{bottom:708.427110px;}
.y3c_c00428{bottom:708.731796px;}
.y3b_c00428{bottom:709.428984px;}
.y3a_c00428{bottom:710.137200px;}
.y39_c00428{bottom:711.178788px;}
.y38_c00428{bottom:728.268768px;}
.y37_c00428{bottom:728.911938px;}
.y36_c00428{bottom:729.489930px;}
.y35_c00428{bottom:730.113534px;}
.y34_c00428{bottom:730.564110px;}
.y33_c00428{bottom:731.142876px;}
.y32_c00428{bottom:732.382032px;}
.y31_c00428{bottom:733.107276px;}
.y30_c00428{bottom:733.588890px;}
.y2b_c00428{bottom:754.538130px;}
.y2d_c00428{bottom:754.538178px;}
.y2f_c00428{bottom:754.538250px;}
.y2c_c00428{bottom:754.538622px;}
.y2e_c00428{bottom:754.538814px;}
.y2a_c00428{bottom:774.358218px;}
.y29_c00428{bottom:774.381636px;}
.y28_c00428{bottom:775.251180px;}
.y27_c00428{bottom:775.730124px;}
.y26_c00428{bottom:776.121552px;}
.y25_c00428{bottom:776.831724px;}
.y24_c00428{bottom:777.262734px;}
.y23_c00428{bottom:778.160232px;}
.y22_c00428{bottom:778.568598px;}
.y21_c00428{bottom:778.680000px;}
.y20_c00428{bottom:799.357104px;}
.y1f_c00428{bottom:799.357658px;}
.y1e_c00428{bottom:799.358031px;}
.y1d_c00428{bottom:799.358268px;}
.y1c_c00428{bottom:799.358595px;}
.y1a_c00428{bottom:799.359012px;}
.y1b_c00428{bottom:799.359029px;}
.y18_c00428{bottom:799.359323px;}
.y19_c00428{bottom:799.359339px;}
.y17_c00428{bottom:819.705339px;}
.y16_c00428{bottom:820.192386px;}
.y15_c00428{bottom:820.765728px;}
.y14_c00428{bottom:821.059313px;}
.y13_c00428{bottom:821.772591px;}
.y12_c00428{bottom:822.051986px;}
.y11_c00428{bottom:822.625162px;}
.y10_c00428{bottom:822.818196px;}
.yf_c00428{bottom:823.346790px;}
.ye_c00428{bottom:823.771500px;}
.yc4_c00428{bottom:860.082000px;}
.yd_c00428{bottom:865.989609px;}
.yc_c00428{bottom:866.802774px;}
.yb_c00428{bottom:869.401212px;}
.ya_c00428{bottom:904.253178px;}
.y9_c00428{bottom:905.913030px;}
.y8_c00428{bottom:907.132779px;}
.y7_c00428{bottom:908.011755px;}
.y6_c00428{bottom:924.163425px;}
.y5_c00428{bottom:924.500421px;}
.y4_c00428{bottom:924.906996px;}
.y3_c00428{bottom:925.282962px;}
.y2_c00428{bottom:925.976322px;}
.y1_c00428{bottom:926.370000px;}
.h14_c00428{height:21.000514px;}
.h17_c00428{height:44.100000px;}
.h1b_c00428{height:46.200000px;}
.h1e_c00428{height:47.250000px;}
.h16_c00428{height:50.400000px;}
.h19_c00428{height:51.450000px;}
.h1a_c00428{height:52.500000px;}
.h15_c00428{height:53.550000px;}
.h18_c00428{height:58.800000px;}
.h1d_c00428{height:60.900000px;}
.h2_c00428{height:65.101172px;}
.h8_c00428{height:65.104687px;}
.h11_c00428{height:66.150000px;}
.h6_c00428{height:67.204838px;}
.hf_c00428{height:68.250000px;}
.h9_c00428{height:68.259861px;}
.h10_c00428{height:69.300000px;}
.hb_c00428{height:69.310013px;}
.ha_c00428{height:70.360165px;}
.hd_c00428{height:71.400000px;}
.h5_c00428{height:71.404320px;}
.h7_c00428{height:71.405141px;}
.h12_c00428{height:71.406997px;}
.he_c00428{height:73.500000px;}
.h13_c00428{height:74.557306px;}
.hc_c00428{height:75.610923px;}
.h4_c00428{height:85.051531px;}
.h1c_c00428{height:86.100000px;}
.h3_c00428{height:107.101928px;}
.h1_c00428{height:1005.000000px;}
.h0_c00428{height:1005.150000px;}
.w0_c00428{width:715.200000px;}
.w1_c00428{width:715.500000px;}
.x0_c00428{left:0.000000px;}
.x7_c00428{left:74.251395px;}
.x77_c00428{left:98.550000px;}
.x84_c00428{left:99.630000px;}
.x1_c00428{left:100.905000px;}
.x75_c00428{left:104.458500px;}
.x81_c00428{left:117.990000px;}
.x35_c00428{left:119.358000px;}
.x85_c00428{left:122.310000px;}
.x1f_c00428{left:124.467000px;}
.x87_c00428{left:126.090000px;}
.x89_c00428{left:132.840000px;}
.xe_c00428{left:134.044500px;}
.x41_c00428{left:135.598224px;}
.x16_c00428{left:137.428908px;}
.x80_c00428{left:139.320000px;}
.x8b_c00428{left:144.180000px;}
.x8a_c00428{left:146.340000px;}
.x7c_c00428{left:151.740000px;}
.x82_c00428{left:154.170000px;}
.x78_c00428{left:156.600000px;}
.x4a_c00428{left:160.188009px;}
.x5b_c00428{left:163.117500px;}
.x17_c00428{left:164.430675px;}
.x2_c00428{left:166.518000px;}
.x20_c00428{left:167.781000px;}
.x6f_c00428{left:168.838734px;}
.x54_c00428{left:170.433287px;}
.x8_c00428{left:171.995640px;}
.x88_c00428{left:176.040000px;}
.x68_c00428{left:178.263000px;}
.x86_c00428{left:179.280000px;}
.x5f_c00428{left:180.667500px;}
.x7d_c00428{left:184.680000px;}
.x79_c00428{left:188.730000px;}
.xb_c00428{left:189.864402px;}
.x30_c00428{left:195.804876px;}
.x42_c00428{left:197.702724px;}
.x63_c00428{left:199.848000px;}
.x18_c00428{left:201.692180px;}
.x3b_c00428{left:204.194775px;}
.x7e_c00428{left:206.010000px;}
.x36_c00428{left:208.774500px;}
.x28_c00428{left:213.846714px;}
.x8c_c00428{left:218.160000px;}
.x51_c00428{left:219.541484px;}
.xf_c00428{left:220.708500px;}
.x70_c00428{left:223.378701px;}
.x4b_c00428{left:226.874657px;}
.x19_c00428{left:228.693946px;}
.x3c_c00428{left:230.116275px;}
.x55_c00428{left:236.318909px;}
.x10_c00428{left:238.257000px;}
.x21_c00428{left:242.572500px;}
.x83_c00428{left:247.320000px;}
.x1a_c00428{left:251.645218px;}
.x43_c00428{left:254.192724px;}
.x71_c00428{left:255.786798px;}
.x60_c00428{left:256.831500px;}
.x29_c00428{left:261.640590px;}
.x8d_c00428{left:262.980000px;}
.x56_c00428{left:265.209393px;}
.x59_c00428{left:270.270000px;}
.x7a_c00428{left:272.700000px;}
.x37_c00428{left:274.663500px;}
.x4c_c00428{left:275.730498px;}
.x6a_c00428{left:277.023000px;}
.x22_c00428{left:278.490000px;}
.x3_c00428{left:282.078000px;}
.x69_c00428{left:284.394000px;}
.x44_c00428{left:286.546224px;}
.x5c_c00428{left:287.607000px;}
.x64_c00428{left:289.197000px;}
.x11_c00428{left:290.364000px;}
.x52_c00428{left:293.898459px;}
.x6b_c00428{left:295.221000px;}
.x31_c00428{left:296.306328px;}
.x2a_c00428{left:298.092846px;}
.x1b_c00428{left:302.408356px;}
.x57_c00428{left:304.106556px;}
.x9_c00428{left:307.534701px;}
.x7f_c00428{left:309.150000px;}
.x3d_c00428{left:313.027275px;}
.x7b_c00428{left:314.550000px;}
.x12_c00428{left:315.763500px;}
.x53_c00428{left:321.365516px;}
.x4e_c00428{left:323.807606px;}
.x72_c00428{left:325.509345px;}
.x6c_c00428{left:326.823000px;}
.x61_c00428{left:328.372500px;}
.x5a_c00428{left:333.720000px;}
.x8e_c00428{left:334.800000px;}
.x2b_c00428{left:335.895282px;}
.x23_c00428{left:337.671000px;}
.x32_c00428{left:341.885592px;}
.x4_c00428{left:344.739000px;}
.xa8_c00428{left:346.950000px;}
.x73_c00428{left:348.377715px;}
.x92_c00428{left:350.190000px;}
.xad_c00428{left:352.890000px;}
.x1c_c00428{left:353.981594px;}
.x3e_c00428{left:355.685775px;}
.x4d_c00428{left:361.354952px;}
.x2c_c00428{left:365.999562px;}
.xa9_c00428{left:367.470000px;}
.x24_c00428{left:370.290000px;}
.x45_c00428{left:371.332224px;}
.x33_c00428{left:376.172040px;}
.x1d_c00428{left:377.472931px;}
.x13_c00428{left:380.607000px;}
.x65_c00428{left:382.614000px;}
.x58_c00428{left:384.312933px;}
.xa2_c00428{left:386.640000px;}
.x3f_c00428{left:389.710275px;}
.x97_c00428{left:390.960000px;}
.xae_c00428{left:396.090000px;}
.x4f_c00428{left:398.009606px;}
.x1e_c00428{left:399.344071px;}
.x9a_c00428{left:404.190000px;}
.xc_c00428{left:406.429608px;}
.x2d_c00428{left:407.590068px;}
.x74_c00428{left:408.865014px;}
.x25_c00428{left:410.202000px;}
.x66_c00428{left:411.234000px;}
.x5_c00428{left:412.501500px;}
.x5d_c00428{left:414.553500px;}
.x46_c00428{left:415.628724px;}
.x40_c00428{left:416.980275px;}
.x98_c00428{left:418.230000px;}
.x62_c00428{left:420.235500px;}
.x93_c00428{left:421.470000px;}
.xa3_c00428{left:424.440000px;}
.x9b_c00428{left:425.520000px;}
.xaa_c00428{left:431.460000px;}
.x6d_c00428{left:433.261500px;}
.x38_c00428{left:438.040500px;}
.xa4_c00428{left:440.370000px;}
.xaf_c00428{left:444.690000px;}
.x2e_c00428{left:446.129682px;}
.x34_c00428{left:447.189774px;}
.x9e_c00428{left:448.740000px;}
.x90_c00428{left:452.520000px;}
.x47_c00428{left:453.962724px;}
.x5e_c00428{left:455.527500px;}
.x39_c00428{left:458.008500px;}
.x14_c00428{left:459.418500px;}
.x50_c00428{left:466.004606px;}
.x6_c00428{left:468.667500px;}
.x67_c00428{left:472.219500px;}
.xd_c00428{left:474.204669px;}
.xb0_c00428{left:476.010000px;}
.x48_c00428{left:478.273224px;}
.x9f_c00428{left:479.520000px;}
.x26_c00428{left:482.664000px;}
.x27_c00428{left:484.615500px;}
.xa5_c00428{left:485.730000px;}
.x99_c00428{left:487.080000px;}
.x2f_c00428{left:488.975634px;}
.xb1_c00428{left:490.860000px;}
.xa_c00428{left:491.923380px;}
.x3a_c00428{left:493.818000px;}
.xab_c00428{left:498.690000px;}
.xa0_c00428{left:500.310000px;}
.x15_c00428{left:503.695500px;}
.x94_c00428{left:510.300000px;}
.xa6_c00428{left:513.000000px;}
.x9c_c00428{left:515.700000px;}
.xac_c00428{left:526.770000px;}
.xa1_c00428{left:529.200000px;}
.x6e_c00428{left:532.090500px;}
.x9d_c00428{left:534.870000px;}
.x8f_c00428{left:541.080000px;}
.x95_c00428{left:552.150000px;}
.x49_c00428{left:554.017224px;}
.x91_c00428{left:556.470000px;}
.x76_c00428{left:557.778000px;}
.xa7_c00428{left:559.710000px;}
.x96_c00428{left:567.810000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fs12_c00428{font-size:18.667124pt;}
.fs15_c00428{font-size:39.200000pt;}
.fs19_c00428{font-size:41.066667pt;}
.fs1c_c00428{font-size:42.000000pt;}
.fs14_c00428{font-size:44.800000pt;}
.fs17_c00428{font-size:45.733333pt;}
.fs18_c00428{font-size:46.666667pt;}
.fs13_c00428{font-size:47.600000pt;}
.fs16_c00428{font-size:52.266667pt;}
.fs1b_c00428{font-size:54.133333pt;}
.fs0_c00428{font-size:57.867708pt;}
.fs6_c00428{font-size:57.870833pt;}
.fsf_c00428{font-size:58.800000pt;}
.fs4_c00428{font-size:59.737634pt;}
.fsd_c00428{font-size:60.666667pt;}
.fs7_c00428{font-size:60.675432pt;}
.fse_c00428{font-size:61.600000pt;}
.fs9_c00428{font-size:61.608901pt;}
.fs8_c00428{font-size:62.542369pt;}
.fsb_c00428{font-size:63.466667pt;}
.fs3_c00428{font-size:63.470506pt;}
.fs5_c00428{font-size:63.471236pt;}
.fs10_c00428{font-size:63.472886pt;}
.fsc_c00428{font-size:65.333333pt;}
.fs11_c00428{font-size:66.273160pt;}
.fsa_c00428{font-size:67.209710pt;}
.fs2_c00428{font-size:75.601361pt;}
.fs1a_c00428{font-size:76.533333pt;}
.fs1_c00428{font-size:95.201714pt;}
.y0_c00428{bottom:0.000000pt;}
.yc3_c00428{bottom:146.540000pt;}
.yc1_c00428{bottom:147.500000pt;}
.ycd_c00428{bottom:161.826667pt;}
.yc0_c00428{bottom:163.452000pt;}
.ycc_c00428{bottom:177.845333pt;}
.ybf_c00428{bottom:180.101333pt;}
.ycb_c00428{bottom:193.794667pt;}
.ybe_c00428{bottom:195.200000pt;}
.yca_c00428{bottom:209.634667pt;}
.ybd_c00428{bottom:210.737333pt;}
.yc9_c00428{bottom:225.360000pt;}
.ybc_c00428{bottom:226.940000pt;}
.yc8_c00428{bottom:241.096000pt;}
.ybb_c00428{bottom:242.756000pt;}
.yc7_c00428{bottom:256.952000pt;}
.yba_c00428{bottom:258.454667pt;}
.yc6_c00428{bottom:272.993333pt;}
.yc2_c00428{bottom:274.220000pt;}
.yb9_c00428{bottom:275.040000pt;}
.yb8_c00428{bottom:297.179345pt;}
.yb7_c00428{bottom:300.000000pt;}
.yb6_c00428{bottom:323.751507pt;}
.yb5_c00428{bottom:324.670352pt;}
.yb4_c00428{bottom:325.020019pt;}
.yb3_c00428{bottom:325.531104pt;}
.yb2_c00428{bottom:325.855696pt;}
.yb1_c00428{bottom:326.435952pt;}
.yb0_c00428{bottom:326.847379pt;}
.yaf_c00428{bottom:327.308024pt;}
.yae_c00428{bottom:328.084096pt;}
.yad_c00428{bottom:328.561277pt;}
.yac_c00428{bottom:344.028973pt;}
.yab_c00428{bottom:344.762368pt;}
.yaa_c00428{bottom:345.258845pt;}
.ya9_c00428{bottom:345.555253pt;}
.ya8_c00428{bottom:346.163357pt;}
.ya7_c00428{bottom:346.583413pt;}
.ya6_c00428{bottom:346.976683pt;}
.ya5_c00428{bottom:347.453709pt;}
.ya4_c00428{bottom:347.636941pt;}
.ya3_c00428{bottom:348.408323pt;}
.ya2_c00428{bottom:348.962667pt;}
.ya1_c00428{bottom:365.861333pt;}
.ya0_c00428{bottom:385.346667pt;}
.y9f_c00428{bottom:385.921333pt;}
.y9e_c00428{bottom:386.325333pt;}
.y9d_c00428{bottom:387.150667pt;}
.y9c_c00428{bottom:387.620000pt;}
.y9b_c00428{bottom:388.661333pt;}
.y9a_c00428{bottom:389.280000pt;}
.y99_c00428{bottom:403.981333pt;}
.y98_c00428{bottom:404.253333pt;}
.y97_c00428{bottom:405.012000pt;}
.y96_c00428{bottom:405.496000pt;}
.y95_c00428{bottom:406.133333pt;}
.y94_c00428{bottom:407.073333pt;}
.y93_c00428{bottom:407.552000pt;}
.y92_c00428{bottom:408.582667pt;}
.y91_c00428{bottom:408.920000pt;}
.y90_c00428{bottom:409.681333pt;}
.y8f_c00428{bottom:424.913333pt;}
.y8e_c00428{bottom:425.522667pt;}
.y8d_c00428{bottom:426.150667pt;}
.y8c_c00428{bottom:426.993333pt;}
.y8b_c00428{bottom:427.549333pt;}
.y8a_c00428{bottom:428.138667pt;}
.y89_c00428{bottom:428.626667pt;}
.y88_c00428{bottom:429.357333pt;}
.y87_c00428{bottom:430.082667pt;}
.y86_c00428{bottom:444.896000pt;}
.y85_c00428{bottom:445.552000pt;}
.y84_c00428{bottom:446.344000pt;}
.y83_c00428{bottom:447.036000pt;}
.y82_c00428{bottom:447.584000pt;}
.y81_c00428{bottom:448.172000pt;}
.y80_c00428{bottom:448.509333pt;}
.y7f_c00428{bottom:449.576000pt;}
.y7e_c00428{bottom:450.004000pt;}
.y7d_c00428{bottom:466.541333pt;}
.y7c_c00428{bottom:486.293004pt;}
.y7b_c00428{bottom:486.903420pt;}
.y7a_c00428{bottom:487.432991pt;}
.y79_c00428{bottom:487.986093pt;}
.y78_c00428{bottom:488.397320pt;}
.y77_c00428{bottom:488.965092pt;}
.y76_c00428{bottom:489.334241pt;}
.y75_c00428{bottom:489.826200pt;}
.y74_c00428{bottom:506.978631pt;}
.y73_c00428{bottom:507.803483pt;}
.y72_c00428{bottom:508.267888pt;}
.y71_c00428{bottom:508.929184pt;}
.y70_c00428{bottom:509.523543pt;}
.y6f_c00428{bottom:509.788840pt;}
.y6e_c00428{bottom:510.951408pt;}
.y6d_c00428{bottom:525.863675pt;}
.y6c_c00428{bottom:526.891155pt;}
.y6b_c00428{bottom:528.012429pt;}
.y6a_c00428{bottom:528.587687pt;}
.y69_c00428{bottom:529.436893pt;}
.y68_c00428{bottom:529.957751pt;}
.y67_c00428{bottom:530.872917pt;}
.yc5_c00428{bottom:545.201333pt;}
.y66_c00428{bottom:547.573529pt;}
.y65_c00428{bottom:548.337676pt;}
.y64_c00428{bottom:548.791388pt;}
.y63_c00428{bottom:549.485641pt;}
.y62_c00428{bottom:549.842551pt;}
.y61_c00428{bottom:550.433333pt;}
.y60_c00428{bottom:550.794391pt;}
.y5f_c00428{bottom:564.394556pt;}
.y5e_c00428{bottom:565.539132pt;}
.y5d_c00428{bottom:565.906491pt;}
.y5c_c00428{bottom:566.485760pt;}
.y5b_c00428{bottom:567.155129pt;}
.y5a_c00428{bottom:567.565963pt;}
.y59_c00428{bottom:568.125263pt;}
.y58_c00428{bottom:568.436340pt;}
.y57_c00428{bottom:568.925237pt;}
.y56_c00428{bottom:569.423337pt;}
.y55_c00428{bottom:569.778864pt;}
.y54_c00428{bottom:570.717332pt;}
.y53_c00428{bottom:587.807503pt;}
.y52_c00428{bottom:588.219583pt;}
.y51_c00428{bottom:588.733731pt;}
.y50_c00428{bottom:589.378348pt;}
.y4f_c00428{bottom:589.612132pt;}
.y4e_c00428{bottom:590.317043pt;}
.y4d_c00428{bottom:590.631225pt;}
.y4c_c00428{bottom:591.022928pt;}
.y4b_c00428{bottom:591.601313pt;}
.y4a_c00428{bottom:592.079920pt;}
.y49_c00428{bottom:606.585493pt;}
.y48_c00428{bottom:607.126615pt;}
.y47_c00428{bottom:607.428353pt;}
.y46_c00428{bottom:608.338261pt;}
.y45_c00428{bottom:608.930133pt;}
.y44_c00428{bottom:609.897161pt;}
.y43_c00428{bottom:610.892817pt;}
.y42_c00428{bottom:611.500851pt;}
.y41_c00428{bottom:612.244000pt;}
.y40_c00428{bottom:627.432800pt;}
.y3f_c00428{bottom:628.506368pt;}
.y3e_c00428{bottom:629.024112pt;}
.y3d_c00428{bottom:629.712987pt;}
.y3c_c00428{bottom:629.983819pt;}
.y3b_c00428{bottom:630.603541pt;}
.y3a_c00428{bottom:631.233067pt;}
.y39_c00428{bottom:632.158923pt;}
.y38_c00428{bottom:647.350016pt;}
.y37_c00428{bottom:647.921723pt;}
.y36_c00428{bottom:648.435493pt;}
.y35_c00428{bottom:648.989808pt;}
.y34_c00428{bottom:649.390320pt;}
.y33_c00428{bottom:649.904779pt;}
.y32_c00428{bottom:651.006251pt;}
.y31_c00428{bottom:651.650912pt;}
.y30_c00428{bottom:652.079013pt;}
.y2b_c00428{bottom:670.700560pt;}
.y2d_c00428{bottom:670.700603pt;}
.y2f_c00428{bottom:670.700667pt;}
.y2c_c00428{bottom:670.700997pt;}
.y2e_c00428{bottom:670.701168pt;}
.y2a_c00428{bottom:688.318416pt;}
.y29_c00428{bottom:688.339232pt;}
.y28_c00428{bottom:689.112160pt;}
.y27_c00428{bottom:689.537888pt;}
.y26_c00428{bottom:689.885824pt;}
.y25_c00428{bottom:690.517088pt;}
.y24_c00428{bottom:690.900208pt;}
.y23_c00428{bottom:691.697984pt;}
.y22_c00428{bottom:692.060976pt;}
.y21_c00428{bottom:692.160000pt;}
.y20_c00428{bottom:710.539648pt;}
.y1f_c00428{bottom:710.540140pt;}
.y1e_c00428{bottom:710.540472pt;}
.y1d_c00428{bottom:710.540683pt;}
.y1c_c00428{bottom:710.540973pt;}
.y1a_c00428{bottom:710.541344pt;}
.y1b_c00428{bottom:710.541359pt;}
.y18_c00428{bottom:710.541620pt;}
.y19_c00428{bottom:710.541635pt;}
.y17_c00428{bottom:728.626968pt;}
.y16_c00428{bottom:729.059899pt;}
.y15_c00428{bottom:729.569536pt;}
.y14_c00428{bottom:729.830500pt;}
.y13_c00428{bottom:730.464525pt;}
.y12_c00428{bottom:730.712876pt;}
.y11_c00428{bottom:731.222367pt;}
.y10_c00428{bottom:731.393952pt;}
.yf_c00428{bottom:731.863813pt;}
.ye_c00428{bottom:732.241333pt;}
.yc4_c00428{bottom:764.517333pt;}
.yd_c00428{bottom:769.768541pt;}
.yc_c00428{bottom:770.491355pt;}
.yb_c00428{bottom:772.801077pt;}
.ya_c00428{bottom:803.780603pt;}
.y9_c00428{bottom:805.256027pt;}
.y8_c00428{bottom:806.340248pt;}
.y7_c00428{bottom:807.121560pt;}
.y6_c00428{bottom:821.478600pt;}
.y5_c00428{bottom:821.778152pt;}
.y4_c00428{bottom:822.139552pt;}
.y3_c00428{bottom:822.473744pt;}
.y2_c00428{bottom:823.090064pt;}
.y1_c00428{bottom:823.440000pt;}
.h14_c00428{height:18.667124pt;}
.h17_c00428{height:39.200000pt;}
.h1b_c00428{height:41.066667pt;}
.h1e_c00428{height:42.000000pt;}
.h16_c00428{height:44.800000pt;}
.h19_c00428{height:45.733333pt;}
.h1a_c00428{height:46.666667pt;}
.h15_c00428{height:47.600000pt;}
.h18_c00428{height:52.266667pt;}
.h1d_c00428{height:54.133333pt;}
.h2_c00428{height:57.867708pt;}
.h8_c00428{height:57.870833pt;}
.h11_c00428{height:58.800000pt;}
.h6_c00428{height:59.737634pt;}
.hf_c00428{height:60.666667pt;}
.h9_c00428{height:60.675432pt;}
.h10_c00428{height:61.600000pt;}
.hb_c00428{height:61.608901pt;}
.ha_c00428{height:62.542369pt;}
.hd_c00428{height:63.466667pt;}
.h5_c00428{height:63.470506pt;}
.h7_c00428{height:63.471236pt;}
.h12_c00428{height:63.472886pt;}
.he_c00428{height:65.333333pt;}
.h13_c00428{height:66.273160pt;}
.hc_c00428{height:67.209710pt;}
.h4_c00428{height:75.601361pt;}
.h1c_c00428{height:76.533333pt;}
.h3_c00428{height:95.201714pt;}
.h1_c00428{height:893.333333pt;}
.h0_c00428{height:893.466667pt;}
.w0_c00428{width:635.733333pt;}
.w1_c00428{width:636.000000pt;}
.x0_c00428{left:0.000000pt;}
.x7_c00428{left:66.001240pt;}
.x77_c00428{left:87.600000pt;}
.x84_c00428{left:88.560000pt;}
.x1_c00428{left:89.693333pt;}
.x75_c00428{left:92.852000pt;}
.x81_c00428{left:104.880000pt;}
.x35_c00428{left:106.096000pt;}
.x85_c00428{left:108.720000pt;}
.x1f_c00428{left:110.637333pt;}
.x87_c00428{left:112.080000pt;}
.x89_c00428{left:118.080000pt;}
.xe_c00428{left:119.150667pt;}
.x41_c00428{left:120.531755pt;}
.x16_c00428{left:122.159029pt;}
.x80_c00428{left:123.840000pt;}
.x8b_c00428{left:128.160000pt;}
.x8a_c00428{left:130.080000pt;}
.x7c_c00428{left:134.880000pt;}
.x82_c00428{left:137.040000pt;}
.x78_c00428{left:139.200000pt;}
.x4a_c00428{left:142.389341pt;}
.x5b_c00428{left:144.993333pt;}
.x17_c00428{left:146.160600pt;}
.x2_c00428{left:148.016000pt;}
.x20_c00428{left:149.138667pt;}
.x6f_c00428{left:150.078875pt;}
.x54_c00428{left:151.496255pt;}
.x8_c00428{left:152.885013pt;}
.x88_c00428{left:156.480000pt;}
.x68_c00428{left:158.456000pt;}
.x86_c00428{left:159.360000pt;}
.x5f_c00428{left:160.593333pt;}
.x7d_c00428{left:164.160000pt;}
.x79_c00428{left:167.760000pt;}
.xb_c00428{left:168.768357pt;}
.x30_c00428{left:174.048779pt;}
.x42_c00428{left:175.735755pt;}
.x63_c00428{left:177.642667pt;}
.x18_c00428{left:179.281937pt;}
.x3b_c00428{left:181.506467pt;}
.x7e_c00428{left:183.120000pt;}
.x36_c00428{left:185.577333pt;}
.x28_c00428{left:190.085968pt;}
.x8c_c00428{left:193.920000pt;}
.x51_c00428{left:195.147985pt;}
.xf_c00428{left:196.185333pt;}
.x70_c00428{left:198.558845pt;}
.x4b_c00428{left:201.666361pt;}
.x19_c00428{left:203.283508pt;}
.x3c_c00428{left:204.547800pt;}
.x55_c00428{left:210.061252pt;}
.x10_c00428{left:211.784000pt;}
.x21_c00428{left:215.620000pt;}
.x83_c00428{left:219.840000pt;}
.x1a_c00428{left:223.684639pt;}
.x43_c00428{left:225.949088pt;}
.x71_c00428{left:227.366043pt;}
.x60_c00428{left:228.294667pt;}
.x29_c00428{left:232.569413pt;}
.x8d_c00428{left:233.760000pt;}
.x56_c00428{left:235.741683pt;}
.x59_c00428{left:240.240000pt;}
.x7a_c00428{left:242.400000pt;}
.x37_c00428{left:244.145333pt;}
.x4c_c00428{left:245.093776pt;}
.x6a_c00428{left:246.242667pt;}
.x22_c00428{left:247.546667pt;}
.x3_c00428{left:250.736000pt;}
.x69_c00428{left:252.794667pt;}
.x44_c00428{left:254.707755pt;}
.x5c_c00428{left:255.650667pt;}
.x64_c00428{left:257.064000pt;}
.x11_c00428{left:258.101333pt;}
.x52_c00428{left:261.243075pt;}
.x6b_c00428{left:262.418667pt;}
.x31_c00428{left:263.383403pt;}
.x2a_c00428{left:264.971419pt;}
.x1b_c00428{left:268.807428pt;}
.x57_c00428{left:270.316939pt;}
.x9_c00428{left:273.364179pt;}
.x7f_c00428{left:274.800000pt;}
.x3d_c00428{left:278.246467pt;}
.x7b_c00428{left:279.600000pt;}
.x12_c00428{left:280.678667pt;}
.x53_c00428{left:285.658236pt;}
.x4e_c00428{left:287.828983pt;}
.x72_c00428{left:289.341640pt;}
.x6c_c00428{left:290.509333pt;}
.x61_c00428{left:291.886667pt;}
.x5a_c00428{left:296.640000pt;}
.x8e_c00428{left:297.600000pt;}
.x2b_c00428{left:298.573584pt;}
.x23_c00428{left:300.152000pt;}
.x32_c00428{left:303.898304pt;}
.x4_c00428{left:306.434667pt;}
.xa8_c00428{left:308.400000pt;}
.x73_c00428{left:309.669080pt;}
.x92_c00428{left:311.280000pt;}
.xad_c00428{left:313.680000pt;}
.x1c_c00428{left:314.650305pt;}
.x3e_c00428{left:316.165133pt;}
.x4d_c00428{left:321.204401pt;}
.x2c_c00428{left:325.332944pt;}
.xa9_c00428{left:326.640000pt;}
.x24_c00428{left:329.146667pt;}
.x45_c00428{left:330.073088pt;}
.x33_c00428{left:334.375147pt;}
.x1d_c00428{left:335.531495pt;}
.x13_c00428{left:338.317333pt;}
.x65_c00428{left:340.101333pt;}
.x58_c00428{left:341.611496pt;}
.xa2_c00428{left:343.680000pt;}
.x3f_c00428{left:346.409133pt;}
.x97_c00428{left:347.520000pt;}
.xae_c00428{left:352.080000pt;}
.x4f_c00428{left:353.786316pt;}
.x1e_c00428{left:354.972508pt;}
.x9a_c00428{left:359.280000pt;}
.xc_c00428{left:361.270763pt;}
.x2d_c00428{left:362.302283pt;}
.x74_c00428{left:363.435568pt;}
.x25_c00428{left:364.624000pt;}
.x66_c00428{left:365.541333pt;}
.x5_c00428{left:366.668000pt;}
.x5d_c00428{left:368.492000pt;}
.x46_c00428{left:369.447755pt;}
.x40_c00428{left:370.649133pt;}
.x98_c00428{left:371.760000pt;}
.x62_c00428{left:373.542667pt;}
.x93_c00428{left:374.640000pt;}
.xa3_c00428{left:377.280000pt;}
.x9b_c00428{left:378.240000pt;}
.xaa_c00428{left:383.520000pt;}
.x6d_c00428{left:385.121333pt;}
.x38_c00428{left:389.369333pt;}
.xa4_c00428{left:391.440000pt;}
.xaf_c00428{left:395.280000pt;}
.x2e_c00428{left:396.559717pt;}
.x34_c00428{left:397.502021pt;}
.x9e_c00428{left:398.880000pt;}
.x90_c00428{left:402.240000pt;}
.x47_c00428{left:403.522421pt;}
.x5e_c00428{left:404.913333pt;}
.x39_c00428{left:407.118667pt;}
.x14_c00428{left:408.372000pt;}
.x50_c00428{left:414.226316pt;}
.x6_c00428{left:416.593333pt;}
.x67_c00428{left:419.750667pt;}
.xd_c00428{left:421.515261pt;}
.xb0_c00428{left:423.120000pt;}
.x48_c00428{left:425.131755pt;}
.x9f_c00428{left:426.240000pt;}
.x26_c00428{left:429.034667pt;}
.x27_c00428{left:430.769333pt;}
.xa5_c00428{left:431.760000pt;}
.x99_c00428{left:432.960000pt;}
.x2f_c00428{left:434.645008pt;}
.xb1_c00428{left:436.320000pt;}
.xa_c00428{left:437.265227pt;}
.x3a_c00428{left:438.949333pt;}
.xab_c00428{left:443.280000pt;}
.xa0_c00428{left:444.720000pt;}
.x15_c00428{left:447.729333pt;}
.x94_c00428{left:453.600000pt;}
.xa6_c00428{left:456.000000pt;}
.x9c_c00428{left:458.400000pt;}
.xac_c00428{left:468.240000pt;}
.xa1_c00428{left:470.400000pt;}
.x6e_c00428{left:472.969333pt;}
.x9d_c00428{left:475.440000pt;}
.x8f_c00428{left:480.960000pt;}
.x95_c00428{left:490.800000pt;}
.x49_c00428{left:492.459755pt;}
.x91_c00428{left:494.640000pt;}
.x76_c00428{left:495.802667pt;}
.xa7_c00428{left:497.520000pt;}
.x96_c00428{left:504.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_7b27c95a9cb4dd3f7cd72c03.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;}
.m7_c00429{transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.143482,-0.002296,0.003999,0.249968,0,0);-ms-transform:matrix(0.143482,-0.002296,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143482,-0.002296,0.003999,0.249968,0,0);}
.meb_c00429{transform:matrix(0.143637,-0.002585,0.004499,0.249960,0,0);-ms-transform:matrix(0.143637,-0.002585,0.004499,0.249960,0,0);-webkit-transform:matrix(0.143637,-0.002585,0.004499,0.249960,0,0);}
.mc9_c00429{transform:matrix(0.148064,-0.001777,0.003000,0.249982,0,0);-ms-transform:matrix(0.148064,-0.001777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148064,-0.001777,0.003000,0.249982,0,0);}
.mde_c00429{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);}
.me_c00429{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);}
.m100_c00429{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);}
.m10a_c00429{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);-ms-transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152903,-0.002294,0.003750,0.249972,0,0);}
.ma9_c00429{transform:matrix(0.153646,-0.001690,0.002750,0.249985,0,0);-ms-transform:matrix(0.153646,-0.001690,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153646,-0.001690,0.002750,0.249985,0,0);}
.m3d_c00429{transform:matrix(0.153845,-0.002462,0.003999,0.249968,0,0);-ms-transform:matrix(0.153845,-0.002462,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153845,-0.002462,0.003999,0.249968,0,0);}
.mad_c00429{transform:matrix(0.154946,-0.001704,0.002750,0.249985,0,0);-ms-transform:matrix(0.154946,-0.001704,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154946,-0.001704,0.002750,0.249985,0,0);}
.mc5_c00429{transform:matrix(0.155149,-0.001862,0.003000,0.249982,0,0);-ms-transform:matrix(0.155149,-0.001862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155149,-0.001862,0.003000,0.249982,0,0);}
.m101_c00429{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);}
.m61_c00429{transform:matrix(0.155353,-0.002330,0.003750,0.249972,0,0);-ms-transform:matrix(0.155353,-0.002330,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155353,-0.002330,0.003750,0.249972,0,0);}
.m94_c00429{transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);-ms-transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155922,-0.002027,0.003250,0.249979,0,0);}
.m83_c00429{transform:matrix(0.156370,-0.002189,0.003500,0.249976,0,0);-ms-transform:matrix(0.156370,-0.002189,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156370,-0.002189,0.003500,0.249976,0,0);}
.m8_c00429{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);}
.me9_c00429{transform:matrix(0.158469,-0.002852,0.004499,0.249960,0,0);-ms-transform:matrix(0.158469,-0.002852,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158469,-0.002852,0.004499,0.249960,0,0);}
.mae_c00429{transform:matrix(0.158870,-0.001748,0.002750,0.249985,0,0);-ms-transform:matrix(0.158870,-0.001748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158870,-0.001748,0.002750,0.249985,0,0);}
.mff_c00429{transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);}
.m10b_c00429{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);}
.m33_c00429{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);}
.m64_c00429{transform:matrix(0.162432,-0.002436,0.003750,0.249972,0,0);-ms-transform:matrix(0.162432,-0.002436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162432,-0.002436,0.003750,0.249972,0,0);}
.m8f_c00429{transform:matrix(0.162686,-0.002115,0.003250,0.249979,0,0);-ms-transform:matrix(0.162686,-0.002115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162686,-0.002115,0.003250,0.249979,0,0);}
.m95_c00429{transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);-ms-transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163271,-0.002123,0.003250,0.249979,0,0);}
.mca_c00429{transform:matrix(0.163953,-0.001967,0.003000,0.249982,0,0);-ms-transform:matrix(0.163953,-0.001967,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163953,-0.001967,0.003000,0.249982,0,0);}
.md2_c00429{transform:matrix(0.165481,-0.002151,0.003250,0.249979,0,0);-ms-transform:matrix(0.165481,-0.002151,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165481,-0.002151,0.003250,0.249979,0,0);}
.mac_c00429{transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);}
.mab_c00429{transform:matrix(0.165910,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165910,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165910,-0.001825,0.002750,0.249985,0,0);}
.m3f_c00429{transform:matrix(0.165919,-0.002655,0.003999,0.249968,0,0);-ms-transform:matrix(0.165919,-0.002655,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165919,-0.002655,0.003999,0.249968,0,0);}
.m5b_c00429{transform:matrix(0.166914,-0.002337,0.003500,0.249976,0,0);-ms-transform:matrix(0.166914,-0.002337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166914,-0.002337,0.003500,0.249976,0,0);}
.mc4_c00429{transform:matrix(0.167618,-0.002011,0.003000,0.249982,0,0);-ms-transform:matrix(0.167618,-0.002011,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167618,-0.002011,0.003000,0.249982,0,0);}
.mc6_c00429{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);}
.m70_c00429{transform:matrix(0.169613,-0.002375,0.003500,0.249976,0,0);-ms-transform:matrix(0.169613,-0.002375,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169613,-0.002375,0.003500,0.249976,0,0);}
.m2a_c00429{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);}
.m2e_c00429{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);}
.m7d_c00429{transform:matrix(0.170253,-0.002724,0.003999,0.249968,0,0);-ms-transform:matrix(0.170253,-0.002724,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170253,-0.002724,0.003999,0.249968,0,0);}
.m5a_c00429{transform:matrix(0.170628,-0.002389,0.003500,0.249976,0,0);-ms-transform:matrix(0.170628,-0.002389,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170628,-0.002389,0.003500,0.249976,0,0);}
.mb1_c00429{transform:matrix(0.171101,-0.002224,0.003250,0.249979,0,0);-ms-transform:matrix(0.171101,-0.002224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171101,-0.002224,0.003250,0.249979,0,0);}
.ma5_c00429{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);}
.ma1_c00429{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);}
.ma0_c00429{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);}
.m4e_c00429{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);}
.md7_c00429{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);}
.m5d_c00429{transform:matrix(0.172908,-0.002421,0.003500,0.249976,0,0);-ms-transform:matrix(0.172908,-0.002421,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172908,-0.002421,0.003500,0.249976,0,0);}
.m109_c00429{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);}
.m43_c00429{transform:matrix(0.174288,-0.002789,0.003999,0.249968,0,0);-ms-transform:matrix(0.174288,-0.002789,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174288,-0.002789,0.003999,0.249968,0,0);}
.maa_c00429{transform:matrix(0.174439,-0.001919,0.002750,0.249985,0,0);-ms-transform:matrix(0.174439,-0.001919,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174439,-0.001919,0.002750,0.249985,0,0);}
.m16_c00429{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);}
.m17_c00429{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);}
.m96_c00429{transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);-ms-transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);}
.m4_c00429{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);}
.m7c_c00429{transform:matrix(0.176497,-0.002824,0.003999,0.249968,0,0);-ms-transform:matrix(0.176497,-0.002824,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176497,-0.002824,0.003999,0.249968,0,0);}
.mbc_c00429{transform:matrix(0.176645,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176645,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176645,-0.002296,0.003250,0.249979,0,0);}
.md4_c00429{transform:matrix(0.176680,-0.002297,0.003250,0.249979,0,0);-ms-transform:matrix(0.176680,-0.002297,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176680,-0.002297,0.003250,0.249979,0,0);}
.m8e_c00429{transform:matrix(0.176825,-0.002299,0.003250,0.249979,0,0);-ms-transform:matrix(0.176825,-0.002299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176825,-0.002299,0.003250,0.249979,0,0);}
.mb9_c00429{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);}
.mf_c00429{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);}
.m51_c00429{transform:matrix(0.177868,-0.002490,0.003500,0.249976,0,0);-ms-transform:matrix(0.177868,-0.002490,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177868,-0.002490,0.003500,0.249976,0,0);}
.mba_c00429{transform:matrix(0.178025,-0.002314,0.003250,0.249979,0,0);-ms-transform:matrix(0.178025,-0.002314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178025,-0.002314,0.003250,0.249979,0,0);}
.m82_c00429{transform:matrix(0.178438,-0.002498,0.003500,0.249976,0,0);-ms-transform:matrix(0.178438,-0.002498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178438,-0.002498,0.003500,0.249976,0,0);}
.m3_c00429{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);}
.m122_c00429{transform:matrix(0.178534,-0.008042,0.011250,0.249747,0,0);-ms-transform:matrix(0.178534,-0.008042,0.011250,0.249747,0,0);-webkit-transform:matrix(0.178534,-0.008042,0.011250,0.249747,0,0);}
.me0_c00429{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);}
.m105_c00429{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_c00429{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);}
.m53_c00429{transform:matrix(0.179127,-0.002508,0.003500,0.249976,0,0);-ms-transform:matrix(0.179127,-0.002508,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179127,-0.002508,0.003500,0.249976,0,0);}
.mcc_c00429{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);}
.m7b_c00429{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);}
.m5_c00429{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);}
.m8b_c00429{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);}
.m9f_c00429{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);}
.mb5_c00429{transform:matrix(0.180800,-0.002350,0.003250,0.249979,0,0);-ms-transform:matrix(0.180800,-0.002350,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180800,-0.002350,0.003250,0.249979,0,0);}
.m12_c00429{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);}
.m65_c00429{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);}
.mf9_c00429{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);}
.m1_c00429{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);}
.m84_c00429{transform:matrix(0.182272,-0.002552,0.003500,0.249976,0,0);-ms-transform:matrix(0.182272,-0.002552,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182272,-0.002552,0.003500,0.249976,0,0);}
.md3_c00429{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);}
.m102_c00429{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);}
.m22_c00429{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);}
.m79_c00429{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);}
.m106_c00429{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_c00429{transform:matrix(0.184207,-0.002579,0.003500,0.249976,0,0);-ms-transform:matrix(0.184207,-0.002579,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184207,-0.002579,0.003500,0.249976,0,0);}
.m59_c00429{transform:matrix(0.184637,-0.002585,0.003500,0.249976,0,0);-ms-transform:matrix(0.184637,-0.002585,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184637,-0.002585,0.003500,0.249976,0,0);}
.m54_c00429{transform:matrix(0.184752,-0.002587,0.003500,0.249976,0,0);-ms-transform:matrix(0.184752,-0.002587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184752,-0.002587,0.003500,0.249976,0,0);}
.m93_c00429{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);}
.mda_c00429{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);}
.m11c_c00429{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);}
.mf6_c00429{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);}
.m9a_c00429{transform:matrix(0.186984,-0.002431,0.003250,0.249979,0,0);-ms-transform:matrix(0.186984,-0.002431,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186984,-0.002431,0.003250,0.249979,0,0);}
.m3a_c00429{transform:matrix(0.187211,-0.003557,0.004749,0.249955,0,0);-ms-transform:matrix(0.187211,-0.003557,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187211,-0.003557,0.004749,0.249955,0,0);}
.m32_c00429{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);}
.md0_c00429{transform:matrix(0.187434,-0.002437,0.003250,0.249979,0,0);-ms-transform:matrix(0.187434,-0.002437,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187434,-0.002437,0.003250,0.249979,0,0);}
.mf0_c00429{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);}
.m9e_c00429{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);}
.mb3_c00429{transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);-ms-transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189649,-0.002465,0.003250,0.249979,0,0);}
.mf4_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);}
.m78_c00429{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);}
.m2f_c00429{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_c00429{transform:matrix(0.190621,-0.002669,0.003500,0.249976,0,0);-ms-transform:matrix(0.190621,-0.002669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190621,-0.002669,0.003500,0.249976,0,0);}
.m57_c00429{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);}
.mfe_c00429{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);}
.m9c_c00429{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);}
.m40_c00429{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);}
.m42_c00429{transform:matrix(0.191366,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191366,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191366,-0.003062,0.003999,0.249968,0,0);}
.m3b_c00429{transform:matrix(0.191440,-0.003637,0.004749,0.249955,0,0);-ms-transform:matrix(0.191440,-0.003637,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191440,-0.003637,0.004749,0.249955,0,0);}
.mbf_c00429{transform:matrix(0.191589,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191589,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191589,-0.002491,0.003250,0.249979,0,0);}
.mfd_c00429{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);}
.m129_c00429{transform:matrix(0.192180,-0.008657,0.011250,0.249747,0,0);-ms-transform:matrix(0.192180,-0.008657,0.011250,0.249747,0,0);-webkit-transform:matrix(0.192180,-0.008657,0.011250,0.249747,0,0);}
.mf1_c00429{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);}
.m81_c00429{transform:matrix(0.192676,-0.002697,0.003500,0.249976,0,0);-ms-transform:matrix(0.192676,-0.002697,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192676,-0.002697,0.003500,0.249976,0,0);}
.m6c_c00429{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);}
.m9b_c00429{transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193014,-0.002509,0.003250,0.249979,0,0);}
.mf7_c00429{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);}
.m47_c00429{transform:matrix(0.193498,-0.002902,0.003750,0.249972,0,0);-ms-transform:matrix(0.193498,-0.002902,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193498,-0.002902,0.003750,0.249972,0,0);}
.m45_c00429{transform:matrix(0.193553,-0.002903,0.003750,0.249972,0,0);-ms-transform:matrix(0.193553,-0.002903,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193553,-0.002903,0.003750,0.249972,0,0);}
.m91_c00429{transform:matrix(0.194064,-0.002523,0.003250,0.249979,0,0);-ms-transform:matrix(0.194064,-0.002523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194064,-0.002523,0.003250,0.249979,0,0);}
.m6a_c00429{transform:matrix(0.194323,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194323,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194323,-0.002915,0.003750,0.249972,0,0);}
.m120_c00429{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);}
.m11d_c00429{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md8_c00429{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);}
.mf3_c00429{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);}
.md_c00429{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);}
.mdd_c00429{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);}
.mc7_c00429{transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196051,-0.002353,0.003000,0.249982,0,0);}
.m18_c00429{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);}
.m46_c00429{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);}
.m87_c00429{transform:matrix(0.196716,-0.002754,0.003500,0.249976,0,0);-ms-transform:matrix(0.196716,-0.002754,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196716,-0.002754,0.003500,0.249976,0,0);}
.mc3_c00429{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);}
.m23_c00429{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);}
.m4a_c00429{transform:matrix(0.198093,-0.002971,0.003750,0.249972,0,0);-ms-transform:matrix(0.198093,-0.002971,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198093,-0.002971,0.003750,0.249972,0,0);}
.m39_c00429{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);}
.m110_c00429{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);}
.mb6_c00429{transform:matrix(0.198988,-0.002587,0.003250,0.249979,0,0);-ms-transform:matrix(0.198988,-0.002587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198988,-0.002587,0.003250,0.249979,0,0);}
.m2_c00429{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);}
.mcf_c00429{transform:matrix(0.199098,-0.002588,0.003250,0.249979,0,0);-ms-transform:matrix(0.199098,-0.002588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199098,-0.002588,0.003250,0.249979,0,0);}
.m20_c00429{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);}
.mfc_c00429{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);}
.m2d_c00429{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);}
.m11f_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);}
.maf_c00429{transform:matrix(0.200108,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200108,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200108,-0.002201,0.002750,0.249985,0,0);}
.mcb_c00429{transform:matrix(0.200316,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200316,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200316,-0.002404,0.003000,0.249982,0,0);}
.m86_c00429{transform:matrix(0.200355,-0.002805,0.003500,0.249976,0,0);-ms-transform:matrix(0.200355,-0.002805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200355,-0.002805,0.003500,0.249976,0,0);}
.mcd_c00429{transform:matrix(0.200753,-0.002610,0.003250,0.249979,0,0);-ms-transform:matrix(0.200753,-0.002610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200753,-0.002610,0.003250,0.249979,0,0);}
.m50_c00429{transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200775,-0.002811,0.003500,0.249976,0,0);}
.m90_c00429{transform:matrix(0.201433,-0.002619,0.003250,0.249979,0,0);-ms-transform:matrix(0.201433,-0.002619,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201433,-0.002619,0.003250,0.249979,0,0);}
.md5_c00429{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);}
.m60_c00429{transform:matrix(0.201777,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201777,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201777,-0.003027,0.003750,0.249972,0,0);}
.m8d_c00429{transform:matrix(0.201808,-0.002624,0.003250,0.249979,0,0);-ms-transform:matrix(0.201808,-0.002624,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201808,-0.002624,0.003250,0.249979,0,0);}
.m1a_c00429{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);}
.me1_c00429{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);}
.m6b_c00429{transform:matrix(0.203227,-0.003048,0.003750,0.249972,0,0);-ms-transform:matrix(0.203227,-0.003048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203227,-0.003048,0.003750,0.249972,0,0);}
.m7a_c00429{transform:matrix(0.203479,-0.003256,0.003999,0.249968,0,0);-ms-transform:matrix(0.203479,-0.003256,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203479,-0.003256,0.003999,0.249968,0,0);}
.m67_c00429{transform:matrix(0.203672,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203672,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203672,-0.003055,0.003750,0.249972,0,0);}
.m31_c00429{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);}
.m1f_c00429{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);}
.mb2_c00429{transform:matrix(0.204103,-0.002653,0.003250,0.249979,0,0);-ms-transform:matrix(0.204103,-0.002653,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204103,-0.002653,0.003250,0.249979,0,0);}
.m11e_c00429{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);}
.m2b_c00429{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);}
.m52_c00429{transform:matrix(0.204790,-0.002867,0.003500,0.249976,0,0);-ms-transform:matrix(0.204790,-0.002867,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204790,-0.002867,0.003500,0.249976,0,0);}
.m41_c00429{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);}
.m63_c00429{transform:matrix(0.205267,-0.003079,0.003750,0.249972,0,0);-ms-transform:matrix(0.205267,-0.003079,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205267,-0.003079,0.003750,0.249972,0,0);}
.m30_c00429{transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.205663,-0.002674,0.003250,0.249979,0,0);-ms-transform:matrix(0.205663,-0.002674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205663,-0.002674,0.003250,0.249979,0,0);}
.mef_c00429{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);}
.md1_c00429{transform:matrix(0.206208,-0.002681,0.003250,0.249979,0,0);-ms-transform:matrix(0.206208,-0.002681,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206208,-0.002681,0.003250,0.249979,0,0);}
.m125_c00429{transform:matrix(0.206411,-0.009298,0.011250,0.249747,0,0);-ms-transform:matrix(0.206411,-0.009298,0.011250,0.249747,0,0);-webkit-transform:matrix(0.206411,-0.009298,0.011250,0.249747,0,0);}
.m25_c00429{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);}
.mc8_c00429{transform:matrix(0.206865,-0.002482,0.003000,0.249982,0,0);-ms-transform:matrix(0.206865,-0.002482,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206865,-0.002482,0.003000,0.249982,0,0);}
.m14_c00429{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);}
.m8a_c00429{transform:matrix(0.208147,-0.002706,0.003250,0.249979,0,0);-ms-transform:matrix(0.208147,-0.002706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208147,-0.002706,0.003250,0.249979,0,0);}
.mbb_c00429{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);}
.m99_c00429{transform:matrix(0.209312,-0.002721,0.003250,0.249979,0,0);-ms-transform:matrix(0.209312,-0.002721,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209312,-0.002721,0.003250,0.249979,0,0);}
.m97_c00429{transform:matrix(0.210007,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.210007,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210007,-0.002730,0.003250,0.249979,0,0);}
.mdc_c00429{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);}
.mb4_c00429{transform:matrix(0.210972,-0.002743,0.003250,0.249979,0,0);-ms-transform:matrix(0.210972,-0.002743,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210972,-0.002743,0.003250,0.249979,0,0);}
.m10f_c00429{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);}
.m7e_c00429{transform:matrix(0.213168,-0.003411,0.003999,0.249968,0,0);-ms-transform:matrix(0.213168,-0.003411,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213168,-0.003411,0.003999,0.249968,0,0);}
.mbe_c00429{transform:matrix(0.213222,-0.002772,0.003250,0.249979,0,0);-ms-transform:matrix(0.213222,-0.002772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213222,-0.002772,0.003250,0.249979,0,0);}
.mce_c00429{transform:matrix(0.213417,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213417,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213417,-0.002774,0.003250,0.249979,0,0);}
.m92_c00429{transform:matrix(0.213487,-0.002775,0.003250,0.249979,0,0);-ms-transform:matrix(0.213487,-0.002775,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213487,-0.002775,0.003250,0.249979,0,0);}
.m8c_c00429{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);}
.m36_c00429{transform:matrix(0.214321,-0.004072,0.004749,0.249955,0,0);-ms-transform:matrix(0.214321,-0.004072,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214321,-0.004072,0.004749,0.249955,0,0);}
.m123_c00429{transform:matrix(0.214562,-0.009665,0.011250,0.249747,0,0);-ms-transform:matrix(0.214562,-0.009665,0.011250,0.249747,0,0);-webkit-transform:matrix(0.214562,-0.009665,0.011250,0.249747,0,0);}
.m62_c00429{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);}
.m48_c00429{transform:matrix(0.214816,-0.003222,0.003750,0.249972,0,0);-ms-transform:matrix(0.214816,-0.003222,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214816,-0.003222,0.003750,0.249972,0,0);}
.m4d_c00429{transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);-ms-transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);}
.mc0_c00429{transform:matrix(0.215432,-0.002801,0.003250,0.249979,0,0);-ms-transform:matrix(0.215432,-0.002801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215432,-0.002801,0.003250,0.249979,0,0);}
.m1c_c00429{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);}
.m21_c00429{transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);-ms-transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217486,-0.003262,0.003750,0.249972,0,0);}
.mfa_c00429{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);}
.m1b_c00429{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);}
.mdf_c00429{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);}
.m108_c00429{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);}
.ma4_c00429{transform:matrix(0.220137,-0.002422,0.002750,0.249985,0,0);-ms-transform:matrix(0.220137,-0.002422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220137,-0.002422,0.002750,0.249985,0,0);}
.m74_c00429{transform:matrix(0.220248,-0.003083,0.003500,0.249976,0,0);-ms-transform:matrix(0.220248,-0.003083,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220248,-0.003083,0.003500,0.249976,0,0);}
.m19_c00429{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);}
.m2c_c00429{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);}
.m6f_c00429{transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220858,-0.003092,0.003500,0.249976,0,0);}
.me6_c00429{transform:matrix(0.221179,-0.003981,0.004499,0.249960,0,0);-ms-transform:matrix(0.221179,-0.003981,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221179,-0.003981,0.004499,0.249960,0,0);}
.m4c_c00429{transform:matrix(0.221358,-0.003099,0.003500,0.249976,0,0);-ms-transform:matrix(0.221358,-0.003099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221358,-0.003099,0.003500,0.249976,0,0);}
.m75_c00429{transform:matrix(0.221888,-0.003106,0.003500,0.249976,0,0);-ms-transform:matrix(0.221888,-0.003106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221888,-0.003106,0.003500,0.249976,0,0);}
.m56_c00429{transform:matrix(0.221953,-0.003107,0.003500,0.249976,0,0);-ms-transform:matrix(0.221953,-0.003107,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221953,-0.003107,0.003500,0.249976,0,0);}
.m58_c00429{transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);}
.m85_c00429{transform:matrix(0.222178,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222178,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222178,-0.003110,0.003500,0.249976,0,0);}
.mb7_c00429{transform:matrix(0.223146,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223146,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223146,-0.002901,0.003250,0.249979,0,0);}
.m12b_c00429{transform:matrix(0.223578,-0.010071,0.011250,0.249747,0,0);-ms-transform:matrix(0.223578,-0.010071,0.011250,0.249747,0,0);-webkit-transform:matrix(0.223578,-0.010071,0.011250,0.249747,0,0);}
.m76_c00429{transform:matrix(0.223923,-0.003135,0.003500,0.249976,0,0);-ms-transform:matrix(0.223923,-0.003135,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223923,-0.003135,0.003500,0.249976,0,0);}
.ma7_c00429{transform:matrix(0.224001,-0.002464,0.002750,0.249985,0,0);-ms-transform:matrix(0.224001,-0.002464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224001,-0.002464,0.002750,0.249985,0,0);}
.m13_c00429{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);}
.m38_c00429{transform:matrix(0.225299,-0.004281,0.004749,0.249955,0,0);-ms-transform:matrix(0.225299,-0.004281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225299,-0.004281,0.004749,0.249955,0,0);}
.m107_c00429{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);}
.me5_c00429{transform:matrix(0.226698,-0.004081,0.004499,0.249960,0,0);-ms-transform:matrix(0.226698,-0.004081,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226698,-0.004081,0.004499,0.249960,0,0);}
.mee_c00429{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);}
.ma3_c00429{transform:matrix(0.227646,-0.002504,0.002750,0.249985,0,0);-ms-transform:matrix(0.227646,-0.002504,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227646,-0.002504,0.002750,0.249985,0,0);}
.mec_c00429{transform:matrix(0.227653,-0.004098,0.004499,0.249960,0,0);-ms-transform:matrix(0.227653,-0.004098,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227653,-0.004098,0.004499,0.249960,0,0);}
.m29_c00429{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);}
.m10_c00429{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m10d_c00429{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);}
.m6d_c00429{transform:matrix(0.228794,-0.003432,0.003750,0.249972,0,0);-ms-transform:matrix(0.228794,-0.003432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228794,-0.003432,0.003750,0.249972,0,0);}
.m11_c00429{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);}
.m34_c00429{transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);-ms-transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229574,-0.004362,0.004749,0.249955,0,0);}
.m3c_c00429{transform:matrix(0.230101,-0.003682,0.003999,0.249968,0,0);-ms-transform:matrix(0.230101,-0.003682,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230101,-0.003682,0.003999,0.249968,0,0);}
.me3_c00429{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);}
.mc_c00429{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);}
.m73_c00429{transform:matrix(0.231527,-0.003241,0.003500,0.249976,0,0);-ms-transform:matrix(0.231527,-0.003241,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231527,-0.003241,0.003500,0.249976,0,0);}
.mf2_c00429{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);}
.mf8_c00429{transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233195,0.000000,0.000000,0.250000,0,0);}
.mdb_c00429{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{transform:matrix(0.233567,-0.003270,0.003500,0.249976,0,0);-ms-transform:matrix(0.233567,-0.003270,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233567,-0.003270,0.003500,0.249976,0,0);}
.m89_c00429{transform:matrix(0.233965,-0.003042,0.003250,0.249979,0,0);-ms-transform:matrix(0.233965,-0.003042,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233965,-0.003042,0.003250,0.249979,0,0);}
.m119_c00429{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);}
.ma2_c00429{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);}
.m80_c00429{transform:matrix(0.235617,-0.003299,0.003500,0.249976,0,0);-ms-transform:matrix(0.235617,-0.003299,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235617,-0.003299,0.003500,0.249976,0,0);}
.m126_c00429{transform:matrix(0.235626,-0.010614,0.011250,0.249747,0,0);-ms-transform:matrix(0.235626,-0.010614,0.011250,0.249747,0,0);-webkit-transform:matrix(0.235626,-0.010614,0.011250,0.249747,0,0);}
.m11a_c00429{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);}
.m12e_c00429{transform:matrix(0.237010,-0.010676,0.011250,0.249747,0,0);-ms-transform:matrix(0.237010,-0.010676,0.011250,0.249747,0,0);-webkit-transform:matrix(0.237010,-0.010676,0.011250,0.249747,0,0);}
.mb0_c00429{transform:matrix(0.237015,-0.003081,0.003250,0.249979,0,0);-ms-transform:matrix(0.237015,-0.003081,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237015,-0.003081,0.003250,0.249979,0,0);}
.ma8_c00429{transform:matrix(0.237161,-0.002609,0.002750,0.249985,0,0);-ms-transform:matrix(0.237161,-0.002609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237161,-0.002609,0.002750,0.249985,0,0);}
.ma6_c00429{transform:matrix(0.237406,-0.002611,0.002750,0.249985,0,0);-ms-transform:matrix(0.237406,-0.002611,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237406,-0.002611,0.002750,0.249985,0,0);}
.m1e_c00429{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);}
.m15_c00429{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);}
.m104_c00429{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);}
.m1d_c00429{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);}
.m128_c00429{transform:matrix(0.241560,-0.010881,0.011250,0.249747,0,0);-ms-transform:matrix(0.241560,-0.010881,0.011250,0.249747,0,0);-webkit-transform:matrix(0.241560,-0.010881,0.011250,0.249747,0,0);}
.m28_c00429{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);}
.m24_c00429{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);}
.m118_c00429{transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);}
.me2_c00429{transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md6_c00429{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);}
.mbd_c00429{transform:matrix(0.247294,-0.003215,0.003250,0.249979,0,0);-ms-transform:matrix(0.247294,-0.003215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247294,-0.003215,0.003250,0.249979,0,0);}
.m121_c00429{transform:matrix(0.247959,-0.011169,0.011250,0.249747,0,0);-ms-transform:matrix(0.247959,-0.011169,0.011250,0.249747,0,0);-webkit-transform:matrix(0.247959,-0.011169,0.011250,0.249747,0,0);}
.m124_c00429{transform:matrix(0.248024,-0.011172,0.011250,0.249747,0,0);-ms-transform:matrix(0.248024,-0.011172,0.011250,0.249747,0,0);-webkit-transform:matrix(0.248024,-0.011172,0.011250,0.249747,0,0);}
.m10e_c00429{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.md9_c00429{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.m111_c00429{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m117_c00429{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);}
.m11b_c00429{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);}
.m4f_c00429{transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);-ms-transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252720,-0.003538,0.003500,0.249976,0,0);}
.m112_c00429{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);}
.m103_c00429{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);}
.m113_c00429{transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.263003,-0.004997,0.004749,0.249955,0,0);-ms-transform:matrix(0.263003,-0.004997,0.004749,0.249955,0,0);-webkit-transform:matrix(0.263003,-0.004997,0.004749,0.249955,0,0);}
.m77_c00429{transform:matrix(0.270380,-0.004326,0.003999,0.249968,0,0);-ms-transform:matrix(0.270380,-0.004326,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270380,-0.004326,0.003999,0.249968,0,0);}
.m69_c00429{transform:matrix(0.272079,-0.004081,0.003750,0.249972,0,0);-ms-transform:matrix(0.272079,-0.004081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272079,-0.004081,0.003750,0.249972,0,0);}
.m0_c00429{transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.273833,-0.003834,0.003500,0.249976,0,0);-ms-transform:matrix(0.273833,-0.003834,0.003500,0.249976,0,0);-webkit-transform:matrix(0.273833,-0.003834,0.003500,0.249976,0,0);}
.m66_c00429{transform:matrix(0.276564,-0.004148,0.003750,0.249972,0,0);-ms-transform:matrix(0.276564,-0.004148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276564,-0.004148,0.003750,0.249972,0,0);}
.m44_c00429{transform:matrix(0.278044,-0.004171,0.003750,0.249972,0,0);-ms-transform:matrix(0.278044,-0.004171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278044,-0.004171,0.003750,0.249972,0,0);}
.m12c_c00429{transform:matrix(0.278413,-0.012541,0.011250,0.249747,0,0);-ms-transform:matrix(0.278413,-0.012541,0.011250,0.249747,0,0);-webkit-transform:matrix(0.278413,-0.012541,0.011250,0.249747,0,0);}
.m114_c00429{transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.281898,-0.004228,0.003750,0.249972,0,0);-ms-transform:matrix(0.281898,-0.004228,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281898,-0.004228,0.003750,0.249972,0,0);}
.m12a_c00429{transform:matrix(0.283792,-0.012783,0.011250,0.249747,0,0);-ms-transform:matrix(0.283792,-0.012783,0.011250,0.249747,0,0);-webkit-transform:matrix(0.283792,-0.012783,0.011250,0.249747,0,0);}
.m9_c00429{transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286055,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.290215,-0.003773,0.003250,0.249979,0,0);-ms-transform:matrix(0.290215,-0.003773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290215,-0.003773,0.003250,0.249979,0,0);}
.mfb_c00429{transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);}
.m12d_c00429{transform:matrix(0.294866,-0.013282,0.011250,0.249747,0,0);-ms-transform:matrix(0.294866,-0.013282,0.011250,0.249747,0,0);-webkit-transform:matrix(0.294866,-0.013282,0.011250,0.249747,0,0);}
.mc2_c00429{transform:matrix(0.295080,-0.003836,0.003250,0.249979,0,0);-ms-transform:matrix(0.295080,-0.003836,0.003250,0.249979,0,0);-webkit-transform:matrix(0.295080,-0.003836,0.003250,0.249979,0,0);}
.m55_c00429{transform:matrix(0.298036,-0.004173,0.003500,0.249976,0,0);-ms-transform:matrix(0.298036,-0.004173,0.003500,0.249976,0,0);-webkit-transform:matrix(0.298036,-0.004173,0.003500,0.249976,0,0);}
.m115_c00429{transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);}
.m127_c00429{transform:matrix(0.299326,-0.013483,0.011250,0.249747,0,0);-ms-transform:matrix(0.299326,-0.013483,0.011250,0.249747,0,0);-webkit-transform:matrix(0.299326,-0.013483,0.011250,0.249747,0,0);}
.m37_c00429{transform:matrix(0.306305,-0.005820,0.004749,0.249955,0,0);-ms-transform:matrix(0.306305,-0.005820,0.004749,0.249955,0,0);-webkit-transform:matrix(0.306305,-0.005820,0.004749,0.249955,0,0);}
.mf5_c00429{transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309685,0.000000,0.000000,0.250000,0,0);}
.me8_c00429{transform:matrix(0.312184,-0.005619,0.004499,0.249960,0,0);-ms-transform:matrix(0.312184,-0.005619,0.004499,0.249960,0,0);-webkit-transform:matrix(0.312184,-0.005619,0.004499,0.249960,0,0);}
.med_c00429{transform:matrix(0.314404,-0.005659,0.004499,0.249960,0,0);-ms-transform:matrix(0.314404,-0.005659,0.004499,0.249960,0,0);-webkit-transform:matrix(0.314404,-0.005659,0.004499,0.249960,0,0);}
.ma_c00429{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);}
.me7_c00429{transform:matrix(0.320758,-0.005774,0.004499,0.249960,0,0);-ms-transform:matrix(0.320758,-0.005774,0.004499,0.249960,0,0);-webkit-transform:matrix(0.320758,-0.005774,0.004499,0.249960,0,0);}
.m6e_c00429{transform:matrix(0.335552,-0.005033,0.003750,0.249972,0,0);-ms-transform:matrix(0.335552,-0.005033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.335552,-0.005033,0.003750,0.249972,0,0);}
.m4b_c00429{transform:matrix(0.350246,-0.005254,0.003750,0.249972,0,0);-ms-transform:matrix(0.350246,-0.005254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.350246,-0.005254,0.003750,0.249972,0,0);}
.m7f_c00429{transform:matrix(0.351900,-0.005630,0.003999,0.249968,0,0);-ms-transform:matrix(0.351900,-0.005630,0.003999,0.249968,0,0);-webkit-transform:matrix(0.351900,-0.005630,0.003999,0.249968,0,0);}
.m116_c00429{transform:matrix(0.352300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352300,0.000000,0.000000,0.250000,0,0);}
.m10c_c00429{transform:matrix(0.352485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352485,0.000000,0.000000,0.250000,0,0);}
.mc1_c00429{transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);-ms-transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.378373,-0.004919,0.003250,0.249979,0,0);}
.mea_c00429{transform:matrix(0.391277,-0.007043,0.004499,0.249960,0,0);-ms-transform:matrix(0.391277,-0.007043,0.004499,0.249960,0,0);-webkit-transform:matrix(0.391277,-0.007043,0.004499,0.249960,0,0);}
.m27_c00429{transform:matrix(0.444770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444770,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.761500,-0.010661,0.003500,0.249976,0,0);-ms-transform:matrix(0.761500,-0.010661,0.003500,0.249976,0,0);-webkit-transform:matrix(0.761500,-0.010661,0.003500,0.249976,0,0);}
.m12f_c00429{transform:matrix(0.799270,-0.036003,0.011250,0.249747,0,0);-ms-transform:matrix(0.799270,-0.036003,0.011250,0.249747,0,0);-webkit-transform:matrix(0.799270,-0.036003,0.011250,0.249747,0,0);}
.me4_c00429{transform:matrix(1.391905,-0.025054,0.004499,0.249960,0,0);-ms-transform:matrix(1.391905,-0.025054,0.004499,0.249960,0,0);-webkit-transform:matrix(1.391905,-0.025054,0.004499,0.249960,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;}
.fs1d_c00429{font-size:44.100000px;}
.fs1c_c00429{font-size:47.250000px;}
.fs1e_c00429{font-size:48.300628px;}
.fs3_c00429{font-size:50.400000px;}
.fs1b_c00429{font-size:51.450000px;}
.fs0_c00429{font-size:52.500000px;}
.fs2_c00429{font-size:53.550000px;}
.fs1_c00429{font-size:54.600000px;}
.fs17_c00429{font-size:59.850000px;}
.fs1a_c00429{font-size:60.900000px;}
.fs4_c00429{font-size:61.961181px;}
.fs7_c00429{font-size:63.006174px;}
.fs11_c00429{font-size:64.053875px;}
.fs13_c00429{font-size:64.055412px;}
.fse_c00429{font-size:65.105501px;}
.fs8_c00429{font-size:65.106379px;}
.fsa_c00429{font-size:66.157441px;}
.fsf_c00429{font-size:67.205678px;}
.fsb_c00429{font-size:67.206585px;}
.fsc_c00429{font-size:67.208601px;}
.fs6_c00429{font-size:68.257678px;}
.fs10_c00429{font-size:69.300000px;}
.fs15_c00429{font-size:69.304989px;}
.fs14_c00429{font-size:69.305856px;}
.fsd_c00429{font-size:69.306791px;}
.fs9_c00429{font-size:71.408032px;}
.fs5_c00429{font-size:71.409139px;}
.fs12_c00429{font-size:72.454383px;}
.fs16_c00429{font-size:72.456122px;}
.fs18_c00429{font-size:97.665818px;}
.fs19_c00429{font-size:247.840140px;}
.y0_c00429{bottom:0.000000px;}
.y7_c00429{bottom:175.750500px;}
.yc7_c00429{bottom:176.044764px;}
.yc8_c00429{bottom:177.317611px;}
.yc9_c00429{bottom:178.221004px;}
.yca_c00429{bottom:178.948034px;}
.ycb_c00429{bottom:180.014466px;}
.ycc_c00429{bottom:180.429753px;}
.ycd_c00429{bottom:181.589997px;}
.y6_c00429{bottom:193.729500px;}
.ybf_c00429{bottom:194.425500px;}
.yc0_c00429{bottom:197.044500px;}
.yc1_c00429{bottom:198.238507px;}
.yc2_c00429{bottom:199.520602px;}
.yc3_c00429{bottom:201.572940px;}
.yc4_c00429{bottom:202.618447px;}
.yc5_c00429{bottom:204.444592px;}
.yc6_c00429{bottom:205.798035px;}
.ya6_c00429{bottom:211.674000px;}
.yb8_c00429{bottom:212.493000px;}
.yb9_c00429{bottom:212.833500px;}
.yba_c00429{bottom:213.097500px;}
.ybb_c00429{bottom:213.502500px;}
.ybc_c00429{bottom:214.216500px;}
.ybd_c00429{bottom:214.707000px;}
.ybe_c00429{bottom:214.983000px;}
.ya5_c00429{bottom:229.786500px;}
.yb7_c00429{bottom:232.048500px;}
.y5_c00429{bottom:247.237500px;}
.yb6_c00429{bottom:250.032000px;}
.y4_c00429{bottom:265.018500px;}
.yb5_c00429{bottom:268.053000px;}
.y3_c00429{bottom:283.102500px;}
.yb4_c00429{bottom:285.778500px;}
.y2_c00429{bottom:301.158000px;}
.yb3_c00429{bottom:303.756000px;}
.y1_c00429{bottom:318.600000px;}
.yb2_c00429{bottom:321.741000px;}
.yb1_c00429{bottom:373.813500px;}
.y9d_c00429{bottom:393.663000px;}
.y9e_c00429{bottom:394.410474px;}
.y9f_c00429{bottom:394.607112px;}
.ya0_c00429{bottom:395.337309px;}
.ya1_c00429{bottom:396.035019px;}
.ya2_c00429{bottom:396.380013px;}
.ya3_c00429{bottom:397.278593px;}
.ya4_c00429{bottom:397.797078px;}
.y94_c00429{bottom:416.611500px;}
.y95_c00429{bottom:416.867514px;}
.y96_c00429{bottom:417.175368px;}
.y97_c00429{bottom:417.608916px;}
.y98_c00429{bottom:418.011342px;}
.y99_c00429{bottom:418.322328px;}
.y9a_c00429{bottom:418.694946px;}
.y9b_c00429{bottom:418.938396px;}
.y9c_c00429{bottom:419.790462px;}
.y93_c00429{bottom:441.986778px;}
.y91_c00429{bottom:441.986826px;}
.y92_c00429{bottom:441.986918px;}
.y88_c00429{bottom:461.973000px;}
.y89_c00429{bottom:462.337377px;}
.y8a_c00429{bottom:462.635922px;}
.y8b_c00429{bottom:463.082199px;}
.y8c_c00429{bottom:463.938112px;}
.y8d_c00429{bottom:464.338681px;}
.y8e_c00429{bottom:464.811439px;}
.y8f_c00429{bottom:465.324582px;}
.y90_c00429{bottom:465.697519px;}
.y80_c00429{bottom:484.921500px;}
.y81_c00429{bottom:485.434096px;}
.y82_c00429{bottom:486.368224px;}
.y83_c00429{bottom:486.711853px;}
.y84_c00429{bottom:487.431442px;}
.y85_c00429{bottom:488.266744px;}
.y86_c00429{bottom:488.702491px;}
.y87_c00429{bottom:489.691726px;}
.y78_c00429{bottom:507.871500px;}
.y79_c00429{bottom:508.156636px;}
.y7a_c00429{bottom:508.358613px;}
.y7b_c00429{bottom:508.860543px;}
.y7c_c00429{bottom:509.198611px;}
.y7d_c00429{bottom:509.712949px;}
.y7e_c00429{bottom:509.944824px;}
.y7f_c00429{bottom:510.520905px;}
.y72_c00429{bottom:530.821500px;}
.y73_c00429{bottom:531.195918px;}
.y74_c00429{bottom:532.262115px;}
.y75_c00429{bottom:532.894692px;}
.y76_c00429{bottom:533.153230px;}
.y77_c00429{bottom:534.201409px;}
.y71_c00429{bottom:555.754500px;}
.y67_c00429{bottom:576.451500px;}
.y68_c00429{bottom:577.027276px;}
.y69_c00429{bottom:577.353589px;}
.y6a_c00429{bottom:577.627487px;}
.y6b_c00429{bottom:577.974996px;}
.y6c_c00429{bottom:578.301485px;}
.y6d_c00429{bottom:578.901733px;}
.y6e_c00429{bottom:579.442235px;}
.y6f_c00429{bottom:579.740741px;}
.y70_c00429{bottom:580.267475px;}
.y5d_c00429{bottom:599.401500px;}
.y5e_c00429{bottom:600.123955px;}
.y5f_c00429{bottom:600.472381px;}
.y60_c00429{bottom:601.181382px;}
.y61_c00429{bottom:601.978308px;}
.y62_c00429{bottom:602.487160px;}
.y63_c00429{bottom:602.845239px;}
.y64_c00429{bottom:603.335957px;}
.y65_c00429{bottom:603.775448px;}
.y66_c00429{bottom:604.360974px;}
.y54_c00429{bottom:622.083000px;}
.y55_c00429{bottom:622.997928px;}
.y56_c00429{bottom:623.730492px;}
.y57_c00429{bottom:623.980791px;}
.y58_c00429{bottom:624.264522px;}
.y59_c00429{bottom:624.767367px;}
.y5a_c00429{bottom:625.852017px;}
.y5b_c00429{bottom:626.044986px;}
.y5c_c00429{bottom:626.365509px;}
.y4b_c00429{bottom:643.683000px;}
.y4c_c00429{bottom:644.218896px;}
.y4d_c00429{bottom:644.852952px;}
.y4e_c00429{bottom:645.303552px;}
.y4f_c00429{bottom:645.950016px;}
.y50_c00429{bottom:646.676232px;}
.y51_c00429{bottom:647.498040px;}
.y52_c00429{bottom:648.262848px;}
.y53_c00429{bottom:649.044936px;}
.y43_c00429{bottom:666.862500px;}
.y44_c00429{bottom:667.467195px;}
.y45_c00429{bottom:667.898283px;}
.y46_c00429{bottom:669.047928px;}
.y47_c00429{bottom:669.592416px;}
.y48_c00429{bottom:670.000404px;}
.y49_c00429{bottom:670.502997px;}
.y4a_c00429{bottom:670.949037px;}
.y3a_c00429{bottom:689.043000px;}
.y3b_c00429{bottom:689.691180px;}
.y3c_c00429{bottom:690.149032px;}
.y3d_c00429{bottom:691.295363px;}
.y3e_c00429{bottom:691.675770px;}
.y3f_c00429{bottom:692.239575px;}
.y40_c00429{bottom:693.486413px;}
.y41_c00429{bottom:694.564208px;}
.y42_c00429{bottom:695.329815px;}
.y33_c00429{bottom:711.453000px;}
.y34_c00429{bottom:712.008278px;}
.y35_c00429{bottom:712.964033px;}
.y36_c00429{bottom:713.838742px;}
.y37_c00429{bottom:714.284490px;}
.y38_c00429{bottom:715.053832px;}
.y39_c00429{bottom:715.718145px;}
.y29_c00429{bottom:734.133000px;}
.y2a_c00429{bottom:734.601048px;}
.y2b_c00429{bottom:734.953029px;}
.y2c_c00429{bottom:735.943242px;}
.y2d_c00429{bottom:736.865583px;}
.y2e_c00429{bottom:737.281341px;}
.y2f_c00429{bottom:737.568600px;}
.y30_c00429{bottom:738.026043px;}
.y31_c00429{bottom:738.445791px;}
.y32_c00429{bottom:738.888009px;}
.y20_c00429{bottom:757.083000px;}
.y21_c00429{bottom:757.578348px;}
.y22_c00429{bottom:757.994211px;}
.y23_c00429{bottom:758.255220px;}
.y24_c00429{bottom:759.034404px;}
.y25_c00429{bottom:759.740823px;}
.y26_c00429{bottom:760.493085px;}
.y27_c00429{bottom:761.075310px;}
.y28_c00429{bottom:761.460828px;}
.y18_c00429{bottom:779.223000px;}
.y19_c00429{bottom:779.679638px;}
.y1a_c00429{bottom:780.171150px;}
.y1b_c00429{bottom:781.125870px;}
.y1c_c00429{bottom:781.912447px;}
.y1d_c00429{bottom:782.507910px;}
.y1e_c00429{bottom:782.775367px;}
.y1f_c00429{bottom:783.970230px;}
.y10_c00429{bottom:801.633000px;}
.y11_c00429{bottom:802.068720px;}
.y12_c00429{bottom:802.730568px;}
.y13_c00429{bottom:803.468496px;}
.y14_c00429{bottom:804.254640px;}
.y15_c00429{bottom:804.804528px;}
.y16_c00429{bottom:805.598616px;}
.y17_c00429{bottom:806.290704px;}
.y8_c00429{bottom:824.044500px;}
.y9_c00429{bottom:824.443899px;}
.ya_c00429{bottom:825.814635px;}
.yb_c00429{bottom:827.328213px;}
.yc_c00429{bottom:827.829784px;}
.yd_c00429{bottom:828.578821px;}
.ye_c00429{bottom:829.185615px;}
.yf_c00429{bottom:829.596329px;}
.yaf_c00429{bottom:908.824722px;}
.yb0_c00429{bottom:916.538718px;}
.ya7_c00429{bottom:925.294500px;}
.ya8_c00429{bottom:929.415213px;}
.ya9_c00429{bottom:931.211415px;}
.yaa_c00429{bottom:931.622085px;}
.yab_c00429{bottom:932.309937px;}
.yac_c00429{bottom:932.919759px;}
.yad_c00429{bottom:933.403275px;}
.yae_c00429{bottom:934.810515px;}
.h1f_c00429{height:44.100000px;}
.h1e_c00429{height:47.250000px;}
.h20_c00429{height:48.300628px;}
.h5_c00429{height:50.400000px;}
.h1d_c00429{height:51.450000px;}
.h2_c00429{height:52.500000px;}
.h4_c00429{height:53.550000px;}
.h3_c00429{height:54.600000px;}
.h19_c00429{height:59.850000px;}
.h1c_c00429{height:60.900000px;}
.h6_c00429{height:61.961181px;}
.h9_c00429{height:63.006174px;}
.h13_c00429{height:64.053875px;}
.h15_c00429{height:64.055412px;}
.h10_c00429{height:65.105501px;}
.ha_c00429{height:65.106379px;}
.hc_c00429{height:66.157441px;}
.h11_c00429{height:67.205678px;}
.hd_c00429{height:67.206585px;}
.he_c00429{height:67.208601px;}
.h8_c00429{height:68.257678px;}
.h12_c00429{height:69.300000px;}
.h17_c00429{height:69.304989px;}
.h16_c00429{height:69.305856px;}
.hf_c00429{height:69.306791px;}
.hb_c00429{height:71.408032px;}
.h7_c00429{height:71.409139px;}
.h14_c00429{height:72.454383px;}
.h18_c00429{height:72.456122px;}
.h1a_c00429{height:97.665818px;}
.h1b_c00429{height:247.840140px;}
.h0_c00429{height:1008.450000px;}
.h1_c00429{height:1008.750000px;}
.w1_c00429{width:689.250000px;}
.w0_c00429{width:689.550000px;}
.x0_c00429{left:0.000000px;}
.x86_c00429{left:103.701000px;}
.x8a_c00429{left:108.177810px;}
.x8_c00429{left:132.570000px;}
.x9_c00429{left:139.860000px;}
.x10_c00429{left:141.480000px;}
.x24_c00429{left:144.180000px;}
.x1_c00429{left:153.900000px;}
.x2a_c00429{left:167.670000px;}
.x85_c00429{left:168.750000px;}
.x53_c00429{left:175.150500px;}
.x2e_c00429{left:177.372000px;}
.x2_c00429{left:178.470000px;}
.x18_c00429{left:179.820000px;}
.x83_c00429{left:181.710000px;}
.x11_c00429{left:191.160000px;}
.x1f_c00429{left:194.130000px;}
.x84_c00429{left:197.370000px;}
.x2f_c00429{left:198.393000px;}
.x3_c00429{left:200.880000px;}
.x73_c00429{left:202.377000px;}
.xa_c00429{left:203.850000px;}
.x19_c00429{left:205.740000px;}
.x3c_c00429{left:207.765000px;}
.x46_c00429{left:210.783000px;}
.x12_c00429{left:212.490000px;}
.x4e_c00429{left:213.519000px;}
.x78_c00429{left:214.555500px;}
.xb_c00429{left:216.540000px;}
.x54_c00429{left:218.362500px;}
.x20_c00429{left:219.780000px;}
.x6d_c00429{left:221.400000px;}
.x68_c00429{left:222.928500px;}
.x7f_c00429{left:223.998000px;}
.x2b_c00429{left:228.420000px;}
.x1a_c00429{left:234.090000px;}
.x47_c00429{left:235.924500px;}
.x3d_c00429{left:240.532500px;}
.x25_c00429{left:241.650000px;}
.x41_c00429{left:242.650500px;}
.x36_c00429{left:245.925000px;}
.xc_c00429{left:247.860000px;}
.x13_c00429{left:249.210000px;}
.x5d_c00429{left:250.453500px;}
.x1b_c00429{left:255.150000px;}
.x6e_c00429{left:260.280000px;}
.x26_c00429{left:261.360000px;}
.x4_c00429{left:262.710000px;}
.x74_c00429{left:266.368500px;}
.x69_c00429{left:269.098500px;}
.x30_c00429{left:270.537000px;}
.x2c_c00429{left:272.430000px;}
.x4f_c00429{left:277.236000px;}
.x5e_c00429{left:278.616000px;}
.x14_c00429{left:282.420000px;}
.xd_c00429{left:283.500000px;}
.x21_c00429{left:285.390000px;}
.x79_c00429{left:286.411500px;}
.x27_c00429{left:288.630000px;}
.x37_c00429{left:292.045500px;}
.x60_c00429{left:293.617500px;}
.x5_c00429{left:295.380000px;}
.x75_c00429{left:297.102000px;}
.x15_c00429{left:298.890000px;}
.x1c_c00429{left:303.210000px;}
.x28_c00429{left:306.450000px;}
.x71_c00429{left:308.494500px;}
.xe_c00429{left:310.770000px;}
.x6_c00429{left:313.470000px;}
.x64_c00429{left:315.271500px;}
.x16_c00429{left:317.250000px;}
.x22_c00429{left:319.140000px;}
.x6a_c00429{left:320.944500px;}
.x1d_c00429{left:322.920000px;}
.x55_c00429{left:325.308000px;}
.x6f_c00429{left:329.400000px;}
.x2d_c00429{left:331.020000px;}
.xf_c00429{left:332.640000px;}
.x7e_c00429{left:334.543202px;}
.x50_c00429{left:335.550000px;}
.x7_c00429{left:337.500000px;}
.x38_c00429{left:341.179500px;}
.x76_c00429{left:343.860000px;}
.x29_c00429{left:347.490000px;}
.x31_c00429{left:350.199000px;}
.x17_c00429{left:352.350000px;}
.x5a_c00429{left:353.931000px;}
.x23_c00429{left:356.670000px;}
.x1e_c00429{left:360.180000px;}
.x51_c00429{left:365.266500px;}
.x42_c00429{left:367.408500px;}
.x70_c00429{left:370.710000px;}
.x48_c00429{left:372.535500px;}
.x39_c00429{left:375.547500px;}
.x32_c00429{left:376.597500px;}
.x81_c00429{left:386.844000px;}
.x56_c00429{left:388.255500px;}
.x72_c00429{left:389.505000px;}
.x8c_c00429{left:390.690000px;}
.x91_c00429{left:391.770000px;}
.x5b_c00429{left:392.823000px;}
.x3e_c00429{left:396.316500px;}
.x49_c00429{left:402.232500px;}
.x9c_c00429{left:405.270000px;}
.xa6_c00429{left:406.890000px;}
.x6b_c00429{left:408.694500px;}
.x92_c00429{left:410.130000px;}
.x3f_c00429{left:414.147000px;}
.x33_c00429{left:416.020500px;}
.x77_c00429{left:417.310500px;}
.x43_c00429{left:421.141500px;}
.x4a_c00429{left:422.751000px;}
.x8d_c00429{left:423.900000px;}
.x3a_c00429{left:425.178000px;}
.x9d_c00429{left:426.870000px;}
.x97_c00429{left:427.950000px;}
.x6c_c00429{left:431.656500px;}
.xab_c00429{left:434.631000px;}
.x7c_c00429{left:435.969000px;}
.xa1_c00429{left:437.400000px;}
.x93_c00429{left:439.290000px;}
.x80_c00429{left:441.922500px;}
.x65_c00429{left:443.260500px;}
.x61_c00429{left:445.155000px;}
.x34_c00429{left:447.957000px;}
.xaf_c00429{left:448.957598px;}
.x4b_c00429{left:455.425500px;}
.x5c_c00429{left:457.864500px;}
.x62_c00429{left:458.938500px;}
.x52_c00429{left:460.843500px;}
.x44_c00429{left:462.729000px;}
.x7d_c00429{left:464.656500px;}
.x7a_c00429{left:465.970500px;}
.x3b_c00429{left:468.433500px;}
.x35_c00429{left:469.573500px;}
.x57_c00429{left:471.378000px;}
.xac_c00429{left:475.356766px;}
.x63_c00429{left:481.833000px;}
.x98_c00429{left:484.380000px;}
.x4c_c00429{left:485.407500px;}
.x45_c00429{left:490.266000px;}
.x9e_c00429{left:492.750000px;}
.x40_c00429{left:493.804500px;}
.x82_c00429{left:495.849000px;}
.x8e_c00429{left:501.930000px;}
.xa2_c00429{left:503.550000px;}
.x5f_c00429{left:512.452500px;}
.x66_c00429{left:514.815000px;}
.x4d_c00429{left:516.994500px;}
.xa3_c00429{left:521.910000px;}
.x94_c00429{left:523.530000px;}
.x8f_c00429{left:524.610000px;}
.x87_c00429{left:527.326500px;}
.x99_c00429{left:530.010000px;}
.xa7_c00429{left:534.870000px;}
.x7b_c00429{left:542.065500px;}
.x58_c00429{left:543.231000px;}
.x9a_c00429{left:548.640000px;}
.xa4_c00429{left:552.960000px;}
.x88_c00429{left:554.188500px;}
.xa8_c00429{left:558.630000px;}
.x67_c00429{left:559.855500px;}
.x95_c00429{left:561.600000px;}
.x9f_c00429{left:568.350000px;}
.x9b_c00429{left:570.240000px;}
.xb0_c00429{left:571.262724px;}
.xad_c00429{left:572.591434px;}
.x90_c00429{left:575.640000px;}
.xa9_c00429{left:576.720000px;}
.xa5_c00429{left:581.310000px;}
.x8b_c00429{left:588.330000px;}
.xb1_c00429{left:590.082345px;}
.x59_c00429{left:594.271500px;}
.xaa_c00429{left:598.860000px;}
.x96_c00429{left:607.770000px;}
.xa0_c00429{left:613.440000px;}
.x89_c00429{left:632.368500px;}
.xae_c00429{left:643.178277px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.fs1d_c00429{font-size:39.200000pt;}
.fs1c_c00429{font-size:42.000000pt;}
.fs1e_c00429{font-size:42.933891pt;}
.fs3_c00429{font-size:44.800000pt;}
.fs1b_c00429{font-size:45.733333pt;}
.fs0_c00429{font-size:46.666667pt;}
.fs2_c00429{font-size:47.600000pt;}
.fs1_c00429{font-size:48.533333pt;}
.fs17_c00429{font-size:53.200000pt;}
.fs1a_c00429{font-size:54.133333pt;}
.fs4_c00429{font-size:55.076605pt;}
.fs7_c00429{font-size:56.005488pt;}
.fs11_c00429{font-size:56.936778pt;}
.fs13_c00429{font-size:56.938144pt;}
.fse_c00429{font-size:57.871556pt;}
.fs8_c00429{font-size:57.872337pt;}
.fsa_c00429{font-size:58.806615pt;}
.fsf_c00429{font-size:59.738381pt;}
.fsb_c00429{font-size:59.739187pt;}
.fsc_c00429{font-size:59.740979pt;}
.fs6_c00429{font-size:60.673491pt;}
.fs10_c00429{font-size:61.600000pt;}
.fs15_c00429{font-size:61.604435pt;}
.fs14_c00429{font-size:61.605205pt;}
.fsd_c00429{font-size:61.606037pt;}
.fs9_c00429{font-size:63.473806pt;}
.fs5_c00429{font-size:63.474790pt;}
.fs12_c00429{font-size:64.403896pt;}
.fs16_c00429{font-size:64.405442pt;}
.fs18_c00429{font-size:86.814060pt;}
.fs19_c00429{font-size:220.302347pt;}
.y0_c00429{bottom:0.000000pt;}
.y7_c00429{bottom:156.222667pt;}
.yc7_c00429{bottom:156.484235pt;}
.yc8_c00429{bottom:157.615655pt;}
.yc9_c00429{bottom:158.418671pt;}
.yca_c00429{bottom:159.064919pt;}
.ycb_c00429{bottom:160.012859pt;}
.ycc_c00429{bottom:160.382003pt;}
.ycd_c00429{bottom:161.413331pt;}
.y6_c00429{bottom:172.204000pt;}
.ybf_c00429{bottom:172.822667pt;}
.yc0_c00429{bottom:175.150667pt;}
.yc1_c00429{bottom:176.212007pt;}
.yc2_c00429{bottom:177.351647pt;}
.yc3_c00429{bottom:179.175947pt;}
.yc4_c00429{bottom:180.105287pt;}
.yc5_c00429{bottom:181.728527pt;}
.yc6_c00429{bottom:182.931587pt;}
.ya6_c00429{bottom:188.154667pt;}
.yb8_c00429{bottom:188.882667pt;}
.yb9_c00429{bottom:189.185333pt;}
.yba_c00429{bottom:189.420000pt;}
.ybb_c00429{bottom:189.780000pt;}
.ybc_c00429{bottom:190.414667pt;}
.ybd_c00429{bottom:190.850667pt;}
.ybe_c00429{bottom:191.096000pt;}
.ya5_c00429{bottom:204.254667pt;}
.yb7_c00429{bottom:206.265333pt;}
.y5_c00429{bottom:219.766667pt;}
.yb6_c00429{bottom:222.250667pt;}
.y4_c00429{bottom:235.572000pt;}
.yb5_c00429{bottom:238.269333pt;}
.y3_c00429{bottom:251.646667pt;}
.yb4_c00429{bottom:254.025333pt;}
.y2_c00429{bottom:267.696000pt;}
.yb3_c00429{bottom:270.005333pt;}
.y1_c00429{bottom:283.200000pt;}
.yb2_c00429{bottom:285.992000pt;}
.yb1_c00429{bottom:332.278667pt;}
.y9d_c00429{bottom:349.922667pt;}
.y9e_c00429{bottom:350.587088pt;}
.y9f_c00429{bottom:350.761877pt;}
.ya0_c00429{bottom:351.410941pt;}
.ya1_c00429{bottom:352.031128pt;}
.ya2_c00429{bottom:352.337789pt;}
.ya3_c00429{bottom:353.136527pt;}
.ya4_c00429{bottom:353.597403pt;}
.y94_c00429{bottom:370.321333pt;}
.y95_c00429{bottom:370.548901pt;}
.y96_c00429{bottom:370.822549pt;}
.y97_c00429{bottom:371.207925pt;}
.y98_c00429{bottom:371.565637pt;}
.y99_c00429{bottom:371.842069pt;}
.y9a_c00429{bottom:372.173285pt;}
.y9b_c00429{bottom:372.389685pt;}
.y9c_c00429{bottom:373.147077pt;}
.y93_c00429{bottom:392.877136pt;}
.y91_c00429{bottom:392.877179pt;}
.y92_c00429{bottom:392.877260pt;}
.y88_c00429{bottom:410.642667pt;}
.y89_c00429{bottom:410.966557pt;}
.y8a_c00429{bottom:411.231931pt;}
.y8b_c00429{bottom:411.628621pt;}
.y8c_c00429{bottom:412.389433pt;}
.y8d_c00429{bottom:412.745495pt;}
.y8e_c00429{bottom:413.165724pt;}
.y8f_c00429{bottom:413.621851pt;}
.y90_c00429{bottom:413.953351pt;}
.y80_c00429{bottom:431.041333pt;}
.y81_c00429{bottom:431.496975pt;}
.y82_c00429{bottom:432.327311pt;}
.y83_c00429{bottom:432.632759pt;}
.y84_c00429{bottom:433.272393pt;}
.y85_c00429{bottom:434.014884pt;}
.y86_c00429{bottom:434.402215pt;}
.y87_c00429{bottom:435.281535pt;}
.y78_c00429{bottom:451.441333pt;}
.y79_c00429{bottom:451.694788pt;}
.y7a_c00429{bottom:451.874323pt;}
.y7b_c00429{bottom:452.320483pt;}
.y7c_c00429{bottom:452.620988pt;}
.y7d_c00429{bottom:453.078177pt;}
.y7e_c00429{bottom:453.284288pt;}
.y7f_c00429{bottom:453.796360pt;}
.y72_c00429{bottom:471.841333pt;}
.y73_c00429{bottom:472.174149pt;}
.y74_c00429{bottom:473.121880pt;}
.y75_c00429{bottom:473.684171pt;}
.y76_c00429{bottom:473.913983pt;}
.y77_c00429{bottom:474.845697pt;}
.y71_c00429{bottom:494.004000pt;}
.y67_c00429{bottom:512.401333pt;}
.y68_c00429{bottom:512.913135pt;}
.y69_c00429{bottom:513.203191pt;}
.y6a_c00429{bottom:513.446655pt;}
.y6b_c00429{bottom:513.755552pt;}
.y6c_c00429{bottom:514.045764pt;}
.y6d_c00429{bottom:514.579319pt;}
.y6e_c00429{bottom:515.059764pt;}
.y6f_c00429{bottom:515.325103pt;}
.y70_c00429{bottom:515.793311pt;}
.y5d_c00429{bottom:532.801333pt;}
.y5e_c00429{bottom:533.443516pt;}
.y5f_c00429{bottom:533.753228pt;}
.y60_c00429{bottom:534.383451pt;}
.y61_c00429{bottom:535.091829pt;}
.y62_c00429{bottom:535.544143pt;}
.y63_c00429{bottom:535.862435pt;}
.y64_c00429{bottom:536.298628pt;}
.y65_c00429{bottom:536.689287pt;}
.y66_c00429{bottom:537.209755pt;}
.y54_c00429{bottom:552.962667pt;}
.y55_c00429{bottom:553.775936pt;}
.y56_c00429{bottom:554.427104pt;}
.y57_c00429{bottom:554.649592pt;}
.y58_c00429{bottom:554.901797pt;}
.y59_c00429{bottom:555.348771pt;}
.y5a_c00429{bottom:556.312904pt;}
.y5b_c00429{bottom:556.484432pt;}
.y5c_c00429{bottom:556.769341pt;}
.y4b_c00429{bottom:572.162667pt;}
.y4c_c00429{bottom:572.639019pt;}
.y4d_c00429{bottom:573.202624pt;}
.y4e_c00429{bottom:573.603157pt;}
.y4f_c00429{bottom:574.177792pt;}
.y50_c00429{bottom:574.823317pt;}
.y51_c00429{bottom:575.553813pt;}
.y52_c00429{bottom:576.233643pt;}
.y53_c00429{bottom:576.928832pt;}
.y43_c00429{bottom:592.766667pt;}
.y44_c00429{bottom:593.304173pt;}
.y45_c00429{bottom:593.687363pt;}
.y46_c00429{bottom:594.709269pt;}
.y47_c00429{bottom:595.193259pt;}
.y48_c00429{bottom:595.555915pt;}
.y49_c00429{bottom:596.002664pt;}
.y4a_c00429{bottom:596.399144pt;}
.y3a_c00429{bottom:612.482667pt;}
.y3b_c00429{bottom:613.058827pt;}
.y3c_c00429{bottom:613.465807pt;}
.y3d_c00429{bottom:614.484767pt;}
.y3e_c00429{bottom:614.822907pt;}
.y3f_c00429{bottom:615.324067pt;}
.y40_c00429{bottom:616.432367pt;}
.y41_c00429{bottom:617.390407pt;}
.y42_c00429{bottom:618.070947pt;}
.y33_c00429{bottom:632.402667pt;}
.y34_c00429{bottom:632.896247pt;}
.y35_c00429{bottom:633.745807pt;}
.y36_c00429{bottom:634.523327pt;}
.y37_c00429{bottom:634.919547pt;}
.y38_c00429{bottom:635.603407pt;}
.y39_c00429{bottom:636.193907pt;}
.y29_c00429{bottom:652.562667pt;}
.y2a_c00429{bottom:652.978709pt;}
.y2b_c00429{bottom:653.291581pt;}
.y2c_c00429{bottom:654.171771pt;}
.y2d_c00429{bottom:654.991629pt;}
.y2e_c00429{bottom:655.361192pt;}
.y2f_c00429{bottom:655.616533pt;}
.y30_c00429{bottom:656.023149pt;}
.y31_c00429{bottom:656.396259pt;}
.y32_c00429{bottom:656.789341pt;}
.y20_c00429{bottom:672.962667pt;}
.y21_c00429{bottom:673.402976pt;}
.y22_c00429{bottom:673.772632pt;}
.y23_c00429{bottom:674.004640pt;}
.y24_c00429{bottom:674.697248pt;}
.y25_c00429{bottom:675.325176pt;}
.y26_c00429{bottom:675.993853pt;}
.y27_c00429{bottom:676.511387pt;}
.y28_c00429{bottom:676.854069pt;}
.y18_c00429{bottom:692.642667pt;}
.y19_c00429{bottom:693.048567pt;}
.y1a_c00429{bottom:693.485467pt;}
.y1b_c00429{bottom:694.334107pt;}
.y1c_c00429{bottom:695.033287pt;}
.y1d_c00429{bottom:695.562587pt;}
.y1e_c00429{bottom:695.800327pt;}
.y1f_c00429{bottom:696.862427pt;}
.y10_c00429{bottom:712.562667pt;}
.y11_c00429{bottom:712.949973pt;}
.y12_c00429{bottom:713.538283pt;}
.y13_c00429{bottom:714.194219pt;}
.y14_c00429{bottom:714.893013pt;}
.y15_c00429{bottom:715.381803pt;}
.y16_c00429{bottom:716.087659pt;}
.y17_c00429{bottom:716.702848pt;}
.y8_c00429{bottom:732.484000pt;}
.y9_c00429{bottom:732.839021pt;}
.ya_c00429{bottom:734.057453pt;}
.yb_c00429{bottom:735.402856pt;}
.yc_c00429{bottom:735.848697pt;}
.yd_c00429{bottom:736.514508pt;}
.ye_c00429{bottom:737.053880pt;}
.yf_c00429{bottom:737.418959pt;}
.yaf_c00429{bottom:807.844197pt;}
.yb0_c00429{bottom:814.701083pt;}
.ya7_c00429{bottom:822.484000pt;}
.ya8_c00429{bottom:826.146856pt;}
.ya9_c00429{bottom:827.743480pt;}
.yaa_c00429{bottom:828.108520pt;}
.yab_c00429{bottom:828.719944pt;}
.yac_c00429{bottom:829.262008pt;}
.yad_c00429{bottom:829.691800pt;}
.yae_c00429{bottom:830.942680pt;}
.h1f_c00429{height:39.200000pt;}
.h1e_c00429{height:42.000000pt;}
.h20_c00429{height:42.933891pt;}
.h5_c00429{height:44.800000pt;}
.h1d_c00429{height:45.733333pt;}
.h2_c00429{height:46.666667pt;}
.h4_c00429{height:47.600000pt;}
.h3_c00429{height:48.533333pt;}
.h19_c00429{height:53.200000pt;}
.h1c_c00429{height:54.133333pt;}
.h6_c00429{height:55.076605pt;}
.h9_c00429{height:56.005488pt;}
.h13_c00429{height:56.936778pt;}
.h15_c00429{height:56.938144pt;}
.h10_c00429{height:57.871556pt;}
.ha_c00429{height:57.872337pt;}
.hc_c00429{height:58.806615pt;}
.h11_c00429{height:59.738381pt;}
.hd_c00429{height:59.739187pt;}
.he_c00429{height:59.740979pt;}
.h8_c00429{height:60.673491pt;}
.h12_c00429{height:61.600000pt;}
.h17_c00429{height:61.604435pt;}
.h16_c00429{height:61.605205pt;}
.hf_c00429{height:61.606037pt;}
.hb_c00429{height:63.473806pt;}
.h7_c00429{height:63.474790pt;}
.h14_c00429{height:64.403896pt;}
.h18_c00429{height:64.405442pt;}
.h1a_c00429{height:86.814060pt;}
.h1b_c00429{height:220.302347pt;}
.h0_c00429{height:896.400000pt;}
.h1_c00429{height:896.666667pt;}
.w1_c00429{width:612.666667pt;}
.w0_c00429{width:612.933333pt;}
.x0_c00429{left:0.000000pt;}
.x86_c00429{left:92.178667pt;}
.x8a_c00429{left:96.158053pt;}
.x8_c00429{left:117.840000pt;}
.x9_c00429{left:124.320000pt;}
.x10_c00429{left:125.760000pt;}
.x24_c00429{left:128.160000pt;}
.x1_c00429{left:136.800000pt;}
.x2a_c00429{left:149.040000pt;}
.x85_c00429{left:150.000000pt;}
.x53_c00429{left:155.689333pt;}
.x2e_c00429{left:157.664000pt;}
.x2_c00429{left:158.640000pt;}
.x18_c00429{left:159.840000pt;}
.x83_c00429{left:161.520000pt;}
.x11_c00429{left:169.920000pt;}
.x1f_c00429{left:172.560000pt;}
.x84_c00429{left:175.440000pt;}
.x2f_c00429{left:176.349333pt;}
.x3_c00429{left:178.560000pt;}
.x73_c00429{left:179.890667pt;}
.xa_c00429{left:181.200000pt;}
.x19_c00429{left:182.880000pt;}
.x3c_c00429{left:184.680000pt;}
.x46_c00429{left:187.362667pt;}
.x12_c00429{left:188.880000pt;}
.x4e_c00429{left:189.794667pt;}
.x78_c00429{left:190.716000pt;}
.xb_c00429{left:192.480000pt;}
.x54_c00429{left:194.100000pt;}
.x20_c00429{left:195.360000pt;}
.x6d_c00429{left:196.800000pt;}
.x68_c00429{left:198.158667pt;}
.x7f_c00429{left:199.109333pt;}
.x2b_c00429{left:203.040000pt;}
.x1a_c00429{left:208.080000pt;}
.x47_c00429{left:209.710667pt;}
.x3d_c00429{left:213.806667pt;}
.x25_c00429{left:214.800000pt;}
.x41_c00429{left:215.689333pt;}
.x36_c00429{left:218.600000pt;}
.xc_c00429{left:220.320000pt;}
.x13_c00429{left:221.520000pt;}
.x5d_c00429{left:222.625333pt;}
.x1b_c00429{left:226.800000pt;}
.x6e_c00429{left:231.360000pt;}
.x26_c00429{left:232.320000pt;}
.x4_c00429{left:233.520000pt;}
.x74_c00429{left:236.772000pt;}
.x69_c00429{left:239.198667pt;}
.x30_c00429{left:240.477333pt;}
.x2c_c00429{left:242.160000pt;}
.x4f_c00429{left:246.432000pt;}
.x5e_c00429{left:247.658667pt;}
.x14_c00429{left:251.040000pt;}
.xd_c00429{left:252.000000pt;}
.x21_c00429{left:253.680000pt;}
.x79_c00429{left:254.588000pt;}
.x27_c00429{left:256.560000pt;}
.x37_c00429{left:259.596000pt;}
.x60_c00429{left:260.993333pt;}
.x5_c00429{left:262.560000pt;}
.x75_c00429{left:264.090667pt;}
.x15_c00429{left:265.680000pt;}
.x1c_c00429{left:269.520000pt;}
.x28_c00429{left:272.400000pt;}
.x71_c00429{left:274.217333pt;}
.xe_c00429{left:276.240000pt;}
.x6_c00429{left:278.640000pt;}
.x64_c00429{left:280.241333pt;}
.x16_c00429{left:282.000000pt;}
.x22_c00429{left:283.680000pt;}
.x6a_c00429{left:285.284000pt;}
.x1d_c00429{left:287.040000pt;}
.x55_c00429{left:289.162667pt;}
.x6f_c00429{left:292.800000pt;}
.x2d_c00429{left:294.240000pt;}
.xf_c00429{left:295.680000pt;}
.x7e_c00429{left:297.371735pt;}
.x50_c00429{left:298.266667pt;}
.x7_c00429{left:300.000000pt;}
.x38_c00429{left:303.270667pt;}
.x76_c00429{left:305.653333pt;}
.x29_c00429{left:308.880000pt;}
.x31_c00429{left:311.288000pt;}
.x17_c00429{left:313.200000pt;}
.x5a_c00429{left:314.605333pt;}
.x23_c00429{left:317.040000pt;}
.x1e_c00429{left:320.160000pt;}
.x51_c00429{left:324.681333pt;}
.x42_c00429{left:326.585333pt;}
.x70_c00429{left:329.520000pt;}
.x48_c00429{left:331.142667pt;}
.x39_c00429{left:333.820000pt;}
.x32_c00429{left:334.753333pt;}
.x81_c00429{left:343.861333pt;}
.x56_c00429{left:345.116000pt;}
.x72_c00429{left:346.226667pt;}
.x8c_c00429{left:347.280000pt;}
.x91_c00429{left:348.240000pt;}
.x5b_c00429{left:349.176000pt;}
.x3e_c00429{left:352.281333pt;}
.x49_c00429{left:357.540000pt;}
.x9c_c00429{left:360.240000pt;}
.xa6_c00429{left:361.680000pt;}
.x6b_c00429{left:363.284000pt;}
.x92_c00429{left:364.560000pt;}
.x3f_c00429{left:368.130667pt;}
.x33_c00429{left:369.796000pt;}
.x77_c00429{left:370.942667pt;}
.x43_c00429{left:374.348000pt;}
.x4a_c00429{left:375.778667pt;}
.x8d_c00429{left:376.800000pt;}
.x3a_c00429{left:377.936000pt;}
.x9d_c00429{left:379.440000pt;}
.x97_c00429{left:380.400000pt;}
.x6c_c00429{left:383.694667pt;}
.xab_c00429{left:386.338667pt;}
.x7c_c00429{left:387.528000pt;}
.xa1_c00429{left:388.800000pt;}
.x93_c00429{left:390.480000pt;}
.x80_c00429{left:392.820000pt;}
.x65_c00429{left:394.009333pt;}
.x61_c00429{left:395.693333pt;}
.x34_c00429{left:398.184000pt;}
.xaf_c00429{left:399.073420pt;}
.x4b_c00429{left:404.822667pt;}
.x5c_c00429{left:406.990667pt;}
.x62_c00429{left:407.945333pt;}
.x52_c00429{left:409.638667pt;}
.x44_c00429{left:411.314667pt;}
.x7d_c00429{left:413.028000pt;}
.x7a_c00429{left:414.196000pt;}
.x3b_c00429{left:416.385333pt;}
.x35_c00429{left:417.398667pt;}
.x57_c00429{left:419.002667pt;}
.xac_c00429{left:422.539348pt;}
.x63_c00429{left:428.296000pt;}
.x98_c00429{left:430.560000pt;}
.x4c_c00429{left:431.473333pt;}
.x45_c00429{left:435.792000pt;}
.x9e_c00429{left:438.000000pt;}
.x40_c00429{left:438.937333pt;}
.x82_c00429{left:440.754667pt;}
.x8e_c00429{left:446.160000pt;}
.xa2_c00429{left:447.600000pt;}
.x5f_c00429{left:455.513333pt;}
.x66_c00429{left:457.613333pt;}
.x4d_c00429{left:459.550667pt;}
.xa3_c00429{left:463.920000pt;}
.x94_c00429{left:465.360000pt;}
.x8f_c00429{left:466.320000pt;}
.x87_c00429{left:468.734667pt;}
.x99_c00429{left:471.120000pt;}
.xa7_c00429{left:475.440000pt;}
.x7b_c00429{left:481.836000pt;}
.x58_c00429{left:482.872000pt;}
.x9a_c00429{left:487.680000pt;}
.xa4_c00429{left:491.520000pt;}
.x88_c00429{left:492.612000pt;}
.xa8_c00429{left:496.560000pt;}
.x67_c00429{left:497.649333pt;}
.x95_c00429{left:499.200000pt;}
.x9f_c00429{left:505.200000pt;}
.x9b_c00429{left:506.880000pt;}
.xb0_c00429{left:507.789088pt;}
.xad_c00429{left:508.970164pt;}
.x90_c00429{left:511.680000pt;}
.xa9_c00429{left:512.640000pt;}
.xa5_c00429{left:516.720000pt;}
.x8b_c00429{left:522.960000pt;}
.xb1_c00429{left:524.517640pt;}
.x59_c00429{left:528.241333pt;}
.xaa_c00429{left:532.320000pt;}
.x96_c00429{left:540.240000pt;}
.xa0_c00429{left:545.280000pt;}
.x89_c00429{left:562.105333pt;}
.xae_c00429{left:571.714024pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.m61_c00430{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m77_c00430{transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015590,0.000000,0.000000,0.250000,0,0);}
.m128_c00430{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);}
.m10d_c00430{transform:matrix(0.015810,0.000095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.015810,0.000095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.015810,0.000095,-0.001500,0.249996,0,0);}
.m105_c00430{transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015945,0.000000,0.000000,0.250000,0,0);}
.m123_c00430{transform:matrix(0.021390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021390,0.000000,0.000000,0.250000,0,0);}
.m106_c00430{transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);}
.mfe_c00430{transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);}
.m5f_c00430{transform:matrix(0.062935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062935,0.000000,0.000000,0.250000,0,0);}
.mcd_c00430{transform:matrix(0.108485,0.001085,-0.002500,0.249988,0,0);-ms-transform:matrix(0.108485,0.001085,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.108485,0.001085,-0.002500,0.249988,0,0);}
.meb_c00430{transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112655,0.000000,0.000000,0.250000,0,0);}
.mb4_c00430{transform:matrix(0.132872,0.000930,-0.001750,0.249994,0,0);-ms-transform:matrix(0.132872,0.000930,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.132872,0.000930,-0.001750,0.249994,0,0);}
.mbb_c00430{transform:matrix(0.133182,0.000932,-0.001750,0.249994,0,0);-ms-transform:matrix(0.133182,0.000932,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.133182,0.000932,-0.001750,0.249994,0,0);}
.mb6_c00430{transform:matrix(0.134767,0.000943,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134767,0.000943,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134767,0.000943,-0.001750,0.249994,0,0);}
.mb8_c00430{transform:matrix(0.134857,0.000944,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134857,0.000944,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134857,0.000944,-0.001750,0.249994,0,0);}
.m5_c00430{transform:matrix(0.136444,0.001228,-0.002250,0.249990,0,0);-ms-transform:matrix(0.136444,0.001228,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.136444,0.001228,-0.002250,0.249990,0,0);}
.maf_c00430{transform:matrix(0.137992,0.000966,-0.001750,0.249994,0,0);-ms-transform:matrix(0.137992,0.000966,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.137992,0.000966,-0.001750,0.249994,0,0);}
.mc1_c00430{transform:matrix(0.139106,0.001113,-0.002000,0.249992,0,0);-ms-transform:matrix(0.139106,0.001113,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.139106,0.001113,-0.002000,0.249992,0,0);}
.m3b_c00430{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);}
.mb1_c00430{transform:matrix(0.142991,0.001001,-0.001750,0.249994,0,0);-ms-transform:matrix(0.142991,0.001001,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.142991,0.001001,-0.001750,0.249994,0,0);}
.mac_c00430{transform:matrix(0.145086,0.001016,-0.001750,0.249994,0,0);-ms-transform:matrix(0.145086,0.001016,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.145086,0.001016,-0.001750,0.249994,0,0);}
.mae_c00430{transform:matrix(0.145456,0.001018,-0.001750,0.249994,0,0);-ms-transform:matrix(0.145456,0.001018,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.145456,0.001018,-0.001750,0.249994,0,0);}
.m67_c00430{transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148645,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{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);}
.m7_c00430{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);}
.m4_c00430{transform:matrix(0.149809,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149809,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149809,0.001348,-0.002250,0.249990,0,0);}
.mb7_c00430{transform:matrix(0.150386,0.001053,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150386,0.001053,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150386,0.001053,-0.001750,0.249994,0,0);}
.mc6_c00430{transform:matrix(0.152965,0.001224,-0.002000,0.249992,0,0);-ms-transform:matrix(0.152965,0.001224,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.152965,0.001224,-0.002000,0.249992,0,0);}
.mb0_c00430{transform:matrix(0.153001,0.001071,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153001,0.001071,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153001,0.001071,-0.001750,0.249994,0,0);}
.m24_c00430{transform:matrix(0.154195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154195,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{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);}
.m72_c00430{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);}
.md1_c00430{transform:matrix(0.158422,0.001584,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158422,0.001584,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158422,0.001584,-0.002500,0.249988,0,0);}
.ma1_c00430{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);}
.m23_c00430{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);}
.m85_c00430{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);}
.m2a_c00430{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);}
.me2_c00430{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);}
.m65_c00430{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);}
.ma3_c00430{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{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);}
.mb3_c00430{transform:matrix(0.163521,0.001145,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163521,0.001145,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163521,0.001145,-0.001750,0.249994,0,0);}
.m78_c00430{transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{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);}
.m68_c00430{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);}
.m1e_c00430{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);}
.m56_c00430{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);}
.m25_c00430{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);}
.m1d_c00430{transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167085,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{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);}
.mb_c00430{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);}
.ma2_c00430{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);}
.m2d_c00430{transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);}
.m7f_c00430{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);}
.m80_c00430{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);}
.me3_c00430{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);}
.m28_c00430{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);}
.m69_c00430{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);}
.m73_c00430{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);}
.m12_c00430{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);}
.m70_c00430{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);}
.mb5_c00430{transform:matrix(0.171831,0.001203,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171831,0.001203,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171831,0.001203,-0.001750,0.249994,0,0);}
.mce_c00430{transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);}
.m38_c00430{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);}
.m98_c00430{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);}
.mc9_c00430{transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);}
.m92_c00430{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);}
.m11f_c00430{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);}
.m10e_c00430{transform:matrix(0.173962,0.001044,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173962,0.001044,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173962,0.001044,-0.001500,0.249996,0,0);}
.md4_c00430{transform:matrix(0.174081,0.001741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174081,0.001741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174081,0.001741,-0.002500,0.249988,0,0);}
.m7b_c00430{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);}
.mb9_c00430{transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175081,0.001226,-0.001750,0.249994,0,0);}
.mff_c00430{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);}
.m2b_c00430{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);}
.m9_c00430{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);}
.m99_c00430{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);}
.mf_c00430{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);}
.mdc_c00430{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);}
.m88_c00430{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);}
.m3d_c00430{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);}
.me9_c00430{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);}
.m26_c00430{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);}
.m12a_c00430{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);}
.m89_c00430{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);}
.mf8_c00430{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);}
.ma0_c00430{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);}
.ma9_c00430{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);}
.m10_c00430{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);}
.md_c00430{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);}
.m97_c00430{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);}
.m7a_c00430{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);}
.m2f_c00430{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);}
.mc5_c00430{transform:matrix(0.181394,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181394,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181394,0.001451,-0.002000,0.249992,0,0);}
.m3f_c00430{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m79_c00430{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);}
.m59_c00430{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.ma6_c00430{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);}
.m30_c00430{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);}
.m1c_c00430{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);}
.mc3_c00430{transform:matrix(0.183504,0.001468,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183504,0.001468,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183504,0.001468,-0.002000,0.249992,0,0);}
.m36_c00430{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);}
.m32_c00430{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);}
.m1b_c00430{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);}
.m57_c00430{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);}
.m120_c00430{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);}
.m6f_c00430{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);}
.m7e_c00430{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);}
.m22_c00430{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);}
.m63_c00430{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);}
.mad_c00430{transform:matrix(0.185710,0.001300,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185710,0.001300,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185710,0.001300,-0.001750,0.249994,0,0);}
.m126_c00430{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);}
.m11d_c00430{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);}
.m127_c00430{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);}
.m39_c00430{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);}
.m111_c00430{transform:matrix(0.187567,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187567,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187567,0.001125,-0.001500,0.249996,0,0);}
.m43_c00430{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);}
.m6b_c00430{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);}
.m103_c00430{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);}
.mef_c00430{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);}
.m35_c00430{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);}
.m66_c00430{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);}
.m84_c00430{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);}
.mca_c00430{transform:matrix(0.189156,0.001892,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189156,0.001892,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189156,0.001892,-0.002500,0.249988,0,0);}
.m104_c00430{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_c00430{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);}
.m55_c00430{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);}
.m6c_c00430{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);}
.mec_c00430{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);}
.mcf_c00430{transform:matrix(0.190085,0.001901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190085,0.001901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190085,0.001901,-0.002500,0.249988,0,0);}
.m6d_c00430{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_c00430{transform:matrix(0.191144,0.001529,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191144,0.001529,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191144,0.001529,-0.002000,0.249992,0,0);}
.m4b_c00430{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);}
.m110_c00430{transform:matrix(0.191842,0.001151,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191842,0.001151,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191842,0.001151,-0.001500,0.249996,0,0);}
.m10f_c00430{transform:matrix(0.192157,0.001153,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192157,0.001153,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192157,0.001153,-0.001500,0.249996,0,0);}
.m8a_c00430{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);}
.mcc_c00430{transform:matrix(0.192455,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192455,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192455,0.001925,-0.002500,0.249988,0,0);}
.m8_c00430{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);}
.m4e_c00430{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);}
.m9d_c00430{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);}
.md2_c00430{transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193845,0.001938,-0.002500,0.249988,0,0);}
.me_c00430{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);}
.mfa_c00430{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);}
.m6e_c00430{transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00430{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);}
.m3a_c00430{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);}
.mc7_c00430{transform:matrix(0.194699,0.001558,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194699,0.001558,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194699,0.001558,-0.002000,0.249992,0,0);}
.m2c_c00430{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);}
.m17_c00430{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);}
.mc8_c00430{transform:matrix(0.195304,0.001562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195304,0.001562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195304,0.001562,-0.002000,0.249992,0,0);}
.m5b_c00430{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);}
.m3_c00430{transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195422,0.001759,-0.002250,0.249990,0,0);}
.m7d_c00430{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);}
.m4c_c00430{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);}
.mfb_c00430{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);}
.m5e_c00430{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);}
.m95_c00430{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);}
.ma8_c00430{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);}
.m87_c00430{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);}
.m71_c00430{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);}
.m102_c00430{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{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);}
.m118_c00430{transform:matrix(0.198266,0.001190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198266,0.001190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198266,0.001190,-0.001500,0.249996,0,0);}
.mda_c00430{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);}
.m93_c00430{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);}
.m94_c00430{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);}
.m83_c00430{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);}
.m48_c00430{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);}
.m7c_c00430{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);}
.md8_c00430{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);}
.m6_c00430{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);}
.m16_c00430{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);}
.m40_c00430{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);}
.m10b_c00430{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);}
.m4d_c00430{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);}
.md9_c00430{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);}
.m14_c00430{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);}
.me1_c00430{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);}
.m37_c00430{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);}
.m129_c00430{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);}
.mde_c00430{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);}
.maa_c00430{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);}
.ma7_c00430{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);}
.m108_c00430{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);}
.ma_c00430{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);}
.m34_c00430{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);}
.m100_c00430{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);}
.m116_c00430{transform:matrix(0.206796,0.001241,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206796,0.001241,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206796,0.001241,-0.001500,0.249996,0,0);}
.md5_c00430{transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206985,0.002070,-0.002500,0.249988,0,0);}
.mea_c00430{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);}
.mfd_c00430{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);}
.me4_c00430{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);}
.mee_c00430{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);}
.m1f_c00430{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);}
.mdb_c00430{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);}
.m9e_c00430{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);}
.mc4_c00430{transform:matrix(0.210688,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210688,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210688,0.001686,-0.002000,0.249992,0,0);}
.mf2_c00430{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);}
.m41_c00430{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);}
.m112_c00430{transform:matrix(0.212436,0.001275,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212436,0.001275,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212436,0.001275,-0.001500,0.249996,0,0);}
.m21_c00430{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);}
.mcb_c00430{transform:matrix(0.212799,0.002128,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212799,0.002128,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212799,0.002128,-0.002500,0.249988,0,0);}
.m4a_c00430{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);}
.m117_c00430{transform:matrix(0.213341,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213341,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213341,0.001280,-0.001500,0.249996,0,0);}
.mbc_c00430{transform:matrix(0.213608,0.001709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213608,0.001709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213608,0.001709,-0.002000,0.249992,0,0);}
.mf1_c00430{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);}
.m124_c00430{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);}
.m64_c00430{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);}
.m27_c00430{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);}
.m4f_c00430{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);}
.m46_c00430{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);}
.m86_c00430{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);}
.m81_c00430{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);}
.m109_c00430{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);}
.m91_c00430{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);}
.mf0_c00430{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);}
.m10a_c00430{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);}
.mbe_c00430{transform:matrix(0.217718,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217718,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217718,0.001742,-0.002000,0.249992,0,0);}
.m33_c00430{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);}
.m49_c00430{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);}
.me8_c00430{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);}
.mf9_c00430{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);}
.m5a_c00430{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);}
.m115_c00430{transform:matrix(0.220006,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220006,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220006,0.001320,-0.001500,0.249996,0,0);}
.mf6_c00430{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);}
.mbd_c00430{transform:matrix(0.220813,0.001767,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220813,0.001767,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220813,0.001767,-0.002000,0.249992,0,0);}
.mba_c00430{transform:matrix(0.221240,0.001549,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221240,0.001549,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221240,0.001549,-0.001750,0.249994,0,0);}
.m42_c00430{transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);}
.m5c_c00430{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);}
.md6_c00430{transform:matrix(0.223454,0.002235,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223454,0.002235,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223454,0.002235,-0.002500,0.249988,0,0);}
.me0_c00430{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);}
.m113_c00430{transform:matrix(0.224486,0.001347,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224486,0.001347,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224486,0.001347,-0.001500,0.249996,0,0);}
.m121_c00430{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);}
.m62_c00430{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);}
.mbf_c00430{transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);}
.m29_c00430{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);}
.m8e_c00430{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);}
.m15_c00430{transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);}
.m82_c00430{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);}
.m125_c00430{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);}
.me6_c00430{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);}
.m6a_c00430{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);}
.m44_c00430{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);}
.ma5_c00430{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);}
.m50_c00430{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);}
.m53_c00430{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);}
.md7_c00430{transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);}
.m11_c00430{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);}
.m45_c00430{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);}
.m11e_c00430{transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);}
.m9b_c00430{transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);}
.m107_c00430{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);}
.m58_c00430{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);}
.m9c_c00430{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);}
.m11b_c00430{transform:matrix(0.239381,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239381,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239381,0.001436,-0.001500,0.249996,0,0);}
.m90_c00430{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);}
.mf3_c00430{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);}
.m8b_c00430{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);}
.mc_c00430{transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);}
.m11c_c00430{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);}
.m19_c00430{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.m54_c00430{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.m9f_c00430{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m51_c00430{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);}
.m101_c00430{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);}
.m20_c00430{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);}
.me7_c00430{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);}
.mf5_c00430{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m74_c00430{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{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);}
.mf4_c00430{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);}
.md3_c00430{transform:matrix(0.258207,0.002582,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258207,0.002582,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258207,0.002582,-0.002500,0.249988,0,0);}
.m122_c00430{transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);}
.mf7_c00430{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);}
.m5d_c00430{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);}
.m8f_c00430{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m76_c00430{transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);}
.m11a_c00430{transform:matrix(0.284255,0.001706,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284255,0.001706,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284255,0.001706,-0.001500,0.249996,0,0);}
.m8c_c00430{transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284635,0.000000,0.000000,0.250000,0,0);}
.m12c_c00430{transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);}
.m119_c00430{transform:matrix(0.300400,0.001802,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300400,0.001802,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300400,0.001802,-0.001500,0.249996,0,0);}
.m8d_c00430{transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);}
.m12b_c00430{transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);}
.mab_c00430{transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.310382,0.002793,-0.002250,0.249990,0,0);-ms-transform:matrix(0.310382,0.002793,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.310382,0.002793,-0.002250,0.249990,0,0);}
.mb2_c00430{transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);-ms-transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);}
.md0_c00430{transform:matrix(0.329529,0.003295,-0.002500,0.249988,0,0);-ms-transform:matrix(0.329529,0.003295,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.329529,0.003295,-0.002500,0.249988,0,0);}
.m52_c00430{transform:matrix(0.333485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333485,0.000000,0.000000,0.250000,0,0);}
.mc2_c00430{transform:matrix(0.340949,0.002728,-0.002000,0.249992,0,0);-ms-transform:matrix(0.340949,0.002728,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.340949,0.002728,-0.002000,0.249992,0,0);}
.ma4_c00430{transform:matrix(0.341330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341330,0.000000,0.000000,0.250000,0,0);}
.mdf_c00430{transform:matrix(0.343275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343275,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.366390,0.003298,-0.002250,0.249990,0,0);-ms-transform:matrix(0.366390,0.003298,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.366390,0.003298,-0.002250,0.249990,0,0);}
.m75_c00430{transform:matrix(0.367820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367820,0.000000,0.000000,0.250000,0,0);}
.mfc_c00430{transform:matrix(0.369980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369980,0.000000,0.000000,0.250000,0,0);}
.med_c00430{transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377230,0.000000,0.000000,0.250000,0,0);}
.me5_c00430{transform:matrix(0.380740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380740,0.000000,0.000000,0.250000,0,0);}
.m114_c00430{transform:matrix(0.383148,0.002299,-0.001500,0.249996,0,0);-ms-transform:matrix(0.383148,0.002299,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.383148,0.002299,-0.001500,0.249996,0,0);}
.m0_c00430{transform:matrix(0.394744,0.003553,-0.002250,0.249990,0,0);-ms-transform:matrix(0.394744,0.003553,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.394744,0.003553,-0.002250,0.249990,0,0);}
.m9a_c00430{transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415105,0.000000,0.000000,0.250000,0,0);}
.m12d_c00430{transform:matrix(0.416625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416625,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420740,0.000000,0.000000,0.250000,0,0);}
.m10c_c00430{transform:matrix(0.451535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451535,0.000000,0.000000,0.250000,0,0);}
.v1_c00430{vertical-align:-1.302000px;}
.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;}
._0_c00430{width:23.286877px;}
.fc0_c00430{color:transparent;}
.fs12_c00430{font-size:48.300869px;}
.fs10_c00430{font-size:49.350000px;}
.fsf_c00430{font-size:50.400000px;}
.fse_c00430{font-size:52.502625px;}
.fs11_c00430{font-size:53.550000px;}
.fsd_c00430{font-size:54.601747px;}
.fsa_c00430{font-size:60.900000px;}
.fs13_c00430{font-size:61.950000px;}
.fs7_c00430{font-size:63.000000px;}
.fsc_c00430{font-size:63.001543px;}
.fsb_c00430{font-size:65.100000px;}
.fs9_c00430{font-size:67.200000px;}
.fs4_c00430{font-size:68.250000px;}
.fs2_c00430{font-size:70.350000px;}
.fs6_c00430{font-size:71.400000px;}
.fs3_c00430{font-size:72.450000px;}
.fs5_c00430{font-size:73.500000px;}
.fs8_c00430{font-size:75.600000px;}
.fs1_c00430{font-size:132.305358px;}
.fs0_c00430{font-size:223.659058px;}
.y0_c00430{bottom:0.000000px;}
.y75_c00430{bottom:130.066500px;}
.y74_c00430{bottom:158.658000px;}
.y73_c00430{bottom:174.923937px;}
.y72_c00430{bottom:175.019607px;}
.y71_c00430{bottom:175.254435px;}
.y70_c00430{bottom:175.409982px;}
.y6f_c00430{bottom:175.641588px;}
.y6e_c00430{bottom:175.858785px;}
.y6d_c00430{bottom:176.033538px;}
.y6c_c00430{bottom:176.127723px;}
.y6b_c00430{bottom:176.456520px;}
.y6a_c00430{bottom:176.607099px;}
.y69_c00430{bottom:176.957082px;}
.y68_c00430{bottom:177.065523px;}
.y67_c00430{bottom:177.402600px;}
.y66_c00430{bottom:177.530445px;}
.y65_c00430{bottom:177.660000px;}
.y64_c00430{bottom:193.639500px;}
.y63_c00430{bottom:211.617000px;}
.y62_c00430{bottom:229.093500px;}
.y61_c00430{bottom:247.179000px;}
.y60_c00430{bottom:262.101180px;}
.y5f_c00430{bottom:262.700520px;}
.y5e_c00430{bottom:262.873425px;}
.y5d_c00430{bottom:263.186670px;}
.y5c_c00430{bottom:263.397255px;}
.y5b_c00430{bottom:264.018285px;}
.y5a_c00430{bottom:264.264000px;}
.y59_c00430{bottom:264.396510px;}
.y58_c00430{bottom:264.604110px;}
.y57_c00430{bottom:265.030800px;}
.y56_c00430{bottom:265.175865px;}
.y55_c00430{bottom:265.535700px;}
.y54_c00430{bottom:266.097270px;}
.y53_c00430{bottom:266.507655px;}
.y52_c00430{bottom:266.761500px;}
.y51_c00430{bottom:281.039712px;}
.y50_c00430{bottom:281.255496px;}
.y4f_c00430{bottom:281.359392px;}
.y4e_c00430{bottom:281.687808px;}
.y4d_c00430{bottom:282.277500px;}
.y4c_c00430{bottom:282.582072px;}
.y4b_c00430{bottom:282.694452px;}
.y4a_c00430{bottom:282.893040px;}
.y49_c00430{bottom:283.424388px;}
.y48_c00430{bottom:283.608012px;}
.y47_c00430{bottom:284.048652px;}
.y46_c00430{bottom:284.180412px;}
.y45_c00430{bottom:284.580000px;}
.y44_c00430{bottom:299.103756px;}
.y43_c00430{bottom:299.215245px;}
.y42_c00430{bottom:299.661379px;}
.y41_c00430{bottom:299.782340px;}
.y40_c00430{bottom:299.976978px;}
.y3f_c00430{bottom:300.094032px;}
.y3e_c00430{bottom:300.222783px;}
.y3d_c00430{bottom:300.364491px;}
.y3c_c00430{bottom:300.651761px;}
.y3b_c00430{bottom:300.765276px;}
.y3a_c00430{bottom:300.914366px;}
.y39_c00430{bottom:301.303853px;}
.y38_c00430{bottom:301.504108px;}
.y37_c00430{bottom:301.628849px;}
.y36_c00430{bottom:302.057868px;}
.y35_c00430{bottom:302.400000px;}
.y34_c00430{bottom:351.766500px;}
.y33_c00430{bottom:374.128500px;}
.y32_c00430{bottom:397.941000px;}
.y31_c00430{bottom:418.210500px;}
.y30_c00430{bottom:418.456500px;}
.y2f_c00430{bottom:418.828500px;}
.y2e_c00430{bottom:419.094000px;}
.y2d_c00430{bottom:419.437500px;}
.y2c_c00430{bottom:419.902500px;}
.y2b_c00430{bottom:420.451500px;}
.y2a_c00430{bottom:420.721500px;}
.y29_c00430{bottom:420.928500px;}
.y28_c00430{bottom:442.275000px;}
.y27_c00430{bottom:462.768000px;}
.y26_c00430{bottom:463.113000px;}
.y25_c00430{bottom:463.509000px;}
.y24_c00430{bottom:463.876500px;}
.y23_c00430{bottom:464.367000px;}
.y22_c00430{bottom:464.566500px;}
.y21_c00430{bottom:465.222000px;}
.y20_c00430{bottom:465.684000px;}
.y1f_c00430{bottom:466.060500px;}
.y1e_c00430{bottom:466.290000px;}
.y1d_c00430{bottom:487.305000px;}
.y1c_c00430{bottom:510.201000px;}
.y1b_c00430{bottom:532.921500px;}
.y1a_c00430{bottom:555.979500px;}
.y19_c00430{bottom:578.637000px;}
.y18_c00430{bottom:600.916500px;}
.y17_c00430{bottom:623.356500px;}
.y16_c00430{bottom:646.072500px;}
.y15_c00430{bottom:666.993000px;}
.y14_c00430{bottom:667.272000px;}
.y13_c00430{bottom:667.704000px;}
.y12_c00430{bottom:667.890000px;}
.y11_c00430{bottom:668.199000px;}
.y10_c00430{bottom:668.521500px;}
.yf_c00430{bottom:668.863500px;}
.ye_c00430{bottom:669.282000px;}
.yd_c00430{bottom:669.600000px;}
.yc_c00430{bottom:691.405500px;}
.yb_c00430{bottom:714.309000px;}
.ya_c00430{bottom:736.777500px;}
.y9_c00430{bottom:759.439500px;}
.y8_c00430{bottom:781.731000px;}
.y7_c00430{bottom:803.887500px;}
.y6_c00430{bottom:847.255174px;}
.y5_c00430{bottom:848.483051px;}
.y4_c00430{bottom:849.641736px;}
.y3_c00430{bottom:852.933545px;}
.y2_c00430{bottom:892.067504px;}
.y1_c00430{bottom:894.784500px;}
.h14_c00430{height:48.300869px;}
.h12_c00430{height:49.350000px;}
.h11_c00430{height:50.400000px;}
.h10_c00430{height:52.502625px;}
.h13_c00430{height:53.550000px;}
.hf_c00430{height:54.601747px;}
.hc_c00430{height:60.900000px;}
.h15_c00430{height:61.950000px;}
.h9_c00430{height:63.000000px;}
.he_c00430{height:63.001543px;}
.hd_c00430{height:65.100000px;}
.hb_c00430{height:67.200000px;}
.h6_c00430{height:68.250000px;}
.h4_c00430{height:70.350000px;}
.h8_c00430{height:71.400000px;}
.h5_c00430{height:72.450000px;}
.h7_c00430{height:73.500000px;}
.ha_c00430{height:75.600000px;}
.h3_c00430{height:132.305358px;}
.h2_c00430{height:223.659058px;}
.h1_c00430{height:1005.000000px;}
.h0_c00430{height:1005.150000px;}
.w0_c00430{width:715.200000px;}
.w1_c00430{width:715.500000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:59.067000px;}
.xa4_c00430{left:70.437000px;}
.x97_c00430{left:83.700000px;}
.xab_c00430{left:89.910000px;}
.x91_c00430{left:92.340000px;}
.x78_c00430{left:93.348000px;}
.xac_c00430{left:103.410000px;}
.xb0_c00430{left:108.540000px;}
.xa5_c00430{left:113.337000px;}
.x8a_c00430{left:118.167000px;}
.x9e_c00430{left:123.120000px;}
.x9d_c00430{left:124.470000px;}
.x98_c00430{left:127.170000px;}
.x63_c00430{left:131.221500px;}
.x12_c00430{left:133.380000px;}
.x50_c00430{left:134.460000px;}
.x1e_c00430{left:135.540000px;}
.x7_c00430{left:136.890000px;}
.x79_c00430{left:142.224000px;}
.x82_c00430{left:143.293500px;}
.x92_c00430{left:146.610000px;}
.x68_c00430{left:157.611000px;}
.x4a_c00430{left:158.760000px;}
.x3e_c00430{left:160.380000px;}
.x25_c00430{left:162.270000px;}
.x28_c00430{left:163.620000px;}
.x31_c00430{left:166.320000px;}
.x1f_c00430{left:170.370000px;}
.x93_c00430{left:171.450000px;}
.x58_c00430{left:173.340000px;}
.x2c_c00430{left:175.698000px;}
.x8_c00430{left:179.550000px;}
.x64_c00430{left:180.631500px;}
.x18_c00430{left:186.570000px;}
.xa6_c00430{left:187.590000px;}
.x99_c00430{left:189.270000px;}
.x3_c00430{left:191.140569px;}
.x4b_c00430{left:192.510000px;}
.x55_c00430{left:194.130000px;}
.x9_c00430{left:197.640000px;}
.x13_c00430{left:199.800000px;}
.x3f_c00430{left:201.150000px;}
.x19_c00430{left:202.230000px;}
.x72_c00430{left:203.851500px;}
.x65_c00430{left:204.931500px;}
.xad_c00430{left:207.630000px;}
.x20_c00430{left:210.060000px;}
.x26_c00430{left:212.760000px;}
.x83_c00430{left:214.843500px;}
.x32_c00430{left:219.240000px;}
.x29_c00430{left:221.130000px;}
.x51_c00430{left:222.210000px;}
.x73_c00430{left:223.831500px;}
.x9f_c00430{left:226.530000px;}
.x2d_c00430{left:228.037500px;}
.x40_c00430{left:232.470000px;}
.x38_c00430{left:234.630000px;}
.x84_c00430{left:237.796500px;}
.xa_c00430{left:239.220000px;}
.x1a_c00430{left:240.840000px;}
.x33_c00430{left:244.350000px;}
.x14_c00430{left:245.430000px;}
.x59_c00430{left:247.590000px;}
.x7a_c00430{left:249.940500px;}
.x5f_c00430{left:250.980000px;}
.x69_c00430{left:259.860000px;}
.x39_c00430{left:262.980000px;}
.xae_c00430{left:264.330000px;}
.x8b_c00430{left:265.852500px;}
.x41_c00430{left:270.000000px;}
.xb_c00430{left:271.350000px;}
.x48_c00430{left:274.860000px;}
.x6c_c00430{left:276.481500px;}
.x5a_c00430{left:279.990000px;}
.x66_c00430{left:284.311500px;}
.x4c_c00430{left:285.930000px;}
.x56_c00430{left:288.090000px;}
.x34_c00430{left:292.140000px;}
.x74_c00430{left:295.921500px;}
.x6d_c00430{left:297.271500px;}
.x21_c00430{left:299.160000px;}
.xaf_c00430{left:301.050000px;}
.x9a_c00430{left:302.940000px;}
.x1b_c00430{left:304.560000px;}
.x7b_c00430{left:305.581500px;}
.x8c_c00430{left:308.521500px;}
.x2e_c00430{left:310.929000px;}
.x2a_c00430{left:317.790000px;}
.x3a_c00430{left:319.410000px;}
.x22_c00430{left:321.840000px;}
.xc_c00430{left:324.000000px;}
.xa7_c00430{left:325.816500px;}
.x7c_c00430{left:326.880000px;}
.x42_c00430{left:328.320000px;}
.x5b_c00430{left:329.400000px;}
.x1c_c00430{left:332.100000px;}
.x4d_c00430{left:333.720000px;}
.x75_c00430{left:338.311500px;}
.x52_c00430{left:340.740000px;}
.x94_c00430{left:342.090000px;}
.x7d_c00430{left:343.096500px;}
.x60_c00430{left:346.020000px;}
.x57_c00430{left:347.220000px;}
.x2b_c00430{left:349.110000px;}
.x3b_c00430{left:350.190000px;}
.x35_c00430{left:351.540000px;}
.x27_c00430{left:354.240000px;}
.xd_c00430{left:357.480000px;}
.x6e_c00430{left:359.641500px;}
.x2_c00430{left:360.955500px;}
.x4e_c00430{left:367.200000px;}
.x23_c00430{left:370.710000px;}
.x2f_c00430{left:372.760500px;}
.x1d_c00430{left:377.460000px;}
.xa0_c00430{left:378.810000px;}
.x85_c00430{left:381.157500px;}
.x15_c00430{left:382.320000px;}
.x43_c00430{left:384.480000px;}
.x76_c00430{left:385.561500px;}
.xe_c00430{left:391.500000px;}
.x6a_c00430{left:394.086000px;}
.x4_c00430{left:396.884109px;}
.x61_c00430{left:400.555500px;}
.x7e_c00430{left:404.379000px;}
.xa8_c00430{left:406.839000px;}
.x36_c00430{left:409.320000px;}
.x24_c00430{left:411.750000px;}
.xa1_c00430{left:412.830000px;}
.x5c_c00430{left:415.260000px;}
.x6f_c00430{left:416.341500px;}
.x53_c00430{left:419.310000px;}
.xf_c00430{left:421.200000px;}
.x67_c00430{left:422.281500px;}
.x3c_c00430{left:424.710000px;}
.xb1_c00430{left:426.330000px;}
.x16_c00430{left:427.410000px;}
.x8d_c00430{left:429.207000px;}
.x77_c00430{left:432.811500px;}
.x70_c00430{left:433.891500px;}
.x9b_c00430{left:436.320000px;}
.x7f_c00430{left:439.494000px;}
.x5d_c00430{left:440.640000px;}
.x44_c00430{left:442.530000px;}
.x49_c00430{left:444.690000px;}
.x37_c00430{left:446.580000px;}
.x8e_c00430{left:450.265500px;}
.x4f_c00430{left:451.980000px;}
.x86_c00430{left:454.869000px;}
.x17_c00430{left:456.570000px;}
.x3d_c00430{left:457.650000px;}
.x30_c00430{left:461.581500px;}
.x5e_c00430{left:462.780000px;}
.x10_c00430{left:465.750000px;}
.x45_c00430{left:467.370000px;}
.x5_c00430{left:469.289046px;}
.x6b_c00430{left:471.348000px;}
.x71_c00430{left:480.331500px;}
.x8f_c00430{left:481.590000px;}
.x54_c00430{left:484.650000px;}
.xa2_c00430{left:486.270000px;}
.x11_c00430{left:494.370000px;}
.x87_c00430{left:495.921000px;}
.x46_c00430{left:498.690000px;}
.x95_c00430{left:503.550000px;}
.x88_c00430{left:508.908000px;}
.xa9_c00430{left:510.502500px;}
.xa3_c00430{left:513.540000px;}
.x62_c00430{left:523.677000px;}
.xaa_c00430{left:526.447500px;}
.x89_c00430{left:535.881000px;}
.x47_c00430{left:538.380000px;}
.x6_c00430{left:546.048213px;}
.x80_c00430{left:548.313000px;}
.x9c_c00430{left:556.200000px;}
.x96_c00430{left:557.280000px;}
.x90_c00430{left:558.814500px;}
.x81_c00430{left:564.240000px;}
@media print{
.v1_c00430{vertical-align:-1.157333pt;}
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
._0_c00430{width:20.699447pt;}
.fs12_c00430{font-size:42.934106pt;}
.fs10_c00430{font-size:43.866667pt;}
.fsf_c00430{font-size:44.800000pt;}
.fse_c00430{font-size:46.669000pt;}
.fs11_c00430{font-size:47.600000pt;}
.fsd_c00430{font-size:48.534886pt;}
.fsa_c00430{font-size:54.133333pt;}
.fs13_c00430{font-size:55.066667pt;}
.fs7_c00430{font-size:56.000000pt;}
.fsc_c00430{font-size:56.001372pt;}
.fsb_c00430{font-size:57.866667pt;}
.fs9_c00430{font-size:59.733333pt;}
.fs4_c00430{font-size:60.666667pt;}
.fs2_c00430{font-size:62.533333pt;}
.fs6_c00430{font-size:63.466667pt;}
.fs3_c00430{font-size:64.400000pt;}
.fs5_c00430{font-size:65.333333pt;}
.fs8_c00430{font-size:67.200000pt;}
.fs1_c00430{font-size:117.604763pt;}
.fs0_c00430{font-size:198.808051pt;}
.y0_c00430{bottom:0.000000pt;}
.y75_c00430{bottom:115.614667pt;}
.y74_c00430{bottom:141.029333pt;}
.y73_c00430{bottom:155.487944pt;}
.y72_c00430{bottom:155.572984pt;}
.y71_c00430{bottom:155.781720pt;}
.y70_c00430{bottom:155.919984pt;}
.y6f_c00430{bottom:156.125856pt;}
.y6e_c00430{bottom:156.318920pt;}
.y6d_c00430{bottom:156.474256pt;}
.y6c_c00430{bottom:156.557976pt;}
.y6b_c00430{bottom:156.850240pt;}
.y6a_c00430{bottom:156.984088pt;}
.y69_c00430{bottom:157.295184pt;}
.y68_c00430{bottom:157.391576pt;}
.y67_c00430{bottom:157.691200pt;}
.y66_c00430{bottom:157.804840pt;}
.y65_c00430{bottom:157.920000pt;}
.y64_c00430{bottom:172.124000pt;}
.y63_c00430{bottom:188.104000pt;}
.y62_c00430{bottom:203.638667pt;}
.y61_c00430{bottom:219.714667pt;}
.y60_c00430{bottom:232.978827pt;}
.y5f_c00430{bottom:233.511573pt;}
.y5e_c00430{bottom:233.665267pt;}
.y5d_c00430{bottom:233.943707pt;}
.y5c_c00430{bottom:234.130893pt;}
.y5b_c00430{bottom:234.682920pt;}
.y5a_c00430{bottom:234.901333pt;}
.y59_c00430{bottom:235.019120pt;}
.y58_c00430{bottom:235.203653pt;}
.y57_c00430{bottom:235.582933pt;}
.y56_c00430{bottom:235.711880pt;}
.y55_c00430{bottom:236.031733pt;}
.y54_c00430{bottom:236.530907pt;}
.y53_c00430{bottom:236.895693pt;}
.y52_c00430{bottom:237.121333pt;}
.y51_c00430{bottom:249.813077pt;}
.y50_c00430{bottom:250.004885pt;}
.y4f_c00430{bottom:250.097237pt;}
.y4e_c00430{bottom:250.389163pt;}
.y4d_c00430{bottom:250.913333pt;}
.y4c_c00430{bottom:251.184064pt;}
.y4b_c00430{bottom:251.283957pt;}
.y4a_c00430{bottom:251.460480pt;}
.y49_c00430{bottom:251.932789pt;}
.y48_c00430{bottom:252.096011pt;}
.y47_c00430{bottom:252.487691pt;}
.y46_c00430{bottom:252.604811pt;}
.y45_c00430{bottom:252.960000pt;}
.y44_c00430{bottom:265.870005pt;}
.y43_c00430{bottom:265.969107pt;}
.y42_c00430{bottom:266.365671pt;}
.y41_c00430{bottom:266.473191pt;}
.y40_c00430{bottom:266.646203pt;}
.y3f_c00430{bottom:266.750251pt;}
.y3e_c00430{bottom:266.864696pt;}
.y3d_c00430{bottom:266.990659pt;}
.y3c_c00430{bottom:267.246009pt;}
.y3b_c00430{bottom:267.346912pt;}
.y3a_c00430{bottom:267.479436pt;}
.y39_c00430{bottom:267.825647pt;}
.y38_c00430{bottom:268.003652pt;}
.y37_c00430{bottom:268.114532pt;}
.y36_c00430{bottom:268.495883pt;}
.y35_c00430{bottom:268.800000pt;}
.y34_c00430{bottom:312.681333pt;}
.y33_c00430{bottom:332.558667pt;}
.y32_c00430{bottom:353.725333pt;}
.y31_c00430{bottom:371.742667pt;}
.y30_c00430{bottom:371.961333pt;}
.y2f_c00430{bottom:372.292000pt;}
.y2e_c00430{bottom:372.528000pt;}
.y2d_c00430{bottom:372.833333pt;}
.y2c_c00430{bottom:373.246667pt;}
.y2b_c00430{bottom:373.734667pt;}
.y2a_c00430{bottom:373.974667pt;}
.y29_c00430{bottom:374.158667pt;}
.y28_c00430{bottom:393.133333pt;}
.y27_c00430{bottom:411.349333pt;}
.y26_c00430{bottom:411.656000pt;}
.y25_c00430{bottom:412.008000pt;}
.y24_c00430{bottom:412.334667pt;}
.y23_c00430{bottom:412.770667pt;}
.y22_c00430{bottom:412.948000pt;}
.y21_c00430{bottom:413.530667pt;}
.y20_c00430{bottom:413.941333pt;}
.y1f_c00430{bottom:414.276000pt;}
.y1e_c00430{bottom:414.480000pt;}
.y1d_c00430{bottom:433.160000pt;}
.y1c_c00430{bottom:453.512000pt;}
.y1b_c00430{bottom:473.708000pt;}
.y1a_c00430{bottom:494.204000pt;}
.y19_c00430{bottom:514.344000pt;}
.y18_c00430{bottom:534.148000pt;}
.y17_c00430{bottom:554.094667pt;}
.y16_c00430{bottom:574.286667pt;}
.y15_c00430{bottom:592.882667pt;}
.y14_c00430{bottom:593.130667pt;}
.y13_c00430{bottom:593.514667pt;}
.y12_c00430{bottom:593.680000pt;}
.y11_c00430{bottom:593.954667pt;}
.y10_c00430{bottom:594.241333pt;}
.yf_c00430{bottom:594.545333pt;}
.ye_c00430{bottom:594.917333pt;}
.yd_c00430{bottom:595.200000pt;}
.yc_c00430{bottom:614.582667pt;}
.yb_c00430{bottom:634.941333pt;}
.ya_c00430{bottom:654.913333pt;}
.y9_c00430{bottom:675.057333pt;}
.y8_c00430{bottom:694.872000pt;}
.y7_c00430{bottom:714.566667pt;}
.y6_c00430{bottom:753.115711pt;}
.y5_c00430{bottom:754.207156pt;}
.y4_c00430{bottom:755.237099pt;}
.y3_c00430{bottom:758.163151pt;}
.y2_c00430{bottom:792.948892pt;}
.y1_c00430{bottom:795.364000pt;}
.h14_c00430{height:42.934106pt;}
.h12_c00430{height:43.866667pt;}
.h11_c00430{height:44.800000pt;}
.h10_c00430{height:46.669000pt;}
.h13_c00430{height:47.600000pt;}
.hf_c00430{height:48.534886pt;}
.hc_c00430{height:54.133333pt;}
.h15_c00430{height:55.066667pt;}
.h9_c00430{height:56.000000pt;}
.he_c00430{height:56.001372pt;}
.hd_c00430{height:57.866667pt;}
.hb_c00430{height:59.733333pt;}
.h6_c00430{height:60.666667pt;}
.h4_c00430{height:62.533333pt;}
.h8_c00430{height:63.466667pt;}
.h5_c00430{height:64.400000pt;}
.h7_c00430{height:65.333333pt;}
.ha_c00430{height:67.200000pt;}
.h3_c00430{height:117.604763pt;}
.h2_c00430{height:198.808051pt;}
.h1_c00430{height:893.333333pt;}
.h0_c00430{height:893.466667pt;}
.w0_c00430{width:635.733333pt;}
.w1_c00430{width:636.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:52.504000pt;}
.xa4_c00430{left:62.610667pt;}
.x97_c00430{left:74.400000pt;}
.xab_c00430{left:79.920000pt;}
.x91_c00430{left:82.080000pt;}
.x78_c00430{left:82.976000pt;}
.xac_c00430{left:91.920000pt;}
.xb0_c00430{left:96.480000pt;}
.xa5_c00430{left:100.744000pt;}
.x8a_c00430{left:105.037333pt;}
.x9e_c00430{left:109.440000pt;}
.x9d_c00430{left:110.640000pt;}
.x98_c00430{left:113.040000pt;}
.x63_c00430{left:116.641333pt;}
.x12_c00430{left:118.560000pt;}
.x50_c00430{left:119.520000pt;}
.x1e_c00430{left:120.480000pt;}
.x7_c00430{left:121.680000pt;}
.x79_c00430{left:126.421333pt;}
.x82_c00430{left:127.372000pt;}
.x92_c00430{left:130.320000pt;}
.x68_c00430{left:140.098667pt;}
.x4a_c00430{left:141.120000pt;}
.x3e_c00430{left:142.560000pt;}
.x25_c00430{left:144.240000pt;}
.x28_c00430{left:145.440000pt;}
.x31_c00430{left:147.840000pt;}
.x1f_c00430{left:151.440000pt;}
.x93_c00430{left:152.400000pt;}
.x58_c00430{left:154.080000pt;}
.x2c_c00430{left:156.176000pt;}
.x8_c00430{left:159.600000pt;}
.x64_c00430{left:160.561333pt;}
.x18_c00430{left:165.840000pt;}
.xa6_c00430{left:166.746667pt;}
.x99_c00430{left:168.240000pt;}
.x3_c00430{left:169.902728pt;}
.x4b_c00430{left:171.120000pt;}
.x55_c00430{left:172.560000pt;}
.x9_c00430{left:175.680000pt;}
.x13_c00430{left:177.600000pt;}
.x3f_c00430{left:178.800000pt;}
.x19_c00430{left:179.760000pt;}
.x72_c00430{left:181.201333pt;}
.x65_c00430{left:182.161333pt;}
.xad_c00430{left:184.560000pt;}
.x20_c00430{left:186.720000pt;}
.x26_c00430{left:189.120000pt;}
.x83_c00430{left:190.972000pt;}
.x32_c00430{left:194.880000pt;}
.x29_c00430{left:196.560000pt;}
.x51_c00430{left:197.520000pt;}
.x73_c00430{left:198.961333pt;}
.x9f_c00430{left:201.360000pt;}
.x2d_c00430{left:202.700000pt;}
.x40_c00430{left:206.640000pt;}
.x38_c00430{left:208.560000pt;}
.x84_c00430{left:211.374667pt;}
.xa_c00430{left:212.640000pt;}
.x1a_c00430{left:214.080000pt;}
.x33_c00430{left:217.200000pt;}
.x14_c00430{left:218.160000pt;}
.x59_c00430{left:220.080000pt;}
.x7a_c00430{left:222.169333pt;}
.x5f_c00430{left:223.093333pt;}
.x69_c00430{left:230.986667pt;}
.x39_c00430{left:233.760000pt;}
.xae_c00430{left:234.960000pt;}
.x8b_c00430{left:236.313333pt;}
.x41_c00430{left:240.000000pt;}
.xb_c00430{left:241.200000pt;}
.x48_c00430{left:244.320000pt;}
.x6c_c00430{left:245.761333pt;}
.x5a_c00430{left:248.880000pt;}
.x66_c00430{left:252.721333pt;}
.x4c_c00430{left:254.160000pt;}
.x56_c00430{left:256.080000pt;}
.x34_c00430{left:259.680000pt;}
.x74_c00430{left:263.041333pt;}
.x6d_c00430{left:264.241333pt;}
.x21_c00430{left:265.920000pt;}
.xaf_c00430{left:267.600000pt;}
.x9a_c00430{left:269.280000pt;}
.x1b_c00430{left:270.720000pt;}
.x7b_c00430{left:271.628000pt;}
.x8c_c00430{left:274.241333pt;}
.x2e_c00430{left:276.381333pt;}
.x2a_c00430{left:282.480000pt;}
.x3a_c00430{left:283.920000pt;}
.x22_c00430{left:286.080000pt;}
.xc_c00430{left:288.000000pt;}
.xa7_c00430{left:289.614667pt;}
.x7c_c00430{left:290.560000pt;}
.x42_c00430{left:291.840000pt;}
.x5b_c00430{left:292.800000pt;}
.x1c_c00430{left:295.200000pt;}
.x4d_c00430{left:296.640000pt;}
.x75_c00430{left:300.721333pt;}
.x52_c00430{left:302.880000pt;}
.x94_c00430{left:304.080000pt;}
.x7d_c00430{left:304.974667pt;}
.x60_c00430{left:307.573333pt;}
.x57_c00430{left:308.640000pt;}
.x2b_c00430{left:310.320000pt;}
.x3b_c00430{left:311.280000pt;}
.x35_c00430{left:312.480000pt;}
.x27_c00430{left:314.880000pt;}
.xd_c00430{left:317.760000pt;}
.x6e_c00430{left:319.681333pt;}
.x2_c00430{left:320.849333pt;}
.x4e_c00430{left:326.400000pt;}
.x23_c00430{left:329.520000pt;}
.x2f_c00430{left:331.342667pt;}
.x1d_c00430{left:335.520000pt;}
.xa0_c00430{left:336.720000pt;}
.x85_c00430{left:338.806667pt;}
.x15_c00430{left:339.840000pt;}
.x43_c00430{left:341.760000pt;}
.x76_c00430{left:342.721333pt;}
.xe_c00430{left:348.000000pt;}
.x6a_c00430{left:350.298667pt;}
.x4_c00430{left:352.785875pt;}
.x61_c00430{left:356.049333pt;}
.x7e_c00430{left:359.448000pt;}
.xa8_c00430{left:361.634667pt;}
.x36_c00430{left:363.840000pt;}
.x24_c00430{left:366.000000pt;}
.xa1_c00430{left:366.960000pt;}
.x5c_c00430{left:369.120000pt;}
.x6f_c00430{left:370.081333pt;}
.x53_c00430{left:372.720000pt;}
.xf_c00430{left:374.400000pt;}
.x67_c00430{left:375.361333pt;}
.x3c_c00430{left:377.520000pt;}
.xb1_c00430{left:378.960000pt;}
.x16_c00430{left:379.920000pt;}
.x8d_c00430{left:381.517333pt;}
.x77_c00430{left:384.721333pt;}
.x70_c00430{left:385.681333pt;}
.x9b_c00430{left:387.840000pt;}
.x7f_c00430{left:390.661333pt;}
.x5d_c00430{left:391.680000pt;}
.x44_c00430{left:393.360000pt;}
.x49_c00430{left:395.280000pt;}
.x37_c00430{left:396.960000pt;}
.x8e_c00430{left:400.236000pt;}
.x4f_c00430{left:401.760000pt;}
.x86_c00430{left:404.328000pt;}
.x17_c00430{left:405.840000pt;}
.x3d_c00430{left:406.800000pt;}
.x30_c00430{left:410.294667pt;}
.x5e_c00430{left:411.360000pt;}
.x10_c00430{left:414.000000pt;}
.x45_c00430{left:415.440000pt;}
.x5_c00430{left:417.145819pt;}
.x6b_c00430{left:418.976000pt;}
.x71_c00430{left:426.961333pt;}
.x8f_c00430{left:428.080000pt;}
.x54_c00430{left:430.800000pt;}
.xa2_c00430{left:432.240000pt;}
.x11_c00430{left:439.440000pt;}
.x87_c00430{left:440.818667pt;}
.x46_c00430{left:443.280000pt;}
.x95_c00430{left:447.600000pt;}
.x88_c00430{left:452.362667pt;}
.xa9_c00430{left:453.780000pt;}
.xa3_c00430{left:456.480000pt;}
.x62_c00430{left:465.490667pt;}
.xaa_c00430{left:467.953333pt;}
.x89_c00430{left:476.338667pt;}
.x47_c00430{left:478.560000pt;}
.x6_c00430{left:485.376189pt;}
.x80_c00430{left:487.389333pt;}
.x9c_c00430{left:494.400000pt;}
.x96_c00430{left:495.360000pt;}
.x90_c00430{left:496.724000pt;}
.x81_c00430{left:501.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m9c_c00431{transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-ms-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011960,-0.000108,0.002250,0.249990,0,0);}
.m0_c00431{transform:matrix(0.013433,-0.000202,0.003750,0.249972,0,0);-ms-transform:matrix(0.013433,-0.000202,0.003750,0.249972,0,0);-webkit-transform:matrix(0.013433,-0.000202,0.003750,0.249972,0,0);}
.m5f_c00431{transform:matrix(0.023913,-0.000287,0.003000,0.249982,0,0);-ms-transform:matrix(0.023913,-0.000287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.023913,-0.000287,0.003000,0.249982,0,0);}
.m16_c00431{transform:matrix(0.065349,-0.001176,0.004499,0.249960,0,0);-ms-transform:matrix(0.065349,-0.001176,0.004499,0.249960,0,0);-webkit-transform:matrix(0.065349,-0.001176,0.004499,0.249960,0,0);}
.m26_c00431{transform:matrix(0.099829,-0.001797,0.004499,0.249960,0,0);-ms-transform:matrix(0.099829,-0.001797,0.004499,0.249960,0,0);-webkit-transform:matrix(0.099829,-0.001797,0.004499,0.249960,0,0);}
.me8_c00431{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);}
.m2e_c00431{transform:matrix(0.139427,-0.002510,0.004499,0.249960,0,0);-ms-transform:matrix(0.139427,-0.002510,0.004499,0.249960,0,0);-webkit-transform:matrix(0.139427,-0.002510,0.004499,0.249960,0,0);}
.m18_c00431{transform:matrix(0.139942,-0.002519,0.004499,0.249960,0,0);-ms-transform:matrix(0.139942,-0.002519,0.004499,0.249960,0,0);-webkit-transform:matrix(0.139942,-0.002519,0.004499,0.249960,0,0);}
.m8a_c00431{transform:matrix(0.143039,-0.001287,0.002250,0.249990,0,0);-ms-transform:matrix(0.143039,-0.001287,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143039,-0.001287,0.002250,0.249990,0,0);}
.m15_c00431{transform:matrix(0.147426,-0.002654,0.004499,0.249960,0,0);-ms-transform:matrix(0.147426,-0.002654,0.004499,0.249960,0,0);-webkit-transform:matrix(0.147426,-0.002654,0.004499,0.249960,0,0);}
.m6c_c00431{transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);-ms-transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);-webkit-transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);}
.me_c00431{transform:matrix(0.148121,-0.002666,0.004499,0.249960,0,0);-ms-transform:matrix(0.148121,-0.002666,0.004499,0.249960,0,0);-webkit-transform:matrix(0.148121,-0.002666,0.004499,0.249960,0,0);}
.mcc_c00431{transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.150481,-0.002709,0.004499,0.249960,0,0);-ms-transform:matrix(0.150481,-0.002709,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150481,-0.002709,0.004499,0.249960,0,0);}
.m23_c00431{transform:matrix(0.152120,-0.002738,0.004499,0.249960,0,0);-ms-transform:matrix(0.152120,-0.002738,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152120,-0.002738,0.004499,0.249960,0,0);}
.m51_c00431{transform:matrix(0.153669,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153669,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153669,-0.001844,0.003000,0.249982,0,0);}
.m17_c00431{transform:matrix(0.154315,-0.002778,0.004499,0.249960,0,0);-ms-transform:matrix(0.154315,-0.002778,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154315,-0.002778,0.004499,0.249960,0,0);}
.me1_c00431{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);}
.mb_c00431{transform:matrix(0.154555,-0.002782,0.004499,0.249960,0,0);-ms-transform:matrix(0.154555,-0.002782,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154555,-0.002782,0.004499,0.249960,0,0);}
.m19_c00431{transform:matrix(0.156670,-0.002820,0.004499,0.249960,0,0);-ms-transform:matrix(0.156670,-0.002820,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156670,-0.002820,0.004499,0.249960,0,0);}
.mc4_c00431{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);}
.mcd_c00431{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);}
.m52_c00431{transform:matrix(0.158599,-0.001903,0.003000,0.249982,0,0);-ms-transform:matrix(0.158599,-0.001903,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158599,-0.001903,0.003000,0.249982,0,0);}
.me5_c00431{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);}
.m6_c00431{transform:matrix(0.160169,-0.002883,0.004499,0.249960,0,0);-ms-transform:matrix(0.160169,-0.002883,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160169,-0.002883,0.004499,0.249960,0,0);}
.m4b_c00431{transform:matrix(0.163178,-0.001958,0.003000,0.249982,0,0);-ms-transform:matrix(0.163178,-0.001958,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163178,-0.001958,0.003000,0.249982,0,0);}
.meb_c00431{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);}
.m28_c00431{transform:matrix(0.163589,-0.002945,0.004499,0.249960,0,0);-ms-transform:matrix(0.163589,-0.002945,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163589,-0.002945,0.004499,0.249960,0,0);}
.m13_c00431{transform:matrix(0.165488,-0.002979,0.004499,0.249960,0,0);-ms-transform:matrix(0.165488,-0.002979,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165488,-0.002979,0.004499,0.249960,0,0);}
.mea_c00431{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);}
.m2a_c00431{transform:matrix(0.166113,-0.002990,0.004499,0.249960,0,0);-ms-transform:matrix(0.166113,-0.002990,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166113,-0.002990,0.004499,0.249960,0,0);}
.mb9_c00431{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);}
.m81_c00431{transform:matrix(0.166298,-0.001497,0.002250,0.249990,0,0);-ms-transform:matrix(0.166298,-0.001497,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166298,-0.001497,0.002250,0.249990,0,0);}
.m122_c00431{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);}
.m7_c00431{transform:matrix(0.166778,-0.003002,0.004499,0.249960,0,0);-ms-transform:matrix(0.166778,-0.003002,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166778,-0.003002,0.004499,0.249960,0,0);}
.ma7_c00431{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);}
.mec_c00431{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);}
.mef_c00431{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);}
.m48_c00431{transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);-ms-transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167658,-0.002012,0.003000,0.249982,0,0);}
.m49_c00431{transform:matrix(0.168488,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168488,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168488,-0.002022,0.003000,0.249982,0,0);}
.m82_c00431{transform:matrix(0.168953,-0.001521,0.002250,0.249990,0,0);-ms-transform:matrix(0.168953,-0.001521,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168953,-0.001521,0.002250,0.249990,0,0);}
.m6a_c00431{transform:matrix(0.169068,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169068,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169068,-0.002029,0.003000,0.249982,0,0);}
.m46_c00431{transform:matrix(0.169413,-0.002033,0.003000,0.249982,0,0);-ms-transform:matrix(0.169413,-0.002033,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169413,-0.002033,0.003000,0.249982,0,0);}
.m1d_c00431{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);}
.mcf_c00431{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);}
.mf4_c00431{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);}
.m4a_c00431{transform:matrix(0.170943,-0.002051,0.003000,0.249982,0,0);-ms-transform:matrix(0.170943,-0.002051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170943,-0.002051,0.003000,0.249982,0,0);}
.m41_c00431{transform:matrix(0.171043,-0.002053,0.003000,0.249982,0,0);-ms-transform:matrix(0.171043,-0.002053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171043,-0.002053,0.003000,0.249982,0,0);}
.m1a_c00431{transform:matrix(0.171142,-0.003081,0.004499,0.249960,0,0);-ms-transform:matrix(0.171142,-0.003081,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171142,-0.003081,0.004499,0.249960,0,0);}
.m29_c00431{transform:matrix(0.171897,-0.003094,0.004499,0.249960,0,0);-ms-transform:matrix(0.171897,-0.003094,0.004499,0.249960,0,0);-webkit-transform:matrix(0.171897,-0.003094,0.004499,0.249960,0,0);}
.m11d_c00431{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);}
.mf3_c00431{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.mc6_c00431{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.mce_c00431{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);}
.mf9_c00431{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);}
.mbc_c00431{transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173505,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{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);}
.m99_c00431{transform:matrix(0.174188,-0.001568,0.002250,0.249990,0,0);-ms-transform:matrix(0.174188,-0.001568,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174188,-0.001568,0.002250,0.249990,0,0);}
.m9e_c00431{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);}
.m21_c00431{transform:matrix(0.174407,-0.003139,0.004499,0.249960,0,0);-ms-transform:matrix(0.174407,-0.003139,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174407,-0.003139,0.004499,0.249960,0,0);}
.m53_c00431{transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);}
.m45_c00431{transform:matrix(0.175672,-0.002108,0.003000,0.249982,0,0);-ms-transform:matrix(0.175672,-0.002108,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175672,-0.002108,0.003000,0.249982,0,0);}
.m6d_c00431{transform:matrix(0.176497,-0.002118,0.003000,0.249982,0,0);-ms-transform:matrix(0.176497,-0.002118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176497,-0.002118,0.003000,0.249982,0,0);}
.mc5_c00431{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);}
.m121_c00431{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);}
.m2b_c00431{transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);-ms-transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176966,-0.003185,0.004499,0.249960,0,0);}
.m9d_c00431{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);}
.m96_c00431{transform:matrix(0.177763,-0.001600,0.002250,0.249990,0,0);-ms-transform:matrix(0.177763,-0.001600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177763,-0.001600,0.002250,0.249990,0,0);}
.m65_c00431{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);}
.m5e_c00431{transform:matrix(0.178312,-0.002140,0.003000,0.249982,0,0);-ms-transform:matrix(0.178312,-0.002140,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178312,-0.002140,0.003000,0.249982,0,0);}
.m90_c00431{transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);}
.m2d_c00431{transform:matrix(0.179166,-0.003225,0.004499,0.249960,0,0);-ms-transform:matrix(0.179166,-0.003225,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179166,-0.003225,0.004499,0.249960,0,0);}
.m54_c00431{transform:matrix(0.180602,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180602,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180602,-0.002167,0.003000,0.249982,0,0);}
.m95_c00431{transform:matrix(0.180743,-0.001627,0.002250,0.249990,0,0);-ms-transform:matrix(0.180743,-0.001627,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180743,-0.001627,0.002250,0.249990,0,0);}
.m5a_c00431{transform:matrix(0.181207,-0.002174,0.003000,0.249982,0,0);-ms-transform:matrix(0.181207,-0.002174,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181207,-0.002174,0.003000,0.249982,0,0);}
.m8c_c00431{transform:matrix(0.181218,-0.001631,0.002250,0.249990,0,0);-ms-transform:matrix(0.181218,-0.001631,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181218,-0.001631,0.002250,0.249990,0,0);}
.m93_c00431{transform:matrix(0.181348,-0.001632,0.002250,0.249990,0,0);-ms-transform:matrix(0.181348,-0.001632,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181348,-0.001632,0.002250,0.249990,0,0);}
.m67_c00431{transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);-ms-transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);}
.me4_c00431{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);}
.m10d_c00431{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);}
.mde_c00431{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);}
.m27_c00431{transform:matrix(0.183615,-0.003305,0.004499,0.249960,0,0);-ms-transform:matrix(0.183615,-0.003305,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183615,-0.003305,0.004499,0.249960,0,0);}
.ma0_c00431{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);}
.m8d_c00431{transform:matrix(0.183768,-0.001654,0.002250,0.249990,0,0);-ms-transform:matrix(0.183768,-0.001654,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183768,-0.001654,0.002250,0.249990,0,0);}
.mba_c00431{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);}
.m127_c00431{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);}
.m10_c00431{transform:matrix(0.184655,-0.003324,0.004499,0.249960,0,0);-ms-transform:matrix(0.184655,-0.003324,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184655,-0.003324,0.004499,0.249960,0,0);}
.md_c00431{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);}
.m3_c00431{transform:matrix(0.184849,-0.002773,0.003750,0.249972,0,0);-ms-transform:matrix(0.184849,-0.002773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184849,-0.002773,0.003750,0.249972,0,0);}
.ma8_c00431{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);}
.m50_c00431{transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);-ms-transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186062,-0.002233,0.003000,0.249982,0,0);}
.m66_c00431{transform:matrix(0.186207,-0.002234,0.003000,0.249982,0,0);-ms-transform:matrix(0.186207,-0.002234,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186207,-0.002234,0.003000,0.249982,0,0);}
.mf2_c00431{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_c00431{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);}
.mee_c00431{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);}
.m97_c00431{transform:matrix(0.187377,-0.001686,0.002250,0.249990,0,0);-ms-transform:matrix(0.187377,-0.001686,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187377,-0.001686,0.002250,0.249990,0,0);}
.mf0_c00431{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);}
.m42_c00431{transform:matrix(0.188521,-0.002262,0.003000,0.249982,0,0);-ms-transform:matrix(0.188521,-0.002262,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188521,-0.002262,0.003000,0.249982,0,0);}
.m10a_c00431{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);}
.m7f_c00431{transform:matrix(0.189742,-0.001708,0.002250,0.249990,0,0);-ms-transform:matrix(0.189742,-0.001708,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189742,-0.001708,0.002250,0.249990,0,0);}
.m84_c00431{transform:matrix(0.189987,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.189987,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189987,-0.001710,0.002250,0.249990,0,0);}
.m9a_c00431{transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);-ms-transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);}
.mc7_c00431{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);}
.m5d_c00431{transform:matrix(0.190521,-0.002286,0.003000,0.249982,0,0);-ms-transform:matrix(0.190521,-0.002286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190521,-0.002286,0.003000,0.249982,0,0);}
.m3d_c00431{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);}
.mf_c00431{transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);-ms-transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);}
.m57_c00431{transform:matrix(0.191731,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191731,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191731,-0.002301,0.003000,0.249982,0,0);}
.m9b_c00431{transform:matrix(0.191927,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191927,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191927,-0.001727,0.002250,0.249990,0,0);}
.m3c_c00431{transform:matrix(0.192716,-0.002313,0.003000,0.249982,0,0);-ms-transform:matrix(0.192716,-0.002313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192716,-0.002313,0.003000,0.249982,0,0);}
.mab_c00431{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);}
.med_c00431{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);}
.mc8_c00431{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);}
.m6b_c00431{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);}
.mae_c00431{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);}
.m9_c00431{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);}
.ma3_c00431{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);}
.m120_c00431{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);}
.m11e_c00431{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);}
.m71_c00431{transform:matrix(0.194412,-0.001750,0.002250,0.249990,0,0);-ms-transform:matrix(0.194412,-0.001750,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194412,-0.001750,0.002250,0.249990,0,0);}
.m10b_c00431{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);}
.mdd_c00431{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);}
.m10c_c00431{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_c00431{transform:matrix(0.195773,-0.003524,0.004499,0.249960,0,0);-ms-transform:matrix(0.195773,-0.003524,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195773,-0.003524,0.004499,0.249960,0,0);}
.m1c_c00431{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);}
.m88_c00431{transform:matrix(0.196587,-0.001769,0.002250,0.249990,0,0);-ms-transform:matrix(0.196587,-0.001769,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196587,-0.001769,0.002250,0.249990,0,0);}
.m74_c00431{transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);}
.m10e_c00431{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);}
.mf6_c00431{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);}
.m85_c00431{transform:matrix(0.196927,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196927,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196927,-0.001772,0.002250,0.249990,0,0);}
.m61_c00431{transform:matrix(0.197001,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.197001,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197001,-0.002364,0.003000,0.249982,0,0);}
.m1b_c00431{transform:matrix(0.197563,-0.003556,0.004499,0.249960,0,0);-ms-transform:matrix(0.197563,-0.003556,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197563,-0.003556,0.004499,0.249960,0,0);}
.me3_c00431{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);}
.m94_c00431{transform:matrix(0.198262,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198262,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198262,-0.001784,0.002250,0.249990,0,0);}
.mfd_c00431{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);}
.m44_c00431{transform:matrix(0.198451,-0.002381,0.003000,0.249982,0,0);-ms-transform:matrix(0.198451,-0.002381,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198451,-0.002381,0.003000,0.249982,0,0);}
.m14_c00431{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);}
.m68_c00431{transform:matrix(0.198576,-0.002383,0.003000,0.249982,0,0);-ms-transform:matrix(0.198576,-0.002383,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198576,-0.002383,0.003000,0.249982,0,0);}
.mdc_c00431{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);}
.mac_c00431{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);}
.m40_c00431{transform:matrix(0.200001,-0.002400,0.003000,0.249982,0,0);-ms-transform:matrix(0.200001,-0.002400,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200001,-0.002400,0.003000,0.249982,0,0);}
.mf5_c00431{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);}
.m2c_c00431{transform:matrix(0.200742,-0.003613,0.004499,0.249960,0,0);-ms-transform:matrix(0.200742,-0.003613,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200742,-0.003613,0.004499,0.249960,0,0);}
.m4f_c00431{transform:matrix(0.200941,-0.002411,0.003000,0.249982,0,0);-ms-transform:matrix(0.200941,-0.002411,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200941,-0.002411,0.003000,0.249982,0,0);}
.m55_c00431{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);}
.mb0_c00431{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);}
.ma9_c00431{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);}
.mff_c00431{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);}
.m10f_c00431{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);}
.m39_c00431{transform:matrix(0.203200,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203200,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203200,-0.002438,0.003000,0.249982,0,0);}
.m72_c00431{transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);-ms-transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203692,-0.001833,0.002250,0.249990,0,0);}
.m69_c00431{transform:matrix(0.203750,-0.002445,0.003000,0.249982,0,0);-ms-transform:matrix(0.203750,-0.002445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203750,-0.002445,0.003000,0.249982,0,0);}
.m100_c00431{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);}
.md9_c00431{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);}
.mc2_c00431{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_c00431{transform:matrix(0.204677,-0.001842,0.002250,0.249990,0,0);-ms-transform:matrix(0.204677,-0.001842,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204677,-0.001842,0.002250,0.249990,0,0);}
.m43_c00431{transform:matrix(0.204785,-0.002457,0.003000,0.249982,0,0);-ms-transform:matrix(0.204785,-0.002457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204785,-0.002457,0.003000,0.249982,0,0);}
.m59_c00431{transform:matrix(0.205070,-0.002461,0.003000,0.249982,0,0);-ms-transform:matrix(0.205070,-0.002461,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205070,-0.002461,0.003000,0.249982,0,0);}
.m60_c00431{transform:matrix(0.205455,-0.002465,0.003000,0.249982,0,0);-ms-transform:matrix(0.205455,-0.002465,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205455,-0.002465,0.003000,0.249982,0,0);}
.m83_c00431{transform:matrix(0.205567,-0.001850,0.002250,0.249990,0,0);-ms-transform:matrix(0.205567,-0.001850,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205567,-0.001850,0.002250,0.249990,0,0);}
.mf8_c00431{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);}
.m117_c00431{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);}
.m89_c00431{transform:matrix(0.206147,-0.001855,0.002250,0.249990,0,0);-ms-transform:matrix(0.206147,-0.001855,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206147,-0.001855,0.002250,0.249990,0,0);}
.m8e_c00431{transform:matrix(0.206297,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206297,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206297,-0.001857,0.002250,0.249990,0,0);}
.m105_c00431{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);}
.m56_c00431{transform:matrix(0.206610,-0.002479,0.003000,0.249982,0,0);-ms-transform:matrix(0.206610,-0.002479,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206610,-0.002479,0.003000,0.249982,0,0);}
.m47_c00431{transform:matrix(0.206675,-0.002480,0.003000,0.249982,0,0);-ms-transform:matrix(0.206675,-0.002480,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206675,-0.002480,0.003000,0.249982,0,0);}
.mc3_c00431{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);}
.m22_c00431{transform:matrix(0.206971,-0.003725,0.004499,0.249960,0,0);-ms-transform:matrix(0.206971,-0.003725,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206971,-0.003725,0.004499,0.249960,0,0);}
.m107_c00431{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);}
.ma1_c00431{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);}
.m92_c00431{transform:matrix(0.207332,-0.001866,0.002250,0.249990,0,0);-ms-transform:matrix(0.207332,-0.001866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207332,-0.001866,0.002250,0.249990,0,0);}
.m63_c00431{transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);}
.m80_c00431{transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207677,-0.001869,0.002250,0.249990,0,0);}
.md2_c00431{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);}
.m1f_c00431{transform:matrix(0.208121,-0.003746,0.004499,0.249960,0,0);-ms-transform:matrix(0.208121,-0.003746,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208121,-0.003746,0.004499,0.249960,0,0);}
.m7a_c00431{transform:matrix(0.208582,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208582,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208582,-0.001877,0.002250,0.249990,0,0);}
.mfe_c00431{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);}
.m24_c00431{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);}
.m103_c00431{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);}
.m34_c00431{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);}
.m77_c00431{transform:matrix(0.210041,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.210041,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210041,-0.001890,0.002250,0.249990,0,0);}
.m7e_c00431{transform:matrix(0.210221,-0.001892,0.002250,0.249990,0,0);-ms-transform:matrix(0.210221,-0.001892,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210221,-0.001892,0.002250,0.249990,0,0);}
.m91_c00431{transform:matrix(0.210441,-0.001894,0.002250,0.249990,0,0);-ms-transform:matrix(0.210441,-0.001894,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210441,-0.001894,0.002250,0.249990,0,0);}
.me9_c00431{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);}
.mbe_c00431{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);}
.m116_c00431{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);}
.md1_c00431{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);}
.mc1_c00431{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);}
.m79_c00431{transform:matrix(0.212206,-0.001910,0.002250,0.249990,0,0);-ms-transform:matrix(0.212206,-0.001910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212206,-0.001910,0.002250,0.249990,0,0);}
.mc9_c00431{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);}
.mbb_c00431{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);}
.mdb_c00431{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);}
.m113_c00431{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);}
.m124_c00431{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);}
.m1e_c00431{transform:matrix(0.214905,-0.003868,0.004499,0.249960,0,0);-ms-transform:matrix(0.214905,-0.003868,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214905,-0.003868,0.004499,0.249960,0,0);}
.m104_c00431{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.mda_c00431{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);}
.m9f_c00431{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);}
.mdf_c00431{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);}
.m37_c00431{transform:matrix(0.217539,-0.002610,0.003000,0.249982,0,0);-ms-transform:matrix(0.217539,-0.002610,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217539,-0.002610,0.003000,0.249982,0,0);}
.m87_c00431{transform:matrix(0.218131,-0.001963,0.002250,0.249990,0,0);-ms-transform:matrix(0.218131,-0.001963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218131,-0.001963,0.002250,0.249990,0,0);}
.m30_c00431{transform:matrix(0.218535,-0.003934,0.004499,0.249960,0,0);-ms-transform:matrix(0.218535,-0.003934,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218535,-0.003934,0.004499,0.249960,0,0);}
.md6_c00431{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);}
.m58_c00431{transform:matrix(0.221939,-0.002663,0.003000,0.249982,0,0);-ms-transform:matrix(0.221939,-0.002663,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221939,-0.002663,0.003000,0.249982,0,0);}
.m32_c00431{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);}
.mf7_c00431{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);}
.ma5_c00431{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);}
.m11c_c00431{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);}
.m5b_c00431{transform:matrix(0.223449,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223449,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223449,-0.002681,0.003000,0.249982,0,0);}
.m108_c00431{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);}
.m62_c00431{transform:matrix(0.225479,-0.002706,0.003000,0.249982,0,0);-ms-transform:matrix(0.225479,-0.002706,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225479,-0.002706,0.003000,0.249982,0,0);}
.maf_c00431{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);}
.mad_c00431{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);}
.m7d_c00431{transform:matrix(0.226276,-0.002036,0.002250,0.249990,0,0);-ms-transform:matrix(0.226276,-0.002036,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226276,-0.002036,0.002250,0.249990,0,0);}
.me2_c00431{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);}
.m25_c00431{transform:matrix(0.226793,-0.004082,0.004499,0.249960,0,0);-ms-transform:matrix(0.226793,-0.004082,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226793,-0.004082,0.004499,0.249960,0,0);}
.m73_c00431{transform:matrix(0.227576,-0.002048,0.002250,0.249990,0,0);-ms-transform:matrix(0.227576,-0.002048,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227576,-0.002048,0.002250,0.249990,0,0);}
.m20_c00431{transform:matrix(0.227783,-0.004100,0.004499,0.249960,0,0);-ms-transform:matrix(0.227783,-0.004100,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227783,-0.004100,0.004499,0.249960,0,0);}
.m112_c00431{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);}
.m106_c00431{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);}
.m86_c00431{transform:matrix(0.228456,-0.002056,0.002250,0.249990,0,0);-ms-transform:matrix(0.228456,-0.002056,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228456,-0.002056,0.002250,0.249990,0,0);}
.m64_c00431{transform:matrix(0.229159,-0.002750,0.003000,0.249982,0,0);-ms-transform:matrix(0.229159,-0.002750,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229159,-0.002750,0.003000,0.249982,0,0);}
.m101_c00431{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);}
.m8b_c00431{transform:matrix(0.230236,-0.002072,0.002250,0.249990,0,0);-ms-transform:matrix(0.230236,-0.002072,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230236,-0.002072,0.002250,0.249990,0,0);}
.m11_c00431{transform:matrix(0.231947,-0.004175,0.004499,0.249960,0,0);-ms-transform:matrix(0.231947,-0.004175,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231947,-0.004175,0.004499,0.249960,0,0);}
.mc_c00431{transform:matrix(0.232697,-0.004189,0.004499,0.249960,0,0);-ms-transform:matrix(0.232697,-0.004189,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232697,-0.004189,0.004499,0.249960,0,0);}
.m119_c00431{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);}
.m123_c00431{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);}
.m126_c00431{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);}
.m11b_c00431{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);}
.mbd_c00431{transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237660,0.000000,0.000000,0.250000,0,0);}
.me6_c00431{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);}
.mb3_c00431{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);}
.m6f_c00431{transform:matrix(0.239085,-0.002152,0.002250,0.249990,0,0);-ms-transform:matrix(0.239085,-0.002152,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239085,-0.002152,0.002250,0.249990,0,0);}
.mb7_c00431{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);}
.m31_c00431{transform:matrix(0.239276,-0.004307,0.004499,0.249960,0,0);-ms-transform:matrix(0.239276,-0.004307,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239276,-0.004307,0.004499,0.249960,0,0);}
.m118_c00431{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.240908,-0.002891,0.003000,0.249982,0,0);-ms-transform:matrix(0.240908,-0.002891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240908,-0.002891,0.003000,0.249982,0,0);}
.m70_c00431{transform:matrix(0.242610,-0.002183,0.002250,0.249990,0,0);-ms-transform:matrix(0.242610,-0.002183,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242610,-0.002183,0.002250,0.249990,0,0);}
.me7_c00431{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);}
.m8f_c00431{transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);-ms-transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243815,-0.002194,0.002250,0.249990,0,0);}
.md3_c00431{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);}
.m3e_c00431{transform:matrix(0.245827,-0.002950,0.003000,0.249982,0,0);-ms-transform:matrix(0.245827,-0.002950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245827,-0.002950,0.003000,0.249982,0,0);}
.m5c_c00431{transform:matrix(0.246072,-0.002953,0.003000,0.249982,0,0);-ms-transform:matrix(0.246072,-0.002953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246072,-0.002953,0.003000,0.249982,0,0);}
.m3a_c00431{transform:matrix(0.246292,-0.002956,0.003000,0.249982,0,0);-ms-transform:matrix(0.246292,-0.002956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246292,-0.002956,0.003000,0.249982,0,0);}
.mfa_c00431{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.249490,-0.004491,0.004499,0.249960,0,0);-ms-transform:matrix(0.249490,-0.004491,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249490,-0.004491,0.004499,0.249960,0,0);}
.mca_c00431{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);}
.m7c_c00431{transform:matrix(0.251160,-0.002260,0.002250,0.249990,0,0);-ms-transform:matrix(0.251160,-0.002260,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251160,-0.002260,0.002250,0.249990,0,0);}
.m4e_c00431{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);}
.m102_c00431{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);}
.m111_c00431{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);}
.md5_c00431{transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);}
.m11f_c00431{transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);}
.m115_c00431{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);}
.mfc_c00431{transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);}
.md0_c00431{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.262088,-0.004718,0.004499,0.249960,0,0);-ms-transform:matrix(0.262088,-0.004718,0.004499,0.249960,0,0);-webkit-transform:matrix(0.262088,-0.004718,0.004499,0.249960,0,0);}
.m2_c00431{transform:matrix(0.263540,-0.003953,0.003750,0.249972,0,0);-ms-transform:matrix(0.263540,-0.003953,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263540,-0.003953,0.003750,0.249972,0,0);}
.m110_c00431{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.264424,-0.002380,0.002250,0.249990,0,0);-ms-transform:matrix(0.264424,-0.002380,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264424,-0.002380,0.002250,0.249990,0,0);}
.m33_c00431{transform:matrix(0.264842,-0.004767,0.004499,0.249960,0,0);-ms-transform:matrix(0.264842,-0.004767,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264842,-0.004767,0.004499,0.249960,0,0);}
.m2f_c00431{transform:matrix(0.265897,-0.004786,0.004499,0.249960,0,0);-ms-transform:matrix(0.265897,-0.004786,0.004499,0.249960,0,0);-webkit-transform:matrix(0.265897,-0.004786,0.004499,0.249960,0,0);}
.ma2_c00431{transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268895,0.000000,0.000000,0.250000,0,0);}
.m11a_c00431{transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);}
.mbf_c00431{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);}
.mb8_c00431{transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277295,0.000000,0.000000,0.250000,0,0);}
.m109_c00431{transform:matrix(0.282680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282680,0.000000,0.000000,0.250000,0,0);}
.m78_c00431{transform:matrix(0.283224,-0.002549,0.002250,0.249990,0,0);-ms-transform:matrix(0.283224,-0.002549,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283224,-0.002549,0.002250,0.249990,0,0);}
.mb2_c00431{transform:matrix(0.283280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283280,0.000000,0.000000,0.250000,0,0);}
.m114_c00431{transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284775,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);-ms-transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);}
.m36_c00431{transform:matrix(0.288868,-0.005200,0.004499,0.249960,0,0);-ms-transform:matrix(0.288868,-0.005200,0.004499,0.249960,0,0);-webkit-transform:matrix(0.288868,-0.005200,0.004499,0.249960,0,0);}
.md8_c00431{transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.294784,-0.003537,0.003000,0.249982,0,0);-ms-transform:matrix(0.294784,-0.003537,0.003000,0.249982,0,0);-webkit-transform:matrix(0.294784,-0.003537,0.003000,0.249982,0,0);}
.mfb_c00431{transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295105,0.000000,0.000000,0.250000,0,0);}
.ma4_c00431{transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00431{transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00431{transform:matrix(0.297695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297695,0.000000,0.000000,0.250000,0,0);}
.mb6_c00431{transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.302401,-0.005443,0.004499,0.249960,0,0);-ms-transform:matrix(0.302401,-0.005443,0.004499,0.249960,0,0);-webkit-transform:matrix(0.302401,-0.005443,0.004499,0.249960,0,0);}
.m35_c00431{transform:matrix(0.304691,-0.005484,0.004499,0.249960,0,0);-ms-transform:matrix(0.304691,-0.005484,0.004499,0.249960,0,0);-webkit-transform:matrix(0.304691,-0.005484,0.004499,0.249960,0,0);}
.ma6_c00431{transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310660,0.000000,0.000000,0.250000,0,0);}
.m75_c00431{transform:matrix(0.315942,-0.002843,0.002250,0.249990,0,0);-ms-transform:matrix(0.315942,-0.002843,0.002250,0.249990,0,0);-webkit-transform:matrix(0.315942,-0.002843,0.002250,0.249990,0,0);}
.m7b_c00431{transform:matrix(0.316472,-0.002848,0.002250,0.249990,0,0);-ms-transform:matrix(0.316472,-0.002848,0.002250,0.249990,0,0);-webkit-transform:matrix(0.316472,-0.002848,0.002250,0.249990,0,0);}
.mb4_c00431{transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);}
.m129_c00431{transform:matrix(0.333567,-0.014692,0.011000,0.249758,0,0);-ms-transform:matrix(0.333567,-0.014692,0.011000,0.249758,0,0);-webkit-transform:matrix(0.333567,-0.014692,0.011000,0.249758,0,0);}
.m1_c00431{transform:matrix(0.343191,-0.005148,0.003750,0.249972,0,0);-ms-transform:matrix(0.343191,-0.005148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.343191,-0.005148,0.003750,0.249972,0,0);}
.me0_c00431{transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);}
.mb5_c00431{transform:matrix(0.351720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351720,0.000000,0.000000,0.250000,0,0);}
.m128_c00431{transform:matrix(0.352660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352660,0.000000,0.000000,0.250000,0,0);}
.m6e_c00431{transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.371523,-0.004458,0.003000,0.249982,0,0);-ms-transform:matrix(0.371523,-0.004458,0.003000,0.249982,0,0);-webkit-transform:matrix(0.371523,-0.004458,0.003000,0.249982,0,0);}
.md4_c00431{transform:matrix(0.397785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397785,0.000000,0.000000,0.250000,0,0);}
.md7_c00431{transform:matrix(0.411600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411600,0.000000,0.000000,0.250000,0,0);}
.maa_c00431{transform:matrix(0.434230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434230,0.000000,0.000000,0.250000,0,0);}
.mf1_c00431{transform:matrix(0.470155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470155,0.000000,0.000000,0.250000,0,0);}
.m125_c00431{transform:matrix(0.551935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551935,0.000000,0.000000,0.250000,0,0);}
.m12a_c00431{transform:matrix(0.829561,-0.036537,0.011000,0.249758,0,0);-ms-transform:matrix(0.829561,-0.036537,0.011000,0.249758,0,0);-webkit-transform:matrix(0.829561,-0.036537,0.011000,0.249758,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;}
._0_c00431{width:41.771633px;}
.fc0_c00431{color:transparent;}
.fs13_c00431{font-size:16.800000px;}
.fsb_c00431{font-size:22.050000px;}
.fs12_c00431{font-size:42.000000px;}
.fs19_c00431{font-size:45.150000px;}
.fs17_c00431{font-size:49.350000px;}
.fs16_c00431{font-size:50.400000px;}
.fs14_c00431{font-size:51.450000px;}
.fs11_c00431{font-size:52.500000px;}
.fs15_c00431{font-size:53.550000px;}
.fsc_c00431{font-size:66.152679px;}
.fse_c00431{font-size:68.252764px;}
.fs6_c00431{font-size:68.254914px;}
.fs3_c00431{font-size:68.261056px;}
.fs18_c00431{font-size:69.300000px;}
.fs7_c00431{font-size:69.304989px;}
.fs5_c00431{font-size:69.311226px;}
.fsd_c00431{font-size:70.352849px;}
.fs8_c00431{font-size:70.355065px;}
.fs1_c00431{font-size:70.361396px;}
.fsf_c00431{font-size:71.402892px;}
.fs9_c00431{font-size:71.405141px;}
.fs2_c00431{font-size:71.411566px;}
.fs10_c00431{font-size:72.450000px;}
.fsa_c00431{font-size:72.455216px;}
.fs0_c00431{font-size:72.458150px;}
.fs4_c00431{font-size:74.562076px;}
.fs1a_c00431{font-size:75.597619px;}
.y0_c00431{bottom:0.000000px;}
.yb8_c00431{bottom:96.784500px;}
.yb9_c00431{bottom:101.186040px;}
.ya7_c00431{bottom:144.948000px;}
.yb7_c00431{bottom:145.374000px;}
.ya6_c00431{bottom:162.654000px;}
.yb6_c00431{bottom:163.755000px;}
.ya5_c00431{bottom:180.447000px;}
.yb5_c00431{bottom:181.189500px;}
.yaa_c00431{bottom:198.960000px;}
.yb4_c00431{bottom:199.959000px;}
.ya4_c00431{bottom:205.200000px;}
.ya9_c00431{bottom:216.607500px;}
.yb3_c00431{bottom:217.791000px;}
.ya8_c00431{bottom:233.907000px;}
.ya3_c00431{bottom:234.294000px;}
.yb2_c00431{bottom:235.461000px;}
.ya2_c00431{bottom:252.222000px;}
.yb1_c00431{bottom:253.243500px;}
.ya1_c00431{bottom:269.814000px;}
.yb0_c00431{bottom:270.138000px;}
.yae_c00431{bottom:271.897500px;}
.ya0_c00431{bottom:287.706000px;}
.yaf_c00431{bottom:288.372000px;}
.yad_c00431{bottom:289.567500px;}
.yac_c00431{bottom:314.950500px;}
.yab_c00431{bottom:338.638500px;}
.y9f_c00431{bottom:361.498500px;}
.y9e_c00431{bottom:384.939796px;}
.y9c_c00431{bottom:384.939984px;}
.y9b_c00431{bottom:384.940057px;}
.y9a_c00431{bottom:384.940264px;}
.y9d_c00431{bottom:384.940390px;}
.y99_c00431{bottom:384.940728px;}
.y98_c00431{bottom:384.941011px;}
.y94_c00431{bottom:407.760087px;}
.y92_c00431{bottom:407.760277px;}
.y91_c00431{bottom:407.760291px;}
.y97_c00431{bottom:407.760393px;}
.y96_c00431{bottom:407.760570px;}
.y93_c00431{bottom:407.760744px;}
.y95_c00431{bottom:407.760793px;}
.y90_c00431{bottom:430.428985px;}
.y8f_c00431{bottom:430.429629px;}
.y8b_c00431{bottom:430.429756px;}
.y8e_c00431{bottom:430.429792px;}
.y8c_c00431{bottom:430.429803px;}
.y8d_c00431{bottom:430.430059px;}
.y88_c00431{bottom:430.430140px;}
.y8a_c00431{bottom:430.430430px;}
.y89_c00431{bottom:430.430833px;}
.y80_c00431{bottom:451.711567px;}
.y81_c00431{bottom:452.348647px;}
.y82_c00431{bottom:452.717650px;}
.y83_c00431{bottom:452.985957px;}
.y84_c00431{bottom:453.280640px;}
.y85_c00431{bottom:453.667852px;}
.y86_c00431{bottom:454.142317px;}
.y87_c00431{bottom:454.450618px;}
.y78_c00431{bottom:475.934722px;}
.y7b_c00431{bottom:475.934952px;}
.y79_c00431{bottom:475.935399px;}
.y7a_c00431{bottom:475.935475px;}
.y7c_c00431{bottom:475.935478px;}
.y7d_c00431{bottom:475.935585px;}
.y7f_c00431{bottom:475.935588px;}
.y7e_c00431{bottom:475.935675px;}
.y71_c00431{bottom:497.071500px;}
.y72_c00431{bottom:497.727721px;}
.y73_c00431{bottom:498.760917px;}
.y74_c00431{bottom:499.132234px;}
.y75_c00431{bottom:499.662001px;}
.y76_c00431{bottom:499.849098px;}
.y77_c00431{bottom:500.191795px;}
.y69_c00431{bottom:519.745344px;}
.y6a_c00431{bottom:520.137744px;}
.y6b_c00431{bottom:520.752456px;}
.y6c_c00431{bottom:521.201412px;}
.y6d_c00431{bottom:521.997642px;}
.y6e_c00431{bottom:522.772584px;}
.y6f_c00431{bottom:523.084446px;}
.y61_c00431{bottom:542.966328px;}
.y62_c00431{bottom:543.535920px;}
.y63_c00431{bottom:543.793500px;}
.y64_c00431{bottom:544.389552px;}
.y65_c00431{bottom:544.715568px;}
.y66_c00431{bottom:545.303004px;}
.y67_c00431{bottom:545.620890px;}
.y68_c00431{bottom:545.895528px;}
.y58_c00431{bottom:567.110496px;}
.y59_c00431{bottom:567.110718px;}
.y5a_c00431{bottom:567.110982px;}
.y5b_c00431{bottom:567.111186px;}
.y5c_c00431{bottom:567.111390px;}
.y5f_c00431{bottom:567.111984px;}
.y5d_c00431{bottom:567.111996px;}
.y60_c00431{bottom:567.112350px;}
.y5e_c00431{bottom:567.112518px;}
.y50_c00431{bottom:588.596454px;}
.y51_c00431{bottom:589.162332px;}
.y52_c00431{bottom:589.513554px;}
.y53_c00431{bottom:589.719384px;}
.y54_c00431{bottom:590.318232px;}
.y55_c00431{bottom:590.778504px;}
.y56_c00431{bottom:591.088542px;}
.y57_c00431{bottom:591.535254px;}
.y48_c00431{bottom:611.549130px;}
.y49_c00431{bottom:612.102384px;}
.y4a_c00431{bottom:612.617814px;}
.y4b_c00431{bottom:612.849900px;}
.y4c_c00431{bottom:613.225260px;}
.y4d_c00431{bottom:613.449288px;}
.y4e_c00431{bottom:614.157132px;}
.y4f_c00431{bottom:614.470044px;}
.y41_c00431{bottom:633.420234px;}
.y42_c00431{bottom:633.732774px;}
.y43_c00431{bottom:633.960690px;}
.y44_c00431{bottom:634.645728px;}
.y45_c00431{bottom:635.555532px;}
.y46_c00431{bottom:636.555432px;}
.y47_c00431{bottom:637.040016px;}
.y38_c00431{bottom:656.101500px;}
.y39_c00431{bottom:656.423016px;}
.y3a_c00431{bottom:656.925180px;}
.y3b_c00431{bottom:657.485898px;}
.y3c_c00431{bottom:658.405644px;}
.y3d_c00431{bottom:658.729896px;}
.y3e_c00431{bottom:659.157000px;}
.y3f_c00431{bottom:659.533596px;}
.y40_c00431{bottom:660.337206px;}
.y31_c00431{bottom:678.498438px;}
.y32_c00431{bottom:679.766901px;}
.y33_c00431{bottom:680.389221px;}
.y34_c00431{bottom:680.888337px;}
.y35_c00431{bottom:681.154854px;}
.y36_c00431{bottom:681.964584px;}
.y37_c00431{bottom:682.337973px;}
.y28_c00431{bottom:701.720994px;}
.y29_c00431{bottom:702.019992px;}
.y2a_c00431{bottom:702.615759px;}
.y2b_c00431{bottom:703.115199px;}
.y2c_c00431{bottom:703.694640px;}
.y2d_c00431{bottom:704.138568px;}
.y2e_c00431{bottom:704.752134px;}
.y2f_c00431{bottom:705.234639px;}
.y30_c00431{bottom:705.558720px;}
.y20_c00431{bottom:724.134279px;}
.y21_c00431{bottom:724.803999px;}
.y22_c00431{bottom:725.587494px;}
.y23_c00431{bottom:726.454806px;}
.y24_c00431{bottom:726.667794px;}
.y25_c00431{bottom:726.981495px;}
.y26_c00431{bottom:727.599774px;}
.y27_c00431{bottom:728.770827px;}
.y18_c00431{bottom:747.088026px;}
.y19_c00431{bottom:747.400407px;}
.y1a_c00431{bottom:747.612795px;}
.y1b_c00431{bottom:748.262553px;}
.y1c_c00431{bottom:748.571844px;}
.y1d_c00431{bottom:749.146848px;}
.y1e_c00431{bottom:749.742393px;}
.y1f_c00431{bottom:750.438822px;}
.ye_c00431{bottom:768.961104px;}
.yf_c00431{bottom:769.488585px;}
.y10_c00431{bottom:769.952877px;}
.y11_c00431{bottom:770.714853px;}
.y12_c00431{bottom:771.105885px;}
.y13_c00431{bottom:772.212402px;}
.y14_c00431{bottom:772.567296px;}
.y15_c00431{bottom:773.596692px;}
.y16_c00431{bottom:774.676845px;}
.y17_c00431{bottom:774.740319px;}
.y5_c00431{bottom:791.377500px;}
.y6_c00431{bottom:791.727798px;}
.y7_c00431{bottom:792.171948px;}
.y8_c00431{bottom:792.745509px;}
.y9_c00431{bottom:793.567416px;}
.ya_c00431{bottom:794.479638px;}
.yb_c00431{bottom:795.040104px;}
.yc_c00431{bottom:795.944172px;}
.yd_c00431{bottom:796.605294px;}
.y1_c00431{bottom:816.210000px;}
.y2_c00431{bottom:817.832542px;}
.y3_c00431{bottom:818.682998px;}
.y4_c00431{bottom:819.027338px;}
.y70_c00431{bottom:820.530000px;}
.h15_c00431{height:16.800000px;}
.hd_c00431{height:22.050000px;}
.h14_c00431{height:42.000000px;}
.h1b_c00431{height:45.150000px;}
.h19_c00431{height:49.350000px;}
.h18_c00431{height:50.400000px;}
.h16_c00431{height:51.450000px;}
.h13_c00431{height:52.500000px;}
.h17_c00431{height:53.550000px;}
.he_c00431{height:66.152679px;}
.h10_c00431{height:68.252764px;}
.h8_c00431{height:68.254914px;}
.h5_c00431{height:68.261056px;}
.h1a_c00431{height:69.300000px;}
.h9_c00431{height:69.304989px;}
.h7_c00431{height:69.311226px;}
.hf_c00431{height:70.352849px;}
.ha_c00431{height:70.355065px;}
.h3_c00431{height:70.361396px;}
.h11_c00431{height:71.402892px;}
.hb_c00431{height:71.405141px;}
.h4_c00431{height:71.411566px;}
.h12_c00431{height:72.450000px;}
.hc_c00431{height:72.455216px;}
.h2_c00431{height:72.458150px;}
.h6_c00431{height:74.562076px;}
.h1c_c00431{height:75.597619px;}
.h0_c00431{height:1008.450000px;}
.h1_c00431{height:1008.750000px;}
.w1_c00431{width:689.250000px;}
.w0_c00431{width:689.550000px;}
.x0_c00431{left:0.000000px;}
.x71_c00431{left:141.480000px;}
.x86_c00431{left:142.560000px;}
.x77_c00431{left:143.640000px;}
.x7f_c00431{left:144.990000px;}
.x78_c00431{left:158.760000px;}
.x80_c00431{left:163.890000px;}
.x76_c00431{left:164.970000px;}
.x7a_c00431{left:166.860000px;}
.x25_c00431{left:170.784453px;}
.x5_c00431{left:171.838500px;}
.x3a_c00431{left:173.770302px;}
.x40_c00431{left:174.815868px;}
.xa8_c00431{left:181.186500px;}
.x72_c00431{left:183.600000px;}
.x33_c00431{left:189.981000px;}
.x6_c00431{left:191.299500px;}
.x17_c00431{left:195.048849px;}
.x3b_c00431{left:197.815014px;}
.x4b_c00431{left:199.526610px;}
.xe_c00431{left:203.525136px;}
.x5a_c00431{left:207.090955px;}
.x54_c00431{left:209.177094px;}
.x18_c00431{left:210.265956px;}
.x1_c00431{left:212.808000px;}
.x73_c00431{left:214.920000px;}
.x7_c00431{left:215.974500px;}
.x6a_c00431{left:217.891716px;}
.x6e_c00431{left:219.780000px;}
.x7b_c00431{left:220.860000px;}
.x1e_c00431{left:222.608379px;}
.x79_c00431{left:224.640000px;}
.x81_c00431{left:227.610000px;}
.x46_c00431{left:228.775740px;}
.xf_c00431{left:230.819622px;}
.x4c_c00431{left:231.928272px;}
.x51_c00431{left:235.873200px;}
.x5b_c00431{left:237.601926px;}
.x6b_c00431{left:240.842079px;}
.x62_c00431{left:243.273894px;}
.x26_c00431{left:245.334999px;}
.x8_c00431{left:247.839000px;}
.x82_c00431{left:250.830000px;}
.x67_c00431{left:251.913108px;}
.x2d_c00431{left:255.118314px;}
.x19_c00431{left:256.700304px;}
.x34_c00431{left:258.621000px;}
.x85_c00431{left:261.090000px;}
.x47_c00431{left:263.920086px;}
.x4d_c00431{left:265.950168px;}
.x3c_c00431{left:268.018668px;}
.x7c_c00431{left:272.700000px;}
.x10_c00431{left:275.652432px;}
.x63_c00431{left:277.565175px;}
.x1a_c00431{left:278.801397px;}
.x41_c00431{left:281.750442px;}
.x1f_c00431{left:282.891306px;}
.x48_c00431{left:284.448072px;}
.x7d_c00431{left:285.660000px;}
.x27_c00431{left:286.919481px;}
.x9_c00431{left:293.500500px;}
.x2e_c00431{left:296.610555px;}
.x11_c00431{left:298.626837px;}
.x4e_c00431{left:299.972064px;}
.x64_c00431{left:301.325605px;}
.x74_c00431{left:302.940000px;}
.x35_c00431{left:305.347500px;}
.x5c_c00431{left:310.774853px;}
.x84_c00431{left:313.740000px;}
.x1b_c00431{left:319.832340px;}
.x2_c00431{left:320.977500px;}
.x87_c00431{left:323.730000px;}
.x7e_c00431{left:326.700000px;}
.x2f_c00431{left:329.924364px;}
.x28_c00431{left:335.199192px;}
.x3d_c00431{left:337.959822px;}
.x42_c00431{left:342.497400px;}
.xa_c00431{left:344.179500px;}
.x75_c00431{left:345.600000px;}
.x30_c00431{left:347.731836px;}
.x20_c00431{left:349.581300px;}
.x65_c00431{left:353.168304px;}
.x4f_c00431{left:356.405682px;}
.x83_c00431{left:359.640000px;}
.x56_c00431{left:360.900000px;}
.x1c_c00431{left:362.337891px;}
.x12_c00431{left:363.684498px;}
.x43_c00431{left:364.916940px;}
.x21_c00431{left:365.998785px;}
.x5e_c00431{left:371.112617px;}
.x29_c00431{left:372.199188px;}
.xb_c00431{left:375.316500px;}
.x90_c00431{left:376.380000px;}
.x3_c00431{left:377.674500px;}
.x36_c00431{left:381.993000px;}
.x13_c00431{left:384.567876px;}
.x22_c00431{left:390.095445px;}
.x96_c00431{left:391.500000px;}
.xa2_c00431{left:392.850000px;}
.x6c_c00431{left:396.368674px;}
.x4_c00431{left:400.630500px;}
.x31_c00431{left:401.719752px;}
.x68_c00431{left:404.739487px;}
.x91_c00431{left:406.350000px;}
.x37_c00431{left:409.014000px;}
.x1d_c00431{left:412.031955px;}
.x3e_c00431{left:414.908904px;}
.xa4_c00431{left:416.610000px;}
.x5f_c00431{left:419.470049px;}
.x49_c00431{left:421.297848px;}
.x2a_c00431{left:423.291696px;}
.xc_c00431{left:425.542500px;}
.x32_c00431{left:426.631602px;}
.x8f_c00431{left:430.380000px;}
.x52_c00431{left:432.137256px;}
.x5d_c00431{left:433.630302px;}
.x44_c00431{left:435.655632px;}
.x23_c00431{left:437.615211px;}
.x66_c00431{left:439.840824px;}
.x6f_c00431{left:443.610000px;}
.x14_c00431{left:445.090956px;}
.x50_c00431{left:449.293056px;}
.x3f_c00431{left:452.165454px;}
.x97_c00431{left:453.870000px;}
.x9c_c00431{left:457.380000px;}
.xa5_c00431{left:458.460000px;}
.x57_c00431{left:461.020500px;}
.xd_c00431{left:462.271500px;}
.x2b_c00431{left:463.518543px;}
.x4a_c00431{left:465.899910px;}
.x45_c00431{left:466.982388px;}
.x70_c00431{left:472.500000px;}
.x38_c00431{left:475.989000px;}
.x9d_c00431{left:477.360000px;}
.x60_c00431{left:478.855588px;}
.x98_c00431{left:480.330000px;}
.x58_c00431{left:481.809000px;}
.x69_c00431{left:484.392941px;}
.x92_c00431{left:486.000000px;}
.x2c_c00431{left:490.525959px;}
.x8c_c00431{left:492.750000px;}
.x9e_c00431{left:496.260000px;}
.x53_c00431{left:498.016632px;}
.x15_c00431{left:508.600590px;}
.x99_c00431{left:510.840000px;}
.x16_c00431{left:512.293644px;}
.x61_c00431{left:517.444940px;}
.x59_c00431{left:519.886500px;}
.x8d_c00431{left:524.880000px;}
.x24_c00431{left:527.681811px;}
.xa6_c00431{left:531.090000px;}
.x93_c00431{left:532.980000px;}
.x6d_c00431{left:537.314096px;}
.x89_c00431{left:538.920000px;}
.x39_c00431{left:542.956500px;}
.x9f_c00431{left:545.130000px;}
.x8a_c00431{left:561.060000px;}
.x9a_c00431{left:565.110000px;}
.x8e_c00431{left:572.670000px;}
.xa0_c00431{left:576.450000px;}
.x94_c00431{left:578.880000px;}
.x88_c00431{left:590.760000px;}
.x9b_c00431{left:593.460000px;}
.xa7_c00431{left:596.160000px;}
.x8b_c00431{left:600.480000px;}
.xa1_c00431{left:602.370000px;}
.x95_c00431{left:606.420000px;}
.xa3_c00431{left:626.400000px;}
.x55_c00431{left:682.560000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
._0_c00431{width:37.130341pt;}
.fs13_c00431{font-size:14.933333pt;}
.fsb_c00431{font-size:19.600000pt;}
.fs12_c00431{font-size:37.333333pt;}
.fs19_c00431{font-size:40.133333pt;}
.fs17_c00431{font-size:43.866667pt;}
.fs16_c00431{font-size:44.800000pt;}
.fs14_c00431{font-size:45.733333pt;}
.fs11_c00431{font-size:46.666667pt;}
.fs15_c00431{font-size:47.600000pt;}
.fsc_c00431{font-size:58.802381pt;}
.fse_c00431{font-size:60.669124pt;}
.fs6_c00431{font-size:60.671035pt;}
.fs3_c00431{font-size:60.676494pt;}
.fs18_c00431{font-size:61.600000pt;}
.fs7_c00431{font-size:61.604435pt;}
.fs5_c00431{font-size:61.609978pt;}
.fsd_c00431{font-size:62.535866pt;}
.fs8_c00431{font-size:62.537836pt;}
.fs1_c00431{font-size:62.543463pt;}
.fsf_c00431{font-size:63.469237pt;}
.fs9_c00431{font-size:63.471236pt;}
.fs2_c00431{font-size:63.476947pt;}
.fs10_c00431{font-size:64.400000pt;}
.fsa_c00431{font-size:64.404637pt;}
.fs0_c00431{font-size:64.407245pt;}
.fs4_c00431{font-size:66.277401pt;}
.fs1a_c00431{font-size:67.197883pt;}
.y0_c00431{bottom:0.000000pt;}
.yb8_c00431{bottom:86.030667pt;}
.yb9_c00431{bottom:89.943147pt;}
.ya7_c00431{bottom:128.842667pt;}
.yb7_c00431{bottom:129.221333pt;}
.ya6_c00431{bottom:144.581333pt;}
.yb6_c00431{bottom:145.560000pt;}
.ya5_c00431{bottom:160.397333pt;}
.yb5_c00431{bottom:161.057333pt;}
.yaa_c00431{bottom:176.853333pt;}
.yb4_c00431{bottom:177.741333pt;}
.ya4_c00431{bottom:182.400000pt;}
.ya9_c00431{bottom:192.540000pt;}
.yb3_c00431{bottom:193.592000pt;}
.ya8_c00431{bottom:207.917333pt;}
.ya3_c00431{bottom:208.261333pt;}
.yb2_c00431{bottom:209.298667pt;}
.ya2_c00431{bottom:224.197333pt;}
.yb1_c00431{bottom:225.105333pt;}
.ya1_c00431{bottom:239.834667pt;}
.yb0_c00431{bottom:240.122667pt;}
.yae_c00431{bottom:241.686667pt;}
.ya0_c00431{bottom:255.738667pt;}
.yaf_c00431{bottom:256.330667pt;}
.yad_c00431{bottom:257.393333pt;}
.yac_c00431{bottom:279.956000pt;}
.yab_c00431{bottom:301.012000pt;}
.y9f_c00431{bottom:321.332000pt;}
.y9e_c00431{bottom:342.168708pt;}
.y9c_c00431{bottom:342.168875pt;}
.y9b_c00431{bottom:342.168940pt;}
.y9a_c00431{bottom:342.169124pt;}
.y9d_c00431{bottom:342.169236pt;}
.y99_c00431{bottom:342.169536pt;}
.y98_c00431{bottom:342.169788pt;}
.y94_c00431{bottom:362.453411pt;}
.y92_c00431{bottom:362.453580pt;}
.y91_c00431{bottom:362.453592pt;}
.y97_c00431{bottom:362.453683pt;}
.y96_c00431{bottom:362.453840pt;}
.y93_c00431{bottom:362.453995pt;}
.y95_c00431{bottom:362.454039pt;}
.y90_c00431{bottom:382.603543pt;}
.y8f_c00431{bottom:382.604115pt;}
.y8b_c00431{bottom:382.604228pt;}
.y8e_c00431{bottom:382.604260pt;}
.y8c_c00431{bottom:382.604269pt;}
.y8d_c00431{bottom:382.604497pt;}
.y88_c00431{bottom:382.604569pt;}
.y8a_c00431{bottom:382.604827pt;}
.y89_c00431{bottom:382.605185pt;}
.y80_c00431{bottom:401.521393pt;}
.y81_c00431{bottom:402.087687pt;}
.y82_c00431{bottom:402.415689pt;}
.y83_c00431{bottom:402.654184pt;}
.y84_c00431{bottom:402.916124pt;}
.y85_c00431{bottom:403.260313pt;}
.y86_c00431{bottom:403.682060pt;}
.y87_c00431{bottom:403.956105pt;}
.y78_c00431{bottom:423.053087pt;}
.y7b_c00431{bottom:423.053291pt;}
.y79_c00431{bottom:423.053688pt;}
.y7a_c00431{bottom:423.053756pt;}
.y7c_c00431{bottom:423.053759pt;}
.y7d_c00431{bottom:423.053853pt;}
.y7f_c00431{bottom:423.053856pt;}
.y7e_c00431{bottom:423.053933pt;}
.y71_c00431{bottom:441.841333pt;}
.y72_c00431{bottom:442.424641pt;}
.y73_c00431{bottom:443.343037pt;}
.y74_c00431{bottom:443.673097pt;}
.y75_c00431{bottom:444.144001pt;}
.y76_c00431{bottom:444.310309pt;}
.y77_c00431{bottom:444.614929pt;}
.y69_c00431{bottom:461.995861pt;}
.y6a_c00431{bottom:462.344661pt;}
.y6b_c00431{bottom:462.891072pt;}
.y6c_c00431{bottom:463.290144pt;}
.y6d_c00431{bottom:463.997904pt;}
.y6e_c00431{bottom:464.686741pt;}
.y6f_c00431{bottom:464.963952pt;}
.y61_c00431{bottom:482.636736pt;}
.y62_c00431{bottom:483.143040pt;}
.y63_c00431{bottom:483.372000pt;}
.y64_c00431{bottom:483.901824pt;}
.y65_c00431{bottom:484.191616pt;}
.y66_c00431{bottom:484.713781pt;}
.y67_c00431{bottom:484.996347pt;}
.y68_c00431{bottom:485.240469pt;}
.y58_c00431{bottom:504.098219pt;}
.y59_c00431{bottom:504.098416pt;}
.y5a_c00431{bottom:504.098651pt;}
.y5b_c00431{bottom:504.098832pt;}
.y5c_c00431{bottom:504.099013pt;}
.y5f_c00431{bottom:504.099541pt;}
.y5d_c00431{bottom:504.099552pt;}
.y60_c00431{bottom:504.099867pt;}
.y5e_c00431{bottom:504.100016pt;}
.y50_c00431{bottom:523.196848pt;}
.y51_c00431{bottom:523.699851pt;}
.y52_c00431{bottom:524.012048pt;}
.y53_c00431{bottom:524.195008pt;}
.y54_c00431{bottom:524.727317pt;}
.y55_c00431{bottom:525.136448pt;}
.y56_c00431{bottom:525.412037pt;}
.y57_c00431{bottom:525.809115pt;}
.y48_c00431{bottom:543.599227pt;}
.y49_c00431{bottom:544.091008pt;}
.y4a_c00431{bottom:544.549168pt;}
.y4b_c00431{bottom:544.755467pt;}
.y4c_c00431{bottom:545.089120pt;}
.y4d_c00431{bottom:545.288256pt;}
.y4e_c00431{bottom:545.917451pt;}
.y4f_c00431{bottom:546.195595pt;}
.y41_c00431{bottom:563.040208pt;}
.y42_c00431{bottom:563.318021pt;}
.y43_c00431{bottom:563.520613pt;}
.y44_c00431{bottom:564.129536pt;}
.y45_c00431{bottom:564.938251pt;}
.y46_c00431{bottom:565.827051pt;}
.y47_c00431{bottom:566.257792pt;}
.y38_c00431{bottom:583.201333pt;}
.y39_c00431{bottom:583.487125pt;}
.y3a_c00431{bottom:583.933493pt;}
.y3b_c00431{bottom:584.431909pt;}
.y3c_c00431{bottom:585.249461pt;}
.y3d_c00431{bottom:585.537685pt;}
.y3e_c00431{bottom:585.917333pt;}
.y3f_c00431{bottom:586.252085pt;}
.y40_c00431{bottom:586.966405pt;}
.y31_c00431{bottom:603.109723pt;}
.y32_c00431{bottom:604.237245pt;}
.y33_c00431{bottom:604.790419pt;}
.y34_c00431{bottom:605.234077pt;}
.y35_c00431{bottom:605.470981pt;}
.y36_c00431{bottom:606.190741pt;}
.y37_c00431{bottom:606.522643pt;}
.y28_c00431{bottom:623.751995pt;}
.y29_c00431{bottom:624.017771pt;}
.y2a_c00431{bottom:624.547341pt;}
.y2b_c00431{bottom:624.991288pt;}
.y2c_c00431{bottom:625.506347pt;}
.y2d_c00431{bottom:625.900949pt;}
.y2e_c00431{bottom:626.446341pt;}
.y2f_c00431{bottom:626.875235pt;}
.y30_c00431{bottom:627.163307pt;}
.y20_c00431{bottom:643.674915pt;}
.y21_c00431{bottom:644.270221pt;}
.y22_c00431{bottom:644.966661pt;}
.y23_c00431{bottom:645.737605pt;}
.y24_c00431{bottom:645.926928pt;}
.y25_c00431{bottom:646.205773pt;}
.y26_c00431{bottom:646.755355pt;}
.y27_c00431{bottom:647.796291pt;}
.y18_c00431{bottom:664.078245pt;}
.y19_c00431{bottom:664.355917pt;}
.y1a_c00431{bottom:664.544707pt;}
.y1b_c00431{bottom:665.122269pt;}
.y1c_c00431{bottom:665.397195pt;}
.y1d_c00431{bottom:665.908309pt;}
.y1e_c00431{bottom:666.437683pt;}
.y1f_c00431{bottom:667.056731pt;}
.ye_c00431{bottom:683.520981pt;}
.yf_c00431{bottom:683.989853pt;}
.y10_c00431{bottom:684.402557pt;}
.y11_c00431{bottom:685.079869pt;}
.y12_c00431{bottom:685.427453pt;}
.y13_c00431{bottom:686.411024pt;}
.y14_c00431{bottom:686.726485pt;}
.y15_c00431{bottom:687.641504pt;}
.y16_c00431{bottom:688.601640pt;}
.y17_c00431{bottom:688.658061pt;}
.y5_c00431{bottom:703.446667pt;}
.y6_c00431{bottom:703.758043pt;}
.y7_c00431{bottom:704.152843pt;}
.y8_c00431{bottom:704.662675pt;}
.y9_c00431{bottom:705.393259pt;}
.ya_c00431{bottom:706.204123pt;}
.yb_c00431{bottom:706.702315pt;}
.yc_c00431{bottom:707.505931pt;}
.yd_c00431{bottom:708.093595pt;}
.y1_c00431{bottom:725.520000pt;}
.y2_c00431{bottom:726.962260pt;}
.y3_c00431{bottom:727.718220pt;}
.y4_c00431{bottom:728.024300pt;}
.y70_c00431{bottom:729.360000pt;}
.h15_c00431{height:14.933333pt;}
.hd_c00431{height:19.600000pt;}
.h14_c00431{height:37.333333pt;}
.h1b_c00431{height:40.133333pt;}
.h19_c00431{height:43.866667pt;}
.h18_c00431{height:44.800000pt;}
.h16_c00431{height:45.733333pt;}
.h13_c00431{height:46.666667pt;}
.h17_c00431{height:47.600000pt;}
.he_c00431{height:58.802381pt;}
.h10_c00431{height:60.669124pt;}
.h8_c00431{height:60.671035pt;}
.h5_c00431{height:60.676494pt;}
.h1a_c00431{height:61.600000pt;}
.h9_c00431{height:61.604435pt;}
.h7_c00431{height:61.609978pt;}
.hf_c00431{height:62.535866pt;}
.ha_c00431{height:62.537836pt;}
.h3_c00431{height:62.543463pt;}
.h11_c00431{height:63.469237pt;}
.hb_c00431{height:63.471236pt;}
.h4_c00431{height:63.476947pt;}
.h12_c00431{height:64.400000pt;}
.hc_c00431{height:64.404637pt;}
.h2_c00431{height:64.407245pt;}
.h6_c00431{height:66.277401pt;}
.h1c_c00431{height:67.197883pt;}
.h0_c00431{height:896.400000pt;}
.h1_c00431{height:896.666667pt;}
.w1_c00431{width:612.666667pt;}
.w0_c00431{width:612.933333pt;}
.x0_c00431{left:0.000000pt;}
.x71_c00431{left:125.760000pt;}
.x86_c00431{left:126.720000pt;}
.x77_c00431{left:127.680000pt;}
.x7f_c00431{left:128.880000pt;}
.x78_c00431{left:141.120000pt;}
.x80_c00431{left:145.680000pt;}
.x76_c00431{left:146.640000pt;}
.x7a_c00431{left:148.320000pt;}
.x25_c00431{left:151.808403pt;}
.x5_c00431{left:152.745333pt;}
.x3a_c00431{left:154.462491pt;}
.x40_c00431{left:155.391883pt;}
.xa8_c00431{left:161.054667pt;}
.x72_c00431{left:163.200000pt;}
.x33_c00431{left:168.872000pt;}
.x6_c00431{left:170.044000pt;}
.x17_c00431{left:173.376755pt;}
.x3b_c00431{left:175.835568pt;}
.x4b_c00431{left:177.356987pt;}
.xe_c00431{left:180.911232pt;}
.x5a_c00431{left:184.080849pt;}
.x54_c00431{left:185.935195pt;}
.x18_c00431{left:186.903072pt;}
.x1_c00431{left:189.162667pt;}
.x73_c00431{left:191.040000pt;}
.x7_c00431{left:191.977333pt;}
.x6a_c00431{left:193.681525pt;}
.x6e_c00431{left:195.360000pt;}
.x7b_c00431{left:196.320000pt;}
.x1e_c00431{left:197.874115pt;}
.x79_c00431{left:199.680000pt;}
.x81_c00431{left:202.320000pt;}
.x46_c00431{left:203.356213pt;}
.xf_c00431{left:205.172997pt;}
.x4c_c00431{left:206.158464pt;}
.x51_c00431{left:209.665067pt;}
.x5b_c00431{left:211.201712pt;}
.x6b_c00431{left:214.081848pt;}
.x62_c00431{left:216.243461pt;}
.x26_c00431{left:218.075555pt;}
.x8_c00431{left:220.301333pt;}
.x82_c00431{left:222.960000pt;}
.x67_c00431{left:223.922763pt;}
.x2d_c00431{left:226.771835pt;}
.x19_c00431{left:228.178048pt;}
.x34_c00431{left:229.885333pt;}
.x85_c00431{left:232.080000pt;}
.x47_c00431{left:234.595632pt;}
.x4d_c00431{left:236.400149pt;}
.x3c_c00431{left:238.238816pt;}
.x7c_c00431{left:242.400000pt;}
.x10_c00431{left:245.024384pt;}
.x63_c00431{left:246.724600pt;}
.x1a_c00431{left:247.823464pt;}
.x41_c00431{left:250.444837pt;}
.x1f_c00431{left:251.458939pt;}
.x48_c00431{left:252.842731pt;}
.x7d_c00431{left:253.920000pt;}
.x27_c00431{left:255.039539pt;}
.x9_c00431{left:260.889333pt;}
.x2e_c00431{left:263.653827pt;}
.x11_c00431{left:265.446077pt;}
.x4e_c00431{left:266.641835pt;}
.x64_c00431{left:267.844983pt;}
.x74_c00431{left:269.280000pt;}
.x35_c00431{left:271.420000pt;}
.x5c_c00431{left:276.244313pt;}
.x84_c00431{left:278.880000pt;}
.x1b_c00431{left:284.295413pt;}
.x2_c00431{left:285.313333pt;}
.x87_c00431{left:287.760000pt;}
.x7e_c00431{left:290.400000pt;}
.x2f_c00431{left:293.266101pt;}
.x28_c00431{left:297.954837pt;}
.x3d_c00431{left:300.408731pt;}
.x42_c00431{left:304.442133pt;}
.xa_c00431{left:305.937333pt;}
.x75_c00431{left:307.200000pt;}
.x30_c00431{left:309.094965pt;}
.x20_c00431{left:310.738933pt;}
.x65_c00431{left:313.927381pt;}
.x4f_c00431{left:316.805051pt;}
.x83_c00431{left:319.680000pt;}
.x56_c00431{left:320.800000pt;}
.x1c_c00431{left:322.078125pt;}
.x12_c00431{left:323.275109pt;}
.x43_c00431{left:324.370613pt;}
.x21_c00431{left:325.332253pt;}
.x5e_c00431{left:329.877881pt;}
.x29_c00431{left:330.843723pt;}
.xb_c00431{left:333.614667pt;}
.x90_c00431{left:334.560000pt;}
.x3_c00431{left:335.710667pt;}
.x36_c00431{left:339.549333pt;}
.x13_c00431{left:341.838112pt;}
.x22_c00431{left:346.751507pt;}
.x96_c00431{left:348.000000pt;}
.xa2_c00431{left:349.200000pt;}
.x6c_c00431{left:352.327711pt;}
.x4_c00431{left:356.116000pt;}
.x31_c00431{left:357.084224pt;}
.x68_c00431{left:359.768433pt;}
.x91_c00431{left:361.200000pt;}
.x37_c00431{left:363.568000pt;}
.x1d_c00431{left:366.250627pt;}
.x3e_c00431{left:368.807915pt;}
.xa4_c00431{left:370.320000pt;}
.x5f_c00431{left:372.862265pt;}
.x49_c00431{left:374.486976pt;}
.x2a_c00431{left:376.259285pt;}
.xc_c00431{left:378.260000pt;}
.x32_c00431{left:379.228091pt;}
.x8f_c00431{left:382.560000pt;}
.x52_c00431{left:384.122005pt;}
.x5d_c00431{left:385.449157pt;}
.x44_c00431{left:387.249451pt;}
.x23_c00431{left:388.991299pt;}
.x66_c00431{left:390.969621pt;}
.x6f_c00431{left:394.320000pt;}
.x14_c00431{left:395.636405pt;}
.x50_c00431{left:399.371605pt;}
.x3f_c00431{left:401.924848pt;}
.x97_c00431{left:403.440000pt;}
.x9c_c00431{left:406.560000pt;}
.xa5_c00431{left:407.520000pt;}
.x57_c00431{left:409.796000pt;}
.xd_c00431{left:410.908000pt;}
.x2b_c00431{left:412.016483pt;}
.x4a_c00431{left:414.133253pt;}
.x45_c00431{left:415.095456pt;}
.x70_c00431{left:420.000000pt;}
.x38_c00431{left:423.101333pt;}
.x9d_c00431{left:424.320000pt;}
.x60_c00431{left:425.649412pt;}
.x98_c00431{left:426.960000pt;}
.x58_c00431{left:428.274667pt;}
.x69_c00431{left:430.571503pt;}
.x92_c00431{left:432.000000pt;}
.x2c_c00431{left:436.023075pt;}
.x8c_c00431{left:438.000000pt;}
.x9e_c00431{left:441.120000pt;}
.x53_c00431{left:442.681451pt;}
.x15_c00431{left:452.089413pt;}
.x99_c00431{left:454.080000pt;}
.x16_c00431{left:455.372128pt;}
.x61_c00431{left:459.951057pt;}
.x59_c00431{left:462.121333pt;}
.x8d_c00431{left:466.560000pt;}
.x24_c00431{left:469.050499pt;}
.xa6_c00431{left:472.080000pt;}
.x93_c00431{left:473.760000pt;}
.x6d_c00431{left:477.612529pt;}
.x89_c00431{left:479.040000pt;}
.x39_c00431{left:482.628000pt;}
.x9f_c00431{left:484.560000pt;}
.x8a_c00431{left:498.720000pt;}
.x9a_c00431{left:502.320000pt;}
.x8e_c00431{left:509.040000pt;}
.xa0_c00431{left:512.400000pt;}
.x94_c00431{left:514.560000pt;}
.x88_c00431{left:525.120000pt;}
.x9b_c00431{left:527.520000pt;}
.xa7_c00431{left:529.920000pt;}
.x8b_c00431{left:533.760000pt;}
.xa1_c00431{left:535.440000pt;}
.x95_c00431{left:539.040000pt;}
.xa3_c00431{left:556.800000pt;}
.x55_c00431{left:606.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_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_4ab86c84425994a9e06b01c2.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;}
.m48_c00432{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);}
.m49_c00432{transform:matrix(0.009935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009935,0.000000,0.000000,0.250000,0,0);}
.med_c00432{transform:matrix(0.015945,-0.000112,0.001750,0.249994,0,0);-ms-transform:matrix(0.015945,-0.000112,0.001750,0.249994,0,0);-webkit-transform:matrix(0.015945,-0.000112,0.001750,0.249994,0,0);}
.m31_c00432{transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);-ms-transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);-webkit-transform:matrix(0.017424,-0.000139,0.002000,0.249992,0,0);}
.mce_c00432{transform:matrix(0.027694,-0.000194,0.001750,0.249994,0,0);-ms-transform:matrix(0.027694,-0.000194,0.001750,0.249994,0,0);-webkit-transform:matrix(0.027694,-0.000194,0.001750,0.249994,0,0);}
.m40_c00432{transform:matrix(0.090207,-0.000722,0.002000,0.249992,0,0);-ms-transform:matrix(0.090207,-0.000722,0.002000,0.249992,0,0);-webkit-transform:matrix(0.090207,-0.000722,0.002000,0.249992,0,0);}
.m7_c00432{transform:matrix(0.093388,-0.001121,0.003000,0.249982,0,0);-ms-transform:matrix(0.093388,-0.001121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.093388,-0.001121,0.003000,0.249982,0,0);}
.m112_c00432{transform:matrix(0.114285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114285,0.000000,0.000000,0.250000,0,0);}
.m84_c00432{transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);}
.m55_c00432{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);}
.m81_c00432{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);}
.m6d_c00432{transform:matrix(0.151495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151495,0.000000,0.000000,0.250000,0,0);}
.m68_c00432{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);}
.m33_c00432{transform:matrix(0.153110,-0.001225,0.002000,0.249992,0,0);-ms-transform:matrix(0.153110,-0.001225,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153110,-0.001225,0.002000,0.249992,0,0);}
.me5_c00432{transform:matrix(0.153281,-0.001073,0.001750,0.249994,0,0);-ms-transform:matrix(0.153281,-0.001073,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153281,-0.001073,0.001750,0.249994,0,0);}
.m92_c00432{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);}
.m59_c00432{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);}
.m78_c00432{transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158130,0.000000,0.000000,0.250000,0,0);}
.mb2_c00432{transform:matrix(0.158556,-0.001110,0.001750,0.249994,0,0);-ms-transform:matrix(0.158556,-0.001110,0.001750,0.249994,0,0);-webkit-transform:matrix(0.158556,-0.001110,0.001750,0.249994,0,0);}
.me_c00432{transform:matrix(0.159993,-0.001920,0.003000,0.249982,0,0);-ms-transform:matrix(0.159993,-0.001920,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159993,-0.001920,0.003000,0.249982,0,0);}
.m37_c00432{transform:matrix(0.160070,-0.001281,0.002000,0.249992,0,0);-ms-transform:matrix(0.160070,-0.001281,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160070,-0.001281,0.002000,0.249992,0,0);}
.mdc_c00432{transform:matrix(0.160666,-0.001125,0.001750,0.249994,0,0);-ms-transform:matrix(0.160666,-0.001125,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160666,-0.001125,0.001750,0.249994,0,0);}
.md8_c00432{transform:matrix(0.163316,-0.001143,0.001750,0.249994,0,0);-ms-transform:matrix(0.163316,-0.001143,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163316,-0.001143,0.001750,0.249994,0,0);}
.m87_c00432{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);}
.m26_c00432{transform:matrix(0.165250,-0.001322,0.002000,0.249992,0,0);-ms-transform:matrix(0.165250,-0.001322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165250,-0.001322,0.002000,0.249992,0,0);}
.mfc_c00432{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);}
.md4_c00432{transform:matrix(0.166521,-0.001166,0.001750,0.249994,0,0);-ms-transform:matrix(0.166521,-0.001166,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166521,-0.001166,0.001750,0.249994,0,0);}
.m50_c00432{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);}
.m1e_c00432{transform:matrix(0.167305,-0.001338,0.002000,0.249992,0,0);-ms-transform:matrix(0.167305,-0.001338,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167305,-0.001338,0.002000,0.249992,0,0);}
.m16_c00432{transform:matrix(0.167763,-0.002013,0.003000,0.249982,0,0);-ms-transform:matrix(0.167763,-0.002013,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167763,-0.002013,0.003000,0.249982,0,0);}
.m3a_c00432{transform:matrix(0.168000,-0.001344,0.002000,0.249992,0,0);-ms-transform:matrix(0.168000,-0.001344,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168000,-0.001344,0.002000,0.249992,0,0);}
.md_c00432{transform:matrix(0.168143,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168143,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168143,-0.002018,0.003000,0.249982,0,0);}
.m99_c00432{transform:matrix(0.168480,-0.001348,0.002000,0.249992,0,0);-ms-transform:matrix(0.168480,-0.001348,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168480,-0.001348,0.002000,0.249992,0,0);}
.m6f_c00432{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);}
.m6c_c00432{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);}
.m2_c00432{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);}
.m74_c00432{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);}
.m4b_c00432{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);}
.m6a_c00432{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.m5a_c00432{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);}
.mb0_c00432{transform:matrix(0.171911,-0.001203,0.001750,0.249994,0,0);-ms-transform:matrix(0.171911,-0.001203,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171911,-0.001203,0.001750,0.249994,0,0);}
.m70_c00432{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);}
.mfd_c00432{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);}
.m65_c00432{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);}
.maa_c00432{transform:matrix(0.172489,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172489,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172489,-0.001380,0.002000,0.249992,0,0);}
.m10_c00432{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);}
.mdd_c00432{transform:matrix(0.174156,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174156,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174156,-0.001219,0.001750,0.249994,0,0);}
.m63_c00432{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);}
.m4f_c00432{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);}
.m98_c00432{transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);}
.ma1_c00432{transform:matrix(0.175394,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175394,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175394,-0.001403,0.002000,0.249992,0,0);}
.m64_c00432{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);}
.m1d_c00432{transform:matrix(0.175629,-0.001405,0.002000,0.249992,0,0);-ms-transform:matrix(0.175629,-0.001405,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175629,-0.001405,0.002000,0.249992,0,0);}
.ma2_c00432{transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176149,-0.001409,0.002000,0.249992,0,0);}
.m76_c00432{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);}
.m28_c00432{transform:matrix(0.176164,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176164,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176164,-0.001409,0.002000,0.249992,0,0);}
.m29_c00432{transform:matrix(0.176564,-0.001413,0.002000,0.249992,0,0);-ms-transform:matrix(0.176564,-0.001413,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176564,-0.001413,0.002000,0.249992,0,0);}
.mc6_c00432{transform:matrix(0.176771,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176771,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176771,-0.001237,0.001750,0.249994,0,0);}
.mdb_c00432{transform:matrix(0.177861,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177861,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177861,-0.001245,0.001750,0.249994,0,0);}
.md6_c00432{transform:matrix(0.177886,-0.001245,0.001750,0.249994,0,0);-ms-transform:matrix(0.177886,-0.001245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177886,-0.001245,0.001750,0.249994,0,0);}
.mbe_c00432{transform:matrix(0.178376,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178376,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178376,-0.001249,0.001750,0.249994,0,0);}
.md9_c00432{transform:matrix(0.178466,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178466,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178466,-0.001249,0.001750,0.249994,0,0);}
.mb_c00432{transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);-ms-transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178762,-0.002145,0.003000,0.249982,0,0);}
.m115_c00432{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);}
.m38_c00432{transform:matrix(0.179274,-0.001434,0.002000,0.249992,0,0);-ms-transform:matrix(0.179274,-0.001434,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179274,-0.001434,0.002000,0.249992,0,0);}
.m9_c00432{transform:matrix(0.179342,-0.002152,0.003000,0.249982,0,0);-ms-transform:matrix(0.179342,-0.002152,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179342,-0.002152,0.003000,0.249982,0,0);}
.m11e_c00432{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);}
.m72_c00432{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);}
.m4e_c00432{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);}
.m6e_c00432{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);}
.m126_c00432{transform:matrix(0.180281,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180281,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180281,-0.001803,0.002500,0.249988,0,0);}
.m6b_c00432{transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.180414,-0.001443,0.002000,0.249992,0,0);-ms-transform:matrix(0.180414,-0.001443,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180414,-0.001443,0.002000,0.249992,0,0);}
.m2f_c00432{transform:matrix(0.180924,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180924,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180924,-0.001447,0.002000,0.249992,0,0);}
.md1_c00432{transform:matrix(0.180931,-0.001267,0.001750,0.249994,0,0);-ms-transform:matrix(0.180931,-0.001267,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180931,-0.001267,0.001750,0.249994,0,0);}
.mf8_c00432{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);}
.m5b_c00432{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);}
.mb1_c00432{transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);}
.me7_c00432{transform:matrix(0.181476,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181476,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181476,-0.001270,0.001750,0.249994,0,0);}
.m1f_c00432{transform:matrix(0.181829,-0.001455,0.002000,0.249992,0,0);-ms-transform:matrix(0.181829,-0.001455,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181829,-0.001455,0.002000,0.249992,0,0);}
.mb4_c00432{transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181831,-0.001273,0.001750,0.249994,0,0);}
.mcf_c00432{transform:matrix(0.182131,-0.001275,0.001750,0.249994,0,0);-ms-transform:matrix(0.182131,-0.001275,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182131,-0.001275,0.001750,0.249994,0,0);}
.ma7_c00432{transform:matrix(0.182229,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182229,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182229,-0.001458,0.002000,0.249992,0,0);}
.mf5_c00432{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);}
.mf1_c00432{transform:matrix(0.182866,-0.001280,0.001750,0.249994,0,0);-ms-transform:matrix(0.182866,-0.001280,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182866,-0.001280,0.001750,0.249994,0,0);}
.m10a_c00432{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);}
.m90_c00432{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);}
.mfb_c00432{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);}
.m36_c00432{transform:matrix(0.185214,-0.001482,0.002000,0.249992,0,0);-ms-transform:matrix(0.185214,-0.001482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185214,-0.001482,0.002000,0.249992,0,0);}
.mb5_c00432{transform:matrix(0.185270,-0.001297,0.001750,0.249994,0,0);-ms-transform:matrix(0.185270,-0.001297,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185270,-0.001297,0.001750,0.249994,0,0);}
.m102_c00432{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);}
.md3_c00432{transform:matrix(0.185315,-0.001297,0.001750,0.249994,0,0);-ms-transform:matrix(0.185315,-0.001297,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185315,-0.001297,0.001750,0.249994,0,0);}
.m11_c00432{transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-ms-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185642,-0.002228,0.003000,0.249982,0,0);}
.mbb_c00432{transform:matrix(0.186070,-0.001302,0.001750,0.249994,0,0);-ms-transform:matrix(0.186070,-0.001302,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186070,-0.001302,0.001750,0.249994,0,0);}
.ma8_c00432{transform:matrix(0.186599,-0.001493,0.002000,0.249992,0,0);-ms-transform:matrix(0.186599,-0.001493,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186599,-0.001493,0.002000,0.249992,0,0);}
.ma_c00432{transform:matrix(0.186702,-0.002240,0.003000,0.249982,0,0);-ms-transform:matrix(0.186702,-0.002240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186702,-0.002240,0.003000,0.249982,0,0);}
.m3_c00432{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);}
.m1a_c00432{transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);}
.md5_c00432{transform:matrix(0.186935,-0.001309,0.001750,0.249994,0,0);-ms-transform:matrix(0.186935,-0.001309,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186935,-0.001309,0.001750,0.249994,0,0);}
.m58_c00432{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);}
.maf_c00432{transform:matrix(0.187110,-0.001310,0.001750,0.249994,0,0);-ms-transform:matrix(0.187110,-0.001310,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187110,-0.001310,0.001750,0.249994,0,0);}
.mab_c00432{transform:matrix(0.187704,-0.001502,0.002000,0.249992,0,0);-ms-transform:matrix(0.187704,-0.001502,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187704,-0.001502,0.002000,0.249992,0,0);}
.mbf_c00432{transform:matrix(0.187975,-0.001316,0.001750,0.249994,0,0);-ms-transform:matrix(0.187975,-0.001316,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187975,-0.001316,0.001750,0.249994,0,0);}
.mc0_c00432{transform:matrix(0.189260,-0.001325,0.001750,0.249994,0,0);-ms-transform:matrix(0.189260,-0.001325,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189260,-0.001325,0.001750,0.249994,0,0);}
.ma5_c00432{transform:matrix(0.189674,-0.001517,0.002000,0.249992,0,0);-ms-transform:matrix(0.189674,-0.001517,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189674,-0.001517,0.002000,0.249992,0,0);}
.m77_c00432{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);}
.m127_c00432{transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);-ms-transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190175,-0.001902,0.002500,0.249988,0,0);}
.m4d_c00432{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);}
.m67_c00432{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);}
.m86_c00432{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);}
.mda_c00432{transform:matrix(0.191545,-0.001341,0.001750,0.249994,0,0);-ms-transform:matrix(0.191545,-0.001341,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191545,-0.001341,0.001750,0.249994,0,0);}
.me8_c00432{transform:matrix(0.191750,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191750,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191750,-0.001342,0.001750,0.249994,0,0);}
.m13_c00432{transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);-ms-transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);}
.mff_c00432{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);}
.mf0_c00432{transform:matrix(0.193160,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193160,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193160,-0.001352,0.001750,0.249994,0,0);}
.m8a_c00432{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);}
.m9a_c00432{transform:matrix(0.193464,-0.001548,0.002000,0.249992,0,0);-ms-transform:matrix(0.193464,-0.001548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193464,-0.001548,0.002000,0.249992,0,0);}
.ma9_c00432{transform:matrix(0.193849,-0.001551,0.002000,0.249992,0,0);-ms-transform:matrix(0.193849,-0.001551,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193849,-0.001551,0.002000,0.249992,0,0);}
.m12_c00432{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);}
.ma4_c00432{transform:matrix(0.194189,-0.001554,0.002000,0.249992,0,0);-ms-transform:matrix(0.194189,-0.001554,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194189,-0.001554,0.002000,0.249992,0,0);}
.m2a_c00432{transform:matrix(0.194779,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194779,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194779,-0.001558,0.002000,0.249992,0,0);}
.m122_c00432{transform:matrix(0.195150,-0.001952,0.002500,0.249988,0,0);-ms-transform:matrix(0.195150,-0.001952,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195150,-0.001952,0.002500,0.249988,0,0);}
.m14_c00432{transform:matrix(0.195506,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195506,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195506,-0.002346,0.003000,0.249982,0,0);}
.m4c_c00432{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);}
.m5_c00432{transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);-ms-transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195811,-0.002350,0.003000,0.249982,0,0);}
.mf4_c00432{transform:matrix(0.196415,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196415,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196415,-0.001375,0.001750,0.249994,0,0);}
.m35_c00432{transform:matrix(0.196594,-0.001573,0.002000,0.249992,0,0);-ms-transform:matrix(0.196594,-0.001573,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196594,-0.001573,0.002000,0.249992,0,0);}
.m7e_c00432{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);}
.meb_c00432{transform:matrix(0.197245,-0.001381,0.001750,0.249994,0,0);-ms-transform:matrix(0.197245,-0.001381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197245,-0.001381,0.001750,0.249994,0,0);}
.m71_c00432{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);}
.ma6_c00432{transform:matrix(0.197814,-0.001583,0.002000,0.249992,0,0);-ms-transform:matrix(0.197814,-0.001583,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197814,-0.001583,0.002000,0.249992,0,0);}
.m9c_c00432{transform:matrix(0.197949,-0.001584,0.002000,0.249992,0,0);-ms-transform:matrix(0.197949,-0.001584,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197949,-0.001584,0.002000,0.249992,0,0);}
.me9_c00432{transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);-ms-transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198170,-0.001387,0.001750,0.249994,0,0);}
.mc_c00432{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);}
.m30_c00432{transform:matrix(0.199084,-0.001593,0.002000,0.249992,0,0);-ms-transform:matrix(0.199084,-0.001593,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199084,-0.001593,0.002000,0.249992,0,0);}
.m94_c00432{transform:matrix(0.199154,-0.001593,0.002000,0.249992,0,0);-ms-transform:matrix(0.199154,-0.001593,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199154,-0.001593,0.002000,0.249992,0,0);}
.m97_c00432{transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);}
.me6_c00432{transform:matrix(0.200255,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200255,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200255,-0.001402,0.001750,0.249994,0,0);}
.m19_c00432{transform:matrix(0.200274,-0.001602,0.002000,0.249992,0,0);-ms-transform:matrix(0.200274,-0.001602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200274,-0.001602,0.002000,0.249992,0,0);}
.m57_c00432{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);}
.mea_c00432{transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);-ms-transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201375,-0.001410,0.001750,0.249994,0,0);}
.m5d_c00432{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);}
.mca_c00432{transform:matrix(0.201785,-0.001412,0.001750,0.249994,0,0);-ms-transform:matrix(0.201785,-0.001412,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201785,-0.001412,0.001750,0.249994,0,0);}
.m91_c00432{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);}
.m2d_c00432{transform:matrix(0.201889,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201889,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201889,-0.001615,0.002000,0.249992,0,0);}
.md0_c00432{transform:matrix(0.202320,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202320,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202320,-0.001416,0.001750,0.249994,0,0);}
.m125_c00432{transform:matrix(0.202425,-0.002024,0.002500,0.249988,0,0);-ms-transform:matrix(0.202425,-0.002024,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202425,-0.002024,0.002500,0.249988,0,0);}
.m8f_c00432{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);}
.mb9_c00432{transform:matrix(0.202680,-0.001419,0.001750,0.249994,0,0);-ms-transform:matrix(0.202680,-0.001419,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202680,-0.001419,0.001750,0.249994,0,0);}
.mb7_c00432{transform:matrix(0.202805,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202805,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202805,-0.001420,0.001750,0.249994,0,0);}
.m95_c00432{transform:matrix(0.203089,-0.001625,0.002000,0.249992,0,0);-ms-transform:matrix(0.203089,-0.001625,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203089,-0.001625,0.002000,0.249992,0,0);}
.m8e_c00432{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);}
.mc1_c00432{transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);-ms-transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203600,-0.001425,0.001750,0.249994,0,0);}
.m9e_c00432{transform:matrix(0.203858,-0.001631,0.002000,0.249992,0,0);-ms-transform:matrix(0.203858,-0.001631,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203858,-0.001631,0.002000,0.249992,0,0);}
.m18_c00432{transform:matrix(0.204483,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204483,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204483,-0.001636,0.002000,0.249992,0,0);}
.m8_c00432{transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);-ms-transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204555,-0.002455,0.003000,0.249982,0,0);}
.ma0_c00432{transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);}
.m60_c00432{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);}
.m110_c00432{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);}
.ma3_c00432{transform:matrix(0.208383,-0.001667,0.002000,0.249992,0,0);-ms-transform:matrix(0.208383,-0.001667,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208383,-0.001667,0.002000,0.249992,0,0);}
.m105_c00432{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);}
.mf_c00432{transform:matrix(0.208920,-0.002507,0.003000,0.249982,0,0);-ms-transform:matrix(0.208920,-0.002507,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208920,-0.002507,0.003000,0.249982,0,0);}
.me3_c00432{transform:matrix(0.210690,-0.001475,0.001750,0.249994,0,0);-ms-transform:matrix(0.210690,-0.001475,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210690,-0.001475,0.001750,0.249994,0,0);}
.m109_c00432{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);}
.m10f_c00432{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);}
.m124_c00432{transform:matrix(0.211784,-0.002118,0.002500,0.249988,0,0);-ms-transform:matrix(0.211784,-0.002118,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211784,-0.002118,0.002500,0.249988,0,0);}
.m12d_c00432{transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);-ms-transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);}
.m69_c00432{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);}
.me4_c00432{transform:matrix(0.212695,-0.001489,0.001750,0.249994,0,0);-ms-transform:matrix(0.212695,-0.001489,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212695,-0.001489,0.001750,0.249994,0,0);}
.m54_c00432{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_c00432{transform:matrix(0.213478,-0.001708,0.002000,0.249992,0,0);-ms-transform:matrix(0.213478,-0.001708,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213478,-0.001708,0.002000,0.249992,0,0);}
.m32_c00432{transform:matrix(0.213553,-0.001708,0.002000,0.249992,0,0);-ms-transform:matrix(0.213553,-0.001708,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213553,-0.001708,0.002000,0.249992,0,0);}
.m79_c00432{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);}
.m108_c00432{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_c00432{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);}
.m11f_c00432{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);}
.m85_c00432{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);}
.m9f_c00432{transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215183,-0.001721,0.002000,0.249992,0,0);}
.m80_c00432{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);}
.mee_c00432{transform:matrix(0.215270,-0.001507,0.001750,0.249994,0,0);-ms-transform:matrix(0.215270,-0.001507,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215270,-0.001507,0.001750,0.249994,0,0);}
.m27_c00432{transform:matrix(0.216168,-0.001729,0.002000,0.249992,0,0);-ms-transform:matrix(0.216168,-0.001729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216168,-0.001729,0.002000,0.249992,0,0);}
.mec_c00432{transform:matrix(0.216200,-0.001513,0.001750,0.249994,0,0);-ms-transform:matrix(0.216200,-0.001513,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216200,-0.001513,0.001750,0.249994,0,0);}
.m7d_c00432{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);}
.m128_c00432{transform:matrix(0.216509,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216509,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216509,-0.002165,0.002500,0.249988,0,0);}
.m10c_c00432{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);}
.m75_c00432{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);}
.m82_c00432{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);}
.m104_c00432{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);}
.m117_c00432{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);}
.m46_c00432{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);}
.mcd_c00432{transform:matrix(0.218930,-0.001533,0.001750,0.249994,0,0);-ms-transform:matrix(0.218930,-0.001533,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218930,-0.001533,0.001750,0.249994,0,0);}
.m4_c00432{transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);-ms-transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);}
.m5c_c00432{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);}
.m116_c00432{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.m114_c00432{transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220490,0.000000,0.000000,0.250000,0,0);}
.m11d_c00432{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);}
.mf7_c00432{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);}
.m5f_c00432{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.221168,-0.001769,0.002000,0.249992,0,0);-ms-transform:matrix(0.221168,-0.001769,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221168,-0.001769,0.002000,0.249992,0,0);}
.mbd_c00432{transform:matrix(0.221240,-0.001549,0.001750,0.249994,0,0);-ms-transform:matrix(0.221240,-0.001549,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221240,-0.001549,0.001750,0.249994,0,0);}
.m4a_c00432{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);}
.m0_c00432{transform:matrix(0.221569,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221569,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221569,-0.002659,0.003000,0.249982,0,0);}
.m1_c00432{transform:matrix(0.223279,-0.002679,0.003000,0.249982,0,0);-ms-transform:matrix(0.223279,-0.002679,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223279,-0.002679,0.003000,0.249982,0,0);}
.m12e_c00432{transform:matrix(0.223799,-0.002238,0.002500,0.249988,0,0);-ms-transform:matrix(0.223799,-0.002238,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223799,-0.002238,0.002500,0.249988,0,0);}
.m3e_c00432{transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);-ms-transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224183,-0.001793,0.002000,0.249992,0,0);}
.m2e_c00432{transform:matrix(0.224403,-0.001795,0.002000,0.249992,0,0);-ms-transform:matrix(0.224403,-0.001795,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224403,-0.001795,0.002000,0.249992,0,0);}
.m7f_c00432{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);}
.m8b_c00432{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.mac_c00432{transform:matrix(0.226169,-0.001583,0.001750,0.249994,0,0);-ms-transform:matrix(0.226169,-0.001583,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226169,-0.001583,0.001750,0.249994,0,0);}
.md2_c00432{transform:matrix(0.226194,-0.001583,0.001750,0.249994,0,0);-ms-transform:matrix(0.226194,-0.001583,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226194,-0.001583,0.001750,0.249994,0,0);}
.m123_c00432{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);}
.mcc_c00432{transform:matrix(0.226864,-0.001588,0.001750,0.249994,0,0);-ms-transform:matrix(0.226864,-0.001588,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226864,-0.001588,0.001750,0.249994,0,0);}
.m5e_c00432{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);}
.m121_c00432{transform:matrix(0.228344,-0.002283,0.002500,0.249988,0,0);-ms-transform:matrix(0.228344,-0.002283,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228344,-0.002283,0.002500,0.249988,0,0);}
.m10e_c00432{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.m62_c00432{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);}
.mf2_c00432{transform:matrix(0.230789,-0.001616,0.001750,0.249994,0,0);-ms-transform:matrix(0.230789,-0.001616,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230789,-0.001616,0.001750,0.249994,0,0);}
.m107_c00432{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);}
.mf6_c00432{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);}
.m34_c00432{transform:matrix(0.231298,-0.001850,0.002000,0.249992,0,0);-ms-transform:matrix(0.231298,-0.001850,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231298,-0.001850,0.002000,0.249992,0,0);}
.m9b_c00432{transform:matrix(0.231438,-0.001852,0.002000,0.249992,0,0);-ms-transform:matrix(0.231438,-0.001852,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231438,-0.001852,0.002000,0.249992,0,0);}
.m2b_c00432{transform:matrix(0.231883,-0.001855,0.002000,0.249992,0,0);-ms-transform:matrix(0.231883,-0.001855,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231883,-0.001855,0.002000,0.249992,0,0);}
.mde_c00432{transform:matrix(0.232294,-0.001626,0.001750,0.249994,0,0);-ms-transform:matrix(0.232294,-0.001626,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232294,-0.001626,0.001750,0.249994,0,0);}
.m23_c00432{transform:matrix(0.232388,-0.001859,0.002000,0.249992,0,0);-ms-transform:matrix(0.232388,-0.001859,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232388,-0.001859,0.002000,0.249992,0,0);}
.m61_c00432{transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);}
.m8d_c00432{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);}
.m20_c00432{transform:matrix(0.234063,-0.001873,0.002000,0.249992,0,0);-ms-transform:matrix(0.234063,-0.001873,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234063,-0.001873,0.002000,0.249992,0,0);}
.mc5_c00432{transform:matrix(0.234794,-0.001644,0.001750,0.249994,0,0);-ms-transform:matrix(0.234794,-0.001644,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234794,-0.001644,0.001750,0.249994,0,0);}
.m39_c00432{transform:matrix(0.235842,-0.001887,0.002000,0.249992,0,0);-ms-transform:matrix(0.235842,-0.001887,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235842,-0.001887,0.002000,0.249992,0,0);}
.mc4_c00432{transform:matrix(0.237654,-0.001664,0.001750,0.249994,0,0);-ms-transform:matrix(0.237654,-0.001664,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237654,-0.001664,0.001750,0.249994,0,0);}
.m11b_c00432{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);}
.m93_c00432{transform:matrix(0.237962,-0.001904,0.002000,0.249992,0,0);-ms-transform:matrix(0.237962,-0.001904,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237962,-0.001904,0.002000,0.249992,0,0);}
.mc9_c00432{transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);-ms-transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);}
.m25_c00432{transform:matrix(0.238917,-0.001911,0.002000,0.249992,0,0);-ms-transform:matrix(0.238917,-0.001911,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238917,-0.001911,0.002000,0.249992,0,0);}
.mbc_c00432{transform:matrix(0.240404,-0.001683,0.001750,0.249994,0,0);-ms-transform:matrix(0.240404,-0.001683,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240404,-0.001683,0.001750,0.249994,0,0);}
.m51_c00432{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);}
.m9d_c00432{transform:matrix(0.242467,-0.001940,0.002000,0.249992,0,0);-ms-transform:matrix(0.242467,-0.001940,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242467,-0.001940,0.002000,0.249992,0,0);}
.m22_c00432{transform:matrix(0.242852,-0.001943,0.002000,0.249992,0,0);-ms-transform:matrix(0.242852,-0.001943,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242852,-0.001943,0.002000,0.249992,0,0);}
.m118_c00432{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);}
.m1b_c00432{transform:matrix(0.243682,-0.001949,0.002000,0.249992,0,0);-ms-transform:matrix(0.243682,-0.001949,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243682,-0.001949,0.002000,0.249992,0,0);}
.m56_c00432{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);}
.m52_c00432{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);}
.m7b_c00432{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);}
.m15_c00432{transform:matrix(0.246402,-0.002957,0.003000,0.249982,0,0);-ms-transform:matrix(0.246402,-0.002957,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246402,-0.002957,0.003000,0.249982,0,0);}
.mfa_c00432{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m89_c00432{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.me2_c00432{transform:matrix(0.249179,-0.001744,0.001750,0.249994,0,0);-ms-transform:matrix(0.249179,-0.001744,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249179,-0.001744,0.001750,0.249994,0,0);}
.m11a_c00432{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);}
.mc3_c00432{transform:matrix(0.250464,-0.001753,0.001750,0.249994,0,0);-ms-transform:matrix(0.250464,-0.001753,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250464,-0.001753,0.001750,0.249994,0,0);}
.m7a_c00432{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.mc7_c00432{transform:matrix(0.252774,-0.001769,0.001750,0.249994,0,0);-ms-transform:matrix(0.252774,-0.001769,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252774,-0.001769,0.001750,0.249994,0,0);}
.m10b_c00432{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);}
.m2c_c00432{transform:matrix(0.258862,-0.002071,0.002000,0.249992,0,0);-ms-transform:matrix(0.258862,-0.002071,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258862,-0.002071,0.002000,0.249992,0,0);}
.mc2_c00432{transform:matrix(0.259634,-0.001817,0.001750,0.249994,0,0);-ms-transform:matrix(0.259634,-0.001817,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259634,-0.001817,0.001750,0.249994,0,0);}
.m113_c00432{transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260005,0.000000,0.000000,0.250000,0,0);}
.mad_c00432{transform:matrix(0.260889,-0.001826,0.001750,0.249994,0,0);-ms-transform:matrix(0.260889,-0.001826,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260889,-0.001826,0.001750,0.249994,0,0);}
.m73_c00432{transform:matrix(0.262970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262970,0.000000,0.000000,0.250000,0,0);}
.m103_c00432{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);}
.m24_c00432{transform:matrix(0.263477,-0.002108,0.002000,0.249992,0,0);-ms-transform:matrix(0.263477,-0.002108,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263477,-0.002108,0.002000,0.249992,0,0);}
.mba_c00432{transform:matrix(0.263679,-0.001846,0.001750,0.249994,0,0);-ms-transform:matrix(0.263679,-0.001846,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263679,-0.001846,0.001750,0.249994,0,0);}
.m101_c00432{transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);}
.m119_c00432{transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);}
.m106_c00432{transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269860,0.000000,0.000000,0.250000,0,0);}
.m12c_c00432{transform:matrix(0.270291,-0.002703,0.002500,0.249988,0,0);-ms-transform:matrix(0.270291,-0.002703,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270291,-0.002703,0.002500,0.249988,0,0);}
.m129_c00432{transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);-ms-transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272226,-0.002722,0.002500,0.249988,0,0);}
.m120_c00432{transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272875,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.274316,-0.002195,0.002000,0.249992,0,0);-ms-transform:matrix(0.274316,-0.002195,0.002000,0.249992,0,0);-webkit-transform:matrix(0.274316,-0.002195,0.002000,0.249992,0,0);}
.mcb_c00432{transform:matrix(0.276548,-0.001936,0.001750,0.249994,0,0);-ms-transform:matrix(0.276548,-0.001936,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276548,-0.001936,0.001750,0.249994,0,0);}
.mae_c00432{transform:matrix(0.276943,-0.001939,0.001750,0.249994,0,0);-ms-transform:matrix(0.276943,-0.001939,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276943,-0.001939,0.001750,0.249994,0,0);}
.m100_c00432{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);}
.m88_c00432{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);}
.m45_c00432{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);}
.m47_c00432{transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);}
.mb3_c00432{transform:matrix(0.281253,-0.001969,0.001750,0.249994,0,0);-ms-transform:matrix(0.281253,-0.001969,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281253,-0.001969,0.001750,0.249994,0,0);}
.m3c_c00432{transform:matrix(0.283286,-0.002266,0.002000,0.249992,0,0);-ms-transform:matrix(0.283286,-0.002266,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283286,-0.002266,0.002000,0.249992,0,0);}
.mdf_c00432{transform:matrix(0.284398,-0.001991,0.001750,0.249994,0,0);-ms-transform:matrix(0.284398,-0.001991,0.001750,0.249994,0,0);-webkit-transform:matrix(0.284398,-0.001991,0.001750,0.249994,0,0);}
.m7c_c00432{transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285945,0.000000,0.000000,0.250000,0,0);}
.mb8_c00432{transform:matrix(0.288203,-0.002017,0.001750,0.249994,0,0);-ms-transform:matrix(0.288203,-0.002017,0.001750,0.249994,0,0);-webkit-transform:matrix(0.288203,-0.002017,0.001750,0.249994,0,0);}
.m43_c00432{transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290280,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.294694,-0.003536,0.003000,0.249982,0,0);-ms-transform:matrix(0.294694,-0.003536,0.003000,0.249982,0,0);-webkit-transform:matrix(0.294694,-0.003536,0.003000,0.249982,0,0);}
.m8c_c00432{transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294730,0.000000,0.000000,0.250000,0,0);}
.m12a_c00432{transform:matrix(0.301770,-0.003018,0.002500,0.249988,0,0);-ms-transform:matrix(0.301770,-0.003018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.301770,-0.003018,0.002500,0.249988,0,0);}
.m11c_c00432{transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);}
.mf3_c00432{transform:matrix(0.309417,-0.002166,0.001750,0.249994,0,0);-ms-transform:matrix(0.309417,-0.002166,0.001750,0.249994,0,0);-webkit-transform:matrix(0.309417,-0.002166,0.001750,0.249994,0,0);}
.m83_c00432{transform:matrix(0.313730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313730,0.000000,0.000000,0.250000,0,0);}
.m111_c00432{transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.318045,-0.002544,0.002000,0.249992,0,0);-ms-transform:matrix(0.318045,-0.002544,0.002000,0.249992,0,0);-webkit-transform:matrix(0.318045,-0.002544,0.002000,0.249992,0,0);}
.m3d_c00432{transform:matrix(0.319725,-0.002558,0.002000,0.249992,0,0);-ms-transform:matrix(0.319725,-0.002558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.319725,-0.002558,0.002000,0.249992,0,0);}
.mb6_c00432{transform:matrix(0.335442,-0.002348,0.001750,0.249994,0,0);-ms-transform:matrix(0.335442,-0.002348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.335442,-0.002348,0.001750,0.249994,0,0);}
.m42_c00432{transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343060,0.000000,0.000000,0.250000,0,0);}
.md7_c00432{transform:matrix(0.348036,-0.002436,0.001750,0.249994,0,0);-ms-transform:matrix(0.348036,-0.002436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.348036,-0.002436,0.001750,0.249994,0,0);}
.me1_c00432{transform:matrix(0.348666,-0.002441,0.001750,0.249994,0,0);-ms-transform:matrix(0.348666,-0.002441,0.001750,0.249994,0,0);-webkit-transform:matrix(0.348666,-0.002441,0.001750,0.249994,0,0);}
.me0_c00432{transform:matrix(0.355126,-0.002486,0.001750,0.249994,0,0);-ms-transform:matrix(0.355126,-0.002486,0.001750,0.249994,0,0);-webkit-transform:matrix(0.355126,-0.002486,0.001750,0.249994,0,0);}
.mf9_c00432{transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363945,0.000000,0.000000,0.250000,0,0);}
.mc8_c00432{transform:matrix(0.369361,-0.002586,0.001750,0.249994,0,0);-ms-transform:matrix(0.369361,-0.002586,0.001750,0.249994,0,0);-webkit-transform:matrix(0.369361,-0.002586,0.001750,0.249994,0,0);}
.mfe_c00432{transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);}
.m12b_c00432{transform:matrix(0.381801,-0.003818,0.002500,0.249988,0,0);-ms-transform:matrix(0.381801,-0.003818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.381801,-0.003818,0.002500,0.249988,0,0);}
.m41_c00432{transform:matrix(0.381890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381890,0.000000,0.000000,0.250000,0,0);}
.m10d_c00432{transform:matrix(0.416005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416005,0.000000,0.000000,0.250000,0,0);}
.mef_c00432{transform:matrix(0.452679,-0.003169,0.001750,0.249994,0,0);-ms-transform:matrix(0.452679,-0.003169,0.001750,0.249994,0,0);-webkit-transform:matrix(0.452679,-0.003169,0.001750,0.249994,0,0);}
.m53_c00432{transform:matrix(0.460085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460085,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(1.301016,-0.015612,0.003000,0.249982,0,0);-ms-transform:matrix(1.301016,-0.015612,0.003000,0.249982,0,0);-webkit-transform:matrix(1.301016,-0.015612,0.003000,0.249982,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;}
.fs12_c00432{font-size:47.250000px;}
.fsd_c00432{font-size:48.301183px;}
.fs13_c00432{font-size:50.400000px;}
.fse_c00432{font-size:50.401235px;}
.fs11_c00432{font-size:52.500000px;}
.fsf_c00432{font-size:52.501286px;}
.fs14_c00432{font-size:52.502625px;}
.fs10_c00432{font-size:53.551312px;}
.fs8_c00432{font-size:63.000000px;}
.fs5_c00432{font-size:64.052050px;}
.fsa_c00432{font-size:67.200000px;}
.fs4_c00432{font-size:68.252184px;}
.fs2_c00432{font-size:68.254914px;}
.fs6_c00432{font-size:69.300000px;}
.fs3_c00432{font-size:69.302218px;}
.fs7_c00432{font-size:70.350000px;}
.fs9_c00432{font-size:71.400000px;}
.fs0_c00432{font-size:71.405141px;}
.fs1_c00432{font-size:72.455216px;}
.fsc_c00432{font-size:73.502352px;}
.fsb_c00432{font-size:74.550000px;}
.y0_c00432{bottom:0.000000px;}
.yc1_c00432{bottom:144.721500px;}
.yc2_c00432{bottom:144.929280px;}
.yc3_c00432{bottom:145.320735px;}
.yc4_c00432{bottom:145.693320px;}
.yc5_c00432{bottom:145.830630px;}
.yc6_c00432{bottom:146.284290px;}
.yc7_c00432{bottom:146.619825px;}
.yc8_c00432{bottom:147.059550px;}
.yc9_c00432{bottom:147.543210px;}
.yca_c00432{bottom:147.740325px;}
.ycb_c00432{bottom:148.193610px;}
.ycc_c00432{bottom:148.312185px;}
.ycd_c00432{bottom:148.631070px;}
.yce_c00432{bottom:148.955430px;}
.yc0_c00432{bottom:165.579000px;}
.yb0_c00432{bottom:181.441500px;}
.yb1_c00432{bottom:181.653000px;}
.yb2_c00432{bottom:181.788000px;}
.yb3_c00432{bottom:181.935000px;}
.yb4_c00432{bottom:182.125500px;}
.yb5_c00432{bottom:182.344500px;}
.yb6_c00432{bottom:182.455500px;}
.yb7_c00432{bottom:182.722500px;}
.yb8_c00432{bottom:182.992500px;}
.yb9_c00432{bottom:183.159000px;}
.yba_c00432{bottom:183.444000px;}
.ybb_c00432{bottom:183.645000px;}
.ybc_c00432{bottom:183.847500px;}
.ybd_c00432{bottom:183.897000px;}
.ybe_c00432{bottom:183.991500px;}
.ybf_c00432{bottom:184.375500px;}
.yaf_c00432{bottom:200.914500px;}
.ya8_c00432{bottom:218.234403px;}
.ya9_c00432{bottom:218.234933px;}
.yaa_c00432{bottom:218.235441px;}
.yae_c00432{bottom:218.235549px;}
.yac_c00432{bottom:218.235840px;}
.yab_c00432{bottom:218.235911px;}
.yad_c00432{bottom:218.236040px;}
.y9b_c00432{bottom:234.091634px;}
.y9c_c00432{bottom:234.239940px;}
.y9d_c00432{bottom:234.571890px;}
.y9e_c00432{bottom:234.725961px;}
.y9f_c00432{bottom:235.018151px;}
.ya0_c00432{bottom:235.160502px;}
.ya1_c00432{bottom:235.642753px;}
.ya2_c00432{bottom:235.948943px;}
.ya3_c00432{bottom:236.142363px;}
.ya4_c00432{bottom:236.399331px;}
.ya5_c00432{bottom:236.545483px;}
.ya6_c00432{bottom:236.861702px;}
.ya7_c00432{bottom:237.060678px;}
.y88_c00432{bottom:251.909594px;}
.y89_c00432{bottom:251.984933px;}
.y8a_c00432{bottom:252.123030px;}
.y8b_c00432{bottom:252.316746px;}
.y8c_c00432{bottom:252.437253px;}
.y8d_c00432{bottom:252.751266px;}
.y8e_c00432{bottom:252.883893px;}
.y8f_c00432{bottom:253.045904px;}
.y90_c00432{bottom:253.211736px;}
.y91_c00432{bottom:253.397649px;}
.y92_c00432{bottom:253.486525px;}
.y93_c00432{bottom:253.632636px;}
.y94_c00432{bottom:253.863917px;}
.y95_c00432{bottom:254.110665px;}
.y96_c00432{bottom:254.302059px;}
.y97_c00432{bottom:254.381295px;}
.y98_c00432{bottom:254.580660px;}
.y99_c00432{bottom:254.717225px;}
.y9a_c00432{bottom:254.961674px;}
.y7a_c00432{bottom:271.705118px;}
.y87_c00432{bottom:271.705455px;}
.y7b_c00432{bottom:271.705478px;}
.y7c_c00432{bottom:271.705868px;}
.y83_c00432{bottom:271.705967px;}
.y86_c00432{bottom:271.706126px;}
.y84_c00432{bottom:271.706316px;}
.y85_c00432{bottom:271.706396px;}
.y80_c00432{bottom:271.706457px;}
.y7d_c00432{bottom:271.706527px;}
.y82_c00432{bottom:271.706687px;}
.y81_c00432{bottom:271.706787px;}
.y7e_c00432{bottom:271.706797px;}
.y7f_c00432{bottom:271.706967px;}
.y67_c00432{bottom:288.630000px;}
.y68_c00432{bottom:288.734171px;}
.y69_c00432{bottom:288.891261px;}
.y6a_c00432{bottom:289.059167px;}
.y6b_c00432{bottom:289.170729px;}
.y6c_c00432{bottom:289.499589px;}
.y6d_c00432{bottom:289.637475px;}
.y6e_c00432{bottom:289.830497px;}
.y6f_c00432{bottom:289.939802px;}
.y70_c00432{bottom:290.130901px;}
.y71_c00432{bottom:290.295384px;}
.y72_c00432{bottom:290.382135px;}
.y73_c00432{bottom:290.545011px;}
.y74_c00432{bottom:290.690352px;}
.y75_c00432{bottom:290.975721px;}
.y76_c00432{bottom:291.081561px;}
.y77_c00432{bottom:291.249750px;}
.y78_c00432{bottom:291.499303px;}
.y79_c00432{bottom:291.881084px;}
.y65_c00432{bottom:339.721080px;}
.y66_c00432{bottom:339.721548px;}
.y64_c00432{bottom:339.721752px;}
.y63_c00432{bottom:339.722124px;}
.y62_c00432{bottom:339.722616px;}
.y61_c00432{bottom:339.722676px;}
.y60_c00432{bottom:339.722940px;}
.y56_c00432{bottom:361.261668px;}
.y57_c00432{bottom:361.517772px;}
.y58_c00432{bottom:362.012076px;}
.y59_c00432{bottom:362.520132px;}
.y5a_c00432{bottom:362.682444px;}
.y5b_c00432{bottom:363.250068px;}
.y5c_c00432{bottom:363.677172px;}
.y5d_c00432{bottom:364.091976px;}
.y5e_c00432{bottom:364.409880px;}
.y5f_c00432{bottom:364.710060px;}
.y4d_c00432{bottom:385.021500px;}
.y4e_c00432{bottom:385.339056px;}
.y4f_c00432{bottom:385.861776px;}
.y50_c00432{bottom:386.086596px;}
.y51_c00432{bottom:386.494440px;}
.y52_c00432{bottom:386.760408px;}
.y53_c00432{bottom:386.944032px;}
.y54_c00432{bottom:387.276372px;}
.y55_c00432{bottom:387.589896px;}
.y4c_c00432{bottom:408.622500px;}
.y4b_c00432{bottom:431.847000px;}
.y4a_c00432{bottom:454.074000px;}
.y49_c00432{bottom:476.898000px;}
.y48_c00432{bottom:499.032000px;}
.y47_c00432{bottom:522.492000px;}
.y46_c00432{bottom:545.338500px;}
.y45_c00432{bottom:567.741000px;}
.y44_c00432{bottom:590.592000px;}
.y43_c00432{bottom:613.873500px;}
.y3e_c00432{bottom:657.915768px;}
.y3c_c00432{bottom:657.916020px;}
.y40_c00432{bottom:657.916176px;}
.y3d_c00432{bottom:657.916260px;}
.y3f_c00432{bottom:657.916368px;}
.y41_c00432{bottom:657.916416px;}
.y3b_c00432{bottom:657.916752px;}
.y3a_c00432{bottom:657.916764px;}
.y42_c00432{bottom:657.917052px;}
.y36_c00432{bottom:680.499396px;}
.y37_c00432{bottom:680.499516px;}
.y35_c00432{bottom:680.500128px;}
.y38_c00432{bottom:680.500176px;}
.y39_c00432{bottom:680.500404px;}
.y34_c00432{bottom:680.500800px;}
.y33_c00432{bottom:680.501064px;}
.y32_c00432{bottom:680.501124px;}
.y2c_c00432{bottom:702.945060px;}
.y31_c00432{bottom:702.945084px;}
.y2d_c00432{bottom:702.945528px;}
.y2e_c00432{bottom:702.945576px;}
.y2f_c00432{bottom:702.945744px;}
.y2b_c00432{bottom:702.945780px;}
.y30_c00432{bottom:702.945804px;}
.y21_c00432{bottom:724.140648px;}
.y22_c00432{bottom:724.424484px;}
.y23_c00432{bottom:724.629132px;}
.y24_c00432{bottom:725.042136px;}
.y25_c00432{bottom:725.417772px;}
.y26_c00432{bottom:725.747064px;}
.y27_c00432{bottom:726.169776px;}
.y28_c00432{bottom:726.213636px;}
.y29_c00432{bottom:726.526968px;}
.y2a_c00432{bottom:726.884400px;}
.y19_c00432{bottom:747.432000px;}
.y1a_c00432{bottom:748.053816px;}
.y1b_c00432{bottom:748.363020px;}
.y1c_c00432{bottom:748.749636px;}
.y1d_c00432{bottom:749.214300px;}
.y1e_c00432{bottom:749.330760px;}
.y1f_c00432{bottom:749.596452px;}
.y20_c00432{bottom:749.974584px;}
.y10_c00432{bottom:769.496610px;}
.y11_c00432{bottom:769.930764px;}
.y12_c00432{bottom:770.168100px;}
.y13_c00432{bottom:770.562036px;}
.y14_c00432{bottom:771.004968px;}
.y15_c00432{bottom:771.220560px;}
.y16_c00432{bottom:771.844554px;}
.y17_c00432{bottom:772.017468px;}
.y18_c00432{bottom:772.531062px;}
.y9_c00432{bottom:791.641200px;}
.ya_c00432{bottom:792.539970px;}
.yb_c00432{bottom:792.993360px;}
.yc_c00432{bottom:793.372188px;}
.yd_c00432{bottom:794.278806px;}
.ye_c00432{bottom:794.479062px;}
.yf_c00432{bottom:795.435696px;}
.y1_c00432{bottom:815.131500px;}
.y2_c00432{bottom:815.615772px;}
.y3_c00432{bottom:816.223488px;}
.y4_c00432{bottom:816.531378px;}
.y5_c00432{bottom:817.225890px;}
.y6_c00432{bottom:817.762920px;}
.y7_c00432{bottom:818.389356px;}
.y8_c00432{bottom:818.862846px;}
.h14_c00432{height:47.250000px;}
.hf_c00432{height:48.301183px;}
.h15_c00432{height:50.400000px;}
.h10_c00432{height:50.401235px;}
.h13_c00432{height:52.500000px;}
.h11_c00432{height:52.501286px;}
.h16_c00432{height:52.502625px;}
.h12_c00432{height:53.551312px;}
.ha_c00432{height:63.000000px;}
.h7_c00432{height:64.052050px;}
.hc_c00432{height:67.200000px;}
.h6_c00432{height:68.252184px;}
.h4_c00432{height:68.254914px;}
.h8_c00432{height:69.300000px;}
.h5_c00432{height:69.302218px;}
.h9_c00432{height:70.350000px;}
.hb_c00432{height:71.400000px;}
.h2_c00432{height:71.405141px;}
.h3_c00432{height:72.455216px;}
.he_c00432{height:73.502352px;}
.hd_c00432{height:74.550000px;}
.h1_c00432{height:1005.000000px;}
.h0_c00432{height:1005.150000px;}
.w0_c00432{width:715.200000px;}
.w1_c00432{width:715.500000px;}
.x0_c00432{left:0.000000px;}
.x81_c00432{left:93.964473px;}
.x8b_c00432{left:97.809381px;}
.x70_c00432{left:105.337500px;}
.x82_c00432{left:106.441557px;}
.x92_c00432{left:107.459349px;}
.xa3_c00432{left:110.428500px;}
.x71_c00432{left:120.219000px;}
.x8c_c00432{left:122.639060px;}
.x79_c00432{left:124.739417px;}
.x35_c00432{left:126.630000px;}
.x2a_c00432{left:129.874092px;}
.x3c_c00432{left:137.430000px;}
.x2b_c00432{left:139.054680px;}
.xf_c00432{left:140.258880px;}
.x1_c00432{left:141.369000px;}
.x6c_c00432{left:143.638236px;}
.x7a_c00432{left:151.740740px;}
.x9d_c00432{left:157.218000px;}
.x18_c00432{left:158.325000px;}
.x61_c00432{left:161.284500px;}
.x27_c00432{left:162.813660px;}
.x36_c00432{left:166.320000px;}
.x1f_c00432{left:169.695276px;}
.x93_c00432{left:171.180968px;}
.x3d_c00432{left:173.070000px;}
.x49_c00432{left:178.470000px;}
.x30_c00432{left:180.636504px;}
.x2_c00432{left:181.725000px;}
.x10_c00432{left:183.689424px;}
.x43_c00432{left:185.760000px;}
.x20_c00432{left:190.213452px;}
.x96_c00432{left:198.180000px;}
.x37_c00432{left:200.070000px;}
.x7b_c00432{left:202.503218px;}
.x9_c00432{left:204.521652px;}
.x9e_c00432{left:205.548000px;}
.x11_c00432{left:207.468000px;}
.x53_c00432{left:208.980000px;}
.x5a_c00432{left:210.600000px;}
.x44_c00432{left:214.110000px;}
.x2c_c00432{left:216.276624px;}
.x38_c00432{left:219.780000px;}
.x97_c00432{left:223.290000px;}
.x72_c00432{left:229.564500px;}
.x3_c00432{left:232.368000px;}
.x6d_c00432{left:234.361044px;}
.xa_c00432{left:236.928378px;}
.x5e_c00432{left:238.140000px;}
.x2d_c00432{left:243.006840px;}
.x3e_c00432{left:245.160000px;}
.x12_c00432{left:246.921954px;}
.x4a_c00432{left:248.400000px;}
.x8d_c00432{left:252.241463px;}
.x28_c00432{left:255.696600px;}
.x4_c00432{left:258.025500px;}
.x31_c00432{left:260.830140px;}
.xb_c00432{left:263.996730px;}
.x62_c00432{left:266.319000px;}
.x3f_c00432{left:267.570000px;}
.x21_c00432{left:269.104692px;}
.x7c_c00432{left:270.815067px;}
.x19_c00432{left:274.702500px;}
.x73_c00432{left:276.837000px;}
.xa8_c00432{left:278.974500px;}
.x4b_c00432{left:281.610000px;}
.x68_c00432{left:283.589028px;}
.x4f_c00432{left:287.820000px;}
.x39_c00432{left:289.440000px;}
.x13_c00432{left:291.209016px;}
.x74_c00432{left:292.452000px;}
.x63_c00432{left:294.421500px;}
.x45_c00432{left:296.730000px;}
.x32_c00432{left:300.521184px;}
.x22_c00432{left:302.015664px;}
.x2e_c00432{left:305.919372px;}
.x56_c00432{left:309.420000px;}
.x83_c00432{left:310.843485px;}
.x14_c00432{left:312.800538px;}
.x54_c00432{left:314.820000px;}
.x5_c00432{left:315.901500px;}
.x29_c00432{left:320.229228px;}
.x1a_c00432{left:323.029500px;}
.x98_c00432{left:325.350000px;}
.x57_c00432{left:326.970000px;}
.xc_c00432{left:328.796682px;}
.x6e_c00432{left:331.564272px;}
.x5b_c00432{left:338.310000px;}
.x4c_c00432{left:341.010000px;}
.xd_c00432{left:343.109340px;}
.x23_c00432{left:344.353992px;}
.x64_c00432{left:345.402000px;}
.x24_c00432{left:348.711420px;}
.x50_c00432{left:353.970000px;}
.x75_c00432{left:355.642500px;}
.x7d_c00432{left:356.677778px;}
.x6_c00432{left:360.654000px;}
.x3a_c00432{left:362.610000px;}
.x33_c00432{left:364.513776px;}
.x40_c00432{left:365.580000px;}
.x5c_c00432{left:368.820000px;}
.x58_c00432{left:370.170000px;}
.x6f_c00432{left:371.795352px;}
.x15_c00432{left:375.176532px;}
.x5f_c00432{left:377.460000px;}
.x65_c00432{left:378.648000px;}
.x25_c00432{left:380.002416px;}
.x1b_c00432{left:381.112500px;}
.x69_c00432{left:382.990932px;}
.x47_c00432{left:384.750000px;}
.x2f_c00432{left:386.112996px;}
.x16_c00432{left:392.461446px;}
.x9f_c00432{left:393.967500px;}
.x1c_c00432{left:395.670000px;}
.x41_c00432{left:398.520000px;}
.x51_c00432{left:399.600000px;}
.x66_c00432{left:401.601000px;}
.x7e_c00432{left:403.658577px;}
.xa9_c00432{left:404.866500px;}
.x8e_c00432{left:407.498555px;}
.x46_c00432{left:410.400000px;}
.xe_c00432{left:411.452202px;}
.x7_c00432{left:412.857000px;}
.x60_c00432{left:413.910000px;}
.x26_c00432{left:415.680840px;}
.x84_c00432{left:419.655752px;}
.x4d_c00432{left:421.740000px;}
.x6a_c00432{left:424.528272px;}
.x48_c00432{left:426.600000px;}
.x1d_c00432{left:428.881500px;}
.x42_c00432{left:434.160000px;}
.x99_c00432{left:437.130000px;}
.xa4_c00432{left:439.288500px;}
.x76_c00432{left:440.440500px;}
.x55_c00432{left:441.720000px;}
.x17_c00432{left:443.887188px;}
.x94_c00432{left:444.966876px;}
.x4e_c00432{left:449.010000px;}
.x8_c00432{left:452.314500px;}
.x34_c00432{left:456.316644px;}
.xa0_c00432{left:458.472000px;}
.x3b_c00432{left:459.540000px;}
.x85_c00432{left:460.691535px;}
.x5d_c00432{left:462.510000px;}
.x7f_c00432{left:466.030133px;}
.x9a_c00432{left:468.720000px;}
.xaa_c00432{left:469.906500px;}
.xa1_c00432{left:472.047000px;}
.x1e_c00432{left:476.148000px;}
.x52_c00432{left:480.060000px;}
.x67_c00432{left:482.334000px;}
.x6b_c00432{left:486.412788px;}
.x86_c00432{left:492.533756px;}
.xa5_c00432{left:496.258500px;}
.x59_c00432{left:498.690000px;}
.x87_c00432{left:505.781850px;}
.x8f_c00432{left:506.862248px;}
.x9b_c00432{left:507.870000px;}
.xa6_c00432{left:510.028500px;}
.xab_c00432{left:513.652500px;}
.x77_c00432{left:515.238000px;}
.x80_c00432{left:523.541457px;}
.xa2_c00432{left:526.845000px;}
.x95_c00432{left:527.857940px;}
.x9c_c00432{left:532.980000px;}
.x88_c00432{left:538.977081px;}
.xa7_c00432{left:542.158500px;}
.xac_c00432{left:546.088500px;}
.x90_c00432{left:559.536615px;}
.x89_c00432{left:561.700739px;}
.x78_c00432{left:569.778000px;}
.x91_c00432{left:592.676346px;}
.x8a_c00432{left:602.408022px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.fs12_c00432{font-size:42.000000pt;}
.fsd_c00432{font-size:42.934385pt;}
.fs13_c00432{font-size:44.800000pt;}
.fse_c00432{font-size:44.801098pt;}
.fs11_c00432{font-size:46.666667pt;}
.fsf_c00432{font-size:46.667810pt;}
.fs14_c00432{font-size:46.669000pt;}
.fs10_c00432{font-size:47.601166pt;}
.fs8_c00432{font-size:56.000000pt;}
.fs5_c00432{font-size:56.935155pt;}
.fsa_c00432{font-size:59.733333pt;}
.fs4_c00432{font-size:60.668608pt;}
.fs2_c00432{font-size:60.671035pt;}
.fs6_c00432{font-size:61.600000pt;}
.fs3_c00432{font-size:61.601971pt;}
.fs7_c00432{font-size:62.533333pt;}
.fs9_c00432{font-size:63.466667pt;}
.fs0_c00432{font-size:63.471236pt;}
.fs1_c00432{font-size:64.404637pt;}
.fsc_c00432{font-size:65.335424pt;}
.fsb_c00432{font-size:66.266667pt;}
.y0_c00432{bottom:0.000000pt;}
.yc1_c00432{bottom:128.641333pt;}
.yc2_c00432{bottom:128.826027pt;}
.yc3_c00432{bottom:129.173987pt;}
.yc4_c00432{bottom:129.505173pt;}
.yc5_c00432{bottom:129.627227pt;}
.yc6_c00432{bottom:130.030480pt;}
.yc7_c00432{bottom:130.328733pt;}
.yc8_c00432{bottom:130.719600pt;}
.yc9_c00432{bottom:131.149520pt;}
.yca_c00432{bottom:131.324733pt;}
.ycb_c00432{bottom:131.727653pt;}
.ycc_c00432{bottom:131.833053pt;}
.ycd_c00432{bottom:132.116507pt;}
.yce_c00432{bottom:132.404827pt;}
.yc0_c00432{bottom:147.181333pt;}
.yb0_c00432{bottom:161.281333pt;}
.yb1_c00432{bottom:161.469333pt;}
.yb2_c00432{bottom:161.589333pt;}
.yb3_c00432{bottom:161.720000pt;}
.yb4_c00432{bottom:161.889333pt;}
.yb5_c00432{bottom:162.084000pt;}
.yb6_c00432{bottom:162.182667pt;}
.yb7_c00432{bottom:162.420000pt;}
.yb8_c00432{bottom:162.660000pt;}
.yb9_c00432{bottom:162.808000pt;}
.yba_c00432{bottom:163.061333pt;}
.ybb_c00432{bottom:163.240000pt;}
.ybc_c00432{bottom:163.420000pt;}
.ybd_c00432{bottom:163.464000pt;}
.ybe_c00432{bottom:163.548000pt;}
.ybf_c00432{bottom:163.889333pt;}
.yaf_c00432{bottom:178.590667pt;}
.ya8_c00432{bottom:193.986136pt;}
.ya9_c00432{bottom:193.986607pt;}
.yaa_c00432{bottom:193.987059pt;}
.yae_c00432{bottom:193.987155pt;}
.yac_c00432{bottom:193.987413pt;}
.yab_c00432{bottom:193.987476pt;}
.yad_c00432{bottom:193.987591pt;}
.y9b_c00432{bottom:208.081452pt;}
.y9c_c00432{bottom:208.213280pt;}
.y9d_c00432{bottom:208.508347pt;}
.y9e_c00432{bottom:208.645299pt;}
.y9f_c00432{bottom:208.905023pt;}
.ya0_c00432{bottom:209.031557pt;}
.ya1_c00432{bottom:209.460225pt;}
.ya2_c00432{bottom:209.732393pt;}
.ya3_c00432{bottom:209.904323pt;}
.ya4_c00432{bottom:210.132739pt;}
.ya5_c00432{bottom:210.262652pt;}
.ya6_c00432{bottom:210.543735pt;}
.ya7_c00432{bottom:210.720603pt;}
.y88_c00432{bottom:223.919639pt;}
.y89_c00432{bottom:223.986607pt;}
.y8a_c00432{bottom:224.109360pt;}
.y8b_c00432{bottom:224.281552pt;}
.y8c_c00432{bottom:224.388669pt;}
.y8d_c00432{bottom:224.667792pt;}
.y8e_c00432{bottom:224.785683pt;}
.y8f_c00432{bottom:224.929692pt;}
.y90_c00432{bottom:225.077099pt;}
.y91_c00432{bottom:225.242355pt;}
.y92_c00432{bottom:225.321356pt;}
.y93_c00432{bottom:225.451232pt;}
.y94_c00432{bottom:225.656815pt;}
.y95_c00432{bottom:225.876147pt;}
.y96_c00432{bottom:226.046275pt;}
.y97_c00432{bottom:226.116707pt;}
.y98_c00432{bottom:226.293920pt;}
.y99_c00432{bottom:226.415311pt;}
.y9a_c00432{bottom:226.632599pt;}
.y7a_c00432{bottom:241.515660pt;}
.y87_c00432{bottom:241.515960pt;}
.y7b_c00432{bottom:241.515980pt;}
.y7c_c00432{bottom:241.516327pt;}
.y83_c00432{bottom:241.516415pt;}
.y86_c00432{bottom:241.516556pt;}
.y84_c00432{bottom:241.516725pt;}
.y85_c00432{bottom:241.516796pt;}
.y80_c00432{bottom:241.516851pt;}
.y7d_c00432{bottom:241.516913pt;}
.y82_c00432{bottom:241.517055pt;}
.y81_c00432{bottom:241.517144pt;}
.y7e_c00432{bottom:241.517153pt;}
.y7f_c00432{bottom:241.517304pt;}
.y67_c00432{bottom:256.560000pt;}
.y68_c00432{bottom:256.652596pt;}
.y69_c00432{bottom:256.792232pt;}
.y6a_c00432{bottom:256.941481pt;}
.y6b_c00432{bottom:257.040648pt;}
.y6c_c00432{bottom:257.332968pt;}
.y6d_c00432{bottom:257.455533pt;}
.y6e_c00432{bottom:257.627108pt;}
.y6f_c00432{bottom:257.724268pt;}
.y70_c00432{bottom:257.894135pt;}
.y71_c00432{bottom:258.040341pt;}
.y72_c00432{bottom:258.117453pt;}
.y73_c00432{bottom:258.262232pt;}
.y74_c00432{bottom:258.391424pt;}
.y75_c00432{bottom:258.645085pt;}
.y76_c00432{bottom:258.739165pt;}
.y77_c00432{bottom:258.888667pt;}
.y78_c00432{bottom:259.110492pt;}
.y79_c00432{bottom:259.449852pt;}
.y65_c00432{bottom:301.974293pt;}
.y66_c00432{bottom:301.974709pt;}
.y64_c00432{bottom:301.974891pt;}
.y63_c00432{bottom:301.975221pt;}
.y62_c00432{bottom:301.975659pt;}
.y61_c00432{bottom:301.975712pt;}
.y60_c00432{bottom:301.975947pt;}
.y56_c00432{bottom:321.121483pt;}
.y57_c00432{bottom:321.349131pt;}
.y58_c00432{bottom:321.788512pt;}
.y59_c00432{bottom:322.240117pt;}
.y5a_c00432{bottom:322.384395pt;}
.y5b_c00432{bottom:322.888949pt;}
.y5c_c00432{bottom:323.268597pt;}
.y5d_c00432{bottom:323.637312pt;}
.y5e_c00432{bottom:323.919893pt;}
.y5f_c00432{bottom:324.186720pt;}
.y4d_c00432{bottom:342.241333pt;}
.y4e_c00432{bottom:342.523605pt;}
.y4f_c00432{bottom:342.988245pt;}
.y50_c00432{bottom:343.188085pt;}
.y51_c00432{bottom:343.550613pt;}
.y52_c00432{bottom:343.787029pt;}
.y53_c00432{bottom:343.950251pt;}
.y54_c00432{bottom:344.245664pt;}
.y55_c00432{bottom:344.524352pt;}
.y4c_c00432{bottom:363.220000pt;}
.y4b_c00432{bottom:383.864000pt;}
.y4a_c00432{bottom:403.621333pt;}
.y49_c00432{bottom:423.909333pt;}
.y48_c00432{bottom:443.584000pt;}
.y47_c00432{bottom:464.437333pt;}
.y46_c00432{bottom:484.745333pt;}
.y45_c00432{bottom:504.658667pt;}
.y44_c00432{bottom:524.970667pt;}
.y43_c00432{bottom:545.665333pt;}
.y3e_c00432{bottom:584.814016pt;}
.y3c_c00432{bottom:584.814240pt;}
.y40_c00432{bottom:584.814379pt;}
.y3d_c00432{bottom:584.814453pt;}
.y3f_c00432{bottom:584.814549pt;}
.y41_c00432{bottom:584.814592pt;}
.y3b_c00432{bottom:584.814891pt;}
.y3a_c00432{bottom:584.814901pt;}
.y42_c00432{bottom:584.815157pt;}
.y36_c00432{bottom:604.888352pt;}
.y37_c00432{bottom:604.888459pt;}
.y35_c00432{bottom:604.889003pt;}
.y38_c00432{bottom:604.889045pt;}
.y39_c00432{bottom:604.889248pt;}
.y34_c00432{bottom:604.889600pt;}
.y33_c00432{bottom:604.889835pt;}
.y32_c00432{bottom:604.889888pt;}
.y2c_c00432{bottom:624.840053pt;}
.y31_c00432{bottom:624.840075pt;}
.y2d_c00432{bottom:624.840469pt;}
.y2e_c00432{bottom:624.840512pt;}
.y2f_c00432{bottom:624.840661pt;}
.y2b_c00432{bottom:624.840693pt;}
.y30_c00432{bottom:624.840715pt;}
.y21_c00432{bottom:643.680576pt;}
.y22_c00432{bottom:643.932875pt;}
.y23_c00432{bottom:644.114784pt;}
.y24_c00432{bottom:644.481899pt;}
.y25_c00432{bottom:644.815797pt;}
.y26_c00432{bottom:645.108501pt;}
.y27_c00432{bottom:645.484245pt;}
.y28_c00432{bottom:645.523232pt;}
.y29_c00432{bottom:645.801749pt;}
.y2a_c00432{bottom:646.119467pt;}
.y19_c00432{bottom:664.384000pt;}
.y1a_c00432{bottom:664.936725pt;}
.y1b_c00432{bottom:665.211573pt;}
.y1c_c00432{bottom:665.555232pt;}
.y1d_c00432{bottom:665.968267pt;}
.y1e_c00432{bottom:666.071787pt;}
.y1f_c00432{bottom:666.307957pt;}
.y20_c00432{bottom:666.644075pt;}
.y10_c00432{bottom:683.996987pt;}
.y11_c00432{bottom:684.382901pt;}
.y12_c00432{bottom:684.593867pt;}
.y13_c00432{bottom:684.944032pt;}
.y14_c00432{bottom:685.337749pt;}
.y15_c00432{bottom:685.529387pt;}
.y16_c00432{bottom:686.084048pt;}
.y17_c00432{bottom:686.237749pt;}
.y18_c00432{bottom:686.694277pt;}
.y9_c00432{bottom:703.681067pt;}
.ya_c00432{bottom:704.479973pt;}
.yb_c00432{bottom:704.882987pt;}
.yc_c00432{bottom:705.219723pt;}
.yd_c00432{bottom:706.025605pt;}
.ye_c00432{bottom:706.203611pt;}
.yf_c00432{bottom:707.053952pt;}
.y1_c00432{bottom:724.561333pt;}
.y2_c00432{bottom:724.991797pt;}
.y3_c00432{bottom:725.531989pt;}
.y4_c00432{bottom:725.805669pt;}
.y5_c00432{bottom:726.423013pt;}
.y6_c00432{bottom:726.900373pt;}
.y7_c00432{bottom:727.457205pt;}
.y8_c00432{bottom:727.878085pt;}
.h14_c00432{height:42.000000pt;}
.hf_c00432{height:42.934385pt;}
.h15_c00432{height:44.800000pt;}
.h10_c00432{height:44.801098pt;}
.h13_c00432{height:46.666667pt;}
.h11_c00432{height:46.667810pt;}
.h16_c00432{height:46.669000pt;}
.h12_c00432{height:47.601166pt;}
.ha_c00432{height:56.000000pt;}
.h7_c00432{height:56.935155pt;}
.hc_c00432{height:59.733333pt;}
.h6_c00432{height:60.668608pt;}
.h4_c00432{height:60.671035pt;}
.h8_c00432{height:61.600000pt;}
.h5_c00432{height:61.601971pt;}
.h9_c00432{height:62.533333pt;}
.hb_c00432{height:63.466667pt;}
.h2_c00432{height:63.471236pt;}
.h3_c00432{height:64.404637pt;}
.he_c00432{height:65.335424pt;}
.hd_c00432{height:66.266667pt;}
.h1_c00432{height:893.333333pt;}
.h0_c00432{height:893.466667pt;}
.w0_c00432{width:635.733333pt;}
.w1_c00432{width:636.000000pt;}
.x0_c00432{left:0.000000pt;}
.x81_c00432{left:83.523976pt;}
.x8b_c00432{left:86.941672pt;}
.x70_c00432{left:93.633333pt;}
.x82_c00432{left:94.614717pt;}
.x92_c00432{left:95.519421pt;}
.xa3_c00432{left:98.158667pt;}
.x71_c00432{left:106.861333pt;}
.x8c_c00432{left:109.012497pt;}
.x79_c00432{left:110.879481pt;}
.x35_c00432{left:112.560000pt;}
.x2a_c00432{left:115.443637pt;}
.x3c_c00432{left:122.160000pt;}
.x2b_c00432{left:123.604160pt;}
.xf_c00432{left:124.674560pt;}
.x1_c00432{left:125.661333pt;}
.x6c_c00432{left:127.678432pt;}
.x7a_c00432{left:134.880657pt;}
.x9d_c00432{left:139.749333pt;}
.x18_c00432{left:140.733333pt;}
.x61_c00432{left:143.364000pt;}
.x27_c00432{left:144.723253pt;}
.x36_c00432{left:147.840000pt;}
.x1f_c00432{left:150.840245pt;}
.x93_c00432{left:152.160860pt;}
.x3d_c00432{left:153.840000pt;}
.x49_c00432{left:158.640000pt;}
.x30_c00432{left:160.565781pt;}
.x2_c00432{left:161.533333pt;}
.x10_c00432{left:163.279488pt;}
.x43_c00432{left:165.120000pt;}
.x20_c00432{left:169.078624pt;}
.x96_c00432{left:176.160000pt;}
.x37_c00432{left:177.840000pt;}
.x7b_c00432{left:180.002860pt;}
.x9_c00432{left:181.797024pt;}
.x9e_c00432{left:182.709333pt;}
.x11_c00432{left:184.416000pt;}
.x53_c00432{left:185.760000pt;}
.x5a_c00432{left:187.200000pt;}
.x44_c00432{left:190.320000pt;}
.x2c_c00432{left:192.245888pt;}
.x38_c00432{left:195.360000pt;}
.x97_c00432{left:198.480000pt;}
.x72_c00432{left:204.057333pt;}
.x3_c00432{left:206.549333pt;}
.x6d_c00432{left:208.320928pt;}
.xa_c00432{left:210.603003pt;}
.x5e_c00432{left:211.680000pt;}
.x2d_c00432{left:216.006080pt;}
.x3e_c00432{left:217.920000pt;}
.x12_c00432{left:219.486181pt;}
.x4a_c00432{left:220.800000pt;}
.x8d_c00432{left:224.214633pt;}
.x28_c00432{left:227.285867pt;}
.x4_c00432{left:229.356000pt;}
.x31_c00432{left:231.849013pt;}
.xb_c00432{left:234.663760pt;}
.x62_c00432{left:236.728000pt;}
.x3f_c00432{left:237.840000pt;}
.x21_c00432{left:239.204171pt;}
.x7c_c00432{left:240.724504pt;}
.x19_c00432{left:244.180000pt;}
.x73_c00432{left:246.077333pt;}
.xa8_c00432{left:247.977333pt;}
.x4b_c00432{left:250.320000pt;}
.x68_c00432{left:252.079136pt;}
.x4f_c00432{left:255.840000pt;}
.x39_c00432{left:257.280000pt;}
.x13_c00432{left:258.852459pt;}
.x74_c00432{left:259.957333pt;}
.x63_c00432{left:261.708000pt;}
.x45_c00432{left:263.760000pt;}
.x32_c00432{left:267.129941pt;}
.x22_c00432{left:268.458368pt;}
.x2e_c00432{left:271.928331pt;}
.x56_c00432{left:275.040000pt;}
.x83_c00432{left:276.305320pt;}
.x14_c00432{left:278.044923pt;}
.x54_c00432{left:279.840000pt;}
.x5_c00432{left:280.801333pt;}
.x29_c00432{left:284.648203pt;}
.x1a_c00432{left:287.137333pt;}
.x98_c00432{left:289.200000pt;}
.x57_c00432{left:290.640000pt;}
.xc_c00432{left:292.263717pt;}
.x6e_c00432{left:294.723797pt;}
.x5b_c00432{left:300.720000pt;}
.x4c_c00432{left:303.120000pt;}
.xd_c00432{left:304.986080pt;}
.x23_c00432{left:306.092437pt;}
.x64_c00432{left:307.024000pt;}
.x24_c00432{left:309.965707pt;}
.x50_c00432{left:314.640000pt;}
.x75_c00432{left:316.126667pt;}
.x7d_c00432{left:317.046913pt;}
.x6_c00432{left:320.581333pt;}
.x3a_c00432{left:322.320000pt;}
.x33_c00432{left:324.012245pt;}
.x40_c00432{left:324.960000pt;}
.x5c_c00432{left:327.840000pt;}
.x58_c00432{left:329.040000pt;}
.x6f_c00432{left:330.484757pt;}
.x15_c00432{left:333.490251pt;}
.x5f_c00432{left:335.520000pt;}
.x65_c00432{left:336.576000pt;}
.x25_c00432{left:337.779925pt;}
.x1b_c00432{left:338.766667pt;}
.x69_c00432{left:340.436384pt;}
.x47_c00432{left:342.000000pt;}
.x2f_c00432{left:343.211552pt;}
.x16_c00432{left:348.854619pt;}
.x9f_c00432{left:350.193333pt;}
.x1c_c00432{left:351.706667pt;}
.x41_c00432{left:354.240000pt;}
.x51_c00432{left:355.200000pt;}
.x66_c00432{left:356.978667pt;}
.x7e_c00432{left:358.807624pt;}
.xa9_c00432{left:359.881333pt;}
.x8e_c00432{left:362.220937pt;}
.x46_c00432{left:364.800000pt;}
.xe_c00432{left:365.735291pt;}
.x7_c00432{left:366.984000pt;}
.x60_c00432{left:367.920000pt;}
.x26_c00432{left:369.494080pt;}
.x84_c00432{left:373.027335pt;}
.x4d_c00432{left:374.880000pt;}
.x6a_c00432{left:377.358464pt;}
.x48_c00432{left:379.200000pt;}
.x1d_c00432{left:381.228000pt;}
.x42_c00432{left:385.920000pt;}
.x99_c00432{left:388.560000pt;}
.xa4_c00432{left:390.478667pt;}
.x76_c00432{left:391.502667pt;}
.x55_c00432{left:392.640000pt;}
.x17_c00432{left:394.566389pt;}
.x94_c00432{left:395.526112pt;}
.x4e_c00432{left:399.120000pt;}
.x8_c00432{left:402.057333pt;}
.x34_c00432{left:405.614795pt;}
.xa0_c00432{left:407.530667pt;}
.x3b_c00432{left:408.480000pt;}
.x85_c00432{left:409.503587pt;}
.x5d_c00432{left:411.120000pt;}
.x7f_c00432{left:414.249007pt;}
.x9a_c00432{left:416.640000pt;}
.xaa_c00432{left:417.694667pt;}
.xa1_c00432{left:419.597333pt;}
.x1e_c00432{left:423.242667pt;}
.x52_c00432{left:426.720000pt;}
.x67_c00432{left:428.741333pt;}
.x6b_c00432{left:432.366923pt;}
.x86_c00432{left:437.807783pt;}
.xa5_c00432{left:441.118667pt;}
.x59_c00432{left:443.280000pt;}
.x87_c00432{left:449.583867pt;}
.x8f_c00432{left:450.544220pt;}
.x9b_c00432{left:451.440000pt;}
.xa6_c00432{left:453.358667pt;}
.xab_c00432{left:456.580000pt;}
.x77_c00432{left:457.989333pt;}
.x80_c00432{left:465.370184pt;}
.xa2_c00432{left:468.306667pt;}
.x95_c00432{left:469.207057pt;}
.x9c_c00432{left:473.760000pt;}
.x88_c00432{left:479.090739pt;}
.xa7_c00432{left:481.918667pt;}
.xac_c00432{left:485.412000pt;}
.x90_c00432{left:497.365880pt;}
.x89_c00432{left:499.289545pt;}
.x78_c00432{left:506.469333pt;}
.x91_c00432{left:526.823419pt;}
.x8a_c00432{left:535.473797pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m74_c00433{transform:matrix(0.009135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009135,0.000000,0.000000,0.250000,0,0);}
.m116_c00433{transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015475,0.000000,0.000000,0.250000,0,0);}
.mca_c00433{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);}
.mea_c00433{transform:matrix(0.031271,0.000500,-0.003999,0.249968,0,0);-ms-transform:matrix(0.031271,0.000500,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.031271,0.000500,-0.003999,0.249968,0,0);}
.me1_c00433{transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);}
.me9_c00433{transform:matrix(0.092303,0.001477,-0.003999,0.249968,0,0);-ms-transform:matrix(0.092303,0.001477,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.092303,0.001477,-0.003999,0.249968,0,0);}
.m112_c00433{transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127605,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.131955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131955,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.132995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132995,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{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);}
.m70_c00433{transform:matrix(0.137655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137655,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.mcd_c00433{transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142730,0.000000,0.000000,0.250000,0,0);}
.m72_c00433{transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144155,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{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);}
.m4e_c00433{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);}
.mf4_c00433{transform:matrix(0.145886,0.002334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145886,0.002334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145886,0.002334,-0.003999,0.249968,0,0);}
.m4f_c00433{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{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);}
.me8_c00433{transform:matrix(0.151211,0.002419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151211,0.002419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151211,0.002419,-0.003999,0.249968,0,0);}
.m33_c00433{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);}
.m79_c00433{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);}
.m6e_c00433{transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.153530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153530,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.153585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153585,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{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);}
.me6_c00433{transform:matrix(0.156405,0.002502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156405,0.002502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156405,0.002502,-0.003999,0.249968,0,0);}
.m96_c00433{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);}
.mf9_c00433{transform:matrix(0.157250,0.002516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157250,0.002516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157250,0.002516,-0.003999,0.249968,0,0);}
.mf6_c00433{transform:matrix(0.157595,0.002522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157595,0.002522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157595,0.002522,-0.003999,0.249968,0,0);}
.m57_c00433{transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{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);}
.mf2_c00433{transform:matrix(0.159030,0.002544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159030,0.002544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159030,0.002544,-0.003999,0.249968,0,0);}
.ma8_c00433{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);}
.mb1_c00433{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);}
.mf5_c00433{transform:matrix(0.162489,0.002600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162489,0.002600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162489,0.002600,-0.003999,0.249968,0,0);}
.mec_c00433{transform:matrix(0.162659,0.002603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162659,0.002603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162659,0.002603,-0.003999,0.249968,0,0);}
.m7a_c00433{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);}
.me7_c00433{transform:matrix(0.163199,0.002611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163199,0.002611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163199,0.002611,-0.003999,0.249968,0,0);}
.m4d_c00433{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{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);}
.m51_c00433{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);}
.m34_c00433{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164505,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{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);}
.m6d_c00433{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);}
.m16_c00433{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);}
.m2e_c00433{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);}
.m84_c00433{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);}
.m108_c00433{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);}
.m2f_c00433{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);}
.m3c_c00433{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);}
.m56_c00433{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);}
.m7f_c00433{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);}
.m21_c00433{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);}
.m22_c00433{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);}
.maa_c00433{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{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);}
.m8d_c00433{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);}
.m45_c00433{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);}
.m97_c00433{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);}
.mda_c00433{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);}
.mfe_c00433{transform:matrix(0.171408,0.002743,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171408,0.002743,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171408,0.002743,-0.003999,0.249968,0,0);}
.m9d_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);}
.mf8_c00433{transform:matrix(0.171518,0.002744,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171518,0.002744,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171518,0.002744,-0.003999,0.249968,0,0);}
.ma2_c00433{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);}
.m23_c00433{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);}
.m1c_c00433{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);}
.me5_c00433{transform:matrix(0.173103,0.002770,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173103,0.002770,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173103,0.002770,-0.003999,0.249968,0,0);}
.m73_c00433{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);}
.m3f_c00433{transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);}
.mf7_c00433{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);}
.m7e_c00433{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);}
.me_c00433{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);}
.m4_c00433{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);}
.m1a_c00433{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{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);}
.m2d_c00433{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);}
.m37_c00433{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);}
.mb5_c00433{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);}
.ma1_c00433{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);}
.m80_c00433{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);}
.m9a_c00433{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);}
.m1f_c00433{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m118_c00433{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);}
.m77_c00433{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);}
.m24_c00433{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);}
.m109_c00433{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);}
.m41_c00433{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);}
.m3d_c00433{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);}
.mcc_c00433{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);}
.m47_c00433{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);}
.mb2_c00433{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);}
.me3_c00433{transform:matrix(0.181717,0.002907,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181717,0.002907,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181717,0.002907,-0.003999,0.249968,0,0);}
.mc9_c00433{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);}
.m90_c00433{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);}
.ma7_c00433{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);}
.m95_c00433{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);}
.m27_c00433{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);}
.m9f_c00433{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);}
.m2a_c00433{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);}
.me4_c00433{transform:matrix(0.182982,0.002928,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182982,0.002928,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182982,0.002928,-0.003999,0.249968,0,0);}
.m93_c00433{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{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);}
.mb8_c00433{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);}
.m7b_c00433{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);}
.m8_c00433{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);}
.m59_c00433{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);}
.m10a_c00433{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);}
.m2c_c00433{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);}
.m105_c00433{transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);}
.m6f_c00433{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);}
.ma5_c00433{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);}
.m62_c00433{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);}
.mfa_c00433{transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);}
.m54_c00433{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);}
.m66_c00433{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);}
.mf_c00433{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);}
.m50_c00433{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);}
.m4a_c00433{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);}
.m17_c00433{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);}
.mbc_c00433{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);}
.m123_c00433{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);}
.m2b_c00433{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);}
.m11a_c00433{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.mdf_c00433{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);}
.m52_c00433{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);}
.m3_c00433{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);}
.m5a_c00433{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);}
.m39_c00433{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);}
.m7_c00433{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);}
.mcb_c00433{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);}
.m31_c00433{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);}
.mef_c00433{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);}
.mdb_c00433{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);}
.m5e_c00433{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);}
.m19_c00433{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);}
.m5d_c00433{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);}
.m28_c00433{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);}
.m10f_c00433{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);}
.m5b_c00433{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);}
.m8e_c00433{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);}
.m71_c00433{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);}
.m6c_c00433{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);}
.mfc_c00433{transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196950,0.003151,-0.003999,0.249968,0,0);}
.m92_c00433{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);}
.mb_c00433{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);}
.mc0_c00433{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);}
.m5c_c00433{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);}
.m87_c00433{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);}
.mc_c00433{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);}
.m1b_c00433{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);}
.mff_c00433{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);}
.mdd_c00433{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);}
.m104_c00433{transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199449,0.003191,-0.003999,0.249968,0,0);}
.m83_c00433{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);}
.m1d_c00433{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);}
.ma4_c00433{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);}
.m9e_c00433{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);}
.m88_c00433{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);}
.m43_c00433{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);}
.md7_c00433{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);}
.mfd_c00433{transform:matrix(0.201529,0.003224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201529,0.003224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201529,0.003224,-0.003999,0.249968,0,0);}
.m42_c00433{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);}
.mce_c00433{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);}
.m78_c00433{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);}
.m46_c00433{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);}
.m119_c00433{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);}
.m67_c00433{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);}
.ma9_c00433{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);}
.m9_c00433{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);}
.m76_c00433{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);}
.m103_c00433{transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203674,0.003259,-0.003999,0.249968,0,0);}
.mbe_c00433{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);}
.m53_c00433{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);}
.m10b_c00433{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);}
.mad_c00433{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);}
.m102_c00433{transform:matrix(0.205464,0.003287,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205464,0.003287,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205464,0.003287,-0.003999,0.249968,0,0);}
.m11f_c00433{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);}
.m35_c00433{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);}
.ma_c00433{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);}
.m106_c00433{transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);}
.ma6_c00433{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);}
.m85_c00433{transform:matrix(0.206410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206410,0.000000,0.000000,0.250000,0,0);}
.m107_c00433{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);}
.m101_c00433{transform:matrix(0.207048,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207048,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207048,0.003313,-0.003999,0.249968,0,0);}
.m8f_c00433{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);}
.md_c00433{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);}
.md8_c00433{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);}
.ma0_c00433{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);}
.m61_c00433{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);}
.m8c_c00433{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);}
.m7d_c00433{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);}
.m99_c00433{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);}
.m98_c00433{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);}
.m100_c00433{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);}
.m126_c00433{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);}
.m125_c00433{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);}
.m113_c00433{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);}
.m3a_c00433{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);}
.m6a_c00433{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);}
.m4b_c00433{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);}
.m11b_c00433{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);}
.me2_c00433{transform:matrix(0.214003,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214003,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214003,0.003424,-0.003999,0.249968,0,0);}
.m29_c00433{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_c00433{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);}
.m117_c00433{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);}
.m111_c00433{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);}
.mba_c00433{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);}
.mee_c00433{transform:matrix(0.216742,0.003468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216742,0.003468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216742,0.003468,-0.003999,0.249968,0,0);}
.m1e_c00433{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);}
.m64_c00433{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);}
.m5f_c00433{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);}
.mf1_c00433{transform:matrix(0.218532,0.003497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218532,0.003497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218532,0.003497,-0.003999,0.249968,0,0);}
.mf0_c00433{transform:matrix(0.218577,0.003497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218577,0.003497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218577,0.003497,-0.003999,0.249968,0,0);}
.m63_c00433{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);}
.m122_c00433{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);}
.m18_c00433{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);}
.m81_c00433{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);}
.mf3_c00433{transform:matrix(0.221337,0.003541,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221337,0.003541,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221337,0.003541,-0.003999,0.249968,0,0);}
.mfb_c00433{transform:matrix(0.221652,0.003546,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221652,0.003546,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221652,0.003546,-0.003999,0.249968,0,0);}
.mbd_c00433{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);}
.m121_c00433{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);}
.m48_c00433{transform:matrix(0.223940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223940,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{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);}
.m120_c00433{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);}
.m8a_c00433{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);}
.m10c_c00433{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);}
.m40_c00433{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);}
.m6b_c00433{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.md4_c00433{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);}
.m114_c00433{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);}
.m8b_c00433{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);}
.mb3_c00433{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);}
.m11c_c00433{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);}
.m9b_c00433{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);}
.mb9_c00433{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);}
.m7c_c00433{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);}
.m68_c00433{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m115_c00433{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);}
.m65_c00433{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);}
.m60_c00433{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00433{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);}
.mc1_c00433{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);}
.mac_c00433{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);}
.m9c_c00433{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);}
.mde_c00433{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);}
.md5_c00433{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);}
.m55_c00433{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m124_c00433{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);}
.mab_c00433{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);}
.md0_c00433{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{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);}
.md1_c00433{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m11d_c00433{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);}
.m110_c00433{transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);}
.mdc_c00433{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);}
.maf_c00433{transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);}
.md6_c00433{transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{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);}
.m10d_c00433{transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);}
.mbb_c00433{transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272770,0.000000,0.000000,0.250000,0,0);}
.meb_c00433{transform:matrix(0.277614,0.004442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277614,0.004442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277614,0.004442,-0.003999,0.249968,0,0);}
.m5_c00433{transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);}
.mc3_c00433{transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286460,0.000000,0.000000,0.250000,0,0);}
.m11e_c00433{transform:matrix(0.288345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288345,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{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);}
.m25_c00433{transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);}
.me0_c00433{transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307130,0.000000,0.000000,0.250000,0,0);}
.m10e_c00433{transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329450,0.000000,0.000000,0.250000,0,0);}
.med_c00433{transform:matrix(0.332417,0.005319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.332417,0.005319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.332417,0.005319,-0.003999,0.249968,0,0);}
.mb4_c00433{transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.357555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357555,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.365155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365155,0.000000,0.000000,0.250000,0,0);}
.mbf_c00433{transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365925,0.000000,0.000000,0.250000,0,0);}
.md3_c00433{transform:matrix(0.373155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373155,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.389045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389045,0.000000,0.000000,0.250000,0,0);}
.mc8_c00433{transform:matrix(0.404195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404195,0.000000,0.000000,0.250000,0,0);}
.mcf_c00433{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.426875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426875,0.000000,0.000000,0.250000,0,0);}
.mc4_c00433{transform:matrix(0.496775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496775,0.000000,0.000000,0.250000,0,0);}
.mc6_c00433{transform:matrix(0.528300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528300,0.000000,0.000000,0.250000,0,0);}
.md2_c00433{transform:matrix(0.547110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547110,0.000000,0.000000,0.250000,0,0);}
.mc5_c00433{transform:matrix(0.571310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571310,0.000000,0.000000,0.250000,0,0);}
.mc7_c00433{transform:matrix(0.634805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634805,0.000000,0.000000,0.250000,0,0);}
.mc2_c00433{transform:matrix(0.676835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00433{transform:matrix(0.774475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774475,0.000000,0.000000,0.250000,0,0);}
.md9_c00433{transform:matrix(0.863825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.863825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.863825,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;}
.fs0_c00433{font-size:18.900000px;}
.fs13_c00433{font-size:45.150000px;}
.fs1c_c00433{font-size:47.250000px;}
.fs11_c00433{font-size:48.300000px;}
.fs1a_c00433{font-size:49.350000px;}
.fs1b_c00433{font-size:50.400000px;}
.fs10_c00433{font-size:51.450000px;}
.fs19_c00433{font-size:52.506720px;}
.fs1d_c00433{font-size:53.550000px;}
.fs18_c00433{font-size:53.556854px;}
.fs16_c00433{font-size:54.606988px;}
.fs14_c00433{font-size:55.650000px;}
.fs12_c00433{font-size:57.750000px;}
.fs17_c00433{font-size:57.757392px;}
.fs2_c00433{font-size:63.000000px;}
.fs4_c00433{font-size:66.150000px;}
.fsf_c00433{font-size:67.200000px;}
.fsa_c00433{font-size:68.250000px;}
.fs6_c00433{font-size:70.350000px;}
.fsd_c00433{font-size:71.400000px;}
.fs7_c00433{font-size:72.450000px;}
.fs8_c00433{font-size:73.500000px;}
.fs9_c00433{font-size:74.550000px;}
.fs5_c00433{font-size:75.600000px;}
.fse_c00433{font-size:77.700000px;}
.fs15_c00433{font-size:78.760079px;}
.fsb_c00433{font-size:79.800000px;}
.fs3_c00433{font-size:80.850000px;}
.fsc_c00433{font-size:93.450000px;}
.fs1_c00433{font-size:126.000000px;}
.y0_c00433{bottom:0.000000px;}
.y84_c00433{bottom:171.463500px;}
.y76_c00433{bottom:176.944164px;}
.y78_c00433{bottom:176.944224px;}
.y79_c00433{bottom:176.944680px;}
.y77_c00433{bottom:176.944836px;}
.y75_c00433{bottom:176.944884px;}
.y73_c00433{bottom:176.944944px;}
.y74_c00433{bottom:176.945112px;}
.y83_c00433{bottom:187.483500px;}
.y82_c00433{bottom:187.834500px;}
.y81_c00433{bottom:188.463000px;}
.y80_c00433{bottom:188.884500px;}
.y7f_c00433{bottom:189.411000px;}
.y7e_c00433{bottom:189.724500px;}
.y7d_c00433{bottom:190.351500px;}
.y72_c00433{bottom:193.711188px;}
.y71_c00433{bottom:194.006088px;}
.y70_c00433{bottom:194.982960px;}
.y6f_c00433{bottom:195.266064px;}
.y6e_c00433{bottom:196.281384px;}
.y7c_c00433{bottom:206.632500px;}
.y6d_c00433{bottom:212.857584px;}
.y6c_c00433{bottom:212.857836px;}
.y6b_c00433{bottom:212.858508px;}
.y6a_c00433{bottom:212.858928px;}
.y69_c00433{bottom:212.859156px;}
.y68_c00433{bottom:212.859384px;}
.y67_c00433{bottom:212.859636px;}
.y7b_c00433{bottom:224.500500px;}
.y66_c00433{bottom:230.958588px;}
.y65_c00433{bottom:230.958876px;}
.y60_c00433{bottom:230.958972px;}
.y62_c00433{bottom:230.959068px;}
.y5f_c00433{bottom:230.959284px;}
.y61_c00433{bottom:230.959404px;}
.y64_c00433{bottom:230.959608px;}
.y63_c00433{bottom:230.959620px;}
.y5e_c00433{bottom:230.959920px;}
.y7a_c00433{bottom:241.785000px;}
.y5d_c00433{bottom:242.692056px;}
.y5c_c00433{bottom:243.841296px;}
.y5b_c00433{bottom:244.194936px;}
.y5a_c00433{bottom:244.738968px;}
.y59_c00433{bottom:245.028240px;}
.y58_c00433{bottom:245.966400px;}
.y57_c00433{bottom:246.268128px;}
.y56_c00433{bottom:246.519000px;}
.y55_c00433{bottom:253.713000px;}
.y54_c00433{bottom:258.540000px;}
.y53_c00433{bottom:258.913500px;}
.y52_c00433{bottom:259.507500px;}
.y51_c00433{bottom:259.693500px;}
.y50_c00433{bottom:260.010000px;}
.y4f_c00433{bottom:260.218500px;}
.y4e_c00433{bottom:261.088500px;}
.y4d_c00433{bottom:272.548500px;}
.y4c_c00433{bottom:274.522500px;}
.y4b_c00433{bottom:274.759500px;}
.y4a_c00433{bottom:275.557500px;}
.y49_c00433{bottom:276.567000px;}
.y48_c00433{bottom:277.348500px;}
.y47_c00433{bottom:277.714500px;}
.y46_c00433{bottom:278.284500px;}
.y45_c00433{bottom:278.697000px;}
.y44_c00433{bottom:279.445500px;}
.y43_c00433{bottom:287.235000px;}
.y42_c00433{bottom:287.511000px;}
.y41_c00433{bottom:287.650500px;}
.y40_c00433{bottom:288.007500px;}
.y3f_c00433{bottom:288.582000px;}
.y3e_c00433{bottom:288.751500px;}
.y3d_c00433{bottom:289.096500px;}
.y3c_c00433{bottom:289.210500px;}
.y3b_c00433{bottom:289.581000px;}
.y3a_c00433{bottom:289.860000px;}
.y39_c00433{bottom:290.151000px;}
.y38_c00433{bottom:290.244000px;}
.y37_c00433{bottom:307.950000px;}
.y36_c00433{bottom:308.230500px;}
.y35_c00433{bottom:310.632000px;}
.y34_c00433{bottom:311.004000px;}
.y33_c00433{bottom:311.170500px;}
.y32_c00433{bottom:311.680500px;}
.y31_c00433{bottom:312.357000px;}
.y30_c00433{bottom:312.669000px;}
.y2f_c00433{bottom:312.865500px;}
.y2e_c00433{bottom:313.210500px;}
.y2d_c00433{bottom:313.737000px;}
.y2c_c00433{bottom:328.950000px;}
.y2b_c00433{bottom:329.097000px;}
.y2a_c00433{bottom:329.290500px;}
.y29_c00433{bottom:329.403000px;}
.y28_c00433{bottom:329.491500px;}
.y27_c00433{bottom:329.748000px;}
.y26_c00433{bottom:329.871000px;}
.y25_c00433{bottom:330.135000px;}
.y24_c00433{bottom:330.273000px;}
.y23_c00433{bottom:330.412500px;}
.y22_c00433{bottom:330.549000px;}
.y21_c00433{bottom:330.862500px;}
.y20_c00433{bottom:331.135500px;}
.y1f_c00433{bottom:331.515000px;}
.y1e_c00433{bottom:331.648500px;}
.y1d_c00433{bottom:331.804500px;}
.y1c_c00433{bottom:331.917000px;}
.y1b_c00433{bottom:332.100000px;}
.y1a_c00433{bottom:393.475500px;}
.y19_c00433{bottom:416.070000px;}
.y18_c00433{bottom:439.120500px;}
.y17_c00433{bottom:461.778000px;}
.y16_c00433{bottom:483.898500px;}
.y15_c00433{bottom:506.358000px;}
.y14_c00433{bottom:529.218000px;}
.y13_c00433{bottom:552.507000px;}
.y12_c00433{bottom:575.284500px;}
.y11_c00433{bottom:598.357500px;}
.y10_c00433{bottom:620.392500px;}
.yf_c00433{bottom:643.210500px;}
.ye_c00433{bottom:665.557500px;}
.yd_c00433{bottom:688.273500px;}
.yc_c00433{bottom:711.472500px;}
.yb_c00433{bottom:733.860000px;}
.ya_c00433{bottom:756.697500px;}
.y9_c00433{bottom:779.244000px;}
.y8_c00433{bottom:802.581000px;}
.y7_c00433{bottom:825.207000px;}
.y2_c00433{bottom:858.385500px;}
.y3_c00433{bottom:859.938000px;}
.y4_c00433{bottom:865.690500px;}
.y5_c00433{bottom:868.174500px;}
.y6_c00433{bottom:869.542500px;}
.y1_c00433{bottom:891.676500px;}
.h2_c00433{height:18.900000px;}
.h15_c00433{height:45.150000px;}
.h1e_c00433{height:47.250000px;}
.h13_c00433{height:48.300000px;}
.h1c_c00433{height:49.350000px;}
.h1d_c00433{height:50.400000px;}
.h12_c00433{height:51.450000px;}
.h1b_c00433{height:52.506720px;}
.h1f_c00433{height:53.550000px;}
.h1a_c00433{height:53.556854px;}
.h18_c00433{height:54.606988px;}
.h16_c00433{height:55.650000px;}
.h14_c00433{height:57.750000px;}
.h19_c00433{height:57.757392px;}
.h4_c00433{height:63.000000px;}
.h6_c00433{height:66.150000px;}
.h11_c00433{height:67.200000px;}
.hc_c00433{height:68.250000px;}
.h8_c00433{height:70.350000px;}
.hf_c00433{height:71.400000px;}
.h9_c00433{height:72.450000px;}
.ha_c00433{height:73.500000px;}
.hb_c00433{height:74.550000px;}
.h7_c00433{height:75.600000px;}
.h10_c00433{height:77.700000px;}
.h17_c00433{height:78.760079px;}
.hd_c00433{height:79.800000px;}
.h5_c00433{height:80.850000px;}
.he_c00433{height:93.450000px;}
.h3_c00433{height:126.000000px;}
.h0_c00433{height:1008.450000px;}
.h1_c00433{height:1008.750000px;}
.w1_c00433{width:689.250000px;}
.w0_c00433{width:689.550000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:91.396500px;}
.x1_c00433{left:92.880000px;}
.xa3_c00433{left:125.280000px;}
.x7e_c00433{left:130.852500px;}
.x7a_c00433{left:132.193500px;}
.x3_c00433{left:133.369500px;}
.x84_c00433{left:139.237500px;}
.x7f_c00433{left:146.263500px;}
.xa0_c00433{left:161.190000px;}
.x6c_c00433{left:163.317000px;}
.x3b_c00433{left:165.780000px;}
.x68_c00433{left:168.750000px;}
.x52_c00433{left:169.830000px;}
.x7_c00433{left:171.180000px;}
.x43_c00433{left:172.260000px;}
.xa4_c00433{left:175.104000px;}
.x7b_c00433{left:179.998500px;}
.x6d_c00433{left:181.948500px;}
.x1d_c00433{left:192.510000px;}
.x80_c00433{left:194.853000px;}
.x4c_c00433{left:196.020000px;}
.x5d_c00433{left:197.100000px;}
.x35_c00433{left:198.180000px;}
.x2c_c00433{left:200.880000px;}
.xa2_c00433{left:203.850000px;}
.xe_c00433{left:208.710000px;}
.x7c_c00433{left:211.309500px;}
.x65_c00433{left:212.760000px;}
.x24_c00433{left:213.840000px;}
.x8_c00433{left:215.460000px;}
.x85_c00433{left:222.138000px;}
.xa1_c00433{left:224.370000px;}
.xa9_c00433{left:226.530000px;}
.x2d_c00433{left:228.150000px;}
.x6e_c00433{left:229.989000px;}
.x53_c00433{left:232.740000px;}
.xa5_c00433{left:235.086000px;}
.x4d_c00433{left:239.220000px;}
.x25_c00433{left:242.190000px;}
.x66_c00433{left:243.270000px;}
.x36_c00433{left:244.350000px;}
.x1e_c00433{left:245.700000px;}
.x9_c00433{left:246.780000px;}
.x17_c00433{left:251.370000px;}
.xf_c00433{left:255.420000px;}
.x5e_c00433{left:256.500000px;}
.x62_c00433{left:260.010000px;}
.x54_c00433{left:262.710000px;}
.x2e_c00433{left:263.790000px;}
.xa6_c00433{left:265.206000px;}
.x69_c00433{left:267.840000px;}
.x1f_c00433{left:272.430000px;}
.x37_c00433{left:274.860000px;}
.x48_c00433{left:277.290000px;}
.x2f_c00433{left:279.990000px;}
.x87_c00433{left:286.107000px;}
.x4_c00433{left:288.846000px;}
.x18_c00433{left:291.330000px;}
.x4e_c00433{left:293.490000px;}
.x44_c00433{left:294.570000px;}
.x26_c00433{left:296.190000px;}
.x59_c00433{left:298.350000px;}
.xa_c00433{left:301.050000px;}
.x20_c00433{left:304.020000px;}
.x30_c00433{left:306.450000px;}
.x10_c00433{left:308.880000px;}
.xa7_c00433{left:310.104000px;}
.x88_c00433{left:312.801000px;}
.x3f_c00433{left:315.630000px;}
.x49_c00433{left:318.870000px;}
.x3c_c00433{left:321.840000px;}
.x27_c00433{left:323.460000px;}
.x11_c00433{left:327.240000px;}
.x67_c00433{left:329.940000px;}
.x19_c00433{left:332.100000px;}
.xa8_c00433{left:335.209500px;}
.x38_c00433{left:337.500000px;}
.x6f_c00433{left:338.548500px;}
.x40_c00433{left:339.930000px;}
.xb_c00433{left:342.900000px;}
.x31_c00433{left:345.600000px;}
.x3d_c00433{left:351.000000px;}
.x5_c00433{left:355.974000px;}
.x28_c00433{left:362.340000px;}
.x63_c00433{left:363.420000px;}
.x32_c00433{left:366.120000px;}
.x6a_c00433{left:367.200000px;}
.x4f_c00433{left:368.280000px;}
.x21_c00433{left:370.170000px;}
.x8e_c00433{left:373.407972px;}
.x1a_c00433{left:374.490000px;}
.x89_c00433{left:375.894000px;}
.x41_c00433{left:377.460000px;}
.x5f_c00433{left:378.540000px;}
.x81_c00433{left:379.576500px;}
.x7d_c00433{left:380.586000px;}
.x39_c00433{left:382.320000px;}
.x4a_c00433{left:387.720000px;}
.x3e_c00433{left:389.880000px;}
.x70_c00433{left:390.906000px;}
.x6_c00433{left:392.953500px;}
.x12_c00433{left:395.550000px;}
.x22_c00433{left:397.980000px;}
.x64_c00433{left:400.680000px;}
.x9b_c00433{left:402.030792px;}
.x92_c00433{left:403.651188px;}
.x55_c00433{left:406.350000px;}
.x50_c00433{left:407.970000px;}
.x1b_c00433{left:411.210000px;}
.x71_c00433{left:413.590500px;}
.x29_c00433{left:417.690000px;}
.x42_c00433{left:419.580000px;}
.x23_c00433{left:423.900000px;}
.x58_c00433{left:426.870000px;}
.x13_c00433{left:429.030000px;}
.x33_c00433{left:431.730000px;}
.x9c_c00433{left:433.084236px;}
.x93_c00433{left:434.704632px;}
.x72_c00433{left:436.783500px;}
.xc_c00433{left:439.290000px;}
.x8f_c00433{left:440.376108px;}
.x2a_c00433{left:442.530000px;}
.x45_c00433{left:446.850000px;}
.x1c_c00433{left:449.010000px;}
.x60_c00433{left:453.060000px;}
.x98_c00433{left:455.403012px;}
.x14_c00433{left:456.570000px;}
.x34_c00433{left:460.620000px;}
.x56_c00433{left:461.700000px;}
.x94_c00433{left:465.758076px;}
.x3a_c00433{left:468.720000px;}
.x90_c00433{left:470.349288px;}
.x6b_c00433{left:473.040000px;}
.x5a_c00433{left:474.120000px;}
.x51_c00433{left:477.900000px;}
.xd_c00433{left:478.980000px;}
.x2b_c00433{left:483.300000px;}
.x8a_c00433{left:487.146000px;}
.x57_c00433{left:489.780000px;}
.x86_c00433{left:491.025000px;}
.x4b_c00433{left:494.100000px;}
.x15_c00433{left:496.260000px;}
.x61_c00433{left:499.230000px;}
.x46_c00433{left:500.310000px;}
.x73_c00433{left:503.784000px;}
.x5b_c00433{left:514.080000px;}
.x8b_c00433{left:521.148000px;}
.x9d_c00433{left:522.735180px;}
.x74_c00433{left:524.286000px;}
.x95_c00433{left:525.705912px;}
.x47_c00433{left:527.310000px;}
.x16_c00433{left:531.900000px;}
.x8c_c00433{left:543.250500px;}
.x96_c00433{left:544.877808px;}
.x9e_c00433{left:546.498252px;}
.x99_c00433{left:552.343668px;}
.x91_c00433{left:554.060196px;}
.x5c_c00433{left:557.280000px;}
.x82_c00433{left:563.179500px;}
.x75_c00433{left:566.931000px;}
.x97_c00433{left:569.181024px;}
.x9a_c00433{left:574.994748px;}
.x76_c00433{left:581.793000px;}
.x83_c00433{left:586.378500px;}
.x9f_c00433{left:587.542764px;}
.x77_c00433{left:600.444000px;}
.x8d_c00433{left:615.078000px;}
.x78_c00433{left:632.763000px;}
.x79_c00433{left:657.139500px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
.fs0_c00433{font-size:16.800000pt;}
.fs13_c00433{font-size:40.133333pt;}
.fs1c_c00433{font-size:42.000000pt;}
.fs11_c00433{font-size:42.933333pt;}
.fs1a_c00433{font-size:43.866667pt;}
.fs1b_c00433{font-size:44.800000pt;}
.fs10_c00433{font-size:45.733333pt;}
.fs19_c00433{font-size:46.672640pt;}
.fs1d_c00433{font-size:47.600000pt;}
.fs18_c00433{font-size:47.606092pt;}
.fs16_c00433{font-size:48.539545pt;}
.fs14_c00433{font-size:49.466667pt;}
.fs12_c00433{font-size:51.333333pt;}
.fs17_c00433{font-size:51.339904pt;}
.fs2_c00433{font-size:56.000000pt;}
.fs4_c00433{font-size:58.800000pt;}
.fsf_c00433{font-size:59.733333pt;}
.fsa_c00433{font-size:60.666667pt;}
.fs6_c00433{font-size:62.533333pt;}
.fsd_c00433{font-size:63.466667pt;}
.fs7_c00433{font-size:64.400000pt;}
.fs8_c00433{font-size:65.333333pt;}
.fs9_c00433{font-size:66.266667pt;}
.fs5_c00433{font-size:67.200000pt;}
.fse_c00433{font-size:69.066667pt;}
.fs15_c00433{font-size:70.008959pt;}
.fsb_c00433{font-size:70.933333pt;}
.fs3_c00433{font-size:71.866667pt;}
.fsc_c00433{font-size:83.066667pt;}
.fs1_c00433{font-size:112.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y84_c00433{bottom:152.412000pt;}
.y76_c00433{bottom:157.283701pt;}
.y78_c00433{bottom:157.283755pt;}
.y79_c00433{bottom:157.284160pt;}
.y77_c00433{bottom:157.284299pt;}
.y75_c00433{bottom:157.284341pt;}
.y73_c00433{bottom:157.284395pt;}
.y74_c00433{bottom:157.284544pt;}
.y83_c00433{bottom:166.652000pt;}
.y82_c00433{bottom:166.964000pt;}
.y81_c00433{bottom:167.522667pt;}
.y80_c00433{bottom:167.897333pt;}
.y7f_c00433{bottom:168.365333pt;}
.y7e_c00433{bottom:168.644000pt;}
.y7d_c00433{bottom:169.201333pt;}
.y72_c00433{bottom:172.187723pt;}
.y71_c00433{bottom:172.449856pt;}
.y70_c00433{bottom:173.318187pt;}
.y6f_c00433{bottom:173.569835pt;}
.y6e_c00433{bottom:174.472341pt;}
.y7c_c00433{bottom:183.673333pt;}
.y6d_c00433{bottom:189.206741pt;}
.y6c_c00433{bottom:189.206965pt;}
.y6b_c00433{bottom:189.207563pt;}
.y6a_c00433{bottom:189.207936pt;}
.y69_c00433{bottom:189.208139pt;}
.y68_c00433{bottom:189.208341pt;}
.y67_c00433{bottom:189.208565pt;}
.y7b_c00433{bottom:199.556000pt;}
.y66_c00433{bottom:205.296523pt;}
.y65_c00433{bottom:205.296779pt;}
.y60_c00433{bottom:205.296864pt;}
.y62_c00433{bottom:205.296949pt;}
.y5f_c00433{bottom:205.297141pt;}
.y61_c00433{bottom:205.297248pt;}
.y64_c00433{bottom:205.297429pt;}
.y63_c00433{bottom:205.297440pt;}
.y5e_c00433{bottom:205.297707pt;}
.y7a_c00433{bottom:214.920000pt;}
.y5d_c00433{bottom:215.726272pt;}
.y5c_c00433{bottom:216.747819pt;}
.y5b_c00433{bottom:217.062165pt;}
.y5a_c00433{bottom:217.545749pt;}
.y59_c00433{bottom:217.802880pt;}
.y58_c00433{bottom:218.636800pt;}
.y57_c00433{bottom:218.905003pt;}
.y56_c00433{bottom:219.128000pt;}
.y55_c00433{bottom:225.522667pt;}
.y54_c00433{bottom:229.813333pt;}
.y53_c00433{bottom:230.145333pt;}
.y52_c00433{bottom:230.673333pt;}
.y51_c00433{bottom:230.838667pt;}
.y50_c00433{bottom:231.120000pt;}
.y4f_c00433{bottom:231.305333pt;}
.y4e_c00433{bottom:232.078667pt;}
.y4d_c00433{bottom:242.265333pt;}
.y4c_c00433{bottom:244.020000pt;}
.y4b_c00433{bottom:244.230667pt;}
.y4a_c00433{bottom:244.940000pt;}
.y49_c00433{bottom:245.837333pt;}
.y48_c00433{bottom:246.532000pt;}
.y47_c00433{bottom:246.857333pt;}
.y46_c00433{bottom:247.364000pt;}
.y45_c00433{bottom:247.730667pt;}
.y44_c00433{bottom:248.396000pt;}
.y43_c00433{bottom:255.320000pt;}
.y42_c00433{bottom:255.565333pt;}
.y41_c00433{bottom:255.689333pt;}
.y40_c00433{bottom:256.006667pt;}
.y3f_c00433{bottom:256.517333pt;}
.y3e_c00433{bottom:256.668000pt;}
.y3d_c00433{bottom:256.974667pt;}
.y3c_c00433{bottom:257.076000pt;}
.y3b_c00433{bottom:257.405333pt;}
.y3a_c00433{bottom:257.653333pt;}
.y39_c00433{bottom:257.912000pt;}
.y38_c00433{bottom:257.994667pt;}
.y37_c00433{bottom:273.733333pt;}
.y36_c00433{bottom:273.982667pt;}
.y35_c00433{bottom:276.117333pt;}
.y34_c00433{bottom:276.448000pt;}
.y33_c00433{bottom:276.596000pt;}
.y32_c00433{bottom:277.049333pt;}
.y31_c00433{bottom:277.650667pt;}
.y30_c00433{bottom:277.928000pt;}
.y2f_c00433{bottom:278.102667pt;}
.y2e_c00433{bottom:278.409333pt;}
.y2d_c00433{bottom:278.877333pt;}
.y2c_c00433{bottom:292.400000pt;}
.y2b_c00433{bottom:292.530667pt;}
.y2a_c00433{bottom:292.702667pt;}
.y29_c00433{bottom:292.802667pt;}
.y28_c00433{bottom:292.881333pt;}
.y27_c00433{bottom:293.109333pt;}
.y26_c00433{bottom:293.218667pt;}
.y25_c00433{bottom:293.453333pt;}
.y24_c00433{bottom:293.576000pt;}
.y23_c00433{bottom:293.700000pt;}
.y22_c00433{bottom:293.821333pt;}
.y21_c00433{bottom:294.100000pt;}
.y20_c00433{bottom:294.342667pt;}
.y1f_c00433{bottom:294.680000pt;}
.y1e_c00433{bottom:294.798667pt;}
.y1d_c00433{bottom:294.937333pt;}
.y1c_c00433{bottom:295.037333pt;}
.y1b_c00433{bottom:295.200000pt;}
.y1a_c00433{bottom:349.756000pt;}
.y19_c00433{bottom:369.840000pt;}
.y18_c00433{bottom:390.329333pt;}
.y17_c00433{bottom:410.469333pt;}
.y16_c00433{bottom:430.132000pt;}
.y15_c00433{bottom:450.096000pt;}
.y14_c00433{bottom:470.416000pt;}
.y13_c00433{bottom:491.117333pt;}
.y12_c00433{bottom:511.364000pt;}
.y11_c00433{bottom:531.873333pt;}
.y10_c00433{bottom:551.460000pt;}
.yf_c00433{bottom:571.742667pt;}
.ye_c00433{bottom:591.606667pt;}
.yd_c00433{bottom:611.798667pt;}
.yc_c00433{bottom:632.420000pt;}
.yb_c00433{bottom:652.320000pt;}
.ya_c00433{bottom:672.620000pt;}
.y9_c00433{bottom:692.661333pt;}
.y8_c00433{bottom:713.405333pt;}
.y7_c00433{bottom:733.517333pt;}
.y2_c00433{bottom:763.009333pt;}
.y3_c00433{bottom:764.389333pt;}
.y4_c00433{bottom:769.502667pt;}
.y5_c00433{bottom:771.710667pt;}
.y6_c00433{bottom:772.926667pt;}
.y1_c00433{bottom:792.601333pt;}
.h2_c00433{height:16.800000pt;}
.h15_c00433{height:40.133333pt;}
.h1e_c00433{height:42.000000pt;}
.h13_c00433{height:42.933333pt;}
.h1c_c00433{height:43.866667pt;}
.h1d_c00433{height:44.800000pt;}
.h12_c00433{height:45.733333pt;}
.h1b_c00433{height:46.672640pt;}
.h1f_c00433{height:47.600000pt;}
.h1a_c00433{height:47.606092pt;}
.h18_c00433{height:48.539545pt;}
.h16_c00433{height:49.466667pt;}
.h14_c00433{height:51.333333pt;}
.h19_c00433{height:51.339904pt;}
.h4_c00433{height:56.000000pt;}
.h6_c00433{height:58.800000pt;}
.h11_c00433{height:59.733333pt;}
.hc_c00433{height:60.666667pt;}
.h8_c00433{height:62.533333pt;}
.hf_c00433{height:63.466667pt;}
.h9_c00433{height:64.400000pt;}
.ha_c00433{height:65.333333pt;}
.hb_c00433{height:66.266667pt;}
.h7_c00433{height:67.200000pt;}
.h10_c00433{height:69.066667pt;}
.h17_c00433{height:70.008959pt;}
.hd_c00433{height:70.933333pt;}
.h5_c00433{height:71.866667pt;}
.he_c00433{height:83.066667pt;}
.h3_c00433{height:112.000000pt;}
.h0_c00433{height:896.400000pt;}
.h1_c00433{height:896.666667pt;}
.w1_c00433{width:612.666667pt;}
.w0_c00433{width:612.933333pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:81.241333pt;}
.x1_c00433{left:82.560000pt;}
.xa3_c00433{left:111.360000pt;}
.x7e_c00433{left:116.313333pt;}
.x7a_c00433{left:117.505333pt;}
.x3_c00433{left:118.550667pt;}
.x84_c00433{left:123.766667pt;}
.x7f_c00433{left:130.012000pt;}
.xa0_c00433{left:143.280000pt;}
.x6c_c00433{left:145.170667pt;}
.x3b_c00433{left:147.360000pt;}
.x68_c00433{left:150.000000pt;}
.x52_c00433{left:150.960000pt;}
.x7_c00433{left:152.160000pt;}
.x43_c00433{left:153.120000pt;}
.xa4_c00433{left:155.648000pt;}
.x7b_c00433{left:159.998667pt;}
.x6d_c00433{left:161.732000pt;}
.x1d_c00433{left:171.120000pt;}
.x80_c00433{left:173.202667pt;}
.x4c_c00433{left:174.240000pt;}
.x5d_c00433{left:175.200000pt;}
.x35_c00433{left:176.160000pt;}
.x2c_c00433{left:178.560000pt;}
.xa2_c00433{left:181.200000pt;}
.xe_c00433{left:185.520000pt;}
.x7c_c00433{left:187.830667pt;}
.x65_c00433{left:189.120000pt;}
.x24_c00433{left:190.080000pt;}
.x8_c00433{left:191.520000pt;}
.x85_c00433{left:197.456000pt;}
.xa1_c00433{left:199.440000pt;}
.xa9_c00433{left:201.360000pt;}
.x2d_c00433{left:202.800000pt;}
.x6e_c00433{left:204.434667pt;}
.x53_c00433{left:206.880000pt;}
.xa5_c00433{left:208.965333pt;}
.x4d_c00433{left:212.640000pt;}
.x25_c00433{left:215.280000pt;}
.x66_c00433{left:216.240000pt;}
.x36_c00433{left:217.200000pt;}
.x1e_c00433{left:218.400000pt;}
.x9_c00433{left:219.360000pt;}
.x17_c00433{left:223.440000pt;}
.xf_c00433{left:227.040000pt;}
.x5e_c00433{left:228.000000pt;}
.x62_c00433{left:231.120000pt;}
.x54_c00433{left:233.520000pt;}
.x2e_c00433{left:234.480000pt;}
.xa6_c00433{left:235.738667pt;}
.x69_c00433{left:238.080000pt;}
.x1f_c00433{left:242.160000pt;}
.x37_c00433{left:244.320000pt;}
.x48_c00433{left:246.480000pt;}
.x2f_c00433{left:248.880000pt;}
.x87_c00433{left:254.317333pt;}
.x4_c00433{left:256.752000pt;}
.x18_c00433{left:258.960000pt;}
.x4e_c00433{left:260.880000pt;}
.x44_c00433{left:261.840000pt;}
.x26_c00433{left:263.280000pt;}
.x59_c00433{left:265.200000pt;}
.xa_c00433{left:267.600000pt;}
.x20_c00433{left:270.240000pt;}
.x30_c00433{left:272.400000pt;}
.x10_c00433{left:274.560000pt;}
.xa7_c00433{left:275.648000pt;}
.x88_c00433{left:278.045333pt;}
.x3f_c00433{left:280.560000pt;}
.x49_c00433{left:283.440000pt;}
.x3c_c00433{left:286.080000pt;}
.x27_c00433{left:287.520000pt;}
.x11_c00433{left:290.880000pt;}
.x67_c00433{left:293.280000pt;}
.x19_c00433{left:295.200000pt;}
.xa8_c00433{left:297.964000pt;}
.x38_c00433{left:300.000000pt;}
.x6f_c00433{left:300.932000pt;}
.x40_c00433{left:302.160000pt;}
.xb_c00433{left:304.800000pt;}
.x31_c00433{left:307.200000pt;}
.x3d_c00433{left:312.000000pt;}
.x5_c00433{left:316.421333pt;}
.x28_c00433{left:322.080000pt;}
.x63_c00433{left:323.040000pt;}
.x32_c00433{left:325.440000pt;}
.x6a_c00433{left:326.400000pt;}
.x4f_c00433{left:327.360000pt;}
.x21_c00433{left:329.040000pt;}
.x8e_c00433{left:331.918197pt;}
.x1a_c00433{left:332.880000pt;}
.x89_c00433{left:334.128000pt;}
.x41_c00433{left:335.520000pt;}
.x5f_c00433{left:336.480000pt;}
.x81_c00433{left:337.401333pt;}
.x7d_c00433{left:338.298667pt;}
.x39_c00433{left:339.840000pt;}
.x4a_c00433{left:344.640000pt;}
.x3e_c00433{left:346.560000pt;}
.x70_c00433{left:347.472000pt;}
.x6_c00433{left:349.292000pt;}
.x12_c00433{left:351.600000pt;}
.x22_c00433{left:353.760000pt;}
.x64_c00433{left:356.160000pt;}
.x9b_c00433{left:357.360704pt;}
.x92_c00433{left:358.801056pt;}
.x55_c00433{left:361.200000pt;}
.x50_c00433{left:362.640000pt;}
.x1b_c00433{left:365.520000pt;}
.x71_c00433{left:367.636000pt;}
.x29_c00433{left:371.280000pt;}
.x42_c00433{left:372.960000pt;}
.x23_c00433{left:376.800000pt;}
.x58_c00433{left:379.440000pt;}
.x13_c00433{left:381.360000pt;}
.x33_c00433{left:383.760000pt;}
.x9c_c00433{left:384.963765pt;}
.x93_c00433{left:386.404117pt;}
.x72_c00433{left:388.252000pt;}
.xc_c00433{left:390.480000pt;}
.x8f_c00433{left:391.445429pt;}
.x2a_c00433{left:393.360000pt;}
.x45_c00433{left:397.200000pt;}
.x1c_c00433{left:399.120000pt;}
.x60_c00433{left:402.720000pt;}
.x98_c00433{left:404.802677pt;}
.x14_c00433{left:405.840000pt;}
.x34_c00433{left:409.440000pt;}
.x56_c00433{left:410.400000pt;}
.x94_c00433{left:414.007179pt;}
.x3a_c00433{left:416.640000pt;}
.x90_c00433{left:418.088256pt;}
.x6b_c00433{left:420.480000pt;}
.x5a_c00433{left:421.440000pt;}
.x51_c00433{left:424.800000pt;}
.xd_c00433{left:425.760000pt;}
.x2b_c00433{left:429.600000pt;}
.x8a_c00433{left:433.018667pt;}
.x57_c00433{left:435.360000pt;}
.x86_c00433{left:436.466667pt;}
.x4b_c00433{left:439.200000pt;}
.x15_c00433{left:441.120000pt;}
.x61_c00433{left:443.760000pt;}
.x46_c00433{left:444.720000pt;}
.x73_c00433{left:447.808000pt;}
.x5b_c00433{left:456.960000pt;}
.x8b_c00433{left:463.242667pt;}
.x9d_c00433{left:464.653493pt;}
.x74_c00433{left:466.032000pt;}
.x95_c00433{left:467.294144pt;}
.x47_c00433{left:468.720000pt;}
.x16_c00433{left:472.800000pt;}
.x8c_c00433{left:482.889333pt;}
.x96_c00433{left:484.335829pt;}
.x9e_c00433{left:485.776224pt;}
.x99_c00433{left:490.972149pt;}
.x91_c00433{left:492.497952pt;}
.x5c_c00433{left:495.360000pt;}
.x82_c00433{left:500.604000pt;}
.x75_c00433{left:503.938667pt;}
.x97_c00433{left:505.938688pt;}
.x9a_c00433{left:511.106443pt;}
.x76_c00433{left:517.149333pt;}
.x83_c00433{left:521.225333pt;}
.x9f_c00433{left:522.260235pt;}
.x77_c00433{left:533.728000pt;}
.x8d_c00433{left:546.736000pt;}
.x78_c00433{left:562.456000pt;}
.x79_c00433{left:584.124000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6c0d3825a5d54c0b922384.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;}
.mb0_c00434{transform:matrix(0.010099,0.000131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010099,0.000131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010099,0.000131,-0.003250,0.249979,0,0);}
.m11e_c00434{transform:matrix(0.011879,0.000381,-0.008004,0.249872,0,0);-ms-transform:matrix(0.011879,0.000381,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.011879,0.000381,-0.008004,0.249872,0,0);}
.mba_c00434{transform:matrix(0.012529,0.000163,-0.003250,0.249979,0,0);-ms-transform:matrix(0.012529,0.000163,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.012529,0.000163,-0.003250,0.249979,0,0);}
.m10f_c00434{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);}
.md8_c00434{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.m11c_c00434{transform:matrix(0.021059,0.000675,-0.008004,0.249872,0,0);-ms-transform:matrix(0.021059,0.000675,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.021059,0.000675,-0.008004,0.249872,0,0);}
.m78_c00434{transform:matrix(0.027128,0.000326,-0.003000,0.249982,0,0);-ms-transform:matrix(0.027128,0.000326,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.027128,0.000326,-0.003000,0.249982,0,0);}
.ma0_c00434{transform:matrix(0.058580,0.000762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.058580,0.000762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.058580,0.000762,-0.003250,0.249979,0,0);}
.m11d_c00434{transform:matrix(0.058585,0.001877,-0.008004,0.249872,0,0);-ms-transform:matrix(0.058585,0.001877,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.058585,0.001877,-0.008004,0.249872,0,0);}
.m41_c00434{transform:matrix(0.075815,0.000834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.075815,0.000834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.075815,0.000834,-0.002750,0.249985,0,0);}
.mc5_c00434{transform:matrix(0.087698,0.001140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.087698,0.001140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.087698,0.001140,-0.003250,0.249979,0,0);}
.m4b_c00434{transform:matrix(0.088516,0.001239,-0.003500,0.249976,0,0);-ms-transform:matrix(0.088516,0.001239,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.088516,0.001239,-0.003500,0.249976,0,0);}
.m6e_c00434{transform:matrix(0.098327,0.001278,-0.003250,0.249979,0,0);-ms-transform:matrix(0.098327,0.001278,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.098327,0.001278,-0.003250,0.249979,0,0);}
.m11f_c00434{transform:matrix(0.116075,0.003718,-0.008004,0.249872,0,0);-ms-transform:matrix(0.116075,0.003718,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.116075,0.003718,-0.008004,0.249872,0,0);}
.m119_c00434{transform:matrix(0.125236,0.004012,-0.008004,0.249872,0,0);-ms-transform:matrix(0.125236,0.004012,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.125236,0.004012,-0.008004,0.249872,0,0);}
.mff_c00434{transform:matrix(0.127420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127420,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.131760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131760,0.000000,0.000000,0.250000,0,0);}
.mdb_c00434{transform:matrix(0.133780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133780,0.000000,0.000000,0.250000,0,0);}
.m92_c00434{transform:matrix(0.135315,0.001624,-0.003000,0.249982,0,0);-ms-transform:matrix(0.135315,0.001624,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.135315,0.001624,-0.003000,0.249982,0,0);}
.mdc_c00434{transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141735,0.000000,0.000000,0.250000,0,0);}
.m106_c00434{transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.142260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142260,0.000000,0.000000,0.250000,0,0);}
.mab_c00434{transform:matrix(0.143625,0.001149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143625,0.001149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143625,0.001149,-0.002000,0.249992,0,0);}
.m10b_c00434{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);}
.mc2_c00434{transform:matrix(0.147328,0.001915,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147328,0.001915,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147328,0.001915,-0.003250,0.249979,0,0);}
.mfd_c00434{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);}
.mdf_c00434{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);}
.m10d_c00434{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);}
.m8b_c00434{transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);}
.mdd_c00434{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);}
.mac_c00434{transform:matrix(0.148865,0.001191,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148865,0.001191,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148865,0.001191,-0.002000,0.249992,0,0);}
.mc1_c00434{transform:matrix(0.149172,0.001939,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149172,0.001939,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149172,0.001939,-0.003250,0.249979,0,0);}
.m65_c00434{transform:matrix(0.149390,0.002091,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149390,0.002091,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149390,0.002091,-0.003500,0.249976,0,0);}
.mde_c00434{transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150920,0.000000,0.000000,0.250000,0,0);}
.m93_c00434{transform:matrix(0.153759,0.001845,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153759,0.001845,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153759,0.001845,-0.003000,0.249982,0,0);}
.mf_c00434{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);}
.m8f_c00434{transform:matrix(0.154586,0.001700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154586,0.001700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154586,0.001700,-0.002750,0.249985,0,0);}
.m4e_c00434{transform:matrix(0.154662,0.002011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154662,0.002011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154662,0.002011,-0.003250,0.249979,0,0);}
.m9d_c00434{transform:matrix(0.155282,0.002019,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155282,0.002019,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155282,0.002019,-0.003250,0.249979,0,0);}
.m63_c00434{transform:matrix(0.155295,0.002174,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155295,0.002174,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155295,0.002174,-0.003500,0.249976,0,0);}
.ma6_c00434{transform:matrix(0.155368,0.002331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155368,0.002331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155368,0.002331,-0.003750,0.249972,0,0);}
.m9c_c00434{transform:matrix(0.155632,0.002023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155632,0.002023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155632,0.002023,-0.003250,0.249979,0,0);}
.m84_c00434{transform:matrix(0.155789,0.001869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155789,0.001869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155789,0.001869,-0.003000,0.249982,0,0);}
.m85_c00434{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);}
.mda_c00434{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);}
.m11_c00434{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157265,0.000000,0.000000,0.250000,0,0);}
.m90_c00434{transform:matrix(0.157350,0.001731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157350,0.001731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157350,0.001731,-0.002750,0.249985,0,0);}
.md7_c00434{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);}
.mfb_c00434{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);}
.m23_c00434{transform:matrix(0.159245,0.001752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159245,0.001752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159245,0.001752,-0.002750,0.249985,0,0);}
.m5c_c00434{transform:matrix(0.159899,0.002239,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159899,0.002239,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159899,0.002239,-0.003500,0.249976,0,0);}
.m12_c00434{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);}
.m83_c00434{transform:matrix(0.160473,0.001926,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160473,0.001926,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160473,0.001926,-0.003000,0.249982,0,0);}
.m37_c00434{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);}
.m101_c00434{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);}
.mfc_c00434{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);}
.m22_c00434{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);}
.ma7_c00434{transform:matrix(0.161577,0.002424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161577,0.002424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161577,0.002424,-0.003750,0.249972,0,0);}
.mcd_c00434{transform:matrix(0.161661,0.002102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161661,0.002102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161661,0.002102,-0.003250,0.249979,0,0);}
.m4a_c00434{transform:matrix(0.162144,0.002270,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162144,0.002270,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162144,0.002270,-0.003500,0.249976,0,0);}
.med_c00434{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);}
.m44_c00434{transform:matrix(0.162584,0.002276,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162584,0.002276,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162584,0.002276,-0.003500,0.249976,0,0);}
.me8_c00434{transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163420,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);}
.mec_c00434{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);}
.m1d_c00434{transform:matrix(0.165115,0.001816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165115,0.001816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165115,0.001816,-0.002750,0.249985,0,0);}
.m3c_c00434{transform:matrix(0.165765,0.001823,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165765,0.001823,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165765,0.001823,-0.002750,0.249985,0,0);}
.mb5_c00434{transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166001,0.002158,-0.003250,0.249979,0,0);}
.m2_c00434{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);}
.m10_c00434{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);}
.mc3_c00434{transform:matrix(0.167041,0.002172,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167041,0.002172,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167041,0.002172,-0.003250,0.249979,0,0);}
.m47_c00434{transform:matrix(0.167584,0.002346,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167584,0.002346,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167584,0.002346,-0.003500,0.249976,0,0);}
.m59_c00434{transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168004,0.002352,-0.003500,0.249976,0,0);}
.m9b_c00434{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);}
.mfa_c00434{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);}
.m9f_c00434{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);}
.m82_c00434{transform:matrix(0.168973,0.002028,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168973,0.002028,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168973,0.002028,-0.003000,0.249982,0,0);}
.mbe_c00434{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);}
.m8c_c00434{transform:matrix(0.169180,0.001861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169180,0.001861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169180,0.001861,-0.002750,0.249985,0,0);}
.mb_c00434{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);}
.m96_c00434{transform:matrix(0.169658,0.002036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169658,0.002036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169658,0.002036,-0.003000,0.249982,0,0);}
.m64_c00434{transform:matrix(0.170663,0.002389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170663,0.002389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170663,0.002389,-0.003500,0.249976,0,0);}
.m36_c00434{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);}
.m21_c00434{transform:matrix(0.170730,0.001878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170730,0.001878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170730,0.001878,-0.002750,0.249985,0,0);}
.mb2_c00434{transform:matrix(0.170836,0.002221,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170836,0.002221,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170836,0.002221,-0.003250,0.249979,0,0);}
.m45_c00434{transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171233,0.002397,-0.003500,0.249976,0,0);}
.m86_c00434{transform:matrix(0.171388,0.002057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171388,0.002057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171388,0.002057,-0.003000,0.249982,0,0);}
.mca_c00434{transform:matrix(0.171431,0.002229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171431,0.002229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171431,0.002229,-0.003250,0.249979,0,0);}
.m103_c00434{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);}
.m2f_c00434{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);}
.mbf_c00434{transform:matrix(0.173320,0.002253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173320,0.002253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173320,0.002253,-0.003250,0.249979,0,0);}
.mbd_c00434{transform:matrix(0.173640,0.002257,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173640,0.002257,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173640,0.002257,-0.003250,0.249979,0,0);}
.m5d_c00434{transform:matrix(0.173793,0.002433,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173793,0.002433,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173793,0.002433,-0.003500,0.249976,0,0);}
.meb_c00434{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);}
.m113_c00434{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);}
.m54_c00434{transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174250,0.002265,-0.003250,0.249979,0,0);}
.m100_c00434{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);}
.m1e_c00434{transform:matrix(0.174619,0.001921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174619,0.001921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174619,0.001921,-0.002750,0.249985,0,0);}
.mc7_c00434{transform:matrix(0.174865,0.002273,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174865,0.002273,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174865,0.002273,-0.003250,0.249979,0,0);}
.m95_c00434{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);}
.m4f_c00434{transform:matrix(0.175475,0.002281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175475,0.002281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175475,0.002281,-0.003250,0.249979,0,0);}
.ma8_c00434{transform:matrix(0.175924,0.001407,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175924,0.001407,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175924,0.001407,-0.002000,0.249992,0,0);}
.m94_c00434{transform:matrix(0.176087,0.002113,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176087,0.002113,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176087,0.002113,-0.003000,0.249982,0,0);}
.m25_c00434{transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176319,0.001940,-0.002750,0.249985,0,0);}
.m127_c00434{transform:matrix(0.176503,0.002471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176503,0.002471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176503,0.002471,-0.003500,0.249976,0,0);}
.ma2_c00434{transform:matrix(0.176825,0.002652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176825,0.002652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176825,0.002652,-0.003750,0.249972,0,0);}
.mf2_c00434{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);}
.ma9_c00434{transform:matrix(0.177364,0.001419,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177364,0.001419,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177364,0.001419,-0.002000,0.249992,0,0);}
.md_c00434{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);}
.m9a_c00434{transform:matrix(0.177810,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177810,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177810,0.002312,-0.003250,0.249979,0,0);}
.mb9_c00434{transform:matrix(0.177820,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177820,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177820,0.002312,-0.003250,0.249979,0,0);}
.m61_c00434{transform:matrix(0.178233,0.002495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178233,0.002495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178233,0.002495,-0.003500,0.249976,0,0);}
.mf0_c00434{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);}
.m77_c00434{transform:matrix(0.178417,0.002141,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178417,0.002141,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178417,0.002141,-0.003000,0.249982,0,0);}
.m17_c00434{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);}
.m88_c00434{transform:matrix(0.178727,0.002145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178727,0.002145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178727,0.002145,-0.003000,0.249982,0,0);}
.m87_c00434{transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);}
.maa_c00434{transform:matrix(0.180744,0.001446,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180744,0.001446,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180744,0.001446,-0.002000,0.249992,0,0);}
.mcf_c00434{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);}
.m9e_c00434{transform:matrix(0.181550,0.002360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181550,0.002360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181550,0.002360,-0.003250,0.249979,0,0);}
.mcb_c00434{transform:matrix(0.181740,0.002363,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181740,0.002363,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181740,0.002363,-0.003250,0.249979,0,0);}
.m125_c00434{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);}
.m8a_c00434{transform:matrix(0.182374,0.002006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182374,0.002006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182374,0.002006,-0.002750,0.249985,0,0);}
.m10c_c00434{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);}
.m52_c00434{transform:matrix(0.183120,0.002381,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183120,0.002381,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183120,0.002381,-0.003250,0.249979,0,0);}
.me9_c00434{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);}
.ma_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);}
.mb3_c00434{transform:matrix(0.184194,0.002395,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184194,0.002395,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184194,0.002395,-0.003250,0.249979,0,0);}
.m10a_c00434{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);}
.m35_c00434{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);}
.m122_c00434{transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);}
.mc9_c00434{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);}
.m121_c00434{transform:matrix(0.186304,0.005968,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186304,0.005968,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186304,0.005968,-0.008004,0.249872,0,0);}
.ma3_c00434{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);}
.m31_c00434{transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186669,0.002053,-0.002750,0.249985,0,0);}
.ma5_c00434{transform:matrix(0.186759,0.002801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186759,0.002801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186759,0.002801,-0.003750,0.249972,0,0);}
.m105_c00434{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);}
.me5_c00434{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);}
.m2a_c00434{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);}
.ma4_c00434{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);}
.m89_c00434{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);}
.m12a_c00434{transform:matrix(0.188277,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188277,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188277,0.002636,-0.003500,0.249976,0,0);}
.m115_c00434{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);}
.m68_c00434{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);}
.m7e_c00434{transform:matrix(0.188506,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188506,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188506,0.002262,-0.003000,0.249982,0,0);}
.m12b_c00434{transform:matrix(0.188762,0.002643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188762,0.002643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188762,0.002643,-0.003500,0.249976,0,0);}
.m20_c00434{transform:matrix(0.189984,0.002090,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189984,0.002090,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189984,0.002090,-0.002750,0.249985,0,0);}
.me4_c00434{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);}
.mae_c00434{transform:matrix(0.190404,0.001523,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190404,0.001523,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190404,0.001523,-0.002000,0.249992,0,0);}
.m72_c00434{transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190416,0.002285,-0.003000,0.249982,0,0);}
.mf6_c00434{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);}
.m104_c00434{transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190710,0.000000,0.000000,0.250000,0,0);}
.mea_c00434{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);}
.m2b_c00434{transform:matrix(0.191113,0.002102,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191113,0.002102,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191113,0.002102,-0.002750,0.249985,0,0);}
.m5_c00434{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);}
.m8d_c00434{transform:matrix(0.191333,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191333,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191333,0.002105,-0.002750,0.249985,0,0);}
.mad_c00434{transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192064,0.001537,-0.002000,0.249992,0,0);}
.m34_c00434{transform:matrix(0.192293,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192293,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192293,0.002115,-0.002750,0.249985,0,0);}
.m111_c00434{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);}
.m0_c00434{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);}
.ma1_c00434{transform:matrix(0.193293,0.002899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193293,0.002899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193293,0.002899,-0.003750,0.249972,0,0);}
.m27_c00434{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);}
.m28_c00434{transform:matrix(0.193563,0.002129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193563,0.002129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193563,0.002129,-0.002750,0.249985,0,0);}
.m8_c00434{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);}
.mbc_c00434{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);}
.m114_c00434{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);}
.m6f_c00434{transform:matrix(0.194381,0.002333,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194381,0.002333,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194381,0.002333,-0.003000,0.249982,0,0);}
.m128_c00434{transform:matrix(0.194476,0.002723,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194476,0.002723,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194476,0.002723,-0.003500,0.249976,0,0);}
.mfe_c00434{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);}
.m48_c00434{transform:matrix(0.195666,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195666,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195666,0.002739,-0.003500,0.249976,0,0);}
.m7d_c00434{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);}
.m73_c00434{transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);}
.m2c_c00434{transform:matrix(0.196573,0.002162,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196573,0.002162,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196573,0.002162,-0.002750,0.249985,0,0);}
.m42_c00434{transform:matrix(0.196916,0.002757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196916,0.002757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196916,0.002757,-0.003500,0.249976,0,0);}
.mcc_c00434{transform:matrix(0.197123,0.002563,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197123,0.002563,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197123,0.002563,-0.003250,0.249979,0,0);}
.m1c_c00434{transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197268,0.002170,-0.002750,0.249985,0,0);}
.mb4_c00434{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);}
.m1f_c00434{transform:matrix(0.197838,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197838,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197838,0.002176,-0.002750,0.249985,0,0);}
.me6_c00434{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);}
.mc6_c00434{transform:matrix(0.199468,0.002593,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199468,0.002593,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199468,0.002593,-0.003250,0.249979,0,0);}
.m29_c00434{transform:matrix(0.199688,0.002197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199688,0.002197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199688,0.002197,-0.002750,0.249985,0,0);}
.m102_c00434{transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{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);}
.m19_c00434{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);}
.mf5_c00434{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);}
.m30_c00434{transform:matrix(0.200538,0.002206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200538,0.002206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200538,0.002206,-0.002750,0.249985,0,0);}
.m32_c00434{transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);}
.m80_c00434{transform:matrix(0.200981,0.002412,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200981,0.002412,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200981,0.002412,-0.003000,0.249982,0,0);}
.m98_c00434{transform:matrix(0.201048,0.002614,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201048,0.002614,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201048,0.002614,-0.003250,0.249979,0,0);}
.m46_c00434{transform:matrix(0.201390,0.002819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201390,0.002819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201390,0.002819,-0.003500,0.249976,0,0);}
.md4_c00434{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);}
.m7b_c00434{transform:matrix(0.201470,0.002418,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201470,0.002418,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201470,0.002418,-0.003000,0.249982,0,0);}
.m6c_c00434{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);}
.m26_c00434{transform:matrix(0.201653,0.002218,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201653,0.002218,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201653,0.002218,-0.002750,0.249985,0,0);}
.m2e_c00434{transform:matrix(0.202018,0.002222,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202018,0.002222,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202018,0.002222,-0.002750,0.249985,0,0);}
.m7a_c00434{transform:matrix(0.202680,0.002432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202680,0.002432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202680,0.002432,-0.003000,0.249982,0,0);}
.m4c_c00434{transform:matrix(0.203213,0.002642,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203213,0.002642,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203213,0.002642,-0.003250,0.249979,0,0);}
.maf_c00434{transform:matrix(0.203333,0.001627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203333,0.001627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203333,0.001627,-0.002000,0.249992,0,0);}
.m1a_c00434{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);}
.m1_c00434{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);}
.m71_c00434{transform:matrix(0.204255,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204255,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204255,0.002451,-0.003000,0.249982,0,0);}
.mf7_c00434{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);}
.m4d_c00434{transform:matrix(0.204638,0.002660,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204638,0.002660,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204638,0.002660,-0.003250,0.249979,0,0);}
.m49_c00434{transform:matrix(0.204665,0.002865,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204665,0.002865,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204665,0.002865,-0.003500,0.249976,0,0);}
.m5b_c00434{transform:matrix(0.204900,0.002869,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204900,0.002869,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204900,0.002869,-0.003500,0.249976,0,0);}
.m6d_c00434{transform:matrix(0.206153,0.002680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206153,0.002680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206153,0.002680,-0.003250,0.249979,0,0);}
.m1b_c00434{transform:matrix(0.206642,0.002273,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206642,0.002273,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206642,0.002273,-0.002750,0.249985,0,0);}
.mef_c00434{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);}
.mc0_c00434{transform:matrix(0.207537,0.002698,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207537,0.002698,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207537,0.002698,-0.003250,0.249979,0,0);}
.m69_c00434{transform:matrix(0.207692,0.002700,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207692,0.002700,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207692,0.002700,-0.003250,0.249979,0,0);}
.m50_c00434{transform:matrix(0.207772,0.002701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207772,0.002701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207772,0.002701,-0.003250,0.249979,0,0);}
.m13_c00434{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);}
.m58_c00434{transform:matrix(0.208665,0.002921,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208665,0.002921,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208665,0.002921,-0.003500,0.249976,0,0);}
.m6_c00434{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);}
.m66_c00434{transform:matrix(0.209122,0.002719,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209122,0.002719,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209122,0.002719,-0.003250,0.249979,0,0);}
.m43_c00434{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);}
.m117_c00434{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);}
.m81_c00434{transform:matrix(0.209635,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209635,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209635,0.002516,-0.003000,0.249982,0,0);}
.m126_c00434{transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209894,0.002939,-0.003500,0.249976,0,0);}
.m2d_c00434{transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209952,0.002309,-0.002750,0.249985,0,0);}
.m7_c00434{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);}
.m5f_c00434{transform:matrix(0.211614,0.002963,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211614,0.002963,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211614,0.002963,-0.003500,0.249976,0,0);}
.m5e_c00434{transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211739,0.002964,-0.003500,0.249976,0,0);}
.md6_c00434{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{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);}
.m6b_c00434{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);}
.m70_c00434{transform:matrix(0.212645,0.002552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212645,0.002552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212645,0.002552,-0.003000,0.249982,0,0);}
.mee_c00434{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);}
.m40_c00434{transform:matrix(0.212872,0.002342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212872,0.002342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212872,0.002342,-0.002750,0.249985,0,0);}
.mc4_c00434{transform:matrix(0.212972,0.002769,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212972,0.002769,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212972,0.002769,-0.003250,0.249979,0,0);}
.m97_c00434{transform:matrix(0.213005,0.002556,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213005,0.002556,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213005,0.002556,-0.003000,0.249982,0,0);}
.mf1_c00434{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);}
.m62_c00434{transform:matrix(0.213869,0.002994,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213869,0.002994,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213869,0.002994,-0.003500,0.249976,0,0);}
.m112_c00434{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);}
.mce_c00434{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);}
.m60_c00434{transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215599,0.003018,-0.003500,0.249976,0,0);}
.m57_c00434{transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);}
.me0_c00434{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);}
.me_c00434{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);}
.m24_c00434{transform:matrix(0.217487,0.002392,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217487,0.002392,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217487,0.002392,-0.002750,0.249985,0,0);}
.m7f_c00434{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);}
.me2_c00434{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);}
.m75_c00434{transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);}
.mc8_c00434{transform:matrix(0.218572,0.002841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218572,0.002841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218572,0.002841,-0.003250,0.249979,0,0);}
.m11a_c00434{transform:matrix(0.218893,0.007012,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218893,0.007012,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218893,0.007012,-0.008004,0.249872,0,0);}
.m9_c00434{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);}
.m99_c00434{transform:matrix(0.219316,0.002851,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219316,0.002851,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219316,0.002851,-0.003250,0.249979,0,0);}
.mbb_c00434{transform:matrix(0.219511,0.002854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219511,0.002854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219511,0.002854,-0.003250,0.249979,0,0);}
.m3b_c00434{transform:matrix(0.220052,0.002421,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220052,0.002421,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220052,0.002421,-0.002750,0.249985,0,0);}
.m10e_c00434{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);}
.m33_c00434{transform:matrix(0.222342,0.002446,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222342,0.002446,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222342,0.002446,-0.002750,0.249985,0,0);}
.m123_c00434{transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);}
.mf9_c00434{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);}
.me7_c00434{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);}
.m51_c00434{transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);}
.m4_c00434{transform:matrix(0.224740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224740,0.000000,0.000000,0.250000,0,0);}
.m108_c00434{transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225365,0.000000,0.000000,0.250000,0,0);}
.m79_c00434{transform:matrix(0.226204,0.002714,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226204,0.002714,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226204,0.002714,-0.003000,0.249982,0,0);}
.m7c_c00434{transform:matrix(0.226254,0.002715,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226254,0.002715,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226254,0.002715,-0.003000,0.249982,0,0);}
.m12c_c00434{transform:matrix(0.226853,0.003176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226853,0.003176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226853,0.003176,-0.003500,0.249976,0,0);}
.m5a_c00434{transform:matrix(0.227823,0.003190,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227823,0.003190,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227823,0.003190,-0.003500,0.249976,0,0);}
.m124_c00434{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);}
.m8e_c00434{transform:matrix(0.228806,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228806,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228806,0.002517,-0.002750,0.249985,0,0);}
.m74_c00434{transform:matrix(0.230168,0.002762,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230168,0.002762,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230168,0.002762,-0.003000,0.249982,0,0);}
.m3a_c00434{transform:matrix(0.230406,0.002534,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230406,0.002534,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230406,0.002534,-0.002750,0.249985,0,0);}
.me3_c00434{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);}
.m76_c00434{transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232168,0.002786,-0.003000,0.249982,0,0);}
.m3f_c00434{transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);}
.md5_c00434{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);}
.m91_c00434{transform:matrix(0.235708,0.002828,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235708,0.002828,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235708,0.002828,-0.003000,0.249982,0,0);}
.mf8_c00434{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);}
.mb1_c00434{transform:matrix(0.241765,0.003143,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241765,0.003143,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241765,0.003143,-0.003250,0.249979,0,0);}
.md0_c00434{transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.244324,0.003176,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244324,0.003176,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244324,0.003176,-0.003250,0.249979,0,0);}
.mb6_c00434{transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);}
.m38_c00434{transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250425,0.002755,-0.002750,0.249985,0,0);}
.m118_c00434{transform:matrix(0.253115,0.008108,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253115,0.008108,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253115,0.008108,-0.008004,0.249872,0,0);}
.mb8_c00434{transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);}
.me1_c00434{transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);}
.m120_c00434{transform:matrix(0.261581,0.008379,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261581,0.008379,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261581,0.008379,-0.008004,0.249872,0,0);}
.m11b_c00434{transform:matrix(0.262525,0.008409,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262525,0.008409,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262525,0.008409,-0.008004,0.249872,0,0);}
.m56_c00434{transform:matrix(0.262729,0.003678,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262729,0.003678,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262729,0.003678,-0.003500,0.249976,0,0);}
.mb7_c00434{transform:matrix(0.263878,0.003430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263878,0.003430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263878,0.003430,-0.003250,0.249979,0,0);}
.md1_c00434{transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);}
.md3_c00434{transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266800,0.000000,0.000000,0.250000,0,0);}
.mf3_c00434{transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267610,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);}
.m116_c00434{transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280165,0.000000,0.000000,0.250000,0,0);}
.m6a_c00434{transform:matrix(0.280826,0.003651,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280826,0.003651,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280826,0.003651,-0.003250,0.249979,0,0);}
.m129_c00434{transform:matrix(0.282412,0.003954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282412,0.003954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282412,0.003954,-0.003500,0.249976,0,0);}
.m110_c00434{transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.290537,0.004068,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290537,0.004068,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290537,0.004068,-0.003500,0.249976,0,0);}
.m109_c00434{transform:matrix(0.296240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296240,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.303087,0.003334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.303087,0.003334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.303087,0.003334,-0.002750,0.249985,0,0);}
.m16_c00434{transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316620,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.340174,0.003742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.340174,0.003742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.340174,0.003742,-0.002750,0.249985,0,0);}
.m107_c00434{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);}
.mf4_c00434{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.md2_c00434{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);}
.m15_c00434{transform:matrix(0.354395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354395,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;}
.fs21_c00434{font-size:22.050000px;}
.fs20_c00434{font-size:31.500000px;}
.fs1e_c00434{font-size:46.177472px;}
.fs1_c00434{font-size:49.350000px;}
.fs22_c00434{font-size:49.354836px;}
.fs19_c00434{font-size:50.400000px;}
.fs1b_c00434{font-size:51.450000px;}
.fs4_c00434{font-size:53.550000px;}
.fs1f_c00434{font-size:54.573376px;}
.fs0_c00434{font-size:54.600000px;}
.fs1a_c00434{font-size:55.650000px;}
.fs1d_c00434{font-size:59.850000px;}
.fs2_c00434{font-size:63.000000px;}
.fs8_c00434{font-size:63.003811px;}
.fsb_c00434{font-size:64.056277px;}
.fs3_c00434{font-size:65.100000px;}
.fsc_c00434{font-size:67.206585px;}
.fs6_c00434{font-size:69.304193px;}
.fsa_c00434{font-size:69.305856px;}
.fs1c_c00434{font-size:70.350000px;}
.fs5_c00434{font-size:70.354256px;}
.fse_c00434{font-size:70.355065px;}
.fs13_c00434{font-size:70.357914px;}
.fs9_c00434{font-size:71.406997px;}
.fs18_c00434{font-size:72.450000px;}
.fs7_c00434{font-size:72.454383px;}
.fsd_c00434{font-size:72.455216px;}
.fs10_c00434{font-size:73.504447px;}
.fsf_c00434{font-size:73.505292px;}
.fs17_c00434{font-size:73.506210px;}
.fs15_c00434{font-size:75.606388px;}
.fs11_c00434{font-size:76.655519px;}
.fs16_c00434{font-size:77.706565px;}
.fs12_c00434{font-size:78.756654px;}
.fs14_c00434{font-size:92.402957px;}
.y0_c00434{bottom:0.000000px;}
.y6_c00434{bottom:179.823000px;}
.ycf_c00434{bottom:195.150573px;}
.yce_c00434{bottom:195.922568px;}
.ycd_c00434{bottom:196.650121px;}
.ycc_c00434{bottom:196.823772px;}
.ycb_c00434{bottom:197.224283px;}
.yca_c00434{bottom:197.625620px;}
.y5_c00434{bottom:197.749500px;}
.yc9_c00434{bottom:198.190654px;}
.yc0_c00434{bottom:211.578000px;}
.yc8_c00434{bottom:213.274212px;}
.yc7_c00434{bottom:214.188948px;}
.y4_c00434{bottom:215.463000px;}
.yc6_c00434{bottom:215.665908px;}
.yc5_c00434{bottom:216.182388px;}
.yc4_c00434{bottom:217.980228px;}
.yc3_c00434{bottom:218.704500px;}
.ybf_c00434{bottom:230.049000px;}
.y3_c00434{bottom:232.485000px;}
.ybe_c00434{bottom:248.314500px;}
.yc2_c00434{bottom:250.311000px;}
.ybd_c00434{bottom:265.192500px;}
.yc1_c00434{bottom:267.814500px;}
.ybc_c00434{bottom:282.682500px;}
.y2_c00434{bottom:286.093500px;}
.ybb_c00434{bottom:302.344500px;}
.y1_c00434{bottom:304.674000px;}
.yd8_c00434{bottom:317.217171px;}
.yd7_c00434{bottom:317.883081px;}
.yd6_c00434{bottom:318.188862px;}
.yd5_c00434{bottom:318.419358px;}
.yd4_c00434{bottom:318.982473px;}
.yd3_c00434{bottom:319.462701px;}
.yd2_c00434{bottom:320.238000px;}
.yba_c00434{bottom:321.513000px;}
.yd1_c00434{bottom:365.310000px;}
.yb9_c00434{bottom:384.327273px;}
.yb8_c00434{bottom:384.572953px;}
.yb7_c00434{bottom:385.489083px;}
.yb6_c00434{bottom:385.791099px;}
.yb5_c00434{bottom:386.500645px;}
.yb4_c00434{bottom:387.121681px;}
.yb3_c00434{bottom:387.577806px;}
.yb2_c00434{bottom:388.374556px;}
.yb1_c00434{bottom:405.769306px;}
.yb0_c00434{bottom:406.808115px;}
.yaf_c00434{bottom:407.589912px;}
.yae_c00434{bottom:408.103428px;}
.yad_c00434{bottom:408.613239px;}
.yac_c00434{bottom:409.282294px;}
.yab_c00434{bottom:409.769194px;}
.yaa_c00434{bottom:410.125531px;}
.ya9_c00434{bottom:410.888668px;}
.ya8_c00434{bottom:411.292504px;}
.ya7_c00434{bottom:411.677778px;}
.ya6_c00434{bottom:412.021110px;}
.ya5_c00434{bottom:429.358449px;}
.ya4_c00434{bottom:429.481240px;}
.ya3_c00434{bottom:430.267636px;}
.ya2_c00434{bottom:430.593988px;}
.ya1_c00434{bottom:431.039856px;}
.ya0_c00434{bottom:431.601417px;}
.y9f_c00434{bottom:432.212020px;}
.y9e_c00434{bottom:432.851055px;}
.y9d_c00434{bottom:433.471720px;}
.y9c_c00434{bottom:433.621500px;}
.y9b_c00434{bottom:448.557420px;}
.y9a_c00434{bottom:448.752120px;}
.y99_c00434{bottom:448.937892px;}
.y98_c00434{bottom:449.337588px;}
.y97_c00434{bottom:449.752116px;}
.y96_c00434{bottom:450.002628px;}
.y95_c00434{bottom:450.229728px;}
.y94_c00434{bottom:450.901500px;}
.y93_c00434{bottom:474.845137px;}
.y92_c00434{bottom:475.501463px;}
.y91_c00434{bottom:475.943835px;}
.y90_c00434{bottom:476.996970px;}
.y8f_c00434{bottom:477.843510px;}
.y8e_c00434{bottom:478.568505px;}
.y8d_c00434{bottom:479.253000px;}
.y8c_c00434{bottom:496.727352px;}
.y8b_c00434{bottom:497.531025px;}
.y8a_c00434{bottom:498.261905px;}
.y89_c00434{bottom:498.567255px;}
.y88_c00434{bottom:498.935083px;}
.y87_c00434{bottom:499.669473px;}
.y86_c00434{bottom:500.505009px;}
.y85_c00434{bottom:501.080415px;}
.y84_c00434{bottom:501.393000px;}
.y83_c00434{bottom:520.398186px;}
.y82_c00434{bottom:520.899612px;}
.y81_c00434{bottom:521.402586px;}
.y80_c00434{bottom:521.814192px;}
.y7f_c00434{bottom:522.488022px;}
.y7e_c00434{bottom:522.902760px;}
.y7d_c00434{bottom:523.531500px;}
.y7c_c00434{bottom:543.728261px;}
.y7b_c00434{bottom:543.983631px;}
.y7a_c00434{bottom:544.247944px;}
.y79_c00434{bottom:545.091540px;}
.y78_c00434{bottom:545.491945px;}
.y77_c00434{bottom:545.750946px;}
.y76_c00434{bottom:546.166168px;}
.y75_c00434{bottom:546.481500px;}
.y74_c00434{bottom:565.787022px;}
.y73_c00434{bottom:566.098242px;}
.y72_c00434{bottom:566.626398px;}
.y71_c00434{bottom:566.901888px;}
.y70_c00434{bottom:567.404088px;}
.y6f_c00434{bottom:568.058568px;}
.y6e_c00434{bottom:568.596606px;}
.y6d_c00434{bottom:569.156928px;}
.y6c_c00434{bottom:588.448890px;}
.y6b_c00434{bottom:589.087314px;}
.y6a_c00434{bottom:589.630968px;}
.y69_c00434{bottom:589.903776px;}
.y68_c00434{bottom:590.701500px;}
.y67_c00434{bottom:591.540174px;}
.y66_c00434{bottom:592.097382px;}
.y65_c00434{bottom:592.379316px;}
.y64_c00434{bottom:609.672804px;}
.y63_c00434{bottom:611.087442px;}
.y62_c00434{bottom:611.599398px;}
.y61_c00434{bottom:612.014172px;}
.y60_c00434{bottom:612.292902px;}
.y5f_c00434{bottom:612.609972px;}
.y5e_c00434{bottom:613.491306px;}
.y5d_c00434{bottom:613.766562px;}
.y5c_c00434{bottom:614.174226px;}
.y5b_c00434{bottom:614.521500px;}
.y5a_c00434{bottom:632.520489px;}
.y59_c00434{bottom:633.725277px;}
.y58_c00434{bottom:634.265914px;}
.y57_c00434{bottom:634.725724px;}
.y56_c00434{bottom:635.222136px;}
.y55_c00434{bottom:635.762091px;}
.y54_c00434{bottom:636.299842px;}
.y53_c00434{bottom:636.752418px;}
.y52_c00434{bottom:637.471500px;}
.y51_c00434{bottom:656.280147px;}
.y50_c00434{bottom:656.979648px;}
.y4f_c00434{bottom:657.322803px;}
.y4e_c00434{bottom:657.556761px;}
.y4d_c00434{bottom:658.029246px;}
.y4c_c00434{bottom:658.504692px;}
.y4b_c00434{bottom:659.228388px;}
.y4a_c00434{bottom:659.880063px;}
.y49_c00434{bottom:677.652846px;}
.y48_c00434{bottom:678.209514px;}
.y47_c00434{bottom:678.576195px;}
.y46_c00434{bottom:679.841844px;}
.y45_c00434{bottom:680.338137px;}
.y44_c00434{bottom:680.976096px;}
.y43_c00434{bottom:681.317220px;}
.y42_c00434{bottom:682.405902px;}
.y41_c00434{bottom:682.833000px;}
.y40_c00434{bottom:701.155220px;}
.y3f_c00434{bottom:701.488650px;}
.y3e_c00434{bottom:702.387132px;}
.y3d_c00434{bottom:702.777756px;}
.y3c_c00434{bottom:703.394912px;}
.y3b_c00434{bottom:703.938513px;}
.y3a_c00434{bottom:704.514699px;}
.y39_c00434{bottom:705.096618px;}
.y38_c00434{bottom:705.511500px;}
.y37_c00434{bottom:723.652116px;}
.y36_c00434{bottom:724.504590px;}
.y35_c00434{bottom:725.332284px;}
.y34_c00434{bottom:725.690670px;}
.y33_c00434{bottom:726.115143px;}
.y32_c00434{bottom:726.648228px;}
.y31_c00434{bottom:727.195593px;}
.y30_c00434{bottom:727.550766px;}
.y2f_c00434{bottom:728.287803px;}
.y2e_c00434{bottom:729.003000px;}
.y2d_c00434{bottom:746.703339px;}
.y2c_c00434{bottom:748.055621px;}
.y2b_c00434{bottom:748.508695px;}
.y2a_c00434{bottom:748.894894px;}
.y29_c00434{bottom:748.978812px;}
.y28_c00434{bottom:749.575192px;}
.y27_c00434{bottom:750.721168px;}
.y26_c00434{bottom:751.677913px;}
.y25_c00434{bottom:769.744651px;}
.y24_c00434{bottom:770.176694px;}
.y23_c00434{bottom:770.723931px;}
.y22_c00434{bottom:771.347514px;}
.y21_c00434{bottom:771.914679px;}
.y20_c00434{bottom:772.609015px;}
.y1f_c00434{bottom:772.943052px;}
.y1e_c00434{bottom:773.752698px;}
.y1d_c00434{bottom:774.262323px;}
.y1c_c00434{bottom:774.630721px;}
.yd0_c00434{bottom:790.020000px;}
.y1b_c00434{bottom:793.212581px;}
.y1a_c00434{bottom:793.453299px;}
.y19_c00434{bottom:793.842155px;}
.y18_c00434{bottom:794.287176px;}
.y17_c00434{bottom:794.780790px;}
.y16_c00434{bottom:795.255990px;}
.y15_c00434{bottom:795.784353px;}
.y14_c00434{bottom:796.113974px;}
.y13_c00434{bottom:796.488210px;}
.y12_c00434{bottom:796.910907px;}
.y11_c00434{bottom:797.317319px;}
.y10_c00434{bottom:797.581500px;}
.yf_c00434{bottom:816.415141px;}
.ye_c00434{bottom:816.855196px;}
.yd_c00434{bottom:817.148682px;}
.yc_c00434{bottom:817.629855px;}
.yb_c00434{bottom:818.108058px;}
.ya_c00434{bottom:818.984835px;}
.y9_c00434{bottom:819.249148px;}
.y8_c00434{bottom:819.510459px;}
.y7_c00434{bottom:819.991500px;}
.h23_c00434{height:22.050000px;}
.h22_c00434{height:31.500000px;}
.h20_c00434{height:46.177472px;}
.h3_c00434{height:49.350000px;}
.h24_c00434{height:49.354836px;}
.h1b_c00434{height:50.400000px;}
.h1d_c00434{height:51.450000px;}
.h6_c00434{height:53.550000px;}
.h21_c00434{height:54.573376px;}
.h2_c00434{height:54.600000px;}
.h1c_c00434{height:55.650000px;}
.h1f_c00434{height:59.850000px;}
.h4_c00434{height:63.000000px;}
.ha_c00434{height:63.003811px;}
.hd_c00434{height:64.056277px;}
.h5_c00434{height:65.100000px;}
.he_c00434{height:67.206585px;}
.h8_c00434{height:69.304193px;}
.hc_c00434{height:69.305856px;}
.h1e_c00434{height:70.350000px;}
.h7_c00434{height:70.354256px;}
.h10_c00434{height:70.355065px;}
.h15_c00434{height:70.357914px;}
.hb_c00434{height:71.406997px;}
.h1a_c00434{height:72.450000px;}
.h9_c00434{height:72.454383px;}
.hf_c00434{height:72.455216px;}
.h12_c00434{height:73.504447px;}
.h11_c00434{height:73.505292px;}
.h19_c00434{height:73.506210px;}
.h17_c00434{height:75.606388px;}
.h13_c00434{height:76.655519px;}
.h18_c00434{height:77.706565px;}
.h14_c00434{height:78.756654px;}
.h16_c00434{height:92.402957px;}
.h1_c00434{height:1005.000000px;}
.h0_c00434{height:1005.150000px;}
.w0_c00434{width:715.200000px;}
.w1_c00434{width:715.500000px;}
.x0_c00434{left:0.000000px;}
.x9d_c00434{left:83.430000px;}
.x1_c00434{left:85.320000px;}
.x4_c00434{left:96.930000px;}
.x2_c00434{left:106.920000px;}
.x74_c00434{left:110.079000px;}
.x12_c00434{left:116.370000px;}
.x81_c00434{left:118.530000px;}
.x5_c00434{left:119.880000px;}
.x6f_c00434{left:122.389500px;}
.x44_c00434{left:123.741000px;}
.x3c_c00434{left:125.647500px;}
.x28_c00434{left:126.716402px;}
.x15_c00434{left:127.846500px;}
.x9e_c00434{left:129.060000px;}
.xa1_c00434{left:130.680000px;}
.x13_c00434{left:136.620000px;}
.xb_c00434{left:139.320000px;}
.x9f_c00434{left:141.750000px;}
.x3_c00434{left:145.530000px;}
.x10_c00434{left:147.690000px;}
.x78_c00434{left:149.949009px;}
.x6_c00434{left:152.010000px;}
.x45_c00434{left:154.248000px;}
.x3d_c00434{left:157.561500px;}
.xa2_c00434{left:159.030000px;}
.x82_c00434{left:165.510000px;}
.x14_c00434{left:167.130000px;}
.x75_c00434{left:169.344000px;}
.x16_c00434{left:171.577500px;}
.x4c_c00434{left:173.178288px;}
.x67_c00434{left:175.606500px;}
.x34_c00434{left:177.006000px;}
.x79_c00434{left:178.820638px;}
.x51_c00434{left:180.966000px;}
.xc_c00434{left:183.060000px;}
.x55_c00434{left:187.492500px;}
.x1e_c00434{left:189.088500px;}
.x61_c00434{left:190.471500px;}
.x6b_c00434{left:191.518500px;}
.x17_c00434{left:195.333000px;}
.x7_c00434{left:197.370000px;}
.x3e_c00434{left:202.324500px;}
.x83_c00434{left:204.660000px;}
.x11_c00434{left:206.280000px;}
.x56_c00434{left:210.430500px;}
.x62_c00434{left:214.017000px;}
.x52_c00434{left:215.779500px;}
.x18_c00434{left:219.361500px;}
.xd_c00434{left:222.480000px;}
.x1f_c00434{left:227.515500px;}
.x35_c00434{left:229.651500px;}
.x46_c00434{left:232.011000px;}
.x4d_c00434{left:233.443968px;}
.x71_c00434{left:235.062000px;}
.x8_c00434{left:237.600000px;}
.x29_c00434{left:247.136909px;}
.x63_c00434{left:250.417500px;}
.x84_c00434{left:251.910000px;}
.x9_c00434{left:254.070000px;}
.x47_c00434{left:256.377000px;}
.x7a_c00434{left:258.817605px;}
.x20_c00434{left:261.537000px;}
.x5d_c00434{left:264.940410px;}
.x68_c00434{left:266.320500px;}
.x85_c00434{left:268.380000px;}
.x2a_c00434{left:270.957617px;}
.x4e_c00434{left:273.084081px;}
.xe_c00434{left:274.590000px;}
.x30_c00434{left:277.098018px;}
.xa0_c00434{left:279.180000px;}
.xa_c00434{left:281.610000px;}
.x57_c00434{left:283.875000px;}
.xf_c00434{left:286.200000px;}
.x3f_c00434{left:288.462000px;}
.x21_c00434{left:291.502500px;}
.x36_c00434{left:294.118500px;}
.x19_c00434{left:299.068500px;}
.x69_c00434{left:300.621000px;}
.x48_c00434{left:301.945500px;}
.xa3_c00434{left:307.591373px;}
.x76_c00434{left:308.667000px;}
.x58_c00434{left:310.297500px;}
.x4f_c00434{left:312.512694px;}
.x72_c00434{left:318.192000px;}
.x2b_c00434{left:320.577483px;}
.x31_c00434{left:325.714417px;}
.x64_c00434{left:327.108000px;}
.xa4_c00434{left:328.664571px;}
.x37_c00434{left:332.196000px;}
.x59_c00434{left:333.525000px;}
.x5f_c00434{left:334.920126px;}
.x40_c00434{left:335.935500px;}
.x49_c00434{left:337.395000px;}
.x22_c00434{left:339.535500px;}
.x6c_c00434{left:340.576500px;}
.x1a_c00434{left:342.541500px;}
.x7f_c00434{left:344.101927px;}
.x65_c00434{left:351.136500px;}
.x32_c00434{left:353.322510px;}
.x86_c00434{left:355.860000px;}
.x93_c00434{left:359.100000px;}
.x2c_c00434{left:361.091147px;}
.x38_c00434{left:362.515500px;}
.x6d_c00434{left:364.065000px;}
.x41_c00434{left:365.983500px;}
.x5a_c00434{left:368.089500px;}
.x53_c00434{left:372.235500px;}
.x66_c00434{left:374.352000px;}
.x94_c00434{left:376.380000px;}
.x7b_c00434{left:377.836564px;}
.x60_c00434{left:378.933126px;}
.x23_c00434{left:382.735500px;}
.x6a_c00434{left:384.321000px;}
.x1b_c00434{left:386.284500px;}
.x39_c00434{left:388.114500px;}
.x73_c00434{left:391.375500px;}
.x5e_c00434{left:399.455910px;}
.x8a_c00434{left:403.110000px;}
.x2d_c00434{left:405.642678px;}
.x95_c00434{left:407.700000px;}
.x5b_c00434{left:410.752500px;}
.x1c_c00434{left:412.965000px;}
.x7c_c00434{left:414.568096px;}
.x70_c00434{left:416.247000px;}
.x50_c00434{left:418.916676px;}
.x6e_c00434{left:420.286500px;}
.x8b_c00434{left:421.740000px;}
.xa6_c00434{left:425.398500px;}
.x24_c00434{left:427.609500px;}
.x9b_c00434{left:430.380000px;}
.x80_c00434{left:433.471927px;}
.x42_c00434{left:435.097500px;}
.x77_c00434{left:438.006000px;}
.x2e_c00434{left:444.753891px;}
.x8c_c00434{left:445.770000px;}
.x3a_c00434{left:447.235500px;}
.x1d_c00434{left:452.970000px;}
.x4a_c00434{left:453.990000px;}
.x43_c00434{left:460.746000px;}
.x8d_c00434{left:464.670000px;}
.x25_c00434{left:468.066000px;}
.x7d_c00434{left:470.436375px;}
.x87_c00434{left:472.770000px;}
.x9c_c00434{left:473.850000px;}
.x2f_c00434{left:475.574868px;}
.x98_c00434{left:477.360000px;}
.x33_c00434{left:482.259753px;}
.x8e_c00434{left:491.940000px;}
.x4b_c00434{left:493.752000px;}
.x88_c00434{left:499.770000px;}
.x26_c00434{left:503.416500px;}
.x90_c00434{left:504.630000px;}
.x54_c00434{left:506.499000px;}
.x3b_c00434{left:508.126500px;}
.x99_c00434{left:511.650000px;}
.x8f_c00434{left:516.780000px;}
.x91_c00434{left:522.180000px;}
.x27_c00434{left:525.300000px;}
.x5c_c00434{left:528.639000px;}
.x96_c00434{left:532.710000px;}
.x89_c00434{left:534.330000px;}
.x92_c00434{left:539.190000px;}
.x9a_c00434{left:541.350000px;}
.x7e_c00434{left:544.689920px;}
.xa7_c00434{left:551.491500px;}
.xa5_c00434{left:554.850000px;}
.x97_c00434{left:568.890000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.fs21_c00434{font-size:19.600000pt;}
.fs20_c00434{font-size:28.000000pt;}
.fs1e_c00434{font-size:41.046642pt;}
.fs1_c00434{font-size:43.866667pt;}
.fs22_c00434{font-size:43.870965pt;}
.fs19_c00434{font-size:44.800000pt;}
.fs1b_c00434{font-size:45.733333pt;}
.fs4_c00434{font-size:47.600000pt;}
.fs1f_c00434{font-size:48.509668pt;}
.fs0_c00434{font-size:48.533333pt;}
.fs1a_c00434{font-size:49.466667pt;}
.fs1d_c00434{font-size:53.200000pt;}
.fs2_c00434{font-size:56.000000pt;}
.fs8_c00434{font-size:56.003388pt;}
.fsb_c00434{font-size:56.938913pt;}
.fs3_c00434{font-size:57.866667pt;}
.fsc_c00434{font-size:59.739187pt;}
.fs6_c00434{font-size:61.603727pt;}
.fsa_c00434{font-size:61.605205pt;}
.fs1c_c00434{font-size:62.533333pt;}
.fs5_c00434{font-size:62.537116pt;}
.fse_c00434{font-size:62.537836pt;}
.fs13_c00434{font-size:62.540368pt;}
.fs9_c00434{font-size:63.472886pt;}
.fs18_c00434{font-size:64.400000pt;}
.fs7_c00434{font-size:64.403896pt;}
.fsd_c00434{font-size:64.404637pt;}
.fs10_c00434{font-size:65.337286pt;}
.fsf_c00434{font-size:65.338037pt;}
.fs17_c00434{font-size:65.338854pt;}
.fs15_c00434{font-size:67.205678pt;}
.fs11_c00434{font-size:68.138239pt;}
.fs16_c00434{font-size:69.072503pt;}
.fs12_c00434{font-size:70.005915pt;}
.fs14_c00434{font-size:82.135962pt;}
.y0_c00434{bottom:0.000000pt;}
.y6_c00434{bottom:159.842667pt;}
.ycf_c00434{bottom:173.467176pt;}
.yce_c00434{bottom:174.153393pt;}
.ycd_c00434{bottom:174.800108pt;}
.ycc_c00434{bottom:174.954464pt;}
.ycb_c00434{bottom:175.310473pt;}
.yca_c00434{bottom:175.667217pt;}
.y5_c00434{bottom:175.777333pt;}
.yc9_c00434{bottom:176.169471pt;}
.yc0_c00434{bottom:188.069333pt;}
.yc8_c00434{bottom:189.577077pt;}
.yc7_c00434{bottom:190.390176pt;}
.y4_c00434{bottom:191.522667pt;}
.yc6_c00434{bottom:191.703029pt;}
.yc5_c00434{bottom:192.162123pt;}
.yc4_c00434{bottom:193.760203pt;}
.yc3_c00434{bottom:194.404000pt;}
.ybf_c00434{bottom:204.488000pt;}
.y3_c00434{bottom:206.653333pt;}
.ybe_c00434{bottom:220.724000pt;}
.yc2_c00434{bottom:222.498667pt;}
.ybd_c00434{bottom:235.726667pt;}
.yc1_c00434{bottom:238.057333pt;}
.ybc_c00434{bottom:251.273333pt;}
.y2_c00434{bottom:254.305333pt;}
.ybb_c00434{bottom:268.750667pt;}
.y1_c00434{bottom:270.821333pt;}
.yd8_c00434{bottom:281.970819pt;}
.yd7_c00434{bottom:282.562739pt;}
.yd6_c00434{bottom:282.834544pt;}
.yd5_c00434{bottom:283.039429pt;}
.yd4_c00434{bottom:283.539976pt;}
.yd3_c00434{bottom:283.966845pt;}
.yd2_c00434{bottom:284.656000pt;}
.yba_c00434{bottom:285.789333pt;}
.yd1_c00434{bottom:324.720000pt;}
.yb9_c00434{bottom:341.624243pt;}
.yb8_c00434{bottom:341.842625pt;}
.yb7_c00434{bottom:342.656963pt;}
.yb6_c00434{bottom:342.925421pt;}
.yb5_c00434{bottom:343.556129pt;}
.yb4_c00434{bottom:344.108161pt;}
.yb3_c00434{bottom:344.513605pt;}
.yb2_c00434{bottom:345.221828pt;}
.yb1_c00434{bottom:360.683828pt;}
.yb0_c00434{bottom:361.607213pt;}
.yaf_c00434{bottom:362.302144pt;}
.yae_c00434{bottom:362.758603pt;}
.yad_c00434{bottom:363.211768pt;}
.yac_c00434{bottom:363.806484pt;}
.yab_c00434{bottom:364.239284pt;}
.yaa_c00434{bottom:364.556028pt;}
.ya9_c00434{bottom:365.234372pt;}
.ya8_c00434{bottom:365.593337pt;}
.ya7_c00434{bottom:365.935803pt;}
.ya6_c00434{bottom:366.240987pt;}
.ya5_c00434{bottom:381.651955pt;}
.ya4_c00434{bottom:381.761103pt;}
.ya3_c00434{bottom:382.460121pt;}
.ya2_c00434{bottom:382.750212pt;}
.ya1_c00434{bottom:383.146539pt;}
.ya0_c00434{bottom:383.645704pt;}
.y9f_c00434{bottom:384.188463pt;}
.y9e_c00434{bottom:384.756493pt;}
.y9d_c00434{bottom:385.308196pt;}
.y9c_c00434{bottom:385.441333pt;}
.y9b_c00434{bottom:398.717707pt;}
.y9a_c00434{bottom:398.890773pt;}
.y99_c00434{bottom:399.055904pt;}
.y98_c00434{bottom:399.411189pt;}
.y97_c00434{bottom:399.779659pt;}
.y96_c00434{bottom:400.002336pt;}
.y95_c00434{bottom:400.204203pt;}
.y94_c00434{bottom:400.801333pt;}
.y93_c00434{bottom:422.084567pt;}
.y92_c00434{bottom:422.667967pt;}
.y91_c00434{bottom:423.061187pt;}
.y90_c00434{bottom:423.997307pt;}
.y8f_c00434{bottom:424.749787pt;}
.y8e_c00434{bottom:425.394227pt;}
.y8d_c00434{bottom:426.002667pt;}
.y8c_c00434{bottom:441.535424pt;}
.y8b_c00434{bottom:442.249800pt;}
.y8a_c00434{bottom:442.899471pt;}
.y89_c00434{bottom:443.170893pt;}
.y88_c00434{bottom:443.497852pt;}
.y87_c00434{bottom:444.150643pt;}
.y86_c00434{bottom:444.893341pt;}
.y85_c00434{bottom:445.404813pt;}
.y84_c00434{bottom:445.682667pt;}
.y83_c00434{bottom:462.576165pt;}
.y82_c00434{bottom:463.021877pt;}
.y81_c00434{bottom:463.468965pt;}
.y80_c00434{bottom:463.834837pt;}
.y7f_c00434{bottom:464.433797pt;}
.y7e_c00434{bottom:464.802453pt;}
.y7d_c00434{bottom:465.361333pt;}
.y7c_c00434{bottom:483.314009pt;}
.y7b_c00434{bottom:483.541005pt;}
.y7a_c00434{bottom:483.775951pt;}
.y79_c00434{bottom:484.525813pt;}
.y78_c00434{bottom:484.881729pt;}
.y77_c00434{bottom:485.111952pt;}
.y76_c00434{bottom:485.481039pt;}
.y75_c00434{bottom:485.761333pt;}
.y74_c00434{bottom:502.921797pt;}
.y73_c00434{bottom:503.198437pt;}
.y72_c00434{bottom:503.667909pt;}
.y71_c00434{bottom:503.912789pt;}
.y70_c00434{bottom:504.359189pt;}
.y6f_c00434{bottom:504.940949pt;}
.y6e_c00434{bottom:505.419205pt;}
.y6d_c00434{bottom:505.917269pt;}
.y6c_c00434{bottom:523.065680pt;}
.y6b_c00434{bottom:523.633168pt;}
.y6a_c00434{bottom:524.116416pt;}
.y69_c00434{bottom:524.358912pt;}
.y68_c00434{bottom:525.068000pt;}
.y67_c00434{bottom:525.813488pt;}
.y66_c00434{bottom:526.308784pt;}
.y65_c00434{bottom:526.559392pt;}
.y64_c00434{bottom:541.931381pt;}
.y63_c00434{bottom:543.188837pt;}
.y62_c00434{bottom:543.643909pt;}
.y61_c00434{bottom:544.012597pt;}
.y60_c00434{bottom:544.260357pt;}
.y5f_c00434{bottom:544.542197pt;}
.y5e_c00434{bottom:545.325605pt;}
.y5d_c00434{bottom:545.570277pt;}
.y5c_c00434{bottom:545.932645pt;}
.y5b_c00434{bottom:546.241333pt;}
.y5a_c00434{bottom:562.240435pt;}
.y59_c00434{bottom:563.311357pt;}
.y58_c00434{bottom:563.791924pt;}
.y57_c00434{bottom:564.200644pt;}
.y56_c00434{bottom:564.641899pt;}
.y55_c00434{bottom:565.121859pt;}
.y54_c00434{bottom:565.599860pt;}
.y53_c00434{bottom:566.002149pt;}
.y52_c00434{bottom:566.641333pt;}
.y51_c00434{bottom:583.360131pt;}
.y50_c00434{bottom:583.981909pt;}
.y4f_c00434{bottom:584.286936pt;}
.y4e_c00434{bottom:584.494899pt;}
.y4d_c00434{bottom:584.914885pt;}
.y4c_c00434{bottom:585.337504pt;}
.y4b_c00434{bottom:585.980789pt;}
.y4a_c00434{bottom:586.560056pt;}
.y49_c00434{bottom:602.358085pt;}
.y48_c00434{bottom:602.852901pt;}
.y47_c00434{bottom:603.178840pt;}
.y46_c00434{bottom:604.303861pt;}
.y45_c00434{bottom:604.745011pt;}
.y44_c00434{bottom:605.312085pt;}
.y43_c00434{bottom:605.615307pt;}
.y42_c00434{bottom:606.583024pt;}
.y41_c00434{bottom:606.962667pt;}
.y40_c00434{bottom:623.249084pt;}
.y3f_c00434{bottom:623.545467pt;}
.y3e_c00434{bottom:624.344117pt;}
.y3d_c00434{bottom:624.691339pt;}
.y3c_c00434{bottom:625.239921pt;}
.y3b_c00434{bottom:625.723123pt;}
.y3a_c00434{bottom:626.235288pt;}
.y39_c00434{bottom:626.752549pt;}
.y38_c00434{bottom:627.121333pt;}
.y37_c00434{bottom:643.246325pt;}
.y36_c00434{bottom:644.004080pt;}
.y35_c00434{bottom:644.739808pt;}
.y34_c00434{bottom:645.058373pt;}
.y33_c00434{bottom:645.435683pt;}
.y32_c00434{bottom:645.909536pt;}
.y31_c00434{bottom:646.396083pt;}
.y30_c00434{bottom:646.711792pt;}
.y2f_c00434{bottom:647.366936pt;}
.y2e_c00434{bottom:648.002667pt;}
.y2d_c00434{bottom:663.736301pt;}
.y2c_c00434{bottom:664.938329pt;}
.y2b_c00434{bottom:665.341063pt;}
.y2a_c00434{bottom:665.684351pt;}
.y29_c00434{bottom:665.758944pt;}
.y28_c00434{bottom:666.289060pt;}
.y27_c00434{bottom:667.307705pt;}
.y26_c00434{bottom:668.158145pt;}
.y25_c00434{bottom:684.217468pt;}
.y24_c00434{bottom:684.601505pt;}
.y23_c00434{bottom:685.087939pt;}
.y22_c00434{bottom:685.642235pt;}
.y21_c00434{bottom:686.146381pt;}
.y20_c00434{bottom:686.763569pt;}
.y1f_c00434{bottom:687.060491pt;}
.y1e_c00434{bottom:687.780176pt;}
.y1d_c00434{bottom:688.233176pt;}
.y1c_c00434{bottom:688.560641pt;}
.yd0_c00434{bottom:702.240000pt;}
.y1b_c00434{bottom:705.077849pt;}
.y1a_c00434{bottom:705.291821pt;}
.y19_c00434{bottom:705.637471pt;}
.y18_c00434{bottom:706.033045pt;}
.y17_c00434{bottom:706.471813pt;}
.y16_c00434{bottom:706.894213pt;}
.y15_c00434{bottom:707.363869pt;}
.y14_c00434{bottom:707.656865pt;}
.y13_c00434{bottom:707.989520pt;}
.y12_c00434{bottom:708.365251pt;}
.y11_c00434{bottom:708.726505pt;}
.y10_c00434{bottom:708.961333pt;}
.yf_c00434{bottom:725.702348pt;}
.ye_c00434{bottom:726.093508pt;}
.yd_c00434{bottom:726.354384pt;}
.yc_c00434{bottom:726.782093pt;}
.yb_c00434{bottom:727.207163pt;}
.ya_c00434{bottom:727.986520pt;}
.y9_c00434{bottom:728.221465pt;}
.y8_c00434{bottom:728.453741pt;}
.y7_c00434{bottom:728.881333pt;}
.h23_c00434{height:19.600000pt;}
.h22_c00434{height:28.000000pt;}
.h20_c00434{height:41.046642pt;}
.h3_c00434{height:43.866667pt;}
.h24_c00434{height:43.870965pt;}
.h1b_c00434{height:44.800000pt;}
.h1d_c00434{height:45.733333pt;}
.h6_c00434{height:47.600000pt;}
.h21_c00434{height:48.509668pt;}
.h2_c00434{height:48.533333pt;}
.h1c_c00434{height:49.466667pt;}
.h1f_c00434{height:53.200000pt;}
.h4_c00434{height:56.000000pt;}
.ha_c00434{height:56.003388pt;}
.hd_c00434{height:56.938913pt;}
.h5_c00434{height:57.866667pt;}
.he_c00434{height:59.739187pt;}
.h8_c00434{height:61.603727pt;}
.hc_c00434{height:61.605205pt;}
.h1e_c00434{height:62.533333pt;}
.h7_c00434{height:62.537116pt;}
.h10_c00434{height:62.537836pt;}
.h15_c00434{height:62.540368pt;}
.hb_c00434{height:63.472886pt;}
.h1a_c00434{height:64.400000pt;}
.h9_c00434{height:64.403896pt;}
.hf_c00434{height:64.404637pt;}
.h12_c00434{height:65.337286pt;}
.h11_c00434{height:65.338037pt;}
.h19_c00434{height:65.338854pt;}
.h17_c00434{height:67.205678pt;}
.h13_c00434{height:68.138239pt;}
.h18_c00434{height:69.072503pt;}
.h14_c00434{height:70.005915pt;}
.h16_c00434{height:82.135962pt;}
.h1_c00434{height:893.333333pt;}
.h0_c00434{height:893.466667pt;}
.w0_c00434{width:635.733333pt;}
.w1_c00434{width:636.000000pt;}
.x0_c00434{left:0.000000pt;}
.x9d_c00434{left:74.160000pt;}
.x1_c00434{left:75.840000pt;}
.x4_c00434{left:86.160000pt;}
.x2_c00434{left:95.040000pt;}
.x74_c00434{left:97.848000pt;}
.x12_c00434{left:103.440000pt;}
.x81_c00434{left:105.360000pt;}
.x5_c00434{left:106.560000pt;}
.x6f_c00434{left:108.790667pt;}
.x44_c00434{left:109.992000pt;}
.x3c_c00434{left:111.686667pt;}
.x28_c00434{left:112.636801pt;}
.x15_c00434{left:113.641333pt;}
.x9e_c00434{left:114.720000pt;}
.xa1_c00434{left:116.160000pt;}
.x13_c00434{left:121.440000pt;}
.xb_c00434{left:123.840000pt;}
.x9f_c00434{left:126.000000pt;}
.x3_c00434{left:129.360000pt;}
.x10_c00434{left:131.280000pt;}
.x78_c00434{left:133.288008pt;}
.x6_c00434{left:135.120000pt;}
.x45_c00434{left:137.109333pt;}
.x3d_c00434{left:140.054667pt;}
.xa2_c00434{left:141.360000pt;}
.x82_c00434{left:147.120000pt;}
.x14_c00434{left:148.560000pt;}
.x75_c00434{left:150.528000pt;}
.x16_c00434{left:152.513333pt;}
.x4c_c00434{left:153.936256pt;}
.x67_c00434{left:156.094667pt;}
.x34_c00434{left:157.338667pt;}
.x79_c00434{left:158.951679pt;}
.x51_c00434{left:160.858667pt;}
.xc_c00434{left:162.720000pt;}
.x55_c00434{left:166.660000pt;}
.x1e_c00434{left:168.078667pt;}
.x61_c00434{left:169.308000pt;}
.x6b_c00434{left:170.238667pt;}
.x17_c00434{left:173.629333pt;}
.x7_c00434{left:175.440000pt;}
.x3e_c00434{left:179.844000pt;}
.x83_c00434{left:181.920000pt;}
.x11_c00434{left:183.360000pt;}
.x56_c00434{left:187.049333pt;}
.x62_c00434{left:190.237333pt;}
.x52_c00434{left:191.804000pt;}
.x18_c00434{left:194.988000pt;}
.xd_c00434{left:197.760000pt;}
.x1f_c00434{left:202.236000pt;}
.x35_c00434{left:204.134667pt;}
.x46_c00434{left:206.232000pt;}
.x4d_c00434{left:207.505749pt;}
.x71_c00434{left:208.944000pt;}
.x8_c00434{left:211.200000pt;}
.x29_c00434{left:219.677252pt;}
.x63_c00434{left:222.593333pt;}
.x84_c00434{left:223.920000pt;}
.x9_c00434{left:225.840000pt;}
.x47_c00434{left:227.890667pt;}
.x7a_c00434{left:230.060093pt;}
.x20_c00434{left:232.477333pt;}
.x5d_c00434{left:235.502587pt;}
.x68_c00434{left:236.729333pt;}
.x85_c00434{left:238.560000pt;}
.x2a_c00434{left:240.851215pt;}
.x4e_c00434{left:242.741405pt;}
.xe_c00434{left:244.080000pt;}
.x30_c00434{left:246.309349pt;}
.xa0_c00434{left:248.160000pt;}
.xa_c00434{left:250.320000pt;}
.x57_c00434{left:252.333333pt;}
.xf_c00434{left:254.400000pt;}
.x3f_c00434{left:256.410667pt;}
.x21_c00434{left:259.113333pt;}
.x36_c00434{left:261.438667pt;}
.x19_c00434{left:265.838667pt;}
.x69_c00434{left:267.218667pt;}
.x48_c00434{left:268.396000pt;}
.xa3_c00434{left:273.414553pt;}
.x76_c00434{left:274.370667pt;}
.x58_c00434{left:275.820000pt;}
.x4f_c00434{left:277.789061pt;}
.x72_c00434{left:282.837333pt;}
.x2b_c00434{left:284.957763pt;}
.x31_c00434{left:289.523927pt;}
.x64_c00434{left:290.762667pt;}
.xa4_c00434{left:292.146285pt;}
.x37_c00434{left:295.285333pt;}
.x59_c00434{left:296.466667pt;}
.x5f_c00434{left:297.706779pt;}
.x40_c00434{left:298.609333pt;}
.x49_c00434{left:299.906667pt;}
.x22_c00434{left:301.809333pt;}
.x6c_c00434{left:302.734667pt;}
.x1a_c00434{left:304.481333pt;}
.x7f_c00434{left:305.868380pt;}
.x65_c00434{left:312.121333pt;}
.x32_c00434{left:314.064453pt;}
.x86_c00434{left:316.320000pt;}
.x93_c00434{left:319.200000pt;}
.x2c_c00434{left:320.969908pt;}
.x38_c00434{left:322.236000pt;}
.x6d_c00434{left:323.613333pt;}
.x41_c00434{left:325.318667pt;}
.x5a_c00434{left:327.190667pt;}
.x53_c00434{left:330.876000pt;}
.x66_c00434{left:332.757333pt;}
.x94_c00434{left:334.560000pt;}
.x7b_c00434{left:335.854724pt;}
.x60_c00434{left:336.829445pt;}
.x23_c00434{left:340.209333pt;}
.x6a_c00434{left:341.618667pt;}
.x1b_c00434{left:343.364000pt;}
.x39_c00434{left:344.990667pt;}
.x73_c00434{left:347.889333pt;}
.x5e_c00434{left:355.071920pt;}
.x8a_c00434{left:358.320000pt;}
.x2d_c00434{left:360.571269pt;}
.x95_c00434{left:362.400000pt;}
.x5b_c00434{left:365.113333pt;}
.x1c_c00434{left:367.080000pt;}
.x7c_c00434{left:368.504975pt;}
.x70_c00434{left:369.997333pt;}
.x50_c00434{left:372.370379pt;}
.x6e_c00434{left:373.588000pt;}
.x8b_c00434{left:374.880000pt;}
.xa6_c00434{left:378.132000pt;}
.x24_c00434{left:380.097333pt;}
.x9b_c00434{left:382.560000pt;}
.x80_c00434{left:385.308380pt;}
.x42_c00434{left:386.753333pt;}
.x77_c00434{left:389.338667pt;}
.x2e_c00434{left:395.336792pt;}
.x8c_c00434{left:396.240000pt;}
.x3a_c00434{left:397.542667pt;}
.x1d_c00434{left:402.640000pt;}
.x4a_c00434{left:403.546667pt;}
.x43_c00434{left:409.552000pt;}
.x8d_c00434{left:413.040000pt;}
.x25_c00434{left:416.058667pt;}
.x7d_c00434{left:418.165667pt;}
.x87_c00434{left:420.240000pt;}
.x9c_c00434{left:421.200000pt;}
.x2f_c00434{left:422.733216pt;}
.x98_c00434{left:424.320000pt;}
.x33_c00434{left:428.675336pt;}
.x8e_c00434{left:437.280000pt;}
.x4b_c00434{left:438.890667pt;}
.x88_c00434{left:444.240000pt;}
.x26_c00434{left:447.481333pt;}
.x90_c00434{left:448.560000pt;}
.x54_c00434{left:450.221333pt;}
.x3b_c00434{left:451.668000pt;}
.x99_c00434{left:454.800000pt;}
.x8f_c00434{left:459.360000pt;}
.x91_c00434{left:464.160000pt;}
.x27_c00434{left:466.933333pt;}
.x5c_c00434{left:469.901333pt;}
.x96_c00434{left:473.520000pt;}
.x89_c00434{left:474.960000pt;}
.x92_c00434{left:479.280000pt;}
.x9a_c00434{left:481.200000pt;}
.x7e_c00434{left:484.168817pt;}
.xa7_c00434{left:490.214667pt;}
.xa5_c00434{left:493.200000pt;}
.x97_c00434{left:505.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7_c00435{transform:matrix(0.016043,-0.000273,0.004249,0.249964,0,0);-ms-transform:matrix(0.016043,-0.000273,0.004249,0.249964,0,0);-webkit-transform:matrix(0.016043,-0.000273,0.004249,0.249964,0,0);}
.m5d_c00435{transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);}
.ma6_c00435{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.mba_c00435{transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);}
.mc3_c00435{transform:matrix(0.040115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040115,0.000000,0.000000,0.250000,0,0);}
.m76_c00435{transform:matrix(0.065950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065950,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.091937,-0.001563,0.004249,0.249964,0,0);-ms-transform:matrix(0.091937,-0.001563,0.004249,0.249964,0,0);-webkit-transform:matrix(0.091937,-0.001563,0.004249,0.249964,0,0);}
.mef_c00435{transform:matrix(0.103945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103945,0.000000,0.000000,0.250000,0,0);}
.mfa_c00435{transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);}
.me8_c00435{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);}
.me9_c00435{transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00435{transform:matrix(0.130185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130185,0.000000,0.000000,0.250000,0,0);}
.m7d_c00435{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.146664,-0.002493,0.004249,0.249964,0,0);-ms-transform:matrix(0.146664,-0.002493,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146664,-0.002493,0.004249,0.249964,0,0);}
.m91_c00435{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);}
.mb_c00435{transform:matrix(0.150758,-0.002563,0.004249,0.249964,0,0);-ms-transform:matrix(0.150758,-0.002563,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150758,-0.002563,0.004249,0.249964,0,0);}
.me2_c00435{transform:matrix(0.152095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152095,0.000000,0.000000,0.250000,0,0);}
.mb0_c00435{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);}
.m55_c00435{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);}
.mb9_c00435{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);}
.m4e_c00435{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);}
.m4a_c00435{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);}
.ma0_c00435{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);}
.m3f_c00435{transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160155,0.000000,0.000000,0.250000,0,0);}
.mf8_c00435{transform:matrix(0.160455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160455,0.000000,0.000000,0.250000,0,0);}
.mf7_c00435{transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161265,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);-ms-transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);}
.m7b_c00435{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);}
.m71_c00435{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);}
.m59_c00435{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);}
.m3e_c00435{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);}
.mf3_c00435{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);}
.m47_c00435{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);}
.m9c_c00435{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);}
.m1a_c00435{transform:matrix(0.173450,-0.002949,0.004249,0.249964,0,0);-ms-transform:matrix(0.173450,-0.002949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173450,-0.002949,0.004249,0.249964,0,0);}
.mc7_c00435{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);}
.me6_c00435{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);}
.ma2_c00435{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);}
.m3a_c00435{transform:matrix(0.175240,-0.003505,0.004999,0.249950,0,0);-ms-transform:matrix(0.175240,-0.003505,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175240,-0.003505,0.004999,0.249950,0,0);}
.ma1_c00435{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);}
.ma4_c00435{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);}
.m66_c00435{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);}
.me3_c00435{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);}
.m41_c00435{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);}
.mb5_c00435{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);}
.mcb_c00435{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);}
.mc6_c00435{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);}
.m44_c00435{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);}
.mc4_c00435{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);}
.mde_c00435{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);}
.md8_c00435{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);}
.m6e_c00435{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);}
.mb3_c00435{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);}
.mb6_c00435{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);}
.mc_c00435{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);}
.ma5_c00435{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);}
.mc0_c00435{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);}
.m84_c00435{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);}
.m3d_c00435{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);}
.mbf_c00435{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);}
.mf4_c00435{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);}
.m23_c00435{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);}
.m1e_c00435{transform:matrix(0.188183,-0.003199,0.004249,0.249964,0,0);-ms-transform:matrix(0.188183,-0.003199,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188183,-0.003199,0.004249,0.249964,0,0);}
.me4_c00435{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);}
.m83_c00435{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);}
.m74_c00435{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_c00435{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);}
.maf_c00435{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);}
.m2e_c00435{transform:matrix(0.190298,-0.003235,0.004249,0.249964,0,0);-ms-transform:matrix(0.190298,-0.003235,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190298,-0.003235,0.004249,0.249964,0,0);}
.m37_c00435{transform:matrix(0.190492,-0.003810,0.004999,0.249950,0,0);-ms-transform:matrix(0.190492,-0.003810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190492,-0.003810,0.004999,0.249950,0,0);}
.m9f_c00435{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);}
.m1f_c00435{transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);-ms-transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191302,-0.003252,0.004249,0.249964,0,0);}
.m52_c00435{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);}
.m5e_c00435{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);}
.m5f_c00435{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);}
.mdb_c00435{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);}
.m9b_c00435{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m54_c00435{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);}
.m9d_c00435{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);}
.me0_c00435{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);}
.m40_c00435{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);}
.mc5_c00435{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);}
.m20_c00435{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);}
.me7_c00435{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);}
.md3_c00435{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);}
.m5b_c00435{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);}
.m53_c00435{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);}
.m72_c00435{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);}
.m62_c00435{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);}
.mf2_c00435{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);}
.m60_c00435{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);}
.m48_c00435{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);}
.mc8_c00435{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);}
.m58_c00435{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);}
.m21_c00435{transform:matrix(0.201511,-0.003426,0.004249,0.249964,0,0);-ms-transform:matrix(0.201511,-0.003426,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201511,-0.003426,0.004249,0.249964,0,0);}
.m6d_c00435{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);}
.m93_c00435{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);}
.m61_c00435{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);}
.m96_c00435{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);}
.m11_c00435{transform:matrix(0.203516,-0.003460,0.004249,0.249964,0,0);-ms-transform:matrix(0.203516,-0.003460,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203516,-0.003460,0.004249,0.249964,0,0);}
.mf5_c00435{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);}
.m4d_c00435{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);}
.m99_c00435{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);}
.mea_c00435{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);}
.m82_c00435{transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.205825,-0.003499,0.004249,0.249964,0,0);-ms-transform:matrix(0.205825,-0.003499,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205825,-0.003499,0.004249,0.249964,0,0);}
.mc1_c00435{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);}
.m2d_c00435{transform:matrix(0.207590,-0.003529,0.004249,0.249964,0,0);-ms-transform:matrix(0.207590,-0.003529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207590,-0.003529,0.004249,0.249964,0,0);}
.mcf_c00435{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);}
.m67_c00435{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);}
.m6c_c00435{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);}
.m98_c00435{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);}
.m7a_c00435{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);}
.m3c_c00435{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_c00435{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);}
.m65_c00435{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m68_c00435{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);}
.m42_c00435{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);}
.m56_c00435{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);}
.m2b_c00435{transform:matrix(0.212534,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212534,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212534,-0.003613,0.004249,0.249964,0,0);}
.md5_c00435{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);}
.m9a_c00435{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);}
.m86_c00435{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);}
.ma9_c00435{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.mdd_c00435{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);}
.m97_c00435{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);}
.m8c_c00435{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);}
.m4c_c00435{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);}
.mda_c00435{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{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);}
.mbd_c00435{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);}
.ma8_c00435{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);}
.m27_c00435{transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217564,-0.003699,0.004249,0.249964,0,0);}
.mca_c00435{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);}
.m79_c00435{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);}
.m46_c00435{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);}
.mad_c00435{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);}
.md4_c00435{transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);}
.m81_c00435{transform:matrix(0.221620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221620,0.000000,0.000000,0.250000,0,0);}
.m57_c00435{transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);}
.mb8_c00435{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.meb_c00435{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);}
.m95_c00435{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);}
.ma3_c00435{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);}
.mf1_c00435{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);}
.m70_c00435{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);}
.m22_c00435{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);}
.mec_c00435{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);}
.m73_c00435{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);}
.m9_c00435{transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);-ms-transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);}
.m29_c00435{transform:matrix(0.227902,-0.003874,0.004249,0.249964,0,0);-ms-transform:matrix(0.227902,-0.003874,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227902,-0.003874,0.004249,0.249964,0,0);}
.m2_c00435{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);}
.m63_c00435{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m77_c00435{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);}
.m10_c00435{transform:matrix(0.230077,-0.003911,0.004249,0.249964,0,0);-ms-transform:matrix(0.230077,-0.003911,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230077,-0.003911,0.004249,0.249964,0,0);}
.m8f_c00435{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);}
.m4f_c00435{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);}
.m7c_c00435{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);}
.mdf_c00435{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);}
.me5_c00435{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);}
.mcc_c00435{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);}
.m3b_c00435{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);}
.md0_c00435{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);}
.m64_c00435{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);}
.m2a_c00435{transform:matrix(0.236431,-0.004019,0.004249,0.249964,0,0);-ms-transform:matrix(0.236431,-0.004019,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236431,-0.004019,0.004249,0.249964,0,0);}
.m8a_c00435{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);}
.m38_c00435{transform:matrix(0.237238,-0.004745,0.004999,0.249950,0,0);-ms-transform:matrix(0.237238,-0.004745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237238,-0.004745,0.004999,0.249950,0,0);}
.m1d_c00435{transform:matrix(0.237851,-0.004043,0.004249,0.249964,0,0);-ms-transform:matrix(0.237851,-0.004043,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237851,-0.004043,0.004249,0.249964,0,0);}
.m80_c00435{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);}
.me1_c00435{transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);}
.mbb_c00435{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);}
.ma7_c00435{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m7f_c00435{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);}
.mb7_c00435{transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);}
.m9e_c00435{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);}
.mb4_c00435{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);-ms-transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);}
.m69_c00435{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);}
.mae_c00435{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m35_c00435{transform:matrix(0.255483,-0.004343,0.004249,0.249964,0,0);-ms-transform:matrix(0.255483,-0.004343,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255483,-0.004343,0.004249,0.249964,0,0);}
.m43_c00435{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.mab_c00435{transform:matrix(0.256240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256240,0.000000,0.000000,0.250000,0,0);}
.m6b_c00435{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m8b_c00435{transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263135,0.000000,0.000000,0.250000,0,0);}
.mf9_c00435{transform:matrix(0.263980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263980,0.000000,0.000000,0.250000,0,0);}
.m87_c00435{transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264715,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.264987,-0.005300,0.004999,0.249950,0,0);-ms-transform:matrix(0.264987,-0.005300,0.004999,0.249950,0,0);-webkit-transform:matrix(0.264987,-0.005300,0.004999,0.249950,0,0);}
.md_c00435{transform:matrix(0.266307,-0.004527,0.004249,0.249964,0,0);-ms-transform:matrix(0.266307,-0.004527,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266307,-0.004527,0.004249,0.249964,0,0);}
.m2f_c00435{transform:matrix(0.267246,-0.004543,0.004249,0.249964,0,0);-ms-transform:matrix(0.267246,-0.004543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267246,-0.004543,0.004249,0.249964,0,0);}
.mf0_c00435{transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.268596,-0.004566,0.004249,0.249964,0,0);-ms-transform:matrix(0.268596,-0.004566,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268596,-0.004566,0.004249,0.249964,0,0);}
.m34_c00435{transform:matrix(0.271581,-0.004617,0.004249,0.249964,0,0);-ms-transform:matrix(0.271581,-0.004617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271581,-0.004617,0.004249,0.249964,0,0);}
.m33_c00435{transform:matrix(0.272241,-0.004628,0.004249,0.249964,0,0);-ms-transform:matrix(0.272241,-0.004628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272241,-0.004628,0.004249,0.249964,0,0);}
.m75_c00435{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);}
.maa_c00435{transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);}
.m5a_c00435{transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273715,0.000000,0.000000,0.250000,0,0);}
.m89_c00435{transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274595,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.274815,-0.004672,0.004249,0.249964,0,0);-ms-transform:matrix(0.274815,-0.004672,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274815,-0.004672,0.004249,0.249964,0,0);}
.m94_c00435{transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);}
.mc2_c00435{transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282080,0.000000,0.000000,0.250000,0,0);}
.m6a_c00435{transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282535,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.286059,-0.004863,0.004249,0.249964,0,0);-ms-transform:matrix(0.286059,-0.004863,0.004249,0.249964,0,0);-webkit-transform:matrix(0.286059,-0.004863,0.004249,0.249964,0,0);}
.m32_c00435{transform:matrix(0.292703,-0.004976,0.004249,0.249964,0,0);-ms-transform:matrix(0.292703,-0.004976,0.004249,0.249964,0,0);-webkit-transform:matrix(0.292703,-0.004976,0.004249,0.249964,0,0);}
.m90_c00435{transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296420,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.297917,-0.005065,0.004249,0.249964,0,0);-ms-transform:matrix(0.297917,-0.005065,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297917,-0.005065,0.004249,0.249964,0,0);}
.m8e_c00435{transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303195,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.303836,-0.005165,0.004249,0.249964,0,0);-ms-transform:matrix(0.303836,-0.005165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303836,-0.005165,0.004249,0.249964,0,0);}
.mdc_c00435{transform:matrix(0.309025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309025,0.000000,0.000000,0.250000,0,0);}
.m51_c00435{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);}
.m3_c00435{transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311150,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{transform:matrix(0.311270,-0.005292,0.004249,0.249964,0,0);-ms-transform:matrix(0.311270,-0.005292,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311270,-0.005292,0.004249,0.249964,0,0);}
.m6f_c00435{transform:matrix(0.311465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311465,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.313765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313765,0.000000,0.000000,0.250000,0,0);}
.m5c_c00435{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);}
.mf6_c00435{transform:matrix(0.316645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316645,0.000000,0.000000,0.250000,0,0);}
.m8d_c00435{transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);}
.m88_c00435{transform:matrix(0.319470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319470,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.326708,-0.005554,0.004249,0.249964,0,0);-ms-transform:matrix(0.326708,-0.005554,0.004249,0.249964,0,0);-webkit-transform:matrix(0.326708,-0.005554,0.004249,0.249964,0,0);}
.m39_c00435{transform:matrix(0.331219,-0.006624,0.004999,0.249950,0,0);-ms-transform:matrix(0.331219,-0.006624,0.004999,0.249950,0,0);-webkit-transform:matrix(0.331219,-0.006624,0.004999,0.249950,0,0);}
.md1_c00435{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);}
.m15_c00435{transform:matrix(0.332857,-0.005659,0.004249,0.249964,0,0);-ms-transform:matrix(0.332857,-0.005659,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332857,-0.005659,0.004249,0.249964,0,0);}
.md2_c00435{transform:matrix(0.333555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333555,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{transform:matrix(0.339776,-0.005776,0.004249,0.249964,0,0);-ms-transform:matrix(0.339776,-0.005776,0.004249,0.249964,0,0);-webkit-transform:matrix(0.339776,-0.005776,0.004249,0.249964,0,0);}
.mac_c00435{transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345995,0.000000,0.000000,0.250000,0,0);}
.med_c00435{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);}
.m1_c00435{transform:matrix(0.350130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350130,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);}
.m85_c00435{transform:matrix(0.355190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355190,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.355674,-0.006046,0.004249,0.249964,0,0);-ms-transform:matrix(0.355674,-0.006046,0.004249,0.249964,0,0);-webkit-transform:matrix(0.355674,-0.006046,0.004249,0.249964,0,0);}
.mbe_c00435{transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358160,0.000000,0.000000,0.250000,0,0);}
.m78_c00435{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);}
.m6_c00435{transform:matrix(0.385174,-0.006548,0.004249,0.249964,0,0);-ms-transform:matrix(0.385174,-0.006548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.385174,-0.006548,0.004249,0.249964,0,0);}
.m26_c00435{transform:matrix(0.391653,-0.006658,0.004249,0.249964,0,0);-ms-transform:matrix(0.391653,-0.006658,0.004249,0.249964,0,0);-webkit-transform:matrix(0.391653,-0.006658,0.004249,0.249964,0,0);}
.md9_c00435{transform:matrix(0.423600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.427343,-0.007265,0.004249,0.249964,0,0);-ms-transform:matrix(0.427343,-0.007265,0.004249,0.249964,0,0);-webkit-transform:matrix(0.427343,-0.007265,0.004249,0.249964,0,0);}
.me_c00435{transform:matrix(0.435427,-0.007402,0.004249,0.249964,0,0);-ms-transform:matrix(0.435427,-0.007402,0.004249,0.249964,0,0);-webkit-transform:matrix(0.435427,-0.007402,0.004249,0.249964,0,0);}
.m25_c00435{transform:matrix(0.437612,-0.007439,0.004249,0.249964,0,0);-ms-transform:matrix(0.437612,-0.007439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.437612,-0.007439,0.004249,0.249964,0,0);}
.mb1_c00435{transform:matrix(0.445045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445045,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.462533,-0.007863,0.004249,0.249964,0,0);-ms-transform:matrix(0.462533,-0.007863,0.004249,0.249964,0,0);-webkit-transform:matrix(0.462533,-0.007863,0.004249,0.249964,0,0);}
.md7_c00435{transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475905,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.504897,-0.008583,0.004249,0.249964,0,0);-ms-transform:matrix(0.504897,-0.008583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.504897,-0.008583,0.004249,0.249964,0,0);}
.m18_c00435{transform:matrix(0.515171,-0.008758,0.004249,0.249964,0,0);-ms-transform:matrix(0.515171,-0.008758,0.004249,0.249964,0,0);-webkit-transform:matrix(0.515171,-0.008758,0.004249,0.249964,0,0);}
.mc9_c00435{transform:matrix(0.521295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521295,0.000000,0.000000,0.250000,0,0);}
.m92_c00435{transform:matrix(0.536300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536300,0.000000,0.000000,0.250000,0,0);}
.mce_c00435{transform:matrix(0.571815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571815,0.000000,0.000000,0.250000,0,0);}
.mee_c00435{transform:matrix(0.642735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642735,0.000000,0.000000,0.250000,0,0);}
.mcd_c00435{transform:matrix(0.658070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658070,0.000000,0.000000,0.250000,0,0);}
.md6_c00435{transform:matrix(0.778315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00435{transform:matrix(0.844620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844620,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;}
.fc0_c00435{color:transparent;}
.fs11_c00435{font-size:22.050000px;}
.fs12_c00435{font-size:42.000000px;}
.fs15_c00435{font-size:45.150000px;}
.fse_c00435{font-size:46.200000px;}
.fsd_c00435{font-size:47.250000px;}
.fs10_c00435{font-size:48.300000px;}
.fs9_c00435{font-size:49.350000px;}
.fs14_c00435{font-size:50.400000px;}
.fsa_c00435{font-size:51.450000px;}
.fsf_c00435{font-size:52.500000px;}
.fsb_c00435{font-size:53.550000px;}
.fsc_c00435{font-size:54.600000px;}
.fs13_c00435{font-size:55.650000px;}
.fs17_c00435{font-size:57.750000px;}
.fs16_c00435{font-size:58.800000px;}
.fs2_c00435{font-size:65.100000px;}
.fs1_c00435{font-size:66.150000px;}
.fs6_c00435{font-size:69.310013px;}
.fs7_c00435{font-size:70.360165px;}
.fs8_c00435{font-size:70.364069px;}
.fs4_c00435{font-size:71.410317px;}
.fs5_c00435{font-size:72.460468px;}
.fs0_c00435{font-size:88.200000px;}
.fs3_c00435{font-size:123.900000px;}
.y0_c00435{bottom:0.000000px;}
.y58_c00435{bottom:149.853000px;}
.y59_c00435{bottom:150.129000px;}
.y5a_c00435{bottom:150.874500px;}
.y55_c00435{bottom:150.897000px;}
.y5b_c00435{bottom:153.061500px;}
.y54_c00435{bottom:169.039500px;}
.y57_c00435{bottom:169.710000px;}
.y53_c00435{bottom:187.071000px;}
.y56_c00435{bottom:187.893000px;}
.y48_c00435{bottom:187.920000px;}
.y52_c00435{bottom:205.668000px;}
.y47_c00435{bottom:277.183500px;}
.y46_c00435{bottom:294.480000px;}
.y45_c00435{bottom:311.655000px;}
.y51_c00435{bottom:313.195500px;}
.y44_c00435{bottom:329.551500px;}
.y50_c00435{bottom:331.540500px;}
.y43_c00435{bottom:347.667000px;}
.y4f_c00435{bottom:349.428000px;}
.y42_c00435{bottom:365.440500px;}
.y40_c00435{bottom:367.198500px;}
.y3f_c00435{bottom:383.463000px;}
.y4d_c00435{bottom:385.171500px;}
.y41_c00435{bottom:400.542000px;}
.y3e_c00435{bottom:402.171000px;}
.y4c_c00435{bottom:403.536000px;}
.y3d_c00435{bottom:419.038500px;}
.y4b_c00435{bottom:421.614000px;}
.y4e_c00435{bottom:421.900500px;}
.y3c_c00435{bottom:437.983500px;}
.y4a_c00435{bottom:439.408500px;}
.y3b_c00435{bottom:454.935000px;}
.y49_c00435{bottom:457.530000px;}
.y36_c00435{bottom:508.146000px;}
.y37_c00435{bottom:508.625100px;}
.y38_c00435{bottom:509.434290px;}
.y39_c00435{bottom:510.087570px;}
.y3a_c00435{bottom:511.162050px;}
.y31_c00435{bottom:534.308335px;}
.y32_c00435{bottom:534.308619px;}
.y33_c00435{bottom:534.308868px;}
.y34_c00435{bottom:534.309387px;}
.y35_c00435{bottom:534.309735px;}
.y28_c00435{bottom:552.944511px;}
.y29_c00435{bottom:553.602663px;}
.y2a_c00435{bottom:554.490626px;}
.y2b_c00435{bottom:554.936634px;}
.y2c_c00435{bottom:556.273482px;}
.y2d_c00435{bottom:556.681275px;}
.y2e_c00435{bottom:557.469105px;}
.y2f_c00435{bottom:558.058786px;}
.y30_c00435{bottom:559.315490px;}
.y25_c00435{bottom:580.342307px;}
.y27_c00435{bottom:580.342403px;}
.y26_c00435{bottom:580.342663px;}
.y1d_c00435{bottom:599.931243px;}
.y1e_c00435{bottom:600.537505px;}
.y1f_c00435{bottom:601.189183px;}
.y20_c00435{bottom:601.685388px;}
.y21_c00435{bottom:602.889422px;}
.y22_c00435{bottom:603.522816px;}
.y23_c00435{bottom:603.931199px;}
.y24_c00435{bottom:604.954539px;}
.y1c_c00435{bottom:626.305152px;}
.y13_c00435{bottom:644.754481px;}
.y14_c00435{bottom:645.144356px;}
.y15_c00435{bottom:645.789686px;}
.y16_c00435{bottom:646.291830px;}
.y17_c00435{bottom:647.219532px;}
.y18_c00435{bottom:647.358561px;}
.y19_c00435{bottom:647.747538px;}
.y1a_c00435{bottom:648.300930px;}
.y1b_c00435{bottom:649.125571px;}
.y9_c00435{bottom:691.469427px;}
.ya_c00435{bottom:692.088424px;}
.yb_c00435{bottom:692.606653px;}
.yc_c00435{bottom:692.953875px;}
.yd_c00435{bottom:693.512970px;}
.ye_c00435{bottom:694.271170px;}
.yf_c00435{bottom:694.870592px;}
.y10_c00435{bottom:695.194841px;}
.y11_c00435{bottom:695.904622px;}
.y12_c00435{bottom:696.656520px;}
.y5_c00435{bottom:715.975500px;}
.y6_c00435{bottom:716.459796px;}
.y7_c00435{bottom:719.636152px;}
.y8_c00435{bottom:720.391998px;}
.y4_c00435{bottom:757.408500px;}
.y2_c00435{bottom:800.007000px;}
.y3_c00435{bottom:802.575000px;}
.y1_c00435{bottom:857.001000px;}
.h13_c00435{height:22.050000px;}
.h14_c00435{height:42.000000px;}
.h17_c00435{height:45.150000px;}
.h10_c00435{height:46.200000px;}
.hf_c00435{height:47.250000px;}
.h12_c00435{height:48.300000px;}
.hb_c00435{height:49.350000px;}
.h16_c00435{height:50.400000px;}
.hc_c00435{height:51.450000px;}
.h11_c00435{height:52.500000px;}
.hd_c00435{height:53.550000px;}
.he_c00435{height:54.600000px;}
.h15_c00435{height:55.650000px;}
.h19_c00435{height:57.750000px;}
.h18_c00435{height:58.800000px;}
.h4_c00435{height:65.100000px;}
.h3_c00435{height:66.150000px;}
.h8_c00435{height:69.310013px;}
.h9_c00435{height:70.360165px;}
.ha_c00435{height:70.364069px;}
.h6_c00435{height:71.410317px;}
.h7_c00435{height:72.460468px;}
.h2_c00435{height:88.200000px;}
.h5_c00435{height:123.900000px;}
.h0_c00435{height:1008.450000px;}
.h1_c00435{height:1008.750000px;}
.w1_c00435{width:689.250000px;}
.w0_c00435{width:689.550000px;}
.x0_c00435{left:0.000000px;}
.x54_c00435{left:140.670000px;}
.x50_c00435{left:145.260000px;}
.x1_c00435{left:147.690000px;}
.x3e_c00435{left:149.580000px;}
.x94_c00435{left:150.930000px;}
.x39_c00435{left:162.810000px;}
.x5a_c00435{left:164.430000px;}
.xa_c00435{left:166.776253px;}
.x5b_c00435{left:172.260000px;}
.x26_c00435{left:176.285244px;}
.x51_c00435{left:181.710000px;}
.x14_c00435{left:184.313745px;}
.x30_c00435{left:185.754000px;}
.x3f_c00435{left:187.380000px;}
.x55_c00435{left:188.460000px;}
.x34_c00435{left:191.160000px;}
.x4d_c00435{left:193.590000px;}
.x97_c00435{left:194.670000px;}
.x3a_c00435{left:196.290000px;}
.x40_c00435{left:205.470000px;}
.x47_c00435{left:207.090000px;}
.x15_c00435{left:210.336637px;}
.x3b_c00435{left:213.030000px;}
.xb_c00435{left:214.396992px;}
.x4c_c00435{left:215.730000px;}
.x56_c00435{left:219.510000px;}
.x1d_c00435{left:220.547685px;}
.x41_c00435{left:223.560000px;}
.x99_c00435{left:231.390000px;}
.x95_c00435{left:232.470000px;}
.x35_c00435{left:233.550000px;}
.x48_c00435{left:237.870000px;}
.x57_c00435{left:241.110000px;}
.x4_c00435{left:243.810000px;}
.x96_c00435{left:247.860000px;}
.x31_c00435{left:250.168500px;}
.x4e_c00435{left:252.450000px;}
.xc_c00435{left:254.236695px;}
.x27_c00435{left:257.700990px;}
.x1e_c00435{left:258.881685px;}
.x3c_c00435{left:261.630000px;}
.x5c_c00435{left:264.060000px;}
.x9a_c00435{left:265.950000px;}
.x36_c00435{left:268.920000px;}
.x46_c00435{left:272.700000px;}
.x42_c00435{left:275.670000px;}
.xd_c00435{left:280.928005px;}
.x32_c00435{left:282.832500px;}
.x5d_c00435{left:285.120000px;}
.x16_c00435{left:286.837738px;}
.x1f_c00435{left:288.070185px;}
.x3d_c00435{left:294.030000px;}
.x2_c00435{left:299.970000px;}
.x37_c00435{left:302.940000px;}
.x43_c00435{left:305.910000px;}
.x49_c00435{left:308.070000px;}
.x9b_c00435{left:313.200000px;}
.x6_c00435{left:314.671500px;}
.x58_c00435{left:319.680000px;}
.xe_c00435{left:323.965938px;}
.x1c_c00435{left:325.354542px;}
.x98_c00435{left:328.050000px;}
.x23_c00435{left:329.675433px;}
.x44_c00435{left:332.370000px;}
.x33_c00435{left:336.556500px;}
.x38_c00435{left:340.200000px;}
.x7_c00435{left:343.159500px;}
.x17_c00435{left:348.645829px;}
.x4a_c00435{left:349.920000px;}
.x28_c00435{left:351.542302px;}
.x45_c00435{left:354.780000px;}
.x18_c00435{left:357.883135px;}
.x20_c00435{left:358.895685px;}
.x5_c00435{left:361.260000px;}
.x5e_c00435{left:362.610000px;}
.x4f_c00435{left:365.040000px;}
.x52_c00435{left:366.930000px;}
.x5f_c00435{left:368.010000px;}
.x2d_c00435{left:370.178977px;}
.x29_c00435{left:372.970563px;}
.xf_c00435{left:382.246390px;}
.x19_c00435{left:383.765002px;}
.x59_c00435{left:386.100000px;}
.x53_c00435{left:388.530000px;}
.x2e_c00435{left:389.891664px;}
.x24_c00435{left:394.215073px;}
.x21_c00435{left:396.154185px;}
.x65_c00435{left:397.440000px;}
.x4b_c00435{left:399.330000px;}
.x7d_c00435{left:405.270000px;}
.x6e_c00435{left:407.700000px;}
.x7b_c00435{left:410.940000px;}
.x2a_c00435{left:414.459160px;}
.x25_c00435{left:416.088397px;}
.x74_c00435{left:417.150000px;}
.x1a_c00435{left:420.642252px;}
.x9e_c00435{left:421.740000px;}
.x6f_c00435{left:422.820000px;}
.x89_c00435{left:424.980000px;}
.x10_c00435{left:428.362527px;}
.x2f_c00435{left:431.747751px;}
.x90_c00435{left:439.020000px;}
.x66_c00435{left:443.880000px;}
.x2b_c00435{left:445.527615px;}
.x70_c00435{left:446.850000px;}
.x75_c00435{left:448.470000px;}
.x7c_c00435{left:450.630000px;}
.x8d_c00435{left:451.710000px;}
.x11_c00435{left:453.261210px;}
.x3_c00435{left:454.410000px;}
.x67_c00435{left:457.650000px;}
.x60_c00435{left:460.890000px;}
.x7e_c00435{left:463.320000px;}
.xa1_c00435{left:465.882000px;}
.x76_c00435{left:467.640000px;}
.x68_c00435{left:474.390000px;}
.x1b_c00435{left:475.593614px;}
.x9c_c00435{left:478.710000px;}
.x22_c00435{left:480.373185px;}
.x69_c00435{left:489.780000px;}
.x9f_c00435{left:496.260000px;}
.x61_c00435{left:497.880000px;}
.x8e_c00435{left:500.310000px;}
.x83_c00435{left:501.930000px;}
.xa2_c00435{left:505.099500px;}
.x12_c00435{left:507.810907px;}
.x2c_c00435{left:511.684371px;}
.x7f_c00435{left:513.270000px;}
.x84_c00435{left:515.430000px;}
.x77_c00435{left:519.480000px;}
.x6a_c00435{left:522.720000px;}
.x91_c00435{left:524.340000px;}
.x9d_c00435{left:525.960000px;}
.x8_c00435{left:530.004000px;}
.x71_c00435{left:535.680000px;}
.x6b_c00435{left:536.760000px;}
.x85_c00435{left:546.210000px;}
.x8a_c00435{left:548.640000px;}
.x80_c00435{left:550.800000px;}
.x93_c00435{left:552.690000px;}
.x72_c00435{left:554.580000px;}
.x86_c00435{left:558.630000px;}
.x78_c00435{left:561.060000px;}
.x62_c00435{left:563.760000px;}
.x13_c00435{left:565.632334px;}
.x8b_c00435{left:570.240000px;}
.x9_c00435{left:574.465500px;}
.x92_c00435{left:579.690000px;}
.x81_c00435{left:581.850000px;}
.x87_c00435{left:585.900000px;}
.x63_c00435{left:588.870000px;}
.x8c_c00435{left:592.650000px;}
.x6c_c00435{left:594.000000px;}
.x79_c00435{left:597.510000px;}
.x82_c00435{left:599.940000px;}
.x73_c00435{left:603.990000px;}
.x88_c00435{left:606.690000px;}
.xa0_c00435{left:610.200000px;}
.x64_c00435{left:612.090000px;}
.x7a_c00435{left:615.600000px;}
.xa3_c00435{left:620.224500px;}
.x6d_c00435{left:621.540000px;}
.x8f_c00435{left:623.160000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.fs11_c00435{font-size:19.600000pt;}
.fs12_c00435{font-size:37.333333pt;}
.fs15_c00435{font-size:40.133333pt;}
.fse_c00435{font-size:41.066667pt;}
.fsd_c00435{font-size:42.000000pt;}
.fs10_c00435{font-size:42.933333pt;}
.fs9_c00435{font-size:43.866667pt;}
.fs14_c00435{font-size:44.800000pt;}
.fsa_c00435{font-size:45.733333pt;}
.fsf_c00435{font-size:46.666667pt;}
.fsb_c00435{font-size:47.600000pt;}
.fsc_c00435{font-size:48.533333pt;}
.fs13_c00435{font-size:49.466667pt;}
.fs17_c00435{font-size:51.333333pt;}
.fs16_c00435{font-size:52.266667pt;}
.fs2_c00435{font-size:57.866667pt;}
.fs1_c00435{font-size:58.800000pt;}
.fs6_c00435{font-size:61.608901pt;}
.fs7_c00435{font-size:62.542369pt;}
.fs8_c00435{font-size:62.545839pt;}
.fs4_c00435{font-size:63.475837pt;}
.fs5_c00435{font-size:64.409305pt;}
.fs0_c00435{font-size:78.400000pt;}
.fs3_c00435{font-size:110.133333pt;}
.y0_c00435{bottom:0.000000pt;}
.y58_c00435{bottom:133.202667pt;}
.y59_c00435{bottom:133.448000pt;}
.y5a_c00435{bottom:134.110667pt;}
.y55_c00435{bottom:134.130667pt;}
.y5b_c00435{bottom:136.054667pt;}
.y54_c00435{bottom:150.257333pt;}
.y57_c00435{bottom:150.853333pt;}
.y53_c00435{bottom:166.285333pt;}
.y56_c00435{bottom:167.016000pt;}
.y48_c00435{bottom:167.040000pt;}
.y52_c00435{bottom:182.816000pt;}
.y47_c00435{bottom:246.385333pt;}
.y46_c00435{bottom:261.760000pt;}
.y45_c00435{bottom:277.026667pt;}
.y51_c00435{bottom:278.396000pt;}
.y44_c00435{bottom:292.934667pt;}
.y50_c00435{bottom:294.702667pt;}
.y43_c00435{bottom:309.037333pt;}
.y4f_c00435{bottom:310.602667pt;}
.y42_c00435{bottom:324.836000pt;}
.y40_c00435{bottom:326.398667pt;}
.y3f_c00435{bottom:340.856000pt;}
.y4d_c00435{bottom:342.374667pt;}
.y41_c00435{bottom:356.037333pt;}
.y3e_c00435{bottom:357.485333pt;}
.y4c_c00435{bottom:358.698667pt;}
.y3d_c00435{bottom:372.478667pt;}
.y4b_c00435{bottom:374.768000pt;}
.y4e_c00435{bottom:375.022667pt;}
.y3c_c00435{bottom:389.318667pt;}
.y4a_c00435{bottom:390.585333pt;}
.y3b_c00435{bottom:404.386667pt;}
.y49_c00435{bottom:406.693333pt;}
.y36_c00435{bottom:451.685333pt;}
.y37_c00435{bottom:452.111200pt;}
.y38_c00435{bottom:452.830480pt;}
.y39_c00435{bottom:453.411173pt;}
.y3a_c00435{bottom:454.366267pt;}
.y31_c00435{bottom:474.940743pt;}
.y32_c00435{bottom:474.940995pt;}
.y33_c00435{bottom:474.941216pt;}
.y34_c00435{bottom:474.941677pt;}
.y35_c00435{bottom:474.941987pt;}
.y28_c00435{bottom:491.506232pt;}
.y29_c00435{bottom:492.091256pt;}
.y2a_c00435{bottom:492.880556pt;}
.y2b_c00435{bottom:493.277008pt;}
.y2c_c00435{bottom:494.465317pt;}
.y2d_c00435{bottom:494.827800pt;}
.y2e_c00435{bottom:495.528093pt;}
.y2f_c00435{bottom:496.052255pt;}
.y30_c00435{bottom:497.169324pt;}
.y25_c00435{bottom:515.859828pt;}
.y27_c00435{bottom:515.859913pt;}
.y26_c00435{bottom:515.860145pt;}
.y1d_c00435{bottom:533.272216pt;}
.y1e_c00435{bottom:533.811116pt;}
.y1f_c00435{bottom:534.390385pt;}
.y20_c00435{bottom:534.831456pt;}
.y21_c00435{bottom:535.901708pt;}
.y22_c00435{bottom:536.464725pt;}
.y23_c00435{bottom:536.827732pt;}
.y24_c00435{bottom:537.737368pt;}
.y1c_c00435{bottom:556.715691pt;}
.y13_c00435{bottom:573.115095pt;}
.y14_c00435{bottom:573.461649pt;}
.y15_c00435{bottom:574.035276pt;}
.y16_c00435{bottom:574.481627pt;}
.y17_c00435{bottom:575.306251pt;}
.y18_c00435{bottom:575.429832pt;}
.y19_c00435{bottom:575.775589pt;}
.y1a_c00435{bottom:576.267493pt;}
.y1b_c00435{bottom:577.000508pt;}
.y9_c00435{bottom:614.639491pt;}
.ya_c00435{bottom:615.189711pt;}
.yb_c00435{bottom:615.650359pt;}
.yc_c00435{bottom:615.959000pt;}
.yd_c00435{bottom:616.455973pt;}
.ye_c00435{bottom:617.129929pt;}
.yf_c00435{bottom:617.662748pt;}
.y10_c00435{bottom:617.950969pt;}
.y11_c00435{bottom:618.581887pt;}
.y12_c00435{bottom:619.250240pt;}
.y5_c00435{bottom:636.422667pt;}
.y6_c00435{bottom:636.853152pt;}
.y7_c00435{bottom:639.676580pt;}
.y8_c00435{bottom:640.348443pt;}
.y4_c00435{bottom:673.252000pt;}
.y2_c00435{bottom:711.117333pt;}
.y3_c00435{bottom:713.400000pt;}
.y1_c00435{bottom:761.778667pt;}
.h13_c00435{height:19.600000pt;}
.h14_c00435{height:37.333333pt;}
.h17_c00435{height:40.133333pt;}
.h10_c00435{height:41.066667pt;}
.hf_c00435{height:42.000000pt;}
.h12_c00435{height:42.933333pt;}
.hb_c00435{height:43.866667pt;}
.h16_c00435{height:44.800000pt;}
.hc_c00435{height:45.733333pt;}
.h11_c00435{height:46.666667pt;}
.hd_c00435{height:47.600000pt;}
.he_c00435{height:48.533333pt;}
.h15_c00435{height:49.466667pt;}
.h19_c00435{height:51.333333pt;}
.h18_c00435{height:52.266667pt;}
.h4_c00435{height:57.866667pt;}
.h3_c00435{height:58.800000pt;}
.h8_c00435{height:61.608901pt;}
.h9_c00435{height:62.542369pt;}
.ha_c00435{height:62.545839pt;}
.h6_c00435{height:63.475837pt;}
.h7_c00435{height:64.409305pt;}
.h2_c00435{height:78.400000pt;}
.h5_c00435{height:110.133333pt;}
.h0_c00435{height:896.400000pt;}
.h1_c00435{height:896.666667pt;}
.w1_c00435{width:612.666667pt;}
.w0_c00435{width:612.933333pt;}
.x0_c00435{left:0.000000pt;}
.x54_c00435{left:125.040000pt;}
.x50_c00435{left:129.120000pt;}
.x1_c00435{left:131.280000pt;}
.x3e_c00435{left:132.960000pt;}
.x94_c00435{left:134.160000pt;}
.x39_c00435{left:144.720000pt;}
.x5a_c00435{left:146.160000pt;}
.xa_c00435{left:148.245559pt;}
.x5b_c00435{left:153.120000pt;}
.x26_c00435{left:156.697995pt;}
.x51_c00435{left:161.520000pt;}
.x14_c00435{left:163.834440pt;}
.x30_c00435{left:165.114667pt;}
.x3f_c00435{left:166.560000pt;}
.x55_c00435{left:167.520000pt;}
.x34_c00435{left:169.920000pt;}
.x4d_c00435{left:172.080000pt;}
.x97_c00435{left:173.040000pt;}
.x3a_c00435{left:174.480000pt;}
.x40_c00435{left:182.640000pt;}
.x47_c00435{left:184.080000pt;}
.x15_c00435{left:186.965900pt;}
.x3b_c00435{left:189.360000pt;}
.xb_c00435{left:190.575104pt;}
.x4c_c00435{left:191.760000pt;}
.x56_c00435{left:195.120000pt;}
.x1d_c00435{left:196.042387pt;}
.x41_c00435{left:198.720000pt;}
.x99_c00435{left:205.680000pt;}
.x95_c00435{left:206.640000pt;}
.x35_c00435{left:207.600000pt;}
.x48_c00435{left:211.440000pt;}
.x57_c00435{left:214.320000pt;}
.x4_c00435{left:216.720000pt;}
.x96_c00435{left:220.320000pt;}
.x31_c00435{left:222.372000pt;}
.x4e_c00435{left:224.400000pt;}
.xc_c00435{left:225.988173pt;}
.x27_c00435{left:229.067547pt;}
.x1e_c00435{left:230.117053pt;}
.x3c_c00435{left:232.560000pt;}
.x5c_c00435{left:234.720000pt;}
.x9a_c00435{left:236.400000pt;}
.x36_c00435{left:239.040000pt;}
.x46_c00435{left:242.400000pt;}
.x42_c00435{left:245.040000pt;}
.xd_c00435{left:249.713783pt;}
.x32_c00435{left:251.406667pt;}
.x5d_c00435{left:253.440000pt;}
.x16_c00435{left:254.966879pt;}
.x1f_c00435{left:256.062387pt;}
.x3d_c00435{left:261.360000pt;}
.x2_c00435{left:266.640000pt;}
.x37_c00435{left:269.280000pt;}
.x43_c00435{left:271.920000pt;}
.x49_c00435{left:273.840000pt;}
.x9b_c00435{left:278.400000pt;}
.x6_c00435{left:279.708000pt;}
.x58_c00435{left:284.160000pt;}
.xe_c00435{left:287.969723pt;}
.x1c_c00435{left:289.204037pt;}
.x98_c00435{left:291.600000pt;}
.x23_c00435{left:293.044829pt;}
.x44_c00435{left:295.440000pt;}
.x33_c00435{left:299.161333pt;}
.x38_c00435{left:302.400000pt;}
.x7_c00435{left:305.030667pt;}
.x17_c00435{left:309.907404pt;}
.x4a_c00435{left:311.040000pt;}
.x28_c00435{left:312.482047pt;}
.x45_c00435{left:315.360000pt;}
.x18_c00435{left:318.118343pt;}
.x20_c00435{left:319.018387pt;}
.x5_c00435{left:321.120000pt;}
.x5e_c00435{left:322.320000pt;}
.x4f_c00435{left:324.480000pt;}
.x52_c00435{left:326.160000pt;}
.x5f_c00435{left:327.120000pt;}
.x2d_c00435{left:329.047980pt;}
.x29_c00435{left:331.529389pt;}
.xf_c00435{left:339.774569pt;}
.x19_c00435{left:341.124447pt;}
.x59_c00435{left:343.200000pt;}
.x53_c00435{left:345.360000pt;}
.x2e_c00435{left:346.570368pt;}
.x24_c00435{left:350.413399pt;}
.x21_c00435{left:352.137053pt;}
.x65_c00435{left:353.280000pt;}
.x4b_c00435{left:354.960000pt;}
.x7d_c00435{left:360.240000pt;}
.x6e_c00435{left:362.400000pt;}
.x7b_c00435{left:365.280000pt;}
.x2a_c00435{left:368.408143pt;}
.x25_c00435{left:369.856353pt;}
.x74_c00435{left:370.800000pt;}
.x1a_c00435{left:373.904224pt;}
.x9e_c00435{left:374.880000pt;}
.x6f_c00435{left:375.840000pt;}
.x89_c00435{left:377.760000pt;}
.x10_c00435{left:380.766691pt;}
.x2f_c00435{left:383.775779pt;}
.x90_c00435{left:390.240000pt;}
.x66_c00435{left:394.560000pt;}
.x2b_c00435{left:396.024547pt;}
.x70_c00435{left:397.200000pt;}
.x75_c00435{left:398.640000pt;}
.x7c_c00435{left:400.560000pt;}
.x8d_c00435{left:401.520000pt;}
.x11_c00435{left:402.898853pt;}
.x3_c00435{left:403.920000pt;}
.x67_c00435{left:406.800000pt;}
.x60_c00435{left:409.680000pt;}
.x7e_c00435{left:411.840000pt;}
.xa1_c00435{left:414.117333pt;}
.x76_c00435{left:415.680000pt;}
.x68_c00435{left:421.680000pt;}
.x1b_c00435{left:422.749879pt;}
.x9c_c00435{left:425.520000pt;}
.x22_c00435{left:426.998387pt;}
.x69_c00435{left:435.360000pt;}
.x9f_c00435{left:441.120000pt;}
.x61_c00435{left:442.560000pt;}
.x8e_c00435{left:444.720000pt;}
.x83_c00435{left:446.160000pt;}
.xa2_c00435{left:448.977333pt;}
.x12_c00435{left:451.387473pt;}
.x2c_c00435{left:454.830552pt;}
.x7f_c00435{left:456.240000pt;}
.x84_c00435{left:458.160000pt;}
.x77_c00435{left:461.760000pt;}
.x6a_c00435{left:464.640000pt;}
.x91_c00435{left:466.080000pt;}
.x9d_c00435{left:467.520000pt;}
.x8_c00435{left:471.114667pt;}
.x71_c00435{left:476.160000pt;}
.x6b_c00435{left:477.120000pt;}
.x85_c00435{left:485.520000pt;}
.x8a_c00435{left:487.680000pt;}
.x80_c00435{left:489.600000pt;}
.x93_c00435{left:491.280000pt;}
.x72_c00435{left:492.960000pt;}
.x86_c00435{left:496.560000pt;}
.x78_c00435{left:498.720000pt;}
.x62_c00435{left:501.120000pt;}
.x13_c00435{left:502.784297pt;}
.x8b_c00435{left:506.880000pt;}
.x9_c00435{left:510.636000pt;}
.x92_c00435{left:515.280000pt;}
.x81_c00435{left:517.200000pt;}
.x87_c00435{left:520.800000pt;}
.x63_c00435{left:523.440000pt;}
.x8c_c00435{left:526.800000pt;}
.x6c_c00435{left:528.000000pt;}
.x79_c00435{left:531.120000pt;}
.x82_c00435{left:533.280000pt;}
.x73_c00435{left:536.880000pt;}
.x88_c00435{left:539.280000pt;}
.xa0_c00435{left:542.400000pt;}
.x64_c00435{left:544.080000pt;}
.x7a_c00435{left:547.200000pt;}
.xa3_c00435{left:551.310667pt;}
.x6d_c00435{left:552.480000pt;}
.x8f_c00435{left:553.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_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;}
.mf3_c00436{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);}
.m72_c00436{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);}
.mc7_c00436{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m13a_c00436{transform:matrix(0.032585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032585,0.000000,0.000000,0.250000,0,0);}
.mb2_c00436{transform:matrix(0.080485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080485,0.000000,0.000000,0.250000,0,0);}
.m134_c00436{transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083340,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);}
.m3e_c00436{transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);}
.md5_c00436{transform:matrix(0.096270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096270,0.000000,0.000000,0.250000,0,0);}
.mf6_c00436{transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.106520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106520,0.000000,0.000000,0.250000,0,0);}
.mbb_c00436{transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108060,0.000000,0.000000,0.250000,0,0);}
.m5c_c00436{transform:matrix(0.135165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135165,0.000000,0.000000,0.250000,0,0);}
.m114_c00436{transform:matrix(0.141365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141365,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.me_c00436{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);}
.mdb_c00436{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);}
.m89_c00436{transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);}
.me6_c00436{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);}
.m15_c00436{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);}
.mb_c00436{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);}
.mf0_c00436{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);}
.mad_c00436{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);}
.m6b_c00436{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);}
.md1_c00436{transform:matrix(0.163290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163290,0.000000,0.000000,0.250000,0,0);}
.m51_c00436{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);}
.mef_c00436{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);}
.me1_c00436{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);}
.m82_c00436{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);}
.m19_c00436{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.m93_c00436{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);}
.mab_c00436{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);}
.m59_c00436{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);}
.me0_c00436{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);}
.m141_c00436{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);}
.m5d_c00436{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);}
.mc2_c00436{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);}
.mc5_c00436{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);}
.m145_c00436{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{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);}
.me2_c00436{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00436{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);}
.m17_c00436{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);}
.m14a_c00436{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);}
.m144_c00436{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);}
.m48_c00436{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);}
.mc3_c00436{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);}
.m4f_c00436{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);}
.mda_c00436{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);}
.m44_c00436{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);}
.maa_c00436{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);}
.m12_c00436{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);}
.mde_c00436{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);}
.m98_c00436{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);}
.m14f_c00436{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);}
.mce_c00436{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);}
.mdc_c00436{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);}
.m100_c00436{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);}
.m4d_c00436{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);}
.m9a_c00436{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);}
.mdf_c00436{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);}
.mf_c00436{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);}
.maf_c00436{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_c00436{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);}
.me4_c00436{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);}
.m105_c00436{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);}
.m88_c00436{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);}
.m11c_c00436{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);}
.m5f_c00436{transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183380,0.000000,0.000000,0.250000,0,0);}
.mfb_c00436{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);}
.m109_c00436{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);}
.mc1_c00436{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);}
.m130_c00436{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);}
.mee_c00436{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);}
.md7_c00436{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);}
.m2a_c00436{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);}
.m7_c00436{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);}
.m16_c00436{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);}
.me9_c00436{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);}
.m5_c00436{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);}
.m76_c00436{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);}
.m4c_c00436{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_c00436{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);}
.m85_c00436{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);}
.m73_c00436{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);}
.m146_c00436{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);}
.mae_c00436{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);}
.md6_c00436{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);}
.ma_c00436{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);}
.mcd_c00436{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);}
.med_c00436{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);}
.m7d_c00436{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);}
.md8_c00436{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);}
.m11f_c00436{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);}
.mf9_c00436{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);}
.m2b_c00436{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);}
.m66_c00436{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);}
.mc6_c00436{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);}
.m1e_c00436{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);}
.m20_c00436{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);}
.m10f_c00436{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);}
.m49_c00436{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);}
.mcc_c00436{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);}
.m60_c00436{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);}
.m1d_c00436{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);}
.m2e_c00436{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);}
.m123_c00436{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);}
.m14d_c00436{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);}
.mc8_c00436{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);}
.m6c_c00436{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);}
.m45_c00436{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);}
.me3_c00436{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);}
.m1c_c00436{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);}
.md0_c00436{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);}
.m35_c00436{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);}
.m107_c00436{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);}
.m86_c00436{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);}
.m25_c00436{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);}
.mbe_c00436{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);}
.m5a_c00436{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);}
.m103_c00436{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);}
.m108_c00436{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);}
.m5b_c00436{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);}
.m140_c00436{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);}
.m136_c00436{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);}
.mc_c00436{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);}
.mdd_c00436{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);}
.m57_c00436{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);}
.m148_c00436{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);}
.mb9_c00436{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);}
.m52_c00436{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);}
.m3a_c00436{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);}
.m143_c00436{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);}
.ma6_c00436{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);}
.m84_c00436{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);}
.m8f_c00436{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);}
.mfe_c00436{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);}
.m5e_c00436{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);}
.m50_c00436{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);}
.m142_c00436{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);}
.m139_c00436{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);}
.m8a_c00436{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);}
.m13_c00436{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);}
.m77_c00436{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);}
.m121_c00436{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);}
.m47_c00436{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);}
.mb0_c00436{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);}
.m94_c00436{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);}
.mfd_c00436{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);}
.m12a_c00436{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);}
.m4a_c00436{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);}
.me7_c00436{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);}
.m2c_c00436{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);}
.mb4_c00436{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);}
.mb8_c00436{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);}
.m4e_c00436{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);}
.m11_c00436{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);}
.mfa_c00436{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);}
.mc4_c00436{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);}
.m6_c00436{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);}
.mfc_c00436{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);}
.m62_c00436{transform:matrix(0.206485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206485,0.000000,0.000000,0.250000,0,0);}
.mbd_c00436{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);}
.m28_c00436{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);}
.meb_c00436{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);}
.m33_c00436{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);}
.ma3_c00436{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);}
.m75_c00436{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);}
.m96_c00436{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);}
.m18_c00436{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);}
.m8e_c00436{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);}
.m39_c00436{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);}
.m133_c00436{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);}
.mf4_c00436{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);}
.m9b_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);}
.m37_c00436{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);}
.m56_c00436{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);}
.m119_c00436{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);}
.m22_c00436{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);}
.md2_c00436{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);}
.m125_c00436{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.md4_c00436{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);}
.m7a_c00436{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);}
.m29_c00436{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);}
.mf8_c00436{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);}
.ma7_c00436{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);}
.mff_c00436{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);}
.mea_c00436{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);}
.m6d_c00436{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);}
.m9d_c00436{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);}
.m41_c00436{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);}
.m81_c00436{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);}
.ma1_c00436{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);}
.m12c_c00436{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);}
.m95_c00436{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);}
.m55_c00436{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);}
.m36_c00436{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);}
.m126_c00436{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);}
.mf5_c00436{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);}
.m147_c00436{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);}
.m14e_c00436{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);}
.mbc_c00436{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);}
.m124_c00436{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);}
.mf1_c00436{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);}
.m23_c00436{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);}
.mec_c00436{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);}
.mb7_c00436{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);}
.m63_c00436{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);}
.m78_c00436{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);}
.me8_c00436{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);}
.ma4_c00436{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);}
.m2_c00436{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m113_c00436{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);}
.m10e_c00436{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);}
.m54_c00436{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);}
.m8_c00436{transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);}
.m138_c00436{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);}
.m13e_c00436{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);}
.m1_c00436{transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);}
.m7f_c00436{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);}
.m69_c00436{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);}
.m14c_c00436{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);}
.m74_c00436{transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);}
.m132_c00436{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);}
.mb1_c00436{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);}
.m43_c00436{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);}
.me5_c00436{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);}
.m10b_c00436{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);}
.m116_c00436{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);}
.m10a_c00436{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);}
.m58_c00436{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);}
.m13c_c00436{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);}
.m4b_c00436{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);}
.m14b_c00436{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);}
.m128_c00436{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.225180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225180,0.000000,0.000000,0.250000,0,0);}
.m12b_c00436{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);}
.mb5_c00436{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);}
.m6f_c00436{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m61_c00436{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);}
.m97_c00436{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);}
.m3c_c00436{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);}
.m1a_c00436{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);}
.m70_c00436{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);}
.m7b_c00436{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m83_c00436{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);}
.mb6_c00436{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);}
.m10_c00436{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);}
.m38_c00436{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);}
.m91_c00436{transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);}
.m13f_c00436{transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);}
.m111_c00436{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);}
.m11d_c00436{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.m12f_c00436{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);}
.m14_c00436{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);}
.m135_c00436{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);}
.m87_c00436{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);}
.m8d_c00436{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);}
.m99_c00436{transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);}
.m101_c00436{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);}
.m1b_c00436{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);}
.m13d_c00436{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);}
.m65_c00436{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);}
.ma9_c00436{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);}
.md_c00436{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.m26_c00436{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.239630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239630,0.000000,0.000000,0.250000,0,0);}
.m102_c00436{transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239815,0.000000,0.000000,0.250000,0,0);}
.m7c_c00436{transform:matrix(0.239920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239920,0.000000,0.000000,0.250000,0,0);}
.m68_c00436{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);}
.mf2_c00436{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);}
.m118_c00436{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.md9_c00436{transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);}
.m11a_c00436{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);}
.m90_c00436{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.mb3_c00436{transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);}
.m10d_c00436{transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);}
.m104_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);}
.m46_c00436{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);}
.m3d_c00436{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);}
.m1f_c00436{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);}
.m112_c00436{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);}
.m53_c00436{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);}
.m67_c00436{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);}
.m71_c00436{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);}
.m4_c00436{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m11e_c00436{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);}
.m9e_c00436{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);}
.m24_c00436{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.ma5_c00436{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m8c_c00436{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);}
.m131_c00436{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);}
.m13b_c00436{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m150_c00436{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m6e_c00436{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);}
.m9c_c00436{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{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);}
.m31_c00436{transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);}
.m137_c00436{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);}
.m12d_c00436{transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);}
.ma2_c00436{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);}
.mca_c00436{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);}
.mc0_c00436{transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);}
.m129_c00436{transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m110_c00436{transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);}
.m115_c00436{transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265085,0.000000,0.000000,0.250000,0,0);}
.mf7_c00436{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m11b_c00436{transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);}
.m79_c00436{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m106_c00436{transform:matrix(0.269930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269930,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);}
.m12e_c00436{transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);}
.m117_c00436{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);}
.m7e_c00436{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.ma0_c00436{transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321920,0.000000,0.000000,0.250000,0,0);}
.mc9_c00436{transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327730,0.000000,0.000000,0.250000,0,0);}
.m10c_c00436{transform:matrix(0.329575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329575,0.000000,0.000000,0.250000,0,0);}
.m127_c00436{transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330185,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337775,0.000000,0.000000,0.250000,0,0);}
.m149_c00436{transform:matrix(0.350405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350405,0.000000,0.000000,0.250000,0,0);}
.m8b_c00436{transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356505,0.000000,0.000000,0.250000,0,0);}
.m9f_c00436{transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);}
.m120_c00436{transform:matrix(0.361910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361910,0.000000,0.000000,0.250000,0,0);}
.m122_c00436{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.mba_c00436{transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{transform:matrix(0.393700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393700,0.000000,0.000000,0.250000,0,0);}
.ma8_c00436{transform:matrix(0.397970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397970,0.000000,0.000000,0.250000,0,0);}
.m80_c00436{transform:matrix(0.426820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426820,0.000000,0.000000,0.250000,0,0);}
.mbf_c00436{transform:matrix(0.466710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466710,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470705,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.476115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476115,0.000000,0.000000,0.250000,0,0);}
.m64_c00436{transform:matrix(0.533850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533850,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.551995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551995,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;}
.fsd_c00436{font-size:43.050000px;}
.fs11_c00436{font-size:47.250000px;}
.fs14_c00436{font-size:48.300000px;}
.fsc_c00436{font-size:49.350000px;}
.fsa_c00436{font-size:50.400000px;}
.fs13_c00436{font-size:51.450000px;}
.fsf_c00436{font-size:52.500000px;}
.fs10_c00436{font-size:53.550000px;}
.fs12_c00436{font-size:54.600000px;}
.fse_c00436{font-size:57.750000px;}
.fsb_c00436{font-size:58.800000px;}
.fs6_c00436{font-size:65.100000px;}
.fs9_c00436{font-size:66.150000px;}
.fs7_c00436{font-size:67.200000px;}
.fs5_c00436{font-size:68.250000px;}
.fs8_c00436{font-size:69.300000px;}
.fs4_c00436{font-size:70.350000px;}
.fs3_c00436{font-size:71.400000px;}
.fs1_c00436{font-size:72.450000px;}
.fs2_c00436{font-size:74.550000px;}
.fs0_c00436{font-size:87.150000px;}
.y0_c00436{bottom:0.000000px;}
.y30_c00436{bottom:147.150000px;}
.y2f_c00436{bottom:164.928000px;}
.y2c_c00436{bottom:165.360000px;}
.y2b_c00436{bottom:182.550000px;}
.y2e_c00436{bottom:182.691000px;}
.y2d_c00436{bottom:200.161500px;}
.y2a_c00436{bottom:201.126000px;}
.y1a_c00436{bottom:201.277500px;}
.y29_c00436{bottom:217.881000px;}
.y1b_c00436{bottom:218.737500px;}
.y19_c00436{bottom:218.808000px;}
.y28_c00436{bottom:235.837500px;}
.y18_c00436{bottom:236.436000px;}
.y27_c00436{bottom:253.530000px;}
.y25_c00436{bottom:254.370000px;}
.y26_c00436{bottom:271.512000px;}
.y24_c00436{bottom:272.209500px;}
.y23_c00436{bottom:289.320000px;}
.y17_c00436{bottom:289.866000px;}
.y22_c00436{bottom:307.800000px;}
.y16_c00436{bottom:308.340000px;}
.y21_c00436{bottom:325.428000px;}
.y15_c00436{bottom:326.188500px;}
.y20_c00436{bottom:343.170000px;}
.y14_c00436{bottom:344.334000px;}
.y1f_c00436{bottom:361.261500px;}
.y13_c00436{bottom:362.340000px;}
.y1e_c00436{bottom:379.762500px;}
.y12_c00436{bottom:380.160000px;}
.y1d_c00436{bottom:397.275000px;}
.y11_c00436{bottom:398.097000px;}
.y1c_c00436{bottom:415.413000px;}
.y10_c00436{bottom:416.190000px;}
.yf_c00436{bottom:434.700000px;}
.ye_c00436{bottom:452.250000px;}
.yd_c00436{bottom:501.165000px;}
.yc_c00436{bottom:523.990500px;}
.yb_c00436{bottom:546.655500px;}
.ya_c00436{bottom:569.233500px;}
.y9_c00436{bottom:592.026000px;}
.y8_c00436{bottom:659.386500px;}
.y7_c00436{bottom:682.288500px;}
.y6_c00436{bottom:705.277500px;}
.y5_c00436{bottom:728.011500px;}
.y4_c00436{bottom:751.315500px;}
.y3_c00436{bottom:774.289500px;}
.y2_c00436{bottom:796.489500px;}
.y1_c00436{bottom:863.758500px;}
.hf_c00436{height:43.050000px;}
.h13_c00436{height:47.250000px;}
.h16_c00436{height:48.300000px;}
.he_c00436{height:49.350000px;}
.hc_c00436{height:50.400000px;}
.h15_c00436{height:51.450000px;}
.h11_c00436{height:52.500000px;}
.h12_c00436{height:53.550000px;}
.h14_c00436{height:54.600000px;}
.h10_c00436{height:57.750000px;}
.hd_c00436{height:58.800000px;}
.h8_c00436{height:65.100000px;}
.hb_c00436{height:66.150000px;}
.h9_c00436{height:67.200000px;}
.h7_c00436{height:68.250000px;}
.ha_c00436{height:69.300000px;}
.h6_c00436{height:70.350000px;}
.h5_c00436{height:71.400000px;}
.h3_c00436{height:72.450000px;}
.h4_c00436{height:74.550000px;}
.h2_c00436{height:87.150000px;}
.h1_c00436{height:1005.000000px;}
.h0_c00436{height:1005.150000px;}
.w0_c00436{width:715.200000px;}
.w1_c00436{width:715.500000px;}
.x0_c00436{left:0.000000px;}
.x56_c00436{left:95.310000px;}
.x4f_c00436{left:96.660000px;}
.x71_c00436{left:97.740000px;}
.x4a_c00436{left:108.810000px;}
.x65_c00436{left:116.640000px;}
.x72_c00436{left:121.230000px;}
.x5e_c00436{left:122.850000px;}
.x18_c00436{left:129.060000px;}
.x9_c00436{left:130.680000px;}
.x37_c00436{left:132.570000px;}
.x5b_c00436{left:140.130000px;}
.x6e_c00436{left:142.560000px;}
.x70_c00436{left:144.990000px;}
.x11_c00436{left:147.420000px;}
.x50_c00436{left:148.500000px;}
.x99_c00436{left:149.580000px;}
.x57_c00436{left:151.200000px;}
.x66_c00436{left:152.550000px;}
.x25_c00436{left:157.410000px;}
.x45_c00436{left:162.810000px;}
.x62_c00436{left:163.890000px;}
.x5c_c00436{left:165.240000px;}
.x19_c00436{left:166.590000px;}
.xa_c00436{left:169.290000px;}
.x6a_c00436{left:172.530000px;}
.x12_c00436{left:174.690000px;}
.x96_c00436{left:177.930000px;}
.x1_c00436{left:179.820000px;}
.xaa_c00436{left:183.330000px;}
.x58_c00436{left:184.680000px;}
.x1d_c00436{left:188.730000px;}
.xb_c00436{left:191.430000px;}
.x41_c00436{left:193.050000px;}
.x26_c00436{left:197.910000px;}
.x33_c00436{left:199.260000px;}
.xab_c00436{left:202.500000px;}
.x6f_c00436{left:204.120000px;}
.x63_c00436{left:205.470000px;}
.x67_c00436{left:207.090000px;}
.x5f_c00436{left:210.060000px;}
.x2d_c00436{left:211.680000px;}
.x51_c00436{left:213.570000px;}
.x1e_c00436{left:215.460000px;}
.x4b_c00436{left:217.890000px;}
.x3b_c00436{left:219.780000px;}
.xad_c00436{left:220.860000px;}
.x9a_c00436{left:226.260000px;}
.x52_c00436{left:228.420000px;}
.x6b_c00436{left:231.930000px;}
.x64_c00436{left:233.010000px;}
.xc_c00436{left:235.710000px;}
.x73_c00436{left:236.790000px;}
.x59_c00436{left:238.680000px;}
.x60_c00436{left:239.760000px;}
.x2e_c00436{left:240.840000px;}
.xac_c00436{left:242.190000px;}
.x46_c00436{left:243.540000px;}
.x1a_c00436{left:244.890000px;}
.xa7_c00436{left:246.780000px;}
.x4c_c00436{left:250.020000px;}
.x27_c00436{left:251.640000px;}
.x42_c00436{left:253.800000px;}
.x68_c00436{left:256.230000px;}
.x53_c00436{left:258.930000px;}
.x74_c00436{left:260.550000px;}
.x61_c00436{left:263.790000px;}
.x3c_c00436{left:266.760000px;}
.x5d_c00436{left:268.380000px;}
.x34_c00436{left:270.270000px;}
.x4d_c00436{left:272.700000px;}
.xae_c00436{left:274.860000px;}
.x1f_c00436{left:277.290000px;}
.x13_c00436{left:280.260000px;}
.x9b_c00436{left:283.500000px;}
.x54_c00436{left:286.200000px;}
.x3d_c00436{left:290.520000px;}
.xaf_c00436{left:292.410000px;}
.x6d_c00436{left:297.000000px;}
.x6c_c00436{left:298.890000px;}
.x28_c00436{left:299.970000px;}
.x47_c00436{left:301.320000px;}
.x5a_c00436{left:302.400000px;}
.xa8_c00436{left:305.640000px;}
.x9c_c00436{left:306.720000px;}
.x1b_c00436{left:309.150000px;}
.x2f_c00436{left:310.770000px;}
.x3_c00436{left:314.010000px;}
.x97_c00436{left:319.140000px;}
.xd_c00436{left:322.110000px;}
.x4_c00436{left:327.240000px;}
.xa9_c00436{left:329.130000px;}
.x4e_c00436{left:330.750000px;}
.x69_c00436{left:333.450000px;}
.xbb_c00436{left:334.800000px;}
.x3e_c00436{left:336.150000px;}
.x7f_c00436{left:337.230000px;}
.x55_c00436{left:340.200000px;}
.x5_c00436{left:343.980000px;}
.x29_c00436{left:345.600000px;}
.x35_c00436{left:346.950000px;}
.xa4_c00436{left:348.300000px;}
.x38_c00436{left:350.190000px;}
.x14_c00436{left:353.430000px;}
.x75_c00436{left:356.400000px;}
.x30_c00436{left:360.180000px;}
.x20_c00436{left:362.070000px;}
.xa2_c00436{left:364.230000px;}
.x6_c00436{left:369.360000px;}
.x43_c00436{left:370.710000px;}
.x76_c00436{left:372.060000px;}
.x82_c00436{left:373.140000px;}
.x9e_c00436{left:375.840000px;}
.x31_c00436{left:377.190000px;}
.x15_c00436{left:382.860000px;}
.x39_c00436{left:384.750000px;}
.x7a_c00436{left:385.830000px;}
.x8e_c00436{left:389.340000px;}
.x2a_c00436{left:394.200000px;}
.x9f_c00436{left:395.280000px;}
.x2_c00436{left:396.360000px;}
.x32_c00436{left:400.680000px;}
.x3f_c00436{left:402.840000px;}
.x1c_c00436{left:404.190000px;}
.xe_c00436{left:405.270000px;}
.x36_c00436{left:407.700000px;}
.x7_c00436{left:409.320000px;}
.x8b_c00436{left:412.560000px;}
.x92_c00436{left:414.720000px;}
.x83_c00436{left:416.070000px;}
.x8f_c00436{left:419.580000px;}
.x21_c00436{left:420.660000px;}
.xb7_c00436{left:422.280000px;}
.x80_c00436{left:423.900000px;}
.x40_c00436{left:425.790000px;}
.xf_c00436{left:428.220000px;}
.x7b_c00436{left:429.300000px;}
.x48_c00436{left:432.810000px;}
.x2b_c00436{left:433.890000px;}
.x81_c00436{left:436.050000px;}
.x84_c00436{left:439.830000px;}
.x16_c00436{left:441.180000px;}
.x87_c00436{left:444.420000px;}
.x44_c00436{left:447.930000px;}
.x10_c00436{left:449.280000px;}
.xb2_c00436{left:452.520000px;}
.x3a_c00436{left:454.410000px;}
.x77_c00436{left:457.380000px;}
.x7c_c00436{left:461.970000px;}
.xb8_c00436{left:464.130000px;}
.x85_c00436{left:465.750000px;}
.x8_c00436{left:467.100000px;}
.x88_c00436{left:468.720000px;}
.x49_c00436{left:470.070000px;}
.x22_c00436{left:471.690000px;}
.xa0_c00436{left:473.040000px;}
.xb9_c00436{left:478.440000px;}
.xa1_c00436{left:483.570000px;}
.x2c_c00436{left:486.000000px;}
.x8c_c00436{left:488.970000px;}
.x7d_c00436{left:490.860000px;}
.x90_c00436{left:491.940000px;}
.x93_c00436{left:495.180000px;}
.x23_c00436{left:496.260000px;}
.x9d_c00436{left:497.610000px;}
.xb3_c00436{left:500.040000px;}
.xbc_c00436{left:503.820000px;}
.x17_c00436{left:504.900000px;}
.xb0_c00436{left:506.520000px;}
.xa5_c00436{left:510.030000px;}
.x78_c00436{left:512.460000px;}
.xba_c00436{left:516.240000px;}
.x8d_c00436{left:517.860000px;}
.xb4_c00436{left:519.750000px;}
.x94_c00436{left:526.500000px;}
.xa6_c00436{left:527.850000px;}
.x79_c00436{left:534.870000px;}
.xbd_c00436{left:536.490000px;}
.x7e_c00436{left:537.570000px;}
.x89_c00436{left:540.270000px;}
.x86_c00436{left:541.350000px;}
.x24_c00436{left:543.780000px;}
.x95_c00436{left:546.210000px;}
.x8a_c00436{left:550.800000px;}
.xa3_c00436{left:552.420000px;}
.x91_c00436{left:559.440000px;}
.xb5_c00436{left:561.600000px;}
.xb1_c00436{left:564.570000px;}
.xb6_c00436{left:579.960000px;}
.x98_c00436{left:586.170000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.fsd_c00436{font-size:38.266667pt;}
.fs11_c00436{font-size:42.000000pt;}
.fs14_c00436{font-size:42.933333pt;}
.fsc_c00436{font-size:43.866667pt;}
.fsa_c00436{font-size:44.800000pt;}
.fs13_c00436{font-size:45.733333pt;}
.fsf_c00436{font-size:46.666667pt;}
.fs10_c00436{font-size:47.600000pt;}
.fs12_c00436{font-size:48.533333pt;}
.fse_c00436{font-size:51.333333pt;}
.fsb_c00436{font-size:52.266667pt;}
.fs6_c00436{font-size:57.866667pt;}
.fs9_c00436{font-size:58.800000pt;}
.fs7_c00436{font-size:59.733333pt;}
.fs5_c00436{font-size:60.666667pt;}
.fs8_c00436{font-size:61.600000pt;}
.fs4_c00436{font-size:62.533333pt;}
.fs3_c00436{font-size:63.466667pt;}
.fs1_c00436{font-size:64.400000pt;}
.fs2_c00436{font-size:66.266667pt;}
.fs0_c00436{font-size:77.466667pt;}
.y0_c00436{bottom:0.000000pt;}
.y30_c00436{bottom:130.800000pt;}
.y2f_c00436{bottom:146.602667pt;}
.y2c_c00436{bottom:146.986667pt;}
.y2b_c00436{bottom:162.266667pt;}
.y2e_c00436{bottom:162.392000pt;}
.y2d_c00436{bottom:177.921333pt;}
.y2a_c00436{bottom:178.778667pt;}
.y1a_c00436{bottom:178.913333pt;}
.y29_c00436{bottom:193.672000pt;}
.y1b_c00436{bottom:194.433333pt;}
.y19_c00436{bottom:194.496000pt;}
.y28_c00436{bottom:209.633333pt;}
.y18_c00436{bottom:210.165333pt;}
.y27_c00436{bottom:225.360000pt;}
.y25_c00436{bottom:226.106667pt;}
.y26_c00436{bottom:241.344000pt;}
.y24_c00436{bottom:241.964000pt;}
.y23_c00436{bottom:257.173333pt;}
.y17_c00436{bottom:257.658667pt;}
.y22_c00436{bottom:273.600000pt;}
.y16_c00436{bottom:274.080000pt;}
.y21_c00436{bottom:289.269333pt;}
.y15_c00436{bottom:289.945333pt;}
.y20_c00436{bottom:305.040000pt;}
.y14_c00436{bottom:306.074667pt;}
.y1f_c00436{bottom:321.121333pt;}
.y13_c00436{bottom:322.080000pt;}
.y1e_c00436{bottom:337.566667pt;}
.y12_c00436{bottom:337.920000pt;}
.y1d_c00436{bottom:353.133333pt;}
.y11_c00436{bottom:353.864000pt;}
.y1c_c00436{bottom:369.256000pt;}
.y10_c00436{bottom:369.946667pt;}
.yf_c00436{bottom:386.400000pt;}
.ye_c00436{bottom:402.000000pt;}
.yd_c00436{bottom:445.480000pt;}
.yc_c00436{bottom:465.769333pt;}
.yb_c00436{bottom:485.916000pt;}
.ya_c00436{bottom:505.985333pt;}
.y9_c00436{bottom:526.245333pt;}
.y8_c00436{bottom:586.121333pt;}
.y7_c00436{bottom:606.478667pt;}
.y6_c00436{bottom:626.913333pt;}
.y5_c00436{bottom:647.121333pt;}
.y4_c00436{bottom:667.836000pt;}
.y3_c00436{bottom:688.257333pt;}
.y2_c00436{bottom:707.990667pt;}
.y1_c00436{bottom:767.785333pt;}
.hf_c00436{height:38.266667pt;}
.h13_c00436{height:42.000000pt;}
.h16_c00436{height:42.933333pt;}
.he_c00436{height:43.866667pt;}
.hc_c00436{height:44.800000pt;}
.h15_c00436{height:45.733333pt;}
.h11_c00436{height:46.666667pt;}
.h12_c00436{height:47.600000pt;}
.h14_c00436{height:48.533333pt;}
.h10_c00436{height:51.333333pt;}
.hd_c00436{height:52.266667pt;}
.h8_c00436{height:57.866667pt;}
.hb_c00436{height:58.800000pt;}
.h9_c00436{height:59.733333pt;}
.h7_c00436{height:60.666667pt;}
.ha_c00436{height:61.600000pt;}
.h6_c00436{height:62.533333pt;}
.h5_c00436{height:63.466667pt;}
.h3_c00436{height:64.400000pt;}
.h4_c00436{height:66.266667pt;}
.h2_c00436{height:77.466667pt;}
.h1_c00436{height:893.333333pt;}
.h0_c00436{height:893.466667pt;}
.w0_c00436{width:635.733333pt;}
.w1_c00436{width:636.000000pt;}
.x0_c00436{left:0.000000pt;}
.x56_c00436{left:84.720000pt;}
.x4f_c00436{left:85.920000pt;}
.x71_c00436{left:86.880000pt;}
.x4a_c00436{left:96.720000pt;}
.x65_c00436{left:103.680000pt;}
.x72_c00436{left:107.760000pt;}
.x5e_c00436{left:109.200000pt;}
.x18_c00436{left:114.720000pt;}
.x9_c00436{left:116.160000pt;}
.x37_c00436{left:117.840000pt;}
.x5b_c00436{left:124.560000pt;}
.x6e_c00436{left:126.720000pt;}
.x70_c00436{left:128.880000pt;}
.x11_c00436{left:131.040000pt;}
.x50_c00436{left:132.000000pt;}
.x99_c00436{left:132.960000pt;}
.x57_c00436{left:134.400000pt;}
.x66_c00436{left:135.600000pt;}
.x25_c00436{left:139.920000pt;}
.x45_c00436{left:144.720000pt;}
.x62_c00436{left:145.680000pt;}
.x5c_c00436{left:146.880000pt;}
.x19_c00436{left:148.080000pt;}
.xa_c00436{left:150.480000pt;}
.x6a_c00436{left:153.360000pt;}
.x12_c00436{left:155.280000pt;}
.x96_c00436{left:158.160000pt;}
.x1_c00436{left:159.840000pt;}
.xaa_c00436{left:162.960000pt;}
.x58_c00436{left:164.160000pt;}
.x1d_c00436{left:167.760000pt;}
.xb_c00436{left:170.160000pt;}
.x41_c00436{left:171.600000pt;}
.x26_c00436{left:175.920000pt;}
.x33_c00436{left:177.120000pt;}
.xab_c00436{left:180.000000pt;}
.x6f_c00436{left:181.440000pt;}
.x63_c00436{left:182.640000pt;}
.x67_c00436{left:184.080000pt;}
.x5f_c00436{left:186.720000pt;}
.x2d_c00436{left:188.160000pt;}
.x51_c00436{left:189.840000pt;}
.x1e_c00436{left:191.520000pt;}
.x4b_c00436{left:193.680000pt;}
.x3b_c00436{left:195.360000pt;}
.xad_c00436{left:196.320000pt;}
.x9a_c00436{left:201.120000pt;}
.x52_c00436{left:203.040000pt;}
.x6b_c00436{left:206.160000pt;}
.x64_c00436{left:207.120000pt;}
.xc_c00436{left:209.520000pt;}
.x73_c00436{left:210.480000pt;}
.x59_c00436{left:212.160000pt;}
.x60_c00436{left:213.120000pt;}
.x2e_c00436{left:214.080000pt;}
.xac_c00436{left:215.280000pt;}
.x46_c00436{left:216.480000pt;}
.x1a_c00436{left:217.680000pt;}
.xa7_c00436{left:219.360000pt;}
.x4c_c00436{left:222.240000pt;}
.x27_c00436{left:223.680000pt;}
.x42_c00436{left:225.600000pt;}
.x68_c00436{left:227.760000pt;}
.x53_c00436{left:230.160000pt;}
.x74_c00436{left:231.600000pt;}
.x61_c00436{left:234.480000pt;}
.x3c_c00436{left:237.120000pt;}
.x5d_c00436{left:238.560000pt;}
.x34_c00436{left:240.240000pt;}
.x4d_c00436{left:242.400000pt;}
.xae_c00436{left:244.320000pt;}
.x1f_c00436{left:246.480000pt;}
.x13_c00436{left:249.120000pt;}
.x9b_c00436{left:252.000000pt;}
.x54_c00436{left:254.400000pt;}
.x3d_c00436{left:258.240000pt;}
.xaf_c00436{left:259.920000pt;}
.x6d_c00436{left:264.000000pt;}
.x6c_c00436{left:265.680000pt;}
.x28_c00436{left:266.640000pt;}
.x47_c00436{left:267.840000pt;}
.x5a_c00436{left:268.800000pt;}
.xa8_c00436{left:271.680000pt;}
.x9c_c00436{left:272.640000pt;}
.x1b_c00436{left:274.800000pt;}
.x2f_c00436{left:276.240000pt;}
.x3_c00436{left:279.120000pt;}
.x97_c00436{left:283.680000pt;}
.xd_c00436{left:286.320000pt;}
.x4_c00436{left:290.880000pt;}
.xa9_c00436{left:292.560000pt;}
.x4e_c00436{left:294.000000pt;}
.x69_c00436{left:296.400000pt;}
.xbb_c00436{left:297.600000pt;}
.x3e_c00436{left:298.800000pt;}
.x7f_c00436{left:299.760000pt;}
.x55_c00436{left:302.400000pt;}
.x5_c00436{left:305.760000pt;}
.x29_c00436{left:307.200000pt;}
.x35_c00436{left:308.400000pt;}
.xa4_c00436{left:309.600000pt;}
.x38_c00436{left:311.280000pt;}
.x14_c00436{left:314.160000pt;}
.x75_c00436{left:316.800000pt;}
.x30_c00436{left:320.160000pt;}
.x20_c00436{left:321.840000pt;}
.xa2_c00436{left:323.760000pt;}
.x6_c00436{left:328.320000pt;}
.x43_c00436{left:329.520000pt;}
.x76_c00436{left:330.720000pt;}
.x82_c00436{left:331.680000pt;}
.x9e_c00436{left:334.080000pt;}
.x31_c00436{left:335.280000pt;}
.x15_c00436{left:340.320000pt;}
.x39_c00436{left:342.000000pt;}
.x7a_c00436{left:342.960000pt;}
.x8e_c00436{left:346.080000pt;}
.x2a_c00436{left:350.400000pt;}
.x9f_c00436{left:351.360000pt;}
.x2_c00436{left:352.320000pt;}
.x32_c00436{left:356.160000pt;}
.x3f_c00436{left:358.080000pt;}
.x1c_c00436{left:359.280000pt;}
.xe_c00436{left:360.240000pt;}
.x36_c00436{left:362.400000pt;}
.x7_c00436{left:363.840000pt;}
.x8b_c00436{left:366.720000pt;}
.x92_c00436{left:368.640000pt;}
.x83_c00436{left:369.840000pt;}
.x8f_c00436{left:372.960000pt;}
.x21_c00436{left:373.920000pt;}
.xb7_c00436{left:375.360000pt;}
.x80_c00436{left:376.800000pt;}
.x40_c00436{left:378.480000pt;}
.xf_c00436{left:380.640000pt;}
.x7b_c00436{left:381.600000pt;}
.x48_c00436{left:384.720000pt;}
.x2b_c00436{left:385.680000pt;}
.x81_c00436{left:387.600000pt;}
.x84_c00436{left:390.960000pt;}
.x16_c00436{left:392.160000pt;}
.x87_c00436{left:395.040000pt;}
.x44_c00436{left:398.160000pt;}
.x10_c00436{left:399.360000pt;}
.xb2_c00436{left:402.240000pt;}
.x3a_c00436{left:403.920000pt;}
.x77_c00436{left:406.560000pt;}
.x7c_c00436{left:410.640000pt;}
.xb8_c00436{left:412.560000pt;}
.x85_c00436{left:414.000000pt;}
.x8_c00436{left:415.200000pt;}
.x88_c00436{left:416.640000pt;}
.x49_c00436{left:417.840000pt;}
.x22_c00436{left:419.280000pt;}
.xa0_c00436{left:420.480000pt;}
.xb9_c00436{left:425.280000pt;}
.xa1_c00436{left:429.840000pt;}
.x2c_c00436{left:432.000000pt;}
.x8c_c00436{left:434.640000pt;}
.x7d_c00436{left:436.320000pt;}
.x90_c00436{left:437.280000pt;}
.x93_c00436{left:440.160000pt;}
.x23_c00436{left:441.120000pt;}
.x9d_c00436{left:442.320000pt;}
.xb3_c00436{left:444.480000pt;}
.xbc_c00436{left:447.840000pt;}
.x17_c00436{left:448.800000pt;}
.xb0_c00436{left:450.240000pt;}
.xa5_c00436{left:453.360000pt;}
.x78_c00436{left:455.520000pt;}
.xba_c00436{left:458.880000pt;}
.x8d_c00436{left:460.320000pt;}
.xb4_c00436{left:462.000000pt;}
.x94_c00436{left:468.000000pt;}
.xa6_c00436{left:469.200000pt;}
.x79_c00436{left:475.440000pt;}
.xbd_c00436{left:476.880000pt;}
.x7e_c00436{left:477.840000pt;}
.x89_c00436{left:480.240000pt;}
.x86_c00436{left:481.200000pt;}
.x24_c00436{left:483.360000pt;}
.x95_c00436{left:485.520000pt;}
.x8a_c00436{left:489.600000pt;}
.xa3_c00436{left:491.040000pt;}
.x91_c00436{left:497.280000pt;}
.xb5_c00436{left:499.200000pt;}
.xb1_c00436{left:501.840000pt;}
.xb6_c00436{left:515.520000pt;}
.x98_c00436{left:521.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mf8_c00437{transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.018909,0.000189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.018909,0.000189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.018909,0.000189,-0.002500,0.249988,0,0);}
.me9_c00437{transform:matrix(0.033825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033825,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.034633,0.000346,-0.002500,0.249988,0,0);-ms-transform:matrix(0.034633,0.000346,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.034633,0.000346,-0.002500,0.249988,0,0);}
.m91_c00437{transform:matrix(0.044148,0.000441,-0.002500,0.249988,0,0);-ms-transform:matrix(0.044148,0.000441,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.044148,0.000441,-0.002500,0.249988,0,0);}
.m11a_c00437{transform:matrix(0.073178,0.000585,-0.002000,0.249992,0,0);-ms-transform:matrix(0.073178,0.000585,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.073178,0.000585,-0.002000,0.249992,0,0);}
.m8d_c00437{transform:matrix(0.078401,0.000784,-0.002500,0.249988,0,0);-ms-transform:matrix(0.078401,0.000784,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.078401,0.000784,-0.002500,0.249988,0,0);}
.m29_c00437{transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);-ms-transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.095108,0.001141,-0.003000,0.249982,0,0);}
.m10e_c00437{transform:matrix(0.112701,0.000902,-0.002000,0.249992,0,0);-ms-transform:matrix(0.112701,0.000902,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.112701,0.000902,-0.002000,0.249992,0,0);}
.m1b_c00437{transform:matrix(0.133126,0.001065,-0.002000,0.249992,0,0);-ms-transform:matrix(0.133126,0.001065,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.133126,0.001065,-0.002000,0.249992,0,0);}
.mc5_c00437{transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.138382,0.001522,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138382,0.001522,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138382,0.001522,-0.002750,0.249985,0,0);}
.md7_c00437{transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);}
.mc6_c00437{transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);}
.m10a_c00437{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);}
.m16_c00437{transform:matrix(0.143240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143240,0.000000,0.000000,0.250000,0,0);}
.mc4_c00437{transform:matrix(0.143245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143245,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.143765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143765,0.000000,0.000000,0.250000,0,0);}
.m108_c00437{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{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);}
.m98_c00437{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150187,0.001502,-0.002500,0.249988,0,0);}
.m5b_c00437{transform:matrix(0.151216,0.001663,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151216,0.001663,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151216,0.001663,-0.002750,0.249985,0,0);}
.m61_c00437{transform:matrix(0.153256,0.001686,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153256,0.001686,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153256,0.001686,-0.002750,0.249985,0,0);}
.m9e_c00437{transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.155175,0.001241,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155175,0.001241,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155175,0.001241,-0.002000,0.249992,0,0);}
.m101_c00437{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);}
.m96_c00437{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);}
.mf7_c00437{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);}
.md4_c00437{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);}
.mee_c00437{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);}
.m7e_c00437{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);}
.m42_c00437{transform:matrix(0.159054,0.001909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159054,0.001909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159054,0.001909,-0.003000,0.249982,0,0);}
.m67_c00437{transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159727,0.001597,-0.002500,0.249988,0,0);}
.mc_c00437{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);}
.m6d_c00437{transform:matrix(0.161625,0.001778,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161625,0.001778,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161625,0.001778,-0.002750,0.249985,0,0);}
.m7b_c00437{transform:matrix(0.162455,0.001787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162455,0.001787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162455,0.001787,-0.002750,0.249985,0,0);}
.m100_c00437{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);}
.m60_c00437{transform:matrix(0.163160,0.001795,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163160,0.001795,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163160,0.001795,-0.002750,0.249985,0,0);}
.m9c_c00437{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);}
.m2_c00437{transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);}
.m9a_c00437{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);}
.mea_c00437{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);}
.m66_c00437{transform:matrix(0.165122,0.001651,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165122,0.001651,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165122,0.001651,-0.002500,0.249988,0,0);}
.me1_c00437{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);}
.ma_c00437{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);}
.me6_c00437{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);}
.m30_c00437{transform:matrix(0.168232,0.001682,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168232,0.001682,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168232,0.001682,-0.002500,0.249988,0,0);}
.m5f_c00437{transform:matrix(0.168500,0.001853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168500,0.001853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168500,0.001853,-0.002750,0.249985,0,0);}
.m9d_c00437{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);}
.m103_c00437{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);}
.mef_c00437{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);}
.m95_c00437{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);}
.m20_c00437{transform:matrix(0.170335,0.001363,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170335,0.001363,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170335,0.001363,-0.002000,0.249992,0,0);}
.me5_c00437{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);}
.mff_c00437{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);}
.m28_c00437{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);}
.m7c_c00437{transform:matrix(0.170500,0.001875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170500,0.001875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170500,0.001875,-0.002750,0.249985,0,0);}
.me0_c00437{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);}
.mf3_c00437{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);}
.m44_c00437{transform:matrix(0.171328,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171328,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171328,0.002056,-0.003000,0.249982,0,0);}
.mcd_c00437{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);}
.m5e_c00437{transform:matrix(0.171900,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171900,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171900,0.001891,-0.002750,0.249985,0,0);}
.m97_c00437{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);}
.m81_c00437{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);}
.m71_c00437{transform:matrix(0.172800,0.001901,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172800,0.001901,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172800,0.001901,-0.002750,0.249985,0,0);}
.m1c_c00437{transform:matrix(0.173019,0.001384,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173019,0.001384,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173019,0.001384,-0.002000,0.249992,0,0);}
.m43_c00437{transform:matrix(0.173578,0.002083,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173578,0.002083,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173578,0.002083,-0.003000,0.249982,0,0);}
.m69_c00437{transform:matrix(0.173756,0.001738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173756,0.001738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173756,0.001738,-0.002500,0.249988,0,0);}
.mdf_c00437{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);}
.m11e_c00437{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);}
.m4_c00437{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);}
.m52_c00437{transform:matrix(0.174726,0.001747,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174726,0.001747,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174726,0.001747,-0.002500,0.249988,0,0);}
.me3_c00437{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_c00437{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);}
.m114_c00437{transform:matrix(0.175424,0.001403,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175424,0.001403,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175424,0.001403,-0.002000,0.249992,0,0);}
.m8_c00437{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);}
.m104_c00437{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);}
.m7_c00437{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);}
.m56_c00437{transform:matrix(0.177036,0.001770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177036,0.001770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177036,0.001770,-0.002500,0.249988,0,0);}
.mbb_c00437{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);}
.ma0_c00437{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);}
.m10c_c00437{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);}
.m116_c00437{transform:matrix(0.177829,0.001423,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177829,0.001423,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177829,0.001423,-0.002000,0.249992,0,0);}
.mb9_c00437{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);}
.m4e_c00437{transform:matrix(0.178689,0.001430,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178689,0.001430,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178689,0.001430,-0.002000,0.249992,0,0);}
.md_c00437{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);}
.m107_c00437{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);}
.m109_c00437{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);}
.mad_c00437{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);}
.me7_c00437{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);}
.mbd_c00437{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);}
.mf4_c00437{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);}
.m11c_c00437{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);}
.m11b_c00437{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);}
.ma8_c00437{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);}
.mc8_c00437{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);}
.m14_c00437{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);}
.mde_c00437{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);}
.m102_c00437{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);}
.mec_c00437{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_c00437{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);}
.m2c_c00437{transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185207,0.002222,-0.003000,0.249982,0,0);}
.m57_c00437{transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);}
.m5a_c00437{transform:matrix(0.185819,0.002044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185819,0.002044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185819,0.002044,-0.002750,0.249985,0,0);}
.m94_c00437{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);}
.ma2_c00437{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);}
.me_c00437{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);}
.md0_c00437{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);}
.m75_c00437{transform:matrix(0.187174,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187174,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187174,0.002059,-0.002750,0.249985,0,0);}
.mf1_c00437{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);}
.m15_c00437{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);}
.m3e_c00437{transform:matrix(0.187842,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187842,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187842,0.001691,-0.002250,0.249990,0,0);}
.m53_c00437{transform:matrix(0.187846,0.001878,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187846,0.001878,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187846,0.001878,-0.002500,0.249988,0,0);}
.m4b_c00437{transform:matrix(0.188299,0.001506,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188299,0.001506,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188299,0.001506,-0.002000,0.249992,0,0);}
.m5_c00437{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);}
.mf_c00437{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);}
.m74_c00437{transform:matrix(0.189369,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189369,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189369,0.002083,-0.002750,0.249985,0,0);}
.mb2_c00437{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);}
.mf9_c00437{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);}
.m11_c00437{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);}
.med_c00437{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);}
.m123_c00437{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);}
.m84_c00437{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);}
.m5d_c00437{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);}
.mfa_c00437{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);}
.m58_c00437{transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);}
.m27_c00437{transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191136,0.002294,-0.003000,0.249982,0,0);}
.m13_c00437{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);}
.m113_c00437{transform:matrix(0.191269,0.001530,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191269,0.001530,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191269,0.001530,-0.002000,0.249992,0,0);}
.mc9_c00437{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);}
.m1_c00437{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);}
.m6e_c00437{transform:matrix(0.191748,0.002109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191748,0.002109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191748,0.002109,-0.002750,0.249985,0,0);}
.m3a_c00437{transform:matrix(0.191762,0.001726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191762,0.001726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191762,0.001726,-0.002250,0.249990,0,0);}
.m1e_c00437{transform:matrix(0.191949,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191949,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191949,0.001536,-0.002000,0.249992,0,0);}
.m7a_c00437{transform:matrix(0.192078,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192078,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192078,0.002113,-0.002750,0.249985,0,0);}
.m62_c00437{transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);}
.mb7_c00437{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);}
.m83_c00437{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);}
.mf5_c00437{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);}
.m26_c00437{transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193181,0.002318,-0.003000,0.249982,0,0);}
.m54_c00437{transform:matrix(0.193270,0.001933,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193270,0.001933,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193270,0.001933,-0.002500,0.249988,0,0);}
.m2b_c00437{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);}
.me4_c00437{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);}
.m87_c00437{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);}
.md6_c00437{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);}
.m7f_c00437{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);}
.m82_c00437{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);}
.md3_c00437{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);}
.mac_c00437{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);}
.mab_c00437{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);}
.m1f_c00437{transform:matrix(0.198914,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198914,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198914,0.001591,-0.002000,0.249992,0,0);}
.me8_c00437{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);}
.m55_c00437{transform:matrix(0.199300,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199300,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199300,0.001993,-0.002500,0.249988,0,0);}
.m11f_c00437{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);}
.maa_c00437{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);}
.m1d_c00437{transform:matrix(0.200099,0.001601,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200099,0.001601,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200099,0.001601,-0.002000,0.249992,0,0);}
.mf2_c00437{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);}
.m4a_c00437{transform:matrix(0.201004,0.001608,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201004,0.001608,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201004,0.001608,-0.002000,0.249992,0,0);}
.m6f_c00437{transform:matrix(0.201078,0.002212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201078,0.002212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201078,0.002212,-0.002750,0.249985,0,0);}
.m4f_c00437{transform:matrix(0.201169,0.001609,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201169,0.001609,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201169,0.001609,-0.002000,0.249992,0,0);}
.mcc_c00437{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);}
.m21_c00437{transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);}
.m12_c00437{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);}
.m10b_c00437{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);}
.m10_c00437{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);}
.m4d_c00437{transform:matrix(0.202994,0.001624,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202994,0.001624,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202994,0.001624,-0.002000,0.249992,0,0);}
.m78_c00437{transform:matrix(0.203103,0.002234,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203103,0.002234,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203103,0.002234,-0.002750,0.249985,0,0);}
.m117_c00437{transform:matrix(0.203193,0.001626,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203193,0.001626,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203193,0.001626,-0.002000,0.249992,0,0);}
.ma1_c00437{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);}
.m80_c00437{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);}
.mda_c00437{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);}
.m31_c00437{transform:matrix(0.204015,0.002040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204015,0.002040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204015,0.002040,-0.002500,0.249988,0,0);}
.m50_c00437{transform:matrix(0.204123,0.001633,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204123,0.001633,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204123,0.001633,-0.002000,0.249992,0,0);}
.mb8_c00437{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);}
.m46_c00437{transform:matrix(0.204470,0.002454,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204470,0.002454,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204470,0.002454,-0.003000,0.249982,0,0);}
.md8_c00437{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);}
.m89_c00437{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);}
.m35_c00437{transform:matrix(0.205345,0.002053,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205345,0.002053,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205345,0.002053,-0.002500,0.249988,0,0);}
.m86_c00437{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);}
.m8b_c00437{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);}
.mc7_c00437{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);}
.m120_c00437{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);}
.m6c_c00437{transform:matrix(0.208077,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208077,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208077,0.002289,-0.002750,0.249985,0,0);}
.m3b_c00437{transform:matrix(0.208202,0.001874,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208202,0.001874,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208202,0.001874,-0.002250,0.249990,0,0);}
.m45_c00437{transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208485,0.002502,-0.003000,0.249982,0,0);}
.m4c_c00437{transform:matrix(0.208513,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208513,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208513,0.001668,-0.002000,0.249992,0,0);}
.m3f_c00437{transform:matrix(0.208727,0.001879,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208727,0.001879,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208727,0.001879,-0.002250,0.249990,0,0);}
.m73_c00437{transform:matrix(0.208852,0.002297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208852,0.002297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208852,0.002297,-0.002750,0.249985,0,0);}
.maf_c00437{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);}
.m112_c00437{transform:matrix(0.209268,0.001674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209268,0.001674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209268,0.001674,-0.002000,0.249992,0,0);}
.m40_c00437{transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);}
.mf6_c00437{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);}
.mfc_c00437{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);}
.mc2_c00437{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);}
.m6_c00437{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);}
.mbc_c00437{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);}
.m59_c00437{transform:matrix(0.211329,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211329,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211329,0.002113,-0.002500,0.249988,0,0);}
.meb_c00437{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);}
.mf0_c00437{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);}
.mfb_c00437{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);}
.me2_c00437{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);}
.m3c_c00437{transform:matrix(0.212926,0.001916,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212926,0.001916,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212926,0.001916,-0.002250,0.249990,0,0);}
.mc3_c00437{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);}
.m65_c00437{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);}
.m25_c00437{transform:matrix(0.213495,0.002562,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213495,0.002562,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213495,0.002562,-0.003000,0.249982,0,0);}
.m72_c00437{transform:matrix(0.214012,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214012,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214012,0.002354,-0.002750,0.249985,0,0);}
.m7d_c00437{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);}
.m64_c00437{transform:matrix(0.214544,0.002145,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214544,0.002145,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214544,0.002145,-0.002500,0.249988,0,0);}
.md5_c00437{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);}
.m122_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);}
.m111_c00437{transform:matrix(0.218013,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218013,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218013,0.001744,-0.002000,0.249992,0,0);}
.mb3_c00437{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);}
.ma7_c00437{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);}
.mbe_c00437{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);}
.mdd_c00437{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);}
.m19_c00437{transform:matrix(0.220498,0.001764,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220498,0.001764,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220498,0.001764,-0.002000,0.249992,0,0);}
.m36_c00437{transform:matrix(0.220924,0.002209,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220924,0.002209,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220924,0.002209,-0.002500,0.249988,0,0);}
.m33_c00437{transform:matrix(0.222464,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222464,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222464,0.002225,-0.002500,0.249988,0,0);}
.m10d_c00437{transform:matrix(0.222958,0.001784,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222958,0.001784,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222958,0.001784,-0.002000,0.249992,0,0);}
.mb1_c00437{transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.223159,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223159,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223159,0.002232,-0.002500,0.249988,0,0);}
.m38_c00437{transform:matrix(0.224431,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224431,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224431,0.002020,-0.002250,0.249990,0,0);}
.md2_c00437{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);}
.ma6_c00437{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);}
.m34_c00437{transform:matrix(0.226109,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226109,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226109,0.002261,-0.002500,0.249988,0,0);}
.mce_c00437{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);}
.m48_c00437{transform:matrix(0.226743,0.001814,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226743,0.001814,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226743,0.001814,-0.002000,0.249992,0,0);}
.mca_c00437{transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227680,0.000000,0.000000,0.250000,0,0);}
.m11d_c00437{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);}
.m2d_c00437{transform:matrix(0.229094,0.002749,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229094,0.002749,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229094,0.002749,-0.003000,0.249982,0,0);}
.m63_c00437{transform:matrix(0.229354,0.002294,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229354,0.002294,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229354,0.002294,-0.002500,0.249988,0,0);}
.mcf_c00437{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);}
.mdc_c00437{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);}
.m9f_c00437{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.233456,0.002568,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233456,0.002568,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233456,0.002568,-0.002750,0.249985,0,0);}
.m79_c00437{transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);}
.md9_c00437{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);}
.mae_c00437{transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{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);}
.m9b_c00437{transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);}
.mc0_c00437{transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);}
.mfe_c00437{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);}
.m68_c00437{transform:matrix(0.237378,0.002374,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237378,0.002374,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237378,0.002374,-0.002500,0.249988,0,0);}
.mc1_c00437{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);}
.mbf_c00437{transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);}
.m119_c00437{transform:matrix(0.239602,0.001917,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239602,0.001917,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239602,0.001917,-0.002000,0.249992,0,0);}
.m41_c00437{transform:matrix(0.240583,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240583,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240583,0.002887,-0.003000,0.249982,0,0);}
.m121_c00437{transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);}
.mdb_c00437{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m10f_c00437{transform:matrix(0.242497,0.001940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242497,0.001940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242497,0.001940,-0.002000,0.249992,0,0);}
.m105_c00437{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.248085,0.002233,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248085,0.002233,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248085,0.002233,-0.002250,0.249990,0,0);}
.m49_c00437{transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);}
.m1a_c00437{transform:matrix(0.248677,0.001989,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248677,0.001989,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248677,0.001989,-0.002000,0.249992,0,0);}
.m88_c00437{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{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);}
.m2a_c00437{transform:matrix(0.256327,0.003076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256327,0.003076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256327,0.003076,-0.003000,0.249982,0,0);}
.m77_c00437{transform:matrix(0.257669,0.002834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257669,0.002834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257669,0.002834,-0.002750,0.249985,0,0);}
.ma5_c00437{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);}
.m110_c00437{transform:matrix(0.258697,0.002070,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258697,0.002070,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258697,0.002070,-0.002000,0.249992,0,0);}
.m8a_c00437{transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);}
.mfd_c00437{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.md1_c00437{transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);}
.mb0_c00437{transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280315,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.281479,0.002533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281479,0.002533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281479,0.002533,-0.002250,0.249990,0,0);}
.m115_c00437{transform:matrix(0.289256,0.002314,-0.002000,0.249992,0,0);-ms-transform:matrix(0.289256,0.002314,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.289256,0.002314,-0.002000,0.249992,0,0);}
.ma3_c00437{transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300720,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301630,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00437{transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.317887,0.003815,-0.003000,0.249982,0,0);-ms-transform:matrix(0.317887,0.003815,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.317887,0.003815,-0.003000,0.249982,0,0);}
.mb4_c00437{transform:matrix(0.322665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322665,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.326185,0.003588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326185,0.003588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326185,0.003588,-0.002750,0.249985,0,0);}
.m124_c00437{transform:matrix(0.333863,-0.012031,0.009003,0.249838,0,0);-ms-transform:matrix(0.333863,-0.012031,0.009003,0.249838,0,0);-webkit-transform:matrix(0.333863,-0.012031,0.009003,0.249838,0,0);}
.m118_c00437{transform:matrix(0.337469,0.002700,-0.002000,0.249992,0,0);-ms-transform:matrix(0.337469,0.002700,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.337469,0.002700,-0.002000,0.249992,0,0);}
.ma9_c00437{transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351400,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.353762,0.003538,-0.002500,0.249988,0,0);-ms-transform:matrix(0.353762,0.003538,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.353762,0.003538,-0.002500,0.249988,0,0);}
.m106_c00437{transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);}
.mb6_c00437{transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357265,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{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);}
.mb5_c00437{transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364310,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.372420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372420,0.000000,0.000000,0.250000,0,0);}
.mba_c00437{transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375710,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.430770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430770,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.526678,0.005793,-0.002750,0.249985,0,0);-ms-transform:matrix(0.526678,0.005793,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.526678,0.005793,-0.002750,0.249985,0,0);}
.m6a_c00437{transform:matrix(0.631332,0.006945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.631332,0.006945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.631332,0.006945,-0.002750,0.249985,0,0);}
.m8f_c00437{transform:matrix(1.288851,0.012889,-0.002500,0.249988,0,0);-ms-transform:matrix(1.288851,0.012889,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.288851,0.012889,-0.002500,0.249988,0,0);}
.m8e_c00437{transform:matrix(8.566577,0.085666,-0.002500,0.249988,0,0);-ms-transform:matrix(8.566577,0.085666,-0.002500,0.249988,0,0);-webkit-transform:matrix(8.566577,0.085666,-0.002500,0.249988,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;}
._0_c00437{width:1529.260758px;}
._1_c00437{width:3484.217063px;}
.fc0_c00437{color:transparent;}
.fs1a_c00437{font-size:16.800000px;}
.fs12_c00437{font-size:22.051102px;}
.fs1b_c00437{font-size:47.250000px;}
.fs19_c00437{font-size:47.251512px;}
.fs14_c00437{font-size:50.400000px;}
.fs15_c00437{font-size:52.500000px;}
.fs17_c00437{font-size:53.550000px;}
.fs13_c00437{font-size:59.850000px;}
.fs18_c00437{font-size:60.900000px;}
.fs16_c00437{font-size:61.950000px;}
.fs10_c00437{font-size:63.000000px;}
.fs6_c00437{font-size:63.002551px;}
.fsd_c00437{font-size:66.154002px;}
.fs8_c00437{font-size:69.302218px;}
.fs4_c00437{font-size:69.304989px;}
.fs2_c00437{font-size:70.350000px;}
.fs5_c00437{font-size:70.353517px;}
.fs0_c00437{font-size:71.400000px;}
.fs9_c00437{font-size:71.403570px;}
.fse_c00437{font-size:71.404320px;}
.fs7_c00437{font-size:71.405141px;}
.fsf_c00437{font-size:72.450000px;}
.fs3_c00437{font-size:72.452318px;}
.fs1_c00437{font-size:74.550000px;}
.fsb_c00437{font-size:75.603780px;}
.fsa_c00437{font-size:80.854891px;}
.fs11_c00437{font-size:82.950000px;}
.fsc_c00437{font-size:86.105209px;}
.fs1c_c00437{font-size:239.315836px;}
.y0_c00437{bottom:0.000000px;}
.ya9_c00437{bottom:87.801000px;}
.ya8_c00437{bottom:129.885000px;}
.ya7_c00437{bottom:136.350000px;}
.ya6_c00437{bottom:147.361152px;}
.ya5_c00437{bottom:147.929460px;}
.ya4_c00437{bottom:148.147728px;}
.ya3_c00437{bottom:148.754604px;}
.ya2_c00437{bottom:148.972548px;}
.ya1_c00437{bottom:149.264172px;}
.ya0_c00437{bottom:149.495532px;}
.y9f_c00437{bottom:149.631624px;}
.y9e_c00437{bottom:149.994528px;}
.y9d_c00437{bottom:150.206256px;}
.y9c_c00437{bottom:150.686004px;}
.y9b_c00437{bottom:150.795948px;}
.y9a_c00437{bottom:150.886236px;}
.y99_c00437{bottom:151.200000px;}
.y98_c00437{bottom:166.417500px;}
.y97_c00437{bottom:183.927000px;}
.y96_c00437{bottom:202.080000px;}
.y95_c00437{bottom:219.609000px;}
.y94_c00437{bottom:236.815500px;}
.y93_c00437{bottom:237.231000px;}
.y92_c00437{bottom:237.391500px;}
.y91_c00437{bottom:238.104000px;}
.y90_c00437{bottom:238.240500px;}
.y8f_c00437{bottom:238.581000px;}
.y8e_c00437{bottom:238.866000px;}
.y8d_c00437{bottom:239.217000px;}
.y8c_c00437{bottom:239.383500px;}
.y8b_c00437{bottom:239.896500px;}
.y8a_c00437{bottom:240.508500px;}
.y89_c00437{bottom:240.678000px;}
.y88_c00437{bottom:240.981000px;}
.y87_c00437{bottom:241.348500px;}
.y86_c00437{bottom:241.582500px;}
.y85_c00437{bottom:241.921500px;}
.y84_c00437{bottom:254.707500px;}
.y83_c00437{bottom:255.000000px;}
.y82_c00437{bottom:255.109500px;}
.y81_c00437{bottom:255.246000px;}
.y80_c00437{bottom:255.772500px;}
.y7f_c00437{bottom:255.954000px;}
.y7e_c00437{bottom:256.146000px;}
.y7d_c00437{bottom:256.402500px;}
.y7c_c00437{bottom:256.521000px;}
.y7b_c00437{bottom:256.825500px;}
.y7a_c00437{bottom:257.041500px;}
.y79_c00437{bottom:257.194500px;}
.y78_c00437{bottom:257.400000px;}
.y77_c00437{bottom:257.482500px;}
.y76_c00437{bottom:257.761500px;}
.y75_c00437{bottom:257.880000px;}
.y74_c00437{bottom:258.120000px;}
.y73_c00437{bottom:258.390000px;}
.y72_c00437{bottom:272.217000px;}
.y71_c00437{bottom:290.520000px;}
.y6d_c00437{bottom:315.557670px;}
.y70_c00437{bottom:317.045340px;}
.y6f_c00437{bottom:317.665440px;}
.y6e_c00437{bottom:318.934560px;}
.y6c_c00437{bottom:319.836855px;}
.y6b_c00437{bottom:319.950000px;}
.y6a_c00437{bottom:350.887500px;}
.y69_c00437{bottom:377.137500px;}
.y68_c00437{bottom:399.601500px;}
.y67_c00437{bottom:421.292882px;}
.y66_c00437{bottom:421.554192px;}
.y65_c00437{bottom:422.177364px;}
.y64_c00437{bottom:422.614614px;}
.y63_c00437{bottom:423.164064px;}
.y62_c00437{bottom:423.396235px;}
.y61_c00437{bottom:423.755457px;}
.y60_c00437{bottom:424.099103px;}
.y5f_c00437{bottom:424.711500px;}
.y5e_c00437{bottom:443.635083px;}
.y5d_c00437{bottom:444.216642px;}
.y5c_c00437{bottom:444.706725px;}
.y5b_c00437{bottom:445.404790px;}
.y5a_c00437{bottom:445.832503px;}
.y59_c00437{bottom:446.360602px;}
.y58_c00437{bottom:446.661150px;}
.y57_c00437{bottom:447.121500px;}
.y56_c00437{bottom:468.621837px;}
.y55_c00437{bottom:470.341500px;}
.y54_c00437{bottom:489.830040px;}
.y53_c00437{bottom:490.067580px;}
.y52_c00437{bottom:490.491600px;}
.y51_c00437{bottom:490.758345px;}
.y50_c00437{bottom:491.580045px;}
.y4f_c00437{bottom:492.074040px;}
.y4e_c00437{bottom:492.746115px;}
.y4d_c00437{bottom:493.021500px;}
.y4c_c00437{bottom:512.460234px;}
.y4b_c00437{bottom:513.348825px;}
.y4a_c00437{bottom:513.613204px;}
.y49_c00437{bottom:514.001697px;}
.y48_c00437{bottom:514.385619px;}
.y47_c00437{bottom:514.685440px;}
.y46_c00437{bottom:515.071936px;}
.y45_c00437{bottom:515.971500px;}
.y44_c00437{bottom:535.244445px;}
.y43_c00437{bottom:535.503450px;}
.y42_c00437{bottom:535.894905px;}
.y41_c00437{bottom:536.299425px;}
.y40_c00437{bottom:537.166620px;}
.y3f_c00437{bottom:537.587400px;}
.y3e_c00437{bottom:538.027530px;}
.y3d_c00437{bottom:538.252110px;}
.y3c_c00437{bottom:538.380000px;}
.y3b_c00437{bottom:558.255432px;}
.y3a_c00437{bottom:558.793464px;}
.y39_c00437{bottom:559.004856px;}
.y38_c00437{bottom:559.486992px;}
.y37_c00437{bottom:559.702824px;}
.y36_c00437{bottom:559.998720px;}
.y35_c00437{bottom:560.400696px;}
.y34_c00437{bottom:560.936268px;}
.y33_c00437{bottom:561.331500px;}
.y32_c00437{bottom:586.588500px;}
.y31_c00437{bottom:612.408840px;}
.y30_c00437{bottom:613.063356px;}
.y2f_c00437{bottom:613.643424px;}
.y2e_c00437{bottom:614.058108px;}
.y2d_c00437{bottom:614.706216px;}
.y2c_c00437{bottom:615.350850px;}
.y2b_c00437{bottom:616.141500px;}
.y2a_c00437{bottom:635.214395px;}
.y29_c00437{bottom:635.729663px;}
.y28_c00437{bottom:635.955639px;}
.y27_c00437{bottom:636.378486px;}
.y26_c00437{bottom:636.944284px;}
.y25_c00437{bottom:637.204349px;}
.y24_c00437{bottom:637.676390px;}
.y23_c00437{bottom:638.011500px;}
.y22_c00437{bottom:657.114405px;}
.y21_c00437{bottom:657.962055px;}
.y20_c00437{bottom:658.353615px;}
.y1f_c00437{bottom:658.742310px;}
.y1e_c00437{bottom:659.144775px;}
.y1d_c00437{bottom:659.560335px;}
.y1c_c00437{bottom:660.259755px;}
.y1b_c00437{bottom:660.605145px;}
.y1a_c00437{bottom:660.961500px;}
.y19_c00437{bottom:679.563294px;}
.y18_c00437{bottom:680.317926px;}
.y17_c00437{bottom:681.143838px;}
.y16_c00437{bottom:681.507204px;}
.y15_c00437{bottom:681.759834px;}
.y14_c00437{bottom:681.982098px;}
.y13_c00437{bottom:682.547262px;}
.y12_c00437{bottom:682.868040px;}
.y11_c00437{bottom:683.470788px;}
.y10_c00437{bottom:683.772000px;}
.yf_c00437{bottom:705.669000px;}
.ye_c00437{bottom:731.233596px;}
.yd_c00437{bottom:731.650440px;}
.yc_c00437{bottom:731.911740px;}
.yb_c00437{bottom:732.447504px;}
.ya_c00437{bottom:732.927096px;}
.y9_c00437{bottom:733.281288px;}
.y8_c00437{bottom:733.644168px;}
.y7_c00437{bottom:733.888272px;}
.y6_c00437{bottom:734.007120px;}
.y5_c00437{bottom:734.130000px;}
.y4_c00437{bottom:755.770500px;}
.y3_c00437{bottom:778.423500px;}
.y2_c00437{bottom:800.982000px;}
.y1_c00437{bottom:824.196000px;}
.h1c_c00437{height:16.800000px;}
.h14_c00437{height:22.051102px;}
.h1d_c00437{height:47.250000px;}
.h1b_c00437{height:47.251512px;}
.h16_c00437{height:50.400000px;}
.h17_c00437{height:52.500000px;}
.h19_c00437{height:53.550000px;}
.h15_c00437{height:59.850000px;}
.h1a_c00437{height:60.900000px;}
.h18_c00437{height:61.950000px;}
.h12_c00437{height:63.000000px;}
.h8_c00437{height:63.002551px;}
.hf_c00437{height:66.154002px;}
.ha_c00437{height:69.302218px;}
.h6_c00437{height:69.304989px;}
.h4_c00437{height:70.350000px;}
.h7_c00437{height:70.353517px;}
.h2_c00437{height:71.400000px;}
.hb_c00437{height:71.403570px;}
.h10_c00437{height:71.404320px;}
.h9_c00437{height:71.405141px;}
.h11_c00437{height:72.450000px;}
.h5_c00437{height:72.452318px;}
.h3_c00437{height:74.550000px;}
.hd_c00437{height:75.603780px;}
.hc_c00437{height:80.854891px;}
.h13_c00437{height:82.950000px;}
.he_c00437{height:86.105209px;}
.h1e_c00437{height:239.315836px;}
.h0_c00437{height:1008.450000px;}
.h1_c00437{height:1008.750000px;}
.w1_c00437{width:689.250000px;}
.w0_c00437{width:689.550000px;}
.x0_c00437{left:0.000000px;}
.x63_c00437{left:129.316500px;}
.x75_c00437{left:131.130000px;}
.x6f_c00437{left:133.110000px;}
.x64_c00437{left:140.631000px;}
.x68_c00437{left:143.910000px;}
.x69_c00437{left:154.440000px;}
.x3f_c00437{left:159.607500px;}
.x76_c00437{left:164.871000px;}
.x4d_c00437{left:168.850500px;}
.x58_c00437{left:170.100000px;}
.xc_c00437{left:171.990000px;}
.x18_c00437{left:174.607500px;}
.x2b_c00437{left:175.638000px;}
.x2_c00437{left:178.740000px;}
.x96_c00437{left:179.820000px;}
.x9a_c00437{left:181.363500px;}
.x7f_c00437{left:185.946000px;}
.x19_c00437{left:189.967500px;}
.x70_c00437{left:192.240000px;}
.x40_c00437{left:194.854500px;}
.x49_c00437{left:198.591000px;}
.x23_c00437{left:199.633500px;}
.xd_c00437{left:201.960000px;}
.x1a_c00437{left:204.823500px;}
.x77_c00437{left:209.703000px;}
.x2c_c00437{left:211.273500px;}
.x4e_c00437{left:213.700500px;}
.x80_c00437{left:219.418500px;}
.x3a_c00437{left:221.560500px;}
.x3_c00437{left:223.560000px;}
.x52_c00437{left:225.363000px;}
.x66_c00437{left:230.860500px;}
.x5b_c00437{left:233.010000px;}
.x1b_c00437{left:235.336500px;}
.x41_c00437{left:238.867500px;}
.x35_c00437{left:239.878500px;}
.x4f_c00437{left:241.023000px;}
.x78_c00437{left:244.507500px;}
.x4_c00437{left:246.240000px;}
.xe_c00437{left:248.670000px;}
.x24_c00437{left:249.862500px;}
.x46_c00437{left:254.169000px;}
.x53_c00437{left:256.603500px;}
.x81_c00437{left:262.323000px;}
.x30_c00437{left:263.442000px;}
.x4a_c00437{left:265.798500px;}
.x92_c00437{left:271.620000px;}
.x59_c00437{left:274.320000px;}
.xf_c00437{left:275.670000px;}
.x1c_c00437{left:280.696500px;}
.x3b_c00437{left:288.507000px;}
.x5_c00437{left:290.250000px;}
.x97_c00437{left:291.330000px;}
.x31_c00437{left:292.338000px;}
.x13_c00437{left:293.760000px;}
.x79_c00437{left:299.631000px;}
.x86_c00437{left:301.324500px;}
.x5c_c00437{left:303.210000px;}
.x54_c00437{left:310.366500px;}
.x39_c00437{left:314.550000px;}
.x6_c00437{left:315.630000px;}
.x82_c00437{left:317.968500px;}
.x1_c00437{left:319.410000px;}
.x25_c00437{left:323.691000px;}
.x1d_c00437{left:324.970500px;}
.x5d_c00437{left:326.430000px;}
.x50_c00437{left:327.915000px;}
.x21_c00437{left:329.670000px;}
.x8d_c00437{left:333.990000px;}
.x3c_c00437{left:338.754000px;}
.x5a_c00437{left:340.200000px;}
.x26_c00437{left:342.213000px;}
.x9b_c00437{left:343.915500px;}
.x10_c00437{left:345.600000px;}
.x36_c00437{left:347.607000px;}
.x47_c00437{left:351.463500px;}
.x32_c00437{left:355.204500px;}
.x2d_c00437{left:357.310500px;}
.x55_c00437{left:360.316500px;}
.x27_c00437{left:363.265500px;}
.x6a_c00437{left:365.040000px;}
.x93_c00437{left:366.390000px;}
.x42_c00437{left:367.665000px;}
.x5e_c00437{left:369.900000px;}
.x87_c00437{left:373.414500px;}
.x7_c00437{left:374.760000px;}
.x11_c00437{left:378.000000px;}
.x6b_c00437{left:379.620000px;}
.x37_c00437{left:382.164000px;}
.x14_c00437{left:385.020000px;}
.x22_c00437{left:387.450000px;}
.x5f_c00437{left:389.880000px;}
.x51_c00437{left:391.375500px;}
.x28_c00437{left:393.546000px;}
.x2e_c00437{left:397.557000px;}
.x56_c00437{left:400.066500px;}
.x33_c00437{left:402.187500px;}
.x88_c00437{left:403.654500px;}
.x43_c00437{left:408.117000px;}
.x9c_c00437{left:409.288500px;}
.x8_c00437{left:410.670000px;}
.x7a_c00437{left:411.685500px;}
.x8e_c00437{left:415.800000px;}
.x67_c00437{left:419.782500px;}
.x4b_c00437{left:424.042500px;}
.x34_c00437{left:427.296000px;}
.x38_c00437{left:430.503000px;}
.xa1_c00437{left:434.430000px;}
.x15_c00437{left:435.510000px;}
.x9d_c00437{left:436.531500px;}
.x83_c00437{left:437.583000px;}
.x60_c00437{left:440.910000px;}
.x44_c00437{left:447.262500px;}
.x1e_c00437{left:451.890000px;}
.x9_c00437{left:454.410000px;}
.x12_c00437{left:456.840000px;}
.x7b_c00437{left:458.388000px;}
.x29_c00437{left:462.372000px;}
.x71_c00437{left:463.860000px;}
.x4c_c00437{left:466.444500px;}
.x84_c00437{left:468.591000px;}
.x6c_c00437{left:470.340000px;}
.x61_c00437{left:471.420000px;}
.x45_c00437{left:473.163000px;}
.x89_c00437{left:474.394500px;}
.x16_c00437{left:476.550000px;}
.x94_c00437{left:478.710000px;}
.x57_c00437{left:480.474000px;}
.x62_c00437{left:482.490000px;}
.x1f_c00437{left:484.552500px;}
.x3d_c00437{left:489.411000px;}
.x48_c00437{left:491.596500px;}
.x8a_c00437{left:493.294500px;}
.x6d_c00437{left:495.450000px;}
.x72_c00437{left:503.010000px;}
.xa3_c00437{left:510.993000px;}
.x9e_c00437{left:512.391000px;}
.x8b_c00437{left:513.544500px;}
.xa_c00437{left:515.700000px;}
.x17_c00437{left:518.670000px;}
.x8f_c00437{left:521.100000px;}
.x98_c00437{left:522.450000px;}
.x2a_c00437{left:525.258000px;}
.xb_c00437{left:535.140000px;}
.x20_c00437{left:536.658000px;}
.x9f_c00437{left:539.674500px;}
.x7c_c00437{left:541.266000px;}
.x99_c00437{left:542.970000px;}
.x73_c00437{left:544.590000px;}
.x85_c00437{left:545.811000px;}
.xa2_c00437{left:551.340000px;}
.x7d_c00437{left:555.033000px;}
.x3e_c00437{left:556.665000px;}
.x2f_c00437{left:560.347500px;}
.x90_c00437{left:561.600000px;}
.x65_c00437{left:568.549500px;}
.x95_c00437{left:571.320000px;}
.x91_c00437{left:576.180000px;}
.x6e_c00437{left:581.310000px;}
.x7e_c00437{left:591.517500px;}
.x8c_c00437{left:596.164500px;}
.x74_c00437{left:598.320000px;}
.xa0_c00437{left:610.713000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:0.000000pt;}
._0_c00437{width:1359.342896pt;}
._1_c00437{width:3097.081834pt;}
.fs1a_c00437{font-size:14.933333pt;}
.fs12_c00437{font-size:19.600980pt;}
.fs1b_c00437{font-size:42.000000pt;}
.fs19_c00437{font-size:42.001344pt;}
.fs14_c00437{font-size:44.800000pt;}
.fs15_c00437{font-size:46.666667pt;}
.fs17_c00437{font-size:47.600000pt;}
.fs13_c00437{font-size:53.200000pt;}
.fs18_c00437{font-size:54.133333pt;}
.fs16_c00437{font-size:55.066667pt;}
.fs10_c00437{font-size:56.000000pt;}
.fs6_c00437{font-size:56.002268pt;}
.fsd_c00437{font-size:58.803557pt;}
.fs8_c00437{font-size:61.601971pt;}
.fs4_c00437{font-size:61.604435pt;}
.fs2_c00437{font-size:62.533333pt;}
.fs5_c00437{font-size:62.536460pt;}
.fs0_c00437{font-size:63.466667pt;}
.fs9_c00437{font-size:63.469840pt;}
.fse_c00437{font-size:63.470506pt;}
.fs7_c00437{font-size:63.471236pt;}
.fsf_c00437{font-size:64.400000pt;}
.fs3_c00437{font-size:64.402061pt;}
.fs1_c00437{font-size:66.266667pt;}
.fsb_c00437{font-size:67.203360pt;}
.fsa_c00437{font-size:71.871014pt;}
.fs11_c00437{font-size:73.733333pt;}
.fsc_c00437{font-size:76.537963pt;}
.fs1c_c00437{font-size:212.725188pt;}
.y0_c00437{bottom:0.000000pt;}
.ya9_c00437{bottom:78.045333pt;}
.ya8_c00437{bottom:115.453333pt;}
.ya7_c00437{bottom:121.200000pt;}
.ya6_c00437{bottom:130.987691pt;}
.ya5_c00437{bottom:131.492853pt;}
.ya4_c00437{bottom:131.686869pt;}
.ya3_c00437{bottom:132.226315pt;}
.ya2_c00437{bottom:132.420043pt;}
.ya1_c00437{bottom:132.679264pt;}
.ya0_c00437{bottom:132.884917pt;}
.y9f_c00437{bottom:133.005888pt;}
.y9e_c00437{bottom:133.328469pt;}
.y9d_c00437{bottom:133.516672pt;}
.y9c_c00437{bottom:133.943115pt;}
.y9b_c00437{bottom:134.040843pt;}
.y9a_c00437{bottom:134.121099pt;}
.y99_c00437{bottom:134.400000pt;}
.y98_c00437{bottom:147.926667pt;}
.y97_c00437{bottom:163.490667pt;}
.y96_c00437{bottom:179.626667pt;}
.y95_c00437{bottom:195.208000pt;}
.y94_c00437{bottom:210.502667pt;}
.y93_c00437{bottom:210.872000pt;}
.y92_c00437{bottom:211.014667pt;}
.y91_c00437{bottom:211.648000pt;}
.y90_c00437{bottom:211.769333pt;}
.y8f_c00437{bottom:212.072000pt;}
.y8e_c00437{bottom:212.325333pt;}
.y8d_c00437{bottom:212.637333pt;}
.y8c_c00437{bottom:212.785333pt;}
.y8b_c00437{bottom:213.241333pt;}
.y8a_c00437{bottom:213.785333pt;}
.y89_c00437{bottom:213.936000pt;}
.y88_c00437{bottom:214.205333pt;}
.y87_c00437{bottom:214.532000pt;}
.y86_c00437{bottom:214.740000pt;}
.y85_c00437{bottom:215.041333pt;}
.y84_c00437{bottom:226.406667pt;}
.y83_c00437{bottom:226.666667pt;}
.y82_c00437{bottom:226.764000pt;}
.y81_c00437{bottom:226.885333pt;}
.y80_c00437{bottom:227.353333pt;}
.y7f_c00437{bottom:227.514667pt;}
.y7e_c00437{bottom:227.685333pt;}
.y7d_c00437{bottom:227.913333pt;}
.y7c_c00437{bottom:228.018667pt;}
.y7b_c00437{bottom:228.289333pt;}
.y7a_c00437{bottom:228.481333pt;}
.y79_c00437{bottom:228.617333pt;}
.y78_c00437{bottom:228.800000pt;}
.y77_c00437{bottom:228.873333pt;}
.y76_c00437{bottom:229.121333pt;}
.y75_c00437{bottom:229.226667pt;}
.y74_c00437{bottom:229.440000pt;}
.y73_c00437{bottom:229.680000pt;}
.y72_c00437{bottom:241.970667pt;}
.y71_c00437{bottom:258.240000pt;}
.y6d_c00437{bottom:280.495707pt;}
.y70_c00437{bottom:281.818080pt;}
.y6f_c00437{bottom:282.369280pt;}
.y6e_c00437{bottom:283.497387pt;}
.y6c_c00437{bottom:284.299427pt;}
.y6b_c00437{bottom:284.400000pt;}
.y6a_c00437{bottom:311.900000pt;}
.y69_c00437{bottom:335.233333pt;}
.y68_c00437{bottom:355.201333pt;}
.y67_c00437{bottom:374.482561pt;}
.y66_c00437{bottom:374.714837pt;}
.y65_c00437{bottom:375.268768pt;}
.y64_c00437{bottom:375.657435pt;}
.y63_c00437{bottom:376.145835pt;}
.y62_c00437{bottom:376.352209pt;}
.y61_c00437{bottom:376.671517pt;}
.y60_c00437{bottom:376.976980pt;}
.y5f_c00437{bottom:377.521333pt;}
.y5e_c00437{bottom:394.342296pt;}
.y5d_c00437{bottom:394.859237pt;}
.y5c_c00437{bottom:395.294867pt;}
.y5b_c00437{bottom:395.915369pt;}
.y5a_c00437{bottom:396.295559pt;}
.y59_c00437{bottom:396.764980pt;}
.y58_c00437{bottom:397.032133pt;}
.y57_c00437{bottom:397.441333pt;}
.y56_c00437{bottom:416.552744pt;}
.y55_c00437{bottom:418.081333pt;}
.y54_c00437{bottom:435.404480pt;}
.y53_c00437{bottom:435.615627pt;}
.y52_c00437{bottom:435.992533pt;}
.y51_c00437{bottom:436.229640pt;}
.y50_c00437{bottom:436.960040pt;}
.y4f_c00437{bottom:437.399147pt;}
.y4e_c00437{bottom:437.996547pt;}
.y4d_c00437{bottom:438.241333pt;}
.y4c_c00437{bottom:455.520208pt;}
.y4b_c00437{bottom:456.310067pt;}
.y4a_c00437{bottom:456.545071pt;}
.y49_c00437{bottom:456.890397pt;}
.y48_c00437{bottom:457.231661pt;}
.y47_c00437{bottom:457.498169pt;}
.y46_c00437{bottom:457.841721pt;}
.y45_c00437{bottom:458.641333pt;}
.y44_c00437{bottom:475.772840pt;}
.y43_c00437{bottom:476.003067pt;}
.y42_c00437{bottom:476.351027pt;}
.y41_c00437{bottom:476.710600pt;}
.y40_c00437{bottom:477.481440pt;}
.y3f_c00437{bottom:477.855467pt;}
.y3e_c00437{bottom:478.246693pt;}
.y3d_c00437{bottom:478.446320pt;}
.y3c_c00437{bottom:478.560000pt;}
.y3b_c00437{bottom:496.227051pt;}
.y3a_c00437{bottom:496.705301pt;}
.y39_c00437{bottom:496.893205pt;}
.y38_c00437{bottom:497.321771pt;}
.y37_c00437{bottom:497.513621pt;}
.y36_c00437{bottom:497.776640pt;}
.y35_c00437{bottom:498.133952pt;}
.y34_c00437{bottom:498.610016pt;}
.y33_c00437{bottom:498.961333pt;}
.y32_c00437{bottom:521.412000pt;}
.y31_c00437{bottom:544.363413pt;}
.y30_c00437{bottom:544.945205pt;}
.y2f_c00437{bottom:545.460821pt;}
.y2e_c00437{bottom:545.829429pt;}
.y2d_c00437{bottom:546.405525pt;}
.y2c_c00437{bottom:546.978533pt;}
.y2b_c00437{bottom:547.681333pt;}
.y2a_c00437{bottom:564.635017pt;}
.y29_c00437{bottom:565.093033pt;}
.y28_c00437{bottom:565.293901pt;}
.y27_c00437{bottom:565.669765pt;}
.y26_c00437{bottom:566.172697pt;}
.y25_c00437{bottom:566.403865pt;}
.y24_c00437{bottom:566.823457pt;}
.y23_c00437{bottom:567.121333pt;}
.y22_c00437{bottom:584.101693pt;}
.y21_c00437{bottom:584.855160pt;}
.y20_c00437{bottom:585.203213pt;}
.y1f_c00437{bottom:585.548720pt;}
.y1e_c00437{bottom:585.906467pt;}
.y1d_c00437{bottom:586.275853pt;}
.y1c_c00437{bottom:586.897560pt;}
.y1b_c00437{bottom:587.204573pt;}
.y1a_c00437{bottom:587.521333pt;}
.y19_c00437{bottom:604.056261pt;}
.y18_c00437{bottom:604.727045pt;}
.y17_c00437{bottom:605.461189pt;}
.y16_c00437{bottom:605.784181pt;}
.y15_c00437{bottom:606.008741pt;}
.y14_c00437{bottom:606.206309pt;}
.y13_c00437{bottom:606.708677pt;}
.y12_c00437{bottom:606.993813pt;}
.y11_c00437{bottom:607.529589pt;}
.y10_c00437{bottom:607.797333pt;}
.yf_c00437{bottom:627.261333pt;}
.ye_c00437{bottom:649.985419pt;}
.yd_c00437{bottom:650.355947pt;}
.yc_c00437{bottom:650.588213pt;}
.yb_c00437{bottom:651.064448pt;}
.ya_c00437{bottom:651.490752pt;}
.y9_c00437{bottom:651.805589pt;}
.y8_c00437{bottom:652.128149pt;}
.y7_c00437{bottom:652.345131pt;}
.y6_c00437{bottom:652.450773pt;}
.y5_c00437{bottom:652.560000pt;}
.y4_c00437{bottom:671.796000pt;}
.y3_c00437{bottom:691.932000pt;}
.y2_c00437{bottom:711.984000pt;}
.y1_c00437{bottom:732.618667pt;}
.h1c_c00437{height:14.933333pt;}
.h14_c00437{height:19.600980pt;}
.h1d_c00437{height:42.000000pt;}
.h1b_c00437{height:42.001344pt;}
.h16_c00437{height:44.800000pt;}
.h17_c00437{height:46.666667pt;}
.h19_c00437{height:47.600000pt;}
.h15_c00437{height:53.200000pt;}
.h1a_c00437{height:54.133333pt;}
.h18_c00437{height:55.066667pt;}
.h12_c00437{height:56.000000pt;}
.h8_c00437{height:56.002268pt;}
.hf_c00437{height:58.803557pt;}
.ha_c00437{height:61.601971pt;}
.h6_c00437{height:61.604435pt;}
.h4_c00437{height:62.533333pt;}
.h7_c00437{height:62.536460pt;}
.h2_c00437{height:63.466667pt;}
.hb_c00437{height:63.469840pt;}
.h10_c00437{height:63.470506pt;}
.h9_c00437{height:63.471236pt;}
.h11_c00437{height:64.400000pt;}
.h5_c00437{height:64.402061pt;}
.h3_c00437{height:66.266667pt;}
.hd_c00437{height:67.203360pt;}
.hc_c00437{height:71.871014pt;}
.h13_c00437{height:73.733333pt;}
.he_c00437{height:76.537963pt;}
.h1e_c00437{height:212.725188pt;}
.h0_c00437{height:896.400000pt;}
.h1_c00437{height:896.666667pt;}
.w1_c00437{width:612.666667pt;}
.w0_c00437{width:612.933333pt;}
.x0_c00437{left:0.000000pt;}
.x63_c00437{left:114.948000pt;}
.x75_c00437{left:116.560000pt;}
.x6f_c00437{left:118.320000pt;}
.x64_c00437{left:125.005333pt;}
.x68_c00437{left:127.920000pt;}
.x69_c00437{left:137.280000pt;}
.x3f_c00437{left:141.873333pt;}
.x76_c00437{left:146.552000pt;}
.x4d_c00437{left:150.089333pt;}
.x58_c00437{left:151.200000pt;}
.xc_c00437{left:152.880000pt;}
.x18_c00437{left:155.206667pt;}
.x2b_c00437{left:156.122667pt;}
.x2_c00437{left:158.880000pt;}
.x96_c00437{left:159.840000pt;}
.x9a_c00437{left:161.212000pt;}
.x7f_c00437{left:165.285333pt;}
.x19_c00437{left:168.860000pt;}
.x70_c00437{left:170.880000pt;}
.x40_c00437{left:173.204000pt;}
.x49_c00437{left:176.525333pt;}
.x23_c00437{left:177.452000pt;}
.xd_c00437{left:179.520000pt;}
.x1a_c00437{left:182.065333pt;}
.x77_c00437{left:186.402667pt;}
.x2c_c00437{left:187.798667pt;}
.x4e_c00437{left:189.956000pt;}
.x80_c00437{left:195.038667pt;}
.x3a_c00437{left:196.942667pt;}
.x3_c00437{left:198.720000pt;}
.x52_c00437{left:200.322667pt;}
.x66_c00437{left:205.209333pt;}
.x5b_c00437{left:207.120000pt;}
.x1b_c00437{left:209.188000pt;}
.x41_c00437{left:212.326667pt;}
.x35_c00437{left:213.225333pt;}
.x4f_c00437{left:214.242667pt;}
.x78_c00437{left:217.340000pt;}
.x4_c00437{left:218.880000pt;}
.xe_c00437{left:221.040000pt;}
.x24_c00437{left:222.100000pt;}
.x46_c00437{left:225.928000pt;}
.x53_c00437{left:228.092000pt;}
.x81_c00437{left:233.176000pt;}
.x30_c00437{left:234.170667pt;}
.x4a_c00437{left:236.265333pt;}
.x92_c00437{left:241.440000pt;}
.x59_c00437{left:243.840000pt;}
.xf_c00437{left:245.040000pt;}
.x1c_c00437{left:249.508000pt;}
.x3b_c00437{left:256.450667pt;}
.x5_c00437{left:258.000000pt;}
.x97_c00437{left:258.960000pt;}
.x31_c00437{left:259.856000pt;}
.x13_c00437{left:261.120000pt;}
.x79_c00437{left:266.338667pt;}
.x86_c00437{left:267.844000pt;}
.x5c_c00437{left:269.520000pt;}
.x54_c00437{left:275.881333pt;}
.x39_c00437{left:279.600000pt;}
.x6_c00437{left:280.560000pt;}
.x82_c00437{left:282.638667pt;}
.x1_c00437{left:283.920000pt;}
.x25_c00437{left:287.725333pt;}
.x1d_c00437{left:288.862667pt;}
.x5d_c00437{left:290.160000pt;}
.x50_c00437{left:291.480000pt;}
.x21_c00437{left:293.040000pt;}
.x8d_c00437{left:296.880000pt;}
.x3c_c00437{left:301.114667pt;}
.x5a_c00437{left:302.400000pt;}
.x26_c00437{left:304.189333pt;}
.x9b_c00437{left:305.702667pt;}
.x10_c00437{left:307.200000pt;}
.x36_c00437{left:308.984000pt;}
.x47_c00437{left:312.412000pt;}
.x32_c00437{left:315.737333pt;}
.x2d_c00437{left:317.609333pt;}
.x55_c00437{left:320.281333pt;}
.x27_c00437{left:322.902667pt;}
.x6a_c00437{left:324.480000pt;}
.x93_c00437{left:325.680000pt;}
.x42_c00437{left:326.813333pt;}
.x5e_c00437{left:328.800000pt;}
.x87_c00437{left:331.924000pt;}
.x7_c00437{left:333.120000pt;}
.x11_c00437{left:336.000000pt;}
.x6b_c00437{left:337.440000pt;}
.x37_c00437{left:339.701333pt;}
.x14_c00437{left:342.240000pt;}
.x22_c00437{left:344.400000pt;}
.x5f_c00437{left:346.560000pt;}
.x51_c00437{left:347.889333pt;}
.x28_c00437{left:349.818667pt;}
.x2e_c00437{left:353.384000pt;}
.x56_c00437{left:355.614667pt;}
.x33_c00437{left:357.500000pt;}
.x88_c00437{left:358.804000pt;}
.x43_c00437{left:362.770667pt;}
.x9c_c00437{left:363.812000pt;}
.x8_c00437{left:365.040000pt;}
.x7a_c00437{left:365.942667pt;}
.x8e_c00437{left:369.600000pt;}
.x67_c00437{left:373.140000pt;}
.x4b_c00437{left:376.926667pt;}
.x34_c00437{left:379.818667pt;}
.x38_c00437{left:382.669333pt;}
.xa1_c00437{left:386.160000pt;}
.x15_c00437{left:387.120000pt;}
.x9d_c00437{left:388.028000pt;}
.x83_c00437{left:388.962667pt;}
.x60_c00437{left:391.920000pt;}
.x44_c00437{left:397.566667pt;}
.x1e_c00437{left:401.680000pt;}
.x9_c00437{left:403.920000pt;}
.x12_c00437{left:406.080000pt;}
.x7b_c00437{left:407.456000pt;}
.x29_c00437{left:410.997333pt;}
.x71_c00437{left:412.320000pt;}
.x4c_c00437{left:414.617333pt;}
.x84_c00437{left:416.525333pt;}
.x6c_c00437{left:418.080000pt;}
.x61_c00437{left:419.040000pt;}
.x45_c00437{left:420.589333pt;}
.x89_c00437{left:421.684000pt;}
.x16_c00437{left:423.600000pt;}
.x94_c00437{left:425.520000pt;}
.x57_c00437{left:427.088000pt;}
.x62_c00437{left:428.880000pt;}
.x1f_c00437{left:430.713333pt;}
.x3d_c00437{left:435.032000pt;}
.x48_c00437{left:436.974667pt;}
.x8a_c00437{left:438.484000pt;}
.x6d_c00437{left:440.400000pt;}
.x72_c00437{left:447.120000pt;}
.xa3_c00437{left:454.216000pt;}
.x9e_c00437{left:455.458667pt;}
.x8b_c00437{left:456.484000pt;}
.xa_c00437{left:458.400000pt;}
.x17_c00437{left:461.040000pt;}
.x8f_c00437{left:463.200000pt;}
.x98_c00437{left:464.400000pt;}
.x2a_c00437{left:466.896000pt;}
.xb_c00437{left:475.680000pt;}
.x20_c00437{left:477.029333pt;}
.x9f_c00437{left:479.710667pt;}
.x7c_c00437{left:481.125333pt;}
.x99_c00437{left:482.640000pt;}
.x73_c00437{left:484.080000pt;}
.x85_c00437{left:485.165333pt;}
.xa2_c00437{left:490.080000pt;}
.x7d_c00437{left:493.362667pt;}
.x3e_c00437{left:494.813333pt;}
.x2f_c00437{left:498.086667pt;}
.x90_c00437{left:499.200000pt;}
.x65_c00437{left:505.377333pt;}
.x95_c00437{left:507.840000pt;}
.x91_c00437{left:512.160000pt;}
.x6e_c00437{left:516.720000pt;}
.x7e_c00437{left:525.793333pt;}
.x8c_c00437{left:529.924000pt;}
.x74_c00437{left:531.840000pt;}
.xa0_c00437{left:542.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.m9_c00438{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);}
.m2a_c00438{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.016100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016100,0.000000,0.000000,0.250000,0,0);}
.meb_c00438{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.030530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030530,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.042185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042185,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);}
.m66_c00438{transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057055,0.000000,0.000000,0.250000,0,0);}
.mde_c00438{transform:matrix(0.089800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089800,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);}
.mea_c00438{transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);}
.md6_c00438{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.mc2_c00438{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);}
.md1_c00438{transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138890,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{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);}
.m4b_c00438{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);}
.m43_c00438{transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148080,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{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);}
.m2f_c00438{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);}
.m46_c00438{transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156270,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{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);}
.m53_c00438{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);}
.m64_c00438{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);}
.m90_c00438{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);}
.m54_c00438{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);}
.m93_c00438{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);}
.me0_c00438{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);}
.me6_c00438{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);}
.mae_c00438{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);}
.mf_c00438{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);}
.mda_c00438{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);}
.m2e_c00438{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);}
.m15_c00438{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);}
.m20_c00438{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.m24_c00438{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);}
.mc7_c00438{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);}
.m42_c00438{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);}
.m48_c00438{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{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);}
.m63_c00438{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);}
.m1d_c00438{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);}
.m89_c00438{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);}
.m1f_c00438{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);}
.m22_c00438{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);}
.m2_c00438{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me1_c00438{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);}
.me5_c00438{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);}
.m4f_c00438{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);}
.m59_c00438{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);}
.m99_c00438{transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180145,0.000000,0.000000,0.250000,0,0);}
.m47_c00438{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{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);}
.m74_c00438{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);}
.mc_c00438{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);}
.m8a_c00438{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);}
.me9_c00438{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);}
.ma9_c00438{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);}
.mbf_c00438{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);}
.m3e_c00438{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);}
.m23_c00438{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);}
.m5e_c00438{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);}
.m44_c00438{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);}
.m5a_c00438{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);}
.m56_c00438{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);}
.mf4_c00438{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);}
.m21_c00438{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);}
.m28_c00438{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);}
.m62_c00438{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);}
.m60_c00438{transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186140,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{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);}
.m3d_c00438{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);}
.m77_c00438{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);}
.m39_c00438{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);}
.m9a_c00438{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);}
.m7d_c00438{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);}
.m50_c00438{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);}
.m11_c00438{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);}
.mac_c00438{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);}
.m38_c00438{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_c00438{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);}
.m92_c00438{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);}
.mcd_c00438{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);}
.m3_c00438{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);}
.mb6_c00438{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);}
.m4d_c00438{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);}
.m5f_c00438{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);}
.m45_c00438{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);}
.m85_c00438{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);}
.m75_c00438{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);}
.m71_c00438{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);}
.m13_c00438{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);}
.mbc_c00438{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);}
.m9e_c00438{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);}
.m6c_c00438{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);}
.m51_c00438{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);}
.m52_c00438{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);}
.mc5_c00438{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);}
.mca_c00438{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);}
.ma6_c00438{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);}
.m5b_c00438{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);}
.m5d_c00438{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);}
.me_c00438{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);}
.me3_c00438{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);}
.md_c00438{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);}
.m95_c00438{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);}
.m4_c00438{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);}
.m36_c00438{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);}
.mc0_c00438{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);}
.m1e_c00438{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);}
.m55_c00438{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);}
.m68_c00438{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);}
.m7e_c00438{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);}
.m8_c00438{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);}
.m40_c00438{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);}
.mef_c00438{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);}
.m6a_c00438{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_c00438{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);}
.ma5_c00438{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);}
.m8b_c00438{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);}
.m9b_c00438{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);}
.mf3_c00438{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);}
.m8e_c00438{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);}
.m7b_c00438{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);}
.ma2_c00438{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);}
.m3c_c00438{transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213810,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{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);}
.m57_c00438{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);}
.m65_c00438{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);}
.mc4_c00438{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);}
.mb5_c00438{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);}
.m9c_c00438{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);}
.m3a_c00438{transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{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);}
.ma1_c00438{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);}
.mb0_c00438{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);}
.mcc_c00438{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);}
.m7f_c00438{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);}
.m58_c00438{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);}
.m6_c00438{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);}
.maf_c00438{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);}
.m88_c00438{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);}
.m81_c00438{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);}
.m61_c00438{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);}
.mb7_c00438{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);}
.m8d_c00438{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);}
.md5_c00438{transform:matrix(0.223740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223740,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{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);}
.mb3_c00438{transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{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);}
.m37_c00438{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);}
.m98_c00438{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);}
.mbb_c00438{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);}
.m73_c00438{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);}
.m16_c00438{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);}
.mbd_c00438{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);}
.mec_c00438{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);}
.m91_c00438{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);}
.m1c_c00438{transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00438{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);}
.mee_c00438{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);}
.mdb_c00438{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);}
.m1_c00438{transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);}
.mb4_c00438{transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{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);}
.m3b_c00438{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);}
.m27_c00438{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);}
.m4e_c00438{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);}
.m14_c00438{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);}
.mcb_c00438{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{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);}
.mc1_c00438{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.md4_c00438{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);}
.ma8_c00438{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);}
.md3_c00438{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);}
.me2_c00438{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);}
.mba_c00438{transform:matrix(0.253225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00438{transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{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);}
.ma0_c00438{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{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);}
.m5_c00438{transform:matrix(0.257830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257830,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{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);}
.mc9_c00438{transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262670,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265180,0.000000,0.000000,0.250000,0,0);}
.m7a_c00438{transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268505,0.000000,0.000000,0.250000,0,0);}
.mb9_c00438{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.md0_c00438{transform:matrix(0.271385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271385,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{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);}
.mdc_c00438{transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275360,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{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);}
.m1a_c00438{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);}
.m96_c00438{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);}
.mf1_c00438{transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);}
.mdf_c00438{transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);}
.m9f_c00438{transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282440,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{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);}
.me8_c00438{transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291735,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.298670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298670,0.000000,0.000000,0.250000,0,0);}
.m82_c00438{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);}
.md8_c00438{transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302135,0.000000,0.000000,0.250000,0,0);}
.mdd_c00438{transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306675,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.309585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309585,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311300,0.000000,0.000000,0.250000,0,0);}
.mad_c00438{transform:matrix(0.313885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313885,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316850,0.000000,0.000000,0.250000,0,0);}
.mf5_c00438{transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319105,0.000000,0.000000,0.250000,0,0);}
.mc8_c00438{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);}
.m33_c00438{transform:matrix(0.320970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320970,0.000000,0.000000,0.250000,0,0);}
.mce_c00438{transform:matrix(0.322305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322305,0.000000,0.000000,0.250000,0,0);}
.md2_c00438{transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.327425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327425,0.000000,0.000000,0.250000,0,0);}
.mf2_c00438{transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328935,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338535,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339615,0.000000,0.000000,0.250000,0,0);}
.med_c00438{transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.346140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346140,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);}
.me4_c00438{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{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);}
.mb1_c00438{transform:matrix(0.368555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368555,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.373805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373805,0.000000,0.000000,0.250000,0,0);}
.md9_c00438{transform:matrix(0.376260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376260,0.000000,0.000000,0.250000,0,0);}
.md7_c00438{transform:matrix(0.396755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396755,0.000000,0.000000,0.250000,0,0);}
.mf6_c00438{transform:matrix(0.410620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410620,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.416330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416330,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.429985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429985,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444600,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.451965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451965,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.472575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472575,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.502290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502290,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.514510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514510,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.607735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607735,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.648505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648505,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{transform:matrix(0.698435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698435,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;}
.fc0_c00438{color:transparent;}
.fs11_c00438{font-size:48.300000px;}
.fse_c00438{font-size:49.350000px;}
.fsd_c00438{font-size:50.400000px;}
.fsf_c00438{font-size:54.600000px;}
.fs10_c00438{font-size:60.900000px;}
.fs5_c00438{font-size:64.050000px;}
.fsb_c00438{font-size:65.100000px;}
.fs9_c00438{font-size:68.250000px;}
.fs8_c00438{font-size:69.300000px;}
.fs1_c00438{font-size:70.350000px;}
.fs2_c00438{font-size:71.400000px;}
.fs0_c00438{font-size:72.450000px;}
.fs4_c00438{font-size:74.550000px;}
.fs6_c00438{font-size:75.600000px;}
.fs7_c00438{font-size:76.650000px;}
.fsa_c00438{font-size:79.800000px;}
.fsc_c00438{font-size:90.300000px;}
.fs3_c00438{font-size:94.500000px;}
.y0_c00438{bottom:0.000000px;}
.y1f_c00438{bottom:125.280000px;}
.y1e_c00438{bottom:146.068500px;}
.y1d_c00438{bottom:164.689500px;}
.y1c_c00438{bottom:182.341500px;}
.y1b_c00438{bottom:200.128500px;}
.y1a_c00438{bottom:217.425000px;}
.y19_c00438{bottom:235.492500px;}
.y18_c00438{bottom:253.066500px;}
.y17_c00438{bottom:271.134000px;}
.y16_c00438{bottom:288.660000px;}
.y15_c00438{bottom:335.415000px;}
.y14_c00438{bottom:358.312500px;}
.y13_c00438{bottom:381.031500px;}
.y12_c00438{bottom:403.878000px;}
.y11_c00438{bottom:427.227000px;}
.y10_c00438{bottom:449.868000px;}
.yf_c00438{bottom:472.276500px;}
.ye_c00438{bottom:494.352000px;}
.yd_c00438{bottom:517.516500px;}
.yc_c00438{bottom:540.330000px;}
.yb_c00438{bottom:563.490000px;}
.ya_c00438{bottom:585.540000px;}
.y9_c00438{bottom:608.901000px;}
.y8_c00438{bottom:653.739000px;}
.y7_c00438{bottom:677.289000px;}
.y6_c00438{bottom:699.226500px;}
.y5_c00438{bottom:722.310000px;}
.y4_c00438{bottom:744.657000px;}
.y3_c00438{bottom:768.594000px;}
.y2_c00438{bottom:790.098000px;}
.y1_c00438{bottom:814.704000px;}
.h13_c00438{height:48.300000px;}
.h10_c00438{height:49.350000px;}
.hf_c00438{height:50.400000px;}
.h11_c00438{height:54.600000px;}
.h12_c00438{height:60.900000px;}
.h7_c00438{height:64.050000px;}
.hd_c00438{height:65.100000px;}
.hb_c00438{height:68.250000px;}
.ha_c00438{height:69.300000px;}
.h3_c00438{height:70.350000px;}
.h4_c00438{height:71.400000px;}
.h2_c00438{height:72.450000px;}
.h6_c00438{height:74.550000px;}
.h8_c00438{height:75.600000px;}
.h9_c00438{height:76.650000px;}
.hc_c00438{height:79.800000px;}
.he_c00438{height:90.300000px;}
.h5_c00438{height:94.500000px;}
.h1_c00438{height:1005.000000px;}
.h0_c00438{height:1005.150000px;}
.w0_c00438{width:715.200000px;}
.w1_c00438{width:715.500000px;}
.x0_c00438{left:0.000000px;}
.x8c_c00438{left:85.860000px;}
.x6b_c00438{left:92.610000px;}
.x83_c00438{left:93.960000px;}
.x64_c00438{left:95.310000px;}
.x79_c00438{left:107.190000px;}
.x50_c00438{left:117.450000px;}
.x55_c00438{left:122.310000px;}
.x2b_c00438{left:124.740000px;}
.x1c_c00438{left:127.170000px;}
.x2_c00438{left:128.520000px;}
.xf_c00438{left:131.490000px;}
.x24_c00438{left:132.840000px;}
.x7a_c00438{left:149.580000px;}
.x8f_c00438{left:150.930000px;}
.x84_c00438{left:153.090000px;}
.x8d_c00438{left:154.710000px;}
.x31_c00438{left:156.600000px;}
.x39_c00438{left:157.950000px;}
.x25_c00438{left:162.270000px;}
.x6c_c00438{left:164.430000px;}
.x43_c00438{left:168.210000px;}
.x10_c00438{left:170.370000px;}
.x1d_c00438{left:171.990000px;}
.x11_c00438{left:176.310000px;}
.x3_c00438{left:177.930000px;}
.x5c_c00438{left:181.170000px;}
.x2c_c00438{left:183.330000px;}
.x44_c00438{left:184.410000px;}
.x6d_c00438{left:186.840000px;}
.x26_c00438{left:188.730000px;}
.x56_c00438{left:190.350000px;}
.xa_c00438{left:193.320000px;}
.x81_c00438{left:195.750000px;}
.x32_c00438{left:198.450000px;}
.x7f_c00438{left:199.530000px;}
.x7b_c00438{left:200.610000px;}
.x4_c00438{left:202.500000px;}
.x12_c00438{left:204.120000px;}
.x45_c00438{left:206.820000px;}
.x3f_c00438{left:210.600000px;}
.x80_c00438{left:214.110000px;}
.x1e_c00438{left:221.940000px;}
.x18_c00438{left:223.560000px;}
.x27_c00438{left:225.180000px;}
.x63_c00438{left:226.260000px;}
.x85_c00438{left:230.310000px;}
.x28_c00438{left:231.660000px;}
.x57_c00438{left:234.630000px;}
.x4c_c00438{left:240.300000px;}
.x82_c00438{left:242.460000px;}
.x6e_c00438{left:243.810000px;}
.x1f_c00438{left:246.510000px;}
.x89_c00438{left:248.400000px;}
.x46_c00438{left:251.370000px;}
.x65_c00438{left:252.990000px;}
.x5_c00438{left:254.880000px;}
.x40_c00438{left:256.230000px;}
.x86_c00438{left:257.310000px;}
.x3a_c00438{left:260.010000px;}
.x13_c00438{left:261.360000px;}
.x1_c00438{left:262.440000px;}
.x7c_c00438{left:263.790000px;}
.x33_c00438{left:265.410000px;}
.x2d_c00438{left:266.760000px;}
.x5b_c00438{left:270.000000px;}
.x51_c00438{left:271.350000px;}
.x19_c00438{left:276.480000px;}
.x20_c00438{left:277.560000px;}
.x90_c00438{left:278.640000px;}
.x38_c00438{left:282.150000px;}
.x23_c00438{left:283.230000px;}
.xb_c00438{left:285.390000px;}
.x2e_c00438{left:287.550000px;}
.x3b_c00438{left:288.900000px;}
.x47_c00438{left:289.980000px;}
.x14_c00438{left:299.430000px;}
.x8a_c00438{left:301.320000px;}
.x8e_c00438{left:303.210000px;}
.x41_c00438{left:305.910000px;}
.x21_c00438{left:311.040000px;}
.x34_c00438{left:312.390000px;}
.x74_c00438{left:314.010000px;}
.x52_c00438{left:318.330000px;}
.x5d_c00438{left:321.300000px;}
.x48_c00438{left:323.730000px;}
.x3c_c00438{left:330.750000px;}
.x53_c00438{left:333.450000px;}
.x29_c00438{left:334.800000px;}
.x7d_c00438{left:336.420000px;}
.x2f_c00438{left:340.470000px;}
.xc_c00438{left:341.820000px;}
.x6f_c00438{left:343.440000px;}
.x61_c00438{left:345.060000px;}
.x6_c00438{left:346.140000px;}
.x1a_c00438{left:349.920000px;}
.x5e_c00438{left:351.000000px;}
.x8b_c00438{left:354.510000px;}
.x2a_c00438{left:356.130000px;}
.x87_c00438{left:357.480000px;}
.x15_c00438{left:360.450000px;}
.x4d_c00438{left:362.340000px;}
.x35_c00438{left:364.500000px;}
.xd_c00438{left:368.010000px;}
.x7_c00438{left:370.980000px;}
.x70_c00438{left:372.060000px;}
.x66_c00438{left:373.680000px;}
.x58_c00438{left:376.380000px;}
.x5f_c00438{left:377.460000px;}
.x88_c00438{left:379.080000px;}
.x16_c00438{left:385.290000px;}
.x36_c00438{left:389.340000px;}
.x49_c00438{left:390.690000px;}
.x30_c00438{left:393.930000px;}
.x8_c00438{left:395.010000px;}
.x75_c00438{left:397.980000px;}
.x17_c00438{left:404.460000px;}
.x67_c00438{left:410.940000px;}
.x4e_c00438{left:414.720000px;}
.x42_c00438{left:415.800000px;}
.x22_c00438{left:421.470000px;}
.x60_c00438{left:424.170000px;}
.x4a_c00438{left:427.950000px;}
.x62_c00438{left:432.810000px;}
.x37_c00438{left:438.480000px;}
.x3d_c00438{left:441.180000px;}
.x71_c00438{left:443.340000px;}
.x9_c00438{left:448.200000px;}
.x76_c00438{left:449.280000px;}
.x59_c00438{left:454.410000px;}
.x4f_c00438{left:457.650000px;}
.xe_c00438{left:461.700000px;}
.x4b_c00438{left:468.720000px;}
.x72_c00438{left:475.740000px;}
.x77_c00438{left:478.440000px;}
.x68_c00438{left:494.370000px;}
.x73_c00438{left:501.120000px;}
.x7e_c00438{left:515.970000px;}
.x54_c00438{left:517.050000px;}
.x5a_c00438{left:521.100000px;}
.x69_c00438{left:523.530000px;}
.x78_c00438{left:527.850000px;}
.x3e_c00438{left:534.870000px;}
.x1b_c00438{left:540.810000px;}
.x6a_c00438{left:550.260000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.fs11_c00438{font-size:42.933333pt;}
.fse_c00438{font-size:43.866667pt;}
.fsd_c00438{font-size:44.800000pt;}
.fsf_c00438{font-size:48.533333pt;}
.fs10_c00438{font-size:54.133333pt;}
.fs5_c00438{font-size:56.933333pt;}
.fsb_c00438{font-size:57.866667pt;}
.fs9_c00438{font-size:60.666667pt;}
.fs8_c00438{font-size:61.600000pt;}
.fs1_c00438{font-size:62.533333pt;}
.fs2_c00438{font-size:63.466667pt;}
.fs0_c00438{font-size:64.400000pt;}
.fs4_c00438{font-size:66.266667pt;}
.fs6_c00438{font-size:67.200000pt;}
.fs7_c00438{font-size:68.133333pt;}
.fsa_c00438{font-size:70.933333pt;}
.fsc_c00438{font-size:80.266667pt;}
.fs3_c00438{font-size:84.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y1f_c00438{bottom:111.360000pt;}
.y1e_c00438{bottom:129.838667pt;}
.y1d_c00438{bottom:146.390667pt;}
.y1c_c00438{bottom:162.081333pt;}
.y1b_c00438{bottom:177.892000pt;}
.y1a_c00438{bottom:193.266667pt;}
.y19_c00438{bottom:209.326667pt;}
.y18_c00438{bottom:224.948000pt;}
.y17_c00438{bottom:241.008000pt;}
.y16_c00438{bottom:256.586667pt;}
.y15_c00438{bottom:298.146667pt;}
.y14_c00438{bottom:318.500000pt;}
.y13_c00438{bottom:338.694667pt;}
.y12_c00438{bottom:359.002667pt;}
.y11_c00438{bottom:379.757333pt;}
.y10_c00438{bottom:399.882667pt;}
.yf_c00438{bottom:419.801333pt;}
.ye_c00438{bottom:439.424000pt;}
.yd_c00438{bottom:460.014667pt;}
.yc_c00438{bottom:480.293333pt;}
.yb_c00438{bottom:500.880000pt;}
.ya_c00438{bottom:520.480000pt;}
.y9_c00438{bottom:541.245333pt;}
.y8_c00438{bottom:581.101333pt;}
.y7_c00438{bottom:602.034667pt;}
.y6_c00438{bottom:621.534667pt;}
.y5_c00438{bottom:642.053333pt;}
.y4_c00438{bottom:661.917333pt;}
.y3_c00438{bottom:683.194667pt;}
.y2_c00438{bottom:702.309333pt;}
.y1_c00438{bottom:724.181333pt;}
.h13_c00438{height:42.933333pt;}
.h10_c00438{height:43.866667pt;}
.hf_c00438{height:44.800000pt;}
.h11_c00438{height:48.533333pt;}
.h12_c00438{height:54.133333pt;}
.h7_c00438{height:56.933333pt;}
.hd_c00438{height:57.866667pt;}
.hb_c00438{height:60.666667pt;}
.ha_c00438{height:61.600000pt;}
.h3_c00438{height:62.533333pt;}
.h4_c00438{height:63.466667pt;}
.h2_c00438{height:64.400000pt;}
.h6_c00438{height:66.266667pt;}
.h8_c00438{height:67.200000pt;}
.h9_c00438{height:68.133333pt;}
.hc_c00438{height:70.933333pt;}
.he_c00438{height:80.266667pt;}
.h5_c00438{height:84.000000pt;}
.h1_c00438{height:893.333333pt;}
.h0_c00438{height:893.466667pt;}
.w0_c00438{width:635.733333pt;}
.w1_c00438{width:636.000000pt;}
.x0_c00438{left:0.000000pt;}
.x8c_c00438{left:76.320000pt;}
.x6b_c00438{left:82.320000pt;}
.x83_c00438{left:83.520000pt;}
.x64_c00438{left:84.720000pt;}
.x79_c00438{left:95.280000pt;}
.x50_c00438{left:104.400000pt;}
.x55_c00438{left:108.720000pt;}
.x2b_c00438{left:110.880000pt;}
.x1c_c00438{left:113.040000pt;}
.x2_c00438{left:114.240000pt;}
.xf_c00438{left:116.880000pt;}
.x24_c00438{left:118.080000pt;}
.x7a_c00438{left:132.960000pt;}
.x8f_c00438{left:134.160000pt;}
.x84_c00438{left:136.080000pt;}
.x8d_c00438{left:137.520000pt;}
.x31_c00438{left:139.200000pt;}
.x39_c00438{left:140.400000pt;}
.x25_c00438{left:144.240000pt;}
.x6c_c00438{left:146.160000pt;}
.x43_c00438{left:149.520000pt;}
.x10_c00438{left:151.440000pt;}
.x1d_c00438{left:152.880000pt;}
.x11_c00438{left:156.720000pt;}
.x3_c00438{left:158.160000pt;}
.x5c_c00438{left:161.040000pt;}
.x2c_c00438{left:162.960000pt;}
.x44_c00438{left:163.920000pt;}
.x6d_c00438{left:166.080000pt;}
.x26_c00438{left:167.760000pt;}
.x56_c00438{left:169.200000pt;}
.xa_c00438{left:171.840000pt;}
.x81_c00438{left:174.000000pt;}
.x32_c00438{left:176.400000pt;}
.x7f_c00438{left:177.360000pt;}
.x7b_c00438{left:178.320000pt;}
.x4_c00438{left:180.000000pt;}
.x12_c00438{left:181.440000pt;}
.x45_c00438{left:183.840000pt;}
.x3f_c00438{left:187.200000pt;}
.x80_c00438{left:190.320000pt;}
.x1e_c00438{left:197.280000pt;}
.x18_c00438{left:198.720000pt;}
.x27_c00438{left:200.160000pt;}
.x63_c00438{left:201.120000pt;}
.x85_c00438{left:204.720000pt;}
.x28_c00438{left:205.920000pt;}
.x57_c00438{left:208.560000pt;}
.x4c_c00438{left:213.600000pt;}
.x82_c00438{left:215.520000pt;}
.x6e_c00438{left:216.720000pt;}
.x1f_c00438{left:219.120000pt;}
.x89_c00438{left:220.800000pt;}
.x46_c00438{left:223.440000pt;}
.x65_c00438{left:224.880000pt;}
.x5_c00438{left:226.560000pt;}
.x40_c00438{left:227.760000pt;}
.x86_c00438{left:228.720000pt;}
.x3a_c00438{left:231.120000pt;}
.x13_c00438{left:232.320000pt;}
.x1_c00438{left:233.280000pt;}
.x7c_c00438{left:234.480000pt;}
.x33_c00438{left:235.920000pt;}
.x2d_c00438{left:237.120000pt;}
.x5b_c00438{left:240.000000pt;}
.x51_c00438{left:241.200000pt;}
.x19_c00438{left:245.760000pt;}
.x20_c00438{left:246.720000pt;}
.x90_c00438{left:247.680000pt;}
.x38_c00438{left:250.800000pt;}
.x23_c00438{left:251.760000pt;}
.xb_c00438{left:253.680000pt;}
.x2e_c00438{left:255.600000pt;}
.x3b_c00438{left:256.800000pt;}
.x47_c00438{left:257.760000pt;}
.x14_c00438{left:266.160000pt;}
.x8a_c00438{left:267.840000pt;}
.x8e_c00438{left:269.520000pt;}
.x41_c00438{left:271.920000pt;}
.x21_c00438{left:276.480000pt;}
.x34_c00438{left:277.680000pt;}
.x74_c00438{left:279.120000pt;}
.x52_c00438{left:282.960000pt;}
.x5d_c00438{left:285.600000pt;}
.x48_c00438{left:287.760000pt;}
.x3c_c00438{left:294.000000pt;}
.x53_c00438{left:296.400000pt;}
.x29_c00438{left:297.600000pt;}
.x7d_c00438{left:299.040000pt;}
.x2f_c00438{left:302.640000pt;}
.xc_c00438{left:303.840000pt;}
.x6f_c00438{left:305.280000pt;}
.x61_c00438{left:306.720000pt;}
.x6_c00438{left:307.680000pt;}
.x1a_c00438{left:311.040000pt;}
.x5e_c00438{left:312.000000pt;}
.x8b_c00438{left:315.120000pt;}
.x2a_c00438{left:316.560000pt;}
.x87_c00438{left:317.760000pt;}
.x15_c00438{left:320.400000pt;}
.x4d_c00438{left:322.080000pt;}
.x35_c00438{left:324.000000pt;}
.xd_c00438{left:327.120000pt;}
.x7_c00438{left:329.760000pt;}
.x70_c00438{left:330.720000pt;}
.x66_c00438{left:332.160000pt;}
.x58_c00438{left:334.560000pt;}
.x5f_c00438{left:335.520000pt;}
.x88_c00438{left:336.960000pt;}
.x16_c00438{left:342.480000pt;}
.x36_c00438{left:346.080000pt;}
.x49_c00438{left:347.280000pt;}
.x30_c00438{left:350.160000pt;}
.x8_c00438{left:351.120000pt;}
.x75_c00438{left:353.760000pt;}
.x17_c00438{left:359.520000pt;}
.x67_c00438{left:365.280000pt;}
.x4e_c00438{left:368.640000pt;}
.x42_c00438{left:369.600000pt;}
.x22_c00438{left:374.640000pt;}
.x60_c00438{left:377.040000pt;}
.x4a_c00438{left:380.400000pt;}
.x62_c00438{left:384.720000pt;}
.x37_c00438{left:389.760000pt;}
.x3d_c00438{left:392.160000pt;}
.x71_c00438{left:394.080000pt;}
.x9_c00438{left:398.400000pt;}
.x76_c00438{left:399.360000pt;}
.x59_c00438{left:403.920000pt;}
.x4f_c00438{left:406.800000pt;}
.xe_c00438{left:410.400000pt;}
.x4b_c00438{left:416.640000pt;}
.x72_c00438{left:422.880000pt;}
.x77_c00438{left:425.280000pt;}
.x68_c00438{left:439.440000pt;}
.x73_c00438{left:445.440000pt;}
.x7e_c00438{left:458.640000pt;}
.x54_c00438{left:459.600000pt;}
.x5a_c00438{left:463.200000pt;}
.x69_c00438{left:465.360000pt;}
.x78_c00438{left:469.200000pt;}
.x3e_c00438{left:475.440000pt;}
.x1b_c00438{left:480.720000pt;}
.x6a_c00438{left:489.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_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_ef4e99a7aa2876b3106553d3.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;}
.m93_c00439{transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);}
.me9_c00439{transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017675,0.000000,0.000000,0.250000,0,0);}
.m6c_c00439{transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026230,0.000000,0.000000,0.250000,0,0);}
.mb4_c00439{transform:matrix(0.053880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053880,0.000000,0.000000,0.250000,0,0);}
.mdf_c00439{transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058925,0.000000,0.000000,0.250000,0,0);}
.md5_c00439{transform:matrix(0.059370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059370,0.000000,0.000000,0.250000,0,0);}
.m109_c00439{transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.112495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112495,0.000000,0.000000,0.250000,0,0);}
.md6_c00439{transform:matrix(0.113530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113530,0.000000,0.000000,0.250000,0,0);}
.ma8_c00439{transform:matrix(0.117945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117945,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.118530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118530,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{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);}
.meb_c00439{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);}
.m3_c00439{transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{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);}
.m89_c00439{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);}
.mfa_c00439{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{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);}
.m2b_c00439{transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{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);}
.mb2_c00439{transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161570,0.000000,0.000000,0.250000,0,0);}
.m92_c00439{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);}
.m96_c00439{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);}
.m46_c00439{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);}
.med_c00439{transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164045,0.000000,0.000000,0.250000,0,0);}
.mac_c00439{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);}
.m8_c00439{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);}
.m8a_c00439{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);}
.mc9_c00439{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);}
.m26_c00439{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);}
.m10_c00439{transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{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);}
.m7b_c00439{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);}
.mef_c00439{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);}
.m34_c00439{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);}
.mb3_c00439{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);}
.mf_c00439{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);}
.m13_c00439{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);}
.m1b_c00439{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);}
.m116_c00439{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);}
.m6_c00439{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);}
.mb7_c00439{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);}
.m29_c00439{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);}
.m35_c00439{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);}
.m6b_c00439{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);}
.m2a_c00439{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);}
.mcb_c00439{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);}
.mf7_c00439{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);}
.m4f_c00439{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);}
.m2d_c00439{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);}
.m33_c00439{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);}
.m10c_c00439{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);}
.mf0_c00439{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);}
.md3_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);}
.m2f_c00439{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);}
.m85_c00439{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);}
.m86_c00439{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);}
.m65_c00439{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);}
.m125_c00439{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);}
.m25_c00439{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_c00439{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);}
.m128_c00439{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);}
.m112_c00439{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);}
.m43_c00439{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);}
.ma1_c00439{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);}
.m4a_c00439{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);}
.mdb_c00439{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);}
.m66_c00439{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);}
.mc_c00439{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);}
.me2_c00439{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);}
.m1c_c00439{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);}
.m0_c00439{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);}
.m24_c00439{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);}
.m80_c00439{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);}
.m64_c00439{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);}
.m98_c00439{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);}
.m41_c00439{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);}
.mc5_c00439{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);}
.md4_c00439{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);}
.mbb_c00439{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);}
.m15_c00439{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);}
.m21_c00439{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00439{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);}
.mee_c00439{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);}
.m10e_c00439{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);}
.m83_c00439{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);}
.mb0_c00439{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);}
.m81_c00439{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);}
.m10b_c00439{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);}
.mec_c00439{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);}
.m45_c00439{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);}
.m4_c00439{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);}
.m90_c00439{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);}
.m78_c00439{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);}
.m11e_c00439{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);}
.m42_c00439{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);}
.m97_c00439{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);}
.mc8_c00439{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);}
.mcd_c00439{transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196715,0.000000,0.000000,0.250000,0,0);}
.m62_c00439{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);}
.m11b_c00439{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);}
.m23_c00439{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);}
.m63_c00439{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);}
.m119_c00439{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);}
.m110_c00439{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);}
.ma_c00439{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);}
.m113_c00439{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);}
.mcf_c00439{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);}
.mda_c00439{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);}
.md_c00439{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);}
.m123_c00439{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);}
.m61_c00439{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);}
.m20_c00439{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_c00439{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);}
.m79_c00439{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);}
.m54_c00439{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);}
.m18_c00439{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);}
.m60_c00439{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);}
.m31_c00439{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);}
.m1e_c00439{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);}
.mf6_c00439{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);}
.m7_c00439{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);}
.m19_c00439{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);}
.mc6_c00439{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);}
.m120_c00439{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);}
.mc7_c00439{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);}
.m7c_c00439{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);}
.mb9_c00439{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);}
.m3d_c00439{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);}
.me4_c00439{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);}
.m91_c00439{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);}
.m8f_c00439{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);}
.m5a_c00439{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);}
.m4c_c00439{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);}
.m9e_c00439{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);}
.m1a_c00439{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);}
.m8c_c00439{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);}
.m8e_c00439{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);}
.m2e_c00439{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);}
.me1_c00439{transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210110,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{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);}
.m17_c00439{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);}
.mc1_c00439{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);}
.mf8_c00439{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);}
.md2_c00439{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);}
.m122_c00439{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);}
.mbf_c00439{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);}
.mbe_c00439{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);}
.mf9_c00439{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);}
.m9a_c00439{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);}
.m9f_c00439{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);}
.m5d_c00439{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);}
.m76_c00439{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);}
.m12_c00439{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);}
.md1_c00439{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);}
.m14_c00439{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);}
.mf3_c00439{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);}
.m114_c00439{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);}
.m118_c00439{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);}
.m44_c00439{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);}
.m5f_c00439{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);}
.m8d_c00439{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);}
.m73_c00439{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.m7a_c00439{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);}
.mce_c00439{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);}
.mca_c00439{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);}
.m121_c00439{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);}
.m87_c00439{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);}
.md9_c00439{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);}
.m28_c00439{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);}
.m127_c00439{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);}
.mad_c00439{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);}
.m4b_c00439{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);}
.m11a_c00439{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);}
.m108_c00439{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.m69_c00439{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);}
.mfe_c00439{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);}
.mf2_c00439{transform:matrix(0.229620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229620,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229665,0.000000,0.000000,0.250000,0,0);}
.m67_c00439{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);}
.m68_c00439{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);}
.m75_c00439{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);}
.m7f_c00439{transform:matrix(0.230705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230705,0.000000,0.000000,0.250000,0,0);}
.m71_c00439{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);}
.m117_c00439{transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);}
.mfc_c00439{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);}
.mb8_c00439{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m11d_c00439{transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{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);}
.m7d_c00439{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.ma6_c00439{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{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);}
.m4e_c00439{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);}
.me6_c00439{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);}
.m11_c00439{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);}
.m4d_c00439{transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236840,0.000000,0.000000,0.250000,0,0);}
.me_c00439{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);}
.m84_c00439{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);}
.m77_c00439{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);}
.m5e_c00439{transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.mb5_c00439{transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238130,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{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);}
.m55_c00439{transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{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);}
.m126_c00439{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);}
.m115_c00439{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);}
.me3_c00439{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);}
.m9_c00439{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);}
.ma3_c00439{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m111_c00439{transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);}
.mcc_c00439{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);}
.md0_c00439{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);}
.mae_c00439{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.me8_c00439{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);}
.m50_c00439{transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.m10a_c00439{transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);}
.me7_c00439{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{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);}
.mf4_c00439{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);}
.md8_c00439{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);}
.m124_c00439{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);}
.m7e_c00439{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.mf5_c00439{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);}
.m72_c00439{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.mba_c00439{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.ma0_c00439{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);}
.m58_c00439{transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);}
.me0_c00439{transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);}
.m6a_c00439{transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);}
.m101_c00439{transform:matrix(0.258885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258885,0.000000,0.000000,0.250000,0,0);}
.mfd_c00439{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.mb6_c00439{transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261215,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263365,0.000000,0.000000,0.250000,0,0);}
.m95_c00439{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);}
.md7_c00439{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);}
.mf1_c00439{transform:matrix(0.269905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269905,0.000000,0.000000,0.250000,0,0);}
.m99_c00439{transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);}
.mfb_c00439{transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272195,0.000000,0.000000,0.250000,0,0);}
.m10f_c00439{transform:matrix(0.273025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273025,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);}
.m106_c00439{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00439{transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);}
.maf_c00439{transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276060,0.000000,0.000000,0.250000,0,0);}
.m88_c00439{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);}
.m1_c00439{transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278580,0.000000,0.000000,0.250000,0,0);}
.m70_c00439{transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279010,0.000000,0.000000,0.250000,0,0);}
.m9c_c00439{transform:matrix(0.280170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280170,0.000000,0.000000,0.250000,0,0);}
.m10d_c00439{transform:matrix(0.284475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00439{transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284985,0.000000,0.000000,0.250000,0,0);}
.m8b_c00439{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);}
.mde_c00439{transform:matrix(0.289895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289895,0.000000,0.000000,0.250000,0,0);}
.m82_c00439{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);}
.m16_c00439{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00439{transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293430,0.000000,0.000000,0.250000,0,0);}
.m6f_c00439{transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294560,0.000000,0.000000,0.250000,0,0);}
.m105_c00439{transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295290,0.000000,0.000000,0.250000,0,0);}
.mdc_c00439{transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301360,0.000000,0.000000,0.250000,0,0);}
.m103_c00439{transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);}
.m11f_c00439{transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304215,0.000000,0.000000,0.250000,0,0);}
.mff_c00439{transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304285,0.000000,0.000000,0.250000,0,0);}
.m11c_c00439{transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306660,0.000000,0.000000,0.250000,0,0);}
.me5_c00439{transform:matrix(0.308115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308115,0.000000,0.000000,0.250000,0,0);}
.m94_c00439{transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309900,0.000000,0.000000,0.250000,0,0);}
.mc4_c00439{transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);}
.m104_c00439{transform:matrix(0.320645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320645,0.000000,0.000000,0.250000,0,0);}
.ma7_c00439{transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327595,0.000000,0.000000,0.250000,0,0);}
.mdd_c00439{transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329985,0.000000,0.000000,0.250000,0,0);}
.m6e_c00439{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);}
.mc2_c00439{transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339230,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{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);}
.m74_c00439{transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.351625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351625,0.000000,0.000000,0.250000,0,0);}
.mea_c00439{transform:matrix(0.359005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359005,0.000000,0.000000,0.250000,0,0);}
.maa_c00439{transform:matrix(0.363275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363275,0.000000,0.000000,0.250000,0,0);}
.m9d_c00439{transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363980,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.368960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368960,0.000000,0.000000,0.250000,0,0);}
.m9b_c00439{transform:matrix(0.370320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370320,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);}
.ma4_c00439{transform:matrix(0.384265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384265,0.000000,0.000000,0.250000,0,0);}
.m6d_c00439{transform:matrix(0.390480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00439{transform:matrix(0.395605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395605,0.000000,0.000000,0.250000,0,0);}
.m107_c00439{transform:matrix(0.398280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398280,0.000000,0.000000,0.250000,0,0);}
.m102_c00439{transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409800,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413175,0.000000,0.000000,0.250000,0,0);}
.m100_c00439{transform:matrix(0.420120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420120,0.000000,0.000000,0.250000,0,0);}
.ma2_c00439{transform:matrix(0.470855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470855,0.000000,0.000000,0.250000,0,0);}
.mbc_c00439{transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.512125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512125,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.542705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00439{transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);}
.m5c_c00439{transform:matrix(0.687100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687100,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.774600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774600,0.000000,0.000000,0.250000,0,0);}
.mab_c00439{transform:matrix(1.324080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.324080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.324080,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;}
.fs5_c00439{font-size:22.050000px;}
.fsd_c00439{font-size:32.550000px;}
.fs1a_c00439{font-size:39.900000px;}
.fs11_c00439{font-size:43.050000px;}
.fs15_c00439{font-size:45.150000px;}
.fsf_c00439{font-size:46.200000px;}
.fs18_c00439{font-size:47.250000px;}
.fsc_c00439{font-size:48.300000px;}
.fs10_c00439{font-size:49.350000px;}
.fs17_c00439{font-size:50.400000px;}
.fs19_c00439{font-size:51.450000px;}
.fs13_c00439{font-size:52.500000px;}
.fse_c00439{font-size:53.550000px;}
.fs12_c00439{font-size:54.600000px;}
.fs16_c00439{font-size:55.650000px;}
.fsa_c00439{font-size:56.700000px;}
.fs1b_c00439{font-size:57.750000px;}
.fs7_c00439{font-size:63.000000px;}
.fs14_c00439{font-size:64.050000px;}
.fs9_c00439{font-size:66.150000px;}
.fsb_c00439{font-size:67.200000px;}
.fs1_c00439{font-size:68.250000px;}
.fs6_c00439{font-size:69.300000px;}
.fs8_c00439{font-size:71.400000px;}
.fs4_c00439{font-size:72.450000px;}
.fs2_c00439{font-size:73.500000px;}
.fs3_c00439{font-size:74.550000px;}
.fs0_c00439{font-size:75.600000px;}
.y0_c00439{bottom:0.000000px;}
.y20_c00439{bottom:156.219000px;}
.y1d_c00439{bottom:157.270500px;}
.y1f_c00439{bottom:173.571000px;}
.y30_c00439{bottom:173.854500px;}
.y1c_c00439{bottom:175.945500px;}
.y2f_c00439{bottom:192.394500px;}
.y2e_c00439{bottom:209.556000px;}
.y2d_c00439{bottom:227.512500px;}
.y2c_c00439{bottom:281.517000px;}
.y1b_c00439{bottom:298.369500px;}
.y2b_c00439{bottom:304.413000px;}
.y1a_c00439{bottom:317.535000px;}
.y2a_c00439{bottom:321.574500px;}
.y29_c00439{bottom:323.841000px;}
.y31_c00439{bottom:324.550500px;}
.y19_c00439{bottom:336.564000px;}
.y28_c00439{bottom:344.376000px;}
.y18_c00439{bottom:354.474000px;}
.y17_c00439{bottom:354.930000px;}
.y27_c00439{bottom:363.789000px;}
.y26_c00439{bottom:372.870000px;}
.y25_c00439{bottom:382.740000px;}
.y16_c00439{bottom:390.232500px;}
.y24_c00439{bottom:401.992500px;}
.y15_c00439{bottom:408.208500px;}
.y23_c00439{bottom:421.656000px;}
.y14_c00439{bottom:426.372000px;}
.y1e_c00439{bottom:440.796000px;}
.y22_c00439{bottom:441.576000px;}
.y13_c00439{bottom:443.922000px;}
.y21_c00439{bottom:460.456500px;}
.y10_c00439{bottom:462.000000px;}
.y12_c00439{bottom:462.240000px;}
.y11_c00439{bottom:481.015500px;}
.yf_c00439{bottom:526.152000px;}
.ye_c00439{bottom:548.824500px;}
.yd_c00439{bottom:577.530000px;}
.yb_c00439{bottom:604.464000px;}
.yc_c00439{bottom:605.340000px;}
.ya_c00439{bottom:628.021500px;}
.y9_c00439{bottom:650.620500px;}
.y7_c00439{bottom:673.915500px;}
.y8_c00439{bottom:677.853000px;}
.y6_c00439{bottom:704.085000px;}
.y5_c00439{bottom:727.573500px;}
.y4_c00439{bottom:749.596500px;}
.y3_c00439{bottom:773.628000px;}
.y2_c00439{bottom:795.765000px;}
.y1_c00439{bottom:818.667000px;}
.h7_c00439{height:22.050000px;}
.hf_c00439{height:32.550000px;}
.h1c_c00439{height:39.900000px;}
.h13_c00439{height:43.050000px;}
.h17_c00439{height:45.150000px;}
.h11_c00439{height:46.200000px;}
.h1a_c00439{height:47.250000px;}
.he_c00439{height:48.300000px;}
.h12_c00439{height:49.350000px;}
.h19_c00439{height:50.400000px;}
.h1b_c00439{height:51.450000px;}
.h15_c00439{height:52.500000px;}
.h10_c00439{height:53.550000px;}
.h14_c00439{height:54.600000px;}
.h18_c00439{height:55.650000px;}
.hc_c00439{height:56.700000px;}
.h1d_c00439{height:57.750000px;}
.h9_c00439{height:63.000000px;}
.h16_c00439{height:64.050000px;}
.hb_c00439{height:66.150000px;}
.hd_c00439{height:67.200000px;}
.h3_c00439{height:68.250000px;}
.h8_c00439{height:69.300000px;}
.ha_c00439{height:71.400000px;}
.h6_c00439{height:72.450000px;}
.h4_c00439{height:73.500000px;}
.h5_c00439{height:74.550000px;}
.h2_c00439{height:75.600000px;}
.h0_c00439{height:1008.450000px;}
.h1_c00439{height:1008.750000px;}
.w1_c00439{width:689.250000px;}
.w0_c00439{width:689.550000px;}
.x0_c00439{left:0.000000px;}
.x61_c00439{left:110.160000px;}
.x66_c00439{left:120.690000px;}
.x69_c00439{left:127.170000px;}
.x5e_c00439{left:140.130000px;}
.x4e_c00439{left:142.020000px;}
.x62_c00439{left:144.180000px;}
.x6a_c00439{left:145.800000px;}
.x49_c00439{left:149.850000px;}
.x5f_c00439{left:152.280000px;}
.x4c_c00439{left:155.520000px;}
.x53_c00439{left:161.190000px;}
.x56_c00439{left:165.510000px;}
.x4a_c00439{left:171.180000px;}
.x1_c00439{left:174.960000px;}
.x11_c00439{left:176.580000px;}
.x4d_c00439{left:178.470000px;}
.x70_c00439{left:181.170000px;}
.x1e_c00439{left:188.460000px;}
.x42_c00439{left:189.540000px;}
.x6b_c00439{left:191.160000px;}
.x8f_c00439{left:192.510000px;}
.x18_c00439{left:195.750000px;}
.x4b_c00439{left:197.910000px;}
.xa_c00439{left:200.070000px;}
.x71_c00439{left:201.420000px;}
.x1f_c00439{left:202.500000px;}
.x5b_c00439{left:208.170000px;}
.x26_c00439{left:209.250000px;}
.x54_c00439{left:210.600000px;}
.x2f_c00439{left:214.380000px;}
.x2_c00439{left:216.000000px;}
.x67_c00439{left:217.080000px;}
.x90_c00439{left:219.510000px;}
.x60_c00439{left:220.860000px;}
.x57_c00439{left:223.020000px;}
.x12_c00439{left:224.370000px;}
.x4f_c00439{left:227.070000px;}
.x6c_c00439{left:232.470000px;}
.x50_c00439{left:235.440000px;}
.x19_c00439{left:242.190000px;}
.x45_c00439{left:244.080000px;}
.x3_c00439{left:245.970000px;}
.x55_c00439{left:247.860000px;}
.x37_c00439{left:250.020000px;}
.xb_c00439{left:252.180000px;}
.x2e_c00439{left:255.690000px;}
.x58_c00439{left:258.930000px;}
.x63_c00439{left:260.010000px;}
.x27_c00439{left:268.920000px;}
.x3e_c00439{left:270.000000px;}
.x6d_c00439{left:272.160000px;}
.xc_c00439{left:273.240000px;}
.x13_c00439{left:274.320000px;}
.x6e_c00439{left:275.940000px;}
.x20_c00439{left:278.370000px;}
.x68_c00439{left:280.260000px;}
.x64_c00439{left:281.610000px;}
.x59_c00439{left:283.230000px;}
.x43_c00439{left:284.580000px;}
.x91_c00439{left:286.200000px;}
.x5c_c00439{left:287.820000px;}
.x38_c00439{left:288.900000px;}
.x4_c00439{left:296.190000px;}
.x28_c00439{left:297.270000px;}
.x51_c00439{left:299.970000px;}
.x6f_c00439{left:301.590000px;}
.x14_c00439{left:303.480000px;}
.x30_c00439{left:306.720000px;}
.x65_c00439{left:308.340000px;}
.x21_c00439{left:310.230000px;}
.x39_c00439{left:312.660000px;}
.x5a_c00439{left:320.220000px;}
.x1a_c00439{left:321.300000px;}
.xd_c00439{left:327.240000px;}
.x5d_c00439{left:328.590000px;}
.x41_c00439{left:332.370000px;}
.x52_c00439{left:334.260000px;}
.x15_c00439{left:335.880000px;}
.x31_c00439{left:338.310000px;}
.x92_c00439{left:342.090000px;}
.x3f_c00439{left:343.440000px;}
.x1b_c00439{left:345.600000px;}
.x72_c00439{left:346.950000px;}
.x32_c00439{left:348.840000px;}
.x5_c00439{left:349.920000px;}
.x3a_c00439{left:354.240000px;}
.x48_c00439{left:356.670000px;}
.x44_c00439{left:358.560000px;}
.x73_c00439{left:359.910000px;}
.x46_c00439{left:376.650000px;}
.xe_c00439{left:385.020000px;}
.x33_c00439{left:387.450000px;}
.x8a_c00439{left:388.530000px;}
.x86_c00439{left:392.310000px;}
.x29_c00439{left:393.660000px;}
.x99_c00439{left:395.010000px;}
.x6_c00439{left:398.250000px;}
.x22_c00439{left:401.760000px;}
.x3b_c00439{left:403.650000px;}
.x9a_c00439{left:405.000000px;}
.x16_c00439{left:407.430000px;}
.x2a_c00439{left:415.800000px;}
.x7a_c00439{left:416.880000px;}
.xa7_c00439{left:418.770000px;}
.x1c_c00439{left:421.740000px;}
.x78_c00439{left:422.820000px;}
.x23_c00439{left:423.900000px;}
.x74_c00439{left:426.600000px;}
.x34_c00439{left:428.760000px;}
.x96_c00439{left:429.840000px;}
.xf_c00439{left:431.460000px;}
.x93_c00439{left:440.100000px;}
.x40_c00439{left:443.880000px;}
.x8b_c00439{left:445.230000px;}
.x7_c00439{left:449.010000px;}
.x47_c00439{left:453.870000px;}
.x2b_c00439{left:455.760000px;}
.x8c_c00439{left:457.380000px;}
.x10_c00439{left:460.620000px;}
.x17_c00439{left:464.670000px;}
.x1d_c00439{left:466.020000px;}
.x94_c00439{left:468.450000px;}
.x87_c00439{left:471.690000px;}
.x75_c00439{left:474.660000px;}
.x8_c00439{left:478.440000px;}
.x98_c00439{left:480.060000px;}
.x2c_c00439{left:481.680000px;}
.x35_c00439{left:488.430000px;}
.x24_c00439{left:492.480000px;}
.x80_c00439{left:494.370000px;}
.x76_c00439{left:496.260000px;}
.x7b_c00439{left:499.500000px;}
.x2d_c00439{left:505.170000px;}
.x3c_c00439{left:506.520000px;}
.x8e_c00439{left:510.030000px;}
.x36_c00439{left:513.000000px;}
.x9b_c00439{left:514.620000px;}
.xa8_c00439{left:519.750000px;}
.xad_c00439{left:524.340000px;}
.x9_c00439{left:525.960000px;}
.x77_c00439{left:528.120000px;}
.xab_c00439{left:536.220000px;}
.x25_c00439{left:537.570000px;}
.xa4_c00439{left:540.540000px;}
.xae_c00439{left:543.240000px;}
.x7c_c00439{left:549.990000px;}
.xa0_c00439{left:551.340000px;}
.x8d_c00439{left:553.230000px;}
.x88_c00439{left:555.930000px;}
.x95_c00439{left:559.980000px;}
.x83_c00439{left:562.680000px;}
.xac_c00439{left:566.190000px;}
.xa9_c00439{left:569.700000px;}
.x9c_c00439{left:571.050000px;}
.x3d_c00439{left:572.940000px;}
.x84_c00439{left:578.070000px;}
.xa5_c00439{left:579.960000px;}
.x81_c00439{left:581.310000px;}
.xaf_c00439{left:583.200000px;}
.x97_c00439{left:586.440000px;}
.xa6_c00439{left:589.680000px;}
.x85_c00439{left:594.810000px;}
.x9d_c00439{left:598.590000px;}
.xa1_c00439{left:599.940000px;}
.x9e_c00439{left:603.180000px;}
.x89_c00439{left:605.340000px;}
.x82_c00439{left:609.120000px;}
.xaa_c00439{left:610.200000px;}
.xa2_c00439{left:611.820000px;}
.x7d_c00439{left:614.250000px;}
.xa3_c00439{left:634.230000px;}
.x9f_c00439{left:636.120000px;}
.x7e_c00439{left:637.200000px;}
.x79_c00439{left:644.490000px;}
.x7f_c00439{left:656.910000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.fs5_c00439{font-size:19.600000pt;}
.fsd_c00439{font-size:28.933333pt;}
.fs1a_c00439{font-size:35.466667pt;}
.fs11_c00439{font-size:38.266667pt;}
.fs15_c00439{font-size:40.133333pt;}
.fsf_c00439{font-size:41.066667pt;}
.fs18_c00439{font-size:42.000000pt;}
.fsc_c00439{font-size:42.933333pt;}
.fs10_c00439{font-size:43.866667pt;}
.fs17_c00439{font-size:44.800000pt;}
.fs19_c00439{font-size:45.733333pt;}
.fs13_c00439{font-size:46.666667pt;}
.fse_c00439{font-size:47.600000pt;}
.fs12_c00439{font-size:48.533333pt;}
.fs16_c00439{font-size:49.466667pt;}
.fsa_c00439{font-size:50.400000pt;}
.fs1b_c00439{font-size:51.333333pt;}
.fs7_c00439{font-size:56.000000pt;}
.fs14_c00439{font-size:56.933333pt;}
.fs9_c00439{font-size:58.800000pt;}
.fsb_c00439{font-size:59.733333pt;}
.fs1_c00439{font-size:60.666667pt;}
.fs6_c00439{font-size:61.600000pt;}
.fs8_c00439{font-size:63.466667pt;}
.fs4_c00439{font-size:64.400000pt;}
.fs2_c00439{font-size:65.333333pt;}
.fs3_c00439{font-size:66.266667pt;}
.fs0_c00439{font-size:67.200000pt;}
.y0_c00439{bottom:0.000000pt;}
.y20_c00439{bottom:138.861333pt;}
.y1d_c00439{bottom:139.796000pt;}
.y1f_c00439{bottom:154.285333pt;}
.y30_c00439{bottom:154.537333pt;}
.y1c_c00439{bottom:156.396000pt;}
.y2f_c00439{bottom:171.017333pt;}
.y2e_c00439{bottom:186.272000pt;}
.y2d_c00439{bottom:202.233333pt;}
.y2c_c00439{bottom:250.237333pt;}
.y1b_c00439{bottom:265.217333pt;}
.y2b_c00439{bottom:270.589333pt;}
.y1a_c00439{bottom:282.253333pt;}
.y2a_c00439{bottom:285.844000pt;}
.y29_c00439{bottom:287.858667pt;}
.y31_c00439{bottom:288.489333pt;}
.y19_c00439{bottom:299.168000pt;}
.y28_c00439{bottom:306.112000pt;}
.y18_c00439{bottom:315.088000pt;}
.y17_c00439{bottom:315.493333pt;}
.y27_c00439{bottom:323.368000pt;}
.y26_c00439{bottom:331.440000pt;}
.y25_c00439{bottom:340.213333pt;}
.y16_c00439{bottom:346.873333pt;}
.y24_c00439{bottom:357.326667pt;}
.y15_c00439{bottom:362.852000pt;}
.y23_c00439{bottom:374.805333pt;}
.y14_c00439{bottom:378.997333pt;}
.y1e_c00439{bottom:391.818667pt;}
.y22_c00439{bottom:392.512000pt;}
.y13_c00439{bottom:394.597333pt;}
.y21_c00439{bottom:409.294667pt;}
.y10_c00439{bottom:410.666667pt;}
.y12_c00439{bottom:410.880000pt;}
.y11_c00439{bottom:427.569333pt;}
.yf_c00439{bottom:467.690667pt;}
.ye_c00439{bottom:487.844000pt;}
.yd_c00439{bottom:513.360000pt;}
.yb_c00439{bottom:537.301333pt;}
.yc_c00439{bottom:538.080000pt;}
.ya_c00439{bottom:558.241333pt;}
.y9_c00439{bottom:578.329333pt;}
.y7_c00439{bottom:599.036000pt;}
.y8_c00439{bottom:602.536000pt;}
.y6_c00439{bottom:625.853333pt;}
.y5_c00439{bottom:646.732000pt;}
.y4_c00439{bottom:666.308000pt;}
.y3_c00439{bottom:687.669333pt;}
.y2_c00439{bottom:707.346667pt;}
.y1_c00439{bottom:727.704000pt;}
.h7_c00439{height:19.600000pt;}
.hf_c00439{height:28.933333pt;}
.h1c_c00439{height:35.466667pt;}
.h13_c00439{height:38.266667pt;}
.h17_c00439{height:40.133333pt;}
.h11_c00439{height:41.066667pt;}
.h1a_c00439{height:42.000000pt;}
.he_c00439{height:42.933333pt;}
.h12_c00439{height:43.866667pt;}
.h19_c00439{height:44.800000pt;}
.h1b_c00439{height:45.733333pt;}
.h15_c00439{height:46.666667pt;}
.h10_c00439{height:47.600000pt;}
.h14_c00439{height:48.533333pt;}
.h18_c00439{height:49.466667pt;}
.hc_c00439{height:50.400000pt;}
.h1d_c00439{height:51.333333pt;}
.h9_c00439{height:56.000000pt;}
.h16_c00439{height:56.933333pt;}
.hb_c00439{height:58.800000pt;}
.hd_c00439{height:59.733333pt;}
.h3_c00439{height:60.666667pt;}
.h8_c00439{height:61.600000pt;}
.ha_c00439{height:63.466667pt;}
.h6_c00439{height:64.400000pt;}
.h4_c00439{height:65.333333pt;}
.h5_c00439{height:66.266667pt;}
.h2_c00439{height:67.200000pt;}
.h0_c00439{height:896.400000pt;}
.h1_c00439{height:896.666667pt;}
.w1_c00439{width:612.666667pt;}
.w0_c00439{width:612.933333pt;}
.x0_c00439{left:0.000000pt;}
.x61_c00439{left:97.920000pt;}
.x66_c00439{left:107.280000pt;}
.x69_c00439{left:113.040000pt;}
.x5e_c00439{left:124.560000pt;}
.x4e_c00439{left:126.240000pt;}
.x62_c00439{left:128.160000pt;}
.x6a_c00439{left:129.600000pt;}
.x49_c00439{left:133.200000pt;}
.x5f_c00439{left:135.360000pt;}
.x4c_c00439{left:138.240000pt;}
.x53_c00439{left:143.280000pt;}
.x56_c00439{left:147.120000pt;}
.x4a_c00439{left:152.160000pt;}
.x1_c00439{left:155.520000pt;}
.x11_c00439{left:156.960000pt;}
.x4d_c00439{left:158.640000pt;}
.x70_c00439{left:161.040000pt;}
.x1e_c00439{left:167.520000pt;}
.x42_c00439{left:168.480000pt;}
.x6b_c00439{left:169.920000pt;}
.x8f_c00439{left:171.120000pt;}
.x18_c00439{left:174.000000pt;}
.x4b_c00439{left:175.920000pt;}
.xa_c00439{left:177.840000pt;}
.x71_c00439{left:179.040000pt;}
.x1f_c00439{left:180.000000pt;}
.x5b_c00439{left:185.040000pt;}
.x26_c00439{left:186.000000pt;}
.x54_c00439{left:187.200000pt;}
.x2f_c00439{left:190.560000pt;}
.x2_c00439{left:192.000000pt;}
.x67_c00439{left:192.960000pt;}
.x90_c00439{left:195.120000pt;}
.x60_c00439{left:196.320000pt;}
.x57_c00439{left:198.240000pt;}
.x12_c00439{left:199.440000pt;}
.x4f_c00439{left:201.840000pt;}
.x6c_c00439{left:206.640000pt;}
.x50_c00439{left:209.280000pt;}
.x19_c00439{left:215.280000pt;}
.x45_c00439{left:216.960000pt;}
.x3_c00439{left:218.640000pt;}
.x55_c00439{left:220.320000pt;}
.x37_c00439{left:222.240000pt;}
.xb_c00439{left:224.160000pt;}
.x2e_c00439{left:227.280000pt;}
.x58_c00439{left:230.160000pt;}
.x63_c00439{left:231.120000pt;}
.x27_c00439{left:239.040000pt;}
.x3e_c00439{left:240.000000pt;}
.x6d_c00439{left:241.920000pt;}
.xc_c00439{left:242.880000pt;}
.x13_c00439{left:243.840000pt;}
.x6e_c00439{left:245.280000pt;}
.x20_c00439{left:247.440000pt;}
.x68_c00439{left:249.120000pt;}
.x64_c00439{left:250.320000pt;}
.x59_c00439{left:251.760000pt;}
.x43_c00439{left:252.960000pt;}
.x91_c00439{left:254.400000pt;}
.x5c_c00439{left:255.840000pt;}
.x38_c00439{left:256.800000pt;}
.x4_c00439{left:263.280000pt;}
.x28_c00439{left:264.240000pt;}
.x51_c00439{left:266.640000pt;}
.x6f_c00439{left:268.080000pt;}
.x14_c00439{left:269.760000pt;}
.x30_c00439{left:272.640000pt;}
.x65_c00439{left:274.080000pt;}
.x21_c00439{left:275.760000pt;}
.x39_c00439{left:277.920000pt;}
.x5a_c00439{left:284.640000pt;}
.x1a_c00439{left:285.600000pt;}
.xd_c00439{left:290.880000pt;}
.x5d_c00439{left:292.080000pt;}
.x41_c00439{left:295.440000pt;}
.x52_c00439{left:297.120000pt;}
.x15_c00439{left:298.560000pt;}
.x31_c00439{left:300.720000pt;}
.x92_c00439{left:304.080000pt;}
.x3f_c00439{left:305.280000pt;}
.x1b_c00439{left:307.200000pt;}
.x72_c00439{left:308.400000pt;}
.x32_c00439{left:310.080000pt;}
.x5_c00439{left:311.040000pt;}
.x3a_c00439{left:314.880000pt;}
.x48_c00439{left:317.040000pt;}
.x44_c00439{left:318.720000pt;}
.x73_c00439{left:319.920000pt;}
.x46_c00439{left:334.800000pt;}
.xe_c00439{left:342.240000pt;}
.x33_c00439{left:344.400000pt;}
.x8a_c00439{left:345.360000pt;}
.x86_c00439{left:348.720000pt;}
.x29_c00439{left:349.920000pt;}
.x99_c00439{left:351.120000pt;}
.x6_c00439{left:354.000000pt;}
.x22_c00439{left:357.120000pt;}
.x3b_c00439{left:358.800000pt;}
.x9a_c00439{left:360.000000pt;}
.x16_c00439{left:362.160000pt;}
.x2a_c00439{left:369.600000pt;}
.x7a_c00439{left:370.560000pt;}
.xa7_c00439{left:372.240000pt;}
.x1c_c00439{left:374.880000pt;}
.x78_c00439{left:375.840000pt;}
.x23_c00439{left:376.800000pt;}
.x74_c00439{left:379.200000pt;}
.x34_c00439{left:381.120000pt;}
.x96_c00439{left:382.080000pt;}
.xf_c00439{left:383.520000pt;}
.x93_c00439{left:391.200000pt;}
.x40_c00439{left:394.560000pt;}
.x8b_c00439{left:395.760000pt;}
.x7_c00439{left:399.120000pt;}
.x47_c00439{left:403.440000pt;}
.x2b_c00439{left:405.120000pt;}
.x8c_c00439{left:406.560000pt;}
.x10_c00439{left:409.440000pt;}
.x17_c00439{left:413.040000pt;}
.x1d_c00439{left:414.240000pt;}
.x94_c00439{left:416.400000pt;}
.x87_c00439{left:419.280000pt;}
.x75_c00439{left:421.920000pt;}
.x8_c00439{left:425.280000pt;}
.x98_c00439{left:426.720000pt;}
.x2c_c00439{left:428.160000pt;}
.x35_c00439{left:434.160000pt;}
.x24_c00439{left:437.760000pt;}
.x80_c00439{left:439.440000pt;}
.x76_c00439{left:441.120000pt;}
.x7b_c00439{left:444.000000pt;}
.x2d_c00439{left:449.040000pt;}
.x3c_c00439{left:450.240000pt;}
.x8e_c00439{left:453.360000pt;}
.x36_c00439{left:456.000000pt;}
.x9b_c00439{left:457.440000pt;}
.xa8_c00439{left:462.000000pt;}
.xad_c00439{left:466.080000pt;}
.x9_c00439{left:467.520000pt;}
.x77_c00439{left:469.440000pt;}
.xab_c00439{left:476.640000pt;}
.x25_c00439{left:477.840000pt;}
.xa4_c00439{left:480.480000pt;}
.xae_c00439{left:482.880000pt;}
.x7c_c00439{left:488.880000pt;}
.xa0_c00439{left:490.080000pt;}
.x8d_c00439{left:491.760000pt;}
.x88_c00439{left:494.160000pt;}
.x95_c00439{left:497.760000pt;}
.x83_c00439{left:500.160000pt;}
.xac_c00439{left:503.280000pt;}
.xa9_c00439{left:506.400000pt;}
.x9c_c00439{left:507.600000pt;}
.x3d_c00439{left:509.280000pt;}
.x84_c00439{left:513.840000pt;}
.xa5_c00439{left:515.520000pt;}
.x81_c00439{left:516.720000pt;}
.xaf_c00439{left:518.400000pt;}
.x97_c00439{left:521.280000pt;}
.xa6_c00439{left:524.160000pt;}
.x85_c00439{left:528.720000pt;}
.x9d_c00439{left:532.080000pt;}
.xa1_c00439{left:533.280000pt;}
.x9e_c00439{left:536.160000pt;}
.x89_c00439{left:538.080000pt;}
.x82_c00439{left:541.440000pt;}
.xaa_c00439{left:542.400000pt;}
.xa2_c00439{left:543.840000pt;}
.x7d_c00439{left:546.000000pt;}
.xa3_c00439{left:563.760000pt;}
.x9f_c00439{left:565.440000pt;}
.x7e_c00439{left:566.400000pt;}
.x79_c00439{left:572.880000pt;}
.x7f_c00439{left:583.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_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_ef4e99a7aa2876b3106553d3.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;}
.m59_c00440{transform:matrix(0.015343,-0.000276,0.004499,0.249960,0,0);-ms-transform:matrix(0.015343,-0.000276,0.004499,0.249960,0,0);-webkit-transform:matrix(0.015343,-0.000276,0.004499,0.249960,0,0);}
.m6b_c00440{transform:matrix(0.042723,-0.000769,0.004499,0.249960,0,0);-ms-transform:matrix(0.042723,-0.000769,0.004499,0.249960,0,0);-webkit-transform:matrix(0.042723,-0.000769,0.004499,0.249960,0,0);}
.m22_c00440{transform:matrix(0.078904,-0.001578,0.004999,0.249950,0,0);-ms-transform:matrix(0.078904,-0.001578,0.004999,0.249950,0,0);-webkit-transform:matrix(0.078904,-0.001578,0.004999,0.249950,0,0);}
.m2c_c00440{transform:matrix(0.113507,-0.002270,0.004999,0.249950,0,0);-ms-transform:matrix(0.113507,-0.002270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.113507,-0.002270,0.004999,0.249950,0,0);}
.m7a_c00440{transform:matrix(0.145614,-0.002475,0.004249,0.249964,0,0);-ms-transform:matrix(0.145614,-0.002475,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145614,-0.002475,0.004249,0.249964,0,0);}
.m3c_c00440{transform:matrix(0.146276,-0.002633,0.004499,0.249960,0,0);-ms-transform:matrix(0.146276,-0.002633,0.004499,0.249960,0,0);-webkit-transform:matrix(0.146276,-0.002633,0.004499,0.249960,0,0);}
.m3f_c00440{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);}
.m55_c00440{transform:matrix(0.156485,-0.002817,0.004499,0.249960,0,0);-ms-transform:matrix(0.156485,-0.002817,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156485,-0.002817,0.004499,0.249960,0,0);}
.m7e_c00440{transform:matrix(0.157077,-0.002670,0.004249,0.249964,0,0);-ms-transform:matrix(0.157077,-0.002670,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157077,-0.002670,0.004249,0.249964,0,0);}
.m3d_c00440{transform:matrix(0.160339,-0.002886,0.004499,0.249960,0,0);-ms-transform:matrix(0.160339,-0.002886,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160339,-0.002886,0.004499,0.249960,0,0);}
.m6f_c00440{transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);-ms-transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161534,-0.002585,0.003999,0.249968,0,0);}
.m48_c00440{transform:matrix(0.163154,-0.002937,0.004499,0.249960,0,0);-ms-transform:matrix(0.163154,-0.002937,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163154,-0.002937,0.004499,0.249960,0,0);}
.m50_c00440{transform:matrix(0.163718,-0.002947,0.004499,0.249960,0,0);-ms-transform:matrix(0.163718,-0.002947,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163718,-0.002947,0.004499,0.249960,0,0);}
.m7c_c00440{transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);-ms-transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166921,-0.002838,0.004249,0.249964,0,0);}
.m9_c00440{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);}
.m12_c00440{transform:matrix(0.168721,-0.003374,0.004999,0.249950,0,0);-ms-transform:matrix(0.168721,-0.003374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168721,-0.003374,0.004999,0.249950,0,0);}
.m13_c00440{transform:matrix(0.168736,-0.003375,0.004999,0.249950,0,0);-ms-transform:matrix(0.168736,-0.003375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168736,-0.003375,0.004999,0.249950,0,0);}
.m4a_c00440{transform:matrix(0.170162,-0.003063,0.004499,0.249960,0,0);-ms-transform:matrix(0.170162,-0.003063,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170162,-0.003063,0.004499,0.249960,0,0);}
.m53_c00440{transform:matrix(0.174097,-0.003134,0.004499,0.249960,0,0);-ms-transform:matrix(0.174097,-0.003134,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174097,-0.003134,0.004499,0.249960,0,0);}
.m4b_c00440{transform:matrix(0.174277,-0.003137,0.004499,0.249960,0,0);-ms-transform:matrix(0.174277,-0.003137,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174277,-0.003137,0.004499,0.249960,0,0);}
.m40_c00440{transform:matrix(0.177471,-0.003194,0.004499,0.249960,0,0);-ms-transform:matrix(0.177471,-0.003194,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177471,-0.003194,0.004499,0.249960,0,0);}
.m6c_c00440{transform:matrix(0.178977,-0.002864,0.003999,0.249968,0,0);-ms-transform:matrix(0.178977,-0.002864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178977,-0.002864,0.003999,0.249968,0,0);}
.m3e_c00440{transform:matrix(0.179101,-0.003224,0.004499,0.249960,0,0);-ms-transform:matrix(0.179101,-0.003224,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179101,-0.003224,0.004499,0.249960,0,0);}
.m5c_c00440{transform:matrix(0.179306,-0.003228,0.004499,0.249960,0,0);-ms-transform:matrix(0.179306,-0.003228,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179306,-0.003228,0.004499,0.249960,0,0);}
.m5f_c00440{transform:matrix(0.180016,-0.003240,0.004499,0.249960,0,0);-ms-transform:matrix(0.180016,-0.003240,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180016,-0.003240,0.004499,0.249960,0,0);}
.m41_c00440{transform:matrix(0.180361,-0.003246,0.004499,0.249960,0,0);-ms-transform:matrix(0.180361,-0.003246,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180361,-0.003246,0.004499,0.249960,0,0);}
.m10_c00440{transform:matrix(0.180544,-0.003611,0.004999,0.249950,0,0);-ms-transform:matrix(0.180544,-0.003611,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180544,-0.003611,0.004999,0.249950,0,0);}
.m56_c00440{transform:matrix(0.180766,-0.003254,0.004499,0.249960,0,0);-ms-transform:matrix(0.180766,-0.003254,0.004499,0.249960,0,0);-webkit-transform:matrix(0.180766,-0.003254,0.004499,0.249960,0,0);}
.m1c_c00440{transform:matrix(0.181239,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181239,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181239,-0.003625,0.004999,0.249950,0,0);}
.m5a_c00440{transform:matrix(0.183550,-0.003304,0.004499,0.249960,0,0);-ms-transform:matrix(0.183550,-0.003304,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183550,-0.003304,0.004499,0.249960,0,0);}
.m14_c00440{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);}
.m11_c00440{transform:matrix(0.184153,-0.003683,0.004999,0.249950,0,0);-ms-transform:matrix(0.184153,-0.003683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184153,-0.003683,0.004999,0.249950,0,0);}
.m77_c00440{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);}
.m52_c00440{transform:matrix(0.185255,-0.003335,0.004499,0.249960,0,0);-ms-transform:matrix(0.185255,-0.003335,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185255,-0.003335,0.004499,0.249960,0,0);}
.m70_c00440{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);}
.m51_c00440{transform:matrix(0.185670,-0.003342,0.004499,0.249960,0,0);-ms-transform:matrix(0.185670,-0.003342,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185670,-0.003342,0.004499,0.249960,0,0);}
.m5d_c00440{transform:matrix(0.186685,-0.003360,0.004499,0.249960,0,0);-ms-transform:matrix(0.186685,-0.003360,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186685,-0.003360,0.004499,0.249960,0,0);}
.m24_c00440{transform:matrix(0.186778,-0.003736,0.004999,0.249950,0,0);-ms-transform:matrix(0.186778,-0.003736,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186778,-0.003736,0.004999,0.249950,0,0);}
.m5b_c00440{transform:matrix(0.188549,-0.003394,0.004499,0.249960,0,0);-ms-transform:matrix(0.188549,-0.003394,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188549,-0.003394,0.004499,0.249960,0,0);}
.m4c_c00440{transform:matrix(0.189139,-0.003405,0.004499,0.249960,0,0);-ms-transform:matrix(0.189139,-0.003405,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189139,-0.003405,0.004499,0.249960,0,0);}
.m7_c00440{transform:matrix(0.189292,-0.003786,0.004999,0.249950,0,0);-ms-transform:matrix(0.189292,-0.003786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189292,-0.003786,0.004999,0.249950,0,0);}
.mf_c00440{transform:matrix(0.190962,-0.003819,0.004999,0.249950,0,0);-ms-transform:matrix(0.190962,-0.003819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190962,-0.003819,0.004999,0.249950,0,0);}
.m54_c00440{transform:matrix(0.191699,-0.003451,0.004499,0.249960,0,0);-ms-transform:matrix(0.191699,-0.003451,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191699,-0.003451,0.004499,0.249960,0,0);}
.md_c00440{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);}
.m21_c00440{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);}
.m8_c00440{transform:matrix(0.192477,-0.003850,0.004999,0.249950,0,0);-ms-transform:matrix(0.192477,-0.003850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192477,-0.003850,0.004999,0.249950,0,0);}
.m36_c00440{transform:matrix(0.192862,-0.003279,0.004249,0.249964,0,0);-ms-transform:matrix(0.192862,-0.003279,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192862,-0.003279,0.004249,0.249964,0,0);}
.mb_c00440{transform:matrix(0.193116,-0.003862,0.004999,0.249950,0,0);-ms-transform:matrix(0.193116,-0.003862,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193116,-0.003862,0.004999,0.249950,0,0);}
.m79_c00440{transform:matrix(0.195582,-0.003325,0.004249,0.249964,0,0);-ms-transform:matrix(0.195582,-0.003325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195582,-0.003325,0.004249,0.249964,0,0);}
.m4d_c00440{transform:matrix(0.195798,-0.003524,0.004499,0.249960,0,0);-ms-transform:matrix(0.195798,-0.003524,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195798,-0.003524,0.004499,0.249960,0,0);}
.m38_c00440{transform:matrix(0.196092,-0.003334,0.004249,0.249964,0,0);-ms-transform:matrix(0.196092,-0.003334,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196092,-0.003334,0.004249,0.249964,0,0);}
.m18_c00440{transform:matrix(0.196416,-0.003928,0.004999,0.249950,0,0);-ms-transform:matrix(0.196416,-0.003928,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196416,-0.003928,0.004999,0.249950,0,0);}
.m33_c00440{transform:matrix(0.197391,-0.003948,0.004999,0.249950,0,0);-ms-transform:matrix(0.197391,-0.003948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197391,-0.003948,0.004999,0.249950,0,0);}
.m7f_c00440{transform:matrix(0.198001,-0.003366,0.004249,0.249964,0,0);-ms-transform:matrix(0.198001,-0.003366,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198001,-0.003366,0.004249,0.249964,0,0);}
.m2b_c00440{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);}
.m49_c00440{transform:matrix(0.200518,-0.003609,0.004499,0.249960,0,0);-ms-transform:matrix(0.200518,-0.003609,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200518,-0.003609,0.004499,0.249960,0,0);}
.m47_c00440{transform:matrix(0.201457,-0.003626,0.004499,0.249960,0,0);-ms-transform:matrix(0.201457,-0.003626,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201457,-0.003626,0.004499,0.249960,0,0);}
.m74_c00440{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);}
.m78_c00440{transform:matrix(0.203261,-0.003455,0.004249,0.249964,0,0);-ms-transform:matrix(0.203261,-0.003455,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203261,-0.003455,0.004249,0.249964,0,0);}
.m2a_c00440{transform:matrix(0.203979,-0.004080,0.004999,0.249950,0,0);-ms-transform:matrix(0.203979,-0.004080,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203979,-0.004080,0.004999,0.249950,0,0);}
.m76_c00440{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);}
.m75_c00440{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);}
.m64_c00440{transform:matrix(0.204807,-0.003687,0.004499,0.249960,0,0);-ms-transform:matrix(0.204807,-0.003687,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204807,-0.003687,0.004499,0.249960,0,0);}
.m73_c00440{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);}
.m44_c00440{transform:matrix(0.207231,-0.003730,0.004499,0.249960,0,0);-ms-transform:matrix(0.207231,-0.003730,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207231,-0.003730,0.004499,0.249960,0,0);}
.m42_c00440{transform:matrix(0.207726,-0.003739,0.004499,0.249960,0,0);-ms-transform:matrix(0.207726,-0.003739,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207726,-0.003739,0.004499,0.249960,0,0);}
.m4e_c00440{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);}
.m1b_c00440{transform:matrix(0.209648,-0.004193,0.004999,0.249950,0,0);-ms-transform:matrix(0.209648,-0.004193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209648,-0.004193,0.004999,0.249950,0,0);}
.mc_c00440{transform:matrix(0.210883,-0.004218,0.004999,0.249950,0,0);-ms-transform:matrix(0.210883,-0.004218,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210883,-0.004218,0.004999,0.249950,0,0);}
.m6a_c00440{transform:matrix(0.211046,-0.003799,0.004499,0.249960,0,0);-ms-transform:matrix(0.211046,-0.003799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211046,-0.003799,0.004499,0.249960,0,0);}
.m7d_c00440{transform:matrix(0.211524,-0.003596,0.004249,0.249964,0,0);-ms-transform:matrix(0.211524,-0.003596,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211524,-0.003596,0.004249,0.249964,0,0);}
.m71_c00440{transform:matrix(0.211958,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211958,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211958,-0.003391,0.003999,0.249968,0,0);}
.m17_c00440{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);}
.m23_c00440{transform:matrix(0.214597,-0.004292,0.004999,0.249950,0,0);-ms-transform:matrix(0.214597,-0.004292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214597,-0.004292,0.004999,0.249950,0,0);}
.m4f_c00440{transform:matrix(0.215930,-0.003887,0.004499,0.249960,0,0);-ms-transform:matrix(0.215930,-0.003887,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215930,-0.003887,0.004499,0.249960,0,0);}
.m5e_c00440{transform:matrix(0.218145,-0.003927,0.004499,0.249960,0,0);-ms-transform:matrix(0.218145,-0.003927,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218145,-0.003927,0.004499,0.249960,0,0);}
.m27_c00440{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);}
.m6_c00440{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);}
.m61_c00440{transform:matrix(0.221634,-0.003989,0.004499,0.249960,0,0);-ms-transform:matrix(0.221634,-0.003989,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221634,-0.003989,0.004499,0.249960,0,0);}
.m1a_c00440{transform:matrix(0.222101,-0.004442,0.004999,0.249950,0,0);-ms-transform:matrix(0.222101,-0.004442,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222101,-0.004442,0.004999,0.249950,0,0);}
.m28_c00440{transform:matrix(0.223190,-0.004464,0.004999,0.249950,0,0);-ms-transform:matrix(0.223190,-0.004464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223190,-0.004464,0.004999,0.249950,0,0);}
.m1e_c00440{transform:matrix(0.223675,-0.004474,0.004999,0.249950,0,0);-ms-transform:matrix(0.223675,-0.004474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223675,-0.004474,0.004999,0.249950,0,0);}
.m35_c00440{transform:matrix(0.223868,-0.003806,0.004249,0.249964,0,0);-ms-transform:matrix(0.223868,-0.003806,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223868,-0.003806,0.004249,0.249964,0,0);}
.m31_c00440{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);}
.m0_c00440{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);}
.m66_c00440{transform:matrix(0.228713,-0.004117,0.004499,0.249960,0,0);-ms-transform:matrix(0.228713,-0.004117,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228713,-0.004117,0.004499,0.249960,0,0);}
.m6d_c00440{transform:matrix(0.228821,-0.003661,0.003999,0.249968,0,0);-ms-transform:matrix(0.228821,-0.003661,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228821,-0.003661,0.003999,0.249968,0,0);}
.m25_c00440{transform:matrix(0.229174,-0.004583,0.004999,0.249950,0,0);-ms-transform:matrix(0.229174,-0.004583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229174,-0.004583,0.004999,0.249950,0,0);}
.m3b_c00440{transform:matrix(0.229863,-0.004138,0.004499,0.249960,0,0);-ms-transform:matrix(0.229863,-0.004138,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229863,-0.004138,0.004499,0.249960,0,0);}
.m43_c00440{transform:matrix(0.229993,-0.004140,0.004499,0.249960,0,0);-ms-transform:matrix(0.229993,-0.004140,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229993,-0.004140,0.004499,0.249960,0,0);}
.m15_c00440{transform:matrix(0.231874,-0.004637,0.004999,0.249950,0,0);-ms-transform:matrix(0.231874,-0.004637,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231874,-0.004637,0.004999,0.249950,0,0);}
.m32_c00440{transform:matrix(0.232124,-0.004642,0.004999,0.249950,0,0);-ms-transform:matrix(0.232124,-0.004642,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232124,-0.004642,0.004999,0.249950,0,0);}
.m6e_c00440{transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);-ms-transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);}
.m69_c00440{transform:matrix(0.234157,-0.004215,0.004499,0.249960,0,0);-ms-transform:matrix(0.234157,-0.004215,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234157,-0.004215,0.004499,0.249960,0,0);}
.m72_c00440{transform:matrix(0.234545,-0.003753,0.003999,0.249968,0,0);-ms-transform:matrix(0.234545,-0.003753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234545,-0.003753,0.003999,0.249968,0,0);}
.m46_c00440{transform:matrix(0.234677,-0.004224,0.004499,0.249960,0,0);-ms-transform:matrix(0.234677,-0.004224,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234677,-0.004224,0.004499,0.249960,0,0);}
.m37_c00440{transform:matrix(0.236981,-0.004029,0.004249,0.249964,0,0);-ms-transform:matrix(0.236981,-0.004029,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236981,-0.004029,0.004249,0.249964,0,0);}
.m65_c00440{transform:matrix(0.240746,-0.004333,0.004499,0.249960,0,0);-ms-transform:matrix(0.240746,-0.004333,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240746,-0.004333,0.004499,0.249960,0,0);}
.m34_c00440{transform:matrix(0.241005,-0.004097,0.004249,0.249964,0,0);-ms-transform:matrix(0.241005,-0.004097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241005,-0.004097,0.004249,0.249964,0,0);}
.m7b_c00440{transform:matrix(0.247404,-0.004206,0.004249,0.249964,0,0);-ms-transform:matrix(0.247404,-0.004206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247404,-0.004206,0.004249,0.249964,0,0);}
.m1f_c00440{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);}
.me_c00440{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);}
.ma_c00440{transform:matrix(0.250790,-0.005016,0.004999,0.249950,0,0);-ms-transform:matrix(0.250790,-0.005016,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250790,-0.005016,0.004999,0.249950,0,0);}
.m16_c00440{transform:matrix(0.251545,-0.005031,0.004999,0.249950,0,0);-ms-transform:matrix(0.251545,-0.005031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251545,-0.005031,0.004999,0.249950,0,0);}
.m3_c00440{transform:matrix(0.253294,-0.005066,0.004999,0.249950,0,0);-ms-transform:matrix(0.253294,-0.005066,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253294,-0.005066,0.004999,0.249950,0,0);}
.m60_c00440{transform:matrix(0.253584,-0.004565,0.004499,0.249960,0,0);-ms-transform:matrix(0.253584,-0.004565,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253584,-0.004565,0.004499,0.249960,0,0);}
.m57_c00440{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);}
.m4_c00440{transform:matrix(0.259638,-0.005193,0.004999,0.249950,0,0);-ms-transform:matrix(0.259638,-0.005193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.259638,-0.005193,0.004999,0.249950,0,0);}
.m26_c00440{transform:matrix(0.266782,-0.005336,0.004999,0.249950,0,0);-ms-transform:matrix(0.266782,-0.005336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266782,-0.005336,0.004999,0.249950,0,0);}
.m67_c00440{transform:matrix(0.267437,-0.004814,0.004499,0.249960,0,0);-ms-transform:matrix(0.267437,-0.004814,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267437,-0.004814,0.004499,0.249960,0,0);}
.m2d_c00440{transform:matrix(0.270856,-0.005417,0.004999,0.249950,0,0);-ms-transform:matrix(0.270856,-0.005417,0.004999,0.249950,0,0);-webkit-transform:matrix(0.270856,-0.005417,0.004999,0.249950,0,0);}
.m20_c00440{transform:matrix(0.270996,-0.005420,0.004999,0.249950,0,0);-ms-transform:matrix(0.270996,-0.005420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.270996,-0.005420,0.004999,0.249950,0,0);}
.m1d_c00440{transform:matrix(0.274240,-0.005485,0.004999,0.249950,0,0);-ms-transform:matrix(0.274240,-0.005485,0.004999,0.249950,0,0);-webkit-transform:matrix(0.274240,-0.005485,0.004999,0.249950,0,0);}
.m62_c00440{transform:matrix(0.282789,-0.005090,0.004499,0.249960,0,0);-ms-transform:matrix(0.282789,-0.005090,0.004499,0.249960,0,0);-webkit-transform:matrix(0.282789,-0.005090,0.004499,0.249960,0,0);}
.m5_c00440{transform:matrix(0.284628,-0.005693,0.004999,0.249950,0,0);-ms-transform:matrix(0.284628,-0.005693,0.004999,0.249950,0,0);-webkit-transform:matrix(0.284628,-0.005693,0.004999,0.249950,0,0);}
.m63_c00440{transform:matrix(0.287313,-0.005172,0.004499,0.249960,0,0);-ms-transform:matrix(0.287313,-0.005172,0.004499,0.249960,0,0);-webkit-transform:matrix(0.287313,-0.005172,0.004499,0.249960,0,0);}
.m68_c00440{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);}
.m19_c00440{transform:matrix(0.291907,-0.005838,0.004999,0.249950,0,0);-ms-transform:matrix(0.291907,-0.005838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.291907,-0.005838,0.004999,0.249950,0,0);}
.m39_c00440{transform:matrix(0.299477,-0.005091,0.004249,0.249964,0,0);-ms-transform:matrix(0.299477,-0.005091,0.004249,0.249964,0,0);-webkit-transform:matrix(0.299477,-0.005091,0.004249,0.249964,0,0);}
.m2e_c00440{transform:matrix(0.309908,-0.006198,0.004999,0.249950,0,0);-ms-transform:matrix(0.309908,-0.006198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.309908,-0.006198,0.004999,0.249950,0,0);}
.m29_c00440{transform:matrix(0.321271,-0.006425,0.004999,0.249950,0,0);-ms-transform:matrix(0.321271,-0.006425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321271,-0.006425,0.004999,0.249950,0,0);}
.m1_c00440{transform:matrix(0.325200,-0.006504,0.004999,0.249950,0,0);-ms-transform:matrix(0.325200,-0.006504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.325200,-0.006504,0.004999,0.249950,0,0);}
.m45_c00440{transform:matrix(0.335516,-0.006039,0.004499,0.249960,0,0);-ms-transform:matrix(0.335516,-0.006039,0.004499,0.249960,0,0);-webkit-transform:matrix(0.335516,-0.006039,0.004499,0.249960,0,0);}
.m58_c00440{transform:matrix(0.375620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375620,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.392988,-0.006681,0.004249,0.249964,0,0);-ms-transform:matrix(0.392988,-0.006681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.392988,-0.006681,0.004249,0.249964,0,0);}
.m2f_c00440{transform:matrix(0.541487,-0.010830,0.004999,0.249950,0,0);-ms-transform:matrix(0.541487,-0.010830,0.004999,0.249950,0,0);-webkit-transform:matrix(0.541487,-0.010830,0.004999,0.249950,0,0);}
.m2_c00440{transform:matrix(0.677919,-0.013558,0.004999,0.249950,0,0);-ms-transform:matrix(0.677919,-0.013558,0.004999,0.249950,0,0);-webkit-transform:matrix(0.677919,-0.013558,0.004999,0.249950,0,0);}
.m30_c00440{transform:matrix(0.838467,-0.016769,0.004999,0.249950,0,0);-ms-transform:matrix(0.838467,-0.016769,0.004999,0.249950,0,0);-webkit-transform:matrix(0.838467,-0.016769,0.004999,0.249950,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:44.100000px;}
.fsd_c00440{font-size:46.200000px;}
.fsa_c00440{font-size:47.257654px;}
.fsb_c00440{font-size:49.357994px;}
.fsc_c00440{font-size:50.406451px;}
.fs0_c00440{font-size:50.410079px;}
.fs3_c00440{font-size:51.460289px;}
.fs2_c00440{font-size:52.510499px;}
.fs4_c00440{font-size:53.557737px;}
.fs1_c00440{font-size:53.560709px;}
.fs6_c00440{font-size:54.608844px;}
.fse_c00440{font-size:55.658041px;}
.fs9_c00440{font-size:55.659015px;}
.fs7_c00440{font-size:56.709185px;}
.fs5_c00440{font-size:60.909865px;}
.y0_c00440{bottom:0.000000px;}
.y34_c00440{bottom:268.468380px;}
.y68_c00440{bottom:272.160705px;}
.y69_c00440{bottom:272.843994px;}
.y6a_c00440{bottom:274.045296px;}
.y6b_c00440{bottom:276.538086px;}
.y2c_c00440{bottom:285.616680px;}
.y2d_c00440{bottom:286.216860px;}
.y2e_c00440{bottom:286.480590px;}
.y2f_c00440{bottom:286.729830px;}
.y30_c00440{bottom:287.050770px;}
.y31_c00440{bottom:287.748720px;}
.y32_c00440{bottom:288.722430px;}
.y33_c00440{bottom:289.199670px;}
.y61_c00440{bottom:292.215351px;}
.y67_c00440{bottom:292.215471px;}
.y60_c00440{bottom:292.215558px;}
.y64_c00440{bottom:292.215621px;}
.y63_c00440{bottom:292.215675px;}
.y62_c00440{bottom:292.215723px;}
.y66_c00440{bottom:292.216092px;}
.y65_c00440{bottom:292.216287px;}
.y25_c00440{bottom:303.463710px;}
.y26_c00440{bottom:304.208190px;}
.y27_c00440{bottom:304.587900px;}
.y28_c00440{bottom:305.127540px;}
.y29_c00440{bottom:305.883030px;}
.y2a_c00440{bottom:306.784860px;}
.y2b_c00440{bottom:307.112700px;}
.y59_c00440{bottom:308.073000px;}
.y5a_c00440{bottom:308.360658px;}
.y5b_c00440{bottom:309.317133px;}
.y5c_c00440{bottom:309.886698px;}
.y5d_c00440{bottom:310.218258px;}
.y5e_c00440{bottom:310.913292px;}
.y5f_c00440{bottom:311.962350px;}
.y1e_c00440{bottom:321.020160px;}
.y1f_c00440{bottom:321.774420px;}
.y20_c00440{bottom:322.756380px;}
.y21_c00440{bottom:323.635320px;}
.y22_c00440{bottom:324.023580px;}
.y23_c00440{bottom:324.563730px;}
.y24_c00440{bottom:324.750930px;}
.y74_c00440{bottom:326.143500px;}
.y75_c00440{bottom:326.774727px;}
.y76_c00440{bottom:327.630737px;}
.y77_c00440{bottom:327.847614px;}
.y78_c00440{bottom:328.397470px;}
.y79_c00440{bottom:328.747586px;}
.y7a_c00440{bottom:329.206356px;}
.y7b_c00440{bottom:329.714826px;}
.y17_c00440{bottom:339.112440px;}
.y18_c00440{bottom:340.107960px;}
.y19_c00440{bottom:340.399290px;}
.y1a_c00440{bottom:341.036850px;}
.y1b_c00440{bottom:341.507490px;}
.y1c_c00440{bottom:341.804520px;}
.y1d_c00440{bottom:342.693360px;}
.y58_c00440{bottom:343.930500px;}
.y73_c00440{bottom:346.797000px;}
.yf_c00440{bottom:357.471480px;}
.y10_c00440{bottom:357.720630px;}
.y11_c00440{bottom:358.225770px;}
.y12_c00440{bottom:358.694820px;}
.y13_c00440{bottom:359.090430px;}
.y14_c00440{bottom:359.894370px;}
.y15_c00440{bottom:360.151920px;}
.y16_c00440{bottom:360.821700px;}
.y50_c00440{bottom:361.528914px;}
.y51_c00440{bottom:361.934187px;}
.y52_c00440{bottom:362.971479px;}
.y53_c00440{bottom:363.447771px;}
.y54_c00440{bottom:363.598800px;}
.y55_c00440{bottom:364.085136px;}
.y56_c00440{bottom:364.582515px;}
.y57_c00440{bottom:364.932225px;}
.y7_c00440{bottom:375.565320px;}
.y8_c00440{bottom:375.722820px;}
.y9_c00440{bottom:376.264020px;}
.ya_c00440{bottom:377.347440px;}
.yb_c00440{bottom:377.547990px;}
.yc_c00440{bottom:377.935320px;}
.yd_c00440{bottom:378.623700px;}
.ye_c00440{bottom:379.154580px;}
.y47_c00440{bottom:379.349364px;}
.y48_c00440{bottom:379.753152px;}
.y49_c00440{bottom:380.190027px;}
.y4a_c00440{bottom:380.479005px;}
.y4b_c00440{bottom:381.030285px;}
.y4c_c00440{bottom:381.320073px;}
.y4d_c00440{bottom:382.146738px;}
.y4e_c00440{bottom:382.641957px;}
.y4f_c00440{bottom:382.883364px;}
.y3c_c00440{bottom:393.663000px;}
.y3d_c00440{bottom:393.969045px;}
.y3e_c00440{bottom:394.309353px;}
.y3f_c00440{bottom:394.815063px;}
.y40_c00440{bottom:395.184369px;}
.y41_c00440{bottom:395.495544px;}
.y42_c00440{bottom:396.073803px;}
.y43_c00440{bottom:396.491952px;}
.y44_c00440{bottom:396.783336px;}
.y45_c00440{bottom:397.221897px;}
.y6c_c00440{bottom:397.441500px;}
.y6d_c00440{bottom:397.723500px;}
.y46_c00440{bottom:397.868520px;}
.y6e_c00440{bottom:398.280636px;}
.y6f_c00440{bottom:398.941644px;}
.y70_c00440{bottom:399.411780px;}
.y71_c00440{bottom:399.702084px;}
.y72_c00440{bottom:400.380372px;}
.y1_c00440{bottom:410.944500px;}
.y2_c00440{bottom:411.633720px;}
.y3_c00440{bottom:412.973070px;}
.y4_c00440{bottom:413.753850px;}
.y5_c00440{bottom:414.031260px;}
.y6_c00440{bottom:415.013430px;}
.y35_c00440{bottom:415.264500px;}
.y36_c00440{bottom:416.290493px;}
.y37_c00440{bottom:416.497859px;}
.y38_c00440{bottom:417.173583px;}
.y39_c00440{bottom:418.350714px;}
.y3a_c00440{bottom:418.450291px;}
.y3b_c00440{bottom:418.821572px;}
.ha_c00440{height:44.100000px;}
.hf_c00440{height:46.200000px;}
.hc_c00440{height:47.257654px;}
.hd_c00440{height:49.357994px;}
.he_c00440{height:50.406451px;}
.h2_c00440{height:50.410079px;}
.h5_c00440{height:51.460289px;}
.h4_c00440{height:52.510499px;}
.h6_c00440{height:53.557737px;}
.h3_c00440{height:53.560709px;}
.h8_c00440{height:54.608844px;}
.h10_c00440{height:55.658041px;}
.hb_c00440{height:55.659015px;}
.h9_c00440{height:56.709185px;}
.h7_c00440{height:60.909865px;}
.h1_c00440{height:1005.000000px;}
.h0_c00440{height:1005.150000px;}
.w0_c00440{width:715.200000px;}
.w1_c00440{width:715.500000px;}
.x0_c00440{left:0.000000px;}
.x14_c00440{left:103.348200px;}
.x1_c00440{left:105.516000px;}
.x30_c00440{left:106.560000px;}
.x7_c00440{left:108.165360px;}
.x8_c00440{left:117.390900px;}
.xf_c00440{left:120.042360px;}
.x31_c00440{left:123.562500px;}
.x2_c00440{left:139.977000px;}
.x1a_c00440{left:141.759180px;}
.x20_c00440{left:142.799280px;}
.x25_c00440{left:143.967930px;}
.x9_c00440{left:149.252820px;}
.x15_c00440{left:158.676420px;}
.x21_c00440{left:162.760170px;}
.x32_c00440{left:170.563500px;}
.x16_c00440{left:174.893580px;}
.x10_c00440{left:177.305280px;}
.x1b_c00440{left:188.531250px;}
.x22_c00440{left:191.167740px;}
.x26_c00440{left:193.016370px;}
.x11_c00440{left:200.537160px;}
.x3_c00440{left:206.944500px;}
.x33_c00440{left:208.368000px;}
.x17_c00440{left:210.297990px;}
.xa_c00440{left:212.952630px;}
.xb_c00440{left:224.780850px;}
.x1c_c00440{left:230.377410px;}
.x27_c00440{left:234.066330px;}
.x18_c00440{left:236.456040px;}
.x34_c00440{left:240.493500px;}
.x4_c00440{left:245.983500px;}
.xc_c00440{left:247.523700px;}
.x1d_c00440{left:248.890050px;}
.x19_c00440{left:252.958200px;}
.x5_c00440{left:259.854000px;}
.x12_c00440{left:262.915380px;}
.x1e_c00440{left:274.622040px;}
.x23_c00440{left:278.385480px;}
.x35_c00440{left:279.912000px;}
.x1f_c00440{left:283.531860px;}
.xd_c00440{left:288.020130px;}
.x28_c00440{left:291.305250px;}
.x24_c00440{left:295.677840px;}
.x13_c00440{left:302.331750px;}
.x36_c00440{left:304.276500px;}
.x6_c00440{left:308.962500px;}
.xe_c00440{left:319.291020px;}
.x37_c00440{left:340.200000px;}
.x46_c00440{left:344.661000px;}
.x38_c00440{left:351.444879px;}
.x29_c00440{left:355.627500px;}
.x53_c00440{left:357.183768px;}
.x56_c00440{left:358.663500px;}
.x47_c00440{left:360.642000px;}
.x39_c00440{left:375.211311px;}
.x57_c00440{left:376.288500px;}
.x40_c00440{left:379.590867px;}
.x54_c00440{left:386.891595px;}
.x60_c00440{left:396.081000px;}
.x4d_c00440{left:399.337548px;}
.x3a_c00440{left:400.899270px;}
.x58_c00440{left:411.109500px;}
.x48_c00440{left:413.779500px;}
.x2a_c00440{left:415.980000px;}
.x3b_c00440{left:417.870567px;}
.x2b_c00440{left:428.178000px;}
.x5c_c00440{left:433.350000px;}
.x4e_c00440{left:438.764319px;}
.x41_c00440{left:440.635974px;}
.x49_c00440{left:445.422000px;}
.x61_c00440{left:446.434500px;}
.x3c_c00440{left:450.331161px;}
.x59_c00440{left:452.422500px;}
.x5d_c00440{left:455.760000px;}
.x4f_c00440{left:459.017880px;}
.x4a_c00440{left:463.842000px;}
.x2c_c00440{left:467.926500px;}
.x5e_c00440{left:474.120000px;}
.x42_c00440{left:477.571149px;}
.x50_c00440{left:479.811603px;}
.x5a_c00440{left:481.806000px;}
.x62_c00440{left:491.536500px;}
.x5b_c00440{left:499.950000px;}
.x4b_c00440{left:502.455000px;}
.x43_c00440{left:506.173662px;}
.x63_c00440{left:512.131500px;}
.x3d_c00440{left:515.940822px;}
.x51_c00440{left:528.149763px;}
.x44_c00440{left:535.389675px;}
.x2d_c00440{left:537.169500px;}
.x64_c00440{left:539.118000px;}
.x5f_c00440{left:540.810000px;}
.x2e_c00440{left:543.027000px;}
.x3e_c00440{left:545.036835px;}
.x55_c00440{left:547.521150px;}
.x52_c00440{left:551.372796px;}
.x45_c00440{left:555.985053px;}
.x3f_c00440{left:559.198578px;}
.x4c_c00440{left:560.736000px;}
.x2f_c00440{left:564.867000px;}
.x65_c00440{left:569.028000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
.fs8_c00440{font-size:39.200000pt;}
.fsd_c00440{font-size:41.066667pt;}
.fsa_c00440{font-size:42.006803pt;}
.fsb_c00440{font-size:43.873772pt;}
.fsc_c00440{font-size:44.805734pt;}
.fs0_c00440{font-size:44.808959pt;}
.fs3_c00440{font-size:45.742479pt;}
.fs2_c00440{font-size:46.675999pt;}
.fs4_c00440{font-size:47.606878pt;}
.fs1_c00440{font-size:47.609519pt;}
.fs6_c00440{font-size:48.541195pt;}
.fse_c00440{font-size:49.473814pt;}
.fs9_c00440{font-size:49.474680pt;}
.fs7_c00440{font-size:50.408164pt;}
.fs5_c00440{font-size:54.142102pt;}
.y0_c00440{bottom:0.000000pt;}
.y34_c00440{bottom:238.638560pt;}
.y68_c00440{bottom:241.920627pt;}
.y69_c00440{bottom:242.527995pt;}
.y6a_c00440{bottom:243.595819pt;}
.y6b_c00440{bottom:245.811632pt;}
.y2c_c00440{bottom:253.881493pt;}
.y2d_c00440{bottom:254.414987pt;}
.y2e_c00440{bottom:254.649413pt;}
.y2f_c00440{bottom:254.870960pt;}
.y30_c00440{bottom:255.156240pt;}
.y31_c00440{bottom:255.776640pt;}
.y32_c00440{bottom:256.642160pt;}
.y33_c00440{bottom:257.066373pt;}
.y61_c00440{bottom:259.746979pt;}
.y67_c00440{bottom:259.747085pt;}
.y60_c00440{bottom:259.747163pt;}
.y64_c00440{bottom:259.747219pt;}
.y63_c00440{bottom:259.747267pt;}
.y62_c00440{bottom:259.747309pt;}
.y66_c00440{bottom:259.747637pt;}
.y65_c00440{bottom:259.747811pt;}
.y25_c00440{bottom:269.745520pt;}
.y26_c00440{bottom:270.407280pt;}
.y27_c00440{bottom:270.744800pt;}
.y28_c00440{bottom:271.224480pt;}
.y29_c00440{bottom:271.896027pt;}
.y2a_c00440{bottom:272.697653pt;}
.y2b_c00440{bottom:272.989067pt;}
.y59_c00440{bottom:273.842667pt;}
.y5a_c00440{bottom:274.098363pt;}
.y5b_c00440{bottom:274.948563pt;}
.y5c_c00440{bottom:275.454843pt;}
.y5d_c00440{bottom:275.749563pt;}
.y5e_c00440{bottom:276.367371pt;}
.y5f_c00440{bottom:277.299867pt;}
.y1e_c00440{bottom:285.351253pt;}
.y1f_c00440{bottom:286.021707pt;}
.y20_c00440{bottom:286.894560pt;}
.y21_c00440{bottom:287.675840pt;}
.y22_c00440{bottom:288.020960pt;}
.y23_c00440{bottom:288.501093pt;}
.y24_c00440{bottom:288.667493pt;}
.y74_c00440{bottom:289.905333pt;}
.y75_c00440{bottom:290.466424pt;}
.y76_c00440{bottom:291.227321pt;}
.y77_c00440{bottom:291.420101pt;}
.y78_c00440{bottom:291.908863pt;}
.y79_c00440{bottom:292.220076pt;}
.y7a_c00440{bottom:292.627872pt;}
.y7b_c00440{bottom:293.079845pt;}
.y17_c00440{bottom:301.433280pt;}
.y18_c00440{bottom:302.318187pt;}
.y19_c00440{bottom:302.577147pt;}
.y1a_c00440{bottom:303.143867pt;}
.y1b_c00440{bottom:303.562213pt;}
.y1c_c00440{bottom:303.826240pt;}
.y1d_c00440{bottom:304.616320pt;}
.y58_c00440{bottom:305.716000pt;}
.y73_c00440{bottom:308.264000pt;}
.yf_c00440{bottom:317.752427pt;}
.y10_c00440{bottom:317.973893pt;}
.y11_c00440{bottom:318.422907pt;}
.y12_c00440{bottom:318.839840pt;}
.y13_c00440{bottom:319.191493pt;}
.y14_c00440{bottom:319.906107pt;}
.y15_c00440{bottom:320.135040pt;}
.y16_c00440{bottom:320.730400pt;}
.y50_c00440{bottom:321.359035pt;}
.y51_c00440{bottom:321.719277pt;}
.y52_c00440{bottom:322.641315pt;}
.y53_c00440{bottom:323.064685pt;}
.y54_c00440{bottom:323.198933pt;}
.y55_c00440{bottom:323.631232pt;}
.y56_c00440{bottom:324.073347pt;}
.y57_c00440{bottom:324.384200pt;}
.y7_c00440{bottom:333.835840pt;}
.y8_c00440{bottom:333.975840pt;}
.y9_c00440{bottom:334.456907pt;}
.ya_c00440{bottom:335.419947pt;}
.yb_c00440{bottom:335.598213pt;}
.yc_c00440{bottom:335.942507pt;}
.yd_c00440{bottom:336.554400pt;}
.ye_c00440{bottom:337.026293pt;}
.y47_c00440{bottom:337.199435pt;}
.y48_c00440{bottom:337.558357pt;}
.y49_c00440{bottom:337.946691pt;}
.y4a_c00440{bottom:338.203560pt;}
.y4b_c00440{bottom:338.693587pt;}
.y4c_c00440{bottom:338.951176pt;}
.y4d_c00440{bottom:339.685989pt;}
.y4e_c00440{bottom:340.126184pt;}
.y4f_c00440{bottom:340.340768pt;}
.y3c_c00440{bottom:349.922667pt;}
.y3d_c00440{bottom:350.194707pt;}
.y3e_c00440{bottom:350.497203pt;}
.y3f_c00440{bottom:350.946723pt;}
.y40_c00440{bottom:351.274995pt;}
.y41_c00440{bottom:351.551595pt;}
.y42_c00440{bottom:352.065603pt;}
.y43_c00440{bottom:352.437291pt;}
.y44_c00440{bottom:352.696299pt;}
.y45_c00440{bottom:353.086131pt;}
.y6c_c00440{bottom:353.281333pt;}
.y6d_c00440{bottom:353.532000pt;}
.y46_c00440{bottom:353.660907pt;}
.y6e_c00440{bottom:354.027232pt;}
.y6f_c00440{bottom:354.614795pt;}
.y70_c00440{bottom:355.032693pt;}
.y71_c00440{bottom:355.290741pt;}
.y72_c00440{bottom:355.893664pt;}
.y1_c00440{bottom:365.284000pt;}
.y2_c00440{bottom:365.896640pt;}
.y3_c00440{bottom:367.087173pt;}
.y4_c00440{bottom:367.781200pt;}
.y5_c00440{bottom:368.027787pt;}
.y6_c00440{bottom:368.900827pt;}
.y35_c00440{bottom:369.124000pt;}
.y36_c00440{bottom:370.035993pt;}
.y37_c00440{bottom:370.220319pt;}
.y38_c00440{bottom:370.820963pt;}
.y39_c00440{bottom:371.867301pt;}
.y3a_c00440{bottom:371.955815pt;}
.y3b_c00440{bottom:372.285841pt;}
.ha_c00440{height:39.200000pt;}
.hf_c00440{height:41.066667pt;}
.hc_c00440{height:42.006803pt;}
.hd_c00440{height:43.873772pt;}
.he_c00440{height:44.805734pt;}
.h2_c00440{height:44.808959pt;}
.h5_c00440{height:45.742479pt;}
.h4_c00440{height:46.675999pt;}
.h6_c00440{height:47.606878pt;}
.h3_c00440{height:47.609519pt;}
.h8_c00440{height:48.541195pt;}
.h10_c00440{height:49.473814pt;}
.hb_c00440{height:49.474680pt;}
.h9_c00440{height:50.408164pt;}
.h7_c00440{height:54.142102pt;}
.h1_c00440{height:893.333333pt;}
.h0_c00440{height:893.466667pt;}
.w0_c00440{width:635.733333pt;}
.w1_c00440{width:636.000000pt;}
.x0_c00440{left:0.000000pt;}
.x14_c00440{left:91.865067pt;}
.x1_c00440{left:93.792000pt;}
.x30_c00440{left:94.720000pt;}
.x7_c00440{left:96.146987pt;}
.x8_c00440{left:104.347467pt;}
.xf_c00440{left:106.704320pt;}
.x31_c00440{left:109.833333pt;}
.x2_c00440{left:124.424000pt;}
.x1a_c00440{left:126.008160pt;}
.x20_c00440{left:126.932693pt;}
.x25_c00440{left:127.971493pt;}
.x9_c00440{left:132.669173pt;}
.x15_c00440{left:141.045707pt;}
.x21_c00440{left:144.675707pt;}
.x32_c00440{left:151.612000pt;}
.x16_c00440{left:155.460960pt;}
.x10_c00440{left:157.604693pt;}
.x1b_c00440{left:167.583333pt;}
.x22_c00440{left:169.926880pt;}
.x26_c00440{left:171.570107pt;}
.x11_c00440{left:178.255253pt;}
.x3_c00440{left:183.950667pt;}
.x33_c00440{left:185.216000pt;}
.x17_c00440{left:186.931547pt;}
.xa_c00440{left:189.291227pt;}
.xb_c00440{left:199.805200pt;}
.x1c_c00440{left:204.779920pt;}
.x27_c00440{left:208.058960pt;}
.x18_c00440{left:210.183147pt;}
.x34_c00440{left:213.772000pt;}
.x4_c00440{left:218.652000pt;}
.xc_c00440{left:220.021067pt;}
.x1d_c00440{left:221.235600pt;}
.x19_c00440{left:224.851733pt;}
.x5_c00440{left:230.981333pt;}
.x12_c00440{left:233.702560pt;}
.x1e_c00440{left:244.108480pt;}
.x23_c00440{left:247.453760pt;}
.x35_c00440{left:248.810667pt;}
.x1f_c00440{left:252.028320pt;}
.xd_c00440{left:256.017893pt;}
.x28_c00440{left:258.938000pt;}
.x24_c00440{left:262.824747pt;}
.x13_c00440{left:268.739333pt;}
.x36_c00440{left:270.468000pt;}
.x6_c00440{left:274.633333pt;}
.xe_c00440{left:283.814240pt;}
.x37_c00440{left:302.400000pt;}
.x46_c00440{left:306.365333pt;}
.x38_c00440{left:312.395448pt;}
.x29_c00440{left:316.113333pt;}
.x53_c00440{left:317.496683pt;}
.x56_c00440{left:318.812000pt;}
.x47_c00440{left:320.570667pt;}
.x39_c00440{left:333.521165pt;}
.x57_c00440{left:334.478667pt;}
.x40_c00440{left:337.414104pt;}
.x54_c00440{left:343.903640pt;}
.x60_c00440{left:352.072000pt;}
.x4d_c00440{left:354.966709pt;}
.x3a_c00440{left:356.354907pt;}
.x58_c00440{left:365.430667pt;}
.x48_c00440{left:367.804000pt;}
.x2a_c00440{left:369.760000pt;}
.x3b_c00440{left:371.440504pt;}
.x2b_c00440{left:380.602667pt;}
.x5c_c00440{left:385.200000pt;}
.x4e_c00440{left:390.012728pt;}
.x41_c00440{left:391.676421pt;}
.x49_c00440{left:395.930667pt;}
.x61_c00440{left:396.830667pt;}
.x3c_c00440{left:400.294365pt;}
.x59_c00440{left:402.153333pt;}
.x5d_c00440{left:405.120000pt;}
.x4f_c00440{left:408.015893pt;}
.x4a_c00440{left:412.304000pt;}
.x2c_c00440{left:415.934667pt;}
.x5e_c00440{left:421.440000pt;}
.x42_c00440{left:424.507688pt;}
.x50_c00440{left:426.499203pt;}
.x5a_c00440{left:428.272000pt;}
.x62_c00440{left:436.921333pt;}
.x5b_c00440{left:444.400000pt;}
.x4b_c00440{left:446.626667pt;}
.x43_c00440{left:449.932144pt;}
.x63_c00440{left:455.228000pt;}
.x3d_c00440{left:458.614064pt;}
.x51_c00440{left:469.466456pt;}
.x44_c00440{left:475.901933pt;}
.x2d_c00440{left:477.484000pt;}
.x64_c00440{left:479.216000pt;}
.x5f_c00440{left:480.720000pt;}
.x2e_c00440{left:482.690667pt;}
.x3e_c00440{left:484.477187pt;}
.x55_c00440{left:486.685467pt;}
.x52_c00440{left:490.109152pt;}
.x45_c00440{left:494.208936pt;}
.x3f_c00440{left:497.065403pt;}
.x4c_c00440{left:498.432000pt;}
.x2f_c00440{left:502.104000pt;}
.x65_c00440{left:505.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m59_c00441{transform:matrix(0.011189,0.000157,-0.003500,0.249976,0,0);-ms-transform:matrix(0.011189,0.000157,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.011189,0.000157,-0.003500,0.249976,0,0);}
.m0_c00441{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.md7_c00441{transform:matrix(0.022556,0.000406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.022556,0.000406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.022556,0.000406,-0.004499,0.249960,0,0);}
.m7d_c00441{transform:matrix(0.091340,0.000913,-0.002500,0.249988,0,0);-ms-transform:matrix(0.091340,0.000913,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.091340,0.000913,-0.002500,0.249988,0,0);}
.m4d_c00441{transform:matrix(0.095656,0.001339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.095656,0.001339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.095656,0.001339,-0.003500,0.249976,0,0);}
.med_c00441{transform:matrix(0.112657,0.002028,-0.004499,0.249960,0,0);-ms-transform:matrix(0.112657,0.002028,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.112657,0.002028,-0.004499,0.249960,0,0);}
.m18_c00441{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);}
.m75_c00441{transform:matrix(0.139183,0.001392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.139183,0.001392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.139183,0.001392,-0.002500,0.249988,0,0);}
.m16_c00441{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);}
.m79_c00441{transform:matrix(0.143578,0.001436,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143578,0.001436,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143578,0.001436,-0.002500,0.249988,0,0);}
.m80_c00441{transform:matrix(0.143748,0.001437,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143748,0.001437,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143748,0.001437,-0.002500,0.249988,0,0);}
.m10_c00441{transform:matrix(0.146686,0.002934,-0.004999,0.249950,0,0);-ms-transform:matrix(0.146686,0.002934,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.146686,0.002934,-0.004999,0.249950,0,0);}
.m3a_c00441{transform:matrix(0.146929,0.001763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146929,0.001763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146929,0.001763,-0.003000,0.249982,0,0);}
.m24_c00441{transform:matrix(0.147599,0.001328,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147599,0.001328,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147599,0.001328,-0.002250,0.249990,0,0);}
.m9b_c00441{transform:matrix(0.150222,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150222,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150222,0.001502,-0.002500,0.249988,0,0);}
.m7a_c00441{transform:matrix(0.150242,0.001502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150242,0.001502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150242,0.001502,-0.002500,0.249988,0,0);}
.m7e_c00441{transform:matrix(0.152652,0.001527,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152652,0.001527,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152652,0.001527,-0.002500,0.249988,0,0);}
.mde_c00441{transform:matrix(0.154260,0.002777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.154260,0.002777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.154260,0.002777,-0.004499,0.249960,0,0);}
.m116_c00441{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);}
.m2a_c00441{transform:matrix(0.155844,0.001403,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155844,0.001403,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155844,0.001403,-0.002250,0.249990,0,0);}
.m8a_c00441{transform:matrix(0.156507,0.001565,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156507,0.001565,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156507,0.001565,-0.002500,0.249988,0,0);}
.m83_c00441{transform:matrix(0.156742,0.001567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156742,0.001567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156742,0.001567,-0.002500,0.249988,0,0);}
.m7f_c00441{transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157447,0.001574,-0.002500,0.249988,0,0);}
.m5f_c00441{transform:matrix(0.157855,0.002210,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157855,0.002210,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157855,0.002210,-0.003500,0.249976,0,0);}
.m42_c00441{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);}
.m61_c00441{transform:matrix(0.163339,0.002287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163339,0.002287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163339,0.002287,-0.003500,0.249976,0,0);}
.m2_c00441{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);}
.m13_c00441{transform:matrix(0.164817,0.003296,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164817,0.003296,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164817,0.003296,-0.004999,0.249950,0,0);}
.mb1_c00441{transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);}
.m74_c00441{transform:matrix(0.166332,0.001663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166332,0.001663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166332,0.001663,-0.002500,0.249988,0,0);}
.m119_c00441{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);}
.mb0_c00441{transform:matrix(0.166617,0.001666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166617,0.001666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166617,0.001666,-0.002500,0.249988,0,0);}
.mf4_c00441{transform:matrix(0.168113,0.003026,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168113,0.003026,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168113,0.003026,-0.004499,0.249960,0,0);}
.m60_c00441{transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);}
.m1a_c00441{transform:matrix(0.170225,0.002894,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170225,0.002894,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170225,0.002894,-0.004249,0.249964,0,0);}
.m28_c00441{transform:matrix(0.170283,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170283,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170283,0.001533,-0.002250,0.249990,0,0);}
.m30_c00441{transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);}
.me_c00441{transform:matrix(0.170791,0.003416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170791,0.003416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170791,0.003416,-0.004999,0.249950,0,0);}
.m12_c00441{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);}
.m2f_c00441{transform:matrix(0.170903,0.001538,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170903,0.001538,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170903,0.001538,-0.002250,0.249990,0,0);}
.m8f_c00441{transform:matrix(0.171846,0.001718,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171846,0.001718,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171846,0.001718,-0.002500,0.249988,0,0);}
.m5d_c00441{transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171918,0.002407,-0.003500,0.249976,0,0);}
.md9_c00441{transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172227,0.003100,-0.004499,0.249960,0,0);}
.m41_c00441{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);}
.m99_c00441{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);}
.m11c_c00441{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);}
.m10e_c00441{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);}
.mf_c00441{transform:matrix(0.174000,0.003480,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174000,0.003480,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174000,0.003480,-0.004999,0.249950,0,0);}
.m36_c00441{transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174377,0.002093,-0.003000,0.249982,0,0);}
.m3d_c00441{transform:matrix(0.174822,0.002098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174822,0.002098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174822,0.002098,-0.003000,0.249982,0,0);}
.ma4_c00441{transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175221,0.001752,-0.002500,0.249988,0,0);}
.m27_c00441{transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);}
.m44_c00441{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);}
.mcb_c00441{transform:matrix(0.177876,0.003202,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177876,0.003202,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177876,0.003202,-0.004499,0.249960,0,0);}
.mb3_c00441{transform:matrix(0.178121,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178121,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178121,0.001781,-0.002500,0.249988,0,0);}
.mdf_c00441{transform:matrix(0.178241,0.003208,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178241,0.003208,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178241,0.003208,-0.004499,0.249960,0,0);}
.m7c_c00441{transform:matrix(0.178831,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178831,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178831,0.001788,-0.002500,0.249988,0,0);}
.m5c_c00441{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);}
.mac_c00441{transform:matrix(0.180006,0.001800,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180006,0.001800,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180006,0.001800,-0.002500,0.249988,0,0);}
.m2c_c00441{transform:matrix(0.180163,0.001621,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180163,0.001621,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180163,0.001621,-0.002250,0.249990,0,0);}
.meb_c00441{transform:matrix(0.180706,0.003253,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180706,0.003253,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180706,0.003253,-0.004499,0.249960,0,0);}
.m8e_c00441{transform:matrix(0.182101,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182101,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182101,0.001821,-0.002500,0.249988,0,0);}
.m4e_c00441{transform:matrix(0.182127,0.002550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182127,0.002550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182127,0.002550,-0.003500,0.249976,0,0);}
.m70_c00441{transform:matrix(0.182471,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182471,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182471,0.001825,-0.002500,0.249988,0,0);}
.mfc_c00441{transform:matrix(0.183540,0.003304,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183540,0.003304,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183540,0.003304,-0.004499,0.249960,0,0);}
.m3f_c00441{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);}
.m10a_c00441{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);}
.m14_c00441{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);}
.ma5_c00441{transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);}
.m9c_c00441{transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);}
.m52_c00441{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);}
.mb2_c00441{transform:matrix(0.185666,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185666,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185666,0.001857,-0.002500,0.249988,0,0);}
.mf6_c00441{transform:matrix(0.185895,0.003346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185895,0.003346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185895,0.003346,-0.004499,0.249960,0,0);}
.m10f_c00441{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);}
.mb6_c00441{transform:matrix(0.187141,0.001871,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187141,0.001871,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187141,0.001871,-0.002500,0.249988,0,0);}
.mcc_c00441{transform:matrix(0.188180,0.003387,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188180,0.003387,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188180,0.003387,-0.004499,0.249960,0,0);}
.md5_c00441{transform:matrix(0.188265,0.003389,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188265,0.003389,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188265,0.003389,-0.004499,0.249960,0,0);}
.mc6_c00441{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);}
.m103_c00441{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);}
.mc2_c00441{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);}
.m69_c00441{transform:matrix(0.189806,0.001898,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189806,0.001898,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189806,0.001898,-0.002500,0.249988,0,0);}
.m10d_c00441{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);}
.m17_c00441{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);}
.m45_c00441{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);}
.m107_c00441{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);}
.m117_c00441{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);}
.mc3_c00441{transform:matrix(0.191849,0.002494,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191849,0.002494,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191849,0.002494,-0.003250,0.249979,0,0);}
.m96_c00441{transform:matrix(0.192825,0.001928,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192825,0.001928,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192825,0.001928,-0.002500,0.249988,0,0);}
.m25_c00441{transform:matrix(0.193132,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193132,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193132,0.001738,-0.002250,0.249990,0,0);}
.m37_c00441{transform:matrix(0.193396,0.002321,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193396,0.002321,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193396,0.002321,-0.003000,0.249982,0,0);}
.m67_c00441{transform:matrix(0.193455,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193455,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193455,0.001935,-0.002500,0.249988,0,0);}
.mc4_c00441{transform:matrix(0.193509,0.002516,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193509,0.002516,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193509,0.002516,-0.003250,0.249979,0,0);}
.m39_c00441{transform:matrix(0.193831,0.002326,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193831,0.002326,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193831,0.002326,-0.003000,0.249982,0,0);}
.m10b_c00441{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);}
.me8_c00441{transform:matrix(0.194109,0.003494,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194109,0.003494,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194109,0.003494,-0.004499,0.249960,0,0);}
.m66_c00441{transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);}
.m71_c00441{transform:matrix(0.194395,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194395,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194395,0.001944,-0.002500,0.249988,0,0);}
.m5_c00441{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);}
.mdd_c00441{transform:matrix(0.194773,0.003506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194773,0.003506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194773,0.003506,-0.004499,0.249960,0,0);}
.m73_c00441{transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194775,0.001948,-0.002500,0.249988,0,0);}
.mbf_c00441{transform:matrix(0.195663,0.002544,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195663,0.002544,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195663,0.002544,-0.003250,0.249979,0,0);}
.m85_c00441{transform:matrix(0.195905,0.001959,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195905,0.001959,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195905,0.001959,-0.002500,0.249988,0,0);}
.m82_c00441{transform:matrix(0.196445,0.001964,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196445,0.001964,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196445,0.001964,-0.002500,0.249988,0,0);}
.m113_c00441{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);}
.m26_c00441{transform:matrix(0.196622,0.001770,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196622,0.001770,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196622,0.001770,-0.002250,0.249990,0,0);}
.m77_c00441{transform:matrix(0.196940,0.001969,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196940,0.001969,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196940,0.001969,-0.002500,0.249988,0,0);}
.m35_c00441{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);}
.mf7_c00441{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);}
.m9a_c00441{transform:matrix(0.197870,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197870,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197870,0.001979,-0.002500,0.249988,0,0);}
.ma6_c00441{transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);}
.mdc_c00441{transform:matrix(0.199888,0.003598,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199888,0.003598,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199888,0.003598,-0.004499,0.249960,0,0);}
.m6f_c00441{transform:matrix(0.200210,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200210,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200210,0.002002,-0.002500,0.249988,0,0);}
.m4f_c00441{transform:matrix(0.200400,0.002806,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200400,0.002806,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200400,0.002806,-0.003500,0.249976,0,0);}
.m6a_c00441{transform:matrix(0.202210,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202210,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202210,0.002022,-0.002500,0.249988,0,0);}
.mc1_c00441{transform:matrix(0.202338,0.002630,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202338,0.002630,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202338,0.002630,-0.003250,0.249979,0,0);}
.me5_c00441{transform:matrix(0.202477,0.003645,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202477,0.003645,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202477,0.003645,-0.004499,0.249960,0,0);}
.m98_c00441{transform:matrix(0.202585,0.002026,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202585,0.002026,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202585,0.002026,-0.002500,0.249988,0,0);}
.m38_c00441{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);}
.md6_c00441{transform:matrix(0.203492,0.003663,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203492,0.003663,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203492,0.003663,-0.004499,0.249960,0,0);}
.m5b_c00441{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);}
.mf5_c00441{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);}
.m51_c00441{transform:matrix(0.203980,0.002856,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203980,0.002856,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203980,0.002856,-0.003500,0.249976,0,0);}
.m8c_c00441{transform:matrix(0.204475,0.002045,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204475,0.002045,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204475,0.002045,-0.002500,0.249988,0,0);}
.m72_c00441{transform:matrix(0.204940,0.002049,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204940,0.002049,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204940,0.002049,-0.002500,0.249988,0,0);}
.m11e_c00441{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);}
.m4_c00441{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);}
.m43_c00441{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);}
.m111_c00441{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);}
.md1_c00441{transform:matrix(0.206532,0.003718,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206532,0.003718,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206532,0.003718,-0.004499,0.249960,0,0);}
.m101_c00441{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);}
.m2b_c00441{transform:matrix(0.208057,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208057,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208057,0.001873,-0.002250,0.249990,0,0);}
.mca_c00441{transform:matrix(0.208271,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208271,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208271,0.003749,-0.004499,0.249960,0,0);}
.m118_c00441{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);}
.m106_c00441{transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{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);}
.m2d_c00441{transform:matrix(0.209037,0.001881,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209037,0.001881,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209037,0.001881,-0.002250,0.249990,0,0);}
.m8b_c00441{transform:matrix(0.209315,0.002093,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209315,0.002093,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209315,0.002093,-0.002500,0.249988,0,0);}
.m5e_c00441{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);}
.m10c_c00441{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);}
.m114_c00441{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);}
.m40_c00441{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);}
.m95_c00441{transform:matrix(0.210769,0.002108,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210769,0.002108,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210769,0.002108,-0.002500,0.249988,0,0);}
.mf0_c00441{transform:matrix(0.210771,0.003794,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210771,0.003794,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210771,0.003794,-0.004499,0.249960,0,0);}
.mad_c00441{transform:matrix(0.211069,0.002111,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211069,0.002111,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211069,0.002111,-0.002500,0.249988,0,0);}
.m81_c00441{transform:matrix(0.211424,0.002114,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211424,0.002114,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211424,0.002114,-0.002500,0.249988,0,0);}
.m3c_c00441{transform:matrix(0.211510,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211510,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211510,0.002538,-0.003000,0.249982,0,0);}
.mec_c00441{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);}
.m97_c00441{transform:matrix(0.211614,0.002116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211614,0.002116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211614,0.002116,-0.002500,0.249988,0,0);}
.m86_c00441{transform:matrix(0.211784,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211784,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211784,0.002118,-0.002500,0.249988,0,0);}
.m112_c00441{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);}
.mc7_c00441{transform:matrix(0.212961,0.003833,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212961,0.003833,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212961,0.003833,-0.004499,0.249960,0,0);}
.mfd_c00441{transform:matrix(0.213060,0.003835,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213060,0.003835,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213060,0.003835,-0.004499,0.249960,0,0);}
.m9f_c00441{transform:matrix(0.213674,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213674,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213674,0.002137,-0.002500,0.249988,0,0);}
.m84_c00441{transform:matrix(0.213679,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213679,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213679,0.002137,-0.002500,0.249988,0,0);}
.m68_c00441{transform:matrix(0.214124,0.002141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214124,0.002141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214124,0.002141,-0.002500,0.249988,0,0);}
.me6_c00441{transform:matrix(0.214225,0.003856,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214225,0.003856,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214225,0.003856,-0.004499,0.249960,0,0);}
.m11b_c00441{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);}
.mce_c00441{transform:matrix(0.214570,0.003862,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214570,0.003862,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214570,0.003862,-0.004499,0.249960,0,0);}
.mc5_c00441{transform:matrix(0.214637,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214637,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214637,0.002790,-0.003250,0.249979,0,0);}
.ma7_c00441{transform:matrix(0.214799,0.002148,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214799,0.002148,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214799,0.002148,-0.002500,0.249988,0,0);}
.mf9_c00441{transform:matrix(0.214840,0.003867,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214840,0.003867,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214840,0.003867,-0.004499,0.249960,0,0);}
.ma0_c00441{transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);}
.mf8_c00441{transform:matrix(0.215655,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215655,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215655,0.003882,-0.004499,0.249960,0,0);}
.m49_c00441{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);}
.m11d_c00441{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);}
.m50_c00441{transform:matrix(0.216854,0.003036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216854,0.003036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216854,0.003036,-0.003500,0.249976,0,0);}
.mbe_c00441{transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);}
.m102_c00441{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);}
.m2e_c00441{transform:matrix(0.217911,0.001961,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217911,0.001961,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217911,0.001961,-0.002250,0.249990,0,0);}
.md4_c00441{transform:matrix(0.219419,0.003950,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219419,0.003950,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219419,0.003950,-0.004499,0.249960,0,0);}
.me9_c00441{transform:matrix(0.219804,0.003956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219804,0.003956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219804,0.003956,-0.004499,0.249960,0,0);}
.md_c00441{transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220038,0.003081,-0.003500,0.249976,0,0);}
.me0_c00441{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);}
.m34_c00441{transform:matrix(0.220829,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220829,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220829,0.002650,-0.003000,0.249982,0,0);}
.mb8_c00441{transform:matrix(0.221719,0.002217,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221719,0.002217,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221719,0.002217,-0.002500,0.249988,0,0);}
.m9e_c00441{transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221879,0.002219,-0.002500,0.249988,0,0);}
.mc9_c00441{transform:matrix(0.221994,0.003996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221994,0.003996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221994,0.003996,-0.004499,0.249960,0,0);}
.m32_c00441{transform:matrix(0.222086,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222086,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222086,0.001999,-0.002250,0.249990,0,0);}
.m62_c00441{transform:matrix(0.222303,0.003112,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222303,0.003112,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222303,0.003112,-0.003500,0.249976,0,0);}
.m65_c00441{transform:matrix(0.222389,0.002224,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222389,0.002224,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222389,0.002224,-0.002500,0.249988,0,0);}
.m89_c00441{transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);}
.m31_c00441{transform:matrix(0.224276,0.002018,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224276,0.002018,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224276,0.002018,-0.002250,0.249990,0,0);}
.m5a_c00441{transform:matrix(0.224543,0.003144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224543,0.003144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224543,0.003144,-0.003500,0.249976,0,0);}
.m92_c00441{transform:matrix(0.224714,0.002247,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224714,0.002247,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224714,0.002247,-0.002500,0.249988,0,0);}
.m104_c00441{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);}
.m78_c00441{transform:matrix(0.226009,0.002260,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226009,0.002260,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226009,0.002260,-0.002500,0.249988,0,0);}
.m7_c00441{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);}
.ma1_c00441{transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226374,0.002264,-0.002500,0.249988,0,0);}
.mb_c00441{transform:matrix(0.228198,0.003195,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228198,0.003195,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228198,0.003195,-0.003500,0.249976,0,0);}
.m9d_c00441{transform:matrix(0.228614,0.002286,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228614,0.002286,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228614,0.002286,-0.002500,0.249988,0,0);}
.mf3_c00441{transform:matrix(0.230008,0.004140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230008,0.004140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230008,0.004140,-0.004499,0.249960,0,0);}
.mb9_c00441{transform:matrix(0.230363,0.002304,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230363,0.002304,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230363,0.002304,-0.002500,0.249988,0,0);}
.mae_c00441{transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);}
.m93_c00441{transform:matrix(0.230618,0.002306,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230618,0.002306,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230618,0.002306,-0.002500,0.249988,0,0);}
.mdb_c00441{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);}
.mef_c00441{transform:matrix(0.231103,0.004160,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231103,0.004160,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231103,0.004160,-0.004499,0.249960,0,0);}
.m115_c00441{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);}
.ma8_c00441{transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231898,0.002319,-0.002500,0.249988,0,0);}
.m56_c00441{transform:matrix(0.233562,0.003270,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233562,0.003270,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233562,0.003270,-0.003500,0.249976,0,0);}
.mc_c00441{transform:matrix(0.234202,0.003279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234202,0.003279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234202,0.003279,-0.003500,0.249976,0,0);}
.mf2_c00441{transform:matrix(0.234297,0.004217,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234297,0.004217,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234297,0.004217,-0.004499,0.249960,0,0);}
.m1_c00441{transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);}
.mab_c00441{transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);}
.ma2_c00441{transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235963,0.002360,-0.002500,0.249988,0,0);}
.m6_c00441{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);}
.m4b_c00441{transform:matrix(0.238782,0.003343,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238782,0.003343,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238782,0.003343,-0.003500,0.249976,0,0);}
.mc0_c00441{transform:matrix(0.239200,0.003110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239200,0.003110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239200,0.003110,-0.003250,0.249979,0,0);}
.mcf_c00441{transform:matrix(0.239441,0.004310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239441,0.004310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239441,0.004310,-0.004499,0.249960,0,0);}
.m53_c00441{transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);}
.m3e_c00441{transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);}
.mfe_c00441{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);}
.m4a_c00441{transform:matrix(0.242511,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242511,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242511,0.003395,-0.003500,0.249976,0,0);}
.mbc_c00441{transform:matrix(0.242578,0.002426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242578,0.002426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242578,0.002426,-0.002500,0.249988,0,0);}
.mff_c00441{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.mbd_c00441{transform:matrix(0.244478,0.002445,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244478,0.002445,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244478,0.002445,-0.002500,0.249988,0,0);}
.m94_c00441{transform:matrix(0.245098,0.002451,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245098,0.002451,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245098,0.002451,-0.002500,0.249988,0,0);}
.mb7_c00441{transform:matrix(0.246208,0.002462,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246208,0.002462,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246208,0.002462,-0.002500,0.249988,0,0);}
.m15_c00441{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m90_c00441{transform:matrix(0.247358,0.002474,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247358,0.002474,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247358,0.002474,-0.002500,0.249988,0,0);}
.m76_c00441{transform:matrix(0.250232,0.002502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250232,0.002502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250232,0.002502,-0.002500,0.249988,0,0);}
.mf1_c00441{transform:matrix(0.251569,0.004528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251569,0.004528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251569,0.004528,-0.004499,0.249960,0,0);}
.m29_c00441{transform:matrix(0.252685,0.002274,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252685,0.002274,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252685,0.002274,-0.002250,0.249990,0,0);}
.ma_c00441{transform:matrix(0.256490,0.003591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256490,0.003591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256490,0.003591,-0.003500,0.249976,0,0);}
.m4c_c00441{transform:matrix(0.256695,0.003594,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256695,0.003594,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256695,0.003594,-0.003500,0.249976,0,0);}
.m23_c00441{transform:matrix(0.258090,0.002323,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258090,0.002323,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258090,0.002323,-0.002250,0.249990,0,0);}
.m55_c00441{transform:matrix(0.259730,0.003636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259730,0.003636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259730,0.003636,-0.003500,0.249976,0,0);}
.mee_c00441{transform:matrix(0.260668,0.004692,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260668,0.004692,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260668,0.004692,-0.004499,0.249960,0,0);}
.mfb_c00441{transform:matrix(0.261588,0.004709,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261588,0.004709,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261588,0.004709,-0.004499,0.249960,0,0);}
.m63_c00441{transform:matrix(0.261612,0.002616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261612,0.002616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261612,0.002616,-0.002500,0.249988,0,0);}
.m48_c00441{transform:matrix(0.262209,0.003671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262209,0.003671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262209,0.003671,-0.003500,0.249976,0,0);}
.mea_c00441{transform:matrix(0.264152,0.004755,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264152,0.004755,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264152,0.004755,-0.004499,0.249960,0,0);}
.m87_c00441{transform:matrix(0.264292,0.002643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264292,0.002643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264292,0.002643,-0.002500,0.249988,0,0);}
.me7_c00441{transform:matrix(0.267237,0.004810,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267237,0.004810,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267237,0.004810,-0.004499,0.249960,0,0);}
.me1_c00441{transform:matrix(0.267992,0.004824,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267992,0.004824,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267992,0.004824,-0.004499,0.249960,0,0);}
.mcd_c00441{transform:matrix(0.271646,0.004890,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271646,0.004890,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271646,0.004890,-0.004499,0.249960,0,0);}
.m54_c00441{transform:matrix(0.271663,0.003803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271663,0.003803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271663,0.003803,-0.003500,0.249976,0,0);}
.m64_c00441{transform:matrix(0.272826,0.002728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272826,0.002728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272826,0.002728,-0.002500,0.249988,0,0);}
.m8d_c00441{transform:matrix(0.274806,0.002748,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274806,0.002748,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274806,0.002748,-0.002500,0.249988,0,0);}
.m47_c00441{transform:matrix(0.274868,0.003848,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274868,0.003848,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274868,0.003848,-0.003500,0.249976,0,0);}
.mc8_c00441{transform:matrix(0.279425,0.005030,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279425,0.005030,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279425,0.005030,-0.004499,0.249960,0,0);}
.mb4_c00441{transform:matrix(0.280661,0.002807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280661,0.002807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280661,0.002807,-0.002500,0.249988,0,0);}
.md8_c00441{transform:matrix(0.281994,0.005076,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281994,0.005076,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281994,0.005076,-0.004499,0.249960,0,0);}
.md2_c00441{transform:matrix(0.282014,0.005076,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282014,0.005076,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282014,0.005076,-0.004499,0.249960,0,0);}
.m6e_c00441{transform:matrix(0.283196,0.002832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283196,0.002832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283196,0.002832,-0.002500,0.249988,0,0);}
.ma9_c00441{transform:matrix(0.283376,0.002834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283376,0.002834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283376,0.002834,-0.002500,0.249988,0,0);}
.m88_c00441{transform:matrix(0.285216,0.002852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285216,0.002852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285216,0.002852,-0.002500,0.249988,0,0);}
.me3_c00441{transform:matrix(0.291103,0.005240,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291103,0.005240,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291103,0.005240,-0.004499,0.249960,0,0);}
.m100_c00441{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);}
.mda_c00441{transform:matrix(0.292518,0.005265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292518,0.005265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292518,0.005265,-0.004499,0.249960,0,0);}
.m9_c00441{transform:matrix(0.293391,0.004107,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293391,0.004107,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293391,0.004107,-0.003500,0.249976,0,0);}
.m110_c00441{transform:matrix(0.294425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294425,0.000000,0.000000,0.250000,0,0);}
.m58_c00441{transform:matrix(0.295051,0.004131,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295051,0.004131,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295051,0.004131,-0.003500,0.249976,0,0);}
.md3_c00441{transform:matrix(0.295697,0.005323,-0.004499,0.249960,0,0);-ms-transform:matrix(0.295697,0.005323,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.295697,0.005323,-0.004499,0.249960,0,0);}
.md0_c00441{transform:matrix(0.296447,0.005336,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296447,0.005336,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296447,0.005336,-0.004499,0.249960,0,0);}
.m105_c00441{transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297760,0.000000,0.000000,0.250000,0,0);}
.mb5_c00441{transform:matrix(0.298665,0.002987,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298665,0.002987,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298665,0.002987,-0.002500,0.249988,0,0);}
.m6d_c00441{transform:matrix(0.299845,0.002998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299845,0.002998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299845,0.002998,-0.002500,0.249988,0,0);}
.maa_c00441{transform:matrix(0.302650,0.003026,-0.002500,0.249988,0,0);-ms-transform:matrix(0.302650,0.003026,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.302650,0.003026,-0.002500,0.249988,0,0);}
.mba_c00441{transform:matrix(0.307845,0.003078,-0.002500,0.249988,0,0);-ms-transform:matrix(0.307845,0.003078,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.307845,0.003078,-0.002500,0.249988,0,0);}
.me2_c00441{transform:matrix(0.309985,0.005580,-0.004499,0.249960,0,0);-ms-transform:matrix(0.309985,0.005580,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.309985,0.005580,-0.004499,0.249960,0,0);}
.maf_c00441{transform:matrix(0.313474,0.003135,-0.002500,0.249988,0,0);-ms-transform:matrix(0.313474,0.003135,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.313474,0.003135,-0.002500,0.249988,0,0);}
.m33_c00441{transform:matrix(0.330762,0.002977,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330762,0.002977,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330762,0.002977,-0.002250,0.249990,0,0);}
.me4_c00441{transform:matrix(0.332091,0.005978,-0.004499,0.249960,0,0);-ms-transform:matrix(0.332091,0.005978,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.332091,0.005978,-0.004499,0.249960,0,0);}
.m6b_c00441{transform:matrix(0.337243,0.003372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.337243,0.003372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.337243,0.003372,-0.002500,0.249988,0,0);}
.m7b_c00441{transform:matrix(0.348083,0.003481,-0.002500,0.249988,0,0);-ms-transform:matrix(0.348083,0.003481,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.348083,0.003481,-0.002500,0.249988,0,0);}
.m91_c00441{transform:matrix(0.352942,0.003529,-0.002500,0.249988,0,0);-ms-transform:matrix(0.352942,0.003529,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.352942,0.003529,-0.002500,0.249988,0,0);}
.m109_c00441{transform:matrix(0.353820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353820,0.000000,0.000000,0.250000,0,0);}
.mbb_c00441{transform:matrix(0.356952,0.003570,-0.002500,0.249988,0,0);-ms-transform:matrix(0.356952,0.003570,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.356952,0.003570,-0.002500,0.249988,0,0);}
.ma3_c00441{transform:matrix(0.357642,0.003576,-0.002500,0.249988,0,0);-ms-transform:matrix(0.357642,0.003576,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.357642,0.003576,-0.002500,0.249988,0,0);}
.m6c_c00441{transform:matrix(0.365072,0.003651,-0.002500,0.249988,0,0);-ms-transform:matrix(0.365072,0.003651,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.365072,0.003651,-0.002500,0.249988,0,0);}
.m21_c00441{transform:matrix(0.366565,0.003299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.366565,0.003299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.366565,0.003299,-0.002250,0.249990,0,0);}
.m19_c00441{transform:matrix(0.375686,0.006387,-0.004249,0.249964,0,0);-ms-transform:matrix(0.375686,0.006387,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.375686,0.006387,-0.004249,0.249964,0,0);}
.mfa_c00441{transform:matrix(0.406164,0.007311,-0.004499,0.249960,0,0);-ms-transform:matrix(0.406164,0.007311,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.406164,0.007311,-0.004499,0.249960,0,0);}
.m1f_c00441{transform:matrix(0.426258,0.003836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.426258,0.003836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.426258,0.003836,-0.002250,0.249990,0,0);}
.m108_c00441{transform:matrix(0.427210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.432088,0.007345,-0.004249,0.249964,0,0);-ms-transform:matrix(0.432088,0.007345,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.432088,0.007345,-0.004249,0.249964,0,0);}
.m1b_c00441{transform:matrix(0.472077,0.008025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.472077,0.008025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.472077,0.008025,-0.004249,0.249964,0,0);}
.m3b_c00441{transform:matrix(0.476521,0.005718,-0.003000,0.249982,0,0);-ms-transform:matrix(0.476521,0.005718,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.476521,0.005718,-0.003000,0.249982,0,0);}
.m20_c00441{transform:matrix(0.479806,0.004318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.479806,0.004318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.479806,0.004318,-0.002250,0.249990,0,0);}
.m46_c00441{transform:matrix(0.519525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519525,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.570072,0.005131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.570072,0.005131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.570072,0.005131,-0.002250,0.249990,0,0);}
.m1d_c00441{transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583975,0.000000,0.000000,0.250000,0,0);}
.m11a_c00441{transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(0.655286,0.009174,-0.003500,0.249976,0,0);-ms-transform:matrix(0.655286,0.009174,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.655286,0.009174,-0.003500,0.249976,0,0);}
.m1e_c00441{transform:matrix(0.661210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661210,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.730014,0.014600,-0.004999,0.249950,0,0);-ms-transform:matrix(0.730014,0.014600,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.730014,0.014600,-0.004999,0.249950,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;}
.fs1d_c00441{font-size:47.250000px;}
.fs12_c00441{font-size:48.302415px;}
.fs1b_c00441{font-size:49.350000px;}
.fs11_c00441{font-size:49.352467px;}
.fs16_c00441{font-size:49.357994px;}
.fs13_c00441{font-size:50.402520px;}
.fs14_c00441{font-size:50.404259px;}
.fs18_c00441{font-size:50.408164px;}
.fs0_c00441{font-size:51.450000px;}
.fse_c00441{font-size:51.452572px;}
.fs1_c00441{font-size:51.455042px;}
.fs15_c00441{font-size:51.458334px;}
.fs1a_c00441{font-size:52.500000px;}
.fs10_c00441{font-size:52.502625px;}
.fs17_c00441{font-size:52.508504px;}
.fs19_c00441{font-size:53.550000px;}
.fsd_c00441{font-size:53.552677px;}
.fs1c_c00441{font-size:54.600000px;}
.fs2_c00441{font-size:58.811759px;}
.fsf_c00441{font-size:59.852992px;}
.fs8_c00441{font-size:61.952509px;}
.fs5_c00441{font-size:67.200000px;}
.fsc_c00441{font-size:68.256688px;}
.fsa_c00441{font-size:70.350000px;}
.fs7_c00441{font-size:70.352849px;}
.fs9_c00441{font-size:70.355065px;}
.fsb_c00441{font-size:71.406997px;}
.fs3_c00441{font-size:91.350000px;}
.fs6_c00441{font-size:96.603912px;}
.fs4_c00441{font-size:101.864716px;}
.y0_c00441{bottom:0.000000px;}
.yf2_c00441{bottom:143.193000px;}
.yc_c00441{bottom:144.394620px;}
.yb_c00441{bottom:145.209870px;}
.ya_c00441{bottom:146.598810px;}
.y9_c00441{bottom:147.116340px;}
.y8_c00441{bottom:147.408090px;}
.y7_c00441{bottom:148.504500px;}
.yf1_c00441{bottom:160.215000px;}
.yeb_c00441{bottom:162.611319px;}
.yea_c00441{bottom:163.175019px;}
.ye9_c00441{bottom:164.125728px;}
.ye8_c00441{bottom:164.547375px;}
.ye7_c00441{bottom:165.622695px;}
.ye6_c00441{bottom:166.300557px;}
.yf0_c00441{bottom:179.413500px;}
.ye5_c00441{bottom:179.691036px;}
.ye4_c00441{bottom:180.163575px;}
.ye3_c00441{bottom:180.830037px;}
.ye2_c00441{bottom:181.569120px;}
.ye1_c00441{bottom:181.774182px;}
.ye0_c00441{bottom:182.851593px;}
.ydf_c00441{bottom:183.587112px;}
.yef_c00441{bottom:197.337000px;}
.yde_c00441{bottom:198.590154px;}
.ydd_c00441{bottom:198.813663px;}
.ydc_c00441{bottom:199.451787px;}
.ydb_c00441{bottom:199.582524px;}
.yda_c00441{bottom:200.623914px;}
.yd9_c00441{bottom:201.406326px;}
.yee_c00441{bottom:214.789500px;}
.yd8_c00441{bottom:217.832310px;}
.yd4_c00441{bottom:217.832358px;}
.yd5_c00441{bottom:217.832487px;}
.yd7_c00441{bottom:217.832709px;}
.yd6_c00441{bottom:217.832841px;}
.yd3_c00441{bottom:217.832850px;}
.yed_c00441{bottom:232.251000px;}
.yd2_c00441{bottom:233.576958px;}
.yd1_c00441{bottom:233.731149px;}
.yd0_c00441{bottom:234.206370px;}
.ycf_c00441{bottom:234.484341px;}
.yce_c00441{bottom:234.937020px;}
.ycd_c00441{bottom:235.598775px;}
.ycc_c00441{bottom:235.813101px;}
.ycb_c00441{bottom:236.478015px;}
.yca_c00441{bottom:237.053232px;}
.yec_c00441{bottom:249.210000px;}
.yab_c00441{bottom:249.926625px;}
.yac_c00441{bottom:249.926640px;}
.yaa_c00441{bottom:249.926925px;}
.ya9_c00441{bottom:249.927510px;}
.yc9_c00441{bottom:251.365371px;}
.yc8_c00441{bottom:251.689149px;}
.yc7_c00441{bottom:251.974995px;}
.yc6_c00441{bottom:252.733920px;}
.yc5_c00441{bottom:252.810204px;}
.yc4_c00441{bottom:253.785198px;}
.yc3_c00441{bottom:254.114160px;}
.yc2_c00441{bottom:254.875974px;}
.ya4_c00441{bottom:267.679125px;}
.ya6_c00441{bottom:267.679155px;}
.ya3_c00441{bottom:267.679710px;}
.ya5_c00441{bottom:267.679740px;}
.ya7_c00441{bottom:267.679770px;}
.ya8_c00441{bottom:267.680085px;}
.ya2_c00441{bottom:267.680310px;}
.ya1_c00441{bottom:267.680895px;}
.yc1_c00441{bottom:268.495365px;}
.yc0_c00441{bottom:268.874823px;}
.ybf_c00441{bottom:269.599098px;}
.ybe_c00441{bottom:270.430644px;}
.ybd_c00441{bottom:270.827787px;}
.ybc_c00441{bottom:271.781238px;}
.ybb_c00441{bottom:272.699724px;}
.y99_c00441{bottom:285.625110px;}
.y97_c00441{bottom:285.625380px;}
.y98_c00441{bottom:285.625395px;}
.y9a_c00441{bottom:285.625725px;}
.ya0_c00441{bottom:285.626100px;}
.y9b_c00441{bottom:285.626340px;}
.y9c_c00441{bottom:285.626640px;}
.y9e_c00441{bottom:285.626670px;}
.y9f_c00441{bottom:285.626685px;}
.y9d_c00441{bottom:285.627270px;}
.yba_c00441{bottom:287.555280px;}
.yb9_c00441{bottom:288.002427px;}
.yb8_c00441{bottom:288.419523px;}
.yb7_c00441{bottom:289.212189px;}
.yb6_c00441{bottom:289.645620px;}
.yb5_c00441{bottom:290.429079px;}
.yb4_c00441{bottom:290.791500px;}
.y91_c00441{bottom:303.888270px;}
.y93_c00441{bottom:303.888285px;}
.y95_c00441{bottom:303.888300px;}
.y92_c00441{bottom:303.888585px;}
.y94_c00441{bottom:303.888600px;}
.y96_c00441{bottom:303.888630px;}
.y90_c00441{bottom:303.888870px;}
.y8e_c00441{bottom:303.889125px;}
.y8f_c00441{bottom:303.889440px;}
.y6_c00441{bottom:305.542302px;}
.y5_c00441{bottom:306.340218px;}
.y4_c00441{bottom:307.076919px;}
.y3_c00441{bottom:307.787916px;}
.y2_c00441{bottom:308.071500px;}
.y8c_c00441{bottom:321.404370px;}
.y8d_c00441{bottom:321.404385px;}
.y8b_c00441{bottom:321.404955px;}
.y8a_c00441{bottom:321.405540px;}
.y86_c00441{bottom:321.405780px;}
.y88_c00441{bottom:321.405810px;}
.y89_c00441{bottom:321.406125px;}
.y87_c00441{bottom:321.406395px;}
.yb3_c00441{bottom:323.556651px;}
.yb2_c00441{bottom:324.227100px;}
.yb1_c00441{bottom:324.630633px;}
.yb0_c00441{bottom:325.024045px;}
.yaf_c00441{bottom:325.452226px;}
.yae_c00441{bottom:325.613765px;}
.yad_c00441{bottom:326.161500px;}
.y83_c00441{bottom:339.359025px;}
.y84_c00441{bottom:339.359055px;}
.y85_c00441{bottom:339.359070px;}
.y82_c00441{bottom:339.359610px;}
.y7e_c00441{bottom:339.359865px;}
.y81_c00441{bottom:339.360195px;}
.y7f_c00441{bottom:339.360480px;}
.y80_c00441{bottom:339.360780px;}
.y1_c00441{bottom:342.375000px;}
.y7d_c00441{bottom:356.179170px;}
.y7c_c00441{bottom:356.541840px;}
.y7b_c00441{bottom:356.737080px;}
.y7a_c00441{bottom:357.067965px;}
.y79_c00441{bottom:357.651045px;}
.y78_c00441{bottom:357.864915px;}
.y77_c00441{bottom:358.101420px;}
.y76_c00441{bottom:358.409160px;}
.y75_c00441{bottom:358.599750px;}
.y74_c00441{bottom:359.024025px;}
.y73_c00441{bottom:359.179245px;}
.y72_c00441{bottom:359.652885px;}
.y71_c00441{bottom:360.126690px;}
.y70_c00441{bottom:360.264900px;}
.y6f_c00441{bottom:361.001145px;}
.y6e_c00441{bottom:361.525710px;}
.y6d_c00441{bottom:374.385330px;}
.y6c_c00441{bottom:374.811750px;}
.y6b_c00441{bottom:375.182820px;}
.y6a_c00441{bottom:375.329085px;}
.y69_c00441{bottom:376.120965px;}
.y68_c00441{bottom:376.277265px;}
.y67_c00441{bottom:376.606260px;}
.y66_c00441{bottom:376.783545px;}
.y65_c00441{bottom:377.544525px;}
.y64_c00441{bottom:378.401715px;}
.y63_c00441{bottom:378.606000px;}
.y62_c00441{bottom:379.192500px;}
.y61_c00441{bottom:379.618875px;}
.y60_c00441{bottom:392.148195px;}
.y5f_c00441{bottom:392.509830px;}
.y5e_c00441{bottom:392.912595px;}
.y5d_c00441{bottom:393.353370px;}
.y5c_c00441{bottom:393.722640px;}
.y5b_c00441{bottom:394.128165px;}
.y5a_c00441{bottom:394.347780px;}
.y59_c00441{bottom:394.493400px;}
.y58_c00441{bottom:394.765050px;}
.y57_c00441{bottom:394.936185px;}
.y56_c00441{bottom:395.302890px;}
.y55_c00441{bottom:395.624370px;}
.y54_c00441{bottom:396.122055px;}
.y53_c00441{bottom:396.508290px;}
.y52_c00441{bottom:396.910560px;}
.y51_c00441{bottom:397.170180px;}
.y50_c00441{bottom:422.562000px;}
.y4f_c00441{bottom:444.012189px;}
.y4e_c00441{bottom:444.612234px;}
.y4d_c00441{bottom:445.154586px;}
.y4c_c00441{bottom:445.604355px;}
.y4b_c00441{bottom:446.811774px;}
.y4a_c00441{bottom:447.127635px;}
.y49_c00441{bottom:447.763200px;}
.y48_c00441{bottom:448.188495px;}
.y47_c00441{bottom:448.569504px;}
.y46_c00441{bottom:448.736202px;}
.y45_c00441{bottom:465.483105px;}
.y44_c00441{bottom:466.417929px;}
.y43_c00441{bottom:466.669245px;}
.y42_c00441{bottom:467.512155px;}
.y41_c00441{bottom:467.658558px;}
.y40_c00441{bottom:468.526281px;}
.y3f_c00441{bottom:469.505859px;}
.y3e_c00441{bottom:469.762026px;}
.y3d_c00441{bottom:470.340621px;}
.y3c_c00441{bottom:489.304152px;}
.y3b_c00441{bottom:489.859812px;}
.y3a_c00441{bottom:489.988017px;}
.y39_c00441{bottom:490.270887px;}
.y38_c00441{bottom:490.815249px;}
.y37_c00441{bottom:491.834043px;}
.y36_c00441{bottom:492.209313px;}
.y35_c00441{bottom:492.637419px;}
.y34_c00441{bottom:493.023000px;}
.y33_c00441{bottom:517.548000px;}
.y32_c00441{bottom:545.728500px;}
.y31_c00441{bottom:566.773404px;}
.y30_c00441{bottom:567.320496px;}
.y2f_c00441{bottom:567.690342px;}
.y2e_c00441{bottom:567.933396px;}
.y2d_c00441{bottom:568.393476px;}
.y2c_c00441{bottom:568.818042px;}
.y2b_c00441{bottom:569.488020px;}
.y2a_c00441{bottom:569.942358px;}
.y29_c00441{bottom:570.431526px;}
.y28_c00441{bottom:570.781500px;}
.y24_c00441{bottom:592.223894px;}
.y25_c00441{bottom:592.224177px;}
.y22_c00441{bottom:592.224363px;}
.y21_c00441{bottom:592.224530px;}
.y23_c00441{bottom:592.224630px;}
.y26_c00441{bottom:592.224791px;}
.y20_c00441{bottom:592.225056px;}
.y27_c00441{bottom:592.225524px;}
.y1f_c00441{bottom:613.218455px;}
.y1e_c00441{bottom:613.434738px;}
.y1d_c00441{bottom:613.935412px;}
.y1c_c00441{bottom:614.270712px;}
.y1b_c00441{bottom:614.586666px;}
.y1a_c00441{bottom:614.941230px;}
.y19_c00441{bottom:615.233033px;}
.y18_c00441{bottom:615.403187px;}
.y17_c00441{bottom:615.896152px;}
.y16_c00441{bottom:616.413000px;}
.y15_c00441{bottom:654.527463px;}
.y14_c00441{bottom:694.863134px;}
.y13_c00441{bottom:696.333000px;}
.y12_c00441{bottom:742.000500px;}
.y11_c00441{bottom:788.198273px;}
.y10_c00441{bottom:788.941904px;}
.yf_c00441{bottom:790.580610px;}
.ye_c00441{bottom:791.697000px;}
.yd_c00441{bottom:936.736500px;}
.h1f_c00441{height:47.250000px;}
.h14_c00441{height:48.302415px;}
.h1d_c00441{height:49.350000px;}
.h13_c00441{height:49.352467px;}
.h18_c00441{height:49.357994px;}
.h15_c00441{height:50.402520px;}
.h16_c00441{height:50.404259px;}
.h1a_c00441{height:50.408164px;}
.h2_c00441{height:51.450000px;}
.h10_c00441{height:51.452572px;}
.h3_c00441{height:51.455042px;}
.h17_c00441{height:51.458334px;}
.h1c_c00441{height:52.500000px;}
.h12_c00441{height:52.502625px;}
.h19_c00441{height:52.508504px;}
.h1b_c00441{height:53.550000px;}
.hf_c00441{height:53.552677px;}
.h1e_c00441{height:54.600000px;}
.h4_c00441{height:58.811759px;}
.h11_c00441{height:59.852992px;}
.ha_c00441{height:61.952509px;}
.h7_c00441{height:67.200000px;}
.he_c00441{height:68.256688px;}
.hc_c00441{height:70.350000px;}
.h9_c00441{height:70.352849px;}
.hb_c00441{height:70.355065px;}
.hd_c00441{height:71.406997px;}
.h5_c00441{height:91.350000px;}
.h8_c00441{height:96.603912px;}
.h6_c00441{height:101.864716px;}
.h0_c00441{height:1008.450000px;}
.h1_c00441{height:1008.750000px;}
.w1_c00441{width:689.250000px;}
.w0_c00441{width:689.550000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:117.450000px;}
.x2_c00441{left:126.360000px;}
.xa_c00441{left:128.653500px;}
.x57_c00441{left:130.034745px;}
.xf_c00441{left:131.835000px;}
.x51_c00441{left:144.331170px;}
.xb_c00441{left:148.909500px;}
.x88_c00441{left:152.587500px;}
.x4b_c00441{left:154.709997px;}
.x3_c00441{left:157.140000px;}
.x58_c00441{left:160.521030px;}
.x30_c00441{left:166.431000px;}
.x22_c00441{left:167.940000px;}
.x95_c00441{left:169.021005px;}
.x9a_c00441{left:170.184432px;}
.x4_c00441{left:171.720000px;}
.x87_c00441{left:174.030000px;}
.x60_c00441{left:175.126095px;}
.x8e_c00441{left:176.687349px;}
.x20_c00441{left:181.987500px;}
.x10_c00441{left:186.655500px;}
.x2b_c00441{left:188.998527px;}
.x4c_c00441{left:191.259993px;}
.x31_c00441{left:195.595500px;}
.x38_c00441{left:196.830000px;}
.xc_c00441{left:199.695000px;}
.x11_c00441{left:201.243000px;}
.x5_c00441{left:203.310000px;}
.x15_c00441{left:205.470000px;}
.x1e_c00441{left:207.900000px;}
.x92_c00441{left:209.094033px;}
.x43_c00441{left:212.849694px;}
.x59_c00441{left:216.947265px;}
.x1a_c00441{left:218.332500px;}
.x4d_c00441{left:219.602094px;}
.x93_c00441{left:222.501519px;}
.x23_c00441{left:225.367500px;}
.x12_c00441{left:227.119500px;}
.x44_c00441{left:232.540467px;}
.x6_c00441{left:233.820000px;}
.x96_c00441{left:235.452024px;}
.x2c_c00441{left:236.520875px;}
.x9b_c00441{left:237.681717px;}
.x61_c00441{left:248.020140px;}
.x16_c00441{left:250.560000px;}
.xd_c00441{left:252.316500px;}
.x8f_c00441{left:253.380726px;}
.x8b_c00441{left:257.869245px;}
.x9c_c00441{left:259.869024px;}
.x4e_c00441{left:261.999006px;}
.x89_c00441{left:264.229500px;}
.x7_c00441{left:271.350000px;}
.x52_c00441{left:273.109590px;}
.x32_c00441{left:274.221000px;}
.x39_c00441{left:275.940000px;}
.x5a_c00441{left:278.213820px;}
.x24_c00441{left:280.141500px;}
.x1b_c00441{left:284.002500px;}
.x62_c00441{left:287.449845px;}
.x3e_c00441{left:290.250000px;}
.x94_c00441{left:292.167030px;}
.x13_c00441{left:296.566500px;}
.x8_c00441{left:297.810000px;}
.x25_c00441{left:299.047500px;}
.x21_c00441{left:300.513880px;}
.x90_c00441{left:302.532117px;}
.x8c_c00441{left:304.066245px;}
.x45_c00441{left:307.868517px;}
.xe_c00441{left:309.310500px;}
.x8a_c00441{left:312.243000px;}
.x17_c00441{left:315.900000px;}
.x98_c00441{left:317.654421px;}
.x2d_c00441{left:319.413084px;}
.x97_c00441{left:322.406685px;}
.x3f_c00441{left:325.722000px;}
.x63_c00441{left:326.863050px;}
.x33_c00441{left:330.052500px;}
.x9_c00441{left:332.100000px;}
.x99_c00441{left:333.656082px;}
.x14_c00441{left:337.329000px;}
.x91_c00441{left:338.400765px;}
.x64_c00441{left:339.834795px;}
.x8d_c00441{left:344.303745px;}
.x1f_c00441{left:345.600000px;}
.x2e_c00441{left:349.384014px;}
.x3a_c00441{left:350.730000px;}
.x18_c00441{left:359.640000px;}
.x4f_c00441{left:363.517578px;}
.x34_c00441{left:365.433000px;}
.x53_c00441{left:367.304700px;}
.x5b_c00441{left:368.636190px;}
.x26_c00441{left:370.866000px;}
.x46_c00441{left:374.563941px;}
.x1c_c00441{left:380.397000px;}
.x69_c00441{left:382.608450px;}
.x40_c00441{left:384.810000px;}
.x47_c00441{left:385.878609px;}
.x3b_c00441{left:390.150000px;}
.x41_c00441{left:393.967500px;}
.x7e_c00441{left:395.569455px;}
.x19_c00441{left:397.440000px;}
.xa4_c00441{left:399.060000px;}
.x6a_c00441{left:402.048900px;}
.x35_c00441{left:403.773000px;}
.x27_c00441{left:405.972000px;}
.xa5_c00441{left:407.970000px;}
.x70_c00441{left:409.878660px;}
.x6b_c00441{left:413.120010px;}
.x65_c00441{left:416.793765px;}
.x78_c00441{left:422.300250px;}
.x1d_c00441{left:424.140000px;}
.x81_c00441{left:428.511810px;}
.x50_c00441{left:429.668154px;}
.x3c_c00441{left:432.270000px;}
.x42_c00441{left:433.657500px;}
.x86_c00441{left:434.993445px;}
.x5c_c00441{left:436.301475px;}
.x2f_c00441{left:437.408156px;}
.xa1_c00441{left:439.290000px;}
.x71_c00441{left:440.390205px;}
.xa2_c00441{left:441.990000px;}
.x28_c00441{left:443.227500px;}
.x5d_c00441{left:446.727555px;}
.x48_c00441{left:450.694512px;}
.x82_c00441{left:452.272680px;}
.x36_c00441{left:454.848000px;}
.xa6_c00441{left:460.080000px;}
.x54_c00441{left:462.405810px;}
.x3d_c00441{left:464.670000px;}
.x6c_c00441{left:467.392425px;}
.x83_c00441{left:469.012860px;}
.x49_c00441{left:470.038785px;}
.x72_c00441{left:471.711840px;}
.x5e_c00441{left:473.183490px;}
.x79_c00441{left:477.112725px;}
.x73_c00441{left:479.812650px;}
.x7a_c00441{left:486.023610px;}
.x6d_c00441{left:488.453025px;}
.xa0_c00441{left:493.290000px;}
.x29_c00441{left:498.858000px;}
.x37_c00441{left:500.439000px;}
.x5f_c00441{left:503.674275px;}
.x84_c00441{left:506.275080px;}
.x74_c00441{left:508.974060px;}
.x9d_c00441{left:513.000000px;}
.xa3_c00441{left:517.590000px;}
.x7b_c00441{left:518.695380px;}
.x2a_c00441{left:522.889500px;}
.x75_c00441{left:527.334390px;}
.x66_c00441{left:530.425485px;}
.x55_c00441{left:532.658400px;}
.xa7_c00441{left:534.060000px;}
.x6e_c00441{left:539.755155px;}
.x4a_c00441{left:541.955793px;}
.x67_c00441{left:546.649155px;}
.x76_c00441{left:556.495800px;}
.xa8_c00441{left:558.630000px;}
.x7c_c00441{left:560.278035px;}
.x6f_c00441{left:561.355815px;}
.x56_c00441{left:562.821300px;}
.x7f_c00441{left:564.057315px;}
.x68_c00441{left:576.915555px;}
.x9e_c00441{left:580.770000px;}
.x85_c00441{left:584.039865px;}
.x80_c00441{left:589.168320px;}
.x77_c00441{left:591.597810px;}
.x9f_c00441{left:601.830000px;}
.x7d_c00441{left:607.799790px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs1d_c00441{font-size:42.000000pt;}
.fs12_c00441{font-size:42.935480pt;}
.fs1b_c00441{font-size:43.866667pt;}
.fs11_c00441{font-size:43.868860pt;}
.fs16_c00441{font-size:43.873772pt;}
.fs13_c00441{font-size:44.802240pt;}
.fs14_c00441{font-size:44.803785pt;}
.fs18_c00441{font-size:44.807257pt;}
.fs0_c00441{font-size:45.733333pt;}
.fse_c00441{font-size:45.735620pt;}
.fs1_c00441{font-size:45.737815pt;}
.fs15_c00441{font-size:45.740742pt;}
.fs1a_c00441{font-size:46.666667pt;}
.fs10_c00441{font-size:46.669000pt;}
.fs17_c00441{font-size:46.674226pt;}
.fs19_c00441{font-size:47.600000pt;}
.fsd_c00441{font-size:47.602380pt;}
.fs1c_c00441{font-size:48.533333pt;}
.fs2_c00441{font-size:52.277119pt;}
.fsf_c00441{font-size:53.202660pt;}
.fs8_c00441{font-size:55.068897pt;}
.fs5_c00441{font-size:59.733333pt;}
.fsc_c00441{font-size:60.672612pt;}
.fsa_c00441{font-size:62.533333pt;}
.fs7_c00441{font-size:62.535866pt;}
.fs9_c00441{font-size:62.537836pt;}
.fsb_c00441{font-size:63.472886pt;}
.fs3_c00441{font-size:81.200000pt;}
.fs6_c00441{font-size:85.870144pt;}
.fs4_c00441{font-size:90.546414pt;}
.y0_c00441{bottom:0.000000pt;}
.yf2_c00441{bottom:127.282667pt;}
.yc_c00441{bottom:128.350773pt;}
.yb_c00441{bottom:129.075440pt;}
.ya_c00441{bottom:130.310053pt;}
.y9_c00441{bottom:130.770080pt;}
.y8_c00441{bottom:131.029413pt;}
.y7_c00441{bottom:132.004000pt;}
.yf1_c00441{bottom:142.413333pt;}
.yeb_c00441{bottom:144.543395pt;}
.yea_c00441{bottom:145.044461pt;}
.ye9_c00441{bottom:145.889536pt;}
.ye8_c00441{bottom:146.264333pt;}
.ye7_c00441{bottom:147.220173pt;}
.ye6_c00441{bottom:147.822717pt;}
.yf0_c00441{bottom:159.478667pt;}
.ye5_c00441{bottom:159.725365pt;}
.ye4_c00441{bottom:160.145400pt;}
.ye3_c00441{bottom:160.737811pt;}
.ye2_c00441{bottom:161.394773pt;}
.ye1_c00441{bottom:161.577051pt;}
.ye0_c00441{bottom:162.534749pt;}
.ydf_c00441{bottom:163.188544pt;}
.yef_c00441{bottom:175.410667pt;}
.yde_c00441{bottom:176.524581pt;}
.ydd_c00441{bottom:176.723256pt;}
.ydc_c00441{bottom:177.290477pt;}
.ydb_c00441{bottom:177.406688pt;}
.yda_c00441{bottom:178.332368pt;}
.yd9_c00441{bottom:179.027845pt;}
.yee_c00441{bottom:190.924000pt;}
.yd8_c00441{bottom:193.628720pt;}
.yd4_c00441{bottom:193.628763pt;}
.yd5_c00441{bottom:193.628877pt;}
.yd7_c00441{bottom:193.629075pt;}
.yd6_c00441{bottom:193.629192pt;}
.yd3_c00441{bottom:193.629200pt;}
.yed_c00441{bottom:206.445333pt;}
.yd2_c00441{bottom:207.623963pt;}
.yd1_c00441{bottom:207.761021pt;}
.yd0_c00441{bottom:208.183440pt;}
.ycf_c00441{bottom:208.430525pt;}
.yce_c00441{bottom:208.832907pt;}
.ycd_c00441{bottom:209.421133pt;}
.ycc_c00441{bottom:209.611645pt;}
.ycb_c00441{bottom:210.202680pt;}
.yca_c00441{bottom:210.713984pt;}
.yec_c00441{bottom:221.520000pt;}
.yab_c00441{bottom:222.157000pt;}
.yac_c00441{bottom:222.157013pt;}
.yaa_c00441{bottom:222.157267pt;}
.ya9_c00441{bottom:222.157787pt;}
.yc9_c00441{bottom:223.435885pt;}
.yc8_c00441{bottom:223.723688pt;}
.yc7_c00441{bottom:223.977773pt;}
.yc6_c00441{bottom:224.652373pt;}
.yc5_c00441{bottom:224.720181pt;}
.yc4_c00441{bottom:225.586843pt;}
.yc3_c00441{bottom:225.879253pt;}
.yc2_c00441{bottom:226.556421pt;}
.ya4_c00441{bottom:237.937000pt;}
.ya6_c00441{bottom:237.937027pt;}
.ya3_c00441{bottom:237.937520pt;}
.ya5_c00441{bottom:237.937547pt;}
.ya7_c00441{bottom:237.937573pt;}
.ya8_c00441{bottom:237.937853pt;}
.ya2_c00441{bottom:237.938053pt;}
.ya1_c00441{bottom:237.938573pt;}
.yc1_c00441{bottom:238.662547pt;}
.yc0_c00441{bottom:238.999843pt;}
.ybf_c00441{bottom:239.643643pt;}
.ybe_c00441{bottom:240.382795pt;}
.ybd_c00441{bottom:240.735811pt;}
.ybc_c00441{bottom:241.583323pt;}
.ybb_c00441{bottom:242.399755pt;}
.y99_c00441{bottom:253.888987pt;}
.y97_c00441{bottom:253.889227pt;}
.y98_c00441{bottom:253.889240pt;}
.y9a_c00441{bottom:253.889533pt;}
.ya0_c00441{bottom:253.889867pt;}
.y9b_c00441{bottom:253.890080pt;}
.y9c_c00441{bottom:253.890347pt;}
.y9e_c00441{bottom:253.890373pt;}
.y9f_c00441{bottom:253.890387pt;}
.y9d_c00441{bottom:253.890907pt;}
.yba_c00441{bottom:255.604693pt;}
.yb9_c00441{bottom:256.002157pt;}
.yb8_c00441{bottom:256.372909pt;}
.yb7_c00441{bottom:257.077501pt;}
.yb6_c00441{bottom:257.462773pt;}
.yb5_c00441{bottom:258.159181pt;}
.yb4_c00441{bottom:258.481333pt;}
.y91_c00441{bottom:270.122907pt;}
.y93_c00441{bottom:270.122920pt;}
.y95_c00441{bottom:270.122933pt;}
.y92_c00441{bottom:270.123187pt;}
.y94_c00441{bottom:270.123200pt;}
.y96_c00441{bottom:270.123227pt;}
.y90_c00441{bottom:270.123440pt;}
.y8e_c00441{bottom:270.123667pt;}
.y8f_c00441{bottom:270.123947pt;}
.y6_c00441{bottom:271.593157pt;}
.y5_c00441{bottom:272.302416pt;}
.y4_c00441{bottom:272.957261pt;}
.y3_c00441{bottom:273.589259pt;}
.y2_c00441{bottom:273.841333pt;}
.y8c_c00441{bottom:285.692773pt;}
.y8d_c00441{bottom:285.692787pt;}
.y8b_c00441{bottom:285.693293pt;}
.y8a_c00441{bottom:285.693813pt;}
.y86_c00441{bottom:285.694027pt;}
.y88_c00441{bottom:285.694053pt;}
.y89_c00441{bottom:285.694333pt;}
.y87_c00441{bottom:285.694573pt;}
.yb3_c00441{bottom:287.605912pt;}
.yb2_c00441{bottom:288.201867pt;}
.yb1_c00441{bottom:288.560563pt;}
.yb0_c00441{bottom:288.910263pt;}
.yaf_c00441{bottom:289.290868pt;}
.yae_c00441{bottom:289.434457pt;}
.yad_c00441{bottom:289.921333pt;}
.y83_c00441{bottom:301.652467pt;}
.y84_c00441{bottom:301.652493pt;}
.y85_c00441{bottom:301.652507pt;}
.y82_c00441{bottom:301.652987pt;}
.y7e_c00441{bottom:301.653213pt;}
.y81_c00441{bottom:301.653507pt;}
.y7f_c00441{bottom:301.653760pt;}
.y80_c00441{bottom:301.654027pt;}
.y1_c00441{bottom:304.333333pt;}
.y7d_c00441{bottom:316.603707pt;}
.y7c_c00441{bottom:316.926080pt;}
.y7b_c00441{bottom:317.099627pt;}
.y7a_c00441{bottom:317.393747pt;}
.y79_c00441{bottom:317.912040pt;}
.y78_c00441{bottom:318.102147pt;}
.y77_c00441{bottom:318.312373pt;}
.y76_c00441{bottom:318.585920pt;}
.y75_c00441{bottom:318.755333pt;}
.y74_c00441{bottom:319.132467pt;}
.y73_c00441{bottom:319.270440pt;}
.y72_c00441{bottom:319.691453pt;}
.y71_c00441{bottom:320.112613pt;}
.y70_c00441{bottom:320.235467pt;}
.y6f_c00441{bottom:320.889907pt;}
.y6e_c00441{bottom:321.356187pt;}
.y6d_c00441{bottom:332.786960pt;}
.y6c_c00441{bottom:333.166000pt;}
.y6b_c00441{bottom:333.495840pt;}
.y6a_c00441{bottom:333.625853pt;}
.y69_c00441{bottom:334.329747pt;}
.y68_c00441{bottom:334.468680pt;}
.y67_c00441{bottom:334.761120pt;}
.y66_c00441{bottom:334.918707pt;}
.y65_c00441{bottom:335.595133pt;}
.y64_c00441{bottom:336.357080pt;}
.y63_c00441{bottom:336.538667pt;}
.y62_c00441{bottom:337.060000pt;}
.y61_c00441{bottom:337.439000pt;}
.y60_c00441{bottom:348.576173pt;}
.y5f_c00441{bottom:348.897627pt;}
.y5e_c00441{bottom:349.255640pt;}
.y5d_c00441{bottom:349.647440pt;}
.y5c_c00441{bottom:349.975680pt;}
.y5b_c00441{bottom:350.336147pt;}
.y5a_c00441{bottom:350.531360pt;}
.y59_c00441{bottom:350.660800pt;}
.y58_c00441{bottom:350.902267pt;}
.y57_c00441{bottom:351.054387pt;}
.y56_c00441{bottom:351.380347pt;}
.y55_c00441{bottom:351.666107pt;}
.y54_c00441{bottom:352.108493pt;}
.y53_c00441{bottom:352.451813pt;}
.y52_c00441{bottom:352.809387pt;}
.y51_c00441{bottom:353.040160pt;}
.y50_c00441{bottom:375.610667pt;}
.y4f_c00441{bottom:394.677501pt;}
.y4e_c00441{bottom:395.210875pt;}
.y4d_c00441{bottom:395.692965pt;}
.y4c_c00441{bottom:396.092760pt;}
.y4b_c00441{bottom:397.166021pt;}
.y4a_c00441{bottom:397.446787pt;}
.y49_c00441{bottom:398.011733pt;}
.y48_c00441{bottom:398.389773pt;}
.y47_c00441{bottom:398.728448pt;}
.y46_c00441{bottom:398.876624pt;}
.y45_c00441{bottom:413.762760pt;}
.y44_c00441{bottom:414.593715pt;}
.y43_c00441{bottom:414.817107pt;}
.y42_c00441{bottom:415.566360pt;}
.y41_c00441{bottom:415.696496pt;}
.y40_c00441{bottom:416.467805pt;}
.y3f_c00441{bottom:417.338541pt;}
.y3e_c00441{bottom:417.566245pt;}
.y3d_c00441{bottom:418.080552pt;}
.y3c_c00441{bottom:434.937024pt;}
.y3b_c00441{bottom:435.430944pt;}
.y3a_c00441{bottom:435.544904pt;}
.y39_c00441{bottom:435.796344pt;}
.y38_c00441{bottom:436.280221pt;}
.y37_c00441{bottom:437.185816pt;}
.y36_c00441{bottom:437.519389pt;}
.y35_c00441{bottom:437.899928pt;}
.y34_c00441{bottom:438.242667pt;}
.y33_c00441{bottom:460.042667pt;}
.y32_c00441{bottom:485.092000pt;}
.y31_c00441{bottom:503.798581pt;}
.y30_c00441{bottom:504.284885pt;}
.y2f_c00441{bottom:504.613637pt;}
.y2e_c00441{bottom:504.829685pt;}
.y2d_c00441{bottom:505.238645pt;}
.y2c_c00441{bottom:505.616037pt;}
.y2b_c00441{bottom:506.211573pt;}
.y2a_c00441{bottom:506.615429pt;}
.y29_c00441{bottom:507.050245pt;}
.y28_c00441{bottom:507.361333pt;}
.y24_c00441{bottom:526.421239pt;}
.y25_c00441{bottom:526.421491pt;}
.y22_c00441{bottom:526.421656pt;}
.y21_c00441{bottom:526.421804pt;}
.y23_c00441{bottom:526.421893pt;}
.y26_c00441{bottom:526.422036pt;}
.y20_c00441{bottom:526.422272pt;}
.y27_c00441{bottom:526.422688pt;}
.y1f_c00441{bottom:545.083071pt;}
.y1e_c00441{bottom:545.275323pt;}
.y1d_c00441{bottom:545.720367pt;}
.y1c_c00441{bottom:546.018411pt;}
.y1b_c00441{bottom:546.299259pt;}
.y1a_c00441{bottom:546.614427pt;}
.y19_c00441{bottom:546.873807pt;}
.y18_c00441{bottom:547.025055pt;}
.y17_c00441{bottom:547.463247pt;}
.y16_c00441{bottom:547.922667pt;}
.y15_c00441{bottom:581.802189pt;}
.y14_c00441{bottom:617.656119pt;}
.y13_c00441{bottom:618.962667pt;}
.y12_c00441{bottom:659.556000pt;}
.y11_c00441{bottom:700.620687pt;}
.y10_c00441{bottom:701.281692pt;}
.yf_c00441{bottom:702.738320pt;}
.ye_c00441{bottom:703.730667pt;}
.yd_c00441{bottom:832.654667pt;}
.h1f_c00441{height:42.000000pt;}
.h14_c00441{height:42.935480pt;}
.h1d_c00441{height:43.866667pt;}
.h13_c00441{height:43.868860pt;}
.h18_c00441{height:43.873772pt;}
.h15_c00441{height:44.802240pt;}
.h16_c00441{height:44.803785pt;}
.h1a_c00441{height:44.807257pt;}
.h2_c00441{height:45.733333pt;}
.h10_c00441{height:45.735620pt;}
.h3_c00441{height:45.737815pt;}
.h17_c00441{height:45.740742pt;}
.h1c_c00441{height:46.666667pt;}
.h12_c00441{height:46.669000pt;}
.h19_c00441{height:46.674226pt;}
.h1b_c00441{height:47.600000pt;}
.hf_c00441{height:47.602380pt;}
.h1e_c00441{height:48.533333pt;}
.h4_c00441{height:52.277119pt;}
.h11_c00441{height:53.202660pt;}
.ha_c00441{height:55.068897pt;}
.h7_c00441{height:59.733333pt;}
.he_c00441{height:60.672612pt;}
.hc_c00441{height:62.533333pt;}
.h9_c00441{height:62.535866pt;}
.hb_c00441{height:62.537836pt;}
.hd_c00441{height:63.472886pt;}
.h5_c00441{height:81.200000pt;}
.h8_c00441{height:85.870144pt;}
.h6_c00441{height:90.546414pt;}
.h0_c00441{height:896.400000pt;}
.h1_c00441{height:896.666667pt;}
.w1_c00441{width:612.666667pt;}
.w0_c00441{width:612.933333pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:104.400000pt;}
.x2_c00441{left:112.320000pt;}
.xa_c00441{left:114.358667pt;}
.x57_c00441{left:115.586440pt;}
.xf_c00441{left:117.186667pt;}
.x51_c00441{left:128.294373pt;}
.xb_c00441{left:132.364000pt;}
.x88_c00441{left:135.633333pt;}
.x4b_c00441{left:137.519997pt;}
.x3_c00441{left:139.680000pt;}
.x58_c00441{left:142.685360pt;}
.x30_c00441{left:147.938667pt;}
.x22_c00441{left:149.280000pt;}
.x95_c00441{left:150.240893pt;}
.x9a_c00441{left:151.275051pt;}
.x4_c00441{left:152.640000pt;}
.x87_c00441{left:154.693333pt;}
.x60_c00441{left:155.667640pt;}
.x8e_c00441{left:157.055421pt;}
.x20_c00441{left:161.766667pt;}
.x10_c00441{left:165.916000pt;}
.x2b_c00441{left:167.998691pt;}
.x4c_c00441{left:170.008883pt;}
.x31_c00441{left:173.862667pt;}
.x38_c00441{left:174.960000pt;}
.xc_c00441{left:177.506667pt;}
.x11_c00441{left:178.882667pt;}
.x5_c00441{left:180.720000pt;}
.x15_c00441{left:182.640000pt;}
.x1e_c00441{left:184.800000pt;}
.x92_c00441{left:185.861363pt;}
.x43_c00441{left:189.199728pt;}
.x59_c00441{left:192.842013pt;}
.x1a_c00441{left:194.073333pt;}
.x4d_c00441{left:195.201861pt;}
.x93_c00441{left:197.779128pt;}
.x23_c00441{left:200.326667pt;}
.x12_c00441{left:201.884000pt;}
.x44_c00441{left:206.702637pt;}
.x6_c00441{left:207.840000pt;}
.x96_c00441{left:209.290688pt;}
.x2c_c00441{left:210.240777pt;}
.x9b_c00441{left:211.272637pt;}
.x61_c00441{left:220.462347pt;}
.x16_c00441{left:222.720000pt;}
.xd_c00441{left:224.281333pt;}
.x8f_c00441{left:225.227312pt;}
.x8b_c00441{left:229.217107pt;}
.x9c_c00441{left:230.994688pt;}
.x4e_c00441{left:232.888005pt;}
.x89_c00441{left:234.870667pt;}
.x7_c00441{left:241.200000pt;}
.x52_c00441{left:242.764080pt;}
.x32_c00441{left:243.752000pt;}
.x39_c00441{left:245.280000pt;}
.x5a_c00441{left:247.301173pt;}
.x24_c00441{left:249.014667pt;}
.x1b_c00441{left:252.446667pt;}
.x62_c00441{left:255.510973pt;}
.x3e_c00441{left:258.000000pt;}
.x94_c00441{left:259.704027pt;}
.x13_c00441{left:263.614667pt;}
.x8_c00441{left:264.720000pt;}
.x25_c00441{left:265.820000pt;}
.x21_c00441{left:267.123449pt;}
.x90_c00441{left:268.917437pt;}
.x8c_c00441{left:270.281107pt;}
.x45_c00441{left:273.660904pt;}
.xe_c00441{left:274.942667pt;}
.x8a_c00441{left:277.549333pt;}
.x17_c00441{left:280.800000pt;}
.x98_c00441{left:282.359485pt;}
.x2d_c00441{left:283.922741pt;}
.x97_c00441{left:286.583720pt;}
.x3f_c00441{left:289.530667pt;}
.x63_c00441{left:290.544933pt;}
.x33_c00441{left:293.380000pt;}
.x9_c00441{left:295.200000pt;}
.x99_c00441{left:296.583184pt;}
.x14_c00441{left:299.848000pt;}
.x91_c00441{left:300.800680pt;}
.x64_c00441{left:302.075373pt;}
.x8d_c00441{left:306.047773pt;}
.x1f_c00441{left:307.200000pt;}
.x2e_c00441{left:310.563568pt;}
.x3a_c00441{left:311.760000pt;}
.x18_c00441{left:319.680000pt;}
.x4f_c00441{left:323.126736pt;}
.x34_c00441{left:324.829333pt;}
.x53_c00441{left:326.493067pt;}
.x5b_c00441{left:327.676613pt;}
.x26_c00441{left:329.658667pt;}
.x46_c00441{left:332.945725pt;}
.x1c_c00441{left:338.130667pt;}
.x69_c00441{left:340.096400pt;}
.x40_c00441{left:342.053333pt;}
.x47_c00441{left:343.003208pt;}
.x3b_c00441{left:346.800000pt;}
.x41_c00441{left:350.193333pt;}
.x7e_c00441{left:351.617293pt;}
.x19_c00441{left:353.280000pt;}
.xa4_c00441{left:354.720000pt;}
.x6a_c00441{left:357.376800pt;}
.x35_c00441{left:358.909333pt;}
.x27_c00441{left:360.864000pt;}
.xa5_c00441{left:362.640000pt;}
.x70_c00441{left:364.336587pt;}
.x6b_c00441{left:367.217787pt;}
.x65_c00441{left:370.483347pt;}
.x78_c00441{left:375.378000pt;}
.x1d_c00441{left:377.013333pt;}
.x81_c00441{left:380.899387pt;}
.x50_c00441{left:381.927248pt;}
.x3c_c00441{left:384.240000pt;}
.x42_c00441{left:385.473333pt;}
.x86_c00441{left:386.660840pt;}
.x5c_c00441{left:387.823533pt;}
.x2f_c00441{left:388.807249pt;}
.xa1_c00441{left:390.480000pt;}
.x71_c00441{left:391.457960pt;}
.xa2_c00441{left:392.880000pt;}
.x28_c00441{left:393.980000pt;}
.x5d_c00441{left:397.091160pt;}
.x48_c00441{left:400.617344pt;}
.x82_c00441{left:402.020160pt;}
.x36_c00441{left:404.309333pt;}
.xa6_c00441{left:408.960000pt;}
.x54_c00441{left:411.027387pt;}
.x3d_c00441{left:413.040000pt;}
.x6c_c00441{left:415.459933pt;}
.x83_c00441{left:416.900320pt;}
.x49_c00441{left:417.812253pt;}
.x72_c00441{left:419.299413pt;}
.x5e_c00441{left:420.607547pt;}
.x79_c00441{left:424.100200pt;}
.x73_c00441{left:426.500133pt;}
.x7a_c00441{left:432.020987pt;}
.x6d_c00441{left:434.180467pt;}
.xa0_c00441{left:438.480000pt;}
.x29_c00441{left:443.429333pt;}
.x37_c00441{left:444.834667pt;}
.x5f_c00441{left:447.710467pt;}
.x84_c00441{left:450.022293pt;}
.x74_c00441{left:452.421387pt;}
.x9d_c00441{left:456.000000pt;}
.xa3_c00441{left:460.080000pt;}
.x7b_c00441{left:461.062560pt;}
.x2a_c00441{left:464.790667pt;}
.x75_c00441{left:468.741680pt;}
.x66_c00441{left:471.489320pt;}
.x55_c00441{left:473.474133pt;}
.xa7_c00441{left:474.720000pt;}
.x6e_c00441{left:479.782360pt;}
.x4a_c00441{left:481.738483pt;}
.x67_c00441{left:485.910360pt;}
.x76_c00441{left:494.662933pt;}
.xa8_c00441{left:496.560000pt;}
.x7c_c00441{left:498.024920pt;}
.x6f_c00441{left:498.982947pt;}
.x56_c00441{left:500.285600pt;}
.x7f_c00441{left:501.384280pt;}
.x68_c00441{left:512.813827pt;}
.x9e_c00441{left:516.240000pt;}
.x85_c00441{left:519.146547pt;}
.x80_c00441{left:523.705173pt;}
.x77_c00441{left:525.864720pt;}
.x9f_c00441{left:534.960000pt;}
.x7d_c00441{left:540.266480pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m2c_c00442{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);}
.m8d_c00442{transform:matrix(0.011535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011535,0.000000,0.000000,0.250000,0,0);}
.meb_c00442{transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071630,0.000000,0.000000,0.250000,0,0);}
.mea_c00442{transform:matrix(0.112790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112790,0.000000,0.000000,0.250000,0,0);}
.m75_c00442{transform:matrix(0.138511,-0.001939,0.003500,0.249976,0,0);-ms-transform:matrix(0.138511,-0.001939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.138511,-0.001939,0.003500,0.249976,0,0);}
.mb2_c00442{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m82_c00442{transform:matrix(0.147590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147590,0.000000,0.000000,0.250000,0,0);}
.m9a_c00442{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);}
.m8_c00442{transform:matrix(0.149405,-0.002092,0.003500,0.249976,0,0);-ms-transform:matrix(0.149405,-0.002092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149405,-0.002092,0.003500,0.249976,0,0);}
.m95_c00442{transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151195,0.000000,0.000000,0.250000,0,0);}
.m5b_c00442{transform:matrix(0.151609,-0.001819,0.003000,0.249982,0,0);-ms-transform:matrix(0.151609,-0.001819,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151609,-0.001819,0.003000,0.249982,0,0);}
.m2_c00442{transform:matrix(0.154080,-0.002157,0.003500,0.249976,0,0);-ms-transform:matrix(0.154080,-0.002157,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154080,-0.002157,0.003500,0.249976,0,0);}
.mf1_c00442{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);}
.m92_c00442{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);}
.m6_c00442{transform:matrix(0.159579,-0.002234,0.003500,0.249976,0,0);-ms-transform:matrix(0.159579,-0.002234,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159579,-0.002234,0.003500,0.249976,0,0);}
.mc8_c00442{transform:matrix(0.160568,-0.001445,0.002250,0.249990,0,0);-ms-transform:matrix(0.160568,-0.001445,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160568,-0.001445,0.002250,0.249990,0,0);}
.m90_c00442{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);}
.mb1_c00442{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);}
.m2f_c00442{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);}
.mc0_c00442{transform:matrix(0.162603,-0.001463,0.002250,0.249990,0,0);-ms-transform:matrix(0.162603,-0.001463,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162603,-0.001463,0.002250,0.249990,0,0);}
.mdc_c00442{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);}
.mc_c00442{transform:matrix(0.163304,-0.002286,0.003500,0.249976,0,0);-ms-transform:matrix(0.163304,-0.002286,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163304,-0.002286,0.003500,0.249976,0,0);}
.mba_c00442{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);}
.mf6_c00442{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);}
.m17_c00442{transform:matrix(0.165813,-0.001492,0.002250,0.249990,0,0);-ms-transform:matrix(0.165813,-0.001492,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165813,-0.001492,0.002250,0.249990,0,0);}
.m3f_c00442{transform:matrix(0.165953,-0.001991,0.003000,0.249982,0,0);-ms-transform:matrix(0.165953,-0.001991,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165953,-0.001991,0.003000,0.249982,0,0);}
.m99_c00442{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);}
.m3d_c00442{transform:matrix(0.166913,-0.002003,0.003000,0.249982,0,0);-ms-transform:matrix(0.166913,-0.002003,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166913,-0.002003,0.003000,0.249982,0,0);}
.m68_c00442{transform:matrix(0.168258,-0.002019,0.003000,0.249982,0,0);-ms-transform:matrix(0.168258,-0.002019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168258,-0.002019,0.003000,0.249982,0,0);}
.m96_c00442{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);}
.mb7_c00442{transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);}
.mc9_c00442{transform:matrix(0.169733,-0.001528,0.002250,0.249990,0,0);-ms-transform:matrix(0.169733,-0.001528,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169733,-0.001528,0.002250,0.249990,0,0);}
.m3_c00442{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);}
.m103_c00442{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);}
.m1_c00442{transform:matrix(0.170858,-0.002392,0.003500,0.249976,0,0);-ms-transform:matrix(0.170858,-0.002392,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170858,-0.002392,0.003500,0.249976,0,0);}
.m7f_c00442{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);}
.m64_c00442{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);}
.m4a_c00442{transform:matrix(0.171843,-0.002062,0.003000,0.249982,0,0);-ms-transform:matrix(0.171843,-0.002062,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171843,-0.002062,0.003000,0.249982,0,0);}
.m5a_c00442{transform:matrix(0.172878,-0.002075,0.003000,0.249982,0,0);-ms-transform:matrix(0.172878,-0.002075,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172878,-0.002075,0.003000,0.249982,0,0);}
.m65_c00442{transform:matrix(0.173023,-0.002076,0.003000,0.249982,0,0);-ms-transform:matrix(0.173023,-0.002076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173023,-0.002076,0.003000,0.249982,0,0);}
.m2b_c00442{transform:matrix(0.173263,-0.002079,0.003000,0.249982,0,0);-ms-transform:matrix(0.173263,-0.002079,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173263,-0.002079,0.003000,0.249982,0,0);}
.m4_c00442{transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);-ms-transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173913,-0.002435,0.003500,0.249976,0,0);}
.maa_c00442{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);}
.mf5_c00442{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);}
.m1c_c00442{transform:matrix(0.175187,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175187,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175187,-0.002102,0.003000,0.249982,0,0);}
.m8e_c00442{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);}
.mb8_c00442{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);}
.mb3_c00442{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);}
.mb9_c00442{transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176370,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176863,-0.001592,0.002250,0.249990,0,0);}
.mb6_c00442{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);}
.m83_c00442{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);}
.m100_c00442{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);}
.m6d_c00442{transform:matrix(0.179800,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179800,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179800,-0.002697,0.003750,0.249972,0,0);}
.m20_c00442{transform:matrix(0.179937,-0.002159,0.003000,0.249982,0,0);-ms-transform:matrix(0.179937,-0.002159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179937,-0.002159,0.003000,0.249982,0,0);}
.mca_c00442{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);}
.m53_c00442{transform:matrix(0.181087,-0.002173,0.003000,0.249982,0,0);-ms-transform:matrix(0.181087,-0.002173,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181087,-0.002173,0.003000,0.249982,0,0);}
.m15_c00442{transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-ms-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);}
.m47_c00442{transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);-ms-transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181882,-0.002183,0.003000,0.249982,0,0);}
.m0_c00442{transform:matrix(0.182037,-0.002549,0.003500,0.249976,0,0);-ms-transform:matrix(0.182037,-0.002549,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182037,-0.002549,0.003500,0.249976,0,0);}
.m4c_c00442{transform:matrix(0.182682,-0.002192,0.003000,0.249982,0,0);-ms-transform:matrix(0.182682,-0.002192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182682,-0.002192,0.003000,0.249982,0,0);}
.m55_c00442{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);}
.m5_c00442{transform:matrix(0.183057,-0.002563,0.003500,0.249976,0,0);-ms-transform:matrix(0.183057,-0.002563,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183057,-0.002563,0.003500,0.249976,0,0);}
.m57_c00442{transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);-ms-transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);}
.m28_c00442{transform:matrix(0.183382,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183382,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183382,-0.002201,0.003000,0.249982,0,0);}
.m31_c00442{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);}
.m9_c00442{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);}
.mc6_c00442{transform:matrix(0.184033,-0.001656,0.002250,0.249990,0,0);-ms-transform:matrix(0.184033,-0.001656,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184033,-0.001656,0.002250,0.249990,0,0);}
.m106_c00442{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);}
.m4d_c00442{transform:matrix(0.184412,-0.002213,0.003000,0.249982,0,0);-ms-transform:matrix(0.184412,-0.002213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184412,-0.002213,0.003000,0.249982,0,0);}
.m9e_c00442{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);}
.m81_c00442{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);}
.m25_c00442{transform:matrix(0.184737,-0.002217,0.003000,0.249982,0,0);-ms-transform:matrix(0.184737,-0.002217,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184737,-0.002217,0.003000,0.249982,0,0);}
.mac_c00442{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);}
.m69_c00442{transform:matrix(0.187811,-0.002254,0.003000,0.249982,0,0);-ms-transform:matrix(0.187811,-0.002254,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187811,-0.002254,0.003000,0.249982,0,0);}
.m18_c00442{transform:matrix(0.187992,-0.001692,0.002250,0.249990,0,0);-ms-transform:matrix(0.187992,-0.001692,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187992,-0.001692,0.002250,0.249990,0,0);}
.m14_c00442{transform:matrix(0.188537,-0.001697,0.002250,0.249990,0,0);-ms-transform:matrix(0.188537,-0.001697,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188537,-0.001697,0.002250,0.249990,0,0);}
.m30_c00442{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);}
.m13_c00442{transform:matrix(0.188677,-0.001698,0.002250,0.249990,0,0);-ms-transform:matrix(0.188677,-0.001698,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188677,-0.001698,0.002250,0.249990,0,0);}
.m62_c00442{transform:matrix(0.188686,-0.002264,0.003000,0.249982,0,0);-ms-transform:matrix(0.188686,-0.002264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188686,-0.002264,0.003000,0.249982,0,0);}
.m72_c00442{transform:matrix(0.189329,-0.002840,0.003750,0.249972,0,0);-ms-transform:matrix(0.189329,-0.002840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189329,-0.002840,0.003750,0.249972,0,0);}
.mad_c00442{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);}
.m66_c00442{transform:matrix(0.190131,-0.002282,0.003000,0.249982,0,0);-ms-transform:matrix(0.190131,-0.002282,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190131,-0.002282,0.003000,0.249982,0,0);}
.m9c_c00442{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);}
.m4f_c00442{transform:matrix(0.190386,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190386,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190386,-0.002285,0.003000,0.249982,0,0);}
.m29_c00442{transform:matrix(0.190666,-0.002288,0.003000,0.249982,0,0);-ms-transform:matrix(0.190666,-0.002288,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190666,-0.002288,0.003000,0.249982,0,0);}
.md3_c00442{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);}
.mc4_c00442{transform:matrix(0.190847,-0.001718,0.002250,0.249990,0,0);-ms-transform:matrix(0.190847,-0.001718,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190847,-0.001718,0.002250,0.249990,0,0);}
.m4b_c00442{transform:matrix(0.190886,-0.002291,0.003000,0.249982,0,0);-ms-transform:matrix(0.190886,-0.002291,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190886,-0.002291,0.003000,0.249982,0,0);}
.m10c_c00442{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);}
.mc1_c00442{transform:matrix(0.191642,-0.001725,0.002250,0.249990,0,0);-ms-transform:matrix(0.191642,-0.001725,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191642,-0.001725,0.002250,0.249990,0,0);}
.me3_c00442{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);}
.m48_c00442{transform:matrix(0.192681,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192681,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192681,-0.002312,0.003000,0.249982,0,0);}
.m104_c00442{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);}
.m8b_c00442{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);}
.m21_c00442{transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192866,-0.002314,0.003000,0.249982,0,0);}
.m12_c00442{transform:matrix(0.193452,-0.001741,0.002250,0.249990,0,0);-ms-transform:matrix(0.193452,-0.001741,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193452,-0.001741,0.002250,0.249990,0,0);}
.ma1_c00442{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);}
.m1a_c00442{transform:matrix(0.193696,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193696,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193696,-0.002324,0.003000,0.249982,0,0);}
.m97_c00442{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);}
.me_c00442{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);}
.m80_c00442{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);}
.m86_c00442{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);}
.mef_c00442{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);}
.mcb_c00442{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m101_c00442{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);}
.m85_c00442{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);}
.m49_c00442{transform:matrix(0.196246,-0.002355,0.003000,0.249982,0,0);-ms-transform:matrix(0.196246,-0.002355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196246,-0.002355,0.003000,0.249982,0,0);}
.mf9_c00442{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);}
.mcc_c00442{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);}
.m93_c00442{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);}
.m10a_c00442{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);}
.m22_c00442{transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);-ms-transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197161,-0.002366,0.003000,0.249982,0,0);}
.ma0_c00442{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);}
.m110_c00442{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_c00442{transform:matrix(0.199695,-0.002796,0.003500,0.249976,0,0);-ms-transform:matrix(0.199695,-0.002796,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199695,-0.002796,0.003500,0.249976,0,0);}
.me5_c00442{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);}
.m102_c00442{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);}
.m3e_c00442{transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);-ms-transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);}
.ma2_c00442{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);}
.ma8_c00442{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);}
.mfd_c00442{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);}
.me7_c00442{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);}
.m5f_c00442{transform:matrix(0.202670,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202670,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202670,-0.002432,0.003000,0.249982,0,0);}
.md_c00442{transform:matrix(0.202790,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202790,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202790,-0.002839,0.003500,0.249976,0,0);}
.mb0_c00442{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);}
.m98_c00442{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);}
.mf0_c00442{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);}
.mc7_c00442{transform:matrix(0.203497,-0.001831,0.002250,0.249990,0,0);-ms-transform:matrix(0.203497,-0.001831,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203497,-0.001831,0.002250,0.249990,0,0);}
.mee_c00442{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);}
.mb_c00442{transform:matrix(0.204635,-0.002865,0.003500,0.249976,0,0);-ms-transform:matrix(0.204635,-0.002865,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204635,-0.002865,0.003500,0.249976,0,0);}
.ma7_c00442{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);}
.m84_c00442{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);}
.m1b_c00442{transform:matrix(0.205520,-0.002466,0.003000,0.249982,0,0);-ms-transform:matrix(0.205520,-0.002466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205520,-0.002466,0.003000,0.249982,0,0);}
.m33_c00442{transform:matrix(0.206195,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206195,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206195,-0.002474,0.003000,0.249982,0,0);}
.md6_c00442{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);}
.m6a_c00442{transform:matrix(0.206772,-0.003102,0.003750,0.249972,0,0);-ms-transform:matrix(0.206772,-0.003102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206772,-0.003102,0.003750,0.249972,0,0);}
.m3b_c00442{transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);-ms-transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207530,-0.002490,0.003000,0.249982,0,0);}
.m46_c00442{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);}
.m67_c00442{transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);}
.m116_c00442{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);}
.m6f_c00442{transform:matrix(0.208757,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208757,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208757,-0.003131,0.003750,0.249972,0,0);}
.m5d_c00442{transform:matrix(0.208790,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208790,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208790,-0.002505,0.003000,0.249982,0,0);}
.mde_c00442{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);}
.mc5_c00442{transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);-ms-transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209242,-0.001883,0.002250,0.249990,0,0);}
.m3c_c00442{transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);-ms-transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209335,-0.002512,0.003000,0.249982,0,0);}
.m54_c00442{transform:matrix(0.210055,-0.002521,0.003000,0.249982,0,0);-ms-transform:matrix(0.210055,-0.002521,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210055,-0.002521,0.003000,0.249982,0,0);}
.m9f_c00442{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);}
.m11_c00442{transform:matrix(0.210096,-0.001891,0.002250,0.249990,0,0);-ms-transform:matrix(0.210096,-0.001891,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210096,-0.001891,0.002250,0.249990,0,0);}
.m6e_c00442{transform:matrix(0.210446,-0.003157,0.003750,0.249972,0,0);-ms-transform:matrix(0.210446,-0.003157,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210446,-0.003157,0.003750,0.249972,0,0);}
.m52_c00442{transform:matrix(0.210655,-0.002528,0.003000,0.249982,0,0);-ms-transform:matrix(0.210655,-0.002528,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210655,-0.002528,0.003000,0.249982,0,0);}
.m51_c00442{transform:matrix(0.210805,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210805,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210805,-0.002530,0.003000,0.249982,0,0);}
.m61_c00442{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);}
.mae_c00442{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);}
.me6_c00442{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);}
.me4_c00442{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);}
.m59_c00442{transform:matrix(0.212940,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212940,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212940,-0.002555,0.003000,0.249982,0,0);}
.m114_c00442{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);}
.m78_c00442{transform:matrix(0.213669,-0.002991,0.003500,0.249976,0,0);-ms-transform:matrix(0.213669,-0.002991,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213669,-0.002991,0.003500,0.249976,0,0);}
.ma4_c00442{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);}
.m63_c00442{transform:matrix(0.214300,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214300,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214300,-0.002572,0.003000,0.249982,0,0);}
.mf4_c00442{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);}
.m9b_c00442{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);}
.m89_c00442{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);}
.m58_c00442{transform:matrix(0.214805,-0.002578,0.003000,0.249982,0,0);-ms-transform:matrix(0.214805,-0.002578,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214805,-0.002578,0.003000,0.249982,0,0);}
.m9d_c00442{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);}
.md7_c00442{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);}
.m56_c00442{transform:matrix(0.217264,-0.002607,0.003000,0.249982,0,0);-ms-transform:matrix(0.217264,-0.002607,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217264,-0.002607,0.003000,0.249982,0,0);}
.m5c_c00442{transform:matrix(0.217359,-0.002608,0.003000,0.249982,0,0);-ms-transform:matrix(0.217359,-0.002608,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217359,-0.002608,0.003000,0.249982,0,0);}
.m105_c00442{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);}
.m60_c00442{transform:matrix(0.221004,-0.002652,0.003000,0.249982,0,0);-ms-transform:matrix(0.221004,-0.002652,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221004,-0.002652,0.003000,0.249982,0,0);}
.mf7_c00442{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);}
.mcf_c00442{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);}
.m44_c00442{transform:matrix(0.221629,-0.002660,0.003000,0.249982,0,0);-ms-transform:matrix(0.221629,-0.002660,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221629,-0.002660,0.003000,0.249982,0,0);}
.maf_c00442{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);}
.m1e_c00442{transform:matrix(0.221849,-0.002662,0.003000,0.249982,0,0);-ms-transform:matrix(0.221849,-0.002662,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221849,-0.002662,0.003000,0.249982,0,0);}
.m1f_c00442{transform:matrix(0.223454,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223454,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223454,-0.002681,0.003000,0.249982,0,0);}
.m8c_c00442{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);}
.me8_c00442{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);}
.md4_c00442{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);}
.m42_c00442{transform:matrix(0.224449,-0.002693,0.003000,0.249982,0,0);-ms-transform:matrix(0.224449,-0.002693,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224449,-0.002693,0.003000,0.249982,0,0);}
.mb4_c00442{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);}
.mfa_c00442{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);}
.md0_c00442{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);}
.m3a_c00442{transform:matrix(0.226344,-0.002716,0.003000,0.249982,0,0);-ms-transform:matrix(0.226344,-0.002716,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226344,-0.002716,0.003000,0.249982,0,0);}
.m38_c00442{transform:matrix(0.226419,-0.002717,0.003000,0.249982,0,0);-ms-transform:matrix(0.226419,-0.002717,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226419,-0.002717,0.003000,0.249982,0,0);}
.m4e_c00442{transform:matrix(0.226689,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226689,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226689,-0.002720,0.003000,0.249982,0,0);}
.mfc_c00442{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);}
.mbf_c00442{transform:matrix(0.227011,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.227011,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227011,-0.002043,0.002250,0.249990,0,0);}
.mc3_c00442{transform:matrix(0.227376,-0.002046,0.002250,0.249990,0,0);-ms-transform:matrix(0.227376,-0.002046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227376,-0.002046,0.002250,0.249990,0,0);}
.me1_c00442{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);}
.mfe_c00442{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);}
.m8a_c00442{transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228515,0.000000,0.000000,0.250000,0,0);}
.md9_c00442{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.m10d_c00442{transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);}
.m77_c00442{transform:matrix(0.229737,-0.003216,0.003500,0.249976,0,0);-ms-transform:matrix(0.229737,-0.003216,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229737,-0.003216,0.003500,0.249976,0,0);}
.m115_c00442{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);}
.md1_c00442{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);}
.mf3_c00442{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);}
.m2e_c00442{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);}
.m45_c00442{transform:matrix(0.231063,-0.002773,0.003000,0.249982,0,0);-ms-transform:matrix(0.231063,-0.002773,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231063,-0.002773,0.003000,0.249982,0,0);}
.m1d_c00442{transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);-ms-transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231173,-0.002774,0.003000,0.249982,0,0);}
.m27_c00442{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);}
.mab_c00442{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);}
.ma_c00442{transform:matrix(0.231717,-0.003244,0.003500,0.249976,0,0);-ms-transform:matrix(0.231717,-0.003244,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231717,-0.003244,0.003500,0.249976,0,0);}
.mdd_c00442{transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00442{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);}
.m111_c00442{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);}
.m88_c00442{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);}
.m70_c00442{transform:matrix(0.237073,-0.003556,0.003750,0.249972,0,0);-ms-transform:matrix(0.237073,-0.003556,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237073,-0.003556,0.003750,0.249972,0,0);}
.mf2_c00442{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.ma9_c00442{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);}
.mf8_c00442{transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);}
.m91_c00442{transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);}
.m7c_c00442{transform:matrix(0.240611,-0.003369,0.003500,0.249976,0,0);-ms-transform:matrix(0.240611,-0.003369,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240611,-0.003369,0.003500,0.249976,0,0);}
.m19_c00442{transform:matrix(0.241265,-0.002171,0.002250,0.249990,0,0);-ms-transform:matrix(0.241265,-0.002171,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241265,-0.002171,0.002250,0.249990,0,0);}
.m7b_c00442{transform:matrix(0.241526,-0.003381,0.003500,0.249976,0,0);-ms-transform:matrix(0.241526,-0.003381,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241526,-0.003381,0.003500,0.249976,0,0);}
.mfb_c00442{transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);}
.m50_c00442{transform:matrix(0.244582,-0.002935,0.003000,0.249982,0,0);-ms-transform:matrix(0.244582,-0.002935,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244582,-0.002935,0.003000,0.249982,0,0);}
.m74_c00442{transform:matrix(0.244901,-0.003429,0.003500,0.249976,0,0);-ms-transform:matrix(0.244901,-0.003429,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244901,-0.003429,0.003500,0.249976,0,0);}
.me0_c00442{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);}
.m2a_c00442{transform:matrix(0.245672,-0.002948,0.003000,0.249982,0,0);-ms-transform:matrix(0.245672,-0.002948,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245672,-0.002948,0.003000,0.249982,0,0);}
.m6c_c00442{transform:matrix(0.245757,-0.003686,0.003750,0.249972,0,0);-ms-transform:matrix(0.245757,-0.003686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245757,-0.003686,0.003750,0.249972,0,0);}
.mcd_c00442{transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.247657,-0.002972,0.003000,0.249982,0,0);-ms-transform:matrix(0.247657,-0.002972,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247657,-0.002972,0.003000,0.249982,0,0);}
.m6b_c00442{transform:matrix(0.249157,-0.003737,0.003750,0.249972,0,0);-ms-transform:matrix(0.249157,-0.003737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249157,-0.003737,0.003750,0.249972,0,0);}
.md2_c00442{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);}
.m107_c00442{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m73_c00442{transform:matrix(0.251745,-0.003524,0.003500,0.249976,0,0);-ms-transform:matrix(0.251745,-0.003524,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251745,-0.003524,0.003500,0.249976,0,0);}
.m43_c00442{transform:matrix(0.252672,-0.003032,0.003000,0.249982,0,0);-ms-transform:matrix(0.252672,-0.003032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252672,-0.003032,0.003000,0.249982,0,0);}
.m10b_c00442{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.ma6_c00442{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);}
.m36_c00442{transform:matrix(0.255317,-0.003064,0.003000,0.249982,0,0);-ms-transform:matrix(0.255317,-0.003064,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255317,-0.003064,0.003000,0.249982,0,0);}
.mc2_c00442{transform:matrix(0.256505,-0.002309,0.002250,0.249990,0,0);-ms-transform:matrix(0.256505,-0.002309,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256505,-0.002309,0.002250,0.249990,0,0);}
.m10e_c00442{transform:matrix(0.256990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256990,0.000000,0.000000,0.250000,0,0);}
.m7d_c00442{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_c00442{transform:matrix(0.257970,-0.003612,0.003500,0.249976,0,0);-ms-transform:matrix(0.257970,-0.003612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257970,-0.003612,0.003500,0.249976,0,0);}
.m94_c00442{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);}
.me9_c00442{transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);}
.m8f_c00442{transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259315,0.000000,0.000000,0.250000,0,0);}
.mbb_c00442{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);}
.mbd_c00442{transform:matrix(0.261804,-0.002356,0.002250,0.249990,0,0);-ms-transform:matrix(0.261804,-0.002356,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261804,-0.002356,0.002250,0.249990,0,0);}
.m10_c00442{transform:matrix(0.265129,-0.003712,0.003500,0.249976,0,0);-ms-transform:matrix(0.265129,-0.003712,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265129,-0.003712,0.003500,0.249976,0,0);}
.m35_c00442{transform:matrix(0.269086,-0.003229,0.003000,0.249982,0,0);-ms-transform:matrix(0.269086,-0.003229,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269086,-0.003229,0.003000,0.249982,0,0);}
.mce_c00442{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.mb5_c00442{transform:matrix(0.273860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273860,0.000000,0.000000,0.250000,0,0);}
.mda_c00442{transform:matrix(0.274445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274445,0.000000,0.000000,0.250000,0,0);}
.m109_c00442{transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274770,0.000000,0.000000,0.250000,0,0);}
.ma3_c00442{transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);}
.m108_c00442{transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278010,0.000000,0.000000,0.250000,0,0);}
.m79_c00442{transform:matrix(0.278713,-0.003902,0.003500,0.249976,0,0);-ms-transform:matrix(0.278713,-0.003902,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278713,-0.003902,0.003500,0.249976,0,0);}
.m76_c00442{transform:matrix(0.279398,-0.003912,0.003500,0.249976,0,0);-ms-transform:matrix(0.279398,-0.003912,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279398,-0.003912,0.003500,0.249976,0,0);}
.mdb_c00442{transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279420,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.279850,-0.003358,0.003000,0.249982,0,0);-ms-transform:matrix(0.279850,-0.003358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279850,-0.003358,0.003000,0.249982,0,0);}
.m71_c00442{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);}
.m23_c00442{transform:matrix(0.292064,-0.003505,0.003000,0.249982,0,0);-ms-transform:matrix(0.292064,-0.003505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.292064,-0.003505,0.003000,0.249982,0,0);}
.m112_c00442{transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298085,0.000000,0.000000,0.250000,0,0);}
.m10f_c00442{transform:matrix(0.301365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301365,0.000000,0.000000,0.250000,0,0);}
.m113_c00442{transform:matrix(0.301745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301745,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.309543,-0.003715,0.003000,0.249982,0,0);-ms-transform:matrix(0.309543,-0.003715,0.003000,0.249982,0,0);-webkit-transform:matrix(0.309543,-0.003715,0.003000,0.249982,0,0);}
.m40_c00442{transform:matrix(0.310518,-0.003726,0.003000,0.249982,0,0);-ms-transform:matrix(0.310518,-0.003726,0.003000,0.249982,0,0);-webkit-transform:matrix(0.310518,-0.003726,0.003000,0.249982,0,0);}
.m87_c00442{transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.316367,-0.003796,0.003000,0.249982,0,0);-ms-transform:matrix(0.316367,-0.003796,0.003000,0.249982,0,0);-webkit-transform:matrix(0.316367,-0.003796,0.003000,0.249982,0,0);}
.mdf_c00442{transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);}
.mff_c00442{transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{transform:matrix(0.336035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336035,0.000000,0.000000,0.250000,0,0);}
.m24_c00442{transform:matrix(0.337316,-0.004048,0.003000,0.249982,0,0);-ms-transform:matrix(0.337316,-0.004048,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337316,-0.004048,0.003000,0.249982,0,0);}
.md8_c00442{transform:matrix(0.343005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343005,0.000000,0.000000,0.250000,0,0);}
.med_c00442{transform:matrix(0.360650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360650,0.000000,0.000000,0.250000,0,0);}
.mec_c00442{transform:matrix(0.361355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361355,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.361540,-0.005062,0.003500,0.249976,0,0);-ms-transform:matrix(0.361540,-0.005062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.361540,-0.005062,0.003500,0.249976,0,0);}
.m5e_c00442{transform:matrix(0.387857,-0.004654,0.003000,0.249982,0,0);-ms-transform:matrix(0.387857,-0.004654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.387857,-0.004654,0.003000,0.249982,0,0);}
.mbe_c00442{transform:matrix(0.391504,-0.003524,0.002250,0.249990,0,0);-ms-transform:matrix(0.391504,-0.003524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.391504,-0.003524,0.002250,0.249990,0,0);}
.ma5_c00442{transform:matrix(0.399355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399355,0.000000,0.000000,0.250000,0,0);}
.mbc_c00442{transform:matrix(0.435752,-0.003922,0.002250,0.249990,0,0);-ms-transform:matrix(0.435752,-0.003922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.435752,-0.003922,0.002250,0.249990,0,0);}
.m2d_c00442{transform:matrix(0.435790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435790,0.000000,0.000000,0.250000,0,0);}
.m117_c00442{transform:matrix(0.464805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464805,0.000000,0.000000,0.250000,0,0);}
.md5_c00442{transform:matrix(0.467400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467400,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.555520,-0.006666,0.003000,0.249982,0,0);-ms-transform:matrix(0.555520,-0.006666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.555520,-0.006666,0.003000,0.249982,0,0);}
.me2_c00442{transform:matrix(0.789495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789495,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;}
.fs1c_c00442{font-size:46.200000px;}
.fs16_c00442{font-size:47.250000px;}
.fs11_c00442{font-size:48.300000px;}
.fs12_c00442{font-size:49.350000px;}
.fs18_c00442{font-size:49.351999px;}
.fs14_c00442{font-size:50.400000px;}
.fs1a_c00442{font-size:51.450000px;}
.fs10_c00442{font-size:52.500000px;}
.fs13_c00442{font-size:53.550000px;}
.fs1b_c00442{font-size:54.600000px;}
.fs19_c00442{font-size:54.602211px;}
.fs15_c00442{font-size:55.650000px;}
.fs9_c00442{font-size:58.804233px;}
.fs17_c00442{font-size:60.900000px;}
.fs8_c00442{font-size:63.004536px;}
.fsb_c00442{font-size:66.154763px;}
.fsc_c00442{font-size:67.204838px;}
.fsf_c00442{font-size:68.256688px;}
.fse_c00442{font-size:68.257678px;}
.fs7_c00442{font-size:70.350000px;}
.fsd_c00442{font-size:70.355065px;}
.fs4_c00442{font-size:71.405141px;}
.fs2_c00442{font-size:71.406997px;}
.fsa_c00442{font-size:72.455216px;}
.fs3_c00442{font-size:73.502977px;}
.fs5_c00442{font-size:73.505292px;}
.fs6_c00442{font-size:74.550000px;}
.fs1_c00442{font-size:74.557306px;}
.fs0_c00442{font-size:78.757717px;}
.y0_c00442{bottom:0.000000px;}
.y9d_c00442{bottom:157.008000px;}
.ya9_c00442{bottom:173.218500px;}
.y9c_c00442{bottom:174.576000px;}
.ya8_c00442{bottom:191.914500px;}
.y9b_c00442{bottom:192.607500px;}
.ya2_c00442{bottom:207.633000px;}
.ya3_c00442{bottom:208.444500px;}
.ya4_c00442{bottom:208.770000px;}
.ya5_c00442{bottom:209.305500px;}
.ya6_c00442{bottom:209.700000px;}
.y94_c00442{bottom:209.793000px;}
.ya7_c00442{bottom:210.229500px;}
.y95_c00442{bottom:210.345000px;}
.y96_c00442{bottom:210.670500px;}
.y97_c00442{bottom:211.648500px;}
.y98_c00442{bottom:212.029500px;}
.y99_c00442{bottom:212.490000px;}
.y9a_c00442{bottom:212.679000px;}
.ya1_c00442{bottom:227.515500px;}
.y93_c00442{bottom:228.259500px;}
.ya0_c00442{bottom:245.686500px;}
.y92_c00442{bottom:246.121500px;}
.y9f_c00442{bottom:263.638500px;}
.y91_c00442{bottom:269.729188px;}
.y8f_c00442{bottom:269.729245px;}
.y90_c00442{bottom:269.729562px;}
.y9e_c00442{bottom:281.643000px;}
.y84_c00442{bottom:296.460000px;}
.y85_c00442{bottom:296.671342px;}
.y86_c00442{bottom:296.944326px;}
.y87_c00442{bottom:297.286240px;}
.y88_c00442{bottom:298.584657px;}
.y89_c00442{bottom:298.776613px;}
.y8a_c00442{bottom:299.250491px;}
.y8b_c00442{bottom:299.447307px;}
.y8c_c00442{bottom:299.830990px;}
.y8d_c00442{bottom:299.998998px;}
.y8e_c00442{bottom:300.477641px;}
.y80_c00442{bottom:309.703500px;}
.y83_c00442{bottom:317.139000px;}
.y7f_c00442{bottom:328.063500px;}
.y82_c00442{bottom:335.020500px;}
.y7e_c00442{bottom:350.895000px;}
.y81_c00442{bottom:353.158500px;}
.y7d_c00442{bottom:368.698500px;}
.y7b_c00442{bottom:370.974000px;}
.y7c_c00442{bottom:386.658000px;}
.y7a_c00442{bottom:388.909500px;}
.y70_c00442{bottom:428.493000px;}
.y71_c00442{bottom:428.874948px;}
.y72_c00442{bottom:429.333084px;}
.y73_c00442{bottom:430.239885px;}
.y74_c00442{bottom:430.599531px;}
.y75_c00442{bottom:431.384742px;}
.y76_c00442{bottom:431.767068px;}
.y77_c00442{bottom:432.081732px;}
.y78_c00442{bottom:433.030890px;}
.y79_c00442{bottom:433.904259px;}
.y67_c00442{bottom:450.903000px;}
.y68_c00442{bottom:451.270650px;}
.y69_c00442{bottom:451.886250px;}
.y6a_c00442{bottom:452.090190px;}
.y6b_c00442{bottom:453.171180px;}
.y6c_c00442{bottom:453.552015px;}
.y6d_c00442{bottom:453.912240px;}
.y6e_c00442{bottom:454.599998px;}
.y6f_c00442{bottom:455.188283px;}
.y60_c00442{bottom:477.088650px;}
.y61_c00442{bottom:477.931068px;}
.y62_c00442{bottom:478.294038px;}
.y63_c00442{bottom:478.912752px;}
.y64_c00442{bottom:479.396448px;}
.y65_c00442{bottom:480.127896px;}
.y66_c00442{bottom:480.371112px;}
.y56_c00442{bottom:499.497546px;}
.y57_c00442{bottom:499.881198px;}
.y58_c00442{bottom:500.408070px;}
.y59_c00442{bottom:500.707134px;}
.y5a_c00442{bottom:500.966214px;}
.y5b_c00442{bottom:501.517998px;}
.y5c_c00442{bottom:501.807534px;}
.y5d_c00442{bottom:502.194390px;}
.y5e_c00442{bottom:502.545036px;}
.y5f_c00442{bottom:502.885884px;}
.y4b_c00442{bottom:522.450606px;}
.y4c_c00442{bottom:523.486740px;}
.y4d_c00442{bottom:523.830198px;}
.y4e_c00442{bottom:524.248824px;}
.y4f_c00442{bottom:524.867628px;}
.y50_c00442{bottom:525.162522px;}
.y51_c00442{bottom:525.589590px;}
.y52_c00442{bottom:525.800874px;}
.y53_c00442{bottom:526.082106px;}
.y54_c00442{bottom:526.423170px;}
.y55_c00442{bottom:527.161062px;}
.y43_c00442{bottom:544.861500px;}
.y44_c00442{bottom:545.263350px;}
.y45_c00442{bottom:546.018414px;}
.y46_c00442{bottom:546.591894px;}
.y47_c00442{bottom:547.259316px;}
.y48_c00442{bottom:547.547730px;}
.y49_c00442{bottom:548.270394px;}
.y4a_c00442{bottom:548.946762px;}
.y3d_c00442{bottom:567.541032px;}
.y3e_c00442{bottom:568.103220px;}
.y3f_c00442{bottom:568.822866px;}
.y40_c00442{bottom:569.917368px;}
.y41_c00442{bottom:570.517656px;}
.y42_c00442{bottom:570.974238px;}
.y35_c00442{bottom:590.493102px;}
.y36_c00442{bottom:590.777970px;}
.y37_c00442{bottom:591.128268px;}
.y38_c00442{bottom:591.774180px;}
.y39_c00442{bottom:592.643328px;}
.y3a_c00442{bottom:593.153568px;}
.y3b_c00442{bottom:593.673372px;}
.y3c_c00442{bottom:595.309338px;}
.y2f_c00442{bottom:614.583000px;}
.y30_c00442{bottom:615.037374px;}
.y31_c00442{bottom:615.550392px;}
.y32_c00442{bottom:616.149792px;}
.y33_c00442{bottom:616.811202px;}
.y34_c00442{bottom:617.002002px;}
.y2e_c00442{bottom:659.775000px;}
.y2d_c00442{bottom:683.206500px;}
.y24_c00442{bottom:703.889922px;}
.y25_c00442{bottom:704.324280px;}
.y26_c00442{bottom:704.900964px;}
.y27_c00442{bottom:705.445986px;}
.y28_c00442{bottom:706.187118px;}
.y29_c00442{bottom:706.478934px;}
.y2a_c00442{bottom:706.706292px;}
.y2b_c00442{bottom:707.152566px;}
.y2c_c00442{bottom:707.690748px;}
.y1b_c00442{bottom:726.841500px;}
.y1c_c00442{bottom:727.149480px;}
.y1d_c00442{bottom:727.563462px;}
.y1e_c00442{bottom:727.984716px;}
.y1f_c00442{bottom:728.371032px;}
.y20_c00442{bottom:729.116286px;}
.y21_c00442{bottom:729.514698px;}
.y22_c00442{bottom:730.085136px;}
.y23_c00442{bottom:730.752954px;}
.y12_c00442{bottom:749.791500px;}
.y13_c00442{bottom:750.097775px;}
.y14_c00442{bottom:750.522660px;}
.y15_c00442{bottom:750.828894px;}
.y16_c00442{bottom:751.223013px;}
.y17_c00442{bottom:751.563199px;}
.y18_c00442{bottom:752.192637px;}
.y19_c00442{bottom:752.644198px;}
.y1a_c00442{bottom:753.021267px;}
.y9_c00442{bottom:772.203000px;}
.ya_c00442{bottom:772.585641px;}
.yb_c00442{bottom:773.409114px;}
.yc_c00442{bottom:773.828652px;}
.yd_c00442{bottom:774.074436px;}
.ye_c00442{bottom:774.762333px;}
.yf_c00442{bottom:775.031049px;}
.y10_c00442{bottom:775.919265px;}
.y11_c00442{bottom:776.525283px;}
.y8_c00442{bottom:798.648270px;}
.y1_c00442{bottom:818.103000px;}
.y2_c00442{bottom:818.442948px;}
.y3_c00442{bottom:819.020910px;}
.y4_c00442{bottom:819.498408px;}
.y5_c00442{bottom:820.485429px;}
.y6_c00442{bottom:821.876112px;}
.y7_c00442{bottom:822.318267px;}
.h1e_c00442{height:46.200000px;}
.h18_c00442{height:47.250000px;}
.h13_c00442{height:48.300000px;}
.h14_c00442{height:49.350000px;}
.h1a_c00442{height:49.351999px;}
.h16_c00442{height:50.400000px;}
.h1c_c00442{height:51.450000px;}
.h12_c00442{height:52.500000px;}
.h15_c00442{height:53.550000px;}
.h1d_c00442{height:54.600000px;}
.h1b_c00442{height:54.602211px;}
.h17_c00442{height:55.650000px;}
.hb_c00442{height:58.804233px;}
.h19_c00442{height:60.900000px;}
.ha_c00442{height:63.004536px;}
.hd_c00442{height:66.154763px;}
.he_c00442{height:67.204838px;}
.h11_c00442{height:68.256688px;}
.h10_c00442{height:68.257678px;}
.h9_c00442{height:70.350000px;}
.hf_c00442{height:70.355065px;}
.h6_c00442{height:71.405141px;}
.h4_c00442{height:71.406997px;}
.hc_c00442{height:72.455216px;}
.h5_c00442{height:73.502977px;}
.h7_c00442{height:73.505292px;}
.h8_c00442{height:74.550000px;}
.h3_c00442{height:74.557306px;}
.h2_c00442{height:78.757717px;}
.h1_c00442{height:1005.000000px;}
.h0_c00442{height:1005.150000px;}
.w0_c00442{width:715.200000px;}
.w1_c00442{width:715.500000px;}
.x0_c00442{left:0.000000px;}
.x60_c00442{left:71.280000px;}
.x64_c00442{left:85.860000px;}
.x8b_c00442{left:87.751500px;}
.x84_c00442{left:91.260000px;}
.x61_c00442{left:92.880000px;}
.x86_c00442{left:96.039000px;}
.x71_c00442{left:105.300000px;}
.x6d_c00442{left:106.650000px;}
.x65_c00442{left:113.670000px;}
.x1e_c00442{left:115.178208px;}
.x69_c00442{left:118.800000px;}
.x62_c00442{left:122.580000px;}
.x50_c00442{left:126.552000px;}
.x1_c00442{left:127.617000px;}
.x42_c00442{left:129.186018px;}
.x80_c00442{left:132.839744px;}
.x87_c00442{left:135.421500px;}
.x66_c00442{left:143.640000px;}
.x8c_c00442{left:149.041500px;}
.x2e_c00442{left:150.167508px;}
.x2_c00442{left:151.899000px;}
.x9_c00442{left:154.146000px;}
.x6e_c00442{left:155.520000px;}
.x6a_c00442{left:157.950000px;}
.x7b_c00442{left:159.661500px;}
.x11_c00442{left:161.857500px;}
.x43_c00442{left:167.532936px;}
.x25_c00442{left:170.910000px;}
.x8d_c00442{left:172.801500px;}
.x81_c00442{left:175.500000px;}
.x27_c00442{left:177.120000px;}
.x8a_c00442{left:180.631500px;}
.x67_c00442{left:183.060000px;}
.x18_c00442{left:186.949500px;}
.x6b_c00442{left:191.700000px;}
.x3_c00442{left:193.182000px;}
.x4d_c00442{left:194.808000px;}
.x6f_c00442{left:197.910000px;}
.x1f_c00442{left:199.431708px;}
.x85_c00442{left:206.280000px;}
.x12_c00442{left:209.067000px;}
.xa_c00442{left:212.965500px;}
.x3a_c00442{left:214.760010px;}
.x28_c00442{left:216.540000px;}
.x6c_c00442{left:218.430000px;}
.x44_c00442{left:220.190196px;}
.x19_c00442{left:222.054000px;}
.x34_c00442{left:224.005500px;}
.x4_c00442{left:227.289000px;}
.x49_c00442{left:229.120812px;}
.x82_c00442{left:233.010000px;}
.x70_c00442{left:237.060000px;}
.xb_c00442{left:242.932500px;}
.x20_c00442{left:244.850208px;}
.x83_c00442{left:246.510000px;}
.x29_c00442{left:250.560000px;}
.x26_c00442{left:252.180000px;}
.x1a_c00442{left:254.247000px;}
.x88_c00442{left:255.780000px;}
.xc_c00442{left:260.488500px;}
.x8_c00442{left:269.472111px;}
.x35_c00442{left:271.795500px;}
.x68_c00442{left:272.970000px;}
.x45_c00442{left:276.078546px;}
.x3b_c00442{left:278.267010px;}
.x4a_c00442{left:280.680312px;}
.x13_c00442{left:286.884000px;}
.x2a_c00442{left:289.513500px;}
.x8e_c00442{left:291.061500px;}
.x63_c00442{left:292.410000px;}
.x2f_c00442{left:293.612280px;}
.x5_c00442{left:297.790500px;}
.x89_c00442{left:302.245500px;}
.x8f_c00442{left:304.561500px;}
.x21_c00442{left:306.611208px;}
.xd_c00442{left:309.624000px;}
.x32_c00442{left:311.182482px;}
.x1b_c00442{left:316.351500px;}
.x4b_c00442{left:320.988312px;}
.x14_c00442{left:324.682500px;}
.x36_c00442{left:327.414000px;}
.xe_c00442{left:328.818000px;}
.x3c_c00442{left:329.834010px;}
.x22_c00442{left:330.929208px;}
.x2b_c00442{left:332.265000px;}
.x78_c00442{left:335.880000px;}
.xa4_c00442{left:337.500000px;}
.x96_c00442{left:340.740000px;}
.x7c_c00442{left:341.920500px;}
.x59_c00442{left:344.520000px;}
.x1c_c00442{left:349.552500px;}
.x37_c00442{left:351.448500px;}
.x3d_c00442{left:354.408510px;}
.x53_c00442{left:355.860000px;}
.x33_c00442{left:357.330924px;}
.x46_c00442{left:360.065544px;}
.x79_c00442{left:362.070000px;}
.x7d_c00442{left:363.249000px;}
.x9b_c00442{left:367.470000px;}
.x90_c00442{left:370.710000px;}
.x30_c00442{left:372.823326px;}
.x93_c00442{left:374.220000px;}
.x4e_c00442{left:375.724500px;}
.x54_c00442{left:379.080000px;}
.x97_c00442{left:380.160000px;}
.x2c_c00442{left:382.215000px;}
.xa0_c00442{left:385.456500px;}
.x23_c00442{left:387.065208px;}
.x3e_c00442{left:389.997510px;}
.xf_c00442{left:392.262000px;}
.x15_c00442{left:394.620000px;}
.x6_c00442{left:397.125000px;}
.x47_c00442{left:398.679462px;}
.x4c_c00442{left:402.210312px;}
.xa1_c00442{left:403.525500px;}
.x74_c00442{left:405.810000px;}
.x3f_c00442{left:407.604510px;}
.x38_c00442{left:411.670500px;}
.x4f_c00442{left:414.943500px;}
.x9c_c00442{left:422.550000px;}
.x5a_c00442{left:424.710000px;}
.x7_c00442{left:428.707500px;}
.x24_c00442{left:431.913708px;}
.x48_c00442{left:433.775808px;}
.x10_c00442{left:435.549000px;}
.x2d_c00442{left:437.332500px;}
.x5b_c00442{left:439.560000px;}
.x9d_c00442{left:441.450000px;}
.x75_c00442{left:443.610000px;}
.x16_c00442{left:444.793500px;}
.x72_c00442{left:446.580000px;}
.x94_c00442{left:449.550000px;}
.x51_c00442{left:450.687000px;}
.x1d_c00442{left:452.740500px;}
.xa2_c00442{left:455.190000px;}
.x40_c00442{left:459.462510px;}
.x5c_c00442{left:462.240000px;}
.x76_c00442{left:464.130000px;}
.x39_c00442{left:468.034500px;}
.x73_c00442{left:471.690000px;}
.x55_c00442{left:473.040000px;}
.x7e_c00442{left:480.402000px;}
.x98_c00442{left:481.410000px;}
.xa3_c00442{left:484.639500px;}
.x17_c00442{left:486.690000px;}
.x5d_c00442{left:488.700000px;}
.x9e_c00442{left:493.290000px;}
.x31_c00442{left:498.652314px;}
.x77_c00442{left:505.980000px;}
.x56_c00442{left:511.110000px;}
.x52_c00442{left:513.070500px;}
.x99_c00442{left:514.890000px;}
.x41_c00442{left:520.953510px;}
.x7a_c00442{left:524.340000px;}
.x91_c00442{left:525.690000px;}
.x57_c00442{left:531.630000px;}
.x5e_c00442{left:538.650000px;}
.x95_c00442{left:540.000000px;}
.x92_c00442{left:544.590000px;}
.x58_c00442{left:550.800000px;}
.x7f_c00442{left:552.252000px;}
.x5f_c00442{left:555.390000px;}
.x9a_c00442{left:557.010000px;}
.x9f_c00442{left:561.060000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs1c_c00442{font-size:41.066667pt;}
.fs16_c00442{font-size:42.000000pt;}
.fs11_c00442{font-size:42.933333pt;}
.fs12_c00442{font-size:43.866667pt;}
.fs18_c00442{font-size:43.868443pt;}
.fs14_c00442{font-size:44.800000pt;}
.fs1a_c00442{font-size:45.733333pt;}
.fs10_c00442{font-size:46.666667pt;}
.fs13_c00442{font-size:47.600000pt;}
.fs1b_c00442{font-size:48.533333pt;}
.fs19_c00442{font-size:48.535299pt;}
.fs15_c00442{font-size:49.466667pt;}
.fs9_c00442{font-size:52.270430pt;}
.fs17_c00442{font-size:54.133333pt;}
.fs8_c00442{font-size:56.004032pt;}
.fsb_c00442{font-size:58.804233pt;}
.fsc_c00442{font-size:59.737634pt;}
.fsf_c00442{font-size:60.672612pt;}
.fse_c00442{font-size:60.673491pt;}
.fs7_c00442{font-size:62.533333pt;}
.fsd_c00442{font-size:62.537836pt;}
.fs4_c00442{font-size:63.471236pt;}
.fs2_c00442{font-size:63.472886pt;}
.fsa_c00442{font-size:64.404637pt;}
.fs3_c00442{font-size:65.335979pt;}
.fs5_c00442{font-size:65.338037pt;}
.fs6_c00442{font-size:66.266667pt;}
.fs1_c00442{font-size:66.273160pt;}
.fs0_c00442{font-size:70.006860pt;}
.y0_c00442{bottom:0.000000pt;}
.y9d_c00442{bottom:139.562667pt;}
.ya9_c00442{bottom:153.972000pt;}
.y9c_c00442{bottom:155.178667pt;}
.ya8_c00442{bottom:170.590667pt;}
.y9b_c00442{bottom:171.206667pt;}
.ya2_c00442{bottom:184.562667pt;}
.ya3_c00442{bottom:185.284000pt;}
.ya4_c00442{bottom:185.573333pt;}
.ya5_c00442{bottom:186.049333pt;}
.ya6_c00442{bottom:186.400000pt;}
.y94_c00442{bottom:186.482667pt;}
.ya7_c00442{bottom:186.870667pt;}
.y95_c00442{bottom:186.973333pt;}
.y96_c00442{bottom:187.262667pt;}
.y97_c00442{bottom:188.132000pt;}
.y98_c00442{bottom:188.470667pt;}
.y99_c00442{bottom:188.880000pt;}
.y9a_c00442{bottom:189.048000pt;}
.ya1_c00442{bottom:202.236000pt;}
.y93_c00442{bottom:202.897333pt;}
.ya0_c00442{bottom:218.388000pt;}
.y92_c00442{bottom:218.774667pt;}
.y9f_c00442{bottom:234.345333pt;}
.y91_c00442{bottom:239.759279pt;}
.y8f_c00442{bottom:239.759329pt;}
.y90_c00442{bottom:239.759611pt;}
.y9e_c00442{bottom:250.349333pt;}
.y84_c00442{bottom:263.520000pt;}
.y85_c00442{bottom:263.707860pt;}
.y86_c00442{bottom:263.950512pt;}
.y87_c00442{bottom:264.254436pt;}
.y88_c00442{bottom:265.408584pt;}
.y89_c00442{bottom:265.579212pt;}
.y8a_c00442{bottom:266.000436pt;}
.y8b_c00442{bottom:266.175384pt;}
.y8c_c00442{bottom:266.516436pt;}
.y8d_c00442{bottom:266.665776pt;}
.y8e_c00442{bottom:267.091236pt;}
.y80_c00442{bottom:275.292000pt;}
.y83_c00442{bottom:281.901333pt;}
.y7f_c00442{bottom:291.612000pt;}
.y82_c00442{bottom:297.796000pt;}
.y7e_c00442{bottom:311.906667pt;}
.y81_c00442{bottom:313.918667pt;}
.y7d_c00442{bottom:327.732000pt;}
.y7b_c00442{bottom:329.754667pt;}
.y7c_c00442{bottom:343.696000pt;}
.y7a_c00442{bottom:345.697333pt;}
.y70_c00442{bottom:380.882667pt;}
.y71_c00442{bottom:381.222176pt;}
.y72_c00442{bottom:381.629408pt;}
.y73_c00442{bottom:382.435453pt;}
.y74_c00442{bottom:382.755139pt;}
.y75_c00442{bottom:383.453104pt;}
.y76_c00442{bottom:383.792949pt;}
.y77_c00442{bottom:384.072651pt;}
.y78_c00442{bottom:384.916347pt;}
.y79_c00442{bottom:385.692675pt;}
.y67_c00442{bottom:400.802667pt;}
.y68_c00442{bottom:401.129467pt;}
.y69_c00442{bottom:401.676667pt;}
.y6a_c00442{bottom:401.857947pt;}
.y6b_c00442{bottom:402.818827pt;}
.y6c_c00442{bottom:403.157347pt;}
.y6d_c00442{bottom:403.477547pt;}
.y6e_c00442{bottom:404.088887pt;}
.y6f_c00442{bottom:404.611807pt;}
.y60_c00442{bottom:424.078800pt;}
.y61_c00442{bottom:424.827616pt;}
.y62_c00442{bottom:425.150256pt;}
.y63_c00442{bottom:425.700224pt;}
.y64_c00442{bottom:426.130176pt;}
.y65_c00442{bottom:426.780352pt;}
.y66_c00442{bottom:426.996544pt;}
.y56_c00442{bottom:443.997819pt;}
.y57_c00442{bottom:444.338843pt;}
.y58_c00442{bottom:444.807173pt;}
.y59_c00442{bottom:445.073008pt;}
.y5a_c00442{bottom:445.303301pt;}
.y5b_c00442{bottom:445.793776pt;}
.y5c_c00442{bottom:446.051141pt;}
.y5d_c00442{bottom:446.395013pt;}
.y5e_c00442{bottom:446.706699pt;}
.y5f_c00442{bottom:447.009675pt;}
.y4b_c00442{bottom:464.400539pt;}
.y4c_c00442{bottom:465.321547pt;}
.y4d_c00442{bottom:465.626843pt;}
.y4e_c00442{bottom:465.998955pt;}
.y4f_c00442{bottom:466.549003pt;}
.y50_c00442{bottom:466.811131pt;}
.y51_c00442{bottom:467.190747pt;}
.y52_c00442{bottom:467.378555pt;}
.y53_c00442{bottom:467.628539pt;}
.y54_c00442{bottom:467.931707pt;}
.y55_c00442{bottom:468.587611pt;}
.y43_c00442{bottom:484.321333pt;}
.y44_c00442{bottom:484.678533pt;}
.y45_c00442{bottom:485.349701pt;}
.y46_c00442{bottom:485.859461pt;}
.y47_c00442{bottom:486.452725pt;}
.y48_c00442{bottom:486.709093pt;}
.y49_c00442{bottom:487.351461pt;}
.y4a_c00442{bottom:487.952677pt;}
.y3d_c00442{bottom:504.480917pt;}
.y3e_c00442{bottom:504.980640pt;}
.y3f_c00442{bottom:505.620325pt;}
.y40_c00442{bottom:506.593216pt;}
.y41_c00442{bottom:507.126805pt;}
.y42_c00442{bottom:507.532656pt;}
.y35_c00442{bottom:524.882757pt;}
.y36_c00442{bottom:525.135973pt;}
.y37_c00442{bottom:525.447349pt;}
.y38_c00442{bottom:526.021493pt;}
.y39_c00442{bottom:526.794069pt;}
.y3a_c00442{bottom:527.247616pt;}
.y3b_c00442{bottom:527.709664pt;}
.y3c_c00442{bottom:529.163856pt;}
.y2f_c00442{bottom:546.296000pt;}
.y30_c00442{bottom:546.699888pt;}
.y31_c00442{bottom:547.155904pt;}
.y32_c00442{bottom:547.688704pt;}
.y33_c00442{bottom:548.276624pt;}
.y34_c00442{bottom:548.446224pt;}
.y2e_c00442{bottom:586.466667pt;}
.y2d_c00442{bottom:607.294667pt;}
.y24_c00442{bottom:625.679931pt;}
.y25_c00442{bottom:626.066027pt;}
.y26_c00442{bottom:626.578635pt;}
.y27_c00442{bottom:627.063099pt;}
.y28_c00442{bottom:627.721883pt;}
.y29_c00442{bottom:627.981275pt;}
.y2a_c00442{bottom:628.183371pt;}
.y2b_c00442{bottom:628.580059pt;}
.y2c_c00442{bottom:629.058443pt;}
.y1b_c00442{bottom:646.081333pt;}
.y1c_c00442{bottom:646.355093pt;}
.y1d_c00442{bottom:646.723077pt;}
.y1e_c00442{bottom:647.097525pt;}
.y1f_c00442{bottom:647.440917pt;}
.y20_c00442{bottom:648.103365pt;}
.y21_c00442{bottom:648.457509pt;}
.y22_c00442{bottom:648.964565pt;}
.y23_c00442{bottom:649.558181pt;}
.y12_c00442{bottom:666.481333pt;}
.y13_c00442{bottom:666.753577pt;}
.y14_c00442{bottom:667.131253pt;}
.y15_c00442{bottom:667.403461pt;}
.y16_c00442{bottom:667.753789pt;}
.y17_c00442{bottom:668.056177pt;}
.y18_c00442{bottom:668.615677pt;}
.y19_c00442{bottom:669.017065pt;}
.y1a_c00442{bottom:669.352237pt;}
.y9_c00442{bottom:686.402667pt;}
.ya_c00442{bottom:686.742792pt;}
.yb_c00442{bottom:687.474768pt;}
.yc_c00442{bottom:687.847691pt;}
.yd_c00442{bottom:688.066165pt;}
.ye_c00442{bottom:688.677629pt;}
.yf_c00442{bottom:688.916488pt;}
.y10_c00442{bottom:689.706013pt;}
.y11_c00442{bottom:690.244696pt;}
.y8_c00442{bottom:709.909573pt;}
.y1_c00442{bottom:727.202667pt;}
.y2_c00442{bottom:727.504843pt;}
.y3_c00442{bottom:728.018587pt;}
.y4_c00442{bottom:728.443029pt;}
.y5_c00442{bottom:729.320381pt;}
.y6_c00442{bottom:730.556544pt;}
.y7_c00442{bottom:730.949571pt;}
.h1e_c00442{height:41.066667pt;}
.h18_c00442{height:42.000000pt;}
.h13_c00442{height:42.933333pt;}
.h14_c00442{height:43.866667pt;}
.h1a_c00442{height:43.868443pt;}
.h16_c00442{height:44.800000pt;}
.h1c_c00442{height:45.733333pt;}
.h12_c00442{height:46.666667pt;}
.h15_c00442{height:47.600000pt;}
.h1d_c00442{height:48.533333pt;}
.h1b_c00442{height:48.535299pt;}
.h17_c00442{height:49.466667pt;}
.hb_c00442{height:52.270430pt;}
.h19_c00442{height:54.133333pt;}
.ha_c00442{height:56.004032pt;}
.hd_c00442{height:58.804233pt;}
.he_c00442{height:59.737634pt;}
.h11_c00442{height:60.672612pt;}
.h10_c00442{height:60.673491pt;}
.h9_c00442{height:62.533333pt;}
.hf_c00442{height:62.537836pt;}
.h6_c00442{height:63.471236pt;}
.h4_c00442{height:63.472886pt;}
.hc_c00442{height:64.404637pt;}
.h5_c00442{height:65.335979pt;}
.h7_c00442{height:65.338037pt;}
.h8_c00442{height:66.266667pt;}
.h3_c00442{height:66.273160pt;}
.h2_c00442{height:70.006860pt;}
.h1_c00442{height:893.333333pt;}
.h0_c00442{height:893.466667pt;}
.w0_c00442{width:635.733333pt;}
.w1_c00442{width:636.000000pt;}
.x0_c00442{left:0.000000pt;}
.x60_c00442{left:63.360000pt;}
.x64_c00442{left:76.320000pt;}
.x8b_c00442{left:78.001333pt;}
.x84_c00442{left:81.120000pt;}
.x61_c00442{left:82.560000pt;}
.x86_c00442{left:85.368000pt;}
.x71_c00442{left:93.600000pt;}
.x6d_c00442{left:94.800000pt;}
.x65_c00442{left:101.040000pt;}
.x1e_c00442{left:102.380629pt;}
.x69_c00442{left:105.600000pt;}
.x62_c00442{left:108.960000pt;}
.x50_c00442{left:112.490667pt;}
.x1_c00442{left:113.437333pt;}
.x42_c00442{left:114.832016pt;}
.x80_c00442{left:118.079772pt;}
.x87_c00442{left:120.374667pt;}
.x66_c00442{left:127.680000pt;}
.x8c_c00442{left:132.481333pt;}
.x2e_c00442{left:133.482229pt;}
.x2_c00442{left:135.021333pt;}
.x9_c00442{left:137.018667pt;}
.x6e_c00442{left:138.240000pt;}
.x6a_c00442{left:140.400000pt;}
.x7b_c00442{left:141.921333pt;}
.x11_c00442{left:143.873333pt;}
.x43_c00442{left:148.918165pt;}
.x25_c00442{left:151.920000pt;}
.x8d_c00442{left:153.601333pt;}
.x81_c00442{left:156.000000pt;}
.x27_c00442{left:157.440000pt;}
.x8a_c00442{left:160.561333pt;}
.x67_c00442{left:162.720000pt;}
.x18_c00442{left:166.177333pt;}
.x6b_c00442{left:170.400000pt;}
.x3_c00442{left:171.717333pt;}
.x4d_c00442{left:173.162667pt;}
.x6f_c00442{left:175.920000pt;}
.x1f_c00442{left:177.272629pt;}
.x85_c00442{left:183.360000pt;}
.x12_c00442{left:185.837333pt;}
.xa_c00442{left:189.302667pt;}
.x3a_c00442{left:190.897787pt;}
.x28_c00442{left:192.480000pt;}
.x6c_c00442{left:194.160000pt;}
.x44_c00442{left:195.724619pt;}
.x19_c00442{left:197.381333pt;}
.x34_c00442{left:199.116000pt;}
.x4_c00442{left:202.034667pt;}
.x49_c00442{left:203.662944pt;}
.x82_c00442{left:207.120000pt;}
.x70_c00442{left:210.720000pt;}
.xb_c00442{left:215.940000pt;}
.x20_c00442{left:217.644629pt;}
.x83_c00442{left:219.120000pt;}
.x29_c00442{left:222.720000pt;}
.x26_c00442{left:224.160000pt;}
.x1a_c00442{left:225.997333pt;}
.x88_c00442{left:227.360000pt;}
.xc_c00442{left:231.545333pt;}
.x8_c00442{left:239.530765pt;}
.x35_c00442{left:241.596000pt;}
.x68_c00442{left:242.640000pt;}
.x45_c00442{left:245.403152pt;}
.x3b_c00442{left:247.348453pt;}
.x4a_c00442{left:249.493611pt;}
.x13_c00442{left:255.008000pt;}
.x2a_c00442{left:257.345333pt;}
.x8e_c00442{left:258.721333pt;}
.x63_c00442{left:259.920000pt;}
.x2f_c00442{left:260.988693pt;}
.x5_c00442{left:264.702667pt;}
.x89_c00442{left:268.662667pt;}
.x8f_c00442{left:270.721333pt;}
.x21_c00442{left:272.543296pt;}
.xd_c00442{left:275.221333pt;}
.x32_c00442{left:276.606651pt;}
.x1b_c00442{left:281.201333pt;}
.x4b_c00442{left:285.322944pt;}
.x14_c00442{left:288.606667pt;}
.x36_c00442{left:291.034667pt;}
.xe_c00442{left:292.282667pt;}
.x3c_c00442{left:293.185787pt;}
.x22_c00442{left:294.159296pt;}
.x2b_c00442{left:295.346667pt;}
.x78_c00442{left:298.560000pt;}
.xa4_c00442{left:300.000000pt;}
.x96_c00442{left:302.880000pt;}
.x7c_c00442{left:303.929333pt;}
.x59_c00442{left:306.240000pt;}
.x1c_c00442{left:310.713333pt;}
.x37_c00442{left:312.398667pt;}
.x3d_c00442{left:315.029787pt;}
.x53_c00442{left:316.320000pt;}
.x33_c00442{left:317.627488pt;}
.x46_c00442{left:320.058261pt;}
.x79_c00442{left:321.840000pt;}
.x7d_c00442{left:322.888000pt;}
.x9b_c00442{left:326.640000pt;}
.x90_c00442{left:329.520000pt;}
.x30_c00442{left:331.398512pt;}
.x93_c00442{left:332.640000pt;}
.x4e_c00442{left:333.977333pt;}
.x54_c00442{left:336.960000pt;}
.x97_c00442{left:337.920000pt;}
.x2c_c00442{left:339.746667pt;}
.xa0_c00442{left:342.628000pt;}
.x23_c00442{left:344.057963pt;}
.x3e_c00442{left:346.664453pt;}
.xf_c00442{left:348.677333pt;}
.x15_c00442{left:350.773333pt;}
.x6_c00442{left:353.000000pt;}
.x47_c00442{left:354.381744pt;}
.x4c_c00442{left:357.520277pt;}
.xa1_c00442{left:358.689333pt;}
.x74_c00442{left:360.720000pt;}
.x3f_c00442{left:362.315120pt;}
.x38_c00442{left:365.929333pt;}
.x4f_c00442{left:368.838667pt;}
.x9c_c00442{left:375.600000pt;}
.x5a_c00442{left:377.520000pt;}
.x7_c00442{left:381.073333pt;}
.x24_c00442{left:383.923296pt;}
.x48_c00442{left:385.578496pt;}
.x10_c00442{left:387.154667pt;}
.x2d_c00442{left:388.740000pt;}
.x5b_c00442{left:390.720000pt;}
.x9d_c00442{left:392.400000pt;}
.x75_c00442{left:394.320000pt;}
.x16_c00442{left:395.372000pt;}
.x72_c00442{left:396.960000pt;}
.x94_c00442{left:399.600000pt;}
.x51_c00442{left:400.610667pt;}
.x1d_c00442{left:402.436000pt;}
.xa2_c00442{left:404.613333pt;}
.x40_c00442{left:408.411120pt;}
.x5c_c00442{left:410.880000pt;}
.x76_c00442{left:412.560000pt;}
.x39_c00442{left:416.030667pt;}
.x73_c00442{left:419.280000pt;}
.x55_c00442{left:420.480000pt;}
.x7e_c00442{left:427.024000pt;}
.x98_c00442{left:427.920000pt;}
.xa3_c00442{left:430.790667pt;}
.x17_c00442{left:432.613333pt;}
.x5d_c00442{left:434.400000pt;}
.x9e_c00442{left:438.480000pt;}
.x31_c00442{left:443.246501pt;}
.x77_c00442{left:449.760000pt;}
.x56_c00442{left:454.320000pt;}
.x52_c00442{left:456.062667pt;}
.x99_c00442{left:457.680000pt;}
.x41_c00442{left:463.069787pt;}
.x7a_c00442{left:466.080000pt;}
.x91_c00442{left:467.280000pt;}
.x57_c00442{left:472.560000pt;}
.x5e_c00442{left:478.800000pt;}
.x95_c00442{left:480.000000pt;}
.x92_c00442{left:484.080000pt;}
.x58_c00442{left:489.600000pt;}
.x7f_c00442{left:490.890667pt;}
.x5f_c00442{left:493.680000pt;}
.x9a_c00442{left:495.120000pt;}
.x9f_c00442{left:498.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m7d_c00443{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{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);}
.mac_c00443{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079170,0.000000,0.000000,0.250000,0,0);}
.mbd_c00443{transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099905,0.000000,0.000000,0.250000,0,0);}
.maa_c00443{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);}
.m1_c00443{transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137310,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150910,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.151604,-0.001364,0.002250,0.249990,0,0);-ms-transform:matrix(0.151604,-0.001364,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151604,-0.001364,0.002250,0.249990,0,0);}
.ma4_c00443{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);}
.mf_c00443{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);}
.m23_c00443{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);}
.m14_c00443{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);}
.m2c_c00443{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);}
.md_c00443{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_c00443{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);}
.m6_c00443{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);}
.ma_c00443{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);}
.m4_c00443{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);}
.m26_c00443{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);}
.m67_c00443{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);}
.m51_c00443{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);}
.m22_c00443{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);}
.m85_c00443{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);}
.m9_c00443{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);}
.m55_c00443{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);}
.m3e_c00443{transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178220,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{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);}
.md5_c00443{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);}
.m1e_c00443{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);}
.m47_c00443{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);}
.mc3_c00443{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);}
.m53_c00443{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);}
.m7_c00443{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);}
.m29_c00443{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);}
.m11_c00443{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);}
.mbb_c00443{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);}
.m4a_c00443{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);}
.m39_c00443{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);}
.m2d_c00443{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);}
.m80_c00443{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);}
.m65_c00443{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);}
.m2_c00443{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);}
.m93_c00443{transform:matrix(0.186527,-0.001679,0.002250,0.249990,0,0);-ms-transform:matrix(0.186527,-0.001679,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186527,-0.001679,0.002250,0.249990,0,0);}
.m41_c00443{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);}
.m25_c00443{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);}
.mcd_c00443{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);}
.m83_c00443{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);}
.m48_c00443{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);}
.m2a_c00443{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);}
.m12_c00443{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);}
.m15_c00443{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);}
.m24_c00443{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);}
.m42_c00443{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);}
.m75_c00443{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);}
.mc1_c00443{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);}
.m10_c00443{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);}
.ma5_c00443{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{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);}
.m96_c00443{transform:matrix(0.191702,-0.001725,0.002250,0.249990,0,0);-ms-transform:matrix(0.191702,-0.001725,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191702,-0.001725,0.002250,0.249990,0,0);}
.m6f_c00443{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);}
.m7b_c00443{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);}
.m54_c00443{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);}
.mb9_c00443{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);}
.m27_c00443{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);}
.mc7_c00443{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);}
.m40_c00443{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);}
.m52_c00443{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);}
.mc5_c00443{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);}
.m49_c00443{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);}
.m7f_c00443{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);}
.mbc_c00443{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);}
.m66_c00443{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);}
.m6d_c00443{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);}
.m72_c00443{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);}
.m57_c00443{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);}
.m8f_c00443{transform:matrix(0.200052,-0.001800,0.002250,0.249990,0,0);-ms-transform:matrix(0.200052,-0.001800,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200052,-0.001800,0.002250,0.249990,0,0);}
.m13_c00443{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);}
.mca_c00443{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);}
.ma8_c00443{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);}
.m2b_c00443{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);}
.m1b_c00443{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);}
.m43_c00443{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);}
.mba_c00443{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);}
.mae_c00443{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);}
.me_c00443{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);}
.mb0_c00443{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);}
.m50_c00443{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);}
.mc4_c00443{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);}
.ma3_c00443{transform:matrix(0.207302,-0.001866,0.002250,0.249990,0,0);-ms-transform:matrix(0.207302,-0.001866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207302,-0.001866,0.002250,0.249990,0,0);}
.m63_c00443{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);}
.mc9_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);}
.mb_c00443{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);}
.mb7_c00443{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);}
.m38_c00443{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);}
.m46_c00443{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);}
.m3b_c00443{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);}
.mce_c00443{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);}
.m1f_c00443{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);}
.m76_c00443{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);}
.m4e_c00443{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{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);}
.m79_c00443{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);}
.m62_c00443{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);}
.m1a_c00443{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);}
.m78_c00443{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);}
.m89_c00443{transform:matrix(0.213706,-0.001923,0.002250,0.249990,0,0);-ms-transform:matrix(0.213706,-0.001923,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213706,-0.001923,0.002250,0.249990,0,0);}
.m1d_c00443{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);}
.m8a_c00443{transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);-ms-transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214561,-0.001931,0.002250,0.249990,0,0);}
.mad_c00443{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);}
.m61_c00443{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);}
.ma6_c00443{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);}
.m5a_c00443{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);}
.m88_c00443{transform:matrix(0.219861,-0.001979,0.002250,0.249990,0,0);-ms-transform:matrix(0.219861,-0.001979,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219861,-0.001979,0.002250,0.249990,0,0);}
.m1c_c00443{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);}
.m81_c00443{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);}
.m6e_c00443{transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);}
.m95_c00443{transform:matrix(0.222146,-0.001999,0.002250,0.249990,0,0);-ms-transform:matrix(0.222146,-0.001999,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222146,-0.001999,0.002250,0.249990,0,0);}
.m4b_c00443{transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223930,0.000000,0.000000,0.250000,0,0);}
.md4_c00443{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);}
.m3a_c00443{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);}
.m92_c00443{transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227046,-0.002043,0.002250,0.249990,0,0);}
.md6_c00443{transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{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);}
.m37_c00443{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);}
.m64_c00443{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);}
.m7a_c00443{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);}
.ma7_c00443{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);}
.m84_c00443{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);}
.md3_c00443{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);}
.maf_c00443{transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{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);}
.m8c_c00443{transform:matrix(0.233496,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233496,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233496,-0.002101,0.002250,0.249990,0,0);}
.mc_c00443{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);}
.m87_c00443{transform:matrix(0.234561,-0.002111,0.002250,0.249990,0,0);-ms-transform:matrix(0.234561,-0.002111,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234561,-0.002111,0.002250,0.249990,0,0);}
.m6c_c00443{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);}
.mab_c00443{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{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);}
.m3_c00443{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);}
.m70_c00443{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);}
.m9b_c00443{transform:matrix(0.237325,-0.002136,0.002250,0.249990,0,0);-ms-transform:matrix(0.237325,-0.002136,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237325,-0.002136,0.002250,0.249990,0,0);}
.m3c_c00443{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);}
.m9f_c00443{transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);-ms-transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);}
.mb8_c00443{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);}
.m4d_c00443{transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241160,0.000000,0.000000,0.250000,0,0);}
.m9d_c00443{transform:matrix(0.241765,-0.002176,0.002250,0.249990,0,0);-ms-transform:matrix(0.241765,-0.002176,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241765,-0.002176,0.002250,0.249990,0,0);}
.mb3_c00443{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.mcc_c00443{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);}
.md2_c00443{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);}
.m3d_c00443{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);}
.m34_c00443{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);}
.m35_c00443{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);}
.m3f_c00443{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{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);}
.m9e_c00443{transform:matrix(0.243990,-0.002196,0.002250,0.249990,0,0);-ms-transform:matrix(0.243990,-0.002196,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243990,-0.002196,0.002250,0.249990,0,0);}
.m8d_c00443{transform:matrix(0.244190,-0.002198,0.002250,0.249990,0,0);-ms-transform:matrix(0.244190,-0.002198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244190,-0.002198,0.002250,0.249990,0,0);}
.md7_c00443{transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);}
.ma9_c00443{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m90_c00443{transform:matrix(0.248150,-0.002233,0.002250,0.249990,0,0);-ms-transform:matrix(0.248150,-0.002233,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248150,-0.002233,0.002250,0.249990,0,0);}
.mb1_c00443{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);}
.m9c_c00443{transform:matrix(0.249760,-0.002248,0.002250,0.249990,0,0);-ms-transform:matrix(0.249760,-0.002248,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249760,-0.002248,0.002250,0.249990,0,0);}
.mcb_c00443{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{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);}
.ma1_c00443{transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);-ms-transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250830,-0.002257,0.002250,0.249990,0,0);}
.m32_c00443{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);}
.m74_c00443{transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{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);}
.md1_c00443{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);}
.m45_c00443{transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{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);}
.mb5_c00443{transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);}
.m58_c00443{transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273145,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{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);}
.ma2_c00443{transform:matrix(0.280354,-0.002523,0.002250,0.249990,0,0);-ms-transform:matrix(0.280354,-0.002523,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280354,-0.002523,0.002250,0.249990,0,0);}
.m8e_c00443{transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);-ms-transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);}
.md8_c00443{transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);}
.m9a_c00443{transform:matrix(0.285038,-0.002565,0.002250,0.249990,0,0);-ms-transform:matrix(0.285038,-0.002565,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285038,-0.002565,0.002250,0.249990,0,0);}
.m73_c00443{transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285560,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286395,0.000000,0.000000,0.250000,0,0);}
.m99_c00443{transform:matrix(0.286838,-0.002582,0.002250,0.249990,0,0);-ms-transform:matrix(0.286838,-0.002582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286838,-0.002582,0.002250,0.249990,0,0);}
.m69_c00443{transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288635,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);}
.mbf_c00443{transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);}
.mc6_c00443{transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.292615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292615,0.000000,0.000000,0.250000,0,0);}
.mc0_c00443{transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298930,0.000000,0.000000,0.250000,0,0);}
.ma0_c00443{transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);-ms-transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.311902,-0.002807,0.002250,0.249990,0,0);}
.md0_c00443{transform:matrix(0.317495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317495,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.319465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00443{transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.359800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359800,0.000000,0.000000,0.250000,0,0);}
.mc8_c00443{transform:matrix(0.366660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366660,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.377780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377780,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.381950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381950,0.000000,0.000000,0.250000,0,0);}
.m94_c00443{transform:matrix(0.384324,-0.003459,0.002250,0.249990,0,0);-ms-transform:matrix(0.384324,-0.003459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.384324,-0.003459,0.002250,0.249990,0,0);}
.m5c_c00443{transform:matrix(0.396795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396795,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.402665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402665,0.000000,0.000000,0.250000,0,0);}
.mbe_c00443{transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);}
.m97_c00443{transform:matrix(0.420443,-0.003784,0.002250,0.249990,0,0);-ms-transform:matrix(0.420443,-0.003784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.420443,-0.003784,0.002250,0.249990,0,0);}
.mb2_c00443{transform:matrix(0.436800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436800,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.436980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436980,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.437945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.453375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453375,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.461640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461640,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.470245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470245,0.000000,0.000000,0.250000,0,0);}
.mc2_c00443{transform:matrix(0.476800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476800,0.000000,0.000000,0.250000,0,0);}
.mb6_c00443{transform:matrix(0.490245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490245,0.000000,0.000000,0.250000,0,0);}
.mb4_c00443{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);}
.m91_c00443{transform:matrix(0.515759,-0.004642,0.002250,0.249990,0,0);-ms-transform:matrix(0.515759,-0.004642,0.002250,0.249990,0,0);-webkit-transform:matrix(0.515759,-0.004642,0.002250,0.249990,0,0);}
.m68_c00443{transform:matrix(0.531165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531165,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.556970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556970,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.562120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562120,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.562217,-0.005060,0.002250,0.249990,0,0);-ms-transform:matrix(0.562217,-0.005060,0.002250,0.249990,0,0);-webkit-transform:matrix(0.562217,-0.005060,0.002250,0.249990,0,0);}
.m98_c00443{transform:matrix(0.570577,-0.005135,0.002250,0.249990,0,0);-ms-transform:matrix(0.570577,-0.005135,0.002250,0.249990,0,0);-webkit-transform:matrix(0.570577,-0.005135,0.002250,0.249990,0,0);}
.m2f_c00443{transform:matrix(0.694655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694655,0.000000,0.000000,0.250000,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;}
.fc0_c00443{color:transparent;}
.fsa_c00443{font-size:46.201871px;}
.fsc_c00443{font-size:47.250000px;}
.fsf_c00443{font-size:48.300000px;}
.fsb_c00443{font-size:49.351999px;}
.fsd_c00443{font-size:51.450000px;}
.fse_c00443{font-size:55.650000px;}
.fs4_c00443{font-size:60.900000px;}
.fs9_c00443{font-size:63.000000px;}
.fs8_c00443{font-size:67.200000px;}
.fs6_c00443{font-size:68.250000px;}
.fs2_c00443{font-size:69.300000px;}
.fs7_c00443{font-size:70.350000px;}
.fs5_c00443{font-size:71.400000px;}
.fs3_c00443{font-size:73.500000px;}
.fs1_c00443{font-size:95.550000px;}
.fs0_c00443{font-size:135.450000px;}
.y0_c00443{bottom:0.000000px;}
.y39_c00443{bottom:156.451500px;}
.y38_c00443{bottom:175.660500px;}
.y37_c00443{bottom:192.477000px;}
.y36_c00443{bottom:211.104000px;}
.y35_c00443{bottom:228.807000px;}
.y2c_c00443{bottom:265.107120px;}
.y2b_c00443{bottom:265.107344px;}
.y2a_c00443{bottom:265.107537px;}
.y2e_c00443{bottom:265.107663px;}
.y2d_c00443{bottom:265.107780px;}
.y2f_c00443{bottom:265.107903px;}
.y27_c00443{bottom:265.108074px;}
.y29_c00443{bottom:265.108091px;}
.y28_c00443{bottom:265.108150px;}
.y30_c00443{bottom:265.108370px;}
.y33_c00443{bottom:265.108856px;}
.y31_c00443{bottom:265.109016px;}
.y32_c00443{bottom:265.109213px;}
.y34_c00443{bottom:265.109546px;}
.y17_c00443{bottom:279.636000px;}
.y18_c00443{bottom:280.327781px;}
.y19_c00443{bottom:280.558900px;}
.y1a_c00443{bottom:281.078678px;}
.y1b_c00443{bottom:281.535193px;}
.y1c_c00443{bottom:281.722101px;}
.y1d_c00443{bottom:281.892390px;}
.y1e_c00443{bottom:282.045602px;}
.y1f_c00443{bottom:282.395643px;}
.y20_c00443{bottom:282.582740px;}
.y21_c00443{bottom:283.032114px;}
.y22_c00443{bottom:283.372935px;}
.y23_c00443{bottom:283.489116px;}
.y24_c00443{bottom:283.722450px;}
.y25_c00443{bottom:284.031290px;}
.y26_c00443{bottom:284.218413px;}
.y16_c00443{bottom:333.720000px;}
.y15_c00443{bottom:355.965000px;}
.y14_c00443{bottom:380.236500px;}
.y13_c00443{bottom:403.470000px;}
.y12_c00443{bottom:425.355000px;}
.y11_c00443{bottom:449.010000px;}
.y10_c00443{bottom:471.904500px;}
.yf_c00443{bottom:495.073500px;}
.ye_c00443{bottom:517.819500px;}
.yd_c00443{bottom:541.086000px;}
.yc_c00443{bottom:563.976000px;}
.yb_c00443{bottom:587.388000px;}
.ya_c00443{bottom:616.509000px;}
.y9_c00443{bottom:644.490000px;}
.y8_c00443{bottom:673.434000px;}
.y7_c00443{bottom:700.266000px;}
.y6_c00443{bottom:723.187500px;}
.y5_c00443{bottom:746.077500px;}
.y4_c00443{bottom:768.379500px;}
.y3_c00443{bottom:791.500500px;}
.y2_c00443{bottom:822.307500px;}
.y1_c00443{bottom:871.291500px;}
.hc_c00443{height:46.201871px;}
.he_c00443{height:47.250000px;}
.h11_c00443{height:48.300000px;}
.hd_c00443{height:49.351999px;}
.hf_c00443{height:51.450000px;}
.h10_c00443{height:55.650000px;}
.h6_c00443{height:60.900000px;}
.hb_c00443{height:63.000000px;}
.ha_c00443{height:67.200000px;}
.h8_c00443{height:68.250000px;}
.h4_c00443{height:69.300000px;}
.h9_c00443{height:70.350000px;}
.h7_c00443{height:71.400000px;}
.h5_c00443{height:73.500000px;}
.h3_c00443{height:95.550000px;}
.h2_c00443{height:135.450000px;}
.h0_c00443{height:1008.450000px;}
.h1_c00443{height:1008.750000px;}
.w1_c00443{width:689.250000px;}
.w0_c00443{width:689.550000px;}
.x0_c00443{left:0.000000px;}
.x82_c00443{left:143.910000px;}
.x6e_c00443{left:149.308572px;}
.x63_c00443{left:151.392000px;}
.x88_c00443{left:162.810000px;}
.x18_c00443{left:171.180000px;}
.x46_c00443{left:175.770000px;}
.x39_c00443{left:176.850000px;}
.x19_c00443{left:179.820000px;}
.xf_c00443{left:181.170000px;}
.x7_c00443{left:182.520000px;}
.x8e_c00443{left:190.080000px;}
.x6f_c00443{left:195.480811px;}
.x8f_c00443{left:200.880000px;}
.x89_c00443{left:206.550000px;}
.x3a_c00443{left:207.630000px;}
.x1a_c00443{left:209.520000px;}
.x26_c00443{left:213.030000px;}
.x5f_c00443{left:215.460000px;}
.x58_c00443{left:219.780000px;}
.x41_c00443{left:221.940000px;}
.x10_c00443{left:226.800000px;}
.x64_c00443{left:228.256500px;}
.x8_c00443{left:233.820000px;}
.x2e_c00443{left:235.710000px;}
.x35_c00443{left:238.680000px;}
.x53_c00443{left:240.570000px;}
.x49_c00443{left:242.190000px;}
.x1f_c00443{left:247.050000px;}
.x4d_c00443{left:254.070000px;}
.x27_c00443{left:255.420000px;}
.x42_c00443{left:256.500000px;}
.x3b_c00443{left:259.470000px;}
.x9_c00443{left:260.820000px;}
.x43_c00443{left:261.900000px;}
.x20_c00443{left:264.870000px;}
.x1b_c00443{left:270.270000px;}
.x11_c00443{left:277.560000px;}
.x83_c00443{left:279.990000px;}
.x1_c00443{left:284.040000px;}
.xa_c00443{left:286.470000px;}
.x2a_c00443{left:287.550000px;}
.x54_c00443{left:289.170000px;}
.x2f_c00443{left:290.790000px;}
.x3c_c00443{left:294.030000px;}
.x21_c00443{left:296.190000px;}
.x1c_c00443{left:304.020000px;}
.x59_c00443{left:305.640000px;}
.x6_c00443{left:306.990000px;}
.x52_c00443{left:308.610000px;}
.x12_c00443{left:312.660000px;}
.x4a_c00443{left:316.710000px;}
.x4e_c00443{left:318.870000px;}
.x2b_c00443{left:322.110000px;}
.x5d_c00443{left:325.350000px;}
.x30_c00443{left:326.700000px;}
.x22_c00443{left:328.590000px;}
.x55_c00443{left:329.940000px;}
.xb_c00443{left:335.340000px;}
.x2_c00443{left:336.690000px;}
.x23_c00443{left:348.570000px;}
.x3d_c00443{left:349.650000px;}
.x8a_c00443{left:351.000000px;}
.x13_c00443{left:356.130000px;}
.x28_c00443{left:359.370000px;}
.x44_c00443{left:361.530000px;}
.x3_c00443{left:365.040000px;}
.x90_c00443{left:366.660000px;}
.x47_c00443{left:368.550000px;}
.x1d_c00443{left:373.680000px;}
.x3e_c00443{left:375.030000px;}
.x60_c00443{left:376.920000px;}
.x65_c00443{left:383.181000px;}
.x56_c00443{left:385.290000px;}
.xc_c00443{left:387.180000px;}
.x36_c00443{left:389.340000px;}
.x2c_c00443{left:391.230000px;}
.x4b_c00443{left:392.310000px;}
.x14_c00443{left:395.820000px;}
.x48_c00443{left:398.790000px;}
.x4f_c00443{left:401.760000px;}
.x4_c00443{left:405.000000px;}
.x4c_c00443{left:408.240000px;}
.x3f_c00443{left:416.070000px;}
.x29_c00443{left:417.420000px;}
.x66_c00443{left:419.125500px;}
.x57_c00443{left:422.550000px;}
.x5a_c00443{left:424.440000px;}
.x70_c00443{left:425.530441px;}
.xd_c00443{left:428.220000px;}
.x2d_c00443{left:430.110000px;}
.x7a_c00443{left:433.350000px;}
.x61_c00443{left:435.510000px;}
.x7b_c00443{left:436.860000px;}
.x45_c00443{left:438.750000px;}
.x84_c00443{left:442.800000px;}
.x5_c00443{left:444.960000px;}
.x50_c00443{left:446.040000px;}
.x37_c00443{left:451.980000px;}
.x7c_c00443{left:456.840000px;}
.x62_c00443{left:458.730000px;}
.x15_c00443{left:460.890000px;}
.x24_c00443{left:463.320000px;}
.x31_c00443{left:464.940000px;}
.x51_c00443{left:468.180000px;}
.x71_c00443{left:469.272479px;}
.x91_c00443{left:470.880000px;}
.x1e_c00443{left:472.500000px;}
.x67_c00443{left:478.807500px;}
.x8b_c00443{left:481.140000px;}
.x16_c00443{left:483.030000px;}
.x25_c00443{left:484.380000px;}
.x40_c00443{left:489.240000px;}
.x72_c00443{left:495.463098px;}
.x38_c00443{left:497.070000px;}
.x5b_c00443{left:501.660000px;}
.x32_c00443{left:507.330000px;}
.x75_c00443{left:510.570000px;}
.xe_c00443{left:512.460000px;}
.x7d_c00443{left:516.510000px;}
.x76_c00443{left:523.800000px;}
.x17_c00443{left:527.580000px;}
.x68_c00443{left:528.738000px;}
.x5c_c00443{left:530.550000px;}
.x85_c00443{left:532.710000px;}
.x5e_c00443{left:535.680000px;}
.x77_c00443{left:538.110000px;}
.x33_c00443{left:545.130000px;}
.x7e_c00443{left:558.360000px;}
.x8c_c00443{left:563.490000px;}
.x69_c00443{left:566.607000px;}
.x92_c00443{left:568.620000px;}
.x7f_c00443{left:575.910000px;}
.x6a_c00443{left:579.516000px;}
.x73_c00443{left:581.597077px;}
.x86_c00443{left:586.440000px;}
.x93_c00443{left:588.060000px;}
.x74_c00443{left:590.507793px;}
.x78_c00443{left:592.110000px;}
.x34_c00443{left:596.700000px;}
.x80_c00443{left:597.780000px;}
.x6b_c00443{left:605.442000px;}
.x8d_c00443{left:610.200000px;}
.x87_c00443{left:625.590000px;}
.x6c_c00443{left:639.757500px;}
.x79_c00443{left:641.790000px;}
.x81_c00443{left:659.340000px;}
.x6d_c00443{left:660.549000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.fsa_c00443{font-size:41.068330pt;}
.fsc_c00443{font-size:42.000000pt;}
.fsf_c00443{font-size:42.933333pt;}
.fsb_c00443{font-size:43.868443pt;}
.fsd_c00443{font-size:45.733333pt;}
.fse_c00443{font-size:49.466667pt;}
.fs4_c00443{font-size:54.133333pt;}
.fs9_c00443{font-size:56.000000pt;}
.fs8_c00443{font-size:59.733333pt;}
.fs6_c00443{font-size:60.666667pt;}
.fs2_c00443{font-size:61.600000pt;}
.fs7_c00443{font-size:62.533333pt;}
.fs5_c00443{font-size:63.466667pt;}
.fs3_c00443{font-size:65.333333pt;}
.fs1_c00443{font-size:84.933333pt;}
.fs0_c00443{font-size:120.400000pt;}
.y0_c00443{bottom:0.000000pt;}
.y39_c00443{bottom:139.068000pt;}
.y38_c00443{bottom:156.142667pt;}
.y37_c00443{bottom:171.090667pt;}
.y36_c00443{bottom:187.648000pt;}
.y35_c00443{bottom:203.384000pt;}
.y2c_c00443{bottom:235.650773pt;}
.y2b_c00443{bottom:235.650972pt;}
.y2a_c00443{bottom:235.651144pt;}
.y2e_c00443{bottom:235.651256pt;}
.y2d_c00443{bottom:235.651360pt;}
.y2f_c00443{bottom:235.651469pt;}
.y27_c00443{bottom:235.651621pt;}
.y29_c00443{bottom:235.651636pt;}
.y28_c00443{bottom:235.651689pt;}
.y30_c00443{bottom:235.651884pt;}
.y33_c00443{bottom:235.652316pt;}
.y31_c00443{bottom:235.652459pt;}
.y32_c00443{bottom:235.652633pt;}
.y34_c00443{bottom:235.652929pt;}
.y17_c00443{bottom:248.565333pt;}
.y18_c00443{bottom:249.180249pt;}
.y19_c00443{bottom:249.385689pt;}
.y1a_c00443{bottom:249.847713pt;}
.y1b_c00443{bottom:250.253505pt;}
.y1c_c00443{bottom:250.419645pt;}
.y1d_c00443{bottom:250.571013pt;}
.y1e_c00443{bottom:250.707201pt;}
.y1f_c00443{bottom:251.018349pt;}
.y20_c00443{bottom:251.184657pt;}
.y21_c00443{bottom:251.584101pt;}
.y22_c00443{bottom:251.887053pt;}
.y23_c00443{bottom:251.990325pt;}
.y24_c00443{bottom:252.197733pt;}
.y25_c00443{bottom:252.472257pt;}
.y26_c00443{bottom:252.638589pt;}
.y16_c00443{bottom:296.640000pt;}
.y15_c00443{bottom:316.413333pt;}
.y14_c00443{bottom:337.988000pt;}
.y13_c00443{bottom:358.640000pt;}
.y12_c00443{bottom:378.093333pt;}
.y11_c00443{bottom:399.120000pt;}
.y10_c00443{bottom:419.470667pt;}
.yf_c00443{bottom:440.065333pt;}
.ye_c00443{bottom:460.284000pt;}
.yd_c00443{bottom:480.965333pt;}
.yc_c00443{bottom:501.312000pt;}
.yb_c00443{bottom:522.122667pt;}
.ya_c00443{bottom:548.008000pt;}
.y9_c00443{bottom:572.880000pt;}
.y8_c00443{bottom:598.608000pt;}
.y7_c00443{bottom:622.458667pt;}
.y6_c00443{bottom:642.833333pt;}
.y5_c00443{bottom:663.180000pt;}
.y4_c00443{bottom:683.004000pt;}
.y3_c00443{bottom:703.556000pt;}
.y2_c00443{bottom:730.940000pt;}
.y1_c00443{bottom:774.481333pt;}
.hc_c00443{height:41.068330pt;}
.he_c00443{height:42.000000pt;}
.h11_c00443{height:42.933333pt;}
.hd_c00443{height:43.868443pt;}
.hf_c00443{height:45.733333pt;}
.h10_c00443{height:49.466667pt;}
.h6_c00443{height:54.133333pt;}
.hb_c00443{height:56.000000pt;}
.ha_c00443{height:59.733333pt;}
.h8_c00443{height:60.666667pt;}
.h4_c00443{height:61.600000pt;}
.h9_c00443{height:62.533333pt;}
.h7_c00443{height:63.466667pt;}
.h5_c00443{height:65.333333pt;}
.h3_c00443{height:84.933333pt;}
.h2_c00443{height:120.400000pt;}
.h0_c00443{height:896.400000pt;}
.h1_c00443{height:896.666667pt;}
.w1_c00443{width:612.666667pt;}
.w0_c00443{width:612.933333pt;}
.x0_c00443{left:0.000000pt;}
.x82_c00443{left:127.920000pt;}
.x6e_c00443{left:132.718731pt;}
.x63_c00443{left:134.570667pt;}
.x88_c00443{left:144.720000pt;}
.x18_c00443{left:152.160000pt;}
.x46_c00443{left:156.240000pt;}
.x39_c00443{left:157.200000pt;}
.x19_c00443{left:159.840000pt;}
.xf_c00443{left:161.040000pt;}
.x7_c00443{left:162.240000pt;}
.x8e_c00443{left:168.960000pt;}
.x6f_c00443{left:173.760721pt;}
.x8f_c00443{left:178.560000pt;}
.x89_c00443{left:183.600000pt;}
.x3a_c00443{left:184.560000pt;}
.x1a_c00443{left:186.240000pt;}
.x26_c00443{left:189.360000pt;}
.x5f_c00443{left:191.520000pt;}
.x58_c00443{left:195.360000pt;}
.x41_c00443{left:197.280000pt;}
.x10_c00443{left:201.600000pt;}
.x64_c00443{left:202.894667pt;}
.x8_c00443{left:207.840000pt;}
.x2e_c00443{left:209.520000pt;}
.x35_c00443{left:212.160000pt;}
.x53_c00443{left:213.840000pt;}
.x49_c00443{left:215.280000pt;}
.x1f_c00443{left:219.600000pt;}
.x4d_c00443{left:225.840000pt;}
.x27_c00443{left:227.040000pt;}
.x42_c00443{left:228.000000pt;}
.x3b_c00443{left:230.640000pt;}
.x9_c00443{left:231.840000pt;}
.x43_c00443{left:232.800000pt;}
.x20_c00443{left:235.440000pt;}
.x1b_c00443{left:240.240000pt;}
.x11_c00443{left:246.720000pt;}
.x83_c00443{left:248.880000pt;}
.x1_c00443{left:252.480000pt;}
.xa_c00443{left:254.640000pt;}
.x2a_c00443{left:255.600000pt;}
.x54_c00443{left:257.040000pt;}
.x2f_c00443{left:258.480000pt;}
.x3c_c00443{left:261.360000pt;}
.x21_c00443{left:263.280000pt;}
.x1c_c00443{left:270.240000pt;}
.x59_c00443{left:271.680000pt;}
.x6_c00443{left:272.880000pt;}
.x52_c00443{left:274.320000pt;}
.x12_c00443{left:277.920000pt;}
.x4a_c00443{left:281.520000pt;}
.x4e_c00443{left:283.440000pt;}
.x2b_c00443{left:286.320000pt;}
.x5d_c00443{left:289.200000pt;}
.x30_c00443{left:290.400000pt;}
.x22_c00443{left:292.080000pt;}
.x55_c00443{left:293.280000pt;}
.xb_c00443{left:298.080000pt;}
.x2_c00443{left:299.280000pt;}
.x23_c00443{left:309.840000pt;}
.x3d_c00443{left:310.800000pt;}
.x8a_c00443{left:312.000000pt;}
.x13_c00443{left:316.560000pt;}
.x28_c00443{left:319.440000pt;}
.x44_c00443{left:321.360000pt;}
.x3_c00443{left:324.480000pt;}
.x90_c00443{left:325.920000pt;}
.x47_c00443{left:327.600000pt;}
.x1d_c00443{left:332.160000pt;}
.x3e_c00443{left:333.360000pt;}
.x60_c00443{left:335.040000pt;}
.x65_c00443{left:340.605333pt;}
.x56_c00443{left:342.480000pt;}
.xc_c00443{left:344.160000pt;}
.x36_c00443{left:346.080000pt;}
.x2c_c00443{left:347.760000pt;}
.x4b_c00443{left:348.720000pt;}
.x14_c00443{left:351.840000pt;}
.x48_c00443{left:354.480000pt;}
.x4f_c00443{left:357.120000pt;}
.x4_c00443{left:360.000000pt;}
.x4c_c00443{left:362.880000pt;}
.x3f_c00443{left:369.840000pt;}
.x29_c00443{left:371.040000pt;}
.x66_c00443{left:372.556000pt;}
.x57_c00443{left:375.600000pt;}
.x5a_c00443{left:377.280000pt;}
.x70_c00443{left:378.249281pt;}
.xd_c00443{left:380.640000pt;}
.x2d_c00443{left:382.320000pt;}
.x7a_c00443{left:385.200000pt;}
.x61_c00443{left:387.120000pt;}
.x7b_c00443{left:388.320000pt;}
.x45_c00443{left:390.000000pt;}
.x84_c00443{left:393.600000pt;}
.x5_c00443{left:395.520000pt;}
.x50_c00443{left:396.480000pt;}
.x37_c00443{left:401.760000pt;}
.x7c_c00443{left:406.080000pt;}
.x62_c00443{left:407.760000pt;}
.x15_c00443{left:409.680000pt;}
.x24_c00443{left:411.840000pt;}
.x31_c00443{left:413.280000pt;}
.x51_c00443{left:416.160000pt;}
.x71_c00443{left:417.131092pt;}
.x91_c00443{left:418.560000pt;}
.x1e_c00443{left:420.000000pt;}
.x67_c00443{left:425.606667pt;}
.x8b_c00443{left:427.680000pt;}
.x16_c00443{left:429.360000pt;}
.x25_c00443{left:430.560000pt;}
.x40_c00443{left:434.880000pt;}
.x72_c00443{left:440.411643pt;}
.x38_c00443{left:441.840000pt;}
.x5b_c00443{left:445.920000pt;}
.x32_c00443{left:450.960000pt;}
.x75_c00443{left:453.840000pt;}
.xe_c00443{left:455.520000pt;}
.x7d_c00443{left:459.120000pt;}
.x76_c00443{left:465.600000pt;}
.x17_c00443{left:468.960000pt;}
.x68_c00443{left:469.989333pt;}
.x5c_c00443{left:471.600000pt;}
.x85_c00443{left:473.520000pt;}
.x5e_c00443{left:476.160000pt;}
.x77_c00443{left:478.320000pt;}
.x33_c00443{left:484.560000pt;}
.x7e_c00443{left:496.320000pt;}
.x8c_c00443{left:500.880000pt;}
.x69_c00443{left:503.650667pt;}
.x92_c00443{left:505.440000pt;}
.x7f_c00443{left:511.920000pt;}
.x6a_c00443{left:515.125333pt;}
.x73_c00443{left:516.975180pt;}
.x86_c00443{left:521.280000pt;}
.x93_c00443{left:522.720000pt;}
.x74_c00443{left:524.895816pt;}
.x78_c00443{left:526.320000pt;}
.x34_c00443{left:530.400000pt;}
.x80_c00443{left:531.360000pt;}
.x6b_c00443{left:538.170667pt;}
.x8d_c00443{left:542.400000pt;}
.x87_c00443{left:556.080000pt;}
.x6c_c00443{left:568.673333pt;}
.x79_c00443{left:570.480000pt;}
.x81_c00443{left:586.080000pt;}
.x6d_c00443{left:587.154667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m9d_c00444{transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008555,0.000000,0.000000,0.250000,0,0);}
.mbb_c00444{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.056470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056470,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.130355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130355,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{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);}
.m5a_c00444{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);}
.mdd_c00444{transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154665,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{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);}
.m58_c00444{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);}
.m31_c00444{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);}
.mde_c00444{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);}
.m83_c00444{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);}
.mae_c00444{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);}
.m91_c00444{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);}
.mb6_c00444{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.me0_c00444{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);}
.mf0_c00444{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);}
.m98_c00444{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);}
.mc_c00444{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);}
.m51_c00444{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);}
.m10_c00444{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);}
.m79_c00444{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);}
.m33_c00444{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);}
.m6_c00444{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);}
.m94_c00444{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);}
.mc9_c00444{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);}
.m55_c00444{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);}
.mb5_c00444{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);}
.me2_c00444{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m96_c00444{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);}
.m84_c00444{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);}
.mac_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);}
.m6f_c00444{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);}
.mca_c00444{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);}
.me8_c00444{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);}
.m5d_c00444{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);}
.m92_c00444{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);}
.mb2_c00444{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);}
.m6e_c00444{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);}
.m57_c00444{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);}
.m90_c00444{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);}
.m20_c00444{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);}
.m8a_c00444{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);}
.m28_c00444{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);}
.me4_c00444{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);}
.ma9_c00444{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);}
.m8b_c00444{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);}
.m89_c00444{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);}
.m50_c00444{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);}
.m86_c00444{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);}
.mbe_c00444{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);}
.m8f_c00444{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);}
.mba_c00444{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_c00444{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);}
.m7d_c00444{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);}
.m73_c00444{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);}
.m78_c00444{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);}
.m97_c00444{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);}
.m88_c00444{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);}
.m1b_c00444{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);}
.m9a_c00444{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);}
.m63_c00444{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);}
.m77_c00444{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);}
.m4e_c00444{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);}
.m9b_c00444{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);}
.m59_c00444{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);}
.m6b_c00444{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);}
.m1f_c00444{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);}
.m11_c00444{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);}
.m70_c00444{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);}
.m49_c00444{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);}
.m17_c00444{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);}
.me6_c00444{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);}
.m23_c00444{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);}
.m99_c00444{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{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);}
.m8_c00444{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);}
.m71_c00444{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);}
.mc4_c00444{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);}
.m80_c00444{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);}
.mc2_c00444{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);}
.m34_c00444{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);}
.meb_c00444{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);}
.m56_c00444{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);}
.ma0_c00444{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);}
.mc6_c00444{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);}
.ma1_c00444{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);}
.mb0_c00444{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);}
.mda_c00444{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);}
.m30_c00444{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);}
.m52_c00444{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);}
.mee_c00444{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);}
.m13_c00444{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);}
.m8e_c00444{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);}
.mb1_c00444{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);}
.m2f_c00444{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);}
.mb_c00444{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);}
.mc8_c00444{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);}
.mc7_c00444{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);}
.m7e_c00444{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{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);}
.m6d_c00444{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);}
.m19_c00444{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);}
.mad_c00444{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);}
.mdf_c00444{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);}
.mf4_c00444{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);}
.m53_c00444{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);}
.m6a_c00444{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);}
.m48_c00444{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);}
.m7f_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);}
.mab_c00444{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);}
.mdc_c00444{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);}
.ma_c00444{transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{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);}
.m2c_c00444{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);}
.m16_c00444{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);}
.m22_c00444{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);}
.m4a_c00444{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);}
.mc1_c00444{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);}
.m5_c00444{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);}
.me3_c00444{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);}
.ma6_c00444{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);}
.m8c_c00444{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.maf_c00444{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);}
.m1d_c00444{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);}
.mf_c00444{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);}
.m7a_c00444{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);}
.mc5_c00444{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);}
.m27_c00444{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);}
.m5b_c00444{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);}
.m65_c00444{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);}
.m75_c00444{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_c00444{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);}
.mb8_c00444{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);}
.maa_c00444{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);}
.mb3_c00444{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);}
.mbf_c00444{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);}
.m67_c00444{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);}
.m95_c00444{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.me5_c00444{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);}
.m46_c00444{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);}
.mf7_c00444{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);}
.m29_c00444{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{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);}
.m6c_c00444{transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{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);}
.m68_c00444{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);}
.mcb_c00444{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);}
.m5e_c00444{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);}
.md_c00444{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);}
.m1a_c00444{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);}
.mc0_c00444{transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222160,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{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);}
.mb9_c00444{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);}
.m4f_c00444{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);}
.m54_c00444{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.mdb_c00444{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);}
.m81_c00444{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{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);}
.mb7_c00444{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);}
.mc3_c00444{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);}
.m3e_c00444{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);}
.m9_c00444{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);}
.mbd_c00444{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);}
.m42_c00444{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);}
.md9_c00444{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);}
.me7_c00444{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);}
.mb4_c00444{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);}
.ma4_c00444{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);}
.m2b_c00444{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{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);}
.m36_c00444{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);}
.med_c00444{transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230515,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{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);}
.md8_c00444{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);}
.m7c_c00444{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);}
.m43_c00444{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);}
.m39_c00444{transform:matrix(0.239445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239445,0.000000,0.000000,0.250000,0,0);}
.mef_c00444{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);}
.m74_c00444{transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{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);}
.m85_c00444{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);}
.m38_c00444{transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243695,0.000000,0.000000,0.250000,0,0);}
.m93_c00444{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);}
.ma2_c00444{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);}
.me9_c00444{transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);}
.mbc_c00444{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);}
.mf8_c00444{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{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);}
.m3f_c00444{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);}
.m40_c00444{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);}
.m35_c00444{transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);}
.me1_c00444{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);}
.me_c00444{transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{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);}
.ma7_c00444{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);}
.mf3_c00444{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);}
.mcc_c00444{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);}
.m9f_c00444{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);}
.mf9_c00444{transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.284455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284455,0.000000,0.000000,0.250000,0,0);}
.mf5_c00444{transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);}
.m7b_c00444{transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);}
.ma3_c00444{transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292305,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);}
.md1_c00444{transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295965,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297455,0.000000,0.000000,0.250000,0,0);}
.mcf_c00444{transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299095,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);}
.md5_c00444{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.ma5_c00444{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);}
.m12_c00444{transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305640,0.000000,0.000000,0.250000,0,0);}
.md6_c00444{transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315265,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);}
.mcd_c00444{transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{transform:matrix(0.336175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336175,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336910,0.000000,0.000000,0.250000,0,0);}
.md7_c00444{transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338695,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.341810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341810,0.000000,0.000000,0.250000,0,0);}
.m9c_c00444{transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);}
.mf2_c00444{transform:matrix(0.356575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356575,0.000000,0.000000,0.250000,0,0);}
.ma8_c00444{transform:matrix(0.369125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369125,0.000000,0.000000,0.250000,0,0);}
.mce_c00444{transform:matrix(0.378245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378245,0.000000,0.000000,0.250000,0,0);}
.md4_c00444{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);}
.mec_c00444{transform:matrix(0.405270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.411100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411100,0.000000,0.000000,0.250000,0,0);}
.md3_c00444{transform:matrix(0.424440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424440,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.427150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.427695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427695,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.433780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433780,0.000000,0.000000,0.250000,0,0);}
.md2_c00444{transform:matrix(0.450360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450360,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.459655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459655,0.000000,0.000000,0.250000,0,0);}
.mea_c00444{transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);}
.md0_c00444{transform:matrix(0.495960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495960,0.000000,0.000000,0.250000,0,0);}
.mf1_c00444{transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.572990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572990,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.579110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579110,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.620680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620680,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.667560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667560,0.000000,0.000000,0.250000,0,0);}
.mf6_c00444{transform:matrix(0.931695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.931695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.931695,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(1.478815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.478815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.478815,0.000000,0.000000,0.250000,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;}
.fs17_c00444{font-size:22.050000px;}
.fsa_c00444{font-size:46.200000px;}
.fs16_c00444{font-size:48.300000px;}
.fs8_c00444{font-size:50.400000px;}
.fs7_c00444{font-size:51.450000px;}
.fs6_c00444{font-size:52.500000px;}
.fs9_c00444{font-size:53.550000px;}
.fsb_c00444{font-size:54.600000px;}
.fs10_c00444{font-size:58.800000px;}
.fs15_c00444{font-size:60.900000px;}
.fsd_c00444{font-size:63.000000px;}
.fs0_c00444{font-size:64.050000px;}
.fs14_c00444{font-size:66.150000px;}
.fse_c00444{font-size:67.200000px;}
.fs4_c00444{font-size:68.250000px;}
.fs5_c00444{font-size:69.300000px;}
.fs3_c00444{font-size:70.350000px;}
.fsc_c00444{font-size:71.400000px;}
.fs13_c00444{font-size:86.100000px;}
.fs12_c00444{font-size:87.150000px;}
.fs1_c00444{font-size:88.200000px;}
.fsf_c00444{font-size:89.250000px;}
.fs2_c00444{font-size:95.550000px;}
.fs11_c00444{font-size:222.600000px;}
.y0_c00444{bottom:0.000000px;}
.y10_c00444{bottom:152.889000px;}
.y2b_c00444{bottom:153.900000px;}
.yf_c00444{bottom:171.087000px;}
.y23_c00444{bottom:188.317500px;}
.yd_c00444{bottom:188.875500px;}
.ye_c00444{bottom:189.810000px;}
.yc_c00444{bottom:206.317500px;}
.yb_c00444{bottom:224.341500px;}
.y2a_c00444{bottom:241.645500px;}
.ya_c00444{bottom:242.572500px;}
.y29_c00444{bottom:259.383000px;}
.y9_c00444{bottom:260.164500px;}
.y28_c00444{bottom:277.728000px;}
.y8_c00444{bottom:277.945500px;}
.y22_c00444{bottom:334.975500px;}
.y21_c00444{bottom:358.077000px;}
.y20_c00444{bottom:380.979000px;}
.y1f_c00444{bottom:403.623000px;}
.y1e_c00444{bottom:426.582000px;}
.y7_c00444{bottom:427.048500px;}
.y1d_c00444{bottom:471.594000px;}
.y1c_c00444{bottom:494.077500px;}
.y1b_c00444{bottom:517.309500px;}
.y1a_c00444{bottom:540.454500px;}
.y19_c00444{bottom:562.995000px;}
.y18_c00444{bottom:585.804000px;}
.y6_c00444{bottom:586.443000px;}
.y17_c00444{bottom:608.856000px;}
.y16_c00444{bottom:653.652000px;}
.y5_c00444{bottom:653.820000px;}
.y15_c00444{bottom:675.885000px;}
.y14_c00444{bottom:698.580000px;}
.y13_c00444{bottom:721.638000px;}
.y27_c00444{bottom:744.547500px;}
.y4_c00444{bottom:745.368000px;}
.y12_c00444{bottom:768.324000px;}
.y11_c00444{bottom:791.008500px;}
.y26_c00444{bottom:816.898500px;}
.y3_c00444{bottom:817.432500px;}
.y2_c00444{bottom:862.380000px;}
.y25_c00444{bottom:862.603500px;}
.y24_c00444{bottom:905.254500px;}
.y1_c00444{bottom:922.383000px;}
.h19_c00444{height:22.050000px;}
.hc_c00444{height:46.200000px;}
.h18_c00444{height:48.300000px;}
.ha_c00444{height:50.400000px;}
.h9_c00444{height:51.450000px;}
.h8_c00444{height:52.500000px;}
.hb_c00444{height:53.550000px;}
.hd_c00444{height:54.600000px;}
.h12_c00444{height:58.800000px;}
.h17_c00444{height:60.900000px;}
.hf_c00444{height:63.000000px;}
.h2_c00444{height:64.050000px;}
.h16_c00444{height:66.150000px;}
.h10_c00444{height:67.200000px;}
.h6_c00444{height:68.250000px;}
.h7_c00444{height:69.300000px;}
.h5_c00444{height:70.350000px;}
.he_c00444{height:71.400000px;}
.h15_c00444{height:86.100000px;}
.h14_c00444{height:87.150000px;}
.h3_c00444{height:88.200000px;}
.h11_c00444{height:89.250000px;}
.h4_c00444{height:95.550000px;}
.h13_c00444{height:222.600000px;}
.h1_c00444{height:1005.000000px;}
.h0_c00444{height:1005.150000px;}
.w0_c00444{width:715.200000px;}
.w1_c00444{width:715.500000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:40.230000px;}
.x35_c00444{left:90.720000px;}
.x20_c00444{left:93.960000px;}
.x30_c00444{left:95.580000px;}
.x1b_c00444{left:96.660000px;}
.x16_c00444{left:99.360000px;}
.x31_c00444{left:118.260000px;}
.x1c_c00444{left:126.900000px;}
.x36_c00444{left:129.060000px;}
.x6_c00444{left:130.410000px;}
.xc_c00444{left:132.300000px;}
.x11_c00444{left:133.380000px;}
.x17_c00444{left:135.270000px;}
.x2f_c00444{left:138.780000px;}
.x32_c00444{left:140.130000px;}
.x21_c00444{left:148.500000px;}
.x47_c00444{left:150.120000px;}
.x1d_c00444{left:154.440000px;}
.x12_c00444{left:157.140000px;}
.x7_c00444{left:158.490000px;}
.x37_c00444{left:162.540000px;}
.x5f_c00444{left:164.160000px;}
.x22_c00444{left:167.400000px;}
.x2_c00444{left:168.480000px;}
.x25_c00444{left:169.830000px;}
.xd_c00444{left:173.340000px;}
.x6d_c00444{left:177.660000px;}
.x4_c00444{left:180.090000px;}
.x13_c00444{left:182.250000px;}
.x26_c00444{left:193.590000px;}
.xe_c00444{left:195.210000px;}
.x38_c00444{left:196.830000px;}
.x1e_c00444{left:198.180000px;}
.x60_c00444{left:200.340000px;}
.x41_c00444{left:201.420000px;}
.x8_c00444{left:203.040000px;}
.xf_c00444{left:206.820000px;}
.x14_c00444{left:210.600000px;}
.x27_c00444{left:213.030000px;}
.x80_c00444{left:216.810000px;}
.x2d_c00444{left:219.780000px;}
.x18_c00444{left:221.400000px;}
.x9_c00444{left:223.830000px;}
.x42_c00444{left:227.610000px;}
.x23_c00444{left:231.120000px;}
.x2a_c00444{left:234.090000px;}
.x4a_c00444{left:235.170000px;}
.x3_c00444{left:236.520000px;}
.x7d_c00444{left:238.410000px;}
.x4e_c00444{left:240.300000px;}
.x2e_c00444{left:241.380000px;}
.x39_c00444{left:243.540000px;}
.x28_c00444{left:244.890000px;}
.x78_c00444{left:246.240000px;}
.x5_c00444{left:248.400000px;}
.x6e_c00444{left:249.480000px;}
.x15_c00444{left:251.910000px;}
.x48_c00444{left:255.420000px;}
.x73_c00444{left:258.120000px;}
.xa_c00444{left:259.200000px;}
.x3a_c00444{left:260.280000px;}
.x43_c00444{left:266.490000px;}
.x33_c00444{left:267.570000px;}
.x53_c00444{left:269.730000px;}
.x19_c00444{left:272.700000px;}
.x85_c00444{left:276.210000px;}
.x6b_c00444{left:278.100000px;}
.x68_c00444{left:279.720000px;}
.xb_c00444{left:282.150000px;}
.x3b_c00444{left:284.580000px;}
.x1a_c00444{left:286.470000px;}
.x2b_c00444{left:287.820000px;}
.x61_c00444{left:289.980000px;}
.x24_c00444{left:296.730000px;}
.x34_c00444{left:298.350000px;}
.x79_c00444{left:299.970000px;}
.x49_c00444{left:303.210000px;}
.x10_c00444{left:305.370000px;}
.x2c_c00444{left:306.990000px;}
.x54_c00444{left:308.340000px;}
.x81_c00444{left:309.690000px;}
.x29_c00444{left:315.360000px;}
.x1f_c00444{left:318.330000px;}
.x65_c00444{left:321.300000px;}
.x5a_c00444{left:323.460000px;}
.x4b_c00444{left:325.620000px;}
.x55_c00444{left:328.050000px;}
.x7e_c00444{left:330.210000px;}
.x3d_c00444{left:332.910000px;}
.x84_c00444{left:334.260000px;}
.x3c_c00444{left:336.420000px;}
.x89_c00444{left:339.930000px;}
.x59_c00444{left:341.010000px;}
.x7a_c00444{left:343.980000px;}
.x69_c00444{left:347.490000px;}
.x86_c00444{left:349.110000px;}
.x3e_c00444{left:350.730000px;}
.x62_c00444{left:353.160000px;}
.x44_c00444{left:354.240000px;}
.x74_c00444{left:355.590000px;}
.x66_c00444{left:365.040000px;}
.x5b_c00444{left:366.660000px;}
.x56_c00444{left:369.360000px;}
.x4f_c00444{left:375.300000px;}
.x45_c00444{left:378.000000px;}
.x63_c00444{left:382.860000px;}
.x87_c00444{left:385.290000px;}
.x4c_c00444{left:386.640000px;}
.x5c_c00444{left:387.720000px;}
.x67_c00444{left:390.960000px;}
.x3f_c00444{left:392.040000px;}
.x6a_c00444{left:393.390000px;}
.x8a_c00444{left:395.550000px;}
.x75_c00444{left:398.250000px;}
.x8d_c00444{left:399.870000px;}
.x46_c00444{left:409.050000px;}
.x7b_c00444{left:410.670000px;}
.x72_c00444{left:412.020000px;}
.x40_c00444{left:414.990000px;}
.x50_c00444{left:417.420000px;}
.x4d_c00444{left:420.120000px;}
.x57_c00444{left:426.870000px;}
.x8b_c00444{left:430.110000px;}
.x5d_c00444{left:432.810000px;}
.x93_c00444{left:438.210000px;}
.x76_c00444{left:442.530000px;}
.x51_c00444{left:444.960000px;}
.x7f_c00444{left:446.040000px;}
.x58_c00444{left:449.280000px;}
.x90_c00444{left:452.790000px;}
.x6f_c00444{left:455.490000px;}
.x94_c00444{left:457.920000px;}
.x64_c00444{left:460.080000px;}
.x88_c00444{left:463.590000px;}
.x82_c00444{left:466.290000px;}
.x77_c00444{left:467.640000px;}
.x52_c00444{left:477.630000px;}
.x95_c00444{left:480.870000px;}
.x70_c00444{left:482.760000px;}
.x6c_c00444{left:484.650000px;}
.x7c_c00444{left:490.860000px;}
.x5e_c00444{left:497.880000px;}
.x8e_c00444{left:501.660000px;}
.x83_c00444{left:503.550000px;}
.x91_c00444{left:507.870000px;}
.x71_c00444{left:518.940000px;}
.x8c_c00444{left:523.800000px;}
.x92_c00444{left:525.150000px;}
.x8f_c00444{left:544.320000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.fs17_c00444{font-size:19.600000pt;}
.fsa_c00444{font-size:41.066667pt;}
.fs16_c00444{font-size:42.933333pt;}
.fs8_c00444{font-size:44.800000pt;}
.fs7_c00444{font-size:45.733333pt;}
.fs6_c00444{font-size:46.666667pt;}
.fs9_c00444{font-size:47.600000pt;}
.fsb_c00444{font-size:48.533333pt;}
.fs10_c00444{font-size:52.266667pt;}
.fs15_c00444{font-size:54.133333pt;}
.fsd_c00444{font-size:56.000000pt;}
.fs0_c00444{font-size:56.933333pt;}
.fs14_c00444{font-size:58.800000pt;}
.fse_c00444{font-size:59.733333pt;}
.fs4_c00444{font-size:60.666667pt;}
.fs5_c00444{font-size:61.600000pt;}
.fs3_c00444{font-size:62.533333pt;}
.fsc_c00444{font-size:63.466667pt;}
.fs13_c00444{font-size:76.533333pt;}
.fs12_c00444{font-size:77.466667pt;}
.fs1_c00444{font-size:78.400000pt;}
.fsf_c00444{font-size:79.333333pt;}
.fs2_c00444{font-size:84.933333pt;}
.fs11_c00444{font-size:197.866667pt;}
.y0_c00444{bottom:0.000000pt;}
.y10_c00444{bottom:135.901333pt;}
.y2b_c00444{bottom:136.800000pt;}
.yf_c00444{bottom:152.077333pt;}
.y23_c00444{bottom:167.393333pt;}
.yd_c00444{bottom:167.889333pt;}
.ye_c00444{bottom:168.720000pt;}
.yc_c00444{bottom:183.393333pt;}
.yb_c00444{bottom:199.414667pt;}
.y2a_c00444{bottom:214.796000pt;}
.ya_c00444{bottom:215.620000pt;}
.y29_c00444{bottom:230.562667pt;}
.y9_c00444{bottom:231.257333pt;}
.y28_c00444{bottom:246.869333pt;}
.y8_c00444{bottom:247.062667pt;}
.y22_c00444{bottom:297.756000pt;}
.y21_c00444{bottom:318.290667pt;}
.y20_c00444{bottom:338.648000pt;}
.y1f_c00444{bottom:358.776000pt;}
.y1e_c00444{bottom:379.184000pt;}
.y7_c00444{bottom:379.598667pt;}
.y1d_c00444{bottom:419.194667pt;}
.y1c_c00444{bottom:439.180000pt;}
.y1b_c00444{bottom:459.830667pt;}
.y1a_c00444{bottom:480.404000pt;}
.y19_c00444{bottom:500.440000pt;}
.y18_c00444{bottom:520.714667pt;}
.y6_c00444{bottom:521.282667pt;}
.y17_c00444{bottom:541.205333pt;}
.y16_c00444{bottom:581.024000pt;}
.y5_c00444{bottom:581.173333pt;}
.y15_c00444{bottom:600.786667pt;}
.y14_c00444{bottom:620.960000pt;}
.y13_c00444{bottom:641.456000pt;}
.y27_c00444{bottom:661.820000pt;}
.y4_c00444{bottom:662.549333pt;}
.y12_c00444{bottom:682.954667pt;}
.y11_c00444{bottom:703.118667pt;}
.y26_c00444{bottom:726.132000pt;}
.y3_c00444{bottom:726.606667pt;}
.y2_c00444{bottom:766.560000pt;}
.y25_c00444{bottom:766.758667pt;}
.y24_c00444{bottom:804.670667pt;}
.y1_c00444{bottom:819.896000pt;}
.h19_c00444{height:19.600000pt;}
.hc_c00444{height:41.066667pt;}
.h18_c00444{height:42.933333pt;}
.ha_c00444{height:44.800000pt;}
.h9_c00444{height:45.733333pt;}
.h8_c00444{height:46.666667pt;}
.hb_c00444{height:47.600000pt;}
.hd_c00444{height:48.533333pt;}
.h12_c00444{height:52.266667pt;}
.h17_c00444{height:54.133333pt;}
.hf_c00444{height:56.000000pt;}
.h2_c00444{height:56.933333pt;}
.h16_c00444{height:58.800000pt;}
.h10_c00444{height:59.733333pt;}
.h6_c00444{height:60.666667pt;}
.h7_c00444{height:61.600000pt;}
.h5_c00444{height:62.533333pt;}
.he_c00444{height:63.466667pt;}
.h15_c00444{height:76.533333pt;}
.h14_c00444{height:77.466667pt;}
.h3_c00444{height:78.400000pt;}
.h11_c00444{height:79.333333pt;}
.h4_c00444{height:84.933333pt;}
.h13_c00444{height:197.866667pt;}
.h1_c00444{height:893.333333pt;}
.h0_c00444{height:893.466667pt;}
.w0_c00444{width:635.733333pt;}
.w1_c00444{width:636.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:35.760000pt;}
.x35_c00444{left:80.640000pt;}
.x20_c00444{left:83.520000pt;}
.x30_c00444{left:84.960000pt;}
.x1b_c00444{left:85.920000pt;}
.x16_c00444{left:88.320000pt;}
.x31_c00444{left:105.120000pt;}
.x1c_c00444{left:112.800000pt;}
.x36_c00444{left:114.720000pt;}
.x6_c00444{left:115.920000pt;}
.xc_c00444{left:117.600000pt;}
.x11_c00444{left:118.560000pt;}
.x17_c00444{left:120.240000pt;}
.x2f_c00444{left:123.360000pt;}
.x32_c00444{left:124.560000pt;}
.x21_c00444{left:132.000000pt;}
.x47_c00444{left:133.440000pt;}
.x1d_c00444{left:137.280000pt;}
.x12_c00444{left:139.680000pt;}
.x7_c00444{left:140.880000pt;}
.x37_c00444{left:144.480000pt;}
.x5f_c00444{left:145.920000pt;}
.x22_c00444{left:148.800000pt;}
.x2_c00444{left:149.760000pt;}
.x25_c00444{left:150.960000pt;}
.xd_c00444{left:154.080000pt;}
.x6d_c00444{left:157.920000pt;}
.x4_c00444{left:160.080000pt;}
.x13_c00444{left:162.000000pt;}
.x26_c00444{left:172.080000pt;}
.xe_c00444{left:173.520000pt;}
.x38_c00444{left:174.960000pt;}
.x1e_c00444{left:176.160000pt;}
.x60_c00444{left:178.080000pt;}
.x41_c00444{left:179.040000pt;}
.x8_c00444{left:180.480000pt;}
.xf_c00444{left:183.840000pt;}
.x14_c00444{left:187.200000pt;}
.x27_c00444{left:189.360000pt;}
.x80_c00444{left:192.720000pt;}
.x2d_c00444{left:195.360000pt;}
.x18_c00444{left:196.800000pt;}
.x9_c00444{left:198.960000pt;}
.x42_c00444{left:202.320000pt;}
.x23_c00444{left:205.440000pt;}
.x2a_c00444{left:208.080000pt;}
.x4a_c00444{left:209.040000pt;}
.x3_c00444{left:210.240000pt;}
.x7d_c00444{left:211.920000pt;}
.x4e_c00444{left:213.600000pt;}
.x2e_c00444{left:214.560000pt;}
.x39_c00444{left:216.480000pt;}
.x28_c00444{left:217.680000pt;}
.x78_c00444{left:218.880000pt;}
.x5_c00444{left:220.800000pt;}
.x6e_c00444{left:221.760000pt;}
.x15_c00444{left:223.920000pt;}
.x48_c00444{left:227.040000pt;}
.x73_c00444{left:229.440000pt;}
.xa_c00444{left:230.400000pt;}
.x3a_c00444{left:231.360000pt;}
.x43_c00444{left:236.880000pt;}
.x33_c00444{left:237.840000pt;}
.x53_c00444{left:239.760000pt;}
.x19_c00444{left:242.400000pt;}
.x85_c00444{left:245.520000pt;}
.x6b_c00444{left:247.200000pt;}
.x68_c00444{left:248.640000pt;}
.xb_c00444{left:250.800000pt;}
.x3b_c00444{left:252.960000pt;}
.x1a_c00444{left:254.640000pt;}
.x2b_c00444{left:255.840000pt;}
.x61_c00444{left:257.760000pt;}
.x24_c00444{left:263.760000pt;}
.x34_c00444{left:265.200000pt;}
.x79_c00444{left:266.640000pt;}
.x49_c00444{left:269.520000pt;}
.x10_c00444{left:271.440000pt;}
.x2c_c00444{left:272.880000pt;}
.x54_c00444{left:274.080000pt;}
.x81_c00444{left:275.280000pt;}
.x29_c00444{left:280.320000pt;}
.x1f_c00444{left:282.960000pt;}
.x65_c00444{left:285.600000pt;}
.x5a_c00444{left:287.520000pt;}
.x4b_c00444{left:289.440000pt;}
.x55_c00444{left:291.600000pt;}
.x7e_c00444{left:293.520000pt;}
.x3d_c00444{left:295.920000pt;}
.x84_c00444{left:297.120000pt;}
.x3c_c00444{left:299.040000pt;}
.x89_c00444{left:302.160000pt;}
.x59_c00444{left:303.120000pt;}
.x7a_c00444{left:305.760000pt;}
.x69_c00444{left:308.880000pt;}
.x86_c00444{left:310.320000pt;}
.x3e_c00444{left:311.760000pt;}
.x62_c00444{left:313.920000pt;}
.x44_c00444{left:314.880000pt;}
.x74_c00444{left:316.080000pt;}
.x66_c00444{left:324.480000pt;}
.x5b_c00444{left:325.920000pt;}
.x56_c00444{left:328.320000pt;}
.x4f_c00444{left:333.600000pt;}
.x45_c00444{left:336.000000pt;}
.x63_c00444{left:340.320000pt;}
.x87_c00444{left:342.480000pt;}
.x4c_c00444{left:343.680000pt;}
.x5c_c00444{left:344.640000pt;}
.x67_c00444{left:347.520000pt;}
.x3f_c00444{left:348.480000pt;}
.x6a_c00444{left:349.680000pt;}
.x8a_c00444{left:351.600000pt;}
.x75_c00444{left:354.000000pt;}
.x8d_c00444{left:355.440000pt;}
.x46_c00444{left:363.600000pt;}
.x7b_c00444{left:365.040000pt;}
.x72_c00444{left:366.240000pt;}
.x40_c00444{left:368.880000pt;}
.x50_c00444{left:371.040000pt;}
.x4d_c00444{left:373.440000pt;}
.x57_c00444{left:379.440000pt;}
.x8b_c00444{left:382.320000pt;}
.x5d_c00444{left:384.720000pt;}
.x93_c00444{left:389.520000pt;}
.x76_c00444{left:393.360000pt;}
.x51_c00444{left:395.520000pt;}
.x7f_c00444{left:396.480000pt;}
.x58_c00444{left:399.360000pt;}
.x90_c00444{left:402.480000pt;}
.x6f_c00444{left:404.880000pt;}
.x94_c00444{left:407.040000pt;}
.x64_c00444{left:408.960000pt;}
.x88_c00444{left:412.080000pt;}
.x82_c00444{left:414.480000pt;}
.x77_c00444{left:415.680000pt;}
.x52_c00444{left:424.560000pt;}
.x95_c00444{left:427.440000pt;}
.x70_c00444{left:429.120000pt;}
.x6c_c00444{left:430.800000pt;}
.x7c_c00444{left:436.320000pt;}
.x5e_c00444{left:442.560000pt;}
.x8e_c00444{left:445.920000pt;}
.x83_c00444{left:447.600000pt;}
.x91_c00444{left:451.440000pt;}
.x71_c00444{left:461.280000pt;}
.x8c_c00444{left:465.600000pt;}
.x92_c00444{left:466.800000pt;}
.x8f_c00444{left:483.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_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_ef4e99a7aa2876b3106553d3.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;}
.mf_c00445{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);}
.m8d_c00445{transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016285,0.000000,0.000000,0.250000,0,0);}
.me2_c00445{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);}
.m41_c00445{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);}
.mf5_c00445{transform:matrix(0.051685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051685,0.000000,0.000000,0.250000,0,0);}
.mcf_c00445{transform:matrix(0.065179,0.001173,-0.004499,0.249960,0,0);-ms-transform:matrix(0.065179,0.001173,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.065179,0.001173,-0.004499,0.249960,0,0);}
.mbc_c00445{transform:matrix(0.095301,0.001906,-0.004999,0.249950,0,0);-ms-transform:matrix(0.095301,0.001906,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.095301,0.001906,-0.004999,0.249950,0,0);}
.md_c00445{transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104630,0.000000,0.000000,0.250000,0,0);}
.m116_c00445{transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);}
.mb4_c00445{transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);-ms-transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.112892,0.002032,-0.004499,0.249960,0,0);}
.m2_c00445{transform:matrix(0.133070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133070,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00445{transform:matrix(0.143994,0.001296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143994,0.001296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143994,0.001296,-0.002250,0.249990,0,0);}
.mae_c00445{transform:matrix(0.144054,0.001296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144054,0.001296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144054,0.001296,-0.002250,0.249990,0,0);}
.m6d_c00445{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m96_c00445{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);}
.m43_c00445{transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150780,0.000000,0.000000,0.250000,0,0);}
.me3_c00445{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);}
.mc5_c00445{transform:matrix(0.154370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154370,0.000000,0.000000,0.250000,0,0);}
.m110_c00445{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);}
.m45_c00445{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);}
.m60_c00445{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);}
.m29_c00445{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.m52_c00445{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);}
.mb0_c00445{transform:matrix(0.161154,0.002901,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161154,0.002901,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161154,0.002901,-0.004499,0.249960,0,0);}
.m34_c00445{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.me0_c00445{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);}
.m106_c00445{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);}
.mc7_c00445{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);}
.mbf_c00445{transform:matrix(0.164012,0.003280,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164012,0.003280,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164012,0.003280,-0.004999,0.249950,0,0);}
.m8_c00445{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);}
.m72_c00445{transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);}
.m48_c00445{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);}
.m5_c00445{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);}
.mfd_c00445{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);}
.md8_c00445{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);}
.m26_c00445{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);}
.m92_c00445{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);}
.mcc_c00445{transform:matrix(0.168138,0.003026,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168138,0.003026,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168138,0.003026,-0.004499,0.249960,0,0);}
.mad_c00445{transform:matrix(0.168938,0.001520,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168938,0.001520,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168938,0.001520,-0.002250,0.249990,0,0);}
.m71_c00445{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);}
.m95_c00445{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);}
.m13_c00445{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);}
.m85_c00445{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);}
.m9b_c00445{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);}
.m6f_c00445{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);}
.m5a_c00445{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);}
.m3c_c00445{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);}
.m19_c00445{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);}
.m25_c00445{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);}
.m62_c00445{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);}
.m7d_c00445{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_c00445{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);}
.m98_c00445{transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{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);}
.m89_c00445{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);}
.m14_c00445{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);}
.m17_c00445{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);}
.m47_c00445{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);}
.m107_c00445{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);}
.m4_c00445{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);}
.m9e_c00445{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);}
.m93_c00445{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);}
.me1_c00445{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);}
.mdc_c00445{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);}
.m31_c00445{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);}
.m56_c00445{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);}
.mfe_c00445{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{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);}
.m7f_c00445{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);}
.m9a_c00445{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);}
.m1e_c00445{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);}
.mab_c00445{transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);}
.m11_c00445{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);}
.m6e_c00445{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);}
.m4a_c00445{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);}
.md7_c00445{transform:matrix(0.190724,0.003433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190724,0.003433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190724,0.003433,-0.004499,0.249960,0,0);}
.m82_c00445{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.m10c_c00445{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);}
.m94_c00445{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);}
.mf8_c00445{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);}
.m81_c00445{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);}
.m88_c00445{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);}
.m103_c00445{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);}
.m8f_c00445{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);}
.maa_c00445{transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192587,0.001733,-0.002250,0.249990,0,0);}
.m80_c00445{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);}
.mc0_c00445{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);}
.m1_c00445{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);}
.m119_c00445{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);}
.mc_c00445{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);}
.mdf_c00445{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);}
.m8c_c00445{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);}
.m3a_c00445{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);}
.m90_c00445{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);}
.mc2_c00445{transform:matrix(0.195031,0.003901,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195031,0.003901,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195031,0.003901,-0.004999,0.249950,0,0);}
.me9_c00445{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);}
.m9d_c00445{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);}
.m1d_c00445{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);}
.mff_c00445{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);}
.m9_c00445{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);}
.m3e_c00445{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);}
.m10_c00445{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);}
.mc4_c00445{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);}
.md6_c00445{transform:matrix(0.199538,0.003592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199538,0.003592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199538,0.003592,-0.004499,0.249960,0,0);}
.m10e_c00445{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);}
.m91_c00445{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);}
.m10b_c00445{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);}
.m22_c00445{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);}
.m42_c00445{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);}
.mda_c00445{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);}
.m4b_c00445{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);}
.m49_c00445{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);}
.m44_c00445{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);}
.m4f_c00445{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);}
.m1b_c00445{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);}
.m67_c00445{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);}
.m86_c00445{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);}
.m5d_c00445{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);}
.mc6_c00445{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);}
.m11c_c00445{transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);}
.mdd_c00445{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);}
.m87_c00445{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);}
.mde_c00445{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);}
.m1a_c00445{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);}
.m104_c00445{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);}
.m117_c00445{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);}
.m68_c00445{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);}
.m105_c00445{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);}
.ma7_c00445{transform:matrix(0.208162,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208162,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208162,0.001873,-0.002250,0.249990,0,0);}
.m8e_c00445{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);}
.m10a_c00445{transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{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);}
.m3d_c00445{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);}
.m66_c00445{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);}
.me6_c00445{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);}
.mb_c00445{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);}
.m59_c00445{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);}
.mbd_c00445{transform:matrix(0.211098,0.004222,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211098,0.004222,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211098,0.004222,-0.004999,0.249950,0,0);}
.m75_c00445{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);}
.m8b_c00445{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);}
.mba_c00445{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);}
.mfc_c00445{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);}
.md4_c00445{transform:matrix(0.212486,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212486,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212486,0.003825,-0.004499,0.249960,0,0);}
.m10d_c00445{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);}
.m36_c00445{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);}
.me_c00445{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);}
.m15_c00445{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);}
.m73_c00445{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);}
.m64_c00445{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);}
.m112_c00445{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);}
.m6a_c00445{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);}
.m18_c00445{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);}
.m4c_c00445{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);}
.mc1_c00445{transform:matrix(0.216187,0.004324,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216187,0.004324,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216187,0.004324,-0.004999,0.249950,0,0);}
.m108_c00445{transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216445,0.000000,0.000000,0.250000,0,0);}
.m11a_c00445{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);}
.m63_c00445{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);}
.m102_c00445{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);}
.m51_c00445{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);}
.m99_c00445{transform:matrix(0.218690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218690,0.000000,0.000000,0.250000,0,0);}
.mb8_c00445{transform:matrix(0.218850,0.003939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218850,0.003939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218850,0.003939,-0.004499,0.249960,0,0);}
.mc8_c00445{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);}
.mf7_c00445{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);}
.md5_c00445{transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);}
.m76_c00445{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);}
.m7e_c00445{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m27_c00445{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);}
.m50_c00445{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);}
.mb9_c00445{transform:matrix(0.221634,0.003989,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221634,0.003989,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221634,0.003989,-0.004499,0.249960,0,0);}
.m5c_c00445{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);}
.m9c_c00445{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);}
.mac_c00445{transform:matrix(0.222401,0.002002,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222401,0.002002,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222401,0.002002,-0.002250,0.249990,0,0);}
.m5f_c00445{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.mf9_c00445{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m46_c00445{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);}
.meb_c00445{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);}
.m54_c00445{transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);}
.m57_c00445{transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);}
.m84_c00445{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);}
.md3_c00445{transform:matrix(0.226538,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226538,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226538,0.004078,-0.004499,0.249960,0,0);}
.m115_c00445{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);}
.m8a_c00445{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m118_c00445{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);}
.m6c_c00445{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);}
.ma0_c00445{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);}
.m39_c00445{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);}
.mfb_c00445{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);}
.m55_c00445{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);}
.md1_c00445{transform:matrix(0.233667,0.004206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233667,0.004206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233667,0.004206,-0.004499,0.249960,0,0);}
.m58_c00445{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);}
.mee_c00445{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);}
.m77_c00445{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);}
.m109_c00445{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);}
.m61_c00445{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);}
.mb5_c00445{transform:matrix(0.235782,0.004244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235782,0.004244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235782,0.004244,-0.004499,0.249960,0,0);}
.m4e_c00445{transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);}
.md2_c00445{transform:matrix(0.236547,0.004258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236547,0.004258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236547,0.004258,-0.004499,0.249960,0,0);}
.m7c_c00445{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);}
.m6b_c00445{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);}
.md0_c00445{transform:matrix(0.238311,0.004290,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238311,0.004290,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238311,0.004290,-0.004499,0.249960,0,0);}
.m100_c00445{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);}
.m111_c00445{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{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);}
.mb2_c00445{transform:matrix(0.240961,0.004337,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240961,0.004337,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240961,0.004337,-0.004499,0.249960,0,0);}
.m28_c00445{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);}
.m79_c00445{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{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);}
.me5_c00445{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m7b_c00445{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);}
.mca_c00445{transform:matrix(0.243576,0.004384,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243576,0.004384,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243576,0.004384,-0.004499,0.249960,0,0);}
.m1f_c00445{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);}
.m3f_c00445{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);}
.mea_c00445{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);}
.md9_c00445{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);}
.mce_c00445{transform:matrix(0.250034,0.004501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250034,0.004501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250034,0.004501,-0.004499,0.249960,0,0);}
.m65_c00445{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);}
.mcb_c00445{transform:matrix(0.254199,0.004576,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254199,0.004576,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254199,0.004576,-0.004499,0.249960,0,0);}
.mf6_c00445{transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255360,0.000000,0.000000,0.250000,0,0);}
.m5e_c00445{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00445{transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);}
.mdb_c00445{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);}
.m74_c00445{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.mfa_c00445{transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);}
.m69_c00445{transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260180,0.000000,0.000000,0.250000,0,0);}
.m70_c00445{transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261140,0.000000,0.000000,0.250000,0,0);}
.m97_c00445{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);}
.m2f_c00445{transform:matrix(0.261315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261315,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.mc3_c00445{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);}
.me8_c00445{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);}
.m10f_c00445{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);}
.m53_c00445{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);}
.mf1_c00445{transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00445{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);}
.m38_c00445{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);}
.m21_c00445{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.mb3_c00445{transform:matrix(0.275290,0.004955,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275290,0.004955,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275290,0.004955,-0.004499,0.249960,0,0);}
.m33_c00445{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);}
.m113_c00445{transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276005,0.000000,0.000000,0.250000,0,0);}
.mf3_c00445{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);}
.m35_c00445{transform:matrix(0.278940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278940,0.000000,0.000000,0.250000,0,0);}
.ma5_c00445{transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);}
.m7a_c00445{transform:matrix(0.287245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287245,0.000000,0.000000,0.250000,0,0);}
.m101_c00445{transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);}
.m114_c00445{transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00445{transform:matrix(0.290570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290570,0.000000,0.000000,0.250000,0,0);}
.mf0_c00445{transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290760,0.000000,0.000000,0.250000,0,0);}
.m32_c00445{transform:matrix(0.298160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00445{transform:matrix(0.299217,0.005386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.299217,0.005386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.299217,0.005386,-0.004499,0.249960,0,0);}
.mb7_c00445{transform:matrix(0.303241,0.005458,-0.004499,0.249960,0,0);-ms-transform:matrix(0.303241,0.005458,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.303241,0.005458,-0.004499,0.249960,0,0);}
.m78_c00445{transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306670,0.000000,0.000000,0.250000,0,0);}
.me7_c00445{transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308280,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{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);}
.mf4_c00445{transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);}
.mf2_c00445{transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00445{transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);}
.ma1_c00445{transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327005,0.000000,0.000000,0.250000,0,0);}
.mbe_c00445{transform:matrix(0.336528,0.006731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.336528,0.006731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.336528,0.006731,-0.004999,0.249950,0,0);}
.m2d_c00445{transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340710,0.000000,0.000000,0.250000,0,0);}
.m83_c00445{transform:matrix(0.345695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345695,0.000000,0.000000,0.250000,0,0);}
.ma2_c00445{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);}
.m23_c00445{transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380505,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.384690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00445{transform:matrix(0.384979,0.003465,-0.002250,0.249990,0,0);-ms-transform:matrix(0.384979,0.003465,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.384979,0.003465,-0.002250,0.249990,0,0);}
.mbb_c00445{transform:matrix(0.411393,0.007405,-0.004499,0.249960,0,0);-ms-transform:matrix(0.411393,0.007405,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.411393,0.007405,-0.004499,0.249960,0,0);}
.mc9_c00445{transform:matrix(0.412700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412700,0.000000,0.000000,0.250000,0,0);}
.m11b_c00445{transform:matrix(0.415325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415325,0.000000,0.000000,0.250000,0,0);}
.mec_c00445{transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424385,0.000000,0.000000,0.250000,0,0);}
.m2c_c00445{transform:matrix(0.457875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457875,0.000000,0.000000,0.250000,0,0);}
.mb1_c00445{transform:matrix(0.460785,0.008294,-0.004499,0.249960,0,0);-ms-transform:matrix(0.460785,0.008294,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.460785,0.008294,-0.004499,0.249960,0,0);}
.m2a_c00445{transform:matrix(0.475825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475825,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.484370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484370,0.000000,0.000000,0.250000,0,0);}
.ma6_c00445{transform:matrix(0.489130,0.004402,-0.002250,0.249990,0,0);-ms-transform:matrix(0.489130,0.004402,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.489130,0.004402,-0.002250,0.249990,0,0);}
.m37_c00445{transform:matrix(0.504840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504840,0.000000,0.000000,0.250000,0,0);}
.mef_c00445{transform:matrix(0.529995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529995,0.000000,0.000000,0.250000,0,0);}
.me4_c00445{transform:matrix(0.532600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532600,0.000000,0.000000,0.250000,0,0);}
.maf_c00445{transform:matrix(0.586145,0.010551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.586145,0.010551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.586145,0.010551,-0.004499,0.249960,0,0);}
.med_c00445{transform:matrix(0.589080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589080,0.000000,0.000000,0.250000,0,0);}
.mb6_c00445{transform:matrix(0.870724,0.015673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.870724,0.015673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.870724,0.015673,-0.004499,0.249960,0,0);}
.m24_c00445{transform:matrix(1.173445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.173445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.173445,0.000000,0.000000,0.250000,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;}
.fs14_c00445{font-size:48.300000px;}
.fse_c00445{font-size:48.307824px;}
.fsd_c00445{font-size:49.350000px;}
.fs15_c00445{font-size:50.400000px;}
.fsb_c00445{font-size:50.408164px;}
.fs11_c00445{font-size:51.450000px;}
.fsf_c00445{font-size:51.458334px;}
.fs10_c00445{font-size:52.500000px;}
.fsa_c00445{font-size:52.508504px;}
.fs13_c00445{font-size:53.550000px;}
.fsc_c00445{font-size:55.661129px;}
.fs1_c00445{font-size:63.000000px;}
.fs7_c00445{font-size:65.100000px;}
.fs6_c00445{font-size:66.150000px;}
.fs3_c00445{font-size:69.300000px;}
.fs8_c00445{font-size:70.350000px;}
.fs5_c00445{font-size:71.400000px;}
.fs4_c00445{font-size:72.450000px;}
.fs0_c00445{font-size:73.500000px;}
.fs2_c00445{font-size:74.550000px;}
.fs9_c00445{font-size:74.553019px;}
.fs12_c00445{font-size:76.650000px;}
.y0_c00445{bottom:0.000000px;}
.y54_c00445{bottom:153.351000px;}
.y4b_c00445{bottom:156.615000px;}
.y53_c00445{bottom:171.292500px;}
.y4a_c00445{bottom:173.223000px;}
.y52_c00445{bottom:188.731500px;}
.y49_c00445{bottom:189.579813px;}
.y48_c00445{bottom:189.886419px;}
.y47_c00445{bottom:190.929954px;}
.y46_c00445{bottom:191.152992px;}
.y45_c00445{bottom:191.765487px;}
.y44_c00445{bottom:192.010860px;}
.y43_c00445{bottom:192.469311px;}
.y51_c00445{bottom:206.866500px;}
.y42_c00445{bottom:207.210261px;}
.y41_c00445{bottom:207.370452px;}
.y40_c00445{bottom:207.679791px;}
.y3f_c00445{bottom:208.162416px;}
.y3e_c00445{bottom:208.801992px;}
.y3d_c00445{bottom:209.299656px;}
.y3c_c00445{bottom:210.873000px;}
.y50_c00445{bottom:224.401500px;}
.y3b_c00445{bottom:226.831500px;}
.y3a_c00445{bottom:243.158880px;}
.y4f_c00445{bottom:243.307500px;}
.y39_c00445{bottom:243.830520px;}
.y38_c00445{bottom:244.459590px;}
.y37_c00445{bottom:244.825860px;}
.y36_c00445{bottom:244.999920px;}
.y35_c00445{bottom:245.706000px;}
.y34_c00445{bottom:245.818500px;}
.y4e_c00445{bottom:260.125500px;}
.y33_c00445{bottom:260.817036px;}
.y32_c00445{bottom:262.081242px;}
.y31_c00445{bottom:262.594620px;}
.y30_c00445{bottom:263.250714px;}
.y2f_c00445{bottom:277.548024px;}
.y4d_c00445{bottom:277.932000px;}
.y2e_c00445{bottom:278.660775px;}
.y2d_c00445{bottom:279.006402px;}
.y2c_c00445{bottom:279.149556px;}
.y2b_c00445{bottom:279.645843px;}
.y2a_c00445{bottom:279.979644px;}
.y29_c00445{bottom:280.521291px;}
.y28_c00445{bottom:280.755894px;}
.y27_c00445{bottom:281.109000px;}
.y4c_c00445{bottom:330.061500px;}
.y26_c00445{bottom:353.429286px;}
.y25_c00445{bottom:354.063638px;}
.y24_c00445{bottom:354.262709px;}
.y23_c00445{bottom:354.554565px;}
.y22_c00445{bottom:354.882534px;}
.y21_c00445{bottom:355.222586px;}
.y20_c00445{bottom:355.428838px;}
.y1f_c00445{bottom:355.793744px;}
.y1e_c00445{bottom:355.986389px;}
.y1d_c00445{bottom:356.131500px;}
.y1c_c00445{bottom:377.064000px;}
.y1b_c00445{bottom:400.417500px;}
.y1a_c00445{bottom:422.368500px;}
.y19_c00445{bottom:422.746500px;}
.y18_c00445{bottom:423.142500px;}
.y17_c00445{bottom:423.538500px;}
.y16_c00445{bottom:424.071000px;}
.y15_c00445{bottom:424.446000px;}
.y14_c00445{bottom:424.642500px;}
.y13_c00445{bottom:425.274000px;}
.y12_c00445{bottom:425.520000px;}
.y11_c00445{bottom:446.755500px;}
.y10_c00445{bottom:469.138500px;}
.yf_c00445{bottom:491.445000px;}
.ye_c00445{bottom:514.641000px;}
.yd_c00445{bottom:537.771000px;}
.yc_c00445{bottom:559.938000px;}
.yb_c00445{bottom:583.806000px;}
.ya_c00445{bottom:606.186000px;}
.y9_c00445{bottom:629.187000px;}
.y8_c00445{bottom:651.325500px;}
.y7_c00445{bottom:672.636000px;}
.y6_c00445{bottom:701.538000px;}
.y5_c00445{bottom:724.372500px;}
.y4_c00445{bottom:746.808000px;}
.y3_c00445{bottom:769.956000px;}
.y2_c00445{bottom:793.302000px;}
.y1_c00445{bottom:819.321000px;}
.h16_c00445{height:48.300000px;}
.h10_c00445{height:48.307824px;}
.hf_c00445{height:49.350000px;}
.h17_c00445{height:50.400000px;}
.hd_c00445{height:50.408164px;}
.h13_c00445{height:51.450000px;}
.h11_c00445{height:51.458334px;}
.h12_c00445{height:52.500000px;}
.hc_c00445{height:52.508504px;}
.h15_c00445{height:53.550000px;}
.he_c00445{height:55.661129px;}
.h3_c00445{height:63.000000px;}
.h9_c00445{height:65.100000px;}
.h8_c00445{height:66.150000px;}
.h5_c00445{height:69.300000px;}
.ha_c00445{height:70.350000px;}
.h7_c00445{height:71.400000px;}
.h6_c00445{height:72.450000px;}
.h2_c00445{height:73.500000px;}
.h4_c00445{height:74.550000px;}
.hb_c00445{height:74.553019px;}
.h14_c00445{height:76.650000px;}
.h0_c00445{height:1008.450000px;}
.h1_c00445{height:1008.750000px;}
.w1_c00445{width:689.250000px;}
.w0_c00445{width:689.550000px;}
.x0_c00445{left:0.000000px;}
.x7e_c00445{left:141.574500px;}
.x82_c00445{left:144.254709px;}
.x76_c00445{left:145.853109px;}
.x84_c00445{left:146.880000px;}
.x77_c00445{left:153.486000px;}
.x71_c00445{left:156.801000px;}
.x78_c00445{left:159.111000px;}
.x85_c00445{left:166.320000px;}
.x6a_c00445{left:170.251500px;}
.x72_c00445{left:176.418000px;}
.x1e_c00445{left:178.470000px;}
.x8_c00445{left:180.630000px;}
.x2_c00445{left:181.710000px;}
.x6b_c00445{left:186.375000px;}
.x73_c00445{left:189.451500px;}
.x86_c00445{left:190.890000px;}
.x79_c00445{left:194.415000px;}
.x58_c00445{left:197.640000px;}
.x59_c00445{left:202.230000px;}
.x52_c00445{left:203.850000px;}
.x17_c00445{left:205.470000px;}
.x38_c00445{left:207.630000px;}
.x4d_c00445{left:210.600000px;}
.x9_c00445{left:211.950000px;}
.x40_c00445{left:219.240000px;}
.x7a_c00445{left:221.431500px;}
.x48_c00445{left:223.290000px;}
.x7f_c00445{left:228.982500px;}
.x10_c00445{left:230.580000px;}
.x4e_c00445{left:234.360000px;}
.x7c_c00445{left:236.520000px;}
.x1f_c00445{left:238.950000px;}
.xa_c00445{left:240.030000px;}
.x39_c00445{left:242.190000px;}
.x41_c00445{left:243.270000px;}
.x3_c00445{left:245.430000px;}
.x6c_c00445{left:248.325000px;}
.x5a_c00445{left:250.830000px;}
.x7b_c00445{left:252.885000px;}
.x5c_c00445{left:254.340000px;}
.x80_c00445{left:256.630500px;}
.x53_c00445{left:261.090000px;}
.x66_c00445{left:264.060000px;}
.x20_c00445{left:265.410000px;}
.x11_c00445{left:268.110000px;}
.x33_c00445{left:270.810000px;}
.x74_c00445{left:273.612000px;}
.x18_c00445{left:274.860000px;}
.x3a_c00445{left:276.210000px;}
.x7d_c00445{left:282.690000px;}
.x4_c00445{left:283.770000px;}
.x60_c00445{left:287.280000px;}
.x21_c00445{left:289.170000px;}
.x75_c00445{left:292.813500px;}
.x12_c00445{left:296.730000px;}
.x2b_c00445{left:300.510000px;}
.x34_c00445{left:302.130000px;}
.x1_c00445{left:304.020000px;}
.x54_c00445{left:307.800000px;}
.x6d_c00445{left:309.025500px;}
.xb_c00445{left:311.580000px;}
.x19_c00445{left:316.710000px;}
.x27_c00445{left:318.870000px;}
.x5_c00445{left:321.300000px;}
.x2c_c00445{left:324.540000px;}
.x64_c00445{left:326.041500px;}
.x83_c00445{left:328.761993px;}
.x87_c00445{left:331.020000px;}
.x81_c00445{left:336.160500px;}
.x6e_c00445{left:345.466500px;}
.x5d_c00445{left:348.300000px;}
.x13_c00445{left:349.650000px;}
.x3b_c00445{left:355.320000px;}
.x2d_c00445{left:356.400000px;}
.x55_c00445{left:357.480000px;}
.x49_c00445{left:359.910000px;}
.x42_c00445{left:361.800000px;}
.x14_c00445{left:364.770000px;}
.x68_c00445{left:367.470000px;}
.x6_c00445{left:371.790000px;}
.x61_c00445{left:372.870000px;}
.x5b_c00445{left:376.110000px;}
.x5e_c00445{left:378.540000px;}
.x3c_c00445{left:379.620000px;}
.x22_c00445{left:380.700000px;}
.x56_c00445{left:383.940000px;}
.x43_c00445{left:386.370000px;}
.x8c_c00445{left:389.610000px;}
.x1a_c00445{left:390.960000px;}
.x7_c00445{left:392.310000px;}
.x2e_c00445{left:393.390000px;}
.xc_c00445{left:398.250000px;}
.x6f_c00445{left:400.014000px;}
.x28_c00445{left:402.030000px;}
.x44_c00445{left:404.190000px;}
.x4f_c00445{left:406.620000px;}
.x57_c00445{left:408.780000px;}
.x69_c00445{left:411.750000px;}
.x2f_c00445{left:413.640000px;}
.x65_c00445{left:418.915500px;}
.x96_c00445{left:420.660000px;}
.x8d_c00445{left:422.550000px;}
.x9c_c00445{left:424.980000px;}
.x3d_c00445{left:426.870000px;}
.x29_c00445{left:428.760000px;}
.x98_c00445{left:430.110000px;}
.x23_c00445{left:432.000000px;}
.x35_c00445{left:433.080000px;}
.x45_c00445{left:441.720000px;}
.x15_c00445{left:444.150000px;}
.x89_c00445{left:446.850000px;}
.x4a_c00445{left:448.470000px;}
.x62_c00445{left:451.170000px;}
.x30_c00445{left:453.060000px;}
.x8e_c00445{left:454.410000px;}
.xd_c00445{left:456.570000px;}
.x24_c00445{left:457.920000px;}
.x99_c00445{left:459.270000px;}
.x1b_c00445{left:461.160000px;}
.x50_c00445{left:463.050000px;}
.xa0_c00445{left:464.670000px;}
.xe_c00445{left:467.910000px;}
.x70_c00445{left:470.497500px;}
.x3e_c00445{left:477.090000px;}
.x16_c00445{left:478.440000px;}
.x36_c00445{left:482.490000px;}
.x5f_c00445{left:483.570000px;}
.x46_c00445{left:485.190000px;}
.x31_c00445{left:487.350000px;}
.x67_c00445{left:491.130000px;}
.x25_c00445{left:495.990000px;}
.x1c_c00445{left:497.070000px;}
.x9d_c00445{left:500.310000px;}
.x4b_c00445{left:503.280000px;}
.x47_c00445{left:504.900000px;}
.x93_c00445{left:510.840000px;}
.x51_c00445{left:517.320000px;}
.x3f_c00445{left:525.690000px;}
.x2a_c00445{left:526.770000px;}
.x26_c00445{left:528.660000px;}
.xa1_c00445{left:531.090000px;}
.x9a_c00445{left:534.600000px;}
.x32_c00445{left:536.220000px;}
.x8f_c00445{left:538.380000px;}
.x63_c00445{left:541.890000px;}
.x37_c00445{left:545.400000px;}
.x4c_c00445{left:548.100000px;}
.x9e_c00445{left:550.260000px;}
.x94_c00445{left:552.150000px;}
.xf_c00445{left:553.500000px;}
.x90_c00445{left:557.010000px;}
.x88_c00445{left:562.410000px;}
.x1d_c00445{left:564.300000px;}
.x8a_c00445{left:566.190000px;}
.x91_c00445{left:573.480000px;}
.xa2_c00445{left:575.370000px;}
.xa3_c00445{left:576.990000px;}
.x97_c00445{left:581.310000px;}
.x95_c00445{left:586.980000px;}
.x9b_c00445{left:588.870000px;}
.x9f_c00445{left:592.650000px;}
.x92_c00445{left:596.160000px;}
.x8b_c00445{left:606.420000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.fs14_c00445{font-size:42.933333pt;}
.fse_c00445{font-size:42.940288pt;}
.fsd_c00445{font-size:43.866667pt;}
.fs15_c00445{font-size:44.800000pt;}
.fsb_c00445{font-size:44.807257pt;}
.fs11_c00445{font-size:45.733333pt;}
.fsf_c00445{font-size:45.740742pt;}
.fs10_c00445{font-size:46.666667pt;}
.fsa_c00445{font-size:46.674226pt;}
.fs13_c00445{font-size:47.600000pt;}
.fsc_c00445{font-size:49.476559pt;}
.fs1_c00445{font-size:56.000000pt;}
.fs7_c00445{font-size:57.866667pt;}
.fs6_c00445{font-size:58.800000pt;}
.fs3_c00445{font-size:61.600000pt;}
.fs8_c00445{font-size:62.533333pt;}
.fs5_c00445{font-size:63.466667pt;}
.fs4_c00445{font-size:64.400000pt;}
.fs0_c00445{font-size:65.333333pt;}
.fs2_c00445{font-size:66.266667pt;}
.fs9_c00445{font-size:66.269350pt;}
.fs12_c00445{font-size:68.133333pt;}
.y0_c00445{bottom:0.000000pt;}
.y54_c00445{bottom:136.312000pt;}
.y4b_c00445{bottom:139.213333pt;}
.y53_c00445{bottom:152.260000pt;}
.y4a_c00445{bottom:153.976000pt;}
.y52_c00445{bottom:167.761333pt;}
.y49_c00445{bottom:168.515389pt;}
.y48_c00445{bottom:168.787928pt;}
.y47_c00445{bottom:169.715515pt;}
.y46_c00445{bottom:169.913771pt;}
.y45_c00445{bottom:170.458211pt;}
.y44_c00445{bottom:170.676320pt;}
.y43_c00445{bottom:171.083832pt;}
.y51_c00445{bottom:183.881333pt;}
.y42_c00445{bottom:184.186899pt;}
.y41_c00445{bottom:184.329291pt;}
.y40_c00445{bottom:184.604259pt;}
.y3f_c00445{bottom:185.033259pt;}
.y3e_c00445{bottom:185.601771pt;}
.y3d_c00445{bottom:186.044139pt;}
.y3c_c00445{bottom:187.442667pt;}
.y50_c00445{bottom:199.468000pt;}
.y3b_c00445{bottom:201.628000pt;}
.y3a_c00445{bottom:216.141227pt;}
.y4f_c00445{bottom:216.273333pt;}
.y39_c00445{bottom:216.738240pt;}
.y38_c00445{bottom:217.297413pt;}
.y37_c00445{bottom:217.622987pt;}
.y36_c00445{bottom:217.777707pt;}
.y35_c00445{bottom:218.405333pt;}
.y34_c00445{bottom:218.505333pt;}
.y4e_c00445{bottom:231.222667pt;}
.y33_c00445{bottom:231.837365pt;}
.y32_c00445{bottom:232.961104pt;}
.y31_c00445{bottom:233.417440pt;}
.y30_c00445{bottom:234.000635pt;}
.y2f_c00445{bottom:246.709355pt;}
.y4d_c00445{bottom:247.050667pt;}
.y2e_c00445{bottom:247.698467pt;}
.y2d_c00445{bottom:248.005691pt;}
.y2c_c00445{bottom:248.132939pt;}
.y2b_c00445{bottom:248.574083pt;}
.y2a_c00445{bottom:248.870795pt;}
.y29_c00445{bottom:249.352259pt;}
.y28_c00445{bottom:249.560795pt;}
.y27_c00445{bottom:249.874667pt;}
.y4c_c00445{bottom:293.388000pt;}
.y26_c00445{bottom:314.159365pt;}
.y25_c00445{bottom:314.723233pt;}
.y24_c00445{bottom:314.900185pt;}
.y23_c00445{bottom:315.159613pt;}
.y22_c00445{bottom:315.451141pt;}
.y21_c00445{bottom:315.753409pt;}
.y20_c00445{bottom:315.936745pt;}
.y1f_c00445{bottom:316.261105pt;}
.y1e_c00445{bottom:316.432345pt;}
.y1d_c00445{bottom:316.561333pt;}
.y1c_c00445{bottom:335.168000pt;}
.y1b_c00445{bottom:355.926667pt;}
.y1a_c00445{bottom:375.438667pt;}
.y19_c00445{bottom:375.774667pt;}
.y18_c00445{bottom:376.126667pt;}
.y17_c00445{bottom:376.478667pt;}
.y16_c00445{bottom:376.952000pt;}
.y15_c00445{bottom:377.285333pt;}
.y14_c00445{bottom:377.460000pt;}
.y13_c00445{bottom:378.021333pt;}
.y12_c00445{bottom:378.240000pt;}
.y11_c00445{bottom:397.116000pt;}
.y10_c00445{bottom:417.012000pt;}
.yf_c00445{bottom:436.840000pt;}
.ye_c00445{bottom:457.458667pt;}
.yd_c00445{bottom:478.018667pt;}
.yc_c00445{bottom:497.722667pt;}
.yb_c00445{bottom:518.938667pt;}
.ya_c00445{bottom:538.832000pt;}
.y9_c00445{bottom:559.277333pt;}
.y8_c00445{bottom:578.956000pt;}
.y7_c00445{bottom:597.898667pt;}
.y6_c00445{bottom:623.589333pt;}
.y5_c00445{bottom:643.886667pt;}
.y4_c00445{bottom:663.829333pt;}
.y3_c00445{bottom:684.405333pt;}
.y2_c00445{bottom:705.157333pt;}
.y1_c00445{bottom:728.285333pt;}
.h16_c00445{height:42.933333pt;}
.h10_c00445{height:42.940288pt;}
.hf_c00445{height:43.866667pt;}
.h17_c00445{height:44.800000pt;}
.hd_c00445{height:44.807257pt;}
.h13_c00445{height:45.733333pt;}
.h11_c00445{height:45.740742pt;}
.h12_c00445{height:46.666667pt;}
.hc_c00445{height:46.674226pt;}
.h15_c00445{height:47.600000pt;}
.he_c00445{height:49.476559pt;}
.h3_c00445{height:56.000000pt;}
.h9_c00445{height:57.866667pt;}
.h8_c00445{height:58.800000pt;}
.h5_c00445{height:61.600000pt;}
.ha_c00445{height:62.533333pt;}
.h7_c00445{height:63.466667pt;}
.h6_c00445{height:64.400000pt;}
.h2_c00445{height:65.333333pt;}
.h4_c00445{height:66.266667pt;}
.hb_c00445{height:66.269350pt;}
.h14_c00445{height:68.133333pt;}
.h0_c00445{height:896.400000pt;}
.h1_c00445{height:896.666667pt;}
.w1_c00445{width:612.666667pt;}
.w0_c00445{width:612.933333pt;}
.x0_c00445{left:0.000000pt;}
.x7e_c00445{left:125.844000pt;}
.x82_c00445{left:128.226408pt;}
.x76_c00445{left:129.647208pt;}
.x84_c00445{left:130.560000pt;}
.x77_c00445{left:136.432000pt;}
.x71_c00445{left:139.378667pt;}
.x78_c00445{left:141.432000pt;}
.x85_c00445{left:147.840000pt;}
.x6a_c00445{left:151.334667pt;}
.x72_c00445{left:156.816000pt;}
.x1e_c00445{left:158.640000pt;}
.x8_c00445{left:160.560000pt;}
.x2_c00445{left:161.520000pt;}
.x6b_c00445{left:165.666667pt;}
.x73_c00445{left:168.401333pt;}
.x86_c00445{left:169.680000pt;}
.x79_c00445{left:172.813333pt;}
.x58_c00445{left:175.680000pt;}
.x59_c00445{left:179.760000pt;}
.x52_c00445{left:181.200000pt;}
.x17_c00445{left:182.640000pt;}
.x38_c00445{left:184.560000pt;}
.x4d_c00445{left:187.200000pt;}
.x9_c00445{left:188.400000pt;}
.x40_c00445{left:194.880000pt;}
.x7a_c00445{left:196.828000pt;}
.x48_c00445{left:198.480000pt;}
.x7f_c00445{left:203.540000pt;}
.x10_c00445{left:204.960000pt;}
.x4e_c00445{left:208.320000pt;}
.x7c_c00445{left:210.240000pt;}
.x1f_c00445{left:212.400000pt;}
.xa_c00445{left:213.360000pt;}
.x39_c00445{left:215.280000pt;}
.x41_c00445{left:216.240000pt;}
.x3_c00445{left:218.160000pt;}
.x6c_c00445{left:220.733333pt;}
.x5a_c00445{left:222.960000pt;}
.x7b_c00445{left:224.786667pt;}
.x5c_c00445{left:226.080000pt;}
.x80_c00445{left:228.116000pt;}
.x53_c00445{left:232.080000pt;}
.x66_c00445{left:234.720000pt;}
.x20_c00445{left:235.920000pt;}
.x11_c00445{left:238.320000pt;}
.x33_c00445{left:240.720000pt;}
.x74_c00445{left:243.210667pt;}
.x18_c00445{left:244.320000pt;}
.x3a_c00445{left:245.520000pt;}
.x7d_c00445{left:251.280000pt;}
.x4_c00445{left:252.240000pt;}
.x60_c00445{left:255.360000pt;}
.x21_c00445{left:257.040000pt;}
.x75_c00445{left:260.278667pt;}
.x12_c00445{left:263.760000pt;}
.x2b_c00445{left:267.120000pt;}
.x34_c00445{left:268.560000pt;}
.x1_c00445{left:270.240000pt;}
.x54_c00445{left:273.600000pt;}
.x6d_c00445{left:274.689333pt;}
.xb_c00445{left:276.960000pt;}
.x19_c00445{left:281.520000pt;}
.x27_c00445{left:283.440000pt;}
.x5_c00445{left:285.600000pt;}
.x2c_c00445{left:288.480000pt;}
.x64_c00445{left:289.814667pt;}
.x83_c00445{left:292.232883pt;}
.x87_c00445{left:294.240000pt;}
.x81_c00445{left:298.809333pt;}
.x6e_c00445{left:307.081333pt;}
.x5d_c00445{left:309.600000pt;}
.x13_c00445{left:310.800000pt;}
.x3b_c00445{left:315.840000pt;}
.x2d_c00445{left:316.800000pt;}
.x55_c00445{left:317.760000pt;}
.x49_c00445{left:319.920000pt;}
.x42_c00445{left:321.600000pt;}
.x14_c00445{left:324.240000pt;}
.x68_c00445{left:326.640000pt;}
.x6_c00445{left:330.480000pt;}
.x61_c00445{left:331.440000pt;}
.x5b_c00445{left:334.320000pt;}
.x5e_c00445{left:336.480000pt;}
.x3c_c00445{left:337.440000pt;}
.x22_c00445{left:338.400000pt;}
.x56_c00445{left:341.280000pt;}
.x43_c00445{left:343.440000pt;}
.x8c_c00445{left:346.320000pt;}
.x1a_c00445{left:347.520000pt;}
.x7_c00445{left:348.720000pt;}
.x2e_c00445{left:349.680000pt;}
.xc_c00445{left:354.000000pt;}
.x6f_c00445{left:355.568000pt;}
.x28_c00445{left:357.360000pt;}
.x44_c00445{left:359.280000pt;}
.x4f_c00445{left:361.440000pt;}
.x57_c00445{left:363.360000pt;}
.x69_c00445{left:366.000000pt;}
.x2f_c00445{left:367.680000pt;}
.x65_c00445{left:372.369333pt;}
.x96_c00445{left:373.920000pt;}
.x8d_c00445{left:375.600000pt;}
.x9c_c00445{left:377.760000pt;}
.x3d_c00445{left:379.440000pt;}
.x29_c00445{left:381.120000pt;}
.x98_c00445{left:382.320000pt;}
.x23_c00445{left:384.000000pt;}
.x35_c00445{left:384.960000pt;}
.x45_c00445{left:392.640000pt;}
.x15_c00445{left:394.800000pt;}
.x89_c00445{left:397.200000pt;}
.x4a_c00445{left:398.640000pt;}
.x62_c00445{left:401.040000pt;}
.x30_c00445{left:402.720000pt;}
.x8e_c00445{left:403.920000pt;}
.xd_c00445{left:405.840000pt;}
.x24_c00445{left:407.040000pt;}
.x99_c00445{left:408.240000pt;}
.x1b_c00445{left:409.920000pt;}
.x50_c00445{left:411.600000pt;}
.xa0_c00445{left:413.040000pt;}
.xe_c00445{left:415.920000pt;}
.x70_c00445{left:418.220000pt;}
.x3e_c00445{left:424.080000pt;}
.x16_c00445{left:425.280000pt;}
.x36_c00445{left:428.880000pt;}
.x5f_c00445{left:429.840000pt;}
.x46_c00445{left:431.280000pt;}
.x31_c00445{left:433.200000pt;}
.x67_c00445{left:436.560000pt;}
.x25_c00445{left:440.880000pt;}
.x1c_c00445{left:441.840000pt;}
.x9d_c00445{left:444.720000pt;}
.x4b_c00445{left:447.360000pt;}
.x47_c00445{left:448.800000pt;}
.x93_c00445{left:454.080000pt;}
.x51_c00445{left:459.840000pt;}
.x3f_c00445{left:467.280000pt;}
.x2a_c00445{left:468.240000pt;}
.x26_c00445{left:469.920000pt;}
.xa1_c00445{left:472.080000pt;}
.x9a_c00445{left:475.200000pt;}
.x32_c00445{left:476.640000pt;}
.x8f_c00445{left:478.560000pt;}
.x63_c00445{left:481.680000pt;}
.x37_c00445{left:484.800000pt;}
.x4c_c00445{left:487.200000pt;}
.x9e_c00445{left:489.120000pt;}
.x94_c00445{left:490.800000pt;}
.xf_c00445{left:492.000000pt;}
.x90_c00445{left:495.120000pt;}
.x88_c00445{left:499.920000pt;}
.x1d_c00445{left:501.600000pt;}
.x8a_c00445{left:503.280000pt;}
.x91_c00445{left:509.760000pt;}
.xa2_c00445{left:511.440000pt;}
.xa3_c00445{left:512.880000pt;}
.x97_c00445{left:516.720000pt;}
.x95_c00445{left:521.760000pt;}
.x9b_c00445{left:523.440000pt;}
.x9f_c00445{left:526.800000pt;}
.x92_c00445{left:529.920000pt;}
.x8b_c00445{left:539.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m85_c00446{transform:matrix(0.010839,0.000141,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010839,0.000141,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010839,0.000141,-0.003250,0.249979,0,0);}
.mc9_c00446{transform:matrix(0.011729,0.000129,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011729,0.000129,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011729,0.000129,-0.002750,0.249985,0,0);}
.m95_c00446{transform:matrix(0.016854,0.000219,-0.003250,0.249979,0,0);-ms-transform:matrix(0.016854,0.000219,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.016854,0.000219,-0.003250,0.249979,0,0);}
.m82_c00446{transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.018543,0.000241,-0.003250,0.249979,0,0);}
.md0_c00446{transform:matrix(0.022915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022915,0.000000,0.000000,0.250000,0,0);}
.m7a_c00446{transform:matrix(0.031887,0.000415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.031887,0.000415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.031887,0.000415,-0.003250,0.249979,0,0);}
.ma6_c00446{transform:matrix(0.043435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043435,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.100680,0.001410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.100680,0.001410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.100680,0.001410,-0.003500,0.249976,0,0);}
.m6d_c00446{transform:matrix(0.110686,0.001439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.110686,0.001439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.110686,0.001439,-0.003250,0.249979,0,0);}
.mb9_c00446{transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.122510,0.001593,-0.003250,0.249979,0,0);-ms-transform:matrix(0.122510,0.001593,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.122510,0.001593,-0.003250,0.249979,0,0);}
.m52_c00446{transform:matrix(0.128529,0.001671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.128529,0.001671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.128529,0.001671,-0.003250,0.249979,0,0);}
.m24_c00446{transform:matrix(0.140156,0.001962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.140156,0.001962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.140156,0.001962,-0.003500,0.249976,0,0);}
.m5c_c00446{transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);-ms-transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);}
.m53_c00446{transform:matrix(0.143463,0.001865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143463,0.001865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143463,0.001865,-0.003250,0.249979,0,0);}
.m39_c00446{transform:matrix(0.143668,0.001868,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143668,0.001868,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143668,0.001868,-0.003250,0.249979,0,0);}
.mc8_c00446{transform:matrix(0.143916,0.001583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143916,0.001583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143916,0.001583,-0.002750,0.249985,0,0);}
.m1d_c00446{transform:matrix(0.146796,0.002055,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146796,0.002055,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146796,0.002055,-0.003500,0.249976,0,0);}
.m6_c00446{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);}
.m7_c00446{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);}
.me_c00446{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);}
.m97_c00446{transform:matrix(0.154412,0.002007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154412,0.002007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154412,0.002007,-0.003250,0.249979,0,0);}
.m17_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);}
.m0_c00446{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);}
.m9_c00446{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);}
.m5_c00446{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);}
.m54_c00446{transform:matrix(0.159112,0.002068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159112,0.002068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159112,0.002068,-0.003250,0.249979,0,0);}
.ma_c00446{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);}
.mc4_c00446{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);}
.mab_c00446{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);}
.m4f_c00446{transform:matrix(0.162851,0.002117,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162851,0.002117,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162851,0.002117,-0.003250,0.249979,0,0);}
.m14_c00446{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);}
.m50_c00446{transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);}
.m4a_c00446{transform:matrix(0.168666,0.002193,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168666,0.002193,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168666,0.002193,-0.003250,0.249979,0,0);}
.m57_c00446{transform:matrix(0.169031,0.002197,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169031,0.002197,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169031,0.002197,-0.003250,0.249979,0,0);}
.m1b_c00446{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);}
.m51_c00446{transform:matrix(0.171006,0.002223,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171006,0.002223,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171006,0.002223,-0.003250,0.249979,0,0);}
.m48_c00446{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);}
.m22_c00446{transform:matrix(0.172498,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172498,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172498,0.002415,-0.003500,0.249976,0,0);}
.mc6_c00446{transform:matrix(0.172675,0.001899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172675,0.001899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172675,0.001899,-0.002750,0.249985,0,0);}
.ma8_c00446{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);}
.m5e_c00446{transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);}
.m6b_c00446{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);}
.m96_c00446{transform:matrix(0.174335,0.002266,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174335,0.002266,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174335,0.002266,-0.003250,0.249979,0,0);}
.m25_c00446{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);}
.mb_c00446{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);}
.m3b_c00446{transform:matrix(0.174705,0.002271,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174705,0.002271,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174705,0.002271,-0.003250,0.249979,0,0);}
.m47_c00446{transform:matrix(0.175320,0.002279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175320,0.002279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175320,0.002279,-0.003250,0.249979,0,0);}
.m73_c00446{transform:matrix(0.175870,0.002286,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175870,0.002286,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175870,0.002286,-0.003250,0.249979,0,0);}
.m15_c00446{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);}
.m80_c00446{transform:matrix(0.176980,0.002301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176980,0.002301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176980,0.002301,-0.003250,0.249979,0,0);}
.m5b_c00446{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);}
.mc_c00446{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);}
.m35_c00446{transform:matrix(0.179055,0.002328,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179055,0.002328,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179055,0.002328,-0.003250,0.249979,0,0);}
.m2_c00446{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);}
.m4c_c00446{transform:matrix(0.179335,0.002331,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179335,0.002331,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179335,0.002331,-0.003250,0.249979,0,0);}
.m16_c00446{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);}
.m28_c00446{transform:matrix(0.180422,0.002526,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180422,0.002526,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180422,0.002526,-0.003500,0.249976,0,0);}
.m29_c00446{transform:matrix(0.180942,0.002533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180942,0.002533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180942,0.002533,-0.003500,0.249976,0,0);}
.m70_c00446{transform:matrix(0.181140,0.002355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181140,0.002355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181140,0.002355,-0.003250,0.249979,0,0);}
.m27_c00446{transform:matrix(0.181607,0.002543,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181607,0.002543,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181607,0.002543,-0.003500,0.249976,0,0);}
.m59_c00446{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);}
.m7d_c00446{transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);}
.m64_c00446{transform:matrix(0.183030,0.002379,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183030,0.002379,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183030,0.002379,-0.003250,0.249979,0,0);}
.mcd_c00446{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);}
.md_c00446{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);}
.mf_c00446{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);}
.m6a_c00446{transform:matrix(0.184914,0.002404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184914,0.002404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184914,0.002404,-0.003250,0.249979,0,0);}
.m5d_c00446{transform:matrix(0.185179,0.002407,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185179,0.002407,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185179,0.002407,-0.003250,0.249979,0,0);}
.m49_c00446{transform:matrix(0.185524,0.002412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185524,0.002412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185524,0.002412,-0.003250,0.249979,0,0);}
.m5a_c00446{transform:matrix(0.185599,0.002413,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185599,0.002413,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185599,0.002413,-0.003250,0.249979,0,0);}
.m19_c00446{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);}
.m18_c00446{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);}
.m7c_c00446{transform:matrix(0.187839,0.002442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187839,0.002442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187839,0.002442,-0.003250,0.249979,0,0);}
.m3a_c00446{transform:matrix(0.187859,0.002442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187859,0.002442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187859,0.002442,-0.003250,0.249979,0,0);}
.m4b_c00446{transform:matrix(0.188464,0.002450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188464,0.002450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188464,0.002450,-0.003250,0.249979,0,0);}
.m56_c00446{transform:matrix(0.188979,0.002457,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188979,0.002457,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188979,0.002457,-0.003250,0.249979,0,0);}
.m4d_c00446{transform:matrix(0.189089,0.002458,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189089,0.002458,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189089,0.002458,-0.003250,0.249979,0,0);}
.m23_c00446{transform:matrix(0.190076,0.002661,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190076,0.002661,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190076,0.002661,-0.003500,0.249976,0,0);}
.m68_c00446{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);}
.mb3_c00446{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);}
.m1c_c00446{transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190991,0.002674,-0.003500,0.249976,0,0);}
.m1e_c00446{transform:matrix(0.191256,0.002678,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191256,0.002678,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191256,0.002678,-0.003500,0.249976,0,0);}
.m1f_c00446{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);}
.m30_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);}
.m7f_c00446{transform:matrix(0.192749,0.002506,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192749,0.002506,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192749,0.002506,-0.003250,0.249979,0,0);}
.m6c_c00446{transform:matrix(0.193209,0.002512,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193209,0.002512,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193209,0.002512,-0.003250,0.249979,0,0);}
.m2c_c00446{transform:matrix(0.193279,0.002513,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193279,0.002513,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193279,0.002513,-0.003250,0.249979,0,0);}
.m12_c00446{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);}
.m63_c00446{transform:matrix(0.195194,0.002538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195194,0.002538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195194,0.002538,-0.003250,0.249979,0,0);}
.m13_c00446{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);}
.m8a_c00446{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);}
.m37_c00446{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);}
.m2a_c00446{transform:matrix(0.196271,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196271,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196271,0.002748,-0.003500,0.249976,0,0);}
.m62_c00446{transform:matrix(0.196348,0.002553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196348,0.002553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196348,0.002553,-0.003250,0.249979,0,0);}
.m78_c00446{transform:matrix(0.196958,0.002560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196958,0.002560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196958,0.002560,-0.003250,0.249979,0,0);}
.m1_c00446{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);}
.m83_c00446{transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197368,0.002566,-0.003250,0.249979,0,0);}
.m2d_c00446{transform:matrix(0.197408,0.002566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197408,0.002566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197408,0.002566,-0.003250,0.249979,0,0);}
.m36_c00446{transform:matrix(0.198693,0.002583,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198693,0.002583,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198693,0.002583,-0.003250,0.249979,0,0);}
.m65_c00446{transform:matrix(0.199908,0.002599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199908,0.002599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199908,0.002599,-0.003250,0.249979,0,0);}
.mb8_c00446{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);}
.m9d_c00446{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);}
.m77_c00446{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);}
.m7e_c00446{transform:matrix(0.202653,0.002634,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202653,0.002634,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202653,0.002634,-0.003250,0.249979,0,0);}
.m87_c00446{transform:matrix(0.204533,0.002659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204533,0.002659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204533,0.002659,-0.003250,0.249979,0,0);}
.m89_c00446{transform:matrix(0.205408,0.002670,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205408,0.002670,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205408,0.002670,-0.003250,0.249979,0,0);}
.m79_c00446{transform:matrix(0.206338,0.002682,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206338,0.002682,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206338,0.002682,-0.003250,0.249979,0,0);}
.m66_c00446{transform:matrix(0.206993,0.002691,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206993,0.002691,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206993,0.002691,-0.003250,0.249979,0,0);}
.m88_c00446{transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);}
.m4_c00446{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);}
.m26_c00446{transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);}
.m90_c00446{transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209032,0.002717,-0.003250,0.249979,0,0);}
.mc5_c00446{transform:matrix(0.209197,0.002301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209197,0.002301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209197,0.002301,-0.002750,0.249985,0,0);}
.m98_c00446{transform:matrix(0.209957,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209957,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209957,0.002729,-0.003250,0.249979,0,0);}
.m5f_c00446{transform:matrix(0.209977,0.002730,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209977,0.002730,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209977,0.002730,-0.003250,0.249979,0,0);}
.mb4_c00446{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);}
.m10_c00446{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);}
.m99_c00446{transform:matrix(0.211127,0.002745,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211127,0.002745,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211127,0.002745,-0.003250,0.249979,0,0);}
.m81_c00446{transform:matrix(0.211997,0.002756,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211997,0.002756,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211997,0.002756,-0.003250,0.249979,0,0);}
.m6f_c00446{transform:matrix(0.214222,0.002785,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214222,0.002785,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214222,0.002785,-0.003250,0.249979,0,0);}
.ma4_c00446{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);}
.m67_c00446{transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216087,0.002809,-0.003250,0.249979,0,0);}
.m3_c00446{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);}
.mbd_c00446{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);}
.m9b_c00446{transform:matrix(0.216697,0.002817,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216697,0.002817,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216697,0.002817,-0.003250,0.249979,0,0);}
.m76_c00446{transform:matrix(0.216942,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216942,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216942,0.002820,-0.003250,0.249979,0,0);}
.m6e_c00446{transform:matrix(0.217022,0.002821,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217022,0.002821,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217022,0.002821,-0.003250,0.249979,0,0);}
.m9a_c00446{transform:matrix(0.217047,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217047,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217047,0.002822,-0.003250,0.249979,0,0);}
.mba_c00446{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);}
.m94_c00446{transform:matrix(0.220641,0.002868,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220641,0.002868,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220641,0.002868,-0.003250,0.249979,0,0);}
.m8e_c00446{transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);}
.m61_c00446{transform:matrix(0.222571,0.002893,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222571,0.002893,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222571,0.002893,-0.003250,0.249979,0,0);}
.m8d_c00446{transform:matrix(0.222661,0.002895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222661,0.002895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222661,0.002895,-0.003250,0.249979,0,0);}
.m60_c00446{transform:matrix(0.224356,0.002917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224356,0.002917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224356,0.002917,-0.003250,0.249979,0,0);}
.m72_c00446{transform:matrix(0.224461,0.002918,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224461,0.002918,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224461,0.002918,-0.003250,0.249979,0,0);}
.ma0_c00446{transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{transform:matrix(0.224956,0.002924,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224956,0.002924,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224956,0.002924,-0.003250,0.249979,0,0);}
.m41_c00446{transform:matrix(0.226771,0.002948,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226771,0.002948,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226771,0.002948,-0.003250,0.249979,0,0);}
.m20_c00446{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);}
.m2e_c00446{transform:matrix(0.228951,0.002976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228951,0.002976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228951,0.002976,-0.003250,0.249979,0,0);}
.mcf_c00446{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);}
.m58_c00446{transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);}
.m8c_c00446{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);}
.mbe_c00446{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);}
.ma5_c00446{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);}
.m33_c00446{transform:matrix(0.230865,0.003001,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230865,0.003001,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230865,0.003001,-0.003250,0.249979,0,0);}
.m91_c00446{transform:matrix(0.231275,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231275,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231275,0.003007,-0.003250,0.249979,0,0);}
.m7b_c00446{transform:matrix(0.231325,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231325,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231325,0.003007,-0.003250,0.249979,0,0);}
.m92_c00446{transform:matrix(0.231405,0.003008,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231405,0.003008,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231405,0.003008,-0.003250,0.249979,0,0);}
.m8f_c00446{transform:matrix(0.232330,0.003020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232330,0.003020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232330,0.003020,-0.003250,0.249979,0,0);}
.mb0_c00446{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);}
.m8b_c00446{transform:matrix(0.233585,0.003037,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233585,0.003037,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233585,0.003037,-0.003250,0.249979,0,0);}
.mbc_c00446{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);}
.m75_c00446{transform:matrix(0.235585,0.003063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235585,0.003063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235585,0.003063,-0.003250,0.249979,0,0);}
.m9e_c00446{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.ma1_c00446{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);}
.m8_c00446{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);}
.m42_c00446{transform:matrix(0.238505,0.003101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238505,0.003101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238505,0.003101,-0.003250,0.249979,0,0);}
.m32_c00446{transform:matrix(0.238535,0.003101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238535,0.003101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238535,0.003101,-0.003250,0.249979,0,0);}
.m86_c00446{transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238935,0.003106,-0.003250,0.249979,0,0);}
.ma7_c00446{transform:matrix(0.240220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240220,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.241240,0.003136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241240,0.003136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241240,0.003136,-0.003250,0.249979,0,0);}
.mae_c00446{transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);}
.m84_c00446{transform:matrix(0.245429,0.003191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245429,0.003191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245429,0.003191,-0.003250,0.249979,0,0);}
.m71_c00446{transform:matrix(0.245854,0.003196,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245854,0.003196,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245854,0.003196,-0.003250,0.249979,0,0);}
.m93_c00446{transform:matrix(0.250519,0.003257,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250519,0.003257,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250519,0.003257,-0.003250,0.249979,0,0);}
.mbb_c00446{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);}
.m3f_c00446{transform:matrix(0.254209,0.003305,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254209,0.003305,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254209,0.003305,-0.003250,0.249979,0,0);}
.mbf_c00446{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);}
.maf_c00446{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);}
.m46_c00446{transform:matrix(0.256913,0.003340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256913,0.003340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256913,0.003340,-0.003250,0.249979,0,0);}
.m43_c00446{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);}
.ma9_c00446{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m69_c00446{transform:matrix(0.259533,0.003374,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259533,0.003374,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259533,0.003374,-0.003250,0.249979,0,0);}
.m3c_c00446{transform:matrix(0.261543,0.003400,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261543,0.003400,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261543,0.003400,-0.003250,0.249979,0,0);}
.m9c_c00446{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);}
.m31_c00446{transform:matrix(0.264818,0.003443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264818,0.003443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264818,0.003443,-0.003250,0.249979,0,0);}
.m55_c00446{transform:matrix(0.265348,0.003450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265348,0.003450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265348,0.003450,-0.003250,0.249979,0,0);}
.m21_c00446{transform:matrix(0.269084,0.003767,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269084,0.003767,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269084,0.003767,-0.003500,0.249976,0,0);}
.mc7_c00446{transform:matrix(0.280088,0.003081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280088,0.003081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280088,0.003081,-0.002750,0.249985,0,0);}
.mc1_c00446{transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);}
.mad_c00446{transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281565,0.000000,0.000000,0.250000,0,0);}
.maa_c00446{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.mac_c00446{transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);}
.ma2_c00446{transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.295405,0.003840,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295405,0.003840,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295405,0.003840,-0.003250,0.249979,0,0);}
.mc0_c00446{transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);}
.mc3_c00446{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);}
.ma3_c00446{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);}
.m34_c00446{transform:matrix(0.308544,0.004011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.308544,0.004011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.308544,0.004011,-0.003250,0.249979,0,0);}
.mb5_c00446{transform:matrix(0.313235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.313604,0.004077,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313604,0.004077,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313604,0.004077,-0.003250,0.249979,0,0);}
.mb2_c00446{transform:matrix(0.324165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324165,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328670,0.000000,0.000000,0.250000,0,0);}
.mb6_c00446{transform:matrix(0.342725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342725,0.000000,0.000000,0.250000,0,0);}
.mb1_c00446{transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00446{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m3e_c00446{transform:matrix(0.375778,0.004885,-0.003250,0.249979,0,0);-ms-transform:matrix(0.375778,0.004885,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.375778,0.004885,-0.003250,0.249979,0,0);}
.m4e_c00446{transform:matrix(0.406776,0.005288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.406776,0.005288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.406776,0.005288,-0.003250,0.249979,0,0);}
.m1a_c00446{transform:matrix(0.420300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420300,0.000000,0.000000,0.250000,0,0);}
.mcb_c00446{transform:matrix(0.422934,0.004652,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422934,0.004652,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422934,0.004652,-0.002750,0.249985,0,0);}
.mc2_c00446{transform:matrix(0.426775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426775,0.000000,0.000000,0.250000,0,0);}
.mb7_c00446{transform:matrix(0.427375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427375,0.000000,0.000000,0.250000,0,0);}
.m74_c00446{transform:matrix(0.435658,0.005664,-0.003250,0.249979,0,0);-ms-transform:matrix(0.435658,0.005664,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.435658,0.005664,-0.003250,0.249979,0,0);}
.mcc_c00446{transform:matrix(0.446308,0.004909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.446308,0.004909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.446308,0.004909,-0.002750,0.249985,0,0);}
.m44_c00446{transform:matrix(0.522856,0.006797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.522856,0.006797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.522856,0.006797,-0.003250,0.249979,0,0);}
.mca_c00446{transform:matrix(0.623932,0.006863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.623932,0.006863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.623932,0.006863,-0.002750,0.249985,0,0);}
.mce_c00446{transform:matrix(0.966240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966240,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;}
.fs3_c00446{font-size:22.050000px;}
.fs10_c00446{font-size:47.250000px;}
.fse_c00446{font-size:49.354170px;}
.fs11_c00446{font-size:52.500000px;}
.fsd_c00446{font-size:52.504436px;}
.fsc_c00446{font-size:53.554525px;}
.fsf_c00446{font-size:57.754880px;}
.fs12_c00446{font-size:65.103938px;}
.fs6_c00446{font-size:68.255767px;}
.fs7_c00446{font-size:69.305856px;}
.fs2_c00446{font-size:72.450000px;}
.fs5_c00446{font-size:72.457100px;}
.fs8_c00446{font-size:73.506210px;}
.fs0_c00446{font-size:74.550000px;}
.fs9_c00446{font-size:74.556299px;}
.fs4_c00446{font-size:74.557306px;}
.fs1_c00446{font-size:75.600000px;}
.fsb_c00446{font-size:76.656477px;}
.fsa_c00446{font-size:80.856832px;}
.fs13_c00446{font-size:218.400000px;}
.y0_c00446{bottom:0.000000px;}
.ya2_c00446{bottom:102.847500px;}
.ya1_c00446{bottom:143.788321px;}
.ya0_c00446{bottom:143.995330px;}
.y9f_c00446{bottom:144.254133px;}
.y9e_c00446{bottom:144.554152px;}
.y9d_c00446{bottom:145.473367px;}
.y9c_c00446{bottom:146.094873px;}
.y9b_c00446{bottom:146.890190px;}
.y9a_c00446{bottom:147.151500px;}
.y99_c00446{bottom:167.788500px;}
.y98_c00446{bottom:169.695000px;}
.y97_c00446{bottom:170.392500px;}
.y96_c00446{bottom:171.028500px;}
.y95_c00446{bottom:171.525000px;}
.y94_c00446{bottom:172.149000px;}
.y93_c00446{bottom:173.286000px;}
.y92_c00446{bottom:174.388500px;}
.y91_c00446{bottom:174.961500px;}
.y90_c00446{bottom:189.118500px;}
.y8f_c00446{bottom:206.253000px;}
.y8e_c00446{bottom:223.685547px;}
.y8d_c00446{bottom:223.947685px;}
.y8c_c00446{bottom:224.242994px;}
.y8b_c00446{bottom:224.390453px;}
.y8a_c00446{bottom:224.822143px;}
.y89_c00446{bottom:225.405350px;}
.y88_c00446{bottom:227.990504px;}
.y87_c00446{bottom:228.684021px;}
.y86_c00446{bottom:241.062539px;}
.y85_c00446{bottom:241.282946px;}
.y84_c00446{bottom:241.680759px;}
.y83_c00446{bottom:241.855709px;}
.y82_c00446{bottom:242.060455px;}
.y81_c00446{bottom:242.572919px;}
.y80_c00446{bottom:243.027248px;}
.y7f_c00446{bottom:243.331570px;}
.y7e_c00446{bottom:244.287365px;}
.y7d_c00446{bottom:244.673827px;}
.y7c_c00446{bottom:245.314886px;}
.y7b_c00446{bottom:245.781326px;}
.y7a_c00446{bottom:246.025095px;}
.y79_c00446{bottom:246.508307px;}
.y78_c00446{bottom:258.401561px;}
.y77_c00446{bottom:259.845773px;}
.y76_c00446{bottom:261.340306px;}
.y75_c00446{bottom:261.497339px;}
.y74_c00446{bottom:262.607988px;}
.y73_c00446{bottom:262.864281px;}
.y72_c00446{bottom:263.216112px;}
.y71_c00446{bottom:263.871985px;}
.y70_c00446{bottom:264.110595px;}
.y6f_c00446{bottom:264.803844px;}
.y6e_c00446{bottom:265.139569px;}
.y6d_c00446{bottom:277.103531px;}
.y6c_c00446{bottom:277.923661px;}
.y6b_c00446{bottom:278.099142px;}
.y6a_c00446{bottom:278.393417px;}
.y69_c00446{bottom:279.039842px;}
.y68_c00446{bottom:279.260913px;}
.y67_c00446{bottom:279.690830px;}
.y66_c00446{bottom:279.847083px;}
.y65_c00446{bottom:280.261361px;}
.y64_c00446{bottom:280.411452px;}
.y63_c00446{bottom:280.868571px;}
.y62_c00446{bottom:281.426661px;}
.y61_c00446{bottom:281.595219px;}
.y60_c00446{bottom:281.727410px;}
.y5f_c00446{bottom:282.518642px;}
.y5e_c00446{bottom:282.757263px;}
.y5d_c00446{bottom:283.090226px;}
.y5c_c00446{bottom:283.501500px;}
.y5b_c00446{bottom:482.810022px;}
.y5a_c00446{bottom:483.195401px;}
.y59_c00446{bottom:483.462960px;}
.y58_c00446{bottom:483.894007px;}
.y57_c00446{bottom:484.203005px;}
.y56_c00446{bottom:484.768894px;}
.y55_c00446{bottom:485.611412px;}
.y54_c00446{bottom:486.264272px;}
.y53_c00446{bottom:486.804850px;}
.y52_c00446{bottom:503.760600px;}
.y51_c00446{bottom:504.427693px;}
.y50_c00446{bottom:505.468963px;}
.y4f_c00446{bottom:506.162629px;}
.y4e_c00446{bottom:506.589579px;}
.y4d_c00446{bottom:507.322821px;}
.y4c_c00446{bottom:507.667988px;}
.y4b_c00446{bottom:508.017150px;}
.y4a_c00446{bottom:508.916805px;}
.y49_c00446{bottom:509.765675px;}
.y48_c00446{bottom:510.299186px;}
.y47_c00446{bottom:529.696617px;}
.y46_c00446{bottom:530.069115px;}
.y45_c00446{bottom:530.689367px;}
.y44_c00446{bottom:531.203298px;}
.y43_c00446{bottom:531.803214px;}
.y42_c00446{bottom:533.250330px;}
.y41_c00446{bottom:553.076607px;}
.y40_c00446{bottom:574.415920px;}
.y3f_c00446{bottom:575.208857px;}
.y3e_c00446{bottom:575.739645px;}
.y3d_c00446{bottom:576.430401px;}
.y3c_c00446{bottom:577.073274px;}
.y3b_c00446{bottom:578.162008px;}
.y3a_c00446{bottom:579.172348px;}
.y39_c00446{bottom:597.268699px;}
.y38_c00446{bottom:597.400617px;}
.y37_c00446{bottom:598.314504px;}
.y36_c00446{bottom:598.670204px;}
.y35_c00446{bottom:599.786110px;}
.y34_c00446{bottom:600.817972px;}
.y33_c00446{bottom:601.236131px;}
.y32_c00446{bottom:601.713490px;}
.y31_c00446{bottom:602.373000px;}
.y2c_c00446{bottom:667.616813px;}
.y2b_c00446{bottom:667.617084px;}
.y2e_c00446{bottom:667.617120px;}
.y2d_c00446{bottom:667.617252px;}
.y2a_c00446{bottom:667.617615px;}
.y29_c00446{bottom:667.617726px;}
.y2f_c00446{bottom:667.617860px;}
.y30_c00446{bottom:667.618048px;}
.y28_c00446{bottom:667.618197px;}
.y27_c00446{bottom:687.946788px;}
.y26_c00446{bottom:688.542805px;}
.y25_c00446{bottom:689.037579px;}
.y24_c00446{bottom:689.404140px;}
.y23_c00446{bottom:689.849188px;}
.y22_c00446{bottom:690.379511px;}
.y21_c00446{bottom:691.464139px;}
.y20_c00446{bottom:691.871670px;}
.y1f_c00446{bottom:692.553000px;}
.y1e_c00446{bottom:711.417336px;}
.y1d_c00446{bottom:712.005024px;}
.y1c_c00446{bottom:712.165023px;}
.y1b_c00446{bottom:712.403478px;}
.y1a_c00446{bottom:712.770033px;}
.y19_c00446{bottom:713.631756px;}
.y18_c00446{bottom:714.103605px;}
.y17_c00446{bottom:714.419949px;}
.y16_c00446{bottom:734.217591px;}
.y15_c00446{bottom:734.546640px;}
.y14_c00446{bottom:735.479355px;}
.y13_c00446{bottom:735.725874px;}
.y12_c00446{bottom:736.704894px;}
.y11_c00446{bottom:737.316456px;}
.y10_c00446{bottom:737.593320px;}
.yf_c00446{bottom:738.183000px;}
.ye_c00446{bottom:756.540000px;}
.yd_c00446{bottom:758.578500px;}
.yc_c00446{bottom:788.886000px;}
.yb_c00446{bottom:809.700000px;}
.ya_c00446{bottom:810.243000px;}
.y9_c00446{bottom:810.820500px;}
.y8_c00446{bottom:811.089000px;}
.y7_c00446{bottom:811.452000px;}
.y6_c00446{bottom:811.768500px;}
.y5_c00446{bottom:812.517000px;}
.y4_c00446{bottom:812.961000px;}
.y3_c00446{bottom:813.252000px;}
.y2_c00446{bottom:813.511500px;}
.y1_c00446{bottom:834.403500px;}
.h5_c00446{height:22.050000px;}
.h12_c00446{height:47.250000px;}
.h10_c00446{height:49.354170px;}
.h13_c00446{height:52.500000px;}
.hf_c00446{height:52.504436px;}
.he_c00446{height:53.554525px;}
.h11_c00446{height:57.754880px;}
.h14_c00446{height:65.103938px;}
.h8_c00446{height:68.255767px;}
.h9_c00446{height:69.305856px;}
.h4_c00446{height:72.450000px;}
.h7_c00446{height:72.457100px;}
.ha_c00446{height:73.506210px;}
.h2_c00446{height:74.550000px;}
.hb_c00446{height:74.556299px;}
.h6_c00446{height:74.557306px;}
.h3_c00446{height:75.600000px;}
.hd_c00446{height:76.656477px;}
.hc_c00446{height:80.856832px;}
.h15_c00446{height:218.400000px;}
.h1_c00446{height:1005.000000px;}
.h0_c00446{height:1005.150000px;}
.w0_c00446{width:715.200000px;}
.w1_c00446{width:715.500000px;}
.x0_c00446{left:0.000000px;}
.x5e_c00446{left:87.379066px;}
.x52_c00446{left:88.969500px;}
.x76_c00446{left:101.520000px;}
.x5f_c00446{left:109.741981px;}
.x8e_c00446{left:115.290000px;}
.x32_c00446{left:116.679000px;}
.x86_c00446{left:118.350000px;}
.x53_c00446{left:120.606000px;}
.x4d_c00446{left:126.189975px;}
.x39_c00446{left:128.044863px;}
.x40_c00446{left:129.372702px;}
.x1a_c00446{left:131.308500px;}
.x1_c00446{left:133.380000px;}
.x8b_c00446{left:139.725000px;}
.x71_c00446{left:141.487353px;}
.x7c_c00446{left:142.560000px;}
.x54_c00446{left:146.218500px;}
.x65_c00446{left:148.925852px;}
.x8f_c00446{left:152.280000px;}
.x9_c00446{left:154.606500px;}
.x60_c00446{left:155.913772px;}
.x12_c00446{left:159.301500px;}
.x77_c00446{left:162.000000px;}
.x22_c00446{left:163.220208px;}
.x55_c00446{left:164.574000px;}
.x33_c00446{left:167.410500px;}
.x2d_c00446{left:171.992372px;}
.x1b_c00446{left:173.428500px;}
.x87_c00446{left:176.404500px;}
.xa_c00446{left:178.845000px;}
.x7d_c00446{left:180.900000px;}
.x78_c00446{left:181.980000px;}
.x27_c00446{left:183.121500px;}
.x13_c00446{left:184.411500px;}
.x66_c00446{left:187.806359px;}
.x3a_c00446{left:191.222406px;}
.x1c_c00446{left:193.204500px;}
.x2_c00446{left:202.500000px;}
.x34_c00446{left:204.130500px;}
.x44_c00446{left:208.494789px;}
.x23_c00446{left:210.426354px;}
.x8c_c00446{left:212.026500px;}
.x28_c00446{left:214.470000px;}
.xb_c00446{left:215.884500px;}
.x4e_c00446{left:217.992975px;}
.x41_c00446{left:225.802186px;}
.x7e_c00446{left:231.390000px;}
.x14_c00446{left:234.361500px;}
.x56_c00446{left:235.606500px;}
.x1d_c00446{left:236.887500px;}
.x61_c00446{left:239.089627px;}
.x67_c00446{left:241.273061px;}
.x2e_c00446{left:245.438774px;}
.x79_c00446{left:247.320000px;}
.x57_c00446{left:248.572500px;}
.x7f_c00446{left:250.290000px;}
.x15_c00446{left:254.071500px;}
.x62_c00446{left:256.150179px;}
.x3b_c00446{left:259.276254px;}
.x45_c00446{left:261.427039px;}
.x42_c00446{left:265.833153px;}
.x88_c00446{left:269.079000px;}
.x3_c00446{left:271.080000px;}
.x68_c00446{left:273.424470px;}
.x18_c00446{left:277.020000px;}
.xc_c00446{left:278.259000px;}
.x46_c00446{left:281.938467px;}
.x58_c00446{left:291.502500px;}
.x7a_c00446{left:292.680000px;}
.x16_c00446{left:295.651500px;}
.x29_c00446{left:297.903000px;}
.x3c_c00446{left:299.495694px;}
.x47_c00446{left:302.257914px;}
.xd_c00446{left:304.663500px;}
.x1e_c00446{left:306.817500px;}
.x4_c00446{left:308.340000px;}
.x2f_c00446{left:310.513772px;}
.x35_c00446{left:315.670500px;}
.x17_c00446{left:319.411500px;}
.x1f_c00446{left:324.426000px;}
.x4f_c00446{left:326.331975px;}
.x5_c00446{left:328.050000px;}
.x80_c00446{left:329.130000px;}
.x63_c00446{left:330.159748px;}
.x24_c00446{left:333.310242px;}
.xe_c00446{left:334.909500px;}
.x2a_c00446{left:338.697000px;}
.x72_c00446{left:340.345353px;}
.x43_c00446{left:341.422183px;}
.x3d_c00446{left:342.706017px;}
.x48_c00446{left:345.389671px;}
.x50_c00446{left:350.100975px;}
.x69_c00446{left:353.063504px;}
.xf_c00446{left:357.306000px;}
.x89_c00446{left:365.383500px;}
.x6_c00446{left:366.930000px;}
.x49_c00446{left:370.499865px;}
.x25_c00446{left:373.023447px;}
.x3e_c00446{left:375.919230px;}
.x6a_c00446{left:378.434835px;}
.x59_c00446{left:382.098000px;}
.x30_c00446{left:383.690134px;}
.x73_c00446{left:385.207353px;}
.x20_c00446{left:391.048500px;}
.x2b_c00446{left:401.128500px;}
.x7_c00446{left:403.380000px;}
.x10_c00446{left:405.382500px;}
.x4a_c00446{left:411.279739px;}
.x21_c00446{left:414.552000px;}
.x6b_c00446{left:416.268323px;}
.x74_c00446{left:418.414353px;}
.x8d_c00446{left:421.713000px;}
.x3f_c00446{left:425.489299px;}
.x36_c00446{left:428.871000px;}
.x26_c00446{left:431.718723px;}
.x51_c00446{left:433.484475px;}
.x7b_c00446{left:435.240000px;}
.x8_c00446{left:439.560000px;}
.x31_c00446{left:441.205365px;}
.x11_c00446{left:450.684000px;}
.x75_c00446{left:452.473353px;}
.x6c_c00446{left:458.919869px;}
.x19_c00446{left:462.510000px;}
.x8a_c00446{left:465.762000px;}
.x81_c00446{left:466.830000px;}
.x4b_c00446{left:472.566561px;}
.x6d_c00446{left:475.939083px;}
.x5a_c00446{left:481.899000px;}
.x2c_c00446{left:485.035500px;}
.x6e_c00446{left:490.550778px;}
.x37_c00446{left:499.170000px;}
.x82_c00446{left:500.850000px;}
.x5b_c00446{left:504.535500px;}
.x38_c00446{left:509.317500px;}
.x4c_c00446{left:511.764013px;}
.x5c_c00446{left:518.034000px;}
.x6f_c00446{left:523.690707px;}
.x83_c00446{left:532.710000px;}
.x64_c00446{left:536.560386px;}
.x70_c00446{left:542.029941px;}
.x84_c00446{left:543.240000px;}
.x85_c00446{left:558.090000px;}
.x5d_c00446{left:581.121000px;}
.x90_c00446{left:617.760000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs3_c00446{font-size:19.600000pt;}
.fs10_c00446{font-size:42.000000pt;}
.fse_c00446{font-size:43.870373pt;}
.fs11_c00446{font-size:46.666667pt;}
.fsd_c00446{font-size:46.670610pt;}
.fsc_c00446{font-size:47.604022pt;}
.fsf_c00446{font-size:51.337671pt;}
.fs12_c00446{font-size:57.870167pt;}
.fs6_c00446{font-size:60.671793pt;}
.fs7_c00446{font-size:61.605205pt;}
.fs2_c00446{font-size:64.400000pt;}
.fs5_c00446{font-size:64.406311pt;}
.fs8_c00446{font-size:65.338854pt;}
.fs0_c00446{font-size:66.266667pt;}
.fs9_c00446{font-size:66.272266pt;}
.fs4_c00446{font-size:66.273160pt;}
.fs1_c00446{font-size:67.200000pt;}
.fsb_c00446{font-size:68.139090pt;}
.fsa_c00446{font-size:71.872739pt;}
.fs13_c00446{font-size:194.133333pt;}
.y0_c00446{bottom:0.000000pt;}
.ya2_c00446{bottom:91.420000pt;}
.ya1_c00446{bottom:127.811841pt;}
.ya0_c00446{bottom:127.995849pt;}
.y9f_c00446{bottom:128.225896pt;}
.y9e_c00446{bottom:128.492580pt;}
.y9d_c00446{bottom:129.309660pt;}
.y9c_c00446{bottom:129.862109pt;}
.y9b_c00446{bottom:130.569057pt;}
.y9a_c00446{bottom:130.801333pt;}
.y99_c00446{bottom:149.145333pt;}
.y98_c00446{bottom:150.840000pt;}
.y97_c00446{bottom:151.460000pt;}
.y96_c00446{bottom:152.025333pt;}
.y95_c00446{bottom:152.466667pt;}
.y94_c00446{bottom:153.021333pt;}
.y93_c00446{bottom:154.032000pt;}
.y92_c00446{bottom:155.012000pt;}
.y91_c00446{bottom:155.521333pt;}
.y90_c00446{bottom:168.105333pt;}
.y8f_c00446{bottom:183.336000pt;}
.y8e_c00446{bottom:198.831597pt;}
.y8d_c00446{bottom:199.064609pt;}
.y8c_c00446{bottom:199.327105pt;}
.y8b_c00446{bottom:199.458180pt;}
.y8a_c00446{bottom:199.841905pt;}
.y89_c00446{bottom:200.360311pt;}
.y88_c00446{bottom:202.658225pt;}
.y87_c00446{bottom:203.274685pt;}
.y86_c00446{bottom:214.277812pt;}
.y85_c00446{bottom:214.473729pt;}
.y84_c00446{bottom:214.827341pt;}
.y83_c00446{bottom:214.982852pt;}
.y82_c00446{bottom:215.164849pt;}
.y81_c00446{bottom:215.620372pt;}
.y80_c00446{bottom:216.024220pt;}
.y7f_c00446{bottom:216.294729pt;}
.y7e_c00446{bottom:217.144324pt;}
.y7d_c00446{bottom:217.487847pt;}
.y7c_c00446{bottom:218.057676pt;}
.y7b_c00446{bottom:218.472289pt;}
.y7a_c00446{bottom:218.688973pt;}
.y79_c00446{bottom:219.118495pt;}
.y78_c00446{bottom:229.690276pt;}
.y77_c00446{bottom:230.974020pt;}
.y76_c00446{bottom:232.302495pt;}
.y75_c00446{bottom:232.442079pt;}
.y74_c00446{bottom:233.429323pt;}
.y73_c00446{bottom:233.657139pt;}
.y72_c00446{bottom:233.969877pt;}
.y71_c00446{bottom:234.552876pt;}
.y70_c00446{bottom:234.764973pt;}
.y6f_c00446{bottom:235.381195pt;}
.y6e_c00446{bottom:235.679617pt;}
.y6d_c00446{bottom:246.314249pt;}
.y6c_c00446{bottom:247.043255pt;}
.y6b_c00446{bottom:247.199237pt;}
.y6a_c00446{bottom:247.460815pt;}
.y69_c00446{bottom:248.035415pt;}
.y68_c00446{bottom:248.231923pt;}
.y67_c00446{bottom:248.614071pt;}
.y66_c00446{bottom:248.752963pt;}
.y65_c00446{bottom:249.121209pt;}
.y64_c00446{bottom:249.254624pt;}
.y63_c00446{bottom:249.660952pt;}
.y62_c00446{bottom:250.157032pt;}
.y61_c00446{bottom:250.306861pt;}
.y60_c00446{bottom:250.424364pt;}
.y5f_c00446{bottom:251.127681pt;}
.y5e_c00446{bottom:251.339789pt;}
.y5d_c00446{bottom:251.635756pt;}
.y5c_c00446{bottom:252.001333pt;}
.y5b_c00446{bottom:429.164464pt;}
.y5a_c00446{bottom:429.507023pt;}
.y59_c00446{bottom:429.744853pt;}
.y58_c00446{bottom:430.128007pt;}
.y57_c00446{bottom:430.402671pt;}
.y56_c00446{bottom:430.905684pt;}
.y55_c00446{bottom:431.654588pt;}
.y54_c00446{bottom:432.234908pt;}
.y53_c00446{bottom:432.715423pt;}
.y52_c00446{bottom:447.787200pt;}
.y51_c00446{bottom:448.380172pt;}
.y50_c00446{bottom:449.305745pt;}
.y4f_c00446{bottom:449.922337pt;}
.y4e_c00446{bottom:450.301848pt;}
.y4d_c00446{bottom:450.953619pt;}
.y4c_c00446{bottom:451.260433pt;}
.y4b_c00446{bottom:451.570800pt;}
.y4a_c00446{bottom:452.370493pt;}
.y49_c00446{bottom:453.125044pt;}
.y48_c00446{bottom:453.599276pt;}
.y47_c00446{bottom:470.841437pt;}
.y46_c00446{bottom:471.172547pt;}
.y45_c00446{bottom:471.723881pt;}
.y44_c00446{bottom:472.180709pt;}
.y43_c00446{bottom:472.713968pt;}
.y42_c00446{bottom:474.000293pt;}
.y41_c00446{bottom:491.623651pt;}
.y40_c00446{bottom:510.591929pt;}
.y3f_c00446{bottom:511.296761pt;}
.y3e_c00446{bottom:511.768573pt;}
.y3d_c00446{bottom:512.382579pt;}
.y3c_c00446{bottom:512.954021pt;}
.y3b_c00446{bottom:513.921785pt;}
.y3a_c00446{bottom:514.819865pt;}
.y39_c00446{bottom:530.905511pt;}
.y38_c00446{bottom:531.022771pt;}
.y37_c00446{bottom:531.835115pt;}
.y36_c00446{bottom:532.151292pt;}
.y35_c00446{bottom:533.143209pt;}
.y34_c00446{bottom:534.060420pt;}
.y33_c00446{bottom:534.432116pt;}
.y32_c00446{bottom:534.856436pt;}
.y31_c00446{bottom:535.442667pt;}
.y2c_c00446{bottom:593.437167pt;}
.y2b_c00446{bottom:593.437408pt;}
.y2e_c00446{bottom:593.437440pt;}
.y2d_c00446{bottom:593.437557pt;}
.y2a_c00446{bottom:593.437880pt;}
.y29_c00446{bottom:593.437979pt;}
.y2f_c00446{bottom:593.438097pt;}
.y30_c00446{bottom:593.438265pt;}
.y28_c00446{bottom:593.438397pt;}
.y27_c00446{bottom:611.508256pt;}
.y26_c00446{bottom:612.038049pt;}
.y25_c00446{bottom:612.477848pt;}
.y24_c00446{bottom:612.803680pt;}
.y23_c00446{bottom:613.199279pt;}
.y22_c00446{bottom:613.670676pt;}
.y21_c00446{bottom:614.634791pt;}
.y20_c00446{bottom:614.997040pt;}
.y1f_c00446{bottom:615.602667pt;}
.y1e_c00446{bottom:632.370965pt;}
.y1d_c00446{bottom:632.893355pt;}
.y1c_c00446{bottom:633.035576pt;}
.y1b_c00446{bottom:633.247536pt;}
.y1a_c00446{bottom:633.573363pt;}
.y19_c00446{bottom:634.339339pt;}
.y18_c00446{bottom:634.758760pt;}
.y17_c00446{bottom:635.039955pt;}
.y16_c00446{bottom:652.637859pt;}
.y15_c00446{bottom:652.930347pt;}
.y14_c00446{bottom:653.759427pt;}
.y13_c00446{bottom:653.978555pt;}
.y12_c00446{bottom:654.848795pt;}
.y11_c00446{bottom:655.392405pt;}
.y10_c00446{bottom:655.638507pt;}
.yf_c00446{bottom:656.162667pt;}
.ye_c00446{bottom:672.480000pt;}
.yd_c00446{bottom:674.292000pt;}
.yc_c00446{bottom:701.232000pt;}
.yb_c00446{bottom:719.733333pt;}
.ya_c00446{bottom:720.216000pt;}
.y9_c00446{bottom:720.729333pt;}
.y8_c00446{bottom:720.968000pt;}
.y7_c00446{bottom:721.290667pt;}
.y6_c00446{bottom:721.572000pt;}
.y5_c00446{bottom:722.237333pt;}
.y4_c00446{bottom:722.632000pt;}
.y3_c00446{bottom:722.890667pt;}
.y2_c00446{bottom:723.121333pt;}
.y1_c00446{bottom:741.692000pt;}
.h5_c00446{height:19.600000pt;}
.h12_c00446{height:42.000000pt;}
.h10_c00446{height:43.870373pt;}
.h13_c00446{height:46.666667pt;}
.hf_c00446{height:46.670610pt;}
.he_c00446{height:47.604022pt;}
.h11_c00446{height:51.337671pt;}
.h14_c00446{height:57.870167pt;}
.h8_c00446{height:60.671793pt;}
.h9_c00446{height:61.605205pt;}
.h4_c00446{height:64.400000pt;}
.h7_c00446{height:64.406311pt;}
.ha_c00446{height:65.338854pt;}
.h2_c00446{height:66.266667pt;}
.hb_c00446{height:66.272266pt;}
.h6_c00446{height:66.273160pt;}
.h3_c00446{height:67.200000pt;}
.hd_c00446{height:68.139090pt;}
.hc_c00446{height:71.872739pt;}
.h15_c00446{height:194.133333pt;}
.h1_c00446{height:893.333333pt;}
.h0_c00446{height:893.466667pt;}
.w0_c00446{width:635.733333pt;}
.w1_c00446{width:636.000000pt;}
.x0_c00446{left:0.000000pt;}
.x5e_c00446{left:77.670281pt;}
.x52_c00446{left:79.084000pt;}
.x76_c00446{left:90.240000pt;}
.x5f_c00446{left:97.548428pt;}
.x8e_c00446{left:102.480000pt;}
.x32_c00446{left:103.714667pt;}
.x86_c00446{left:105.200000pt;}
.x53_c00446{left:107.205333pt;}
.x4d_c00446{left:112.168867pt;}
.x39_c00446{left:113.817656pt;}
.x40_c00446{left:114.997957pt;}
.x1a_c00446{left:116.718667pt;}
.x1_c00446{left:118.560000pt;}
.x8b_c00446{left:124.200000pt;}
.x71_c00446{left:125.766536pt;}
.x7c_c00446{left:126.720000pt;}
.x54_c00446{left:129.972000pt;}
.x65_c00446{left:132.378535pt;}
.x8f_c00446{left:135.360000pt;}
.x9_c00446{left:137.428000pt;}
.x60_c00446{left:138.590020pt;}
.x12_c00446{left:141.601333pt;}
.x77_c00446{left:144.000000pt;}
.x22_c00446{left:145.084629pt;}
.x55_c00446{left:146.288000pt;}
.x33_c00446{left:148.809333pt;}
.x2d_c00446{left:152.882108pt;}
.x1b_c00446{left:154.158667pt;}
.x87_c00446{left:156.804000pt;}
.xa_c00446{left:158.973333pt;}
.x7d_c00446{left:160.800000pt;}
.x78_c00446{left:161.760000pt;}
.x27_c00446{left:162.774667pt;}
.x13_c00446{left:163.921333pt;}
.x66_c00446{left:166.938985pt;}
.x3a_c00446{left:169.975472pt;}
.x1c_c00446{left:171.737333pt;}
.x2_c00446{left:180.000000pt;}
.x34_c00446{left:181.449333pt;}
.x44_c00446{left:185.328701pt;}
.x23_c00446{left:187.045648pt;}
.x8c_c00446{left:188.468000pt;}
.x28_c00446{left:190.640000pt;}
.xb_c00446{left:191.897333pt;}
.x4e_c00446{left:193.771533pt;}
.x41_c00446{left:200.713055pt;}
.x7e_c00446{left:205.680000pt;}
.x14_c00446{left:208.321333pt;}
.x56_c00446{left:209.428000pt;}
.x1d_c00446{left:210.566667pt;}
.x61_c00446{left:212.524113pt;}
.x67_c00446{left:214.464943pt;}
.x2e_c00446{left:218.167799pt;}
.x79_c00446{left:219.840000pt;}
.x57_c00446{left:220.953333pt;}
.x7f_c00446{left:222.480000pt;}
.x15_c00446{left:225.841333pt;}
.x62_c00446{left:227.689048pt;}
.x3b_c00446{left:230.467781pt;}
.x45_c00446{left:232.379591pt;}
.x42_c00446{left:236.296136pt;}
.x88_c00446{left:239.181333pt;}
.x3_c00446{left:240.960000pt;}
.x68_c00446{left:243.043973pt;}
.x18_c00446{left:246.240000pt;}
.xc_c00446{left:247.341333pt;}
.x46_c00446{left:250.611971pt;}
.x58_c00446{left:259.113333pt;}
.x7a_c00446{left:260.160000pt;}
.x16_c00446{left:262.801333pt;}
.x29_c00446{left:264.802667pt;}
.x3c_c00446{left:266.218395pt;}
.x47_c00446{left:268.673701pt;}
.xd_c00446{left:270.812000pt;}
.x1e_c00446{left:272.726667pt;}
.x4_c00446{left:274.080000pt;}
.x2f_c00446{left:276.012241pt;}
.x35_c00446{left:280.596000pt;}
.x17_c00446{left:283.921333pt;}
.x1f_c00446{left:288.378667pt;}
.x4f_c00446{left:290.072867pt;}
.x5_c00446{left:291.600000pt;}
.x80_c00446{left:292.560000pt;}
.x63_c00446{left:293.475332pt;}
.x24_c00446{left:296.275771pt;}
.xe_c00446{left:297.697333pt;}
.x2a_c00446{left:301.064000pt;}
.x72_c00446{left:302.529203pt;}
.x43_c00446{left:303.486385pt;}
.x3d_c00446{left:304.627571pt;}
.x48_c00446{left:307.013041pt;}
.x50_c00446{left:311.200867pt;}
.x69_c00446{left:313.834225pt;}
.xf_c00446{left:317.605333pt;}
.x89_c00446{left:324.785333pt;}
.x6_c00446{left:326.160000pt;}
.x49_c00446{left:329.333213pt;}
.x25_c00446{left:331.576397pt;}
.x3e_c00446{left:334.150427pt;}
.x6a_c00446{left:336.386520pt;}
.x59_c00446{left:339.642667pt;}
.x30_c00446{left:341.057897pt;}
.x73_c00446{left:342.406536pt;}
.x20_c00446{left:347.598667pt;}
.x2b_c00446{left:356.558667pt;}
.x7_c00446{left:358.560000pt;}
.x10_c00446{left:360.340000pt;}
.x4a_c00446{left:365.581991pt;}
.x21_c00446{left:368.490667pt;}
.x6b_c00446{left:370.016287pt;}
.x74_c00446{left:371.923869pt;}
.x8d_c00446{left:374.856000pt;}
.x3f_c00446{left:378.212711pt;}
.x36_c00446{left:381.218667pt;}
.x26_c00446{left:383.749976pt;}
.x51_c00446{left:385.319533pt;}
.x7b_c00446{left:386.880000pt;}
.x8_c00446{left:390.720000pt;}
.x31_c00446{left:392.182547pt;}
.x11_c00446{left:400.608000pt;}
.x75_c00446{left:402.198536pt;}
.x6c_c00446{left:407.928772pt;}
.x19_c00446{left:411.120000pt;}
.x8a_c00446{left:414.010667pt;}
.x81_c00446{left:414.960000pt;}
.x4b_c00446{left:420.059165pt;}
.x6d_c00446{left:423.056963pt;}
.x5a_c00446{left:428.354667pt;}
.x2c_c00446{left:431.142667pt;}
.x6e_c00446{left:436.045136pt;}
.x37_c00446{left:443.706667pt;}
.x82_c00446{left:445.200000pt;}
.x5b_c00446{left:448.476000pt;}
.x38_c00446{left:452.726667pt;}
.x4c_c00446{left:454.901345pt;}
.x5c_c00446{left:460.474667pt;}
.x6f_c00446{left:465.502851pt;}
.x83_c00446{left:473.520000pt;}
.x64_c00446{left:476.942565pt;}
.x70_c00446{left:481.804392pt;}
.x84_c00446{left:482.880000pt;}
.x85_c00446{left:496.080000pt;}
.x5d_c00446{left:516.552000pt;}
.x90_c00446{left:549.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m24_c00447{transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);}
.m9f_c00447{transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025715,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{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);}
.m4c_c00447{transform:matrix(0.063185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063185,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);}
.me3_c00447{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);}
.m6_c00447{transform:matrix(0.142310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142310,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142895,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{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);}
.m3e_c00447{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);}
.md5_c00447{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);}
.md_c00447{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_c00447{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);}
.mb3_c00447{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);}
.m5d_c00447{transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159735,0.000000,0.000000,0.250000,0,0);}
.mae_c00447{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.mea_c00447{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);}
.m8c_c00447{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);}
.m62_c00447{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);}
.m7d_c00447{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);}
.m7e_c00447{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);}
.md1_c00447{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);}
.mce_c00447{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);}
.m82_c00447{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);}
.ma_c00447{transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{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);}
.mad_c00447{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.mac_c00447{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);}
.m3c_c00447{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);}
.mc5_c00447{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);}
.m6c_c00447{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);}
.mb1_c00447{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);}
.maf_c00447{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);}
.m29_c00447{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);}
.m8a_c00447{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);}
.m1_c00447{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);}
.mb0_c00447{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);}
.m75_c00447{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);}
.me0_c00447{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);}
.m65_c00447{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);}
.m5e_c00447{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);}
.me4_c00447{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);}
.ma8_c00447{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);}
.m38_c00447{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);}
.mca_c00447{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);}
.m8_c00447{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);}
.m1e_c00447{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);}
.mb2_c00447{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);}
.mc9_c00447{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);}
.m39_c00447{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);}
.m4_c00447{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);}
.mb9_c00447{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);}
.m18_c00447{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);}
.m46_c00447{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{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);}
.ma7_c00447{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);}
.mb_c00447{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);}
.ma9_c00447{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_c00447{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);}
.md2_c00447{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);}
.mcf_c00447{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);}
.m56_c00447{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);}
.m8d_c00447{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);}
.mc4_c00447{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);}
.m84_c00447{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);}
.m51_c00447{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);}
.m7f_c00447{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);}
.m11_c00447{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);}
.m88_c00447{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);}
.m53_c00447{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);}
.mc1_c00447{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);}
.m3b_c00447{transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);}
.md8_c00447{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);}
.m83_c00447{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);}
.mbf_c00447{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);}
.m86_c00447{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);}
.m49_c00447{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);}
.m3_c00447{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);}
.m57_c00447{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);}
.md4_c00447{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);}
.mf5_c00447{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);}
.m77_c00447{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);}
.mcd_c00447{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);}
.m50_c00447{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);}
.m1f_c00447{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);}
.mc7_c00447{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);}
.m5_c00447{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);}
.mc8_c00447{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);}
.m7_c00447{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);}
.mcb_c00447{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);}
.mf_c00447{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);}
.m9e_c00447{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);}
.m81_c00447{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);}
.mb4_c00447{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);}
.mc_c00447{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);}
.m80_c00447{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);}
.m4b_c00447{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);}
.m4e_c00447{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);}
.m3f_c00447{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);}
.m47_c00447{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);}
.m89_c00447{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);}
.m4f_c00447{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);}
.mbc_c00447{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);}
.me_c00447{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);}
.md0_c00447{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);}
.m44_c00447{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);}
.m55_c00447{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);}
.m64_c00447{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);}
.m76_c00447{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);}
.mc2_c00447{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);}
.mbb_c00447{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);}
.m28_c00447{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);}
.m1c_c00447{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);}
.ma3_c00447{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);}
.m1d_c00447{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);}
.m13_c00447{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);}
.m27_c00447{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);}
.mab_c00447{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);}
.md3_c00447{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);}
.mbd_c00447{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);}
.mba_c00447{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);}
.mcc_c00447{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);}
.ma6_c00447{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);}
.mbe_c00447{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);}
.mc3_c00447{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);}
.mda_c00447{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);}
.m10_c00447{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);}
.m7c_c00447{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);}
.md6_c00447{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{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);}
.m67_c00447{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);}
.m54_c00447{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);}
.m85_c00447{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);}
.m1b_c00447{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);}
.m26_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);}
.m5a_c00447{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);}
.m9d_c00447{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);}
.m66_c00447{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);}
.m58_c00447{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);}
.m16_c00447{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);}
.m93_c00447{transform:matrix(0.217446,0.003262,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217446,0.003262,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217446,0.003262,-0.003750,0.249972,0,0);}
.m59_c00447{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);}
.mec_c00447{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);}
.m1a_c00447{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);}
.md7_c00447{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);}
.mde_c00447{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{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);}
.me2_c00447{transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);}
.me9_c00447{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);}
.m43_c00447{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);}
.mf0_c00447{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);}
.m5c_c00447{transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);}
.mc0_c00447{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);}
.m69_c00447{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{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);}
.me7_c00447{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);}
.mef_c00447{transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{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_c00447{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);}
.m6d_c00447{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{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);}
.m48_c00447{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.mc6_c00447{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);}
.maa_c00447{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);}
.m30_c00447{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);}
.m0_c00447{transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{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);}
.med_c00447{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);}
.m12_c00447{transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242985,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);}
.ma2_c00447{transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{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);}
.me5_c00447{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);}
.m87_c00447{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.mb6_c00447{transform:matrix(0.245929,0.005902,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245929,0.005902,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245929,0.005902,-0.005998,0.249928,0,0);}
.m2f_c00447{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.mee_c00447{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);}
.m14_c00447{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);}
.m17_c00447{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m7b_c00447{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.mf6_c00447{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m74_c00447{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);}
.mb8_c00447{transform:matrix(0.255007,0.006120,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255007,0.006120,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255007,0.006120,-0.005998,0.249928,0,0);}
.m7a_c00447{transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255840,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.257555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257555,0.000000,0.000000,0.250000,0,0);}
.m90_c00447{transform:matrix(0.259736,0.003896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259736,0.003896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259736,0.003896,-0.003750,0.249972,0,0);}
.mb7_c00447{transform:matrix(0.260710,0.006257,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260710,0.006257,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260710,0.006257,-0.005998,0.249928,0,0);}
.m91_c00447{transform:matrix(0.261211,0.003918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261211,0.003918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261211,0.003918,-0.003750,0.249972,0,0);}
.mf1_c00447{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);}
.mf3_c00447{transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269740,0.004046,-0.003750,0.249972,0,0);}
.ma5_c00447{transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.270650,0.004060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270650,0.004060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270650,0.004060,-0.003750,0.249972,0,0);}
.me6_c00447{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);}
.m32_c00447{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);}
.m97_c00447{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.276865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276865,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);}
.ma0_c00447{transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.280283,0.004204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280283,0.004204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280283,0.004204,-0.003750,0.249972,0,0);}
.m45_c00447{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.mf2_c00447{transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282135,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.282950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282950,0.000000,0.000000,0.250000,0,0);}
.meb_c00447{transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{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);}
.m98_c00447{transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288580,0.000000,0.000000,0.250000,0,0);}
.m94_c00447{transform:matrix(0.289922,0.004349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289922,0.004349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289922,0.004349,-0.003750,0.249972,0,0);}
.m22_c00447{transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290240,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);}
.mdd_c00447{transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294230,0.000000,0.000000,0.250000,0,0);}
.md9_c00447{transform:matrix(0.300810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300810,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302495,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304910,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.313080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313080,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330075,0.000000,0.000000,0.250000,0,0);}
.m9c_c00447{transform:matrix(0.336145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336145,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.345895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345895,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.347730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00447{transform:matrix(0.355735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355735,0.000000,0.000000,0.250000,0,0);}
.mdb_c00447{transform:matrix(0.369185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369185,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370460,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.379805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379805,0.000000,0.000000,0.250000,0,0);}
.me1_c00447{transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385270,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.398200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398200,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);}
.ma4_c00447{transform:matrix(0.445885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445885,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.458045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458045,0.000000,0.000000,0.250000,0,0);}
.mf4_c00447{transform:matrix(0.459485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459485,0.000000,0.000000,0.250000,0,0);}
.mf7_c00447{transform:matrix(0.468605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468605,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.469910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469910,0.000000,0.000000,0.250000,0,0);}
.mb5_c00447{transform:matrix(0.474273,0.011383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.474273,0.011383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.474273,0.011383,-0.005998,0.249928,0,0);}
.m2a_c00447{transform:matrix(0.486510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486510,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.501530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501530,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.527615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527615,0.000000,0.000000,0.250000,0,0);}
.mdc_c00447{transform:matrix(0.541180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541180,0.000000,0.000000,0.250000,0,0);}
.me8_c00447{transform:matrix(0.547765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547765,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);}
.ma1_c00447{transform:matrix(0.742000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00447{transform:matrix(0.790565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790565,0.000000,0.000000,0.250000,0,0);}
.m9b_c00447{transform:matrix(1.008000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.008000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.008000,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;}
.fsb_c00447{font-size:25.200000px;}
.fsa_c00447{font-size:26.250000px;}
.fs16_c00447{font-size:46.200000px;}
.fs3_c00447{font-size:47.250000px;}
.fs2_c00447{font-size:50.400000px;}
.fs14_c00447{font-size:51.450000px;}
.fs10_c00447{font-size:51.455788px;}
.fs1_c00447{font-size:52.500000px;}
.fs15_c00447{font-size:53.550000px;}
.fs4_c00447{font-size:54.600000px;}
.fs0_c00447{font-size:58.800000px;}
.fs11_c00447{font-size:61.950000px;}
.fs12_c00447{font-size:64.050000px;}
.fsf_c00447{font-size:68.250000px;}
.fse_c00447{font-size:70.350000px;}
.fsd_c00447{font-size:71.400000px;}
.fs8_c00447{font-size:72.450000px;}
.fs13_c00447{font-size:72.470863px;}
.fs9_c00447{font-size:73.500000px;}
.fsc_c00447{font-size:75.600000px;}
.fs7_c00447{font-size:84.000000px;}
.fs5_c00447{font-size:90.300000px;}
.fs6_c00447{font-size:100.800000px;}
.y0_c00447{bottom:0.000000px;}
.y74_c00447{bottom:169.530000px;}
.y65_c00447{bottom:172.207500px;}
.y73_c00447{bottom:187.767000px;}
.y64_c00447{bottom:190.455000px;}
.y72_c00447{bottom:205.312500px;}
.y71_c00447{bottom:241.242000px;}
.y70_c00447{bottom:259.087500px;}
.y63_c00447{bottom:262.074000px;}
.y62_c00447{bottom:277.830000px;}
.y61_c00447{bottom:278.416223px;}
.y60_c00447{bottom:278.788845px;}
.y5f_c00447{bottom:279.137460px;}
.y5e_c00447{bottom:280.011922px;}
.y5d_c00447{bottom:280.247655px;}
.y5c_c00447{bottom:280.867530px;}
.y5b_c00447{bottom:281.613000px;}
.y6f_c00447{bottom:295.420500px;}
.yc_c00447{bottom:297.372000px;}
.y6e_c00447{bottom:313.707000px;}
.yb_c00447{bottom:315.912000px;}
.y6d_c00447{bottom:331.413000px;}
.ya_c00447{bottom:333.673500px;}
.y6c_c00447{bottom:349.617000px;}
.y9_c00447{bottom:350.571000px;}
.y8_c00447{bottom:350.902500px;}
.y7_c00447{bottom:351.819000px;}
.y6_c00447{bottom:352.119000px;}
.y5_c00447{bottom:352.657500px;}
.y4_c00447{bottom:352.917000px;}
.y3_c00447{bottom:353.379000px;}
.y2_c00447{bottom:353.701500px;}
.y6b_c00447{bottom:367.749000px;}
.y1_c00447{bottom:369.640500px;}
.y5a_c00447{bottom:415.888500px;}
.y59_c00447{bottom:416.665500px;}
.y58_c00447{bottom:417.028500px;}
.y57_c00447{bottom:417.510000px;}
.y56_c00447{bottom:418.032000px;}
.y55_c00447{bottom:418.470000px;}
.y54_c00447{bottom:418.662000px;}
.y53_c00447{bottom:419.424000px;}
.y52_c00447{bottom:419.857500px;}
.y51_c00447{bottom:439.162500px;}
.y50_c00447{bottom:439.861500px;}
.y4f_c00447{bottom:440.400000px;}
.y4e_c00447{bottom:440.917500px;}
.y4d_c00447{bottom:441.246000px;}
.y4c_c00447{bottom:441.742500px;}
.y4b_c00447{bottom:442.059000px;}
.y4a_c00447{bottom:442.516500px;}
.y49_c00447{bottom:442.807500px;}
.y48_c00447{bottom:463.720500px;}
.y47_c00447{bottom:484.758000px;}
.y46_c00447{bottom:485.113500px;}
.y45_c00447{bottom:485.473500px;}
.y44_c00447{bottom:486.088500px;}
.y43_c00447{bottom:486.331500px;}
.y42_c00447{bottom:487.009500px;}
.y41_c00447{bottom:487.510500px;}
.y40_c00447{bottom:487.728000px;}
.y3f_c00447{bottom:488.167500px;}
.y3e_c00447{bottom:507.478500px;}
.y3d_c00447{bottom:507.847500px;}
.y3c_c00447{bottom:508.084500px;}
.y3b_c00447{bottom:508.524000px;}
.y3a_c00447{bottom:508.650000px;}
.y39_c00447{bottom:508.909500px;}
.y38_c00447{bottom:509.466000px;}
.y37_c00447{bottom:509.802000px;}
.y36_c00447{bottom:510.028500px;}
.y35_c00447{bottom:510.366000px;}
.y34_c00447{bottom:510.577500px;}
.y33_c00447{bottom:530.052000px;}
.y32_c00447{bottom:530.412000px;}
.y31_c00447{bottom:530.655000px;}
.y30_c00447{bottom:531.106500px;}
.y2f_c00447{bottom:531.762000px;}
.y2e_c00447{bottom:532.180500px;}
.y2d_c00447{bottom:532.479000px;}
.y2c_c00447{bottom:532.899000px;}
.y2b_c00447{bottom:533.182500px;}
.y2a_c00447{bottom:533.526000px;}
.y29_c00447{bottom:553.479000px;}
.y28_c00447{bottom:553.824000px;}
.y27_c00447{bottom:554.299500px;}
.y26_c00447{bottom:554.751000px;}
.y25_c00447{bottom:555.042000px;}
.y24_c00447{bottom:555.528000px;}
.y23_c00447{bottom:555.811500px;}
.y22_c00447{bottom:556.203000px;}
.y20_c00447{bottom:576.900000px;}
.y21_c00447{bottom:576.912000px;}
.y1f_c00447{bottom:577.248000px;}
.y1e_c00447{bottom:577.578000px;}
.y1d_c00447{bottom:578.028000px;}
.y1c_c00447{bottom:578.232000px;}
.y1b_c00447{bottom:578.560500px;}
.y1a_c00447{bottom:579.046500px;}
.y19_c00447{bottom:579.255000px;}
.y18_c00447{bottom:579.721500px;}
.y17_c00447{bottom:579.961500px;}
.y16_c00447{bottom:601.797000px;}
.y15_c00447{bottom:624.163500px;}
.y14_c00447{bottom:647.796000px;}
.y6a_c00447{bottom:668.444736px;}
.y69_c00447{bottom:669.514728px;}
.y68_c00447{bottom:670.162836px;}
.y67_c00447{bottom:672.037500px;}
.y13_c00447{bottom:677.013000px;}
.y12_c00447{bottom:681.963000px;}
.y11_c00447{bottom:693.001500px;}
.y10_c00447{bottom:717.361500px;}
.yf_c00447{bottom:739.669500px;}
.ye_c00447{bottom:778.477500px;}
.yd_c00447{bottom:820.372500px;}
.y66_c00447{bottom:820.530000px;}
.hd_c00447{height:25.200000px;}
.hc_c00447{height:26.250000px;}
.h18_c00447{height:46.200000px;}
.h5_c00447{height:47.250000px;}
.h4_c00447{height:50.400000px;}
.h16_c00447{height:51.450000px;}
.h12_c00447{height:51.455788px;}
.h3_c00447{height:52.500000px;}
.h17_c00447{height:53.550000px;}
.h6_c00447{height:54.600000px;}
.h2_c00447{height:58.800000px;}
.h13_c00447{height:61.950000px;}
.h14_c00447{height:64.050000px;}
.h11_c00447{height:68.250000px;}
.h10_c00447{height:70.350000px;}
.hf_c00447{height:71.400000px;}
.ha_c00447{height:72.450000px;}
.h15_c00447{height:72.470863px;}
.hb_c00447{height:73.500000px;}
.he_c00447{height:75.600000px;}
.h9_c00447{height:84.000000px;}
.h7_c00447{height:90.300000px;}
.h8_c00447{height:100.800000px;}
.h0_c00447{height:1008.450000px;}
.h1_c00447{height:1008.750000px;}
.w1_c00447{width:689.250000px;}
.w0_c00447{width:689.550000px;}
.x0_c00447{left:0.000000px;}
.x8_c00447{left:135.184500px;}
.xf_c00447{left:137.160000px;}
.x75_c00447{left:138.240000px;}
.x77_c00447{left:140.130000px;}
.x15_c00447{left:147.150000px;}
.x1_c00447{left:148.230000px;}
.x12_c00447{left:152.550000px;}
.x9_c00447{left:156.730500px;}
.x70_c00447{left:162.000000px;}
.x59_c00447{left:164.425500px;}
.x2b_c00447{left:168.750000px;}
.x52_c00447{left:169.899000px;}
.x2_c00447{left:171.720000px;}
.x78_c00447{left:181.440000px;}
.x71_c00447{left:182.790000px;}
.xa_c00447{left:187.500000px;}
.x4c_c00447{left:193.177500px;}
.x5f_c00447{left:194.239500px;}
.x35_c00447{left:195.358500px;}
.x16_c00447{left:199.800000px;}
.x1f_c00447{left:201.690000px;}
.xb_c00447{left:204.775500px;}
.x43_c00447{left:206.467500px;}
.x79_c00447{left:208.710000px;}
.x53_c00447{left:209.907000px;}
.x3e_c00447{left:212.404500px;}
.x10_c00447{left:213.570000px;}
.x3_c00447{left:216.540000px;}
.x5a_c00447{left:217.885500px;}
.x1c_c00447{left:224.640000px;}
.x2c_c00447{left:227.340000px;}
.x72_c00447{left:228.420000px;}
.x54_c00447{left:229.617000px;}
.x17_c00447{left:231.390000px;}
.x44_c00447{left:238.014000px;}
.x4_c00447{left:240.840000px;}
.x3f_c00447{left:243.948000px;}
.x36_c00447{left:247.201500px;}
.x5b_c00447{left:250.555500px;}
.x4d_c00447{left:255.837000px;}
.x60_c00447{left:258.763500px;}
.xc_c00447{left:260.665500px;}
.x2d_c00447{left:264.870000px;}
.x20_c00447{left:269.190000px;}
.x37_c00447{left:270.409500px;}
.x18_c00447{left:274.590000px;}
.x13_c00447{left:276.750000px;}
.x7a_c00447{left:278.370000px;}
.x5_c00447{left:282.690000px;}
.x45_c00447{left:284.730000px;}
.x22_c00447{left:286.200000px;}
.x1b_c00447{left:288.630000px;}
.x19_c00447{left:291.330000px;}
.x2e_c00447{left:292.410000px;}
.x40_c00447{left:297.978000px;}
.x2a_c00447{left:300.240000px;}
.x67_c00447{left:302.251500px;}
.x23_c00447{left:304.020000px;}
.x5c_c00447{left:309.685500px;}
.x6_c00447{left:311.850000px;}
.x1e_c00447{left:314.280000px;}
.x73_c00447{left:315.630000px;}
.x46_c00447{left:317.929500px;}
.xd_c00447{left:321.736500px;}
.x63_c00447{left:322.819500px;}
.x38_c00447{left:324.415500px;}
.x68_c00447{left:325.492500px;}
.x61_c00447{left:327.408000px;}
.x7_c00447{left:330.750000px;}
.x27_c00447{left:333.180000px;}
.x11_c00447{left:334.530000px;}
.x14_c00447{left:335.610000px;}
.x55_c00447{left:336.802500px;}
.x1a_c00447{left:338.040000px;}
.x21_c00447{left:342.630000px;}
.xe_c00447{left:343.884000px;}
.x76_c00447{left:345.330000px;}
.x24_c00447{left:346.950000px;}
.x69_c00447{left:350.334000px;}
.x28_c00447{left:351.810000px;}
.x2f_c00447{left:353.430000px;}
.x4e_c00447{left:354.967500px;}
.x56_c00447{left:358.927500px;}
.x39_c00447{left:360.867000px;}
.x47_c00447{left:364.360500px;}
.x64_c00447{left:366.267000px;}
.x1d_c00447{left:368.010000px;}
.x25_c00447{left:369.360000px;}
.x62_c00447{left:370.549500px;}
.x29_c00447{left:376.920000px;}
.x34_c00447{left:379.080000px;}
.x41_c00447{left:380.571000px;}
.x26_c00447{left:382.590000px;}
.x4f_c00447{left:383.860500px;}
.x6a_c00447{left:386.640000px;}
.x95_c00447{left:387.720000px;}
.x9d_c00447{left:388.800000px;}
.x30_c00447{left:398.520000px;}
.x5d_c00447{left:401.215500px;}
.x65_c00447{left:406.452000px;}
.x57_c00447{left:414.819000px;}
.x87_c00447{left:416.610000px;}
.x8b_c00447{left:423.360000px;}
.x5e_c00447{left:425.515500px;}
.x7b_c00447{left:428.760000px;}
.x3a_c00447{left:433.470000px;}
.x48_c00447{left:437.271000px;}
.x31_c00447{left:443.610000px;}
.x50_c00447{left:446.704500px;}
.x9e_c00447{left:447.930000px;}
.x83_c00447{left:449.820000px;}
.x7f_c00447{left:453.600000px;}
.x6b_c00447{left:456.030000px;}
.x8c_c00447{left:457.920000px;}
.x91_c00447{left:462.240000px;}
.x96_c00447{left:463.590000px;}
.x7c_c00447{left:464.877000px;}
.x32_c00447{left:468.990000px;}
.x3b_c00447{left:470.163000px;}
.x42_c00447{left:471.832500px;}
.x51_c00447{left:472.960500px;}
.x88_c00447{left:474.390000px;}
.x58_c00447{left:479.863500px;}
.x9f_c00447{left:482.220000px;}
.x8d_c00447{left:485.190000px;}
.x49_c00447{left:487.489500px;}
.x97_c00447{left:490.050000px;}
.x7d_c00447{left:491.881500px;}
.x89_c00447{left:498.420000px;}
.x66_c00447{left:501.487500px;}
.x80_c00447{left:502.740000px;}
.xa0_c00447{left:504.090000px;}
.x3d_c00447{left:507.561000px;}
.x3c_c00447{left:508.876500px;}
.x4a_c00447{left:514.492500px;}
.x33_c00447{left:515.970000px;}
.x92_c00447{left:518.670000px;}
.x8e_c00447{left:520.020000px;}
.x84_c00447{left:522.180000px;}
.x81_c00447{left:525.690000px;}
.xa1_c00447{left:527.580000px;}
.x6c_c00447{left:530.550000px;}
.x7e_c00447{left:536.464500px;}
.x98_c00447{left:543.780000px;}
.x8f_c00447{left:545.940000px;}
.x99_c00447{left:551.340000px;}
.x4b_c00447{left:554.544000px;}
.xa2_c00447{left:558.090000px;}
.x6d_c00447{left:559.440000px;}
.x9a_c00447{left:569.700000px;}
.x8a_c00447{left:571.320000px;}
.x74_c00447{left:573.210000px;}
.x93_c00447{left:575.100000px;}
.x85_c00447{left:576.180000px;}
.xa3_c00447{left:577.530000px;}
.x6e_c00447{left:578.880000px;}
.x94_c00447{left:585.090000px;}
.x82_c00447{left:587.520000px;}
.x9b_c00447{left:590.760000px;}
.x86_c00447{left:596.160000px;}
.x90_c00447{left:598.050000px;}
.xa4_c00447{left:611.550000px;}
.x6f_c00447{left:635.040000px;}
.x9c_c00447{left:638.820000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fsb_c00447{font-size:22.400000pt;}
.fsa_c00447{font-size:23.333333pt;}
.fs16_c00447{font-size:41.066667pt;}
.fs3_c00447{font-size:42.000000pt;}
.fs2_c00447{font-size:44.800000pt;}
.fs14_c00447{font-size:45.733333pt;}
.fs10_c00447{font-size:45.738478pt;}
.fs1_c00447{font-size:46.666667pt;}
.fs15_c00447{font-size:47.600000pt;}
.fs4_c00447{font-size:48.533333pt;}
.fs0_c00447{font-size:52.266667pt;}
.fs11_c00447{font-size:55.066667pt;}
.fs12_c00447{font-size:56.933333pt;}
.fsf_c00447{font-size:60.666667pt;}
.fse_c00447{font-size:62.533333pt;}
.fsd_c00447{font-size:63.466667pt;}
.fs8_c00447{font-size:64.400000pt;}
.fs13_c00447{font-size:64.418545pt;}
.fs9_c00447{font-size:65.333333pt;}
.fsc_c00447{font-size:67.200000pt;}
.fs7_c00447{font-size:74.666667pt;}
.fs5_c00447{font-size:80.266667pt;}
.fs6_c00447{font-size:89.600000pt;}
.y0_c00447{bottom:0.000000pt;}
.y74_c00447{bottom:150.693333pt;}
.y65_c00447{bottom:153.073333pt;}
.y73_c00447{bottom:166.904000pt;}
.y64_c00447{bottom:169.293333pt;}
.y72_c00447{bottom:182.500000pt;}
.y71_c00447{bottom:214.437333pt;}
.y70_c00447{bottom:230.300000pt;}
.y63_c00447{bottom:232.954667pt;}
.y62_c00447{bottom:246.960000pt;}
.y61_c00447{bottom:247.481087pt;}
.y60_c00447{bottom:247.812307pt;}
.y5f_c00447{bottom:248.122187pt;}
.y5e_c00447{bottom:248.899487pt;}
.y5d_c00447{bottom:249.109027pt;}
.y5c_c00447{bottom:249.660027pt;}
.y5b_c00447{bottom:250.322667pt;}
.y6f_c00447{bottom:262.596000pt;}
.yc_c00447{bottom:264.330667pt;}
.y6e_c00447{bottom:278.850667pt;}
.yb_c00447{bottom:280.810667pt;}
.y6d_c00447{bottom:294.589333pt;}
.ya_c00447{bottom:296.598667pt;}
.y6c_c00447{bottom:310.770667pt;}
.y9_c00447{bottom:311.618667pt;}
.y8_c00447{bottom:311.913333pt;}
.y7_c00447{bottom:312.728000pt;}
.y6_c00447{bottom:312.994667pt;}
.y5_c00447{bottom:313.473333pt;}
.y4_c00447{bottom:313.704000pt;}
.y3_c00447{bottom:314.114667pt;}
.y2_c00447{bottom:314.401333pt;}
.y6b_c00447{bottom:326.888000pt;}
.y1_c00447{bottom:328.569333pt;}
.y5a_c00447{bottom:369.678667pt;}
.y59_c00447{bottom:370.369333pt;}
.y58_c00447{bottom:370.692000pt;}
.y57_c00447{bottom:371.120000pt;}
.y56_c00447{bottom:371.584000pt;}
.y55_c00447{bottom:371.973333pt;}
.y54_c00447{bottom:372.144000pt;}
.y53_c00447{bottom:372.821333pt;}
.y52_c00447{bottom:373.206667pt;}
.y51_c00447{bottom:390.366667pt;}
.y50_c00447{bottom:390.988000pt;}
.y4f_c00447{bottom:391.466667pt;}
.y4e_c00447{bottom:391.926667pt;}
.y4d_c00447{bottom:392.218667pt;}
.y4c_c00447{bottom:392.660000pt;}
.y4b_c00447{bottom:392.941333pt;}
.y4a_c00447{bottom:393.348000pt;}
.y49_c00447{bottom:393.606667pt;}
.y48_c00447{bottom:412.196000pt;}
.y47_c00447{bottom:430.896000pt;}
.y46_c00447{bottom:431.212000pt;}
.y45_c00447{bottom:431.532000pt;}
.y44_c00447{bottom:432.078667pt;}
.y43_c00447{bottom:432.294667pt;}
.y42_c00447{bottom:432.897333pt;}
.y41_c00447{bottom:433.342667pt;}
.y40_c00447{bottom:433.536000pt;}
.y3f_c00447{bottom:433.926667pt;}
.y3e_c00447{bottom:451.092000pt;}
.y3d_c00447{bottom:451.420000pt;}
.y3c_c00447{bottom:451.630667pt;}
.y3b_c00447{bottom:452.021333pt;}
.y3a_c00447{bottom:452.133333pt;}
.y39_c00447{bottom:452.364000pt;}
.y38_c00447{bottom:452.858667pt;}
.y37_c00447{bottom:453.157333pt;}
.y36_c00447{bottom:453.358667pt;}
.y35_c00447{bottom:453.658667pt;}
.y34_c00447{bottom:453.846667pt;}
.y33_c00447{bottom:471.157333pt;}
.y32_c00447{bottom:471.477333pt;}
.y31_c00447{bottom:471.693333pt;}
.y30_c00447{bottom:472.094667pt;}
.y2f_c00447{bottom:472.677333pt;}
.y2e_c00447{bottom:473.049333pt;}
.y2d_c00447{bottom:473.314667pt;}
.y2c_c00447{bottom:473.688000pt;}
.y2b_c00447{bottom:473.940000pt;}
.y2a_c00447{bottom:474.245333pt;}
.y29_c00447{bottom:491.981333pt;}
.y28_c00447{bottom:492.288000pt;}
.y27_c00447{bottom:492.710667pt;}
.y26_c00447{bottom:493.112000pt;}
.y25_c00447{bottom:493.370667pt;}
.y24_c00447{bottom:493.802667pt;}
.y23_c00447{bottom:494.054667pt;}
.y22_c00447{bottom:494.402667pt;}
.y20_c00447{bottom:512.800000pt;}
.y21_c00447{bottom:512.810667pt;}
.y1f_c00447{bottom:513.109333pt;}
.y1e_c00447{bottom:513.402667pt;}
.y1d_c00447{bottom:513.802667pt;}
.y1c_c00447{bottom:513.984000pt;}
.y1b_c00447{bottom:514.276000pt;}
.y1a_c00447{bottom:514.708000pt;}
.y19_c00447{bottom:514.893333pt;}
.y18_c00447{bottom:515.308000pt;}
.y17_c00447{bottom:515.521333pt;}
.y16_c00447{bottom:534.930667pt;}
.y15_c00447{bottom:554.812000pt;}
.y14_c00447{bottom:575.818667pt;}
.y6a_c00447{bottom:594.173099pt;}
.y69_c00447{bottom:595.124203pt;}
.y68_c00447{bottom:595.700299pt;}
.y67_c00447{bottom:597.366667pt;}
.y13_c00447{bottom:601.789333pt;}
.y12_c00447{bottom:606.189333pt;}
.y11_c00447{bottom:616.001333pt;}
.y10_c00447{bottom:637.654667pt;}
.yf_c00447{bottom:657.484000pt;}
.ye_c00447{bottom:691.980000pt;}
.yd_c00447{bottom:729.220000pt;}
.y66_c00447{bottom:729.360000pt;}
.hd_c00447{height:22.400000pt;}
.hc_c00447{height:23.333333pt;}
.h18_c00447{height:41.066667pt;}
.h5_c00447{height:42.000000pt;}
.h4_c00447{height:44.800000pt;}
.h16_c00447{height:45.733333pt;}
.h12_c00447{height:45.738478pt;}
.h3_c00447{height:46.666667pt;}
.h17_c00447{height:47.600000pt;}
.h6_c00447{height:48.533333pt;}
.h2_c00447{height:52.266667pt;}
.h13_c00447{height:55.066667pt;}
.h14_c00447{height:56.933333pt;}
.h11_c00447{height:60.666667pt;}
.h10_c00447{height:62.533333pt;}
.hf_c00447{height:63.466667pt;}
.ha_c00447{height:64.400000pt;}
.h15_c00447{height:64.418545pt;}
.hb_c00447{height:65.333333pt;}
.he_c00447{height:67.200000pt;}
.h9_c00447{height:74.666667pt;}
.h7_c00447{height:80.266667pt;}
.h8_c00447{height:89.600000pt;}
.h0_c00447{height:896.400000pt;}
.h1_c00447{height:896.666667pt;}
.w1_c00447{width:612.666667pt;}
.w0_c00447{width:612.933333pt;}
.x0_c00447{left:0.000000pt;}
.x8_c00447{left:120.164000pt;}
.xf_c00447{left:121.920000pt;}
.x75_c00447{left:122.880000pt;}
.x77_c00447{left:124.560000pt;}
.x15_c00447{left:130.800000pt;}
.x1_c00447{left:131.760000pt;}
.x12_c00447{left:135.600000pt;}
.x9_c00447{left:139.316000pt;}
.x70_c00447{left:144.000000pt;}
.x59_c00447{left:146.156000pt;}
.x2b_c00447{left:150.000000pt;}
.x52_c00447{left:151.021333pt;}
.x2_c00447{left:152.640000pt;}
.x78_c00447{left:161.280000pt;}
.x71_c00447{left:162.480000pt;}
.xa_c00447{left:166.666667pt;}
.x4c_c00447{left:171.713333pt;}
.x5f_c00447{left:172.657333pt;}
.x35_c00447{left:173.652000pt;}
.x16_c00447{left:177.600000pt;}
.x1f_c00447{left:179.280000pt;}
.xb_c00447{left:182.022667pt;}
.x43_c00447{left:183.526667pt;}
.x79_c00447{left:185.520000pt;}
.x53_c00447{left:186.584000pt;}
.x3e_c00447{left:188.804000pt;}
.x10_c00447{left:189.840000pt;}
.x3_c00447{left:192.480000pt;}
.x5a_c00447{left:193.676000pt;}
.x1c_c00447{left:199.680000pt;}
.x2c_c00447{left:202.080000pt;}
.x72_c00447{left:203.040000pt;}
.x54_c00447{left:204.104000pt;}
.x17_c00447{left:205.680000pt;}
.x44_c00447{left:211.568000pt;}
.x4_c00447{left:214.080000pt;}
.x3f_c00447{left:216.842667pt;}
.x36_c00447{left:219.734667pt;}
.x5b_c00447{left:222.716000pt;}
.x4d_c00447{left:227.410667pt;}
.x60_c00447{left:230.012000pt;}
.xc_c00447{left:231.702667pt;}
.x2d_c00447{left:235.440000pt;}
.x20_c00447{left:239.280000pt;}
.x37_c00447{left:240.364000pt;}
.x18_c00447{left:244.080000pt;}
.x13_c00447{left:246.000000pt;}
.x7a_c00447{left:247.440000pt;}
.x5_c00447{left:251.280000pt;}
.x45_c00447{left:253.093333pt;}
.x22_c00447{left:254.400000pt;}
.x1b_c00447{left:256.560000pt;}
.x19_c00447{left:258.960000pt;}
.x2e_c00447{left:259.920000pt;}
.x40_c00447{left:264.869333pt;}
.x2a_c00447{left:266.880000pt;}
.x67_c00447{left:268.668000pt;}
.x23_c00447{left:270.240000pt;}
.x5c_c00447{left:275.276000pt;}
.x6_c00447{left:277.200000pt;}
.x1e_c00447{left:279.360000pt;}
.x73_c00447{left:280.560000pt;}
.x46_c00447{left:282.604000pt;}
.xd_c00447{left:285.988000pt;}
.x63_c00447{left:286.950667pt;}
.x38_c00447{left:288.369333pt;}
.x68_c00447{left:289.326667pt;}
.x61_c00447{left:291.029333pt;}
.x7_c00447{left:294.000000pt;}
.x27_c00447{left:296.160000pt;}
.x11_c00447{left:297.360000pt;}
.x14_c00447{left:298.320000pt;}
.x55_c00447{left:299.380000pt;}
.x1a_c00447{left:300.480000pt;}
.x21_c00447{left:304.560000pt;}
.xe_c00447{left:305.674667pt;}
.x76_c00447{left:306.960000pt;}
.x24_c00447{left:308.400000pt;}
.x69_c00447{left:311.408000pt;}
.x28_c00447{left:312.720000pt;}
.x2f_c00447{left:314.160000pt;}
.x4e_c00447{left:315.526667pt;}
.x56_c00447{left:319.046667pt;}
.x39_c00447{left:320.770667pt;}
.x47_c00447{left:323.876000pt;}
.x64_c00447{left:325.570667pt;}
.x1d_c00447{left:327.120000pt;}
.x25_c00447{left:328.320000pt;}
.x62_c00447{left:329.377333pt;}
.x29_c00447{left:335.040000pt;}
.x34_c00447{left:336.960000pt;}
.x41_c00447{left:338.285333pt;}
.x26_c00447{left:340.080000pt;}
.x4f_c00447{left:341.209333pt;}
.x6a_c00447{left:343.680000pt;}
.x95_c00447{left:344.640000pt;}
.x9d_c00447{left:345.600000pt;}
.x30_c00447{left:354.240000pt;}
.x5d_c00447{left:356.636000pt;}
.x65_c00447{left:361.290667pt;}
.x57_c00447{left:368.728000pt;}
.x87_c00447{left:370.320000pt;}
.x8b_c00447{left:376.320000pt;}
.x5e_c00447{left:378.236000pt;}
.x7b_c00447{left:381.120000pt;}
.x3a_c00447{left:385.306667pt;}
.x48_c00447{left:388.685333pt;}
.x31_c00447{left:394.320000pt;}
.x50_c00447{left:397.070667pt;}
.x9e_c00447{left:398.160000pt;}
.x83_c00447{left:399.840000pt;}
.x7f_c00447{left:403.200000pt;}
.x6b_c00447{left:405.360000pt;}
.x8c_c00447{left:407.040000pt;}
.x91_c00447{left:410.880000pt;}
.x96_c00447{left:412.080000pt;}
.x7c_c00447{left:413.224000pt;}
.x32_c00447{left:416.880000pt;}
.x3b_c00447{left:417.922667pt;}
.x42_c00447{left:419.406667pt;}
.x51_c00447{left:420.409333pt;}
.x88_c00447{left:421.680000pt;}
.x58_c00447{left:426.545333pt;}
.x9f_c00447{left:428.640000pt;}
.x8d_c00447{left:431.280000pt;}
.x49_c00447{left:433.324000pt;}
.x97_c00447{left:435.600000pt;}
.x7d_c00447{left:437.228000pt;}
.x89_c00447{left:443.040000pt;}
.x66_c00447{left:445.766667pt;}
.x80_c00447{left:446.880000pt;}
.xa0_c00447{left:448.080000pt;}
.x3d_c00447{left:451.165333pt;}
.x3c_c00447{left:452.334667pt;}
.x4a_c00447{left:457.326667pt;}
.x33_c00447{left:458.640000pt;}
.x92_c00447{left:461.040000pt;}
.x8e_c00447{left:462.240000pt;}
.x84_c00447{left:464.160000pt;}
.x81_c00447{left:467.280000pt;}
.xa1_c00447{left:468.960000pt;}
.x6c_c00447{left:471.600000pt;}
.x7e_c00447{left:476.857333pt;}
.x98_c00447{left:483.360000pt;}
.x8f_c00447{left:485.280000pt;}
.x99_c00447{left:490.080000pt;}
.x4b_c00447{left:492.928000pt;}
.xa2_c00447{left:496.080000pt;}
.x6d_c00447{left:497.280000pt;}
.x9a_c00447{left:506.400000pt;}
.x8a_c00447{left:507.840000pt;}
.x74_c00447{left:509.520000pt;}
.x93_c00447{left:511.200000pt;}
.x85_c00447{left:512.160000pt;}
.xa3_c00447{left:513.360000pt;}
.x6e_c00447{left:514.560000pt;}
.x94_c00447{left:520.080000pt;}
.x82_c00447{left:522.240000pt;}
.x9b_c00447{left:525.120000pt;}
.x86_c00447{left:529.920000pt;}
.x90_c00447{left:531.600000pt;}
.xa4_c00447{left:543.600000pt;}
.x6f_c00447{left:564.480000pt;}
.x9c_c00447{left:567.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_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;}
.m7c_c00448{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);}
.m27_c00448{transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014485,0.000000,0.000000,0.250000,0,0);}
.mf4_c00448{transform:matrix(0.017296,-0.000381,0.005499,0.249940,0,0);-ms-transform:matrix(0.017296,-0.000381,0.005499,0.249940,0,0);-webkit-transform:matrix(0.017296,-0.000381,0.005499,0.249940,0,0);}
.mc8_c00448{transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035715,0.000000,0.000000,0.250000,0,0);}
.m10d_c00448{transform:matrix(0.036015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036015,0.000000,0.000000,0.250000,0,0);}
.mbb_c00448{transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053595,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.100685,-0.001007,0.002500,0.249988,0,0);-ms-transform:matrix(0.100685,-0.001007,0.002500,0.249988,0,0);-webkit-transform:matrix(0.100685,-0.001007,0.002500,0.249988,0,0);}
.m46_c00448{transform:matrix(0.117730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117730,0.000000,0.000000,0.250000,0,0);}
.mfb_c00448{transform:matrix(0.118331,-0.002603,0.005499,0.249940,0,0);-ms-transform:matrix(0.118331,-0.002603,0.005499,0.249940,0,0);-webkit-transform:matrix(0.118331,-0.002603,0.005499,0.249940,0,0);}
.ma4_c00448{transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132320,0.000000,0.000000,0.250000,0,0);}
.mda_c00448{transform:matrix(0.132515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132515,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.136540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136540,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140470,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144320,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.144865,-0.001159,0.002000,0.249992,0,0);-ms-transform:matrix(0.144865,-0.001159,0.002000,0.249992,0,0);-webkit-transform:matrix(0.144865,-0.001159,0.002000,0.249992,0,0);}
.m87_c00448{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);}
.m11e_c00448{transform:matrix(0.147286,-0.002946,0.004999,0.249950,0,0);-ms-transform:matrix(0.147286,-0.002946,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147286,-0.002946,0.004999,0.249950,0,0);}
.me7_c00448{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);}
.m4b_c00448{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);}
.m2c_c00448{transform:matrix(0.150580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150580,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150645,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{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);}
.m2_c00448{transform:matrix(0.153132,-0.001531,0.002500,0.249988,0,0);-ms-transform:matrix(0.153132,-0.001531,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153132,-0.001531,0.002500,0.249988,0,0);}
.m36_c00448{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);}
.m4d_c00448{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);}
.m8c_c00448{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);}
.mf6_c00448{transform:matrix(0.155052,-0.003411,0.005499,0.249940,0,0);-ms-transform:matrix(0.155052,-0.003411,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155052,-0.003411,0.005499,0.249940,0,0);}
.md0_c00448{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.155927,-0.001559,0.002500,0.249988,0,0);-ms-transform:matrix(0.155927,-0.001559,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155927,-0.001559,0.002500,0.249988,0,0);}
.m76_c00448{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);}
.m32_c00448{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);}
.m12c_c00448{transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);-ms-transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);}
.m48_c00448{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);}
.m12_c00448{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);}
.m17_c00448{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);}
.m8e_c00448{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);}
.m121_c00448{transform:matrix(0.160873,-0.003217,0.004999,0.249950,0,0);-ms-transform:matrix(0.160873,-0.003217,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160873,-0.003217,0.004999,0.249950,0,0);}
.m54_c00448{transform:matrix(0.161685,-0.001293,0.002000,0.249992,0,0);-ms-transform:matrix(0.161685,-0.001293,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161685,-0.001293,0.002000,0.249992,0,0);}
.m11f_c00448{transform:matrix(0.161823,-0.003236,0.004999,0.249950,0,0);-ms-transform:matrix(0.161823,-0.003236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161823,-0.003236,0.004999,0.249950,0,0);}
.m8d_c00448{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);}
.m12b_c00448{transform:matrix(0.162812,-0.003256,0.004999,0.249950,0,0);-ms-transform:matrix(0.162812,-0.003256,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162812,-0.003256,0.004999,0.249950,0,0);}
.m73_c00448{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);}
.m58_c00448{transform:matrix(0.163480,-0.001308,0.002000,0.249992,0,0);-ms-transform:matrix(0.163480,-0.001308,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163480,-0.001308,0.002000,0.249992,0,0);}
.m53_c00448{transform:matrix(0.164555,-0.001316,0.002000,0.249992,0,0);-ms-transform:matrix(0.164555,-0.001316,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164555,-0.001316,0.002000,0.249992,0,0);}
.ma3_c00448{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);}
.m64_c00448{transform:matrix(0.165590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165590,0.000000,0.000000,0.250000,0,0);}
.mdb_c00448{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);}
.m8f_c00448{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);}
.m2e_c00448{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);}
.me_c00448{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);}
.m111_c00448{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);}
.mbf_c00448{transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m11c_c00448{transform:matrix(0.171521,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171521,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171521,-0.003430,0.004999,0.249950,0,0);}
.m5a_c00448{transform:matrix(0.171795,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171795,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171795,-0.001374,0.002000,0.249992,0,0);}
.m9a_c00448{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);}
.m65_c00448{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);}
.m18_c00448{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);}
.m127_c00448{transform:matrix(0.173340,-0.003467,0.004999,0.249950,0,0);-ms-transform:matrix(0.173340,-0.003467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173340,-0.003467,0.004999,0.249950,0,0);}
.m68_c00448{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);}
.ma5_c00448{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);}
.md7_c00448{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);}
.m33_c00448{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{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);}
.m115_c00448{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);}
.m12f_c00448{transform:matrix(0.176320,-0.003526,0.004999,0.249950,0,0);-ms-transform:matrix(0.176320,-0.003526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176320,-0.003526,0.004999,0.249950,0,0);}
.m93_c00448{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);}
.m0_c00448{transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);}
.m116_c00448{transform:matrix(0.177075,-0.003541,0.004999,0.249950,0,0);-ms-transform:matrix(0.177075,-0.003541,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177075,-0.003541,0.004999,0.249950,0,0);}
.mac_c00448{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);}
.m35_c00448{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);}
.m28_c00448{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);}
.m134_c00448{transform:matrix(0.178579,-0.003572,0.004999,0.249950,0,0);-ms-transform:matrix(0.178579,-0.003572,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178579,-0.003572,0.004999,0.249950,0,0);}
.mb8_c00448{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);}
.mb1_c00448{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);}
.m133_c00448{transform:matrix(0.179434,-0.003589,0.004999,0.249950,0,0);-ms-transform:matrix(0.179434,-0.003589,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179434,-0.003589,0.004999,0.249950,0,0);}
.m37_c00448{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);}
.m1_c00448{transform:matrix(0.179706,-0.001797,0.002500,0.249988,0,0);-ms-transform:matrix(0.179706,-0.001797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179706,-0.001797,0.002500,0.249988,0,0);}
.m15_c00448{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);}
.m69_c00448{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);}
.mba_c00448{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);}
.ma9_c00448{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);}
.m113_c00448{transform:matrix(0.181524,-0.003630,0.004999,0.249950,0,0);-ms-transform:matrix(0.181524,-0.003630,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181524,-0.003630,0.004999,0.249950,0,0);}
.mcc_c00448{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);}
.m72_c00448{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);}
.mad_c00448{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);}
.m12d_c00448{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);}
.m4e_c00448{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);}
.m66_c00448{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);}
.ma8_c00448{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);}
.m3_c00448{transform:matrix(0.184161,-0.001842,0.002500,0.249988,0,0);-ms-transform:matrix(0.184161,-0.001842,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184161,-0.001842,0.002500,0.249988,0,0);}
.ma6_c00448{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);}
.mb7_c00448{transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{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);}
.mb_c00448{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);}
.me8_c00448{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);}
.m12a_c00448{transform:matrix(0.186663,-0.003733,0.004999,0.249950,0,0);-ms-transform:matrix(0.186663,-0.003733,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186663,-0.003733,0.004999,0.249950,0,0);}
.m3a_c00448{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);}
.m9_c00448{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);}
.ma_c00448{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);}
.m1b_c00448{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);}
.m2b_c00448{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);}
.m11a_c00448{transform:matrix(0.188372,-0.003767,0.004999,0.249950,0,0);-ms-transform:matrix(0.188372,-0.003767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188372,-0.003767,0.004999,0.249950,0,0);}
.m2d_c00448{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);}
.m9f_c00448{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);}
.m75_c00448{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);}
.m130_c00448{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);}
.mbe_c00448{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);}
.mb9_c00448{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);}
.m8a_c00448{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);}
.mdf_c00448{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);}
.m90_c00448{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);}
.m47_c00448{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);}
.m4c_c00448{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);}
.m13d_c00448{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);}
.m6c_c00448{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);}
.mdd_c00448{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);}
.m6a_c00448{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);}
.m122_c00448{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);}
.m1e_c00448{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);}
.me9_c00448{transform:matrix(0.195093,-0.004292,0.005499,0.249940,0,0);-ms-transform:matrix(0.195093,-0.004292,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195093,-0.004292,0.005499,0.249940,0,0);}
.m67_c00448{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);}
.m125_c00448{transform:matrix(0.195181,-0.003904,0.004999,0.249950,0,0);-ms-transform:matrix(0.195181,-0.003904,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195181,-0.003904,0.004999,0.249950,0,0);}
.mcb_c00448{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);}
.m57_c00448{transform:matrix(0.195939,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.195939,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195939,-0.001568,0.002000,0.249992,0,0);}
.mc_c00448{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);}
.m6b_c00448{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);}
.mb2_c00448{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);}
.m71_c00448{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);}
.m112_c00448{transform:matrix(0.197685,-0.003954,0.004999,0.249950,0,0);-ms-transform:matrix(0.197685,-0.003954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197685,-0.003954,0.004999,0.249950,0,0);}
.m60_c00448{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);}
.mc7_c00448{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_c00448{transform:matrix(0.198449,-0.001588,0.002000,0.249992,0,0);-ms-transform:matrix(0.198449,-0.001588,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198449,-0.001588,0.002000,0.249992,0,0);}
.m13_c00448{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);}
.m123_c00448{transform:matrix(0.198640,-0.003973,0.004999,0.249950,0,0);-ms-transform:matrix(0.198640,-0.003973,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198640,-0.003973,0.004999,0.249950,0,0);}
.m11_c00448{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);}
.ma0_c00448{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_c00448{transform:matrix(0.199105,-0.001991,0.002500,0.249988,0,0);-ms-transform:matrix(0.199105,-0.001991,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199105,-0.001991,0.002500,0.249988,0,0);}
.m5d_c00448{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);}
.m103_c00448{transform:matrix(0.199287,-0.004384,0.005499,0.249940,0,0);-ms-transform:matrix(0.199287,-0.004384,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199287,-0.004384,0.005499,0.249940,0,0);}
.mce_c00448{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);}
.md_c00448{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);}
.mc2_c00448{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);}
.m14_c00448{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);}
.m34_c00448{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);}
.m101_c00448{transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);-ms-transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);}
.m31_c00448{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);}
.mb0_c00448{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);}
.m52_c00448{transform:matrix(0.201254,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201254,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201254,-0.001610,0.002000,0.249992,0,0);}
.m16_c00448{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);}
.m13f_c00448{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);}
.mb3_c00448{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);}
.m120_c00448{transform:matrix(0.203154,-0.004063,0.004999,0.249950,0,0);-ms-transform:matrix(0.203154,-0.004063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203154,-0.004063,0.004999,0.249950,0,0);}
.m63_c00448{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);}
.m3c_c00448{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);}
.m129_c00448{transform:matrix(0.207034,-0.004141,0.004999,0.249950,0,0);-ms-transform:matrix(0.207034,-0.004141,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207034,-0.004141,0.004999,0.249950,0,0);}
.m5c_c00448{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);}
.m1d_c00448{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);}
.me2_c00448{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);}
.m38_c00448{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);}
.m1f_c00448{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);}
.m7_c00448{transform:matrix(0.209395,-0.002094,0.002500,0.249988,0,0);-ms-transform:matrix(0.209395,-0.002094,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209395,-0.002094,0.002500,0.249988,0,0);}
.ma1_c00448{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);}
.me4_c00448{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);}
.mc1_c00448{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);}
.m4a_c00448{transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);}
.m12e_c00448{transform:matrix(0.210803,-0.004216,0.004999,0.249950,0,0);-ms-transform:matrix(0.210803,-0.004216,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210803,-0.004216,0.004999,0.249950,0,0);}
.m5e_c00448{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);}
.mc9_c00448{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);}
.m19_c00448{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);}
.mc3_c00448{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);}
.mca_c00448{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);}
.m82_c00448{transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212133,-0.001697,0.002000,0.249992,0,0);}
.m11b_c00448{transform:matrix(0.212767,-0.004255,0.004999,0.249950,0,0);-ms-transform:matrix(0.212767,-0.004255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212767,-0.004255,0.004999,0.249950,0,0);}
.me0_c00448{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);}
.mdc_c00448{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);}
.m128_c00448{transform:matrix(0.213647,-0.004273,0.004999,0.249950,0,0);-ms-transform:matrix(0.213647,-0.004273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213647,-0.004273,0.004999,0.249950,0,0);}
.mde_c00448{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);}
.md6_c00448{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);}
.m55_c00448{transform:matrix(0.213958,-0.001712,0.002000,0.249992,0,0);-ms-transform:matrix(0.213958,-0.001712,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213958,-0.001712,0.002000,0.249992,0,0);}
.mec_c00448{transform:matrix(0.214083,-0.004710,0.005499,0.249940,0,0);-ms-transform:matrix(0.214083,-0.004710,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214083,-0.004710,0.005499,0.249940,0,0);}
.m84_c00448{transform:matrix(0.214298,-0.001714,0.002000,0.249992,0,0);-ms-transform:matrix(0.214298,-0.001714,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214298,-0.001714,0.002000,0.249992,0,0);}
.med_c00448{transform:matrix(0.214298,-0.004715,0.005499,0.249940,0,0);-ms-transform:matrix(0.214298,-0.004715,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214298,-0.004715,0.005499,0.249940,0,0);}
.m2a_c00448{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);}
.m77_c00448{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);}
.m97_c00448{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);}
.mc0_c00448{transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);}
.me6_c00448{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);}
.mbd_c00448{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.m109_c00448{transform:matrix(0.216193,-0.004756,0.005499,0.249940,0,0);-ms-transform:matrix(0.216193,-0.004756,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216193,-0.004756,0.005499,0.249940,0,0);}
.m7f_c00448{transform:matrix(0.216833,-0.001735,0.002000,0.249992,0,0);-ms-transform:matrix(0.216833,-0.001735,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216833,-0.001735,0.002000,0.249992,0,0);}
.m10f_c00448{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);}
.m10c_c00448{transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217180,0.000000,0.000000,0.250000,0,0);}
.m105_c00448{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);}
.m124_c00448{transform:matrix(0.217282,-0.004346,0.004999,0.249950,0,0);-ms-transform:matrix(0.217282,-0.004346,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217282,-0.004346,0.004999,0.249950,0,0);}
.m1a_c00448{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);}
.m107_c00448{transform:matrix(0.217487,-0.004785,0.005499,0.249940,0,0);-ms-transform:matrix(0.217487,-0.004785,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217487,-0.004785,0.005499,0.249940,0,0);}
.m119_c00448{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);}
.m13a_c00448{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);}
.md4_c00448{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);}
.m6f_c00448{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);}
.maa_c00448{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.mfc_c00448{transform:matrix(0.220142,-0.004843,0.005499,0.249940,0,0);-ms-transform:matrix(0.220142,-0.004843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220142,-0.004843,0.005499,0.249940,0,0);}
.m138_c00448{transform:matrix(0.220676,-0.004414,0.004999,0.249950,0,0);-ms-transform:matrix(0.220676,-0.004414,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220676,-0.004414,0.004999,0.249950,0,0);}
.m23_c00448{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m7e_c00448{transform:matrix(0.221198,-0.001770,0.002000,0.249992,0,0);-ms-transform:matrix(0.221198,-0.001770,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221198,-0.001770,0.002000,0.249992,0,0);}
.m20_c00448{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);}
.mcf_c00448{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);}
.m106_c00448{transform:matrix(0.221641,-0.004876,0.005499,0.249940,0,0);-ms-transform:matrix(0.221641,-0.004876,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221641,-0.004876,0.005499,0.249940,0,0);}
.me5_c00448{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);}
.m131_c00448{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);}
.m5f_c00448{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);}
.m132_c00448{transform:matrix(0.223085,-0.004462,0.004999,0.249950,0,0);-ms-transform:matrix(0.223085,-0.004462,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223085,-0.004462,0.004999,0.249950,0,0);}
.m13b_c00448{transform:matrix(0.223195,-0.004464,0.004999,0.249950,0,0);-ms-transform:matrix(0.223195,-0.004464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223195,-0.004464,0.004999,0.249950,0,0);}
.m25_c00448{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);}
.m1c_c00448{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);}
.m126_c00448{transform:matrix(0.224275,-0.004486,0.004999,0.249950,0,0);-ms-transform:matrix(0.224275,-0.004486,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224275,-0.004486,0.004999,0.249950,0,0);}
.m102_c00448{transform:matrix(0.224816,-0.004946,0.005499,0.249940,0,0);-ms-transform:matrix(0.224816,-0.004946,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224816,-0.004946,0.005499,0.249940,0,0);}
.maf_c00448{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);}
.m114_c00448{transform:matrix(0.226310,-0.004526,0.004999,0.249950,0,0);-ms-transform:matrix(0.226310,-0.004526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226310,-0.004526,0.004999,0.249950,0,0);}
.m135_c00448{transform:matrix(0.226425,-0.004528,0.004999,0.249950,0,0);-ms-transform:matrix(0.226425,-0.004528,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226425,-0.004528,0.004999,0.249950,0,0);}
.m80_c00448{transform:matrix(0.226843,-0.001815,0.002000,0.249992,0,0);-ms-transform:matrix(0.226843,-0.001815,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226843,-0.001815,0.002000,0.249992,0,0);}
.mee_c00448{transform:matrix(0.228150,-0.005019,0.005499,0.249940,0,0);-ms-transform:matrix(0.228150,-0.005019,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228150,-0.005019,0.005499,0.249940,0,0);}
.m61_c00448{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);}
.m110_c00448{transform:matrix(0.228899,-0.004578,0.004999,0.249950,0,0);-ms-transform:matrix(0.228899,-0.004578,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228899,-0.004578,0.004999,0.249950,0,0);}
.m11d_c00448{transform:matrix(0.229274,-0.004585,0.004999,0.249950,0,0);-ms-transform:matrix(0.229274,-0.004585,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229274,-0.004585,0.004999,0.249950,0,0);}
.mab_c00448{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);}
.m118_c00448{transform:matrix(0.230339,-0.004607,0.004999,0.249950,0,0);-ms-transform:matrix(0.230339,-0.004607,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230339,-0.004607,0.004999,0.249950,0,0);}
.m141_c00448{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);}
.m9b_c00448{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);}
.m78_c00448{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);}
.m108_c00448{transform:matrix(0.232644,-0.005118,0.005499,0.249940,0,0);-ms-transform:matrix(0.232644,-0.005118,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232644,-0.005118,0.005499,0.249940,0,0);}
.m4f_c00448{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);}
.mef_c00448{transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);-ms-transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232734,-0.005120,0.005499,0.249940,0,0);}
.m140_c00448{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);}
.m56_c00448{transform:matrix(0.233053,-0.001864,0.002000,0.249992,0,0);-ms-transform:matrix(0.233053,-0.001864,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233053,-0.001864,0.002000,0.249992,0,0);}
.md1_c00448{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.md5_c00448{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);}
.m21_c00448{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);}
.mf_c00448{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_c00448{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);}
.m13e_c00448{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235740,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{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);}
.mae_c00448{transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237240,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.237262,-0.001898,0.002000,0.249992,0,0);-ms-transform:matrix(0.237262,-0.001898,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237262,-0.001898,0.002000,0.249992,0,0);}
.m91_c00448{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{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);}
.m81_c00448{transform:matrix(0.238822,-0.001911,0.002000,0.249992,0,0);-ms-transform:matrix(0.238822,-0.001911,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238822,-0.001911,0.002000,0.249992,0,0);}
.m5b_c00448{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);}
.mc6_c00448{transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00448{transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{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);}
.m9d_c00448{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.242537,-0.001940,0.002000,0.249992,0,0);-ms-transform:matrix(0.242537,-0.001940,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242537,-0.001940,0.002000,0.249992,0,0);}
.m4_c00448{transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);-ms-transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);}
.mff_c00448{transform:matrix(0.244351,-0.005376,0.005499,0.249940,0,0);-ms-transform:matrix(0.244351,-0.005376,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244351,-0.005376,0.005499,0.249940,0,0);}
.m96_c00448{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);}
.m26_c00448{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);}
.m99_c00448{transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246070,0.000000,0.000000,0.250000,0,0);}
.mfe_c00448{transform:matrix(0.246215,-0.005417,0.005499,0.249940,0,0);-ms-transform:matrix(0.246215,-0.005417,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246215,-0.005417,0.005499,0.249940,0,0);}
.m79_c00448{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);}
.m30_c00448{transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.249597,-0.001997,0.002000,0.249992,0,0);-ms-transform:matrix(0.249597,-0.001997,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249597,-0.001997,0.002000,0.249992,0,0);}
.m9c_c00448{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);}
.ma7_c00448{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.mf5_c00448{transform:matrix(0.251689,-0.005537,0.005499,0.249940,0,0);-ms-transform:matrix(0.251689,-0.005537,0.005499,0.249940,0,0);-webkit-transform:matrix(0.251689,-0.005537,0.005499,0.249940,0,0);}
.mf0_c00448{transform:matrix(0.252269,-0.005550,0.005499,0.249940,0,0);-ms-transform:matrix(0.252269,-0.005550,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252269,-0.005550,0.005499,0.249940,0,0);}
.mcd_c00448{transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);}
.m136_c00448{transform:matrix(0.254534,-0.005091,0.004999,0.249950,0,0);-ms-transform:matrix(0.254534,-0.005091,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254534,-0.005091,0.004999,0.249950,0,0);}
.m13c_c00448{transform:matrix(0.254624,-0.005092,0.004999,0.249950,0,0);-ms-transform:matrix(0.254624,-0.005092,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254624,-0.005092,0.004999,0.249950,0,0);}
.m7a_c00448{transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258785,0.000000,0.000000,0.250000,0,0);}
.mb5_c00448{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);}
.mfd_c00448{transform:matrix(0.259397,-0.005707,0.005499,0.249940,0,0);-ms-transform:matrix(0.259397,-0.005707,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259397,-0.005707,0.005499,0.249940,0,0);}
.md2_c00448{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);}
.meb_c00448{transform:matrix(0.265301,-0.005837,0.005499,0.249940,0,0);-ms-transform:matrix(0.265301,-0.005837,0.005499,0.249940,0,0);-webkit-transform:matrix(0.265301,-0.005837,0.005499,0.249940,0,0);}
.m98_c00448{transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);}
.mbc_c00448{transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{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);}
.m45_c00448{transform:matrix(0.273880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273880,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274430,0.000000,0.000000,0.250000,0,0);}
.mc4_c00448{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.mf8_c00448{transform:matrix(0.275713,-0.006066,0.005499,0.249940,0,0);-ms-transform:matrix(0.275713,-0.006066,0.005499,0.249940,0,0);-webkit-transform:matrix(0.275713,-0.006066,0.005499,0.249940,0,0);}
.m40_c00448{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);}
.mf7_c00448{transform:matrix(0.280257,-0.006166,0.005499,0.249940,0,0);-ms-transform:matrix(0.280257,-0.006166,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280257,-0.006166,0.005499,0.249940,0,0);}
.me3_c00448{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m10e_c00448{transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);}
.me1_c00448{transform:matrix(0.284800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284800,0.000000,0.000000,0.250000,0,0);}
.mc5_c00448{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.m117_c00448{transform:matrix(0.286328,-0.005727,0.004999,0.249950,0,0);-ms-transform:matrix(0.286328,-0.005727,0.004999,0.249950,0,0);-webkit-transform:matrix(0.286328,-0.005727,0.004999,0.249950,0,0);}
.m139_c00448{transform:matrix(0.288077,-0.005762,0.004999,0.249950,0,0);-ms-transform:matrix(0.288077,-0.005762,0.004999,0.249950,0,0);-webkit-transform:matrix(0.288077,-0.005762,0.004999,0.249950,0,0);}
.m137_c00448{transform:matrix(0.297925,-0.005959,0.004999,0.249950,0,0);-ms-transform:matrix(0.297925,-0.005959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.297925,-0.005959,0.004999,0.249950,0,0);}
.mfa_c00448{transform:matrix(0.305001,-0.006710,0.005499,0.249940,0,0);-ms-transform:matrix(0.305001,-0.006710,0.005499,0.249940,0,0);-webkit-transform:matrix(0.305001,-0.006710,0.005499,0.249940,0,0);}
.m44_c00448{transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);}
.m100_c00448{transform:matrix(0.307491,-0.006765,0.005499,0.249940,0,0);-ms-transform:matrix(0.307491,-0.006765,0.005499,0.249940,0,0);-webkit-transform:matrix(0.307491,-0.006765,0.005499,0.249940,0,0);}
.m3b_c00448{transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309745,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{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);}
.mf9_c00448{transform:matrix(0.317248,-0.006979,0.005499,0.249940,0,0);-ms-transform:matrix(0.317248,-0.006979,0.005499,0.249940,0,0);-webkit-transform:matrix(0.317248,-0.006979,0.005499,0.249940,0,0);}
.mf1_c00448{transform:matrix(0.318033,-0.006997,0.005499,0.249940,0,0);-ms-transform:matrix(0.318033,-0.006997,0.005499,0.249940,0,0);-webkit-transform:matrix(0.318033,-0.006997,0.005499,0.249940,0,0);}
.m104_c00448{transform:matrix(0.318878,-0.007015,0.005499,0.249940,0,0);-ms-transform:matrix(0.318878,-0.007015,0.005499,0.249940,0,0);-webkit-transform:matrix(0.318878,-0.007015,0.005499,0.249940,0,0);}
.m92_c00448{transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319295,0.000000,0.000000,0.250000,0,0);}
.mea_c00448{transform:matrix(0.329790,-0.007255,0.005499,0.249940,0,0);-ms-transform:matrix(0.329790,-0.007255,0.005499,0.249940,0,0);-webkit-transform:matrix(0.329790,-0.007255,0.005499,0.249940,0,0);}
.md3_c00448{transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331785,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337655,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346400,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353525,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{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);}
.m10a_c00448{transform:matrix(0.368695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368695,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.369705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369705,0.000000,0.000000,0.250000,0,0);}
.mf2_c00448{transform:matrix(0.374124,-0.008231,0.005499,0.249940,0,0);-ms-transform:matrix(0.374124,-0.008231,0.005499,0.249940,0,0);-webkit-transform:matrix(0.374124,-0.008231,0.005499,0.249940,0,0);}
.md9_c00448{transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377990,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.381125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381125,0.000000,0.000000,0.250000,0,0);}
.mf3_c00448{transform:matrix(0.389521,-0.008569,0.005499,0.249940,0,0);-ms-transform:matrix(0.389521,-0.008569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.389521,-0.008569,0.005499,0.249940,0,0);}
.m6d_c00448{transform:matrix(0.416600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416600,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.448185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448185,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.452645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452645,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.525265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525265,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.537945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537945,0.000000,0.000000,0.250000,0,0);}
.mb4_c00448{transform:matrix(0.622560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622560,0.000000,0.000000,0.250000,0,0);}
.m10b_c00448{transform:matrix(0.754675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754675,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;}
.fsc_c00448{font-size:43.050000px;}
.fs20_c00448{font-size:46.200000px;}
.fsb_c00448{font-size:47.250000px;}
.fs1e_c00448{font-size:47.259449px;}
.fs16_c00448{font-size:47.261433px;}
.fs1f_c00448{font-size:48.300000px;}
.fs1b_c00448{font-size:49.359869px;}
.fs15_c00448{font-size:49.361941px;}
.fsf_c00448{font-size:50.400000px;}
.fse_c00448{font-size:51.450000px;}
.fs14_c00448{font-size:51.462449px;}
.fs11_c00448{font-size:52.500000px;}
.fs1d_c00448{font-size:52.510499px;}
.fs17_c00448{font-size:52.512703px;}
.fs10_c00448{font-size:53.550000px;}
.fs1a_c00448{font-size:54.610919px;}
.fs12_c00448{font-size:55.650000px;}
.fsd_c00448{font-size:57.750000px;}
.fs1c_c00448{font-size:57.761549px;}
.fs18_c00448{font-size:58.800000px;}
.fs8_c00448{font-size:63.000000px;}
.fsa_c00448{font-size:63.002016px;}
.fs19_c00448{font-size:64.050000px;}
.fs5_c00448{font-size:66.150000px;}
.fs2_c00448{font-size:67.200000px;}
.fs4_c00448{font-size:69.300000px;}
.fs1_c00448{font-size:71.400000px;}
.fs0_c00448{font-size:71.403570px;}
.fs9_c00448{font-size:72.450000px;}
.fs3_c00448{font-size:73.500000px;}
.fs6_c00448{font-size:74.550000px;}
.fs7_c00448{font-size:74.552386px;}
.fs13_c00448{font-size:136.500000px;}
.y0_c00448{bottom:0.000000px;}
.y47_c00448{bottom:139.860000px;}
.y66_c00448{bottom:142.127586px;}
.y68_c00448{bottom:142.127709px;}
.y67_c00448{bottom:142.127988px;}
.y69_c00448{bottom:142.127997px;}
.y6a_c00448{bottom:142.128543px;}
.y5f_c00448{bottom:158.213514px;}
.y46_c00448{bottom:158.356500px;}
.y60_c00448{bottom:159.278475px;}
.y61_c00448{bottom:159.952812px;}
.y62_c00448{bottom:160.192239px;}
.y63_c00448{bottom:161.006784px;}
.y64_c00448{bottom:161.976189px;}
.y65_c00448{bottom:162.272262px;}
.y55_c00448{bottom:175.496532px;}
.y56_c00448{bottom:175.645815px;}
.y45_c00448{bottom:176.442000px;}
.y57_c00448{bottom:176.532699px;}
.y58_c00448{bottom:176.714241px;}
.y59_c00448{bottom:177.216327px;}
.y5a_c00448{bottom:177.799251px;}
.y5b_c00448{bottom:178.220103px;}
.y5c_c00448{bottom:178.713477px;}
.y5d_c00448{bottom:178.917954px;}
.y5e_c00448{bottom:179.663988px;}
.y9b_c00448{bottom:180.423000px;}
.y4f_c00448{bottom:193.589421px;}
.y50_c00448{bottom:194.483067px;}
.y44_c00448{bottom:194.664000px;}
.y51_c00448{bottom:195.629997px;}
.y52_c00448{bottom:195.870624px;}
.y53_c00448{bottom:196.448610px;}
.y54_c00448{bottom:197.005755px;}
.y9a_c00448{bottom:197.682000px;}
.y49_c00448{bottom:211.954500px;}
.y43_c00448{bottom:212.490000px;}
.y4a_c00448{bottom:213.260970px;}
.y4b_c00448{bottom:214.027560px;}
.y4c_c00448{bottom:214.664295px;}
.y4d_c00448{bottom:215.934102px;}
.y4e_c00448{bottom:216.093591px;}
.y42_c00448{bottom:230.662500px;}
.y99_c00448{bottom:231.234300px;}
.y98_c00448{bottom:231.234390px;}
.y97_c00448{bottom:231.234480px;}
.y95_c00448{bottom:231.234720px;}
.y96_c00448{bottom:231.234900px;}
.y8e_c00448{bottom:247.846050px;}
.y41_c00448{bottom:248.086500px;}
.y8f_c00448{bottom:248.218740px;}
.y90_c00448{bottom:248.699250px;}
.y91_c00448{bottom:248.931180px;}
.y92_c00448{bottom:249.268440px;}
.y93_c00448{bottom:250.234410px;}
.y94_c00448{bottom:250.551420px;}
.y88_c00448{bottom:266.209320px;}
.y40_c00448{bottom:266.218500px;}
.y89_c00448{bottom:266.698020px;}
.y8a_c00448{bottom:266.904690px;}
.y8b_c00448{bottom:267.238440px;}
.y8c_c00448{bottom:268.227300px;}
.y8d_c00448{bottom:268.686150px;}
.y81_c00448{bottom:283.765560px;}
.y3f_c00448{bottom:284.154000px;}
.y82_c00448{bottom:284.971230px;}
.y83_c00448{bottom:285.267690px;}
.y84_c00448{bottom:285.832620px;}
.y85_c00448{bottom:286.278270px;}
.y86_c00448{bottom:287.737620px;}
.y87_c00448{bottom:288.309810px;}
.y7b_c00448{bottom:301.858680px;}
.y3e_c00448{bottom:302.088000px;}
.y7c_c00448{bottom:302.352600px;}
.y7d_c00448{bottom:303.696510px;}
.y7e_c00448{bottom:304.183650px;}
.y7f_c00448{bottom:304.558320px;}
.y80_c00448{bottom:305.550180px;}
.y74_c00448{bottom:319.140660px;}
.y75_c00448{bottom:319.504650px;}
.y3d_c00448{bottom:320.220000px;}
.y76_c00448{bottom:320.752620px;}
.y77_c00448{bottom:321.608580px;}
.y78_c00448{bottom:322.074000px;}
.y79_c00448{bottom:322.873290px;}
.y7a_c00448{bottom:323.348940px;}
.y6d_c00448{bottom:337.504500px;}
.y3c_c00448{bottom:337.770000px;}
.y6e_c00448{bottom:338.735550px;}
.y6f_c00448{bottom:339.015960px;}
.y70_c00448{bottom:339.641790px;}
.y71_c00448{bottom:340.009560px;}
.y72_c00448{bottom:340.576980px;}
.y73_c00448{bottom:341.398380px;}
.y33_c00448{bottom:418.771500px;}
.y34_c00448{bottom:419.151564px;}
.y35_c00448{bottom:419.376504px;}
.y36_c00448{bottom:419.834196px;}
.y37_c00448{bottom:420.050256px;}
.y38_c00448{bottom:420.387192px;}
.y39_c00448{bottom:420.540612px;}
.y3a_c00448{bottom:421.093536px;}
.y3b_c00448{bottom:421.238652px;}
.y32_c00448{bottom:442.650000px;}
.y6c_c00448{bottom:443.481000px;}
.y31_c00448{bottom:464.850000px;}
.y30_c00448{bottom:487.500000px;}
.y2f_c00448{bottom:511.450500px;}
.y2e_c00448{bottom:534.297000px;}
.y23_c00448{bottom:556.201500px;}
.y24_c00448{bottom:556.474032px;}
.y25_c00448{bottom:556.806348px;}
.y26_c00448{bottom:557.145876px;}
.y27_c00448{bottom:557.659572px;}
.y28_c00448{bottom:557.879820px;}
.y29_c00448{bottom:558.035076px;}
.y2a_c00448{bottom:558.268680px;}
.y2b_c00448{bottom:558.659616px;}
.y2c_c00448{bottom:558.845424px;}
.y2d_c00448{bottom:559.055040px;}
.y19_c00448{bottom:578.340000px;}
.y1a_c00448{bottom:579.123000px;}
.y1b_c00448{bottom:579.610500px;}
.y1c_c00448{bottom:579.762000px;}
.y1d_c00448{bottom:579.976500px;}
.y1e_c00448{bottom:580.219500px;}
.y1f_c00448{bottom:580.480500px;}
.y20_c00448{bottom:580.660500px;}
.y21_c00448{bottom:581.040000px;}
.y22_c00448{bottom:581.485500px;}
.y18_c00448{bottom:602.700000px;}
.y17_c00448{bottom:647.316000px;}
.y6b_c00448{bottom:648.796500px;}
.y16_c00448{bottom:670.585500px;}
.y15_c00448{bottom:693.141000px;}
.yd_c00448{bottom:714.691500px;}
.ye_c00448{bottom:715.290000px;}
.yf_c00448{bottom:715.644000px;}
.y10_c00448{bottom:716.076000px;}
.y11_c00448{bottom:717.012000px;}
.y12_c00448{bottom:717.252000px;}
.y13_c00448{bottom:717.558000px;}
.y14_c00448{bottom:717.946500px;}
.yc_c00448{bottom:739.452000px;}
.yb_c00448{bottom:762.298500px;}
.ya_c00448{bottom:785.071500px;}
.y1_c00448{bottom:807.031500px;}
.y2_c00448{bottom:807.482460px;}
.y3_c00448{bottom:808.003635px;}
.y4_c00448{bottom:808.171005px;}
.y5_c00448{bottom:808.800075px;}
.y6_c00448{bottom:809.016195px;}
.y7_c00448{bottom:809.205240px;}
.y8_c00448{bottom:809.521800px;}
.y9_c00448{bottom:810.227550px;}
.y48_c00448{bottom:855.226500px;}
.he_c00448{height:43.050000px;}
.h22_c00448{height:46.200000px;}
.hd_c00448{height:47.250000px;}
.h20_c00448{height:47.259449px;}
.h18_c00448{height:47.261433px;}
.h21_c00448{height:48.300000px;}
.h1d_c00448{height:49.359869px;}
.h17_c00448{height:49.361941px;}
.h11_c00448{height:50.400000px;}
.h10_c00448{height:51.450000px;}
.h16_c00448{height:51.462449px;}
.h13_c00448{height:52.500000px;}
.h1f_c00448{height:52.510499px;}
.h19_c00448{height:52.512703px;}
.h12_c00448{height:53.550000px;}
.h1c_c00448{height:54.610919px;}
.h14_c00448{height:55.650000px;}
.hf_c00448{height:57.750000px;}
.h1e_c00448{height:57.761549px;}
.h1a_c00448{height:58.800000px;}
.ha_c00448{height:63.000000px;}
.hc_c00448{height:63.002016px;}
.h1b_c00448{height:64.050000px;}
.h7_c00448{height:66.150000px;}
.h4_c00448{height:67.200000px;}
.h6_c00448{height:69.300000px;}
.h3_c00448{height:71.400000px;}
.h2_c00448{height:71.403570px;}
.hb_c00448{height:72.450000px;}
.h5_c00448{height:73.500000px;}
.h8_c00448{height:74.550000px;}
.h9_c00448{height:74.552386px;}
.h15_c00448{height:136.500000px;}
.h1_c00448{height:1005.000000px;}
.h0_c00448{height:1005.150000px;}
.w0_c00448{width:715.200000px;}
.w1_c00448{width:715.500000px;}
.x0_c00448{left:0.000000px;}
.x88_c00448{left:51.030000px;}
.x7f_c00448{left:54.540000px;}
.x84_c00448{left:57.240000px;}
.x7d_c00448{left:82.890000px;}
.x85_c00448{left:93.690000px;}
.x61_c00448{left:95.040000px;}
.x68_c00448{left:96.120000px;}
.x62_c00448{left:107.460000px;}
.x80_c00448{left:113.940000px;}
.x69_c00448{left:118.800000px;}
.x35_c00448{left:124.200000px;}
.x63_c00448{left:126.360000px;}
.x2a_c00448{left:127.440000px;}
.x55_c00448{left:129.600000px;}
.x78_c00448{left:130.950000px;}
.x17_c00448{left:132.300000px;}
.x1_c00448{left:134.049000px;}
.x81_c00448{left:140.130000px;}
.x71_c00448{left:141.750000px;}
.x64_c00448{left:143.640000px;}
.x7a_c00448{left:148.500000px;}
.x86_c00448{left:150.120000px;}
.x11_c00448{left:151.740000px;}
.x49_c00448{left:154.710000px;}
.x4e_c00448{left:156.330000px;}
.x36_c00448{left:161.730000px;}
.x79_c00448{left:164.160000px;}
.xa_c00448{left:166.590000px;}
.x82_c00448{left:167.670000px;}
.x65_c00448{left:169.560000px;}
.x24_c00448{left:174.420000px;}
.x2b_c00448{left:175.770000px;}
.x2_c00448{left:179.145000px;}
.x12_c00448{left:181.440000px;}
.x76_c00448{left:182.790000px;}
.x8a_c00448{left:183.870000px;}
.x6d_c00448{left:185.490000px;}
.x25_c00448{left:190.620000px;}
.xb_c00448{left:193.860000px;}
.x18_c00448{left:197.640000px;}
.x2c_c00448{left:199.800000px;}
.x6e_c00448{left:201.150000px;}
.x72_c00448{left:202.230000px;}
.x56_c00448{left:203.850000px;}
.x43_c00448{left:208.008000px;}
.x3c_c00448{left:210.718500px;}
.x33_c00448{left:212.760000px;}
.x4a_c00448{left:213.840000px;}
.x77_c00448{left:217.890000px;}
.x7b_c00448{left:218.970000px;}
.x2d_c00448{left:220.590000px;}
.x19_c00448{left:222.480000px;}
.x37_c00448{left:223.830000px;}
.x26_c00448{left:225.720000px;}
.x83_c00448{left:227.070000px;}
.x1e_c00448{left:228.564000px;}
.x66_c00448{left:230.040000px;}
.x3_c00448{left:231.262500px;}
.x13_c00448{left:235.170000px;}
.x87_c00448{left:238.140000px;}
.x6f_c00448{left:240.840000px;}
.x89_c00448{left:243.270000px;}
.x6a_c00448{left:244.620000px;}
.xc_c00448{left:246.780000px;}
.x4_c00448{left:247.999500px;}
.x44_c00448{left:250.449000px;}
.x4f_c00448{left:252.990000px;}
.x73_c00448{left:254.610000px;}
.x1a_c00448{left:255.690000px;}
.x8b_c00448{left:257.580000px;}
.x70_c00448{left:258.930000px;}
.x27_c00448{left:260.010000px;}
.x3d_c00448{left:264.940500px;}
.x74_c00448{left:265.950000px;}
.x6b_c00448{left:267.840000px;}
.x1f_c00448{left:271.833000px;}
.x54_c00448{left:275.940000px;}
.x67_c00448{left:279.990000px;}
.x3e_c00448{left:281.727000px;}
.x75_c00448{left:284.040000px;}
.x5b_c00448{left:285.660000px;}
.x50_c00448{left:289.170000px;}
.x7c_c00448{left:291.060000px;}
.x5d_c00448{left:292.252500px;}
.x38_c00448{left:293.760000px;}
.x2e_c00448{left:297.540000px;}
.x34_c00448{left:299.970000px;}
.x14_c00448{left:301.050000px;}
.x1b_c00448{left:304.560000px;}
.x57_c00448{left:306.450000px;}
.x8c_c00448{left:307.800000px;}
.x5_c00448{left:310.906500px;}
.x6c_c00448{left:312.660000px;}
.x45_c00448{left:314.661000px;}
.xd_c00448{left:315.900000px;}
.x4b_c00448{left:317.790000px;}
.x7e_c00448{left:326.970000px;}
.x39_c00448{left:329.400000px;}
.x6_c00448{left:332.518500px;}
.x5e_c00448{left:334.369500px;}
.x92_c00448{left:335.817582px;}
.x1c_c00448{left:337.230000px;}
.x2f_c00448{left:339.390000px;}
.x8e_c00448{left:341.511000px;}
.x28_c00448{left:343.170000px;}
.x51_c00448{left:345.600000px;}
.xa1_c00448{left:347.172000px;}
.x7_c00448{left:351.423000px;}
.x5f_c00448{left:353.547000px;}
.x58_c00448{left:358.020000px;}
.x3f_c00448{left:361.375500px;}
.x52_c00448{left:362.610000px;}
.x20_c00448{left:365.454000px;}
.xa0_c00448{left:366.660000px;}
.xe_c00448{left:370.710000px;}
.x4c_c00448{left:373.140000px;}
.xae_c00448{left:375.155190px;}
.xac_c00448{left:377.075520px;}
.x30_c00448{left:379.620000px;}
.x40_c00448{left:381.361500px;}
.x8_c00448{left:383.079000px;}
.x1d_c00448{left:385.560000px;}
.x21_c00448{left:389.430000px;}
.x46_c00448{left:390.799500px;}
.x95_c00448{left:393.276453px;}
.x9e_c00448{left:396.630000px;}
.x3a_c00448{left:399.060000px;}
.x53_c00448{left:400.140000px;}
.x31_c00448{left:402.570000px;}
.x15_c00448{left:403.650000px;}
.xa2_c00448{left:408.724500px;}
.xad_c00448{left:410.849220px;}
.xaf_c00448{left:412.160880px;}
.xa8_c00448{left:415.178010px;}
.x96_c00448{left:417.189981px;}
.x22_c00448{left:419.983500px;}
.x29_c00448{left:421.740000px;}
.x41_c00448{left:423.478500px;}
.x16_c00448{left:424.980000px;}
.x9c_c00448{left:427.701636px;}
.xb0_c00448{left:429.984870px;}
.x3b_c00448{left:433.350000px;}
.x8f_c00448{left:435.741000px;}
.x4d_c00448{left:437.130000px;}
.xf_c00448{left:439.020000px;}
.x60_c00448{left:440.802000px;}
.x32_c00448{left:444.960000px;}
.x8d_c00448{left:449.280000px;}
.x9_c00448{left:453.654000px;}
.x5a_c00448{left:455.490000px;}
.x59_c00448{left:457.110000px;}
.x23_c00448{left:458.770500px;}
.xa9_c00448{left:461.130180px;}
.x47_c00448{left:462.892500px;}
.x10_c00448{left:464.400000px;}
.x42_c00448{left:472.896000px;}
.x99_c00448{left:474.617700px;}
.x93_c00448{left:478.673319px;}
.x9f_c00448{left:481.140000px;}
.xa5_c00448{left:487.036410px;}
.x48_c00448{left:489.094500px;}
.x97_c00448{left:498.220263px;}
.xa3_c00448{left:500.796000px;}
.x5c_c00448{left:504.090000px;}
.x94_c00448{left:506.522040px;}
.xb2_c00448{left:508.140000px;}
.xb3_c00448{left:517.320000px;}
.x9a_c00448{left:520.796223px;}
.x90_c00448{left:522.402000px;}
.xa6_c00448{left:525.125160px;}
.xaa_c00448{left:527.495040px;}
.x91_c00448{left:529.651500px;}
.xb5_c00448{left:532.440000px;}
.x98_c00448{left:533.768055px;}
.x9b_c00448{left:534.868020px;}
.x9d_c00448{left:537.347667px;}
.xa4_c00448{left:541.866000px;}
.xa7_c00448{left:547.782210px;}
.xb6_c00448{left:550.800000px;}
.xab_c00448{left:553.478490px;}
.xb1_c00448{left:554.514270px;}
.xb4_c00448{left:555.660000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fsc_c00448{font-size:38.266667pt;}
.fs20_c00448{font-size:41.066667pt;}
.fsb_c00448{font-size:42.000000pt;}
.fs1e_c00448{font-size:42.008399pt;}
.fs16_c00448{font-size:42.010163pt;}
.fs1f_c00448{font-size:42.933333pt;}
.fs1b_c00448{font-size:43.875439pt;}
.fs15_c00448{font-size:43.877281pt;}
.fsf_c00448{font-size:44.800000pt;}
.fse_c00448{font-size:45.733333pt;}
.fs14_c00448{font-size:45.744399pt;}
.fs11_c00448{font-size:46.666667pt;}
.fs1d_c00448{font-size:46.675999pt;}
.fs17_c00448{font-size:46.677959pt;}
.fs10_c00448{font-size:47.600000pt;}
.fs1a_c00448{font-size:48.543039pt;}
.fs12_c00448{font-size:49.466667pt;}
.fsd_c00448{font-size:51.333333pt;}
.fs1c_c00448{font-size:51.343599pt;}
.fs18_c00448{font-size:52.266667pt;}
.fs8_c00448{font-size:56.000000pt;}
.fsa_c00448{font-size:56.001792pt;}
.fs19_c00448{font-size:56.933333pt;}
.fs5_c00448{font-size:58.800000pt;}
.fs2_c00448{font-size:59.733333pt;}
.fs4_c00448{font-size:61.600000pt;}
.fs1_c00448{font-size:63.466667pt;}
.fs0_c00448{font-size:63.469840pt;}
.fs9_c00448{font-size:64.400000pt;}
.fs3_c00448{font-size:65.333333pt;}
.fs6_c00448{font-size:66.266667pt;}
.fs7_c00448{font-size:66.268787pt;}
.fs13_c00448{font-size:121.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y47_c00448{bottom:124.320000pt;}
.y66_c00448{bottom:126.335632pt;}
.y68_c00448{bottom:126.335741pt;}
.y67_c00448{bottom:126.335989pt;}
.y69_c00448{bottom:126.335997pt;}
.y6a_c00448{bottom:126.336483pt;}
.y5f_c00448{bottom:140.634235pt;}
.y46_c00448{bottom:140.761333pt;}
.y60_c00448{bottom:141.580867pt;}
.y61_c00448{bottom:142.180277pt;}
.y62_c00448{bottom:142.393101pt;}
.y63_c00448{bottom:143.117141pt;}
.y64_c00448{bottom:143.978835pt;}
.y65_c00448{bottom:144.242011pt;}
.y55_c00448{bottom:155.996917pt;}
.y56_c00448{bottom:156.129613pt;}
.y45_c00448{bottom:156.837333pt;}
.y57_c00448{bottom:156.917955pt;}
.y58_c00448{bottom:157.079325pt;}
.y59_c00448{bottom:157.525624pt;}
.y5a_c00448{bottom:158.043779pt;}
.y5b_c00448{bottom:158.417869pt;}
.y5c_c00448{bottom:158.856424pt;}
.y5d_c00448{bottom:159.038181pt;}
.y5e_c00448{bottom:159.701323pt;}
.y9b_c00448{bottom:160.376000pt;}
.y4f_c00448{bottom:172.079485pt;}
.y50_c00448{bottom:172.873837pt;}
.y44_c00448{bottom:173.034667pt;}
.y51_c00448{bottom:173.893331pt;}
.y52_c00448{bottom:174.107221pt;}
.y53_c00448{bottom:174.620987pt;}
.y54_c00448{bottom:175.116227pt;}
.y9a_c00448{bottom:175.717333pt;}
.y49_c00448{bottom:188.404000pt;}
.y43_c00448{bottom:188.880000pt;}
.y4a_c00448{bottom:189.565307pt;}
.y4b_c00448{bottom:190.246720pt;}
.y4c_c00448{bottom:190.812707pt;}
.y4d_c00448{bottom:191.941424pt;}
.y4e_c00448{bottom:192.083192pt;}
.y42_c00448{bottom:205.033333pt;}
.y99_c00448{bottom:205.541600pt;}
.y98_c00448{bottom:205.541680pt;}
.y97_c00448{bottom:205.541760pt;}
.y95_c00448{bottom:205.541973pt;}
.y96_c00448{bottom:205.542133pt;}
.y8e_c00448{bottom:220.307600pt;}
.y41_c00448{bottom:220.521333pt;}
.y8f_c00448{bottom:220.638880pt;}
.y90_c00448{bottom:221.066000pt;}
.y91_c00448{bottom:221.272160pt;}
.y92_c00448{bottom:221.571947pt;}
.y93_c00448{bottom:222.430587pt;}
.y94_c00448{bottom:222.712373pt;}
.y88_c00448{bottom:236.630507pt;}
.y40_c00448{bottom:236.638667pt;}
.y89_c00448{bottom:237.064907pt;}
.y8a_c00448{bottom:237.248613pt;}
.y8b_c00448{bottom:237.545280pt;}
.y8c_c00448{bottom:238.424267pt;}
.y8d_c00448{bottom:238.832133pt;}
.y81_c00448{bottom:252.236053pt;}
.y3f_c00448{bottom:252.581333pt;}
.y82_c00448{bottom:253.307760pt;}
.y83_c00448{bottom:253.571280pt;}
.y84_c00448{bottom:254.073440pt;}
.y85_c00448{bottom:254.469573pt;}
.y86_c00448{bottom:255.766773pt;}
.y87_c00448{bottom:256.275387pt;}
.y7b_c00448{bottom:268.318827pt;}
.y3e_c00448{bottom:268.522667pt;}
.y7c_c00448{bottom:268.757867pt;}
.y7d_c00448{bottom:269.952453pt;}
.y7e_c00448{bottom:270.385467pt;}
.y7f_c00448{bottom:270.718507pt;}
.y80_c00448{bottom:271.600160pt;}
.y74_c00448{bottom:283.680587pt;}
.y75_c00448{bottom:284.004133pt;}
.y3d_c00448{bottom:284.640000pt;}
.y76_c00448{bottom:285.113440pt;}
.y77_c00448{bottom:285.874293pt;}
.y78_c00448{bottom:286.288000pt;}
.y79_c00448{bottom:286.998480pt;}
.y7a_c00448{bottom:287.421280pt;}
.y6d_c00448{bottom:300.004000pt;}
.y3c_c00448{bottom:300.240000pt;}
.y6e_c00448{bottom:301.098267pt;}
.y6f_c00448{bottom:301.347520pt;}
.y70_c00448{bottom:301.903813pt;}
.y71_c00448{bottom:302.230720pt;}
.y72_c00448{bottom:302.735093pt;}
.y73_c00448{bottom:303.465227pt;}
.y33_c00448{bottom:372.241333pt;}
.y34_c00448{bottom:372.579168pt;}
.y35_c00448{bottom:372.779115pt;}
.y36_c00448{bottom:373.185952pt;}
.y37_c00448{bottom:373.378005pt;}
.y38_c00448{bottom:373.677504pt;}
.y39_c00448{bottom:373.813877pt;}
.y3a_c00448{bottom:374.305365pt;}
.y3b_c00448{bottom:374.434357pt;}
.y32_c00448{bottom:393.466667pt;}
.y6c_c00448{bottom:394.205333pt;}
.y31_c00448{bottom:413.200000pt;}
.y30_c00448{bottom:433.333333pt;}
.y2f_c00448{bottom:454.622667pt;}
.y2e_c00448{bottom:474.930667pt;}
.y23_c00448{bottom:494.401333pt;}
.y24_c00448{bottom:494.643584pt;}
.y25_c00448{bottom:494.938976pt;}
.y26_c00448{bottom:495.240779pt;}
.y27_c00448{bottom:495.697397pt;}
.y28_c00448{bottom:495.893173pt;}
.y29_c00448{bottom:496.031179pt;}
.y2a_c00448{bottom:496.238827pt;}
.y2b_c00448{bottom:496.586325pt;}
.y2c_c00448{bottom:496.751488pt;}
.y2d_c00448{bottom:496.937813pt;}
.y19_c00448{bottom:514.080000pt;}
.y1a_c00448{bottom:514.776000pt;}
.y1b_c00448{bottom:515.209333pt;}
.y1c_c00448{bottom:515.344000pt;}
.y1d_c00448{bottom:515.534667pt;}
.y1e_c00448{bottom:515.750667pt;}
.y1f_c00448{bottom:515.982667pt;}
.y20_c00448{bottom:516.142667pt;}
.y21_c00448{bottom:516.480000pt;}
.y22_c00448{bottom:516.876000pt;}
.y18_c00448{bottom:535.733333pt;}
.y17_c00448{bottom:575.392000pt;}
.y6b_c00448{bottom:576.708000pt;}
.y16_c00448{bottom:596.076000pt;}
.y15_c00448{bottom:616.125333pt;}
.yd_c00448{bottom:635.281333pt;}
.ye_c00448{bottom:635.813333pt;}
.yf_c00448{bottom:636.128000pt;}
.y10_c00448{bottom:636.512000pt;}
.y11_c00448{bottom:637.344000pt;}
.y12_c00448{bottom:637.557333pt;}
.y13_c00448{bottom:637.829333pt;}
.y14_c00448{bottom:638.174667pt;}
.yc_c00448{bottom:657.290667pt;}
.yb_c00448{bottom:677.598667pt;}
.ya_c00448{bottom:697.841333pt;}
.y1_c00448{bottom:717.361333pt;}
.y2_c00448{bottom:717.762187pt;}
.y3_c00448{bottom:718.225453pt;}
.y4_c00448{bottom:718.374227pt;}
.y5_c00448{bottom:718.933400pt;}
.y6_c00448{bottom:719.125507pt;}
.y7_c00448{bottom:719.293547pt;}
.y8_c00448{bottom:719.574933pt;}
.y9_c00448{bottom:720.202267pt;}
.y48_c00448{bottom:760.201333pt;}
.he_c00448{height:38.266667pt;}
.h22_c00448{height:41.066667pt;}
.hd_c00448{height:42.000000pt;}
.h20_c00448{height:42.008399pt;}
.h18_c00448{height:42.010163pt;}
.h21_c00448{height:42.933333pt;}
.h1d_c00448{height:43.875439pt;}
.h17_c00448{height:43.877281pt;}
.h11_c00448{height:44.800000pt;}
.h10_c00448{height:45.733333pt;}
.h16_c00448{height:45.744399pt;}
.h13_c00448{height:46.666667pt;}
.h1f_c00448{height:46.675999pt;}
.h19_c00448{height:46.677959pt;}
.h12_c00448{height:47.600000pt;}
.h1c_c00448{height:48.543039pt;}
.h14_c00448{height:49.466667pt;}
.hf_c00448{height:51.333333pt;}
.h1e_c00448{height:51.343599pt;}
.h1a_c00448{height:52.266667pt;}
.ha_c00448{height:56.000000pt;}
.hc_c00448{height:56.001792pt;}
.h1b_c00448{height:56.933333pt;}
.h7_c00448{height:58.800000pt;}
.h4_c00448{height:59.733333pt;}
.h6_c00448{height:61.600000pt;}
.h3_c00448{height:63.466667pt;}
.h2_c00448{height:63.469840pt;}
.hb_c00448{height:64.400000pt;}
.h5_c00448{height:65.333333pt;}
.h8_c00448{height:66.266667pt;}
.h9_c00448{height:66.268787pt;}
.h15_c00448{height:121.333333pt;}
.h1_c00448{height:893.333333pt;}
.h0_c00448{height:893.466667pt;}
.w0_c00448{width:635.733333pt;}
.w1_c00448{width:636.000000pt;}
.x0_c00448{left:0.000000pt;}
.x88_c00448{left:45.360000pt;}
.x7f_c00448{left:48.480000pt;}
.x84_c00448{left:50.880000pt;}
.x7d_c00448{left:73.680000pt;}
.x85_c00448{left:83.280000pt;}
.x61_c00448{left:84.480000pt;}
.x68_c00448{left:85.440000pt;}
.x62_c00448{left:95.520000pt;}
.x80_c00448{left:101.280000pt;}
.x69_c00448{left:105.600000pt;}
.x35_c00448{left:110.400000pt;}
.x63_c00448{left:112.320000pt;}
.x2a_c00448{left:113.280000pt;}
.x55_c00448{left:115.200000pt;}
.x78_c00448{left:116.400000pt;}
.x17_c00448{left:117.600000pt;}
.x1_c00448{left:119.154667pt;}
.x81_c00448{left:124.560000pt;}
.x71_c00448{left:126.000000pt;}
.x64_c00448{left:127.680000pt;}
.x7a_c00448{left:132.000000pt;}
.x86_c00448{left:133.440000pt;}
.x11_c00448{left:134.880000pt;}
.x49_c00448{left:137.520000pt;}
.x4e_c00448{left:138.960000pt;}
.x36_c00448{left:143.760000pt;}
.x79_c00448{left:145.920000pt;}
.xa_c00448{left:148.080000pt;}
.x82_c00448{left:149.040000pt;}
.x65_c00448{left:150.720000pt;}
.x24_c00448{left:155.040000pt;}
.x2b_c00448{left:156.240000pt;}
.x2_c00448{left:159.240000pt;}
.x12_c00448{left:161.280000pt;}
.x76_c00448{left:162.480000pt;}
.x8a_c00448{left:163.440000pt;}
.x6d_c00448{left:164.880000pt;}
.x25_c00448{left:169.440000pt;}
.xb_c00448{left:172.320000pt;}
.x18_c00448{left:175.680000pt;}
.x2c_c00448{left:177.600000pt;}
.x6e_c00448{left:178.800000pt;}
.x72_c00448{left:179.760000pt;}
.x56_c00448{left:181.200000pt;}
.x43_c00448{left:184.896000pt;}
.x3c_c00448{left:187.305333pt;}
.x33_c00448{left:189.120000pt;}
.x4a_c00448{left:190.080000pt;}
.x77_c00448{left:193.680000pt;}
.x7b_c00448{left:194.640000pt;}
.x2d_c00448{left:196.080000pt;}
.x19_c00448{left:197.760000pt;}
.x37_c00448{left:198.960000pt;}
.x26_c00448{left:200.640000pt;}
.x83_c00448{left:201.840000pt;}
.x1e_c00448{left:203.168000pt;}
.x66_c00448{left:204.480000pt;}
.x3_c00448{left:205.566667pt;}
.x13_c00448{left:209.040000pt;}
.x87_c00448{left:211.680000pt;}
.x6f_c00448{left:214.080000pt;}
.x89_c00448{left:216.240000pt;}
.x6a_c00448{left:217.440000pt;}
.xc_c00448{left:219.360000pt;}
.x4_c00448{left:220.444000pt;}
.x44_c00448{left:222.621333pt;}
.x4f_c00448{left:224.880000pt;}
.x73_c00448{left:226.320000pt;}
.x1a_c00448{left:227.280000pt;}
.x8b_c00448{left:228.960000pt;}
.x70_c00448{left:230.160000pt;}
.x27_c00448{left:231.120000pt;}
.x3d_c00448{left:235.502667pt;}
.x74_c00448{left:236.400000pt;}
.x6b_c00448{left:238.080000pt;}
.x1f_c00448{left:241.629333pt;}
.x54_c00448{left:245.280000pt;}
.x67_c00448{left:248.880000pt;}
.x3e_c00448{left:250.424000pt;}
.x75_c00448{left:252.480000pt;}
.x5b_c00448{left:253.920000pt;}
.x50_c00448{left:257.040000pt;}
.x7c_c00448{left:258.720000pt;}
.x5d_c00448{left:259.780000pt;}
.x38_c00448{left:261.120000pt;}
.x2e_c00448{left:264.480000pt;}
.x34_c00448{left:266.640000pt;}
.x14_c00448{left:267.600000pt;}
.x1b_c00448{left:270.720000pt;}
.x57_c00448{left:272.400000pt;}
.x8c_c00448{left:273.600000pt;}
.x5_c00448{left:276.361333pt;}
.x6c_c00448{left:277.920000pt;}
.x45_c00448{left:279.698667pt;}
.xd_c00448{left:280.800000pt;}
.x4b_c00448{left:282.480000pt;}
.x7e_c00448{left:290.640000pt;}
.x39_c00448{left:292.800000pt;}
.x6_c00448{left:295.572000pt;}
.x5e_c00448{left:297.217333pt;}
.x92_c00448{left:298.504517pt;}
.x1c_c00448{left:299.760000pt;}
.x2f_c00448{left:301.680000pt;}
.x8e_c00448{left:303.565333pt;}
.x28_c00448{left:305.040000pt;}
.x51_c00448{left:307.200000pt;}
.xa1_c00448{left:308.597333pt;}
.x7_c00448{left:312.376000pt;}
.x5f_c00448{left:314.264000pt;}
.x58_c00448{left:318.240000pt;}
.x3f_c00448{left:321.222667pt;}
.x52_c00448{left:322.320000pt;}
.x20_c00448{left:324.848000pt;}
.xa0_c00448{left:325.920000pt;}
.xe_c00448{left:329.520000pt;}
.x4c_c00448{left:331.680000pt;}
.xae_c00448{left:333.471280pt;}
.xac_c00448{left:335.178240pt;}
.x30_c00448{left:337.440000pt;}
.x40_c00448{left:338.988000pt;}
.x8_c00448{left:340.514667pt;}
.x1d_c00448{left:342.720000pt;}
.x21_c00448{left:346.160000pt;}
.x46_c00448{left:347.377333pt;}
.x95_c00448{left:349.579069pt;}
.x9e_c00448{left:352.560000pt;}
.x3a_c00448{left:354.720000pt;}
.x53_c00448{left:355.680000pt;}
.x31_c00448{left:357.840000pt;}
.x15_c00448{left:358.800000pt;}
.xa2_c00448{left:363.310667pt;}
.xad_c00448{left:365.199307pt;}
.xaf_c00448{left:366.365227pt;}
.xa8_c00448{left:369.047120pt;}
.x96_c00448{left:370.835539pt;}
.x22_c00448{left:373.318667pt;}
.x29_c00448{left:374.880000pt;}
.x41_c00448{left:376.425333pt;}
.x16_c00448{left:377.760000pt;}
.x9c_c00448{left:380.179232pt;}
.xb0_c00448{left:382.208773pt;}
.x3b_c00448{left:385.200000pt;}
.x8f_c00448{left:387.325333pt;}
.x4d_c00448{left:388.560000pt;}
.xf_c00448{left:390.240000pt;}
.x60_c00448{left:391.824000pt;}
.x32_c00448{left:395.520000pt;}
.x8d_c00448{left:399.360000pt;}
.x9_c00448{left:403.248000pt;}
.x5a_c00448{left:404.880000pt;}
.x59_c00448{left:406.320000pt;}
.x23_c00448{left:407.796000pt;}
.xa9_c00448{left:409.893493pt;}
.x47_c00448{left:411.460000pt;}
.x10_c00448{left:412.800000pt;}
.x42_c00448{left:420.352000pt;}
.x99_c00448{left:421.882400pt;}
.x93_c00448{left:425.487395pt;}
.x9f_c00448{left:427.680000pt;}
.xa5_c00448{left:432.921253pt;}
.x48_c00448{left:434.750667pt;}
.x97_c00448{left:442.862456pt;}
.xa3_c00448{left:445.152000pt;}
.x5c_c00448{left:448.080000pt;}
.x94_c00448{left:450.241813pt;}
.xb2_c00448{left:451.680000pt;}
.xb3_c00448{left:459.840000pt;}
.x9a_c00448{left:462.929976pt;}
.x90_c00448{left:464.357333pt;}
.xa6_c00448{left:466.777920pt;}
.xaa_c00448{left:468.884480pt;}
.x91_c00448{left:470.801333pt;}
.xb5_c00448{left:473.280000pt;}
.x98_c00448{left:474.460493pt;}
.x9b_c00448{left:475.438240pt;}
.x9d_c00448{left:477.642371pt;}
.xa4_c00448{left:481.658667pt;}
.xa7_c00448{left:486.917520pt;}
.xb6_c00448{left:489.600000pt;}
.xab_c00448{left:491.980880pt;}
.xb1_c00448{left:492.901573pt;}
.xb4_c00448{left:493.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m6b_c00449{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012760,0.000000,0.000000,0.250000,0,0);}
.m159_c00449{transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);}
.m12e_c00449{transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027315,0.000000,0.000000,0.250000,0,0);}
.mb5_c00449{transform:matrix(0.039345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039345,0.000000,0.000000,0.250000,0,0);}
.me5_c00449{transform:matrix(0.040780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040780,0.000000,0.000000,0.250000,0,0);}
.m150_c00449{transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065880,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.072880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072880,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.075370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075370,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.m16c_c00449{transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);}
.m146_c00449{transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117930,0.000000,0.000000,0.250000,0,0);}
.m10a_c00449{transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127795,0.000000,0.000000,0.250000,0,0);}
.m91_c00449{transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.m162_c00449{transform:matrix(0.140970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140970,0.000000,0.000000,0.250000,0,0);}
.m16d_c00449{transform:matrix(0.144140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144140,0.000000,0.000000,0.250000,0,0);}
.m139_c00449{transform:matrix(0.145820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145820,0.000000,0.000000,0.250000,0,0);}
.m123_c00449{transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.146645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146645,0.000000,0.000000,0.250000,0,0);}
.m56_c00449{transform:matrix(0.147445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147445,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m127_c00449{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);}
.m10_c00449{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);}
.m16_c00449{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);}
.me3_c00449{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);}
.m85_c00449{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);}
.m51_c00449{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);}
.m11c_c00449{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);}
.m7f_c00449{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);}
.mf5_c00449{transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159890,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);}
.m60_c00449{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);}
.m81_c00449{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{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);}
.m70_c00449{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);}
.me0_c00449{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);}
.m7a_c00449{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);}
.m93_c00449{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);}
.m129_c00449{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);}
.m75_c00449{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);}
.m25_c00449{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);}
.m115_c00449{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m15f_c00449{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);}
.m5e_c00449{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);}
.m145_c00449{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);}
.m38_c00449{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);}
.m42_c00449{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);}
.m13a_c00449{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);}
.m79_c00449{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);}
.ma0_c00449{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{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);}
.m169_c00449{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.m9e_c00449{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);}
.m9c_c00449{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);}
.m58_c00449{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.m110_c00449{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);}
.m65_c00449{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);}
.mc7_c00449{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);}
.m16e_c00449{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);}
.m124_c00449{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);}
.m13d_c00449{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);}
.m73_c00449{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);}
.m138_c00449{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);}
.m71_c00449{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);}
.m10b_c00449{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);}
.m116_c00449{transform:matrix(0.173895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173895,0.000000,0.000000,0.250000,0,0);}
.mbe_c00449{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);}
.m46_c00449{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);}
.m120_c00449{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);}
.mb4_c00449{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);}
.m13f_c00449{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);}
.ma5_c00449{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);}
.m54_c00449{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);}
.m102_c00449{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);}
.m90_c00449{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);}
.mef_c00449{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);}
.m10c_c00449{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);}
.m1a_c00449{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);}
.mbb_c00449{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);}
.m30_c00449{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);}
.m153_c00449{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);}
.mf4_c00449{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);}
.m5f_c00449{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);}
.m7c_c00449{transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179165,0.000000,0.000000,0.250000,0,0);}
.m55_c00449{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);}
.ma9_c00449{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);}
.m136_c00449{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);}
.m23_c00449{transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179995,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{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);}
.mbd_c00449{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);}
.m13e_c00449{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);}
.m14_c00449{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);}
.m61_c00449{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);}
.mf3_c00449{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);}
.m43_c00449{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);}
.m2e_c00449{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);}
.m16f_c00449{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);}
.mc0_c00449{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);}
.m1b_c00449{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);}
.m4b_c00449{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);}
.m130_c00449{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);}
.m52_c00449{transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184430,0.000000,0.000000,0.250000,0,0);}
.m95_c00449{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_c00449{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);}
.m2b_c00449{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);}
.mab_c00449{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);}
.m6a_c00449{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);}
.m13b_c00449{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);}
.mc8_c00449{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);}
.mdf_c00449{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);}
.mad_c00449{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);}
.m113_c00449{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);}
.mfc_c00449{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);}
.m76_c00449{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);}
.m4f_c00449{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);}
.maf_c00449{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);}
.m94_c00449{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);}
.m9a_c00449{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);}
.mc5_c00449{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);}
.m2c_c00449{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);}
.m74_c00449{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);}
.mf2_c00449{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);}
.m105_c00449{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);}
.m12b_c00449{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);}
.m140_c00449{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);}
.m1f_c00449{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);}
.m68_c00449{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);}
.m13_c00449{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);}
.m137_c00449{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);}
.m2f_c00449{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);}
.m10e_c00449{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_c00449{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);}
.ma6_c00449{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);}
.mbc_c00449{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);}
.m157_c00449{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);}
.md2_c00449{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);}
.m10d_c00449{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);}
.m8a_c00449{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);}
.mf6_c00449{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);}
.m7d_c00449{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);}
.me7_c00449{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);}
.m27_c00449{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);}
.mdd_c00449{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);}
.m88_c00449{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);}
.m160_c00449{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);}
.m26_c00449{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);}
.m161_c00449{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);}
.m59_c00449{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);}
.m107_c00449{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);}
.m66_c00449{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);}
.mae_c00449{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);}
.m69_c00449{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);}
.m14a_c00449{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);}
.m18_c00449{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);}
.m134_c00449{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);}
.m119_c00449{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);}
.m133_c00449{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);}
.m45_c00449{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_c00449{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);}
.m11e_c00449{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);}
.ma4_c00449{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);}
.m8b_c00449{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);}
.mea_c00449{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);}
.m50_c00449{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);}
.m62_c00449{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);}
.m8_c00449{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);}
.m5d_c00449{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);}
.m132_c00449{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);}
.m10f_c00449{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);}
.m63_c00449{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);}
.m24_c00449{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);}
.m7b_c00449{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);}
.m106_c00449{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);}
.m53_c00449{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);}
.mbf_c00449{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);}
.m34_c00449{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);}
.me6_c00449{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);}
.maa_c00449{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);}
.m2a_c00449{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);}
.mc4_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);}
.m111_c00449{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);}
.m104_c00449{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);}
.mfb_c00449{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);}
.m15_c00449{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);}
.m22_c00449{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);}
.mf9_c00449{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);}
.md9_c00449{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);}
.m57_c00449{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);}
.m121_c00449{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);}
.m32_c00449{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);}
.m170_c00449{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);}
.m125_c00449{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);}
.m114_c00449{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);}
.ma1_c00449{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);}
.m126_c00449{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);}
.m37_c00449{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);}
.m3d_c00449{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);}
.mcb_c00449{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);}
.mb3_c00449{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);}
.mf8_c00449{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);}
.m86_c00449{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);}
.ma8_c00449{transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);}
.m64_c00449{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);}
.mdb_c00449{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);}
.m89_c00449{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);}
.m87_c00449{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);}
.meb_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);}
.ma7_c00449{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);}
.m1d_c00449{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);}
.m92_c00449{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);}
.mb1_c00449{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);}
.m131_c00449{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);}
.m14e_c00449{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);}
.m128_c00449{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);}
.m1c_c00449{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);}
.m109_c00449{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);}
.m33_c00449{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);}
.mb7_c00449{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);}
.m4a_c00449{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);}
.m147_c00449{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);}
.m166_c00449{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);}
.ma2_c00449{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);}
.me1_c00449{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);}
.m118_c00449{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);}
.m5c_c00449{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);}
.m8f_c00449{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);}
.m8e_c00449{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);}
.m122_c00449{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);}
.mb0_c00449{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);}
.mb8_c00449{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);}
.m48_c00449{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);}
.m6f_c00449{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);}
.m3e_c00449{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);}
.m1e_c00449{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);}
.m8c_c00449{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);}
.mf1_c00449{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);}
.m12a_c00449{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);}
.m143_c00449{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);}
.m98_c00449{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);}
.m15c_c00449{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);}
.m3a_c00449{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);}
.m12c_c00449{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);}
.m5b_c00449{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);}
.mcf_c00449{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);}
.md0_c00449{transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);}
.m9f_c00449{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);}
.m15b_c00449{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);}
.m17_c00449{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);}
.m149_c00449{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);}
.m15a_c00449{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);}
.md5_c00449{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);}
.m9d_c00449{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);}
.m40_c00449{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);}
.m108_c00449{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);}
.m78_c00449{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);}
.m35_c00449{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);}
.m31_c00449{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);}
.mb_c00449{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);}
.m21_c00449{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);}
.med_c00449{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m135_c00449{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);}
.m163_c00449{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);}
.m97_c00449{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);}
.mac_c00449{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);}
.m19_c00449{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);}
.m148_c00449{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);}
.mf0_c00449{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);}
.md4_c00449{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);}
.mda_c00449{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);}
.m80_c00449{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);}
.mcc_c00449{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);}
.m11b_c00449{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.me8_c00449{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);}
.m13c_c00449{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);}
.m142_c00449{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);}
.m152_c00449{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);}
.m8d_c00449{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);}
.m11d_c00449{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);}
.mf_c00449{transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229415,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);}
.m82_c00449{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);}
.m84_c00449{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);}
.m3c_c00449{transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232270,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);}
.m14d_c00449{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);}
.ma3_c00449{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);}
.m155_c00449{transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);}
.m112_c00449{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);}
.md1_c00449{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);}
.m11f_c00449{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);}
.mfa_c00449{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);}
.m39_c00449{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);}
.m77_c00449{transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240510,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{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);}
.m151_c00449{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);}
.m5a_c00449{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);}
.m158_c00449{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m15d_c00449{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);}
.mfd_c00449{transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244265,0.000000,0.000000,0.250000,0,0);}
.mde_c00449{transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244710,0.000000,0.000000,0.250000,0,0);}
.m165_c00449{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);}
.m9b_c00449{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.mc6_c00449{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m144_c00449{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);}
.me9_c00449{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);}
.mf7_c00449{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);}
.m14b_c00449{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m167_c00449{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);}
.mcd_c00449{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.mc1_c00449{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);}
.m117_c00449{transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);}
.mc2_c00449{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);}
.mb9_c00449{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);}
.mb2_c00449{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256515,0.000000,0.000000,0.250000,0,0);}
.m16a_c00449{transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260125,0.000000,0.000000,0.250000,0,0);}
.m100_c00449{transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);}
.me2_c00449{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);}
.md3_c00449{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);}
.m12f_c00449{transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);}
.mca_c00449{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);}
.m14c_c00449{transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268090,0.000000,0.000000,0.250000,0,0);}
.mdc_c00449{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);}
.m6_c00449{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);}
.m47_c00449{transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);}
.m154_c00449{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.md7_c00449{transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280830,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m7e_c00449{transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);}
.md6_c00449{transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.284365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284365,0.000000,0.000000,0.250000,0,0);}
.mce_c00449{transform:matrix(0.284645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284645,0.000000,0.000000,0.250000,0,0);}
.m168_c00449{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);}
.ma_c00449{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);}
.mfe_c00449{transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286770,0.000000,0.000000,0.250000,0,0);}
.mec_c00449{transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287140,0.000000,0.000000,0.250000,0,0);}
.m141_c00449{transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287350,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296545,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.299955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299955,0.000000,0.000000,0.250000,0,0);}
.m14f_c00449{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);}
.mb6_c00449{transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302390,0.000000,0.000000,0.250000,0,0);}
.m15e_c00449{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);}
.m4d_c00449{transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304525,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305680,0.000000,0.000000,0.250000,0,0);}
.mee_c00449{transform:matrix(0.308505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308505,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{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);}
.m16b_c00449{transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);}
.m83_c00449{transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318360,0.000000,0.000000,0.250000,0,0);}
.mba_c00449{transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);}
.m12d_c00449{transform:matrix(0.321285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321285,0.000000,0.000000,0.250000,0,0);}
.m99_c00449{transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326440,0.000000,0.000000,0.250000,0,0);}
.mff_c00449{transform:matrix(0.329110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329110,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{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);}
.m11a_c00449{transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360335,0.000000,0.000000,0.250000,0,0);}
.mc3_c00449{transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00449{transform:matrix(0.371685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371685,0.000000,0.000000,0.250000,0,0);}
.me4_c00449{transform:matrix(0.383695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383695,0.000000,0.000000,0.250000,0,0);}
.m171_c00449{transform:matrix(0.391670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391670,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.403105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403105,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.492375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492375,0.000000,0.000000,0.250000,0,0);}
.m103_c00449{transform:matrix(0.523120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523120,0.000000,0.000000,0.250000,0,0);}
.m156_c00449{transform:matrix(0.580300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580300,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.629010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629010,0.000000,0.000000,0.250000,0,0);}
.md8_c00449{transform:matrix(0.660290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660290,0.000000,0.000000,0.250000,0,0);}
.m101_c00449{transform:matrix(0.681015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681015,0.000000,0.000000,0.250000,0,0);}
.m172_c00449{transform:matrix(0.744515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744515,0.000000,0.000000,0.250000,0,0);}
.m164_c00449{transform:matrix(0.800155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800155,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.984735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984735,0.000000,0.000000,0.250000,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;}
.fs0_c00449{font-size:36.750000px;}
.fs15_c00449{font-size:46.200000px;}
.fs12_c00449{font-size:47.250000px;}
.fsd_c00449{font-size:48.300000px;}
.fse_c00449{font-size:49.350000px;}
.fs10_c00449{font-size:50.400000px;}
.fsf_c00449{font-size:51.450000px;}
.fs13_c00449{font-size:52.500000px;}
.fs11_c00449{font-size:53.550000px;}
.fs14_c00449{font-size:54.600000px;}
.fs16_c00449{font-size:58.800000px;}
.fs2_c00449{font-size:59.850000px;}
.fsa_c00449{font-size:63.000000px;}
.fs5_c00449{font-size:64.050000px;}
.fsb_c00449{font-size:68.250000px;}
.fs8_c00449{font-size:69.300000px;}
.fs7_c00449{font-size:70.350000px;}
.fs9_c00449{font-size:71.400000px;}
.fsc_c00449{font-size:72.450000px;}
.fs6_c00449{font-size:73.500000px;}
.fs4_c00449{font-size:74.550000px;}
.fs1_c00449{font-size:87.150000px;}
.fs3_c00449{font-size:95.550000px;}
.y0_c00449{bottom:0.000000px;}
.y3_c00449{bottom:126.228000px;}
.y38_c00449{bottom:142.984500px;}
.y24_c00449{bottom:143.770500px;}
.y37_c00449{bottom:161.695500px;}
.y23_c00449{bottom:161.703000px;}
.y36_c00449{bottom:179.452500px;}
.y22_c00449{bottom:179.820000px;}
.y35_c00449{bottom:197.493000px;}
.y21_c00449{bottom:197.790000px;}
.y34_c00449{bottom:215.460000px;}
.y20_c00449{bottom:216.121500px;}
.y1f_c00449{bottom:233.388000px;}
.y33_c00449{bottom:233.769000px;}
.y25_c00449{bottom:250.968000px;}
.y32_c00449{bottom:251.640000px;}
.y1e_c00449{bottom:252.066000px;}
.y31_c00449{bottom:269.161500px;}
.y1d_c00449{bottom:269.685000px;}
.y30_c00449{bottom:287.056500px;}
.y1c_c00449{bottom:287.527500px;}
.y1b_c00449{bottom:305.268000px;}
.y2f_c00449{bottom:305.412000px;}
.y2e_c00449{bottom:323.149500px;}
.y1a_c00449{bottom:323.313000px;}
.y19_c00449{bottom:340.579500px;}
.y2d_c00449{bottom:341.391000px;}
.y18_c00449{bottom:358.986000px;}
.y2c_c00449{bottom:359.263500px;}
.y2b_c00449{bottom:376.753500px;}
.y17_c00449{bottom:376.806000px;}
.y2a_c00449{bottom:394.842000px;}
.y16_c00449{bottom:395.010000px;}
.y29_c00449{bottom:412.449000px;}
.y15_c00449{bottom:413.185500px;}
.y28_c00449{bottom:430.600500px;}
.y14_c00449{bottom:430.893000px;}
.y27_c00449{bottom:448.615500px;}
.y13_c00449{bottom:448.783500px;}
.y26_c00449{bottom:466.477500px;}
.y12_c00449{bottom:467.070000px;}
.y11_c00449{bottom:517.722000px;}
.y10_c00449{bottom:540.058500px;}
.yf_c00449{bottom:563.142000px;}
.ye_c00449{bottom:587.041500px;}
.yd_c00449{bottom:609.456000px;}
.yc_c00449{bottom:632.271000px;}
.yb_c00449{bottom:654.759000px;}
.ya_c00449{bottom:677.211000px;}
.y9_c00449{bottom:700.101000px;}
.y8_c00449{bottom:722.608500px;}
.y7_c00449{bottom:745.279500px;}
.y6_c00449{bottom:768.408000px;}
.y5_c00449{bottom:791.958000px;}
.y4_c00449{bottom:815.334000px;}
.y2_c00449{bottom:901.260000px;}
.y1_c00449{bottom:923.269500px;}
.h2_c00449{height:36.750000px;}
.h17_c00449{height:46.200000px;}
.h14_c00449{height:47.250000px;}
.hf_c00449{height:48.300000px;}
.h10_c00449{height:49.350000px;}
.h12_c00449{height:50.400000px;}
.h11_c00449{height:51.450000px;}
.h15_c00449{height:52.500000px;}
.h13_c00449{height:53.550000px;}
.h16_c00449{height:54.600000px;}
.h18_c00449{height:58.800000px;}
.h4_c00449{height:59.850000px;}
.hc_c00449{height:63.000000px;}
.h7_c00449{height:64.050000px;}
.hd_c00449{height:68.250000px;}
.ha_c00449{height:69.300000px;}
.h9_c00449{height:70.350000px;}
.hb_c00449{height:71.400000px;}
.he_c00449{height:72.450000px;}
.h8_c00449{height:73.500000px;}
.h6_c00449{height:74.550000px;}
.h3_c00449{height:87.150000px;}
.h5_c00449{height:95.550000px;}
.h0_c00449{height:1008.450000px;}
.h1_c00449{height:1008.750000px;}
.w1_c00449{width:689.250000px;}
.w0_c00449{width:689.550000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:72.900000px;}
.x2_c00449{left:76.140000px;}
.x3_c00449{left:110.700000px;}
.x4_c00449{left:122.040000px;}
.x5e_c00449{left:132.570000px;}
.x78_c00449{left:133.920000px;}
.x7f_c00449{left:135.270000px;}
.x72_c00449{left:140.670000px;}
.x6c_c00449{left:142.830000px;}
.x86_c00449{left:143.910000px;}
.x56_c00449{left:145.800000px;}
.x5_c00449{left:151.470000px;}
.x79_c00449{left:152.820000px;}
.x68_c00449{left:154.710000px;}
.x62_c00449{left:156.060000px;}
.x25_c00449{left:162.000000px;}
.x7a_c00449{left:163.080000px;}
.x57_c00449{left:164.430000px;}
.x6_c00449{left:166.860000px;}
.x1d_c00449{left:168.480000px;}
.x83_c00449{left:169.830000px;}
.x73_c00449{left:171.990000px;}
.x5f_c00449{left:180.900000px;}
.x58_c00449{left:181.980000px;}
.x87_c00449{left:183.330000px;}
.x7_c00449{left:184.950000px;}
.x65_c00449{left:188.190000px;}
.x7d_c00449{left:189.810000px;}
.x39_c00449{left:191.160000px;}
.x69_c00449{left:193.050000px;}
.x18_c00449{left:194.130000px;}
.xe_c00449{left:195.480000px;}
.x66_c00449{left:197.910000px;}
.x33_c00449{left:200.070000px;}
.x74_c00449{left:204.390000px;}
.x2f_c00449{left:209.790000px;}
.x1e_c00449{left:211.140000px;}
.x7b_c00449{left:212.760000px;}
.x82_c00449{left:215.190000px;}
.x53_c00449{left:216.540000px;}
.x6f_c00449{left:223.290000px;}
.xf_c00449{left:225.720000px;}
.x6a_c00449{left:227.340000px;}
.x42_c00449{left:228.960000px;}
.x3a_c00449{left:231.660000px;}
.x2a_c00449{left:234.900000px;}
.x59_c00449{left:239.760000px;}
.x46_c00449{left:243.810000px;}
.x67_c00449{left:245.430000px;}
.x50_c00449{left:246.510000px;}
.x26_c00449{left:248.940000px;}
.x10_c00449{left:250.830000px;}
.x34_c00449{left:252.450000px;}
.x8_c00449{left:255.150000px;}
.x84_c00449{left:257.310000px;}
.x1f_c00449{left:260.550000px;}
.x3b_c00449{left:263.250000px;}
.x7c_c00449{left:265.140000px;}
.x5a_c00449{left:266.760000px;}
.x43_c00449{left:267.840000px;}
.x75_c00449{left:270.810000px;}
.x60_c00449{left:272.430000px;}
.x80_c00449{left:274.320000px;}
.x11_c00449{left:276.750000px;}
.x20_c00449{left:278.910000px;}
.x27_c00449{left:280.530000px;}
.x88_c00449{left:282.960000px;}
.x63_c00449{left:285.930000px;}
.x70_c00449{left:287.550000px;}
.x30_c00449{left:288.630000px;}
.x51_c00449{left:290.520000px;}
.x35_c00449{left:292.140000px;}
.x76_c00449{left:293.220000px;}
.x81_c00449{left:297.810000px;}
.x9_c00449{left:299.160000px;}
.x47_c00449{left:300.510000px;}
.x77_c00449{left:305.640000px;}
.x4b_c00449{left:308.070000px;}
.x52_c00449{left:309.420000px;}
.x3c_c00449{left:312.120000px;}
.x12_c00449{left:313.740000px;}
.xa_c00449{left:315.900000px;}
.xd_c00449{left:317.250000px;}
.x64_c00449{left:319.140000px;}
.x71_c00449{left:321.030000px;}
.x19_c00449{left:323.460000px;}
.x54_c00449{left:325.890000px;}
.x5b_c00449{left:326.970000px;}
.x6d_c00449{left:329.940000px;}
.x2b_c00449{left:331.290000px;}
.xb_c00449{left:332.370000px;}
.x6b_c00449{left:333.450000px;}
.x61_c00449{left:335.610000px;}
.x28_c00449{left:336.690000px;}
.x7e_c00449{left:337.770000px;}
.x5c_c00449{left:338.850000px;}
.x6e_c00449{left:345.060000px;}
.x2c_c00449{left:346.950000px;}
.x1a_c00449{left:348.030000px;}
.x48_c00449{left:349.920000px;}
.x13_c00449{left:354.240000px;}
.x5d_c00449{left:366.390000px;}
.x3d_c00449{left:367.470000px;}
.x2d_c00449{left:369.360000px;}
.x9c_c00449{left:372.330000px;}
.x85_c00449{left:375.300000px;}
.x31_c00449{left:376.650000px;}
.x89_c00449{left:378.000000px;}
.xc_c00449{left:379.350000px;}
.xc3_c00449{left:380.700000px;}
.x96_c00449{left:381.780000px;}
.x49_c00449{left:382.860000px;}
.x21_c00449{left:385.020000px;}
.x14_c00449{left:387.990000px;}
.xac_c00449{left:390.420000px;}
.x4c_c00449{left:395.010000px;}
.x8c_c00449{left:396.900000px;}
.x22_c00449{left:399.330000px;}
.x9d_c00449{left:402.030000px;}
.x36_c00449{left:404.190000px;}
.x55_c00449{left:406.080000px;}
.x44_c00449{left:409.590000px;}
.xb9_c00449{left:410.670000px;}
.x29_c00449{left:411.750000px;}
.x3e_c00449{left:415.530000px;}
.x4d_c00449{left:416.610000px;}
.xc6_c00449{left:422.820000px;}
.x1b_c00449{left:427.680000px;}
.xa3_c00449{left:429.570000px;}
.x97_c00449{left:430.650000px;}
.x4a_c00449{left:432.810000px;}
.x45_c00449{left:436.050000px;}
.x32_c00449{left:437.670000px;}
.x15_c00449{left:439.560000px;}
.xc4_c00449{left:440.640000px;}
.xc1_c00449{left:444.420000px;}
.xa4_c00449{left:446.040000px;}
.x23_c00449{left:447.120000px;}
.x37_c00449{left:450.360000px;}
.x98_c00449{left:451.440000px;}
.x4e_c00449{left:453.330000px;}
.xb2_c00449{left:455.220000px;}
.x16_c00449{left:456.570000px;}
.x8a_c00449{left:459.000000px;}
.x3f_c00449{left:460.620000px;}
.xb5_c00449{left:466.560000px;}
.x2e_c00449{left:468.720000px;}
.xba_c00449{left:470.340000px;}
.x9e_c00449{left:471.420000px;}
.xa5_c00449{left:472.500000px;}
.x8b_c00449{left:476.550000px;}
.x91_c00449{left:478.440000px;}
.x24_c00449{left:479.520000px;}
.x8d_c00449{left:480.600000px;}
.x1c_c00449{left:483.570000px;}
.xb6_c00449{left:487.080000px;}
.xc2_c00449{left:489.240000px;}
.xa9_c00449{left:493.290000px;}
.x4f_c00449{left:497.070000px;}
.x92_c00449{left:498.960000px;}
.xc5_c00449{left:500.040000px;}
.xc7_c00449{left:501.390000px;}
.x38_c00449{left:502.470000px;}
.x17_c00449{left:504.090000px;}
.x9f_c00449{left:505.980000px;}
.xaa_c00449{left:507.600000px;}
.x40_c00449{left:510.030000px;}
.xb0_c00449{left:512.730000px;}
.xab_c00449{left:515.430000px;}
.xa6_c00449{left:518.940000px;}
.xa0_c00449{left:520.020000px;}
.x8e_c00449{left:521.910000px;}
.x93_c00449{left:524.070000px;}
.x99_c00449{left:527.310000px;}
.xa1_c00449{left:528.390000px;}
.xbe_c00449{left:529.470000px;}
.x41_c00449{left:531.090000px;}
.xbb_c00449{left:532.440000px;}
.xad_c00449{left:534.330000px;}
.xbf_c00449{left:535.950000px;}
.xa7_c00449{left:538.110000px;}
.xc8_c00449{left:540.000000px;}
.xb1_c00449{left:542.160000px;}
.xb3_c00449{left:545.940000px;}
.x9a_c00449{left:551.610000px;}
.x8f_c00449{left:554.040000px;}
.xa8_c00449{left:556.200000px;}
.xb7_c00449{left:559.980000px;}
.xbc_c00449{left:561.600000px;}
.x94_c00449{left:566.730000px;}
.xae_c00449{left:571.050000px;}
.xa2_c00449{left:574.020000px;}
.x95_c00449{left:582.120000px;}
.xaf_c00449{left:585.900000px;}
.x90_c00449{left:589.680000px;}
.xc9_c00449{left:592.380000px;}
.xc0_c00449{left:593.460000px;}
.x9b_c00449{left:597.510000px;}
.xb4_c00449{left:606.690000px;}
.xb8_c00449{left:608.580000px;}
.xbd_c00449{left:615.330000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fs0_c00449{font-size:32.666667pt;}
.fs15_c00449{font-size:41.066667pt;}
.fs12_c00449{font-size:42.000000pt;}
.fsd_c00449{font-size:42.933333pt;}
.fse_c00449{font-size:43.866667pt;}
.fs10_c00449{font-size:44.800000pt;}
.fsf_c00449{font-size:45.733333pt;}
.fs13_c00449{font-size:46.666667pt;}
.fs11_c00449{font-size:47.600000pt;}
.fs14_c00449{font-size:48.533333pt;}
.fs16_c00449{font-size:52.266667pt;}
.fs2_c00449{font-size:53.200000pt;}
.fsa_c00449{font-size:56.000000pt;}
.fs5_c00449{font-size:56.933333pt;}
.fsb_c00449{font-size:60.666667pt;}
.fs8_c00449{font-size:61.600000pt;}
.fs7_c00449{font-size:62.533333pt;}
.fs9_c00449{font-size:63.466667pt;}
.fsc_c00449{font-size:64.400000pt;}
.fs6_c00449{font-size:65.333333pt;}
.fs4_c00449{font-size:66.266667pt;}
.fs1_c00449{font-size:77.466667pt;}
.fs3_c00449{font-size:84.933333pt;}
.y0_c00449{bottom:0.000000pt;}
.y3_c00449{bottom:112.202667pt;}
.y38_c00449{bottom:127.097333pt;}
.y24_c00449{bottom:127.796000pt;}
.y37_c00449{bottom:143.729333pt;}
.y23_c00449{bottom:143.736000pt;}
.y36_c00449{bottom:159.513333pt;}
.y22_c00449{bottom:159.840000pt;}
.y35_c00449{bottom:175.549333pt;}
.y21_c00449{bottom:175.813333pt;}
.y34_c00449{bottom:191.520000pt;}
.y20_c00449{bottom:192.108000pt;}
.y1f_c00449{bottom:207.456000pt;}
.y33_c00449{bottom:207.794667pt;}
.y25_c00449{bottom:223.082667pt;}
.y32_c00449{bottom:223.680000pt;}
.y1e_c00449{bottom:224.058667pt;}
.y31_c00449{bottom:239.254667pt;}
.y1d_c00449{bottom:239.720000pt;}
.y30_c00449{bottom:255.161333pt;}
.y1c_c00449{bottom:255.580000pt;}
.y1b_c00449{bottom:271.349333pt;}
.y2f_c00449{bottom:271.477333pt;}
.y2e_c00449{bottom:287.244000pt;}
.y1a_c00449{bottom:287.389333pt;}
.y19_c00449{bottom:302.737333pt;}
.y2d_c00449{bottom:303.458667pt;}
.y18_c00449{bottom:319.098667pt;}
.y2c_c00449{bottom:319.345333pt;}
.y2b_c00449{bottom:334.892000pt;}
.y17_c00449{bottom:334.938667pt;}
.y2a_c00449{bottom:350.970667pt;}
.y16_c00449{bottom:351.120000pt;}
.y29_c00449{bottom:366.621333pt;}
.y15_c00449{bottom:367.276000pt;}
.y28_c00449{bottom:382.756000pt;}
.y14_c00449{bottom:383.016000pt;}
.y27_c00449{bottom:398.769333pt;}
.y13_c00449{bottom:398.918667pt;}
.y26_c00449{bottom:414.646667pt;}
.y12_c00449{bottom:415.173333pt;}
.y11_c00449{bottom:460.197333pt;}
.y10_c00449{bottom:480.052000pt;}
.yf_c00449{bottom:500.570667pt;}
.ye_c00449{bottom:521.814667pt;}
.yd_c00449{bottom:541.738667pt;}
.yc_c00449{bottom:562.018667pt;}
.yb_c00449{bottom:582.008000pt;}
.ya_c00449{bottom:601.965333pt;}
.y9_c00449{bottom:622.312000pt;}
.y8_c00449{bottom:642.318667pt;}
.y7_c00449{bottom:662.470667pt;}
.y6_c00449{bottom:683.029333pt;}
.y5_c00449{bottom:703.962667pt;}
.y4_c00449{bottom:724.741333pt;}
.y2_c00449{bottom:801.120000pt;}
.y1_c00449{bottom:820.684000pt;}
.h2_c00449{height:32.666667pt;}
.h17_c00449{height:41.066667pt;}
.h14_c00449{height:42.000000pt;}
.hf_c00449{height:42.933333pt;}
.h10_c00449{height:43.866667pt;}
.h12_c00449{height:44.800000pt;}
.h11_c00449{height:45.733333pt;}
.h15_c00449{height:46.666667pt;}
.h13_c00449{height:47.600000pt;}
.h16_c00449{height:48.533333pt;}
.h18_c00449{height:52.266667pt;}
.h4_c00449{height:53.200000pt;}
.hc_c00449{height:56.000000pt;}
.h7_c00449{height:56.933333pt;}
.hd_c00449{height:60.666667pt;}
.ha_c00449{height:61.600000pt;}
.h9_c00449{height:62.533333pt;}
.hb_c00449{height:63.466667pt;}
.he_c00449{height:64.400000pt;}
.h8_c00449{height:65.333333pt;}
.h6_c00449{height:66.266667pt;}
.h3_c00449{height:77.466667pt;}
.h5_c00449{height:84.933333pt;}
.h0_c00449{height:896.400000pt;}
.h1_c00449{height:896.666667pt;}
.w1_c00449{width:612.666667pt;}
.w0_c00449{width:612.933333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:64.800000pt;}
.x2_c00449{left:67.680000pt;}
.x3_c00449{left:98.400000pt;}
.x4_c00449{left:108.480000pt;}
.x5e_c00449{left:117.840000pt;}
.x78_c00449{left:119.040000pt;}
.x7f_c00449{left:120.240000pt;}
.x72_c00449{left:125.040000pt;}
.x6c_c00449{left:126.960000pt;}
.x86_c00449{left:127.920000pt;}
.x56_c00449{left:129.600000pt;}
.x5_c00449{left:134.640000pt;}
.x79_c00449{left:135.840000pt;}
.x68_c00449{left:137.520000pt;}
.x62_c00449{left:138.720000pt;}
.x25_c00449{left:144.000000pt;}
.x7a_c00449{left:144.960000pt;}
.x57_c00449{left:146.160000pt;}
.x6_c00449{left:148.320000pt;}
.x1d_c00449{left:149.760000pt;}
.x83_c00449{left:150.960000pt;}
.x73_c00449{left:152.880000pt;}
.x5f_c00449{left:160.800000pt;}
.x58_c00449{left:161.760000pt;}
.x87_c00449{left:162.960000pt;}
.x7_c00449{left:164.400000pt;}
.x65_c00449{left:167.280000pt;}
.x7d_c00449{left:168.720000pt;}
.x39_c00449{left:169.920000pt;}
.x69_c00449{left:171.600000pt;}
.x18_c00449{left:172.560000pt;}
.xe_c00449{left:173.760000pt;}
.x66_c00449{left:175.920000pt;}
.x33_c00449{left:177.840000pt;}
.x74_c00449{left:181.680000pt;}
.x2f_c00449{left:186.480000pt;}
.x1e_c00449{left:187.680000pt;}
.x7b_c00449{left:189.120000pt;}
.x82_c00449{left:191.280000pt;}
.x53_c00449{left:192.480000pt;}
.x6f_c00449{left:198.480000pt;}
.xf_c00449{left:200.640000pt;}
.x6a_c00449{left:202.080000pt;}
.x42_c00449{left:203.520000pt;}
.x3a_c00449{left:205.920000pt;}
.x2a_c00449{left:208.800000pt;}
.x59_c00449{left:213.120000pt;}
.x46_c00449{left:216.720000pt;}
.x67_c00449{left:218.160000pt;}
.x50_c00449{left:219.120000pt;}
.x26_c00449{left:221.280000pt;}
.x10_c00449{left:222.960000pt;}
.x34_c00449{left:224.400000pt;}
.x8_c00449{left:226.800000pt;}
.x84_c00449{left:228.720000pt;}
.x1f_c00449{left:231.600000pt;}
.x3b_c00449{left:234.000000pt;}
.x7c_c00449{left:235.680000pt;}
.x5a_c00449{left:237.120000pt;}
.x43_c00449{left:238.080000pt;}
.x75_c00449{left:240.720000pt;}
.x60_c00449{left:242.160000pt;}
.x80_c00449{left:243.840000pt;}
.x11_c00449{left:246.000000pt;}
.x20_c00449{left:247.920000pt;}
.x27_c00449{left:249.360000pt;}
.x88_c00449{left:251.520000pt;}
.x63_c00449{left:254.160000pt;}
.x70_c00449{left:255.600000pt;}
.x30_c00449{left:256.560000pt;}
.x51_c00449{left:258.240000pt;}
.x35_c00449{left:259.680000pt;}
.x76_c00449{left:260.640000pt;}
.x81_c00449{left:264.720000pt;}
.x9_c00449{left:265.920000pt;}
.x47_c00449{left:267.120000pt;}
.x77_c00449{left:271.680000pt;}
.x4b_c00449{left:273.840000pt;}
.x52_c00449{left:275.040000pt;}
.x3c_c00449{left:277.440000pt;}
.x12_c00449{left:278.880000pt;}
.xa_c00449{left:280.800000pt;}
.xd_c00449{left:282.000000pt;}
.x64_c00449{left:283.680000pt;}
.x71_c00449{left:285.360000pt;}
.x19_c00449{left:287.520000pt;}
.x54_c00449{left:289.680000pt;}
.x5b_c00449{left:290.640000pt;}
.x6d_c00449{left:293.280000pt;}
.x2b_c00449{left:294.480000pt;}
.xb_c00449{left:295.440000pt;}
.x6b_c00449{left:296.400000pt;}
.x61_c00449{left:298.320000pt;}
.x28_c00449{left:299.280000pt;}
.x7e_c00449{left:300.240000pt;}
.x5c_c00449{left:301.200000pt;}
.x6e_c00449{left:306.720000pt;}
.x2c_c00449{left:308.400000pt;}
.x1a_c00449{left:309.360000pt;}
.x48_c00449{left:311.040000pt;}
.x13_c00449{left:314.880000pt;}
.x5d_c00449{left:325.680000pt;}
.x3d_c00449{left:326.640000pt;}
.x2d_c00449{left:328.320000pt;}
.x9c_c00449{left:330.960000pt;}
.x85_c00449{left:333.600000pt;}
.x31_c00449{left:334.800000pt;}
.x89_c00449{left:336.000000pt;}
.xc_c00449{left:337.200000pt;}
.xc3_c00449{left:338.400000pt;}
.x96_c00449{left:339.360000pt;}
.x49_c00449{left:340.320000pt;}
.x21_c00449{left:342.240000pt;}
.x14_c00449{left:344.880000pt;}
.xac_c00449{left:347.040000pt;}
.x4c_c00449{left:351.120000pt;}
.x8c_c00449{left:352.800000pt;}
.x22_c00449{left:354.960000pt;}
.x9d_c00449{left:357.360000pt;}
.x36_c00449{left:359.280000pt;}
.x55_c00449{left:360.960000pt;}
.x44_c00449{left:364.080000pt;}
.xb9_c00449{left:365.040000pt;}
.x29_c00449{left:366.000000pt;}
.x3e_c00449{left:369.360000pt;}
.x4d_c00449{left:370.320000pt;}
.xc6_c00449{left:375.840000pt;}
.x1b_c00449{left:380.160000pt;}
.xa3_c00449{left:381.840000pt;}
.x97_c00449{left:382.800000pt;}
.x4a_c00449{left:384.720000pt;}
.x45_c00449{left:387.600000pt;}
.x32_c00449{left:389.040000pt;}
.x15_c00449{left:390.720000pt;}
.xc4_c00449{left:391.680000pt;}
.xc1_c00449{left:395.040000pt;}
.xa4_c00449{left:396.480000pt;}
.x23_c00449{left:397.440000pt;}
.x37_c00449{left:400.320000pt;}
.x98_c00449{left:401.280000pt;}
.x4e_c00449{left:402.960000pt;}
.xb2_c00449{left:404.640000pt;}
.x16_c00449{left:405.840000pt;}
.x8a_c00449{left:408.000000pt;}
.x3f_c00449{left:409.440000pt;}
.xb5_c00449{left:414.720000pt;}
.x2e_c00449{left:416.640000pt;}
.xba_c00449{left:418.080000pt;}
.x9e_c00449{left:419.040000pt;}
.xa5_c00449{left:420.000000pt;}
.x8b_c00449{left:423.600000pt;}
.x91_c00449{left:425.280000pt;}
.x24_c00449{left:426.240000pt;}
.x8d_c00449{left:427.200000pt;}
.x1c_c00449{left:429.840000pt;}
.xb6_c00449{left:432.960000pt;}
.xc2_c00449{left:434.880000pt;}
.xa9_c00449{left:438.480000pt;}
.x4f_c00449{left:441.840000pt;}
.x92_c00449{left:443.520000pt;}
.xc5_c00449{left:444.480000pt;}
.xc7_c00449{left:445.680000pt;}
.x38_c00449{left:446.640000pt;}
.x17_c00449{left:448.080000pt;}
.x9f_c00449{left:449.760000pt;}
.xaa_c00449{left:451.200000pt;}
.x40_c00449{left:453.360000pt;}
.xb0_c00449{left:455.760000pt;}
.xab_c00449{left:458.160000pt;}
.xa6_c00449{left:461.280000pt;}
.xa0_c00449{left:462.240000pt;}
.x8e_c00449{left:463.920000pt;}
.x93_c00449{left:465.840000pt;}
.x99_c00449{left:468.720000pt;}
.xa1_c00449{left:469.680000pt;}
.xbe_c00449{left:470.640000pt;}
.x41_c00449{left:472.080000pt;}
.xbb_c00449{left:473.280000pt;}
.xad_c00449{left:474.960000pt;}
.xbf_c00449{left:476.400000pt;}
.xa7_c00449{left:478.320000pt;}
.xc8_c00449{left:480.000000pt;}
.xb1_c00449{left:481.920000pt;}
.xb3_c00449{left:485.280000pt;}
.x9a_c00449{left:490.320000pt;}
.x8f_c00449{left:492.480000pt;}
.xa8_c00449{left:494.400000pt;}
.xb7_c00449{left:497.760000pt;}
.xbc_c00449{left:499.200000pt;}
.x94_c00449{left:503.760000pt;}
.xae_c00449{left:507.600000pt;}
.xa2_c00449{left:510.240000pt;}
.x95_c00449{left:517.440000pt;}
.xaf_c00449{left:520.800000pt;}
.x90_c00449{left:524.160000pt;}
.xc9_c00449{left:526.560000pt;}
.xc0_c00449{left:527.520000pt;}
.x9b_c00449{left:531.120000pt;}
.xb4_c00449{left:539.280000pt;}
.xb8_c00449{left:540.960000pt;}
.xbd_c00449{left:546.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_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;}
.m0_c00450{transform:matrix(0.006160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006160,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.006530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006530,0.000000,0.000000,0.250000,0,0);}
.mbd_c00450{transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.018480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018480,0.000000,0.000000,0.250000,0,0);}
.m112_c00450{transform:matrix(0.029990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029990,0.000000,0.000000,0.250000,0,0);}
.m12a_c00450{transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);}
.m15b_c00450{transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);}
.me6_c00450{transform:matrix(0.119840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119840,0.000000,0.000000,0.250000,0,0);}
.m134_c00450{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);}
.m11f_c00450{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);}
.meb_c00450{transform:matrix(0.129665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129665,0.000000,0.000000,0.250000,0,0);}
.m153_c00450{transform:matrix(0.132760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132760,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.135245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135245,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);}
.mf4_c00450{transform:matrix(0.148530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148530,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{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);}
.m52_c00450{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);}
.m139_c00450{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);}
.m62_c00450{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);}
.m68_c00450{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);}
.mae_c00450{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);}
.m7_c00450{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);}
.mcd_c00450{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);}
.m35_c00450{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);}
.m9b_c00450{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);}
.mf_c00450{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);}
.m3d_c00450{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);}
.m46_c00450{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);}
.m138_c00450{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);}
.m6c_c00450{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);}
.mc2_c00450{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);}
.m12f_c00450{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);}
.maa_c00450{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);}
.m37_c00450{transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168685,0.000000,0.000000,0.250000,0,0);}
.m13a_c00450{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);}
.ma5_c00450{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);}
.m58_c00450{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);}
.m130_c00450{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);}
.mfd_c00450{transform:matrix(0.171443,-0.002743,0.003999,0.249968,0,0);-ms-transform:matrix(0.171443,-0.002743,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171443,-0.002743,0.003999,0.249968,0,0);}
.m1e_c00450{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);}
.m2d_c00450{transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171860,0.000000,0.000000,0.250000,0,0);}
.m159_c00450{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);}
.m33_c00450{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);}
.mb1_c00450{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);}
.ma0_c00450{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);}
.m1c_c00450{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);}
.mbc_c00450{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);}
.m10_c00450{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);}
.m1d_c00450{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);}
.m17_c00450{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);}
.m16a_c00450{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);}
.m50_c00450{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);}
.m3a_c00450{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);}
.mfe_c00450{transform:matrix(0.176562,-0.002825,0.003999,0.249968,0,0);-ms-transform:matrix(0.176562,-0.002825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176562,-0.002825,0.003999,0.249968,0,0);}
.m169_c00450{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);}
.m36_c00450{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);}
.mec_c00450{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);}
.ma4_c00450{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);}
.me7_c00450{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);}
.m63_c00450{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);}
.m9d_c00450{transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);}
.ma7_c00450{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);}
.m11_c00450{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);}
.md0_c00450{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);}
.mf5_c00450{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);}
.m149_c00450{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);}
.m83_c00450{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);}
.m97_c00450{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);}
.m12_c00450{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);}
.m3f_c00450{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);}
.m3c_c00450{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);}
.m8e_c00450{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);}
.m117_c00450{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);}
.md_c00450{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);}
.m141_c00450{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);}
.m18_c00450{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);}
.m24_c00450{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);}
.m81_c00450{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);}
.m128_c00450{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);}
.m9f_c00450{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);}
.m96_c00450{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);}
.me4_c00450{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);}
.m60_c00450{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);}
.md1_c00450{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);}
.m13_c00450{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);}
.m31_c00450{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);}
.m14a_c00450{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);}
.m12d_c00450{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);}
.m8a_c00450{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);}
.mc5_c00450{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);}
.m155_c00450{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);}
.m126_c00450{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);}
.m8_c00450{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);}
.m53_c00450{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);}
.m133_c00450{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);}
.m12b_c00450{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);}
.m146_c00450{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);}
.m82_c00450{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);}
.m65_c00450{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);}
.m14_c00450{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);}
.mc1_c00450{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);}
.m11b_c00450{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);}
.mef_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);}
.m64_c00450{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);}
.md7_c00450{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);}
.m43_c00450{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);}
.m98_c00450{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);}
.md3_c00450{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);}
.m1a_c00450{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);}
.md6_c00450{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);}
.m57_c00450{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);}
.m2e_c00450{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);}
.m8b_c00450{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);}
.m61_c00450{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);}
.m4f_c00450{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);}
.m59_c00450{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);}
.mc8_c00450{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);}
.m114_c00450{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);}
.m32_c00450{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);}
.m3b_c00450{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);}
.m104_c00450{transform:matrix(0.192620,-0.003082,0.003999,0.249968,0,0);-ms-transform:matrix(0.192620,-0.003082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192620,-0.003082,0.003999,0.249968,0,0);}
.ma_c00450{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);}
.m16_c00450{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);}
.mcc_c00450{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);}
.m5b_c00450{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);}
.m92_c00450{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);}
.m34_c00450{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);}
.me3_c00450{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);}
.mb2_c00450{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);}
.m7a_c00450{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);}
.mb7_c00450{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);}
.ma6_c00450{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);}
.ma1_c00450{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);}
.m115_c00450{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);}
.mf8_c00450{transform:matrix(0.195230,-0.003124,0.003999,0.249968,0,0);-ms-transform:matrix(0.195230,-0.003124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195230,-0.003124,0.003999,0.249968,0,0);}
.m152_c00450{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);}
.m5d_c00450{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);}
.m99_c00450{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);}
.m23_c00450{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);}
.m158_c00450{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);}
.m148_c00450{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);}
.ma2_c00450{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);}
.me_c00450{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);}
.m12c_c00450{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);}
.ma8_c00450{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);}
.m16d_c00450{transform:matrix(0.196666,-0.002753,0.003500,0.249976,0,0);-ms-transform:matrix(0.196666,-0.002753,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196666,-0.002753,0.003500,0.249976,0,0);}
.mb_c00450{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);}
.m27_c00450{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);}
.m19_c00450{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);}
.m80_c00450{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);}
.m14b_c00450{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);}
.m7f_c00450{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);}
.ma9_c00450{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);}
.m15d_c00450{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);}
.m160_c00450{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);}
.m15a_c00450{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);}
.m5f_c00450{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);}
.mab_c00450{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);}
.m15f_c00450{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);}
.m145_c00450{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{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);}
.m1f_c00450{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);}
.m11e_c00450{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);}
.m93_c00450{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);}
.mca_c00450{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);}
.m156_c00450{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);}
.m5a_c00450{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);}
.mf0_c00450{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);}
.mc_c00450{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);}
.m10c_c00450{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);}
.mdb_c00450{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);}
.m147_c00450{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);}
.m3_c00450{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);}
.m16f_c00450{transform:matrix(0.204375,-0.002861,0.003500,0.249976,0,0);-ms-transform:matrix(0.204375,-0.002861,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204375,-0.002861,0.003500,0.249976,0,0);}
.m5c_c00450{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);}
.m129_c00450{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);}
.m51_c00450{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);}
.m143_c00450{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);}
.mb0_c00450{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);}
.mcf_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);}
.m16b_c00450{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);}
.mb9_c00450{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);}
.md4_c00450{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);}
.m13c_c00450{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);}
.med_c00450{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);}
.mc9_c00450{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);}
.m56_c00450{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);}
.m71_c00450{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);}
.m13e_c00450{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);}
.m131_c00450{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);}
.m21_c00450{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);}
.m4c_c00450{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);}
.m85_c00450{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);}
.m142_c00450{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);}
.mf1_c00450{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);}
.m116_c00450{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);}
.m135_c00450{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);}
.m9_c00450{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);}
.m5e_c00450{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);}
.m161_c00450{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);}
.m10e_c00450{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);}
.m22_c00450{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);}
.m95_c00450{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);}
.m55_c00450{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);}
.m13b_c00450{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);}
.m89_c00450{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);}
.m38_c00450{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);}
.m29_c00450{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);}
.m44_c00450{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);}
.m3e_c00450{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);}
.m87_c00450{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);}
.me1_c00450{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);}
.mba_c00450{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);}
.m144_c00450{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);}
.mcb_c00450{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);}
.m2b_c00450{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{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);}
.mf7_c00450{transform:matrix(0.215712,-0.003451,0.003999,0.249968,0,0);-ms-transform:matrix(0.215712,-0.003451,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215712,-0.003451,0.003999,0.249968,0,0);}
.m9c_c00450{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);}
.mb8_c00450{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);}
.mbe_c00450{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);}
.me8_c00450{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);}
.m121_c00450{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);}
.mb4_c00450{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);}
.m127_c00450{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);}
.md8_c00450{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);}
.m79_c00450{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);}
.mfb_c00450{transform:matrix(0.219742,-0.003516,0.003999,0.249968,0,0);-ms-transform:matrix(0.219742,-0.003516,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219742,-0.003516,0.003999,0.249968,0,0);}
.m4b_c00450{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);}
.m102_c00450{transform:matrix(0.220152,-0.003522,0.003999,0.249968,0,0);-ms-transform:matrix(0.220152,-0.003522,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220152,-0.003522,0.003999,0.249968,0,0);}
.m86_c00450{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);}
.m4e_c00450{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);}
.m48_c00450{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);}
.m9e_c00450{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);}
.m103_c00450{transform:matrix(0.220852,-0.003534,0.003999,0.249968,0,0);-ms-transform:matrix(0.220852,-0.003534,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220852,-0.003534,0.003999,0.249968,0,0);}
.mf2_c00450{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);}
.m26_c00450{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);}
.m113_c00450{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);}
.m2f_c00450{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);}
.m91_c00450{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);}
.m105_c00450{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);}
.maf_c00450{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);}
.mc4_c00450{transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{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);}
.m28_c00450{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);}
.m15e_c00450{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);}
.m10d_c00450{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m110_c00450{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);}
.mee_c00450{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);}
.m45_c00450{transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223065,0.000000,0.000000,0.250000,0,0);}
.m14d_c00450{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);}
.m11d_c00450{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);}
.mac_c00450{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);}
.m49_c00450{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);}
.m10f_c00450{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);}
.m67_c00450{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);}
.m7d_c00450{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m136_c00450{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);}
.m84_c00450{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);}
.m164_c00450{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);}
.m170_c00450{transform:matrix(0.225138,-0.003152,0.003500,0.249976,0,0);-ms-transform:matrix(0.225138,-0.003152,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225138,-0.003152,0.003500,0.249976,0,0);}
.m13f_c00450{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);}
.m157_c00450{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);}
.ma3_c00450{transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);}
.m154_c00450{transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);}
.mdd_c00450{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);}
.m9a_c00450{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);}
.m16c_c00450{transform:matrix(0.227148,-0.003180,0.003500,0.249976,0,0);-ms-transform:matrix(0.227148,-0.003180,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227148,-0.003180,0.003500,0.249976,0,0);}
.m14f_c00450{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);}
.m2c_c00450{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);}
.m72_c00450{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);}
.m100_c00450{transform:matrix(0.231770,-0.003708,0.003999,0.249968,0,0);-ms-transform:matrix(0.231770,-0.003708,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231770,-0.003708,0.003999,0.249968,0,0);}
.m90_c00450{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);}
.m8f_c00450{transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);}
.m122_c00450{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);}
.mf9_c00450{transform:matrix(0.234730,-0.003756,0.003999,0.249968,0,0);-ms-transform:matrix(0.234730,-0.003756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234730,-0.003756,0.003999,0.249968,0,0);}
.mde_c00450{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{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);}
.m15_c00450{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);}
.m6a_c00450{transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);}
.m140_c00450{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);}
.m94_c00450{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m124_c00450{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);}
.m101_c00450{transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);-ms-transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);}
.mce_c00450{transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);}
.md5_c00450{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.mf6_c00450{transform:matrix(0.238694,-0.003819,0.003999,0.249968,0,0);-ms-transform:matrix(0.238694,-0.003819,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238694,-0.003819,0.003999,0.249968,0,0);}
.m108_c00450{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);}
.m10b_c00450{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);}
.m6e_c00450{transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240515,0.000000,0.000000,0.250000,0,0);}
.m12e_c00450{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00450{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);}
.mc6_c00450{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.m120_c00450{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.m171_c00450{transform:matrix(0.245251,-0.003434,0.003500,0.249976,0,0);-ms-transform:matrix(0.245251,-0.003434,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245251,-0.003434,0.003500,0.249976,0,0);}
.me9_c00450{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);}
.m111_c00450{transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{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);}
.mff_c00450{transform:matrix(0.247898,-0.003966,0.003999,0.249968,0,0);-ms-transform:matrix(0.247898,-0.003966,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247898,-0.003966,0.003999,0.249968,0,0);}
.m7b_c00450{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);}
.m10a_c00450{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);}
.m54_c00450{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{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);}
.mfa_c00450{transform:matrix(0.252958,-0.004047,0.003999,0.249968,0,0);-ms-transform:matrix(0.252958,-0.004047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252958,-0.004047,0.003999,0.249968,0,0);}
.m16e_c00450{transform:matrix(0.253830,-0.003554,0.003500,0.249976,0,0);-ms-transform:matrix(0.253830,-0.003554,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253830,-0.003554,0.003500,0.249976,0,0);}
.m6d_c00450{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.m15c_c00450{transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);}
.m163_c00450{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);}
.m14c_c00450{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.m109_c00450{transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259735,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.260710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260710,0.000000,0.000000,0.250000,0,0);}
.m13d_c00450{transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);}
.mf3_c00450{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m125_c00450{transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);}
.m151_c00450{transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263970,0.000000,0.000000,0.250000,0,0);}
.me0_c00450{transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263990,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);}
.m132_c00450{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.mc3_c00450{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);}
.m123_c00450{transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);}
.me5_c00450{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{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);}
.m167_c00450{transform:matrix(0.274735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274735,0.000000,0.000000,0.250000,0,0);}
.m165_c00450{transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);}
.md2_c00450{transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);}
.mb6_c00450{transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);}
.m76_c00450{transform:matrix(0.276870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276870,0.000000,0.000000,0.250000,0,0);}
.m168_c00450{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280365,0.000000,0.000000,0.250000,0,0);}
.mad_c00450{transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);}
.m106_c00450{transform:matrix(0.284630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284630,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285635,0.000000,0.000000,0.250000,0,0);}
.m150_c00450{transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285745,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286230,0.000000,0.000000,0.250000,0,0);}
.m119_c00450{transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286490,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.289660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289660,0.000000,0.000000,0.250000,0,0);}
.m11a_c00450{transform:matrix(0.292420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292420,0.000000,0.000000,0.250000,0,0);}
.m14e_c00450{transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);}
.m11c_c00450{transform:matrix(0.300035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300035,0.000000,0.000000,0.250000,0,0);}
.m118_c00450{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301650,0.000000,0.000000,0.250000,0,0);}
.mea_c00450{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);}
.m8c_c00450{transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309885,0.000000,0.000000,0.250000,0,0);}
.mdf_c00450{transform:matrix(0.310040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310040,0.000000,0.000000,0.250000,0,0);}
.m75_c00450{transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);}
.mdc_c00450{transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);}
.m107_c00450{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);}
.mb5_c00450{transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312955,0.000000,0.000000,0.250000,0,0);}
.m8d_c00450{transform:matrix(0.314440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314440,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320610,0.000000,0.000000,0.250000,0,0);}
.m137_c00450{transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325280,0.000000,0.000000,0.250000,0,0);}
.md9_c00450{transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);}
.m166_c00450{transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);}
.mda_c00450{transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);}
.m162_c00450{transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);}
.mbf_c00450{transform:matrix(0.343940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343940,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.348400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00450{transform:matrix(0.361760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361760,0.000000,0.000000,0.250000,0,0);}
.mc7_c00450{transform:matrix(0.382015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382015,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.404900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404900,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.429655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429655,0.000000,0.000000,0.250000,0,0);}
.mbb_c00450{transform:matrix(0.436045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436045,0.000000,0.000000,0.250000,0,0);}
.me2_c00450{transform:matrix(0.445285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445285,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.457550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457550,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.465080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465080,0.000000,0.000000,0.250000,0,0);}
.mfc_c00450{transform:matrix(0.473554,-0.007577,0.003999,0.249968,0,0);-ms-transform:matrix(0.473554,-0.007577,0.003999,0.249968,0,0);-webkit-transform:matrix(0.473554,-0.007577,0.003999,0.249968,0,0);}
.m2_c00450{transform:matrix(0.600470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600470,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.734495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734495,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;}
.fs14_c00450{font-size:45.150000px;}
.fsa_c00450{font-size:46.200000px;}
.fsb_c00450{font-size:47.250000px;}
.fs10_c00450{font-size:48.300000px;}
.fs9_c00450{font-size:49.350000px;}
.fse_c00450{font-size:50.400000px;}
.fs13_c00450{font-size:50.406451px;}
.fsd_c00450{font-size:51.450000px;}
.fs15_c00450{font-size:51.455042px;}
.fsc_c00450{font-size:52.500000px;}
.fsf_c00450{font-size:53.550000px;}
.fs11_c00450{font-size:57.750000px;}
.fs12_c00450{font-size:60.900000px;}
.fs5_c00450{font-size:63.000000px;}
.fs4_c00450{font-size:67.200000px;}
.fs6_c00450{font-size:68.250000px;}
.fs8_c00450{font-size:69.300000px;}
.fs1_c00450{font-size:70.350000px;}
.fs2_c00450{font-size:71.400000px;}
.fs3_c00450{font-size:72.450000px;}
.fs7_c00450{font-size:74.550000px;}
.fs0_c00450{font-size:138.600000px;}
.y0_c00450{bottom:0.000000px;}
.y37_c00450{bottom:141.009000px;}
.y36_c00450{bottom:158.722500px;}
.y46_c00450{bottom:158.763000px;}
.y47_c00450{bottom:159.235605px;}
.y48_c00450{bottom:159.847482px;}
.y49_c00450{bottom:160.202718px;}
.y4a_c00450{bottom:160.516584px;}
.y4b_c00450{bottom:161.612931px;}
.y2f_c00450{bottom:176.309988px;}
.y1e_c00450{bottom:176.694000px;}
.y30_c00450{bottom:176.909088px;}
.y31_c00450{bottom:177.415116px;}
.y32_c00450{bottom:178.260372px;}
.y33_c00450{bottom:178.629972px;}
.y34_c00450{bottom:179.430972px;}
.y26_c00450{bottom:193.863000px;}
.y27_c00450{bottom:194.083224px;}
.y35_c00450{bottom:194.823000px;}
.y28_c00450{bottom:194.908032px;}
.y29_c00450{bottom:195.163512px;}
.y2a_c00450{bottom:195.590784px;}
.y2b_c00450{bottom:195.826104px;}
.y2c_c00450{bottom:196.820616px;}
.y2d_c00450{bottom:197.223192px;}
.y2e_c00450{bottom:197.456520px;}
.y1d_c00450{bottom:212.257500px;}
.y45_c00450{bottom:212.925000px;}
.y1c_c00450{bottom:230.197500px;}
.y44_c00450{bottom:230.914500px;}
.y1b_c00450{bottom:247.758000px;}
.y43_c00450{bottom:248.946000px;}
.y1a_c00450{bottom:265.809000px;}
.y42_c00450{bottom:267.195000px;}
.y19_c00450{bottom:283.821000px;}
.y25_c00450{bottom:285.391500px;}
.y18_c00450{bottom:301.726500px;}
.y41_c00450{bottom:303.241500px;}
.y24_c00450{bottom:320.035500px;}
.y40_c00450{bottom:321.061500px;}
.y17_c00450{bottom:338.182500px;}
.y3f_c00450{bottom:338.952000px;}
.y16_c00450{bottom:356.551500px;}
.y23_c00450{bottom:356.796000px;}
.y3e_c00450{bottom:357.585000px;}
.y15_c00450{bottom:374.208000px;}
.y3b_c00450{bottom:374.887500px;}
.y3d_c00450{bottom:375.711000px;}
.y3a_c00450{bottom:392.697000px;}
.y14_c00450{bottom:392.725500px;}
.y3c_c00450{bottom:393.672000px;}
.y13_c00450{bottom:410.932500px;}
.y39_c00450{bottom:411.199500px;}
.y38_c00450{bottom:429.039000px;}
.y12_c00450{bottom:429.175500px;}
.y22_c00450{bottom:429.684000px;}
.y11_c00450{bottom:446.748000px;}
.y21_c00450{bottom:447.057000px;}
.y10_c00450{bottom:465.100500px;}
.y20_c00450{bottom:465.297000px;}
.y1f_c00450{bottom:518.022000px;}
.yf_c00450{bottom:540.724500px;}
.ye_c00450{bottom:563.796000px;}
.yd_c00450{bottom:586.086000px;}
.yc_c00450{bottom:609.559500px;}
.ya_c00450{bottom:654.376500px;}
.yb_c00450{bottom:654.480000px;}
.y9_c00450{bottom:676.549500px;}
.y8_c00450{bottom:699.106500px;}
.y7_c00450{bottom:722.040000px;}
.y6_c00450{bottom:745.677000px;}
.y5_c00450{bottom:768.235500px;}
.y4_c00450{bottom:791.479500px;}
.y3_c00450{bottom:813.915000px;}
.y1_c00450{bottom:859.842000px;}
.y2_c00450{bottom:899.370000px;}
.h16_c00450{height:45.150000px;}
.hc_c00450{height:46.200000px;}
.hd_c00450{height:47.250000px;}
.h12_c00450{height:48.300000px;}
.hb_c00450{height:49.350000px;}
.h10_c00450{height:50.400000px;}
.h15_c00450{height:50.406451px;}
.hf_c00450{height:51.450000px;}
.h17_c00450{height:51.455042px;}
.he_c00450{height:52.500000px;}
.h11_c00450{height:53.550000px;}
.h13_c00450{height:57.750000px;}
.h14_c00450{height:60.900000px;}
.h7_c00450{height:63.000000px;}
.h6_c00450{height:67.200000px;}
.h8_c00450{height:68.250000px;}
.ha_c00450{height:69.300000px;}
.h3_c00450{height:70.350000px;}
.h4_c00450{height:71.400000px;}
.h5_c00450{height:72.450000px;}
.h9_c00450{height:74.550000px;}
.h2_c00450{height:138.600000px;}
.h1_c00450{height:1005.000000px;}
.h0_c00450{height:1005.150000px;}
.w0_c00450{width:715.200000px;}
.w1_c00450{width:715.500000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:63.180000px;}
.x7_c00450{left:78.030000px;}
.x9c_c00450{left:82.080000px;}
.x73_c00450{left:85.860000px;}
.x9d_c00450{left:88.290000px;}
.x56_c00450{left:90.720000px;}
.x68_c00450{left:91.800000px;}
.x70_c00450{left:92.880000px;}
.x6c_c00450{left:100.440000px;}
.x51_c00450{left:104.220000px;}
.x64_c00450{left:108.540000px;}
.x61_c00450{left:111.510000px;}
.x52_c00450{left:113.400000px;}
.x45_c00450{left:118.800000px;}
.x71_c00450{left:119.880000px;}
.x8_c00450{left:122.850000px;}
.x15_c00450{left:124.740000px;}
.x39_c00450{left:125.820000px;}
.x66_c00450{left:131.490000px;}
.x88_c00450{left:132.840000px;}
.x62_c00450{left:136.620000px;}
.x9_c00450{left:140.130000px;}
.x5c_c00450{left:142.020000px;}
.xe_c00450{left:147.960000px;}
.x23_c00450{left:149.850000px;}
.x4c_c00450{left:150.930000px;}
.x99_c00450{left:152.010000px;}
.x6b_c00450{left:153.900000px;}
.x3f_c00450{left:155.520000px;}
.x53_c00450{left:159.570000px;}
.x78_c00450{left:165.510000px;}
.x2_c00450{left:167.130000px;}
.x16_c00450{left:171.720000px;}
.xf_c00450{left:173.880000px;}
.x69_c00450{left:174.960000px;}
.x57_c00450{left:177.120000px;}
.x2a_c00450{left:178.740000px;}
.x65_c00450{left:179.820000px;}
.x74_c00450{left:181.170000px;}
.x1f_c00450{left:185.220000px;}
.x79_c00450{left:188.730000px;}
.x4d_c00450{left:191.160000px;}
.x3a_c00450{left:192.510000px;}
.x17_c00450{left:196.020000px;}
.x76_c00450{left:200.070000px;}
.x33_c00450{left:201.690000px;}
.x24_c00450{left:203.580000px;}
.x46_c00450{left:204.930000px;}
.x5d_c00450{left:206.010000px;}
.x6d_c00450{left:209.790000px;}
.x2b_c00450{left:211.140000px;}
.x72_c00450{left:212.220000px;}
.x67_c00450{left:216.270000px;}
.x30_c00450{left:217.620000px;}
.x9a_c00450{left:220.320000px;}
.x58_c00450{left:223.560000px;}
.x10_c00450{left:227.340000px;}
.x6a_c00450{left:231.120000px;}
.x4e_c00450{left:233.010000px;}
.x40_c00450{left:234.900000px;}
.x25_c00450{left:236.790000px;}
.x18_c00450{left:239.490000px;}
.x47_c00450{left:241.380000px;}
.x97_c00450{left:242.460000px;}
.x3b_c00450{left:244.080000px;}
.x54_c00450{left:245.160000px;}
.xa_c00450{left:250.290000px;}
.x9e_c00450{left:251.910000px;}
.x11_c00450{left:254.340000px;}
.x59_c00450{left:256.770000px;}
.x6e_c00450{left:257.850000px;}
.x41_c00450{left:259.470000px;}
.x2c_c00450{left:261.360000px;}
.x19_c00450{left:262.980000px;}
.x9b_c00450{left:265.140000px;}
.x77_c00450{left:267.300000px;}
.x98_c00450{left:270.000000px;}
.x3_c00450{left:271.080000px;}
.x5f_c00450{left:273.510000px;}
.x5a_c00450{left:275.940000px;}
.x63_c00450{left:278.370000px;}
.x55_c00450{left:280.260000px;}
.x5e_c00450{left:281.340000px;}
.x5b_c00450{left:286.200000px;}
.x6f_c00450{left:288.900000px;}
.x85_c00450{left:289.980000px;}
.x31_c00450{left:291.870000px;}
.xb_c00450{left:293.760000px;}
.x20_c00450{left:294.840000px;}
.x75_c00450{left:296.730000px;}
.x26_c00450{left:299.970000px;}
.x48_c00450{left:301.590000px;}
.x12_c00450{left:303.210000px;}
.x60_c00450{left:304.560000px;}
.x4f_c00450{left:306.450000px;}
.x3c_c00450{left:307.800000px;}
.x34_c00450{left:313.200000px;}
.x1a_c00450{left:315.900000px;}
.xc_c00450{left:316.980000px;}
.x42_c00450{left:326.430000px;}
.x8d_c00450{left:329.041500px;}
.x2d_c00450{left:332.100000px;}
.x35_c00450{left:335.070000px;}
.x9f_c00450{left:338.040000px;}
.x1b_c00450{left:339.390000px;}
.xa4_c00450{left:341.010000px;}
.x21_c00450{left:342.900000px;}
.x49_c00450{left:344.520000px;}
.x27_c00450{left:346.680000px;}
.x7a_c00450{left:350.190000px;}
.x3d_c00450{left:355.050000px;}
.xa5_c00450{left:356.940000px;}
.x86_c00450{left:360.990000px;}
.xd_c00450{left:363.420000px;}
.x2e_c00450{left:364.500000px;}
.x7b_c00450{left:366.390000px;}
.x36_c00450{left:367.470000px;}
.x13_c00450{left:369.900000px;}
.x7f_c00450{left:373.410000px;}
.xc1_c00450{left:374.674500px;}
.xa6_c00450{left:375.840000px;}
.x93_c00450{left:379.518612px;}
.x1c_c00450{left:381.780000px;}
.xbc_c00450{left:383.130000px;}
.x28_c00450{left:384.210000px;}
.x4_c00450{left:385.560000px;}
.xa9_c00450{left:386.640000px;}
.x80_c00450{left:389.070000px;}
.x4a_c00450{left:390.960000px;}
.x89_c00450{left:395.010000px;}
.x87_c00450{left:400.410000px;}
.xc0_c00450{left:401.490000px;}
.xa7_c00450{left:403.920000px;}
.x14_c00450{left:406.350000px;}
.x37_c00450{left:409.050000px;}
.x8e_c00450{left:410.323500px;}
.xb0_c00450{left:412.290000px;}
.x7c_c00450{left:413.370000px;}
.x22_c00450{left:416.070000px;}
.x1d_c00450{left:417.150000px;}
.x43_c00450{left:419.040000px;}
.x32_c00450{left:422.280000px;}
.x50_c00450{left:426.060000px;}
.x29_c00450{left:427.950000px;}
.xb1_c00450{left:430.380000px;}
.xb6_c00450{left:432.540000px;}
.xa0_c00450{left:434.160000px;}
.x3e_c00450{left:437.400000px;}
.x2f_c00450{left:438.480000px;}
.x81_c00450{left:439.560000px;}
.xad_c00450{left:440.910000px;}
.x44_c00450{left:442.260000px;}
.x1e_c00450{left:443.340000px;}
.xb8_c00450{left:446.040000px;}
.xaa_c00450{left:447.390000px;}
.x8a_c00450{left:448.470000px;}
.x5_c00450{left:450.630000px;}
.x8f_c00450{left:451.735500px;}
.xae_c00450{left:453.330000px;}
.x38_c00450{left:458.730000px;}
.x4b_c00450{left:462.510000px;}
.xa1_c00450{left:463.860000px;}
.xab_c00450{left:465.750000px;}
.xbd_c00450{left:466.830000px;}
.x94_c00450{left:469.694076px;}
.xb2_c00450{left:473.040000px;}
.x6_c00450{left:476.010000px;}
.xb9_c00450{left:477.900000px;}
.x82_c00450{left:480.060000px;}
.xa2_c00450{left:481.410000px;}
.x7d_c00450{left:489.510000px;}
.xb3_c00450{left:491.670000px;}
.x95_c00450{left:494.294460px;}
.xbe_c00450{left:495.450000px;}
.xa8_c00450{left:496.530000px;}
.xba_c00450{left:497.610000px;}
.x8b_c00450{left:499.770000px;}
.xac_c00450{left:503.010000px;}
.xb7_c00450{left:505.170000px;}
.x90_c00450{left:513.892500px;}
.x7e_c00450{left:521.640000px;}
.x83_c00450{left:524.070000px;}
.xa3_c00450{left:526.230000px;}
.xb4_c00450{left:527.310000px;}
.x84_c00450{left:536.220000px;}
.x91_c00450{left:539.053500px;}
.xaf_c00450{left:541.620000px;}
.x8c_c00450{left:544.050000px;}
.x96_c00450{left:547.732824px;}
.xbb_c00450{left:549.990000px;}
.x92_c00450{left:553.636500px;}
.xbf_c00450{left:556.200000px;}
.xb5_c00450{left:564.030000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.fs14_c00450{font-size:40.133333pt;}
.fsa_c00450{font-size:41.066667pt;}
.fsb_c00450{font-size:42.000000pt;}
.fs10_c00450{font-size:42.933333pt;}
.fs9_c00450{font-size:43.866667pt;}
.fse_c00450{font-size:44.800000pt;}
.fs13_c00450{font-size:44.805734pt;}
.fsd_c00450{font-size:45.733333pt;}
.fs15_c00450{font-size:45.737815pt;}
.fsc_c00450{font-size:46.666667pt;}
.fsf_c00450{font-size:47.600000pt;}
.fs11_c00450{font-size:51.333333pt;}
.fs12_c00450{font-size:54.133333pt;}
.fs5_c00450{font-size:56.000000pt;}
.fs4_c00450{font-size:59.733333pt;}
.fs6_c00450{font-size:60.666667pt;}
.fs8_c00450{font-size:61.600000pt;}
.fs1_c00450{font-size:62.533333pt;}
.fs2_c00450{font-size:63.466667pt;}
.fs3_c00450{font-size:64.400000pt;}
.fs7_c00450{font-size:66.266667pt;}
.fs0_c00450{font-size:123.200000pt;}
.y0_c00450{bottom:0.000000pt;}
.y37_c00450{bottom:125.341333pt;}
.y36_c00450{bottom:141.086667pt;}
.y46_c00450{bottom:141.122667pt;}
.y47_c00450{bottom:141.542760pt;}
.y48_c00450{bottom:142.086651pt;}
.y49_c00450{bottom:142.402416pt;}
.y4a_c00450{bottom:142.681408pt;}
.y4b_c00450{bottom:143.655939pt;}
.y2f_c00450{bottom:156.719989pt;}
.y1e_c00450{bottom:157.061333pt;}
.y30_c00450{bottom:157.252523pt;}
.y31_c00450{bottom:157.702325pt;}
.y32_c00450{bottom:158.453664pt;}
.y33_c00450{bottom:158.782197pt;}
.y34_c00450{bottom:159.494197pt;}
.y26_c00450{bottom:172.322667pt;}
.y27_c00450{bottom:172.518421pt;}
.y35_c00450{bottom:173.176000pt;}
.y28_c00450{bottom:173.251584pt;}
.y29_c00450{bottom:173.478677pt;}
.y2a_c00450{bottom:173.858475pt;}
.y2b_c00450{bottom:174.067648pt;}
.y2c_c00450{bottom:174.951659pt;}
.y2d_c00450{bottom:175.309504pt;}
.y2e_c00450{bottom:175.516907pt;}
.y1d_c00450{bottom:188.673333pt;}
.y45_c00450{bottom:189.266667pt;}
.y1c_c00450{bottom:204.620000pt;}
.y44_c00450{bottom:205.257333pt;}
.y1b_c00450{bottom:220.229333pt;}
.y43_c00450{bottom:221.285333pt;}
.y1a_c00450{bottom:236.274667pt;}
.y42_c00450{bottom:237.506667pt;}
.y19_c00450{bottom:252.285333pt;}
.y25_c00450{bottom:253.681333pt;}
.y18_c00450{bottom:268.201333pt;}
.y41_c00450{bottom:269.548000pt;}
.y24_c00450{bottom:284.476000pt;}
.y40_c00450{bottom:285.388000pt;}
.y17_c00450{bottom:300.606667pt;}
.y3f_c00450{bottom:301.290667pt;}
.y16_c00450{bottom:316.934667pt;}
.y23_c00450{bottom:317.152000pt;}
.y3e_c00450{bottom:317.853333pt;}
.y15_c00450{bottom:332.629333pt;}
.y3b_c00450{bottom:333.233333pt;}
.y3d_c00450{bottom:333.965333pt;}
.y3a_c00450{bottom:349.064000pt;}
.y14_c00450{bottom:349.089333pt;}
.y3c_c00450{bottom:349.930667pt;}
.y13_c00450{bottom:365.273333pt;}
.y39_c00450{bottom:365.510667pt;}
.y38_c00450{bottom:381.368000pt;}
.y12_c00450{bottom:381.489333pt;}
.y22_c00450{bottom:381.941333pt;}
.y11_c00450{bottom:397.109333pt;}
.y21_c00450{bottom:397.384000pt;}
.y10_c00450{bottom:413.422667pt;}
.y20_c00450{bottom:413.597333pt;}
.y1f_c00450{bottom:460.464000pt;}
.yf_c00450{bottom:480.644000pt;}
.ye_c00450{bottom:501.152000pt;}
.yd_c00450{bottom:520.965333pt;}
.yc_c00450{bottom:541.830667pt;}
.ya_c00450{bottom:581.668000pt;}
.yb_c00450{bottom:581.760000pt;}
.y9_c00450{bottom:601.377333pt;}
.y8_c00450{bottom:621.428000pt;}
.y7_c00450{bottom:641.813333pt;}
.y6_c00450{bottom:662.824000pt;}
.y5_c00450{bottom:682.876000pt;}
.y4_c00450{bottom:703.537333pt;}
.y3_c00450{bottom:723.480000pt;}
.y1_c00450{bottom:764.304000pt;}
.y2_c00450{bottom:799.440000pt;}
.h16_c00450{height:40.133333pt;}
.hc_c00450{height:41.066667pt;}
.hd_c00450{height:42.000000pt;}
.h12_c00450{height:42.933333pt;}
.hb_c00450{height:43.866667pt;}
.h10_c00450{height:44.800000pt;}
.h15_c00450{height:44.805734pt;}
.hf_c00450{height:45.733333pt;}
.h17_c00450{height:45.737815pt;}
.he_c00450{height:46.666667pt;}
.h11_c00450{height:47.600000pt;}
.h13_c00450{height:51.333333pt;}
.h14_c00450{height:54.133333pt;}
.h7_c00450{height:56.000000pt;}
.h6_c00450{height:59.733333pt;}
.h8_c00450{height:60.666667pt;}
.ha_c00450{height:61.600000pt;}
.h3_c00450{height:62.533333pt;}
.h4_c00450{height:63.466667pt;}
.h5_c00450{height:64.400000pt;}
.h9_c00450{height:66.266667pt;}
.h2_c00450{height:123.200000pt;}
.h1_c00450{height:893.333333pt;}
.h0_c00450{height:893.466667pt;}
.w0_c00450{width:635.733333pt;}
.w1_c00450{width:636.000000pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:56.160000pt;}
.x7_c00450{left:69.360000pt;}
.x9c_c00450{left:72.960000pt;}
.x73_c00450{left:76.320000pt;}
.x9d_c00450{left:78.480000pt;}
.x56_c00450{left:80.640000pt;}
.x68_c00450{left:81.600000pt;}
.x70_c00450{left:82.560000pt;}
.x6c_c00450{left:89.280000pt;}
.x51_c00450{left:92.640000pt;}
.x64_c00450{left:96.480000pt;}
.x61_c00450{left:99.120000pt;}
.x52_c00450{left:100.800000pt;}
.x45_c00450{left:105.600000pt;}
.x71_c00450{left:106.560000pt;}
.x8_c00450{left:109.200000pt;}
.x15_c00450{left:110.880000pt;}
.x39_c00450{left:111.840000pt;}
.x66_c00450{left:116.880000pt;}
.x88_c00450{left:118.080000pt;}
.x62_c00450{left:121.440000pt;}
.x9_c00450{left:124.560000pt;}
.x5c_c00450{left:126.240000pt;}
.xe_c00450{left:131.520000pt;}
.x23_c00450{left:133.200000pt;}
.x4c_c00450{left:134.160000pt;}
.x99_c00450{left:135.120000pt;}
.x6b_c00450{left:136.800000pt;}
.x3f_c00450{left:138.240000pt;}
.x53_c00450{left:141.840000pt;}
.x78_c00450{left:147.120000pt;}
.x2_c00450{left:148.560000pt;}
.x16_c00450{left:152.640000pt;}
.xf_c00450{left:154.560000pt;}
.x69_c00450{left:155.520000pt;}
.x57_c00450{left:157.440000pt;}
.x2a_c00450{left:158.880000pt;}
.x65_c00450{left:159.840000pt;}
.x74_c00450{left:161.040000pt;}
.x1f_c00450{left:164.640000pt;}
.x79_c00450{left:167.760000pt;}
.x4d_c00450{left:169.920000pt;}
.x3a_c00450{left:171.120000pt;}
.x17_c00450{left:174.240000pt;}
.x76_c00450{left:177.840000pt;}
.x33_c00450{left:179.280000pt;}
.x24_c00450{left:180.960000pt;}
.x46_c00450{left:182.160000pt;}
.x5d_c00450{left:183.120000pt;}
.x6d_c00450{left:186.480000pt;}
.x2b_c00450{left:187.680000pt;}
.x72_c00450{left:188.640000pt;}
.x67_c00450{left:192.240000pt;}
.x30_c00450{left:193.440000pt;}
.x9a_c00450{left:195.840000pt;}
.x58_c00450{left:198.720000pt;}
.x10_c00450{left:202.080000pt;}
.x6a_c00450{left:205.440000pt;}
.x4e_c00450{left:207.120000pt;}
.x40_c00450{left:208.800000pt;}
.x25_c00450{left:210.480000pt;}
.x18_c00450{left:212.880000pt;}
.x47_c00450{left:214.560000pt;}
.x97_c00450{left:215.520000pt;}
.x3b_c00450{left:216.960000pt;}
.x54_c00450{left:217.920000pt;}
.xa_c00450{left:222.480000pt;}
.x9e_c00450{left:223.920000pt;}
.x11_c00450{left:226.080000pt;}
.x59_c00450{left:228.240000pt;}
.x6e_c00450{left:229.200000pt;}
.x41_c00450{left:230.640000pt;}
.x2c_c00450{left:232.320000pt;}
.x19_c00450{left:233.760000pt;}
.x9b_c00450{left:235.680000pt;}
.x77_c00450{left:237.600000pt;}
.x98_c00450{left:240.000000pt;}
.x3_c00450{left:240.960000pt;}
.x5f_c00450{left:243.120000pt;}
.x5a_c00450{left:245.280000pt;}
.x63_c00450{left:247.440000pt;}
.x55_c00450{left:249.120000pt;}
.x5e_c00450{left:250.080000pt;}
.x5b_c00450{left:254.400000pt;}
.x6f_c00450{left:256.800000pt;}
.x85_c00450{left:257.760000pt;}
.x31_c00450{left:259.440000pt;}
.xb_c00450{left:261.120000pt;}
.x20_c00450{left:262.080000pt;}
.x75_c00450{left:263.760000pt;}
.x26_c00450{left:266.640000pt;}
.x48_c00450{left:268.080000pt;}
.x12_c00450{left:269.520000pt;}
.x60_c00450{left:270.720000pt;}
.x4f_c00450{left:272.400000pt;}
.x3c_c00450{left:273.600000pt;}
.x34_c00450{left:278.400000pt;}
.x1a_c00450{left:280.800000pt;}
.xc_c00450{left:281.760000pt;}
.x42_c00450{left:290.160000pt;}
.x8d_c00450{left:292.481333pt;}
.x2d_c00450{left:295.200000pt;}
.x35_c00450{left:297.840000pt;}
.x9f_c00450{left:300.480000pt;}
.x1b_c00450{left:301.680000pt;}
.xa4_c00450{left:303.120000pt;}
.x21_c00450{left:304.800000pt;}
.x49_c00450{left:306.240000pt;}
.x27_c00450{left:308.160000pt;}
.x7a_c00450{left:311.280000pt;}
.x3d_c00450{left:315.600000pt;}
.xa5_c00450{left:317.280000pt;}
.x86_c00450{left:320.880000pt;}
.xd_c00450{left:323.040000pt;}
.x2e_c00450{left:324.000000pt;}
.x7b_c00450{left:325.680000pt;}
.x36_c00450{left:326.640000pt;}
.x13_c00450{left:328.800000pt;}
.x7f_c00450{left:331.920000pt;}
.xc1_c00450{left:333.044000pt;}
.xa6_c00450{left:334.080000pt;}
.x93_c00450{left:337.349877pt;}
.x1c_c00450{left:339.360000pt;}
.xbc_c00450{left:340.560000pt;}
.x28_c00450{left:341.520000pt;}
.x4_c00450{left:342.720000pt;}
.xa9_c00450{left:343.680000pt;}
.x80_c00450{left:345.840000pt;}
.x4a_c00450{left:347.520000pt;}
.x89_c00450{left:351.120000pt;}
.x87_c00450{left:355.920000pt;}
.xc0_c00450{left:356.880000pt;}
.xa7_c00450{left:359.040000pt;}
.x14_c00450{left:361.200000pt;}
.x37_c00450{left:363.600000pt;}
.x8e_c00450{left:364.732000pt;}
.xb0_c00450{left:366.480000pt;}
.x7c_c00450{left:367.440000pt;}
.x22_c00450{left:369.840000pt;}
.x1d_c00450{left:370.800000pt;}
.x43_c00450{left:372.480000pt;}
.x32_c00450{left:375.360000pt;}
.x50_c00450{left:378.720000pt;}
.x29_c00450{left:380.400000pt;}
.xb1_c00450{left:382.560000pt;}
.xb6_c00450{left:384.480000pt;}
.xa0_c00450{left:385.920000pt;}
.x3e_c00450{left:388.800000pt;}
.x2f_c00450{left:389.760000pt;}
.x81_c00450{left:390.720000pt;}
.xad_c00450{left:391.920000pt;}
.x44_c00450{left:393.120000pt;}
.x1e_c00450{left:394.080000pt;}
.xb8_c00450{left:396.480000pt;}
.xaa_c00450{left:397.680000pt;}
.x8a_c00450{left:398.640000pt;}
.x5_c00450{left:400.560000pt;}
.x8f_c00450{left:401.542667pt;}
.xae_c00450{left:402.960000pt;}
.x38_c00450{left:407.760000pt;}
.x4b_c00450{left:411.120000pt;}
.xa1_c00450{left:412.320000pt;}
.xab_c00450{left:414.000000pt;}
.xbd_c00450{left:414.960000pt;}
.x94_c00450{left:417.505845pt;}
.xb2_c00450{left:420.480000pt;}
.x6_c00450{left:423.120000pt;}
.xb9_c00450{left:424.800000pt;}
.x82_c00450{left:426.720000pt;}
.xa2_c00450{left:427.920000pt;}
.x7d_c00450{left:435.120000pt;}
.xb3_c00450{left:437.040000pt;}
.x95_c00450{left:439.372853pt;}
.xbe_c00450{left:440.400000pt;}
.xa8_c00450{left:441.360000pt;}
.xba_c00450{left:442.320000pt;}
.x8b_c00450{left:444.240000pt;}
.xac_c00450{left:447.120000pt;}
.xb7_c00450{left:449.040000pt;}
.x90_c00450{left:456.793333pt;}
.x7e_c00450{left:463.680000pt;}
.x83_c00450{left:465.840000pt;}
.xa3_c00450{left:467.760000pt;}
.xb4_c00450{left:468.720000pt;}
.x84_c00450{left:476.640000pt;}
.x91_c00450{left:479.158667pt;}
.xaf_c00450{left:481.440000pt;}
.x8c_c00450{left:483.600000pt;}
.x96_c00450{left:486.873621pt;}
.xbb_c00450{left:488.880000pt;}
.x92_c00450{left:492.121333pt;}
.xbf_c00450{left:494.400000pt;}
.xb5_c00450{left:501.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1a_c00451{transform:matrix(0.008265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008265,0.000000,0.000000,0.250000,0,0);}
.mb5_c00451{transform:matrix(0.010454,0.000105,-0.002500,0.249988,0,0);-ms-transform:matrix(0.010454,0.000105,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.010454,0.000105,-0.002500,0.249988,0,0);}
.m59_c00451{transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);}
.m98_c00451{transform:matrix(0.108558,0.001194,-0.002750,0.249985,0,0);-ms-transform:matrix(0.108558,0.001194,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.108558,0.001194,-0.002750,0.249985,0,0);}
.m6e_c00451{transform:matrix(0.122170,0.001100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.122170,0.001100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.122170,0.001100,-0.002250,0.249990,0,0);}
.mca_c00451{transform:matrix(0.128334,0.001283,-0.002500,0.249988,0,0);-ms-transform:matrix(0.128334,0.001283,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.128334,0.001283,-0.002500,0.249988,0,0);}
.m6c_c00451{transform:matrix(0.133170,0.001199,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133170,0.001199,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133170,0.001199,-0.002250,0.249990,0,0);}
.m6d_c00451{transform:matrix(0.133465,0.001201,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133465,0.001201,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133465,0.001201,-0.002250,0.249990,0,0);}
.m6b_c00451{transform:matrix(0.137094,0.001234,-0.002250,0.249990,0,0);-ms-transform:matrix(0.137094,0.001234,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.137094,0.001234,-0.002250,0.249990,0,0);}
.m71_c00451{transform:matrix(0.140819,0.001267,-0.002250,0.249990,0,0);-ms-transform:matrix(0.140819,0.001267,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.140819,0.001267,-0.002250,0.249990,0,0);}
.m4_c00451{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);}
.m4a_c00451{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);}
.m5e_c00451{transform:matrix(0.149795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149795,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{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);}
.m89_c00451{transform:matrix(0.150285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150285,0.000000,0.000000,0.250000,0,0);}
.m86_c00451{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);}
.m62_c00451{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);}
.mfa_c00451{transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156160,0.000000,0.000000,0.250000,0,0);}
.mcf_c00451{transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156162,0.001562,-0.002500,0.249988,0,0);}
.mb_c00451{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);}
.m10f_c00451{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);}
.m4d_c00451{transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159755,0.000000,0.000000,0.250000,0,0);}
.ma2_c00451{transform:matrix(0.160200,0.001762,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160200,0.001762,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160200,0.001762,-0.002750,0.249985,0,0);}
.m15_c00451{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);}
.m72_c00451{transform:matrix(0.160424,0.001444,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160424,0.001444,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160424,0.001444,-0.002250,0.249990,0,0);}
.m45_c00451{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);}
.mc5_c00451{transform:matrix(0.162487,0.001625,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162487,0.001625,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162487,0.001625,-0.002500,0.249988,0,0);}
.m4b_c00451{transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162520,0.000000,0.000000,0.250000,0,0);}
.md5_c00451{transform:matrix(0.163297,0.001633,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163297,0.001633,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163297,0.001633,-0.002500,0.249988,0,0);}
.m69_c00451{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);}
.m65_c00451{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);}
.md_c00451{transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165065,0.000000,0.000000,0.250000,0,0);}
.m81_c00451{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);}
.m87_c00451{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);}
.m23_c00451{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.mb0_c00451{transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166002,0.001660,-0.002500,0.249988,0,0);}
.m28_c00451{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);}
.m2b_c00451{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);}
.mba_c00451{transform:matrix(0.167842,0.001678,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167842,0.001678,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167842,0.001678,-0.002500,0.249988,0,0);}
.mae_c00451{transform:matrix(0.167932,0.001679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167932,0.001679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167932,0.001679,-0.002500,0.249988,0,0);}
.mdd_c00451{transform:matrix(0.167942,0.001679,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167942,0.001679,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167942,0.001679,-0.002500,0.249988,0,0);}
.m5f_c00451{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);}
.m6f_c00451{transform:matrix(0.168888,0.001520,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168888,0.001520,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168888,0.001520,-0.002250,0.249990,0,0);}
.md3_c00451{transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168972,0.001690,-0.002500,0.249988,0,0);}
.m66_c00451{transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{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);}
.m10e_c00451{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);}
.me7_c00451{transform:matrix(0.170396,0.001704,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170396,0.001704,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170396,0.001704,-0.002500,0.249988,0,0);}
.m32_c00451{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);}
.m4f_c00451{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);}
.m74_c00451{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);}
.m10_c00451{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);}
.m112_c00451{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);}
.me5_c00451{transform:matrix(0.172601,0.001726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172601,0.001726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172601,0.001726,-0.002500,0.249988,0,0);}
.m26_c00451{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);}
.me1_c00451{transform:matrix(0.173356,0.001734,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173356,0.001734,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173356,0.001734,-0.002500,0.249988,0,0);}
.m40_c00451{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);}
.m6a_c00451{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);}
.m13_c00451{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);}
.m1_c00451{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);}
.m47_c00451{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);}
.mf4_c00451{transform:matrix(0.174535,0.002618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174535,0.002618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174535,0.002618,-0.003750,0.249972,0,0);}
.m80_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);}
.m95_c00451{transform:matrix(0.175764,0.001933,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175764,0.001933,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175764,0.001933,-0.002750,0.249985,0,0);}
.m1f_c00451{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);}
.mb1_c00451{transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177186,0.001772,-0.002500,0.249988,0,0);}
.m46_c00451{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);}
.m88_c00451{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);}
.mc_c00451{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);}
.m114_c00451{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);}
.mb4_c00451{transform:matrix(0.177851,0.001779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177851,0.001779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177851,0.001779,-0.002500,0.249988,0,0);}
.mb9_c00451{transform:matrix(0.178006,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178006,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178006,0.001780,-0.002500,0.249988,0,0);}
.mf3_c00451{transform:matrix(0.178260,0.002674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178260,0.002674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178260,0.002674,-0.003750,0.249972,0,0);}
.mf1_c00451{transform:matrix(0.178556,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178556,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178556,0.001786,-0.002500,0.249988,0,0);}
.m43_c00451{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);}
.me8_c00451{transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179516,0.001795,-0.002500,0.249988,0,0);}
.m3b_c00451{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);}
.mb2_c00451{transform:matrix(0.180151,0.001802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180151,0.001802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180151,0.001802,-0.002500,0.249988,0,0);}
.me_c00451{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);}
.m34_c00451{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.m93_c00451{transform:matrix(0.181549,0.001997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181549,0.001997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181549,0.001997,-0.002750,0.249985,0,0);}
.m12_c00451{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);}
.mb8_c00451{transform:matrix(0.181661,0.001817,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181661,0.001817,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181661,0.001817,-0.002500,0.249988,0,0);}
.maf_c00451{transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182546,0.001825,-0.002500,0.249988,0,0);}
.m61_c00451{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);}
.m116_c00451{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);}
.m5b_c00451{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);}
.m54_c00451{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);}
.m6_c00451{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);}
.m60_c00451{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);}
.m92_c00451{transform:matrix(0.184869,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184869,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184869,0.002034,-0.002750,0.249985,0,0);}
.m27_c00451{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);}
.m110_c00451{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);}
.ma6_c00451{transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);}
.m3f_c00451{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);}
.m104_c00451{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);}
.mf8_c00451{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);}
.mf_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);}
.m41_c00451{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);}
.md4_c00451{transform:matrix(0.187211,0.001872,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187211,0.001872,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187211,0.001872,-0.002500,0.249988,0,0);}
.mea_c00451{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);}
.m64_c00451{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);}
.m96_c00451{transform:matrix(0.187409,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187409,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187409,0.002061,-0.002750,0.249985,0,0);}
.m9e_c00451{transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187769,0.002065,-0.002750,0.249985,0,0);}
.m7e_c00451{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);}
.m17_c00451{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);}
.m14_c00451{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);}
.mec_c00451{transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188496,0.001885,-0.002500,0.249988,0,0);}
.m50_c00451{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);}
.m79_c00451{transform:matrix(0.188769,0.002076,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188769,0.002076,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188769,0.002076,-0.002750,0.249985,0,0);}
.m4c_c00451{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);}
.m9_c00451{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);}
.mad_c00451{transform:matrix(0.189329,0.002083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189329,0.002083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189329,0.002083,-0.002750,0.249985,0,0);}
.m68_c00451{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);}
.mde_c00451{transform:matrix(0.190430,0.001904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190430,0.001904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190430,0.001904,-0.002500,0.249988,0,0);}
.m103_c00451{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);}
.m2c_c00451{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);}
.m51_c00451{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);}
.mdc_c00451{transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191860,0.001919,-0.002500,0.249988,0,0);}
.mbe_c00451{transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192375,0.001924,-0.002500,0.249988,0,0);}
.m25_c00451{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);}
.m2d_c00451{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);}
.med_c00451{transform:matrix(0.193715,0.001937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193715,0.001937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193715,0.001937,-0.002500,0.249988,0,0);}
.m2a_c00451{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);}
.mc8_c00451{transform:matrix(0.194365,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194365,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194365,0.001944,-0.002500,0.249988,0,0);}
.ma_c00451{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);}
.m2e_c00451{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);}
.m36_c00451{transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);}
.mdf_c00451{transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195170,0.001952,-0.002500,0.249988,0,0);}
.md2_c00451{transform:matrix(0.195800,0.001958,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195800,0.001958,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195800,0.001958,-0.002500,0.249988,0,0);}
.m94_c00451{transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);}
.m67_c00451{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);}
.m33_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);}
.mb6_c00451{transform:matrix(0.196480,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196480,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196480,0.001965,-0.002500,0.249988,0,0);}
.m49_c00451{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);}
.m16_c00451{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);}
.m29_c00451{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);}
.m1d_c00451{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);}
.ma1_c00451{transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197133,0.002168,-0.002750,0.249985,0,0);}
.m5c_c00451{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);}
.mfc_c00451{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);}
.m1c_c00451{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);}
.m24_c00451{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);}
.m18_c00451{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);}
.mf6_c00451{transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198418,0.002976,-0.003750,0.249972,0,0);}
.m85_c00451{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);}
.m117_c00451{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);}
.m37_c00451{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);}
.m8e_c00451{transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199568,0.002195,-0.002750,0.249985,0,0);}
.m5_c00451{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);}
.m11a_c00451{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);}
.m35_c00451{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_c00451{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);}
.mf2_c00451{transform:matrix(0.201042,0.003016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201042,0.003016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201042,0.003016,-0.003750,0.249972,0,0);}
.md8_c00451{transform:matrix(0.201055,0.002011,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201055,0.002011,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201055,0.002011,-0.002500,0.249988,0,0);}
.mce_c00451{transform:matrix(0.201265,0.002013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201265,0.002013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201265,0.002013,-0.002500,0.249988,0,0);}
.m83_c00451{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);}
.m75_c00451{transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201433,0.002216,-0.002750,0.249985,0,0);}
.md1_c00451{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);}
.m3c_c00451{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);}
.m10b_c00451{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);}
.m8f_c00451{transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203343,0.002237,-0.002750,0.249985,0,0);}
.mfe_c00451{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);}
.m63_c00451{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);}
.m8_c00451{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);}
.m118_c00451{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);}
.m97_c00451{transform:matrix(0.205688,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205688,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205688,0.002263,-0.002750,0.249985,0,0);}
.mfb_c00451{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);}
.m113_c00451{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);}
.ma3_c00451{transform:matrix(0.206088,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206088,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206088,0.002267,-0.002750,0.249985,0,0);}
.mac_c00451{transform:matrix(0.206228,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206228,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206228,0.002269,-0.002750,0.249985,0,0);}
.m44_c00451{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);}
.me2_c00451{transform:matrix(0.206795,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206795,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206795,0.002068,-0.002500,0.249988,0,0);}
.m84_c00451{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);}
.m3e_c00451{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);}
.mb7_c00451{transform:matrix(0.209030,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209030,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209030,0.002090,-0.002500,0.249988,0,0);}
.ma7_c00451{transform:matrix(0.209482,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209482,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209482,0.002304,-0.002750,0.249985,0,0);}
.m10a_c00451{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);}
.m2_c00451{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);}
.mf5_c00451{transform:matrix(0.209871,0.003148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209871,0.003148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209871,0.003148,-0.003750,0.249972,0,0);}
.m91_c00451{transform:matrix(0.210077,0.002311,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210077,0.002311,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210077,0.002311,-0.002750,0.249985,0,0);}
.me0_c00451{transform:matrix(0.210994,0.002110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210994,0.002110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210994,0.002110,-0.002500,0.249988,0,0);}
.ma0_c00451{transform:matrix(0.211077,0.002322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211077,0.002322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211077,0.002322,-0.002750,0.249985,0,0);}
.meb_c00451{transform:matrix(0.211969,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211969,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211969,0.002120,-0.002500,0.249988,0,0);}
.m3_c00451{transform:matrix(0.212095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212095,0.000000,0.000000,0.250000,0,0);}
.m10c_c00451{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);}
.m90_c00451{transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);}
.m7_c00451{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);}
.maa_c00451{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);}
.m22_c00451{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);}
.m53_c00451{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);}
.m7d_c00451{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);}
.m9f_c00451{transform:matrix(0.215912,0.002375,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215912,0.002375,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215912,0.002375,-0.002750,0.249985,0,0);}
.mef_c00451{transform:matrix(0.216214,0.002162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216214,0.002162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216214,0.002162,-0.002500,0.249988,0,0);}
.mbd_c00451{transform:matrix(0.216294,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216294,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216294,0.002163,-0.002500,0.249988,0,0);}
.mc9_c00451{transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);}
.m99_c00451{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);}
.m7a_c00451{transform:matrix(0.216837,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216837,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216837,0.002385,-0.002750,0.249985,0,0);}
.ma9_c00451{transform:matrix(0.217827,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217827,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217827,0.002396,-0.002750,0.249985,0,0);}
.me9_c00451{transform:matrix(0.217934,0.002179,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217934,0.002179,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217934,0.002179,-0.002500,0.249988,0,0);}
.md0_c00451{transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218184,0.002182,-0.002500,0.249988,0,0);}
.m111_c00451{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);}
.m4e_c00451{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);}
.m5a_c00451{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);}
.m55_c00451{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);}
.m78_c00451{transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);}
.mf9_c00451{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);}
.me6_c00451{transform:matrix(0.223324,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223324,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223324,0.002233,-0.002500,0.249988,0,0);}
.mfd_c00451{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);}
.m100_c00451{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);}
.me3_c00451{transform:matrix(0.223779,0.002238,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223779,0.002238,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223779,0.002238,-0.002500,0.249988,0,0);}
.m82_c00451{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);}
.m11_c00451{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);}
.m3d_c00451{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);}
.md7_c00451{transform:matrix(0.227994,0.002280,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227994,0.002280,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227994,0.002280,-0.002500,0.249988,0,0);}
.m9a_c00451{transform:matrix(0.228346,0.002512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228346,0.002512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228346,0.002512,-0.002750,0.249985,0,0);}
.m21_c00451{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);}
.mab_c00451{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);}
.m7f_c00451{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);}
.m109_c00451{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);}
.m8b_c00451{transform:matrix(0.230001,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230001,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230001,0.002530,-0.002750,0.249985,0,0);}
.m8d_c00451{transform:matrix(0.230151,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230151,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230151,0.002532,-0.002750,0.249985,0,0);}
.m102_c00451{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);}
.m5d_c00451{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);}
.mdb_c00451{transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);}
.m101_c00451{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);}
.mb3_c00451{transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);}
.m73_c00451{transform:matrix(0.233951,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233951,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233951,0.002573,-0.002750,0.249985,0,0);}
.mc6_c00451{transform:matrix(0.234048,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234048,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234048,0.002340,-0.002500,0.249988,0,0);}
.m119_c00451{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);}
.m20_c00451{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);}
.m11b_c00451{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_c00451{transform:matrix(0.236318,0.002363,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236318,0.002363,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236318,0.002363,-0.002500,0.249988,0,0);}
.m1b_c00451{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);}
.m58_c00451{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);}
.m56_c00451{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);}
.me4_c00451{transform:matrix(0.239523,0.002395,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239523,0.002395,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239523,0.002395,-0.002500,0.249988,0,0);}
.md6_c00451{transform:matrix(0.239648,0.002396,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239648,0.002396,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239648,0.002396,-0.002500,0.249988,0,0);}
.mc2_c00451{transform:matrix(0.239743,0.002397,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239743,0.002397,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239743,0.002397,-0.002500,0.249988,0,0);}
.m76_c00451{transform:matrix(0.240075,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240075,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240075,0.002641,-0.002750,0.249985,0,0);}
.ma4_c00451{transform:matrix(0.240755,0.002648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240755,0.002648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240755,0.002648,-0.002750,0.249985,0,0);}
.m7c_c00451{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);}
.mc1_c00451{transform:matrix(0.242688,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242688,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242688,0.002427,-0.002500,0.249988,0,0);}
.ma8_c00451{transform:matrix(0.243440,0.002678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243440,0.002678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243440,0.002678,-0.002750,0.249985,0,0);}
.mc0_c00451{transform:matrix(0.245068,0.002451,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245068,0.002451,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245068,0.002451,-0.002500,0.249988,0,0);}
.m70_c00451{transform:matrix(0.247710,0.002229,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247710,0.002229,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247710,0.002229,-0.002250,0.249990,0,0);}
.m106_c00451{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{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);}
.mf7_c00451{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);}
.mc3_c00451{transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250032,0.002500,-0.002500,0.249988,0,0);}
.md9_c00451{transform:matrix(0.250042,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250042,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250042,0.002500,-0.002500,0.249988,0,0);}
.m9b_c00451{transform:matrix(0.250150,0.002752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250150,0.002752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250150,0.002752,-0.002750,0.249985,0,0);}
.m52_c00451{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.mda_c00451{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);}
.mee_c00451{transform:matrix(0.256687,0.002567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256687,0.002567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256687,0.002567,-0.002500,0.249988,0,0);}
.mcd_c00451{transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260572,0.002606,-0.002500,0.249988,0,0);}
.m3a_c00451{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);}
.mcc_c00451{transform:matrix(0.262672,0.002627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262672,0.002627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262672,0.002627,-0.002500,0.249988,0,0);}
.m31_c00451{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00451{transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265465,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{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);}
.m107_c00451{transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{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);}
.mc7_c00451{transform:matrix(0.282491,0.002825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282491,0.002825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282491,0.002825,-0.002500,0.249988,0,0);}
.mc4_c00451{transform:matrix(0.283776,0.002838,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283776,0.002838,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283776,0.002838,-0.002500,0.249988,0,0);}
.m108_c00451{transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00451{transform:matrix(0.287203,0.003159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287203,0.003159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287203,0.003159,-0.002750,0.249985,0,0);}
.mff_c00451{transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);}
.mcb_c00451{transform:matrix(0.293070,0.002931,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293070,0.002931,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293070,0.002931,-0.002500,0.249988,0,0);}
.m38_c00451{transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);}
.m77_c00451{transform:matrix(0.305642,0.003362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305642,0.003362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305642,0.003362,-0.002750,0.249985,0,0);}
.m8c_c00451{transform:matrix(0.315351,0.003469,-0.002750,0.249985,0,0);-ms-transform:matrix(0.315351,0.003469,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.315351,0.003469,-0.002750,0.249985,0,0);}
.m19_c00451{transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325015,0.000000,0.000000,0.250000,0,0);}
.m115_c00451{transform:matrix(0.343185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00451{transform:matrix(0.343613,0.003436,-0.002500,0.249988,0,0);-ms-transform:matrix(0.343613,0.003436,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.343613,0.003436,-0.002500,0.249988,0,0);}
.m10d_c00451{transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350055,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);}
.m105_c00451{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);}
.mbb_c00451{transform:matrix(0.354137,0.003541,-0.002500,0.249988,0,0);-ms-transform:matrix(0.354137,0.003541,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.354137,0.003541,-0.002500,0.249988,0,0);}
.mf0_c00451{transform:matrix(0.358817,0.003588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.358817,0.003588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.358817,0.003588,-0.002500,0.249988,0,0);}
.ma5_c00451{transform:matrix(0.365068,0.004016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.365068,0.004016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.365068,0.004016,-0.002750,0.249985,0,0);}
.m2f_c00451{transform:matrix(0.425080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425080,0.000000,0.000000,0.250000,0,0);}
.m9c_c00451{transform:matrix(0.750245,0.008253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.750245,0.008253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.750245,0.008253,-0.002750,0.249985,0,0);}
.m8a_c00451{transform:matrix(4.292690,0.047220,-0.002750,0.249985,0,0);-ms-transform:matrix(4.292690,0.047220,-0.002750,0.249985,0,0);-webkit-transform:matrix(4.292690,0.047220,-0.002750,0.249985,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;}
.fs14_c00451{font-size:47.250000px;}
.fsf_c00451{font-size:48.302415px;}
.fsd_c00451{font-size:51.453113px;}
.fs15_c00451{font-size:52.500000px;}
.fs11_c00451{font-size:53.552677px;}
.fs12_c00451{font-size:53.556024px;}
.fs13_c00451{font-size:54.600000px;}
.fsc_c00451{font-size:54.603303px;}
.fs10_c00451{font-size:55.652782px;}
.fse_c00451{font-size:57.752887px;}
.fs7_c00451{font-size:61.950000px;}
.fs0_c00451{font-size:65.100000px;}
.fs3_c00451{font-size:66.150000px;}
.fsa_c00451{font-size:66.154002px;}
.fsb_c00451{font-size:67.200000px;}
.fs5_c00451{font-size:70.350000px;}
.fs1_c00451{font-size:71.400000px;}
.fs4_c00451{font-size:73.500000px;}
.fs6_c00451{font-size:74.550000px;}
.fs8_c00451{font-size:77.700000px;}
.fs2_c00451{font-size:92.400000px;}
.fs9_c00451{font-size:124.955060px;}
.y0_c00451{bottom:0.000000px;}
.yaa_c00451{bottom:140.605500px;}
.ya9_c00451{bottom:141.004500px;}
.ya8_c00451{bottom:141.739500px;}
.ya7_c00451{bottom:142.134000px;}
.ya6_c00451{bottom:142.759500px;}
.ya5_c00451{bottom:143.103000px;}
.ya4_c00451{bottom:143.256000px;}
.ya3_c00451{bottom:143.667000px;}
.ya2_c00451{bottom:144.004500px;}
.ya1_c00451{bottom:144.312000px;}
.ya0_c00451{bottom:144.876000px;}
.y9f_c00451{bottom:145.074000px;}
.y9e_c00451{bottom:145.407000px;}
.y9d_c00451{bottom:145.602000px;}
.y9c_c00451{bottom:145.725000px;}
.y9b_c00451{bottom:146.071500px;}
.y9a_c00451{bottom:158.695500px;}
.y99_c00451{bottom:158.979000px;}
.y98_c00451{bottom:159.349500px;}
.y97_c00451{bottom:159.903000px;}
.y96_c00451{bottom:160.188000px;}
.y95_c00451{bottom:161.118000px;}
.y94_c00451{bottom:161.218500px;}
.y93_c00451{bottom:161.539500px;}
.y92_c00451{bottom:162.129000px;}
.y91_c00451{bottom:162.894000px;}
.y90_c00451{bottom:163.123500px;}
.y8f_c00451{bottom:163.612500px;}
.y8e_c00451{bottom:163.891500px;}
.y8d_c00451{bottom:177.481500px;}
.y8c_c00451{bottom:179.741152px;}
.y8b_c00451{bottom:180.906743px;}
.y8a_c00451{bottom:181.708440px;}
.y89_c00451{bottom:181.967978px;}
.y88_c00451{bottom:182.251500px;}
.y87_c00451{bottom:196.808190px;}
.y86_c00451{bottom:196.994325px;}
.y85_c00451{bottom:197.906805px;}
.y84_c00451{bottom:198.078300px;}
.y83_c00451{bottom:198.648090px;}
.y82_c00451{bottom:198.871875px;}
.y81_c00451{bottom:199.325040px;}
.y80_c00451{bottom:199.798650px;}
.y7f_c00451{bottom:212.824935px;}
.y7e_c00451{bottom:213.255375px;}
.y7d_c00451{bottom:213.608250px;}
.y7c_c00451{bottom:213.801795px;}
.y7b_c00451{bottom:214.134330px;}
.y7a_c00451{bottom:214.426215px;}
.y79_c00451{bottom:215.251800px;}
.y78_c00451{bottom:215.780430px;}
.y77_c00451{bottom:216.001920px;}
.y76_c00451{bottom:216.314430px;}
.y75_c00451{bottom:216.566025px;}
.y74_c00451{bottom:217.023915px;}
.y73_c00451{bottom:217.484415px;}
.y72_c00451{bottom:217.887645px;}
.y71_c00451{bottom:233.299065px;}
.y70_c00451{bottom:233.648550px;}
.y6f_c00451{bottom:233.828595px;}
.y6e_c00451{bottom:234.119880px;}
.y6d_c00451{bottom:234.230160px;}
.y6c_c00451{bottom:234.648345px;}
.y6b_c00451{bottom:234.837240px;}
.y6a_c00451{bottom:235.128600px;}
.y69_c00451{bottom:235.234500px;}
.y68_c00451{bottom:235.416075px;}
.y67_c00451{bottom:235.743660px;}
.y66_c00451{bottom:235.941540px;}
.y65_c00451{bottom:236.174610px;}
.y64_c00451{bottom:236.520240px;}
.y55_c00451{bottom:252.623745px;}
.y56_c00451{bottom:252.623760px;}
.y58_c00451{bottom:252.624105px;}
.y5c_c00451{bottom:252.624165px;}
.y5e_c00451{bottom:252.624195px;}
.y57_c00451{bottom:252.624390px;}
.y59_c00451{bottom:252.624405px;}
.y5b_c00451{bottom:252.624450px;}
.y5f_c00451{bottom:252.624510px;}
.y5a_c00451{bottom:252.624735px;}
.y5d_c00451{bottom:252.624795px;}
.y60_c00451{bottom:252.625125px;}
.y61_c00451{bottom:252.625140px;}
.y62_c00451{bottom:252.625755px;}
.y63_c00451{bottom:252.625785px;}
.y54_c00451{bottom:267.044985px;}
.y53_c00451{bottom:267.142290px;}
.y52_c00451{bottom:267.687555px;}
.y51_c00451{bottom:267.973605px;}
.y50_c00451{bottom:268.259730px;}
.y4f_c00451{bottom:268.567350px;}
.y4e_c00451{bottom:268.958910px;}
.y4d_c00451{bottom:269.185785px;}
.y4c_c00451{bottom:269.295405px;}
.y4b_c00451{bottom:269.655735px;}
.y4a_c00451{bottom:270.125700px;}
.y49_c00451{bottom:270.238905px;}
.y48_c00451{bottom:270.433320px;}
.y47_c00451{bottom:270.914280px;}
.y46_c00451{bottom:271.189635px;}
.y45_c00451{bottom:271.621500px;}
.y44_c00451{bottom:285.315780px;}
.y43_c00451{bottom:285.553421px;}
.y42_c00451{bottom:285.681027px;}
.y41_c00451{bottom:286.086027px;}
.y40_c00451{bottom:286.293404px;}
.y3f_c00451{bottom:286.750400px;}
.y3e_c00451{bottom:287.298041px;}
.y3d_c00451{bottom:287.476176px;}
.y3c_c00451{bottom:287.624724px;}
.y3b_c00451{bottom:287.910697px;}
.y3a_c00451{bottom:288.177926px;}
.y39_c00451{bottom:288.351176px;}
.y38_c00451{bottom:288.604839px;}
.y37_c00451{bottom:288.829195px;}
.y36_c00451{bottom:288.967182px;}
.y35_c00451{bottom:289.348584px;}
.y34_c00451{bottom:289.532709px;}
.y33_c00451{bottom:289.805481px;}
.y32_c00451{bottom:289.980581px;}
.y31_c00451{bottom:303.604034px;}
.y30_c00451{bottom:303.691536px;}
.y2f_c00451{bottom:303.812392px;}
.y2e_c00451{bottom:304.242858px;}
.y2d_c00451{bottom:304.417582px;}
.y2c_c00451{bottom:304.721151px;}
.y2b_c00451{bottom:304.941904px;}
.y2a_c00451{bottom:305.192298px;}
.y29_c00451{bottom:305.500868px;}
.y28_c00451{bottom:305.633937px;}
.y27_c00451{bottom:306.169084px;}
.y26_c00451{bottom:306.489108px;}
.y25_c00451{bottom:306.824001px;}
.y24_c00451{bottom:307.116000px;}
.y23_c00451{bottom:307.621342px;}
.y22_c00451{bottom:307.798723px;}
.y21_c00451{bottom:334.260000px;}
.y20_c00451{bottom:407.946000px;}
.y1f_c00451{bottom:431.115000px;}
.y1e_c00451{bottom:453.322689px;}
.y1d_c00451{bottom:453.827028px;}
.y1c_c00451{bottom:454.101060px;}
.y1b_c00451{bottom:454.350589px;}
.y1a_c00451{bottom:455.232300px;}
.y19_c00451{bottom:455.752116px;}
.y18_c00451{bottom:455.980790px;}
.y17_c00451{bottom:456.301500px;}
.y16_c00451{bottom:475.525730px;}
.y15_c00451{bottom:475.912127px;}
.y14_c00451{bottom:476.748060px;}
.y13_c00451{bottom:476.803964px;}
.y12_c00451{bottom:477.321527px;}
.y11_c00451{bottom:477.814843px;}
.y10_c00451{bottom:478.281430px;}
.yf_c00451{bottom:478.711500px;}
.ye_c00451{bottom:523.150500px;}
.yd_c00451{bottom:545.434500px;}
.yc_c00451{bottom:569.526000px;}
.yb_c00451{bottom:592.638000px;}
.ya_c00451{bottom:615.667500px;}
.y9_c00451{bottom:638.218500px;}
.y8_c00451{bottom:661.227000px;}
.y7_c00451{bottom:683.919000px;}
.y6_c00451{bottom:706.593000px;}
.y5_c00451{bottom:729.556500px;}
.y4_c00451{bottom:753.562500px;}
.y3_c00451{bottom:775.828500px;}
.y2_c00451{bottom:799.656000px;}
.y1_c00451{bottom:821.704500px;}
.h16_c00451{height:47.250000px;}
.h11_c00451{height:48.302415px;}
.hf_c00451{height:51.453113px;}
.h17_c00451{height:52.500000px;}
.h13_c00451{height:53.552677px;}
.h14_c00451{height:53.556024px;}
.h15_c00451{height:54.600000px;}
.he_c00451{height:54.603303px;}
.h12_c00451{height:55.652782px;}
.h10_c00451{height:57.752887px;}
.h9_c00451{height:61.950000px;}
.h2_c00451{height:65.100000px;}
.h5_c00451{height:66.150000px;}
.hc_c00451{height:66.154002px;}
.hd_c00451{height:67.200000px;}
.h7_c00451{height:70.350000px;}
.h3_c00451{height:71.400000px;}
.h6_c00451{height:73.500000px;}
.h8_c00451{height:74.550000px;}
.ha_c00451{height:77.700000px;}
.h4_c00451{height:92.400000px;}
.hb_c00451{height:124.955060px;}
.h0_c00451{height:1008.450000px;}
.h1_c00451{height:1008.750000px;}
.w1_c00451{width:689.250000px;}
.w0_c00451{width:689.550000px;}
.x0_c00451{left:0.000000px;}
.x5d_c00451{left:130.086054px;}
.x69_c00451{left:134.903661px;}
.xa3_c00451{left:136.509000px;}
.x74_c00451{left:137.865000px;}
.x5c_c00451{left:141.717000px;}
.x5e_c00451{left:149.757483px;}
.x6a_c00451{left:152.458359px;}
.x95_c00451{left:156.186000px;}
.x7c_c00451{left:157.951050px;}
.xa4_c00451{left:165.382500px;}
.x50_c00451{left:170.491500px;}
.x3e_c00451{left:173.340000px;}
.x2b_c00451{left:174.960000px;}
.x1b_c00451{left:176.040000px;}
.x11_c00451{left:177.390000px;}
.x1_c00451{left:178.740000px;}
.x75_c00451{left:181.051500px;}
.x87_c00451{left:187.054485px;}
.xa5_c00451{left:191.859000px;}
.x6b_c00451{left:198.085854px;}
.x2c_c00451{left:199.800000px;}
.x3a_c00451{left:202.230000px;}
.xa_c00451{left:203.580000px;}
.x1f_c00451{left:205.740000px;}
.x76_c00451{left:208.587000px;}
.x12_c00451{left:209.790000px;}
.x7d_c00451{left:211.143375px;}
.x9e_c00451{left:213.198000px;}
.x93_c00451{left:214.807770px;}
.x34_c00451{left:216.000000px;}
.x4a_c00451{left:217.620000px;}
.x88_c00451{left:220.262475px;}
.x53_c00451{left:224.230500px;}
.xb_c00451{left:225.450000px;}
.x96_c00451{left:226.935000px;}
.x9f_c00451{left:232.378500px;}
.x94_c00451{left:233.435895px;}
.x13_c00451{left:234.900000px;}
.x2d_c00451{left:236.520000px;}
.x5f_c00451{left:238.335930px;}
.x20_c00451{left:243.810000px;}
.x4b_c00451{left:245.160000px;}
.xc_c00451{left:247.320000px;}
.x89_c00451{left:248.601330px;}
.x6c_c00451{left:249.939915px;}
.x7e_c00451{left:251.375895px;}
.x2_c00451{left:254.070000px;}
.x77_c00451{left:256.683000px;}
.x57_c00451{left:258.120000px;}
.x58_c00451{left:260.550000px;}
.x3f_c00451{left:264.330000px;}
.x4c_c00451{left:265.680000px;}
.x21_c00451{left:268.380000px;}
.x26_c00451{left:270.270000px;}
.x54_c00451{left:271.486500px;}
.x37_c00451{left:274.320000px;}
.x60_c00451{left:275.599755px;}
.x45_c00451{left:278.100000px;}
.x3_c00451{left:281.070000px;}
.x3b_c00451{left:282.420000px;}
.xd_c00451{left:286.740000px;}
.x14_c00451{left:288.630000px;}
.x1c_c00451{left:295.110000px;}
.x2e_c00451{left:297.000000px;}
.x40_c00451{left:303.480000px;}
.x97_c00451{left:304.641000px;}
.x3c_c00451{left:306.450000px;}
.x8e_c00451{left:309.334005px;}
.x61_c00451{left:311.239047px;}
.x6d_c00451{left:315.010625px;}
.x22_c00451{left:316.440000px;}
.x59_c00451{left:318.870000px;}
.x15_c00451{left:320.220000px;}
.x8a_c00451{left:321.269505px;}
.x4_c00451{left:324.810000px;}
.x4d_c00451{left:326.160000px;}
.x38_c00451{left:330.480000px;}
.x1d_c00451{left:332.910000px;}
.x19_c00451{left:334.260000px;}
.xe_c00451{left:336.690000px;}
.x16_c00451{left:339.660000px;}
.x6e_c00451{left:341.758922px;}
.x4e_c00451{left:342.900000px;}
.x27_c00451{left:346.140000px;}
.x7f_c00451{left:348.851145px;}
.x41_c00451{left:350.730000px;}
.x2f_c00451{left:355.860000px;}
.x1e_c00451{left:361.530000px;}
.x23_c00451{left:363.690000px;}
.x42_c00451{left:366.120000px;}
.x35_c00451{left:368.550000px;}
.x62_c00451{left:370.662850px;}
.xa0_c00451{left:371.932500px;}
.x55_c00451{left:374.326500px;}
.x80_c00451{left:376.932450px;}
.x28_c00451{left:378.270000px;}
.xa1_c00451{left:380.331000px;}
.x78_c00451{left:381.436500px;}
.x51_c00451{left:382.440000px;}
.x17_c00451{left:383.940000px;}
.x5_c00451{left:385.830000px;}
.xf_c00451{left:389.340000px;}
.x98_c00451{left:392.580000px;}
.x5a_c00451{left:393.660000px;}
.x43_c00451{left:395.820000px;}
.x39_c00451{left:397.710000px;}
.x46_c00451{left:398.790000px;}
.x4f_c00451{left:399.870000px;}
.x6f_c00451{left:403.046598px;}
.x79_c00451{left:404.124000px;}
.x6_c00451{left:408.780000px;}
.x18_c00451{left:412.020000px;}
.x36_c00451{left:416.340000px;}
.x10_c00451{left:417.420000px;}
.x47_c00451{left:419.580000px;}
.x30_c00451{left:420.930000px;}
.x3d_c00451{left:431.460000px;}
.x29_c00451{left:435.240000px;}
.x24_c00451{left:436.320000px;}
.x7_c00451{left:440.640000px;}
.x7a_c00451{left:443.280000px;}
.x56_c00451{left:445.087500px;}
.x63_c00451{left:447.622050px;}
.x31_c00451{left:451.440000px;}
.x8f_c00451{left:452.653080px;}
.x99_c00451{left:455.220000px;}
.x81_c00451{left:456.587415px;}
.x70_c00451{left:457.878209px;}
.x8_c00451{left:462.240000px;}
.x2a_c00451{left:464.400000px;}
.x5b_c00451{left:468.720000px;}
.x32_c00451{left:472.230000px;}
.x7b_c00451{left:474.042000px;}
.x48_c00451{left:477.900000px;}
.x90_c00451{left:479.141310px;}
.x8b_c00451{left:480.286260px;}
.x52_c00451{left:481.533000px;}
.x25_c00451{left:492.480000px;}
.x82_c00451{left:494.659725px;}
.x9a_c00451{left:495.720000px;}
.xa6_c00451{left:497.511000px;}
.x9_c00451{left:503.550000px;}
.x33_c00451{left:504.900000px;}
.x64_c00451{left:505.925337px;}
.x1a_c00451{left:508.950000px;}
.x9b_c00451{left:515.700000px;}
.x83_c00451{left:522.200985px;}
.x49_c00451{left:523.800000px;}
.x65_c00451{left:525.355266px;}
.x91_c00451{left:526.948830px;}
.x44_c00451{left:530.820000px;}
.x9c_c00451{left:534.330000px;}
.x84_c00451{left:538.401105px;}
.x8c_c00451{left:547.521270px;}
.x92_c00451{left:559.086015px;}
.x85_c00451{left:561.891960px;}
.x71_c00451{left:564.776880px;}
.x66_c00451{left:573.216822px;}
.x72_c00451{left:577.468512px;}
.xa2_c00451{left:582.249000px;}
.x67_c00451{left:586.658619px;}
.xa7_c00451{left:591.994500px;}
.x68_c00451{left:596.386334px;}
.x8d_c00451{left:597.471270px;}
.x9d_c00451{left:599.130000px;}
.x73_c00451{left:601.254276px;}
.x86_c00451{left:609.143685px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs14_c00451{font-size:42.000000pt;}
.fsf_c00451{font-size:42.935480pt;}
.fsd_c00451{font-size:45.736100pt;}
.fs15_c00451{font-size:46.666667pt;}
.fs11_c00451{font-size:47.602380pt;}
.fs12_c00451{font-size:47.605355pt;}
.fs13_c00451{font-size:48.533333pt;}
.fsc_c00451{font-size:48.536270pt;}
.fs10_c00451{font-size:49.469140pt;}
.fse_c00451{font-size:51.335900pt;}
.fs7_c00451{font-size:55.066667pt;}
.fs0_c00451{font-size:57.866667pt;}
.fs3_c00451{font-size:58.800000pt;}
.fsa_c00451{font-size:58.803557pt;}
.fsb_c00451{font-size:59.733333pt;}
.fs5_c00451{font-size:62.533333pt;}
.fs1_c00451{font-size:63.466667pt;}
.fs4_c00451{font-size:65.333333pt;}
.fs6_c00451{font-size:66.266667pt;}
.fs8_c00451{font-size:69.066667pt;}
.fs2_c00451{font-size:82.133333pt;}
.fs9_c00451{font-size:111.071165pt;}
.y0_c00451{bottom:0.000000pt;}
.yaa_c00451{bottom:124.982667pt;}
.ya9_c00451{bottom:125.337333pt;}
.ya8_c00451{bottom:125.990667pt;}
.ya7_c00451{bottom:126.341333pt;}
.ya6_c00451{bottom:126.897333pt;}
.ya5_c00451{bottom:127.202667pt;}
.ya4_c00451{bottom:127.338667pt;}
.ya3_c00451{bottom:127.704000pt;}
.ya2_c00451{bottom:128.004000pt;}
.ya1_c00451{bottom:128.277333pt;}
.ya0_c00451{bottom:128.778667pt;}
.y9f_c00451{bottom:128.954667pt;}
.y9e_c00451{bottom:129.250667pt;}
.y9d_c00451{bottom:129.424000pt;}
.y9c_c00451{bottom:129.533333pt;}
.y9b_c00451{bottom:129.841333pt;}
.y9a_c00451{bottom:141.062667pt;}
.y99_c00451{bottom:141.314667pt;}
.y98_c00451{bottom:141.644000pt;}
.y97_c00451{bottom:142.136000pt;}
.y96_c00451{bottom:142.389333pt;}
.y95_c00451{bottom:143.216000pt;}
.y94_c00451{bottom:143.305333pt;}
.y93_c00451{bottom:143.590667pt;}
.y92_c00451{bottom:144.114667pt;}
.y91_c00451{bottom:144.794667pt;}
.y90_c00451{bottom:144.998667pt;}
.y8f_c00451{bottom:145.433333pt;}
.y8e_c00451{bottom:145.681333pt;}
.y8d_c00451{bottom:157.761333pt;}
.y8c_c00451{bottom:159.769913pt;}
.y8b_c00451{bottom:160.805993pt;}
.y8a_c00451{bottom:161.518613pt;}
.y89_c00451{bottom:161.749313pt;}
.y88_c00451{bottom:162.001333pt;}
.y87_c00451{bottom:174.940613pt;}
.y86_c00451{bottom:175.106067pt;}
.y85_c00451{bottom:175.917160pt;}
.y84_c00451{bottom:176.069600pt;}
.y83_c00451{bottom:176.576080pt;}
.y82_c00451{bottom:176.775000pt;}
.y81_c00451{bottom:177.177813pt;}
.y80_c00451{bottom:177.598800pt;}
.y7f_c00451{bottom:189.177720pt;}
.y7e_c00451{bottom:189.560333pt;}
.y7d_c00451{bottom:189.874000pt;}
.y7c_c00451{bottom:190.046040pt;}
.y7b_c00451{bottom:190.341627pt;}
.y7a_c00451{bottom:190.601080pt;}
.y79_c00451{bottom:191.334933pt;}
.y78_c00451{bottom:191.804827pt;}
.y77_c00451{bottom:192.001707pt;}
.y76_c00451{bottom:192.279493pt;}
.y75_c00451{bottom:192.503133pt;}
.y74_c00451{bottom:192.910147pt;}
.y73_c00451{bottom:193.319480pt;}
.y72_c00451{bottom:193.677907pt;}
.y71_c00451{bottom:207.376947pt;}
.y70_c00451{bottom:207.687600pt;}
.y6f_c00451{bottom:207.847640pt;}
.y6e_c00451{bottom:208.106560pt;}
.y6d_c00451{bottom:208.204587pt;}
.y6c_c00451{bottom:208.576307pt;}
.y6b_c00451{bottom:208.744213pt;}
.y6a_c00451{bottom:209.003200pt;}
.y69_c00451{bottom:209.097333pt;}
.y68_c00451{bottom:209.258733pt;}
.y67_c00451{bottom:209.549920pt;}
.y66_c00451{bottom:209.725813pt;}
.y65_c00451{bottom:209.932987pt;}
.y64_c00451{bottom:210.240213pt;}
.y55_c00451{bottom:224.554440pt;}
.y56_c00451{bottom:224.554453pt;}
.y58_c00451{bottom:224.554760pt;}
.y5c_c00451{bottom:224.554813pt;}
.y5e_c00451{bottom:224.554840pt;}
.y57_c00451{bottom:224.555013pt;}
.y59_c00451{bottom:224.555027pt;}
.y5b_c00451{bottom:224.555067pt;}
.y5f_c00451{bottom:224.555120pt;}
.y5a_c00451{bottom:224.555320pt;}
.y5d_c00451{bottom:224.555373pt;}
.y60_c00451{bottom:224.555667pt;}
.y61_c00451{bottom:224.555680pt;}
.y62_c00451{bottom:224.556227pt;}
.y63_c00451{bottom:224.556253pt;}
.y54_c00451{bottom:237.373320pt;}
.y53_c00451{bottom:237.459813pt;}
.y52_c00451{bottom:237.944493pt;}
.y51_c00451{bottom:238.198760pt;}
.y50_c00451{bottom:238.453093pt;}
.y4f_c00451{bottom:238.726533pt;}
.y4e_c00451{bottom:239.074587pt;}
.y4d_c00451{bottom:239.276253pt;}
.y4c_c00451{bottom:239.373693pt;}
.y4b_c00451{bottom:239.693987pt;}
.y4a_c00451{bottom:240.111733pt;}
.y49_c00451{bottom:240.212360pt;}
.y48_c00451{bottom:240.385173pt;}
.y47_c00451{bottom:240.812693pt;}
.y46_c00451{bottom:241.057453pt;}
.y45_c00451{bottom:241.441333pt;}
.y44_c00451{bottom:253.614027pt;}
.y43_c00451{bottom:253.825263pt;}
.y42_c00451{bottom:253.938691pt;}
.y41_c00451{bottom:254.298691pt;}
.y40_c00451{bottom:254.483025pt;}
.y3f_c00451{bottom:254.889244pt;}
.y3e_c00451{bottom:255.376036pt;}
.y3d_c00451{bottom:255.534379pt;}
.y3c_c00451{bottom:255.666421pt;}
.y3b_c00451{bottom:255.920620pt;}
.y3a_c00451{bottom:256.158156pt;}
.y39_c00451{bottom:256.312156pt;}
.y38_c00451{bottom:256.537635pt;}
.y37_c00451{bottom:256.737063pt;}
.y36_c00451{bottom:256.859717pt;}
.y35_c00451{bottom:257.198741pt;}
.y34_c00451{bottom:257.362408pt;}
.y33_c00451{bottom:257.604872pt;}
.y32_c00451{bottom:257.760516pt;}
.y31_c00451{bottom:269.870252pt;}
.y30_c00451{bottom:269.948032pt;}
.y2f_c00451{bottom:270.055460pt;}
.y2e_c00451{bottom:270.438096pt;}
.y2d_c00451{bottom:270.593407pt;}
.y2c_c00451{bottom:270.863245pt;}
.y2b_c00451{bottom:271.059471pt;}
.y2a_c00451{bottom:271.282043pt;}
.y29_c00451{bottom:271.556327pt;}
.y28_c00451{bottom:271.674611pt;}
.y27_c00451{bottom:272.150297pt;}
.y26_c00451{bottom:272.434763pt;}
.y25_c00451{bottom:272.732445pt;}
.y24_c00451{bottom:272.992000pt;}
.y23_c00451{bottom:273.441193pt;}
.y22_c00451{bottom:273.598865pt;}
.y21_c00451{bottom:297.120000pt;}
.y20_c00451{bottom:362.618667pt;}
.y1f_c00451{bottom:383.213333pt;}
.y1e_c00451{bottom:402.953501pt;}
.y1d_c00451{bottom:403.401803pt;}
.y1c_c00451{bottom:403.645387pt;}
.y1b_c00451{bottom:403.867191pt;}
.y1a_c00451{bottom:404.650933pt;}
.y19_c00451{bottom:405.112992pt;}
.y18_c00451{bottom:405.316257pt;}
.y17_c00451{bottom:405.601333pt;}
.y16_c00451{bottom:422.689537pt;}
.y15_c00451{bottom:423.033001pt;}
.y14_c00451{bottom:423.776053pt;}
.y13_c00451{bottom:423.825745pt;}
.y12_c00451{bottom:424.285801pt;}
.y11_c00451{bottom:424.724305pt;}
.y10_c00451{bottom:425.139049pt;}
.yf_c00451{bottom:425.521333pt;}
.ye_c00451{bottom:465.022667pt;}
.yd_c00451{bottom:484.830667pt;}
.yc_c00451{bottom:506.245333pt;}
.yb_c00451{bottom:526.789333pt;}
.ya_c00451{bottom:547.260000pt;}
.y9_c00451{bottom:567.305333pt;}
.y8_c00451{bottom:587.757333pt;}
.y7_c00451{bottom:607.928000pt;}
.y6_c00451{bottom:628.082667pt;}
.y5_c00451{bottom:648.494667pt;}
.y4_c00451{bottom:669.833333pt;}
.y3_c00451{bottom:689.625333pt;}
.y2_c00451{bottom:710.805333pt;}
.y1_c00451{bottom:730.404000pt;}
.h16_c00451{height:42.000000pt;}
.h11_c00451{height:42.935480pt;}
.hf_c00451{height:45.736100pt;}
.h17_c00451{height:46.666667pt;}
.h13_c00451{height:47.602380pt;}
.h14_c00451{height:47.605355pt;}
.h15_c00451{height:48.533333pt;}
.he_c00451{height:48.536270pt;}
.h12_c00451{height:49.469140pt;}
.h10_c00451{height:51.335900pt;}
.h9_c00451{height:55.066667pt;}
.h2_c00451{height:57.866667pt;}
.h5_c00451{height:58.800000pt;}
.hc_c00451{height:58.803557pt;}
.hd_c00451{height:59.733333pt;}
.h7_c00451{height:62.533333pt;}
.h3_c00451{height:63.466667pt;}
.h6_c00451{height:65.333333pt;}
.h8_c00451{height:66.266667pt;}
.ha_c00451{height:69.066667pt;}
.h4_c00451{height:82.133333pt;}
.hb_c00451{height:111.071165pt;}
.h0_c00451{height:896.400000pt;}
.h1_c00451{height:896.666667pt;}
.w1_c00451{width:612.666667pt;}
.w0_c00451{width:612.933333pt;}
.x0_c00451{left:0.000000pt;}
.x5d_c00451{left:115.632048pt;}
.x69_c00451{left:119.914365pt;}
.xa3_c00451{left:121.341333pt;}
.x74_c00451{left:122.546667pt;}
.x5c_c00451{left:125.970667pt;}
.x5e_c00451{left:133.117763pt;}
.x6a_c00451{left:135.518541pt;}
.x95_c00451{left:138.832000pt;}
.x7c_c00451{left:140.400933pt;}
.xa4_c00451{left:147.006667pt;}
.x50_c00451{left:151.548000pt;}
.x3e_c00451{left:154.080000pt;}
.x2b_c00451{left:155.520000pt;}
.x1b_c00451{left:156.480000pt;}
.x11_c00451{left:157.680000pt;}
.x1_c00451{left:158.880000pt;}
.x75_c00451{left:160.934667pt;}
.x87_c00451{left:166.270653pt;}
.xa5_c00451{left:170.541333pt;}
.x6b_c00451{left:176.076315pt;}
.x2c_c00451{left:177.600000pt;}
.x3a_c00451{left:179.760000pt;}
.xa_c00451{left:180.960000pt;}
.x1f_c00451{left:182.880000pt;}
.x76_c00451{left:185.410667pt;}
.x12_c00451{left:186.480000pt;}
.x7d_c00451{left:187.683000pt;}
.x9e_c00451{left:189.509333pt;}
.x93_c00451{left:190.940240pt;}
.x34_c00451{left:192.000000pt;}
.x4a_c00451{left:193.440000pt;}
.x88_c00451{left:195.788867pt;}
.x53_c00451{left:199.316000pt;}
.xb_c00451{left:200.400000pt;}
.x96_c00451{left:201.720000pt;}
.x9f_c00451{left:206.558667pt;}
.x94_c00451{left:207.498573pt;}
.x13_c00451{left:208.800000pt;}
.x2d_c00451{left:210.240000pt;}
.x5f_c00451{left:211.854160pt;}
.x20_c00451{left:216.720000pt;}
.x4b_c00451{left:217.920000pt;}
.xc_c00451{left:219.840000pt;}
.x89_c00451{left:220.978960pt;}
.x6c_c00451{left:222.168813pt;}
.x7e_c00451{left:223.445240pt;}
.x2_c00451{left:225.840000pt;}
.x77_c00451{left:228.162667pt;}
.x57_c00451{left:229.440000pt;}
.x58_c00451{left:231.600000pt;}
.x3f_c00451{left:234.960000pt;}
.x4c_c00451{left:236.160000pt;}
.x21_c00451{left:238.560000pt;}
.x26_c00451{left:240.240000pt;}
.x54_c00451{left:241.321333pt;}
.x37_c00451{left:243.840000pt;}
.x60_c00451{left:244.977560pt;}
.x45_c00451{left:247.200000pt;}
.x3_c00451{left:249.840000pt;}
.x3b_c00451{left:251.040000pt;}
.xd_c00451{left:254.880000pt;}
.x14_c00451{left:256.560000pt;}
.x1c_c00451{left:262.320000pt;}
.x2e_c00451{left:264.000000pt;}
.x40_c00451{left:269.760000pt;}
.x97_c00451{left:270.792000pt;}
.x3c_c00451{left:272.400000pt;}
.x8e_c00451{left:274.963560pt;}
.x61_c00451{left:276.656931pt;}
.x6d_c00451{left:280.009444pt;}
.x22_c00451{left:281.280000pt;}
.x59_c00451{left:283.440000pt;}
.x15_c00451{left:284.640000pt;}
.x8a_c00451{left:285.572893pt;}
.x4_c00451{left:288.720000pt;}
.x4d_c00451{left:289.920000pt;}
.x38_c00451{left:293.760000pt;}
.x1d_c00451{left:295.920000pt;}
.x19_c00451{left:297.120000pt;}
.xe_c00451{left:299.280000pt;}
.x16_c00451{left:301.920000pt;}
.x6e_c00451{left:303.785708pt;}
.x4e_c00451{left:304.800000pt;}
.x27_c00451{left:307.680000pt;}
.x7f_c00451{left:310.089907pt;}
.x41_c00451{left:311.760000pt;}
.x2f_c00451{left:316.320000pt;}
.x1e_c00451{left:321.360000pt;}
.x23_c00451{left:323.280000pt;}
.x42_c00451{left:325.440000pt;}
.x35_c00451{left:327.600000pt;}
.x62_c00451{left:329.478089pt;}
.xa0_c00451{left:330.606667pt;}
.x55_c00451{left:332.734667pt;}
.x80_c00451{left:335.051067pt;}
.x28_c00451{left:336.240000pt;}
.xa1_c00451{left:338.072000pt;}
.x78_c00451{left:339.054667pt;}
.x51_c00451{left:339.946667pt;}
.x17_c00451{left:341.280000pt;}
.x5_c00451{left:342.960000pt;}
.xf_c00451{left:346.080000pt;}
.x98_c00451{left:348.960000pt;}
.x5a_c00451{left:349.920000pt;}
.x43_c00451{left:351.840000pt;}
.x39_c00451{left:353.520000pt;}
.x46_c00451{left:354.480000pt;}
.x4f_c00451{left:355.440000pt;}
.x6f_c00451{left:358.263643pt;}
.x79_c00451{left:359.221333pt;}
.x6_c00451{left:363.360000pt;}
.x18_c00451{left:366.240000pt;}
.x36_c00451{left:370.080000pt;}
.x10_c00451{left:371.040000pt;}
.x47_c00451{left:372.960000pt;}
.x30_c00451{left:374.160000pt;}
.x3d_c00451{left:383.520000pt;}
.x29_c00451{left:386.880000pt;}
.x24_c00451{left:387.840000pt;}
.x7_c00451{left:391.680000pt;}
.x7a_c00451{left:394.026667pt;}
.x56_c00451{left:395.633333pt;}
.x63_c00451{left:397.886267pt;}
.x31_c00451{left:401.280000pt;}
.x8f_c00451{left:402.358293pt;}
.x99_c00451{left:404.640000pt;}
.x81_c00451{left:405.855480pt;}
.x70_c00451{left:407.002852pt;}
.x8_c00451{left:410.880000pt;}
.x2a_c00451{left:412.800000pt;}
.x5b_c00451{left:416.640000pt;}
.x32_c00451{left:419.760000pt;}
.x7b_c00451{left:421.370667pt;}
.x48_c00451{left:424.800000pt;}
.x90_c00451{left:425.903387pt;}
.x8b_c00451{left:426.921120pt;}
.x52_c00451{left:428.029333pt;}
.x25_c00451{left:437.760000pt;}
.x82_c00451{left:439.697533pt;}
.x9a_c00451{left:440.640000pt;}
.xa6_c00451{left:442.232000pt;}
.x9_c00451{left:447.600000pt;}
.x33_c00451{left:448.800000pt;}
.x64_c00451{left:449.711411pt;}
.x1a_c00451{left:452.400000pt;}
.x9b_c00451{left:458.400000pt;}
.x83_c00451{left:464.178653pt;}
.x49_c00451{left:465.600000pt;}
.x65_c00451{left:466.982459pt;}
.x91_c00451{left:468.398960pt;}
.x44_c00451{left:471.840000pt;}
.x9c_c00451{left:474.960000pt;}
.x84_c00451{left:478.578760pt;}
.x8c_c00451{left:486.685573pt;}
.x92_c00451{left:496.965347pt;}
.x85_c00451{left:499.459520pt;}
.x71_c00451{left:502.023893pt;}
.x66_c00451{left:509.526064pt;}
.x72_c00451{left:513.305344pt;}
.xa2_c00451{left:517.554667pt;}
.x67_c00451{left:521.474328pt;}
.xa7_c00451{left:526.217333pt;}
.x68_c00451{left:530.121185pt;}
.x8d_c00451{left:531.085573pt;}
.x9d_c00451{left:532.560000pt;}
.x73_c00451{left:534.448245pt;}
.x86_c00451{left:541.461053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mc2_c00452{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.md5_c00452{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);}
.m106_c00452{transform:matrix(0.060195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060195,0.000000,0.000000,0.250000,0,0);}
.me1_c00452{transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082235,0.000000,0.000000,0.250000,0,0);}
.me7_c00452{transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);}
.mf9_c00452{transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);}
.me4_c00452{transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);}
.mb8_c00452{transform:matrix(0.126860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126860,0.000000,0.000000,0.250000,0,0);}
.m6a_c00452{transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129585,0.000000,0.000000,0.250000,0,0);}
.mb1_c00452{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);}
.m90_c00452{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);}
.mbb_c00452{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00452{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);}
.med_c00452{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);}
.m6d_c00452{transform:matrix(0.146920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00452{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);}
.m32_c00452{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);}
.mdc_c00452{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.m8c_c00452{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);}
.m23_c00452{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);}
.mbc_c00452{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);}
.mb9_c00452{transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);}
.mff_c00452{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);}
.m9d_c00452{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.mf7_c00452{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);}
.mba_c00452{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);}
.m7a_c00452{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);}
.m1d_c00452{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);}
.mca_c00452{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);}
.m3e_c00452{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);}
.m60_c00452{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);}
.ma7_c00452{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);}
.m76_c00452{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);}
.mbe_c00452{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);}
.m64_c00452{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);}
.m59_c00452{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);}
.m92_c00452{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);}
.m71_c00452{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);}
.m1b_c00452{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);}
.mbd_c00452{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_c00452{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);}
.m42_c00452{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);}
.m95_c00452{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);}
.m3d_c00452{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);}
.m10_c00452{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);}
.m79_c00452{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);}
.m100_c00452{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);}
.m45_c00452{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);}
.mda_c00452{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);}
.mc4_c00452{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);}
.mc1_c00452{transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176380,0.000000,0.000000,0.250000,0,0);}
.m44_c00452{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);}
.mab_c00452{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);}
.m80_c00452{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);}
.m96_c00452{transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);}
.mfb_c00452{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);}
.m6e_c00452{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);}
.mb4_c00452{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);}
.ma2_c00452{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);}
.m1a_c00452{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);}
.m57_c00452{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);}
.m11_c00452{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);}
.mb6_c00452{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);}
.m84_c00452{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);}
.m58_c00452{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);}
.mc5_c00452{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);}
.md_c00452{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);}
.m25_c00452{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m107_c00452{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);}
.m52_c00452{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);}
.m5e_c00452{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);}
.m1f_c00452{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);}
.mfc_c00452{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);}
.m9b_c00452{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);}
.m27_c00452{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);}
.m4a_c00452{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);}
.m2f_c00452{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);}
.m14_c00452{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);}
.m78_c00452{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);}
.m26_c00452{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);}
.m5c_c00452{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);}
.m2b_c00452{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);}
.mf4_c00452{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);}
.m83_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);}
.m99_c00452{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);}
.m2e_c00452{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);}
.m8b_c00452{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);}
.m48_c00452{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);}
.m82_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);}
.m103_c00452{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);}
.m7f_c00452{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_c00452{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);}
.m17_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);}
.m72_c00452{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);}
.mc7_c00452{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);}
.m97_c00452{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);}
.m56_c00452{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);}
.m33_c00452{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);}
.m13_c00452{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);}
.m8a_c00452{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);}
.mf_c00452{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);}
.ma1_c00452{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);}
.m20_c00452{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);}
.m104_c00452{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);}
.maa_c00452{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);}
.mb0_c00452{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);}
.m21_c00452{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);}
.m22_c00452{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);}
.mf3_c00452{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);}
.mb5_c00452{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);}
.m8e_c00452{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);}
.m2c_c00452{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);}
.m9c_c00452{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);}
.m70_c00452{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);}
.ma8_c00452{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);}
.m9a_c00452{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);}
.m2d_c00452{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);}
.m9_c00452{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);}
.me8_c00452{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);}
.mc6_c00452{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);}
.ma_c00452{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);}
.mf5_c00452{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);}
.m15_c00452{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);}
.m28_c00452{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);}
.mfd_c00452{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);}
.m77_c00452{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);}
.m5f_c00452{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);}
.m93_c00452{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);}
.m55_c00452{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);}
.m94_c00452{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);}
.mbf_c00452{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);}
.mb7_c00452{transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);}
.m8f_c00452{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);}
.ma4_c00452{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);}
.ma9_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);}
.m0_c00452{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);}
.me_c00452{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);}
.mb3_c00452{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);}
.m85_c00452{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);}
.md3_c00452{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);}
.mf8_c00452{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);}
.m89_c00452{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);}
.mae_c00452{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.m46_c00452{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);}
.m81_c00452{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);}
.m24_c00452{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);}
.m12_c00452{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);}
.m2a_c00452{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);}
.m4c_c00452{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);}
.m9f_c00452{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);}
.mcc_c00452{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);}
.m1c_c00452{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);}
.m102_c00452{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);}
.m4d_c00452{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);}
.mc9_c00452{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);}
.m88_c00452{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);}
.mea_c00452{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);}
.mc3_c00452{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.mfa_c00452{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);}
.m35_c00452{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m6b_c00452{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);}
.m5_c00452{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);}
.m8_c00452{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);}
.me9_c00452{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);}
.m74_c00452{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);}
.mde_c00452{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);}
.ma0_c00452{transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222210,0.000000,0.000000,0.250000,0,0);}
.m38_c00452{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);}
.m7_c00452{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);}
.m5a_c00452{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);}
.mad_c00452{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);}
.m8d_c00452{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);}
.meb_c00452{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m73_c00452{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);}
.m108_c00452{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);}
.m91_c00452{transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229755,0.000000,0.000000,0.250000,0,0);}
.m50_c00452{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);}
.mcb_c00452{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);}
.m4b_c00452{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);}
.md9_c00452{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);}
.mac_c00452{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);}
.m86_c00452{transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);}
.m36_c00452{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);}
.m37_c00452{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);}
.m1e_c00452{transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);}
.m6c_c00452{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);}
.mfe_c00452{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);}
.m16_c00452{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);}
.m7c_c00452{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);}
.m6f_c00452{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);}
.m109_c00452{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);}
.mdb_c00452{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);}
.maf_c00452{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);}
.m53_c00452{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);}
.m47_c00452{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.mee_c00452{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);}
.mf1_c00452{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);}
.mf2_c00452{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);}
.mf6_c00452{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{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);}
.m75_c00452{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{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);}
.m18_c00452{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);}
.m6_c00452{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_c00452{transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);}
.m4e_c00452{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m105_c00452{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);}
.m51_c00452{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.me5_c00452{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{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);}
.mef_c00452{transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266980,0.000000,0.000000,0.250000,0,0);}
.md2_c00452{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{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);}
.m65_c00452{transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269090,0.000000,0.000000,0.250000,0,0);}
.mce_c00452{transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);}
.me0_c00452{transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{transform:matrix(0.274215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274215,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275590,0.000000,0.000000,0.250000,0,0);}
.me2_c00452{transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277475,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.279235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279235,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279390,0.000000,0.000000,0.250000,0,0);}
.m5b_c00452{transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);}
.md7_c00452{transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);}
.mec_c00452{transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287215,0.000000,0.000000,0.250000,0,0);}
.mf0_c00452{transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00452{transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291060,0.000000,0.000000,0.250000,0,0);}
.mcf_c00452{transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291460,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);}
.m3a_c00452{transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299220,0.000000,0.000000,0.250000,0,0);}
.m7d_c00452{transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);}
.m10a_c00452{transform:matrix(0.308385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308385,0.000000,0.000000,0.250000,0,0);}
.m41_c00452{transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308850,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{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);}
.ma5_c00452{transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313555,0.000000,0.000000,0.250000,0,0);}
.m31_c00452{transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);}
.md1_c00452{transform:matrix(0.325730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325730,0.000000,0.000000,0.250000,0,0);}
.md6_c00452{transform:matrix(0.325950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325950,0.000000,0.000000,0.250000,0,0);}
.mdd_c00452{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);}
.me6_c00452{transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361190,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.363960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363960,0.000000,0.000000,0.250000,0,0);}
.m10c_c00452{transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);}
.mc0_c00452{transform:matrix(0.366590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366590,0.000000,0.000000,0.250000,0,0);}
.mcd_c00452{transform:matrix(0.381740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381740,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.388090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388090,0.000000,0.000000,0.250000,0,0);}
.m67_c00452{transform:matrix(0.391400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391400,0.000000,0.000000,0.250000,0,0);}
.m5d_c00452{transform:matrix(0.397110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397110,0.000000,0.000000,0.250000,0,0);}
.me3_c00452{transform:matrix(0.397300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397300,0.000000,0.000000,0.250000,0,0);}
.m61_c00452{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);}
.m63_c00452{transform:matrix(0.408640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408640,0.000000,0.000000,0.250000,0,0);}
.m4f_c00452{transform:matrix(0.422630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422630,0.000000,0.000000,0.250000,0,0);}
.md0_c00452{transform:matrix(0.440930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440930,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.453170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453170,0.000000,0.000000,0.250000,0,0);}
.md4_c00452{transform:matrix(0.488645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488645,0.000000,0.000000,0.250000,0,0);}
.m69_c00452{transform:matrix(0.499235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499235,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.517165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517165,0.000000,0.000000,0.250000,0,0);}
.m101_c00452{transform:matrix(0.560475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560475,0.000000,0.000000,0.250000,0,0);}
.m10b_c00452{transform:matrix(0.593245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593245,0.000000,0.000000,0.250000,0,0);}
.mdf_c00452{transform:matrix(0.605475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605475,0.000000,0.000000,0.250000,0,0);}
.md8_c00452{transform:matrix(0.609505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609505,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.612475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612475,0.000000,0.000000,0.250000,0,0);}
.m68_c00452{transform:matrix(0.708105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708105,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(1.106420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.106420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.106420,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;}
.fs1_c00452{font-size:24.150000px;}
.fs17_c00452{font-size:43.050000px;}
.fs19_c00452{font-size:46.200000px;}
.fs4_c00452{font-size:47.250000px;}
.fs7_c00452{font-size:49.350000px;}
.fs2_c00452{font-size:50.400000px;}
.fs6_c00452{font-size:51.450000px;}
.fs5_c00452{font-size:52.500000px;}
.fs3_c00452{font-size:53.550000px;}
.fs1a_c00452{font-size:55.650000px;}
.fs16_c00452{font-size:57.750000px;}
.fsf_c00452{font-size:61.950000px;}
.fs10_c00452{font-size:63.000000px;}
.fs12_c00452{font-size:66.150000px;}
.fs11_c00452{font-size:69.300000px;}
.fse_c00452{font-size:70.350000px;}
.fs14_c00452{font-size:71.400000px;}
.fsc_c00452{font-size:72.450000px;}
.fs13_c00452{font-size:73.500000px;}
.fsd_c00452{font-size:74.550000px;}
.fsb_c00452{font-size:76.650000px;}
.fs15_c00452{font-size:77.700000px;}
.fs0_c00452{font-size:81.900000px;}
.fs9_c00452{font-size:100.800000px;}
.fsa_c00452{font-size:101.850000px;}
.fs18_c00452{font-size:115.500000px;}
.fs8_c00452{font-size:137.550000px;}
.y0_c00452{bottom:0.000000px;}
.y22_c00452{bottom:159.843000px;}
.y23_c00452{bottom:160.360500px;}
.y24_c00452{bottom:160.860000px;}
.y25_c00452{bottom:161.478000px;}
.y26_c00452{bottom:161.862000px;}
.y27_c00452{bottom:162.616500px;}
.y28_c00452{bottom:163.008000px;}
.y29_c00452{bottom:163.896000px;}
.y2a_c00452{bottom:164.872500px;}
.ya_c00452{bottom:177.438000px;}
.y21_c00452{bottom:177.786000px;}
.y35_c00452{bottom:194.527500px;}
.y20_c00452{bottom:196.323000px;}
.y34_c00452{bottom:213.148500px;}
.y9_c00452{bottom:214.284000px;}
.y1f_c00452{bottom:230.869500px;}
.y8_c00452{bottom:231.091500px;}
.y1e_c00452{bottom:248.827500px;}
.y7_c00452{bottom:249.297000px;}
.y33_c00452{bottom:265.767000px;}
.y32_c00452{bottom:266.167500px;}
.y31_c00452{bottom:266.889000px;}
.y1d_c00452{bottom:267.493500px;}
.y6_c00452{bottom:267.612000px;}
.y30_c00452{bottom:267.973500px;}
.y2f_c00452{bottom:284.320500px;}
.y5_c00452{bottom:285.816000px;}
.y2e_c00452{bottom:302.650500px;}
.y4_c00452{bottom:303.565500px;}
.y2d_c00452{bottom:320.338500px;}
.y3_c00452{bottom:321.927000px;}
.y1c_c00452{bottom:373.047000px;}
.y1b_c00452{bottom:396.216000px;}
.y1a_c00452{bottom:419.125500px;}
.y19_c00452{bottom:441.522000px;}
.y18_c00452{bottom:463.794000px;}
.y17_c00452{bottom:488.263500px;}
.y16_c00452{bottom:510.687000px;}
.y15_c00452{bottom:533.337000px;}
.y14_c00452{bottom:556.387500px;}
.y13_c00452{bottom:579.792000px;}
.y12_c00452{bottom:602.824500px;}
.y2c_c00452{bottom:647.754000px;}
.y11_c00452{bottom:670.965000px;}
.y10_c00452{bottom:693.246000px;}
.yf_c00452{bottom:715.821000px;}
.ye_c00452{bottom:738.450000px;}
.yd_c00452{bottom:776.388000px;}
.y2b_c00452{bottom:812.304000px;}
.yc_c00452{bottom:815.518500px;}
.yb_c00452{bottom:882.199500px;}
.y2_c00452{bottom:935.406000px;}
.y1_c00452{bottom:942.996000px;}
.h3_c00452{height:24.150000px;}
.h19_c00452{height:43.050000px;}
.h1b_c00452{height:46.200000px;}
.h6_c00452{height:47.250000px;}
.h9_c00452{height:49.350000px;}
.h4_c00452{height:50.400000px;}
.h8_c00452{height:51.450000px;}
.h7_c00452{height:52.500000px;}
.h5_c00452{height:53.550000px;}
.h1c_c00452{height:55.650000px;}
.h18_c00452{height:57.750000px;}
.h11_c00452{height:61.950000px;}
.h12_c00452{height:63.000000px;}
.h14_c00452{height:66.150000px;}
.h13_c00452{height:69.300000px;}
.h10_c00452{height:70.350000px;}
.h16_c00452{height:71.400000px;}
.he_c00452{height:72.450000px;}
.h15_c00452{height:73.500000px;}
.hf_c00452{height:74.550000px;}
.hd_c00452{height:76.650000px;}
.h17_c00452{height:77.700000px;}
.h2_c00452{height:81.900000px;}
.hb_c00452{height:100.800000px;}
.hc_c00452{height:101.850000px;}
.h1a_c00452{height:115.500000px;}
.ha_c00452{height:137.550000px;}
.h1_c00452{height:1005.000000px;}
.h0_c00452{height:1005.150000px;}
.w0_c00452{width:715.200000px;}
.w1_c00452{width:715.500000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:11.880000px;}
.x2_c00452{left:39.960000px;}
.x5_c00452{left:47.520000px;}
.x26_c00452{left:79.380000px;}
.x27_c00452{left:91.260000px;}
.x6_c00452{left:93.690000px;}
.x1e_c00452{left:94.770000px;}
.x4_c00452{left:104.760000px;}
.x35_c00452{left:108.270000px;}
.x13_c00452{left:115.560000px;}
.x3_c00452{left:119.610000px;}
.xd_c00452{left:123.390000px;}
.x4a_c00452{left:124.740000px;}
.x6f_c00452{left:125.820000px;}
.x3b_c00452{left:126.900000px;}
.x28_c00452{left:128.520000px;}
.x78_c00452{left:129.870000px;}
.x18_c00452{left:131.220000px;}
.x14_c00452{left:135.810000px;}
.xe_c00452{left:140.940000px;}
.x8a_c00452{left:142.755000px;}
.x7_c00452{left:144.990000px;}
.x60_c00452{left:146.070000px;}
.x29_c00452{left:148.500000px;}
.x23_c00452{left:149.850000px;}
.x41_c00452{left:151.740000px;}
.x1f_c00452{left:153.900000px;}
.x19_c00452{left:156.060000px;}
.x3c_c00452{left:157.950000px;}
.x6a_c00452{left:160.650000px;}
.x2f_c00452{left:162.000000px;}
.x4b_c00452{left:166.320000px;}
.x2a_c00452{left:168.480000px;}
.x1a_c00452{left:171.450000px;}
.x79_c00452{left:176.580000px;}
.xf_c00452{left:177.930000px;}
.x73_c00452{left:179.820000px;}
.x57_c00452{left:181.170000px;}
.x52_c00452{left:183.330000px;}
.x42_c00452{left:184.680000px;}
.x8_c00452{left:186.300000px;}
.x8b_c00452{left:190.444500px;}
.x7c_c00452{left:193.590000px;}
.x2b_c00452{left:196.830000px;}
.x46_c00452{left:198.450000px;}
.x3d_c00452{left:199.800000px;}
.x9_c00452{left:200.880000px;}
.x10_c00452{left:209.520000px;}
.x36_c00452{left:211.140000px;}
.x20_c00452{left:212.220000px;}
.x2c_c00452{left:216.540000px;}
.x30_c00452{left:218.700000px;}
.x7a_c00452{left:220.050000px;}
.xa_c00452{left:223.290000px;}
.x15_c00452{left:226.260000px;}
.x53_c00452{left:228.420000px;}
.x11_c00452{left:229.500000px;}
.x4c_c00452{left:230.850000px;}
.x24_c00452{left:232.200000px;}
.x6b_c00452{left:233.820000px;}
.x5b_c00452{left:235.170000px;}
.x1b_c00452{left:238.140000px;}
.x37_c00452{left:240.030000px;}
.x8c_c00452{left:245.034000px;}
.x7d_c00452{left:248.130000px;}
.x86_c00452{left:252.450000px;}
.x25_c00452{left:254.880000px;}
.x4d_c00452{left:257.580000px;}
.x74_c00452{left:259.200000px;}
.x1c_c00452{left:260.820000px;}
.x43_c00452{left:264.870000px;}
.x21_c00452{left:266.490000px;}
.x61_c00452{left:269.730000px;}
.x22_c00452{left:278.640000px;}
.x16_c00452{left:280.800000px;}
.xb_c00452{left:281.880000px;}
.x54_c00452{left:284.040000px;}
.x2d_c00452{left:285.120000px;}
.x8d_c00452{left:287.320500px;}
.xc_c00452{left:289.170000px;}
.x12_c00452{left:291.600000px;}
.x1d_c00452{left:293.220000px;}
.x4e_c00452{left:295.920000px;}
.x55_c00452{left:298.080000px;}
.x67_c00452{left:302.130000px;}
.x58_c00452{left:303.480000px;}
.x70_c00452{left:305.640000px;}
.x47_c00452{left:308.070000px;}
.x2e_c00452{left:310.230000px;}
.x33_c00452{left:311.310000px;}
.x17_c00452{left:313.200000px;}
.x3e_c00452{left:314.280000px;}
.x56_c00452{left:320.220000px;}
.x38_c00452{left:322.650000px;}
.x88_c00452{left:327.780000px;}
.x6c_c00452{left:330.480000px;}
.x48_c00452{left:333.450000px;}
.x44_c00452{left:335.610000px;}
.x3f_c00452{left:338.040000px;}
.x7f_c00452{left:343.170000px;}
.x62_c00452{left:345.060000px;}
.x90_c00452{left:346.140000px;}
.x7b_c00452{left:348.300000px;}
.x75_c00452{left:350.730000px;}
.x4f_c00452{left:353.430000px;}
.x7e_c00452{left:355.860000px;}
.x63_c00452{left:359.370000px;}
.x5c_c00452{left:361.260000px;}
.x49_c00452{left:363.150000px;}
.x39_c00452{left:365.580000px;}
.x34_c00452{left:368.550000px;}
.x6d_c00452{left:375.300000px;}
.x8e_c00452{left:378.270000px;}
.x45_c00452{left:380.430000px;}
.x68_c00452{left:382.320000px;}
.x31_c00452{left:383.940000px;}
.x84_c00452{left:385.830000px;}
.x64_c00452{left:387.180000px;}
.x3a_c00452{left:390.690000px;}
.x89_c00452{left:392.580000px;}
.x98_c00452{left:393.660000px;}
.x9d_c00452{left:395.409000px;}
.x8f_c00452{left:396.900000px;}
.x76_c00452{left:398.520000px;}
.x40_c00452{left:400.410000px;}
.x71_c00452{left:401.490000px;}
.x99_c00452{left:404.460000px;}
.x5d_c00452{left:405.540000px;}
.x87_c00452{left:407.160000px;}
.x69_c00452{left:409.320000px;}
.x94_c00452{left:410.400000px;}
.x50_c00452{left:415.260000px;}
.x59_c00452{left:416.610000px;}
.x6e_c00452{left:420.390000px;}
.x80_c00452{left:421.470000px;}
.x85_c00452{left:423.360000px;}
.x77_c00452{left:427.410000px;}
.x65_c00452{left:432.270000px;}
.x91_c00452{left:433.890000px;}
.x5e_c00452{left:434.970000px;}
.x81_c00452{left:438.750000px;}
.xa1_c00452{left:444.150000px;}
.x92_c00452{left:445.770000px;}
.x66_c00452{left:448.470000px;}
.x32_c00452{left:457.380000px;}
.x9a_c00452{left:461.700000px;}
.x9e_c00452{left:463.170000px;}
.xa2_c00452{left:466.020000px;}
.x95_c00452{left:470.610000px;}
.x5a_c00452{left:473.850000px;}
.x51_c00452{left:474.930000px;}
.x82_c00452{left:481.410000px;}
.x5f_c00452{left:482.760000px;}
.x83_c00452{left:500.580000px;}
.x9f_c00452{left:508.305000px;}
.x72_c00452{left:513.000000px;}
.x9b_c00452{left:527.580000px;}
.x93_c00452{left:530.280000px;}
.xa0_c00452{left:533.347500px;}
.x96_c00452{left:541.620000px;}
.x9c_c00452{left:542.700000px;}
.xa3_c00452{left:551.340000px;}
.x97_c00452{left:567.000000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
.fs1_c00452{font-size:21.466667pt;}
.fs17_c00452{font-size:38.266667pt;}
.fs19_c00452{font-size:41.066667pt;}
.fs4_c00452{font-size:42.000000pt;}
.fs7_c00452{font-size:43.866667pt;}
.fs2_c00452{font-size:44.800000pt;}
.fs6_c00452{font-size:45.733333pt;}
.fs5_c00452{font-size:46.666667pt;}
.fs3_c00452{font-size:47.600000pt;}
.fs1a_c00452{font-size:49.466667pt;}
.fs16_c00452{font-size:51.333333pt;}
.fsf_c00452{font-size:55.066667pt;}
.fs10_c00452{font-size:56.000000pt;}
.fs12_c00452{font-size:58.800000pt;}
.fs11_c00452{font-size:61.600000pt;}
.fse_c00452{font-size:62.533333pt;}
.fs14_c00452{font-size:63.466667pt;}
.fsc_c00452{font-size:64.400000pt;}
.fs13_c00452{font-size:65.333333pt;}
.fsd_c00452{font-size:66.266667pt;}
.fsb_c00452{font-size:68.133333pt;}
.fs15_c00452{font-size:69.066667pt;}
.fs0_c00452{font-size:72.800000pt;}
.fs9_c00452{font-size:89.600000pt;}
.fsa_c00452{font-size:90.533333pt;}
.fs18_c00452{font-size:102.666667pt;}
.fs8_c00452{font-size:122.266667pt;}
.y0_c00452{bottom:0.000000pt;}
.y22_c00452{bottom:142.082667pt;}
.y23_c00452{bottom:142.542667pt;}
.y24_c00452{bottom:142.986667pt;}
.y25_c00452{bottom:143.536000pt;}
.y26_c00452{bottom:143.877333pt;}
.y27_c00452{bottom:144.548000pt;}
.y28_c00452{bottom:144.896000pt;}
.y29_c00452{bottom:145.685333pt;}
.y2a_c00452{bottom:146.553333pt;}
.ya_c00452{bottom:157.722667pt;}
.y21_c00452{bottom:158.032000pt;}
.y35_c00452{bottom:172.913333pt;}
.y20_c00452{bottom:174.509333pt;}
.y34_c00452{bottom:189.465333pt;}
.y9_c00452{bottom:190.474667pt;}
.y1f_c00452{bottom:205.217333pt;}
.y8_c00452{bottom:205.414667pt;}
.y1e_c00452{bottom:221.180000pt;}
.y7_c00452{bottom:221.597333pt;}
.y33_c00452{bottom:236.237333pt;}
.y32_c00452{bottom:236.593333pt;}
.y31_c00452{bottom:237.234667pt;}
.y1d_c00452{bottom:237.772000pt;}
.y6_c00452{bottom:237.877333pt;}
.y30_c00452{bottom:238.198667pt;}
.y2f_c00452{bottom:252.729333pt;}
.y5_c00452{bottom:254.058667pt;}
.y2e_c00452{bottom:269.022667pt;}
.y4_c00452{bottom:269.836000pt;}
.y2d_c00452{bottom:284.745333pt;}
.y3_c00452{bottom:286.157333pt;}
.y1c_c00452{bottom:331.597333pt;}
.y1b_c00452{bottom:352.192000pt;}
.y1a_c00452{bottom:372.556000pt;}
.y19_c00452{bottom:392.464000pt;}
.y18_c00452{bottom:412.261333pt;}
.y17_c00452{bottom:434.012000pt;}
.y16_c00452{bottom:453.944000pt;}
.y15_c00452{bottom:474.077333pt;}
.y14_c00452{bottom:494.566667pt;}
.y13_c00452{bottom:515.370667pt;}
.y12_c00452{bottom:535.844000pt;}
.y2c_c00452{bottom:575.781333pt;}
.y11_c00452{bottom:596.413333pt;}
.y10_c00452{bottom:616.218667pt;}
.yf_c00452{bottom:636.285333pt;}
.ye_c00452{bottom:656.400000pt;}
.yd_c00452{bottom:690.122667pt;}
.y2b_c00452{bottom:722.048000pt;}
.yc_c00452{bottom:724.905333pt;}
.yb_c00452{bottom:784.177333pt;}
.y2_c00452{bottom:831.472000pt;}
.y1_c00452{bottom:838.218667pt;}
.h3_c00452{height:21.466667pt;}
.h19_c00452{height:38.266667pt;}
.h1b_c00452{height:41.066667pt;}
.h6_c00452{height:42.000000pt;}
.h9_c00452{height:43.866667pt;}
.h4_c00452{height:44.800000pt;}
.h8_c00452{height:45.733333pt;}
.h7_c00452{height:46.666667pt;}
.h5_c00452{height:47.600000pt;}
.h1c_c00452{height:49.466667pt;}
.h18_c00452{height:51.333333pt;}
.h11_c00452{height:55.066667pt;}
.h12_c00452{height:56.000000pt;}
.h14_c00452{height:58.800000pt;}
.h13_c00452{height:61.600000pt;}
.h10_c00452{height:62.533333pt;}
.h16_c00452{height:63.466667pt;}
.he_c00452{height:64.400000pt;}
.h15_c00452{height:65.333333pt;}
.hf_c00452{height:66.266667pt;}
.hd_c00452{height:68.133333pt;}
.h17_c00452{height:69.066667pt;}
.h2_c00452{height:72.800000pt;}
.hb_c00452{height:89.600000pt;}
.hc_c00452{height:90.533333pt;}
.h1a_c00452{height:102.666667pt;}
.ha_c00452{height:122.266667pt;}
.h1_c00452{height:893.333333pt;}
.h0_c00452{height:893.466667pt;}
.w0_c00452{width:635.733333pt;}
.w1_c00452{width:636.000000pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:10.560000pt;}
.x2_c00452{left:35.520000pt;}
.x5_c00452{left:42.240000pt;}
.x26_c00452{left:70.560000pt;}
.x27_c00452{left:81.120000pt;}
.x6_c00452{left:83.280000pt;}
.x1e_c00452{left:84.240000pt;}
.x4_c00452{left:93.120000pt;}
.x35_c00452{left:96.240000pt;}
.x13_c00452{left:102.720000pt;}
.x3_c00452{left:106.320000pt;}
.xd_c00452{left:109.680000pt;}
.x4a_c00452{left:110.880000pt;}
.x6f_c00452{left:111.840000pt;}
.x3b_c00452{left:112.800000pt;}
.x28_c00452{left:114.240000pt;}
.x78_c00452{left:115.440000pt;}
.x18_c00452{left:116.640000pt;}
.x14_c00452{left:120.720000pt;}
.xe_c00452{left:125.280000pt;}
.x8a_c00452{left:126.893333pt;}
.x7_c00452{left:128.880000pt;}
.x60_c00452{left:129.840000pt;}
.x29_c00452{left:132.000000pt;}
.x23_c00452{left:133.200000pt;}
.x41_c00452{left:134.880000pt;}
.x1f_c00452{left:136.800000pt;}
.x19_c00452{left:138.720000pt;}
.x3c_c00452{left:140.400000pt;}
.x6a_c00452{left:142.800000pt;}
.x2f_c00452{left:144.000000pt;}
.x4b_c00452{left:147.840000pt;}
.x2a_c00452{left:149.760000pt;}
.x1a_c00452{left:152.400000pt;}
.x79_c00452{left:156.960000pt;}
.xf_c00452{left:158.160000pt;}
.x73_c00452{left:159.840000pt;}
.x57_c00452{left:161.040000pt;}
.x52_c00452{left:162.960000pt;}
.x42_c00452{left:164.160000pt;}
.x8_c00452{left:165.600000pt;}
.x8b_c00452{left:169.284000pt;}
.x7c_c00452{left:172.080000pt;}
.x2b_c00452{left:174.960000pt;}
.x46_c00452{left:176.400000pt;}
.x3d_c00452{left:177.600000pt;}
.x9_c00452{left:178.560000pt;}
.x10_c00452{left:186.240000pt;}
.x36_c00452{left:187.680000pt;}
.x20_c00452{left:188.640000pt;}
.x2c_c00452{left:192.480000pt;}
.x30_c00452{left:194.400000pt;}
.x7a_c00452{left:195.600000pt;}
.xa_c00452{left:198.480000pt;}
.x15_c00452{left:201.120000pt;}
.x53_c00452{left:203.040000pt;}
.x11_c00452{left:204.000000pt;}
.x4c_c00452{left:205.200000pt;}
.x24_c00452{left:206.400000pt;}
.x6b_c00452{left:207.840000pt;}
.x5b_c00452{left:209.040000pt;}
.x1b_c00452{left:211.680000pt;}
.x37_c00452{left:213.360000pt;}
.x8c_c00452{left:217.808000pt;}
.x7d_c00452{left:220.560000pt;}
.x86_c00452{left:224.400000pt;}
.x25_c00452{left:226.560000pt;}
.x4d_c00452{left:228.960000pt;}
.x74_c00452{left:230.400000pt;}
.x1c_c00452{left:231.840000pt;}
.x43_c00452{left:235.440000pt;}
.x21_c00452{left:236.880000pt;}
.x61_c00452{left:239.760000pt;}
.x22_c00452{left:247.680000pt;}
.x16_c00452{left:249.600000pt;}
.xb_c00452{left:250.560000pt;}
.x54_c00452{left:252.480000pt;}
.x2d_c00452{left:253.440000pt;}
.x8d_c00452{left:255.396000pt;}
.xc_c00452{left:257.040000pt;}
.x12_c00452{left:259.200000pt;}
.x1d_c00452{left:260.640000pt;}
.x4e_c00452{left:263.040000pt;}
.x55_c00452{left:264.960000pt;}
.x67_c00452{left:268.560000pt;}
.x58_c00452{left:269.760000pt;}
.x70_c00452{left:271.680000pt;}
.x47_c00452{left:273.840000pt;}
.x2e_c00452{left:275.760000pt;}
.x33_c00452{left:276.720000pt;}
.x17_c00452{left:278.400000pt;}
.x3e_c00452{left:279.360000pt;}
.x56_c00452{left:284.640000pt;}
.x38_c00452{left:286.800000pt;}
.x88_c00452{left:291.360000pt;}
.x6c_c00452{left:293.760000pt;}
.x48_c00452{left:296.400000pt;}
.x44_c00452{left:298.320000pt;}
.x3f_c00452{left:300.480000pt;}
.x7f_c00452{left:305.040000pt;}
.x62_c00452{left:306.720000pt;}
.x90_c00452{left:307.680000pt;}
.x7b_c00452{left:309.600000pt;}
.x75_c00452{left:311.760000pt;}
.x4f_c00452{left:314.160000pt;}
.x7e_c00452{left:316.320000pt;}
.x63_c00452{left:319.440000pt;}
.x5c_c00452{left:321.120000pt;}
.x49_c00452{left:322.800000pt;}
.x39_c00452{left:324.960000pt;}
.x34_c00452{left:327.600000pt;}
.x6d_c00452{left:333.600000pt;}
.x8e_c00452{left:336.240000pt;}
.x45_c00452{left:338.160000pt;}
.x68_c00452{left:339.840000pt;}
.x31_c00452{left:341.280000pt;}
.x84_c00452{left:342.960000pt;}
.x64_c00452{left:344.160000pt;}
.x3a_c00452{left:347.280000pt;}
.x89_c00452{left:348.960000pt;}
.x98_c00452{left:349.920000pt;}
.x9d_c00452{left:351.474667pt;}
.x8f_c00452{left:352.800000pt;}
.x76_c00452{left:354.240000pt;}
.x40_c00452{left:355.920000pt;}
.x71_c00452{left:356.880000pt;}
.x99_c00452{left:359.520000pt;}
.x5d_c00452{left:360.480000pt;}
.x87_c00452{left:361.920000pt;}
.x69_c00452{left:363.840000pt;}
.x94_c00452{left:364.800000pt;}
.x50_c00452{left:369.120000pt;}
.x59_c00452{left:370.320000pt;}
.x6e_c00452{left:373.680000pt;}
.x80_c00452{left:374.640000pt;}
.x85_c00452{left:376.320000pt;}
.x77_c00452{left:379.920000pt;}
.x65_c00452{left:384.240000pt;}
.x91_c00452{left:385.680000pt;}
.x5e_c00452{left:386.640000pt;}
.x81_c00452{left:390.000000pt;}
.xa1_c00452{left:394.800000pt;}
.x92_c00452{left:396.240000pt;}
.x66_c00452{left:398.640000pt;}
.x32_c00452{left:406.560000pt;}
.x9a_c00452{left:410.400000pt;}
.x9e_c00452{left:411.706667pt;}
.xa2_c00452{left:414.240000pt;}
.x95_c00452{left:418.320000pt;}
.x5a_c00452{left:421.200000pt;}
.x51_c00452{left:422.160000pt;}
.x82_c00452{left:427.920000pt;}
.x5f_c00452{left:429.120000pt;}
.x83_c00452{left:444.960000pt;}
.x9f_c00452{left:451.826667pt;}
.x72_c00452{left:456.000000pt;}
.x9b_c00452{left:468.960000pt;}
.x93_c00452{left:471.360000pt;}
.xa0_c00452{left:474.086667pt;}
.x96_c00452{left:481.440000pt;}
.x9c_c00452{left:482.400000pt;}
.xa3_c00452{left:490.080000pt;}
.x97_c00452{left:504.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_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;}
.m1b_c00453{transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);-ms-transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);-webkit-transform:matrix(0.014049,-0.000169,0.003000,0.249982,0,0);}
.m80_c00453{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);}
.me4_c00453{transform:matrix(0.016829,-0.000185,0.002750,0.249985,0,0);-ms-transform:matrix(0.016829,-0.000185,0.002750,0.249985,0,0);-webkit-transform:matrix(0.016829,-0.000185,0.002750,0.249985,0,0);}
.m14e_c00453{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m145_c00453{transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);}
.m73_c00453{transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027950,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.032595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032595,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061545,0.000000,0.000000,0.250000,0,0);}
.m99_c00453{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);}
.m2c_c00453{transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);}
.mec_c00453{transform:matrix(0.103009,-0.001133,0.002750,0.249985,0,0);-ms-transform:matrix(0.103009,-0.001133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.103009,-0.001133,0.002750,0.249985,0,0);}
.mb8_c00453{transform:matrix(0.104392,-0.001670,0.003999,0.249968,0,0);-ms-transform:matrix(0.104392,-0.001670,0.003999,0.249968,0,0);-webkit-transform:matrix(0.104392,-0.001670,0.003999,0.249968,0,0);}
.m5_c00453{transform:matrix(0.104622,-0.001255,0.003000,0.249982,0,0);-ms-transform:matrix(0.104622,-0.001255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.104622,-0.001255,0.003000,0.249982,0,0);}
.m109_c00453{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);}
.m87_c00453{transform:matrix(0.121610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121610,0.000000,0.000000,0.250000,0,0);}
.mf6_c00453{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);}
.m77_c00453{transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);}
.m15a_c00453{transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123970,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127555,0.000000,0.000000,0.250000,0,0);}
.mf7_c00453{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);}
.mae_c00453{transform:matrix(0.145901,-0.002334,0.003999,0.249968,0,0);-ms-transform:matrix(0.145901,-0.002334,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145901,-0.002334,0.003999,0.249968,0,0);}
.mac_c00453{transform:matrix(0.147951,-0.002367,0.003999,0.249968,0,0);-ms-transform:matrix(0.147951,-0.002367,0.003999,0.249968,0,0);-webkit-transform:matrix(0.147951,-0.002367,0.003999,0.249968,0,0);}
.md_c00453{transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);-ms-transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);}
.m42_c00453{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);}
.mc1_c00453{transform:matrix(0.155825,-0.002493,0.003999,0.249968,0,0);-ms-transform:matrix(0.155825,-0.002493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155825,-0.002493,0.003999,0.249968,0,0);}
.m49_c00453{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);}
.md6_c00453{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);}
.ma_c00453{transform:matrix(0.157939,-0.001895,0.003000,0.249982,0,0);-ms-transform:matrix(0.157939,-0.001895,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157939,-0.001895,0.003000,0.249982,0,0);}
.mab_c00453{transform:matrix(0.158645,-0.002538,0.003999,0.249968,0,0);-ms-transform:matrix(0.158645,-0.002538,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158645,-0.002538,0.003999,0.249968,0,0);}
.mb_c00453{transform:matrix(0.159818,-0.001918,0.003000,0.249982,0,0);-ms-transform:matrix(0.159818,-0.001918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159818,-0.001918,0.003000,0.249982,0,0);}
.m48_c00453{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);}
.m144_c00453{transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162915,0.000000,0.000000,0.250000,0,0);}
.m13b_c00453{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.m103_c00453{transform:matrix(0.165429,-0.002316,0.003500,0.249976,0,0);-ms-transform:matrix(0.165429,-0.002316,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165429,-0.002316,0.003500,0.249976,0,0);}
.me0_c00453{transform:matrix(0.168295,-0.001851,0.002750,0.249985,0,0);-ms-transform:matrix(0.168295,-0.001851,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168295,-0.001851,0.002750,0.249985,0,0);}
.mfd_c00453{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);}
.m132_c00453{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);}
.mdd_c00453{transform:matrix(0.170000,-0.001870,0.002750,0.249985,0,0);-ms-transform:matrix(0.170000,-0.001870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170000,-0.001870,0.002750,0.249985,0,0);}
.mbf_c00453{transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);-ms-transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);}
.m136_c00453{transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170190,0.000000,0.000000,0.250000,0,0);}
.m68_c00453{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);}
.m51_c00453{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);}
.m105_c00453{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);}
.m8_c00453{transform:matrix(0.170388,-0.002045,0.003000,0.249982,0,0);-ms-transform:matrix(0.170388,-0.002045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170388,-0.002045,0.003000,0.249982,0,0);}
.m142_c00453{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{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);}
.m46_c00453{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);}
.mba_c00453{transform:matrix(0.172033,-0.002753,0.003999,0.249968,0,0);-ms-transform:matrix(0.172033,-0.002753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172033,-0.002753,0.003999,0.249968,0,0);}
.m67_c00453{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);}
.mc_c00453{transform:matrix(0.172133,-0.002066,0.003000,0.249982,0,0);-ms-transform:matrix(0.172133,-0.002066,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172133,-0.002066,0.003000,0.249982,0,0);}
.m89_c00453{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);}
.m36_c00453{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);}
.me_c00453{transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);-ms-transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173038,-0.002076,0.003000,0.249982,0,0);}
.ma2_c00453{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);}
.m6_c00453{transform:matrix(0.175182,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175182,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175182,-0.002102,0.003000,0.249982,0,0);}
.m137_c00453{transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175555,0.000000,0.000000,0.250000,0,0);}
.m10e_c00453{transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);}
.m151_c00453{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);}
.md3_c00453{transform:matrix(0.175962,-0.002112,0.003000,0.249982,0,0);-ms-transform:matrix(0.175962,-0.002112,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175962,-0.002112,0.003000,0.249982,0,0);}
.m16_c00453{transform:matrix(0.176247,-0.002115,0.003000,0.249982,0,0);-ms-transform:matrix(0.176247,-0.002115,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176247,-0.002115,0.003000,0.249982,0,0);}
.m165_c00453{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);}
.m81_c00453{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);}
.m167_c00453{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);}
.m59_c00453{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);}
.m4d_c00453{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);}
.m4e_c00453{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);}
.m11d_c00453{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);}
.mb7_c00453{transform:matrix(0.179362,-0.002870,0.003999,0.249968,0,0);-ms-transform:matrix(0.179362,-0.002870,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179362,-0.002870,0.003999,0.249968,0,0);}
.m12d_c00453{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);}
.m1a_c00453{transform:matrix(0.180012,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.180012,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180012,-0.002160,0.003000,0.249982,0,0);}
.md0_c00453{transform:matrix(0.180092,-0.002881,0.003999,0.249968,0,0);-ms-transform:matrix(0.180092,-0.002881,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180092,-0.002881,0.003999,0.249968,0,0);}
.m15d_c00453{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);}
.m32_c00453{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);}
.ma1_c00453{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);}
.md1_c00453{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);}
.mff_c00453{transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181355,0.000000,0.000000,0.250000,0,0);}
.m93_c00453{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);}
.m121_c00453{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);}
.mc7_c00453{transform:matrix(0.182537,-0.002921,0.003999,0.249968,0,0);-ms-transform:matrix(0.182537,-0.002921,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182537,-0.002921,0.003999,0.249968,0,0);}
.mcd_c00453{transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);-ms-transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182817,-0.002925,0.003999,0.249968,0,0);}
.mfe_c00453{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);}
.m123_c00453{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);}
.m71_c00453{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);}
.m14_c00453{transform:matrix(0.184152,-0.002210,0.003000,0.249982,0,0);-ms-transform:matrix(0.184152,-0.002210,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184152,-0.002210,0.003000,0.249982,0,0);}
.m58_c00453{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);}
.m7e_c00453{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);}
.m15f_c00453{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);}
.m127_c00453{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);}
.m114_c00453{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);}
.ma3_c00453{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);}
.mfb_c00453{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);}
.m10c_c00453{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{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);}
.me1_c00453{transform:matrix(0.186429,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186429,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186429,-0.002051,0.002750,0.249985,0,0);}
.m5c_c00453{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);}
.md8_c00453{transform:matrix(0.186499,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186499,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186499,-0.002051,0.002750,0.249985,0,0);}
.m20_c00453{transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);}
.md9_c00453{transform:matrix(0.186669,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186669,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186669,-0.002053,0.002750,0.249985,0,0);}
.mb6_c00453{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);}
.m117_c00453{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);}
.m92_c00453{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);}
.m35_c00453{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);}
.m6a_c00453{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);}
.m19_c00453{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);}
.mad_c00453{transform:matrix(0.187536,-0.003001,0.003999,0.249968,0,0);-ms-transform:matrix(0.187536,-0.003001,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187536,-0.003001,0.003999,0.249968,0,0);}
.m166_c00453{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);}
.mde_c00453{transform:matrix(0.187794,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187794,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187794,-0.002066,0.002750,0.249985,0,0);}
.m15_c00453{transform:matrix(0.187951,-0.002255,0.003000,0.249982,0,0);-ms-transform:matrix(0.187951,-0.002255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187951,-0.002255,0.003000,0.249982,0,0);}
.mca_c00453{transform:matrix(0.188131,-0.003010,0.003999,0.249968,0,0);-ms-transform:matrix(0.188131,-0.003010,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188131,-0.003010,0.003999,0.249968,0,0);}
.maf_c00453{transform:matrix(0.189386,-0.003030,0.003999,0.249968,0,0);-ms-transform:matrix(0.189386,-0.003030,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189386,-0.003030,0.003999,0.249968,0,0);}
.ma9_c00453{transform:matrix(0.189731,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189731,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189731,-0.003036,0.003999,0.249968,0,0);}
.m138_c00453{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);}
.m13_c00453{transform:matrix(0.190211,-0.002283,0.003000,0.249982,0,0);-ms-transform:matrix(0.190211,-0.002283,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190211,-0.002283,0.003000,0.249982,0,0);}
.m60_c00453{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);}
.m10_c00453{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);}
.m45_c00453{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);}
.m1e_c00453{transform:matrix(0.191111,-0.002293,0.003000,0.249982,0,0);-ms-transform:matrix(0.191111,-0.002293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191111,-0.002293,0.003000,0.249982,0,0);}
.mb5_c00453{transform:matrix(0.191221,-0.003060,0.003999,0.249968,0,0);-ms-transform:matrix(0.191221,-0.003060,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191221,-0.003060,0.003999,0.249968,0,0);}
.m134_c00453{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);}
.mc2_c00453{transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);-ms-transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);}
.m37_c00453{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);}
.m2e_c00453{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);}
.m3f_c00453{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);}
.mf1_c00453{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);}
.m17_c00453{transform:matrix(0.193926,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193926,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193926,-0.002327,0.003000,0.249982,0,0);}
.m98_c00453{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);}
.maa_c00453{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);}
.ma8_c00453{transform:matrix(0.194940,-0.003119,0.003999,0.249968,0,0);-ms-transform:matrix(0.194940,-0.003119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194940,-0.003119,0.003999,0.249968,0,0);}
.mf8_c00453{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);}
.m101_c00453{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);}
.m9d_c00453{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);}
.m14c_c00453{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);}
.m152_c00453{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);}
.mbe_c00453{transform:matrix(0.196575,-0.003145,0.003999,0.249968,0,0);-ms-transform:matrix(0.196575,-0.003145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196575,-0.003145,0.003999,0.249968,0,0);}
.mc9_c00453{transform:matrix(0.196695,-0.003147,0.003999,0.249968,0,0);-ms-transform:matrix(0.196695,-0.003147,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196695,-0.003147,0.003999,0.249968,0,0);}
.m10b_c00453{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);}
.mc8_c00453{transform:matrix(0.196930,-0.003151,0.003999,0.249968,0,0);-ms-transform:matrix(0.196930,-0.003151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196930,-0.003151,0.003999,0.249968,0,0);}
.mc0_c00453{transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-ms-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);}
.m78_c00453{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);}
.m18_c00453{transform:matrix(0.197031,-0.002364,0.003000,0.249982,0,0);-ms-transform:matrix(0.197031,-0.002364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197031,-0.002364,0.003000,0.249982,0,0);}
.mc5_c00453{transform:matrix(0.197100,-0.003154,0.003999,0.249968,0,0);-ms-transform:matrix(0.197100,-0.003154,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197100,-0.003154,0.003999,0.249968,0,0);}
.m47_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);}
.m1c_c00453{transform:matrix(0.197396,-0.002369,0.003000,0.249982,0,0);-ms-transform:matrix(0.197396,-0.002369,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197396,-0.002369,0.003000,0.249982,0,0);}
.m69_c00453{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);}
.m140_c00453{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);}
.m95_c00453{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);}
.m7f_c00453{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);}
.m108_c00453{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);}
.m102_c00453{transform:matrix(0.198571,-0.002780,0.003500,0.249976,0,0);-ms-transform:matrix(0.198571,-0.002780,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198571,-0.002780,0.003500,0.249976,0,0);}
.m5a_c00453{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m56_c00453{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);}
.m10d_c00453{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);}
.ma4_c00453{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);}
.mbc_c00453{transform:matrix(0.199559,-0.003193,0.003999,0.249968,0,0);-ms-transform:matrix(0.199559,-0.003193,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199559,-0.003193,0.003999,0.249968,0,0);}
.ma0_c00453{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);}
.m13e_c00453{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);}
.m24_c00453{transform:matrix(0.199951,-0.002399,0.003000,0.249982,0,0);-ms-transform:matrix(0.199951,-0.002399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199951,-0.002399,0.003000,0.249982,0,0);}
.m107_c00453{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);}
.m130_c00453{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);}
.m30_c00453{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);}
.m74_c00453{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);}
.m11b_c00453{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);}
.mcf_c00453{transform:matrix(0.200874,-0.003214,0.003999,0.249968,0,0);-ms-transform:matrix(0.200874,-0.003214,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200874,-0.003214,0.003999,0.249968,0,0);}
.m33_c00453{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);}
.m1_c00453{transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201231,-0.002415,0.003000,0.249982,0,0);}
.m91_c00453{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);}
.m9b_c00453{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);}
.m139_c00453{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);}
.m11f_c00453{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);}
.m2b_c00453{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);}
.m115_c00453{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);}
.m6e_c00453{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);}
.mdb_c00453{transform:matrix(0.202573,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202573,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202573,-0.002228,0.002750,0.249985,0,0);}
.m16a_c00453{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);}
.mf2_c00453{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);}
.mdc_c00453{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);}
.mb4_c00453{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);}
.mbd_c00453{transform:matrix(0.203589,-0.003257,0.003999,0.249968,0,0);-ms-transform:matrix(0.203589,-0.003257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203589,-0.003257,0.003999,0.249968,0,0);}
.m168_c00453{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);}
.m43_c00453{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);}
.med_c00453{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_c00453{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);}
.mb3_c00453{transform:matrix(0.204444,-0.003271,0.003999,0.249968,0,0);-ms-transform:matrix(0.204444,-0.003271,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204444,-0.003271,0.003999,0.249968,0,0);}
.m85_c00453{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);}
.m111_c00453{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);}
.m9_c00453{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);}
.md7_c00453{transform:matrix(0.205000,-0.002460,0.003000,0.249982,0,0);-ms-transform:matrix(0.205000,-0.002460,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205000,-0.002460,0.003000,0.249982,0,0);}
.mf4_c00453{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);}
.m143_c00453{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);}
.m4f_c00453{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);}
.m62_c00453{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);}
.m4b_c00453{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);}
.m3d_c00453{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);}
.m64_c00453{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);}
.m131_c00453{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);}
.mcc_c00453{transform:matrix(0.206604,-0.003306,0.003999,0.249968,0,0);-ms-transform:matrix(0.206604,-0.003306,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206604,-0.003306,0.003999,0.249968,0,0);}
.m86_c00453{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);}
.m148_c00453{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);}
.m26_c00453{transform:matrix(0.208060,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208060,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208060,-0.002497,0.003000,0.249982,0,0);}
.m13a_c00453{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);}
.mf3_c00453{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);}
.mf_c00453{transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);-ms-transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209155,-0.002510,0.003000,0.249982,0,0);}
.m161_c00453{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);}
.m40_c00453{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);}
.mdf_c00453{transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211337,-0.002325,0.002750,0.249985,0,0);}
.m63_c00453{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);}
.m2a_c00453{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);}
.mfc_c00453{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);}
.m128_c00453{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);}
.m119_c00453{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);}
.m146_c00453{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);}
.m163_c00453{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);}
.m52_c00453{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);}
.m4_c00453{transform:matrix(0.212315,-0.002548,0.003000,0.249982,0,0);-ms-transform:matrix(0.212315,-0.002548,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212315,-0.002548,0.003000,0.249982,0,0);}
.mce_c00453{transform:matrix(0.213408,-0.003415,0.003999,0.249968,0,0);-ms-transform:matrix(0.213408,-0.003415,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213408,-0.003415,0.003999,0.249968,0,0);}
.m106_c00453{transform:matrix(0.213424,-0.002988,0.003500,0.249976,0,0);-ms-transform:matrix(0.213424,-0.002988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213424,-0.002988,0.003500,0.249976,0,0);}
.m124_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);}
.m122_c00453{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00453{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);}
.m1d_c00453{transform:matrix(0.215040,-0.002580,0.003000,0.249982,0,0);-ms-transform:matrix(0.215040,-0.002580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215040,-0.002580,0.003000,0.249982,0,0);}
.m159_c00453{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);}
.m65_c00453{transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216140,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{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);}
.m6d_c00453{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);}
.m2f_c00453{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);}
.m94_c00453{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);}
.m6f_c00453{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);}
.m88_c00453{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);}
.m15c_c00453{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);}
.m4a_c00453{transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00453{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);}
.m11e_c00453{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);}
.m113_c00453{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);}
.m55_c00453{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);}
.ma5_c00453{transform:matrix(0.218847,-0.003502,0.003999,0.249968,0,0);-ms-transform:matrix(0.218847,-0.003502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218847,-0.003502,0.003999,0.249968,0,0);}
.m82_c00453{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);}
.ma6_c00453{transform:matrix(0.218957,-0.003503,0.003999,0.249968,0,0);-ms-transform:matrix(0.218957,-0.003503,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218957,-0.003503,0.003999,0.249968,0,0);}
.m79_c00453{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);}
.m11c_c00453{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);}
.m27_c00453{transform:matrix(0.219184,-0.002630,0.003000,0.249982,0,0);-ms-transform:matrix(0.219184,-0.002630,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219184,-0.002630,0.003000,0.249982,0,0);}
.m11_c00453{transform:matrix(0.219259,-0.002631,0.003000,0.249982,0,0);-ms-transform:matrix(0.219259,-0.002631,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219259,-0.002631,0.003000,0.249982,0,0);}
.m133_c00453{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);}
.m13f_c00453{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);}
.m31_c00453{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);}
.m7a_c00453{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);}
.mda_c00453{transform:matrix(0.220772,-0.002428,0.002750,0.249985,0,0);-ms-transform:matrix(0.220772,-0.002428,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220772,-0.002428,0.002750,0.249985,0,0);}
.m164_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);}
.m7d_c00453{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);}
.m28_c00453{transform:matrix(0.222694,-0.002672,0.003000,0.249982,0,0);-ms-transform:matrix(0.222694,-0.002672,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222694,-0.002672,0.003000,0.249982,0,0);}
.mb0_c00453{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);}
.m9c_c00453{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);}
.m50_c00453{transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{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);}
.m15e_c00453{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);}
.m12c_c00453{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);}
.m0_c00453{transform:matrix(0.226959,-0.002724,0.003000,0.249982,0,0);-ms-transform:matrix(0.226959,-0.002724,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226959,-0.002724,0.003000,0.249982,0,0);}
.m75_c00453{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);}
.m5b_c00453{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);}
.m25_c00453{transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);-ms-transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227269,-0.002727,0.003000,0.249982,0,0);}
.m118_c00453{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);}
.m162_c00453{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);}
.m8b_c00453{transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{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);}
.mb9_c00453{transform:matrix(0.228826,-0.003661,0.003999,0.249968,0,0);-ms-transform:matrix(0.228826,-0.003661,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228826,-0.003661,0.003999,0.249968,0,0);}
.m158_c00453{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);}
.m104_c00453{transform:matrix(0.229523,-0.003213,0.003500,0.249976,0,0);-ms-transform:matrix(0.229523,-0.003213,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229523,-0.003213,0.003500,0.249976,0,0);}
.m13c_c00453{transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);}
.m10f_c00453{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);}
.m150_c00453{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);}
.m120_c00453{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);}
.m149_c00453{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.mb2_c00453{transform:matrix(0.232715,-0.003723,0.003999,0.249968,0,0);-ms-transform:matrix(0.232715,-0.003723,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232715,-0.003723,0.003999,0.249968,0,0);}
.m112_c00453{transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233290,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{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);}
.m4c_c00453{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00453{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.mc3_c00453{transform:matrix(0.235385,-0.003766,0.003999,0.249968,0,0);-ms-transform:matrix(0.235385,-0.003766,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235385,-0.003766,0.003999,0.249968,0,0);}
.m96_c00453{transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235615,0.000000,0.000000,0.250000,0,0);}
.m83_c00453{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);}
.m84_c00453{transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);}
.me8_c00453{transform:matrix(0.237151,-0.002609,0.002750,0.249985,0,0);-ms-transform:matrix(0.237151,-0.002609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237151,-0.002609,0.002750,0.249985,0,0);}
.m6b_c00453{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);}
.m8a_c00453{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.m12b_c00453{transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.237838,-0.002854,0.003000,0.249982,0,0);-ms-transform:matrix(0.237838,-0.002854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237838,-0.002854,0.003000,0.249982,0,0);}
.m110_c00453{transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);}
.m12f_c00453{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{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);}
.m3c_c00453{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);}
.m116_c00453{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);}
.m14b_c00453{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_c00453{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);}
.mcb_c00453{transform:matrix(0.242109,-0.003874,0.003999,0.249968,0,0);-ms-transform:matrix(0.242109,-0.003874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242109,-0.003874,0.003999,0.249968,0,0);}
.me9_c00453{transform:matrix(0.242395,-0.002666,0.002750,0.249985,0,0);-ms-transform:matrix(0.242395,-0.002666,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242395,-0.002666,0.002750,0.249985,0,0);}
.m8e_c00453{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m153_c00453{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);}
.m169_c00453{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);}
.m14d_c00453{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);}
.mfa_c00453{transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.248472,-0.002982,0.003000,0.249982,0,0);-ms-transform:matrix(0.248472,-0.002982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248472,-0.002982,0.003000,0.249982,0,0);}
.mf9_c00453{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);}
.m66_c00453{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.md4_c00453{transform:matrix(0.250722,-0.003009,0.003000,0.249982,0,0);-ms-transform:matrix(0.250722,-0.003009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250722,-0.003009,0.003000,0.249982,0,0);}
.m11a_c00453{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m9a_c00453{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m125_c00453{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);}
.m135_c00453{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);}
.mc4_c00453{transform:matrix(0.254007,-0.004064,0.003999,0.249968,0,0);-ms-transform:matrix(0.254007,-0.004064,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254007,-0.004064,0.003999,0.249968,0,0);}
.m90_c00453{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.256657,-0.003080,0.003000,0.249982,0,0);-ms-transform:matrix(0.256657,-0.003080,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256657,-0.003080,0.003000,0.249982,0,0);}
.m10a_c00453{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);}
.me3_c00453{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);}
.m54_c00453{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);}
.m5f_c00453{transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259270,0.000000,0.000000,0.250000,0,0);}
.mb1_c00453{transform:matrix(0.260507,-0.004168,0.003999,0.249968,0,0);-ms-transform:matrix(0.260507,-0.004168,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260507,-0.004168,0.003999,0.249968,0,0);}
.me7_c00453{transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);-ms-transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);}
.m12_c00453{transform:matrix(0.263161,-0.003158,0.003000,0.249982,0,0);-ms-transform:matrix(0.263161,-0.003158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263161,-0.003158,0.003000,0.249982,0,0);}
.m72_c00453{transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.264031,-0.003168,0.003000,0.249982,0,0);-ms-transform:matrix(0.264031,-0.003168,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264031,-0.003168,0.003000,0.249982,0,0);}
.m21_c00453{transform:matrix(0.264986,-0.003180,0.003000,0.249982,0,0);-ms-transform:matrix(0.264986,-0.003180,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264986,-0.003180,0.003000,0.249982,0,0);}
.m97_c00453{transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);}
.md5_c00453{transform:matrix(0.265111,-0.003181,0.003000,0.249982,0,0);-ms-transform:matrix(0.265111,-0.003181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265111,-0.003181,0.003000,0.249982,0,0);}
.md2_c00453{transform:matrix(0.265521,-0.004248,0.003999,0.249968,0,0);-ms-transform:matrix(0.265521,-0.004248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265521,-0.004248,0.003999,0.249968,0,0);}
.m160_c00453{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);}
.m147_c00453{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);}
.m12e_c00453{transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270910,0.000000,0.000000,0.250000,0,0);}
.m15b_c00453{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);}
.mf0_c00453{transform:matrix(0.272415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272415,0.000000,0.000000,0.250000,0,0);}
.m7c_c00453{transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274940,0.000000,0.000000,0.250000,0,0);}
.m100_c00453{transform:matrix(0.275363,-0.003855,0.003500,0.249976,0,0);-ms-transform:matrix(0.275363,-0.003855,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275363,-0.003855,0.003500,0.249976,0,0);}
.ma7_c00453{transform:matrix(0.277489,-0.004440,0.003999,0.249968,0,0);-ms-transform:matrix(0.277489,-0.004440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277489,-0.004440,0.003999,0.249968,0,0);}
.me5_c00453{transform:matrix(0.279278,-0.003072,0.002750,0.249985,0,0);-ms-transform:matrix(0.279278,-0.003072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.279278,-0.003072,0.002750,0.249985,0,0);}
.m7b_c00453{transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282705,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282960,0.000000,0.000000,0.250000,0,0);}
.m129_c00453{transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);}
.me2_c00453{transform:matrix(0.285158,-0.003137,0.002750,0.249985,0,0);-ms-transform:matrix(0.285158,-0.003137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285158,-0.003137,0.002750,0.249985,0,0);}
.m1f_c00453{transform:matrix(0.287384,-0.003449,0.003000,0.249982,0,0);-ms-transform:matrix(0.287384,-0.003449,0.003000,0.249982,0,0);-webkit-transform:matrix(0.287384,-0.003449,0.003000,0.249982,0,0);}
.mc6_c00453{transform:matrix(0.287458,-0.004599,0.003999,0.249968,0,0);-ms-transform:matrix(0.287458,-0.004599,0.003999,0.249968,0,0);-webkit-transform:matrix(0.287458,-0.004599,0.003999,0.249968,0,0);}
.m29_c00453{transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);}
.m155_c00453{transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297285,0.000000,0.000000,0.250000,0,0);}
.m14a_c00453{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);}
.m8f_c00453{transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);}
.mea_c00453{transform:matrix(0.314606,-0.003461,0.002750,0.249985,0,0);-ms-transform:matrix(0.314606,-0.003461,0.002750,0.249985,0,0);-webkit-transform:matrix(0.314606,-0.003461,0.002750,0.249985,0,0);}
.m154_c00453{transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320365,0.000000,0.000000,0.250000,0,0);}
.mee_c00453{transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321305,0.000000,0.000000,0.250000,0,0);}
.m13d_c00453{transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328740,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.330676,-0.003968,0.003000,0.249982,0,0);-ms-transform:matrix(0.330676,-0.003968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.330676,-0.003968,0.003000,0.249982,0,0);}
.m34_c00453{transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);}
.m14f_c00453{transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355690,0.000000,0.000000,0.250000,0,0);}
.m12a_c00453{transform:matrix(0.370550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370550,0.000000,0.000000,0.250000,0,0);}
.meb_c00453{transform:matrix(0.379022,-0.004169,0.002750,0.249985,0,0);-ms-transform:matrix(0.379022,-0.004169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.379022,-0.004169,0.002750,0.249985,0,0);}
.m8d_c00453{transform:matrix(0.384560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384560,0.000000,0.000000,0.250000,0,0);}
.m126_c00453{transform:matrix(0.385405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385405,0.000000,0.000000,0.250000,0,0);}
.mef_c00453{transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391820,0.000000,0.000000,0.250000,0,0);}
.me6_c00453{transform:matrix(0.411300,-0.004524,0.002750,0.249985,0,0);-ms-transform:matrix(0.411300,-0.004524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.411300,-0.004524,0.002750,0.249985,0,0);}
.m141_c00453{transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413460,0.000000,0.000000,0.250000,0,0);}
.mf5_c00453{transform:matrix(0.416645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416645,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.442810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00453{transform:matrix(0.474184,-0.007587,0.003999,0.249968,0,0);-ms-transform:matrix(0.474184,-0.007587,0.003999,0.249968,0,0);-webkit-transform:matrix(0.474184,-0.007587,0.003999,0.249968,0,0);}
.m156_c00453{transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);}
.m157_c00453{transform:matrix(0.681485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681485,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;}
.fc0_c00453{color:transparent;}
.fs16_c00453{font-size:22.050000px;}
.fs1a_c00453{font-size:44.100000px;}
.fsd_c00453{font-size:46.200000px;}
.fs7_c00453{font-size:47.250000px;}
.fsa_c00453{font-size:48.300000px;}
.fsb_c00453{font-size:49.350000px;}
.fsc_c00453{font-size:50.400000px;}
.fs18_c00453{font-size:50.404939px;}
.fs17_c00453{font-size:51.450000px;}
.fs9_c00453{font-size:52.500000px;}
.fs8_c00453{font-size:53.550000px;}
.fs19_c00453{font-size:54.600000px;}
.fs6_c00453{font-size:57.750000px;}
.fs0_c00453{font-size:63.004536px;}
.fs5_c00453{font-size:64.050000px;}
.fs12_c00453{font-size:64.054611px;}
.fs14_c00453{font-size:66.154002px;}
.fs4_c00453{font-size:67.204838px;}
.fs1_c00453{font-size:68.254914px;}
.fs3_c00453{font-size:69.304989px;}
.fsf_c00453{font-size:69.308870px;}
.fs15_c00453{font-size:70.350000px;}
.fse_c00453{font-size:70.359004px;}
.fs10_c00453{font-size:71.409139px;}
.fs13_c00453{font-size:72.454383px;}
.fs11_c00453{font-size:72.459273px;}
.fs2_c00453{font-size:74.555367px;}
.y0_c00453{bottom:0.000000px;}
.y3c_c00453{bottom:178.200000px;}
.ya5_c00453{bottom:178.695000px;}
.y3b_c00453{bottom:195.907500px;}
.ya4_c00453{bottom:196.786500px;}
.y3a_c00453{bottom:213.718500px;}
.ya3_c00453{bottom:214.674000px;}
.y39_c00453{bottom:230.938500px;}
.ya2_c00453{bottom:232.548000px;}
.y38_c00453{bottom:249.264000px;}
.ya1_c00453{bottom:250.335000px;}
.y37_c00453{bottom:266.803500px;}
.ya0_c00453{bottom:267.987000px;}
.y36_c00453{bottom:285.168000px;}
.y9f_c00453{bottom:285.348000px;}
.y35_c00453{bottom:302.853000px;}
.y9e_c00453{bottom:304.518000px;}
.y33_c00453{bottom:320.647500px;}
.y9d_c00453{bottom:322.594500px;}
.y32_c00453{bottom:338.449500px;}
.y34_c00453{bottom:338.712000px;}
.y9c_c00453{bottom:340.687500px;}
.y31_c00453{bottom:356.515500px;}
.y9b_c00453{bottom:358.735500px;}
.y30_c00453{bottom:374.760000px;}
.y9a_c00453{bottom:376.873500px;}
.y2f_c00453{bottom:392.623500px;}
.y99_c00453{bottom:394.884000px;}
.y2e_c00453{bottom:410.530500px;}
.y98_c00453{bottom:413.005500px;}
.y2d_c00453{bottom:428.577000px;}
.y91_c00453{bottom:429.301500px;}
.y92_c00453{bottom:429.845190px;}
.y93_c00453{bottom:430.182114px;}
.y94_c00453{bottom:430.453833px;}
.y95_c00453{bottom:430.704027px;}
.y96_c00453{bottom:431.509251px;}
.y97_c00453{bottom:431.917617px;}
.y2c_c00453{bottom:446.623500px;}
.y89_c00453{bottom:446.853000px;}
.y8a_c00453{bottom:447.844500px;}
.y8b_c00453{bottom:448.060500px;}
.y8c_c00453{bottom:448.570500px;}
.y8d_c00453{bottom:449.098500px;}
.y8e_c00453{bottom:449.860500px;}
.y8f_c00453{bottom:450.135000px;}
.y90_c00453{bottom:450.471000px;}
.y88_c00453{bottom:457.212000px;}
.y2b_c00453{bottom:464.568000px;}
.y87_c00453{bottom:467.115000px;}
.y86_c00453{bottom:518.940000px;}
.y20_c00453{bottom:542.232540px;}
.y22_c00453{bottom:542.233146px;}
.y21_c00453{bottom:542.233242px;}
.y24_c00453{bottom:542.233296px;}
.y29_c00453{bottom:542.233434px;}
.y28_c00453{bottom:542.233452px;}
.y23_c00453{bottom:542.233470px;}
.y27_c00453{bottom:542.233788px;}
.y25_c00453{bottom:542.234040px;}
.y26_c00453{bottom:542.234124px;}
.y2a_c00453{bottom:564.459000px;}
.y1f_c00453{bottom:565.003182px;}
.y1d_c00453{bottom:565.003332px;}
.y1c_c00453{bottom:565.003410px;}
.y1e_c00453{bottom:565.003698px;}
.y13_c00453{bottom:588.023028px;}
.y15_c00453{bottom:588.023376px;}
.y16_c00453{bottom:588.023418px;}
.y14_c00453{bottom:588.023472px;}
.y17_c00453{bottom:588.023604px;}
.y1a_c00453{bottom:588.024132px;}
.y18_c00453{bottom:588.024186px;}
.y1b_c00453{bottom:588.024258px;}
.y19_c00453{bottom:588.024270px;}
.y12_c00453{bottom:610.551954px;}
.yf_c00453{bottom:610.552164px;}
.yd_c00453{bottom:610.552398px;}
.y10_c00453{bottom:610.552548px;}
.y11_c00453{bottom:610.552650px;}
.ya_c00453{bottom:610.552830px;}
.ye_c00453{bottom:610.552842px;}
.yc_c00453{bottom:610.553076px;}
.yb_c00453{bottom:610.553472px;}
.y1_c00453{bottom:631.531500px;}
.y2_c00453{bottom:632.046624px;}
.y3_c00453{bottom:632.579190px;}
.y4_c00453{bottom:632.813082px;}
.y5_c00453{bottom:633.151554px;}
.y6_c00453{bottom:633.594156px;}
.y7_c00453{bottom:633.773778px;}
.y8_c00453{bottom:634.391592px;}
.y9_c00453{bottom:635.270712px;}
.y7b_c00453{bottom:677.430831px;}
.y7c_c00453{bottom:678.035374px;}
.y7d_c00453{bottom:678.169371px;}
.y7e_c00453{bottom:678.351449px;}
.y7f_c00453{bottom:679.170212px;}
.y80_c00453{bottom:679.547632px;}
.y81_c00453{bottom:679.960693px;}
.y82_c00453{bottom:680.203788px;}
.y83_c00453{bottom:680.593320px;}
.y84_c00453{bottom:680.819123px;}
.y85_c00453{bottom:681.518888px;}
.y71_c00453{bottom:700.651500px;}
.y72_c00453{bottom:701.253816px;}
.y73_c00453{bottom:701.616717px;}
.y74_c00453{bottom:701.898322px;}
.y75_c00453{bottom:702.225617px;}
.y76_c00453{bottom:702.709298px;}
.y77_c00453{bottom:703.160672px;}
.y78_c00453{bottom:703.440429px;}
.y79_c00453{bottom:704.037564px;}
.y7a_c00453{bottom:704.242477px;}
.y6b_c00453{bottom:723.061500px;}
.y6c_c00453{bottom:723.699114px;}
.y6d_c00453{bottom:724.181838px;}
.y6e_c00453{bottom:725.028342px;}
.y6f_c00453{bottom:725.640036px;}
.y70_c00453{bottom:726.155898px;}
.y64_c00453{bottom:745.457964px;}
.y65_c00453{bottom:746.239920px;}
.y66_c00453{bottom:746.806968px;}
.y67_c00453{bottom:747.072084px;}
.y68_c00453{bottom:747.828228px;}
.y69_c00453{bottom:748.955016px;}
.y6a_c00453{bottom:749.287800px;}
.y5b_c00453{bottom:768.680964px;}
.y5c_c00453{bottom:769.089900px;}
.y5d_c00453{bottom:769.410540px;}
.y5e_c00453{bottom:770.046636px;}
.y5f_c00453{bottom:770.468976px;}
.y60_c00453{bottom:771.432324px;}
.y61_c00453{bottom:772.014756px;}
.y62_c00453{bottom:772.902480px;}
.y63_c00453{bottom:773.481288px;}
.y51_c00453{bottom:791.365968px;}
.y52_c00453{bottom:791.874708px;}
.y53_c00453{bottom:792.258252px;}
.y54_c00453{bottom:792.927228px;}
.y55_c00453{bottom:793.512828px;}
.y56_c00453{bottom:794.227236px;}
.y57_c00453{bottom:794.548080px;}
.y58_c00453{bottom:795.393204px;}
.y59_c00453{bottom:795.885264px;}
.y5a_c00453{bottom:796.244856px;}
.y48_c00453{bottom:813.510468px;}
.y49_c00453{bottom:814.153920px;}
.y4a_c00453{bottom:814.525860px;}
.y4b_c00453{bottom:815.637372px;}
.y4c_c00453{bottom:817.189176px;}
.y4d_c00453{bottom:817.749216px;}
.y4e_c00453{bottom:819.029472px;}
.y4f_c00453{bottom:819.446688px;}
.y50_c00453{bottom:820.145556px;}
.y3d_c00453{bottom:837.543000px;}
.y3e_c00453{bottom:838.100352px;}
.y3f_c00453{bottom:838.454616px;}
.y40_c00453{bottom:838.907256px;}
.y41_c00453{bottom:839.456040px;}
.y42_c00453{bottom:839.975688px;}
.y43_c00453{bottom:840.299856px;}
.y44_c00453{bottom:840.844176px;}
.y45_c00453{bottom:841.344192px;}
.y46_c00453{bottom:841.902648px;}
.y47_c00453{bottom:842.490240px;}
.h18_c00453{height:22.050000px;}
.h1c_c00453{height:44.100000px;}
.hf_c00453{height:46.200000px;}
.h9_c00453{height:47.250000px;}
.hc_c00453{height:48.300000px;}
.hd_c00453{height:49.350000px;}
.he_c00453{height:50.400000px;}
.h1a_c00453{height:50.404939px;}
.h19_c00453{height:51.450000px;}
.hb_c00453{height:52.500000px;}
.ha_c00453{height:53.550000px;}
.h1b_c00453{height:54.600000px;}
.h8_c00453{height:57.750000px;}
.h2_c00453{height:63.004536px;}
.h7_c00453{height:64.050000px;}
.h14_c00453{height:64.054611px;}
.h16_c00453{height:66.154002px;}
.h6_c00453{height:67.204838px;}
.h3_c00453{height:68.254914px;}
.h5_c00453{height:69.304989px;}
.h11_c00453{height:69.308870px;}
.h17_c00453{height:70.350000px;}
.h10_c00453{height:70.359004px;}
.h12_c00453{height:71.409139px;}
.h15_c00453{height:72.454383px;}
.h13_c00453{height:72.459273px;}
.h4_c00453{height:74.555367px;}
.h0_c00453{height:1008.450000px;}
.h1_c00453{height:1008.750000px;}
.w1_c00453{width:689.250000px;}
.w0_c00453{width:689.550000px;}
.x0_c00453{left:0.000000px;}
.x57_c00453{left:130.140000px;}
.x5a_c00453{left:131.220000px;}
.x52_c00453{left:134.190000px;}
.x5d_c00453{left:136.350000px;}
.x48_c00453{left:138.780000px;}
.x49_c00453{left:139.860000px;}
.x2f_c00453{left:140.940000px;}
.x5f_c00453{left:142.020000px;}
.x63_c00453{left:150.120000px;}
.x26_c00453{left:154.170000px;}
.x3f_c00453{left:156.600000px;}
.x43_c00453{left:158.220000px;}
.x38_c00453{left:165.510000px;}
.x27_c00453{left:169.290000px;}
.x44_c00453{left:170.370000px;}
.x30_c00453{left:171.450000px;}
.x55_c00453{left:173.610000px;}
.x1a_c00453{left:176.313216px;}
.x1_c00453{left:177.822000px;}
.x81_c00453{left:178.916424px;}
.x5b_c00453{left:180.360000px;}
.x64_c00453{left:183.060000px;}
.x60_c00453{left:184.410000px;}
.x12_c00453{left:185.764170px;}
.x39_c00453{left:186.840000px;}
.x28_c00453{left:190.890000px;}
.x34_c00453{left:192.240000px;}
.x31_c00453{left:193.320000px;}
.x4b_c00453{left:196.830000px;}
.xa_c00453{left:199.532826px;}
.x5c_c00453{left:201.150000px;}
.x65_c00453{left:203.040000px;}
.x1b_c00453{left:204.125712px;}
.x79_c00453{left:206.729028px;}
.x5e_c00453{left:210.330000px;}
.x29_c00453{left:214.110000px;}
.x66_c00453{left:215.937000px;}
.x45_c00453{left:217.080000px;}
.x4a_c00453{left:219.510000px;}
.x2_c00453{left:220.749000px;}
.x3a_c00453{left:226.260000px;}
.x7a_c00453{left:228.081864px;}
.x56_c00453{left:230.580000px;}
.x86_c00453{left:232.579500px;}
.x2a_c00453{left:235.710000px;}
.x67_c00453{left:238.078500px;}
.x1c_c00453{left:239.497806px;}
.x6e_c00453{left:240.570900px;}
.x50_c00453{left:241.920000px;}
.x23_c00453{left:244.350000px;}
.x35_c00453{left:245.970000px;}
.xb_c00453{left:249.757062px;}
.x53_c00453{left:254.070000px;}
.x40_c00453{left:255.150000px;}
.x36_c00453{left:260.010000px;}
.x58_c00453{left:261.090000px;}
.x13_c00453{left:262.179168px;}
.x3_c00453{left:265.129500px;}
.x68_c00453{left:266.368500px;}
.x3b_c00453{left:267.570000px;}
.x32_c00453{left:269.460000px;}
.x7b_c00453{left:270.463536px;}
.x4c_c00453{left:272.970000px;}
.xc_c00453{left:274.329108px;}
.x1d_c00453{left:277.030206px;}
.x2b_c00453{left:279.180000px;}
.x14_c00453{left:280.810350px;}
.x3c_c00453{left:282.150000px;}
.x4_c00453{left:284.620500px;}
.x2c_c00453{left:289.170000px;}
.x89_c00453{left:290.610000px;}
.x74_c00453{left:291.827508px;}
.x82_c00453{left:294.240120px;}
.x7c_c00453{left:298.641492px;}
.x69_c00453{left:300.667500px;}
.x37_c00453{left:302.400000px;}
.x2d_c00453{left:306.450000px;}
.x24_c00453{left:308.880000px;}
.x61_c00453{left:309.960000px;}
.x3d_c00453{left:311.040000px;}
.x5_c00453{left:312.826500px;}
.xd_c00453{left:315.372012px;}
.x46_c00453{left:317.520000px;}
.x19_c00453{left:318.883032px;}
.x51_c00453{left:320.490000px;}
.x41_c00453{left:321.570000px;}
.x25_c00453{left:323.460000px;}
.x3e_c00453{left:325.350000px;}
.x59_c00453{left:327.780000px;}
.x62_c00453{left:329.670000px;}
.x42_c00453{left:332.100000px;}
.x6a_c00453{left:333.145500px;}
.x15_c00453{left:335.083662px;}
.x4d_c00453{left:336.690000px;}
.xe_c00453{left:339.944058px;}
.x54_c00453{left:341.280000px;}
.x33_c00453{left:344.250000px;}
.x4f_c00453{left:345.600000px;}
.x47_c00453{left:346.950000px;}
.x83_c00453{left:348.250848px;}
.x6_c00453{left:349.710000px;}
.x4e_c00453{left:351.540000px;}
.x6b_c00453{left:353.406000px;}
.x2e_c00453{left:354.780000px;}
.x16_c00453{left:359.385654px;}
.x7d_c00453{left:362.883024px;}
.x7_c00453{left:364.678500px;}
.x8c_c00453{left:370.575502px;}
.x1e_c00453{left:373.966656px;}
.xf_c00453{left:382.607196px;}
.x75_c00453{left:384.705984px;}
.x6c_c00453{left:387.426000px;}
.x9f_c00453{left:392.310000px;}
.x87_c00453{left:394.323000px;}
.x6f_c00453{left:397.181880px;}
.x7e_c00453{left:401.723148px;}
.x8a_c00453{left:405.369000px;}
.x76_c00453{left:407.665728px;}
.x17_c00453{left:410.149962px;}
.x10_c00453{left:413.120088px;}
.xc3_c00453{left:414.720000px;}
.x8_c00453{left:416.163000px;}
.x1f_c00453{left:417.979992px;}
.xac_c00453{left:425.250000px;}
.x18_c00453{left:426.890874px;}
.x84_c00453{left:428.708916px;}
.x70_c00453{left:430.121352px;}
.xb0_c00453{left:432.270000px;}
.x88_c00453{left:437.311500px;}
.xa9_c00453{left:438.750000px;}
.xb6_c00453{left:445.500000px;}
.x11_c00453{left:451.192578px;}
.x85_c00453{left:452.508684px;}
.x6d_c00453{left:453.580500px;}
.xba_c00453{left:456.030000px;}
.xbe_c00453{left:457.110000px;}
.x20_c00453{left:459.833022px;}
.x7f_c00453{left:460.863084px;}
.xc1_c00453{left:461.970000px;}
.x91_c00453{left:463.050000px;}
.x97_c00453{left:464.554500px;}
.x8d_c00453{left:465.638003px;}
.x77_c00453{left:468.081672px;}
.x9b_c00453{left:469.626000px;}
.xa5_c00453{left:471.960000px;}
.xb7_c00453{left:478.440000px;}
.x92_c00453{left:481.410000px;}
.xad_c00453{left:483.300000px;}
.x8b_c00453{left:485.086500px;}
.x8e_c00453{left:486.165502px;}
.x9c_c00453{left:487.497000px;}
.x9_c00453{left:489.423000px;}
.x98_c00453{left:494.539500px;}
.xb1_c00453{left:497.880000px;}
.x80_c00453{left:499.476708px;}
.x21_c00453{left:501.686052px;}
.x78_c00453{left:503.242800px;}
.xb8_c00453{left:504.360000px;}
.x71_c00453{left:505.448652px;}
.xc4_c00453{left:507.060000px;}
.xbb_c00453{left:508.950000px;}
.xbf_c00453{left:518.130000px;}
.x93_c00453{left:519.480000px;}
.xae_c00453{left:524.070000px;}
.x99_c00453{left:525.580500px;}
.x22_c00453{left:528.688440px;}
.x72_c00453{left:530.024268px;}
.xb4_c00453{left:531.090000px;}
.xa0_c00453{left:532.170000px;}
.x94_c00453{left:535.410000px;}
.xbc_c00453{left:539.730000px;}
.xa6_c00453{left:541.890000px;}
.x9d_c00453{left:545.013000px;}
.x8f_c00453{left:549.780503px;}
.xaa_c00453{left:552.420000px;}
.xa1_c00453{left:556.740000px;}
.xa3_c00453{left:558.630000px;}
.xa7_c00453{left:560.250000px;}
.xb2_c00453{left:561.330000px;}
.xaf_c00453{left:562.950000px;}
.x73_c00453{left:571.171620px;}
.xc2_c00453{left:572.940000px;}
.x9e_c00453{left:574.182000px;}
.xab_c00453{left:580.770000px;}
.x95_c00453{left:582.120000px;}
.xa2_c00453{left:584.280000px;}
.x9a_c00453{left:586.555500px;}
.xbd_c00453{left:592.920000px;}
.xa4_c00453{left:598.590000px;}
.xb5_c00453{left:601.020000px;}
.xb9_c00453{left:603.720000px;}
.x90_c00453{left:605.340000px;}
.xc0_c00453{left:606.690000px;}
.xb3_c00453{left:609.120000px;}
.xa8_c00453{left:611.550000px;}
.x96_c00453{left:614.520000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs16_c00453{font-size:19.600000pt;}
.fs1a_c00453{font-size:39.200000pt;}
.fsd_c00453{font-size:41.066667pt;}
.fs7_c00453{font-size:42.000000pt;}
.fsa_c00453{font-size:42.933333pt;}
.fsb_c00453{font-size:43.866667pt;}
.fsc_c00453{font-size:44.800000pt;}
.fs18_c00453{font-size:44.804390pt;}
.fs17_c00453{font-size:45.733333pt;}
.fs9_c00453{font-size:46.666667pt;}
.fs8_c00453{font-size:47.600000pt;}
.fs19_c00453{font-size:48.533333pt;}
.fs6_c00453{font-size:51.333333pt;}
.fs0_c00453{font-size:56.004032pt;}
.fs5_c00453{font-size:56.933333pt;}
.fs12_c00453{font-size:56.937432pt;}
.fs14_c00453{font-size:58.803557pt;}
.fs4_c00453{font-size:59.737634pt;}
.fs1_c00453{font-size:60.671035pt;}
.fs3_c00453{font-size:61.604435pt;}
.fsf_c00453{font-size:61.607884pt;}
.fs15_c00453{font-size:62.533333pt;}
.fse_c00453{font-size:62.541337pt;}
.fs10_c00453{font-size:63.474790pt;}
.fs13_c00453{font-size:64.403896pt;}
.fs11_c00453{font-size:64.408243pt;}
.fs2_c00453{font-size:66.271438pt;}
.y0_c00453{bottom:0.000000pt;}
.y3c_c00453{bottom:158.400000pt;}
.ya5_c00453{bottom:158.840000pt;}
.y3b_c00453{bottom:174.140000pt;}
.ya4_c00453{bottom:174.921333pt;}
.y3a_c00453{bottom:189.972000pt;}
.ya3_c00453{bottom:190.821333pt;}
.y39_c00453{bottom:205.278667pt;}
.ya2_c00453{bottom:206.709333pt;}
.y38_c00453{bottom:221.568000pt;}
.ya1_c00453{bottom:222.520000pt;}
.y37_c00453{bottom:237.158667pt;}
.ya0_c00453{bottom:238.210667pt;}
.y36_c00453{bottom:253.482667pt;}
.y9f_c00453{bottom:253.642667pt;}
.y35_c00453{bottom:269.202667pt;}
.y9e_c00453{bottom:270.682667pt;}
.y33_c00453{bottom:285.020000pt;}
.y9d_c00453{bottom:286.750667pt;}
.y32_c00453{bottom:300.844000pt;}
.y34_c00453{bottom:301.077333pt;}
.y9c_c00453{bottom:302.833333pt;}
.y31_c00453{bottom:316.902667pt;}
.y9b_c00453{bottom:318.876000pt;}
.y30_c00453{bottom:333.120000pt;}
.y9a_c00453{bottom:334.998667pt;}
.y2f_c00453{bottom:348.998667pt;}
.y99_c00453{bottom:351.008000pt;}
.y2e_c00453{bottom:364.916000pt;}
.y98_c00453{bottom:367.116000pt;}
.y2d_c00453{bottom:380.957333pt;}
.y91_c00453{bottom:381.601333pt;}
.y92_c00453{bottom:382.084613pt;}
.y93_c00453{bottom:382.384101pt;}
.y94_c00453{bottom:382.625629pt;}
.y95_c00453{bottom:382.848024pt;}
.y96_c00453{bottom:383.563779pt;}
.y97_c00453{bottom:383.926771pt;}
.y2c_c00453{bottom:396.998667pt;}
.y89_c00453{bottom:397.202667pt;}
.y8a_c00453{bottom:398.084000pt;}
.y8b_c00453{bottom:398.276000pt;}
.y8c_c00453{bottom:398.729333pt;}
.y8d_c00453{bottom:399.198667pt;}
.y8e_c00453{bottom:399.876000pt;}
.y8f_c00453{bottom:400.120000pt;}
.y90_c00453{bottom:400.418667pt;}
.y88_c00453{bottom:406.410667pt;}
.y2b_c00453{bottom:412.949333pt;}
.y87_c00453{bottom:415.213333pt;}
.y86_c00453{bottom:461.280000pt;}
.y20_c00453{bottom:481.984480pt;}
.y22_c00453{bottom:481.985019pt;}
.y21_c00453{bottom:481.985104pt;}
.y24_c00453{bottom:481.985152pt;}
.y29_c00453{bottom:481.985275pt;}
.y28_c00453{bottom:481.985291pt;}
.y23_c00453{bottom:481.985307pt;}
.y27_c00453{bottom:481.985589pt;}
.y25_c00453{bottom:481.985813pt;}
.y26_c00453{bottom:481.985888pt;}
.y2a_c00453{bottom:501.741333pt;}
.y1f_c00453{bottom:502.225051pt;}
.y1d_c00453{bottom:502.225184pt;}
.y1c_c00453{bottom:502.225253pt;}
.y1e_c00453{bottom:502.225509pt;}
.y13_c00453{bottom:522.687136pt;}
.y15_c00453{bottom:522.687445pt;}
.y16_c00453{bottom:522.687483pt;}
.y14_c00453{bottom:522.687531pt;}
.y17_c00453{bottom:522.687648pt;}
.y1a_c00453{bottom:522.688117pt;}
.y18_c00453{bottom:522.688165pt;}
.y1b_c00453{bottom:522.688229pt;}
.y19_c00453{bottom:522.688240pt;}
.y12_c00453{bottom:542.712848pt;}
.yf_c00453{bottom:542.713035pt;}
.yd_c00453{bottom:542.713243pt;}
.y10_c00453{bottom:542.713376pt;}
.y11_c00453{bottom:542.713467pt;}
.ya_c00453{bottom:542.713627pt;}
.ye_c00453{bottom:542.713637pt;}
.yc_c00453{bottom:542.713845pt;}
.yb_c00453{bottom:542.714197pt;}
.y1_c00453{bottom:561.361333pt;}
.y2_c00453{bottom:561.819221pt;}
.y3_c00453{bottom:562.292613pt;}
.y4_c00453{bottom:562.500517pt;}
.y5_c00453{bottom:562.801381pt;}
.y6_c00453{bottom:563.194805pt;}
.y7_c00453{bottom:563.354469pt;}
.y8_c00453{bottom:563.903637pt;}
.y9_c00453{bottom:564.685077pt;}
.y7b_c00453{bottom:602.160739pt;}
.y7c_c00453{bottom:602.698111pt;}
.y7d_c00453{bottom:602.817219pt;}
.y7e_c00453{bottom:602.979065pt;}
.y7f_c00453{bottom:603.706855pt;}
.y80_c00453{bottom:604.042340pt;}
.y81_c00453{bottom:604.409505pt;}
.y82_c00453{bottom:604.625589pt;}
.y83_c00453{bottom:604.971840pt;}
.y84_c00453{bottom:605.172553pt;}
.y85_c00453{bottom:605.794567pt;}
.y71_c00453{bottom:622.801333pt;}
.y72_c00453{bottom:623.336725pt;}
.y73_c00453{bottom:623.659304pt;}
.y74_c00453{bottom:623.909620pt;}
.y75_c00453{bottom:624.200548pt;}
.y76_c00453{bottom:624.630487pt;}
.y77_c00453{bottom:625.031708pt;}
.y78_c00453{bottom:625.280381pt;}
.y79_c00453{bottom:625.811168pt;}
.y7a_c00453{bottom:625.993313pt;}
.y6b_c00453{bottom:642.721333pt;}
.y6c_c00453{bottom:643.288101pt;}
.y6d_c00453{bottom:643.717189pt;}
.y6e_c00453{bottom:644.469637pt;}
.y6f_c00453{bottom:645.013365pt;}
.y70_c00453{bottom:645.471909pt;}
.y64_c00453{bottom:662.629301pt;}
.y65_c00453{bottom:663.324373pt;}
.y66_c00453{bottom:663.828416pt;}
.y67_c00453{bottom:664.064075pt;}
.y68_c00453{bottom:664.736203pt;}
.y69_c00453{bottom:665.737792pt;}
.y6a_c00453{bottom:666.033600pt;}
.y5b_c00453{bottom:683.271968pt;}
.y5c_c00453{bottom:683.635467pt;}
.y5d_c00453{bottom:683.920480pt;}
.y5e_c00453{bottom:684.485899pt;}
.y5f_c00453{bottom:684.861312pt;}
.y60_c00453{bottom:685.717621pt;}
.y61_c00453{bottom:686.235339pt;}
.y62_c00453{bottom:687.024427pt;}
.y63_c00453{bottom:687.538923pt;}
.y51_c00453{bottom:703.436416pt;}
.y52_c00453{bottom:703.888629pt;}
.y53_c00453{bottom:704.229557pt;}
.y54_c00453{bottom:704.824203pt;}
.y55_c00453{bottom:705.344736pt;}
.y56_c00453{bottom:705.979765pt;}
.y57_c00453{bottom:706.264960pt;}
.y58_c00453{bottom:707.016181pt;}
.y59_c00453{bottom:707.453568pt;}
.y5a_c00453{bottom:707.773205pt;}
.y48_c00453{bottom:723.120416pt;}
.y49_c00453{bottom:723.692373pt;}
.y4a_c00453{bottom:724.022987pt;}
.y4b_c00453{bottom:725.010997pt;}
.y4c_c00453{bottom:726.390379pt;}
.y4d_c00453{bottom:726.888192pt;}
.y4e_c00453{bottom:728.026197pt;}
.y4f_c00453{bottom:728.397056pt;}
.y50_c00453{bottom:729.018272pt;}
.y3d_c00453{bottom:744.482667pt;}
.y3e_c00453{bottom:744.978091pt;}
.y3f_c00453{bottom:745.292992pt;}
.y40_c00453{bottom:745.695339pt;}
.y41_c00453{bottom:746.183147pt;}
.y42_c00453{bottom:746.645056pt;}
.y43_c00453{bottom:746.933205pt;}
.y44_c00453{bottom:747.417045pt;}
.y45_c00453{bottom:747.861504pt;}
.y46_c00453{bottom:748.357909pt;}
.y47_c00453{bottom:748.880213pt;}
.h18_c00453{height:19.600000pt;}
.h1c_c00453{height:39.200000pt;}
.hf_c00453{height:41.066667pt;}
.h9_c00453{height:42.000000pt;}
.hc_c00453{height:42.933333pt;}
.hd_c00453{height:43.866667pt;}
.he_c00453{height:44.800000pt;}
.h1a_c00453{height:44.804390pt;}
.h19_c00453{height:45.733333pt;}
.hb_c00453{height:46.666667pt;}
.ha_c00453{height:47.600000pt;}
.h1b_c00453{height:48.533333pt;}
.h8_c00453{height:51.333333pt;}
.h2_c00453{height:56.004032pt;}
.h7_c00453{height:56.933333pt;}
.h14_c00453{height:56.937432pt;}
.h16_c00453{height:58.803557pt;}
.h6_c00453{height:59.737634pt;}
.h3_c00453{height:60.671035pt;}
.h5_c00453{height:61.604435pt;}
.h11_c00453{height:61.607884pt;}
.h17_c00453{height:62.533333pt;}
.h10_c00453{height:62.541337pt;}
.h12_c00453{height:63.474790pt;}
.h15_c00453{height:64.403896pt;}
.h13_c00453{height:64.408243pt;}
.h4_c00453{height:66.271438pt;}
.h0_c00453{height:896.400000pt;}
.h1_c00453{height:896.666667pt;}
.w1_c00453{width:612.666667pt;}
.w0_c00453{width:612.933333pt;}
.x0_c00453{left:0.000000pt;}
.x57_c00453{left:115.680000pt;}
.x5a_c00453{left:116.640000pt;}
.x52_c00453{left:119.280000pt;}
.x5d_c00453{left:121.200000pt;}
.x48_c00453{left:123.360000pt;}
.x49_c00453{left:124.320000pt;}
.x2f_c00453{left:125.280000pt;}
.x5f_c00453{left:126.240000pt;}
.x63_c00453{left:133.440000pt;}
.x26_c00453{left:137.040000pt;}
.x3f_c00453{left:139.200000pt;}
.x43_c00453{left:140.640000pt;}
.x38_c00453{left:147.120000pt;}
.x27_c00453{left:150.480000pt;}
.x44_c00453{left:151.440000pt;}
.x30_c00453{left:152.400000pt;}
.x55_c00453{left:154.320000pt;}
.x1a_c00453{left:156.722859pt;}
.x1_c00453{left:158.064000pt;}
.x81_c00453{left:159.036821pt;}
.x5b_c00453{left:160.320000pt;}
.x64_c00453{left:162.720000pt;}
.x60_c00453{left:163.920000pt;}
.x12_c00453{left:165.123707pt;}
.x39_c00453{left:166.080000pt;}
.x28_c00453{left:169.680000pt;}
.x34_c00453{left:170.880000pt;}
.x31_c00453{left:171.840000pt;}
.x4b_c00453{left:174.960000pt;}
.xa_c00453{left:177.362512pt;}
.x5c_c00453{left:178.800000pt;}
.x65_c00453{left:180.480000pt;}
.x1b_c00453{left:181.445077pt;}
.x79_c00453{left:183.759136pt;}
.x5e_c00453{left:186.960000pt;}
.x29_c00453{left:190.320000pt;}
.x66_c00453{left:191.944000pt;}
.x45_c00453{left:192.960000pt;}
.x4a_c00453{left:195.120000pt;}
.x2_c00453{left:196.221333pt;}
.x3a_c00453{left:201.120000pt;}
.x7a_c00453{left:202.739435pt;}
.x56_c00453{left:204.960000pt;}
.x86_c00453{left:206.737333pt;}
.x2a_c00453{left:209.520000pt;}
.x67_c00453{left:211.625333pt;}
.x1c_c00453{left:212.886939pt;}
.x6e_c00453{left:213.840800pt;}
.x50_c00453{left:215.040000pt;}
.x23_c00453{left:217.200000pt;}
.x35_c00453{left:218.640000pt;}
.xb_c00453{left:222.006277pt;}
.x53_c00453{left:225.840000pt;}
.x40_c00453{left:226.800000pt;}
.x36_c00453{left:231.120000pt;}
.x58_c00453{left:232.080000pt;}
.x13_c00453{left:233.048149pt;}
.x3_c00453{left:235.670667pt;}
.x68_c00453{left:236.772000pt;}
.x3b_c00453{left:237.840000pt;}
.x32_c00453{left:239.520000pt;}
.x7b_c00453{left:240.412032pt;}
.x4c_c00453{left:242.640000pt;}
.xc_c00453{left:243.848096pt;}
.x1d_c00453{left:246.249072pt;}
.x2b_c00453{left:248.160000pt;}
.x14_c00453{left:249.609200pt;}
.x3c_c00453{left:250.800000pt;}
.x4_c00453{left:252.996000pt;}
.x2c_c00453{left:257.040000pt;}
.x89_c00453{left:258.320000pt;}
.x74_c00453{left:259.402229pt;}
.x82_c00453{left:261.546773pt;}
.x7c_c00453{left:265.459104pt;}
.x69_c00453{left:267.260000pt;}
.x37_c00453{left:268.800000pt;}
.x2d_c00453{left:272.400000pt;}
.x24_c00453{left:274.560000pt;}
.x61_c00453{left:275.520000pt;}
.x3d_c00453{left:276.480000pt;}
.x5_c00453{left:278.068000pt;}
.xd_c00453{left:280.330677pt;}
.x46_c00453{left:282.240000pt;}
.x19_c00453{left:283.451584pt;}
.x51_c00453{left:284.880000pt;}
.x41_c00453{left:285.840000pt;}
.x25_c00453{left:287.520000pt;}
.x3e_c00453{left:289.200000pt;}
.x59_c00453{left:291.360000pt;}
.x62_c00453{left:293.040000pt;}
.x42_c00453{left:295.200000pt;}
.x6a_c00453{left:296.129333pt;}
.x15_c00453{left:297.852144pt;}
.x4d_c00453{left:299.280000pt;}
.xe_c00453{left:302.172496pt;}
.x54_c00453{left:303.360000pt;}
.x33_c00453{left:306.000000pt;}
.x4f_c00453{left:307.200000pt;}
.x47_c00453{left:308.400000pt;}
.x83_c00453{left:309.556309pt;}
.x6_c00453{left:310.853333pt;}
.x4e_c00453{left:312.480000pt;}
.x6b_c00453{left:314.138667pt;}
.x2e_c00453{left:315.360000pt;}
.x16_c00453{left:319.453915pt;}
.x7d_c00453{left:322.562688pt;}
.x7_c00453{left:324.158667pt;}
.x8c_c00453{left:329.400447pt;}
.x1e_c00453{left:332.414805pt;}
.xf_c00453{left:340.095285pt;}
.x75_c00453{left:341.960875pt;}
.x6c_c00453{left:344.378667pt;}
.x9f_c00453{left:348.720000pt;}
.x87_c00453{left:350.509333pt;}
.x6f_c00453{left:353.050560pt;}
.x7e_c00453{left:357.087243pt;}
.x8a_c00453{left:360.328000pt;}
.x76_c00453{left:362.369536pt;}
.x17_c00453{left:364.577744pt;}
.x10_c00453{left:367.217856pt;}
.xc3_c00453{left:368.640000pt;}
.x8_c00453{left:369.922667pt;}
.x1f_c00453{left:371.537771pt;}
.xac_c00453{left:378.000000pt;}
.x18_c00453{left:379.458555pt;}
.x84_c00453{left:381.074592pt;}
.x70_c00453{left:382.330091pt;}
.xb0_c00453{left:384.240000pt;}
.x88_c00453{left:388.721333pt;}
.xa9_c00453{left:390.000000pt;}
.xb6_c00453{left:396.000000pt;}
.x11_c00453{left:401.060069pt;}
.x85_c00453{left:402.229941pt;}
.x6d_c00453{left:403.182667pt;}
.xba_c00453{left:405.360000pt;}
.xbe_c00453{left:406.320000pt;}
.x20_c00453{left:408.740464pt;}
.x7f_c00453{left:409.656075pt;}
.xc1_c00453{left:410.640000pt;}
.x91_c00453{left:411.600000pt;}
.x97_c00453{left:412.937333pt;}
.x8d_c00453{left:413.900447pt;}
.x77_c00453{left:416.072597pt;}
.x9b_c00453{left:417.445333pt;}
.xa5_c00453{left:419.520000pt;}
.xb7_c00453{left:425.280000pt;}
.x92_c00453{left:427.920000pt;}
.xad_c00453{left:429.600000pt;}
.x8b_c00453{left:431.188000pt;}
.x8e_c00453{left:432.147113pt;}
.x9c_c00453{left:433.330667pt;}
.x9_c00453{left:435.042667pt;}
.x98_c00453{left:439.590667pt;}
.xb1_c00453{left:442.560000pt;}
.x80_c00453{left:443.979296pt;}
.x21_c00453{left:445.943157pt;}
.x78_c00453{left:447.326933pt;}
.xb8_c00453{left:448.320000pt;}
.x71_c00453{left:449.287691pt;}
.xc4_c00453{left:450.720000pt;}
.xbb_c00453{left:452.400000pt;}
.xbf_c00453{left:460.560000pt;}
.x93_c00453{left:461.760000pt;}
.xae_c00453{left:465.840000pt;}
.x99_c00453{left:467.182667pt;}
.x22_c00453{left:469.945280pt;}
.x72_c00453{left:471.132683pt;}
.xb4_c00453{left:472.080000pt;}
.xa0_c00453{left:473.040000pt;}
.x94_c00453{left:475.920000pt;}
.xbc_c00453{left:479.760000pt;}
.xa6_c00453{left:481.680000pt;}
.x9d_c00453{left:484.456000pt;}
.x8f_c00453{left:488.693780pt;}
.xaa_c00453{left:491.040000pt;}
.xa1_c00453{left:494.880000pt;}
.xa3_c00453{left:496.560000pt;}
.xa7_c00453{left:498.000000pt;}
.xb2_c00453{left:498.960000pt;}
.xaf_c00453{left:500.400000pt;}
.x73_c00453{left:507.708107pt;}
.xc2_c00453{left:509.280000pt;}
.x9e_c00453{left:510.384000pt;}
.xab_c00453{left:516.240000pt;}
.x95_c00453{left:517.440000pt;}
.xa2_c00453{left:519.360000pt;}
.x9a_c00453{left:521.382667pt;}
.xbd_c00453{left:527.040000pt;}
.xa4_c00453{left:532.080000pt;}
.xb5_c00453{left:534.240000pt;}
.xb9_c00453{left:536.640000pt;}
.x90_c00453{left:538.080000pt;}
.xc0_c00453{left:539.280000pt;}
.xb3_c00453{left:541.440000pt;}
.xa8_c00453{left:543.600000pt;}
.x96_c00453{left:546.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_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;}
.m51_c00454{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);}
.mb8_c00454{transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.024695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024695,0.000000,0.000000,0.250000,0,0);}
.m85_c00454{transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031890,0.000000,0.000000,0.250000,0,0);}
.mec_c00454{transform:matrix(0.051095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051095,0.000000,0.000000,0.250000,0,0);}
.m100_c00454{transform:matrix(0.082300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082300,0.000000,0.000000,0.250000,0,0);}
.m59_c00454{transform:matrix(0.113520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113520,0.000000,0.000000,0.250000,0,0);}
.m58_c00454{transform:matrix(0.116870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116870,0.000000,0.000000,0.250000,0,0);}
.m5f_c00454{transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117615,0.000000,0.000000,0.250000,0,0);}
.m5a_c00454{transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124390,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);}
.mf8_c00454{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);}
.m1e_c00454{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00454{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{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);}
.mf2_c00454{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);}
.mf7_c00454{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);}
.mfe_c00454{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{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);}
.m29_c00454{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);}
.me3_c00454{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);}
.m3d_c00454{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);}
.m23_c00454{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);}
.m9f_c00454{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);}
.me9_c00454{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);}
.m34_c00454{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.me2_c00454{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.mb6_c00454{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.me8_c00454{transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169590,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169645,0.000000,0.000000,0.250000,0,0);}
.meb_c00454{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);}
.m18_c00454{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);}
.m2b_c00454{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);}
.md1_c00454{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);}
.m109_c00454{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);}
.m3e_c00454{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);}
.mcf_c00454{transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);}
.m9c_c00454{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);}
.m32_c00454{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);}
.mf6_c00454{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);}
.mf4_c00454{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);}
.md3_c00454{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);}
.mbc_c00454{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);}
.m1d_c00454{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);}
.mc_c00454{transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);}
.maa_c00454{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);}
.md5_c00454{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);}
.mea_c00454{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);}
.m4b_c00454{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);}
.m70_c00454{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);}
.m10_c00454{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);}
.mb2_c00454{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);}
.mf5_c00454{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);}
.mc8_c00454{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);}
.m66_c00454{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);}
.ma7_c00454{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);}
.ma0_c00454{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);}
.m96_c00454{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);}
.m13_c00454{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);}
.mac_c00454{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);}
.m50_c00454{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);}
.m31_c00454{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);}
.me4_c00454{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);}
.m4c_c00454{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);}
.m9d_c00454{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);}
.me1_c00454{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);}
.ma2_c00454{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);}
.m2f_c00454{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);}
.m3a_c00454{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);}
.m5_c00454{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);}
.m20_c00454{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);}
.m7c_c00454{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);}
.m63_c00454{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_c00454{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);}
.m61_c00454{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);}
.m17_c00454{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);}
.m99_c00454{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);}
.md7_c00454{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);}
.m21_c00454{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);}
.mcd_c00454{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);}
.m56_c00454{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);}
.mce_c00454{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);}
.ma3_c00454{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);}
.ma9_c00454{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);}
.m6b_c00454{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);}
.mb3_c00454{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);}
.mde_c00454{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);}
.mfd_c00454{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);}
.m7d_c00454{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);}
.m19_c00454{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);}
.md4_c00454{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);}
.m2c_c00454{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);}
.mef_c00454{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);}
.m5e_c00454{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);}
.m71_c00454{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);}
.m6d_c00454{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);}
.mbe_c00454{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_c00454{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);}
.md8_c00454{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);}
.m1f_c00454{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);}
.m9a_c00454{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);}
.m65_c00454{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);}
.m8e_c00454{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);}
.m78_c00454{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);}
.mc0_c00454{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);}
.mdd_c00454{transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);}
.mc6_c00454{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);}
.m93_c00454{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);}
.me0_c00454{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);}
.m80_c00454{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);}
.m2d_c00454{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);}
.m89_c00454{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);}
.m16_c00454{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);}
.m28_c00454{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);}
.m7b_c00454{transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);}
.mb0_c00454{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);}
.m6f_c00454{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);}
.m25_c00454{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);}
.mda_c00454{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);}
.m64_c00454{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);}
.mf9_c00454{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);}
.m7a_c00454{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);}
.m33_c00454{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);}
.m8d_c00454{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);}
.m55_c00454{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);}
.mca_c00454{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.m2a_c00454{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{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);}
.m107_c00454{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);}
.m3b_c00454{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);}
.m30_c00454{transform:matrix(0.212195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212195,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{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);}
.m4d_c00454{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);}
.m76_c00454{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);}
.md2_c00454{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);}
.m82_c00454{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);}
.m49_c00454{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);}
.m108_c00454{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);}
.m98_c00454{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);}
.m102_c00454{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);}
.m91_c00454{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);}
.m36_c00454{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);}
.m79_c00454{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);}
.m37_c00454{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);}
.m87_c00454{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);}
.me6_c00454{transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);}
.mdc_c00454{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);}
.mf0_c00454{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);}
.m106_c00454{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);}
.md9_c00454{transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218845,0.000000,0.000000,0.250000,0,0);}
.m4e_c00454{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);}
.m84_c00454{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);}
.m97_c00454{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);}
.mc5_c00454{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.ma5_c00454{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);}
.m54_c00454{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);}
.m88_c00454{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);}
.m45_c00454{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);}
.m15_c00454{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);}
.m67_c00454{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);}
.mb1_c00454{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);}
.m77_c00454{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);}
.mb9_c00454{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);}
.m26_c00454{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);}
.mab_c00454{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);}
.m94_c00454{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);}
.m68_c00454{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);}
.mc4_c00454{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.mad_c00454{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);}
.m44_c00454{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);}
.m62_c00454{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);}
.mc7_c00454{transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{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);}
.mf1_c00454{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);}
.m8a_c00454{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);}
.mbf_c00454{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);}
.m27_c00454{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);}
.med_c00454{transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{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);}
.mc1_c00454{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m60_c00454{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.mdb_c00454{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.mb5_c00454{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);}
.m75_c00454{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);}
.m6c_c00454{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m6e_c00454{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);}
.m53_c00454{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);}
.m9e_c00454{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);}
.m1a_c00454{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);}
.mbb_c00454{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);}
.mbd_c00454{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.m24_c00454{transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241655,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{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);}
.ma1_c00454{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);}
.ma_c00454{transform:matrix(0.245362,0.007606,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245362,0.007606,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245362,0.007606,-0.007746,0.249880,0,0);}
.mb_c00454{transform:matrix(0.245777,0.007619,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245777,0.007619,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245777,0.007619,-0.007746,0.249880,0,0);}
.md0_c00454{transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245895,0.000000,0.000000,0.250000,0,0);}
.m7e_c00454{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);}
.m69_c00454{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);}
.m95_c00454{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00454{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{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);}
.m10e_c00454{transform:matrix(0.255927,-0.023126,0.022499,0.248986,0,0);-ms-transform:matrix(0.255927,-0.023126,0.022499,0.248986,0,0);-webkit-transform:matrix(0.255927,-0.023126,0.022499,0.248986,0,0);}
.mdf_c00454{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.mcb_c00454{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.257436,0.007981,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257436,0.007981,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257436,0.007981,-0.007746,0.249880,0,0);}
.md6_c00454{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);}
.m12_c00454{transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258865,0.000000,0.000000,0.250000,0,0);}
.m10a_c00454{transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260510,0.000000,0.000000,0.250000,0,0);}
.m22_c00454{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.m86_c00454{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);}
.mc3_c00454{transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264815,0.000000,0.000000,0.250000,0,0);}
.m92_c00454{transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265440,0.000000,0.000000,0.250000,0,0);}
.m5d_c00454{transform:matrix(0.265765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265765,0.000000,0.000000,0.250000,0,0);}
.m104_c00454{transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);}
.me5_c00454{transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267330,0.000000,0.000000,0.250000,0,0);}
.m83_c00454{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);}
.m0_c00454{transform:matrix(0.268911,0.008336,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268911,0.008336,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268911,0.008336,-0.007746,0.249880,0,0);}
.m1b_c00454{transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00454{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);}
.mb4_c00454{transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273090,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276560,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.278316,0.008628,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278316,0.008628,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278316,0.008628,-0.007746,0.249880,0,0);}
.m41_c00454{transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);}
.m5b_c00454{transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285555,0.000000,0.000000,0.250000,0,0);}
.m105_c00454{transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);}
.m35_c00454{transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);}
.m6a_c00454{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.m101_c00454{transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);}
.m90_c00454{transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);}
.me7_c00454{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.292714,0.009074,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292714,0.009074,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292714,0.009074,-0.007746,0.249880,0,0);}
.mba_c00454{transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);}
.mee_c00454{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);}
.mfa_c00454{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);}
.me_c00454{transform:matrix(0.314280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316975,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.317675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);}
.mcc_c00454{transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324560,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.325410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325410,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334285,0.000000,0.000000,0.250000,0,0);}
.mff_c00454{transform:matrix(0.350175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350175,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.352960,0.010942,-0.007746,0.249880,0,0);-ms-transform:matrix(0.352960,0.010942,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.352960,0.010942,-0.007746,0.249880,0,0);}
.mc9_c00454{transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355700,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);}
.m73_c00454{transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358730,0.000000,0.000000,0.250000,0,0);}
.m103_c00454{transform:matrix(0.361005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361005,0.000000,0.000000,0.250000,0,0);}
.mfc_c00454{transform:matrix(0.367240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367240,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.380165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380165,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.389925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389925,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.400658,0.012420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.400658,0.012420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.400658,0.012420,-0.007746,0.249880,0,0);}
.m10d_c00454{transform:matrix(0.405060,-0.036602,0.022499,0.248986,0,0);-ms-transform:matrix(0.405060,-0.036602,0.022499,0.248986,0,0);-webkit-transform:matrix(0.405060,-0.036602,0.022499,0.248986,0,0);}
.m9_c00454{transform:matrix(0.412137,0.012776,-0.007746,0.249880,0,0);-ms-transform:matrix(0.412137,0.012776,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.412137,0.012776,-0.007746,0.249880,0,0);}
.m10c_c00454{transform:matrix(0.412480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412480,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.436590,0.013534,-0.007746,0.249880,0,0);-ms-transform:matrix(0.436590,0.013534,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.436590,0.013534,-0.007746,0.249880,0,0);}
.m6_c00454{transform:matrix(0.448280,0.013897,-0.007746,0.249880,0,0);-ms-transform:matrix(0.448280,0.013897,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.448280,0.013897,-0.007746,0.249880,0,0);}
.m112_c00454{transform:matrix(0.474870,-0.042910,0.022499,0.248986,0,0);-ms-transform:matrix(0.474870,-0.042910,0.022499,0.248986,0,0);-webkit-transform:matrix(0.474870,-0.042910,0.022499,0.248986,0,0);}
.m39_c00454{transform:matrix(0.480220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480220,0.000000,0.000000,0.250000,0,0);}
.m10f_c00454{transform:matrix(0.493589,-0.044601,0.022499,0.248986,0,0);-ms-transform:matrix(0.493589,-0.044601,0.022499,0.248986,0,0);-webkit-transform:matrix(0.493589,-0.044601,0.022499,0.248986,0,0);}
.mfb_c00454{transform:matrix(0.504810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504810,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.514123,0.015938,-0.007746,0.249880,0,0);-ms-transform:matrix(0.514123,0.015938,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.514123,0.015938,-0.007746,0.249880,0,0);}
.m10b_c00454{transform:matrix(0.519035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519035,0.000000,0.000000,0.250000,0,0);}
.mb7_c00454{transform:matrix(0.543695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543695,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.634390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634390,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.635925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635925,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.655240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655240,0.000000,0.000000,0.250000,0,0);}
.m110_c00454{transform:matrix(0.763395,-0.068981,0.022499,0.248986,0,0);-ms-transform:matrix(0.763395,-0.068981,0.022499,0.248986,0,0);-webkit-transform:matrix(0.763395,-0.068981,0.022499,0.248986,0,0);}
.m40_c00454{transform:matrix(1.312295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.312295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.312295,0.000000,0.000000,0.250000,0,0);}
.m111_c00454{transform:matrix(1.415906,-0.127943,0.022499,0.248986,0,0);-ms-transform:matrix(1.415906,-0.127943,0.022499,0.248986,0,0);-webkit-transform:matrix(1.415906,-0.127943,0.022499,0.248986,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;}
.fsf_c00454{font-size:43.050000px;}
.fs14_c00454{font-size:44.102558px;}
.fs11_c00454{font-size:45.150000px;}
.fsa_c00454{font-size:47.250000px;}
.fs10_c00454{font-size:48.300000px;}
.fs13_c00454{font-size:49.350000px;}
.fs9_c00454{font-size:50.400000px;}
.fsc_c00454{font-size:51.450000px;}
.fsd_c00454{font-size:53.550000px;}
.fs12_c00454{font-size:54.600000px;}
.fse_c00454{font-size:55.650000px;}
.fsb_c00454{font-size:57.750000px;}
.fs7_c00454{font-size:63.000000px;}
.fs4_c00454{font-size:70.350000px;}
.fs3_c00454{font-size:71.400000px;}
.fs5_c00454{font-size:72.450000px;}
.fs6_c00454{font-size:75.600000px;}
.fs2_c00454{font-size:77.700000px;}
.fs8_c00454{font-size:100.800000px;}
.fs0_c00454{font-size:110.302962px;}
.fs1_c00454{font-size:116.605989px;}
.y0_c00454{bottom:0.000000px;}
.y51_c00454{bottom:143.785500px;}
.y52_c00454{bottom:146.458095px;}
.y53_c00454{bottom:152.418345px;}
.y54_c00454{bottom:156.616710px;}
.y55_c00454{bottom:157.873020px;}
.y56_c00454{bottom:164.134185px;}
.y50_c00454{bottom:172.660500px;}
.y44_c00454{bottom:208.311000px;}
.y43_c00454{bottom:226.285500px;}
.y42_c00454{bottom:244.194000px;}
.y4f_c00454{bottom:246.001500px;}
.y41_c00454{bottom:263.250000px;}
.y4e_c00454{bottom:263.790000px;}
.y40_c00454{bottom:280.669500px;}
.y4d_c00454{bottom:282.462000px;}
.y3f_c00454{bottom:298.507500px;}
.y4c_c00454{bottom:300.288000px;}
.y3e_c00454{bottom:316.068000px;}
.y4b_c00454{bottom:317.094000px;}
.y3d_c00454{bottom:334.162500px;}
.y4a_c00454{bottom:335.397000px;}
.y3c_c00454{bottom:352.083000px;}
.y49_c00454{bottom:352.774500px;}
.y3b_c00454{bottom:370.011000px;}
.y48_c00454{bottom:370.863000px;}
.y3a_c00454{bottom:388.147500px;}
.y47_c00454{bottom:388.756500px;}
.y39_c00454{bottom:406.296000px;}
.y46_c00454{bottom:406.990500px;}
.y38_c00454{bottom:423.403500px;}
.y45_c00454{bottom:425.080500px;}
.y37_c00454{bottom:439.848000px;}
.y30_c00454{bottom:642.870000px;}
.y31_c00454{bottom:643.870500px;}
.y32_c00454{bottom:644.311500px;}
.y33_c00454{bottom:644.748000px;}
.y34_c00454{bottom:645.037500px;}
.y35_c00454{bottom:645.294000px;}
.y36_c00454{bottom:645.751500px;}
.y2f_c00454{bottom:666.954000px;}
.y2e_c00454{bottom:688.815000px;}
.y22_c00454{bottom:734.104500px;}
.y23_c00454{bottom:734.350500px;}
.y24_c00454{bottom:734.896500px;}
.y25_c00454{bottom:734.959500px;}
.y26_c00454{bottom:735.168000px;}
.y27_c00454{bottom:735.372000px;}
.y28_c00454{bottom:735.663000px;}
.y29_c00454{bottom:736.095000px;}
.y2a_c00454{bottom:736.311000px;}
.y2b_c00454{bottom:736.558500px;}
.y2c_c00454{bottom:736.762500px;}
.y2d_c00454{bottom:736.950000px;}
.y1c_c00454{bottom:757.353000px;}
.y1d_c00454{bottom:757.786500px;}
.y1e_c00454{bottom:759.057000px;}
.y1f_c00454{bottom:759.802500px;}
.y20_c00454{bottom:759.990000px;}
.y21_c00454{bottom:760.302000px;}
.y1b_c00454{bottom:782.314500px;}
.y10_c00454{bottom:803.251500px;}
.y11_c00454{bottom:803.659500px;}
.y12_c00454{bottom:803.812500px;}
.y13_c00454{bottom:804.148500px;}
.y14_c00454{bottom:804.303000px;}
.y15_c00454{bottom:804.708000px;}
.y16_c00454{bottom:804.898500px;}
.y17_c00454{bottom:805.239000px;}
.y18_c00454{bottom:805.584000px;}
.y19_c00454{bottom:805.869000px;}
.y1a_c00454{bottom:806.100000px;}
.yf_c00454{bottom:829.261500px;}
.ye_c00454{bottom:876.558532px;}
.yd_c00454{bottom:877.127922px;}
.yc_c00454{bottom:878.020224px;}
.yb_c00454{bottom:878.699698px;}
.ya_c00454{bottom:878.989041px;}
.y9_c00454{bottom:879.301995px;}
.y8_c00454{bottom:879.634807px;}
.y7_c00454{bottom:879.985038px;}
.y6_c00454{bottom:880.474786px;}
.y5_c00454{bottom:925.099950px;}
.y4_c00454{bottom:928.613351px;}
.y2_c00454{bottom:936.032797px;}
.y3_c00454{bottom:936.080739px;}
.y1_c00454{bottom:939.082500px;}
.h11_c00454{height:43.050000px;}
.h16_c00454{height:44.102558px;}
.h13_c00454{height:45.150000px;}
.hc_c00454{height:47.250000px;}
.h12_c00454{height:48.300000px;}
.h15_c00454{height:49.350000px;}
.hb_c00454{height:50.400000px;}
.he_c00454{height:51.450000px;}
.hf_c00454{height:53.550000px;}
.h14_c00454{height:54.600000px;}
.h10_c00454{height:55.650000px;}
.hd_c00454{height:57.750000px;}
.h9_c00454{height:63.000000px;}
.h6_c00454{height:70.350000px;}
.h5_c00454{height:71.400000px;}
.h7_c00454{height:72.450000px;}
.h8_c00454{height:75.600000px;}
.h4_c00454{height:77.700000px;}
.ha_c00454{height:100.800000px;}
.h2_c00454{height:110.302962px;}
.h3_c00454{height:116.605989px;}
.h1_c00454{height:1005.000000px;}
.h0_c00454{height:1005.150000px;}
.w0_c00454{width:715.200000px;}
.w1_c00454{width:715.500000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:66.502500px;}
.x62_c00454{left:81.000000px;}
.x4f_c00454{left:84.780000px;}
.x52_c00454{left:86.940000px;}
.x9f_c00454{left:88.560000px;}
.x47_c00454{left:89.640000px;}
.x71_c00454{left:92.070000px;}
.x63_c00454{left:109.350000px;}
.xa1_c00454{left:110.871000px;}
.xa0_c00454{left:112.050000px;}
.x53_c00454{left:113.940000px;}
.x5d_c00454{left:118.260000px;}
.x48_c00454{left:120.420000px;}
.x2a_c00454{left:121.654500px;}
.xf_c00454{left:123.120000px;}
.x2e_c00454{left:124.863000px;}
.x22_c00454{left:126.363000px;}
.x41_c00454{left:127.606500px;}
.x54_c00454{left:132.030000px;}
.x59_c00454{left:133.380000px;}
.x49_c00454{left:136.350000px;}
.x64_c00454{left:137.970000px;}
.x6b_c00454{left:139.050000px;}
.xa2_c00454{left:140.447718px;}
.x6f_c00454{left:144.450000px;}
.x36_c00454{left:148.770000px;}
.x2f_c00454{left:152.137500px;}
.x10_c00454{left:154.170000px;}
.x4a_c00454{left:155.790000px;}
.x69_c00454{left:158.490000px;}
.x6_c00454{left:160.235896px;}
.x3_c00454{left:163.333500px;}
.x2_c00454{left:164.880000px;}
.x1a_c00454{left:169.437000px;}
.x23_c00454{left:171.183000px;}
.x5e_c00454{left:174.150000px;}
.x50_c00454{left:176.850000px;}
.x55_c00454{left:179.550000px;}
.x11_c00454{left:181.170000px;}
.x1b_c00454{left:186.390000px;}
.x5a_c00454{left:190.080000px;}
.x51_c00454{left:192.780000px;}
.x65_c00454{left:193.860000px;}
.x66_c00454{left:194.940000px;}
.x12_c00454{left:196.830000px;}
.x4b_c00454{left:203.040000px;}
.x7_c00454{left:204.706925px;}
.x6a_c00454{left:206.820000px;}
.x6c_c00454{left:208.980000px;}
.x56_c00454{left:210.330000px;}
.x30_c00454{left:212.863500px;}
.x3d_c00454{left:215.730000px;}
.x42_c00454{left:218.532000px;}
.x31_c00454{left:219.877500px;}
.x5b_c00454{left:223.020000px;}
.x13_c00454{left:224.370000px;}
.x5f_c00454{left:226.530000px;}
.x4c_c00454{left:228.960000px;}
.x60_c00454{left:230.310000px;}
.x24_c00454{left:234.093000px;}
.x8_c00454{left:236.492094px;}
.x37_c00454{left:238.680000px;}
.x3e_c00454{left:239.760000px;}
.x1c_c00454{left:240.972000px;}
.x32_c00454{left:243.097500px;}
.x67_c00454{left:246.240000px;}
.x6d_c00454{left:250.830000px;}
.x4d_c00454{left:252.180000px;}
.x57_c00454{left:255.690000px;}
.x70_c00454{left:257.040000px;}
.x43_c00454{left:258.561000px;}
.x14_c00454{left:262.710000px;}
.x6e_c00454{left:264.870000px;}
.x9_c00454{left:266.698287px;}
.x5c_c00454{left:268.110000px;}
.x61_c00454{left:271.080000px;}
.x4e_c00454{left:273.510000px;}
.x2b_c00454{left:276.652500px;}
.x58_c00454{left:278.100000px;}
.x1d_c00454{left:286.020000px;}
.x38_c00454{left:293.760000px;}
.xa_c00454{left:295.149910px;}
.x33_c00454{left:298.231500px;}
.x15_c00454{left:301.050000px;}
.x3f_c00454{left:303.210000px;}
.x68_c00454{left:304.830000px;}
.x25_c00454{left:305.913000px;}
.x1e_c00454{left:307.125000px;}
.x26_c00454{left:319.953000px;}
.xb_c00454{left:321.483732px;}
.x40_c00454{left:325.350000px;}
.x87_c00454{left:333.180000px;}
.x7e_c00454{left:334.260000px;}
.x81_c00454{left:335.340000px;}
.x16_c00454{left:336.690000px;}
.x8c_c00454{left:338.580000px;}
.x95_c00454{left:339.930000px;}
.x78_c00454{left:341.550000px;}
.x1f_c00454{left:344.934000px;}
.x34_c00454{left:346.281000px;}
.x27_c00454{left:348.303000px;}
.x99_c00454{left:351.540000px;}
.x2c_c00454{left:361.426500px;}
.x72_c00454{left:362.610000px;}
.x8d_c00454{left:365.310000px;}
.x39_c00454{left:367.200000px;}
.x9c_c00454{left:368.820000px;}
.x17_c00454{left:370.170000px;}
.x73_c00454{left:372.870000px;}
.x82_c00454{left:374.760000px;}
.xc_c00454{left:383.311548px;}
.x2d_c00454{left:389.773500px;}
.x79_c00454{left:392.040000px;}
.x96_c00454{left:396.630000px;}
.x18_c00454{left:398.520000px;}
.x7f_c00454{left:400.950000px;}
.x3a_c00454{left:402.840000px;}
.x4_c00454{left:404.217000px;}
.x28_c00454{left:406.083000px;}
.x88_c00454{left:409.050000px;}
.x20_c00454{left:414.849000px;}
.x9d_c00454{left:417.420000px;}
.x35_c00454{left:420.520500px;}
.x29_c00454{left:426.333000px;}
.x83_c00454{left:429.300000px;}
.x8e_c00454{left:430.650000px;}
.x74_c00454{left:434.160000px;}
.x9a_c00454{left:436.320000px;}
.x21_c00454{left:440.497500px;}
.x80_c00454{left:441.990000px;}
.x19_c00454{left:443.880000px;}
.x91_c00454{left:449.280000px;}
.x89_c00454{left:450.630000px;}
.x3b_c00454{left:452.790000px;}
.x7a_c00454{left:453.870000px;}
.x97_c00454{left:461.970000px;}
.xd_c00454{left:464.403768px;}
.x44_c00454{left:466.290000px;}
.x8f_c00454{left:468.990000px;}
.x92_c00454{left:471.420000px;}
.x75_c00454{left:474.390000px;}
.x8a_c00454{left:479.250000px;}
.x9b_c00454{left:488.160000px;}
.x84_c00454{left:492.750000px;}
.x7b_c00454{left:497.340000px;}
.x45_c00454{left:498.420000px;}
.x76_c00454{left:503.820000px;}
.x98_c00454{left:508.680000px;}
.x7c_c00454{left:510.840000px;}
.x3c_c00454{left:514.080000px;}
.xe_c00454{left:516.190353px;}
.x5_c00454{left:517.552500px;}
.x90_c00454{left:521.910000px;}
.x85_c00454{left:524.070000px;}
.x93_c00454{left:525.150000px;}
.x46_c00454{left:535.140000px;}
.x8b_c00454{left:536.220000px;}
.x77_c00454{left:541.350000px;}
.x7d_c00454{left:545.130000px;}
.x86_c00454{left:551.610000px;}
.x94_c00454{left:552.960000px;}
.x9e_c00454{left:572.670000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.fsf_c00454{font-size:38.266667pt;}
.fs14_c00454{font-size:39.202274pt;}
.fs11_c00454{font-size:40.133333pt;}
.fsa_c00454{font-size:42.000000pt;}
.fs10_c00454{font-size:42.933333pt;}
.fs13_c00454{font-size:43.866667pt;}
.fs9_c00454{font-size:44.800000pt;}
.fsc_c00454{font-size:45.733333pt;}
.fsd_c00454{font-size:47.600000pt;}
.fs12_c00454{font-size:48.533333pt;}
.fse_c00454{font-size:49.466667pt;}
.fsb_c00454{font-size:51.333333pt;}
.fs7_c00454{font-size:56.000000pt;}
.fs4_c00454{font-size:62.533333pt;}
.fs3_c00454{font-size:63.466667pt;}
.fs5_c00454{font-size:64.400000pt;}
.fs6_c00454{font-size:67.200000pt;}
.fs2_c00454{font-size:69.066667pt;}
.fs8_c00454{font-size:89.600000pt;}
.fs0_c00454{font-size:98.047078pt;}
.fs1_c00454{font-size:103.649768pt;}
.y0_c00454{bottom:0.000000pt;}
.y51_c00454{bottom:127.809333pt;}
.y52_c00454{bottom:130.184973pt;}
.y53_c00454{bottom:135.482973pt;}
.y54_c00454{bottom:139.214853pt;}
.y55_c00454{bottom:140.331573pt;}
.y56_c00454{bottom:145.897053pt;}
.y50_c00454{bottom:153.476000pt;}
.y44_c00454{bottom:185.165333pt;}
.y43_c00454{bottom:201.142667pt;}
.y42_c00454{bottom:217.061333pt;}
.y4f_c00454{bottom:218.668000pt;}
.y41_c00454{bottom:234.000000pt;}
.y4e_c00454{bottom:234.480000pt;}
.y40_c00454{bottom:249.484000pt;}
.y4d_c00454{bottom:251.077333pt;}
.y3f_c00454{bottom:265.340000pt;}
.y4c_c00454{bottom:266.922667pt;}
.y3e_c00454{bottom:280.949333pt;}
.y4b_c00454{bottom:281.861333pt;}
.y3d_c00454{bottom:297.033333pt;}
.y4a_c00454{bottom:298.130667pt;}
.y3c_c00454{bottom:312.962667pt;}
.y49_c00454{bottom:313.577333pt;}
.y3b_c00454{bottom:328.898667pt;}
.y48_c00454{bottom:329.656000pt;}
.y3a_c00454{bottom:345.020000pt;}
.y47_c00454{bottom:345.561333pt;}
.y39_c00454{bottom:361.152000pt;}
.y46_c00454{bottom:361.769333pt;}
.y38_c00454{bottom:376.358667pt;}
.y45_c00454{bottom:377.849333pt;}
.y37_c00454{bottom:390.976000pt;}
.y30_c00454{bottom:571.440000pt;}
.y31_c00454{bottom:572.329333pt;}
.y32_c00454{bottom:572.721333pt;}
.y33_c00454{bottom:573.109333pt;}
.y34_c00454{bottom:573.366667pt;}
.y35_c00454{bottom:573.594667pt;}
.y36_c00454{bottom:574.001333pt;}
.y2f_c00454{bottom:592.848000pt;}
.y2e_c00454{bottom:612.280000pt;}
.y22_c00454{bottom:652.537333pt;}
.y23_c00454{bottom:652.756000pt;}
.y24_c00454{bottom:653.241333pt;}
.y25_c00454{bottom:653.297333pt;}
.y26_c00454{bottom:653.482667pt;}
.y27_c00454{bottom:653.664000pt;}
.y28_c00454{bottom:653.922667pt;}
.y29_c00454{bottom:654.306667pt;}
.y2a_c00454{bottom:654.498667pt;}
.y2b_c00454{bottom:654.718667pt;}
.y2c_c00454{bottom:654.900000pt;}
.y2d_c00454{bottom:655.066667pt;}
.y1c_c00454{bottom:673.202667pt;}
.y1d_c00454{bottom:673.588000pt;}
.y1e_c00454{bottom:674.717333pt;}
.y1f_c00454{bottom:675.380000pt;}
.y20_c00454{bottom:675.546667pt;}
.y21_c00454{bottom:675.824000pt;}
.y1b_c00454{bottom:695.390667pt;}
.y10_c00454{bottom:714.001333pt;}
.y11_c00454{bottom:714.364000pt;}
.y12_c00454{bottom:714.500000pt;}
.y13_c00454{bottom:714.798667pt;}
.y14_c00454{bottom:714.936000pt;}
.y15_c00454{bottom:715.296000pt;}
.y16_c00454{bottom:715.465333pt;}
.y17_c00454{bottom:715.768000pt;}
.y18_c00454{bottom:716.074667pt;}
.y19_c00454{bottom:716.328000pt;}
.y1a_c00454{bottom:716.533333pt;}
.yf_c00454{bottom:737.121333pt;}
.ye_c00454{bottom:779.163140pt;}
.yd_c00454{bottom:779.669264pt;}
.yc_c00454{bottom:780.462421pt;}
.yb_c00454{bottom:781.066399pt;}
.ya_c00454{bottom:781.323592pt;}
.y9_c00454{bottom:781.601773pt;}
.y8_c00454{bottom:781.897607pt;}
.y7_c00454{bottom:782.208923pt;}
.y6_c00454{bottom:782.644255pt;}
.y5_c00454{bottom:822.311067pt;}
.y4_c00454{bottom:825.434089pt;}
.y2_c00454{bottom:832.029153pt;}
.y3_c00454{bottom:832.071768pt;}
.y1_c00454{bottom:834.740000pt;}
.h11_c00454{height:38.266667pt;}
.h16_c00454{height:39.202274pt;}
.h13_c00454{height:40.133333pt;}
.hc_c00454{height:42.000000pt;}
.h12_c00454{height:42.933333pt;}
.h15_c00454{height:43.866667pt;}
.hb_c00454{height:44.800000pt;}
.he_c00454{height:45.733333pt;}
.hf_c00454{height:47.600000pt;}
.h14_c00454{height:48.533333pt;}
.h10_c00454{height:49.466667pt;}
.hd_c00454{height:51.333333pt;}
.h9_c00454{height:56.000000pt;}
.h6_c00454{height:62.533333pt;}
.h5_c00454{height:63.466667pt;}
.h7_c00454{height:64.400000pt;}
.h8_c00454{height:67.200000pt;}
.h4_c00454{height:69.066667pt;}
.ha_c00454{height:89.600000pt;}
.h2_c00454{height:98.047078pt;}
.h3_c00454{height:103.649768pt;}
.h1_c00454{height:893.333333pt;}
.h0_c00454{height:893.466667pt;}
.w0_c00454{width:635.733333pt;}
.w1_c00454{width:636.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:59.113333pt;}
.x62_c00454{left:72.000000pt;}
.x4f_c00454{left:75.360000pt;}
.x52_c00454{left:77.280000pt;}
.x9f_c00454{left:78.720000pt;}
.x47_c00454{left:79.680000pt;}
.x71_c00454{left:81.840000pt;}
.x63_c00454{left:97.200000pt;}
.xa1_c00454{left:98.552000pt;}
.xa0_c00454{left:99.600000pt;}
.x53_c00454{left:101.280000pt;}
.x5d_c00454{left:105.120000pt;}
.x48_c00454{left:107.040000pt;}
.x2a_c00454{left:108.137333pt;}
.xf_c00454{left:109.440000pt;}
.x2e_c00454{left:110.989333pt;}
.x22_c00454{left:112.322667pt;}
.x41_c00454{left:113.428000pt;}
.x54_c00454{left:117.360000pt;}
.x59_c00454{left:118.560000pt;}
.x49_c00454{left:121.200000pt;}
.x64_c00454{left:122.640000pt;}
.x6b_c00454{left:123.600000pt;}
.xa2_c00454{left:124.842416pt;}
.x6f_c00454{left:128.400000pt;}
.x36_c00454{left:132.240000pt;}
.x2f_c00454{left:135.233333pt;}
.x10_c00454{left:137.040000pt;}
.x4a_c00454{left:138.480000pt;}
.x69_c00454{left:140.880000pt;}
.x6_c00454{left:142.431908pt;}
.x3_c00454{left:145.185333pt;}
.x2_c00454{left:146.560000pt;}
.x1a_c00454{left:150.610667pt;}
.x23_c00454{left:152.162667pt;}
.x5e_c00454{left:154.800000pt;}
.x50_c00454{left:157.200000pt;}
.x55_c00454{left:159.600000pt;}
.x11_c00454{left:161.040000pt;}
.x1b_c00454{left:165.680000pt;}
.x5a_c00454{left:168.960000pt;}
.x51_c00454{left:171.360000pt;}
.x65_c00454{left:172.320000pt;}
.x66_c00454{left:173.280000pt;}
.x12_c00454{left:174.960000pt;}
.x4b_c00454{left:180.480000pt;}
.x7_c00454{left:181.961711pt;}
.x6a_c00454{left:183.840000pt;}
.x6c_c00454{left:185.760000pt;}
.x56_c00454{left:186.960000pt;}
.x30_c00454{left:189.212000pt;}
.x3d_c00454{left:191.760000pt;}
.x42_c00454{left:194.250667pt;}
.x31_c00454{left:195.446667pt;}
.x5b_c00454{left:198.240000pt;}
.x13_c00454{left:199.440000pt;}
.x5f_c00454{left:201.360000pt;}
.x4c_c00454{left:203.520000pt;}
.x60_c00454{left:204.720000pt;}
.x24_c00454{left:208.082667pt;}
.x8_c00454{left:210.215195pt;}
.x37_c00454{left:212.160000pt;}
.x3e_c00454{left:213.120000pt;}
.x1c_c00454{left:214.197333pt;}
.x32_c00454{left:216.086667pt;}
.x67_c00454{left:218.880000pt;}
.x6d_c00454{left:222.960000pt;}
.x4d_c00454{left:224.160000pt;}
.x57_c00454{left:227.280000pt;}
.x70_c00454{left:228.480000pt;}
.x43_c00454{left:229.832000pt;}
.x14_c00454{left:233.520000pt;}
.x6e_c00454{left:235.440000pt;}
.x9_c00454{left:237.065144pt;}
.x5c_c00454{left:238.320000pt;}
.x61_c00454{left:240.960000pt;}
.x4e_c00454{left:243.120000pt;}
.x2b_c00454{left:245.913333pt;}
.x58_c00454{left:247.200000pt;}
.x1d_c00454{left:254.240000pt;}
.x38_c00454{left:261.120000pt;}
.xa_c00454{left:262.355476pt;}
.x33_c00454{left:265.094667pt;}
.x15_c00454{left:267.600000pt;}
.x3f_c00454{left:269.520000pt;}
.x68_c00454{left:270.960000pt;}
.x25_c00454{left:271.922667pt;}
.x1e_c00454{left:273.000000pt;}
.x26_c00454{left:284.402667pt;}
.xb_c00454{left:285.763317pt;}
.x40_c00454{left:289.200000pt;}
.x87_c00454{left:296.160000pt;}
.x7e_c00454{left:297.120000pt;}
.x81_c00454{left:298.080000pt;}
.x16_c00454{left:299.280000pt;}
.x8c_c00454{left:300.960000pt;}
.x95_c00454{left:302.160000pt;}
.x78_c00454{left:303.600000pt;}
.x1f_c00454{left:306.608000pt;}
.x34_c00454{left:307.805333pt;}
.x27_c00454{left:309.602667pt;}
.x99_c00454{left:312.480000pt;}
.x2c_c00454{left:321.268000pt;}
.x72_c00454{left:322.320000pt;}
.x8d_c00454{left:324.720000pt;}
.x39_c00454{left:326.400000pt;}
.x9c_c00454{left:327.840000pt;}
.x17_c00454{left:329.040000pt;}
.x73_c00454{left:331.440000pt;}
.x82_c00454{left:333.120000pt;}
.xc_c00454{left:340.721376pt;}
.x2d_c00454{left:346.465333pt;}
.x79_c00454{left:348.480000pt;}
.x96_c00454{left:352.560000pt;}
.x18_c00454{left:354.240000pt;}
.x7f_c00454{left:356.400000pt;}
.x3a_c00454{left:358.080000pt;}
.x4_c00454{left:359.304000pt;}
.x28_c00454{left:360.962667pt;}
.x88_c00454{left:363.600000pt;}
.x20_c00454{left:368.754667pt;}
.x9d_c00454{left:371.040000pt;}
.x35_c00454{left:373.796000pt;}
.x29_c00454{left:378.962667pt;}
.x83_c00454{left:381.600000pt;}
.x8e_c00454{left:382.800000pt;}
.x74_c00454{left:385.920000pt;}
.x9a_c00454{left:387.840000pt;}
.x21_c00454{left:391.553333pt;}
.x80_c00454{left:392.880000pt;}
.x19_c00454{left:394.560000pt;}
.x91_c00454{left:399.360000pt;}
.x89_c00454{left:400.560000pt;}
.x3b_c00454{left:402.480000pt;}
.x7a_c00454{left:403.440000pt;}
.x97_c00454{left:410.640000pt;}
.xd_c00454{left:412.803349pt;}
.x44_c00454{left:414.480000pt;}
.x8f_c00454{left:416.880000pt;}
.x92_c00454{left:419.040000pt;}
.x75_c00454{left:421.680000pt;}
.x8a_c00454{left:426.000000pt;}
.x9b_c00454{left:433.920000pt;}
.x84_c00454{left:438.000000pt;}
.x7b_c00454{left:442.080000pt;}
.x45_c00454{left:443.040000pt;}
.x76_c00454{left:447.840000pt;}
.x98_c00454{left:452.160000pt;}
.x7c_c00454{left:454.080000pt;}
.x3c_c00454{left:456.960000pt;}
.xe_c00454{left:458.835869pt;}
.x5_c00454{left:460.046667pt;}
.x90_c00454{left:463.920000pt;}
.x85_c00454{left:465.840000pt;}
.x93_c00454{left:466.800000pt;}
.x46_c00454{left:475.680000pt;}
.x8b_c00454{left:476.640000pt;}
.x77_c00454{left:481.200000pt;}
.x7d_c00454{left:484.560000pt;}
.x86_c00454{left:490.320000pt;}
.x94_c00454{left:491.520000pt;}
.x9e_c00454{left:509.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_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_ef4e99a7aa2876b3106553d3.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;}
.m23_c00455{transform:matrix(0.010710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010710,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{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);}
.m9d_c00455{transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.040165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040165,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.053170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053170,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097590,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.103120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103120,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.139060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139060,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.mb9_c00455{transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149620,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);}
.m8e_c00455{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);}
.m70_c00455{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);}
.m25_c00455{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);}
.m35_c00455{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);}
.m91_c00455{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);}
.m34_c00455{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);}
.m8f_c00455{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);}
.m29_c00455{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);}
.m9f_c00455{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);}
.mb6_c00455{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);}
.m72_c00455{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);}
.m31_c00455{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);}
.m6b_c00455{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);}
.mb5_c00455{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);}
.maa_c00455{transform:matrix(0.173855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173855,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{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);}
.m98_c00455{transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174960,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.175006,0.006307,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175006,0.006307,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175006,0.006307,-0.009003,0.249838,0,0);}
.m56_c00455{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);}
.m77_c00455{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);}
.m76_c00455{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);}
.m44_c00455{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_c00455{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);}
.m16_c00455{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);}
.m5d_c00455{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);}
.m2e_c00455{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);}
.m2a_c00455{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);}
.m12_c00455{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);}
.mba_c00455{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);}
.m80_c00455{transform:matrix(0.183656,0.006618,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183656,0.006618,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183656,0.006618,-0.009003,0.249838,0,0);}
.m3_c00455{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);}
.m7e_c00455{transform:matrix(0.184455,0.006647,-0.009003,0.249838,0,0);-ms-transform:matrix(0.184455,0.006647,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.184455,0.006647,-0.009003,0.249838,0,0);}
.m66_c00455{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);}
.m15_c00455{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);}
.ma_c00455{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);}
.m71_c00455{transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187090,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{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);}
.m32_c00455{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);}
.m27_c00455{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);}
.m1a_c00455{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);}
.mae_c00455{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);}
.mc0_c00455{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);}
.mc_c00455{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);}
.m8a_c00455{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);}
.m6e_c00455{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);}
.mbe_c00455{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);}
.m69_c00455{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);}
.m2d_c00455{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);}
.mb_c00455{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);}
.m75_c00455{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);}
.m57_c00455{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);}
.m26_c00455{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);}
.m9_c00455{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);}
.m33_c00455{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);}
.m13_c00455{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);}
.m9a_c00455{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);}
.m6_c00455{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);}
.ma1_c00455{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);}
.m43_c00455{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);}
.m68_c00455{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);}
.m11_c00455{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);}
.m92_c00455{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);}
.ma7_c00455{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);}
.m21_c00455{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);}
.mf_c00455{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);}
.m5c_c00455{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);}
.ma2_c00455{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);}
.m78_c00455{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);}
.m24_c00455{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);}
.m37_c00455{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);}
.m50_c00455{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);}
.m8d_c00455{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);}
.m6a_c00455{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);}
.m61_c00455{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);}
.m82_c00455{transform:matrix(0.215885,0.007780,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215885,0.007780,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215885,0.007780,-0.009003,0.249838,0,0);}
.m1f_c00455{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);}
.m6c_c00455{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);}
.mb8_c00455{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);}
.m58_c00455{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);}
.ma6_c00455{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);}
.m54_c00455{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);}
.m38_c00455{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);}
.ma0_c00455{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);}
.m2_c00455{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);}
.m1e_c00455{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);}
.m5f_c00455{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);}
.m96_c00455{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mac_c00455{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);}
.m4a_c00455{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);}
.m14_c00455{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);}
.md_c00455{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);}
.m40_c00455{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);}
.mab_c00455{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);}
.m17_c00455{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);}
.ma8_c00455{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);}
.mbf_c00455{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);}
.m42_c00455{transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{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);}
.ma9_c00455{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);}
.m6d_c00455{transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{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);}
.m88_c00455{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);}
.mb2_c00455{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.mbc_c00455{transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);}
.mc1_c00455{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);}
.m46_c00455{transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242110,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{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);}
.m3c_c00455{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);}
.mb0_c00455{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{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);}
.maf_c00455{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.mb4_c00455{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);}
.mb3_c00455{transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);}
.m62_c00455{transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256300,0.000000,0.000000,0.250000,0,0);}
.mb7_c00455{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);}
.m41_c00455{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);}
.m1d_c00455{transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);}
.ma5_c00455{transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{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);}
.m74_c00455{transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.263399,0.009492,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263399,0.009492,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263399,0.009492,-0.009003,0.249838,0,0);}
.m94_c00455{transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{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);}
.mb1_c00455{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{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);}
.m64_c00455{transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271880,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.274992,0.009910,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274992,0.009910,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274992,0.009910,-0.009003,0.249838,0,0);}
.mad_c00455{transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275095,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280010,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{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);}
.m3f_c00455{transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{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);}
.m7d_c00455{transform:matrix(0.291721,0.010512,-0.009003,0.249838,0,0);-ms-transform:matrix(0.291721,0.010512,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.291721,0.010512,-0.009003,0.249838,0,0);}
.m73_c00455{transform:matrix(0.292245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292245,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.296617,0.010689,-0.009003,0.249838,0,0);-ms-transform:matrix(0.296617,0.010689,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.296617,0.010689,-0.009003,0.249838,0,0);}
.m8_c00455{transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298445,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304465,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.311320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311320,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.317580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317580,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317985,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319730,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{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);}
.m39_c00455{transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331055,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338470,0.000000,0.000000,0.250000,0,0);}
.mbd_c00455{transform:matrix(0.340050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340050,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348990,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{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);}
.m7c_c00455{transform:matrix(0.360661,0.012997,-0.009003,0.249838,0,0);-ms-transform:matrix(0.360661,0.012997,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.360661,0.012997,-0.009003,0.249838,0,0);}
.m49_c00455{transform:matrix(0.360690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360690,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367005,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.385280,0.013884,-0.009003,0.249838,0,0);-ms-transform:matrix(0.385280,0.013884,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.385280,0.013884,-0.009003,0.249838,0,0);}
.m84_c00455{transform:matrix(0.389427,0.014033,-0.009003,0.249838,0,0);-ms-transform:matrix(0.389427,0.014033,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.389427,0.014033,-0.009003,0.249838,0,0);}
.m7a_c00455{transform:matrix(0.400065,0.014417,-0.009003,0.249838,0,0);-ms-transform:matrix(0.400065,0.014417,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.400065,0.014417,-0.009003,0.249838,0,0);}
.m3a_c00455{transform:matrix(0.417540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417540,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.449903,0.016213,-0.009003,0.249838,0,0);-ms-transform:matrix(0.449903,0.016213,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.449903,0.016213,-0.009003,0.249838,0,0);}
.m4_c00455{transform:matrix(0.463170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463170,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.472805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472805,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475035,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493795,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.503200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503200,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.524570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524570,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.541940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541940,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.555250,0.020009,-0.009003,0.249838,0,0);-ms-transform:matrix(0.555250,0.020009,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.555250,0.020009,-0.009003,0.249838,0,0);}
.m55_c00455{transform:matrix(0.570360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570360,0.000000,0.000000,0.250000,0,0);}
.ma4_c00455{transform:matrix(0.571555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571555,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.668515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668515,0.000000,0.000000,0.250000,0,0);}
.mc2_c00455{transform:matrix(0.684480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684480,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.685565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685565,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.688905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688905,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.778965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778965,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;}
.fs3_c00455{font-size:16.800000px;}
.fs12_c00455{font-size:48.300000px;}
.fs10_c00455{font-size:51.450000px;}
.fsf_c00455{font-size:52.500000px;}
.fs11_c00455{font-size:53.550000px;}
.fs13_c00455{font-size:57.750000px;}
.fs9_c00455{font-size:61.950000px;}
.fsb_c00455{font-size:65.100000px;}
.fsd_c00455{font-size:68.226006px;}
.fs1_c00455{font-size:68.250000px;}
.fs5_c00455{font-size:69.300000px;}
.fs7_c00455{font-size:70.350000px;}
.fs4_c00455{font-size:71.400000px;}
.fsa_c00455{font-size:72.450000px;}
.fs6_c00455{font-size:73.500000px;}
.fsc_c00455{font-size:74.550000px;}
.fse_c00455{font-size:78.722315px;}
.fs8_c00455{font-size:81.900000px;}
.fs2_c00455{font-size:88.200000px;}
.fs0_c00455{font-size:253.050000px;}
.y0_c00455{bottom:0.000000px;}
.y4b_c00455{bottom:158.716500px;}
.y4a_c00455{bottom:159.079500px;}
.y49_c00455{bottom:159.423000px;}
.y48_c00455{bottom:159.633000px;}
.y47_c00455{bottom:160.041000px;}
.y46_c00455{bottom:160.086000px;}
.y45_c00455{bottom:160.281000px;}
.y44_c00455{bottom:160.564500px;}
.y43_c00455{bottom:160.734000px;}
.y42_c00455{bottom:160.953000px;}
.y41_c00455{bottom:161.097000px;}
.y40_c00455{bottom:161.451000px;}
.y3f_c00455{bottom:161.544000px;}
.y3e_c00455{bottom:161.731500px;}
.y3d_c00455{bottom:178.374000px;}
.y3c_c00455{bottom:196.444500px;}
.y3b_c00455{bottom:213.259500px;}
.y3a_c00455{bottom:231.616500px;}
.y39_c00455{bottom:282.156712px;}
.y38_c00455{bottom:282.853245px;}
.y37_c00455{bottom:283.666957px;}
.y36_c00455{bottom:284.155603px;}
.y35_c00455{bottom:285.324730px;}
.y34_c00455{bottom:286.393539px;}
.y33_c00455{bottom:287.008194px;}
.y32_c00455{bottom:289.248168px;}
.y31_c00455{bottom:290.796429px;}
.y30_c00455{bottom:292.566144px;}
.y2f_c00455{bottom:293.248880px;}
.y2e_c00455{bottom:312.225870px;}
.y2d_c00455{bottom:314.198436px;}
.y2c_c00455{bottom:320.749500px;}
.y2b_c00455{bottom:336.432000px;}
.y2a_c00455{bottom:336.699000px;}
.y29_c00455{bottom:336.907500px;}
.y28_c00455{bottom:337.488000px;}
.y27_c00455{bottom:337.690500px;}
.y26_c00455{bottom:338.058000px;}
.y25_c00455{bottom:338.310000px;}
.y24_c00455{bottom:339.016500px;}
.y23_c00455{bottom:339.393000px;}
.y22_c00455{bottom:360.711000px;}
.y21_c00455{bottom:383.928000px;}
.y20_c00455{bottom:406.330500px;}
.y1f_c00455{bottom:436.050000px;}
.y1e_c00455{bottom:458.934000px;}
.y1d_c00455{bottom:483.255000px;}
.y1c_c00455{bottom:510.468000px;}
.y1b_c00455{bottom:538.066500px;}
.y1a_c00455{bottom:539.292000px;}
.y19_c00455{bottom:539.502000px;}
.y18_c00455{bottom:540.292500px;}
.y17_c00455{bottom:540.768000px;}
.y16_c00455{bottom:541.621500px;}
.y15_c00455{bottom:560.559000px;}
.y14_c00455{bottom:560.841000px;}
.y13_c00455{bottom:561.075000px;}
.y12_c00455{bottom:561.273000px;}
.y11_c00455{bottom:561.621000px;}
.y10_c00455{bottom:561.883500px;}
.yf_c00455{bottom:562.107000px;}
.ye_c00455{bottom:562.336500px;}
.yd_c00455{bottom:563.491500px;}
.yc_c00455{bottom:563.761500px;}
.yb_c00455{bottom:589.960500px;}
.ya_c00455{bottom:618.630000px;}
.y9_c00455{bottom:641.854500px;}
.y8_c00455{bottom:664.272000px;}
.y7_c00455{bottom:687.403500px;}
.y6_c00455{bottom:709.641000px;}
.y5_c00455{bottom:733.174500px;}
.y4_c00455{bottom:746.550000px;}
.y3_c00455{bottom:770.632500px;}
.y2_c00455{bottom:813.744000px;}
.y1_c00455{bottom:918.375000px;}
.h5_c00455{height:16.800000px;}
.h14_c00455{height:48.300000px;}
.h12_c00455{height:51.450000px;}
.h11_c00455{height:52.500000px;}
.h13_c00455{height:53.550000px;}
.h15_c00455{height:57.750000px;}
.hb_c00455{height:61.950000px;}
.hd_c00455{height:65.100000px;}
.hf_c00455{height:68.226006px;}
.h3_c00455{height:68.250000px;}
.h7_c00455{height:69.300000px;}
.h9_c00455{height:70.350000px;}
.h6_c00455{height:71.400000px;}
.hc_c00455{height:72.450000px;}
.h8_c00455{height:73.500000px;}
.he_c00455{height:74.550000px;}
.h10_c00455{height:78.722315px;}
.ha_c00455{height:81.900000px;}
.h4_c00455{height:88.200000px;}
.h2_c00455{height:253.050000px;}
.h0_c00455{height:1008.450000px;}
.h1_c00455{height:1008.750000px;}
.w1_c00455{width:689.250000px;}
.w0_c00455{width:689.550000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:81.270000px;}
.x77_c00455{left:137.700000px;}
.x7e_c00455{left:138.780000px;}
.x62_c00455{left:140.131500px;}
.x64_c00455{left:142.433965px;}
.x6d_c00455{left:143.640000px;}
.x5_c00455{left:157.950000px;}
.x4e_c00455{left:160.110000px;}
.x65_c00455{left:164.419404px;}
.x83_c00455{left:165.441000px;}
.x42_c00455{left:169.290000px;}
.x15_c00455{left:171.450000px;}
.x2c_c00455{left:172.530000px;}
.x24_c00455{left:174.150000px;}
.x84_c00455{left:178.663500px;}
.x6e_c00455{left:185.490000px;}
.x4f_c00455{left:196.020000px;}
.x2d_c00455{left:198.180000px;}
.x1b_c00455{left:199.530000px;}
.x56_c00455{left:203.040000px;}
.xa_c00455{left:206.280000px;}
.x6f_c00455{left:207.900000px;}
.x78_c00455{left:210.330000px;}
.x5c_c00455{left:214.797000px;}
.x1c_c00455{left:218.430000px;}
.x66_c00455{left:221.440097px;}
.x16_c00455{left:222.750000px;}
.x70_c00455{left:228.150000px;}
.x1d_c00455{left:230.040000px;}
.x50_c00455{left:233.280000px;}
.x25_c00455{left:239.490000px;}
.x3a_c00455{left:242.902500px;}
.x17_c00455{left:244.620000px;}
.x43_c00455{left:247.590000px;}
.x85_c00455{left:249.684000px;}
.x3f_c00455{left:252.720000px;}
.xb_c00455{left:253.800000px;}
.x1e_c00455{left:255.690000px;}
.x7f_c00455{left:259.200000px;}
.x57_c00455{left:262.710000px;}
.x26_c00455{left:266.490000px;}
.x2e_c00455{left:270.000000px;}
.x7_c00455{left:271.350000px;}
.x18_c00455{left:273.510000px;}
.x58_c00455{left:276.750000px;}
.x44_c00455{left:278.100000px;}
.x2_c00455{left:279.180000px;}
.x86_c00455{left:281.025000px;}
.x3b_c00455{left:282.496500px;}
.x1f_c00455{left:285.120000px;}
.xc_c00455{left:287.550000px;}
.x5d_c00455{left:293.370000px;}
.x27_c00455{left:297.810000px;}
.x45_c00455{left:300.780000px;}
.x87_c00455{left:305.305500px;}
.x8_c00455{left:306.720000px;}
.x34_c00455{left:313.845000px;}
.x47_c00455{left:319.680000px;}
.x20_c00455{left:321.840000px;}
.x19_c00455{left:323.460000px;}
.xd_c00455{left:324.540000px;}
.x71_c00455{left:325.620000px;}
.x33_c00455{left:326.700000px;}
.x80_c00455{left:332.100000px;}
.x2f_c00455{left:333.990000px;}
.x35_c00455{left:336.784500px;}
.x40_c00455{left:340.470000px;}
.x67_c00455{left:343.468392px;}
.xe_c00455{left:344.520000px;}
.x46_c00455{left:345.600000px;}
.x3c_c00455{left:348.426000px;}
.x30_c00455{left:352.620000px;}
.x1a_c00455{left:355.320000px;}
.x36_c00455{left:359.193000px;}
.x21_c00455{left:360.720000px;}
.x5e_c00455{left:362.178000px;}
.x68_c00455{left:363.273135px;}
.x3d_c00455{left:365.911500px;}
.x59_c00455{left:372.060000px;}
.x88_c00455{left:373.585500px;}
.x28_c00455{left:375.300000px;}
.x63_c00455{left:376.662233px;}
.x48_c00455{left:378.270000px;}
.x9_c00455{left:380.160000px;}
.x79_c00455{left:383.130000px;}
.x5f_c00455{left:384.618000px;}
.x31_c00455{left:385.830000px;}
.x29_c00455{left:389.070000px;}
.x4a_c00455{left:390.420000px;}
.xf_c00455{left:392.310000px;}
.x69_c00455{left:397.720869px;}
.x41_c00455{left:401.220000px;}
.x4d_c00455{left:405.270000px;}
.x10_c00455{left:408.240000px;}
.x51_c00455{left:411.210000px;}
.x11_c00455{left:415.530000px;}
.x37_c00455{left:420.199500px;}
.x7a_c00455{left:423.090000px;}
.x2a_c00455{left:426.870000px;}
.x12_c00455{left:435.240000px;}
.x3_c00455{left:436.860000px;}
.x89_c00455{left:438.400500px;}
.x38_c00455{left:439.948500px;}
.x4b_c00455{left:441.990000px;}
.x52_c00455{left:444.150000px;}
.x6_c00455{left:447.390000px;}
.x60_c00455{left:449.161500px;}
.x6a_c00455{left:451.135522px;}
.x4_c00455{left:455.220000px;}
.x32_c00455{left:456.840000px;}
.x22_c00455{left:462.240000px;}
.x2b_c00455{left:464.130000px;}
.x3e_c00455{left:467.998500px;}
.x81_c00455{left:470.340000px;}
.x61_c00455{left:472.372500px;}
.x6b_c00455{left:477.338496px;}
.x5a_c00455{left:478.710000px;}
.x4c_c00455{left:485.460000px;}
.x39_c00455{left:491.535000px;}
.x13_c00455{left:492.750000px;}
.x7b_c00455{left:493.830000px;}
.x72_c00455{left:496.800000px;}
.x6c_c00455{left:499.790076px;}
.x53_c00455{left:503.010000px;}
.x23_c00455{left:507.060000px;}
.x82_c00455{left:512.190000px;}
.x7c_c00455{left:514.080000px;}
.x8a_c00455{left:517.489500px;}
.x49_c00455{left:524.070000px;}
.x54_c00455{left:525.690000px;}
.x73_c00455{left:529.470000px;}
.x14_c00455{left:532.710000px;}
.x5b_c00455{left:535.140000px;}
.x74_c00455{left:555.660000px;}
.x8b_c00455{left:569.332500px;}
.x55_c00455{left:574.560000px;}
.x7d_c00455{left:575.640000px;}
.x75_c00455{left:589.680000px;}
.x76_c00455{left:601.560000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fs3_c00455{font-size:14.933333pt;}
.fs12_c00455{font-size:42.933333pt;}
.fs10_c00455{font-size:45.733333pt;}
.fsf_c00455{font-size:46.666667pt;}
.fs11_c00455{font-size:47.600000pt;}
.fs13_c00455{font-size:51.333333pt;}
.fs9_c00455{font-size:55.066667pt;}
.fsb_c00455{font-size:57.866667pt;}
.fsd_c00455{font-size:60.645339pt;}
.fs1_c00455{font-size:60.666667pt;}
.fs5_c00455{font-size:61.600000pt;}
.fs7_c00455{font-size:62.533333pt;}
.fs4_c00455{font-size:63.466667pt;}
.fsa_c00455{font-size:64.400000pt;}
.fs6_c00455{font-size:65.333333pt;}
.fsc_c00455{font-size:66.266667pt;}
.fse_c00455{font-size:69.975391pt;}
.fs8_c00455{font-size:72.800000pt;}
.fs2_c00455{font-size:78.400000pt;}
.fs0_c00455{font-size:224.933333pt;}
.y0_c00455{bottom:0.000000pt;}
.y4b_c00455{bottom:141.081333pt;}
.y4a_c00455{bottom:141.404000pt;}
.y49_c00455{bottom:141.709333pt;}
.y48_c00455{bottom:141.896000pt;}
.y47_c00455{bottom:142.258667pt;}
.y46_c00455{bottom:142.298667pt;}
.y45_c00455{bottom:142.472000pt;}
.y44_c00455{bottom:142.724000pt;}
.y43_c00455{bottom:142.874667pt;}
.y42_c00455{bottom:143.069333pt;}
.y41_c00455{bottom:143.197333pt;}
.y40_c00455{bottom:143.512000pt;}
.y3f_c00455{bottom:143.594667pt;}
.y3e_c00455{bottom:143.761333pt;}
.y3d_c00455{bottom:158.554667pt;}
.y3c_c00455{bottom:174.617333pt;}
.y3b_c00455{bottom:189.564000pt;}
.y3a_c00455{bottom:205.881333pt;}
.y39_c00455{bottom:250.805967pt;}
.y38_c00455{bottom:251.425107pt;}
.y37_c00455{bottom:252.148407pt;}
.y36_c00455{bottom:252.582759pt;}
.y35_c00455{bottom:253.621983pt;}
.y34_c00455{bottom:254.572035pt;}
.y33_c00455{bottom:255.118395pt;}
.y32_c00455{bottom:257.109483pt;}
.y31_c00455{bottom:258.485715pt;}
.y30_c00455{bottom:260.058795pt;}
.y2f_c00455{bottom:260.665671pt;}
.y2e_c00455{bottom:277.534107pt;}
.y2d_c00455{bottom:279.287499pt;}
.y2c_c00455{bottom:285.110667pt;}
.y2b_c00455{bottom:299.050667pt;}
.y2a_c00455{bottom:299.288000pt;}
.y29_c00455{bottom:299.473333pt;}
.y28_c00455{bottom:299.989333pt;}
.y27_c00455{bottom:300.169333pt;}
.y26_c00455{bottom:300.496000pt;}
.y25_c00455{bottom:300.720000pt;}
.y24_c00455{bottom:301.348000pt;}
.y23_c00455{bottom:301.682667pt;}
.y22_c00455{bottom:320.632000pt;}
.y21_c00455{bottom:341.269333pt;}
.y20_c00455{bottom:361.182667pt;}
.y1f_c00455{bottom:387.600000pt;}
.y1e_c00455{bottom:407.941333pt;}
.y1d_c00455{bottom:429.560000pt;}
.y1c_c00455{bottom:453.749333pt;}
.y1b_c00455{bottom:478.281333pt;}
.y1a_c00455{bottom:479.370667pt;}
.y19_c00455{bottom:479.557333pt;}
.y18_c00455{bottom:480.260000pt;}
.y17_c00455{bottom:480.682667pt;}
.y16_c00455{bottom:481.441333pt;}
.y15_c00455{bottom:498.274667pt;}
.y14_c00455{bottom:498.525333pt;}
.y13_c00455{bottom:498.733333pt;}
.y12_c00455{bottom:498.909333pt;}
.y11_c00455{bottom:499.218667pt;}
.y10_c00455{bottom:499.452000pt;}
.yf_c00455{bottom:499.650667pt;}
.ye_c00455{bottom:499.854667pt;}
.yd_c00455{bottom:500.881333pt;}
.yc_c00455{bottom:501.121333pt;}
.yb_c00455{bottom:524.409333pt;}
.ya_c00455{bottom:549.893333pt;}
.y9_c00455{bottom:570.537333pt;}
.y8_c00455{bottom:590.464000pt;}
.y7_c00455{bottom:611.025333pt;}
.y6_c00455{bottom:630.792000pt;}
.y5_c00455{bottom:651.710667pt;}
.y4_c00455{bottom:663.600000pt;}
.y3_c00455{bottom:685.006667pt;}
.y2_c00455{bottom:723.328000pt;}
.y1_c00455{bottom:816.333333pt;}
.h5_c00455{height:14.933333pt;}
.h14_c00455{height:42.933333pt;}
.h12_c00455{height:45.733333pt;}
.h11_c00455{height:46.666667pt;}
.h13_c00455{height:47.600000pt;}
.h15_c00455{height:51.333333pt;}
.hb_c00455{height:55.066667pt;}
.hd_c00455{height:57.866667pt;}
.hf_c00455{height:60.645339pt;}
.h3_c00455{height:60.666667pt;}
.h7_c00455{height:61.600000pt;}
.h9_c00455{height:62.533333pt;}
.h6_c00455{height:63.466667pt;}
.hc_c00455{height:64.400000pt;}
.h8_c00455{height:65.333333pt;}
.he_c00455{height:66.266667pt;}
.h10_c00455{height:69.975391pt;}
.ha_c00455{height:72.800000pt;}
.h4_c00455{height:78.400000pt;}
.h2_c00455{height:224.933333pt;}
.h0_c00455{height:896.400000pt;}
.h1_c00455{height:896.666667pt;}
.w1_c00455{width:612.666667pt;}
.w0_c00455{width:612.933333pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:72.240000pt;}
.x77_c00455{left:122.400000pt;}
.x7e_c00455{left:123.360000pt;}
.x62_c00455{left:124.561333pt;}
.x64_c00455{left:126.607969pt;}
.x6d_c00455{left:127.680000pt;}
.x5_c00455{left:140.400000pt;}
.x4e_c00455{left:142.320000pt;}
.x65_c00455{left:146.150581pt;}
.x83_c00455{left:147.058667pt;}
.x42_c00455{left:150.480000pt;}
.x15_c00455{left:152.400000pt;}
.x2c_c00455{left:153.360000pt;}
.x24_c00455{left:154.800000pt;}
.x84_c00455{left:158.812000pt;}
.x6e_c00455{left:164.880000pt;}
.x4f_c00455{left:174.240000pt;}
.x2d_c00455{left:176.160000pt;}
.x1b_c00455{left:177.360000pt;}
.x56_c00455{left:180.480000pt;}
.xa_c00455{left:183.360000pt;}
.x6f_c00455{left:184.800000pt;}
.x78_c00455{left:186.960000pt;}
.x5c_c00455{left:190.930667pt;}
.x1c_c00455{left:194.160000pt;}
.x66_c00455{left:196.835641pt;}
.x16_c00455{left:198.000000pt;}
.x70_c00455{left:202.800000pt;}
.x1d_c00455{left:204.480000pt;}
.x50_c00455{left:207.360000pt;}
.x25_c00455{left:212.880000pt;}
.x3a_c00455{left:215.913333pt;}
.x17_c00455{left:217.440000pt;}
.x43_c00455{left:220.080000pt;}
.x85_c00455{left:221.941333pt;}
.x3f_c00455{left:224.640000pt;}
.xb_c00455{left:225.600000pt;}
.x1e_c00455{left:227.280000pt;}
.x7f_c00455{left:230.400000pt;}
.x57_c00455{left:233.520000pt;}
.x26_c00455{left:236.880000pt;}
.x2e_c00455{left:240.000000pt;}
.x7_c00455{left:241.200000pt;}
.x18_c00455{left:243.120000pt;}
.x58_c00455{left:246.000000pt;}
.x44_c00455{left:247.200000pt;}
.x2_c00455{left:248.160000pt;}
.x86_c00455{left:249.800000pt;}
.x3b_c00455{left:251.108000pt;}
.x1f_c00455{left:253.440000pt;}
.xc_c00455{left:255.600000pt;}
.x5d_c00455{left:260.773333pt;}
.x27_c00455{left:264.720000pt;}
.x45_c00455{left:267.360000pt;}
.x87_c00455{left:271.382667pt;}
.x8_c00455{left:272.640000pt;}
.x34_c00455{left:278.973333pt;}
.x47_c00455{left:284.160000pt;}
.x20_c00455{left:286.080000pt;}
.x19_c00455{left:287.520000pt;}
.xd_c00455{left:288.480000pt;}
.x71_c00455{left:289.440000pt;}
.x33_c00455{left:290.400000pt;}
.x80_c00455{left:295.200000pt;}
.x2f_c00455{left:296.880000pt;}
.x35_c00455{left:299.364000pt;}
.x40_c00455{left:302.640000pt;}
.x67_c00455{left:305.305237pt;}
.xe_c00455{left:306.240000pt;}
.x46_c00455{left:307.200000pt;}
.x3c_c00455{left:309.712000pt;}
.x30_c00455{left:313.440000pt;}
.x1a_c00455{left:315.840000pt;}
.x36_c00455{left:319.282667pt;}
.x21_c00455{left:320.640000pt;}
.x5e_c00455{left:321.936000pt;}
.x68_c00455{left:322.909453pt;}
.x3d_c00455{left:325.254667pt;}
.x59_c00455{left:330.720000pt;}
.x88_c00455{left:332.076000pt;}
.x28_c00455{left:333.600000pt;}
.x63_c00455{left:334.810873pt;}
.x48_c00455{left:336.240000pt;}
.x9_c00455{left:337.920000pt;}
.x79_c00455{left:340.560000pt;}
.x5f_c00455{left:341.882667pt;}
.x31_c00455{left:342.960000pt;}
.x29_c00455{left:345.840000pt;}
.x4a_c00455{left:347.040000pt;}
.xf_c00455{left:348.720000pt;}
.x69_c00455{left:353.529661pt;}
.x41_c00455{left:356.640000pt;}
.x4d_c00455{left:360.240000pt;}
.x10_c00455{left:362.880000pt;}
.x51_c00455{left:365.520000pt;}
.x11_c00455{left:369.360000pt;}
.x37_c00455{left:373.510667pt;}
.x7a_c00455{left:376.080000pt;}
.x2a_c00455{left:379.440000pt;}
.x12_c00455{left:386.880000pt;}
.x3_c00455{left:388.320000pt;}
.x89_c00455{left:389.689333pt;}
.x38_c00455{left:391.065333pt;}
.x4b_c00455{left:392.880000pt;}
.x52_c00455{left:394.800000pt;}
.x6_c00455{left:397.680000pt;}
.x60_c00455{left:399.254667pt;}
.x6a_c00455{left:401.009353pt;}
.x4_c00455{left:404.640000pt;}
.x32_c00455{left:406.080000pt;}
.x22_c00455{left:410.880000pt;}
.x2b_c00455{left:412.560000pt;}
.x3e_c00455{left:415.998667pt;}
.x81_c00455{left:418.080000pt;}
.x61_c00455{left:419.886667pt;}
.x6b_c00455{left:424.300885pt;}
.x5a_c00455{left:425.520000pt;}
.x4c_c00455{left:431.520000pt;}
.x39_c00455{left:436.920000pt;}
.x13_c00455{left:438.000000pt;}
.x7b_c00455{left:438.960000pt;}
.x72_c00455{left:441.600000pt;}
.x6c_c00455{left:444.257845pt;}
.x53_c00455{left:447.120000pt;}
.x23_c00455{left:450.720000pt;}
.x82_c00455{left:455.280000pt;}
.x7c_c00455{left:456.960000pt;}
.x8a_c00455{left:459.990667pt;}
.x49_c00455{left:465.840000pt;}
.x54_c00455{left:467.280000pt;}
.x73_c00455{left:470.640000pt;}
.x14_c00455{left:473.520000pt;}
.x5b_c00455{left:475.680000pt;}
.x74_c00455{left:493.920000pt;}
.x8b_c00455{left:506.073333pt;}
.x55_c00455{left:510.720000pt;}
.x7d_c00455{left:511.680000pt;}
.x75_c00455{left:524.160000pt;}
.x76_c00455{left:534.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mb_c00456{transform:matrix(0.007733,-0.000162,0.005249,0.249945,0,0);-ms-transform:matrix(0.007733,-0.000162,0.005249,0.249945,0,0);-webkit-transform:matrix(0.007733,-0.000162,0.005249,0.249945,0,0);}
.m5f_c00456{transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011615,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{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);}
.m63_c00456{transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018365,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.040975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040975,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.101945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101945,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.125135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125135,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{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);}
.m8_c00456{transform:matrix(0.131331,-0.002758,0.005249,0.249945,0,0);-ms-transform:matrix(0.131331,-0.002758,0.005249,0.249945,0,0);-webkit-transform:matrix(0.131331,-0.002758,0.005249,0.249945,0,0);}
.m90_c00456{transform:matrix(0.139150,-0.002644,0.004749,0.249955,0,0);-ms-transform:matrix(0.139150,-0.002644,0.004749,0.249955,0,0);-webkit-transform:matrix(0.139150,-0.002644,0.004749,0.249955,0,0);}
.m20_c00456{transform:matrix(0.142005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142005,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.143249,-0.002722,0.004749,0.249955,0,0);-ms-transform:matrix(0.143249,-0.002722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.143249,-0.002722,0.004749,0.249955,0,0);}
.m8e_c00456{transform:matrix(0.158206,-0.003006,0.004749,0.249955,0,0);-ms-transform:matrix(0.158206,-0.003006,0.004749,0.249955,0,0);-webkit-transform:matrix(0.158206,-0.003006,0.004749,0.249955,0,0);}
.m16_c00456{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);}
.me_c00456{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);}
.m83_c00456{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);}
.m93_c00456{transform:matrix(0.159851,-0.003037,0.004749,0.249955,0,0);-ms-transform:matrix(0.159851,-0.003037,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159851,-0.003037,0.004749,0.249955,0,0);}
.m37_c00456{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.md_c00456{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);}
.m1c_c00456{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);}
.m77_c00456{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);}
.m56_c00456{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);}
.m44_c00456{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);}
.m86_c00456{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);}
.m6d_c00456{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);}
.m1e_c00456{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);}
.m79_c00456{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);}
.m2c_c00456{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);}
.m8a_c00456{transform:matrix(0.183507,-0.003487,0.004749,0.249955,0,0);-ms-transform:matrix(0.183507,-0.003487,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183507,-0.003487,0.004749,0.249955,0,0);}
.m6a_c00456{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);}
.m42_c00456{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);}
.m3e_c00456{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);}
.m1d_c00456{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);}
.m76_c00456{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);}
.m74_c00456{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);}
.m30_c00456{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);}
.m3b_c00456{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_c00456{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);}
.m8d_c00456{transform:matrix(0.190446,-0.003618,0.004749,0.249955,0,0);-ms-transform:matrix(0.190446,-0.003618,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190446,-0.003618,0.004749,0.249955,0,0);}
.m1a_c00456{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);}
.m39_c00456{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);}
.m47_c00456{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);}
.m8b_c00456{transform:matrix(0.193015,-0.003667,0.004749,0.249955,0,0);-ms-transform:matrix(0.193015,-0.003667,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193015,-0.003667,0.004749,0.249955,0,0);}
.m7e_c00456{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);}
.m40_c00456{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);}
.m36_c00456{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);}
.m17_c00456{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);}
.m62_c00456{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);}
.m48_c00456{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{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);}
.m7b_c00456{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);}
.m2b_c00456{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);}
.m87_c00456{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);}
.m78_c00456{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);}
.m96_c00456{transform:matrix(0.203808,-0.003872,0.004749,0.249955,0,0);-ms-transform:matrix(0.203808,-0.003872,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203808,-0.003872,0.004749,0.249955,0,0);}
.m2d_c00456{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);}
.m60_c00456{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);}
.m33_c00456{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);}
.m7c_c00456{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);}
.m6c_c00456{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);}
.m26_c00456{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);}
.m4c_c00456{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);}
.m5e_c00456{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);}
.m97_c00456{transform:matrix(0.210217,-0.003994,0.004749,0.249955,0,0);-ms-transform:matrix(0.210217,-0.003994,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210217,-0.003994,0.004749,0.249955,0,0);}
.m38_c00456{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);}
.m21_c00456{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);}
.m95_c00456{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);}
.m6f_c00456{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);}
.m50_c00456{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);}
.m32_c00456{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);}
.m81_c00456{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);}
.m25_c00456{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);}
.m45_c00456{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);}
.m6e_c00456{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);}
.m9_c00456{transform:matrix(0.216777,-0.004552,0.005249,0.249945,0,0);-ms-transform:matrix(0.216777,-0.004552,0.005249,0.249945,0,0);-webkit-transform:matrix(0.216777,-0.004552,0.005249,0.249945,0,0);}
.m35_c00456{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);}
.m59_c00456{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);}
.m15_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);}
.m80_c00456{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);}
.m6_c00456{transform:matrix(0.221181,-0.004645,0.005249,0.249945,0,0);-ms-transform:matrix(0.221181,-0.004645,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221181,-0.004645,0.005249,0.249945,0,0);}
.mf_c00456{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);}
.m46_c00456{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);}
.m5c_c00456{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);}
.m31_c00456{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);}
.m18_c00456{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);}
.m22_c00456{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);}
.m7_c00456{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);}
.m1f_c00456{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);}
.m54_c00456{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);}
.m4e_c00456{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);}
.m3d_c00456{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);}
.m53_c00456{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);}
.m5a_c00456{transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{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);}
.m58_c00456{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);}
.m5d_c00456{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);}
.m70_c00456{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);}
.m7f_c00456{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);}
.m98_c00456{transform:matrix(0.234143,-0.004449,0.004749,0.249955,0,0);-ms-transform:matrix(0.234143,-0.004449,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234143,-0.004449,0.004749,0.249955,0,0);}
.m8f_c00456{transform:matrix(0.234448,-0.004455,0.004749,0.249955,0,0);-ms-transform:matrix(0.234448,-0.004455,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234448,-0.004455,0.004749,0.249955,0,0);}
.m92_c00456{transform:matrix(0.235333,-0.004471,0.004749,0.249955,0,0);-ms-transform:matrix(0.235333,-0.004471,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235333,-0.004471,0.004749,0.249955,0,0);}
.m2f_c00456{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);}
.m7a_c00456{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{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);}
.m6b_c00456{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);}
.m65_c00456{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);}
.m3c_c00456{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m5_c00456{transform:matrix(0.243781,-0.005119,0.005249,0.249945,0,0);-ms-transform:matrix(0.243781,-0.005119,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243781,-0.005119,0.005249,0.249945,0,0);}
.m75_c00456{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);}
.m3a_c00456{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);}
.m84_c00456{transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{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);}
.m14_c00456{transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268515,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.268851,-0.005108,0.004749,0.249955,0,0);-ms-transform:matrix(0.268851,-0.005108,0.004749,0.249955,0,0);-webkit-transform:matrix(0.268851,-0.005108,0.004749,0.249955,0,0);}
.m52_c00456{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);}
.m5b_c00456{transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{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);}
.m34_c00456{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);}
.m12_c00456{transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277620,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.284105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284105,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);-ms-transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);-webkit-transform:matrix(0.285289,-0.005420,0.004749,0.249955,0,0);}
.m29_c00456{transform:matrix(0.287460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287460,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.307495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307495,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314725,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{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);}
.m64_c00456{transform:matrix(0.329895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329895,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346010,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.347928,-0.007306,0.005249,0.249945,0,0);-ms-transform:matrix(0.347928,-0.007306,0.005249,0.249945,0,0);-webkit-transform:matrix(0.347928,-0.007306,0.005249,0.249945,0,0);}
.m23_c00456{transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362070,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.363930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363930,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.364265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364265,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.367230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367230,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.367455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367455,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.417770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417770,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.423315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423315,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.441075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441075,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.446460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446460,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.449680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449680,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.515500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515500,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.530930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530930,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.550799,-0.011567,0.005249,0.249945,0,0);-ms-transform:matrix(0.550799,-0.011567,0.005249,0.249945,0,0);-webkit-transform:matrix(0.550799,-0.011567,0.005249,0.249945,0,0);}
.m49_c00456{transform:matrix(0.584720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584720,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.648105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648105,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.671185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671185,0.000000,0.000000,0.250000,0,0);}
.m94_c00456{transform:matrix(0.763297,-0.014503,0.004749,0.249955,0,0);-ms-transform:matrix(0.763297,-0.014503,0.004749,0.249955,0,0);-webkit-transform:matrix(0.763297,-0.014503,0.004749,0.249955,0,0);}
.m11_c00456{transform:matrix(1.021740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021740,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(1.234258,-0.025919,0.005249,0.249945,0,0);-ms-transform:matrix(1.234258,-0.025919,0.005249,0.249945,0,0);-webkit-transform:matrix(1.234258,-0.025919,0.005249,0.249945,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;}
.fs0_c00456{font-size:54.600000px;}
.fse_c00456{font-size:57.760423px;}
.fs9_c00456{font-size:64.050000px;}
.fsd_c00456{font-size:64.061560px;}
.fsc_c00456{font-size:65.100000px;}
.fs4_c00456{font-size:66.150000px;}
.fs8_c00456{font-size:67.200000px;}
.fs5_c00456{font-size:70.350000px;}
.fs1_c00456{font-size:71.400000px;}
.fs7_c00456{font-size:72.450000px;}
.fs2_c00456{font-size:72.465973px;}
.fs6_c00456{font-size:73.500000px;}
.fsb_c00456{font-size:76.650000px;}
.fsa_c00456{font-size:91.350000px;}
.fs3_c00456{font-size:98.721761px;}
.y0_c00456{bottom:0.000000px;}
.y1_c00456{bottom:144.453000px;}
.y26_c00456{bottom:157.685163px;}
.y27_c00456{bottom:158.959136px;}
.y28_c00456{bottom:159.649338px;}
.y29_c00456{bottom:161.073114px;}
.y2a_c00456{bottom:161.513112px;}
.y2b_c00456{bottom:162.151917px;}
.y2c_c00456{bottom:163.717139px;}
.y1c_c00456{bottom:173.349000px;}
.y1d_c00456{bottom:173.775303px;}
.y1e_c00456{bottom:174.434309px;}
.y1f_c00456{bottom:175.447341px;}
.y20_c00456{bottom:176.043390px;}
.y21_c00456{bottom:176.601277px;}
.y22_c00456{bottom:176.961489px;}
.y23_c00456{bottom:177.250964px;}
.y24_c00456{bottom:177.814665px;}
.y25_c00456{bottom:177.983243px;}
.y1b_c00456{bottom:251.443500px;}
.y1a_c00456{bottom:277.059000px;}
.y19_c00456{bottom:300.231000px;}
.y18_c00456{bottom:322.299000px;}
.y17_c00456{bottom:345.265500px;}
.y16_c00456{bottom:367.792500px;}
.y15_c00456{bottom:392.496000px;}
.y14_c00456{bottom:414.478500px;}
.y13_c00456{bottom:482.508000px;}
.y12_c00456{bottom:505.629000px;}
.y11_c00456{bottom:528.403500px;}
.y10_c00456{bottom:551.470500px;}
.yf_c00456{bottom:574.738500px;}
.ye_c00456{bottom:596.737500px;}
.yd_c00456{bottom:664.050000px;}
.yc_c00456{bottom:686.770500px;}
.ya_c00456{bottom:749.523849px;}
.yb_c00456{bottom:753.586002px;}
.y3_c00456{bottom:776.532000px;}
.y4_c00456{bottom:777.384642px;}
.y5_c00456{bottom:778.749852px;}
.y6_c00456{bottom:779.166125px;}
.y7_c00456{bottom:779.865519px;}
.y8_c00456{bottom:781.220586px;}
.y9_c00456{bottom:782.443259px;}
.y2_c00456{bottom:806.763000px;}
.h2_c00456{height:54.600000px;}
.h10_c00456{height:57.760423px;}
.hb_c00456{height:64.050000px;}
.hf_c00456{height:64.061560px;}
.he_c00456{height:65.100000px;}
.h6_c00456{height:66.150000px;}
.ha_c00456{height:67.200000px;}
.h7_c00456{height:70.350000px;}
.h3_c00456{height:71.400000px;}
.h9_c00456{height:72.450000px;}
.h4_c00456{height:72.465973px;}
.h8_c00456{height:73.500000px;}
.hd_c00456{height:76.650000px;}
.hc_c00456{height:91.350000px;}
.h5_c00456{height:98.721761px;}
.h1_c00456{height:1005.000000px;}
.h0_c00456{height:1005.150000px;}
.w0_c00456{width:715.200000px;}
.w1_c00456{width:715.500000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:90.450000px;}
.x6e_c00456{left:100.010485px;}
.x68_c00456{left:102.837000px;}
.x4d_c00456{left:122.040000px;}
.x2_c00456{left:123.120000px;}
.x69_c00456{left:125.274000px;}
.xd_c00456{left:126.900000px;}
.x5_c00456{left:128.017500px;}
.x2b_c00456{left:132.030000px;}
.x1d_c00456{left:134.730000px;}
.x4e_c00456{left:135.810000px;}
.x5b_c00456{left:136.890000px;}
.x61_c00456{left:139.590000px;}
.x1e_c00456{left:146.340000px;}
.x32_c00456{left:153.360000px;}
.x2c_c00456{left:157.950000px;}
.x3a_c00456{left:159.300000px;}
.x49_c00456{left:162.810000px;}
.xe_c00456{left:165.510000px;}
.x3_c00456{left:167.400000px;}
.x6_c00456{left:168.619500px;}
.x1f_c00456{left:174.150000px;}
.x13_c00456{left:176.040000px;}
.x33_c00456{left:179.550000px;}
.x14_c00456{left:180.630000px;}
.x6f_c00456{left:181.827705px;}
.x4f_c00456{left:184.140000px;}
.x4a_c00456{left:190.080000px;}
.x2d_c00456{left:191.160000px;}
.x20_c00456{left:193.320000px;}
.x56_c00456{left:194.940000px;}
.x15_c00456{left:197.640000px;}
.x3b_c00456{left:200.340000px;}
.x21_c00456{left:212.490000px;}
.x62_c00456{left:215.460000px;}
.xf_c00456{left:217.890000px;}
.x34_c00456{left:222.750000px;}
.x16_c00456{left:226.260000px;}
.x5c_c00456{left:228.150000px;}
.x3f_c00456{left:231.390000px;}
.x7_c00456{left:233.629500px;}
.x24_c00456{left:234.900000px;}
.x40_c00456{left:236.520000px;}
.x70_c00456{left:241.126062px;}
.x22_c00456{left:242.730000px;}
.x6a_c00456{left:244.647000px;}
.x10_c00456{left:249.480000px;}
.x8_c00456{left:253.452000px;}
.x5d_c00456{left:255.960000px;}
.x3c_c00456{left:257.310000px;}
.x71_c00456{left:259.466323px;}
.x63_c00456{left:261.630000px;}
.x17_c00456{left:269.730000px;}
.x35_c00456{left:272.700000px;}
.x4_c00456{left:274.320000px;}
.x2e_c00456{left:277.020000px;}
.x51_c00456{left:280.530000px;}
.x41_c00456{left:284.850000px;}
.x9_c00456{left:286.756500px;}
.x42_c00456{left:289.170000px;}
.xc_c00456{left:292.833805px;}
.x23_c00456{left:294.840000px;}
.x18_c00456{left:299.160000px;}
.x11_c00456{left:303.480000px;}
.x5e_c00456{left:305.910000px;}
.x6b_c00456{left:308.203500px;}
.x57_c00456{left:311.580000px;}
.x50_c00456{left:313.200000px;}
.x3d_c00456{left:318.060000px;}
.x4b_c00456{left:319.140000px;}
.x43_c00456{left:320.490000px;}
.x52_c00456{left:322.380000px;}
.x64_c00456{left:326.160000px;}
.x19_c00456{left:335.070000px;}
.x6c_c00456{left:337.872000px;}
.x58_c00456{left:342.090000px;}
.x6d_c00456{left:346.744500px;}
.xa_c00456{left:351.283500px;}
.x36_c00456{left:353.160000px;}
.x1a_c00456{left:356.670000px;}
.x3e_c00456{left:363.420000px;}
.x27_c00456{left:365.580000px;}
.x44_c00456{left:366.660000px;}
.x25_c00456{left:370.440000px;}
.x37_c00456{left:372.870000px;}
.x2f_c00456{left:376.110000px;}
.x65_c00456{left:378.540000px;}
.x5f_c00456{left:382.320000px;}
.x59_c00456{left:385.830000px;}
.x28_c00456{left:389.340000px;}
.x12_c00456{left:392.040000px;}
.x45_c00456{left:393.390000px;}
.x4c_c00456{left:396.360000px;}
.x53_c00456{left:404.460000px;}
.xb_c00456{left:409.506000px;}
.x60_c00456{left:411.480000px;}
.x26_c00456{left:414.450000px;}
.x30_c00456{left:419.310000px;}
.x29_c00456{left:421.740000px;}
.x66_c00456{left:424.980000px;}
.x54_c00456{left:427.410000px;}
.x1b_c00456{left:433.890000px;}
.x38_c00456{left:436.860000px;}
.x46_c00456{left:450.360000px;}
.x2a_c00456{left:464.400000px;}
.x31_c00456{left:475.470000px;}
.x67_c00456{left:476.820000px;}
.x5a_c00456{left:478.710000px;}
.x55_c00456{left:484.650000px;}
.x1c_c00456{left:492.480000px;}
.x47_c00456{left:495.450000px;}
.x39_c00456{left:510.840000px;}
.x48_c00456{left:539.190000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fs0_c00456{font-size:48.533333pt;}
.fse_c00456{font-size:51.342598pt;}
.fs9_c00456{font-size:56.933333pt;}
.fsd_c00456{font-size:56.943609pt;}
.fsc_c00456{font-size:57.866667pt;}
.fs4_c00456{font-size:58.800000pt;}
.fs8_c00456{font-size:59.733333pt;}
.fs5_c00456{font-size:62.533333pt;}
.fs1_c00456{font-size:63.466667pt;}
.fs7_c00456{font-size:64.400000pt;}
.fs2_c00456{font-size:64.414199pt;}
.fs6_c00456{font-size:65.333333pt;}
.fsb_c00456{font-size:68.133333pt;}
.fsa_c00456{font-size:81.200000pt;}
.fs3_c00456{font-size:87.752676pt;}
.y0_c00456{bottom:0.000000pt;}
.y1_c00456{bottom:128.402667pt;}
.y26_c00456{bottom:140.164589pt;}
.y27_c00456{bottom:141.297009pt;}
.y28_c00456{bottom:141.910523pt;}
.y29_c00456{bottom:143.176101pt;}
.y2a_c00456{bottom:143.567211pt;}
.y2b_c00456{bottom:144.135037pt;}
.y2c_c00456{bottom:145.526345pt;}
.y1c_c00456{bottom:154.088000pt;}
.y1d_c00456{bottom:154.466936pt;}
.y1e_c00456{bottom:155.052719pt;}
.y1f_c00456{bottom:155.953192pt;}
.y20_c00456{bottom:156.483013pt;}
.y21_c00456{bottom:156.978913pt;}
.y22_c00456{bottom:157.299101pt;}
.y23_c00456{bottom:157.556412pt;}
.y24_c00456{bottom:158.057480pt;}
.y25_c00456{bottom:158.207327pt;}
.y1b_c00456{bottom:223.505333pt;}
.y1a_c00456{bottom:246.274667pt;}
.y19_c00456{bottom:266.872000pt;}
.y18_c00456{bottom:286.488000pt;}
.y17_c00456{bottom:306.902667pt;}
.y16_c00456{bottom:326.926667pt;}
.y15_c00456{bottom:348.885333pt;}
.y14_c00456{bottom:368.425333pt;}
.y13_c00456{bottom:428.896000pt;}
.y12_c00456{bottom:449.448000pt;}
.y11_c00456{bottom:469.692000pt;}
.y10_c00456{bottom:490.196000pt;}
.yf_c00456{bottom:510.878667pt;}
.ye_c00456{bottom:530.433333pt;}
.yd_c00456{bottom:590.266667pt;}
.yc_c00456{bottom:610.462667pt;}
.ya_c00456{bottom:666.243421pt;}
.yb_c00456{bottom:669.854224pt;}
.y3_c00456{bottom:690.250667pt;}
.y4_c00456{bottom:691.008571pt;}
.y5_c00456{bottom:692.222091pt;}
.y6_c00456{bottom:692.592111pt;}
.y7_c00456{bottom:693.213795pt;}
.y8_c00456{bottom:694.418299pt;}
.y9_c00456{bottom:695.505119pt;}
.y2_c00456{bottom:717.122667pt;}
.h2_c00456{height:48.533333pt;}
.h10_c00456{height:51.342598pt;}
.hb_c00456{height:56.933333pt;}
.hf_c00456{height:56.943609pt;}
.he_c00456{height:57.866667pt;}
.h6_c00456{height:58.800000pt;}
.ha_c00456{height:59.733333pt;}
.h7_c00456{height:62.533333pt;}
.h3_c00456{height:63.466667pt;}
.h9_c00456{height:64.400000pt;}
.h4_c00456{height:64.414199pt;}
.h8_c00456{height:65.333333pt;}
.hd_c00456{height:68.133333pt;}
.hc_c00456{height:81.200000pt;}
.h5_c00456{height:87.752676pt;}
.h1_c00456{height:893.333333pt;}
.h0_c00456{height:893.466667pt;}
.w0_c00456{width:635.733333pt;}
.w1_c00456{width:636.000000pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:80.400000pt;}
.x6e_c00456{left:88.898209pt;}
.x68_c00456{left:91.410667pt;}
.x4d_c00456{left:108.480000pt;}
.x2_c00456{left:109.440000pt;}
.x69_c00456{left:111.354667pt;}
.xd_c00456{left:112.800000pt;}
.x5_c00456{left:113.793333pt;}
.x2b_c00456{left:117.360000pt;}
.x1d_c00456{left:119.760000pt;}
.x4e_c00456{left:120.720000pt;}
.x5b_c00456{left:121.680000pt;}
.x61_c00456{left:124.080000pt;}
.x1e_c00456{left:130.080000pt;}
.x32_c00456{left:136.320000pt;}
.x2c_c00456{left:140.400000pt;}
.x3a_c00456{left:141.600000pt;}
.x49_c00456{left:144.720000pt;}
.xe_c00456{left:147.120000pt;}
.x3_c00456{left:148.800000pt;}
.x6_c00456{left:149.884000pt;}
.x1f_c00456{left:154.800000pt;}
.x13_c00456{left:156.480000pt;}
.x33_c00456{left:159.600000pt;}
.x14_c00456{left:160.560000pt;}
.x6f_c00456{left:161.624627pt;}
.x4f_c00456{left:163.680000pt;}
.x4a_c00456{left:168.960000pt;}
.x2d_c00456{left:169.920000pt;}
.x20_c00456{left:171.840000pt;}
.x56_c00456{left:173.280000pt;}
.x15_c00456{left:175.680000pt;}
.x3b_c00456{left:178.080000pt;}
.x21_c00456{left:188.880000pt;}
.x62_c00456{left:191.520000pt;}
.xf_c00456{left:193.680000pt;}
.x34_c00456{left:198.000000pt;}
.x16_c00456{left:201.120000pt;}
.x5c_c00456{left:202.800000pt;}
.x3f_c00456{left:205.680000pt;}
.x7_c00456{left:207.670667pt;}
.x24_c00456{left:208.800000pt;}
.x40_c00456{left:210.240000pt;}
.x70_c00456{left:214.334277pt;}
.x22_c00456{left:215.760000pt;}
.x6a_c00456{left:217.464000pt;}
.x10_c00456{left:221.760000pt;}
.x8_c00456{left:225.290667pt;}
.x5d_c00456{left:227.520000pt;}
.x3c_c00456{left:228.720000pt;}
.x71_c00456{left:230.636732pt;}
.x63_c00456{left:232.560000pt;}
.x17_c00456{left:239.760000pt;}
.x35_c00456{left:242.400000pt;}
.x4_c00456{left:243.840000pt;}
.x2e_c00456{left:246.240000pt;}
.x51_c00456{left:249.360000pt;}
.x41_c00456{left:253.200000pt;}
.x9_c00456{left:254.894667pt;}
.x42_c00456{left:257.040000pt;}
.xc_c00456{left:260.296716pt;}
.x23_c00456{left:262.080000pt;}
.x18_c00456{left:265.920000pt;}
.x11_c00456{left:269.760000pt;}
.x5e_c00456{left:271.920000pt;}
.x6b_c00456{left:273.958667pt;}
.x57_c00456{left:276.960000pt;}
.x50_c00456{left:278.400000pt;}
.x3d_c00456{left:282.720000pt;}
.x4b_c00456{left:283.680000pt;}
.x43_c00456{left:284.880000pt;}
.x52_c00456{left:286.560000pt;}
.x64_c00456{left:289.920000pt;}
.x19_c00456{left:297.840000pt;}
.x6c_c00456{left:300.330667pt;}
.x58_c00456{left:304.080000pt;}
.x6d_c00456{left:308.217333pt;}
.xa_c00456{left:312.252000pt;}
.x36_c00456{left:313.920000pt;}
.x1a_c00456{left:317.040000pt;}
.x3e_c00456{left:323.040000pt;}
.x27_c00456{left:324.960000pt;}
.x44_c00456{left:325.920000pt;}
.x25_c00456{left:329.280000pt;}
.x37_c00456{left:331.440000pt;}
.x2f_c00456{left:334.320000pt;}
.x65_c00456{left:336.480000pt;}
.x5f_c00456{left:339.840000pt;}
.x59_c00456{left:342.960000pt;}
.x28_c00456{left:346.080000pt;}
.x12_c00456{left:348.480000pt;}
.x45_c00456{left:349.680000pt;}
.x4c_c00456{left:352.320000pt;}
.x53_c00456{left:359.520000pt;}
.xb_c00456{left:364.005333pt;}
.x60_c00456{left:365.760000pt;}
.x26_c00456{left:368.400000pt;}
.x30_c00456{left:372.720000pt;}
.x29_c00456{left:374.880000pt;}
.x66_c00456{left:377.760000pt;}
.x54_c00456{left:379.920000pt;}
.x1b_c00456{left:385.680000pt;}
.x38_c00456{left:388.320000pt;}
.x46_c00456{left:400.320000pt;}
.x2a_c00456{left:412.800000pt;}
.x31_c00456{left:422.640000pt;}
.x67_c00456{left:423.840000pt;}
.x5a_c00456{left:425.520000pt;}
.x55_c00456{left:430.800000pt;}
.x1c_c00456{left:437.760000pt;}
.x47_c00456{left:440.400000pt;}
.x39_c00456{left:454.080000pt;}
.x48_c00456{left:479.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m73_c00457{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);}
.m2e_c00457{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);}
.mc9_c00457{transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029230,0.000000,0.000000,0.250000,0,0);}
.m78_c00457{transform:matrix(0.046160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046160,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{transform:matrix(0.075630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075630,0.000000,0.000000,0.250000,0,0);}
.m11f_c00457{transform:matrix(0.079840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079840,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.099780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099780,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.121720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121720,0.000000,0.000000,0.250000,0,0);}
.mcc_c00457{transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);}
.mce_c00457{transform:matrix(0.132520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132520,0.000000,0.000000,0.250000,0,0);}
.md7_c00457{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);}
.mf6_c00457{transform:matrix(0.137730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137730,0.000000,0.000000,0.250000,0,0);}
.m9b_c00457{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);}
.m107_c00457{transform:matrix(0.145190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145190,0.000000,0.000000,0.250000,0,0);}
.mdc_c00457{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);}
.mdf_c00457{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.mf3_c00457{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);}
.md5_c00457{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);}
.m93_c00457{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);}
.m87_c00457{transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{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);}
.m76_c00457{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);}
.m34_c00457{transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155405,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157210,0.000000,0.000000,0.250000,0,0);}
.m86_c00457{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);}
.m22_c00457{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);}
.m97_c00457{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);}
.m29_c00457{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);}
.m6b_c00457{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);}
.m9e_c00457{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);}
.m44_c00457{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m94_c00457{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);}
.m11e_c00457{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);}
.m59_c00457{transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);}
.mbe_c00457{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);}
.m26_c00457{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);}
.m1b_c00457{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);}
.m4_c00457{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);}
.m24_c00457{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);}
.mf2_c00457{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);}
.m7_c00457{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);}
.m91_c00457{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);}
.m105_c00457{transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171470,0.000000,0.000000,0.250000,0,0);}
.m35_c00457{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);}
.m95_c00457{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);}
.m6_c00457{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);}
.m1e_c00457{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);}
.ma0_c00457{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);}
.md2_c00457{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);}
.m3d_c00457{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);}
.m1c_c00457{transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176535,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{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);}
.mad_c00457{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);}
.m122_c00457{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);}
.md4_c00457{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);}
.mb2_c00457{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);}
.m100_c00457{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);}
.m67_c00457{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);}
.m6a_c00457{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);}
.m7c_c00457{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);}
.m5c_c00457{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);}
.m9d_c00457{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);}
.m11c_c00457{transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181415,0.000000,0.000000,0.250000,0,0);}
.m9c_c00457{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);}
.m101_c00457{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);}
.m3e_c00457{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_c00457{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);}
.mcf_c00457{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);}
.md8_c00457{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);}
.ma3_c00457{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_c00457{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);}
.m8_c00457{transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{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);}
.m46_c00457{transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186310,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{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);}
.mae_c00457{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);}
.m23_c00457{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);}
.me0_c00457{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);}
.m113_c00457{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);}
.m88_c00457{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);}
.m121_c00457{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);}
.m7b_c00457{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);}
.m52_c00457{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);}
.m54_c00457{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);}
.m1f_c00457{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);}
.ma4_c00457{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);}
.mbb_c00457{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);}
.m3_c00457{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);}
.m110_c00457{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m69_c00457{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);}
.m27_c00457{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);}
.ma1_c00457{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);}
.md3_c00457{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);}
.mb0_c00457{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);}
.mff_c00457{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);}
.m62_c00457{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);}
.m21_c00457{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);}
.m43_c00457{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);}
.m85_c00457{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);}
.m84_c00457{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);}
.mf9_c00457{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);}
.mc0_c00457{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);}
.m20_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);}
.m10b_c00457{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);}
.m25_c00457{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);}
.m8c_c00457{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);}
.m9f_c00457{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);}
.mea_c00457{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);}
.mc4_c00457{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);}
.m116_c00457{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);}
.m64_c00457{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);}
.maf_c00457{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);}
.m71_c00457{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);}
.m15_c00457{transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);}
.ma9_c00457{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);}
.me4_c00457{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);}
.m48_c00457{transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{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);}
.m16_c00457{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);}
.m8e_c00457{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);}
.mec_c00457{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{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);}
.m45_c00457{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);}
.m36_c00457{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);}
.m2a_c00457{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);}
.mfc_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);}
.me1_c00457{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);}
.m112_c00457{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);}
.mf4_c00457{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);}
.m68_c00457{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);}
.m7f_c00457{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);}
.md9_c00457{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);}
.mac_c00457{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);}
.mda_c00457{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);}
.ma7_c00457{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);}
.mf_c00457{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);}
.md6_c00457{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);}
.m5d_c00457{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);}
.m1_c00457{transform:matrix(0.208400,-0.007510,0.009003,0.249838,0,0);-ms-transform:matrix(0.208400,-0.007510,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208400,-0.007510,0.009003,0.249838,0,0);}
.m14_c00457{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);}
.m1a_c00457{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);}
.mfe_c00457{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);}
.mb8_c00457{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);}
.mb_c00457{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);}
.me2_c00457{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);}
.m117_c00457{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);}
.m8f_c00457{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);}
.mb6_c00457{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);}
.m109_c00457{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);}
.m5a_c00457{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);}
.m57_c00457{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);}
.m92_c00457{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);}
.mef_c00457{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);}
.ma2_c00457{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);}
.m5b_c00457{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);}
.mf5_c00457{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);}
.m30_c00457{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);}
.mfa_c00457{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);}
.m65_c00457{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);}
.mfb_c00457{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);}
.m114_c00457{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);}
.m79_c00457{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);}
.m9_c00457{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);}
.ma_c00457{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);}
.mc7_c00457{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);}
.mc8_c00457{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);}
.mcd_c00457{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);}
.mba_c00457{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);}
.m8a_c00457{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);}
.mc_c00457{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{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);}
.m4a_c00457{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m83_c00457{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);}
.me7_c00457{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);}
.mdd_c00457{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);}
.mca_c00457{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);}
.mbd_c00457{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);}
.mc3_c00457{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);}
.m58_c00457{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);}
.m102_c00457{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);}
.m11_c00457{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);}
.m7a_c00457{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);}
.m6c_c00457{transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);}
.ma5_c00457{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);}
.ma6_c00457{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);}
.med_c00457{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);}
.mc5_c00457{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);}
.m126_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);}
.mb9_c00457{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);}
.m32_c00457{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);}
.m61_c00457{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);}
.m103_c00457{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);}
.m6e_c00457{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);}
.m8b_c00457{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);}
.mf8_c00457{transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.me8_c00457{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{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);}
.mcb_c00457{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);}
.mab_c00457{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.m2b_c00457{transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{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);}
.m124_c00457{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00457{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);}
.mf1_c00457{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);}
.mb3_c00457{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);}
.m10_c00457{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);}
.m42_c00457{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);}
.m10a_c00457{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);}
.m4b_c00457{transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);}
.m47_c00457{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{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);}
.m5e_c00457{transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.mf7_c00457{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);}
.mc6_c00457{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);}
.m115_c00457{transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{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);}
.mb1_c00457{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);}
.m9a_c00457{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);}
.m53_c00457{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);}
.m18_c00457{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);}
.m19_c00457{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);}
.m51_c00457{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);}
.mc1_c00457{transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);}
.m10d_c00457{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);}
.md_c00457{transform:matrix(0.257080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257080,0.000000,0.000000,0.250000,0,0);}
.mc2_c00457{transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259460,0.000000,0.000000,0.250000,0,0);}
.m99_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);}
.m17_c00457{transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);}
.m63_c00457{transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265005,0.000000,0.000000,0.250000,0,0);}
.m118_c00457{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.mf0_c00457{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);}
.m66_c00457{transform:matrix(0.266580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266580,0.000000,0.000000,0.250000,0,0);}
.m11b_c00457{transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);}
.m120_c00457{transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276220,0.000000,0.000000,0.250000,0,0);}
.m11a_c00457{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);}
.m111_c00457{transform:matrix(0.276995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276995,0.000000,0.000000,0.250000,0,0);}
.me9_c00457{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.278390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278390,0.000000,0.000000,0.250000,0,0);}
.m96_c00457{transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);}
.m10e_c00457{transform:matrix(0.289835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289835,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291590,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.297230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297230,0.000000,0.000000,0.250000,0,0);}
.m5f_c00457{transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298635,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);}
.mdb_c00457{transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301385,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{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);}
.m119_c00457{transform:matrix(0.302115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302115,0.000000,0.000000,0.250000,0,0);}
.mb5_c00457{transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304690,0.000000,0.000000,0.250000,0,0);}
.m104_c00457{transform:matrix(0.306310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306310,0.000000,0.000000,0.250000,0,0);}
.m125_c00457{transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);}
.meb_c00457{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);}
.m4c_c00457{transform:matrix(0.313485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313485,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320760,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326545,0.000000,0.000000,0.250000,0,0);}
.mde_c00457{transform:matrix(0.329540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329540,0.000000,0.000000,0.250000,0,0);}
.me6_c00457{transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332835,0.000000,0.000000,0.250000,0,0);}
.m7e_c00457{transform:matrix(0.344300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00457{transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345175,0.000000,0.000000,0.250000,0,0);}
.m123_c00457{transform:matrix(0.347280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347280,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.357193,-0.012872,0.009003,0.249838,0,0);-ms-transform:matrix(0.357193,-0.012872,0.009003,0.249838,0,0);-webkit-transform:matrix(0.357193,-0.012872,0.009003,0.249838,0,0);}
.m81_c00457{transform:matrix(0.360915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360915,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.365370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365370,0.000000,0.000000,0.250000,0,0);}
.mfd_c00457{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);}
.m0_c00457{transform:matrix(0.374067,-0.013480,0.009003,0.249838,0,0);-ms-transform:matrix(0.374067,-0.013480,0.009003,0.249838,0,0);-webkit-transform:matrix(0.374067,-0.013480,0.009003,0.249838,0,0);}
.md1_c00457{transform:matrix(0.375430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375430,0.000000,0.000000,0.250000,0,0);}
.mee_c00457{transform:matrix(0.392125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392125,0.000000,0.000000,0.250000,0,0);}
.m10f_c00457{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);}
.m4e_c00457{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);}
.m40_c00457{transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);}
.m108_c00457{transform:matrix(0.411235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411235,0.000000,0.000000,0.250000,0,0);}
.ma8_c00457{transform:matrix(0.422120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422120,0.000000,0.000000,0.250000,0,0);}
.m98_c00457{transform:matrix(0.430030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430030,0.000000,0.000000,0.250000,0,0);}
.me5_c00457{transform:matrix(0.432280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432280,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{transform:matrix(0.459220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459220,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.462425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.475800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475800,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.483165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483165,0.000000,0.000000,0.250000,0,0);}
.m11d_c00457{transform:matrix(0.512355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512355,0.000000,0.000000,0.250000,0,0);}
.me3_c00457{transform:matrix(0.525885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525885,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.536925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536925,0.000000,0.000000,0.250000,0,0);}
.m10c_c00457{transform:matrix(0.542310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542310,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.548055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00457{transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);}
.md0_c00457{transform:matrix(0.607755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607755,0.000000,0.000000,0.250000,0,0);}
.m106_c00457{transform:matrix(0.630205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630205,0.000000,0.000000,0.250000,0,0);}
.maa_c00457{transform:matrix(0.694180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694180,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{transform:matrix(0.764785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764785,0.000000,0.000000,0.250000,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;}
.fs10_c00457{font-size:45.150000px;}
.fs11_c00457{font-size:46.200000px;}
.fsa_c00457{font-size:47.250000px;}
.fs12_c00457{font-size:48.300000px;}
.fsb_c00457{font-size:49.350000px;}
.fse_c00457{font-size:50.400000px;}
.fs9_c00457{font-size:51.450000px;}
.fs8_c00457{font-size:52.500000px;}
.fsf_c00457{font-size:54.600000px;}
.fsd_c00457{font-size:55.650000px;}
.fsc_c00457{font-size:57.750000px;}
.fs7_c00457{font-size:59.850000px;}
.fs2_c00457{font-size:68.250000px;}
.fs3_c00457{font-size:69.300000px;}
.fs4_c00457{font-size:70.350000px;}
.fs5_c00457{font-size:71.400000px;}
.fs1_c00457{font-size:72.450000px;}
.fs6_c00457{font-size:74.550000px;}
.fs0_c00457{font-size:135.402381px;}
.y0_c00457{bottom:0.000000px;}
.y40_c00457{bottom:133.531500px;}
.y45_c00457{bottom:135.562500px;}
.y3f_c00457{bottom:151.690500px;}
.y44_c00457{bottom:153.133500px;}
.y3e_c00457{bottom:169.455000px;}
.y43_c00457{bottom:171.180000px;}
.y3d_c00457{bottom:187.491000px;}
.y42_c00457{bottom:189.040500px;}
.y3c_c00457{bottom:205.828500px;}
.y41_c00457{bottom:206.820000px;}
.y3b_c00457{bottom:223.134000px;}
.y3a_c00457{bottom:225.291000px;}
.y39_c00457{bottom:243.262500px;}
.y38_c00457{bottom:261.660000px;}
.y29_c00457{bottom:272.163000px;}
.y2a_c00457{bottom:272.265000px;}
.y2b_c00457{bottom:272.980500px;}
.y2c_c00457{bottom:273.324000px;}
.y2d_c00457{bottom:273.783000px;}
.y2e_c00457{bottom:273.945000px;}
.y2f_c00457{bottom:274.305000px;}
.y30_c00457{bottom:274.593000px;}
.y31_c00457{bottom:275.263500px;}
.y32_c00457{bottom:275.679000px;}
.y33_c00457{bottom:276.369000px;}
.y34_c00457{bottom:276.618000px;}
.y35_c00457{bottom:277.065000px;}
.y36_c00457{bottom:277.204500px;}
.y37_c00457{bottom:277.645500px;}
.y25_c00457{bottom:294.835500px;}
.y28_c00457{bottom:296.727000px;}
.y24_c00457{bottom:313.021500px;}
.y27_c00457{bottom:313.893000px;}
.y23_c00457{bottom:331.263000px;}
.y26_c00457{bottom:331.858500px;}
.y22_c00457{bottom:383.167500px;}
.y21_c00457{bottom:404.713500px;}
.y20_c00457{bottom:405.682500px;}
.y1f_c00457{bottom:406.257000px;}
.y1e_c00457{bottom:406.749000px;}
.y1d_c00457{bottom:407.020500px;}
.y1c_c00457{bottom:407.689500px;}
.y1b_c00457{bottom:407.866500px;}
.y1a_c00457{bottom:408.240000px;}
.y19_c00457{bottom:427.423500px;}
.y18_c00457{bottom:428.524500px;}
.y17_c00457{bottom:428.995500px;}
.y16_c00457{bottom:429.349500px;}
.y15_c00457{bottom:429.849000px;}
.y14_c00457{bottom:430.302000px;}
.y13_c00457{bottom:430.650000px;}
.y12_c00457{bottom:452.865000px;}
.y11_c00457{bottom:475.272000px;}
.y10_c00457{bottom:498.079500px;}
.yf_c00457{bottom:520.699500px;}
.ye_c00457{bottom:544.014000px;}
.yd_c00457{bottom:566.511000px;}
.yc_c00457{bottom:589.246500px;}
.yb_c00457{bottom:619.617000px;}
.ya_c00457{bottom:641.932500px;}
.y9_c00457{bottom:687.960000px;}
.y8_c00457{bottom:710.323500px;}
.y7_c00457{bottom:732.756000px;}
.y6_c00457{bottom:755.617500px;}
.y5_c00457{bottom:778.129500px;}
.y4_c00457{bottom:801.916500px;}
.y1_c00457{bottom:834.883500px;}
.y2_c00457{bottom:839.913438px;}
.y3_c00457{bottom:841.996380px;}
.h12_c00457{height:45.150000px;}
.h13_c00457{height:46.200000px;}
.hc_c00457{height:47.250000px;}
.h14_c00457{height:48.300000px;}
.hd_c00457{height:49.350000px;}
.h10_c00457{height:50.400000px;}
.hb_c00457{height:51.450000px;}
.ha_c00457{height:52.500000px;}
.h11_c00457{height:54.600000px;}
.hf_c00457{height:55.650000px;}
.he_c00457{height:57.750000px;}
.h9_c00457{height:59.850000px;}
.h4_c00457{height:68.250000px;}
.h5_c00457{height:69.300000px;}
.h6_c00457{height:70.350000px;}
.h7_c00457{height:71.400000px;}
.h3_c00457{height:72.450000px;}
.h8_c00457{height:74.550000px;}
.h2_c00457{height:135.402381px;}
.h0_c00457{height:1008.450000px;}
.h1_c00457{height:1008.750000px;}
.w1_c00457{width:689.250000px;}
.w0_c00457{width:689.550000px;}
.x0_c00457{left:0.000000px;}
.x75_c00457{left:82.080000px;}
.x7b_c00457{left:84.240000px;}
.x83_c00457{left:100.710000px;}
.x7c_c00457{left:105.570000px;}
.x1_c00457{left:132.423000px;}
.x84_c00457{left:136.620000px;}
.x7d_c00457{left:139.320000px;}
.x87_c00457{left:140.641500px;}
.xa3_c00457{left:149.580000px;}
.x76_c00457{left:152.550000px;}
.xaa_c00457{left:153.630000px;}
.xae_c00457{left:155.520000px;}
.x85_c00457{left:159.570000px;}
.xa8_c00457{left:163.620000px;}
.x8f_c00457{left:168.750000px;}
.x57_c00457{left:171.450000px;}
.x48_c00457{left:173.070000px;}
.x1e_c00457{left:174.150000px;}
.x4_c00457{left:176.580000px;}
.x7e_c00457{left:177.660000px;}
.xab_c00457{left:180.630000px;}
.xa4_c00457{left:183.060000px;}
.x5b_c00457{left:191.700000px;}
.x27_c00457{left:194.400000px;}
.x1f_c00457{left:196.560000px;}
.xa9_c00457{left:197.640000px;}
.x31_c00457{left:198.720000px;}
.x58_c00457{left:200.070000px;}
.x4f_c00457{left:203.310000px;}
.x5_c00457{left:206.550000px;}
.x7f_c00457{left:213.300000px;}
.x77_c00457{left:215.190000px;}
.x42_c00457{left:217.890000px;}
.x18_c00457{left:220.590000px;}
.x68_c00457{left:222.753000px;}
.x5c_c00457{left:223.830000px;}
.x59_c00457{left:228.960000px;}
.x49_c00457{left:230.310000px;}
.x78_c00457{left:231.660000px;}
.x55_c00457{left:233.550000px;}
.x20_c00457{left:238.410000px;}
.x39_c00457{left:240.840000px;}
.x6_c00457{left:243.540000px;}
.x28_c00457{left:245.430000px;}
.x19_c00457{left:247.860000px;}
.xa5_c00457{left:254.340000px;}
.x80_c00457{left:258.120000px;}
.x43_c00457{left:261.090000px;}
.x3a_c00457{left:262.170000px;}
.x29_c00457{left:263.520000px;}
.x69_c00457{left:265.143000px;}
.xa_c00457{left:266.220000px;}
.x32_c00457{left:267.300000px;}
.x90_c00457{left:270.000000px;}
.x2_c00457{left:272.003779px;}
.x10_c00457{left:275.400000px;}
.x21_c00457{left:281.070000px;}
.xaf_c00457{left:283.500000px;}
.x1a_c00457{left:284.850000px;}
.xa6_c00457{left:291.600000px;}
.x7_c00457{left:294.030000px;}
.x79_c00457{left:296.460000px;}
.x50_c00457{left:297.810000px;}
.x5d_c00457{left:299.160000px;}
.x11_c00457{left:301.050000px;}
.x2a_c00457{left:304.020000px;}
.x3b_c00457{left:306.180000px;}
.x88_c00457{left:310.684500px;}
.x81_c00457{left:313.200000px;}
.x33_c00457{left:317.790000px;}
.xac_c00457{left:320.490000px;}
.x12_c00457{left:322.380000px;}
.x1b_c00457{left:323.730000px;}
.x44_c00457{left:326.700000px;}
.x3_c00457{left:329.805420px;}
.xb_c00457{left:331.290000px;}
.x82_c00457{left:332.640000px;}
.x89_c00457{left:334.717500px;}
.x51_c00457{left:336.150000px;}
.x63_c00457{left:337.159500px;}
.x2b_c00457{left:342.360000px;}
.x7a_c00457{left:344.250000px;}
.xad_c00457{left:346.950000px;}
.x22_c00457{left:351.270000px;}
.x8_c00457{left:356.400000px;}
.x3f_c00457{left:359.100000px;}
.x66_c00457{left:360.883500px;}
.x52_c00457{left:362.880000px;}
.x45_c00457{left:365.310000px;}
.x13_c00457{left:367.200000px;}
.x23_c00457{left:369.090000px;}
.x5e_c00457{left:370.440000px;}
.x3c_c00457{left:371.520000px;}
.xa7_c00457{left:375.840000px;}
.x6d_c00457{left:378.270000px;}
.xc_c00457{left:380.700000px;}
.x1c_c00457{left:383.940000px;}
.x40_c00457{left:385.290000px;}
.x6a_c00457{left:386.373000px;}
.x98_c00457{left:387.450000px;}
.x6e_c00457{left:390.420000px;}
.x9_c00457{left:392.040000px;}
.x4a_c00457{left:393.930000px;}
.x3d_c00457{left:397.710000px;}
.x46_c00457{left:401.760000px;}
.x34_c00457{left:407.970000px;}
.x5f_c00457{left:409.590000px;}
.x6b_c00457{left:414.453000px;}
.x24_c00457{left:415.530000px;}
.x14_c00457{left:417.960000px;}
.xd_c00457{left:421.470000px;}
.x8a_c00457{left:425.170500px;}
.x9c_c00457{left:427.950000px;}
.x2c_c00457{left:432.270000px;}
.x35_c00457{left:433.890000px;}
.x53_c00457{left:436.860000px;}
.x1d_c00457{left:437.940000px;}
.x64_c00457{left:440.265000px;}
.x4b_c00457{left:442.800000px;}
.x15_c00457{left:450.360000px;}
.x99_c00457{left:452.790000px;}
.x25_c00457{left:455.220000px;}
.xe_c00457{left:458.460000px;}
.x3e_c00457{left:459.810000px;}
.x6f_c00457{left:461.970000px;}
.x60_c00457{left:464.940000px;}
.x4c_c00457{left:467.640000px;}
.x2d_c00457{left:468.720000px;}
.x16_c00457{left:470.340000px;}
.x36_c00457{left:474.390000px;}
.x71_c00457{left:477.630000px;}
.x94_c00457{left:479.520000px;}
.x54_c00457{left:481.140000px;}
.x8b_c00457{left:482.649000px;}
.x26_c00457{left:484.110000px;}
.xf_c00457{left:485.190000px;}
.x61_c00457{left:487.080000px;}
.x6c_c00457{left:489.513000px;}
.x4d_c00457{left:491.130000px;}
.x37_c00457{left:493.290000px;}
.x17_c00457{left:495.180000px;}
.x47_c00457{left:496.260000px;}
.x41_c00457{left:497.880000px;}
.x9d_c00457{left:498.960000px;}
.x91_c00457{left:500.040000px;}
.x8c_c00457{left:503.455500px;}
.x73_c00457{left:505.440000px;}
.x2e_c00457{left:509.220000px;}
.xa0_c00457{left:514.350000px;}
.x70_c00457{left:524.880000px;}
.x62_c00457{left:526.230000px;}
.x72_c00457{left:527.310000px;}
.x9a_c00457{left:532.710000px;}
.x2f_c00457{left:536.490000px;}
.x8d_c00457{left:540.694500px;}
.x5a_c00457{left:547.020000px;}
.x9b_c00457{left:550.260000px;}
.x74_c00457{left:552.960000px;}
.x4e_c00457{left:555.120000px;}
.x56_c00457{left:556.200000px;}
.x95_c00457{left:558.360000px;}
.x38_c00457{left:560.520000px;}
.x92_c00457{left:564.570000px;}
.xa1_c00457{left:568.080000px;}
.x30_c00457{left:574.560000px;}
.x96_c00457{left:576.450000px;}
.x65_c00457{left:577.959000px;}
.x97_c00457{left:584.280000px;}
.x8e_c00457{left:589.021500px;}
.x93_c00457{left:590.490000px;}
.x86_c00457{left:600.480000px;}
.x67_c00457{left:615.280500px;}
.xa2_c00457{left:624.240000px;}
.x9e_c00457{left:638.280000px;}
.x9f_c00457{left:654.210000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs10_c00457{font-size:40.133333pt;}
.fs11_c00457{font-size:41.066667pt;}
.fsa_c00457{font-size:42.000000pt;}
.fs12_c00457{font-size:42.933333pt;}
.fsb_c00457{font-size:43.866667pt;}
.fse_c00457{font-size:44.800000pt;}
.fs9_c00457{font-size:45.733333pt;}
.fs8_c00457{font-size:46.666667pt;}
.fsf_c00457{font-size:48.533333pt;}
.fsd_c00457{font-size:49.466667pt;}
.fsc_c00457{font-size:51.333333pt;}
.fs7_c00457{font-size:53.200000pt;}
.fs2_c00457{font-size:60.666667pt;}
.fs3_c00457{font-size:61.600000pt;}
.fs4_c00457{font-size:62.533333pt;}
.fs5_c00457{font-size:63.466667pt;}
.fs1_c00457{font-size:64.400000pt;}
.fs6_c00457{font-size:66.266667pt;}
.fs0_c00457{font-size:120.357672pt;}
.y0_c00457{bottom:0.000000pt;}
.y40_c00457{bottom:118.694667pt;}
.y45_c00457{bottom:120.500000pt;}
.y3f_c00457{bottom:134.836000pt;}
.y44_c00457{bottom:136.118667pt;}
.y3e_c00457{bottom:150.626667pt;}
.y43_c00457{bottom:152.160000pt;}
.y3d_c00457{bottom:166.658667pt;}
.y42_c00457{bottom:168.036000pt;}
.y3c_c00457{bottom:182.958667pt;}
.y41_c00457{bottom:183.840000pt;}
.y3b_c00457{bottom:198.341333pt;}
.y3a_c00457{bottom:200.258667pt;}
.y39_c00457{bottom:216.233333pt;}
.y38_c00457{bottom:232.586667pt;}
.y29_c00457{bottom:241.922667pt;}
.y2a_c00457{bottom:242.013333pt;}
.y2b_c00457{bottom:242.649333pt;}
.y2c_c00457{bottom:242.954667pt;}
.y2d_c00457{bottom:243.362667pt;}
.y2e_c00457{bottom:243.506667pt;}
.y2f_c00457{bottom:243.826667pt;}
.y30_c00457{bottom:244.082667pt;}
.y31_c00457{bottom:244.678667pt;}
.y32_c00457{bottom:245.048000pt;}
.y33_c00457{bottom:245.661333pt;}
.y34_c00457{bottom:245.882667pt;}
.y35_c00457{bottom:246.280000pt;}
.y36_c00457{bottom:246.404000pt;}
.y37_c00457{bottom:246.796000pt;}
.y25_c00457{bottom:262.076000pt;}
.y28_c00457{bottom:263.757333pt;}
.y24_c00457{bottom:278.241333pt;}
.y27_c00457{bottom:279.016000pt;}
.y23_c00457{bottom:294.456000pt;}
.y26_c00457{bottom:294.985333pt;}
.y22_c00457{bottom:340.593333pt;}
.y21_c00457{bottom:359.745333pt;}
.y20_c00457{bottom:360.606667pt;}
.y1f_c00457{bottom:361.117333pt;}
.y1e_c00457{bottom:361.554667pt;}
.y1d_c00457{bottom:361.796000pt;}
.y1c_c00457{bottom:362.390667pt;}
.y1b_c00457{bottom:362.548000pt;}
.y1a_c00457{bottom:362.880000pt;}
.y19_c00457{bottom:379.932000pt;}
.y18_c00457{bottom:380.910667pt;}
.y17_c00457{bottom:381.329333pt;}
.y16_c00457{bottom:381.644000pt;}
.y15_c00457{bottom:382.088000pt;}
.y14_c00457{bottom:382.490667pt;}
.y13_c00457{bottom:382.800000pt;}
.y12_c00457{bottom:402.546667pt;}
.y11_c00457{bottom:422.464000pt;}
.y10_c00457{bottom:442.737333pt;}
.yf_c00457{bottom:462.844000pt;}
.ye_c00457{bottom:483.568000pt;}
.yd_c00457{bottom:503.565333pt;}
.yc_c00457{bottom:523.774667pt;}
.yb_c00457{bottom:550.770667pt;}
.ya_c00457{bottom:570.606667pt;}
.y9_c00457{bottom:611.520000pt;}
.y8_c00457{bottom:631.398667pt;}
.y7_c00457{bottom:651.338667pt;}
.y6_c00457{bottom:671.660000pt;}
.y5_c00457{bottom:691.670667pt;}
.y4_c00457{bottom:712.814667pt;}
.y1_c00457{bottom:742.118667pt;}
.y2_c00457{bottom:746.589723pt;}
.y3_c00457{bottom:748.441227pt;}
.h12_c00457{height:40.133333pt;}
.h13_c00457{height:41.066667pt;}
.hc_c00457{height:42.000000pt;}
.h14_c00457{height:42.933333pt;}
.hd_c00457{height:43.866667pt;}
.h10_c00457{height:44.800000pt;}
.hb_c00457{height:45.733333pt;}
.ha_c00457{height:46.666667pt;}
.h11_c00457{height:48.533333pt;}
.hf_c00457{height:49.466667pt;}
.he_c00457{height:51.333333pt;}
.h9_c00457{height:53.200000pt;}
.h4_c00457{height:60.666667pt;}
.h5_c00457{height:61.600000pt;}
.h6_c00457{height:62.533333pt;}
.h7_c00457{height:63.466667pt;}
.h3_c00457{height:64.400000pt;}
.h8_c00457{height:66.266667pt;}
.h2_c00457{height:120.357672pt;}
.h0_c00457{height:896.400000pt;}
.h1_c00457{height:896.666667pt;}
.w1_c00457{width:612.666667pt;}
.w0_c00457{width:612.933333pt;}
.x0_c00457{left:0.000000pt;}
.x75_c00457{left:72.960000pt;}
.x7b_c00457{left:74.880000pt;}
.x83_c00457{left:89.520000pt;}
.x7c_c00457{left:93.840000pt;}
.x1_c00457{left:117.709333pt;}
.x84_c00457{left:121.440000pt;}
.x7d_c00457{left:123.840000pt;}
.x87_c00457{left:125.014667pt;}
.xa3_c00457{left:132.960000pt;}
.x76_c00457{left:135.600000pt;}
.xaa_c00457{left:136.560000pt;}
.xae_c00457{left:138.240000pt;}
.x85_c00457{left:141.840000pt;}
.xa8_c00457{left:145.440000pt;}
.x8f_c00457{left:150.000000pt;}
.x57_c00457{left:152.400000pt;}
.x48_c00457{left:153.840000pt;}
.x1e_c00457{left:154.800000pt;}
.x4_c00457{left:156.960000pt;}
.x7e_c00457{left:157.920000pt;}
.xab_c00457{left:160.560000pt;}
.xa4_c00457{left:162.720000pt;}
.x5b_c00457{left:170.400000pt;}
.x27_c00457{left:172.800000pt;}
.x1f_c00457{left:174.720000pt;}
.xa9_c00457{left:175.680000pt;}
.x31_c00457{left:176.640000pt;}
.x58_c00457{left:177.840000pt;}
.x4f_c00457{left:180.720000pt;}
.x5_c00457{left:183.600000pt;}
.x7f_c00457{left:189.600000pt;}
.x77_c00457{left:191.280000pt;}
.x42_c00457{left:193.680000pt;}
.x18_c00457{left:196.080000pt;}
.x68_c00457{left:198.002667pt;}
.x5c_c00457{left:198.960000pt;}
.x59_c00457{left:203.520000pt;}
.x49_c00457{left:204.720000pt;}
.x78_c00457{left:205.920000pt;}
.x55_c00457{left:207.600000pt;}
.x20_c00457{left:211.920000pt;}
.x39_c00457{left:214.080000pt;}
.x6_c00457{left:216.480000pt;}
.x28_c00457{left:218.160000pt;}
.x19_c00457{left:220.320000pt;}
.xa5_c00457{left:226.080000pt;}
.x80_c00457{left:229.440000pt;}
.x43_c00457{left:232.080000pt;}
.x3a_c00457{left:233.040000pt;}
.x29_c00457{left:234.240000pt;}
.x69_c00457{left:235.682667pt;}
.xa_c00457{left:236.640000pt;}
.x32_c00457{left:237.600000pt;}
.x90_c00457{left:240.000000pt;}
.x2_c00457{left:241.781137pt;}
.x10_c00457{left:244.800000pt;}
.x21_c00457{left:249.840000pt;}
.xaf_c00457{left:252.000000pt;}
.x1a_c00457{left:253.200000pt;}
.xa6_c00457{left:259.200000pt;}
.x7_c00457{left:261.360000pt;}
.x79_c00457{left:263.520000pt;}
.x50_c00457{left:264.720000pt;}
.x5d_c00457{left:265.920000pt;}
.x11_c00457{left:267.600000pt;}
.x2a_c00457{left:270.240000pt;}
.x3b_c00457{left:272.160000pt;}
.x88_c00457{left:276.164000pt;}
.x81_c00457{left:278.400000pt;}
.x33_c00457{left:282.480000pt;}
.xac_c00457{left:284.880000pt;}
.x12_c00457{left:286.560000pt;}
.x1b_c00457{left:287.760000pt;}
.x44_c00457{left:290.400000pt;}
.x3_c00457{left:293.160373pt;}
.xb_c00457{left:294.480000pt;}
.x82_c00457{left:295.680000pt;}
.x89_c00457{left:297.526667pt;}
.x51_c00457{left:298.800000pt;}
.x63_c00457{left:299.697333pt;}
.x2b_c00457{left:304.320000pt;}
.x7a_c00457{left:306.000000pt;}
.xad_c00457{left:308.400000pt;}
.x22_c00457{left:312.240000pt;}
.x8_c00457{left:316.800000pt;}
.x3f_c00457{left:319.200000pt;}
.x66_c00457{left:320.785333pt;}
.x52_c00457{left:322.560000pt;}
.x45_c00457{left:324.720000pt;}
.x13_c00457{left:326.400000pt;}
.x23_c00457{left:328.080000pt;}
.x5e_c00457{left:329.280000pt;}
.x3c_c00457{left:330.240000pt;}
.xa7_c00457{left:334.080000pt;}
.x6d_c00457{left:336.240000pt;}
.xc_c00457{left:338.400000pt;}
.x1c_c00457{left:341.280000pt;}
.x40_c00457{left:342.480000pt;}
.x6a_c00457{left:343.442667pt;}
.x98_c00457{left:344.400000pt;}
.x6e_c00457{left:347.040000pt;}
.x9_c00457{left:348.480000pt;}
.x4a_c00457{left:350.160000pt;}
.x3d_c00457{left:353.520000pt;}
.x46_c00457{left:357.120000pt;}
.x34_c00457{left:362.640000pt;}
.x5f_c00457{left:364.080000pt;}
.x6b_c00457{left:368.402667pt;}
.x24_c00457{left:369.360000pt;}
.x14_c00457{left:371.520000pt;}
.xd_c00457{left:374.640000pt;}
.x8a_c00457{left:377.929333pt;}
.x9c_c00457{left:380.400000pt;}
.x2c_c00457{left:384.240000pt;}
.x35_c00457{left:385.680000pt;}
.x53_c00457{left:388.320000pt;}
.x1d_c00457{left:389.280000pt;}
.x64_c00457{left:391.346667pt;}
.x4b_c00457{left:393.600000pt;}
.x15_c00457{left:400.320000pt;}
.x99_c00457{left:402.480000pt;}
.x25_c00457{left:404.640000pt;}
.xe_c00457{left:407.520000pt;}
.x3e_c00457{left:408.720000pt;}
.x6f_c00457{left:410.640000pt;}
.x60_c00457{left:413.280000pt;}
.x4c_c00457{left:415.680000pt;}
.x2d_c00457{left:416.640000pt;}
.x16_c00457{left:418.080000pt;}
.x36_c00457{left:421.680000pt;}
.x71_c00457{left:424.560000pt;}
.x94_c00457{left:426.240000pt;}
.x54_c00457{left:427.680000pt;}
.x8b_c00457{left:429.021333pt;}
.x26_c00457{left:430.320000pt;}
.xf_c00457{left:431.280000pt;}
.x61_c00457{left:432.960000pt;}
.x6c_c00457{left:435.122667pt;}
.x4d_c00457{left:436.560000pt;}
.x37_c00457{left:438.480000pt;}
.x17_c00457{left:440.160000pt;}
.x47_c00457{left:441.120000pt;}
.x41_c00457{left:442.560000pt;}
.x9d_c00457{left:443.520000pt;}
.x91_c00457{left:444.480000pt;}
.x8c_c00457{left:447.516000pt;}
.x73_c00457{left:449.280000pt;}
.x2e_c00457{left:452.640000pt;}
.xa0_c00457{left:457.200000pt;}
.x70_c00457{left:466.560000pt;}
.x62_c00457{left:467.760000pt;}
.x72_c00457{left:468.720000pt;}
.x9a_c00457{left:473.520000pt;}
.x2f_c00457{left:476.880000pt;}
.x8d_c00457{left:480.617333pt;}
.x5a_c00457{left:486.240000pt;}
.x9b_c00457{left:489.120000pt;}
.x74_c00457{left:491.520000pt;}
.x4e_c00457{left:493.440000pt;}
.x56_c00457{left:494.400000pt;}
.x95_c00457{left:496.320000pt;}
.x38_c00457{left:498.240000pt;}
.x92_c00457{left:501.840000pt;}
.xa1_c00457{left:504.960000pt;}
.x30_c00457{left:510.720000pt;}
.x96_c00457{left:512.400000pt;}
.x65_c00457{left:513.741333pt;}
.x97_c00457{left:519.360000pt;}
.x8e_c00457{left:523.574667pt;}
.x93_c00457{left:524.880000pt;}
.x86_c00457{left:533.760000pt;}
.x67_c00457{left:546.916000pt;}
.xa2_c00457{left:554.880000pt;}
.x9e_c00457{left:567.360000pt;}
.x9f_c00457{left:581.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_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_ef4e99a7aa2876b3106553d3.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;}
.m1d_c00458{transform:matrix(0.013632,-0.000300,0.005499,0.249940,0,0);-ms-transform:matrix(0.013632,-0.000300,0.005499,0.249940,0,0);-webkit-transform:matrix(0.013632,-0.000300,0.005499,0.249940,0,0);}
.mfa_c00458{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);}
.m102_c00458{transform:matrix(0.023375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023375,0.000000,0.000000,0.250000,0,0);}
.mf3_c00458{transform:matrix(0.055374,-0.001329,0.005998,0.249928,0,0);-ms-transform:matrix(0.055374,-0.001329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.055374,-0.001329,0.005998,0.249928,0,0);}
.mba_c00458{transform:matrix(0.057662,-0.000980,0.004249,0.249964,0,0);-ms-transform:matrix(0.057662,-0.000980,0.004249,0.249964,0,0);-webkit-transform:matrix(0.057662,-0.000980,0.004249,0.249964,0,0);}
.m99_c00458{transform:matrix(0.081855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081855,0.000000,0.000000,0.250000,0,0);}
.m68_c00458{transform:matrix(0.091248,-0.002007,0.005499,0.249940,0,0);-ms-transform:matrix(0.091248,-0.002007,0.005499,0.249940,0,0);-webkit-transform:matrix(0.091248,-0.002007,0.005499,0.249940,0,0);}
.m24_c00458{transform:matrix(0.097381,-0.002142,0.005499,0.249940,0,0);-ms-transform:matrix(0.097381,-0.002142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.097381,-0.002142,0.005499,0.249940,0,0);}
.m39_c00458{transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099230,0.000000,0.000000,0.250000,0,0);}
.m103_c00458{transform:matrix(0.100180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100180,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.102210,-0.002044,0.004999,0.249950,0,0);-ms-transform:matrix(0.102210,-0.002044,0.004999,0.249950,0,0);-webkit-transform:matrix(0.102210,-0.002044,0.004999,0.249950,0,0);}
.m104_c00458{transform:matrix(0.113970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113970,0.000000,0.000000,0.250000,0,0);}
.mc7_c00458{transform:matrix(0.129199,-0.002326,0.004499,0.249960,0,0);-ms-transform:matrix(0.129199,-0.002326,0.004499,0.249960,0,0);-webkit-transform:matrix(0.129199,-0.002326,0.004499,0.249960,0,0);}
.m78_c00458{transform:matrix(0.134303,-0.002686,0.004999,0.249950,0,0);-ms-transform:matrix(0.134303,-0.002686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.134303,-0.002686,0.004999,0.249950,0,0);}
.m100_c00458{transform:matrix(0.134365,-0.002822,0.005249,0.249945,0,0);-ms-transform:matrix(0.134365,-0.002822,0.005249,0.249945,0,0);-webkit-transform:matrix(0.134365,-0.002822,0.005249,0.249945,0,0);}
.mc8_c00458{transform:matrix(0.145691,-0.002622,0.004499,0.249960,0,0);-ms-transform:matrix(0.145691,-0.002622,0.004499,0.249960,0,0);-webkit-transform:matrix(0.145691,-0.002622,0.004499,0.249960,0,0);}
.m10_c00458{transform:matrix(0.146156,-0.002923,0.004999,0.249950,0,0);-ms-transform:matrix(0.146156,-0.002923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146156,-0.002923,0.004999,0.249950,0,0);}
.m3_c00458{transform:matrix(0.147421,-0.002654,0.004499,0.249960,0,0);-ms-transform:matrix(0.147421,-0.002654,0.004499,0.249960,0,0);-webkit-transform:matrix(0.147421,-0.002654,0.004499,0.249960,0,0);}
.m2d_c00458{transform:matrix(0.147694,-0.003249,0.005499,0.249940,0,0);-ms-transform:matrix(0.147694,-0.003249,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147694,-0.003249,0.005499,0.249940,0,0);}
.m9b_c00458{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);}
.ma8_c00458{transform:matrix(0.151661,-0.002427,0.003999,0.249968,0,0);-ms-transform:matrix(0.151661,-0.002427,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151661,-0.002427,0.003999,0.249968,0,0);}
.m13_c00458{transform:matrix(0.158628,-0.003173,0.004999,0.249950,0,0);-ms-transform:matrix(0.158628,-0.003173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158628,-0.003173,0.004999,0.249950,0,0);}
.m4f_c00458{transform:matrix(0.158857,-0.003495,0.005499,0.249940,0,0);-ms-transform:matrix(0.158857,-0.003495,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158857,-0.003495,0.005499,0.249940,0,0);}
.mb0_c00458{transform:matrix(0.160489,-0.002568,0.003999,0.249968,0,0);-ms-transform:matrix(0.160489,-0.002568,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160489,-0.002568,0.003999,0.249968,0,0);}
.m75_c00458{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);}
.mb2_c00458{transform:matrix(0.163449,-0.002615,0.003999,0.249968,0,0);-ms-transform:matrix(0.163449,-0.002615,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163449,-0.002615,0.003999,0.249968,0,0);}
.m2_c00458{transform:matrix(0.165523,-0.002979,0.004499,0.249960,0,0);-ms-transform:matrix(0.165523,-0.002979,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165523,-0.002979,0.004499,0.249960,0,0);}
.mc6_c00458{transform:matrix(0.165943,-0.002987,0.004499,0.249960,0,0);-ms-transform:matrix(0.165943,-0.002987,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165943,-0.002987,0.004499,0.249960,0,0);}
.m53_c00458{transform:matrix(0.166560,-0.003664,0.005499,0.249940,0,0);-ms-transform:matrix(0.166560,-0.003664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166560,-0.003664,0.005499,0.249940,0,0);}
.m93_c00458{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);}
.m41_c00458{transform:matrix(0.170374,-0.003748,0.005499,0.249940,0,0);-ms-transform:matrix(0.170374,-0.003748,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170374,-0.003748,0.005499,0.249940,0,0);}
.mfe_c00458{transform:matrix(0.170687,-0.003584,0.005249,0.249945,0,0);-ms-transform:matrix(0.170687,-0.003584,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170687,-0.003584,0.005249,0.249945,0,0);}
.m31_c00458{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);}
.m46_c00458{transform:matrix(0.171099,-0.003764,0.005499,0.249940,0,0);-ms-transform:matrix(0.171099,-0.003764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171099,-0.003764,0.005499,0.249940,0,0);}
.m50_c00458{transform:matrix(0.171194,-0.003766,0.005499,0.249940,0,0);-ms-transform:matrix(0.171194,-0.003766,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171194,-0.003766,0.005499,0.249940,0,0);}
.m11_c00458{transform:matrix(0.171236,-0.003425,0.004999,0.249950,0,0);-ms-transform:matrix(0.171236,-0.003425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171236,-0.003425,0.004999,0.249950,0,0);}
.mae_c00458{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);}
.m96_c00458{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);}
.m98_c00458{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.mfd_c00458{transform:matrix(0.175611,-0.003688,0.005249,0.249945,0,0);-ms-transform:matrix(0.175611,-0.003688,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175611,-0.003688,0.005249,0.249945,0,0);}
.m36_c00458{transform:matrix(0.177732,-0.003910,0.005499,0.249940,0,0);-ms-transform:matrix(0.177732,-0.003910,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177732,-0.003910,0.005499,0.249940,0,0);}
.m2f_c00458{transform:matrix(0.177967,-0.003915,0.005499,0.249940,0,0);-ms-transform:matrix(0.177967,-0.003915,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177967,-0.003915,0.005499,0.249940,0,0);}
.m5c_c00458{transform:matrix(0.179207,-0.003943,0.005499,0.249940,0,0);-ms-transform:matrix(0.179207,-0.003943,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179207,-0.003943,0.005499,0.249940,0,0);}
.m48_c00458{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);}
.m12_c00458{transform:matrix(0.181094,-0.003622,0.004999,0.249950,0,0);-ms-transform:matrix(0.181094,-0.003622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181094,-0.003622,0.004999,0.249950,0,0);}
.m43_c00458{transform:matrix(0.181601,-0.003995,0.005499,0.249940,0,0);-ms-transform:matrix(0.181601,-0.003995,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181601,-0.003995,0.005499,0.249940,0,0);}
.m77_c00458{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);}
.mcd_c00458{transform:matrix(0.182198,-0.004373,0.005998,0.249928,0,0);-ms-transform:matrix(0.182198,-0.004373,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182198,-0.004373,0.005998,0.249928,0,0);}
.ma4_c00458{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);}
.m7_c00458{transform:matrix(0.184578,-0.003692,0.004999,0.249950,0,0);-ms-transform:matrix(0.184578,-0.003692,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184578,-0.003692,0.004999,0.249950,0,0);}
.ma7_c00458{transform:matrix(0.185021,-0.002960,0.003999,0.249968,0,0);-ms-transform:matrix(0.185021,-0.002960,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185021,-0.002960,0.003999,0.249968,0,0);}
.m35_c00458{transform:matrix(0.186665,-0.004107,0.005499,0.249940,0,0);-ms-transform:matrix(0.186665,-0.004107,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186665,-0.004107,0.005499,0.249940,0,0);}
.m32_c00458{transform:matrix(0.186750,-0.004108,0.005499,0.249940,0,0);-ms-transform:matrix(0.186750,-0.004108,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186750,-0.004108,0.005499,0.249940,0,0);}
.mb4_c00458{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);}
.m47_c00458{transform:matrix(0.187205,-0.004119,0.005499,0.249940,0,0);-ms-transform:matrix(0.187205,-0.004119,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187205,-0.004119,0.005499,0.249940,0,0);}
.me0_c00458{transform:matrix(0.187316,-0.004496,0.005998,0.249928,0,0);-ms-transform:matrix(0.187316,-0.004496,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187316,-0.004496,0.005998,0.249928,0,0);}
.m76_c00458{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);}
.mc9_c00458{transform:matrix(0.187790,-0.003380,0.004499,0.249960,0,0);-ms-transform:matrix(0.187790,-0.003380,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187790,-0.003380,0.004499,0.249960,0,0);}
.m6e_c00458{transform:matrix(0.188132,-0.003763,0.004999,0.249950,0,0);-ms-transform:matrix(0.188132,-0.003763,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188132,-0.003763,0.004999,0.249950,0,0);}
.m34_c00458{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);}
.m5d_c00458{transform:matrix(0.189264,-0.004164,0.005499,0.249940,0,0);-ms-transform:matrix(0.189264,-0.004164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189264,-0.004164,0.005499,0.249940,0,0);}
.mb1_c00458{transform:matrix(0.189821,-0.003037,0.003999,0.249968,0,0);-ms-transform:matrix(0.189821,-0.003037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189821,-0.003037,0.003999,0.249968,0,0);}
.m9d_c00458{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);}
.m9c_c00458{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);}
.m67_c00458{transform:matrix(0.191534,-0.004214,0.005499,0.249940,0,0);-ms-transform:matrix(0.191534,-0.004214,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191534,-0.004214,0.005499,0.249940,0,0);}
.mc3_c00458{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_c00458{transform:matrix(0.192085,-0.004610,0.005998,0.249928,0,0);-ms-transform:matrix(0.192085,-0.004610,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192085,-0.004610,0.005998,0.249928,0,0);}
.m3d_c00458{transform:matrix(0.193348,-0.004254,0.005499,0.249940,0,0);-ms-transform:matrix(0.193348,-0.004254,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193348,-0.004254,0.005499,0.249940,0,0);}
.m2c_c00458{transform:matrix(0.193873,-0.004265,0.005499,0.249940,0,0);-ms-transform:matrix(0.193873,-0.004265,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193873,-0.004265,0.005499,0.249940,0,0);}
.ma5_c00458{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);}
.mde_c00458{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);}
.me8_c00458{transform:matrix(0.194414,-0.004666,0.005998,0.249928,0,0);-ms-transform:matrix(0.194414,-0.004666,0.005998,0.249928,0,0);-webkit-transform:matrix(0.194414,-0.004666,0.005998,0.249928,0,0);}
.m52_c00458{transform:matrix(0.195113,-0.004292,0.005499,0.249940,0,0);-ms-transform:matrix(0.195113,-0.004292,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195113,-0.004292,0.005499,0.249940,0,0);}
.meb_c00458{transform:matrix(0.195334,-0.004688,0.005998,0.249928,0,0);-ms-transform:matrix(0.195334,-0.004688,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195334,-0.004688,0.005998,0.249928,0,0);}
.ma_c00458{transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);}
.mf4_c00458{transform:matrix(0.195649,-0.004696,0.005998,0.249928,0,0);-ms-transform:matrix(0.195649,-0.004696,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195649,-0.004696,0.005998,0.249928,0,0);}
.mef_c00458{transform:matrix(0.195824,-0.004700,0.005998,0.249928,0,0);-ms-transform:matrix(0.195824,-0.004700,0.005998,0.249928,0,0);-webkit-transform:matrix(0.195824,-0.004700,0.005998,0.249928,0,0);}
.me9_c00458{transform:matrix(0.196458,-0.004715,0.005998,0.249928,0,0);-ms-transform:matrix(0.196458,-0.004715,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196458,-0.004715,0.005998,0.249928,0,0);}
.m45_c00458{transform:matrix(0.196642,-0.004326,0.005499,0.249940,0,0);-ms-transform:matrix(0.196642,-0.004326,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196642,-0.004326,0.005499,0.249940,0,0);}
.mf1_c00458{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);}
.m26_c00458{transform:matrix(0.197507,-0.004345,0.005499,0.249940,0,0);-ms-transform:matrix(0.197507,-0.004345,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197507,-0.004345,0.005499,0.249940,0,0);}
.m40_c00458{transform:matrix(0.197752,-0.004351,0.005499,0.249940,0,0);-ms-transform:matrix(0.197752,-0.004351,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197752,-0.004351,0.005499,0.249940,0,0);}
.m1_c00458{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);}
.m3f_c00458{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);}
.mfc_c00458{transform:matrix(0.198956,-0.004178,0.005249,0.249945,0,0);-ms-transform:matrix(0.198956,-0.004178,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198956,-0.004178,0.005249,0.249945,0,0);}
.m49_c00458{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);}
.mea_c00458{transform:matrix(0.199872,-0.004797,0.005998,0.249928,0,0);-ms-transform:matrix(0.199872,-0.004797,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199872,-0.004797,0.005998,0.249928,0,0);}
.m72_c00458{transform:matrix(0.200005,-0.004000,0.004999,0.249950,0,0);-ms-transform:matrix(0.200005,-0.004000,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200005,-0.004000,0.004999,0.249950,0,0);}
.m59_c00458{transform:matrix(0.200177,-0.004404,0.005499,0.249940,0,0);-ms-transform:matrix(0.200177,-0.004404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200177,-0.004404,0.005499,0.249940,0,0);}
.m58_c00458{transform:matrix(0.200461,-0.004410,0.005499,0.249940,0,0);-ms-transform:matrix(0.200461,-0.004410,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200461,-0.004410,0.005499,0.249940,0,0);}
.m55_c00458{transform:matrix(0.200776,-0.004417,0.005499,0.249940,0,0);-ms-transform:matrix(0.200776,-0.004417,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200776,-0.004417,0.005499,0.249940,0,0);}
.m9f_c00458{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);}
.maa_c00458{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);}
.mf5_c00458{transform:matrix(0.201132,-0.004827,0.005998,0.249928,0,0);-ms-transform:matrix(0.201132,-0.004827,0.005998,0.249928,0,0);-webkit-transform:matrix(0.201132,-0.004827,0.005998,0.249928,0,0);}
.m15_c00458{transform:matrix(0.201575,-0.004031,0.004999,0.249950,0,0);-ms-transform:matrix(0.201575,-0.004031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201575,-0.004031,0.004999,0.249950,0,0);}
.mf_c00458{transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);-ms-transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);}
.mca_c00458{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);}
.m44_c00458{transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);-ms-transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203296,-0.004473,0.005499,0.249940,0,0);}
.md7_c00458{transform:matrix(0.203531,-0.004885,0.005998,0.249928,0,0);-ms-transform:matrix(0.203531,-0.004885,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203531,-0.004885,0.005998,0.249928,0,0);}
.mdf_c00458{transform:matrix(0.203586,-0.004886,0.005998,0.249928,0,0);-ms-transform:matrix(0.203586,-0.004886,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203586,-0.004886,0.005998,0.249928,0,0);}
.m63_c00458{transform:matrix(0.203781,-0.004483,0.005499,0.249940,0,0);-ms-transform:matrix(0.203781,-0.004483,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203781,-0.004483,0.005499,0.249940,0,0);}
.m8_c00458{transform:matrix(0.203974,-0.004079,0.004999,0.249950,0,0);-ms-transform:matrix(0.203974,-0.004079,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203974,-0.004079,0.004999,0.249950,0,0);}
.ma9_c00458{transform:matrix(0.204089,-0.003265,0.003999,0.249968,0,0);-ms-transform:matrix(0.204089,-0.003265,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204089,-0.003265,0.003999,0.249968,0,0);}
.m4e_c00458{transform:matrix(0.204406,-0.004497,0.005499,0.249940,0,0);-ms-transform:matrix(0.204406,-0.004497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204406,-0.004497,0.005499,0.249940,0,0);}
.m4c_c00458{transform:matrix(0.204890,-0.004508,0.005499,0.249940,0,0);-ms-transform:matrix(0.204890,-0.004508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204890,-0.004508,0.005499,0.249940,0,0);}
.mf9_c00458{transform:matrix(0.205681,-0.004936,0.005998,0.249928,0,0);-ms-transform:matrix(0.205681,-0.004936,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205681,-0.004936,0.005998,0.249928,0,0);}
.md5_c00458{transform:matrix(0.205946,-0.004943,0.005998,0.249928,0,0);-ms-transform:matrix(0.205946,-0.004943,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205946,-0.004943,0.005998,0.249928,0,0);}
.m56_c00458{transform:matrix(0.205980,-0.004532,0.005499,0.249940,0,0);-ms-transform:matrix(0.205980,-0.004532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205980,-0.004532,0.005499,0.249940,0,0);}
.m62_c00458{transform:matrix(0.206225,-0.004537,0.005499,0.249940,0,0);-ms-transform:matrix(0.206225,-0.004537,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206225,-0.004537,0.005499,0.249940,0,0);}
.m3b_c00458{transform:matrix(0.206235,-0.004537,0.005499,0.249940,0,0);-ms-transform:matrix(0.206235,-0.004537,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206235,-0.004537,0.005499,0.249940,0,0);}
.mb_c00458{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);}
.m37_c00458{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);}
.ma6_c00458{transform:matrix(0.207578,-0.003321,0.003999,0.249968,0,0);-ms-transform:matrix(0.207578,-0.003321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207578,-0.003321,0.003999,0.249968,0,0);}
.m5f_c00458{transform:matrix(0.210049,-0.004621,0.005499,0.249940,0,0);-ms-transform:matrix(0.210049,-0.004621,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210049,-0.004621,0.005499,0.249940,0,0);}
.m5a_c00458{transform:matrix(0.210444,-0.004630,0.005499,0.249940,0,0);-ms-transform:matrix(0.210444,-0.004630,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210444,-0.004630,0.005499,0.249940,0,0);}
.m0_c00458{transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);-ms-transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);}
.ma0_c00458{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);}
.m54_c00458{transform:matrix(0.212164,-0.004668,0.005499,0.249940,0,0);-ms-transform:matrix(0.212164,-0.004668,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212164,-0.004668,0.005499,0.249940,0,0);}
.me2_c00458{transform:matrix(0.212969,-0.005111,0.005998,0.249928,0,0);-ms-transform:matrix(0.212969,-0.005111,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212969,-0.005111,0.005998,0.249928,0,0);}
.ma1_c00458{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);}
.m4d_c00458{transform:matrix(0.213558,-0.004698,0.005499,0.249940,0,0);-ms-transform:matrix(0.213558,-0.004698,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213558,-0.004698,0.005499,0.249940,0,0);}
.m4_c00458{transform:matrix(0.214345,-0.003858,0.004499,0.249960,0,0);-ms-transform:matrix(0.214345,-0.003858,0.004499,0.249960,0,0);-webkit-transform:matrix(0.214345,-0.003858,0.004499,0.249960,0,0);}
.me3_c00458{transform:matrix(0.215188,-0.005165,0.005998,0.249928,0,0);-ms-transform:matrix(0.215188,-0.005165,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215188,-0.005165,0.005998,0.249928,0,0);}
.m94_c00458{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);}
.mbd_c00458{transform:matrix(0.215269,-0.003660,0.004249,0.249964,0,0);-ms-transform:matrix(0.215269,-0.003660,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215269,-0.003660,0.004249,0.249964,0,0);}
.m65_c00458{transform:matrix(0.215463,-0.004740,0.005499,0.249940,0,0);-ms-transform:matrix(0.215463,-0.004740,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215463,-0.004740,0.005499,0.249940,0,0);}
.m6b_c00458{transform:matrix(0.215707,-0.004314,0.004999,0.249950,0,0);-ms-transform:matrix(0.215707,-0.004314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215707,-0.004314,0.004999,0.249950,0,0);}
.m38_c00458{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);}
.m17_c00458{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);}
.m95_c00458{transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{transform:matrix(0.217861,-0.004357,0.004999,0.249950,0,0);-ms-transform:matrix(0.217861,-0.004357,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217861,-0.004357,0.004999,0.249950,0,0);}
.m28_c00458{transform:matrix(0.220342,-0.004848,0.005499,0.249940,0,0);-ms-transform:matrix(0.220342,-0.004848,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220342,-0.004848,0.005499,0.249940,0,0);}
.m81_c00458{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);}
.m92_c00458{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);}
.mf8_c00458{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);}
.m2e_c00458{transform:matrix(0.222711,-0.004900,0.005499,0.249940,0,0);-ms-transform:matrix(0.222711,-0.004900,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222711,-0.004900,0.005499,0.249940,0,0);}
.mec_c00458{transform:matrix(0.223116,-0.005355,0.005998,0.249928,0,0);-ms-transform:matrix(0.223116,-0.005355,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223116,-0.005355,0.005998,0.249928,0,0);}
.m1a_c00458{transform:matrix(0.223400,-0.004468,0.004999,0.249950,0,0);-ms-transform:matrix(0.223400,-0.004468,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223400,-0.004468,0.004999,0.249950,0,0);}
.m30_c00458{transform:matrix(0.223701,-0.004921,0.005499,0.249940,0,0);-ms-transform:matrix(0.223701,-0.004921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223701,-0.004921,0.005499,0.249940,0,0);}
.m80_c00458{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);}
.mf6_c00458{transform:matrix(0.223871,-0.005373,0.005998,0.249928,0,0);-ms-transform:matrix(0.223871,-0.005373,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223871,-0.005373,0.005998,0.249928,0,0);}
.mdd_c00458{transform:matrix(0.225815,-0.005420,0.005998,0.249928,0,0);-ms-transform:matrix(0.225815,-0.005420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225815,-0.005420,0.005998,0.249928,0,0);}
.m91_c00458{transform:matrix(0.226061,-0.003617,0.003999,0.249968,0,0);-ms-transform:matrix(0.226061,-0.003617,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226061,-0.003617,0.003999,0.249968,0,0);}
.m2b_c00458{transform:matrix(0.226400,-0.004981,0.005499,0.249940,0,0);-ms-transform:matrix(0.226400,-0.004981,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226400,-0.004981,0.005499,0.249940,0,0);}
.mb6_c00458{transform:matrix(0.226797,-0.003856,0.004249,0.249964,0,0);-ms-transform:matrix(0.226797,-0.003856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226797,-0.003856,0.004249,0.249964,0,0);}
.mb9_c00458{transform:matrix(0.227612,-0.003869,0.004249,0.249964,0,0);-ms-transform:matrix(0.227612,-0.003869,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227612,-0.003869,0.004249,0.249964,0,0);}
.mff_c00458{transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);-ms-transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);}
.mf7_c00458{transform:matrix(0.229944,-0.005519,0.005998,0.249928,0,0);-ms-transform:matrix(0.229944,-0.005519,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229944,-0.005519,0.005998,0.249928,0,0);}
.mce_c00458{transform:matrix(0.231378,-0.005553,0.005998,0.249928,0,0);-ms-transform:matrix(0.231378,-0.005553,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231378,-0.005553,0.005998,0.249928,0,0);}
.m3c_c00458{transform:matrix(0.231464,-0.005092,0.005499,0.249940,0,0);-ms-transform:matrix(0.231464,-0.005092,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231464,-0.005092,0.005499,0.249940,0,0);}
.m6f_c00458{transform:matrix(0.231534,-0.004631,0.004999,0.249950,0,0);-ms-transform:matrix(0.231534,-0.004631,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231534,-0.004631,0.004999,0.249950,0,0);}
.m8b_c00458{transform:matrix(0.232735,-0.003724,0.003999,0.249968,0,0);-ms-transform:matrix(0.232735,-0.003724,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232735,-0.003724,0.003999,0.249968,0,0);}
.me4_c00458{transform:matrix(0.232763,-0.005586,0.005998,0.249928,0,0);-ms-transform:matrix(0.232763,-0.005586,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232763,-0.005586,0.005998,0.249928,0,0);}
.m3e_c00458{transform:matrix(0.232809,-0.005122,0.005499,0.249940,0,0);-ms-transform:matrix(0.232809,-0.005122,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232809,-0.005122,0.005499,0.249940,0,0);}
.me_c00458{transform:matrix(0.233303,-0.004666,0.004999,0.249950,0,0);-ms-transform:matrix(0.233303,-0.004666,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233303,-0.004666,0.004999,0.249950,0,0);}
.m61_c00458{transform:matrix(0.233464,-0.005136,0.005499,0.249940,0,0);-ms-transform:matrix(0.233464,-0.005136,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233464,-0.005136,0.005499,0.249940,0,0);}
.m14_c00458{transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);-ms-transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233603,-0.004672,0.004999,0.249950,0,0);}
.md4_c00458{transform:matrix(0.234942,-0.005639,0.005998,0.249928,0,0);-ms-transform:matrix(0.234942,-0.005639,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234942,-0.005639,0.005998,0.249928,0,0);}
.m4a_c00458{transform:matrix(0.235318,-0.005177,0.005499,0.249940,0,0);-ms-transform:matrix(0.235318,-0.005177,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235318,-0.005177,0.005499,0.249940,0,0);}
.m71_c00458{transform:matrix(0.235548,-0.004711,0.004999,0.249950,0,0);-ms-transform:matrix(0.235548,-0.004711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235548,-0.004711,0.004999,0.249950,0,0);}
.mfb_c00458{transform:matrix(0.237678,-0.004991,0.005249,0.249945,0,0);-ms-transform:matrix(0.237678,-0.004991,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237678,-0.004991,0.005249,0.249945,0,0);}
.mdc_c00458{transform:matrix(0.237742,-0.005706,0.005998,0.249928,0,0);-ms-transform:matrix(0.237742,-0.005706,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237742,-0.005706,0.005998,0.249928,0,0);}
.m60_c00458{transform:matrix(0.237962,-0.005235,0.005499,0.249940,0,0);-ms-transform:matrix(0.237962,-0.005235,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237962,-0.005235,0.005499,0.249940,0,0);}
.m33_c00458{transform:matrix(0.238057,-0.005237,0.005499,0.249940,0,0);-ms-transform:matrix(0.238057,-0.005237,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238057,-0.005237,0.005499,0.249940,0,0);}
.m5e_c00458{transform:matrix(0.238557,-0.005248,0.005499,0.249940,0,0);-ms-transform:matrix(0.238557,-0.005248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238557,-0.005248,0.005499,0.249940,0,0);}
.m6_c00458{transform:matrix(0.239577,-0.004792,0.004999,0.249950,0,0);-ms-transform:matrix(0.239577,-0.004792,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239577,-0.004792,0.004999,0.249950,0,0);}
.me7_c00458{transform:matrix(0.240001,-0.005760,0.005998,0.249928,0,0);-ms-transform:matrix(0.240001,-0.005760,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240001,-0.005760,0.005998,0.249928,0,0);}
.m1b_c00458{transform:matrix(0.240602,-0.004812,0.004999,0.249950,0,0);-ms-transform:matrix(0.240602,-0.004812,0.004999,0.249950,0,0);-webkit-transform:matrix(0.240602,-0.004812,0.004999,0.249950,0,0);}
.m87_c00458{transform:matrix(0.241344,-0.003862,0.003999,0.249968,0,0);-ms-transform:matrix(0.241344,-0.003862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241344,-0.003862,0.003999,0.249968,0,0);}
.m70_c00458{transform:matrix(0.241962,-0.004839,0.004999,0.249950,0,0);-ms-transform:matrix(0.241962,-0.004839,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241962,-0.004839,0.004999,0.249950,0,0);}
.ma2_c00458{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);}
.m74_c00458{transform:matrix(0.242512,-0.004850,0.004999,0.249950,0,0);-ms-transform:matrix(0.242512,-0.004850,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242512,-0.004850,0.004999,0.249950,0,0);}
.me6_c00458{transform:matrix(0.244255,-0.005862,0.005998,0.249928,0,0);-ms-transform:matrix(0.244255,-0.005862,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244255,-0.005862,0.005998,0.249928,0,0);}
.m89_c00458{transform:matrix(0.246208,-0.003939,0.003999,0.249968,0,0);-ms-transform:matrix(0.246208,-0.003939,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246208,-0.003939,0.003999,0.249968,0,0);}
.mf0_c00458{transform:matrix(0.246409,-0.005914,0.005998,0.249928,0,0);-ms-transform:matrix(0.246409,-0.005914,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246409,-0.005914,0.005998,0.249928,0,0);}
.m64_c00458{transform:matrix(0.246835,-0.005430,0.005499,0.249940,0,0);-ms-transform:matrix(0.246835,-0.005430,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246835,-0.005430,0.005499,0.249940,0,0);}
.mbf_c00458{transform:matrix(0.246869,-0.004197,0.004249,0.249964,0,0);-ms-transform:matrix(0.246869,-0.004197,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246869,-0.004197,0.004249,0.249964,0,0);}
.m73_c00458{transform:matrix(0.246926,-0.004939,0.004999,0.249950,0,0);-ms-transform:matrix(0.246926,-0.004939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246926,-0.004939,0.004999,0.249950,0,0);}
.mc_c00458{transform:matrix(0.247201,-0.004944,0.004999,0.249950,0,0);-ms-transform:matrix(0.247201,-0.004944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247201,-0.004944,0.004999,0.249950,0,0);}
.mab_c00458{transform:matrix(0.247473,-0.003960,0.003999,0.249968,0,0);-ms-transform:matrix(0.247473,-0.003960,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247473,-0.003960,0.003999,0.249968,0,0);}
.m6d_c00458{transform:matrix(0.247481,-0.004950,0.004999,0.249950,0,0);-ms-transform:matrix(0.247481,-0.004950,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247481,-0.004950,0.004999,0.249950,0,0);}
.m57_c00458{transform:matrix(0.247910,-0.005454,0.005499,0.249940,0,0);-ms-transform:matrix(0.247910,-0.005454,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247910,-0.005454,0.005499,0.249940,0,0);}
.m66_c00458{transform:matrix(0.248030,-0.005457,0.005499,0.249940,0,0);-ms-transform:matrix(0.248030,-0.005457,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248030,-0.005457,0.005499,0.249940,0,0);}
.mcc_c00458{transform:matrix(0.248328,-0.005960,0.005998,0.249928,0,0);-ms-transform:matrix(0.248328,-0.005960,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248328,-0.005960,0.005998,0.249928,0,0);}
.m2a_c00458{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);}
.m4b_c00458{transform:matrix(0.250629,-0.005514,0.005499,0.249940,0,0);-ms-transform:matrix(0.250629,-0.005514,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250629,-0.005514,0.005499,0.249940,0,0);}
.md8_c00458{transform:matrix(0.253072,-0.006074,0.005998,0.249928,0,0);-ms-transform:matrix(0.253072,-0.006074,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253072,-0.006074,0.005998,0.249928,0,0);}
.m8d_c00458{transform:matrix(0.253708,-0.004059,0.003999,0.249968,0,0);-ms-transform:matrix(0.253708,-0.004059,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253708,-0.004059,0.003999,0.249968,0,0);}
.m23_c00458{transform:matrix(0.257323,-0.005661,0.005499,0.249940,0,0);-ms-transform:matrix(0.257323,-0.005661,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257323,-0.005661,0.005499,0.249940,0,0);}
.mee_c00458{transform:matrix(0.257641,-0.006183,0.005998,0.249928,0,0);-ms-transform:matrix(0.257641,-0.006183,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257641,-0.006183,0.005998,0.249928,0,0);}
.mb5_c00458{transform:matrix(0.257663,-0.004380,0.004249,0.249964,0,0);-ms-transform:matrix(0.257663,-0.004380,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257663,-0.004380,0.004249,0.249964,0,0);}
.m9e_c00458{transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00458{transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);-ms-transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);}
.m25_c00458{transform:matrix(0.257933,-0.005675,0.005499,0.249940,0,0);-ms-transform:matrix(0.257933,-0.005675,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257933,-0.005675,0.005499,0.249940,0,0);}
.mdb_c00458{transform:matrix(0.262175,-0.006292,0.005998,0.249928,0,0);-ms-transform:matrix(0.262175,-0.006292,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262175,-0.006292,0.005998,0.249928,0,0);}
.med_c00458{transform:matrix(0.264279,-0.006343,0.005998,0.249928,0,0);-ms-transform:matrix(0.264279,-0.006343,0.005998,0.249928,0,0);-webkit-transform:matrix(0.264279,-0.006343,0.005998,0.249928,0,0);}
.m86_c00458{transform:matrix(0.265756,-0.004252,0.003999,0.249968,0,0);-ms-transform:matrix(0.265756,-0.004252,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265756,-0.004252,0.003999,0.249968,0,0);}
.m7c_c00458{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);}
.m5b_c00458{transform:matrix(0.268540,-0.005908,0.005499,0.249940,0,0);-ms-transform:matrix(0.268540,-0.005908,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268540,-0.005908,0.005499,0.249940,0,0);}
.mb8_c00458{transform:matrix(0.271411,-0.004614,0.004249,0.249964,0,0);-ms-transform:matrix(0.271411,-0.004614,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271411,-0.004614,0.004249,0.249964,0,0);}
.m101_c00458{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);}
.md9_c00458{transform:matrix(0.272127,-0.006531,0.005998,0.249928,0,0);-ms-transform:matrix(0.272127,-0.006531,0.005998,0.249928,0,0);-webkit-transform:matrix(0.272127,-0.006531,0.005998,0.249928,0,0);}
.m69_c00458{transform:matrix(0.275875,-0.005517,0.004999,0.249950,0,0);-ms-transform:matrix(0.275875,-0.005517,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275875,-0.005517,0.004999,0.249950,0,0);}
.me1_c00458{transform:matrix(0.275916,-0.006622,0.005998,0.249928,0,0);-ms-transform:matrix(0.275916,-0.006622,0.005998,0.249928,0,0);-webkit-transform:matrix(0.275916,-0.006622,0.005998,0.249928,0,0);}
.mc1_c00458{transform:matrix(0.276285,-0.004697,0.004249,0.249964,0,0);-ms-transform:matrix(0.276285,-0.004697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276285,-0.004697,0.004249,0.249964,0,0);}
.md6_c00458{transform:matrix(0.278660,-0.006688,0.005998,0.249928,0,0);-ms-transform:matrix(0.278660,-0.006688,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278660,-0.006688,0.005998,0.249928,0,0);}
.m7d_c00458{transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.280462,-0.006170,0.005499,0.249940,0,0);-ms-transform:matrix(0.280462,-0.006170,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280462,-0.006170,0.005499,0.249940,0,0);}
.m88_c00458{transform:matrix(0.281129,-0.004498,0.003999,0.249968,0,0);-ms-transform:matrix(0.281129,-0.004498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281129,-0.004498,0.003999,0.249968,0,0);}
.mad_c00458{transform:matrix(0.282034,-0.004513,0.003999,0.249968,0,0);-ms-transform:matrix(0.282034,-0.004513,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282034,-0.004513,0.003999,0.249968,0,0);}
.m27_c00458{transform:matrix(0.288430,-0.006345,0.005499,0.249940,0,0);-ms-transform:matrix(0.288430,-0.006345,0.005499,0.249940,0,0);-webkit-transform:matrix(0.288430,-0.006345,0.005499,0.249940,0,0);}
.mc0_c00458{transform:matrix(0.289808,-0.004927,0.004249,0.249964,0,0);-ms-transform:matrix(0.289808,-0.004927,0.004249,0.249964,0,0);-webkit-transform:matrix(0.289808,-0.004927,0.004249,0.249964,0,0);}
.maf_c00458{transform:matrix(0.292558,-0.004681,0.003999,0.249968,0,0);-ms-transform:matrix(0.292558,-0.004681,0.003999,0.249968,0,0);-webkit-transform:matrix(0.292558,-0.004681,0.003999,0.249968,0,0);}
.m83_c00458{transform:matrix(0.296337,-0.004741,0.003999,0.249968,0,0);-ms-transform:matrix(0.296337,-0.004741,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296337,-0.004741,0.003999,0.249968,0,0);}
.m51_c00458{transform:matrix(0.296773,-0.006529,0.005499,0.249940,0,0);-ms-transform:matrix(0.296773,-0.006529,0.005499,0.249940,0,0);-webkit-transform:matrix(0.296773,-0.006529,0.005499,0.249940,0,0);}
.m6a_c00458{transform:matrix(0.298325,-0.005967,0.004999,0.249950,0,0);-ms-transform:matrix(0.298325,-0.005967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.298325,-0.005967,0.004999,0.249950,0,0);}
.mf2_c00458{transform:matrix(0.299634,-0.007191,0.005998,0.249928,0,0);-ms-transform:matrix(0.299634,-0.007191,0.005998,0.249928,0,0);-webkit-transform:matrix(0.299634,-0.007191,0.005998,0.249928,0,0);}
.m18_c00458{transform:matrix(0.301020,-0.006020,0.004999,0.249950,0,0);-ms-transform:matrix(0.301020,-0.006020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301020,-0.006020,0.004999,0.249950,0,0);}
.m8e_c00458{transform:matrix(0.301586,-0.004825,0.003999,0.249968,0,0);-ms-transform:matrix(0.301586,-0.004825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301586,-0.004825,0.003999,0.249968,0,0);}
.m22_c00458{transform:matrix(0.301942,-0.006643,0.005499,0.249940,0,0);-ms-transform:matrix(0.301942,-0.006643,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301942,-0.006643,0.005499,0.249940,0,0);}
.m90_c00458{transform:matrix(0.302441,-0.004839,0.003999,0.249968,0,0);-ms-transform:matrix(0.302441,-0.004839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.302441,-0.004839,0.003999,0.249968,0,0);}
.m19_c00458{transform:matrix(0.311908,-0.006238,0.004999,0.249950,0,0);-ms-transform:matrix(0.311908,-0.006238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.311908,-0.006238,0.004999,0.249950,0,0);}
.m85_c00458{transform:matrix(0.313235,-0.005012,0.003999,0.249968,0,0);-ms-transform:matrix(0.313235,-0.005012,0.003999,0.249968,0,0);-webkit-transform:matrix(0.313235,-0.005012,0.003999,0.249968,0,0);}
.m8a_c00458{transform:matrix(0.314870,-0.005038,0.003999,0.249968,0,0);-ms-transform:matrix(0.314870,-0.005038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.314870,-0.005038,0.003999,0.249968,0,0);}
.mb3_c00458{transform:matrix(0.315325,-0.005045,0.003999,0.249968,0,0);-ms-transform:matrix(0.315325,-0.005045,0.003999,0.249968,0,0);-webkit-transform:matrix(0.315325,-0.005045,0.003999,0.249968,0,0);}
.mbe_c00458{transform:matrix(0.317844,-0.005403,0.004249,0.249964,0,0);-ms-transform:matrix(0.317844,-0.005403,0.004249,0.249964,0,0);-webkit-transform:matrix(0.317844,-0.005403,0.004249,0.249964,0,0);}
.m29_c00458{transform:matrix(0.320877,-0.007059,0.005499,0.249940,0,0);-ms-transform:matrix(0.320877,-0.007059,0.005499,0.249940,0,0);-webkit-transform:matrix(0.320877,-0.007059,0.005499,0.249940,0,0);}
.md_c00458{transform:matrix(0.325110,-0.006502,0.004999,0.249950,0,0);-ms-transform:matrix(0.325110,-0.006502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.325110,-0.006502,0.004999,0.249950,0,0);}
.m84_c00458{transform:matrix(0.328638,-0.005258,0.003999,0.249968,0,0);-ms-transform:matrix(0.328638,-0.005258,0.003999,0.249968,0,0);-webkit-transform:matrix(0.328638,-0.005258,0.003999,0.249968,0,0);}
.me5_c00458{transform:matrix(0.336338,-0.008072,0.005998,0.249928,0,0);-ms-transform:matrix(0.336338,-0.008072,0.005998,0.249928,0,0);-webkit-transform:matrix(0.336338,-0.008072,0.005998,0.249928,0,0);}
.m9a_c00458{transform:matrix(0.340635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340635,0.000000,0.000000,0.250000,0,0);}
.mb7_c00458{transform:matrix(0.340836,-0.005794,0.004249,0.249964,0,0);-ms-transform:matrix(0.340836,-0.005794,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340836,-0.005794,0.004249,0.249964,0,0);}
.md3_c00458{transform:matrix(0.344861,-0.008277,0.005998,0.249928,0,0);-ms-transform:matrix(0.344861,-0.008277,0.005998,0.249928,0,0);-webkit-transform:matrix(0.344861,-0.008277,0.005998,0.249928,0,0);}
.ma3_c00458{transform:matrix(0.345025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.347761,-0.007651,0.005499,0.249940,0,0);-ms-transform:matrix(0.347761,-0.007651,0.005499,0.249940,0,0);-webkit-transform:matrix(0.347761,-0.007651,0.005499,0.249940,0,0);}
.md2_c00458{transform:matrix(0.351324,-0.008432,0.005998,0.249928,0,0);-ms-transform:matrix(0.351324,-0.008432,0.005998,0.249928,0,0);-webkit-transform:matrix(0.351324,-0.008432,0.005998,0.249928,0,0);}
.m7e_c00458{transform:matrix(0.363515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363515,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.371681,-0.007434,0.004999,0.249950,0,0);-ms-transform:matrix(0.371681,-0.007434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.371681,-0.007434,0.004999,0.249950,0,0);}
.mcf_c00458{transform:matrix(0.392667,-0.009424,0.005998,0.249928,0,0);-ms-transform:matrix(0.392667,-0.009424,0.005998,0.249928,0,0);-webkit-transform:matrix(0.392667,-0.009424,0.005998,0.249928,0,0);}
.mcb_c00458{transform:matrix(0.399715,-0.009593,0.005998,0.249928,0,0);-ms-transform:matrix(0.399715,-0.009593,0.005998,0.249928,0,0);-webkit-transform:matrix(0.399715,-0.009593,0.005998,0.249928,0,0);}
.m82_c00458{transform:matrix(0.400944,-0.006415,0.003999,0.249968,0,0);-ms-transform:matrix(0.400944,-0.006415,0.003999,0.249968,0,0);-webkit-transform:matrix(0.400944,-0.006415,0.003999,0.249968,0,0);}
.m1e_c00458{transform:matrix(0.401118,-0.008825,0.005499,0.249940,0,0);-ms-transform:matrix(0.401118,-0.008825,0.005499,0.249940,0,0);-webkit-transform:matrix(0.401118,-0.008825,0.005499,0.249940,0,0);}
.m7f_c00458{transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00458{transform:matrix(0.409813,-0.006557,0.003999,0.249968,0,0);-ms-transform:matrix(0.409813,-0.006557,0.003999,0.249968,0,0);-webkit-transform:matrix(0.409813,-0.006557,0.003999,0.249968,0,0);}
.mda_c00458{transform:matrix(0.421719,-0.010121,0.005998,0.249928,0,0);-ms-transform:matrix(0.421719,-0.010121,0.005998,0.249928,0,0);-webkit-transform:matrix(0.421719,-0.010121,0.005998,0.249928,0,0);}
.m1f_c00458{transform:matrix(0.432430,-0.009513,0.005499,0.249940,0,0);-ms-transform:matrix(0.432430,-0.009513,0.005499,0.249940,0,0);-webkit-transform:matrix(0.432430,-0.009513,0.005499,0.249940,0,0);}
.mac_c00458{transform:matrix(0.454122,-0.007266,0.003999,0.249968,0,0);-ms-transform:matrix(0.454122,-0.007266,0.003999,0.249968,0,0);-webkit-transform:matrix(0.454122,-0.007266,0.003999,0.249968,0,0);}
.mbb_c00458{transform:matrix(0.479326,-0.008149,0.004249,0.249964,0,0);-ms-transform:matrix(0.479326,-0.008149,0.004249,0.249964,0,0);-webkit-transform:matrix(0.479326,-0.008149,0.004249,0.249964,0,0);}
.m20_c00458{transform:matrix(0.500484,-0.011011,0.005499,0.249940,0,0);-ms-transform:matrix(0.500484,-0.011011,0.005499,0.249940,0,0);-webkit-transform:matrix(0.500484,-0.011011,0.005499,0.249940,0,0);}
.m7b_c00458{transform:matrix(0.506980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506980,0.000000,0.000000,0.250000,0,0);}
.m79_c00458{transform:matrix(0.516770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516770,0.000000,0.000000,0.250000,0,0);}
.mbc_c00458{transform:matrix(0.524139,-0.008910,0.004249,0.249964,0,0);-ms-transform:matrix(0.524139,-0.008910,0.004249,0.249964,0,0);-webkit-transform:matrix(0.524139,-0.008910,0.004249,0.249964,0,0);}
.mc4_c00458{transform:matrix(0.533998,-0.009078,0.004249,0.249964,0,0);-ms-transform:matrix(0.533998,-0.009078,0.004249,0.249964,0,0);-webkit-transform:matrix(0.533998,-0.009078,0.004249,0.249964,0,0);}
.mc2_c00458{transform:matrix(0.540997,-0.009197,0.004249,0.249964,0,0);-ms-transform:matrix(0.540997,-0.009197,0.004249,0.249964,0,0);-webkit-transform:matrix(0.540997,-0.009197,0.004249,0.249964,0,0);}
.md1_c00458{transform:matrix(0.573360,-0.013761,0.005998,0.249928,0,0);-ms-transform:matrix(0.573360,-0.013761,0.005998,0.249928,0,0);-webkit-transform:matrix(0.573360,-0.013761,0.005998,0.249928,0,0);}
.m7a_c00458{transform:matrix(0.582035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582035,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.582591,-0.010487,0.004499,0.249960,0,0);-ms-transform:matrix(0.582591,-0.010487,0.004499,0.249960,0,0);-webkit-transform:matrix(0.582591,-0.010487,0.004499,0.249960,0,0);}
.m6c_c00458{transform:matrix(0.657179,-0.013144,0.004999,0.249950,0,0);-ms-transform:matrix(0.657179,-0.013144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.657179,-0.013144,0.004999,0.249950,0,0);}
.mc5_c00458{transform:matrix(0.753735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753735,0.000000,0.000000,0.250000,0,0);}
.m97_c00458{transform:matrix(0.803590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803590,0.000000,0.000000,0.250000,0,0);}
.m42_c00458{transform:matrix(0.823846,-0.018125,0.005499,0.249940,0,0);-ms-transform:matrix(0.823846,-0.018125,0.005499,0.249940,0,0);-webkit-transform:matrix(0.823846,-0.018125,0.005499,0.249940,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;}
.fs17_c00458{font-size:44.100000px;}
.fse_c00458{font-size:47.256048px;}
.fs12_c00458{font-size:50.400000px;}
.fs15_c00458{font-size:50.407282px;}
.fs1a_c00458{font-size:50.414513px;}
.fsd_c00458{font-size:51.450000px;}
.fsf_c00458{font-size:51.456585px;}
.fs19_c00458{font-size:51.464815px;}
.fs1b_c00458{font-size:52.515118px;}
.fs1c_c00458{font-size:53.561806px;}
.fs11_c00458{font-size:54.600000px;}
.fs16_c00458{font-size:54.607889px;}
.fs14_c00458{font-size:55.657123px;}
.fs10_c00458{font-size:56.700000px;}
.fs1d_c00458{font-size:57.750000px;}
.fs13_c00458{font-size:57.757392px;}
.fs1_c00458{font-size:63.012599px;}
.fsa_c00458{font-size:66.166006px;}
.fsb_c00458{font-size:68.263649px;}
.fs9_c00458{font-size:68.266515px;}
.fs3_c00458{font-size:69.313859px;}
.fs5_c00458{font-size:69.316769px;}
.fs0_c00458{font-size:70.361396px;}
.fsc_c00458{font-size:70.364069px;}
.fs7_c00458{font-size:70.367023px;}
.fs4_c00458{font-size:71.417277px;}
.fs6_c00458{font-size:72.450000px;}
.fs8_c00458{font-size:72.467531px;}
.fs2_c00458{font-size:73.514699px;}
.fs18_c00458{font-size:94.515308px;}
.y0_c00458{bottom:0.000000px;}
.yad_c00458{bottom:140.906820px;}
.yac_c00458{bottom:140.941500px;}
.yae_c00458{bottom:141.484523px;}
.yaf_c00458{bottom:142.068065px;}
.yb0_c00458{bottom:142.206147px;}
.yb1_c00458{bottom:142.594691px;}
.yb2_c00458{bottom:143.041349px;}
.yb3_c00458{bottom:143.316876px;}
.yb4_c00458{bottom:143.776590px;}
.yb5_c00458{bottom:144.529784px;}
.yb6_c00458{bottom:144.727460px;}
.ya6_c00458{bottom:158.763000px;}
.ya7_c00458{bottom:158.893305px;}
.ya8_c00458{bottom:159.451398px;}
.ya9_c00458{bottom:160.223665px;}
.yaa_c00458{bottom:160.856448px;}
.yab_c00458{bottom:161.173898px;}
.y9e_c00458{bottom:178.482996px;}
.y9f_c00458{bottom:178.483464px;}
.ya5_c00458{bottom:178.483644px;}
.ya0_c00458{bottom:178.483716px;}
.ya2_c00458{bottom:178.483740px;}
.ya4_c00458{bottom:178.483776px;}
.ya3_c00458{bottom:178.484208px;}
.ya1_c00458{bottom:178.484244px;}
.yf3_c00458{bottom:179.857500px;}
.y9c_c00458{bottom:215.136192px;}
.y9d_c00458{bottom:215.136408px;}
.yb7_c00458{bottom:215.916000px;}
.y96_c00458{bottom:230.313000px;}
.y97_c00458{bottom:230.856984px;}
.y98_c00458{bottom:231.445056px;}
.y99_c00458{bottom:232.152264px;}
.y9a_c00458{bottom:232.545888px;}
.y9b_c00458{bottom:232.913592px;}
.yec_c00458{bottom:234.634500px;}
.yed_c00458{bottom:234.957627px;}
.yee_c00458{bottom:235.428017px;}
.yef_c00458{bottom:235.840540px;}
.yf0_c00458{bottom:236.483266px;}
.yf1_c00458{bottom:237.318016px;}
.yf2_c00458{bottom:237.833262px;}
.y95_c00458{bottom:250.089000px;}
.ye6_c00458{bottom:252.431472px;}
.ye7_c00458{bottom:253.203888px;}
.ye8_c00458{bottom:254.139552px;}
.ye9_c00458{bottom:254.688552px;}
.yea_c00458{bottom:255.249036px;}
.yeb_c00458{bottom:255.779688px;}
.y8c_c00458{bottom:266.493000px;}
.y8d_c00458{bottom:266.829000px;}
.y8e_c00458{bottom:267.100500px;}
.y8f_c00458{bottom:267.529500px;}
.y90_c00458{bottom:268.476000px;}
.y91_c00458{bottom:268.777500px;}
.y92_c00458{bottom:268.780500px;}
.y93_c00458{bottom:268.906500px;}
.y94_c00458{bottom:269.253000px;}
.yde_c00458{bottom:270.794628px;}
.ydf_c00458{bottom:271.577652px;}
.ye0_c00458{bottom:272.036964px;}
.ye1_c00458{bottom:272.394240px;}
.ye2_c00458{bottom:273.635892px;}
.ye3_c00458{bottom:274.548420px;}
.ye4_c00458{bottom:275.287656px;}
.ye5_c00458{bottom:275.670948px;}
.y8b_c00458{bottom:284.982000px;}
.yd5_c00458{bottom:288.601236px;}
.yd6_c00458{bottom:289.339536px;}
.yd7_c00458{bottom:289.628772px;}
.yd8_c00458{bottom:289.940784px;}
.yd9_c00458{bottom:290.565192px;}
.yda_c00458{bottom:291.035424px;}
.ydb_c00458{bottom:291.319536px;}
.ydc_c00458{bottom:291.938436px;}
.ydd_c00458{bottom:293.055024px;}
.y83_c00458{bottom:302.400288px;}
.y84_c00458{bottom:302.939520px;}
.y85_c00458{bottom:303.376536px;}
.y86_c00458{bottom:303.868752px;}
.y87_c00458{bottom:304.141560px;}
.y88_c00458{bottom:304.417584px;}
.y89_c00458{bottom:304.840752px;}
.y8a_c00458{bottom:305.429232px;}
.yce_c00458{bottom:306.157284px;}
.ycf_c00458{bottom:306.833712px;}
.yd0_c00458{bottom:307.920924px;}
.yd1_c00458{bottom:308.613948px;}
.yd2_c00458{bottom:308.935176px;}
.yd3_c00458{bottom:310.016196px;}
.yd4_c00458{bottom:310.302204px;}
.y7a_c00458{bottom:320.485500px;}
.y7b_c00458{bottom:320.825988px;}
.y7c_c00458{bottom:321.210420px;}
.y7d_c00458{bottom:321.548316px;}
.y7e_c00458{bottom:322.031268px;}
.y7f_c00458{bottom:322.437084px;}
.y80_c00458{bottom:323.603484px;}
.y81_c00458{bottom:323.974620px;}
.yc6_c00458{bottom:324.253572px;}
.y82_c00458{bottom:324.260604px;}
.yc7_c00458{bottom:324.577536px;}
.yc8_c00458{bottom:325.737828px;}
.yc9_c00458{bottom:326.240208px;}
.yca_c00458{bottom:326.732784px;}
.ycb_c00458{bottom:327.967512px;}
.ycc_c00458{bottom:328.369848px;}
.ycd_c00458{bottom:329.283768px;}
.y79_c00458{bottom:339.895500px;}
.ybd_c00458{bottom:342.181500px;}
.ybe_c00458{bottom:342.835152px;}
.ybf_c00458{bottom:343.412628px;}
.yc0_c00458{bottom:343.984272px;}
.yc1_c00458{bottom:344.657688px;}
.yc2_c00458{bottom:344.915088px;}
.yc3_c00458{bottom:345.855264px;}
.yc4_c00458{bottom:346.379064px;}
.yc5_c00458{bottom:346.826220px;}
.y6f_c00458{bottom:388.801830px;}
.y70_c00458{bottom:389.335710px;}
.y71_c00458{bottom:390.203760px;}
.y72_c00458{bottom:391.101030px;}
.y73_c00458{bottom:393.048810px;}
.y74_c00458{bottom:393.565470px;}
.y75_c00458{bottom:394.319970px;}
.y76_c00458{bottom:394.805460px;}
.y77_c00458{bottom:395.864550px;}
.y78_c00458{bottom:396.751320px;}
.y69_c00458{bottom:412.090500px;}
.y6a_c00458{bottom:412.534620px;}
.y6b_c00458{bottom:413.068260px;}
.y6c_c00458{bottom:413.696910px;}
.y6d_c00458{bottom:414.948060px;}
.y6e_c00458{bottom:415.746240px;}
.yb8_c00458{bottom:415.804500px;}
.yb9_c00458{bottom:416.975733px;}
.yba_c00458{bottom:417.689424px;}
.ybb_c00458{bottom:417.815838px;}
.ybc_c00458{bottom:418.724766px;}
.y61_c00458{bottom:480.040809px;}
.y62_c00458{bottom:480.881634px;}
.y63_c00458{bottom:481.430445px;}
.y64_c00458{bottom:482.770143px;}
.y65_c00458{bottom:483.698085px;}
.y66_c00458{bottom:484.188411px;}
.y67_c00458{bottom:484.965222px;}
.y68_c00458{bottom:486.347034px;}
.y56_c00458{bottom:502.454772px;}
.y57_c00458{bottom:503.567280px;}
.y58_c00458{bottom:504.013551px;}
.y59_c00458{bottom:504.856356px;}
.y5a_c00458{bottom:505.204194px;}
.y5b_c00458{bottom:505.675200px;}
.y5c_c00458{bottom:506.954358px;}
.y5d_c00458{bottom:507.502443px;}
.y5e_c00458{bottom:508.317360px;}
.y5f_c00458{bottom:509.278812px;}
.y60_c00458{bottom:509.614389px;}
.y4c_c00458{bottom:524.872179px;}
.y4d_c00458{bottom:525.448623px;}
.y4e_c00458{bottom:526.701666px;}
.y4f_c00458{bottom:527.308173px;}
.y50_c00458{bottom:528.733806px;}
.y51_c00458{bottom:529.422813px;}
.y52_c00458{bottom:529.848414px;}
.y53_c00458{bottom:530.716743px;}
.y54_c00458{bottom:531.531645px;}
.y55_c00458{bottom:531.883854px;}
.y42_c00458{bottom:547.829172px;}
.y43_c00458{bottom:548.668584px;}
.y44_c00458{bottom:549.423924px;}
.y45_c00458{bottom:550.295991px;}
.y46_c00458{bottom:551.611137px;}
.y47_c00458{bottom:552.574338px;}
.y48_c00458{bottom:553.079493px;}
.y49_c00458{bottom:554.388831px;}
.y4a_c00458{bottom:555.103101px;}
.y4b_c00458{bottom:555.647841px;}
.y39_c00458{bottom:570.366000px;}
.y3a_c00458{bottom:571.214100px;}
.y3b_c00458{bottom:571.845489px;}
.y3c_c00458{bottom:573.783216px;}
.y3d_c00458{bottom:574.823112px;}
.y3e_c00458{bottom:575.981016px;}
.y3f_c00458{bottom:576.448461px;}
.y40_c00458{bottom:577.419057px;}
.y41_c00458{bottom:577.721865px;}
.y38_c00458{bottom:645.010500px;}
.y2c_c00458{bottom:661.764162px;}
.y2d_c00458{bottom:662.212389px;}
.y2e_c00458{bottom:663.452130px;}
.y2f_c00458{bottom:663.812646px;}
.y30_c00458{bottom:664.602609px;}
.y31_c00458{bottom:664.719744px;}
.y32_c00458{bottom:665.198979px;}
.y33_c00458{bottom:665.640852px;}
.y34_c00458{bottom:666.558513px;}
.y35_c00458{bottom:666.942363px;}
.y36_c00458{bottom:667.569825px;}
.y37_c00458{bottom:667.975509px;}
.y22_c00458{bottom:684.457794px;}
.y23_c00458{bottom:685.428060px;}
.y24_c00458{bottom:686.080602px;}
.y25_c00458{bottom:687.673314px;}
.y26_c00458{bottom:688.004898px;}
.y27_c00458{bottom:689.335392px;}
.y28_c00458{bottom:689.855967px;}
.y29_c00458{bottom:690.407331px;}
.y2a_c00458{bottom:691.122045px;}
.y2b_c00458{bottom:692.103069px;}
.y1e_c00458{bottom:706.594500px;}
.y1f_c00458{bottom:707.612616px;}
.y20_c00458{bottom:709.749267px;}
.y21_c00458{bottom:713.492721px;}
.y16_c00458{bottom:730.356000px;}
.y17_c00458{bottom:730.878300px;}
.y18_c00458{bottom:731.704650px;}
.y19_c00458{bottom:732.425070px;}
.y1a_c00458{bottom:734.125620px;}
.y1b_c00458{bottom:734.720160px;}
.y1c_c00458{bottom:735.540900px;}
.y1d_c00458{bottom:736.212840px;}
.yf_c00458{bottom:753.846000px;}
.y10_c00458{bottom:754.650750px;}
.y11_c00458{bottom:755.417400px;}
.y12_c00458{bottom:756.136200px;}
.y13_c00458{bottom:757.432170px;}
.y14_c00458{bottom:758.123670px;}
.y15_c00458{bottom:759.123330px;}
.y7_c00458{bottom:776.524500px;}
.y8_c00458{bottom:777.271290px;}
.y9_c00458{bottom:778.463580px;}
.ya_c00458{bottom:779.604600px;}
.yb_c00458{bottom:779.882430px;}
.yc_c00458{bottom:780.802200px;}
.yd_c00458{bottom:781.737300px;}
.ye_c00458{bottom:782.977320px;}
.y1_c00458{bottom:799.474500px;}
.y2_c00458{bottom:800.041500px;}
.y3_c00458{bottom:801.666441px;}
.y4_c00458{bottom:802.396035px;}
.y5_c00458{bottom:803.237760px;}
.y6_c00458{bottom:804.194937px;}
.h19_c00458{height:44.100000px;}
.h10_c00458{height:47.256048px;}
.h14_c00458{height:50.400000px;}
.h17_c00458{height:50.407282px;}
.h1c_c00458{height:50.414513px;}
.hf_c00458{height:51.450000px;}
.h11_c00458{height:51.456585px;}
.h1b_c00458{height:51.464815px;}
.h1d_c00458{height:52.515118px;}
.h1e_c00458{height:53.561806px;}
.h13_c00458{height:54.600000px;}
.h18_c00458{height:54.607889px;}
.h16_c00458{height:55.657123px;}
.h12_c00458{height:56.700000px;}
.h1f_c00458{height:57.750000px;}
.h15_c00458{height:57.757392px;}
.h3_c00458{height:63.012599px;}
.hc_c00458{height:66.166006px;}
.hd_c00458{height:68.263649px;}
.hb_c00458{height:68.266515px;}
.h5_c00458{height:69.313859px;}
.h7_c00458{height:69.316769px;}
.h2_c00458{height:70.361396px;}
.he_c00458{height:70.364069px;}
.h9_c00458{height:70.367023px;}
.h6_c00458{height:71.417277px;}
.h8_c00458{height:72.450000px;}
.ha_c00458{height:72.467531px;}
.h4_c00458{height:73.514699px;}
.h1a_c00458{height:94.515308px;}
.h1_c00458{height:1005.000000px;}
.h0_c00458{height:1005.150000px;}
.w0_c00458{width:715.200000px;}
.w1_c00458{width:715.500000px;}
.x0_c00458{left:0.000000px;}
.x76_c00458{left:95.493000px;}
.x70_c00458{left:97.926000px;}
.x64_c00458{left:99.030792px;}
.x5f_c00458{left:100.974000px;}
.x66_c00458{left:102.060000px;}
.x75_c00458{left:103.412472px;}
.x59_c00458{left:105.030000px;}
.x67_c00458{left:115.171500px;}
.x5a_c00458{left:119.340000px;}
.x60_c00458{left:122.254500px;}
.x36_c00458{left:126.898500px;}
.x1_c00458{left:130.098000px;}
.xe_c00458{left:131.754000px;}
.x27_c00458{left:132.813705px;}
.x3d_c00458{left:134.723856px;}
.x51_c00458{left:136.180500px;}
.x77_c00458{left:137.329500px;}
.x68_c00458{left:139.185000px;}
.x6c_c00458{left:144.450000px;}
.x61_c00458{left:146.281500px;}
.x5b_c00458{left:148.500000px;}
.x6d_c00458{left:154.170000px;}
.x28_c00458{left:156.393756px;}
.x15_c00458{left:157.599000px;}
.x54_c00458{left:160.130490px;}
.x2_c00458{left:161.598000px;}
.x37_c00458{left:165.448500px;}
.x7_c00458{left:168.003000px;}
.xf_c00458{left:171.991500px;}
.x3e_c00458{left:174.720747px;}
.x1e_c00458{left:176.423448px;}
.x1b_c00458{left:178.234500px;}
.x78_c00458{left:179.778000px;}
.x5c_c00458{left:180.900000px;}
.x52_c00458{left:185.068500px;}
.x69_c00458{left:189.234000px;}
.x45_c00458{left:190.888317px;}
.x38_c00458{left:194.148000px;}
.x5d_c00458{left:195.480000px;}
.x62_c00458{left:197.584500px;}
.x16_c00458{left:198.916500px;}
.x6e_c00458{left:201.960000px;}
.x1f_c00458{left:206.084448px;}
.x4d_c00458{left:207.890817px;}
.x10_c00458{left:210.324000px;}
.x46_c00458{left:213.219807px;}
.x53_c00458{left:216.501000px;}
.x42_c00458{left:218.205822px;}
.x29_c00458{left:221.613546px;}
.x63_c00458{left:222.948000px;}
.x65_c00458{left:225.111792px;}
.x8_c00458{left:227.617500px;}
.x79_c00458{left:228.907500px;}
.x73_c00458{left:233.027844px;}
.x17_c00458{left:234.937500px;}
.x71_c00458{left:237.481500px;}
.x2a_c00458{left:240.592800px;}
.x5e_c00458{left:244.620000px;}
.x11_c00458{left:246.264000px;}
.x74_c00458{left:248.420280px;}
.x3_c00458{left:251.872500px;}
.x47_c00458{left:255.349155px;}
.x6a_c00458{left:256.873500px;}
.x72_c00458{left:260.463000px;}
.x6f_c00458{left:265.950000px;}
.x48_c00458{left:272.728914px;}
.x1c_c00458{left:275.355000px;}
.x20_c00458{left:278.480448px;}
.x2b_c00458{left:282.162039px;}
.x9_c00458{left:284.668500px;}
.x2c_c00458{left:288.304935px;}
.x4_c00458{left:292.405500px;}
.x21_c00458{left:293.552448px;}
.x49_c00458{left:296.252937px;}
.xa_c00458{left:298.560000px;}
.x12_c00458{left:311.062500px;}
.x6b_c00458{left:312.490500px;}
.x2d_c00458{left:313.499085px;}
.x3f_c00458{left:314.885349px;}
.x7a_c00458{left:316.462500px;}
.x18_c00458{left:319.965000px;}
.x4e_c00458{left:327.268704px;}
.x39_c00458{left:329.494500px;}
.x2e_c00458{left:336.722103px;}
.x5_c00458{left:339.168000px;}
.x43_c00458{left:341.894322px;}
.xb_c00458{left:344.548500px;}
.x13_c00458{left:345.637500px;}
.x19_c00458{left:349.692000px;}
.x84_c00458{left:351.266856px;}
.x55_c00458{left:352.410810px;}
.x22_c00458{left:354.029448px;}
.x7d_c00458{left:355.899000px;}
.x40_c00458{left:360.781872px;}
.x9b_c00458{left:363.690000px;}
.x85_c00458{left:365.328180px;}
.x98_c00458{left:366.613500px;}
.x23_c00458{left:377.691948px;}
.x89_c00458{left:380.186340px;}
.x3a_c00458{left:382.126500px;}
.x7e_c00458{left:383.134500px;}
.x2f_c00458{left:385.050804px;}
.x33_c00458{left:386.640000px;}
.x99_c00458{left:389.013000px;}
.xc_c00458{left:391.303500px;}
.x6_c00458{left:392.344500px;}
.x4f_c00458{left:394.006626px;}
.x14_c00458{left:395.620500px;}
.x44_c00458{left:400.709322px;}
.x24_c00458{left:402.753948px;}
.x30_c00458{left:405.227124px;}
.x7b_c00458{left:407.179500px;}
.x56_c00458{left:408.783060px;}
.x34_c00458{left:410.940000px;}
.x8f_c00458{left:412.550112px;}
.x86_c00458{left:415.799904px;}
.x95_c00458{left:421.696668px;}
.x1a_c00458{left:424.326000px;}
.x4a_c00458{left:428.288712px;}
.x90_c00458{left:429.562836px;}
.x7f_c00458{left:431.014500px;}
.x25_c00458{left:435.240948px;}
.x31_c00458{left:438.250302px;}
.x9a_c00458{left:439.263000px;}
.x96_c00458{left:443.633628px;}
.x1d_c00458{left:445.512000px;}
.x3b_c00458{left:447.492000px;}
.xd_c00458{left:453.304500px;}
.x57_c00458{left:456.935640px;}
.x32_c00458{left:459.623721px;}
.x3c_c00458{left:461.256000px;}
.x50_c00458{left:466.707411px;}
.x8c_c00458{left:468.166428px;}
.x80_c00458{left:469.798500px;}
.x8a_c00458{left:471.499500px;}
.x4b_c00458{left:476.356824px;}
.x26_c00458{left:479.832948px;}
.x35_c00458{left:481.140000px;}
.x97_c00458{left:487.284084px;}
.x91_c00458{left:488.677584px;}
.x4c_c00458{left:493.111050px;}
.x58_c00458{left:497.222520px;}
.x7c_c00458{left:504.348000px;}
.x41_c00458{left:507.171606px;}
.x81_c00458{left:508.972500px;}
.x8d_c00458{left:511.170024px;}
.x87_c00458{left:512.768244px;}
.x8b_c00458{left:518.480616px;}
.x82_c00458{left:530.797500px;}
.x92_c00458{left:532.140216px;}
.x83_c00458{left:549.429000px;}
.x8e_c00458{left:564.323340px;}
.x93_c00458{left:567.319236px;}
.x88_c00458{left:569.988612px;}
.x94_c00458{left:585.541032px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs17_c00458{font-size:39.200000pt;}
.fse_c00458{font-size:42.005376pt;}
.fs12_c00458{font-size:44.800000pt;}
.fs15_c00458{font-size:44.806473pt;}
.fs1a_c00458{font-size:44.812901pt;}
.fsd_c00458{font-size:45.733333pt;}
.fsf_c00458{font-size:45.739187pt;}
.fs19_c00458{font-size:45.746503pt;}
.fs1b_c00458{font-size:46.680105pt;}
.fs1c_c00458{font-size:47.610495pt;}
.fs11_c00458{font-size:48.533333pt;}
.fs16_c00458{font-size:48.540346pt;}
.fs14_c00458{font-size:49.472998pt;}
.fs10_c00458{font-size:50.400000pt;}
.fs1d_c00458{font-size:51.333333pt;}
.fs13_c00458{font-size:51.339904pt;}
.fs1_c00458{font-size:56.011199pt;}
.fsa_c00458{font-size:58.814228pt;}
.fsb_c00458{font-size:60.678799pt;}
.fs9_c00458{font-size:60.681346pt;}
.fs3_c00458{font-size:61.612319pt;}
.fs5_c00458{font-size:61.614905pt;}
.fs0_c00458{font-size:62.543463pt;}
.fsc_c00458{font-size:62.545839pt;}
.fs7_c00458{font-size:62.548465pt;}
.fs4_c00458{font-size:63.482024pt;}
.fs6_c00458{font-size:64.400000pt;}
.fs8_c00458{font-size:64.415583pt;}
.fs2_c00458{font-size:65.346399pt;}
.fs18_c00458{font-size:84.013607pt;}
.y0_c00458{bottom:0.000000pt;}
.yad_c00458{bottom:125.250507pt;}
.yac_c00458{bottom:125.281333pt;}
.yae_c00458{bottom:125.764020pt;}
.yaf_c00458{bottom:126.282724pt;}
.yb0_c00458{bottom:126.405464pt;}
.yb1_c00458{bottom:126.750836pt;}
.yb2_c00458{bottom:127.147865pt;}
.yb3_c00458{bottom:127.392779pt;}
.yb4_c00458{bottom:127.801413pt;}
.yb5_c00458{bottom:128.470919pt;}
.yb6_c00458{bottom:128.646631pt;}
.ya6_c00458{bottom:141.122667pt;}
.ya7_c00458{bottom:141.238493pt;}
.ya8_c00458{bottom:141.734576pt;}
.ya9_c00458{bottom:142.421036pt;}
.yaa_c00458{bottom:142.983509pt;}
.yab_c00458{bottom:143.265687pt;}
.y9e_c00458{bottom:158.651552pt;}
.y9f_c00458{bottom:158.651968pt;}
.ya5_c00458{bottom:158.652128pt;}
.ya0_c00458{bottom:158.652192pt;}
.ya2_c00458{bottom:158.652213pt;}
.ya4_c00458{bottom:158.652245pt;}
.ya3_c00458{bottom:158.652629pt;}
.ya1_c00458{bottom:158.652661pt;}
.yf3_c00458{bottom:159.873333pt;}
.y9c_c00458{bottom:191.232171pt;}
.y9d_c00458{bottom:191.232363pt;}
.yb7_c00458{bottom:191.925333pt;}
.y96_c00458{bottom:204.722667pt;}
.y97_c00458{bottom:205.206208pt;}
.y98_c00458{bottom:205.728939pt;}
.y99_c00458{bottom:206.357568pt;}
.y9a_c00458{bottom:206.707456pt;}
.y9b_c00458{bottom:207.034304pt;}
.yec_c00458{bottom:208.564000pt;}
.yed_c00458{bottom:208.851224pt;}
.yee_c00458{bottom:209.269348pt;}
.yef_c00458{bottom:209.636036pt;}
.yf0_c00458{bottom:210.207348pt;}
.yf1_c00458{bottom:210.949348pt;}
.yf2_c00458{bottom:211.407344pt;}
.y95_c00458{bottom:222.301333pt;}
.ye6_c00458{bottom:224.383531pt;}
.ye7_c00458{bottom:225.070123pt;}
.ye8_c00458{bottom:225.901824pt;}
.ye9_c00458{bottom:226.389824pt;}
.yea_c00458{bottom:226.888032pt;}
.yeb_c00458{bottom:227.359723pt;}
.y8c_c00458{bottom:236.882667pt;}
.y8d_c00458{bottom:237.181333pt;}
.y8e_c00458{bottom:237.422667pt;}
.y8f_c00458{bottom:237.804000pt;}
.y90_c00458{bottom:238.645333pt;}
.y91_c00458{bottom:238.913333pt;}
.y92_c00458{bottom:238.916000pt;}
.y93_c00458{bottom:239.028000pt;}
.y94_c00458{bottom:239.336000pt;}
.yde_c00458{bottom:240.706336pt;}
.ydf_c00458{bottom:241.402357pt;}
.ye0_c00458{bottom:241.810635pt;}
.ye1_c00458{bottom:242.128213pt;}
.ye2_c00458{bottom:243.231904pt;}
.ye3_c00458{bottom:244.043040pt;}
.ye4_c00458{bottom:244.700139pt;}
.ye5_c00458{bottom:245.040843pt;}
.y8b_c00458{bottom:253.317333pt;}
.yd5_c00458{bottom:256.534432pt;}
.yd6_c00458{bottom:257.190699pt;}
.yd7_c00458{bottom:257.447797pt;}
.yd8_c00458{bottom:257.725141pt;}
.yd9_c00458{bottom:258.280171pt;}
.yda_c00458{bottom:258.698155pt;}
.ydb_c00458{bottom:258.950699pt;}
.ydc_c00458{bottom:259.500832pt;}
.ydd_c00458{bottom:260.493355pt;}
.y83_c00458{bottom:268.800256pt;}
.y84_c00458{bottom:269.279573pt;}
.y85_c00458{bottom:269.668032pt;}
.y86_c00458{bottom:270.105557pt;}
.y87_c00458{bottom:270.348053pt;}
.y88_c00458{bottom:270.593408pt;}
.y89_c00458{bottom:270.969557pt;}
.y8a_c00458{bottom:271.492651pt;}
.yce_c00458{bottom:272.139808pt;}
.ycf_c00458{bottom:272.741077pt;}
.yd0_c00458{bottom:273.707488pt;}
.yd1_c00458{bottom:274.323509pt;}
.yd2_c00458{bottom:274.609045pt;}
.yd3_c00458{bottom:275.569952pt;}
.yd4_c00458{bottom:275.824181pt;}
.y7a_c00458{bottom:284.876000pt;}
.y7b_c00458{bottom:285.178656pt;}
.y7c_c00458{bottom:285.520373pt;}
.y7d_c00458{bottom:285.820725pt;}
.y7e_c00458{bottom:286.250016pt;}
.y7f_c00458{bottom:286.610741pt;}
.y80_c00458{bottom:287.647541pt;}
.y81_c00458{bottom:287.977440pt;}
.yc6_c00458{bottom:288.225397pt;}
.y82_c00458{bottom:288.231648pt;}
.yc7_c00458{bottom:288.513365pt;}
.yc8_c00458{bottom:289.544736pt;}
.yc9_c00458{bottom:289.991296pt;}
.yca_c00458{bottom:290.429141pt;}
.ycb_c00458{bottom:291.526677pt;}
.ycc_c00458{bottom:291.884309pt;}
.ycd_c00458{bottom:292.696683pt;}
.y79_c00458{bottom:302.129333pt;}
.ybd_c00458{bottom:304.161333pt;}
.ybe_c00458{bottom:304.742357pt;}
.ybf_c00458{bottom:305.255669pt;}
.yc0_c00458{bottom:305.763797pt;}
.yc1_c00458{bottom:306.362389pt;}
.yc2_c00458{bottom:306.591189pt;}
.yc3_c00458{bottom:307.426901pt;}
.yc4_c00458{bottom:307.892501pt;}
.yc5_c00458{bottom:308.289973pt;}
.y6f_c00458{bottom:345.601627pt;}
.y70_c00458{bottom:346.076187pt;}
.y71_c00458{bottom:346.847787pt;}
.y72_c00458{bottom:347.645360pt;}
.y73_c00458{bottom:349.376720pt;}
.y74_c00458{bottom:349.835973pt;}
.y75_c00458{bottom:350.506640pt;}
.y76_c00458{bottom:350.938187pt;}
.y77_c00458{bottom:351.879600pt;}
.y78_c00458{bottom:352.667840pt;}
.y69_c00458{bottom:366.302667pt;}
.y6a_c00458{bottom:366.697440pt;}
.y6b_c00458{bottom:367.171787pt;}
.y6c_c00458{bottom:367.730587pt;}
.y6d_c00458{bottom:368.842720pt;}
.y6e_c00458{bottom:369.552213pt;}
.yb8_c00458{bottom:369.604000pt;}
.yb9_c00458{bottom:370.645096pt;}
.yba_c00458{bottom:371.279488pt;}
.ybb_c00458{bottom:371.391856pt;}
.ybc_c00458{bottom:372.199792pt;}
.y61_c00458{bottom:426.702941pt;}
.y62_c00458{bottom:427.450341pt;}
.y63_c00458{bottom:427.938173pt;}
.y64_c00458{bottom:429.129016pt;}
.y65_c00458{bottom:429.953853pt;}
.y66_c00458{bottom:430.389699pt;}
.y67_c00458{bottom:431.080197pt;}
.y68_c00458{bottom:432.308475pt;}
.y56_c00458{bottom:446.626464pt;}
.y57_c00458{bottom:447.615360pt;}
.y58_c00458{bottom:448.012045pt;}
.y59_c00458{bottom:448.761205pt;}
.y5a_c00458{bottom:449.070395pt;}
.y5b_c00458{bottom:449.489067pt;}
.y5c_c00458{bottom:450.626096pt;}
.y5d_c00458{bottom:451.113283pt;}
.y5e_c00458{bottom:451.837653pt;}
.y5f_c00458{bottom:452.692277pt;}
.y60_c00458{bottom:452.990568pt;}
.y4c_c00458{bottom:466.553048pt;}
.y4d_c00458{bottom:467.065443pt;}
.y4e_c00458{bottom:468.179259pt;}
.y4f_c00458{bottom:468.718376pt;}
.y50_c00458{bottom:469.985605pt;}
.y51_c00458{bottom:470.598056pt;}
.y52_c00458{bottom:470.976368pt;}
.y53_c00458{bottom:471.748216pt;}
.y54_c00458{bottom:472.472573pt;}
.y55_c00458{bottom:472.785648pt;}
.y42_c00458{bottom:486.959264pt;}
.y43_c00458{bottom:487.705408pt;}
.y44_c00458{bottom:488.376821pt;}
.y45_c00458{bottom:489.151992pt;}
.y46_c00458{bottom:490.321011pt;}
.y47_c00458{bottom:491.177189pt;}
.y48_c00458{bottom:491.626216pt;}
.y49_c00458{bottom:492.790072pt;}
.y4a_c00458{bottom:493.424979pt;}
.y4b_c00458{bottom:493.909192pt;}
.y39_c00458{bottom:506.992000pt;}
.y3a_c00458{bottom:507.745867pt;}
.y3b_c00458{bottom:508.307101pt;}
.y3c_c00458{bottom:510.029525pt;}
.y3d_c00458{bottom:510.953877pt;}
.y3e_c00458{bottom:511.983125pt;}
.y3f_c00458{bottom:512.398632pt;}
.y40_c00458{bottom:513.261384pt;}
.y41_c00458{bottom:513.530547pt;}
.y38_c00458{bottom:573.342667pt;}
.y2c_c00458{bottom:588.234811pt;}
.y2d_c00458{bottom:588.633235pt;}
.y2e_c00458{bottom:589.735227pt;}
.y2f_c00458{bottom:590.055685pt;}
.y30_c00458{bottom:590.757875pt;}
.y31_c00458{bottom:590.861995pt;}
.y32_c00458{bottom:591.287981pt;}
.y33_c00458{bottom:591.680757pt;}
.y34_c00458{bottom:592.496456pt;}
.y35_c00458{bottom:592.837656pt;}
.y36_c00458{bottom:593.395400pt;}
.y37_c00458{bottom:593.756008pt;}
.y22_c00458{bottom:608.406928pt;}
.y23_c00458{bottom:609.269387pt;}
.y24_c00458{bottom:609.849424pt;}
.y25_c00458{bottom:611.265168pt;}
.y26_c00458{bottom:611.559909pt;}
.y27_c00458{bottom:612.742571pt;}
.y28_c00458{bottom:613.205304pt;}
.y29_c00458{bottom:613.695405pt;}
.y2a_c00458{bottom:614.330707pt;}
.y2b_c00458{bottom:615.202728pt;}
.y1e_c00458{bottom:628.084000pt;}
.y1f_c00458{bottom:628.988992pt;}
.y20_c00458{bottom:630.888237pt;}
.y21_c00458{bottom:634.215752pt;}
.y16_c00458{bottom:649.205333pt;}
.y17_c00458{bottom:649.669600pt;}
.y18_c00458{bottom:650.404133pt;}
.y19_c00458{bottom:651.044507pt;}
.y1a_c00458{bottom:652.556107pt;}
.y1b_c00458{bottom:653.084587pt;}
.y1c_c00458{bottom:653.814133pt;}
.y1d_c00458{bottom:654.411413pt;}
.yf_c00458{bottom:670.085333pt;}
.y10_c00458{bottom:670.800667pt;}
.y11_c00458{bottom:671.482133pt;}
.y12_c00458{bottom:672.121067pt;}
.y13_c00458{bottom:673.273040pt;}
.y14_c00458{bottom:673.887707pt;}
.y15_c00458{bottom:674.776293pt;}
.y7_c00458{bottom:690.244000pt;}
.y8_c00458{bottom:690.907813pt;}
.y9_c00458{bottom:691.967627pt;}
.ya_c00458{bottom:692.981867pt;}
.yb_c00458{bottom:693.228827pt;}
.yc_c00458{bottom:694.046400pt;}
.yd_c00458{bottom:694.877600pt;}
.ye_c00458{bottom:695.979840pt;}
.y1_c00458{bottom:710.644000pt;}
.y2_c00458{bottom:711.148000pt;}
.y3_c00458{bottom:712.592392pt;}
.y4_c00458{bottom:713.240920pt;}
.y5_c00458{bottom:713.989120pt;}
.y6_c00458{bottom:714.839944pt;}
.h19_c00458{height:39.200000pt;}
.h10_c00458{height:42.005376pt;}
.h14_c00458{height:44.800000pt;}
.h17_c00458{height:44.806473pt;}
.h1c_c00458{height:44.812901pt;}
.hf_c00458{height:45.733333pt;}
.h11_c00458{height:45.739187pt;}
.h1b_c00458{height:45.746503pt;}
.h1d_c00458{height:46.680105pt;}
.h1e_c00458{height:47.610495pt;}
.h13_c00458{height:48.533333pt;}
.h18_c00458{height:48.540346pt;}
.h16_c00458{height:49.472998pt;}
.h12_c00458{height:50.400000pt;}
.h1f_c00458{height:51.333333pt;}
.h15_c00458{height:51.339904pt;}
.h3_c00458{height:56.011199pt;}
.hc_c00458{height:58.814228pt;}
.hd_c00458{height:60.678799pt;}
.hb_c00458{height:60.681346pt;}
.h5_c00458{height:61.612319pt;}
.h7_c00458{height:61.614905pt;}
.h2_c00458{height:62.543463pt;}
.he_c00458{height:62.545839pt;}
.h9_c00458{height:62.548465pt;}
.h6_c00458{height:63.482024pt;}
.h8_c00458{height:64.400000pt;}
.ha_c00458{height:64.415583pt;}
.h4_c00458{height:65.346399pt;}
.h1a_c00458{height:84.013607pt;}
.h1_c00458{height:893.333333pt;}
.h0_c00458{height:893.466667pt;}
.w0_c00458{width:635.733333pt;}
.w1_c00458{width:636.000000pt;}
.x0_c00458{left:0.000000pt;}
.x76_c00458{left:84.882667pt;}
.x70_c00458{left:87.045333pt;}
.x64_c00458{left:88.027371pt;}
.x5f_c00458{left:89.754667pt;}
.x66_c00458{left:90.720000pt;}
.x75_c00458{left:91.922197pt;}
.x59_c00458{left:93.360000pt;}
.x67_c00458{left:102.374667pt;}
.x5a_c00458{left:106.080000pt;}
.x60_c00458{left:108.670667pt;}
.x36_c00458{left:112.798667pt;}
.x1_c00458{left:115.642667pt;}
.xe_c00458{left:117.114667pt;}
.x27_c00458{left:118.056627pt;}
.x3d_c00458{left:119.754539pt;}
.x51_c00458{left:121.049333pt;}
.x77_c00458{left:122.070667pt;}
.x68_c00458{left:123.720000pt;}
.x6c_c00458{left:128.400000pt;}
.x61_c00458{left:130.028000pt;}
.x5b_c00458{left:132.000000pt;}
.x6d_c00458{left:137.040000pt;}
.x28_c00458{left:139.016672pt;}
.x15_c00458{left:140.088000pt;}
.x54_c00458{left:142.338213pt;}
.x2_c00458{left:143.642667pt;}
.x37_c00458{left:147.065333pt;}
.x7_c00458{left:149.336000pt;}
.xf_c00458{left:152.881333pt;}
.x3e_c00458{left:155.307331pt;}
.x1e_c00458{left:156.820843pt;}
.x1b_c00458{left:158.430667pt;}
.x78_c00458{left:159.802667pt;}
.x5c_c00458{left:160.800000pt;}
.x52_c00458{left:164.505333pt;}
.x69_c00458{left:168.208000pt;}
.x45_c00458{left:169.678504pt;}
.x38_c00458{left:172.576000pt;}
.x5d_c00458{left:173.760000pt;}
.x62_c00458{left:175.630667pt;}
.x16_c00458{left:176.814667pt;}
.x6e_c00458{left:179.520000pt;}
.x1f_c00458{left:183.186176pt;}
.x4d_c00458{left:184.791837pt;}
.x10_c00458{left:186.954667pt;}
.x46_c00458{left:189.528717pt;}
.x53_c00458{left:192.445333pt;}
.x42_c00458{left:193.960731pt;}
.x29_c00458{left:196.989819pt;}
.x63_c00458{left:198.176000pt;}
.x65_c00458{left:200.099371pt;}
.x8_c00458{left:202.326667pt;}
.x79_c00458{left:203.473333pt;}
.x73_c00458{left:207.135861pt;}
.x17_c00458{left:208.833333pt;}
.x71_c00458{left:211.094667pt;}
.x2a_c00458{left:213.860267pt;}
.x5e_c00458{left:217.440000pt;}
.x11_c00458{left:218.901333pt;}
.x74_c00458{left:220.818027pt;}
.x3_c00458{left:223.886667pt;}
.x47_c00458{left:226.977027pt;}
.x6a_c00458{left:228.332000pt;}
.x72_c00458{left:231.522667pt;}
.x6f_c00458{left:236.400000pt;}
.x48_c00458{left:242.425701pt;}
.x1c_c00458{left:244.760000pt;}
.x20_c00458{left:247.538176pt;}
.x2b_c00458{left:250.810701pt;}
.x9_c00458{left:253.038667pt;}
.x2c_c00458{left:256.271053pt;}
.x4_c00458{left:259.916000pt;}
.x21_c00458{left:260.935509pt;}
.x49_c00458{left:263.335944pt;}
.xa_c00458{left:265.386667pt;}
.x12_c00458{left:276.500000pt;}
.x6b_c00458{left:277.769333pt;}
.x2d_c00458{left:278.665853pt;}
.x3f_c00458{left:279.898088pt;}
.x7a_c00458{left:281.300000pt;}
.x18_c00458{left:284.413333pt;}
.x4e_c00458{left:290.905515pt;}
.x39_c00458{left:292.884000pt;}
.x2e_c00458{left:299.308536pt;}
.x5_c00458{left:301.482667pt;}
.x43_c00458{left:303.906064pt;}
.xb_c00458{left:306.265333pt;}
.x13_c00458{left:307.233333pt;}
.x19_c00458{left:310.837333pt;}
.x84_c00458{left:312.237205pt;}
.x55_c00458{left:313.254053pt;}
.x22_c00458{left:314.692843pt;}
.x7d_c00458{left:316.354667pt;}
.x40_c00458{left:320.694997pt;}
.x9b_c00458{left:323.280000pt;}
.x85_c00458{left:324.736160pt;}
.x98_c00458{left:325.878667pt;}
.x23_c00458{left:335.726176pt;}
.x89_c00458{left:337.943413pt;}
.x3a_c00458{left:339.668000pt;}
.x7e_c00458{left:340.564000pt;}
.x2f_c00458{left:342.267381pt;}
.x33_c00458{left:343.680000pt;}
.x99_c00458{left:345.789333pt;}
.xc_c00458{left:347.825333pt;}
.x6_c00458{left:348.750667pt;}
.x4f_c00458{left:350.228112pt;}
.x14_c00458{left:351.662667pt;}
.x44_c00458{left:356.186064pt;}
.x24_c00458{left:358.003509pt;}
.x30_c00458{left:360.201888pt;}
.x7b_c00458{left:361.937333pt;}
.x56_c00458{left:363.362720pt;}
.x34_c00458{left:365.280000pt;}
.x8f_c00458{left:366.711211pt;}
.x86_c00458{left:369.599915pt;}
.x95_c00458{left:374.841483pt;}
.x1a_c00458{left:377.178667pt;}
.x4a_c00458{left:380.701077pt;}
.x90_c00458{left:381.833632pt;}
.x7f_c00458{left:383.124000pt;}
.x25_c00458{left:386.880843pt;}
.x31_c00458{left:389.555824pt;}
.x9a_c00458{left:390.456000pt;}
.x96_c00458{left:394.341003pt;}
.x1d_c00458{left:396.010667pt;}
.x3b_c00458{left:397.770667pt;}
.xd_c00458{left:402.937333pt;}
.x57_c00458{left:406.165013pt;}
.x32_c00458{left:408.554419pt;}
.x3c_c00458{left:410.005333pt;}
.x50_c00458{left:414.851032pt;}
.x8c_c00458{left:416.147936pt;}
.x80_c00458{left:417.598667pt;}
.x8a_c00458{left:419.110667pt;}
.x4b_c00458{left:423.428288pt;}
.x26_c00458{left:426.518176pt;}
.x35_c00458{left:427.680000pt;}
.x97_c00458{left:433.141408pt;}
.x91_c00458{left:434.380075pt;}
.x4c_c00458{left:438.320933pt;}
.x58_c00458{left:441.975573pt;}
.x7c_c00458{left:448.309333pt;}
.x41_c00458{left:450.819205pt;}
.x81_c00458{left:452.420000pt;}
.x8d_c00458{left:454.373355pt;}
.x87_c00458{left:455.793995pt;}
.x8b_c00458{left:460.871659pt;}
.x82_c00458{left:471.820000pt;}
.x92_c00458{left:473.013525pt;}
.x83_c00458{left:488.381333pt;}
.x8e_c00458{left:501.620747pt;}
.x93_c00458{left:504.283765pt;}
.x88_c00458{left:506.656544pt;}
.x94_c00458{left:520.480917pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mf7_c00459{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);}
.m56_c00459{transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);}
.m11e_c00459{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019725,0.000000,0.000000,0.250000,0,0);}
.m45_c00459{transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);}
.m86_c00459{transform:matrix(0.088805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088805,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.105600,-0.001056,0.002500,0.249988,0,0);-ms-transform:matrix(0.105600,-0.001056,0.002500,0.249988,0,0);-webkit-transform:matrix(0.105600,-0.001056,0.002500,0.249988,0,0);}
.mfa_c00459{transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108490,0.000000,0.000000,0.250000,0,0);}
.m107_c00459{transform:matrix(0.110440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110440,0.000000,0.000000,0.250000,0,0);}
.m24_c00459{transform:matrix(0.114124,-0.001141,0.002500,0.249988,0,0);-ms-transform:matrix(0.114124,-0.001141,0.002500,0.249988,0,0);-webkit-transform:matrix(0.114124,-0.001141,0.002500,0.249988,0,0);}
.m27_c00459{transform:matrix(0.128054,-0.001281,0.002500,0.249988,0,0);-ms-transform:matrix(0.128054,-0.001281,0.002500,0.249988,0,0);-webkit-transform:matrix(0.128054,-0.001281,0.002500,0.249988,0,0);}
.me7_c00459{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);}
.m85_c00459{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);}
.m1d_c00459{transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);-ms-transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);}
.mbf_c00459{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.m7f_c00459{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);-ms-transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157227,-0.001572,0.002500,0.249988,0,0);}
.m5d_c00459{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);}
.mc8_c00459{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);}
.m87_c00459{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);}
.me5_c00459{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);}
.m22_c00459{transform:matrix(0.160987,-0.001610,0.002500,0.249988,0,0);-ms-transform:matrix(0.160987,-0.001610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160987,-0.001610,0.002500,0.249988,0,0);}
.m10b_c00459{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);}
.mca_c00459{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);}
.m3f_c00459{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);}
.m3c_c00459{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.167012,-0.001670,0.002500,0.249988,0,0);-ms-transform:matrix(0.167012,-0.001670,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167012,-0.001670,0.002500,0.249988,0,0);}
.m9d_c00459{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);}
.m105_c00459{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);}
.m3_c00459{transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169952,-0.001700,0.002500,0.249988,0,0);}
.ma_c00459{transform:matrix(0.171116,-0.001711,0.002500,0.249988,0,0);-ms-transform:matrix(0.171116,-0.001711,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171116,-0.001711,0.002500,0.249988,0,0);}
.m42_c00459{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);}
.m8a_c00459{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);}
.md6_c00459{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);}
.mc1_c00459{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);}
.m5_c00459{transform:matrix(0.172276,-0.001723,0.002500,0.249988,0,0);-ms-transform:matrix(0.172276,-0.001723,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172276,-0.001723,0.002500,0.249988,0,0);}
.m3a_c00459{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);}
.m49_c00459{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);}
.md5_c00459{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);}
.m72_c00459{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);}
.mb8_c00459{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);}
.mad_c00459{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);}
.mdc_c00459{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);}
.mac_c00459{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);}
.m43_c00459{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);}
.m4b_c00459{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);}
.mb3_c00459{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);}
.m115_c00459{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);}
.m8_c00459{transform:matrix(0.180966,-0.001810,0.002500,0.249988,0,0);-ms-transform:matrix(0.180966,-0.001810,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180966,-0.001810,0.002500,0.249988,0,0);}
.mb2_c00459{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);}
.mdb_c00459{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);}
.m68_c00459{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);}
.ma8_c00459{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);}
.mf8_c00459{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);}
.mc7_c00459{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);}
.m3e_c00459{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);}
.m108_c00459{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);}
.m9_c00459{transform:matrix(0.184021,-0.001840,0.002500,0.249988,0,0);-ms-transform:matrix(0.184021,-0.001840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184021,-0.001840,0.002500,0.249988,0,0);}
.m1e_c00459{transform:matrix(0.184566,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184566,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184566,-0.001846,0.002500,0.249988,0,0);}
.m0_c00459{transform:matrix(0.184766,-0.001848,0.002500,0.249988,0,0);-ms-transform:matrix(0.184766,-0.001848,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184766,-0.001848,0.002500,0.249988,0,0);}
.m7_c00459{transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185691,-0.001857,0.002500,0.249988,0,0);}
.mc_c00459{transform:matrix(0.186051,-0.001861,0.002500,0.249988,0,0);-ms-transform:matrix(0.186051,-0.001861,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186051,-0.001861,0.002500,0.249988,0,0);}
.md8_c00459{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);}
.m120_c00459{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);}
.mc3_c00459{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);}
.md1_c00459{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);}
.m3d_c00459{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);}
.mbb_c00459{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m5c_c00459{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);}
.m81_c00459{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);}
.m11a_c00459{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);}
.m41_c00459{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);}
.mdf_c00459{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);}
.m2_c00459{transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);-ms-transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);}
.md9_c00459{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);}
.mb1_c00459{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);}
.mcd_c00459{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);}
.md2_c00459{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);}
.m90_c00459{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);}
.mf6_c00459{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);}
.m102_c00459{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);}
.mc9_c00459{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);}
.m12_c00459{transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-ms-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198550,-0.001986,0.002500,0.249988,0,0);}
.m21_c00459{transform:matrix(0.198890,-0.001989,0.002500,0.249988,0,0);-ms-transform:matrix(0.198890,-0.001989,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198890,-0.001989,0.002500,0.249988,0,0);}
.m95_c00459{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);}
.mbc_c00459{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.me0_c00459{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);}
.mde_c00459{transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199820,0.000000,0.000000,0.250000,0,0);}
.m109_c00459{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);}
.me4_c00459{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);}
.md3_c00459{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);}
.m5a_c00459{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);}
.m4e_c00459{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);}
.mcc_c00459{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);}
.md0_c00459{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);}
.m4c_c00459{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);}
.mf5_c00459{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);}
.m23_c00459{transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203295,-0.002033,0.002500,0.249988,0,0);}
.me_c00459{transform:matrix(0.203340,-0.002033,0.002500,0.249988,0,0);-ms-transform:matrix(0.203340,-0.002033,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203340,-0.002033,0.002500,0.249988,0,0);}
.m11f_c00459{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);}
.mc4_c00459{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);}
.m1c_c00459{transform:matrix(0.204065,-0.002041,0.002500,0.249988,0,0);-ms-transform:matrix(0.204065,-0.002041,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204065,-0.002041,0.002500,0.249988,0,0);}
.mae_c00459{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);}
.m99_c00459{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);}
.me3_c00459{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);}
.m6f_c00459{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);}
.m121_c00459{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);}
.mb7_c00459{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);}
.mc6_c00459{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);}
.ma9_c00459{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);}
.m75_c00459{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);}
.mb6_c00459{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);}
.md_c00459{transform:matrix(0.207095,-0.002071,0.002500,0.249988,0,0);-ms-transform:matrix(0.207095,-0.002071,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207095,-0.002071,0.002500,0.249988,0,0);}
.m29_c00459{transform:matrix(0.207155,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207155,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207155,-0.002072,0.002500,0.249988,0,0);}
.m98_c00459{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);}
.mcb_c00459{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);}
.md4_c00459{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);}
.mc0_c00459{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);}
.mbd_c00459{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);}
.maa_c00459{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);}
.ma2_c00459{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);}
.mda_c00459{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);}
.m77_c00459{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);}
.mbe_c00459{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);}
.m5f_c00459{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);}
.m118_c00459{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);}
.m4d_c00459{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);}
.m106_c00459{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);}
.mec_c00459{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);}
.m8b_c00459{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);}
.m73_c00459{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m10a_c00459{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);}
.mcf_c00459{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);}
.m47_c00459{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);}
.m11b_c00459{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);}
.m5b_c00459{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);}
.m4a_c00459{transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);}
.m9b_c00459{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);}
.mf3_c00459{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);}
.m2e_c00459{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);}
.m20_c00459{transform:matrix(0.216139,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216139,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216139,-0.002161,0.002500,0.249988,0,0);}
.m10c_c00459{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);}
.m8f_c00459{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);}
.m10f_c00459{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);}
.mea_c00459{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);}
.m113_c00459{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);}
.m7e_c00459{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);}
.m123_c00459{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);}
.m14_c00459{transform:matrix(0.217579,-0.002176,0.002500,0.249988,0,0);-ms-transform:matrix(0.217579,-0.002176,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217579,-0.002176,0.002500,0.249988,0,0);}
.m116_c00459{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);}
.m58_c00459{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);}
.m17_c00459{transform:matrix(0.218119,-0.002181,0.002500,0.249988,0,0);-ms-transform:matrix(0.218119,-0.002181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218119,-0.002181,0.002500,0.249988,0,0);}
.mce_c00459{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.ma3_c00459{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);}
.me8_c00459{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);}
.mdd_c00459{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);}
.m9c_c00459{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);}
.m3b_c00459{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);}
.m18_c00459{transform:matrix(0.219939,-0.002199,0.002500,0.249988,0,0);-ms-transform:matrix(0.219939,-0.002199,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219939,-0.002199,0.002500,0.249988,0,0);}
.m60_c00459{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);}
.ma4_c00459{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);}
.m5e_c00459{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);}
.ma5_c00459{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);}
.m2a_c00459{transform:matrix(0.222324,-0.002223,0.002500,0.249988,0,0);-ms-transform:matrix(0.222324,-0.002223,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222324,-0.002223,0.002500,0.249988,0,0);}
.m4_c00459{transform:matrix(0.222894,-0.002229,0.002500,0.249988,0,0);-ms-transform:matrix(0.222894,-0.002229,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222894,-0.002229,0.002500,0.249988,0,0);}
.m9a_c00459{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);}
.me1_c00459{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);}
.mf2_c00459{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);}
.mee_c00459{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);}
.m7a_c00459{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);}
.m112_c00459{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);}
.m89_c00459{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);}
.m97_c00459{transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226215,0.000000,0.000000,0.250000,0,0);}
.md7_c00459{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);}
.mc2_c00459{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);}
.m64_c00459{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_c00459{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);}
.m32_c00459{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);}
.ma0_c00459{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);}
.m67_c00459{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);}
.m40_c00459{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);}
.mf4_c00459{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);}
.m1b_c00459{transform:matrix(0.231773,-0.002318,0.002500,0.249988,0,0);-ms-transform:matrix(0.231773,-0.002318,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231773,-0.002318,0.002500,0.249988,0,0);}
.m31_c00459{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);}
.m79_c00459{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);}
.mc5_c00459{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);}
.m48_c00459{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);}
.m7c_c00459{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);}
.m15_c00459{transform:matrix(0.235683,-0.002357,0.002500,0.249988,0,0);-ms-transform:matrix(0.235683,-0.002357,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235683,-0.002357,0.002500,0.249988,0,0);}
.m78_c00459{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);}
.m103_c00459{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);}
.m80_c00459{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.med_c00459{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);}
.meb_c00459{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);}
.m52_c00459{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);}
.m63_c00459{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);}
.m6_c00459{transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);-ms-transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240703,-0.002407,0.002500,0.249988,0,0);}
.m6c_c00459{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);}
.m1f_c00459{transform:matrix(0.242463,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242463,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242463,-0.002425,0.002500,0.249988,0,0);}
.m76_c00459{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{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);}
.m124_c00459{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.mfc_c00459{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);}
.m66_c00459{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);}
.m114_c00459{transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);}
.m8c_c00459{transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{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);}
.m69_c00459{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00459{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);}
.me9_c00459{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.mf9_c00459{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);}
.m8e_c00459{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);}
.m11_c00459{transform:matrix(0.253372,-0.002534,0.002500,0.249988,0,0);-ms-transform:matrix(0.253372,-0.002534,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253372,-0.002534,0.002500,0.249988,0,0);}
.m13_c00459{transform:matrix(0.254162,-0.002542,0.002500,0.249988,0,0);-ms-transform:matrix(0.254162,-0.002542,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254162,-0.002542,0.002500,0.249988,0,0);}
.m46_c00459{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);}
.mf0_c00459{transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256385,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);-ms-transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257922,-0.002579,0.002500,0.249988,0,0);}
.mb9_c00459{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);}
.m74_c00459{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);}
.ma1_c00459{transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);}
.m11c_c00459{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);}
.m39_c00459{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);}
.m9e_c00459{transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);}
.m101_c00459{transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260420,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.261737,-0.002617,0.002500,0.249988,0,0);-ms-transform:matrix(0.261737,-0.002617,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261737,-0.002617,0.002500,0.249988,0,0);}
.m7d_c00459{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265065,0.000000,0.000000,0.250000,0,0);}
.m8d_c00459{transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);}
.m111_c00459{transform:matrix(0.266505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266505,0.000000,0.000000,0.250000,0,0);}
.ma7_c00459{transform:matrix(0.268145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268145,0.000000,0.000000,0.250000,0,0);}
.m96_c00459{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);}
.m6e_c00459{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);}
.me2_c00459{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m93_c00459{transform:matrix(0.270915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270915,0.000000,0.000000,0.250000,0,0);}
.m110_c00459{transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);}
.m119_c00459{transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273055,0.000000,0.000000,0.250000,0,0);}
.mf1_c00459{transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276890,0.000000,0.000000,0.250000,0,0);}
.mb5_c00459{transform:matrix(0.278470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278470,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281105,0.000000,0.000000,0.250000,0,0);}
.ma6_c00459{transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);}
.m9f_c00459{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mff_c00459{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);}
.m6a_c00459{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);}
.mef_c00459{transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);}
.mb4_c00459{transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288455,0.000000,0.000000,0.250000,0,0);}
.m59_c00459{transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);}
.m94_c00459{transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290255,0.000000,0.000000,0.250000,0,0);}
.m6b_c00459{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);}
.m117_c00459{transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);}
.me6_c00459{transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295230,0.000000,0.000000,0.250000,0,0);}
.m10d_c00459{transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296305,0.000000,0.000000,0.250000,0,0);}
.m1a_c00459{transform:matrix(0.296650,-0.002967,0.002500,0.249988,0,0);-ms-transform:matrix(0.296650,-0.002967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.296650,-0.002967,0.002500,0.249988,0,0);}
.m122_c00459{transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{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);}
.m34_c00459{transform:matrix(0.303780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303780,0.000000,0.000000,0.250000,0,0);}
.m125_c00459{transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303845,0.000000,0.000000,0.250000,0,0);}
.mab_c00459{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m10_c00459{transform:matrix(0.318929,-0.003189,0.002500,0.249988,0,0);-ms-transform:matrix(0.318929,-0.003189,0.002500,0.249988,0,0);-webkit-transform:matrix(0.318929,-0.003189,0.002500,0.249988,0,0);}
.mb0_c00459{transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325245,0.000000,0.000000,0.250000,0,0);}
.mfd_c00459{transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327890,0.000000,0.000000,0.250000,0,0);}
.m11d_c00459{transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329510,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334940,0.000000,0.000000,0.250000,0,0);}
.m6d_c00459{transform:matrix(0.340815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340815,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.341470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341470,0.000000,0.000000,0.250000,0,0);}
.m57_c00459{transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348720,0.000000,0.000000,0.250000,0,0);}
.m104_c00459{transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);}
.m10e_c00459{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.351010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351010,0.000000,0.000000,0.250000,0,0);}
.m91_c00459{transform:matrix(0.356675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356675,0.000000,0.000000,0.250000,0,0);}
.m92_c00459{transform:matrix(0.369040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00459{transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.374015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374015,0.000000,0.000000,0.250000,0,0);}
.maf_c00459{transform:matrix(0.386505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386505,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.386830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386830,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.410129,-0.004101,0.002500,0.249988,0,0);-ms-transform:matrix(0.410129,-0.004101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.410129,-0.004101,0.002500,0.249988,0,0);}
.m100_c00459{transform:matrix(0.425720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425720,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.443885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443885,0.000000,0.000000,0.250000,0,0);}
.mfb_c00459{transform:matrix(0.447310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447310,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.447930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447930,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.477106,-0.004771,0.002500,0.249988,0,0);-ms-transform:matrix(0.477106,-0.004771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.477106,-0.004771,0.002500,0.249988,0,0);}
.m37_c00459{transform:matrix(0.477340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477340,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.483266,-0.004833,0.002500,0.249988,0,0);-ms-transform:matrix(0.483266,-0.004833,0.002500,0.249988,0,0);-webkit-transform:matrix(0.483266,-0.004833,0.002500,0.249988,0,0);}
.m30_c00459{transform:matrix(0.490750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.498235,-0.004982,0.002500,0.249988,0,0);-ms-transform:matrix(0.498235,-0.004982,0.002500,0.249988,0,0);-webkit-transform:matrix(0.498235,-0.004982,0.002500,0.249988,0,0);}
.m25_c00459{transform:matrix(0.499520,-0.004995,0.002500,0.249988,0,0);-ms-transform:matrix(0.499520,-0.004995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.499520,-0.004995,0.002500,0.249988,0,0);}
.m33_c00459{transform:matrix(0.508860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508860,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{transform:matrix(0.526760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526760,0.000000,0.000000,0.250000,0,0);}
.m61_c00459{transform:matrix(0.549165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549165,0.000000,0.000000,0.250000,0,0);}
.m88_c00459{transform:matrix(0.564230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564230,0.000000,0.000000,0.250000,0,0);}
.m83_c00459{transform:matrix(0.592195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592195,0.000000,0.000000,0.250000,0,0);}
.m84_c00459{transform:matrix(0.654120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654120,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.689980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689980,0.000000,0.000000,0.250000,0,0);}
.m82_c00459{transform:matrix(0.776780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776780,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.977015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977015,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;}
.fsf_c00459{font-size:46.200000px;}
.fsd_c00459{font-size:48.300000px;}
.fs10_c00459{font-size:49.350000px;}
.fs13_c00459{font-size:50.400000px;}
.fse_c00459{font-size:51.450000px;}
.fs14_c00459{font-size:52.500000px;}
.fs16_c00459{font-size:53.550000px;}
.fsc_c00459{font-size:54.600000px;}
.fs11_c00459{font-size:55.650000px;}
.fs17_c00459{font-size:57.750000px;}
.fs15_c00459{font-size:58.800000px;}
.fsa_c00459{font-size:61.950000px;}
.fs2_c00459{font-size:61.953097px;}
.fs1_c00459{font-size:68.253412px;}
.fs4_c00459{font-size:69.303465px;}
.fs6_c00459{font-size:70.350000px;}
.fs9_c00459{font-size:71.400000px;}
.fs0_c00459{font-size:71.403570px;}
.fs8_c00459{font-size:72.450000px;}
.fs3_c00459{font-size:72.453622px;}
.fs7_c00459{font-size:73.500000px;}
.fs12_c00459{font-size:77.700000px;}
.fs5_c00459{font-size:80.854042px;}
.fsb_c00459{font-size:112.350000px;}
.y0_c00459{bottom:0.000000px;}
.y53_c00459{bottom:135.976500px;}
.y44_c00459{bottom:138.136500px;}
.y54_c00459{bottom:138.609000px;}
.y52_c00459{bottom:155.917500px;}
.y43_c00459{bottom:156.247500px;}
.y51_c00459{bottom:174.205500px;}
.y42_c00459{bottom:174.463500px;}
.y50_c00459{bottom:191.995500px;}
.y41_c00459{bottom:192.546000px;}
.y4f_c00459{bottom:210.409500px;}
.y40_c00459{bottom:210.508500px;}
.y4e_c00459{bottom:227.724000px;}
.y3f_c00459{bottom:228.405000px;}
.y3e_c00459{bottom:246.288000px;}
.y4d_c00459{bottom:263.293500px;}
.y4c_c00459{bottom:281.640000px;}
.y3d_c00459{bottom:298.993500px;}
.y4b_c00459{bottom:299.430000px;}
.y3c_c00459{bottom:317.398500px;}
.y4a_c00459{bottom:317.437500px;}
.y3b_c00459{bottom:335.116500px;}
.y49_c00459{bottom:335.568000px;}
.y3a_c00459{bottom:353.188500px;}
.y48_c00459{bottom:353.386500px;}
.y39_c00459{bottom:370.972500px;}
.y47_c00459{bottom:371.599500px;}
.y38_c00459{bottom:389.191500px;}
.y46_c00459{bottom:390.157500px;}
.y37_c00459{bottom:407.160000px;}
.y45_c00459{bottom:408.160500px;}
.y36_c00459{bottom:465.064500px;}
.y35_c00459{bottom:488.641500px;}
.y34_c00459{bottom:510.568500px;}
.y33_c00459{bottom:534.046500px;}
.y32_c00459{bottom:556.569000px;}
.y31_c00459{bottom:580.875000px;}
.y30_c00459{bottom:602.707500px;}
.y2f_c00459{bottom:626.755500px;}
.y2e_c00459{bottom:648.214500px;}
.y28_c00459{bottom:694.090725px;}
.y29_c00459{bottom:694.091010px;}
.y27_c00459{bottom:694.091055px;}
.y2d_c00459{bottom:694.091235px;}
.y2c_c00459{bottom:694.091250px;}
.y26_c00459{bottom:694.091370px;}
.y2b_c00459{bottom:694.091580px;}
.y2a_c00459{bottom:694.091610px;}
.y25_c00459{bottom:694.091670px;}
.y21_c00459{bottom:716.530230px;}
.y1d_c00459{bottom:716.530305px;}
.y24_c00459{bottom:716.530470px;}
.y23_c00459{bottom:716.530785px;}
.y22_c00459{bottom:716.530800px;}
.y20_c00459{bottom:716.530845px;}
.y1e_c00459{bottom:716.530890px;}
.y1f_c00459{bottom:716.531175px;}
.y1b_c00459{bottom:740.068755px;}
.y1a_c00459{bottom:740.068785px;}
.y1c_c00459{bottom:740.069040px;}
.y12_c00459{bottom:760.858395px;}
.y13_c00459{bottom:761.077065px;}
.y14_c00459{bottom:761.662215px;}
.y15_c00459{bottom:762.080760px;}
.y16_c00459{bottom:762.374100px;}
.y17_c00459{bottom:762.641835px;}
.y18_c00459{bottom:763.144845px;}
.y19_c00459{bottom:763.339860px;}
.ya_c00459{bottom:783.811545px;}
.yb_c00459{bottom:784.273605px;}
.yc_c00459{bottom:784.572105px;}
.yd_c00459{bottom:784.993770px;}
.ye_c00459{bottom:785.820375px;}
.yf_c00459{bottom:786.668370px;}
.y10_c00459{bottom:786.966570px;}
.y11_c00459{bottom:787.712190px;}
.y1_c00459{bottom:807.031500px;}
.y2_c00459{bottom:807.463455px;}
.y3_c00459{bottom:807.698445px;}
.y4_c00459{bottom:808.233105px;}
.y5_c00459{bottom:808.554015px;}
.y6_c00459{bottom:809.032410px;}
.y7_c00459{bottom:809.745120px;}
.y8_c00459{bottom:809.980095px;}
.y9_c00459{bottom:810.233940px;}
.h11_c00459{height:46.200000px;}
.hf_c00459{height:48.300000px;}
.h12_c00459{height:49.350000px;}
.h15_c00459{height:50.400000px;}
.h10_c00459{height:51.450000px;}
.h16_c00459{height:52.500000px;}
.h18_c00459{height:53.550000px;}
.he_c00459{height:54.600000px;}
.h13_c00459{height:55.650000px;}
.h19_c00459{height:57.750000px;}
.h17_c00459{height:58.800000px;}
.hc_c00459{height:61.950000px;}
.h4_c00459{height:61.953097px;}
.h3_c00459{height:68.253412px;}
.h6_c00459{height:69.303465px;}
.h8_c00459{height:70.350000px;}
.hb_c00459{height:71.400000px;}
.h2_c00459{height:71.403570px;}
.ha_c00459{height:72.450000px;}
.h5_c00459{height:72.453622px;}
.h9_c00459{height:73.500000px;}
.h14_c00459{height:77.700000px;}
.h7_c00459{height:80.854042px;}
.hd_c00459{height:112.350000px;}
.h0_c00459{height:1008.450000px;}
.h1_c00459{height:1008.750000px;}
.w1_c00459{width:689.250000px;}
.w0_c00459{width:689.550000px;}
.x0_c00459{left:0.000000px;}
.x71_c00459{left:119.340000px;}
.x5a_c00459{left:128.790000px;}
.x63_c00459{left:136.350000px;}
.x60_c00459{left:138.240000px;}
.x56_c00459{left:139.860000px;}
.x4b_c00459{left:141.210000px;}
.x4d_c00459{left:150.390000px;}
.x47_c00459{left:155.520000px;}
.x21_c00459{left:168.753030px;}
.x5d_c00459{left:170.370000px;}
.x48_c00459{left:173.070000px;}
.x38_c00459{left:174.960000px;}
.x22_c00459{left:177.123870px;}
.x72_c00459{left:178.200000px;}
.xa_c00459{left:179.444490px;}
.x1_c00459{left:181.308000px;}
.x57_c00459{left:184.680000px;}
.x5f_c00459{left:187.920000px;}
.x50_c00459{left:189.000000px;}
.x61_c00459{left:190.080000px;}
.x64_c00459{left:192.510000px;}
.x6d_c00459{left:197.910000px;}
.x5b_c00459{left:199.800000px;}
.x39_c00459{left:201.690000px;}
.x1b_c00459{left:205.204305px;}
.x12_c00459{left:206.926560px;}
.x5e_c00459{left:209.520000px;}
.x4c_c00459{left:210.870000px;}
.x51_c00459{left:211.950000px;}
.x28_c00459{left:213.840000px;}
.x6a_c00459{left:215.190000px;}
.x73_c00459{left:216.270000px;}
.xb_c00459{left:217.999725px;}
.x6e_c00459{left:220.860000px;}
.x33_c00459{left:222.210000px;}
.x2_c00459{left:224.503500px;}
.x3a_c00459{left:227.070000px;}
.x65_c00459{left:229.770000px;}
.x67_c00459{left:230.850000px;}
.x4e_c00459{left:233.010000px;}
.x58_c00459{left:234.360000px;}
.x1c_c00459{left:237.336015px;}
.xc_c00459{left:242.899230px;}
.x49_c00459{left:244.080000px;}
.x3_c00459{left:248.002500px;}
.x29_c00459{left:250.830000px;}
.x40_c00459{left:252.720000px;}
.x3b_c00459{left:254.880000px;}
.x62_c00459{left:257.310000px;}
.x6f_c00459{left:258.660000px;}
.x74_c00459{left:263.250000px;}
.x52_c00459{left:264.870000px;}
.x68_c00459{left:266.490000px;}
.x59_c00459{left:267.840000px;}
.x34_c00459{left:268.920000px;}
.x5c_c00459{left:271.350000px;}
.x23_c00459{left:273.519015px;}
.xd_c00459{left:278.015025px;}
.x13_c00459{left:280.143030px;}
.x3c_c00459{left:288.090000px;}
.x4f_c00459{left:289.980000px;}
.x1d_c00459{left:295.658850px;}
.x6b_c00459{left:298.080000px;}
.x24_c00459{left:299.710125px;}
.x4_c00459{left:301.468500px;}
.x53_c00459{left:303.750000px;}
.x19_c00459{left:309.968925px;}
.x42_c00459{left:315.900000px;}
.x3d_c00459{left:318.330000px;}
.x41_c00459{left:321.030000px;}
.x2a_c00459{left:324.540000px;}
.x54_c00459{left:325.890000px;}
.x2b_c00459{left:327.240000px;}
.x31_c00459{left:329.130000px;}
.x4a_c00459{left:331.290000px;}
.x14_c00459{left:332.498580px;}
.x5_c00459{left:333.559500px;}
.x70_c00459{left:340.470000px;}
.x6c_c00459{left:344.790000px;}
.xe_c00459{left:346.874145px;}
.x55_c00459{left:348.840000px;}
.x25_c00459{left:351.012255px;}
.x66_c00459{left:352.620000px;}
.x35_c00459{left:355.050000px;}
.x15_c00459{left:369.183315px;}
.x2c_c00459{left:374.490000px;}
.x69_c00459{left:375.840000px;}
.x6_c00459{left:381.399000px;}
.xae_c00459{left:383.130000px;}
.x1e_c00459{left:384.763260px;}
.x9f_c00459{left:385.830000px;}
.x7a_c00459{left:387.450000px;}
.xaf_c00459{left:389.340000px;}
.x84_c00459{left:390.420000px;}
.x75_c00459{left:392.040000px;}
.x32_c00459{left:393.390000px;}
.x43_c00459{left:397.440000px;}
.x26_c00459{left:399.884145px;}
.x16_c00459{left:402.707490px;}
.x1a_c00459{left:406.904115px;}
.x1f_c00459{left:413.114595px;}
.x36_c00459{left:416.070000px;}
.xf_c00459{left:417.572235px;}
.xaa_c00459{left:419.850000px;}
.x2d_c00459{left:422.550000px;}
.x3e_c00459{left:425.250000px;}
.x27_c00459{left:429.585615px;}
.x44_c00459{left:433.890000px;}
.x9b_c00459{left:440.370000px;}
.x10_c00459{left:442.441740px;}
.x76_c00459{left:444.150000px;}
.x90_c00459{left:445.500000px;}
.x2e_c00459{left:446.850000px;}
.x7_c00459{left:452.670000px;}
.x20_c00459{left:453.887175px;}
.x85_c00459{left:454.950000px;}
.x7b_c00459{left:456.570000px;}
.xa0_c00459{left:458.730000px;}
.xa7_c00459{left:460.620000px;}
.x91_c00459{left:463.860000px;}
.x17_c00459{left:465.609750px;}
.x45_c00459{left:467.640000px;}
.xa6_c00459{left:468.720000px;}
.x3f_c00459{left:470.070000px;}
.xab_c00459{left:472.500000px;}
.x8_c00459{left:476.167500px;}
.x96_c00459{left:478.170000px;}
.x86_c00459{left:481.140000px;}
.x2f_c00459{left:482.220000px;}
.xa8_c00459{left:484.650000px;}
.x77_c00459{left:485.730000px;}
.x37_c00459{left:486.810000px;}
.xa1_c00459{left:488.160000px;}
.x18_c00459{left:489.911730px;}
.x97_c00459{left:491.670000px;}
.x9_c00459{left:501.552000px;}
.x8c_c00459{left:503.550000px;}
.x11_c00459{left:504.552495px;}
.x7c_c00459{left:507.060000px;}
.x9d_c00459{left:509.220000px;}
.x46_c00459{left:515.700000px;}
.x8d_c00459{left:521.370000px;}
.x87_c00459{left:522.720000px;}
.x80_c00459{left:532.440000px;}
.x92_c00459{left:535.140000px;}
.xac_c00459{left:536.490000px;}
.x98_c00459{left:537.840000px;}
.xa9_c00459{left:542.430000px;}
.x7d_c00459{left:543.780000px;}
.x93_c00459{left:547.830000px;}
.x8e_c00459{left:550.260000px;}
.x30_c00459{left:554.310000px;}
.x78_c00459{left:555.390000px;}
.x99_c00459{left:557.820000px;}
.x81_c00459{left:561.060000px;}
.x88_c00459{left:562.680000px;}
.x8a_c00459{left:565.920000px;}
.xa2_c00459{left:573.480000px;}
.x9a_c00459{left:575.640000px;}
.x82_c00459{left:577.530000px;}
.x94_c00459{left:578.610000px;}
.x7e_c00459{left:581.580000px;}
.xa3_c00459{left:582.660000px;}
.x9e_c00459{left:585.360000px;}
.x89_c00459{left:587.250000px;}
.x79_c00459{left:590.760000px;}
.x8b_c00459{left:593.460000px;}
.x95_c00459{left:595.350000px;}
.xa4_c00459{left:596.430000px;}
.xad_c00459{left:602.370000px;}
.x8f_c00459{left:606.150000px;}
.x7f_c00459{left:610.470000px;}
.x83_c00459{left:615.060000px;}
.x9c_c00459{left:617.220000px;}
.xa5_c00459{left:623.700000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fsf_c00459{font-size:41.066667pt;}
.fsd_c00459{font-size:42.933333pt;}
.fs10_c00459{font-size:43.866667pt;}
.fs13_c00459{font-size:44.800000pt;}
.fse_c00459{font-size:45.733333pt;}
.fs14_c00459{font-size:46.666667pt;}
.fs16_c00459{font-size:47.600000pt;}
.fsc_c00459{font-size:48.533333pt;}
.fs11_c00459{font-size:49.466667pt;}
.fs17_c00459{font-size:51.333333pt;}
.fs15_c00459{font-size:52.266667pt;}
.fsa_c00459{font-size:55.066667pt;}
.fs2_c00459{font-size:55.069420pt;}
.fs1_c00459{font-size:60.669700pt;}
.fs4_c00459{font-size:61.603080pt;}
.fs6_c00459{font-size:62.533333pt;}
.fs9_c00459{font-size:63.466667pt;}
.fs0_c00459{font-size:63.469840pt;}
.fs8_c00459{font-size:64.400000pt;}
.fs3_c00459{font-size:64.403220pt;}
.fs7_c00459{font-size:65.333333pt;}
.fs12_c00459{font-size:69.066667pt;}
.fs5_c00459{font-size:71.870260pt;}
.fsb_c00459{font-size:99.866667pt;}
.y0_c00459{bottom:0.000000pt;}
.y53_c00459{bottom:120.868000pt;}
.y44_c00459{bottom:122.788000pt;}
.y54_c00459{bottom:123.208000pt;}
.y52_c00459{bottom:138.593333pt;}
.y43_c00459{bottom:138.886667pt;}
.y51_c00459{bottom:154.849333pt;}
.y42_c00459{bottom:155.078667pt;}
.y50_c00459{bottom:170.662667pt;}
.y41_c00459{bottom:171.152000pt;}
.y4f_c00459{bottom:187.030667pt;}
.y40_c00459{bottom:187.118667pt;}
.y4e_c00459{bottom:202.421333pt;}
.y3f_c00459{bottom:203.026667pt;}
.y3e_c00459{bottom:218.922667pt;}
.y4d_c00459{bottom:234.038667pt;}
.y4c_c00459{bottom:250.346667pt;}
.y3d_c00459{bottom:265.772000pt;}
.y4b_c00459{bottom:266.160000pt;}
.y3c_c00459{bottom:282.132000pt;}
.y4a_c00459{bottom:282.166667pt;}
.y3b_c00459{bottom:297.881333pt;}
.y49_c00459{bottom:298.282667pt;}
.y3a_c00459{bottom:313.945333pt;}
.y48_c00459{bottom:314.121333pt;}
.y39_c00459{bottom:329.753333pt;}
.y47_c00459{bottom:330.310667pt;}
.y38_c00459{bottom:345.948000pt;}
.y46_c00459{bottom:346.806667pt;}
.y37_c00459{bottom:361.920000pt;}
.y45_c00459{bottom:362.809333pt;}
.y36_c00459{bottom:413.390667pt;}
.y35_c00459{bottom:434.348000pt;}
.y34_c00459{bottom:453.838667pt;}
.y33_c00459{bottom:474.708000pt;}
.y32_c00459{bottom:494.728000pt;}
.y31_c00459{bottom:516.333333pt;}
.y30_c00459{bottom:535.740000pt;}
.y2f_c00459{bottom:557.116000pt;}
.y2e_c00459{bottom:576.190667pt;}
.y28_c00459{bottom:616.969533pt;}
.y29_c00459{bottom:616.969787pt;}
.y27_c00459{bottom:616.969827pt;}
.y2d_c00459{bottom:616.969987pt;}
.y2c_c00459{bottom:616.970000pt;}
.y26_c00459{bottom:616.970107pt;}
.y2b_c00459{bottom:616.970293pt;}
.y2a_c00459{bottom:616.970320pt;}
.y25_c00459{bottom:616.970373pt;}
.y21_c00459{bottom:636.915760pt;}
.y1d_c00459{bottom:636.915827pt;}
.y24_c00459{bottom:636.915973pt;}
.y23_c00459{bottom:636.916253pt;}
.y22_c00459{bottom:636.916267pt;}
.y20_c00459{bottom:636.916307pt;}
.y1e_c00459{bottom:636.916347pt;}
.y1f_c00459{bottom:636.916600pt;}
.y1b_c00459{bottom:657.838893pt;}
.y1a_c00459{bottom:657.838920pt;}
.y1c_c00459{bottom:657.839147pt;}
.y12_c00459{bottom:676.318573pt;}
.y13_c00459{bottom:676.512947pt;}
.y14_c00459{bottom:677.033080pt;}
.y15_c00459{bottom:677.405120pt;}
.y16_c00459{bottom:677.665867pt;}
.y17_c00459{bottom:677.903853pt;}
.y18_c00459{bottom:678.350973pt;}
.y19_c00459{bottom:678.524320pt;}
.ya_c00459{bottom:696.721373pt;}
.yb_c00459{bottom:697.132093pt;}
.yc_c00459{bottom:697.397427pt;}
.yd_c00459{bottom:697.772240pt;}
.ye_c00459{bottom:698.507000pt;}
.yf_c00459{bottom:699.260773pt;}
.y10_c00459{bottom:699.525840pt;}
.y11_c00459{bottom:700.188613pt;}
.y1_c00459{bottom:717.361333pt;}
.y2_c00459{bottom:717.745293pt;}
.y3_c00459{bottom:717.954173pt;}
.y4_c00459{bottom:718.429427pt;}
.y5_c00459{bottom:718.714680pt;}
.y6_c00459{bottom:719.139920pt;}
.y7_c00459{bottom:719.773440pt;}
.y8_c00459{bottom:719.982307pt;}
.y9_c00459{bottom:720.207947pt;}
.h11_c00459{height:41.066667pt;}
.hf_c00459{height:42.933333pt;}
.h12_c00459{height:43.866667pt;}
.h15_c00459{height:44.800000pt;}
.h10_c00459{height:45.733333pt;}
.h16_c00459{height:46.666667pt;}
.h18_c00459{height:47.600000pt;}
.he_c00459{height:48.533333pt;}
.h13_c00459{height:49.466667pt;}
.h19_c00459{height:51.333333pt;}
.h17_c00459{height:52.266667pt;}
.hc_c00459{height:55.066667pt;}
.h4_c00459{height:55.069420pt;}
.h3_c00459{height:60.669700pt;}
.h6_c00459{height:61.603080pt;}
.h8_c00459{height:62.533333pt;}
.hb_c00459{height:63.466667pt;}
.h2_c00459{height:63.469840pt;}
.ha_c00459{height:64.400000pt;}
.h5_c00459{height:64.403220pt;}
.h9_c00459{height:65.333333pt;}
.h14_c00459{height:69.066667pt;}
.h7_c00459{height:71.870260pt;}
.hd_c00459{height:99.866667pt;}
.h0_c00459{height:896.400000pt;}
.h1_c00459{height:896.666667pt;}
.w1_c00459{width:612.666667pt;}
.w0_c00459{width:612.933333pt;}
.x0_c00459{left:0.000000pt;}
.x71_c00459{left:106.080000pt;}
.x5a_c00459{left:114.480000pt;}
.x63_c00459{left:121.200000pt;}
.x60_c00459{left:122.880000pt;}
.x56_c00459{left:124.320000pt;}
.x4b_c00459{left:125.520000pt;}
.x4d_c00459{left:133.680000pt;}
.x47_c00459{left:138.240000pt;}
.x21_c00459{left:150.002693pt;}
.x5d_c00459{left:151.440000pt;}
.x48_c00459{left:153.840000pt;}
.x38_c00459{left:155.520000pt;}
.x22_c00459{left:157.443440pt;}
.x72_c00459{left:158.400000pt;}
.xa_c00459{left:159.506213pt;}
.x1_c00459{left:161.162667pt;}
.x57_c00459{left:164.160000pt;}
.x5f_c00459{left:167.040000pt;}
.x50_c00459{left:168.000000pt;}
.x61_c00459{left:168.960000pt;}
.x64_c00459{left:171.120000pt;}
.x6d_c00459{left:175.920000pt;}
.x5b_c00459{left:177.600000pt;}
.x39_c00459{left:179.280000pt;}
.x1b_c00459{left:182.403827pt;}
.x12_c00459{left:183.934720pt;}
.x5e_c00459{left:186.240000pt;}
.x4c_c00459{left:187.440000pt;}
.x51_c00459{left:188.400000pt;}
.x28_c00459{left:190.080000pt;}
.x6a_c00459{left:191.280000pt;}
.x73_c00459{left:192.240000pt;}
.xb_c00459{left:193.777533pt;}
.x6e_c00459{left:196.320000pt;}
.x33_c00459{left:197.520000pt;}
.x2_c00459{left:199.558667pt;}
.x3a_c00459{left:201.840000pt;}
.x65_c00459{left:204.240000pt;}
.x67_c00459{left:205.200000pt;}
.x4e_c00459{left:207.120000pt;}
.x58_c00459{left:208.320000pt;}
.x1c_c00459{left:210.965347pt;}
.xc_c00459{left:215.910427pt;}
.x49_c00459{left:216.960000pt;}
.x3_c00459{left:220.446667pt;}
.x29_c00459{left:222.960000pt;}
.x40_c00459{left:224.640000pt;}
.x3b_c00459{left:226.560000pt;}
.x62_c00459{left:228.720000pt;}
.x6f_c00459{left:229.920000pt;}
.x74_c00459{left:234.000000pt;}
.x52_c00459{left:235.440000pt;}
.x68_c00459{left:236.880000pt;}
.x59_c00459{left:238.080000pt;}
.x34_c00459{left:239.040000pt;}
.x5c_c00459{left:241.200000pt;}
.x23_c00459{left:243.128013pt;}
.xd_c00459{left:247.124467pt;}
.x13_c00459{left:249.016027pt;}
.x3c_c00459{left:256.080000pt;}
.x4f_c00459{left:257.760000pt;}
.x1d_c00459{left:262.807867pt;}
.x6b_c00459{left:264.960000pt;}
.x24_c00459{left:266.409000pt;}
.x4_c00459{left:267.972000pt;}
.x53_c00459{left:270.000000pt;}
.x19_c00459{left:275.527933pt;}
.x42_c00459{left:280.800000pt;}
.x3d_c00459{left:282.960000pt;}
.x41_c00459{left:285.360000pt;}
.x2a_c00459{left:288.480000pt;}
.x54_c00459{left:289.680000pt;}
.x2b_c00459{left:290.880000pt;}
.x31_c00459{left:292.560000pt;}
.x4a_c00459{left:294.480000pt;}
.x14_c00459{left:295.554293pt;}
.x5_c00459{left:296.497333pt;}
.x70_c00459{left:302.640000pt;}
.x6c_c00459{left:306.480000pt;}
.xe_c00459{left:308.332573pt;}
.x55_c00459{left:310.080000pt;}
.x25_c00459{left:312.010893pt;}
.x66_c00459{left:313.440000pt;}
.x35_c00459{left:315.600000pt;}
.x15_c00459{left:328.162947pt;}
.x2c_c00459{left:332.880000pt;}
.x69_c00459{left:334.080000pt;}
.x6_c00459{left:339.021333pt;}
.xae_c00459{left:340.560000pt;}
.x1e_c00459{left:342.011787pt;}
.x9f_c00459{left:342.960000pt;}
.x7a_c00459{left:344.400000pt;}
.xaf_c00459{left:346.080000pt;}
.x84_c00459{left:347.040000pt;}
.x75_c00459{left:348.480000pt;}
.x32_c00459{left:349.680000pt;}
.x43_c00459{left:353.280000pt;}
.x26_c00459{left:355.452573pt;}
.x16_c00459{left:357.962213pt;}
.x1a_c00459{left:361.692547pt;}
.x1f_c00459{left:367.212973pt;}
.x36_c00459{left:369.840000pt;}
.xf_c00459{left:371.175320pt;}
.xaa_c00459{left:373.200000pt;}
.x2d_c00459{left:375.600000pt;}
.x3e_c00459{left:378.000000pt;}
.x27_c00459{left:381.853880pt;}
.x44_c00459{left:385.680000pt;}
.x9b_c00459{left:391.440000pt;}
.x10_c00459{left:393.281547pt;}
.x76_c00459{left:394.800000pt;}
.x90_c00459{left:396.000000pt;}
.x2e_c00459{left:397.200000pt;}
.x7_c00459{left:402.373333pt;}
.x20_c00459{left:403.455267pt;}
.x85_c00459{left:404.400000pt;}
.x7b_c00459{left:405.840000pt;}
.xa0_c00459{left:407.760000pt;}
.xa7_c00459{left:409.440000pt;}
.x91_c00459{left:412.320000pt;}
.x17_c00459{left:413.875333pt;}
.x45_c00459{left:415.680000pt;}
.xa6_c00459{left:416.640000pt;}
.x3f_c00459{left:417.840000pt;}
.xab_c00459{left:420.000000pt;}
.x8_c00459{left:423.260000pt;}
.x96_c00459{left:425.040000pt;}
.x86_c00459{left:427.680000pt;}
.x2f_c00459{left:428.640000pt;}
.xa8_c00459{left:430.800000pt;}
.x77_c00459{left:431.760000pt;}
.x37_c00459{left:432.720000pt;}
.xa1_c00459{left:433.920000pt;}
.x18_c00459{left:435.477093pt;}
.x97_c00459{left:437.040000pt;}
.x9_c00459{left:445.824000pt;}
.x8c_c00459{left:447.600000pt;}
.x11_c00459{left:448.491107pt;}
.x7c_c00459{left:450.720000pt;}
.x9d_c00459{left:452.640000pt;}
.x46_c00459{left:458.400000pt;}
.x8d_c00459{left:463.440000pt;}
.x87_c00459{left:464.640000pt;}
.x80_c00459{left:473.280000pt;}
.x92_c00459{left:475.680000pt;}
.xac_c00459{left:476.880000pt;}
.x98_c00459{left:478.080000pt;}
.xa9_c00459{left:482.160000pt;}
.x7d_c00459{left:483.360000pt;}
.x93_c00459{left:486.960000pt;}
.x8e_c00459{left:489.120000pt;}
.x30_c00459{left:492.720000pt;}
.x78_c00459{left:493.680000pt;}
.x99_c00459{left:495.840000pt;}
.x81_c00459{left:498.720000pt;}
.x88_c00459{left:500.160000pt;}
.x8a_c00459{left:503.040000pt;}
.xa2_c00459{left:509.760000pt;}
.x9a_c00459{left:511.680000pt;}
.x82_c00459{left:513.360000pt;}
.x94_c00459{left:514.320000pt;}
.x7e_c00459{left:516.960000pt;}
.xa3_c00459{left:517.920000pt;}
.x9e_c00459{left:520.320000pt;}
.x89_c00459{left:522.000000pt;}
.x79_c00459{left:525.120000pt;}
.x8b_c00459{left:527.520000pt;}
.x95_c00459{left:529.200000pt;}
.xa4_c00459{left:530.160000pt;}
.xad_c00459{left:535.440000pt;}
.x8f_c00459{left:538.800000pt;}
.x7f_c00459{left:542.640000pt;}
.x83_c00459{left:546.720000pt;}
.x9c_c00459{left:548.640000pt;}
.xa5_c00459{left:554.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_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_2f6c0d3825a5d54c0b922384.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;}
.m15_c00460{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);}
.me2_c00460{transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);}
.m11b_c00460{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);}
.md4_c00460{transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016265,0.000000,0.000000,0.250000,0,0);}
.mec_c00460{transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);}
.mfa_c00460{transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);}
.med_c00460{transform:matrix(0.068220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068220,0.000000,0.000000,0.250000,0,0);}
.m113_c00460{transform:matrix(0.075205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075205,0.000000,0.000000,0.250000,0,0);}
.m45_c00460{transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);}
.m4b_c00460{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.m128_c00460{transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110255,0.000000,0.000000,0.250000,0,0);}
.m81_c00460{transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00460{transform:matrix(0.117470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117470,0.000000,0.000000,0.250000,0,0);}
.m46_c00460{transform:matrix(0.143705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143705,0.000000,0.000000,0.250000,0,0);}
.m5b_c00460{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.mc0_c00460{transform:matrix(0.145785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145785,0.000000,0.000000,0.250000,0,0);}
.m69_c00460{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);}
.m7_c00460{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);}
.m125_c00460{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);}
.m2_c00460{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);}
.m5a_c00460{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);}
.mff_c00460{transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);}
.ma0_c00460{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);}
.m6_c00460{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);}
.m5c_c00460{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);}
.m48_c00460{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);}
.m65_c00460{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);}
.me_c00460{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);}
.m8_c00460{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);}
.m64_c00460{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);}
.mc1_c00460{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{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);}
.m3c_c00460{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);}
.mb7_c00460{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);}
.m9_c00460{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);}
.mc_c00460{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);}
.mbf_c00460{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);}
.m68_c00460{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);}
.m99_c00460{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);}
.m17_c00460{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);}
.m56_c00460{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);}
.m41_c00460{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);}
.m8b_c00460{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);}
.ma5_c00460{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);}
.m104_c00460{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);}
.m67_c00460{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);}
.m25_c00460{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);}
.m76_c00460{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);}
.mc5_c00460{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);}
.m77_c00460{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);}
.m97_c00460{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);}
.mbc_c00460{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);}
.m12_c00460{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);}
.m40_c00460{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);}
.m4_c00460{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);}
.mbb_c00460{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);}
.ma2_c00460{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_c00460{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);}
.mdd_c00460{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);}
.m59_c00460{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);}
.m27_c00460{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);}
.m6d_c00460{transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177345,0.000000,0.000000,0.250000,0,0);}
.m9e_c00460{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);}
.mf8_c00460{transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);}
.me4_c00460{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);}
.mfb_c00460{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);}
.m10a_c00460{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);}
.m35_c00460{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);}
.ma4_c00460{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);}
.mab_c00460{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);}
.ma7_c00460{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);}
.mf3_c00460{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);}
.mf7_c00460{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);}
.m100_c00460{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);}
.m6b_c00460{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);}
.mbe_c00460{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);}
.m75_c00460{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);}
.mdf_c00460{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);}
.mc9_c00460{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);}
.m122_c00460{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);}
.m70_c00460{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);}
.ma_c00460{transform:matrix(0.186480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186480,0.000000,0.000000,0.250000,0,0);}
.mf6_c00460{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);}
.m6e_c00460{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);}
.m2c_c00460{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);}
.mc3_c00460{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);}
.m3d_c00460{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);}
.me5_c00460{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);}
.m1f_c00460{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);}
.m44_c00460{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);}
.m32_c00460{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);}
.m106_c00460{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);}
.m62_c00460{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);}
.m57_c00460{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);}
.maf_c00460{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);}
.m6a_c00460{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);}
.m6f_c00460{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);}
.m3f_c00460{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);}
.m124_c00460{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);}
.m36_c00460{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);}
.m52_c00460{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);}
.m2e_c00460{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);}
.mf4_c00460{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);}
.m4f_c00460{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);}
.m115_c00460{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);}
.m117_c00460{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);}
.m3a_c00460{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);}
.mdb_c00460{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);}
.md_c00460{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);}
.m20_c00460{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);}
.m89_c00460{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);}
.mb4_c00460{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);}
.m43_c00460{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);}
.m78_c00460{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);}
.m63_c00460{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);}
.m126_c00460{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);}
.m116_c00460{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);}
.m4d_c00460{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);}
.m1a_c00460{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);}
.m120_c00460{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);}
.m55_c00460{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);}
.m130_c00460{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);}
.ma8_c00460{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);}
.m5d_c00460{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);}
.md9_c00460{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);}
.m16_c00460{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);}
.m121_c00460{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);}
.mf5_c00460{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);}
.m61_c00460{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);}
.mb0_c00460{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);}
.mdc_c00460{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);}
.m21_c00460{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);}
.ma6_c00460{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);}
.m31_c00460{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);}
.m50_c00460{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);}
.m0_c00460{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);}
.md7_c00460{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);}
.m2d_c00460{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);}
.m71_c00460{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);}
.m53_c00460{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);}
.md6_c00460{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);}
.m3_c00460{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);}
.m102_c00460{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);}
.mad_c00460{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);}
.md1_c00460{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);}
.mef_c00460{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);}
.m42_c00460{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);}
.m123_c00460{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);}
.m51_c00460{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);}
.m88_c00460{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);}
.mb_c00460{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);}
.m9d_c00460{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);}
.mbd_c00460{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);}
.m58_c00460{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);}
.ma1_c00460{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);}
.m18_c00460{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);}
.mb6_c00460{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);}
.m74_c00460{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);}
.m24_c00460{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);}
.ma3_c00460{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);}
.mee_c00460{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);}
.m23_c00460{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);}
.mb1_c00460{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);}
.m4e_c00460{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);}
.mc4_c00460{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);}
.m9a_c00460{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);}
.mc8_c00460{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);}
.m11_c00460{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);}
.mb8_c00460{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);}
.m6c_c00460{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m12e_c00460{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);}
.m107_c00460{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);}
.m8c_c00460{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);}
.mcb_c00460{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);}
.mc7_c00460{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);}
.me3_c00460{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);}
.m94_c00460{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);}
.m5_c00460{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);}
.m96_c00460{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);}
.m1c_c00460{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);}
.m98_c00460{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);}
.md8_c00460{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);}
.m85_c00460{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);}
.mba_c00460{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);}
.m109_c00460{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);}
.m8d_c00460{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);}
.m11f_c00460{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.mae_c00460{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00460{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);}
.m8e_c00460{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);}
.mc6_c00460{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);}
.m9c_c00460{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);}
.mcc_c00460{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);}
.m73_c00460{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);}
.m7a_c00460{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);}
.m60_c00460{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);}
.maa_c00460{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);}
.mf0_c00460{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);}
.me9_c00460{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);}
.m19_c00460{transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{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);}
.m119_c00460{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);}
.m105_c00460{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);}
.m110_c00460{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);}
.me7_c00460{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);}
.m2b_c00460{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);}
.ma9_c00460{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);}
.md0_c00460{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);}
.m47_c00460{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.m49_c00460{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);}
.m22_c00460{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);}
.mea_c00460{transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);}
.mb2_c00460{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);}
.meb_c00460{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);}
.m118_c00460{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);}
.m79_c00460{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);}
.m37_c00460{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);}
.mce_c00460{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);}
.mf9_c00460{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);}
.mf1_c00460{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);}
.m54_c00460{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);}
.m9b_c00460{transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);}
.md2_c00460{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);}
.mf_c00460{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);}
.m9f_c00460{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);}
.m72_c00460{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00460{transform:matrix(0.236045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236045,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{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);}
.m5e_c00460{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);}
.md3_c00460{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);}
.me1_c00460{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);}
.m28_c00460{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);}
.m10f_c00460{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);}
.m10_c00460{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);}
.mcf_c00460{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m10b_c00460{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);}
.m12f_c00460{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m7b_c00460{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);}
.m8a_c00460{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);}
.m10e_c00460{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);}
.m129_c00460{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m3e_c00460{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);}
.m8f_c00460{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);}
.m1d_c00460{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.md5_c00460{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);}
.mfc_c00460{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.m10c_c00460{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);}
.m66_c00460{transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255620,0.000000,0.000000,0.250000,0,0);}
.mca_c00460{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{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);}
.m112_c00460{transform:matrix(0.260345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260345,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);}
.m12a_c00460{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);}
.mb5_c00460{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);}
.m95_c00460{transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268130,0.000000,0.000000,0.250000,0,0);}
.mac_c00460{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.me8_c00460{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00460{transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277955,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279960,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280430,0.000000,0.000000,0.250000,0,0);}
.m92_c00460{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);}
.mde_c00460{transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);}
.m7e_c00460{transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);}
.mfe_c00460{transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287685,0.000000,0.000000,0.250000,0,0);}
.m103_c00460{transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289090,0.000000,0.000000,0.250000,0,0);}
.m87_c00460{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.me0_c00460{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);}
.m10d_c00460{transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);}
.m127_c00460{transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);}
.m83_c00460{transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);}
.m11e_c00460{transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307590,0.000000,0.000000,0.250000,0,0);}
.m12d_c00460{transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308225,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);}
.m3b_c00460{transform:matrix(0.311040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311040,0.000000,0.000000,0.250000,0,0);}
.m93_c00460{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00460{transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);}
.m82_c00460{transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316655,0.000000,0.000000,0.250000,0,0);}
.mcd_c00460{transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324650,0.000000,0.000000,0.250000,0,0);}
.m39_c00460{transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.332190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332190,0.000000,0.000000,0.250000,0,0);}
.m12b_c00460{transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345480,0.000000,0.000000,0.250000,0,0);}
.m84_c00460{transform:matrix(0.346410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346410,0.000000,0.000000,0.250000,0,0);}
.m12c_c00460{transform:matrix(0.348205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348205,0.000000,0.000000,0.250000,0,0);}
.m108_c00460{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);}
.m5f_c00460{transform:matrix(0.360645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360645,0.000000,0.000000,0.250000,0,0);}
.mda_c00460{transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368745,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{transform:matrix(0.371670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371670,0.000000,0.000000,0.250000,0,0);}
.mc2_c00460{transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);}
.mfd_c00460{transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377115,0.000000,0.000000,0.250000,0,0);}
.m14_c00460{transform:matrix(0.382745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382745,0.000000,0.000000,0.250000,0,0);}
.m11d_c00460{transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385745,0.000000,0.000000,0.250000,0,0);}
.m114_c00460{transform:matrix(0.403350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403350,0.000000,0.000000,0.250000,0,0);}
.m91_c00460{transform:matrix(0.405950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405950,0.000000,0.000000,0.250000,0,0);}
.m90_c00460{transform:matrix(0.421660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421660,0.000000,0.000000,0.250000,0,0);}
.m111_c00460{transform:matrix(0.431015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431015,0.000000,0.000000,0.250000,0,0);}
.m11a_c00460{transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);}
.m11c_c00460{transform:matrix(0.503865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503865,0.000000,0.000000,0.250000,0,0);}
.m7f_c00460{transform:matrix(0.510985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510985,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.611375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611375,0.000000,0.000000,0.250000,0,0);}
.m101_c00460{transform:matrix(0.617145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617145,0.000000,0.000000,0.250000,0,0);}
.m80_c00460{transform:matrix(0.652160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652160,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.669670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669670,0.000000,0.000000,0.250000,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;}
.fs5_c00460{font-size:16.800000px;}
.fsa_c00460{font-size:46.200000px;}
.fsf_c00460{font-size:48.300000px;}
.fs7_c00460{font-size:49.350000px;}
.fs9_c00460{font-size:50.400000px;}
.fsb_c00460{font-size:51.450000px;}
.fs8_c00460{font-size:52.500000px;}
.fse_c00460{font-size:53.550000px;}
.fsd_c00460{font-size:54.600000px;}
.fsc_c00460{font-size:55.650000px;}
.fs6_c00460{font-size:64.050000px;}
.fs4_c00460{font-size:68.250000px;}
.fs3_c00460{font-size:70.350000px;}
.fs2_c00460{font-size:71.400000px;}
.fs1_c00460{font-size:72.450000px;}
.fs0_c00460{font-size:85.050000px;}
.y0_c00460{bottom:0.000000px;}
.y22_c00460{bottom:167.832000px;}
.y21_c00460{bottom:185.449500px;}
.y20_c00460{bottom:202.887000px;}
.y1f_c00460{bottom:220.860000px;}
.y26_c00460{bottom:221.040000px;}
.y1e_c00460{bottom:238.674000px;}
.y25_c00460{bottom:239.313000px;}
.y1d_c00460{bottom:256.653000px;}
.y24_c00460{bottom:257.137500px;}
.y1c_c00460{bottom:274.981500px;}
.y23_c00460{bottom:275.307000px;}
.y1b_c00460{bottom:293.242500px;}
.y1a_c00460{bottom:310.798500px;}
.y19_c00460{bottom:328.888500px;}
.y18_c00460{bottom:346.713000px;}
.y17_c00460{bottom:364.797000px;}
.y16_c00460{bottom:382.590000px;}
.y15_c00460{bottom:383.244000px;}
.y12_c00460{bottom:400.716000px;}
.y14_c00460{bottom:401.334000px;}
.y11_c00460{bottom:418.699500px;}
.y13_c00460{bottom:418.998000px;}
.y10_c00460{bottom:436.732500px;}
.yf_c00460{bottom:485.979000px;}
.ye_c00460{bottom:508.614000px;}
.yd_c00460{bottom:531.294000px;}
.yc_c00460{bottom:553.770000px;}
.yb_c00460{bottom:576.720000px;}
.ya_c00460{bottom:586.303500px;}
.y9_c00460{bottom:645.012000px;}
.y8_c00460{bottom:666.954000px;}
.y7_c00460{bottom:689.401500px;}
.y6_c00460{bottom:712.351500px;}
.y5_c00460{bottom:735.126000px;}
.y4_c00460{bottom:757.965000px;}
.y3_c00460{bottom:781.641000px;}
.y2_c00460{bottom:803.865000px;}
.y1_c00460{bottom:827.170500px;}
.h7_c00460{height:16.800000px;}
.hc_c00460{height:46.200000px;}
.h11_c00460{height:48.300000px;}
.h9_c00460{height:49.350000px;}
.hb_c00460{height:50.400000px;}
.hd_c00460{height:51.450000px;}
.ha_c00460{height:52.500000px;}
.h10_c00460{height:53.550000px;}
.hf_c00460{height:54.600000px;}
.he_c00460{height:55.650000px;}
.h8_c00460{height:64.050000px;}
.h6_c00460{height:68.250000px;}
.h5_c00460{height:70.350000px;}
.h4_c00460{height:71.400000px;}
.h3_c00460{height:72.450000px;}
.h2_c00460{height:85.050000px;}
.h1_c00460{height:1005.000000px;}
.h0_c00460{height:1005.150000px;}
.w0_c00460{width:715.200000px;}
.w1_c00460{width:715.500000px;}
.x0_c00460{left:0.000000px;}
.x5b_c00460{left:93.960000px;}
.xa3_c00460{left:95.040000px;}
.x66_c00460{left:96.390000px;}
.x9d_c00460{left:97.470000px;}
.xa8_c00460{left:100.980000px;}
.x7b_c00460{left:109.350000px;}
.xa7_c00460{left:113.130000px;}
.xa4_c00460{left:114.210000px;}
.xa9_c00460{left:123.660000px;}
.x1_c00460{left:130.140000px;}
.x33_c00460{left:132.030000px;}
.x67_c00460{left:133.650000px;}
.x57_c00460{left:135.810000px;}
.x77_c00460{left:138.510000px;}
.x9e_c00460{left:140.400000px;}
.x34_c00460{left:146.610000px;}
.x9_c00460{left:148.500000px;}
.x2c_c00460{left:152.010000px;}
.x1d_c00460{left:155.520000px;}
.x89_c00460{left:156.870000px;}
.x35_c00460{left:158.220000px;}
.x7c_c00460{left:162.540000px;}
.x5c_c00460{left:163.620000px;}
.xaa_c00460{left:165.780000px;}
.x86_c00460{left:167.940000px;}
.x68_c00460{left:169.290000px;}
.x4b_c00460{left:170.910000px;}
.x2_c00460{left:172.260000px;}
.x15_c00460{left:174.960000px;}
.x36_c00460{left:177.390000px;}
.x54_c00460{left:180.630000px;}
.x6f_c00460{left:181.980000px;}
.xa_c00460{left:185.490000px;}
.x7d_c00460{left:187.650000px;}
.x6b_c00460{left:192.510000px;}
.xab_c00460{left:194.400000px;}
.x87_c00460{left:196.830000px;}
.x58_c00460{left:199.530000px;}
.x1e_c00460{left:200.610000px;}
.xa5_c00460{left:202.770000px;}
.x2d_c00460{left:209.790000px;}
.x7e_c00460{left:211.680000px;}
.x25_c00460{left:213.300000px;}
.xad_c00460{left:216.000000px;}
.x8a_c00460{left:217.890000px;}
.x16_c00460{left:218.970000px;}
.x9f_c00460{left:220.590000px;}
.x6c_c00460{left:223.020000px;}
.x2e_c00460{left:226.800000px;}
.xb_c00460{left:227.880000px;}
.x59_c00460{left:228.960000px;}
.x3_c00460{left:233.550000px;}
.x44_c00460{left:234.900000px;}
.x8b_c00460{left:241.650000px;}
.x7f_c00460{left:243.270000px;}
.xa0_c00460{left:244.890000px;}
.x37_c00460{left:249.480000px;}
.x55_c00460{left:250.560000px;}
.x6d_c00460{left:252.720000px;}
.x26_c00460{left:256.230000px;}
.x17_c00460{left:258.120000px;}
.x1f_c00460{left:260.820000px;}
.xc_c00460{left:262.170000px;}
.x8c_c00460{left:264.330000px;}
.x4_c00460{left:265.950000px;}
.x69_c00460{left:269.460000px;}
.x70_c00460{left:271.350000px;}
.x80_c00460{left:273.240000px;}
.x45_c00460{left:275.130000px;}
.x5_c00460{left:282.690000px;}
.xac_c00460{left:283.770000px;}
.x4c_c00460{left:286.200000px;}
.xd_c00460{left:287.280000px;}
.xa6_c00460{left:289.440000px;}
.x6e_c00460{left:290.790000px;}
.xae_c00460{left:298.080000px;}
.x71_c00460{left:299.700000px;}
.x81_c00460{left:300.780000px;}
.x27_c00460{left:302.400000px;}
.x4d_c00460{left:306.450000px;}
.x56_c00460{left:307.530000px;}
.x8d_c00460{left:310.500000px;}
.x2f_c00460{left:313.200000px;}
.x6_c00460{left:314.550000px;}
.x3e_c00460{left:316.980000px;}
.x41_c00460{left:318.600000px;}
.x6a_c00460{left:320.220000px;}
.x20_c00460{left:325.080000px;}
.x46_c00460{left:326.430000px;}
.xe_c00460{left:331.290000px;}
.x38_c00460{left:334.260000px;}
.x28_c00460{left:336.690000px;}
.x7_c00460{left:338.580000px;}
.x4e_c00460{left:345.060000px;}
.x13_c00460{left:346.950000px;}
.x9a_c00460{left:348.840000px;}
.x42_c00460{left:351.000000px;}
.xf_c00460{left:355.590000px;}
.xa1_c00460{left:356.940000px;}
.x94_c00460{left:358.020000px;}
.x21_c00460{left:360.450000px;}
.x98_c00460{left:362.340000px;}
.x39_c00460{left:364.770000px;}
.x47_c00460{left:367.200000px;}
.x90_c00460{left:369.360000px;}
.x8_c00460{left:370.710000px;}
.x8e_c00460{left:372.060000px;}
.x18_c00460{left:374.220000px;}
.x4f_c00460{left:375.300000px;}
.x99_c00460{left:376.380000px;}
.x5a_c00460{left:378.000000px;}
.x82_c00460{left:379.350000px;}
.x95_c00460{left:381.510000px;}
.x30_c00460{left:382.860000px;}
.x9b_c00460{left:386.100000px;}
.x48_c00460{left:388.530000px;}
.x22_c00460{left:393.930000px;}
.x43_c00460{left:396.090000px;}
.x19_c00460{left:399.600000px;}
.x10_c00460{left:401.220000px;}
.x50_c00460{left:402.570000px;}
.xa2_c00460{left:406.080000px;}
.x3a_c00460{left:407.700000px;}
.x29_c00460{left:408.780000px;}
.x62_c00460{left:409.860000px;}
.x23_c00460{left:413.640000px;}
.x31_c00460{left:414.720000px;}
.x9c_c00460{left:416.610000px;}
.x11_c00460{left:418.770000px;}
.x5d_c00460{left:425.250000px;}
.x72_c00460{left:427.410000px;}
.x78_c00460{left:428.760000px;}
.x96_c00460{left:433.890000px;}
.x51_c00460{left:434.970000px;}
.x1a_c00460{left:439.560000px;}
.x2a_c00460{left:440.910000px;}
.x83_c00460{left:446.850000px;}
.x24_c00460{left:450.090000px;}
.x14_c00460{left:451.440000px;}
.x52_c00460{left:453.870000px;}
.x12_c00460{left:456.300000px;}
.x84_c00460{left:460.080000px;}
.x73_c00460{left:462.780000px;}
.x63_c00460{left:467.910000px;}
.x8f_c00460{left:474.390000px;}
.x79_c00460{left:477.360000px;}
.x2b_c00460{left:478.710000px;}
.x32_c00460{left:480.060000px;}
.x91_c00460{left:481.410000px;}
.x85_c00460{left:482.760000px;}
.x5e_c00460{left:486.000000px;}
.x3b_c00460{left:488.970000px;}
.x5f_c00460{left:495.990000px;}
.x53_c00460{left:499.770000px;}
.x97_c00460{left:502.470000px;}
.x3f_c00460{left:505.170000px;}
.x1b_c00460{left:510.840000px;}
.x1c_c00460{left:513.000000px;}
.x64_c00460{left:514.620000px;}
.x49_c00460{left:515.700000px;}
.x74_c00460{left:523.260000px;}
.x65_c00460{left:526.770000px;}
.x7a_c00460{left:528.390000px;}
.x60_c00460{left:531.090000px;}
.x40_c00460{left:533.520000px;}
.x61_c00460{left:540.000000px;}
.x75_c00460{left:545.130000px;}
.x3c_c00460{left:554.040000px;}
.x4a_c00460{left:555.390000px;}
.x3d_c00460{left:556.470000px;}
.x93_c00460{left:557.820000px;}
.x76_c00460{left:560.790000px;}
.x88_c00460{left:564.030000px;}
.x92_c00460{left:587.250000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fs5_c00460{font-size:14.933333pt;}
.fsa_c00460{font-size:41.066667pt;}
.fsf_c00460{font-size:42.933333pt;}
.fs7_c00460{font-size:43.866667pt;}
.fs9_c00460{font-size:44.800000pt;}
.fsb_c00460{font-size:45.733333pt;}
.fs8_c00460{font-size:46.666667pt;}
.fse_c00460{font-size:47.600000pt;}
.fsd_c00460{font-size:48.533333pt;}
.fsc_c00460{font-size:49.466667pt;}
.fs6_c00460{font-size:56.933333pt;}
.fs4_c00460{font-size:60.666667pt;}
.fs3_c00460{font-size:62.533333pt;}
.fs2_c00460{font-size:63.466667pt;}
.fs1_c00460{font-size:64.400000pt;}
.fs0_c00460{font-size:75.600000pt;}
.y0_c00460{bottom:0.000000pt;}
.y22_c00460{bottom:149.184000pt;}
.y21_c00460{bottom:164.844000pt;}
.y20_c00460{bottom:180.344000pt;}
.y1f_c00460{bottom:196.320000pt;}
.y26_c00460{bottom:196.480000pt;}
.y1e_c00460{bottom:212.154667pt;}
.y25_c00460{bottom:212.722667pt;}
.y1d_c00460{bottom:228.136000pt;}
.y24_c00460{bottom:228.566667pt;}
.y1c_c00460{bottom:244.428000pt;}
.y23_c00460{bottom:244.717333pt;}
.y1b_c00460{bottom:260.660000pt;}
.y1a_c00460{bottom:276.265333pt;}
.y19_c00460{bottom:292.345333pt;}
.y18_c00460{bottom:308.189333pt;}
.y17_c00460{bottom:324.264000pt;}
.y16_c00460{bottom:340.080000pt;}
.y15_c00460{bottom:340.661333pt;}
.y12_c00460{bottom:356.192000pt;}
.y14_c00460{bottom:356.741333pt;}
.y11_c00460{bottom:372.177333pt;}
.y13_c00460{bottom:372.442667pt;}
.y10_c00460{bottom:388.206667pt;}
.yf_c00460{bottom:431.981333pt;}
.ye_c00460{bottom:452.101333pt;}
.yd_c00460{bottom:472.261333pt;}
.yc_c00460{bottom:492.240000pt;}
.yb_c00460{bottom:512.640000pt;}
.ya_c00460{bottom:521.158667pt;}
.y9_c00460{bottom:573.344000pt;}
.y8_c00460{bottom:592.848000pt;}
.y7_c00460{bottom:612.801333pt;}
.y6_c00460{bottom:633.201333pt;}
.y5_c00460{bottom:653.445333pt;}
.y4_c00460{bottom:673.746667pt;}
.y3_c00460{bottom:694.792000pt;}
.y2_c00460{bottom:714.546667pt;}
.y1_c00460{bottom:735.262667pt;}
.h7_c00460{height:14.933333pt;}
.hc_c00460{height:41.066667pt;}
.h11_c00460{height:42.933333pt;}
.h9_c00460{height:43.866667pt;}
.hb_c00460{height:44.800000pt;}
.hd_c00460{height:45.733333pt;}
.ha_c00460{height:46.666667pt;}
.h10_c00460{height:47.600000pt;}
.hf_c00460{height:48.533333pt;}
.he_c00460{height:49.466667pt;}
.h8_c00460{height:56.933333pt;}
.h6_c00460{height:60.666667pt;}
.h5_c00460{height:62.533333pt;}
.h4_c00460{height:63.466667pt;}
.h3_c00460{height:64.400000pt;}
.h2_c00460{height:75.600000pt;}
.h1_c00460{height:893.333333pt;}
.h0_c00460{height:893.466667pt;}
.w0_c00460{width:635.733333pt;}
.w1_c00460{width:636.000000pt;}
.x0_c00460{left:0.000000pt;}
.x5b_c00460{left:83.520000pt;}
.xa3_c00460{left:84.480000pt;}
.x66_c00460{left:85.680000pt;}
.x9d_c00460{left:86.640000pt;}
.xa8_c00460{left:89.760000pt;}
.x7b_c00460{left:97.200000pt;}
.xa7_c00460{left:100.560000pt;}
.xa4_c00460{left:101.520000pt;}
.xa9_c00460{left:109.920000pt;}
.x1_c00460{left:115.680000pt;}
.x33_c00460{left:117.360000pt;}
.x67_c00460{left:118.800000pt;}
.x57_c00460{left:120.720000pt;}
.x77_c00460{left:123.120000pt;}
.x9e_c00460{left:124.800000pt;}
.x34_c00460{left:130.320000pt;}
.x9_c00460{left:132.000000pt;}
.x2c_c00460{left:135.120000pt;}
.x1d_c00460{left:138.240000pt;}
.x89_c00460{left:139.440000pt;}
.x35_c00460{left:140.640000pt;}
.x7c_c00460{left:144.480000pt;}
.x5c_c00460{left:145.440000pt;}
.xaa_c00460{left:147.360000pt;}
.x86_c00460{left:149.280000pt;}
.x68_c00460{left:150.480000pt;}
.x4b_c00460{left:151.920000pt;}
.x2_c00460{left:153.120000pt;}
.x15_c00460{left:155.520000pt;}
.x36_c00460{left:157.680000pt;}
.x54_c00460{left:160.560000pt;}
.x6f_c00460{left:161.760000pt;}
.xa_c00460{left:164.880000pt;}
.x7d_c00460{left:166.800000pt;}
.x6b_c00460{left:171.120000pt;}
.xab_c00460{left:172.800000pt;}
.x87_c00460{left:174.960000pt;}
.x58_c00460{left:177.360000pt;}
.x1e_c00460{left:178.320000pt;}
.xa5_c00460{left:180.240000pt;}
.x2d_c00460{left:186.480000pt;}
.x7e_c00460{left:188.160000pt;}
.x25_c00460{left:189.600000pt;}
.xad_c00460{left:192.000000pt;}
.x8a_c00460{left:193.680000pt;}
.x16_c00460{left:194.640000pt;}
.x9f_c00460{left:196.080000pt;}
.x6c_c00460{left:198.240000pt;}
.x2e_c00460{left:201.600000pt;}
.xb_c00460{left:202.560000pt;}
.x59_c00460{left:203.520000pt;}
.x3_c00460{left:207.600000pt;}
.x44_c00460{left:208.800000pt;}
.x8b_c00460{left:214.800000pt;}
.x7f_c00460{left:216.240000pt;}
.xa0_c00460{left:217.680000pt;}
.x37_c00460{left:221.760000pt;}
.x55_c00460{left:222.720000pt;}
.x6d_c00460{left:224.640000pt;}
.x26_c00460{left:227.760000pt;}
.x17_c00460{left:229.440000pt;}
.x1f_c00460{left:231.840000pt;}
.xc_c00460{left:233.040000pt;}
.x8c_c00460{left:234.960000pt;}
.x4_c00460{left:236.400000pt;}
.x69_c00460{left:239.520000pt;}
.x70_c00460{left:241.200000pt;}
.x80_c00460{left:242.880000pt;}
.x45_c00460{left:244.560000pt;}
.x5_c00460{left:251.280000pt;}
.xac_c00460{left:252.240000pt;}
.x4c_c00460{left:254.400000pt;}
.xd_c00460{left:255.360000pt;}
.xa6_c00460{left:257.280000pt;}
.x6e_c00460{left:258.480000pt;}
.xae_c00460{left:264.960000pt;}
.x71_c00460{left:266.400000pt;}
.x81_c00460{left:267.360000pt;}
.x27_c00460{left:268.800000pt;}
.x4d_c00460{left:272.400000pt;}
.x56_c00460{left:273.360000pt;}
.x8d_c00460{left:276.000000pt;}
.x2f_c00460{left:278.400000pt;}
.x6_c00460{left:279.600000pt;}
.x3e_c00460{left:281.760000pt;}
.x41_c00460{left:283.200000pt;}
.x6a_c00460{left:284.640000pt;}
.x20_c00460{left:288.960000pt;}
.x46_c00460{left:290.160000pt;}
.xe_c00460{left:294.480000pt;}
.x38_c00460{left:297.120000pt;}
.x28_c00460{left:299.280000pt;}
.x7_c00460{left:300.960000pt;}
.x4e_c00460{left:306.720000pt;}
.x13_c00460{left:308.400000pt;}
.x9a_c00460{left:310.080000pt;}
.x42_c00460{left:312.000000pt;}
.xf_c00460{left:316.080000pt;}
.xa1_c00460{left:317.280000pt;}
.x94_c00460{left:318.240000pt;}
.x21_c00460{left:320.400000pt;}
.x98_c00460{left:322.080000pt;}
.x39_c00460{left:324.240000pt;}
.x47_c00460{left:326.400000pt;}
.x90_c00460{left:328.320000pt;}
.x8_c00460{left:329.520000pt;}
.x8e_c00460{left:330.720000pt;}
.x18_c00460{left:332.640000pt;}
.x4f_c00460{left:333.600000pt;}
.x99_c00460{left:334.560000pt;}
.x5a_c00460{left:336.000000pt;}
.x82_c00460{left:337.200000pt;}
.x95_c00460{left:339.120000pt;}
.x30_c00460{left:340.320000pt;}
.x9b_c00460{left:343.200000pt;}
.x48_c00460{left:345.360000pt;}
.x22_c00460{left:350.160000pt;}
.x43_c00460{left:352.080000pt;}
.x19_c00460{left:355.200000pt;}
.x10_c00460{left:356.640000pt;}
.x50_c00460{left:357.840000pt;}
.xa2_c00460{left:360.960000pt;}
.x3a_c00460{left:362.400000pt;}
.x29_c00460{left:363.360000pt;}
.x62_c00460{left:364.320000pt;}
.x23_c00460{left:367.680000pt;}
.x31_c00460{left:368.640000pt;}
.x9c_c00460{left:370.320000pt;}
.x11_c00460{left:372.240000pt;}
.x5d_c00460{left:378.000000pt;}
.x72_c00460{left:379.920000pt;}
.x78_c00460{left:381.120000pt;}
.x96_c00460{left:385.680000pt;}
.x51_c00460{left:386.640000pt;}
.x1a_c00460{left:390.720000pt;}
.x2a_c00460{left:391.920000pt;}
.x83_c00460{left:397.200000pt;}
.x24_c00460{left:400.080000pt;}
.x14_c00460{left:401.280000pt;}
.x52_c00460{left:403.440000pt;}
.x12_c00460{left:405.600000pt;}
.x84_c00460{left:408.960000pt;}
.x73_c00460{left:411.360000pt;}
.x63_c00460{left:415.920000pt;}
.x8f_c00460{left:421.680000pt;}
.x79_c00460{left:424.320000pt;}
.x2b_c00460{left:425.520000pt;}
.x32_c00460{left:426.720000pt;}
.x91_c00460{left:427.920000pt;}
.x85_c00460{left:429.120000pt;}
.x5e_c00460{left:432.000000pt;}
.x3b_c00460{left:434.640000pt;}
.x5f_c00460{left:440.880000pt;}
.x53_c00460{left:444.240000pt;}
.x97_c00460{left:446.640000pt;}
.x3f_c00460{left:449.040000pt;}
.x1b_c00460{left:454.080000pt;}
.x1c_c00460{left:456.000000pt;}
.x64_c00460{left:457.440000pt;}
.x49_c00460{left:458.400000pt;}
.x74_c00460{left:465.120000pt;}
.x65_c00460{left:468.240000pt;}
.x7a_c00460{left:469.680000pt;}
.x60_c00460{left:472.080000pt;}
.x40_c00460{left:474.240000pt;}
.x61_c00460{left:480.000000pt;}
.x75_c00460{left:484.560000pt;}
.x3c_c00460{left:492.480000pt;}
.x4a_c00460{left:493.680000pt;}
.x3d_c00460{left:494.640000pt;}
.x93_c00460{left:495.840000pt;}
.x76_c00460{left:498.480000pt;}
.x88_c00460{left:501.360000pt;}
.x92_c00460{left:522.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_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_4ab86c84425994a9e06b01c2.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;}
.mf4_c00461{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m5f_c00461{transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);}
.maa_c00461{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);}
.m11d_c00461{transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);}
.me2_c00461{transform:matrix(0.038685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038685,0.000000,0.000000,0.250000,0,0);}
.mb6_c00461{transform:matrix(0.050650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050650,0.000000,0.000000,0.250000,0,0);}
.m109_c00461{transform:matrix(0.061930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061930,0.000000,0.000000,0.250000,0,0);}
.m148_c00461{transform:matrix(0.066090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066090,0.000000,0.000000,0.250000,0,0);}
.m115_c00461{transform:matrix(0.070680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070680,0.000000,0.000000,0.250000,0,0);}
.m106_c00461{transform:matrix(0.111940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111940,0.000000,0.000000,0.250000,0,0);}
.m116_c00461{transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00461{transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);}
.m9b_c00461{transform:matrix(0.130935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130935,0.000000,0.000000,0.250000,0,0);}
.mfa_c00461{transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134740,0.000000,0.000000,0.250000,0,0);}
.m13e_c00461{transform:matrix(0.134785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134785,0.000000,0.000000,0.250000,0,0);}
.m98_c00461{transform:matrix(0.137105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137105,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.139935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139935,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m4e_c00461{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);}
.m51_c00461{transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146420,0.000000,0.000000,0.250000,0,0);}
.m9a_c00461{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);}
.m55_c00461{transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00461{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);}
.m27_c00461{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);}
.m4f_c00461{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);}
.m9d_c00461{transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150930,0.000000,0.000000,0.250000,0,0);}
.m69_c00461{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);}
.m52_c00461{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);}
.ma4_c00461{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);}
.m5d_c00461{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);}
.m107_c00461{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);}
.m3_c00461{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);}
.m9e_c00461{transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155795,0.000000,0.000000,0.250000,0,0);}
.ma6_c00461{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);}
.m56_c00461{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);}
.m103_c00461{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);}
.m33_c00461{transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157820,0.000000,0.000000,0.250000,0,0);}
.m7a_c00461{transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158160,0.000000,0.000000,0.250000,0,0);}
.mae_c00461{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);}
.m11f_c00461{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);}
.m59_c00461{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);}
.mb3_c00461{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);}
.m9c_c00461{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);}
.maf_c00461{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);}
.m36_c00461{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);}
.m5a_c00461{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);}
.m2d_c00461{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);}
.m58_c00461{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);}
.m79_c00461{transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167970,0.000000,0.000000,0.250000,0,0);}
.m62_c00461{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);}
.m142_c00461{transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169695,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{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);}
.m14c_c00461{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);}
.mab_c00461{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);}
.m99_c00461{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);}
.mb9_c00461{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);}
.m146_c00461{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);}
.m102_c00461{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);}
.m91_c00461{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);}
.mb5_c00461{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);}
.m22_c00461{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);}
.m12f_c00461{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);}
.m131_c00461{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);}
.m97_c00461{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);}
.m50_c00461{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);}
.m8_c00461{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);}
.m11a_c00461{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);}
.mb4_c00461{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.m95_c00461{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);}
.mb0_c00461{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);}
.m14_c00461{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);}
.mfc_c00461{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);}
.m130_c00461{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m82_c00461{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.m76_c00461{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);}
.m31_c00461{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);}
.m2c_c00461{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);}
.mfe_c00461{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);}
.mbb_c00461{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);}
.m77_c00461{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);}
.m5e_c00461{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);}
.m57_c00461{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);}
.m150_c00461{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);}
.m61_c00461{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);}
.m141_c00461{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);}
.mf2_c00461{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);}
.m85_c00461{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);}
.m12b_c00461{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_c00461{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);}
.m78_c00461{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);}
.mb_c00461{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);}
.m18_c00461{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);}
.m154_c00461{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);}
.m136_c00461{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);}
.m11_c00461{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);}
.me_c00461{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);}
.m34_c00461{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);}
.mec_c00461{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);}
.m54_c00461{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);}
.m30_c00461{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);}
.m153_c00461{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);}
.m14f_c00461{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);}
.m139_c00461{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);}
.m12_c00461{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);}
.m3f_c00461{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);}
.m14b_c00461{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);}
.md6_c00461{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);}
.m63_c00461{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);}
.m66_c00461{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);}
.m80_c00461{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);}
.m65_c00461{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);}
.m133_c00461{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);}
.m3d_c00461{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);}
.mf3_c00461{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);}
.m6a_c00461{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);}
.m93_c00461{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);}
.m72_c00461{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);}
.m74_c00461{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);}
.m23_c00461{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);}
.mbe_c00461{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);}
.m134_c00461{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);}
.ma3_c00461{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);}
.mb1_c00461{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);}
.m28_c00461{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);}
.m8b_c00461{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);}
.mdc_c00461{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);}
.m2e_c00461{transform:matrix(0.191360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191360,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{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);}
.mad_c00461{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.mc4_c00461{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);}
.mc2_c00461{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);}
.m120_c00461{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);}
.m67_c00461{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);}
.m37_c00461{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);}
.m53_c00461{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);}
.m25_c00461{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);}
.m6d_c00461{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);}
.m135_c00461{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);}
.m6b_c00461{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);}
.m94_c00461{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);}
.m17_c00461{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);}
.mc7_c00461{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);}
.md_c00461{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);}
.m14e_c00461{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);}
.mbc_c00461{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);}
.m24_c00461{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);}
.mbd_c00461{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);}
.mf6_c00461{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);}
.m6e_c00461{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);}
.m1d_c00461{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);}
.m70_c00461{transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197470,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{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);}
.m14a_c00461{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_c00461{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);}
.m92_c00461{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);}
.mb2_c00461{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);}
.m10f_c00461{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);}
.md2_c00461{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);}
.m111_c00461{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);}
.m2a_c00461{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);}
.m6_c00461{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);}
.md7_c00461{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);}
.m49_c00461{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);}
.m13c_c00461{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);}
.ma8_c00461{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);}
.md5_c00461{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);}
.mc0_c00461{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);}
.m6f_c00461{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);}
.m73_c00461{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);}
.mc3_c00461{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);}
.m5c_c00461{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);}
.m7b_c00461{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);}
.m121_c00461{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);}
.m81_c00461{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);}
.m132_c00461{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);}
.m144_c00461{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);}
.m6c_c00461{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);}
.m75_c00461{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);}
.m47_c00461{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);}
.m3c_c00461{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);}
.ma_c00461{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);}
.m4_c00461{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);}
.m7d_c00461{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);}
.mfd_c00461{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);}
.md0_c00461{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);}
.m13f_c00461{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);}
.m10a_c00461{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);}
.md9_c00461{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);}
.m10e_c00461{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{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);}
.m29_c00461{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);}
.mf9_c00461{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);}
.m35_c00461{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);}
.m71_c00461{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);}
.mc6_c00461{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);}
.m20_c00461{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);}
.m124_c00461{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);}
.m8e_c00461{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);}
.m1a_c00461{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);}
.m138_c00461{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{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);}
.m11e_c00461{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);}
.m151_c00461{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);}
.m100_c00461{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);}
.ma0_c00461{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);}
.mde_c00461{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);}
.m7f_c00461{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);}
.m8a_c00461{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{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);}
.m88_c00461{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);}
.md3_c00461{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);}
.mcd_c00461{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);}
.m3a_c00461{transform:matrix(0.220435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220435,0.000000,0.000000,0.250000,0,0);}
.mcb_c00461{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m10d_c00461{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);}
.m7e_c00461{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);}
.m126_c00461{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m13a_c00461{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{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);}
.m48_c00461{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{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);}
.m90_c00461{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);}
.m101_c00461{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);}
.mca_c00461{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);}
.m1f_c00461{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);}
.m123_c00461{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);}
.m13b_c00461{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.m149_c00461{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);}
.mdd_c00461{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);}
.m129_c00461{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);}
.m128_c00461{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);}
.m2b_c00461{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);}
.mcf_c00461{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);}
.me1_c00461{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);}
.m143_c00461{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);}
.mdf_c00461{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);}
.m10_c00461{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);}
.m60_c00461{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);}
.m147_c00461{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);}
.m7_c00461{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);}
.m13_c00461{transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);}
.m4b_c00461{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);}
.m4c_c00461{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);}
.m108_c00461{transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);}
.mcc_c00461{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);}
.m8c_c00461{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);}
.mee_c00461{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);}
.m1_c00461{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);}
.me0_c00461{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m12e_c00461{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);}
.ma9_c00461{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);}
.ma5_c00461{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);}
.mdb_c00461{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m7c_c00461{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);}
.mf0_c00461{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.meb_c00461{transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);}
.m87_c00461{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);}
.m89_c00461{transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);}
.m140_c00461{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m4d_c00461{transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);}
.me4_c00461{transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);}
.m40_c00461{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m43_c00461{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);}
.m117_c00461{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);}
.m3b_c00461{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.mff_c00461{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);}
.mef_c00461{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);}
.me6_c00461{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.ma7_c00461{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m83_c00461{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);}
.md1_c00461{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);}
.m46_c00461{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);}
.m38_c00461{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.mda_c00461{transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);}
.me5_c00461{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);}
.m137_c00461{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m8d_c00461{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m68_c00461{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);}
.m12a_c00461{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);}
.m12c_c00461{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);}
.m15_c00461{transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{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);}
.mf7_c00461{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);}
.m0_c00461{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);}
.m45_c00461{transform:matrix(0.263645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263645,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{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);}
.m16_c00461{transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);}
.mce_c00461{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);}
.m156_c00461{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m42_c00461{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00461{transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00461{transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275940,0.000000,0.000000,0.250000,0,0);}
.mfb_c00461{transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);}
.ma2_c00461{transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277790,0.000000,0.000000,0.250000,0,0);}
.mac_c00461{transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);}
.me3_c00461{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.m86_c00461{transform:matrix(0.279090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279090,0.000000,0.000000,0.250000,0,0);}
.mc5_c00461{transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);}
.m122_c00461{transform:matrix(0.281540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281540,0.000000,0.000000,0.250000,0,0);}
.m96_c00461{transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282975,0.000000,0.000000,0.250000,0,0);}
.m11b_c00461{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m41_c00461{transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284545,0.000000,0.000000,0.250000,0,0);}
.m119_c00461{transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285970,0.000000,0.000000,0.250000,0,0);}
.m127_c00461{transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286840,0.000000,0.000000,0.250000,0,0);}
.me7_c00461{transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293570,0.000000,0.000000,0.250000,0,0);}
.m114_c00461{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);}
.mf1_c00461{transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);}
.m5b_c00461{transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);}
.m64_c00461{transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);}
.m10b_c00461{transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300660,0.000000,0.000000,0.250000,0,0);}
.m118_c00461{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);}
.m104_c00461{transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305880,0.000000,0.000000,0.250000,0,0);}
.md8_c00461{transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310180,0.000000,0.000000,0.250000,0,0);}
.me9_c00461{transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314885,0.000000,0.000000,0.250000,0,0);}
.m113_c00461{transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319725,0.000000,0.000000,0.250000,0,0);}
.me8_c00461{transform:matrix(0.320185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320185,0.000000,0.000000,0.250000,0,0);}
.med_c00461{transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326260,0.000000,0.000000,0.250000,0,0);}
.m13d_c00461{transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327850,0.000000,0.000000,0.250000,0,0);}
.md4_c00461{transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328300,0.000000,0.000000,0.250000,0,0);}
.m152_c00461{transform:matrix(0.339265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339265,0.000000,0.000000,0.250000,0,0);}
.m44_c00461{transform:matrix(0.343965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343965,0.000000,0.000000,0.250000,0,0);}
.mb8_c00461{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m145_c00461{transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356120,0.000000,0.000000,0.250000,0,0);}
.mc1_c00461{transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366735,0.000000,0.000000,0.250000,0,0);}
.m112_c00461{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);}
.mbf_c00461{transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);}
.m84_c00461{transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);}
.m105_c00461{transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);}
.m14d_c00461{transform:matrix(0.387960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387960,0.000000,0.000000,0.250000,0,0);}
.m4a_c00461{transform:matrix(0.409345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409345,0.000000,0.000000,0.250000,0,0);}
.mc8_c00461{transform:matrix(0.413055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413055,0.000000,0.000000,0.250000,0,0);}
.m125_c00461{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);}
.m12d_c00461{transform:matrix(0.423380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423380,0.000000,0.000000,0.250000,0,0);}
.m10c_c00461{transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441220,0.000000,0.000000,0.250000,0,0);}
.mc9_c00461{transform:matrix(0.475460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475460,0.000000,0.000000,0.250000,0,0);}
.m155_c00461{transform:matrix(0.486035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486035,0.000000,0.000000,0.250000,0,0);}
.m110_c00461{transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);}
.mb7_c00461{transform:matrix(0.498700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498700,0.000000,0.000000,0.250000,0,0);}
.m11c_c00461{transform:matrix(0.527075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527075,0.000000,0.000000,0.250000,0,0);}
.mea_c00461{transform:matrix(0.570300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570300,0.000000,0.000000,0.250000,0,0);}
.m8f_c00461{transform:matrix(0.617365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617365,0.000000,0.000000,0.250000,0,0);}
.ma1_c00461{transform:matrix(0.665345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665345,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;}
.fs15_c00461{font-size:22.050000px;}
.fs13_c00461{font-size:23.100000px;}
.fsf_c00461{font-size:49.350000px;}
.fsd_c00461{font-size:50.400000px;}
.fs10_c00461{font-size:51.450000px;}
.fse_c00461{font-size:52.500000px;}
.fs12_c00461{font-size:59.850000px;}
.fs11_c00461{font-size:60.900000px;}
.fs5_c00461{font-size:64.050000px;}
.fs0_c00461{font-size:65.100000px;}
.fs2_c00461{font-size:67.200000px;}
.fs9_c00461{font-size:69.300000px;}
.fs4_c00461{font-size:70.350000px;}
.fs7_c00461{font-size:71.400000px;}
.fs3_c00461{font-size:72.450000px;}
.fs1_c00461{font-size:73.500000px;}
.fsa_c00461{font-size:74.550000px;}
.fs8_c00461{font-size:75.600000px;}
.fsb_c00461{font-size:94.500000px;}
.fs6_c00461{font-size:97.650000px;}
.fsc_c00461{font-size:98.700000px;}
.fs14_c00461{font-size:226.800000px;}
.y0_c00461{bottom:0.000000px;}
.y52_c00461{bottom:96.120000px;}
.y51_c00461{bottom:104.691000px;}
.y50_c00461{bottom:119.070000px;}
.y4f_c00461{bottom:158.230500px;}
.y4e_c00461{bottom:176.038500px;}
.y4d_c00461{bottom:194.127000px;}
.y4c_c00461{bottom:211.959000px;}
.y4b_c00461{bottom:227.886000px;}
.y4a_c00461{bottom:228.024000px;}
.y49_c00461{bottom:228.178500px;}
.y48_c00461{bottom:228.262500px;}
.y47_c00461{bottom:228.519000px;}
.y46_c00461{bottom:228.619500px;}
.y45_c00461{bottom:228.967500px;}
.y44_c00461{bottom:229.498500px;}
.y43_c00461{bottom:229.563000px;}
.y42_c00461{bottom:229.684500px;}
.y41_c00461{bottom:229.842000px;}
.y40_c00461{bottom:230.586000px;}
.y3f_c00461{bottom:230.802000px;}
.y3e_c00461{bottom:231.168000px;}
.y3d_c00461{bottom:231.508500px;}
.y3c_c00461{bottom:231.931500px;}
.y3b_c00461{bottom:245.098500px;}
.y3a_c00461{bottom:245.317500px;}
.y39_c00461{bottom:245.593500px;}
.y38_c00461{bottom:245.680500px;}
.y37_c00461{bottom:246.261000px;}
.y36_c00461{bottom:246.411000px;}
.y35_c00461{bottom:247.045500px;}
.y34_c00461{bottom:247.449000px;}
.y33_c00461{bottom:247.551000px;}
.y32_c00461{bottom:247.614000px;}
.y31_c00461{bottom:247.876500px;}
.y30_c00461{bottom:247.995000px;}
.y2f_c00461{bottom:248.410500px;}
.y2e_c00461{bottom:248.860500px;}
.y2d_c00461{bottom:248.997000px;}
.y2c_c00461{bottom:249.280500px;}
.y2b_c00461{bottom:249.751500px;}
.y2a_c00461{bottom:265.698000px;}
.y29_c00461{bottom:283.234500px;}
.y28_c00461{bottom:300.790500px;}
.y27_c00461{bottom:318.496500px;}
.y26_c00461{bottom:318.831000px;}
.y25_c00461{bottom:319.453500px;}
.y24_c00461{bottom:319.783500px;}
.y23_c00461{bottom:320.721000px;}
.y22_c00461{bottom:321.363000px;}
.y21_c00461{bottom:321.597000px;}
.y20_c00461{bottom:322.042500px;}
.y1f_c00461{bottom:322.320000px;}
.y1e_c00461{bottom:322.861500px;}
.y1d_c00461{bottom:323.421000px;}
.y1c_c00461{bottom:324.445500px;}
.y1b_c00461{bottom:325.092000px;}
.y1a_c00461{bottom:325.768500px;}
.y19_c00461{bottom:326.140500px;}
.y18_c00461{bottom:326.578500px;}
.y17_c00461{bottom:327.414000px;}
.y16_c00461{bottom:327.510000px;}
.y15_c00461{bottom:336.978000px;}
.y14_c00461{bottom:404.268000px;}
.y13_c00461{bottom:431.616000px;}
.y12_c00461{bottom:454.302000px;}
.y11_c00461{bottom:476.997000px;}
.y10_c00461{bottom:500.397000px;}
.yf_c00461{bottom:523.464000px;}
.ye_c00461{bottom:545.838000px;}
.yd_c00461{bottom:568.690500px;}
.yc_c00461{bottom:592.147500px;}
.yb_c00461{bottom:615.244500px;}
.ya_c00461{bottom:638.010000px;}
.y9_c00461{bottom:659.808000px;}
.y8_c00461{bottom:682.743000px;}
.y7_c00461{bottom:706.149000px;}
.y6_c00461{bottom:728.289000px;}
.y5_c00461{bottom:750.783000px;}
.y4_c00461{bottom:773.964000px;}
.y3_c00461{bottom:796.794000px;}
.y2_c00461{bottom:818.929500px;}
.y1_c00461{bottom:842.253000px;}
.h17_c00461{height:22.050000px;}
.h15_c00461{height:23.100000px;}
.h11_c00461{height:49.350000px;}
.hf_c00461{height:50.400000px;}
.h12_c00461{height:51.450000px;}
.h10_c00461{height:52.500000px;}
.h14_c00461{height:59.850000px;}
.h13_c00461{height:60.900000px;}
.h7_c00461{height:64.050000px;}
.h2_c00461{height:65.100000px;}
.h4_c00461{height:67.200000px;}
.hb_c00461{height:69.300000px;}
.h6_c00461{height:70.350000px;}
.h9_c00461{height:71.400000px;}
.h5_c00461{height:72.450000px;}
.h3_c00461{height:73.500000px;}
.hc_c00461{height:74.550000px;}
.ha_c00461{height:75.600000px;}
.hd_c00461{height:94.500000px;}
.h8_c00461{height:97.650000px;}
.he_c00461{height:98.700000px;}
.h16_c00461{height:226.800000px;}
.h0_c00461{height:1008.450000px;}
.h1_c00461{height:1008.750000px;}
.w1_c00461{width:689.250000px;}
.w0_c00461{width:689.550000px;}
.x0_c00461{left:0.000000px;}
.xa7_c00461{left:79.113000px;}
.x7a_c00461{left:80.175000px;}
.x88_c00461{left:81.540000px;}
.x7b_c00461{left:85.524000px;}
.x6d_c00461{left:87.750000px;}
.x81_c00461{left:96.118500px;}
.x89_c00461{left:106.110000px;}
.xa8_c00461{left:114.753000px;}
.x7c_c00461{left:131.977500px;}
.xa1_c00461{left:133.846500px;}
.x82_c00461{left:135.268500px;}
.x6e_c00461{left:147.150000px;}
.x7d_c00461{left:156.270000px;}
.x49_c00461{left:160.650000px;}
.x98_c00461{left:166.213500px;}
.x6f_c00461{left:168.480000px;}
.x4a_c00461{left:170.640000px;}
.x2c_c00461{left:172.530000px;}
.x35_c00461{left:173.880000px;}
.x1_c00461{left:175.770000px;}
.x8_c00461{left:176.850000px;}
.x10_c00461{left:178.470000px;}
.x83_c00461{left:181.168500px;}
.x8f_c00461{left:183.060000px;}
.xb9_c00461{left:185.223000px;}
.xae_c00461{left:189.003000px;}
.x57_c00461{left:193.050000px;}
.x5c_c00461{left:195.750000px;}
.x3c_c00461{left:197.640000px;}
.x66_c00461{left:200.340000px;}
.x29_c00461{left:201.960000px;}
.x9_c00461{left:204.930000px;}
.x2_c00461{left:206.820000px;}
.xaf_c00461{left:209.253000px;}
.x84_c00461{left:211.408500px;}
.x3_c00461{left:212.490000px;}
.x1c_c00461{left:214.110000px;}
.x70_c00461{left:219.240000px;}
.x44_c00461{left:220.590000px;}
.x2d_c00461{left:222.210000px;}
.x90_c00461{left:224.640000px;}
.x3d_c00461{left:225.720000px;}
.x69_c00461{left:228.690000px;}
.x99_c00461{left:231.280500px;}
.x50_c00461{left:232.470000px;}
.x14_c00461{left:234.900000px;}
.x4b_c00461{left:237.870000px;}
.x5d_c00461{left:240.840000px;}
.x11_c00461{left:243.270000px;}
.xb6_c00461{left:245.703000px;}
.x58_c00461{left:247.590000px;}
.x63_c00461{left:249.750000px;}
.x51_c00461{left:250.830000px;}
.x6a_c00461{left:252.720000px;}
.x45_c00461{left:255.150000px;}
.x15_c00461{left:258.120000px;}
.x3e_c00461{left:261.090000px;}
.x1d_c00461{left:262.170000px;}
.xa_c00461{left:263.520000px;}
.x23_c00461{left:265.950000px;}
.x8a_c00461{left:268.920000px;}
.x59_c00461{left:271.620000px;}
.xb0_c00461{left:274.593000px;}
.x9a_c00461{left:277.524000px;}
.x3f_c00461{left:278.640000px;}
.x46_c00461{left:282.150000px;}
.xb_c00461{left:286.200000px;}
.x6b_c00461{left:288.360000px;}
.xa9_c00461{left:289.443000px;}
.x9b_c00461{left:290.682000px;}
.x24_c00461{left:293.490000px;}
.x12_c00461{left:294.570000px;}
.x91_c00461{left:295.650000px;}
.x2a_c00461{left:302.130000px;}
.x16_c00461{left:303.210000px;}
.x2e_c00461{left:304.560000px;}
.x5e_c00461{left:307.260000px;}
.x92_c00461{left:312.390000px;}
.x5a_c00461{left:313.470000px;}
.x1e_c00461{left:315.090000px;}
.x9c_c00461{left:319.861500px;}
.x52_c00461{left:321.030000px;}
.x4_c00461{left:323.460000px;}
.x2f_c00461{left:325.890000px;}
.x9d_c00461{left:326.917500px;}
.xaa_c00461{left:329.673000px;}
.x25_c00461{left:330.750000px;}
.x5f_c00461{left:333.450000px;}
.x67_c00461{left:335.610000px;}
.xc_c00461{left:337.770000px;}
.x36_c00461{left:342.900000px;}
.x17_c00461{left:346.140000px;}
.xb1_c00461{left:347.493000px;}
.xb7_c00461{left:348.573000px;}
.x5_c00461{left:355.320000px;}
.x1f_c00461{left:357.750000px;}
.xa2_c00461{left:361.719000px;}
.x60_c00461{left:363.150000px;}
.x71_c00461{left:366.120000px;}
.x18_c00461{left:367.740000px;}
.x8b_c00461{left:370.710000px;}
.x37_c00461{left:374.490000px;}
.x64_c00461{left:375.570000px;}
.xa3_c00461{left:376.830000px;}
.x30_c00461{left:378.000000px;}
.x26_c00461{left:380.430000px;}
.x8c_c00461{left:381.510000px;}
.x40_c00461{left:383.670000px;}
.x4c_c00461{left:385.290000px;}
.x19_c00461{left:387.180000px;}
.x2b_c00461{left:390.960000px;}
.x72_c00461{left:397.440000px;}
.x53_c00461{left:399.060000px;}
.x4d_c00461{left:405.270000px;}
.xd_c00461{left:407.430000px;}
.x6c_c00461{left:409.050000px;}
.x38_c00461{left:410.130000px;}
.x41_c00461{left:411.210000px;}
.x31_c00461{left:412.290000px;}
.xab_c00461{left:413.913000px;}
.xba_c00461{left:416.073000px;}
.x6_c00461{left:417.690000px;}
.x5b_c00461{left:419.850000px;}
.x1a_c00461{left:421.740000px;}
.x54_c00461{left:423.900000px;}
.xe_c00461{left:428.490000px;}
.x47_c00461{left:430.380000px;}
.x73_c00461{left:434.970000px;}
.x42_c00461{left:436.050000px;}
.x27_c00461{left:438.480000px;}
.x20_c00461{left:439.830000px;}
.xb2_c00461{left:443.343000px;}
.x13_c00461{left:445.770000px;}
.x4e_c00461{left:446.850000px;}
.x93_c00461{left:449.820000px;}
.xa4_c00461{left:451.330500px;}
.x39_c00461{left:452.790000px;}
.x48_c00461{left:455.220000px;}
.x7e_c00461{left:457.516500px;}
.x28_c00461{left:461.970000px;}
.x7_c00461{left:464.400000px;}
.x74_c00461{left:466.290000px;}
.x43_c00461{left:470.880000px;}
.x21_c00461{left:473.580000px;}
.x61_c00461{left:476.010000px;}
.x55_c00461{left:477.090000px;}
.xb3_c00461{left:480.063000px;}
.x85_c00461{left:481.138500px;}
.x32_c00461{left:483.030000px;}
.x94_c00461{left:485.460000px;}
.x75_c00461{left:488.700000px;}
.xf_c00461{left:490.320000px;}
.x68_c00461{left:491.940000px;}
.x3a_c00461{left:495.180000px;}
.x4f_c00461{left:496.530000px;}
.x56_c00461{left:498.420000px;}
.x22_c00461{left:500.040000px;}
.xbb_c00461{left:504.633000px;}
.x1b_c00461{left:507.330000px;}
.x8d_c00461{left:508.680000px;}
.x33_c00461{left:510.030000px;}
.x76_c00461{left:512.460000px;}
.xb4_c00461{left:522.453000px;}
.x95_c00461{left:525.690000px;}
.x7f_c00461{left:527.964000px;}
.x62_c00461{left:529.470000px;}
.x86_c00461{left:530.548500px;}
.x3b_c00461{left:534.870000px;}
.x77_c00461{left:538.650000px;}
.xb5_c00461{left:540.273000px;}
.x34_c00461{left:541.620000px;}
.x96_c00461{left:543.240000px;}
.x9e_c00461{left:544.324500px;}
.xa5_c00461{left:550.113000px;}
.x78_c00461{left:552.420000px;}
.xac_c00461{left:555.663000px;}
.x80_c00461{left:562.566000px;}
.xb8_c00461{left:567.543000px;}
.xa6_c00461{left:569.350500px;}
.x8e_c00461{left:571.320000px;}
.x9f_c00461{left:574.978500px;}
.xbc_c00461{left:578.883000px;}
.x65_c00461{left:581.580000px;}
.x97_c00461{left:584.010000px;}
.x79_c00461{left:587.250000px;}
.x87_c00461{left:590.488500px;}
.xad_c00461{left:595.083000px;}
.xa0_c00461{left:599.271000px;}
.xbe_c00461{left:646.380000px;}
.xbd_c00461{left:653.670000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
.fs15_c00461{font-size:19.600000pt;}
.fs13_c00461{font-size:20.533333pt;}
.fsf_c00461{font-size:43.866667pt;}
.fsd_c00461{font-size:44.800000pt;}
.fs10_c00461{font-size:45.733333pt;}
.fse_c00461{font-size:46.666667pt;}
.fs12_c00461{font-size:53.200000pt;}
.fs11_c00461{font-size:54.133333pt;}
.fs5_c00461{font-size:56.933333pt;}
.fs0_c00461{font-size:57.866667pt;}
.fs2_c00461{font-size:59.733333pt;}
.fs9_c00461{font-size:61.600000pt;}
.fs4_c00461{font-size:62.533333pt;}
.fs7_c00461{font-size:63.466667pt;}
.fs3_c00461{font-size:64.400000pt;}
.fs1_c00461{font-size:65.333333pt;}
.fsa_c00461{font-size:66.266667pt;}
.fs8_c00461{font-size:67.200000pt;}
.fsb_c00461{font-size:84.000000pt;}
.fs6_c00461{font-size:86.800000pt;}
.fsc_c00461{font-size:87.733333pt;}
.fs14_c00461{font-size:201.600000pt;}
.y0_c00461{bottom:0.000000pt;}
.y52_c00461{bottom:85.440000pt;}
.y51_c00461{bottom:93.058667pt;}
.y50_c00461{bottom:105.840000pt;}
.y4f_c00461{bottom:140.649333pt;}
.y4e_c00461{bottom:156.478667pt;}
.y4d_c00461{bottom:172.557333pt;}
.y4c_c00461{bottom:188.408000pt;}
.y4b_c00461{bottom:202.565333pt;}
.y4a_c00461{bottom:202.688000pt;}
.y49_c00461{bottom:202.825333pt;}
.y48_c00461{bottom:202.900000pt;}
.y47_c00461{bottom:203.128000pt;}
.y46_c00461{bottom:203.217333pt;}
.y45_c00461{bottom:203.526667pt;}
.y44_c00461{bottom:203.998667pt;}
.y43_c00461{bottom:204.056000pt;}
.y42_c00461{bottom:204.164000pt;}
.y41_c00461{bottom:204.304000pt;}
.y40_c00461{bottom:204.965333pt;}
.y3f_c00461{bottom:205.157333pt;}
.y3e_c00461{bottom:205.482667pt;}
.y3d_c00461{bottom:205.785333pt;}
.y3c_c00461{bottom:206.161333pt;}
.y3b_c00461{bottom:217.865333pt;}
.y3a_c00461{bottom:218.060000pt;}
.y39_c00461{bottom:218.305333pt;}
.y38_c00461{bottom:218.382667pt;}
.y37_c00461{bottom:218.898667pt;}
.y36_c00461{bottom:219.032000pt;}
.y35_c00461{bottom:219.596000pt;}
.y34_c00461{bottom:219.954667pt;}
.y33_c00461{bottom:220.045333pt;}
.y32_c00461{bottom:220.101333pt;}
.y31_c00461{bottom:220.334667pt;}
.y30_c00461{bottom:220.440000pt;}
.y2f_c00461{bottom:220.809333pt;}
.y2e_c00461{bottom:221.209333pt;}
.y2d_c00461{bottom:221.330667pt;}
.y2c_c00461{bottom:221.582667pt;}
.y2b_c00461{bottom:222.001333pt;}
.y2a_c00461{bottom:236.176000pt;}
.y29_c00461{bottom:251.764000pt;}
.y28_c00461{bottom:267.369333pt;}
.y27_c00461{bottom:283.108000pt;}
.y26_c00461{bottom:283.405333pt;}
.y25_c00461{bottom:283.958667pt;}
.y24_c00461{bottom:284.252000pt;}
.y23_c00461{bottom:285.085333pt;}
.y22_c00461{bottom:285.656000pt;}
.y21_c00461{bottom:285.864000pt;}
.y20_c00461{bottom:286.260000pt;}
.y1f_c00461{bottom:286.506667pt;}
.y1e_c00461{bottom:286.988000pt;}
.y1d_c00461{bottom:287.485333pt;}
.y1c_c00461{bottom:288.396000pt;}
.y1b_c00461{bottom:288.970667pt;}
.y1a_c00461{bottom:289.572000pt;}
.y19_c00461{bottom:289.902667pt;}
.y18_c00461{bottom:290.292000pt;}
.y17_c00461{bottom:291.034667pt;}
.y16_c00461{bottom:291.120000pt;}
.y15_c00461{bottom:299.536000pt;}
.y14_c00461{bottom:359.349333pt;}
.y13_c00461{bottom:383.658667pt;}
.y12_c00461{bottom:403.824000pt;}
.y11_c00461{bottom:423.997333pt;}
.y10_c00461{bottom:444.797333pt;}
.yf_c00461{bottom:465.301333pt;}
.ye_c00461{bottom:485.189333pt;}
.yd_c00461{bottom:505.502667pt;}
.yc_c00461{bottom:526.353333pt;}
.yb_c00461{bottom:546.884000pt;}
.ya_c00461{bottom:567.120000pt;}
.y9_c00461{bottom:586.496000pt;}
.y8_c00461{bottom:606.882667pt;}
.y7_c00461{bottom:627.688000pt;}
.y6_c00461{bottom:647.368000pt;}
.y5_c00461{bottom:667.362667pt;}
.y4_c00461{bottom:687.968000pt;}
.y3_c00461{bottom:708.261333pt;}
.y2_c00461{bottom:727.937333pt;}
.y1_c00461{bottom:748.669333pt;}
.h17_c00461{height:19.600000pt;}
.h15_c00461{height:20.533333pt;}
.h11_c00461{height:43.866667pt;}
.hf_c00461{height:44.800000pt;}
.h12_c00461{height:45.733333pt;}
.h10_c00461{height:46.666667pt;}
.h14_c00461{height:53.200000pt;}
.h13_c00461{height:54.133333pt;}
.h7_c00461{height:56.933333pt;}
.h2_c00461{height:57.866667pt;}
.h4_c00461{height:59.733333pt;}
.hb_c00461{height:61.600000pt;}
.h6_c00461{height:62.533333pt;}
.h9_c00461{height:63.466667pt;}
.h5_c00461{height:64.400000pt;}
.h3_c00461{height:65.333333pt;}
.hc_c00461{height:66.266667pt;}
.ha_c00461{height:67.200000pt;}
.hd_c00461{height:84.000000pt;}
.h8_c00461{height:86.800000pt;}
.he_c00461{height:87.733333pt;}
.h16_c00461{height:201.600000pt;}
.h0_c00461{height:896.400000pt;}
.h1_c00461{height:896.666667pt;}
.w1_c00461{width:612.666667pt;}
.w0_c00461{width:612.933333pt;}
.x0_c00461{left:0.000000pt;}
.xa7_c00461{left:70.322667pt;}
.x7a_c00461{left:71.266667pt;}
.x88_c00461{left:72.480000pt;}
.x7b_c00461{left:76.021333pt;}
.x6d_c00461{left:78.000000pt;}
.x81_c00461{left:85.438667pt;}
.x89_c00461{left:94.320000pt;}
.xa8_c00461{left:102.002667pt;}
.x7c_c00461{left:117.313333pt;}
.xa1_c00461{left:118.974667pt;}
.x82_c00461{left:120.238667pt;}
.x6e_c00461{left:130.800000pt;}
.x7d_c00461{left:138.906667pt;}
.x49_c00461{left:142.800000pt;}
.x98_c00461{left:147.745333pt;}
.x6f_c00461{left:149.760000pt;}
.x4a_c00461{left:151.680000pt;}
.x2c_c00461{left:153.360000pt;}
.x35_c00461{left:154.560000pt;}
.x1_c00461{left:156.240000pt;}
.x8_c00461{left:157.200000pt;}
.x10_c00461{left:158.640000pt;}
.x83_c00461{left:161.038667pt;}
.x8f_c00461{left:162.720000pt;}
.xb9_c00461{left:164.642667pt;}
.xae_c00461{left:168.002667pt;}
.x57_c00461{left:171.600000pt;}
.x5c_c00461{left:174.000000pt;}
.x3c_c00461{left:175.680000pt;}
.x66_c00461{left:178.080000pt;}
.x29_c00461{left:179.520000pt;}
.x9_c00461{left:182.160000pt;}
.x2_c00461{left:183.840000pt;}
.xaf_c00461{left:186.002667pt;}
.x84_c00461{left:187.918667pt;}
.x3_c00461{left:188.880000pt;}
.x1c_c00461{left:190.320000pt;}
.x70_c00461{left:194.880000pt;}
.x44_c00461{left:196.080000pt;}
.x2d_c00461{left:197.520000pt;}
.x90_c00461{left:199.680000pt;}
.x3d_c00461{left:200.640000pt;}
.x69_c00461{left:203.280000pt;}
.x99_c00461{left:205.582667pt;}
.x50_c00461{left:206.640000pt;}
.x14_c00461{left:208.800000pt;}
.x4b_c00461{left:211.440000pt;}
.x5d_c00461{left:214.080000pt;}
.x11_c00461{left:216.240000pt;}
.xb6_c00461{left:218.402667pt;}
.x58_c00461{left:220.080000pt;}
.x63_c00461{left:222.000000pt;}
.x51_c00461{left:222.960000pt;}
.x6a_c00461{left:224.640000pt;}
.x45_c00461{left:226.800000pt;}
.x15_c00461{left:229.440000pt;}
.x3e_c00461{left:232.080000pt;}
.x1d_c00461{left:233.040000pt;}
.xa_c00461{left:234.240000pt;}
.x23_c00461{left:236.400000pt;}
.x8a_c00461{left:239.040000pt;}
.x59_c00461{left:241.440000pt;}
.xb0_c00461{left:244.082667pt;}
.x9a_c00461{left:246.688000pt;}
.x3f_c00461{left:247.680000pt;}
.x46_c00461{left:250.800000pt;}
.xb_c00461{left:254.400000pt;}
.x6b_c00461{left:256.320000pt;}
.xa9_c00461{left:257.282667pt;}
.x9b_c00461{left:258.384000pt;}
.x24_c00461{left:260.880000pt;}
.x12_c00461{left:261.840000pt;}
.x91_c00461{left:262.800000pt;}
.x2a_c00461{left:268.560000pt;}
.x16_c00461{left:269.520000pt;}
.x2e_c00461{left:270.720000pt;}
.x5e_c00461{left:273.120000pt;}
.x92_c00461{left:277.680000pt;}
.x5a_c00461{left:278.640000pt;}
.x1e_c00461{left:280.080000pt;}
.x9c_c00461{left:284.321333pt;}
.x52_c00461{left:285.360000pt;}
.x4_c00461{left:287.520000pt;}
.x2f_c00461{left:289.680000pt;}
.x9d_c00461{left:290.593333pt;}
.xaa_c00461{left:293.042667pt;}
.x25_c00461{left:294.000000pt;}
.x5f_c00461{left:296.400000pt;}
.x67_c00461{left:298.320000pt;}
.xc_c00461{left:300.240000pt;}
.x36_c00461{left:304.800000pt;}
.x17_c00461{left:307.680000pt;}
.xb1_c00461{left:308.882667pt;}
.xb7_c00461{left:309.842667pt;}
.x5_c00461{left:315.840000pt;}
.x1f_c00461{left:318.000000pt;}
.xa2_c00461{left:321.528000pt;}
.x60_c00461{left:322.800000pt;}
.x71_c00461{left:325.440000pt;}
.x18_c00461{left:326.880000pt;}
.x8b_c00461{left:329.520000pt;}
.x37_c00461{left:332.880000pt;}
.x64_c00461{left:333.840000pt;}
.xa3_c00461{left:334.960000pt;}
.x30_c00461{left:336.000000pt;}
.x26_c00461{left:338.160000pt;}
.x8c_c00461{left:339.120000pt;}
.x40_c00461{left:341.040000pt;}
.x4c_c00461{left:342.480000pt;}
.x19_c00461{left:344.160000pt;}
.x2b_c00461{left:347.520000pt;}
.x72_c00461{left:353.280000pt;}
.x53_c00461{left:354.720000pt;}
.x4d_c00461{left:360.240000pt;}
.xd_c00461{left:362.160000pt;}
.x6c_c00461{left:363.600000pt;}
.x38_c00461{left:364.560000pt;}
.x41_c00461{left:365.520000pt;}
.x31_c00461{left:366.480000pt;}
.xab_c00461{left:367.922667pt;}
.xba_c00461{left:369.842667pt;}
.x6_c00461{left:371.280000pt;}
.x5b_c00461{left:373.200000pt;}
.x1a_c00461{left:374.880000pt;}
.x54_c00461{left:376.800000pt;}
.xe_c00461{left:380.880000pt;}
.x47_c00461{left:382.560000pt;}
.x73_c00461{left:386.640000pt;}
.x42_c00461{left:387.600000pt;}
.x27_c00461{left:389.760000pt;}
.x20_c00461{left:390.960000pt;}
.xb2_c00461{left:394.082667pt;}
.x13_c00461{left:396.240000pt;}
.x4e_c00461{left:397.200000pt;}
.x93_c00461{left:399.840000pt;}
.xa4_c00461{left:401.182667pt;}
.x39_c00461{left:402.480000pt;}
.x48_c00461{left:404.640000pt;}
.x7e_c00461{left:406.681333pt;}
.x28_c00461{left:410.640000pt;}
.x7_c00461{left:412.800000pt;}
.x74_c00461{left:414.480000pt;}
.x43_c00461{left:418.560000pt;}
.x21_c00461{left:420.960000pt;}
.x61_c00461{left:423.120000pt;}
.x55_c00461{left:424.080000pt;}
.xb3_c00461{left:426.722667pt;}
.x85_c00461{left:427.678667pt;}
.x32_c00461{left:429.360000pt;}
.x94_c00461{left:431.520000pt;}
.x75_c00461{left:434.400000pt;}
.xf_c00461{left:435.840000pt;}
.x68_c00461{left:437.280000pt;}
.x3a_c00461{left:440.160000pt;}
.x4f_c00461{left:441.360000pt;}
.x56_c00461{left:443.040000pt;}
.x22_c00461{left:444.480000pt;}
.xbb_c00461{left:448.562667pt;}
.x1b_c00461{left:450.960000pt;}
.x8d_c00461{left:452.160000pt;}
.x33_c00461{left:453.360000pt;}
.x76_c00461{left:455.520000pt;}
.xb4_c00461{left:464.402667pt;}
.x95_c00461{left:467.280000pt;}
.x7f_c00461{left:469.301333pt;}
.x62_c00461{left:470.640000pt;}
.x86_c00461{left:471.598667pt;}
.x3b_c00461{left:475.440000pt;}
.x77_c00461{left:478.800000pt;}
.xb5_c00461{left:480.242667pt;}
.x34_c00461{left:481.440000pt;}
.x96_c00461{left:482.880000pt;}
.x9e_c00461{left:483.844000pt;}
.xa5_c00461{left:488.989333pt;}
.x78_c00461{left:491.040000pt;}
.xac_c00461{left:493.922667pt;}
.x80_c00461{left:500.058667pt;}
.xb8_c00461{left:504.482667pt;}
.xa6_c00461{left:506.089333pt;}
.x8e_c00461{left:507.840000pt;}
.x9f_c00461{left:511.092000pt;}
.xbc_c00461{left:514.562667pt;}
.x65_c00461{left:516.960000pt;}
.x97_c00461{left:519.120000pt;}
.x79_c00461{left:522.000000pt;}
.x87_c00461{left:524.878667pt;}
.xad_c00461{left:528.962667pt;}
.xa0_c00461{left:532.685333pt;}
.xbe_c00461{left:574.560000pt;}
.xbd_c00461{left:581.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m9_c00462{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);}
.mff_c00462{transform:matrix(0.048190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048190,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091410,0.000000,0.000000,0.250000,0,0);}
.mfe_c00462{transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);}
.md5_c00462{transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125235,0.000000,0.000000,0.250000,0,0);}
.me8_c00462{transform:matrix(0.128845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128845,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142640,0.000000,0.000000,0.250000,0,0);}
.m71_c00462{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);}
.m1_c00462{transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);}
.m6c_c00462{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);}
.m7_c00462{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);}
.m121_c00462{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);}
.m23_c00462{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);}
.m67_c00462{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);}
.m11a_c00462{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00462{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);}
.m48_c00462{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);}
.m8d_c00462{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);}
.mcb_c00462{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{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);}
.m1b_c00462{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);}
.md9_c00462{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);}
.ma5_c00462{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);}
.m3c_c00462{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);}
.mce_c00462{transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);}
.m145_c00462{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);}
.me5_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);}
.m41_c00462{transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);}
.m76_c00462{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);}
.m46_c00462{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);}
.md2_c00462{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);}
.mb9_c00462{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);}
.m43_c00462{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);}
.mc6_c00462{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_c00462{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);}
.m72_c00462{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);}
.m10c_c00462{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);}
.mb6_c00462{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);}
.m2f_c00462{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);}
.me1_c00462{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);}
.m3e_c00462{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);}
.mb8_c00462{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);}
.m12_c00462{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);}
.m3a_c00462{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);}
.m8_c00462{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);}
.m26_c00462{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);}
.m90_c00462{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);}
.m7c_c00462{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);}
.mb2_c00462{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);}
.m29_c00462{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);}
.m64_c00462{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);}
.m3_c00462{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);}
.ma7_c00462{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);}
.m16_c00462{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);}
.m2b_c00462{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);}
.m136_c00462{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);}
.m33_c00462{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);}
.m122_c00462{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);}
.m86_c00462{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);}
.m11b_c00462{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);}
.m77_c00462{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);}
.m1e_c00462{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);}
.m5a_c00462{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);}
.m31_c00462{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);}
.mc9_c00462{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);}
.m7f_c00462{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);}
.m1f_c00462{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);}
.m137_c00462{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);}
.m119_c00462{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);}
.mf1_c00462{transform:matrix(0.180935,-0.002714,0.003750,0.249972,0,0);-ms-transform:matrix(0.180935,-0.002714,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180935,-0.002714,0.003750,0.249972,0,0);}
.m3d_c00462{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);}
.m3b_c00462{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);}
.m53_c00462{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);}
.m11c_c00462{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);}
.m12c_c00462{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_c00462{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);}
.m75_c00462{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);}
.m11e_c00462{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);}
.mbc_c00462{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);}
.mb7_c00462{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);}
.md_c00462{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);}
.m45_c00462{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);}
.m11d_c00462{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);}
.mec_c00462{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);}
.m129_c00462{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);}
.m115_c00462{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);}
.m143_c00462{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);}
.m135_c00462{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);}
.m123_c00462{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);}
.mca_c00462{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);}
.m69_c00462{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);}
.m85_c00462{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);}
.m8a_c00462{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);}
.m15_c00462{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);}
.mdb_c00462{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);}
.m74_c00462{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);}
.m114_c00462{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{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);}
.mc8_c00462{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);}
.mb_c00462{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);}
.mcd_c00462{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);}
.m9f_c00462{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);}
.m113_c00462{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);}
.maa_c00462{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);}
.m13e_c00462{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);}
.m120_c00462{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);}
.md7_c00462{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);}
.m89_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);}
.m80_c00462{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);}
.m58_c00462{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);}
.m116_c00462{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);}
.m104_c00462{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);}
.m27_c00462{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.m87_c00462{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);}
.m1c_c00462{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);}
.m73_c00462{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);}
.m19_c00462{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);}
.m5f_c00462{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);}
.m9d_c00462{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);}
.m66_c00462{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);}
.m93_c00462{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);}
.mbf_c00462{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);}
.m12b_c00462{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);}
.m6f_c00462{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);}
.m24_c00462{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);}
.m11f_c00462{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);}
.mea_c00462{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);}
.m55_c00462{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);}
.mad_c00462{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);}
.mbe_c00462{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);}
.mb3_c00462{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);}
.m6b_c00462{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);}
.m112_c00462{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);}
.m146_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);}
.m12a_c00462{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);}
.m10b_c00462{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);}
.me2_c00462{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);}
.mbd_c00462{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);}
.m68_c00462{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);}
.me0_c00462{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);}
.mc1_c00462{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);}
.m82_c00462{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);}
.m103_c00462{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);}
.mdf_c00462{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);}
.m18_c00462{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);}
.m12d_c00462{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);}
.m35_c00462{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);}
.m84_c00462{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);}
.mc_c00462{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);}
.m81_c00462{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);}
.mf9_c00462{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);}
.m7b_c00462{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);}
.m40_c00462{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);}
.m101_c00462{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);}
.mbb_c00462{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);}
.m148_c00462{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);}
.m1d_c00462{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m65_c00462{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);}
.m5d_c00462{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);}
.md1_c00462{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);}
.m6a_c00462{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);}
.md3_c00462{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);}
.mf2_c00462{transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);-ms-transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200742,-0.003011,0.003750,0.249972,0,0);}
.m4d_c00462{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);}
.m21_c00462{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);}
.med_c00462{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);}
.m61_c00462{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);}
.ma6_c00462{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);}
.m70_c00462{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);}
.m140_c00462{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);}
.m13_c00462{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);}
.mc3_c00462{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_c00462{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);}
.m88_c00462{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);}
.m37_c00462{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);}
.m49_c00462{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);}
.m79_c00462{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);}
.me_c00462{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);}
.m30_c00462{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);}
.m14_c00462{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);}
.m14a_c00462{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);}
.m5_c00462{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);}
.m4a_c00462{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);}
.mf7_c00462{transform:matrix(0.207217,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207217,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207217,-0.003108,0.003750,0.249972,0,0);}
.m7e_c00462{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);}
.m2e_c00462{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);}
.m138_c00462{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);}
.mc5_c00462{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_c00462{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);}
.m34_c00462{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);}
.m59_c00462{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);}
.m8c_c00462{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);}
.m28_c00462{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);}
.m139_c00462{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);}
.m10e_c00462{transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{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);}
.m111_c00462{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);}
.mc4_c00462{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);}
.mb5_c00462{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);}
.m51_c00462{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);}
.m8b_c00462{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);}
.m10_c00462{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);}
.m8e_c00462{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);}
.m117_c00462{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);}
.m20_c00462{transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215320,0.000000,0.000000,0.250000,0,0);}
.mc0_c00462{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);}
.md0_c00462{transform:matrix(0.215830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215830,0.000000,0.000000,0.250000,0,0);}
.meb_c00462{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);}
.m10d_c00462{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);}
.ma4_c00462{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);}
.m91_c00462{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);}
.m4f_c00462{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);}
.mf0_c00462{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);}
.mb4_c00462{transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219510,0.000000,0.000000,0.250000,0,0);}
.m6d_c00462{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);}
.mf8_c00462{transform:matrix(0.219760,-0.003296,0.003750,0.249972,0,0);-ms-transform:matrix(0.219760,-0.003296,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219760,-0.003296,0.003750,0.249972,0,0);}
.m94_c00462{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);}
.m47_c00462{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.mc7_c00462{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);}
.m127_c00462{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);}
.m13f_c00462{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);}
.m149_c00462{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);}
.m125_c00462{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);}
.md6_c00462{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);}
.m56_c00462{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);}
.mc2_c00462{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);}
.ma8_c00462{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);}
.mda_c00462{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);}
.m17_c00462{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);}
.m11_c00462{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);}
.m2_c00462{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);}
.m9a_c00462{transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{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);}
.m62_c00462{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);}
.mab_c00462{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);}
.m126_c00462{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.ma1_c00462{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);}
.m13a_c00462{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);}
.m5b_c00462{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);}
.m96_c00462{transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229830,0.000000,0.000000,0.250000,0,0);}
.m118_c00462{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_c00462{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);}
.m147_c00462{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);}
.mf_c00462{transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);}
.mdc_c00462{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);}
.me7_c00462{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);}
.m4b_c00462{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);}
.m12f_c00462{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);}
.mf5_c00462{transform:matrix(0.232724,-0.003491,0.003750,0.249972,0,0);-ms-transform:matrix(0.232724,-0.003491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232724,-0.003491,0.003750,0.249972,0,0);}
.me9_c00462{transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);}
.m128_c00462{transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233580,0.000000,0.000000,0.250000,0,0);}
.m124_c00462{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.mf6_c00462{transform:matrix(0.235588,-0.003534,0.003750,0.249972,0,0);-ms-transform:matrix(0.235588,-0.003534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235588,-0.003534,0.003750,0.249972,0,0);}
.m97_c00462{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);}
.m110_c00462{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m78_c00462{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00462{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);}
.mef_c00462{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);}
.md8_c00462{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);}
.m32_c00462{transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{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);}
.m8f_c00462{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);}
.m10f_c00462{transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242885,0.000000,0.000000,0.250000,0,0);}
.ma3_c00462{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);}
.maf_c00462{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m133_c00462{transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);}
.m95_c00462{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);}
.mb0_c00462{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.mb1_c00462{transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{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);}
.m60_c00462{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);}
.mf3_c00462{transform:matrix(0.245027,-0.003675,0.003750,0.249972,0,0);-ms-transform:matrix(0.245027,-0.003675,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245027,-0.003675,0.003750,0.249972,0,0);}
.m9c_c00462{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);}
.mac_c00462{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);}
.mcf_c00462{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);}
.m106_c00462{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.m13b_c00462{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.mcc_c00462{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);}
.m5e_c00462{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);}
.m142_c00462{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.mfb_c00462{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);}
.m7a_c00462{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.ma2_c00462{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.ma9_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);}
.m13d_c00462{transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);}
.mba_c00462{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);}
.m0_c00462{transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);}
.m63_c00462{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);}
.m52_c00462{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);}
.mfc_c00462{transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263955,0.000000,0.000000,0.250000,0,0);}
.ma0_c00462{transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);}
.m132_c00462{transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.268445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268445,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{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);}
.me4_c00462{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.me6_c00462{transform:matrix(0.272965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272965,0.000000,0.000000,0.250000,0,0);}
.m92_c00462{transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275315,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{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);}
.m5c_c00462{transform:matrix(0.276165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276165,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);}
.m134_c00462{transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{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);}
.m102_c00462{transform:matrix(0.288740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288740,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.288905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288905,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{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);}
.me3_c00462{transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292880,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.296205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296205,0.000000,0.000000,0.250000,0,0);}
.m105_c00462{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.m99_c00462{transform:matrix(0.304405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304405,0.000000,0.000000,0.250000,0,0);}
.m144_c00462{transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317270,0.000000,0.000000,0.250000,0,0);}
.m130_c00462{transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317755,0.000000,0.000000,0.250000,0,0);}
.mae_c00462{transform:matrix(0.318685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318685,0.000000,0.000000,0.250000,0,0);}
.m10a_c00462{transform:matrix(0.337800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337800,0.000000,0.000000,0.250000,0,0);}
.mf4_c00462{transform:matrix(0.338517,-0.005078,0.003750,0.249972,0,0);-ms-transform:matrix(0.338517,-0.005078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.338517,-0.005078,0.003750,0.249972,0,0);}
.m13c_c00462{transform:matrix(0.339765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339765,0.000000,0.000000,0.250000,0,0);}
.m141_c00462{transform:matrix(0.345170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345170,0.000000,0.000000,0.250000,0,0);}
.m108_c00462{transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358215,0.000000,0.000000,0.250000,0,0);}
.m131_c00462{transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362380,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.372095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372095,0.000000,0.000000,0.250000,0,0);}
.m100_c00462{transform:matrix(0.372115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372115,0.000000,0.000000,0.250000,0,0);}
.m109_c00462{transform:matrix(0.384985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384985,0.000000,0.000000,0.250000,0,0);}
.m14c_c00462{transform:matrix(0.399120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399120,0.000000,0.000000,0.250000,0,0);}
.m107_c00462{transform:matrix(0.425460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425460,0.000000,0.000000,0.250000,0,0);}
.mee_c00462{transform:matrix(0.430740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430740,0.000000,0.000000,0.250000,0,0);}
.m14d_c00462{transform:matrix(0.431890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431890,0.000000,0.000000,0.250000,0,0);}
.mfd_c00462{transform:matrix(0.434705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434705,0.000000,0.000000,0.250000,0,0);}
.m14b_c00462{transform:matrix(0.442955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442955,0.000000,0.000000,0.250000,0,0);}
.mfa_c00462{transform:matrix(0.449695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449695,0.000000,0.000000,0.250000,0,0);}
.m98_c00462{transform:matrix(0.481435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481435,0.000000,0.000000,0.250000,0,0);}
.m12e_c00462{transform:matrix(0.495745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495745,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.676570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676570,0.000000,0.000000,0.250000,0,0);}
.mde_c00462{transform:matrix(0.973775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973775,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;}
._0_c00462{margin-left:-31.349894px;}
.fc0_c00462{color:transparent;}
.fs11_c00462{font-size:23.100000px;}
.fs10_c00462{font-size:26.250000px;}
.fs16_c00462{font-size:39.900000px;}
.fs17_c00462{font-size:44.100000px;}
.fs18_c00462{font-size:46.200000px;}
.fsa_c00462{font-size:48.300000px;}
.fsc_c00462{font-size:49.350000px;}
.fs12_c00462{font-size:51.450000px;}
.fse_c00462{font-size:51.455788px;}
.fsb_c00462{font-size:52.500000px;}
.fsd_c00462{font-size:53.550000px;}
.fs15_c00462{font-size:54.600000px;}
.fs14_c00462{font-size:55.650000px;}
.fs19_c00462{font-size:56.700000px;}
.fs13_c00462{font-size:59.850000px;}
.fs6_c00462{font-size:61.950000px;}
.fsf_c00462{font-size:64.050000px;}
.fs7_c00462{font-size:65.100000px;}
.fs8_c00462{font-size:66.150000px;}
.fs1_c00462{font-size:68.250000px;}
.fs2_c00462{font-size:69.300000px;}
.fs0_c00462{font-size:70.350000px;}
.fs4_c00462{font-size:71.400000px;}
.fs9_c00462{font-size:72.450000px;}
.fs3_c00462{font-size:73.500000px;}
.fs5_c00462{font-size:74.550000px;}
.fs1a_c00462{font-size:75.600000px;}
.y0_c00462{bottom:0.000000px;}
.y37_c00462{bottom:149.325000px;}
.y46_c00462{bottom:151.938000px;}
.y38_c00462{bottom:159.840000px;}
.y39_c00462{bottom:160.650000px;}
.y2e_c00462{bottom:169.561500px;}
.y2f_c00462{bottom:169.862010px;}
.y30_c00462{bottom:170.084985px;}
.y31_c00462{bottom:170.575283px;}
.y32_c00462{bottom:170.749163px;}
.y33_c00462{bottom:171.050280px;}
.y34_c00462{bottom:171.880193px;}
.y45_c00462{bottom:172.552500px;}
.y35_c00462{bottom:172.648635px;}
.y36_c00462{bottom:173.044770px;}
.y2d_c00462{bottom:188.998500px;}
.y44_c00462{bottom:191.293500px;}
.y2c_c00462{bottom:206.245500px;}
.y43_c00462{bottom:208.587000px;}
.y41_c00462{bottom:208.974000px;}
.y2b_c00462{bottom:224.376000px;}
.y42_c00462{bottom:225.756000px;}
.y40_c00462{bottom:226.707000px;}
.y24_c00462{bottom:240.571500px;}
.y25_c00462{bottom:241.020000px;}
.y26_c00462{bottom:241.285500px;}
.y27_c00462{bottom:241.942500px;}
.y28_c00462{bottom:242.388000px;}
.y29_c00462{bottom:242.835000px;}
.y2a_c00462{bottom:243.541500px;}
.y3f_c00462{bottom:244.168500px;}
.y23_c00462{bottom:260.010000px;}
.y3e_c00462{bottom:261.744000px;}
.y22_c00462{bottom:277.834500px;}
.y3d_c00462{bottom:279.180000px;}
.y21_c00462{bottom:295.540500px;}
.y3c_c00462{bottom:296.845500px;}
.y20_c00462{bottom:313.312500px;}
.y3b_c00462{bottom:314.707500px;}
.y1f_c00462{bottom:330.870000px;}
.y3a_c00462{bottom:332.484000px;}
.y1e_c00462{bottom:402.235500px;}
.y1d_c00462{bottom:425.310000px;}
.y1c_c00462{bottom:447.313500px;}
.y1b_c00462{bottom:470.614500px;}
.y1a_c00462{bottom:493.039500px;}
.y19_c00462{bottom:516.364500px;}
.y18_c00462{bottom:539.331000px;}
.y17_c00462{bottom:561.946500px;}
.y16_c00462{bottom:584.692500px;}
.y15_c00462{bottom:606.946500px;}
.ya_c00462{bottom:629.100000px;}
.yb_c00462{bottom:629.572500px;}
.yc_c00462{bottom:629.806500px;}
.yd_c00462{bottom:629.833500px;}
.ye_c00462{bottom:630.187500px;}
.yf_c00462{bottom:630.522000px;}
.y10_c00462{bottom:630.861000px;}
.y11_c00462{bottom:631.263000px;}
.y12_c00462{bottom:631.536000px;}
.y13_c00462{bottom:632.059500px;}
.y14_c00462{bottom:632.145000px;}
.y9_c00462{bottom:652.258500px;}
.y8_c00462{bottom:674.266500px;}
.y7_c00462{bottom:696.945000px;}
.y6_c00462{bottom:718.924500px;}
.y5_c00462{bottom:742.293000px;}
.y4_c00462{bottom:765.063000px;}
.y3_c00462{bottom:788.731500px;}
.y2_c00462{bottom:811.336500px;}
.y1_c00462{bottom:833.563500px;}
.h13_c00462{height:23.100000px;}
.h12_c00462{height:26.250000px;}
.h18_c00462{height:39.900000px;}
.h19_c00462{height:44.100000px;}
.h1a_c00462{height:46.200000px;}
.hc_c00462{height:48.300000px;}
.he_c00462{height:49.350000px;}
.h14_c00462{height:51.450000px;}
.h10_c00462{height:51.455788px;}
.hd_c00462{height:52.500000px;}
.hf_c00462{height:53.550000px;}
.h17_c00462{height:54.600000px;}
.h16_c00462{height:55.650000px;}
.h1b_c00462{height:56.700000px;}
.h15_c00462{height:59.850000px;}
.h8_c00462{height:61.950000px;}
.h11_c00462{height:64.050000px;}
.h9_c00462{height:65.100000px;}
.ha_c00462{height:66.150000px;}
.h3_c00462{height:68.250000px;}
.h4_c00462{height:69.300000px;}
.h2_c00462{height:70.350000px;}
.h6_c00462{height:71.400000px;}
.hb_c00462{height:72.450000px;}
.h5_c00462{height:73.500000px;}
.h7_c00462{height:74.550000px;}
.h1c_c00462{height:75.600000px;}
.h1_c00462{height:1005.000000px;}
.h0_c00462{height:1005.150000px;}
.w0_c00462{width:715.200000px;}
.w1_c00462{width:715.500000px;}
.x0_c00462{left:0.000000px;}
.x6f_c00462{left:102.330000px;}
.x88_c00462{left:103.410000px;}
.x89_c00462{left:116.640000px;}
.x70_c00462{left:119.880000px;}
.x8c_c00462{left:123.267000px;}
.x7e_c00462{left:126.900000px;}
.x41_c00462{left:128.790000px;}
.x85_c00462{left:130.948500px;}
.x36_c00462{left:132.151500px;}
.x3b_c00462{left:133.650000px;}
.xa_c00462{left:135.000000px;}
.x4d_c00462{left:136.350000px;}
.x1_c00462{left:139.050000px;}
.x86_c00462{left:147.418500px;}
.x7f_c00462{left:150.120000px;}
.x71_c00462{left:151.740000px;}
.x83_c00462{left:153.774000px;}
.x60_c00462{left:156.330000px;}
.xb_c00462{left:157.410000px;}
.x72_c00462{left:158.760000px;}
.x5a_c00462{left:162.270000px;}
.x2b_c00462{left:163.350000px;}
.x24_c00462{left:164.430000px;}
.x16_c00462{left:165.510000px;}
.x87_c00462{left:168.478500px;}
.x2_c00462{left:170.640000px;}
.x3c_c00462{left:172.800000px;}
.x73_c00462{left:175.500000px;}
.x69_c00462{left:177.930000px;}
.x37_c00462{left:179.431500px;}
.x76_c00462{left:181.980000px;}
.x5b_c00462{left:184.680000px;}
.x3_c00462{left:191.700000px;}
.x42_c00462{left:193.050000px;}
.x65_c00462{left:195.480000px;}
.x1c_c00462{left:196.560000px;}
.x46_c00462{left:198.720000px;}
.x74_c00462{left:199.800000px;}
.x30_c00462{left:201.690000px;}
.x25_c00462{left:203.040000px;}
.x3d_c00462{left:204.120000px;}
.x17_c00462{left:205.740000px;}
.x7a_c00462{left:209.250000px;}
.x2c_c00462{left:210.330000px;}
.x77_c00462{left:216.270000px;}
.x6a_c00462{left:218.430000px;}
.x1d_c00462{left:219.510000px;}
.x11_c00462{left:225.450000px;}
.x33_c00462{left:227.610000px;}
.x84_c00462{left:232.594500px;}
.x7b_c00462{left:235.440000px;}
.x8a_c00462{left:236.520000px;}
.xc_c00462{left:238.410000px;}
.x1e_c00462{left:240.570000px;}
.x49_c00462{left:242.190000px;}
.x5c_c00462{left:243.810000px;}
.x43_c00462{left:246.240000px;}
.x3e_c00462{left:248.940000px;}
.x4e_c00462{left:250.830000px;}
.x2d_c00462{left:251.910000px;}
.x6b_c00462{left:256.770000px;}
.x78_c00462{left:257.850000px;}
.x4_c00462{left:260.010000px;}
.x7c_c00462{left:262.710000px;}
.x75_c00462{left:263.790000px;}
.x55_c00462{left:264.870000px;}
.x66_c00462{left:266.760000px;}
.x44_c00462{left:272.160000px;}
.x4a_c00462{left:273.240000px;}
.x38_c00462{left:274.500000px;}
.x18_c00462{left:279.450000px;}
.x5_c00462{left:281.880000px;}
.x80_c00462{left:282.960000px;}
.x26_c00462{left:284.310000px;}
.x7d_c00462{left:287.280000px;}
.x4f_c00462{left:288.900000px;}
.x56_c00462{left:289.980000px;}
.x47_c00462{left:294.300000px;}
.x12_c00462{left:298.350000px;}
.x5d_c00462{left:299.970000px;}
.x3f_c00462{left:302.400000px;}
.x27_c00462{left:304.020000px;}
.x8b_c00462{left:305.370000px;}
.x2e_c00462{left:306.990000px;}
.x39_c00462{left:308.460000px;}
.x81_c00462{left:311.580000px;}
.x13_c00462{left:315.360000px;}
.x79_c00462{left:316.440000px;}
.x4b_c00462{left:317.520000px;}
.x50_c00462{left:318.600000px;}
.x1f_c00462{left:320.490000px;}
.x82_c00462{left:325.620000px;}
.x6c_c00462{left:326.700000px;}
.xd_c00462{left:328.860000px;}
.x8d_c00462{left:335.451000px;}
.x34_c00462{left:337.500000px;}
.x20_c00462{left:339.930000px;}
.x6_c00462{left:341.010000px;}
.x19_c00462{left:343.710000px;}
.x67_c00462{left:345.600000px;}
.x5e_c00462{left:347.490000px;}
.x14_c00462{left:348.570000px;}
.x45_c00462{left:351.000000px;}
.xa6_c00462{left:353.970000px;}
.x7_c00462{left:356.400000px;}
.x21_c00462{left:359.640000px;}
.x48_c00462{left:361.530000px;}
.xe_c00462{left:362.610000px;}
.x6d_c00462{left:367.200000px;}
.x57_c00462{left:368.820000px;}
.x98_c00462{left:369.900000px;}
.x4c_c00462{left:372.870000px;}
.x31_c00462{left:375.300000px;}
.x1a_c00462{left:377.460000px;}
.x61_c00462{left:380.160000px;}
.x9e_c00462{left:381.780000px;}
.xaa_c00462{left:385.560000px;}
.x28_c00462{left:387.720000px;}
.x15_c00462{left:390.960000px;}
.x8e_c00462{left:392.580000px;}
.x5f_c00462{left:394.470000px;}
.x22_c00462{left:397.710000px;}
.xab_c00462{left:399.060000px;}
.xf_c00462{left:400.140000px;}
.xa7_c00462{left:404.460000px;}
.x8_c00462{left:406.890000px;}
.x6e_c00462{left:412.290000px;}
.x10_c00462{left:415.530000px;}
.x62_c00462{left:417.150000px;}
.x51_c00462{left:419.310000px;}
.x1b_c00462{left:421.470000px;}
.x94_c00462{left:422.820000px;}
.x68_c00462{left:424.710000px;}
.x35_c00462{left:428.220000px;}
.x23_c00462{left:431.460000px;}
.x29_c00462{left:433.350000px;}
.x9_c00462{left:434.970000px;}
.x3a_c00462{left:436.932000px;}
.x9c_c00462{left:438.480000px;}
.xa8_c00462{left:440.100000px;}
.x63_c00462{left:441.720000px;}
.x58_c00462{left:443.880000px;}
.x91_c00462{left:448.740000px;}
.x2f_c00462{left:451.170000px;}
.x40_c00462{left:453.870000px;}
.x52_c00462{left:458.190000px;}
.x2a_c00462{left:461.160000px;}
.x95_c00462{left:462.780000px;}
.x99_c00462{left:467.640000px;}
.x9f_c00462{left:469.260000px;}
.x64_c00462{left:475.740000px;}
.x59_c00462{left:481.410000px;}
.x32_c00462{left:483.300000px;}
.x8f_c00462{left:486.000000px;}
.x9a_c00462{left:488.970000px;}
.x53_c00462{left:491.130000px;}
.x9d_c00462{left:497.340000px;}
.xa0_c00462{left:503.280000px;}
.x96_c00462{left:507.060000px;}
.x54_c00462{left:512.730000px;}
.xa2_c00462{left:519.210000px;}
.xa4_c00462{left:520.290000px;}
.x9b_c00462{left:521.640000px;}
.x92_c00462{left:523.530000px;}
.x97_c00462{left:524.610000px;}
.xa3_c00462{left:535.140000px;}
.x93_c00462{left:540.270000px;}
.xa9_c00462{left:541.350000px;}
.xa5_c00462{left:546.210000px;}
.xa1_c00462{left:553.230000px;}
.x90_c00462{left:560.250000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
._0_c00462{margin-left:-27.866573pt;}
.fs11_c00462{font-size:20.533333pt;}
.fs10_c00462{font-size:23.333333pt;}
.fs16_c00462{font-size:35.466667pt;}
.fs17_c00462{font-size:39.200000pt;}
.fs18_c00462{font-size:41.066667pt;}
.fsa_c00462{font-size:42.933333pt;}
.fsc_c00462{font-size:43.866667pt;}
.fs12_c00462{font-size:45.733333pt;}
.fse_c00462{font-size:45.738478pt;}
.fsb_c00462{font-size:46.666667pt;}
.fsd_c00462{font-size:47.600000pt;}
.fs15_c00462{font-size:48.533333pt;}
.fs14_c00462{font-size:49.466667pt;}
.fs19_c00462{font-size:50.400000pt;}
.fs13_c00462{font-size:53.200000pt;}
.fs6_c00462{font-size:55.066667pt;}
.fsf_c00462{font-size:56.933333pt;}
.fs7_c00462{font-size:57.866667pt;}
.fs8_c00462{font-size:58.800000pt;}
.fs1_c00462{font-size:60.666667pt;}
.fs2_c00462{font-size:61.600000pt;}
.fs0_c00462{font-size:62.533333pt;}
.fs4_c00462{font-size:63.466667pt;}
.fs9_c00462{font-size:64.400000pt;}
.fs3_c00462{font-size:65.333333pt;}
.fs5_c00462{font-size:66.266667pt;}
.fs1a_c00462{font-size:67.200000pt;}
.y0_c00462{bottom:0.000000pt;}
.y37_c00462{bottom:132.733333pt;}
.y46_c00462{bottom:135.056000pt;}
.y38_c00462{bottom:142.080000pt;}
.y39_c00462{bottom:142.800000pt;}
.y2e_c00462{bottom:150.721333pt;}
.y2f_c00462{bottom:150.988453pt;}
.y30_c00462{bottom:151.186653pt;}
.y31_c00462{bottom:151.622473pt;}
.y32_c00462{bottom:151.777033pt;}
.y33_c00462{bottom:152.044693pt;}
.y34_c00462{bottom:152.782393pt;}
.y45_c00462{bottom:153.380000pt;}
.y35_c00462{bottom:153.465453pt;}
.y36_c00462{bottom:153.817573pt;}
.y2d_c00462{bottom:167.998667pt;}
.y44_c00462{bottom:170.038667pt;}
.y2c_c00462{bottom:183.329333pt;}
.y43_c00462{bottom:185.410667pt;}
.y41_c00462{bottom:185.754667pt;}
.y2b_c00462{bottom:199.445333pt;}
.y42_c00462{bottom:200.672000pt;}
.y40_c00462{bottom:201.517333pt;}
.y24_c00462{bottom:213.841333pt;}
.y25_c00462{bottom:214.240000pt;}
.y26_c00462{bottom:214.476000pt;}
.y27_c00462{bottom:215.060000pt;}
.y28_c00462{bottom:215.456000pt;}
.y29_c00462{bottom:215.853333pt;}
.y2a_c00462{bottom:216.481333pt;}
.y3f_c00462{bottom:217.038667pt;}
.y23_c00462{bottom:231.120000pt;}
.y3e_c00462{bottom:232.661333pt;}
.y22_c00462{bottom:246.964000pt;}
.y3d_c00462{bottom:248.160000pt;}
.y21_c00462{bottom:262.702667pt;}
.y3c_c00462{bottom:263.862667pt;}
.y20_c00462{bottom:278.500000pt;}
.y3b_c00462{bottom:279.740000pt;}
.y1f_c00462{bottom:294.106667pt;}
.y3a_c00462{bottom:295.541333pt;}
.y1e_c00462{bottom:357.542667pt;}
.y1d_c00462{bottom:378.053333pt;}
.y1c_c00462{bottom:397.612000pt;}
.y1b_c00462{bottom:418.324000pt;}
.y1a_c00462{bottom:438.257333pt;}
.y19_c00462{bottom:458.990667pt;}
.y18_c00462{bottom:479.405333pt;}
.y17_c00462{bottom:499.508000pt;}
.y16_c00462{bottom:519.726667pt;}
.y15_c00462{bottom:539.508000pt;}
.ya_c00462{bottom:559.200000pt;}
.yb_c00462{bottom:559.620000pt;}
.yc_c00462{bottom:559.828000pt;}
.yd_c00462{bottom:559.852000pt;}
.ye_c00462{bottom:560.166667pt;}
.yf_c00462{bottom:560.464000pt;}
.y10_c00462{bottom:560.765333pt;}
.y11_c00462{bottom:561.122667pt;}
.y12_c00462{bottom:561.365333pt;}
.y13_c00462{bottom:561.830667pt;}
.y14_c00462{bottom:561.906667pt;}
.y9_c00462{bottom:579.785333pt;}
.y8_c00462{bottom:599.348000pt;}
.y7_c00462{bottom:619.506667pt;}
.y6_c00462{bottom:639.044000pt;}
.y5_c00462{bottom:659.816000pt;}
.y4_c00462{bottom:680.056000pt;}
.y3_c00462{bottom:701.094667pt;}
.y2_c00462{bottom:721.188000pt;}
.y1_c00462{bottom:740.945333pt;}
.h13_c00462{height:20.533333pt;}
.h12_c00462{height:23.333333pt;}
.h18_c00462{height:35.466667pt;}
.h19_c00462{height:39.200000pt;}
.h1a_c00462{height:41.066667pt;}
.hc_c00462{height:42.933333pt;}
.he_c00462{height:43.866667pt;}
.h14_c00462{height:45.733333pt;}
.h10_c00462{height:45.738478pt;}
.hd_c00462{height:46.666667pt;}
.hf_c00462{height:47.600000pt;}
.h17_c00462{height:48.533333pt;}
.h16_c00462{height:49.466667pt;}
.h1b_c00462{height:50.400000pt;}
.h15_c00462{height:53.200000pt;}
.h8_c00462{height:55.066667pt;}
.h11_c00462{height:56.933333pt;}
.h9_c00462{height:57.866667pt;}
.ha_c00462{height:58.800000pt;}
.h3_c00462{height:60.666667pt;}
.h4_c00462{height:61.600000pt;}
.h2_c00462{height:62.533333pt;}
.h6_c00462{height:63.466667pt;}
.hb_c00462{height:64.400000pt;}
.h5_c00462{height:65.333333pt;}
.h7_c00462{height:66.266667pt;}
.h1c_c00462{height:67.200000pt;}
.h1_c00462{height:893.333333pt;}
.h0_c00462{height:893.466667pt;}
.w0_c00462{width:635.733333pt;}
.w1_c00462{width:636.000000pt;}
.x0_c00462{left:0.000000pt;}
.x6f_c00462{left:90.960000pt;}
.x88_c00462{left:91.920000pt;}
.x89_c00462{left:103.680000pt;}
.x70_c00462{left:106.560000pt;}
.x8c_c00462{left:109.570667pt;}
.x7e_c00462{left:112.800000pt;}
.x41_c00462{left:114.480000pt;}
.x85_c00462{left:116.398667pt;}
.x36_c00462{left:117.468000pt;}
.x3b_c00462{left:118.800000pt;}
.xa_c00462{left:120.000000pt;}
.x4d_c00462{left:121.200000pt;}
.x1_c00462{left:123.600000pt;}
.x86_c00462{left:131.038667pt;}
.x7f_c00462{left:133.440000pt;}
.x71_c00462{left:134.880000pt;}
.x83_c00462{left:136.688000pt;}
.x60_c00462{left:138.960000pt;}
.xb_c00462{left:139.920000pt;}
.x72_c00462{left:141.120000pt;}
.x5a_c00462{left:144.240000pt;}
.x2b_c00462{left:145.200000pt;}
.x24_c00462{left:146.160000pt;}
.x16_c00462{left:147.120000pt;}
.x87_c00462{left:149.758667pt;}
.x2_c00462{left:151.680000pt;}
.x3c_c00462{left:153.600000pt;}
.x73_c00462{left:156.000000pt;}
.x69_c00462{left:158.160000pt;}
.x37_c00462{left:159.494667pt;}
.x76_c00462{left:161.760000pt;}
.x5b_c00462{left:164.160000pt;}
.x3_c00462{left:170.400000pt;}
.x42_c00462{left:171.600000pt;}
.x65_c00462{left:173.760000pt;}
.x1c_c00462{left:174.720000pt;}
.x46_c00462{left:176.640000pt;}
.x74_c00462{left:177.600000pt;}
.x30_c00462{left:179.280000pt;}
.x25_c00462{left:180.480000pt;}
.x3d_c00462{left:181.440000pt;}
.x17_c00462{left:182.880000pt;}
.x7a_c00462{left:186.000000pt;}
.x2c_c00462{left:186.960000pt;}
.x77_c00462{left:192.240000pt;}
.x6a_c00462{left:194.160000pt;}
.x1d_c00462{left:195.120000pt;}
.x11_c00462{left:200.400000pt;}
.x33_c00462{left:202.320000pt;}
.x84_c00462{left:206.750667pt;}
.x7b_c00462{left:209.280000pt;}
.x8a_c00462{left:210.240000pt;}
.xc_c00462{left:211.920000pt;}
.x1e_c00462{left:213.840000pt;}
.x49_c00462{left:215.280000pt;}
.x5c_c00462{left:216.720000pt;}
.x43_c00462{left:218.880000pt;}
.x3e_c00462{left:221.280000pt;}
.x4e_c00462{left:222.960000pt;}
.x2d_c00462{left:223.920000pt;}
.x6b_c00462{left:228.240000pt;}
.x78_c00462{left:229.200000pt;}
.x4_c00462{left:231.120000pt;}
.x7c_c00462{left:233.520000pt;}
.x75_c00462{left:234.480000pt;}
.x55_c00462{left:235.440000pt;}
.x66_c00462{left:237.120000pt;}
.x44_c00462{left:241.920000pt;}
.x4a_c00462{left:242.880000pt;}
.x38_c00462{left:244.000000pt;}
.x18_c00462{left:248.400000pt;}
.x5_c00462{left:250.560000pt;}
.x80_c00462{left:251.520000pt;}
.x26_c00462{left:252.720000pt;}
.x7d_c00462{left:255.360000pt;}
.x4f_c00462{left:256.800000pt;}
.x56_c00462{left:257.760000pt;}
.x47_c00462{left:261.600000pt;}
.x12_c00462{left:265.200000pt;}
.x5d_c00462{left:266.640000pt;}
.x3f_c00462{left:268.800000pt;}
.x27_c00462{left:270.240000pt;}
.x8b_c00462{left:271.440000pt;}
.x2e_c00462{left:272.880000pt;}
.x39_c00462{left:274.186667pt;}
.x81_c00462{left:276.960000pt;}
.x13_c00462{left:280.320000pt;}
.x79_c00462{left:281.280000pt;}
.x4b_c00462{left:282.240000pt;}
.x50_c00462{left:283.200000pt;}
.x1f_c00462{left:284.880000pt;}
.x82_c00462{left:289.440000pt;}
.x6c_c00462{left:290.400000pt;}
.xd_c00462{left:292.320000pt;}
.x8d_c00462{left:298.178667pt;}
.x34_c00462{left:300.000000pt;}
.x20_c00462{left:302.160000pt;}
.x6_c00462{left:303.120000pt;}
.x19_c00462{left:305.520000pt;}
.x67_c00462{left:307.200000pt;}
.x5e_c00462{left:308.880000pt;}
.x14_c00462{left:309.840000pt;}
.x45_c00462{left:312.000000pt;}
.xa6_c00462{left:314.640000pt;}
.x7_c00462{left:316.800000pt;}
.x21_c00462{left:319.680000pt;}
.x48_c00462{left:321.360000pt;}
.xe_c00462{left:322.320000pt;}
.x6d_c00462{left:326.400000pt;}
.x57_c00462{left:327.840000pt;}
.x98_c00462{left:328.800000pt;}
.x4c_c00462{left:331.440000pt;}
.x31_c00462{left:333.600000pt;}
.x1a_c00462{left:335.520000pt;}
.x61_c00462{left:337.920000pt;}
.x9e_c00462{left:339.360000pt;}
.xaa_c00462{left:342.720000pt;}
.x28_c00462{left:344.640000pt;}
.x15_c00462{left:347.520000pt;}
.x8e_c00462{left:348.960000pt;}
.x5f_c00462{left:350.640000pt;}
.x22_c00462{left:353.520000pt;}
.xab_c00462{left:354.720000pt;}
.xf_c00462{left:355.680000pt;}
.xa7_c00462{left:359.520000pt;}
.x8_c00462{left:361.680000pt;}
.x6e_c00462{left:366.480000pt;}
.x10_c00462{left:369.360000pt;}
.x62_c00462{left:370.800000pt;}
.x51_c00462{left:372.720000pt;}
.x1b_c00462{left:374.640000pt;}
.x94_c00462{left:375.840000pt;}
.x68_c00462{left:377.520000pt;}
.x35_c00462{left:380.640000pt;}
.x23_c00462{left:383.520000pt;}
.x29_c00462{left:385.200000pt;}
.x9_c00462{left:386.640000pt;}
.x3a_c00462{left:388.384000pt;}
.x9c_c00462{left:389.760000pt;}
.xa8_c00462{left:391.200000pt;}
.x63_c00462{left:392.640000pt;}
.x58_c00462{left:394.560000pt;}
.x91_c00462{left:398.880000pt;}
.x2f_c00462{left:401.040000pt;}
.x40_c00462{left:403.440000pt;}
.x52_c00462{left:407.280000pt;}
.x2a_c00462{left:409.920000pt;}
.x95_c00462{left:411.360000pt;}
.x99_c00462{left:415.680000pt;}
.x9f_c00462{left:417.120000pt;}
.x64_c00462{left:422.880000pt;}
.x59_c00462{left:427.920000pt;}
.x32_c00462{left:429.600000pt;}
.x8f_c00462{left:432.000000pt;}
.x9a_c00462{left:434.640000pt;}
.x53_c00462{left:436.560000pt;}
.x9d_c00462{left:442.080000pt;}
.xa0_c00462{left:447.360000pt;}
.x96_c00462{left:450.720000pt;}
.x54_c00462{left:455.760000pt;}
.xa2_c00462{left:461.520000pt;}
.xa4_c00462{left:462.480000pt;}
.x9b_c00462{left:463.680000pt;}
.x92_c00462{left:465.360000pt;}
.x97_c00462{left:466.320000pt;}
.xa3_c00462{left:475.680000pt;}
.x93_c00462{left:480.240000pt;}
.xa9_c00462{left:481.200000pt;}
.xa5_c00462{left:485.520000pt;}
.xa1_c00462{left:491.760000pt;}
.x90_c00462{left:498.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_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;}
.m160_c00463{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);}
.m144_c00463{transform:matrix(0.021203,-0.000297,0.003500,0.249976,0,0);-ms-transform:matrix(0.021203,-0.000297,0.003500,0.249976,0,0);-webkit-transform:matrix(0.021203,-0.000297,0.003500,0.249976,0,0);}
.m0_c00463{transform:matrix(0.022050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022050,0.000000,0.000000,0.250000,0,0);}
.md6_c00463{transform:matrix(0.024260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024260,0.000000,0.000000,0.250000,0,0);}
.m17f_c00463{transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028095,0.000000,0.000000,0.250000,0,0);}
.m14a_c00463{transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030600,0.000000,0.000000,0.250000,0,0);}
.m8a_c00463{transform:matrix(0.087951,-0.001847,0.005249,0.249945,0,0);-ms-transform:matrix(0.087951,-0.001847,0.005249,0.249945,0,0);-webkit-transform:matrix(0.087951,-0.001847,0.005249,0.249945,0,0);}
.m102_c00463{transform:matrix(0.097940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097940,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.102763,-0.001541,0.003750,0.249972,0,0);-ms-transform:matrix(0.102763,-0.001541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.102763,-0.001541,0.003750,0.249972,0,0);}
.m15d_c00463{transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);}
.m123_c00463{transform:matrix(0.115705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115705,0.000000,0.000000,0.250000,0,0);}
.m9c_c00463{transform:matrix(0.122823,-0.002579,0.005249,0.249945,0,0);-ms-transform:matrix(0.122823,-0.002579,0.005249,0.249945,0,0);-webkit-transform:matrix(0.122823,-0.002579,0.005249,0.249945,0,0);}
.m6b_c00463{transform:matrix(0.124037,-0.001364,0.002750,0.249985,0,0);-ms-transform:matrix(0.124037,-0.001364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.124037,-0.001364,0.002750,0.249985,0,0);}
.m11a_c00463{transform:matrix(0.137197,-0.001921,0.003500,0.249976,0,0);-ms-transform:matrix(0.137197,-0.001921,0.003500,0.249976,0,0);-webkit-transform:matrix(0.137197,-0.001921,0.003500,0.249976,0,0);}
.m78_c00463{transform:matrix(0.144715,-0.001737,0.003000,0.249982,0,0);-ms-transform:matrix(0.144715,-0.001737,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144715,-0.001737,0.003000,0.249982,0,0);}
.m20_c00463{transform:matrix(0.146758,-0.002201,0.003750,0.249972,0,0);-ms-transform:matrix(0.146758,-0.002201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.146758,-0.002201,0.003750,0.249972,0,0);}
.m99_c00463{transform:matrix(0.146848,-0.003084,0.005249,0.249945,0,0);-ms-transform:matrix(0.146848,-0.003084,0.005249,0.249945,0,0);-webkit-transform:matrix(0.146848,-0.003084,0.005249,0.249945,0,0);}
.mf2_c00463{transform:matrix(0.147820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147820,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.148458,-0.002227,0.003750,0.249972,0,0);-ms-transform:matrix(0.148458,-0.002227,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148458,-0.002227,0.003750,0.249972,0,0);}
.m1c_c00463{transform:matrix(0.148878,-0.002233,0.003750,0.249972,0,0);-ms-transform:matrix(0.148878,-0.002233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148878,-0.002233,0.003750,0.249972,0,0);}
.m139_c00463{transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150205,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.153628,-0.002304,0.003750,0.249972,0,0);-ms-transform:matrix(0.153628,-0.002304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153628,-0.002304,0.003750,0.249972,0,0);}
.m116_c00463{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);}
.mff_c00463{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);}
.me_c00463{transform:matrix(0.157548,-0.003151,0.004999,0.249950,0,0);-ms-transform:matrix(0.157548,-0.003151,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157548,-0.003151,0.004999,0.249950,0,0);}
.mcc_c00463{transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157560,0.000000,0.000000,0.250000,0,0);}
.mfd_c00463{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);}
.ma7_c00463{transform:matrix(0.158542,-0.002695,0.004249,0.249964,0,0);-ms-transform:matrix(0.158542,-0.002695,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158542,-0.002695,0.004249,0.249964,0,0);}
.m3c_c00463{transform:matrix(0.161067,-0.002416,0.003750,0.249972,0,0);-ms-transform:matrix(0.161067,-0.002416,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161067,-0.002416,0.003750,0.249972,0,0);}
.mc6_c00463{transform:matrix(0.161434,-0.002260,0.003500,0.249976,0,0);-ms-transform:matrix(0.161434,-0.002260,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161434,-0.002260,0.003500,0.249976,0,0);}
.mb_c00463{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);}
.m6d_c00463{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);}
.m79_c00463{transform:matrix(0.162058,-0.001945,0.003000,0.249982,0,0);-ms-transform:matrix(0.162058,-0.001945,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162058,-0.001945,0.003000,0.249982,0,0);}
.mf_c00463{transform:matrix(0.162298,-0.003246,0.004999,0.249950,0,0);-ms-transform:matrix(0.162298,-0.003246,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162298,-0.003246,0.004999,0.249950,0,0);}
.m136_c00463{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);}
.ma8_c00463{transform:matrix(0.163261,-0.002775,0.004249,0.249964,0,0);-ms-transform:matrix(0.163261,-0.002775,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163261,-0.002775,0.004249,0.249964,0,0);}
.mfa_c00463{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m19_c00463{transform:matrix(0.163598,-0.002945,0.004499,0.249960,0,0);-ms-transform:matrix(0.163598,-0.002945,0.004499,0.249960,0,0);-webkit-transform:matrix(0.163598,-0.002945,0.004499,0.249960,0,0);}
.m56_c00463{transform:matrix(0.163959,-0.002623,0.003999,0.249968,0,0);-ms-transform:matrix(0.163959,-0.002623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163959,-0.002623,0.003999,0.249968,0,0);}
.m130_c00463{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);}
.m67_c00463{transform:matrix(0.164545,-0.001810,0.002750,0.249985,0,0);-ms-transform:matrix(0.164545,-0.001810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164545,-0.001810,0.002750,0.249985,0,0);}
.mc8_c00463{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);}
.mab_c00463{transform:matrix(0.164986,-0.002805,0.004249,0.249964,0,0);-ms-transform:matrix(0.164986,-0.002805,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164986,-0.002805,0.004249,0.249964,0,0);}
.mcb_c00463{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);}
.m6e_c00463{transform:matrix(0.166003,-0.001992,0.003000,0.249982,0,0);-ms-transform:matrix(0.166003,-0.001992,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166003,-0.001992,0.003000,0.249982,0,0);}
.m121_c00463{transform:matrix(0.166754,-0.002335,0.003500,0.249976,0,0);-ms-transform:matrix(0.166754,-0.002335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166754,-0.002335,0.003500,0.249976,0,0);}
.mb0_c00463{transform:matrix(0.168114,-0.002354,0.003500,0.249976,0,0);-ms-transform:matrix(0.168114,-0.002354,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168114,-0.002354,0.003500,0.249976,0,0);}
.m2c_c00463{transform:matrix(0.168236,-0.002524,0.003750,0.249972,0,0);-ms-transform:matrix(0.168236,-0.002524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168236,-0.002524,0.003750,0.249972,0,0);}
.m23_c00463{transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);-ms-transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169311,-0.002540,0.003750,0.249972,0,0);}
.m15_c00463{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);}
.m26_c00463{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);}
.m48_c00463{transform:matrix(0.170396,-0.002556,0.003750,0.249972,0,0);-ms-transform:matrix(0.170396,-0.002556,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170396,-0.002556,0.003750,0.249972,0,0);}
.m35_c00463{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);}
.mba_c00463{transform:matrix(0.171598,-0.002402,0.003500,0.249976,0,0);-ms-transform:matrix(0.171598,-0.002402,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171598,-0.002402,0.003500,0.249976,0,0);}
.m12_c00463{transform:matrix(0.171791,-0.003436,0.004999,0.249950,0,0);-ms-transform:matrix(0.171791,-0.003436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171791,-0.003436,0.004999,0.249950,0,0);}
.md5_c00463{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.172506,-0.003450,0.004999,0.249950,0,0);-ms-transform:matrix(0.172506,-0.003450,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172506,-0.003450,0.004999,0.249950,0,0);}
.mfb_c00463{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);}
.m110_c00463{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);}
.m11_c00463{transform:matrix(0.173595,-0.003472,0.004999,0.249950,0,0);-ms-transform:matrix(0.173595,-0.003472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173595,-0.003472,0.004999,0.249950,0,0);}
.me1_c00463{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);}
.m12d_c00463{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);}
.m100_c00463{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);}
.m15e_c00463{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);}
.m44_c00463{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);}
.m176_c00463{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);}
.m75_c00463{transform:matrix(0.174797,-0.002098,0.003000,0.249982,0,0);-ms-transform:matrix(0.174797,-0.002098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174797,-0.002098,0.003000,0.249982,0,0);}
.m10_c00463{transform:matrix(0.175430,-0.003509,0.004999,0.249950,0,0);-ms-transform:matrix(0.175430,-0.003509,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175430,-0.003509,0.004999,0.249950,0,0);}
.m171_c00463{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);}
.md9_c00463{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);}
.m22_c00463{transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);-ms-transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176185,-0.002643,0.003750,0.249972,0,0);}
.m5b_c00463{transform:matrix(0.176224,-0.001938,0.002750,0.249985,0,0);-ms-transform:matrix(0.176224,-0.001938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176224,-0.001938,0.002750,0.249985,0,0);}
.m72_c00463{transform:matrix(0.176812,-0.002122,0.003000,0.249982,0,0);-ms-transform:matrix(0.176812,-0.002122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176812,-0.002122,0.003000,0.249982,0,0);}
.m13c_c00463{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);}
.mc_c00463{transform:matrix(0.177579,-0.003552,0.004999,0.249950,0,0);-ms-transform:matrix(0.177579,-0.003552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177579,-0.003552,0.004999,0.249950,0,0);}
.m53_c00463{transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);-ms-transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177822,-0.002845,0.003999,0.249968,0,0);}
.me2_c00463{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);}
.m7a_c00463{transform:matrix(0.178172,-0.002138,0.003000,0.249982,0,0);-ms-transform:matrix(0.178172,-0.002138,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178172,-0.002138,0.003000,0.249982,0,0);}
.m97_c00463{transform:matrix(0.178326,-0.003745,0.005249,0.249945,0,0);-ms-transform:matrix(0.178326,-0.003745,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178326,-0.003745,0.005249,0.249945,0,0);}
.mbf_c00463{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);}
.mc0_c00463{transform:matrix(0.178408,-0.002498,0.003500,0.249976,0,0);-ms-transform:matrix(0.178408,-0.002498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178408,-0.002498,0.003500,0.249976,0,0);}
.m41_c00463{transform:matrix(0.178515,-0.002678,0.003750,0.249972,0,0);-ms-transform:matrix(0.178515,-0.002678,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178515,-0.002678,0.003750,0.249972,0,0);}
.m7b_c00463{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);}
.m1a_c00463{transform:matrix(0.178991,-0.003222,0.004499,0.249960,0,0);-ms-transform:matrix(0.178991,-0.003222,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178991,-0.003222,0.004499,0.249960,0,0);}
.mc1_c00463{transform:matrix(0.179042,-0.002507,0.003500,0.249976,0,0);-ms-transform:matrix(0.179042,-0.002507,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179042,-0.002507,0.003500,0.249976,0,0);}
.m39_c00463{transform:matrix(0.179100,-0.002686,0.003750,0.249972,0,0);-ms-transform:matrix(0.179100,-0.002686,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179100,-0.002686,0.003750,0.249972,0,0);}
.m27_c00463{transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179780,-0.002697,0.003750,0.249972,0,0);}
.m42_c00463{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);}
.m10e_c00463{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);}
.m83_c00463{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);}
.m90_c00463{transform:matrix(0.180610,-0.003793,0.005249,0.249945,0,0);-ms-transform:matrix(0.180610,-0.003793,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180610,-0.003793,0.005249,0.249945,0,0);}
.m71_c00463{transform:matrix(0.180692,-0.002168,0.003000,0.249982,0,0);-ms-transform:matrix(0.180692,-0.002168,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180692,-0.002168,0.003000,0.249982,0,0);}
.m68_c00463{transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);-ms-transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180754,-0.001988,0.002750,0.249985,0,0);}
.m70_c00463{transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);-ms-transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180807,-0.002170,0.003000,0.249982,0,0);}
.mb2_c00463{transform:matrix(0.180947,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180947,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180947,-0.002533,0.003500,0.249976,0,0);}
.mae_c00463{transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);-ms-transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180962,-0.002533,0.003500,0.249976,0,0);}
.m13f_c00463{transform:matrix(0.181387,-0.002539,0.003500,0.249976,0,0);-ms-transform:matrix(0.181387,-0.002539,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181387,-0.002539,0.003500,0.249976,0,0);}
.m14f_c00463{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);}
.me4_c00463{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);}
.m3_c00463{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);}
.m3b_c00463{transform:matrix(0.182609,-0.002739,0.003750,0.249972,0,0);-ms-transform:matrix(0.182609,-0.002739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182609,-0.002739,0.003750,0.249972,0,0);}
.m12b_c00463{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);}
.m2a_c00463{transform:matrix(0.183344,-0.002750,0.003750,0.249972,0,0);-ms-transform:matrix(0.183344,-0.002750,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183344,-0.002750,0.003750,0.249972,0,0);}
.m12c_c00463{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);}
.mc4_c00463{transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);-ms-transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183982,-0.002576,0.003500,0.249976,0,0);}
.m10c_c00463{transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184070,0.000000,0.000000,0.250000,0,0);}
.m12a_c00463{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.md3_c00463{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);}
.m150_c00463{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);}
.me8_c00463{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);}
.m28_c00463{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);}
.mca_c00463{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);}
.m74_c00463{transform:matrix(0.185227,-0.002223,0.003000,0.249982,0,0);-ms-transform:matrix(0.185227,-0.002223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185227,-0.002223,0.003000,0.249982,0,0);}
.m178_c00463{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);}
.m122_c00463{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);}
.mb3_c00463{transform:matrix(0.185522,-0.002597,0.003500,0.249976,0,0);-ms-transform:matrix(0.185522,-0.002597,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185522,-0.002597,0.003500,0.249976,0,0);}
.maf_c00463{transform:matrix(0.185832,-0.002602,0.003500,0.249976,0,0);-ms-transform:matrix(0.185832,-0.002602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185832,-0.002602,0.003500,0.249976,0,0);}
.m14_c00463{transform:matrix(0.185995,-0.003348,0.004499,0.249960,0,0);-ms-transform:matrix(0.185995,-0.003348,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185995,-0.003348,0.004499,0.249960,0,0);}
.m8d_c00463{transform:matrix(0.186204,-0.003910,0.005249,0.249945,0,0);-ms-transform:matrix(0.186204,-0.003910,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186204,-0.003910,0.005249,0.249945,0,0);}
.m2b_c00463{transform:matrix(0.186239,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186239,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186239,-0.002794,0.003750,0.249972,0,0);}
.m1d_c00463{transform:matrix(0.186554,-0.002798,0.003750,0.249972,0,0);-ms-transform:matrix(0.186554,-0.002798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186554,-0.002798,0.003750,0.249972,0,0);}
.me5_c00463{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);}
.m21_c00463{transform:matrix(0.187214,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187214,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187214,-0.002808,0.003750,0.249972,0,0);}
.mc9_c00463{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);}
.maa_c00463{transform:matrix(0.188588,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188588,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188588,-0.003206,0.004249,0.249964,0,0);}
.m50_c00463{transform:matrix(0.188981,-0.003024,0.003999,0.249968,0,0);-ms-transform:matrix(0.188981,-0.003024,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188981,-0.003024,0.003999,0.249968,0,0);}
.m126_c00463{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);}
.mac_c00463{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);}
.m4d_c00463{transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);-ms-transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189416,-0.003031,0.003999,0.249968,0,0);}
.m17a_c00463{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);}
.m146_c00463{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);}
.m177_c00463{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);}
.m1b_c00463{transform:matrix(0.190879,-0.002863,0.003750,0.249972,0,0);-ms-transform:matrix(0.190879,-0.002863,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190879,-0.002863,0.003750,0.249972,0,0);}
.m132_c00463{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);}
.m17_c00463{transform:matrix(0.191159,-0.003441,0.004499,0.249960,0,0);-ms-transform:matrix(0.191159,-0.003441,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191159,-0.003441,0.004499,0.249960,0,0);}
.m40_c00463{transform:matrix(0.191283,-0.002869,0.003750,0.249972,0,0);-ms-transform:matrix(0.191283,-0.002869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191283,-0.002869,0.003750,0.249972,0,0);}
.mf9_c00463{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);}
.m142_c00463{transform:matrix(0.191901,-0.002687,0.003500,0.249976,0,0);-ms-transform:matrix(0.191901,-0.002687,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191901,-0.002687,0.003500,0.249976,0,0);}
.m117_c00463{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);}
.md2_c00463{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);}
.m127_c00463{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);}
.m87_c00463{transform:matrix(0.192463,-0.004042,0.005249,0.249945,0,0);-ms-transform:matrix(0.192463,-0.004042,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192463,-0.004042,0.005249,0.249945,0,0);}
.mdf_c00463{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);}
.m18_c00463{transform:matrix(0.192524,-0.003465,0.004499,0.249960,0,0);-ms-transform:matrix(0.192524,-0.003465,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192524,-0.003465,0.004499,0.249960,0,0);}
.m7c_c00463{transform:matrix(0.193061,-0.002317,0.003000,0.249982,0,0);-ms-transform:matrix(0.193061,-0.002317,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193061,-0.002317,0.003000,0.249982,0,0);}
.m24_c00463{transform:matrix(0.193233,-0.002898,0.003750,0.249972,0,0);-ms-transform:matrix(0.193233,-0.002898,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193233,-0.002898,0.003750,0.249972,0,0);}
.m111_c00463{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);}
.m175_c00463{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);}
.m77_c00463{transform:matrix(0.193306,-0.002320,0.003000,0.249982,0,0);-ms-transform:matrix(0.193306,-0.002320,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193306,-0.002320,0.003000,0.249982,0,0);}
.md8_c00463{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);}
.mea_c00463{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);}
.me9_c00463{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);}
.m91_c00463{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);}
.m45_c00463{transform:matrix(0.194943,-0.002924,0.003750,0.249972,0,0);-ms-transform:matrix(0.194943,-0.002924,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194943,-0.002924,0.003750,0.249972,0,0);}
.m5c_c00463{transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);-ms-transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195193,-0.002147,0.002750,0.249985,0,0);}
.m101_c00463{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);}
.m9f_c00463{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);}
.mb1_c00463{transform:matrix(0.195746,-0.002740,0.003500,0.249976,0,0);-ms-transform:matrix(0.195746,-0.002740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195746,-0.002740,0.003500,0.249976,0,0);}
.m60_c00463{transform:matrix(0.195823,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195823,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195823,-0.002154,0.002750,0.249985,0,0);}
.meb_c00463{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);}
.m9b_c00463{transform:matrix(0.196672,-0.004130,0.005249,0.249945,0,0);-ms-transform:matrix(0.196672,-0.004130,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196672,-0.004130,0.005249,0.249945,0,0);}
.med_c00463{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);}
.m13d_c00463{transform:matrix(0.197476,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197476,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197476,-0.002765,0.003500,0.249976,0,0);}
.m2e_c00463{transform:matrix(0.197668,-0.002965,0.003750,0.249972,0,0);-ms-transform:matrix(0.197668,-0.002965,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197668,-0.002965,0.003750,0.249972,0,0);}
.m9a_c00463{transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);-ms-transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197986,-0.004158,0.005249,0.249945,0,0);}
.m170_c00463{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);}
.m15a_c00463{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);}
.m76_c00463{transform:matrix(0.198641,-0.002384,0.003000,0.249982,0,0);-ms-transform:matrix(0.198641,-0.002384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198641,-0.002384,0.003000,0.249982,0,0);}
.m69_c00463{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);}
.m9d_c00463{transform:matrix(0.198881,-0.004177,0.005249,0.249945,0,0);-ms-transform:matrix(0.198881,-0.004177,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198881,-0.004177,0.005249,0.249945,0,0);}
.m131_c00463{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_c00463{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);}
.m66_c00463{transform:matrix(0.198958,-0.002189,0.002750,0.249985,0,0);-ms-transform:matrix(0.198958,-0.002189,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198958,-0.002189,0.002750,0.249985,0,0);}
.m155_c00463{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);}
.m47_c00463{transform:matrix(0.199238,-0.002989,0.003750,0.249972,0,0);-ms-transform:matrix(0.199238,-0.002989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199238,-0.002989,0.003750,0.249972,0,0);}
.m13e_c00463{transform:matrix(0.199245,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199245,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199245,-0.002789,0.003500,0.249976,0,0);}
.m92_c00463{transform:matrix(0.199816,-0.004196,0.005249,0.249945,0,0);-ms-transform:matrix(0.199816,-0.004196,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199816,-0.004196,0.005249,0.249945,0,0);}
.m168_c00463{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);}
.mbd_c00463{transform:matrix(0.200240,-0.002803,0.003500,0.249976,0,0);-ms-transform:matrix(0.200240,-0.002803,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200240,-0.002803,0.003500,0.249976,0,0);}
.mb7_c00463{transform:matrix(0.200465,-0.002807,0.003500,0.249976,0,0);-ms-transform:matrix(0.200465,-0.002807,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200465,-0.002807,0.003500,0.249976,0,0);}
.m33_c00463{transform:matrix(0.200467,-0.003007,0.003750,0.249972,0,0);-ms-transform:matrix(0.200467,-0.003007,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200467,-0.003007,0.003750,0.249972,0,0);}
.m108_c00463{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);}
.m6c_c00463{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);}
.m43_c00463{transform:matrix(0.201367,-0.003021,0.003750,0.249972,0,0);-ms-transform:matrix(0.201367,-0.003021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201367,-0.003021,0.003750,0.249972,0,0);}
.m4a_c00463{transform:matrix(0.201849,-0.003230,0.003999,0.249968,0,0);-ms-transform:matrix(0.201849,-0.003230,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201849,-0.003230,0.003999,0.249968,0,0);}
.m129_c00463{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);}
.m5e_c00463{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);}
.m17b_c00463{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);}
.m89_c00463{transform:matrix(0.202850,-0.004260,0.005249,0.249945,0,0);-ms-transform:matrix(0.202850,-0.004260,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202850,-0.004260,0.005249,0.249945,0,0);}
.m105_c00463{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);}
.m14c_c00463{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);}
.m151_c00463{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);}
.m1e_c00463{transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);-ms-transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203417,-0.003051,0.003750,0.249972,0,0);}
.ma2_c00463{transform:matrix(0.203901,-0.003466,0.004249,0.249964,0,0);-ms-transform:matrix(0.203901,-0.003466,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203901,-0.003466,0.004249,0.249964,0,0);}
.m124_c00463{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);}
.mfc_c00463{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);}
.m147_c00463{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{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);}
.ma5_c00463{transform:matrix(0.205325,-0.003491,0.004249,0.249964,0,0);-ms-transform:matrix(0.205325,-0.003491,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205325,-0.003491,0.004249,0.249964,0,0);}
.m96_c00463{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);}
.m3f_c00463{transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206212,-0.003093,0.003750,0.249972,0,0);}
.m172_c00463{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);}
.m135_c00463{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);}
.m37_c00463{transform:matrix(0.206927,-0.003104,0.003750,0.249972,0,0);-ms-transform:matrix(0.206927,-0.003104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206927,-0.003104,0.003750,0.249972,0,0);}
.m4b_c00463{transform:matrix(0.207118,-0.003314,0.003999,0.249968,0,0);-ms-transform:matrix(0.207118,-0.003314,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207118,-0.003314,0.003999,0.249968,0,0);}
.me0_c00463{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);}
.m162_c00463{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);}
.m3e_c00463{transform:matrix(0.207342,-0.003110,0.003750,0.249972,0,0);-ms-transform:matrix(0.207342,-0.003110,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207342,-0.003110,0.003750,0.249972,0,0);}
.mb9_c00463{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);}
.md4_c00463{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);}
.m5d_c00463{transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207722,-0.002285,0.002750,0.249985,0,0);}
.mb4_c00463{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);}
.m98_c00463{transform:matrix(0.207784,-0.004363,0.005249,0.249945,0,0);-ms-transform:matrix(0.207784,-0.004363,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207784,-0.004363,0.005249,0.249945,0,0);}
.mf3_c00463{transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);}
.m38_c00463{transform:matrix(0.208817,-0.003132,0.003750,0.249972,0,0);-ms-transform:matrix(0.208817,-0.003132,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208817,-0.003132,0.003750,0.249972,0,0);}
.m16_c00463{transform:matrix(0.209001,-0.003762,0.004499,0.249960,0,0);-ms-transform:matrix(0.209001,-0.003762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209001,-0.003762,0.004499,0.249960,0,0);}
.me7_c00463{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);}
.m141_c00463{transform:matrix(0.209279,-0.002930,0.003500,0.249976,0,0);-ms-transform:matrix(0.209279,-0.002930,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209279,-0.002930,0.003500,0.249976,0,0);}
.ma9_c00463{transform:matrix(0.209380,-0.003559,0.004249,0.249964,0,0);-ms-transform:matrix(0.209380,-0.003559,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209380,-0.003559,0.004249,0.249964,0,0);}
.m51_c00463{transform:matrix(0.209563,-0.003353,0.003999,0.249968,0,0);-ms-transform:matrix(0.209563,-0.003353,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209563,-0.003353,0.003999,0.249968,0,0);}
.m10b_c00463{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);}
.m61_c00463{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);}
.m5a_c00463{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);}
.m1f_c00463{transform:matrix(0.210591,-0.003159,0.003750,0.249972,0,0);-ms-transform:matrix(0.210591,-0.003159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210591,-0.003159,0.003750,0.249972,0,0);}
.m46_c00463{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);}
.m3a_c00463{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);}
.mf6_c00463{transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211090,0.000000,0.000000,0.250000,0,0);}
.m14e_c00463{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);}
.m179_c00463{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);}
.me6_c00463{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);}
.mb8_c00463{transform:matrix(0.211679,-0.002964,0.003500,0.249976,0,0);-ms-transform:matrix(0.211679,-0.002964,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211679,-0.002964,0.003500,0.249976,0,0);}
.m6f_c00463{transform:matrix(0.211700,-0.002540,0.003000,0.249982,0,0);-ms-transform:matrix(0.211700,-0.002540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211700,-0.002540,0.003000,0.249982,0,0);}
.m34_c00463{transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-ms-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211751,-0.003176,0.003750,0.249972,0,0);}
.m140_c00463{transform:matrix(0.211774,-0.002965,0.003500,0.249976,0,0);-ms-transform:matrix(0.211774,-0.002965,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211774,-0.002965,0.003500,0.249976,0,0);}
.md7_c00463{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);}
.m86_c00463{transform:matrix(0.212673,-0.004466,0.005249,0.249945,0,0);-ms-transform:matrix(0.212673,-0.004466,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212673,-0.004466,0.005249,0.249945,0,0);}
.m80_c00463{transform:matrix(0.212693,-0.003403,0.003999,0.249968,0,0);-ms-transform:matrix(0.212693,-0.003403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212693,-0.003403,0.003999,0.249968,0,0);}
.m13_c00463{transform:matrix(0.212706,-0.003829,0.004499,0.249960,0,0);-ms-transform:matrix(0.212706,-0.003829,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212706,-0.003829,0.004499,0.249960,0,0);}
.m12e_c00463{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_c00463{transform:matrix(0.213262,-0.002346,0.002750,0.249985,0,0);-ms-transform:matrix(0.213262,-0.002346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213262,-0.002346,0.002750,0.249985,0,0);}
.m6a_c00463{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);}
.mbc_c00463{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);}
.m103_c00463{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);}
.m52_c00463{transform:matrix(0.213898,-0.003422,0.003999,0.249968,0,0);-ms-transform:matrix(0.213898,-0.003422,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213898,-0.003422,0.003999,0.249968,0,0);}
.m137_c00463{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);}
.m106_c00463{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);}
.m10d_c00463{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);}
.m13a_c00463{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);}
.mbb_c00463{transform:matrix(0.215269,-0.003014,0.003500,0.249976,0,0);-ms-transform:matrix(0.215269,-0.003014,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215269,-0.003014,0.003500,0.249976,0,0);}
.m81_c00463{transform:matrix(0.215292,-0.003445,0.003999,0.249968,0,0);-ms-transform:matrix(0.215292,-0.003445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215292,-0.003445,0.003999,0.249968,0,0);}
.mc5_c00463{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);}
.m4c_c00463{transform:matrix(0.216162,-0.003459,0.003999,0.249968,0,0);-ms-transform:matrix(0.216162,-0.003459,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216162,-0.003459,0.003999,0.249968,0,0);}
.m55_c00463{transform:matrix(0.216377,-0.003462,0.003999,0.249968,0,0);-ms-transform:matrix(0.216377,-0.003462,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216377,-0.003462,0.003999,0.249968,0,0);}
.m15b_c00463{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);}
.ma4_c00463{transform:matrix(0.217834,-0.003703,0.004249,0.249964,0,0);-ms-transform:matrix(0.217834,-0.003703,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217834,-0.003703,0.004249,0.249964,0,0);}
.m173_c00463{transform:matrix(0.217940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217940,0.000000,0.000000,0.250000,0,0);}
.m62_c00463{transform:matrix(0.218187,-0.002400,0.002750,0.249985,0,0);-ms-transform:matrix(0.218187,-0.002400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218187,-0.002400,0.002750,0.249985,0,0);}
.m3d_c00463{transform:matrix(0.218420,-0.003276,0.003750,0.249972,0,0);-ms-transform:matrix(0.218420,-0.003276,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218420,-0.003276,0.003750,0.249972,0,0);}
.m31_c00463{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);}
.m133_c00463{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);}
.m161_c00463{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);}
.m104_c00463{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);}
.m14b_c00463{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);}
.md1_c00463{transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);}
.m16d_c00463{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00463{transform:matrix(0.221758,-0.003105,0.003500,0.249976,0,0);-ms-transform:matrix(0.221758,-0.003105,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221758,-0.003105,0.003500,0.249976,0,0);}
.m145_c00463{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);}
.m11f_c00463{transform:matrix(0.222078,-0.003109,0.003500,0.249976,0,0);-ms-transform:matrix(0.222078,-0.003109,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222078,-0.003109,0.003500,0.249976,0,0);}
.mf4_c00463{transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m13b_c00463{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);}
.md0_c00463{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);}
.ma3_c00463{transform:matrix(0.223118,-0.003793,0.004249,0.249964,0,0);-ms-transform:matrix(0.223118,-0.003793,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223118,-0.003793,0.004249,0.249964,0,0);}
.m8f_c00463{transform:matrix(0.223516,-0.004694,0.005249,0.249945,0,0);-ms-transform:matrix(0.223516,-0.004694,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223516,-0.004694,0.005249,0.249945,0,0);}
.m153_c00463{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);}
.m159_c00463{transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);}
.m152_c00463{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);}
.mb5_c00463{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);}
.m109_c00463{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);}
.m8e_c00463{transform:matrix(0.225600,-0.004738,0.005249,0.249945,0,0);-ms-transform:matrix(0.225600,-0.004738,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225600,-0.004738,0.005249,0.249945,0,0);}
.m114_c00463{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);}
.m154_c00463{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);}
.mdd_c00463{transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);}
.m158_c00463{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);}
.mc3_c00463{transform:matrix(0.228303,-0.003196,0.003500,0.249976,0,0);-ms-transform:matrix(0.228303,-0.003196,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228303,-0.003196,0.003500,0.249976,0,0);}
.m149_c00463{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);}
.ma1_c00463{transform:matrix(0.228867,-0.003891,0.004249,0.249964,0,0);-ms-transform:matrix(0.228867,-0.003891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228867,-0.003891,0.004249,0.249964,0,0);}
.m4f_c00463{transform:matrix(0.229781,-0.003676,0.003999,0.249968,0,0);-ms-transform:matrix(0.229781,-0.003676,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229781,-0.003676,0.003999,0.249968,0,0);}
.m63_c00463{transform:matrix(0.230391,-0.002534,0.002750,0.249985,0,0);-ms-transform:matrix(0.230391,-0.002534,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230391,-0.002534,0.002750,0.249985,0,0);}
.ma_c00463{transform:matrix(0.231349,-0.004627,0.004999,0.249950,0,0);-ms-transform:matrix(0.231349,-0.004627,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231349,-0.004627,0.004999,0.249950,0,0);}
.m174_c00463{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);}
.ma0_c00463{transform:matrix(0.232261,-0.003948,0.004249,0.249964,0,0);-ms-transform:matrix(0.232261,-0.003948,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232261,-0.003948,0.004249,0.249964,0,0);}
.mf1_c00463{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);}
.m11d_c00463{transform:matrix(0.232567,-0.003256,0.003500,0.249976,0,0);-ms-transform:matrix(0.232567,-0.003256,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232567,-0.003256,0.003500,0.249976,0,0);}
.m143_c00463{transform:matrix(0.232657,-0.003257,0.003500,0.249976,0,0);-ms-transform:matrix(0.232657,-0.003257,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232657,-0.003257,0.003500,0.249976,0,0);}
.m115_c00463{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);}
.m128_c00463{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);}
.m25_c00463{transform:matrix(0.233634,-0.003505,0.003750,0.249972,0,0);-ms-transform:matrix(0.233634,-0.003505,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233634,-0.003505,0.003750,0.249972,0,0);}
.m107_c00463{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);}
.m5_c00463{transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234385,0.000000,0.000000,0.250000,0,0);}
.m9e_c00463{transform:matrix(0.234586,-0.003988,0.004249,0.249964,0,0);-ms-transform:matrix(0.234586,-0.003988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234586,-0.003988,0.004249,0.249964,0,0);}
.mf0_c00463{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);}
.m82_c00463{transform:matrix(0.234975,-0.003760,0.003999,0.249968,0,0);-ms-transform:matrix(0.234975,-0.003760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234975,-0.003760,0.003999,0.249968,0,0);}
.m30_c00463{transform:matrix(0.235394,-0.003531,0.003750,0.249972,0,0);-ms-transform:matrix(0.235394,-0.003531,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235394,-0.003531,0.003750,0.249972,0,0);}
.m125_c00463{transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235830,0.000000,0.000000,0.250000,0,0);}
.mee_c00463{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);}
.m4e_c00463{transform:matrix(0.237305,-0.003797,0.003999,0.249968,0,0);-ms-transform:matrix(0.237305,-0.003797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237305,-0.003797,0.003999,0.249968,0,0);}
.m112_c00463{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);}
.m12f_c00463{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);}
.m119_c00463{transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238635,0.000000,0.000000,0.250000,0,0);}
.m113_c00463{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);}
.m59_c00463{transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);-ms-transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);}
.m11b_c00463{transform:matrix(0.241951,-0.003387,0.003500,0.249976,0,0);-ms-transform:matrix(0.241951,-0.003387,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241951,-0.003387,0.003500,0.249976,0,0);}
.m11e_c00463{transform:matrix(0.242166,-0.003390,0.003500,0.249976,0,0);-ms-transform:matrix(0.242166,-0.003390,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242166,-0.003390,0.003500,0.249976,0,0);}
.m157_c00463{transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{transform:matrix(0.244576,-0.004892,0.004999,0.249950,0,0);-ms-transform:matrix(0.244576,-0.004892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244576,-0.004892,0.004999,0.249950,0,0);}
.m58_c00463{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);}
.m118_c00463{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);}
.mfe_c00463{transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);}
.m5f_c00463{transform:matrix(0.247305,-0.002720,0.002750,0.249985,0,0);-ms-transform:matrix(0.247305,-0.002720,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247305,-0.002720,0.002750,0.249985,0,0);}
.mbe_c00463{transform:matrix(0.247336,-0.003463,0.003500,0.249976,0,0);-ms-transform:matrix(0.247336,-0.003463,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247336,-0.003463,0.003500,0.249976,0,0);}
.m94_c00463{transform:matrix(0.247395,-0.005195,0.005249,0.249945,0,0);-ms-transform:matrix(0.247395,-0.005195,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247395,-0.005195,0.005249,0.249945,0,0);}
.m57_c00463{transform:matrix(0.248208,-0.003971,0.003999,0.249968,0,0);-ms-transform:matrix(0.248208,-0.003971,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248208,-0.003971,0.003999,0.249968,0,0);}
.m11c_c00463{transform:matrix(0.248851,-0.003484,0.003500,0.249976,0,0);-ms-transform:matrix(0.248851,-0.003484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248851,-0.003484,0.003500,0.249976,0,0);}
.mef_c00463{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);}
.m93_c00463{transform:matrix(0.252599,-0.005305,0.005249,0.249945,0,0);-ms-transform:matrix(0.252599,-0.005305,0.005249,0.249945,0,0);-webkit-transform:matrix(0.252599,-0.005305,0.005249,0.249945,0,0);}
.m84_c00463{transform:matrix(0.253418,-0.004055,0.003999,0.249968,0,0);-ms-transform:matrix(0.253418,-0.004055,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253418,-0.004055,0.003999,0.249968,0,0);}
.m16f_c00463{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);}
.m32_c00463{transform:matrix(0.254091,-0.003811,0.003750,0.249972,0,0);-ms-transform:matrix(0.254091,-0.003811,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254091,-0.003811,0.003750,0.249972,0,0);}
.m120_c00463{transform:matrix(0.254250,-0.003560,0.003500,0.249976,0,0);-ms-transform:matrix(0.254250,-0.003560,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254250,-0.003560,0.003500,0.249976,0,0);}
.mcf_c00463{transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00463{transform:matrix(0.255417,-0.004087,0.003999,0.249968,0,0);-ms-transform:matrix(0.255417,-0.004087,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255417,-0.004087,0.003999,0.249968,0,0);}
.mdb_c00463{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);}
.ma6_c00463{transform:matrix(0.258088,-0.004387,0.004249,0.249964,0,0);-ms-transform:matrix(0.258088,-0.004387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258088,-0.004387,0.004249,0.249964,0,0);}
.m49_c00463{transform:matrix(0.258712,-0.004139,0.003999,0.249968,0,0);-ms-transform:matrix(0.258712,-0.004139,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258712,-0.004139,0.003999,0.249968,0,0);}
.me3_c00463{transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);}
.m16a_c00463{transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);}
.mda_c00463{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);}
.m64_c00463{transform:matrix(0.264369,-0.002908,0.002750,0.249985,0,0);-ms-transform:matrix(0.264369,-0.002908,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264369,-0.002908,0.002750,0.249985,0,0);}
.m54_c00463{transform:matrix(0.264681,-0.004235,0.003999,0.249968,0,0);-ms-transform:matrix(0.264681,-0.004235,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264681,-0.004235,0.003999,0.249968,0,0);}
.m14d_c00463{transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);}
.mb6_c00463{transform:matrix(0.265694,-0.003720,0.003500,0.249976,0,0);-ms-transform:matrix(0.265694,-0.003720,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265694,-0.003720,0.003500,0.249976,0,0);}
.mdc_c00463{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);}
.mec_c00463{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.m180_c00463{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);}
.m7d_c00463{transform:matrix(0.269161,-0.003230,0.003000,0.249982,0,0);-ms-transform:matrix(0.269161,-0.003230,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269161,-0.003230,0.003000,0.249982,0,0);}
.m10f_c00463{transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269430,0.000000,0.000000,0.250000,0,0);}
.m8b_c00463{transform:matrix(0.272245,-0.005717,0.005249,0.249945,0,0);-ms-transform:matrix(0.272245,-0.005717,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272245,-0.005717,0.005249,0.249945,0,0);}
.m88_c00463{transform:matrix(0.272675,-0.005726,0.005249,0.249945,0,0);-ms-transform:matrix(0.272675,-0.005726,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272675,-0.005726,0.005249,0.249945,0,0);}
.mf8_c00463{transform:matrix(0.273690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273690,0.000000,0.000000,0.250000,0,0);}
.m85_c00463{transform:matrix(0.274885,-0.004398,0.003999,0.249968,0,0);-ms-transform:matrix(0.274885,-0.004398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274885,-0.004398,0.003999,0.249968,0,0);}
.m169_c00463{transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276265,0.000000,0.000000,0.250000,0,0);}
.m17e_c00463{transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);}
.m16e_c00463{transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);}
.m15f_c00463{transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280330,0.000000,0.000000,0.250000,0,0);}
.m148_c00463{transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280770,0.000000,0.000000,0.250000,0,0);}
.m163_c00463{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00463{transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);}
.mc2_c00463{transform:matrix(0.288142,-0.004034,0.003500,0.249976,0,0);-ms-transform:matrix(0.288142,-0.004034,0.003500,0.249976,0,0);-webkit-transform:matrix(0.288142,-0.004034,0.003500,0.249976,0,0);}
.m17c_c00463{transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291340,0.000000,0.000000,0.250000,0,0);}
.m138_c00463{transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);}
.m8c_c00463{transform:matrix(0.304098,-0.006386,0.005249,0.249945,0,0);-ms-transform:matrix(0.304098,-0.006386,0.005249,0.249945,0,0);-webkit-transform:matrix(0.304098,-0.006386,0.005249,0.249945,0,0);}
.m4_c00463{transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);}
.m7f_c00463{transform:matrix(0.308001,-0.004928,0.003999,0.249968,0,0);-ms-transform:matrix(0.308001,-0.004928,0.003999,0.249968,0,0);-webkit-transform:matrix(0.308001,-0.004928,0.003999,0.249968,0,0);}
.m16c_c00463{transform:matrix(0.309450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309450,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);}
.m73_c00463{transform:matrix(0.315532,-0.003786,0.003000,0.249982,0,0);-ms-transform:matrix(0.315532,-0.003786,0.003000,0.249982,0,0);-webkit-transform:matrix(0.315532,-0.003786,0.003000,0.249982,0,0);}
.m134_c00463{transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);}
.mde_c00463{transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318625,0.000000,0.000000,0.250000,0,0);}
.mce_c00463{transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);}
.mad_c00463{transform:matrix(0.332207,-0.004651,0.003500,0.249976,0,0);-ms-transform:matrix(0.332207,-0.004651,0.003500,0.249976,0,0);-webkit-transform:matrix(0.332207,-0.004651,0.003500,0.249976,0,0);}
.m156_c00463{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);}
.m8_c00463{transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);}
.m16b_c00463{transform:matrix(0.349975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349975,0.000000,0.000000,0.250000,0,0);}
.m95_c00463{transform:matrix(0.350118,-0.007352,0.005249,0.249945,0,0);-ms-transform:matrix(0.350118,-0.007352,0.005249,0.249945,0,0);-webkit-transform:matrix(0.350118,-0.007352,0.005249,0.249945,0,0);}
.m164_c00463{transform:matrix(0.369020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369020,0.000000,0.000000,0.250000,0,0);}
.m165_c00463{transform:matrix(0.369845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369845,0.000000,0.000000,0.250000,0,0);}
.m10a_c00463{transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);}
.m15c_c00463{transform:matrix(0.407405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407405,0.000000,0.000000,0.250000,0,0);}
.m167_c00463{transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419000,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);}
.m17d_c00463{transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);}
.m166_c00463{transform:matrix(0.531115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531115,0.000000,0.000000,0.250000,0,0);}
.mf7_c00463{transform:matrix(0.613005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613005,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.712550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712550,0.000000,0.000000,0.250000,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;}
.fc0_c00463{color:transparent;}
.fs28_c00463{font-size:22.050000px;}
.fsa_c00463{font-size:30.450000px;}
.fs27_c00463{font-size:34.650000px;}
.fs1_c00463{font-size:35.700000px;}
.fs12_c00463{font-size:44.106372px;}
.fs26_c00463{font-size:45.150000px;}
.fs13_c00463{font-size:45.156524px;}
.fs1c_c00463{font-size:46.200000px;}
.fs22_c00463{font-size:47.250000px;}
.fs23_c00463{font-size:48.300000px;}
.fs25_c00463{font-size:49.350000px;}
.fsf_c00463{font-size:49.356316px;}
.fs11_c00463{font-size:49.360880px;}
.fs1e_c00463{font-size:50.400000px;}
.fs16_c00463{font-size:50.404939px;}
.fs1f_c00463{font-size:51.450000px;}
.fs17_c00463{font-size:51.455042px;}
.fs10_c00463{font-size:51.461343px;}
.fs1a_c00463{font-size:52.500000px;}
.fs24_c00463{font-size:52.505145px;}
.fs14_c00463{font-size:52.507586px;}
.fs21_c00463{font-size:53.550000px;}
.fs1d_c00463{font-size:54.600000px;}
.fs15_c00463{font-size:54.605351px;}
.fs1b_c00463{font-size:55.650000px;}
.fs19_c00463{font-size:57.750000px;}
.fs18_c00463{font-size:57.755659px;}
.fs20_c00463{font-size:60.900000px;}
.fs5_c00463{font-size:66.157441px;}
.fsb_c00463{font-size:67.204065px;}
.fs8_c00463{font-size:67.208601px;}
.fs6_c00463{font-size:68.257678px;}
.fsd_c00463{font-size:70.355065px;}
.fs7_c00463{font-size:70.357914px;}
.fs0_c00463{font-size:71.400000px;}
.fsc_c00463{font-size:71.404320px;}
.fs3_c00463{font-size:71.411566px;}
.fs4_c00463{font-size:72.458150px;}
.fse_c00463{font-size:73.505292px;}
.fs9_c00463{font-size:74.559542px;}
.fs2_c00463{font-size:74.564909px;}
.y0_c00463{bottom:0.000000px;}
.yf7_c00463{bottom:130.680000px;}
.yc8_c00463{bottom:169.542000px;}
.yf6_c00463{bottom:170.511000px;}
.yc7_c00463{bottom:187.786500px;}
.yf5_c00463{bottom:188.575500px;}
.yd5_c00463{bottom:205.314000px;}
.yf4_c00463{bottom:206.157000px;}
.ycb_c00463{bottom:222.481500px;}
.ycc_c00463{bottom:222.762000px;}
.ycd_c00463{bottom:222.940500px;}
.yce_c00463{bottom:223.459500px;}
.ycf_c00463{bottom:223.630500px;}
.yd0_c00463{bottom:224.178000px;}
.yd1_c00463{bottom:225.006000px;}
.yf3_c00463{bottom:225.115500px;}
.yd2_c00463{bottom:225.322500px;}
.yd3_c00463{bottom:225.498000px;}
.yd4_c00463{bottom:225.811500px;}
.yca_c00463{bottom:241.086000px;}
.yc6_c00463{bottom:259.060500px;}
.yc9_c00463{bottom:259.354500px;}
.yf2_c00463{bottom:259.924500px;}
.yc5_c00463{bottom:277.339500px;}
.yf1_c00463{bottom:278.215500px;}
.yc4_c00463{bottom:295.165500px;}
.yf0_c00463{bottom:295.669500px;}
.yc3_c00463{bottom:312.771000px;}
.yef_c00463{bottom:314.673000px;}
.yc1_c00463{bottom:331.029327px;}
.ybd_c00463{bottom:331.029537px;}
.yc2_c00463{bottom:331.029585px;}
.ybf_c00463{bottom:331.029690px;}
.ybe_c00463{bottom:331.029732px;}
.yc0_c00463{bottom:331.029849px;}
.yee_c00463{bottom:332.187000px;}
.yb7_c00463{bottom:348.852180px;}
.yb6_c00463{bottom:348.852243px;}
.yb8_c00463{bottom:348.852537px;}
.yb9_c00463{bottom:348.852735px;}
.yba_c00463{bottom:348.853032px;}
.ybc_c00463{bottom:348.853089px;}
.ybb_c00463{bottom:348.853590px;}
.yed_c00463{bottom:350.172000px;}
.yb1_c00463{bottom:367.052787px;}
.yb2_c00463{bottom:367.053066px;}
.yb5_c00463{bottom:367.053159px;}
.yb0_c00463{bottom:367.053447px;}
.yb3_c00463{bottom:367.053564px;}
.yb4_c00463{bottom:367.053642px;}
.yaf_c00463{bottom:367.053792px;}
.yec_c00463{bottom:368.664000px;}
.ya7_c00463{bottom:383.671500px;}
.ya8_c00463{bottom:383.963316px;}
.ya9_c00463{bottom:384.091143px;}
.yaa_c00463{bottom:384.873582px;}
.ye4_c00463{bottom:385.021500px;}
.yab_c00463{bottom:385.187343px;}
.ye5_c00463{bottom:385.444440px;}
.yac_c00463{bottom:385.583781px;}
.ye6_c00463{bottom:385.777794px;}
.yad_c00463{bottom:385.917072px;}
.yae_c00463{bottom:386.378295px;}
.ye7_c00463{bottom:386.526276px;}
.ye8_c00463{bottom:386.650365px;}
.ye9_c00463{bottom:386.976159px;}
.yea_c00463{bottom:387.339102px;}
.yeb_c00463{bottom:388.234563px;}
.ya1_c00463{bottom:401.223000px;}
.ya2_c00463{bottom:401.603919px;}
.ya3_c00463{bottom:402.181698px;}
.ya4_c00463{bottom:402.742290px;}
.ya5_c00463{bottom:402.879964px;}
.ya6_c00463{bottom:404.481721px;}
.ye3_c00463{bottom:404.674500px;}
.ya0_c00463{bottom:419.447198px;}
.ye2_c00463{bottom:423.189000px;}
.y99_c00463{bottom:437.403000px;}
.y9a_c00463{bottom:438.367155px;}
.y9b_c00463{bottom:438.858362px;}
.y9c_c00463{bottom:439.877188px;}
.y9d_c00463{bottom:440.189564px;}
.y9e_c00463{bottom:440.671284px;}
.y9f_c00463{bottom:440.932251px;}
.ye1_c00463{bottom:441.777000px;}
.y91_c00463{bottom:455.214167px;}
.y92_c00463{bottom:455.768673px;}
.y93_c00463{bottom:456.262507px;}
.y94_c00463{bottom:456.545533px;}
.y95_c00463{bottom:456.901773px;}
.y96_c00463{bottom:457.359924px;}
.y97_c00463{bottom:458.059200px;}
.y98_c00463{bottom:458.219346px;}
.ye0_c00463{bottom:459.634500px;}
.y89_c00463{bottom:472.769040px;}
.y8a_c00463{bottom:473.619640px;}
.y8b_c00463{bottom:473.965462px;}
.y8c_c00463{bottom:474.355192px;}
.y8d_c00463{bottom:474.801738px;}
.y8e_c00463{bottom:475.346790px;}
.y8f_c00463{bottom:475.992050px;}
.yd8_c00463{bottom:476.011500px;}
.yd9_c00463{bottom:476.099217px;}
.y90_c00463{bottom:476.435559px;}
.yda_c00463{bottom:476.594292px;}
.ydb_c00463{bottom:476.907150px;}
.ydc_c00463{bottom:477.210642px;}
.ydd_c00463{bottom:477.830247px;}
.yde_c00463{bottom:478.748808px;}
.ydf_c00463{bottom:479.039889px;}
.y81_c00463{bottom:490.324500px;}
.y82_c00463{bottom:490.732047px;}
.y83_c00463{bottom:491.328090px;}
.y84_c00463{bottom:491.924858px;}
.y85_c00463{bottom:493.041186px;}
.y86_c00463{bottom:493.063425px;}
.y87_c00463{bottom:493.931092px;}
.y88_c00463{bottom:494.803233px;}
.yd7_c00463{bottom:496.267500px;}
.y78_c00463{bottom:508.953000px;}
.y79_c00463{bottom:509.286024px;}
.y7a_c00463{bottom:509.467776px;}
.y7b_c00463{bottom:509.925360px;}
.y7c_c00463{bottom:510.508008px;}
.y7d_c00463{bottom:510.996600px;}
.y7e_c00463{bottom:511.597200px;}
.y7f_c00463{bottom:512.059320px;}
.y80_c00463{bottom:512.219352px;}
.yd6_c00463{bottom:514.603500px;}
.y6e_c00463{bottom:560.251500px;}
.y6f_c00463{bottom:561.012612px;}
.y70_c00463{bottom:561.556590px;}
.y71_c00463{bottom:561.965694px;}
.y72_c00463{bottom:562.522776px;}
.y73_c00463{bottom:562.918344px;}
.y74_c00463{bottom:563.229276px;}
.y75_c00463{bottom:563.692290px;}
.y76_c00463{bottom:564.052182px;}
.y77_c00463{bottom:564.414990px;}
.y66_c00463{bottom:584.011500px;}
.y67_c00463{bottom:584.513772px;}
.y68_c00463{bottom:584.908404px;}
.y69_c00463{bottom:585.206898px;}
.y6a_c00463{bottom:586.072374px;}
.y6b_c00463{bottom:586.503528px;}
.y6c_c00463{bottom:587.109372px;}
.y6d_c00463{bottom:587.747760px;}
.y5f_c00463{bottom:606.961581px;}
.y60_c00463{bottom:607.417874px;}
.y61_c00463{bottom:607.811545px;}
.y62_c00463{bottom:608.422723px;}
.y63_c00463{bottom:609.069204px;}
.y64_c00463{bottom:609.867055px;}
.y65_c00463{bottom:611.210693px;}
.y53_c00463{bottom:629.641500px;}
.y54_c00463{bottom:630.187419px;}
.y55_c00463{bottom:630.499813px;}
.y56_c00463{bottom:630.921619px;}
.y57_c00463{bottom:631.370749px;}
.y58_c00463{bottom:631.732677px;}
.y59_c00463{bottom:632.145424px;}
.y5a_c00463{bottom:632.377167px;}
.y5b_c00463{bottom:632.784354px;}
.y5c_c00463{bottom:633.095857px;}
.y5d_c00463{bottom:633.569655px;}
.y5e_c00463{bottom:634.205416px;}
.y4b_c00463{bottom:652.318980px;}
.y4c_c00463{bottom:653.211312px;}
.y4d_c00463{bottom:653.491188px;}
.y4e_c00463{bottom:654.210084px;}
.y4f_c00463{bottom:654.889512px;}
.y50_c00463{bottom:655.293276px;}
.y51_c00463{bottom:656.945856px;}
.y52_c00463{bottom:668.250000px;}
.y43_c00463{bottom:674.193000px;}
.y44_c00463{bottom:674.802312px;}
.y45_c00463{bottom:675.466944px;}
.y46_c00463{bottom:676.046520px;}
.y47_c00463{bottom:676.483536px;}
.y48_c00463{bottom:677.127624px;}
.y49_c00463{bottom:677.462880px;}
.y4a_c00463{bottom:678.185400px;}
.y39_c00463{bottom:697.948170px;}
.y3a_c00463{bottom:698.285138px;}
.y3b_c00463{bottom:698.801348px;}
.y3c_c00463{bottom:699.202088px;}
.y3d_c00463{bottom:699.672113px;}
.y3e_c00463{bottom:700.437435px;}
.y3f_c00463{bottom:701.078730px;}
.y40_c00463{bottom:701.479740px;}
.y41_c00463{bottom:701.780820px;}
.y42_c00463{bottom:702.462353px;}
.y31_c00463{bottom:720.090360px;}
.y32_c00463{bottom:720.567885px;}
.y33_c00463{bottom:721.827413px;}
.y34_c00463{bottom:722.224463px;}
.y35_c00463{bottom:722.866028px;}
.y36_c00463{bottom:723.453323px;}
.y37_c00463{bottom:723.961628px;}
.y38_c00463{bottom:724.132665px;}
.y27_c00463{bottom:743.313000px;}
.y28_c00463{bottom:743.857028px;}
.y29_c00463{bottom:744.896010px;}
.y2a_c00463{bottom:744.954173px;}
.y2b_c00463{bottom:746.237460px;}
.y2c_c00463{bottom:746.464170px;}
.y2d_c00463{bottom:747.209595px;}
.y2e_c00463{bottom:747.775740px;}
.y2f_c00463{bottom:748.282958px;}
.y30_c00463{bottom:748.697453px;}
.y1f_c00463{bottom:765.720307px;}
.y20_c00463{bottom:766.195808px;}
.y21_c00463{bottom:766.903102px;}
.y22_c00463{bottom:767.719912px;}
.y23_c00463{bottom:767.979907px;}
.y24_c00463{bottom:768.709582px;}
.y25_c00463{bottom:770.108670px;}
.y26_c00463{bottom:770.760697px;}
.y15_c00463{bottom:788.403000px;}
.y16_c00463{bottom:788.792115px;}
.y17_c00463{bottom:789.179723px;}
.y18_c00463{bottom:789.787830px;}
.y19_c00463{bottom:790.217085px;}
.y1a_c00463{bottom:791.202157px;}
.y1b_c00463{bottom:791.434673px;}
.y1c_c00463{bottom:791.984010px;}
.y1d_c00463{bottom:792.696000px;}
.y1e_c00463{bottom:793.170457px;}
.yd_c00463{bottom:811.084500px;}
.ye_c00463{bottom:811.494171px;}
.yf_c00463{bottom:812.416626px;}
.y10_c00463{bottom:813.768003px;}
.y11_c00463{bottom:814.437360px;}
.y12_c00463{bottom:815.030712px;}
.y13_c00463{bottom:815.484096px;}
.y14_c00463{bottom:816.455421px;}
.y3_c00463{bottom:832.957500px;}
.y4_c00463{bottom:833.528490px;}
.y5_c00463{bottom:833.917650px;}
.y6_c00463{bottom:834.555060px;}
.y7_c00463{bottom:835.499970px;}
.y8_c00463{bottom:836.256360px;}
.y9_c00463{bottom:837.291990px;}
.ya_c00463{bottom:837.779610px;}
.yb_c00463{bottom:838.484700px;}
.yc_c00463{bottom:839.162700px;}
.y2_c00463{bottom:929.832000px;}
.y1_c00463{bottom:943.129500px;}
.h2a_c00463{height:22.050000px;}
.hc_c00463{height:30.450000px;}
.h29_c00463{height:34.650000px;}
.h3_c00463{height:35.700000px;}
.h14_c00463{height:44.106372px;}
.h28_c00463{height:45.150000px;}
.h15_c00463{height:45.156524px;}
.h1e_c00463{height:46.200000px;}
.h24_c00463{height:47.250000px;}
.h25_c00463{height:48.300000px;}
.h27_c00463{height:49.350000px;}
.h11_c00463{height:49.356316px;}
.h13_c00463{height:49.360880px;}
.h20_c00463{height:50.400000px;}
.h18_c00463{height:50.404939px;}
.h21_c00463{height:51.450000px;}
.h19_c00463{height:51.455042px;}
.h12_c00463{height:51.461343px;}
.h1c_c00463{height:52.500000px;}
.h26_c00463{height:52.505145px;}
.h16_c00463{height:52.507586px;}
.h23_c00463{height:53.550000px;}
.h1f_c00463{height:54.600000px;}
.h17_c00463{height:54.605351px;}
.h1d_c00463{height:55.650000px;}
.h1b_c00463{height:57.750000px;}
.h1a_c00463{height:57.755659px;}
.h22_c00463{height:60.900000px;}
.h7_c00463{height:66.157441px;}
.hd_c00463{height:67.204065px;}
.ha_c00463{height:67.208601px;}
.h8_c00463{height:68.257678px;}
.hf_c00463{height:70.355065px;}
.h9_c00463{height:70.357914px;}
.h2_c00463{height:71.400000px;}
.he_c00463{height:71.404320px;}
.h5_c00463{height:71.411566px;}
.h6_c00463{height:72.458150px;}
.h10_c00463{height:73.505292px;}
.hb_c00463{height:74.559542px;}
.h4_c00463{height:74.564909px;}
.h0_c00463{height:1008.450000px;}
.h1_c00463{height:1008.750000px;}
.w1_c00463{width:689.250000px;}
.w0_c00463{width:689.550000px;}
.x0_c00463{left:0.000000px;}
.x7e_c00463{left:133.920000px;}
.x71_c00463{left:140.127378px;}
.x63_c00463{left:141.150000px;}
.x6_c00463{left:142.830000px;}
.x72_c00463{left:150.838500px;}
.x5f_c00463{left:153.802500px;}
.x1_c00463{left:157.410000px;}
.x64_c00463{left:160.557000px;}
.x74_c00463{left:161.923500px;}
.x2_c00463{left:167.130000px;}
.x7f_c00463{left:169.290000px;}
.x49_c00463{left:171.052500px;}
.x9_c00463{left:172.335000px;}
.x24_c00463{left:173.825183px;}
.x13_c00463{left:174.922500px;}
.x1b_c00463{left:175.965000px;}
.x29_c00463{left:177.045000px;}
.x78_c00463{left:181.444785px;}
.x80_c00463{left:183.330000px;}
.x60_c00463{left:185.976000px;}
.x67_c00463{left:187.551601px;}
.x3_c00463{left:188.730000px;}
.x7b_c00463{left:192.240000px;}
.x14_c00463{left:197.682000px;}
.xa_c00463{left:200.884500px;}
.x1c_c00463{left:201.906000px;}
.x25_c00463{left:203.524732px;}
.x68_c00463{left:206.734798px;}
.x50_c00463{left:208.289935px;}
.x4_c00463{left:209.790000px;}
.x3f_c00463{left:211.908000px;}
.x2a_c00463{left:213.313500px;}
.x61_c00463{left:214.575000px;}
.x7c_c00463{left:216.000000px;}
.x56_c00463{left:217.239000px;}
.xb_c00463{left:220.342500px;}
.x6d_c00463{left:226.714500px;}
.x1d_c00463{left:227.746500px;}
.x6a_c00463{left:229.661562px;}
.x7_c00463{left:234.360000px;}
.x51_c00463{left:236.441011px;}
.x79_c00463{left:238.420416px;}
.x37_c00463{left:240.983407px;}
.x26_c00463{left:247.777080px;}
.x15_c00463{left:248.929500px;}
.x57_c00463{left:250.125000px;}
.xc_c00463{left:252.213000px;}
.x40_c00463{left:253.447500px;}
.x5_c00463{left:258.120000px;}
.x85_c00463{left:259.200000px;}
.x7a_c00463{left:260.293200px;}
.x45_c00463{left:261.347544px;}
.x82_c00463{left:262.440000px;}
.x1e_c00463{left:268.287000px;}
.x65_c00463{left:270.516000px;}
.x38_c00463{left:271.800330px;}
.x58_c00463{left:274.999500px;}
.x75_c00463{left:277.671000px;}
.x52_c00463{left:280.137576px;}
.x62_c00463{left:281.527500px;}
.x2b_c00463{left:282.579000px;}
.x6b_c00463{left:283.948897px;}
.x2c_c00463{left:286.456500px;}
.x41_c00463{left:289.671000px;}
.x87_c00463{left:294.300000px;}
.x83_c00463{left:295.650000px;}
.x8_c00463{left:296.730000px;}
.xd_c00463{left:299.458500px;}
.x76_c00463{left:301.477500px;}
.x6e_c00463{left:305.020500px;}
.x88_c00463{left:306.180000px;}
.x39_c00463{left:307.936410px;}
.x33_c00463{left:309.824580px;}
.x46_c00463{left:312.655176px;}
.x27_c00463{left:315.063067px;}
.x42_c00463{left:316.984500px;}
.x5b_c00463{left:319.608000px;}
.x8f_c00463{left:321.295500px;}
.x16_c00463{left:324.006000px;}
.x89_c00463{left:325.350000px;}
.x53_c00463{left:326.361558px;}
.x4a_c00463{left:328.257000px;}
.x6c_c00463{left:330.610788px;}
.x86_c00463{left:332.100000px;}
.x6f_c00463{left:333.357000px;}
.x77_c00463{left:334.422000px;}
.x81_c00463{left:335.610000px;}
.xe_c00463{left:337.278000px;}
.x34_c00463{left:340.395503px;}
.x73_c00463{left:342.528000px;}
.x69_c00463{left:344.009961px;}
.x84_c00463{left:345.330000px;}
.x59_c00463{left:347.122500px;}
.x70_c00463{left:348.708000px;}
.x8a_c00463{left:351.540000px;}
.x66_c00463{left:354.423000px;}
.x43_c00463{left:357.240000px;}
.x7d_c00463{left:359.370000px;}
.x17_c00463{left:361.192500px;}
.x1f_c00463{left:362.575500px;}
.x90_c00463{left:363.955500px;}
.x3a_c00463{left:366.859687px;}
.x2d_c00463{left:372.009000px;}
.x20_c00463{left:378.076500px;}
.x54_c00463{left:383.346177px;}
.x2e_c00463{left:387.123000px;}
.xf_c00463{left:389.059500px;}
.x47_c00463{left:390.107172px;}
.x95_c00463{left:392.310000px;}
.x18_c00463{left:394.156500px;}
.x8b_c00463{left:395.298000px;}
.x4b_c00463{left:398.682000px;}
.xb8_c00463{left:412.020000px;}
.x10_c00463{left:413.440500px;}
.x21_c00463{left:414.699000px;}
.x3b_c00463{left:416.214172px;}
.x19_c00463{left:419.344500px;}
.xa7_c00463{left:420.390000px;}
.x44_c00463{left:423.351000px;}
.x5c_c00463{left:424.906500px;}
.x9a_c00463{left:425.947500px;}
.x8c_c00463{left:426.987000px;}
.xb5_c00463{left:428.220000px;}
.x91_c00463{left:429.570000px;}
.x5a_c00463{left:433.539000px;}
.x35_c00463{left:434.922337px;}
.x2f_c00463{left:436.818000px;}
.xbe_c00463{left:439.830000px;}
.xb0_c00463{left:441.180000px;}
.xaa_c00463{left:443.340000px;}
.x8d_c00463{left:444.540000px;}
.xb6_c00463{left:446.040000px;}
.x3c_c00463{left:447.049095px;}
.x11_c00463{left:448.695000px;}
.xbf_c00463{left:455.490000px;}
.x4c_c00463{left:456.766500px;}
.xa8_c00463{left:460.080000px;}
.x22_c00463{left:462.165000px;}
.x5d_c00463{left:463.491000px;}
.x3d_c00463{left:470.221792px;}
.xb1_c00463{left:472.230000px;}
.x1a_c00463{left:473.307000px;}
.x30_c00463{left:474.561000px;}
.x8e_c00463{left:475.864500px;}
.xc1_c00463{left:477.630000px;}
.x55_c00463{left:479.310009px;}
.x12_c00463{left:482.595000px;}
.x4d_c00463{left:485.085000px;}
.x36_c00463{left:487.113390px;}
.x28_c00463{left:488.946480px;}
.xab_c00463{left:490.860000px;}
.x23_c00463{left:493.795500px;}
.x9e_c00463{left:496.530000px;}
.xa1_c00463{left:499.770000px;}
.xa3_c00463{left:501.006000px;}
.xac_c00463{left:504.900000px;}
.xa9_c00463{left:506.520000px;}
.x31_c00463{left:508.375500px;}
.xa4_c00463{left:509.869500px;}
.x92_c00463{left:511.920000px;}
.x9b_c00463{left:514.230000px;}
.xbb_c00463{left:517.050000px;}
.xa0_c00463{left:519.750000px;}
.x3e_c00463{left:522.658867px;}
.x5e_c00463{left:523.716000px;}
.x4e_c00463{left:528.157500px;}
.x9d_c00463{left:529.470000px;}
.xa5_c00463{left:533.140500px;}
.xb7_c00463{left:534.330000px;}
.x32_c00463{left:536.008500px;}
.x96_c00463{left:539.730000px;}
.xad_c00463{left:543.780000px;}
.xb9_c00463{left:546.750000px;}
.x97_c00463{left:548.370000px;}
.xb2_c00463{left:552.960000px;}
.xbc_c00463{left:557.820000px;}
.x93_c00463{left:559.440000px;}
.xba_c00463{left:563.220000px;}
.x98_c00463{left:571.050000px;}
.xae_c00463{left:574.290000px;}
.xb3_c00463{left:576.180000px;}
.xaf_c00463{left:577.260000px;}
.x94_c00463{left:578.880000px;}
.x99_c00463{left:580.770000px;}
.x9f_c00463{left:583.740000px;}
.x4f_c00463{left:585.954000px;}
.x48_c00463{left:589.950000px;}
.xbd_c00463{left:595.350000px;}
.xb4_c00463{left:597.510000px;}
.x9c_c00463{left:600.633000px;}
.xa2_c00463{left:605.610000px;}
.xc0_c00463{left:608.580000px;}
.xa6_c00463{left:623.026500px;}
.xc2_c00463{left:682.290000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
.fs28_c00463{font-size:19.600000pt;}
.fsa_c00463{font-size:27.066667pt;}
.fs27_c00463{font-size:30.800000pt;}
.fs1_c00463{font-size:31.733333pt;}
.fs12_c00463{font-size:39.205664pt;}
.fs26_c00463{font-size:40.133333pt;}
.fs13_c00463{font-size:40.139132pt;}
.fs1c_c00463{font-size:41.066667pt;}
.fs22_c00463{font-size:42.000000pt;}
.fs23_c00463{font-size:42.933333pt;}
.fs25_c00463{font-size:43.866667pt;}
.fsf_c00463{font-size:43.872281pt;}
.fs11_c00463{font-size:43.876338pt;}
.fs1e_c00463{font-size:44.800000pt;}
.fs16_c00463{font-size:44.804390pt;}
.fs1f_c00463{font-size:45.733333pt;}
.fs17_c00463{font-size:45.737815pt;}
.fs10_c00463{font-size:45.743416pt;}
.fs1a_c00463{font-size:46.666667pt;}
.fs24_c00463{font-size:46.671240pt;}
.fs14_c00463{font-size:46.673410pt;}
.fs21_c00463{font-size:47.600000pt;}
.fs1d_c00463{font-size:48.533333pt;}
.fs15_c00463{font-size:48.538089pt;}
.fs1b_c00463{font-size:49.466667pt;}
.fs19_c00463{font-size:51.333333pt;}
.fs18_c00463{font-size:51.338364pt;}
.fs20_c00463{font-size:54.133333pt;}
.fs5_c00463{font-size:58.806615pt;}
.fsb_c00463{font-size:59.736947pt;}
.fs8_c00463{font-size:59.740979pt;}
.fs6_c00463{font-size:60.673491pt;}
.fsd_c00463{font-size:62.537836pt;}
.fs7_c00463{font-size:62.540368pt;}
.fs0_c00463{font-size:63.466667pt;}
.fsc_c00463{font-size:63.470506pt;}
.fs3_c00463{font-size:63.476947pt;}
.fs4_c00463{font-size:64.407245pt;}
.fse_c00463{font-size:65.338037pt;}
.fs9_c00463{font-size:66.275148pt;}
.fs2_c00463{font-size:66.279919pt;}
.y0_c00463{bottom:0.000000pt;}
.yf7_c00463{bottom:116.160000pt;}
.yc8_c00463{bottom:150.704000pt;}
.yf6_c00463{bottom:151.565333pt;}
.yc7_c00463{bottom:166.921333pt;}
.yf5_c00463{bottom:167.622667pt;}
.yd5_c00463{bottom:182.501333pt;}
.yf4_c00463{bottom:183.250667pt;}
.ycb_c00463{bottom:197.761333pt;}
.ycc_c00463{bottom:198.010667pt;}
.ycd_c00463{bottom:198.169333pt;}
.yce_c00463{bottom:198.630667pt;}
.ycf_c00463{bottom:198.782667pt;}
.yd0_c00463{bottom:199.269333pt;}
.yd1_c00463{bottom:200.005333pt;}
.yf3_c00463{bottom:200.102667pt;}
.yd2_c00463{bottom:200.286667pt;}
.yd3_c00463{bottom:200.442667pt;}
.yd4_c00463{bottom:200.721333pt;}
.yca_c00463{bottom:214.298667pt;}
.yc6_c00463{bottom:230.276000pt;}
.yc9_c00463{bottom:230.537333pt;}
.yf2_c00463{bottom:231.044000pt;}
.yc5_c00463{bottom:246.524000pt;}
.yf1_c00463{bottom:247.302667pt;}
.yc4_c00463{bottom:262.369333pt;}
.yf0_c00463{bottom:262.817333pt;}
.yc3_c00463{bottom:278.018667pt;}
.yef_c00463{bottom:279.709333pt;}
.yc1_c00463{bottom:294.248291pt;}
.ybd_c00463{bottom:294.248477pt;}
.yc2_c00463{bottom:294.248520pt;}
.ybf_c00463{bottom:294.248613pt;}
.ybe_c00463{bottom:294.248651pt;}
.yc0_c00463{bottom:294.248755pt;}
.yee_c00463{bottom:295.277333pt;}
.yb7_c00463{bottom:310.090827pt;}
.yb6_c00463{bottom:310.090883pt;}
.yb8_c00463{bottom:310.091144pt;}
.yb9_c00463{bottom:310.091320pt;}
.yba_c00463{bottom:310.091584pt;}
.ybc_c00463{bottom:310.091635pt;}
.ybb_c00463{bottom:310.092080pt;}
.yed_c00463{bottom:311.264000pt;}
.yb1_c00463{bottom:326.269144pt;}
.yb2_c00463{bottom:326.269392pt;}
.yb5_c00463{bottom:326.269475pt;}
.yb0_c00463{bottom:326.269731pt;}
.yb3_c00463{bottom:326.269835pt;}
.yb4_c00463{bottom:326.269904pt;}
.yaf_c00463{bottom:326.270037pt;}
.yec_c00463{bottom:327.701333pt;}
.ya7_c00463{bottom:341.041333pt;}
.ya8_c00463{bottom:341.300725pt;}
.ya9_c00463{bottom:341.414349pt;}
.yaa_c00463{bottom:342.109851pt;}
.ye4_c00463{bottom:342.241333pt;}
.yab_c00463{bottom:342.388749pt;}
.ye5_c00463{bottom:342.617280pt;}
.yac_c00463{bottom:342.741139pt;}
.ye6_c00463{bottom:342.913595pt;}
.yad_c00463{bottom:343.037397pt;}
.yae_c00463{bottom:343.447373pt;}
.ye7_c00463{bottom:343.578912pt;}
.ye8_c00463{bottom:343.689213pt;}
.ye9_c00463{bottom:343.978808pt;}
.yea_c00463{bottom:344.301424pt;}
.yeb_c00463{bottom:345.097389pt;}
.ya1_c00463{bottom:356.642667pt;}
.ya2_c00463{bottom:356.981261pt;}
.ya3_c00463{bottom:357.494843pt;}
.ya4_c00463{bottom:357.993147pt;}
.ya5_c00463{bottom:358.115524pt;}
.ya6_c00463{bottom:359.539308pt;}
.ye3_c00463{bottom:359.710667pt;}
.ya0_c00463{bottom:372.841953pt;}
.ye2_c00463{bottom:376.168000pt;}
.y99_c00463{bottom:388.802667pt;}
.y9a_c00463{bottom:389.659693pt;}
.y9b_c00463{bottom:390.096321pt;}
.y9c_c00463{bottom:391.001945pt;}
.y9d_c00463{bottom:391.279612pt;}
.y9e_c00463{bottom:391.707808pt;}
.y9f_c00463{bottom:391.939779pt;}
.ye1_c00463{bottom:392.690667pt;}
.y91_c00463{bottom:404.634815pt;}
.y92_c00463{bottom:405.127709pt;}
.y93_c00463{bottom:405.566673pt;}
.y94_c00463{bottom:405.818252pt;}
.y95_c00463{bottom:406.134909pt;}
.y96_c00463{bottom:406.542155pt;}
.y97_c00463{bottom:407.163733pt;}
.y98_c00463{bottom:407.306085pt;}
.ye0_c00463{bottom:408.564000pt;}
.y89_c00463{bottom:420.239147pt;}
.y8a_c00463{bottom:420.995236pt;}
.y8b_c00463{bottom:421.302633pt;}
.y8c_c00463{bottom:421.649060pt;}
.y8d_c00463{bottom:422.045989pt;}
.y8e_c00463{bottom:422.530480pt;}
.y8f_c00463{bottom:423.104044pt;}
.yd8_c00463{bottom:423.121333pt;}
.yd9_c00463{bottom:423.199304pt;}
.y90_c00463{bottom:423.498275pt;}
.yda_c00463{bottom:423.639371pt;}
.ydb_c00463{bottom:423.917467pt;}
.ydc_c00463{bottom:424.187237pt;}
.ydd_c00463{bottom:424.737997pt;}
.yde_c00463{bottom:425.554496pt;}
.ydf_c00463{bottom:425.813235pt;}
.y81_c00463{bottom:435.844000pt;}
.y82_c00463{bottom:436.206264pt;}
.y83_c00463{bottom:436.736080pt;}
.y84_c00463{bottom:437.266540pt;}
.y85_c00463{bottom:438.258832pt;}
.y86_c00463{bottom:438.278600pt;}
.y87_c00463{bottom:439.049860pt;}
.y88_c00463{bottom:439.825096pt;}
.yd7_c00463{bottom:441.126667pt;}
.y78_c00463{bottom:452.402667pt;}
.y79_c00463{bottom:452.698688pt;}
.y7a_c00463{bottom:452.860245pt;}
.y7b_c00463{bottom:453.266987pt;}
.y7c_c00463{bottom:453.784896pt;}
.y7d_c00463{bottom:454.219200pt;}
.y7e_c00463{bottom:454.753067pt;}
.y7f_c00463{bottom:455.163840pt;}
.y80_c00463{bottom:455.306091pt;}
.yd6_c00463{bottom:457.425333pt;}
.y6e_c00463{bottom:498.001333pt;}
.y6f_c00463{bottom:498.677877pt;}
.y70_c00463{bottom:499.161413pt;}
.y71_c00463{bottom:499.525061pt;}
.y72_c00463{bottom:500.020245pt;}
.y73_c00463{bottom:500.371861pt;}
.y74_c00463{bottom:500.648245pt;}
.y75_c00463{bottom:501.059813pt;}
.y76_c00463{bottom:501.379717pt;}
.y77_c00463{bottom:501.702213pt;}
.y66_c00463{bottom:519.121333pt;}
.y67_c00463{bottom:519.567797pt;}
.y68_c00463{bottom:519.918581pt;}
.y69_c00463{bottom:520.183909pt;}
.y6a_c00463{bottom:520.953221pt;}
.y6b_c00463{bottom:521.336469pt;}
.y6c_c00463{bottom:521.874997pt;}
.y6d_c00463{bottom:522.442453pt;}
.y5f_c00463{bottom:539.521405pt;}
.y60_c00463{bottom:539.926999pt;}
.y61_c00463{bottom:540.276929pt;}
.y62_c00463{bottom:540.820199pt;}
.y63_c00463{bottom:541.394848pt;}
.y64_c00463{bottom:542.104049pt;}
.y65_c00463{bottom:543.298393pt;}
.y53_c00463{bottom:559.681333pt;}
.y54_c00463{bottom:560.166595pt;}
.y55_c00463{bottom:560.444279pt;}
.y56_c00463{bottom:560.819217pt;}
.y57_c00463{bottom:561.218444pt;}
.y58_c00463{bottom:561.540157pt;}
.y59_c00463{bottom:561.907044pt;}
.y5a_c00463{bottom:562.113037pt;}
.y5b_c00463{bottom:562.474981pt;}
.y5c_c00463{bottom:562.751873pt;}
.y5d_c00463{bottom:563.173027pt;}
.y5e_c00463{bottom:563.738148pt;}
.y4b_c00463{bottom:579.839093pt;}
.y4c_c00463{bottom:580.632277pt;}
.y4d_c00463{bottom:580.881056pt;}
.y4e_c00463{bottom:581.520075pt;}
.y4f_c00463{bottom:582.124011pt;}
.y50_c00463{bottom:582.482912pt;}
.y51_c00463{bottom:583.951872pt;}
.y52_c00463{bottom:594.000000pt;}
.y43_c00463{bottom:599.282667pt;}
.y44_c00463{bottom:599.824277pt;}
.y45_c00463{bottom:600.415061pt;}
.y46_c00463{bottom:600.930240pt;}
.y47_c00463{bottom:601.318699pt;}
.y48_c00463{bottom:601.891221pt;}
.y49_c00463{bottom:602.189227pt;}
.y4a_c00463{bottom:602.831467pt;}
.y39_c00463{bottom:620.398373pt;}
.y3a_c00463{bottom:620.697900pt;}
.y3b_c00463{bottom:621.156753pt;}
.y3c_c00463{bottom:621.512967pt;}
.y3d_c00463{bottom:621.930767pt;}
.y3e_c00463{bottom:622.611053pt;}
.y3f_c00463{bottom:623.181093pt;}
.y40_c00463{bottom:623.537547pt;}
.y41_c00463{bottom:623.805173pt;}
.y42_c00463{bottom:624.410980pt;}
.y31_c00463{bottom:640.080320pt;}
.y32_c00463{bottom:640.504787pt;}
.y33_c00463{bottom:641.624367pt;}
.y34_c00463{bottom:641.977300pt;}
.y35_c00463{bottom:642.547580pt;}
.y36_c00463{bottom:643.069620pt;}
.y37_c00463{bottom:643.521447pt;}
.y38_c00463{bottom:643.673480pt;}
.y27_c00463{bottom:660.722667pt;}
.y28_c00463{bottom:661.206247pt;}
.y29_c00463{bottom:662.129787pt;}
.y2a_c00463{bottom:662.181487pt;}
.y2b_c00463{bottom:663.322187pt;}
.y2c_c00463{bottom:663.523707pt;}
.y2d_c00463{bottom:664.186307pt;}
.y2e_c00463{bottom:664.689547pt;}
.y2f_c00463{bottom:665.140407pt;}
.y30_c00463{bottom:665.508847pt;}
.y1f_c00463{bottom:680.640273pt;}
.y20_c00463{bottom:681.062940pt;}
.y21_c00463{bottom:681.691647pt;}
.y22_c00463{bottom:682.417700pt;}
.y23_c00463{bottom:682.648807pt;}
.y24_c00463{bottom:683.297407pt;}
.y25_c00463{bottom:684.541040pt;}
.y26_c00463{bottom:685.120620pt;}
.y15_c00463{bottom:700.802667pt;}
.y16_c00463{bottom:701.148547pt;}
.y17_c00463{bottom:701.493087pt;}
.y18_c00463{bottom:702.033627pt;}
.y19_c00463{bottom:702.415187pt;}
.y1a_c00463{bottom:703.290807pt;}
.y1b_c00463{bottom:703.497487pt;}
.y1c_c00463{bottom:703.985787pt;}
.y1d_c00463{bottom:704.618667pt;}
.y1e_c00463{bottom:705.040407pt;}
.yd_c00463{bottom:720.964000pt;}
.ye_c00463{bottom:721.328152pt;}
.yf_c00463{bottom:722.148112pt;}
.y10_c00463{bottom:723.349336pt;}
.y11_c00463{bottom:723.944320pt;}
.y12_c00463{bottom:724.471744pt;}
.y13_c00463{bottom:724.874752pt;}
.y14_c00463{bottom:725.738152pt;}
.y3_c00463{bottom:740.406667pt;}
.y4_c00463{bottom:740.914213pt;}
.y5_c00463{bottom:741.260133pt;}
.y6_c00463{bottom:741.826720pt;}
.y7_c00463{bottom:742.666640pt;}
.y8_c00463{bottom:743.338987pt;}
.y9_c00463{bottom:744.259547pt;}
.ya_c00463{bottom:744.692987pt;}
.yb_c00463{bottom:745.319733pt;}
.yc_c00463{bottom:745.922400pt;}
.y2_c00463{bottom:826.517333pt;}
.y1_c00463{bottom:838.337333pt;}
.h2a_c00463{height:19.600000pt;}
.hc_c00463{height:27.066667pt;}
.h29_c00463{height:30.800000pt;}
.h3_c00463{height:31.733333pt;}
.h14_c00463{height:39.205664pt;}
.h28_c00463{height:40.133333pt;}
.h15_c00463{height:40.139132pt;}
.h1e_c00463{height:41.066667pt;}
.h24_c00463{height:42.000000pt;}
.h25_c00463{height:42.933333pt;}
.h27_c00463{height:43.866667pt;}
.h11_c00463{height:43.872281pt;}
.h13_c00463{height:43.876338pt;}
.h20_c00463{height:44.800000pt;}
.h18_c00463{height:44.804390pt;}
.h21_c00463{height:45.733333pt;}
.h19_c00463{height:45.737815pt;}
.h12_c00463{height:45.743416pt;}
.h1c_c00463{height:46.666667pt;}
.h26_c00463{height:46.671240pt;}
.h16_c00463{height:46.673410pt;}
.h23_c00463{height:47.600000pt;}
.h1f_c00463{height:48.533333pt;}
.h17_c00463{height:48.538089pt;}
.h1d_c00463{height:49.466667pt;}
.h1b_c00463{height:51.333333pt;}
.h1a_c00463{height:51.338364pt;}
.h22_c00463{height:54.133333pt;}
.h7_c00463{height:58.806615pt;}
.hd_c00463{height:59.736947pt;}
.ha_c00463{height:59.740979pt;}
.h8_c00463{height:60.673491pt;}
.hf_c00463{height:62.537836pt;}
.h9_c00463{height:62.540368pt;}
.h2_c00463{height:63.466667pt;}
.he_c00463{height:63.470506pt;}
.h5_c00463{height:63.476947pt;}
.h6_c00463{height:64.407245pt;}
.h10_c00463{height:65.338037pt;}
.hb_c00463{height:66.275148pt;}
.h4_c00463{height:66.279919pt;}
.h0_c00463{height:896.400000pt;}
.h1_c00463{height:896.666667pt;}
.w1_c00463{width:612.666667pt;}
.w0_c00463{width:612.933333pt;}
.x0_c00463{left:0.000000pt;}
.x7e_c00463{left:119.040000pt;}
.x71_c00463{left:124.557669pt;}
.x63_c00463{left:125.466667pt;}
.x6_c00463{left:126.960000pt;}
.x72_c00463{left:134.078667pt;}
.x5f_c00463{left:136.713333pt;}
.x1_c00463{left:139.920000pt;}
.x64_c00463{left:142.717333pt;}
.x74_c00463{left:143.932000pt;}
.x2_c00463{left:148.560000pt;}
.x7f_c00463{left:150.480000pt;}
.x49_c00463{left:152.046667pt;}
.x9_c00463{left:153.186667pt;}
.x24_c00463{left:154.511273pt;}
.x13_c00463{left:155.486667pt;}
.x1b_c00463{left:156.413333pt;}
.x29_c00463{left:157.373333pt;}
.x78_c00463{left:161.284253pt;}
.x80_c00463{left:162.960000pt;}
.x60_c00463{left:165.312000pt;}
.x67_c00463{left:166.712535pt;}
.x3_c00463{left:167.760000pt;}
.x7b_c00463{left:170.880000pt;}
.x14_c00463{left:175.717333pt;}
.xa_c00463{left:178.564000pt;}
.x1c_c00463{left:179.472000pt;}
.x25_c00463{left:180.910873pt;}
.x68_c00463{left:183.764265pt;}
.x50_c00463{left:185.146609pt;}
.x4_c00463{left:186.480000pt;}
.x3f_c00463{left:188.362667pt;}
.x2a_c00463{left:189.612000pt;}
.x61_c00463{left:190.733333pt;}
.x7c_c00463{left:192.000000pt;}
.x56_c00463{left:193.101333pt;}
.xb_c00463{left:195.860000pt;}
.x6d_c00463{left:201.524000pt;}
.x1d_c00463{left:202.441333pt;}
.x6a_c00463{left:204.143611pt;}
.x7_c00463{left:208.320000pt;}
.x51_c00463{left:210.169788pt;}
.x79_c00463{left:211.929259pt;}
.x37_c00463{left:214.207473pt;}
.x26_c00463{left:220.246293pt;}
.x15_c00463{left:221.270667pt;}
.x57_c00463{left:222.333333pt;}
.xc_c00463{left:224.189333pt;}
.x40_c00463{left:225.286667pt;}
.x5_c00463{left:229.440000pt;}
.x85_c00463{left:230.400000pt;}
.x7a_c00463{left:231.371733pt;}
.x45_c00463{left:232.308928pt;}
.x82_c00463{left:233.280000pt;}
.x1e_c00463{left:238.477333pt;}
.x65_c00463{left:240.458667pt;}
.x38_c00463{left:241.600293pt;}
.x58_c00463{left:244.444000pt;}
.x75_c00463{left:246.818667pt;}
.x52_c00463{left:249.011179pt;}
.x62_c00463{left:250.246667pt;}
.x2b_c00463{left:251.181333pt;}
.x6b_c00463{left:252.399020pt;}
.x2c_c00463{left:254.628000pt;}
.x41_c00463{left:257.485333pt;}
.x87_c00463{left:261.600000pt;}
.x83_c00463{left:262.800000pt;}
.x8_c00463{left:263.760000pt;}
.xd_c00463{left:266.185333pt;}
.x76_c00463{left:267.980000pt;}
.x6e_c00463{left:271.129333pt;}
.x88_c00463{left:272.160000pt;}
.x39_c00463{left:273.721253pt;}
.x33_c00463{left:275.399627pt;}
.x46_c00463{left:277.915712pt;}
.x27_c00463{left:280.056060pt;}
.x42_c00463{left:281.764000pt;}
.x5b_c00463{left:284.096000pt;}
.x8f_c00463{left:285.596000pt;}
.x16_c00463{left:288.005333pt;}
.x89_c00463{left:289.200000pt;}
.x53_c00463{left:290.099163pt;}
.x4a_c00463{left:291.784000pt;}
.x6c_c00463{left:293.876256pt;}
.x86_c00463{left:295.200000pt;}
.x6f_c00463{left:296.317333pt;}
.x77_c00463{left:297.264000pt;}
.x81_c00463{left:298.320000pt;}
.xe_c00463{left:299.802667pt;}
.x34_c00463{left:302.573780pt;}
.x73_c00463{left:304.469333pt;}
.x69_c00463{left:305.786632pt;}
.x84_c00463{left:306.960000pt;}
.x59_c00463{left:308.553333pt;}
.x70_c00463{left:309.962667pt;}
.x8a_c00463{left:312.480000pt;}
.x66_c00463{left:315.042667pt;}
.x43_c00463{left:317.546667pt;}
.x7d_c00463{left:319.440000pt;}
.x17_c00463{left:321.060000pt;}
.x1f_c00463{left:322.289333pt;}
.x90_c00463{left:323.516000pt;}
.x3a_c00463{left:326.097500pt;}
.x2d_c00463{left:330.674667pt;}
.x20_c00463{left:336.068000pt;}
.x54_c00463{left:340.752157pt;}
.x2e_c00463{left:344.109333pt;}
.xf_c00463{left:345.830667pt;}
.x47_c00463{left:346.761931pt;}
.x95_c00463{left:348.720000pt;}
.x18_c00463{left:350.361333pt;}
.x8b_c00463{left:351.376000pt;}
.x4b_c00463{left:354.384000pt;}
.xb8_c00463{left:366.240000pt;}
.x10_c00463{left:367.502667pt;}
.x21_c00463{left:368.621333pt;}
.x3b_c00463{left:369.968153pt;}
.x19_c00463{left:372.750667pt;}
.xa7_c00463{left:373.680000pt;}
.x44_c00463{left:376.312000pt;}
.x5c_c00463{left:377.694667pt;}
.x9a_c00463{left:378.620000pt;}
.x8c_c00463{left:379.544000pt;}
.xb5_c00463{left:380.640000pt;}
.x91_c00463{left:381.840000pt;}
.x5a_c00463{left:385.368000pt;}
.x35_c00463{left:386.597633pt;}
.x2f_c00463{left:388.282667pt;}
.xbe_c00463{left:390.960000pt;}
.xb0_c00463{left:392.160000pt;}
.xaa_c00463{left:394.080000pt;}
.x8d_c00463{left:395.146667pt;}
.xb6_c00463{left:396.480000pt;}
.x3c_c00463{left:397.376973pt;}
.x11_c00463{left:398.840000pt;}
.xbf_c00463{left:404.880000pt;}
.x4c_c00463{left:406.014667pt;}
.xa8_c00463{left:408.960000pt;}
.x22_c00463{left:410.813333pt;}
.x5d_c00463{left:411.992000pt;}
.x3d_c00463{left:417.974927pt;}
.xb1_c00463{left:419.760000pt;}
.x1a_c00463{left:420.717333pt;}
.x30_c00463{left:421.832000pt;}
.x8e_c00463{left:422.990667pt;}
.xc1_c00463{left:424.560000pt;}
.x55_c00463{left:426.053341pt;}
.x12_c00463{left:428.973333pt;}
.x4d_c00463{left:431.186667pt;}
.x36_c00463{left:432.989680pt;}
.x28_c00463{left:434.619093pt;}
.xab_c00463{left:436.320000pt;}
.x23_c00463{left:438.929333pt;}
.x9e_c00463{left:441.360000pt;}
.xa1_c00463{left:444.240000pt;}
.xa3_c00463{left:445.338667pt;}
.xac_c00463{left:448.800000pt;}
.xa9_c00463{left:450.240000pt;}
.x31_c00463{left:451.889333pt;}
.xa4_c00463{left:453.217333pt;}
.x92_c00463{left:455.040000pt;}
.x9b_c00463{left:457.093333pt;}
.xbb_c00463{left:459.600000pt;}
.xa0_c00463{left:462.000000pt;}
.x3e_c00463{left:464.585660pt;}
.x5e_c00463{left:465.525333pt;}
.x4e_c00463{left:469.473333pt;}
.x9d_c00463{left:470.640000pt;}
.xa5_c00463{left:473.902667pt;}
.xb7_c00463{left:474.960000pt;}
.x32_c00463{left:476.452000pt;}
.x96_c00463{left:479.760000pt;}
.xad_c00463{left:483.360000pt;}
.xb9_c00463{left:486.000000pt;}
.x97_c00463{left:487.440000pt;}
.xb2_c00463{left:491.520000pt;}
.xbc_c00463{left:495.840000pt;}
.x93_c00463{left:497.280000pt;}
.xba_c00463{left:500.640000pt;}
.x98_c00463{left:507.600000pt;}
.xae_c00463{left:510.480000pt;}
.xb3_c00463{left:512.160000pt;}
.xaf_c00463{left:513.120000pt;}
.x94_c00463{left:514.560000pt;}
.x99_c00463{left:516.240000pt;}
.x9f_c00463{left:518.880000pt;}
.x4f_c00463{left:520.848000pt;}
.x48_c00463{left:524.400000pt;}
.xbd_c00463{left:529.200000pt;}
.xb4_c00463{left:531.120000pt;}
.x9c_c00463{left:533.896000pt;}
.xa2_c00463{left:538.320000pt;}
.xc0_c00463{left:540.960000pt;}
.xa6_c00463{left:553.801333pt;}
.xc2_c00463{left:606.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_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_2f6c0d3825a5d54c0b922384.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;}
.m3_c00464{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);}
.m131_c00464{transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);}
.m14b_c00464{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);}
.mb2_c00464{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.m5e_c00464{transform:matrix(0.036705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036705,0.000000,0.000000,0.250000,0,0);}
.mcc_c00464{transform:matrix(0.080500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080500,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.081435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081435,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.083085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083085,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{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);}
.m15a_c00464{transform:matrix(0.095665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095665,0.000000,0.000000,0.250000,0,0);}
.m6f_c00464{transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);}
.me7_c00464{transform:matrix(0.102085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102085,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{transform:matrix(0.116535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116535,0.000000,0.000000,0.250000,0,0);}
.m39_c00464{transform:matrix(0.117486,-0.000940,0.002000,0.249992,0,0);-ms-transform:matrix(0.117486,-0.000940,0.002000,0.249992,0,0);-webkit-transform:matrix(0.117486,-0.000940,0.002000,0.249992,0,0);}
.m117_c00464{transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123855,0.000000,0.000000,0.250000,0,0);}
.m143_c00464{transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);}
.m150_c00464{transform:matrix(0.128915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128915,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.134386,-0.001075,0.002000,0.249992,0,0);-ms-transform:matrix(0.134386,-0.001075,0.002000,0.249992,0,0);-webkit-transform:matrix(0.134386,-0.001075,0.002000,0.249992,0,0);}
.m15_c00464{transform:matrix(0.137550,-0.001651,0.003000,0.249982,0,0);-ms-transform:matrix(0.137550,-0.001651,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137550,-0.001651,0.003000,0.249982,0,0);}
.m83_c00464{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);}
.mf4_c00464{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);}
.mf3_c00464{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);}
.m10f_c00464{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);}
.md5_c00464{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);}
.m115_c00464{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);}
.mf6_c00464{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);}
.m43_c00464{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);}
.m118_c00464{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.m14a_c00464{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_c00464{transform:matrix(0.161455,-0.001292,0.002000,0.249992,0,0);-ms-transform:matrix(0.161455,-0.001292,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161455,-0.001292,0.002000,0.249992,0,0);}
.m13c_c00464{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);}
.m14_c00464{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);}
.m13_c00464{transform:matrix(0.163603,-0.001963,0.003000,0.249982,0,0);-ms-transform:matrix(0.163603,-0.001963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163603,-0.001963,0.003000,0.249982,0,0);}
.m72_c00464{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);}
.mdf_c00464{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);}
.meb_c00464{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);}
.m1c_c00464{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.m104_c00464{transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166170,0.000000,0.000000,0.250000,0,0);}
.m4e_c00464{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);}
.m92_c00464{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);}
.m11f_c00464{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);}
.m49_c00464{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);}
.mc0_c00464{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);}
.m7e_c00464{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);}
.mef_c00464{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);}
.m124_c00464{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);}
.m10e_c00464{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);}
.m106_c00464{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);}
.m8f_c00464{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);}
.m62_c00464{transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170720,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{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);}
.m114_c00464{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);}
.m109_c00464{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);}
.m31_c00464{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);}
.m16_c00464{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);}
.ma4_c00464{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);}
.mbb_c00464{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);}
.m107_c00464{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);}
.m12f_c00464{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);}
.m10a_c00464{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);}
.m99_c00464{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);}
.m154_c00464{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);}
.m152_c00464{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);}
.maa_c00464{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);}
.m5f_c00464{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);}
.m64_c00464{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);}
.m7c_c00464{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);}
.m6d_c00464{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);}
.m11d_c00464{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);}
.m119_c00464{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);}
.m40_c00464{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);}
.m13f_c00464{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);}
.m108_c00464{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);}
.mff_c00464{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);}
.m44_c00464{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);}
.mb8_c00464{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);}
.m101_c00464{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);}
.m7b_c00464{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);}
.mfe_c00464{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);}
.mf7_c00464{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);}
.m91_c00464{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);}
.mec_c00464{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);}
.ma2_c00464{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);}
.md3_c00464{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);}
.ma6_c00464{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);}
.mc6_c00464{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);}
.ma9_c00464{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);}
.m55_c00464{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);}
.mdc_c00464{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);}
.m29_c00464{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);}
.m140_c00464{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);}
.m63_c00464{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);}
.m24_c00464{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);}
.m13d_c00464{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);}
.m8e_c00464{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);}
.m61_c00464{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);}
.m6a_c00464{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);}
.m9c_c00464{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);}
.mc2_c00464{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);}
.mfb_c00464{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);}
.m14d_c00464{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_c00464{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);}
.m127_c00464{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);}
.mf2_c00464{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);}
.m12a_c00464{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);}
.ma3_c00464{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);}
.me5_c00464{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);}
.me9_c00464{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);}
.mee_c00464{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);}
.m3d_c00464{transform:matrix(0.190479,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190479,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190479,-0.001524,0.002000,0.249992,0,0);}
.m14c_c00464{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);}
.m134_c00464{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);}
.m75_c00464{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);}
.ma8_c00464{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);}
.m120_c00464{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);}
.ma7_c00464{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);}
.m38_c00464{transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);}
.m15c_c00464{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);}
.m1e_c00464{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);}
.m125_c00464{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);}
.m156_c00464{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);}
.m129_c00464{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);}
.mc_c00464{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);}
.m111_c00464{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);}
.m1d_c00464{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);}
.me8_c00464{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);}
.m11e_c00464{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);}
.m123_c00464{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);}
.m126_c00464{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);}
.m80_c00464{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);}
.m11c_c00464{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);}
.m51_c00464{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);}
.m70_c00464{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);}
.m12c_c00464{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);}
.m6c_c00464{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);}
.m17_c00464{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);}
.md2_c00464{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);}
.m19_c00464{transform:matrix(0.196566,-0.002359,0.003000,0.249982,0,0);-ms-transform:matrix(0.196566,-0.002359,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196566,-0.002359,0.003000,0.249982,0,0);}
.m15b_c00464{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);}
.m144_c00464{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);}
.m79_c00464{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);}
.m10b_c00464{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);}
.mc3_c00464{transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);}
.m8d_c00464{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);}
.m3e_c00464{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);}
.mad_c00464{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);}
.md7_c00464{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.m5b_c00464{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);}
.m71_c00464{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);}
.m45_c00464{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);}
.m7a_c00464{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);}
.m74_c00464{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);}
.m130_c00464{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);}
.m97_c00464{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);}
.m112_c00464{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);}
.mea_c00464{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);}
.m96_c00464{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);}
.mf1_c00464{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);}
.m1b_c00464{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);}
.mab_c00464{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);}
.m9b_c00464{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);}
.m2e_c00464{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);}
.me1_c00464{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);}
.md9_c00464{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);}
.m102_c00464{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);}
.m76_c00464{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);}
.m81_c00464{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);}
.m11b_c00464{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);}
.m98_c00464{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);}
.m47_c00464{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);}
.m110_c00464{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);}
.mac_c00464{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);}
.m4d_c00464{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);}
.mdd_c00464{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);}
.m145_c00464{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);}
.mda_c00464{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);}
.mc5_c00464{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);}
.m5c_c00464{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);}
.mbc_c00464{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);}
.m82_c00464{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);}
.mb6_c00464{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);}
.m68_c00464{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m137_c00464{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);}
.m6e_c00464{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);}
.m1f_c00464{transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);}
.ma5_c00464{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);}
.m13e_c00464{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);}
.mf0_c00464{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);}
.m153_c00464{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);}
.m77_c00464{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);}
.m155_c00464{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);}
.m94_c00464{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);}
.mbe_c00464{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);}
.mb4_c00464{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);}
.m12b_c00464{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);}
.me3_c00464{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);}
.m7d_c00464{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);}
.m133_c00464{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);}
.mba_c00464{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);}
.m93_c00464{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);}
.mb5_c00464{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);}
.mfa_c00464{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);}
.mfd_c00464{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);}
.m9_c00464{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);}
.mce_c00464{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);}
.m136_c00464{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);}
.m12_c00464{transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214315,-0.002572,0.003000,0.249982,0,0);}
.mc4_c00464{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);}
.m148_c00464{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);}
.m87_c00464{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);}
.m46_c00464{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);}
.m4_c00464{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);}
.med_c00464{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);}
.m56_c00464{transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);}
.m9a_c00464{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);}
.mbf_c00464{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);}
.mbd_c00464{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);}
.mde_c00464{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);}
.m9d_c00464{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);}
.m14f_c00464{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);}
.m128_c00464{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);}
.me0_c00464{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);}
.m54_c00464{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);}
.m2f_c00464{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);}
.mf8_c00464{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);}
.mae_c00464{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);}
.m139_c00464{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);}
.me6_c00464{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m5d_c00464{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);}
.m26_c00464{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);}
.m13b_c00464{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);}
.m6b_c00464{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);}
.m3b_c00464{transform:matrix(0.222368,-0.001779,0.002000,0.249992,0,0);-ms-transform:matrix(0.222368,-0.001779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222368,-0.001779,0.002000,0.249992,0,0);}
.md4_c00464{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);}
.m4f_c00464{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);}
.m60_c00464{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.223178,-0.001785,0.002000,0.249992,0,0);-ms-transform:matrix(0.223178,-0.001785,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223178,-0.001785,0.002000,0.249992,0,0);}
.m95_c00464{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);}
.m132_c00464{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);}
.m122_c00464{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);}
.m1a_c00464{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m15f_c00464{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);}
.m11a_c00464{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);}
.m149_c00464{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);}
.m8a_c00464{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);}
.mc7_c00464{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);}
.mb1_c00464{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);}
.me2_c00464{transform:matrix(0.226905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226905,0.000000,0.000000,0.250000,0,0);}
.m158_c00464{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);}
.m14e_c00464{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);}
.mc1_c00464{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);}
.m28_c00464{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);}
.m4a_c00464{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);}
.mfc_c00464{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);}
.m5a_c00464{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);}
.m86_c00464{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);}
.mb7_c00464{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);}
.ma1_c00464{transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);}
.m160_c00464{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);}
.m20_c00464{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);}
.m85_c00464{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);}
.md1_c00464{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);}
.me_c00464{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);}
.m4c_c00464{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.236203,-0.002834,0.003000,0.249982,0,0);-ms-transform:matrix(0.236203,-0.002834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236203,-0.002834,0.003000,0.249982,0,0);}
.m50_c00464{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);}
.mca_c00464{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);}
.mf5_c00464{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);}
.m103_c00464{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);}
.m157_c00464{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);}
.m12d_c00464{transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);}
.md6_c00464{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);}
.m41_c00464{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);}
.m57_c00464{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);}
.m69_c00464{transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m4b_c00464{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);}
.m113_c00464{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);}
.m52_c00464{transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244720,0.000000,0.000000,0.250000,0,0);}
.mf9_c00464{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);}
.m9e_c00464{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);}
.m121_c00464{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);}
.me4_c00464{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);}
.m9f_c00464{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m100_c00464{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m162_c00464{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);}
.mb9_c00464{transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257200,0.000000,0.000000,0.250000,0,0);}
.m116_c00464{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);}
.mb3_c00464{transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);}
.m15d_c00464{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);}
.m151_c00464{transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);}
.m10c_c00464{transform:matrix(0.263545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263545,0.000000,0.000000,0.250000,0,0);}
.m59_c00464{transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264165,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);}
.m10d_c00464{transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265265,0.000000,0.000000,0.250000,0,0);}
.m13a_c00464{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);}
.maf_c00464{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);}
.m147_c00464{transform:matrix(0.267595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267595,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);}
.md8_c00464{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);}
.m8b_c00464{transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);}
.m105_c00464{transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);}
.mdb_c00464{transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276555,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.282786,-0.002262,0.002000,0.249992,0,0);-ms-transform:matrix(0.282786,-0.002262,0.002000,0.249992,0,0);-webkit-transform:matrix(0.282786,-0.002262,0.002000,0.249992,0,0);}
.m36_c00464{transform:matrix(0.291566,-0.002333,0.002000,0.249992,0,0);-ms-transform:matrix(0.291566,-0.002333,0.002000,0.249992,0,0);-webkit-transform:matrix(0.291566,-0.002333,0.002000,0.249992,0,0);}
.mc8_c00464{transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294225,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{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);}
.m138_c00464{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);}
.mb_c00464{transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);}
.m48_c00464{transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298595,0.000000,0.000000,0.250000,0,0);}
.m135_c00464{transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299820,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301840,0.000000,0.000000,0.250000,0,0);}
.m53_c00464{transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311420,0.000000,0.000000,0.250000,0,0);}
.m88_c00464{transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{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);}
.m1_c00464{transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324845,0.000000,0.000000,0.250000,0,0);}
.mcb_c00464{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);}
.m33_c00464{transform:matrix(0.328234,-0.002626,0.002000,0.249992,0,0);-ms-transform:matrix(0.328234,-0.002626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.328234,-0.002626,0.002000,0.249992,0,0);}
.m27_c00464{transform:matrix(0.329330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329330,0.000000,0.000000,0.250000,0,0);}
.mcd_c00464{transform:matrix(0.333030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333030,0.000000,0.000000,0.250000,0,0);}
.m15e_c00464{transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333090,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.333815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333815,0.000000,0.000000,0.250000,0,0);}
.m58_c00464{transform:matrix(0.340030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340030,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{transform:matrix(0.343869,-0.002751,0.002000,0.249992,0,0);-ms-transform:matrix(0.343869,-0.002751,0.002000,0.249992,0,0);-webkit-transform:matrix(0.343869,-0.002751,0.002000,0.249992,0,0);}
.m2_c00464{transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346705,0.000000,0.000000,0.250000,0,0);}
.m12e_c00464{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);}
.m2a_c00464{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);}
.mb0_c00464{transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357010,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.359918,-0.002879,0.002000,0.249992,0,0);-ms-transform:matrix(0.359918,-0.002879,0.002000,0.249992,0,0);-webkit-transform:matrix(0.359918,-0.002879,0.002000,0.249992,0,0);}
.m25_c00464{transform:matrix(0.362695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362695,0.000000,0.000000,0.250000,0,0);}
.mcf_c00464{transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);}
.ma0_c00464{transform:matrix(0.368425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368425,0.000000,0.000000,0.250000,0,0);}
.m159_c00464{transform:matrix(0.371570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371570,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);}
.md0_c00464{transform:matrix(0.405265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405265,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.420600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420600,0.000000,0.000000,0.250000,0,0);}
.m146_c00464{transform:matrix(0.432130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432130,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.506810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506810,0.000000,0.000000,0.250000,0,0);}
.m161_c00464{transform:matrix(0.508110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508110,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.545540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545540,0.000000,0.000000,0.250000,0,0);}
.m141_c00464{transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545645,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.567035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567035,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.577345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577345,0.000000,0.000000,0.250000,0,0);}
.mc9_c00464{transform:matrix(0.595485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595485,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.677450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677450,0.000000,0.000000,0.250000,0,0);}
.m142_c00464{transform:matrix(0.736135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736135,0.000000,0.000000,0.250000,0,0);}
.m89_c00464{transform:matrix(0.782190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782190,0.000000,0.000000,0.250000,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;}
.fse_c00464{font-size:47.250000px;}
.fs11_c00464{font-size:48.300000px;}
.fsb_c00464{font-size:49.350000px;}
.fsd_c00464{font-size:50.400000px;}
.fsf_c00464{font-size:51.450000px;}
.fsc_c00464{font-size:52.500000px;}
.fs12_c00464{font-size:53.550000px;}
.fs10_c00464{font-size:54.600000px;}
.fs13_c00464{font-size:55.650000px;}
.fs0_c00464{font-size:60.900000px;}
.fs5_c00464{font-size:63.000000px;}
.fs4_c00464{font-size:66.150000px;}
.fsa_c00464{font-size:68.250000px;}
.fs7_c00464{font-size:68.252184px;}
.fs8_c00464{font-size:69.300000px;}
.fs2_c00464{font-size:70.350000px;}
.fs9_c00464{font-size:72.450000px;}
.fs3_c00464{font-size:72.455216px;}
.fs6_c00464{font-size:97.650000px;}
.fs1_c00464{font-size:103.950000px;}
.y0_c00464{bottom:0.000000px;}
.y5f_c00464{bottom:150.180000px;}
.y5e_c00464{bottom:168.142500px;}
.y5d_c00464{bottom:185.622000px;}
.y5c_c00464{bottom:204.150000px;}
.y5b_c00464{bottom:222.277500px;}
.y4d_c00464{bottom:238.681500px;}
.y4e_c00464{bottom:239.104500px;}
.y4f_c00464{bottom:239.367000px;}
.y50_c00464{bottom:239.520000px;}
.y51_c00464{bottom:239.932500px;}
.y52_c00464{bottom:240.019500px;}
.y53_c00464{bottom:240.462000px;}
.y54_c00464{bottom:240.801000px;}
.y55_c00464{bottom:240.945000px;}
.y56_c00464{bottom:241.243500px;}
.y57_c00464{bottom:241.674000px;}
.y58_c00464{bottom:241.990500px;}
.y59_c00464{bottom:242.034000px;}
.y5a_c00464{bottom:242.293500px;}
.y41_c00464{bottom:256.501500px;}
.y42_c00464{bottom:256.858500px;}
.y43_c00464{bottom:257.023500px;}
.y44_c00464{bottom:257.461500px;}
.y45_c00464{bottom:257.548500px;}
.y46_c00464{bottom:257.851500px;}
.y47_c00464{bottom:258.024000px;}
.y48_c00464{bottom:258.187500px;}
.y49_c00464{bottom:258.403500px;}
.y4a_c00464{bottom:258.646500px;}
.y4b_c00464{bottom:259.206000px;}
.y4c_c00464{bottom:259.551000px;}
.y40_c00464{bottom:276.295500px;}
.y39_c00464{bottom:292.413000px;}
.y3a_c00464{bottom:292.654500px;}
.y3b_c00464{bottom:292.861500px;}
.y3c_c00464{bottom:293.244000px;}
.y3d_c00464{bottom:293.739000px;}
.y3e_c00464{bottom:293.956500px;}
.y3f_c00464{bottom:294.276000px;}
.y2d_c00464{bottom:296.361000px;}
.y38_c00464{bottom:311.283000px;}
.y2c_c00464{bottom:313.338000px;}
.y37_c00464{bottom:329.439000px;}
.y2b_c00464{bottom:330.894000px;}
.y36_c00464{bottom:347.122500px;}
.y2a_c00464{bottom:349.084500px;}
.y35_c00464{bottom:364.929000px;}
.y29_c00464{bottom:366.753000px;}
.y34_c00464{bottom:383.139000px;}
.y28_c00464{bottom:384.505500px;}
.y33_c00464{bottom:401.046000px;}
.y27_c00464{bottom:402.682500px;}
.y32_c00464{bottom:419.218500px;}
.y26_c00464{bottom:420.346500px;}
.y31_c00464{bottom:437.778000px;}
.y25_c00464{bottom:438.060000px;}
.y30_c00464{bottom:454.998000px;}
.y24_c00464{bottom:455.754000px;}
.y2f_c00464{bottom:472.767000px;}
.y23_c00464{bottom:474.034500px;}
.y2e_c00464{bottom:490.830000px;}
.y22_c00464{bottom:491.856000px;}
.y21_c00464{bottom:542.475000px;}
.y20_c00464{bottom:565.060500px;}
.y1f_c00464{bottom:588.018000px;}
.y1e_c00464{bottom:610.287000px;}
.y1d_c00464{bottom:632.428500px;}
.y1c_c00464{bottom:655.479000px;}
.y1b_c00464{bottom:677.923500px;}
.yf_c00464{bottom:698.760000px;}
.y10_c00464{bottom:698.847516px;}
.y11_c00464{bottom:699.045864px;}
.y12_c00464{bottom:699.324564px;}
.y13_c00464{bottom:699.408588px;}
.y14_c00464{bottom:699.690156px;}
.y15_c00464{bottom:699.974460px;}
.y16_c00464{bottom:700.377792px;}
.y17_c00464{bottom:700.473432px;}
.y18_c00464{bottom:700.611684px;}
.y19_c00464{bottom:700.901016px;}
.y1a_c00464{bottom:701.214408px;}
.ye_c00464{bottom:723.274500px;}
.yd_c00464{bottom:746.671500px;}
.yc_c00464{bottom:769.125000px;}
.y4_c00464{bottom:790.291500px;}
.y5_c00464{bottom:790.615626px;}
.y6_c00464{bottom:790.845720px;}
.y7_c00464{bottom:791.437974px;}
.y8_c00464{bottom:791.756250px;}
.y9_c00464{bottom:792.164310px;}
.ya_c00464{bottom:792.537036px;}
.yb_c00464{bottom:793.156524px;}
.y3_c00464{bottom:815.584500px;}
.y2_c00464{bottom:903.469500px;}
.y1_c00464{bottom:921.562500px;}
.h10_c00464{height:47.250000px;}
.h13_c00464{height:48.300000px;}
.hd_c00464{height:49.350000px;}
.hf_c00464{height:50.400000px;}
.h11_c00464{height:51.450000px;}
.he_c00464{height:52.500000px;}
.h14_c00464{height:53.550000px;}
.h12_c00464{height:54.600000px;}
.h15_c00464{height:55.650000px;}
.h2_c00464{height:60.900000px;}
.h7_c00464{height:63.000000px;}
.h6_c00464{height:66.150000px;}
.hc_c00464{height:68.250000px;}
.h9_c00464{height:68.252184px;}
.ha_c00464{height:69.300000px;}
.h4_c00464{height:70.350000px;}
.hb_c00464{height:72.450000px;}
.h5_c00464{height:72.455216px;}
.h8_c00464{height:97.650000px;}
.h3_c00464{height:103.950000px;}
.h1_c00464{height:1005.000000px;}
.h0_c00464{height:1005.150000px;}
.w0_c00464{width:715.200000px;}
.w1_c00464{width:715.500000px;}
.x0_c00464{left:0.000000px;}
.x97_c00464{left:88.020000px;}
.xb1_c00464{left:93.148500px;}
.xa8_c00464{left:101.332500px;}
.x8a_c00464{left:102.870000px;}
.x91_c00464{left:103.950000px;}
.xa1_c00464{left:115.020000px;}
.xb2_c00464{left:119.608500px;}
.xa0_c00464{left:121.893000px;}
.x92_c00464{left:125.550000px;}
.x98_c00464{left:127.440000px;}
.x2a_c00464{left:129.649500px;}
.x7f_c00464{left:130.680000px;}
.x8b_c00464{left:135.540000px;}
.x3c_c00464{left:138.510000px;}
.x2b_c00464{left:140.589000px;}
.x8_c00464{left:141.750000px;}
.x80_c00464{left:146.880000px;}
.x86_c00464{left:148.500000px;}
.xb4_c00464{left:151.738500px;}
.x84_c00464{left:156.330000px;}
.xa2_c00464{left:157.950000px;}
.x9f_c00464{left:159.300000px;}
.x3d_c00464{left:160.650000px;}
.x35_c00464{left:161.730000px;}
.x19_c00464{left:166.050000px;}
.x9_c00464{left:167.670000px;}
.x13_c00464{left:169.729500px;}
.x93_c00464{left:176.580000px;}
.xb3_c00464{left:177.928500px;}
.x81_c00464{left:180.090000px;}
.x44_c00464{left:181.170000px;}
.x1f_c00464{left:182.250000px;}
.x99_c00464{left:183.600000px;}
.x85_c00464{left:185.220000px;}
.x27_c00464{left:187.380000px;}
.x14_c00464{left:188.904000px;}
.xac_c00464{left:191.698500px;}
.x3e_c00464{left:193.860000px;}
.x36_c00464{left:198.180000px;}
.x2c_c00464{left:200.220000px;}
.x20_c00464{left:202.230000px;}
.x8c_c00464{left:206.280000px;}
.x9a_c00464{left:208.170000px;}
.x2d_c00464{left:210.723000px;}
.xb0_c00464{left:213.028500px;}
.x1a_c00464{left:214.380000px;}
.xad_c00464{left:215.728500px;}
.xa9_c00464{left:217.717500px;}
.xa_c00464{left:219.510000px;}
.x89_c00464{left:220.860000px;}
.x46_c00464{left:222.750000px;}
.x3f_c00464{left:223.830000px;}
.x9d_c00464{left:227.070000px;}
.x4b_c00464{left:230.850000px;}
.x8e_c00464{left:232.470000px;}
.x9b_c00464{left:235.980000px;}
.x15_c00464{left:238.258500px;}
.xaa_c00464{left:240.135000px;}
.x45_c00464{left:243.270000px;}
.x2e_c00464{left:245.919000px;}
.x40_c00464{left:247.860000px;}
.x9c_c00464{left:250.020000px;}
.x94_c00464{left:251.370000px;}
.x47_c00464{left:252.450000px;}
.xb8_c00464{left:254.068500px;}
.x21_c00464{left:257.040000px;}
.xb5_c00464{left:258.118500px;}
.x48_c00464{left:259.200000px;}
.xb_c00464{left:261.360000px;}
.x16_c00464{left:264.781500px;}
.x82_c00464{left:267.300000px;}
.x51_c00464{left:270.810000px;}
.x95_c00464{left:271.890000px;}
.x37_c00464{left:274.320000px;}
.xa3_c00464{left:275.940000px;}
.x28_c00464{left:278.100000px;}
.xc_c00464{left:280.260000px;}
.x2f_c00464{left:281.457000px;}
.xb6_c00464{left:284.038500px;}
.x87_c00464{left:287.010000px;}
.x96_c00464{left:288.900000px;}
.x8f_c00464{left:289.980000px;}
.xae_c00464{left:291.058500px;}
.x49_c00464{left:292.140000px;}
.x4c_c00464{left:295.920000px;}
.x83_c00464{left:297.270000px;}
.x17_c00464{left:298.786500px;}
.x22_c00464{left:300.780000px;}
.x88_c00464{left:303.750000px;}
.x90_c00464{left:305.640000px;}
.x8d_c00464{left:306.990000px;}
.x29_c00464{left:311.040000px;}
.xa4_c00464{left:313.200000px;}
.x1b_c00464{left:315.090000px;}
.x23_c00464{left:318.060000px;}
.x9e_c00464{left:320.220000px;}
.x38_c00464{left:321.840000px;}
.xd_c00464{left:329.130000px;}
.x30_c00464{left:331.873500px;}
.x55_c00464{left:335.340000px;}
.x39_c00464{left:337.230000px;}
.x1c_c00464{left:339.660000px;}
.x31_c00464{left:343.828500px;}
.x24_c00464{left:346.140000px;}
.x41_c00464{left:347.490000px;}
.x5e_c00464{left:348.840000px;}
.xb7_c00464{left:351.268500px;}
.xe_c00464{left:353.430000px;}
.x5f_c00464{left:354.510000px;}
.x66_c00464{left:355.590000px;}
.x3a_c00464{left:356.940000px;}
.x32_c00464{left:361.110000px;}
.x4d_c00464{left:367.740000px;}
.x79_c00464{left:372.600000px;}
.x78_c00464{left:375.030000px;}
.x42_c00464{left:376.380000px;}
.xf_c00464{left:378.270000px;}
.x7a_c00464{left:380.430000px;}
.x18_c00464{left:381.471000px;}
.x72_c00464{left:383.670000px;}
.x60_c00464{left:384.750000px;}
.x6e_c00464{left:386.370000px;}
.x10_c00464{left:393.120000px;}
.x67_c00464{left:395.550000px;}
.x33_c00464{left:397.276500px;}
.x4a_c00464{left:399.060000px;}
.x1d_c00464{left:400.950000px;}
.x4e_c00464{left:402.300000px;}
.x1_c00464{left:405.540000px;}
.x7e_c00464{left:406.890000px;}
.x68_c00464{left:408.240000px;}
.x56_c00464{left:410.130000px;}
.x6_c00464{left:412.020000px;}
.x7b_c00464{left:417.420000px;}
.x73_c00464{left:418.500000px;}
.x43_c00464{left:420.930000px;}
.x6c_c00464{left:422.280000px;}
.x77_c00464{left:423.900000px;}
.x61_c00464{left:425.790000px;}
.x52_c00464{left:431.730000px;}
.x7c_c00464{left:434.430000px;}
.x34_c00464{left:436.450500px;}
.x4f_c00464{left:440.100000px;}
.x11_c00464{left:441.450000px;}
.x63_c00464{left:443.070000px;}
.xa5_c00464{left:444.420000px;}
.x3b_c00464{left:446.580000px;}
.x5a_c00464{left:448.470000px;}
.x25_c00464{left:451.710000px;}
.x69_c00464{left:457.650000px;}
.x53_c00464{left:459.540000px;}
.x1e_c00464{left:465.480000px;}
.x74_c00464{left:467.370000px;}
.xab_c00464{left:468.811500px;}
.x2_c00464{left:474.120000px;}
.xa6_c00464{left:476.280000px;}
.x5b_c00464{left:477.360000px;}
.x62_c00464{left:481.680000px;}
.x57_c00464{left:484.110000px;}
.x5c_c00464{left:486.270000px;}
.x26_c00464{left:488.160000px;}
.x12_c00464{left:489.510000px;}
.x64_c00464{left:500.310000px;}
.x75_c00464{left:501.930000px;}
.xaf_c00464{left:506.788500px;}
.x6a_c00464{left:510.300000px;}
.x65_c00464{left:514.350000px;}
.x54_c00464{left:517.050000px;}
.x6f_c00464{left:520.560000px;}
.xa7_c00464{left:525.150000px;}
.x50_c00464{left:531.360000px;}
.x70_c00464{left:535.680000px;}
.x58_c00464{left:542.700000px;}
.x3_c00464{left:544.590000px;}
.x7d_c00464{left:548.100000px;}
.x76_c00464{left:550.530000px;}
.x5d_c00464{left:553.500000px;}
.x71_c00464{left:558.630000px;}
.x6d_c00464{left:560.790000px;}
.x59_c00464{left:564.030000px;}
.x7_c00464{left:568.080000px;}
.x6b_c00464{left:570.510000px;}
.x4_c00464{left:603.720000px;}
.x5_c00464{left:622.890000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fse_c00464{font-size:42.000000pt;}
.fs11_c00464{font-size:42.933333pt;}
.fsb_c00464{font-size:43.866667pt;}
.fsd_c00464{font-size:44.800000pt;}
.fsf_c00464{font-size:45.733333pt;}
.fsc_c00464{font-size:46.666667pt;}
.fs12_c00464{font-size:47.600000pt;}
.fs10_c00464{font-size:48.533333pt;}
.fs13_c00464{font-size:49.466667pt;}
.fs0_c00464{font-size:54.133333pt;}
.fs5_c00464{font-size:56.000000pt;}
.fs4_c00464{font-size:58.800000pt;}
.fsa_c00464{font-size:60.666667pt;}
.fs7_c00464{font-size:60.668608pt;}
.fs8_c00464{font-size:61.600000pt;}
.fs2_c00464{font-size:62.533333pt;}
.fs9_c00464{font-size:64.400000pt;}
.fs3_c00464{font-size:64.404637pt;}
.fs6_c00464{font-size:86.800000pt;}
.fs1_c00464{font-size:92.400000pt;}
.y0_c00464{bottom:0.000000pt;}
.y5f_c00464{bottom:133.493333pt;}
.y5e_c00464{bottom:149.460000pt;}
.y5d_c00464{bottom:164.997333pt;}
.y5c_c00464{bottom:181.466667pt;}
.y5b_c00464{bottom:197.580000pt;}
.y4d_c00464{bottom:212.161333pt;}
.y4e_c00464{bottom:212.537333pt;}
.y4f_c00464{bottom:212.770667pt;}
.y50_c00464{bottom:212.906667pt;}
.y51_c00464{bottom:213.273333pt;}
.y52_c00464{bottom:213.350667pt;}
.y53_c00464{bottom:213.744000pt;}
.y54_c00464{bottom:214.045333pt;}
.y55_c00464{bottom:214.173333pt;}
.y56_c00464{bottom:214.438667pt;}
.y57_c00464{bottom:214.821333pt;}
.y58_c00464{bottom:215.102667pt;}
.y59_c00464{bottom:215.141333pt;}
.y5a_c00464{bottom:215.372000pt;}
.y41_c00464{bottom:228.001333pt;}
.y42_c00464{bottom:228.318667pt;}
.y43_c00464{bottom:228.465333pt;}
.y44_c00464{bottom:228.854667pt;}
.y45_c00464{bottom:228.932000pt;}
.y46_c00464{bottom:229.201333pt;}
.y47_c00464{bottom:229.354667pt;}
.y48_c00464{bottom:229.500000pt;}
.y49_c00464{bottom:229.692000pt;}
.y4a_c00464{bottom:229.908000pt;}
.y4b_c00464{bottom:230.405333pt;}
.y4c_c00464{bottom:230.712000pt;}
.y40_c00464{bottom:245.596000pt;}
.y39_c00464{bottom:259.922667pt;}
.y3a_c00464{bottom:260.137333pt;}
.y3b_c00464{bottom:260.321333pt;}
.y3c_c00464{bottom:260.661333pt;}
.y3d_c00464{bottom:261.101333pt;}
.y3e_c00464{bottom:261.294667pt;}
.y3f_c00464{bottom:261.578667pt;}
.y2d_c00464{bottom:263.432000pt;}
.y38_c00464{bottom:276.696000pt;}
.y2c_c00464{bottom:278.522667pt;}
.y37_c00464{bottom:292.834667pt;}
.y2b_c00464{bottom:294.128000pt;}
.y36_c00464{bottom:308.553333pt;}
.y2a_c00464{bottom:310.297333pt;}
.y35_c00464{bottom:324.381333pt;}
.y29_c00464{bottom:326.002667pt;}
.y34_c00464{bottom:340.568000pt;}
.y28_c00464{bottom:341.782667pt;}
.y33_c00464{bottom:356.485333pt;}
.y27_c00464{bottom:357.940000pt;}
.y32_c00464{bottom:372.638667pt;}
.y26_c00464{bottom:373.641333pt;}
.y31_c00464{bottom:389.136000pt;}
.y25_c00464{bottom:389.386667pt;}
.y30_c00464{bottom:404.442667pt;}
.y24_c00464{bottom:405.114667pt;}
.y2f_c00464{bottom:420.237333pt;}
.y23_c00464{bottom:421.364000pt;}
.y2e_c00464{bottom:436.293333pt;}
.y22_c00464{bottom:437.205333pt;}
.y21_c00464{bottom:482.200000pt;}
.y20_c00464{bottom:502.276000pt;}
.y1f_c00464{bottom:522.682667pt;}
.y1e_c00464{bottom:542.477333pt;}
.y1d_c00464{bottom:562.158667pt;}
.y1c_c00464{bottom:582.648000pt;}
.y1b_c00464{bottom:602.598667pt;}
.yf_c00464{bottom:621.120000pt;}
.y10_c00464{bottom:621.197792pt;}
.y11_c00464{bottom:621.374101pt;}
.y12_c00464{bottom:621.621835pt;}
.y13_c00464{bottom:621.696523pt;}
.y14_c00464{bottom:621.946805pt;}
.y15_c00464{bottom:622.199520pt;}
.y16_c00464{bottom:622.558037pt;}
.y17_c00464{bottom:622.643051pt;}
.y18_c00464{bottom:622.765941pt;}
.y19_c00464{bottom:623.023125pt;}
.y1a_c00464{bottom:623.301696pt;}
.ye_c00464{bottom:642.910667pt;}
.yd_c00464{bottom:663.708000pt;}
.yc_c00464{bottom:683.666667pt;}
.y4_c00464{bottom:702.481333pt;}
.y5_c00464{bottom:702.769445pt;}
.y6_c00464{bottom:702.973973pt;}
.y7_c00464{bottom:703.500421pt;}
.y8_c00464{bottom:703.783333pt;}
.y9_c00464{bottom:704.146053pt;}
.ya_c00464{bottom:704.477365pt;}
.yb_c00464{bottom:705.028021pt;}
.y3_c00464{bottom:724.964000pt;}
.y2_c00464{bottom:803.084000pt;}
.y1_c00464{bottom:819.166667pt;}
.h10_c00464{height:42.000000pt;}
.h13_c00464{height:42.933333pt;}
.hd_c00464{height:43.866667pt;}
.hf_c00464{height:44.800000pt;}
.h11_c00464{height:45.733333pt;}
.he_c00464{height:46.666667pt;}
.h14_c00464{height:47.600000pt;}
.h12_c00464{height:48.533333pt;}
.h15_c00464{height:49.466667pt;}
.h2_c00464{height:54.133333pt;}
.h7_c00464{height:56.000000pt;}
.h6_c00464{height:58.800000pt;}
.hc_c00464{height:60.666667pt;}
.h9_c00464{height:60.668608pt;}
.ha_c00464{height:61.600000pt;}
.h4_c00464{height:62.533333pt;}
.hb_c00464{height:64.400000pt;}
.h5_c00464{height:64.404637pt;}
.h8_c00464{height:86.800000pt;}
.h3_c00464{height:92.400000pt;}
.h1_c00464{height:893.333333pt;}
.h0_c00464{height:893.466667pt;}
.w0_c00464{width:635.733333pt;}
.w1_c00464{width:636.000000pt;}
.x0_c00464{left:0.000000pt;}
.x97_c00464{left:78.240000pt;}
.xb1_c00464{left:82.798667pt;}
.xa8_c00464{left:90.073333pt;}
.x8a_c00464{left:91.440000pt;}
.x91_c00464{left:92.400000pt;}
.xa1_c00464{left:102.240000pt;}
.xb2_c00464{left:106.318667pt;}
.xa0_c00464{left:108.349333pt;}
.x92_c00464{left:111.600000pt;}
.x98_c00464{left:113.280000pt;}
.x2a_c00464{left:115.244000pt;}
.x7f_c00464{left:116.160000pt;}
.x8b_c00464{left:120.480000pt;}
.x3c_c00464{left:123.120000pt;}
.x2b_c00464{left:124.968000pt;}
.x8_c00464{left:126.000000pt;}
.x80_c00464{left:130.560000pt;}
.x86_c00464{left:132.000000pt;}
.xb4_c00464{left:134.878667pt;}
.x84_c00464{left:138.960000pt;}
.xa2_c00464{left:140.400000pt;}
.x9f_c00464{left:141.600000pt;}
.x3d_c00464{left:142.800000pt;}
.x35_c00464{left:143.760000pt;}
.x19_c00464{left:147.600000pt;}
.x9_c00464{left:149.040000pt;}
.x13_c00464{left:150.870667pt;}
.x93_c00464{left:156.960000pt;}
.xb3_c00464{left:158.158667pt;}
.x81_c00464{left:160.080000pt;}
.x44_c00464{left:161.040000pt;}
.x1f_c00464{left:162.000000pt;}
.x99_c00464{left:163.200000pt;}
.x85_c00464{left:164.640000pt;}
.x27_c00464{left:166.560000pt;}
.x14_c00464{left:167.914667pt;}
.xac_c00464{left:170.398667pt;}
.x3e_c00464{left:172.320000pt;}
.x36_c00464{left:176.160000pt;}
.x2c_c00464{left:177.973333pt;}
.x20_c00464{left:179.760000pt;}
.x8c_c00464{left:183.360000pt;}
.x9a_c00464{left:185.040000pt;}
.x2d_c00464{left:187.309333pt;}
.xb0_c00464{left:189.358667pt;}
.x1a_c00464{left:190.560000pt;}
.xad_c00464{left:191.758667pt;}
.xa9_c00464{left:193.526667pt;}
.xa_c00464{left:195.120000pt;}
.x89_c00464{left:196.320000pt;}
.x46_c00464{left:198.000000pt;}
.x3f_c00464{left:198.960000pt;}
.x9d_c00464{left:201.840000pt;}
.x4b_c00464{left:205.200000pt;}
.x8e_c00464{left:206.640000pt;}
.x9b_c00464{left:209.760000pt;}
.x15_c00464{left:211.785333pt;}
.xaa_c00464{left:213.453333pt;}
.x45_c00464{left:216.240000pt;}
.x2e_c00464{left:218.594667pt;}
.x40_c00464{left:220.320000pt;}
.x9c_c00464{left:222.240000pt;}
.x94_c00464{left:223.440000pt;}
.x47_c00464{left:224.400000pt;}
.xb8_c00464{left:225.838667pt;}
.x21_c00464{left:228.480000pt;}
.xb5_c00464{left:229.438667pt;}
.x48_c00464{left:230.400000pt;}
.xb_c00464{left:232.320000pt;}
.x16_c00464{left:235.361333pt;}
.x82_c00464{left:237.600000pt;}
.x51_c00464{left:240.720000pt;}
.x95_c00464{left:241.680000pt;}
.x37_c00464{left:243.840000pt;}
.xa3_c00464{left:245.280000pt;}
.x28_c00464{left:247.200000pt;}
.xc_c00464{left:249.120000pt;}
.x2f_c00464{left:250.184000pt;}
.xb6_c00464{left:252.478667pt;}
.x87_c00464{left:255.120000pt;}
.x96_c00464{left:256.800000pt;}
.x8f_c00464{left:257.760000pt;}
.xae_c00464{left:258.718667pt;}
.x49_c00464{left:259.680000pt;}
.x4c_c00464{left:263.040000pt;}
.x83_c00464{left:264.240000pt;}
.x17_c00464{left:265.588000pt;}
.x22_c00464{left:267.360000pt;}
.x88_c00464{left:270.000000pt;}
.x90_c00464{left:271.680000pt;}
.x8d_c00464{left:272.880000pt;}
.x29_c00464{left:276.480000pt;}
.xa4_c00464{left:278.400000pt;}
.x1b_c00464{left:280.080000pt;}
.x23_c00464{left:282.720000pt;}
.x9e_c00464{left:284.640000pt;}
.x38_c00464{left:286.080000pt;}
.xd_c00464{left:292.560000pt;}
.x30_c00464{left:294.998667pt;}
.x55_c00464{left:298.080000pt;}
.x39_c00464{left:299.760000pt;}
.x1c_c00464{left:301.920000pt;}
.x31_c00464{left:305.625333pt;}
.x24_c00464{left:307.680000pt;}
.x41_c00464{left:308.880000pt;}
.x5e_c00464{left:310.080000pt;}
.xb7_c00464{left:312.238667pt;}
.xe_c00464{left:314.160000pt;}
.x5f_c00464{left:315.120000pt;}
.x66_c00464{left:316.080000pt;}
.x3a_c00464{left:317.280000pt;}
.x32_c00464{left:320.986667pt;}
.x4d_c00464{left:326.880000pt;}
.x79_c00464{left:331.200000pt;}
.x78_c00464{left:333.360000pt;}
.x42_c00464{left:334.560000pt;}
.xf_c00464{left:336.240000pt;}
.x7a_c00464{left:338.160000pt;}
.x18_c00464{left:339.085333pt;}
.x72_c00464{left:341.040000pt;}
.x60_c00464{left:342.000000pt;}
.x6e_c00464{left:343.440000pt;}
.x10_c00464{left:349.440000pt;}
.x67_c00464{left:351.600000pt;}
.x33_c00464{left:353.134667pt;}
.x4a_c00464{left:354.720000pt;}
.x1d_c00464{left:356.400000pt;}
.x4e_c00464{left:357.600000pt;}
.x1_c00464{left:360.480000pt;}
.x7e_c00464{left:361.680000pt;}
.x68_c00464{left:362.880000pt;}
.x56_c00464{left:364.560000pt;}
.x6_c00464{left:366.240000pt;}
.x7b_c00464{left:371.040000pt;}
.x73_c00464{left:372.000000pt;}
.x43_c00464{left:374.160000pt;}
.x6c_c00464{left:375.360000pt;}
.x77_c00464{left:376.800000pt;}
.x61_c00464{left:378.480000pt;}
.x52_c00464{left:383.760000pt;}
.x7c_c00464{left:386.160000pt;}
.x34_c00464{left:387.956000pt;}
.x4f_c00464{left:391.200000pt;}
.x11_c00464{left:392.400000pt;}
.x63_c00464{left:393.840000pt;}
.xa5_c00464{left:395.040000pt;}
.x3b_c00464{left:396.960000pt;}
.x5a_c00464{left:398.640000pt;}
.x25_c00464{left:401.520000pt;}
.x69_c00464{left:406.800000pt;}
.x53_c00464{left:408.480000pt;}
.x1e_c00464{left:413.760000pt;}
.x74_c00464{left:415.440000pt;}
.xab_c00464{left:416.721333pt;}
.x2_c00464{left:421.440000pt;}
.xa6_c00464{left:423.360000pt;}
.x5b_c00464{left:424.320000pt;}
.x62_c00464{left:428.160000pt;}
.x57_c00464{left:430.320000pt;}
.x5c_c00464{left:432.240000pt;}
.x26_c00464{left:433.920000pt;}
.x12_c00464{left:435.120000pt;}
.x64_c00464{left:444.720000pt;}
.x75_c00464{left:446.160000pt;}
.xaf_c00464{left:450.478667pt;}
.x6a_c00464{left:453.600000pt;}
.x65_c00464{left:457.200000pt;}
.x54_c00464{left:459.600000pt;}
.x6f_c00464{left:462.720000pt;}
.xa7_c00464{left:466.800000pt;}
.x50_c00464{left:472.320000pt;}
.x70_c00464{left:476.160000pt;}
.x58_c00464{left:482.400000pt;}
.x3_c00464{left:484.080000pt;}
.x7d_c00464{left:487.200000pt;}
.x76_c00464{left:489.360000pt;}
.x5d_c00464{left:492.000000pt;}
.x71_c00464{left:496.560000pt;}
.x6d_c00464{left:498.480000pt;}
.x59_c00464{left:501.360000pt;}
.x7_c00464{left:504.960000pt;}
.x6b_c00464{left:507.120000pt;}
.x4_c00464{left:536.640000pt;}
.x5_c00464{left:553.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_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_4ab86c84425994a9e06b01c2.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;}
.m70_c00465{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);}
.m13_c00465{transform:matrix(0.016909,-0.000186,0.002750,0.249985,0,0);-ms-transform:matrix(0.016909,-0.000186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.016909,-0.000186,0.002750,0.249985,0,0);}
.m8e_c00465{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.mac_c00465{transform:matrix(0.051840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051840,0.000000,0.000000,0.250000,0,0);}
.m6f_c00465{transform:matrix(0.104710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104710,0.000000,0.000000,0.250000,0,0);}
.m6e_c00465{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);}
.m76_c00465{transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);}
.m84_c00465{transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);}
.m7e_c00465{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);}
.me_c00465{transform:matrix(0.146998,-0.001470,0.002500,0.249988,0,0);-ms-transform:matrix(0.146998,-0.001470,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146998,-0.001470,0.002500,0.249988,0,0);}
.mc_c00465{transform:matrix(0.147218,-0.001472,0.002500,0.249988,0,0);-ms-transform:matrix(0.147218,-0.001472,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147218,-0.001472,0.002500,0.249988,0,0);}
.m16_c00465{transform:matrix(0.151266,-0.001664,0.002750,0.249985,0,0);-ms-transform:matrix(0.151266,-0.001664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151266,-0.001664,0.002750,0.249985,0,0);}
.m4b_c00465{transform:matrix(0.154292,-0.001543,0.002500,0.249988,0,0);-ms-transform:matrix(0.154292,-0.001543,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154292,-0.001543,0.002500,0.249988,0,0);}
.m3_c00465{transform:matrix(0.157652,-0.001577,0.002500,0.249988,0,0);-ms-transform:matrix(0.157652,-0.001577,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157652,-0.001577,0.002500,0.249988,0,0);}
.m55_c00465{transform:matrix(0.160772,-0.001608,0.002500,0.249988,0,0);-ms-transform:matrix(0.160772,-0.001608,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160772,-0.001608,0.002500,0.249988,0,0);}
.m91_c00465{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);}
.m92_c00465{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);}
.m54_c00465{transform:matrix(0.164377,-0.001644,0.002500,0.249988,0,0);-ms-transform:matrix(0.164377,-0.001644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164377,-0.001644,0.002500,0.249988,0,0);}
.m20_c00465{transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);-ms-transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165115,-0.001816,0.002750,0.249985,0,0);}
.m38_c00465{transform:matrix(0.165190,-0.001817,0.002750,0.249985,0,0);-ms-transform:matrix(0.165190,-0.001817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165190,-0.001817,0.002750,0.249985,0,0);}
.m53_c00465{transform:matrix(0.165837,-0.001658,0.002500,0.249988,0,0);-ms-transform:matrix(0.165837,-0.001658,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165837,-0.001658,0.002500,0.249988,0,0);}
.m25_c00465{transform:matrix(0.167710,-0.001845,0.002750,0.249985,0,0);-ms-transform:matrix(0.167710,-0.001845,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167710,-0.001845,0.002750,0.249985,0,0);}
.m29_c00465{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);}
.m1d_c00465{transform:matrix(0.169105,-0.001860,0.002750,0.249985,0,0);-ms-transform:matrix(0.169105,-0.001860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169105,-0.001860,0.002750,0.249985,0,0);}
.m5_c00465{transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);-ms-transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169707,-0.001697,0.002500,0.249988,0,0);}
.m4c_c00465{transform:matrix(0.169827,-0.001698,0.002500,0.249988,0,0);-ms-transform:matrix(0.169827,-0.001698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169827,-0.001698,0.002500,0.249988,0,0);}
.m23_c00465{transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);}
.ma4_c00465{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.171415,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171415,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171415,-0.001886,0.002750,0.249985,0,0);}
.m96_c00465{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);}
.m93_c00465{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);}
.m78_c00465{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);}
.md_c00465{transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);-ms-transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174441,-0.001744,0.002500,0.249988,0,0);}
.m83_c00465{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);}
.m4a_c00465{transform:matrix(0.174771,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174771,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174771,-0.001748,0.002500,0.249988,0,0);}
.m8c_c00465{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);}
.m7c_c00465{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);}
.m85_c00465{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);}
.ma9_c00465{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);}
.m7d_c00465{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);}
.m4_c00465{transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);}
.m35_c00465{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);}
.m8f_c00465{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m4e_c00465{transform:matrix(0.179566,-0.001796,0.002500,0.249988,0,0);-ms-transform:matrix(0.179566,-0.001796,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179566,-0.001796,0.002500,0.249988,0,0);}
.m77_c00465{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);}
.m58_c00465{transform:matrix(0.180401,-0.001804,0.002500,0.249988,0,0);-ms-transform:matrix(0.180401,-0.001804,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180401,-0.001804,0.002500,0.249988,0,0);}
.m57_c00465{transform:matrix(0.180926,-0.001809,0.002500,0.249988,0,0);-ms-transform:matrix(0.180926,-0.001809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180926,-0.001809,0.002500,0.249988,0,0);}
.m4d_c00465{transform:matrix(0.180931,-0.001809,0.002500,0.249988,0,0);-ms-transform:matrix(0.180931,-0.001809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180931,-0.001809,0.002500,0.249988,0,0);}
.m36_c00465{transform:matrix(0.182229,-0.002005,0.002750,0.249985,0,0);-ms-transform:matrix(0.182229,-0.002005,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182229,-0.002005,0.002750,0.249985,0,0);}
.maa_c00465{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);}
.m2b_c00465{transform:matrix(0.183374,-0.002017,0.002750,0.249985,0,0);-ms-transform:matrix(0.183374,-0.002017,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183374,-0.002017,0.002750,0.249985,0,0);}
.m56_c00465{transform:matrix(0.185886,-0.001859,0.002500,0.249988,0,0);-ms-transform:matrix(0.185886,-0.001859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185886,-0.001859,0.002500,0.249988,0,0);}
.m88_c00465{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);}
.mb3_c00465{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);}
.mae_c00465{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);}
.m2e_c00465{transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188874,-0.002078,0.002750,0.249985,0,0);}
.m5f_c00465{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);}
.ma7_c00465{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);}
.mab_c00465{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);}
.m46_c00465{transform:matrix(0.191848,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191848,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191848,-0.002110,0.002750,0.249985,0,0);}
.m1a_c00465{transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192678,-0.002119,0.002750,0.249985,0,0);}
.m1c_c00465{transform:matrix(0.193713,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193713,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193713,-0.002131,0.002750,0.249985,0,0);}
.m8_c00465{transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);}
.m7b_c00465{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);}
.m2c_c00465{transform:matrix(0.194618,-0.002141,0.002750,0.249985,0,0);-ms-transform:matrix(0.194618,-0.002141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194618,-0.002141,0.002750,0.249985,0,0);}
.mf_c00465{transform:matrix(0.194955,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.194955,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194955,-0.001950,0.002500,0.249988,0,0);}
.m19_c00465{transform:matrix(0.195323,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195323,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195323,-0.002149,0.002750,0.249985,0,0);}
.m17_c00465{transform:matrix(0.195758,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195758,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195758,-0.002153,0.002750,0.249985,0,0);}
.m15_c00465{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);}
.m94_c00465{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);}
.m1b_c00465{transform:matrix(0.197008,-0.002167,0.002750,0.249985,0,0);-ms-transform:matrix(0.197008,-0.002167,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197008,-0.002167,0.002750,0.249985,0,0);}
.m51_c00465{transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);-ms-transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197155,-0.001972,0.002500,0.249988,0,0);}
.m52_c00465{transform:matrix(0.198015,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.198015,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198015,-0.001980,0.002500,0.249988,0,0);}
.m1e_c00465{transform:matrix(0.199943,-0.002199,0.002750,0.249985,0,0);-ms-transform:matrix(0.199943,-0.002199,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199943,-0.002199,0.002750,0.249985,0,0);}
.m2f_c00465{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);}
.m86_c00465{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);}
.m32_c00465{transform:matrix(0.202378,-0.002226,0.002750,0.249985,0,0);-ms-transform:matrix(0.202378,-0.002226,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202378,-0.002226,0.002750,0.249985,0,0);}
.m2a_c00465{transform:matrix(0.202533,-0.002228,0.002750,0.249985,0,0);-ms-transform:matrix(0.202533,-0.002228,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202533,-0.002228,0.002750,0.249985,0,0);}
.m73_c00465{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);}
.m3e_c00465{transform:matrix(0.203303,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203303,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203303,-0.002236,0.002750,0.249985,0,0);}
.m39_c00465{transform:matrix(0.204113,-0.002245,0.002750,0.249985,0,0);-ms-transform:matrix(0.204113,-0.002245,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204113,-0.002245,0.002750,0.249985,0,0);}
.m18_c00465{transform:matrix(0.204253,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204253,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204253,-0.002247,0.002750,0.249985,0,0);}
.m8a_c00465{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);-ms-transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205245,-0.002052,0.002500,0.249988,0,0);}
.m95_c00465{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);}
.mb2_c00465{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);}
.m26_c00465{transform:matrix(0.207462,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207462,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207462,-0.002282,0.002750,0.249985,0,0);}
.m21_c00465{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);}
.m34_c00465{transform:matrix(0.208662,-0.002295,0.002750,0.249985,0,0);-ms-transform:matrix(0.208662,-0.002295,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208662,-0.002295,0.002750,0.249985,0,0);}
.m6_c00465{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);}
.ma3_c00465{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);}
.m9c_c00465{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);}
.m7a_c00465{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m98_c00465{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);}
.m33_c00465{transform:matrix(0.211782,-0.002330,0.002750,0.249985,0,0);-ms-transform:matrix(0.211782,-0.002330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211782,-0.002330,0.002750,0.249985,0,0);}
.m89_c00465{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);}
.maf_c00465{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);}
.m3c_c00465{transform:matrix(0.213452,-0.002348,0.002750,0.249985,0,0);-ms-transform:matrix(0.213452,-0.002348,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213452,-0.002348,0.002750,0.249985,0,0);}
.m2d_c00465{transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);}
.m9a_c00465{transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218170,0.000000,0.000000,0.250000,0,0);}
.ma2_c00465{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);}
.ma_c00465{transform:matrix(0.222439,-0.002224,0.002500,0.249988,0,0);-ms-transform:matrix(0.222439,-0.002224,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222439,-0.002224,0.002500,0.249988,0,0);}
.m41_c00465{transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);-ms-transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);}
.m3b_c00465{transform:matrix(0.222782,-0.002451,0.002750,0.249985,0,0);-ms-transform:matrix(0.222782,-0.002451,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222782,-0.002451,0.002750,0.249985,0,0);}
.m49_c00465{transform:matrix(0.223734,-0.002237,0.002500,0.249988,0,0);-ms-transform:matrix(0.223734,-0.002237,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223734,-0.002237,0.002500,0.249988,0,0);}
.mad_c00465{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);}
.m72_c00465{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);}
.m28_c00465{transform:matrix(0.226276,-0.002489,0.002750,0.249985,0,0);-ms-transform:matrix(0.226276,-0.002489,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226276,-0.002489,0.002750,0.249985,0,0);}
.m4f_c00465{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);}
.m37_c00465{transform:matrix(0.228251,-0.002511,0.002750,0.249985,0,0);-ms-transform:matrix(0.228251,-0.002511,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228251,-0.002511,0.002750,0.249985,0,0);}
.m40_c00465{transform:matrix(0.228686,-0.002516,0.002750,0.249985,0,0);-ms-transform:matrix(0.228686,-0.002516,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228686,-0.002516,0.002750,0.249985,0,0);}
.m99_c00465{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);}
.m74_c00465{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);}
.mb_c00465{transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-ms-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229984,-0.002300,0.002500,0.249988,0,0);}
.m3a_c00465{transform:matrix(0.230096,-0.002531,0.002750,0.249985,0,0);-ms-transform:matrix(0.230096,-0.002531,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230096,-0.002531,0.002750,0.249985,0,0);}
.m45_c00465{transform:matrix(0.231036,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.231036,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231036,-0.002541,0.002750,0.249985,0,0);}
.m8b_c00465{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);}
.m3d_c00465{transform:matrix(0.231771,-0.002549,0.002750,0.249985,0,0);-ms-transform:matrix(0.231771,-0.002549,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231771,-0.002549,0.002750,0.249985,0,0);}
.m9d_c00465{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);}
.m1_c00465{transform:matrix(0.232933,-0.002329,0.002500,0.249988,0,0);-ms-transform:matrix(0.232933,-0.002329,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232933,-0.002329,0.002500,0.249988,0,0);}
.m11_c00465{transform:matrix(0.234608,-0.002346,0.002500,0.249988,0,0);-ms-transform:matrix(0.234608,-0.002346,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234608,-0.002346,0.002500,0.249988,0,0);}
.m7f_c00465{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);}
.ma6_c00465{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);}
.m44_c00465{transform:matrix(0.236981,-0.002607,0.002750,0.249985,0,0);-ms-transform:matrix(0.236981,-0.002607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236981,-0.002607,0.002750,0.249985,0,0);}
.m0_c00465{transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);-ms-transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238608,-0.002386,0.002500,0.249988,0,0);}
.m48_c00465{transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);-ms-transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238816,-0.002627,0.002750,0.249985,0,0);}
.m5b_c00465{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);}
.m31_c00465{transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);-ms-transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242865,-0.002672,0.002750,0.249985,0,0);}
.m22_c00465{transform:matrix(0.246960,-0.002717,0.002750,0.249985,0,0);-ms-transform:matrix(0.246960,-0.002717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246960,-0.002717,0.002750,0.249985,0,0);}
.mb1_c00465{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00465{transform:matrix(0.247890,-0.002727,0.002750,0.249985,0,0);-ms-transform:matrix(0.247890,-0.002727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247890,-0.002727,0.002750,0.249985,0,0);}
.m97_c00465{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);-ms-transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);}
.m10_c00465{transform:matrix(0.250147,-0.002501,0.002500,0.249988,0,0);-ms-transform:matrix(0.250147,-0.002501,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250147,-0.002501,0.002500,0.249988,0,0);}
.m8d_c00465{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);}
.m7_c00465{transform:matrix(0.255727,-0.002557,0.002500,0.249988,0,0);-ms-transform:matrix(0.255727,-0.002557,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255727,-0.002557,0.002500,0.249988,0,0);}
.m80_c00465{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);}
.m47_c00465{transform:matrix(0.257869,-0.002837,0.002750,0.249985,0,0);-ms-transform:matrix(0.257869,-0.002837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257869,-0.002837,0.002750,0.249985,0,0);}
.ma1_c00465{transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);}
.mb0_c00465{transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260095,0.000000,0.000000,0.250000,0,0);}
.m66_c00465{transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.264034,-0.002904,0.002750,0.249985,0,0);-ms-transform:matrix(0.264034,-0.002904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264034,-0.002904,0.002750,0.249985,0,0);}
.m5a_c00465{transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.268169,-0.002950,0.002750,0.249985,0,0);-ms-transform:matrix(0.268169,-0.002950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268169,-0.002950,0.002750,0.249985,0,0);}
.m6d_c00465{transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);}
.m9e_c00465{transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282140,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.283423,-0.003118,0.002750,0.249985,0,0);-ms-transform:matrix(0.283423,-0.003118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283423,-0.003118,0.002750,0.249985,0,0);}
.ma0_c00465{transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284650,0.000000,0.000000,0.250000,0,0);}
.m82_c00465{transform:matrix(0.285755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285755,0.000000,0.000000,0.250000,0,0);}
.m71_c00465{transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294775,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.299535,-0.002995,0.002500,0.249988,0,0);-ms-transform:matrix(0.299535,-0.002995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299535,-0.002995,0.002500,0.249988,0,0);}
.m2_c00465{transform:matrix(0.299875,-0.002999,0.002500,0.249988,0,0);-ms-transform:matrix(0.299875,-0.002999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299875,-0.002999,0.002500,0.249988,0,0);}
.m65_c00465{transform:matrix(0.299985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299985,0.000000,0.000000,0.250000,0,0);}
.m61_c00465{transform:matrix(0.305815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305815,0.000000,0.000000,0.250000,0,0);}
.m59_c00465{transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310645,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{transform:matrix(0.318066,-0.003499,0.002750,0.249985,0,0);-ms-transform:matrix(0.318066,-0.003499,0.002750,0.249985,0,0);-webkit-transform:matrix(0.318066,-0.003499,0.002750,0.249985,0,0);}
.m5d_c00465{transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320225,0.000000,0.000000,0.250000,0,0);}
.m5c_c00465{transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321985,0.000000,0.000000,0.250000,0,0);}
.m60_c00465{transform:matrix(0.322670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322670,0.000000,0.000000,0.250000,0,0);}
.m81_c00465{transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324330,0.000000,0.000000,0.250000,0,0);}
.m50_c00465{transform:matrix(0.327649,-0.003276,0.002500,0.249988,0,0);-ms-transform:matrix(0.327649,-0.003276,0.002500,0.249988,0,0);-webkit-transform:matrix(0.327649,-0.003276,0.002500,0.249988,0,0);}
.m27_c00465{transform:matrix(0.332290,-0.003655,0.002750,0.249985,0,0);-ms-transform:matrix(0.332290,-0.003655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.332290,-0.003655,0.002750,0.249985,0,0);}
.m87_c00465{transform:matrix(0.336025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336025,0.000000,0.000000,0.250000,0,0);}
.m63_c00465{transform:matrix(0.350805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350805,0.000000,0.000000,0.250000,0,0);}
.m75_c00465{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);}
.m90_c00465{transform:matrix(0.360880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360880,0.000000,0.000000,0.250000,0,0);}
.m9b_c00465{transform:matrix(0.363260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363260,0.000000,0.000000,0.250000,0,0);}
.ma5_c00465{transform:matrix(0.368010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368010,0.000000,0.000000,0.250000,0,0);}
.m69_c00465{transform:matrix(0.384710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384710,0.000000,0.000000,0.250000,0,0);}
.m9f_c00465{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6c_c00465{transform:matrix(0.414870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414870,0.000000,0.000000,0.250000,0,0);}
.m62_c00465{transform:matrix(0.440740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440740,0.000000,0.000000,0.250000,0,0);}
.m79_c00465{transform:matrix(0.447700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447700,0.000000,0.000000,0.250000,0,0);}
.m5e_c00465{transform:matrix(0.451215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451215,0.000000,0.000000,0.250000,0,0);}
.m67_c00465{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);}
.m6a_c00465{transform:matrix(0.517260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517260,0.000000,0.000000,0.250000,0,0);}
.m6b_c00465{transform:matrix(0.612235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612235,0.000000,0.000000,0.250000,0,0);}
.m64_c00465{transform:matrix(0.648525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648525,0.000000,0.000000,0.250000,0,0);}
.m68_c00465{transform:matrix(0.678320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00465{transform:matrix(0.737940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737940,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;}
.fsc_c00465{font-size:45.150000px;}
.fs9_c00465{font-size:47.250000px;}
.fsd_c00465{font-size:49.350000px;}
.fs8_c00465{font-size:50.400000px;}
.fsb_c00465{font-size:51.450000px;}
.fsa_c00465{font-size:58.800000px;}
.fs0_c00465{font-size:66.153307px;}
.fs4_c00465{font-size:67.204065px;}
.fs5_c00465{font-size:69.304193px;}
.fs1_c00465{font-size:70.353517px;}
.fs3_c00465{font-size:70.354256px;}
.fs6_c00465{font-size:71.403570px;}
.fs2_c00465{font-size:71.404320px;}
.fs7_c00465{font-size:72.453622px;}
.y0_c00465{bottom:0.000000px;}
.y60_c00465{bottom:151.501500px;}
.y5f_c00465{bottom:169.828500px;}
.y5e_c00465{bottom:187.003500px;}
.y5d_c00465{bottom:204.208500px;}
.y5c_c00465{bottom:222.694500px;}
.y5b_c00465{bottom:240.531000px;}
.y5a_c00465{bottom:495.160500px;}
.y59_c00465{bottom:591.037995px;}
.y52_c00465{bottom:615.383640px;}
.y56_c00465{bottom:615.383820px;}
.y53_c00465{bottom:615.383895px;}
.y54_c00465{bottom:615.384180px;}
.y58_c00465{bottom:615.384390px;}
.y57_c00465{bottom:615.384405px;}
.y55_c00465{bottom:615.384450px;}
.y4a_c00465{bottom:636.391500px;}
.y4b_c00465{bottom:636.666585px;}
.y4c_c00465{bottom:637.012335px;}
.y4d_c00465{bottom:637.433895px;}
.y4e_c00465{bottom:637.955025px;}
.y4f_c00465{bottom:638.365380px;}
.y50_c00465{bottom:638.948955px;}
.y51_c00465{bottom:639.675330px;}
.y43_c00465{bottom:659.063913px;}
.y44_c00465{bottom:659.262557px;}
.y45_c00465{bottom:659.782999px;}
.y46_c00465{bottom:660.309086px;}
.y47_c00465{bottom:660.846425px;}
.y48_c00465{bottom:661.496920px;}
.y49_c00465{bottom:661.945786px;}
.y3b_c00465{bottom:682.283343px;}
.y3c_c00465{bottom:682.592273px;}
.y3d_c00465{bottom:683.005504px;}
.y3e_c00465{bottom:683.323561px;}
.y3f_c00465{bottom:683.573598px;}
.y40_c00465{bottom:684.000051px;}
.y41_c00465{bottom:684.571925px;}
.y42_c00465{bottom:684.971457px;}
.y32_c00465{bottom:704.694933px;}
.y33_c00465{bottom:704.930589px;}
.y34_c00465{bottom:705.306493px;}
.y35_c00465{bottom:705.576625px;}
.y36_c00465{bottom:705.982731px;}
.y37_c00465{bottom:706.647648px;}
.y38_c00465{bottom:707.143863px;}
.y39_c00465{bottom:707.516268px;}
.y3a_c00465{bottom:707.846771px;}
.y29_c00465{bottom:728.187420px;}
.y2a_c00465{bottom:728.552932px;}
.y2b_c00465{bottom:728.690579px;}
.y2c_c00465{bottom:729.217226px;}
.y2d_c00465{bottom:729.435849px;}
.y2e_c00465{bottom:729.897429px;}
.y2f_c00465{bottom:730.138981px;}
.y30_c00465{bottom:730.553386px;}
.y31_c00465{bottom:730.793634px;}
.y1f_c00465{bottom:751.138969px;}
.y20_c00465{bottom:751.723976px;}
.y21_c00465{bottom:752.099152px;}
.y22_c00465{bottom:752.300728px;}
.y23_c00465{bottom:752.711076px;}
.y24_c00465{bottom:752.923065px;}
.y25_c00465{bottom:753.284545px;}
.y26_c00465{bottom:753.511305px;}
.y27_c00465{bottom:753.892128px;}
.y28_c00465{bottom:754.157457px;}
.y14_c00465{bottom:773.280000px;}
.y15_c00465{bottom:773.405813px;}
.y16_c00465{bottom:774.055781px;}
.y17_c00465{bottom:774.409838px;}
.y18_c00465{bottom:774.929654px;}
.y19_c00465{bottom:775.736916px;}
.y1a_c00465{bottom:776.064210px;}
.y1b_c00465{bottom:776.506130px;}
.y1c_c00465{bottom:776.987797px;}
.y1d_c00465{bottom:777.323358px;}
.y1e_c00465{bottom:777.575758px;}
.yb_c00465{bottom:795.961965px;}
.yc_c00465{bottom:796.540395px;}
.yd_c00465{bottom:796.987500px;}
.ye_c00465{bottom:797.594160px;}
.yf_c00465{bottom:798.081360px;}
.y10_c00465{bottom:798.404850px;}
.y11_c00465{bottom:798.815400px;}
.y12_c00465{bottom:799.373520px;}
.y13_c00465{bottom:799.918575px;}
.y1_c00465{bottom:819.451500px;}
.y2_c00465{bottom:819.732210px;}
.y3_c00465{bottom:820.156635px;}
.y4_c00465{bottom:820.488360px;}
.y5_c00465{bottom:820.966365px;}
.y6_c00465{bottom:821.446785px;}
.y7_c00465{bottom:821.681895px;}
.y8_c00465{bottom:821.991945px;}
.y9_c00465{bottom:822.292095px;}
.ya_c00465{bottom:823.026810px;}
.he_c00465{height:45.150000px;}
.hb_c00465{height:47.250000px;}
.hf_c00465{height:49.350000px;}
.ha_c00465{height:50.400000px;}
.hd_c00465{height:51.450000px;}
.hc_c00465{height:58.800000px;}
.h2_c00465{height:66.153307px;}
.h6_c00465{height:67.204065px;}
.h7_c00465{height:69.304193px;}
.h3_c00465{height:70.353517px;}
.h5_c00465{height:70.354256px;}
.h8_c00465{height:71.403570px;}
.h4_c00465{height:71.404320px;}
.h9_c00465{height:72.453622px;}
.h0_c00465{height:1008.450000px;}
.h1_c00465{height:1008.750000px;}
.w1_c00465{width:689.250000px;}
.w0_c00465{width:689.550000px;}
.x0_c00465{left:0.000000px;}
.x6b_c00465{left:146.880000px;}
.x48_c00465{left:160.380000px;}
.x13_c00465{left:162.324000px;}
.x14_c00465{left:173.761500px;}
.x1_c00465{left:180.225000px;}
.x1e_c00465{left:181.294317px;}
.x39_c00465{left:182.665686px;}
.x53_c00465{left:199.260000px;}
.x3a_c00465{left:200.724186px;}
.x49_c00465{left:202.770000px;}
.x72_c00465{left:204.390000px;}
.x2e_c00465{left:206.680119px;}
.x2_c00465{left:208.296000px;}
.x3c_c00465{left:210.156000px;}
.x6c_c00465{left:211.950000px;}
.x35_c00465{left:220.125938px;}
.x5a_c00465{left:222.210000px;}
.xb_c00465{left:225.298095px;}
.x27_c00465{left:227.181285px;}
.x15_c00465{left:232.849500px;}
.x6d_c00465{left:240.570000px;}
.x28_c00465{left:244.467863px;}
.x1f_c00465{left:246.341753px;}
.x2f_c00465{left:248.490543px;}
.x3_c00465{left:250.738500px;}
.x4a_c00465{left:258.120000px;}
.xc_c00465{left:259.657560px;}
.x73_c00465{left:263.520000px;}
.x16_c00465{left:265.036500px;}
.x41_c00465{left:270.005790px;}
.x36_c00465{left:271.739637px;}
.x30_c00465{left:278.503203px;}
.x4_c00465{left:283.911000px;}
.x3d_c00465{left:286.887000px;}
.x20_c00465{left:287.949660px;}
.x6e_c00465{left:292.410000px;}
.x4b_c00465{left:294.300000px;}
.x3b_c00465{left:295.863186px;}
.x42_c00465{left:299.437230px;}
.x4c_c00465{left:301.860000px;}
.xd_c00465{left:306.372165px;}
.x21_c00465{left:310.366155px;}
.x17_c00465{left:312.292500px;}
.x5b_c00465{left:322.380000px;}
.x31_c00465{left:323.604693px;}
.x54_c00465{left:325.620000px;}
.x6f_c00465{left:326.970000px;}
.x5_c00465{left:331.711500px;}
.x4d_c00465{left:332.910000px;}
.x29_c00465{left:337.586432px;}
.x3e_c00465{left:339.000000px;}
.x37_c00465{left:342.750480px;}
.xe_c00465{left:343.841040px;}
.x43_c00465{left:346.418925px;}
.x5c_c00465{left:349.380000px;}
.x4e_c00465{left:350.730000px;}
.x22_c00465{left:355.989662px;}
.xf_c00465{left:368.689290px;}
.x6_c00465{left:379.753500px;}
.x64_c00465{left:382.860000px;}
.x18_c00465{left:385.680000px;}
.x44_c00465{left:391.510440px;}
.x55_c00465{left:394.200000px;}
.x2a_c00465{left:395.368346px;}
.x32_c00465{left:397.553327px;}
.x10_c00465{left:400.293345px;}
.x7_c00465{left:403.264500px;}
.x19_c00465{left:415.434000px;}
.x23_c00465{left:419.715564px;}
.x45_c00465{left:422.021985px;}
.x2b_c00465{left:425.646852px;}
.x5d_c00465{left:427.410000px;}
.x8_c00465{left:434.269500px;}
.x4f_c00465{left:436.860000px;}
.x3f_c00465{left:438.393000px;}
.x11_c00465{left:443.204055px;}
.x24_c00465{left:444.830609px;}
.x74_c00465{left:447.120000px;}
.x47_c00465{left:450.090000px;}
.x33_c00465{left:452.619531px;}
.x1a_c00465{left:455.608500px;}
.x46_c00465{left:457.123995px;}
.x65_c00465{left:461.160000px;}
.x9_c00465{left:464.284500px;}
.x38_c00465{left:467.466089px;}
.x50_c00465{left:470.610000px;}
.x2c_c00465{left:477.503568px;}
.x5e_c00465{left:483.030000px;}
.x12_c00465{left:485.108295px;}
.x25_c00465{left:487.224549px;}
.x66_c00465{left:489.240000px;}
.x75_c00465{left:491.670000px;}
.x34_c00465{left:493.975439px;}
.x1b_c00465{left:499.396500px;}
.x56_c00465{left:504.900000px;}
.x2d_c00465{left:507.527058px;}
.x40_c00465{left:511.030500px;}
.x5f_c00465{left:514.080000px;}
.x26_c00465{left:516.664193px;}
.x67_c00465{left:520.560000px;}
.x60_c00465{left:522.450000px;}
.x57_c00465{left:527.310000px;}
.x1c_c00465{left:529.902000px;}
.x68_c00465{left:536.490000px;}
.xa_c00465{left:537.756000px;}
.x76_c00465{left:549.450000px;}
.x1d_c00465{left:552.847500px;}
.x70_c00465{left:554.040000px;}
.x61_c00465{left:558.630000px;}
.x71_c00465{left:570.510000px;}
.x58_c00465{left:572.130000px;}
.x69_c00465{left:573.750000px;}
.x62_c00465{left:576.720000px;}
.x51_c00465{left:584.820000px;}
.x63_c00465{left:599.670000px;}
.x6a_c00465{left:602.100000px;}
.x59_c00465{left:603.450000px;}
.x52_c00465{left:609.120000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fsc_c00465{font-size:40.133333pt;}
.fs9_c00465{font-size:42.000000pt;}
.fsd_c00465{font-size:43.866667pt;}
.fs8_c00465{font-size:44.800000pt;}
.fsb_c00465{font-size:45.733333pt;}
.fsa_c00465{font-size:52.266667pt;}
.fs0_c00465{font-size:58.802940pt;}
.fs4_c00465{font-size:59.736947pt;}
.fs5_c00465{font-size:61.603727pt;}
.fs1_c00465{font-size:62.536460pt;}
.fs3_c00465{font-size:62.537116pt;}
.fs6_c00465{font-size:63.469840pt;}
.fs2_c00465{font-size:63.470506pt;}
.fs7_c00465{font-size:64.403220pt;}
.y0_c00465{bottom:0.000000pt;}
.y60_c00465{bottom:134.668000pt;}
.y5f_c00465{bottom:150.958667pt;}
.y5e_c00465{bottom:166.225333pt;}
.y5d_c00465{bottom:181.518667pt;}
.y5c_c00465{bottom:197.950667pt;}
.y5b_c00465{bottom:213.805333pt;}
.y5a_c00465{bottom:440.142667pt;}
.y59_c00465{bottom:525.367107pt;}
.y52_c00465{bottom:547.007680pt;}
.y56_c00465{bottom:547.007840pt;}
.y53_c00465{bottom:547.007907pt;}
.y54_c00465{bottom:547.008160pt;}
.y58_c00465{bottom:547.008347pt;}
.y57_c00465{bottom:547.008360pt;}
.y55_c00465{bottom:547.008400pt;}
.y4a_c00465{bottom:565.681333pt;}
.y4b_c00465{bottom:565.925853pt;}
.y4c_c00465{bottom:566.233187pt;}
.y4d_c00465{bottom:566.607907pt;}
.y4e_c00465{bottom:567.071133pt;}
.y4f_c00465{bottom:567.435893pt;}
.y50_c00465{bottom:567.954627pt;}
.y51_c00465{bottom:568.600293pt;}
.y43_c00465{bottom:585.834589pt;}
.y44_c00465{bottom:586.011161pt;}
.y45_c00465{bottom:586.473777pt;}
.y46_c00465{bottom:586.941409pt;}
.y47_c00465{bottom:587.419044pt;}
.y48_c00465{bottom:587.997263pt;}
.y49_c00465{bottom:588.396255pt;}
.y3b_c00465{bottom:606.474083pt;}
.y3c_c00465{bottom:606.748687pt;}
.y3d_c00465{bottom:607.116004pt;}
.y3e_c00465{bottom:607.398721pt;}
.y3f_c00465{bottom:607.620976pt;}
.y40_c00465{bottom:608.000045pt;}
.y41_c00465{bottom:608.508377pt;}
.y42_c00465{bottom:608.863517pt;}
.y32_c00465{bottom:626.395496pt;}
.y33_c00465{bottom:626.604968pt;}
.y34_c00465{bottom:626.939105pt;}
.y35_c00465{bottom:627.179223pt;}
.y36_c00465{bottom:627.540205pt;}
.y37_c00465{bottom:628.131243pt;}
.y38_c00465{bottom:628.572323pt;}
.y39_c00465{bottom:628.903349pt;}
.y3a_c00465{bottom:629.197129pt;}
.y29_c00465{bottom:647.277707pt;}
.y2a_c00465{bottom:647.602607pt;}
.y2b_c00465{bottom:647.724959pt;}
.y2c_c00465{bottom:648.193089pt;}
.y2d_c00465{bottom:648.387421pt;}
.y2e_c00465{bottom:648.797715pt;}
.y2f_c00465{bottom:649.012428pt;}
.y30_c00465{bottom:649.380788pt;}
.y31_c00465{bottom:649.594341pt;}
.y1f_c00465{bottom:667.679084pt;}
.y20_c00465{bottom:668.199089pt;}
.y21_c00465{bottom:668.532580pt;}
.y22_c00465{bottom:668.711759pt;}
.y23_c00465{bottom:669.076512pt;}
.y24_c00465{bottom:669.264947pt;}
.y25_c00465{bottom:669.586263pt;}
.y26_c00465{bottom:669.787827pt;}
.y27_c00465{bottom:670.126336pt;}
.y28_c00465{bottom:670.362184pt;}
.y14_c00465{bottom:687.360000pt;}
.y15_c00465{bottom:687.471833pt;}
.y16_c00465{bottom:688.049583pt;}
.y17_c00465{bottom:688.364300pt;}
.y18_c00465{bottom:688.826359pt;}
.y19_c00465{bottom:689.543925pt;}
.y1a_c00465{bottom:689.834853pt;}
.y1b_c00465{bottom:690.227671pt;}
.y1c_c00465{bottom:690.655820pt;}
.y1d_c00465{bottom:690.954096pt;}
.y1e_c00465{bottom:691.178452pt;}
.yb_c00465{bottom:707.521747pt;}
.yc_c00465{bottom:708.035907pt;}
.yd_c00465{bottom:708.433333pt;}
.ye_c00465{bottom:708.972587pt;}
.yf_c00465{bottom:709.405653pt;}
.y10_c00465{bottom:709.693200pt;}
.y11_c00465{bottom:710.058133pt;}
.y12_c00465{bottom:710.554240pt;}
.y13_c00465{bottom:711.038733pt;}
.y1_c00465{bottom:728.401333pt;}
.y2_c00465{bottom:728.650853pt;}
.y3_c00465{bottom:729.028120pt;}
.y4_c00465{bottom:729.322987pt;}
.y5_c00465{bottom:729.747880pt;}
.y6_c00465{bottom:730.174920pt;}
.y7_c00465{bottom:730.383907pt;}
.y8_c00465{bottom:730.659507pt;}
.y9_c00465{bottom:730.926307pt;}
.ya_c00465{bottom:731.579387pt;}
.he_c00465{height:40.133333pt;}
.hb_c00465{height:42.000000pt;}
.hf_c00465{height:43.866667pt;}
.ha_c00465{height:44.800000pt;}
.hd_c00465{height:45.733333pt;}
.hc_c00465{height:52.266667pt;}
.h2_c00465{height:58.802940pt;}
.h6_c00465{height:59.736947pt;}
.h7_c00465{height:61.603727pt;}
.h3_c00465{height:62.536460pt;}
.h5_c00465{height:62.537116pt;}
.h8_c00465{height:63.469840pt;}
.h4_c00465{height:63.470506pt;}
.h9_c00465{height:64.403220pt;}
.h0_c00465{height:896.400000pt;}
.h1_c00465{height:896.666667pt;}
.w1_c00465{width:612.666667pt;}
.w0_c00465{width:612.933333pt;}
.x0_c00465{left:0.000000pt;}
.x6b_c00465{left:130.560000pt;}
.x48_c00465{left:142.560000pt;}
.x13_c00465{left:144.288000pt;}
.x14_c00465{left:154.454667pt;}
.x1_c00465{left:160.200000pt;}
.x1e_c00465{left:161.150504pt;}
.x39_c00465{left:162.369499pt;}
.x53_c00465{left:177.120000pt;}
.x3a_c00465{left:178.421499pt;}
.x49_c00465{left:180.240000pt;}
.x72_c00465{left:181.680000pt;}
.x2e_c00465{left:183.715661pt;}
.x2_c00465{left:185.152000pt;}
.x3c_c00465{left:186.805333pt;}
.x6c_c00465{left:188.400000pt;}
.x35_c00465{left:195.667500pt;}
.x5a_c00465{left:197.520000pt;}
.xb_c00465{left:200.264973pt;}
.x27_c00465{left:201.938920pt;}
.x15_c00465{left:206.977333pt;}
.x6d_c00465{left:213.840000pt;}
.x28_c00465{left:217.304767pt;}
.x1f_c00465{left:218.970447pt;}
.x2f_c00465{left:220.880483pt;}
.x3_c00465{left:222.878667pt;}
.x4a_c00465{left:229.440000pt;}
.xc_c00465{left:230.806720pt;}
.x73_c00465{left:234.240000pt;}
.x16_c00465{left:235.588000pt;}
.x41_c00465{left:240.005147pt;}
.x36_c00465{left:241.546344pt;}
.x30_c00465{left:247.558403pt;}
.x4_c00465{left:252.365333pt;}
.x3d_c00465{left:255.010667pt;}
.x20_c00465{left:255.955253pt;}
.x6e_c00465{left:259.920000pt;}
.x4b_c00465{left:261.600000pt;}
.x3b_c00465{left:262.989499pt;}
.x42_c00465{left:266.166427pt;}
.x4c_c00465{left:268.320000pt;}
.xd_c00465{left:272.330813pt;}
.x21_c00465{left:275.881027pt;}
.x17_c00465{left:277.593333pt;}
.x5b_c00465{left:286.560000pt;}
.x31_c00465{left:287.648616pt;}
.x54_c00465{left:289.440000pt;}
.x6f_c00465{left:290.640000pt;}
.x5_c00465{left:294.854667pt;}
.x4d_c00465{left:295.920000pt;}
.x29_c00465{left:300.076828pt;}
.x3e_c00465{left:301.333333pt;}
.x37_c00465{left:304.667093pt;}
.xe_c00465{left:305.636480pt;}
.x43_c00465{left:307.927933pt;}
.x5c_c00465{left:310.560000pt;}
.x4e_c00465{left:311.760000pt;}
.x22_c00465{left:316.435255pt;}
.xf_c00465{left:327.723813pt;}
.x6_c00465{left:337.558667pt;}
.x64_c00465{left:340.320000pt;}
.x18_c00465{left:342.826667pt;}
.x44_c00465{left:348.009280pt;}
.x55_c00465{left:350.400000pt;}
.x2a_c00465{left:351.438529pt;}
.x32_c00465{left:353.380735pt;}
.x10_c00465{left:355.816307pt;}
.x7_c00465{left:358.457333pt;}
.x19_c00465{left:369.274667pt;}
.x23_c00465{left:373.080501pt;}
.x45_c00465{left:375.130653pt;}
.x2b_c00465{left:378.352757pt;}
.x5d_c00465{left:379.920000pt;}
.x8_c00465{left:386.017333pt;}
.x4f_c00465{left:388.320000pt;}
.x3f_c00465{left:389.682667pt;}
.x11_c00465{left:393.959160pt;}
.x24_c00465{left:395.404985pt;}
.x74_c00465{left:397.440000pt;}
.x47_c00465{left:400.080000pt;}
.x33_c00465{left:402.328472pt;}
.x1a_c00465{left:404.985333pt;}
.x46_c00465{left:406.332440pt;}
.x65_c00465{left:409.920000pt;}
.x9_c00465{left:412.697333pt;}
.x38_c00465{left:415.525412pt;}
.x50_c00465{left:418.320000pt;}
.x2c_c00465{left:424.447616pt;}
.x5e_c00465{left:429.360000pt;}
.x12_c00465{left:431.207373pt;}
.x25_c00465{left:433.088488pt;}
.x66_c00465{left:434.880000pt;}
.x75_c00465{left:437.040000pt;}
.x34_c00465{left:439.089279pt;}
.x1b_c00465{left:443.908000pt;}
.x56_c00465{left:448.800000pt;}
.x2d_c00465{left:451.135163pt;}
.x40_c00465{left:454.249333pt;}
.x5f_c00465{left:456.960000pt;}
.x26_c00465{left:459.257060pt;}
.x67_c00465{left:462.720000pt;}
.x60_c00465{left:464.400000pt;}
.x57_c00465{left:468.720000pt;}
.x1c_c00465{left:471.024000pt;}
.x68_c00465{left:476.880000pt;}
.xa_c00465{left:478.005333pt;}
.x76_c00465{left:488.400000pt;}
.x1d_c00465{left:491.420000pt;}
.x70_c00465{left:492.480000pt;}
.x61_c00465{left:496.560000pt;}
.x71_c00465{left:507.120000pt;}
.x58_c00465{left:508.560000pt;}
.x69_c00465{left:510.000000pt;}
.x62_c00465{left:512.640000pt;}
.x51_c00465{left:519.840000pt;}
.x63_c00465{left:533.040000pt;}
.x6a_c00465{left:535.200000pt;}
.x59_c00465{left:536.400000pt;}
.x52_c00465{left:541.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_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_4ab86c84425994a9e06b01c2.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;}
.m77_c00466{transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024795,0.000000,0.000000,0.250000,0,0);}
.m6a_c00466{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00466{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.m71_c00466{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);}
.m34_c00466{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);}
.m13_c00466{transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154215,0.000000,0.000000,0.250000,0,0);}
.m50_c00466{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);}
.m58_c00466{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);}
.m73_c00466{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);}
.m51_c00466{transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167255,0.000000,0.000000,0.250000,0,0);}
.m20_c00466{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);}
.m41_c00466{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);}
.m2c_c00466{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);}
.m57_c00466{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);}
.m5a_c00466{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);}
.m72_c00466{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);}
.m3b_c00466{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);}
.m4b_c00466{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);}
.m2f_c00466{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);}
.m70_c00466{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);}
.m53_c00466{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);}
.m75_c00466{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);}
.m6b_c00466{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);}
.m1b_c00466{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_c00466{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);}
.m1d_c00466{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);}
.m48_c00466{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);}
.m68_c00466{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{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);}
.mb_c00466{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);}
.m69_c00466{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m4f_c00466{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);}
.m42_c00466{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);}
.m5b_c00466{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);}
.m1c_c00466{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);}
.m54_c00466{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);}
.m21_c00466{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);}
.mf_c00466{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);}
.m31_c00466{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);}
.m4a_c00466{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);}
.m79_c00466{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);}
.m32_c00466{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);}
.m1e_c00466{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);}
.m22_c00466{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);}
.m4d_c00466{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);}
.m52_c00466{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);}
.mc_c00466{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);}
.m4e_c00466{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);}
.me_c00466{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);}
.m55_c00466{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);}
.m5c_c00466{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);}
.m56_c00466{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);}
.m23_c00466{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);}
.m37_c00466{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);}
.m35_c00466{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);}
.md_c00466{transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222420,0.000000,0.000000,0.250000,0,0);}
.m59_c00466{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);}
.m1f_c00466{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);}
.m24_c00466{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m39_c00466{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);}
.m38_c00466{transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226330,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{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);}
.m60_c00466{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);}
.m28_c00466{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);}
.m30_c00466{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);}
.m46_c00466{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);}
.m17_c00466{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);}
.m7e_c00466{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);}
.m7_c00466{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);}
.m3d_c00466{transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);}
.m82_c00466{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);}
.m76_c00466{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00466{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);}
.m63_c00466{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);}
.m6c_c00466{transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240120,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{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);}
.m3_c00466{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);}
.m2d_c00466{transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);}
.m40_c00466{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);}
.m12_c00466{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);}
.m5f_c00466{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m81_c00466{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);}
.m36_c00466{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00466{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m7c_c00466{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m61_c00466{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m4c_c00466{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);}
.m2_c00466{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.m65_c00466{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);}
.m14_c00466{transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);}
.m64_c00466{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);}
.m3a_c00466{transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286910,0.000000,0.000000,0.250000,0,0);}
.m27_c00466{transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);}
.m45_c00466{transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289240,0.000000,0.000000,0.250000,0,0);}
.m62_c00466{transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00466{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{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);}
.m6_c00466{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);}
.m25_c00466{transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310260,0.000000,0.000000,0.250000,0,0);}
.m7b_c00466{transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310640,0.000000,0.000000,0.250000,0,0);}
.m44_c00466{transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310910,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312485,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322070,0.000000,0.000000,0.250000,0,0);}
.m6d_c00466{transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325230,0.000000,0.000000,0.250000,0,0);}
.m43_c00466{transform:matrix(0.352265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352265,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.355890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355890,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{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);}
.m74_c00466{transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361885,0.000000,0.000000,0.250000,0,0);}
.m7f_c00466{transform:matrix(0.368485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368485,0.000000,0.000000,0.250000,0,0);}
.m78_c00466{transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00466{transform:matrix(0.377120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377120,0.000000,0.000000,0.250000,0,0);}
.m26_c00466{transform:matrix(0.385175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385175,0.000000,0.000000,0.250000,0,0);}
.m66_c00466{transform:matrix(0.386260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386260,0.000000,0.000000,0.250000,0,0);}
.m80_c00466{transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.414165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414165,0.000000,0.000000,0.250000,0,0);}
.m67_c00466{transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421715,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00466{transform:matrix(0.435645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435645,0.000000,0.000000,0.250000,0,0);}
.m33_c00466{transform:matrix(0.468730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468730,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468835,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.470205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470205,0.000000,0.000000,0.250000,0,0);}
.m49_c00466{transform:matrix(0.483275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483275,0.000000,0.000000,0.250000,0,0);}
.m7a_c00466{transform:matrix(0.488170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488170,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.490380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490380,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.490640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490640,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.513790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513790,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.538075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538075,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{transform:matrix(0.603095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603095,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.679725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679725,0.000000,0.000000,0.250000,0,0);}
.m47_c00466{transform:matrix(0.723835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723835,0.000000,0.000000,0.250000,0,0);}
.m7d_c00466{transform:matrix(0.909400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.909400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.909400,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;}
.fs15_c00466{font-size:46.200000px;}
.fsd_c00466{font-size:47.250000px;}
.fs10_c00466{font-size:51.450000px;}
.fse_c00466{font-size:52.500000px;}
.fsf_c00466{font-size:55.650000px;}
.fs14_c00466{font-size:57.750000px;}
.fs1_c00466{font-size:58.800000px;}
.fs7_c00466{font-size:61.950000px;}
.fsb_c00466{font-size:63.000000px;}
.fs9_c00466{font-size:64.050000px;}
.fsa_c00466{font-size:66.150000px;}
.fs2_c00466{font-size:67.200000px;}
.fs12_c00466{font-size:68.250000px;}
.fs6_c00466{font-size:69.300000px;}
.fs11_c00466{font-size:70.350000px;}
.fsc_c00466{font-size:71.400000px;}
.fs5_c00466{font-size:72.450000px;}
.fs4_c00466{font-size:73.500000px;}
.fs8_c00466{font-size:79.800000px;}
.fs3_c00466{font-size:88.200000px;}
.fs0_c00466{font-size:89.250000px;}
.fs13_c00466{font-size:94.500000px;}
.y0_c00466{bottom:0.000000px;}
.y20_c00466{bottom:134.892000px;}
.y1f_c00466{bottom:164.556000px;}
.y22_c00466{bottom:164.950500px;}
.y14_c00466{bottom:166.209000px;}
.y21_c00466{bottom:182.155500px;}
.y13_c00466{bottom:183.790500px;}
.y12_c00466{bottom:223.990500px;}
.y11_c00466{bottom:241.245000px;}
.y10_c00466{bottom:291.322500px;}
.y1e_c00466{bottom:315.630000px;}
.y1d_c00466{bottom:338.052000px;}
.yf_c00466{bottom:338.704500px;}
.y1c_c00466{bottom:360.828000px;}
.y1b_c00466{bottom:383.301000px;}
.ye_c00466{bottom:384.483000px;}
.y1a_c00466{bottom:406.350000px;}
.yd_c00466{bottom:432.288000px;}
.yc_c00466{bottom:454.119000px;}
.y19_c00466{bottom:454.330500px;}
.y18_c00466{bottom:476.422500px;}
.yb_c00466{bottom:476.853000px;}
.ya_c00466{bottom:498.745500px;}
.y17_c00466{bottom:521.371500px;}
.y16_c00466{bottom:545.277000px;}
.y15_c00466{bottom:568.411500px;}
.y9_c00466{bottom:594.270000px;}
.y8_c00466{bottom:621.361500px;}
.y3_c00466{bottom:621.963000px;}
.y7_c00466{bottom:650.200500px;}
.y6_c00466{bottom:681.181500px;}
.y2_c00466{bottom:682.464000px;}
.y5_c00466{bottom:704.001000px;}
.y4_c00466{bottom:744.222000px;}
.y1_c00466{bottom:745.735500px;}
.h17_c00466{height:46.200000px;}
.hf_c00466{height:47.250000px;}
.h12_c00466{height:51.450000px;}
.h10_c00466{height:52.500000px;}
.h11_c00466{height:55.650000px;}
.h16_c00466{height:57.750000px;}
.h3_c00466{height:58.800000px;}
.h9_c00466{height:61.950000px;}
.hd_c00466{height:63.000000px;}
.hb_c00466{height:64.050000px;}
.hc_c00466{height:66.150000px;}
.h4_c00466{height:67.200000px;}
.h14_c00466{height:68.250000px;}
.h8_c00466{height:69.300000px;}
.h13_c00466{height:70.350000px;}
.he_c00466{height:71.400000px;}
.h7_c00466{height:72.450000px;}
.h6_c00466{height:73.500000px;}
.ha_c00466{height:79.800000px;}
.h5_c00466{height:88.200000px;}
.h2_c00466{height:89.250000px;}
.h15_c00466{height:94.500000px;}
.h1_c00466{height:1005.000000px;}
.h0_c00466{height:1005.150000px;}
.w0_c00466{width:715.200000px;}
.w1_c00466{width:715.500000px;}
.x0_c00466{left:0.000000px;}
.x34_c00466{left:98.010000px;}
.x3d_c00466{left:99.090000px;}
.x2d_c00466{left:101.790000px;}
.x2e_c00466{left:113.670000px;}
.x3e_c00466{left:127.170000px;}
.x5_c00466{left:129.600000px;}
.x1e_c00466{left:136.890000px;}
.x35_c00466{left:152.280000px;}
.x2f_c00466{left:155.790000px;}
.x42_c00466{left:158.760000px;}
.x2a_c00466{left:162.000000px;}
.x1f_c00466{left:164.430000px;}
.x2_c00466{left:165.510000px;}
.x39_c00466{left:172.260000px;}
.x3f_c00466{left:174.420000px;}
.x26_c00466{left:176.580000px;}
.x6_c00466{left:179.010000px;}
.x1_c00466{left:181.710000px;}
.x43_c00466{left:184.410000px;}
.x20_c00466{left:186.030000px;}
.x40_c00466{left:188.190000px;}
.x3a_c00466{left:191.970000px;}
.x36_c00466{left:195.480000px;}
.x22_c00466{left:197.370000px;}
.x47_c00466{left:198.990000px;}
.x2b_c00466{left:201.690000px;}
.x30_c00466{left:205.200000px;}
.x27_c00466{left:212.220000px;}
.x25_c00466{left:214.650000px;}
.x3_c00466{left:215.730000px;}
.x21_c00466{left:221.940000px;}
.x7_c00466{left:225.180000px;}
.x23_c00466{left:227.610000px;}
.x37_c00466{left:230.580000px;}
.x31_c00466{left:234.090000px;}
.x2c_c00466{left:242.190000px;}
.x28_c00466{left:251.640000px;}
.x4_c00466{left:252.720000px;}
.x48_c00466{left:254.340000px;}
.x24_c00466{left:260.010000px;}
.x17_c00466{left:263.250000px;}
.x41_c00466{left:264.870000px;}
.x3b_c00466{left:267.840000px;}
.x10_c00466{left:269.460000px;}
.x29_c00466{left:270.810000px;}
.x18_c00466{left:273.510000px;}
.xa_c00466{left:275.130000px;}
.x12_c00466{left:283.230000px;}
.x53_c00466{left:284.310000px;}
.x4e_c00466{left:287.550000px;}
.x8_c00466{left:288.900000px;}
.xb_c00466{left:291.870000px;}
.x54_c00466{left:299.700000px;}
.x3c_c00466{left:301.320000px;}
.x32_c00466{left:302.940000px;}
.x4a_c00466{left:305.910000px;}
.x38_c00466{left:310.500000px;}
.x13_c00466{left:316.170000px;}
.x19_c00466{left:317.250000px;}
.x33_c00466{left:319.680000px;}
.xc_c00466{left:320.760000px;}
.x14_c00466{left:326.700000px;}
.x1a_c00466{left:332.370000px;}
.x59_c00466{left:342.630000px;}
.x4f_c00466{left:346.140000px;}
.x55_c00466{left:347.220000px;}
.x9_c00466{left:349.110000px;}
.xd_c00466{left:353.430000px;}
.x11_c00466{left:360.450000px;}
.x49_c00466{left:361.800000px;}
.x44_c00466{left:369.900000px;}
.x1b_c00466{left:378.810000px;}
.x56_c00466{left:381.240000px;}
.xe_c00466{left:389.340000px;}
.x4b_c00466{left:391.500000px;}
.x5d_c00466{left:394.200000px;}
.x45_c00466{left:396.360000px;}
.x15_c00466{left:397.980000px;}
.xf_c00466{left:407.700000px;}
.x57_c00466{left:408.780000px;}
.x46_c00466{left:417.150000px;}
.x4c_c00466{left:418.500000px;}
.x5b_c00466{left:422.010000px;}
.x1c_c00466{left:424.980000px;}
.x5e_c00466{left:427.680000px;}
.x16_c00466{left:435.240000px;}
.x50_c00466{left:440.370000px;}
.x58_c00466{left:447.120000px;}
.x5a_c00466{left:451.170000px;}
.x1d_c00466{left:463.860000px;}
.x5f_c00466{left:480.060000px;}
.x51_c00466{left:486.270000px;}
.x4d_c00466{left:513.000000px;}
.x52_c00466{left:543.780000px;}
.x5c_c00466{left:551.880000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs15_c00466{font-size:41.066667pt;}
.fsd_c00466{font-size:42.000000pt;}
.fs10_c00466{font-size:45.733333pt;}
.fse_c00466{font-size:46.666667pt;}
.fsf_c00466{font-size:49.466667pt;}
.fs14_c00466{font-size:51.333333pt;}
.fs1_c00466{font-size:52.266667pt;}
.fs7_c00466{font-size:55.066667pt;}
.fsb_c00466{font-size:56.000000pt;}
.fs9_c00466{font-size:56.933333pt;}
.fsa_c00466{font-size:58.800000pt;}
.fs2_c00466{font-size:59.733333pt;}
.fs12_c00466{font-size:60.666667pt;}
.fs6_c00466{font-size:61.600000pt;}
.fs11_c00466{font-size:62.533333pt;}
.fsc_c00466{font-size:63.466667pt;}
.fs5_c00466{font-size:64.400000pt;}
.fs4_c00466{font-size:65.333333pt;}
.fs8_c00466{font-size:70.933333pt;}
.fs3_c00466{font-size:78.400000pt;}
.fs0_c00466{font-size:79.333333pt;}
.fs13_c00466{font-size:84.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y20_c00466{bottom:119.904000pt;}
.y1f_c00466{bottom:146.272000pt;}
.y22_c00466{bottom:146.622667pt;}
.y14_c00466{bottom:147.741333pt;}
.y21_c00466{bottom:161.916000pt;}
.y13_c00466{bottom:163.369333pt;}
.y12_c00466{bottom:199.102667pt;}
.y11_c00466{bottom:214.440000pt;}
.y10_c00466{bottom:258.953333pt;}
.y1e_c00466{bottom:280.560000pt;}
.y1d_c00466{bottom:300.490667pt;}
.yf_c00466{bottom:301.070667pt;}
.y1c_c00466{bottom:320.736000pt;}
.y1b_c00466{bottom:340.712000pt;}
.ye_c00466{bottom:341.762667pt;}
.y1a_c00466{bottom:361.200000pt;}
.yd_c00466{bottom:384.256000pt;}
.yc_c00466{bottom:403.661333pt;}
.y19_c00466{bottom:403.849333pt;}
.y18_c00466{bottom:423.486667pt;}
.yb_c00466{bottom:423.869333pt;}
.ya_c00466{bottom:443.329333pt;}
.y17_c00466{bottom:463.441333pt;}
.y16_c00466{bottom:484.690667pt;}
.y15_c00466{bottom:505.254667pt;}
.y9_c00466{bottom:528.240000pt;}
.y8_c00466{bottom:552.321333pt;}
.y3_c00466{bottom:552.856000pt;}
.y7_c00466{bottom:577.956000pt;}
.y6_c00466{bottom:605.494667pt;}
.y2_c00466{bottom:606.634667pt;}
.y5_c00466{bottom:625.778667pt;}
.y4_c00466{bottom:661.530667pt;}
.y1_c00466{bottom:662.876000pt;}
.h17_c00466{height:41.066667pt;}
.hf_c00466{height:42.000000pt;}
.h12_c00466{height:45.733333pt;}
.h10_c00466{height:46.666667pt;}
.h11_c00466{height:49.466667pt;}
.h16_c00466{height:51.333333pt;}
.h3_c00466{height:52.266667pt;}
.h9_c00466{height:55.066667pt;}
.hd_c00466{height:56.000000pt;}
.hb_c00466{height:56.933333pt;}
.hc_c00466{height:58.800000pt;}
.h4_c00466{height:59.733333pt;}
.h14_c00466{height:60.666667pt;}
.h8_c00466{height:61.600000pt;}
.h13_c00466{height:62.533333pt;}
.he_c00466{height:63.466667pt;}
.h7_c00466{height:64.400000pt;}
.h6_c00466{height:65.333333pt;}
.ha_c00466{height:70.933333pt;}
.h5_c00466{height:78.400000pt;}
.h2_c00466{height:79.333333pt;}
.h15_c00466{height:84.000000pt;}
.h1_c00466{height:893.333333pt;}
.h0_c00466{height:893.466667pt;}
.w0_c00466{width:635.733333pt;}
.w1_c00466{width:636.000000pt;}
.x0_c00466{left:0.000000pt;}
.x34_c00466{left:87.120000pt;}
.x3d_c00466{left:88.080000pt;}
.x2d_c00466{left:90.480000pt;}
.x2e_c00466{left:101.040000pt;}
.x3e_c00466{left:113.040000pt;}
.x5_c00466{left:115.200000pt;}
.x1e_c00466{left:121.680000pt;}
.x35_c00466{left:135.360000pt;}
.x2f_c00466{left:138.480000pt;}
.x42_c00466{left:141.120000pt;}
.x2a_c00466{left:144.000000pt;}
.x1f_c00466{left:146.160000pt;}
.x2_c00466{left:147.120000pt;}
.x39_c00466{left:153.120000pt;}
.x3f_c00466{left:155.040000pt;}
.x26_c00466{left:156.960000pt;}
.x6_c00466{left:159.120000pt;}
.x1_c00466{left:161.520000pt;}
.x43_c00466{left:163.920000pt;}
.x20_c00466{left:165.360000pt;}
.x40_c00466{left:167.280000pt;}
.x3a_c00466{left:170.640000pt;}
.x36_c00466{left:173.760000pt;}
.x22_c00466{left:175.440000pt;}
.x47_c00466{left:176.880000pt;}
.x2b_c00466{left:179.280000pt;}
.x30_c00466{left:182.400000pt;}
.x27_c00466{left:188.640000pt;}
.x25_c00466{left:190.800000pt;}
.x3_c00466{left:191.760000pt;}
.x21_c00466{left:197.280000pt;}
.x7_c00466{left:200.160000pt;}
.x23_c00466{left:202.320000pt;}
.x37_c00466{left:204.960000pt;}
.x31_c00466{left:208.080000pt;}
.x2c_c00466{left:215.280000pt;}
.x28_c00466{left:223.680000pt;}
.x4_c00466{left:224.640000pt;}
.x48_c00466{left:226.080000pt;}
.x24_c00466{left:231.120000pt;}
.x17_c00466{left:234.000000pt;}
.x41_c00466{left:235.440000pt;}
.x3b_c00466{left:238.080000pt;}
.x10_c00466{left:239.520000pt;}
.x29_c00466{left:240.720000pt;}
.x18_c00466{left:243.120000pt;}
.xa_c00466{left:244.560000pt;}
.x12_c00466{left:251.760000pt;}
.x53_c00466{left:252.720000pt;}
.x4e_c00466{left:255.600000pt;}
.x8_c00466{left:256.800000pt;}
.xb_c00466{left:259.440000pt;}
.x54_c00466{left:266.400000pt;}
.x3c_c00466{left:267.840000pt;}
.x32_c00466{left:269.280000pt;}
.x4a_c00466{left:271.920000pt;}
.x38_c00466{left:276.000000pt;}
.x13_c00466{left:281.040000pt;}
.x19_c00466{left:282.000000pt;}
.x33_c00466{left:284.160000pt;}
.xc_c00466{left:285.120000pt;}
.x14_c00466{left:290.400000pt;}
.x1a_c00466{left:295.440000pt;}
.x59_c00466{left:304.560000pt;}
.x4f_c00466{left:307.680000pt;}
.x55_c00466{left:308.640000pt;}
.x9_c00466{left:310.320000pt;}
.xd_c00466{left:314.160000pt;}
.x11_c00466{left:320.400000pt;}
.x49_c00466{left:321.600000pt;}
.x44_c00466{left:328.800000pt;}
.x1b_c00466{left:336.720000pt;}
.x56_c00466{left:338.880000pt;}
.xe_c00466{left:346.080000pt;}
.x4b_c00466{left:348.000000pt;}
.x5d_c00466{left:350.400000pt;}
.x45_c00466{left:352.320000pt;}
.x15_c00466{left:353.760000pt;}
.xf_c00466{left:362.400000pt;}
.x57_c00466{left:363.360000pt;}
.x46_c00466{left:370.800000pt;}
.x4c_c00466{left:372.000000pt;}
.x5b_c00466{left:375.120000pt;}
.x1c_c00466{left:377.760000pt;}
.x5e_c00466{left:380.160000pt;}
.x16_c00466{left:386.880000pt;}
.x50_c00466{left:391.440000pt;}
.x58_c00466{left:397.440000pt;}
.x5a_c00466{left:401.040000pt;}
.x1d_c00466{left:412.320000pt;}
.x5f_c00466{left:426.720000pt;}
.x51_c00466{left:432.240000pt;}
.x4d_c00466{left:456.000000pt;}
.x52_c00466{left:483.360000pt;}
.x5c_c00466{left:490.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_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;}
.m6_c00467{transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00467{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);}
.mba_c00467{transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);}
.mb8_c00467{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);}
.mbc_c00467{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);}
.m6c_c00467{transform:matrix(0.063410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063410,0.000000,0.000000,0.250000,0,0);}
.mbf_c00467{transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);}
.m62_c00467{transform:matrix(0.094670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094670,0.000000,0.000000,0.250000,0,0);}
.m93_c00467{transform:matrix(0.112548,-0.001238,0.002750,0.249985,0,0);-ms-transform:matrix(0.112548,-0.001238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.112548,-0.001238,0.002750,0.249985,0,0);}
.m8f_c00467{transform:matrix(0.118628,-0.001305,0.002750,0.249985,0,0);-ms-transform:matrix(0.118628,-0.001305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.118628,-0.001305,0.002750,0.249985,0,0);}
.ma2_c00467{transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127340,0.000000,0.000000,0.250000,0,0);}
.ma3_c00467{transform:matrix(0.130130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130130,0.000000,0.000000,0.250000,0,0);}
.ma8_c00467{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00467{transform:matrix(0.135945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135945,0.000000,0.000000,0.250000,0,0);}
.ma4_c00467{transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00467{transform:matrix(0.138940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138940,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138965,0.000000,0.000000,0.250000,0,0);}
.ma5_c00467{transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140085,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{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);}
.m69_c00467{transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);}
.m60_c00467{transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148955,0.000000,0.000000,0.250000,0,0);}
.m32_c00467{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);}
.m1c_c00467{transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{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);}
.m8d_c00467{transform:matrix(0.152576,-0.001678,0.002750,0.249985,0,0);-ms-transform:matrix(0.152576,-0.001678,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152576,-0.001678,0.002750,0.249985,0,0);}
.m63_c00467{transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154820,0.000000,0.000000,0.250000,0,0);}
.m20_c00467{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);}
.m9c_c00467{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);}
.m31_c00467{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);}
.mc_c00467{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);}
.m1f_c00467{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);}
.m3f_c00467{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);}
.mb4_c00467{transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160365,0.000000,0.000000,0.250000,0,0);}
.m5a_c00467{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);}
.m21_c00467{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);}
.m48_c00467{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);}
.m6e_c00467{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);}
.md_c00467{transform:matrix(0.162210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162210,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{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);}
.m74_c00467{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);}
.m8e_c00467{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);}
.m12_c00467{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m58_c00467{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);}
.m92_c00467{transform:matrix(0.164670,-0.001811,0.002750,0.249985,0,0);-ms-transform:matrix(0.164670,-0.001811,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164670,-0.001811,0.002750,0.249985,0,0);}
.m90_c00467{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);}
.m18_c00467{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);}
.mb3_c00467{transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167170,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{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);}
.m9f_c00467{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);}
.m8_c00467{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);}
.m46_c00467{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);}
.m89_c00467{transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170465,-0.001875,0.002750,0.249985,0,0);}
.m13_c00467{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);}
.m1b_c00467{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);}
.m33_c00467{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);}
.m30_c00467{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);}
.m45_c00467{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);}
.m9_c00467{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);}
.m7a_c00467{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);}
.m3e_c00467{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);}
.mf_c00467{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);}
.m2c_c00467{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);}
.mb2_c00467{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);}
.mb1_c00467{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);}
.mb6_c00467{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);}
.m23_c00467{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);}
.mb_c00467{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);}
.m22_c00467{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);}
.m70_c00467{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);}
.m2f_c00467{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);}
.mb7_c00467{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);}
.m79_c00467{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);}
.m19_c00467{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);}
.m5d_c00467{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);}
.m8a_c00467{transform:matrix(0.181409,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181409,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181409,-0.001995,0.002750,0.249985,0,0);}
.m64_c00467{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);}
.m4f_c00467{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);}
.m35_c00467{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);}
.m34_c00467{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);}
.m4d_c00467{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);}
.m6f_c00467{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);}
.m9d_c00467{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);}
.m15_c00467{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_c00467{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_c00467{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);}
.m9e_c00467{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);}
.mb5_c00467{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);}
.m47_c00467{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);}
.m67_c00467{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);}
.m39_c00467{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);}
.m7b_c00467{transform:matrix(0.188619,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188619,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188619,-0.002075,0.002750,0.249985,0,0);}
.m99_c00467{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);}
.m98_c00467{transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);-ms-transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188939,-0.002078,0.002750,0.249985,0,0);}
.m29_c00467{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);}
.maa_c00467{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);}
.m3_c00467{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);}
.ma9_c00467{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);}
.ma1_c00467{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);}
.m54_c00467{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);}
.m97_c00467{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);}
.me_c00467{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);}
.m65_c00467{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);}
.m38_c00467{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.m78_c00467{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);}
.m42_c00467{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);}
.m51_c00467{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);}
.m4e_c00467{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);}
.m2e_c00467{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);}
.m96_c00467{transform:matrix(0.198128,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198128,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198128,-0.002179,0.002750,0.249985,0,0);}
.m61_c00467{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);}
.m94_c00467{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);}
.m9a_c00467{transform:matrix(0.198588,-0.002184,0.002750,0.249985,0,0);-ms-transform:matrix(0.198588,-0.002184,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198588,-0.002184,0.002750,0.249985,0,0);}
.m43_c00467{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);}
.m77_c00467{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);}
.m49_c00467{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);}
.mad_c00467{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);}
.m5e_c00467{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);}
.m59_c00467{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);}
.m1e_c00467{transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204595,0.000000,0.000000,0.250000,0,0);}
.m72_c00467{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);}
.m75_c00467{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);}
.m0_c00467{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);}
.m68_c00467{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);}
.ma0_c00467{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);}
.m2a_c00467{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);}
.m5c_c00467{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);}
.m87_c00467{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);}
.m57_c00467{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);}
.m6a_c00467{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);}
.maf_c00467{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);}
.m7c_c00467{transform:matrix(0.210167,-0.002312,0.002750,0.249985,0,0);-ms-transform:matrix(0.210167,-0.002312,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210167,-0.002312,0.002750,0.249985,0,0);}
.m1a_c00467{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);}
.m71_c00467{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);}
.m28_c00467{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);}
.m66_c00467{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);}
.m1_c00467{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);}
.m7f_c00467{transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);}
.m2d_c00467{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);}
.mab_c00467{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);}
.m44_c00467{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_c00467{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);}
.m17_c00467{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);}
.m26_c00467{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);}
.m85_c00467{transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);-ms-transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216397,-0.002380,0.002750,0.249985,0,0);}
.m88_c00467{transform:matrix(0.216472,-0.002381,0.002750,0.249985,0,0);-ms-transform:matrix(0.216472,-0.002381,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216472,-0.002381,0.002750,0.249985,0,0);}
.m5f_c00467{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);}
.m4_c00467{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);}
.m3c_c00467{transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216870,0.000000,0.000000,0.250000,0,0);}
.m73_c00467{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);}
.m41_c00467{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m50_c00467{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);}
.m91_c00467{transform:matrix(0.224096,-0.002465,0.002750,0.249985,0,0);-ms-transform:matrix(0.224096,-0.002465,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224096,-0.002465,0.002750,0.249985,0,0);}
.m40_c00467{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);}
.mb0_c00467{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m84_c00467{transform:matrix(0.227986,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.227986,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227986,-0.002508,0.002750,0.249985,0,0);}
.m37_c00467{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);}
.m9b_c00467{transform:matrix(0.229321,-0.002523,0.002750,0.249985,0,0);-ms-transform:matrix(0.229321,-0.002523,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229321,-0.002523,0.002750,0.249985,0,0);}
.m6d_c00467{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);}
.m53_c00467{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);}
.m8c_c00467{transform:matrix(0.232766,-0.002560,0.002750,0.249985,0,0);-ms-transform:matrix(0.232766,-0.002560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232766,-0.002560,0.002750,0.249985,0,0);}
.m52_c00467{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m6b_c00467{transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235965,0.000000,0.000000,0.250000,0,0);}
.m36_c00467{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);}
.mae_c00467{transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237980,0.000000,0.000000,0.250000,0,0);}
.m56_c00467{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);}
.mac_c00467{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{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);}
.m76_c00467{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);}
.m80_c00467{transform:matrix(0.246950,-0.002716,0.002750,0.249985,0,0);-ms-transform:matrix(0.246950,-0.002716,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246950,-0.002716,0.002750,0.249985,0,0);}
.m25_c00467{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.m83_c00467{transform:matrix(0.253070,-0.002784,0.002750,0.249985,0,0);-ms-transform:matrix(0.253070,-0.002784,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253070,-0.002784,0.002750,0.249985,0,0);}
.m7d_c00467{transform:matrix(0.253575,-0.002789,0.002750,0.249985,0,0);-ms-transform:matrix(0.253575,-0.002789,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253575,-0.002789,0.002750,0.249985,0,0);}
.m86_c00467{transform:matrix(0.256834,-0.002825,0.002750,0.249985,0,0);-ms-transform:matrix(0.256834,-0.002825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256834,-0.002825,0.002750,0.249985,0,0);}
.m95_c00467{transform:matrix(0.261754,-0.002879,0.002750,0.249985,0,0);-ms-transform:matrix(0.261754,-0.002879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261754,-0.002879,0.002750,0.249985,0,0);}
.m27_c00467{transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m4a_c00467{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00467{transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285405,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);}
.m82_c00467{transform:matrix(0.299477,-0.003294,0.002750,0.249985,0,0);-ms-transform:matrix(0.299477,-0.003294,0.002750,0.249985,0,0);-webkit-transform:matrix(0.299477,-0.003294,0.002750,0.249985,0,0);}
.mbe_c00467{transform:matrix(0.305985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305985,0.000000,0.000000,0.250000,0,0);}
.mb9_c00467{transform:matrix(0.321520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321520,0.000000,0.000000,0.250000,0,0);}
.m81_c00467{transform:matrix(0.340794,-0.003749,0.002750,0.249985,0,0);-ms-transform:matrix(0.340794,-0.003749,0.002750,0.249985,0,0);-webkit-transform:matrix(0.340794,-0.003749,0.002750,0.249985,0,0);}
.m4c_c00467{transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);}
.m8b_c00467{transform:matrix(0.366178,-0.004028,0.002750,0.249985,0,0);-ms-transform:matrix(0.366178,-0.004028,0.002750,0.249985,0,0);-webkit-transform:matrix(0.366178,-0.004028,0.002750,0.249985,0,0);}
.mbd_c00467{transform:matrix(0.374620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374620,0.000000,0.000000,0.250000,0,0);}
.mbb_c00467{transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385060,0.000000,0.000000,0.250000,0,0);}
.m7e_c00467{transform:matrix(0.392756,-0.004320,0.002750,0.249985,0,0);-ms-transform:matrix(0.392756,-0.004320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.392756,-0.004320,0.002750,0.249985,0,0);}
.m4b_c00467{transform:matrix(0.428400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00467{transform:matrix(0.514805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514805,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;}
.fs11_c00467{font-size:22.050000px;}
.fs6_c00467{font-size:50.400000px;}
.fs8_c00467{font-size:51.450000px;}
.fsb_c00467{font-size:51.453113px;}
.fs9_c00467{font-size:53.550000px;}
.fsc_c00467{font-size:53.553240px;}
.fsf_c00467{font-size:54.603303px;}
.fs5_c00467{font-size:55.650000px;}
.fsa_c00467{font-size:57.750000px;}
.fs0_c00467{font-size:58.800000px;}
.fs7_c00467{font-size:63.000000px;}
.fse_c00467{font-size:71.404320px;}
.fs4_c00467{font-size:72.450000px;}
.fsd_c00467{font-size:76.654637px;}
.fs3_c00467{font-size:79.800000px;}
.fs2_c00467{font-size:80.850000px;}
.fs10_c00467{font-size:81.900000px;}
.fs1_c00467{font-size:108.150000px;}
.y0_c00467{bottom:0.000000px;}
.y42_c00467{bottom:121.770000px;}
.y43_c00467{bottom:122.353500px;}
.y44_c00467{bottom:123.648000px;}
.y45_c00467{bottom:123.808500px;}
.y46_c00467{bottom:124.300500px;}
.y47_c00467{bottom:124.681500px;}
.y48_c00467{bottom:124.854000px;}
.y49_c00467{bottom:125.454000px;}
.y4a_c00467{bottom:125.934000px;}
.y4b_c00467{bottom:126.702000px;}
.y4c_c00467{bottom:127.011000px;}
.y1a_c00467{bottom:134.868000px;}
.y1_c00467{bottom:135.492000px;}
.y41_c00467{bottom:136.075500px;}
.y19_c00467{bottom:153.315000px;}
.y40_c00467{bottom:154.576500px;}
.y3f_c00467{bottom:168.231000px;}
.y18_c00467{bottom:171.493500px;}
.y17_c00467{bottom:189.628500px;}
.y3e_c00467{bottom:191.025000px;}
.y16_c00467{bottom:207.489000px;}
.y37_c00467{bottom:208.891722px;}
.y39_c00467{bottom:208.891779px;}
.y3b_c00467{bottom:208.892013px;}
.y38_c00467{bottom:208.892036px;}
.y3a_c00467{bottom:208.892210px;}
.y3d_c00467{bottom:208.892460px;}
.y3c_c00467{bottom:208.892657px;}
.y15_c00467{bottom:225.568500px;}
.y33_c00467{bottom:225.605665px;}
.y32_c00467{bottom:225.605761px;}
.y36_c00467{bottom:225.605883px;}
.y34_c00467{bottom:225.606172px;}
.y35_c00467{bottom:225.606230px;}
.y31_c00467{bottom:241.681200px;}
.y30_c00467{bottom:241.681426px;}
.y2f_c00467{bottom:241.681640px;}
.y2b_c00467{bottom:241.681905px;}
.y2c_c00467{bottom:241.682022px;}
.y2e_c00467{bottom:241.682076px;}
.y2d_c00467{bottom:241.682349px;}
.y14_c00467{bottom:243.498000px;}
.y13_c00467{bottom:262.330500px;}
.y29_c00467{bottom:263.104620px;}
.y28_c00467{bottom:263.104803px;}
.y2a_c00467{bottom:263.105277px;}
.y27_c00467{bottom:263.105329px;}
.y26_c00467{bottom:263.105799px;}
.y25_c00467{bottom:263.105906px;}
.y12_c00467{bottom:279.907500px;}
.y1d_c00467{bottom:279.991500px;}
.y1e_c00467{bottom:280.591143px;}
.y1f_c00467{bottom:280.971352px;}
.y20_c00467{bottom:281.619291px;}
.y21_c00467{bottom:281.752809px;}
.y22_c00467{bottom:282.290115px;}
.y23_c00467{bottom:282.718290px;}
.y24_c00467{bottom:282.997157px;}
.y11_c00467{bottom:298.228500px;}
.y1c_c00467{bottom:299.727000px;}
.y10_c00467{bottom:316.177500px;}
.y1b_c00467{bottom:317.958000px;}
.yf_c00467{bottom:702.826500px;}
.y4_c00467{bottom:762.211500px;}
.y5_c00467{bottom:762.403500px;}
.y6_c00467{bottom:762.627000px;}
.y7_c00467{bottom:762.976500px;}
.y8_c00467{bottom:763.555500px;}
.y9_c00467{bottom:763.951500px;}
.ya_c00467{bottom:764.167500px;}
.yb_c00467{bottom:764.356500px;}
.yc_c00467{bottom:764.838000px;}
.yd_c00467{bottom:765.099000px;}
.ye_c00467{bottom:765.339000px;}
.y3_c00467{bottom:788.407500px;}
.y2_c00467{bottom:811.237500px;}
.h13_c00467{height:22.050000px;}
.h8_c00467{height:50.400000px;}
.ha_c00467{height:51.450000px;}
.hd_c00467{height:51.453113px;}
.hb_c00467{height:53.550000px;}
.he_c00467{height:53.553240px;}
.h11_c00467{height:54.603303px;}
.h7_c00467{height:55.650000px;}
.hc_c00467{height:57.750000px;}
.h2_c00467{height:58.800000px;}
.h9_c00467{height:63.000000px;}
.h10_c00467{height:71.404320px;}
.h6_c00467{height:72.450000px;}
.hf_c00467{height:76.654637px;}
.h5_c00467{height:79.800000px;}
.h4_c00467{height:80.850000px;}
.h12_c00467{height:81.900000px;}
.h3_c00467{height:108.150000px;}
.h0_c00467{height:1008.450000px;}
.h1_c00467{height:1008.750000px;}
.w1_c00467{width:689.250000px;}
.w0_c00467{width:689.550000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:82.350000px;}
.x2_c00467{left:127.440000px;}
.x34_c00467{left:133.110000px;}
.x1f_c00467{left:134.190000px;}
.x2c_c00467{left:137.700000px;}
.x18_c00467{left:144.450000px;}
.x20_c00467{left:150.930000px;}
.x40_c00467{left:159.570000px;}
.x3e_c00467{left:160.650000px;}
.x2d_c00467{left:164.970000px;}
.x19_c00467{left:169.020000px;}
.x3b_c00467{left:170.640000px;}
.xe_c00467{left:174.814500px;}
.x21_c00467{left:179.010000px;}
.x35_c00467{left:181.980000px;}
.x1a_c00467{left:187.110000px;}
.x22_c00467{left:190.890000px;}
.x3_c00467{left:195.480000px;}
.x36_c00467{left:199.260000px;}
.x23_c00467{left:207.630000px;}
.x1b_c00467{left:216.810000px;}
.x41_c00467{left:217.890000px;}
.xf_c00467{left:220.998000px;}
.x32_c00467{left:228.150000px;}
.x4_c00467{left:233.010000px;}
.x3c_c00467{left:235.170000px;}
.x24_c00467{left:248.670000px;}
.x2e_c00467{left:252.180000px;}
.x33_c00467{left:253.800000px;}
.x28_c00467{left:257.040000px;}
.x10_c00467{left:259.890000px;}
.x3f_c00467{left:262.980000px;}
.x25_c00467{left:267.300000px;}
.x5_c00467{left:268.650000px;}
.x29_c00467{left:279.180000px;}
.x6_c00467{left:283.230000px;}
.x1c_c00467{left:287.550000px;}
.x7_c00467{left:294.030000px;}
.x2f_c00467{left:298.080000px;}
.x15_c00467{left:301.050000px;}
.x37_c00467{left:304.020000px;}
.x1d_c00467{left:305.370000px;}
.x42_c00467{left:311.310000px;}
.x38_c00467{left:314.820000px;}
.x26_c00467{left:319.950000px;}
.x39_c00467{left:321.570000px;}
.x8_c00467{left:324.810000px;}
.x2a_c00467{left:326.970000px;}
.x9_c00467{left:330.480000px;}
.x2b_c00467{left:335.880000px;}
.x30_c00467{left:338.850000px;}
.x27_c00467{left:340.740000px;}
.x1e_c00467{left:352.350000px;}
.x16_c00467{left:355.320000px;}
.x3a_c00467{left:366.120000px;}
.x11_c00467{left:368.154000px;}
.x3d_c00467{left:369.900000px;}
.x31_c00467{left:371.250000px;}
.x43_c00467{left:374.760000px;}
.x57_c00467{left:375.839245px;}
.x51_c00467{left:379.753500px;}
.x64_c00467{left:381.237683px;}
.x44_c00467{left:383.670000px;}
.x71_c00467{left:384.750000px;}
.xa_c00467{left:392.310000px;}
.x58_c00467{left:403.651111px;}
.x65_c00467{left:405.269087px;}
.x72_c00467{left:406.890000px;}
.x76_c00467{left:409.420500px;}
.xb_c00467{left:412.560000px;}
.x6d_c00467{left:413.910000px;}
.x17_c00467{left:423.090000px;}
.x6a_c00467{left:425.250000px;}
.x5d_c00467{left:427.682652px;}
.x4b_c00467{left:431.460000px;}
.x52_c00467{left:434.266500px;}
.x69_c00467{left:447.930000px;}
.x45_c00467{left:455.220000px;}
.x73_c00467{left:458.460000px;}
.x4c_c00467{left:463.860000px;}
.x5e_c00467{left:464.944156px;}
.x12_c00467{left:466.657500px;}
.xc_c00467{left:467.910000px;}
.x46_c00467{left:471.960000px;}
.x59_c00467{left:474.935241px;}
.x6e_c00467{left:481.140000px;}
.x4d_c00467{left:484.110000px;}
.xd_c00467{left:488.970000px;}
.x5a_c00467{left:493.025935px;}
.x13_c00467{left:495.583500px;}
.x47_c00467{left:497.070000px;}
.x74_c00467{left:498.150000px;}
.x4e_c00467{left:508.410000px;}
.x77_c00467{left:515.251500px;}
.x61_c00467{left:520.566202px;}
.x14_c00467{left:522.309000px;}
.x5f_c00467{left:524.886916px;}
.x66_c00467{left:526.236222px;}
.x53_c00467{left:527.734500px;}
.x48_c00467{left:533.520000px;}
.x54_c00467{left:539.872500px;}
.x4f_c00467{left:541.350000px;}
.x6b_c00467{left:543.780000px;}
.x67_c00467{left:547.297263px;}
.x5b_c00467{left:548.379634px;}
.x49_c00467{left:550.530000px;}
.x6f_c00467{left:554.040000px;}
.x75_c00467{left:559.170000px;}
.x60_c00467{left:567.009015px;}
.x6c_c00467{left:568.080000px;}
.x78_c00467{left:572.152500px;}
.x62_c00467{left:573.759638px;}
.x68_c00467{left:575.919228px;}
.x4a_c00467{left:580.230000px;}
.x70_c00467{left:582.930000px;}
.x50_c00467{left:588.600000px;}
.x5c_c00467{left:596.172409px;}
.x63_c00467{left:603.731767px;}
.x79_c00467{left:607.078500px;}
.x7a_c00467{left:621.100500px;}
.x55_c00467{left:627.643500px;}
.x56_c00467{left:652.995000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs11_c00467{font-size:19.600000pt;}
.fs6_c00467{font-size:44.800000pt;}
.fs8_c00467{font-size:45.733333pt;}
.fsb_c00467{font-size:45.736100pt;}
.fs9_c00467{font-size:47.600000pt;}
.fsc_c00467{font-size:47.602880pt;}
.fsf_c00467{font-size:48.536270pt;}
.fs5_c00467{font-size:49.466667pt;}
.fsa_c00467{font-size:51.333333pt;}
.fs0_c00467{font-size:52.266667pt;}
.fs7_c00467{font-size:56.000000pt;}
.fse_c00467{font-size:63.470506pt;}
.fs4_c00467{font-size:64.400000pt;}
.fsd_c00467{font-size:68.137455pt;}
.fs3_c00467{font-size:70.933333pt;}
.fs2_c00467{font-size:71.866667pt;}
.fs10_c00467{font-size:72.800000pt;}
.fs1_c00467{font-size:96.133333pt;}
.y0_c00467{bottom:0.000000pt;}
.y42_c00467{bottom:108.240000pt;}
.y43_c00467{bottom:108.758667pt;}
.y44_c00467{bottom:109.909333pt;}
.y45_c00467{bottom:110.052000pt;}
.y46_c00467{bottom:110.489333pt;}
.y47_c00467{bottom:110.828000pt;}
.y48_c00467{bottom:110.981333pt;}
.y49_c00467{bottom:111.514667pt;}
.y4a_c00467{bottom:111.941333pt;}
.y4b_c00467{bottom:112.624000pt;}
.y4c_c00467{bottom:112.898667pt;}
.y1a_c00467{bottom:119.882667pt;}
.y1_c00467{bottom:120.437333pt;}
.y41_c00467{bottom:120.956000pt;}
.y19_c00467{bottom:136.280000pt;}
.y40_c00467{bottom:137.401333pt;}
.y3f_c00467{bottom:149.538667pt;}
.y18_c00467{bottom:152.438667pt;}
.y17_c00467{bottom:168.558667pt;}
.y3e_c00467{bottom:169.800000pt;}
.y16_c00467{bottom:184.434667pt;}
.y37_c00467{bottom:185.681531pt;}
.y39_c00467{bottom:185.681581pt;}
.y3b_c00467{bottom:185.681789pt;}
.y38_c00467{bottom:185.681809pt;}
.y3a_c00467{bottom:185.681964pt;}
.y3d_c00467{bottom:185.682187pt;}
.y3c_c00467{bottom:185.682361pt;}
.y15_c00467{bottom:200.505333pt;}
.y33_c00467{bottom:200.538369pt;}
.y32_c00467{bottom:200.538455pt;}
.y36_c00467{bottom:200.538563pt;}
.y34_c00467{bottom:200.538820pt;}
.y35_c00467{bottom:200.538871pt;}
.y31_c00467{bottom:214.827733pt;}
.y30_c00467{bottom:214.827935pt;}
.y2f_c00467{bottom:214.828124pt;}
.y2b_c00467{bottom:214.828360pt;}
.y2c_c00467{bottom:214.828464pt;}
.y2e_c00467{bottom:214.828512pt;}
.y2d_c00467{bottom:214.828755pt;}
.y14_c00467{bottom:216.442667pt;}
.y13_c00467{bottom:233.182667pt;}
.y29_c00467{bottom:233.870773pt;}
.y28_c00467{bottom:233.870936pt;}
.y2a_c00467{bottom:233.871357pt;}
.y27_c00467{bottom:233.871404pt;}
.y26_c00467{bottom:233.871821pt;}
.y25_c00467{bottom:233.871916pt;}
.y12_c00467{bottom:248.806667pt;}
.y1d_c00467{bottom:248.881333pt;}
.y1e_c00467{bottom:249.414349pt;}
.y1f_c00467{bottom:249.752313pt;}
.y20_c00467{bottom:250.328259pt;}
.y21_c00467{bottom:250.446941pt;}
.y22_c00467{bottom:250.924547pt;}
.y23_c00467{bottom:251.305147pt;}
.y24_c00467{bottom:251.553028pt;}
.y11_c00467{bottom:265.092000pt;}
.y1c_c00467{bottom:266.424000pt;}
.y10_c00467{bottom:281.046667pt;}
.y1b_c00467{bottom:282.629333pt;}
.yf_c00467{bottom:624.734667pt;}
.y4_c00467{bottom:677.521333pt;}
.y5_c00467{bottom:677.692000pt;}
.y6_c00467{bottom:677.890667pt;}
.y7_c00467{bottom:678.201333pt;}
.y8_c00467{bottom:678.716000pt;}
.y9_c00467{bottom:679.068000pt;}
.ya_c00467{bottom:679.260000pt;}
.yb_c00467{bottom:679.428000pt;}
.yc_c00467{bottom:679.856000pt;}
.yd_c00467{bottom:680.088000pt;}
.ye_c00467{bottom:680.301333pt;}
.y3_c00467{bottom:700.806667pt;}
.y2_c00467{bottom:721.100000pt;}
.h13_c00467{height:19.600000pt;}
.h8_c00467{height:44.800000pt;}
.ha_c00467{height:45.733333pt;}
.hd_c00467{height:45.736100pt;}
.hb_c00467{height:47.600000pt;}
.he_c00467{height:47.602880pt;}
.h11_c00467{height:48.536270pt;}
.h7_c00467{height:49.466667pt;}
.hc_c00467{height:51.333333pt;}
.h2_c00467{height:52.266667pt;}
.h9_c00467{height:56.000000pt;}
.h10_c00467{height:63.470506pt;}
.h6_c00467{height:64.400000pt;}
.hf_c00467{height:68.137455pt;}
.h5_c00467{height:70.933333pt;}
.h4_c00467{height:71.866667pt;}
.h12_c00467{height:72.800000pt;}
.h3_c00467{height:96.133333pt;}
.h0_c00467{height:896.400000pt;}
.h1_c00467{height:896.666667pt;}
.w1_c00467{width:612.666667pt;}
.w0_c00467{width:612.933333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:73.200000pt;}
.x2_c00467{left:113.280000pt;}
.x34_c00467{left:118.320000pt;}
.x1f_c00467{left:119.280000pt;}
.x2c_c00467{left:122.400000pt;}
.x18_c00467{left:128.400000pt;}
.x20_c00467{left:134.160000pt;}
.x40_c00467{left:141.840000pt;}
.x3e_c00467{left:142.800000pt;}
.x2d_c00467{left:146.640000pt;}
.x19_c00467{left:150.240000pt;}
.x3b_c00467{left:151.680000pt;}
.xe_c00467{left:155.390667pt;}
.x21_c00467{left:159.120000pt;}
.x35_c00467{left:161.760000pt;}
.x1a_c00467{left:166.320000pt;}
.x22_c00467{left:169.680000pt;}
.x3_c00467{left:173.760000pt;}
.x36_c00467{left:177.120000pt;}
.x23_c00467{left:184.560000pt;}
.x1b_c00467{left:192.720000pt;}
.x41_c00467{left:193.680000pt;}
.xf_c00467{left:196.442667pt;}
.x32_c00467{left:202.800000pt;}
.x4_c00467{left:207.120000pt;}
.x3c_c00467{left:209.040000pt;}
.x24_c00467{left:221.040000pt;}
.x2e_c00467{left:224.160000pt;}
.x33_c00467{left:225.600000pt;}
.x28_c00467{left:228.480000pt;}
.x10_c00467{left:231.013333pt;}
.x3f_c00467{left:233.760000pt;}
.x25_c00467{left:237.600000pt;}
.x5_c00467{left:238.800000pt;}
.x29_c00467{left:248.160000pt;}
.x6_c00467{left:251.760000pt;}
.x1c_c00467{left:255.600000pt;}
.x7_c00467{left:261.360000pt;}
.x2f_c00467{left:264.960000pt;}
.x15_c00467{left:267.600000pt;}
.x37_c00467{left:270.240000pt;}
.x1d_c00467{left:271.440000pt;}
.x42_c00467{left:276.720000pt;}
.x38_c00467{left:279.840000pt;}
.x26_c00467{left:284.400000pt;}
.x39_c00467{left:285.840000pt;}
.x8_c00467{left:288.720000pt;}
.x2a_c00467{left:290.640000pt;}
.x9_c00467{left:293.760000pt;}
.x2b_c00467{left:298.560000pt;}
.x30_c00467{left:301.200000pt;}
.x27_c00467{left:302.880000pt;}
.x1e_c00467{left:313.200000pt;}
.x16_c00467{left:315.840000pt;}
.x3a_c00467{left:325.440000pt;}
.x11_c00467{left:327.248000pt;}
.x3d_c00467{left:328.800000pt;}
.x31_c00467{left:330.000000pt;}
.x43_c00467{left:333.120000pt;}
.x57_c00467{left:334.079329pt;}
.x51_c00467{left:337.558667pt;}
.x64_c00467{left:338.877940pt;}
.x44_c00467{left:341.040000pt;}
.x71_c00467{left:342.000000pt;}
.xa_c00467{left:348.720000pt;}
.x58_c00467{left:358.800988pt;}
.x65_c00467{left:360.239188pt;}
.x72_c00467{left:361.680000pt;}
.x76_c00467{left:363.929333pt;}
.xb_c00467{left:366.720000pt;}
.x6d_c00467{left:367.920000pt;}
.x17_c00467{left:376.080000pt;}
.x6a_c00467{left:378.000000pt;}
.x5d_c00467{left:380.162357pt;}
.x4b_c00467{left:383.520000pt;}
.x52_c00467{left:386.014667pt;}
.x69_c00467{left:398.160000pt;}
.x45_c00467{left:404.640000pt;}
.x73_c00467{left:407.520000pt;}
.x4c_c00467{left:412.320000pt;}
.x5e_c00467{left:413.283695pt;}
.x12_c00467{left:414.806667pt;}
.xc_c00467{left:415.920000pt;}
.x46_c00467{left:419.520000pt;}
.x59_c00467{left:422.164659pt;}
.x6e_c00467{left:427.680000pt;}
.x4d_c00467{left:430.320000pt;}
.xd_c00467{left:434.640000pt;}
.x5a_c00467{left:438.245276pt;}
.x13_c00467{left:440.518667pt;}
.x47_c00467{left:441.840000pt;}
.x74_c00467{left:442.800000pt;}
.x4e_c00467{left:451.920000pt;}
.x77_c00467{left:458.001333pt;}
.x61_c00467{left:462.725513pt;}
.x14_c00467{left:464.274667pt;}
.x5f_c00467{left:466.566148pt;}
.x66_c00467{left:467.765531pt;}
.x53_c00467{left:469.097333pt;}
.x48_c00467{left:474.240000pt;}
.x54_c00467{left:479.886667pt;}
.x4f_c00467{left:481.200000pt;}
.x6b_c00467{left:483.360000pt;}
.x67_c00467{left:486.486456pt;}
.x5b_c00467{left:487.448564pt;}
.x49_c00467{left:489.360000pt;}
.x6f_c00467{left:492.480000pt;}
.x75_c00467{left:497.040000pt;}
.x60_c00467{left:504.008013pt;}
.x6c_c00467{left:504.960000pt;}
.x78_c00467{left:508.580000pt;}
.x62_c00467{left:510.008567pt;}
.x68_c00467{left:511.928203pt;}
.x4a_c00467{left:515.760000pt;}
.x70_c00467{left:518.160000pt;}
.x50_c00467{left:523.200000pt;}
.x5c_c00467{left:529.931031pt;}
.x63_c00467{left:536.650460pt;}
.x79_c00467{left:539.625333pt;}
.x7a_c00467{left:552.089333pt;}
.x55_c00467{left:557.905333pt;}
.x56_c00467{left:580.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_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;}
.m66_c00468{transform:matrix(0.020055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020055,0.000000,0.000000,0.250000,0,0);}
.m6b_c00468{transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023470,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{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);}
.m91_c00468{transform:matrix(0.027579,0.000193,-0.001750,0.249994,0,0);-ms-transform:matrix(0.027579,0.000193,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.027579,0.000193,-0.001750,0.249994,0,0);}
.m94_c00468{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);}
.m2b_c00468{transform:matrix(0.068615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068615,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.069205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069205,0.000000,0.000000,0.250000,0,0);}
.mbd_c00468{transform:matrix(0.092480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092480,0.000000,0.000000,0.250000,0,0);}
.m76_c00468{transform:matrix(0.104128,0.001250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.104128,0.001250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.104128,0.001250,-0.003000,0.249982,0,0);}
.m25_c00468{transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106260,0.000000,0.000000,0.250000,0,0);}
.m65_c00468{transform:matrix(0.114320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114320,0.000000,0.000000,0.250000,0,0);}
.md4_c00468{transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120930,0.000000,0.000000,0.250000,0,0);}
.m98_c00468{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00468{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);}
.m79_c00468{transform:matrix(0.146099,0.001753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146099,0.001753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146099,0.001753,-0.003000,0.249982,0,0);}
.ma5_c00468{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.ma2_c00468{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);}
.m48_c00468{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);}
.m47_c00468{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);}
.m57_c00468{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);}
.m5b_c00468{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);}
.m38_c00468{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);}
.m4a_c00468{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);}
.m6d_c00468{transform:matrix(0.167318,0.002008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167318,0.002008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167318,0.002008,-0.003000,0.249982,0,0);}
.m4b_c00468{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);}
.m5a_c00468{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.m93_c00468{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);}
.m6a_c00468{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);}
.m58_c00468{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);}
.m4e_c00468{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);}
.ma_c00468{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);}
.m11_c00468{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);}
.m9e_c00468{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);}
.mb8_c00468{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);}
.m55_c00468{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);}
.m26_c00468{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);}
.m5c_c00468{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);}
.m2_c00468{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);}
.mae_c00468{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);}
.m23_c00468{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);}
.m28_c00468{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);}
.m5d_c00468{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);}
.m6_c00468{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);}
.m24_c00468{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);}
.m53_c00468{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);}
.m1b_c00468{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);}
.m27_c00468{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m59_c00468{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);}
.m21_c00468{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);}
.m4c_c00468{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);}
.mb2_c00468{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);}
.md0_c00468{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);}
.mcc_c00468{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);}
.m1e_c00468{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);}
.m68_c00468{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);}
.ma6_c00468{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);}
.m46_c00468{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);}
.m56_c00468{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);}
.maa_c00468{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);}
.mcf_c00468{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);}
.m9_c00468{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);}
.mbb_c00468{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);}
.m4f_c00468{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);}
.maf_c00468{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);}
.mab_c00468{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);}
.m63_c00468{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);}
.mad_c00468{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);}
.m12_c00468{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);}
.m50_c00468{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);}
.m51_c00468{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);}
.m64_c00468{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.m52_c00468{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);}
.m18_c00468{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);}
.m54_c00468{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);}
.m32_c00468{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);}
.m9b_c00468{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);}
.m40_c00468{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);}
.mb4_c00468{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);}
.m3_c00468{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);}
.m34_c00468{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);}
.m14_c00468{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);}
.ma4_c00468{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);}
.m4_c00468{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);}
.md_c00468{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);}
.mc3_c00468{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);}
.m9a_c00468{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);}
.ma7_c00468{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);}
.mbc_c00468{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);}
.m19_c00468{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);}
.m1f_c00468{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);}
.m9d_c00468{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);}
.m77_c00468{transform:matrix(0.207575,0.002491,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207575,0.002491,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207575,0.002491,-0.003000,0.249982,0,0);}
.mcb_c00468{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);}
.mb0_c00468{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);}
.m2a_c00468{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);}
.m67_c00468{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);}
.m7e_c00468{transform:matrix(0.209850,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209850,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209850,0.002518,-0.003000,0.249982,0,0);}
.md9_c00468{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);}
.m3a_c00468{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);}
.m16_c00468{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);}
.m1d_c00468{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);}
.mc1_c00468{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);}
.mb7_c00468{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);}
.mb_c00468{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);}
.md6_c00468{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);}
.m37_c00468{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);}
.mbf_c00468{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);}
.ma3_c00468{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);}
.m5_c00468{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);}
.m1c_c00468{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.mc0_c00468{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);}
.m29_c00468{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);}
.m1a_c00468{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);}
.m22_c00468{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);}
.mb3_c00468{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);}
.mb6_c00468{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);}
.m35_c00468{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);}
.m45_c00468{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);}
.m81_c00468{transform:matrix(0.221674,0.002660,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221674,0.002660,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221674,0.002660,-0.003000,0.249982,0,0);}
.ma9_c00468{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);}
.m13_c00468{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);}
.m3f_c00468{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.mb1_c00468{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);}
.m7d_c00468{transform:matrix(0.226509,0.002718,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226509,0.002718,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226509,0.002718,-0.003000,0.249982,0,0);}
.m8_c00468{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);}
.m82_c00468{transform:matrix(0.227779,0.002733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227779,0.002733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227779,0.002733,-0.003000,0.249982,0,0);}
.m7f_c00468{transform:matrix(0.227969,0.002736,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227969,0.002736,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227969,0.002736,-0.003000,0.249982,0,0);}
.mbe_c00468{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);}
.m3b_c00468{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);}
.m92_c00468{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);}
.mc2_c00468{transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{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);}
.m9c_c00468{transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237565,0.000000,0.000000,0.250000,0,0);}
.m5f_c00468{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);}
.m83_c00468{transform:matrix(0.241403,0.002897,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241403,0.002897,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241403,0.002897,-0.003000,0.249982,0,0);}
.m2e_c00468{transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242670,0.000000,0.000000,0.250000,0,0);}
.me_c00468{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);}
.m15_c00468{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);}
.m33_c00468{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);}
.m2c_c00468{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);}
.md1_c00468{transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);}
.m73_c00468{transform:matrix(0.244807,0.002938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244807,0.002938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244807,0.002938,-0.003000,0.249982,0,0);}
.ma1_c00468{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);}
.m99_c00468{transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245385,0.000000,0.000000,0.250000,0,0);}
.mc6_c00468{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);}
.mc5_c00468{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);}
.m3e_c00468{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.mb9_c00468{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);}
.mc7_c00468{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);}
.m95_c00468{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);}
.m71_c00468{transform:matrix(0.250697,0.003008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250697,0.003008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250697,0.003008,-0.003000,0.249982,0,0);}
.m69_c00468{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_c00468{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.mba_c00468{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);}
.mcd_c00468{transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);}
.m62_c00468{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);}
.m61_c00468{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{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);}
.mca_c00468{transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);}
.md8_c00468{transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260390,0.000000,0.000000,0.250000,0,0);}
.md2_c00468{transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261630,0.000000,0.000000,0.250000,0,0);}
.m86_c00468{transform:matrix(0.261676,0.003140,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261676,0.003140,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261676,0.003140,-0.003000,0.249982,0,0);}
.ma0_c00468{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);}
.m17_c00468{transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);}
.mc4_c00468{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);}
.m70_c00468{transform:matrix(0.273425,0.003281,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273425,0.003281,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273425,0.003281,-0.003000,0.249982,0,0);}
.m43_c00468{transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275915,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277310,0.000000,0.000000,0.250000,0,0);}
.m7c_c00468{transform:matrix(0.277470,0.003330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277470,0.003330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277470,0.003330,-0.003000,0.249982,0,0);}
.m39_c00468{transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{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);}
.m8f_c00468{transform:matrix(0.281278,0.001969,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281278,0.001969,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281278,0.001969,-0.001750,0.249994,0,0);}
.m60_c00468{transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285715,0.000000,0.000000,0.250000,0,0);}
.mc9_c00468{transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291515,0.000000,0.000000,0.250000,0,0);}
.m96_c00468{transform:matrix(0.293660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293660,0.000000,0.000000,0.250000,0,0);}
.mac_c00468{transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295660,0.000000,0.000000,0.250000,0,0);}
.m85_c00468{transform:matrix(0.303138,0.003638,-0.003000,0.249982,0,0);-ms-transform:matrix(0.303138,0.003638,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.303138,0.003638,-0.003000,0.249982,0,0);}
.m90_c00468{transform:matrix(0.306727,0.002147,-0.001750,0.249994,0,0);-ms-transform:matrix(0.306727,0.002147,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.306727,0.002147,-0.001750,0.249994,0,0);}
.m75_c00468{transform:matrix(0.312732,0.003753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312732,0.003753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312732,0.003753,-0.003000,0.249982,0,0);}
.m87_c00468{transform:matrix(0.314272,0.003771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314272,0.003771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314272,0.003771,-0.003000,0.249982,0,0);}
.m6f_c00468{transform:matrix(0.315182,0.003782,-0.003000,0.249982,0,0);-ms-transform:matrix(0.315182,0.003782,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.315182,0.003782,-0.003000,0.249982,0,0);}
.m97_c00468{transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318160,0.000000,0.000000,0.250000,0,0);}
.md3_c00468{transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319305,0.000000,0.000000,0.250000,0,0);}
.m7a_c00468{transform:matrix(0.321917,0.003863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.321917,0.003863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.321917,0.003863,-0.003000,0.249982,0,0);}
.ma8_c00468{transform:matrix(0.322315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322315,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.323747,0.003885,-0.003000,0.249982,0,0);-ms-transform:matrix(0.323747,0.003885,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.323747,0.003885,-0.003000,0.249982,0,0);}
.m6e_c00468{transform:matrix(0.341890,0.004103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.341890,0.004103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.341890,0.004103,-0.003000,0.249982,0,0);}
.mb5_c00468{transform:matrix(0.342335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342335,0.000000,0.000000,0.250000,0,0);}
.m9f_c00468{transform:matrix(0.343875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343875,0.000000,0.000000,0.250000,0,0);}
.mce_c00468{transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345400,0.000000,0.000000,0.250000,0,0);}
.m36_c00468{transform:matrix(0.346900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);}
.m2f_c00468{transform:matrix(0.357040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357040,0.000000,0.000000,0.250000,0,0);}
.m72_c00468{transform:matrix(0.392787,0.004713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.392787,0.004713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.392787,0.004713,-0.003000,0.249982,0,0);}
.m74_c00468{transform:matrix(0.401801,0.004822,-0.003000,0.249982,0,0);-ms-transform:matrix(0.401801,0.004822,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.401801,0.004822,-0.003000,0.249982,0,0);}
.m8c_c00468{transform:matrix(0.403810,0.002827,-0.001750,0.249994,0,0);-ms-transform:matrix(0.403810,0.002827,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.403810,0.002827,-0.001750,0.249994,0,0);}
.m6c_c00468{transform:matrix(0.416825,0.005002,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416825,0.005002,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416825,0.005002,-0.003000,0.249982,0,0);}
.m78_c00468{transform:matrix(0.416975,0.005004,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416975,0.005004,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416975,0.005004,-0.003000,0.249982,0,0);}
.m5e_c00468{transform:matrix(0.437880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437880,0.000000,0.000000,0.250000,0,0);}
.m7b_c00468{transform:matrix(0.441933,0.005303,-0.003000,0.249982,0,0);-ms-transform:matrix(0.441933,0.005303,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.441933,0.005303,-0.003000,0.249982,0,0);}
.m8e_c00468{transform:matrix(0.444754,0.003113,-0.001750,0.249994,0,0);-ms-transform:matrix(0.444754,0.003113,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.444754,0.003113,-0.001750,0.249994,0,0);}
.m8d_c00468{transform:matrix(0.451149,0.003158,-0.001750,0.249994,0,0);-ms-transform:matrix(0.451149,0.003158,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.451149,0.003158,-0.001750,0.249994,0,0);}
.m80_c00468{transform:matrix(0.458872,0.005506,-0.003000,0.249982,0,0);-ms-transform:matrix(0.458872,0.005506,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.458872,0.005506,-0.003000,0.249982,0,0);}
.m44_c00468{transform:matrix(0.466035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466035,0.000000,0.000000,0.250000,0,0);}
.m88_c00468{transform:matrix(0.471401,0.005657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.471401,0.005657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.471401,0.005657,-0.003000,0.249982,0,0);}
.m0_c00468{transform:matrix(0.506565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506565,0.000000,0.000000,0.250000,0,0);}
.m89_c00468{transform:matrix(0.512210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512210,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.518205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518205,0.000000,0.000000,0.250000,0,0);}
.m8a_c00468{transform:matrix(0.519545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519545,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.653685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653685,0.000000,0.000000,0.250000,0,0);}
.m41_c00468{transform:matrix(0.669710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669710,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.671945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671945,0.000000,0.000000,0.250000,0,0);}
.md7_c00468{transform:matrix(0.685645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685645,0.000000,0.000000,0.250000,0,0);}
.md5_c00468{transform:matrix(0.697685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697685,0.000000,0.000000,0.250000,0,0);}
.mda_c00468{transform:matrix(0.764395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764395,0.000000,0.000000,0.250000,0,0);}
.m8b_c00468{transform:matrix(0.774680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774680,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;}
._0_c00468{margin-left:-28.146391px;}
.fc0_c00468{color:transparent;}
.fs13_c00468{font-size:22.050000px;}
.fsd_c00468{font-size:43.053099px;}
.fs14_c00468{font-size:44.100000px;}
.fs8_c00468{font-size:47.250000px;}
.fs15_c00468{font-size:48.300000px;}
.fs4_c00468{font-size:49.350000px;}
.fs7_c00468{font-size:50.400000px;}
.fs5_c00468{font-size:51.450000px;}
.fs6_c00468{font-size:52.500000px;}
.fsb_c00468{font-size:52.503780px;}
.fsc_c00468{font-size:54.603931px;}
.fs12_c00468{font-size:66.150000px;}
.fs1_c00468{font-size:67.200000px;}
.fs9_c00468{font-size:71.400000px;}
.fsa_c00468{font-size:72.450000px;}
.fs3_c00468{font-size:73.500000px;}
.fs10_c00468{font-size:74.551826px;}
.fsf_c00468{font-size:76.651878px;}
.fs2_c00468{font-size:85.050000px;}
.fs11_c00468{font-size:86.100000px;}
.fs0_c00468{font-size:106.050000px;}
.fse_c00468{font-size:107.100000px;}
.y0_c00468{bottom:0.000000px;}
.y47_c00468{bottom:157.215000px;}
.y2f_c00468{bottom:159.966174px;}
.y30_c00468{bottom:159.966552px;}
.y2b_c00468{bottom:159.966630px;}
.y2e_c00468{bottom:159.966816px;}
.y31_c00468{bottom:159.967014px;}
.y2c_c00468{bottom:159.967026px;}
.y2d_c00468{bottom:159.967542px;}
.y32_c00468{bottom:159.967728px;}
.y24_c00468{bottom:175.250958px;}
.y25_c00468{bottom:175.251156px;}
.y23_c00468{bottom:175.251198px;}
.y22_c00468{bottom:175.251282px;}
.y29_c00468{bottom:175.251366px;}
.y21_c00468{bottom:175.251504px;}
.y26_c00468{bottom:175.251654px;}
.y2a_c00468{bottom:175.251822px;}
.y28_c00468{bottom:175.252068px;}
.y27_c00468{bottom:175.252392px;}
.yd_c00468{bottom:176.644500px;}
.y20_c00468{bottom:191.567706px;}
.y1f_c00468{bottom:193.215372px;}
.y1e_c00468{bottom:193.623630px;}
.y1d_c00468{bottom:193.834176px;}
.y1c_c00468{bottom:194.018928px;}
.y1b_c00468{bottom:194.440092px;}
.y1a_c00468{bottom:194.874378px;}
.y19_c00468{bottom:195.062604px;}
.y18_c00468{bottom:195.250200px;}
.y17_c00468{bottom:195.820404px;}
.y16_c00468{bottom:196.021500px;}
.yc_c00468{bottom:211.968000px;}
.yb_c00468{bottom:230.211000px;}
.y46_c00468{bottom:246.331500px;}
.y15_c00468{bottom:247.548000px;}
.ya_c00468{bottom:248.295000px;}
.y45_c00468{bottom:264.454500px;}
.y9_c00468{bottom:265.821000px;}
.y44_c00468{bottom:282.933000px;}
.y8_c00468{bottom:283.789500px;}
.y43_c00468{bottom:301.065000px;}
.y7_c00468{bottom:302.098500px;}
.y42_c00468{bottom:318.501000px;}
.y6_c00468{bottom:319.966500px;}
.y41_c00468{bottom:336.235500px;}
.y5_c00468{bottom:338.008500px;}
.y40_c00468{bottom:359.370000px;}
.y3f_c00468{bottom:388.327500px;}
.y3e_c00468{bottom:411.289500px;}
.y3d_c00468{bottom:433.218000px;}
.y4_c00468{bottom:434.718000px;}
.y3_c00468{bottom:454.711500px;}
.y3c_c00468{bottom:454.827000px;}
.y14_c00468{bottom:456.541500px;}
.y13_c00468{bottom:478.420500px;}
.y12_c00468{bottom:501.072000px;}
.y11_c00468{bottom:523.866000px;}
.y10_c00468{bottom:547.102500px;}
.yf_c00468{bottom:569.338500px;}
.y3b_c00468{bottom:591.445500px;}
.ye_c00468{bottom:592.110000px;}
.y39_c00468{bottom:668.437617px;}
.y3a_c00468{bottom:668.437698px;}
.y38_c00468{bottom:668.437996px;}
.y37_c00468{bottom:692.824771px;}
.y36_c00468{bottom:694.040377px;}
.y35_c00468{bottom:694.989000px;}
.y34_c00468{bottom:739.501500px;}
.y2_c00468{bottom:740.928000px;}
.y33_c00468{bottom:785.700000px;}
.y1_c00468{bottom:786.106500px;}
.h15_c00468{height:22.050000px;}
.hf_c00468{height:43.053099px;}
.h16_c00468{height:44.100000px;}
.ha_c00468{height:47.250000px;}
.h17_c00468{height:48.300000px;}
.h6_c00468{height:49.350000px;}
.h9_c00468{height:50.400000px;}
.h7_c00468{height:51.450000px;}
.h8_c00468{height:52.500000px;}
.hd_c00468{height:52.503780px;}
.he_c00468{height:54.603931px;}
.h14_c00468{height:66.150000px;}
.h3_c00468{height:67.200000px;}
.hb_c00468{height:71.400000px;}
.hc_c00468{height:72.450000px;}
.h5_c00468{height:73.500000px;}
.h12_c00468{height:74.551826px;}
.h11_c00468{height:76.651878px;}
.h4_c00468{height:85.050000px;}
.h13_c00468{height:86.100000px;}
.h2_c00468{height:106.050000px;}
.h10_c00468{height:107.100000px;}
.h1_c00468{height:1005.000000px;}
.h0_c00468{height:1005.150000px;}
.w0_c00468{width:715.200000px;}
.w1_c00468{width:715.500000px;}
.x0_c00468{left:0.000000px;}
.x28_c00468{left:84.510000px;}
.x26_c00468{left:89.100000px;}
.x9_c00468{left:91.800000px;}
.x2d_c00468{left:92.880000px;}
.x12_c00468{left:97.200000px;}
.x33_c00468{left:106.110000px;}
.x20_c00468{left:110.160000px;}
.x50_c00468{left:113.799000px;}
.x13_c00468{left:120.690000px;}
.x27_c00468{left:125.550000px;}
.x2e_c00468{left:129.060000px;}
.xa_c00468{left:130.140000px;}
.x4_c00468{left:133.650000px;}
.x3_c00468{left:134.730000px;}
.x1d_c00468{left:139.320000px;}
.x14_c00468{left:140.940000px;}
.x17_c00468{left:142.560000px;}
.x60_c00468{left:147.155124px;}
.x18_c00468{left:151.470000px;}
.x21_c00468{left:155.520000px;}
.xb_c00468{left:160.920000px;}
.x2_c00468{left:163.080000px;}
.x22_c00468{left:164.160000px;}
.x5_c00468{left:167.130000px;}
.x3d_c00468{left:168.750000px;}
.x4e_c00468{left:170.640000px;}
.x51_c00468{left:176.949000px;}
.x23_c00468{left:179.820000px;}
.x43_c00468{left:182.520000px;}
.x19_c00468{left:183.600000px;}
.x29_c00468{left:184.950000px;}
.x2f_c00468{left:189.540000px;}
.xc_c00468{left:190.890000px;}
.x52_c00468{left:192.634500px;}
.x3e_c00468{left:195.480000px;}
.x30_c00468{left:200.340000px;}
.x2a_c00468{left:204.390000px;}
.x15_c00468{left:205.470000px;}
.x6_c00468{left:207.630000px;}
.x1a_c00468{left:213.840000px;}
.x24_c00468{left:214.920000px;}
.x34_c00468{left:216.810000px;}
.x31_c00468{left:222.210000px;}
.xd_c00468{left:226.530000px;}
.x53_c00468{left:228.825000px;}
.x1_c00468{left:231.390000px;}
.x1b_c00468{left:233.280000px;}
.x25_c00468{left:235.710000px;}
.x7_c00468{left:238.950000px;}
.xe_c00468{left:243.270000px;}
.x61_c00468{left:249.490848px;}
.x1e_c00468{left:254.340000px;}
.x4b_c00468{left:260.010000px;}
.x32_c00468{left:262.710000px;}
.x54_c00468{left:263.922000px;}
.x16_c00468{left:266.220000px;}
.x48_c00468{left:267.570000px;}
.xf_c00468{left:270.000000px;}
.x1c_c00468{left:272.160000px;}
.x2b_c00468{left:275.130000px;}
.x44_c00468{left:279.450000px;}
.x1f_c00468{left:285.390000px;}
.x2c_c00468{left:288.900000px;}
.x35_c00468{left:291.870000px;}
.x6d_c00468{left:295.650000px;}
.x55_c00468{left:296.863500px;}
.x4c_c00468{left:299.430000px;}
.x65_c00468{left:302.670000px;}
.x45_c00468{left:304.560000px;}
.x36_c00468{left:309.150000px;}
.x39_c00468{left:310.770000px;}
.x8_c00468{left:316.170000px;}
.x10_c00468{left:322.380000px;}
.x72_c00468{left:323.460000px;}
.x11_c00468{left:331.560000px;}
.x4f_c00468{left:333.180000px;}
.x46_c00468{left:335.340000px;}
.x3f_c00468{left:338.310000px;}
.x64_c00468{left:343.440000px;}
.x74_c00468{left:345.330000px;}
.x57_c00468{left:346.429200px;}
.x75_c00468{left:348.570000px;}
.x6e_c00468{left:349.650000px;}
.x37_c00468{left:356.400000px;}
.x3a_c00468{left:362.610000px;}
.x6f_c00468{left:368.280000px;}
.x40_c00468{left:370.980000px;}
.x49_c00468{left:372.600000px;}
.x81_c00468{left:374.220000px;}
.x4d_c00468{left:376.650000px;}
.x76_c00468{left:379.620000px;}
.x38_c00468{left:385.020000px;}
.x47_c00468{left:386.100000px;}
.x7d_c00468{left:387.180000px;}
.x3b_c00468{left:389.340000px;}
.x58_c00468{left:390.442536px;}
.x88_c00468{left:391.500000px;}
.x4a_c00468{left:394.200000px;}
.x59_c00468{left:397.463544px;}
.x82_c00468{left:399.600000px;}
.x77_c00468{left:403.920000px;}
.x66_c00468{left:406.965000px;}
.x70_c00468{left:412.020000px;}
.x5a_c00468{left:415.824690px;}
.x41_c00468{left:416.880000px;}
.x83_c00468{left:419.850000px;}
.x8b_c00468{left:423.090000px;}
.x68_c00468{left:432.810000px;}
.x8c_c00468{left:434.160000px;}
.x3c_c00468{left:438.750000px;}
.x73_c00468{left:440.640000px;}
.x5b_c00468{left:442.287006px;}
.x78_c00468{left:443.880000px;}
.x6a_c00468{left:454.680000px;}
.x69_c00468{left:459.540000px;}
.x5c_c00468{left:461.728314px;}
.x6b_c00468{left:463.860000px;}
.x42_c00468{left:466.020000px;}
.x56_c00468{left:468.190500px;}
.x62_c00468{left:469.827582px;}
.x89_c00468{left:473.040000px;}
.x79_c00468{left:474.120000px;}
.x8d_c00468{left:488.430000px;}
.x7a_c00468{left:490.590000px;}
.x84_c00468{left:495.450000px;}
.x71_c00468{left:496.530000px;}
.x5d_c00468{left:499.260714px;}
.x6c_c00468{left:504.360000px;}
.x7e_c00468{left:513.810000px;}
.x86_c00468{left:519.480000px;}
.x5e_c00468{left:527.073210px;}
.x87_c00468{left:530.550000px;}
.x8a_c00468{left:533.790000px;}
.x7b_c00468{left:536.220000px;}
.x67_c00468{left:537.311185px;}
.x7f_c00468{left:539.460000px;}
.x63_c00468{left:541.653432px;}
.x85_c00468{left:547.020000px;}
.x7c_c00468{left:551.880000px;}
.x80_c00468{left:553.770000px;}
.x5f_c00468{left:558.664764px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._0_c00468{margin-left:-25.019014pt;}
.fs13_c00468{font-size:19.600000pt;}
.fsd_c00468{font-size:38.269422pt;}
.fs14_c00468{font-size:39.200000pt;}
.fs8_c00468{font-size:42.000000pt;}
.fs15_c00468{font-size:42.933333pt;}
.fs4_c00468{font-size:43.866667pt;}
.fs7_c00468{font-size:44.800000pt;}
.fs5_c00468{font-size:45.733333pt;}
.fs6_c00468{font-size:46.666667pt;}
.fsb_c00468{font-size:46.670027pt;}
.fsc_c00468{font-size:48.536828pt;}
.fs12_c00468{font-size:58.800000pt;}
.fs1_c00468{font-size:59.733333pt;}
.fs9_c00468{font-size:63.466667pt;}
.fsa_c00468{font-size:64.400000pt;}
.fs3_c00468{font-size:65.333333pt;}
.fs10_c00468{font-size:66.268290pt;}
.fsf_c00468{font-size:68.135003pt;}
.fs2_c00468{font-size:75.600000pt;}
.fs11_c00468{font-size:76.533333pt;}
.fs0_c00468{font-size:94.266667pt;}
.fse_c00468{font-size:95.200000pt;}
.y0_c00468{bottom:0.000000pt;}
.y47_c00468{bottom:139.746667pt;}
.y2f_c00468{bottom:142.192155pt;}
.y30_c00468{bottom:142.192491pt;}
.y2b_c00468{bottom:142.192560pt;}
.y2e_c00468{bottom:142.192725pt;}
.y31_c00468{bottom:142.192901pt;}
.y2c_c00468{bottom:142.192912pt;}
.y2d_c00468{bottom:142.193371pt;}
.y32_c00468{bottom:142.193536pt;}
.y24_c00468{bottom:155.778629pt;}
.y25_c00468{bottom:155.778805pt;}
.y23_c00468{bottom:155.778843pt;}
.y22_c00468{bottom:155.778917pt;}
.y29_c00468{bottom:155.778992pt;}
.y21_c00468{bottom:155.779115pt;}
.y26_c00468{bottom:155.779248pt;}
.y2a_c00468{bottom:155.779397pt;}
.y28_c00468{bottom:155.779616pt;}
.y27_c00468{bottom:155.779904pt;}
.yd_c00468{bottom:157.017333pt;}
.y20_c00468{bottom:170.282405pt;}
.y1f_c00468{bottom:171.746997pt;}
.y1e_c00468{bottom:172.109893pt;}
.y1d_c00468{bottom:172.297045pt;}
.y1c_c00468{bottom:172.461269pt;}
.y1b_c00468{bottom:172.835637pt;}
.y1a_c00468{bottom:173.221669pt;}
.y19_c00468{bottom:173.388981pt;}
.y18_c00468{bottom:173.555733pt;}
.y17_c00468{bottom:174.062581pt;}
.y16_c00468{bottom:174.241333pt;}
.yc_c00468{bottom:188.416000pt;}
.yb_c00468{bottom:204.632000pt;}
.y46_c00468{bottom:218.961333pt;}
.y15_c00468{bottom:220.042667pt;}
.ya_c00468{bottom:220.706667pt;}
.y45_c00468{bottom:235.070667pt;}
.y9_c00468{bottom:236.285333pt;}
.y44_c00468{bottom:251.496000pt;}
.y8_c00468{bottom:252.257333pt;}
.y43_c00468{bottom:267.613333pt;}
.y7_c00468{bottom:268.532000pt;}
.y42_c00468{bottom:283.112000pt;}
.y6_c00468{bottom:284.414667pt;}
.y41_c00468{bottom:298.876000pt;}
.y5_c00468{bottom:300.452000pt;}
.y40_c00468{bottom:319.440000pt;}
.y3f_c00468{bottom:345.180000pt;}
.y3e_c00468{bottom:365.590667pt;}
.y3d_c00468{bottom:385.082667pt;}
.y4_c00468{bottom:386.416000pt;}
.y3_c00468{bottom:404.188000pt;}
.y3c_c00468{bottom:404.290667pt;}
.y14_c00468{bottom:405.814667pt;}
.y13_c00468{bottom:425.262667pt;}
.y12_c00468{bottom:445.397333pt;}
.y11_c00468{bottom:465.658667pt;}
.y10_c00468{bottom:486.313333pt;}
.yf_c00468{bottom:506.078667pt;}
.y3b_c00468{bottom:525.729333pt;}
.ye_c00468{bottom:526.320000pt;}
.y39_c00468{bottom:594.166771pt;}
.y3a_c00468{bottom:594.166843pt;}
.y38_c00468{bottom:594.167108pt;}
.y37_c00468{bottom:615.844241pt;}
.y36_c00468{bottom:616.924780pt;}
.y35_c00468{bottom:617.768000pt;}
.y34_c00468{bottom:657.334667pt;}
.y2_c00468{bottom:658.602667pt;}
.y33_c00468{bottom:698.400000pt;}
.y1_c00468{bottom:698.761333pt;}
.h15_c00468{height:19.600000pt;}
.hf_c00468{height:38.269422pt;}
.h16_c00468{height:39.200000pt;}
.ha_c00468{height:42.000000pt;}
.h17_c00468{height:42.933333pt;}
.h6_c00468{height:43.866667pt;}
.h9_c00468{height:44.800000pt;}
.h7_c00468{height:45.733333pt;}
.h8_c00468{height:46.666667pt;}
.hd_c00468{height:46.670027pt;}
.he_c00468{height:48.536828pt;}
.h14_c00468{height:58.800000pt;}
.h3_c00468{height:59.733333pt;}
.hb_c00468{height:63.466667pt;}
.hc_c00468{height:64.400000pt;}
.h5_c00468{height:65.333333pt;}
.h12_c00468{height:66.268290pt;}
.h11_c00468{height:68.135003pt;}
.h4_c00468{height:75.600000pt;}
.h13_c00468{height:76.533333pt;}
.h2_c00468{height:94.266667pt;}
.h10_c00468{height:95.200000pt;}
.h1_c00468{height:893.333333pt;}
.h0_c00468{height:893.466667pt;}
.w0_c00468{width:635.733333pt;}
.w1_c00468{width:636.000000pt;}
.x0_c00468{left:0.000000pt;}
.x28_c00468{left:75.120000pt;}
.x26_c00468{left:79.200000pt;}
.x9_c00468{left:81.600000pt;}
.x2d_c00468{left:82.560000pt;}
.x12_c00468{left:86.400000pt;}
.x33_c00468{left:94.320000pt;}
.x20_c00468{left:97.920000pt;}
.x50_c00468{left:101.154667pt;}
.x13_c00468{left:107.280000pt;}
.x27_c00468{left:111.600000pt;}
.x2e_c00468{left:114.720000pt;}
.xa_c00468{left:115.680000pt;}
.x4_c00468{left:118.800000pt;}
.x3_c00468{left:119.760000pt;}
.x1d_c00468{left:123.840000pt;}
.x14_c00468{left:125.280000pt;}
.x17_c00468{left:126.720000pt;}
.x60_c00468{left:130.804555pt;}
.x18_c00468{left:134.640000pt;}
.x21_c00468{left:138.240000pt;}
.xb_c00468{left:143.040000pt;}
.x2_c00468{left:144.960000pt;}
.x22_c00468{left:145.920000pt;}
.x5_c00468{left:148.560000pt;}
.x3d_c00468{left:150.000000pt;}
.x4e_c00468{left:151.680000pt;}
.x51_c00468{left:157.288000pt;}
.x23_c00468{left:159.840000pt;}
.x43_c00468{left:162.240000pt;}
.x19_c00468{left:163.200000pt;}
.x29_c00468{left:164.400000pt;}
.x2f_c00468{left:168.480000pt;}
.xc_c00468{left:169.680000pt;}
.x52_c00468{left:171.230667pt;}
.x3e_c00468{left:173.760000pt;}
.x30_c00468{left:178.080000pt;}
.x2a_c00468{left:181.680000pt;}
.x15_c00468{left:182.640000pt;}
.x6_c00468{left:184.560000pt;}
.x1a_c00468{left:190.080000pt;}
.x24_c00468{left:191.040000pt;}
.x34_c00468{left:192.720000pt;}
.x31_c00468{left:197.520000pt;}
.xd_c00468{left:201.360000pt;}
.x53_c00468{left:203.400000pt;}
.x1_c00468{left:205.680000pt;}
.x1b_c00468{left:207.360000pt;}
.x25_c00468{left:209.520000pt;}
.x7_c00468{left:212.400000pt;}
.xe_c00468{left:216.240000pt;}
.x61_c00468{left:221.769643pt;}
.x1e_c00468{left:226.080000pt;}
.x4b_c00468{left:231.120000pt;}
.x32_c00468{left:233.520000pt;}
.x54_c00468{left:234.597333pt;}
.x16_c00468{left:236.640000pt;}
.x48_c00468{left:237.840000pt;}
.xf_c00468{left:240.000000pt;}
.x1c_c00468{left:241.920000pt;}
.x2b_c00468{left:244.560000pt;}
.x44_c00468{left:248.400000pt;}
.x1f_c00468{left:253.680000pt;}
.x2c_c00468{left:256.800000pt;}
.x35_c00468{left:259.440000pt;}
.x6d_c00468{left:262.800000pt;}
.x55_c00468{left:263.878667pt;}
.x4c_c00468{left:266.160000pt;}
.x65_c00468{left:269.040000pt;}
.x45_c00468{left:270.720000pt;}
.x36_c00468{left:274.800000pt;}
.x39_c00468{left:276.240000pt;}
.x8_c00468{left:281.040000pt;}
.x10_c00468{left:286.560000pt;}
.x72_c00468{left:287.520000pt;}
.x11_c00468{left:294.720000pt;}
.x4f_c00468{left:296.160000pt;}
.x46_c00468{left:298.080000pt;}
.x3f_c00468{left:300.720000pt;}
.x64_c00468{left:305.280000pt;}
.x74_c00468{left:306.960000pt;}
.x57_c00468{left:307.937067pt;}
.x75_c00468{left:309.840000pt;}
.x6e_c00468{left:310.800000pt;}
.x37_c00468{left:316.800000pt;}
.x3a_c00468{left:322.320000pt;}
.x6f_c00468{left:327.360000pt;}
.x40_c00468{left:329.760000pt;}
.x49_c00468{left:331.200000pt;}
.x81_c00468{left:332.640000pt;}
.x4d_c00468{left:334.800000pt;}
.x76_c00468{left:337.440000pt;}
.x38_c00468{left:342.240000pt;}
.x47_c00468{left:343.200000pt;}
.x7d_c00468{left:344.160000pt;}
.x3b_c00468{left:346.080000pt;}
.x58_c00468{left:347.060032pt;}
.x88_c00468{left:348.000000pt;}
.x4a_c00468{left:350.400000pt;}
.x59_c00468{left:353.300928pt;}
.x82_c00468{left:355.200000pt;}
.x77_c00468{left:359.040000pt;}
.x66_c00468{left:361.746667pt;}
.x70_c00468{left:366.240000pt;}
.x5a_c00468{left:369.621947pt;}
.x41_c00468{left:370.560000pt;}
.x83_c00468{left:373.200000pt;}
.x8b_c00468{left:376.080000pt;}
.x68_c00468{left:384.720000pt;}
.x8c_c00468{left:385.920000pt;}
.x3c_c00468{left:390.000000pt;}
.x73_c00468{left:391.680000pt;}
.x5b_c00468{left:393.144005pt;}
.x78_c00468{left:394.560000pt;}
.x6a_c00468{left:404.160000pt;}
.x69_c00468{left:408.480000pt;}
.x5c_c00468{left:410.425168pt;}
.x6b_c00468{left:412.320000pt;}
.x42_c00468{left:414.240000pt;}
.x56_c00468{left:416.169333pt;}
.x62_c00468{left:417.624517pt;}
.x89_c00468{left:420.480000pt;}
.x79_c00468{left:421.440000pt;}
.x8d_c00468{left:434.160000pt;}
.x7a_c00468{left:436.080000pt;}
.x84_c00468{left:440.400000pt;}
.x71_c00468{left:441.360000pt;}
.x5d_c00468{left:443.787301pt;}
.x6c_c00468{left:448.320000pt;}
.x7e_c00468{left:456.720000pt;}
.x86_c00468{left:461.760000pt;}
.x5e_c00468{left:468.509520pt;}
.x87_c00468{left:471.600000pt;}
.x8a_c00468{left:474.480000pt;}
.x7b_c00468{left:476.640000pt;}
.x67_c00468{left:477.609943pt;}
.x7f_c00468{left:479.520000pt;}
.x63_c00468{left:481.469717pt;}
.x85_c00468{left:486.240000pt;}
.x7c_c00468{left:490.560000pt;}
.x80_c00468{left:492.240000pt;}
.x5f_c00468{left:496.590901pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m94_c00469{transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);-ms-transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012135,-0.000097,0.002000,0.249992,0,0);}
.mcf_c00469{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);}
.m58_c00469{transform:matrix(0.017144,-0.000137,0.002000,0.249992,0,0);-ms-transform:matrix(0.017144,-0.000137,0.002000,0.249992,0,0);-webkit-transform:matrix(0.017144,-0.000137,0.002000,0.249992,0,0);}
.m26_c00469{transform:matrix(0.054323,-0.000435,0.002000,0.249992,0,0);-ms-transform:matrix(0.054323,-0.000435,0.002000,0.249992,0,0);-webkit-transform:matrix(0.054323,-0.000435,0.002000,0.249992,0,0);}
.m96_c00469{transform:matrix(0.072413,-0.000579,0.002000,0.249992,0,0);-ms-transform:matrix(0.072413,-0.000579,0.002000,0.249992,0,0);-webkit-transform:matrix(0.072413,-0.000579,0.002000,0.249992,0,0);}
.m5a_c00469{transform:matrix(0.094827,-0.000759,0.002000,0.249992,0,0);-ms-transform:matrix(0.094827,-0.000759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.094827,-0.000759,0.002000,0.249992,0,0);}
.mc3_c00469{transform:matrix(0.095190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095190,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.096227,-0.000770,0.002000,0.249992,0,0);-ms-transform:matrix(0.096227,-0.000770,0.002000,0.249992,0,0);-webkit-transform:matrix(0.096227,-0.000770,0.002000,0.249992,0,0);}
.m28_c00469{transform:matrix(0.115456,-0.000924,0.002000,0.249992,0,0);-ms-transform:matrix(0.115456,-0.000924,0.002000,0.249992,0,0);-webkit-transform:matrix(0.115456,-0.000924,0.002000,0.249992,0,0);}
.m46_c00469{transform:matrix(0.116366,-0.000931,0.002000,0.249992,0,0);-ms-transform:matrix(0.116366,-0.000931,0.002000,0.249992,0,0);-webkit-transform:matrix(0.116366,-0.000931,0.002000,0.249992,0,0);}
.md3_c00469{transform:matrix(0.123005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123005,0.000000,0.000000,0.250000,0,0);}
.mc9_c00469{transform:matrix(0.129145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129145,0.000000,0.000000,0.250000,0,0);}
.mb8_c00469{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m62_c00469{transform:matrix(0.142330,-0.001139,0.002000,0.249992,0,0);-ms-transform:matrix(0.142330,-0.001139,0.002000,0.249992,0,0);-webkit-transform:matrix(0.142330,-0.001139,0.002000,0.249992,0,0);}
.mc7_c00469{transform:matrix(0.143230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143230,0.000000,0.000000,0.250000,0,0);}
.md2_c00469{transform:matrix(0.144315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144315,0.000000,0.000000,0.250000,0,0);}
.mcb_c00469{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);}
.mfd_c00469{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);}
.m6c_c00469{transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);-ms-transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);}
.md5_c00469{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);}
.mca_c00469{transform:matrix(0.148620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148620,0.000000,0.000000,0.250000,0,0);}
.m66_c00469{transform:matrix(0.149280,-0.001194,0.002000,0.249992,0,0);-ms-transform:matrix(0.149280,-0.001194,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149280,-0.001194,0.002000,0.249992,0,0);}
.m88_c00469{transform:matrix(0.149505,-0.001196,0.002000,0.249992,0,0);-ms-transform:matrix(0.149505,-0.001196,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149505,-0.001196,0.002000,0.249992,0,0);}
.m4_c00469{transform:matrix(0.150350,-0.001203,0.002000,0.249992,0,0);-ms-transform:matrix(0.150350,-0.001203,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150350,-0.001203,0.002000,0.249992,0,0);}
.m45_c00469{transform:matrix(0.150625,-0.001205,0.002000,0.249992,0,0);-ms-transform:matrix(0.150625,-0.001205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150625,-0.001205,0.002000,0.249992,0,0);}
.m5d_c00469{transform:matrix(0.151035,-0.001208,0.002000,0.249992,0,0);-ms-transform:matrix(0.151035,-0.001208,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151035,-0.001208,0.002000,0.249992,0,0);}
.m6b_c00469{transform:matrix(0.151790,-0.001214,0.002000,0.249992,0,0);-ms-transform:matrix(0.151790,-0.001214,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151790,-0.001214,0.002000,0.249992,0,0);}
.mc2_c00469{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);}
.mb9_c00469{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);}
.ma_c00469{transform:matrix(0.153330,-0.001227,0.002000,0.249992,0,0);-ms-transform:matrix(0.153330,-0.001227,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153330,-0.001227,0.002000,0.249992,0,0);}
.mc1_c00469{transform:matrix(0.154155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154155,0.000000,0.000000,0.250000,0,0);}
.mcd_c00469{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);}
.me_c00469{transform:matrix(0.155625,-0.001245,0.002000,0.249992,0,0);-ms-transform:matrix(0.155625,-0.001245,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155625,-0.001245,0.002000,0.249992,0,0);}
.mf5_c00469{transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156070,0.000000,0.000000,0.250000,0,0);}
.m61_c00469{transform:matrix(0.156200,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156200,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156200,-0.001250,0.002000,0.249992,0,0);}
.m12_c00469{transform:matrix(0.156805,-0.001254,0.002000,0.249992,0,0);-ms-transform:matrix(0.156805,-0.001254,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156805,-0.001254,0.002000,0.249992,0,0);}
.mea_c00469{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);}
.mbc_c00469{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);}
.mf9_c00469{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);}
.m60_c00469{transform:matrix(0.160305,-0.001282,0.002000,0.249992,0,0);-ms-transform:matrix(0.160305,-0.001282,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160305,-0.001282,0.002000,0.249992,0,0);}
.mc5_c00469{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m4b_c00469{transform:matrix(0.162875,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162875,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162875,-0.001303,0.002000,0.249992,0,0);}
.m51_c00469{transform:matrix(0.163260,-0.001306,0.002000,0.249992,0,0);-ms-transform:matrix(0.163260,-0.001306,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163260,-0.001306,0.002000,0.249992,0,0);}
.mc8_c00469{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);}
.m20_c00469{transform:matrix(0.164080,-0.001313,0.002000,0.249992,0,0);-ms-transform:matrix(0.164080,-0.001313,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164080,-0.001313,0.002000,0.249992,0,0);}
.mcc_c00469{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);}
.mbb_c00469{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);}
.mba_c00469{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);}
.me7_c00469{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);}
.mf8_c00469{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);}
.m5c_c00469{transform:matrix(0.167190,-0.001338,0.002000,0.249992,0,0);-ms-transform:matrix(0.167190,-0.001338,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167190,-0.001338,0.002000,0.249992,0,0);}
.m6a_c00469{transform:matrix(0.167530,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167530,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167530,-0.001340,0.002000,0.249992,0,0);}
.m71_c00469{transform:matrix(0.167785,-0.001342,0.002000,0.249992,0,0);-ms-transform:matrix(0.167785,-0.001342,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167785,-0.001342,0.002000,0.249992,0,0);}
.m72_c00469{transform:matrix(0.168470,-0.001348,0.002000,0.249992,0,0);-ms-transform:matrix(0.168470,-0.001348,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168470,-0.001348,0.002000,0.249992,0,0);}
.m7b_c00469{transform:matrix(0.169860,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169860,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169860,-0.001359,0.002000,0.249992,0,0);}
.m40_c00469{transform:matrix(0.170425,-0.001363,0.002000,0.249992,0,0);-ms-transform:matrix(0.170425,-0.001363,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170425,-0.001363,0.002000,0.249992,0,0);}
.m5e_c00469{transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);-ms-transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);}
.m87_c00469{transform:matrix(0.171235,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171235,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171235,-0.001370,0.002000,0.249992,0,0);}
.m3b_c00469{transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-ms-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171275,-0.001370,0.002000,0.249992,0,0);}
.m32_c00469{transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);-ms-transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171635,-0.001373,0.002000,0.249992,0,0);}
.mbd_c00469{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);}
.m21_c00469{transform:matrix(0.172479,-0.001380,0.002000,0.249992,0,0);-ms-transform:matrix(0.172479,-0.001380,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172479,-0.001380,0.002000,0.249992,0,0);}
.m47_c00469{transform:matrix(0.172909,-0.001383,0.002000,0.249992,0,0);-ms-transform:matrix(0.172909,-0.001383,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172909,-0.001383,0.002000,0.249992,0,0);}
.m74_c00469{transform:matrix(0.174424,-0.001395,0.002000,0.249992,0,0);-ms-transform:matrix(0.174424,-0.001395,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174424,-0.001395,0.002000,0.249992,0,0);}
.md4_c00469{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);}
.m18_c00469{transform:matrix(0.174594,-0.001397,0.002000,0.249992,0,0);-ms-transform:matrix(0.174594,-0.001397,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174594,-0.001397,0.002000,0.249992,0,0);}
.meb_c00469{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);}
.md9_c00469{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);}
.m93_c00469{transform:matrix(0.175934,-0.001407,0.002000,0.249992,0,0);-ms-transform:matrix(0.175934,-0.001407,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175934,-0.001407,0.002000,0.249992,0,0);}
.m31_c00469{transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);-ms-transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176134,-0.001409,0.002000,0.249992,0,0);}
.mb5_c00469{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);}
.m1c_c00469{transform:matrix(0.176764,-0.001414,0.002000,0.249992,0,0);-ms-transform:matrix(0.176764,-0.001414,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176764,-0.001414,0.002000,0.249992,0,0);}
.m9b_c00469{transform:matrix(0.177099,-0.001417,0.002000,0.249992,0,0);-ms-transform:matrix(0.177099,-0.001417,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177099,-0.001417,0.002000,0.249992,0,0);}
.md8_c00469{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);}
.m42_c00469{transform:matrix(0.177764,-0.001422,0.002000,0.249992,0,0);-ms-transform:matrix(0.177764,-0.001422,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177764,-0.001422,0.002000,0.249992,0,0);}
.m8f_c00469{transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);-ms-transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);}
.m43_c00469{transform:matrix(0.178014,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.178014,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178014,-0.001424,0.002000,0.249992,0,0);}
.me6_c00469{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);}
.mc_c00469{transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-ms-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179029,-0.001432,0.002000,0.249992,0,0);}
.m89_c00469{transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);-ms-transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179064,-0.001433,0.002000,0.249992,0,0);}
.m8b_c00469{transform:matrix(0.179129,-0.001433,0.002000,0.249992,0,0);-ms-transform:matrix(0.179129,-0.001433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179129,-0.001433,0.002000,0.249992,0,0);}
.mc4_c00469{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);}
.m98_c00469{transform:matrix(0.179214,-0.001434,0.002000,0.249992,0,0);-ms-transform:matrix(0.179214,-0.001434,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179214,-0.001434,0.002000,0.249992,0,0);}
.mfb_c00469{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);}
.m55_c00469{transform:matrix(0.180829,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180829,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180829,-0.001447,0.002000,0.249992,0,0);}
.mf2_c00469{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);}
.m2_c00469{transform:matrix(0.181074,-0.001449,0.002000,0.249992,0,0);-ms-transform:matrix(0.181074,-0.001449,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181074,-0.001449,0.002000,0.249992,0,0);}
.m14_c00469{transform:matrix(0.181229,-0.001450,0.002000,0.249992,0,0);-ms-transform:matrix(0.181229,-0.001450,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181229,-0.001450,0.002000,0.249992,0,0);}
.m4e_c00469{transform:matrix(0.182554,-0.001460,0.002000,0.249992,0,0);-ms-transform:matrix(0.182554,-0.001460,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182554,-0.001460,0.002000,0.249992,0,0);}
.mf1_c00469{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);}
.m1a_c00469{transform:matrix(0.182939,-0.001464,0.002000,0.249992,0,0);-ms-transform:matrix(0.182939,-0.001464,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182939,-0.001464,0.002000,0.249992,0,0);}
.m69_c00469{transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);-ms-transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183234,-0.001466,0.002000,0.249992,0,0);}
.mb_c00469{transform:matrix(0.183299,-0.001466,0.002000,0.249992,0,0);-ms-transform:matrix(0.183299,-0.001466,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183299,-0.001466,0.002000,0.249992,0,0);}
.m1e_c00469{transform:matrix(0.183334,-0.001467,0.002000,0.249992,0,0);-ms-transform:matrix(0.183334,-0.001467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183334,-0.001467,0.002000,0.249992,0,0);}
.m80_c00469{transform:matrix(0.183759,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183759,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183759,-0.001470,0.002000,0.249992,0,0);}
.m22_c00469{transform:matrix(0.185094,-0.001481,0.002000,0.249992,0,0);-ms-transform:matrix(0.185094,-0.001481,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185094,-0.001481,0.002000,0.249992,0,0);}
.m4f_c00469{transform:matrix(0.186829,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186829,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186829,-0.001495,0.002000,0.249992,0,0);}
.ma8_c00469{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);}
.m9_c00469{transform:matrix(0.186894,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186894,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186894,-0.001495,0.002000,0.249992,0,0);}
.m82_c00469{transform:matrix(0.187049,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.187049,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187049,-0.001496,0.002000,0.249992,0,0);}
.m1b_c00469{transform:matrix(0.187304,-0.001498,0.002000,0.249992,0,0);-ms-transform:matrix(0.187304,-0.001498,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187304,-0.001498,0.002000,0.249992,0,0);}
.m1f_c00469{transform:matrix(0.187319,-0.001499,0.002000,0.249992,0,0);-ms-transform:matrix(0.187319,-0.001499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187319,-0.001499,0.002000,0.249992,0,0);}
.m19_c00469{transform:matrix(0.187504,-0.001500,0.002000,0.249992,0,0);-ms-transform:matrix(0.187504,-0.001500,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187504,-0.001500,0.002000,0.249992,0,0);}
.m6d_c00469{transform:matrix(0.188044,-0.001504,0.002000,0.249992,0,0);-ms-transform:matrix(0.188044,-0.001504,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188044,-0.001504,0.002000,0.249992,0,0);}
.mfa_c00469{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);}
.mc0_c00469{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);}
.m92_c00469{transform:matrix(0.189699,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189699,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189699,-0.001518,0.002000,0.249992,0,0);}
.m1d_c00469{transform:matrix(0.189784,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189784,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189784,-0.001518,0.002000,0.249992,0,0);}
.mda_c00469{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);}
.mb0_c00469{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);}
.mb4_c00469{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);}
.ma0_c00469{transform:matrix(0.191159,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191159,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191159,-0.001529,0.002000,0.249992,0,0);}
.m33_c00469{transform:matrix(0.191259,-0.001530,0.002000,0.249992,0,0);-ms-transform:matrix(0.191259,-0.001530,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191259,-0.001530,0.002000,0.249992,0,0);}
.m38_c00469{transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191554,-0.001532,0.002000,0.249992,0,0);}
.mab_c00469{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);}
.m5_c00469{transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);-ms-transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192309,-0.001538,0.002000,0.249992,0,0);}
.m1_c00469{transform:matrix(0.192399,-0.001539,0.002000,0.249992,0,0);-ms-transform:matrix(0.192399,-0.001539,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192399,-0.001539,0.002000,0.249992,0,0);}
.m23_c00469{transform:matrix(0.192589,-0.001541,0.002000,0.249992,0,0);-ms-transform:matrix(0.192589,-0.001541,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192589,-0.001541,0.002000,0.249992,0,0);}
.m54_c00469{transform:matrix(0.192664,-0.001541,0.002000,0.249992,0,0);-ms-transform:matrix(0.192664,-0.001541,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192664,-0.001541,0.002000,0.249992,0,0);}
.m90_c00469{transform:matrix(0.193084,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193084,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193084,-0.001545,0.002000,0.249992,0,0);}
.me1_c00469{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);}
.m68_c00469{transform:matrix(0.194114,-0.001553,0.002000,0.249992,0,0);-ms-transform:matrix(0.194114,-0.001553,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194114,-0.001553,0.002000,0.249992,0,0);}
.m9a_c00469{transform:matrix(0.194124,-0.001553,0.002000,0.249992,0,0);-ms-transform:matrix(0.194124,-0.001553,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194124,-0.001553,0.002000,0.249992,0,0);}
.m52_c00469{transform:matrix(0.194284,-0.001554,0.002000,0.249992,0,0);-ms-transform:matrix(0.194284,-0.001554,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194284,-0.001554,0.002000,0.249992,0,0);}
.m6f_c00469{transform:matrix(0.194289,-0.001554,0.002000,0.249992,0,0);-ms-transform:matrix(0.194289,-0.001554,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194289,-0.001554,0.002000,0.249992,0,0);}
.m30_c00469{transform:matrix(0.194389,-0.001555,0.002000,0.249992,0,0);-ms-transform:matrix(0.194389,-0.001555,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194389,-0.001555,0.002000,0.249992,0,0);}
.m44_c00469{transform:matrix(0.194674,-0.001557,0.002000,0.249992,0,0);-ms-transform:matrix(0.194674,-0.001557,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194674,-0.001557,0.002000,0.249992,0,0);}
.me0_c00469{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);}
.m2b_c00469{transform:matrix(0.196199,-0.001570,0.002000,0.249992,0,0);-ms-transform:matrix(0.196199,-0.001570,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196199,-0.001570,0.002000,0.249992,0,0);}
.m4c_c00469{transform:matrix(0.196519,-0.001572,0.002000,0.249992,0,0);-ms-transform:matrix(0.196519,-0.001572,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196519,-0.001572,0.002000,0.249992,0,0);}
.m37_c00469{transform:matrix(0.196769,-0.001574,0.002000,0.249992,0,0);-ms-transform:matrix(0.196769,-0.001574,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196769,-0.001574,0.002000,0.249992,0,0);}
.m7f_c00469{transform:matrix(0.196894,-0.001575,0.002000,0.249992,0,0);-ms-transform:matrix(0.196894,-0.001575,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196894,-0.001575,0.002000,0.249992,0,0);}
.m67_c00469{transform:matrix(0.196939,-0.001576,0.002000,0.249992,0,0);-ms-transform:matrix(0.196939,-0.001576,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196939,-0.001576,0.002000,0.249992,0,0);}
.mae_c00469{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);}
.m2e_c00469{transform:matrix(0.197054,-0.001576,0.002000,0.249992,0,0);-ms-transform:matrix(0.197054,-0.001576,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197054,-0.001576,0.002000,0.249992,0,0);}
.mce_c00469{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);}
.m8_c00469{transform:matrix(0.199594,-0.001597,0.002000,0.249992,0,0);-ms-transform:matrix(0.199594,-0.001597,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199594,-0.001597,0.002000,0.249992,0,0);}
.m63_c00469{transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200009,-0.001600,0.002000,0.249992,0,0);}
.m5b_c00469{transform:matrix(0.200054,-0.001600,0.002000,0.249992,0,0);-ms-transform:matrix(0.200054,-0.001600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200054,-0.001600,0.002000,0.249992,0,0);}
.m85_c00469{transform:matrix(0.200139,-0.001601,0.002000,0.249992,0,0);-ms-transform:matrix(0.200139,-0.001601,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200139,-0.001601,0.002000,0.249992,0,0);}
.me5_c00469{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);}
.m57_c00469{transform:matrix(0.200189,-0.001602,0.002000,0.249992,0,0);-ms-transform:matrix(0.200189,-0.001602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200189,-0.001602,0.002000,0.249992,0,0);}
.mec_c00469{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);}
.me2_c00469{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);}
.m2f_c00469{transform:matrix(0.200599,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200599,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200599,-0.001605,0.002000,0.249992,0,0);}
.ma3_c00469{transform:matrix(0.201084,-0.001609,0.002000,0.249992,0,0);-ms-transform:matrix(0.201084,-0.001609,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201084,-0.001609,0.002000,0.249992,0,0);}
.m91_c00469{transform:matrix(0.201614,-0.001613,0.002000,0.249992,0,0);-ms-transform:matrix(0.201614,-0.001613,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201614,-0.001613,0.002000,0.249992,0,0);}
.mdf_c00469{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);}
.m9c_c00469{transform:matrix(0.202349,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202349,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202349,-0.001619,0.002000,0.249992,0,0);}
.m2d_c00469{transform:matrix(0.202354,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202354,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202354,-0.001619,0.002000,0.249992,0,0);}
.m9e_c00469{transform:matrix(0.202469,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202469,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202469,-0.001620,0.002000,0.249992,0,0);}
.m3a_c00469{transform:matrix(0.203643,-0.001629,0.002000,0.249992,0,0);-ms-transform:matrix(0.203643,-0.001629,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203643,-0.001629,0.002000,0.249992,0,0);}
.m3_c00469{transform:matrix(0.204323,-0.001635,0.002000,0.249992,0,0);-ms-transform:matrix(0.204323,-0.001635,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204323,-0.001635,0.002000,0.249992,0,0);}
.mf6_c00469{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);}
.mef_c00469{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m76_c00469{transform:matrix(0.205123,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205123,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205123,-0.001641,0.002000,0.249992,0,0);}
.m7_c00469{transform:matrix(0.205193,-0.001642,0.002000,0.249992,0,0);-ms-transform:matrix(0.205193,-0.001642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205193,-0.001642,0.002000,0.249992,0,0);}
.m3d_c00469{transform:matrix(0.205323,-0.001643,0.002000,0.249992,0,0);-ms-transform:matrix(0.205323,-0.001643,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205323,-0.001643,0.002000,0.249992,0,0);}
.m83_c00469{transform:matrix(0.205393,-0.001643,0.002000,0.249992,0,0);-ms-transform:matrix(0.205393,-0.001643,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205393,-0.001643,0.002000,0.249992,0,0);}
.m9f_c00469{transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);-ms-transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206133,-0.001649,0.002000,0.249992,0,0);}
.ma4_c00469{transform:matrix(0.206923,-0.001655,0.002000,0.249992,0,0);-ms-transform:matrix(0.206923,-0.001655,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206923,-0.001655,0.002000,0.249992,0,0);}
.m0_c00469{transform:matrix(0.207133,-0.001657,0.002000,0.249992,0,0);-ms-transform:matrix(0.207133,-0.001657,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207133,-0.001657,0.002000,0.249992,0,0);}
.md7_c00469{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);}
.mbe_c00469{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);}
.m3f_c00469{transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);-ms-transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207943,-0.001664,0.002000,0.249992,0,0);}
.mb7_c00469{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);}
.m70_c00469{transform:matrix(0.208453,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208453,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208453,-0.001668,0.002000,0.249992,0,0);}
.m39_c00469{transform:matrix(0.209023,-0.001672,0.002000,0.249992,0,0);-ms-transform:matrix(0.209023,-0.001672,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209023,-0.001672,0.002000,0.249992,0,0);}
.m97_c00469{transform:matrix(0.209343,-0.001675,0.002000,0.249992,0,0);-ms-transform:matrix(0.209343,-0.001675,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209343,-0.001675,0.002000,0.249992,0,0);}
.mee_c00469{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);}
.mf_c00469{transform:matrix(0.210123,-0.001681,0.002000,0.249992,0,0);-ms-transform:matrix(0.210123,-0.001681,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210123,-0.001681,0.002000,0.249992,0,0);}
.m48_c00469{transform:matrix(0.210883,-0.001687,0.002000,0.249992,0,0);-ms-transform:matrix(0.210883,-0.001687,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210883,-0.001687,0.002000,0.249992,0,0);}
.mb2_c00469{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);}
.maf_c00469{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);}
.me8_c00469{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);}
.m56_c00469{transform:matrix(0.213223,-0.001706,0.002000,0.249992,0,0);-ms-transform:matrix(0.213223,-0.001706,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213223,-0.001706,0.002000,0.249992,0,0);}
.m50_c00469{transform:matrix(0.214038,-0.001712,0.002000,0.249992,0,0);-ms-transform:matrix(0.214038,-0.001712,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214038,-0.001712,0.002000,0.249992,0,0);}
.m84_c00469{transform:matrix(0.214128,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214128,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214128,-0.001713,0.002000,0.249992,0,0);}
.m4a_c00469{transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);}
.m73_c00469{transform:matrix(0.214593,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214593,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214593,-0.001717,0.002000,0.249992,0,0);}
.mad_c00469{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);}
.m4d_c00469{transform:matrix(0.215393,-0.001723,0.002000,0.249992,0,0);-ms-transform:matrix(0.215393,-0.001723,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215393,-0.001723,0.002000,0.249992,0,0);}
.me3_c00469{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);}
.ma9_c00469{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);}
.ma2_c00469{transform:matrix(0.217138,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217138,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217138,-0.001737,0.002000,0.249992,0,0);}
.m8e_c00469{transform:matrix(0.217588,-0.001741,0.002000,0.249992,0,0);-ms-transform:matrix(0.217588,-0.001741,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217588,-0.001741,0.002000,0.249992,0,0);}
.ma1_c00469{transform:matrix(0.218028,-0.001744,0.002000,0.249992,0,0);-ms-transform:matrix(0.218028,-0.001744,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218028,-0.001744,0.002000,0.249992,0,0);}
.m53_c00469{transform:matrix(0.219038,-0.001752,0.002000,0.249992,0,0);-ms-transform:matrix(0.219038,-0.001752,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219038,-0.001752,0.002000,0.249992,0,0);}
.m77_c00469{transform:matrix(0.219268,-0.001754,0.002000,0.249992,0,0);-ms-transform:matrix(0.219268,-0.001754,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219268,-0.001754,0.002000,0.249992,0,0);}
.m3c_c00469{transform:matrix(0.221498,-0.001772,0.002000,0.249992,0,0);-ms-transform:matrix(0.221498,-0.001772,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221498,-0.001772,0.002000,0.249992,0,0);}
.ma7_c00469{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);}
.m2a_c00469{transform:matrix(0.223503,-0.001788,0.002000,0.249992,0,0);-ms-transform:matrix(0.223503,-0.001788,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223503,-0.001788,0.002000,0.249992,0,0);}
.m3e_c00469{transform:matrix(0.224383,-0.001795,0.002000,0.249992,0,0);-ms-transform:matrix(0.224383,-0.001795,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224383,-0.001795,0.002000,0.249992,0,0);}
.mf3_c00469{transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);}
.mb3_c00469{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);}
.m79_c00469{transform:matrix(0.225058,-0.001800,0.002000,0.249992,0,0);-ms-transform:matrix(0.225058,-0.001800,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225058,-0.001800,0.002000,0.249992,0,0);}
.mde_c00469{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);}
.mf0_c00469{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.mdc_c00469{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.228493,-0.001828,0.002000,0.249992,0,0);-ms-transform:matrix(0.228493,-0.001828,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228493,-0.001828,0.002000,0.249992,0,0);}
.m7c_c00469{transform:matrix(0.228668,-0.001829,0.002000,0.249992,0,0);-ms-transform:matrix(0.228668,-0.001829,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228668,-0.001829,0.002000,0.249992,0,0);}
.m78_c00469{transform:matrix(0.230523,-0.001844,0.002000,0.249992,0,0);-ms-transform:matrix(0.230523,-0.001844,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230523,-0.001844,0.002000,0.249992,0,0);}
.m7e_c00469{transform:matrix(0.230623,-0.001845,0.002000,0.249992,0,0);-ms-transform:matrix(0.230623,-0.001845,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230623,-0.001845,0.002000,0.249992,0,0);}
.mdb_c00469{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);}
.m27_c00469{transform:matrix(0.232588,-0.001861,0.002000,0.249992,0,0);-ms-transform:matrix(0.232588,-0.001861,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232588,-0.001861,0.002000,0.249992,0,0);}
.m13_c00469{transform:matrix(0.232883,-0.001863,0.002000,0.249992,0,0);-ms-transform:matrix(0.232883,-0.001863,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232883,-0.001863,0.002000,0.249992,0,0);}
.m16_c00469{transform:matrix(0.235097,-0.001881,0.002000,0.249992,0,0);-ms-transform:matrix(0.235097,-0.001881,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235097,-0.001881,0.002000,0.249992,0,0);}
.m36_c00469{transform:matrix(0.235252,-0.001882,0.002000,0.249992,0,0);-ms-transform:matrix(0.235252,-0.001882,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235252,-0.001882,0.002000,0.249992,0,0);}
.m81_c00469{transform:matrix(0.236917,-0.001895,0.002000,0.249992,0,0);-ms-transform:matrix(0.236917,-0.001895,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236917,-0.001895,0.002000,0.249992,0,0);}
.m7a_c00469{transform:matrix(0.236997,-0.001896,0.002000,0.249992,0,0);-ms-transform:matrix(0.236997,-0.001896,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236997,-0.001896,0.002000,0.249992,0,0);}
.mfe_c00469{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);}
.md1_c00469{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);}
.maa_c00469{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m101_c00469{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);}
.m41_c00469{transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);-ms-transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240627,-0.001925,0.002000,0.249992,0,0);}
.mbf_c00469{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);}
.m2c_c00469{transform:matrix(0.243982,-0.001952,0.002000,0.249992,0,0);-ms-transform:matrix(0.243982,-0.001952,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243982,-0.001952,0.002000,0.249992,0,0);}
.m49_c00469{transform:matrix(0.244517,-0.001956,0.002000,0.249992,0,0);-ms-transform:matrix(0.244517,-0.001956,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244517,-0.001956,0.002000,0.249992,0,0);}
.m11_c00469{transform:matrix(0.248332,-0.001987,0.002000,0.249992,0,0);-ms-transform:matrix(0.248332,-0.001987,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248332,-0.001987,0.002000,0.249992,0,0);}
.m65_c00469{transform:matrix(0.251967,-0.002016,0.002000,0.249992,0,0);-ms-transform:matrix(0.251967,-0.002016,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251967,-0.002016,0.002000,0.249992,0,0);}
.m86_c00469{transform:matrix(0.253752,-0.002030,0.002000,0.249992,0,0);-ms-transform:matrix(0.253752,-0.002030,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253752,-0.002030,0.002000,0.249992,0,0);}
.m9d_c00469{transform:matrix(0.254277,-0.002034,0.002000,0.249992,0,0);-ms-transform:matrix(0.254277,-0.002034,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254277,-0.002034,0.002000,0.249992,0,0);}
.m8a_c00469{transform:matrix(0.255157,-0.002041,0.002000,0.249992,0,0);-ms-transform:matrix(0.255157,-0.002041,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255157,-0.002041,0.002000,0.249992,0,0);}
.m6e_c00469{transform:matrix(0.255617,-0.002045,0.002000,0.249992,0,0);-ms-transform:matrix(0.255617,-0.002045,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255617,-0.002045,0.002000,0.249992,0,0);}
.ma5_c00469{transform:matrix(0.257502,-0.002060,0.002000,0.249992,0,0);-ms-transform:matrix(0.257502,-0.002060,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257502,-0.002060,0.002000,0.249992,0,0);}
.m35_c00469{transform:matrix(0.258107,-0.002065,0.002000,0.249992,0,0);-ms-transform:matrix(0.258107,-0.002065,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258107,-0.002065,0.002000,0.249992,0,0);}
.mb1_c00469{transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265880,0.000000,0.000000,0.250000,0,0);}
.mac_c00469{transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.280001,-0.002240,0.002000,0.249992,0,0);-ms-transform:matrix(0.280001,-0.002240,0.002000,0.249992,0,0);-webkit-transform:matrix(0.280001,-0.002240,0.002000,0.249992,0,0);}
.m5f_c00469{transform:matrix(0.281856,-0.002255,0.002000,0.249992,0,0);-ms-transform:matrix(0.281856,-0.002255,0.002000,0.249992,0,0);-webkit-transform:matrix(0.281856,-0.002255,0.002000,0.249992,0,0);}
.md0_c00469{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);}
.m34_c00469{transform:matrix(0.287236,-0.002298,0.002000,0.249992,0,0);-ms-transform:matrix(0.287236,-0.002298,0.002000,0.249992,0,0);-webkit-transform:matrix(0.287236,-0.002298,0.002000,0.249992,0,0);}
.m99_c00469{transform:matrix(0.287521,-0.002300,0.002000,0.249992,0,0);-ms-transform:matrix(0.287521,-0.002300,0.002000,0.249992,0,0);-webkit-transform:matrix(0.287521,-0.002300,0.002000,0.249992,0,0);}
.m17_c00469{transform:matrix(0.288556,-0.002308,0.002000,0.249992,0,0);-ms-transform:matrix(0.288556,-0.002308,0.002000,0.249992,0,0);-webkit-transform:matrix(0.288556,-0.002308,0.002000,0.249992,0,0);}
.m25_c00469{transform:matrix(0.292186,-0.002337,0.002000,0.249992,0,0);-ms-transform:matrix(0.292186,-0.002337,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292186,-0.002337,0.002000,0.249992,0,0);}
.mdd_c00469{transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.304965,-0.002440,0.002000,0.249992,0,0);-ms-transform:matrix(0.304965,-0.002440,0.002000,0.249992,0,0);-webkit-transform:matrix(0.304965,-0.002440,0.002000,0.249992,0,0);}
.me4_c00469{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);}
.m7d_c00469{transform:matrix(0.314940,-0.002520,0.002000,0.249992,0,0);-ms-transform:matrix(0.314940,-0.002520,0.002000,0.249992,0,0);-webkit-transform:matrix(0.314940,-0.002520,0.002000,0.249992,0,0);}
.m10_c00469{transform:matrix(0.322905,-0.002583,0.002000,0.249992,0,0);-ms-transform:matrix(0.322905,-0.002583,0.002000,0.249992,0,0);-webkit-transform:matrix(0.322905,-0.002583,0.002000,0.249992,0,0);}
.m64_c00469{transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);-ms-transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);-webkit-transform:matrix(0.325260,-0.002602,0.002000,0.249992,0,0);}
.m8c_c00469{transform:matrix(0.329909,-0.002639,0.002000,0.249992,0,0);-ms-transform:matrix(0.329909,-0.002639,0.002000,0.249992,0,0);-webkit-transform:matrix(0.329909,-0.002639,0.002000,0.249992,0,0);}
.ma6_c00469{transform:matrix(0.338234,-0.002706,0.002000,0.249992,0,0);-ms-transform:matrix(0.338234,-0.002706,0.002000,0.249992,0,0);-webkit-transform:matrix(0.338234,-0.002706,0.002000,0.249992,0,0);}
.m8d_c00469{transform:matrix(0.342864,-0.002743,0.002000,0.249992,0,0);-ms-transform:matrix(0.342864,-0.002743,0.002000,0.249992,0,0);-webkit-transform:matrix(0.342864,-0.002743,0.002000,0.249992,0,0);}
.mf7_c00469{transform:matrix(0.351990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351990,0.000000,0.000000,0.250000,0,0);}
.mfc_c00469{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);}
.mff_c00469{transform:matrix(0.365535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365535,0.000000,0.000000,0.250000,0,0);}
.me9_c00469{transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371745,0.000000,0.000000,0.250000,0,0);}
.m75_c00469{transform:matrix(0.372848,-0.002983,0.002000,0.249992,0,0);-ms-transform:matrix(0.372848,-0.002983,0.002000,0.249992,0,0);-webkit-transform:matrix(0.372848,-0.002983,0.002000,0.249992,0,0);}
.m102_c00469{transform:matrix(0.388020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388020,0.000000,0.000000,0.250000,0,0);}
.m59_c00469{transform:matrix(0.396437,-0.003171,0.002000,0.249992,0,0);-ms-transform:matrix(0.396437,-0.003171,0.002000,0.249992,0,0);-webkit-transform:matrix(0.396437,-0.003171,0.002000,0.249992,0,0);}
.med_c00469{transform:matrix(0.396685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396685,0.000000,0.000000,0.250000,0,0);}
.mf4_c00469{transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);}
.md6_c00469{transform:matrix(0.419160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419160,0.000000,0.000000,0.250000,0,0);}
.m95_c00469{transform:matrix(0.438146,-0.003505,0.002000,0.249992,0,0);-ms-transform:matrix(0.438146,-0.003505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.438146,-0.003505,0.002000,0.249992,0,0);}
.m29_c00469{transform:matrix(0.506134,-0.004049,0.002000,0.249992,0,0);-ms-transform:matrix(0.506134,-0.004049,0.002000,0.249992,0,0);-webkit-transform:matrix(0.506134,-0.004049,0.002000,0.249992,0,0);}
.m100_c00469{transform:matrix(0.745295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745295,0.000000,0.000000,0.250000,0,0);}
.mb6_c00469{transform:matrix(0.774610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774610,0.000000,0.000000,0.250000,0,0);}
.mc6_c00469{transform:matrix(0.825785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825785,0.000000,0.000000,0.250000,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;}
.fc0_c00469{color:transparent;}
.fsf_c00469{font-size:51.450000px;}
.fsc_c00469{font-size:55.650000px;}
.fs10_c00469{font-size:58.800000px;}
.fsd_c00469{font-size:60.900000px;}
.fs9_c00469{font-size:61.951982px;}
.fs6_c00469{font-size:64.052050px;}
.fse_c00469{font-size:66.150000px;}
.fs2_c00469{font-size:66.152117px;}
.fsb_c00469{font-size:67.202150px;}
.fs0_c00469{font-size:68.252184px;}
.fs5_c00469{font-size:70.352251px;}
.fs1_c00469{font-size:72.452318px;}
.fs8_c00469{font-size:73.502352px;}
.fs11_c00469{font-size:74.550000px;}
.fs4_c00469{font-size:74.552386px;}
.fs3_c00469{font-size:75.602419px;}
.fs7_c00469{font-size:78.752520px;}
.fsa_c00469{font-size:95.553058px;}
.y0_c00469{bottom:0.000000px;}
.yae_c00469{bottom:99.232500px;}
.yad_c00469{bottom:165.766500px;}
.yac_c00469{bottom:183.021000px;}
.yab_c00469{bottom:200.325000px;}
.yaa_c00469{bottom:218.127000px;}
.ya9_c00469{bottom:235.696500px;}
.ya8_c00469{bottom:253.774500px;}
.ya7_c00469{bottom:298.187064px;}
.ya1_c00469{bottom:315.386460px;}
.ya2_c00469{bottom:315.386628px;}
.ya0_c00469{bottom:315.386892px;}
.ya3_c00469{bottom:315.387036px;}
.ya6_c00469{bottom:315.387060px;}
.ya4_c00469{bottom:315.387264px;}
.y9f_c00469{bottom:315.387384px;}
.ya5_c00469{bottom:315.387432px;}
.y97_c00469{bottom:338.383020px;}
.y98_c00469{bottom:338.383416px;}
.y99_c00469{bottom:338.383764px;}
.y9c_c00469{bottom:338.384148px;}
.y9a_c00469{bottom:338.384292px;}
.y9d_c00469{bottom:338.384676px;}
.y9b_c00469{bottom:338.384820px;}
.y9e_c00469{bottom:338.385276px;}
.y94_c00469{bottom:361.023540px;}
.y96_c00469{bottom:361.023648px;}
.y95_c00469{bottom:361.023996px;}
.y92_c00469{bottom:383.745264px;}
.y93_c00469{bottom:383.745372px;}
.y91_c00469{bottom:383.745948px;}
.y8e_c00469{bottom:383.746104px;}
.y8f_c00469{bottom:383.746392px;}
.y90_c00469{bottom:383.746560px;}
.y8d_c00469{bottom:406.689924px;}
.y8c_c00469{bottom:430.089036px;}
.y8b_c00469{bottom:430.089288px;}
.y8a_c00469{bottom:430.090008px;}
.y89_c00469{bottom:430.090440px;}
.y88_c00469{bottom:430.090500px;}
.y87_c00469{bottom:430.091100px;}
.y86_c00469{bottom:430.091280px;}
.y7e_c00469{bottom:452.288112px;}
.y7f_c00469{bottom:452.288760px;}
.y85_c00469{bottom:452.289420px;}
.y80_c00469{bottom:452.289480px;}
.y83_c00469{bottom:452.289624px;}
.y81_c00469{bottom:452.289828px;}
.y84_c00469{bottom:452.289864px;}
.y82_c00469{bottom:452.290236px;}
.y7c_c00469{bottom:475.275984px;}
.y7d_c00469{bottom:475.276572px;}
.y7b_c00469{bottom:475.276596px;}
.y7a_c00469{bottom:475.276788px;}
.y77_c00469{bottom:475.276824px;}
.y76_c00469{bottom:475.276896px;}
.y75_c00469{bottom:475.277028px;}
.y78_c00469{bottom:475.277112px;}
.y79_c00469{bottom:475.277340px;}
.y6e_c00469{bottom:497.384172px;}
.y71_c00469{bottom:497.384628px;}
.y70_c00469{bottom:497.384700px;}
.y6f_c00469{bottom:497.384772px;}
.y72_c00469{bottom:497.384916px;}
.y73_c00469{bottom:497.385264px;}
.y74_c00469{bottom:497.385492px;}
.y6b_c00469{bottom:520.440360px;}
.y67_c00469{bottom:520.440696px;}
.y68_c00469{bottom:520.440744px;}
.y6c_c00469{bottom:520.440768px;}
.y69_c00469{bottom:520.440792px;}
.y6a_c00469{bottom:520.441080px;}
.y66_c00469{bottom:520.441308px;}
.y6d_c00469{bottom:520.441356px;}
.y61_c00469{bottom:543.044412px;}
.y63_c00469{bottom:543.044688px;}
.y62_c00469{bottom:543.044700px;}
.y5f_c00469{bottom:543.044916px;}
.y5d_c00469{bottom:543.044940px;}
.y60_c00469{bottom:543.044952px;}
.y5c_c00469{bottom:543.045132px;}
.y64_c00469{bottom:543.045156px;}
.y5e_c00469{bottom:543.045528px;}
.y65_c00469{bottom:543.045744px;}
.y59_c00469{bottom:566.321568px;}
.y5b_c00469{bottom:566.321856px;}
.y5a_c00469{bottom:566.322144px;}
.y53_c00469{bottom:589.049712px;}
.y57_c00469{bottom:589.049904px;}
.y58_c00469{bottom:589.050012px;}
.y54_c00469{bottom:589.050060px;}
.y52_c00469{bottom:589.050072px;}
.y55_c00469{bottom:589.050240px;}
.y56_c00469{bottom:589.050396px;}
.y4c_c00469{bottom:612.163944px;}
.y51_c00469{bottom:612.164016px;}
.y4f_c00469{bottom:612.164220px;}
.y4d_c00469{bottom:612.164232px;}
.y4e_c00469{bottom:612.164280px;}
.y4b_c00469{bottom:612.164556px;}
.y50_c00469{bottom:612.164628px;}
.y4a_c00469{bottom:612.165048px;}
.y42_c00469{bottom:634.756992px;}
.y43_c00469{bottom:634.757520px;}
.y49_c00469{bottom:634.757568px;}
.y45_c00469{bottom:634.757796px;}
.y44_c00469{bottom:634.757808px;}
.y46_c00469{bottom:634.757904px;}
.y48_c00469{bottom:634.758120px;}
.y47_c00469{bottom:634.758612px;}
.y3d_c00469{bottom:656.795664px;}
.y3b_c00469{bottom:656.795748px;}
.y3c_c00469{bottom:656.795976px;}
.y3e_c00469{bottom:656.796132px;}
.y41_c00469{bottom:656.796264px;}
.y40_c00469{bottom:656.796288px;}
.y3f_c00469{bottom:656.796360px;}
.y3a_c00469{bottom:679.897380px;}
.y39_c00469{bottom:679.897992px;}
.y38_c00469{bottom:679.898184px;}
.y37_c00469{bottom:679.898628px;}
.y36_c00469{bottom:679.899288px;}
.y31_c00469{bottom:679.899396px;}
.y32_c00469{bottom:679.899744px;}
.y33_c00469{bottom:679.899852px;}
.y34_c00469{bottom:679.899960px;}
.y35_c00469{bottom:679.900008px;}
.y30_c00469{bottom:702.261252px;}
.y2f_c00469{bottom:702.261564px;}
.y2d_c00469{bottom:702.261996px;}
.y2e_c00469{bottom:702.262104px;}
.y2b_c00469{bottom:702.262320px;}
.y2c_c00469{bottom:702.262548px;}
.y2a_c00469{bottom:725.220924px;}
.y29_c00469{bottom:725.221368px;}
.y28_c00469{bottom:743.573700px;}
.y27_c00469{bottom:743.574144px;}
.y26_c00469{bottom:743.574768px;}
.y25_c00469{bottom:743.575440px;}
.y23_c00469{bottom:743.575488px;}
.y24_c00469{bottom:743.575596px;}
.y22_c00469{bottom:766.532580px;}
.y1e_c00469{bottom:766.532748px;}
.y1b_c00469{bottom:766.532784px;}
.y20_c00469{bottom:766.532844px;}
.y21_c00469{bottom:766.532952px;}
.y1f_c00469{bottom:766.532976px;}
.y1d_c00469{bottom:766.533120px;}
.y1c_c00469{bottom:766.533432px;}
.y19_c00469{bottom:789.418668px;}
.y18_c00469{bottom:789.419040px;}
.y1a_c00469{bottom:789.419256px;}
.y17_c00469{bottom:789.419520px;}
.y16_c00469{bottom:789.419832px;}
.y13_c00469{bottom:789.420396px;}
.y15_c00469{bottom:789.420444px;}
.y14_c00469{bottom:789.420456px;}
.y12_c00469{bottom:789.420588px;}
.yf_c00469{bottom:811.999308px;}
.y11_c00469{bottom:811.999344px;}
.ye_c00469{bottom:811.999368px;}
.y10_c00469{bottom:811.999836px;}
.yd_c00469{bottom:811.999980px;}
.yc_c00469{bottom:812.000472px;}
.yb_c00469{bottom:812.001012px;}
.ya_c00469{bottom:812.001096px;}
.y9_c00469{bottom:812.001708px;}
.y1_c00469{bottom:833.221500px;}
.y2_c00469{bottom:833.582436px;}
.y3_c00469{bottom:834.161292px;}
.y4_c00469{bottom:834.513228px;}
.y5_c00469{bottom:834.914976px;}
.y6_c00469{bottom:835.148268px;}
.y7_c00469{bottom:835.551876px;}
.y8_c00469{bottom:835.878300px;}
.h11_c00469{height:51.450000px;}
.he_c00469{height:55.650000px;}
.h12_c00469{height:58.800000px;}
.hf_c00469{height:60.900000px;}
.hb_c00469{height:61.951982px;}
.h8_c00469{height:64.052050px;}
.h10_c00469{height:66.150000px;}
.h4_c00469{height:66.152117px;}
.hd_c00469{height:67.202150px;}
.h2_c00469{height:68.252184px;}
.h7_c00469{height:70.352251px;}
.h3_c00469{height:72.452318px;}
.ha_c00469{height:73.502352px;}
.h13_c00469{height:74.550000px;}
.h6_c00469{height:74.552386px;}
.h5_c00469{height:75.602419px;}
.h9_c00469{height:78.752520px;}
.hc_c00469{height:95.553058px;}
.h0_c00469{height:1008.450000px;}
.h1_c00469{height:1008.750000px;}
.w1_c00469{width:689.250000px;}
.w0_c00469{width:689.550000px;}
.x0_c00469{left:0.000000px;}
.x8a_c00469{left:138.240000px;}
.x72_c00469{left:141.480000px;}
.x91_c00469{left:142.830000px;}
.x68_c00469{left:154.440000px;}
.x73_c00469{left:161.190000px;}
.x92_c00469{left:166.860000px;}
.x7c_c00469{left:168.750000px;}
.x51_c00469{left:172.253640px;}
.x1_c00469{left:175.887000px;}
.x8b_c00469{left:185.220000px;}
.x7d_c00469{left:187.110000px;}
.x85_c00469{left:194.400000px;}
.x3d_c00469{left:196.555572px;}
.x4d_c00469{left:198.984000px;}
.x49_c00469{left:200.602668px;}
.x27_c00469{left:201.958164px;}
.x17_c00469{left:203.851260px;}
.x41_c00469{left:209.515416px;}
.x1f_c00469{left:213.299340px;}
.x32_c00469{left:214.917108px;}
.x3e_c00469{left:217.345716px;}
.x1d_c00469{left:218.431344px;}
.x2_c00469{left:221.004000px;}
.x66_c00469{left:222.206376px;}
.x57_c00469{left:224.094852px;}
.x69_c00469{left:226.800000px;}
.x93_c00469{left:228.150000px;}
.x5f_c00469{left:233.548032px;}
.x74_c00469{left:234.900000px;}
.x86_c00469{left:239.220000px;}
.x52_c00469{left:240.294996px;}
.x58_c00469{left:242.186004px;}
.x33_c00469{left:243.267420px;}
.x10_c00469{left:244.353768px;}
.x42_c00469{left:245.966244px;}
.x6a_c00469{left:249.210000px;}
.x2f_c00469{left:252.448716px;}
.x61_c00469{left:253.527420px;}
.x28_c00469{left:257.850240px;}
.x4a_c00469{left:258.924900px;}
.x11_c00469{left:262.174908px;}
.x18_c00469{left:263.253564px;}
.x7e_c00469{left:264.870000px;}
.x59_c00469{left:268.106160px;}
.x21_c00469{left:269.730612px;}
.x39_c00469{left:272.967060px;}
.x8c_c00469{left:275.670000px;}
.x34_c00469{left:277.018080px;}
.x5b_c00469{left:279.715980px;}
.x7f_c00469{left:282.150000px;}
.x8d_c00469{left:286.200000px;}
.x12_c00469{left:289.175136px;}
.x19_c00469{left:291.333864px;}
.x3_c00469{left:293.361000px;}
.x20_c00469{left:297.811752px;}
.x3a_c00469{left:301.317372px;}
.x9_c00469{left:303.753936px;}
.x8e_c00469{left:305.910000px;}
.x3f_c00469{left:307.798500px;}
.x53_c00469{left:309.147900px;}
.x5c_c00469{left:311.308008px;}
.x13_c00469{left:313.475196px;}
.x22_c00469{left:320.762376px;}
.x5e_c00469{left:322.110432px;}
.x4b_c00469{left:323.997564px;}
.xa_c00469{left:325.625340px;}
.x8f_c00469{left:328.590000px;}
.x4e_c00469{left:332.099520px;}
.x5d_c00469{left:333.989460px;}
.x1a_c00469{left:335.615196px;}
.x4_c00469{left:337.353000px;}
.x80_c00469{left:341.280000px;}
.x5a_c00469{left:342.897948px;}
.x29_c00469{left:345.062820px;}
.x35_c00469{left:346.411020px;}
.x54_c00469{left:353.429232px;}
.x23_c00469{left:356.133144px;}
.x30_c00469{left:358.292484px;}
.x2a_c00469{left:360.723828px;}
.xb_c00469{left:365.316384px;}
.x2b_c00469{left:367.204248px;}
.x43_c00469{left:369.089628px;}
.x62_c00469{left:370.710408px;}
.x75_c00469{left:375.840000px;}
.x36_c00469{left:378.001536px;}
.x3b_c00469{left:382.321056px;}
.x81_c00469{left:384.210000px;}
.x14_c00469{left:385.568316px;}
.x5_c00469{left:387.571500px;}
.x6b_c00469{left:389.340000px;}
.x44_c00469{left:390.961032px;}
.x1b_c00469{left:394.477464px;}
.x24_c00469{left:398.524356px;}
.x4f_c00469{left:399.870852px;}
.xc_c00469{left:403.117308px;}
.x37_c00469{left:404.191716px;}
.x63_c00469{left:410.941488px;}
.x6_c00469{left:416.733000px;}
.x45_c00469{left:419.311344px;}
.x25_c00469{left:420.395760px;}
.x82_c00469{left:422.010000px;}
.xd_c00469{left:425.798760px;}
.x15_c00469{left:427.149480px;}
.x6c_c00469{left:434.700000px;}
.x1c_c00469{left:436.868676px;}
.x83_c00469{left:441.990000px;}
.x2c_c00469{left:444.966228px;}
.x38_c00469{left:446.312916px;}
.x64_c00469{left:449.822472px;}
.x50_c00469{left:450.902616px;}
.x46_c00469{left:453.062004px;}
.x4c_c00469{left:454.951440px;}
.x26_c00469{left:459.546768px;}
.x16_c00469{left:463.600308px;}
.x65_c00469{left:466.023504px;}
.x7_c00469{left:467.184000px;}
.x31_c00469{left:468.725052px;}
.x55_c00469{left:474.392484px;}
.xe_c00469{left:478.180608px;}
.x47_c00469{left:480.872280px;}
.x3c_c00469{left:484.114572px;}
.x2d_c00469{left:486.007356px;}
.x60_c00469{left:489.515412px;}
.x40_c00469{left:506.525220px;}
.x8_c00469{left:507.987000px;}
.x2e_c00469{left:510.307416px;}
.x76_c00469{left:512.190000px;}
.x87_c00469{left:516.240000px;}
.x56_c00469{left:517.593744px;}
.x1e_c00469{left:520.838712px;}
.x48_c00469{left:524.073540px;}
.x88_c00469{left:531.090000px;}
.xf_c00469{left:538.122948px;}
.x77_c00469{left:540.540000px;}
.x67_c00469{left:545.136132px;}
.x89_c00469{left:549.450000px;}
.x6d_c00469{left:558.360000px;}
.x78_c00469{left:560.250000px;}
.x84_c00469{left:565.650000px;}
.x79_c00469{left:567.000000px;}
.x6e_c00469{left:581.580000px;}
.x7a_c00469{left:584.280000px;}
.x6f_c00469{left:603.990000px;}
.x94_c00469{left:613.440000px;}
.x90_c00469{left:629.910000px;}
.x70_c00469{left:632.880000px;}
.x7b_c00469{left:638.010000px;}
.x71_c00469{left:662.850000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fsf_c00469{font-size:45.733333pt;}
.fsc_c00469{font-size:49.466667pt;}
.fs10_c00469{font-size:52.266667pt;}
.fsd_c00469{font-size:54.133333pt;}
.fs9_c00469{font-size:55.068429pt;}
.fs6_c00469{font-size:56.935155pt;}
.fse_c00469{font-size:58.800000pt;}
.fs2_c00469{font-size:58.801882pt;}
.fsb_c00469{font-size:59.735245pt;}
.fs0_c00469{font-size:60.668608pt;}
.fs5_c00469{font-size:62.535334pt;}
.fs1_c00469{font-size:64.402061pt;}
.fs8_c00469{font-size:65.335424pt;}
.fs11_c00469{font-size:66.266667pt;}
.fs4_c00469{font-size:66.268787pt;}
.fs3_c00469{font-size:67.202150pt;}
.fs7_c00469{font-size:70.002240pt;}
.fsa_c00469{font-size:84.936051pt;}
.y0_c00469{bottom:0.000000pt;}
.yae_c00469{bottom:88.206667pt;}
.yad_c00469{bottom:147.348000pt;}
.yac_c00469{bottom:162.685333pt;}
.yab_c00469{bottom:178.066667pt;}
.yaa_c00469{bottom:193.890667pt;}
.ya9_c00469{bottom:209.508000pt;}
.ya8_c00469{bottom:225.577333pt;}
.ya7_c00469{bottom:265.055168pt;}
.ya1_c00469{bottom:280.343520pt;}
.ya2_c00469{bottom:280.343669pt;}
.ya0_c00469{bottom:280.343904pt;}
.ya3_c00469{bottom:280.344032pt;}
.ya6_c00469{bottom:280.344053pt;}
.ya4_c00469{bottom:280.344235pt;}
.y9f_c00469{bottom:280.344341pt;}
.ya5_c00469{bottom:280.344384pt;}
.y97_c00469{bottom:300.784907pt;}
.y98_c00469{bottom:300.785259pt;}
.y99_c00469{bottom:300.785568pt;}
.y9c_c00469{bottom:300.785909pt;}
.y9a_c00469{bottom:300.786037pt;}
.y9d_c00469{bottom:300.786379pt;}
.y9b_c00469{bottom:300.786507pt;}
.y9e_c00469{bottom:300.786912pt;}
.y94_c00469{bottom:320.909813pt;}
.y96_c00469{bottom:320.909909pt;}
.y95_c00469{bottom:320.910219pt;}
.y92_c00469{bottom:341.106901pt;}
.y93_c00469{bottom:341.106997pt;}
.y91_c00469{bottom:341.107509pt;}
.y8e_c00469{bottom:341.107648pt;}
.y8f_c00469{bottom:341.107904pt;}
.y90_c00469{bottom:341.108053pt;}
.y8d_c00469{bottom:361.502155pt;}
.y8c_c00469{bottom:382.301365pt;}
.y8b_c00469{bottom:382.301589pt;}
.y8a_c00469{bottom:382.302229pt;}
.y89_c00469{bottom:382.302613pt;}
.y88_c00469{bottom:382.302667pt;}
.y87_c00469{bottom:382.303200pt;}
.y86_c00469{bottom:382.303360pt;}
.y7e_c00469{bottom:402.033877pt;}
.y7f_c00469{bottom:402.034453pt;}
.y85_c00469{bottom:402.035040pt;}
.y80_c00469{bottom:402.035093pt;}
.y83_c00469{bottom:402.035221pt;}
.y81_c00469{bottom:402.035403pt;}
.y84_c00469{bottom:402.035435pt;}
.y82_c00469{bottom:402.035765pt;}
.y7c_c00469{bottom:422.467541pt;}
.y7d_c00469{bottom:422.468064pt;}
.y7b_c00469{bottom:422.468085pt;}
.y7a_c00469{bottom:422.468256pt;}
.y77_c00469{bottom:422.468288pt;}
.y76_c00469{bottom:422.468352pt;}
.y75_c00469{bottom:422.468469pt;}
.y78_c00469{bottom:422.468544pt;}
.y79_c00469{bottom:422.468747pt;}
.y6e_c00469{bottom:442.119264pt;}
.y71_c00469{bottom:442.119669pt;}
.y70_c00469{bottom:442.119733pt;}
.y6f_c00469{bottom:442.119797pt;}
.y72_c00469{bottom:442.119925pt;}
.y73_c00469{bottom:442.120235pt;}
.y74_c00469{bottom:442.120437pt;}
.y6b_c00469{bottom:462.613653pt;}
.y67_c00469{bottom:462.613952pt;}
.y68_c00469{bottom:462.613995pt;}
.y6c_c00469{bottom:462.614016pt;}
.y69_c00469{bottom:462.614037pt;}
.y6a_c00469{bottom:462.614293pt;}
.y66_c00469{bottom:462.614496pt;}
.y6d_c00469{bottom:462.614539pt;}
.y61_c00469{bottom:482.706144pt;}
.y63_c00469{bottom:482.706389pt;}
.y62_c00469{bottom:482.706400pt;}
.y5f_c00469{bottom:482.706592pt;}
.y5d_c00469{bottom:482.706613pt;}
.y60_c00469{bottom:482.706624pt;}
.y5c_c00469{bottom:482.706784pt;}
.y64_c00469{bottom:482.706805pt;}
.y5e_c00469{bottom:482.707136pt;}
.y65_c00469{bottom:482.707328pt;}
.y59_c00469{bottom:503.396949pt;}
.y5b_c00469{bottom:503.397205pt;}
.y5a_c00469{bottom:503.397461pt;}
.y53_c00469{bottom:523.599744pt;}
.y57_c00469{bottom:523.599915pt;}
.y58_c00469{bottom:523.600011pt;}
.y54_c00469{bottom:523.600053pt;}
.y52_c00469{bottom:523.600064pt;}
.y55_c00469{bottom:523.600213pt;}
.y56_c00469{bottom:523.600352pt;}
.y4c_c00469{bottom:544.145728pt;}
.y51_c00469{bottom:544.145792pt;}
.y4f_c00469{bottom:544.145973pt;}
.y4d_c00469{bottom:544.145984pt;}
.y4e_c00469{bottom:544.146027pt;}
.y4b_c00469{bottom:544.146272pt;}
.y50_c00469{bottom:544.146336pt;}
.y4a_c00469{bottom:544.146709pt;}
.y42_c00469{bottom:564.228437pt;}
.y43_c00469{bottom:564.228907pt;}
.y49_c00469{bottom:564.228949pt;}
.y45_c00469{bottom:564.229152pt;}
.y44_c00469{bottom:564.229163pt;}
.y46_c00469{bottom:564.229248pt;}
.y48_c00469{bottom:564.229440pt;}
.y47_c00469{bottom:564.229877pt;}
.y3d_c00469{bottom:583.818368pt;}
.y3b_c00469{bottom:583.818443pt;}
.y3c_c00469{bottom:583.818645pt;}
.y3e_c00469{bottom:583.818784pt;}
.y41_c00469{bottom:583.818901pt;}
.y40_c00469{bottom:583.818923pt;}
.y3f_c00469{bottom:583.818987pt;}
.y3a_c00469{bottom:604.353227pt;}
.y39_c00469{bottom:604.353771pt;}
.y38_c00469{bottom:604.353941pt;}
.y37_c00469{bottom:604.354336pt;}
.y36_c00469{bottom:604.354923pt;}
.y31_c00469{bottom:604.355019pt;}
.y32_c00469{bottom:604.355328pt;}
.y33_c00469{bottom:604.355424pt;}
.y34_c00469{bottom:604.355520pt;}
.y35_c00469{bottom:604.355563pt;}
.y30_c00469{bottom:624.232224pt;}
.y2f_c00469{bottom:624.232501pt;}
.y2d_c00469{bottom:624.232885pt;}
.y2e_c00469{bottom:624.232981pt;}
.y2b_c00469{bottom:624.233173pt;}
.y2c_c00469{bottom:624.233376pt;}
.y2a_c00469{bottom:644.640821pt;}
.y29_c00469{bottom:644.641216pt;}
.y28_c00469{bottom:660.954400pt;}
.y27_c00469{bottom:660.954795pt;}
.y26_c00469{bottom:660.955349pt;}
.y25_c00469{bottom:660.955947pt;}
.y23_c00469{bottom:660.955989pt;}
.y24_c00469{bottom:660.956085pt;}
.y22_c00469{bottom:681.362293pt;}
.y1e_c00469{bottom:681.362443pt;}
.y1b_c00469{bottom:681.362475pt;}
.y20_c00469{bottom:681.362528pt;}
.y21_c00469{bottom:681.362624pt;}
.y1f_c00469{bottom:681.362645pt;}
.y1d_c00469{bottom:681.362773pt;}
.y1c_c00469{bottom:681.363051pt;}
.y19_c00469{bottom:701.705483pt;}
.y18_c00469{bottom:701.705813pt;}
.y1a_c00469{bottom:701.706005pt;}
.y17_c00469{bottom:701.706240pt;}
.y16_c00469{bottom:701.706517pt;}
.y13_c00469{bottom:701.707019pt;}
.y15_c00469{bottom:701.707061pt;}
.y14_c00469{bottom:701.707072pt;}
.y12_c00469{bottom:701.707189pt;}
.yf_c00469{bottom:721.777163pt;}
.y11_c00469{bottom:721.777195pt;}
.ye_c00469{bottom:721.777216pt;}
.y10_c00469{bottom:721.777632pt;}
.yd_c00469{bottom:721.777760pt;}
.yc_c00469{bottom:721.778197pt;}
.yb_c00469{bottom:721.778677pt;}
.ya_c00469{bottom:721.778752pt;}
.y9_c00469{bottom:721.779296pt;}
.y1_c00469{bottom:740.641333pt;}
.y2_c00469{bottom:740.962165pt;}
.y3_c00469{bottom:741.476704pt;}
.y4_c00469{bottom:741.789536pt;}
.y5_c00469{bottom:742.146645pt;}
.y6_c00469{bottom:742.354016pt;}
.y7_c00469{bottom:742.712779pt;}
.y8_c00469{bottom:743.002933pt;}
.h11_c00469{height:45.733333pt;}
.he_c00469{height:49.466667pt;}
.h12_c00469{height:52.266667pt;}
.hf_c00469{height:54.133333pt;}
.hb_c00469{height:55.068429pt;}
.h8_c00469{height:56.935155pt;}
.h10_c00469{height:58.800000pt;}
.h4_c00469{height:58.801882pt;}
.hd_c00469{height:59.735245pt;}
.h2_c00469{height:60.668608pt;}
.h7_c00469{height:62.535334pt;}
.h3_c00469{height:64.402061pt;}
.ha_c00469{height:65.335424pt;}
.h13_c00469{height:66.266667pt;}
.h6_c00469{height:66.268787pt;}
.h5_c00469{height:67.202150pt;}
.h9_c00469{height:70.002240pt;}
.hc_c00469{height:84.936051pt;}
.h0_c00469{height:896.400000pt;}
.h1_c00469{height:896.666667pt;}
.w1_c00469{width:612.666667pt;}
.w0_c00469{width:612.933333pt;}
.x0_c00469{left:0.000000pt;}
.x8a_c00469{left:122.880000pt;}
.x72_c00469{left:125.760000pt;}
.x91_c00469{left:126.960000pt;}
.x68_c00469{left:137.280000pt;}
.x73_c00469{left:143.280000pt;}
.x92_c00469{left:148.320000pt;}
.x7c_c00469{left:150.000000pt;}
.x51_c00469{left:153.114347pt;}
.x1_c00469{left:156.344000pt;}
.x8b_c00469{left:164.640000pt;}
.x7d_c00469{left:166.320000pt;}
.x85_c00469{left:172.800000pt;}
.x3d_c00469{left:174.716064pt;}
.x4d_c00469{left:176.874667pt;}
.x49_c00469{left:178.313483pt;}
.x27_c00469{left:179.518368pt;}
.x17_c00469{left:181.201120pt;}
.x41_c00469{left:186.235925pt;}
.x1f_c00469{left:189.599413pt;}
.x32_c00469{left:191.037429pt;}
.x3e_c00469{left:193.196192pt;}
.x1d_c00469{left:194.161195pt;}
.x2_c00469{left:196.448000pt;}
.x66_c00469{left:197.516779pt;}
.x57_c00469{left:199.195424pt;}
.x69_c00469{left:201.600000pt;}
.x93_c00469{left:202.800000pt;}
.x5f_c00469{left:207.598251pt;}
.x74_c00469{left:208.800000pt;}
.x86_c00469{left:212.640000pt;}
.x52_c00469{left:213.595552pt;}
.x58_c00469{left:215.276448pt;}
.x33_c00469{left:216.237707pt;}
.x10_c00469{left:217.203349pt;}
.x42_c00469{left:218.636661pt;}
.x6a_c00469{left:221.520000pt;}
.x2f_c00469{left:224.398859pt;}
.x61_c00469{left:225.357707pt;}
.x28_c00469{left:229.200213pt;}
.x4a_c00469{left:230.155467pt;}
.x11_c00469{left:233.044363pt;}
.x18_c00469{left:234.003168pt;}
.x7e_c00469{left:235.440000pt;}
.x59_c00469{left:238.316587pt;}
.x21_c00469{left:239.760544pt;}
.x39_c00469{left:242.637387pt;}
.x8c_c00469{left:245.040000pt;}
.x34_c00469{left:246.238293pt;}
.x5b_c00469{left:248.636427pt;}
.x7f_c00469{left:250.800000pt;}
.x8d_c00469{left:254.400000pt;}
.x12_c00469{left:257.044565pt;}
.x19_c00469{left:258.963435pt;}
.x3_c00469{left:260.765333pt;}
.x20_c00469{left:264.721557pt;}
.x3a_c00469{left:267.837664pt;}
.x9_c00469{left:270.003499pt;}
.x8e_c00469{left:271.920000pt;}
.x3f_c00469{left:273.598667pt;}
.x53_c00469{left:274.798133pt;}
.x5c_c00469{left:276.718229pt;}
.x13_c00469{left:278.644619pt;}
.x22_c00469{left:285.122112pt;}
.x5e_c00469{left:286.320384pt;}
.x4b_c00469{left:287.997835pt;}
.xa_c00469{left:289.444747pt;}
.x8f_c00469{left:292.080000pt;}
.x4e_c00469{left:295.199573pt;}
.x5d_c00469{left:296.879520pt;}
.x1a_c00469{left:298.324619pt;}
.x4_c00469{left:299.869333pt;}
.x80_c00469{left:303.360000pt;}
.x5a_c00469{left:304.798176pt;}
.x29_c00469{left:306.722507pt;}
.x35_c00469{left:307.920907pt;}
.x54_c00469{left:314.159317pt;}
.x23_c00469{left:316.562795pt;}
.x30_c00469{left:318.482208pt;}
.x2a_c00469{left:320.643403pt;}
.xb_c00469{left:324.725675pt;}
.x2b_c00469{left:326.403776pt;}
.x43_c00469{left:328.079669pt;}
.x62_c00469{left:329.520363pt;}
.x75_c00469{left:334.080000pt;}
.x36_c00469{left:336.001365pt;}
.x3b_c00469{left:339.840939pt;}
.x81_c00469{left:341.520000pt;}
.x14_c00469{left:342.727392pt;}
.x5_c00469{left:344.508000pt;}
.x6b_c00469{left:346.080000pt;}
.x44_c00469{left:347.520917pt;}
.x1b_c00469{left:350.646635pt;}
.x24_c00469{left:354.243872pt;}
.x4f_c00469{left:355.440757pt;}
.xc_c00469{left:358.326496pt;}
.x37_c00469{left:359.281525pt;}
.x63_c00469{left:365.281323pt;}
.x6_c00469{left:370.429333pt;}
.x45_c00469{left:372.721195pt;}
.x25_c00469{left:373.685120pt;}
.x82_c00469{left:375.120000pt;}
.xd_c00469{left:378.487787pt;}
.x15_c00469{left:379.688427pt;}
.x6c_c00469{left:386.400000pt;}
.x1c_c00469{left:388.327712pt;}
.x83_c00469{left:392.880000pt;}
.x2c_c00469{left:395.525536pt;}
.x38_c00469{left:396.722592pt;}
.x64_c00469{left:399.842197pt;}
.x50_c00469{left:400.802325pt;}
.x46_c00469{left:402.721781pt;}
.x4c_c00469{left:404.401280pt;}
.x26_c00469{left:408.486016pt;}
.x16_c00469{left:412.089163pt;}
.x65_c00469{left:414.243115pt;}
.x7_c00469{left:415.274667pt;}
.x31_c00469{left:416.644491pt;}
.x55_c00469{left:421.682208pt;}
.xe_c00469{left:425.049429pt;}
.x47_c00469{left:427.442027pt;}
.x3c_c00469{left:430.324064pt;}
.x2d_c00469{left:432.006539pt;}
.x60_c00469{left:435.124811pt;}
.x40_c00469{left:450.244640pt;}
.x8_c00469{left:451.544000pt;}
.x2e_c00469{left:453.606592pt;}
.x76_c00469{left:455.280000pt;}
.x87_c00469{left:458.880000pt;}
.x56_c00469{left:460.083328pt;}
.x1e_c00469{left:462.967744pt;}
.x48_c00469{left:465.843147pt;}
.x88_c00469{left:472.080000pt;}
.xf_c00469{left:478.331509pt;}
.x77_c00469{left:480.480000pt;}
.x67_c00469{left:484.565451pt;}
.x89_c00469{left:488.400000pt;}
.x6d_c00469{left:496.320000pt;}
.x78_c00469{left:498.000000pt;}
.x84_c00469{left:502.800000pt;}
.x79_c00469{left:504.000000pt;}
.x6e_c00469{left:516.960000pt;}
.x7a_c00469{left:519.360000pt;}
.x6f_c00469{left:536.880000pt;}
.x94_c00469{left:545.280000pt;}
.x90_c00469{left:559.920000pt;}
.x70_c00469{left:562.560000pt;}
.x7b_c00469{left:567.120000pt;}
.x71_c00469{left:589.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m27_c00470{transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013780,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.025990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025990,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.026740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026740,0.000000,0.000000,0.250000,0,0);}
.mb1_c00470{transform:matrix(0.037190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037190,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.062810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062810,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.075650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075650,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.090015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090015,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.100545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100545,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{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);}
.m2b_c00470{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m33_c00470{transform:matrix(0.114070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114070,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.128305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128305,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.133635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133635,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{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);}
.m67_c00470{transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141160,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{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);}
.m8d_c00470{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);}
.m41_c00470{transform:matrix(0.145255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145255,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{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);}
.m82_c00470{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);}
.ma5_c00470{transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m64_c00470{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_c00470{transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155620,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{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);}
.m28_c00470{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.mf1_c00470{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{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);}
.m1e_c00470{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);}
.m91_c00470{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);}
.mab_c00470{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);}
.md7_c00470{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.maf_c00470{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);}
.m72_c00470{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);}
.mdf_c00470{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);}
.mb7_c00470{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);}
.ma8_c00470{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);}
.mad_c00470{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);}
.m40_c00470{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);}
.m24_c00470{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);}
.m68_c00470{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);}
.m80_c00470{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);}
.md5_c00470{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);}
.med_c00470{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);}
.m61_c00470{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);}
.ma3_c00470{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{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);}
.ma7_c00470{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);}
.m1c_c00470{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);}
.me9_c00470{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);}
.m5c_c00470{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);}
.m8c_c00470{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);}
.m57_c00470{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);}
.m92_c00470{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);}
.m84_c00470{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);}
.m9b_c00470{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);}
.mfc_c00470{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);}
.m6d_c00470{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);}
.m9a_c00470{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);}
.m63_c00470{transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184385,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{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);}
.md2_c00470{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);}
.mb2_c00470{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);}
.m17_c00470{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);}
.m65_c00470{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);}
.m60_c00470{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);}
.m62_c00470{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);}
.m93_c00470{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);}
.mf3_c00470{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);}
.m58_c00470{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);}
.m14_c00470{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);}
.m8f_c00470{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);}
.m15_c00470{transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191705,0.000000,0.000000,0.250000,0,0);}
.m5a_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);}
.m56_c00470{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);}
.me4_c00470{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);}
.m7e_c00470{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);}
.md8_c00470{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);}
.m96_c00470{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);}
.m38_c00470{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);}
.mfb_c00470{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);}
.m9c_c00470{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);}
.m20_c00470{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);}
.m2_c00470{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);}
.m51_c00470{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_c00470{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);}
.m9e_c00470{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);}
.mcf_c00470{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);}
.m97_c00470{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);}
.m55_c00470{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);}
.mc5_c00470{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);}
.m81_c00470{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);}
.m5b_c00470{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);}
.m95_c00470{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);}
.m69_c00470{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);}
.ma0_c00470{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);}
.m1a_c00470{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);}
.me1_c00470{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);}
.mf0_c00470{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);}
.ma6_c00470{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);}
.mf9_c00470{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);}
.mbe_c00470{transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204185,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{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);}
.mf5_c00470{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);}
.m73_c00470{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);}
.mf8_c00470{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);}
.m7f_c00470{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);}
.ma1_c00470{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);}
.m71_c00470{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);}
.mff_c00470{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);}
.m34_c00470{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);}
.maa_c00470{transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206370,0.000000,0.000000,0.250000,0,0);}
.mb4_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);}
.m4d_c00470{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);}
.m16_c00470{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);}
.m36_c00470{transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);}
.me5_c00470{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);}
.m75_c00470{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);}
.m3f_c00470{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);}
.m44_c00470{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.mdd_c00470{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);}
.m4b_c00470{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);}
.m90_c00470{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);}
.mfe_c00470{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);}
.mbc_c00470{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);}
.m26_c00470{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);}
.m4c_c00470{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);}
.m1b_c00470{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);}
.m85_c00470{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);}
.m8b_c00470{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);}
.mb6_c00470{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);}
.mb0_c00470{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);}
.ma9_c00470{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);}
.mdb_c00470{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);}
.mcc_c00470{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);}
.mc3_c00470{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);}
.m5e_c00470{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);}
.m3e_c00470{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);}
.m7a_c00470{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);}
.m79_c00470{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);}
.m8a_c00470{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);}
.m70_c00470{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);}
.ma2_c00470{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);}
.m39_c00470{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);}
.mb3_c00470{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);}
.mb9_c00470{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);}
.m6e_c00470{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);}
.m9d_c00470{transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);}
.me0_c00470{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);}
.m49_c00470{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);}
.m3_c00470{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);}
.mb_c00470{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);}
.meb_c00470{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);}
.mc8_c00470{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);}
.m4e_c00470{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);}
.mb5_c00470{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);}
.m47_c00470{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);}
.me8_c00470{transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226410,0.000000,0.000000,0.250000,0,0);}
.mbf_c00470{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);}
.mef_c00470{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);}
.m13_c00470{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);}
.mcb_c00470{transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227515,0.000000,0.000000,0.250000,0,0);}
.mc7_c00470{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);}
.m12_c00470{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);}
.m53_c00470{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);}
.m89_c00470{transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);}
.me7_c00470{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);}
.mee_c00470{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);}
.md4_c00470{transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);}
.md1_c00470{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);}
.mfd_c00470{transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);}
.me3_c00470{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);}
.m25_c00470{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);}
.mdc_c00470{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);}
.m42_c00470{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);}
.mc1_c00470{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);}
.mc6_c00470{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);}
.me6_c00470{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);}
.mca_c00470{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);}
.mde_c00470{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);}
.mfa_c00470{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);}
.mc0_c00470{transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239705,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.240505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240505,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241485,0.000000,0.000000,0.250000,0,0);}
.m99_c00470{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);}
.m30_c00470{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);}
.mba_c00470{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);}
.m6c_c00470{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);}
.m59_c00470{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);}
.m10_c00470{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);}
.m6f_c00470{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);}
.mec_c00470{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);}
.md0_c00470{transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);}
.mce_c00470{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);}
.md6_c00470{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{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);}
.mcd_c00470{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.mf4_c00470{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);}
.md9_c00470{transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);}
.mc2_c00470{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{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);}
.m19_c00470{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);}
.m77_c00470{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);}
.mda_c00470{transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252455,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);}
.md3_c00470{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);}
.m3d_c00470{transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260565,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{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);}
.mae_c00470{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{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);}
.m1_c00470{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.mbb_c00470{transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272480,0.000000,0.000000,0.250000,0,0);}
.mea_c00470{transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);}
.mf6_c00470{transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276985,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280540,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{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);}
.mc4_c00470{transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);}
.me2_c00470{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);}
.m50_c00470{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{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);}
.m74_c00470{transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305075,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{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);}
.mb8_c00470{transform:matrix(0.312455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312455,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.329655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329655,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.352405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352405,0.000000,0.000000,0.250000,0,0);}
.mbd_c00470{transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);}
.mf2_c00470{transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372435,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.378705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378705,0.000000,0.000000,0.250000,0,0);}
.mf7_c00470{transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385605,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.420055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420055,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.420785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420785,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.426525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426525,0.000000,0.000000,0.250000,0,0);}
.m102_c00470{transform:matrix(0.433130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433130,0.000000,0.000000,0.250000,0,0);}
.m103_c00470{transform:matrix(0.443915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443915,0.000000,0.000000,0.250000,0,0);}
.m100_c00470{transform:matrix(0.469015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469015,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.479960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479960,0.000000,0.000000,0.250000,0,0);}
.m7d_c00470{transform:matrix(0.486535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486535,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.500050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500050,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.512200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512200,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.517125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517125,0.000000,0.000000,0.250000,0,0);}
.mc9_c00470{transform:matrix(0.609370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609370,0.000000,0.000000,0.250000,0,0);}
.m101_c00470{transform:matrix(0.630320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630320,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.633535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633535,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;}
.fsd_c00470{font-size:48.300000px;}
.fsc_c00470{font-size:51.450000px;}
.fse_c00470{font-size:53.550000px;}
.fsf_c00470{font-size:60.900000px;}
.fs5_c00470{font-size:61.950000px;}
.fs8_c00470{font-size:64.050000px;}
.fs4_c00470{font-size:66.150000px;}
.fsa_c00470{font-size:68.250000px;}
.fs3_c00470{font-size:69.300000px;}
.fsb_c00470{font-size:70.350000px;}
.fs6_c00470{font-size:71.400000px;}
.fs9_c00470{font-size:72.450000px;}
.fs7_c00470{font-size:74.550000px;}
.fs1_c00470{font-size:88.200000px;}
.fs2_c00470{font-size:92.400000px;}
.fs0_c00470{font-size:114.450000px;}
.y0_c00470{bottom:0.000000px;}
.y1d_c00470{bottom:127.596000px;}
.y1c_c00470{bottom:147.969000px;}
.y1b_c00470{bottom:165.843000px;}
.y1a_c00470{bottom:183.769500px;}
.y19_c00470{bottom:201.610500px;}
.y18_c00470{bottom:218.700000px;}
.y17_c00470{bottom:236.481000px;}
.y16_c00470{bottom:282.390000px;}
.y15_c00470{bottom:305.559000px;}
.y14_c00470{bottom:328.401000px;}
.y13_c00470{bottom:351.619500px;}
.y12_c00470{bottom:373.950000px;}
.y11_c00470{bottom:396.360000px;}
.y10_c00470{bottom:419.496000px;}
.yf_c00470{bottom:441.783000px;}
.ye_c00470{bottom:464.623500px;}
.yd_c00470{bottom:486.996000px;}
.yc_c00470{bottom:510.064500px;}
.yb_c00470{bottom:532.980000px;}
.ya_c00470{bottom:555.738000px;}
.y9_c00470{bottom:578.610000px;}
.y8_c00470{bottom:601.092000px;}
.y7_c00470{bottom:623.785500px;}
.y6_c00470{bottom:645.396000px;}
.y5_c00470{bottom:668.520000px;}
.y4_c00470{bottom:691.684500px;}
.y3_c00470{bottom:714.555000px;}
.y2_c00470{bottom:751.567500px;}
.y1_c00470{bottom:793.926000px;}
.hf_c00470{height:48.300000px;}
.he_c00470{height:51.450000px;}
.h10_c00470{height:53.550000px;}
.h11_c00470{height:60.900000px;}
.h7_c00470{height:61.950000px;}
.ha_c00470{height:64.050000px;}
.h6_c00470{height:66.150000px;}
.hc_c00470{height:68.250000px;}
.h5_c00470{height:69.300000px;}
.hd_c00470{height:70.350000px;}
.h8_c00470{height:71.400000px;}
.hb_c00470{height:72.450000px;}
.h9_c00470{height:74.550000px;}
.h3_c00470{height:88.200000px;}
.h4_c00470{height:92.400000px;}
.h2_c00470{height:114.450000px;}
.h1_c00470{height:1005.000000px;}
.h0_c00470{height:1005.150000px;}
.w0_c00470{width:715.200000px;}
.w1_c00470{width:715.500000px;}
.x0_c00470{left:0.000000px;}
.x78_c00470{left:47.790000px;}
.x93_c00470{left:68.850000px;}
.x85_c00470{left:76.680000px;}
.x79_c00470{left:86.670000px;}
.x30_c00470{left:96.390000px;}
.xf_c00470{left:101.520000px;}
.x46_c00470{left:106.920000px;}
.x99_c00470{left:112.860000px;}
.x6c_c00470{left:116.100000px;}
.x86_c00470{left:118.800000px;}
.x67_c00470{left:120.150000px;}
.x19_c00470{left:121.500000px;}
.x29_c00470{left:123.660000px;}
.x21_c00470{left:125.280000px;}
.x80_c00470{left:126.900000px;}
.x5_c00470{left:129.330000px;}
.x87_c00470{left:133.380000px;}
.x7a_c00470{left:137.430000px;}
.x1a_c00470{left:143.100000px;}
.x9a_c00470{left:146.610000px;}
.x98_c00470{left:148.500000px;}
.x2a_c00470{left:150.660000px;}
.x8b_c00470{left:152.820000px;}
.x41_c00470{left:154.170000px;}
.x75_c00470{left:155.250000px;}
.x10_c00470{left:157.950000px;}
.x4e_c00470{left:159.300000px;}
.x22_c00470{left:161.460000px;}
.x6f_c00470{left:163.890000px;}
.x58_c00470{left:165.510000px;}
.x39_c00470{left:168.480000px;}
.x8c_c00470{left:172.260000px;}
.x23_c00470{left:175.500000px;}
.x4f_c00470{left:178.740000px;}
.x81_c00470{left:180.090000px;}
.x68_c00470{left:185.490000px;}
.x11_c00470{left:186.840000px;}
.x8d_c00470{left:188.190000px;}
.x1b_c00470{left:189.810000px;}
.x2b_c00470{left:193.050000px;}
.x47_c00470{left:197.370000px;}
.x31_c00470{left:198.990000px;}
.x24_c00470{left:204.390000px;}
.x48_c00470{left:206.550000px;}
.x59_c00470{left:208.710000px;}
.x65_c00470{left:210.870000px;}
.x8e_c00470{left:217.350000px;}
.x1c_c00470{left:218.700000px;}
.x12_c00470{left:222.210000px;}
.x32_c00470{left:224.100000px;}
.x8_c00470{left:226.800000px;}
.x60_c00470{left:228.150000px;}
.x54_c00470{left:233.280000px;}
.x1_c00470{left:234.360000px;}
.x70_c00470{left:237.600000px;}
.x50_c00470{left:242.730000px;}
.x8f_c00470{left:244.080000px;}
.x9_c00470{left:247.320000px;}
.x66_c00470{left:248.670000px;}
.x61_c00470{left:251.640000px;}
.x2c_c00470{left:253.800000px;}
.x33_c00470{left:257.040000px;}
.x13_c00470{left:258.930000px;}
.x76_c00470{left:260.820000px;}
.x71_c00470{left:264.060000px;}
.x1d_c00470{left:266.220000px;}
.x49_c00470{left:269.190000px;}
.x94_c00470{left:274.860000px;}
.x55_c00470{left:276.210000px;}
.x34_c00470{left:277.830000px;}
.x5a_c00470{left:281.880000px;}
.x1e_c00470{left:284.040000px;}
.x69_c00470{left:285.390000px;}
.xa_c00470{left:286.740000px;}
.x51_c00470{left:288.630000px;}
.x7b_c00470{left:293.220000px;}
.x88_c00470{left:294.300000px;}
.x2_c00470{left:295.920000px;}
.x1f_c00470{left:297.000000px;}
.x4a_c00470{left:299.160000px;}
.x25_c00470{left:302.940000px;}
.x35_c00470{left:304.830000px;}
.x42_c00470{left:307.530000px;}
.x63_c00470{left:309.420000px;}
.x52_c00470{left:311.310000px;}
.x6_c00470{left:314.820000px;}
.x14_c00470{left:315.900000px;}
.x72_c00470{left:318.870000px;}
.x4b_c00470{left:322.380000px;}
.x6a_c00470{left:325.620000px;}
.x62_c00470{left:328.590000px;}
.xb_c00470{left:329.940000px;}
.x82_c00470{left:332.100000px;}
.x3a_c00470{left:333.450000px;}
.x90_c00470{left:336.150000px;}
.x43_c00470{left:339.660000px;}
.x5b_c00470{left:343.440000px;}
.x64_c00470{left:344.520000px;}
.x73_c00470{left:346.140000px;}
.x4c_c00470{left:347.490000px;}
.x56_c00470{left:349.110000px;}
.x3_c00470{left:355.860000px;}
.x77_c00470{left:361.530000px;}
.x3b_c00470{left:362.610000px;}
.x26_c00470{left:364.230000px;}
.x5c_c00470{left:365.850000px;}
.x57_c00470{left:368.550000px;}
.x36_c00470{left:370.710000px;}
.x6d_c00470{left:372.330000px;}
.x37_c00470{left:373.950000px;}
.x53_c00470{left:375.300000px;}
.x7c_c00470{left:379.080000px;}
.x4d_c00470{left:382.050000px;}
.x15_c00470{left:383.400000px;}
.x20_c00470{left:384.480000px;}
.x5d_c00470{left:388.260000px;}
.x2d_c00470{left:390.420000px;}
.x3c_c00470{left:392.310000px;}
.x4_c00470{left:394.740000px;}
.x89_c00470{left:396.090000px;}
.x91_c00470{left:400.680000px;}
.x95_c00470{left:407.430000px;}
.x44_c00470{left:409.050000px;}
.x27_c00470{left:412.560000px;}
.x16_c00470{left:414.450000px;}
.x3d_c00470{left:415.800000px;}
.x7d_c00470{left:419.310000px;}
.x6e_c00470{left:421.200000px;}
.xc_c00470{left:423.630000px;}
.x5e_c00470{left:426.330000px;}
.x2e_c00470{left:435.780000px;}
.x96_c00470{left:439.830000px;}
.x6b_c00470{left:441.990000px;}
.x97_c00470{left:450.360000px;}
.x17_c00470{left:451.980000px;}
.xd_c00470{left:457.110000px;}
.x3e_c00470{left:463.320000px;}
.x45_c00470{left:464.670000px;}
.x83_c00470{left:467.370000px;}
.x5f_c00470{left:468.450000px;}
.x7e_c00470{left:470.880000px;}
.x2f_c00470{left:473.580000px;}
.x74_c00470{left:475.200000px;}
.x28_c00470{left:479.790000px;}
.x7f_c00470{left:482.220000px;}
.x3f_c00470{left:493.290000px;}
.xe_c00470{left:495.720000px;}
.x84_c00470{left:510.300000px;}
.x40_c00470{left:515.160000px;}
.x7_c00470{left:518.940000px;}
.x38_c00470{left:520.290000px;}
.x18_c00470{left:530.280000px;}
.x8a_c00470{left:537.840000px;}
.x92_c00470{left:541.350000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fsd_c00470{font-size:42.933333pt;}
.fsc_c00470{font-size:45.733333pt;}
.fse_c00470{font-size:47.600000pt;}
.fsf_c00470{font-size:54.133333pt;}
.fs5_c00470{font-size:55.066667pt;}
.fs8_c00470{font-size:56.933333pt;}
.fs4_c00470{font-size:58.800000pt;}
.fsa_c00470{font-size:60.666667pt;}
.fs3_c00470{font-size:61.600000pt;}
.fsb_c00470{font-size:62.533333pt;}
.fs6_c00470{font-size:63.466667pt;}
.fs9_c00470{font-size:64.400000pt;}
.fs7_c00470{font-size:66.266667pt;}
.fs1_c00470{font-size:78.400000pt;}
.fs2_c00470{font-size:82.133333pt;}
.fs0_c00470{font-size:101.733333pt;}
.y0_c00470{bottom:0.000000pt;}
.y1d_c00470{bottom:113.418667pt;}
.y1c_c00470{bottom:131.528000pt;}
.y1b_c00470{bottom:147.416000pt;}
.y1a_c00470{bottom:163.350667pt;}
.y19_c00470{bottom:179.209333pt;}
.y18_c00470{bottom:194.400000pt;}
.y17_c00470{bottom:210.205333pt;}
.y16_c00470{bottom:251.013333pt;}
.y15_c00470{bottom:271.608000pt;}
.y14_c00470{bottom:291.912000pt;}
.y13_c00470{bottom:312.550667pt;}
.y12_c00470{bottom:332.400000pt;}
.y11_c00470{bottom:352.320000pt;}
.y10_c00470{bottom:372.885333pt;}
.yf_c00470{bottom:392.696000pt;}
.ye_c00470{bottom:412.998667pt;}
.yd_c00470{bottom:432.885333pt;}
.yc_c00470{bottom:453.390667pt;}
.yb_c00470{bottom:473.760000pt;}
.ya_c00470{bottom:493.989333pt;}
.y9_c00470{bottom:514.320000pt;}
.y8_c00470{bottom:534.304000pt;}
.y7_c00470{bottom:554.476000pt;}
.y6_c00470{bottom:573.685333pt;}
.y5_c00470{bottom:594.240000pt;}
.y4_c00470{bottom:614.830667pt;}
.y3_c00470{bottom:635.160000pt;}
.y2_c00470{bottom:668.060000pt;}
.y1_c00470{bottom:705.712000pt;}
.hf_c00470{height:42.933333pt;}
.he_c00470{height:45.733333pt;}
.h10_c00470{height:47.600000pt;}
.h11_c00470{height:54.133333pt;}
.h7_c00470{height:55.066667pt;}
.ha_c00470{height:56.933333pt;}
.h6_c00470{height:58.800000pt;}
.hc_c00470{height:60.666667pt;}
.h5_c00470{height:61.600000pt;}
.hd_c00470{height:62.533333pt;}
.h8_c00470{height:63.466667pt;}
.hb_c00470{height:64.400000pt;}
.h9_c00470{height:66.266667pt;}
.h3_c00470{height:78.400000pt;}
.h4_c00470{height:82.133333pt;}
.h2_c00470{height:101.733333pt;}
.h1_c00470{height:893.333333pt;}
.h0_c00470{height:893.466667pt;}
.w0_c00470{width:635.733333pt;}
.w1_c00470{width:636.000000pt;}
.x0_c00470{left:0.000000pt;}
.x78_c00470{left:42.480000pt;}
.x93_c00470{left:61.200000pt;}
.x85_c00470{left:68.160000pt;}
.x79_c00470{left:77.040000pt;}
.x30_c00470{left:85.680000pt;}
.xf_c00470{left:90.240000pt;}
.x46_c00470{left:95.040000pt;}
.x99_c00470{left:100.320000pt;}
.x6c_c00470{left:103.200000pt;}
.x86_c00470{left:105.600000pt;}
.x67_c00470{left:106.800000pt;}
.x19_c00470{left:108.000000pt;}
.x29_c00470{left:109.920000pt;}
.x21_c00470{left:111.360000pt;}
.x80_c00470{left:112.800000pt;}
.x5_c00470{left:114.960000pt;}
.x87_c00470{left:118.560000pt;}
.x7a_c00470{left:122.160000pt;}
.x1a_c00470{left:127.200000pt;}
.x9a_c00470{left:130.320000pt;}
.x98_c00470{left:132.000000pt;}
.x2a_c00470{left:133.920000pt;}
.x8b_c00470{left:135.840000pt;}
.x41_c00470{left:137.040000pt;}
.x75_c00470{left:138.000000pt;}
.x10_c00470{left:140.400000pt;}
.x4e_c00470{left:141.600000pt;}
.x22_c00470{left:143.520000pt;}
.x6f_c00470{left:145.680000pt;}
.x58_c00470{left:147.120000pt;}
.x39_c00470{left:149.760000pt;}
.x8c_c00470{left:153.120000pt;}
.x23_c00470{left:156.000000pt;}
.x4f_c00470{left:158.880000pt;}
.x81_c00470{left:160.080000pt;}
.x68_c00470{left:164.880000pt;}
.x11_c00470{left:166.080000pt;}
.x8d_c00470{left:167.280000pt;}
.x1b_c00470{left:168.720000pt;}
.x2b_c00470{left:171.600000pt;}
.x47_c00470{left:175.440000pt;}
.x31_c00470{left:176.880000pt;}
.x24_c00470{left:181.680000pt;}
.x48_c00470{left:183.600000pt;}
.x59_c00470{left:185.520000pt;}
.x65_c00470{left:187.440000pt;}
.x8e_c00470{left:193.200000pt;}
.x1c_c00470{left:194.400000pt;}
.x12_c00470{left:197.520000pt;}
.x32_c00470{left:199.200000pt;}
.x8_c00470{left:201.600000pt;}
.x60_c00470{left:202.800000pt;}
.x54_c00470{left:207.360000pt;}
.x1_c00470{left:208.320000pt;}
.x70_c00470{left:211.200000pt;}
.x50_c00470{left:215.760000pt;}
.x8f_c00470{left:216.960000pt;}
.x9_c00470{left:219.840000pt;}
.x66_c00470{left:221.040000pt;}
.x61_c00470{left:223.680000pt;}
.x2c_c00470{left:225.600000pt;}
.x33_c00470{left:228.480000pt;}
.x13_c00470{left:230.160000pt;}
.x76_c00470{left:231.840000pt;}
.x71_c00470{left:234.720000pt;}
.x1d_c00470{left:236.640000pt;}
.x49_c00470{left:239.280000pt;}
.x94_c00470{left:244.320000pt;}
.x55_c00470{left:245.520000pt;}
.x34_c00470{left:246.960000pt;}
.x5a_c00470{left:250.560000pt;}
.x1e_c00470{left:252.480000pt;}
.x69_c00470{left:253.680000pt;}
.xa_c00470{left:254.880000pt;}
.x51_c00470{left:256.560000pt;}
.x7b_c00470{left:260.640000pt;}
.x88_c00470{left:261.600000pt;}
.x2_c00470{left:263.040000pt;}
.x1f_c00470{left:264.000000pt;}
.x4a_c00470{left:265.920000pt;}
.x25_c00470{left:269.280000pt;}
.x35_c00470{left:270.960000pt;}
.x42_c00470{left:273.360000pt;}
.x63_c00470{left:275.040000pt;}
.x52_c00470{left:276.720000pt;}
.x6_c00470{left:279.840000pt;}
.x14_c00470{left:280.800000pt;}
.x72_c00470{left:283.440000pt;}
.x4b_c00470{left:286.560000pt;}
.x6a_c00470{left:289.440000pt;}
.x62_c00470{left:292.080000pt;}
.xb_c00470{left:293.280000pt;}
.x82_c00470{left:295.200000pt;}
.x3a_c00470{left:296.400000pt;}
.x90_c00470{left:298.800000pt;}
.x43_c00470{left:301.920000pt;}
.x5b_c00470{left:305.280000pt;}
.x64_c00470{left:306.240000pt;}
.x73_c00470{left:307.680000pt;}
.x4c_c00470{left:308.880000pt;}
.x56_c00470{left:310.320000pt;}
.x3_c00470{left:316.320000pt;}
.x77_c00470{left:321.360000pt;}
.x3b_c00470{left:322.320000pt;}
.x26_c00470{left:323.760000pt;}
.x5c_c00470{left:325.200000pt;}
.x57_c00470{left:327.600000pt;}
.x36_c00470{left:329.520000pt;}
.x6d_c00470{left:330.960000pt;}
.x37_c00470{left:332.400000pt;}
.x53_c00470{left:333.600000pt;}
.x7c_c00470{left:336.960000pt;}
.x4d_c00470{left:339.600000pt;}
.x15_c00470{left:340.800000pt;}
.x20_c00470{left:341.760000pt;}
.x5d_c00470{left:345.120000pt;}
.x2d_c00470{left:347.040000pt;}
.x3c_c00470{left:348.720000pt;}
.x4_c00470{left:350.880000pt;}
.x89_c00470{left:352.080000pt;}
.x91_c00470{left:356.160000pt;}
.x95_c00470{left:362.160000pt;}
.x44_c00470{left:363.600000pt;}
.x27_c00470{left:366.720000pt;}
.x16_c00470{left:368.400000pt;}
.x3d_c00470{left:369.600000pt;}
.x7d_c00470{left:372.720000pt;}
.x6e_c00470{left:374.400000pt;}
.xc_c00470{left:376.560000pt;}
.x5e_c00470{left:378.960000pt;}
.x2e_c00470{left:387.360000pt;}
.x96_c00470{left:390.960000pt;}
.x6b_c00470{left:392.880000pt;}
.x97_c00470{left:400.320000pt;}
.x17_c00470{left:401.760000pt;}
.xd_c00470{left:406.320000pt;}
.x3e_c00470{left:411.840000pt;}
.x45_c00470{left:413.040000pt;}
.x83_c00470{left:415.440000pt;}
.x5f_c00470{left:416.400000pt;}
.x7e_c00470{left:418.560000pt;}
.x2f_c00470{left:420.960000pt;}
.x74_c00470{left:422.400000pt;}
.x28_c00470{left:426.480000pt;}
.x7f_c00470{left:428.640000pt;}
.x3f_c00470{left:438.480000pt;}
.xe_c00470{left:440.640000pt;}
.x84_c00470{left:453.600000pt;}
.x40_c00470{left:457.920000pt;}
.x7_c00470{left:461.280000pt;}
.x38_c00470{left:462.480000pt;}
.x18_c00470{left:471.360000pt;}
.x8a_c00470{left:478.080000pt;}
.x92_c00470{left:481.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_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_ef4e99a7aa2876b3106553d3.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;}
.m7a_c00471{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);}
.m9e_c00471{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m113_c00471{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.m10a_c00471{transform:matrix(0.035700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00471{transform:matrix(0.036214,-0.000290,0.002000,0.249992,0,0);-ms-transform:matrix(0.036214,-0.000290,0.002000,0.249992,0,0);-webkit-transform:matrix(0.036214,-0.000290,0.002000,0.249992,0,0);}
.mf0_c00471{transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062140,0.000000,0.000000,0.250000,0,0);}
.m107_c00471{transform:matrix(0.063920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063920,0.000000,0.000000,0.250000,0,0);}
.m54_c00471{transform:matrix(0.075730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00471{transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);}
.mc9_c00471{transform:matrix(0.109030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109030,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.116945,-0.001053,0.002250,0.249990,0,0);-ms-transform:matrix(0.116945,-0.001053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.116945,-0.001053,0.002250,0.249990,0,0);}
.me1_c00471{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);}
.mf5_c00471{transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128285,0.000000,0.000000,0.250000,0,0);}
.m121_c00471{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);}
.maa_c00471{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);}
.m50_c00471{transform:matrix(0.140195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140195,0.000000,0.000000,0.250000,0,0);}
.m38_c00471{transform:matrix(0.143895,-0.001151,0.002000,0.249992,0,0);-ms-transform:matrix(0.143895,-0.001151,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143895,-0.001151,0.002000,0.249992,0,0);}
.m25_c00471{transform:matrix(0.144034,-0.002737,0.004749,0.249955,0,0);-ms-transform:matrix(0.144034,-0.002737,0.004749,0.249955,0,0);-webkit-transform:matrix(0.144034,-0.002737,0.004749,0.249955,0,0);}
.ma8_c00471{transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);}
.m2b_c00471{transform:matrix(0.146654,-0.001320,0.002250,0.249990,0,0);-ms-transform:matrix(0.146654,-0.001320,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146654,-0.001320,0.002250,0.249990,0,0);}
.m60_c00471{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);}
.m3f_c00471{transform:matrix(0.149600,-0.001197,0.002000,0.249992,0,0);-ms-transform:matrix(0.149600,-0.001197,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149600,-0.001197,0.002000,0.249992,0,0);}
.m120_c00471{transform:matrix(0.149770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149770,0.000000,0.000000,0.250000,0,0);}
.m3b_c00471{transform:matrix(0.150330,-0.001203,0.002000,0.249992,0,0);-ms-transform:matrix(0.150330,-0.001203,0.002000,0.249992,0,0);-webkit-transform:matrix(0.150330,-0.001203,0.002000,0.249992,0,0);}
.m2c_c00471{transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);-ms-transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152739,-0.001375,0.002250,0.249990,0,0);}
.m124_c00471{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);}
.m15_c00471{transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);-ms-transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155579,-0.001867,0.003000,0.249982,0,0);}
.m10_c00471{transform:matrix(0.156049,-0.001873,0.003000,0.249982,0,0);-ms-transform:matrix(0.156049,-0.001873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156049,-0.001873,0.003000,0.249982,0,0);}
.m35_c00471{transform:matrix(0.156270,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156270,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156270,-0.001250,0.002000,0.249992,0,0);}
.m2d_c00471{transform:matrix(0.156379,-0.001407,0.002250,0.249990,0,0);-ms-transform:matrix(0.156379,-0.001407,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156379,-0.001407,0.002250,0.249990,0,0);}
.m11d_c00471{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);}
.mae_c00471{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);}
.ma3_c00471{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m11b_c00471{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);}
.m5c_c00471{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);}
.m80_c00471{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);}
.m39_c00471{transform:matrix(0.161330,-0.001291,0.002000,0.249992,0,0);-ms-transform:matrix(0.161330,-0.001291,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161330,-0.001291,0.002000,0.249992,0,0);}
.m8c_c00471{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);}
.m4d_c00471{transform:matrix(0.162590,-0.001301,0.002000,0.249992,0,0);-ms-transform:matrix(0.162590,-0.001301,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162590,-0.001301,0.002000,0.249992,0,0);}
.me0_c00471{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);}
.m58_c00471{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);}
.m11f_c00471{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.ma1_c00471{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);}
.m11e_c00471{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.m9d_c00471{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);}
.m2e_c00471{transform:matrix(0.165798,-0.001492,0.002250,0.249990,0,0);-ms-transform:matrix(0.165798,-0.001492,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165798,-0.001492,0.002250,0.249990,0,0);}
.mf2_c00471{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);}
.m36_c00471{transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);}
.m10f_c00471{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);}
.m16_c00471{transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-ms-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168653,-0.002024,0.003000,0.249982,0,0);}
.m62_c00471{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);}
.m125_c00471{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);}
.m4e_c00471{transform:matrix(0.168795,-0.001350,0.002000,0.249992,0,0);-ms-transform:matrix(0.168795,-0.001350,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168795,-0.001350,0.002000,0.249992,0,0);}
.m11a_c00471{transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);}
.m126_c00471{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);}
.mf4_c00471{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);}
.m40_c00471{transform:matrix(0.170975,-0.001368,0.002000,0.249992,0,0);-ms-transform:matrix(0.170975,-0.001368,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170975,-0.001368,0.002000,0.249992,0,0);}
.m2f_c00471{transform:matrix(0.171533,-0.001544,0.002250,0.249990,0,0);-ms-transform:matrix(0.171533,-0.001544,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171533,-0.001544,0.002250,0.249990,0,0);}
.m57_c00471{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);}
.mfc_c00471{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);}
.m129_c00471{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);}
.m51_c00471{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);}
.m5a_c00471{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);}
.m112_c00471{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);}
.m42_c00471{transform:matrix(0.175239,-0.001402,0.002000,0.249992,0,0);-ms-transform:matrix(0.175239,-0.001402,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175239,-0.001402,0.002000,0.249992,0,0);}
.m21_c00471{transform:matrix(0.177308,-0.003369,0.004749,0.249955,0,0);-ms-transform:matrix(0.177308,-0.003369,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177308,-0.003369,0.004749,0.249955,0,0);}
.m27_c00471{transform:matrix(0.177773,-0.003378,0.004749,0.249955,0,0);-ms-transform:matrix(0.177773,-0.003378,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177773,-0.003378,0.004749,0.249955,0,0);}
.mb3_c00471{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);}
.m56_c00471{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);}
.m9b_c00471{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.mf3_c00471{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);}
.m5_c00471{transform:matrix(0.179863,-0.003417,0.004749,0.249955,0,0);-ms-transform:matrix(0.179863,-0.003417,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179863,-0.003417,0.004749,0.249955,0,0);}
.mda_c00471{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);}
.me4_c00471{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);}
.ma2_c00471{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);}
.m110_c00471{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);}
.m77_c00471{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);}
.mfa_c00471{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);}
.m7e_c00471{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);}
.mfb_c00471{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);}
.mb1_c00471{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);}
.mf8_c00471{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);}
.m31_c00471{transform:matrix(0.183658,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183658,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183658,-0.001653,0.002250,0.249990,0,0);}
.m9c_c00471{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);}
.m86_c00471{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);}
.mab_c00471{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);}
.m91_c00471{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);}
.m89_c00471{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);}
.ma_c00471{transform:matrix(0.186161,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186161,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186161,-0.001862,0.002500,0.249988,0,0);}
.m26_c00471{transform:matrix(0.186226,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186226,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186226,-0.003538,0.004749,0.249955,0,0);}
.m17_c00471{transform:matrix(0.186337,-0.002236,0.003000,0.249982,0,0);-ms-transform:matrix(0.186337,-0.002236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186337,-0.002236,0.003000,0.249982,0,0);}
.ma9_c00471{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);}
.m63_c00471{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);}
.me3_c00471{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);}
.m88_c00471{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);}
.m92_c00471{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);}
.me5_c00471{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);}
.m8d_c00471{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);}
.m29_c00471{transform:matrix(0.189431,-0.003599,0.004749,0.249955,0,0);-ms-transform:matrix(0.189431,-0.003599,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189431,-0.003599,0.004749,0.249955,0,0);}
.m5b_c00471{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);}
.m82_c00471{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);}
.m24_c00471{transform:matrix(0.190601,-0.003621,0.004749,0.249955,0,0);-ms-transform:matrix(0.190601,-0.003621,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190601,-0.003621,0.004749,0.249955,0,0);}
.m19_c00471{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);}
.mf9_c00471{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_c00471{transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191435,-0.001914,0.002500,0.249988,0,0);}
.m48_c00471{transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191439,-0.001532,0.002000,0.249992,0,0);}
.m49_c00471{transform:matrix(0.191469,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191469,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191469,-0.001532,0.002000,0.249992,0,0);}
.m1e_c00471{transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);}
.mdb_c00471{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.192056,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192056,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192056,-0.002305,0.003000,0.249982,0,0);}
.m71_c00471{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);}
.m4f_c00471{transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193185,0.000000,0.000000,0.250000,0,0);}
.m87_c00471{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);}
.me2_c00471{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);}
.m18_c00471{transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);-ms-transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194746,-0.002337,0.003000,0.249982,0,0);}
.ma5_c00471{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);}
.ma4_c00471{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);}
.m94_c00471{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);}
.m8_c00471{transform:matrix(0.195395,-0.001954,0.002500,0.249988,0,0);-ms-transform:matrix(0.195395,-0.001954,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195395,-0.001954,0.002500,0.249988,0,0);}
.mbf_c00471{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);}
.m115_c00471{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);}
.m7f_c00471{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);}
.m117_c00471{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);}
.m127_c00471{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);}
.mbb_c00471{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);}
.m3e_c00471{transform:matrix(0.197539,-0.001580,0.002000,0.249992,0,0);-ms-transform:matrix(0.197539,-0.001580,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197539,-0.001580,0.002000,0.249992,0,0);}
.md_c00471{transform:matrix(0.197600,-0.001976,0.002500,0.249988,0,0);-ms-transform:matrix(0.197600,-0.001976,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197600,-0.001976,0.002500,0.249988,0,0);}
.m106_c00471{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);}
.m96_c00471{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_c00471{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);}
.md1_c00471{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);}
.mbd_c00471{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);}
.m37_c00471{transform:matrix(0.202789,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202789,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202789,-0.001622,0.002000,0.249992,0,0);}
.m30_c00471{transform:matrix(0.203177,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203177,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203177,-0.001829,0.002250,0.249990,0,0);}
.mea_c00471{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);}
.m8f_c00471{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);}
.mf1_c00471{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);}
.mfd_c00471{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);}
.med_c00471{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);}
.m85_c00471{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);}
.m41_c00471{transform:matrix(0.205783,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205783,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205783,-0.001646,0.002000,0.249992,0,0);}
.m52_c00471{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);}
.m28_c00471{transform:matrix(0.206328,-0.003920,0.004749,0.249955,0,0);-ms-transform:matrix(0.206328,-0.003920,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206328,-0.003920,0.004749,0.249955,0,0);}
.m55_c00471{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);}
.mc_c00471{transform:matrix(0.207380,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207380,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207380,-0.002074,0.002500,0.249988,0,0);}
.md2_c00471{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);}
.mc8_c00471{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);}
.m6c_c00471{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);}
.m3c_c00471{transform:matrix(0.209518,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209518,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209518,-0.001676,0.002000,0.249992,0,0);}
.m4c_c00471{transform:matrix(0.209933,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209933,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209933,-0.001679,0.002000,0.249992,0,0);}
.m98_c00471{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);}
.m8e_c00471{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);}
.md0_c00471{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);}
.m7_c00471{transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);-ms-transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211109,-0.002111,0.002500,0.249988,0,0);}
.mc7_c00471{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);}
.m6d_c00471{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);}
.mac_c00471{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);}
.m11c_c00471{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);}
.mcf_c00471{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);}
.mba_c00471{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);}
.m1b_c00471{transform:matrix(0.214455,-0.002573,0.003000,0.249982,0,0);-ms-transform:matrix(0.214455,-0.002573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214455,-0.002573,0.003000,0.249982,0,0);}
.m93_c00471{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);}
.ma0_c00471{transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);}
.m47_c00471{transform:matrix(0.215098,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215098,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215098,-0.001721,0.002000,0.249992,0,0);}
.m61_c00471{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);}
.m5d_c00471{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);}
.m69_c00471{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);}
.m4a_c00471{transform:matrix(0.216693,-0.001734,0.002000,0.249992,0,0);-ms-transform:matrix(0.216693,-0.001734,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216693,-0.001734,0.002000,0.249992,0,0);}
.m9_c00471{transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);-ms-transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);}
.m34_c00471{transform:matrix(0.217033,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.217033,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217033,-0.001736,0.002000,0.249992,0,0);}
.m7d_c00471{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m70_c00471{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);}
.m95_c00471{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);}
.m2a_c00471{transform:matrix(0.217831,-0.001960,0.002250,0.249990,0,0);-ms-transform:matrix(0.217831,-0.001960,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217831,-0.001960,0.002250,0.249990,0,0);}
.m59_c00471{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);}
.mee_c00471{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);}
.m123_c00471{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);}
.md5_c00471{transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.219914,-0.002639,0.003000,0.249982,0,0);-ms-transform:matrix(0.219914,-0.002639,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219914,-0.002639,0.003000,0.249982,0,0);}
.m118_c00471{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);}
.meb_c00471{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);}
.m1a_c00471{transform:matrix(0.221139,-0.002654,0.003000,0.249982,0,0);-ms-transform:matrix(0.221139,-0.002654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221139,-0.002654,0.003000,0.249982,0,0);}
.m111_c00471{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);}
.m8a_c00471{transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);}
.m97_c00471{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);}
.m7c_c00471{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);}
.m6f_c00471{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);}
.mb9_c00471{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);}
.ma6_c00471{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);}
.m0_c00471{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m45_c00471{transform:matrix(0.223253,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223253,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223253,-0.001786,0.002000,0.249992,0,0);}
.mb2_c00471{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);}
.mc5_c00471{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);}
.mf6_c00471{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);}
.m72_c00471{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);}
.m12a_c00471{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);}
.md3_c00471{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);}
.m3a_c00471{transform:matrix(0.225373,-0.001803,0.002000,0.249992,0,0);-ms-transform:matrix(0.225373,-0.001803,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225373,-0.001803,0.002000,0.249992,0,0);}
.mcc_c00471{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);}
.m64_c00471{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);}
.m43_c00471{transform:matrix(0.227163,-0.001817,0.002000,0.249992,0,0);-ms-transform:matrix(0.227163,-0.001817,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227163,-0.001817,0.002000,0.249992,0,0);}
.m7b_c00471{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);}
.mb7_c00471{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);}
.ma7_c00471{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);}
.m6e_c00471{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);}
.m22_c00471{transform:matrix(0.230283,-0.004375,0.004749,0.249955,0,0);-ms-transform:matrix(0.230283,-0.004375,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230283,-0.004375,0.004749,0.249955,0,0);}
.m76_c00471{transform:matrix(0.230665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230665,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.231263,-0.002775,0.003000,0.249982,0,0);-ms-transform:matrix(0.231263,-0.002775,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231263,-0.002775,0.003000,0.249982,0,0);}
.m67_c00471{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);}
.mce_c00471{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.me9_c00471{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);}
.m9f_c00471{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);}
.m10e_c00471{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);}
.m5f_c00471{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);}
.me7_c00471{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);}
.mca_c00471{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.237982,-0.004522,0.004749,0.249955,0,0);-ms-transform:matrix(0.237982,-0.004522,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237982,-0.004522,0.004749,0.249955,0,0);}
.m75_c00471{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.m103_c00471{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);}
.md4_c00471{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);}
.mcd_c00471{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);}
.m8b_c00471{transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);}
.m9a_c00471{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);}
.m81_c00471{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);}
.m10d_c00471{transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);}
.m109_c00471{transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241810,0.000000,0.000000,0.250000,0,0);}
.md6_c00471{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);}
.mbe_c00471{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);}
.m78_c00471{transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);}
.md9_c00471{transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);}
.m116_c00471{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);}
.me6_c00471{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.mb0_c00471{transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);}
.m68_c00471{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);}
.m74_c00471{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m83_c00471{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);}
.mc0_c00471{transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);}
.m104_c00471{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);}
.m65_c00471{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);}
.m53_c00471{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.249387,-0.002993,0.003000,0.249982,0,0);-ms-transform:matrix(0.249387,-0.002993,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249387,-0.002993,0.003000,0.249982,0,0);}
.m11_c00471{transform:matrix(0.249482,-0.002994,0.003000,0.249982,0,0);-ms-transform:matrix(0.249482,-0.002994,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249482,-0.002994,0.003000,0.249982,0,0);}
.maf_c00471{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.mff_c00471{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m102_c00471{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);}
.m114_c00471{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);}
.m5e_c00471{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);}
.mc1_c00471{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.m108_c00471{transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);}
.m105_c00471{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);}
.mec_c00471{transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256395,0.000000,0.000000,0.250000,0,0);}
.m84_c00471{transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00471{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);}
.m90_c00471{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.mc6_c00471{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);}
.m1d_c00471{transform:matrix(0.261866,-0.003142,0.003000,0.249982,0,0);-ms-transform:matrix(0.261866,-0.003142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261866,-0.003142,0.003000,0.249982,0,0);}
.mb8_c00471{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.262346,-0.003148,0.003000,0.249982,0,0);-ms-transform:matrix(0.262346,-0.003148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262346,-0.003148,0.003000,0.249982,0,0);}
.m13_c00471{transform:matrix(0.262351,-0.003148,0.003000,0.249982,0,0);-ms-transform:matrix(0.262351,-0.003148,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262351,-0.003148,0.003000,0.249982,0,0);}
.mdc_c00471{transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262690,0.000000,0.000000,0.250000,0,0);}
.m128_c00471{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);}
.m101_c00471{transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267310,0.000000,0.000000,0.250000,0,0);}
.m4b_c00471{transform:matrix(0.269661,-0.002157,0.002000,0.249992,0,0);-ms-transform:matrix(0.269661,-0.002157,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269661,-0.002157,0.002000,0.249992,0,0);}
.me8_c00471{transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);}
.m66_c00471{transform:matrix(0.271885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271885,0.000000,0.000000,0.250000,0,0);}
.m44_c00471{transform:matrix(0.273366,-0.002187,0.002000,0.249992,0,0);-ms-transform:matrix(0.273366,-0.002187,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273366,-0.002187,0.002000,0.249992,0,0);}
.mb5_c00471{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.mef_c00471{transform:matrix(0.279825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279825,0.000000,0.000000,0.250000,0,0);}
.m10c_c00471{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);}
.md7_c00471{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m99_c00471{transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293145,0.000000,0.000000,0.250000,0,0);}
.md8_c00471{transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293400,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.304408,-0.003653,0.003000,0.249982,0,0);-ms-transform:matrix(0.304408,-0.003653,0.003000,0.249982,0,0);-webkit-transform:matrix(0.304408,-0.003653,0.003000,0.249982,0,0);}
.m73_c00471{transform:matrix(0.309325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309325,0.000000,0.000000,0.250000,0,0);}
.mad_c00471{transform:matrix(0.314670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314670,0.000000,0.000000,0.250000,0,0);}
.m46_c00471{transform:matrix(0.318180,-0.002545,0.002000,0.249992,0,0);-ms-transform:matrix(0.318180,-0.002545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.318180,-0.002545,0.002000,0.249992,0,0);}
.m119_c00471{transform:matrix(0.343420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343420,0.000000,0.000000,0.250000,0,0);}
.m100_c00471{transform:matrix(0.344140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344140,0.000000,0.000000,0.250000,0,0);}
.m79_c00471{transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{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);}
.m3_c00471{transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353085,0.000000,0.000000,0.250000,0,0);}
.mbc_c00471{transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.360555,-0.006851,0.004749,0.249955,0,0);-ms-transform:matrix(0.360555,-0.006851,0.004749,0.249955,0,0);-webkit-transform:matrix(0.360555,-0.006851,0.004749,0.249955,0,0);}
.m10b_c00471{transform:matrix(0.377215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377215,0.000000,0.000000,0.250000,0,0);}
.mb6_c00471{transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377425,0.000000,0.000000,0.250000,0,0);}
.mf7_c00471{transform:matrix(0.378580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00471{transform:matrix(0.389645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389645,0.000000,0.000000,0.250000,0,0);}
.mdf_c00471{transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.450937,-0.004058,0.002250,0.249990,0,0);-ms-transform:matrix(0.450937,-0.004058,0.002250,0.249990,0,0);-webkit-transform:matrix(0.450937,-0.004058,0.002250,0.249990,0,0);}
.mde_c00471{transform:matrix(0.466820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466820,0.000000,0.000000,0.250000,0,0);}
.mc4_c00471{transform:matrix(0.471370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471370,0.000000,0.000000,0.250000,0,0);}
.mc3_c00471{transform:matrix(0.475080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475080,0.000000,0.000000,0.250000,0,0);}
.m122_c00471{transform:matrix(0.657405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00471{transform:matrix(0.682730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682730,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.757362,-0.007574,0.002500,0.249988,0,0);-ms-transform:matrix(0.757362,-0.007574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.757362,-0.007574,0.002500,0.249988,0,0);}
.mdd_c00471{transform:matrix(0.795980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795980,0.000000,0.000000,0.250000,0,0);}
.mfe_c00471{transform:matrix(0.812495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812495,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(1.028319,-0.010283,0.002500,0.249988,0,0);-ms-transform:matrix(1.028319,-0.010283,0.002500,0.249988,0,0);-webkit-transform:matrix(1.028319,-0.010283,0.002500,0.249988,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;}
.fs17_c00471{font-size:44.100000px;}
.fs18_c00471{font-size:49.350000px;}
.fs14_c00471{font-size:50.400000px;}
.fs12_c00471{font-size:51.450000px;}
.fs15_c00471{font-size:52.500000px;}
.fs16_c00471{font-size:54.600000px;}
.fs13_c00471{font-size:55.650000px;}
.fsf_c00471{font-size:63.000000px;}
.fs11_c00471{font-size:66.150000px;}
.fse_c00471{font-size:67.200000px;}
.fsc_c00471{font-size:68.250000px;}
.fs4_c00471{font-size:68.254914px;}
.fs6_c00471{font-size:69.302807px;}
.fs10_c00471{font-size:70.350000px;}
.fs9_c00471{font-size:70.352251px;}
.fs2_c00471{font-size:70.353517px;}
.fs5_c00471{font-size:70.362697px;}
.fsb_c00471{font-size:72.450000px;}
.fs8_c00471{font-size:72.452318px;}
.fs3_c00471{font-size:72.455216px;}
.fsa_c00471{font-size:73.500000px;}
.fsd_c00471{font-size:74.550000px;}
.fs7_c00471{font-size:74.552386px;}
.fs0_c00471{font-size:88.200000px;}
.fs1_c00471{font-size:98.717814px;}
.y0_c00471{bottom:0.000000px;}
.y5f_c00471{bottom:146.641500px;}
.y5e_c00471{bottom:165.333000px;}
.y5d_c00471{bottom:183.084000px;}
.y5c_c00471{bottom:201.690000px;}
.y5b_c00471{bottom:219.217500px;}
.y5a_c00471{bottom:237.571500px;}
.y59_c00471{bottom:254.829000px;}
.y58_c00471{bottom:272.944500px;}
.y57_c00471{bottom:311.493000px;}
.y56_c00471{bottom:334.746000px;}
.y55_c00471{bottom:357.708000px;}
.y54_c00471{bottom:380.281500px;}
.y53_c00471{bottom:403.323000px;}
.y52_c00471{bottom:426.355500px;}
.y51_c00471{bottom:449.067000px;}
.y50_c00471{bottom:471.904500px;}
.y4f_c00471{bottom:494.985000px;}
.y4e_c00471{bottom:517.798500px;}
.y4d_c00471{bottom:539.991000px;}
.y45_c00471{bottom:562.141128px;}
.y46_c00471{bottom:562.619196px;}
.y47_c00471{bottom:562.970544px;}
.y48_c00471{bottom:563.389908px;}
.y49_c00471{bottom:563.969568px;}
.y4a_c00471{bottom:564.144528px;}
.y4b_c00471{bottom:564.428376px;}
.y4c_c00471{bottom:564.835536px;}
.y3c_c00471{bottom:584.820648px;}
.y3d_c00471{bottom:585.135252px;}
.y3e_c00471{bottom:585.377952px;}
.y3f_c00471{bottom:585.916824px;}
.y40_c00471{bottom:586.642260px;}
.y41_c00471{bottom:586.979436px;}
.y42_c00471{bottom:587.909856px;}
.y43_c00471{bottom:588.098172px;}
.y44_c00471{bottom:588.659424px;}
.y32_c00471{bottom:608.580000px;}
.y33_c00471{bottom:608.884632px;}
.y34_c00471{bottom:609.215136px;}
.y35_c00471{bottom:609.498468px;}
.y36_c00471{bottom:609.960480px;}
.y37_c00471{bottom:610.483200px;}
.y38_c00471{bottom:611.068668px;}
.y39_c00471{bottom:611.338464px;}
.y3a_c00471{bottom:611.569608px;}
.y3b_c00471{bottom:611.994384px;}
.y28_c00471{bottom:630.451500px;}
.y29_c00471{bottom:630.677477px;}
.y2a_c00471{bottom:630.915670px;}
.y2b_c00471{bottom:631.158643px;}
.y2c_c00471{bottom:631.343405px;}
.y2d_c00471{bottom:631.788121px;}
.y2e_c00471{bottom:632.082287px;}
.y2f_c00471{bottom:632.799150px;}
.y30_c00471{bottom:633.544606px;}
.y31_c00471{bottom:633.579369px;}
.y1f_c00471{bottom:652.864500px;}
.y20_c00471{bottom:653.291772px;}
.y21_c00471{bottom:654.527304px;}
.y22_c00471{bottom:655.091889px;}
.y23_c00471{bottom:656.055873px;}
.y24_c00471{bottom:656.430106px;}
.y25_c00471{bottom:657.012134px;}
.y26_c00471{bottom:657.543801px;}
.y27_c00471{bottom:659.912436px;}
.y18_c00471{bottom:674.999646px;}
.y19_c00471{bottom:675.994920px;}
.y1a_c00471{bottom:676.293018px;}
.y1b_c00471{bottom:677.079420px;}
.y1c_c00471{bottom:677.575266px;}
.y1d_c00471{bottom:678.007248px;}
.y1e_c00471{bottom:678.739362px;}
.yd_c00471{bottom:698.761500px;}
.ye_c00471{bottom:699.198900px;}
.yf_c00471{bottom:699.824220px;}
.y10_c00471{bottom:700.102338px;}
.y11_c00471{bottom:700.667682px;}
.y12_c00471{bottom:701.214342px;}
.y13_c00471{bottom:701.509308px;}
.y14_c00471{bottom:701.784798px;}
.y15_c00471{bottom:702.228534px;}
.y16_c00471{bottom:702.519450px;}
.y17_c00471{bottom:702.876444px;}
.y4_c00471{bottom:722.212500px;}
.y5_c00471{bottom:723.193065px;}
.y6_c00471{bottom:723.352335px;}
.y7_c00471{bottom:723.695250px;}
.y8_c00471{bottom:724.664745px;}
.y9_c00471{bottom:725.460720px;}
.ya_c00471{bottom:725.790570px;}
.yb_c00471{bottom:726.001155px;}
.yc_c00471{bottom:726.149655px;}
.y2_c00471{bottom:760.059000px;}
.y3_c00471{bottom:762.874173px;}
.y1_c00471{bottom:801.115500px;}
.h19_c00471{height:44.100000px;}
.h1a_c00471{height:49.350000px;}
.h16_c00471{height:50.400000px;}
.h14_c00471{height:51.450000px;}
.h17_c00471{height:52.500000px;}
.h18_c00471{height:54.600000px;}
.h15_c00471{height:55.650000px;}
.h11_c00471{height:63.000000px;}
.h13_c00471{height:66.150000px;}
.h10_c00471{height:67.200000px;}
.he_c00471{height:68.250000px;}
.h6_c00471{height:68.254914px;}
.h8_c00471{height:69.302807px;}
.h12_c00471{height:70.350000px;}
.hb_c00471{height:70.352251px;}
.h4_c00471{height:70.353517px;}
.h7_c00471{height:70.362697px;}
.hd_c00471{height:72.450000px;}
.ha_c00471{height:72.452318px;}
.h5_c00471{height:72.455216px;}
.hc_c00471{height:73.500000px;}
.hf_c00471{height:74.550000px;}
.h9_c00471{height:74.552386px;}
.h2_c00471{height:88.200000px;}
.h3_c00471{height:98.717814px;}
.h0_c00471{height:1008.450000px;}
.h1_c00471{height:1008.750000px;}
.w0_c00471{width:745.470000px;}
.w1_c00471{width:745.500000px;}
.x0_c00471{left:0.000000px;}
.x8c_c00471{left:203.580000px;}
.x84_c00471{left:205.200000px;}
.x7_c00471{left:211.234500px;}
.x94_c00471{left:220.320000px;}
.x99_c00471{left:223.560000px;}
.x1a_c00471{left:226.686162px;}
.x68_c00471{left:228.150000px;}
.xa6_c00471{left:229.770000px;}
.x8d_c00471{left:233.010000px;}
.x76_c00471{left:234.900000px;}
.x10_c00471{left:236.682000px;}
.x1f_c00471{left:238.122000px;}
.x4c_c00471{left:239.490000px;}
.x85_c00471{left:251.100000px;}
.x8e_c00471{left:252.450000px;}
.x48_c00471{left:255.690000px;}
.x20_c00471{left:260.610000px;}
.x26_c00471{left:263.367000px;}
.x5a_c00471{left:265.950000px;}
.x7a_c00471{left:267.030000px;}
.x86_c00471{left:269.460000px;}
.x73_c00471{left:271.350000px;}
.x11_c00471{left:273.132000px;}
.x2e_c00471{left:276.312000px;}
.x42_c00471{left:278.100000px;}
.x9a_c00471{left:280.530000px;}
.x35_c00471{left:284.165544px;}
.x3b_c00471{left:285.753204px;}
.x27_c00471{left:289.833000px;}
.x4d_c00471{left:294.030000px;}
.x87_c00471{left:295.110000px;}
.x6f_c00471{left:296.730000px;}
.x74_c00471{left:301.050000px;}
.x69_c00471{left:303.750000px;}
.x77_c00471{left:305.910000px;}
.xa1_c00471{left:307.800000px;}
.x8_c00471{left:309.291000px;}
.x63_c00471{left:311.040000px;}
.x4e_c00471{left:312.660000px;}
.x43_c00471{left:315.090000px;}
.x28_c00471{left:316.830000px;}
.x3c_c00471{left:320.858640px;}
.x7b_c00471{left:324.000000px;}
.x9_c00471{left:325.218000px;}
.x36_c00471{left:329.023104px;}
.x49_c00471{left:332.640000px;}
.x1b_c00471{left:334.467162px;}
.x9f_c00471{left:337.230000px;}
.x1_c00471{left:338.310000px;}
.x5f_c00471{left:339.930000px;}
.x12_c00471{left:348.418500px;}
.x5_c00471{left:349.882500px;}
.x2f_c00471{left:353.041500px;}
.x78_c00471{left:354.240000px;}
.x21_c00471{left:355.353000px;}
.x4f_c00471{left:358.290000px;}
.xa_c00471{left:359.509500px;}
.x3d_c00471{left:362.778468px;}
.xa7_c00471{left:368.010000px;}
.x64_c00471{left:371.250000px;}
.x6a_c00471{left:372.330000px;}
.x70_c00471{left:374.220000px;}
.x7c_c00471{left:376.380000px;}
.x53_c00471{left:379.620000px;}
.x29_c00471{left:386.772000px;}
.x37_c00471{left:389.513172px;}
.x5b_c00471{left:391.230000px;}
.x2_c00471{left:393.120000px;}
.x13_c00471{left:395.530500px;}
.x1c_c00471{left:400.000662px;}
.x54_c00471{left:401.220000px;}
.x60_c00471{left:403.920000px;}
.x22_c00471{left:406.089000px;}
.xa2_c00471{left:407.970000px;}
.x30_c00471{left:410.793000px;}
.x50_c00471{left:414.450000px;}
.x38_c00471{left:417.596772px;}
.x2a_c00471{left:419.457000px;}
.x3e_c00471{left:420.797544px;}
.x3_c00471{left:422.010000px;}
.x61_c00471{left:423.630000px;}
.x23_c00471{left:425.785500px;}
.x75_c00471{left:428.760000px;}
.x71_c00471{left:432.540000px;}
.x65_c00471{left:434.700000px;}
.x5c_c00471{left:436.590000px;}
.x3f_c00471{left:438.354768px;}
.x14_c00471{left:441.085500px;}
.x55_c00471{left:442.530000px;}
.x88_c00471{left:445.500000px;}
.x6b_c00471{left:447.660000px;}
.x7d_c00471{left:452.790000px;}
.x44_c00471{left:454.950000px;}
.xb_c00471{left:456.459000px;}
.x8f_c00471{left:458.190000px;}
.x5d_c00471{left:461.160000px;}
.x15_c00471{left:465.666000px;}
.x40_c00471{left:466.710312px;}
.xa3_c00471{left:472.230000px;}
.x95_c00471{left:473.310000px;}
.x31_c00471{left:476.133000px;}
.x1d_c00471{left:477.319662px;}
.x89_c00471{left:478.980000px;}
.x62_c00471{left:480.330000px;}
.x9b_c00471{left:481.680000px;}
.x24_c00471{left:484.401000px;}
.x16_c00471{left:488.623500px;}
.x6c_c00471{left:491.400000px;}
.x45_c00471{left:492.480000px;}
.x4_c00471{left:495.180000px;}
.x6_c00471{left:498.049500px;}
.x2b_c00471{left:499.108500px;}
.x66_c00471{left:501.120000px;}
.x56_c00471{left:502.200000px;}
.x96_c00471{left:505.710000px;}
.x41_c00471{left:507.479664px;}
.x72_c00471{left:508.950000px;}
.x39_c00471{left:510.748284px;}
.x8a_c00471{left:511.920000px;}
.x51_c00471{left:513.000000px;}
.x79_c00471{left:517.050000px;}
.x90_c00471{left:518.940000px;}
.x5e_c00471{left:522.450000px;}
.x17_c00471{left:525.601500px;}
.x8b_c00471{left:528.390000px;}
.xa8_c00471{left:530.010000px;}
.x91_c00471{left:533.250000px;}
.xc_c00471{left:536.056500px;}
.x1e_c00471{left:538.329162px;}
.x46_c00471{left:539.460000px;}
.x67_c00471{left:541.620000px;}
.xa4_c00471{left:544.860000px;}
.x4a_c00471{left:546.210000px;}
.x52_c00471{left:547.290000px;}
.x18_c00471{left:549.844500px;}
.x7e_c00471{left:553.770000px;}
.x9c_c00471{left:556.200000px;}
.x3a_c00471{left:557.465784px;}
.x92_c00471{left:559.980000px;}
.x7f_c00471{left:567.810000px;}
.xd_c00471{left:569.041500px;}
.x47_c00471{left:571.050000px;}
.x57_c00471{left:576.450000px;}
.x19_c00471{left:579.594000px;}
.x2c_c00471{left:581.937000px;}
.x32_c00471{left:583.041000px;}
.x2d_c00471{left:585.799500px;}
.x4b_c00471{left:588.870000px;}
.xe_c00471{left:590.100000px;}
.x6d_c00471{left:596.700000px;}
.xa5_c00471{left:600.210000px;}
.xf_c00471{left:604.950000px;}
.xa9_c00471{left:606.960000px;}
.x25_c00471{left:609.066000px;}
.x33_c00471{left:611.934000px;}
.x6e_c00471{left:619.380000px;}
.x80_c00471{left:625.320000px;}
.x58_c00471{left:629.640000px;}
.x81_c00471{left:638.010000px;}
.x9d_c00471{left:642.330000px;}
.x59_c00471{left:647.190000px;}
.x82_c00471{left:654.480000px;}
.x97_c00471{left:657.180000px;}
.xaa_c00471{left:658.530000px;}
.x34_c00471{left:665.031000px;}
.x93_c00471{left:674.730000px;}
.xa0_c00471{left:680.940000px;}
.x83_c00471{left:690.930000px;}
.x9e_c00471{left:695.520000px;}
.x98_c00471{left:720.360000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
.fs17_c00471{font-size:39.200000pt;}
.fs18_c00471{font-size:43.866667pt;}
.fs14_c00471{font-size:44.800000pt;}
.fs12_c00471{font-size:45.733333pt;}
.fs15_c00471{font-size:46.666667pt;}
.fs16_c00471{font-size:48.533333pt;}
.fs13_c00471{font-size:49.466667pt;}
.fsf_c00471{font-size:56.000000pt;}
.fs11_c00471{font-size:58.800000pt;}
.fse_c00471{font-size:59.733333pt;}
.fsc_c00471{font-size:60.666667pt;}
.fs4_c00471{font-size:60.671035pt;}
.fs6_c00471{font-size:61.602495pt;}
.fs10_c00471{font-size:62.533333pt;}
.fs9_c00471{font-size:62.535334pt;}
.fs2_c00471{font-size:62.536460pt;}
.fs5_c00471{font-size:62.544620pt;}
.fsb_c00471{font-size:64.400000pt;}
.fs8_c00471{font-size:64.402061pt;}
.fs3_c00471{font-size:64.404637pt;}
.fsa_c00471{font-size:65.333333pt;}
.fsd_c00471{font-size:66.266667pt;}
.fs7_c00471{font-size:66.268787pt;}
.fs0_c00471{font-size:78.400000pt;}
.fs1_c00471{font-size:87.749168pt;}
.y0_c00471{bottom:0.000000pt;}
.y5f_c00471{bottom:130.348000pt;}
.y5e_c00471{bottom:146.962667pt;}
.y5d_c00471{bottom:162.741333pt;}
.y5c_c00471{bottom:179.280000pt;}
.y5b_c00471{bottom:194.860000pt;}
.y5a_c00471{bottom:211.174667pt;}
.y59_c00471{bottom:226.514667pt;}
.y58_c00471{bottom:242.617333pt;}
.y57_c00471{bottom:276.882667pt;}
.y56_c00471{bottom:297.552000pt;}
.y55_c00471{bottom:317.962667pt;}
.y54_c00471{bottom:338.028000pt;}
.y53_c00471{bottom:358.509333pt;}
.y52_c00471{bottom:378.982667pt;}
.y51_c00471{bottom:399.170667pt;}
.y50_c00471{bottom:419.470667pt;}
.y4f_c00471{bottom:439.986667pt;}
.y4e_c00471{bottom:460.265333pt;}
.y4d_c00471{bottom:479.992000pt;}
.y45_c00471{bottom:499.681003pt;}
.y46_c00471{bottom:500.105952pt;}
.y47_c00471{bottom:500.418261pt;}
.y48_c00471{bottom:500.791029pt;}
.y49_c00471{bottom:501.306283pt;}
.y4a_c00471{bottom:501.461803pt;}
.y4b_c00471{bottom:501.714112pt;}
.y4c_c00471{bottom:502.076032pt;}
.y3c_c00471{bottom:519.840576pt;}
.y3d_c00471{bottom:520.120224pt;}
.y3e_c00471{bottom:520.335957pt;}
.y3f_c00471{bottom:520.814955pt;}
.y40_c00471{bottom:521.459787pt;}
.y41_c00471{bottom:521.759499pt;}
.y42_c00471{bottom:522.586539pt;}
.y43_c00471{bottom:522.753931pt;}
.y44_c00471{bottom:523.252821pt;}
.y32_c00471{bottom:540.960000pt;}
.y33_c00471{bottom:541.230784pt;}
.y34_c00471{bottom:541.524565pt;}
.y35_c00471{bottom:541.776416pt;}
.y36_c00471{bottom:542.187093pt;}
.y37_c00471{bottom:542.651733pt;}
.y38_c00471{bottom:543.172149pt;}
.y39_c00471{bottom:543.411968pt;}
.y3a_c00471{bottom:543.617429pt;}
.y3b_c00471{bottom:543.995008pt;}
.y28_c00471{bottom:560.401333pt;}
.y29_c00471{bottom:560.602201pt;}
.y2a_c00471{bottom:560.813929pt;}
.y2b_c00471{bottom:561.029905pt;}
.y2c_c00471{bottom:561.194137pt;}
.y2d_c00471{bottom:561.589441pt;}
.y2e_c00471{bottom:561.850921pt;}
.y2f_c00471{bottom:562.488133pt;}
.y30_c00471{bottom:563.150761pt;}
.y31_c00471{bottom:563.181661pt;}
.y1f_c00471{bottom:580.324000pt;}
.y20_c00471{bottom:580.703797pt;}
.y21_c00471{bottom:581.802048pt;}
.y22_c00471{bottom:582.303901pt;}
.y23_c00471{bottom:583.160776pt;}
.y24_c00471{bottom:583.493428pt;}
.y25_c00471{bottom:584.010785pt;}
.y26_c00471{bottom:584.483379pt;}
.y27_c00471{bottom:586.588832pt;}
.y18_c00471{bottom:599.999685pt;}
.y19_c00471{bottom:600.884373pt;}
.y1a_c00471{bottom:601.149349pt;}
.y1b_c00471{bottom:601.848373pt;}
.y1c_c00471{bottom:602.289125pt;}
.y1d_c00471{bottom:602.673109pt;}
.y1e_c00471{bottom:603.323877pt;}
.yd_c00471{bottom:621.121333pt;}
.ye_c00471{bottom:621.510133pt;}
.yf_c00471{bottom:622.065973pt;}
.y10_c00471{bottom:622.313189pt;}
.y11_c00471{bottom:622.815717pt;}
.y12_c00471{bottom:623.301637pt;}
.y13_c00471{bottom:623.563829pt;}
.y14_c00471{bottom:623.808709pt;}
.y15_c00471{bottom:624.203141pt;}
.y16_c00471{bottom:624.461733pt;}
.y17_c00471{bottom:624.779061pt;}
.y4_c00471{bottom:641.966667pt;}
.y5_c00471{bottom:642.838280pt;}
.y6_c00471{bottom:642.979853pt;}
.y7_c00471{bottom:643.284667pt;}
.y8_c00471{bottom:644.146440pt;}
.y9_c00471{bottom:644.853973pt;}
.ya_c00471{bottom:645.147173pt;}
.yb_c00471{bottom:645.334360pt;}
.yc_c00471{bottom:645.466360pt;}
.y2_c00471{bottom:675.608000pt;}
.y3_c00471{bottom:678.110376pt;}
.y1_c00471{bottom:712.102667pt;}
.h19_c00471{height:39.200000pt;}
.h1a_c00471{height:43.866667pt;}
.h16_c00471{height:44.800000pt;}
.h14_c00471{height:45.733333pt;}
.h17_c00471{height:46.666667pt;}
.h18_c00471{height:48.533333pt;}
.h15_c00471{height:49.466667pt;}
.h11_c00471{height:56.000000pt;}
.h13_c00471{height:58.800000pt;}
.h10_c00471{height:59.733333pt;}
.he_c00471{height:60.666667pt;}
.h6_c00471{height:60.671035pt;}
.h8_c00471{height:61.602495pt;}
.h12_c00471{height:62.533333pt;}
.hb_c00471{height:62.535334pt;}
.h4_c00471{height:62.536460pt;}
.h7_c00471{height:62.544620pt;}
.hd_c00471{height:64.400000pt;}
.ha_c00471{height:64.402061pt;}
.h5_c00471{height:64.404637pt;}
.hc_c00471{height:65.333333pt;}
.hf_c00471{height:66.266667pt;}
.h9_c00471{height:66.268787pt;}
.h2_c00471{height:78.400000pt;}
.h3_c00471{height:87.749168pt;}
.h0_c00471{height:896.400000pt;}
.h1_c00471{height:896.666667pt;}
.w0_c00471{width:662.640000pt;}
.w1_c00471{width:662.666667pt;}
.x0_c00471{left:0.000000pt;}
.x8c_c00471{left:180.960000pt;}
.x84_c00471{left:182.400000pt;}
.x7_c00471{left:187.764000pt;}
.x94_c00471{left:195.840000pt;}
.x99_c00471{left:198.720000pt;}
.x1a_c00471{left:201.498811pt;}
.x68_c00471{left:202.800000pt;}
.xa6_c00471{left:204.240000pt;}
.x8d_c00471{left:207.120000pt;}
.x76_c00471{left:208.800000pt;}
.x10_c00471{left:210.384000pt;}
.x1f_c00471{left:211.664000pt;}
.x4c_c00471{left:212.880000pt;}
.x85_c00471{left:223.200000pt;}
.x8e_c00471{left:224.400000pt;}
.x48_c00471{left:227.280000pt;}
.x20_c00471{left:231.653333pt;}
.x26_c00471{left:234.104000pt;}
.x5a_c00471{left:236.400000pt;}
.x7a_c00471{left:237.360000pt;}
.x86_c00471{left:239.520000pt;}
.x73_c00471{left:241.200000pt;}
.x11_c00471{left:242.784000pt;}
.x2e_c00471{left:245.610667pt;}
.x42_c00471{left:247.200000pt;}
.x9a_c00471{left:249.360000pt;}
.x35_c00471{left:252.591595pt;}
.x3b_c00471{left:254.002848pt;}
.x27_c00471{left:257.629333pt;}
.x4d_c00471{left:261.360000pt;}
.x87_c00471{left:262.320000pt;}
.x6f_c00471{left:263.760000pt;}
.x74_c00471{left:267.600000pt;}
.x69_c00471{left:270.000000pt;}
.x77_c00471{left:271.920000pt;}
.xa1_c00471{left:273.600000pt;}
.x8_c00471{left:274.925333pt;}
.x63_c00471{left:276.480000pt;}
.x4e_c00471{left:277.920000pt;}
.x43_c00471{left:280.080000pt;}
.x28_c00471{left:281.626667pt;}
.x3c_c00471{left:285.207680pt;}
.x7b_c00471{left:288.000000pt;}
.x9_c00471{left:289.082667pt;}
.x36_c00471{left:292.464981pt;}
.x49_c00471{left:295.680000pt;}
.x1b_c00471{left:297.304144pt;}
.x9f_c00471{left:299.760000pt;}
.x1_c00471{left:300.720000pt;}
.x5f_c00471{left:302.160000pt;}
.x12_c00471{left:309.705333pt;}
.x5_c00471{left:311.006667pt;}
.x2f_c00471{left:313.814667pt;}
.x78_c00471{left:314.880000pt;}
.x21_c00471{left:315.869333pt;}
.x4f_c00471{left:318.480000pt;}
.xa_c00471{left:319.564000pt;}
.x3d_c00471{left:322.469749pt;}
.xa7_c00471{left:327.120000pt;}
.x64_c00471{left:330.000000pt;}
.x6a_c00471{left:330.960000pt;}
.x70_c00471{left:332.640000pt;}
.x7c_c00471{left:334.560000pt;}
.x53_c00471{left:337.440000pt;}
.x29_c00471{left:343.797333pt;}
.x37_c00471{left:346.233931pt;}
.x5b_c00471{left:347.760000pt;}
.x2_c00471{left:349.440000pt;}
.x13_c00471{left:351.582667pt;}
.x1c_c00471{left:355.556144pt;}
.x54_c00471{left:356.640000pt;}
.x60_c00471{left:359.040000pt;}
.x22_c00471{left:360.968000pt;}
.xa2_c00471{left:362.640000pt;}
.x30_c00471{left:365.149333pt;}
.x50_c00471{left:368.400000pt;}
.x38_c00471{left:371.197131pt;}
.x2a_c00471{left:372.850667pt;}
.x3e_c00471{left:374.042261pt;}
.x3_c00471{left:375.120000pt;}
.x61_c00471{left:376.560000pt;}
.x23_c00471{left:378.476000pt;}
.x75_c00471{left:381.120000pt;}
.x71_c00471{left:384.480000pt;}
.x65_c00471{left:386.400000pt;}
.x5c_c00471{left:388.080000pt;}
.x3f_c00471{left:389.648683pt;}
.x14_c00471{left:392.076000pt;}
.x55_c00471{left:393.360000pt;}
.x88_c00471{left:396.000000pt;}
.x6b_c00471{left:397.920000pt;}
.x7d_c00471{left:402.480000pt;}
.x44_c00471{left:404.400000pt;}
.xb_c00471{left:405.741333pt;}
.x8f_c00471{left:407.280000pt;}
.x5d_c00471{left:409.920000pt;}
.x15_c00471{left:413.925333pt;}
.x40_c00471{left:414.853611pt;}
.xa3_c00471{left:419.760000pt;}
.x95_c00471{left:420.720000pt;}
.x31_c00471{left:423.229333pt;}
.x1d_c00471{left:424.284144pt;}
.x89_c00471{left:425.760000pt;}
.x62_c00471{left:426.960000pt;}
.x9b_c00471{left:428.160000pt;}
.x24_c00471{left:430.578667pt;}
.x16_c00471{left:434.332000pt;}
.x6c_c00471{left:436.800000pt;}
.x45_c00471{left:437.760000pt;}
.x4_c00471{left:440.160000pt;}
.x6_c00471{left:442.710667pt;}
.x2b_c00471{left:443.652000pt;}
.x66_c00471{left:445.440000pt;}
.x56_c00471{left:446.400000pt;}
.x96_c00471{left:449.520000pt;}
.x41_c00471{left:451.093035pt;}
.x72_c00471{left:452.400000pt;}
.x39_c00471{left:453.998475pt;}
.x8a_c00471{left:455.040000pt;}
.x51_c00471{left:456.000000pt;}
.x79_c00471{left:459.600000pt;}
.x90_c00471{left:461.280000pt;}
.x5e_c00471{left:464.400000pt;}
.x17_c00471{left:467.201333pt;}
.x8b_c00471{left:469.680000pt;}
.xa8_c00471{left:471.120000pt;}
.x91_c00471{left:474.000000pt;}
.xc_c00471{left:476.494667pt;}
.x1e_c00471{left:478.514811pt;}
.x46_c00471{left:479.520000pt;}
.x67_c00471{left:481.440000pt;}
.xa4_c00471{left:484.320000pt;}
.x4a_c00471{left:485.520000pt;}
.x52_c00471{left:486.480000pt;}
.x18_c00471{left:488.750667pt;}
.x7e_c00471{left:492.240000pt;}
.x9c_c00471{left:494.400000pt;}
.x3a_c00471{left:495.525141pt;}
.x92_c00471{left:497.760000pt;}
.x7f_c00471{left:504.720000pt;}
.xd_c00471{left:505.814667pt;}
.x47_c00471{left:507.600000pt;}
.x57_c00471{left:512.400000pt;}
.x19_c00471{left:515.194667pt;}
.x2c_c00471{left:517.277333pt;}
.x32_c00471{left:518.258667pt;}
.x2d_c00471{left:520.710667pt;}
.x4b_c00471{left:523.440000pt;}
.xe_c00471{left:524.533333pt;}
.x6d_c00471{left:530.400000pt;}
.xa5_c00471{left:533.520000pt;}
.xf_c00471{left:537.733333pt;}
.xa9_c00471{left:539.520000pt;}
.x25_c00471{left:541.392000pt;}
.x33_c00471{left:543.941333pt;}
.x6e_c00471{left:550.560000pt;}
.x80_c00471{left:555.840000pt;}
.x58_c00471{left:559.680000pt;}
.x81_c00471{left:567.120000pt;}
.x9d_c00471{left:570.960000pt;}
.x59_c00471{left:575.280000pt;}
.x82_c00471{left:581.760000pt;}
.x97_c00471{left:584.160000pt;}
.xaa_c00471{left:585.360000pt;}
.x34_c00471{left:591.138667pt;}
.x93_c00471{left:599.760000pt;}
.xa0_c00471{left:605.280000pt;}
.x83_c00471{left:614.160000pt;}
.x9e_c00471{left:618.240000pt;}
.x98_c00471{left:640.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_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_2f6c0d3825a5d54c0b922384.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;}
.m87_c00472{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012990,0.000000,0.000000,0.250000,0,0);}
.m134_c00472{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.mc6_c00472{transform:matrix(0.023960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023960,0.000000,0.000000,0.250000,0,0);}
.mb9_c00472{transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);}
.m116_c00472{transform:matrix(0.043940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043940,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074085,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095840,0.000000,0.000000,0.250000,0,0);}
.mbd_c00472{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00472{transform:matrix(0.138480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138480,0.000000,0.000000,0.250000,0,0);}
.mba_c00472{transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140040,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{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);}
.m8_c00472{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);}
.m24_c00472{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);}
.m26_c00472{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);}
.m115_c00472{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);}
.m110_c00472{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);}
.ma9_c00472{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);}
.mc8_c00472{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);}
.m7f_c00472{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);}
.m59_c00472{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);}
.mc0_c00472{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);}
.m15_c00472{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);}
.m78_c00472{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);}
.m37_c00472{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);}
.m9d_c00472{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);}
.m3_c00472{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);}
.m20_c00472{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);}
.m1_c00472{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);}
.m7e_c00472{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);}
.m2a_c00472{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);}
.m14_c00472{transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{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);}
.med_c00472{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);}
.mb6_c00472{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);}
.m12f_c00472{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);}
.m79_c00472{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);}
.m32_c00472{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);}
.m12_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);}
.m3e_c00472{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);}
.m96_c00472{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.mcc_c00472{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);}
.m84_c00472{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);}
.m5e_c00472{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);}
.md_c00472{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);}
.m25_c00472{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);}
.m117_c00472{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);}
.ma5_c00472{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);}
.mdb_c00472{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);}
.me_c00472{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);}
.m7c_c00472{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);}
.m5c_c00472{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);}
.m71_c00472{transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);}
.mfa_c00472{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);}
.m75_c00472{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);}
.m30_c00472{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{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);}
.m74_c00472{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);}
.m2_c00472{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);}
.mb_c00472{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);}
.ma7_c00472{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);}
.mc3_c00472{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);}
.m39_c00472{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);}
.m72_c00472{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{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);}
.mde_c00472{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);}
.mc_c00472{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);}
.m81_c00472{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);}
.me7_c00472{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);}
.md7_c00472{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);}
.mab_c00472{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);}
.m5a_c00472{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);}
.ma0_c00472{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);}
.mce_c00472{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);}
.mb7_c00472{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);}
.m11_c00472{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{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);}
.m104_c00472{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);}
.m8e_c00472{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);}
.mf9_c00472{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{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);}
.mf_c00472{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);}
.mfc_c00472{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);}
.mc4_c00472{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);}
.ma_c00472{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);}
.mf1_c00472{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);}
.m7b_c00472{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);}
.m77_c00472{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);}
.m5_c00472{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);}
.m80_c00472{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);}
.me6_c00472{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);}
.m16_c00472{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.md5_c00472{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);}
.m132_c00472{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);}
.m18_c00472{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);}
.m126_c00472{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);}
.md0_c00472{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);}
.mbc_c00472{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);}
.m41_c00472{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);}
.m1b_c00472{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);}
.md2_c00472{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);}
.mec_c00472{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);}
.mc5_c00472{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);}
.m34_c00472{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);}
.m133_c00472{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);}
.m6f_c00472{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);}
.mdd_c00472{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);}
.m93_c00472{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);}
.m7a_c00472{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);}
.m6b_c00472{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);}
.mb0_c00472{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);}
.m44_c00472{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);}
.m10f_c00472{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);}
.m105_c00472{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);}
.mf6_c00472{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);}
.m9e_c00472{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);}
.m118_c00472{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);}
.m58_c00472{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);}
.m29_c00472{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);}
.mc7_c00472{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);}
.m73_c00472{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);}
.m4_c00472{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);}
.mb5_c00472{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);}
.m113_c00472{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);}
.m7d_c00472{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);}
.m7_c00472{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);}
.m1a_c00472{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);}
.m83_c00472{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);}
.ma4_c00472{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);}
.m111_c00472{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);}
.m1c_c00472{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);}
.m50_c00472{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);}
.m3d_c00472{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);}
.md3_c00472{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);}
.m91_c00472{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);}
.m12a_c00472{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);}
.mdc_c00472{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);}
.m8f_c00472{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);}
.m9_c00472{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);}
.m35_c00472{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);}
.m43_c00472{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);}
.m27_c00472{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);}
.m3f_c00472{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);}
.m6a_c00472{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);}
.m5d_c00472{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);}
.mcb_c00472{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);}
.m124_c00472{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);}
.mbf_c00472{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);}
.m106_c00472{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);}
.m5b_c00472{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);}
.m114_c00472{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);}
.m70_c00472{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);}
.m94_c00472{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);}
.m1f_c00472{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);}
.m21_c00472{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);}
.m51_c00472{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);}
.m125_c00472{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);}
.mf3_c00472{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);}
.m4a_c00472{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);}
.md6_c00472{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);}
.m62_c00472{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);}
.mfd_c00472{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);}
.mfb_c00472{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);}
.m8a_c00472{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);}
.m2e_c00472{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);}
.meb_c00472{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);}
.me2_c00472{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);}
.m86_c00472{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);}
.mb1_c00472{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);}
.mcd_c00472{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);}
.m10_c00472{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);}
.m64_c00472{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);}
.m66_c00472{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);}
.m63_c00472{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);}
.m89_c00472{transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{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);}
.m57_c00472{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);}
.m2b_c00472{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);}
.mee_c00472{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);}
.mb2_c00472{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);}
.maa_c00472{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);}
.m2f_c00472{transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217695,0.000000,0.000000,0.250000,0,0);}
.md4_c00472{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);}
.m95_c00472{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);}
.mf0_c00472{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);}
.m12d_c00472{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);}
.m61_c00472{transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221955,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{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);}
.m9b_c00472{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);}
.m128_c00472{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);}
.m107_c00472{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);}
.m67_c00472{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);}
.m9c_c00472{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.mf2_c00472{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);}
.ma8_c00472{transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224945,0.000000,0.000000,0.250000,0,0);}
.m3b_c00472{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);}
.mc1_c00472{transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225310,0.000000,0.000000,0.250000,0,0);}
.md8_c00472{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);}
.m8c_c00472{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);}
.m10d_c00472{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);}
.m4d_c00472{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);}
.m88_c00472{transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);}
.m119_c00472{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);}
.m13_c00472{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);}
.m54_c00472{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);}
.m9f_c00472{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);}
.mcf_c00472{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);}
.m112_c00472{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);}
.ma3_c00472{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);}
.m120_c00472{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{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);}
.me0_c00472{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);}
.m4f_c00472{transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);}
.m46_c00472{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);}
.m47_c00472{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);}
.m1e_c00472{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);}
.m4e_c00472{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);}
.md9_c00472{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);}
.mb4_c00472{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);}
.m97_c00472{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);}
.m6d_c00472{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);}
.m49_c00472{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.mca_c00472{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);}
.me9_c00472{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);}
.mda_c00472{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);}
.m82_c00472{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);}
.mdf_c00472{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);}
.mac_c00472{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);}
.me3_c00472{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);}
.m65_c00472{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);}
.m36_c00472{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{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);}
.mf7_c00472{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);}
.me5_c00472{transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);}
.mbe_c00472{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);}
.m127_c00472{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);}
.md1_c00472{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);}
.m10b_c00472{transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239690,0.000000,0.000000,0.250000,0,0);}
.m102_c00472{transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239810,0.000000,0.000000,0.250000,0,0);}
.m122_c00472{transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);}
.m129_c00472{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);}
.m10a_c00472{transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241245,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{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);}
.mea_c00472{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);}
.m60_c00472{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);}
.m108_c00472{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);}
.mb8_c00472{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);}
.m121_c00472{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);}
.m12e_c00472{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);}
.m103_c00472{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);}
.mc2_c00472{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);}
.me8_c00472{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.m100_c00472{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.m11a_c00472{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.maf_c00472{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.m101_c00472{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);}
.m52_c00472{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m11e_c00472{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);}
.me4_c00472{transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.mc9_c00472{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.mef_c00472{transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{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);}
.mff_c00472{transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258260,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{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);}
.m5f_c00472{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);}
.m11f_c00472{transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259985,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);}
.m11c_c00472{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);}
.m90_c00472{transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261570,0.000000,0.000000,0.250000,0,0);}
.m99_c00472{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);}
.m0_c00472{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);}
.m69_c00472{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);}
.m17_c00472{transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);}
.mfe_c00472{transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);}
.m6c_c00472{transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);}
.m12c_c00472{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.me1_c00472{transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m10c_c00472{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);}
.m56_c00472{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);}
.m92_c00472{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{transform:matrix(0.282755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282755,0.000000,0.000000,0.250000,0,0);}
.m12b_c00472{transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);}
.m11b_c00472{transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);}
.m10e_c00472{transform:matrix(0.294490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294490,0.000000,0.000000,0.250000,0,0);}
.m8b_c00472{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m123_c00472{transform:matrix(0.296775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296775,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.306560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306560,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);}
.mf8_c00472{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);}
.m109_c00472{transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337680,0.000000,0.000000,0.250000,0,0);}
.mbb_c00472{transform:matrix(0.353105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353105,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.367845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367845,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385600,0.000000,0.000000,0.250000,0,0);}
.m98_c00472{transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404070,0.000000,0.000000,0.250000,0,0);}
.mf4_c00472{transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);}
.m131_c00472{transform:matrix(0.472295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472295,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);}
.m11d_c00472{transform:matrix(0.499875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499875,0.000000,0.000000,0.250000,0,0);}
.m130_c00472{transform:matrix(0.501395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501395,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.512730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512730,0.000000,0.000000,0.250000,0,0);}
.m135_c00472{transform:matrix(0.519260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519260,0.000000,0.000000,0.250000,0,0);}
.mf5_c00472{transform:matrix(0.556325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556325,0.000000,0.000000,0.250000,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;}
.fs10_c00472{font-size:16.800000px;}
.fsa_c00472{font-size:23.100000px;}
.fs11_c00472{font-size:46.200000px;}
.fs12_c00472{font-size:48.300000px;}
.fsd_c00472{font-size:50.400000px;}
.fsc_c00472{font-size:51.450000px;}
.fsf_c00472{font-size:52.500000px;}
.fse_c00472{font-size:53.550000px;}
.fsb_c00472{font-size:54.600000px;}
.fs13_c00472{font-size:55.650000px;}
.fs6_c00472{font-size:56.700000px;}
.fs9_c00472{font-size:58.800000px;}
.fs8_c00472{font-size:60.900000px;}
.fs7_c00472{font-size:64.050000px;}
.fs1_c00472{font-size:67.200000px;}
.fs3_c00472{font-size:68.250000px;}
.fs4_c00472{font-size:69.300000px;}
.fs2_c00472{font-size:70.350000px;}
.fs5_c00472{font-size:71.400000px;}
.fs0_c00472{font-size:72.450000px;}
.y0_c00472{bottom:0.000000px;}
.y2c_c00472{bottom:140.778000px;}
.y22_c00472{bottom:160.099500px;}
.y2b_c00472{bottom:161.575500px;}
.y21_c00472{bottom:178.188000px;}
.y2a_c00472{bottom:179.596500px;}
.y20_c00472{bottom:195.709500px;}
.y29_c00472{bottom:197.374500px;}
.y1f_c00472{bottom:213.517500px;}
.y28_c00472{bottom:215.613000px;}
.y1e_c00472{bottom:231.510000px;}
.y27_c00472{bottom:233.464500px;}
.y1d_c00472{bottom:249.462000px;}
.y26_c00472{bottom:251.287500px;}
.y1c_c00472{bottom:267.715500px;}
.y25_c00472{bottom:268.606500px;}
.y1b_c00472{bottom:285.651000px;}
.y24_c00472{bottom:286.495500px;}
.y23_c00472{bottom:312.798000px;}
.y1a_c00472{bottom:330.402000px;}
.y18_c00472{bottom:353.160000px;}
.y19_c00472{bottom:365.580000px;}
.y17_c00472{bottom:375.628500px;}
.y16_c00472{bottom:398.164500px;}
.y15_c00472{bottom:421.237500px;}
.y14_c00472{bottom:443.397000px;}
.y13_c00472{bottom:465.936000px;}
.y12_c00472{bottom:488.241000px;}
.y11_c00472{bottom:511.045500px;}
.yf_c00472{bottom:534.201000px;}
.y10_c00472{bottom:534.507000px;}
.ye_c00472{bottom:556.893000px;}
.yd_c00472{bottom:579.757500px;}
.yc_c00472{bottom:602.371500px;}
.ya_c00472{bottom:624.441000px;}
.y9_c00472{bottom:646.392000px;}
.yb_c00472{bottom:647.607000px;}
.y8_c00472{bottom:669.435000px;}
.y7_c00472{bottom:692.340000px;}
.y6_c00472{bottom:714.657000px;}
.y5_c00472{bottom:737.704500px;}
.y4_c00472{bottom:760.395000px;}
.y3_c00472{bottom:782.941500px;}
.y2_c00472{bottom:805.779000px;}
.y1_c00472{bottom:828.958500px;}
.h12_c00472{height:16.800000px;}
.hc_c00472{height:23.100000px;}
.h13_c00472{height:46.200000px;}
.h14_c00472{height:48.300000px;}
.hf_c00472{height:50.400000px;}
.he_c00472{height:51.450000px;}
.h11_c00472{height:52.500000px;}
.h10_c00472{height:53.550000px;}
.hd_c00472{height:54.600000px;}
.h15_c00472{height:55.650000px;}
.h8_c00472{height:56.700000px;}
.hb_c00472{height:58.800000px;}
.ha_c00472{height:60.900000px;}
.h9_c00472{height:64.050000px;}
.h3_c00472{height:67.200000px;}
.h5_c00472{height:68.250000px;}
.h6_c00472{height:69.300000px;}
.h4_c00472{height:70.350000px;}
.h7_c00472{height:71.400000px;}
.h2_c00472{height:72.450000px;}
.h1_c00472{height:1005.000000px;}
.h0_c00472{height:1005.150000px;}
.w0_c00472{width:715.200000px;}
.w1_c00472{width:715.500000px;}
.x0_c00472{left:0.000000px;}
.x7f_c00472{left:94.770000px;}
.x84_c00472{left:97.740000px;}
.x79_c00472{left:102.600000px;}
.x56_c00472{left:125.280000px;}
.x80_c00472{left:127.710000px;}
.x85_c00472{left:129.330000px;}
.x2d_c00472{left:133.380000px;}
.x28_c00472{left:135.270000px;}
.x1_c00472{left:136.350000px;}
.x1d_c00472{left:137.970000px;}
.x70_c00472{left:139.050000px;}
.x36_c00472{left:140.130000px;}
.x75_c00472{left:142.830000px;}
.x7a_c00472{left:144.180000px;}
.x8d_c00472{left:145.530000px;}
.x7d_c00472{left:157.410000px;}
.x8e_c00472{left:159.030000px;}
.x2e_c00472{left:160.920000px;}
.x34_c00472{left:164.700000px;}
.x2_c00472{left:165.780000px;}
.x57_c00472{left:167.400000px;}
.x68_c00472{left:170.100000px;}
.x24_c00472{left:177.390000px;}
.x42_c00472{left:179.550000px;}
.x81_c00472{left:180.630000px;}
.x65_c00472{left:184.680000px;}
.x3d_c00472{left:186.300000px;}
.x29_c00472{left:189.540000px;}
.x6b_c00472{left:191.970000px;}
.xe_c00472{left:194.400000px;}
.x5c_c00472{left:197.370000px;}
.x3_c00472{left:200.340000px;}
.x16_c00472{left:202.770000px;}
.xa_c00472{left:206.820000px;}
.x58_c00472{left:207.900000px;}
.x88_c00472{left:208.980000px;}
.x2f_c00472{left:210.060000px;}
.x71_c00472{left:213.570000px;}
.x8f_c00472{left:214.920000px;}
.xf_c00472{left:218.700000px;}
.x7b_c00472{left:220.050000px;}
.x4_c00472{left:221.130000px;}
.x1e_c00472{left:222.480000px;}
.x82_c00472{left:225.450000px;}
.x48_c00472{left:227.880000px;}
.x69_c00472{left:230.040000px;}
.x37_c00472{left:234.090000px;}
.x90_c00472{left:236.790000px;}
.xb_c00472{left:237.870000px;}
.x30_c00472{left:239.220000px;}
.x51_c00472{left:242.190000px;}
.x86_c00472{left:243.270000px;}
.x43_c00472{left:246.240000px;}
.x76_c00472{left:247.590000px;}
.x1f_c00472{left:249.480000px;}
.x3e_c00472{left:251.100000px;}
.x5_c00472{left:253.800000px;}
.x7e_c00472{left:255.690000px;}
.x35_c00472{left:257.850000px;}
.x6c_c00472{left:262.710000px;}
.x89_c00472{left:264.060000px;}
.x87_c00472{left:267.300000px;}
.x83_c00472{left:268.380000px;}
.x5d_c00472{left:270.000000px;}
.x17_c00472{left:272.700000px;}
.x38_c00472{left:275.130000px;}
.x25_c00472{left:278.370000px;}
.x31_c00472{left:279.990000px;}
.x72_c00472{left:281.070000px;}
.x7c_c00472{left:285.120000px;}
.x8a_c00472{left:289.440000px;}
.x10_c00472{left:290.790000px;}
.x6d_c00472{left:293.760000px;}
.x8b_c00472{left:296.730000px;}
.xc_c00472{left:299.700000px;}
.x20_c00472{left:302.400000px;}
.x49_c00472{left:303.750000px;}
.x59_c00472{left:308.070000px;}
.x6_c00472{left:309.150000px;}
.x52_c00472{left:310.770000px;}
.x3f_c00472{left:312.120000px;}
.x66_c00472{left:313.200000px;}
.x44_c00472{left:316.170000px;}
.x11_c00472{left:318.600000px;}
.x8c_c00472{left:319.680000px;}
.x4d_c00472{left:321.030000px;}
.x5e_c00472{left:322.110000px;}
.xd_c00472{left:323.730000px;}
.x26_c00472{left:332.370000px;}
.x2a_c00472{left:336.150000px;}
.x21_c00472{left:337.500000px;}
.x53_c00472{left:338.850000px;}
.x18_c00472{left:341.010000px;}
.x4a_c00472{left:343.980000px;}
.x32_c00472{left:345.600000px;}
.x39_c00472{left:347.490000px;}
.x5f_c00472{left:350.190000px;}
.xaf_c00472{left:352.890000px;}
.x93_c00472{left:355.050000px;}
.x3a_c00472{left:356.940000px;}
.x19_c00472{left:358.020000px;}
.x2b_c00472{left:360.180000px;}
.x12_c00472{left:362.340000px;}
.xb0_c00472{left:363.420000px;}
.x4b_c00472{left:368.280000px;}
.x4e_c00472{left:371.520000px;}
.x97_c00472{left:372.870000px;}
.xaa_c00472{left:375.030000px;}
.x7_c00472{left:376.920000px;}
.x3b_c00472{left:378.540000px;}
.x5a_c00472{left:381.240000px;}
.x6e_c00472{left:382.590000px;}
.x1a_c00472{left:384.210000px;}
.x98_c00472{left:387.180000px;}
.x54_c00472{left:388.530000px;}
.x45_c00472{left:390.150000px;}
.x2c_c00472{left:391.230000px;}
.x9d_c00472{left:394.740000px;}
.x8_c00472{left:396.360000px;}
.xa3_c00472{left:397.980000px;}
.x22_c00472{left:399.600000px;}
.xad_c00472{left:401.220000px;}
.x73_c00472{left:402.300000px;}
.x40_c00472{left:404.190000px;}
.x46_c00472{left:406.080000px;}
.x77_c00472{left:411.210000px;}
.x27_c00472{left:413.370000px;}
.x5b_c00472{left:415.800000px;}
.x60_c00472{left:418.230000px;}
.xae_c00472{left:420.390000px;}
.xa4_c00472{left:422.820000px;}
.x3c_c00472{left:424.440000px;}
.x13_c00472{left:426.600000px;}
.x23_c00472{left:429.300000px;}
.x1b_c00472{left:430.380000px;}
.x94_c00472{left:432.000000px;}
.x33_c00472{left:434.700000px;}
.x4c_c00472{left:437.670000px;}
.x61_c00472{left:438.750000px;}
.x9e_c00472{left:440.910000px;}
.xb1_c00472{left:441.990000px;}
.x99_c00472{left:443.340000px;}
.x4f_c00472{left:453.060000px;}
.x6a_c00472{left:454.140000px;}
.x9_c00472{left:456.300000px;}
.x6f_c00472{left:458.190000px;}
.x55_c00472{left:461.970000px;}
.x9f_c00472{left:466.020000px;}
.xb2_c00472{left:470.070000px;}
.x14_c00472{left:472.500000px;}
.xa5_c00472{left:478.170000px;}
.x62_c00472{left:479.520000px;}
.x78_c00472{left:480.600000px;}
.x67_c00472{left:481.680000px;}
.x1c_c00472{left:484.920000px;}
.x63_c00472{left:489.780000px;}
.xa9_c00472{left:496.260000px;}
.xa6_c00472{left:498.960000px;}
.x15_c00472{left:500.040000px;}
.x50_c00472{left:506.250000px;}
.x64_c00472{left:509.490000px;}
.x47_c00472{left:515.430000px;}
.xab_c00472{left:516.510000px;}
.xb3_c00472{left:519.480000px;}
.xa7_c00472{left:521.100000px;}
.x9a_c00472{left:522.180000px;}
.x41_c00472{left:524.880000px;}
.x95_c00472{left:528.390000px;}
.x9b_c00472{left:532.170000px;}
.xac_c00472{left:535.950000px;}
.x74_c00472{left:539.460000px;}
.x96_c00472{left:545.400000px;}
.xb4_c00472{left:548.640000px;}
.xa0_c00472{left:551.340000px;}
.x9c_c00472{left:553.500000px;}
.x91_c00472{left:555.930000px;}
.x92_c00472{left:557.010000px;}
.xa8_c00472{left:574.290000px;}
.xa1_c00472{left:589.680000px;}
.xb5_c00472{left:591.300000px;}
.xa2_c00472{left:607.230000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fs10_c00472{font-size:14.933333pt;}
.fsa_c00472{font-size:20.533333pt;}
.fs11_c00472{font-size:41.066667pt;}
.fs12_c00472{font-size:42.933333pt;}
.fsd_c00472{font-size:44.800000pt;}
.fsc_c00472{font-size:45.733333pt;}
.fsf_c00472{font-size:46.666667pt;}
.fse_c00472{font-size:47.600000pt;}
.fsb_c00472{font-size:48.533333pt;}
.fs13_c00472{font-size:49.466667pt;}
.fs6_c00472{font-size:50.400000pt;}
.fs9_c00472{font-size:52.266667pt;}
.fs8_c00472{font-size:54.133333pt;}
.fs7_c00472{font-size:56.933333pt;}
.fs1_c00472{font-size:59.733333pt;}
.fs3_c00472{font-size:60.666667pt;}
.fs4_c00472{font-size:61.600000pt;}
.fs2_c00472{font-size:62.533333pt;}
.fs5_c00472{font-size:63.466667pt;}
.fs0_c00472{font-size:64.400000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2c_c00472{bottom:125.136000pt;}
.y22_c00472{bottom:142.310667pt;}
.y2b_c00472{bottom:143.622667pt;}
.y21_c00472{bottom:158.389333pt;}
.y2a_c00472{bottom:159.641333pt;}
.y20_c00472{bottom:173.964000pt;}
.y29_c00472{bottom:175.444000pt;}
.y1f_c00472{bottom:189.793333pt;}
.y28_c00472{bottom:191.656000pt;}
.y1e_c00472{bottom:205.786667pt;}
.y27_c00472{bottom:207.524000pt;}
.y1d_c00472{bottom:221.744000pt;}
.y26_c00472{bottom:223.366667pt;}
.y1c_c00472{bottom:237.969333pt;}
.y25_c00472{bottom:238.761333pt;}
.y1b_c00472{bottom:253.912000pt;}
.y24_c00472{bottom:254.662667pt;}
.y23_c00472{bottom:278.042667pt;}
.y1a_c00472{bottom:293.690667pt;}
.y18_c00472{bottom:313.920000pt;}
.y19_c00472{bottom:324.960000pt;}
.y17_c00472{bottom:333.892000pt;}
.y16_c00472{bottom:353.924000pt;}
.y15_c00472{bottom:374.433333pt;}
.y14_c00472{bottom:394.130667pt;}
.y13_c00472{bottom:414.165333pt;}
.y12_c00472{bottom:433.992000pt;}
.y11_c00472{bottom:454.262667pt;}
.yf_c00472{bottom:474.845333pt;}
.y10_c00472{bottom:475.117333pt;}
.ye_c00472{bottom:495.016000pt;}
.yd_c00472{bottom:515.340000pt;}
.yc_c00472{bottom:535.441333pt;}
.ya_c00472{bottom:555.058667pt;}
.y9_c00472{bottom:574.570667pt;}
.yb_c00472{bottom:575.650667pt;}
.y8_c00472{bottom:595.053333pt;}
.y7_c00472{bottom:615.413333pt;}
.y6_c00472{bottom:635.250667pt;}
.y5_c00472{bottom:655.737333pt;}
.y4_c00472{bottom:675.906667pt;}
.y3_c00472{bottom:695.948000pt;}
.y2_c00472{bottom:716.248000pt;}
.y1_c00472{bottom:736.852000pt;}
.h12_c00472{height:14.933333pt;}
.hc_c00472{height:20.533333pt;}
.h13_c00472{height:41.066667pt;}
.h14_c00472{height:42.933333pt;}
.hf_c00472{height:44.800000pt;}
.he_c00472{height:45.733333pt;}
.h11_c00472{height:46.666667pt;}
.h10_c00472{height:47.600000pt;}
.hd_c00472{height:48.533333pt;}
.h15_c00472{height:49.466667pt;}
.h8_c00472{height:50.400000pt;}
.hb_c00472{height:52.266667pt;}
.ha_c00472{height:54.133333pt;}
.h9_c00472{height:56.933333pt;}
.h3_c00472{height:59.733333pt;}
.h5_c00472{height:60.666667pt;}
.h6_c00472{height:61.600000pt;}
.h4_c00472{height:62.533333pt;}
.h7_c00472{height:63.466667pt;}
.h2_c00472{height:64.400000pt;}
.h1_c00472{height:893.333333pt;}
.h0_c00472{height:893.466667pt;}
.w0_c00472{width:635.733333pt;}
.w1_c00472{width:636.000000pt;}
.x0_c00472{left:0.000000pt;}
.x7f_c00472{left:84.240000pt;}
.x84_c00472{left:86.880000pt;}
.x79_c00472{left:91.200000pt;}
.x56_c00472{left:111.360000pt;}
.x80_c00472{left:113.520000pt;}
.x85_c00472{left:114.960000pt;}
.x2d_c00472{left:118.560000pt;}
.x28_c00472{left:120.240000pt;}
.x1_c00472{left:121.200000pt;}
.x1d_c00472{left:122.640000pt;}
.x70_c00472{left:123.600000pt;}
.x36_c00472{left:124.560000pt;}
.x75_c00472{left:126.960000pt;}
.x7a_c00472{left:128.160000pt;}
.x8d_c00472{left:129.360000pt;}
.x7d_c00472{left:139.920000pt;}
.x8e_c00472{left:141.360000pt;}
.x2e_c00472{left:143.040000pt;}
.x34_c00472{left:146.400000pt;}
.x2_c00472{left:147.360000pt;}
.x57_c00472{left:148.800000pt;}
.x68_c00472{left:151.200000pt;}
.x24_c00472{left:157.680000pt;}
.x42_c00472{left:159.600000pt;}
.x81_c00472{left:160.560000pt;}
.x65_c00472{left:164.160000pt;}
.x3d_c00472{left:165.600000pt;}
.x29_c00472{left:168.480000pt;}
.x6b_c00472{left:170.640000pt;}
.xe_c00472{left:172.800000pt;}
.x5c_c00472{left:175.440000pt;}
.x3_c00472{left:178.080000pt;}
.x16_c00472{left:180.240000pt;}
.xa_c00472{left:183.840000pt;}
.x58_c00472{left:184.800000pt;}
.x88_c00472{left:185.760000pt;}
.x2f_c00472{left:186.720000pt;}
.x71_c00472{left:189.840000pt;}
.x8f_c00472{left:191.040000pt;}
.xf_c00472{left:194.400000pt;}
.x7b_c00472{left:195.600000pt;}
.x4_c00472{left:196.560000pt;}
.x1e_c00472{left:197.760000pt;}
.x82_c00472{left:200.400000pt;}
.x48_c00472{left:202.560000pt;}
.x69_c00472{left:204.480000pt;}
.x37_c00472{left:208.080000pt;}
.x90_c00472{left:210.480000pt;}
.xb_c00472{left:211.440000pt;}
.x30_c00472{left:212.640000pt;}
.x51_c00472{left:215.280000pt;}
.x86_c00472{left:216.240000pt;}
.x43_c00472{left:218.880000pt;}
.x76_c00472{left:220.080000pt;}
.x1f_c00472{left:221.760000pt;}
.x3e_c00472{left:223.200000pt;}
.x5_c00472{left:225.600000pt;}
.x7e_c00472{left:227.280000pt;}
.x35_c00472{left:229.200000pt;}
.x6c_c00472{left:233.520000pt;}
.x89_c00472{left:234.720000pt;}
.x87_c00472{left:237.600000pt;}
.x83_c00472{left:238.560000pt;}
.x5d_c00472{left:240.000000pt;}
.x17_c00472{left:242.400000pt;}
.x38_c00472{left:244.560000pt;}
.x25_c00472{left:247.440000pt;}
.x31_c00472{left:248.880000pt;}
.x72_c00472{left:249.840000pt;}
.x7c_c00472{left:253.440000pt;}
.x8a_c00472{left:257.280000pt;}
.x10_c00472{left:258.480000pt;}
.x6d_c00472{left:261.120000pt;}
.x8b_c00472{left:263.760000pt;}
.xc_c00472{left:266.400000pt;}
.x20_c00472{left:268.800000pt;}
.x49_c00472{left:270.000000pt;}
.x59_c00472{left:273.840000pt;}
.x6_c00472{left:274.800000pt;}
.x52_c00472{left:276.240000pt;}
.x3f_c00472{left:277.440000pt;}
.x66_c00472{left:278.400000pt;}
.x44_c00472{left:281.040000pt;}
.x11_c00472{left:283.200000pt;}
.x8c_c00472{left:284.160000pt;}
.x4d_c00472{left:285.360000pt;}
.x5e_c00472{left:286.320000pt;}
.xd_c00472{left:287.760000pt;}
.x26_c00472{left:295.440000pt;}
.x2a_c00472{left:298.800000pt;}
.x21_c00472{left:300.000000pt;}
.x53_c00472{left:301.200000pt;}
.x18_c00472{left:303.120000pt;}
.x4a_c00472{left:305.760000pt;}
.x32_c00472{left:307.200000pt;}
.x39_c00472{left:308.880000pt;}
.x5f_c00472{left:311.280000pt;}
.xaf_c00472{left:313.680000pt;}
.x93_c00472{left:315.600000pt;}
.x3a_c00472{left:317.280000pt;}
.x19_c00472{left:318.240000pt;}
.x2b_c00472{left:320.160000pt;}
.x12_c00472{left:322.080000pt;}
.xb0_c00472{left:323.040000pt;}
.x4b_c00472{left:327.360000pt;}
.x4e_c00472{left:330.240000pt;}
.x97_c00472{left:331.440000pt;}
.xaa_c00472{left:333.360000pt;}
.x7_c00472{left:335.040000pt;}
.x3b_c00472{left:336.480000pt;}
.x5a_c00472{left:338.880000pt;}
.x6e_c00472{left:340.080000pt;}
.x1a_c00472{left:341.520000pt;}
.x98_c00472{left:344.160000pt;}
.x54_c00472{left:345.360000pt;}
.x45_c00472{left:346.800000pt;}
.x2c_c00472{left:347.760000pt;}
.x9d_c00472{left:350.880000pt;}
.x8_c00472{left:352.320000pt;}
.xa3_c00472{left:353.760000pt;}
.x22_c00472{left:355.200000pt;}
.xad_c00472{left:356.640000pt;}
.x73_c00472{left:357.600000pt;}
.x40_c00472{left:359.280000pt;}
.x46_c00472{left:360.960000pt;}
.x77_c00472{left:365.520000pt;}
.x27_c00472{left:367.440000pt;}
.x5b_c00472{left:369.600000pt;}
.x60_c00472{left:371.760000pt;}
.xae_c00472{left:373.680000pt;}
.xa4_c00472{left:375.840000pt;}
.x3c_c00472{left:377.280000pt;}
.x13_c00472{left:379.200000pt;}
.x23_c00472{left:381.600000pt;}
.x1b_c00472{left:382.560000pt;}
.x94_c00472{left:384.000000pt;}
.x33_c00472{left:386.400000pt;}
.x4c_c00472{left:389.040000pt;}
.x61_c00472{left:390.000000pt;}
.x9e_c00472{left:391.920000pt;}
.xb1_c00472{left:392.880000pt;}
.x99_c00472{left:394.080000pt;}
.x4f_c00472{left:402.720000pt;}
.x6a_c00472{left:403.680000pt;}
.x9_c00472{left:405.600000pt;}
.x6f_c00472{left:407.280000pt;}
.x55_c00472{left:410.640000pt;}
.x9f_c00472{left:414.240000pt;}
.xb2_c00472{left:417.840000pt;}
.x14_c00472{left:420.000000pt;}
.xa5_c00472{left:425.040000pt;}
.x62_c00472{left:426.240000pt;}
.x78_c00472{left:427.200000pt;}
.x67_c00472{left:428.160000pt;}
.x1c_c00472{left:431.040000pt;}
.x63_c00472{left:435.360000pt;}
.xa9_c00472{left:441.120000pt;}
.xa6_c00472{left:443.520000pt;}
.x15_c00472{left:444.480000pt;}
.x50_c00472{left:450.000000pt;}
.x64_c00472{left:452.880000pt;}
.x47_c00472{left:458.160000pt;}
.xab_c00472{left:459.120000pt;}
.xb3_c00472{left:461.760000pt;}
.xa7_c00472{left:463.200000pt;}
.x9a_c00472{left:464.160000pt;}
.x41_c00472{left:466.560000pt;}
.x95_c00472{left:469.680000pt;}
.x9b_c00472{left:473.040000pt;}
.xac_c00472{left:476.400000pt;}
.x74_c00472{left:479.520000pt;}
.x96_c00472{left:484.800000pt;}
.xb4_c00472{left:487.680000pt;}
.xa0_c00472{left:490.080000pt;}
.x9c_c00472{left:492.000000pt;}
.x91_c00472{left:494.160000pt;}
.x92_c00472{left:495.120000pt;}
.xa8_c00472{left:510.480000pt;}
.xa1_c00472{left:524.160000pt;}
.xb5_c00472{left:525.600000pt;}
.xa2_c00472{left:539.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1c_c00473{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);}
.m4_c00473{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);}
.m24_c00473{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);}
.m55_c00473{transform:matrix(0.014484,0.000145,-0.002500,0.249988,0,0);-ms-transform:matrix(0.014484,0.000145,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.014484,0.000145,-0.002500,0.249988,0,0);}
.m2e_c00473{transform:matrix(0.025815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025815,0.000000,0.000000,0.250000,0,0);}
.m9e_c00473{transform:matrix(0.027674,0.000249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.027674,0.000249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.027674,0.000249,-0.002250,0.249990,0,0);}
.m138_c00473{transform:matrix(0.028501,0.000456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.028501,0.000456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.028501,0.000456,-0.003999,0.249968,0,0);}
.m113_c00473{transform:matrix(0.028567,0.000429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.028567,0.000429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.028567,0.000429,-0.003750,0.249972,0,0);}
.mf8_c00473{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m107_c00473{transform:matrix(0.087905,0.003520,-0.010002,0.249800,0,0);-ms-transform:matrix(0.087905,0.003520,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.087905,0.003520,-0.010002,0.249800,0,0);}
.m10a_c00473{transform:matrix(0.088224,0.003533,-0.010002,0.249800,0,0);-ms-transform:matrix(0.088224,0.003533,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.088224,0.003533,-0.010002,0.249800,0,0);}
.m108_c00473{transform:matrix(0.092861,0.003718,-0.010002,0.249800,0,0);-ms-transform:matrix(0.092861,0.003718,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.092861,0.003718,-0.010002,0.249800,0,0);}
.m10b_c00473{transform:matrix(0.107184,0.004292,-0.010002,0.249800,0,0);-ms-transform:matrix(0.107184,0.004292,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.107184,0.004292,-0.010002,0.249800,0,0);}
.md0_c00473{transform:matrix(0.116071,0.003366,-0.007247,0.249895,0,0);-ms-transform:matrix(0.116071,0.003366,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.116071,0.003366,-0.007247,0.249895,0,0);}
.m54_c00473{transform:matrix(0.116789,0.001168,-0.002500,0.249988,0,0);-ms-transform:matrix(0.116789,0.001168,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.116789,0.001168,-0.002500,0.249988,0,0);}
.m131_c00473{transform:matrix(0.117820,0.001885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.117820,0.001885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.117820,0.001885,-0.003999,0.249968,0,0);}
.m105_c00473{transform:matrix(0.118695,0.004753,-0.010002,0.249800,0,0);-ms-transform:matrix(0.118695,0.004753,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.118695,0.004753,-0.010002,0.249800,0,0);}
.mfa_c00473{transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);}
.m109_c00473{transform:matrix(0.131774,0.005276,-0.010002,0.249800,0,0);-ms-transform:matrix(0.131774,0.005276,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.131774,0.005276,-0.010002,0.249800,0,0);}
.m62_c00473{transform:matrix(0.131913,0.001319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.131913,0.001319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.131913,0.001319,-0.002500,0.249988,0,0);}
.m64_c00473{transform:matrix(0.139218,0.001392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.139218,0.001392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.139218,0.001392,-0.002500,0.249988,0,0);}
.m13_c00473{transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142230,0.000000,0.000000,0.250000,0,0);}
.m104_c00473{transform:matrix(0.143190,0.005733,-0.010002,0.249800,0,0);-ms-transform:matrix(0.143190,0.005733,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.143190,0.005733,-0.010002,0.249800,0,0);}
.mce_c00473{transform:matrix(0.144362,0.003320,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144362,0.003320,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144362,0.003320,-0.005748,0.249934,0,0);}
.m60_c00473{transform:matrix(0.145273,0.001453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145273,0.001453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145273,0.001453,-0.002500,0.249988,0,0);}
.m130_c00473{transform:matrix(0.146396,0.002342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146396,0.002342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146396,0.002342,-0.003999,0.249968,0,0);}
.m3_c00473{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);}
.m69_c00473{transform:matrix(0.147668,0.001477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147668,0.001477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147668,0.001477,-0.002500,0.249988,0,0);}
.m6d_c00473{transform:matrix(0.149779,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149779,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149779,0.001348,-0.002250,0.249990,0,0);}
.m89_c00473{transform:matrix(0.150009,0.001350,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150009,0.001350,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150009,0.001350,-0.002250,0.249990,0,0);}
.ma1_c00473{transform:matrix(0.151454,0.001363,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151454,0.001363,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151454,0.001363,-0.002250,0.249990,0,0);}
.m6e_c00473{transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152829,0.001375,-0.002250,0.249990,0,0);}
.md1_c00473{transform:matrix(0.152936,0.004435,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152936,0.004435,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152936,0.004435,-0.007247,0.249895,0,0);}
.mb8_c00473{transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);}
.mab_c00473{transform:matrix(0.154299,0.001389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154299,0.001389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154299,0.001389,-0.002250,0.249990,0,0);}
.m10_c00473{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);}
.m9a_c00473{transform:matrix(0.154704,0.001392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154704,0.001392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154704,0.001392,-0.002250,0.249990,0,0);}
.mc_c00473{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);}
.m74_c00473{transform:matrix(0.155644,0.001401,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155644,0.001401,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155644,0.001401,-0.002250,0.249990,0,0);}
.mff_c00473{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);}
.m37_c00473{transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156765,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{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);}
.m2a_c00473{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);}
.m26_c00473{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);}
.m123_c00473{transform:matrix(0.160507,0.002408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160507,0.002408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160507,0.002408,-0.003750,0.249972,0,0);}
.m8e_c00473{transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161993,0.001458,-0.002250,0.249990,0,0);}
.m11_c00473{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);}
.mc3_c00473{transform:matrix(0.166286,0.003825,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166286,0.003825,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166286,0.003825,-0.005748,0.249934,0,0);}
.m79_c00473{transform:matrix(0.167948,0.001512,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167948,0.001512,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167948,0.001512,-0.002250,0.249990,0,0);}
.md7_c00473{transform:matrix(0.168754,0.004894,-0.007247,0.249895,0,0);-ms-transform:matrix(0.168754,0.004894,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.168754,0.004894,-0.007247,0.249895,0,0);}
.m6_c00473{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);}
.m56_c00473{transform:matrix(0.169577,0.001696,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169577,0.001696,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169577,0.001696,-0.002500,0.249988,0,0);}
.m133_c00473{transform:matrix(0.170133,0.002722,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170133,0.002722,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170133,0.002722,-0.003999,0.249968,0,0);}
.mb5_c00473{transform:matrix(0.170230,0.002894,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170230,0.002894,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170230,0.002894,-0.004249,0.249964,0,0);}
.m57_c00473{transform:matrix(0.172521,0.001725,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172521,0.001725,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172521,0.001725,-0.002500,0.249988,0,0);}
.m6f_c00473{transform:matrix(0.172533,0.001553,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172533,0.001553,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172533,0.001553,-0.002250,0.249990,0,0);}
.mee_c00473{transform:matrix(0.172569,0.003969,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172569,0.003969,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172569,0.003969,-0.005748,0.249934,0,0);}
.m1e_c00473{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);}
.m5a_c00473{transform:matrix(0.173646,0.001736,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173646,0.001736,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173646,0.001736,-0.002500,0.249988,0,0);}
.mfb_c00473{transform:matrix(0.173842,0.003129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173842,0.003129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173842,0.003129,-0.004499,0.249960,0,0);}
.m6a_c00473{transform:matrix(0.174646,0.001746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174646,0.001746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174646,0.001746,-0.002500,0.249988,0,0);}
.m142_c00473{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);}
.mf3_c00473{transform:matrix(0.176818,0.004067,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176818,0.004067,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176818,0.004067,-0.005748,0.249934,0,0);}
.m151_c00473{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);}
.m53_c00473{transform:matrix(0.178136,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178136,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178136,0.001781,-0.002500,0.249988,0,0);}
.m65_c00473{transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178641,0.001786,-0.002500,0.249988,0,0);}
.m4c_c00473{transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);}
.mb9_c00473{transform:matrix(0.178874,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178874,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178874,0.003041,-0.004249,0.249964,0,0);}
.m7b_c00473{transform:matrix(0.178958,0.001611,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178958,0.001611,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178958,0.001611,-0.002250,0.249990,0,0);}
.m5d_c00473{transform:matrix(0.178986,0.001790,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178986,0.001790,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178986,0.001790,-0.002500,0.249988,0,0);}
.mc2_c00473{transform:matrix(0.179103,0.004119,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179103,0.004119,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179103,0.004119,-0.005748,0.249934,0,0);}
.m22_c00473{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);}
.m1a_c00473{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);}
.m14a_c00473{transform:matrix(0.179984,0.003060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179984,0.003060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179984,0.003060,-0.004249,0.249964,0,0);}
.m106_c00473{transform:matrix(0.180291,0.007219,-0.010002,0.249800,0,0);-ms-transform:matrix(0.180291,0.007219,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.180291,0.007219,-0.010002,0.249800,0,0);}
.m59_c00473{transform:matrix(0.180341,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180341,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180341,0.001803,-0.002500,0.249988,0,0);}
.m88_c00473{transform:matrix(0.180418,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180418,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180418,0.001624,-0.002250,0.249990,0,0);}
.m14b_c00473{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);}
.m146_c00473{transform:matrix(0.180589,0.003070,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180589,0.003070,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180589,0.003070,-0.004249,0.249964,0,0);}
.m13b_c00473{transform:matrix(0.180642,0.002890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180642,0.002890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180642,0.002890,-0.003999,0.249968,0,0);}
.md9_c00473{transform:matrix(0.181894,0.005275,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181894,0.005275,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181894,0.005275,-0.007247,0.249895,0,0);}
.m31_c00473{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);}
.m58_c00473{transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182376,0.001824,-0.002500,0.249988,0,0);}
.mfc_c00473{transform:matrix(0.182615,0.003287,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182615,0.003287,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182615,0.003287,-0.004499,0.249960,0,0);}
.m143_c00473{transform:matrix(0.182649,0.003105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182649,0.003105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182649,0.003105,-0.004249,0.249964,0,0);}
.m2b_c00473{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);}
.m13c_c00473{transform:matrix(0.183022,0.002928,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183022,0.002928,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183022,0.002928,-0.003999,0.249968,0,0);}
.m14_c00473{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);}
.m18_c00473{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);}
.m101_c00473{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);}
.m100_c00473{transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183795,0.003308,-0.004499,0.249960,0,0);}
.m8b_c00473{transform:matrix(0.184243,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184243,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184243,0.001658,-0.002250,0.249990,0,0);}
.m76_c00473{transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184248,0.001658,-0.002250,0.249990,0,0);}
.m4f_c00473{transform:matrix(0.184481,0.001845,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184481,0.001845,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184481,0.001845,-0.002500,0.249988,0,0);}
.mb0_c00473{transform:matrix(0.185103,0.001666,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185103,0.001666,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185103,0.001666,-0.002250,0.249990,0,0);}
.m7_c00473{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);}
.mc4_c00473{transform:matrix(0.185646,0.004270,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185646,0.004270,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185646,0.004270,-0.005748,0.249934,0,0);}
.m13d_c00473{transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186036,0.002977,-0.003999,0.249968,0,0);}
.m122_c00473{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);}
.m73_c00473{transform:matrix(0.187127,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187127,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187127,0.001684,-0.002250,0.249990,0,0);}
.m67_c00473{transform:matrix(0.187711,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187711,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187711,0.001877,-0.002500,0.249988,0,0);}
.m153_c00473{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);}
.m63_c00473{transform:matrix(0.188191,0.001882,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188191,0.001882,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188191,0.001882,-0.002500,0.249988,0,0);}
.mad_c00473{transform:matrix(0.188287,0.001695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188287,0.001695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188287,0.001695,-0.002250,0.249990,0,0);}
.m6b_c00473{transform:matrix(0.188681,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188681,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188681,0.001887,-0.002500,0.249988,0,0);}
.m5c_c00473{transform:matrix(0.188801,0.001888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188801,0.001888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188801,0.001888,-0.002500,0.249988,0,0);}
.m75_c00473{transform:matrix(0.188827,0.001699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188827,0.001699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188827,0.001699,-0.002250,0.249990,0,0);}
.ma3_c00473{transform:matrix(0.189432,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189432,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189432,0.001705,-0.002250,0.249990,0,0);}
.m66_c00473{transform:matrix(0.189671,0.001897,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189671,0.001897,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189671,0.001897,-0.002500,0.249988,0,0);}
.m2_c00473{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);}
.m3b_c00473{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);}
.mae_c00473{transform:matrix(0.190367,0.001713,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190367,0.001713,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190367,0.001713,-0.002250,0.249990,0,0);}
.mbb_c00473{transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190947,0.003246,-0.004249,0.249964,0,0);}
.m5f_c00473{transform:matrix(0.191015,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191015,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191015,0.001910,-0.002500,0.249988,0,0);}
.m15_c00473{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);}
.m83_c00473{transform:matrix(0.191232,0.001721,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191232,0.001721,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191232,0.001721,-0.002250,0.249990,0,0);}
.med_c00473{transform:matrix(0.191389,0.004402,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191389,0.004402,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191389,0.004402,-0.005748,0.249934,0,0);}
.md_c00473{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);}
.m8a_c00473{transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191657,0.001725,-0.002250,0.249990,0,0);}
.m14e_c00473{transform:matrix(0.191672,0.003258,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191672,0.003258,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191672,0.003258,-0.004249,0.249964,0,0);}
.mf_c00473{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);}
.meb_c00473{transform:matrix(0.192569,0.004429,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192569,0.004429,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192569,0.004429,-0.005748,0.249934,0,0);}
.m8f_c00473{transform:matrix(0.192622,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192622,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192622,0.001734,-0.002250,0.249990,0,0);}
.m14d_c00473{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);}
.me7_c00473{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);}
.m140_c00473{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);}
.mbc_c00473{transform:matrix(0.192807,0.003278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192807,0.003278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192807,0.003278,-0.004249,0.249964,0,0);}
.m12b_c00473{transform:matrix(0.192853,0.002893,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192853,0.002893,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192853,0.002893,-0.003750,0.249972,0,0);}
.m149_c00473{transform:matrix(0.193092,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193092,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193092,0.003283,-0.004249,0.249964,0,0);}
.m16_c00473{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);}
.mec_c00473{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);}
.m20_c00473{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);}
.m2d_c00473{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);}
.m36_c00473{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);}
.ma9_c00473{transform:matrix(0.194062,0.001747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194062,0.001747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194062,0.001747,-0.002250,0.249990,0,0);}
.m10f_c00473{transform:matrix(0.194077,0.004076,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194077,0.004076,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194077,0.004076,-0.005249,0.249945,0,0);}
.md8_c00473{transform:matrix(0.194213,0.005632,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194213,0.005632,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194213,0.005632,-0.007247,0.249895,0,0);}
.mac_c00473{transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194262,0.001748,-0.002250,0.249990,0,0);}
.m5b_c00473{transform:matrix(0.194435,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194435,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194435,0.001944,-0.002500,0.249988,0,0);}
.maf_c00473{transform:matrix(0.194597,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194597,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194597,0.001751,-0.002250,0.249990,0,0);}
.mcc_c00473{transform:matrix(0.195198,0.004490,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195198,0.004490,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195198,0.004490,-0.005748,0.249934,0,0);}
.mf2_c00473{transform:matrix(0.195503,0.004497,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195503,0.004497,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195503,0.004497,-0.005748,0.249934,0,0);}
.mca_c00473{transform:matrix(0.195668,0.004500,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195668,0.004500,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195668,0.004500,-0.005748,0.249934,0,0);}
.m33_c00473{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);}
.m77_c00473{transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);}
.m29_c00473{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);}
.m103_c00473{transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);}
.m86_c00473{transform:matrix(0.197757,0.001780,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197757,0.001780,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197757,0.001780,-0.002250,0.249990,0,0);}
.mcf_c00473{transform:matrix(0.197988,0.004554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197988,0.004554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197988,0.004554,-0.005748,0.249934,0,0);}
.m61_c00473{transform:matrix(0.198100,0.001981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198100,0.001981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198100,0.001981,-0.002500,0.249988,0,0);}
.m7a_c00473{transform:matrix(0.198277,0.001784,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198277,0.001784,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198277,0.001784,-0.002250,0.249990,0,0);}
.m30_c00473{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);}
.me4_c00473{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);}
.m6c_c00473{transform:matrix(0.199162,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199162,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199162,0.001792,-0.002250,0.249990,0,0);}
.m84_c00473{transform:matrix(0.199362,0.001794,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199362,0.001794,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199362,0.001794,-0.002250,0.249990,0,0);}
.m10c_c00473{transform:matrix(0.199371,0.004187,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199371,0.004187,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199371,0.004187,-0.005249,0.249945,0,0);}
.m91_c00473{transform:matrix(0.199512,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199512,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199512,0.001796,-0.002250,0.249990,0,0);}
.mfd_c00473{transform:matrix(0.199928,0.003599,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199928,0.003599,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199928,0.003599,-0.004499,0.249960,0,0);}
.m8c_c00473{transform:matrix(0.201357,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201357,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201357,0.001812,-0.002250,0.249990,0,0);}
.m152_c00473{transform:matrix(0.201436,0.003424,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201436,0.003424,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201436,0.003424,-0.004249,0.249964,0,0);}
.ma_c00473{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);}
.m4e_c00473{transform:matrix(0.201705,0.002017,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201705,0.002017,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201705,0.002017,-0.002500,0.249988,0,0);}
.m32_c00473{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);}
.m1f_c00473{transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{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);}
.m81_c00473{transform:matrix(0.203192,0.001829,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203192,0.001829,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203192,0.001829,-0.002250,0.249990,0,0);}
.m144_c00473{transform:matrix(0.203816,0.003465,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203816,0.003465,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203816,0.003465,-0.004249,0.249964,0,0);}
.md5_c00473{transform:matrix(0.203879,0.005912,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203879,0.005912,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203879,0.005912,-0.007247,0.249895,0,0);}
.mcd_c00473{transform:matrix(0.204061,0.004693,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204061,0.004693,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204061,0.004693,-0.005748,0.249934,0,0);}
.mc6_c00473{transform:matrix(0.204496,0.004703,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204496,0.004703,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204496,0.004703,-0.005748,0.249934,0,0);}
.m1b_c00473{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);}
.mef_c00473{transform:matrix(0.204956,0.004714,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204956,0.004714,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204956,0.004714,-0.005748,0.249934,0,0);}
.m23_c00473{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);}
.m43_c00473{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);}
.m11e_c00473{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);}
.m90_c00473{transform:matrix(0.206522,0.001859,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206522,0.001859,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206522,0.001859,-0.002250,0.249990,0,0);}
.m98_c00473{transform:matrix(0.206932,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206932,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206932,0.001862,-0.002250,0.249990,0,0);}
.mb6_c00473{transform:matrix(0.207070,0.003520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207070,0.003520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207070,0.003520,-0.004249,0.249964,0,0);}
.mb1_c00473{transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207497,0.001867,-0.002250,0.249990,0,0);}
.maa_c00473{transform:matrix(0.207637,0.001869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207637,0.001869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207637,0.001869,-0.002250,0.249990,0,0);}
.mc8_c00473{transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207755,0.004778,-0.005748,0.249934,0,0);}
.m92_c00473{transform:matrix(0.207802,0.001870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207802,0.001870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207802,0.001870,-0.002250,0.249990,0,0);}
.m80_c00473{transform:matrix(0.208067,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208067,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208067,0.001873,-0.002250,0.249990,0,0);}
.m14c_c00473{transform:matrix(0.208410,0.003543,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208410,0.003543,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208410,0.003543,-0.004249,0.249964,0,0);}
.m1_c00473{transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208795,0.000000,0.000000,0.250000,0,0);}
.mc5_c00473{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);}
.m25_c00473{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);}
.m70_c00473{transform:matrix(0.209357,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209357,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209357,0.001884,-0.002250,0.249990,0,0);}
.mb7_c00473{transform:matrix(0.209530,0.003562,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209530,0.003562,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209530,0.003562,-0.004249,0.249964,0,0);}
.m141_c00473{transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);}
.m35_c00473{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);}
.mbd_c00473{transform:matrix(0.210450,0.003578,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210450,0.003578,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210450,0.003578,-0.004249,0.249964,0,0);}
.m72_c00473{transform:matrix(0.211791,0.001906,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211791,0.001906,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211791,0.001906,-0.002250,0.249990,0,0);}
.m87_c00473{transform:matrix(0.211961,0.001908,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211961,0.001908,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211961,0.001908,-0.002250,0.249990,0,0);}
.m9f_c00473{transform:matrix(0.212291,0.001911,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212291,0.001911,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212291,0.001911,-0.002250,0.249990,0,0);}
.mc1_c00473{transform:matrix(0.212984,0.004899,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212984,0.004899,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212984,0.004899,-0.005748,0.249934,0,0);}
.m96_c00473{transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);}
.m50_c00473{transform:matrix(0.213914,0.002139,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213914,0.002139,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213914,0.002139,-0.002500,0.249988,0,0);}
.m28_c00473{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);}
.m145_c00473{transform:matrix(0.214124,0.003640,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214124,0.003640,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214124,0.003640,-0.004249,0.249964,0,0);}
.m17_c00473{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);}
.md4_c00473{transform:matrix(0.214255,0.006213,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214255,0.006213,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214255,0.006213,-0.007247,0.249895,0,0);}
.mba_c00473{transform:matrix(0.214394,0.003645,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214394,0.003645,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214394,0.003645,-0.004249,0.249964,0,0);}
.m2f_c00473{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);}
.mc7_c00473{transform:matrix(0.216028,0.004969,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216028,0.004969,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216028,0.004969,-0.005748,0.249934,0,0);}
.m13e_c00473{transform:matrix(0.216082,0.003457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216082,0.003457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216082,0.003457,-0.003999,0.249968,0,0);}
.m39_c00473{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);}
.m78_c00473{transform:matrix(0.216651,0.001950,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216651,0.001950,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216651,0.001950,-0.002250,0.249990,0,0);}
.m14f_c00473{transform:matrix(0.217009,0.003689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217009,0.003689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217009,0.003689,-0.004249,0.249964,0,0);}
.m148_c00473{transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);}
.m5e_c00473{transform:matrix(0.217214,0.002172,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217214,0.002172,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217214,0.002172,-0.002500,0.249988,0,0);}
.m102_c00473{transform:matrix(0.217605,0.003917,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217605,0.003917,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217605,0.003917,-0.004499,0.249960,0,0);}
.m11c_c00473{transform:matrix(0.218150,0.003272,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218150,0.003272,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218150,0.003272,-0.003750,0.249972,0,0);}
.mbf_c00473{transform:matrix(0.218643,0.003717,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218643,0.003717,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218643,0.003717,-0.004249,0.249964,0,0);}
.m7d_c00473{transform:matrix(0.218886,0.001970,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218886,0.001970,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218886,0.001970,-0.002250,0.249990,0,0);}
.m52_c00473{transform:matrix(0.219694,0.002197,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219694,0.002197,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219694,0.002197,-0.002500,0.249988,0,0);}
.m85_c00473{transform:matrix(0.219731,0.001978,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219731,0.001978,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219731,0.001978,-0.002250,0.249990,0,0);}
.m111_c00473{transform:matrix(0.219952,0.004619,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219952,0.004619,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219952,0.004619,-0.005249,0.249945,0,0);}
.m82_c00473{transform:matrix(0.220421,0.001984,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220421,0.001984,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220421,0.001984,-0.002250,0.249990,0,0);}
.mb4_c00473{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);}
.mf5_c00473{transform:matrix(0.221097,0.005085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221097,0.005085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221097,0.005085,-0.005748,0.249934,0,0);}
.m116_c00473{transform:matrix(0.221230,0.003318,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221230,0.003318,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221230,0.003318,-0.003750,0.249972,0,0);}
.m9b_c00473{transform:matrix(0.221296,0.001992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221296,0.001992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221296,0.001992,-0.002250,0.249990,0,0);}
.m117_c00473{transform:matrix(0.221745,0.003326,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221745,0.003326,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221745,0.003326,-0.003750,0.249972,0,0);}
.m9_c00473{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);}
.m119_c00473{transform:matrix(0.223205,0.003348,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223205,0.003348,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223205,0.003348,-0.003750,0.249972,0,0);}
.m118_c00473{transform:matrix(0.223215,0.003348,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223215,0.003348,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223215,0.003348,-0.003750,0.249972,0,0);}
.me6_c00473{transform:matrix(0.223255,0.006698,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223255,0.006698,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223255,0.006698,-0.007497,0.249888,0,0);}
.m150_c00473{transform:matrix(0.224163,0.003811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224163,0.003811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224163,0.003811,-0.004249,0.249964,0,0);}
.mf0_c00473{transform:matrix(0.224436,0.005162,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224436,0.005162,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224436,0.005162,-0.005748,0.249934,0,0);}
.mfe_c00473{transform:matrix(0.224449,0.004040,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224449,0.004040,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224449,0.004040,-0.004499,0.249960,0,0);}
.m121_c00473{transform:matrix(0.224510,0.003368,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224510,0.003368,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224510,0.003368,-0.003750,0.249972,0,0);}
.m99_c00473{transform:matrix(0.225251,0.002027,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225251,0.002027,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225251,0.002027,-0.002250,0.249990,0,0);}
.m147_c00473{transform:matrix(0.225577,0.003835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225577,0.003835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225577,0.003835,-0.004249,0.249964,0,0);}
.m126_c00473{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);}
.mdf_c00473{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);}
.m42_c00473{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);}
.m124_c00473{transform:matrix(0.227749,0.003416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227749,0.003416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227749,0.003416,-0.003750,0.249972,0,0);}
.m154_c00473{transform:matrix(0.227752,0.003872,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227752,0.003872,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227752,0.003872,-0.004249,0.249964,0,0);}
.m136_c00473{transform:matrix(0.228176,0.003651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228176,0.003651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228176,0.003651,-0.003999,0.249968,0,0);}
.m110_c00473{transform:matrix(0.228330,0.004795,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228330,0.004795,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228330,0.004795,-0.005249,0.249945,0,0);}
.mf7_c00473{transform:matrix(0.229074,0.005269,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229074,0.005269,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229074,0.005269,-0.005748,0.249934,0,0);}
.m34_c00473{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);}
.m4d_c00473{transform:matrix(0.232228,0.002322,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232228,0.002322,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232228,0.002322,-0.002500,0.249988,0,0);}
.me9_c00473{transform:matrix(0.233485,0.007005,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233485,0.007005,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233485,0.007005,-0.007497,0.249888,0,0);}
.m11b_c00473{transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233999,0.003510,-0.003750,0.249972,0,0);}
.ma2_c00473{transform:matrix(0.234271,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234271,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234271,0.002108,-0.002250,0.249990,0,0);}
.m137_c00473{transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);}
.ma5_c00473{transform:matrix(0.236255,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236255,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236255,0.002126,-0.002250,0.249990,0,0);}
.m11d_c00473{transform:matrix(0.236333,0.003545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236333,0.003545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236333,0.003545,-0.003750,0.249972,0,0);}
.m68_c00473{transform:matrix(0.236773,0.002368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236773,0.002368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236773,0.002368,-0.002500,0.249988,0,0);}
.ma7_c00473{transform:matrix(0.237505,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237505,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237505,0.002138,-0.002250,0.249990,0,0);}
.ma8_c00473{transform:matrix(0.237855,0.002141,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237855,0.002141,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237855,0.002141,-0.002250,0.249990,0,0);}
.m27_c00473{transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);}
.m94_c00473{transform:matrix(0.238305,0.002145,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238305,0.002145,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238305,0.002145,-0.002250,0.249990,0,0);}
.m134_c00473{transform:matrix(0.238429,0.003815,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238429,0.003815,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238429,0.003815,-0.003999,0.249968,0,0);}
.m114_c00473{transform:matrix(0.239093,0.003586,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239093,0.003586,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239093,0.003586,-0.003750,0.249972,0,0);}
.m4b_c00473{transform:matrix(0.239118,0.002391,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239118,0.002391,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239118,0.002391,-0.002500,0.249988,0,0);}
.m7e_c00473{transform:matrix(0.239880,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239880,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239880,0.002159,-0.002250,0.249990,0,0);}
.mcb_c00473{transform:matrix(0.240077,0.005522,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240077,0.005522,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240077,0.005522,-0.005748,0.249934,0,0);}
.m45_c00473{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);}
.m112_c00473{transform:matrix(0.241812,0.005078,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241812,0.005078,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241812,0.005078,-0.005249,0.249945,0,0);}
.mde_c00473{transform:matrix(0.243280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243280,0.000000,0.000000,0.250000,0,0);}
.m7c_c00473{transform:matrix(0.243370,0.002190,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243370,0.002190,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243370,0.002190,-0.002250,0.249990,0,0);}
.m3d_c00473{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);}
.mc9_c00473{transform:matrix(0.244945,0.005634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244945,0.005634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244945,0.005634,-0.005748,0.249934,0,0);}
.mbe_c00473{transform:matrix(0.245275,0.004170,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245275,0.004170,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245275,0.004170,-0.004249,0.249964,0,0);}
.mf6_c00473{transform:matrix(0.246225,0.005663,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246225,0.005663,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246225,0.005663,-0.005748,0.249934,0,0);}
.m3a_c00473{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);}
.md2_c00473{transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);}
.m135_c00473{transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);}
.mf9_c00473{transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);}
.m40_c00473{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);}
.mea_c00473{transform:matrix(0.248703,0.007461,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248703,0.007461,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248703,0.007461,-0.007497,0.249888,0,0);}
.me_c00473{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);}
.m38_c00473{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);}
.m51_c00473{transform:matrix(0.250257,0.002503,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250257,0.002503,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250257,0.002503,-0.002500,0.249988,0,0);}
.m12_c00473{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);}
.m115_c00473{transform:matrix(0.251352,0.003770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251352,0.003770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251352,0.003770,-0.003750,0.249972,0,0);}
.m12f_c00473{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.mdb_c00473{transform:matrix(0.254168,0.007371,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254168,0.007371,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254168,0.007371,-0.007247,0.249895,0,0);}
.m95_c00473{transform:matrix(0.255735,0.002302,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255735,0.002302,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255735,0.002302,-0.002250,0.249990,0,0);}
.m3e_c00473{transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);}
.mda_c00473{transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);}
.mb3_c00473{transform:matrix(0.256663,0.004363,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256663,0.004363,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256663,0.004363,-0.004249,0.249964,0,0);}
.m3f_c00473{transform:matrix(0.257815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257815,0.000000,0.000000,0.250000,0,0);}
.m10d_c00473{transform:matrix(0.265007,0.005565,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265007,0.005565,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265007,0.005565,-0.005249,0.249945,0,0);}
.mf4_c00473{transform:matrix(0.265395,0.006104,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265395,0.006104,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265395,0.006104,-0.005748,0.249934,0,0);}
.m120_c00473{transform:matrix(0.266230,0.003993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266230,0.003993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266230,0.003993,-0.003750,0.249972,0,0);}
.m4a_c00473{transform:matrix(0.267617,0.002676,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267617,0.002676,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267617,0.002676,-0.002500,0.249988,0,0);}
.md6_c00473{transform:matrix(0.268747,0.007794,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268747,0.007794,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268747,0.007794,-0.007247,0.249895,0,0);}
.m97_c00473{transform:matrix(0.272299,0.002451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272299,0.002451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272299,0.002451,-0.002250,0.249990,0,0);}
.mb_c00473{transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);}
.me8_c00473{transform:matrix(0.272902,0.008187,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272902,0.008187,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272902,0.008187,-0.007497,0.249888,0,0);}
.m5_c00473{transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273970,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274020,0.000000,0.000000,0.250000,0,0);}
.mdd_c00473{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);}
.ma6_c00473{transform:matrix(0.275724,0.002482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275724,0.002482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275724,0.002482,-0.002250,0.249990,0,0);}
.m3c_c00473{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);}
.ma0_c00473{transform:matrix(0.283978,0.002556,-0.002250,0.249990,0,0);-ms-transform:matrix(0.283978,0.002556,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.283978,0.002556,-0.002250,0.249990,0,0);}
.me0_c00473{transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);}
.m13a_c00473{transform:matrix(0.290003,0.004640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290003,0.004640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290003,0.004640,-0.003999,0.249968,0,0);}
.me5_c00473{transform:matrix(0.293298,0.008799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.293298,0.008799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.293298,0.008799,-0.007497,0.249888,0,0);}
.m139_c00473{transform:matrix(0.295147,0.004722,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295147,0.004722,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295147,0.004722,-0.003999,0.249968,0,0);}
.m12d_c00473{transform:matrix(0.296320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296320,0.000000,0.000000,0.250000,0,0);}
.me3_c00473{transform:matrix(0.300910,0.009027,-0.007497,0.249888,0,0);-ms-transform:matrix(0.300910,0.009027,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.300910,0.009027,-0.007497,0.249888,0,0);}
.m41_c00473{transform:matrix(0.306360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306360,0.000000,0.000000,0.250000,0,0);}
.m125_c00473{transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);}
.mb2_c00473{transform:matrix(0.309412,0.002785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.309412,0.002785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.309412,0.002785,-0.002250,0.249990,0,0);}
.m8d_c00473{transform:matrix(0.310942,0.002798,-0.002250,0.249990,0,0);-ms-transform:matrix(0.310942,0.002798,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.310942,0.002798,-0.002250,0.249990,0,0);}
.mf1_c00473{transform:matrix(0.315672,0.007260,-0.005748,0.249934,0,0);-ms-transform:matrix(0.315672,0.007260,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.315672,0.007260,-0.005748,0.249934,0,0);}
.m47_c00473{transform:matrix(0.316310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316310,0.000000,0.000000,0.250000,0,0);}
.me2_c00473{transform:matrix(0.319715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319715,0.000000,0.000000,0.250000,0,0);}
.ma4_c00473{transform:matrix(0.320262,0.002882,-0.002250,0.249990,0,0);-ms-transform:matrix(0.320262,0.002882,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.320262,0.002882,-0.002250,0.249990,0,0);}
.m0_c00473{transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00473{transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323705,0.000000,0.000000,0.250000,0,0);}
.m46_c00473{transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324760,0.000000,0.000000,0.250000,0,0);}
.m9c_c00473{transform:matrix(0.324857,0.002924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.324857,0.002924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.324857,0.002924,-0.002250,0.249990,0,0);}
.m93_c00473{transform:matrix(0.328677,0.002958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.328677,0.002958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.328677,0.002958,-0.002250,0.249990,0,0);}
.md3_c00473{transform:matrix(0.331391,0.009610,-0.007247,0.249895,0,0);-ms-transform:matrix(0.331391,0.009610,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.331391,0.009610,-0.007247,0.249895,0,0);}
.m7f_c00473{transform:matrix(0.333896,0.003005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.333896,0.003005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.333896,0.003005,-0.002250,0.249990,0,0);}
.m71_c00473{transform:matrix(0.336626,0.003030,-0.002250,0.249990,0,0);-ms-transform:matrix(0.336626,0.003030,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.336626,0.003030,-0.002250,0.249990,0,0);}
.m13f_c00473{transform:matrix(0.340721,0.005452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.340721,0.005452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.340721,0.005452,-0.003999,0.249968,0,0);}
.m11f_c00473{transform:matrix(0.343211,0.005148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.343211,0.005148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.343211,0.005148,-0.003750,0.249972,0,0);}
.m44_c00473{transform:matrix(0.346350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346350,0.000000,0.000000,0.250000,0,0);}
.m48_c00473{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);}
.m10e_c00473{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);}
.mdc_c00473{transform:matrix(0.367660,0.010662,-0.007247,0.249895,0,0);-ms-transform:matrix(0.367660,0.010662,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.367660,0.010662,-0.007247,0.249895,0,0);}
.m11a_c00473{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);}
.m128_c00473{transform:matrix(0.373438,0.005602,-0.003750,0.249972,0,0);-ms-transform:matrix(0.373438,0.005602,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.373438,0.005602,-0.003750,0.249972,0,0);}
.m12a_c00473{transform:matrix(0.383282,0.005749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.383282,0.005749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.383282,0.005749,-0.003750,0.249972,0,0);}
.m127_c00473{transform:matrix(0.389796,0.005847,-0.003750,0.249972,0,0);-ms-transform:matrix(0.389796,0.005847,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.389796,0.005847,-0.003750,0.249972,0,0);}
.m132_c00473{transform:matrix(0.394515,0.006312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394515,0.006312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394515,0.006312,-0.003999,0.249968,0,0);}
.m19_c00473{transform:matrix(0.405775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00473{transform:matrix(0.452437,0.004072,-0.002250,0.249990,0,0);-ms-transform:matrix(0.452437,0.004072,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.452437,0.004072,-0.002250,0.249990,0,0);}
.m129_c00473{transform:matrix(0.460263,0.006904,-0.003750,0.249972,0,0);-ms-transform:matrix(0.460263,0.006904,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.460263,0.006904,-0.003750,0.249972,0,0);}
.m12e_c00473{transform:matrix(0.476980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476980,0.000000,0.000000,0.250000,0,0);}
.m49_c00473{transform:matrix(0.635375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635375,0.000000,0.000000,0.250000,0,0);}
.m12c_c00473{transform:matrix(0.642473,0.009637,-0.003750,0.249972,0,0);-ms-transform:matrix(0.642473,0.009637,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.642473,0.009637,-0.003750,0.249972,0,0);}
.me1_c00473{transform:matrix(0.692260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692260,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;}
.fs8_c00473{font-size:22.050000px;}
.fs12_c00473{font-size:37.800000px;}
.fs21_c00473{font-size:43.055510px;}
.fs18_c00473{font-size:44.119841px;}
.fs20_c00473{font-size:47.250000px;}
.fs1e_c00473{font-size:47.255315px;}
.fs1a_c00473{font-size:48.300000px;}
.fs22_c00473{font-size:48.306182px;}
.fs1d_c00473{font-size:48.310649px;}
.fs14_c00473{font-size:48.312774px;}
.fs13_c00473{font-size:49.363051px;}
.fs17_c00473{font-size:50.400000px;}
.fs19_c00473{font-size:50.413329px;}
.fs16_c00473{font-size:50.421189px;}
.fs24_c00473{font-size:51.457434px;}
.fs15_c00473{font-size:51.471630px;}
.fs1f_c00473{font-size:52.505906px;}
.fs23_c00473{font-size:53.557737px;}
.fs6_c00473{font-size:57.750000px;}
.fs7_c00473{font-size:61.950000px;}
.fs4_c00473{font-size:66.150000px;}
.fsf_c00473{font-size:67.202722px;}
.fs9_c00473{font-size:67.203360px;}
.fs1_c00473{font-size:68.250000px;}
.fs3_c00473{font-size:69.300000px;}
.fsd_c00473{font-size:69.302807px;}
.fs11_c00473{font-size:69.310013px;}
.fs5_c00473{font-size:70.350000px;}
.fse_c00473{font-size:70.352849px;}
.fs0_c00473{font-size:71.400000px;}
.fsb_c00473{font-size:71.402892px;}
.fsa_c00473{font-size:71.403570px;}
.fs10_c00473{font-size:71.410317px;}
.fs1b_c00473{font-size:71.411566px;}
.fsc_c00473{font-size:72.452934px;}
.fs2_c00473{font-size:75.600000px;}
.fs1c_c00473{font-size:103.929260px;}
.y0_c00473{bottom:0.000000px;}
.y12b_c00473{bottom:159.899393px;}
.y12a_c00473{bottom:160.351686px;}
.y129_c00473{bottom:160.954178px;}
.y128_c00473{bottom:161.551824px;}
.y127_c00473{bottom:162.601841px;}
.y126_c00473{bottom:163.049876px;}
.y125_c00473{bottom:163.618329px;}
.yd2_c00473{bottom:164.409377px;}
.yd1_c00473{bottom:166.541424px;}
.yd0_c00473{bottom:168.017271px;}
.ycf_c00473{bottom:169.204569px;}
.yce_c00473{bottom:169.832637px;}
.y124_c00473{bottom:178.267278px;}
.y123_c00473{bottom:178.772255px;}
.y122_c00473{bottom:178.997139px;}
.y121_c00473{bottom:179.397183px;}
.y120_c00473{bottom:180.590099px;}
.y11f_c00473{bottom:181.710212px;}
.ycd_c00473{bottom:182.576373px;}
.ycc_c00473{bottom:182.807523px;}
.ycb_c00473{bottom:184.284537px;}
.yca_c00473{bottom:184.930791px;}
.yc9_c00473{bottom:185.235150px;}
.yc8_c00473{bottom:185.458503px;}
.yc7_c00473{bottom:186.752253px;}
.yc6_c00473{bottom:187.384500px;}
.y11e_c00473{bottom:195.937041px;}
.y11d_c00473{bottom:196.424295px;}
.y11c_c00473{bottom:197.204723px;}
.y11b_c00473{bottom:197.764856px;}
.y11a_c00473{bottom:198.522639px;}
.y119_c00473{bottom:198.911795px;}
.y118_c00473{bottom:199.533000px;}
.y117_c00473{bottom:200.464320px;}
.y116_c00473{bottom:200.865564px;}
.y115_c00473{bottom:201.999948px;}
.y114_c00473{bottom:202.836252px;}
.y113_c00473{bottom:203.569056px;}
.y112_c00473{bottom:204.068412px;}
.y111_c00473{bottom:204.794016px;}
.y110_c00473{bottom:205.182552px;}
.y10f_c00473{bottom:205.469472px;}
.y10e_c00473{bottom:213.774348px;}
.y10d_c00473{bottom:214.417812px;}
.y10c_c00473{bottom:215.221644px;}
.y10b_c00473{bottom:215.892204px;}
.y10a_c00473{bottom:216.482940px;}
.y109_c00473{bottom:217.032420px;}
.y108_c00473{bottom:217.202580px;}
.y107_c00473{bottom:217.360500px;}
.yc5_c00473{bottom:218.894445px;}
.yc4_c00473{bottom:219.661425px;}
.yc3_c00473{bottom:220.670820px;}
.yc2_c00473{bottom:221.215455px;}
.yc1_c00473{bottom:222.228225px;}
.yc0_c00473{bottom:222.609735px;}
.ybf_c00473{bottom:223.597485px;}
.ybe_c00473{bottom:224.109000px;}
.y106_c00473{bottom:232.066500px;}
.ybd_c00473{bottom:236.136000px;}
.yd3_c00473{bottom:251.494500px;}
.ybc_c00473{bottom:255.993361px;}
.ybb_c00473{bottom:257.569612px;}
.yba_c00473{bottom:258.591141px;}
.yb9_c00473{bottom:259.742323px;}
.y105_c00473{bottom:267.702810px;}
.y104_c00473{bottom:267.797595px;}
.y103_c00473{bottom:268.125000px;}
.y102_c00473{bottom:268.749210px;}
.y101_c00473{bottom:269.221995px;}
.y100_c00473{bottom:269.377605px;}
.yff_c00473{bottom:269.965140px;}
.yfe_c00473{bottom:270.029813px;}
.yfd_c00473{bottom:270.470775px;}
.yfc_c00473{bottom:270.810930px;}
.yb8_c00473{bottom:272.079537px;}
.yb7_c00473{bottom:273.355957px;}
.yb6_c00473{bottom:274.421316px;}
.yb5_c00473{bottom:275.552011px;}
.yb4_c00473{bottom:276.019811px;}
.yb3_c00473{bottom:276.635292px;}
.yb2_c00473{bottom:276.792631px;}
.yb1_c00473{bottom:277.079731px;}
.yb0_c00473{bottom:277.834500px;}
.yfb_c00473{bottom:285.565583px;}
.yfa_c00473{bottom:286.218038px;}
.yf9_c00473{bottom:286.417185px;}
.yf8_c00473{bottom:286.983578px;}
.yf7_c00473{bottom:287.486025px;}
.yf6_c00473{bottom:287.987438px;}
.yf5_c00473{bottom:288.262928px;}
.yf4_c00473{bottom:288.631500px;}
.yaf_c00473{bottom:290.137957px;}
.yae_c00473{bottom:290.328493px;}
.yad_c00473{bottom:290.977119px;}
.yac_c00473{bottom:291.462790px;}
.yab_c00473{bottom:292.430408px;}
.yaa_c00473{bottom:293.342292px;}
.ya9_c00473{bottom:293.909070px;}
.ya8_c00473{bottom:295.111037px;}
.yf3_c00473{bottom:303.323483px;}
.yf2_c00473{bottom:304.315688px;}
.yf1_c00473{bottom:304.622790px;}
.yf0_c00473{bottom:305.417535px;}
.yef_c00473{bottom:305.887043px;}
.yee_c00473{bottom:306.288195px;}
.yed_c00473{bottom:306.583215px;}
.yec_c00473{bottom:306.721500px;}
.ya7_c00473{bottom:308.505425px;}
.ya6_c00473{bottom:309.001948px;}
.ya5_c00473{bottom:309.728173px;}
.ya4_c00473{bottom:310.083040px;}
.ya3_c00473{bottom:310.623448px;}
.ya2_c00473{bottom:311.393557px;}
.ya1_c00473{bottom:312.934500px;}
.ye4_c00473{bottom:320.156760px;}
.ye3_c00473{bottom:320.881920px;}
.yeb_c00473{bottom:321.128775px;}
.yea_c00473{bottom:321.581209px;}
.ye2_c00473{bottom:321.980040px;}
.ye9_c00473{bottom:322.660053px;}
.ye8_c00473{bottom:323.335224px;}
.ye7_c00473{bottom:323.535312px;}
.ye1_c00473{bottom:323.861220px;}
.ye6_c00473{bottom:324.639292px;}
.ye0_c00473{bottom:324.802680px;}
.ye5_c00473{bottom:325.354500px;}
.ydf_c00473{bottom:325.966860px;}
.yde_c00473{bottom:326.891460px;}
.ydd_c00473{bottom:327.804000px;}
.ya0_c00473{bottom:362.748000px;}
.ydc_c00473{bottom:376.501140px;}
.ydb_c00473{bottom:377.555679px;}
.yda_c00473{bottom:378.076050px;}
.yd9_c00473{bottom:378.552249px;}
.yd8_c00473{bottom:379.057689px;}
.yd7_c00473{bottom:379.824840px;}
.yd6_c00473{bottom:381.137526px;}
.yd5_c00473{bottom:381.637512px;}
.yd4_c00473{bottom:382.324500px;}
.y9f_c00473{bottom:400.765708px;}
.y9e_c00473{bottom:401.412255px;}
.y9d_c00473{bottom:402.203797px;}
.y9c_c00473{bottom:403.275255px;}
.y9b_c00473{bottom:403.818519px;}
.y9a_c00473{bottom:405.271878px;}
.y99_c00473{bottom:423.689026px;}
.y98_c00473{bottom:424.013616px;}
.y97_c00473{bottom:425.070489px;}
.y96_c00473{bottom:426.203811px;}
.y95_c00473{bottom:426.708405px;}
.y94_c00473{bottom:428.091423px;}
.y93_c00473{bottom:428.536500px;}
.y92_c00473{bottom:445.363905px;}
.y91_c00473{bottom:446.079896px;}
.y90_c00473{bottom:446.424549px;}
.y8f_c00473{bottom:446.969199px;}
.y8e_c00473{bottom:447.252948px;}
.y8d_c00473{bottom:447.797719px;}
.y8c_c00473{bottom:448.710208px;}
.y8b_c00473{bottom:449.026355px;}
.y8a_c00473{bottom:450.087619px;}
.y89_c00473{bottom:468.472024px;}
.y88_c00473{bottom:468.980091px;}
.y87_c00473{bottom:469.327174px;}
.y86_c00473{bottom:469.619188px;}
.y85_c00473{bottom:470.208888px;}
.y84_c00473{bottom:470.578173px;}
.y83_c00473{bottom:471.149601px;}
.y82_c00473{bottom:471.721123px;}
.y81_c00473{bottom:471.842877px;}
.y80_c00473{bottom:471.921471px;}
.y7f_c00473{bottom:472.496896px;}
.y7e_c00473{bottom:490.788770px;}
.y7d_c00473{bottom:491.193371px;}
.y7c_c00473{bottom:491.291844px;}
.y7b_c00473{bottom:491.990218px;}
.y7a_c00473{bottom:492.212982px;}
.y79_c00473{bottom:492.664842px;}
.y78_c00473{bottom:492.972590px;}
.y77_c00473{bottom:493.350361px;}
.y76_c00473{bottom:494.084463px;}
.y75_c00473{bottom:494.416151px;}
.y74_c00473{bottom:494.835389px;}
.y73_c00473{bottom:495.447387px;}
.y72_c00473{bottom:513.745077px;}
.y71_c00473{bottom:514.133893px;}
.y70_c00473{bottom:514.502808px;}
.y6f_c00473{bottom:514.852157px;}
.y6e_c00473{bottom:515.096835px;}
.y6d_c00473{bottom:515.343539px;}
.y6c_c00473{bottom:515.981610px;}
.y6b_c00473{bottom:516.245840px;}
.y6a_c00473{bottom:516.640611px;}
.y69_c00473{bottom:516.931751px;}
.y68_c00473{bottom:517.270284px;}
.y67_c00473{bottom:517.588727px;}
.y66_c00473{bottom:535.916860px;}
.y65_c00473{bottom:536.282027px;}
.y64_c00473{bottom:537.037057px;}
.y63_c00473{bottom:537.518211px;}
.y62_c00473{bottom:537.899960px;}
.y61_c00473{bottom:538.314739px;}
.y60_c00473{bottom:539.261907px;}
.y5f_c00473{bottom:539.370426px;}
.y5e_c00473{bottom:539.907054px;}
.y5d_c00473{bottom:540.539319px;}
.y5c_c00473{bottom:560.277505px;}
.y5b_c00473{bottom:560.808503px;}
.y5a_c00473{bottom:561.286490px;}
.y59_c00473{bottom:561.583368px;}
.y58_c00473{bottom:561.836593px;}
.y57_c00473{bottom:562.190169px;}
.y56_c00473{bottom:562.550550px;}
.y55_c00473{bottom:562.844702px;}
.y54_c00473{bottom:563.260361px;}
.y53_c00473{bottom:563.893599px;}
.y52_c00473{bottom:564.570477px;}
.y51_c00473{bottom:585.060923px;}
.y50_c00473{bottom:586.674294px;}
.y4f_c00473{bottom:587.077444px;}
.y4e_c00473{bottom:587.442012px;}
.y4d_c00473{bottom:587.667665px;}
.y4c_c00473{bottom:588.061500px;}
.y4b_c00473{bottom:608.455995px;}
.y4a_c00473{bottom:609.282570px;}
.y49_c00473{bottom:609.496200px;}
.y48_c00473{bottom:610.109010px;}
.y47_c00473{bottom:610.513500px;}
.y46_c00473{bottom:610.801845px;}
.y45_c00473{bottom:611.300280px;}
.y44_c00473{bottom:611.505315px;}
.y43_c00473{bottom:611.819595px;}
.y42_c00473{bottom:629.374140px;}
.y41_c00473{bottom:629.766345px;}
.y40_c00473{bottom:629.968815px;}
.y3f_c00473{bottom:630.381840px;}
.y3e_c00473{bottom:630.846270px;}
.y3d_c00473{bottom:631.162665px;}
.y3c_c00473{bottom:631.538025px;}
.y3b_c00473{bottom:631.964115px;}
.y3a_c00473{bottom:632.199435px;}
.y39_c00473{bottom:632.593215px;}
.y38_c00473{bottom:632.836695px;}
.y37_c00473{bottom:633.201345px;}
.y36_c00473{bottom:633.419895px;}
.y35_c00473{bottom:652.781880px;}
.y34_c00473{bottom:652.930755px;}
.y33_c00473{bottom:653.369400px;}
.y32_c00473{bottom:653.736255px;}
.y31_c00473{bottom:653.941470px;}
.y30_c00473{bottom:654.379440px;}
.y2f_c00473{bottom:654.643035px;}
.y2e_c00473{bottom:655.140645px;}
.y2d_c00473{bottom:655.515630px;}
.y2c_c00473{bottom:655.967040px;}
.y2b_c00473{bottom:656.217960px;}
.y2a_c00473{bottom:656.911500px;}
.y29_c00473{bottom:675.006000px;}
.y28_c00473{bottom:675.898500px;}
.y27_c00473{bottom:676.570500px;}
.y26_c00473{bottom:676.824000px;}
.y25_c00473{bottom:677.380500px;}
.y24_c00473{bottom:677.616000px;}
.y23_c00473{bottom:677.893500px;}
.y22_c00473{bottom:678.463500px;}
.y21_c00473{bottom:678.730500px;}
.y20_c00473{bottom:679.321500px;}
.y1f_c00473{bottom:698.170500px;}
.y1e_c00473{bottom:698.964000px;}
.y1d_c00473{bottom:699.495000px;}
.y1c_c00473{bottom:700.065000px;}
.y1b_c00473{bottom:700.234500px;}
.y1a_c00473{bottom:700.723500px;}
.y19_c00473{bottom:701.455500px;}
.y18_c00473{bottom:702.271500px;}
.y17_c00473{bottom:721.474500px;}
.y16_c00473{bottom:721.798500px;}
.y15_c00473{bottom:722.073000px;}
.y14_c00473{bottom:722.263500px;}
.y13_c00473{bottom:722.784000px;}
.y12_c00473{bottom:723.094500px;}
.y11_c00473{bottom:723.462000px;}
.y10_c00473{bottom:723.753000px;}
.yf_c00473{bottom:724.140000px;}
.ye_c00473{bottom:745.162500px;}
.yd_c00473{bottom:745.404000px;}
.yc_c00473{bottom:746.010000px;}
.yb_c00473{bottom:746.253000px;}
.ya_c00473{bottom:746.575500px;}
.y9_c00473{bottom:746.809500px;}
.y8_c00473{bottom:747.405000px;}
.y7_c00473{bottom:747.757500px;}
.y6_c00473{bottom:747.934500px;}
.y5_c00473{bottom:748.173000px;}
.y4_c00473{bottom:769.905000px;}
.y3_c00473{bottom:792.690000px;}
.y2_c00473{bottom:815.167500px;}
.y1_c00473{bottom:838.620000px;}
.ha_c00473{height:22.050000px;}
.h14_c00473{height:37.800000px;}
.h23_c00473{height:43.055510px;}
.h1a_c00473{height:44.119841px;}
.h22_c00473{height:47.250000px;}
.h20_c00473{height:47.255315px;}
.h1c_c00473{height:48.300000px;}
.h24_c00473{height:48.306182px;}
.h1f_c00473{height:48.310649px;}
.h16_c00473{height:48.312774px;}
.h15_c00473{height:49.363051px;}
.h19_c00473{height:50.400000px;}
.h1b_c00473{height:50.413329px;}
.h18_c00473{height:50.421189px;}
.h26_c00473{height:51.457434px;}
.h17_c00473{height:51.471630px;}
.h21_c00473{height:52.505906px;}
.h25_c00473{height:53.557737px;}
.h8_c00473{height:57.750000px;}
.h9_c00473{height:61.950000px;}
.h6_c00473{height:66.150000px;}
.h11_c00473{height:67.202722px;}
.hb_c00473{height:67.203360px;}
.h3_c00473{height:68.250000px;}
.h5_c00473{height:69.300000px;}
.hf_c00473{height:69.302807px;}
.h13_c00473{height:69.310013px;}
.h7_c00473{height:70.350000px;}
.h10_c00473{height:70.352849px;}
.h2_c00473{height:71.400000px;}
.hd_c00473{height:71.402892px;}
.hc_c00473{height:71.403570px;}
.h12_c00473{height:71.410317px;}
.h1d_c00473{height:71.411566px;}
.he_c00473{height:72.452934px;}
.h4_c00473{height:75.600000px;}
.h1e_c00473{height:103.929260px;}
.h0_c00473{height:1008.450000px;}
.h1_c00473{height:1008.750000px;}
.w1_c00473{width:700.500000px;}
.w0_c00473{width:700.650000px;}
.x0_c00473{left:0.000000px;}
.x7d_c00473{left:140.986500px;}
.x80_c00473{left:143.402555px;}
.x99_c00473{left:154.938000px;}
.x87_c00473{left:156.600000px;}
.x8a_c00473{left:157.969500px;}
.x1c_c00473{left:166.320000px;}
.x7c_c00473{left:169.020000px;}
.x1_c00473{left:172.530000px;}
.x13_c00473{left:174.150000px;}
.x67_c00473{left:175.630929px;}
.xa_c00473{left:177.390000px;}
.x24_c00473{left:178.635000px;}
.x84_c00473{left:184.542000px;}
.x81_c00473{left:191.485847px;}
.x47_c00473{left:199.382700px;}
.x75_c00473{left:201.480000px;}
.xae_c00473{left:202.530948px;}
.x8b_c00473{left:203.611500px;}
.xb_c00473{left:204.930000px;}
.x63_c00473{left:206.396811px;}
.x7e_c00473{left:207.984000px;}
.x88_c00473{left:210.060000px;}
.x82_c00473{left:214.170812px;}
.x2_c00473{left:215.190000px;}
.x1d_c00473{left:216.810000px;}
.x50_c00473{left:221.022375px;}
.x6e_c00473{left:222.246988px;}
.xaf_c00473{left:223.331784px;}
.x25_c00473{left:224.784000px;}
.x2b_c00473{left:226.186500px;}
.x6f_c00473{left:228.312772px;}
.x9a_c00473{left:229.895967px;}
.x14_c00473{left:231.930000px;}
.x38_c00473{left:236.404500px;}
.x70_c00473{left:237.673935px;}
.x55_c00473{left:238.784010px;}
.x3c_c00473{left:240.955500px;}
.x92_c00473{left:244.170000px;}
.x33_c00473{left:246.091500px;}
.x1e_c00473{left:249.480000px;}
.x15_c00473{left:250.560000px;}
.xc_c00473{left:251.640000px;}
.x9b_c00473{left:253.408930px;}
.x8c_c00473{left:255.525000px;}
.x7a_c00473{left:258.696010px;}
.x48_c00473{left:260.195700px;}
.x8e_c00473{left:261.433326px;}
.x2c_c00473{left:262.602000px;}
.x26_c00473{left:263.934000px;}
.x7f_c00473{left:264.963000px;}
.x3d_c00473{left:266.047500px;}
.x5d_c00473{left:267.362634px;}
.x68_c00473{left:269.377741px;}
.x5e_c00473{left:275.753337px;}
.x86_c00473{left:278.227110px;}
.x3_c00473{left:279.990000px;}
.x71_c00473{left:281.674855px;}
.x76_c00473{left:282.834000px;}
.xd_c00473{left:284.040000px;}
.x51_c00473{left:286.649070px;}
.x7b_c00473{left:288.887500px;}
.x16_c00473{left:291.870000px;}
.x56_c00473{left:296.309470px;}
.x85_c00473{left:297.622500px;}
.x49_c00473{left:299.573700px;}
.x4_c00473{left:302.130000px;}
.x1f_c00473{left:305.100000px;}
.x34_c00473{left:307.071000px;}
.x2d_c00473{left:308.479500px;}
.x3e_c00473{left:311.188500px;}
.x77_c00473{left:312.516000px;}
.x8d_c00473{left:314.737500px;}
.x93_c00473{left:317.097000px;}
.x39_c00473{left:320.095500px;}
.x17_c00473{left:323.190000px;}
.xe_c00473{left:325.890000px;}
.x9c_c00473{left:327.816948px;}
.x20_c00473{left:328.860000px;}
.x27_c00473{left:330.091500px;}
.x54_c00473{left:331.141500px;}
.x57_c00473{left:334.159795px;}
.xb0_c00473{left:335.941860px;}
.x8f_c00473{left:337.557063px;}
.x83_c00473{left:342.266378px;}
.x5_c00473{left:343.980000px;}
.x89_c00473{left:346.140000px;}
.x2e_c00473{left:347.383500px;}
.x3f_c00473{left:348.687000px;}
.x6_c00473{left:352.350000px;}
.x72_c00473{left:354.029250px;}
.x28_c00473{left:356.046000px;}
.x21_c00473{left:357.480000px;}
.x94_c00473{left:359.716500px;}
.x58_c00473{left:360.842809px;}
.x35_c00473{left:361.968000px;}
.x4a_c00473{left:365.714700px;}
.x7_c00473{left:370.710000px;}
.x78_c00473{left:379.182000px;}
.x5f_c00473{left:380.577070px;}
.x64_c00473{left:381.643165px;}
.xa0_c00473{left:382.996500px;}
.x90_c00473{left:385.830000px;}
.x95_c00473{left:387.796500px;}
.x52_c00473{left:389.190015px;}
.xad_c00473{left:390.786000px;}
.x29_c00473{left:391.921500px;}
.x59_c00473{left:393.551216px;}
.x8_c00473{left:396.900000px;}
.x40_c00473{left:398.448000px;}
.x69_c00473{left:400.604379px;}
.xf_c00473{left:402.030000px;}
.x18_c00473{left:404.190000px;}
.x36_c00473{left:409.429500px;}
.x2f_c00473{left:412.458000px;}
.x96_c00473{left:414.252000px;}
.xa2_c00473{left:417.054000px;}
.x22_c00473{left:418.230000px;}
.x10_c00473{left:422.820000px;}
.x41_c00473{left:424.807500px;}
.x3a_c00473{left:427.018500px;}
.x6a_c00473{left:428.631379px;}
.xb1_c00473{left:429.733500px;}
.x4b_c00473{left:434.890200px;}
.x30_c00473{left:436.215000px;}
.x9_c00473{left:437.670000px;}
.xa5_c00473{left:438.826463px;}
.x79_c00473{left:441.351000px;}
.x97_c00473{left:443.161500px;}
.x60_c00473{left:446.952681px;}
.x5a_c00473{left:448.639216px;}
.x11_c00473{left:452.790000px;}
.x19_c00473{left:454.140000px;}
.x3b_c00473{left:456.570000px;}
.x53_c00473{left:458.046135px;}
.xb5_c00473{left:459.118611px;}
.x73_c00473{left:460.194807px;}
.x91_c00473{left:461.430000px;}
.x42_c00473{left:468.604500px;}
.x31_c00473{left:470.505000px;}
.x5b_c00473{left:475.625230px;}
.xa6_c00473{left:477.205815px;}
.x9d_c00473{left:478.981500px;}
.x4c_c00473{left:481.333200px;}
.x12_c00473{left:486.810000px;}
.x43_c00473{left:489.126000px;}
.x65_c00473{left:491.546181px;}
.x1a_c00473{left:493.020000px;}
.xb2_c00473{left:497.200500px;}
.x98_c00473{left:501.747000px;}
.x23_c00473{left:503.010000px;}
.x61_c00473{left:505.009588px;}
.xb8_c00473{left:507.707592px;}
.x32_c00473{left:511.005000px;}
.x2a_c00473{left:513.016500px;}
.xa7_c00473{left:514.197713px;}
.x37_c00473{left:519.870000px;}
.x4d_c00473{left:522.635700px;}
.x44_c00473{left:525.811500px;}
.x66_c00473{left:526.914046px;}
.xb3_c00473{left:530.149500px;}
.x62_c00473{left:533.082576px;}
.x1b_c00473{left:536.220000px;}
.xa3_c00473{left:540.103500px;}
.x74_c00473{left:541.707864px;}
.x4e_c00473{left:542.882700px;}
.xaa_c00473{left:544.860000px;}
.xa8_c00473{left:550.910610px;}
.x6b_c00473{left:553.351125px;}
.xab_c00473{left:558.900000px;}
.x6c_c00473{left:562.292463px;}
.xb6_c00473{left:566.050611px;}
.x5c_c00473{left:567.399583px;}
.x45_c00473{left:569.676000px;}
.x9e_c00473{left:572.034000px;}
.xb9_c00473{left:574.420470px;}
.xa9_c00473{left:575.755868px;}
.x4f_c00473{left:582.103200px;}
.x46_c00473{left:584.563500px;}
.xac_c00473{left:589.680000px;}
.x9f_c00473{left:593.578500px;}
.xb7_c00473{left:595.755111px;}
.xa4_c00473{left:596.877000px;}
.x6d_c00473{left:599.080802px;}
.xb4_c00473{left:604.719000px;}
.xa1_c00473{left:609.531000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
.fs8_c00473{font-size:19.600000pt;}
.fs12_c00473{font-size:33.600000pt;}
.fs21_c00473{font-size:38.271564pt;}
.fs18_c00473{font-size:39.217636pt;}
.fs20_c00473{font-size:42.000000pt;}
.fs1e_c00473{font-size:42.004725pt;}
.fs1a_c00473{font-size:42.933333pt;}
.fs22_c00473{font-size:42.938828pt;}
.fs1d_c00473{font-size:42.942799pt;}
.fs14_c00473{font-size:42.944688pt;}
.fs13_c00473{font-size:43.878268pt;}
.fs17_c00473{font-size:44.800000pt;}
.fs19_c00473{font-size:44.811848pt;}
.fs16_c00473{font-size:44.818834pt;}
.fs24_c00473{font-size:45.739941pt;}
.fs15_c00473{font-size:45.752560pt;}
.fs1f_c00473{font-size:46.671916pt;}
.fs23_c00473{font-size:47.606878pt;}
.fs6_c00473{font-size:51.333333pt;}
.fs7_c00473{font-size:55.066667pt;}
.fs4_c00473{font-size:58.800000pt;}
.fsf_c00473{font-size:59.735752pt;}
.fs9_c00473{font-size:59.736320pt;}
.fs1_c00473{font-size:60.666667pt;}
.fs3_c00473{font-size:61.600000pt;}
.fsd_c00473{font-size:61.602495pt;}
.fs11_c00473{font-size:61.608901pt;}
.fs5_c00473{font-size:62.533333pt;}
.fse_c00473{font-size:62.535866pt;}
.fs0_c00473{font-size:63.466667pt;}
.fsb_c00473{font-size:63.469237pt;}
.fsa_c00473{font-size:63.469840pt;}
.fs10_c00473{font-size:63.475837pt;}
.fs1b_c00473{font-size:63.476947pt;}
.fsc_c00473{font-size:64.402608pt;}
.fs2_c00473{font-size:67.200000pt;}
.fs1c_c00473{font-size:92.381564pt;}
.y0_c00473{bottom:0.000000pt;}
.y12b_c00473{bottom:142.132793pt;}
.y12a_c00473{bottom:142.534832pt;}
.y129_c00473{bottom:143.070380pt;}
.y128_c00473{bottom:143.601621pt;}
.y127_c00473{bottom:144.534969pt;}
.y126_c00473{bottom:144.933223pt;}
.y125_c00473{bottom:145.438515pt;}
.yd2_c00473{bottom:146.141668pt;}
.yd1_c00473{bottom:148.036821pt;}
.yd0_c00473{bottom:149.348685pt;}
.ycf_c00473{bottom:150.404061pt;}
.yce_c00473{bottom:150.962344pt;}
.y124_c00473{bottom:158.459803pt;}
.y123_c00473{bottom:158.908671pt;}
.y122_c00473{bottom:159.108568pt;}
.y121_c00473{bottom:159.464163pt;}
.y120_c00473{bottom:160.524532pt;}
.y11f_c00473{bottom:161.520188pt;}
.ycd_c00473{bottom:162.290109pt;}
.ycc_c00473{bottom:162.495576pt;}
.ycb_c00473{bottom:163.808477pt;}
.yca_c00473{bottom:164.382925pt;}
.yc9_c00473{bottom:164.653467pt;}
.yc8_c00473{bottom:164.852003pt;}
.yc7_c00473{bottom:166.002003pt;}
.yc6_c00473{bottom:166.564000pt;}
.y11e_c00473{bottom:174.166259pt;}
.y11d_c00473{bottom:174.599373pt;}
.y11c_c00473{bottom:175.293087pt;}
.y11b_c00473{bottom:175.790983pt;}
.y11a_c00473{bottom:176.464568pt;}
.y119_c00473{bottom:176.810484pt;}
.y118_c00473{bottom:177.362667pt;}
.y117_c00473{bottom:178.190507pt;}
.y116_c00473{bottom:178.547168pt;}
.y115_c00473{bottom:179.555509pt;}
.y114_c00473{bottom:180.298891pt;}
.y113_c00473{bottom:180.950272pt;}
.y112_c00473{bottom:181.394144pt;}
.y111_c00473{bottom:182.039125pt;}
.y110_c00473{bottom:182.384491pt;}
.y10f_c00473{bottom:182.639531pt;}
.y10e_c00473{bottom:190.021643pt;}
.y10d_c00473{bottom:190.593611pt;}
.y10c_c00473{bottom:191.308128pt;}
.y10b_c00473{bottom:191.904181pt;}
.y10a_c00473{bottom:192.429280pt;}
.y109_c00473{bottom:192.917707pt;}
.y108_c00473{bottom:193.068960pt;}
.y107_c00473{bottom:193.209333pt;}
.yc5_c00473{bottom:194.572840pt;}
.yc4_c00473{bottom:195.254600pt;}
.yc3_c00473{bottom:196.151840pt;}
.yc2_c00473{bottom:196.635960pt;}
.yc1_c00473{bottom:197.536200pt;}
.yc0_c00473{bottom:197.875320pt;}
.ybf_c00473{bottom:198.753320pt;}
.ybe_c00473{bottom:199.208000pt;}
.y106_c00473{bottom:206.281333pt;}
.ybd_c00473{bottom:209.898667pt;}
.yd3_c00473{bottom:223.550667pt;}
.ybc_c00473{bottom:227.549655pt;}
.ybb_c00473{bottom:228.950767pt;}
.yba_c00473{bottom:229.858792pt;}
.yb9_c00473{bottom:230.882065pt;}
.y105_c00473{bottom:237.958053pt;}
.y104_c00473{bottom:238.042307pt;}
.y103_c00473{bottom:238.333333pt;}
.y102_c00473{bottom:238.888187pt;}
.y101_c00473{bottom:239.308440pt;}
.y100_c00473{bottom:239.446760pt;}
.yff_c00473{bottom:239.969013pt;}
.yfe_c00473{bottom:240.026500pt;}
.yfd_c00473{bottom:240.418467pt;}
.yfc_c00473{bottom:240.720827pt;}
.yb8_c00473{bottom:241.848477pt;}
.yb7_c00473{bottom:242.983073pt;}
.yb6_c00473{bottom:243.930059pt;}
.yb5_c00473{bottom:244.935121pt;}
.yb4_c00473{bottom:245.350943pt;}
.yb3_c00473{bottom:245.898037pt;}
.yb2_c00473{bottom:246.037895pt;}
.yb1_c00473{bottom:246.293095pt;}
.yb0_c00473{bottom:246.964000pt;}
.yfb_c00473{bottom:253.836073pt;}
.yfa_c00473{bottom:254.416033pt;}
.yf9_c00473{bottom:254.593053pt;}
.yf8_c00473{bottom:255.096513pt;}
.yf7_c00473{bottom:255.543133pt;}
.yf6_c00473{bottom:255.988833pt;}
.yf5_c00473{bottom:256.233713pt;}
.yf4_c00473{bottom:256.561333pt;}
.yaf_c00473{bottom:257.900407pt;}
.yae_c00473{bottom:258.069772pt;}
.yad_c00473{bottom:258.646328pt;}
.yac_c00473{bottom:259.078036pt;}
.yab_c00473{bottom:259.938140pt;}
.yaa_c00473{bottom:260.748704pt;}
.ya9_c00473{bottom:261.252507pt;}
.ya8_c00473{bottom:262.320921pt;}
.yf3_c00473{bottom:269.620873pt;}
.yf2_c00473{bottom:270.502833pt;}
.yf1_c00473{bottom:270.775813pt;}
.yf0_c00473{bottom:271.482253pt;}
.yef_c00473{bottom:271.899593pt;}
.yee_c00473{bottom:272.256173pt;}
.yed_c00473{bottom:272.518413pt;}
.yec_c00473{bottom:272.641333pt;}
.ya7_c00473{bottom:274.227044pt;}
.ya6_c00473{bottom:274.668399pt;}
.ya5_c00473{bottom:275.313932pt;}
.ya4_c00473{bottom:275.629369pt;}
.ya3_c00473{bottom:276.109732pt;}
.ya2_c00473{bottom:276.794273pt;}
.ya1_c00473{bottom:278.164000pt;}
.ye4_c00473{bottom:284.583787pt;}
.ye3_c00473{bottom:285.228373pt;}
.yeb_c00473{bottom:285.447800pt;}
.yea_c00473{bottom:285.849964pt;}
.ye2_c00473{bottom:286.204480pt;}
.ye9_c00473{bottom:286.808936pt;}
.ye8_c00473{bottom:287.409088pt;}
.ye7_c00473{bottom:287.586944pt;}
.ye1_c00473{bottom:287.876640pt;}
.ye6_c00473{bottom:288.568260pt;}
.ye0_c00473{bottom:288.713493pt;}
.ye5_c00473{bottom:289.204000pt;}
.ydf_c00473{bottom:289.748320pt;}
.yde_c00473{bottom:290.570187pt;}
.ydd_c00473{bottom:291.381333pt;}
.ya0_c00473{bottom:322.442667pt;}
.ydc_c00473{bottom:334.667680pt;}
.ydb_c00473{bottom:335.605048pt;}
.yda_c00473{bottom:336.067600pt;}
.yd9_c00473{bottom:336.490888pt;}
.yd8_c00473{bottom:336.940168pt;}
.yd7_c00473{bottom:337.622080pt;}
.yd6_c00473{bottom:338.788912pt;}
.yd5_c00473{bottom:339.233344pt;}
.yd4_c00473{bottom:339.844000pt;}
.y9f_c00473{bottom:356.236185pt;}
.y9e_c00473{bottom:356.810893pt;}
.y9d_c00473{bottom:357.514487pt;}
.y9c_c00473{bottom:358.466893pt;}
.y9b_c00473{bottom:358.949795pt;}
.y9a_c00473{bottom:360.241669pt;}
.y99_c00473{bottom:376.612468pt;}
.y98_c00473{bottom:376.900992pt;}
.y97_c00473{bottom:377.840435pt;}
.y96_c00473{bottom:378.847832pt;}
.y95_c00473{bottom:379.296360pt;}
.y94_c00473{bottom:380.525709pt;}
.y93_c00473{bottom:380.921333pt;}
.y92_c00473{bottom:395.879027pt;}
.y91_c00473{bottom:396.515463pt;}
.y90_c00473{bottom:396.821821pt;}
.y8f_c00473{bottom:397.305955pt;}
.y8e_c00473{bottom:397.558176pt;}
.y8d_c00473{bottom:398.042417pt;}
.y8c_c00473{bottom:398.853519pt;}
.y8b_c00473{bottom:399.134537pt;}
.y8a_c00473{bottom:400.077884pt;}
.y89_c00473{bottom:416.419577pt;}
.y88_c00473{bottom:416.871192pt;}
.y87_c00473{bottom:417.179711pt;}
.y86_c00473{bottom:417.439279pt;}
.y85_c00473{bottom:417.963456pt;}
.y84_c00473{bottom:418.291709pt;}
.y83_c00473{bottom:418.799645pt;}
.y82_c00473{bottom:419.307665pt;}
.y81_c00473{bottom:419.415891pt;}
.y80_c00473{bottom:419.485752pt;}
.y7f_c00473{bottom:419.997241pt;}
.y7e_c00473{bottom:436.256684pt;}
.y7d_c00473{bottom:436.616329pt;}
.y7c_c00473{bottom:436.703861pt;}
.y7b_c00473{bottom:437.324639pt;}
.y7a_c00473{bottom:437.522651pt;}
.y79_c00473{bottom:437.924304pt;}
.y78_c00473{bottom:438.197857pt;}
.y77_c00473{bottom:438.533655pt;}
.y76_c00473{bottom:439.186189pt;}
.y75_c00473{bottom:439.481023pt;}
.y74_c00473{bottom:439.853679pt;}
.y73_c00473{bottom:440.397677pt;}
.y72_c00473{bottom:456.662291pt;}
.y71_c00473{bottom:457.007905pt;}
.y70_c00473{bottom:457.335829pt;}
.y6f_c00473{bottom:457.646361pt;}
.y6e_c00473{bottom:457.863853pt;}
.y6d_c00473{bottom:458.083145pt;}
.y6c_c00473{bottom:458.650320pt;}
.y6b_c00473{bottom:458.885191pt;}
.y6a_c00473{bottom:459.236099pt;}
.y69_c00473{bottom:459.494889pt;}
.y68_c00473{bottom:459.795808pt;}
.y67_c00473{bottom:460.078868pt;}
.y66_c00473{bottom:476.370543pt;}
.y65_c00473{bottom:476.695135pt;}
.y64_c00473{bottom:477.366273pt;}
.y63_c00473{bottom:477.793965pt;}
.y62_c00473{bottom:478.133297pt;}
.y61_c00473{bottom:478.501991pt;}
.y60_c00473{bottom:479.343917pt;}
.y5f_c00473{bottom:479.440379pt;}
.y5e_c00473{bottom:479.917381pt;}
.y5d_c00473{bottom:480.479395pt;}
.y5c_c00473{bottom:498.024449pt;}
.y5b_c00473{bottom:498.496447pt;}
.y5a_c00473{bottom:498.921324pt;}
.y59_c00473{bottom:499.185216pt;}
.y58_c00473{bottom:499.410305pt;}
.y57_c00473{bottom:499.724595pt;}
.y56_c00473{bottom:500.044933pt;}
.y55_c00473{bottom:500.306401pt;}
.y54_c00473{bottom:500.675876pt;}
.y53_c00473{bottom:501.238755pt;}
.y52_c00473{bottom:501.840424pt;}
.y51_c00473{bottom:520.054153pt;}
.y50_c00473{bottom:521.488261pt;}
.y4f_c00473{bottom:521.846617pt;}
.y4e_c00473{bottom:522.170677pt;}
.y4d_c00473{bottom:522.371257pt;}
.y4c_c00473{bottom:522.721333pt;}
.y4b_c00473{bottom:540.849773pt;}
.y4a_c00473{bottom:541.584507pt;}
.y49_c00473{bottom:541.774400pt;}
.y48_c00473{bottom:542.319120pt;}
.y47_c00473{bottom:542.678667pt;}
.y46_c00473{bottom:542.934973pt;}
.y45_c00473{bottom:543.378027pt;}
.y44_c00473{bottom:543.560280pt;}
.y43_c00473{bottom:543.839640pt;}
.y42_c00473{bottom:559.443680pt;}
.y41_c00473{bottom:559.792307pt;}
.y40_c00473{bottom:559.972280pt;}
.y3f_c00473{bottom:560.339413pt;}
.y3e_c00473{bottom:560.752240pt;}
.y3d_c00473{bottom:561.033480pt;}
.y3c_c00473{bottom:561.367133pt;}
.y3b_c00473{bottom:561.745880pt;}
.y3a_c00473{bottom:561.955053pt;}
.y39_c00473{bottom:562.305080pt;}
.y38_c00473{bottom:562.521507pt;}
.y37_c00473{bottom:562.845640pt;}
.y36_c00473{bottom:563.039907pt;}
.y35_c00473{bottom:580.250560pt;}
.y34_c00473{bottom:580.382893pt;}
.y33_c00473{bottom:580.772800pt;}
.y32_c00473{bottom:581.098893pt;}
.y31_c00473{bottom:581.281307pt;}
.y30_c00473{bottom:581.670613pt;}
.y2f_c00473{bottom:581.904920pt;}
.y2e_c00473{bottom:582.347240pt;}
.y2d_c00473{bottom:582.680560pt;}
.y2c_c00473{bottom:583.081813pt;}
.y2b_c00473{bottom:583.304853pt;}
.y2a_c00473{bottom:583.921333pt;}
.y29_c00473{bottom:600.005333pt;}
.y28_c00473{bottom:600.798667pt;}
.y27_c00473{bottom:601.396000pt;}
.y26_c00473{bottom:601.621333pt;}
.y25_c00473{bottom:602.116000pt;}
.y24_c00473{bottom:602.325333pt;}
.y23_c00473{bottom:602.572000pt;}
.y22_c00473{bottom:603.078667pt;}
.y21_c00473{bottom:603.316000pt;}
.y20_c00473{bottom:603.841333pt;}
.y1f_c00473{bottom:620.596000pt;}
.y1e_c00473{bottom:621.301333pt;}
.y1d_c00473{bottom:621.773333pt;}
.y1c_c00473{bottom:622.280000pt;}
.y1b_c00473{bottom:622.430667pt;}
.y1a_c00473{bottom:622.865333pt;}
.y19_c00473{bottom:623.516000pt;}
.y18_c00473{bottom:624.241333pt;}
.y17_c00473{bottom:641.310667pt;}
.y16_c00473{bottom:641.598667pt;}
.y15_c00473{bottom:641.842667pt;}
.y14_c00473{bottom:642.012000pt;}
.y13_c00473{bottom:642.474667pt;}
.y12_c00473{bottom:642.750667pt;}
.y11_c00473{bottom:643.077333pt;}
.y10_c00473{bottom:643.336000pt;}
.yf_c00473{bottom:643.680000pt;}
.ye_c00473{bottom:662.366667pt;}
.yd_c00473{bottom:662.581333pt;}
.yc_c00473{bottom:663.120000pt;}
.yb_c00473{bottom:663.336000pt;}
.ya_c00473{bottom:663.622667pt;}
.y9_c00473{bottom:663.830667pt;}
.y8_c00473{bottom:664.360000pt;}
.y7_c00473{bottom:664.673333pt;}
.y6_c00473{bottom:664.830667pt;}
.y5_c00473{bottom:665.042667pt;}
.y4_c00473{bottom:684.360000pt;}
.y3_c00473{bottom:704.613333pt;}
.y2_c00473{bottom:724.593333pt;}
.y1_c00473{bottom:745.440000pt;}
.ha_c00473{height:19.600000pt;}
.h14_c00473{height:33.600000pt;}
.h23_c00473{height:38.271564pt;}
.h1a_c00473{height:39.217636pt;}
.h22_c00473{height:42.000000pt;}
.h20_c00473{height:42.004725pt;}
.h1c_c00473{height:42.933333pt;}
.h24_c00473{height:42.938828pt;}
.h1f_c00473{height:42.942799pt;}
.h16_c00473{height:42.944688pt;}
.h15_c00473{height:43.878268pt;}
.h19_c00473{height:44.800000pt;}
.h1b_c00473{height:44.811848pt;}
.h18_c00473{height:44.818834pt;}
.h26_c00473{height:45.739941pt;}
.h17_c00473{height:45.752560pt;}
.h21_c00473{height:46.671916pt;}
.h25_c00473{height:47.606878pt;}
.h8_c00473{height:51.333333pt;}
.h9_c00473{height:55.066667pt;}
.h6_c00473{height:58.800000pt;}
.h11_c00473{height:59.735752pt;}
.hb_c00473{height:59.736320pt;}
.h3_c00473{height:60.666667pt;}
.h5_c00473{height:61.600000pt;}
.hf_c00473{height:61.602495pt;}
.h13_c00473{height:61.608901pt;}
.h7_c00473{height:62.533333pt;}
.h10_c00473{height:62.535866pt;}
.h2_c00473{height:63.466667pt;}
.hd_c00473{height:63.469237pt;}
.hc_c00473{height:63.469840pt;}
.h12_c00473{height:63.475837pt;}
.h1d_c00473{height:63.476947pt;}
.he_c00473{height:64.402608pt;}
.h4_c00473{height:67.200000pt;}
.h1e_c00473{height:92.381564pt;}
.h0_c00473{height:896.400000pt;}
.h1_c00473{height:896.666667pt;}
.w1_c00473{width:622.666667pt;}
.w0_c00473{width:622.800000pt;}
.x0_c00473{left:0.000000pt;}
.x7d_c00473{left:125.321333pt;}
.x80_c00473{left:127.468937pt;}
.x99_c00473{left:137.722667pt;}
.x87_c00473{left:139.200000pt;}
.x8a_c00473{left:140.417333pt;}
.x1c_c00473{left:147.840000pt;}
.x7c_c00473{left:150.240000pt;}
.x1_c00473{left:153.360000pt;}
.x13_c00473{left:154.800000pt;}
.x67_c00473{left:156.116381pt;}
.xa_c00473{left:157.680000pt;}
.x24_c00473{left:158.786667pt;}
.x84_c00473{left:164.037333pt;}
.x81_c00473{left:170.209641pt;}
.x47_c00473{left:177.229067pt;}
.x75_c00473{left:179.093333pt;}
.xae_c00473{left:180.027509pt;}
.x8b_c00473{left:180.988000pt;}
.xb_c00473{left:182.160000pt;}
.x63_c00473{left:183.463832pt;}
.x7e_c00473{left:184.874667pt;}
.x88_c00473{left:186.720000pt;}
.x82_c00473{left:190.374055pt;}
.x2_c00473{left:191.280000pt;}
.x1d_c00473{left:192.720000pt;}
.x50_c00473{left:196.464333pt;}
.x6e_c00473{left:197.552879pt;}
.xaf_c00473{left:198.517141pt;}
.x25_c00473{left:199.808000pt;}
.x2b_c00473{left:201.054667pt;}
.x6f_c00473{left:202.944687pt;}
.x9a_c00473{left:204.351971pt;}
.x14_c00473{left:206.160000pt;}
.x38_c00473{left:210.137333pt;}
.x70_c00473{left:211.265720pt;}
.x55_c00473{left:212.252453pt;}
.x3c_c00473{left:214.182667pt;}
.x92_c00473{left:217.040000pt;}
.x33_c00473{left:218.748000pt;}
.x1e_c00473{left:221.760000pt;}
.x15_c00473{left:222.720000pt;}
.xc_c00473{left:223.680000pt;}
.x9b_c00473{left:225.252383pt;}
.x8c_c00473{left:227.133333pt;}
.x7a_c00473{left:229.952009pt;}
.x48_c00473{left:231.285067pt;}
.x8e_c00473{left:232.385179pt;}
.x2c_c00473{left:233.424000pt;}
.x26_c00473{left:234.608000pt;}
.x7f_c00473{left:235.522667pt;}
.x3d_c00473{left:236.486667pt;}
.x5d_c00473{left:237.655675pt;}
.x68_c00473{left:239.446881pt;}
.x5e_c00473{left:245.114077pt;}
.x86_c00473{left:247.312987pt;}
.x3_c00473{left:248.880000pt;}
.x71_c00473{left:250.377649pt;}
.x76_c00473{left:251.408000pt;}
.xd_c00473{left:252.480000pt;}
.x51_c00473{left:254.799173pt;}
.x7b_c00473{left:256.788889pt;}
.x16_c00473{left:259.440000pt;}
.x56_c00473{left:263.386196pt;}
.x85_c00473{left:264.553333pt;}
.x49_c00473{left:266.287733pt;}
.x4_c00473{left:268.560000pt;}
.x1f_c00473{left:271.200000pt;}
.x34_c00473{left:272.952000pt;}
.x2d_c00473{left:274.204000pt;}
.x3e_c00473{left:276.612000pt;}
.x77_c00473{left:277.792000pt;}
.x8d_c00473{left:279.766667pt;}
.x93_c00473{left:281.864000pt;}
.x39_c00473{left:284.529333pt;}
.x17_c00473{left:287.280000pt;}
.xe_c00473{left:289.680000pt;}
.x9c_c00473{left:291.392843pt;}
.x20_c00473{left:292.320000pt;}
.x27_c00473{left:293.414667pt;}
.x54_c00473{left:294.348000pt;}
.x57_c00473{left:297.030929pt;}
.xb0_c00473{left:298.614987pt;}
.x8f_c00473{left:300.050723pt;}
.x83_c00473{left:304.236780pt;}
.x5_c00473{left:305.760000pt;}
.x89_c00473{left:307.680000pt;}
.x2e_c00473{left:308.785333pt;}
.x3f_c00473{left:309.944000pt;}
.x6_c00473{left:313.200000pt;}
.x72_c00473{left:314.692667pt;}
.x28_c00473{left:316.485333pt;}
.x21_c00473{left:317.760000pt;}
.x94_c00473{left:319.748000pt;}
.x58_c00473{left:320.749164pt;}
.x35_c00473{left:321.749333pt;}
.x4a_c00473{left:325.079733pt;}
.x7_c00473{left:329.520000pt;}
.x78_c00473{left:337.050667pt;}
.x5f_c00473{left:338.290729pt;}
.x64_c00473{left:339.238369pt;}
.xa0_c00473{left:340.441333pt;}
.x90_c00473{left:342.960000pt;}
.x95_c00473{left:344.708000pt;}
.x52_c00473{left:345.946680pt;}
.xad_c00473{left:347.365333pt;}
.x29_c00473{left:348.374667pt;}
.x59_c00473{left:349.823303pt;}
.x8_c00473{left:352.800000pt;}
.x40_c00473{left:354.176000pt;}
.x69_c00473{left:356.092781pt;}
.xf_c00473{left:357.360000pt;}
.x18_c00473{left:359.280000pt;}
.x36_c00473{left:363.937333pt;}
.x2f_c00473{left:366.629333pt;}
.x96_c00473{left:368.224000pt;}
.xa2_c00473{left:370.714667pt;}
.x22_c00473{left:371.760000pt;}
.x10_c00473{left:375.840000pt;}
.x41_c00473{left:377.606667pt;}
.x3a_c00473{left:379.572000pt;}
.x6a_c00473{left:381.005671pt;}
.xb1_c00473{left:381.985333pt;}
.x4b_c00473{left:386.569067pt;}
.x30_c00473{left:387.746667pt;}
.x9_c00473{left:389.040000pt;}
.xa5_c00473{left:390.067967pt;}
.x79_c00473{left:392.312000pt;}
.x97_c00473{left:393.921333pt;}
.x60_c00473{left:397.291272pt;}
.x5a_c00473{left:398.790415pt;}
.x11_c00473{left:402.480000pt;}
.x19_c00473{left:403.680000pt;}
.x3b_c00473{left:405.840000pt;}
.x53_c00473{left:407.152120pt;}
.xb5_c00473{left:408.105432pt;}
.x73_c00473{left:409.062051pt;}
.x91_c00473{left:410.160000pt;}
.x42_c00473{left:416.537333pt;}
.x31_c00473{left:418.226667pt;}
.x5b_c00473{left:422.777983pt;}
.xa6_c00473{left:424.182947pt;}
.x9d_c00473{left:425.761333pt;}
.x4c_c00473{left:427.851733pt;}
.x12_c00473{left:432.720000pt;}
.x43_c00473{left:434.778667pt;}
.x65_c00473{left:436.929939pt;}
.x1a_c00473{left:438.240000pt;}
.xb2_c00473{left:441.956000pt;}
.x98_c00473{left:445.997333pt;}
.x23_c00473{left:447.120000pt;}
.x61_c00473{left:448.897412pt;}
.xb8_c00473{left:451.295637pt;}
.x32_c00473{left:454.226667pt;}
.x2a_c00473{left:456.014667pt;}
.xa7_c00473{left:457.064633pt;}
.x37_c00473{left:462.106667pt;}
.x4d_c00473{left:464.565067pt;}
.x44_c00473{left:467.388000pt;}
.x66_c00473{left:468.368041pt;}
.xb3_c00473{left:471.244000pt;}
.x62_c00473{left:473.851179pt;}
.x1b_c00473{left:476.640000pt;}
.xa3_c00473{left:480.092000pt;}
.x74_c00473{left:481.518101pt;}
.x4e_c00473{left:482.562400pt;}
.xaa_c00473{left:484.320000pt;}
.xa8_c00473{left:489.698320pt;}
.x6b_c00473{left:491.867667pt;}
.xab_c00473{left:496.800000pt;}
.x6c_c00473{left:499.815523pt;}
.xb6_c00473{left:503.156099pt;}
.x5c_c00473{left:504.355185pt;}
.x45_c00473{left:506.378667pt;}
.x9e_c00473{left:508.474667pt;}
.xb9_c00473{left:510.595973pt;}
.xa9_c00473{left:511.782993pt;}
.x4f_c00473{left:517.425067pt;}
.x46_c00473{left:519.612000pt;}
.xac_c00473{left:524.160000pt;}
.x9f_c00473{left:527.625333pt;}
.xb7_c00473{left:529.560099pt;}
.xa4_c00473{left:530.557333pt;}
.x6d_c00473{left:532.516268pt;}
.xb4_c00473{left:537.528000pt;}
.xa1_c00473{left:541.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m4d_c00474{transform:matrix(0.010190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010190,0.000000,0.000000,0.250000,0,0);}
.m45_c00474{transform:matrix(0.012795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012795,0.000000,0.000000,0.250000,0,0);}
.md5_c00474{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);}
.m9_c00474{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);}
.ma0_c00474{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);}
.mc7_c00474{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);}
.mc4_c00474{transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058085,0.000000,0.000000,0.250000,0,0);}
.m42_c00474{transform:matrix(0.067135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067135,0.000000,0.000000,0.250000,0,0);}
.mc5_c00474{transform:matrix(0.091835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091835,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.092535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092535,0.000000,0.000000,0.250000,0,0);}
.md0_c00474{transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092695,0.000000,0.000000,0.250000,0,0);}
.m65_c00474{transform:matrix(0.112380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112380,0.000000,0.000000,0.250000,0,0);}
.mc9_c00474{transform:matrix(0.133115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133115,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{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);}
.ma1_c00474{transform:matrix(0.138820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138820,0.000000,0.000000,0.250000,0,0);}
.mbd_c00474{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00474{transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140345,0.000000,0.000000,0.250000,0,0);}
.m63_c00474{transform:matrix(0.142920,-0.010895,0.019002,0.249277,0,0);-ms-transform:matrix(0.142920,-0.010895,0.019002,0.249277,0,0);-webkit-transform:matrix(0.142920,-0.010895,0.019002,0.249277,0,0);}
.m41_c00474{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);}
.ma2_c00474{transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);}
.mbb_c00474{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);}
.m18_c00474{transform:matrix(0.147420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147420,0.000000,0.000000,0.250000,0,0);}
.ma4_c00474{transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152790,0.000000,0.000000,0.250000,0,0);}
.ma5_c00474{transform:matrix(0.153870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153870,0.000000,0.000000,0.250000,0,0);}
.m88_c00474{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);}
.ma7_c00474{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);}
.ma3_c00474{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);}
.m3_c00474{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);}
.m8c_c00474{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);}
.m83_c00474{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);}
.mcf_c00474{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);}
.m74_c00474{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);}
.m76_c00474{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);}
.mac_c00474{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);}
.m1c_c00474{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);}
.m32_c00474{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);}
.ma8_c00474{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);}
.m7b_c00474{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);}
.ma9_c00474{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);}
.m2_c00474{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);}
.m78_c00474{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);}
.mbf_c00474{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);}
.m3c_c00474{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);}
.m46_c00474{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);}
.mc8_c00474{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);}
.m8e_c00474{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);}
.m31_c00474{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);}
.m68_c00474{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);}
.mcd_c00474{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);}
.m6d_c00474{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);}
.mb5_c00474{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);}
.m67_c00474{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);}
.m39_c00474{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);}
.md1_c00474{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);}
.m6f_c00474{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);}
.m1_c00474{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);}
.m75_c00474{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);}
.m6e_c00474{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);}
.m3e_c00474{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);}
.m71_c00474{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);}
.m7a_c00474{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);}
.m89_c00474{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);}
.maa_c00474{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);}
.m77_c00474{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);}
.m3f_c00474{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);}
.m69_c00474{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);}
.m14_c00474{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);}
.m35_c00474{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);}
.mb4_c00474{transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);}
.mb9_c00474{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);}
.mae_c00474{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);}
.m99_c00474{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);}
.mb0_c00474{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);}
.m56_c00474{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);}
.md3_c00474{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);}
.m2c_c00474{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);}
.m9d_c00474{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);}
.m8f_c00474{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);}
.m6_c00474{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);}
.mcc_c00474{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);}
.mdb_c00474{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);}
.mb3_c00474{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);}
.m7d_c00474{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);}
.m23_c00474{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);}
.m29_c00474{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);}
.m17_c00474{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);}
.maf_c00474{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);}
.mba_c00474{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);}
.m8d_c00474{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);}
.md_c00474{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);}
.mbe_c00474{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);}
.m8_c00474{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);}
.m7f_c00474{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);}
.mcb_c00474{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);}
.mda_c00474{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);}
.m95_c00474{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);}
.m7_c00474{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);}
.m90_c00474{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);}
.m1b_c00474{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);}
.m48_c00474{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);}
.m1a_c00474{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);}
.m86_c00474{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);}
.m19_c00474{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);}
.m33_c00474{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);}
.m9f_c00474{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);}
.mb2_c00474{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);}
.mb6_c00474{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);}
.m70_c00474{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);}
.m49_c00474{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);}
.m84_c00474{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);}
.m54_c00474{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);}
.md2_c00474{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);}
.m96_c00474{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m6a_c00474{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);}
.ma6_c00474{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);}
.m3d_c00474{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);}
.m59_c00474{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);}
.m9c_c00474{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);}
.m1f_c00474{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);}
.mb7_c00474{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);}
.m22_c00474{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);}
.m52_c00474{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);}
.m37_c00474{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);}
.md4_c00474{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);}
.m8b_c00474{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);}
.m21_c00474{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);}
.m6c_c00474{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);}
.mb_c00474{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);}
.mc1_c00474{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);}
.m94_c00474{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);}
.m82_c00474{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);}
.m93_c00474{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);}
.mb1_c00474{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_c00474{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);}
.mce_c00474{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);}
.m43_c00474{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);}
.m20_c00474{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);}
.m2d_c00474{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);}
.m28_c00474{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);}
.m38_c00474{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);}
.mc0_c00474{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);}
.md8_c00474{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);}
.mc3_c00474{transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219855,0.000000,0.000000,0.250000,0,0);}
.m7c_c00474{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);}
.m16_c00474{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);}
.m44_c00474{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);}
.m2f_c00474{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);}
.m85_c00474{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);}
.m64_c00474{transform:matrix(0.221936,-0.016918,0.019002,0.249277,0,0);-ms-transform:matrix(0.221936,-0.016918,0.019002,0.249277,0,0);-webkit-transform:matrix(0.221936,-0.016918,0.019002,0.249277,0,0);}
.m3b_c00474{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);}
.m26_c00474{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);}
.m25_c00474{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);}
.m97_c00474{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);}
.m92_c00474{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);}
.mdc_c00474{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);}
.m66_c00474{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);}
.m72_c00474{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);}
.m58_c00474{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);}
.m87_c00474{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);}
.m80_c00474{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);}
.me_c00474{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);}
.m1e_c00474{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);}
.m12_c00474{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);}
.m4_c00474{transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);}
.m91_c00474{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);}
.mc_c00474{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);}
.m2b_c00474{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);}
.md9_c00474{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);}
.m79_c00474{transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);}
.m36_c00474{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.mad_c00474{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m53_c00474{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);}
.m47_c00474{transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);}
.m57_c00474{transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);}
.mc2_c00474{transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{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);}
.mb8_c00474{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m13_c00474{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{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);}
.m6b_c00474{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);}
.m27_c00474{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m30_c00474{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);}
.m9b_c00474{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);}
.m7e_c00474{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);}
.m34_c00474{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);}
.ma_c00474{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);}
.m1d_c00474{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);}
.mab_c00474{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);}
.mca_c00474{transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);}
.m8a_c00474{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);}
.m81_c00474{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);}
.md7_c00474{transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);}
.md6_c00474{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m4c_c00474{transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);}
.m98_c00474{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m55_c00474{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m5d_c00474{transform:matrix(0.269349,-0.020532,0.019002,0.249277,0,0);-ms-transform:matrix(0.269349,-0.020532,0.019002,0.249277,0,0);-webkit-transform:matrix(0.269349,-0.020532,0.019002,0.249277,0,0);}
.m24_c00474{transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{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);}
.m73_c00474{transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290855,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00474{transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00474{transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300280,0.000000,0.000000,0.250000,0,0);}
.m9a_c00474{transform:matrix(0.305365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00474{transform:matrix(0.305695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305695,0.000000,0.000000,0.250000,0,0);}
.m50_c00474{transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319125,0.000000,0.000000,0.250000,0,0);}
.m4a_c00474{transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);}
.m5f_c00474{transform:matrix(0.336364,-0.025641,0.019002,0.249277,0,0);-ms-transform:matrix(0.336364,-0.025641,0.019002,0.249277,0,0);-webkit-transform:matrix(0.336364,-0.025641,0.019002,0.249277,0,0);}
.m5c_c00474{transform:matrix(0.346824,-0.026438,0.019002,0.249277,0,0);-ms-transform:matrix(0.346824,-0.026438,0.019002,0.249277,0,0);-webkit-transform:matrix(0.346824,-0.026438,0.019002,0.249277,0,0);}
.m10_c00474{transform:matrix(0.373260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373260,0.000000,0.000000,0.250000,0,0);}
.m5a_c00474{transform:matrix(0.377320,-0.028763,0.019002,0.249277,0,0);-ms-transform:matrix(0.377320,-0.028763,0.019002,0.249277,0,0);-webkit-transform:matrix(0.377320,-0.028763,0.019002,0.249277,0,0);}
.m62_c00474{transform:matrix(0.379953,-0.028963,0.019002,0.249277,0,0);-ms-transform:matrix(0.379953,-0.028963,0.019002,0.249277,0,0);-webkit-transform:matrix(0.379953,-0.028963,0.019002,0.249277,0,0);}
.m60_c00474{transform:matrix(0.395981,-0.030185,0.019002,0.249277,0,0);-ms-transform:matrix(0.395981,-0.030185,0.019002,0.249277,0,0);-webkit-transform:matrix(0.395981,-0.030185,0.019002,0.249277,0,0);}
.m61_c00474{transform:matrix(0.407617,-0.031072,0.019002,0.249277,0,0);-ms-transform:matrix(0.407617,-0.031072,0.019002,0.249277,0,0);-webkit-transform:matrix(0.407617,-0.031072,0.019002,0.249277,0,0);}
.m5e_c00474{transform:matrix(0.411187,-0.031344,0.019002,0.249277,0,0);-ms-transform:matrix(0.411187,-0.031344,0.019002,0.249277,0,0);-webkit-transform:matrix(0.411187,-0.031344,0.019002,0.249277,0,0);}
.m2a_c00474{transform:matrix(0.414480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414480,0.000000,0.000000,0.250000,0,0);}
.m5b_c00474{transform:matrix(0.556874,-0.042450,0.019002,0.249277,0,0);-ms-transform:matrix(0.556874,-0.042450,0.019002,0.249277,0,0);-webkit-transform:matrix(0.556874,-0.042450,0.019002,0.249277,0,0);}
.m51_c00474{transform:matrix(0.564470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564470,0.000000,0.000000,0.250000,0,0);}
.m2e_c00474{transform:matrix(0.824570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824570,0.000000,0.000000,0.250000,0,0);}
.m4e_c00474{transform:matrix(1.702600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.702600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.702600,0.000000,0.000000,0.250000,0,0);}
.v1_c00474{vertical-align:-1.458000px;}
.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;}
._0_c00474{width:4.260566px;}
.fc0_c00474{color:transparent;}
.fs12_c00474{font-size:14.700000px;}
.fs9_c00474{font-size:38.845823px;}
.fsf_c00474{font-size:49.350000px;}
.fsc_c00474{font-size:50.400000px;}
.fsd_c00474{font-size:51.450000px;}
.fse_c00474{font-size:52.500000px;}
.fs13_c00474{font-size:53.550000px;}
.fsb_c00474{font-size:55.650000px;}
.fs14_c00474{font-size:57.750000px;}
.fs11_c00474{font-size:58.800000px;}
.fs8_c00474{font-size:59.850000px;}
.fs1_c00474{font-size:66.150000px;}
.fs3_c00474{font-size:67.200000px;}
.fs0_c00474{font-size:69.300000px;}
.fs5_c00474{font-size:70.350000px;}
.fs4_c00474{font-size:71.400000px;}
.fs2_c00474{font-size:75.600000px;}
.fs10_c00474{font-size:84.000000px;}
.fsa_c00474{font-size:93.439954px;}
.fs7_c00474{font-size:95.550000px;}
.fs6_c00474{font-size:124.950000px;}
.y0_c00474{bottom:0.000000px;}
.y42_c00474{bottom:169.203000px;}
.y41_c00474{bottom:180.790500px;}
.y44_c00474{bottom:186.153000px;}
.y40_c00474{bottom:186.556500px;}
.y3f_c00474{bottom:201.667500px;}
.y43_c00474{bottom:203.877000px;}
.y3b_c00474{bottom:205.057500px;}
.y3a_c00474{bottom:222.510000px;}
.y39_c00474{bottom:240.528000px;}
.y38_c00474{bottom:258.076500px;}
.y3e_c00474{bottom:274.902000px;}
.y37_c00474{bottom:275.782500px;}
.y3d_c00474{bottom:292.807500px;}
.y36_c00474{bottom:293.602500px;}
.y3c_c00474{bottom:310.239000px;}
.y35_c00474{bottom:311.004000px;}
.y34_c00474{bottom:367.540500px;}
.y33_c00474{bottom:390.321000px;}
.y28_c00474{bottom:426.867000px;}
.y29_c00474{bottom:433.347216px;}
.y31_c00474{bottom:435.095593px;}
.y32_c00474{bottom:435.105897px;}
.y2a_c00474{bottom:436.645806px;}
.y2b_c00474{bottom:438.498192px;}
.y2c_c00474{bottom:441.426396px;}
.y2d_c00474{bottom:444.230568px;}
.y2e_c00474{bottom:447.481050px;}
.y2f_c00474{bottom:450.553008px;}
.y30_c00474{bottom:452.161890px;}
.y27_c00474{bottom:480.012000px;}
.y26_c00474{bottom:480.333000px;}
.y25_c00474{bottom:480.681000px;}
.y24_c00474{bottom:481.153500px;}
.y23_c00474{bottom:481.396500px;}
.y22_c00474{bottom:481.636500px;}
.y21_c00474{bottom:482.266500px;}
.y20_c00474{bottom:482.607000px;}
.y1f_c00474{bottom:482.913000px;}
.y1e_c00474{bottom:484.113000px;}
.y1d_c00474{bottom:505.029000px;}
.y1c_c00474{bottom:542.373000px;}
.y1a_c00474{bottom:646.273500px;}
.y1b_c00474{bottom:668.157000px;}
.y19_c00474{bottom:669.499500px;}
.y18_c00474{bottom:691.162500px;}
.y17_c00474{bottom:713.221500px;}
.y16_c00474{bottom:713.406000px;}
.y15_c00474{bottom:713.790000px;}
.y14_c00474{bottom:713.982000px;}
.y13_c00474{bottom:714.708000px;}
.y12_c00474{bottom:715.162500px;}
.y11_c00474{bottom:715.386000px;}
.y10_c00474{bottom:715.702500px;}
.yf_c00474{bottom:716.040000px;}
.ye_c00474{bottom:737.211000px;}
.yd_c00474{bottom:759.582000px;}
.yc_c00474{bottom:782.899500px;}
.yb_c00474{bottom:804.009000px;}
.ya_c00474{bottom:804.211500px;}
.y9_c00474{bottom:804.396000px;}
.y8_c00474{bottom:804.849000px;}
.y7_c00474{bottom:804.930000px;}
.y6_c00474{bottom:805.252500px;}
.y5_c00474{bottom:805.654500px;}
.y4_c00474{bottom:806.208000px;}
.y3_c00474{bottom:806.536500px;}
.y2_c00474{bottom:806.761500px;}
.y1_c00474{bottom:828.153000px;}
.h14_c00474{height:14.700000px;}
.hb_c00474{height:38.845823px;}
.h11_c00474{height:49.350000px;}
.he_c00474{height:50.400000px;}
.hf_c00474{height:51.450000px;}
.h10_c00474{height:52.500000px;}
.h15_c00474{height:53.550000px;}
.hd_c00474{height:55.650000px;}
.h16_c00474{height:57.750000px;}
.h13_c00474{height:58.800000px;}
.ha_c00474{height:59.850000px;}
.h3_c00474{height:66.150000px;}
.h5_c00474{height:67.200000px;}
.h2_c00474{height:69.300000px;}
.h7_c00474{height:70.350000px;}
.h6_c00474{height:71.400000px;}
.h4_c00474{height:75.600000px;}
.h12_c00474{height:84.000000px;}
.hc_c00474{height:93.439954px;}
.h9_c00474{height:95.550000px;}
.h8_c00474{height:124.950000px;}
.h1_c00474{height:1005.000000px;}
.h0_c00474{height:1005.150000px;}
.w0_c00474{width:715.200000px;}
.w1_c00474{width:715.500000px;}
.x0_c00474{left:0.000000px;}
.x80_c00474{left:98.010000px;}
.x5a_c00474{left:104.220000px;}
.x6e_c00474{left:123.390000px;}
.x60_c00474{left:125.820000px;}
.x69_c00474{left:128.250000px;}
.x1_c00474{left:132.570000px;}
.x6f_c00474{left:134.460000px;}
.x27_c00474{left:137.053500px;}
.xb_c00474{left:138.673500px;}
.x21_c00474{left:140.400000px;}
.x49_c00474{left:143.368500px;}
.x72_c00474{left:146.340000px;}
.x64_c00474{left:150.660000px;}
.x73_c00474{left:153.090000px;}
.x1c_c00474{left:158.490000px;}
.x5b_c00474{left:160.920000px;}
.x2_c00474{left:163.350000px;}
.x15_c00474{left:165.508500px;}
.xc_c00474{left:166.761000px;}
.x61_c00474{left:169.290000px;}
.x3e_c00474{left:170.910000px;}
.x28_c00474{left:174.577500px;}
.x5c_c00474{left:177.930000px;}
.x1d_c00474{left:181.980000px;}
.x16_c00474{left:183.328500px;}
.x2e_c00474{left:186.031500px;}
.x6a_c00474{left:187.110000px;}
.x7d_c00474{left:190.620000px;}
.x62_c00474{left:194.670000px;}
.x33_c00474{left:199.801500px;}
.x6b_c00474{left:204.930000px;}
.xd_c00474{left:207.763500px;}
.x29_c00474{left:209.701500px;}
.x5d_c00474{left:211.140000px;}
.x67_c00474{left:212.760000px;}
.x83_c00474{left:215.460000px;}
.x36_c00474{left:217.891500px;}
.x3_c00474{left:219.510000px;}
.x53_c00474{left:220.860000px;}
.x7e_c00474{left:228.150000px;}
.x37_c00474{left:229.231500px;}
.x34_c00474{left:230.581500px;}
.x84_c00474{left:231.930000px;}
.x17_c00474{left:233.548500px;}
.x2f_c00474{left:235.981500px;}
.x41_c00474{left:237.870000px;}
.x85_c00474{left:241.380000px;}
.x54_c00474{left:243.540000px;}
.x6c_c00474{left:244.620000px;}
.x22_c00474{left:245.970000px;}
.x5e_c00474{left:248.400000px;}
.x43_c00474{left:249.939000px;}
.x81_c00474{left:252.180000px;}
.x38_c00474{left:260.011500px;}
.x4_c00474{left:263.520000px;}
.x1e_c00474{left:265.410000px;}
.x6d_c00474{left:267.570000px;}
.x35_c00474{left:272.161500px;}
.x5f_c00474{left:274.050000px;}
.x63_c00474{left:275.670000px;}
.xe_c00474{left:276.918000px;}
.x5_c00474{left:284.040000px;}
.x65_c00474{left:290.790000px;}
.x70_c00474{left:292.680000px;}
.x4a_c00474{left:295.951374px;}
.x7f_c00474{left:298.620000px;}
.x23_c00474{left:300.780000px;}
.x82_c00474{left:302.400000px;}
.x55_c00474{left:306.450000px;}
.x44_c00474{left:308.745000px;}
.x66_c00474{left:315.360000px;}
.x42_c00474{left:318.330000px;}
.x68_c00474{left:319.950000px;}
.x87_c00474{left:322.920000px;}
.x39_c00474{left:324.271500px;}
.x18_c00474{left:325.618500px;}
.xf_c00474{left:327.112500px;}
.x86_c00474{left:329.670000px;}
.x30_c00474{left:331.291500px;}
.x4b_c00474{left:334.364787px;}
.x6_c00474{left:335.880000px;}
.x88_c00474{left:339.120000px;}
.x3a_c00474{left:341.820000px;}
.x71_c00474{left:343.170000px;}
.x56_c00474{left:345.870000px;}
.x4f_c00474{left:347.220000px;}
.x24_c00474{left:353.430000px;}
.x50_c00474{left:356.400000px;}
.x7_c00474{left:360.720000px;}
.x2a_c00474{left:365.713500px;}
.x10_c00474{left:367.417500px;}
.x3f_c00474{left:369.090000px;}
.x4c_c00474{left:371.151096px;}
.x1f_c00474{left:376.110000px;}
.x11_c00474{left:377.590500px;}
.x57_c00474{left:379.890000px;}
.x2b_c00474{left:387.066000px;}
.x3b_c00474{left:390.690000px;}
.x58_c00474{left:395.010000px;}
.x20_c00474{left:396.360000px;}
.x8_c00474{left:397.980000px;}
.x76_c00474{left:400.410000px;}
.x25_c00474{left:401.490000px;}
.x31_c00474{left:405.811500px;}
.x45_c00474{left:409.978500px;}
.x3c_c00474{left:413.640000px;}
.x19_c00474{left:415.258500px;}
.x59_c00474{left:417.690000px;}
.x77_c00474{left:422.550000px;}
.x89_c00474{left:426.060000px;}
.x7a_c00474{left:427.140000px;}
.x2c_c00474{left:429.717000px;}
.x51_c00474{left:432.540000px;}
.x12_c00474{left:434.278500px;}
.x1a_c00474{left:436.048500px;}
.x74_c00474{left:447.120000px;}
.x2d_c00474{left:450.238500px;}
.x9_c00474{left:451.440000px;}
.x46_c00474{left:452.911500px;}
.x4d_c00474{left:454.091526px;}
.x13_c00474{left:457.267500px;}
.x1b_c00474{left:461.968500px;}
.x52_c00474{left:468.180000px;}
.x32_c00474{left:469.531500px;}
.x3d_c00474{left:471.690000px;}
.x26_c00474{left:473.580000px;}
.x4e_c00474{left:475.197518px;}
.x14_c00474{left:482.622000px;}
.x47_c00474{left:484.551000px;}
.x40_c00474{left:497.340000px;}
.x8b_c00474{left:503.820000px;}
.xa_c00474{left:505.440000px;}
.x7b_c00474{left:512.190000px;}
.x48_c00474{left:513.696000px;}
.x8a_c00474{left:515.160000px;}
.x8c_c00474{left:522.720000px;}
.x78_c00474{left:524.880000px;}
.x75_c00474{left:532.980000px;}
.x79_c00474{left:539.460000px;}
.x7c_c00474{left:553.770000px;}
.x8d_c00474{left:559.440000px;}
@media print{
.v1_c00474{vertical-align:-1.296000pt;}
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
._0_c00474{width:3.787170pt;}
.fs12_c00474{font-size:13.066667pt;}
.fs9_c00474{font-size:34.529621pt;}
.fsf_c00474{font-size:43.866667pt;}
.fsc_c00474{font-size:44.800000pt;}
.fsd_c00474{font-size:45.733333pt;}
.fse_c00474{font-size:46.666667pt;}
.fs13_c00474{font-size:47.600000pt;}
.fsb_c00474{font-size:49.466667pt;}
.fs14_c00474{font-size:51.333333pt;}
.fs11_c00474{font-size:52.266667pt;}
.fs8_c00474{font-size:53.200000pt;}
.fs1_c00474{font-size:58.800000pt;}
.fs3_c00474{font-size:59.733333pt;}
.fs0_c00474{font-size:61.600000pt;}
.fs5_c00474{font-size:62.533333pt;}
.fs4_c00474{font-size:63.466667pt;}
.fs2_c00474{font-size:67.200000pt;}
.fs10_c00474{font-size:74.666667pt;}
.fsa_c00474{font-size:83.057737pt;}
.fs7_c00474{font-size:84.933333pt;}
.fs6_c00474{font-size:111.066667pt;}
.y0_c00474{bottom:0.000000pt;}
.y42_c00474{bottom:150.402667pt;}
.y41_c00474{bottom:160.702667pt;}
.y44_c00474{bottom:165.469333pt;}
.y40_c00474{bottom:165.828000pt;}
.y3f_c00474{bottom:179.260000pt;}
.y43_c00474{bottom:181.224000pt;}
.y3b_c00474{bottom:182.273333pt;}
.y3a_c00474{bottom:197.786667pt;}
.y39_c00474{bottom:213.802667pt;}
.y38_c00474{bottom:229.401333pt;}
.y3e_c00474{bottom:244.357333pt;}
.y37_c00474{bottom:245.140000pt;}
.y3d_c00474{bottom:260.273333pt;}
.y36_c00474{bottom:260.980000pt;}
.y3c_c00474{bottom:275.768000pt;}
.y35_c00474{bottom:276.448000pt;}
.y34_c00474{bottom:326.702667pt;}
.y33_c00474{bottom:346.952000pt;}
.y28_c00474{bottom:379.437333pt;}
.y29_c00474{bottom:385.197525pt;}
.y31_c00474{bottom:386.751639pt;}
.y32_c00474{bottom:386.760797pt;}
.y2a_c00474{bottom:388.129605pt;}
.y2b_c00474{bottom:389.776171pt;}
.y2c_c00474{bottom:392.379019pt;}
.y2d_c00474{bottom:394.871616pt;}
.y2e_c00474{bottom:397.760933pt;}
.y2f_c00474{bottom:400.491563pt;}
.y30_c00474{bottom:401.921680pt;}
.y27_c00474{bottom:426.677333pt;}
.y26_c00474{bottom:426.962667pt;}
.y25_c00474{bottom:427.272000pt;}
.y24_c00474{bottom:427.692000pt;}
.y23_c00474{bottom:427.908000pt;}
.y22_c00474{bottom:428.121333pt;}
.y21_c00474{bottom:428.681333pt;}
.y20_c00474{bottom:428.984000pt;}
.y1f_c00474{bottom:429.256000pt;}
.y1e_c00474{bottom:430.322667pt;}
.y1d_c00474{bottom:448.914667pt;}
.y1c_c00474{bottom:482.109333pt;}
.y1a_c00474{bottom:574.465333pt;}
.y1b_c00474{bottom:593.917333pt;}
.y19_c00474{bottom:595.110667pt;}
.y18_c00474{bottom:614.366667pt;}
.y17_c00474{bottom:633.974667pt;}
.y16_c00474{bottom:634.138667pt;}
.y15_c00474{bottom:634.480000pt;}
.y14_c00474{bottom:634.650667pt;}
.y13_c00474{bottom:635.296000pt;}
.y12_c00474{bottom:635.700000pt;}
.y11_c00474{bottom:635.898667pt;}
.y10_c00474{bottom:636.180000pt;}
.yf_c00474{bottom:636.480000pt;}
.ye_c00474{bottom:655.298667pt;}
.yd_c00474{bottom:675.184000pt;}
.yc_c00474{bottom:695.910667pt;}
.yb_c00474{bottom:714.674667pt;}
.ya_c00474{bottom:714.854667pt;}
.y9_c00474{bottom:715.018667pt;}
.y8_c00474{bottom:715.421333pt;}
.y7_c00474{bottom:715.493333pt;}
.y6_c00474{bottom:715.780000pt;}
.y5_c00474{bottom:716.137333pt;}
.y4_c00474{bottom:716.629333pt;}
.y3_c00474{bottom:716.921333pt;}
.y2_c00474{bottom:717.121333pt;}
.y1_c00474{bottom:736.136000pt;}
.h14_c00474{height:13.066667pt;}
.hb_c00474{height:34.529621pt;}
.h11_c00474{height:43.866667pt;}
.he_c00474{height:44.800000pt;}
.hf_c00474{height:45.733333pt;}
.h10_c00474{height:46.666667pt;}
.h15_c00474{height:47.600000pt;}
.hd_c00474{height:49.466667pt;}
.h16_c00474{height:51.333333pt;}
.h13_c00474{height:52.266667pt;}
.ha_c00474{height:53.200000pt;}
.h3_c00474{height:58.800000pt;}
.h5_c00474{height:59.733333pt;}
.h2_c00474{height:61.600000pt;}
.h7_c00474{height:62.533333pt;}
.h6_c00474{height:63.466667pt;}
.h4_c00474{height:67.200000pt;}
.h12_c00474{height:74.666667pt;}
.hc_c00474{height:83.057737pt;}
.h9_c00474{height:84.933333pt;}
.h8_c00474{height:111.066667pt;}
.h1_c00474{height:893.333333pt;}
.h0_c00474{height:893.466667pt;}
.w0_c00474{width:635.733333pt;}
.w1_c00474{width:636.000000pt;}
.x0_c00474{left:0.000000pt;}
.x80_c00474{left:87.120000pt;}
.x5a_c00474{left:92.640000pt;}
.x6e_c00474{left:109.680000pt;}
.x60_c00474{left:111.840000pt;}
.x69_c00474{left:114.000000pt;}
.x1_c00474{left:117.840000pt;}
.x6f_c00474{left:119.520000pt;}
.x27_c00474{left:121.825333pt;}
.xb_c00474{left:123.265333pt;}
.x21_c00474{left:124.800000pt;}
.x49_c00474{left:127.438667pt;}
.x72_c00474{left:130.080000pt;}
.x64_c00474{left:133.920000pt;}
.x73_c00474{left:136.080000pt;}
.x1c_c00474{left:140.880000pt;}
.x5b_c00474{left:143.040000pt;}
.x2_c00474{left:145.200000pt;}
.x15_c00474{left:147.118667pt;}
.xc_c00474{left:148.232000pt;}
.x61_c00474{left:150.480000pt;}
.x3e_c00474{left:151.920000pt;}
.x28_c00474{left:155.180000pt;}
.x5c_c00474{left:158.160000pt;}
.x1d_c00474{left:161.760000pt;}
.x16_c00474{left:162.958667pt;}
.x2e_c00474{left:165.361333pt;}
.x6a_c00474{left:166.320000pt;}
.x7d_c00474{left:169.440000pt;}
.x62_c00474{left:173.040000pt;}
.x33_c00474{left:177.601333pt;}
.x6b_c00474{left:182.160000pt;}
.xd_c00474{left:184.678667pt;}
.x29_c00474{left:186.401333pt;}
.x5d_c00474{left:187.680000pt;}
.x67_c00474{left:189.120000pt;}
.x83_c00474{left:191.520000pt;}
.x36_c00474{left:193.681333pt;}
.x3_c00474{left:195.120000pt;}
.x53_c00474{left:196.320000pt;}
.x7e_c00474{left:202.800000pt;}
.x37_c00474{left:203.761333pt;}
.x34_c00474{left:204.961333pt;}
.x84_c00474{left:206.160000pt;}
.x17_c00474{left:207.598667pt;}
.x2f_c00474{left:209.761333pt;}
.x41_c00474{left:211.440000pt;}
.x85_c00474{left:214.560000pt;}
.x54_c00474{left:216.480000pt;}
.x6c_c00474{left:217.440000pt;}
.x22_c00474{left:218.640000pt;}
.x5e_c00474{left:220.800000pt;}
.x43_c00474{left:222.168000pt;}
.x81_c00474{left:224.160000pt;}
.x38_c00474{left:231.121333pt;}
.x4_c00474{left:234.240000pt;}
.x1e_c00474{left:235.920000pt;}
.x6d_c00474{left:237.840000pt;}
.x35_c00474{left:241.921333pt;}
.x5f_c00474{left:243.600000pt;}
.x63_c00474{left:245.040000pt;}
.xe_c00474{left:246.149333pt;}
.x5_c00474{left:252.480000pt;}
.x65_c00474{left:258.480000pt;}
.x70_c00474{left:260.160000pt;}
.x4a_c00474{left:263.067888pt;}
.x7f_c00474{left:265.440000pt;}
.x23_c00474{left:267.360000pt;}
.x82_c00474{left:268.800000pt;}
.x55_c00474{left:272.400000pt;}
.x44_c00474{left:274.440000pt;}
.x66_c00474{left:280.320000pt;}
.x42_c00474{left:282.960000pt;}
.x68_c00474{left:284.400000pt;}
.x87_c00474{left:287.040000pt;}
.x39_c00474{left:288.241333pt;}
.x18_c00474{left:289.438667pt;}
.xf_c00474{left:290.766667pt;}
.x86_c00474{left:293.040000pt;}
.x30_c00474{left:294.481333pt;}
.x4b_c00474{left:297.213144pt;}
.x6_c00474{left:298.560000pt;}
.x88_c00474{left:301.440000pt;}
.x3a_c00474{left:303.840000pt;}
.x71_c00474{left:305.040000pt;}
.x56_c00474{left:307.440000pt;}
.x4f_c00474{left:308.640000pt;}
.x24_c00474{left:314.160000pt;}
.x50_c00474{left:316.800000pt;}
.x7_c00474{left:320.640000pt;}
.x2a_c00474{left:325.078667pt;}
.x10_c00474{left:326.593333pt;}
.x3f_c00474{left:328.080000pt;}
.x4c_c00474{left:329.912085pt;}
.x1f_c00474{left:334.320000pt;}
.x11_c00474{left:335.636000pt;}
.x57_c00474{left:337.680000pt;}
.x2b_c00474{left:344.058667pt;}
.x3b_c00474{left:347.280000pt;}
.x58_c00474{left:351.120000pt;}
.x20_c00474{left:352.320000pt;}
.x8_c00474{left:353.760000pt;}
.x76_c00474{left:355.920000pt;}
.x25_c00474{left:356.880000pt;}
.x31_c00474{left:360.721333pt;}
.x45_c00474{left:364.425333pt;}
.x3c_c00474{left:367.680000pt;}
.x19_c00474{left:369.118667pt;}
.x59_c00474{left:371.280000pt;}
.x77_c00474{left:375.600000pt;}
.x89_c00474{left:378.720000pt;}
.x7a_c00474{left:379.680000pt;}
.x2c_c00474{left:381.970667pt;}
.x51_c00474{left:384.480000pt;}
.x12_c00474{left:386.025333pt;}
.x1a_c00474{left:387.598667pt;}
.x74_c00474{left:397.440000pt;}
.x2d_c00474{left:400.212000pt;}
.x9_c00474{left:401.280000pt;}
.x46_c00474{left:402.588000pt;}
.x4d_c00474{left:403.636912pt;}
.x13_c00474{left:406.460000pt;}
.x1b_c00474{left:410.638667pt;}
.x52_c00474{left:416.160000pt;}
.x32_c00474{left:417.361333pt;}
.x3d_c00474{left:419.280000pt;}
.x26_c00474{left:420.960000pt;}
.x4e_c00474{left:422.397793pt;}
.x14_c00474{left:428.997333pt;}
.x47_c00474{left:430.712000pt;}
.x40_c00474{left:442.080000pt;}
.x8b_c00474{left:447.840000pt;}
.xa_c00474{left:449.280000pt;}
.x7b_c00474{left:455.280000pt;}
.x48_c00474{left:456.618667pt;}
.x8a_c00474{left:457.920000pt;}
.x8c_c00474{left:464.640000pt;}
.x78_c00474{left:466.560000pt;}
.x75_c00474{left:473.760000pt;}
.x79_c00474{left:479.520000pt;}
.x7c_c00474{left:492.240000pt;}
.x8d_c00474{left:497.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m1f_c00475{transform:matrix(0.009236,-0.000286,0.007746,0.249880,0,0);-ms-transform:matrix(0.009236,-0.000286,0.007746,0.249880,0,0);-webkit-transform:matrix(0.009236,-0.000286,0.007746,0.249880,0,0);}
.m12_c00475{transform:matrix(0.027552,-0.000854,0.007746,0.249880,0,0);-ms-transform:matrix(0.027552,-0.000854,0.007746,0.249880,0,0);-webkit-transform:matrix(0.027552,-0.000854,0.007746,0.249880,0,0);}
.me7_c00475{transform:matrix(0.040649,-0.000325,0.002000,0.249992,0,0);-ms-transform:matrix(0.040649,-0.000325,0.002000,0.249992,0,0);-webkit-transform:matrix(0.040649,-0.000325,0.002000,0.249992,0,0);}
.mc6_c00475{transform:matrix(0.061549,-0.001169,0.004749,0.249955,0,0);-ms-transform:matrix(0.061549,-0.001169,0.004749,0.249955,0,0);-webkit-transform:matrix(0.061549,-0.001169,0.004749,0.249955,0,0);}
.md7_c00475{transform:matrix(0.086207,-0.000690,0.002000,0.249992,0,0);-ms-transform:matrix(0.086207,-0.000690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.086207,-0.000690,0.002000,0.249992,0,0);}
.me5_c00475{transform:matrix(0.099442,-0.000796,0.002000,0.249992,0,0);-ms-transform:matrix(0.099442,-0.000796,0.002000,0.249992,0,0);-webkit-transform:matrix(0.099442,-0.000796,0.002000,0.249992,0,0);}
.m84_c00475{transform:matrix(0.100537,-0.001910,0.004749,0.249955,0,0);-ms-transform:matrix(0.100537,-0.001910,0.004749,0.249955,0,0);-webkit-transform:matrix(0.100537,-0.001910,0.004749,0.249955,0,0);}
.mc_c00475{transform:matrix(0.113595,-0.003521,0.007746,0.249880,0,0);-ms-transform:matrix(0.113595,-0.003521,0.007746,0.249880,0,0);-webkit-transform:matrix(0.113595,-0.003521,0.007746,0.249880,0,0);}
.mc7_c00475{transform:matrix(0.119213,-0.002265,0.004749,0.249955,0,0);-ms-transform:matrix(0.119213,-0.002265,0.004749,0.249955,0,0);-webkit-transform:matrix(0.119213,-0.002265,0.004749,0.249955,0,0);}
.mce_c00475{transform:matrix(0.127606,-0.001021,0.002000,0.249992,0,0);-ms-transform:matrix(0.127606,-0.001021,0.002000,0.249992,0,0);-webkit-transform:matrix(0.127606,-0.001021,0.002000,0.249992,0,0);}
.mc8_c00475{transform:matrix(0.133016,-0.002527,0.004749,0.249955,0,0);-ms-transform:matrix(0.133016,-0.002527,0.004749,0.249955,0,0);-webkit-transform:matrix(0.133016,-0.002527,0.004749,0.249955,0,0);}
.m2b_c00475{transform:matrix(0.141584,-0.002690,0.004749,0.249955,0,0);-ms-transform:matrix(0.141584,-0.002690,0.004749,0.249955,0,0);-webkit-transform:matrix(0.141584,-0.002690,0.004749,0.249955,0,0);}
.m1a_c00475{transform:matrix(0.148344,-0.004599,0.007746,0.249880,0,0);-ms-transform:matrix(0.148344,-0.004599,0.007746,0.249880,0,0);-webkit-transform:matrix(0.148344,-0.004599,0.007746,0.249880,0,0);}
.m2a_c00475{transform:matrix(0.151578,-0.002880,0.004749,0.249955,0,0);-ms-transform:matrix(0.151578,-0.002880,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151578,-0.002880,0.004749,0.249955,0,0);}
.m49_c00475{transform:matrix(0.151623,-0.002881,0.004749,0.249955,0,0);-ms-transform:matrix(0.151623,-0.002881,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151623,-0.002881,0.004749,0.249955,0,0);}
.m8a_c00475{transform:matrix(0.151868,-0.002885,0.004749,0.249955,0,0);-ms-transform:matrix(0.151868,-0.002885,0.004749,0.249955,0,0);-webkit-transform:matrix(0.151868,-0.002885,0.004749,0.249955,0,0);}
.m64_c00475{transform:matrix(0.152747,-0.002902,0.004749,0.249955,0,0);-ms-transform:matrix(0.152747,-0.002902,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152747,-0.002902,0.004749,0.249955,0,0);}
.m42_c00475{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);}
.m30_c00475{transform:matrix(0.153512,-0.002917,0.004749,0.249955,0,0);-ms-transform:matrix(0.153512,-0.002917,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153512,-0.002917,0.004749,0.249955,0,0);}
.m86_c00475{transform:matrix(0.153652,-0.002919,0.004749,0.249955,0,0);-ms-transform:matrix(0.153652,-0.002919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153652,-0.002919,0.004749,0.249955,0,0);}
.m62_c00475{transform:matrix(0.154272,-0.002931,0.004749,0.249955,0,0);-ms-transform:matrix(0.154272,-0.002931,0.004749,0.249955,0,0);-webkit-transform:matrix(0.154272,-0.002931,0.004749,0.249955,0,0);}
.md3_c00475{transform:matrix(0.154580,-0.001237,0.002000,0.249992,0,0);-ms-transform:matrix(0.154580,-0.001237,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154580,-0.001237,0.002000,0.249992,0,0);}
.mae_c00475{transform:matrix(0.155032,-0.002946,0.004749,0.249955,0,0);-ms-transform:matrix(0.155032,-0.002946,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155032,-0.002946,0.004749,0.249955,0,0);}
.m88_c00475{transform:matrix(0.155222,-0.002949,0.004749,0.249955,0,0);-ms-transform:matrix(0.155222,-0.002949,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155222,-0.002949,0.004749,0.249955,0,0);}
.m2e_c00475{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);}
.m6c_c00475{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);}
.m91_c00475{transform:matrix(0.156707,-0.002977,0.004749,0.249955,0,0);-ms-transform:matrix(0.156707,-0.002977,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156707,-0.002977,0.004749,0.249955,0,0);}
.md1_c00475{transform:matrix(0.157310,-0.001258,0.002000,0.249992,0,0);-ms-transform:matrix(0.157310,-0.001258,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157310,-0.001258,0.002000,0.249992,0,0);}
.mdc_c00475{transform:matrix(0.159250,-0.001274,0.002000,0.249992,0,0);-ms-transform:matrix(0.159250,-0.001274,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159250,-0.001274,0.002000,0.249992,0,0);}
.m52_c00475{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);}
.m89_c00475{transform:matrix(0.160131,-0.003042,0.004749,0.249955,0,0);-ms-transform:matrix(0.160131,-0.003042,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160131,-0.003042,0.004749,0.249955,0,0);}
.m71_c00475{transform:matrix(0.161336,-0.003065,0.004749,0.249955,0,0);-ms-transform:matrix(0.161336,-0.003065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161336,-0.003065,0.004749,0.249955,0,0);}
.m5e_c00475{transform:matrix(0.162016,-0.003078,0.004749,0.249955,0,0);-ms-transform:matrix(0.162016,-0.003078,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162016,-0.003078,0.004749,0.249955,0,0);}
.mb2_c00475{transform:matrix(0.162316,-0.003084,0.004749,0.249955,0,0);-ms-transform:matrix(0.162316,-0.003084,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162316,-0.003084,0.004749,0.249955,0,0);}
.m8f_c00475{transform:matrix(0.163346,-0.003104,0.004749,0.249955,0,0);-ms-transform:matrix(0.163346,-0.003104,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163346,-0.003104,0.004749,0.249955,0,0);}
.ma8_c00475{transform:matrix(0.164320,-0.003122,0.004749,0.249955,0,0);-ms-transform:matrix(0.164320,-0.003122,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164320,-0.003122,0.004749,0.249955,0,0);}
.m19_c00475{transform:matrix(0.164661,-0.005104,0.007746,0.249880,0,0);-ms-transform:matrix(0.164661,-0.005104,0.007746,0.249880,0,0);-webkit-transform:matrix(0.164661,-0.005104,0.007746,0.249880,0,0);}
.m28_c00475{transform:matrix(0.165815,-0.003150,0.004749,0.249955,0,0);-ms-transform:matrix(0.165815,-0.003150,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165815,-0.003150,0.004749,0.249955,0,0);}
.me6_c00475{transform:matrix(0.165960,-0.001328,0.002000,0.249992,0,0);-ms-transform:matrix(0.165960,-0.001328,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165960,-0.001328,0.002000,0.249992,0,0);}
.mba_c00475{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);}
.m23_c00475{transform:matrix(0.169764,-0.003226,0.004749,0.249955,0,0);-ms-transform:matrix(0.169764,-0.003226,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169764,-0.003226,0.004749,0.249955,0,0);}
.mbb_c00475{transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);-ms-transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);}
.m2d_c00475{transform:matrix(0.170419,-0.003238,0.004749,0.249955,0,0);-ms-transform:matrix(0.170419,-0.003238,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170419,-0.003238,0.004749,0.249955,0,0);}
.ma6_c00475{transform:matrix(0.170609,-0.003242,0.004749,0.249955,0,0);-ms-transform:matrix(0.170609,-0.003242,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170609,-0.003242,0.004749,0.249955,0,0);}
.md6_c00475{transform:matrix(0.172129,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172129,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172129,-0.001377,0.002000,0.249992,0,0);}
.m74_c00475{transform:matrix(0.172764,-0.003283,0.004749,0.249955,0,0);-ms-transform:matrix(0.172764,-0.003283,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172764,-0.003283,0.004749,0.249955,0,0);}
.m70_c00475{transform:matrix(0.173184,-0.003290,0.004749,0.249955,0,0);-ms-transform:matrix(0.173184,-0.003290,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173184,-0.003290,0.004749,0.249955,0,0);}
.mb8_c00475{transform:matrix(0.173429,-0.003295,0.004749,0.249955,0,0);-ms-transform:matrix(0.173429,-0.003295,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173429,-0.003295,0.004749,0.249955,0,0);}
.m66_c00475{transform:matrix(0.173529,-0.003297,0.004749,0.249955,0,0);-ms-transform:matrix(0.173529,-0.003297,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173529,-0.003297,0.004749,0.249955,0,0);}
.m8b_c00475{transform:matrix(0.173684,-0.003300,0.004749,0.249955,0,0);-ms-transform:matrix(0.173684,-0.003300,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173684,-0.003300,0.004749,0.249955,0,0);}
.m26_c00475{transform:matrix(0.174349,-0.003313,0.004749,0.249955,0,0);-ms-transform:matrix(0.174349,-0.003313,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174349,-0.003313,0.004749,0.249955,0,0);}
.mc3_c00475{transform:matrix(0.174419,-0.003314,0.004749,0.249955,0,0);-ms-transform:matrix(0.174419,-0.003314,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174419,-0.003314,0.004749,0.249955,0,0);}
.me_c00475{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);}
.mf9_c00475{transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178264,-0.001426,0.002000,0.249992,0,0);}
.me4_c00475{transform:matrix(0.178684,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178684,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178684,-0.001429,0.002000,0.249992,0,0);}
.m72_c00475{transform:matrix(0.178738,-0.003396,0.004749,0.249955,0,0);-ms-transform:matrix(0.178738,-0.003396,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178738,-0.003396,0.004749,0.249955,0,0);}
.m29_c00475{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);}
.md4_c00475{transform:matrix(0.179604,-0.001437,0.002000,0.249992,0,0);-ms-transform:matrix(0.179604,-0.001437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179604,-0.001437,0.002000,0.249992,0,0);}
.ma4_c00475{transform:matrix(0.179993,-0.003420,0.004749,0.249955,0,0);-ms-transform:matrix(0.179993,-0.003420,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179993,-0.003420,0.004749,0.249955,0,0);}
.m16_c00475{transform:matrix(0.180228,-0.005587,0.007746,0.249880,0,0);-ms-transform:matrix(0.180228,-0.005587,0.007746,0.249880,0,0);-webkit-transform:matrix(0.180228,-0.005587,0.007746,0.249880,0,0);}
.m22_c00475{transform:matrix(0.180797,-0.003435,0.004749,0.249955,0,0);-ms-transform:matrix(0.180797,-0.003435,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180797,-0.003435,0.004749,0.249955,0,0);}
.m50_c00475{transform:matrix(0.180952,-0.003438,0.004749,0.249955,0,0);-ms-transform:matrix(0.180952,-0.003438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180952,-0.003438,0.004749,0.249955,0,0);}
.m87_c00475{transform:matrix(0.181307,-0.003445,0.004749,0.249955,0,0);-ms-transform:matrix(0.181307,-0.003445,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181307,-0.003445,0.004749,0.249955,0,0);}
.m9e_c00475{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);}
.m46_c00475{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);}
.m8e_c00475{transform:matrix(0.183297,-0.003483,0.004749,0.249955,0,0);-ms-transform:matrix(0.183297,-0.003483,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183297,-0.003483,0.004749,0.249955,0,0);}
.maa_c00475{transform:matrix(0.183497,-0.003486,0.004749,0.249955,0,0);-ms-transform:matrix(0.183497,-0.003486,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183497,-0.003486,0.004749,0.249955,0,0);}
.m61_c00475{transform:matrix(0.184137,-0.003499,0.004749,0.249955,0,0);-ms-transform:matrix(0.184137,-0.003499,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184137,-0.003499,0.004749,0.249955,0,0);}
.m5d_c00475{transform:matrix(0.184282,-0.003501,0.004749,0.249955,0,0);-ms-transform:matrix(0.184282,-0.003501,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184282,-0.003501,0.004749,0.249955,0,0);}
.m53_c00475{transform:matrix(0.184447,-0.003504,0.004749,0.249955,0,0);-ms-transform:matrix(0.184447,-0.003504,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184447,-0.003504,0.004749,0.249955,0,0);}
.m6e_c00475{transform:matrix(0.184757,-0.003510,0.004749,0.249955,0,0);-ms-transform:matrix(0.184757,-0.003510,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184757,-0.003510,0.004749,0.249955,0,0);}
.m33_c00475{transform:matrix(0.184957,-0.003514,0.004749,0.249955,0,0);-ms-transform:matrix(0.184957,-0.003514,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184957,-0.003514,0.004749,0.249955,0,0);}
.m6d_c00475{transform:matrix(0.185342,-0.003521,0.004749,0.249955,0,0);-ms-transform:matrix(0.185342,-0.003521,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185342,-0.003521,0.004749,0.249955,0,0);}
.m18_c00475{transform:matrix(0.185581,-0.005753,0.007746,0.249880,0,0);-ms-transform:matrix(0.185581,-0.005753,0.007746,0.249880,0,0);-webkit-transform:matrix(0.185581,-0.005753,0.007746,0.249880,0,0);}
.m41_c00475{transform:matrix(0.185781,-0.003530,0.004749,0.249955,0,0);-ms-transform:matrix(0.185781,-0.003530,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185781,-0.003530,0.004749,0.249955,0,0);}
.m4f_c00475{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);}
.mfa_c00475{transform:matrix(0.186049,-0.001488,0.002000,0.249992,0,0);-ms-transform:matrix(0.186049,-0.001488,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186049,-0.001488,0.002000,0.249992,0,0);}
.m69_c00475{transform:matrix(0.186136,-0.003537,0.004749,0.249955,0,0);-ms-transform:matrix(0.186136,-0.003537,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186136,-0.003537,0.004749,0.249955,0,0);}
.mb1_c00475{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);}
.m27_c00475{transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);-ms-transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);}
.m8d_c00475{transform:matrix(0.187151,-0.003556,0.004749,0.249955,0,0);-ms-transform:matrix(0.187151,-0.003556,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187151,-0.003556,0.004749,0.249955,0,0);}
.ma9_c00475{transform:matrix(0.187191,-0.003557,0.004749,0.249955,0,0);-ms-transform:matrix(0.187191,-0.003557,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187191,-0.003557,0.004749,0.249955,0,0);}
.m35_c00475{transform:matrix(0.188146,-0.003575,0.004749,0.249955,0,0);-ms-transform:matrix(0.188146,-0.003575,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188146,-0.003575,0.004749,0.249955,0,0);}
.m5b_c00475{transform:matrix(0.188906,-0.003589,0.004749,0.249955,0,0);-ms-transform:matrix(0.188906,-0.003589,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188906,-0.003589,0.004749,0.249955,0,0);}
.mb0_c00475{transform:matrix(0.188996,-0.003591,0.004749,0.249955,0,0);-ms-transform:matrix(0.188996,-0.003591,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188996,-0.003591,0.004749,0.249955,0,0);}
.m44_c00475{transform:matrix(0.189051,-0.003592,0.004749,0.249955,0,0);-ms-transform:matrix(0.189051,-0.003592,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189051,-0.003592,0.004749,0.249955,0,0);}
.m5f_c00475{transform:matrix(0.189091,-0.003593,0.004749,0.249955,0,0);-ms-transform:matrix(0.189091,-0.003593,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189091,-0.003593,0.004749,0.249955,0,0);}
.m31_c00475{transform:matrix(0.189311,-0.003597,0.004749,0.249955,0,0);-ms-transform:matrix(0.189311,-0.003597,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189311,-0.003597,0.004749,0.249955,0,0);}
.md9_c00475{transform:matrix(0.189329,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189329,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189329,-0.001515,0.002000,0.249992,0,0);}
.mf_c00475{transform:matrix(0.191378,-0.005933,0.007746,0.249880,0,0);-ms-transform:matrix(0.191378,-0.005933,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191378,-0.005933,0.007746,0.249880,0,0);}
.mda_c00475{transform:matrix(0.191779,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191779,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191779,-0.001534,0.002000,0.249992,0,0);}
.m32_c00475{transform:matrix(0.191915,-0.003646,0.004749,0.249955,0,0);-ms-transform:matrix(0.191915,-0.003646,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191915,-0.003646,0.004749,0.249955,0,0);}
.mdb_c00475{transform:matrix(0.192434,-0.001539,0.002000,0.249992,0,0);-ms-transform:matrix(0.192434,-0.001539,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192434,-0.001539,0.002000,0.249992,0,0);}
.mf0_c00475{transform:matrix(0.192499,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192499,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192499,-0.001540,0.002000,0.249992,0,0);}
.me0_c00475{transform:matrix(0.192554,-0.001540,0.002000,0.249992,0,0);-ms-transform:matrix(0.192554,-0.001540,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192554,-0.001540,0.002000,0.249992,0,0);}
.m9c_c00475{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);}
.m82_c00475{transform:matrix(0.193530,-0.003677,0.004749,0.249955,0,0);-ms-transform:matrix(0.193530,-0.003677,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193530,-0.003677,0.004749,0.249955,0,0);}
.ma1_c00475{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);}
.me3_c00475{transform:matrix(0.193964,-0.001552,0.002000,0.249992,0,0);-ms-transform:matrix(0.193964,-0.001552,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193964,-0.001552,0.002000,0.249992,0,0);}
.m65_c00475{transform:matrix(0.194340,-0.003692,0.004749,0.249955,0,0);-ms-transform:matrix(0.194340,-0.003692,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194340,-0.003692,0.004749,0.249955,0,0);}
.m21_c00475{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);}
.mb5_c00475{transform:matrix(0.195545,-0.003715,0.004749,0.249955,0,0);-ms-transform:matrix(0.195545,-0.003715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195545,-0.003715,0.004749,0.249955,0,0);}
.m45_c00475{transform:matrix(0.195560,-0.003716,0.004749,0.249955,0,0);-ms-transform:matrix(0.195560,-0.003716,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195560,-0.003716,0.004749,0.249955,0,0);}
.m75_c00475{transform:matrix(0.195950,-0.003723,0.004749,0.249955,0,0);-ms-transform:matrix(0.195950,-0.003723,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195950,-0.003723,0.004749,0.249955,0,0);}
.m4e_c00475{transform:matrix(0.196020,-0.003724,0.004749,0.249955,0,0);-ms-transform:matrix(0.196020,-0.003724,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196020,-0.003724,0.004749,0.249955,0,0);}
.m96_c00475{transform:matrix(0.196120,-0.003726,0.004749,0.249955,0,0);-ms-transform:matrix(0.196120,-0.003726,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196120,-0.003726,0.004749,0.249955,0,0);}
.m24_c00475{transform:matrix(0.196200,-0.003728,0.004749,0.249955,0,0);-ms-transform:matrix(0.196200,-0.003728,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196200,-0.003728,0.004749,0.249955,0,0);}
.m73_c00475{transform:matrix(0.196400,-0.003732,0.004749,0.249955,0,0);-ms-transform:matrix(0.196400,-0.003732,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196400,-0.003732,0.004749,0.249955,0,0);}
.m2c_c00475{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);}
.m5a_c00475{transform:matrix(0.197434,-0.003751,0.004749,0.249955,0,0);-ms-transform:matrix(0.197434,-0.003751,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197434,-0.003751,0.004749,0.249955,0,0);}
.m8c_c00475{transform:matrix(0.197634,-0.003755,0.004749,0.249955,0,0);-ms-transform:matrix(0.197634,-0.003755,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197634,-0.003755,0.004749,0.249955,0,0);}
.mc2_c00475{transform:matrix(0.197944,-0.003761,0.004749,0.249955,0,0);-ms-transform:matrix(0.197944,-0.003761,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197944,-0.003761,0.004749,0.249955,0,0);}
.m6f_c00475{transform:matrix(0.197964,-0.003761,0.004749,0.249955,0,0);-ms-transform:matrix(0.197964,-0.003761,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197964,-0.003761,0.004749,0.249955,0,0);}
.m4d_c00475{transform:matrix(0.198264,-0.003767,0.004749,0.249955,0,0);-ms-transform:matrix(0.198264,-0.003767,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198264,-0.003767,0.004749,0.249955,0,0);}
.m9f_c00475{transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);-ms-transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);}
.m5c_c00475{transform:matrix(0.199189,-0.003785,0.004749,0.249955,0,0);-ms-transform:matrix(0.199189,-0.003785,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199189,-0.003785,0.004749,0.249955,0,0);}
.maf_c00475{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);}
.m85_c00475{transform:matrix(0.199759,-0.003795,0.004749,0.249955,0,0);-ms-transform:matrix(0.199759,-0.003795,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199759,-0.003795,0.004749,0.249955,0,0);}
.m7e_c00475{transform:matrix(0.199844,-0.003797,0.004749,0.249955,0,0);-ms-transform:matrix(0.199844,-0.003797,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199844,-0.003797,0.004749,0.249955,0,0);}
.m9d_c00475{transform:matrix(0.200339,-0.003806,0.004749,0.249955,0,0);-ms-transform:matrix(0.200339,-0.003806,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200339,-0.003806,0.004749,0.249955,0,0);}
.mf2_c00475{transform:matrix(0.200379,-0.001603,0.002000,0.249992,0,0);-ms-transform:matrix(0.200379,-0.001603,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200379,-0.001603,0.002000,0.249992,0,0);}
.ma0_c00475{transform:matrix(0.200569,-0.003811,0.004749,0.249955,0,0);-ms-transform:matrix(0.200569,-0.003811,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200569,-0.003811,0.004749,0.249955,0,0);}
.md8_c00475{transform:matrix(0.200579,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200579,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200579,-0.001605,0.002000,0.249992,0,0);}
.mde_c00475{transform:matrix(0.200664,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200664,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200664,-0.001605,0.002000,0.249992,0,0);}
.m2f_c00475{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);}
.m58_c00475{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);}
.mc0_c00475{transform:matrix(0.201089,-0.003821,0.004749,0.249955,0,0);-ms-transform:matrix(0.201089,-0.003821,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201089,-0.003821,0.004749,0.249955,0,0);}
.mc1_c00475{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);}
.ma2_c00475{transform:matrix(0.201319,-0.003825,0.004749,0.249955,0,0);-ms-transform:matrix(0.201319,-0.003825,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201319,-0.003825,0.004749,0.249955,0,0);}
.m59_c00475{transform:matrix(0.201404,-0.003827,0.004749,0.249955,0,0);-ms-transform:matrix(0.201404,-0.003827,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201404,-0.003827,0.004749,0.249955,0,0);}
.mb7_c00475{transform:matrix(0.201559,-0.003830,0.004749,0.249955,0,0);-ms-transform:matrix(0.201559,-0.003830,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201559,-0.003830,0.004749,0.249955,0,0);}
.m34_c00475{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);}
.me2_c00475{transform:matrix(0.202359,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202359,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202359,-0.001619,0.002000,0.249992,0,0);}
.m98_c00475{transform:matrix(0.202448,-0.003847,0.004749,0.249955,0,0);-ms-transform:matrix(0.202448,-0.003847,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202448,-0.003847,0.004749,0.249955,0,0);}
.ma5_c00475{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);}
.mf1_c00475{transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203188,-0.001626,0.002000,0.249992,0,0);}
.mf6_c00475{transform:matrix(0.203473,-0.001628,0.002000,0.249992,0,0);-ms-transform:matrix(0.203473,-0.001628,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203473,-0.001628,0.002000,0.249992,0,0);}
.m25_c00475{transform:matrix(0.203683,-0.003870,0.004749,0.249955,0,0);-ms-transform:matrix(0.203683,-0.003870,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203683,-0.003870,0.004749,0.249955,0,0);}
.m4c_c00475{transform:matrix(0.204138,-0.003879,0.004749,0.249955,0,0);-ms-transform:matrix(0.204138,-0.003879,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204138,-0.003879,0.004749,0.249955,0,0);}
.m68_c00475{transform:matrix(0.204668,-0.003889,0.004749,0.249955,0,0);-ms-transform:matrix(0.204668,-0.003889,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204668,-0.003889,0.004749,0.249955,0,0);}
.mec_c00475{transform:matrix(0.204853,-0.001639,0.002000,0.249992,0,0);-ms-transform:matrix(0.204853,-0.001639,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204853,-0.001639,0.002000,0.249992,0,0);}
.m47_c00475{transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);-ms-transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);}
.m7d_c00475{transform:matrix(0.205488,-0.003904,0.004749,0.249955,0,0);-ms-transform:matrix(0.205488,-0.003904,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205488,-0.003904,0.004749,0.249955,0,0);}
.mef_c00475{transform:matrix(0.205673,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205673,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205673,-0.001645,0.002000,0.249992,0,0);}
.mb9_c00475{transform:matrix(0.205678,-0.003908,0.004749,0.249955,0,0);-ms-transform:matrix(0.205678,-0.003908,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205678,-0.003908,0.004749,0.249955,0,0);}
.m6_c00475{transform:matrix(0.206361,-0.006397,0.007746,0.249880,0,0);-ms-transform:matrix(0.206361,-0.006397,0.007746,0.249880,0,0);-webkit-transform:matrix(0.206361,-0.006397,0.007746,0.249880,0,0);}
.m48_c00475{transform:matrix(0.206673,-0.003927,0.004749,0.249955,0,0);-ms-transform:matrix(0.206673,-0.003927,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206673,-0.003927,0.004749,0.249955,0,0);}
.m81_c00475{transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);-ms-transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);}
.m51_c00475{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);}
.ma7_c00475{transform:matrix(0.208047,-0.003953,0.004749,0.249955,0,0);-ms-transform:matrix(0.208047,-0.003953,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208047,-0.003953,0.004749,0.249955,0,0);}
.mb6_c00475{transform:matrix(0.208077,-0.003953,0.004749,0.249955,0,0);-ms-transform:matrix(0.208077,-0.003953,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208077,-0.003953,0.004749,0.249955,0,0);}
.m4a_c00475{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);}
.m90_c00475{transform:matrix(0.208847,-0.003968,0.004749,0.249955,0,0);-ms-transform:matrix(0.208847,-0.003968,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208847,-0.003968,0.004749,0.249955,0,0);}
.md_c00475{transform:matrix(0.208965,-0.006478,0.007746,0.249880,0,0);-ms-transform:matrix(0.208965,-0.006478,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208965,-0.006478,0.007746,0.249880,0,0);}
.m1b_c00475{transform:matrix(0.209165,-0.006484,0.007746,0.249880,0,0);-ms-transform:matrix(0.209165,-0.006484,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209165,-0.006484,0.007746,0.249880,0,0);}
.mf8_c00475{transform:matrix(0.209493,-0.001676,0.002000,0.249992,0,0);-ms-transform:matrix(0.209493,-0.001676,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209493,-0.001676,0.002000,0.249992,0,0);}
.mea_c00475{transform:matrix(0.209888,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209888,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209888,-0.001679,0.002000,0.249992,0,0);}
.m54_c00475{transform:matrix(0.209937,-0.003989,0.004749,0.249955,0,0);-ms-transform:matrix(0.209937,-0.003989,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209937,-0.003989,0.004749,0.249955,0,0);}
.m94_c00475{transform:matrix(0.210252,-0.003995,0.004749,0.249955,0,0);-ms-transform:matrix(0.210252,-0.003995,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210252,-0.003995,0.004749,0.249955,0,0);}
.m56_c00475{transform:matrix(0.211247,-0.004014,0.004749,0.249955,0,0);-ms-transform:matrix(0.211247,-0.004014,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211247,-0.004014,0.004749,0.249955,0,0);}
.m6a_c00475{transform:matrix(0.211642,-0.004021,0.004749,0.249955,0,0);-ms-transform:matrix(0.211642,-0.004021,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211642,-0.004021,0.004749,0.249955,0,0);}
.mb_c00475{transform:matrix(0.212213,-0.006579,0.007746,0.249880,0,0);-ms-transform:matrix(0.212213,-0.006579,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212213,-0.006579,0.007746,0.249880,0,0);}
.m7c_c00475{transform:matrix(0.212522,-0.004038,0.004749,0.249955,0,0);-ms-transform:matrix(0.212522,-0.004038,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212522,-0.004038,0.004749,0.249955,0,0);}
.m10_c00475{transform:matrix(0.212643,-0.006592,0.007746,0.249880,0,0);-ms-transform:matrix(0.212643,-0.006592,0.007746,0.249880,0,0);-webkit-transform:matrix(0.212643,-0.006592,0.007746,0.249880,0,0);}
.m92_c00475{transform:matrix(0.213466,-0.004056,0.004749,0.249955,0,0);-ms-transform:matrix(0.213466,-0.004056,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213466,-0.004056,0.004749,0.249955,0,0);}
.m15_c00475{transform:matrix(0.215247,-0.006673,0.007746,0.249880,0,0);-ms-transform:matrix(0.215247,-0.006673,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215247,-0.006673,0.007746,0.249880,0,0);}
.m40_c00475{transform:matrix(0.215656,-0.004097,0.004749,0.249955,0,0);-ms-transform:matrix(0.215656,-0.004097,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215656,-0.004097,0.004749,0.249955,0,0);}
.m43_c00475{transform:matrix(0.215691,-0.004098,0.004749,0.249955,0,0);-ms-transform:matrix(0.215691,-0.004098,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215691,-0.004098,0.004749,0.249955,0,0);}
.m1d_c00475{transform:matrix(0.215996,-0.006696,0.007746,0.249880,0,0);-ms-transform:matrix(0.215996,-0.006696,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215996,-0.006696,0.007746,0.249880,0,0);}
.m95_c00475{transform:matrix(0.216061,-0.004105,0.004749,0.249955,0,0);-ms-transform:matrix(0.216061,-0.004105,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216061,-0.004105,0.004749,0.249955,0,0);}
.m9_c00475{transform:matrix(0.217091,-0.006730,0.007746,0.249880,0,0);-ms-transform:matrix(0.217091,-0.006730,0.007746,0.249880,0,0);-webkit-transform:matrix(0.217091,-0.006730,0.007746,0.249880,0,0);}
.mc9_c00475{transform:matrix(0.217356,-0.004130,0.004749,0.249955,0,0);-ms-transform:matrix(0.217356,-0.004130,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217356,-0.004130,0.004749,0.249955,0,0);}
.m57_c00475{transform:matrix(0.217556,-0.004134,0.004749,0.249955,0,0);-ms-transform:matrix(0.217556,-0.004134,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217556,-0.004134,0.004749,0.249955,0,0);}
.mcd_c00475{transform:matrix(0.218801,-0.004157,0.004749,0.249955,0,0);-ms-transform:matrix(0.218801,-0.004157,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218801,-0.004157,0.004749,0.249955,0,0);}
.m60_c00475{transform:matrix(0.219360,-0.004168,0.004749,0.249955,0,0);-ms-transform:matrix(0.219360,-0.004168,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219360,-0.004168,0.004749,0.249955,0,0);}
.mf5_c00475{transform:matrix(0.219383,-0.001755,0.002000,0.249992,0,0);-ms-transform:matrix(0.219383,-0.001755,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219383,-0.001755,0.002000,0.249992,0,0);}
.m77_c00475{transform:matrix(0.219890,-0.004178,0.004749,0.249955,0,0);-ms-transform:matrix(0.219890,-0.004178,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219890,-0.004178,0.004749,0.249955,0,0);}
.m4b_c00475{transform:matrix(0.219945,-0.004179,0.004749,0.249955,0,0);-ms-transform:matrix(0.219945,-0.004179,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219945,-0.004179,0.004749,0.249955,0,0);}
.m9b_c00475{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);}
.m93_c00475{transform:matrix(0.221010,-0.004199,0.004749,0.249955,0,0);-ms-transform:matrix(0.221010,-0.004199,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221010,-0.004199,0.004749,0.249955,0,0);}
.md0_c00475{transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);}
.m3e_c00475{transform:matrix(0.223090,-0.004239,0.004749,0.249955,0,0);-ms-transform:matrix(0.223090,-0.004239,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223090,-0.004239,0.004749,0.249955,0,0);}
.mee_c00475{transform:matrix(0.223343,-0.001787,0.002000,0.249992,0,0);-ms-transform:matrix(0.223343,-0.001787,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223343,-0.001787,0.002000,0.249992,0,0);}
.m1c_c00475{transform:matrix(0.223348,-0.006924,0.007746,0.249880,0,0);-ms-transform:matrix(0.223348,-0.006924,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223348,-0.006924,0.007746,0.249880,0,0);}
.m97_c00475{transform:matrix(0.224330,-0.004262,0.004749,0.249955,0,0);-ms-transform:matrix(0.224330,-0.004262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224330,-0.004262,0.004749,0.249955,0,0);}
.m80_c00475{transform:matrix(0.224629,-0.004268,0.004749,0.249955,0,0);-ms-transform:matrix(0.224629,-0.004268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224629,-0.004268,0.004749,0.249955,0,0);}
.me8_c00475{transform:matrix(0.225033,-0.001800,0.002000,0.249992,0,0);-ms-transform:matrix(0.225033,-0.001800,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225033,-0.001800,0.002000,0.249992,0,0);}
.m63_c00475{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);}
.m83_c00475{transform:matrix(0.225394,-0.004282,0.004749,0.249955,0,0);-ms-transform:matrix(0.225394,-0.004282,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225394,-0.004282,0.004749,0.249955,0,0);}
.m13_c00475{transform:matrix(0.225627,-0.006994,0.007746,0.249880,0,0);-ms-transform:matrix(0.225627,-0.006994,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225627,-0.006994,0.007746,0.249880,0,0);}
.mc4_c00475{transform:matrix(0.225894,-0.004292,0.004749,0.249955,0,0);-ms-transform:matrix(0.225894,-0.004292,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225894,-0.004292,0.004749,0.249955,0,0);}
.m3b_c00475{transform:matrix(0.226184,-0.004297,0.004749,0.249955,0,0);-ms-transform:matrix(0.226184,-0.004297,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226184,-0.004297,0.004749,0.249955,0,0);}
.m3d_c00475{transform:matrix(0.228684,-0.004345,0.004749,0.249955,0,0);-ms-transform:matrix(0.228684,-0.004345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228684,-0.004345,0.004749,0.249955,0,0);}
.m7f_c00475{transform:matrix(0.229739,-0.004365,0.004749,0.249955,0,0);-ms-transform:matrix(0.229739,-0.004365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229739,-0.004365,0.004749,0.249955,0,0);}
.m8_c00475{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);}
.m3f_c00475{transform:matrix(0.231248,-0.004394,0.004749,0.249955,0,0);-ms-transform:matrix(0.231248,-0.004394,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231248,-0.004394,0.004749,0.249955,0,0);}
.m55_c00475{transform:matrix(0.232058,-0.004409,0.004749,0.249955,0,0);-ms-transform:matrix(0.232058,-0.004409,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232058,-0.004409,0.004749,0.249955,0,0);}
.mdd_c00475{transform:matrix(0.232793,-0.001862,0.002000,0.249992,0,0);-ms-transform:matrix(0.232793,-0.001862,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232793,-0.001862,0.002000,0.249992,0,0);}
.mad_c00475{transform:matrix(0.234248,-0.004451,0.004749,0.249955,0,0);-ms-transform:matrix(0.234248,-0.004451,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234248,-0.004451,0.004749,0.249955,0,0);}
.md2_c00475{transform:matrix(0.234922,-0.001879,0.002000,0.249992,0,0);-ms-transform:matrix(0.234922,-0.001879,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234922,-0.001879,0.002000,0.249992,0,0);}
.m6b_c00475{transform:matrix(0.235602,-0.004476,0.004749,0.249955,0,0);-ms-transform:matrix(0.235602,-0.004476,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235602,-0.004476,0.004749,0.249955,0,0);}
.m39_c00475{transform:matrix(0.236277,-0.004489,0.004749,0.249955,0,0);-ms-transform:matrix(0.236277,-0.004489,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236277,-0.004489,0.004749,0.249955,0,0);}
.m79_c00475{transform:matrix(0.236492,-0.004493,0.004749,0.249955,0,0);-ms-transform:matrix(0.236492,-0.004493,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236492,-0.004493,0.004749,0.249955,0,0);}
.m7_c00475{transform:matrix(0.239740,-0.007432,0.007746,0.249880,0,0);-ms-transform:matrix(0.239740,-0.007432,0.007746,0.249880,0,0);-webkit-transform:matrix(0.239740,-0.007432,0.007746,0.249880,0,0);}
.m37_c00475{transform:matrix(0.240177,-0.004563,0.004749,0.249955,0,0);-ms-transform:matrix(0.240177,-0.004563,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240177,-0.004563,0.004749,0.249955,0,0);}
.m1e_c00475{transform:matrix(0.241689,-0.007492,0.007746,0.249880,0,0);-ms-transform:matrix(0.241689,-0.007492,0.007746,0.249880,0,0);-webkit-transform:matrix(0.241689,-0.007492,0.007746,0.249880,0,0);}
.mb3_c00475{transform:matrix(0.242706,-0.004611,0.004749,0.249955,0,0);-ms-transform:matrix(0.242706,-0.004611,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242706,-0.004611,0.004749,0.249955,0,0);}
.mbe_c00475{transform:matrix(0.245776,-0.004670,0.004749,0.249955,0,0);-ms-transform:matrix(0.245776,-0.004670,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245776,-0.004670,0.004749,0.249955,0,0);}
.md5_c00475{transform:matrix(0.246797,-0.001974,0.002000,0.249992,0,0);-ms-transform:matrix(0.246797,-0.001974,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246797,-0.001974,0.002000,0.249992,0,0);}
.mbc_c00475{transform:matrix(0.247825,-0.004709,0.004749,0.249955,0,0);-ms-transform:matrix(0.247825,-0.004709,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247825,-0.004709,0.004749,0.249955,0,0);}
.mcc_c00475{transform:matrix(0.250525,-0.004760,0.004749,0.249955,0,0);-ms-transform:matrix(0.250525,-0.004760,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250525,-0.004760,0.004749,0.249955,0,0);}
.mdf_c00475{transform:matrix(0.251282,-0.002010,0.002000,0.249992,0,0);-ms-transform:matrix(0.251282,-0.002010,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251282,-0.002010,0.002000,0.249992,0,0);}
.m7a_c00475{transform:matrix(0.252639,-0.004800,0.004749,0.249955,0,0);-ms-transform:matrix(0.252639,-0.004800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252639,-0.004800,0.004749,0.249955,0,0);}
.m76_c00475{transform:matrix(0.253429,-0.004815,0.004749,0.249955,0,0);-ms-transform:matrix(0.253429,-0.004815,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253429,-0.004815,0.004749,0.249955,0,0);}
.m4_c00475{transform:matrix(0.256182,-0.007942,0.007746,0.249880,0,0);-ms-transform:matrix(0.256182,-0.007942,0.007746,0.249880,0,0);-webkit-transform:matrix(0.256182,-0.007942,0.007746,0.249880,0,0);}
.mf4_c00475{transform:matrix(0.256922,-0.002055,0.002000,0.249992,0,0);-ms-transform:matrix(0.256922,-0.002055,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256922,-0.002055,0.002000,0.249992,0,0);}
.m17_c00475{transform:matrix(0.257591,-0.007985,0.007746,0.249880,0,0);-ms-transform:matrix(0.257591,-0.007985,0.007746,0.249880,0,0);-webkit-transform:matrix(0.257591,-0.007985,0.007746,0.249880,0,0);}
.mb4_c00475{transform:matrix(0.259613,-0.004933,0.004749,0.249955,0,0);-ms-transform:matrix(0.259613,-0.004933,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259613,-0.004933,0.004749,0.249955,0,0);}
.m78_c00475{transform:matrix(0.259943,-0.004939,0.004749,0.249955,0,0);-ms-transform:matrix(0.259943,-0.004939,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259943,-0.004939,0.004749,0.249955,0,0);}
.m0_c00475{transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261665,0.000000,0.000000,0.250000,0,0);}
.m67_c00475{transform:matrix(0.262963,-0.004996,0.004749,0.249955,0,0);-ms-transform:matrix(0.262963,-0.004996,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262963,-0.004996,0.004749,0.249955,0,0);}
.mcf_c00475{transform:matrix(0.263012,-0.002104,0.002000,0.249992,0,0);-ms-transform:matrix(0.263012,-0.002104,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263012,-0.002104,0.002000,0.249992,0,0);}
.mac_c00475{transform:matrix(0.264987,-0.005035,0.004749,0.249955,0,0);-ms-transform:matrix(0.264987,-0.005035,0.004749,0.249955,0,0);-webkit-transform:matrix(0.264987,-0.005035,0.004749,0.249955,0,0);}
.m7b_c00475{transform:matrix(0.266207,-0.005058,0.004749,0.249955,0,0);-ms-transform:matrix(0.266207,-0.005058,0.004749,0.249955,0,0);-webkit-transform:matrix(0.266207,-0.005058,0.004749,0.249955,0,0);}
.ma_c00475{transform:matrix(0.268621,-0.008327,0.007746,0.249880,0,0);-ms-transform:matrix(0.268621,-0.008327,0.007746,0.249880,0,0);-webkit-transform:matrix(0.268621,-0.008327,0.007746,0.249880,0,0);}
.m20_c00475{transform:matrix(0.272179,-0.008438,0.007746,0.249880,0,0);-ms-transform:matrix(0.272179,-0.008438,0.007746,0.249880,0,0);-webkit-transform:matrix(0.272179,-0.008438,0.007746,0.249880,0,0);}
.m3a_c00475{transform:matrix(0.274320,-0.005212,0.004749,0.249955,0,0);-ms-transform:matrix(0.274320,-0.005212,0.004749,0.249955,0,0);-webkit-transform:matrix(0.274320,-0.005212,0.004749,0.249955,0,0);}
.mbd_c00475{transform:matrix(0.274600,-0.005217,0.004749,0.249955,0,0);-ms-transform:matrix(0.274600,-0.005217,0.004749,0.249955,0,0);-webkit-transform:matrix(0.274600,-0.005217,0.004749,0.249955,0,0);}
.m3c_c00475{transform:matrix(0.290673,-0.005523,0.004749,0.249955,0,0);-ms-transform:matrix(0.290673,-0.005523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.290673,-0.005523,0.004749,0.249955,0,0);}
.m99_c00475{transform:matrix(0.291702,-0.005542,0.004749,0.249955,0,0);-ms-transform:matrix(0.291702,-0.005542,0.004749,0.249955,0,0);-webkit-transform:matrix(0.291702,-0.005542,0.004749,0.249955,0,0);}
.mc5_c00475{transform:matrix(0.299726,-0.005695,0.004749,0.249955,0,0);-ms-transform:matrix(0.299726,-0.005695,0.004749,0.249955,0,0);-webkit-transform:matrix(0.299726,-0.005695,0.004749,0.249955,0,0);}
.mf3_c00475{transform:matrix(0.304990,-0.002440,0.002000,0.249992,0,0);-ms-transform:matrix(0.304990,-0.002440,0.002000,0.249992,0,0);-webkit-transform:matrix(0.304990,-0.002440,0.002000,0.249992,0,0);}
.m11_c00475{transform:matrix(0.306753,-0.009509,0.007746,0.249880,0,0);-ms-transform:matrix(0.306753,-0.009509,0.007746,0.249880,0,0);-webkit-transform:matrix(0.306753,-0.009509,0.007746,0.249880,0,0);}
.m9a_c00475{transform:matrix(0.307904,-0.005850,0.004749,0.249955,0,0);-ms-transform:matrix(0.307904,-0.005850,0.004749,0.249955,0,0);-webkit-transform:matrix(0.307904,-0.005850,0.004749,0.249955,0,0);}
.mca_c00475{transform:matrix(0.331115,-0.006291,0.004749,0.249955,0,0);-ms-transform:matrix(0.331115,-0.006291,0.004749,0.249955,0,0);-webkit-transform:matrix(0.331115,-0.006291,0.004749,0.249955,0,0);}
.med_c00475{transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);-ms-transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);-webkit-transform:matrix(0.345714,-0.002766,0.002000,0.249992,0,0);}
.m2_c00475{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);}
.m38_c00475{transform:matrix(0.357840,-0.006799,0.004749,0.249955,0,0);-ms-transform:matrix(0.357840,-0.006799,0.004749,0.249955,0,0);-webkit-transform:matrix(0.357840,-0.006799,0.004749,0.249955,0,0);}
.m14_c00475{transform:matrix(0.363156,-0.011258,0.007746,0.249880,0,0);-ms-transform:matrix(0.363156,-0.011258,0.007746,0.249880,0,0);-webkit-transform:matrix(0.363156,-0.011258,0.007746,0.249880,0,0);}
.mcb_c00475{transform:matrix(0.368259,-0.006997,0.004749,0.249955,0,0);-ms-transform:matrix(0.368259,-0.006997,0.004749,0.249955,0,0);-webkit-transform:matrix(0.368259,-0.006997,0.004749,0.249955,0,0);}
.me1_c00475{transform:matrix(0.374188,-0.002994,0.002000,0.249992,0,0);-ms-transform:matrix(0.374188,-0.002994,0.002000,0.249992,0,0);-webkit-transform:matrix(0.374188,-0.002994,0.002000,0.249992,0,0);}
.mfb_c00475{transform:matrix(0.376518,-0.003012,0.002000,0.249992,0,0);-ms-transform:matrix(0.376518,-0.003012,0.002000,0.249992,0,0);-webkit-transform:matrix(0.376518,-0.003012,0.002000,0.249992,0,0);}
.mf7_c00475{transform:matrix(0.380913,-0.003047,0.002000,0.249992,0,0);-ms-transform:matrix(0.380913,-0.003047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.380913,-0.003047,0.002000,0.249992,0,0);}
.mbf_c00475{transform:matrix(0.383486,-0.007286,0.004749,0.249955,0,0);-ms-transform:matrix(0.383486,-0.007286,0.004749,0.249955,0,0);-webkit-transform:matrix(0.383486,-0.007286,0.004749,0.249955,0,0);}
.me9_c00475{transform:matrix(0.402402,-0.003219,0.002000,0.249992,0,0);-ms-transform:matrix(0.402402,-0.003219,0.002000,0.249992,0,0);-webkit-transform:matrix(0.402402,-0.003219,0.002000,0.249992,0,0);}
.m5_c00475{transform:matrix(0.445286,-0.013804,0.007746,0.249880,0,0);-ms-transform:matrix(0.445286,-0.013804,0.007746,0.249880,0,0);-webkit-transform:matrix(0.445286,-0.013804,0.007746,0.249880,0,0);}
.mab_c00475{transform:matrix(0.461867,-0.008775,0.004749,0.249955,0,0);-ms-transform:matrix(0.461867,-0.008775,0.004749,0.249955,0,0);-webkit-transform:matrix(0.461867,-0.008775,0.004749,0.249955,0,0);}
.ma3_c00475{transform:matrix(0.663815,-0.012612,0.004749,0.249955,0,0);-ms-transform:matrix(0.663815,-0.012612,0.004749,0.249955,0,0);-webkit-transform:matrix(0.663815,-0.012612,0.004749,0.249955,0,0);}
.mfc_c00475{transform:matrix(0.673133,-0.005385,0.002000,0.249992,0,0);-ms-transform:matrix(0.673133,-0.005385,0.002000,0.249992,0,0);-webkit-transform:matrix(0.673133,-0.005385,0.002000,0.249992,0,0);}
.m36_c00475{transform:matrix(0.754724,-0.014340,0.004749,0.249955,0,0);-ms-transform:matrix(0.754724,-0.014340,0.004749,0.249955,0,0);-webkit-transform:matrix(0.754724,-0.014340,0.004749,0.249955,0,0);}
.meb_c00475{transform:matrix(0.785495,-0.006284,0.002000,0.249992,0,0);-ms-transform:matrix(0.785495,-0.006284,0.002000,0.249992,0,0);-webkit-transform:matrix(0.785495,-0.006284,0.002000,0.249992,0,0);}
.m3_c00475{transform:matrix(0.829300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829300,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.843715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843715,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;}
.fs0_c00475{font-size:48.300000px;}
.fs11_c00475{font-size:48.301546px;}
.fs10_c00475{font-size:53.551714px;}
.fsf_c00475{font-size:57.751848px;}
.fs3_c00475{font-size:61.979760px;}
.fsc_c00475{font-size:64.061560px;}
.fsa_c00475{font-size:68.262318px;}
.fs9_c00475{font-size:69.312508px;}
.fsb_c00475{font-size:70.362697px;}
.fs7_c00475{font-size:71.412887px;}
.fsd_c00475{font-size:72.463076px;}
.fs5_c00475{font-size:72.484804px;}
.fse_c00475{font-size:74.563455px;}
.fs8_c00475{font-size:75.613645px;}
.fs4_c00475{font-size:84.040352px;}
.fs6_c00475{font-size:92.444388px;}
.fs1_c00475{font-size:93.450000px;}
.fs2_c00475{font-size:98.747414px;}
.y0_c00475{bottom:0.000000px;}
.yfb_c00475{bottom:151.166136px;}
.yfa_c00475{bottom:151.166496px;}
.yf9_c00475{bottom:151.166508px;}
.yf8_c00475{bottom:151.166808px;}
.yf0_c00475{bottom:151.166820px;}
.yf3_c00475{bottom:151.166844px;}
.yf1_c00475{bottom:151.166988px;}
.yee_c00475{bottom:151.167084px;}
.yf5_c00475{bottom:151.167132px;}
.yf2_c00475{bottom:151.167156px;}
.yed_c00475{bottom:151.167276px;}
.yf7_c00475{bottom:151.167360px;}
.yf4_c00475{bottom:151.167372px;}
.yef_c00475{bottom:151.167432px;}
.yf6_c00475{bottom:151.167720px;}
.yec_c00475{bottom:151.167996px;}
.yeb_c00475{bottom:151.168248px;}
.ye5_c00475{bottom:167.910360px;}
.ye4_c00475{bottom:167.910720px;}
.ye6_c00475{bottom:167.910828px;}
.ye0_c00475{bottom:167.910924px;}
.ydf_c00475{bottom:167.910996px;}
.ye3_c00475{bottom:167.911332px;}
.ye7_c00475{bottom:167.911428px;}
.ye1_c00475{bottom:167.911644px;}
.yea_c00475{bottom:167.911836px;}
.ye9_c00475{bottom:167.911848px;}
.ye8_c00475{bottom:167.912004px;}
.ye2_c00475{bottom:167.912052px;}
.ycd_c00475{bottom:184.948500px;}
.yce_c00475{bottom:185.050308px;}
.ycf_c00475{bottom:185.177748px;}
.yd0_c00475{bottom:185.458404px;}
.yd1_c00475{bottom:185.659524px;}
.yd2_c00475{bottom:185.879496px;}
.yd3_c00475{bottom:186.078468px;}
.yd4_c00475{bottom:186.293100px;}
.yd5_c00475{bottom:186.691944px;}
.yd6_c00475{bottom:186.836112px;}
.yd7_c00475{bottom:186.959760px;}
.yd8_c00475{bottom:187.441488px;}
.yd9_c00475{bottom:187.806756px;}
.yda_c00475{bottom:188.015832px;}
.ydb_c00475{bottom:188.167116px;}
.ydc_c00475{bottom:188.465856px;}
.ydd_c00475{bottom:188.679036px;}
.yde_c00475{bottom:188.940624px;}
.yc9_c00475{bottom:237.059308px;}
.yc8_c00475{bottom:237.059395px;}
.yc7_c00475{bottom:237.059872px;}
.ycc_c00475{bottom:237.059896px;}
.yca_c00475{bottom:237.060001px;}
.yc6_c00475{bottom:237.060166px;}
.ycb_c00475{bottom:237.060187px;}
.yc5_c00475{bottom:237.060301px;}
.ybb_c00475{bottom:259.443453px;}
.ybc_c00475{bottom:259.443877px;}
.ybd_c00475{bottom:259.443883px;}
.ybe_c00475{bottom:259.444371px;}
.yc4_c00475{bottom:259.444444px;}
.yc2_c00475{bottom:259.444522px;}
.ybf_c00475{bottom:259.444617px;}
.yc1_c00475{bottom:259.444900px;}
.yc3_c00475{bottom:259.445157px;}
.yc0_c00475{bottom:259.445193px;}
.yb3_c00475{bottom:280.609159px;}
.yb4_c00475{bottom:280.900240px;}
.yb5_c00475{bottom:281.258947px;}
.yb6_c00475{bottom:281.600358px;}
.yb7_c00475{bottom:282.124507px;}
.yb8_c00475{bottom:282.542053px;}
.yb9_c00475{bottom:282.787873px;}
.yba_c00475{bottom:283.082139px;}
.yac_c00475{bottom:303.548998px;}
.yad_c00475{bottom:304.292334px;}
.yae_c00475{bottom:304.565091px;}
.yaf_c00475{bottom:305.492829px;}
.yb0_c00475{bottom:305.744245px;}
.yb1_c00475{bottom:306.408997px;}
.yb2_c00475{bottom:306.717714px;}
.yaa_c00475{bottom:327.842959px;}
.yab_c00475{bottom:327.843312px;}
.ya9_c00475{bottom:351.161872px;}
.ya8_c00475{bottom:351.162430px;}
.ya5_c00475{bottom:351.162651px;}
.ya7_c00475{bottom:351.162876px;}
.ya6_c00475{bottom:351.162955px;}
.ya4_c00475{bottom:351.163278px;}
.ya2_c00475{bottom:351.163444px;}
.ya3_c00475{bottom:351.163602px;}
.y9a_c00475{bottom:372.526561px;}
.y9b_c00475{bottom:372.761019px;}
.y9c_c00475{bottom:373.087063px;}
.y9d_c00475{bottom:373.381272px;}
.y9e_c00475{bottom:373.644759px;}
.y9f_c00475{bottom:374.221813px;}
.ya0_c00475{bottom:374.409307px;}
.ya1_c00475{bottom:374.705788px;}
.y92_c00475{bottom:394.947709px;}
.y93_c00475{bottom:395.389722px;}
.y94_c00475{bottom:396.019183px;}
.y95_c00475{bottom:396.535959px;}
.y96_c00475{bottom:397.088110px;}
.y97_c00475{bottom:397.295568px;}
.y98_c00475{bottom:397.817875px;}
.y99_c00475{bottom:398.659251px;}
.y8b_c00475{bottom:417.631284px;}
.y8c_c00475{bottom:417.955540px;}
.y8d_c00475{bottom:418.515318px;}
.y8e_c00475{bottom:418.994856px;}
.y8f_c00475{bottom:419.578230px;}
.y90_c00475{bottom:419.994339px;}
.y91_c00475{bottom:420.471120px;}
.y85_c00475{bottom:442.406964px;}
.y88_c00475{bottom:442.406983px;}
.y89_c00475{bottom:442.407169px;}
.y84_c00475{bottom:442.407280px;}
.y86_c00475{bottom:442.407688px;}
.y87_c00475{bottom:442.407696px;}
.y8a_c00475{bottom:442.407867px;}
.y7d_c00475{bottom:463.532505px;}
.y7e_c00475{bottom:464.136237px;}
.y7f_c00475{bottom:464.525109px;}
.y80_c00475{bottom:465.428245px;}
.y81_c00475{bottom:465.708136px;}
.y82_c00475{bottom:466.017682px;}
.y83_c00475{bottom:466.817505px;}
.y75_c00475{bottom:485.943721px;}
.y76_c00475{bottom:486.611743px;}
.y77_c00475{bottom:486.893593px;}
.y78_c00475{bottom:487.486653px;}
.y79_c00475{bottom:487.753809px;}
.y7a_c00475{bottom:488.119071px;}
.y7b_c00475{bottom:488.565169px;}
.y7c_c00475{bottom:488.734722px;}
.y6e_c00475{bottom:508.905616px;}
.y6f_c00475{bottom:509.523975px;}
.y70_c00475{bottom:510.068317px;}
.y71_c00475{bottom:510.396945px;}
.y72_c00475{bottom:510.869982px;}
.y73_c00475{bottom:511.350079px;}
.y74_c00475{bottom:511.748997px;}
.y66_c00475{bottom:532.130130px;}
.y67_c00475{bottom:532.510890px;}
.y68_c00475{bottom:533.018571px;}
.y69_c00475{bottom:533.822868px;}
.y6a_c00475{bottom:534.108534px;}
.y6b_c00475{bottom:534.360025px;}
.y6c_c00475{bottom:534.540207px;}
.y6d_c00475{bottom:535.015615px;}
.y5b_c00475{bottom:555.082772px;}
.y5c_c00475{bottom:555.330032px;}
.y5d_c00475{bottom:555.706710px;}
.y5e_c00475{bottom:555.949795px;}
.y5f_c00475{bottom:556.273614px;}
.y60_c00475{bottom:556.576509px;}
.y61_c00475{bottom:556.988192px;}
.y62_c00475{bottom:557.231106px;}
.y63_c00475{bottom:557.652238px;}
.y64_c00475{bottom:557.893165px;}
.y65_c00475{bottom:558.229077px;}
.y54_c00475{bottom:577.757728px;}
.y55_c00475{bottom:578.283438px;}
.y56_c00475{bottom:578.889984px;}
.y57_c00475{bottom:579.864482px;}
.y58_c00475{bottom:580.202617px;}
.y59_c00475{bottom:580.940098px;}
.y5a_c00475{bottom:581.177172px;}
.y4b_c00475{bottom:600.992371px;}
.y4c_c00475{bottom:601.357918px;}
.y4d_c00475{bottom:601.892961px;}
.y4e_c00475{bottom:602.353411px;}
.y4f_c00475{bottom:602.662045px;}
.y50_c00475{bottom:603.259647px;}
.y51_c00475{bottom:603.452068px;}
.y52_c00475{bottom:603.713065px;}
.y53_c00475{bottom:604.318614px;}
.y42_c00475{bottom:623.389396px;}
.y43_c00475{bottom:623.758689px;}
.y44_c00475{bottom:624.236068px;}
.y45_c00475{bottom:624.976527px;}
.y46_c00475{bottom:625.324040px;}
.y47_c00475{bottom:625.872433px;}
.y48_c00475{bottom:626.384413px;}
.y49_c00475{bottom:626.734416px;}
.y4a_c00475{bottom:627.697148px;}
.y3c_c00475{bottom:645.551444px;}
.y3d_c00475{bottom:646.596802px;}
.y3e_c00475{bottom:646.701391px;}
.y3f_c00475{bottom:648.031491px;}
.y40_c00475{bottom:648.995253px;}
.y41_c00475{bottom:649.397600px;}
.y36_c00475{bottom:668.237048px;}
.y37_c00475{bottom:669.338864px;}
.y38_c00475{bottom:669.642271px;}
.y39_c00475{bottom:670.119570px;}
.y3a_c00475{bottom:670.398740px;}
.y3b_c00475{bottom:671.273389px;}
.y2e_c00475{bottom:691.460801px;}
.y2f_c00475{bottom:691.906953px;}
.y30_c00475{bottom:692.254408px;}
.y31_c00475{bottom:692.907060px;}
.y32_c00475{bottom:693.429331px;}
.y33_c00475{bottom:694.015899px;}
.y34_c00475{bottom:694.657661px;}
.y35_c00475{bottom:694.988220px;}
.y26_c00475{bottom:714.137852px;}
.y27_c00475{bottom:715.183364px;}
.y28_c00475{bottom:715.882018px;}
.y29_c00475{bottom:716.666828px;}
.y2a_c00475{bottom:716.867548px;}
.y2b_c00475{bottom:717.288092px;}
.y2c_c00475{bottom:718.264289px;}
.y2d_c00475{bottom:718.600854px;}
.y20_c00475{bottom:736.294500px;}
.y21_c00475{bottom:737.245431px;}
.y22_c00475{bottom:738.695682px;}
.y23_c00475{bottom:739.419468px;}
.y24_c00475{bottom:740.777322px;}
.y25_c00475{bottom:741.794630px;}
.y1e_c00475{bottom:758.928912px;}
.y1f_c00475{bottom:761.334913px;}
.y14_c00475{bottom:781.358518px;}
.y15_c00475{bottom:782.585397px;}
.y16_c00475{bottom:782.950555px;}
.y17_c00475{bottom:783.590574px;}
.y18_c00475{bottom:784.601505px;}
.y19_c00475{bottom:786.054909px;}
.y1a_c00475{bottom:786.766104px;}
.y1b_c00475{bottom:788.375461px;}
.y1c_c00475{bottom:789.463846px;}
.y1d_c00475{bottom:790.330390px;}
.y12_c00475{bottom:801.339780px;}
.y13_c00475{bottom:805.520755px;}
.y9_c00475{bottom:827.533437px;}
.ya_c00475{bottom:828.203880px;}
.yb_c00475{bottom:829.360041px;}
.yc_c00475{bottom:829.542348px;}
.yd_c00475{bottom:830.209281px;}
.ye_c00475{bottom:830.651125px;}
.yf_c00475{bottom:831.632371px;}
.y10_c00475{bottom:832.383937px;}
.y11_c00475{bottom:833.308781px;}
.y3_c00475{bottom:867.531000px;}
.y4_c00475{bottom:871.722882px;}
.y5_c00475{bottom:873.179866px;}
.y6_c00475{bottom:874.175152px;}
.y7_c00475{bottom:875.346906px;}
.y8_c00475{bottom:876.518938px;}
.y2_c00475{bottom:911.553000px;}
.y1_c00475{bottom:935.070000px;}
.h2_c00475{height:48.300000px;}
.h13_c00475{height:48.301546px;}
.h12_c00475{height:53.551714px;}
.h11_c00475{height:57.751848px;}
.h5_c00475{height:61.979760px;}
.he_c00475{height:64.061560px;}
.hc_c00475{height:68.262318px;}
.hb_c00475{height:69.312508px;}
.hd_c00475{height:70.362697px;}
.h9_c00475{height:71.412887px;}
.hf_c00475{height:72.463076px;}
.h7_c00475{height:72.484804px;}
.h10_c00475{height:74.563455px;}
.ha_c00475{height:75.613645px;}
.h6_c00475{height:84.040352px;}
.h8_c00475{height:92.444388px;}
.h3_c00475{height:93.450000px;}
.h4_c00475{height:98.747414px;}
.h0_c00475{height:1008.450000px;}
.h1_c00475{height:1008.750000px;}
.w1_c00475{width:700.500000px;}
.w0_c00475{width:700.650000px;}
.x0_c00475{left:0.000000px;}
.x4_c00475{left:87.436500px;}
.x1_c00475{left:100.440000px;}
.x14_c00475{left:141.103429px;}
.x5_c00475{left:142.174500px;}
.x87_c00475{left:147.198000px;}
.x91_c00475{left:148.771392px;}
.x2_c00475{left:155.790000px;}
.x88_c00475{left:159.924000px;}
.x31_c00475{left:175.746149px;}
.x45_c00475{left:177.264183px;}
.x20_c00475{left:178.452000px;}
.xb_c00475{left:180.076623px;}
.x62_c00475{left:181.444422px;}
.x77_c00475{left:183.459204px;}
.x92_c00475{left:184.952208px;}
.x93_c00475{left:196.292928px;}
.x9a_c00475{left:199.533576px;}
.x7b_c00475{left:203.590464px;}
.x4c_c00475{left:206.137575px;}
.x39_c00475{left:207.530902px;}
.x6d_c00475{left:209.868981px;}
.x3e_c00475{left:211.838418px;}
.x2b_c00475{left:215.095282px;}
.x55_c00475{left:216.146094px;}
.x6a_c00475{left:220.480020px;}
.xc_c00475{left:221.949060px;}
.x70_c00475{left:223.841226px;}
.x46_c00475{left:225.071951px;}
.x16_c00475{left:227.173891px;}
.x21_c00475{left:228.501000px;}
.x1e_c00475{left:230.474707px;}
.x5d_c00475{left:235.364679px;}
.x7c_c00475{left:237.076548px;}
.x5b_c00475{left:240.203045px;}
.x17_c00475{left:241.229577px;}
.x36_c00475{left:244.326914px;}
.x94_c00475{left:246.784656px;}
.x4d_c00475{left:247.997027px;}
.x32_c00475{left:249.215734px;}
.x3_c00475{left:251.100000px;}
.x66_c00475{left:253.136577px;}
.x75_c00475{left:255.570909px;}
.x25_c00475{left:258.848479px;}
.x3f_c00475{left:260.453299px;}
.x95_c00475{left:262.445664px;}
.x89_c00475{left:263.572500px;}
.x78_c00475{left:264.728190px;}
.x18_c00475{left:265.846890px;}
.x56_c00475{left:266.953787px;}
.x33_c00475{left:269.449274px;}
.x5e_c00475{left:270.758066px;}
.x4e_c00475{left:275.006657px;}
.x71_c00475{left:276.231150px;}
.x6_c00475{left:277.396500px;}
.x47_c00475{left:280.214329px;}
.x63_c00475{left:282.712959px;}
.x6e_c00475{left:287.372169px;}
.x8a_c00475{left:288.444000px;}
.x2c_c00475{left:292.057060px;}
.x67_c00475{left:293.143907px;}
.xd_c00475{left:294.213633px;}
.x34_c00475{left:301.283196px;}
.x40_c00475{left:302.299155px;}
.x59_c00475{left:303.942791px;}
.xe_c00475{left:305.615934px;}
.x79_c00475{left:307.416611px;}
.x4f_c00475{left:310.924968px;}
.x26_c00475{left:312.599607px;}
.x96_c00475{left:313.747452px;}
.x15_c00475{left:315.301687px;}
.x35_c00475{left:319.925121px;}
.x7_c00475{left:324.396000px;}
.x3a_c00475{left:327.984139px;}
.x41_c00475{left:330.389430px;}
.x2d_c00475{left:332.260149px;}
.x37_c00475{left:333.973515px;}
.x1f_c00475{left:339.811665px;}
.x68_c00475{left:341.696348px;}
.x22_c00475{left:342.924000px;}
.x50_c00475{left:344.636381px;}
.xf_c00475{left:347.278278px;}
.x5f_c00475{left:352.804020px;}
.x8_c00475{left:356.502000px;}
.x19_c00475{left:360.646584px;}
.x72_c00475{left:364.538013px;}
.x48_c00475{left:368.780282px;}
.x3b_c00475{left:370.114927px;}
.x27_c00475{left:373.017504px;}
.x10_c00475{left:374.850566px;}
.x57_c00475{left:376.049454px;}
.x2e_c00475{left:377.347779px;}
.x7d_c00475{left:380.471276px;}
.x5a_c00475{left:383.328836px;}
.x42_c00475{left:384.666166px;}
.x81_c00475{left:386.412576px;}
.x1a_c00475{left:387.995815px;}
.x51_c00475{left:390.312545px;}
.x6f_c00475{left:392.422614px;}
.x9_c00475{left:394.300500px;}
.x64_c00475{left:397.753484px;}
.x49_c00475{left:399.528956px;}
.x58_c00475{left:401.132229px;}
.x43_c00475{left:402.217345px;}
.x60_c00475{left:406.335143px;}
.x3c_c00475{left:409.539430px;}
.x9b_c00475{left:413.379768px;}
.x23_c00475{left:414.390000px;}
.x69_c00475{left:416.016209px;}
.x52_c00475{left:417.313175px;}
.x38_c00475{left:419.299860px;}
.x28_c00475{left:420.878976px;}
.x7a_c00475{left:425.135706px;}
.x2f_c00475{left:426.761922px;}
.xa_c00475{left:432.108000px;}
.x5c_c00475{left:433.283900px;}
.x82_c00475{left:435.021132px;}
.x11_c00475{left:436.145023px;}
.x74_c00475{left:437.451237px;}
.x9c_c00475{left:439.029912px;}
.x6b_c00475{left:441.390122px;}
.x65_c00475{left:443.122343px;}
.x7e_c00475{left:446.633159px;}
.x1b_c00475{left:449.887894px;}
.x30_c00475{left:452.215329px;}
.x83_c00475{left:453.654858px;}
.x73_c00475{left:455.544374px;}
.x8b_c00475{left:458.821500px;}
.x53_c00475{left:464.039538px;}
.x4a_c00475{left:466.538130px;}
.x24_c00475{left:467.932500px;}
.x7f_c00475{left:472.017807px;}
.x84_c00475{left:473.909154px;}
.x61_c00475{left:479.073701px;}
.x44_c00475{left:481.073844px;}
.x12_c00475{left:483.152878px;}
.x4b_c00475{left:488.097908px;}
.x97_c00475{left:489.794208px;}
.x1c_c00475{left:491.729358px;}
.x29_c00475{left:495.950526px;}
.x76_c00475{left:498.132377px;}
.x85_c00475{left:503.613870px;}
.x3d_c00475{left:510.536944px;}
.x80_c00475{left:515.496011px;}
.x6c_c00475{left:517.816221px;}
.x2a_c00475{left:521.877990px;}
.x1d_c00475{left:525.058519px;}
.x54_c00475{left:528.043179px;}
.x8c_c00475{left:530.614500px;}
.x9d_c00475{left:531.912852px;}
.x13_c00475{left:540.932709px;}
.x8d_c00475{left:549.525000px;}
.x86_c00475{left:551.142027px;}
.x9e_c00475{left:580.784484px;}
.x8e_c00475{left:586.867500px;}
.x98_c00475{left:609.407364px;}
.x8f_c00475{left:613.515000px;}
.x9f_c00475{left:619.935492px;}
.xa0_c00475{left:641.266860px;}
.x90_c00475{left:646.213500px;}
.x99_c00475{left:649.908456px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs0_c00475{font-size:42.933333pt;}
.fs11_c00475{font-size:42.934707pt;}
.fs10_c00475{font-size:47.601523pt;}
.fsf_c00475{font-size:51.334976pt;}
.fs3_c00475{font-size:55.093120pt;}
.fsc_c00475{font-size:56.943609pt;}
.fsa_c00475{font-size:60.677616pt;}
.fs9_c00475{font-size:61.611118pt;}
.fsb_c00475{font-size:62.544620pt;}
.fs7_c00475{font-size:63.478121pt;}
.fsd_c00475{font-size:64.411623pt;}
.fs5_c00475{font-size:64.430937pt;}
.fse_c00475{font-size:66.278627pt;}
.fs8_c00475{font-size:67.212129pt;}
.fs4_c00475{font-size:74.702535pt;}
.fs6_c00475{font-size:82.172789pt;}
.fs1_c00475{font-size:83.066667pt;}
.fs2_c00475{font-size:87.775479pt;}
.y0_c00475{bottom:0.000000pt;}
.yfb_c00475{bottom:134.369899pt;}
.yfa_c00475{bottom:134.370219pt;}
.yf9_c00475{bottom:134.370229pt;}
.yf8_c00475{bottom:134.370496pt;}
.yf0_c00475{bottom:134.370507pt;}
.yf3_c00475{bottom:134.370528pt;}
.yf1_c00475{bottom:134.370656pt;}
.yee_c00475{bottom:134.370741pt;}
.yf5_c00475{bottom:134.370784pt;}
.yf2_c00475{bottom:134.370805pt;}
.yed_c00475{bottom:134.370912pt;}
.yf7_c00475{bottom:134.370987pt;}
.yf4_c00475{bottom:134.370997pt;}
.yef_c00475{bottom:134.371051pt;}
.yf6_c00475{bottom:134.371307pt;}
.yec_c00475{bottom:134.371552pt;}
.yeb_c00475{bottom:134.371776pt;}
.ye5_c00475{bottom:149.253653pt;}
.ye4_c00475{bottom:149.253973pt;}
.ye6_c00475{bottom:149.254069pt;}
.ye0_c00475{bottom:149.254155pt;}
.ydf_c00475{bottom:149.254219pt;}
.ye3_c00475{bottom:149.254517pt;}
.ye7_c00475{bottom:149.254603pt;}
.ye1_c00475{bottom:149.254795pt;}
.yea_c00475{bottom:149.254965pt;}
.ye9_c00475{bottom:149.254976pt;}
.ye8_c00475{bottom:149.255115pt;}
.ye2_c00475{bottom:149.255157pt;}
.ycd_c00475{bottom:164.398667pt;}
.yce_c00475{bottom:164.489163pt;}
.ycf_c00475{bottom:164.602443pt;}
.yd0_c00475{bottom:164.851915pt;}
.yd1_c00475{bottom:165.030688pt;}
.yd2_c00475{bottom:165.226219pt;}
.yd3_c00475{bottom:165.403083pt;}
.yd4_c00475{bottom:165.593867pt;}
.yd5_c00475{bottom:165.948395pt;}
.yd6_c00475{bottom:166.076544pt;}
.yd7_c00475{bottom:166.186453pt;}
.yd8_c00475{bottom:166.614656pt;}
.yd9_c00475{bottom:166.939339pt;}
.yda_c00475{bottom:167.125184pt;}
.ydb_c00475{bottom:167.259659pt;}
.ydc_c00475{bottom:167.525205pt;}
.ydd_c00475{bottom:167.714699pt;}
.yde_c00475{bottom:167.947221pt;}
.yc9_c00475{bottom:210.719385pt;}
.yc8_c00475{bottom:210.719463pt;}
.yc7_c00475{bottom:210.719887pt;}
.ycc_c00475{bottom:210.719908pt;}
.yca_c00475{bottom:210.720001pt;}
.yc6_c00475{bottom:210.720148pt;}
.ycb_c00475{bottom:210.720167pt;}
.yc5_c00475{bottom:210.720268pt;}
.ybb_c00475{bottom:230.616403pt;}
.ybc_c00475{bottom:230.616780pt;}
.ybd_c00475{bottom:230.616785pt;}
.ybe_c00475{bottom:230.617219pt;}
.yc4_c00475{bottom:230.617284pt;}
.yc2_c00475{bottom:230.617353pt;}
.ybf_c00475{bottom:230.617437pt;}
.yc1_c00475{bottom:230.617689pt;}
.yc3_c00475{bottom:230.617917pt;}
.yc0_c00475{bottom:230.617949pt;}
.yb3_c00475{bottom:249.430364pt;}
.yb4_c00475{bottom:249.689103pt;}
.yb5_c00475{bottom:250.007953pt;}
.yb6_c00475{bottom:250.311429pt;}
.yb7_c00475{bottom:250.777340pt;}
.yb8_c00475{bottom:251.148492pt;}
.yb9_c00475{bottom:251.366999pt;}
.yba_c00475{bottom:251.628568pt;}
.yac_c00475{bottom:269.821332pt;}
.yad_c00475{bottom:270.482075pt;}
.yae_c00475{bottom:270.724525pt;}
.yaf_c00475{bottom:271.549181pt;}
.yb0_c00475{bottom:271.772663pt;}
.yb1_c00475{bottom:272.363553pt;}
.yb2_c00475{bottom:272.637968pt;}
.yaa_c00475{bottom:291.415964pt;}
.yab_c00475{bottom:291.416277pt;}
.ya9_c00475{bottom:312.143887pt;}
.ya8_c00475{bottom:312.144383pt;}
.ya5_c00475{bottom:312.144579pt;}
.ya7_c00475{bottom:312.144779pt;}
.ya6_c00475{bottom:312.144849pt;}
.ya4_c00475{bottom:312.145136pt;}
.ya2_c00475{bottom:312.145284pt;}
.ya3_c00475{bottom:312.145424pt;}
.y9a_c00475{bottom:331.134721pt;}
.y9b_c00475{bottom:331.343128pt;}
.y9c_c00475{bottom:331.632945pt;}
.y9d_c00475{bottom:331.894464pt;}
.y9e_c00475{bottom:332.128675pt;}
.y9f_c00475{bottom:332.641612pt;}
.ya0_c00475{bottom:332.808273pt;}
.ya1_c00475{bottom:333.071812pt;}
.y92_c00475{bottom:351.064631pt;}
.y93_c00475{bottom:351.457531pt;}
.y94_c00475{bottom:352.017052pt;}
.y95_c00475{bottom:352.476408pt;}
.y96_c00475{bottom:352.967209pt;}
.y97_c00475{bottom:353.151616pt;}
.y98_c00475{bottom:353.615889pt;}
.y99_c00475{bottom:354.363779pt;}
.y8b_c00475{bottom:371.227808pt;}
.y8c_c00475{bottom:371.516036pt;}
.y8d_c00475{bottom:372.013616pt;}
.y8e_c00475{bottom:372.439872pt;}
.y8f_c00475{bottom:372.958427pt;}
.y90_c00475{bottom:373.328301pt;}
.y91_c00475{bottom:373.752107pt;}
.y85_c00475{bottom:393.250635pt;}
.y88_c00475{bottom:393.250652pt;}
.y89_c00475{bottom:393.250817pt;}
.y84_c00475{bottom:393.250916pt;}
.y86_c00475{bottom:393.251279pt;}
.y87_c00475{bottom:393.251285pt;}
.y8a_c00475{bottom:393.251437pt;}
.y7d_c00475{bottom:412.028893pt;}
.y7e_c00475{bottom:412.565544pt;}
.y7f_c00475{bottom:412.911208pt;}
.y80_c00475{bottom:413.713996pt;}
.y81_c00475{bottom:413.962788pt;}
.y82_c00475{bottom:414.237940pt;}
.y83_c00475{bottom:414.948893pt;}
.y75_c00475{bottom:431.949975pt;}
.y76_c00475{bottom:432.543772pt;}
.y77_c00475{bottom:432.794305pt;}
.y78_c00475{bottom:433.321469pt;}
.y79_c00475{bottom:433.558941pt;}
.y7a_c00475{bottom:433.883619pt;}
.y7b_c00475{bottom:434.280151pt;}
.y7c_c00475{bottom:434.430864pt;}
.y6e_c00475{bottom:452.360548pt;}
.y6f_c00475{bottom:452.910200pt;}
.y70_c00475{bottom:453.394060pt;}
.y71_c00475{bottom:453.686173pt;}
.y72_c00475{bottom:454.106651pt;}
.y73_c00475{bottom:454.533404pt;}
.y74_c00475{bottom:454.887997pt;}
.y66_c00475{bottom:473.004560pt;}
.y67_c00475{bottom:473.343013pt;}
.y68_c00475{bottom:473.794285pt;}
.y69_c00475{bottom:474.509216pt;}
.y6a_c00475{bottom:474.763141pt;}
.y6b_c00475{bottom:474.986689pt;}
.y6c_c00475{bottom:475.146851pt;}
.y6d_c00475{bottom:475.569436pt;}
.y5b_c00475{bottom:493.406908pt;}
.y5c_c00475{bottom:493.626695pt;}
.y5d_c00475{bottom:493.961520pt;}
.y5e_c00475{bottom:494.177596pt;}
.y5f_c00475{bottom:494.465435pt;}
.y60_c00475{bottom:494.734675pt;}
.y61_c00475{bottom:495.100615pt;}
.y62_c00475{bottom:495.316539pt;}
.y63_c00475{bottom:495.690879pt;}
.y64_c00475{bottom:495.905036pt;}
.y65_c00475{bottom:496.203624pt;}
.y54_c00475{bottom:513.562425pt;}
.y55_c00475{bottom:514.029723pt;}
.y56_c00475{bottom:514.568875pt;}
.y57_c00475{bottom:515.435095pt;}
.y58_c00475{bottom:515.735660pt;}
.y59_c00475{bottom:516.391199pt;}
.y5a_c00475{bottom:516.601931pt;}
.y4b_c00475{bottom:534.215441pt;}
.y4c_c00475{bottom:534.540372pt;}
.y4d_c00475{bottom:535.015965pt;}
.y4e_c00475{bottom:535.425255pt;}
.y4f_c00475{bottom:535.699596pt;}
.y50_c00475{bottom:536.230797pt;}
.y51_c00475{bottom:536.401839pt;}
.y52_c00475{bottom:536.633836pt;}
.y53_c00475{bottom:537.172101pt;}
.y42_c00475{bottom:554.123908pt;}
.y43_c00475{bottom:554.452168pt;}
.y44_c00475{bottom:554.876505pt;}
.y45_c00475{bottom:555.534691pt;}
.y46_c00475{bottom:555.843591pt;}
.y47_c00475{bottom:556.331052pt;}
.y48_c00475{bottom:556.786145pt;}
.y49_c00475{bottom:557.097259pt;}
.y4a_c00475{bottom:557.953020pt;}
.y3c_c00475{bottom:573.823505pt;}
.y3d_c00475{bottom:574.752713pt;}
.y3e_c00475{bottom:574.845681pt;}
.y3f_c00475{bottom:576.027992pt;}
.y40_c00475{bottom:576.884669pt;}
.y41_c00475{bottom:577.242311pt;}
.y36_c00475{bottom:593.988487pt;}
.y37_c00475{bottom:594.967879pt;}
.y38_c00475{bottom:595.237575pt;}
.y39_c00475{bottom:595.661840pt;}
.y3a_c00475{bottom:595.909991pt;}
.y3b_c00475{bottom:596.687457pt;}
.y2e_c00475{bottom:614.631823pt;}
.y2f_c00475{bottom:615.028403pt;}
.y30_c00475{bottom:615.337252pt;}
.y31_c00475{bottom:615.917387pt;}
.y32_c00475{bottom:616.381628pt;}
.y33_c00475{bottom:616.903021pt;}
.y34_c00475{bottom:617.473476pt;}
.y35_c00475{bottom:617.767307pt;}
.y26_c00475{bottom:634.789201pt;}
.y27_c00475{bottom:635.718545pt;}
.y28_c00475{bottom:636.339572pt;}
.y29_c00475{bottom:637.037180pt;}
.y2a_c00475{bottom:637.215599pt;}
.y2b_c00475{bottom:637.589415pt;}
.y2c_c00475{bottom:638.457145pt;}
.y2d_c00475{bottom:638.756315pt;}
.y20_c00475{bottom:654.484000pt;}
.y21_c00475{bottom:655.329272pt;}
.y22_c00475{bottom:656.618384pt;}
.y23_c00475{bottom:657.261749pt;}
.y24_c00475{bottom:658.468731pt;}
.y25_c00475{bottom:659.373004pt;}
.y1e_c00475{bottom:674.603477pt;}
.y1f_c00475{bottom:676.742145pt;}
.y14_c00475{bottom:694.540905pt;}
.y15_c00475{bottom:695.631464pt;}
.y16_c00475{bottom:695.956049pt;}
.y17_c00475{bottom:696.524955pt;}
.y18_c00475{bottom:697.423560pt;}
.y19_c00475{bottom:698.715475pt;}
.y1a_c00475{bottom:699.347648pt;}
.y1b_c00475{bottom:700.778188pt;}
.y1c_c00475{bottom:701.745641pt;}
.y1d_c00475{bottom:702.515903pt;}
.y12_c00475{bottom:712.302027pt;}
.y13_c00475{bottom:716.018449pt;}
.y9_c00475{bottom:735.585277pt;}
.ya_c00475{bottom:736.181227pt;}
.yb_c00475{bottom:737.208925pt;}
.yc_c00475{bottom:737.370976pt;}
.yd_c00475{bottom:737.963805pt;}
.ye_c00475{bottom:738.356556pt;}
.yf_c00475{bottom:739.228775pt;}
.y10_c00475{bottom:739.896833pt;}
.y11_c00475{bottom:740.718916pt;}
.y3_c00475{bottom:771.138667pt;}
.y4_c00475{bottom:774.864784pt;}
.y5_c00475{bottom:776.159881pt;}
.y6_c00475{bottom:777.044580pt;}
.y7_c00475{bottom:778.086139pt;}
.y8_c00475{bottom:779.127945pt;}
.y2_c00475{bottom:810.269333pt;}
.y1_c00475{bottom:831.173333pt;}
.h2_c00475{height:42.933333pt;}
.h13_c00475{height:42.934707pt;}
.h12_c00475{height:47.601523pt;}
.h11_c00475{height:51.334976pt;}
.h5_c00475{height:55.093120pt;}
.he_c00475{height:56.943609pt;}
.hc_c00475{height:60.677616pt;}
.hb_c00475{height:61.611118pt;}
.hd_c00475{height:62.544620pt;}
.h9_c00475{height:63.478121pt;}
.hf_c00475{height:64.411623pt;}
.h7_c00475{height:64.430937pt;}
.h10_c00475{height:66.278627pt;}
.ha_c00475{height:67.212129pt;}
.h6_c00475{height:74.702535pt;}
.h8_c00475{height:82.172789pt;}
.h3_c00475{height:83.066667pt;}
.h4_c00475{height:87.775479pt;}
.h0_c00475{height:896.400000pt;}
.h1_c00475{height:896.666667pt;}
.w1_c00475{width:622.666667pt;}
.w0_c00475{width:622.800000pt;}
.x0_c00475{left:0.000000pt;}
.x4_c00475{left:77.721333pt;}
.x1_c00475{left:89.280000pt;}
.x14_c00475{left:125.425271pt;}
.x5_c00475{left:126.377333pt;}
.x87_c00475{left:130.842667pt;}
.x91_c00475{left:132.241237pt;}
.x2_c00475{left:138.480000pt;}
.x88_c00475{left:142.154667pt;}
.x31_c00475{left:156.218799pt;}
.x45_c00475{left:157.568163pt;}
.x20_c00475{left:158.624000pt;}
.xb_c00475{left:160.068109pt;}
.x62_c00475{left:161.283931pt;}
.x77_c00475{left:163.074848pt;}
.x92_c00475{left:164.401963pt;}
.x93_c00475{left:174.482603pt;}
.x9a_c00475{left:177.363179pt;}
.x7b_c00475{left:180.969301pt;}
.x4c_c00475{left:183.233400pt;}
.x39_c00475{left:184.471913pt;}
.x6d_c00475{left:186.550205pt;}
.x3e_c00475{left:188.300816pt;}
.x2b_c00475{left:191.195807pt;}
.x55_c00475{left:192.129861pt;}
.x6a_c00475{left:195.982240pt;}
.xc_c00475{left:197.288053pt;}
.x70_c00475{left:198.969979pt;}
.x46_c00475{left:200.063956pt;}
.x16_c00475{left:201.932348pt;}
.x21_c00475{left:203.112000pt;}
.x1e_c00475{left:204.866407pt;}
.x5d_c00475{left:209.213048pt;}
.x7c_c00475{left:210.734709pt;}
.x5b_c00475{left:213.513817pt;}
.x17_c00475{left:214.426291pt;}
.x36_c00475{left:217.179479pt;}
.x94_c00475{left:219.364139pt;}
.x4d_c00475{left:220.441801pt;}
.x32_c00475{left:221.525097pt;}
.x3_c00475{left:223.200000pt;}
.x66_c00475{left:225.010291pt;}
.x75_c00475{left:227.174141pt;}
.x25_c00475{left:230.087537pt;}
.x3f_c00475{left:231.514044pt;}
.x95_c00475{left:233.285035pt;}
.x89_c00475{left:234.286667pt;}
.x78_c00475{left:235.313947pt;}
.x18_c00475{left:236.308347pt;}
.x56_c00475{left:237.292255pt;}
.x33_c00475{left:239.510465pt;}
.x5e_c00475{left:240.673836pt;}
.x4e_c00475{left:244.450361pt;}
.x71_c00475{left:245.538800pt;}
.x6_c00475{left:246.574667pt;}
.x47_c00475{left:249.079404pt;}
.x63_c00475{left:251.300408pt;}
.x6e_c00475{left:255.441928pt;}
.x8a_c00475{left:256.394667pt;}
.x2c_c00475{left:259.606276pt;}
.x67_c00475{left:260.572361pt;}
.xd_c00475{left:261.523229pt;}
.x34_c00475{left:267.807285pt;}
.x40_c00475{left:268.710360pt;}
.x59_c00475{left:270.171369pt;}
.xe_c00475{left:271.658608pt;}
.x79_c00475{left:273.259209pt;}
.x4f_c00475{left:276.377749pt;}
.x26_c00475{left:277.866317pt;}
.x96_c00475{left:278.886624pt;}
.x15_c00475{left:280.268167pt;}
.x35_c00475{left:284.377885pt;}
.x7_c00475{left:288.352000pt;}
.x3a_c00475{left:291.541457pt;}
.x41_c00475{left:293.679493pt;}
.x2d_c00475{left:295.342355pt;}
.x37_c00475{left:296.865347pt;}
.x1f_c00475{left:302.054813pt;}
.x68_c00475{left:303.730087pt;}
.x22_c00475{left:304.821333pt;}
.x50_c00475{left:306.343449pt;}
.xf_c00475{left:308.691803pt;}
.x5f_c00475{left:313.603573pt;}
.x8_c00475{left:316.890667pt;}
.x19_c00475{left:320.574741pt;}
.x72_c00475{left:324.033789pt;}
.x48_c00475{left:327.804695pt;}
.x3b_c00475{left:328.991047pt;}
.x27_c00475{left:331.571115pt;}
.x10_c00475{left:333.200503pt;}
.x57_c00475{left:334.266181pt;}
.x2e_c00475{left:335.420248pt;}
.x7d_c00475{left:338.196689pt;}
.x5a_c00475{left:340.736743pt;}
.x42_c00475{left:341.925481pt;}
.x81_c00475{left:343.477845pt;}
.x1a_c00475{left:344.885169pt;}
.x51_c00475{left:346.944484pt;}
.x6f_c00475{left:348.820101pt;}
.x9_c00475{left:350.489333pt;}
.x64_c00475{left:353.558652pt;}
.x49_c00475{left:355.136849pt;}
.x58_c00475{left:356.561981pt;}
.x43_c00475{left:357.526529pt;}
.x60_c00475{left:361.186793pt;}
.x3c_c00475{left:364.035049pt;}
.x9b_c00475{left:367.448683pt;}
.x23_c00475{left:368.346667pt;}
.x69_c00475{left:369.792185pt;}
.x52_c00475{left:370.945044pt;}
.x38_c00475{left:372.710987pt;}
.x28_c00475{left:374.114645pt;}
.x7a_c00475{left:377.898405pt;}
.x2f_c00475{left:379.343931pt;}
.xa_c00475{left:384.096000pt;}
.x5c_c00475{left:385.141244pt;}
.x82_c00475{left:386.685451pt;}
.x11_c00475{left:387.684465pt;}
.x74_c00475{left:388.845544pt;}
.x9c_c00475{left:390.248811pt;}
.x6b_c00475{left:392.346775pt;}
.x65_c00475{left:393.886527pt;}
.x7e_c00475{left:397.007252pt;}
.x1b_c00475{left:399.900351pt;}
.x30_c00475{left:401.969181pt;}
.x83_c00475{left:403.248763pt;}
.x73_c00475{left:404.928332pt;}
.x8b_c00475{left:407.841333pt;}
.x53_c00475{left:412.479589pt;}
.x4a_c00475{left:414.700560pt;}
.x24_c00475{left:415.940000pt;}
.x7f_c00475{left:419.571384pt;}
.x84_c00475{left:421.252581pt;}
.x61_c00475{left:425.843289pt;}
.x44_c00475{left:427.621195pt;}
.x12_c00475{left:429.469225pt;}
.x4b_c00475{left:433.864807pt;}
.x97_c00475{left:435.372629pt;}
.x1c_c00475{left:437.092763pt;}
.x29_c00475{left:440.844912pt;}
.x76_c00475{left:442.784335pt;}
.x85_c00475{left:447.656773pt;}
.x3d_c00475{left:453.810617pt;}
.x80_c00475{left:458.218676pt;}
.x6c_c00475{left:460.281085pt;}
.x2a_c00475{left:463.891547pt;}
.x1d_c00475{left:466.718684pt;}
.x54_c00475{left:469.371715pt;}
.x8c_c00475{left:471.657333pt;}
.x9d_c00475{left:472.811424pt;}
.x13_c00475{left:480.829075pt;}
.x8d_c00475{left:488.466667pt;}
.x86_c00475{left:489.904024pt;}
.x9e_c00475{left:516.252875pt;}
.x8e_c00475{left:521.660000pt;}
.x98_c00475{left:541.695435pt;}
.x8f_c00475{left:545.346667pt;}
.x9f_c00475{left:551.053771pt;}
.xa0_c00475{left:570.014987pt;}
.x90_c00475{left:574.412000pt;}
.x99_c00475{left:577.696405pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24df5124729fd0a4ee0fe1e.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;}
.mcd_c00476{transform:matrix(0.009694,0.000126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.009694,0.000126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.009694,0.000126,-0.003250,0.249979,0,0);}
.mb7_c00476{transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);}
.md3_c00476{transform:matrix(0.013634,0.000177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.013634,0.000177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.013634,0.000177,-0.003250,0.249979,0,0);}
.mb6_c00476{transform:matrix(0.014049,0.000183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.014049,0.000183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.014049,0.000183,-0.003250,0.249979,0,0);}
.me6_c00476{transform:matrix(0.015344,0.000169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.015344,0.000169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.015344,0.000169,-0.002750,0.249985,0,0);}
.me0_c00476{transform:matrix(0.017494,0.000192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.017494,0.000192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.017494,0.000192,-0.002750,0.249985,0,0);}
.m47_c00476{transform:matrix(0.030488,0.000366,-0.003000,0.249982,0,0);-ms-transform:matrix(0.030488,0.000366,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.030488,0.000366,-0.003000,0.249982,0,0);}
.m9d_c00476{transform:matrix(0.063420,0.000824,-0.003250,0.249979,0,0);-ms-transform:matrix(0.063420,0.000824,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.063420,0.000824,-0.003250,0.249979,0,0);}
.md5_c00476{transform:matrix(0.096622,0.001256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.096622,0.001256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.096622,0.001256,-0.003250,0.249979,0,0);}
.mcc_c00476{transform:matrix(0.105941,0.001377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.105941,0.001377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.105941,0.001377,-0.003250,0.249979,0,0);}
.m51_c00476{transform:matrix(0.128626,0.001544,-0.003000,0.249982,0,0);-ms-transform:matrix(0.128626,0.001544,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.128626,0.001544,-0.003000,0.249982,0,0);}
.m7c_c00476{transform:matrix(0.132684,0.001725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.132684,0.001725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.132684,0.001725,-0.003250,0.249979,0,0);}
.m82_c00476{transform:matrix(0.134164,0.001744,-0.003250,0.249979,0,0);-ms-transform:matrix(0.134164,0.001744,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.134164,0.001744,-0.003250,0.249979,0,0);}
.m5d_c00476{transform:matrix(0.134319,0.001746,-0.003250,0.249979,0,0);-ms-transform:matrix(0.134319,0.001746,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.134319,0.001746,-0.003250,0.249979,0,0);}
.mc4_c00476{transform:matrix(0.134824,0.001753,-0.003250,0.249979,0,0);-ms-transform:matrix(0.134824,0.001753,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.134824,0.001753,-0.003250,0.249979,0,0);}
.mdf_c00476{transform:matrix(0.140363,0.001825,-0.003250,0.249979,0,0);-ms-transform:matrix(0.140363,0.001825,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.140363,0.001825,-0.003250,0.249979,0,0);}
.m77_c00476{transform:matrix(0.145093,0.001886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145093,0.001886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145093,0.001886,-0.003250,0.249979,0,0);}
.me4_c00476{transform:matrix(0.146016,0.001606,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146016,0.001606,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146016,0.001606,-0.002750,0.249985,0,0);}
.m1c_c00476{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);}
.m14_c00476{transform:matrix(0.152604,0.001831,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152604,0.001831,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152604,0.001831,-0.003000,0.249982,0,0);}
.m4a_c00476{transform:matrix(0.153044,0.001837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153044,0.001837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153044,0.001837,-0.003000,0.249982,0,0);}
.mdc_c00476{transform:matrix(0.153272,0.001993,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153272,0.001993,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153272,0.001993,-0.003250,0.249979,0,0);}
.mca_c00476{transform:matrix(0.154287,0.002006,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154287,0.002006,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154287,0.002006,-0.003250,0.249979,0,0);}
.m86_c00476{transform:matrix(0.155367,0.002020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155367,0.002020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155367,0.002020,-0.003250,0.249979,0,0);}
.m76_c00476{transform:matrix(0.157232,0.002044,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157232,0.002044,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157232,0.002044,-0.003250,0.249979,0,0);}
.m87_c00476{transform:matrix(0.157617,0.002049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157617,0.002049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157617,0.002049,-0.003250,0.249979,0,0);}
.md2_c00476{transform:matrix(0.157982,0.002054,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157982,0.002054,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157982,0.002054,-0.003250,0.249979,0,0);}
.m79_c00476{transform:matrix(0.158157,0.002056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158157,0.002056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158157,0.002056,-0.003250,0.249979,0,0);}
.mb1_c00476{transform:matrix(0.158632,0.002062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158632,0.002062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158632,0.002062,-0.003250,0.249979,0,0);}
.m88_c00476{transform:matrix(0.160256,0.002083,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160256,0.002083,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160256,0.002083,-0.003250,0.249979,0,0);}
.m2f_c00476{transform:matrix(0.160648,0.001928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160648,0.001928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160648,0.001928,-0.003000,0.249982,0,0);}
.m75_c00476{transform:matrix(0.161286,0.002097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161286,0.002097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161286,0.002097,-0.003250,0.249979,0,0);}
.mb0_c00476{transform:matrix(0.162276,0.002110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162276,0.002110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162276,0.002110,-0.003250,0.249979,0,0);}
.mc0_c00476{transform:matrix(0.162781,0.002116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162781,0.002116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162781,0.002116,-0.003250,0.249979,0,0);}
.m52_c00476{transform:matrix(0.163367,0.002450,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163367,0.002450,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163367,0.002450,-0.003750,0.249972,0,0);}
.mfd_c00476{transform:matrix(0.163535,0.001799,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163535,0.001799,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163535,0.001799,-0.002750,0.249985,0,0);}
.m9e_c00476{transform:matrix(0.165176,0.002147,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165176,0.002147,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165176,0.002147,-0.003250,0.249979,0,0);}
.ma8_c00476{transform:matrix(0.165781,0.002155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165781,0.002155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165781,0.002155,-0.003250,0.249979,0,0);}
.m7d_c00476{transform:matrix(0.166301,0.002162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166301,0.002162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166301,0.002162,-0.003250,0.249979,0,0);}
.m30_c00476{transform:matrix(0.166573,0.001999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166573,0.001999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166573,0.001999,-0.003000,0.249982,0,0);}
.m25_c00476{transform:matrix(0.166988,0.002004,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166988,0.002004,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166988,0.002004,-0.003000,0.249982,0,0);}
.m17_c00476{transform:matrix(0.168543,0.002023,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168543,0.002023,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168543,0.002023,-0.003000,0.249982,0,0);}
.mb3_c00476{transform:matrix(0.168716,0.002193,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168716,0.002193,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168716,0.002193,-0.003250,0.249979,0,0);}
.m72_c00476{transform:matrix(0.169106,0.002198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169106,0.002198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169106,0.002198,-0.003250,0.249979,0,0);}
.me2_c00476{transform:matrix(0.169360,0.001863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169360,0.001863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169360,0.001863,-0.002750,0.249985,0,0);}
.m21_c00476{transform:matrix(0.169563,0.002035,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169563,0.002035,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169563,0.002035,-0.003000,0.249982,0,0);}
.m6_c00476{transform:matrix(0.171292,-0.001028,0.001500,0.249996,0,0);-ms-transform:matrix(0.171292,-0.001028,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171292,-0.001028,0.001500,0.249996,0,0);}
.mfc_c00476{transform:matrix(0.173515,0.001909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173515,0.001909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173515,0.001909,-0.002750,0.249985,0,0);}
.m71_c00476{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);}
.m7a_c00476{transform:matrix(0.173720,0.002258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173720,0.002258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173720,0.002258,-0.003250,0.249979,0,0);}
.m12_c00476{transform:matrix(0.174827,0.002098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174827,0.002098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174827,0.002098,-0.003000,0.249982,0,0);}
.m8_c00476{transform:matrix(0.174842,-0.001049,0.001500,0.249996,0,0);-ms-transform:matrix(0.174842,-0.001049,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174842,-0.001049,0.001500,0.249996,0,0);}
.m23_c00476{transform:matrix(0.174867,0.002098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174867,0.002098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174867,0.002098,-0.003000,0.249982,0,0);}
.m11_c00476{transform:matrix(0.175917,0.002111,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175917,0.002111,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175917,0.002111,-0.003000,0.249982,0,0);}
.mf3_c00476{transform:matrix(0.175989,0.001936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175989,0.001936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175989,0.001936,-0.002750,0.249985,0,0);}
.m6d_c00476{transform:matrix(0.176305,0.002292,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176305,0.002292,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176305,0.002292,-0.003250,0.249979,0,0);}
.md0_c00476{transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);}
.maf_c00476{transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);}
.m44_c00476{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);}
.m22_c00476{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);}
.m7_c00476{transform:matrix(0.177727,-0.001066,0.001500,0.249996,0,0);-ms-transform:matrix(0.177727,-0.001066,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177727,-0.001066,0.001500,0.249996,0,0);}
.ma1_c00476{transform:matrix(0.178575,0.002321,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178575,0.002321,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178575,0.002321,-0.003250,0.249979,0,0);}
.mc2_c00476{transform:matrix(0.178915,0.002326,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178915,0.002326,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178915,0.002326,-0.003250,0.249979,0,0);}
.m4c_c00476{transform:matrix(0.179697,0.002156,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179697,0.002156,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179697,0.002156,-0.003000,0.249982,0,0);}
.m7e_c00476{transform:matrix(0.180340,0.002344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180340,0.002344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180340,0.002344,-0.003250,0.249979,0,0);}
.mf5_c00476{transform:matrix(0.180379,0.001984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180379,0.001984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180379,0.001984,-0.002750,0.249985,0,0);}
.mfa_c00476{transform:matrix(0.180534,0.001986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180534,0.001986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180534,0.001986,-0.002750,0.249985,0,0);}
.m6c_c00476{transform:matrix(0.180620,0.002348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180620,0.002348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180620,0.002348,-0.003250,0.249979,0,0);}
.m15_c00476{transform:matrix(0.180752,0.002169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180752,0.002169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180752,0.002169,-0.003000,0.249982,0,0);}
.ma0_c00476{transform:matrix(0.181295,0.002357,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181295,0.002357,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181295,0.002357,-0.003250,0.249979,0,0);}
.m6b_c00476{transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181820,0.002364,-0.003250,0.249979,0,0);}
.m16_c00476{transform:matrix(0.182372,0.002188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182372,0.002188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182372,0.002188,-0.003000,0.249982,0,0);}
.m3b_c00476{transform:matrix(0.182522,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182522,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182522,0.002190,-0.003000,0.249982,0,0);}
.m1d_c00476{transform:matrix(0.183072,0.002197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183072,0.002197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183072,0.002197,-0.003000,0.249982,0,0);}
.m5a_c00476{transform:matrix(0.183849,0.002758,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183849,0.002758,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183849,0.002758,-0.003750,0.249972,0,0);}
.mc7_c00476{transform:matrix(0.183864,0.002390,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183864,0.002390,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183864,0.002390,-0.003250,0.249979,0,0);}
.m27_c00476{transform:matrix(0.184047,0.002209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184047,0.002209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184047,0.002209,-0.003000,0.249982,0,0);}
.m32_c00476{transform:matrix(0.184742,0.002217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184742,0.002217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184742,0.002217,-0.003000,0.249982,0,0);}
.mcf_c00476{transform:matrix(0.186144,0.002420,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186144,0.002420,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186144,0.002420,-0.003250,0.249979,0,0);}
.mbe_c00476{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);}
.m28_c00476{transform:matrix(0.186392,0.002237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186392,0.002237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186392,0.002237,-0.003000,0.249982,0,0);}
.m92_c00476{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);}
.m39_c00476{transform:matrix(0.186972,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186972,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186972,0.002244,-0.003000,0.249982,0,0);}
.m65_c00476{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);}
.m6a_c00476{transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);}
.m96_c00476{transform:matrix(0.188049,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188049,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188049,0.002445,-0.003250,0.249979,0,0);}
.m2e_c00476{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);}
.mc1_c00476{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);}
.m4e_c00476{transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);}
.m49_c00476{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);}
.mae_c00476{transform:matrix(0.189134,0.002459,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189134,0.002459,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189134,0.002459,-0.003250,0.249979,0,0);}
.md1_c00476{transform:matrix(0.189534,0.002464,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189534,0.002464,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189534,0.002464,-0.003250,0.249979,0,0);}
.mf0_c00476{transform:matrix(0.189604,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189604,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189604,0.002086,-0.002750,0.249985,0,0);}
.m4d_c00476{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);}
.m13_c00476{transform:matrix(0.190866,0.002290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190866,0.002290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190866,0.002290,-0.003000,0.249982,0,0);}
.mb4_c00476{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);}
.m42_c00476{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);}
.m2a_c00476{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);}
.m46_c00476{transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);}
.med_c00476{transform:matrix(0.192613,0.002119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192613,0.002119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192613,0.002119,-0.002750,0.249985,0,0);}
.m68_c00476{transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);}
.m74_c00476{transform:matrix(0.193184,0.002511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193184,0.002511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193184,0.002511,-0.003250,0.249979,0,0);}
.m9f_c00476{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);}
.m84_c00476{transform:matrix(0.194074,0.002523,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194074,0.002523,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194074,0.002523,-0.003250,0.249979,0,0);}
.m4b_c00476{transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194276,0.002331,-0.003000,0.249982,0,0);}
.m10_c00476{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);}
.m31_c00476{transform:matrix(0.195746,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195746,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195746,0.002349,-0.003000,0.249982,0,0);}
.mbc_c00476{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);}
.m2c_c00476{transform:matrix(0.196051,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196051,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196051,0.002353,-0.003000,0.249982,0,0);}
.mc9_c00476{transform:matrix(0.196183,0.002550,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196183,0.002550,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196183,0.002550,-0.003250,0.249979,0,0);}
.m94_c00476{transform:matrix(0.196648,0.002556,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196648,0.002556,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196648,0.002556,-0.003250,0.249979,0,0);}
.mad_c00476{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);}
.m3c_c00476{transform:matrix(0.197981,0.002376,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197981,0.002376,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197981,0.002376,-0.003000,0.249982,0,0);}
.mbd_c00476{transform:matrix(0.198108,0.002575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198108,0.002575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198108,0.002575,-0.003250,0.249979,0,0);}
.m8e_c00476{transform:matrix(0.198638,0.002582,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198638,0.002582,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198638,0.002582,-0.003250,0.249979,0,0);}
.mc8_c00476{transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);}
.m3a_c00476{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);}
.m63_c00476{transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);}
.mcb_c00476{transform:matrix(0.199923,0.002599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199923,0.002599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199923,0.002599,-0.003250,0.249979,0,0);}
.ma9_c00476{transform:matrix(0.200798,0.002610,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200798,0.002610,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200798,0.002610,-0.003250,0.249979,0,0);}
.m41_c00476{transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201595,0.002419,-0.003000,0.249982,0,0);}
.m90_c00476{transform:matrix(0.201753,0.002623,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201753,0.002623,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201753,0.002623,-0.003250,0.249979,0,0);}
.m24_c00476{transform:matrix(0.201890,0.002423,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201890,0.002423,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201890,0.002423,-0.003000,0.249982,0,0);}
.mf4_c00476{transform:matrix(0.202988,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202988,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202988,0.002233,-0.002750,0.249985,0,0);}
.m5b_c00476{transform:matrix(0.203187,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203187,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203187,0.003048,-0.003750,0.249972,0,0);}
.m35_c00476{transform:matrix(0.203615,0.002443,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203615,0.002443,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203615,0.002443,-0.003000,0.249982,0,0);}
.m43_c00476{transform:matrix(0.204615,0.002455,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204615,0.002455,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204615,0.002455,-0.003000,0.249982,0,0);}
.mf6_c00476{transform:matrix(0.205223,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205223,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205223,0.002257,-0.002750,0.249985,0,0);}
.m36_c00476{transform:matrix(0.205265,0.002463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205265,0.002463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205265,0.002463,-0.003000,0.249982,0,0);}
.m2b_c00476{transform:matrix(0.206185,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206185,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206185,0.002474,-0.003000,0.249982,0,0);}
.me5_c00476{transform:matrix(0.206528,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206528,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206528,0.002272,-0.002750,0.249985,0,0);}
.m20_c00476{transform:matrix(0.206800,0.002482,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206800,0.002482,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206800,0.002482,-0.003000,0.249982,0,0);}
.m73_c00476{transform:matrix(0.207467,0.002697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207467,0.002697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207467,0.002697,-0.003250,0.249979,0,0);}
.ma7_c00476{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);}
.m5f_c00476{transform:matrix(0.209832,0.002728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209832,0.002728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209832,0.002728,-0.003250,0.249979,0,0);}
.m6f_c00476{transform:matrix(0.209857,0.002728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209857,0.002728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209857,0.002728,-0.003250,0.249979,0,0);}
.m69_c00476{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);}
.ma3_c00476{transform:matrix(0.211027,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211027,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211027,0.002743,-0.003250,0.249979,0,0);}
.m66_c00476{transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);}
.m6e_c00476{transform:matrix(0.212542,0.002763,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212542,0.002763,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212542,0.002763,-0.003250,0.249979,0,0);}
.me1_c00476{transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);}
.m91_c00476{transform:matrix(0.213657,0.002778,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213657,0.002778,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213657,0.002778,-0.003250,0.249979,0,0);}
.m50_c00476{transform:matrix(0.214000,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214000,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214000,0.002568,-0.003000,0.249982,0,0);}
.mc3_c00476{transform:matrix(0.214082,0.002783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214082,0.002783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214082,0.002783,-0.003250,0.249979,0,0);}
.m70_c00476{transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);}
.m95_c00476{transform:matrix(0.214737,0.002792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214737,0.002792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214737,0.002792,-0.003250,0.249979,0,0);}
.m3e_c00476{transform:matrix(0.214865,0.002578,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214865,0.002578,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214865,0.002578,-0.003000,0.249982,0,0);}
.m85_c00476{transform:matrix(0.215982,0.002808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215982,0.002808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215982,0.002808,-0.003250,0.249979,0,0);}
.m89_c00476{transform:matrix(0.216367,0.002813,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216367,0.002813,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216367,0.002813,-0.003250,0.249979,0,0);}
.mba_c00476{transform:matrix(0.216442,0.002814,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216442,0.002814,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216442,0.002814,-0.003250,0.249979,0,0);}
.mdb_c00476{transform:matrix(0.217217,0.002824,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217217,0.002824,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217217,0.002824,-0.003250,0.249979,0,0);}
.mf1_c00476{transform:matrix(0.219197,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219197,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219197,0.002411,-0.002750,0.249985,0,0);}
.m2d_c00476{transform:matrix(0.220654,0.002648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220654,0.002648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220654,0.002648,-0.003000,0.249982,0,0);}
.mda_c00476{transform:matrix(0.221201,0.002876,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221201,0.002876,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221201,0.002876,-0.003250,0.249979,0,0);}
.me7_c00476{transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);}
.mf2_c00476{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);}
.ma5_c00476{transform:matrix(0.222806,0.002896,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222806,0.002896,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222806,0.002896,-0.003250,0.249979,0,0);}
.m57_c00476{transform:matrix(0.223875,0.003358,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223875,0.003358,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223875,0.003358,-0.003750,0.249972,0,0);}
.mbf_c00476{transform:matrix(0.224166,0.002914,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224166,0.002914,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224166,0.002914,-0.003250,0.249979,0,0);}
.m26_c00476{transform:matrix(0.224879,0.002699,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224879,0.002699,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224879,0.002699,-0.003000,0.249982,0,0);}
.mfb_c00476{transform:matrix(0.226271,0.002489,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226271,0.002489,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226271,0.002489,-0.002750,0.249985,0,0);}
.m60_c00476{transform:matrix(0.226461,0.002944,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226461,0.002944,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226461,0.002944,-0.003250,0.249979,0,0);}
.m1a_c00476{transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);}
.mb5_c00476{transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);}
.m8d_c00476{transform:matrix(0.227941,0.002963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227941,0.002963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227941,0.002963,-0.003250,0.249979,0,0);}
.m9a_c00476{transform:matrix(0.228531,0.002971,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228531,0.002971,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228531,0.002971,-0.003250,0.249979,0,0);}
.m45_c00476{transform:matrix(0.228899,0.002747,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228899,0.002747,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228899,0.002747,-0.003000,0.249982,0,0);}
.m93_c00476{transform:matrix(0.229351,0.002982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229351,0.002982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229351,0.002982,-0.003250,0.249979,0,0);}
.m53_c00476{transform:matrix(0.230644,0.003460,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230644,0.003460,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230644,0.003460,-0.003750,0.249972,0,0);}
.m48_c00476{transform:matrix(0.231103,0.002773,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231103,0.002773,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231103,0.002773,-0.003000,0.249982,0,0);}
.m99_c00476{transform:matrix(0.231575,0.003010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231575,0.003010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231575,0.003010,-0.003250,0.249979,0,0);}
.mf7_c00476{transform:matrix(0.232296,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232296,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232296,0.002555,-0.002750,0.249985,0,0);}
.m8c_c00476{transform:matrix(0.233155,0.003031,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233155,0.003031,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233155,0.003031,-0.003250,0.249979,0,0);}
.m1b_c00476{transform:matrix(0.233403,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233403,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233403,0.002801,-0.003000,0.249982,0,0);}
.ma4_c00476{transform:matrix(0.233930,0.003041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233930,0.003041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233930,0.003041,-0.003250,0.249979,0,0);}
.mf_c00476{transform:matrix(0.234143,0.002810,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234143,0.002810,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234143,0.002810,-0.003000,0.249982,0,0);}
.mf8_c00476{transform:matrix(0.237081,0.002608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237081,0.002608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237081,0.002608,-0.002750,0.249985,0,0);}
.m37_c00476{transform:matrix(0.238208,0.002858,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238208,0.002858,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238208,0.002858,-0.003000,0.249982,0,0);}
.m58_c00476{transform:matrix(0.242158,0.003632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242158,0.003632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242158,0.003632,-0.003750,0.249972,0,0);}
.m78_c00476{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);}
.m8f_c00476{transform:matrix(0.244229,0.003175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244229,0.003175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244229,0.003175,-0.003250,0.249979,0,0);}
.m98_c00476{transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);}
.mbb_c00476{transform:matrix(0.245139,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245139,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245139,0.003187,-0.003250,0.249979,0,0);}
.mb2_c00476{transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);}
.m3f_c00476{transform:matrix(0.245572,0.002947,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245572,0.002947,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245572,0.002947,-0.003000,0.249982,0,0);}
.m1e_c00476{transform:matrix(0.246507,0.002958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246507,0.002958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246507,0.002958,-0.003000,0.249982,0,0);}
.m34_c00476{transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);}
.m29_c00476{transform:matrix(0.253497,0.003042,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253497,0.003042,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253497,0.003042,-0.003000,0.249982,0,0);}
.m54_c00476{transform:matrix(0.253891,0.003808,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253891,0.003808,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253891,0.003808,-0.003750,0.249972,0,0);}
.m33_c00476{transform:matrix(0.256862,0.003082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256862,0.003082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256862,0.003082,-0.003000,0.249982,0,0);}
.m18_c00476{transform:matrix(0.260226,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260226,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260226,0.003123,-0.003000,0.249982,0,0);}
.m1f_c00476{transform:matrix(0.260346,0.003124,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260346,0.003124,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260346,0.003124,-0.003000,0.249982,0,0);}
.md7_c00476{transform:matrix(0.261383,0.003398,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261383,0.003398,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261383,0.003398,-0.003250,0.249979,0,0);}
.m40_c00476{transform:matrix(0.262606,0.003151,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262606,0.003151,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262606,0.003151,-0.003000,0.249982,0,0);}
.m80_c00476{transform:matrix(0.263203,0.003422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263203,0.003422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263203,0.003422,-0.003250,0.249979,0,0);}
.mc6_c00476{transform:matrix(0.268392,0.003489,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268392,0.003489,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268392,0.003489,-0.003250,0.249979,0,0);}
.m38_c00476{transform:matrix(0.271930,0.003263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271930,0.003263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271930,0.003263,-0.003000,0.249982,0,0);}
.m4f_c00476{transform:matrix(0.278635,0.003344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278635,0.003344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278635,0.003344,-0.003000,0.249982,0,0);}
.meb_c00476{transform:matrix(0.279578,0.003075,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279578,0.003075,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279578,0.003075,-0.002750,0.249985,0,0);}
.m55_c00476{transform:matrix(0.279844,0.004198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279844,0.004198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279844,0.004198,-0.003750,0.249972,0,0);}
.ma2_c00476{transform:matrix(0.280036,0.003640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280036,0.003640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280036,0.003640,-0.003250,0.249979,0,0);}
.m9c_c00476{transform:matrix(0.281451,0.003659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281451,0.003659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281451,0.003659,-0.003250,0.249979,0,0);}
.me_c00476{transform:matrix(0.284130,0.003410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284130,0.003410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284130,0.003410,-0.003000,0.249982,0,0);}
.ma_c00476{transform:matrix(0.287255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287255,0.000000,0.000000,0.250000,0,0);}
.mab_c00476{transform:matrix(0.287646,0.003739,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287646,0.003739,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287646,0.003739,-0.003250,0.249979,0,0);}
.me3_c00476{transform:matrix(0.288348,0.003172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288348,0.003172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288348,0.003172,-0.002750,0.249985,0,0);}
.md6_c00476{transform:matrix(0.289406,0.003762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289406,0.003762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289406,0.003762,-0.003250,0.249979,0,0);}
.m67_c00476{transform:matrix(0.292975,0.003809,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292975,0.003809,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292975,0.003809,-0.003250,0.249979,0,0);}
.m19_c00476{transform:matrix(0.297159,0.003566,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297159,0.003566,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297159,0.003566,-0.003000,0.249982,0,0);}
.m97_c00476{transform:matrix(0.300210,0.003903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300210,0.003903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300210,0.003903,-0.003250,0.249979,0,0);}
.maa_c00476{transform:matrix(0.300565,0.003907,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300565,0.003907,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300565,0.003907,-0.003250,0.249979,0,0);}
.m9b_c00476{transform:matrix(0.305109,0.003966,-0.003250,0.249979,0,0);-ms-transform:matrix(0.305109,0.003966,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.305109,0.003966,-0.003250,0.249979,0,0);}
.m8b_c00476{transform:matrix(0.305439,0.003971,-0.003250,0.249979,0,0);-ms-transform:matrix(0.305439,0.003971,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.305439,0.003971,-0.003250,0.249979,0,0);}
.m5_c00476{transform:matrix(0.309154,-0.001855,0.001500,0.249996,0,0);-ms-transform:matrix(0.309154,-0.001855,0.001500,0.249996,0,0);-webkit-transform:matrix(0.309154,-0.001855,0.001500,0.249996,0,0);}
.m64_c00476{transform:matrix(0.311964,0.004056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.311964,0.004056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.311964,0.004056,-0.003250,0.249979,0,0);}
.m3d_c00476{transform:matrix(0.312443,0.003749,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312443,0.003749,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312443,0.003749,-0.003000,0.249982,0,0);}
.m56_c00476{transform:matrix(0.314500,0.004717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314500,0.004717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314500,0.004717,-0.003750,0.249972,0,0);}
.m9_c00476{transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315150,0.000000,0.000000,0.250000,0,0);}
.m59_c00476{transform:matrix(0.319249,0.004789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.319249,0.004789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.319249,0.004789,-0.003750,0.249972,0,0);}
.mac_c00476{transform:matrix(0.321563,0.004180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321563,0.004180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321563,0.004180,-0.003250,0.249979,0,0);}
.md_c00476{transform:matrix(0.324757,0.003897,-0.003000,0.249982,0,0);-ms-transform:matrix(0.324757,0.003897,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.324757,0.003897,-0.003000,0.249982,0,0);}
.mef_c00476{transform:matrix(0.326030,0.003586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326030,0.003586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326030,0.003586,-0.002750,0.249985,0,0);}
.m4_c00476{transform:matrix(0.331304,-0.001988,0.001500,0.249996,0,0);-ms-transform:matrix(0.331304,-0.001988,0.001500,0.249996,0,0);-webkit-transform:matrix(0.331304,-0.001988,0.001500,0.249996,0,0);}
.mdd_c00476{transform:matrix(0.344401,0.004477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.344401,0.004477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.344401,0.004477,-0.003250,0.249979,0,0);}
.mc5_c00476{transform:matrix(0.346736,0.004508,-0.003250,0.249979,0,0);-ms-transform:matrix(0.346736,0.004508,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.346736,0.004508,-0.003250,0.249979,0,0);}
.ma6_c00476{transform:matrix(0.351245,0.004566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351245,0.004566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351245,0.004566,-0.003250,0.249979,0,0);}
.m3_c00476{transform:matrix(0.354039,-0.002124,0.001500,0.249996,0,0);-ms-transform:matrix(0.354039,-0.002124,0.001500,0.249996,0,0);-webkit-transform:matrix(0.354039,-0.002124,0.001500,0.249996,0,0);}
.mea_c00476{transform:matrix(0.368768,0.004056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.368768,0.004056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.368768,0.004056,-0.002750,0.249985,0,0);}
.m5e_c00476{transform:matrix(0.373018,0.004849,-0.003250,0.249979,0,0);-ms-transform:matrix(0.373018,0.004849,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.373018,0.004849,-0.003250,0.249979,0,0);}
.m61_c00476{transform:matrix(0.384902,0.005004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.384902,0.005004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.384902,0.005004,-0.003250,0.249979,0,0);}
.me8_c00476{transform:matrix(0.405890,0.004465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.405890,0.004465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.405890,0.004465,-0.002750,0.249985,0,0);}
.m1_c00476{transform:matrix(0.405933,-0.002436,0.001500,0.249996,0,0);-ms-transform:matrix(0.405933,-0.002436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.405933,-0.002436,0.001500,0.249996,0,0);}
.mb9_c00476{transform:matrix(0.414245,0.005385,-0.003250,0.249979,0,0);-ms-transform:matrix(0.414245,0.005385,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.414245,0.005385,-0.003250,0.249979,0,0);}
.mde_c00476{transform:matrix(0.417270,0.005425,-0.003250,0.249979,0,0);-ms-transform:matrix(0.417270,0.005425,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.417270,0.005425,-0.003250,0.249979,0,0);}
.md8_c00476{transform:matrix(0.426404,0.005543,-0.003250,0.249979,0,0);-ms-transform:matrix(0.426404,0.005543,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.426404,0.005543,-0.003250,0.249979,0,0);}
.md9_c00476{transform:matrix(0.429544,0.005584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.429544,0.005584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.429544,0.005584,-0.003250,0.249979,0,0);}
.m62_c00476{transform:matrix(0.432768,0.005626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.432768,0.005626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.432768,0.005626,-0.003250,0.249979,0,0);}
.md4_c00476{transform:matrix(0.434188,0.005644,-0.003250,0.249979,0,0);-ms-transform:matrix(0.434188,0.005644,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.434188,0.005644,-0.003250,0.249979,0,0);}
.mec_c00476{transform:matrix(0.447283,0.004920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.447283,0.004920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.447283,0.004920,-0.002750,0.249985,0,0);}
.m81_c00476{transform:matrix(0.461436,0.005999,-0.003250,0.249979,0,0);-ms-transform:matrix(0.461436,0.005999,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.461436,0.005999,-0.003250,0.249979,0,0);}
.m83_c00476{transform:matrix(0.464681,0.006041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.464681,0.006041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.464681,0.006041,-0.003250,0.249979,0,0);}
.mc_c00476{transform:matrix(0.470656,0.005648,-0.003000,0.249982,0,0);-ms-transform:matrix(0.470656,0.005648,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.470656,0.005648,-0.003000,0.249982,0,0);}
.mb_c00476{transform:matrix(0.485285,0.005823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.485285,0.005823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.485285,0.005823,-0.003000,0.249982,0,0);}
.m5c_c00476{transform:matrix(0.486099,0.006319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.486099,0.006319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.486099,0.006319,-0.003250,0.249979,0,0);}
.mee_c00476{transform:matrix(0.487131,0.005358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.487131,0.005358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.487131,0.005358,-0.002750,0.249985,0,0);}
.m7f_c00476{transform:matrix(0.492888,0.006408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.492888,0.006408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.492888,0.006408,-0.003250,0.249979,0,0);}
.m2_c00476{transform:matrix(0.496711,-0.002980,0.001500,0.249996,0,0);-ms-transform:matrix(0.496711,-0.002980,0.001500,0.249996,0,0);-webkit-transform:matrix(0.496711,-0.002980,0.001500,0.249996,0,0);}
.mce_c00476{transform:matrix(0.508817,0.006615,-0.003250,0.249979,0,0);-ms-transform:matrix(0.508817,0.006615,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.508817,0.006615,-0.003250,0.249979,0,0);}
.m0_c00476{transform:matrix(0.578100,-0.003469,0.001500,0.249996,0,0);-ms-transform:matrix(0.578100,-0.003469,0.001500,0.249996,0,0);-webkit-transform:matrix(0.578100,-0.003469,0.001500,0.249996,0,0);}
.me9_c00476{transform:matrix(0.628657,0.006915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.628657,0.006915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.628657,0.006915,-0.002750,0.249985,0,0);}
.mb8_c00476{transform:matrix(0.648095,0.008425,-0.003250,0.249979,0,0);-ms-transform:matrix(0.648095,0.008425,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.648095,0.008425,-0.003250,0.249979,0,0);}
.m7b_c00476{transform:matrix(0.696726,0.009057,-0.003250,0.249979,0,0);-ms-transform:matrix(0.696726,0.009057,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.696726,0.009057,-0.003250,0.249979,0,0);}
.m8a_c00476{transform:matrix(0.758206,0.009857,-0.003250,0.249979,0,0);-ms-transform:matrix(0.758206,0.009857,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.758206,0.009857,-0.003250,0.249979,0,0);}
.mf9_c00476{transform:matrix(1.101633,0.012118,-0.002750,0.249985,0,0);-ms-transform:matrix(1.101633,0.012118,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.101633,0.012118,-0.002750,0.249985,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;}
.fs1_c00476{font-size:39.900000px;}
.fse_c00476{font-size:53.553240px;}
.fsd_c00476{font-size:55.653367px;}
.fs4_c00476{font-size:66.154763px;}
.fs5_c00476{font-size:67.204838px;}
.fsa_c00476{font-size:67.205678px;}
.fsb_c00476{font-size:68.255767px;}
.fs3_c00476{font-size:69.304989px;}
.fs8_c00476{font-size:69.305856px;}
.fs7_c00476{font-size:70.355944px;}
.fs2_c00476{font-size:71.405141px;}
.fs9_c00476{font-size:71.406033px;}
.fs6_c00476{font-size:71.408032px;}
.fsc_c00476{font-size:78.756654px;}
.fs0_c00476{font-size:138.602495px;}
.y0_c00476{bottom:0.000000px;}
.yfb_c00476{bottom:155.718443px;}
.yfc_c00476{bottom:155.718566px;}
.yf3_c00476{bottom:155.718774px;}
.yfa_c00476{bottom:155.718816px;}
.yfd_c00476{bottom:155.719002px;}
.yfe_c00476{bottom:155.719078px;}
.yf8_c00476{bottom:155.719083px;}
.yff_c00476{bottom:155.719125px;}
.yf9_c00476{bottom:155.719189px;}
.yf4_c00476{bottom:155.719211px;}
.yf7_c00476{bottom:155.719413px;}
.yf2_c00476{bottom:155.719508px;}
.yf5_c00476{bottom:155.719574px;}
.yf6_c00476{bottom:155.720100px;}
.yf1_c00476{bottom:163.959378px;}
.yf0_c00476{bottom:165.228838px;}
.yef_c00476{bottom:165.415486px;}
.yee_c00476{bottom:165.861019px;}
.yed_c00476{bottom:166.185129px;}
.yec_c00476{bottom:166.612908px;}
.yeb_c00476{bottom:166.873344px;}
.yea_c00476{bottom:167.215686px;}
.ye9_c00476{bottom:167.289870px;}
.ye7_c00476{bottom:167.464902px;}
.ye8_c00476{bottom:167.502687px;}
.ye6_c00476{bottom:168.159931px;}
.ye5_c00476{bottom:168.515160px;}
.ye4_c00476{bottom:168.818826px;}
.ye3_c00476{bottom:169.337834px;}
.ye2_c00476{bottom:169.557762px;}
.ye1_c00476{bottom:169.669500px;}
.ye0_c00476{bottom:220.075416px;}
.ydf_c00476{bottom:220.870107px;}
.yde_c00476{bottom:221.921163px;}
.ydd_c00476{bottom:222.225154px;}
.ydc_c00476{bottom:222.972706px;}
.ydb_c00476{bottom:223.573263px;}
.yda_c00476{bottom:224.542126px;}
.yd9_c00476{bottom:224.963988px;}
.yd8_c00476{bottom:226.020756px;}
.yd7_c00476{bottom:226.774020px;}
.yd6_c00476{bottom:242.391694px;}
.yd5_c00476{bottom:245.265604px;}
.yd4_c00476{bottom:247.554846px;}
.yd3_c00476{bottom:267.392964px;}
.yd2_c00476{bottom:267.869466px;}
.yd1_c00476{bottom:268.856692px;}
.yd0_c00476{bottom:269.622126px;}
.ycf_c00476{bottom:270.362677px;}
.yce_c00476{bottom:270.510487px;}
.ycd_c00476{bottom:286.889269px;}
.ycc_c00476{bottom:288.111163px;}
.ycb_c00476{bottom:288.806019px;}
.yca_c00476{bottom:289.118998px;}
.yc9_c00476{bottom:290.380390px;}
.yc8_c00476{bottom:291.105951px;}
.yc7_c00476{bottom:292.925341px;}
.yc6_c00476{bottom:312.463246px;}
.yc4_c00476{bottom:332.759566px;}
.yc5_c00476{bottom:332.764773px;}
.yc3_c00476{bottom:333.393043px;}
.yc2_c00476{bottom:333.691413px;}
.yc1_c00476{bottom:334.161207px;}
.yc0_c00476{bottom:334.498635px;}
.ybf_c00476{bottom:335.183260px;}
.ybe_c00476{bottom:335.850199px;}
.ybd_c00476{bottom:336.580260px;}
.ybc_c00476{bottom:337.099233px;}
.ybb_c00476{bottom:337.809052px;}
.yba_c00476{bottom:338.286139px;}
.yb9_c00476{bottom:358.247068px;}
.yb8_c00476{bottom:358.999792px;}
.yb7_c00476{bottom:360.427656px;}
.yb6_c00476{bottom:378.095626px;}
.yb5_c00476{bottom:378.843085px;}
.yb4_c00476{bottom:379.160503px;}
.yb3_c00476{bottom:379.659336px;}
.yb2_c00476{bottom:379.996291px;}
.yb1_c00476{bottom:380.537319px;}
.yb0_c00476{bottom:380.816578px;}
.yaf_c00476{bottom:381.607188px;}
.yae_c00476{bottom:382.328578px;}
.yad_c00476{bottom:382.876372px;}
.yac_c00476{bottom:383.104096px;}
.yab_c00476{bottom:383.651793px;}
.yaa_c00476{bottom:403.334083px;}
.ya9_c00476{bottom:424.615431px;}
.ya8_c00476{bottom:424.933902px;}
.ya7_c00476{bottom:425.330772px;}
.ya6_c00476{bottom:425.521807px;}
.ya5_c00476{bottom:426.139641px;}
.ya4_c00476{bottom:426.501318px;}
.ya3_c00476{bottom:427.194820px;}
.ya2_c00476{bottom:427.814818px;}
.ya1_c00476{bottom:428.246550px;}
.ya0_c00476{bottom:428.825077px;}
.y9f_c00476{bottom:429.164722px;}
.y9e_c00476{bottom:429.598792px;}
.y9d_c00476{bottom:446.570652px;}
.y9c_c00476{bottom:447.147793px;}
.y9b_c00476{bottom:447.481438px;}
.y9a_c00476{bottom:448.264188px;}
.y99_c00476{bottom:448.709919px;}
.y98_c00476{bottom:448.927695px;}
.y97_c00476{bottom:449.622343px;}
.y96_c00476{bottom:449.716002px;}
.y95_c00476{bottom:450.180745px;}
.y94_c00476{bottom:450.524004px;}
.y93_c00476{bottom:451.174114px;}
.y92_c00476{bottom:470.181810px;}
.y91_c00476{bottom:471.110362px;}
.y90_c00476{bottom:471.606954px;}
.y8f_c00476{bottom:471.884113px;}
.y8e_c00476{bottom:472.489728px;}
.y8d_c00476{bottom:473.102692px;}
.y8c_c00476{bottom:474.649845px;}
.y8b_c00476{bottom:490.104313px;}
.y8a_c00476{bottom:491.235004px;}
.y89_c00476{bottom:491.732083px;}
.y88_c00476{bottom:492.297204px;}
.y87_c00476{bottom:492.786114px;}
.y86_c00476{bottom:493.114393px;}
.y85_c00476{bottom:494.051466px;}
.y84_c00476{bottom:494.625847px;}
.y83_c00476{bottom:495.074809px;}
.y82_c00476{bottom:495.563700px;}
.y81_c00476{bottom:496.353516px;}
.y80_c00476{bottom:496.834510px;}
.y7f_c00476{bottom:516.178306px;}
.y7e_c00476{bottom:538.516044px;}
.y7d_c00476{bottom:539.423803px;}
.y7c_c00476{bottom:539.837382px;}
.y7b_c00476{bottom:541.020153px;}
.y7a_c00476{bottom:541.484406px;}
.y79_c00476{bottom:542.185669px;}
.y78_c00476{bottom:542.695429px;}
.y77_c00476{bottom:560.265660px;}
.y76_c00476{bottom:560.772780px;}
.y75_c00476{bottom:561.211596px;}
.y74_c00476{bottom:562.201774px;}
.y73_c00476{bottom:562.700958px;}
.y72_c00476{bottom:563.427514px;}
.y71_c00476{bottom:563.987845px;}
.y70_c00476{bottom:564.967494px;}
.y6f_c00476{bottom:565.380006px;}
.y6e_c00476{bottom:583.632156px;}
.y6d_c00476{bottom:583.748755px;}
.y6c_c00476{bottom:584.578959px;}
.y6b_c00476{bottom:584.840925px;}
.y6a_c00476{bottom:585.267543px;}
.y69_c00476{bottom:585.608490px;}
.y68_c00476{bottom:585.990468px;}
.y67_c00476{bottom:586.395537px;}
.y66_c00476{bottom:587.520546px;}
.y65_c00476{bottom:605.470624px;}
.y64_c00476{bottom:606.079531px;}
.y63_c00476{bottom:606.687580px;}
.y62_c00476{bottom:606.995349px;}
.y61_c00476{bottom:608.017305px;}
.y60_c00476{bottom:608.999520px;}
.y5f_c00476{bottom:609.500455px;}
.y5e_c00476{bottom:609.764817px;}
.y5d_c00476{bottom:609.800736px;}
.y5c_c00476{bottom:610.474500px;}
.y5b_c00476{bottom:651.519345px;}
.y5a_c00476{bottom:652.021477px;}
.y59_c00476{bottom:652.264387px;}
.y58_c00476{bottom:652.863967px;}
.y57_c00476{bottom:653.204122px;}
.y56_c00476{bottom:653.824065px;}
.y55_c00476{bottom:654.183502px;}
.y54_c00476{bottom:654.387082px;}
.y53_c00476{bottom:655.212270px;}
.y52_c00476{bottom:655.833000px;}
.y51_c00476{bottom:673.595598px;}
.y50_c00476{bottom:674.520492px;}
.y4f_c00476{bottom:674.789394px;}
.y4e_c00476{bottom:675.635088px;}
.y4d_c00476{bottom:675.913674px;}
.y4c_c00476{bottom:676.428906px;}
.y4b_c00476{bottom:677.086734px;}
.y4a_c00476{bottom:677.384328px;}
.y49_c00476{bottom:677.857872px;}
.y48_c00476{bottom:678.227322px;}
.y47_c00476{bottom:695.671818px;}
.y46_c00476{bottom:696.628284px;}
.y45_c00476{bottom:696.958782px;}
.y44_c00476{bottom:697.422066px;}
.y43_c00476{bottom:697.855956px;}
.y42_c00476{bottom:698.342046px;}
.y41_c00476{bottom:699.035676px;}
.y40_c00476{bottom:699.602982px;}
.y3f_c00476{bottom:699.923562px;}
.y3e_c00476{bottom:700.276308px;}
.y3d_c00476{bottom:700.639476px;}
.y3c_c00476{bottom:719.942466px;}
.y3b_c00476{bottom:720.293148px;}
.y3a_c00476{bottom:720.652086px;}
.y39_c00476{bottom:721.006170px;}
.y38_c00476{bottom:721.356726px;}
.y37_c00476{bottom:721.707534px;}
.y36_c00476{bottom:722.124138px;}
.y35_c00476{bottom:722.528634px;}
.y34_c00476{bottom:722.824980px;}
.y33_c00476{bottom:723.081834px;}
.y32_c00476{bottom:723.319458px;}
.y31_c00476{bottom:742.380270px;}
.y30_c00476{bottom:742.656180px;}
.y2f_c00476{bottom:742.881006px;}
.y2e_c00476{bottom:743.151864px;}
.y2d_c00476{bottom:743.387346px;}
.y2c_c00476{bottom:743.726076px;}
.y2b_c00476{bottom:744.273240px;}
.y2a_c00476{bottom:744.683040px;}
.y29_c00476{bottom:744.935922px;}
.y28_c00476{bottom:745.565946px;}
.y27_c00476{bottom:746.003154px;}
.y26_c00476{bottom:767.731638px;}
.y25_c00476{bottom:767.731884px;}
.y24_c00476{bottom:767.732208px;}
.y23_c00476{bottom:767.732772px;}
.y22_c00476{bottom:767.733216px;}
.y21_c00476{bottom:767.733420px;}
.y1f_c00476{bottom:767.733744px;}
.y20_c00476{bottom:767.734002px;}
.y1e_c00476{bottom:787.708170px;}
.y1d_c00476{bottom:788.181678px;}
.y1c_c00476{bottom:788.556492px;}
.y1b_c00476{bottom:788.843304px;}
.y1a_c00476{bottom:789.607266px;}
.y19_c00476{bottom:789.729612px;}
.y18_c00476{bottom:790.167912px;}
.y17_c00476{bottom:790.765602px;}
.y16_c00476{bottom:791.270862px;}
.y15_c00476{bottom:791.838672px;}
.y14_c00476{bottom:792.296532px;}
.y13_c00476{bottom:792.663366px;}
.y12_c00476{bottom:792.991710px;}
.y11_c00476{bottom:812.007066px;}
.y10_c00476{bottom:812.327340px;}
.yf_c00476{bottom:812.854056px;}
.ye_c00476{bottom:813.590184px;}
.yd_c00476{bottom:814.520028px;}
.yc_c00476{bottom:814.928196px;}
.yb_c00476{bottom:815.547000px;}
.y6_c00476{bottom:858.669276px;}
.y7_c00476{bottom:858.669738px;}
.y9_c00476{bottom:858.670080px;}
.y8_c00476{bottom:858.670389px;}
.y1_c00476{bottom:903.960000px;}
.y2_c00476{bottom:904.707504px;}
.y3_c00476{bottom:905.452038px;}
.y4_c00476{bottom:906.608601px;}
.y5_c00476{bottom:907.366662px;}
.ya_c00476{bottom:915.840000px;}
.h3_c00476{height:39.900000px;}
.h10_c00476{height:53.553240px;}
.hf_c00476{height:55.653367px;}
.h6_c00476{height:66.154763px;}
.h7_c00476{height:67.204838px;}
.hc_c00476{height:67.205678px;}
.hd_c00476{height:68.255767px;}
.h5_c00476{height:69.304989px;}
.ha_c00476{height:69.305856px;}
.h9_c00476{height:70.355944px;}
.h4_c00476{height:71.405141px;}
.hb_c00476{height:71.406033px;}
.h8_c00476{height:71.408032px;}
.he_c00476{height:78.756654px;}
.h2_c00476{height:138.602495px;}
.h1_c00476{height:1005.000000px;}
.h0_c00476{height:1005.150000px;}
.w0_c00476{width:715.200000px;}
.w1_c00476{width:715.500000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:64.429500px;}
.x8d_c00476{left:105.583226px;}
.x8a_c00476{left:107.251613px;}
.x8f_c00476{left:108.475500px;}
.x99_c00476{left:116.640557px;}
.x7f_c00476{left:117.833208px;}
.x87_c00476{left:126.157680px;}
.x85_c00476{left:127.691283px;}
.x88_c00476{left:137.527680px;}
.x90_c00476{left:138.627000px;}
.x32_c00476{left:142.675608px;}
.x4b_c00476{left:144.117000px;}
.x71_c00476{left:150.744633px;}
.x3c_c00476{left:153.212718px;}
.x13_c00476{left:154.265844px;}
.x76_c00476{left:155.609745px;}
.xc_c00476{left:161.430000px;}
.x33_c00476{left:172.939608px;}
.x14_c00476{left:177.752286px;}
.x72_c00476{left:179.633873px;}
.x1f_c00476{left:180.900630px;}
.x60_c00476{left:182.408148px;}
.x3d_c00476{left:184.000218px;}
.x91_c00476{left:185.809500px;}
.x5b_c00476{left:187.185172px;}
.x2_c00476{left:189.013500px;}
.x25_c00476{left:193.974534px;}
.x6_c00476{left:195.751962px;}
.x9a_c00476{left:197.644358px;}
.x4c_c00476{left:198.708000px;}
.x34_c00476{left:202.335108px;}
.x15_c00476{left:203.946156px;}
.x20_c00476{left:205.202622px;}
.x80_c00476{left:209.133708px;}
.x77_c00476{left:210.987523px;}
.xd_c00476{left:212.997000px;}
.x9b_c00476{left:215.735052px;}
.x4d_c00476{left:219.043500px;}
.x3e_c00476{left:223.462218px;}
.x35_c00476{left:229.050108px;}
.x6d_c00476{left:230.144569px;}
.x61_c00476{left:231.738217px;}
.x2f_c00476{left:233.729850px;}
.x86_c00476{left:234.754226px;}
.x16_c00476{left:236.600364px;}
.x73_c00476{left:240.914793px;}
.x21_c00476{left:245.975490px;}
.xe_c00476{left:247.011000px;}
.x3f_c00476{left:248.261718px;}
.x78_c00476{left:250.125016px;}
.x26_c00476{left:251.227218px;}
.x7d_c00476{left:253.344338px;}
.x56_c00476{left:254.427915px;}
.x4e_c00476{left:257.577000px;}
.x62_c00476{left:262.305528px;}
.x45_c00476{left:263.941500px;}
.x5c_c00476{left:264.953664px;}
.x74_c00476{left:269.739552px;}
.x6e_c00476{left:273.098570px;}
.x27_c00476{left:274.175988px;}
.x17_c00476{left:277.166892px;}
.x22_c00476{left:280.267422px;}
.x52_c00476{left:281.786023px;}
.x8b_c00476{left:283.347113px;}
.x46_c00476{left:287.904000px;}
.x63_c00476{left:290.378436px;}
.x57_c00476{left:294.414388px;}
.x79_c00476{left:301.692853px;}
.x40_c00476{left:303.080718px;}
.x81_c00476{left:305.213208px;}
.x7e_c00476{left:307.091636px;}
.x92_c00476{left:308.893500px;}
.x28_c00476{left:311.451438px;}
.x3_c00476{left:313.102500px;}
.x84_c00476{left:314.291763px;}
.x30_c00476{left:315.781812px;}
.xf_c00476{left:324.498000px;}
.x64_c00476{left:326.252532px;}
.x69_c00476{left:327.607134px;}
.x47_c00476{left:329.233500px;}
.x93_c00476{left:331.549500px;}
.x36_c00476{left:334.128108px;}
.x53_c00476{left:342.011803px;}
.x5d_c00476{left:343.818616px;}
.x6a_c00476{left:344.887951px;}
.x41_c00476{left:346.016718px;}
.x31_c00476{left:350.891658px;}
.x48_c00476{left:351.910500px;}
.x18_c00476{left:355.952502px;}
.x75_c00476{left:357.275771px;}
.x29_c00476{left:361.174032px;}
.x94_c00476{left:362.671500px;}
.x89_c00476{left:365.967180px;}
.x23_c00476{left:369.104202px;}
.x5e_c00476{left:371.362395px;}
.x8e_c00476{left:373.212822px;}
.x37_c00476{left:374.635608px;}
.x6b_c00476{left:375.932243px;}
.x54_c00476{left:377.598271px;}
.x58_c00476{left:381.893238px;}
.x65_c00476{left:384.832750px;}
.x10_c00476{left:385.842000px;}
.x19_c00476{left:387.226746px;}
.x2a_c00476{left:391.901892px;}
.x1a_c00476{left:395.922030px;}
.x7_c00476{left:399.336288px;}
.x66_c00476{left:405.353451px;}
.x49_c00476{left:408.076500px;}
.x82_c00476{left:409.179708px;}
.x38_c00476{left:410.793108px;}
.x2b_c00476{left:413.275644px;}
.x7a_c00476{left:416.721852px;}
.x24_c00476{left:421.757280px;}
.x95_c00476{left:425.236500px;}
.x11_c00476{left:429.735000px;}
.x5f_c00476{left:431.842315px;}
.x6c_c00476{left:433.972481px;}
.x4f_c00476{left:435.418500px;}
.x2c_c00476{left:437.847432px;}
.x42_c00476{left:439.706718px;}
.x4a_c00476{left:441.552000px;}
.x39_c00476{left:449.400108px;}
.x1b_c00476{left:450.459216px;}
.x59_c00476{left:452.636821px;}
.x96_c00476{left:454.701000px;}
.x12_c00476{left:456.424500px;}
.x2d_c00476{left:458.333184px;}
.x43_c00476{left:462.115218px;}
.x6f_c00476{left:463.448569px;}
.x55_c00476{left:468.650961px;}
.x1c_c00476{left:470.984730px;}
.x9c_c00476{left:475.491468px;}
.x3a_c00476{left:476.941608px;}
.x8_c00476{left:478.447632px;}
.x50_c00476{left:482.191500px;}
.x2e_c00476{left:483.450990px;}
.xa_c00476{left:493.020000px;}
.xb_c00476{left:494.370000px;}
.x1d_c00476{left:497.718582px;}
.x7b_c00476{left:499.082780px;}
.x67_c00476{left:502.281168px;}
.x8c_c00476{left:504.417113px;}
.x4_c00476{left:505.863000px;}
.x70_c00476{left:507.844070px;}
.x97_c00476{left:512.172000px;}
.x5a_c00476{left:520.207944px;}
.x51_c00476{left:529.030500px;}
.x1e_c00476{left:531.551772px;}
.x44_c00476{left:539.189718px;}
.x83_c00476{left:542.954208px;}
.x7c_c00476{left:552.425077px;}
.x3b_c00476{left:556.647108px;}
.x9_c00476{left:562.149147px;}
.x68_c00476{left:572.985418px;}
.x98_c00476{left:627.577500px;}
.x5_c00476{left:632.206500px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs1_c00476{font-size:35.466667pt;}
.fse_c00476{font-size:47.602880pt;}
.fsd_c00476{font-size:49.469659pt;}
.fs4_c00476{font-size:58.804233pt;}
.fs5_c00476{font-size:59.737634pt;}
.fsa_c00476{font-size:59.738381pt;}
.fsb_c00476{font-size:60.671793pt;}
.fs3_c00476{font-size:61.604435pt;}
.fs8_c00476{font-size:61.605205pt;}
.fs7_c00476{font-size:62.538617pt;}
.fs2_c00476{font-size:63.471236pt;}
.fs9_c00476{font-size:63.472029pt;}
.fs6_c00476{font-size:63.473806pt;}
.fsc_c00476{font-size:70.005915pt;}
.fs0_c00476{font-size:123.202218pt;}
.y0_c00476{bottom:0.000000pt;}
.yfb_c00476{bottom:138.416393pt;}
.yfc_c00476{bottom:138.416503pt;}
.yf3_c00476{bottom:138.416688pt;}
.yfa_c00476{bottom:138.416725pt;}
.yfd_c00476{bottom:138.416891pt;}
.yfe_c00476{bottom:138.416959pt;}
.yf8_c00476{bottom:138.416963pt;}
.yff_c00476{bottom:138.417000pt;}
.yf9_c00476{bottom:138.417057pt;}
.yf4_c00476{bottom:138.417076pt;}
.yf7_c00476{bottom:138.417256pt;}
.yf2_c00476{bottom:138.417340pt;}
.yf5_c00476{bottom:138.417399pt;}
.yf6_c00476{bottom:138.417867pt;}
.yf1_c00476{bottom:145.741669pt;}
.yf0_c00476{bottom:146.870079pt;}
.yef_c00476{bottom:147.035988pt;}
.yee_c00476{bottom:147.432017pt;}
.yed_c00476{bottom:147.720115pt;}
.yec_c00476{bottom:148.100363pt;}
.yeb_c00476{bottom:148.331861pt;}
.yea_c00476{bottom:148.636165pt;}
.ye9_c00476{bottom:148.702107pt;}
.ye7_c00476{bottom:148.857691pt;}
.ye8_c00476{bottom:148.891277pt;}
.ye6_c00476{bottom:149.475495pt;}
.ye5_c00476{bottom:149.791253pt;}
.ye4_c00476{bottom:150.061179pt;}
.ye3_c00476{bottom:150.522519pt;}
.ye2_c00476{bottom:150.718011pt;}
.ye1_c00476{bottom:150.817333pt;}
.ye0_c00476{bottom:195.622592pt;}
.ydf_c00476{bottom:196.328984pt;}
.yde_c00476{bottom:197.263256pt;}
.ydd_c00476{bottom:197.533471pt;}
.ydc_c00476{bottom:198.197961pt;}
.ydb_c00476{bottom:198.731789pt;}
.yda_c00476{bottom:199.593001pt;}
.yd9_c00476{bottom:199.967989pt;}
.yd8_c00476{bottom:200.907339pt;}
.yd7_c00476{bottom:201.576907pt;}
.yd6_c00476{bottom:215.459284pt;}
.yd5_c00476{bottom:218.013871pt;}
.yd4_c00476{bottom:220.048752pt;}
.yd3_c00476{bottom:237.682635pt;}
.yd2_c00476{bottom:238.106192pt;}
.yd1_c00476{bottom:238.983727pt;}
.yd0_c00476{bottom:239.664112pt;}
.ycf_c00476{bottom:240.322380pt;}
.yce_c00476{bottom:240.453767pt;}
.ycd_c00476{bottom:255.012684pt;}
.ycc_c00476{bottom:256.098812pt;}
.ycb_c00476{bottom:256.716461pt;}
.yca_c00476{bottom:256.994665pt;}
.yc9_c00476{bottom:258.115903pt;}
.yc8_c00476{bottom:258.760845pt;}
.yc7_c00476{bottom:260.378081pt;}
.yc6_c00476{bottom:277.745108pt;}
.yc4_c00476{bottom:295.786281pt;}
.yc5_c00476{bottom:295.790909pt;}
.yc3_c00476{bottom:296.349372pt;}
.yc2_c00476{bottom:296.614589pt;}
.yc1_c00476{bottom:297.032184pt;}
.yc0_c00476{bottom:297.332120pt;}
.ybf_c00476{bottom:297.940676pt;}
.ybe_c00476{bottom:298.533511pt;}
.ybd_c00476{bottom:299.182453pt;}
.ybc_c00476{bottom:299.643763pt;}
.ybb_c00476{bottom:300.274713pt;}
.yba_c00476{bottom:300.698791pt;}
.yb9_c00476{bottom:318.441839pt;}
.yb8_c00476{bottom:319.110927pt;}
.yb7_c00476{bottom:320.380139pt;}
.yb6_c00476{bottom:336.085001pt;}
.yb5_c00476{bottom:336.749409pt;}
.yb4_c00476{bottom:337.031559pt;}
.yb3_c00476{bottom:337.474965pt;}
.yb2_c00476{bottom:337.774481pt;}
.yb1_c00476{bottom:338.255395pt;}
.yb0_c00476{bottom:338.503625pt;}
.yaf_c00476{bottom:339.206389pt;}
.yae_c00476{bottom:339.847625pt;}
.yad_c00476{bottom:340.334553pt;}
.yac_c00476{bottom:340.536975pt;}
.yab_c00476{bottom:341.023816pt;}
.yaa_c00476{bottom:358.519185pt;}
.ya9_c00476{bottom:377.435939pt;}
.ya8_c00476{bottom:377.719024pt;}
.ya7_c00476{bottom:378.071797pt;}
.ya6_c00476{bottom:378.241607pt;}
.ya5_c00476{bottom:378.790792pt;}
.ya4_c00476{bottom:379.112283pt;}
.ya3_c00476{bottom:379.728729pt;}
.ya2_c00476{bottom:380.279839pt;}
.ya1_c00476{bottom:380.663600pt;}
.ya0_c00476{bottom:381.177847pt;}
.y9f_c00476{bottom:381.479753pt;}
.y9e_c00476{bottom:381.865593pt;}
.y9d_c00476{bottom:396.951691pt;}
.y9c_c00476{bottom:397.464705pt;}
.y9b_c00476{bottom:397.761279pt;}
.y9a_c00476{bottom:398.457056pt;}
.y99_c00476{bottom:398.853261pt;}
.y98_c00476{bottom:399.046840pt;}
.y97_c00476{bottom:399.664305pt;}
.y96_c00476{bottom:399.747557pt;}
.y95_c00476{bottom:400.160663pt;}
.y94_c00476{bottom:400.465781pt;}
.y93_c00476{bottom:401.043657pt;}
.y92_c00476{bottom:417.939387pt;}
.y91_c00476{bottom:418.764767pt;}
.y90_c00476{bottom:419.206181pt;}
.y8f_c00476{bottom:419.452545pt;}
.y8e_c00476{bottom:419.990869pt;}
.y8d_c00476{bottom:420.535727pt;}
.y8c_c00476{bottom:421.910973pt;}
.y8b_c00476{bottom:435.648279pt;}
.y8a_c00476{bottom:436.653337pt;}
.y89_c00476{bottom:437.095185pt;}
.y88_c00476{bottom:437.597515pt;}
.y87_c00476{bottom:438.032101pt;}
.y86_c00476{bottom:438.323905pt;}
.y85_c00476{bottom:439.156859pt;}
.y84_c00476{bottom:439.667420pt;}
.y83_c00476{bottom:440.066497pt;}
.y82_c00476{bottom:440.501067pt;}
.y81_c00476{bottom:441.203125pt;}
.y80_c00476{bottom:441.630676pt;}
.y7f_c00476{bottom:458.825161pt;}
.y7e_c00476{bottom:478.680928pt;}
.y7d_c00476{bottom:479.487825pt;}
.y7c_c00476{bottom:479.855451pt;}
.y7b_c00476{bottom:480.906803pt;}
.y7a_c00476{bottom:481.319472pt;}
.y79_c00476{bottom:481.942817pt;}
.y78_c00476{bottom:482.395937pt;}
.y77_c00476{bottom:498.013920pt;}
.y76_c00476{bottom:498.464693pt;}
.y75_c00476{bottom:498.854752pt;}
.y74_c00476{bottom:499.734911pt;}
.y73_c00476{bottom:500.178629pt;}
.y72_c00476{bottom:500.824457pt;}
.y71_c00476{bottom:501.322529pt;}
.y70_c00476{bottom:502.193328pt;}
.y6f_c00476{bottom:502.560005pt;}
.y6e_c00476{bottom:518.784139pt;}
.y6d_c00476{bottom:518.887783pt;}
.y6c_c00476{bottom:519.625741pt;}
.y6b_c00476{bottom:519.858600pt;}
.y6a_c00476{bottom:520.237816pt;}
.y69_c00476{bottom:520.540880pt;}
.y68_c00476{bottom:520.880416pt;}
.y67_c00476{bottom:521.240477pt;}
.y66_c00476{bottom:522.240485pt;}
.y65_c00476{bottom:538.196111pt;}
.y64_c00476{bottom:538.737361pt;}
.y63_c00476{bottom:539.277849pt;}
.y62_c00476{bottom:539.551421pt;}
.y61_c00476{bottom:540.459827pt;}
.y60_c00476{bottom:541.332907pt;}
.y5f_c00476{bottom:541.778183pt;}
.y5e_c00476{bottom:542.013171pt;}
.y5d_c00476{bottom:542.045099pt;}
.y5c_c00476{bottom:542.644000pt;}
.y5b_c00476{bottom:579.128307pt;}
.y5a_c00476{bottom:579.574647pt;}
.y59_c00476{bottom:579.790567pt;}
.y58_c00476{bottom:580.323527pt;}
.y57_c00476{bottom:580.625887pt;}
.y56_c00476{bottom:581.176947pt;}
.y55_c00476{bottom:581.496447pt;}
.y54_c00476{bottom:581.677407pt;}
.y53_c00476{bottom:582.410907pt;}
.y52_c00476{bottom:582.962667pt;}
.y51_c00476{bottom:598.751643pt;}
.y50_c00476{bottom:599.573771pt;}
.y4f_c00476{bottom:599.812795pt;}
.y4e_c00476{bottom:600.564523pt;}
.y4d_c00476{bottom:600.812155pt;}
.y4c_c00476{bottom:601.270139pt;}
.y4b_c00476{bottom:601.854875pt;}
.y4a_c00476{bottom:602.119403pt;}
.y49_c00476{bottom:602.540331pt;}
.y48_c00476{bottom:602.868731pt;}
.y47_c00476{bottom:618.374949pt;}
.y46_c00476{bottom:619.225141pt;}
.y45_c00476{bottom:619.518917pt;}
.y44_c00476{bottom:619.930725pt;}
.y43_c00476{bottom:620.316405pt;}
.y42_c00476{bottom:620.748485pt;}
.y41_c00476{bottom:621.365045pt;}
.y40_c00476{bottom:621.869317pt;}
.y3f_c00476{bottom:622.154277pt;}
.y3e_c00476{bottom:622.467829pt;}
.y3d_c00476{bottom:622.790645pt;}
.y3c_c00476{bottom:639.948859pt;}
.y3b_c00476{bottom:640.260576pt;}
.y3a_c00476{bottom:640.579632pt;}
.y39_c00476{bottom:640.894373pt;}
.y38_c00476{bottom:641.205979pt;}
.y37_c00476{bottom:641.517808pt;}
.y36_c00476{bottom:641.888123pt;}
.y35_c00476{bottom:642.247675pt;}
.y34_c00476{bottom:642.511093pt;}
.y33_c00476{bottom:642.739408pt;}
.y32_c00476{bottom:642.950629pt;}
.y31_c00476{bottom:659.893573pt;}
.y30_c00476{bottom:660.138827pt;}
.y2f_c00476{bottom:660.338672pt;}
.y2e_c00476{bottom:660.579435pt;}
.y2d_c00476{bottom:660.788752pt;}
.y2c_c00476{bottom:661.089845pt;}
.y2b_c00476{bottom:661.576213pt;}
.y2a_c00476{bottom:661.940480pt;}
.y29_c00476{bottom:662.165264pt;}
.y28_c00476{bottom:662.725285pt;}
.y27_c00476{bottom:663.113915pt;}
.y26_c00476{bottom:682.428123pt;}
.y25_c00476{bottom:682.428341pt;}
.y24_c00476{bottom:682.428629pt;}
.y23_c00476{bottom:682.429131pt;}
.y22_c00476{bottom:682.429525pt;}
.y21_c00476{bottom:682.429707pt;}
.y1f_c00476{bottom:682.429995pt;}
.y20_c00476{bottom:682.430224pt;}
.y1e_c00476{bottom:700.185040pt;}
.y1d_c00476{bottom:700.605936pt;}
.y1c_c00476{bottom:700.939104pt;}
.y1b_c00476{bottom:701.194048pt;}
.y1a_c00476{bottom:701.873125pt;}
.y19_c00476{bottom:701.981877pt;}
.y18_c00476{bottom:702.371477pt;}
.y17_c00476{bottom:702.902757pt;}
.y16_c00476{bottom:703.351877pt;}
.y15_c00476{bottom:703.856597pt;}
.y14_c00476{bottom:704.263584pt;}
.y13_c00476{bottom:704.589659pt;}
.y12_c00476{bottom:704.881520pt;}
.y11_c00476{bottom:721.784059pt;}
.y10_c00476{bottom:722.068747pt;}
.yf_c00476{bottom:722.536939pt;}
.ye_c00476{bottom:723.191275pt;}
.yd_c00476{bottom:724.017803pt;}
.yc_c00476{bottom:724.380619pt;}
.yb_c00476{bottom:724.930667pt;}
.y6_c00476{bottom:763.261579pt;}
.y7_c00476{bottom:763.261989pt;}
.y9_c00476{bottom:763.262293pt;}
.y8_c00476{bottom:763.262568pt;}
.y1_c00476{bottom:803.520000pt;}
.y2_c00476{bottom:804.184448pt;}
.y3_c00476{bottom:804.846256pt;}
.y4_c00476{bottom:805.874312pt;}
.y5_c00476{bottom:806.548144pt;}
.ya_c00476{bottom:814.080000pt;}
.h3_c00476{height:35.466667pt;}
.h10_c00476{height:47.602880pt;}
.hf_c00476{height:49.469659pt;}
.h6_c00476{height:58.804233pt;}
.h7_c00476{height:59.737634pt;}
.hc_c00476{height:59.738381pt;}
.hd_c00476{height:60.671793pt;}
.h5_c00476{height:61.604435pt;}
.ha_c00476{height:61.605205pt;}
.h9_c00476{height:62.538617pt;}
.h4_c00476{height:63.471236pt;}
.hb_c00476{height:63.472029pt;}
.h8_c00476{height:63.473806pt;}
.he_c00476{height:70.005915pt;}
.h2_c00476{height:123.202218pt;}
.h1_c00476{height:893.333333pt;}
.h0_c00476{height:893.466667pt;}
.w0_c00476{width:635.733333pt;}
.w1_c00476{width:636.000000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:57.270667pt;}
.x8d_c00476{left:93.851756pt;}
.x8a_c00476{left:95.334767pt;}
.x8f_c00476{left:96.422667pt;}
.x99_c00476{left:103.680495pt;}
.x7f_c00476{left:104.740629pt;}
.x87_c00476{left:112.140160pt;}
.x85_c00476{left:113.503363pt;}
.x88_c00476{left:122.246827pt;}
.x90_c00476{left:123.224000pt;}
.x32_c00476{left:126.822763pt;}
.x4b_c00476{left:128.104000pt;}
.x71_c00476{left:133.995229pt;}
.x3c_c00476{left:136.189083pt;}
.x13_c00476{left:137.125195pt;}
.x76_c00476{left:138.319773pt;}
.xc_c00476{left:143.493333pt;}
.x33_c00476{left:153.724096pt;}
.x14_c00476{left:158.002032pt;}
.x72_c00476{left:159.674553pt;}
.x1f_c00476{left:160.800560pt;}
.x60_c00476{left:162.140576pt;}
.x3d_c00476{left:163.555749pt;}
.x91_c00476{left:165.164000pt;}
.x5b_c00476{left:166.386820pt;}
.x2_c00476{left:168.012000pt;}
.x25_c00476{left:172.421808pt;}
.x6_c00476{left:174.001744pt;}
.x9a_c00476{left:175.683873pt;}
.x4c_c00476{left:176.629333pt;}
.x34_c00476{left:179.853429pt;}
.x15_c00476{left:181.285472pt;}
.x20_c00476{left:182.402331pt;}
.x80_c00476{left:185.896629pt;}
.x77_c00476{left:187.544465pt;}
.xd_c00476{left:189.330667pt;}
.x9b_c00476{left:191.764491pt;}
.x4d_c00476{left:194.705333pt;}
.x3e_c00476{left:198.633083pt;}
.x35_c00476{left:203.600096pt;}
.x6d_c00476{left:204.572951pt;}
.x61_c00476{left:205.989527pt;}
.x2f_c00476{left:207.759867pt;}
.x86_c00476{left:208.670423pt;}
.x16_c00476{left:210.311435pt;}
.x73_c00476{left:214.146483pt;}
.x21_c00476{left:218.644880pt;}
.xe_c00476{left:219.565333pt;}
.x3f_c00476{left:220.677083pt;}
.x78_c00476{left:222.333348pt;}
.x26_c00476{left:223.313083pt;}
.x7d_c00476{left:225.194967pt;}
.x56_c00476{left:226.158147pt;}
.x4e_c00476{left:228.957333pt;}
.x62_c00476{left:233.160469pt;}
.x45_c00476{left:234.614667pt;}
.x5c_c00476{left:235.514368pt;}
.x74_c00476{left:239.768491pt;}
.x6e_c00476{left:242.754284pt;}
.x27_c00476{left:243.711989pt;}
.x17_c00476{left:246.370571pt;}
.x22_c00476{left:249.126597pt;}
.x52_c00476{left:250.476465pt;}
.x8b_c00476{left:251.864100pt;}
.x46_c00476{left:255.914667pt;}
.x63_c00476{left:258.114165pt;}
.x57_c00476{left:261.701679pt;}
.x79_c00476{left:268.171425pt;}
.x40_c00476{left:269.405083pt;}
.x81_c00476{left:271.300629pt;}
.x7e_c00476{left:272.970343pt;}
.x92_c00476{left:274.572000pt;}
.x28_c00476{left:276.845723pt;}
.x3_c00476{left:278.313333pt;}
.x84_c00476{left:279.370456pt;}
.x30_c00476{left:280.694944pt;}
.xf_c00476{left:288.442667pt;}
.x64_c00476{left:290.002251pt;}
.x69_c00476{left:291.206341pt;}
.x47_c00476{left:292.652000pt;}
.x93_c00476{left:294.710667pt;}
.x36_c00476{left:297.002763pt;}
.x53_c00476{left:304.010492pt;}
.x5d_c00476{left:305.616548pt;}
.x6a_c00476{left:306.567068pt;}
.x41_c00476{left:307.570416pt;}
.x31_c00476{left:311.903696pt;}
.x48_c00476{left:312.809333pt;}
.x18_c00476{left:316.402224pt;}
.x75_c00476{left:317.578463pt;}
.x29_c00476{left:321.043584pt;}
.x94_c00476{left:322.374667pt;}
.x89_c00476{left:325.304160pt;}
.x23_c00476{left:328.092624pt;}
.x5e_c00476{left:330.099907pt;}
.x8e_c00476{left:331.744731pt;}
.x37_c00476{left:333.009429pt;}
.x6b_c00476{left:334.161993pt;}
.x54_c00476{left:335.642908pt;}
.x58_c00476{left:339.460656pt;}
.x65_c00476{left:342.073556pt;}
.x10_c00476{left:342.970667pt;}
.x19_c00476{left:344.201552pt;}
.x2a_c00476{left:348.357237pt;}
.x1a_c00476{left:351.930693pt;}
.x7_c00476{left:354.965589pt;}
.x66_c00476{left:360.314179pt;}
.x49_c00476{left:362.734667pt;}
.x82_c00476{left:363.715296pt;}
.x38_c00476{left:365.149429pt;}
.x2b_c00476{left:367.356128pt;}
.x7a_c00476{left:370.419424pt;}
.x24_c00476{left:374.895360pt;}
.x95_c00476{left:377.988000pt;}
.x11_c00476{left:381.986667pt;}
.x5f_c00476{left:383.859836pt;}
.x6c_c00476{left:385.753316pt;}
.x4f_c00476{left:387.038667pt;}
.x2c_c00476{left:389.197717pt;}
.x42_c00476{left:390.850416pt;}
.x4a_c00476{left:392.490667pt;}
.x39_c00476{left:399.466763pt;}
.x1b_c00476{left:400.408192pt;}
.x59_c00476{left:402.343841pt;}
.x96_c00476{left:404.178667pt;}
.x12_c00476{left:405.710667pt;}
.x2d_c00476{left:407.407275pt;}
.x43_c00476{left:410.769083pt;}
.x6f_c00476{left:411.954284pt;}
.x55_c00476{left:416.578632pt;}
.x1c_c00476{left:418.653093pt;}
.x9c_c00476{left:422.659083pt;}
.x3a_c00476{left:423.948096pt;}
.x8_c00476{left:425.286784pt;}
.x50_c00476{left:428.614667pt;}
.x2e_c00476{left:429.734213pt;}
.xa_c00476{left:438.240000pt;}
.xb_c00476{left:439.440000pt;}
.x1d_c00476{left:442.416517pt;}
.x7b_c00476{left:443.629137pt;}
.x67_c00476{left:446.472149pt;}
.x8c_c00476{left:448.370767pt;}
.x4_c00476{left:449.656000pt;}
.x70_c00476{left:451.416951pt;}
.x97_c00476{left:455.264000pt;}
.x5a_c00476{left:462.407061pt;}
.x51_c00476{left:470.249333pt;}
.x1e_c00476{left:472.490464pt;}
.x44_c00476{left:479.279749pt;}
.x83_c00476{left:482.625963pt;}
.x7c_c00476{left:491.044513pt;}
.x3b_c00476{left:494.797429pt;}
.x9_c00476{left:499.688131pt;}
.x68_c00476{left:509.320372pt;}
.x98_c00476{left:557.846667pt;}
.x5_c00476{left:561.961333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m9b_c00477{transform:matrix(0.008360,-0.000075,0.002250,0.249990,0,0);-ms-transform:matrix(0.008360,-0.000075,0.002250,0.249990,0,0);-webkit-transform:matrix(0.008360,-0.000075,0.002250,0.249990,0,0);}
.me0_c00477{transform:matrix(0.011660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011660,0.000000,0.000000,0.250000,0,0);}
.m11b_c00477{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.013839,-0.000125,0.002250,0.249990,0,0);-ms-transform:matrix(0.013839,-0.000125,0.002250,0.249990,0,0);-webkit-transform:matrix(0.013839,-0.000125,0.002250,0.249990,0,0);}
.mbe_c00477{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);}
.m8a_c00477{transform:matrix(0.024574,-0.000221,0.002250,0.249990,0,0);-ms-transform:matrix(0.024574,-0.000221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.024574,-0.000221,0.002250,0.249990,0,0);}
.m10d_c00477{transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028570,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.045951,-0.001472,0.008004,0.249872,0,0);-ms-transform:matrix(0.045951,-0.001472,0.008004,0.249872,0,0);-webkit-transform:matrix(0.045951,-0.001472,0.008004,0.249872,0,0);}
.m9a_c00477{transform:matrix(0.050243,-0.000452,0.002250,0.249990,0,0);-ms-transform:matrix(0.050243,-0.000452,0.002250,0.249990,0,0);-webkit-transform:matrix(0.050243,-0.000452,0.002250,0.249990,0,0);}
.me7_c00477{transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);}
.m100_c00477{transform:matrix(0.100435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100435,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.104406,-0.003344,0.008004,0.249872,0,0);-ms-transform:matrix(0.104406,-0.003344,0.008004,0.249872,0,0);-webkit-transform:matrix(0.104406,-0.003344,0.008004,0.249872,0,0);}
.mf4_c00477{transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112705,0.000000,0.000000,0.250000,0,0);}
.ma6_c00477{transform:matrix(0.113330,-0.001020,0.002250,0.249990,0,0);-ms-transform:matrix(0.113330,-0.001020,0.002250,0.249990,0,0);-webkit-transform:matrix(0.113330,-0.001020,0.002250,0.249990,0,0);}
.me_c00477{transform:matrix(0.116785,-0.003741,0.008004,0.249872,0,0);-ms-transform:matrix(0.116785,-0.003741,0.008004,0.249872,0,0);-webkit-transform:matrix(0.116785,-0.003741,0.008004,0.249872,0,0);}
.m11d_c00477{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);}
.m121_c00477{transform:matrix(0.140840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140840,0.000000,0.000000,0.250000,0,0);}
.mee_c00477{transform:matrix(0.141790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141790,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.143769,-0.001294,0.002250,0.249990,0,0);-ms-transform:matrix(0.143769,-0.001294,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143769,-0.001294,0.002250,0.249990,0,0);}
.mde_c00477{transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144090,0.000000,0.000000,0.250000,0,0);}
.m11e_c00477{transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144665,0.000000,0.000000,0.250000,0,0);}
.md7_c00477{transform:matrix(0.146270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146270,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.146909,-0.001322,0.002250,0.249990,0,0);-ms-transform:matrix(0.146909,-0.001322,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146909,-0.001322,0.002250,0.249990,0,0);}
.m5e_c00477{transform:matrix(0.148949,-0.001341,0.002250,0.249990,0,0);-ms-transform:matrix(0.148949,-0.001341,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148949,-0.001341,0.002250,0.249990,0,0);}
.m50_c00477{transform:matrix(0.150064,-0.001351,0.002250,0.249990,0,0);-ms-transform:matrix(0.150064,-0.001351,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150064,-0.001351,0.002250,0.249990,0,0);}
.m51_c00477{transform:matrix(0.150824,-0.001357,0.002250,0.249990,0,0);-ms-transform:matrix(0.150824,-0.001357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150824,-0.001357,0.002250,0.249990,0,0);}
.m91_c00477{transform:matrix(0.151104,-0.001360,0.002250,0.249990,0,0);-ms-transform:matrix(0.151104,-0.001360,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151104,-0.001360,0.002250,0.249990,0,0);}
.m78_c00477{transform:matrix(0.155979,-0.001404,0.002250,0.249990,0,0);-ms-transform:matrix(0.155979,-0.001404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155979,-0.001404,0.002250,0.249990,0,0);}
.m12_c00477{transform:matrix(0.156329,-0.001407,0.002250,0.249990,0,0);-ms-transform:matrix(0.156329,-0.001407,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156329,-0.001407,0.002250,0.249990,0,0);}
.m10_c00477{transform:matrix(0.156590,-0.005016,0.008004,0.249872,0,0);-ms-transform:matrix(0.156590,-0.005016,0.008004,0.249872,0,0);-webkit-transform:matrix(0.156590,-0.005016,0.008004,0.249872,0,0);}
.m47_c00477{transform:matrix(0.157769,-0.001420,0.002250,0.249990,0,0);-ms-transform:matrix(0.157769,-0.001420,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157769,-0.001420,0.002250,0.249990,0,0);}
.m96_c00477{transform:matrix(0.157804,-0.001420,0.002250,0.249990,0,0);-ms-transform:matrix(0.157804,-0.001420,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157804,-0.001420,0.002250,0.249990,0,0);}
.m118_c00477{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);}
.m75_c00477{transform:matrix(0.159629,-0.001437,0.002250,0.249990,0,0);-ms-transform:matrix(0.159629,-0.001437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159629,-0.001437,0.002250,0.249990,0,0);}
.m11a_c00477{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);}
.m62_c00477{transform:matrix(0.162963,-0.001467,0.002250,0.249990,0,0);-ms-transform:matrix(0.162963,-0.001467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162963,-0.001467,0.002250,0.249990,0,0);}
.m6e_c00477{transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-ms-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);}
.ma5_c00477{transform:matrix(0.163533,-0.001472,0.002250,0.249990,0,0);-ms-transform:matrix(0.163533,-0.001472,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163533,-0.001472,0.002250,0.249990,0,0);}
.m26_c00477{transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);-ms-transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163713,-0.001473,0.002250,0.249990,0,0);}
.m4b_c00477{transform:matrix(0.164633,-0.001482,0.002250,0.249990,0,0);-ms-transform:matrix(0.164633,-0.001482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164633,-0.001482,0.002250,0.249990,0,0);}
.m14_c00477{transform:matrix(0.165863,-0.001493,0.002250,0.249990,0,0);-ms-transform:matrix(0.165863,-0.001493,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165863,-0.001493,0.002250,0.249990,0,0);}
.m109_c00477{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);}
.m9f_c00477{transform:matrix(0.167178,-0.001505,0.002250,0.249990,0,0);-ms-transform:matrix(0.167178,-0.001505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167178,-0.001505,0.002250,0.249990,0,0);}
.m67_c00477{transform:matrix(0.167568,-0.001508,0.002250,0.249990,0,0);-ms-transform:matrix(0.167568,-0.001508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167568,-0.001508,0.002250,0.249990,0,0);}
.mfd_c00477{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);}
.m1e_c00477{transform:matrix(0.168368,-0.001515,0.002250,0.249990,0,0);-ms-transform:matrix(0.168368,-0.001515,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168368,-0.001515,0.002250,0.249990,0,0);}
.md8_c00477{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);}
.m77_c00477{transform:matrix(0.168733,-0.001519,0.002250,0.249990,0,0);-ms-transform:matrix(0.168733,-0.001519,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168733,-0.001519,0.002250,0.249990,0,0);}
.mc0_c00477{transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169885,0.000000,0.000000,0.250000,0,0);}
.m55_c00477{transform:matrix(0.170683,-0.001536,0.002250,0.249990,0,0);-ms-transform:matrix(0.170683,-0.001536,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170683,-0.001536,0.002250,0.249990,0,0);}
.ma_c00477{transform:matrix(0.170857,-0.005473,0.008004,0.249872,0,0);-ms-transform:matrix(0.170857,-0.005473,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170857,-0.005473,0.008004,0.249872,0,0);}
.m18_c00477{transform:matrix(0.171458,-0.001543,0.002250,0.249990,0,0);-ms-transform:matrix(0.171458,-0.001543,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171458,-0.001543,0.002250,0.249990,0,0);}
.m6f_c00477{transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);-ms-transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172213,-0.001550,0.002250,0.249990,0,0);}
.m4f_c00477{transform:matrix(0.172438,-0.001552,0.002250,0.249990,0,0);-ms-transform:matrix(0.172438,-0.001552,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172438,-0.001552,0.002250,0.249990,0,0);}
.ma4_c00477{transform:matrix(0.173873,-0.001565,0.002250,0.249990,0,0);-ms-transform:matrix(0.173873,-0.001565,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173873,-0.001565,0.002250,0.249990,0,0);}
.m2a_c00477{transform:matrix(0.174273,-0.001568,0.002250,0.249990,0,0);-ms-transform:matrix(0.174273,-0.001568,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174273,-0.001568,0.002250,0.249990,0,0);}
.m7b_c00477{transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);-ms-transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175373,-0.001578,0.002250,0.249990,0,0);}
.m2d_c00477{transform:matrix(0.175573,-0.001580,0.002250,0.249990,0,0);-ms-transform:matrix(0.175573,-0.001580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175573,-0.001580,0.002250,0.249990,0,0);}
.me1_c00477{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);}
.md6_c00477{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m6a_c00477{transform:matrix(0.177338,-0.001596,0.002250,0.249990,0,0);-ms-transform:matrix(0.177338,-0.001596,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177338,-0.001596,0.002250,0.249990,0,0);}
.mfb_c00477{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);}
.m99_c00477{transform:matrix(0.177938,-0.001601,0.002250,0.249990,0,0);-ms-transform:matrix(0.177938,-0.001601,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177938,-0.001601,0.002250,0.249990,0,0);}
.mac_c00477{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);}
.m15_c00477{transform:matrix(0.180278,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180278,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180278,-0.001622,0.002250,0.249990,0,0);}
.m65_c00477{transform:matrix(0.181028,-0.001629,0.002250,0.249990,0,0);-ms-transform:matrix(0.181028,-0.001629,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181028,-0.001629,0.002250,0.249990,0,0);}
.m114_c00477{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.m7c_c00477{transform:matrix(0.181493,-0.001633,0.002250,0.249990,0,0);-ms-transform:matrix(0.181493,-0.001633,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181493,-0.001633,0.002250,0.249990,0,0);}
.m5f_c00477{transform:matrix(0.181783,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181783,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181783,-0.001636,0.002250,0.249990,0,0);}
.me3_c00477{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);}
.mf3_c00477{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);}
.mb7_c00477{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);}
.mda_c00477{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);}
.m103_c00477{transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);}
.m82_c00477{transform:matrix(0.183723,-0.001654,0.002250,0.249990,0,0);-ms-transform:matrix(0.183723,-0.001654,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183723,-0.001654,0.002250,0.249990,0,0);}
.m56_c00477{transform:matrix(0.184028,-0.001656,0.002250,0.249990,0,0);-ms-transform:matrix(0.184028,-0.001656,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184028,-0.001656,0.002250,0.249990,0,0);}
.mea_c00477{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);}
.md9_c00477{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);}
.m4a_c00477{transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);}
.ma0_c00477{transform:matrix(0.184983,-0.001665,0.002250,0.249990,0,0);-ms-transform:matrix(0.184983,-0.001665,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184983,-0.001665,0.002250,0.249990,0,0);}
.m8c_c00477{transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-ms-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185103,-0.001666,0.002250,0.249990,0,0);}
.m71_c00477{transform:matrix(0.186142,-0.001675,0.002250,0.249990,0,0);-ms-transform:matrix(0.186142,-0.001675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186142,-0.001675,0.002250,0.249990,0,0);}
.mad_c00477{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);}
.m97_c00477{transform:matrix(0.186792,-0.001681,0.002250,0.249990,0,0);-ms-transform:matrix(0.186792,-0.001681,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186792,-0.001681,0.002250,0.249990,0,0);}
.m13_c00477{transform:matrix(0.187582,-0.001688,0.002250,0.249990,0,0);-ms-transform:matrix(0.187582,-0.001688,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187582,-0.001688,0.002250,0.249990,0,0);}
.m73_c00477{transform:matrix(0.188122,-0.001693,0.002250,0.249990,0,0);-ms-transform:matrix(0.188122,-0.001693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188122,-0.001693,0.002250,0.249990,0,0);}
.mfa_c00477{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);}
.m34_c00477{transform:matrix(0.188402,-0.001696,0.002250,0.249990,0,0);-ms-transform:matrix(0.188402,-0.001696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188402,-0.001696,0.002250,0.249990,0,0);}
.m115_c00477{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);}
.mff_c00477{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);}
.m24_c00477{transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);}
.m104_c00477{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);}
.m39_c00477{transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);-ms-transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190177,-0.001712,0.002250,0.249990,0,0);}
.m25_c00477{transform:matrix(0.190252,-0.001712,0.002250,0.249990,0,0);-ms-transform:matrix(0.190252,-0.001712,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190252,-0.001712,0.002250,0.249990,0,0);}
.mf8_c00477{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);}
.m101_c00477{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m4c_c00477{transform:matrix(0.190947,-0.001719,0.002250,0.249990,0,0);-ms-transform:matrix(0.190947,-0.001719,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190947,-0.001719,0.002250,0.249990,0,0);}
.ma1_c00477{transform:matrix(0.191137,-0.001720,0.002250,0.249990,0,0);-ms-transform:matrix(0.191137,-0.001720,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191137,-0.001720,0.002250,0.249990,0,0);}
.m61_c00477{transform:matrix(0.191197,-0.001721,0.002250,0.249990,0,0);-ms-transform:matrix(0.191197,-0.001721,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191197,-0.001721,0.002250,0.249990,0,0);}
.m74_c00477{transform:matrix(0.191417,-0.001723,0.002250,0.249990,0,0);-ms-transform:matrix(0.191417,-0.001723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191417,-0.001723,0.002250,0.249990,0,0);}
.m72_c00477{transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);-ms-transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);}
.m57_c00477{transform:matrix(0.192472,-0.001732,0.002250,0.249990,0,0);-ms-transform:matrix(0.192472,-0.001732,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192472,-0.001732,0.002250,0.249990,0,0);}
.m11c_c00477{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);}
.mbb_c00477{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);}
.mc1_c00477{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);}
.m29_c00477{transform:matrix(0.193467,-0.001741,0.002250,0.249990,0,0);-ms-transform:matrix(0.193467,-0.001741,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193467,-0.001741,0.002250,0.249990,0,0);}
.m23_c00477{transform:matrix(0.193507,-0.001742,0.002250,0.249990,0,0);-ms-transform:matrix(0.193507,-0.001742,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193507,-0.001742,0.002250,0.249990,0,0);}
.m60_c00477{transform:matrix(0.195662,-0.001761,0.002250,0.249990,0,0);-ms-transform:matrix(0.195662,-0.001761,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195662,-0.001761,0.002250,0.249990,0,0);}
.mca_c00477{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);}
.m11f_c00477{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);}
.m33_c00477{transform:matrix(0.197047,-0.001773,0.002250,0.249990,0,0);-ms-transform:matrix(0.197047,-0.001773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197047,-0.001773,0.002250,0.249990,0,0);}
.m1d_c00477{transform:matrix(0.198232,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198232,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198232,-0.001784,0.002250,0.249990,0,0);}
.m5b_c00477{transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198737,-0.001789,0.002250,0.249990,0,0);}
.m94_c00477{transform:matrix(0.198772,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198772,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198772,-0.001789,0.002250,0.249990,0,0);}
.m7d_c00477{transform:matrix(0.199012,-0.001791,0.002250,0.249990,0,0);-ms-transform:matrix(0.199012,-0.001791,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199012,-0.001791,0.002250,0.249990,0,0);}
.mb8_c00477{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);}
.m4d_c00477{transform:matrix(0.199182,-0.001793,0.002250,0.249990,0,0);-ms-transform:matrix(0.199182,-0.001793,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199182,-0.001793,0.002250,0.249990,0,0);}
.m46_c00477{transform:matrix(0.199567,-0.001796,0.002250,0.249990,0,0);-ms-transform:matrix(0.199567,-0.001796,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199567,-0.001796,0.002250,0.249990,0,0);}
.mbf_c00477{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);}
.me4_c00477{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);}
.me9_c00477{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);}
.m7a_c00477{transform:matrix(0.200817,-0.001807,0.002250,0.249990,0,0);-ms-transform:matrix(0.200817,-0.001807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200817,-0.001807,0.002250,0.249990,0,0);}
.ma3_c00477{transform:matrix(0.200827,-0.001807,0.002250,0.249990,0,0);-ms-transform:matrix(0.200827,-0.001807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200827,-0.001807,0.002250,0.249990,0,0);}
.mfe_c00477{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);}
.m17_c00477{transform:matrix(0.201417,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201417,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201417,-0.001813,0.002250,0.249990,0,0);}
.mce_c00477{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);}
.mec_c00477{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);}
.m31_c00477{transform:matrix(0.202852,-0.001826,0.002250,0.249990,0,0);-ms-transform:matrix(0.202852,-0.001826,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202852,-0.001826,0.002250,0.249990,0,0);}
.mf_c00477{transform:matrix(0.204265,-0.006543,0.008004,0.249872,0,0);-ms-transform:matrix(0.204265,-0.006543,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204265,-0.006543,0.008004,0.249872,0,0);}
.m93_c00477{transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);-ms-transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204367,-0.001839,0.002250,0.249990,0,0);}
.m8b_c00477{transform:matrix(0.204382,-0.001839,0.002250,0.249990,0,0);-ms-transform:matrix(0.204382,-0.001839,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204382,-0.001839,0.002250,0.249990,0,0);}
.mf6_c00477{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);}
.mc8_c00477{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);}
.m70_c00477{transform:matrix(0.205082,-0.001846,0.002250,0.249990,0,0);-ms-transform:matrix(0.205082,-0.001846,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205082,-0.001846,0.002250,0.249990,0,0);}
.mc9_c00477{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);}
.m9c_c00477{transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);-ms-transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205872,-0.001853,0.002250,0.249990,0,0);}
.m8f_c00477{transform:matrix(0.206037,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.206037,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206037,-0.001854,0.002250,0.249990,0,0);}
.m6d_c00477{transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);}
.m28_c00477{transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);-ms-transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207082,-0.001864,0.002250,0.249990,0,0);}
.m102_c00477{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);}
.m27_c00477{transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);-ms-transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207997,-0.001872,0.002250,0.249990,0,0);}
.mf9_c00477{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);}
.m6b_c00477{transform:matrix(0.208492,-0.001876,0.002250,0.249990,0,0);-ms-transform:matrix(0.208492,-0.001876,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208492,-0.001876,0.002250,0.249990,0,0);}
.m63_c00477{transform:matrix(0.208787,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208787,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208787,-0.001879,0.002250,0.249990,0,0);}
.mc5_c00477{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);}
.m68_c00477{transform:matrix(0.208982,-0.001881,0.002250,0.249990,0,0);-ms-transform:matrix(0.208982,-0.001881,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208982,-0.001881,0.002250,0.249990,0,0);}
.mb3_c00477{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);}
.m10e_c00477{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);}
.m21_c00477{transform:matrix(0.211326,-0.001902,0.002250,0.249990,0,0);-ms-transform:matrix(0.211326,-0.001902,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211326,-0.001902,0.002250,0.249990,0,0);}
.ma2_c00477{transform:matrix(0.211821,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211821,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211821,-0.001906,0.002250,0.249990,0,0);}
.m41_c00477{transform:matrix(0.212326,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212326,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212326,-0.001911,0.002250,0.249990,0,0);}
.m66_c00477{transform:matrix(0.212581,-0.001913,0.002250,0.249990,0,0);-ms-transform:matrix(0.212581,-0.001913,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212581,-0.001913,0.002250,0.249990,0,0);}
.m95_c00477{transform:matrix(0.212996,-0.001917,0.002250,0.249990,0,0);-ms-transform:matrix(0.212996,-0.001917,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212996,-0.001917,0.002250,0.249990,0,0);}
.mf1_c00477{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);}
.m80_c00477{transform:matrix(0.213686,-0.001923,0.002250,0.249990,0,0);-ms-transform:matrix(0.213686,-0.001923,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213686,-0.001923,0.002250,0.249990,0,0);}
.m35_c00477{transform:matrix(0.214106,-0.001927,0.002250,0.249990,0,0);-ms-transform:matrix(0.214106,-0.001927,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214106,-0.001927,0.002250,0.249990,0,0);}
.m40_c00477{transform:matrix(0.215841,-0.001943,0.002250,0.249990,0,0);-ms-transform:matrix(0.215841,-0.001943,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215841,-0.001943,0.002250,0.249990,0,0);}
.m49_c00477{transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);-ms-transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215866,-0.001943,0.002250,0.249990,0,0);}
.mc6_c00477{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);}
.m120_c00477{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);}
.m3a_c00477{transform:matrix(0.217066,-0.001954,0.002250,0.249990,0,0);-ms-transform:matrix(0.217066,-0.001954,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217066,-0.001954,0.002250,0.249990,0,0);}
.mcd_c00477{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);}
.m42_c00477{transform:matrix(0.217616,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217616,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217616,-0.001959,0.002250,0.249990,0,0);}
.m11_c00477{transform:matrix(0.218141,-0.001963,0.002250,0.249990,0,0);-ms-transform:matrix(0.218141,-0.001963,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218141,-0.001963,0.002250,0.249990,0,0);}
.m52_c00477{transform:matrix(0.218956,-0.001971,0.002250,0.249990,0,0);-ms-transform:matrix(0.218956,-0.001971,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218956,-0.001971,0.002250,0.249990,0,0);}
.m5a_c00477{transform:matrix(0.219116,-0.001972,0.002250,0.249990,0,0);-ms-transform:matrix(0.219116,-0.001972,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219116,-0.001972,0.002250,0.249990,0,0);}
.m5d_c00477{transform:matrix(0.219561,-0.001976,0.002250,0.249990,0,0);-ms-transform:matrix(0.219561,-0.001976,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219561,-0.001976,0.002250,0.249990,0,0);}
.m5c_c00477{transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);-ms-transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);}
.m117_c00477{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m64_c00477{transform:matrix(0.221956,-0.001998,0.002250,0.249990,0,0);-ms-transform:matrix(0.221956,-0.001998,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221956,-0.001998,0.002250,0.249990,0,0);}
.mf2_c00477{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);}
.m113_c00477{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);}
.mcb_c00477{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);}
.mef_c00477{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);}
.mf5_c00477{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);}
.m85_c00477{transform:matrix(0.223776,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223776,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223776,-0.002014,0.002250,0.249990,0,0);}
.m30_c00477{transform:matrix(0.224491,-0.002020,0.002250,0.249990,0,0);-ms-transform:matrix(0.224491,-0.002020,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224491,-0.002020,0.002250,0.249990,0,0);}
.m8e_c00477{transform:matrix(0.225256,-0.002027,0.002250,0.249990,0,0);-ms-transform:matrix(0.225256,-0.002027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225256,-0.002027,0.002250,0.249990,0,0);}
.m10f_c00477{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);}
.m98_c00477{transform:matrix(0.226521,-0.002039,0.002250,0.249990,0,0);-ms-transform:matrix(0.226521,-0.002039,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226521,-0.002039,0.002250,0.249990,0,0);}
.me2_c00477{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);}
.m3c_c00477{transform:matrix(0.226971,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.226971,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226971,-0.002043,0.002250,0.249990,0,0);}
.med_c00477{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);}
.mb1_c00477{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);}
.me6_c00477{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);}
.mdc_c00477{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);}
.me5_c00477{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);}
.md5_c00477{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);}
.mbd_c00477{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);}
.m37_c00477{transform:matrix(0.229306,-0.002064,0.002250,0.249990,0,0);-ms-transform:matrix(0.229306,-0.002064,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229306,-0.002064,0.002250,0.249990,0,0);}
.md4_c00477{transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.230487,-0.007383,0.008004,0.249872,0,0);-ms-transform:matrix(0.230487,-0.007383,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230487,-0.007383,0.008004,0.249872,0,0);}
.mcc_c00477{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);}
.m7f_c00477{transform:matrix(0.231186,-0.002081,0.002250,0.249990,0,0);-ms-transform:matrix(0.231186,-0.002081,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231186,-0.002081,0.002250,0.249990,0,0);}
.m22_c00477{transform:matrix(0.231321,-0.002082,0.002250,0.249990,0,0);-ms-transform:matrix(0.231321,-0.002082,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231321,-0.002082,0.002250,0.249990,0,0);}
.mdb_c00477{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);}
.m69_c00477{transform:matrix(0.231826,-0.002086,0.002250,0.249990,0,0);-ms-transform:matrix(0.231826,-0.002086,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231826,-0.002086,0.002250,0.249990,0,0);}
.m105_c00477{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);}
.m3f_c00477{transform:matrix(0.232711,-0.002094,0.002250,0.249990,0,0);-ms-transform:matrix(0.232711,-0.002094,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232711,-0.002094,0.002250,0.249990,0,0);}
.m89_c00477{transform:matrix(0.233491,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233491,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233491,-0.002101,0.002250,0.249990,0,0);}
.m4e_c00477{transform:matrix(0.233636,-0.002103,0.002250,0.249990,0,0);-ms-transform:matrix(0.233636,-0.002103,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233636,-0.002103,0.002250,0.249990,0,0);}
.m58_c00477{transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);-ms-transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);}
.m54_c00477{transform:matrix(0.236580,-0.002129,0.002250,0.249990,0,0);-ms-transform:matrix(0.236580,-0.002129,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236580,-0.002129,0.002250,0.249990,0,0);}
.m0_c00477{transform:matrix(0.236699,-0.007582,0.008004,0.249872,0,0);-ms-transform:matrix(0.236699,-0.007582,0.008004,0.249872,0,0);-webkit-transform:matrix(0.236699,-0.007582,0.008004,0.249872,0,0);}
.m3d_c00477{transform:matrix(0.236950,-0.002133,0.002250,0.249990,0,0);-ms-transform:matrix(0.236950,-0.002133,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236950,-0.002133,0.002250,0.249990,0,0);}
.m20_c00477{transform:matrix(0.238345,-0.002145,0.002250,0.249990,0,0);-ms-transform:matrix(0.238345,-0.002145,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238345,-0.002145,0.002250,0.249990,0,0);}
.m106_c00477{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);}
.md_c00477{transform:matrix(0.239307,-0.007665,0.008004,0.249872,0,0);-ms-transform:matrix(0.239307,-0.007665,0.008004,0.249872,0,0);-webkit-transform:matrix(0.239307,-0.007665,0.008004,0.249872,0,0);}
.m83_c00477{transform:matrix(0.240105,-0.002161,0.002250,0.249990,0,0);-ms-transform:matrix(0.240105,-0.002161,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240105,-0.002161,0.002250,0.249990,0,0);}
.m45_c00477{transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);-ms-transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240785,-0.002167,0.002250,0.249990,0,0);}
.mab_c00477{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);}
.m110_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);}
.mf7_c00477{transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241290,0.000000,0.000000,0.250000,0,0);}
.maf_c00477{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);}
.m10a_c00477{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);}
.m76_c00477{transform:matrix(0.241880,-0.002177,0.002250,0.249990,0,0);-ms-transform:matrix(0.241880,-0.002177,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241880,-0.002177,0.002250,0.249990,0,0);}
.md1_c00477{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m87_c00477{transform:matrix(0.242355,-0.002181,0.002250,0.249990,0,0);-ms-transform:matrix(0.242355,-0.002181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242355,-0.002181,0.002250,0.249990,0,0);}
.m3e_c00477{transform:matrix(0.243225,-0.002189,0.002250,0.249990,0,0);-ms-transform:matrix(0.243225,-0.002189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243225,-0.002189,0.002250,0.249990,0,0);}
.m1f_c00477{transform:matrix(0.246095,-0.002215,0.002250,0.249990,0,0);-ms-transform:matrix(0.246095,-0.002215,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246095,-0.002215,0.002250,0.249990,0,0);}
.m2f_c00477{transform:matrix(0.248945,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.248945,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248945,-0.002241,0.002250,0.249990,0,0);}
.mb5_c00477{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m107_c00477{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);}
.m9e_c00477{transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);-ms-transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);}
.m36_c00477{transform:matrix(0.255885,-0.002303,0.002250,0.249990,0,0);-ms-transform:matrix(0.255885,-0.002303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255885,-0.002303,0.002250,0.249990,0,0);}
.mb9_c00477{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.m32_c00477{transform:matrix(0.257130,-0.002314,0.002250,0.249990,0,0);-ms-transform:matrix(0.257130,-0.002314,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257130,-0.002314,0.002250,0.249990,0,0);}
.m48_c00477{transform:matrix(0.257335,-0.002316,0.002250,0.249990,0,0);-ms-transform:matrix(0.257335,-0.002316,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257335,-0.002316,0.002250,0.249990,0,0);}
.m10b_c00477{transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258600,0.000000,0.000000,0.250000,0,0);}
.mbc_c00477{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);}
.mc4_c00477{transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);}
.m10c_c00477{transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);}
.m112_c00477{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.m9d_c00477{transform:matrix(0.272429,-0.002452,0.002250,0.249990,0,0);-ms-transform:matrix(0.272429,-0.002452,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272429,-0.002452,0.002250,0.249990,0,0);}
.m79_c00477{transform:matrix(0.274909,-0.002474,0.002250,0.249990,0,0);-ms-transform:matrix(0.274909,-0.002474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274909,-0.002474,0.002250,0.249990,0,0);}
.m44_c00477{transform:matrix(0.279529,-0.002516,0.002250,0.249990,0,0);-ms-transform:matrix(0.279529,-0.002516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279529,-0.002516,0.002250,0.249990,0,0);}
.m38_c00477{transform:matrix(0.279584,-0.002516,0.002250,0.249990,0,0);-ms-transform:matrix(0.279584,-0.002516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279584,-0.002516,0.002250,0.249990,0,0);}
.m84_c00477{transform:matrix(0.280349,-0.002523,0.002250,0.249990,0,0);-ms-transform:matrix(0.280349,-0.002523,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280349,-0.002523,0.002250,0.249990,0,0);}
.m2e_c00477{transform:matrix(0.280494,-0.002524,0.002250,0.249990,0,0);-ms-transform:matrix(0.280494,-0.002524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280494,-0.002524,0.002250,0.249990,0,0);}
.mb2_c00477{transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281185,0.000000,0.000000,0.250000,0,0);}
.mcf_c00477{transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);}
.mb0_c00477{transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284040,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.284074,-0.009099,0.008004,0.249872,0,0);-ms-transform:matrix(0.284074,-0.009099,0.008004,0.249872,0,0);-webkit-transform:matrix(0.284074,-0.009099,0.008004,0.249872,0,0);}
.m116_c00477{transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284385,0.000000,0.000000,0.250000,0,0);}
.md3_c00477{transform:matrix(0.286210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286210,0.000000,0.000000,0.250000,0,0);}
.mf0_c00477{transform:matrix(0.296360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296360,0.000000,0.000000,0.250000,0,0);}
.m43_c00477{transform:matrix(0.296693,-0.002670,0.002250,0.249990,0,0);-ms-transform:matrix(0.296693,-0.002670,0.002250,0.249990,0,0);-webkit-transform:matrix(0.296693,-0.002670,0.002250,0.249990,0,0);}
.mc2_c00477{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);}
.m3b_c00477{transform:matrix(0.303958,-0.002736,0.002250,0.249990,0,0);-ms-transform:matrix(0.303958,-0.002736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.303958,-0.002736,0.002250,0.249990,0,0);}
.mc7_c00477{transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);}
.maa_c00477{transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306330,0.000000,0.000000,0.250000,0,0);}
.m7e_c00477{transform:matrix(0.308173,-0.002774,0.002250,0.249990,0,0);-ms-transform:matrix(0.308173,-0.002774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308173,-0.002774,0.002250,0.249990,0,0);}
.meb_c00477{transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.312805,-0.010020,0.008004,0.249872,0,0);-ms-transform:matrix(0.312805,-0.010020,0.008004,0.249872,0,0);-webkit-transform:matrix(0.312805,-0.010020,0.008004,0.249872,0,0);}
.mdd_c00477{transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00477{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);}
.m2b_c00477{transform:matrix(0.323162,-0.002908,0.002250,0.249990,0,0);-ms-transform:matrix(0.323162,-0.002908,0.002250,0.249990,0,0);-webkit-transform:matrix(0.323162,-0.002908,0.002250,0.249990,0,0);}
.m59_c00477{transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);-ms-transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.324262,-0.002918,0.002250,0.249990,0,0);}
.mfc_c00477{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);}
.m119_c00477{transform:matrix(0.330865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330865,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.332542,-0.002993,0.002250,0.249990,0,0);-ms-transform:matrix(0.332542,-0.002993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.332542,-0.002993,0.002250,0.249990,0,0);}
.mdf_c00477{transform:matrix(0.335340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335340,0.000000,0.000000,0.250000,0,0);}
.mae_c00477{transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337345,0.000000,0.000000,0.250000,0,0);}
.m81_c00477{transform:matrix(0.339501,-0.003056,0.002250,0.249990,0,0);-ms-transform:matrix(0.339501,-0.003056,0.002250,0.249990,0,0);-webkit-transform:matrix(0.339501,-0.003056,0.002250,0.249990,0,0);}
.ma9_c00477{transform:matrix(0.343970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343970,0.000000,0.000000,0.250000,0,0);}
.m88_c00477{transform:matrix(0.364385,-0.003279,0.002250,0.249990,0,0);-ms-transform:matrix(0.364385,-0.003279,0.002250,0.249990,0,0);-webkit-transform:matrix(0.364385,-0.003279,0.002250,0.249990,0,0);}
.m111_c00477{transform:matrix(0.365895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365895,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.366502,-0.011740,0.008004,0.249872,0,0);-ms-transform:matrix(0.366502,-0.011740,0.008004,0.249872,0,0);-webkit-transform:matrix(0.366502,-0.011740,0.008004,0.249872,0,0);}
.mb4_c00477{transform:matrix(0.368520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368520,0.000000,0.000000,0.250000,0,0);}
.m6c_c00477{transform:matrix(0.379770,-0.003418,0.002250,0.249990,0,0);-ms-transform:matrix(0.379770,-0.003418,0.002250,0.249990,0,0);-webkit-transform:matrix(0.379770,-0.003418,0.002250,0.249990,0,0);}
.mc3_c00477{transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385850,0.000000,0.000000,0.250000,0,0);}
.mb6_c00477{transform:matrix(0.405115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.409473,-0.003685,0.002250,0.249990,0,0);-ms-transform:matrix(0.409473,-0.003685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.409473,-0.003685,0.002250,0.249990,0,0);}
.m2c_c00477{transform:matrix(0.411643,-0.003705,0.002250,0.249990,0,0);-ms-transform:matrix(0.411643,-0.003705,0.002250,0.249990,0,0);-webkit-transform:matrix(0.411643,-0.003705,0.002250,0.249990,0,0);}
.m6_c00477{transform:matrix(0.415717,-0.013316,0.008004,0.249872,0,0);-ms-transform:matrix(0.415717,-0.013316,0.008004,0.249872,0,0);-webkit-transform:matrix(0.415717,-0.013316,0.008004,0.249872,0,0);}
.m1a_c00477{transform:matrix(0.415998,-0.003744,0.002250,0.249990,0,0);-ms-transform:matrix(0.415998,-0.003744,0.002250,0.249990,0,0);-webkit-transform:matrix(0.415998,-0.003744,0.002250,0.249990,0,0);}
.md2_c00477{transform:matrix(0.424665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424665,0.000000,0.000000,0.250000,0,0);}
.m86_c00477{transform:matrix(0.440482,-0.003964,0.002250,0.249990,0,0);-ms-transform:matrix(0.440482,-0.003964,0.002250,0.249990,0,0);-webkit-transform:matrix(0.440482,-0.003964,0.002250,0.249990,0,0);}
.ma7_c00477{transform:matrix(0.443337,-0.003990,0.002250,0.249990,0,0);-ms-transform:matrix(0.443337,-0.003990,0.002250,0.249990,0,0);-webkit-transform:matrix(0.443337,-0.003990,0.002250,0.249990,0,0);}
.m90_c00477{transform:matrix(0.449322,-0.004044,0.002250,0.249990,0,0);-ms-transform:matrix(0.449322,-0.004044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.449322,-0.004044,0.002250,0.249990,0,0);}
.mba_c00477{transform:matrix(0.450040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450040,0.000000,0.000000,0.250000,0,0);}
.m92_c00477{transform:matrix(0.457931,-0.004121,0.002250,0.249990,0,0);-ms-transform:matrix(0.457931,-0.004121,0.002250,0.249990,0,0);-webkit-transform:matrix(0.457931,-0.004121,0.002250,0.249990,0,0);}
.m3_c00477{transform:matrix(0.484112,-0.015507,0.008004,0.249872,0,0);-ms-transform:matrix(0.484112,-0.015507,0.008004,0.249872,0,0);-webkit-transform:matrix(0.484112,-0.015507,0.008004,0.249872,0,0);}
.m1_c00477{transform:matrix(0.501313,-0.016058,0.008004,0.249872,0,0);-ms-transform:matrix(0.501313,-0.016058,0.008004,0.249872,0,0);-webkit-transform:matrix(0.501313,-0.016058,0.008004,0.249872,0,0);}
.m2_c00477{transform:matrix(0.501653,-0.016069,0.008004,0.249872,0,0);-ms-transform:matrix(0.501653,-0.016069,0.008004,0.249872,0,0);-webkit-transform:matrix(0.501653,-0.016069,0.008004,0.249872,0,0);}
.md0_c00477{transform:matrix(0.513840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513840,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.516100,-0.016532,0.008004,0.249872,0,0);-ms-transform:matrix(0.516100,-0.016532,0.008004,0.249872,0,0);-webkit-transform:matrix(0.516100,-0.016532,0.008004,0.249872,0,0);}
.m108_c00477{transform:matrix(0.558995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00477{transform:matrix(0.620170,-0.005582,0.002250,0.249990,0,0);-ms-transform:matrix(0.620170,-0.005582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.620170,-0.005582,0.002250,0.249990,0,0);}
.me8_c00477{transform:matrix(0.659350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659350,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;}
.fsd_c00477{font-size:46.200000px;}
.fs11_c00477{font-size:47.250000px;}
.fsc_c00477{font-size:48.300000px;}
.fs12_c00477{font-size:49.350000px;}
.fs10_c00477{font-size:51.450000px;}
.fse_c00477{font-size:53.550000px;}
.fsf_c00477{font-size:55.650000px;}
.fs6_c00477{font-size:61.952509px;}
.fs8_c00477{font-size:63.002551px;}
.fs9_c00477{font-size:67.202722px;}
.fs7_c00477{font-size:68.252764px;}
.fs5_c00477{font-size:69.302807px;}
.fs4_c00477{font-size:70.352849px;}
.fs0_c00477{font-size:71.365184px;}
.fs13_c00477{font-size:71.400000px;}
.fs3_c00477{font-size:71.402892px;}
.fsa_c00477{font-size:73.502977px;}
.fsb_c00477{font-size:91.353700px;}
.fs2_c00477{font-size:110.196240px;}
.fs1_c00477{font-size:128.037536px;}
.y0_c00477{bottom:0.000000px;}
.yb2_c00477{bottom:152.797500px;}
.yb3_c00477{bottom:153.022500px;}
.yb4_c00477{bottom:153.379500px;}
.yb5_c00477{bottom:153.576000px;}
.yb6_c00477{bottom:153.859500px;}
.yb7_c00477{bottom:154.597500px;}
.yb8_c00477{bottom:155.422500px;}
.yb9_c00477{bottom:155.521500px;}
.yba_c00477{bottom:156.382500px;}
.ybb_c00477{bottom:156.721500px;}
.ybc_c00477{bottom:156.843000px;}
.ybd_c00477{bottom:157.399500px;}
.ybe_c00477{bottom:157.566000px;}
.yb1_c00477{bottom:175.837500px;}
.yb0_c00477{bottom:193.912500px;}
.yae_c00477{bottom:211.680000px;}
.yad_c00477{bottom:229.012500px;}
.yaf_c00477{bottom:229.627500px;}
.yac_c00477{bottom:247.539000px;}
.yab_c00477{bottom:265.378500px;}
.yaa_c00477{bottom:282.768000px;}
.ya9_c00477{bottom:339.027414px;}
.ya8_c00477{bottom:339.027697px;}
.ya6_c00477{bottom:361.573257px;}
.ya7_c00477{bottom:361.573260px;}
.ya4_c00477{bottom:361.573314px;}
.ya0_c00477{bottom:361.573772px;}
.ya5_c00477{bottom:361.573841px;}
.ya3_c00477{bottom:361.573868px;}
.ya2_c00477{bottom:361.574211px;}
.ya1_c00477{bottom:361.574358px;}
.y9c_c00477{bottom:384.681108px;}
.y9e_c00477{bottom:384.681234px;}
.y9f_c00477{bottom:384.681550px;}
.y9d_c00477{bottom:384.681801px;}
.y9b_c00477{bottom:407.238846px;}
.y9a_c00477{bottom:407.239353px;}
.y99_c00477{bottom:407.239457px;}
.y97_c00477{bottom:407.239827px;}
.y98_c00477{bottom:407.239873px;}
.y95_c00477{bottom:407.240124px;}
.y96_c00477{bottom:407.240201px;}
.y94_c00477{bottom:430.537530px;}
.y91_c00477{bottom:452.658105px;}
.y90_c00477{bottom:452.658375px;}
.y93_c00477{bottom:452.658378px;}
.y8f_c00477{bottom:452.658462px;}
.y8b_c00477{bottom:452.658726px;}
.y92_c00477{bottom:452.658752px;}
.y8e_c00477{bottom:452.659136px;}
.y8d_c00477{bottom:452.659239px;}
.y8c_c00477{bottom:452.659449px;}
.y80_c00477{bottom:497.042125px;}
.y81_c00477{bottom:497.411223px;}
.y82_c00477{bottom:497.579817px;}
.y83_c00477{bottom:497.821613px;}
.y84_c00477{bottom:498.006000px;}
.y85_c00477{bottom:498.156600px;}
.y86_c00477{bottom:498.353406px;}
.y87_c00477{bottom:498.840156px;}
.y88_c00477{bottom:499.027931px;}
.y89_c00477{bottom:499.293767px;}
.y8a_c00477{bottom:499.702037px;}
.y78_c00477{bottom:521.180988px;}
.y77_c00477{bottom:521.181302px;}
.y79_c00477{bottom:521.181471px;}
.y7a_c00477{bottom:521.181638px;}
.y7c_c00477{bottom:521.181730px;}
.y7f_c00477{bottom:521.181793px;}
.y7d_c00477{bottom:521.181821px;}
.y7b_c00477{bottom:521.182134px;}
.y7e_c00477{bottom:521.182407px;}
.y6f_c00477{bottom:543.459447px;}
.y6e_c00477{bottom:543.459460px;}
.y70_c00477{bottom:543.459973px;}
.y71_c00477{bottom:543.460260px;}
.y72_c00477{bottom:543.460817px;}
.y73_c00477{bottom:543.460863px;}
.y74_c00477{bottom:543.461510px;}
.y75_c00477{bottom:543.461886px;}
.y76_c00477{bottom:543.462532px;}
.y65_c00477{bottom:566.788794px;}
.y66_c00477{bottom:566.789380px;}
.y67_c00477{bottom:566.789967px;}
.y68_c00477{bottom:566.790373px;}
.y69_c00477{bottom:566.790376px;}
.y6b_c00477{bottom:566.790499px;}
.y6a_c00477{bottom:566.790813px;}
.y6c_c00477{bottom:566.790846px;}
.y6d_c00477{bottom:566.791479px;}
.y5e_c00477{bottom:587.786119px;}
.y5f_c00477{bottom:588.118447px;}
.y60_c00477{bottom:588.323851px;}
.y61_c00477{bottom:588.795091px;}
.y62_c00477{bottom:589.127325px;}
.y63_c00477{bottom:589.743172px;}
.y64_c00477{bottom:590.078025px;}
.y55_c00477{bottom:613.004547px;}
.y56_c00477{bottom:613.004593px;}
.y57_c00477{bottom:613.005030px;}
.y58_c00477{bottom:613.005706px;}
.y59_c00477{bottom:613.005873px;}
.y5d_c00477{bottom:613.006195px;}
.y5b_c00477{bottom:613.006252px;}
.y5a_c00477{bottom:613.006446px;}
.y5c_c00477{bottom:613.006449px;}
.y53_c00477{bottom:634.690947px;}
.y54_c00477{bottom:634.691533px;}
.y52_c00477{bottom:634.691680px;}
.y51_c00477{bottom:634.692384px;}
.y50_c00477{bottom:634.692577px;}
.y4f_c00477{bottom:634.692921px;}
.y4d_c00477{bottom:634.693051px;}
.y4c_c00477{bottom:634.693545px;}
.y4e_c00477{bottom:634.693578px;}
.y4b_c00477{bottom:634.693888px;}
.y49_c00477{bottom:634.694245px;}
.y4a_c00477{bottom:634.694305px;}
.y42_c00477{bottom:656.371020px;}
.y43_c00477{bottom:657.047476px;}
.y44_c00477{bottom:657.521064px;}
.y45_c00477{bottom:658.637035px;}
.y46_c00477{bottom:658.796149px;}
.y47_c00477{bottom:659.325714px;}
.y48_c00477{bottom:659.959522px;}
.y39_c00477{bottom:679.047121px;}
.y3a_c00477{bottom:679.506330px;}
.y3b_c00477{bottom:679.814958px;}
.y3c_c00477{bottom:680.320732px;}
.y3d_c00477{bottom:680.906542px;}
.y3e_c00477{bottom:681.174126px;}
.y3f_c00477{bottom:681.530994px;}
.y40_c00477{bottom:681.903766px;}
.y41_c00477{bottom:682.228299px;}
.y30_c00477{bottom:703.524001px;}
.y31_c00477{bottom:703.524198px;}
.y32_c00477{bottom:703.524784px;}
.y38_c00477{bottom:703.524933px;}
.y35_c00477{bottom:703.525047px;}
.y36_c00477{bottom:703.525123px;}
.y33_c00477{bottom:703.525147px;}
.y34_c00477{bottom:703.525194px;}
.y37_c00477{bottom:703.525486px;}
.y2f_c00477{bottom:726.979390px;}
.y2e_c00477{bottom:726.979851px;}
.y26_c00477{bottom:747.630516px;}
.y27_c00477{bottom:748.651116px;}
.y28_c00477{bottom:748.979269px;}
.y29_c00477{bottom:749.630094px;}
.y2a_c00477{bottom:749.882917px;}
.y2b_c00477{bottom:750.475914px;}
.y2c_c00477{bottom:751.126401px;}
.y2d_c00477{bottom:752.286397px;}
.y1f_c00477{bottom:772.317976px;}
.y1e_c00477{bottom:772.317990px;}
.y22_c00477{bottom:772.318149px;}
.y1d_c00477{bottom:772.318213px;}
.y21_c00477{bottom:772.318342px;}
.y23_c00477{bottom:772.318435px;}
.y20_c00477{bottom:772.318473px;}
.y24_c00477{bottom:772.318572px;}
.y25_c00477{bottom:772.319098px;}
.y1c_c00477{bottom:796.400166px;}
.y1b_c00477{bottom:796.400653px;}
.y12_c00477{bottom:815.941500px;}
.y13_c00477{bottom:816.203994px;}
.y14_c00477{bottom:816.517491px;}
.y15_c00477{bottom:816.741091px;}
.y16_c00477{bottom:816.949828px;}
.y17_c00477{bottom:817.438582px;}
.y18_c00477{bottom:817.780942px;}
.y19_c00477{bottom:818.376616px;}
.y1a_c00477{bottom:818.563713px;}
.yb_c00477{bottom:856.484141px;}
.yc_c00477{bottom:859.221683px;}
.yd_c00477{bottom:860.166962px;}
.ye_c00477{bottom:860.648831px;}
.yf_c00477{bottom:862.451643px;}
.y10_c00477{bottom:863.638985px;}
.y11_c00477{bottom:864.719679px;}
.y9_c00477{bottom:901.542293px;}
.ya_c00477{bottom:905.403137px;}
.y1_c00477{bottom:913.159500px;}
.y2_c00477{bottom:915.279660px;}
.y3_c00477{bottom:918.414636px;}
.y4_c00477{bottom:920.277084px;}
.y5_c00477{bottom:921.849948px;}
.y6_c00477{bottom:922.522908px;}
.y7_c00477{bottom:923.937228px;}
.y8_c00477{bottom:925.310028px;}
.hf_c00477{height:46.200000px;}
.h13_c00477{height:47.250000px;}
.he_c00477{height:48.300000px;}
.h14_c00477{height:49.350000px;}
.h12_c00477{height:51.450000px;}
.h10_c00477{height:53.550000px;}
.h11_c00477{height:55.650000px;}
.h8_c00477{height:61.952509px;}
.ha_c00477{height:63.002551px;}
.hb_c00477{height:67.202722px;}
.h9_c00477{height:68.252764px;}
.h7_c00477{height:69.302807px;}
.h6_c00477{height:70.352849px;}
.h2_c00477{height:71.365184px;}
.h15_c00477{height:71.400000px;}
.h5_c00477{height:71.402892px;}
.hc_c00477{height:73.502977px;}
.hd_c00477{height:91.353700px;}
.h4_c00477{height:110.196240px;}
.h3_c00477{height:128.037536px;}
.h0_c00477{height:1008.450000px;}
.h1_c00477{height:1008.750000px;}
.w1_c00477{width:700.500000px;}
.w0_c00477{width:700.650000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:89.181000px;}
.xa_c00477{left:134.716521px;}
.x78_c00477{left:136.620000px;}
.x6e_c00477{left:147.690000px;}
.x86_c00477{left:150.930000px;}
.x2_c00477{left:155.369745px;}
.xa8_c00477{left:156.525000px;}
.x9f_c00477{left:159.030000px;}
.x8d_c00477{left:164.970000px;}
.x79_c00477{left:167.130000px;}
.x11_c00477{left:170.487000px;}
.x81_c00477{left:174.960000px;}
.x68_c00477{left:177.380587px;}
.x3d_c00477{left:183.868677px;}
.x37_c00477{left:189.204534px;}
.x9a_c00477{left:193.590000px;}
.x45_c00477{left:194.936764px;}
.x28_c00477{left:196.022742px;}
.x8e_c00477{left:198.180000px;}
.x12_c00477{left:199.653000px;}
.xa0_c00477{left:202.770000px;}
.x69_c00477{left:203.840674px;}
.x6f_c00477{left:206.550000px;}
.x87_c00477{left:207.900000px;}
.x58_c00477{left:208.974747px;}
.x1b_c00477{left:212.492982px;}
.x64_c00477{left:214.913112px;}
.x2f_c00477{left:216.088510px;}
.x53_c00477{left:217.884474px;}
.x7a_c00477{left:222.210000px;}
.x46_c00477{left:225.987775px;}
.xb_c00477{left:232.354778px;}
.x13_c00477{left:234.486000px;}
.x38_c00477{left:237.530860px;}
.x88_c00477{left:238.950000px;}
.x29_c00477{left:241.924954px;}
.x22_c00477{left:243.722496px;}
.x30_c00477{left:246.880227px;}
.x4f_c00477{left:248.398493px;}
.x70_c00477{left:251.640000px;}
.x3_c00477{left:253.239777px;}
.x3e_c00477{left:256.501563px;}
.x14_c00477{left:259.330500px;}
.x47_c00477{left:261.899178px;}
.x59_c00477{left:264.866270px;}
.xc_c00477{left:266.079843px;}
.x23_c00477{left:267.182943px;}
.x65_c00477{left:268.375946px;}
.x39_c00477{left:271.316835px;}
.x7b_c00477{left:276.480000px;}
.xa1_c00477{left:280.530000px;}
.x8f_c00477{left:282.150000px;}
.xd_c00477{left:283.277339px;}
.x5d_c00477{left:290.357897px;}
.x66_c00477{left:293.216457px;}
.x6a_c00477{left:294.293505px;}
.x1c_c00477{left:295.386691px;}
.x31_c00477{left:297.410268px;}
.xa9_c00477{left:299.734500px;}
.x50_c00477{left:300.781231px;}
.x2a_c00477{left:302.136828px;}
.x82_c00477{left:303.750000px;}
.x27_c00477{left:304.837471px;}
.x61_c00477{left:306.985338px;}
.x48_c00477{left:309.421525px;}
.x4_c00477{left:311.383075px;}
.x5a_c00477{left:312.388617px;}
.x24_c00477{left:313.661350px;}
.x54_c00477{left:314.819318px;}
.x7c_c00477{left:316.980000px;}
.xa2_c00477{left:319.950000px;}
.x71_c00477{left:325.080000px;}
.x19_c00477{left:329.137203px;}
.x25_c00477{left:331.752040px;}
.x3f_c00477{left:332.914759px;}
.xa3_c00477{left:333.990000px;}
.x15_c00477{left:336.829500px;}
.x4d_c00477{left:338.966808px;}
.x2b_c00477{left:340.478433px;}
.xe_c00477{left:347.566701px;}
.x3a_c00477{left:350.976744px;}
.x40_c00477{left:353.974960px;}
.x32_c00477{left:355.999741px;}
.x5_c00477{left:360.485923px;}
.x3b_c00477{left:362.322231px;}
.x90_c00477{left:366.660000px;}
.x49_c00477{left:368.823331px;}
.x55_c00477{left:369.900773px;}
.x89_c00477{left:371.790000px;}
.x16_c00477{left:374.869500px;}
.x62_c00477{left:376.647981px;}
.x8a_c00477{left:379.620000px;}
.x6_c00477{left:381.494893px;}
.x33_c00477{left:382.730998px;}
.xaa_c00477{left:383.821500px;}
.x9_c00477{left:386.276380px;}
.x4a_c00477{left:388.803451px;}
.xf_c00477{left:389.925729px;}
.x67_c00477{left:391.499922px;}
.x5b_c00477{left:392.582110px;}
.x5e_c00477{left:394.542828px;}
.xa4_c00477{left:397.710000px;}
.x2c_c00477{left:398.800158px;}
.x1d_c00477{left:399.880656px;}
.x83_c00477{left:403.380000px;}
.x51_c00477{left:405.005169px;}
.x7d_c00477{left:406.890000px;}
.x41_c00477{left:410.406537px;}
.x4b_c00477{left:414.994071px;}
.x56_c00477{left:416.613052px;}
.x34_c00477{left:418.382674px;}
.x1e_c00477{left:419.860776px;}
.x8b_c00477{left:421.740000px;}
.x63_c00477{left:423.360261px;}
.x7_c00477{left:425.648196px;}
.x10_c00477{left:428.487078px;}
.x6c_c00477{left:430.377426px;}
.x6b_c00477{left:435.237426px;}
.x8c_c00477{left:437.400000px;}
.x5c_c00477{left:438.484323px;}
.x17_c00477{left:441.055500px;}
.x3c_c00477{left:445.415491px;}
.x91_c00477{left:446.580000px;}
.x1f_c00477{left:449.561679px;}
.x5f_c00477{left:451.277841px;}
.x35_c00477{left:455.634837px;}
.x4e_c00477{left:457.767875px;}
.x57_c00477{left:460.355090px;}
.x18_c00477{left:461.844000px;}
.x4c_c00477{left:464.136553px;}
.x9b_c00477{left:466.830000px;}
.x8_c00477{left:468.505296px;}
.x7e_c00477{left:471.150000px;}
.x6d_c00477{left:473.849449px;}
.x20_c00477{left:477.912474px;}
.x9c_c00477{left:481.140000px;}
.x36_c00477{left:488.027040px;}
.x2d_c00477{left:489.523002px;}
.x7f_c00477{left:490.860000px;}
.xab_c00477{left:492.868500px;}
.x42_c00477{left:494.108827px;}
.x72_c00477{left:496.800000px;}
.x95_c00477{left:498.420000px;}
.x60_c00477{left:502.308300px;}
.x26_c00477{left:503.464318px;}
.x1a_c00477{left:506.264053px;}
.x52_c00477{left:514.087998px;}
.x92_c00477{left:515.700000px;}
.x73_c00477{left:517.320000px;}
.x43_c00477{left:520.029433px;}
.x21_c00477{left:525.974862px;}
.x74_c00477{left:532.440000px;}
.x2e_c00477{left:535.965268px;}
.x9d_c00477{left:541.350000px;}
.xa5_c00477{left:545.670000px;}
.x96_c00477{left:548.640000px;}
.x84_c00477{left:551.880000px;}
.x93_c00477{left:552.960000px;}
.x9e_c00477{left:554.850000px;}
.x75_c00477{left:563.220000px;}
.x44_c00477{left:565.931646px;}
.x97_c00477{left:567.000000px;}
.xa6_c00477{left:568.620000px;}
.x85_c00477{left:573.480000px;}
.x76_c00477{left:575.370000px;}
.x80_c00477{left:582.660000px;}
.x98_c00477{left:588.330000px;}
.x94_c00477{left:591.300000px;}
.x77_c00477{left:594.000000px;}
.xa7_c00477{left:596.970000px;}
.x99_c00477{left:599.400000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fsd_c00477{font-size:41.066667pt;}
.fs11_c00477{font-size:42.000000pt;}
.fsc_c00477{font-size:42.933333pt;}
.fs12_c00477{font-size:43.866667pt;}
.fs10_c00477{font-size:45.733333pt;}
.fse_c00477{font-size:47.600000pt;}
.fsf_c00477{font-size:49.466667pt;}
.fs6_c00477{font-size:55.068897pt;}
.fs8_c00477{font-size:56.002268pt;}
.fs9_c00477{font-size:59.735752pt;}
.fs7_c00477{font-size:60.669124pt;}
.fs5_c00477{font-size:61.602495pt;}
.fs4_c00477{font-size:62.535866pt;}
.fs0_c00477{font-size:63.435719pt;}
.fs13_c00477{font-size:63.466667pt;}
.fs3_c00477{font-size:63.469237pt;}
.fsa_c00477{font-size:65.335979pt;}
.fsb_c00477{font-size:81.203289pt;}
.fs2_c00477{font-size:97.952213pt;}
.fs1_c00477{font-size:113.811143pt;}
.y0_c00477{bottom:0.000000pt;}
.yb2_c00477{bottom:135.820000pt;}
.yb3_c00477{bottom:136.020000pt;}
.yb4_c00477{bottom:136.337333pt;}
.yb5_c00477{bottom:136.512000pt;}
.yb6_c00477{bottom:136.764000pt;}
.yb7_c00477{bottom:137.420000pt;}
.yb8_c00477{bottom:138.153333pt;}
.yb9_c00477{bottom:138.241333pt;}
.yba_c00477{bottom:139.006667pt;}
.ybb_c00477{bottom:139.308000pt;}
.ybc_c00477{bottom:139.416000pt;}
.ybd_c00477{bottom:139.910667pt;}
.ybe_c00477{bottom:140.058667pt;}
.yb1_c00477{bottom:156.300000pt;}
.yb0_c00477{bottom:172.366667pt;}
.yae_c00477{bottom:188.160000pt;}
.yad_c00477{bottom:203.566667pt;}
.yaf_c00477{bottom:204.113333pt;}
.yac_c00477{bottom:220.034667pt;}
.yab_c00477{bottom:235.892000pt;}
.yaa_c00477{bottom:251.349333pt;}
.ya9_c00477{bottom:301.357701pt;}
.ya8_c00477{bottom:301.357953pt;}
.ya6_c00477{bottom:321.398451pt;}
.ya7_c00477{bottom:321.398453pt;}
.ya4_c00477{bottom:321.398501pt;}
.ya0_c00477{bottom:321.398908pt;}
.ya5_c00477{bottom:321.398969pt;}
.ya3_c00477{bottom:321.398993pt;}
.ya2_c00477{bottom:321.399299pt;}
.ya1_c00477{bottom:321.399429pt;}
.y9c_c00477{bottom:341.938763pt;}
.y9e_c00477{bottom:341.938875pt;}
.y9f_c00477{bottom:341.939156pt;}
.y9d_c00477{bottom:341.939379pt;}
.y9b_c00477{bottom:361.990085pt;}
.y9a_c00477{bottom:361.990536pt;}
.y99_c00477{bottom:361.990628pt;}
.y97_c00477{bottom:361.990957pt;}
.y98_c00477{bottom:361.990999pt;}
.y95_c00477{bottom:361.991221pt;}
.y96_c00477{bottom:361.991289pt;}
.y94_c00477{bottom:382.700027pt;}
.y91_c00477{bottom:402.362760pt;}
.y90_c00477{bottom:402.363000pt;}
.y93_c00477{bottom:402.363003pt;}
.y8f_c00477{bottom:402.363077pt;}
.y8b_c00477{bottom:402.363312pt;}
.y92_c00477{bottom:402.363335pt;}
.y8e_c00477{bottom:402.363676pt;}
.y8d_c00477{bottom:402.363768pt;}
.y8c_c00477{bottom:402.363955pt;}
.y80_c00477{bottom:441.815223pt;}
.y81_c00477{bottom:442.143309pt;}
.y82_c00477{bottom:442.293171pt;}
.y83_c00477{bottom:442.508100pt;}
.y84_c00477{bottom:442.672000pt;}
.y85_c00477{bottom:442.805867pt;}
.y86_c00477{bottom:442.980805pt;}
.y87_c00477{bottom:443.413472pt;}
.y88_c00477{bottom:443.580383pt;}
.y89_c00477{bottom:443.816681pt;}
.y8a_c00477{bottom:444.179588pt;}
.y78_c00477{bottom:463.271989pt;}
.y77_c00477{bottom:463.272268pt;}
.y79_c00477{bottom:463.272419pt;}
.y7a_c00477{bottom:463.272567pt;}
.y7c_c00477{bottom:463.272649pt;}
.y7f_c00477{bottom:463.272705pt;}
.y7d_c00477{bottom:463.272729pt;}
.y7b_c00477{bottom:463.273008pt;}
.y7e_c00477{bottom:463.273251pt;}
.y6f_c00477{bottom:483.075064pt;}
.y6e_c00477{bottom:483.075076pt;}
.y70_c00477{bottom:483.075532pt;}
.y71_c00477{bottom:483.075787pt;}
.y72_c00477{bottom:483.076281pt;}
.y73_c00477{bottom:483.076323pt;}
.y74_c00477{bottom:483.076897pt;}
.y75_c00477{bottom:483.077232pt;}
.y76_c00477{bottom:483.077807pt;}
.y65_c00477{bottom:503.812261pt;}
.y66_c00477{bottom:503.812783pt;}
.y67_c00477{bottom:503.813304pt;}
.y68_c00477{bottom:503.813665pt;}
.y69_c00477{bottom:503.813668pt;}
.y6b_c00477{bottom:503.813777pt;}
.y6a_c00477{bottom:503.814056pt;}
.y6c_c00477{bottom:503.814085pt;}
.y6d_c00477{bottom:503.814648pt;}
.y5e_c00477{bottom:522.476551pt;}
.y5f_c00477{bottom:522.771953pt;}
.y60_c00477{bottom:522.954535pt;}
.y61_c00477{bottom:523.373415pt;}
.y62_c00477{bottom:523.668733pt;}
.y63_c00477{bottom:524.216153pt;}
.y64_c00477{bottom:524.513800pt;}
.y55_c00477{bottom:544.892931pt;}
.y56_c00477{bottom:544.892972pt;}
.y57_c00477{bottom:544.893360pt;}
.y58_c00477{bottom:544.893961pt;}
.y59_c00477{bottom:544.894109pt;}
.y5d_c00477{bottom:544.894396pt;}
.y5b_c00477{bottom:544.894447pt;}
.y5a_c00477{bottom:544.894619pt;}
.y5c_c00477{bottom:544.894621pt;}
.y53_c00477{bottom:564.169731pt;}
.y54_c00477{bottom:564.170252pt;}
.y52_c00477{bottom:564.170383pt;}
.y51_c00477{bottom:564.171008pt;}
.y50_c00477{bottom:564.171180pt;}
.y4f_c00477{bottom:564.171485pt;}
.y4d_c00477{bottom:564.171601pt;}
.y4c_c00477{bottom:564.172040pt;}
.y4e_c00477{bottom:564.172069pt;}
.y4b_c00477{bottom:564.172345pt;}
.y49_c00477{bottom:564.172663pt;}
.y4a_c00477{bottom:564.172716pt;}
.y42_c00477{bottom:583.440907pt;}
.y43_c00477{bottom:584.042201pt;}
.y44_c00477{bottom:584.463168pt;}
.y45_c00477{bottom:585.455143pt;}
.y46_c00477{bottom:585.596577pt;}
.y47_c00477{bottom:586.067301pt;}
.y48_c00477{bottom:586.630687pt;}
.y39_c00477{bottom:603.597441pt;}
.y3a_c00477{bottom:604.005627pt;}
.y3b_c00477{bottom:604.279963pt;}
.y3c_c00477{bottom:604.729540pt;}
.y3d_c00477{bottom:605.250260pt;}
.y3e_c00477{bottom:605.488112pt;}
.y3f_c00477{bottom:605.805328pt;}
.y40_c00477{bottom:606.136681pt;}
.y41_c00477{bottom:606.425155pt;}
.y30_c00477{bottom:625.354668pt;}
.y31_c00477{bottom:625.354843pt;}
.y32_c00477{bottom:625.355364pt;}
.y38_c00477{bottom:625.355496pt;}
.y35_c00477{bottom:625.355597pt;}
.y36_c00477{bottom:625.355665pt;}
.y33_c00477{bottom:625.355687pt;}
.y34_c00477{bottom:625.355728pt;}
.y37_c00477{bottom:625.355988pt;}
.y2f_c00477{bottom:646.203903pt;}
.y2e_c00477{bottom:646.204312pt;}
.y26_c00477{bottom:664.560459pt;}
.y27_c00477{bottom:665.467659pt;}
.y28_c00477{bottom:665.759351pt;}
.y29_c00477{bottom:666.337861pt;}
.y2a_c00477{bottom:666.562593pt;}
.y2b_c00477{bottom:667.089701pt;}
.y2c_c00477{bottom:667.667912pt;}
.y2d_c00477{bottom:668.699020pt;}
.y1f_c00477{bottom:686.504868pt;}
.y1e_c00477{bottom:686.504880pt;}
.y22_c00477{bottom:686.505021pt;}
.y1d_c00477{bottom:686.505079pt;}
.y21_c00477{bottom:686.505193pt;}
.y23_c00477{bottom:686.505276pt;}
.y20_c00477{bottom:686.505309pt;}
.y24_c00477{bottom:686.505397pt;}
.y25_c00477{bottom:686.505865pt;}
.y1c_c00477{bottom:707.911259pt;}
.y1b_c00477{bottom:707.911692pt;}
.y12_c00477{bottom:725.281333pt;}
.y13_c00477{bottom:725.514661pt;}
.y14_c00477{bottom:725.793325pt;}
.y15_c00477{bottom:725.992081pt;}
.y16_c00477{bottom:726.177625pt;}
.y17_c00477{bottom:726.612073pt;}
.y18_c00477{bottom:726.916393pt;}
.y19_c00477{bottom:727.445881pt;}
.y1a_c00477{bottom:727.612189pt;}
.yb_c00477{bottom:761.319236pt;}
.yc_c00477{bottom:763.752607pt;}
.yd_c00477{bottom:764.592855pt;}
.ye_c00477{bottom:765.021183pt;}
.yf_c00477{bottom:766.623683pt;}
.y10_c00477{bottom:767.679097pt;}
.y11_c00477{bottom:768.639715pt;}
.y9_c00477{bottom:801.370927pt;}
.ya_c00477{bottom:804.802788pt;}
.y1_c00477{bottom:811.697333pt;}
.y2_c00477{bottom:813.581920pt;}
.y3_c00477{bottom:816.368565pt;}
.y4_c00477{bottom:818.024075pt;}
.y5_c00477{bottom:819.422176pt;}
.y6_c00477{bottom:820.020363pt;}
.y7_c00477{bottom:821.277536pt;}
.y8_c00477{bottom:822.497803pt;}
.hf_c00477{height:41.066667pt;}
.h13_c00477{height:42.000000pt;}
.he_c00477{height:42.933333pt;}
.h14_c00477{height:43.866667pt;}
.h12_c00477{height:45.733333pt;}
.h10_c00477{height:47.600000pt;}
.h11_c00477{height:49.466667pt;}
.h8_c00477{height:55.068897pt;}
.ha_c00477{height:56.002268pt;}
.hb_c00477{height:59.735752pt;}
.h9_c00477{height:60.669124pt;}
.h7_c00477{height:61.602495pt;}
.h6_c00477{height:62.535866pt;}
.h2_c00477{height:63.435719pt;}
.h15_c00477{height:63.466667pt;}
.h5_c00477{height:63.469237pt;}
.hc_c00477{height:65.335979pt;}
.hd_c00477{height:81.203289pt;}
.h4_c00477{height:97.952213pt;}
.h3_c00477{height:113.811143pt;}
.h0_c00477{height:896.400000pt;}
.h1_c00477{height:896.666667pt;}
.w1_c00477{width:622.666667pt;}
.w0_c00477{width:622.800000pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:79.272000pt;}
.xa_c00477{left:119.748019pt;}
.x78_c00477{left:121.440000pt;}
.x6e_c00477{left:131.280000pt;}
.x86_c00477{left:134.160000pt;}
.x2_c00477{left:138.106440pt;}
.xa8_c00477{left:139.133333pt;}
.x9f_c00477{left:141.360000pt;}
.x8d_c00477{left:146.640000pt;}
.x79_c00477{left:148.560000pt;}
.x11_c00477{left:151.544000pt;}
.x81_c00477{left:155.520000pt;}
.x68_c00477{left:157.671633pt;}
.x3d_c00477{left:163.438824pt;}
.x37_c00477{left:168.181808pt;}
.x9a_c00477{left:172.080000pt;}
.x45_c00477{left:173.277124pt;}
.x28_c00477{left:174.242437pt;}
.x8e_c00477{left:176.160000pt;}
.x12_c00477{left:177.469333pt;}
.xa0_c00477{left:180.240000pt;}
.x69_c00477{left:181.191711pt;}
.x6f_c00477{left:183.600000pt;}
.x87_c00477{left:184.800000pt;}
.x58_c00477{left:185.755331pt;}
.x1b_c00477{left:188.882651pt;}
.x64_c00477{left:191.033877pt;}
.x2f_c00477{left:192.078676pt;}
.x53_c00477{left:193.675088pt;}
.x7a_c00477{left:197.520000pt;}
.x46_c00477{left:200.878023pt;}
.xb_c00477{left:206.537580pt;}
.x13_c00477{left:208.432000pt;}
.x38_c00477{left:211.138543pt;}
.x88_c00477{left:212.400000pt;}
.x29_c00477{left:215.044404pt;}
.x22_c00477{left:216.642219pt;}
.x30_c00477{left:219.449091pt;}
.x4f_c00477{left:220.798660pt;}
.x70_c00477{left:223.680000pt;}
.x3_c00477{left:225.102024pt;}
.x3e_c00477{left:228.001389pt;}
.x14_c00477{left:230.516000pt;}
.x47_c00477{left:232.799269pt;}
.x59_c00477{left:235.436684pt;}
.xc_c00477{left:236.515416pt;}
.x23_c00477{left:237.495949pt;}
.x65_c00477{left:238.556396pt;}
.x39_c00477{left:241.170520pt;}
.x7b_c00477{left:245.760000pt;}
.xa1_c00477{left:249.360000pt;}
.x8f_c00477{left:250.800000pt;}
.xd_c00477{left:251.802079pt;}
.x5d_c00477{left:258.095908pt;}
.x66_c00477{left:260.636851pt;}
.x6a_c00477{left:261.594227pt;}
.x1c_c00477{left:262.565948pt;}
.x31_c00477{left:264.364683pt;}
.xa9_c00477{left:266.430667pt;}
.x50_c00477{left:267.361095pt;}
.x2a_c00477{left:268.566069pt;}
.x82_c00477{left:270.000000pt;}
.x27_c00477{left:270.966641pt;}
.x61_c00477{left:272.875856pt;}
.x48_c00477{left:275.041356pt;}
.x4_c00477{left:276.784956pt;}
.x5a_c00477{left:277.678771pt;}
.x24_c00477{left:278.810089pt;}
.x54_c00477{left:279.839393pt;}
.x7c_c00477{left:281.760000pt;}
.xa2_c00477{left:284.400000pt;}
.x71_c00477{left:288.960000pt;}
.x19_c00477{left:292.566403pt;}
.x25_c00477{left:294.890703pt;}
.x3f_c00477{left:295.924231pt;}
.xa3_c00477{left:296.880000pt;}
.x15_c00477{left:299.404000pt;}
.x4d_c00477{left:301.303829pt;}
.x2b_c00477{left:302.647496pt;}
.xe_c00477{left:308.948179pt;}
.x3a_c00477{left:311.979328pt;}
.x40_c00477{left:314.644409pt;}
.x32_c00477{left:316.444215pt;}
.x5_c00477{left:320.431932pt;}
.x3b_c00477{left:322.064205pt;}
.x90_c00477{left:325.920000pt;}
.x49_c00477{left:327.842961pt;}
.x55_c00477{left:328.800687pt;}
.x89_c00477{left:330.480000pt;}
.x16_c00477{left:333.217333pt;}
.x62_c00477{left:334.798205pt;}
.x8a_c00477{left:337.440000pt;}
.x6_c00477{left:339.106572pt;}
.x33_c00477{left:340.205332pt;}
.xaa_c00477{left:341.174667pt;}
.x9_c00477{left:343.356783pt;}
.x4a_c00477{left:345.603068pt;}
.xf_c00477{left:346.600648pt;}
.x67_c00477{left:347.999931pt;}
.x5b_c00477{left:348.961876pt;}
.x5e_c00477{left:350.704736pt;}
.xa4_c00477{left:353.520000pt;}
.x2c_c00477{left:354.489029pt;}
.x1d_c00477{left:355.449472pt;}
.x83_c00477{left:358.560000pt;}
.x51_c00477{left:360.004595pt;}
.x7d_c00477{left:361.680000pt;}
.x41_c00477{left:364.805811pt;}
.x4b_c00477{left:368.883619pt;}
.x56_c00477{left:370.322713pt;}
.x34_c00477{left:371.895711pt;}
.x1e_c00477{left:373.209579pt;}
.x8b_c00477{left:374.880000pt;}
.x63_c00477{left:376.320232pt;}
.x7_c00477{left:378.353952pt;}
.x10_c00477{left:380.877403pt;}
.x6c_c00477{left:382.557712pt;}
.x6b_c00477{left:386.877712pt;}
.x8c_c00477{left:388.800000pt;}
.x5c_c00477{left:389.763843pt;}
.x17_c00477{left:392.049333pt;}
.x3c_c00477{left:395.924881pt;}
.x91_c00477{left:396.960000pt;}
.x1f_c00477{left:399.610381pt;}
.x5f_c00477{left:401.135859pt;}
.x35_c00477{left:405.008744pt;}
.x4e_c00477{left:406.904777pt;}
.x57_c00477{left:409.204524pt;}
.x18_c00477{left:410.528000pt;}
.x4c_c00477{left:412.565825pt;}
.x9b_c00477{left:414.960000pt;}
.x8_c00477{left:416.449152pt;}
.x7e_c00477{left:418.800000pt;}
.x6d_c00477{left:421.199511pt;}
.x20_c00477{left:424.811088pt;}
.x9c_c00477{left:427.680000pt;}
.x36_c00477{left:433.801813pt;}
.x2d_c00477{left:435.131557pt;}
.x7f_c00477{left:436.320000pt;}
.xab_c00477{left:438.105333pt;}
.x42_c00477{left:439.207847pt;}
.x72_c00477{left:441.600000pt;}
.x95_c00477{left:443.040000pt;}
.x60_c00477{left:446.496267pt;}
.x26_c00477{left:447.523839pt;}
.x1a_c00477{left:450.012492pt;}
.x52_c00477{left:456.967109pt;}
.x92_c00477{left:458.400000pt;}
.x73_c00477{left:459.840000pt;}
.x43_c00477{left:462.248385pt;}
.x21_c00477{left:467.533211pt;}
.x74_c00477{left:473.280000pt;}
.x2e_c00477{left:476.413572pt;}
.x9d_c00477{left:481.200000pt;}
.xa5_c00477{left:485.040000pt;}
.x96_c00477{left:487.680000pt;}
.x84_c00477{left:490.560000pt;}
.x93_c00477{left:491.520000pt;}
.x9e_c00477{left:493.200000pt;}
.x75_c00477{left:500.640000pt;}
.x44_c00477{left:503.050352pt;}
.x97_c00477{left:504.000000pt;}
.xa6_c00477{left:505.440000pt;}
.x85_c00477{left:509.760000pt;}
.x76_c00477{left:511.440000pt;}
.x80_c00477{left:517.920000pt;}
.x98_c00477{left:522.960000pt;}
.x94_c00477{left:525.600000pt;}
.x77_c00477{left:528.000000pt;}
.xa7_c00477{left:530.640000pt;}
.x99_c00477{left:532.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m39_c00478{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00478{transform:matrix(0.045643,-0.000411,0.002250,0.249990,0,0);-ms-transform:matrix(0.045643,-0.000411,0.002250,0.249990,0,0);-webkit-transform:matrix(0.045643,-0.000411,0.002250,0.249990,0,0);}
.m14_c00478{transform:matrix(0.047130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047130,0.000000,0.000000,0.250000,0,0);}
.m49_c00478{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);}
.m4_c00478{transform:matrix(0.094292,0.001226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.094292,0.001226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.094292,0.001226,-0.003250,0.249979,0,0);}
.m1c_c00478{transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097705,0.000000,0.000000,0.250000,0,0);}
.m3a_c00478{transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);}
.mc8_c00478{transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.123100,0.001600,-0.003250,0.249979,0,0);-ms-transform:matrix(0.123100,0.001600,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.123100,0.001600,-0.003250,0.249979,0,0);}
.m2a_c00478{transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139630,0.000000,0.000000,0.250000,0,0);}
.m3b_c00478{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149110,0.000000,0.000000,0.250000,0,0);}
.m23_c00478{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);}
.m9c_c00478{transform:matrix(0.154519,-0.001391,0.002250,0.249990,0,0);-ms-transform:matrix(0.154519,-0.001391,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154519,-0.001391,0.002250,0.249990,0,0);}
.m57_c00478{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);}
.ma1_c00478{transform:matrix(0.158279,-0.001425,0.002250,0.249990,0,0);-ms-transform:matrix(0.158279,-0.001425,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158279,-0.001425,0.002250,0.249990,0,0);}
.m2_c00478{transform:matrix(0.158717,0.002063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158717,0.002063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158717,0.002063,-0.003250,0.249979,0,0);}
.m46_c00478{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);}
.ma_c00478{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);}
.mc_c00478{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00478{transform:matrix(0.160663,-0.001446,0.002250,0.249990,0,0);-ms-transform:matrix(0.160663,-0.001446,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160663,-0.001446,0.002250,0.249990,0,0);}
.m26_c00478{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);}
.m3c_c00478{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);}
.m20_c00478{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);}
.m4d_c00478{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);}
.m62_c00478{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);}
.m51_c00478{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);}
.m24_c00478{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);}
.m6b_c00478{transform:matrix(0.168461,-0.001179,0.001750,0.249994,0,0);-ms-transform:matrix(0.168461,-0.001179,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168461,-0.001179,0.001750,0.249994,0,0);}
.mcb_c00478{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);}
.m48_c00478{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);}
.m27_c00478{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);}
.m30_c00478{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);}
.m3f_c00478{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);}
.m44_c00478{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);}
.m4a_c00478{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);}
.m47_c00478{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);}
.m84_c00478{transform:matrix(0.175331,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175331,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175331,-0.001227,0.001750,0.249994,0,0);}
.m99_c00478{transform:matrix(0.176093,-0.001585,0.002250,0.249990,0,0);-ms-transform:matrix(0.176093,-0.001585,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176093,-0.001585,0.002250,0.249990,0,0);}
.m76_c00478{transform:matrix(0.176641,-0.001236,0.001750,0.249994,0,0);-ms-transform:matrix(0.176641,-0.001236,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176641,-0.001236,0.001750,0.249994,0,0);}
.mc6_c00478{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);}
.m4b_c00478{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);}
.mc2_c00478{transform:matrix(0.180973,-0.001629,0.002250,0.249990,0,0);-ms-transform:matrix(0.180973,-0.001629,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180973,-0.001629,0.002250,0.249990,0,0);}
.m96_c00478{transform:matrix(0.181513,-0.001634,0.002250,0.249990,0,0);-ms-transform:matrix(0.181513,-0.001634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181513,-0.001634,0.002250,0.249990,0,0);}
.ma4_c00478{transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-ms-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181818,-0.001636,0.002250,0.249990,0,0);}
.m8f_c00478{transform:matrix(0.181858,-0.001637,0.002250,0.249990,0,0);-ms-transform:matrix(0.181858,-0.001637,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181858,-0.001637,0.002250,0.249990,0,0);}
.m45_c00478{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);}
.m7e_c00478{transform:matrix(0.183206,-0.001282,0.001750,0.249994,0,0);-ms-transform:matrix(0.183206,-0.001282,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183206,-0.001282,0.001750,0.249994,0,0);}
.m54_c00478{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);}
.m2d_c00478{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{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);}
.m8d_c00478{transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187847,-0.001691,0.002250,0.249990,0,0);}
.m91_c00478{transform:matrix(0.187937,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187937,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187937,-0.001691,0.002250,0.249990,0,0);}
.m71_c00478{transform:matrix(0.187955,-0.001316,0.001750,0.249994,0,0);-ms-transform:matrix(0.187955,-0.001316,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187955,-0.001316,0.001750,0.249994,0,0);}
.m7c_c00478{transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);-ms-transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188590,-0.001320,0.001750,0.249994,0,0);}
.m59_c00478{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_c00478{transform:matrix(0.189347,-0.001704,0.002250,0.249990,0,0);-ms-transform:matrix(0.189347,-0.001704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189347,-0.001704,0.002250,0.249990,0,0);}
.mc5_c00478{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);}
.m5c_c00478{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);}
.m90_c00478{transform:matrix(0.189902,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189902,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189902,-0.001709,0.002250,0.249990,0,0);}
.m95_c00478{transform:matrix(0.190432,-0.001714,0.002250,0.249990,0,0);-ms-transform:matrix(0.190432,-0.001714,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190432,-0.001714,0.002250,0.249990,0,0);}
.m42_c00478{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_c00478{transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);-ms-transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191660,-0.001342,0.001750,0.249994,0,0);}
.m5a_c00478{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);}
.m75_c00478{transform:matrix(0.192540,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192540,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192540,-0.001348,0.001750,0.249994,0,0);}
.m10_c00478{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);}
.m85_c00478{transform:matrix(0.192955,-0.001351,0.001750,0.249994,0,0);-ms-transform:matrix(0.192955,-0.001351,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192955,-0.001351,0.001750,0.249994,0,0);}
.ma5_c00478{transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);}
.m86_c00478{transform:matrix(0.193780,-0.001356,0.001750,0.249994,0,0);-ms-transform:matrix(0.193780,-0.001356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193780,-0.001356,0.001750,0.249994,0,0);}
.mc0_c00478{transform:matrix(0.195672,-0.001761,0.002250,0.249990,0,0);-ms-transform:matrix(0.195672,-0.001761,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195672,-0.001761,0.002250,0.249990,0,0);}
.m52_c00478{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);}
.m8b_c00478{transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);}
.m53_c00478{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_c00478{transform:matrix(0.196455,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196455,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196455,-0.001375,0.001750,0.249994,0,0);}
.m70_c00478{transform:matrix(0.196975,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.196975,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196975,-0.001379,0.001750,0.249994,0,0);}
.m66_c00478{transform:matrix(0.197010,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.197010,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197010,-0.001379,0.001750,0.249994,0,0);}
.m82_c00478{transform:matrix(0.197780,-0.001384,0.001750,0.249994,0,0);-ms-transform:matrix(0.197780,-0.001384,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197780,-0.001384,0.001750,0.249994,0,0);}
.m6_c00478{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);}
.maa_c00478{transform:matrix(0.198547,-0.001787,0.002250,0.249990,0,0);-ms-transform:matrix(0.198547,-0.001787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198547,-0.001787,0.002250,0.249990,0,0);}
.m6f_c00478{transform:matrix(0.198680,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198680,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198680,-0.001391,0.001750,0.249994,0,0);}
.m4f_c00478{transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);}
.m92_c00478{transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);-ms-transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);}
.mc7_c00478{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);}
.m2f_c00478{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);}
.ma3_c00478{transform:matrix(0.200097,-0.001801,0.002250,0.249990,0,0);-ms-transform:matrix(0.200097,-0.001801,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200097,-0.001801,0.002250,0.249990,0,0);}
.m6d_c00478{transform:matrix(0.200300,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200300,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200300,-0.001402,0.001750,0.249994,0,0);}
.m16_c00478{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);}
.m3e_c00478{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);}
.m5b_c00478{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);}
.m7a_c00478{transform:matrix(0.203305,-0.001423,0.001750,0.249994,0,0);-ms-transform:matrix(0.203305,-0.001423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203305,-0.001423,0.001750,0.249994,0,0);}
.m87_c00478{transform:matrix(0.203620,-0.001425,0.001750,0.249994,0,0);-ms-transform:matrix(0.203620,-0.001425,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203620,-0.001425,0.001750,0.249994,0,0);}
.m43_c00478{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);}
.m4c_c00478{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);}
.m6c_c00478{transform:matrix(0.205200,-0.001436,0.001750,0.249994,0,0);-ms-transform:matrix(0.205200,-0.001436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205200,-0.001436,0.001750,0.249994,0,0);}
.m2e_c00478{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);}
.m41_c00478{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);}
.m28_c00478{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);}
.m18_c00478{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);}
.m4e_c00478{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);}
.mac_c00478{transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206532,-0.001859,0.002250,0.249990,0,0);}
.m97_c00478{transform:matrix(0.207577,-0.001868,0.002250,0.249990,0,0);-ms-transform:matrix(0.207577,-0.001868,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207577,-0.001868,0.002250,0.249990,0,0);}
.m1b_c00478{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);}
.m3d_c00478{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);}
.m6a_c00478{transform:matrix(0.208890,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208890,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208890,-0.001462,0.001750,0.249994,0,0);}
.m9a_c00478{transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);-ms-transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209737,-0.001888,0.002250,0.249990,0,0);}
.m89_c00478{transform:matrix(0.209750,-0.001468,0.001750,0.249994,0,0);-ms-transform:matrix(0.209750,-0.001468,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209750,-0.001468,0.001750,0.249994,0,0);}
.mc3_c00478{transform:matrix(0.210051,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.210051,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210051,-0.001890,0.002250,0.249990,0,0);}
.m50_c00478{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);}
.mca_c00478{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);}
.m22_c00478{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);}
.m9b_c00478{transform:matrix(0.211301,-0.001902,0.002250,0.249990,0,0);-ms-transform:matrix(0.211301,-0.001902,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211301,-0.001902,0.002250,0.249990,0,0);}
.m7b_c00478{transform:matrix(0.211615,-0.001481,0.001750,0.249994,0,0);-ms-transform:matrix(0.211615,-0.001481,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211615,-0.001481,0.001750,0.249994,0,0);}
.m77_c00478{transform:matrix(0.213565,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213565,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213565,-0.001495,0.001750,0.249994,0,0);}
.m11_c00478{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);}
.mb_c00478{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);}
.m83_c00478{transform:matrix(0.213760,-0.001496,0.001750,0.249994,0,0);-ms-transform:matrix(0.213760,-0.001496,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213760,-0.001496,0.001750,0.249994,0,0);}
.m69_c00478{transform:matrix(0.214120,-0.001499,0.001750,0.249994,0,0);-ms-transform:matrix(0.214120,-0.001499,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214120,-0.001499,0.001750,0.249994,0,0);}
.m9e_c00478{transform:matrix(0.214226,-0.001928,0.002250,0.249990,0,0);-ms-transform:matrix(0.214226,-0.001928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214226,-0.001928,0.002250,0.249990,0,0);}
.ma7_c00478{transform:matrix(0.215101,-0.001936,0.002250,0.249990,0,0);-ms-transform:matrix(0.215101,-0.001936,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215101,-0.001936,0.002250,0.249990,0,0);}
.m5d_c00478{transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);}
.mbd_c00478{transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);-ms-transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);}
.m55_c00478{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);}
.m78_c00478{transform:matrix(0.216980,-0.001519,0.001750,0.249994,0,0);-ms-transform:matrix(0.216980,-0.001519,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216980,-0.001519,0.001750,0.249994,0,0);}
.m34_c00478{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);}
.m58_c00478{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);}
.mbb_c00478{transform:matrix(0.219431,-0.001975,0.002250,0.249990,0,0);-ms-transform:matrix(0.219431,-0.001975,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219431,-0.001975,0.002250,0.249990,0,0);}
.m81_c00478{transform:matrix(0.219580,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219580,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219580,-0.001537,0.001750,0.249994,0,0);}
.m5f_c00478{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);}
.m9f_c00478{transform:matrix(0.220611,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220611,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220611,-0.001985,0.002250,0.249990,0,0);}
.me_c00478{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);}
.m8_c00478{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);}
.mb4_c00478{transform:matrix(0.223321,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223321,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223321,-0.002010,0.002250,0.249990,0,0);}
.m74_c00478{transform:matrix(0.223345,-0.001563,0.001750,0.249994,0,0);-ms-transform:matrix(0.223345,-0.001563,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223345,-0.001563,0.001750,0.249994,0,0);}
.m1f_c00478{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);}
.m1e_c00478{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);}
.m29_c00478{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);}
.m17_c00478{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);}
.mbf_c00478{transform:matrix(0.225396,-0.002029,0.002250,0.249990,0,0);-ms-transform:matrix(0.225396,-0.002029,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225396,-0.002029,0.002250,0.249990,0,0);}
.ma9_c00478{transform:matrix(0.227471,-0.002047,0.002250,0.249990,0,0);-ms-transform:matrix(0.227471,-0.002047,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227471,-0.002047,0.002250,0.249990,0,0);}
.ma6_c00478{transform:matrix(0.228061,-0.002053,0.002250,0.249990,0,0);-ms-transform:matrix(0.228061,-0.002053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228061,-0.002053,0.002250,0.249990,0,0);}
.mae_c00478{transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);-ms-transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228336,-0.002055,0.002250,0.249990,0,0);}
.m94_c00478{transform:matrix(0.228431,-0.002056,0.002250,0.249990,0,0);-ms-transform:matrix(0.228431,-0.002056,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228431,-0.002056,0.002250,0.249990,0,0);}
.m9_c00478{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);}
.m56_c00478{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);}
.mb1_c00478{transform:matrix(0.232956,-0.002097,0.002250,0.249990,0,0);-ms-transform:matrix(0.232956,-0.002097,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232956,-0.002097,0.002250,0.249990,0,0);}
.m33_c00478{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);}
.m73_c00478{transform:matrix(0.237594,-0.001663,0.001750,0.249994,0,0);-ms-transform:matrix(0.237594,-0.001663,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237594,-0.001663,0.001750,0.249994,0,0);}
.m36_c00478{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);}
.m93_c00478{transform:matrix(0.240015,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.240015,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240015,-0.002160,0.002250,0.249990,0,0);}
.m37_c00478{transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);}
.m38_c00478{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m7d_c00478{transform:matrix(0.242949,-0.001701,0.001750,0.249994,0,0);-ms-transform:matrix(0.242949,-0.001701,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242949,-0.001701,0.001750,0.249994,0,0);}
.mb7_c00478{transform:matrix(0.243160,-0.002188,0.002250,0.249990,0,0);-ms-transform:matrix(0.243160,-0.002188,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243160,-0.002188,0.002250,0.249990,0,0);}
.maf_c00478{transform:matrix(0.244065,-0.002197,0.002250,0.249990,0,0);-ms-transform:matrix(0.244065,-0.002197,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244065,-0.002197,0.002250,0.249990,0,0);}
.m9d_c00478{transform:matrix(0.245925,-0.002213,0.002250,0.249990,0,0);-ms-transform:matrix(0.245925,-0.002213,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245925,-0.002213,0.002250,0.249990,0,0);}
.mbc_c00478{transform:matrix(0.245975,-0.002214,0.002250,0.249990,0,0);-ms-transform:matrix(0.245975,-0.002214,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245975,-0.002214,0.002250,0.249990,0,0);}
.mbe_c00478{transform:matrix(0.249020,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.249020,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249020,-0.002241,0.002250,0.249990,0,0);}
.m1_c00478{transform:matrix(0.249244,0.003240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249244,0.003240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249244,0.003240,-0.003250,0.249979,0,0);}
.m40_c00478{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);}
.m2b_c00478{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);}
.m2c_c00478{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.mb3_c00478{transform:matrix(0.254815,-0.002293,0.002250,0.249990,0,0);-ms-transform:matrix(0.254815,-0.002293,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254815,-0.002293,0.002250,0.249990,0,0);}
.mb9_c00478{transform:matrix(0.255595,-0.002300,0.002250,0.249990,0,0);-ms-transform:matrix(0.255595,-0.002300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255595,-0.002300,0.002250,0.249990,0,0);}
.mba_c00478{transform:matrix(0.256110,-0.002305,0.002250,0.249990,0,0);-ms-transform:matrix(0.256110,-0.002305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256110,-0.002305,0.002250,0.249990,0,0);}
.m15_c00478{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00478{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.m6e_c00478{transform:matrix(0.263069,-0.001841,0.001750,0.249994,0,0);-ms-transform:matrix(0.263069,-0.001841,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263069,-0.001841,0.001750,0.249994,0,0);}
.m63_c00478{transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266220,0.000000,0.000000,0.250000,0,0);}
.m7f_c00478{transform:matrix(0.267168,-0.001870,0.001750,0.249994,0,0);-ms-transform:matrix(0.267168,-0.001870,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267168,-0.001870,0.001750,0.249994,0,0);}
.m67_c00478{transform:matrix(0.269028,-0.001883,0.001750,0.249994,0,0);-ms-transform:matrix(0.269028,-0.001883,0.001750,0.249994,0,0);-webkit-transform:matrix(0.269028,-0.001883,0.001750,0.249994,0,0);}
.mb0_c00478{transform:matrix(0.270749,-0.002437,0.002250,0.249990,0,0);-ms-transform:matrix(0.270749,-0.002437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270749,-0.002437,0.002250,0.249990,0,0);}
.m79_c00478{transform:matrix(0.270903,-0.001896,0.001750,0.249994,0,0);-ms-transform:matrix(0.270903,-0.001896,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270903,-0.001896,0.001750,0.249994,0,0);}
.m8a_c00478{transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);-ms-transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);}
.m98_c00478{transform:matrix(0.277539,-0.002498,0.002250,0.249990,0,0);-ms-transform:matrix(0.277539,-0.002498,0.002250,0.249990,0,0);-webkit-transform:matrix(0.277539,-0.002498,0.002250,0.249990,0,0);}
.mb5_c00478{transform:matrix(0.279344,-0.002514,0.002250,0.249990,0,0);-ms-transform:matrix(0.279344,-0.002514,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279344,-0.002514,0.002250,0.249990,0,0);}
.m19_c00478{transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283475,0.000000,0.000000,0.250000,0,0);}
.mb6_c00478{transform:matrix(0.283929,-0.002555,0.002250,0.249990,0,0);-ms-transform:matrix(0.283929,-0.002555,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283929,-0.002555,0.002250,0.249990,0,0);}
.m1d_c00478{transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);}
.mab_c00478{transform:matrix(0.297523,-0.002678,0.002250,0.249990,0,0);-ms-transform:matrix(0.297523,-0.002678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297523,-0.002678,0.002250,0.249990,0,0);}
.mcc_c00478{transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);}
.m21_c00478{transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298755,0.000000,0.000000,0.250000,0,0);}
.m5e_c00478{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);}
.mad_c00478{transform:matrix(0.323387,-0.002910,0.002250,0.249990,0,0);-ms-transform:matrix(0.323387,-0.002910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.323387,-0.002910,0.002250,0.249990,0,0);}
.m72_c00478{transform:matrix(0.323602,-0.002265,0.001750,0.249994,0,0);-ms-transform:matrix(0.323602,-0.002265,0.001750,0.249994,0,0);-webkit-transform:matrix(0.323602,-0.002265,0.001750,0.249994,0,0);}
.m8c_c00478{transform:matrix(0.332527,-0.002993,0.002250,0.249990,0,0);-ms-transform:matrix(0.332527,-0.002993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.332527,-0.002993,0.002250,0.249990,0,0);}
.m35_c00478{transform:matrix(0.335520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335520,0.000000,0.000000,0.250000,0,0);}
.mc4_c00478{transform:matrix(0.350981,-0.003159,0.002250,0.249990,0,0);-ms-transform:matrix(0.350981,-0.003159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.350981,-0.003159,0.002250,0.249990,0,0);}
.m13_c00478{transform:matrix(0.359085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359085,0.000000,0.000000,0.250000,0,0);}
.mb8_c00478{transform:matrix(0.360980,-0.003249,0.002250,0.249990,0,0);-ms-transform:matrix(0.360980,-0.003249,0.002250,0.249990,0,0);-webkit-transform:matrix(0.360980,-0.003249,0.002250,0.249990,0,0);}
.m1a_c00478{transform:matrix(0.366050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366050,0.000000,0.000000,0.250000,0,0);}
.m88_c00478{transform:matrix(0.371736,-0.002602,0.001750,0.249994,0,0);-ms-transform:matrix(0.371736,-0.002602,0.001750,0.249994,0,0);-webkit-transform:matrix(0.371736,-0.002602,0.001750,0.249994,0,0);}
.m64_c00478{transform:matrix(0.378835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378835,0.000000,0.000000,0.250000,0,0);}
.ma2_c00478{transform:matrix(0.379135,-0.003412,0.002250,0.249990,0,0);-ms-transform:matrix(0.379135,-0.003412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.379135,-0.003412,0.002250,0.249990,0,0);}
.mc1_c00478{transform:matrix(0.381305,-0.003432,0.002250,0.249990,0,0);-ms-transform:matrix(0.381305,-0.003432,0.002250,0.249990,0,0);-webkit-transform:matrix(0.381305,-0.003432,0.002250,0.249990,0,0);}
.ma8_c00478{transform:matrix(0.387184,-0.003485,0.002250,0.249990,0,0);-ms-transform:matrix(0.387184,-0.003485,0.002250,0.249990,0,0);-webkit-transform:matrix(0.387184,-0.003485,0.002250,0.249990,0,0);}
.mc9_c00478{transform:matrix(0.415025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415025,0.000000,0.000000,0.250000,0,0);}
.m65_c00478{transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415695,0.000000,0.000000,0.250000,0,0);}
.m25_c00478{transform:matrix(0.424975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424975,0.000000,0.000000,0.250000,0,0);}
.mce_c00478{transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451440,0.000000,0.000000,0.250000,0,0);}
.m61_c00478{transform:matrix(0.507065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507065,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.525246,0.006828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.525246,0.006828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.525246,0.006828,-0.003250,0.249979,0,0);}
.m31_c00478{transform:matrix(0.539265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539265,0.000000,0.000000,0.250000,0,0);}
.m32_c00478{transform:matrix(0.555925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555925,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.890625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890625,0.000000,0.000000,0.250000,0,0);}
.m60_c00478{transform:matrix(0.942700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942700,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;}
.fsb_c00478{font-size:21.000000px;}
.fsd_c00478{font-size:22.050000px;}
.fsc_c00478{font-size:24.150000px;}
.fs12_c00478{font-size:46.201871px;}
.fs13_c00478{font-size:47.251914px;}
.fse_c00478{font-size:50.401235px;}
.fs11_c00478{font-size:50.402041px;}
.fsf_c00478{font-size:51.451261px;}
.fs10_c00478{font-size:52.502126px;}
.fs14_c00478{font-size:57.750000px;}
.fs4_c00478{font-size:60.900000px;}
.fs15_c00478{font-size:64.050000px;}
.fs5_c00478{font-size:68.250000px;}
.fs9_c00478{font-size:69.300000px;}
.fsa_c00478{font-size:70.350000px;}
.fs6_c00478{font-size:71.400000px;}
.fs3_c00478{font-size:73.500000px;}
.fs2_c00478{font-size:74.550000px;}
.fs7_c00478{font-size:98.700000px;}
.fs8_c00478{font-size:120.750000px;}
.fs1_c00478{font-size:158.563397px;}
.fs0_c00478{font-size:219.450000px;}
.y0_c00478{bottom:0.000000px;}
.y7b_c00478{bottom:133.164000px;}
.y7a_c00478{bottom:162.241500px;}
.y70_c00478{bottom:178.460813px;}
.y71_c00478{bottom:178.846754px;}
.y72_c00478{bottom:179.954771px;}
.y73_c00478{bottom:180.559395px;}
.y74_c00478{bottom:181.070674px;}
.y75_c00478{bottom:181.237554px;}
.y76_c00478{bottom:181.759029px;}
.y77_c00478{bottom:181.969785px;}
.y78_c00478{bottom:182.180717px;}
.y79_c00478{bottom:183.533657px;}
.y60_c00478{bottom:195.748653px;}
.y61_c00478{bottom:195.938984px;}
.y62_c00478{bottom:196.229529px;}
.y63_c00478{bottom:196.454696px;}
.y64_c00478{bottom:197.031170px;}
.y65_c00478{bottom:197.280222px;}
.y66_c00478{bottom:197.612531px;}
.y67_c00478{bottom:198.332279px;}
.y68_c00478{bottom:198.494538px;}
.y69_c00478{bottom:198.728522px;}
.y6a_c00478{bottom:199.188726px;}
.y6b_c00478{bottom:199.368188px;}
.y6c_c00478{bottom:199.918346px;}
.y6d_c00478{bottom:200.330805px;}
.y6e_c00478{bottom:200.523431px;}
.y6f_c00478{bottom:200.678277px;}
.y4e_c00478{bottom:213.840051px;}
.y4f_c00478{bottom:214.131099px;}
.y50_c00478{bottom:214.293588px;}
.y51_c00478{bottom:214.784552px;}
.y52_c00478{bottom:214.892630px;}
.y53_c00478{bottom:215.213529px;}
.y54_c00478{bottom:215.591283px;}
.y55_c00478{bottom:215.714955px;}
.y56_c00478{bottom:216.081152px;}
.y57_c00478{bottom:216.189311px;}
.y58_c00478{bottom:216.348857px;}
.y59_c00478{bottom:216.687377px;}
.y5a_c00478{bottom:216.819920px;}
.y5b_c00478{bottom:217.140630px;}
.y5c_c00478{bottom:217.351359px;}
.y5d_c00478{bottom:217.781553px;}
.y5e_c00478{bottom:217.852139px;}
.y5f_c00478{bottom:218.183920px;}
.y41_c00478{bottom:231.121500px;}
.y42_c00478{bottom:231.281610px;}
.y43_c00478{bottom:231.697127px;}
.y44_c00478{bottom:232.136943px;}
.y45_c00478{bottom:232.311984px;}
.y46_c00478{bottom:232.671516px;}
.y47_c00478{bottom:232.851242px;}
.y48_c00478{bottom:233.500281px;}
.y49_c00478{bottom:233.697057px;}
.y4a_c00478{bottom:233.913449px;}
.y4b_c00478{bottom:234.161187px;}
.y4c_c00478{bottom:234.394737px;}
.y4d_c00478{bottom:234.934589px;}
.y3d_c00478{bottom:250.425576px;}
.y3e_c00478{bottom:250.425696px;}
.y3a_c00478{bottom:250.425938px;}
.y3c_c00478{bottom:250.425946px;}
.y39_c00478{bottom:250.426038px;}
.y3f_c00478{bottom:250.426146px;}
.y3b_c00478{bottom:250.426437px;}
.y40_c00478{bottom:250.426855px;}
.y2c_c00478{bottom:267.028939px;}
.y2d_c00478{bottom:267.223589px;}
.y2e_c00478{bottom:267.637688px;}
.y2f_c00478{bottom:267.707439px;}
.y30_c00478{bottom:268.013640px;}
.y31_c00478{bottom:268.344369px;}
.y32_c00478{bottom:268.453831px;}
.y33_c00478{bottom:268.784970px;}
.y34_c00478{bottom:269.068260px;}
.y35_c00478{bottom:269.181755px;}
.y36_c00478{bottom:269.654244px;}
.y37_c00478{bottom:269.990601px;}
.y38_c00478{bottom:270.279813px;}
.y1b_c00478{bottom:284.580000px;}
.y1c_c00478{bottom:284.719839px;}
.y1d_c00478{bottom:284.795429px;}
.y1e_c00478{bottom:285.042892px;}
.y1f_c00478{bottom:285.456781px;}
.y20_c00478{bottom:285.605945px;}
.y21_c00478{bottom:285.734590px;}
.y22_c00478{bottom:285.916209px;}
.y23_c00478{bottom:286.426404px;}
.y24_c00478{bottom:286.592682px;}
.y25_c00478{bottom:286.868685px;}
.y26_c00478{bottom:286.974704px;}
.y27_c00478{bottom:287.209043px;}
.y28_c00478{bottom:287.303511px;}
.y29_c00478{bottom:287.441292px;}
.y2a_c00478{bottom:287.626627px;}
.y2b_c00478{bottom:287.832658px;}
.y1a_c00478{bottom:450.096000px;}
.y19_c00478{bottom:450.759000px;}
.y18_c00478{bottom:453.060000px;}
.y17_c00478{bottom:497.182500px;}
.y16_c00478{bottom:520.491000px;}
.y15_c00478{bottom:543.688500px;}
.y14_c00478{bottom:566.257500px;}
.y13_c00478{bottom:586.578000px;}
.y12_c00478{bottom:611.694000px;}
.y11_c00478{bottom:634.749000px;}
.y10_c00478{bottom:657.648000px;}
.yf_c00478{bottom:679.617000px;}
.ye_c00478{bottom:702.780000px;}
.yd_c00478{bottom:725.923500px;}
.yc_c00478{bottom:748.735500px;}
.y8_c00478{bottom:769.773000px;}
.y9_c00478{bottom:770.596500px;}
.ya_c00478{bottom:771.180000px;}
.yb_c00478{bottom:772.060500px;}
.y7_c00478{bottom:794.454000px;}
.y6_c00478{bottom:858.369956px;}
.y5_c00478{bottom:859.165887px;}
.y4_c00478{bottom:860.155902px;}
.y3_c00478{bottom:861.170292px;}
.y2_c00478{bottom:864.004500px;}
.y1_c00478{bottom:904.263000px;}
.hd_c00478{height:21.000000px;}
.hf_c00478{height:22.050000px;}
.he_c00478{height:24.150000px;}
.h14_c00478{height:46.201871px;}
.h15_c00478{height:47.251914px;}
.h10_c00478{height:50.401235px;}
.h13_c00478{height:50.402041px;}
.h11_c00478{height:51.451261px;}
.h12_c00478{height:52.502126px;}
.h16_c00478{height:57.750000px;}
.h6_c00478{height:60.900000px;}
.h17_c00478{height:64.050000px;}
.h7_c00478{height:68.250000px;}
.hb_c00478{height:69.300000px;}
.hc_c00478{height:70.350000px;}
.h8_c00478{height:71.400000px;}
.h5_c00478{height:73.500000px;}
.h4_c00478{height:74.550000px;}
.h9_c00478{height:98.700000px;}
.ha_c00478{height:120.750000px;}
.h3_c00478{height:158.563397px;}
.h2_c00478{height:219.450000px;}
.h1_c00478{height:1005.000000px;}
.h0_c00478{height:1005.150000px;}
.w0_c00478{width:715.200000px;}
.w1_c00478{width:715.500000px;}
.x0_c00478{left:0.000000px;}
.x4d_c00478{left:104.856000px;}
.x76_c00478{left:105.946938px;}
.x63_c00478{left:122.401500px;}
.x4e_c00478{left:124.833000px;}
.x5b_c00478{left:132.634350px;}
.x6b_c00478{left:134.277804px;}
.x4f_c00478{left:135.631500px;}
.x2b_c00478{left:138.241500px;}
.x1a_c00478{left:139.861500px;}
.x7_c00478{left:141.750000px;}
.x6c_c00478{left:150.498656px;}
.x7f_c00478{left:157.410000px;}
.x33_c00478{left:164.431500px;}
.x40_c00478{left:165.781500px;}
.x64_c00478{left:168.570000px;}
.x8_c00478{left:169.830000px;}
.x50_c00478{left:170.983500px;}
.x2_c00478{left:174.612000px;}
.x44_c00478{left:176.581500px;}
.x24_c00478{left:182.791500px;}
.x37_c00478{left:186.031500px;}
.x5c_c00478{left:191.791350px;}
.x2d_c00478{left:193.321500px;}
.x6d_c00478{left:199.549710px;}
.x9_c00478{left:200.610000px;}
.x5d_c00478{left:201.755850px;}
.x1b_c00478{left:206.821500px;}
.x6e_c00478{left:210.391616px;}
.x4c_c00478{left:211.410000px;}
.x45_c00478{left:214.381500px;}
.x1c_c00478{left:216.541500px;}
.x60_c00478{left:220.591734px;}
.x77_c00478{left:222.613346px;}
.x41_c00478{left:229.501500px;}
.x38_c00478{left:235.711500px;}
.x65_c00478{left:236.887500px;}
.xf_c00478{left:242.383500px;}
.x34_c00478{left:245.161500px;}
.x25_c00478{left:246.511500px;}
.x1_c00478{left:251.370000px;}
.x39_c00478{left:254.611500px;}
.x49_c00478{left:263.520000px;}
.x61_c00478{left:265.952460px;}
.x51_c00478{left:269.797500px;}
.x4a_c00478{left:271.350000px;}
.x23_c00478{left:274.321500px;}
.x78_c00478{left:275.541401px;}
.x66_c00478{left:276.835500px;}
.x6f_c00478{left:280.352495px;}
.xa_c00478{left:284.580000px;}
.x4b_c00478{left:291.060000px;}
.x2c_c00478{left:292.141500px;}
.x1d_c00478{left:294.301500px;}
.x52_c00478{left:295.743000px;}
.x67_c00478{left:296.805000px;}
.x46_c00478{left:297.811500px;}
.x11_c00478{left:301.591500px;}
.x7d_c00478{left:303.082494px;}
.x10_c00478{left:305.304000px;}
.x31_c00478{left:307.261500px;}
.xb_c00478{left:309.150000px;}
.x3a_c00478{left:313.471500px;}
.x35_c00478{left:315.361500px;}
.x13_c00478{left:322.111500px;}
.x2e_c00478{left:324.541500px;}
.x42_c00478{left:325.621500px;}
.x80_c00478{left:326.700000px;}
.x70_c00478{left:329.448562px;}
.x12_c00478{left:337.501500px;}
.x14_c00478{left:340.471500px;}
.x2f_c00478{left:341.551500px;}
.x1e_c00478{left:347.221500px;}
.xc_c00478{left:350.730000px;}
.x7e_c00478{left:351.810000px;}
.x26_c00478{left:353.971500px;}
.x3b_c00478{left:355.861500px;}
.x32_c00478{left:359.911500px;}
.x15_c00478{left:364.771500px;}
.x27_c00478{left:366.391500px;}
.x53_c00478{left:368.628000px;}
.x47_c00478{left:370.441500px;}
.x3c_c00478{left:371.521500px;}
.xd_c00478{left:377.460000px;}
.x28_c00478{left:382.051500px;}
.x1f_c00478{left:385.291500px;}
.x16_c00478{left:387.721500px;}
.x68_c00478{left:390.784500px;}
.x3_c00478{left:392.628000px;}
.x5e_c00478{left:396.158850px;}
.x48_c00478{left:399.601500px;}
.x71_c00478{left:403.199888px;}
.x43_c00478{left:406.081500px;}
.x20_c00478{left:412.021500px;}
.xe_c00478{left:413.370000px;}
.x69_c00478{left:414.828000px;}
.x79_c00478{left:418.838322px;}
.x30_c00478{left:420.121500px;}
.x62_c00478{left:424.447220px;}
.x36_c00478{left:426.331500px;}
.x17_c00478{left:428.221500px;}
.x54_c00478{left:431.811000px;}
.x72_c00478{left:435.334104px;}
.x3d_c00478{left:437.671500px;}
.x6a_c00478{left:442.354500px;}
.x55_c00478{left:446.956500px;}
.x29_c00478{left:452.521500px;}
.x73_c00478{left:456.414915px;}
.x3e_c00478{left:467.911500px;}
.x21_c00478{left:469.531500px;}
.x4_c00478{left:470.658000px;}
.x18_c00478{left:477.091500px;}
.x56_c00478{left:480.433500px;}
.x7a_c00478{left:485.072621px;}
.x2a_c00478{left:490.051500px;}
.x22_c00478{left:491.401500px;}
.x57_c00478{left:493.929000px;}
.x74_c00478{left:499.380524px;}
.x75_c00478{left:506.389956px;}
.x58_c00478{left:513.612000px;}
.x7b_c00478{left:522.567445px;}
.x5f_c00478{left:527.921850px;}
.x19_c00478{left:529.201500px;}
.x3f_c00478{left:531.361500px;}
.x59_c00478{left:540.088500px;}
.x5_c00478{left:546.813000px;}
.x7c_c00478{left:554.174878px;}
.x5a_c00478{left:569.521500px;}
.x6_c00478{left:608.038500px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fsb_c00478{font-size:18.666667pt;}
.fsd_c00478{font-size:19.600000pt;}
.fsc_c00478{font-size:21.466667pt;}
.fs12_c00478{font-size:41.068330pt;}
.fs13_c00478{font-size:42.001701pt;}
.fse_c00478{font-size:44.801098pt;}
.fs11_c00478{font-size:44.801814pt;}
.fsf_c00478{font-size:45.734454pt;}
.fs10_c00478{font-size:46.668557pt;}
.fs14_c00478{font-size:51.333333pt;}
.fs4_c00478{font-size:54.133333pt;}
.fs15_c00478{font-size:56.933333pt;}
.fs5_c00478{font-size:60.666667pt;}
.fs9_c00478{font-size:61.600000pt;}
.fsa_c00478{font-size:62.533333pt;}
.fs6_c00478{font-size:63.466667pt;}
.fs3_c00478{font-size:65.333333pt;}
.fs2_c00478{font-size:66.266667pt;}
.fs7_c00478{font-size:87.733333pt;}
.fs8_c00478{font-size:107.333333pt;}
.fs1_c00478{font-size:140.945242pt;}
.fs0_c00478{font-size:195.066667pt;}
.y0_c00478{bottom:0.000000pt;}
.y7b_c00478{bottom:118.368000pt;}
.y7a_c00478{bottom:144.214667pt;}
.y70_c00478{bottom:158.631833pt;}
.y71_c00478{bottom:158.974892pt;}
.y72_c00478{bottom:159.959796pt;}
.y73_c00478{bottom:160.497240pt;}
.y74_c00478{bottom:160.951711pt;}
.y75_c00478{bottom:161.100048pt;}
.y76_c00478{bottom:161.563581pt;}
.y77_c00478{bottom:161.750920pt;}
.y78_c00478{bottom:161.938415pt;}
.y79_c00478{bottom:163.141028pt;}
.y60_c00478{bottom:173.998803pt;}
.y61_c00478{bottom:174.167985pt;}
.y62_c00478{bottom:174.426248pt;}
.y63_c00478{bottom:174.626396pt;}
.y64_c00478{bottom:175.138817pt;}
.y65_c00478{bottom:175.360197pt;}
.y66_c00478{bottom:175.655583pt;}
.y67_c00478{bottom:176.295359pt;}
.y68_c00478{bottom:176.439589pt;}
.y69_c00478{bottom:176.647575pt;}
.y6a_c00478{bottom:177.056645pt;}
.y6b_c00478{bottom:177.216167pt;}
.y6c_c00478{bottom:177.705196pt;}
.y6d_c00478{bottom:178.071827pt;}
.y6e_c00478{bottom:178.243049pt;}
.y6f_c00478{bottom:178.380691pt;}
.y4e_c00478{bottom:190.080045pt;}
.y4f_c00478{bottom:190.338755pt;}
.y50_c00478{bottom:190.483189pt;}
.y51_c00478{bottom:190.919601pt;}
.y52_c00478{bottom:191.015671pt;}
.y53_c00478{bottom:191.300915pt;}
.y54_c00478{bottom:191.636696pt;}
.y55_c00478{bottom:191.746627pt;}
.y56_c00478{bottom:192.072135pt;}
.y57_c00478{bottom:192.168276pt;}
.y58_c00478{bottom:192.310095pt;}
.y59_c00478{bottom:192.611001pt;}
.y5a_c00478{bottom:192.728817pt;}
.y5b_c00478{bottom:193.013893pt;}
.y5c_c00478{bottom:193.201208pt;}
.y5d_c00478{bottom:193.583603pt;}
.y5e_c00478{bottom:193.646345pt;}
.y5f_c00478{bottom:193.941263pt;}
.y41_c00478{bottom:205.441333pt;}
.y42_c00478{bottom:205.583653pt;}
.y43_c00478{bottom:205.953001pt;}
.y44_c00478{bottom:206.343949pt;}
.y45_c00478{bottom:206.499541pt;}
.y46_c00478{bottom:206.819125pt;}
.y47_c00478{bottom:206.978881pt;}
.y48_c00478{bottom:207.555805pt;}
.y49_c00478{bottom:207.730717pt;}
.y4a_c00478{bottom:207.923065pt;}
.y4b_c00478{bottom:208.143277pt;}
.y4c_c00478{bottom:208.350877pt;}
.y4d_c00478{bottom:208.830745pt;}
.y3d_c00478{bottom:222.600512pt;}
.y3e_c00478{bottom:222.600619pt;}
.y3a_c00478{bottom:222.600833pt;}
.y3c_c00478{bottom:222.600841pt;}
.y39_c00478{bottom:222.600923pt;}
.y3f_c00478{bottom:222.601019pt;}
.y3b_c00478{bottom:222.601277pt;}
.y40_c00478{bottom:222.601649pt;}
.y2c_c00478{bottom:237.359057pt;}
.y2d_c00478{bottom:237.532079pt;}
.y2e_c00478{bottom:237.900167pt;}
.y2f_c00478{bottom:237.962168pt;}
.y30_c00478{bottom:238.234347pt;}
.y31_c00478{bottom:238.528328pt;}
.y32_c00478{bottom:238.625628pt;}
.y33_c00478{bottom:238.919973pt;}
.y34_c00478{bottom:239.171787pt;}
.y35_c00478{bottom:239.272671pt;}
.y36_c00478{bottom:239.692661pt;}
.y37_c00478{bottom:239.991645pt;}
.y38_c00478{bottom:240.248723pt;}
.y1b_c00478{bottom:252.960000pt;}
.y1c_c00478{bottom:253.084301pt;}
.y1d_c00478{bottom:253.151492pt;}
.y1e_c00478{bottom:253.371460pt;}
.y1f_c00478{bottom:253.739361pt;}
.y20_c00478{bottom:253.871951pt;}
.y21_c00478{bottom:253.986303pt;}
.y22_c00478{bottom:254.147741pt;}
.y23_c00478{bottom:254.601248pt;}
.y24_c00478{bottom:254.749051pt;}
.y25_c00478{bottom:254.994387pt;}
.y26_c00478{bottom:255.088625pt;}
.y27_c00478{bottom:255.296927pt;}
.y28_c00478{bottom:255.380899pt;}
.y29_c00478{bottom:255.503371pt;}
.y2a_c00478{bottom:255.668113pt;}
.y2b_c00478{bottom:255.851252pt;}
.y1a_c00478{bottom:400.085333pt;}
.y19_c00478{bottom:400.674667pt;}
.y18_c00478{bottom:402.720000pt;}
.y17_c00478{bottom:441.940000pt;}
.y16_c00478{bottom:462.658667pt;}
.y15_c00478{bottom:483.278667pt;}
.y14_c00478{bottom:503.340000pt;}
.y13_c00478{bottom:521.402667pt;}
.y12_c00478{bottom:543.728000pt;}
.y11_c00478{bottom:564.221333pt;}
.y10_c00478{bottom:584.576000pt;}
.yf_c00478{bottom:604.104000pt;}
.ye_c00478{bottom:624.693333pt;}
.yd_c00478{bottom:645.265333pt;}
.yc_c00478{bottom:665.542667pt;}
.y8_c00478{bottom:684.242667pt;}
.y9_c00478{bottom:684.974667pt;}
.ya_c00478{bottom:685.493333pt;}
.yb_c00478{bottom:686.276000pt;}
.y7_c00478{bottom:706.181333pt;}
.y6_c00478{bottom:762.995516pt;}
.y5_c00478{bottom:763.703011pt;}
.y4_c00478{bottom:764.583024pt;}
.y3_c00478{bottom:765.484704pt;}
.y2_c00478{bottom:768.004000pt;}
.y1_c00478{bottom:803.789333pt;}
.hd_c00478{height:18.666667pt;}
.hf_c00478{height:19.600000pt;}
.he_c00478{height:21.466667pt;}
.h14_c00478{height:41.068330pt;}
.h15_c00478{height:42.001701pt;}
.h10_c00478{height:44.801098pt;}
.h13_c00478{height:44.801814pt;}
.h11_c00478{height:45.734454pt;}
.h12_c00478{height:46.668557pt;}
.h16_c00478{height:51.333333pt;}
.h6_c00478{height:54.133333pt;}
.h17_c00478{height:56.933333pt;}
.h7_c00478{height:60.666667pt;}
.hb_c00478{height:61.600000pt;}
.hc_c00478{height:62.533333pt;}
.h8_c00478{height:63.466667pt;}
.h5_c00478{height:65.333333pt;}
.h4_c00478{height:66.266667pt;}
.h9_c00478{height:87.733333pt;}
.ha_c00478{height:107.333333pt;}
.h3_c00478{height:140.945242pt;}
.h2_c00478{height:195.066667pt;}
.h1_c00478{height:893.333333pt;}
.h0_c00478{height:893.466667pt;}
.w0_c00478{width:635.733333pt;}
.w1_c00478{width:636.000000pt;}
.x0_c00478{left:0.000000pt;}
.x4d_c00478{left:93.205333pt;}
.x76_c00478{left:94.175056pt;}
.x63_c00478{left:108.801333pt;}
.x4e_c00478{left:110.962667pt;}
.x5b_c00478{left:117.897200pt;}
.x6b_c00478{left:119.358048pt;}
.x4f_c00478{left:120.561333pt;}
.x2b_c00478{left:122.881333pt;}
.x1a_c00478{left:124.321333pt;}
.x7_c00478{left:126.000000pt;}
.x6c_c00478{left:133.776583pt;}
.x7f_c00478{left:139.920000pt;}
.x33_c00478{left:146.161333pt;}
.x40_c00478{left:147.361333pt;}
.x64_c00478{left:149.840000pt;}
.x8_c00478{left:150.960000pt;}
.x50_c00478{left:151.985333pt;}
.x2_c00478{left:155.210667pt;}
.x44_c00478{left:156.961333pt;}
.x24_c00478{left:162.481333pt;}
.x37_c00478{left:165.361333pt;}
.x5c_c00478{left:170.481200pt;}
.x2d_c00478{left:171.841333pt;}
.x6d_c00478{left:177.377520pt;}
.x9_c00478{left:178.320000pt;}
.x5d_c00478{left:179.338533pt;}
.x1b_c00478{left:183.841333pt;}
.x6e_c00478{left:187.014769pt;}
.x4c_c00478{left:187.920000pt;}
.x45_c00478{left:190.561333pt;}
.x1c_c00478{left:192.481333pt;}
.x60_c00478{left:196.081541pt;}
.x77_c00478{left:197.878529pt;}
.x41_c00478{left:204.001333pt;}
.x38_c00478{left:209.521333pt;}
.x65_c00478{left:210.566667pt;}
.xf_c00478{left:215.452000pt;}
.x34_c00478{left:217.921333pt;}
.x25_c00478{left:219.121333pt;}
.x1_c00478{left:223.440000pt;}
.x39_c00478{left:226.321333pt;}
.x49_c00478{left:234.240000pt;}
.x61_c00478{left:236.402187pt;}
.x51_c00478{left:239.820000pt;}
.x4a_c00478{left:241.200000pt;}
.x23_c00478{left:243.841333pt;}
.x78_c00478{left:244.925689pt;}
.x66_c00478{left:246.076000pt;}
.x6f_c00478{left:249.202217pt;}
.xa_c00478{left:252.960000pt;}
.x4b_c00478{left:258.720000pt;}
.x2c_c00478{left:259.681333pt;}
.x1d_c00478{left:261.601333pt;}
.x52_c00478{left:262.882667pt;}
.x67_c00478{left:263.826667pt;}
.x46_c00478{left:264.721333pt;}
.x11_c00478{left:268.081333pt;}
.x7d_c00478{left:269.406661pt;}
.x10_c00478{left:271.381333pt;}
.x31_c00478{left:273.121333pt;}
.xb_c00478{left:274.800000pt;}
.x3a_c00478{left:278.641333pt;}
.x35_c00478{left:280.321333pt;}
.x13_c00478{left:286.321333pt;}
.x2e_c00478{left:288.481333pt;}
.x42_c00478{left:289.441333pt;}
.x80_c00478{left:290.400000pt;}
.x70_c00478{left:292.843167pt;}
.x12_c00478{left:300.001333pt;}
.x14_c00478{left:302.641333pt;}
.x2f_c00478{left:303.601333pt;}
.x1e_c00478{left:308.641333pt;}
.xc_c00478{left:311.760000pt;}
.x7e_c00478{left:312.720000pt;}
.x26_c00478{left:314.641333pt;}
.x3b_c00478{left:316.321333pt;}
.x32_c00478{left:319.921333pt;}
.x15_c00478{left:324.241333pt;}
.x27_c00478{left:325.681333pt;}
.x53_c00478{left:327.669333pt;}
.x47_c00478{left:329.281333pt;}
.x3c_c00478{left:330.241333pt;}
.xd_c00478{left:335.520000pt;}
.x28_c00478{left:339.601333pt;}
.x1f_c00478{left:342.481333pt;}
.x16_c00478{left:344.641333pt;}
.x68_c00478{left:347.364000pt;}
.x3_c00478{left:349.002667pt;}
.x5e_c00478{left:352.141200pt;}
.x48_c00478{left:355.201333pt;}
.x71_c00478{left:358.399900pt;}
.x43_c00478{left:360.961333pt;}
.x20_c00478{left:366.241333pt;}
.xe_c00478{left:367.440000pt;}
.x69_c00478{left:368.736000pt;}
.x79_c00478{left:372.300731pt;}
.x30_c00478{left:373.441333pt;}
.x62_c00478{left:377.286417pt;}
.x36_c00478{left:378.961333pt;}
.x17_c00478{left:380.641333pt;}
.x54_c00478{left:383.832000pt;}
.x72_c00478{left:386.963648pt;}
.x3d_c00478{left:389.041333pt;}
.x6a_c00478{left:393.204000pt;}
.x55_c00478{left:397.294667pt;}
.x29_c00478{left:402.241333pt;}
.x73_c00478{left:405.702147pt;}
.x3e_c00478{left:415.921333pt;}
.x21_c00478{left:417.361333pt;}
.x4_c00478{left:418.362667pt;}
.x18_c00478{left:424.081333pt;}
.x56_c00478{left:427.052000pt;}
.x7a_c00478{left:431.175663pt;}
.x2a_c00478{left:435.601333pt;}
.x22_c00478{left:436.801333pt;}
.x57_c00478{left:439.048000pt;}
.x74_c00478{left:443.893799pt;}
.x75_c00478{left:450.124405pt;}
.x58_c00478{left:456.544000pt;}
.x7b_c00478{left:464.504396pt;}
.x5f_c00478{left:469.263867pt;}
.x19_c00478{left:470.401333pt;}
.x3f_c00478{left:472.321333pt;}
.x59_c00478{left:480.078667pt;}
.x5_c00478{left:486.056000pt;}
.x7c_c00478{left:492.599892pt;}
.x5a_c00478{left:506.241333pt;}
.x6_c00478{left:540.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m127_c00479{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);}
.ma5_c00479{transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);}
.m139_c00479{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);}
.m10d_c00479{transform:matrix(0.066530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066530,0.000000,0.000000,0.250000,0,0);}
.m10e_c00479{transform:matrix(0.073515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073515,0.000000,0.000000,0.250000,0,0);}
.m53_c00479{transform:matrix(0.108755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108755,0.000000,0.000000,0.250000,0,0);}
.meb_c00479{transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110780,0.000000,0.000000,0.250000,0,0);}
.m102_c00479{transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115865,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m124_c00479{transform:matrix(0.143535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143535,0.000000,0.000000,0.250000,0,0);}
.m110_c00479{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);}
.m29_c00479{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);}
.m123_c00479{transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);}
.m119_c00479{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);}
.mab_c00479{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);}
.m10c_c00479{transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152530,0.000000,0.000000,0.250000,0,0);}
.ma7_c00479{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);}
.mb9_c00479{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);}
.mb6_c00479{transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156095,0.000000,0.000000,0.250000,0,0);}
.m4e_c00479{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);}
.m78_c00479{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.m61_c00479{transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158265,0.000000,0.000000,0.250000,0,0);}
.me5_c00479{transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158430,0.000000,0.000000,0.250000,0,0);}
.m51_c00479{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);}
.mf_c00479{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);}
.mfa_c00479{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);}
.mba_c00479{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);}
.m4f_c00479{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);}
.m87_c00479{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);}
.m32_c00479{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);}
.m135_c00479{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);}
.m133_c00479{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);}
.m5a_c00479{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);}
.mf9_c00479{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);}
.m11a_c00479{transform:matrix(0.165640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165640,0.000000,0.000000,0.250000,0,0);}
.m3a_c00479{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_c00479{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);}
.m12d_c00479{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);}
.m3b_c00479{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);}
.med_c00479{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);}
.m47_c00479{transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168110,0.000000,0.000000,0.250000,0,0);}
.mec_c00479{transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168610,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{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);}
.m116_c00479{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);}
.m5e_c00479{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m126_c00479{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);}
.m71_c00479{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);}
.m105_c00479{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);}
.ma9_c00479{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);}
.m10b_c00479{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);}
.m138_c00479{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);}
.m62_c00479{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);}
.mb2_c00479{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);}
.m4d_c00479{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);}
.m89_c00479{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);}
.mc4_c00479{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);}
.m63_c00479{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);}
.mb3_c00479{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);}
.m113_c00479{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);}
.m2a_c00479{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);}
.m128_c00479{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);}
.m103_c00479{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);}
.m48_c00479{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);}
.m121_c00479{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);}
.m6e_c00479{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);}
.m50_c00479{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);}
.m42_c00479{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);}
.mac_c00479{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);}
.m12a_c00479{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);}
.mb8_c00479{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);}
.maf_c00479{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);}
.mc2_c00479{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);}
.m104_c00479{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);}
.m36_c00479{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);}
.mf8_c00479{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);}
.m10f_c00479{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);}
.m122_c00479{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);}
.m129_c00479{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);}
.m37_c00479{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);}
.m125_c00479{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);}
.me8_c00479{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);}
.m120_c00479{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);}
.m10_c00479{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);}
.m136_c00479{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);}
.m130_c00479{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);}
.m60_c00479{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);}
.m86_c00479{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_c00479{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);}
.m59_c00479{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);}
.mfb_c00479{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);}
.m137_c00479{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);}
.m3c_c00479{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);}
.m9d_c00479{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);}
.mbd_c00479{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);}
.mc9_c00479{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);}
.m13_c00479{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);}
.m67_c00479{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);}
.m12b_c00479{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);}
.me_c00479{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);}
.mf7_c00479{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);}
.m111_c00479{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);}
.m83_c00479{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);}
.m2e_c00479{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);}
.mbf_c00479{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);}
.m8c_c00479{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);}
.mb7_c00479{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);}
.maa_c00479{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);}
.me3_c00479{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);}
.m1d_c00479{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);}
.m112_c00479{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);}
.m100_c00479{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);}
.m134_c00479{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);}
.m10a_c00479{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);}
.mbb_c00479{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);}
.m1a_c00479{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);}
.m77_c00479{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);}
.m9c_c00479{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);}
.m12e_c00479{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);}
.m8a_c00479{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);}
.m2b_c00479{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);}
.mdd_c00479{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);}
.m64_c00479{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);}
.m1c_c00479{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);}
.m88_c00479{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);}
.m115_c00479{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);}
.mc8_c00479{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);}
.m106_c00479{transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190440,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{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);}
.m11b_c00479{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);}
.m79_c00479{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);}
.m30_c00479{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);}
.m5c_c00479{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);}
.m55_c00479{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);}
.mce_c00479{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);}
.mb4_c00479{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);}
.m92_c00479{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00479{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);}
.m108_c00479{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);}
.m11d_c00479{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);}
.m80_c00479{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);}
.me0_c00479{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);}
.m5f_c00479{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);}
.m69_c00479{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);}
.m15_c00479{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);}
.m56_c00479{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);}
.m2f_c00479{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);}
.m107_c00479{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);}
.m114_c00479{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);}
.mc6_c00479{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);}
.m12_c00479{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);}
.m2c_c00479{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);}
.me1_c00479{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);}
.m43_c00479{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m12f_c00479{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);}
.m109_c00479{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);}
.ma8_c00479{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);}
.mdc_c00479{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);}
.md0_c00479{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);}
.m6a_c00479{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);}
.m6d_c00479{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);}
.m9a_c00479{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);}
.m46_c00479{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);}
.m1f_c00479{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);}
.mc0_c00479{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);}
.m23_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);}
.m9e_c00479{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);}
.ma6_c00479{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);}
.m1e_c00479{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);}
.mfc_c00479{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);}
.m45_c00479{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);}
.mc5_c00479{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);}
.m31_c00479{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);}
.m72_c00479{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);}
.m3d_c00479{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);}
.m131_c00479{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);}
.mc3_c00479{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);}
.mc7_c00479{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);}
.mc1_c00479{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);}
.mda_c00479{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);}
.mb1_c00479{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);}
.md7_c00479{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);}
.m1b_c00479{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);}
.me2_c00479{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);}
.m57_c00479{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);}
.m24_c00479{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);}
.m76_c00479{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);}
.m44_c00479{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);}
.m28_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);}
.m58_c00479{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);}
.m66_c00479{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);}
.m25_c00479{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);}
.m2d_c00479{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);}
.m4c_c00479{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);}
.m21_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);}
.m1_c00479{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);}
.m75_c00479{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);}
.md5_c00479{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);}
.mef_c00479{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);}
.mde_c00479{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);}
.mea_c00479{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);}
.m41_c00479{transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210035,0.000000,0.000000,0.250000,0,0);}
.m11c_c00479{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);}
.md9_c00479{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);}
.m98_c00479{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);}
.md_c00479{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);}
.m7e_c00479{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);}
.m14_c00479{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);}
.m5d_c00479{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);}
.md6_c00479{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);}
.ma3_c00479{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);}
.m85_c00479{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);}
.ma1_c00479{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);}
.mcd_c00479{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);}
.m19_c00479{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);}
.m18_c00479{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);}
.mcf_c00479{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);}
.mca_c00479{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);}
.m118_c00479{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.m3e_c00479{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);}
.md1_c00479{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);}
.m13a_c00479{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);}
.m12c_c00479{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);}
.mdf_c00479{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);}
.m49_c00479{transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);}
.m8f_c00479{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);}
.m65_c00479{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);}
.m8d_c00479{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);}
.mf5_c00479{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);}
.m6c_c00479{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);}
.m68_c00479{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);}
.m73_c00479{transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);}
.m52_c00479{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);}
.mb5_c00479{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.mfd_c00479{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);}
.md8_c00479{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);}
.m81_c00479{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);}
.mcb_c00479{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);}
.mf6_c00479{transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00479{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m38_c00479{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);}
.m39_c00479{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);}
.mb0_c00479{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);}
.m3f_c00479{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);}
.me6_c00479{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);}
.m90_c00479{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);}
.mb_c00479{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);}
.m9_c00479{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);}
.mf3_c00479{transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);}
.mee_c00479{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);}
.ma2_c00479{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);}
.m91_c00479{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.mf0_c00479{transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232090,0.000000,0.000000,0.250000,0,0);}
.m8e_c00479{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);}
.ma4_c00479{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);}
.m99_c00479{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);}
.mf4_c00479{transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);}
.m93_c00479{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);}
.m6b_c00479{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);}
.m5b_c00479{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.md3_c00479{transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236765,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{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);}
.m7c_c00479{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);}
.m8b_c00479{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.md2_c00479{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);}
.mf2_c00479{transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);}
.m117_c00479{transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);}
.m74_c00479{transform:matrix(0.242490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242490,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{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);}
.m33_c00479{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);}
.m20_c00479{transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245560,0.000000,0.000000,0.250000,0,0);}
.m13e_c00479{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);}
.mbc_c00479{transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);}
.m9f_c00479{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);}
.md4_c00479{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);}
.m3_c00479{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.me4_c00479{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);}
.mad_c00479{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m101_c00479{transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254990,0.000000,0.000000,0.250000,0,0);}
.m7a_c00479{transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);}
.m6f_c00479{transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{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);}
.m7f_c00479{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);}
.m97_c00479{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);}
.m96_c00479{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);}
.m54_c00479{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);}
.m9b_c00479{transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);}
.m11f_c00479{transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275960,0.000000,0.000000,0.250000,0,0);}
.m94_c00479{transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279735,0.000000,0.000000,0.250000,0,0);}
.m13b_c00479{transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);}
.ma0_c00479{transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283815,0.000000,0.000000,0.250000,0,0);}
.mf1_c00479{transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299110,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m40_c00479{transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);}
.m13f_c00479{transform:matrix(0.308858,0.007104,-0.005748,0.249934,0,0);-ms-transform:matrix(0.308858,0.007104,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.308858,0.007104,-0.005748,0.249934,0,0);}
.m26_c00479{transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);}
.mff_c00479{transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313880,0.000000,0.000000,0.250000,0,0);}
.me7_c00479{transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);}
.m11e_c00479{transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);}
.m7b_c00479{transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327490,0.000000,0.000000,0.250000,0,0);}
.m95_c00479{transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336805,0.000000,0.000000,0.250000,0,0);}
.mae_c00479{transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350230,0.000000,0.000000,0.250000,0,0);}
.mbe_c00479{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);}
.ma_c00479{transform:matrix(0.356765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356765,0.000000,0.000000,0.250000,0,0);}
.m70_c00479{transform:matrix(0.365110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365110,0.000000,0.000000,0.250000,0,0);}
.mfe_c00479{transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);}
.m82_c00479{transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375465,0.000000,0.000000,0.250000,0,0);}
.mcc_c00479{transform:matrix(0.384075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384075,0.000000,0.000000,0.250000,0,0);}
.m4a_c00479{transform:matrix(0.414535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414535,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.428380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428380,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.435940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435940,0.000000,0.000000,0.250000,0,0);}
.m13c_c00479{transform:matrix(0.437204,0.010056,-0.005748,0.249934,0,0);-ms-transform:matrix(0.437204,0.010056,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.437204,0.010056,-0.005748,0.249934,0,0);}
.m5_c00479{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);}
.m132_c00479{transform:matrix(0.474855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474855,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.494025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494025,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{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);}
.m2_c00479{transform:matrix(0.504470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504470,0.000000,0.000000,0.250000,0,0);}
.me9_c00479{transform:matrix(0.536720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536720,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.982720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982720,0.000000,0.000000,0.250000,0,0);}
.m13d_c00479{transform:matrix(1.076490,0.024759,-0.005748,0.249934,0,0);-ms-transform:matrix(1.076490,0.024759,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.076490,0.024759,-0.005748,0.249934,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;}
.fs11_c00479{font-size:22.050000px;}
.fsc_c00479{font-size:45.150000px;}
.fsb_c00479{font-size:47.250000px;}
.fs1_c00479{font-size:48.300000px;}
.fse_c00479{font-size:49.350000px;}
.fs9_c00479{font-size:50.400000px;}
.fsa_c00479{font-size:52.500000px;}
.fs0_c00479{font-size:53.550000px;}
.fsf_c00479{font-size:54.600000px;}
.fsd_c00479{font-size:55.650000px;}
.fs10_c00479{font-size:57.750000px;}
.fs8_c00479{font-size:68.250000px;}
.fs3_c00479{font-size:69.300000px;}
.fs7_c00479{font-size:71.400000px;}
.fs5_c00479{font-size:72.450000px;}
.fs6_c00479{font-size:73.500000px;}
.fs4_c00479{font-size:90.300000px;}
.fs2_c00479{font-size:91.350000px;}
.fs12_c00479{font-size:181.698040px;}
.y0_c00479{bottom:0.000000px;}
.y38_c00479{bottom:86.855289px;}
.y37_c00479{bottom:88.225111px;}
.y36_c00479{bottom:91.505337px;}
.y35_c00479{bottom:96.937500px;}
.y34_c00479{bottom:122.443500px;}
.y33_c00479{bottom:125.172000px;}
.y32_c00479{bottom:151.072500px;}
.y31_c00479{bottom:167.035500px;}
.y30_c00479{bottom:187.468500px;}
.y1f_c00479{bottom:200.070000px;}
.y20_c00479{bottom:200.253000px;}
.y21_c00479{bottom:200.634000px;}
.y22_c00479{bottom:200.910000px;}
.y23_c00479{bottom:201.075000px;}
.y24_c00479{bottom:201.709500px;}
.y25_c00479{bottom:202.020000px;}
.y26_c00479{bottom:202.737000px;}
.y27_c00479{bottom:202.896000px;}
.y28_c00479{bottom:203.035500px;}
.y29_c00479{bottom:203.295000px;}
.y2a_c00479{bottom:203.802000px;}
.y2b_c00479{bottom:203.910000px;}
.y2c_c00479{bottom:204.018000px;}
.y2d_c00479{bottom:204.094500px;}
.y2e_c00479{bottom:204.409500px;}
.y2f_c00479{bottom:204.543000px;}
.y1e_c00479{bottom:223.120500px;}
.y1d_c00479{bottom:240.658500px;}
.y1c_c00479{bottom:258.228000px;}
.y1b_c00479{bottom:276.628500px;}
.y1a_c00479{bottom:293.968500px;}
.y19_c00479{bottom:311.610000px;}
.y18_c00479{bottom:328.761000px;}
.y17_c00479{bottom:348.030000px;}
.y16_c00479{bottom:366.120000px;}
.y15_c00479{bottom:384.090000px;}
.y14_c00479{bottom:401.598000px;}
.y13_c00479{bottom:448.218000px;}
.y12_c00479{bottom:470.656500px;}
.y11_c00479{bottom:493.318500px;}
.y10_c00479{bottom:516.450000px;}
.yf_c00479{bottom:539.259000px;}
.ye_c00479{bottom:562.438500px;}
.yd_c00479{bottom:586.218000px;}
.yc_c00479{bottom:609.004500px;}
.yb_c00479{bottom:630.865500px;}
.ya_c00479{bottom:653.728500px;}
.y9_c00479{bottom:676.356000px;}
.y8_c00479{bottom:699.249000px;}
.y7_c00479{bottom:722.256000px;}
.y3_c00479{bottom:753.570000px;}
.y6_c00479{bottom:758.476500px;}
.y4_c00479{bottom:771.390000px;}
.y2_c00479{bottom:788.400000px;}
.y5_c00479{bottom:801.258000px;}
.y1_c00479{bottom:842.940000px;}
.h13_c00479{height:22.050000px;}
.he_c00479{height:45.150000px;}
.hd_c00479{height:47.250000px;}
.h3_c00479{height:48.300000px;}
.h10_c00479{height:49.350000px;}
.hb_c00479{height:50.400000px;}
.hc_c00479{height:52.500000px;}
.h2_c00479{height:53.550000px;}
.h11_c00479{height:54.600000px;}
.hf_c00479{height:55.650000px;}
.h12_c00479{height:57.750000px;}
.ha_c00479{height:68.250000px;}
.h5_c00479{height:69.300000px;}
.h9_c00479{height:71.400000px;}
.h7_c00479{height:72.450000px;}
.h8_c00479{height:73.500000px;}
.h6_c00479{height:90.300000px;}
.h4_c00479{height:91.350000px;}
.h14_c00479{height:181.698040px;}
.h0_c00479{height:1008.450000px;}
.h1_c00479{height:1008.750000px;}
.w1_c00479{width:700.500000px;}
.w0_c00479{width:700.650000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:84.780000px;}
.x1_c00479{left:85.860000px;}
.x3_c00479{left:91.530000px;}
.x4_c00479{left:98.550000px;}
.xbe_c00479{left:123.439500px;}
.x81_c00479{left:135.540000px;}
.x65_c00479{left:145.530000px;}
.x82_c00479{left:146.880000px;}
.xa6_c00479{left:147.960000px;}
.xc_c00479{left:155.250000px;}
.x58_c00479{left:156.600000px;}
.x8b_c00479{left:159.030000px;}
.x9e_c00479{left:164.970000px;}
.x92_c00479{left:166.050000px;}
.x6e_c00479{left:168.480000px;}
.x1d_c00479{left:171.180000px;}
.x83_c00479{left:172.260000px;}
.x59_c00479{left:175.770000px;}
.xd_c00479{left:177.120000px;}
.x33_c00479{left:178.470000px;}
.x2d_c00479{left:180.090000px;}
.x66_c00479{left:187.110000px;}
.x6f_c00479{left:190.080000px;}
.x5a_c00479{left:193.320000px;}
.x46_c00479{left:194.400000px;}
.x93_c00479{left:200.340000px;}
.xa7_c00479{left:201.690000px;}
.x53_c00479{left:204.120000px;}
.x7a_c00479{left:205.740000px;}
.x47_c00479{left:207.630000px;}
.x98_c00479{left:211.680000px;}
.x8_c00479{left:213.300000px;}
.x34_c00479{left:216.540000px;}
.x17_c00479{left:218.430000px;}
.x70_c00479{left:220.320000px;}
.x4e_c00479{left:225.450000px;}
.x1e_c00479{left:226.530000px;}
.x9f_c00479{left:227.880000px;}
.xa8_c00479{left:229.230000px;}
.x3b_c00479{left:230.310000px;}
.xab_c00479{left:231.528000px;}
.x42_c00479{left:235.710000px;}
.x99_c00479{left:239.490000px;}
.x2e_c00479{left:241.650000px;}
.x54_c00479{left:244.620000px;}
.x84_c00479{left:246.240000px;}
.xa2_c00479{left:247.320000px;}
.xe_c00479{left:248.400000px;}
.x48_c00479{left:251.640000px;}
.x5b_c00479{left:253.530000px;}
.x35_c00479{left:254.610000px;}
.x2f_c00479{left:259.740000px;}
.x24_c00479{left:261.360000px;}
.x18_c00479{left:264.600000px;}
.x67_c00479{left:266.760000px;}
.x3c_c00479{left:268.650000px;}
.xb9_c00479{left:270.541500px;}
.x8c_c00479{left:273.510000px;}
.xf_c00479{left:278.100000px;}
.x85_c00479{left:279.450000px;}
.x5_c00479{left:280.800000px;}
.x68_c00479{left:284.040000px;}
.x1f_c00479{left:285.120000px;}
.x5c_c00479{left:286.200000px;}
.x36_c00479{left:290.790000px;}
.x49_c00479{left:291.870000px;}
.x7b_c00479{left:293.220000px;}
.xba_c00479{left:294.301500px;}
.x94_c00479{left:295.380000px;}
.x8d_c00479{left:296.730000px;}
.x5d_c00479{left:298.080000px;}
.x9a_c00479{left:306.180000px;}
.x4f_c00479{left:307.530000px;}
.xac_c00479{left:311.400000px;}
.x7c_c00479{left:313.200000px;}
.x43_c00479{left:316.170000px;}
.x25_c00479{left:318.870000px;}
.x10_c00479{left:321.300000px;}
.xa_c00479{left:323.460000px;}
.x71_c00479{left:326.970000px;}
.x86_c00479{left:328.590000px;}
.x3d_c00479{left:331.290000px;}
.x20_c00479{left:335.340000px;}
.x30_c00479{left:336.960000px;}
.x95_c00479{left:341.280000px;}
.x55_c00479{left:342.630000px;}
.xb_c00479{left:344.520000px;}
.x72_c00479{left:347.490000px;}
.x3e_c00479{left:351.000000px;}
.x50_c00479{left:353.700000px;}
.x37_c00479{left:358.020000px;}
.x11_c00479{left:360.180000px;}
.x8e_c00479{left:362.070000px;}
.x6_c00479{left:363.690000px;}
.x4a_c00479{left:366.390000px;}
.x31_c00479{left:372.870000px;}
.x38_c00479{left:376.110000px;}
.x21_c00479{left:377.460000px;}
.x3f_c00479{left:380.430000px;}
.x96_c00479{left:381.780000px;}
.xa0_c00479{left:384.480000px;}
.x44_c00479{left:385.560000px;}
.x26_c00479{left:386.640000px;}
.x9_c00479{left:390.150000px;}
.x56_c00479{left:393.660000px;}
.xa9_c00479{left:395.280000px;}
.x73_c00479{left:397.710000px;}
.x69_c00479{left:399.060000px;}
.xb3_c00479{left:400.951500px;}
.x12_c00479{left:402.570000px;}
.x4b_c00479{left:403.650000px;}
.x51_c00479{left:405.000000px;}
.x19_c00479{left:407.700000px;}
.x5e_c00479{left:409.590000px;}
.xa3_c00479{left:412.290000px;}
.x7d_c00479{left:413.370000px;}
.x39_c00479{left:417.690000px;}
.x27_c00479{left:419.310000px;}
.x13_c00479{left:421.740000px;}
.x32_c00479{left:425.790000px;}
.x74_c00479{left:427.410000px;}
.x5f_c00479{left:430.380000px;}
.x1a_c00479{left:432.270000px;}
.xb4_c00479{left:434.161500px;}
.x7_c00479{left:437.670000px;}
.x9b_c00479{left:443.070000px;}
.xad_c00479{left:444.211500px;}
.x52_c00479{left:448.200000px;}
.x14_c00479{left:451.980000px;}
.x45_c00479{left:453.060000px;}
.x57_c00479{left:455.490000px;}
.x9c_c00479{left:456.570000px;}
.x28_c00479{left:458.460000px;}
.x60_c00479{left:461.970000px;}
.x7e_c00479{left:464.940000px;}
.x22_c00479{left:468.180000px;}
.x4c_c00479{left:470.070000px;}
.x40_c00479{left:473.310000px;}
.xa4_c00479{left:477.360000px;}
.x87_c00479{left:480.060000px;}
.x1b_c00479{left:483.030000px;}
.x75_c00479{left:484.650000px;}
.xaa_c00479{left:487.080000px;}
.x4d_c00479{left:488.700000px;}
.x15_c00479{left:490.050000px;}
.x9d_c00479{left:493.830000px;}
.xb5_c00479{left:496.261500px;}
.x6a_c00479{left:497.880000px;}
.x29_c00479{left:500.850000px;}
.xbf_c00479{left:502.239000px;}
.x16_c00479{left:503.820000px;}
.x88_c00479{left:506.520000px;}
.x76_c00479{left:511.920000px;}
.x3a_c00479{left:514.890000px;}
.x61_c00479{left:516.510000px;}
.x7f_c00479{left:519.480000px;}
.x41_c00479{left:521.370000px;}
.x77_c00479{left:522.990000px;}
.x1c_c00479{left:526.770000px;}
.x8f_c00479{left:530.550000px;}
.xae_c00479{left:531.651000px;}
.xb6_c00479{left:533.791500px;}
.xbb_c00479{left:536.221500px;}
.x89_c00479{left:540.000000px;}
.x23_c00479{left:541.350000px;}
.xaf_c00479{left:542.445000px;}
.x2a_c00479{left:545.130000px;}
.x6b_c00479{left:548.100000px;}
.xb0_c00479{left:550.077000px;}
.xbc_c00479{left:551.881500px;}
.xa1_c00479{left:559.440000px;}
.x78_c00479{left:560.790000px;}
.xc0_c00479{left:561.796500px;}
.x2b_c00479{left:568.080000px;}
.x62_c00479{left:571.590000px;}
.x97_c00479{left:572.670000px;}
.x80_c00479{left:574.830000px;}
.x79_c00479{left:576.450000px;}
.x6c_c00479{left:577.530000px;}
.xbd_c00479{left:579.151500px;}
.xb1_c00479{left:581.634000px;}
.xa5_c00479{left:585.630000px;}
.xb7_c00479{left:587.251500px;}
.x90_c00479{left:589.950000px;}
.x8a_c00479{left:591.840000px;}
.xb2_c00479{left:594.912000px;}
.x6d_c00479{left:597.510000px;}
.x91_c00479{left:598.590000px;}
.x63_c00479{left:600.750000px;}
.x64_c00479{left:609.930000px;}
.xb8_c00479{left:615.601500px;}
.x2c_c00479{left:617.490000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs11_c00479{font-size:19.600000pt;}
.fsc_c00479{font-size:40.133333pt;}
.fsb_c00479{font-size:42.000000pt;}
.fs1_c00479{font-size:42.933333pt;}
.fse_c00479{font-size:43.866667pt;}
.fs9_c00479{font-size:44.800000pt;}
.fsa_c00479{font-size:46.666667pt;}
.fs0_c00479{font-size:47.600000pt;}
.fsf_c00479{font-size:48.533333pt;}
.fsd_c00479{font-size:49.466667pt;}
.fs10_c00479{font-size:51.333333pt;}
.fs8_c00479{font-size:60.666667pt;}
.fs3_c00479{font-size:61.600000pt;}
.fs7_c00479{font-size:63.466667pt;}
.fs5_c00479{font-size:64.400000pt;}
.fs6_c00479{font-size:65.333333pt;}
.fs4_c00479{font-size:80.266667pt;}
.fs2_c00479{font-size:81.200000pt;}
.fs12_c00479{font-size:161.509369pt;}
.y0_c00479{bottom:0.000000pt;}
.y38_c00479{bottom:77.204701pt;}
.y37_c00479{bottom:78.422321pt;}
.y36_c00479{bottom:81.338077pt;}
.y35_c00479{bottom:86.166667pt;}
.y34_c00479{bottom:108.838667pt;}
.y33_c00479{bottom:111.264000pt;}
.y32_c00479{bottom:134.286667pt;}
.y31_c00479{bottom:148.476000pt;}
.y30_c00479{bottom:166.638667pt;}
.y1f_c00479{bottom:177.840000pt;}
.y20_c00479{bottom:178.002667pt;}
.y21_c00479{bottom:178.341333pt;}
.y22_c00479{bottom:178.586667pt;}
.y23_c00479{bottom:178.733333pt;}
.y24_c00479{bottom:179.297333pt;}
.y25_c00479{bottom:179.573333pt;}
.y26_c00479{bottom:180.210667pt;}
.y27_c00479{bottom:180.352000pt;}
.y28_c00479{bottom:180.476000pt;}
.y29_c00479{bottom:180.706667pt;}
.y2a_c00479{bottom:181.157333pt;}
.y2b_c00479{bottom:181.253333pt;}
.y2c_c00479{bottom:181.349333pt;}
.y2d_c00479{bottom:181.417333pt;}
.y2e_c00479{bottom:181.697333pt;}
.y2f_c00479{bottom:181.816000pt;}
.y1e_c00479{bottom:198.329333pt;}
.y1d_c00479{bottom:213.918667pt;}
.y1c_c00479{bottom:229.536000pt;}
.y1b_c00479{bottom:245.892000pt;}
.y1a_c00479{bottom:261.305333pt;}
.y19_c00479{bottom:276.986667pt;}
.y18_c00479{bottom:292.232000pt;}
.y17_c00479{bottom:309.360000pt;}
.y16_c00479{bottom:325.440000pt;}
.y15_c00479{bottom:341.413333pt;}
.y14_c00479{bottom:356.976000pt;}
.y13_c00479{bottom:398.416000pt;}
.y12_c00479{bottom:418.361333pt;}
.y11_c00479{bottom:438.505333pt;}
.y10_c00479{bottom:459.066667pt;}
.yf_c00479{bottom:479.341333pt;}
.ye_c00479{bottom:499.945333pt;}
.yd_c00479{bottom:521.082667pt;}
.yc_c00479{bottom:541.337333pt;}
.yb_c00479{bottom:560.769333pt;}
.ya_c00479{bottom:581.092000pt;}
.y9_c00479{bottom:601.205333pt;}
.y8_c00479{bottom:621.554667pt;}
.y7_c00479{bottom:642.005333pt;}
.y3_c00479{bottom:669.840000pt;}
.y6_c00479{bottom:674.201333pt;}
.y4_c00479{bottom:685.680000pt;}
.y2_c00479{bottom:700.800000pt;}
.y5_c00479{bottom:712.229333pt;}
.y1_c00479{bottom:749.280000pt;}
.h13_c00479{height:19.600000pt;}
.he_c00479{height:40.133333pt;}
.hd_c00479{height:42.000000pt;}
.h3_c00479{height:42.933333pt;}
.h10_c00479{height:43.866667pt;}
.hb_c00479{height:44.800000pt;}
.hc_c00479{height:46.666667pt;}
.h2_c00479{height:47.600000pt;}
.h11_c00479{height:48.533333pt;}
.hf_c00479{height:49.466667pt;}
.h12_c00479{height:51.333333pt;}
.ha_c00479{height:60.666667pt;}
.h5_c00479{height:61.600000pt;}
.h9_c00479{height:63.466667pt;}
.h7_c00479{height:64.400000pt;}
.h8_c00479{height:65.333333pt;}
.h6_c00479{height:80.266667pt;}
.h4_c00479{height:81.200000pt;}
.h14_c00479{height:161.509369pt;}
.h0_c00479{height:896.400000pt;}
.h1_c00479{height:896.666667pt;}
.w1_c00479{width:622.666667pt;}
.w0_c00479{width:622.800000pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:75.360000pt;}
.x1_c00479{left:76.320000pt;}
.x3_c00479{left:81.360000pt;}
.x4_c00479{left:87.600000pt;}
.xbe_c00479{left:109.724000pt;}
.x81_c00479{left:120.480000pt;}
.x65_c00479{left:129.360000pt;}
.x82_c00479{left:130.560000pt;}
.xa6_c00479{left:131.520000pt;}
.xc_c00479{left:138.000000pt;}
.x58_c00479{left:139.200000pt;}
.x8b_c00479{left:141.360000pt;}
.x9e_c00479{left:146.640000pt;}
.x92_c00479{left:147.600000pt;}
.x6e_c00479{left:149.760000pt;}
.x1d_c00479{left:152.160000pt;}
.x83_c00479{left:153.120000pt;}
.x59_c00479{left:156.240000pt;}
.xd_c00479{left:157.440000pt;}
.x33_c00479{left:158.640000pt;}
.x2d_c00479{left:160.080000pt;}
.x66_c00479{left:166.320000pt;}
.x6f_c00479{left:168.960000pt;}
.x5a_c00479{left:171.840000pt;}
.x46_c00479{left:172.800000pt;}
.x93_c00479{left:178.080000pt;}
.xa7_c00479{left:179.280000pt;}
.x53_c00479{left:181.440000pt;}
.x7a_c00479{left:182.880000pt;}
.x47_c00479{left:184.560000pt;}
.x98_c00479{left:188.160000pt;}
.x8_c00479{left:189.600000pt;}
.x34_c00479{left:192.480000pt;}
.x17_c00479{left:194.160000pt;}
.x70_c00479{left:195.840000pt;}
.x4e_c00479{left:200.400000pt;}
.x1e_c00479{left:201.360000pt;}
.x9f_c00479{left:202.560000pt;}
.xa8_c00479{left:203.760000pt;}
.x3b_c00479{left:204.720000pt;}
.xab_c00479{left:205.802667pt;}
.x42_c00479{left:209.520000pt;}
.x99_c00479{left:212.880000pt;}
.x2e_c00479{left:214.800000pt;}
.x54_c00479{left:217.440000pt;}
.x84_c00479{left:218.880000pt;}
.xa2_c00479{left:219.840000pt;}
.xe_c00479{left:220.800000pt;}
.x48_c00479{left:223.680000pt;}
.x5b_c00479{left:225.360000pt;}
.x35_c00479{left:226.320000pt;}
.x2f_c00479{left:230.880000pt;}
.x24_c00479{left:232.320000pt;}
.x18_c00479{left:235.200000pt;}
.x67_c00479{left:237.120000pt;}
.x3c_c00479{left:238.800000pt;}
.xb9_c00479{left:240.481333pt;}
.x8c_c00479{left:243.120000pt;}
.xf_c00479{left:247.200000pt;}
.x85_c00479{left:248.400000pt;}
.x5_c00479{left:249.600000pt;}
.x68_c00479{left:252.480000pt;}
.x1f_c00479{left:253.440000pt;}
.x5c_c00479{left:254.400000pt;}
.x36_c00479{left:258.480000pt;}
.x49_c00479{left:259.440000pt;}
.x7b_c00479{left:260.640000pt;}
.xba_c00479{left:261.601333pt;}
.x94_c00479{left:262.560000pt;}
.x8d_c00479{left:263.760000pt;}
.x5d_c00479{left:264.960000pt;}
.x9a_c00479{left:272.160000pt;}
.x4f_c00479{left:273.360000pt;}
.xac_c00479{left:276.800000pt;}
.x7c_c00479{left:278.400000pt;}
.x43_c00479{left:281.040000pt;}
.x25_c00479{left:283.440000pt;}
.x10_c00479{left:285.600000pt;}
.xa_c00479{left:287.520000pt;}
.x71_c00479{left:290.640000pt;}
.x86_c00479{left:292.080000pt;}
.x3d_c00479{left:294.480000pt;}
.x20_c00479{left:298.080000pt;}
.x30_c00479{left:299.520000pt;}
.x95_c00479{left:303.360000pt;}
.x55_c00479{left:304.560000pt;}
.xb_c00479{left:306.240000pt;}
.x72_c00479{left:308.880000pt;}
.x3e_c00479{left:312.000000pt;}
.x50_c00479{left:314.400000pt;}
.x37_c00479{left:318.240000pt;}
.x11_c00479{left:320.160000pt;}
.x8e_c00479{left:321.840000pt;}
.x6_c00479{left:323.280000pt;}
.x4a_c00479{left:325.680000pt;}
.x31_c00479{left:331.440000pt;}
.x38_c00479{left:334.320000pt;}
.x21_c00479{left:335.520000pt;}
.x3f_c00479{left:338.160000pt;}
.x96_c00479{left:339.360000pt;}
.xa0_c00479{left:341.760000pt;}
.x44_c00479{left:342.720000pt;}
.x26_c00479{left:343.680000pt;}
.x9_c00479{left:346.800000pt;}
.x56_c00479{left:349.920000pt;}
.xa9_c00479{left:351.360000pt;}
.x73_c00479{left:353.520000pt;}
.x69_c00479{left:354.720000pt;}
.xb3_c00479{left:356.401333pt;}
.x12_c00479{left:357.840000pt;}
.x4b_c00479{left:358.800000pt;}
.x51_c00479{left:360.000000pt;}
.x19_c00479{left:362.400000pt;}
.x5e_c00479{left:364.080000pt;}
.xa3_c00479{left:366.480000pt;}
.x7d_c00479{left:367.440000pt;}
.x39_c00479{left:371.280000pt;}
.x27_c00479{left:372.720000pt;}
.x13_c00479{left:374.880000pt;}
.x32_c00479{left:378.480000pt;}
.x74_c00479{left:379.920000pt;}
.x5f_c00479{left:382.560000pt;}
.x1a_c00479{left:384.240000pt;}
.xb4_c00479{left:385.921333pt;}
.x7_c00479{left:389.040000pt;}
.x9b_c00479{left:393.840000pt;}
.xad_c00479{left:394.854667pt;}
.x52_c00479{left:398.400000pt;}
.x14_c00479{left:401.760000pt;}
.x45_c00479{left:402.720000pt;}
.x57_c00479{left:404.880000pt;}
.x9c_c00479{left:405.840000pt;}
.x28_c00479{left:407.520000pt;}
.x60_c00479{left:410.640000pt;}
.x7e_c00479{left:413.280000pt;}
.x22_c00479{left:416.160000pt;}
.x4c_c00479{left:417.840000pt;}
.x40_c00479{left:420.720000pt;}
.xa4_c00479{left:424.320000pt;}
.x87_c00479{left:426.720000pt;}
.x1b_c00479{left:429.360000pt;}
.x75_c00479{left:430.800000pt;}
.xaa_c00479{left:432.960000pt;}
.x4d_c00479{left:434.400000pt;}
.x15_c00479{left:435.600000pt;}
.x9d_c00479{left:438.960000pt;}
.xb5_c00479{left:441.121333pt;}
.x6a_c00479{left:442.560000pt;}
.x29_c00479{left:445.200000pt;}
.xbf_c00479{left:446.434667pt;}
.x16_c00479{left:447.840000pt;}
.x88_c00479{left:450.240000pt;}
.x76_c00479{left:455.040000pt;}
.x3a_c00479{left:457.680000pt;}
.x61_c00479{left:459.120000pt;}
.x7f_c00479{left:461.760000pt;}
.x41_c00479{left:463.440000pt;}
.x77_c00479{left:464.880000pt;}
.x1c_c00479{left:468.240000pt;}
.x8f_c00479{left:471.600000pt;}
.xae_c00479{left:472.578667pt;}
.xb6_c00479{left:474.481333pt;}
.xbb_c00479{left:476.641333pt;}
.x89_c00479{left:480.000000pt;}
.x23_c00479{left:481.200000pt;}
.xaf_c00479{left:482.173333pt;}
.x2a_c00479{left:484.560000pt;}
.x6b_c00479{left:487.200000pt;}
.xb0_c00479{left:488.957333pt;}
.xbc_c00479{left:490.561333pt;}
.xa1_c00479{left:497.280000pt;}
.x78_c00479{left:498.480000pt;}
.xc0_c00479{left:499.374667pt;}
.x2b_c00479{left:504.960000pt;}
.x62_c00479{left:508.080000pt;}
.x97_c00479{left:509.040000pt;}
.x80_c00479{left:510.960000pt;}
.x79_c00479{left:512.400000pt;}
.x6c_c00479{left:513.360000pt;}
.xbd_c00479{left:514.801333pt;}
.xb1_c00479{left:517.008000pt;}
.xa5_c00479{left:520.560000pt;}
.xb7_c00479{left:522.001333pt;}
.x90_c00479{left:524.400000pt;}
.x8a_c00479{left:526.080000pt;}
.xb2_c00479{left:528.810667pt;}
.x6d_c00479{left:531.120000pt;}
.x91_c00479{left:532.080000pt;}
.x63_c00479{left:534.000000pt;}
.x64_c00479{left:542.160000pt;}
.xb8_c00479{left:547.201333pt;}
.x2c_c00479{left:548.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_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_d24df5124729fd0a4ee0fe1e.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;}
.m6c_c00480{transform:matrix(0.011957,-0.000263,0.005499,0.249940,0,0);-ms-transform:matrix(0.011957,-0.000263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.011957,-0.000263,0.005499,0.249940,0,0);}
.m9f_c00480{transform:matrix(0.015471,-0.000340,0.005499,0.249940,0,0);-ms-transform:matrix(0.015471,-0.000340,0.005499,0.249940,0,0);-webkit-transform:matrix(0.015471,-0.000340,0.005499,0.249940,0,0);}
.m5_c00480{transform:matrix(0.018361,-0.000404,0.005499,0.249940,0,0);-ms-transform:matrix(0.018361,-0.000404,0.005499,0.249940,0,0);-webkit-transform:matrix(0.018361,-0.000404,0.005499,0.249940,0,0);}
.mc7_c00480{transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.031970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031970,0.000000,0.000000,0.250000,0,0);}
.m98_c00480{transform:matrix(0.067189,-0.001478,0.005499,0.249940,0,0);-ms-transform:matrix(0.067189,-0.001478,0.005499,0.249940,0,0);-webkit-transform:matrix(0.067189,-0.001478,0.005499,0.249940,0,0);}
.m79_c00480{transform:matrix(0.083725,-0.001842,0.005499,0.249940,0,0);-ms-transform:matrix(0.083725,-0.001842,0.005499,0.249940,0,0);-webkit-transform:matrix(0.083725,-0.001842,0.005499,0.249940,0,0);}
.mde_c00480{transform:matrix(0.132833,-0.002125,0.003999,0.249968,0,0);-ms-transform:matrix(0.132833,-0.002125,0.003999,0.249968,0,0);-webkit-transform:matrix(0.132833,-0.002125,0.003999,0.249968,0,0);}
.m60_c00480{transform:matrix(0.133568,-0.002938,0.005499,0.249940,0,0);-ms-transform:matrix(0.133568,-0.002938,0.005499,0.249940,0,0);-webkit-transform:matrix(0.133568,-0.002938,0.005499,0.249940,0,0);}
.mdc_c00480{transform:matrix(0.139197,-0.002227,0.003999,0.249968,0,0);-ms-transform:matrix(0.139197,-0.002227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139197,-0.002227,0.003999,0.249968,0,0);}
.m1c_c00480{transform:matrix(0.139421,-0.003067,0.005499,0.249940,0,0);-ms-transform:matrix(0.139421,-0.003067,0.005499,0.249940,0,0);-webkit-transform:matrix(0.139421,-0.003067,0.005499,0.249940,0,0);}
.m145_c00480{transform:matrix(0.142467,-0.002279,0.003999,0.249968,0,0);-ms-transform:matrix(0.142467,-0.002279,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142467,-0.002279,0.003999,0.249968,0,0);}
.m3d_c00480{transform:matrix(0.147499,-0.003245,0.005499,0.249940,0,0);-ms-transform:matrix(0.147499,-0.003245,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147499,-0.003245,0.005499,0.249940,0,0);}
.m78_c00480{transform:matrix(0.148654,-0.003270,0.005499,0.249940,0,0);-ms-transform:matrix(0.148654,-0.003270,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148654,-0.003270,0.005499,0.249940,0,0);}
.m1f_c00480{transform:matrix(0.148844,-0.003275,0.005499,0.249940,0,0);-ms-transform:matrix(0.148844,-0.003275,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148844,-0.003275,0.005499,0.249940,0,0);}
.me4_c00480{transform:matrix(0.149021,-0.002384,0.003999,0.249968,0,0);-ms-transform:matrix(0.149021,-0.002384,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149021,-0.002384,0.003999,0.249968,0,0);}
.mf6_c00480{transform:matrix(0.150881,-0.002716,0.004499,0.249960,0,0);-ms-transform:matrix(0.150881,-0.002716,0.004499,0.249960,0,0);-webkit-transform:matrix(0.150881,-0.002716,0.004499,0.249960,0,0);}
.m161_c00480{transform:matrix(0.151912,-0.004709,0.007746,0.249880,0,0);-ms-transform:matrix(0.151912,-0.004709,0.007746,0.249880,0,0);-webkit-transform:matrix(0.151912,-0.004709,0.007746,0.249880,0,0);}
.m12e_c00480{transform:matrix(0.152567,-0.002899,0.004749,0.249955,0,0);-ms-transform:matrix(0.152567,-0.002899,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152567,-0.002899,0.004749,0.249955,0,0);}
.m10d_c00480{transform:matrix(0.152730,-0.002749,0.004499,0.249960,0,0);-ms-transform:matrix(0.152730,-0.002749,0.004499,0.249960,0,0);-webkit-transform:matrix(0.152730,-0.002749,0.004499,0.249960,0,0);}
.m11f_c00480{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);}
.m85_c00480{transform:matrix(0.154458,-0.003398,0.005499,0.249940,0,0);-ms-transform:matrix(0.154458,-0.003398,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154458,-0.003398,0.005499,0.249940,0,0);}
.m4_c00480{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);}
.m134_c00480{transform:matrix(0.155232,-0.002949,0.004749,0.249955,0,0);-ms-transform:matrix(0.155232,-0.002949,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155232,-0.002949,0.004749,0.249955,0,0);}
.m5f_c00480{transform:matrix(0.156362,-0.003440,0.005499,0.249940,0,0);-ms-transform:matrix(0.156362,-0.003440,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156362,-0.003440,0.005499,0.249940,0,0);}
.m24_c00480{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);}
.m65_c00480{transform:matrix(0.156517,-0.003443,0.005499,0.249940,0,0);-ms-transform:matrix(0.156517,-0.003443,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156517,-0.003443,0.005499,0.249940,0,0);}
.m5d_c00480{transform:matrix(0.156862,-0.003451,0.005499,0.249940,0,0);-ms-transform:matrix(0.156862,-0.003451,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156862,-0.003451,0.005499,0.249940,0,0);}
.m20_c00480{transform:matrix(0.157102,-0.003456,0.005499,0.249940,0,0);-ms-transform:matrix(0.157102,-0.003456,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157102,-0.003456,0.005499,0.249940,0,0);}
.mff_c00480{transform:matrix(0.157410,-0.002833,0.004499,0.249960,0,0);-ms-transform:matrix(0.157410,-0.002833,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157410,-0.002833,0.004499,0.249960,0,0);}
.md5_c00480{transform:matrix(0.157485,-0.002520,0.003999,0.249968,0,0);-ms-transform:matrix(0.157485,-0.002520,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157485,-0.002520,0.003999,0.249968,0,0);}
.m4c_c00480{transform:matrix(0.157882,-0.003473,0.005499,0.249940,0,0);-ms-transform:matrix(0.157882,-0.003473,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157882,-0.003473,0.005499,0.249940,0,0);}
.m110_c00480{transform:matrix(0.158149,-0.002847,0.004499,0.249960,0,0);-ms-transform:matrix(0.158149,-0.002847,0.004499,0.249960,0,0);-webkit-transform:matrix(0.158149,-0.002847,0.004499,0.249960,0,0);}
.m22_c00480{transform:matrix(0.158987,-0.003498,0.005499,0.249940,0,0);-ms-transform:matrix(0.158987,-0.003498,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158987,-0.003498,0.005499,0.249940,0,0);}
.mfa_c00480{transform:matrix(0.159169,-0.002865,0.004499,0.249960,0,0);-ms-transform:matrix(0.159169,-0.002865,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159169,-0.002865,0.004499,0.249960,0,0);}
.m3f_c00480{transform:matrix(0.159431,-0.003507,0.005499,0.249940,0,0);-ms-transform:matrix(0.159431,-0.003507,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159431,-0.003507,0.005499,0.249940,0,0);}
.m30_c00480{transform:matrix(0.159711,-0.003514,0.005499,0.249940,0,0);-ms-transform:matrix(0.159711,-0.003514,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159711,-0.003514,0.005499,0.249940,0,0);}
.mdf_c00480{transform:matrix(0.159750,-0.002556,0.003999,0.249968,0,0);-ms-transform:matrix(0.159750,-0.002556,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159750,-0.002556,0.003999,0.249968,0,0);}
.m147_c00480{transform:matrix(0.160664,-0.002571,0.003999,0.249968,0,0);-ms-transform:matrix(0.160664,-0.002571,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160664,-0.002571,0.003999,0.249968,0,0);}
.m5c_c00480{transform:matrix(0.161471,-0.003552,0.005499,0.249940,0,0);-ms-transform:matrix(0.161471,-0.003552,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161471,-0.003552,0.005499,0.249940,0,0);}
.mb1_c00480{transform:matrix(0.164742,-0.003295,0.004999,0.249950,0,0);-ms-transform:matrix(0.164742,-0.003295,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164742,-0.003295,0.004999,0.249950,0,0);}
.m87_c00480{transform:matrix(0.165975,-0.003651,0.005499,0.249940,0,0);-ms-transform:matrix(0.165975,-0.003651,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165975,-0.003651,0.005499,0.249940,0,0);}
.m132_c00480{transform:matrix(0.166160,-0.003157,0.004749,0.249955,0,0);-ms-transform:matrix(0.166160,-0.003157,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166160,-0.003157,0.004749,0.249955,0,0);}
.m16_c00480{transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);-ms-transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166215,-0.003657,0.005499,0.249940,0,0);}
.mf9_c00480{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);}
.m1b_c00480{transform:matrix(0.166675,-0.003667,0.005499,0.249940,0,0);-ms-transform:matrix(0.166675,-0.003667,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166675,-0.003667,0.005499,0.249940,0,0);}
.m124_c00480{transform:matrix(0.166745,-0.003168,0.004749,0.249955,0,0);-ms-transform:matrix(0.166745,-0.003168,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166745,-0.003168,0.004749,0.249955,0,0);}
.m137_c00480{transform:matrix(0.167790,-0.003188,0.004749,0.249955,0,0);-ms-transform:matrix(0.167790,-0.003188,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167790,-0.003188,0.004749,0.249955,0,0);}
.m76_c00480{transform:matrix(0.167819,-0.003692,0.005499,0.249940,0,0);-ms-transform:matrix(0.167819,-0.003692,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167819,-0.003692,0.005499,0.249940,0,0);}
.m3b_c00480{transform:matrix(0.167929,-0.003694,0.005499,0.249940,0,0);-ms-transform:matrix(0.167929,-0.003694,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167929,-0.003694,0.005499,0.249940,0,0);}
.m13c_c00480{transform:matrix(0.168118,-0.002690,0.003999,0.249968,0,0);-ms-transform:matrix(0.168118,-0.002690,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168118,-0.002690,0.003999,0.249968,0,0);}
.m128_c00480{transform:matrix(0.168655,-0.003204,0.004749,0.249955,0,0);-ms-transform:matrix(0.168655,-0.003204,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168655,-0.003204,0.004749,0.249955,0,0);}
.m5a_c00480{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);}
.me5_c00480{transform:matrix(0.169503,-0.002712,0.003999,0.249968,0,0);-ms-transform:matrix(0.169503,-0.002712,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169503,-0.002712,0.003999,0.249968,0,0);}
.m36_c00480{transform:matrix(0.169749,-0.003734,0.005499,0.249940,0,0);-ms-transform:matrix(0.169749,-0.003734,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169749,-0.003734,0.005499,0.249940,0,0);}
.mc9_c00480{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);}
.m59_c00480{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);}
.m123_c00480{transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);-ms-transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170159,-0.003233,0.004749,0.249955,0,0);}
.mbf_c00480{transform:matrix(0.170227,-0.003575,0.005249,0.249945,0,0);-ms-transform:matrix(0.170227,-0.003575,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170227,-0.003575,0.005249,0.249945,0,0);}
.m2f_c00480{transform:matrix(0.170384,-0.003748,0.005499,0.249940,0,0);-ms-transform:matrix(0.170384,-0.003748,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170384,-0.003748,0.005499,0.249940,0,0);}
.m2c_c00480{transform:matrix(0.170434,-0.003750,0.005499,0.249940,0,0);-ms-transform:matrix(0.170434,-0.003750,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170434,-0.003750,0.005499,0.249940,0,0);}
.m33_c00480{transform:matrix(0.170774,-0.003757,0.005499,0.249940,0,0);-ms-transform:matrix(0.170774,-0.003757,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170774,-0.003757,0.005499,0.249940,0,0);}
.m75_c00480{transform:matrix(0.170809,-0.003758,0.005499,0.249940,0,0);-ms-transform:matrix(0.170809,-0.003758,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170809,-0.003758,0.005499,0.249940,0,0);}
.m17_c00480{transform:matrix(0.171149,-0.003765,0.005499,0.249940,0,0);-ms-transform:matrix(0.171149,-0.003765,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171149,-0.003765,0.005499,0.249940,0,0);}
.me6_c00480{transform:matrix(0.171233,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171233,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171233,-0.002740,0.003999,0.249968,0,0);}
.m1a_c00480{transform:matrix(0.171389,-0.003771,0.005499,0.249940,0,0);-ms-transform:matrix(0.171389,-0.003771,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171389,-0.003771,0.005499,0.249940,0,0);}
.md2_c00480{transform:matrix(0.171436,-0.003429,0.004999,0.249950,0,0);-ms-transform:matrix(0.171436,-0.003429,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171436,-0.003429,0.004999,0.249950,0,0);}
.ma9_c00480{transform:matrix(0.171516,-0.003430,0.004999,0.249950,0,0);-ms-transform:matrix(0.171516,-0.003430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171516,-0.003430,0.004999,0.249950,0,0);}
.m12b_c00480{transform:matrix(0.172324,-0.003274,0.004749,0.249955,0,0);-ms-transform:matrix(0.172324,-0.003274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172324,-0.003274,0.004749,0.249955,0,0);}
.maf_c00480{transform:matrix(0.172680,-0.003454,0.004999,0.249950,0,0);-ms-transform:matrix(0.172680,-0.003454,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172680,-0.003454,0.004999,0.249950,0,0);}
.m139_c00480{transform:matrix(0.172684,-0.003281,0.004749,0.249955,0,0);-ms-transform:matrix(0.172684,-0.003281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172684,-0.003281,0.004749,0.249955,0,0);}
.m11c_c00480{transform:matrix(0.172929,-0.003286,0.004749,0.249955,0,0);-ms-transform:matrix(0.172929,-0.003286,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172929,-0.003286,0.004749,0.249955,0,0);}
.me3_c00480{transform:matrix(0.173148,-0.002770,0.003999,0.249968,0,0);-ms-transform:matrix(0.173148,-0.002770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173148,-0.002770,0.003999,0.249968,0,0);}
.m5b_c00480{transform:matrix(0.173173,-0.003810,0.005499,0.249940,0,0);-ms-transform:matrix(0.173173,-0.003810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173173,-0.003810,0.005499,0.249940,0,0);}
.m109_c00480{transform:matrix(0.173252,-0.003119,0.004499,0.249960,0,0);-ms-transform:matrix(0.173252,-0.003119,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173252,-0.003119,0.004499,0.249960,0,0);}
.mac_c00480{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);}
.m9_c00480{transform:matrix(0.173368,-0.003814,0.005499,0.249940,0,0);-ms-transform:matrix(0.173368,-0.003814,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173368,-0.003814,0.005499,0.249940,0,0);}
.m10_c00480{transform:matrix(0.173588,-0.003819,0.005499,0.249940,0,0);-ms-transform:matrix(0.173588,-0.003819,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173588,-0.003819,0.005499,0.249940,0,0);}
.m10c_c00480{transform:matrix(0.173762,-0.003128,0.004499,0.249960,0,0);-ms-transform:matrix(0.173762,-0.003128,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173762,-0.003128,0.004499,0.249960,0,0);}
.m6f_c00480{transform:matrix(0.173873,-0.003825,0.005499,0.249940,0,0);-ms-transform:matrix(0.173873,-0.003825,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173873,-0.003825,0.005499,0.249940,0,0);}
.m143_c00480{transform:matrix(0.174048,-0.002785,0.003999,0.249968,0,0);-ms-transform:matrix(0.174048,-0.002785,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174048,-0.002785,0.003999,0.249968,0,0);}
.m10b_c00480{transform:matrix(0.174182,-0.003135,0.004499,0.249960,0,0);-ms-transform:matrix(0.174182,-0.003135,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174182,-0.003135,0.004499,0.249960,0,0);}
.m62_c00480{transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);-ms-transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174278,-0.003834,0.005499,0.249940,0,0);}
.m5e_c00480{transform:matrix(0.174303,-0.003835,0.005499,0.249940,0,0);-ms-transform:matrix(0.174303,-0.003835,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174303,-0.003835,0.005499,0.249940,0,0);}
.ma2_c00480{transform:matrix(0.174520,-0.003490,0.004999,0.249950,0,0);-ms-transform:matrix(0.174520,-0.003490,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174520,-0.003490,0.004999,0.249950,0,0);}
.m19_c00480{transform:matrix(0.174548,-0.003840,0.005499,0.249940,0,0);-ms-transform:matrix(0.174548,-0.003840,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174548,-0.003840,0.005499,0.249940,0,0);}
.mb2_c00480{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);}
.md0_c00480{transform:matrix(0.174740,-0.003495,0.004999,0.249950,0,0);-ms-transform:matrix(0.174740,-0.003495,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174740,-0.003495,0.004999,0.249950,0,0);}
.mf7_c00480{transform:matrix(0.175227,-0.003154,0.004499,0.249960,0,0);-ms-transform:matrix(0.175227,-0.003154,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175227,-0.003154,0.004499,0.249960,0,0);}
.mab_c00480{transform:matrix(0.175305,-0.003506,0.004999,0.249950,0,0);-ms-transform:matrix(0.175305,-0.003506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175305,-0.003506,0.004999,0.249950,0,0);}
.m69_c00480{transform:matrix(0.176062,-0.003873,0.005499,0.249940,0,0);-ms-transform:matrix(0.176062,-0.003873,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176062,-0.003873,0.005499,0.249940,0,0);}
.m133_c00480{transform:matrix(0.177078,-0.003364,0.004749,0.249955,0,0);-ms-transform:matrix(0.177078,-0.003364,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177078,-0.003364,0.004749,0.249955,0,0);}
.m151_c00480{transform:matrix(0.177895,-0.005159,0.007247,0.249895,0,0);-ms-transform:matrix(0.177895,-0.005159,0.007247,0.249895,0,0);-webkit-transform:matrix(0.177895,-0.005159,0.007247,0.249895,0,0);}
.m66_c00480{transform:matrix(0.177907,-0.003914,0.005499,0.249940,0,0);-ms-transform:matrix(0.177907,-0.003914,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177907,-0.003914,0.005499,0.249940,0,0);}
.md9_c00480{transform:matrix(0.177932,-0.002847,0.003999,0.249968,0,0);-ms-transform:matrix(0.177932,-0.002847,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177932,-0.002847,0.003999,0.249968,0,0);}
.m130_c00480{transform:matrix(0.178048,-0.003383,0.004749,0.249955,0,0);-ms-transform:matrix(0.178048,-0.003383,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178048,-0.003383,0.004749,0.249955,0,0);}
.ma5_c00480{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);}
.m127_c00480{transform:matrix(0.179143,-0.003404,0.004749,0.249955,0,0);-ms-transform:matrix(0.179143,-0.003404,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179143,-0.003404,0.004749,0.249955,0,0);}
.m7_c00480{transform:matrix(0.179162,-0.003942,0.005499,0.249940,0,0);-ms-transform:matrix(0.179162,-0.003942,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179162,-0.003942,0.005499,0.249940,0,0);}
.mc5_c00480{transform:matrix(0.179285,-0.003765,0.005249,0.249945,0,0);-ms-transform:matrix(0.179285,-0.003765,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179285,-0.003765,0.005249,0.249945,0,0);}
.m113_c00480{transform:matrix(0.179373,-0.003408,0.004749,0.249955,0,0);-ms-transform:matrix(0.179373,-0.003408,0.004749,0.249955,0,0);-webkit-transform:matrix(0.179373,-0.003408,0.004749,0.249955,0,0);}
.m99_c00480{transform:matrix(0.179452,-0.003948,0.005499,0.249940,0,0);-ms-transform:matrix(0.179452,-0.003948,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179452,-0.003948,0.005499,0.249940,0,0);}
.mdd_c00480{transform:matrix(0.179692,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179692,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179692,-0.002875,0.003999,0.249968,0,0);}
.m4a_c00480{transform:matrix(0.179806,-0.003956,0.005499,0.249940,0,0);-ms-transform:matrix(0.179806,-0.003956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179806,-0.003956,0.005499,0.249940,0,0);}
.m25_c00480{transform:matrix(0.179856,-0.003957,0.005499,0.249940,0,0);-ms-transform:matrix(0.179856,-0.003957,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179856,-0.003957,0.005499,0.249940,0,0);}
.mad_c00480{transform:matrix(0.180214,-0.003604,0.004999,0.249950,0,0);-ms-transform:matrix(0.180214,-0.003604,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180214,-0.003604,0.004999,0.249950,0,0);}
.mc2_c00480{transform:matrix(0.180565,-0.003792,0.005249,0.249945,0,0);-ms-transform:matrix(0.180565,-0.003792,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180565,-0.003792,0.005249,0.249945,0,0);}
.ma_c00480{transform:matrix(0.180826,-0.003978,0.005499,0.249940,0,0);-ms-transform:matrix(0.180826,-0.003978,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180826,-0.003978,0.005499,0.249940,0,0);}
.m138_c00480{transform:matrix(0.181097,-0.003441,0.004749,0.249955,0,0);-ms-transform:matrix(0.181097,-0.003441,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181097,-0.003441,0.004749,0.249955,0,0);}
.m7d_c00480{transform:matrix(0.181226,-0.003987,0.005499,0.249940,0,0);-ms-transform:matrix(0.181226,-0.003987,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181226,-0.003987,0.005499,0.249940,0,0);}
.mda_c00480{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);}
.mae_c00480{transform:matrix(0.181969,-0.003639,0.004999,0.249950,0,0);-ms-transform:matrix(0.181969,-0.003639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181969,-0.003639,0.004999,0.249950,0,0);}
.m44_c00480{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);}
.m14f_c00480{transform:matrix(0.182818,-0.005302,0.007247,0.249895,0,0);-ms-transform:matrix(0.182818,-0.005302,0.007247,0.249895,0,0);-webkit-transform:matrix(0.182818,-0.005302,0.007247,0.249895,0,0);}
.mb0_c00480{transform:matrix(0.182958,-0.003659,0.004999,0.249950,0,0);-ms-transform:matrix(0.182958,-0.003659,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182958,-0.003659,0.004999,0.249950,0,0);}
.m2b_c00480{transform:matrix(0.183116,-0.004029,0.005499,0.249940,0,0);-ms-transform:matrix(0.183116,-0.004029,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183116,-0.004029,0.005499,0.249940,0,0);}
.mf3_c00480{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);}
.m10f_c00480{transform:matrix(0.183885,-0.003310,0.004499,0.249960,0,0);-ms-transform:matrix(0.183885,-0.003310,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183885,-0.003310,0.004499,0.249960,0,0);}
.m100_c00480{transform:matrix(0.183990,-0.003312,0.004499,0.249960,0,0);-ms-transform:matrix(0.183990,-0.003312,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183990,-0.003312,0.004499,0.249960,0,0);}
.m21_c00480{transform:matrix(0.184750,-0.004065,0.005499,0.249940,0,0);-ms-transform:matrix(0.184750,-0.004065,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184750,-0.004065,0.005499,0.249940,0,0);}
.m71_c00480{transform:matrix(0.184825,-0.004066,0.005499,0.249940,0,0);-ms-transform:matrix(0.184825,-0.004066,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184825,-0.004066,0.005499,0.249940,0,0);}
.m68_c00480{transform:matrix(0.184865,-0.004067,0.005499,0.249940,0,0);-ms-transform:matrix(0.184865,-0.004067,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184865,-0.004067,0.005499,0.249940,0,0);}
.m11b_c00480{transform:matrix(0.184972,-0.003514,0.004749,0.249955,0,0);-ms-transform:matrix(0.184972,-0.003514,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184972,-0.003514,0.004749,0.249955,0,0);}
.m93_c00480{transform:matrix(0.185055,-0.004071,0.005499,0.249940,0,0);-ms-transform:matrix(0.185055,-0.004071,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185055,-0.004071,0.005499,0.249940,0,0);}
.m12f_c00480{transform:matrix(0.185587,-0.003526,0.004749,0.249955,0,0);-ms-transform:matrix(0.185587,-0.003526,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185587,-0.003526,0.004749,0.249955,0,0);}
.me0_c00480{transform:matrix(0.185646,-0.002970,0.003999,0.249968,0,0);-ms-transform:matrix(0.185646,-0.002970,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185646,-0.002970,0.003999,0.249968,0,0);}
.m155_c00480{transform:matrix(0.185887,-0.005391,0.007247,0.249895,0,0);-ms-transform:matrix(0.185887,-0.005391,0.007247,0.249895,0,0);-webkit-transform:matrix(0.185887,-0.005391,0.007247,0.249895,0,0);}
.mbc_c00480{transform:matrix(0.185939,-0.003905,0.005249,0.249945,0,0);-ms-transform:matrix(0.185939,-0.003905,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185939,-0.003905,0.005249,0.249945,0,0);}
.md8_c00480{transform:matrix(0.185996,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.185996,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185996,-0.002976,0.003999,0.249968,0,0);}
.mf2_c00480{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);}
.mca_c00480{transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);-ms-transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186703,-0.003734,0.004999,0.249950,0,0);}
.ma1_c00480{transform:matrix(0.186953,-0.003739,0.004999,0.249950,0,0);-ms-transform:matrix(0.186953,-0.003739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186953,-0.003739,0.004999,0.249950,0,0);}
.m154_c00480{transform:matrix(0.187291,-0.005431,0.007247,0.249895,0,0);-ms-transform:matrix(0.187291,-0.005431,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187291,-0.005431,0.007247,0.249895,0,0);}
.m15c_c00480{transform:matrix(0.187540,-0.005814,0.007746,0.249880,0,0);-ms-transform:matrix(0.187540,-0.005814,0.007746,0.249880,0,0);-webkit-transform:matrix(0.187540,-0.005814,0.007746,0.249880,0,0);}
.m157_c00480{transform:matrix(0.187796,-0.005446,0.007247,0.249895,0,0);-ms-transform:matrix(0.187796,-0.005446,0.007247,0.249895,0,0);-webkit-transform:matrix(0.187796,-0.005446,0.007247,0.249895,0,0);}
.m11a_c00480{transform:matrix(0.188331,-0.003578,0.004749,0.249955,0,0);-ms-transform:matrix(0.188331,-0.003578,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188331,-0.003578,0.004749,0.249955,0,0);}
.m12_c00480{transform:matrix(0.188474,-0.004146,0.005499,0.249940,0,0);-ms-transform:matrix(0.188474,-0.004146,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188474,-0.004146,0.005499,0.249940,0,0);}
.m8_c00480{transform:matrix(0.188499,-0.004147,0.005499,0.249940,0,0);-ms-transform:matrix(0.188499,-0.004147,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188499,-0.004147,0.005499,0.249940,0,0);}
.m23_c00480{transform:matrix(0.188644,-0.004150,0.005499,0.249940,0,0);-ms-transform:matrix(0.188644,-0.004150,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188644,-0.004150,0.005499,0.249940,0,0);}
.me1_c00480{transform:matrix(0.188791,-0.003021,0.003999,0.249968,0,0);-ms-transform:matrix(0.188791,-0.003021,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188791,-0.003021,0.003999,0.249968,0,0);}
.m105_c00480{transform:matrix(0.189074,-0.003403,0.004499,0.249960,0,0);-ms-transform:matrix(0.189074,-0.003403,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189074,-0.003403,0.004499,0.249960,0,0);}
.me9_c00480{transform:matrix(0.189286,-0.003029,0.003999,0.249968,0,0);-ms-transform:matrix(0.189286,-0.003029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189286,-0.003029,0.003999,0.249968,0,0);}
.ma7_c00480{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);}
.m3c_c00480{transform:matrix(0.189349,-0.004166,0.005499,0.249940,0,0);-ms-transform:matrix(0.189349,-0.004166,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189349,-0.004166,0.005499,0.249940,0,0);}
.m83_c00480{transform:matrix(0.189624,-0.004172,0.005499,0.249940,0,0);-ms-transform:matrix(0.189624,-0.004172,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189624,-0.004172,0.005499,0.249940,0,0);}
.m106_c00480{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);}
.m150_c00480{transform:matrix(0.189885,-0.005507,0.007247,0.249895,0,0);-ms-transform:matrix(0.189885,-0.005507,0.007247,0.249895,0,0);-webkit-transform:matrix(0.189885,-0.005507,0.007247,0.249895,0,0);}
.mf_c00480{transform:matrix(0.189984,-0.004180,0.005499,0.249940,0,0);-ms-transform:matrix(0.189984,-0.004180,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189984,-0.004180,0.005499,0.249940,0,0);}
.mdb_c00480{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);}
.m1d_c00480{transform:matrix(0.190549,-0.004192,0.005499,0.249940,0,0);-ms-transform:matrix(0.190549,-0.004192,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190549,-0.004192,0.005499,0.249940,0,0);}
.mbd_c00480{transform:matrix(0.190868,-0.004008,0.005249,0.249945,0,0);-ms-transform:matrix(0.190868,-0.004008,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190868,-0.004008,0.005249,0.249945,0,0);}
.mce_c00480{transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);-ms-transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);}
.m72_c00480{transform:matrix(0.190894,-0.004200,0.005499,0.249940,0,0);-ms-transform:matrix(0.190894,-0.004200,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190894,-0.004200,0.005499,0.249940,0,0);}
.m50_c00480{transform:matrix(0.191539,-0.004214,0.005499,0.249940,0,0);-ms-transform:matrix(0.191539,-0.004214,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191539,-0.004214,0.005499,0.249940,0,0);}
.m91_c00480{transform:matrix(0.191975,-0.004799,0.006248,0.249922,0,0);-ms-transform:matrix(0.191975,-0.004799,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191975,-0.004799,0.006248,0.249922,0,0);}
.m96_c00480{transform:matrix(0.192124,-0.004227,0.005499,0.249940,0,0);-ms-transform:matrix(0.192124,-0.004227,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192124,-0.004227,0.005499,0.249940,0,0);}
.m97_c00480{transform:matrix(0.192348,-0.004232,0.005499,0.249940,0,0);-ms-transform:matrix(0.192348,-0.004232,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192348,-0.004232,0.005499,0.249940,0,0);}
.mb5_c00480{transform:matrix(0.192598,-0.004237,0.005499,0.249940,0,0);-ms-transform:matrix(0.192598,-0.004237,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192598,-0.004237,0.005499,0.249940,0,0);}
.m47_c00480{transform:matrix(0.193093,-0.004248,0.005499,0.249940,0,0);-ms-transform:matrix(0.193093,-0.004248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193093,-0.004248,0.005499,0.249940,0,0);}
.mb8_c00480{transform:matrix(0.193273,-0.004252,0.005499,0.249940,0,0);-ms-transform:matrix(0.193273,-0.004252,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193273,-0.004252,0.005499,0.249940,0,0);}
.m152_c00480{transform:matrix(0.193334,-0.005607,0.007247,0.249895,0,0);-ms-transform:matrix(0.193334,-0.005607,0.007247,0.249895,0,0);-webkit-transform:matrix(0.193334,-0.005607,0.007247,0.249895,0,0);}
.mb_c00480{transform:matrix(0.193463,-0.004256,0.005499,0.249940,0,0);-ms-transform:matrix(0.193463,-0.004256,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193463,-0.004256,0.005499,0.249940,0,0);}
.m18_c00480{transform:matrix(0.193903,-0.004266,0.005499,0.249940,0,0);-ms-transform:matrix(0.193903,-0.004266,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193903,-0.004266,0.005499,0.249940,0,0);}
.mc1_c00480{transform:matrix(0.193927,-0.004072,0.005249,0.249945,0,0);-ms-transform:matrix(0.193927,-0.004072,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193927,-0.004072,0.005249,0.249945,0,0);}
.m131_c00480{transform:matrix(0.194515,-0.003696,0.004749,0.249955,0,0);-ms-transform:matrix(0.194515,-0.003696,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194515,-0.003696,0.004749,0.249955,0,0);}
.mfb_c00480{transform:matrix(0.194733,-0.003505,0.004499,0.249960,0,0);-ms-transform:matrix(0.194733,-0.003505,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194733,-0.003505,0.004499,0.249960,0,0);}
.m51_c00480{transform:matrix(0.194823,-0.004286,0.005499,0.249940,0,0);-ms-transform:matrix(0.194823,-0.004286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194823,-0.004286,0.005499,0.249940,0,0);}
.m114_c00480{transform:matrix(0.194950,-0.003704,0.004749,0.249955,0,0);-ms-transform:matrix(0.194950,-0.003704,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194950,-0.003704,0.004749,0.249955,0,0);}
.m6_c00480{transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);-ms-transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195453,-0.004300,0.005499,0.249940,0,0);}
.m122_c00480{transform:matrix(0.195870,-0.003722,0.004749,0.249955,0,0);-ms-transform:matrix(0.195870,-0.003722,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195870,-0.003722,0.004749,0.249955,0,0);}
.m10a_c00480{transform:matrix(0.195953,-0.003527,0.004499,0.249960,0,0);-ms-transform:matrix(0.195953,-0.003527,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195953,-0.003527,0.004499,0.249960,0,0);}
.m43_c00480{transform:matrix(0.195988,-0.004312,0.005499,0.249940,0,0);-ms-transform:matrix(0.195988,-0.004312,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195988,-0.004312,0.005499,0.249940,0,0);}
.m88_c00480{transform:matrix(0.196063,-0.004313,0.005499,0.249940,0,0);-ms-transform:matrix(0.196063,-0.004313,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196063,-0.004313,0.005499,0.249940,0,0);}
.m31_c00480{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);}
.m119_c00480{transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);-ms-transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196345,-0.003731,0.004749,0.249955,0,0);}
.m39_c00480{transform:matrix(0.196452,-0.004322,0.005499,0.249940,0,0);-ms-transform:matrix(0.196452,-0.004322,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196452,-0.004322,0.005499,0.249940,0,0);}
.md_c00480{transform:matrix(0.196747,-0.004328,0.005499,0.249940,0,0);-ms-transform:matrix(0.196747,-0.004328,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196747,-0.004328,0.005499,0.249940,0,0);}
.m1e_c00480{transform:matrix(0.196862,-0.004331,0.005499,0.249940,0,0);-ms-transform:matrix(0.196862,-0.004331,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196862,-0.004331,0.005499,0.249940,0,0);}
.maa_c00480{transform:matrix(0.197041,-0.003941,0.004999,0.249950,0,0);-ms-transform:matrix(0.197041,-0.003941,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197041,-0.003941,0.004999,0.249950,0,0);}
.m7e_c00480{transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);-ms-transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197117,-0.004337,0.005499,0.249940,0,0);}
.m101_c00480{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);}
.m14_c00480{transform:matrix(0.197202,-0.004338,0.005499,0.249940,0,0);-ms-transform:matrix(0.197202,-0.004338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197202,-0.004338,0.005499,0.249940,0,0);}
.ma0_c00480{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);}
.m9e_c00480{transform:matrix(0.197552,-0.004346,0.005499,0.249940,0,0);-ms-transform:matrix(0.197552,-0.004346,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197552,-0.004346,0.005499,0.249940,0,0);}
.m70_c00480{transform:matrix(0.197672,-0.004349,0.005499,0.249940,0,0);-ms-transform:matrix(0.197672,-0.004349,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197672,-0.004349,0.005499,0.249940,0,0);}
.m9a_c00480{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);}
.m45_c00480{transform:matrix(0.198767,-0.004373,0.005499,0.249940,0,0);-ms-transform:matrix(0.198767,-0.004373,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198767,-0.004373,0.005499,0.249940,0,0);}
.m156_c00480{transform:matrix(0.198866,-0.005767,0.007247,0.249895,0,0);-ms-transform:matrix(0.198866,-0.005767,0.007247,0.249895,0,0);-webkit-transform:matrix(0.198866,-0.005767,0.007247,0.249895,0,0);}
.m74_c00480{transform:matrix(0.199122,-0.004381,0.005499,0.249940,0,0);-ms-transform:matrix(0.199122,-0.004381,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199122,-0.004381,0.005499,0.249940,0,0);}
.mbb_c00480{transform:matrix(0.199241,-0.004184,0.005249,0.249945,0,0);-ms-transform:matrix(0.199241,-0.004184,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199241,-0.004184,0.005249,0.249945,0,0);}
.m53_c00480{transform:matrix(0.199282,-0.004384,0.005499,0.249940,0,0);-ms-transform:matrix(0.199282,-0.004384,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199282,-0.004384,0.005499,0.249940,0,0);}
.m13d_c00480{transform:matrix(0.199519,-0.003192,0.003999,0.249968,0,0);-ms-transform:matrix(0.199519,-0.003192,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199519,-0.003192,0.003999,0.249968,0,0);}
.m144_c00480{transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);-ms-transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199619,-0.003194,0.003999,0.249968,0,0);}
.ma3_c00480{transform:matrix(0.199770,-0.003995,0.004999,0.249950,0,0);-ms-transform:matrix(0.199770,-0.003995,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199770,-0.003995,0.004999,0.249950,0,0);}
.m77_c00480{transform:matrix(0.199777,-0.004395,0.005499,0.249940,0,0);-ms-transform:matrix(0.199777,-0.004395,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199777,-0.004395,0.005499,0.249940,0,0);}
.m42_c00480{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);}
.m67_c00480{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);}
.mf8_c00480{transform:matrix(0.200348,-0.003606,0.004499,0.249960,0,0);-ms-transform:matrix(0.200348,-0.003606,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200348,-0.003606,0.004499,0.249960,0,0);}
.mf5_c00480{transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);-ms-transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200418,-0.003608,0.004499,0.249960,0,0);}
.m14c_c00480{transform:matrix(0.200546,-0.005816,0.007247,0.249895,0,0);-ms-transform:matrix(0.200546,-0.005816,0.007247,0.249895,0,0);-webkit-transform:matrix(0.200546,-0.005816,0.007247,0.249895,0,0);}
.mc0_c00480{transform:matrix(0.200746,-0.004216,0.005249,0.249945,0,0);-ms-transform:matrix(0.200746,-0.004216,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200746,-0.004216,0.005249,0.249945,0,0);}
.m103_c00480{transform:matrix(0.201097,-0.003620,0.004499,0.249960,0,0);-ms-transform:matrix(0.201097,-0.003620,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201097,-0.003620,0.004499,0.249960,0,0);}
.m4b_c00480{transform:matrix(0.201341,-0.004430,0.005499,0.249940,0,0);-ms-transform:matrix(0.201341,-0.004430,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201341,-0.004430,0.005499,0.249940,0,0);}
.m7c_c00480{transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);-ms-transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);}
.mfc_c00480{transform:matrix(0.201602,-0.003629,0.004499,0.249960,0,0);-ms-transform:matrix(0.201602,-0.003629,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201602,-0.003629,0.004499,0.249960,0,0);}
.m86_c00480{transform:matrix(0.201786,-0.004439,0.005499,0.249940,0,0);-ms-transform:matrix(0.201786,-0.004439,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201786,-0.004439,0.005499,0.249940,0,0);}
.mb4_c00480{transform:matrix(0.202016,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.202016,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202016,-0.004444,0.005499,0.249940,0,0);}
.m13a_c00480{transform:matrix(0.202139,-0.003841,0.004749,0.249955,0,0);-ms-transform:matrix(0.202139,-0.003841,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202139,-0.003841,0.004749,0.249955,0,0);}
.m11d_c00480{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);}
.md1_c00480{transform:matrix(0.202549,-0.004051,0.004999,0.249950,0,0);-ms-transform:matrix(0.202549,-0.004051,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202549,-0.004051,0.004999,0.249950,0,0);}
.m2a_c00480{transform:matrix(0.202636,-0.004458,0.005499,0.249940,0,0);-ms-transform:matrix(0.202636,-0.004458,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202636,-0.004458,0.005499,0.249940,0,0);}
.m35_c00480{transform:matrix(0.203181,-0.004470,0.005499,0.249940,0,0);-ms-transform:matrix(0.203181,-0.004470,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203181,-0.004470,0.005499,0.249940,0,0);}
.m136_c00480{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);}
.m153_c00480{transform:matrix(0.203589,-0.005904,0.007247,0.249895,0,0);-ms-transform:matrix(0.203589,-0.005904,0.007247,0.249895,0,0);-webkit-transform:matrix(0.203589,-0.005904,0.007247,0.249895,0,0);}
.m146_c00480{transform:matrix(0.204119,-0.003266,0.003999,0.249968,0,0);-ms-transform:matrix(0.204119,-0.003266,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204119,-0.003266,0.003999,0.249968,0,0);}
.m8a_c00480{transform:matrix(0.204231,-0.004493,0.005499,0.249940,0,0);-ms-transform:matrix(0.204231,-0.004493,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204231,-0.004493,0.005499,0.249940,0,0);}
.m27_c00480{transform:matrix(0.204441,-0.004498,0.005499,0.249940,0,0);-ms-transform:matrix(0.204441,-0.004498,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204441,-0.004498,0.005499,0.249940,0,0);}
.m46_c00480{transform:matrix(0.205285,-0.004516,0.005499,0.249940,0,0);-ms-transform:matrix(0.205285,-0.004516,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205285,-0.004516,0.005499,0.249940,0,0);}
.m80_c00480{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);}
.m10e_c00480{transform:matrix(0.205852,-0.003705,0.004499,0.249960,0,0);-ms-transform:matrix(0.205852,-0.003705,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205852,-0.003705,0.004499,0.249960,0,0);}
.m32_c00480{transform:matrix(0.206850,-0.004551,0.005499,0.249940,0,0);-ms-transform:matrix(0.206850,-0.004551,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206850,-0.004551,0.005499,0.249940,0,0);}
.ma8_c00480{transform:matrix(0.206954,-0.004139,0.004999,0.249950,0,0);-ms-transform:matrix(0.206954,-0.004139,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206954,-0.004139,0.004999,0.249950,0,0);}
.m81_c00480{transform:matrix(0.207040,-0.004555,0.005499,0.249940,0,0);-ms-transform:matrix(0.207040,-0.004555,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207040,-0.004555,0.005499,0.249940,0,0);}
.m61_c00480{transform:matrix(0.207200,-0.004558,0.005499,0.249940,0,0);-ms-transform:matrix(0.207200,-0.004558,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207200,-0.004558,0.005499,0.249940,0,0);}
.m48_c00480{transform:matrix(0.207205,-0.004559,0.005499,0.249940,0,0);-ms-transform:matrix(0.207205,-0.004559,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207205,-0.004559,0.005499,0.249940,0,0);}
.m3a_c00480{transform:matrix(0.207565,-0.004566,0.005499,0.249940,0,0);-ms-transform:matrix(0.207565,-0.004566,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207565,-0.004566,0.005499,0.249940,0,0);}
.m13_c00480{transform:matrix(0.207605,-0.004567,0.005499,0.249940,0,0);-ms-transform:matrix(0.207605,-0.004567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207605,-0.004567,0.005499,0.249940,0,0);}
.m9b_c00480{transform:matrix(0.207625,-0.004568,0.005499,0.249940,0,0);-ms-transform:matrix(0.207625,-0.004568,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207625,-0.004568,0.005499,0.249940,0,0);}
.m6a_c00480{transform:matrix(0.207920,-0.004574,0.005499,0.249940,0,0);-ms-transform:matrix(0.207920,-0.004574,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207920,-0.004574,0.005499,0.249940,0,0);}
.m34_c00480{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);}
.m13b_c00480{transform:matrix(0.208237,-0.003957,0.004749,0.249955,0,0);-ms-transform:matrix(0.208237,-0.003957,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208237,-0.003957,0.004749,0.249955,0,0);}
.mbe_c00480{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);}
.m13e_c00480{transform:matrix(0.208863,-0.003342,0.003999,0.249968,0,0);-ms-transform:matrix(0.208863,-0.003342,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208863,-0.003342,0.003999,0.249968,0,0);}
.mea_c00480{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);}
.mc4_c00480{transform:matrix(0.209184,-0.004393,0.005249,0.249945,0,0);-ms-transform:matrix(0.209184,-0.004393,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209184,-0.004393,0.005249,0.249945,0,0);}
.m3e_c00480{transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);-ms-transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);}
.m112_c00480{transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);-ms-transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);}
.md3_c00480{transform:matrix(0.209263,-0.004185,0.004999,0.249950,0,0);-ms-transform:matrix(0.209263,-0.004185,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209263,-0.004185,0.004999,0.249950,0,0);}
.m15a_c00480{transform:matrix(0.209329,-0.006489,0.007746,0.249880,0,0);-ms-transform:matrix(0.209329,-0.006489,0.007746,0.249880,0,0);-webkit-transform:matrix(0.209329,-0.006489,0.007746,0.249880,0,0);}
.m38_c00480{transform:matrix(0.209439,-0.004608,0.005499,0.249940,0,0);-ms-transform:matrix(0.209439,-0.004608,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209439,-0.004608,0.005499,0.249940,0,0);}
.m8e_c00480{transform:matrix(0.209914,-0.005248,0.006248,0.249922,0,0);-ms-transform:matrix(0.209914,-0.005248,0.006248,0.249922,0,0);-webkit-transform:matrix(0.209914,-0.005248,0.006248,0.249922,0,0);}
.m92_c00480{transform:matrix(0.209959,-0.004619,0.005499,0.249940,0,0);-ms-transform:matrix(0.209959,-0.004619,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209959,-0.004619,0.005499,0.249940,0,0);}
.m57_c00480{transform:matrix(0.210024,-0.004621,0.005499,0.249940,0,0);-ms-transform:matrix(0.210024,-0.004621,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210024,-0.004621,0.005499,0.249940,0,0);}
.m8d_c00480{transform:matrix(0.210099,-0.005252,0.006248,0.249922,0,0);-ms-transform:matrix(0.210099,-0.005252,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210099,-0.005252,0.006248,0.249922,0,0);}
.m8f_c00480{transform:matrix(0.210554,-0.005264,0.006248,0.249922,0,0);-ms-transform:matrix(0.210554,-0.005264,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210554,-0.005264,0.006248,0.249922,0,0);}
.mcf_c00480{transform:matrix(0.210878,-0.004218,0.004999,0.249950,0,0);-ms-transform:matrix(0.210878,-0.004218,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210878,-0.004218,0.004999,0.249950,0,0);}
.mfe_c00480{transform:matrix(0.211506,-0.003807,0.004499,0.249960,0,0);-ms-transform:matrix(0.211506,-0.003807,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211506,-0.003807,0.004499,0.249960,0,0);}
.m29_c00480{transform:matrix(0.211629,-0.004656,0.005499,0.249940,0,0);-ms-transform:matrix(0.211629,-0.004656,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211629,-0.004656,0.005499,0.249940,0,0);}
.m40_c00480{transform:matrix(0.211929,-0.004662,0.005499,0.249940,0,0);-ms-transform:matrix(0.211929,-0.004662,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211929,-0.004662,0.005499,0.249940,0,0);}
.mc3_c00480{transform:matrix(0.212213,-0.004456,0.005249,0.249945,0,0);-ms-transform:matrix(0.212213,-0.004456,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212213,-0.004456,0.005249,0.249945,0,0);}
.m15_c00480{transform:matrix(0.212689,-0.004679,0.005499,0.249940,0,0);-ms-transform:matrix(0.212689,-0.004679,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212689,-0.004679,0.005499,0.249940,0,0);}
.m89_c00480{transform:matrix(0.212774,-0.004681,0.005499,0.249940,0,0);-ms-transform:matrix(0.212774,-0.004681,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212774,-0.004681,0.005499,0.249940,0,0);}
.ma4_c00480{transform:matrix(0.213582,-0.004272,0.004999,0.249950,0,0);-ms-transform:matrix(0.213582,-0.004272,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213582,-0.004272,0.004999,0.249950,0,0);}
.mc6_c00480{transform:matrix(0.214648,-0.004508,0.005249,0.249945,0,0);-ms-transform:matrix(0.214648,-0.004508,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214648,-0.004508,0.005249,0.249945,0,0);}
.m58_c00480{transform:matrix(0.215118,-0.004733,0.005499,0.249940,0,0);-ms-transform:matrix(0.215118,-0.004733,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215118,-0.004733,0.005499,0.249940,0,0);}
.m118_c00480{transform:matrix(0.215281,-0.004090,0.004749,0.249955,0,0);-ms-transform:matrix(0.215281,-0.004090,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215281,-0.004090,0.004749,0.249955,0,0);}
.mee_c00480{transform:matrix(0.215822,-0.003453,0.003999,0.249968,0,0);-ms-transform:matrix(0.215822,-0.003453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215822,-0.003453,0.003999,0.249968,0,0);}
.m49_c00480{transform:matrix(0.216133,-0.004755,0.005499,0.249940,0,0);-ms-transform:matrix(0.216133,-0.004755,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216133,-0.004755,0.005499,0.249940,0,0);}
.m1_c00480{transform:matrix(0.216279,-0.002595,0.003000,0.249982,0,0);-ms-transform:matrix(0.216279,-0.002595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216279,-0.002595,0.003000,0.249982,0,0);}
.m2e_c00480{transform:matrix(0.216718,-0.004768,0.005499,0.249940,0,0);-ms-transform:matrix(0.216718,-0.004768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216718,-0.004768,0.005499,0.249940,0,0);}
.mc_c00480{transform:matrix(0.216753,-0.004769,0.005499,0.249940,0,0);-ms-transform:matrix(0.216753,-0.004769,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216753,-0.004769,0.005499,0.249940,0,0);}
.m102_c00480{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);}
.m120_c00480{transform:matrix(0.218171,-0.004145,0.004749,0.249955,0,0);-ms-transform:matrix(0.218171,-0.004145,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218171,-0.004145,0.004749,0.249955,0,0);}
.mb6_c00480{transform:matrix(0.218367,-0.004804,0.005499,0.249940,0,0);-ms-transform:matrix(0.218367,-0.004804,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218367,-0.004804,0.005499,0.249940,0,0);}
.ma6_c00480{transform:matrix(0.218756,-0.004375,0.004999,0.249950,0,0);-ms-transform:matrix(0.218756,-0.004375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218756,-0.004375,0.004999,0.249950,0,0);}
.mc8_c00480{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);}
.m4f_c00480{transform:matrix(0.219102,-0.004820,0.005499,0.249940,0,0);-ms-transform:matrix(0.219102,-0.004820,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219102,-0.004820,0.005499,0.249940,0,0);}
.m4d_c00480{transform:matrix(0.219517,-0.004829,0.005499,0.249940,0,0);-ms-transform:matrix(0.219517,-0.004829,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219517,-0.004829,0.005499,0.249940,0,0);}
.mba_c00480{transform:matrix(0.219682,-0.004613,0.005249,0.249945,0,0);-ms-transform:matrix(0.219682,-0.004613,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219682,-0.004613,0.005249,0.249945,0,0);}
.m9c_c00480{transform:matrix(0.220157,-0.004843,0.005499,0.249940,0,0);-ms-transform:matrix(0.220157,-0.004843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220157,-0.004843,0.005499,0.249940,0,0);}
.m12d_c00480{transform:matrix(0.220510,-0.004190,0.004749,0.249955,0,0);-ms-transform:matrix(0.220510,-0.004190,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220510,-0.004190,0.004749,0.249955,0,0);}
.m52_c00480{transform:matrix(0.221082,-0.004864,0.005499,0.249940,0,0);-ms-transform:matrix(0.221082,-0.004864,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221082,-0.004864,0.005499,0.249940,0,0);}
.m26_c00480{transform:matrix(0.222026,-0.004885,0.005499,0.249940,0,0);-ms-transform:matrix(0.222026,-0.004885,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222026,-0.004885,0.005499,0.249940,0,0);}
.m15b_c00480{transform:matrix(0.222503,-0.006898,0.007746,0.249880,0,0);-ms-transform:matrix(0.222503,-0.006898,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222503,-0.006898,0.007746,0.249880,0,0);}
.m15e_c00480{transform:matrix(0.222553,-0.006899,0.007746,0.249880,0,0);-ms-transform:matrix(0.222553,-0.006899,0.007746,0.249880,0,0);-webkit-transform:matrix(0.222553,-0.006899,0.007746,0.249880,0,0);}
.m15d_c00480{transform:matrix(0.223663,-0.006934,0.007746,0.249880,0,0);-ms-transform:matrix(0.223663,-0.006934,0.007746,0.249880,0,0);-webkit-transform:matrix(0.223663,-0.006934,0.007746,0.249880,0,0);}
.m2d_c00480{transform:matrix(0.225096,-0.004952,0.005499,0.249940,0,0);-ms-transform:matrix(0.225096,-0.004952,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225096,-0.004952,0.005499,0.249940,0,0);}
.m37_c00480{transform:matrix(0.225475,-0.004960,0.005499,0.249940,0,0);-ms-transform:matrix(0.225475,-0.004960,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225475,-0.004960,0.005499,0.249940,0,0);}
.m159_c00480{transform:matrix(0.225707,-0.006997,0.007746,0.249880,0,0);-ms-transform:matrix(0.225707,-0.006997,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225707,-0.006997,0.007746,0.249880,0,0);}
.meb_c00480{transform:matrix(0.225881,-0.003614,0.003999,0.249968,0,0);-ms-transform:matrix(0.225881,-0.003614,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225881,-0.003614,0.003999,0.249968,0,0);}
.m142_c00480{transform:matrix(0.226501,-0.003624,0.003999,0.249968,0,0);-ms-transform:matrix(0.226501,-0.003624,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226501,-0.003624,0.003999,0.249968,0,0);}
.m84_c00480{transform:matrix(0.227530,-0.005006,0.005499,0.249940,0,0);-ms-transform:matrix(0.227530,-0.005006,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227530,-0.005006,0.005499,0.249940,0,0);}
.m125_c00480{transform:matrix(0.228184,-0.004335,0.004749,0.249955,0,0);-ms-transform:matrix(0.228184,-0.004335,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228184,-0.004335,0.004749,0.249955,0,0);}
.m55_c00480{transform:matrix(0.230109,-0.005062,0.005499,0.249940,0,0);-ms-transform:matrix(0.230109,-0.005062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230109,-0.005062,0.005499,0.249940,0,0);}
.m3_c00480{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);}
.m8c_c00480{transform:matrix(0.230323,-0.005758,0.006248,0.249922,0,0);-ms-transform:matrix(0.230323,-0.005758,0.006248,0.249922,0,0);-webkit-transform:matrix(0.230323,-0.005758,0.006248,0.249922,0,0);}
.m82_c00480{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);}
.m54_c00480{transform:matrix(0.231109,-0.005084,0.005499,0.249940,0,0);-ms-transform:matrix(0.231109,-0.005084,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231109,-0.005084,0.005499,0.249940,0,0);}
.m4e_c00480{transform:matrix(0.232284,-0.005110,0.005499,0.249940,0,0);-ms-transform:matrix(0.232284,-0.005110,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232284,-0.005110,0.005499,0.249940,0,0);}
.m14e_c00480{transform:matrix(0.232887,-0.006754,0.007247,0.249895,0,0);-ms-transform:matrix(0.232887,-0.006754,0.007247,0.249895,0,0);-webkit-transform:matrix(0.232887,-0.006754,0.007247,0.249895,0,0);}
.m148_c00480{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);}
.m107_c00480{transform:matrix(0.234437,-0.004220,0.004499,0.249960,0,0);-ms-transform:matrix(0.234437,-0.004220,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234437,-0.004220,0.004499,0.249960,0,0);}
.mf0_c00480{transform:matrix(0.234450,-0.003751,0.003999,0.249968,0,0);-ms-transform:matrix(0.234450,-0.003751,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234450,-0.003751,0.003999,0.249968,0,0);}
.m12c_c00480{transform:matrix(0.234703,-0.004459,0.004749,0.249955,0,0);-ms-transform:matrix(0.234703,-0.004459,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234703,-0.004459,0.004749,0.249955,0,0);}
.m8b_c00480{transform:matrix(0.235746,-0.005894,0.006248,0.249922,0,0);-ms-transform:matrix(0.235746,-0.005894,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235746,-0.005894,0.006248,0.249922,0,0);}
.m56_c00480{transform:matrix(0.236743,-0.005208,0.005499,0.249940,0,0);-ms-transform:matrix(0.236743,-0.005208,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236743,-0.005208,0.005499,0.249940,0,0);}
.m63_c00480{transform:matrix(0.236763,-0.005209,0.005499,0.249940,0,0);-ms-transform:matrix(0.236763,-0.005209,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236763,-0.005209,0.005499,0.249940,0,0);}
.me8_c00480{transform:matrix(0.237160,-0.003795,0.003999,0.249968,0,0);-ms-transform:matrix(0.237160,-0.003795,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237160,-0.003795,0.003999,0.249968,0,0);}
.m14d_c00480{transform:matrix(0.237175,-0.006878,0.007247,0.249895,0,0);-ms-transform:matrix(0.237175,-0.006878,0.007247,0.249895,0,0);-webkit-transform:matrix(0.237175,-0.006878,0.007247,0.249895,0,0);}
.mcd_c00480{transform:matrix(0.237408,-0.004748,0.004999,0.249950,0,0);-ms-transform:matrix(0.237408,-0.004748,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237408,-0.004748,0.004999,0.249950,0,0);}
.m6e_c00480{transform:matrix(0.238152,-0.005239,0.005499,0.249940,0,0);-ms-transform:matrix(0.238152,-0.005239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238152,-0.005239,0.005499,0.249940,0,0);}
.m6d_c00480{transform:matrix(0.239277,-0.005264,0.005499,0.249940,0,0);-ms-transform:matrix(0.239277,-0.005264,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239277,-0.005264,0.005499,0.249940,0,0);}
.mf4_c00480{transform:matrix(0.240166,-0.004323,0.004499,0.249960,0,0);-ms-transform:matrix(0.240166,-0.004323,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240166,-0.004323,0.004499,0.249960,0,0);}
.md6_c00480{transform:matrix(0.240749,-0.003852,0.003999,0.249968,0,0);-ms-transform:matrix(0.240749,-0.003852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240749,-0.003852,0.003999,0.249968,0,0);}
.m95_c00480{transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);-ms-transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);}
.m13f_c00480{transform:matrix(0.242284,-0.003877,0.003999,0.249968,0,0);-ms-transform:matrix(0.242284,-0.003877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242284,-0.003877,0.003999,0.249968,0,0);}
.m111_c00480{transform:matrix(0.242586,-0.004609,0.004749,0.249955,0,0);-ms-transform:matrix(0.242586,-0.004609,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242586,-0.004609,0.004749,0.249955,0,0);}
.m64_c00480{transform:matrix(0.242601,-0.005337,0.005499,0.249940,0,0);-ms-transform:matrix(0.242601,-0.005337,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242601,-0.005337,0.005499,0.249940,0,0);}
.m11e_c00480{transform:matrix(0.246670,-0.004687,0.004749,0.249955,0,0);-ms-transform:matrix(0.246670,-0.004687,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246670,-0.004687,0.004749,0.249955,0,0);}
.mec_c00480{transform:matrix(0.247368,-0.003958,0.003999,0.249968,0,0);-ms-transform:matrix(0.247368,-0.003958,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247368,-0.003958,0.003999,0.249968,0,0);}
.md4_c00480{transform:matrix(0.247538,-0.003961,0.003999,0.249968,0,0);-ms-transform:matrix(0.247538,-0.003961,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247538,-0.003961,0.003999,0.249968,0,0);}
.m73_c00480{transform:matrix(0.250294,-0.005506,0.005499,0.249940,0,0);-ms-transform:matrix(0.250294,-0.005506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250294,-0.005506,0.005499,0.249940,0,0);}
.m7b_c00480{transform:matrix(0.250379,-0.005508,0.005499,0.249940,0,0);-ms-transform:matrix(0.250379,-0.005508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250379,-0.005508,0.005499,0.249940,0,0);}
.m121_c00480{transform:matrix(0.251815,-0.004784,0.004749,0.249955,0,0);-ms-transform:matrix(0.251815,-0.004784,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251815,-0.004784,0.004749,0.249955,0,0);}
.m115_c00480{transform:matrix(0.252080,-0.004790,0.004749,0.249955,0,0);-ms-transform:matrix(0.252080,-0.004790,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252080,-0.004790,0.004749,0.249955,0,0);}
.mef_c00480{transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);-ms-transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);}
.m9d_c00480{transform:matrix(0.255038,-0.005611,0.005499,0.249940,0,0);-ms-transform:matrix(0.255038,-0.005611,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255038,-0.005611,0.005499,0.249940,0,0);}
.m158_c00480{transform:matrix(0.256247,-0.007944,0.007746,0.249880,0,0);-ms-transform:matrix(0.256247,-0.007944,0.007746,0.249880,0,0);-webkit-transform:matrix(0.256247,-0.007944,0.007746,0.249880,0,0);}
.me7_c00480{transform:matrix(0.256692,-0.004107,0.003999,0.249968,0,0);-ms-transform:matrix(0.256692,-0.004107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256692,-0.004107,0.003999,0.249968,0,0);}
.m117_c00480{transform:matrix(0.258173,-0.004905,0.004749,0.249955,0,0);-ms-transform:matrix(0.258173,-0.004905,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258173,-0.004905,0.004749,0.249955,0,0);}
.m12a_c00480{transform:matrix(0.258673,-0.004915,0.004749,0.249955,0,0);-ms-transform:matrix(0.258673,-0.004915,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258673,-0.004915,0.004749,0.249955,0,0);}
.m14a_c00480{transform:matrix(0.258796,-0.007505,0.007247,0.249895,0,0);-ms-transform:matrix(0.258796,-0.007505,0.007247,0.249895,0,0);-webkit-transform:matrix(0.258796,-0.007505,0.007247,0.249895,0,0);}
.me_c00480{transform:matrix(0.259692,-0.005713,0.005499,0.249940,0,0);-ms-transform:matrix(0.259692,-0.005713,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259692,-0.005713,0.005499,0.249940,0,0);}
.m11_c00480{transform:matrix(0.262516,-0.005775,0.005499,0.249940,0,0);-ms-transform:matrix(0.262516,-0.005775,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262516,-0.005775,0.005499,0.249940,0,0);}
.m7f_c00480{transform:matrix(0.264141,-0.005811,0.005499,0.249940,0,0);-ms-transform:matrix(0.264141,-0.005811,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264141,-0.005811,0.005499,0.249940,0,0);}
.mb3_c00480{transform:matrix(0.265031,-0.005831,0.005499,0.249940,0,0);-ms-transform:matrix(0.265031,-0.005831,0.005499,0.249940,0,0);-webkit-transform:matrix(0.265031,-0.005831,0.005499,0.249940,0,0);}
.m104_c00480{transform:matrix(0.267132,-0.004808,0.004499,0.249960,0,0);-ms-transform:matrix(0.267132,-0.004808,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267132,-0.004808,0.004499,0.249960,0,0);}
.m28_c00480{transform:matrix(0.271199,-0.005966,0.005499,0.249940,0,0);-ms-transform:matrix(0.271199,-0.005966,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271199,-0.005966,0.005499,0.249940,0,0);}
.m41_c00480{transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);-ms-transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);}
.m90_c00480{transform:matrix(0.272760,-0.006819,0.006248,0.249922,0,0);-ms-transform:matrix(0.272760,-0.006819,0.006248,0.249922,0,0);-webkit-transform:matrix(0.272760,-0.006819,0.006248,0.249922,0,0);}
.m15f_c00480{transform:matrix(0.274088,-0.008497,0.007746,0.249880,0,0);-ms-transform:matrix(0.274088,-0.008497,0.007746,0.249880,0,0);-webkit-transform:matrix(0.274088,-0.008497,0.007746,0.249880,0,0);}
.med_c00480{transform:matrix(0.277699,-0.004443,0.003999,0.249968,0,0);-ms-transform:matrix(0.277699,-0.004443,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277699,-0.004443,0.003999,0.249968,0,0);}
.m135_c00480{transform:matrix(0.283499,-0.005386,0.004749,0.249955,0,0);-ms-transform:matrix(0.283499,-0.005386,0.004749,0.249955,0,0);-webkit-transform:matrix(0.283499,-0.005386,0.004749,0.249955,0,0);}
.mcc_c00480{transform:matrix(0.298870,-0.005977,0.004999,0.249950,0,0);-ms-transform:matrix(0.298870,-0.005977,0.004999,0.249950,0,0);-webkit-transform:matrix(0.298870,-0.005977,0.004999,0.249950,0,0);}
.m94_c00480{transform:matrix(0.300477,-0.006611,0.005499,0.249940,0,0);-ms-transform:matrix(0.300477,-0.006611,0.005499,0.249940,0,0);-webkit-transform:matrix(0.300477,-0.006611,0.005499,0.249940,0,0);}
.mf1_c00480{transform:matrix(0.304446,-0.004871,0.003999,0.249968,0,0);-ms-transform:matrix(0.304446,-0.004871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.304446,-0.004871,0.003999,0.249968,0,0);}
.m160_c00480{transform:matrix(0.313354,-0.009714,0.007746,0.249880,0,0);-ms-transform:matrix(0.313354,-0.009714,0.007746,0.249880,0,0);-webkit-transform:matrix(0.313354,-0.009714,0.007746,0.249880,0,0);}
.me2_c00480{transform:matrix(0.317014,-0.005072,0.003999,0.249968,0,0);-ms-transform:matrix(0.317014,-0.005072,0.003999,0.249968,0,0);-webkit-transform:matrix(0.317014,-0.005072,0.003999,0.249968,0,0);}
.mb9_c00480{transform:matrix(0.318718,-0.007012,0.005499,0.249940,0,0);-ms-transform:matrix(0.318718,-0.007012,0.005499,0.249940,0,0);-webkit-transform:matrix(0.318718,-0.007012,0.005499,0.249940,0,0);}
.md7_c00480{transform:matrix(0.328993,-0.005264,0.003999,0.249968,0,0);-ms-transform:matrix(0.328993,-0.005264,0.003999,0.249968,0,0);-webkit-transform:matrix(0.328993,-0.005264,0.003999,0.249968,0,0);}
.m129_c00480{transform:matrix(0.331170,-0.006292,0.004749,0.249955,0,0);-ms-transform:matrix(0.331170,-0.006292,0.004749,0.249955,0,0);-webkit-transform:matrix(0.331170,-0.006292,0.004749,0.249955,0,0);}
.m149_c00480{transform:matrix(0.342646,-0.005482,0.003999,0.249968,0,0);-ms-transform:matrix(0.342646,-0.005482,0.003999,0.249968,0,0);-webkit-transform:matrix(0.342646,-0.005482,0.003999,0.249968,0,0);}
.m108_c00480{transform:matrix(0.350268,-0.006305,0.004499,0.249960,0,0);-ms-transform:matrix(0.350268,-0.006305,0.004499,0.249960,0,0);-webkit-transform:matrix(0.350268,-0.006305,0.004499,0.249960,0,0);}
.m6b_c00480{transform:matrix(0.356299,-0.007839,0.005499,0.249940,0,0);-ms-transform:matrix(0.356299,-0.007839,0.005499,0.249940,0,0);-webkit-transform:matrix(0.356299,-0.007839,0.005499,0.249940,0,0);}
.m140_c00480{transform:matrix(0.357259,-0.005716,0.003999,0.249968,0,0);-ms-transform:matrix(0.357259,-0.005716,0.003999,0.249968,0,0);-webkit-transform:matrix(0.357259,-0.005716,0.003999,0.249968,0,0);}
.mfd_c00480{transform:matrix(0.357602,-0.006437,0.004499,0.249960,0,0);-ms-transform:matrix(0.357602,-0.006437,0.004499,0.249960,0,0);-webkit-transform:matrix(0.357602,-0.006437,0.004499,0.249960,0,0);}
.m14b_c00480{transform:matrix(0.359389,-0.010422,0.007247,0.249895,0,0);-ms-transform:matrix(0.359389,-0.010422,0.007247,0.249895,0,0);-webkit-transform:matrix(0.359389,-0.010422,0.007247,0.249895,0,0);}
.m116_c00480{transform:matrix(0.369108,-0.007013,0.004749,0.249955,0,0);-ms-transform:matrix(0.369108,-0.007013,0.004749,0.249955,0,0);-webkit-transform:matrix(0.369108,-0.007013,0.004749,0.249955,0,0);}
.m126_c00480{transform:matrix(0.372163,-0.007071,0.004749,0.249955,0,0);-ms-transform:matrix(0.372163,-0.007071,0.004749,0.249955,0,0);-webkit-transform:matrix(0.372163,-0.007071,0.004749,0.249955,0,0);}
.mcb_c00480{transform:matrix(0.380884,-0.007618,0.004999,0.249950,0,0);-ms-transform:matrix(0.380884,-0.007618,0.004999,0.249950,0,0);-webkit-transform:matrix(0.380884,-0.007618,0.004999,0.249950,0,0);}
.mb7_c00480{transform:matrix(0.387841,-0.008533,0.005499,0.249940,0,0);-ms-transform:matrix(0.387841,-0.008533,0.005499,0.249940,0,0);-webkit-transform:matrix(0.387841,-0.008533,0.005499,0.249940,0,0);}
.m7a_c00480{transform:matrix(0.417744,-0.009190,0.005499,0.249940,0,0);-ms-transform:matrix(0.417744,-0.009190,0.005499,0.249940,0,0);-webkit-transform:matrix(0.417744,-0.009190,0.005499,0.249940,0,0);}
.m0_c00480{transform:matrix(0.419315,-0.005032,0.003000,0.249982,0,0);-ms-transform:matrix(0.419315,-0.005032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.419315,-0.005032,0.003000,0.249982,0,0);}
.m141_c00480{transform:matrix(0.428410,-0.006855,0.003999,0.249968,0,0);-ms-transform:matrix(0.428410,-0.006855,0.003999,0.249968,0,0);-webkit-transform:matrix(0.428410,-0.006855,0.003999,0.249968,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;}
.fs1_c00480{font-size:30.450000px;}
.fs18_c00480{font-size:43.055510px;}
.fs21_c00480{font-size:49.356316px;}
.fs1c_c00480{font-size:49.357994px;}
.fs15_c00480{font-size:49.359869px;}
.fs12_c00480{font-size:49.360880px;}
.fsd_c00480{font-size:49.361941px;}
.fs25_c00480{font-size:49.373707px;}
.fsb_c00480{font-size:50.415748px;}
.fs1b_c00480{font-size:51.458334px;}
.fs13_c00480{font-size:51.461343px;}
.fsc_c00480{font-size:51.462449px;}
.fs1d_c00480{font-size:52.509475px;}
.fse_c00480{font-size:52.510499px;}
.fs11_c00480{font-size:52.512703px;}
.fs24_c00480{font-size:52.522072px;}
.fs14_c00480{font-size:53.550000px;}
.fs23_c00480{font-size:53.572513px;}
.fs1a_c00480{font-size:54.608844px;}
.fs1e_c00480{font-size:54.609854px;}
.fs19_c00480{font-size:55.650000px;}
.fs22_c00480{font-size:55.657123px;}
.fs20_c00480{font-size:55.660044px;}
.fsf_c00480{font-size:55.661129px;}
.fs1f_c00480{font-size:57.760423px;}
.fs10_c00480{font-size:58.811759px;}
.fs16_c00480{font-size:60.907795px;}
.fs17_c00480{font-size:64.058198px;}
.fs3_c00480{font-size:64.065498px;}
.fsa_c00480{font-size:65.115752px;}
.fs7_c00480{font-size:68.266515px;}
.fs6_c00480{font-size:69.316769px;}
.fs5_c00480{font-size:70.367023px;}
.fs26_c00480{font-size:70.383795px;}
.fs4_c00480{font-size:71.417277px;}
.fs9_c00480{font-size:72.467531px;}
.fs2_c00480{font-size:73.517785px;}
.fs8_c00480{font-size:78.769055px;}
.fs0_c00480{font-size:88.206350px;}
.y0_c00480{bottom:0.000000px;}
.y15e_c00480{bottom:136.193642px;}
.y15d_c00480{bottom:136.194176px;}
.y15c_c00480{bottom:136.194531px;}
.yf0_c00480{bottom:152.031000px;}
.y155_c00480{bottom:155.803500px;}
.y156_c00480{bottom:157.070997px;}
.y157_c00480{bottom:157.617140px;}
.y158_c00480{bottom:159.249010px;}
.y159_c00480{bottom:159.844025px;}
.y15a_c00480{bottom:160.767375px;}
.y15b_c00480{bottom:162.186230px;}
.ye5_c00480{bottom:169.288776px;}
.ye6_c00480{bottom:169.577844px;}
.ye7_c00480{bottom:169.815216px;}
.ye8_c00480{bottom:170.009520px;}
.ye9_c00480{bottom:170.403564px;}
.yea_c00480{bottom:170.825928px;}
.yeb_c00480{bottom:170.954436px;}
.yec_c00480{bottom:171.391152px;}
.yed_c00480{bottom:171.620412px;}
.yee_c00480{bottom:172.153320px;}
.yef_c00480{bottom:172.411152px;}
.y14e_c00480{bottom:173.610975px;}
.y14f_c00480{bottom:174.449133px;}
.y150_c00480{bottom:175.255057px;}
.y151_c00480{bottom:175.773229px;}
.y152_c00480{bottom:177.316435px;}
.y153_c00480{bottom:178.514599px;}
.y154_c00480{bottom:179.791498px;}
.ydd_c00480{bottom:187.380468px;}
.yde_c00480{bottom:187.648884px;}
.ydf_c00480{bottom:187.916820px;}
.ye0_c00480{bottom:188.815812px;}
.ye1_c00480{bottom:189.044196px;}
.ye2_c00480{bottom:189.286908px;}
.ye3_c00480{bottom:189.739908px;}
.ye4_c00480{bottom:190.060236px;}
.y147_c00480{bottom:191.439000px;}
.y148_c00480{bottom:192.672312px;}
.y149_c00480{bottom:192.936618px;}
.y14a_c00480{bottom:193.742977px;}
.y14b_c00480{bottom:194.721988px;}
.y14c_c00480{bottom:195.442044px;}
.y14d_c00480{bottom:197.054806px;}
.yd2_c00480{bottom:205.203000px;}
.yd3_c00480{bottom:205.539984px;}
.yd4_c00480{bottom:205.894176px;}
.yd5_c00480{bottom:206.430480px;}
.yd6_c00480{bottom:206.610648px;}
.yd7_c00480{bottom:206.895384px;}
.yd8_c00480{bottom:207.090168px;}
.yd9_c00480{bottom:207.505032px;}
.yda_c00480{bottom:207.984840px;}
.ydb_c00480{bottom:208.291392px;}
.ydc_c00480{bottom:208.607184px;}
.y13f_c00480{bottom:209.795712px;}
.y140_c00480{bottom:210.377808px;}
.y141_c00480{bottom:211.106040px;}
.y142_c00480{bottom:211.820688px;}
.y143_c00480{bottom:212.508852px;}
.y144_c00480{bottom:213.345480px;}
.y145_c00480{bottom:213.666564px;}
.y146_c00480{bottom:214.759896px;}
.yc8_c00480{bottom:222.216000px;}
.yc9_c00480{bottom:222.431310px;}
.yca_c00480{bottom:222.976170px;}
.ycb_c00480{bottom:223.591980px;}
.ycc_c00480{bottom:224.288670px;}
.ycd_c00480{bottom:224.601930px;}
.yce_c00480{bottom:225.093660px;}
.ycf_c00480{bottom:225.891390px;}
.yd0_c00480{bottom:226.308510px;}
.yd1_c00480{bottom:226.691940px;}
.y139_c00480{bottom:227.613000px;}
.y13a_c00480{bottom:227.845560px;}
.y13b_c00480{bottom:228.225672px;}
.y13c_c00480{bottom:228.554976px;}
.y13d_c00480{bottom:229.718880px;}
.y13e_c00480{bottom:230.565912px;}
.yc7_c00480{bottom:240.978000px;}
.y133_c00480{bottom:244.890535px;}
.y134_c00480{bottom:245.571089px;}
.y135_c00480{bottom:246.023189px;}
.y136_c00480{bottom:247.796141px;}
.y137_c00480{bottom:248.368280px;}
.y138_c00480{bottom:249.729927px;}
.yc1_c00480{bottom:258.390005px;}
.yc2_c00480{bottom:258.704148px;}
.yc3_c00480{bottom:258.985771px;}
.yc4_c00480{bottom:260.605772px;}
.yc5_c00480{bottom:261.523550px;}
.yc6_c00480{bottom:261.992966px;}
.y12c_c00480{bottom:263.253000px;}
.y12d_c00480{bottom:263.643479px;}
.y12e_c00480{bottom:264.530627px;}
.y12f_c00480{bottom:265.520232px;}
.y130_c00480{bottom:266.064696px;}
.y131_c00480{bottom:266.603146px;}
.y132_c00480{bottom:267.153140px;}
.yba_c00480{bottom:275.943000px;}
.ybb_c00480{bottom:276.522884px;}
.ybc_c00480{bottom:277.356311px;}
.ybd_c00480{bottom:277.663026px;}
.ybe_c00480{bottom:278.201928px;}
.ybf_c00480{bottom:278.960228px;}
.yc0_c00480{bottom:279.404535px;}
.y125_c00480{bottom:281.333306px;}
.y126_c00480{bottom:281.760522px;}
.y127_c00480{bottom:282.249513px;}
.y128_c00480{bottom:282.644631px;}
.y129_c00480{bottom:283.545402px;}
.y12a_c00480{bottom:283.892444px;}
.y12b_c00480{bottom:285.110210px;}
.yb2_c00480{bottom:294.033000px;}
.yb3_c00480{bottom:294.278586px;}
.yb4_c00480{bottom:294.541332px;}
.yb5_c00480{bottom:295.813878px;}
.yb6_c00480{bottom:296.799951px;}
.yb7_c00480{bottom:297.530901px;}
.yb8_c00480{bottom:297.777972px;}
.yb9_c00480{bottom:298.296732px;}
.y11d_c00480{bottom:299.698250px;}
.y11e_c00480{bottom:300.496707px;}
.y11f_c00480{bottom:300.836340px;}
.y120_c00480{bottom:301.544940px;}
.y121_c00480{bottom:301.864965px;}
.y122_c00480{bottom:302.382432px;}
.y123_c00480{bottom:303.220238px;}
.y124_c00480{bottom:303.522974px;}
.yb0_c00480{bottom:313.044450px;}
.yb1_c00480{bottom:313.044810px;}
.y117_c00480{bottom:317.789405px;}
.y118_c00480{bottom:318.856359px;}
.y119_c00480{bottom:319.703151px;}
.y11a_c00480{bottom:320.209853px;}
.y11b_c00480{bottom:320.708631px;}
.y11c_c00480{bottom:321.683645px;}
.ya9_c00480{bottom:329.941200px;}
.yaa_c00480{bottom:330.281970px;}
.yab_c00480{bottom:331.234410px;}
.yac_c00480{bottom:332.192040px;}
.yad_c00480{bottom:332.763180px;}
.yae_c00480{bottom:333.280290px;}
.yaf_c00480{bottom:334.380060px;}
.y10e_c00480{bottom:335.883000px;}
.y10f_c00480{bottom:336.318879px;}
.y110_c00480{bottom:336.698442px;}
.y111_c00480{bottom:337.278132px;}
.y112_c00480{bottom:338.043044px;}
.y113_c00480{bottom:338.567073px;}
.y114_c00480{bottom:338.792166px;}
.y115_c00480{bottom:339.100109px;}
.y116_c00480{bottom:339.484802px;}
.ya0_c00480{bottom:347.764500px;}
.ya1_c00480{bottom:348.492480px;}
.ya2_c00480{bottom:348.968760px;}
.ya3_c00480{bottom:349.314510px;}
.ya4_c00480{bottom:349.876200px;}
.ya5_c00480{bottom:350.573190px;}
.ya6_c00480{bottom:351.302160px;}
.ya7_c00480{bottom:351.485610px;}
.ya8_c00480{bottom:352.236270px;}
.y10d_c00480{bottom:353.432862px;}
.y10c_c00480{bottom:353.433123px;}
.y99_c00480{bottom:365.847429px;}
.y9a_c00480{bottom:366.480027px;}
.y9b_c00480{bottom:366.903525px;}
.y9c_c00480{bottom:367.670439px;}
.y9d_c00480{bottom:367.899906px;}
.y9e_c00480{bottom:368.860092px;}
.y9f_c00480{bottom:369.852744px;}
.y103_c00480{bottom:370.976259px;}
.y104_c00480{bottom:371.635746px;}
.y105_c00480{bottom:372.350589px;}
.y106_c00480{bottom:372.558564px;}
.y107_c00480{bottom:372.909585px;}
.y108_c00480{bottom:373.488888px;}
.y109_c00480{bottom:373.942155px;}
.y10a_c00480{bottom:374.498424px;}
.y10b_c00480{bottom:374.958132px;}
.y92_c00480{bottom:383.674500px;}
.y93_c00480{bottom:384.981630px;}
.y94_c00480{bottom:385.872399px;}
.y95_c00480{bottom:386.145309px;}
.y96_c00480{bottom:387.369312px;}
.y97_c00480{bottom:387.957867px;}
.y98_c00480{bottom:388.850814px;}
.yf9_c00480{bottom:389.069064px;}
.yfa_c00480{bottom:389.607345px;}
.yfb_c00480{bottom:389.807835px;}
.yfc_c00480{bottom:390.125283px;}
.yfd_c00480{bottom:390.427746px;}
.yfe_c00480{bottom:390.914649px;}
.yff_c00480{bottom:391.699749px;}
.y100_c00480{bottom:392.034975px;}
.y101_c00480{bottom:392.360562px;}
.y102_c00480{bottom:392.629857px;}
.y8b_c00480{bottom:400.956000px;}
.y8c_c00480{bottom:401.529225px;}
.y8d_c00480{bottom:402.441863px;}
.y8e_c00480{bottom:403.643138px;}
.y8f_c00480{bottom:404.420325px;}
.y90_c00480{bottom:405.749475px;}
.y91_c00480{bottom:406.202100px;}
.yf1_c00480{bottom:407.163000px;}
.yf2_c00480{bottom:407.585496px;}
.yf3_c00480{bottom:407.940222px;}
.yf4_c00480{bottom:408.265707px;}
.yf5_c00480{bottom:408.747117px;}
.yf6_c00480{bottom:409.596780px;}
.yf7_c00480{bottom:409.924020px;}
.yf8_c00480{bottom:410.676861px;}
.y82_c00480{bottom:471.340473px;}
.y83_c00480{bottom:472.437162px;}
.y84_c00480{bottom:472.923528px;}
.y85_c00480{bottom:473.540157px;}
.y86_c00480{bottom:474.206871px;}
.y87_c00480{bottom:474.874938px;}
.y88_c00480{bottom:475.253475px;}
.y89_c00480{bottom:476.080461px;}
.y8a_c00480{bottom:477.178140px;}
.y7a_c00480{bottom:494.834409px;}
.y7b_c00480{bottom:495.343407px;}
.y7c_c00480{bottom:495.673932px;}
.y7d_c00480{bottom:496.281486px;}
.y7e_c00480{bottom:496.594311px;}
.y7f_c00480{bottom:497.461392px;}
.y80_c00480{bottom:497.764062px;}
.y81_c00480{bottom:498.062193px;}
.y79_c00480{bottom:517.912545px;}
.y78_c00480{bottom:517.913205px;}
.y6c_c00480{bottom:539.400903px;}
.y6d_c00480{bottom:539.910273px;}
.y6e_c00480{bottom:540.498711px;}
.y6f_c00480{bottom:541.272336px;}
.y70_c00480{bottom:542.453553px;}
.y71_c00480{bottom:542.875866px;}
.y72_c00480{bottom:543.852009px;}
.y73_c00480{bottom:544.240440px;}
.y74_c00480{bottom:544.838088px;}
.y75_c00480{bottom:545.159448px;}
.y76_c00480{bottom:545.790960px;}
.y77_c00480{bottom:546.238770px;}
.y61_c00480{bottom:561.814230px;}
.y62_c00480{bottom:562.103619px;}
.y63_c00480{bottom:562.370565px;}
.y64_c00480{bottom:562.965303px;}
.y65_c00480{bottom:563.493171px;}
.y66_c00480{bottom:564.254040px;}
.y67_c00480{bottom:565.494672px;}
.y68_c00480{bottom:566.025099px;}
.y69_c00480{bottom:567.322485px;}
.y6a_c00480{bottom:568.261269px;}
.y6b_c00480{bottom:569.217132px;}
.y55_c00480{bottom:585.309831px;}
.y56_c00480{bottom:585.878811px;}
.y57_c00480{bottom:586.573896px;}
.y58_c00480{bottom:587.458839px;}
.y59_c00480{bottom:587.896368px;}
.y5a_c00480{bottom:588.426069px;}
.y5b_c00480{bottom:589.460502px;}
.y5c_c00480{bottom:589.895208px;}
.y5d_c00480{bottom:590.425569px;}
.y5e_c00480{bottom:590.803206px;}
.y5f_c00480{bottom:591.266151px;}
.y60_c00480{bottom:591.810789px;}
.y4d_c00480{bottom:607.456746px;}
.y4e_c00480{bottom:609.425847px;}
.y4f_c00480{bottom:609.893016px;}
.y50_c00480{bottom:610.753599px;}
.y51_c00480{bottom:611.365308px;}
.y52_c00480{bottom:612.241785px;}
.y53_c00480{bottom:613.077498px;}
.y54_c00480{bottom:614.545962px;}
.y45_c00480{bottom:629.870883px;}
.y46_c00480{bottom:630.647133px;}
.y47_c00480{bottom:631.241826px;}
.y48_c00480{bottom:631.938297px;}
.y49_c00480{bottom:633.235485px;}
.y4a_c00480{bottom:633.609969px;}
.y4b_c00480{bottom:634.315434px;}
.y4c_c00480{bottom:635.034318px;}
.y3d_c00480{bottom:652.557882px;}
.y3e_c00480{bottom:653.392353px;}
.y3f_c00480{bottom:653.887299px;}
.y40_c00480{bottom:656.482878px;}
.y41_c00480{bottom:656.923266px;}
.y42_c00480{bottom:657.529968px;}
.y43_c00480{bottom:657.955389px;}
.y44_c00480{bottom:658.786725px;}
.y34_c00480{bottom:675.243036px;}
.y35_c00480{bottom:675.799587px;}
.y36_c00480{bottom:676.587624px;}
.y37_c00480{bottom:677.689752px;}
.y38_c00480{bottom:678.698514px;}
.y39_c00480{bottom:679.483893px;}
.y3a_c00480{bottom:680.791071px;}
.y3b_c00480{bottom:681.519438px;}
.y3c_c00480{bottom:681.984141px;}
.y2c_c00480{bottom:697.656870px;}
.y2d_c00480{bottom:698.616621px;}
.y2e_c00480{bottom:700.357800px;}
.y2f_c00480{bottom:701.180034px;}
.y30_c00480{bottom:701.722761px;}
.y31_c00480{bottom:702.332316px;}
.y32_c00480{bottom:703.357956px;}
.y33_c00480{bottom:704.223141px;}
.y25_c00480{bottom:720.611805px;}
.y26_c00480{bottom:721.817118px;}
.y27_c00480{bottom:723.641805px;}
.y28_c00480{bottom:724.274115px;}
.y29_c00480{bottom:725.878257px;}
.y2a_c00480{bottom:727.115847px;}
.y2b_c00480{bottom:727.928982px;}
.y1d_c00480{bottom:743.839014px;}
.y1e_c00480{bottom:745.172112px;}
.y1f_c00480{bottom:745.693224px;}
.y20_c00480{bottom:746.436057px;}
.y21_c00480{bottom:747.886971px;}
.y22_c00480{bottom:748.578981px;}
.y23_c00480{bottom:749.696793px;}
.y24_c00480{bottom:750.099825px;}
.y13_c00480{bottom:766.792842px;}
.y14_c00480{bottom:767.274501px;}
.y15_c00480{bottom:767.707590px;}
.y16_c00480{bottom:768.105015px;}
.y17_c00480{bottom:768.722979px;}
.y18_c00480{bottom:769.355103px;}
.y19_c00480{bottom:770.339052px;}
.y1a_c00480{bottom:770.802228px;}
.y1b_c00480{bottom:771.609603px;}
.y1c_c00480{bottom:772.057413px;}
.ya_c00480{bottom:789.748782px;}
.yb_c00480{bottom:790.356720px;}
.yc_c00480{bottom:791.228370px;}
.yd_c00480{bottom:792.631572px;}
.ye_c00480{bottom:793.053519px;}
.yf_c00480{bottom:793.793865px;}
.y10_c00480{bottom:794.571060px;}
.y11_c00480{bottom:794.998947px;}
.y12_c00480{bottom:795.755382px;}
.y4_c00480{bottom:811.890000px;}
.y5_c00480{bottom:812.180928px;}
.y6_c00480{bottom:812.972070px;}
.y7_c00480{bottom:814.487067px;}
.y8_c00480{bottom:816.156471px;}
.y9_c00480{bottom:817.684371px;}
.y3_c00480{bottom:843.490500px;}
.y1_c00480{bottom:860.763000px;}
.y2_c00480{bottom:863.169834px;}
.h3_c00480{height:30.450000px;}
.h1a_c00480{height:43.055510px;}
.h23_c00480{height:49.356316px;}
.h1e_c00480{height:49.357994px;}
.h17_c00480{height:49.359869px;}
.h14_c00480{height:49.360880px;}
.hf_c00480{height:49.361941px;}
.h27_c00480{height:49.373707px;}
.hd_c00480{height:50.415748px;}
.h1d_c00480{height:51.458334px;}
.h15_c00480{height:51.461343px;}
.he_c00480{height:51.462449px;}
.h1f_c00480{height:52.509475px;}
.h10_c00480{height:52.510499px;}
.h13_c00480{height:52.512703px;}
.h26_c00480{height:52.522072px;}
.h16_c00480{height:53.550000px;}
.h25_c00480{height:53.572513px;}
.h1c_c00480{height:54.608844px;}
.h20_c00480{height:54.609854px;}
.h1b_c00480{height:55.650000px;}
.h24_c00480{height:55.657123px;}
.h22_c00480{height:55.660044px;}
.h11_c00480{height:55.661129px;}
.h21_c00480{height:57.760423px;}
.h12_c00480{height:58.811759px;}
.h18_c00480{height:60.907795px;}
.h19_c00480{height:64.058198px;}
.h5_c00480{height:64.065498px;}
.hc_c00480{height:65.115752px;}
.h9_c00480{height:68.266515px;}
.h8_c00480{height:69.316769px;}
.h7_c00480{height:70.367023px;}
.h28_c00480{height:70.383795px;}
.h6_c00480{height:71.417277px;}
.hb_c00480{height:72.467531px;}
.h4_c00480{height:73.517785px;}
.ha_c00480{height:78.769055px;}
.h2_c00480{height:88.206350px;}
.h1_c00480{height:1005.000000px;}
.h0_c00480{height:1005.150000px;}
.w0_c00480{width:715.200000px;}
.w1_c00480{width:715.500000px;}
.x0_c00480{left:0.000000px;}
.x7c_c00480{left:118.260000px;}
.x7e_c00480{left:120.144000px;}
.x64_c00480{left:122.296500px;}
.x6e_c00480{left:123.330000px;}
.x3_c00480{left:125.280000px;}
.x89_c00480{left:126.780372px;}
.x7f_c00480{left:130.909500px;}
.x6_c00480{left:138.270000px;}
.x71_c00480{left:139.809600px;}
.x7a_c00480{left:141.414022px;}
.x8a_c00480{left:143.556372px;}
.x65_c00480{left:145.225500px;}
.x40_c00480{left:147.963045px;}
.x5f_c00480{left:149.785536px;}
.x7_c00480{left:151.494000px;}
.xb_c00480{left:153.095043px;}
.x2e_c00480{left:154.170471px;}
.x4d_c00480{left:156.242700px;}
.x5a_c00480{left:158.110947px;}
.x6b_c00480{left:159.961434px;}
.x85_c00480{left:163.006500px;}
.x7d_c00480{left:169.830000px;}
.x4e_c00480{left:171.443190px;}
.x4_c00480{left:178.740000px;}
.x14_c00480{left:180.066786px;}
.x2f_c00480{left:181.992192px;}
.xc_c00480{left:183.525396px;}
.x47_c00480{left:184.912905px;}
.x8_c00480{left:187.455000px;}
.x80_c00480{left:188.943000px;}
.x76_c00480{left:192.457500px;}
.x5b_c00480{left:197.277702px;}
.x29_c00480{left:199.045710px;}
.x1_c00480{left:201.676500px;}
.x15_c00480{left:204.118398px;}
.x77_c00480{left:207.063000px;}
.x23_c00480{left:214.156356px;}
.x5_c00480{left:215.460000px;}
.x1c_c00480{left:217.121229px;}
.x74_c00480{left:218.785500px;}
.x30_c00480{left:221.427441px;}
.x5c_c00480{left:222.670218px;}
.x36_c00480{left:224.140419px;}
.x86_c00480{left:225.582000px;}
.xd_c00480{left:227.102310px;}
.x66_c00480{left:229.782000px;}
.x3b_c00480{left:231.120255px;}
.x78_c00480{left:232.725000px;}
.x68_c00480{left:235.396500px;}
.x7b_c00480{left:236.469507px;}
.x87_c00480{left:237.756000px;}
.x81_c00480{left:239.440500px;}
.x1d_c00480{left:241.967790px;}
.x6c_c00480{left:243.465108px;}
.x4f_c00480{left:244.564008px;}
.x8b_c00480{left:245.932872px;}
.x8d_c00480{left:250.204224px;}
.x60_c00480{left:255.304272px;}
.x9_c00480{left:256.318500px;}
.x72_c00480{left:258.017760px;}
.x16_c00480{left:260.572881px;}
.x6f_c00480{left:263.764500px;}
.x3c_c00480{left:269.804154px;}
.x48_c00480{left:272.694627px;}
.x8c_c00480{left:274.245372px;}
.x1e_c00480{left:277.370082px;}
.x2a_c00480{left:281.942025px;}
.x41_c00480{left:283.259925px;}
.x50_c00480{left:284.606148px;}
.x79_c00480{left:289.992000px;}
.x69_c00480{left:291.033000px;}
.x5d_c00480{left:293.428710px;}
.x17_c00480{left:295.717983px;}
.xe_c00480{left:297.296412px;}
.x6d_c00480{left:299.934312px;}
.x59_c00480{left:301.360773px;}
.x82_c00480{left:303.913500px;}
.x24_c00480{left:305.418882px;}
.x75_c00480{left:308.062500px;}
.x70_c00480{left:309.385500px;}
.x88_c00480{left:312.832500px;}
.x67_c00480{left:314.035500px;}
.xf_c00480{left:318.385836px;}
.x2b_c00480{left:321.089883px;}
.x83_c00480{left:324.769500px;}
.x31_c00480{left:326.927061px;}
.x42_c00480{left:331.040616px;}
.xa_c00480{left:332.200500px;}
.x73_c00480{left:335.035230px;}
.x25_c00480{left:337.025268px;}
.x3d_c00480{left:341.864490px;}
.x84_c00480{left:343.941000px;}
.x1f_c00480{left:346.458600px;}
.x18_c00480{left:350.402301px;}
.x10_c00480{left:355.380453px;}
.x6a_c00480{left:358.374000px;}
.x37_c00480{left:360.743928px;}
.x3e_c00480{left:362.638305px;}
.x43_c00480{left:365.053119px;}
.x32_c00480{left:366.173277px;}
.xaf_c00480{left:373.050602px;}
.x93_c00480{left:374.934381px;}
.x19_c00480{left:376.162578px;}
.x51_c00480{left:377.796786px;}
.x20_c00480{left:379.414326px;}
.x38_c00480{left:383.899446px;}
.x61_c00480{left:385.479336px;}
.x8e_c00480{left:387.915000px;}
.xa1_c00480{left:388.989000px;}
.xb1_c00480{left:391.336500px;}
.x11_c00480{left:394.254669px;}
.xaa_c00480{left:395.257218px;}
.xa0_c00480{left:398.794353px;}
.x2_c00480{left:402.246000px;}
.x54_c00480{left:404.202132px;}
.x5e_c00480{left:406.332051px;}
.x49_c00480{left:407.996007px;}
.x62_c00480{left:410.666697px;}
.xa2_c00480{left:411.930000px;}
.x44_c00480{left:413.760909px;}
.x12_c00480{left:415.614093px;}
.x26_c00480{left:417.239799px;}
.x94_c00480{left:418.394664px;}
.x1a_c00480{left:420.979005px;}
.x2c_c00480{left:424.793160px;}
.x55_c00480{left:425.814546px;}
.xb8_c00480{left:427.516500px;}
.xba_c00480{left:429.856301px;}
.x33_c00480{left:431.525148px;}
.x21_c00480{left:432.611481px;}
.xb2_c00480{left:435.675000px;}
.x95_c00480{left:437.030988px;}
.x39_c00480{left:438.249543px;}
.xb5_c00480{left:440.021724px;}
.x3f_c00480{left:441.774768px;}
.x9b_c00480{left:443.619963px;}
.x1b_c00480{left:445.836183px;}
.xbb_c00480{left:447.724301px;}
.x8f_c00480{left:449.176500px;}
.x22_c00480{left:451.817910px;}
.x13_c00480{left:453.408243px;}
.x96_c00480{left:454.834812px;}
.x4a_c00480{left:458.409429px;}
.x45_c00480{left:460.206501px;}
.xa3_c00480{left:462.417000px;}
.x2d_c00480{left:465.961551px;}
.x34_c00480{left:467.975265px;}
.x9c_c00480{left:471.590964px;}
.x90_c00480{left:475.921500px;}
.x56_c00480{left:476.933067px;}
.x27_c00480{left:479.087505px;}
.xab_c00480{left:480.273997px;}
.x3a_c00480{left:482.040447px;}
.x4b_c00480{left:484.159206px;}
.xb9_c00480{left:489.081000px;}
.x35_c00480{left:491.212788px;}
.x52_c00480{left:495.539574px;}
.xac_c00480{left:496.801870px;}
.x9d_c00480{left:500.523411px;}
.xa4_c00480{left:502.675500px;}
.xb0_c00480{left:506.808818px;}
.xb3_c00480{left:508.419000px;}
.xa8_c00480{left:510.797238px;}
.x57_c00480{left:511.982136px;}
.x4c_c00480{left:514.440879px;}
.x28_c00480{left:519.731787px;}
.x91_c00480{left:523.125000px;}
.xae_c00480{left:525.633000px;}
.x97_c00480{left:529.669662px;}
.xb6_c00480{left:534.881544px;}
.x58_c00480{left:536.839314px;}
.x63_c00480{left:538.943931px;}
.x46_c00480{left:541.825695px;}
.x53_c00480{left:545.809374px;}
.x98_c00480{left:549.377013px;}
.x9e_c00480{left:551.023602px;}
.xa9_c00480{left:552.680940px;}
.xad_c00480{left:554.813676px;}
.xa5_c00480{left:558.310500px;}
.xb4_c00480{left:561.358500px;}
.x99_c00480{left:568.548864px;}
.x9f_c00480{left:573.978765px;}
.xb7_c00480{left:575.363916px;}
.xa6_c00480{left:578.557500px;}
.xa7_c00480{left:580.993479px;}
.x92_c00480{left:583.129500px;}
.x9a_c00480{left:584.426661px;}
.xbc_c00480{left:586.285301px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs1_c00480{font-size:27.066667pt;}
.fs18_c00480{font-size:38.271564pt;}
.fs21_c00480{font-size:43.872281pt;}
.fs1c_c00480{font-size:43.873772pt;}
.fs15_c00480{font-size:43.875439pt;}
.fs12_c00480{font-size:43.876338pt;}
.fsd_c00480{font-size:43.877281pt;}
.fs25_c00480{font-size:43.887740pt;}
.fsb_c00480{font-size:44.813998pt;}
.fs1b_c00480{font-size:45.740742pt;}
.fs13_c00480{font-size:45.743416pt;}
.fsc_c00480{font-size:45.744399pt;}
.fs1d_c00480{font-size:46.675089pt;}
.fse_c00480{font-size:46.675999pt;}
.fs11_c00480{font-size:46.677959pt;}
.fs24_c00480{font-size:46.686286pt;}
.fs14_c00480{font-size:47.600000pt;}
.fs23_c00480{font-size:47.620012pt;}
.fs1a_c00480{font-size:48.541195pt;}
.fs1e_c00480{font-size:48.542093pt;}
.fs19_c00480{font-size:49.466667pt;}
.fs22_c00480{font-size:49.472998pt;}
.fs20_c00480{font-size:49.475595pt;}
.fsf_c00480{font-size:49.476559pt;}
.fs1f_c00480{font-size:51.342598pt;}
.fs10_c00480{font-size:52.277119pt;}
.fs16_c00480{font-size:54.140262pt;}
.fs17_c00480{font-size:56.940620pt;}
.fs3_c00480{font-size:56.947110pt;}
.fsa_c00480{font-size:57.880669pt;}
.fs7_c00480{font-size:60.681346pt;}
.fs6_c00480{font-size:61.614905pt;}
.fs5_c00480{font-size:62.548465pt;}
.fs26_c00480{font-size:62.563373pt;}
.fs4_c00480{font-size:63.482024pt;}
.fs9_c00480{font-size:64.415583pt;}
.fs2_c00480{font-size:65.349142pt;}
.fs8_c00480{font-size:70.016938pt;}
.fs0_c00480{font-size:78.405645pt;}
.y0_c00480{bottom:0.000000pt;}
.y15e_c00480{bottom:121.061015pt;}
.y15d_c00480{bottom:121.061489pt;}
.y15c_c00480{bottom:121.061805pt;}
.yf0_c00480{bottom:135.138667pt;}
.y155_c00480{bottom:138.492000pt;}
.y156_c00480{bottom:139.618664pt;}
.y157_c00480{bottom:140.104124pt;}
.y158_c00480{bottom:141.554676pt;}
.y159_c00480{bottom:142.083577pt;}
.y15a_c00480{bottom:142.904333pt;}
.y15b_c00480{bottom:144.165537pt;}
.ye5_c00480{bottom:150.478912pt;}
.ye6_c00480{bottom:150.735861pt;}
.ye7_c00480{bottom:150.946859pt;}
.ye8_c00480{bottom:151.119573pt;}
.ye9_c00480{bottom:151.469835pt;}
.yea_c00480{bottom:151.845269pt;}
.yeb_c00480{bottom:151.959499pt;}
.yec_c00480{bottom:152.347691pt;}
.yed_c00480{bottom:152.551477pt;}
.yee_c00480{bottom:153.025173pt;}
.yef_c00480{bottom:153.254357pt;}
.y14e_c00480{bottom:154.320867pt;}
.y14f_c00480{bottom:155.065896pt;}
.y150_c00480{bottom:155.782273pt;}
.y151_c00480{bottom:156.242871pt;}
.y152_c00480{bottom:157.614609pt;}
.y153_c00480{bottom:158.679644pt;}
.y154_c00480{bottom:159.814665pt;}
.ydd_c00480{bottom:166.560416pt;}
.yde_c00480{bottom:166.799008pt;}
.ydf_c00480{bottom:167.037173pt;}
.ye0_c00480{bottom:167.836277pt;}
.ye1_c00480{bottom:168.039285pt;}
.ye2_c00480{bottom:168.255029pt;}
.ye3_c00480{bottom:168.657696pt;}
.ye4_c00480{bottom:168.942432pt;}
.y147_c00480{bottom:170.168000pt;}
.y148_c00480{bottom:171.264277pt;}
.y149_c00480{bottom:171.499216pt;}
.y14a_c00480{bottom:172.215980pt;}
.y14b_c00480{bottom:173.086212pt;}
.y14c_c00480{bottom:173.726261pt;}
.y14d_c00480{bottom:175.159828pt;}
.yd2_c00480{bottom:182.402667pt;}
.yd3_c00480{bottom:182.702208pt;}
.yd4_c00480{bottom:183.017045pt;}
.yd5_c00480{bottom:183.493760pt;}
.yd6_c00480{bottom:183.653909pt;}
.yd7_c00480{bottom:183.907008pt;}
.yd8_c00480{bottom:184.080149pt;}
.yd9_c00480{bottom:184.448917pt;}
.yda_c00480{bottom:184.875413pt;}
.ydb_c00480{bottom:185.147904pt;}
.ydc_c00480{bottom:185.428608pt;}
.y13f_c00480{bottom:186.485077pt;}
.y140_c00480{bottom:187.002496pt;}
.y141_c00480{bottom:187.649813pt;}
.y142_c00480{bottom:188.285056pt;}
.y143_c00480{bottom:188.896757pt;}
.y144_c00480{bottom:189.640427pt;}
.y145_c00480{bottom:189.925835pt;}
.y146_c00480{bottom:190.897685pt;}
.yc8_c00480{bottom:197.525333pt;}
.yc9_c00480{bottom:197.716720pt;}
.yca_c00480{bottom:198.201040pt;}
.ycb_c00480{bottom:198.748427pt;}
.ycc_c00480{bottom:199.367707pt;}
.ycd_c00480{bottom:199.646160pt;}
.yce_c00480{bottom:200.083253pt;}
.ycf_c00480{bottom:200.792347pt;}
.yd0_c00480{bottom:201.163120pt;}
.yd1_c00480{bottom:201.503947pt;}
.y139_c00480{bottom:202.322667pt;}
.y13a_c00480{bottom:202.529387pt;}
.y13b_c00480{bottom:202.867264pt;}
.y13c_c00480{bottom:203.159979pt;}
.y13d_c00480{bottom:204.194560pt;}
.y13e_c00480{bottom:204.947477pt;}
.yc7_c00480{bottom:214.202667pt;}
.y133_c00480{bottom:217.680476pt;}
.y134_c00480{bottom:218.285412pt;}
.y135_c00480{bottom:218.687279pt;}
.y136_c00480{bottom:220.263236pt;}
.y137_c00480{bottom:220.771804pt;}
.y138_c00480{bottom:221.982157pt;}
.yc1_c00480{bottom:229.680004pt;}
.yc2_c00480{bottom:229.959243pt;}
.yc3_c00480{bottom:230.209575pt;}
.yc4_c00480{bottom:231.649575pt;}
.yc5_c00480{bottom:232.465377pt;}
.yc6_c00480{bottom:232.882636pt;}
.y12c_c00480{bottom:234.002667pt;}
.y12d_c00480{bottom:234.349759pt;}
.y12e_c00480{bottom:235.138335pt;}
.y12f_c00480{bottom:236.017984pt;}
.y130_c00480{bottom:236.501952pt;}
.y131_c00480{bottom:236.980575pt;}
.y132_c00480{bottom:237.469457pt;}
.yba_c00480{bottom:245.282667pt;}
.ybb_c00480{bottom:245.798119pt;}
.ybc_c00480{bottom:246.538943pt;}
.ybd_c00480{bottom:246.811579pt;}
.ybe_c00480{bottom:247.290603pt;}
.ybf_c00480{bottom:247.964647pt;}
.yc0_c00480{bottom:248.359587pt;}
.y125_c00480{bottom:250.074049pt;}
.y126_c00480{bottom:250.453797pt;}
.y127_c00480{bottom:250.888456pt;}
.y128_c00480{bottom:251.239672pt;}
.y129_c00480{bottom:252.040357pt;}
.y12a_c00480{bottom:252.348839pt;}
.y12b_c00480{bottom:253.431297pt;}
.yb2_c00480{bottom:261.362667pt;}
.yb3_c00480{bottom:261.580965pt;}
.yb4_c00480{bottom:261.814517pt;}
.yb5_c00480{bottom:262.945669pt;}
.yb6_c00480{bottom:263.822179pt;}
.yb7_c00480{bottom:264.471912pt;}
.yb8_c00480{bottom:264.691531pt;}
.yb9_c00480{bottom:265.152651pt;}
.y11d_c00480{bottom:266.398444pt;}
.y11e_c00480{bottom:267.108184pt;}
.y11f_c00480{bottom:267.410080pt;}
.y120_c00480{bottom:268.039947pt;}
.y121_c00480{bottom:268.324413pt;}
.y122_c00480{bottom:268.784384pt;}
.y123_c00480{bottom:269.529100pt;}
.y124_c00480{bottom:269.798199pt;}
.yb0_c00480{bottom:278.261733pt;}
.yb1_c00480{bottom:278.262053pt;}
.y117_c00480{bottom:282.479471pt;}
.y118_c00480{bottom:283.427875pt;}
.y119_c00480{bottom:284.180579pt;}
.y11a_c00480{bottom:284.630980pt;}
.y11b_c00480{bottom:285.074339pt;}
.y11c_c00480{bottom:285.941017pt;}
.ya9_c00480{bottom:293.281067pt;}
.yaa_c00480{bottom:293.583973pt;}
.yab_c00480{bottom:294.430587pt;}
.yac_c00480{bottom:295.281813pt;}
.yad_c00480{bottom:295.789493pt;}
.yae_c00480{bottom:296.249147pt;}
.yaf_c00480{bottom:297.226720pt;}
.y10e_c00480{bottom:298.562667pt;}
.y10f_c00480{bottom:298.950115pt;}
.y110_c00480{bottom:299.287504pt;}
.y111_c00480{bottom:299.802784pt;}
.y112_c00480{bottom:300.482705pt;}
.y113_c00480{bottom:300.948509pt;}
.y114_c00480{bottom:301.148592pt;}
.y115_c00480{bottom:301.422319pt;}
.y116_c00480{bottom:301.764268pt;}
.ya0_c00480{bottom:309.124000pt;}
.ya1_c00480{bottom:309.771093pt;}
.ya2_c00480{bottom:310.194453pt;}
.ya3_c00480{bottom:310.501787pt;}
.ya4_c00480{bottom:311.001067pt;}
.ya5_c00480{bottom:311.620613pt;}
.ya6_c00480{bottom:312.268587pt;}
.ya7_c00480{bottom:312.431653pt;}
.ya8_c00480{bottom:313.098907pt;}
.y10d_c00480{bottom:314.162544pt;}
.y10c_c00480{bottom:314.162776pt;}
.y99_c00480{bottom:325.197715pt;}
.y9a_c00480{bottom:325.760024pt;}
.y9b_c00480{bottom:326.136467pt;}
.y9c_c00480{bottom:326.818168pt;}
.y9d_c00480{bottom:327.022139pt;}
.y9e_c00480{bottom:327.875637pt;}
.y9f_c00480{bottom:328.757995pt;}
.y103_c00480{bottom:329.756675pt;}
.y104_c00480{bottom:330.342885pt;}
.y105_c00480{bottom:330.978301pt;}
.y106_c00480{bottom:331.163168pt;}
.y107_c00480{bottom:331.475187pt;}
.y108_c00480{bottom:331.990123pt;}
.y109_c00480{bottom:332.393027pt;}
.y10a_c00480{bottom:332.887488pt;}
.y10b_c00480{bottom:333.296117pt;}
.y92_c00480{bottom:341.044000pt;}
.y93_c00480{bottom:342.205893pt;}
.y94_c00480{bottom:342.997688pt;}
.y95_c00480{bottom:343.240275pt;}
.y96_c00480{bottom:344.328277pt;}
.y97_c00480{bottom:344.851437pt;}
.y98_c00480{bottom:345.645168pt;}
.yf9_c00480{bottom:345.839168pt;}
.yfa_c00480{bottom:346.317640pt;}
.yfb_c00480{bottom:346.495853pt;}
.yfc_c00480{bottom:346.778029pt;}
.yfd_c00480{bottom:347.046885pt;}
.yfe_c00480{bottom:347.479688pt;}
.yff_c00480{bottom:348.177555pt;}
.y100_c00480{bottom:348.475533pt;}
.y101_c00480{bottom:348.764944pt;}
.y102_c00480{bottom:349.004317pt;}
.y8b_c00480{bottom:356.405333pt;}
.y8c_c00480{bottom:356.914867pt;}
.y8d_c00480{bottom:357.726100pt;}
.y8e_c00480{bottom:358.793900pt;}
.y8f_c00480{bottom:359.484733pt;}
.y90_c00480{bottom:360.666200pt;}
.y91_c00480{bottom:361.068533pt;}
.yf1_c00480{bottom:361.922667pt;}
.yf2_c00480{bottom:362.298219pt;}
.yf3_c00480{bottom:362.613531pt;}
.yf4_c00480{bottom:362.902851pt;}
.yf5_c00480{bottom:363.330771pt;}
.yf6_c00480{bottom:364.086027pt;}
.yf7_c00480{bottom:364.376907pt;}
.yf8_c00480{bottom:365.046099pt;}
.y82_c00480{bottom:418.969309pt;}
.y83_c00480{bottom:419.944144pt;}
.y84_c00480{bottom:420.376469pt;}
.y85_c00480{bottom:420.924584pt;}
.y86_c00480{bottom:421.517219pt;}
.y87_c00480{bottom:422.111056pt;}
.y88_c00480{bottom:422.447533pt;}
.y89_c00480{bottom:423.182632pt;}
.y8a_c00480{bottom:424.158347pt;}
.y7a_c00480{bottom:439.852808pt;}
.y7b_c00480{bottom:440.305251pt;}
.y7c_c00480{bottom:440.599051pt;}
.y7d_c00480{bottom:441.139099pt;}
.y7e_c00480{bottom:441.417165pt;}
.y7f_c00480{bottom:442.187904pt;}
.y80_c00480{bottom:442.456944pt;}
.y81_c00480{bottom:442.721949pt;}
.y79_c00480{bottom:460.366707pt;}
.y78_c00480{bottom:460.367293pt;}
.y6c_c00480{bottom:479.467469pt;}
.y6d_c00480{bottom:479.920243pt;}
.y6e_c00480{bottom:480.443299pt;}
.y6f_c00480{bottom:481.130965pt;}
.y70_c00480{bottom:482.180936pt;}
.y71_c00480{bottom:482.556325pt;}
.y72_c00480{bottom:483.424008pt;}
.y73_c00480{bottom:483.769280pt;}
.y74_c00480{bottom:484.300523pt;}
.y75_c00480{bottom:484.586176pt;}
.y76_c00480{bottom:485.147520pt;}
.y77_c00480{bottom:485.545573pt;}
.y61_c00480{bottom:499.390427pt;}
.y62_c00480{bottom:499.647661pt;}
.y63_c00480{bottom:499.884947pt;}
.y64_c00480{bottom:500.413603pt;}
.y65_c00480{bottom:500.882819pt;}
.y66_c00480{bottom:501.559147pt;}
.y67_c00480{bottom:502.661931pt;}
.y68_c00480{bottom:503.133421pt;}
.y69_c00480{bottom:504.286653pt;}
.y6a_c00480{bottom:505.121128pt;}
.y6b_c00480{bottom:505.970784pt;}
.y55_c00480{bottom:520.275405pt;}
.y56_c00480{bottom:520.781165pt;}
.y57_c00480{bottom:521.399019pt;}
.y58_c00480{bottom:522.185635pt;}
.y59_c00480{bottom:522.574549pt;}
.y5a_c00480{bottom:523.045395pt;}
.y5b_c00480{bottom:523.964891pt;}
.y5c_c00480{bottom:524.351296pt;}
.y5d_c00480{bottom:524.822728pt;}
.y5e_c00480{bottom:525.158405pt;}
.y5f_c00480{bottom:525.569912pt;}
.y60_c00480{bottom:526.054035pt;}
.y4d_c00480{bottom:539.961552pt;}
.y4e_c00480{bottom:541.711864pt;}
.y4f_c00480{bottom:542.127125pt;}
.y50_c00480{bottom:542.892088pt;}
.y51_c00480{bottom:543.435829pt;}
.y52_c00480{bottom:544.214920pt;}
.y53_c00480{bottom:544.957776pt;}
.y54_c00480{bottom:546.263077pt;}
.y45_c00480{bottom:559.885229pt;}
.y46_c00480{bottom:560.575229pt;}
.y47_c00480{bottom:561.103845pt;}
.y48_c00480{bottom:561.722931pt;}
.y49_c00480{bottom:562.875987pt;}
.y4a_c00480{bottom:563.208861pt;}
.y4b_c00480{bottom:563.835941pt;}
.y4c_c00480{bottom:564.474949pt;}
.y3d_c00480{bottom:580.051451pt;}
.y3e_c00480{bottom:580.793203pt;}
.y3f_c00480{bottom:581.233155pt;}
.y40_c00480{bottom:583.540336pt;}
.y41_c00480{bottom:583.931792pt;}
.y42_c00480{bottom:584.471083pt;}
.y43_c00480{bottom:584.849235pt;}
.y44_c00480{bottom:585.588200pt;}
.y34_c00480{bottom:600.216032pt;}
.y35_c00480{bottom:600.710744pt;}
.y36_c00480{bottom:601.411221pt;}
.y37_c00480{bottom:602.390891pt;}
.y38_c00480{bottom:603.287568pt;}
.y39_c00480{bottom:603.985683pt;}
.y3a_c00480{bottom:605.147619pt;}
.y3b_c00480{bottom:605.795056pt;}
.y3c_c00480{bottom:606.208125pt;}
.y2c_c00480{bottom:620.139440pt;}
.y2d_c00480{bottom:620.992552pt;}
.y2e_c00480{bottom:622.540267pt;}
.y2f_c00480{bottom:623.271141pt;}
.y30_c00480{bottom:623.753565pt;}
.y31_c00480{bottom:624.295392pt;}
.y32_c00480{bottom:625.207072pt;}
.y33_c00480{bottom:625.976125pt;}
.y25_c00480{bottom:640.543827pt;}
.y26_c00480{bottom:641.615216pt;}
.y27_c00480{bottom:643.237160pt;}
.y28_c00480{bottom:643.799213pt;}
.y29_c00480{bottom:645.225117pt;}
.y2a_c00480{bottom:646.325197pt;}
.y2b_c00480{bottom:647.047984pt;}
.y1d_c00480{bottom:661.190235pt;}
.y1e_c00480{bottom:662.375211pt;}
.y1f_c00480{bottom:662.838421pt;}
.y20_c00480{bottom:663.498717pt;}
.y21_c00480{bottom:664.788419pt;}
.y22_c00480{bottom:665.403539pt;}
.y23_c00480{bottom:666.397149pt;}
.y24_c00480{bottom:666.755400pt;}
.y13_c00480{bottom:681.593637pt;}
.y14_c00480{bottom:682.021779pt;}
.y15_c00480{bottom:682.406747pt;}
.y16_c00480{bottom:682.760013pt;}
.y17_c00480{bottom:683.309315pt;}
.y18_c00480{bottom:683.871203pt;}
.y19_c00480{bottom:684.745824pt;}
.y1a_c00480{bottom:685.157536pt;}
.y1b_c00480{bottom:685.875203pt;}
.y1c_c00480{bottom:686.273256pt;}
.ya_c00480{bottom:701.998917pt;}
.yb_c00480{bottom:702.539307pt;}
.yc_c00480{bottom:703.314107pt;}
.yd_c00480{bottom:704.561397pt;}
.ye_c00480{bottom:704.936461pt;}
.yf_c00480{bottom:705.594547pt;}
.y10_c00480{bottom:706.285387pt;}
.y11_c00480{bottom:706.665731pt;}
.y12_c00480{bottom:707.338117pt;}
.y4_c00480{bottom:721.680000pt;}
.y5_c00480{bottom:721.938603pt;}
.y6_c00480{bottom:722.641840pt;}
.y7_c00480{bottom:723.988504pt;}
.y8_c00480{bottom:725.472419pt;}
.y9_c00480{bottom:726.830552pt;}
.y3_c00480{bottom:749.769333pt;}
.y1_c00480{bottom:765.122667pt;}
.y2_c00480{bottom:767.262075pt;}
.h3_c00480{height:27.066667pt;}
.h1a_c00480{height:38.271564pt;}
.h23_c00480{height:43.872281pt;}
.h1e_c00480{height:43.873772pt;}
.h17_c00480{height:43.875439pt;}
.h14_c00480{height:43.876338pt;}
.hf_c00480{height:43.877281pt;}
.h27_c00480{height:43.887740pt;}
.hd_c00480{height:44.813998pt;}
.h1d_c00480{height:45.740742pt;}
.h15_c00480{height:45.743416pt;}
.he_c00480{height:45.744399pt;}
.h1f_c00480{height:46.675089pt;}
.h10_c00480{height:46.675999pt;}
.h13_c00480{height:46.677959pt;}
.h26_c00480{height:46.686286pt;}
.h16_c00480{height:47.600000pt;}
.h25_c00480{height:47.620012pt;}
.h1c_c00480{height:48.541195pt;}
.h20_c00480{height:48.542093pt;}
.h1b_c00480{height:49.466667pt;}
.h24_c00480{height:49.472998pt;}
.h22_c00480{height:49.475595pt;}
.h11_c00480{height:49.476559pt;}
.h21_c00480{height:51.342598pt;}
.h12_c00480{height:52.277119pt;}
.h18_c00480{height:54.140262pt;}
.h19_c00480{height:56.940620pt;}
.h5_c00480{height:56.947110pt;}
.hc_c00480{height:57.880669pt;}
.h9_c00480{height:60.681346pt;}
.h8_c00480{height:61.614905pt;}
.h7_c00480{height:62.548465pt;}
.h28_c00480{height:62.563373pt;}
.h6_c00480{height:63.482024pt;}
.hb_c00480{height:64.415583pt;}
.h4_c00480{height:65.349142pt;}
.ha_c00480{height:70.016938pt;}
.h2_c00480{height:78.405645pt;}
.h1_c00480{height:893.333333pt;}
.h0_c00480{height:893.466667pt;}
.w0_c00480{width:635.733333pt;}
.w1_c00480{width:636.000000pt;}
.x0_c00480{left:0.000000pt;}
.x7c_c00480{left:105.120000pt;}
.x7e_c00480{left:106.794667pt;}
.x64_c00480{left:108.708000pt;}
.x6e_c00480{left:109.626667pt;}
.x3_c00480{left:111.360000pt;}
.x89_c00480{left:112.693664pt;}
.x7f_c00480{left:116.364000pt;}
.x6_c00480{left:122.906667pt;}
.x71_c00480{left:124.275200pt;}
.x7a_c00480{left:125.701353pt;}
.x8a_c00480{left:127.605664pt;}
.x65_c00480{left:129.089333pt;}
.x40_c00480{left:131.522707pt;}
.x5f_c00480{left:133.142699pt;}
.x7_c00480{left:134.661333pt;}
.xb_c00480{left:136.084483pt;}
.x2e_c00480{left:137.040419pt;}
.x4d_c00480{left:138.882400pt;}
.x5a_c00480{left:140.543064pt;}
.x6b_c00480{left:142.187941pt;}
.x85_c00480{left:144.894667pt;}
.x7d_c00480{left:150.960000pt;}
.x4e_c00480{left:152.393947pt;}
.x4_c00480{left:158.880000pt;}
.x14_c00480{left:160.059365pt;}
.x2f_c00480{left:161.770837pt;}
.xc_c00480{left:163.133685pt;}
.x47_c00480{left:164.367027pt;}
.x8_c00480{left:166.626667pt;}
.x80_c00480{left:167.949333pt;}
.x76_c00480{left:171.073333pt;}
.x5b_c00480{left:175.357957pt;}
.x29_c00480{left:176.929520pt;}
.x1_c00480{left:179.268000pt;}
.x15_c00480{left:181.438576pt;}
.x77_c00480{left:184.056000pt;}
.x23_c00480{left:190.361205pt;}
.x5_c00480{left:191.520000pt;}
.x1c_c00480{left:192.996648pt;}
.x74_c00480{left:194.476000pt;}
.x30_c00480{left:196.824392pt;}
.x5c_c00480{left:197.929083pt;}
.x36_c00480{left:199.235928pt;}
.x86_c00480{left:200.517333pt;}
.xd_c00480{left:201.868720pt;}
.x66_c00480{left:204.250667pt;}
.x3b_c00480{left:205.440227pt;}
.x78_c00480{left:206.866667pt;}
.x68_c00480{left:209.241333pt;}
.x7b_c00480{left:210.195117pt;}
.x87_c00480{left:211.338667pt;}
.x81_c00480{left:212.836000pt;}
.x1d_c00480{left:215.082480pt;}
.x6c_c00480{left:216.413429pt;}
.x4f_c00480{left:217.390229pt;}
.x8b_c00480{left:218.606997pt;}
.x8d_c00480{left:222.403755pt;}
.x60_c00480{left:226.937131pt;}
.x9_c00480{left:227.838667pt;}
.x72_c00480{left:229.349120pt;}
.x16_c00480{left:231.620339pt;}
.x6f_c00480{left:234.457333pt;}
.x3c_c00480{left:239.825915pt;}
.x48_c00480{left:242.395224pt;}
.x8c_c00480{left:243.773664pt;}
.x1e_c00480{left:246.551184pt;}
.x2a_c00480{left:250.615133pt;}
.x41_c00480{left:251.786600pt;}
.x50_c00480{left:252.983243pt;}
.x79_c00480{left:257.770667pt;}
.x69_c00480{left:258.696000pt;}
.x5d_c00480{left:260.825520pt;}
.x17_c00480{left:262.860429pt;}
.xe_c00480{left:264.263477pt;}
.x6d_c00480{left:266.608277pt;}
.x59_c00480{left:267.876243pt;}
.x82_c00480{left:270.145333pt;}
.x24_c00480{left:271.483451pt;}
.x75_c00480{left:273.833333pt;}
.x70_c00480{left:275.009333pt;}
.x88_c00480{left:278.073333pt;}
.x67_c00480{left:279.142667pt;}
.xf_c00480{left:283.009632pt;}
.x2b_c00480{left:285.413229pt;}
.x83_c00480{left:288.684000pt;}
.x31_c00480{left:290.601832pt;}
.x42_c00480{left:294.258325pt;}
.xa_c00480{left:295.289333pt;}
.x73_c00480{left:297.809093pt;}
.x25_c00480{left:299.578016pt;}
.x3d_c00480{left:303.879547pt;}
.x84_c00480{left:305.725333pt;}
.x1f_c00480{left:307.963200pt;}
.x18_c00480{left:311.468712pt;}
.x10_c00480{left:315.893736pt;}
.x6a_c00480{left:318.554667pt;}
.x37_c00480{left:320.661269pt;}
.x3e_c00480{left:322.345160pt;}
.x43_c00480{left:324.491661pt;}
.x32_c00480{left:325.487357pt;}
.xaf_c00480{left:331.600535pt;}
.x93_c00480{left:333.275005pt;}
.x19_c00480{left:334.366736pt;}
.x51_c00480{left:335.819365pt;}
.x20_c00480{left:337.257179pt;}
.x38_c00480{left:341.243952pt;}
.x61_c00480{left:342.648299pt;}
.x8e_c00480{left:344.813333pt;}
.xa1_c00480{left:345.768000pt;}
.xb1_c00480{left:347.854667pt;}
.x11_c00480{left:350.448595pt;}
.xaa_c00480{left:351.339749pt;}
.xa0_c00480{left:354.483869pt;}
.x2_c00480{left:357.552000pt;}
.x54_c00480{left:359.290784pt;}
.x5e_c00480{left:361.184045pt;}
.x49_c00480{left:362.663117pt;}
.x62_c00480{left:365.037064pt;}
.xa2_c00480{left:366.160000pt;}
.x44_c00480{left:367.787475pt;}
.x12_c00480{left:369.434749pt;}
.x26_c00480{left:370.879821pt;}
.x94_c00480{left:371.906368pt;}
.x1a_c00480{left:374.203560pt;}
.x2c_c00480{left:377.593920pt;}
.x55_c00480{left:378.501819pt;}
.xb8_c00480{left:380.014667pt;}
.xba_c00480{left:382.094489pt;}
.x33_c00480{left:383.577909pt;}
.x21_c00480{left:384.543539pt;}
.xb2_c00480{left:387.266667pt;}
.x95_c00480{left:388.471989pt;}
.x39_c00480{left:389.555149pt;}
.xb5_c00480{left:391.130421pt;}
.x3f_c00480{left:392.688683pt;}
.x9b_c00480{left:394.328856pt;}
.x1b_c00480{left:396.298829pt;}
.xbb_c00480{left:397.977156pt;}
.x8f_c00480{left:399.268000pt;}
.x22_c00480{left:401.615920pt;}
.x13_c00480{left:403.029549pt;}
.x96_c00480{left:404.297611pt;}
.x4a_c00480{left:407.475048pt;}
.x45_c00480{left:409.072445pt;}
.xa3_c00480{left:411.037333pt;}
.x2d_c00480{left:414.188045pt;}
.x34_c00480{left:415.978013pt;}
.x9c_c00480{left:419.191968pt;}
.x90_c00480{left:423.041333pt;}
.x56_c00480{left:423.940504pt;}
.x27_c00480{left:425.855560pt;}
.xab_c00480{left:426.910220pt;}
.x3a_c00480{left:428.480397pt;}
.x4b_c00480{left:430.363739pt;}
.xb9_c00480{left:434.738667pt;}
.x35_c00480{left:436.633589pt;}
.x52_c00480{left:440.479621pt;}
.xac_c00480{left:441.601663pt;}
.x9d_c00480{left:444.909699pt;}
.xa4_c00480{left:446.822667pt;}
.xb0_c00480{left:450.496727pt;}
.xb3_c00480{left:451.928000pt;}
.xa8_c00480{left:454.041989pt;}
.x57_c00480{left:455.095232pt;}
.x4c_c00480{left:457.280781pt;}
.x28_c00480{left:461.983811pt;}
.x91_c00480{left:465.000000pt;}
.xae_c00480{left:467.229333pt;}
.x97_c00480{left:470.817477pt;}
.xb6_c00480{left:475.450261pt;}
.x58_c00480{left:477.190501pt;}
.x63_c00480{left:479.061272pt;}
.x46_c00480{left:481.622840pt;}
.x53_c00480{left:485.163888pt;}
.x98_c00480{left:488.335123pt;}
.x9e_c00480{left:489.798757pt;}
.xa9_c00480{left:491.271947pt;}
.xad_c00480{left:493.167712pt;}
.xa5_c00480{left:496.276000pt;}
.xb4_c00480{left:498.985333pt;}
.x99_c00480{left:505.376768pt;}
.x9f_c00480{left:510.203347pt;}
.xb7_c00480{left:511.434592pt;}
.xa6_c00480{left:514.273333pt;}
.xa7_c00480{left:516.438648pt;}
.x92_c00480{left:518.337333pt;}
.x9a_c00480{left:519.490365pt;}
.xbc_c00480{left:521.142489pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m44_c00481{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);}
.mbf_c00481{transform:matrix(0.015807,0.000332,-0.005249,0.249945,0,0);-ms-transform:matrix(0.015807,0.000332,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.015807,0.000332,-0.005249,0.249945,0,0);}
.m1c_c00481{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m43_c00481{transform:matrix(0.090565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090565,0.000000,0.000000,0.250000,0,0);}
.m30_c00481{transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);}
.m97_c00481{transform:matrix(0.113340,0.001020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.113340,0.001020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.113340,0.001020,-0.002250,0.249990,0,0);}
.m67_c00481{transform:matrix(0.115345,0.001038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.115345,0.001038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.115345,0.001038,-0.002250,0.249990,0,0);}
.mb1_c00481{transform:matrix(0.131000,0.001179,-0.002250,0.249990,0,0);-ms-transform:matrix(0.131000,0.001179,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.131000,0.001179,-0.002250,0.249990,0,0);}
.mb2_c00481{transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);}
.m13_c00481{transform:matrix(0.145440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145440,0.000000,0.000000,0.250000,0,0);}
.m47_c00481{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);}
.m8_c00481{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);}
.m9b_c00481{transform:matrix(0.149599,0.001346,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149599,0.001346,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149599,0.001346,-0.002250,0.249990,0,0);}
.m75_c00481{transform:matrix(0.151174,0.001361,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151174,0.001361,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151174,0.001361,-0.002250,0.249990,0,0);}
.m5a_c00481{transform:matrix(0.152007,0.001520,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152007,0.001520,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152007,0.001520,-0.002500,0.249988,0,0);}
.m15_c00481{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);}
.m4a_c00481{transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156405,0.000000,0.000000,0.250000,0,0);}
.m77_c00481{transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156559,0.001409,-0.002250,0.249990,0,0);}
.mab_c00481{transform:matrix(0.156744,0.001411,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156744,0.001411,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156744,0.001411,-0.002250,0.249990,0,0);}
.m90_c00481{transform:matrix(0.156879,0.001412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156879,0.001412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156879,0.001412,-0.002250,0.249990,0,0);}
.m58_c00481{transform:matrix(0.157902,0.001579,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157902,0.001579,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157902,0.001579,-0.002500,0.249988,0,0);}
.m6d_c00481{transform:matrix(0.160079,0.001441,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160079,0.001441,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160079,0.001441,-0.002250,0.249990,0,0);}
.m68_c00481{transform:matrix(0.160748,0.001447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160748,0.001447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160748,0.001447,-0.002250,0.249990,0,0);}
.m6_c00481{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);}
.m16_c00481{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);}
.m87_c00481{transform:matrix(0.164788,0.001483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164788,0.001483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164788,0.001483,-0.002250,0.249990,0,0);}
.m6c_c00481{transform:matrix(0.165453,0.001489,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165453,0.001489,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165453,0.001489,-0.002250,0.249990,0,0);}
.m1f_c00481{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);}
.m7f_c00481{transform:matrix(0.166708,0.001500,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166708,0.001500,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166708,0.001500,-0.002250,0.249990,0,0);}
.maf_c00481{transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);}
.m7_c00481{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);}
.m2c_c00481{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);}
.mae_c00481{transform:matrix(0.170803,0.001537,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170803,0.001537,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170803,0.001537,-0.002250,0.249990,0,0);}
.m73_c00481{transform:matrix(0.170973,0.001539,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170973,0.001539,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170973,0.001539,-0.002250,0.249990,0,0);}
.m7a_c00481{transform:matrix(0.171353,0.001542,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171353,0.001542,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171353,0.001542,-0.002250,0.249990,0,0);}
.m40_c00481{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);}
.m41_c00481{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);}
.mad_c00481{transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);}
.ma5_c00481{transform:matrix(0.171818,0.001546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171818,0.001546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171818,0.001546,-0.002250,0.249990,0,0);}
.m5e_c00481{transform:matrix(0.172621,0.001726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172621,0.001726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172621,0.001726,-0.002500,0.249988,0,0);}
.m76_c00481{transform:matrix(0.172813,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172813,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172813,0.001555,-0.002250,0.249990,0,0);}
.m6b_c00481{transform:matrix(0.172818,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172818,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172818,0.001555,-0.002250,0.249990,0,0);}
.m1a_c00481{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);}
.md_c00481{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);}
.mb3_c00481{transform:matrix(0.176276,0.003702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176276,0.003702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176276,0.003702,-0.005249,0.249945,0,0);}
.mac_c00481{transform:matrix(0.176828,0.001591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176828,0.001591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176828,0.001591,-0.002250,0.249990,0,0);}
.m3c_c00481{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);}
.m25_c00481{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);}
.m12_c00481{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);}
.mb0_c00481{transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177403,0.001597,-0.002250,0.249990,0,0);}
.m1b_c00481{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);}
.m86_c00481{transform:matrix(0.178358,0.001605,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178358,0.001605,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178358,0.001605,-0.002250,0.249990,0,0);}
.m74_c00481{transform:matrix(0.178398,0.001606,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178398,0.001606,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178398,0.001606,-0.002250,0.249990,0,0);}
.m14_c00481{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);}
.maa_c00481{transform:matrix(0.178663,0.001608,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178663,0.001608,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178663,0.001608,-0.002250,0.249990,0,0);}
.mc_c00481{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);}
.m80_c00481{transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179473,0.001615,-0.002250,0.249990,0,0);}
.m22_c00481{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);}
.m50_c00481{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);}
.mb_c00481{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);}
.m51_c00481{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);}
.m9a_c00481{transform:matrix(0.180353,0.001623,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180353,0.001623,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180353,0.001623,-0.002250,0.249990,0,0);}
.m9c_c00481{transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181498,0.001633,-0.002250,0.249990,0,0);}
.m6f_c00481{transform:matrix(0.182728,0.001645,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182728,0.001645,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182728,0.001645,-0.002250,0.249990,0,0);}
.m4_c00481{transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);}
.m5c_c00481{transform:matrix(0.184726,0.001847,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184726,0.001847,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184726,0.001847,-0.002500,0.249988,0,0);}
.m10_c00481{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);}
.m57_c00481{transform:matrix(0.186261,0.001863,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186261,0.001863,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186261,0.001863,-0.002500,0.249988,0,0);}
.m5_c00481{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);}
.m20_c00481{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);}
.m69_c00481{transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);}
.m71_c00481{transform:matrix(0.187877,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187877,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187877,0.001691,-0.002250,0.249990,0,0);}
.m99_c00481{transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187977,0.001692,-0.002250,0.249990,0,0);}
.m11_c00481{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);}
.m79_c00481{transform:matrix(0.188577,0.001697,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188577,0.001697,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188577,0.001697,-0.002250,0.249990,0,0);}
.m1e_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);}
.m2f_c00481{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);}
.m9f_c00481{transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189572,0.001706,-0.002250,0.249990,0,0);}
.m66_c00481{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);}
.m27_c00481{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);}
.m53_c00481{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);}
.m9_c00481{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);}
.m26_c00481{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);}
.m49_c00481{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);}
.m7c_c00481{transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192162,0.001729,-0.002250,0.249990,0,0);}
.m37_c00481{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);}
.m8c_c00481{transform:matrix(0.192962,0.001737,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192962,0.001737,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192962,0.001737,-0.002250,0.249990,0,0);}
.m72_c00481{transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193057,0.001738,-0.002250,0.249990,0,0);}
.m7b_c00481{transform:matrix(0.193372,0.001740,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193372,0.001740,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193372,0.001740,-0.002250,0.249990,0,0);}
.m3f_c00481{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);}
.ma8_c00481{transform:matrix(0.194507,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194507,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194507,0.001751,-0.002250,0.249990,0,0);}
.m4f_c00481{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);}
.m4e_c00481{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);}
.m36_c00481{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);}
.m60_c00481{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_c00481{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);}
.m8f_c00481{transform:matrix(0.196072,0.001765,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196072,0.001765,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196072,0.001765,-0.002250,0.249990,0,0);}
.m1d_c00481{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);}
.m48_c00481{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);}
.ma0_c00481{transform:matrix(0.196767,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196767,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196767,0.001771,-0.002250,0.249990,0,0);}
.m3_c00481{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00481{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);}
.m33_c00481{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);}
.m95_c00481{transform:matrix(0.198952,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198952,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198952,0.001791,-0.002250,0.249990,0,0);}
.m96_c00481{transform:matrix(0.198967,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198967,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198967,0.001791,-0.002250,0.249990,0,0);}
.m4d_c00481{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);}
.ma7_c00481{transform:matrix(0.200157,0.001801,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200157,0.001801,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200157,0.001801,-0.002250,0.249990,0,0);}
.ma6_c00481{transform:matrix(0.200452,0.001804,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200452,0.001804,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200452,0.001804,-0.002250,0.249990,0,0);}
.m28_c00481{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m64_c00481{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);}
.m3a_c00481{transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);}
.m46_c00481{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);}
.m5b_c00481{transform:matrix(0.202185,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202185,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202185,0.002022,-0.002500,0.249988,0,0);}
.m94_c00481{transform:matrix(0.202227,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202227,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202227,0.001820,-0.002250,0.249990,0,0);}
.ma9_c00481{transform:matrix(0.202562,0.001823,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202562,0.001823,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202562,0.001823,-0.002250,0.249990,0,0);}
.m5d_c00481{transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202915,0.002029,-0.002500,0.249988,0,0);}
.m8d_c00481{transform:matrix(0.203272,0.001829,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203272,0.001829,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203272,0.001829,-0.002250,0.249990,0,0);}
.m17_c00481{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);}
.m78_c00481{transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203722,0.001833,-0.002250,0.249990,0,0);}
.m18_c00481{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);}
.m2b_c00481{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);}
.m81_c00481{transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205002,0.001845,-0.002250,0.249990,0,0);}
.m39_c00481{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);}
.m54_c00481{transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);}
.m42_c00481{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);}
.m21_c00481{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);}
.m6e_c00481{transform:matrix(0.207187,0.001865,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207187,0.001865,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207187,0.001865,-0.002250,0.249990,0,0);}
.m4c_c00481{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{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);}
.m98_c00481{transform:matrix(0.207797,0.001870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207797,0.001870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207797,0.001870,-0.002250,0.249990,0,0);}
.m35_c00481{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);}
.m2e_c00481{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);}
.m23_c00481{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);}
.m34_c00481{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);}
.m56_c00481{transform:matrix(0.209000,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209000,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209000,0.002090,-0.002500,0.249988,0,0);}
.m3e_c00481{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);}
.m70_c00481{transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209592,0.001886,-0.002250,0.249990,0,0);}
.mbd_c00481{transform:matrix(0.211033,0.004432,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211033,0.004432,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211033,0.004432,-0.005249,0.249945,0,0);}
.m4b_c00481{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);}
.ma4_c00481{transform:matrix(0.211441,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211441,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211441,0.001903,-0.002250,0.249990,0,0);}
.ma2_c00481{transform:matrix(0.211631,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211631,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211631,0.001905,-0.002250,0.249990,0,0);}
.m1_c00481{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_c00481{transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);}
.m8a_c00481{transform:matrix(0.213581,0.001922,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213581,0.001922,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213581,0.001922,-0.002250,0.249990,0,0);}
.m3d_c00481{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);}
.mf_c00481{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);}
.m24_c00481{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);}
.m2d_c00481{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);}
.m6a_c00481{transform:matrix(0.217471,0.001957,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217471,0.001957,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217471,0.001957,-0.002250,0.249990,0,0);}
.mb6_c00481{transform:matrix(0.218062,0.004579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218062,0.004579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218062,0.004579,-0.005249,0.249945,0,0);}
.mb4_c00481{transform:matrix(0.218252,0.004583,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218252,0.004583,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218252,0.004583,-0.005249,0.249945,0,0);}
.ma_c00481{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);}
.m63_c00481{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);}
.m9e_c00481{transform:matrix(0.220151,0.001981,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220151,0.001981,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220151,0.001981,-0.002250,0.249990,0,0);}
.m32_c00481{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);}
.m55_c00481{transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);}
.m8e_c00481{transform:matrix(0.222331,0.002001,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222331,0.002001,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222331,0.002001,-0.002250,0.249990,0,0);}
.mbe_c00481{transform:matrix(0.222711,0.004677,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222711,0.004677,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222711,0.004677,-0.005249,0.249945,0,0);}
.m91_c00481{transform:matrix(0.224171,0.002018,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224171,0.002018,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224171,0.002018,-0.002250,0.249990,0,0);}
.mbb_c00481{transform:matrix(0.225170,0.004729,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225170,0.004729,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225170,0.004729,-0.005249,0.249945,0,0);}
.m8b_c00481{transform:matrix(0.227401,0.002047,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227401,0.002047,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227401,0.002047,-0.002250,0.249990,0,0);}
.m88_c00481{transform:matrix(0.227526,0.002048,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227526,0.002048,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227526,0.002048,-0.002250,0.249990,0,0);}
.m29_c00481{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);}
.m52_c00481{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);}
.mba_c00481{transform:matrix(0.229134,0.004812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229134,0.004812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229134,0.004812,-0.005249,0.249945,0,0);}
.me_c00481{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);}
.ma1_c00481{transform:matrix(0.231146,0.002080,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231146,0.002080,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231146,0.002080,-0.002250,0.249990,0,0);}
.m82_c00481{transform:matrix(0.235575,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235575,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235575,0.002120,-0.002250,0.249990,0,0);}
.m45_c00481{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00481{transform:matrix(0.237773,0.004993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237773,0.004993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237773,0.004993,-0.005249,0.249945,0,0);}
.m61_c00481{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);}
.m2_c00481{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);}
.mb8_c00481{transform:matrix(0.241767,0.005077,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241767,0.005077,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241767,0.005077,-0.005249,0.249945,0,0);}
.m62_c00481{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.mb7_c00481{transform:matrix(0.245516,0.005156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245516,0.005156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245516,0.005156,-0.005249,0.249945,0,0);}
.m65_c00481{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);}
.m38_c00481{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);}
.m84_c00481{transform:matrix(0.249685,0.002247,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249685,0.002247,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249685,0.002247,-0.002250,0.249990,0,0);}
.m93_c00481{transform:matrix(0.255490,0.002299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255490,0.002299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255490,0.002299,-0.002250,0.249990,0,0);}
.m59_c00481{transform:matrix(0.256622,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256622,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256622,0.002566,-0.002500,0.249988,0,0);}
.m7e_c00481{transform:matrix(0.257135,0.002314,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257135,0.002314,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257135,0.002314,-0.002250,0.249990,0,0);}
.m89_c00481{transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257705,0.002319,-0.002250,0.249990,0,0);}
.m9d_c00481{transform:matrix(0.258455,0.002326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258455,0.002326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258455,0.002326,-0.002250,0.249990,0,0);}
.m7d_c00481{transform:matrix(0.263059,0.002368,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263059,0.002368,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263059,0.002368,-0.002250,0.249990,0,0);}
.m5f_c00481{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);}
.m85_c00481{transform:matrix(0.298148,0.002683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298148,0.002683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298148,0.002683,-0.002250,0.249990,0,0);}
.mb5_c00481{transform:matrix(0.300124,0.006303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300124,0.006303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300124,0.006303,-0.005249,0.249945,0,0);}
.mb9_c00481{transform:matrix(0.304208,0.006388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.304208,0.006388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.304208,0.006388,-0.005249,0.249945,0,0);}
.m0_c00481{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m92_c00481{transform:matrix(0.335421,0.003019,-0.002250,0.249990,0,0);-ms-transform:matrix(0.335421,0.003019,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.335421,0.003019,-0.002250,0.249990,0,0);}
.m2a_c00481{transform:matrix(0.343200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343200,0.000000,0.000000,0.250000,0,0);}
.m83_c00481{transform:matrix(0.351566,0.003164,-0.002250,0.249990,0,0);-ms-transform:matrix(0.351566,0.003164,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.351566,0.003164,-0.002250,0.249990,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;}
.fsf_c00481{font-size:48.310649px;}
.fse_c00481{font-size:50.411112px;}
.fs4_c00481{font-size:67.200000px;}
.fsb_c00481{font-size:67.202722px;}
.fs6_c00481{font-size:68.250000px;}
.fs1_c00481{font-size:69.300000px;}
.fsc_c00481{font-size:69.302807px;}
.fs7_c00481{font-size:70.353517px;}
.fs2_c00481{font-size:71.400000px;}
.fsa_c00481{font-size:71.402892px;}
.fs9_c00481{font-size:72.452934px;}
.fs3_c00481{font-size:73.500000px;}
.fs8_c00481{font-size:73.502977px;}
.fs5_c00481{font-size:76.650000px;}
.fsd_c00481{font-size:79.803232px;}
.fs0_c00481{font-size:92.400000px;}
.y0_c00481{bottom:0.000000px;}
.y70_c00481{bottom:155.892209px;}
.y6f_c00481{bottom:157.908411px;}
.y6e_c00481{bottom:158.301066px;}
.y6d_c00481{bottom:158.574609px;}
.y6c_c00481{bottom:159.300684px;}
.y6b_c00481{bottom:173.236955px;}
.y6a_c00481{bottom:173.541875px;}
.y69_c00481{bottom:174.386043px;}
.y68_c00481{bottom:174.914078px;}
.y67_c00481{bottom:175.867740px;}
.y66_c00481{bottom:176.201609px;}
.y65_c00481{bottom:177.045777px;}
.y64_c00481{bottom:177.664500px;}
.y63_c00481{bottom:356.859156px;}
.y62_c00481{bottom:357.150810px;}
.y61_c00481{bottom:357.668319px;}
.y60_c00481{bottom:358.054351px;}
.y5f_c00481{bottom:358.409550px;}
.y5e_c00481{bottom:358.827564px;}
.y5d_c00481{bottom:359.318343px;}
.y5c_c00481{bottom:359.578502px;}
.y5b_c00481{bottom:359.918661px;}
.y5a_c00481{bottom:360.171570px;}
.y58_c00481{bottom:382.911465px;}
.y57_c00481{bottom:382.911468px;}
.y59_c00481{bottom:382.911552px;}
.y56_c00481{bottom:382.911695px;}
.y54_c00481{bottom:382.911878px;}
.y55_c00481{bottom:382.912251px;}
.y53_c00481{bottom:382.912614px;}
.y4d_c00481{bottom:405.427811px;}
.y4a_c00481{bottom:405.428203px;}
.y49_c00481{bottom:405.428220px;}
.y50_c00481{bottom:405.428318px;}
.y4f_c00481{bottom:405.428468px;}
.y4c_c00481{bottom:405.428471px;}
.y4e_c00481{bottom:405.428514px;}
.y4b_c00481{bottom:405.428517px;}
.y52_c00481{bottom:405.428675px;}
.y51_c00481{bottom:405.428811px;}
.y48_c00481{bottom:426.672687px;}
.y47_c00481{bottom:427.239242px;}
.y46_c00481{bottom:427.907924px;}
.y45_c00481{bottom:428.265295px;}
.y44_c00481{bottom:429.834927px;}
.y43_c00481{bottom:451.250814px;}
.y42_c00481{bottom:451.251207px;}
.y41_c00481{bottom:451.251373px;}
.y3f_c00481{bottom:451.251916px;}
.y40_c00481{bottom:451.252020px;}
.y3c_c00481{bottom:451.252236px;}
.y3e_c00481{bottom:451.252533px;}
.y3d_c00481{bottom:451.252819px;}
.y3b_c00481{bottom:451.252839px;}
.y3a_c00481{bottom:472.483599px;}
.y39_c00481{bottom:472.997034px;}
.y38_c00481{bottom:473.281538px;}
.y37_c00481{bottom:473.545510px;}
.y36_c00481{bottom:473.937987px;}
.y35_c00481{bottom:474.208575px;}
.y34_c00481{bottom:474.815162px;}
.y33_c00481{bottom:474.891481px;}
.y32_c00481{bottom:475.301939px;}
.y31_c00481{bottom:475.468197px;}
.y30_c00481{bottom:497.304420px;}
.y2c_c00481{bottom:497.304652px;}
.y2e_c00481{bottom:497.304739px;}
.y2f_c00481{bottom:497.305053px;}
.y29_c00481{bottom:497.305079px;}
.y2a_c00481{bottom:497.305242px;}
.y2d_c00481{bottom:497.305296px;}
.y2b_c00481{bottom:497.305346px;}
.y28_c00481{bottom:519.415965px;}
.y27_c00481{bottom:519.763070px;}
.y26_c00481{bottom:520.316573px;}
.y25_c00481{bottom:520.666053px;}
.y24_c00481{bottom:521.223067px;}
.y23_c00481{bottom:521.761529px;}
.y22_c00481{bottom:522.452010px;}
.y21_c00481{bottom:542.413045px;}
.y20_c00481{bottom:542.645880px;}
.y1f_c00481{bottom:542.915664px;}
.y1e_c00481{bottom:543.226339px;}
.y1d_c00481{bottom:543.452370px;}
.y1c_c00481{bottom:543.807272px;}
.y1b_c00481{bottom:544.150239px;}
.y1a_c00481{bottom:544.504587px;}
.y19_c00481{bottom:545.008096px;}
.y18_c00481{bottom:545.289950px;}
.y17_c00481{bottom:545.401500px;}
.y16_c00481{bottom:566.616000px;}
.y15_c00481{bottom:588.168975px;}
.y14_c00481{bottom:588.476685px;}
.y13_c00481{bottom:588.892485px;}
.y12_c00481{bottom:589.149480px;}
.y11_c00481{bottom:589.676010px;}
.y10_c00481{bottom:590.215905px;}
.yf_c00481{bottom:590.377980px;}
.ye_c00481{bottom:590.799240px;}
.yd_c00481{bottom:591.055725px;}
.yc_c00481{bottom:591.301500px;}
.yb_c00481{bottom:612.109500px;}
.ya_c00481{bottom:634.888500px;}
.y9_c00481{bottom:657.885000px;}
.y8_c00481{bottom:680.700000px;}
.y7_c00481{bottom:703.557000px;}
.y6_c00481{bottom:726.256500px;}
.y5_c00481{bottom:749.337000px;}
.y4_c00481{bottom:771.598500px;}
.y3_c00481{bottom:794.721000px;}
.y2_c00481{bottom:817.807500px;}
.y1_c00481{bottom:867.927000px;}
.h11_c00481{height:48.310649px;}
.h10_c00481{height:50.411112px;}
.h6_c00481{height:67.200000px;}
.hd_c00481{height:67.202722px;}
.h8_c00481{height:68.250000px;}
.h3_c00481{height:69.300000px;}
.he_c00481{height:69.302807px;}
.h9_c00481{height:70.353517px;}
.h4_c00481{height:71.400000px;}
.hc_c00481{height:71.402892px;}
.hb_c00481{height:72.452934px;}
.h5_c00481{height:73.500000px;}
.ha_c00481{height:73.502977px;}
.h7_c00481{height:76.650000px;}
.hf_c00481{height:79.803232px;}
.h2_c00481{height:92.400000px;}
.h0_c00481{height:1008.450000px;}
.h1_c00481{height:1008.750000px;}
.w1_c00481{width:700.500000px;}
.w0_c00481{width:700.650000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:106.380000px;}
.x2_c00481{left:145.530000px;}
.x50_c00481{left:165.687000px;}
.x3a_c00481{left:171.180000px;}
.x73_c00481{left:173.879382px;}
.x31_c00481{left:176.310000px;}
.x6b_c00481{left:177.544946px;}
.x42_c00481{left:179.010000px;}
.x3_c00481{left:180.900000px;}
.x3b_c00481{left:182.790000px;}
.x4a_c00481{left:197.100000px;}
.x17_c00481{left:199.260000px;}
.x47_c00481{left:204.268500px;}
.x20_c00481{left:205.470000px;}
.x27_c00481{left:207.090000px;}
.x10_c00481{left:208.710000px;}
.x4_c00481{left:212.760000px;}
.x3c_c00481{left:216.000000px;}
.x4b_c00481{left:217.080000px;}
.xb_c00481{left:219.780000px;}
.x18_c00481{left:220.860000px;}
.x32_c00481{left:224.100000px;}
.x43_c00481{left:228.690000px;}
.x11_c00481{left:230.310000px;}
.x6e_c00481{left:233.819863px;}
.x56_c00481{left:236.143464px;}
.x5a_c00481{left:241.110779px;}
.x64_c00481{left:243.542031px;}
.x3d_c00481{left:249.750000px;}
.x5e_c00481{left:251.505912px;}
.x19_c00481{left:257.850000px;}
.x5f_c00481{left:260.985993px;}
.x12_c00481{left:263.250000px;}
.xc_c00481{left:264.600000px;}
.x44_c00481{left:270.270000px;}
.x2c_c00481{left:271.620000px;}
.x21_c00481{left:274.590000px;}
.x3e_c00481{left:280.800000px;}
.x6f_c00481{left:285.662562px;}
.x5_c00481{left:287.820000px;}
.x4c_c00481{left:291.870000px;}
.x2d_c00481{left:298.890000px;}
.x74_c00481{left:301.325196px;}
.x70_c00481{left:302.403912px;}
.x51_c00481{left:304.716000px;}
.x1a_c00481{left:306.990000px;}
.x33_c00481{left:309.150000px;}
.x65_c00481{left:314.014742px;}
.x1b_c00481{left:320.760000px;}
.xd_c00481{left:322.650000px;}
.x57_c00481{left:327.360493px;}
.x75_c00481{left:333.186275px;}
.x34_c00481{left:335.070000px;}
.x60_c00481{left:336.885182px;}
.x13_c00481{left:338.040000px;}
.x28_c00481{left:340.740000px;}
.x48_c00481{left:342.240000px;}
.x2e_c00481{left:344.250000px;}
.x4d_c00481{left:348.030000px;}
.x22_c00481{left:350.460000px;}
.x45_c00481{left:351.540000px;}
.x5b_c00481{left:352.625310px;}
.x6_c00481{left:356.940000px;}
.x66_c00481{left:365.587413px;}
.x4e_c00481{left:371.250000px;}
.x71_c00481{left:372.336582px;}
.x7_c00481{left:374.220000px;}
.x3f_c00481{left:378.540000px;}
.x14_c00481{left:380.700000px;}
.x52_c00481{left:382.257000px;}
.x23_c00481{left:385.290000px;}
.x35_c00481{left:387.990000px;}
.x67_c00481{left:389.077817px;}
.x6c_c00481{left:391.656446px;}
.x5c_c00481{left:392.857064px;}
.x29_c00481{left:394.740000px;}
.x2f_c00481{left:395.820000px;}
.x58_c00481{left:402.689968px;}
.x24_c00481{left:406.350000px;}
.x40_c00481{left:407.430000px;}
.xe_c00481{left:409.320000px;}
.x76_c00481{left:413.037546px;}
.x8_c00481{left:414.180000px;}
.x30_c00481{left:417.960000px;}
.x61_c00481{left:419.726424px;}
.x15_c00481{left:421.200000px;}
.x7a_c00481{left:422.632500px;}
.x7f_c00481{left:424.753712px;}
.x41_c00481{left:427.950000px;}
.x36_c00481{left:429.030000px;}
.x1c_c00481{left:430.110000px;}
.x59_c00481{left:431.589685px;}
.x68_c00481{left:432.819853px;}
.x25_c00481{left:436.860000px;}
.xf_c00481{left:437.940000px;}
.x53_c00481{left:441.891000px;}
.x4f_c00481{left:446.310000px;}
.x46_c00481{left:449.550000px;}
.x37_c00481{left:451.980000px;}
.x9_c00481{left:453.600000px;}
.x77_c00481{left:455.930046px;}
.x16_c00481{left:457.110000px;}
.x72_c00481{left:459.820669px;}
.x1d_c00481{left:462.780000px;}
.x69_c00481{left:466.841107px;}
.x54_c00481{left:471.867000px;}
.x5d_c00481{left:474.399165px;}
.x7b_c00481{left:478.729500px;}
.x2a_c00481{left:484.920000px;}
.x62_c00481{left:488.335545px;}
.xa_c00481{left:491.670000px;}
.x49_c00481{left:492.943500px;}
.x55_c00481{left:497.737500px;}
.x38_c00481{left:500.310000px;}
.x26_c00481{left:508.950000px;}
.x2b_c00481{left:510.300000px;}
.x78_c00481{left:513.431046px;}
.x1e_c00481{left:516.240000px;}
.x7c_c00481{left:524.142000px;}
.x6d_c00481{left:528.904945px;}
.x6a_c00481{left:532.723440px;}
.x80_c00481{left:541.339298px;}
.x79_c00481{left:545.837046px;}
.x1f_c00481{left:550.260000px;}
.x63_c00481{left:552.551126px;}
.x39_c00481{left:569.430000px;}
.x7d_c00481{left:589.485000px;}
.x7e_c00481{left:604.005000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fsf_c00481{font-size:42.942799pt;}
.fse_c00481{font-size:44.809877pt;}
.fs4_c00481{font-size:59.733333pt;}
.fsb_c00481{font-size:59.735752pt;}
.fs6_c00481{font-size:60.666667pt;}
.fs1_c00481{font-size:61.600000pt;}
.fsc_c00481{font-size:61.602495pt;}
.fs7_c00481{font-size:62.536460pt;}
.fs2_c00481{font-size:63.466667pt;}
.fsa_c00481{font-size:63.469237pt;}
.fs9_c00481{font-size:64.402608pt;}
.fs3_c00481{font-size:65.333333pt;}
.fs8_c00481{font-size:65.335979pt;}
.fs5_c00481{font-size:68.133333pt;}
.fsd_c00481{font-size:70.936206pt;}
.fs0_c00481{font-size:82.133333pt;}
.y0_c00481{bottom:0.000000pt;}
.y70_c00481{bottom:138.570852pt;}
.y6f_c00481{bottom:140.363032pt;}
.y6e_c00481{bottom:140.712059pt;}
.y6d_c00481{bottom:140.955208pt;}
.y6c_c00481{bottom:141.600608pt;}
.y6b_c00481{bottom:153.988404pt;}
.y6a_c00481{bottom:154.259444pt;}
.y69_c00481{bottom:155.009816pt;}
.y68_c00481{bottom:155.479180pt;}
.y67_c00481{bottom:156.326880pt;}
.y66_c00481{bottom:156.623652pt;}
.y65_c00481{bottom:157.374024pt;}
.y64_c00481{bottom:157.924000pt;}
.y63_c00481{bottom:317.208139pt;}
.y62_c00481{bottom:317.467387pt;}
.y61_c00481{bottom:317.927395pt;}
.y60_c00481{bottom:318.270535pt;}
.y5f_c00481{bottom:318.586267pt;}
.y5e_c00481{bottom:318.957835pt;}
.y5d_c00481{bottom:319.394083pt;}
.y5c_c00481{bottom:319.625335pt;}
.y5b_c00481{bottom:319.927699pt;}
.y5a_c00481{bottom:320.152507pt;}
.y58_c00481{bottom:340.365747pt;}
.y57_c00481{bottom:340.365749pt;}
.y59_c00481{bottom:340.365824pt;}
.y56_c00481{bottom:340.365951pt;}
.y54_c00481{bottom:340.366113pt;}
.y55_c00481{bottom:340.366445pt;}
.y53_c00481{bottom:340.366768pt;}
.y4d_c00481{bottom:360.380276pt;}
.y4a_c00481{bottom:360.380625pt;}
.y49_c00481{bottom:360.380640pt;}
.y50_c00481{bottom:360.380727pt;}
.y4f_c00481{bottom:360.380860pt;}
.y4c_c00481{bottom:360.380863pt;}
.y4e_c00481{bottom:360.380901pt;}
.y4b_c00481{bottom:360.380904pt;}
.y52_c00481{bottom:360.381044pt;}
.y51_c00481{bottom:360.381165pt;}
.y48_c00481{bottom:379.264611pt;}
.y47_c00481{bottom:379.768215pt;}
.y46_c00481{bottom:380.362599pt;}
.y45_c00481{bottom:380.680263pt;}
.y44_c00481{bottom:382.075491pt;}
.y43_c00481{bottom:401.111835pt;}
.y42_c00481{bottom:401.112184pt;}
.y41_c00481{bottom:401.112332pt;}
.y3f_c00481{bottom:401.112815pt;}
.y40_c00481{bottom:401.112907pt;}
.y3c_c00481{bottom:401.113099pt;}
.y3e_c00481{bottom:401.113363pt;}
.y3d_c00481{bottom:401.113617pt;}
.y3b_c00481{bottom:401.113635pt;}
.y3a_c00481{bottom:419.985421pt;}
.y39_c00481{bottom:420.441808pt;}
.y38_c00481{bottom:420.694700pt;}
.y37_c00481{bottom:420.929343pt;}
.y36_c00481{bottom:421.278211pt;}
.y35_c00481{bottom:421.518733pt;}
.y34_c00481{bottom:422.057921pt;}
.y33_c00481{bottom:422.125761pt;}
.y32_c00481{bottom:422.490612pt;}
.y31_c00481{bottom:422.638397pt;}
.y30_c00481{bottom:442.048373pt;}
.y2c_c00481{bottom:442.048580pt;}
.y2e_c00481{bottom:442.048657pt;}
.y2f_c00481{bottom:442.048936pt;}
.y29_c00481{bottom:442.048959pt;}
.y2a_c00481{bottom:442.049104pt;}
.y2d_c00481{bottom:442.049152pt;}
.y2b_c00481{bottom:442.049196pt;}
.y28_c00481{bottom:461.703080pt;}
.y27_c00481{bottom:462.011617pt;}
.y26_c00481{bottom:462.503620pt;}
.y25_c00481{bottom:462.814269pt;}
.y24_c00481{bottom:463.309393pt;}
.y23_c00481{bottom:463.788025pt;}
.y22_c00481{bottom:464.401787pt;}
.y21_c00481{bottom:482.144929pt;}
.y20_c00481{bottom:482.351893pt;}
.y1f_c00481{bottom:482.591701pt;}
.y1e_c00481{bottom:482.867857pt;}
.y1d_c00481{bottom:483.068773pt;}
.y1c_c00481{bottom:483.384241pt;}
.y1b_c00481{bottom:483.689101pt;}
.y1a_c00481{bottom:484.004077pt;}
.y19_c00481{bottom:484.451641pt;}
.y18_c00481{bottom:484.702177pt;}
.y17_c00481{bottom:484.801333pt;}
.y16_c00481{bottom:503.658667pt;}
.y15_c00481{bottom:522.816867pt;}
.y14_c00481{bottom:523.090387pt;}
.y13_c00481{bottom:523.459987pt;}
.y12_c00481{bottom:523.688427pt;}
.y11_c00481{bottom:524.156453pt;}
.y10_c00481{bottom:524.636360pt;}
.yf_c00481{bottom:524.780427pt;}
.ye_c00481{bottom:525.154880pt;}
.yd_c00481{bottom:525.382867pt;}
.yc_c00481{bottom:525.601333pt;}
.yb_c00481{bottom:544.097333pt;}
.ya_c00481{bottom:564.345333pt;}
.y9_c00481{bottom:584.786667pt;}
.y8_c00481{bottom:605.066667pt;}
.y7_c00481{bottom:625.384000pt;}
.y6_c00481{bottom:645.561333pt;}
.y5_c00481{bottom:666.077333pt;}
.y4_c00481{bottom:685.865333pt;}
.y3_c00481{bottom:706.418667pt;}
.y2_c00481{bottom:726.940000pt;}
.y1_c00481{bottom:771.490667pt;}
.h11_c00481{height:42.942799pt;}
.h10_c00481{height:44.809877pt;}
.h6_c00481{height:59.733333pt;}
.hd_c00481{height:59.735752pt;}
.h8_c00481{height:60.666667pt;}
.h3_c00481{height:61.600000pt;}
.he_c00481{height:61.602495pt;}
.h9_c00481{height:62.536460pt;}
.h4_c00481{height:63.466667pt;}
.hc_c00481{height:63.469237pt;}
.hb_c00481{height:64.402608pt;}
.h5_c00481{height:65.333333pt;}
.ha_c00481{height:65.335979pt;}
.h7_c00481{height:68.133333pt;}
.hf_c00481{height:70.936206pt;}
.h2_c00481{height:82.133333pt;}
.h0_c00481{height:896.400000pt;}
.h1_c00481{height:896.666667pt;}
.w1_c00481{width:622.666667pt;}
.w0_c00481{width:622.800000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:94.560000pt;}
.x2_c00481{left:129.360000pt;}
.x50_c00481{left:147.277333pt;}
.x3a_c00481{left:152.160000pt;}
.x73_c00481{left:154.559451pt;}
.x31_c00481{left:156.720000pt;}
.x6b_c00481{left:157.817729pt;}
.x42_c00481{left:159.120000pt;}
.x3_c00481{left:160.800000pt;}
.x3b_c00481{left:162.480000pt;}
.x4a_c00481{left:175.200000pt;}
.x17_c00481{left:177.120000pt;}
.x47_c00481{left:181.572000pt;}
.x20_c00481{left:182.640000pt;}
.x27_c00481{left:184.080000pt;}
.x10_c00481{left:185.520000pt;}
.x4_c00481{left:189.120000pt;}
.x3c_c00481{left:192.000000pt;}
.x4b_c00481{left:192.960000pt;}
.xb_c00481{left:195.360000pt;}
.x18_c00481{left:196.320000pt;}
.x32_c00481{left:199.200000pt;}
.x43_c00481{left:203.280000pt;}
.x11_c00481{left:204.720000pt;}
.x6e_c00481{left:207.839879pt;}
.x56_c00481{left:209.905301pt;}
.x5a_c00481{left:214.320692pt;}
.x64_c00481{left:216.481805pt;}
.x3d_c00481{left:222.000000pt;}
.x5e_c00481{left:223.560811pt;}
.x19_c00481{left:229.200000pt;}
.x5f_c00481{left:231.987549pt;}
.x12_c00481{left:234.000000pt;}
.xc_c00481{left:235.200000pt;}
.x44_c00481{left:240.240000pt;}
.x2c_c00481{left:241.440000pt;}
.x21_c00481{left:244.080000pt;}
.x3e_c00481{left:249.600000pt;}
.x6f_c00481{left:253.922277pt;}
.x5_c00481{left:255.840000pt;}
.x4c_c00481{left:259.440000pt;}
.x2d_c00481{left:265.680000pt;}
.x74_c00481{left:267.844619pt;}
.x70_c00481{left:268.803477pt;}
.x51_c00481{left:270.858667pt;}
.x1a_c00481{left:272.880000pt;}
.x33_c00481{left:274.800000pt;}
.x65_c00481{left:279.124215pt;}
.x1b_c00481{left:285.120000pt;}
.xd_c00481{left:286.800000pt;}
.x57_c00481{left:290.987105pt;}
.x75_c00481{left:296.165577pt;}
.x34_c00481{left:297.840000pt;}
.x60_c00481{left:299.453495pt;}
.x13_c00481{left:300.480000pt;}
.x28_c00481{left:302.880000pt;}
.x48_c00481{left:304.213333pt;}
.x2e_c00481{left:306.000000pt;}
.x4d_c00481{left:309.360000pt;}
.x22_c00481{left:311.520000pt;}
.x45_c00481{left:312.480000pt;}
.x5b_c00481{left:313.444720pt;}
.x6_c00481{left:317.280000pt;}
.x66_c00481{left:324.966589pt;}
.x4e_c00481{left:330.000000pt;}
.x71_c00481{left:330.965851pt;}
.x7_c00481{left:332.640000pt;}
.x3f_c00481{left:336.480000pt;}
.x14_c00481{left:338.400000pt;}
.x52_c00481{left:339.784000pt;}
.x23_c00481{left:342.480000pt;}
.x35_c00481{left:344.880000pt;}
.x67_c00481{left:345.846948pt;}
.x6c_c00481{left:348.139063pt;}
.x5c_c00481{left:349.206279pt;}
.x29_c00481{left:350.880000pt;}
.x2f_c00481{left:351.840000pt;}
.x58_c00481{left:357.946639pt;}
.x24_c00481{left:361.200000pt;}
.x40_c00481{left:362.160000pt;}
.xe_c00481{left:363.840000pt;}
.x76_c00481{left:367.144485pt;}
.x8_c00481{left:368.160000pt;}
.x30_c00481{left:371.520000pt;}
.x61_c00481{left:373.090155pt;}
.x15_c00481{left:374.400000pt;}
.x7a_c00481{left:375.673333pt;}
.x7f_c00481{left:377.558855pt;}
.x41_c00481{left:380.400000pt;}
.x36_c00481{left:381.360000pt;}
.x1c_c00481{left:382.320000pt;}
.x59_c00481{left:383.635276pt;}
.x68_c00481{left:384.728759pt;}
.x25_c00481{left:388.320000pt;}
.xf_c00481{left:389.280000pt;}
.x53_c00481{left:392.792000pt;}
.x4f_c00481{left:396.720000pt;}
.x46_c00481{left:399.600000pt;}
.x37_c00481{left:401.760000pt;}
.x9_c00481{left:403.200000pt;}
.x77_c00481{left:405.271152pt;}
.x16_c00481{left:406.320000pt;}
.x72_c00481{left:408.729484pt;}
.x1d_c00481{left:411.360000pt;}
.x69_c00481{left:414.969873pt;}
.x54_c00481{left:419.437333pt;}
.x5d_c00481{left:421.688147pt;}
.x7b_c00481{left:425.537333pt;}
.x2a_c00481{left:431.040000pt;}
.x62_c00481{left:434.076040pt;}
.xa_c00481{left:437.040000pt;}
.x49_c00481{left:438.172000pt;}
.x55_c00481{left:442.433333pt;}
.x38_c00481{left:444.720000pt;}
.x26_c00481{left:452.400000pt;}
.x2b_c00481{left:453.600000pt;}
.x78_c00481{left:456.383152pt;}
.x1e_c00481{left:458.880000pt;}
.x7c_c00481{left:465.904000pt;}
.x6d_c00481{left:470.137729pt;}
.x6a_c00481{left:473.531947pt;}
.x80_c00481{left:481.190487pt;}
.x79_c00481{left:485.188485pt;}
.x1f_c00481{left:489.120000pt;}
.x63_c00481{left:491.156556pt;}
.x39_c00481{left:506.160000pt;}
.x7d_c00481{left:523.986667pt;}
.x7e_c00481{left:536.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_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_ef4e99a7aa2876b3106553d3.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;}
.m1f_c00482{transform:matrix(0.006815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006815,0.000000,0.000000,0.250000,0,0);}
.m1e_c00482{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m3c_c00482{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);}
.mad_c00482{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.ma4_c00482{transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025210,0.000000,0.000000,0.250000,0,0);}
.m80_c00482{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m37_c00482{transform:matrix(0.073510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073510,0.000000,0.000000,0.250000,0,0);}
.md2_c00482{transform:matrix(0.077105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077105,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);}
.m4d_c00482{transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);}
.me3_c00482{transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115570,0.000000,0.000000,0.250000,0,0);}
.m5c_c00482{transform:matrix(0.118645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118645,0.000000,0.000000,0.250000,0,0);}
.md8_c00482{transform:matrix(0.128595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128595,0.000000,0.000000,0.250000,0,0);}
.m28_c00482{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);}
.m12_c00482{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);}
.m2c_c00482{transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149840,0.000000,0.000000,0.250000,0,0);}
.mbe_c00482{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);}
.m2a_c00482{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.me1_c00482{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);}
.m20_c00482{transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157445,0.000000,0.000000,0.250000,0,0);}
.m54_c00482{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);}
.m45_c00482{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);}
.m29_c00482{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);}
.md6_c00482{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);}
.mbf_c00482{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);}
.m64_c00482{transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);}
.m4a_c00482{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);}
.m2e_c00482{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);}
.m81_c00482{transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164855,0.000000,0.000000,0.250000,0,0);}
.me_c00482{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);}
.m2b_c00482{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);}
.m95_c00482{transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167290,0.000000,0.000000,0.250000,0,0);}
.m5f_c00482{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);}
.m15_c00482{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);}
.m11_c00482{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);}
.m84_c00482{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);}
.mb8_c00482{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);}
.m4c_c00482{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);}
.m47_c00482{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);}
.m46_c00482{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);}
.m61_c00482{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);}
.m5e_c00482{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);}
.ma3_c00482{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);}
.m48_c00482{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);}
.me7_c00482{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);}
.m74_c00482{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);}
.mba_c00482{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);}
.m78_c00482{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);}
.m4b_c00482{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);}
.mcb_c00482{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);}
.m62_c00482{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);}
.md9_c00482{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);}
.m55_c00482{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);}
.m9b_c00482{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);}
.m9a_c00482{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);}
.m36_c00482{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);}
.m8a_c00482{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);}
.m38_c00482{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);}
.me4_c00482{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);}
.m10_c00482{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);}
.m93_c00482{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);}
.mb5_c00482{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);}
.m6a_c00482{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);}
.m51_c00482{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);}
.me8_c00482{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);}
.m86_c00482{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);}
.m91_c00482{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);}
.m9c_c00482{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);}
.mb7_c00482{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);}
.md5_c00482{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);}
.m92_c00482{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);}
.m4f_c00482{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);}
.mcc_c00482{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_c00482{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);}
.m57_c00482{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);}
.ma1_c00482{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);}
.mde_c00482{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);}
.md1_c00482{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);}
.md_c00482{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);}
.mb0_c00482{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);}
.m50_c00482{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);}
.mf_c00482{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);}
.m87_c00482{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);}
.m5d_c00482{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);}
.me2_c00482{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);}
.m2f_c00482{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);}
.ma5_c00482{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);}
.m6b_c00482{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);}
.m68_c00482{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);}
.m49_c00482{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);}
.m60_c00482{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);}
.mcd_c00482{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);}
.m73_c00482{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);}
.m32_c00482{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);}
.m4e_c00482{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);}
.ma0_c00482{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);}
.md3_c00482{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);}
.me0_c00482{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);}
.m9d_c00482{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);}
.m99_c00482{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);}
.m83_c00482{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.m63_c00482{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);}
.mcf_c00482{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.m5a_c00482{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);}
.mb9_c00482{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);}
.m22_c00482{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);}
.m31_c00482{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);}
.ma8_c00482{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);}
.ma6_c00482{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);}
.m5b_c00482{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);}
.m23_c00482{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);}
.m1c_c00482{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.m8f_c00482{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);}
.m24_c00482{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);}
.m27_c00482{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);}
.mc7_c00482{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);}
.m67_c00482{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);}
.mae_c00482{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);}
.m8e_c00482{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);}
.m13_c00482{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);}
.m26_c00482{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);}
.m85_c00482{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);}
.mbb_c00482{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);}
.m25_c00482{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);}
.m6f_c00482{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);}
.m9f_c00482{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);}
.m3a_c00482{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);}
.mdd_c00482{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);}
.m19_c00482{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);}
.m53_c00482{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00482{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);}
.mdf_c00482{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);}
.mc_c00482{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);}
.mb4_c00482{transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00482{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);}
.mdc_c00482{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);}
.md0_c00482{transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);}
.md7_c00482{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);}
.m89_c00482{transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231345,0.000000,0.000000,0.250000,0,0);}
.mdb_c00482{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);}
.m82_c00482{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);}
.m34_c00482{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m96_c00482{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);}
.mb1_c00482{transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{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);}
.m8b_c00482{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);}
.m39_c00482{transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237405,0.000000,0.000000,0.250000,0,0);}
.md4_c00482{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);}
.maa_c00482{transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);}
.me5_c00482{transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);}
.m6e_c00482{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.mc9_c00482{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);}
.m58_c00482{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m6c_c00482{transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243095,0.000000,0.000000,0.250000,0,0);}
.mbd_c00482{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);}
.m35_c00482{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);}
.m69_c00482{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);}
.m30_c00482{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.mc4_c00482{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m94_c00482{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m98_c00482{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.mc3_c00482{transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);}
.ma7_c00482{transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);}
.m56_c00482{transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);}
.me6_c00482{transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257470,0.000000,0.000000,0.250000,0,0);}
.m9e_c00482{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);}
.mb_c00482{transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261775,0.000000,0.000000,0.250000,0,0);}
.m79_c00482{transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);}
.mce_c00482{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.mb2_c00482{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);}
.m21_c00482{transform:matrix(0.268635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268635,0.000000,0.000000,0.250000,0,0);}
.m8d_c00482{transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);}
.ma9_c00482{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.mda_c00482{transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269950,0.000000,0.000000,0.250000,0,0);}
.m66_c00482{transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);}
.m40_c00482{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00482{transform:matrix(0.281905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281905,0.000000,0.000000,0.250000,0,0);}
.mc8_c00482{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);}
.maf_c00482{transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288080,0.000000,0.000000,0.250000,0,0);}
.mbc_c00482{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00482{transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);}
.m52_c00482{transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294635,0.000000,0.000000,0.250000,0,0);}
.mc5_c00482{transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);}
.mc6_c00482{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);}
.mc1_c00482{transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302900,0.000000,0.000000,0.250000,0,0);}
.mb3_c00482{transform:matrix(0.306200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306200,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308560,0.000000,0.000000,0.250000,0,0);}
.m3b_c00482{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);}
.m71_c00482{transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);}
.m90_c00482{transform:matrix(0.316020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316020,0.000000,0.000000,0.250000,0,0);}
.mca_c00482{transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323840,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);}
.mc0_c00482{transform:matrix(0.337245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337245,0.000000,0.000000,0.250000,0,0);}
.m17_c00482{transform:matrix(0.339685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339685,0.000000,0.000000,0.250000,0,0);}
.m70_c00482{transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341535,0.000000,0.000000,0.250000,0,0);}
.m8c_c00482{transform:matrix(0.344660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00482{transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349705,0.000000,0.000000,0.250000,0,0);}
.m7a_c00482{transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357790,0.000000,0.000000,0.250000,0,0);}
.m59_c00482{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);}
.m88_c00482{transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365935,0.000000,0.000000,0.250000,0,0);}
.m41_c00482{transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370385,0.000000,0.000000,0.250000,0,0);}
.m97_c00482{transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378425,0.000000,0.000000,0.250000,0,0);}
.mb6_c00482{transform:matrix(0.380570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380570,0.000000,0.000000,0.250000,0,0);}
.mac_c00482{transform:matrix(0.382675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382675,0.000000,0.000000,0.250000,0,0);}
.m6d_c00482{transform:matrix(0.384730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384730,0.000000,0.000000,0.250000,0,0);}
.m33_c00482{transform:matrix(0.385325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385325,0.000000,0.000000,0.250000,0,0);}
.m18_c00482{transform:matrix(0.391255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391255,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.394035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394035,0.000000,0.000000,0.250000,0,0);}
.mab_c00482{transform:matrix(0.394505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394505,0.000000,0.000000,0.250000,0,0);}
.m7e_c00482{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{transform:matrix(0.397175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397175,0.000000,0.000000,0.250000,0,0);}
.me9_c00482{transform:matrix(0.398360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398360,0.000000,0.000000,0.250000,0,0);}
.m77_c00482{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);}
.m65_c00482{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);}
.m76_c00482{transform:matrix(0.417680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417680,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.426135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426135,0.000000,0.000000,0.250000,0,0);}
.m3d_c00482{transform:matrix(0.426555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426555,0.000000,0.000000,0.250000,0,0);}
.m3e_c00482{transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437155,0.000000,0.000000,0.250000,0,0);}
.m72_c00482{transform:matrix(0.447515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447515,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.450930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450930,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.472150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472150,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);}
.m42_c00482{transform:matrix(0.480985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480985,0.000000,0.000000,0.250000,0,0);}
.m75_c00482{transform:matrix(0.488780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488780,0.000000,0.000000,0.250000,0,0);}
.m7d_c00482{transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495500,0.000000,0.000000,0.250000,0,0);}
.mea_c00482{transform:matrix(0.495660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495660,0.000000,0.000000,0.250000,0,0);}
.m7b_c00482{transform:matrix(0.512410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512410,0.000000,0.000000,0.250000,0,0);}
.m2d_c00482{transform:matrix(0.528355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528355,0.000000,0.000000,0.250000,0,0);}
.m43_c00482{transform:matrix(0.539760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539760,0.000000,0.000000,0.250000,0,0);}
.m44_c00482{transform:matrix(0.599755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599755,0.000000,0.000000,0.250000,0,0);}
.m7c_c00482{transform:matrix(0.716830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716830,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.809585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809585,0.000000,0.000000,0.250000,0,0);}
.m1b_c00482{transform:matrix(0.896665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.896665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.896665,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.939745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939745,0.000000,0.000000,0.250000,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;}
.fc0_c00482{color:transparent;}
.fsd_c00482{font-size:21.000000px;}
.fs0_c00482{font-size:22.050000px;}
.fsc_c00482{font-size:26.250000px;}
.fs12_c00482{font-size:47.250000px;}
.fsf_c00482{font-size:51.450000px;}
.fs11_c00482{font-size:52.500000px;}
.fs10_c00482{font-size:53.550000px;}
.fse_c00482{font-size:54.600000px;}
.fs14_c00482{font-size:57.750000px;}
.fs13_c00482{font-size:61.950000px;}
.fs7_c00482{font-size:63.000000px;}
.fs1_c00482{font-size:66.150000px;}
.fsa_c00482{font-size:67.200000px;}
.fs6_c00482{font-size:69.300000px;}
.fs5_c00482{font-size:71.400000px;}
.fs8_c00482{font-size:72.450000px;}
.fsb_c00482{font-size:73.500000px;}
.fs9_c00482{font-size:75.600000px;}
.fs4_c00482{font-size:80.850000px;}
.fs2_c00482{font-size:87.150000px;}
.fs3_c00482{font-size:106.050000px;}
.y0_c00482{bottom:0.000000px;}
.y26_c00482{bottom:149.766000px;}
.y25_c00482{bottom:168.037500px;}
.y23_c00482{bottom:184.705500px;}
.y24_c00482{bottom:185.436000px;}
.y22_c00482{bottom:203.443500px;}
.y21_c00482{bottom:219.756000px;}
.y20_c00482{bottom:238.951500px;}
.y1f_c00482{bottom:256.284000px;}
.y1e_c00482{bottom:274.354500px;}
.y1d_c00482{bottom:292.678500px;}
.y1c_c00482{bottom:296.460000px;}
.y1b_c00482{bottom:303.076500px;}
.y1a_c00482{bottom:320.490000px;}
.y19_c00482{bottom:333.577500px;}
.y18_c00482{bottom:356.278500px;}
.y17_c00482{bottom:379.518000px;}
.y16_c00482{bottom:401.679000px;}
.y15_c00482{bottom:424.357500px;}
.y14_c00482{bottom:447.453000px;}
.y13_c00482{bottom:469.063500px;}
.y12_c00482{bottom:490.686000px;}
.y11_c00482{bottom:491.451000px;}
.y10_c00482{bottom:492.079500px;}
.yf_c00482{bottom:492.454500px;}
.ye_c00482{bottom:493.039500px;}
.yd_c00482{bottom:515.599500px;}
.yc_c00482{bottom:537.465000px;}
.yb_c00482{bottom:561.181500px;}
.ya_c00482{bottom:582.997500px;}
.y9_c00482{bottom:606.145500px;}
.y8_c00482{bottom:629.364000px;}
.y7_c00482{bottom:651.154500px;}
.y6_c00482{bottom:678.370500px;}
.y5_c00482{bottom:700.977000px;}
.y4_c00482{bottom:738.879000px;}
.y3_c00482{bottom:788.145000px;}
.y2_c00482{bottom:817.290000px;}
.y1_c00482{bottom:822.420000px;}
.hf_c00482{height:21.000000px;}
.h2_c00482{height:22.050000px;}
.he_c00482{height:26.250000px;}
.h14_c00482{height:47.250000px;}
.h11_c00482{height:51.450000px;}
.h13_c00482{height:52.500000px;}
.h12_c00482{height:53.550000px;}
.h10_c00482{height:54.600000px;}
.h16_c00482{height:57.750000px;}
.h15_c00482{height:61.950000px;}
.h9_c00482{height:63.000000px;}
.h3_c00482{height:66.150000px;}
.hc_c00482{height:67.200000px;}
.h8_c00482{height:69.300000px;}
.h7_c00482{height:71.400000px;}
.ha_c00482{height:72.450000px;}
.hd_c00482{height:73.500000px;}
.hb_c00482{height:75.600000px;}
.h6_c00482{height:80.850000px;}
.h4_c00482{height:87.150000px;}
.h5_c00482{height:106.050000px;}
.h1_c00482{height:1005.000000px;}
.h0_c00482{height:1005.150000px;}
.w0_c00482{width:715.200000px;}
.w1_c00482{width:715.500000px;}
.x0_c00482{left:0.000000px;}
.x7a_c00482{left:95.310000px;}
.x94_c00482{left:96.660000px;}
.x68_c00482{left:104.760000px;}
.x8_c00482{left:115.830000px;}
.x5e_c00482{left:117.990000px;}
.x4e_c00482{left:123.390000px;}
.x1e_c00482{left:130.410000px;}
.x71_c00482{left:132.570000px;}
.x8d_c00482{left:136.080000px;}
.x69_c00482{left:138.240000px;}
.x19_c00482{left:139.320000px;}
.x1f_c00482{left:141.210000px;}
.x83_c00482{left:145.800000px;}
.x8e_c00482{left:154.710000px;}
.x91_c00482{left:159.300000px;}
.x25_c00482{left:160.380000px;}
.x20_c00482{left:162.000000px;}
.x7b_c00482{left:164.430000px;}
.x3f_c00482{left:165.780000px;}
.x47_c00482{left:168.480000px;}
.x95_c00482{left:170.370000px;}
.x5f_c00482{left:174.150000px;}
.x26_c00482{left:177.390000px;}
.x2e_c00482{left:180.090000px;}
.x3a_c00482{left:182.520000px;}
.x4a_c00482{left:186.570000px;}
.x7c_c00482{left:188.190000px;}
.x96_c00482{left:189.810000px;}
.xc_c00482{left:195.210000px;}
.x4f_c00482{left:197.100000px;}
.x8f_c00482{left:198.450000px;}
.x48_c00482{left:199.530000px;}
.x2f_c00482{left:202.770000px;}
.x41_c00482{left:205.740000px;}
.x3b_c00482{left:207.900000px;}
.x60_c00482{left:210.870000px;}
.x30_c00482{left:212.490000px;}
.x1a_c00482{left:214.380000px;}
.x15_c00482{left:216.000000px;}
.x4b_c00482{left:217.080000px;}
.x27_c00482{left:218.700000px;}
.x21_c00482{left:221.670000px;}
.x58_c00482{left:223.290000px;}
.xd_c00482{left:227.070000px;}
.x6a_c00482{left:228.960000px;}
.x61_c00482{left:233.550000px;}
.x4c_c00482{left:239.760000px;}
.x28_c00482{left:242.730000px;}
.xe_c00482{left:244.350000px;}
.x50_c00482{left:245.970000px;}
.x7d_c00482{left:249.210000px;}
.x4_c00482{left:254.070000px;}
.x51_c00482{left:257.040000px;}
.x42_c00482{left:258.660000px;}
.x92_c00482{left:261.630000px;}
.x16_c00482{left:267.030000px;}
.x31_c00482{left:268.380000px;}
.x7e_c00482{left:273.240000px;}
.xb_c00482{left:276.750000px;}
.x6b_c00482{left:279.990000px;}
.x9_c00482{left:281.340000px;}
.x5_c00482{left:282.690000px;}
.x52_c00482{left:284.580000px;}
.x97_c00482{left:288.630000px;}
.x84_c00482{left:290.250000px;}
.x29_c00482{left:293.220000px;}
.x90_c00482{left:297.540000px;}
.x17_c00482{left:301.050000px;}
.x72_c00482{left:302.940000px;}
.x22_c00482{left:305.100000px;}
.x93_c00482{left:308.340000px;}
.x43_c00482{left:309.690000px;}
.x6c_c00482{left:313.740000px;}
.x7f_c00482{left:316.440000px;}
.xf_c00482{left:325.080000px;}
.x4d_c00482{left:326.430000px;}
.x2d_c00482{left:328.320000px;}
.x2a_c00482{left:329.400000px;}
.x3c_c00482{left:331.020000px;}
.x49_c00482{left:334.530000px;}
.x6_c00482{left:336.690000px;}
.x1b_c00482{left:339.120000px;}
.x53_c00482{left:340.200000px;}
.x88_c00482{left:341.550000px;}
.x73_c00482{left:346.140000px;}
.x40_c00482{left:348.030000px;}
.x32_c00482{left:349.110000px;}
.x23_c00482{left:350.730000px;}
.x89_c00482{left:353.970000px;}
.x1c_c00482{left:356.940000px;}
.x35_c00482{left:359.691000px;}
.x3d_c00482{left:360.990000px;}
.x33_c00482{left:364.230000px;}
.x54_c00482{left:366.390000px;}
.x7_c00482{left:369.090000px;}
.x74_c00482{left:378.540000px;}
.x18_c00482{left:385.560000px;}
.x34_c00482{left:386.640000px;}
.x3_c00482{left:387.720000px;}
.x10_c00482{left:395.550000px;}
.x36_c00482{left:398.703000px;}
.x85_c00482{left:400.680000px;}
.x55_c00482{left:403.650000px;}
.x1_c00482{left:405.270000px;}
.x62_c00482{left:406.890000px;}
.x2b_c00482{left:409.320000px;}
.x1d_c00482{left:412.020000px;}
.x44_c00482{left:415.260000px;}
.x2_c00482{left:417.690000px;}
.x37_c00482{left:423.735000px;}
.x80_c00482{left:426.060000px;}
.x56_c00482{left:430.110000px;}
.x24_c00482{left:431.190000px;}
.x2c_c00482{left:434.700000px;}
.x63_c00482{left:436.860000px;}
.xa_c00482{left:441.990000px;}
.x45_c00482{left:445.230000px;}
.x5c_c00482{left:450.900000px;}
.x11_c00482{left:452.250000px;}
.x6d_c00482{left:453.330000px;}
.x64_c00482{left:456.030000px;}
.x59_c00482{left:459.000000px;}
.x75_c00482{left:460.620000px;}
.x81_c00482{left:462.510000px;}
.x38_c00482{left:465.636000px;}
.x86_c00482{left:469.800000px;}
.x5d_c00482{left:474.930000px;}
.x6e_c00482{left:483.570000px;}
.x5a_c00482{left:487.620000px;}
.x12_c00482{left:489.780000px;}
.x82_c00482{left:495.180000px;}
.x8a_c00482{left:501.660000px;}
.x65_c00482{left:502.740000px;}
.x76_c00482{left:504.360000px;}
.x46_c00482{left:506.520000px;}
.x3e_c00482{left:510.300000px;}
.x57_c00482{left:512.460000px;}
.x39_c00482{left:516.675000px;}
.x5b_c00482{left:518.670000px;}
.x8b_c00482{left:522.180000px;}
.x77_c00482{left:531.630000px;}
.x13_c00482{left:534.330000px;}
.x6f_c00482{left:535.950000px;}
.x8c_c00482{left:543.780000px;}
.x66_c00482{left:558.090000px;}
.x87_c00482{left:562.950000px;}
.x14_c00482{left:570.510000px;}
.x78_c00482{left:573.210000px;}
.x79_c00482{left:596.700000px;}
.x67_c00482{left:601.020000px;}
.x70_c00482{left:608.310000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fsd_c00482{font-size:18.666667pt;}
.fs0_c00482{font-size:19.600000pt;}
.fsc_c00482{font-size:23.333333pt;}
.fs12_c00482{font-size:42.000000pt;}
.fsf_c00482{font-size:45.733333pt;}
.fs11_c00482{font-size:46.666667pt;}
.fs10_c00482{font-size:47.600000pt;}
.fse_c00482{font-size:48.533333pt;}
.fs14_c00482{font-size:51.333333pt;}
.fs13_c00482{font-size:55.066667pt;}
.fs7_c00482{font-size:56.000000pt;}
.fs1_c00482{font-size:58.800000pt;}
.fsa_c00482{font-size:59.733333pt;}
.fs6_c00482{font-size:61.600000pt;}
.fs5_c00482{font-size:63.466667pt;}
.fs8_c00482{font-size:64.400000pt;}
.fsb_c00482{font-size:65.333333pt;}
.fs9_c00482{font-size:67.200000pt;}
.fs4_c00482{font-size:71.866667pt;}
.fs2_c00482{font-size:77.466667pt;}
.fs3_c00482{font-size:94.266667pt;}
.y0_c00482{bottom:0.000000pt;}
.y26_c00482{bottom:133.125333pt;}
.y25_c00482{bottom:149.366667pt;}
.y23_c00482{bottom:164.182667pt;}
.y24_c00482{bottom:164.832000pt;}
.y22_c00482{bottom:180.838667pt;}
.y21_c00482{bottom:195.338667pt;}
.y20_c00482{bottom:212.401333pt;}
.y1f_c00482{bottom:227.808000pt;}
.y1e_c00482{bottom:243.870667pt;}
.y1d_c00482{bottom:260.158667pt;}
.y1c_c00482{bottom:263.520000pt;}
.y1b_c00482{bottom:269.401333pt;}
.y1a_c00482{bottom:284.880000pt;}
.y19_c00482{bottom:296.513333pt;}
.y18_c00482{bottom:316.692000pt;}
.y17_c00482{bottom:337.349333pt;}
.y16_c00482{bottom:357.048000pt;}
.y15_c00482{bottom:377.206667pt;}
.y14_c00482{bottom:397.736000pt;}
.y13_c00482{bottom:416.945333pt;}
.y12_c00482{bottom:436.165333pt;}
.y11_c00482{bottom:436.845333pt;}
.y10_c00482{bottom:437.404000pt;}
.yf_c00482{bottom:437.737333pt;}
.ye_c00482{bottom:438.257333pt;}
.yd_c00482{bottom:458.310667pt;}
.yc_c00482{bottom:477.746667pt;}
.yb_c00482{bottom:498.828000pt;}
.ya_c00482{bottom:518.220000pt;}
.y9_c00482{bottom:538.796000pt;}
.y8_c00482{bottom:559.434667pt;}
.y7_c00482{bottom:578.804000pt;}
.y6_c00482{bottom:602.996000pt;}
.y5_c00482{bottom:623.090667pt;}
.y4_c00482{bottom:656.781333pt;}
.y3_c00482{bottom:700.573333pt;}
.y2_c00482{bottom:726.480000pt;}
.y1_c00482{bottom:731.040000pt;}
.hf_c00482{height:18.666667pt;}
.h2_c00482{height:19.600000pt;}
.he_c00482{height:23.333333pt;}
.h14_c00482{height:42.000000pt;}
.h11_c00482{height:45.733333pt;}
.h13_c00482{height:46.666667pt;}
.h12_c00482{height:47.600000pt;}
.h10_c00482{height:48.533333pt;}
.h16_c00482{height:51.333333pt;}
.h15_c00482{height:55.066667pt;}
.h9_c00482{height:56.000000pt;}
.h3_c00482{height:58.800000pt;}
.hc_c00482{height:59.733333pt;}
.h8_c00482{height:61.600000pt;}
.h7_c00482{height:63.466667pt;}
.ha_c00482{height:64.400000pt;}
.hd_c00482{height:65.333333pt;}
.hb_c00482{height:67.200000pt;}
.h6_c00482{height:71.866667pt;}
.h4_c00482{height:77.466667pt;}
.h5_c00482{height:94.266667pt;}
.h1_c00482{height:893.333333pt;}
.h0_c00482{height:893.466667pt;}
.w0_c00482{width:635.733333pt;}
.w1_c00482{width:636.000000pt;}
.x0_c00482{left:0.000000pt;}
.x7a_c00482{left:84.720000pt;}
.x94_c00482{left:85.920000pt;}
.x68_c00482{left:93.120000pt;}
.x8_c00482{left:102.960000pt;}
.x5e_c00482{left:104.880000pt;}
.x4e_c00482{left:109.680000pt;}
.x1e_c00482{left:115.920000pt;}
.x71_c00482{left:117.840000pt;}
.x8d_c00482{left:120.960000pt;}
.x69_c00482{left:122.880000pt;}
.x19_c00482{left:123.840000pt;}
.x1f_c00482{left:125.520000pt;}
.x83_c00482{left:129.600000pt;}
.x8e_c00482{left:137.520000pt;}
.x91_c00482{left:141.600000pt;}
.x25_c00482{left:142.560000pt;}
.x20_c00482{left:144.000000pt;}
.x7b_c00482{left:146.160000pt;}
.x3f_c00482{left:147.360000pt;}
.x47_c00482{left:149.760000pt;}
.x95_c00482{left:151.440000pt;}
.x5f_c00482{left:154.800000pt;}
.x26_c00482{left:157.680000pt;}
.x2e_c00482{left:160.080000pt;}
.x3a_c00482{left:162.240000pt;}
.x4a_c00482{left:165.840000pt;}
.x7c_c00482{left:167.280000pt;}
.x96_c00482{left:168.720000pt;}
.xc_c00482{left:173.520000pt;}
.x4f_c00482{left:175.200000pt;}
.x8f_c00482{left:176.400000pt;}
.x48_c00482{left:177.360000pt;}
.x2f_c00482{left:180.240000pt;}
.x41_c00482{left:182.880000pt;}
.x3b_c00482{left:184.800000pt;}
.x60_c00482{left:187.440000pt;}
.x30_c00482{left:188.880000pt;}
.x1a_c00482{left:190.560000pt;}
.x15_c00482{left:192.000000pt;}
.x4b_c00482{left:192.960000pt;}
.x27_c00482{left:194.400000pt;}
.x21_c00482{left:197.040000pt;}
.x58_c00482{left:198.480000pt;}
.xd_c00482{left:201.840000pt;}
.x6a_c00482{left:203.520000pt;}
.x61_c00482{left:207.600000pt;}
.x4c_c00482{left:213.120000pt;}
.x28_c00482{left:215.760000pt;}
.xe_c00482{left:217.200000pt;}
.x50_c00482{left:218.640000pt;}
.x7d_c00482{left:221.520000pt;}
.x4_c00482{left:225.840000pt;}
.x51_c00482{left:228.480000pt;}
.x42_c00482{left:229.920000pt;}
.x92_c00482{left:232.560000pt;}
.x16_c00482{left:237.360000pt;}
.x31_c00482{left:238.560000pt;}
.x7e_c00482{left:242.880000pt;}
.xb_c00482{left:246.000000pt;}
.x6b_c00482{left:248.880000pt;}
.x9_c00482{left:250.080000pt;}
.x5_c00482{left:251.280000pt;}
.x52_c00482{left:252.960000pt;}
.x97_c00482{left:256.560000pt;}
.x84_c00482{left:258.000000pt;}
.x29_c00482{left:260.640000pt;}
.x90_c00482{left:264.480000pt;}
.x17_c00482{left:267.600000pt;}
.x72_c00482{left:269.280000pt;}
.x22_c00482{left:271.200000pt;}
.x93_c00482{left:274.080000pt;}
.x43_c00482{left:275.280000pt;}
.x6c_c00482{left:278.880000pt;}
.x7f_c00482{left:281.280000pt;}
.xf_c00482{left:288.960000pt;}
.x4d_c00482{left:290.160000pt;}
.x2d_c00482{left:291.840000pt;}
.x2a_c00482{left:292.800000pt;}
.x3c_c00482{left:294.240000pt;}
.x49_c00482{left:297.360000pt;}
.x6_c00482{left:299.280000pt;}
.x1b_c00482{left:301.440000pt;}
.x53_c00482{left:302.400000pt;}
.x88_c00482{left:303.600000pt;}
.x73_c00482{left:307.680000pt;}
.x40_c00482{left:309.360000pt;}
.x32_c00482{left:310.320000pt;}
.x23_c00482{left:311.760000pt;}
.x89_c00482{left:314.640000pt;}
.x1c_c00482{left:317.280000pt;}
.x35_c00482{left:319.725333pt;}
.x3d_c00482{left:320.880000pt;}
.x33_c00482{left:323.760000pt;}
.x54_c00482{left:325.680000pt;}
.x7_c00482{left:328.080000pt;}
.x74_c00482{left:336.480000pt;}
.x18_c00482{left:342.720000pt;}
.x34_c00482{left:343.680000pt;}
.x3_c00482{left:344.640000pt;}
.x10_c00482{left:351.600000pt;}
.x36_c00482{left:354.402667pt;}
.x85_c00482{left:356.160000pt;}
.x55_c00482{left:358.800000pt;}
.x1_c00482{left:360.240000pt;}
.x62_c00482{left:361.680000pt;}
.x2b_c00482{left:363.840000pt;}
.x1d_c00482{left:366.240000pt;}
.x44_c00482{left:369.120000pt;}
.x2_c00482{left:371.280000pt;}
.x37_c00482{left:376.653333pt;}
.x80_c00482{left:378.720000pt;}
.x56_c00482{left:382.320000pt;}
.x24_c00482{left:383.280000pt;}
.x2c_c00482{left:386.400000pt;}
.x63_c00482{left:388.320000pt;}
.xa_c00482{left:392.880000pt;}
.x45_c00482{left:395.760000pt;}
.x5c_c00482{left:400.800000pt;}
.x11_c00482{left:402.000000pt;}
.x6d_c00482{left:402.960000pt;}
.x64_c00482{left:405.360000pt;}
.x59_c00482{left:408.000000pt;}
.x75_c00482{left:409.440000pt;}
.x81_c00482{left:411.120000pt;}
.x38_c00482{left:413.898667pt;}
.x86_c00482{left:417.600000pt;}
.x5d_c00482{left:422.160000pt;}
.x6e_c00482{left:429.840000pt;}
.x5a_c00482{left:433.440000pt;}
.x12_c00482{left:435.360000pt;}
.x82_c00482{left:440.160000pt;}
.x8a_c00482{left:445.920000pt;}
.x65_c00482{left:446.880000pt;}
.x76_c00482{left:448.320000pt;}
.x46_c00482{left:450.240000pt;}
.x3e_c00482{left:453.600000pt;}
.x57_c00482{left:455.520000pt;}
.x39_c00482{left:459.266667pt;}
.x5b_c00482{left:461.040000pt;}
.x8b_c00482{left:464.160000pt;}
.x77_c00482{left:472.560000pt;}
.x13_c00482{left:474.960000pt;}
.x6f_c00482{left:476.400000pt;}
.x8c_c00482{left:483.360000pt;}
.x66_c00482{left:496.080000pt;}
.x87_c00482{left:500.400000pt;}
.x14_c00482{left:507.120000pt;}
.x78_c00482{left:509.520000pt;}
.x79_c00482{left:530.400000pt;}
.x67_c00482{left:534.240000pt;}
.x70_c00482{left:540.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_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;}
.m3f_c00483{transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);}
.m6d_c00483{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);}
.mab_c00483{transform:matrix(0.011305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011305,0.000000,0.000000,0.250000,0,0);}
.m33_c00483{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);}
.m8d_c00483{transform:matrix(0.012119,-0.000121,0.002500,0.249988,0,0);-ms-transform:matrix(0.012119,-0.000121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012119,-0.000121,0.002500,0.249988,0,0);}
.m22_c00483{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);}
.m41_c00483{transform:matrix(0.038440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038440,0.000000,0.000000,0.250000,0,0);}
.m9f_c00483{transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);}
.mcb_c00483{transform:matrix(0.069975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00483{transform:matrix(0.074970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074970,0.000000,0.000000,0.250000,0,0);}
.ma2_c00483{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);}
.m37_c00483{transform:matrix(0.106395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106395,0.000000,0.000000,0.250000,0,0);}
.m6c_c00483{transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);}
.mb3_c00483{transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00483{transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);}
.mb1_c00483{transform:matrix(0.124230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124230,0.000000,0.000000,0.250000,0,0);}
.mfb_c00483{transform:matrix(0.125070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125070,0.000000,0.000000,0.250000,0,0);}
.ma5_c00483{transform:matrix(0.131180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131180,0.000000,0.000000,0.250000,0,0);}
.mad_c00483{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);}
.mff_c00483{transform:matrix(0.136530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136530,0.000000,0.000000,0.250000,0,0);}
.ma4_c00483{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);}
.m49_c00483{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m100_c00483{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.ma7_c00483{transform:matrix(0.145385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145385,0.000000,0.000000,0.250000,0,0);}
.mb2_c00483{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);}
.ma3_c00483{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);}
.md3_c00483{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{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);}
.maf_c00483{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mae_c00483{transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153740,0.000000,0.000000,0.250000,0,0);}
.m74_c00483{transform:matrix(0.154047,-0.001540,0.002500,0.249988,0,0);-ms-transform:matrix(0.154047,-0.001540,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154047,-0.001540,0.002500,0.249988,0,0);}
.m2f_c00483{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);}
.m101_c00483{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);}
.m48_c00483{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);}
.m1f_c00483{transform:matrix(0.156135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156135,0.000000,0.000000,0.250000,0,0);}
.mb0_c00483{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);}
.m1b_c00483{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);}
.m6b_c00483{transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);}
.mbb_c00483{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);}
.ma8_c00483{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);}
.mb6_c00483{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);}
.m32_c00483{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);}
.m1_c00483{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);}
.m57_c00483{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);}
.md4_c00483{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);}
.m31_c00483{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);}
.m102_c00483{transform:matrix(0.164980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164980,0.000000,0.000000,0.250000,0,0);}
.m77_c00483{transform:matrix(0.165017,-0.001650,0.002500,0.249988,0,0);-ms-transform:matrix(0.165017,-0.001650,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165017,-0.001650,0.002500,0.249988,0,0);}
.m79_c00483{transform:matrix(0.165662,-0.001657,0.002500,0.249988,0,0);-ms-transform:matrix(0.165662,-0.001657,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165662,-0.001657,0.002500,0.249988,0,0);}
.mc2_c00483{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);}
.m87_c00483{transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);-ms-transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166017,-0.001660,0.002500,0.249988,0,0);}
.m21_c00483{transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166670,0.000000,0.000000,0.250000,0,0);}
.mb7_c00483{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);}
.m83_c00483{transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167757,-0.001678,0.002500,0.249988,0,0);}
.m89_c00483{transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);-ms-transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169177,-0.001692,0.002500,0.249988,0,0);}
.mc4_c00483{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);}
.mc3_c00483{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);}
.m1a_c00483{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);}
.m68_c00483{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);}
.m52_c00483{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);}
.md1_c00483{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);}
.m8b_c00483{transform:matrix(0.171456,-0.001715,0.002500,0.249988,0,0);-ms-transform:matrix(0.171456,-0.001715,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171456,-0.001715,0.002500,0.249988,0,0);}
.m97_c00483{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);}
.m7e_c00483{transform:matrix(0.171896,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171896,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171896,-0.001719,0.002500,0.249988,0,0);}
.m88_c00483{transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);-ms-transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172976,-0.001730,0.002500,0.249988,0,0);}
.m78_c00483{transform:matrix(0.173111,-0.001731,0.002500,0.249988,0,0);-ms-transform:matrix(0.173111,-0.001731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173111,-0.001731,0.002500,0.249988,0,0);}
.m58_c00483{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);}
.m2d_c00483{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);}
.md7_c00483{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);}
.mfe_c00483{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);}
.m12_c00483{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);}
.m20_c00483{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);}
.m84_c00483{transform:matrix(0.175211,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175211,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175211,-0.001752,0.002500,0.249988,0,0);}
.m64_c00483{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);}
.m30_c00483{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);}
.me4_c00483{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);}
.m44_c00483{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);}
.m3d_c00483{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);}
.m103_c00483{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);}
.maa_c00483{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);}
.mcd_c00483{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);}
.m3_c00483{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);}
.m1c_c00483{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);}
.m3a_c00483{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);}
.m56_c00483{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);}
.m45_c00483{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);}
.m24_c00483{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);}
.mc6_c00483{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);}
.m69_c00483{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);}
.m50_c00483{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);}
.m66_c00483{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);}
.mc8_c00483{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);}
.m65_c00483{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_c00483{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);}
.m104_c00483{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);}
.ma6_c00483{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);}
.md_c00483{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);}
.m86_c00483{transform:matrix(0.183771,-0.001838,0.002500,0.249988,0,0);-ms-transform:matrix(0.183771,-0.001838,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183771,-0.001838,0.002500,0.249988,0,0);}
.m10_c00483{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);}
.m4_c00483{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);}
.m62_c00483{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);}
.m4c_c00483{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);}
.m55_c00483{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);}
.m2_c00483{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);}
.m81_c00483{transform:matrix(0.185696,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185696,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185696,-0.001857,0.002500,0.249988,0,0);}
.m4a_c00483{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);}
.md2_c00483{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);}
.mf2_c00483{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);}
.mb5_c00483{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);}
.m75_c00483{transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);-ms-transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188466,-0.001885,0.002500,0.249988,0,0);}
.m72_c00483{transform:matrix(0.188971,-0.001890,0.002500,0.249988,0,0);-ms-transform:matrix(0.188971,-0.001890,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188971,-0.001890,0.002500,0.249988,0,0);}
.m5c_c00483{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);}
.m71_c00483{transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189691,-0.001897,0.002500,0.249988,0,0);}
.me_c00483{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);}
.m67_c00483{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);}
.mb4_c00483{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);}
.m59_c00483{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);}
.m2b_c00483{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);}
.m76_c00483{transform:matrix(0.191265,-0.001913,0.002500,0.249988,0,0);-ms-transform:matrix(0.191265,-0.001913,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191265,-0.001913,0.002500,0.249988,0,0);}
.m13_c00483{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);}
.m18_c00483{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);}
.m26_c00483{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);}
.m28_c00483{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);}
.md8_c00483{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);}
.mee_c00483{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);}
.m29_c00483{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);}
.m8c_c00483{transform:matrix(0.193870,-0.001939,0.002500,0.249988,0,0);-ms-transform:matrix(0.193870,-0.001939,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193870,-0.001939,0.002500,0.249988,0,0);}
.m91_c00483{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);}
.mc5_c00483{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);}
.m6a_c00483{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);}
.mbe_c00483{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_c00483{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);}
.m4b_c00483{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);}
.m25_c00483{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);}
.m23_c00483{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);}
.m5_c00483{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);}
.me6_c00483{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);}
.mb8_c00483{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);}
.m4d_c00483{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);}
.md0_c00483{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);}
.ma1_c00483{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);}
.m1e_c00483{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);}
.mb9_c00483{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_c00483{transform:matrix(0.201400,-0.002014,0.002500,0.249988,0,0);-ms-transform:matrix(0.201400,-0.002014,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201400,-0.002014,0.002500,0.249988,0,0);}
.m46_c00483{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);}
.m17_c00483{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);}
.m94_c00483{transform:matrix(0.201830,-0.002018,0.002500,0.249988,0,0);-ms-transform:matrix(0.201830,-0.002018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201830,-0.002018,0.002500,0.249988,0,0);}
.m2c_c00483{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);}
.m8a_c00483{transform:matrix(0.202925,-0.002029,0.002500,0.249988,0,0);-ms-transform:matrix(0.202925,-0.002029,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202925,-0.002029,0.002500,0.249988,0,0);}
.m54_c00483{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);}
.m70_c00483{transform:matrix(0.204695,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204695,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204695,-0.002047,0.002500,0.249988,0,0);}
.m1d_c00483{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);}
.mc1_c00483{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);}
.m8_c00483{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);}
.me1_c00483{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);}
.m36_c00483{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);}
.me9_c00483{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);}
.m80_c00483{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);}
.mc7_c00483{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);}
.m53_c00483{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);}
.m42_c00483{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);}
.m73_c00483{transform:matrix(0.210079,-0.002101,0.002500,0.249988,0,0);-ms-transform:matrix(0.210079,-0.002101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210079,-0.002101,0.002500,0.249988,0,0);}
.m7d_c00483{transform:matrix(0.211159,-0.002112,0.002500,0.249988,0,0);-ms-transform:matrix(0.211159,-0.002112,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211159,-0.002112,0.002500,0.249988,0,0);}
.mde_c00483{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);}
.m9_c00483{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);}
.me3_c00483{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);}
.mf_c00483{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{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);}
.m98_c00483{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);}
.m85_c00483{transform:matrix(0.217299,-0.002173,0.002500,0.249988,0,0);-ms-transform:matrix(0.217299,-0.002173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217299,-0.002173,0.002500,0.249988,0,0);}
.mac_c00483{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);}
.md6_c00483{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);}
.m3b_c00483{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);}
.m3c_c00483{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);}
.m82_c00483{transform:matrix(0.219434,-0.002194,0.002500,0.249988,0,0);-ms-transform:matrix(0.219434,-0.002194,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219434,-0.002194,0.002500,0.249988,0,0);}
.mdb_c00483{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);}
.meb_c00483{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);}
.m51_c00483{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);}
.m2a_c00483{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);}
.me8_c00483{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);}
.mc0_c00483{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);}
.mdf_c00483{transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);}
.mce_c00483{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.m61_c00483{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);}
.mdd_c00483{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);}
.mef_c00483{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);}
.mf6_c00483{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);}
.m63_c00483{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);}
.mdc_c00483{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);}
.m90_c00483{transform:matrix(0.229299,-0.002293,0.002500,0.249988,0,0);-ms-transform:matrix(0.229299,-0.002293,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229299,-0.002293,0.002500,0.249988,0,0);}
.m11_c00483{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);}
.med_c00483{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);}
.ma0_c00483{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);}
.m8f_c00483{transform:matrix(0.230638,-0.002306,0.002500,0.249988,0,0);-ms-transform:matrix(0.230638,-0.002306,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230638,-0.002306,0.002500,0.249988,0,0);}
.mfa_c00483{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);}
.mea_c00483{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);}
.mf0_c00483{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);}
.mf8_c00483{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m7a_c00483{transform:matrix(0.235323,-0.002353,0.002500,0.249988,0,0);-ms-transform:matrix(0.235323,-0.002353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235323,-0.002353,0.002500,0.249988,0,0);}
.m6_c00483{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);}
.m47_c00483{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);}
.m5e_c00483{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);}
.m5d_c00483{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);}
.mf9_c00483{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);}
.mf1_c00483{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);}
.m6e_c00483{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);}
.me0_c00483{transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);}
.mcc_c00483{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);}
.mfd_c00483{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.mec_c00483{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);}
.m5f_c00483{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);}
.m3e_c00483{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.mbc_c00483{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00483{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);}
.m15_c00483{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m43_c00483{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);}
.mf4_c00483{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m5b_c00483{transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);}
.m9d_c00483{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);}
.mba_c00483{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);}
.mda_c00483{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);}
.mca_c00483{transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00483{transform:matrix(0.265582,-0.002656,0.002500,0.249988,0,0);-ms-transform:matrix(0.265582,-0.002656,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265582,-0.002656,0.002500,0.249988,0,0);}
.m35_c00483{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);}
.mf7_c00483{transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267585,0.000000,0.000000,0.250000,0,0);}
.mfc_c00483{transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);}
.mc9_c00483{transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271440,0.000000,0.000000,0.250000,0,0);}
.m7c_c00483{transform:matrix(0.271996,-0.002720,0.002500,0.249988,0,0);-ms-transform:matrix(0.271996,-0.002720,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271996,-0.002720,0.002500,0.249988,0,0);}
.me5_c00483{transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273660,0.000000,0.000000,0.250000,0,0);}
.m5a_c00483{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);}
.m60_c00483{transform:matrix(0.275945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275945,0.000000,0.000000,0.250000,0,0);}
.m92_c00483{transform:matrix(0.282401,-0.002824,0.002500,0.249988,0,0);-ms-transform:matrix(0.282401,-0.002824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282401,-0.002824,0.002500,0.249988,0,0);}
.md5_c00483{transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290515,0.000000,0.000000,0.250000,0,0);}
.m7b_c00483{transform:matrix(0.296170,-0.002962,0.002500,0.249988,0,0);-ms-transform:matrix(0.296170,-0.002962,0.002500,0.249988,0,0);-webkit-transform:matrix(0.296170,-0.002962,0.002500,0.249988,0,0);}
.mbd_c00483{transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00483{transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00483{transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305955,0.000000,0.000000,0.250000,0,0);}
.md9_c00483{transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306235,0.000000,0.000000,0.250000,0,0);}
.m96_c00483{transform:matrix(0.309210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309210,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311395,0.000000,0.000000,0.250000,0,0);}
.mcf_c00483{transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330665,0.000000,0.000000,0.250000,0,0);}
.mf5_c00483{transform:matrix(0.331680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331680,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.334665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334665,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.335305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335305,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335580,0.000000,0.000000,0.250000,0,0);}
.mf3_c00483{transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347960,0.000000,0.000000,0.250000,0,0);}
.me7_c00483{transform:matrix(0.349985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349985,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(0.354925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00483{transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);}
.m93_c00483{transform:matrix(0.362952,-0.003630,0.002500,0.249988,0,0);-ms-transform:matrix(0.362952,-0.003630,0.002500,0.249988,0,0);-webkit-transform:matrix(0.362952,-0.003630,0.002500,0.249988,0,0);}
.m99_c00483{transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);}
.me2_c00483{transform:matrix(0.368370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368370,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.371965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371965,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419600,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00483{transform:matrix(0.441845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441845,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.492840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492840,0.000000,0.000000,0.250000,0,0);}
.m9c_c00483{transform:matrix(0.632520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632520,0.000000,0.000000,0.250000,0,0);}
.m95_c00483{transform:matrix(0.794450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794450,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;}
.fs10_c00483{font-size:21.000000px;}
.fsf_c00483{font-size:25.200000px;}
.fs15_c00483{font-size:46.200000px;}
.fs13_c00483{font-size:49.350000px;}
.fs14_c00483{font-size:54.600000px;}
.fs12_c00483{font-size:55.650000px;}
.fsb_c00483{font-size:60.900000px;}
.fse_c00483{font-size:63.003150px;}
.fs7_c00483{font-size:64.050000px;}
.fs16_c00483{font-size:65.100000px;}
.fs5_c00483{font-size:70.350000px;}
.fsc_c00483{font-size:70.353517px;}
.fs1_c00483{font-size:71.400000px;}
.fsd_c00483{font-size:71.403570px;}
.fs0_c00483{font-size:72.450000px;}
.fs9_c00483{font-size:73.500000px;}
.fs2_c00483{font-size:74.550000px;}
.fs3_c00483{font-size:76.650000px;}
.fs4_c00483{font-size:77.700000px;}
.fsa_c00483{font-size:78.750000px;}
.fs6_c00483{font-size:82.950000px;}
.fs11_c00483{font-size:86.100000px;}
.fs8_c00483{font-size:94.500000px;}
.y0_c00483{bottom:0.000000px;}
.y67_c00483{bottom:137.307000px;}
.y66_c00483{bottom:156.298500px;}
.y5c_c00483{bottom:173.070000px;}
.y5d_c00483{bottom:173.178000px;}
.y5e_c00483{bottom:173.509500px;}
.y5f_c00483{bottom:173.766000px;}
.y60_c00483{bottom:174.021000px;}
.y61_c00483{bottom:174.484500px;}
.y62_c00483{bottom:174.583500px;}
.y63_c00483{bottom:174.700500px;}
.y64_c00483{bottom:175.149000px;}
.y65_c00483{bottom:175.662000px;}
.y5b_c00483{bottom:192.702000px;}
.y5a_c00483{bottom:210.751500px;}
.y59_c00483{bottom:228.571500px;}
.y58_c00483{bottom:244.029000px;}
.y57_c00483{bottom:273.418500px;}
.y56_c00483{bottom:275.670000px;}
.y4e_c00483{bottom:294.300000px;}
.y4f_c00483{bottom:294.381720px;}
.y50_c00483{bottom:294.767835px;}
.y51_c00483{bottom:295.639965px;}
.y52_c00483{bottom:296.066490px;}
.y53_c00483{bottom:296.477010px;}
.y54_c00483{bottom:296.903700px;}
.y55_c00483{bottom:297.087315px;}
.y46_c00483{bottom:317.788635px;}
.y47_c00483{bottom:318.658155px;}
.y48_c00483{bottom:319.109055px;}
.y49_c00483{bottom:319.335495px;}
.y4a_c00483{bottom:319.759830px;}
.y4b_c00483{bottom:320.243055px;}
.y4c_c00483{bottom:320.388990px;}
.y4d_c00483{bottom:320.607705px;}
.y3b_c00483{bottom:340.470165px;}
.y3c_c00483{bottom:340.719180px;}
.y3d_c00483{bottom:341.069745px;}
.y3e_c00483{bottom:341.231625px;}
.y3f_c00483{bottom:341.582775px;}
.y40_c00483{bottom:341.829150px;}
.y41_c00483{bottom:342.356295px;}
.y42_c00483{bottom:342.541680px;}
.y43_c00483{bottom:342.879255px;}
.y44_c00483{bottom:343.064985px;}
.y45_c00483{bottom:343.356000px;}
.y31_c00483{bottom:363.421500px;}
.y32_c00483{bottom:363.931830px;}
.y33_c00483{bottom:364.323450px;}
.y34_c00483{bottom:364.647645px;}
.y35_c00483{bottom:365.281875px;}
.y36_c00483{bottom:365.559960px;}
.y37_c00483{bottom:365.797140px;}
.y38_c00483{bottom:366.208035px;}
.y39_c00483{bottom:366.618555px;}
.y3a_c00483{bottom:367.007310px;}
.y30_c00483{bottom:391.992000px;}
.y2f_c00483{bottom:420.531000px;}
.y2e_c00483{bottom:443.676000px;}
.y2d_c00483{bottom:466.686000px;}
.y2c_c00483{bottom:489.093000px;}
.y2b_c00483{bottom:512.112000px;}
.y28_c00483{bottom:532.978500px;}
.y29_c00483{bottom:534.339000px;}
.y2a_c00483{bottom:536.256000px;}
.y27_c00483{bottom:558.447000px;}
.y26_c00483{bottom:580.668000px;}
.y25_c00483{bottom:605.002500px;}
.y1e_c00483{bottom:626.128500px;}
.y1f_c00483{bottom:626.829000px;}
.y20_c00483{bottom:627.313500px;}
.y21_c00483{bottom:628.068000px;}
.y22_c00483{bottom:628.650000px;}
.y23_c00483{bottom:629.181000px;}
.y24_c00483{bottom:629.677500px;}
.y14_c00483{bottom:648.541500px;}
.y15_c00483{bottom:649.009500px;}
.y16_c00483{bottom:649.303500px;}
.y17_c00483{bottom:649.612500px;}
.y18_c00483{bottom:650.382000px;}
.y19_c00483{bottom:650.761500px;}
.y1a_c00483{bottom:651.049500px;}
.y1b_c00483{bottom:651.420000px;}
.y1c_c00483{bottom:651.909000px;}
.y1d_c00483{bottom:652.923000px;}
.ya_c00483{bottom:671.223000px;}
.yb_c00483{bottom:671.635500px;}
.yc_c00483{bottom:672.240000px;}
.yd_c00483{bottom:672.456000px;}
.ye_c00483{bottom:672.865500px;}
.yf_c00483{bottom:673.183500px;}
.y10_c00483{bottom:673.399500px;}
.y11_c00483{bottom:673.780500px;}
.y12_c00483{bottom:673.936500px;}
.y13_c00483{bottom:674.193000px;}
.y6_c00483{bottom:695.794500px;}
.y7_c00483{bottom:697.053000px;}
.y8_c00483{bottom:698.533500px;}
.y9_c00483{bottom:699.274500px;}
.y5_c00483{bottom:718.363500px;}
.y4_c00483{bottom:741.691500px;}
.y3_c00483{bottom:764.644500px;}
.y2_c00483{bottom:786.121500px;}
.y1_c00483{bottom:810.664500px;}
.h12_c00483{height:21.000000px;}
.h11_c00483{height:25.200000px;}
.h17_c00483{height:46.200000px;}
.h15_c00483{height:49.350000px;}
.h16_c00483{height:54.600000px;}
.h14_c00483{height:55.650000px;}
.hd_c00483{height:60.900000px;}
.h10_c00483{height:63.003150px;}
.h9_c00483{height:64.050000px;}
.h18_c00483{height:65.100000px;}
.h7_c00483{height:70.350000px;}
.he_c00483{height:70.353517px;}
.h3_c00483{height:71.400000px;}
.hf_c00483{height:71.403570px;}
.h2_c00483{height:72.450000px;}
.hb_c00483{height:73.500000px;}
.h4_c00483{height:74.550000px;}
.h5_c00483{height:76.650000px;}
.h6_c00483{height:77.700000px;}
.hc_c00483{height:78.750000px;}
.h8_c00483{height:82.950000px;}
.h13_c00483{height:86.100000px;}
.ha_c00483{height:94.500000px;}
.h0_c00483{height:1008.450000px;}
.h1_c00483{height:1008.750000px;}
.w1_c00483{width:700.500000px;}
.w0_c00483{width:700.650000px;}
.x0_c00483{left:0.000000px;}
.x8c_c00483{left:160.920000px;}
.x7d_c00483{left:169.020000px;}
.x9a_c00483{left:170.638500px;}
.x73_c00483{left:181.980000px;}
.x67_c00483{left:186.364500px;}
.x92_c00483{left:187.720500px;}
.x34_c00483{left:192.510000px;}
.x68_c00483{left:194.536500px;}
.x2_c00483{left:195.750000px;}
.x17_c00483{left:197.517000px;}
.x36_c00483{left:199.525500px;}
.x45_c00483{left:201.415500px;}
.x4e_c00483{left:202.495500px;}
.x6f_c00483{left:206.550000px;}
.x3_c00483{left:214.920000px;}
.x74_c00483{left:221.670000px;}
.x37_c00483{left:227.065500px;}
.x2d_c00483{left:228.685500px;}
.x5d_c00483{left:230.962860px;}
.x69_c00483{left:233.148000px;}
.xe_c00483{left:236.415000px;}
.x2b_c00483{left:238.675500px;}
.x18_c00483{left:240.121500px;}
.x93_c00483{left:243.072000px;}
.x27_c00483{left:244.615500px;}
.x8d_c00483{left:248.670000px;}
.x86_c00483{left:249.750000px;}
.x55_c00483{left:253.398000px;}
.x53_c00483{left:255.415500px;}
.x38_c00483{left:256.495500px;}
.x4_c00483{left:260.010000px;}
.x21_c00483{left:261.747000px;}
.x9b_c00483{left:262.978500px;}
.x46_c00483{left:265.135500px;}
.x19_c00483{left:266.898000px;}
.x3f_c00483{left:269.185500px;}
.x7e_c00483{left:272.160000px;}
.x5e_c00483{left:274.720230px;}
.x70_c00483{left:277.020000px;}
.x71_c00483{left:283.770000px;}
.x94_c00483{left:285.714000px;}
.x40_c00483{left:287.815500px;}
.x62_c00483{left:290.386890px;}
.x56_c00483{left:292.560000px;}
.x1a_c00483{left:295.018500px;}
.xf_c00483{left:296.895000px;}
.x7f_c00483{left:300.780000px;}
.x6d_c00483{left:302.400000px;}
.x22_c00483{left:305.754000px;}
.x9c_c00483{left:307.258500px;}
.x39_c00483{left:311.035500px;}
.x54_c00483{left:312.115500px;}
.x5_c00483{left:313.200000px;}
.x75_c00483{left:316.710000px;}
.x10_c00483{left:318.498000px;}
.x2e_c00483{left:319.675500px;}
.x57_c00483{left:324.979500px;}
.x95_c00483{left:328.104000px;}
.x76_c00483{left:331.560000px;}
.x9d_c00483{left:333.178500px;}
.x8e_c00483{left:334.260000px;}
.x28_c00483{left:335.335500px;}
.x1_c00483{left:338.040000px;}
.x72_c00483{left:340.470000px;}
.x7_c00483{left:343.170000px;}
.x4f_c00483{left:345.055500px;}
.x2c_c00483{left:348.565500px;}
.x6_c00483{left:352.080000px;}
.x41_c00483{left:353.155500px;}
.x63_c00483{left:358.120890px;}
.x11_c00483{left:359.488500px;}
.x8_c00483{left:363.150000px;}
.x1b_c00483{left:364.942500px;}
.x5f_c00483{left:369.712635px;}
.x77_c00483{left:372.870000px;}
.x23_c00483{left:374.328000px;}
.x42_c00483{left:376.375500px;}
.x50_c00483{left:380.155500px;}
.x9_c00483{left:382.320000px;}
.x4a_c00483{left:385.285500px;}
.x3a_c00483{left:387.175500px;}
.x58_c00483{left:388.402500px;}
.x12_c00483{left:391.362000px;}
.x2f_c00483{left:394.735500px;}
.x47_c00483{left:396.355500px;}
.x1c_c00483{left:399.507000px;}
.x64_c00483{left:400.554390px;}
.x43_c00483{left:402.565500px;}
.x6a_c00483{left:404.065500px;}
.x4b_c00483{left:406.075500px;}
.x51_c00483{left:408.235500px;}
.xb_c00483{left:411.171000px;}
.x13_c00483{left:412.974000px;}
.x30_c00483{left:416.875500px;}
.x80_c00483{left:419.850000px;}
.x96_c00483{left:421.803000px;}
.x1d_c00483{left:425.694000px;}
.x24_c00483{left:427.260000px;}
.xa_c00483{left:428.490000px;}
.x81_c00483{left:433.890000px;}
.x60_c00483{left:435.628455px;}
.x48_c00483{left:438.205500px;}
.x59_c00483{left:439.929000px;}
.x97_c00483{left:441.229500px;}
.x3b_c00483{left:445.495500px;}
.x6b_c00483{left:446.734500px;}
.x65_c00483{left:448.876890px;}
.x14_c00483{left:451.066500px;}
.x78_c00483{left:456.570000px;}
.x87_c00483{left:458.190000px;}
.x1e_c00483{left:459.436500px;}
.x49_c00483{left:463.045500px;}
.x6c_c00483{left:465.096000px;}
.x15_c00483{left:466.705500px;}
.x3c_c00483{left:468.445500px;}
.x31_c00483{left:469.795500px;}
.x44_c00483{left:471.145500px;}
.x52_c00483{left:473.575500px;}
.x25_c00483{left:475.554000px;}
.x9e_c00483{left:479.248500px;}
.x5a_c00483{left:481.018500px;}
.x66_c00483{left:485.341890px;}
.x16_c00483{left:492.322500px;}
.x4c_c00483{left:494.095500px;}
.x9f_c00483{left:495.178500px;}
.xc_c00483{left:498.295500px;}
.x32_c00483{left:500.305500px;}
.x3d_c00483{left:502.735500px;}
.x1f_c00483{left:503.955000px;}
.x29_c00483{left:507.055500px;}
.x88_c00483{left:508.950000px;}
.x4d_c00483{left:514.615500px;}
.x98_c00483{left:516.021000px;}
.x26_c00483{left:520.707000px;}
.x5b_c00483{left:522.070500px;}
.x61_c00483{left:524.199225px;}
.x3e_c00483{left:526.495500px;}
.x2a_c00483{left:528.115500px;}
.x82_c00483{left:531.360000px;}
.x8f_c00483{left:534.330000px;}
.x89_c00483{left:538.110000px;}
.xa0_c00483{left:540.268500px;}
.xd_c00483{left:541.867500px;}
.x79_c00483{left:543.240000px;}
.x6e_c00483{left:544.590000px;}
.x33_c00483{left:549.985500px;}
.xa5_c00483{left:552.420000px;}
.xa1_c00483{left:554.038500px;}
.x35_c00483{left:556.611000px;}
.x5c_c00483{left:560.946000px;}
.x8a_c00483{left:565.110000px;}
.x7a_c00483{left:568.890000px;}
.x90_c00483{left:580.770000px;}
.x83_c00483{left:586.980000px;}
.xa2_c00483{left:595.078500px;}
.x20_c00483{left:596.127000px;}
.x99_c00483{left:601.602000px;}
.xa3_c00483{left:603.178500px;}
.x8b_c00483{left:609.390000px;}
.x7b_c00483{left:613.710000px;}
.x84_c00483{left:614.790000px;}
.x91_c00483{left:615.870000px;}
.xa4_c00483{left:619.378500px;}
.x7c_c00483{left:626.940000px;}
.x85_c00483{left:628.830000px;}
.xa6_c00483{left:636.390000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fs10_c00483{font-size:18.666667pt;}
.fsf_c00483{font-size:22.400000pt;}
.fs15_c00483{font-size:41.066667pt;}
.fs13_c00483{font-size:43.866667pt;}
.fs14_c00483{font-size:48.533333pt;}
.fs12_c00483{font-size:49.466667pt;}
.fsb_c00483{font-size:54.133333pt;}
.fse_c00483{font-size:56.002800pt;}
.fs7_c00483{font-size:56.933333pt;}
.fs16_c00483{font-size:57.866667pt;}
.fs5_c00483{font-size:62.533333pt;}
.fsc_c00483{font-size:62.536460pt;}
.fs1_c00483{font-size:63.466667pt;}
.fsd_c00483{font-size:63.469840pt;}
.fs0_c00483{font-size:64.400000pt;}
.fs9_c00483{font-size:65.333333pt;}
.fs2_c00483{font-size:66.266667pt;}
.fs3_c00483{font-size:68.133333pt;}
.fs4_c00483{font-size:69.066667pt;}
.fsa_c00483{font-size:70.000000pt;}
.fs6_c00483{font-size:73.733333pt;}
.fs11_c00483{font-size:76.533333pt;}
.fs8_c00483{font-size:84.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y67_c00483{bottom:122.050667pt;}
.y66_c00483{bottom:138.932000pt;}
.y5c_c00483{bottom:153.840000pt;}
.y5d_c00483{bottom:153.936000pt;}
.y5e_c00483{bottom:154.230667pt;}
.y5f_c00483{bottom:154.458667pt;}
.y60_c00483{bottom:154.685333pt;}
.y61_c00483{bottom:155.097333pt;}
.y62_c00483{bottom:155.185333pt;}
.y63_c00483{bottom:155.289333pt;}
.y64_c00483{bottom:155.688000pt;}
.y65_c00483{bottom:156.144000pt;}
.y5b_c00483{bottom:171.290667pt;}
.y5a_c00483{bottom:187.334667pt;}
.y59_c00483{bottom:203.174667pt;}
.y58_c00483{bottom:216.914667pt;}
.y57_c00483{bottom:243.038667pt;}
.y56_c00483{bottom:245.040000pt;}
.y4e_c00483{bottom:261.600000pt;}
.y4f_c00483{bottom:261.672640pt;}
.y50_c00483{bottom:262.015853pt;}
.y51_c00483{bottom:262.791080pt;}
.y52_c00483{bottom:263.170213pt;}
.y53_c00483{bottom:263.535120pt;}
.y54_c00483{bottom:263.914400pt;}
.y55_c00483{bottom:264.077613pt;}
.y46_c00483{bottom:282.478787pt;}
.y47_c00483{bottom:283.251693pt;}
.y48_c00483{bottom:283.652493pt;}
.y49_c00483{bottom:283.853773pt;}
.y4a_c00483{bottom:284.230960pt;}
.y4b_c00483{bottom:284.660493pt;}
.y4c_c00483{bottom:284.790213pt;}
.y4d_c00483{bottom:284.984627pt;}
.y3b_c00483{bottom:302.640147pt;}
.y3c_c00483{bottom:302.861493pt;}
.y3d_c00483{bottom:303.173107pt;}
.y3e_c00483{bottom:303.317000pt;}
.y3f_c00483{bottom:303.629133pt;}
.y40_c00483{bottom:303.848133pt;}
.y41_c00483{bottom:304.316707pt;}
.y42_c00483{bottom:304.481493pt;}
.y43_c00483{bottom:304.781560pt;}
.y44_c00483{bottom:304.946653pt;}
.y45_c00483{bottom:305.205333pt;}
.y31_c00483{bottom:323.041333pt;}
.y32_c00483{bottom:323.494960pt;}
.y33_c00483{bottom:323.843067pt;}
.y34_c00483{bottom:324.131240pt;}
.y35_c00483{bottom:324.695000pt;}
.y36_c00483{bottom:324.942187pt;}
.y37_c00483{bottom:325.153013pt;}
.y38_c00483{bottom:325.518253pt;}
.y39_c00483{bottom:325.883160pt;}
.y3a_c00483{bottom:326.228720pt;}
.y30_c00483{bottom:348.437333pt;}
.y2f_c00483{bottom:373.805333pt;}
.y2e_c00483{bottom:394.378667pt;}
.y2d_c00483{bottom:414.832000pt;}
.y2c_c00483{bottom:434.749333pt;}
.y2b_c00483{bottom:455.210667pt;}
.y28_c00483{bottom:473.758667pt;}
.y29_c00483{bottom:474.968000pt;}
.y2a_c00483{bottom:476.672000pt;}
.y27_c00483{bottom:496.397333pt;}
.y26_c00483{bottom:516.149333pt;}
.y25_c00483{bottom:537.780000pt;}
.y1e_c00483{bottom:556.558667pt;}
.y1f_c00483{bottom:557.181333pt;}
.y20_c00483{bottom:557.612000pt;}
.y21_c00483{bottom:558.282667pt;}
.y22_c00483{bottom:558.800000pt;}
.y23_c00483{bottom:559.272000pt;}
.y24_c00483{bottom:559.713333pt;}
.y14_c00483{bottom:576.481333pt;}
.y15_c00483{bottom:576.897333pt;}
.y16_c00483{bottom:577.158667pt;}
.y17_c00483{bottom:577.433333pt;}
.y18_c00483{bottom:578.117333pt;}
.y19_c00483{bottom:578.454667pt;}
.y1a_c00483{bottom:578.710667pt;}
.y1b_c00483{bottom:579.040000pt;}
.y1c_c00483{bottom:579.474667pt;}
.y1d_c00483{bottom:580.376000pt;}
.ya_c00483{bottom:596.642667pt;}
.yb_c00483{bottom:597.009333pt;}
.yc_c00483{bottom:597.546667pt;}
.yd_c00483{bottom:597.738667pt;}
.ye_c00483{bottom:598.102667pt;}
.yf_c00483{bottom:598.385333pt;}
.y10_c00483{bottom:598.577333pt;}
.y11_c00483{bottom:598.916000pt;}
.y12_c00483{bottom:599.054667pt;}
.y13_c00483{bottom:599.282667pt;}
.y6_c00483{bottom:618.484000pt;}
.y7_c00483{bottom:619.602667pt;}
.y8_c00483{bottom:620.918667pt;}
.y9_c00483{bottom:621.577333pt;}
.y5_c00483{bottom:638.545333pt;}
.y4_c00483{bottom:659.281333pt;}
.y3_c00483{bottom:679.684000pt;}
.y2_c00483{bottom:698.774667pt;}
.y1_c00483{bottom:720.590667pt;}
.h12_c00483{height:18.666667pt;}
.h11_c00483{height:22.400000pt;}
.h17_c00483{height:41.066667pt;}
.h15_c00483{height:43.866667pt;}
.h16_c00483{height:48.533333pt;}
.h14_c00483{height:49.466667pt;}
.hd_c00483{height:54.133333pt;}
.h10_c00483{height:56.002800pt;}
.h9_c00483{height:56.933333pt;}
.h18_c00483{height:57.866667pt;}
.h7_c00483{height:62.533333pt;}
.he_c00483{height:62.536460pt;}
.h3_c00483{height:63.466667pt;}
.hf_c00483{height:63.469840pt;}
.h2_c00483{height:64.400000pt;}
.hb_c00483{height:65.333333pt;}
.h4_c00483{height:66.266667pt;}
.h5_c00483{height:68.133333pt;}
.h6_c00483{height:69.066667pt;}
.hc_c00483{height:70.000000pt;}
.h8_c00483{height:73.733333pt;}
.h13_c00483{height:76.533333pt;}
.ha_c00483{height:84.000000pt;}
.h0_c00483{height:896.400000pt;}
.h1_c00483{height:896.666667pt;}
.w1_c00483{width:622.666667pt;}
.w0_c00483{width:622.800000pt;}
.x0_c00483{left:0.000000pt;}
.x8c_c00483{left:143.040000pt;}
.x7d_c00483{left:150.240000pt;}
.x9a_c00483{left:151.678667pt;}
.x73_c00483{left:161.760000pt;}
.x67_c00483{left:165.657333pt;}
.x92_c00483{left:166.862667pt;}
.x34_c00483{left:171.120000pt;}
.x68_c00483{left:172.921333pt;}
.x2_c00483{left:174.000000pt;}
.x17_c00483{left:175.570667pt;}
.x36_c00483{left:177.356000pt;}
.x45_c00483{left:179.036000pt;}
.x4e_c00483{left:179.996000pt;}
.x6f_c00483{left:183.600000pt;}
.x3_c00483{left:191.040000pt;}
.x74_c00483{left:197.040000pt;}
.x37_c00483{left:201.836000pt;}
.x2d_c00483{left:203.276000pt;}
.x5d_c00483{left:205.300320pt;}
.x69_c00483{left:207.242667pt;}
.xe_c00483{left:210.146667pt;}
.x2b_c00483{left:212.156000pt;}
.x18_c00483{left:213.441333pt;}
.x93_c00483{left:216.064000pt;}
.x27_c00483{left:217.436000pt;}
.x8d_c00483{left:221.040000pt;}
.x86_c00483{left:222.000000pt;}
.x55_c00483{left:225.242667pt;}
.x53_c00483{left:227.036000pt;}
.x38_c00483{left:227.996000pt;}
.x4_c00483{left:231.120000pt;}
.x21_c00483{left:232.664000pt;}
.x9b_c00483{left:233.758667pt;}
.x46_c00483{left:235.676000pt;}
.x19_c00483{left:237.242667pt;}
.x3f_c00483{left:239.276000pt;}
.x7e_c00483{left:241.920000pt;}
.x5e_c00483{left:244.195760pt;}
.x70_c00483{left:246.240000pt;}
.x71_c00483{left:252.240000pt;}
.x94_c00483{left:253.968000pt;}
.x40_c00483{left:255.836000pt;}
.x62_c00483{left:258.121680pt;}
.x56_c00483{left:260.053333pt;}
.x1a_c00483{left:262.238667pt;}
.xf_c00483{left:263.906667pt;}
.x7f_c00483{left:267.360000pt;}
.x6d_c00483{left:268.800000pt;}
.x22_c00483{left:271.781333pt;}
.x9c_c00483{left:273.118667pt;}
.x39_c00483{left:276.476000pt;}
.x54_c00483{left:277.436000pt;}
.x5_c00483{left:278.400000pt;}
.x75_c00483{left:281.520000pt;}
.x10_c00483{left:283.109333pt;}
.x2e_c00483{left:284.156000pt;}
.x57_c00483{left:288.870667pt;}
.x95_c00483{left:291.648000pt;}
.x76_c00483{left:294.720000pt;}
.x9d_c00483{left:296.158667pt;}
.x8e_c00483{left:297.120000pt;}
.x28_c00483{left:298.076000pt;}
.x1_c00483{left:300.480000pt;}
.x72_c00483{left:302.640000pt;}
.x7_c00483{left:305.040000pt;}
.x4f_c00483{left:306.716000pt;}
.x2c_c00483{left:309.836000pt;}
.x6_c00483{left:312.960000pt;}
.x41_c00483{left:313.916000pt;}
.x63_c00483{left:318.329680pt;}
.x11_c00483{left:319.545333pt;}
.x8_c00483{left:322.800000pt;}
.x1b_c00483{left:324.393333pt;}
.x5f_c00483{left:328.633453pt;}
.x77_c00483{left:331.440000pt;}
.x23_c00483{left:332.736000pt;}
.x42_c00483{left:334.556000pt;}
.x50_c00483{left:337.916000pt;}
.x9_c00483{left:339.840000pt;}
.x4a_c00483{left:342.476000pt;}
.x3a_c00483{left:344.156000pt;}
.x58_c00483{left:345.246667pt;}
.x12_c00483{left:347.877333pt;}
.x2f_c00483{left:350.876000pt;}
.x47_c00483{left:352.316000pt;}
.x1c_c00483{left:355.117333pt;}
.x64_c00483{left:356.048347pt;}
.x43_c00483{left:357.836000pt;}
.x6a_c00483{left:359.169333pt;}
.x4b_c00483{left:360.956000pt;}
.x51_c00483{left:362.876000pt;}
.xb_c00483{left:365.485333pt;}
.x13_c00483{left:367.088000pt;}
.x30_c00483{left:370.556000pt;}
.x80_c00483{left:373.200000pt;}
.x96_c00483{left:374.936000pt;}
.x1d_c00483{left:378.394667pt;}
.x24_c00483{left:379.786667pt;}
.xa_c00483{left:380.880000pt;}
.x81_c00483{left:385.680000pt;}
.x60_c00483{left:387.225293pt;}
.x48_c00483{left:389.516000pt;}
.x59_c00483{left:391.048000pt;}
.x97_c00483{left:392.204000pt;}
.x3b_c00483{left:395.996000pt;}
.x6b_c00483{left:397.097333pt;}
.x65_c00483{left:399.001680pt;}
.x14_c00483{left:400.948000pt;}
.x78_c00483{left:405.840000pt;}
.x87_c00483{left:407.280000pt;}
.x1e_c00483{left:408.388000pt;}
.x49_c00483{left:411.596000pt;}
.x6c_c00483{left:413.418667pt;}
.x15_c00483{left:414.849333pt;}
.x3c_c00483{left:416.396000pt;}
.x31_c00483{left:417.596000pt;}
.x44_c00483{left:418.796000pt;}
.x52_c00483{left:420.956000pt;}
.x25_c00483{left:422.714667pt;}
.x9e_c00483{left:425.998667pt;}
.x5a_c00483{left:427.572000pt;}
.x66_c00483{left:431.415013pt;}
.x16_c00483{left:437.620000pt;}
.x4c_c00483{left:439.196000pt;}
.x9f_c00483{left:440.158667pt;}
.xc_c00483{left:442.929333pt;}
.x32_c00483{left:444.716000pt;}
.x3d_c00483{left:446.876000pt;}
.x1f_c00483{left:447.960000pt;}
.x29_c00483{left:450.716000pt;}
.x88_c00483{left:452.400000pt;}
.x4d_c00483{left:457.436000pt;}
.x98_c00483{left:458.685333pt;}
.x26_c00483{left:462.850667pt;}
.x5b_c00483{left:464.062667pt;}
.x61_c00483{left:465.954867pt;}
.x3e_c00483{left:467.996000pt;}
.x2a_c00483{left:469.436000pt;}
.x82_c00483{left:472.320000pt;}
.x8f_c00483{left:474.960000pt;}
.x89_c00483{left:478.320000pt;}
.xa0_c00483{left:480.238667pt;}
.xd_c00483{left:481.660000pt;}
.x79_c00483{left:482.880000pt;}
.x6e_c00483{left:484.080000pt;}
.x33_c00483{left:488.876000pt;}
.xa5_c00483{left:491.040000pt;}
.xa1_c00483{left:492.478667pt;}
.x35_c00483{left:494.765333pt;}
.x5c_c00483{left:498.618667pt;}
.x8a_c00483{left:502.320000pt;}
.x7a_c00483{left:505.680000pt;}
.x90_c00483{left:516.240000pt;}
.x83_c00483{left:521.760000pt;}
.xa2_c00483{left:528.958667pt;}
.x20_c00483{left:529.890667pt;}
.x99_c00483{left:534.757333pt;}
.xa3_c00483{left:536.158667pt;}
.x8b_c00483{left:541.680000pt;}
.x7b_c00483{left:545.520000pt;}
.x84_c00483{left:546.480000pt;}
.x91_c00483{left:547.440000pt;}
.xa4_c00483{left:550.558667pt;}
.x7c_c00483{left:557.280000pt;}
.x85_c00483{left:558.960000pt;}
.xa6_c00483{left:565.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_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_d24df5124729fd0a4ee0fe1e.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;}
.mc4_c00484{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);}
.ma_c00484{transform:matrix(0.030298,-0.000364,0.003000,0.249982,0,0);-ms-transform:matrix(0.030298,-0.000364,0.003000,0.249982,0,0);-webkit-transform:matrix(0.030298,-0.000364,0.003000,0.249982,0,0);}
.m2a_c00484{transform:matrix(0.073465,-0.000882,0.003000,0.249982,0,0);-ms-transform:matrix(0.073465,-0.000882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.073465,-0.000882,0.003000,0.249982,0,0);}
.m35_c00484{transform:matrix(0.097933,-0.001175,0.003000,0.249982,0,0);-ms-transform:matrix(0.097933,-0.001175,0.003000,0.249982,0,0);-webkit-transform:matrix(0.097933,-0.001175,0.003000,0.249982,0,0);}
.m6a_c00484{transform:matrix(0.105065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105065,0.000000,0.000000,0.250000,0,0);}
.mbf_c00484{transform:matrix(0.122135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122135,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130435,0.000000,0.000000,0.250000,0,0);}
.m93_c00484{transform:matrix(0.142385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142385,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.142685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00484{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);}
.mb7_c00484{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.mc3_c00484{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.m8f_c00484{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);}
.m68_c00484{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);}
.mb0_c00484{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);}
.m13_c00484{transform:matrix(0.153769,-0.001845,0.003000,0.249982,0,0);-ms-transform:matrix(0.153769,-0.001845,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153769,-0.001845,0.003000,0.249982,0,0);}
.m99_c00484{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);}
.m96_c00484{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);}
.m78_c00484{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);}
.m9_c00484{transform:matrix(0.159254,-0.001911,0.003000,0.249982,0,0);-ms-transform:matrix(0.159254,-0.001911,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159254,-0.001911,0.003000,0.249982,0,0);}
.mbc_c00484{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);}
.m45_c00484{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);}
.mb8_c00484{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);}
.md_c00484{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);}
.m7f_c00484{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);}
.m75_c00484{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);}
.m6_c00484{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);}
.me4_c00484{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);}
.mbe_c00484{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);}
.m86_c00484{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);}
.mc6_c00484{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);}
.m85_c00484{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);}
.m33_c00484{transform:matrix(0.168223,-0.002019,0.003000,0.249982,0,0);-ms-transform:matrix(0.168223,-0.002019,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168223,-0.002019,0.003000,0.249982,0,0);}
.m14_c00484{transform:matrix(0.168508,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168508,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168508,-0.002022,0.003000,0.249982,0,0);}
.mb3_c00484{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);}
.m79_c00484{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);}
.m64_c00484{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);}
.m4f_c00484{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);}
.mc1_c00484{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);}
.m3a_c00484{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);}
.mb9_c00484{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);}
.mc2_c00484{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);}
.m91_c00484{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);}
.m47_c00484{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);}
.ma7_c00484{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);}
.me3_c00484{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);}
.m3e_c00484{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);}
.ma0_c00484{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);}
.m39_c00484{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);}
.m77_c00484{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);}
.m17_c00484{transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);}
.m9e_c00484{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);}
.me5_c00484{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);}
.m76_c00484{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);}
.m44_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);}
.m8c_c00484{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);}
.m80_c00484{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);}
.m50_c00484{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);}
.m65_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);}
.me6_c00484{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);}
.me9_c00484{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);}
.mc5_c00484{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);}
.mf8_c00484{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);}
.m5e_c00484{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);}
.m2d_c00484{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);}
.m62_c00484{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);}
.m36_c00484{transform:matrix(0.180832,-0.002170,0.003000,0.249982,0,0);-ms-transform:matrix(0.180832,-0.002170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180832,-0.002170,0.003000,0.249982,0,0);}
.me2_c00484{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);}
.m90_c00484{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);}
.maf_c00484{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_c00484{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);}
.m20_c00484{transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);-ms-transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);}
.mb6_c00484{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_c00484{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);}
.m8d_c00484{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);}
.m55_c00484{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);}
.ma8_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);}
.m7c_c00484{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);}
.me0_c00484{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);}
.m2c_c00484{transform:matrix(0.185312,-0.002224,0.003000,0.249982,0,0);-ms-transform:matrix(0.185312,-0.002224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185312,-0.002224,0.003000,0.249982,0,0);}
.m27_c00484{transform:matrix(0.186477,-0.002238,0.003000,0.249982,0,0);-ms-transform:matrix(0.186477,-0.002238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186477,-0.002238,0.003000,0.249982,0,0);}
.m82_c00484{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);}
.m12_c00484{transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);-ms-transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186767,-0.002241,0.003000,0.249982,0,0);}
.m5f_c00484{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);}
.mab_c00484{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);}
.m15_c00484{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);}
.m61_c00484{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);}
.m10_c00484{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);}
.ma4_c00484{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);}
.ma1_c00484{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);}
.ma9_c00484{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);}
.m8a_c00484{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);}
.mda_c00484{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);}
.m98_c00484{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);}
.m23_c00484{transform:matrix(0.192006,-0.002304,0.003000,0.249982,0,0);-ms-transform:matrix(0.192006,-0.002304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192006,-0.002304,0.003000,0.249982,0,0);}
.m63_c00484{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);}
.m25_c00484{transform:matrix(0.192181,-0.002306,0.003000,0.249982,0,0);-ms-transform:matrix(0.192181,-0.002306,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192181,-0.002306,0.003000,0.249982,0,0);}
.m4e_c00484{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);}
.m1f_c00484{transform:matrix(0.193016,-0.002316,0.003000,0.249982,0,0);-ms-transform:matrix(0.193016,-0.002316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193016,-0.002316,0.003000,0.249982,0,0);}
.m11_c00484{transform:matrix(0.193126,-0.002318,0.003000,0.249982,0,0);-ms-transform:matrix(0.193126,-0.002318,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193126,-0.002318,0.003000,0.249982,0,0);}
.mc9_c00484{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);}
.mbd_c00484{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);}
.m22_c00484{transform:matrix(0.193516,-0.002322,0.003000,0.249982,0,0);-ms-transform:matrix(0.193516,-0.002322,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193516,-0.002322,0.003000,0.249982,0,0);}
.m1a_c00484{transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193951,-0.002327,0.003000,0.249982,0,0);}
.m7a_c00484{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);}
.me8_c00484{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);}
.m5_c00484{transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);-ms-transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194701,-0.002336,0.003000,0.249982,0,0);}
.m4c_c00484{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);}
.m7b_c00484{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);}
.m2e_c00484{transform:matrix(0.194941,-0.002339,0.003000,0.249982,0,0);-ms-transform:matrix(0.194941,-0.002339,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194941,-0.002339,0.003000,0.249982,0,0);}
.m97_c00484{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);}
.m3f_c00484{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);}
.mb1_c00484{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);}
.m81_c00484{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);}
.m6b_c00484{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);}
.mad_c00484{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);}
.mba_c00484{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);}
.m8b_c00484{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);}
.m32_c00484{transform:matrix(0.198276,-0.002379,0.003000,0.249982,0,0);-ms-transform:matrix(0.198276,-0.002379,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198276,-0.002379,0.003000,0.249982,0,0);}
.med_c00484{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);}
.m2_c00484{transform:matrix(0.199346,-0.002392,0.003000,0.249982,0,0);-ms-transform:matrix(0.199346,-0.002392,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199346,-0.002392,0.003000,0.249982,0,0);}
.mae_c00484{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);}
.me_c00484{transform:matrix(0.200056,-0.002401,0.003000,0.249982,0,0);-ms-transform:matrix(0.200056,-0.002401,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200056,-0.002401,0.003000,0.249982,0,0);}
.ma3_c00484{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);}
.mb5_c00484{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);}
.m24_c00484{transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);-ms-transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201870,-0.002422,0.003000,0.249982,0,0);}
.mfb_c00484{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);}
.m16_c00484{transform:matrix(0.203295,-0.002440,0.003000,0.249982,0,0);-ms-transform:matrix(0.203295,-0.002440,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203295,-0.002440,0.003000,0.249982,0,0);}
.mf9_c00484{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);}
.m19_c00484{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);}
.m6e_c00484{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);}
.mf1_c00484{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);}
.m2b_c00484{transform:matrix(0.204910,-0.002459,0.003000,0.249982,0,0);-ms-transform:matrix(0.204910,-0.002459,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204910,-0.002459,0.003000,0.249982,0,0);}
.mdc_c00484{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);}
.mdf_c00484{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);}
.m4b_c00484{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);}
.m9a_c00484{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);}
.m95_c00484{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);}
.mc0_c00484{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);}
.m54_c00484{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);}
.m5b_c00484{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);}
.mf7_c00484{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);}
.m94_c00484{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);}
.mac_c00484{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);}
.mdb_c00484{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);}
.m51_c00484{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);}
.m46_c00484{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);}
.m70_c00484{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);}
.m9d_c00484{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);}
.m52_c00484{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);}
.mbb_c00484{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);}
.m8_c00484{transform:matrix(0.212885,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212885,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212885,-0.002555,0.003000,0.249982,0,0);}
.md3_c00484{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);}
.m18_c00484{transform:matrix(0.213250,-0.002559,0.003000,0.249982,0,0);-ms-transform:matrix(0.213250,-0.002559,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213250,-0.002559,0.003000,0.249982,0,0);}
.m67_c00484{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);}
.ma2_c00484{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);}
.md4_c00484{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);}
.mde_c00484{transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216545,0.000000,0.000000,0.250000,0,0);}
.md8_c00484{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);}
.m87_c00484{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);}
.m69_c00484{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);}
.m88_c00484{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);}
.m66_c00484{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.mf2_c00484{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);}
.m1c_c00484{transform:matrix(0.219369,-0.002632,0.003000,0.249982,0,0);-ms-transform:matrix(0.219369,-0.002632,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219369,-0.002632,0.003000,0.249982,0,0);}
.mec_c00484{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);}
.mfa_c00484{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);}
.m1b_c00484{transform:matrix(0.221219,-0.002655,0.003000,0.249982,0,0);-ms-transform:matrix(0.221219,-0.002655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221219,-0.002655,0.003000,0.249982,0,0);}
.mcf_c00484{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);}
.m5c_c00484{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);}
.m9f_c00484{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);}
.m73_c00484{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);}
.mc7_c00484{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);}
.mf4_c00484{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.mc8_c00484{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);}
.mb2_c00484{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);}
.m28_c00484{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);}
.m21_c00484{transform:matrix(0.224734,-0.002697,0.003000,0.249982,0,0);-ms-transform:matrix(0.224734,-0.002697,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224734,-0.002697,0.003000,0.249982,0,0);}
.m59_c00484{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);}
.mef_c00484{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);}
.m49_c00484{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);}
.m41_c00484{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);}
.ma5_c00484{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);}
.m26_c00484{transform:matrix(0.226894,-0.002723,0.003000,0.249982,0,0);-ms-transform:matrix(0.226894,-0.002723,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226894,-0.002723,0.003000,0.249982,0,0);}
.m57_c00484{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);}
.maa_c00484{transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);}
.m9c_c00484{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);}
.m43_c00484{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);}
.mea_c00484{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);}
.m1e_c00484{transform:matrix(0.230563,-0.002767,0.003000,0.249982,0,0);-ms-transform:matrix(0.230563,-0.002767,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230563,-0.002767,0.003000,0.249982,0,0);}
.md0_c00484{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);}
.m4a_c00484{transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233265,0.000000,0.000000,0.250000,0,0);}
.m92_c00484{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);}
.mcb_c00484{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);}
.m60_c00484{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);}
.mdd_c00484{transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);}
.mce_c00484{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);}
.m7e_c00484{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);}
.m40_c00484{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);}
.md7_c00484{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);}
.m4d_c00484{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);}
.m74_c00484{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.mb4_c00484{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);}
.m1d_c00484{transform:matrix(0.245602,-0.002947,0.003000,0.249982,0,0);-ms-transform:matrix(0.245602,-0.002947,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245602,-0.002947,0.003000,0.249982,0,0);}
.m48_c00484{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);}
.m3c_c00484{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.me7_c00484{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.249032,-0.002988,0.003000,0.249982,0,0);-ms-transform:matrix(0.249032,-0.002988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249032,-0.002988,0.003000,0.249982,0,0);}
.m2f_c00484{transform:matrix(0.252687,-0.003032,0.003000,0.249982,0,0);-ms-transform:matrix(0.252687,-0.003032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252687,-0.003032,0.003000,0.249982,0,0);}
.m34_c00484{transform:matrix(0.254727,-0.003057,0.003000,0.249982,0,0);-ms-transform:matrix(0.254727,-0.003057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254727,-0.003057,0.003000,0.249982,0,0);}
.md9_c00484{transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{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);}
.mcc_c00484{transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.263236,-0.003159,0.003000,0.249982,0,0);-ms-transform:matrix(0.263236,-0.003159,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263236,-0.003159,0.003000,0.249982,0,0);}
.meb_c00484{transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263490,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00484{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);}
.m38_c00484{transform:matrix(0.263951,-0.003167,0.003000,0.249982,0,0);-ms-transform:matrix(0.263951,-0.003167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263951,-0.003167,0.003000,0.249982,0,0);}
.m6f_c00484{transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.271995,-0.003264,0.003000,0.249982,0,0);-ms-transform:matrix(0.271995,-0.003264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271995,-0.003264,0.003000,0.249982,0,0);}
.mcd_c00484{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);}
.m56_c00484{transform:matrix(0.275405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275405,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);}
.mf6_c00484{transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);}
.md6_c00484{transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.289039,-0.003468,0.003000,0.249982,0,0);-ms-transform:matrix(0.289039,-0.003468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.289039,-0.003468,0.003000,0.249982,0,0);}
.md2_c00484{transform:matrix(0.293340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293340,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297940,0.000000,0.000000,0.250000,0,0);}
.m9b_c00484{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);}
.mf5_c00484{transform:matrix(0.315535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315535,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.318047,-0.003817,0.003000,0.249982,0,0);-ms-transform:matrix(0.318047,-0.003817,0.003000,0.249982,0,0);-webkit-transform:matrix(0.318047,-0.003817,0.003000,0.249982,0,0);}
.m53_c00484{transform:matrix(0.323690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323690,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{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_c00484{transform:matrix(0.345930,-0.004151,0.003000,0.249982,0,0);-ms-transform:matrix(0.345930,-0.004151,0.003000,0.249982,0,0);-webkit-transform:matrix(0.345930,-0.004151,0.003000,0.249982,0,0);}
.me1_c00484{transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347780,0.000000,0.000000,0.250000,0,0);}
.mfc_c00484{transform:matrix(0.358325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.362480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362480,0.000000,0.000000,0.250000,0,0);}
.mf0_c00484{transform:matrix(0.365185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365185,0.000000,0.000000,0.250000,0,0);}
.md1_c00484{transform:matrix(0.381855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381855,0.000000,0.000000,0.250000,0,0);}
.mca_c00484{transform:matrix(0.390100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390100,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.407475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407475,0.000000,0.000000,0.250000,0,0);}
.mee_c00484{transform:matrix(0.483825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483825,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.507023,-0.006084,0.003000,0.249982,0,0);-ms-transform:matrix(0.507023,-0.006084,0.003000,0.249982,0,0);-webkit-transform:matrix(0.507023,-0.006084,0.003000,0.249982,0,0);}
.m3_c00484{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);}
.mf3_c00484{transform:matrix(0.578620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578620,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.603127,-0.007238,0.003000,0.249982,0,0);-ms-transform:matrix(0.603127,-0.007238,0.003000,0.249982,0,0);-webkit-transform:matrix(0.603127,-0.007238,0.003000,0.249982,0,0);}
.m7_c00484{transform:matrix(0.647963,-0.007776,0.003000,0.249982,0,0);-ms-transform:matrix(0.647963,-0.007776,0.003000,0.249982,0,0);-webkit-transform:matrix(0.647963,-0.007776,0.003000,0.249982,0,0);}
.mfd_c00484{transform:matrix(0.717845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717845,0.000000,0.000000,0.250000,0,0);}
.md5_c00484{transform:matrix(0.750545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750545,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.792373,-0.009508,0.003000,0.249982,0,0);-ms-transform:matrix(0.792373,-0.009508,0.003000,0.249982,0,0);-webkit-transform:matrix(0.792373,-0.009508,0.003000,0.249982,0,0);}
.m4_c00484{transform:matrix(1.117505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117505,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;}
.fsf_c00484{font-size:18.900000px;}
.fs1_c00484{font-size:22.050000px;}
.fs7_c00484{font-size:30.450000px;}
.fs12_c00484{font-size:44.100000px;}
.fs14_c00484{font-size:51.450000px;}
.fs13_c00484{font-size:52.500000px;}
.fs10_c00484{font-size:53.550000px;}
.fs11_c00484{font-size:54.600000px;}
.fs6_c00484{font-size:61.954460px;}
.fsc_c00484{font-size:63.000000px;}
.fsb_c00484{font-size:65.100000px;}
.fs9_c00484{font-size:66.150000px;}
.fs5_c00484{font-size:66.154763px;}
.fsa_c00484{font-size:69.300000px;}
.fs3_c00484{font-size:70.355065px;}
.fsd_c00484{font-size:71.400000px;}
.fse_c00484{font-size:72.450000px;}
.fs8_c00484{font-size:73.500000px;}
.fs4_c00484{font-size:73.505292px;}
.fs2_c00484{font-size:76.655519px;}
.fs0_c00484{font-size:88.206350px;}
.y0_c00484{bottom:0.000000px;}
.y50_c00484{bottom:163.804500px;}
.y4f_c00484{bottom:181.473000px;}
.y4e_c00484{bottom:199.266000px;}
.y4d_c00484{bottom:217.828500px;}
.y4c_c00484{bottom:234.694500px;}
.y4b_c00484{bottom:252.805500px;}
.y4a_c00484{bottom:304.843500px;}
.y49_c00484{bottom:328.278000px;}
.y48_c00484{bottom:350.644500px;}
.y47_c00484{bottom:373.791000px;}
.y46_c00484{bottom:382.860000px;}
.y45_c00484{bottom:396.354000px;}
.y44_c00484{bottom:419.758500px;}
.y43_c00484{bottom:443.008500px;}
.y42_c00484{bottom:463.834500px;}
.y41_c00484{bottom:487.287000px;}
.y40_c00484{bottom:515.160000px;}
.y3e_c00484{bottom:537.291000px;}
.y3d_c00484{bottom:561.057000px;}
.y3c_c00484{bottom:583.899000px;}
.y3b_c00484{bottom:606.493500px;}
.y3f_c00484{bottom:607.207500px;}
.y3a_c00484{bottom:615.060000px;}
.y31_c00484{bottom:672.561126px;}
.y32_c00484{bottom:673.190010px;}
.y33_c00484{bottom:673.611396px;}
.y34_c00484{bottom:673.867656px;}
.y35_c00484{bottom:674.258808px;}
.y36_c00484{bottom:674.411346px;}
.y37_c00484{bottom:674.632242px;}
.y38_c00484{bottom:675.399420px;}
.y39_c00484{bottom:676.022640px;}
.y2b_c00484{bottom:695.512842px;}
.y2c_c00484{bottom:696.433056px;}
.y2d_c00484{bottom:697.187850px;}
.y2e_c00484{bottom:697.686504px;}
.y2f_c00484{bottom:698.257284px;}
.y30_c00484{bottom:698.953992px;}
.y22_c00484{bottom:717.117732px;}
.y23_c00484{bottom:717.554712px;}
.y24_c00484{bottom:717.903186px;}
.y25_c00484{bottom:719.062722px;}
.y26_c00484{bottom:719.945364px;}
.y27_c00484{bottom:720.321666px;}
.y28_c00484{bottom:721.353666px;}
.y29_c00484{bottom:722.047266px;}
.y2a_c00484{bottom:723.313470px;}
.y19_c00484{bottom:740.608836px;}
.y1a_c00484{bottom:741.094056px;}
.y1b_c00484{bottom:741.834870px;}
.y1c_c00484{bottom:742.073328px;}
.y1d_c00484{bottom:743.413872px;}
.y1e_c00484{bottom:744.121638px;}
.y1f_c00484{bottom:744.454308px;}
.y20_c00484{bottom:745.097880px;}
.y21_c00484{bottom:745.433418px;}
.yf_c00484{bottom:763.561308px;}
.y10_c00484{bottom:763.929756px;}
.y11_c00484{bottom:764.778990px;}
.y12_c00484{bottom:765.282132px;}
.y13_c00484{bottom:765.658560px;}
.y14_c00484{bottom:766.604856px;}
.y15_c00484{bottom:767.030610px;}
.y16_c00484{bottom:767.569620px;}
.y17_c00484{bottom:768.109314px;}
.y18_c00484{bottom:768.343752px;}
.y5_c00484{bottom:786.511500px;}
.y6_c00484{bottom:787.030098px;}
.y7_c00484{bottom:787.855326px;}
.y8_c00484{bottom:788.601534px;}
.y9_c00484{bottom:788.825382px;}
.ya_c00484{bottom:788.992512px;}
.yb_c00484{bottom:789.186894px;}
.yc_c00484{bottom:789.912528px;}
.yd_c00484{bottom:790.428408px;}
.ye_c00484{bottom:790.924524px;}
.y4_c00484{bottom:842.526000px;}
.y1_c00484{bottom:863.688000px;}
.y2_c00484{bottom:866.311950px;}
.y3_c00484{bottom:867.209448px;}
.h11_c00484{height:18.900000px;}
.h3_c00484{height:22.050000px;}
.h9_c00484{height:30.450000px;}
.h14_c00484{height:44.100000px;}
.h16_c00484{height:51.450000px;}
.h15_c00484{height:52.500000px;}
.h12_c00484{height:53.550000px;}
.h13_c00484{height:54.600000px;}
.h8_c00484{height:61.954460px;}
.he_c00484{height:63.000000px;}
.hd_c00484{height:65.100000px;}
.hb_c00484{height:66.150000px;}
.h7_c00484{height:66.154763px;}
.hc_c00484{height:69.300000px;}
.h5_c00484{height:70.355065px;}
.hf_c00484{height:71.400000px;}
.h10_c00484{height:72.450000px;}
.ha_c00484{height:73.500000px;}
.h6_c00484{height:73.505292px;}
.h4_c00484{height:76.655519px;}
.h2_c00484{height:88.206350px;}
.h1_c00484{height:1005.000000px;}
.h0_c00484{height:1005.150000px;}
.w0_c00484{width:715.200000px;}
.w1_c00484{width:715.500000px;}
.x0_c00484{left:0.000000px;}
.x4_c00484{left:104.220000px;}
.x7b_c00484{left:108.810000px;}
.x8b_c00484{left:120.960000px;}
.x5_c00484{left:131.220000px;}
.x7c_c00484{left:135.810000px;}
.x6_c00484{left:139.215000px;}
.x2f_c00484{left:140.400000px;}
.x44_c00484{left:141.480000px;}
.x58_c00484{left:142.830000px;}
.x8c_c00484{left:147.150000px;}
.x84_c00484{left:148.230000px;}
.x99_c00484{left:152.010000px;}
.x72_c00484{left:154.440000px;}
.x91_c00484{left:155.790000px;}
.x10_c00484{left:163.552446px;}
.x73_c00484{left:165.780000px;}
.x30_c00484{left:166.860000px;}
.x19_c00484{left:168.102090px;}
.x65_c00484{left:171.720000px;}
.x45_c00484{left:173.340000px;}
.x5f_c00484{left:174.690000px;}
.x59_c00484{left:177.660000px;}
.x7_c00484{left:182.431500px;}
.x1_c00484{left:183.852000px;}
.x1f_c00484{left:184.935264px;}
.x52_c00484{left:186.300000px;}
.x74_c00484{left:188.460000px;}
.x36_c00484{left:193.050000px;}
.x4d_c00484{left:194.940000px;}
.x9a_c00484{left:196.830000px;}
.x5a_c00484{left:200.340000px;}
.x28_c00484{left:202.376256px;}
.x3a_c00484{left:203.850000px;}
.x60_c00484{left:207.900000px;}
.x92_c00484{left:209.520000px;}
.x1a_c00484{left:211.708980px;}
.x85_c00484{left:214.650000px;}
.x24_c00484{left:215.894826px;}
.x37_c00484{left:217.620000px;}
.x11_c00484{left:220.194912px;}
.x6e_c00484{left:223.560000px;}
.x1b_c00484{left:225.704634px;}
.x61_c00484{left:230.850000px;}
.x46_c00484{left:232.470000px;}
.x6a_c00484{left:238.950000px;}
.x3f_c00484{left:242.730000px;}
.x29_c00484{left:244.492764px;}
.x38_c00484{left:246.240000px;}
.x7d_c00484{left:248.130000px;}
.x8_c00484{left:251.200500px;}
.x12_c00484{left:253.747206px;}
.x31_c00484{left:257.580000px;}
.x5b_c00484{left:259.740000px;}
.x9b_c00484{left:262.170000px;}
.x47_c00484{left:263.520000px;}
.x53_c00484{left:268.650000px;}
.x2a_c00484{left:270.098376px;}
.x4e_c00484{left:272.430000px;}
.x40_c00484{left:273.510000px;}
.x6b_c00484{left:274.860000px;}
.x62_c00484{left:276.480000px;}
.x13_c00484{left:278.865306px;}
.x5c_c00484{left:283.230000px;}
.x3e_c00484{left:289.170000px;}
.x75_c00484{left:292.410000px;}
.x48_c00484{left:295.380000px;}
.x1c_c00484{left:304.536900px;}
.x3b_c00484{left:306.720000px;}
.x2b_c00484{left:309.195312px;}
.x7e_c00484{left:311.040000px;}
.x54_c00484{left:312.120000px;}
.x9_c00484{left:313.384500px;}
.x25_c00484{left:320.348826px;}
.x32_c00484{left:321.840000px;}
.x93_c00484{left:322.920000px;}
.x2c_c00484{left:324.407172px;}
.x41_c00484{left:325.620000px;}
.x20_c00484{left:327.216732px;}
.xa_c00484{left:332.038500px;}
.x6c_c00484{left:333.720000px;}
.x63_c00484{left:338.040000px;}
.x55_c00484{left:339.660000px;}
.x49_c00484{left:340.740000px;}
.x14_c00484{left:341.971038px;}
.x8d_c00484{left:343.440000px;}
.xb_c00484{left:345.966000px;}
.x66_c00484{left:348.570000px;}
.x7f_c00484{left:350.190000px;}
.x6d_c00484{left:355.590000px;}
.x39_c00484{left:356.940000px;}
.x64_c00484{left:358.020000px;}
.x5d_c00484{left:359.370000px;}
.x33_c00484{left:360.990000px;}
.xc_c00484{left:362.164500px;}
.x1d_c00484{left:365.736228px;}
.x26_c00484{left:367.913826px;}
.x15_c00484{left:370.324512px;}
.x76_c00484{left:372.060000px;}
.x8e_c00484{left:375.840000px;}
.x67_c00484{left:380.430000px;}
.x4a_c00484{left:382.050000px;}
.x42_c00484{left:383.940000px;}
.x5e_c00484{left:386.910000px;}
.x21_c00484{left:387.963096px;}
.x8f_c00484{left:389.610000px;}
.x6f_c00484{left:391.500000px;}
.x4f_c00484{left:392.850000px;}
.x77_c00484{left:393.930000px;}
.x80_c00484{left:398.790000px;}
.x68_c00484{left:400.950000px;}
.x2_c00484{left:402.514500px;}
.x1e_c00484{left:403.614960px;}
.x16_c00484{left:406.240716px;}
.x56_c00484{left:407.700000px;}
.x90_c00484{left:408.780000px;}
.x70_c00484{left:412.830000px;}
.x34_c00484{left:414.450000px;}
.x50_c00484{left:417.960000px;}
.xd_c00484{left:422.634000px;}
.x27_c00484{left:425.972826px;}
.x81_c00484{left:427.410000px;}
.x22_c00484{left:428.760648px;}
.x86_c00484{left:429.840000px;}
.x43_c00484{left:431.190000px;}
.x87_c00484{left:436.320000px;}
.x82_c00484{left:437.400000px;}
.x17_c00484{left:442.213920px;}
.x94_c00484{left:451.710000px;}
.x35_c00484{left:453.060000px;}
.x71_c00484{left:455.490000px;}
.x18_c00484{left:457.874862px;}
.x4b_c00484{left:460.620000px;}
.xe_c00484{left:465.624000px;}
.x57_c00484{left:467.370000px;}
.x2e_c00484{left:470.880000px;}
.x3c_c00484{left:474.930000px;}
.x3_c00484{left:477.306000px;}
.x69_c00484{left:479.520000px;}
.x95_c00484{left:483.300000px;}
.x2d_c00484{left:485.560542px;}
.x96_c00484{left:487.350000px;}
.x78_c00484{left:501.120000px;}
.x23_c00484{left:503.273184px;}
.xf_c00484{left:506.967000px;}
.x3d_c00484{left:510.030000px;}
.x88_c00484{left:515.700000px;}
.x51_c00484{left:517.860000px;}
.x83_c00484{left:524.340000px;}
.x79_c00484{left:525.420000px;}
.x97_c00484{left:531.630000px;}
.x89_c00484{left:548.640000px;}
.x4c_c00484{left:554.850000px;}
.x98_c00484{left:559.440000px;}
.x7a_c00484{left:565.650000px;}
.x8a_c00484{left:576.180000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fsf_c00484{font-size:16.800000pt;}
.fs1_c00484{font-size:19.600000pt;}
.fs7_c00484{font-size:27.066667pt;}
.fs12_c00484{font-size:39.200000pt;}
.fs14_c00484{font-size:45.733333pt;}
.fs13_c00484{font-size:46.666667pt;}
.fs10_c00484{font-size:47.600000pt;}
.fs11_c00484{font-size:48.533333pt;}
.fs6_c00484{font-size:55.070631pt;}
.fsc_c00484{font-size:56.000000pt;}
.fsb_c00484{font-size:57.866667pt;}
.fs9_c00484{font-size:58.800000pt;}
.fs5_c00484{font-size:58.804233pt;}
.fsa_c00484{font-size:61.600000pt;}
.fs3_c00484{font-size:62.537836pt;}
.fsd_c00484{font-size:63.466667pt;}
.fse_c00484{font-size:64.400000pt;}
.fs8_c00484{font-size:65.333333pt;}
.fs4_c00484{font-size:65.338037pt;}
.fs2_c00484{font-size:68.138239pt;}
.fs0_c00484{font-size:78.405645pt;}
.y0_c00484{bottom:0.000000pt;}
.y50_c00484{bottom:145.604000pt;}
.y4f_c00484{bottom:161.309333pt;}
.y4e_c00484{bottom:177.125333pt;}
.y4d_c00484{bottom:193.625333pt;}
.y4c_c00484{bottom:208.617333pt;}
.y4b_c00484{bottom:224.716000pt;}
.y4a_c00484{bottom:270.972000pt;}
.y49_c00484{bottom:291.802667pt;}
.y48_c00484{bottom:311.684000pt;}
.y47_c00484{bottom:332.258667pt;}
.y46_c00484{bottom:340.320000pt;}
.y45_c00484{bottom:352.314667pt;}
.y44_c00484{bottom:373.118667pt;}
.y43_c00484{bottom:393.785333pt;}
.y42_c00484{bottom:412.297333pt;}
.y41_c00484{bottom:433.144000pt;}
.y40_c00484{bottom:457.920000pt;}
.y3e_c00484{bottom:477.592000pt;}
.y3d_c00484{bottom:498.717333pt;}
.y3c_c00484{bottom:519.021333pt;}
.y3b_c00484{bottom:539.105333pt;}
.y3f_c00484{bottom:539.740000pt;}
.y3a_c00484{bottom:546.720000pt;}
.y31_c00484{bottom:597.832112pt;}
.y32_c00484{bottom:598.391120pt;}
.y33_c00484{bottom:598.765685pt;}
.y34_c00484{bottom:598.993472pt;}
.y35_c00484{bottom:599.341163pt;}
.y36_c00484{bottom:599.476752pt;}
.y37_c00484{bottom:599.673104pt;}
.y38_c00484{bottom:600.355040pt;}
.y39_c00484{bottom:600.909013pt;}
.y2b_c00484{bottom:618.233637pt;}
.y2c_c00484{bottom:619.051605pt;}
.y2d_c00484{bottom:619.722533pt;}
.y2e_c00484{bottom:620.165781pt;}
.y2f_c00484{bottom:620.673141pt;}
.y30_c00484{bottom:621.292437pt;}
.y22_c00484{bottom:637.437984pt;}
.y23_c00484{bottom:637.826411pt;}
.y24_c00484{bottom:638.136165pt;}
.y25_c00484{bottom:639.166864pt;}
.y26_c00484{bottom:639.951435pt;}
.y27_c00484{bottom:640.285925pt;}
.y28_c00484{bottom:641.203259pt;}
.y29_c00484{bottom:641.819792pt;}
.y2a_c00484{bottom:642.945307pt;}
.y19_c00484{bottom:658.318965pt;}
.y1a_c00484{bottom:658.750272pt;}
.y1b_c00484{bottom:659.408773pt;}
.y1c_c00484{bottom:659.620736pt;}
.y1d_c00484{bottom:660.812331pt;}
.y1e_c00484{bottom:661.441456pt;}
.y1f_c00484{bottom:661.737163pt;}
.y20_c00484{bottom:662.309227pt;}
.y21_c00484{bottom:662.607483pt;}
.yf_c00484{bottom:678.721163pt;}
.y10_c00484{bottom:679.048672pt;}
.y11_c00484{bottom:679.803547pt;}
.y12_c00484{bottom:680.250784pt;}
.y13_c00484{bottom:680.585387pt;}
.y14_c00484{bottom:681.426539pt;}
.y15_c00484{bottom:681.804987pt;}
.y16_c00484{bottom:682.284107pt;}
.y17_c00484{bottom:682.763835pt;}
.y18_c00484{bottom:682.972224pt;}
.y5_c00484{bottom:699.121333pt;}
.y6_c00484{bottom:699.582309pt;}
.y7_c00484{bottom:700.315845pt;}
.y8_c00484{bottom:700.979141pt;}
.y9_c00484{bottom:701.178117pt;}
.ya_c00484{bottom:701.326677pt;}
.yb_c00484{bottom:701.499461pt;}
.yc_c00484{bottom:702.144469pt;}
.yd_c00484{bottom:702.603029pt;}
.ye_c00484{bottom:703.044021pt;}
.y4_c00484{bottom:748.912000pt;}
.y1_c00484{bottom:767.722667pt;}
.y2_c00484{bottom:770.055067pt;}
.y3_c00484{bottom:770.852843pt;}
.h11_c00484{height:16.800000pt;}
.h3_c00484{height:19.600000pt;}
.h9_c00484{height:27.066667pt;}
.h14_c00484{height:39.200000pt;}
.h16_c00484{height:45.733333pt;}
.h15_c00484{height:46.666667pt;}
.h12_c00484{height:47.600000pt;}
.h13_c00484{height:48.533333pt;}
.h8_c00484{height:55.070631pt;}
.he_c00484{height:56.000000pt;}
.hd_c00484{height:57.866667pt;}
.hb_c00484{height:58.800000pt;}
.h7_c00484{height:58.804233pt;}
.hc_c00484{height:61.600000pt;}
.h5_c00484{height:62.537836pt;}
.hf_c00484{height:63.466667pt;}
.h10_c00484{height:64.400000pt;}
.ha_c00484{height:65.333333pt;}
.h6_c00484{height:65.338037pt;}
.h4_c00484{height:68.138239pt;}
.h2_c00484{height:78.405645pt;}
.h1_c00484{height:893.333333pt;}
.h0_c00484{height:893.466667pt;}
.w0_c00484{width:635.733333pt;}
.w1_c00484{width:636.000000pt;}
.x0_c00484{left:0.000000pt;}
.x4_c00484{left:92.640000pt;}
.x7b_c00484{left:96.720000pt;}
.x8b_c00484{left:107.520000pt;}
.x5_c00484{left:116.640000pt;}
.x7c_c00484{left:120.720000pt;}
.x6_c00484{left:123.746667pt;}
.x2f_c00484{left:124.800000pt;}
.x44_c00484{left:125.760000pt;}
.x58_c00484{left:126.960000pt;}
.x8c_c00484{left:130.800000pt;}
.x84_c00484{left:131.760000pt;}
.x99_c00484{left:135.120000pt;}
.x72_c00484{left:137.280000pt;}
.x91_c00484{left:138.480000pt;}
.x10_c00484{left:145.379952pt;}
.x73_c00484{left:147.360000pt;}
.x30_c00484{left:148.320000pt;}
.x19_c00484{left:149.424080pt;}
.x65_c00484{left:152.640000pt;}
.x45_c00484{left:154.080000pt;}
.x5f_c00484{left:155.280000pt;}
.x59_c00484{left:157.920000pt;}
.x7_c00484{left:162.161333pt;}
.x1_c00484{left:163.424000pt;}
.x1f_c00484{left:164.386901pt;}
.x52_c00484{left:165.600000pt;}
.x74_c00484{left:167.520000pt;}
.x36_c00484{left:171.600000pt;}
.x4d_c00484{left:173.280000pt;}
.x9a_c00484{left:174.960000pt;}
.x5a_c00484{left:178.080000pt;}
.x28_c00484{left:179.890005pt;}
.x3a_c00484{left:181.200000pt;}
.x60_c00484{left:184.800000pt;}
.x92_c00484{left:186.240000pt;}
.x1a_c00484{left:188.185760pt;}
.x85_c00484{left:190.800000pt;}
.x24_c00484{left:191.906512pt;}
.x37_c00484{left:193.440000pt;}
.x11_c00484{left:195.728811pt;}
.x6e_c00484{left:198.720000pt;}
.x1b_c00484{left:200.626341pt;}
.x61_c00484{left:205.200000pt;}
.x46_c00484{left:206.640000pt;}
.x6a_c00484{left:212.400000pt;}
.x3f_c00484{left:215.760000pt;}
.x29_c00484{left:217.326901pt;}
.x38_c00484{left:218.880000pt;}
.x7d_c00484{left:220.560000pt;}
.x8_c00484{left:223.289333pt;}
.x12_c00484{left:225.553072pt;}
.x31_c00484{left:228.960000pt;}
.x5b_c00484{left:230.880000pt;}
.x9b_c00484{left:233.040000pt;}
.x47_c00484{left:234.240000pt;}
.x53_c00484{left:238.800000pt;}
.x2a_c00484{left:240.087445pt;}
.x4e_c00484{left:242.160000pt;}
.x40_c00484{left:243.120000pt;}
.x6b_c00484{left:244.320000pt;}
.x62_c00484{left:245.760000pt;}
.x13_c00484{left:247.880272pt;}
.x5c_c00484{left:251.760000pt;}
.x3e_c00484{left:257.040000pt;}
.x75_c00484{left:259.920000pt;}
.x48_c00484{left:262.560000pt;}
.x1c_c00484{left:270.699467pt;}
.x3b_c00484{left:272.640000pt;}
.x2b_c00484{left:274.840277pt;}
.x7e_c00484{left:276.480000pt;}
.x54_c00484{left:277.440000pt;}
.x9_c00484{left:278.564000pt;}
.x25_c00484{left:284.754512pt;}
.x32_c00484{left:286.080000pt;}
.x93_c00484{left:287.040000pt;}
.x2c_c00484{left:288.361931pt;}
.x41_c00484{left:289.440000pt;}
.x20_c00484{left:290.859317pt;}
.xa_c00484{left:295.145333pt;}
.x6c_c00484{left:296.640000pt;}
.x63_c00484{left:300.480000pt;}
.x55_c00484{left:301.920000pt;}
.x49_c00484{left:302.880000pt;}
.x14_c00484{left:303.974256pt;}
.x8d_c00484{left:305.280000pt;}
.xb_c00484{left:307.525333pt;}
.x66_c00484{left:309.840000pt;}
.x7f_c00484{left:311.280000pt;}
.x6d_c00484{left:316.080000pt;}
.x39_c00484{left:317.280000pt;}
.x64_c00484{left:318.240000pt;}
.x5d_c00484{left:319.440000pt;}
.x33_c00484{left:320.880000pt;}
.xc_c00484{left:321.924000pt;}
.x1d_c00484{left:325.098869pt;}
.x26_c00484{left:327.034512pt;}
.x15_c00484{left:329.177344pt;}
.x76_c00484{left:330.720000pt;}
.x8e_c00484{left:334.080000pt;}
.x67_c00484{left:338.160000pt;}
.x4a_c00484{left:339.600000pt;}
.x42_c00484{left:341.280000pt;}
.x5e_c00484{left:343.920000pt;}
.x21_c00484{left:344.856085pt;}
.x8f_c00484{left:346.320000pt;}
.x6f_c00484{left:348.000000pt;}
.x4f_c00484{left:349.200000pt;}
.x77_c00484{left:350.160000pt;}
.x80_c00484{left:354.480000pt;}
.x68_c00484{left:356.400000pt;}
.x2_c00484{left:357.790667pt;}
.x1e_c00484{left:358.768853pt;}
.x16_c00484{left:361.102859pt;}
.x56_c00484{left:362.400000pt;}
.x90_c00484{left:363.360000pt;}
.x70_c00484{left:366.960000pt;}
.x34_c00484{left:368.400000pt;}
.x50_c00484{left:371.520000pt;}
.xd_c00484{left:375.674667pt;}
.x27_c00484{left:378.642512pt;}
.x81_c00484{left:379.920000pt;}
.x22_c00484{left:381.120576pt;}
.x86_c00484{left:382.080000pt;}
.x43_c00484{left:383.280000pt;}
.x87_c00484{left:387.840000pt;}
.x82_c00484{left:388.800000pt;}
.x17_c00484{left:393.079040pt;}
.x94_c00484{left:401.520000pt;}
.x35_c00484{left:402.720000pt;}
.x71_c00484{left:404.880000pt;}
.x18_c00484{left:406.999877pt;}
.x4b_c00484{left:409.440000pt;}
.xe_c00484{left:413.888000pt;}
.x57_c00484{left:415.440000pt;}
.x2e_c00484{left:418.560000pt;}
.x3c_c00484{left:422.160000pt;}
.x3_c00484{left:424.272000pt;}
.x69_c00484{left:426.240000pt;}
.x95_c00484{left:429.600000pt;}
.x2d_c00484{left:431.609371pt;}
.x96_c00484{left:433.200000pt;}
.x78_c00484{left:445.440000pt;}
.x23_c00484{left:447.353941pt;}
.xf_c00484{left:450.637333pt;}
.x3d_c00484{left:453.360000pt;}
.x88_c00484{left:458.400000pt;}
.x51_c00484{left:460.320000pt;}
.x83_c00484{left:466.080000pt;}
.x79_c00484{left:467.040000pt;}
.x97_c00484{left:472.560000pt;}
.x89_c00484{left:487.680000pt;}
.x4c_c00484{left:493.200000pt;}
.x98_c00484{left:497.280000pt;}
.x7a_c00484{left:502.800000pt;}
.x8a_c00484{left:512.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m84_c00485{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m61_c00485{transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);}
.md6_c00485{transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);}
.m90_c00485{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);}
.mc8_c00485{transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018920,0.000000,0.000000,0.250000,0,0);}
.m4e_c00485{transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);}
.m73_c00485{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);}
.mde_c00485{transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);}
.m5f_c00485{transform:matrix(0.077980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077980,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.106246,-0.003829,0.009003,0.249838,0,0);-ms-transform:matrix(0.106246,-0.003829,0.009003,0.249838,0,0);-webkit-transform:matrix(0.106246,-0.003829,0.009003,0.249838,0,0);}
.m3f_c00485{transform:matrix(0.148351,-0.001632,0.002750,0.249985,0,0);-ms-transform:matrix(0.148351,-0.001632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148351,-0.001632,0.002750,0.249985,0,0);}
.mb2_c00485{transform:matrix(0.149820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149820,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{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);}
.md3_c00485{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);}
.meb_c00485{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);}
.mc3_c00485{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);}
.m13_c00485{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);}
.me5_c00485{transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160670,0.000000,0.000000,0.250000,0,0);}
.m77_c00485{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);}
.mc9_c00485{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);}
.m18_c00485{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);}
.m17_c00485{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);}
.m8f_c00485{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);}
.m80_c00485{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);}
.m7c_c00485{transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171465,0.000000,0.000000,0.250000,0,0);}
.m8d_c00485{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);}
.m39_c00485{transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);-ms-transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172190,-0.001894,0.002750,0.249985,0,0);}
.m49_c00485{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);}
.m76_c00485{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);}
.m7e_c00485{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);}
.m81_c00485{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);}
.m65_c00485{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);}
.m4c_c00485{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);}
.m82_c00485{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);}
.m50_c00485{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);}
.m22_c00485{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);}
.mcc_c00485{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);}
.m5d_c00485{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_c00485{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);}
.m7f_c00485{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);}
.m9b_c00485{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);}
.ma_c00485{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);}
.m87_c00485{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);}
.mb_c00485{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);}
.m4f_c00485{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);}
.me_c00485{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);}
.m8a_c00485{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);}
.me8_c00485{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);}
.md4_c00485{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);}
.mb4_c00485{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);}
.mec_c00485{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);}
.md5_c00485{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);}
.md7_c00485{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);}
.m3e_c00485{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);}
.md1_c00485{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);}
.m5c_c00485{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);}
.mdd_c00485{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);}
.me9_c00485{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);}
.mdb_c00485{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);}
.m75_c00485{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);}
.m64_c00485{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);}
.mea_c00485{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);}
.m7a_c00485{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);}
.md2_c00485{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);}
.m44_c00485{transform:matrix(0.192758,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192758,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192758,-0.002120,0.002750,0.249985,0,0);}
.m67_c00485{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);}
.mda_c00485{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);}
.m8b_c00485{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);}
.mc6_c00485{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);}
.m95_c00485{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);}
.me7_c00485{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);}
.m6b_c00485{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);}
.m97_c00485{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);}
.m47_c00485{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);}
.mbe_c00485{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);}
.m41_c00485{transform:matrix(0.195543,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195543,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195543,-0.002151,0.002750,0.249985,0,0);}
.mb0_c00485{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);}
.m1e_c00485{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);}
.m3d_c00485{transform:matrix(0.197203,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197203,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197203,-0.002169,0.002750,0.249985,0,0);}
.mbc_c00485{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);}
.m10_c00485{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);}
.mf_c00485{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);}
.mc7_c00485{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);}
.m99_c00485{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);}
.mee_c00485{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);}
.mbf_c00485{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);}
.m85_c00485{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);}
.m79_c00485{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);}
.m8c_c00485{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);}
.mc0_c00485{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);}
.m9a_c00485{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);}
.mdf_c00485{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);}
.md9_c00485{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);}
.m43_c00485{transform:matrix(0.201123,-0.002212,0.002750,0.249985,0,0);-ms-transform:matrix(0.201123,-0.002212,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201123,-0.002212,0.002750,0.249985,0,0);}
.m54_c00485{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);}
.m37_c00485{transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202638,-0.002229,0.002750,0.249985,0,0);}
.med_c00485{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);}
.mcb_c00485{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);}
.m88_c00485{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);}
.mae_c00485{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);}
.mdc_c00485{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);}
.m6d_c00485{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);}
.mcd_c00485{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);}
.m1d_c00485{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);}
.m1f_c00485{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);}
.m52_c00485{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);}
.mbb_c00485{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);}
.m94_c00485{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);}
.mc4_c00485{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);}
.me0_c00485{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);}
.m51_c00485{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);}
.m83_c00485{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);}
.m23_c00485{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);}
.m33_c00485{transform:matrix(0.209932,-0.002309,0.002750,0.249985,0,0);-ms-transform:matrix(0.209932,-0.002309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209932,-0.002309,0.002750,0.249985,0,0);}
.ma5_c00485{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);}
.mc5_c00485{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);}
.m15_c00485{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);}
.m98_c00485{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);}
.m6c_c00485{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);}
.me2_c00485{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);}
.m38_c00485{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);}
.m9f_c00485{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);}
.m89_c00485{transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);}
.m5a_c00485{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);}
.m19_c00485{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);}
.m4d_c00485{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);}
.m66_c00485{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);}
.m5e_c00485{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);}
.m70_c00485{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);}
.m86_c00485{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);}
.m48_c00485{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);}
.mca_c00485{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);}
.m71_c00485{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_c00485{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);}
.ma9_c00485{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);}
.mbd_c00485{transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222480,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{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);}
.mac_c00485{transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223260,0.000000,0.000000,0.250000,0,0);}
.mce_c00485{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);}
.m53_c00485{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);}
.m2e_c00485{transform:matrix(0.224601,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224601,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224601,-0.002471,0.002750,0.249985,0,0);}
.m42_c00485{transform:matrix(0.225526,-0.002481,0.002750,0.249985,0,0);-ms-transform:matrix(0.225526,-0.002481,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225526,-0.002481,0.002750,0.249985,0,0);}
.m16_c00485{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);}
.md_c00485{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);}
.m1a_c00485{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);}
.mb3_c00485{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);}
.m2d_c00485{transform:matrix(0.228201,-0.002510,0.002750,0.249985,0,0);-ms-transform:matrix(0.228201,-0.002510,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228201,-0.002510,0.002750,0.249985,0,0);}
.m1c_c00485{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);}
.m55_c00485{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);}
.mba_c00485{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);}
.mc_c00485{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);}
.m3a_c00485{transform:matrix(0.230046,-0.002531,0.002750,0.249985,0,0);-ms-transform:matrix(0.230046,-0.002531,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230046,-0.002531,0.002750,0.249985,0,0);}
.m27_c00485{transform:matrix(0.230117,0.011517,-0.012497,0.249687,0,0);-ms-transform:matrix(0.230117,0.011517,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.230117,0.011517,-0.012497,0.249687,0,0);}
.me3_c00485{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);}
.m30_c00485{transform:matrix(0.231271,-0.002544,0.002750,0.249985,0,0);-ms-transform:matrix(0.231271,-0.002544,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231271,-0.002544,0.002750,0.249985,0,0);}
.md8_c00485{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);}
.m32_c00485{transform:matrix(0.232916,-0.002562,0.002750,0.249985,0,0);-ms-transform:matrix(0.232916,-0.002562,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232916,-0.002562,0.002750,0.249985,0,0);}
.m58_c00485{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);}
.m14_c00485{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);}
.ma4_c00485{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m92_c00485{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);}
.m3b_c00485{transform:matrix(0.237491,-0.002612,0.002750,0.249985,0,0);-ms-transform:matrix(0.237491,-0.002612,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237491,-0.002612,0.002750,0.249985,0,0);}
.m24_c00485{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);}
.m63_c00485{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);}
.m9_c00485{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);}
.m36_c00485{transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);-ms-transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240885,-0.002650,0.002750,0.249985,0,0);}
.ma1_c00485{transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00485{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);}
.m1b_c00485{transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243930,0.000000,0.000000,0.250000,0,0);}
.md0_c00485{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);}
.m7d_c00485{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);}
.m5b_c00485{transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);}
.m25_c00485{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);}
.mb1_c00485{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);}
.mb7_c00485{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);}
.m0_c00485{transform:matrix(0.246720,-0.008891,0.009003,0.249838,0,0);-ms-transform:matrix(0.246720,-0.008891,0.009003,0.249838,0,0);-webkit-transform:matrix(0.246720,-0.008891,0.009003,0.249838,0,0);}
.m12_c00485{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m6f_c00485{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.mc1_c00485{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);}
.m35_c00485{transform:matrix(0.251365,-0.002765,0.002750,0.249985,0,0);-ms-transform:matrix(0.251365,-0.002765,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251365,-0.002765,0.002750,0.249985,0,0);}
.m2f_c00485{transform:matrix(0.251665,-0.002768,0.002750,0.249985,0,0);-ms-transform:matrix(0.251665,-0.002768,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251665,-0.002768,0.002750,0.249985,0,0);}
.m57_c00485{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);}
.m31_c00485{transform:matrix(0.252885,-0.002782,0.002750,0.249985,0,0);-ms-transform:matrix(0.252885,-0.002782,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252885,-0.002782,0.002750,0.249985,0,0);}
.ma2_c00485{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.mad_c00485{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);}
.ma7_c00485{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);}
.ma8_c00485{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);}
.m2_c00485{transform:matrix(0.260191,-0.009376,0.009003,0.249838,0,0);-ms-transform:matrix(0.260191,-0.009376,0.009003,0.249838,0,0);-webkit-transform:matrix(0.260191,-0.009376,0.009003,0.249838,0,0);}
.m6e_c00485{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);}
.mb5_c00485{transform:matrix(0.265355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265355,0.000000,0.000000,0.250000,0,0);}
.m59_c00485{transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266905,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269095,0.000000,0.000000,0.250000,0,0);}
.m74_c00485{transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);}
.ma3_c00485{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m6a_c00485{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.mab_c00485{transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00485{transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.273128,-0.009842,0.009003,0.249838,0,0);-ms-transform:matrix(0.273128,-0.009842,0.009003,0.249838,0,0);-webkit-transform:matrix(0.273128,-0.009842,0.009003,0.249838,0,0);}
.m91_c00485{transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277080,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.279569,-0.010075,0.009003,0.249838,0,0);-ms-transform:matrix(0.279569,-0.010075,0.009003,0.249838,0,0);-webkit-transform:matrix(0.279569,-0.010075,0.009003,0.249838,0,0);}
.maa_c00485{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);}
.me4_c00485{transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295810,0.000000,0.000000,0.250000,0,0);}
.mcf_c00485{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00485{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);}
.m62_c00485{transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318345,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318845,0.000000,0.000000,0.250000,0,0);}
.m46_c00485{transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323375,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{transform:matrix(0.325245,-0.003578,0.002750,0.249985,0,0);-ms-transform:matrix(0.325245,-0.003578,0.002750,0.249985,0,0);-webkit-transform:matrix(0.325245,-0.003578,0.002750,0.249985,0,0);}
.m9c_c00485{transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326115,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.327435,0.016388,-0.012497,0.249687,0,0);-ms-transform:matrix(0.327435,0.016388,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.327435,0.016388,-0.012497,0.249687,0,0);}
.mb6_c00485{transform:matrix(0.340565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340565,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.344441,-0.012412,0.009003,0.249838,0,0);-ms-transform:matrix(0.344441,-0.012412,0.009003,0.249838,0,0);-webkit-transform:matrix(0.344441,-0.012412,0.009003,0.249838,0,0);}
.mc2_c00485{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.m2a_c00485{transform:matrix(0.354916,0.017764,-0.012497,0.249687,0,0);-ms-transform:matrix(0.354916,0.017764,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.354916,0.017764,-0.012497,0.249687,0,0);}
.m56_c00485{transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358545,0.000000,0.000000,0.250000,0,0);}
.m93_c00485{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);}
.me6_c00485{transform:matrix(0.370010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370010,0.000000,0.000000,0.250000,0,0);}
.m68_c00485{transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373730,0.000000,0.000000,0.250000,0,0);}
.m7b_c00485{transform:matrix(0.392025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392025,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.396374,0.019839,-0.012497,0.249687,0,0);-ms-transform:matrix(0.396374,0.019839,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.396374,0.019839,-0.012497,0.249687,0,0);}
.me1_c00485{transform:matrix(0.398240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398240,0.000000,0.000000,0.250000,0,0);}
.m60_c00485{transform:matrix(0.409235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00485{transform:matrix(0.435405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435405,0.000000,0.000000,0.250000,0,0);}
.m9e_c00485{transform:matrix(0.438115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438115,0.000000,0.000000,0.250000,0,0);}
.m9d_c00485{transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.462130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462130,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.482461,0.024147,-0.012497,0.249687,0,0);-ms-transform:matrix(0.482461,0.024147,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.482461,0.024147,-0.012497,0.249687,0,0);}
.ma0_c00485{transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486265,0.000000,0.000000,0.250000,0,0);}
.m28_c00485{transform:matrix(0.493332,0.024691,-0.012497,0.249687,0,0);-ms-transform:matrix(0.493332,0.024691,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.493332,0.024691,-0.012497,0.249687,0,0);}
.m4a_c00485{transform:matrix(0.494820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494820,0.000000,0.000000,0.250000,0,0);}
.m96_c00485{transform:matrix(0.500240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500240,0.000000,0.000000,0.250000,0,0);}
.m45_c00485{transform:matrix(0.518970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518970,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.555999,-0.020036,0.009003,0.249838,0,0);-ms-transform:matrix(0.555999,-0.020036,0.009003,0.249838,0,0);-webkit-transform:matrix(0.555999,-0.020036,0.009003,0.249838,0,0);}
.m7_c00485{transform:matrix(0.687460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687460,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.697488,-0.007672,0.002750,0.249985,0,0);-ms-transform:matrix(0.697488,-0.007672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.697488,-0.007672,0.002750,0.249985,0,0);}
.m69_c00485{transform:matrix(0.707875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707875,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.901425,-0.009916,0.002750,0.249985,0,0);-ms-transform:matrix(0.901425,-0.009916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.901425,-0.009916,0.002750,0.249985,0,0);}
.m26_c00485{transform:matrix(0.980200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980200,0.000000,0.000000,0.250000,0,0);}
.maf_c00485{transform:matrix(1.031725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.031725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.031725,0.000000,0.000000,0.250000,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;}
.fs1_c00485{font-size:22.050000px;}
.fsd_c00485{font-size:48.300000px;}
.fsf_c00485{font-size:51.450000px;}
.fs10_c00485{font-size:52.500000px;}
.fse_c00485{font-size:55.650000px;}
.fs4_c00485{font-size:60.900000px;}
.fsb_c00485{font-size:61.950000px;}
.fs9_c00485{font-size:63.003811px;}
.fs2_c00485{font-size:66.150000px;}
.fs3_c00485{font-size:67.200000px;}
.fs5_c00485{font-size:69.300000px;}
.fs8_c00485{font-size:69.304193px;}
.fs6_c00485{font-size:70.350000px;}
.fs7_c00485{font-size:70.367620px;}
.fsc_c00485{font-size:71.400000px;}
.fs0_c00485{font-size:81.871207px;}
.fsa_c00485{font-size:84.000000px;}
.y0_c00485{bottom:0.000000px;}
.y3f_c00485{bottom:148.051500px;}
.y3e_c00485{bottom:166.171500px;}
.y3d_c00485{bottom:183.762000px;}
.y3c_c00485{bottom:201.805500px;}
.y3b_c00485{bottom:219.394500px;}
.y3a_c00485{bottom:237.687000px;}
.y39_c00485{bottom:289.714500px;}
.y38_c00485{bottom:311.950500px;}
.y37_c00485{bottom:334.101000px;}
.y36_c00485{bottom:357.847500px;}
.y35_c00485{bottom:381.054000px;}
.y34_c00485{bottom:404.268000px;}
.y33_c00485{bottom:427.014000px;}
.y32_c00485{bottom:449.820000px;}
.y31_c00485{bottom:475.131000px;}
.y30_c00485{bottom:499.981500px;}
.y2f_c00485{bottom:523.822500px;}
.y2e_c00485{bottom:546.550500px;}
.y2d_c00485{bottom:568.848000px;}
.y25_c00485{bottom:598.073011px;}
.y26_c00485{bottom:598.073115px;}
.y29_c00485{bottom:598.073149px;}
.y27_c00485{bottom:598.073292px;}
.y2c_c00485{bottom:598.073427px;}
.y28_c00485{bottom:598.073545px;}
.y2a_c00485{bottom:598.073807px;}
.y2b_c00485{bottom:598.074150px;}
.y20_c00485{bottom:620.557921px;}
.y24_c00485{bottom:620.558149px;}
.y21_c00485{bottom:620.558385px;}
.y1f_c00485{bottom:620.558645px;}
.y23_c00485{bottom:620.558752px;}
.y1e_c00485{bottom:620.558781px;}
.y22_c00485{bottom:620.558878px;}
.y1d_c00485{bottom:620.559037px;}
.y15_c00485{bottom:641.251500px;}
.y16_c00485{bottom:641.510468px;}
.y17_c00485{bottom:642.116150px;}
.y18_c00485{bottom:642.443064px;}
.y19_c00485{bottom:642.651674px;}
.y1a_c00485{bottom:643.248247px;}
.y1b_c00485{bottom:643.550940px;}
.y1c_c00485{bottom:643.967763px;}
.y14_c00485{bottom:672.947850px;}
.y13_c00485{bottom:673.869450px;}
.y12_c00485{bottom:674.574600px;}
.y11_c00485{bottom:675.777300px;}
.y10_c00485{bottom:676.814175px;}
.yf_c00485{bottom:681.507000px;}
.ye_c00485{bottom:699.444000px;}
.yd_c00485{bottom:722.914500px;}
.yc_c00485{bottom:750.192000px;}
.yb_c00485{bottom:772.923000px;}
.ya_c00485{bottom:796.011000px;}
.y9_c00485{bottom:818.577000px;}
.y8_c00485{bottom:846.451500px;}
.y1_c00485{bottom:864.022500px;}
.y2_c00485{bottom:866.730276px;}
.y3_c00485{bottom:868.618170px;}
.y4_c00485{bottom:870.148800px;}
.y5_c00485{bottom:871.804602px;}
.y6_c00485{bottom:874.275318px;}
.y7_c00485{bottom:875.415204px;}
.h3_c00485{height:22.050000px;}
.hf_c00485{height:48.300000px;}
.h11_c00485{height:51.450000px;}
.h12_c00485{height:52.500000px;}
.h10_c00485{height:55.650000px;}
.h6_c00485{height:60.900000px;}
.hd_c00485{height:61.950000px;}
.hb_c00485{height:63.003811px;}
.h4_c00485{height:66.150000px;}
.h5_c00485{height:67.200000px;}
.h7_c00485{height:69.300000px;}
.ha_c00485{height:69.304193px;}
.h8_c00485{height:70.350000px;}
.h9_c00485{height:70.367620px;}
.he_c00485{height:71.400000px;}
.h2_c00485{height:81.871207px;}
.hc_c00485{height:84.000000px;}
.h0_c00485{height:1008.450000px;}
.h1_c00485{height:1008.750000px;}
.w1_c00485{width:700.500000px;}
.w0_c00485{width:700.650000px;}
.x0_c00485{left:0.000000px;}
.x78_c00485{left:139.590000px;}
.x80_c00485{left:144.450000px;}
.x1_c00485{left:151.291500px;}
.x6e_c00485{left:157.680000px;}
.x49_c00485{left:177.120000px;}
.x89_c00485{left:178.470000px;}
.x60_c00485{left:179.550000px;}
.x41_c00485{left:181.710000px;}
.x1f_c00485{left:182.790000px;}
.x10_c00485{left:184.680000px;}
.x9_c00485{left:185.760000px;}
.x79_c00485{left:189.270000px;}
.x81_c00485{left:194.400000px;}
.x61_c00485{left:204.660000px;}
.x2a_c00485{left:206.505000px;}
.x35_c00485{left:207.905422px;}
.x19_c00485{left:209.790000px;}
.x2f_c00485{left:212.764698px;}
.x3c_c00485{left:214.920000px;}
.x8d_c00485{left:216.810000px;}
.x8a_c00485{left:220.320000px;}
.x42_c00485{left:223.020000px;}
.x58_c00485{left:225.180000px;}
.x2_c00485{left:226.432284px;}
.x20_c00485{left:231.120000px;}
.xa_c00485{left:237.600000px;}
.x25_c00485{left:240.288000px;}
.x6f_c00485{left:242.190000px;}
.x36_c00485{left:246.517092px;}
.x82_c00485{left:253.530000px;}
.x53_c00485{left:254.880000px;}
.xb_c00485{left:257.850000px;}
.x5d_c00485{left:259.740000px;}
.x2b_c00485{left:261.567000px;}
.x3d_c00485{left:267.570000px;}
.x43_c00485{left:268.650000px;}
.x37_c00485{left:271.088562px;}
.x21_c00485{left:273.240000px;}
.x7a_c00485{left:274.860000px;}
.x3_c00485{left:278.821343px;}
.x3e_c00485{left:280.260000px;}
.x4f_c00485{left:281.340000px;}
.x54_c00485{left:286.470000px;}
.x30_c00485{left:287.559257px;}
.x4a_c00485{left:288.630000px;}
.xc_c00485{left:290.790000px;}
.x83_c00485{left:292.680000px;}
.x1a_c00485{left:294.840000px;}
.x8_c00485{left:298.080000px;}
.x5e_c00485{left:304.020000px;}
.x50_c00485{left:306.720000px;}
.x8b_c00485{left:308.880000px;}
.x2c_c00485{left:310.251000px;}
.x1e_c00485{left:318.330000px;}
.x4_c00485{left:321.296325px;}
.x44_c00485{left:322.650000px;}
.x31_c00485{left:323.742129px;}
.x68_c00485{left:325.620000px;}
.x66_c00485{left:328.320000px;}
.x8e_c00485{left:329.400000px;}
.x7b_c00485{left:331.290000px;}
.x26_c00485{left:334.050644px;}
.x22_c00485{left:335.070000px;}
.x59_c00485{left:337.500000px;}
.x14_c00485{left:339.120000px;}
.xd_c00485{left:342.630000px;}
.x7c_c00485{left:346.410000px;}
.x4b_c00485{left:349.110000px;}
.x27_c00485{left:354.767406px;}
.x70_c00485{left:356.940000px;}
.x32_c00485{left:359.654968px;}
.x23_c00485{left:361.260000px;}
.x2d_c00485{left:364.485000px;}
.x5_c00485{left:367.244830px;}
.x38_c00485{left:368.564360px;}
.x67_c00485{left:371.790000px;}
.x15_c00485{left:377.730000px;}
.x1b_c00485{left:379.080000px;}
.xe_c00485{left:383.130000px;}
.x69_c00485{left:384.480000px;}
.x71_c00485{left:385.560000px;}
.x84_c00485{left:387.180000px;}
.x3b_c00485{left:388.800000px;}
.x28_c00485{left:392.886249px;}
.x4c_c00485{left:394.200000px;}
.x8c_c00485{left:395.280000px;}
.x5f_c00485{left:396.630000px;}
.x72_c00485{left:399.870000px;}
.x55_c00485{left:403.650000px;}
.x24_c00485{left:405.000000px;}
.x1c_c00485{left:407.160000px;}
.x4d_c00485{left:410.130000px;}
.x29_c00485{left:411.299817px;}
.x85_c00485{left:417.960000px;}
.x73_c00485{left:424.980000px;}
.x62_c00485{left:426.870000px;}
.x11_c00485{left:427.950000px;}
.x2e_c00485{left:429.895500px;}
.xf_c00485{left:431.730000px;}
.x51_c00485{left:434.700000px;}
.x6_c00485{left:435.807200px;}
.x45_c00485{left:438.480000px;}
.x5a_c00485{left:440.370000px;}
.x16_c00485{left:446.040000px;}
.x63_c00485{left:447.930000px;}
.x12_c00485{left:449.010000px;}
.x3f_c00485{left:450.900000px;}
.x74_c00485{left:451.980000px;}
.x39_c00485{left:453.620139px;}
.x33_c00485{left:454.700469px;}
.x52_c00485{left:458.460000px;}
.x1d_c00485{left:461.700000px;}
.x8f_c00485{left:465.480000px;}
.x7_c00485{left:467.439036px;}
.x64_c00485{left:470.070000px;}
.x17_c00485{left:472.770000px;}
.x46_c00485{left:480.060000px;}
.x56_c00485{left:484.650000px;}
.x7d_c00485{left:487.080000px;}
.x18_c00485{left:490.590000px;}
.x90_c00485{left:496.530000px;}
.x34_c00485{left:500.332997px;}
.x6b_c00485{left:502.740000px;}
.x3a_c00485{left:513.834432px;}
.x5b_c00485{left:514.890000px;}
.x65_c00485{left:516.240000px;}
.x86_c00485{left:517.320000px;}
.x75_c00485{left:522.450000px;}
.x93_c00485{left:525.690000px;}
.x7e_c00485{left:527.850000px;}
.x4e_c00485{left:529.200000px;}
.x6a_c00485{left:534.870000px;}
.x13_c00485{left:537.300000px;}
.x76_c00485{left:538.920000px;}
.x87_c00485{left:544.860000px;}
.x47_c00485{left:547.290000px;}
.x57_c00485{left:561.600000px;}
.x91_c00485{left:564.030000px;}
.x6c_c00485{left:572.130000px;}
.x94_c00485{left:574.830000px;}
.x7f_c00485{left:578.070000px;}
.x5c_c00485{left:581.040000px;}
.x92_c00485{left:582.660000px;}
.x40_c00485{left:588.870000px;}
.x48_c00485{left:591.030000px;}
.x6d_c00485{left:595.350000px;}
.x77_c00485{left:607.770000px;}
.x88_c00485{left:616.950000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs1_c00485{font-size:19.600000pt;}
.fsd_c00485{font-size:42.933333pt;}
.fsf_c00485{font-size:45.733333pt;}
.fs10_c00485{font-size:46.666667pt;}
.fse_c00485{font-size:49.466667pt;}
.fs4_c00485{font-size:54.133333pt;}
.fsb_c00485{font-size:55.066667pt;}
.fs9_c00485{font-size:56.003388pt;}
.fs2_c00485{font-size:58.800000pt;}
.fs3_c00485{font-size:59.733333pt;}
.fs5_c00485{font-size:61.600000pt;}
.fs8_c00485{font-size:61.603727pt;}
.fs6_c00485{font-size:62.533333pt;}
.fs7_c00485{font-size:62.548996pt;}
.fsc_c00485{font-size:63.466667pt;}
.fs0_c00485{font-size:72.774406pt;}
.fsa_c00485{font-size:74.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y3f_c00485{bottom:131.601333pt;}
.y3e_c00485{bottom:147.708000pt;}
.y3d_c00485{bottom:163.344000pt;}
.y3c_c00485{bottom:179.382667pt;}
.y3b_c00485{bottom:195.017333pt;}
.y3a_c00485{bottom:211.277333pt;}
.y39_c00485{bottom:257.524000pt;}
.y38_c00485{bottom:277.289333pt;}
.y37_c00485{bottom:296.978667pt;}
.y36_c00485{bottom:318.086667pt;}
.y35_c00485{bottom:338.714667pt;}
.y34_c00485{bottom:359.349333pt;}
.y33_c00485{bottom:379.568000pt;}
.y32_c00485{bottom:399.840000pt;}
.y31_c00485{bottom:422.338667pt;}
.y30_c00485{bottom:444.428000pt;}
.y2f_c00485{bottom:465.620000pt;}
.y2e_c00485{bottom:485.822667pt;}
.y2d_c00485{bottom:505.642667pt;}
.y25_c00485{bottom:531.620455pt;}
.y26_c00485{bottom:531.620547pt;}
.y29_c00485{bottom:531.620577pt;}
.y27_c00485{bottom:531.620704pt;}
.y2c_c00485{bottom:531.620824pt;}
.y28_c00485{bottom:531.620929pt;}
.y2a_c00485{bottom:531.621161pt;}
.y2b_c00485{bottom:531.621467pt;}
.y20_c00485{bottom:551.607041pt;}
.y24_c00485{bottom:551.607244pt;}
.y21_c00485{bottom:551.607453pt;}
.y1f_c00485{bottom:551.607684pt;}
.y23_c00485{bottom:551.607780pt;}
.y1e_c00485{bottom:551.607805pt;}
.y22_c00485{bottom:551.607892pt;}
.y1d_c00485{bottom:551.608033pt;}
.y15_c00485{bottom:570.001333pt;}
.y16_c00485{bottom:570.231527pt;}
.y17_c00485{bottom:570.769911pt;}
.y18_c00485{bottom:571.060501pt;}
.y19_c00485{bottom:571.245932pt;}
.y1a_c00485{bottom:571.776220pt;}
.y1b_c00485{bottom:572.045280pt;}
.y1c_c00485{bottom:572.415789pt;}
.y14_c00485{bottom:598.175867pt;}
.y13_c00485{bottom:598.995067pt;}
.y12_c00485{bottom:599.621867pt;}
.y11_c00485{bottom:600.690933pt;}
.y10_c00485{bottom:601.612600pt;}
.yf_c00485{bottom:605.784000pt;}
.ye_c00485{bottom:621.728000pt;}
.yd_c00485{bottom:642.590667pt;}
.yc_c00485{bottom:666.837333pt;}
.yb_c00485{bottom:687.042667pt;}
.ya_c00485{bottom:707.565333pt;}
.y9_c00485{bottom:727.624000pt;}
.y8_c00485{bottom:752.401333pt;}
.y1_c00485{bottom:768.020000pt;}
.y2_c00485{bottom:770.426912pt;}
.y3_c00485{bottom:772.105040pt;}
.y4_c00485{bottom:773.465600pt;}
.y5_c00485{bottom:774.937424pt;}
.y6_c00485{bottom:777.133616pt;}
.y7_c00485{bottom:778.146848pt;}
.h3_c00485{height:19.600000pt;}
.hf_c00485{height:42.933333pt;}
.h11_c00485{height:45.733333pt;}
.h12_c00485{height:46.666667pt;}
.h10_c00485{height:49.466667pt;}
.h6_c00485{height:54.133333pt;}
.hd_c00485{height:55.066667pt;}
.hb_c00485{height:56.003388pt;}
.h4_c00485{height:58.800000pt;}
.h5_c00485{height:59.733333pt;}
.h7_c00485{height:61.600000pt;}
.ha_c00485{height:61.603727pt;}
.h8_c00485{height:62.533333pt;}
.h9_c00485{height:62.548996pt;}
.he_c00485{height:63.466667pt;}
.h2_c00485{height:72.774406pt;}
.hc_c00485{height:74.666667pt;}
.h0_c00485{height:896.400000pt;}
.h1_c00485{height:896.666667pt;}
.w1_c00485{width:622.666667pt;}
.w0_c00485{width:622.800000pt;}
.x0_c00485{left:0.000000pt;}
.x78_c00485{left:124.080000pt;}
.x80_c00485{left:128.400000pt;}
.x1_c00485{left:134.481333pt;}
.x6e_c00485{left:140.160000pt;}
.x49_c00485{left:157.440000pt;}
.x89_c00485{left:158.640000pt;}
.x60_c00485{left:159.600000pt;}
.x41_c00485{left:161.520000pt;}
.x1f_c00485{left:162.480000pt;}
.x10_c00485{left:164.160000pt;}
.x9_c00485{left:165.120000pt;}
.x79_c00485{left:168.240000pt;}
.x81_c00485{left:172.800000pt;}
.x61_c00485{left:181.920000pt;}
.x2a_c00485{left:183.560000pt;}
.x35_c00485{left:184.804820pt;}
.x19_c00485{left:186.480000pt;}
.x2f_c00485{left:189.124176pt;}
.x3c_c00485{left:191.040000pt;}
.x8d_c00485{left:192.720000pt;}
.x8a_c00485{left:195.840000pt;}
.x42_c00485{left:198.240000pt;}
.x58_c00485{left:200.160000pt;}
.x2_c00485{left:201.273141pt;}
.x20_c00485{left:205.440000pt;}
.xa_c00485{left:211.200000pt;}
.x25_c00485{left:213.589333pt;}
.x6f_c00485{left:215.280000pt;}
.x36_c00485{left:219.126304pt;}
.x82_c00485{left:225.360000pt;}
.x53_c00485{left:226.560000pt;}
.xb_c00485{left:229.200000pt;}
.x5d_c00485{left:230.880000pt;}
.x2b_c00485{left:232.504000pt;}
.x3d_c00485{left:237.840000pt;}
.x43_c00485{left:238.800000pt;}
.x37_c00485{left:240.967611pt;}
.x21_c00485{left:242.880000pt;}
.x7a_c00485{left:244.320000pt;}
.x3_c00485{left:247.841193pt;}
.x3e_c00485{left:249.120000pt;}
.x4f_c00485{left:250.080000pt;}
.x54_c00485{left:254.640000pt;}
.x30_c00485{left:255.608228pt;}
.x4a_c00485{left:256.560000pt;}
.xc_c00485{left:258.480000pt;}
.x83_c00485{left:260.160000pt;}
.x1a_c00485{left:262.080000pt;}
.x8_c00485{left:264.960000pt;}
.x5e_c00485{left:270.240000pt;}
.x50_c00485{left:272.640000pt;}
.x8b_c00485{left:274.560000pt;}
.x2c_c00485{left:275.778667pt;}
.x1e_c00485{left:282.960000pt;}
.x4_c00485{left:285.596733pt;}
.x44_c00485{left:286.800000pt;}
.x31_c00485{left:287.770781pt;}
.x68_c00485{left:289.440000pt;}
.x66_c00485{left:291.840000pt;}
.x8e_c00485{left:292.800000pt;}
.x7b_c00485{left:294.480000pt;}
.x26_c00485{left:296.933905pt;}
.x22_c00485{left:297.840000pt;}
.x59_c00485{left:300.000000pt;}
.x14_c00485{left:301.440000pt;}
.xd_c00485{left:304.560000pt;}
.x7c_c00485{left:307.920000pt;}
.x4b_c00485{left:310.320000pt;}
.x27_c00485{left:315.348805pt;}
.x70_c00485{left:317.280000pt;}
.x32_c00485{left:319.693305pt;}
.x23_c00485{left:321.120000pt;}
.x2d_c00485{left:323.986667pt;}
.x5_c00485{left:326.439849pt;}
.x38_c00485{left:327.612764pt;}
.x67_c00485{left:330.480000pt;}
.x15_c00485{left:335.760000pt;}
.x1b_c00485{left:336.960000pt;}
.xe_c00485{left:340.560000pt;}
.x69_c00485{left:341.760000pt;}
.x71_c00485{left:342.720000pt;}
.x84_c00485{left:344.160000pt;}
.x3b_c00485{left:345.600000pt;}
.x28_c00485{left:349.232221pt;}
.x4c_c00485{left:350.400000pt;}
.x8c_c00485{left:351.360000pt;}
.x5f_c00485{left:352.560000pt;}
.x72_c00485{left:355.440000pt;}
.x55_c00485{left:358.800000pt;}
.x24_c00485{left:360.000000pt;}
.x1c_c00485{left:361.920000pt;}
.x4d_c00485{left:364.560000pt;}
.x29_c00485{left:365.599837pt;}
.x85_c00485{left:371.520000pt;}
.x73_c00485{left:377.760000pt;}
.x62_c00485{left:379.440000pt;}
.x11_c00485{left:380.400000pt;}
.x2e_c00485{left:382.129333pt;}
.xf_c00485{left:383.760000pt;}
.x51_c00485{left:386.400000pt;}
.x6_c00485{left:387.384177pt;}
.x45_c00485{left:389.760000pt;}
.x5a_c00485{left:391.440000pt;}
.x16_c00485{left:396.480000pt;}
.x63_c00485{left:398.160000pt;}
.x12_c00485{left:399.120000pt;}
.x3f_c00485{left:400.800000pt;}
.x74_c00485{left:401.760000pt;}
.x39_c00485{left:403.217901pt;}
.x33_c00485{left:404.178195pt;}
.x52_c00485{left:407.520000pt;}
.x1d_c00485{left:410.400000pt;}
.x8f_c00485{left:413.760000pt;}
.x7_c00485{left:415.501365pt;}
.x64_c00485{left:417.840000pt;}
.x17_c00485{left:420.240000pt;}
.x46_c00485{left:426.720000pt;}
.x56_c00485{left:430.800000pt;}
.x7d_c00485{left:432.960000pt;}
.x18_c00485{left:436.080000pt;}
.x90_c00485{left:441.360000pt;}
.x34_c00485{left:444.740441pt;}
.x6b_c00485{left:446.880000pt;}
.x3a_c00485{left:456.741717pt;}
.x5b_c00485{left:457.680000pt;}
.x65_c00485{left:458.880000pt;}
.x86_c00485{left:459.840000pt;}
.x75_c00485{left:464.400000pt;}
.x93_c00485{left:467.280000pt;}
.x7e_c00485{left:469.200000pt;}
.x4e_c00485{left:470.400000pt;}
.x6a_c00485{left:475.440000pt;}
.x13_c00485{left:477.600000pt;}
.x76_c00485{left:479.040000pt;}
.x87_c00485{left:484.320000pt;}
.x47_c00485{left:486.480000pt;}
.x57_c00485{left:499.200000pt;}
.x91_c00485{left:501.360000pt;}
.x6c_c00485{left:508.560000pt;}
.x94_c00485{left:510.960000pt;}
.x7f_c00485{left:513.840000pt;}
.x5c_c00485{left:516.480000pt;}
.x92_c00485{left:517.920000pt;}
.x40_c00485{left:523.440000pt;}
.x48_c00485{left:525.360000pt;}
.x6d_c00485{left:529.200000pt;}
.x77_c00485{left:540.240000pt;}
.x88_c00485{left:548.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m7a_c00486{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.mac_c00486{transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);}
.m78_c00486{transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049965,0.000000,0.000000,0.250000,0,0);}
.m9a_c00486{transform:matrix(0.066560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066560,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.090980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090980,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.094900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094900,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);}
.m9e_c00486{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00486{transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111695,0.000000,0.000000,0.250000,0,0);}
.m5c_c00486{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);}
.m6e_c00486{transform:matrix(0.137490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137490,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.138670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138670,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.142910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142910,0.000000,0.000000,0.250000,0,0);}
.m5b_c00486{transform:matrix(0.143290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143290,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m68_c00486{transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{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);}
.m5d_c00486{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);}
.m24_c00486{transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154945,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{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);}
.m28_c00486{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);}
.m10_c00486{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);}
.m69_c00486{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);}
.m26_c00486{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);}
.m5e_c00486{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);}
.m17_c00486{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);}
.m5a_c00486{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);}
.m7_c00486{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);}
.m2b_c00486{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);}
.m84_c00486{transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164870,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{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);}
.m36_c00486{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);}
.m1e_c00486{transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167480,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{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);}
.mbb_c00486{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);}
.m1a_c00486{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);}
.m34_c00486{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);}
.m22_c00486{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);}
.m7c_c00486{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);}
.m25_c00486{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);}
.m59_c00486{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);}
.m65_c00486{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);}
.me_c00486{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);}
.mc4_c00486{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);}
.mb3_c00486{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);}
.mc2_c00486{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);}
.m13_c00486{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);}
.m58_c00486{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);}
.m54_c00486{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);}
.mc6_c00486{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);}
.m23_c00486{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);}
.m60_c00486{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);}
.ma5_c00486{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);}
.m70_c00486{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);}
.m12_c00486{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);}
.m16_c00486{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);}
.md_c00486{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);}
.m6_c00486{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);}
.mb1_c00486{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);}
.m21_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);}
.m1d_c00486{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);}
.mb4_c00486{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);}
.mb6_c00486{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);}
.m14_c00486{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);}
.m82_c00486{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);}
.ma8_c00486{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);}
.m2d_c00486{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);}
.m4_c00486{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);}
.mb8_c00486{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);}
.m71_c00486{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);}
.m50_c00486{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);}
.mb_c00486{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);}
.m1f_c00486{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);}
.m30_c00486{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);}
.m55_c00486{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);}
.m67_c00486{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);}
.mc5_c00486{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);}
.mbf_c00486{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);}
.m1c_c00486{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);}
.m4b_c00486{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);}
.mc3_c00486{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);}
.m7e_c00486{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);}
.m4d_c00486{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);}
.m4c_c00486{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);}
.m83_c00486{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);}
.m3d_c00486{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);}
.mbd_c00486{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);}
.m89_c00486{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);}
.ma0_c00486{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);}
.m2c_c00486{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);}
.m80_c00486{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);}
.mae_c00486{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);}
.m7f_c00486{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);}
.ma6_c00486{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);}
.mc8_c00486{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);}
.m61_c00486{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);}
.mc7_c00486{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);}
.m7d_c00486{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);}
.m8_c00486{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);}
.m9d_c00486{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);}
.ma3_c00486{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);}
.m4f_c00486{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);}
.m66_c00486{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);}
.m5f_c00486{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);}
.m9f_c00486{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);}
.mb0_c00486{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);}
.mc0_c00486{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);}
.m56_c00486{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);}
.m20_c00486{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);}
.m19_c00486{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);}
.mb5_c00486{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);}
.m48_c00486{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);}
.m72_c00486{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);}
.m53_c00486{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);}
.m6f_c00486{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);}
.m8b_c00486{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);}
.m52_c00486{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);}
.m15_c00486{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);}
.m93_c00486{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);}
.m18_c00486{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);}
.m63_c00486{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);}
.m76_c00486{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_c00486{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);}
.m3f_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);}
.m64_c00486{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);}
.m9_c00486{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);}
.mb7_c00486{transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00486{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);}
.mb2_c00486{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);}
.m4e_c00486{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);}
.m40_c00486{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);}
.m88_c00486{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);}
.m92_c00486{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);}
.ma1_c00486{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);}
.m46_c00486{transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218055,0.000000,0.000000,0.250000,0,0);}
.m57_c00486{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);}
.m47_c00486{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.m6b_c00486{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);}
.m2e_c00486{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);}
.m33_c00486{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);}
.m3c_c00486{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);}
.m99_c00486{transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);}
.m8c_c00486{transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);}
.mbc_c00486{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);}
.m8e_c00486{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);}
.m74_c00486{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);}
.m62_c00486{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m97_c00486{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);}
.m81_c00486{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);}
.m7b_c00486{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);}
.mab_c00486{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);}
.mba_c00486{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.m91_c00486{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);}
.ma_c00486{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.maa_c00486{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);}
.m9c_c00486{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);}
.m51_c00486{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);}
.m73_c00486{transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);}
.m8a_c00486{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);}
.m86_c00486{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.maf_c00486{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);}
.m94_c00486{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);}
.m98_c00486{transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00486{transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{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);}
.m9b_c00486{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);}
.m96_c00486{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);}
.m95_c00486{transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);}
.mc1_c00486{transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267280,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269670,0.000000,0.000000,0.250000,0,0);}
.mad_c00486{transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00486{transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);}
.m6a_c00486{transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273740,0.000000,0.000000,0.250000,0,0);}
.m6d_c00486{transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274170,0.000000,0.000000,0.250000,0,0);}
.m90_c00486{transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279415,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{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);}
.m6c_c00486{transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284965,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.290110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290110,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290185,0.000000,0.000000,0.250000,0,0);}
.mb9_c00486{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);}
.m87_c00486{transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313205,0.000000,0.000000,0.250000,0,0);}
.m44_c00486{transform:matrix(0.320900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320900,0.000000,0.000000,0.250000,0,0);}
.m79_c00486{transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329880,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);}
.m77_c00486{transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357515,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.372880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372880,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.374540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374540,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.378655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378655,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.395945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395945,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.413240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413240,0.000000,0.000000,0.250000,0,0);}
.m85_c00486{transform:matrix(0.418365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418365,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.433720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433720,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481185,0.000000,0.000000,0.250000,0,0);}
.ma7_c00486{transform:matrix(0.482820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482820,0.000000,0.000000,0.250000,0,0);}
.ma9_c00486{transform:matrix(0.523660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523660,0.000000,0.000000,0.250000,0,0);}
.m75_c00486{transform:matrix(0.555780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555780,0.000000,0.000000,0.250000,0,0);}
.ma2_c00486{transform:matrix(1.083290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.083290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.083290,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;}
._0_c00486{width:23.184389px;}
.fc0_c00486{color:transparent;}
.fsd_c00486{font-size:49.350000px;}
.fsc_c00486{font-size:50.400000px;}
.fsb_c00486{font-size:51.450000px;}
.fsf_c00486{font-size:52.500000px;}
.fse_c00486{font-size:53.550000px;}
.fs10_c00486{font-size:55.650000px;}
.fs8_c00486{font-size:64.050000px;}
.fs9_c00486{font-size:69.300000px;}
.fs2_c00486{font-size:70.350000px;}
.fs1_c00486{font-size:71.400000px;}
.fs5_c00486{font-size:72.450000px;}
.fs0_c00486{font-size:73.500000px;}
.fs7_c00486{font-size:74.550000px;}
.fs3_c00486{font-size:75.600000px;}
.fsa_c00486{font-size:76.650000px;}
.fs4_c00486{font-size:77.700000px;}
.fs6_c00486{font-size:82.950000px;}
.y0_c00486{bottom:0.000000px;}
.y1f_c00486{bottom:129.960000px;}
.y1e_c00486{bottom:156.424500px;}
.y1d_c00486{bottom:174.834000px;}
.y20_c00486{bottom:175.066500px;}
.y23_c00486{bottom:192.780000px;}
.y1c_c00486{bottom:192.877500px;}
.y1b_c00486{bottom:210.429000px;}
.y22_c00486{bottom:211.453500px;}
.y1a_c00486{bottom:228.099000px;}
.y21_c00486{bottom:229.465500px;}
.y19_c00486{bottom:379.450500px;}
.y18_c00486{bottom:402.487500px;}
.y17_c00486{bottom:426.037500px;}
.y16_c00486{bottom:448.174500px;}
.y15_c00486{bottom:471.142500px;}
.y14_c00486{bottom:493.594500px;}
.y13_c00486{bottom:516.030000px;}
.y12_c00486{bottom:538.915500px;}
.y11_c00486{bottom:561.700500px;}
.y10_c00486{bottom:585.484500px;}
.yf_c00486{bottom:607.768500px;}
.y9_c00486{bottom:628.297500px;}
.ya_c00486{bottom:629.038500px;}
.yb_c00486{bottom:629.803500px;}
.yc_c00486{bottom:630.457500px;}
.yd_c00486{bottom:630.775500px;}
.ye_c00486{bottom:631.410000px;}
.y8_c00486{bottom:651.921000px;}
.y7_c00486{bottom:675.270000px;}
.y6_c00486{bottom:698.404500px;}
.y5_c00486{bottom:720.429000px;}
.y4_c00486{bottom:744.177000px;}
.y3_c00486{bottom:767.319000px;}
.y2_c00486{bottom:789.304500px;}
.y1_c00486{bottom:813.136500px;}
.hf_c00486{height:49.350000px;}
.he_c00486{height:50.400000px;}
.hd_c00486{height:51.450000px;}
.h11_c00486{height:52.500000px;}
.h10_c00486{height:53.550000px;}
.h12_c00486{height:55.650000px;}
.ha_c00486{height:64.050000px;}
.hb_c00486{height:69.300000px;}
.h4_c00486{height:70.350000px;}
.h3_c00486{height:71.400000px;}
.h7_c00486{height:72.450000px;}
.h2_c00486{height:73.500000px;}
.h9_c00486{height:74.550000px;}
.h5_c00486{height:75.600000px;}
.hc_c00486{height:76.650000px;}
.h6_c00486{height:77.700000px;}
.h8_c00486{height:82.950000px;}
.h1_c00486{height:1005.000000px;}
.h0_c00486{height:1005.150000px;}
.w0_c00486{width:715.200000px;}
.w1_c00486{width:715.500000px;}
.x0_c00486{left:0.000000px;}
.x5c_c00486{left:110.430000px;}
.x5e_c00486{left:112.320000px;}
.x69_c00486{left:128.790000px;}
.x1b_c00486{left:133.920000px;}
.x4_c00486{left:145.800000px;}
.xe_c00486{left:147.150000px;}
.x21_c00486{left:149.310000px;}
.x48_c00486{left:150.390000px;}
.x62_c00486{left:162.270000px;}
.x65_c00486{left:164.970000px;}
.x5f_c00486{left:171.180000px;}
.x43_c00486{left:173.610000px;}
.x1c_c00486{left:178.740000px;}
.x3c_c00486{left:180.630000px;}
.x30_c00486{left:185.793000px;}
.x16_c00486{left:191.160000px;}
.x5_c00486{left:192.780000px;}
.x3f_c00486{left:193.860000px;}
.x58_c00486{left:198.990000px;}
.x66_c00486{left:202.230000px;}
.x60_c00486{left:203.850000px;}
.xf_c00486{left:207.900000px;}
.x5a_c00486{left:211.410000px;}
.x22_c00486{left:212.490000px;}
.x29_c00486{left:214.380000px;}
.x17_c00486{left:216.000000px;}
.x6_c00486{left:217.890000px;}
.x1d_c00486{left:221.400000px;}
.x31_c00486{left:226.090500px;}
.x10_c00486{left:231.660000px;}
.x44_c00486{left:236.250000px;}
.x18_c00486{left:238.140000px;}
.x61_c00486{left:241.110000px;}
.x63_c00486{left:242.460000px;}
.x5d_c00486{left:243.810000px;}
.x4f_c00486{left:249.750000px;}
.x2a_c00486{left:251.910000px;}
.x3d_c00486{left:253.530000px;}
.x7_c00486{left:255.150000px;}
.x2c_c00486{left:258.660000px;}
.x32_c00486{left:260.511000px;}
.x2b_c00486{left:264.600000px;}
.x23_c00486{left:271.350000px;}
.x11_c00486{left:274.320000px;}
.x33_c00486{left:277.255500px;}
.x34_c00486{left:278.908500px;}
.x2e_c00486{left:281.610000px;}
.x1e_c00486{left:285.120000px;}
.x67_c00486{left:287.820000px;}
.x1_c00486{left:289.440000px;}
.x49_c00486{left:290.520000px;}
.x6a_c00486{left:292.680000px;}
.x56_c00486{left:294.300000px;}
.x68_c00486{left:296.190000px;}
.x4b_c00486{left:298.350000px;}
.x50_c00486{left:300.240000px;}
.x45_c00486{left:308.070000px;}
.x24_c00486{left:309.960000px;}
.x51_c00486{left:312.390000px;}
.x35_c00486{left:314.278500px;}
.x12_c00486{left:316.440000px;}
.x64_c00486{left:318.330000px;}
.x2_c00486{left:319.410000px;}
.x4c_c00486{left:322.110000px;}
.x19_c00486{left:326.160000px;}
.x4a_c00486{left:328.320000px;}
.x5b_c00486{left:329.400000px;}
.x25_c00486{left:337.500000px;}
.x13_c00486{left:342.360000px;}
.x59_c00486{left:345.600000px;}
.x8_c00486{left:347.220000px;}
.x6b_c00486{left:352.890000px;}
.x2f_c00486{left:357.210000px;}
.x3e_c00486{left:359.370000px;}
.x6c_c00486{left:362.340000px;}
.x46_c00486{left:365.850000px;}
.x38_c00486{left:367.740000px;}
.x9_c00486{left:370.980000px;}
.x36_c00486{left:372.598500px;}
.x26_c00486{left:374.490000px;}
.x4d_c00486{left:378.810000px;}
.x14_c00486{left:380.160000px;}
.x37_c00486{left:384.478500px;}
.x52_c00486{left:387.720000px;}
.x3_c00486{left:389.340000px;}
.x1a_c00486{left:393.120000px;}
.x40_c00486{left:403.110000px;}
.x47_c00486{left:406.080000px;}
.x73_c00486{left:408.510000px;}
.x27_c00486{left:409.860000px;}
.x53_c00486{left:411.210000px;}
.xa_c00486{left:413.100000px;}
.x39_c00486{left:416.610000px;}
.x2d_c00486{left:418.500000px;}
.x15_c00486{left:420.660000px;}
.x41_c00486{left:428.220000px;}
.x28_c00486{left:436.860000px;}
.xb_c00486{left:443.610000px;}
.x1f_c00486{left:447.660000px;}
.xc_c00486{left:465.750000px;}
.x6f_c00486{left:469.800000px;}
.x6d_c00486{left:471.420000px;}
.x20_c00486{left:473.850000px;}
.x3a_c00486{left:487.080000px;}
.xd_c00486{left:488.160000px;}
.x77_c00486{left:500.310000px;}
.x74_c00486{left:501.660000px;}
.x70_c00486{left:505.980000px;}
.x54_c00486{left:510.840000px;}
.x4e_c00486{left:512.460000px;}
.x6e_c00486{left:517.590000px;}
.x3b_c00486{left:520.290000px;}
.x42_c00486{left:532.170000px;}
.x71_c00486{left:534.060000px;}
.x78_c00486{left:536.760000px;}
.x75_c00486{left:550.260000px;}
.x72_c00486{left:552.960000px;}
.x57_c00486{left:556.470000px;}
.x76_c00486{left:564.300000px;}
.x55_c00486{left:569.700000px;}
.x79_c00486{left:585.090000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
._0_c00486{width:20.608346pt;}
.fsd_c00486{font-size:43.866667pt;}
.fsc_c00486{font-size:44.800000pt;}
.fsb_c00486{font-size:45.733333pt;}
.fsf_c00486{font-size:46.666667pt;}
.fse_c00486{font-size:47.600000pt;}
.fs10_c00486{font-size:49.466667pt;}
.fs8_c00486{font-size:56.933333pt;}
.fs9_c00486{font-size:61.600000pt;}
.fs2_c00486{font-size:62.533333pt;}
.fs1_c00486{font-size:63.466667pt;}
.fs5_c00486{font-size:64.400000pt;}
.fs0_c00486{font-size:65.333333pt;}
.fs7_c00486{font-size:66.266667pt;}
.fs3_c00486{font-size:67.200000pt;}
.fsa_c00486{font-size:68.133333pt;}
.fs4_c00486{font-size:69.066667pt;}
.fs6_c00486{font-size:73.733333pt;}
.y0_c00486{bottom:0.000000pt;}
.y1f_c00486{bottom:115.520000pt;}
.y1e_c00486{bottom:139.044000pt;}
.y1d_c00486{bottom:155.408000pt;}
.y20_c00486{bottom:155.614667pt;}
.y23_c00486{bottom:171.360000pt;}
.y1c_c00486{bottom:171.446667pt;}
.y1b_c00486{bottom:187.048000pt;}
.y22_c00486{bottom:187.958667pt;}
.y1a_c00486{bottom:202.754667pt;}
.y21_c00486{bottom:203.969333pt;}
.y19_c00486{bottom:337.289333pt;}
.y18_c00486{bottom:357.766667pt;}
.y17_c00486{bottom:378.700000pt;}
.y16_c00486{bottom:398.377333pt;}
.y15_c00486{bottom:418.793333pt;}
.y14_c00486{bottom:438.750667pt;}
.y13_c00486{bottom:458.693333pt;}
.y12_c00486{bottom:479.036000pt;}
.y11_c00486{bottom:499.289333pt;}
.y10_c00486{bottom:520.430667pt;}
.yf_c00486{bottom:540.238667pt;}
.y9_c00486{bottom:558.486667pt;}
.ya_c00486{bottom:559.145333pt;}
.yb_c00486{bottom:559.825333pt;}
.yc_c00486{bottom:560.406667pt;}
.yd_c00486{bottom:560.689333pt;}
.ye_c00486{bottom:561.253333pt;}
.y8_c00486{bottom:579.485333pt;}
.y7_c00486{bottom:600.240000pt;}
.y6_c00486{bottom:620.804000pt;}
.y5_c00486{bottom:640.381333pt;}
.y4_c00486{bottom:661.490667pt;}
.y3_c00486{bottom:682.061333pt;}
.y2_c00486{bottom:701.604000pt;}
.y1_c00486{bottom:722.788000pt;}
.hf_c00486{height:43.866667pt;}
.he_c00486{height:44.800000pt;}
.hd_c00486{height:45.733333pt;}
.h11_c00486{height:46.666667pt;}
.h10_c00486{height:47.600000pt;}
.h12_c00486{height:49.466667pt;}
.ha_c00486{height:56.933333pt;}
.hb_c00486{height:61.600000pt;}
.h4_c00486{height:62.533333pt;}
.h3_c00486{height:63.466667pt;}
.h7_c00486{height:64.400000pt;}
.h2_c00486{height:65.333333pt;}
.h9_c00486{height:66.266667pt;}
.h5_c00486{height:67.200000pt;}
.hc_c00486{height:68.133333pt;}
.h6_c00486{height:69.066667pt;}
.h8_c00486{height:73.733333pt;}
.h1_c00486{height:893.333333pt;}
.h0_c00486{height:893.466667pt;}
.w0_c00486{width:635.733333pt;}
.w1_c00486{width:636.000000pt;}
.x0_c00486{left:0.000000pt;}
.x5c_c00486{left:98.160000pt;}
.x5e_c00486{left:99.840000pt;}
.x69_c00486{left:114.480000pt;}
.x1b_c00486{left:119.040000pt;}
.x4_c00486{left:129.600000pt;}
.xe_c00486{left:130.800000pt;}
.x21_c00486{left:132.720000pt;}
.x48_c00486{left:133.680000pt;}
.x62_c00486{left:144.240000pt;}
.x65_c00486{left:146.640000pt;}
.x5f_c00486{left:152.160000pt;}
.x43_c00486{left:154.320000pt;}
.x1c_c00486{left:158.880000pt;}
.x3c_c00486{left:160.560000pt;}
.x30_c00486{left:165.149333pt;}
.x16_c00486{left:169.920000pt;}
.x5_c00486{left:171.360000pt;}
.x3f_c00486{left:172.320000pt;}
.x58_c00486{left:176.880000pt;}
.x66_c00486{left:179.760000pt;}
.x60_c00486{left:181.200000pt;}
.xf_c00486{left:184.800000pt;}
.x5a_c00486{left:187.920000pt;}
.x22_c00486{left:188.880000pt;}
.x29_c00486{left:190.560000pt;}
.x17_c00486{left:192.000000pt;}
.x6_c00486{left:193.680000pt;}
.x1d_c00486{left:196.800000pt;}
.x31_c00486{left:200.969333pt;}
.x10_c00486{left:205.920000pt;}
.x44_c00486{left:210.000000pt;}
.x18_c00486{left:211.680000pt;}
.x61_c00486{left:214.320000pt;}
.x63_c00486{left:215.520000pt;}
.x5d_c00486{left:216.720000pt;}
.x4f_c00486{left:222.000000pt;}
.x2a_c00486{left:223.920000pt;}
.x3d_c00486{left:225.360000pt;}
.x7_c00486{left:226.800000pt;}
.x2c_c00486{left:229.920000pt;}
.x32_c00486{left:231.565333pt;}
.x2b_c00486{left:235.200000pt;}
.x23_c00486{left:241.200000pt;}
.x11_c00486{left:243.840000pt;}
.x33_c00486{left:246.449333pt;}
.x34_c00486{left:247.918667pt;}
.x2e_c00486{left:250.320000pt;}
.x1e_c00486{left:253.440000pt;}
.x67_c00486{left:255.840000pt;}
.x1_c00486{left:257.280000pt;}
.x49_c00486{left:258.240000pt;}
.x6a_c00486{left:260.160000pt;}
.x56_c00486{left:261.600000pt;}
.x68_c00486{left:263.280000pt;}
.x4b_c00486{left:265.200000pt;}
.x50_c00486{left:266.880000pt;}
.x45_c00486{left:273.840000pt;}
.x24_c00486{left:275.520000pt;}
.x51_c00486{left:277.680000pt;}
.x35_c00486{left:279.358667pt;}
.x12_c00486{left:281.280000pt;}
.x64_c00486{left:282.960000pt;}
.x2_c00486{left:283.920000pt;}
.x4c_c00486{left:286.320000pt;}
.x19_c00486{left:289.920000pt;}
.x4a_c00486{left:291.840000pt;}
.x5b_c00486{left:292.800000pt;}
.x25_c00486{left:300.000000pt;}
.x13_c00486{left:304.320000pt;}
.x59_c00486{left:307.200000pt;}
.x8_c00486{left:308.640000pt;}
.x6b_c00486{left:313.680000pt;}
.x2f_c00486{left:317.520000pt;}
.x3e_c00486{left:319.440000pt;}
.x6c_c00486{left:322.080000pt;}
.x46_c00486{left:325.200000pt;}
.x38_c00486{left:326.880000pt;}
.x9_c00486{left:329.760000pt;}
.x36_c00486{left:331.198667pt;}
.x26_c00486{left:332.880000pt;}
.x4d_c00486{left:336.720000pt;}
.x14_c00486{left:337.920000pt;}
.x37_c00486{left:341.758667pt;}
.x52_c00486{left:344.640000pt;}
.x3_c00486{left:346.080000pt;}
.x1a_c00486{left:349.440000pt;}
.x40_c00486{left:358.320000pt;}
.x47_c00486{left:360.960000pt;}
.x73_c00486{left:363.120000pt;}
.x27_c00486{left:364.320000pt;}
.x53_c00486{left:365.520000pt;}
.xa_c00486{left:367.200000pt;}
.x39_c00486{left:370.320000pt;}
.x2d_c00486{left:372.000000pt;}
.x15_c00486{left:373.920000pt;}
.x41_c00486{left:380.640000pt;}
.x28_c00486{left:388.320000pt;}
.xb_c00486{left:394.320000pt;}
.x1f_c00486{left:397.920000pt;}
.xc_c00486{left:414.000000pt;}
.x6f_c00486{left:417.600000pt;}
.x6d_c00486{left:419.040000pt;}
.x20_c00486{left:421.200000pt;}
.x3a_c00486{left:432.960000pt;}
.xd_c00486{left:433.920000pt;}
.x77_c00486{left:444.720000pt;}
.x74_c00486{left:445.920000pt;}
.x70_c00486{left:449.760000pt;}
.x54_c00486{left:454.080000pt;}
.x4e_c00486{left:455.520000pt;}
.x6e_c00486{left:460.080000pt;}
.x3b_c00486{left:462.480000pt;}
.x42_c00486{left:473.040000pt;}
.x71_c00486{left:474.720000pt;}
.x78_c00486{left:477.120000pt;}
.x75_c00486{left:489.120000pt;}
.x72_c00486{left:491.520000pt;}
.x57_c00486{left:494.640000pt;}
.x76_c00486{left:501.600000pt;}
.x55_c00486{left:506.400000pt;}
.x79_c00486{left:520.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.m45_c00487{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);}
.m11c_c00487{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);}
.md7_c00487{transform:matrix(0.077145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00487{transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112910,0.000000,0.000000,0.250000,0,0);}
.md3_c00487{transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122720,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135130,0.000000,0.000000,0.250000,0,0);}
.md6_c00487{transform:matrix(0.135585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135585,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.136310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136310,0.000000,0.000000,0.250000,0,0);}
.mce_c00487{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);}
.m118_c00487{transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.140253,-0.001403,0.002500,0.249988,0,0);-ms-transform:matrix(0.140253,-0.001403,0.002500,0.249988,0,0);-webkit-transform:matrix(0.140253,-0.001403,0.002500,0.249988,0,0);}
.m1b_c00487{transform:matrix(0.140498,-0.001405,0.002500,0.249988,0,0);-ms-transform:matrix(0.140498,-0.001405,0.002500,0.249988,0,0);-webkit-transform:matrix(0.140498,-0.001405,0.002500,0.249988,0,0);}
.m62_c00487{transform:matrix(0.142185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142185,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);}
.mbb_c00487{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);}
.m1f_c00487{transform:matrix(0.148818,-0.001488,0.002500,0.249988,0,0);-ms-transform:matrix(0.148818,-0.001488,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148818,-0.001488,0.002500,0.249988,0,0);}
.m11a_c00487{transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);}
.m127_c00487{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.152485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152485,0.000000,0.000000,0.250000,0,0);}
.m108_c00487{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);}
.mb3_c00487{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m113_c00487{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);}
.m29_c00487{transform:matrix(0.154947,-0.001549,0.002500,0.249988,0,0);-ms-transform:matrix(0.154947,-0.001549,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154947,-0.001549,0.002500,0.249988,0,0);}
.m4c_c00487{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);}
.m114_c00487{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);}
.m67_c00487{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);}
.m1a_c00487{transform:matrix(0.156742,-0.001567,0.002500,0.249988,0,0);-ms-transform:matrix(0.156742,-0.001567,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156742,-0.001567,0.002500,0.249988,0,0);}
.m6e_c00487{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);}
.m27_c00487{transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158117,-0.001581,0.002500,0.249988,0,0);}
.m14_c00487{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);}
.m111_c00487{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);}
.m69_c00487{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);}
.m30_c00487{transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);}
.m10b_c00487{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);}
.mcb_c00487{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);}
.m49_c00487{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);}
.m44_c00487{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);}
.m4d_c00487{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{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);}
.m106_c00487{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);}
.m16_c00487{transform:matrix(0.164557,-0.001646,0.002500,0.249988,0,0);-ms-transform:matrix(0.164557,-0.001646,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164557,-0.001646,0.002500,0.249988,0,0);}
.m47_c00487{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);}
.ma5_c00487{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);}
.m6a_c00487{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);}
.m31_c00487{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);}
.m74_c00487{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);}
.m40_c00487{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);}
.m28_c00487{transform:matrix(0.167782,-0.001678,0.002500,0.249988,0,0);-ms-transform:matrix(0.167782,-0.001678,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167782,-0.001678,0.002500,0.249988,0,0);}
.m133_c00487{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);}
.m3f_c00487{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);}
.mfd_c00487{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);}
.ma2_c00487{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);}
.me2_c00487{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);}
.m7b_c00487{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);}
.m80_c00487{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);}
.m6d_c00487{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);}
.m5e_c00487{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);}
.me0_c00487{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);}
.m72_c00487{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);}
.mf3_c00487{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);}
.m3a_c00487{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);}
.m96_c00487{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);}
.m1c_c00487{transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);-ms-transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171771,-0.001718,0.002500,0.249988,0,0);}
.m23_c00487{transform:matrix(0.172051,-0.001721,0.002500,0.249988,0,0);-ms-transform:matrix(0.172051,-0.001721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172051,-0.001721,0.002500,0.249988,0,0);}
.m3d_c00487{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);}
.m107_c00487{transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172430,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{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);}
.m126_c00487{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);}
.m3e_c00487{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);}
.med_c00487{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);}
.m60_c00487{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);}
.m20_c00487{transform:matrix(0.174566,-0.001746,0.002500,0.249988,0,0);-ms-transform:matrix(0.174566,-0.001746,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174566,-0.001746,0.002500,0.249988,0,0);}
.m13d_c00487{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);}
.mf8_c00487{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);}
.m68_c00487{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);}
.m105_c00487{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);}
.m64_c00487{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);}
.m42_c00487{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);}
.maa_c00487{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);}
.m98_c00487{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);}
.m112_c00487{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);}
.m4f_c00487{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);}
.mb2_c00487{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);}
.m63_c00487{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);}
.m130_c00487{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);}
.m66_c00487{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);}
.m11_c00487{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);}
.m135_c00487{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);}
.m13_c00487{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);}
.mfa_c00487{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);}
.m2a_c00487{transform:matrix(0.178756,-0.001788,0.002500,0.249988,0,0);-ms-transform:matrix(0.178756,-0.001788,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178756,-0.001788,0.002500,0.249988,0,0);}
.mf6_c00487{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);}
.m2b_c00487{transform:matrix(0.179201,-0.001792,0.002500,0.249988,0,0);-ms-transform:matrix(0.179201,-0.001792,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179201,-0.001792,0.002500,0.249988,0,0);}
.m2d_c00487{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);}
.mc7_c00487{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);}
.m12_c00487{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);}
.m3c_c00487{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);}
.mea_c00487{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);}
.m12d_c00487{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);}
.mb1_c00487{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);}
.m10a_c00487{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);}
.m38_c00487{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);}
.m88_c00487{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);}
.m102_c00487{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);}
.mc0_c00487{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);}
.ma8_c00487{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);}
.m6c_c00487{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_c00487{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);}
.m25_c00487{transform:matrix(0.182701,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182701,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182701,-0.001827,0.002500,0.249988,0,0);}
.ma4_c00487{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);}
.m65_c00487{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);}
.m5b_c00487{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);}
.ma0_c00487{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);}
.m4e_c00487{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);}
.mcc_c00487{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);}
.m139_c00487{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);}
.mf2_c00487{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);}
.m6b_c00487{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);}
.m48_c00487{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);}
.mbf_c00487{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);}
.mfe_c00487{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);}
.m35_c00487{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);}
.m19_c00487{transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186631,-0.001866,0.002500,0.249988,0,0);}
.m128_c00487{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);}
.m21_c00487{transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);}
.mfb_c00487{transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187565,0.000000,0.000000,0.250000,0,0);}
.m10e_c00487{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);}
.m138_c00487{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);}
.m13c_c00487{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);}
.m13a_c00487{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);}
.m76_c00487{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);}
.m75_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);}
.m103_c00487{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);}
.mf1_c00487{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);}
.mdd_c00487{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);}
.m5f_c00487{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);}
.mc9_c00487{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);}
.md0_c00487{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);}
.m5d_c00487{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);}
.mf_c00487{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);}
.me6_c00487{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);}
.m59_c00487{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);}
.mdf_c00487{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);}
.m39_c00487{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);}
.md2_c00487{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);}
.m89_c00487{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);}
.m11b_c00487{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);}
.ma9_c00487{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);}
.m115_c00487{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);}
.m4b_c00487{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);}
.m36_c00487{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_c00487{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);}
.mf4_c00487{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);}
.m8f_c00487{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);}
.m8b_c00487{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);}
.mab_c00487{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);}
.m83_c00487{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);}
.m9e_c00487{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);}
.m95_c00487{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);}
.m10_c00487{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);}
.m121_c00487{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);}
.m93_c00487{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);}
.mc6_c00487{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);}
.md8_c00487{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);}
.m43_c00487{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);}
.m9a_c00487{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);}
.mdc_c00487{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);}
.m90_c00487{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);}
.m24_c00487{transform:matrix(0.197810,-0.001978,0.002500,0.249988,0,0);-ms-transform:matrix(0.197810,-0.001978,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197810,-0.001978,0.002500,0.249988,0,0);}
.m22_c00487{transform:matrix(0.197970,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.197970,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197970,-0.001980,0.002500,0.249988,0,0);}
.m132_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);}
.mad_c00487{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);}
.m13b_c00487{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);}
.m10d_c00487{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);}
.ma6_c00487{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);}
.mf7_c00487{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);}
.mee_c00487{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);}
.m71_c00487{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);}
.mb0_c00487{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);}
.m104_c00487{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);}
.m2f_c00487{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);}
.mb7_c00487{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);}
.m99_c00487{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);}
.m134_c00487{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);}
.m5a_c00487{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);}
.m79_c00487{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);}
.m119_c00487{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);}
.ma3_c00487{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);}
.m5c_c00487{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);}
.m125_c00487{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_c00487{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);}
.m73_c00487{transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);}
.mb6_c00487{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);}
.mef_c00487{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);}
.mba_c00487{transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204490,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{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);}
.m61_c00487{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);}
.m82_c00487{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);}
.m10c_c00487{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);}
.m92_c00487{transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205640,0.000000,0.000000,0.250000,0,0);}
.mda_c00487{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);}
.m7f_c00487{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);}
.me7_c00487{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);}
.ma1_c00487{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);}
.mdb_c00487{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);}
.m129_c00487{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);}
.m7e_c00487{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);}
.ma_c00487{transform:matrix(0.209493,-0.009437,0.011250,0.249747,0,0);-ms-transform:matrix(0.209493,-0.009437,0.011250,0.249747,0,0);-webkit-transform:matrix(0.209493,-0.009437,0.011250,0.249747,0,0);}
.m100_c00487{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);}
.m81_c00487{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);}
.m7a_c00487{transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210470,0.000000,0.000000,0.250000,0,0);}
.mf9_c00487{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m137_c00487{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);}
.m50_c00487{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);}
.m70_c00487{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);}
.m58_c00487{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);}
.m15_c00487{transform:matrix(0.211234,-0.002112,0.002500,0.249988,0,0);-ms-transform:matrix(0.211234,-0.002112,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211234,-0.002112,0.002500,0.249988,0,0);}
.mfc_c00487{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);}
.m101_c00487{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);}
.mf0_c00487{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);}
.m11e_c00487{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);}
.m7c_c00487{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);}
.mb8_c00487{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);}
.m53_c00487{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);}
.mf5_c00487{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);}
.m1d_c00487{transform:matrix(0.214169,-0.002142,0.002500,0.249988,0,0);-ms-transform:matrix(0.214169,-0.002142,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214169,-0.002142,0.002500,0.249988,0,0);}
.m12e_c00487{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.mb9_c00487{transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214510,0.000000,0.000000,0.250000,0,0);}
.md1_c00487{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);}
.mec_c00487{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);}
.m8c_c00487{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);}
.m26_c00487{transform:matrix(0.215154,-0.002152,0.002500,0.249988,0,0);-ms-transform:matrix(0.215154,-0.002152,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215154,-0.002152,0.002500,0.249988,0,0);}
.m57_c00487{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);}
.mcd_c00487{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);}
.m91_c00487{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);}
.mac_c00487{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);}
.ma7_c00487{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);}
.m51_c00487{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);}
.m87_c00487{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);}
.m110_c00487{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);}
.m94_c00487{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);}
.m97_c00487{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);}
.mc8_c00487{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);}
.m11f_c00487{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.m124_c00487{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);}
.m78_c00487{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);}
.m2_c00487{transform:matrix(0.223039,-0.002676,0.003000,0.249982,0,0);-ms-transform:matrix(0.223039,-0.002676,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223039,-0.002676,0.003000,0.249982,0,0);}
.m122_c00487{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);}
.m7d_c00487{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);}
.mc5_c00487{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m12b_c00487{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);}
.md4_c00487{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);}
.m12f_c00487{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);}
.m120_c00487{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);}
.mb5_c00487{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);}
.m9c_c00487{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{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);}
.m55_c00487{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);}
.me3_c00487{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.me9_c00487{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);}
.m109_c00487{transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230885,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.md9_c00487{transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232385,0.000000,0.000000,0.250000,0,0);}
.m12c_c00487{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);}
.m8_c00487{transform:matrix(0.234657,-0.010570,0.011250,0.249747,0,0);-ms-transform:matrix(0.234657,-0.010570,0.011250,0.249747,0,0);-webkit-transform:matrix(0.234657,-0.010570,0.011250,0.249747,0,0);}
.m37_c00487{transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{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);}
.m1e_c00487{transform:matrix(0.236393,-0.002364,0.002500,0.249988,0,0);-ms-transform:matrix(0.236393,-0.002364,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236393,-0.002364,0.002500,0.249988,0,0);}
.m9d_c00487{transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{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);}
.m12a_c00487{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.mc1_c00487{transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239855,0.000000,0.000000,0.250000,0,0);}
.m117_c00487{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);}
.m131_c00487{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);}
.mc3_c00487{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);}
.m9_c00487{transform:matrix(0.244447,-0.011011,0.011250,0.249747,0,0);-ms-transform:matrix(0.244447,-0.011011,0.011250,0.249747,0,0);-webkit-transform:matrix(0.244447,-0.011011,0.011250,0.249747,0,0);}
.mae_c00487{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{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);}
.m8d_c00487{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.m34_c00487{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00487{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.mca_c00487{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m8e_c00487{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);}
.mc4_c00487{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.251010,-0.011307,0.011250,0.249747,0,0);-ms-transform:matrix(0.251010,-0.011307,0.011250,0.249747,0,0);-webkit-transform:matrix(0.251010,-0.011307,0.011250,0.249747,0,0);}
.mbe_c00487{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);}
.m8a_c00487{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m11d_c00487{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);}
.mb4_c00487{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);}
.me1_c00487{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);}
.mde_c00487{transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254955,0.000000,0.000000,0.250000,0,0);}
.m10f_c00487{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);}
.meb_c00487{transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);}
.mff_c00487{transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);}
.me5_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);}
.m6f_c00487{transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259895,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);}
.mcf_c00487{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m116_c00487{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.mbc_c00487{transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271115,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.275470,-0.003306,0.003000,0.249982,0,0);-ms-transform:matrix(0.275470,-0.003306,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275470,-0.003306,0.003000,0.249982,0,0);}
.m6_c00487{transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.282501,-0.002825,0.002500,0.249988,0,0);-ms-transform:matrix(0.282501,-0.002825,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282501,-0.002825,0.002500,0.249988,0,0);}
.m136_c00487{transform:matrix(0.284955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284955,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.305970,-0.013782,0.011250,0.249747,0,0);-ms-transform:matrix(0.305970,-0.013782,0.011250,0.249747,0,0);-webkit-transform:matrix(0.305970,-0.013782,0.011250,0.249747,0,0);}
.md5_c00487{transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314120,0.000000,0.000000,0.250000,0,0);}
.maf_c00487{transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315840,0.000000,0.000000,0.250000,0,0);}
.m123_c00487{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);}
.m18_c00487{transform:matrix(0.324304,-0.003243,0.002500,0.249988,0,0);-ms-transform:matrix(0.324304,-0.003243,0.002500,0.249988,0,0);-webkit-transform:matrix(0.324304,-0.003243,0.002500,0.249988,0,0);}
.m56_c00487{transform:matrix(0.330040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330040,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.346120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346120,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.349075,-0.004189,0.003000,0.249982,0,0);-ms-transform:matrix(0.349075,-0.004189,0.003000,0.249982,0,0);-webkit-transform:matrix(0.349075,-0.004189,0.003000,0.249982,0,0);}
.md_c00487{transform:matrix(0.357483,-0.016103,0.011250,0.249747,0,0);-ms-transform:matrix(0.357483,-0.016103,0.011250,0.249747,0,0);-webkit-transform:matrix(0.357483,-0.016103,0.011250,0.249747,0,0);}
.m3_c00487{transform:matrix(0.359554,-0.004315,0.003000,0.249982,0,0);-ms-transform:matrix(0.359554,-0.004315,0.003000,0.249982,0,0);-webkit-transform:matrix(0.359554,-0.004315,0.003000,0.249982,0,0);}
.mbd_c00487{transform:matrix(0.404950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404950,0.000000,0.000000,0.250000,0,0);}
.me8_c00487{transform:matrix(0.613960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613960,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.622570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622570,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;}
.fs2_c00487{font-size:23.100000px;}
.fs12_c00487{font-size:48.300000px;}
.fs11_c00487{font-size:49.350000px;}
.fs10_c00487{font-size:50.400000px;}
.fsf_c00487{font-size:51.450000px;}
.fs13_c00487{font-size:52.500000px;}
.fse_c00487{font-size:53.550000px;}
.fs16_c00487{font-size:54.600000px;}
.fs17_c00487{font-size:55.650000px;}
.fs15_c00487{font-size:57.750000px;}
.fs14_c00487{font-size:58.800000px;}
.fs3_c00487{font-size:59.850778px;}
.fs18_c00487{font-size:67.200000px;}
.fsd_c00487{font-size:71.400000px;}
.fs7_c00487{font-size:71.403570px;}
.fs9_c00487{font-size:72.450000px;}
.fs8_c00487{font-size:72.453622px;}
.fsa_c00487{font-size:73.500000px;}
.fs4_c00487{font-size:74.550000px;}
.fsb_c00487{font-size:75.600000px;}
.fsc_c00487{font-size:76.650000px;}
.fs6_c00487{font-size:79.803990px;}
.fs5_c00487{font-size:87.150000px;}
.fs0_c00487{font-size:93.456728px;}
.fs1_c00487{font-size:97.650000px;}
.y0_c00487{bottom:0.000000px;}
.y45_c00487{bottom:136.741500px;}
.y55_c00487{bottom:137.188500px;}
.y44_c00487{bottom:154.572000px;}
.y54_c00487{bottom:154.980000px;}
.y43_c00487{bottom:172.750500px;}
.y53_c00487{bottom:173.299500px;}
.y42_c00487{bottom:191.295000px;}
.y52_c00487{bottom:191.316000px;}
.y41_c00487{bottom:209.277000px;}
.y47_c00487{bottom:209.670000px;}
.y40_c00487{bottom:226.966500px;}
.y46_c00487{bottom:227.070000px;}
.y51_c00487{bottom:228.420000px;}
.y3f_c00487{bottom:245.002500px;}
.y50_c00487{bottom:245.052000px;}
.y4f_c00487{bottom:263.088000px;}
.y3e_c00487{bottom:263.431500px;}
.y4e_c00487{bottom:281.766000px;}
.y3d_c00487{bottom:281.904000px;}
.y3c_c00487{bottom:299.683500px;}
.y4d_c00487{bottom:299.812500px;}
.y3b_c00487{bottom:317.616000px;}
.y4c_c00487{bottom:318.330000px;}
.y3a_c00487{bottom:336.099000px;}
.y4b_c00487{bottom:336.846000px;}
.y39_c00487{bottom:354.073500px;}
.y4a_c00487{bottom:354.936000px;}
.y38_c00487{bottom:372.009000px;}
.y49_c00487{bottom:372.870000px;}
.y37_c00487{bottom:390.468000px;}
.y48_c00487{bottom:390.850500px;}
.y36_c00487{bottom:427.222500px;}
.y35_c00487{bottom:450.493500px;}
.y34_c00487{bottom:473.358000px;}
.y33_c00487{bottom:495.450000px;}
.y32_c00487{bottom:518.401500px;}
.y2a_c00487{bottom:541.081500px;}
.y2b_c00487{bottom:541.582500px;}
.y2c_c00487{bottom:541.798500px;}
.y2d_c00487{bottom:542.245500px;}
.y2e_c00487{bottom:542.446500px;}
.y2f_c00487{bottom:542.728500px;}
.y30_c00487{bottom:543.412500px;}
.y31_c00487{bottom:544.336500px;}
.y29_c00487{bottom:565.222500px;}
.y28_c00487{bottom:588.355500px;}
.y21_c00487{bottom:609.660495px;}
.y22_c00487{bottom:610.454070px;}
.y23_c00487{bottom:611.156415px;}
.y24_c00487{bottom:611.457120px;}
.y25_c00487{bottom:611.681430px;}
.y26_c00487{bottom:612.186540px;}
.y27_c00487{bottom:612.636915px;}
.y18_c00487{bottom:632.881095px;}
.y19_c00487{bottom:633.208005px;}
.y1a_c00487{bottom:633.686655px;}
.y1b_c00487{bottom:633.981870px;}
.y1c_c00487{bottom:634.520520px;}
.y1d_c00487{bottom:635.266035px;}
.y1e_c00487{bottom:635.453670px;}
.y1f_c00487{bottom:635.797395px;}
.y20_c00487{bottom:636.309525px;}
.y10_c00487{bottom:655.021500px;}
.y11_c00487{bottom:655.431855px;}
.y12_c00487{bottom:656.247615px;}
.y13_c00487{bottom:657.009090px;}
.y14_c00487{bottom:657.192570px;}
.y15_c00487{bottom:657.589335px;}
.y16_c00487{bottom:657.894285px;}
.y17_c00487{bottom:658.040325px;}
.y8_c00487{bottom:674.763000px;}
.y9_c00487{bottom:675.918263px;}
.yf_c00487{bottom:676.080000px;}
.ya_c00487{bottom:678.517890px;}
.yb_c00487{bottom:679.842510px;}
.yc_c00487{bottom:680.866553px;}
.yd_c00487{bottom:683.107013px;}
.ye_c00487{bottom:702.696000px;}
.y7_c00487{bottom:723.330000px;}
.y6_c00487{bottom:760.693500px;}
.y1_c00487{bottom:798.121500px;}
.y2_c00487{bottom:798.783234px;}
.y3_c00487{bottom:799.537524px;}
.y4_c00487{bottom:800.136888px;}
.y5_c00487{bottom:800.940660px;}
.h4_c00487{height:23.100000px;}
.h14_c00487{height:48.300000px;}
.h13_c00487{height:49.350000px;}
.h12_c00487{height:50.400000px;}
.h11_c00487{height:51.450000px;}
.h15_c00487{height:52.500000px;}
.h10_c00487{height:53.550000px;}
.h18_c00487{height:54.600000px;}
.h19_c00487{height:55.650000px;}
.h17_c00487{height:57.750000px;}
.h16_c00487{height:58.800000px;}
.h5_c00487{height:59.850778px;}
.h1a_c00487{height:67.200000px;}
.hf_c00487{height:71.400000px;}
.h9_c00487{height:71.403570px;}
.hb_c00487{height:72.450000px;}
.ha_c00487{height:72.453622px;}
.hc_c00487{height:73.500000px;}
.h6_c00487{height:74.550000px;}
.hd_c00487{height:75.600000px;}
.he_c00487{height:76.650000px;}
.h8_c00487{height:79.803990px;}
.h7_c00487{height:87.150000px;}
.h2_c00487{height:93.456728px;}
.h3_c00487{height:97.650000px;}
.h0_c00487{height:1008.450000px;}
.h1_c00487{height:1008.750000px;}
.w1_c00487{width:700.500000px;}
.w0_c00487{width:700.650000px;}
.x0_c00487{left:0.000000px;}
.x55_c00487{left:139.050000px;}
.x5e_c00487{left:140.130000px;}
.x63_c00487{left:141.210000px;}
.x70_c00487{left:142.290000px;}
.x77_c00487{left:143.370000px;}
.x53_c00487{left:151.740000px;}
.x5b_c00487{left:155.790000px;}
.x56_c00487{left:158.760000px;}
.x61_c00487{left:161.190000px;}
.x54_c00487{left:162.540000px;}
.x45_c00487{left:166.320000px;}
.x74_c00487{left:167.400000px;}
.x3b_c00487{left:168.478500px;}
.x2f_c00487{left:172.260000px;}
.x9_c00487{left:174.067500px;}
.x15_c00487{left:175.108500px;}
.x1c_c00487{left:176.189490px;}
.x78_c00487{left:177.930000px;}
.x58_c00487{left:179.550000px;}
.x64_c00487{left:181.440000px;}
.x7b_c00487{left:186.570000px;}
.x71_c00487{left:188.460000px;}
.x6c_c00487{left:189.810000px;}
.x8_c00487{left:193.860000px;}
.x5c_c00487{left:195.210000px;}
.xa_c00487{left:199.714328px;}
.x30_c00487{left:201.960000px;}
.x1d_c00487{left:203.479950px;}
.x6a_c00487{left:207.090000px;}
.x79_c00487{left:208.440000px;}
.x5d_c00487{left:211.680000px;}
.x16_c00487{left:216.144000px;}
.x4d_c00487{left:217.620000px;}
.x7c_c00487{left:218.970000px;}
.x75_c00487{left:220.320000px;}
.x3c_c00487{left:225.178500px;}
.x2a_c00487{left:226.260000px;}
.x37_c00487{left:228.541500px;}
.x6b_c00487{left:229.770000px;}
.x6d_c00487{left:232.200000px;}
.x31_c00487{left:234.630000px;}
.x73_c00487{left:236.250000px;}
.x24_c00487{left:241.017720px;}
.x1e_c00487{left:243.394155px;}
.x59_c00487{left:246.510000px;}
.x1_c00487{left:252.882000px;}
.xb_c00487{left:257.426058px;}
.x72_c00487{left:260.010000px;}
.x65_c00487{left:261.630000px;}
.x32_c00487{left:262.710000px;}
.x3d_c00487{left:265.678500px;}
.x1f_c00487{left:267.965160px;}
.x7d_c00487{left:269.730000px;}
.x7a_c00487{left:270.810000px;}
.x66_c00487{left:274.320000px;}
.x4e_c00487{left:276.210000px;}
.x46_c00487{left:279.720000px;}
.x5f_c00487{left:281.610000px;}
.x6e_c00487{left:282.960000px;}
.x68_c00487{left:284.040000px;}
.xc_c00487{left:286.832622px;}
.x3e_c00487{left:291.598500px;}
.x6_c00487{left:298.350000px;}
.x25_c00487{left:299.551050px;}
.x38_c00487{left:302.247000px;}
.x2_c00487{left:308.026500px;}
.xd_c00487{left:309.566366px;}
.x42_c00487{left:311.310000px;}
.x20_c00487{left:312.829260px;}
.x4f_c00487{left:314.550000px;}
.x33_c00487{left:316.710000px;}
.x47_c00487{left:319.140000px;}
.x5a_c00487{left:320.490000px;}
.x2b_c00487{left:322.380000px;}
.x26_c00487{left:324.671055px;}
.x60_c00487{left:328.320000px;}
.x76_c00487{left:330.750000px;}
.x67_c00487{left:332.100000px;}
.x43_c00487{left:335.610000px;}
.x3f_c00487{left:338.308500px;}
.x50_c00487{left:341.280000px;}
.x27_c00487{left:343.351680px;}
.x2c_c00487{left:346.950000px;}
.x62_c00487{left:348.030000px;}
.x57_c00487{left:350.190000px;}
.x69_c00487{left:353.160000px;}
.x6f_c00487{left:354.240000px;}
.x39_c00487{left:355.984500px;}
.x40_c00487{left:357.208500px;}
.xe_c00487{left:359.304577px;}
.x44_c00487{left:362.610000px;}
.x3_c00487{left:370.884000px;}
.x17_c00487{left:373.867500px;}
.x21_c00487{left:374.929515px;}
.xf_c00487{left:376.920000px;}
.x4b_c00487{left:378.810000px;}
.x41_c00487{left:380.428500px;}
.x80_c00487{left:382.320000px;}
.x34_c00487{left:383.400000px;}
.x28_c00487{left:385.461840px;}
.x2d_c00487{left:388.530000px;}
.x22_c00487{left:390.542700px;}
.x18_c00487{left:392.215500px;}
.xb2_c00487{left:393.390000px;}
.x12_c00487{left:395.010000px;}
.x85_c00487{left:402.840000px;}
.x94_c00487{left:406.620000px;}
.x10_c00487{left:412.020000px;}
.xb6_c00487{left:416.070000px;}
.x48_c00487{left:417.150000px;}
.x23_c00487{left:419.214630px;}
.x4_c00487{left:420.831000px;}
.x29_c00487{left:422.998590px;}
.x8b_c00487{left:424.710000px;}
.x86_c00487{left:425.790000px;}
.xa6_c00487{left:426.870000px;}
.x7_c00487{left:428.220000px;}
.x2e_c00487{left:429.840000px;}
.x19_c00487{left:431.892000px;}
.x9f_c00487{left:434.160000px;}
.x91_c00487{left:437.940000px;}
.x13_c00487{left:439.290000px;}
.x51_c00487{left:442.800000px;}
.x4c_c00487{left:443.880000px;}
.x98_c00487{left:449.820000px;}
.xb7_c00487{left:451.440000px;}
.x49_c00487{left:452.790000px;}
.xaa_c00487{left:456.030000px;}
.x81_c00487{left:457.110000px;}
.x35_c00487{left:458.190000px;}
.xa4_c00487{left:459.270000px;}
.xb3_c00487{left:460.620000px;}
.x1a_c00487{left:462.387000px;}
.x7e_c00487{left:466.830000px;}
.x87_c00487{left:473.580000px;}
.x7f_c00487{left:475.470000px;}
.x1b_c00487{left:476.991000px;}
.xa0_c00487{left:478.980000px;}
.x52_c00487{left:480.060000px;}
.x99_c00487{left:481.140000px;}
.x95_c00487{left:482.220000px;}
.x14_c00487{left:484.110000px;}
.x5_c00487{left:487.812000px;}
.xa5_c00487{left:491.940000px;}
.xa7_c00487{left:493.020000px;}
.xb9_c00487{left:494.910000px;}
.x11_c00487{left:496.800000px;}
.x4a_c00487{left:501.390000px;}
.xad_c00487{left:504.360000px;}
.xb8_c00487{left:505.440000px;}
.x36_c00487{left:507.600000px;}
.x9a_c00487{left:508.680000px;}
.x92_c00487{left:509.760000px;}
.xab_c00487{left:511.380000px;}
.x82_c00487{left:512.460000px;}
.x88_c00487{left:515.970000px;}
.xae_c00487{left:518.130000px;}
.xb4_c00487{left:519.480000px;}
.x8c_c00487{left:523.260000px;}
.x9b_c00487{left:527.310000px;}
.xba_c00487{left:533.520000px;}
.x3a_c00487{left:534.703500px;}
.xa1_c00487{left:536.490000px;}
.xaf_c00487{left:540.000000px;}
.x96_c00487{left:541.890000px;}
.x9c_c00487{left:547.020000px;}
.xac_c00487{left:548.370000px;}
.x83_c00487{left:552.690000px;}
.x8d_c00487{left:554.040000px;}
.xbb_c00487{left:555.120000px;}
.x8f_c00487{left:557.010000px;}
.x97_c00487{left:560.790000px;}
.xa2_c00487{left:566.190000px;}
.x89_c00487{left:567.540000px;}
.x9d_c00487{left:569.970000px;}
.xb0_c00487{left:571.590000px;}
.xa8_c00487{left:572.670000px;}
.x8e_c00487{left:575.640000px;}
.x8a_c00487{left:582.930000px;}
.xb5_c00487{left:584.010000px;}
.x9e_c00487{left:590.220000px;}
.x93_c00487{left:593.190000px;}
.xb1_c00487{left:595.080000px;}
.x90_c00487{left:603.180000px;}
.x84_c00487{left:604.260000px;}
.xa9_c00487{left:609.390000px;}
.xa3_c00487{left:610.470000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs2_c00487{font-size:20.533333pt;}
.fs12_c00487{font-size:42.933333pt;}
.fs11_c00487{font-size:43.866667pt;}
.fs10_c00487{font-size:44.800000pt;}
.fsf_c00487{font-size:45.733333pt;}
.fs13_c00487{font-size:46.666667pt;}
.fse_c00487{font-size:47.600000pt;}
.fs16_c00487{font-size:48.533333pt;}
.fs17_c00487{font-size:49.466667pt;}
.fs15_c00487{font-size:51.333333pt;}
.fs14_c00487{font-size:52.266667pt;}
.fs3_c00487{font-size:53.200692pt;}
.fs18_c00487{font-size:59.733333pt;}
.fsd_c00487{font-size:63.466667pt;}
.fs7_c00487{font-size:63.469840pt;}
.fs9_c00487{font-size:64.400000pt;}
.fs8_c00487{font-size:64.403220pt;}
.fsa_c00487{font-size:65.333333pt;}
.fs4_c00487{font-size:66.266667pt;}
.fsb_c00487{font-size:67.200000pt;}
.fsc_c00487{font-size:68.133333pt;}
.fs6_c00487{font-size:70.936880pt;}
.fs5_c00487{font-size:77.466667pt;}
.fs0_c00487{font-size:83.072647pt;}
.fs1_c00487{font-size:86.800000pt;}
.y0_c00487{bottom:0.000000pt;}
.y45_c00487{bottom:121.548000pt;}
.y55_c00487{bottom:121.945333pt;}
.y44_c00487{bottom:137.397333pt;}
.y54_c00487{bottom:137.760000pt;}
.y43_c00487{bottom:153.556000pt;}
.y53_c00487{bottom:154.044000pt;}
.y42_c00487{bottom:170.040000pt;}
.y52_c00487{bottom:170.058667pt;}
.y41_c00487{bottom:186.024000pt;}
.y47_c00487{bottom:186.373333pt;}
.y40_c00487{bottom:201.748000pt;}
.y46_c00487{bottom:201.840000pt;}
.y51_c00487{bottom:203.040000pt;}
.y3f_c00487{bottom:217.780000pt;}
.y50_c00487{bottom:217.824000pt;}
.y4f_c00487{bottom:233.856000pt;}
.y3e_c00487{bottom:234.161333pt;}
.y4e_c00487{bottom:250.458667pt;}
.y3d_c00487{bottom:250.581333pt;}
.y3c_c00487{bottom:266.385333pt;}
.y4d_c00487{bottom:266.500000pt;}
.y3b_c00487{bottom:282.325333pt;}
.y4c_c00487{bottom:282.960000pt;}
.y3a_c00487{bottom:298.754667pt;}
.y4b_c00487{bottom:299.418667pt;}
.y39_c00487{bottom:314.732000pt;}
.y4a_c00487{bottom:315.498667pt;}
.y38_c00487{bottom:330.674667pt;}
.y49_c00487{bottom:331.440000pt;}
.y37_c00487{bottom:347.082667pt;}
.y48_c00487{bottom:347.422667pt;}
.y36_c00487{bottom:379.753333pt;}
.y35_c00487{bottom:400.438667pt;}
.y34_c00487{bottom:420.762667pt;}
.y33_c00487{bottom:440.400000pt;}
.y32_c00487{bottom:460.801333pt;}
.y2a_c00487{bottom:480.961333pt;}
.y2b_c00487{bottom:481.406667pt;}
.y2c_c00487{bottom:481.598667pt;}
.y2d_c00487{bottom:481.996000pt;}
.y2e_c00487{bottom:482.174667pt;}
.y2f_c00487{bottom:482.425333pt;}
.y30_c00487{bottom:483.033333pt;}
.y31_c00487{bottom:483.854667pt;}
.y29_c00487{bottom:502.420000pt;}
.y28_c00487{bottom:522.982667pt;}
.y21_c00487{bottom:541.920440pt;}
.y22_c00487{bottom:542.625840pt;}
.y23_c00487{bottom:543.250147pt;}
.y24_c00487{bottom:543.517440pt;}
.y25_c00487{bottom:543.716827pt;}
.y26_c00487{bottom:544.165813pt;}
.y27_c00487{bottom:544.566147pt;}
.y18_c00487{bottom:562.560973pt;}
.y19_c00487{bottom:562.851560pt;}
.y1a_c00487{bottom:563.277027pt;}
.y1b_c00487{bottom:563.539440pt;}
.y1c_c00487{bottom:564.018240pt;}
.y1d_c00487{bottom:564.680920pt;}
.y1e_c00487{bottom:564.847707pt;}
.y1f_c00487{bottom:565.153240pt;}
.y20_c00487{bottom:565.608467pt;}
.y10_c00487{bottom:582.241333pt;}
.y11_c00487{bottom:582.606093pt;}
.y12_c00487{bottom:583.331213pt;}
.y13_c00487{bottom:584.008080pt;}
.y14_c00487{bottom:584.171173pt;}
.y15_c00487{bottom:584.523853pt;}
.y16_c00487{bottom:584.794920pt;}
.y17_c00487{bottom:584.924733pt;}
.y8_c00487{bottom:599.789333pt;}
.y9_c00487{bottom:600.816233pt;}
.yf_c00487{bottom:600.960000pt;}
.ya_c00487{bottom:603.127013pt;}
.yb_c00487{bottom:604.304453pt;}
.yc_c00487{bottom:605.214713pt;}
.yd_c00487{bottom:607.206233pt;}
.ye_c00487{bottom:624.618667pt;}
.y7_c00487{bottom:642.960000pt;}
.y6_c00487{bottom:676.172000pt;}
.y1_c00487{bottom:709.441333pt;}
.y2_c00487{bottom:710.029541pt;}
.y3_c00487{bottom:710.700021pt;}
.y4_c00487{bottom:711.232789pt;}
.y5_c00487{bottom:711.947253pt;}
.h4_c00487{height:20.533333pt;}
.h14_c00487{height:42.933333pt;}
.h13_c00487{height:43.866667pt;}
.h12_c00487{height:44.800000pt;}
.h11_c00487{height:45.733333pt;}
.h15_c00487{height:46.666667pt;}
.h10_c00487{height:47.600000pt;}
.h18_c00487{height:48.533333pt;}
.h19_c00487{height:49.466667pt;}
.h17_c00487{height:51.333333pt;}
.h16_c00487{height:52.266667pt;}
.h5_c00487{height:53.200692pt;}
.h1a_c00487{height:59.733333pt;}
.hf_c00487{height:63.466667pt;}
.h9_c00487{height:63.469840pt;}
.hb_c00487{height:64.400000pt;}
.ha_c00487{height:64.403220pt;}
.hc_c00487{height:65.333333pt;}
.h6_c00487{height:66.266667pt;}
.hd_c00487{height:67.200000pt;}
.he_c00487{height:68.133333pt;}
.h8_c00487{height:70.936880pt;}
.h7_c00487{height:77.466667pt;}
.h2_c00487{height:83.072647pt;}
.h3_c00487{height:86.800000pt;}
.h0_c00487{height:896.400000pt;}
.h1_c00487{height:896.666667pt;}
.w1_c00487{width:622.666667pt;}
.w0_c00487{width:622.800000pt;}
.x0_c00487{left:0.000000pt;}
.x55_c00487{left:123.600000pt;}
.x5e_c00487{left:124.560000pt;}
.x63_c00487{left:125.520000pt;}
.x70_c00487{left:126.480000pt;}
.x77_c00487{left:127.440000pt;}
.x53_c00487{left:134.880000pt;}
.x5b_c00487{left:138.480000pt;}
.x56_c00487{left:141.120000pt;}
.x61_c00487{left:143.280000pt;}
.x54_c00487{left:144.480000pt;}
.x45_c00487{left:147.840000pt;}
.x74_c00487{left:148.800000pt;}
.x3b_c00487{left:149.758667pt;}
.x2f_c00487{left:153.120000pt;}
.x9_c00487{left:154.726667pt;}
.x15_c00487{left:155.652000pt;}
.x1c_c00487{left:156.612880pt;}
.x78_c00487{left:158.160000pt;}
.x58_c00487{left:159.600000pt;}
.x64_c00487{left:161.280000pt;}
.x7b_c00487{left:165.840000pt;}
.x71_c00487{left:167.520000pt;}
.x6c_c00487{left:168.720000pt;}
.x8_c00487{left:172.320000pt;}
.x5c_c00487{left:173.520000pt;}
.xa_c00487{left:177.523847pt;}
.x30_c00487{left:179.520000pt;}
.x1d_c00487{left:180.871067pt;}
.x6a_c00487{left:184.080000pt;}
.x79_c00487{left:185.280000pt;}
.x5d_c00487{left:188.160000pt;}
.x16_c00487{left:192.128000pt;}
.x4d_c00487{left:193.440000pt;}
.x7c_c00487{left:194.640000pt;}
.x75_c00487{left:195.840000pt;}
.x3c_c00487{left:200.158667pt;}
.x2a_c00487{left:201.120000pt;}
.x37_c00487{left:203.148000pt;}
.x6b_c00487{left:204.240000pt;}
.x6d_c00487{left:206.400000pt;}
.x31_c00487{left:208.560000pt;}
.x73_c00487{left:210.000000pt;}
.x24_c00487{left:214.237973pt;}
.x1e_c00487{left:216.350360pt;}
.x59_c00487{left:219.120000pt;}
.x1_c00487{left:224.784000pt;}
.xb_c00487{left:228.823163pt;}
.x72_c00487{left:231.120000pt;}
.x65_c00487{left:232.560000pt;}
.x32_c00487{left:233.520000pt;}
.x3d_c00487{left:236.158667pt;}
.x1f_c00487{left:238.191253pt;}
.x7d_c00487{left:239.760000pt;}
.x7a_c00487{left:240.720000pt;}
.x66_c00487{left:243.840000pt;}
.x4e_c00487{left:245.520000pt;}
.x46_c00487{left:248.640000pt;}
.x5f_c00487{left:250.320000pt;}
.x6e_c00487{left:251.520000pt;}
.x68_c00487{left:252.480000pt;}
.xc_c00487{left:254.962331pt;}
.x3e_c00487{left:259.198667pt;}
.x6_c00487{left:265.200000pt;}
.x25_c00487{left:266.267600pt;}
.x38_c00487{left:268.664000pt;}
.x2_c00487{left:273.801333pt;}
.xd_c00487{left:275.170103pt;}
.x42_c00487{left:276.720000pt;}
.x20_c00487{left:278.070453pt;}
.x4f_c00487{left:279.600000pt;}
.x33_c00487{left:281.520000pt;}
.x47_c00487{left:283.680000pt;}
.x5a_c00487{left:284.880000pt;}
.x2b_c00487{left:286.560000pt;}
.x26_c00487{left:288.596493pt;}
.x60_c00487{left:291.840000pt;}
.x76_c00487{left:294.000000pt;}
.x67_c00487{left:295.200000pt;}
.x43_c00487{left:298.320000pt;}
.x3f_c00487{left:300.718667pt;}
.x50_c00487{left:303.360000pt;}
.x27_c00487{left:305.201493pt;}
.x2c_c00487{left:308.400000pt;}
.x62_c00487{left:309.360000pt;}
.x57_c00487{left:311.280000pt;}
.x69_c00487{left:313.920000pt;}
.x6f_c00487{left:314.880000pt;}
.x39_c00487{left:316.430667pt;}
.x40_c00487{left:317.518667pt;}
.xe_c00487{left:319.381847pt;}
.x44_c00487{left:322.320000pt;}
.x3_c00487{left:329.674667pt;}
.x17_c00487{left:332.326667pt;}
.x21_c00487{left:333.270680pt;}
.xf_c00487{left:335.040000pt;}
.x4b_c00487{left:336.720000pt;}
.x41_c00487{left:338.158667pt;}
.x80_c00487{left:339.840000pt;}
.x34_c00487{left:340.800000pt;}
.x28_c00487{left:342.632747pt;}
.x2d_c00487{left:345.360000pt;}
.x22_c00487{left:347.149067pt;}
.x18_c00487{left:348.636000pt;}
.xb2_c00487{left:349.680000pt;}
.x12_c00487{left:351.120000pt;}
.x85_c00487{left:358.080000pt;}
.x94_c00487{left:361.440000pt;}
.x10_c00487{left:366.240000pt;}
.xb6_c00487{left:369.840000pt;}
.x48_c00487{left:370.800000pt;}
.x23_c00487{left:372.635227pt;}
.x4_c00487{left:374.072000pt;}
.x29_c00487{left:375.998747pt;}
.x8b_c00487{left:377.520000pt;}
.x86_c00487{left:378.480000pt;}
.xa6_c00487{left:379.440000pt;}
.x7_c00487{left:380.640000pt;}
.x2e_c00487{left:382.080000pt;}
.x19_c00487{left:383.904000pt;}
.x9f_c00487{left:385.920000pt;}
.x91_c00487{left:389.280000pt;}
.x13_c00487{left:390.480000pt;}
.x51_c00487{left:393.600000pt;}
.x4c_c00487{left:394.560000pt;}
.x98_c00487{left:399.840000pt;}
.xb7_c00487{left:401.280000pt;}
.x49_c00487{left:402.480000pt;}
.xaa_c00487{left:405.360000pt;}
.x81_c00487{left:406.320000pt;}
.x35_c00487{left:407.280000pt;}
.xa4_c00487{left:408.240000pt;}
.xb3_c00487{left:409.440000pt;}
.x1a_c00487{left:411.010667pt;}
.x7e_c00487{left:414.960000pt;}
.x87_c00487{left:420.960000pt;}
.x7f_c00487{left:422.640000pt;}
.x1b_c00487{left:423.992000pt;}
.xa0_c00487{left:425.760000pt;}
.x52_c00487{left:426.720000pt;}
.x99_c00487{left:427.680000pt;}
.x95_c00487{left:428.640000pt;}
.x14_c00487{left:430.320000pt;}
.x5_c00487{left:433.610667pt;}
.xa5_c00487{left:437.280000pt;}
.xa7_c00487{left:438.240000pt;}
.xb9_c00487{left:439.920000pt;}
.x11_c00487{left:441.600000pt;}
.x4a_c00487{left:445.680000pt;}
.xad_c00487{left:448.320000pt;}
.xb8_c00487{left:449.280000pt;}
.x36_c00487{left:451.200000pt;}
.x9a_c00487{left:452.160000pt;}
.x92_c00487{left:453.120000pt;}
.xab_c00487{left:454.560000pt;}
.x82_c00487{left:455.520000pt;}
.x88_c00487{left:458.640000pt;}
.xae_c00487{left:460.560000pt;}
.xb4_c00487{left:461.760000pt;}
.x8c_c00487{left:465.120000pt;}
.x9b_c00487{left:468.720000pt;}
.xba_c00487{left:474.240000pt;}
.x3a_c00487{left:475.292000pt;}
.xa1_c00487{left:476.880000pt;}
.xaf_c00487{left:480.000000pt;}
.x96_c00487{left:481.680000pt;}
.x9c_c00487{left:486.240000pt;}
.xac_c00487{left:487.440000pt;}
.x83_c00487{left:491.280000pt;}
.x8d_c00487{left:492.480000pt;}
.xbb_c00487{left:493.440000pt;}
.x8f_c00487{left:495.120000pt;}
.x97_c00487{left:498.480000pt;}
.xa2_c00487{left:503.280000pt;}
.x89_c00487{left:504.480000pt;}
.x9d_c00487{left:506.640000pt;}
.xb0_c00487{left:508.080000pt;}
.xa8_c00487{left:509.040000pt;}
.x8e_c00487{left:511.680000pt;}
.x8a_c00487{left:518.160000pt;}
.xb5_c00487{left:519.120000pt;}
.x9e_c00487{left:524.640000pt;}
.x93_c00487{left:527.280000pt;}
.xb1_c00487{left:528.960000pt;}
.x90_c00487{left:536.160000pt;}
.x84_c00487{left:537.120000pt;}
.xa9_c00487{left:541.680000pt;}
.xa3_c00487{left:542.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_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_4ab86c84425994a9e06b01c2.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;}
.mf2_c00488{transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022730,0.000000,0.000000,0.250000,0,0);}
.maa_c00488{transform:matrix(0.024725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024725,0.000000,0.000000,0.250000,0,0);}
.m10e_c00488{transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099335,0.000000,0.000000,0.250000,0,0);}
.mcf_c00488{transform:matrix(0.102630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102630,0.000000,0.000000,0.250000,0,0);}
.m132_c00488{transform:matrix(0.104920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104920,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.105979,-0.001166,0.002750,0.249985,0,0);-ms-transform:matrix(0.105979,-0.001166,0.002750,0.249985,0,0);-webkit-transform:matrix(0.105979,-0.001166,0.002750,0.249985,0,0);}
.m98_c00488{transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);}
.m21_c00488{transform:matrix(0.109917,-0.001319,0.003000,0.249982,0,0);-ms-transform:matrix(0.109917,-0.001319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.109917,-0.001319,0.003000,0.249982,0,0);}
.m1_c00488{transform:matrix(0.110265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110265,0.000000,0.000000,0.250000,0,0);}
.m105_c00488{transform:matrix(0.126145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126145,0.000000,0.000000,0.250000,0,0);}
.m3e_c00488{transform:matrix(0.132251,-0.001058,0.002000,0.249992,0,0);-ms-transform:matrix(0.132251,-0.001058,0.002000,0.249992,0,0);-webkit-transform:matrix(0.132251,-0.001058,0.002000,0.249992,0,0);}
.m86_c00488{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.md7_c00488{transform:matrix(0.136330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136330,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.136872,-0.001506,0.002750,0.249985,0,0);-ms-transform:matrix(0.136872,-0.001506,0.002750,0.249985,0,0);-webkit-transform:matrix(0.136872,-0.001506,0.002750,0.249985,0,0);}
.m10c_c00488{transform:matrix(0.140215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140215,0.000000,0.000000,0.250000,0,0);}
.m10f_c00488{transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141290,0.000000,0.000000,0.250000,0,0);}
.m10b_c00488{transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142810,0.000000,0.000000,0.250000,0,0);}
.m143_c00488{transform:matrix(0.143666,-0.002011,0.003500,0.249976,0,0);-ms-transform:matrix(0.143666,-0.002011,0.003500,0.249976,0,0);-webkit-transform:matrix(0.143666,-0.002011,0.003500,0.249976,0,0);}
.m8d_c00488{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);}
.m12_c00488{transform:matrix(0.146996,-0.001617,0.002750,0.249985,0,0);-ms-transform:matrix(0.146996,-0.001617,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146996,-0.001617,0.002750,0.249985,0,0);}
.m3d_c00488{transform:matrix(0.147080,-0.001177,0.002000,0.249992,0,0);-ms-transform:matrix(0.147080,-0.001177,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147080,-0.001177,0.002000,0.249992,0,0);}
.m142_c00488{transform:matrix(0.147321,-0.002062,0.003500,0.249976,0,0);-ms-transform:matrix(0.147321,-0.002062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.147321,-0.002062,0.003500,0.249976,0,0);}
.m10_c00488{transform:matrix(0.148076,-0.001629,0.002750,0.249985,0,0);-ms-transform:matrix(0.148076,-0.001629,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148076,-0.001629,0.002750,0.249985,0,0);}
.m77_c00488{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);}
.m3f_c00488{transform:matrix(0.149425,-0.001195,0.002000,0.249992,0,0);-ms-transform:matrix(0.149425,-0.001195,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149425,-0.001195,0.002000,0.249992,0,0);}
.m110_c00488{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);}
.m5a_c00488{transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-ms-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);}
.m6a_c00488{transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);-ms-transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152004,-0.001368,0.002250,0.249990,0,0);}
.m11b_c00488{transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153030,0.000000,0.000000,0.250000,0,0);}
.m39_c00488{transform:matrix(0.153327,-0.001993,0.003250,0.249979,0,0);-ms-transform:matrix(0.153327,-0.001993,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153327,-0.001993,0.003250,0.249979,0,0);}
.m7d_c00488{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);}
.md3_c00488{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);}
.m6c_c00488{transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);-ms-transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153769,-0.001384,0.002250,0.249990,0,0);}
.me_c00488{transform:matrix(0.153946,-0.001693,0.002750,0.249985,0,0);-ms-transform:matrix(0.153946,-0.001693,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153946,-0.001693,0.002750,0.249985,0,0);}
.m102_c00488{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);}
.m141_c00488{transform:matrix(0.155110,-0.002172,0.003500,0.249976,0,0);-ms-transform:matrix(0.155110,-0.002172,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155110,-0.002172,0.003500,0.249976,0,0);}
.m8e_c00488{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);}
.m15a_c00488{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);}
.m111_c00488{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);}
.m23_c00488{transform:matrix(0.156939,-0.001883,0.003000,0.249982,0,0);-ms-transform:matrix(0.156939,-0.001883,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156939,-0.001883,0.003000,0.249982,0,0);}
.m6e_c00488{transform:matrix(0.157014,-0.001413,0.002250,0.249990,0,0);-ms-transform:matrix(0.157014,-0.001413,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157014,-0.001413,0.002250,0.249990,0,0);}
.m3b_c00488{transform:matrix(0.157820,-0.001263,0.002000,0.249992,0,0);-ms-transform:matrix(0.157820,-0.001263,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157820,-0.001263,0.002000,0.249992,0,0);}
.m14_c00488{transform:matrix(0.158570,-0.001744,0.002750,0.249985,0,0);-ms-transform:matrix(0.158570,-0.001744,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158570,-0.001744,0.002750,0.249985,0,0);}
.m52_c00488{transform:matrix(0.158839,-0.001430,0.002250,0.249990,0,0);-ms-transform:matrix(0.158839,-0.001430,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158839,-0.001430,0.002250,0.249990,0,0);}
.m72_c00488{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);}
.m140_c00488{transform:matrix(0.159684,-0.002236,0.003500,0.249976,0,0);-ms-transform:matrix(0.159684,-0.002236,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159684,-0.002236,0.003500,0.249976,0,0);}
.m7a_c00488{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);}
.mf5_c00488{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);}
.m83_c00488{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);}
.m137_c00488{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);}
.m48_c00488{transform:matrix(0.161265,-0.001774,0.002750,0.249985,0,0);-ms-transform:matrix(0.161265,-0.001774,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161265,-0.001774,0.002750,0.249985,0,0);}
.m135_c00488{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);}
.m103_c00488{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);}
.m46_c00488{transform:matrix(0.162380,-0.001786,0.002750,0.249985,0,0);-ms-transform:matrix(0.162380,-0.001786,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162380,-0.001786,0.002750,0.249985,0,0);}
.m109_c00488{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);}
.m81_c00488{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);}
.m49_c00488{transform:matrix(0.163535,-0.001799,0.002750,0.249985,0,0);-ms-transform:matrix(0.163535,-0.001799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163535,-0.001799,0.002750,0.249985,0,0);}
.m22_c00488{transform:matrix(0.164008,-0.001968,0.003000,0.249982,0,0);-ms-transform:matrix(0.164008,-0.001968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.164008,-0.001968,0.003000,0.249982,0,0);}
.m3a_c00488{transform:matrix(0.164520,-0.001316,0.002000,0.249992,0,0);-ms-transform:matrix(0.164520,-0.001316,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164520,-0.001316,0.002000,0.249992,0,0);}
.m75_c00488{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);}
.mc1_c00488{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);}
.m13f_c00488{transform:matrix(0.166299,-0.002328,0.003500,0.249976,0,0);-ms-transform:matrix(0.166299,-0.002328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166299,-0.002328,0.003500,0.249976,0,0);}
.m37_c00488{transform:matrix(0.166456,-0.002164,0.003250,0.249979,0,0);-ms-transform:matrix(0.166456,-0.002164,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166456,-0.002164,0.003250,0.249979,0,0);}
.m15b_c00488{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);}
.m13b_c00488{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);}
.mb8_c00488{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.m87_c00488{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);}
.me4_c00488{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);}
.m25_c00488{transform:matrix(0.167868,-0.002014,0.003000,0.249982,0,0);-ms-transform:matrix(0.167868,-0.002014,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167868,-0.002014,0.003000,0.249982,0,0);}
.m18_c00488{transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);}
.m6f_c00488{transform:matrix(0.168748,-0.001519,0.002250,0.249990,0,0);-ms-transform:matrix(0.168748,-0.001519,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168748,-0.001519,0.002250,0.249990,0,0);}
.m62_c00488{transform:matrix(0.168918,-0.001520,0.002250,0.249990,0,0);-ms-transform:matrix(0.168918,-0.001520,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168918,-0.001520,0.002250,0.249990,0,0);}
.m154_c00488{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);}
.m7e_c00488{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);}
.m1b_c00488{transform:matrix(0.170353,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170353,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170353,-0.002044,0.003000,0.249982,0,0);}
.m8b_c00488{transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171270,0.000000,0.000000,0.250000,0,0);}
.mfb_c00488{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);}
.m106_c00488{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);}
.mb3_c00488{transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);}
.m9d_c00488{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);}
.mbc_c00488{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m11d_c00488{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);}
.m2e_c00488{transform:matrix(0.173221,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173221,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173221,-0.001732,0.002500,0.249988,0,0);}
.m136_c00488{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);}
.m11f_c00488{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);}
.mbf_c00488{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);}
.mc7_c00488{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);}
.m150_c00488{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);}
.ma8_c00488{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);}
.mcc_c00488{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);}
.m34_c00488{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);}
.ma3_c00488{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);}
.m71_c00488{transform:matrix(0.175483,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175483,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175483,-0.001579,0.002250,0.249990,0,0);}
.m15e_c00488{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);}
.m104_c00488{transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175680,0.000000,0.000000,0.250000,0,0);}
.m85_c00488{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);}
.m47_c00488{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);}
.m10a_c00488{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);}
.m2c_c00488{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);}
.m7b_c00488{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);}
.m108_c00488{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);}
.m3c_c00488{transform:matrix(0.176824,-0.001415,0.002000,0.249992,0,0);-ms-transform:matrix(0.176824,-0.001415,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176824,-0.001415,0.002000,0.249992,0,0);}
.m79_c00488{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);}
.ma5_c00488{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);}
.m63_c00488{transform:matrix(0.177388,-0.001596,0.002250,0.249990,0,0);-ms-transform:matrix(0.177388,-0.001596,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177388,-0.001596,0.002250,0.249990,0,0);}
.m91_c00488{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);}
.m4f_c00488{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);}
.m116_c00488{transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178130,0.000000,0.000000,0.250000,0,0);}
.m12c_c00488{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);}
.m74_c00488{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);}
.mfa_c00488{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);}
.m13e_c00488{transform:matrix(0.179502,-0.002513,0.003500,0.249976,0,0);-ms-transform:matrix(0.179502,-0.002513,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179502,-0.002513,0.003500,0.249976,0,0);}
.m78_c00488{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);}
.m70_c00488{transform:matrix(0.180023,-0.001620,0.002250,0.249990,0,0);-ms-transform:matrix(0.180023,-0.001620,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180023,-0.001620,0.002250,0.249990,0,0);}
.mf8_c00488{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);}
.m11a_c00488{transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);}
.mb9_c00488{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);}
.m122_c00488{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);}
.mf9_c00488{transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180565,0.000000,0.000000,0.250000,0,0);}
.m44_c00488{transform:matrix(0.180669,-0.001987,0.002750,0.249985,0,0);-ms-transform:matrix(0.180669,-0.001987,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180669,-0.001987,0.002750,0.249985,0,0);}
.mad_c00488{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);}
.m107_c00488{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);}
.m8a_c00488{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);}
.m88_c00488{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);}
.md0_c00488{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);}
.m162_c00488{transform:matrix(0.181537,-0.004175,0.005748,0.249934,0,0);-ms-transform:matrix(0.181537,-0.004175,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181537,-0.004175,0.005748,0.249934,0,0);}
.m41_c00488{transform:matrix(0.182199,-0.001458,0.002000,0.249992,0,0);-ms-transform:matrix(0.182199,-0.001458,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182199,-0.001458,0.002000,0.249992,0,0);}
.m89_c00488{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);}
.m40_c00488{transform:matrix(0.182679,-0.001461,0.002000,0.249992,0,0);-ms-transform:matrix(0.182679,-0.001461,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182679,-0.001461,0.002000,0.249992,0,0);}
.m76_c00488{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);}
.m45_c00488{transform:matrix(0.183059,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183059,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183059,-0.002014,0.002750,0.249985,0,0);}
.mb5_c00488{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);}
.m13_c00488{transform:matrix(0.183709,-0.002021,0.002750,0.249985,0,0);-ms-transform:matrix(0.183709,-0.002021,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183709,-0.002021,0.002750,0.249985,0,0);}
.m42_c00488{transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183749,-0.001470,0.002000,0.249992,0,0);}
.m9a_c00488{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);}
.mee_c00488{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);}
.m12f_c00488{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);}
.m33_c00488{transform:matrix(0.185539,-0.002412,0.003250,0.249979,0,0);-ms-transform:matrix(0.185539,-0.002412,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185539,-0.002412,0.003250,0.249979,0,0);}
.m35_c00488{transform:matrix(0.185579,-0.002413,0.003250,0.249979,0,0);-ms-transform:matrix(0.185579,-0.002413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185579,-0.002413,0.003250,0.249979,0,0);}
.m65_c00488{transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-ms-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186152,-0.001675,0.002250,0.249990,0,0);}
.m8f_c00488{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);}
.mc0_c00488{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);}
.m131_c00488{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);}
.m113_c00488{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);}
.mec_c00488{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_c00488{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);}
.m14a_c00488{transform:matrix(0.187099,-0.003929,0.005249,0.249945,0,0);-ms-transform:matrix(0.187099,-0.003929,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187099,-0.003929,0.005249,0.249945,0,0);}
.mb6_c00488{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);}
.m11_c00488{transform:matrix(0.187384,-0.002061,0.002750,0.249985,0,0);-ms-transform:matrix(0.187384,-0.002061,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187384,-0.002061,0.002750,0.249985,0,0);}
.me7_c00488{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);}
.m11e_c00488{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);}
.m13a_c00488{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);}
.m117_c00488{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);}
.m115_c00488{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);}
.me2_c00488{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);}
.md6_c00488{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);}
.mea_c00488{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);}
.m26_c00488{transform:matrix(0.189666,-0.002276,0.003000,0.249982,0,0);-ms-transform:matrix(0.189666,-0.002276,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189666,-0.002276,0.003000,0.249982,0,0);}
.me5_c00488{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);}
.mab_c00488{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);}
.m1f_c00488{transform:matrix(0.189831,-0.002278,0.003000,0.249982,0,0);-ms-transform:matrix(0.189831,-0.002278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189831,-0.002278,0.003000,0.249982,0,0);}
.m1e_c00488{transform:matrix(0.189911,-0.002279,0.003000,0.249982,0,0);-ms-transform:matrix(0.189911,-0.002279,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189911,-0.002279,0.003000,0.249982,0,0);}
.m38_c00488{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);}
.m124_c00488{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);}
.ma1_c00488{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);}
.mba_c00488{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);}
.m14f_c00488{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);}
.mc6_c00488{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);}
.m2a_c00488{transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191360,-0.001914,0.002500,0.249988,0,0);}
.m5d_c00488{transform:matrix(0.191567,-0.001724,0.002250,0.249990,0,0);-ms-transform:matrix(0.191567,-0.001724,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191567,-0.001724,0.002250,0.249990,0,0);}
.m11c_c00488{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);}
.m157_c00488{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);}
.mcb_c00488{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);}
.mbe_c00488{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);}
.m156_c00488{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);}
.m10d_c00488{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);}
.m9c_c00488{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_c00488{transform:matrix(0.192977,-0.001737,0.002250,0.249990,0,0);-ms-transform:matrix(0.192977,-0.001737,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192977,-0.001737,0.002250,0.249990,0,0);}
.me8_c00488{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);}
.m69_c00488{transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);}
.m126_c00488{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);}
.mc4_c00488{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);}
.m15_c00488{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);}
.m32_c00488{transform:matrix(0.193774,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193774,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193774,-0.002519,0.003250,0.249979,0,0);}
.m84_c00488{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);}
.m133_c00488{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);}
.m4d_c00488{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);}
.m55_c00488{transform:matrix(0.194397,-0.001750,0.002250,0.249990,0,0);-ms-transform:matrix(0.194397,-0.001750,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194397,-0.001750,0.002250,0.249990,0,0);}
.m168_c00488{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);}
.m80_c00488{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);}
.m27_c00488{transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);-ms-transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);}
.m82_c00488{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);}
.m123_c00488{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);}
.mae_c00488{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);}
.m4c_c00488{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);}
.m1c_c00488{transform:matrix(0.196491,-0.002358,0.003000,0.249982,0,0);-ms-transform:matrix(0.196491,-0.002358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196491,-0.002358,0.003000,0.249982,0,0);}
.mc8_c00488{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);}
.m14d_c00488{transform:matrix(0.196917,-0.004135,0.005249,0.249945,0,0);-ms-transform:matrix(0.196917,-0.004135,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196917,-0.004135,0.005249,0.249945,0,0);}
.m13c_c00488{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);}
.m9b_c00488{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);}
.m73_c00488{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);}
.md2_c00488{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);}
.m5c_c00488{transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);-ms-transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);}
.m6b_c00488{transform:matrix(0.197782,-0.001780,0.002250,0.249990,0,0);-ms-transform:matrix(0.197782,-0.001780,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197782,-0.001780,0.002250,0.249990,0,0);}
.m4a_c00488{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);}
.mac_c00488{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);}
.m66_c00488{transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);}
.mc5_c00488{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);}
.m59_c00488{transform:matrix(0.198747,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198747,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198747,-0.001789,0.002250,0.249990,0,0);}
.md8_c00488{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);}
.m7c_c00488{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);}
.m151_c00488{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);}
.m16a_c00488{transform:matrix(0.199409,-0.006182,0.007746,0.249880,0,0);-ms-transform:matrix(0.199409,-0.006182,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199409,-0.006182,0.007746,0.249880,0,0);}
.m1a_c00488{transform:matrix(0.199526,-0.002394,0.003000,0.249982,0,0);-ms-transform:matrix(0.199526,-0.002394,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199526,-0.002394,0.003000,0.249982,0,0);}
.m2b_c00488{transform:matrix(0.199590,-0.001996,0.002500,0.249988,0,0);-ms-transform:matrix(0.199590,-0.001996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199590,-0.001996,0.002500,0.249988,0,0);}
.meb_c00488{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);}
.maf_c00488{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);}
.m12b_c00488{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);}
.mb7_c00488{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);}
.mf1_c00488{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);}
.m149_c00488{transform:matrix(0.200831,-0.004217,0.005249,0.249945,0,0);-ms-transform:matrix(0.200831,-0.004217,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200831,-0.004217,0.005249,0.249945,0,0);}
.mb2_c00488{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m17_c00488{transform:matrix(0.202468,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202468,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202468,-0.002227,0.002750,0.249985,0,0);}
.m28_c00488{transform:matrix(0.202785,-0.002028,0.002500,0.249988,0,0);-ms-transform:matrix(0.202785,-0.002028,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202785,-0.002028,0.002500,0.249988,0,0);}
.m152_c00488{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);}
.m9e_c00488{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);}
.m147_c00488{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);}
.mce_c00488{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);}
.mf0_c00488{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m121_c00488{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);}
.ma4_c00488{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);}
.me3_c00488{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);}
.m118_c00488{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);}
.m129_c00488{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);}
.m2f_c00488{transform:matrix(0.203890,-0.002039,0.002500,0.249988,0,0);-ms-transform:matrix(0.203890,-0.002039,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203890,-0.002039,0.002500,0.249988,0,0);}
.ma9_c00488{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m92_c00488{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);}
.m1d_c00488{transform:matrix(0.204705,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204705,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204705,-0.002456,0.003000,0.249982,0,0);}
.m125_c00488{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);}
.m120_c00488{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);}
.m5_c00488{transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207172,-0.002279,0.002750,0.249985,0,0);}
.m134_c00488{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);}
.m13d_c00488{transform:matrix(0.207595,-0.002906,0.003500,0.249976,0,0);-ms-transform:matrix(0.207595,-0.002906,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207595,-0.002906,0.003500,0.249976,0,0);}
.m57_c00488{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);}
.mc3_c00488{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);}
.m54_c00488{transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);}
.m90_c00488{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);}
.m24_c00488{transform:matrix(0.208875,-0.002506,0.003000,0.249982,0,0);-ms-transform:matrix(0.208875,-0.002506,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208875,-0.002506,0.003000,0.249982,0,0);}
.mbd_c00488{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);}
.ma7_c00488{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);}
.me6_c00488{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);}
.m15f_c00488{transform:matrix(0.209889,-0.004827,0.005748,0.249934,0,0);-ms-transform:matrix(0.209889,-0.004827,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209889,-0.004827,0.005748,0.249934,0,0);}
.m139_c00488{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);}
.m43_c00488{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);}
.mb4_c00488{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);}
.m56_c00488{transform:matrix(0.210446,-0.001894,0.002250,0.249990,0,0);-ms-transform:matrix(0.210446,-0.001894,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210446,-0.001894,0.002250,0.249990,0,0);}
.m12e_c00488{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);}
.m29_c00488{transform:matrix(0.211119,-0.002111,0.002500,0.249988,0,0);-ms-transform:matrix(0.211119,-0.002111,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211119,-0.002111,0.002500,0.249988,0,0);}
.m164_c00488{transform:matrix(0.211204,-0.004858,0.005748,0.249934,0,0);-ms-transform:matrix(0.211204,-0.004858,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211204,-0.004858,0.005748,0.249934,0,0);}
.m5e_c00488{transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);}
.m99_c00488{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);}
.m100_c00488{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);}
.m112_c00488{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);}
.m14e_c00488{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);}
.m130_c00488{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);}
.mdc_c00488{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);}
.m169_c00488{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);}
.mfd_c00488{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);}
.m9f_c00488{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);}
.m153_c00488{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);}
.m5f_c00488{transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);-ms-transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215051,-0.001935,0.002250,0.249990,0,0);}
.m6_c00488{transform:matrix(0.215307,-0.002368,0.002750,0.249985,0,0);-ms-transform:matrix(0.215307,-0.002368,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215307,-0.002368,0.002750,0.249985,0,0);}
.ma2_c00488{transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215315,0.000000,0.000000,0.250000,0,0);}
.m165_c00488{transform:matrix(0.215601,-0.006684,0.007746,0.249880,0,0);-ms-transform:matrix(0.215601,-0.006684,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215601,-0.006684,0.007746,0.249880,0,0);}
.mf4_c00488{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);}
.m93_c00488{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);}
.m128_c00488{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);}
.m31_c00488{transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);-ms-transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);}
.ma6_c00488{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);}
.med_c00488{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);}
.m138_c00488{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);}
.mef_c00488{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);}
.m8_c00488{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);}
.mcd_c00488{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);}
.mb_c00488{transform:matrix(0.220342,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220342,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220342,-0.002424,0.002750,0.249985,0,0);}
.m36_c00488{transform:matrix(0.220526,-0.002867,0.003250,0.249979,0,0);-ms-transform:matrix(0.220526,-0.002867,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220526,-0.002867,0.003250,0.249979,0,0);}
.md1_c00488{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);}
.m4b_c00488{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m97_c00488{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);}
.m68_c00488{transform:matrix(0.222291,-0.002001,0.002250,0.249990,0,0);-ms-transform:matrix(0.222291,-0.002001,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222291,-0.002001,0.002250,0.249990,0,0);}
.mc2_c00488{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);}
.m14c_c00488{transform:matrix(0.222896,-0.004681,0.005249,0.249945,0,0);-ms-transform:matrix(0.222896,-0.004681,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222896,-0.004681,0.005249,0.249945,0,0);}
.m7_c00488{transform:matrix(0.223007,-0.002453,0.002750,0.249985,0,0);-ms-transform:matrix(0.223007,-0.002453,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223007,-0.002453,0.002750,0.249985,0,0);}
.m53_c00488{transform:matrix(0.223781,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223781,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223781,-0.002014,0.002250,0.249990,0,0);}
.m145_c00488{transform:matrix(0.224738,-0.003146,0.003500,0.249976,0,0);-ms-transform:matrix(0.224738,-0.003146,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224738,-0.003146,0.003500,0.249976,0,0);}
.m8c_c00488{transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225685,0.000000,0.000000,0.250000,0,0);}
.m167_c00488{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);}
.m163_c00488{transform:matrix(0.226535,-0.005210,0.005748,0.249934,0,0);-ms-transform:matrix(0.226535,-0.005210,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226535,-0.005210,0.005748,0.249934,0,0);}
.m9_c00488{transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);-ms-transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226651,-0.002493,0.002750,0.249985,0,0);}
.m160_c00488{transform:matrix(0.227045,-0.005222,0.005748,0.249934,0,0);-ms-transform:matrix(0.227045,-0.005222,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227045,-0.005222,0.005748,0.249934,0,0);}
.mdd_c00488{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);}
.me0_c00488{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);}
.mdb_c00488{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);}
.m12a_c00488{transform:matrix(0.230670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00488{transform:matrix(0.230776,-0.002077,0.002250,0.249990,0,0);-ms-transform:matrix(0.230776,-0.002077,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230776,-0.002077,0.002250,0.249990,0,0);}
.m61_c00488{transform:matrix(0.230876,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230876,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230876,-0.002078,0.002250,0.249990,0,0);}
.m161_c00488{transform:matrix(0.231959,-0.005335,0.005748,0.249934,0,0);-ms-transform:matrix(0.231959,-0.005335,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231959,-0.005335,0.005748,0.249934,0,0);}
.m12d_c00488{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);}
.m119_c00488{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);}
.m4e_c00488{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);}
.m114_c00488{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);}
.mde_c00488{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);}
.m14b_c00488{transform:matrix(0.235573,-0.004947,0.005249,0.249945,0,0);-ms-transform:matrix(0.235573,-0.004947,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235573,-0.004947,0.005249,0.249945,0,0);}
.m19_c00488{transform:matrix(0.236018,-0.002832,0.003000,0.249982,0,0);-ms-transform:matrix(0.236018,-0.002832,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236018,-0.002832,0.003000,0.249982,0,0);}
.m2d_c00488{transform:matrix(0.237003,-0.002370,0.002500,0.249988,0,0);-ms-transform:matrix(0.237003,-0.002370,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237003,-0.002370,0.002500,0.249988,0,0);}
.mff_c00488{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);}
.m155_c00488{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);}
.mca_c00488{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);}
.mc_c00488{transform:matrix(0.242170,-0.002664,0.002750,0.249985,0,0);-ms-transform:matrix(0.242170,-0.002664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242170,-0.002664,0.002750,0.249985,0,0);}
.m67_c00488{transform:matrix(0.243420,-0.002191,0.002250,0.249990,0,0);-ms-transform:matrix(0.243420,-0.002191,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243420,-0.002191,0.002250,0.249990,0,0);}
.m20_c00488{transform:matrix(0.246552,-0.002959,0.003000,0.249982,0,0);-ms-transform:matrix(0.246552,-0.002959,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246552,-0.002959,0.003000,0.249982,0,0);}
.m127_c00488{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);}
.mdf_c00488{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.mf6_c00488{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m16b_c00488{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);}
.mfe_c00488{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);}
.m101_c00488{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);}
.mfc_c00488{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);}
.mc9_c00488{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m15d_c00488{transform:matrix(0.253398,-0.005828,0.005748,0.249934,0,0);-ms-transform:matrix(0.253398,-0.005828,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253398,-0.005828,0.005748,0.249934,0,0);}
.m2_c00488{transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);}
.mb0_c00488{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m166_c00488{transform:matrix(0.262949,-0.008151,0.007746,0.249880,0,0);-ms-transform:matrix(0.262949,-0.008151,0.007746,0.249880,0,0);-webkit-transform:matrix(0.262949,-0.008151,0.007746,0.249880,0,0);}
.m159_c00488{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);}
.m148_c00488{transform:matrix(0.264627,-0.005557,0.005249,0.249945,0,0);-ms-transform:matrix(0.264627,-0.005557,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264627,-0.005557,0.005249,0.249945,0,0);}
.ma0_c00488{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);}
.m51_c00488{transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);-ms-transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265114,-0.002386,0.002250,0.249990,0,0);}
.mbb_c00488{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.me9_c00488{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m16_c00488{transform:matrix(0.267674,-0.002944,0.002750,0.249985,0,0);-ms-transform:matrix(0.267674,-0.002944,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267674,-0.002944,0.002750,0.249985,0,0);}
.m64_c00488{transform:matrix(0.274289,-0.002469,0.002250,0.249990,0,0);-ms-transform:matrix(0.274289,-0.002469,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274289,-0.002469,0.002250,0.249990,0,0);}
.m144_c00488{transform:matrix(0.278913,-0.003905,0.003500,0.249976,0,0);-ms-transform:matrix(0.278913,-0.003905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278913,-0.003905,0.003500,0.249976,0,0);}
.m4_c00488{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);}
.m58_c00488{transform:matrix(0.281684,-0.002535,0.002250,0.249990,0,0);-ms-transform:matrix(0.281684,-0.002535,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281684,-0.002535,0.002250,0.249990,0,0);}
.m60_c00488{transform:matrix(0.287308,-0.002586,0.002250,0.249990,0,0);-ms-transform:matrix(0.287308,-0.002586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287308,-0.002586,0.002250,0.249990,0,0);}
.ma_c00488{transform:matrix(0.294747,-0.003242,0.002750,0.249985,0,0);-ms-transform:matrix(0.294747,-0.003242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294747,-0.003242,0.002750,0.249985,0,0);}
.m0_c00488{transform:matrix(0.295304,-0.006497,0.005499,0.249940,0,0);-ms-transform:matrix(0.295304,-0.006497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.295304,-0.006497,0.005499,0.249940,0,0);}
.md9_c00488{transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);}
.m50_c00488{transform:matrix(0.295963,-0.002664,0.002250,0.249990,0,0);-ms-transform:matrix(0.295963,-0.002664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295963,-0.002664,0.002250,0.249990,0,0);}
.me1_c00488{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);}
.mda_c00488{transform:matrix(0.298135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298135,0.000000,0.000000,0.250000,0,0);}
.m15c_c00488{transform:matrix(0.298266,-0.006860,0.005748,0.249934,0,0);-ms-transform:matrix(0.298266,-0.006860,0.005748,0.249934,0,0);-webkit-transform:matrix(0.298266,-0.006860,0.005748,0.249934,0,0);}
.md5_c00488{transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305720,0.000000,0.000000,0.250000,0,0);}
.m158_c00488{transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308575,0.000000,0.000000,0.250000,0,0);}
.mf3_c00488{transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314915,0.000000,0.000000,0.250000,0,0);}
.md4_c00488{transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322485,0.000000,0.000000,0.250000,0,0);}
.mf7_c00488{transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336590,0.000000,0.000000,0.250000,0,0);}
.mb1_c00488{transform:matrix(0.340960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340960,0.000000,0.000000,0.250000,0,0);}
.m30_c00488{transform:matrix(0.349553,-0.003496,0.002500,0.249988,0,0);-ms-transform:matrix(0.349553,-0.003496,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349553,-0.003496,0.002500,0.249988,0,0);}
.m146_c00488{transform:matrix(0.429030,-0.009010,0.005249,0.249945,0,0);-ms-transform:matrix(0.429030,-0.009010,0.005249,0.249945,0,0);-webkit-transform:matrix(0.429030,-0.009010,0.005249,0.249945,0,0);}
.m96_c00488{transform:matrix(0.920524,-0.009205,0.002500,0.249988,0,0);-ms-transform:matrix(0.920524,-0.009205,0.002500,0.249988,0,0);-webkit-transform:matrix(0.920524,-0.009205,0.002500,0.249988,0,0);}
.m94_c00488{transform:matrix(1.221059,-0.012211,0.002500,0.249988,0,0);-ms-transform:matrix(1.221059,-0.012211,0.002500,0.249988,0,0);-webkit-transform:matrix(1.221059,-0.012211,0.002500,0.249988,0,0);}
.m95_c00488{transform:matrix(9.593405,-0.095934,0.002500,0.249988,0,0);-ms-transform:matrix(9.593405,-0.095934,0.002500,0.249988,0,0);-webkit-transform:matrix(9.593405,-0.095934,0.002500,0.249988,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;}
.fs21_c00488{font-size:16.800000px;}
.fs12_c00488{font-size:22.051102px;}
.fs1_c00488{font-size:23.100000px;}
.fs18_c00488{font-size:48.300000px;}
.fs1d_c00488{font-size:49.360880px;}
.fs14_c00488{font-size:50.400000px;}
.fs1b_c00488{font-size:51.450000px;}
.fs15_c00488{font-size:52.500000px;}
.fs13_c00488{font-size:53.550000px;}
.fs16_c00488{font-size:54.600000px;}
.fs20_c00488{font-size:54.626229px;}
.fs19_c00488{font-size:55.650000px;}
.fs1f_c00488{font-size:57.765273px;}
.fs1a_c00488{font-size:58.800000px;}
.fsf_c00488{font-size:61.952509px;}
.fs1e_c00488{font-size:63.000000px;}
.fs6_c00488{font-size:64.054611px;}
.fs3_c00488{font-size:65.103938px;}
.fs17_c00488{font-size:68.250000px;}
.fse_c00488{font-size:69.302807px;}
.fs5_c00488{font-size:69.304989px;}
.fs1c_c00488{font-size:69.306791px;}
.fs11_c00488{font-size:70.350000px;}
.fsc_c00488{font-size:70.352849px;}
.fs7_c00488{font-size:70.353517px;}
.fsa_c00488{font-size:70.354256px;}
.fsb_c00488{font-size:71.400000px;}
.fs8_c00488{font-size:72.456122px;}
.fs4_c00488{font-size:75.604574px;}
.fs10_c00488{font-size:78.750000px;}
.fs9_c00488{font-size:80.852587px;}
.fs2_c00488{font-size:88.200000px;}
.fsd_c00488{font-size:89.250000px;}
.fs0_c00488{font-size:128.130996px;}
.y0_c00488{bottom:0.000000px;}
.y81_c00488{bottom:151.452000px;}
.yb9_c00488{bottom:154.710000px;}
.yb3_c00488{bottom:168.493500px;}
.yb4_c00488{bottom:169.532961px;}
.yb5_c00488{bottom:170.369822px;}
.y7e_c00488{bottom:170.520000px;}
.yb6_c00488{bottom:171.040677px;}
.yb7_c00488{bottom:172.485897px;}
.yb8_c00488{bottom:173.139733px;}
.y7d_c00488{bottom:188.422500px;}
.yaa_c00488{bottom:188.466000px;}
.yab_c00488{bottom:188.782779px;}
.yac_c00488{bottom:189.291309px;}
.yad_c00488{bottom:190.086534px;}
.yae_c00488{bottom:190.509711px;}
.yaf_c00488{bottom:190.876273px;}
.yb0_c00488{bottom:192.005182px;}
.yb1_c00488{bottom:192.414663px;}
.yb2_c00488{bottom:193.079237px;}
.y7c_c00488{bottom:206.398500px;}
.ya2_c00488{bottom:206.554500px;}
.ya3_c00488{bottom:207.252000px;}
.ya4_c00488{bottom:207.658500px;}
.ya5_c00488{bottom:208.351500px;}
.ya6_c00488{bottom:208.582500px;}
.ya7_c00488{bottom:209.521500px;}
.ya8_c00488{bottom:209.962500px;}
.ya9_c00488{bottom:210.384000px;}
.y7b_c00488{bottom:223.713000px;}
.ya1_c00488{bottom:226.156500px;}
.y7a_c00488{bottom:242.148000px;}
.y99_c00488{bottom:242.194500px;}
.y9a_c00488{bottom:242.936986px;}
.y9b_c00488{bottom:243.588406px;}
.y9c_c00488{bottom:244.472611px;}
.y9d_c00488{bottom:244.819962px;}
.y9e_c00488{bottom:245.274664px;}
.y9f_c00488{bottom:246.164067px;}
.ya0_c00488{bottom:246.753747px;}
.y80_c00488{bottom:260.590500px;}
.y90_c00488{bottom:261.633000px;}
.y91_c00488{bottom:261.987753px;}
.y92_c00488{bottom:262.354686px;}
.y93_c00488{bottom:262.619202px;}
.y94_c00488{bottom:263.046195px;}
.y95_c00488{bottom:263.397903px;}
.y96_c00488{bottom:263.783526px;}
.y97_c00488{bottom:263.991510px;}
.y98_c00488{bottom:264.453048px;}
.y79_c00488{bottom:278.217000px;}
.y8f_c00488{bottom:280.407000px;}
.y78_c00488{bottom:296.446500px;}
.y8e_c00488{bottom:298.519500px;}
.y7f_c00488{bottom:315.148500px;}
.y8d_c00488{bottom:316.455000px;}
.y77_c00488{bottom:332.739000px;}
.y86_c00488{bottom:332.911500px;}
.y87_c00488{bottom:333.577500px;}
.y88_c00488{bottom:334.261500px;}
.y89_c00488{bottom:334.741500px;}
.y8a_c00488{bottom:335.130000px;}
.y8b_c00488{bottom:335.587500px;}
.y8c_c00488{bottom:335.728500px;}
.y76_c00488{bottom:350.589000px;}
.y85_c00488{bottom:352.785000px;}
.y75_c00488{bottom:368.499000px;}
.y84_c00488{bottom:370.342500px;}
.y74_c00488{bottom:386.689500px;}
.y83_c00488{bottom:388.164000px;}
.y73_c00488{bottom:404.083500px;}
.y82_c00488{bottom:406.650000px;}
.y70_c00488{bottom:421.999500px;}
.y71_c00488{bottom:422.355780px;}
.y72_c00488{bottom:426.575775px;}
.y6f_c00488{bottom:469.602000px;}
.y6e_c00488{bottom:492.187500px;}
.y6d_c00488{bottom:514.741500px;}
.y6c_c00488{bottom:538.335000px;}
.y62_c00488{bottom:559.171500px;}
.y63_c00488{bottom:559.385394px;}
.y64_c00488{bottom:559.924435px;}
.y65_c00488{bottom:560.155272px;}
.y66_c00488{bottom:560.446993px;}
.y67_c00488{bottom:560.666031px;}
.y68_c00488{bottom:561.144741px;}
.y69_c00488{bottom:561.412378px;}
.y6a_c00488{bottom:561.895638px;}
.y6b_c00488{bottom:562.101918px;}
.y60_c00488{bottom:584.264242px;}
.y5a_c00488{bottom:584.264277px;}
.y5f_c00488{bottom:584.264556px;}
.y5c_c00488{bottom:584.264640px;}
.y61_c00488{bottom:584.264829px;}
.y5b_c00488{bottom:584.264924px;}
.y5d_c00488{bottom:584.265046px;}
.y5e_c00488{bottom:584.265169px;}
.y52_c00488{bottom:605.341500px;}
.y53_c00488{bottom:605.623501px;}
.y54_c00488{bottom:605.961015px;}
.y55_c00488{bottom:606.201990px;}
.y56_c00488{bottom:606.867459px;}
.y57_c00488{bottom:607.567299px;}
.y58_c00488{bottom:607.780801px;}
.y59_c00488{bottom:608.027163px;}
.y4a_c00488{bottom:627.481500px;}
.y4b_c00488{bottom:627.761098px;}
.y4c_c00488{bottom:628.128204px;}
.y4d_c00488{bottom:628.351926px;}
.y4e_c00488{bottom:628.952149px;}
.y4f_c00488{bottom:629.234002px;}
.y50_c00488{bottom:629.756304px;}
.y49_c00488{bottom:651.660000px;}
.y42_c00488{bottom:672.301500px;}
.y43_c00488{bottom:672.592609px;}
.y44_c00488{bottom:673.126780px;}
.y45_c00488{bottom:673.652998px;}
.y46_c00488{bottom:674.243500px;}
.y47_c00488{bottom:674.692465px;}
.y48_c00488{bottom:674.924241px;}
.y39_c00488{bottom:695.521500px;}
.y3a_c00488{bottom:695.843352px;}
.y3b_c00488{bottom:696.167376px;}
.y3c_c00488{bottom:696.627540px;}
.y3d_c00488{bottom:697.065972px;}
.y3e_c00488{bottom:697.223376px;}
.y3f_c00488{bottom:697.433340px;}
.y40_c00488{bottom:697.891284px;}
.y41_c00488{bottom:698.290764px;}
.y30_c00488{bottom:717.123000px;}
.y31_c00488{bottom:717.488137px;}
.y32_c00488{bottom:718.217418px;}
.y33_c00488{bottom:718.580371px;}
.y34_c00488{bottom:719.461576px;}
.y35_c00488{bottom:720.001610px;}
.y36_c00488{bottom:720.721237px;}
.y37_c00488{bottom:721.451201px;}
.y38_c00488{bottom:722.113615px;}
.y27_c00488{bottom:740.881500px;}
.y28_c00488{bottom:741.283350px;}
.y29_c00488{bottom:741.669615px;}
.y2a_c00488{bottom:742.264050px;}
.y2b_c00488{bottom:742.957995px;}
.y2c_c00488{bottom:743.389920px;}
.y2d_c00488{bottom:743.659635px;}
.y2e_c00488{bottom:743.954325px;}
.y2f_c00488{bottom:744.429615px;}
.y1f_c00488{bottom:763.831188px;}
.y20_c00488{bottom:764.572248px;}
.y21_c00488{bottom:764.726688px;}
.y22_c00488{bottom:765.093972px;}
.y23_c00488{bottom:765.579546px;}
.y24_c00488{bottom:765.811290px;}
.y25_c00488{bottom:766.119546px;}
.y26_c00488{bottom:766.625016px;}
.y18_c00488{bottom:786.783000px;}
.y19_c00488{bottom:787.413828px;}
.y1a_c00488{bottom:788.082042px;}
.y1b_c00488{bottom:788.726748px;}
.y1c_c00488{bottom:789.403782px;}
.y1d_c00488{bottom:789.734010px;}
.y1e_c00488{bottom:790.145616px;}
.yd_c00488{bottom:809.461500px;}
.ye_c00488{bottom:809.716573px;}
.yf_c00488{bottom:809.942838px;}
.y10_c00488{bottom:810.399805px;}
.y11_c00488{bottom:811.003293px;}
.y12_c00488{bottom:811.454155px;}
.y13_c00488{bottom:811.822930px;}
.y14_c00488{bottom:812.042793px;}
.y15_c00488{bottom:812.580231px;}
.y16_c00488{bottom:812.779270px;}
.y17_c00488{bottom:813.084669px;}
.y4_c00488{bottom:831.871500px;}
.y5_c00488{bottom:832.340430px;}
.y6_c00488{bottom:832.727091px;}
.y7_c00488{bottom:832.985531px;}
.y8_c00488{bottom:833.436525px;}
.y9_c00488{bottom:834.034370px;}
.ya_c00488{bottom:834.328515px;}
.yb_c00488{bottom:834.815265px;}
.yc_c00488{bottom:835.544532px;}
.y1_c00488{bottom:878.055000px;}
.y3_c00488{bottom:881.712000px;}
.y51_c00488{bottom:881.952000px;}
.y2_c00488{bottom:914.014500px;}
.h23_c00488{height:16.800000px;}
.h14_c00488{height:22.051102px;}
.h3_c00488{height:23.100000px;}
.h1a_c00488{height:48.300000px;}
.h1f_c00488{height:49.360880px;}
.h16_c00488{height:50.400000px;}
.h1d_c00488{height:51.450000px;}
.h17_c00488{height:52.500000px;}
.h15_c00488{height:53.550000px;}
.h18_c00488{height:54.600000px;}
.h22_c00488{height:54.626229px;}
.h1b_c00488{height:55.650000px;}
.h21_c00488{height:57.765273px;}
.h1c_c00488{height:58.800000px;}
.h11_c00488{height:61.952509px;}
.h20_c00488{height:63.000000px;}
.h8_c00488{height:64.054611px;}
.h5_c00488{height:65.103938px;}
.h19_c00488{height:68.250000px;}
.h10_c00488{height:69.302807px;}
.h7_c00488{height:69.304989px;}
.h1e_c00488{height:69.306791px;}
.h13_c00488{height:70.350000px;}
.he_c00488{height:70.352849px;}
.h9_c00488{height:70.353517px;}
.hc_c00488{height:70.354256px;}
.hd_c00488{height:71.400000px;}
.ha_c00488{height:72.456122px;}
.h6_c00488{height:75.604574px;}
.h12_c00488{height:78.750000px;}
.hb_c00488{height:80.852587px;}
.h4_c00488{height:88.200000px;}
.hf_c00488{height:89.250000px;}
.h2_c00488{height:128.130996px;}
.h1_c00488{height:1005.000000px;}
.h0_c00488{height:1005.150000px;}
.w0_c00488{width:715.200000px;}
.w1_c00488{width:715.500000px;}
.x0_c00488{left:0.000000px;}
.x6d_c00488{left:102.060000px;}
.x63_c00488{left:113.758500px;}
.x6e_c00488{left:115.290000px;}
.x66_c00488{left:116.910000px;}
.x81_c00488{left:118.530000px;}
.x7b_c00488{left:120.960000px;}
.x73_c00488{left:129.870000px;}
.x7c_c00488{left:131.760000px;}
.xf_c00488{left:142.969500px;}
.x6_c00488{left:144.052500px;}
.x2f_c00488{left:145.366500px;}
.x3c_c00488{left:146.454000px;}
.x4f_c00488{left:148.354500px;}
.x64_c00488{left:149.386500px;}
.x68_c00488{left:150.390000px;}
.x7a_c00488{left:151.740000px;}
.x76_c00488{left:153.900000px;}
.x7e_c00488{left:156.870000px;}
.x1e_c00488{left:162.169866px;}
.x6b_c00488{left:163.350000px;}
.x10_c00488{left:166.158000px;}
.x54_c00488{left:168.750000px;}
.x2b_c00488{left:172.986000px;}
.x57_c00488{left:174.420000px;}
.x74_c00488{left:176.310000px;}
.x3d_c00488{left:177.520500px;}
.x38_c00488{left:181.440000px;}
.x24_c00488{left:184.500000px;}
.x30_c00488{left:185.598000px;}
.x7_c00488{left:186.682500px;}
.x77_c00488{left:187.920000px;}
.x48_c00488{left:191.162793px;}
.x1_c00488{left:192.676500px;}
.x18_c00488{left:197.487000px;}
.x5f_c00488{left:202.770000px;}
.x58_c00488{left:204.390000px;}
.x70_c00488{left:206.550000px;}
.x39_c00488{left:208.170000px;}
.x75_c00488{left:209.520000px;}
.x82_c00488{left:211.410000px;}
.x43_c00488{left:215.313000px;}
.x5c_c00488{left:216.810000px;}
.x3e_c00488{left:218.310000px;}
.x35_c00488{left:220.701000px;}
.x8_c00488{left:221.833500px;}
.x25_c00488{left:223.126500px;}
.x31_c00488{left:226.101000px;}
.x11_c00488{left:228.270000px;}
.x85_c00488{left:229.770000px;}
.x50_c00488{left:232.014000px;}
.x49_c00488{left:234.634816px;}
.x1f_c00488{left:236.301648px;}
.x7f_c00488{left:237.330000px;}
.x69_c00488{left:240.570000px;}
.x44_c00488{left:242.088000px;}
.x3f_c00488{left:243.168000px;}
.x9_c00488{left:245.328000px;}
.x6c_c00488{left:247.860000px;}
.x20_c00488{left:251.797026px;}
.x19_c00488{left:253.171500px;}
.x84_c00488{left:255.960000px;}
.x2c_c00488{left:257.004000px;}
.x4a_c00488{left:260.015368px;}
.x60_c00488{left:262.710000px;}
.x78_c00488{left:264.330000px;}
.x83_c00488{left:265.410000px;}
.x36_c00488{left:268.539000px;}
.x6a_c00488{left:272.970000px;}
.x55_c00488{left:274.050000px;}
.x6f_c00488{left:275.130000px;}
.x12_c00488{left:283.132500px;}
.xa_c00488{left:286.327500px;}
.x21_c00488{left:288.529908px;}
.x51_c00488{left:290.076000px;}
.x3a_c00488{left:294.300000px;}
.x7d_c00488{left:295.920000px;}
.x59_c00488{left:300.240000px;}
.x71_c00488{left:302.130000px;}
.x1a_c00488{left:306.897000px;}
.x40_c00488{left:309.859500px;}
.x52_c00488{left:314.413500px;}
.x45_c00488{left:316.029000px;}
.x67_c00488{left:317.250000px;}
.x37_c00488{left:322.221000px;}
.x2_c00488{left:324.000000px;}
.x72_c00488{left:325.890000px;}
.x4b_c00488{left:328.867944px;}
.x80_c00488{left:331.290000px;}
.x79_c00488{left:334.260000px;}
.x3_c00488{left:336.690000px;}
.x32_c00488{left:338.425500px;}
.xb_c00488{left:340.677000px;}
.x5a_c00488{left:342.090000px;}
.x4_c00488{left:346.410000px;}
.x4c_c00488{left:350.468199px;}
.x26_c00488{left:351.964500px;}
.x13_c00488{left:357.645000px;}
.x22_c00488{left:360.308136px;}
.x1b_c00488{left:363.316500px;}
.x8c_c00488{left:364.500000px;}
.x2d_c00488{left:366.330000px;}
.xc_c00488{left:367.417500px;}
.xb6_c00488{left:368.745000px;}
.x61_c00488{left:369.900000px;}
.x3b_c00488{left:372.060000px;}
.x4d_c00488{left:374.768670px;}
.x14_c00488{left:377.632500px;}
.x5d_c00488{left:380.970000px;}
.x33_c00488{left:384.346500px;}
.x86_c00488{left:385.830000px;}
.xb8_c00488{left:387.978000px;}
.x98_c00488{left:389.610000px;}
.x1c_c00488{left:390.835500px;}
.xb3_c00488{left:392.310000px;}
.x46_c00488{left:393.789000px;}
.x27_c00488{left:395.157000px;}
.x53_c00488{left:397.341000px;}
.x41_c00488{left:399.210000px;}
.xa5_c00488{left:403.381500px;}
.x5_c00488{left:404.460000px;}
.xab_c00488{left:405.676500px;}
.x4e_c00488{left:407.169789px;}
.x8d_c00488{left:408.780000px;}
.xd_c00488{left:411.667500px;}
.x94_c00488{left:412.830000px;}
.x9d_c00488{left:414.322500px;}
.x62_c00488{left:415.800000px;}
.x47_c00488{left:417.511500px;}
.x8e_c00488{left:420.120000px;}
.x28_c00488{left:422.128500px;}
.x1d_c00488{left:425.136000px;}
.x15_c00488{left:426.490500px;}
.xbc_c00488{left:430.312500px;}
.xac_c00488{left:431.886000px;}
.x5e_c00488{left:434.430000px;}
.x23_c00488{left:441.620580px;}
.x16_c00488{left:444.585000px;}
.x56_c00488{left:445.770000px;}
.x5b_c00488{left:447.930000px;}
.x29_c00488{left:451.597500px;}
.x87_c00488{left:452.790000px;}
.xa6_c00488{left:455.491500px;}
.xb9_c00488{left:456.889500px;}
.x8f_c00488{left:460.620000px;}
.x88_c00488{left:462.780000px;}
.xa7_c00488{left:464.131500px;}
.x99_c00488{left:466.290000px;}
.xb4_c00488{left:469.260000px;}
.x90_c00488{left:471.150000px;}
.x17_c00488{left:472.348500px;}
.x42_c00488{left:474.120000px;}
.xb7_c00488{left:475.438500px;}
.xe_c00488{left:477.964500px;}
.xaa_c00488{left:480.061500px;}
.x89_c00488{left:481.140000px;}
.xa1_c00488{left:482.221500px;}
.x95_c00488{left:483.570000px;}
.x34_c00488{left:491.524500px;}
.xa8_c00488{left:493.021500px;}
.x9a_c00488{left:494.100000px;}
.xb5_c00488{left:495.450000px;}
.x91_c00488{left:497.880000px;}
.x2a_c00488{left:499.126500px;}
.xa2_c00488{left:502.201500px;}
.xb1_c00488{left:504.651000px;}
.xad_c00488{left:506.401500px;}
.xa3_c00488{left:513.541500px;}
.x9b_c00488{left:517.590000px;}
.xbd_c00488{left:519.664500px;}
.xba_c00488{left:523.776000px;}
.x9e_c00488{left:525.274500px;}
.x96_c00488{left:527.310000px;}
.x2e_c00488{left:528.792000px;}
.xae_c00488{left:533.946000px;}
.x8a_c00488{left:537.030000px;}
.x9c_c00488{left:538.650000px;}
.x97_c00488{left:547.020000px;}
.xaf_c00488{left:548.802000px;}
.xbb_c00488{left:552.670500px;}
.x9f_c00488{left:557.946000px;}
.x92_c00488{left:560.790000px;}
.xa9_c00488{left:562.681500px;}
.x8b_c00488{left:567.000000px;}
.xa0_c00488{left:568.014000px;}
.xa4_c00488{left:569.701500px;}
.x65_c00488{left:571.386000px;}
.x93_c00488{left:572.940000px;}
.xb2_c00488{left:575.083500px;}
.xb0_c00488{left:581.769000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs21_c00488{font-size:14.933333pt;}
.fs12_c00488{font-size:19.600980pt;}
.fs1_c00488{font-size:20.533333pt;}
.fs18_c00488{font-size:42.933333pt;}
.fs1d_c00488{font-size:43.876338pt;}
.fs14_c00488{font-size:44.800000pt;}
.fs1b_c00488{font-size:45.733333pt;}
.fs15_c00488{font-size:46.666667pt;}
.fs13_c00488{font-size:47.600000pt;}
.fs16_c00488{font-size:48.533333pt;}
.fs20_c00488{font-size:48.556648pt;}
.fs19_c00488{font-size:49.466667pt;}
.fs1f_c00488{font-size:51.346909pt;}
.fs1a_c00488{font-size:52.266667pt;}
.fsf_c00488{font-size:55.068897pt;}
.fs1e_c00488{font-size:56.000000pt;}
.fs6_c00488{font-size:56.937432pt;}
.fs3_c00488{font-size:57.870167pt;}
.fs17_c00488{font-size:60.666667pt;}
.fse_c00488{font-size:61.602495pt;}
.fs5_c00488{font-size:61.604435pt;}
.fs1c_c00488{font-size:61.606037pt;}
.fs11_c00488{font-size:62.533333pt;}
.fsc_c00488{font-size:62.535866pt;}
.fs7_c00488{font-size:62.536460pt;}
.fsa_c00488{font-size:62.537116pt;}
.fsb_c00488{font-size:63.466667pt;}
.fs8_c00488{font-size:64.405442pt;}
.fs4_c00488{font-size:67.204065pt;}
.fs10_c00488{font-size:70.000000pt;}
.fs9_c00488{font-size:71.868966pt;}
.fs2_c00488{font-size:78.400000pt;}
.fsd_c00488{font-size:79.333333pt;}
.fs0_c00488{font-size:113.894219pt;}
.y0_c00488{bottom:0.000000pt;}
.y81_c00488{bottom:134.624000pt;}
.yb9_c00488{bottom:137.520000pt;}
.yb3_c00488{bottom:149.772000pt;}
.yb4_c00488{bottom:150.695965pt;}
.yb5_c00488{bottom:151.439841pt;}
.y7e_c00488{bottom:151.573333pt;}
.yb6_c00488{bottom:152.036157pt;}
.yb7_c00488{bottom:153.320797pt;}
.yb8_c00488{bottom:153.901985pt;}
.y7d_c00488{bottom:167.486667pt;}
.yaa_c00488{bottom:167.525333pt;}
.yab_c00488{bottom:167.806915pt;}
.yac_c00488{bottom:168.258941pt;}
.yad_c00488{bottom:168.965808pt;}
.yae_c00488{bottom:169.341965pt;}
.yaf_c00488{bottom:169.667799pt;}
.yb0_c00488{bottom:170.671273pt;}
.yb1_c00488{bottom:171.035256pt;}
.yb2_c00488{bottom:171.625988pt;}
.y7c_c00488{bottom:183.465333pt;}
.ya2_c00488{bottom:183.604000pt;}
.ya3_c00488{bottom:184.224000pt;}
.ya4_c00488{bottom:184.585333pt;}
.ya5_c00488{bottom:185.201333pt;}
.ya6_c00488{bottom:185.406667pt;}
.ya7_c00488{bottom:186.241333pt;}
.ya8_c00488{bottom:186.633333pt;}
.ya9_c00488{bottom:187.008000pt;}
.y7b_c00488{bottom:198.856000pt;}
.ya1_c00488{bottom:201.028000pt;}
.y7a_c00488{bottom:215.242667pt;}
.y99_c00488{bottom:215.284000pt;}
.y9a_c00488{bottom:215.943988pt;}
.y9b_c00488{bottom:216.523028pt;}
.y9c_c00488{bottom:217.308988pt;}
.y9d_c00488{bottom:217.617744pt;}
.y9e_c00488{bottom:218.021924pt;}
.y9f_c00488{bottom:218.812504pt;}
.ya0_c00488{bottom:219.336664pt;}
.y80_c00488{bottom:231.636000pt;}
.y90_c00488{bottom:232.562667pt;}
.y91_c00488{bottom:232.878003pt;}
.y92_c00488{bottom:233.204165pt;}
.y93_c00488{bottom:233.439291pt;}
.y94_c00488{bottom:233.818840pt;}
.y95_c00488{bottom:234.131469pt;}
.y96_c00488{bottom:234.474245pt;}
.y97_c00488{bottom:234.659120pt;}
.y98_c00488{bottom:235.069376pt;}
.y79_c00488{bottom:247.304000pt;}
.y8f_c00488{bottom:249.250667pt;}
.y78_c00488{bottom:263.508000pt;}
.y8e_c00488{bottom:265.350667pt;}
.y7f_c00488{bottom:280.132000pt;}
.y8d_c00488{bottom:281.293333pt;}
.y77_c00488{bottom:295.768000pt;}
.y86_c00488{bottom:295.921333pt;}
.y87_c00488{bottom:296.513333pt;}
.y88_c00488{bottom:297.121333pt;}
.y89_c00488{bottom:297.548000pt;}
.y8a_c00488{bottom:297.893333pt;}
.y8b_c00488{bottom:298.300000pt;}
.y8c_c00488{bottom:298.425333pt;}
.y76_c00488{bottom:311.634667pt;}
.y85_c00488{bottom:313.586667pt;}
.y75_c00488{bottom:327.554667pt;}
.y84_c00488{bottom:329.193333pt;}
.y74_c00488{bottom:343.724000pt;}
.y83_c00488{bottom:345.034667pt;}
.y73_c00488{bottom:359.185333pt;}
.y82_c00488{bottom:361.466667pt;}
.y70_c00488{bottom:375.110667pt;}
.y71_c00488{bottom:375.427360pt;}
.y72_c00488{bottom:379.178467pt;}
.y6f_c00488{bottom:417.424000pt;}
.y6e_c00488{bottom:437.500000pt;}
.y6d_c00488{bottom:457.548000pt;}
.y6c_c00488{bottom:478.520000pt;}
.y62_c00488{bottom:497.041333pt;}
.y63_c00488{bottom:497.231461pt;}
.y64_c00488{bottom:497.710609pt;}
.y65_c00488{bottom:497.915797pt;}
.y66_c00488{bottom:498.175105pt;}
.y67_c00488{bottom:498.369805pt;}
.y68_c00488{bottom:498.795325pt;}
.y69_c00488{bottom:499.033225pt;}
.y6a_c00488{bottom:499.462789pt;}
.y6b_c00488{bottom:499.646149pt;}
.y60_c00488{bottom:519.345993pt;}
.y5a_c00488{bottom:519.346024pt;}
.y5f_c00488{bottom:519.346272pt;}
.y5c_c00488{bottom:519.346347pt;}
.y61_c00488{bottom:519.346515pt;}
.y5b_c00488{bottom:519.346599pt;}
.y5d_c00488{bottom:519.346708pt;}
.y5e_c00488{bottom:519.346817pt;}
.y52_c00488{bottom:538.081333pt;}
.y53_c00488{bottom:538.332001pt;}
.y54_c00488{bottom:538.632013pt;}
.y55_c00488{bottom:538.846213pt;}
.y56_c00488{bottom:539.437741pt;}
.y57_c00488{bottom:540.059821pt;}
.y58_c00488{bottom:540.249601pt;}
.y59_c00488{bottom:540.468589pt;}
.y4a_c00488{bottom:557.761333pt;}
.y4b_c00488{bottom:558.009865pt;}
.y4c_c00488{bottom:558.336181pt;}
.y4d_c00488{bottom:558.535045pt;}
.y4e_c00488{bottom:559.068577pt;}
.y4f_c00488{bottom:559.319113pt;}
.y50_c00488{bottom:559.783381pt;}
.y49_c00488{bottom:579.253333pt;}
.y42_c00488{bottom:597.601333pt;}
.y43_c00488{bottom:597.860097pt;}
.y44_c00488{bottom:598.334916pt;}
.y45_c00488{bottom:598.802665pt;}
.y46_c00488{bottom:599.327556pt;}
.y47_c00488{bottom:599.726636pt;}
.y48_c00488{bottom:599.932659pt;}
.y39_c00488{bottom:618.241333pt;}
.y3a_c00488{bottom:618.527424pt;}
.y3b_c00488{bottom:618.815445pt;}
.y3c_c00488{bottom:619.224480pt;}
.y3d_c00488{bottom:619.614197pt;}
.y3e_c00488{bottom:619.754112pt;}
.y3f_c00488{bottom:619.940747pt;}
.y40_c00488{bottom:620.347808pt;}
.y41_c00488{bottom:620.702901pt;}
.y30_c00488{bottom:637.442667pt;}
.y31_c00488{bottom:637.767233pt;}
.y32_c00488{bottom:638.415483pt;}
.y33_c00488{bottom:638.738108pt;}
.y34_c00488{bottom:639.521401pt;}
.y35_c00488{bottom:640.001431pt;}
.y36_c00488{bottom:640.641100pt;}
.y37_c00488{bottom:641.289956pt;}
.y38_c00488{bottom:641.878769pt;}
.y27_c00488{bottom:658.561333pt;}
.y28_c00488{bottom:658.918533pt;}
.y29_c00488{bottom:659.261880pt;}
.y2a_c00488{bottom:659.790267pt;}
.y2b_c00488{bottom:660.407107pt;}
.y2c_c00488{bottom:660.791040pt;}
.y2d_c00488{bottom:661.030787pt;}
.y2e_c00488{bottom:661.292733pt;}
.y2f_c00488{bottom:661.715213pt;}
.y1f_c00488{bottom:678.961056pt;}
.y20_c00488{bottom:679.619776pt;}
.y21_c00488{bottom:679.757056pt;}
.y22_c00488{bottom:680.083531pt;}
.y23_c00488{bottom:680.515152pt;}
.y24_c00488{bottom:680.721147pt;}
.y25_c00488{bottom:680.995152pt;}
.y26_c00488{bottom:681.444459pt;}
.y18_c00488{bottom:699.362667pt;}
.y19_c00488{bottom:699.923403pt;}
.y1a_c00488{bottom:700.517371pt;}
.y1b_c00488{bottom:701.090443pt;}
.y1c_c00488{bottom:701.692251pt;}
.y1d_c00488{bottom:701.985787pt;}
.y1e_c00488{bottom:702.351659pt;}
.yd_c00488{bottom:719.521333pt;}
.ye_c00488{bottom:719.748065pt;}
.yf_c00488{bottom:719.949189pt;}
.y10_c00488{bottom:720.355383pt;}
.y11_c00488{bottom:720.891816pt;}
.y12_c00488{bottom:721.292583pt;}
.y13_c00488{bottom:721.620383pt;}
.y14_c00488{bottom:721.815816pt;}
.y15_c00488{bottom:722.293539pt;}
.y16_c00488{bottom:722.470463pt;}
.y17_c00488{bottom:722.741928pt;}
.y4_c00488{bottom:739.441333pt;}
.y5_c00488{bottom:739.858160pt;}
.y6_c00488{bottom:740.201859pt;}
.y7_c00488{bottom:740.431583pt;}
.y8_c00488{bottom:740.832467pt;}
.y9_c00488{bottom:741.363884pt;}
.ya_c00488{bottom:741.625347pt;}
.yb_c00488{bottom:742.058013pt;}
.yc_c00488{bottom:742.706251pt;}
.y1_c00488{bottom:780.493333pt;}
.y3_c00488{bottom:783.744000pt;}
.y51_c00488{bottom:783.957333pt;}
.y2_c00488{bottom:812.457333pt;}
.h23_c00488{height:14.933333pt;}
.h14_c00488{height:19.600980pt;}
.h3_c00488{height:20.533333pt;}
.h1a_c00488{height:42.933333pt;}
.h1f_c00488{height:43.876338pt;}
.h16_c00488{height:44.800000pt;}
.h1d_c00488{height:45.733333pt;}
.h17_c00488{height:46.666667pt;}
.h15_c00488{height:47.600000pt;}
.h18_c00488{height:48.533333pt;}
.h22_c00488{height:48.556648pt;}
.h1b_c00488{height:49.466667pt;}
.h21_c00488{height:51.346909pt;}
.h1c_c00488{height:52.266667pt;}
.h11_c00488{height:55.068897pt;}
.h20_c00488{height:56.000000pt;}
.h8_c00488{height:56.937432pt;}
.h5_c00488{height:57.870167pt;}
.h19_c00488{height:60.666667pt;}
.h10_c00488{height:61.602495pt;}
.h7_c00488{height:61.604435pt;}
.h1e_c00488{height:61.606037pt;}
.h13_c00488{height:62.533333pt;}
.he_c00488{height:62.535866pt;}
.h9_c00488{height:62.536460pt;}
.hc_c00488{height:62.537116pt;}
.hd_c00488{height:63.466667pt;}
.ha_c00488{height:64.405442pt;}
.h6_c00488{height:67.204065pt;}
.h12_c00488{height:70.000000pt;}
.hb_c00488{height:71.868966pt;}
.h4_c00488{height:78.400000pt;}
.hf_c00488{height:79.333333pt;}
.h2_c00488{height:113.894219pt;}
.h1_c00488{height:893.333333pt;}
.h0_c00488{height:893.466667pt;}
.w0_c00488{width:635.733333pt;}
.w1_c00488{width:636.000000pt;}
.x0_c00488{left:0.000000pt;}
.x6d_c00488{left:90.720000pt;}
.x63_c00488{left:101.118667pt;}
.x6e_c00488{left:102.480000pt;}
.x66_c00488{left:103.920000pt;}
.x81_c00488{left:105.360000pt;}
.x7b_c00488{left:107.520000pt;}
.x73_c00488{left:115.440000pt;}
.x7c_c00488{left:117.120000pt;}
.xf_c00488{left:127.084000pt;}
.x6_c00488{left:128.046667pt;}
.x2f_c00488{left:129.214667pt;}
.x3c_c00488{left:130.181333pt;}
.x4f_c00488{left:131.870667pt;}
.x64_c00488{left:132.788000pt;}
.x68_c00488{left:133.680000pt;}
.x7a_c00488{left:134.880000pt;}
.x76_c00488{left:136.800000pt;}
.x7e_c00488{left:139.440000pt;}
.x1e_c00488{left:144.150992pt;}
.x6b_c00488{left:145.200000pt;}
.x10_c00488{left:147.696000pt;}
.x54_c00488{left:150.000000pt;}
.x2b_c00488{left:153.765333pt;}
.x57_c00488{left:155.040000pt;}
.x74_c00488{left:156.720000pt;}
.x3d_c00488{left:157.796000pt;}
.x38_c00488{left:161.280000pt;}
.x24_c00488{left:164.000000pt;}
.x30_c00488{left:164.976000pt;}
.x7_c00488{left:165.940000pt;}
.x77_c00488{left:167.040000pt;}
.x48_c00488{left:169.922483pt;}
.x1_c00488{left:171.268000pt;}
.x18_c00488{left:175.544000pt;}
.x5f_c00488{left:180.240000pt;}
.x58_c00488{left:181.680000pt;}
.x70_c00488{left:183.600000pt;}
.x39_c00488{left:185.040000pt;}
.x75_c00488{left:186.240000pt;}
.x82_c00488{left:187.920000pt;}
.x43_c00488{left:191.389333pt;}
.x5c_c00488{left:192.720000pt;}
.x3e_c00488{left:194.053333pt;}
.x35_c00488{left:196.178667pt;}
.x8_c00488{left:197.185333pt;}
.x25_c00488{left:198.334667pt;}
.x31_c00488{left:200.978667pt;}
.x11_c00488{left:202.906667pt;}
.x85_c00488{left:204.240000pt;}
.x50_c00488{left:206.234667pt;}
.x49_c00488{left:208.564281pt;}
.x1f_c00488{left:210.045909pt;}
.x7f_c00488{left:210.960000pt;}
.x69_c00488{left:213.840000pt;}
.x44_c00488{left:215.189333pt;}
.x3f_c00488{left:216.149333pt;}
.x9_c00488{left:218.069333pt;}
.x6c_c00488{left:220.320000pt;}
.x20_c00488{left:223.819579pt;}
.x19_c00488{left:225.041333pt;}
.x84_c00488{left:227.520000pt;}
.x2c_c00488{left:228.448000pt;}
.x4a_c00488{left:231.124772pt;}
.x60_c00488{left:233.520000pt;}
.x78_c00488{left:234.960000pt;}
.x83_c00488{left:235.920000pt;}
.x36_c00488{left:238.701333pt;}
.x6a_c00488{left:242.640000pt;}
.x55_c00488{left:243.600000pt;}
.x6f_c00488{left:244.560000pt;}
.x12_c00488{left:251.673333pt;}
.xa_c00488{left:254.513333pt;}
.x21_c00488{left:256.471029pt;}
.x51_c00488{left:257.845333pt;}
.x3a_c00488{left:261.600000pt;}
.x7d_c00488{left:263.040000pt;}
.x59_c00488{left:266.880000pt;}
.x71_c00488{left:268.560000pt;}
.x1a_c00488{left:272.797333pt;}
.x40_c00488{left:275.430667pt;}
.x52_c00488{left:279.478667pt;}
.x45_c00488{left:280.914667pt;}
.x67_c00488{left:282.000000pt;}
.x37_c00488{left:286.418667pt;}
.x2_c00488{left:288.000000pt;}
.x72_c00488{left:289.680000pt;}
.x4b_c00488{left:292.327061pt;}
.x80_c00488{left:294.480000pt;}
.x79_c00488{left:297.120000pt;}
.x3_c00488{left:299.280000pt;}
.x32_c00488{left:300.822667pt;}
.xb_c00488{left:302.824000pt;}
.x5a_c00488{left:304.080000pt;}
.x4_c00488{left:307.920000pt;}
.x4c_c00488{left:311.527288pt;}
.x26_c00488{left:312.857333pt;}
.x13_c00488{left:317.906667pt;}
.x22_c00488{left:320.273899pt;}
.x1b_c00488{left:322.948000pt;}
.x8c_c00488{left:324.000000pt;}
.x2d_c00488{left:325.626667pt;}
.xc_c00488{left:326.593333pt;}
.xb6_c00488{left:327.773333pt;}
.x61_c00488{left:328.800000pt;}
.x3b_c00488{left:330.720000pt;}
.x4d_c00488{left:333.127707pt;}
.x14_c00488{left:335.673333pt;}
.x5d_c00488{left:338.640000pt;}
.x33_c00488{left:341.641333pt;}
.x86_c00488{left:342.960000pt;}
.xb8_c00488{left:344.869333pt;}
.x98_c00488{left:346.320000pt;}
.x1c_c00488{left:347.409333pt;}
.xb3_c00488{left:348.720000pt;}
.x46_c00488{left:350.034667pt;}
.x27_c00488{left:351.250667pt;}
.x53_c00488{left:353.192000pt;}
.x41_c00488{left:354.853333pt;}
.xa5_c00488{left:358.561333pt;}
.x5_c00488{left:359.520000pt;}
.xab_c00488{left:360.601333pt;}
.x4e_c00488{left:361.928701pt;}
.x8d_c00488{left:363.360000pt;}
.xd_c00488{left:365.926667pt;}
.x94_c00488{left:366.960000pt;}
.x9d_c00488{left:368.286667pt;}
.x62_c00488{left:369.600000pt;}
.x47_c00488{left:371.121333pt;}
.x8e_c00488{left:373.440000pt;}
.x28_c00488{left:375.225333pt;}
.x1d_c00488{left:377.898667pt;}
.x15_c00488{left:379.102667pt;}
.xbc_c00488{left:382.500000pt;}
.xac_c00488{left:383.898667pt;}
.x5e_c00488{left:386.160000pt;}
.x23_c00488{left:392.551627pt;}
.x16_c00488{left:395.186667pt;}
.x56_c00488{left:396.240000pt;}
.x5b_c00488{left:398.160000pt;}
.x29_c00488{left:401.420000pt;}
.x87_c00488{left:402.480000pt;}
.xa6_c00488{left:404.881333pt;}
.xb9_c00488{left:406.124000pt;}
.x8f_c00488{left:409.440000pt;}
.x88_c00488{left:411.360000pt;}
.xa7_c00488{left:412.561333pt;}
.x99_c00488{left:414.480000pt;}
.xb4_c00488{left:417.120000pt;}
.x90_c00488{left:418.800000pt;}
.x17_c00488{left:419.865333pt;}
.x42_c00488{left:421.440000pt;}
.xb7_c00488{left:422.612000pt;}
.xe_c00488{left:424.857333pt;}
.xaa_c00488{left:426.721333pt;}
.x89_c00488{left:427.680000pt;}
.xa1_c00488{left:428.641333pt;}
.x95_c00488{left:429.840000pt;}
.x34_c00488{left:436.910667pt;}
.xa8_c00488{left:438.241333pt;}
.x9a_c00488{left:439.200000pt;}
.xb5_c00488{left:440.400000pt;}
.x91_c00488{left:442.560000pt;}
.x2a_c00488{left:443.668000pt;}
.xa2_c00488{left:446.401333pt;}
.xb1_c00488{left:448.578667pt;}
.xad_c00488{left:450.134667pt;}
.xa3_c00488{left:456.481333pt;}
.x9b_c00488{left:460.080000pt;}
.xbd_c00488{left:461.924000pt;}
.xba_c00488{left:465.578667pt;}
.x9e_c00488{left:466.910667pt;}
.x96_c00488{left:468.720000pt;}
.x2e_c00488{left:470.037333pt;}
.xae_c00488{left:474.618667pt;}
.x8a_c00488{left:477.360000pt;}
.x9c_c00488{left:478.800000pt;}
.x97_c00488{left:486.240000pt;}
.xaf_c00488{left:487.824000pt;}
.xbb_c00488{left:491.262667pt;}
.x9f_c00488{left:495.952000pt;}
.x92_c00488{left:498.480000pt;}
.xa9_c00488{left:500.161333pt;}
.x8b_c00488{left:504.000000pt;}
.xa0_c00488{left:504.901333pt;}
.xa4_c00488{left:506.401333pt;}
.x65_c00488{left:507.898667pt;}
.x93_c00488{left:509.280000pt;}
.xb2_c00488{left:511.185333pt;}
.xb0_c00488{left:517.128000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m35_c00489{transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014845,0.000000,0.000000,0.250000,0,0);}
.m2d_c00489{transform:matrix(0.017420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017420,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.056380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056380,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.108565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108565,0.000000,0.000000,0.250000,0,0);}
.m53_c00489{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{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);}
.m52_c00489{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);}
.m2a_c00489{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);}
.ma_c00489{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);}
.m11_c00489{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);}
.me_c00489{transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161710,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{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);}
.m9_c00489{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_c00489{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);}
.m26_c00489{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);}
.m10_c00489{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);}
.mc_c00489{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);}
.m1_c00489{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);}
.m22_c00489{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);}
.m30_c00489{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);}
.m58_c00489{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);}
.m3b_c00489{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);}
.m7_c00489{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);}
.m15_c00489{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);}
.m5b_c00489{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);}
.m5_c00489{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);}
.m13_c00489{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);}
.m29_c00489{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);}
.m55_c00489{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);}
.m38_c00489{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);}
.m41_c00489{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);}
.m18_c00489{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);}
.m14_c00489{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);}
.m1c_c00489{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);}
.m51_c00489{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);}
.m50_c00489{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);}
.m5e_c00489{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);}
.m6_c00489{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);}
.m36_c00489{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);}
.m1b_c00489{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);}
.md_c00489{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);}
.m4f_c00489{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);}
.m2f_c00489{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);}
.m3f_c00489{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);}
.m8_c00489{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);}
.m16_c00489{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);}
.m32_c00489{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);}
.m60_c00489{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);}
.mf_c00489{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);}
.m31_c00489{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);}
.m2b_c00489{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);}
.m3a_c00489{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);}
.m17_c00489{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);}
.m37_c00489{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);}
.m39_c00489{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);}
.m48_c00489{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);}
.m27_c00489{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);}
.mb_c00489{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);}
.m4e_c00489{transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{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);}
.m43_c00489{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);}
.m44_c00489{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);}
.m46_c00489{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);}
.m49_c00489{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);}
.m2e_c00489{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);}
.m4b_c00489{transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);}
.m24_c00489{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);}
.m4d_c00489{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);}
.m3e_c00489{transform:matrix(0.239995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239995,0.000000,0.000000,0.250000,0,0);}
.m59_c00489{transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241530,0.000000,0.000000,0.250000,0,0);}
.m5c_c00489{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);}
.m33_c00489{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);}
.m54_c00489{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);}
.m5f_c00489{transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);}
.m34_c00489{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.m4a_c00489{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);}
.m1d_c00489{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);}
.m40_c00489{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);}
.m47_c00489{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);}
.m42_c00489{transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265405,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);}
.m4c_c00489{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.m20_c00489{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.m5d_c00489{transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00489{transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323880,0.000000,0.000000,0.250000,0,0);}
.m56_c00489{transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327470,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334660,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335825,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{transform:matrix(0.367630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367630,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382165,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{transform:matrix(0.397270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397270,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{transform:matrix(0.400220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400220,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.626460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626460,0.000000,0.000000,0.250000,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;}
.fs5_c00489{font-size:48.300000px;}
.fs6_c00489{font-size:50.400000px;}
.fs4_c00489{font-size:51.450000px;}
.fs1_c00489{font-size:52.500000px;}
.fs2_c00489{font-size:54.600000px;}
.fs3_c00489{font-size:55.650000px;}
.fs0_c00489{font-size:70.350000px;}
.y0_c00489{bottom:0.000000px;}
.y3a_c00489{bottom:148.567500px;}
.y39_c00489{bottom:149.815500px;}
.y38_c00489{bottom:150.046500px;}
.y37_c00489{bottom:150.709500px;}
.y36_c00489{bottom:150.984000px;}
.y35_c00489{bottom:152.022000px;}
.y34_c00489{bottom:152.302500px;}
.y33_c00489{bottom:152.446500px;}
.y32_c00489{bottom:152.679000px;}
.y31_c00489{bottom:153.001500px;}
.y30_c00489{bottom:153.316500px;}
.y2f_c00489{bottom:153.603000px;}
.y2e_c00489{bottom:154.533000px;}
.y2d_c00489{bottom:154.995000px;}
.y2c_c00489{bottom:155.674500px;}
.y2b_c00489{bottom:156.474000px;}
.y2a_c00489{bottom:157.957500px;}
.y29_c00489{bottom:171.642000px;}
.y28_c00489{bottom:171.952500px;}
.y27_c00489{bottom:172.146000px;}
.y26_c00489{bottom:172.383000px;}
.y25_c00489{bottom:172.722000px;}
.y24_c00489{bottom:172.830000px;}
.y23_c00489{bottom:172.963500px;}
.y22_c00489{bottom:173.253000px;}
.y21_c00489{bottom:173.769000px;}
.y20_c00489{bottom:174.172500px;}
.y1f_c00489{bottom:174.585000px;}
.y1e_c00489{bottom:174.861000px;}
.y1d_c00489{bottom:174.993000px;}
.y1c_c00489{bottom:175.230000px;}
.y1b_c00489{bottom:188.686500px;}
.y1a_c00489{bottom:189.027000px;}
.y19_c00489{bottom:189.123000px;}
.y18_c00489{bottom:189.541500px;}
.y17_c00489{bottom:189.820500px;}
.y16_c00489{bottom:190.021500px;}
.y15_c00489{bottom:190.549500px;}
.y14_c00489{bottom:190.816500px;}
.y13_c00489{bottom:190.903500px;}
.y12_c00489{bottom:191.229000px;}
.y11_c00489{bottom:191.496000px;}
.y10_c00489{bottom:191.724000px;}
.yf_c00489{bottom:192.373500px;}
.ye_c00489{bottom:192.502500px;}
.yd_c00489{bottom:192.889500px;}
.yc_c00489{bottom:193.050000px;}
.yb_c00489{bottom:208.251000px;}
.y3b_c00489{bottom:208.288500px;}
.ya_c00489{bottom:208.680000px;}
.y9_c00489{bottom:209.089500px;}
.y8_c00489{bottom:209.737500px;}
.y7_c00489{bottom:210.331500px;}
.y6_c00489{bottom:227.577000px;}
.y5_c00489{bottom:245.701500px;}
.y4_c00489{bottom:730.098000px;}
.y3_c00489{bottom:790.132500px;}
.y2_c00489{bottom:813.888000px;}
.y1_c00489{bottom:837.441000px;}
.h7_c00489{height:48.300000px;}
.h8_c00489{height:50.400000px;}
.h6_c00489{height:51.450000px;}
.h3_c00489{height:52.500000px;}
.h4_c00489{height:54.600000px;}
.h5_c00489{height:55.650000px;}
.h2_c00489{height:70.350000px;}
.h0_c00489{height:1008.450000px;}
.h1_c00489{height:1008.750000px;}
.w1_c00489{width:700.500000px;}
.w0_c00489{width:700.650000px;}
.x0_c00489{left:0.000000px;}
.x3e_c00489{left:111.060000px;}
.x16_c00489{left:139.050000px;}
.x24_c00489{left:157.032000px;}
.x33_c00489{left:169.209000px;}
.x1b_c00489{left:173.070000px;}
.x17_c00489{left:174.420000px;}
.x1_c00489{left:177.660000px;}
.x8_c00489{left:180.630000px;}
.x1c_c00489{left:184.410000px;}
.x34_c00489{left:185.686500px;}
.x21_c00489{left:192.136500px;}
.x25_c00489{left:199.987500px;}
.x9_c00489{left:201.420000px;}
.x18_c00489{left:209.250000px;}
.x26_c00489{left:214.287000px;}
.x1d_c00489{left:217.080000px;}
.x35_c00489{left:220.255500px;}
.x2_c00489{left:221.670000px;}
.x3f_c00489{left:225.256500px;}
.x1e_c00489{left:228.960000px;}
.xa_c00489{left:240.840000px;}
.x1f_c00489{left:250.290000px;}
.x40_c00489{left:259.269000px;}
.x3_c00489{left:262.170000px;}
.xb_c00489{left:264.330000px;}
.x19_c00489{left:272.430000px;}
.x41_c00489{left:282.393000px;}
.x10_c00489{left:284.040000px;}
.x27_c00489{left:286.393500px;}
.x22_c00489{left:288.199500px;}
.x12_c00489{left:296.190000px;}
.x4_c00489{left:298.350000px;}
.xc_c00489{left:299.700000px;}
.x28_c00489{left:311.694000px;}
.x36_c00489{left:322.311000px;}
.x23_c00489{left:327.229500px;}
.x13_c00489{left:329.130000px;}
.x1a_c00489{left:334.530000px;}
.xd_c00489{left:338.310000px;}
.x29_c00489{left:341.436000px;}
.x42_c00489{left:343.237500px;}
.x5_c00489{left:354.240000px;}
.x14_c00489{left:358.560000px;}
.x20_c00489{left:367.200000px;}
.xe_c00489{left:371.790000px;}
.x43_c00489{left:375.085500px;}
.x2a_c00489{left:377.641500px;}
.x2b_c00489{left:387.360000px;}
.x44_c00489{left:393.912000px;}
.x6_c00489{left:405.000000px;}
.x45_c00489{left:407.968500px;}
.x11_c00489{left:415.530000px;}
.x2c_c00489{left:417.064500px;}
.x37_c00489{left:422.997000px;}
.x4b_c00489{left:434.430000px;}
.x15_c00489{left:435.510000px;}
.x38_c00489{left:439.750500px;}
.x7_c00489{left:444.960000px;}
.xf_c00489{left:449.550000px;}
.x39_c00489{left:453.262500px;}
.x46_c00489{left:459.895500px;}
.x4c_c00489{left:468.720000px;}
.x47_c00489{left:473.601000px;}
.x2d_c00489{left:475.671000px;}
.x3a_c00489{left:495.652500px;}
.x2e_c00489{left:498.069000px;}
.x48_c00489{left:506.776500px;}
.x49_c00489{left:518.311500px;}
.x3b_c00489{left:525.348000px;}
.x2f_c00489{left:529.128000px;}
.x3c_c00489{left:549.627000px;}
.x30_c00489{left:575.625000px;}
.x4a_c00489{left:580.683000px;}
.x31_c00489{left:586.290000px;}
.x3d_c00489{left:588.507000px;}
.x32_c00489{left:624.121500px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fs5_c00489{font-size:42.933333pt;}
.fs6_c00489{font-size:44.800000pt;}
.fs4_c00489{font-size:45.733333pt;}
.fs1_c00489{font-size:46.666667pt;}
.fs2_c00489{font-size:48.533333pt;}
.fs3_c00489{font-size:49.466667pt;}
.fs0_c00489{font-size:62.533333pt;}
.y0_c00489{bottom:0.000000pt;}
.y3a_c00489{bottom:132.060000pt;}
.y39_c00489{bottom:133.169333pt;}
.y38_c00489{bottom:133.374667pt;}
.y37_c00489{bottom:133.964000pt;}
.y36_c00489{bottom:134.208000pt;}
.y35_c00489{bottom:135.130667pt;}
.y34_c00489{bottom:135.380000pt;}
.y33_c00489{bottom:135.508000pt;}
.y32_c00489{bottom:135.714667pt;}
.y31_c00489{bottom:136.001333pt;}
.y30_c00489{bottom:136.281333pt;}
.y2f_c00489{bottom:136.536000pt;}
.y2e_c00489{bottom:137.362667pt;}
.y2d_c00489{bottom:137.773333pt;}
.y2c_c00489{bottom:138.377333pt;}
.y2b_c00489{bottom:139.088000pt;}
.y2a_c00489{bottom:140.406667pt;}
.y29_c00489{bottom:152.570667pt;}
.y28_c00489{bottom:152.846667pt;}
.y27_c00489{bottom:153.018667pt;}
.y26_c00489{bottom:153.229333pt;}
.y25_c00489{bottom:153.530667pt;}
.y24_c00489{bottom:153.626667pt;}
.y23_c00489{bottom:153.745333pt;}
.y22_c00489{bottom:154.002667pt;}
.y21_c00489{bottom:154.461333pt;}
.y20_c00489{bottom:154.820000pt;}
.y1f_c00489{bottom:155.186667pt;}
.y1e_c00489{bottom:155.432000pt;}
.y1d_c00489{bottom:155.549333pt;}
.y1c_c00489{bottom:155.760000pt;}
.y1b_c00489{bottom:167.721333pt;}
.y1a_c00489{bottom:168.024000pt;}
.y19_c00489{bottom:168.109333pt;}
.y18_c00489{bottom:168.481333pt;}
.y17_c00489{bottom:168.729333pt;}
.y16_c00489{bottom:168.908000pt;}
.y15_c00489{bottom:169.377333pt;}
.y14_c00489{bottom:169.614667pt;}
.y13_c00489{bottom:169.692000pt;}
.y12_c00489{bottom:169.981333pt;}
.y11_c00489{bottom:170.218667pt;}
.y10_c00489{bottom:170.421333pt;}
.yf_c00489{bottom:170.998667pt;}
.ye_c00489{bottom:171.113333pt;}
.yd_c00489{bottom:171.457333pt;}
.yc_c00489{bottom:171.600000pt;}
.yb_c00489{bottom:185.112000pt;}
.y3b_c00489{bottom:185.145333pt;}
.ya_c00489{bottom:185.493333pt;}
.y9_c00489{bottom:185.857333pt;}
.y8_c00489{bottom:186.433333pt;}
.y7_c00489{bottom:186.961333pt;}
.y6_c00489{bottom:202.290667pt;}
.y5_c00489{bottom:218.401333pt;}
.y4_c00489{bottom:648.976000pt;}
.y3_c00489{bottom:702.340000pt;}
.y2_c00489{bottom:723.456000pt;}
.y1_c00489{bottom:744.392000pt;}
.h7_c00489{height:42.933333pt;}
.h8_c00489{height:44.800000pt;}
.h6_c00489{height:45.733333pt;}
.h3_c00489{height:46.666667pt;}
.h4_c00489{height:48.533333pt;}
.h5_c00489{height:49.466667pt;}
.h2_c00489{height:62.533333pt;}
.h0_c00489{height:896.400000pt;}
.h1_c00489{height:896.666667pt;}
.w1_c00489{width:622.666667pt;}
.w0_c00489{width:622.800000pt;}
.x0_c00489{left:0.000000pt;}
.x3e_c00489{left:98.720000pt;}
.x16_c00489{left:123.600000pt;}
.x24_c00489{left:139.584000pt;}
.x33_c00489{left:150.408000pt;}
.x1b_c00489{left:153.840000pt;}
.x17_c00489{left:155.040000pt;}
.x1_c00489{left:157.920000pt;}
.x8_c00489{left:160.560000pt;}
.x1c_c00489{left:163.920000pt;}
.x34_c00489{left:165.054667pt;}
.x21_c00489{left:170.788000pt;}
.x25_c00489{left:177.766667pt;}
.x9_c00489{left:179.040000pt;}
.x18_c00489{left:186.000000pt;}
.x26_c00489{left:190.477333pt;}
.x1d_c00489{left:192.960000pt;}
.x35_c00489{left:195.782667pt;}
.x2_c00489{left:197.040000pt;}
.x3f_c00489{left:200.228000pt;}
.x1e_c00489{left:203.520000pt;}
.xa_c00489{left:214.080000pt;}
.x1f_c00489{left:222.480000pt;}
.x40_c00489{left:230.461333pt;}
.x3_c00489{left:233.040000pt;}
.xb_c00489{left:234.960000pt;}
.x19_c00489{left:242.160000pt;}
.x41_c00489{left:251.016000pt;}
.x10_c00489{left:252.480000pt;}
.x27_c00489{left:254.572000pt;}
.x22_c00489{left:256.177333pt;}
.x12_c00489{left:263.280000pt;}
.x4_c00489{left:265.200000pt;}
.xc_c00489{left:266.400000pt;}
.x28_c00489{left:277.061333pt;}
.x36_c00489{left:286.498667pt;}
.x23_c00489{left:290.870667pt;}
.x13_c00489{left:292.560000pt;}
.x1a_c00489{left:297.360000pt;}
.xd_c00489{left:300.720000pt;}
.x29_c00489{left:303.498667pt;}
.x42_c00489{left:305.100000pt;}
.x5_c00489{left:314.880000pt;}
.x14_c00489{left:318.720000pt;}
.x20_c00489{left:326.400000pt;}
.xe_c00489{left:330.480000pt;}
.x43_c00489{left:333.409333pt;}
.x2a_c00489{left:335.681333pt;}
.x2b_c00489{left:344.320000pt;}
.x44_c00489{left:350.144000pt;}
.x6_c00489{left:360.000000pt;}
.x45_c00489{left:362.638667pt;}
.x11_c00489{left:369.360000pt;}
.x2c_c00489{left:370.724000pt;}
.x37_c00489{left:375.997333pt;}
.x4b_c00489{left:386.160000pt;}
.x15_c00489{left:387.120000pt;}
.x38_c00489{left:390.889333pt;}
.x7_c00489{left:395.520000pt;}
.xf_c00489{left:399.600000pt;}
.x39_c00489{left:402.900000pt;}
.x46_c00489{left:408.796000pt;}
.x4c_c00489{left:416.640000pt;}
.x47_c00489{left:420.978667pt;}
.x2d_c00489{left:422.818667pt;}
.x3a_c00489{left:440.580000pt;}
.x2e_c00489{left:442.728000pt;}
.x48_c00489{left:450.468000pt;}
.x49_c00489{left:460.721333pt;}
.x3b_c00489{left:466.976000pt;}
.x2f_c00489{left:470.336000pt;}
.x3c_c00489{left:488.557333pt;}
.x30_c00489{left:511.666667pt;}
.x4a_c00489{left:516.162667pt;}
.x31_c00489{left:521.146667pt;}
.x3d_c00489{left:523.117333pt;}
.x32_c00489{left:554.774667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mab_c00490{transform:matrix(0.012324,-0.000123,0.002500,0.249988,0,0);-ms-transform:matrix(0.012324,-0.000123,0.002500,0.249988,0,0);-webkit-transform:matrix(0.012324,-0.000123,0.002500,0.249988,0,0);}
.m67_c00490{transform:matrix(0.035329,-0.000883,0.006248,0.249922,0,0);-ms-transform:matrix(0.035329,-0.000883,0.006248,0.249922,0,0);-webkit-transform:matrix(0.035329,-0.000883,0.006248,0.249922,0,0);}
.mbc_c00490{transform:matrix(0.039518,-0.000395,0.002500,0.249988,0,0);-ms-transform:matrix(0.039518,-0.000395,0.002500,0.249988,0,0);-webkit-transform:matrix(0.039518,-0.000395,0.002500,0.249988,0,0);}
.m9b_c00490{transform:matrix(0.047063,-0.000471,0.002500,0.249988,0,0);-ms-transform:matrix(0.047063,-0.000471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.047063,-0.000471,0.002500,0.249988,0,0);}
.m56_c00490{transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);}
.ma2_c00490{transform:matrix(0.086571,-0.000866,0.002500,0.249988,0,0);-ms-transform:matrix(0.086571,-0.000866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.086571,-0.000866,0.002500,0.249988,0,0);}
.m37_c00490{transform:matrix(0.086916,-0.000782,0.002250,0.249990,0,0);-ms-transform:matrix(0.086916,-0.000782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.086916,-0.000782,0.002250,0.249990,0,0);}
.m14_c00490{transform:matrix(0.091851,-0.000827,0.002250,0.249990,0,0);-ms-transform:matrix(0.091851,-0.000827,0.002250,0.249990,0,0);-webkit-transform:matrix(0.091851,-0.000827,0.002250,0.249990,0,0);}
.m7f_c00490{transform:matrix(0.100940,-0.001009,0.002500,0.249988,0,0);-ms-transform:matrix(0.100940,-0.001009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.100940,-0.001009,0.002500,0.249988,0,0);}
.mb2_c00490{transform:matrix(0.109995,-0.001100,0.002500,0.249988,0,0);-ms-transform:matrix(0.109995,-0.001100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.109995,-0.001100,0.002500,0.249988,0,0);}
.m4a_c00490{transform:matrix(0.129370,-0.001164,0.002250,0.249990,0,0);-ms-transform:matrix(0.129370,-0.001164,0.002250,0.249990,0,0);-webkit-transform:matrix(0.129370,-0.001164,0.002250,0.249990,0,0);}
.m12_c00490{transform:matrix(0.139569,-0.001256,0.002250,0.249990,0,0);-ms-transform:matrix(0.139569,-0.001256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.139569,-0.001256,0.002250,0.249990,0,0);}
.m34_c00490{transform:matrix(0.143169,-0.001289,0.002250,0.249990,0,0);-ms-transform:matrix(0.143169,-0.001289,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143169,-0.001289,0.002250,0.249990,0,0);}
.maf_c00490{transform:matrix(0.143518,-0.001435,0.002500,0.249988,0,0);-ms-transform:matrix(0.143518,-0.001435,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143518,-0.001435,0.002500,0.249988,0,0);}
.m3a_c00490{transform:matrix(0.144049,-0.001296,0.002250,0.249990,0,0);-ms-transform:matrix(0.144049,-0.001296,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144049,-0.001296,0.002250,0.249990,0,0);}
.ma0_c00490{transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);-ms-transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144538,-0.001445,0.002500,0.249988,0,0);}
.m2a_c00490{transform:matrix(0.144714,-0.001302,0.002250,0.249990,0,0);-ms-transform:matrix(0.144714,-0.001302,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144714,-0.001302,0.002250,0.249990,0,0);}
.m40_c00490{transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);-ms-transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);}
.me_c00490{transform:matrix(0.146974,-0.001323,0.002250,0.249990,0,0);-ms-transform:matrix(0.146974,-0.001323,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146974,-0.001323,0.002250,0.249990,0,0);}
.m39_c00490{transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);-ms-transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148169,-0.001334,0.002250,0.249990,0,0);}
.m26_c00490{transform:matrix(0.151169,-0.001361,0.002250,0.249990,0,0);-ms-transform:matrix(0.151169,-0.001361,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151169,-0.001361,0.002250,0.249990,0,0);}
.ma7_c00490{transform:matrix(0.152222,-0.001522,0.002500,0.249988,0,0);-ms-transform:matrix(0.152222,-0.001522,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152222,-0.001522,0.002500,0.249988,0,0);}
.m5c_c00490{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);}
.m7a_c00490{transform:matrix(0.157016,-0.003925,0.006248,0.249922,0,0);-ms-transform:matrix(0.157016,-0.003925,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157016,-0.003925,0.006248,0.249922,0,0);}
.m3c_c00490{transform:matrix(0.157059,-0.001414,0.002250,0.249990,0,0);-ms-transform:matrix(0.157059,-0.001414,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157059,-0.001414,0.002250,0.249990,0,0);}
.m74_c00490{transform:matrix(0.157821,-0.003946,0.006248,0.249922,0,0);-ms-transform:matrix(0.157821,-0.003946,0.006248,0.249922,0,0);-webkit-transform:matrix(0.157821,-0.003946,0.006248,0.249922,0,0);}
.m52_c00490{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);}
.ma1_c00490{transform:matrix(0.160902,-0.001609,0.002500,0.249988,0,0);-ms-transform:matrix(0.160902,-0.001609,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160902,-0.001609,0.002500,0.249988,0,0);}
.mb0_c00490{transform:matrix(0.161482,-0.001615,0.002500,0.249988,0,0);-ms-transform:matrix(0.161482,-0.001615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161482,-0.001615,0.002500,0.249988,0,0);}
.m47_c00490{transform:matrix(0.169308,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169308,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169308,-0.001524,0.002250,0.249990,0,0);}
.m23_c00490{transform:matrix(0.169533,-0.001526,0.002250,0.249990,0,0);-ms-transform:matrix(0.169533,-0.001526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169533,-0.001526,0.002250,0.249990,0,0);}
.mb7_c00490{transform:matrix(0.170256,-0.001703,0.002500,0.249988,0,0);-ms-transform:matrix(0.170256,-0.001703,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170256,-0.001703,0.002500,0.249988,0,0);}
.m22_c00490{transform:matrix(0.170828,-0.001537,0.002250,0.249990,0,0);-ms-transform:matrix(0.170828,-0.001537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170828,-0.001537,0.002250,0.249990,0,0);}
.m8f_c00490{transform:matrix(0.170946,-0.001709,0.002500,0.249988,0,0);-ms-transform:matrix(0.170946,-0.001709,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170946,-0.001709,0.002500,0.249988,0,0);}
.m2e_c00490{transform:matrix(0.171018,-0.001539,0.002250,0.249990,0,0);-ms-transform:matrix(0.171018,-0.001539,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171018,-0.001539,0.002250,0.249990,0,0);}
.mb3_c00490{transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171871,-0.001719,0.002500,0.249988,0,0);}
.m25_c00490{transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);-ms-transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173038,-0.001557,0.002250,0.249990,0,0);}
.m3e_c00490{transform:matrix(0.173599,-0.001910,0.002750,0.249985,0,0);-ms-transform:matrix(0.173599,-0.001910,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173599,-0.001910,0.002750,0.249985,0,0);}
.ma8_c00490{transform:matrix(0.174436,-0.001744,0.002500,0.249988,0,0);-ms-transform:matrix(0.174436,-0.001744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174436,-0.001744,0.002500,0.249988,0,0);}
.m36_c00490{transform:matrix(0.176223,-0.001586,0.002250,0.249990,0,0);-ms-transform:matrix(0.176223,-0.001586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176223,-0.001586,0.002250,0.249990,0,0);}
.m65_c00490{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);}
.m44_c00490{transform:matrix(0.177203,-0.001595,0.002250,0.249990,0,0);-ms-transform:matrix(0.177203,-0.001595,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177203,-0.001595,0.002250,0.249990,0,0);}
.m87_c00490{transform:matrix(0.178106,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178106,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178106,-0.001781,0.002500,0.249988,0,0);}
.m31_c00490{transform:matrix(0.178193,-0.001604,0.002250,0.249990,0,0);-ms-transform:matrix(0.178193,-0.001604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178193,-0.001604,0.002250,0.249990,0,0);}
.m54_c00490{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);}
.m7_c00490{transform:matrix(0.178490,-0.002320,0.003250,0.249979,0,0);-ms-transform:matrix(0.178490,-0.002320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178490,-0.002320,0.003250,0.249979,0,0);}
.m48_c00490{transform:matrix(0.178843,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178843,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178843,-0.001610,0.002250,0.249990,0,0);}
.m29_c00490{transform:matrix(0.179663,-0.001617,0.002250,0.249990,0,0);-ms-transform:matrix(0.179663,-0.001617,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179663,-0.001617,0.002250,0.249990,0,0);}
.ma3_c00490{transform:matrix(0.180476,-0.001805,0.002500,0.249988,0,0);-ms-transform:matrix(0.180476,-0.001805,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180476,-0.001805,0.002500,0.249988,0,0);}
.m91_c00490{transform:matrix(0.182191,-0.001822,0.002500,0.249988,0,0);-ms-transform:matrix(0.182191,-0.001822,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182191,-0.001822,0.002500,0.249988,0,0);}
.mad_c00490{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);}
.m64_c00490{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);}
.m84_c00490{transform:matrix(0.183051,-0.001831,0.002500,0.249988,0,0);-ms-transform:matrix(0.183051,-0.001831,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183051,-0.001831,0.002500,0.249988,0,0);}
.m99_c00490{transform:matrix(0.185686,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185686,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185686,-0.001857,0.002500,0.249988,0,0);}
.m28_c00490{transform:matrix(0.186447,-0.001678,0.002250,0.249990,0,0);-ms-transform:matrix(0.186447,-0.001678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186447,-0.001678,0.002250,0.249990,0,0);}
.m49_c00490{transform:matrix(0.186972,-0.001683,0.002250,0.249990,0,0);-ms-transform:matrix(0.186972,-0.001683,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186972,-0.001683,0.002250,0.249990,0,0);}
.m9c_c00490{transform:matrix(0.187311,-0.001873,0.002500,0.249988,0,0);-ms-transform:matrix(0.187311,-0.001873,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187311,-0.001873,0.002500,0.249988,0,0);}
.m93_c00490{transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187436,-0.001874,0.002500,0.249988,0,0);}
.m7e_c00490{transform:matrix(0.188276,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188276,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188276,-0.001883,0.002500,0.249988,0,0);}
.m42_c00490{transform:matrix(0.188624,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188624,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188624,-0.002075,0.002750,0.249985,0,0);}
.m35_c00490{transform:matrix(0.188672,-0.001698,0.002250,0.249990,0,0);-ms-transform:matrix(0.188672,-0.001698,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188672,-0.001698,0.002250,0.249990,0,0);}
.m72_c00490{transform:matrix(0.189051,-0.004726,0.006248,0.249922,0,0);-ms-transform:matrix(0.189051,-0.004726,0.006248,0.249922,0,0);-webkit-transform:matrix(0.189051,-0.004726,0.006248,0.249922,0,0);}
.m46_c00490{transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);-ms-transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);}
.m82_c00490{transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);-ms-transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189791,-0.001898,0.002500,0.249988,0,0);}
.m20_c00490{transform:matrix(0.190367,-0.001713,0.002250,0.249990,0,0);-ms-transform:matrix(0.190367,-0.001713,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190367,-0.001713,0.002250,0.249990,0,0);}
.m76_c00490{transform:matrix(0.190490,-0.004762,0.006248,0.249922,0,0);-ms-transform:matrix(0.190490,-0.004762,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190490,-0.004762,0.006248,0.249922,0,0);}
.m6_c00490{transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);-ms-transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190634,-0.002478,0.003250,0.249979,0,0);}
.m7b_c00490{transform:matrix(0.191910,-0.004798,0.006248,0.249922,0,0);-ms-transform:matrix(0.191910,-0.004798,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191910,-0.004798,0.006248,0.249922,0,0);}
.m70_c00490{transform:matrix(0.191945,-0.004799,0.006248,0.249922,0,0);-ms-transform:matrix(0.191945,-0.004799,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191945,-0.004799,0.006248,0.249922,0,0);}
.m33_c00490{transform:matrix(0.192652,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192652,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192652,-0.001734,0.002250,0.249990,0,0);}
.m69_c00490{transform:matrix(0.195474,-0.004887,0.006248,0.249922,0,0);-ms-transform:matrix(0.195474,-0.004887,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195474,-0.004887,0.006248,0.249922,0,0);}
.m27_c00490{transform:matrix(0.195552,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195552,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195552,-0.001760,0.002250,0.249990,0,0);}
.m78_c00490{transform:matrix(0.195839,-0.004896,0.006248,0.249922,0,0);-ms-transform:matrix(0.195839,-0.004896,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195839,-0.004896,0.006248,0.249922,0,0);}
.mb6_c00490{transform:matrix(0.195905,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195905,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195905,-0.001959,0.002500,0.249988,0,0);}
.m9e_c00490{transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);-ms-transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);}
.m55_c00490{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);}
.m15_c00490{transform:matrix(0.197657,-0.001779,0.002250,0.249990,0,0);-ms-transform:matrix(0.197657,-0.001779,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197657,-0.001779,0.002250,0.249990,0,0);}
.m8c_c00490{transform:matrix(0.197915,-0.001979,0.002500,0.249988,0,0);-ms-transform:matrix(0.197915,-0.001979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197915,-0.001979,0.002500,0.249988,0,0);}
.m61_c00490{transform:matrix(0.198043,-0.004951,0.006248,0.249922,0,0);-ms-transform:matrix(0.198043,-0.004951,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198043,-0.004951,0.006248,0.249922,0,0);}
.m5f_c00490{transform:matrix(0.198828,-0.004971,0.006248,0.249922,0,0);-ms-transform:matrix(0.198828,-0.004971,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198828,-0.004971,0.006248,0.249922,0,0);}
.m90_c00490{transform:matrix(0.200035,-0.002000,0.002500,0.249988,0,0);-ms-transform:matrix(0.200035,-0.002000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200035,-0.002000,0.002500,0.249988,0,0);}
.ma5_c00490{transform:matrix(0.200490,-0.002005,0.002500,0.249988,0,0);-ms-transform:matrix(0.200490,-0.002005,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200490,-0.002005,0.002500,0.249988,0,0);}
.m1a_c00490{transform:matrix(0.200497,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200497,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200497,-0.001804,0.002250,0.249990,0,0);}
.m1d_c00490{transform:matrix(0.201102,-0.001810,0.002250,0.249990,0,0);-ms-transform:matrix(0.201102,-0.001810,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201102,-0.001810,0.002250,0.249990,0,0);}
.m41_c00490{transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201348,-0.002215,0.002750,0.249985,0,0);}
.m50_c00490{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);}
.m5b_c00490{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);}
.mb8_c00490{transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-ms-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);}
.m32_c00490{transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);-ms-transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);}
.m7d_c00490{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);}
.m8d_c00490{transform:matrix(0.204550,-0.002045,0.002500,0.249988,0,0);-ms-transform:matrix(0.204550,-0.002045,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204550,-0.002045,0.002500,0.249988,0,0);}
.m3f_c00490{transform:matrix(0.204773,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204773,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204773,-0.002252,0.002750,0.249985,0,0);}
.m3b_c00490{transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205712,-0.001851,0.002250,0.249990,0,0);}
.ma6_c00490{transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);-ms-transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);}
.m9a_c00490{transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206100,-0.002061,0.002500,0.249988,0,0);}
.m2_c00490{transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);}
.m9d_c00490{transform:matrix(0.206260,-0.002063,0.002500,0.249988,0,0);-ms-transform:matrix(0.206260,-0.002063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206260,-0.002063,0.002500,0.249988,0,0);}
.m4d_c00490{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);}
.m53_c00490{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);}
.m8a_c00490{transform:matrix(0.207370,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207370,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207370,-0.002074,0.002500,0.249988,0,0);}
.m4f_c00490{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);}
.m19_c00490{transform:matrix(0.207872,-0.001871,0.002250,0.249990,0,0);-ms-transform:matrix(0.207872,-0.001871,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207872,-0.001871,0.002250,0.249990,0,0);}
.m8e_c00490{transform:matrix(0.209100,-0.002091,0.002500,0.249988,0,0);-ms-transform:matrix(0.209100,-0.002091,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209100,-0.002091,0.002500,0.249988,0,0);}
.m24_c00490{transform:matrix(0.209592,-0.001886,0.002250,0.249990,0,0);-ms-transform:matrix(0.209592,-0.001886,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209592,-0.001886,0.002250,0.249990,0,0);}
.m63_c00490{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);}
.m75_c00490{transform:matrix(0.210549,-0.005264,0.006248,0.249922,0,0);-ms-transform:matrix(0.210549,-0.005264,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210549,-0.005264,0.006248,0.249922,0,0);}
.m18_c00490{transform:matrix(0.211356,-0.001902,0.002250,0.249990,0,0);-ms-transform:matrix(0.211356,-0.001902,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211356,-0.001902,0.002250,0.249990,0,0);}
.m73_c00490{transform:matrix(0.211394,-0.005285,0.006248,0.249922,0,0);-ms-transform:matrix(0.211394,-0.005285,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211394,-0.005285,0.006248,0.249922,0,0);}
.m6e_c00490{transform:matrix(0.211424,-0.005286,0.006248,0.249922,0,0);-ms-transform:matrix(0.211424,-0.005286,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211424,-0.005286,0.006248,0.249922,0,0);}
.m2b_c00490{transform:matrix(0.211451,-0.001903,0.002250,0.249990,0,0);-ms-transform:matrix(0.211451,-0.001903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211451,-0.001903,0.002250,0.249990,0,0);}
.m2f_c00490{transform:matrix(0.213171,-0.001919,0.002250,0.249990,0,0);-ms-transform:matrix(0.213171,-0.001919,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213171,-0.001919,0.002250,0.249990,0,0);}
.ma4_c00490{transform:matrix(0.213759,-0.002138,0.002500,0.249988,0,0);-ms-transform:matrix(0.213759,-0.002138,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213759,-0.002138,0.002500,0.249988,0,0);}
.m6f_c00490{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);}
.m45_c00490{transform:matrix(0.217166,-0.001954,0.002250,0.249990,0,0);-ms-transform:matrix(0.217166,-0.001954,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217166,-0.001954,0.002250,0.249990,0,0);}
.m43_c00490{transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);}
.m83_c00490{transform:matrix(0.218264,-0.002183,0.002500,0.249988,0,0);-ms-transform:matrix(0.218264,-0.002183,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218264,-0.002183,0.002500,0.249988,0,0);}
.m98_c00490{transform:matrix(0.218889,-0.002189,0.002500,0.249988,0,0);-ms-transform:matrix(0.218889,-0.002189,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218889,-0.002189,0.002500,0.249988,0,0);}
.m86_c00490{transform:matrix(0.219144,-0.002191,0.002500,0.249988,0,0);-ms-transform:matrix(0.219144,-0.002191,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219144,-0.002191,0.002500,0.249988,0,0);}
.m4e_c00490{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);}
.m92_c00490{transform:matrix(0.219539,-0.002195,0.002500,0.249988,0,0);-ms-transform:matrix(0.219539,-0.002195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219539,-0.002195,0.002500,0.249988,0,0);}
.m88_c00490{transform:matrix(0.219589,-0.002196,0.002500,0.249988,0,0);-ms-transform:matrix(0.219589,-0.002196,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219589,-0.002196,0.002500,0.249988,0,0);}
.m66_c00490{transform:matrix(0.220181,-0.005505,0.006248,0.249922,0,0);-ms-transform:matrix(0.220181,-0.005505,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220181,-0.005505,0.006248,0.249922,0,0);}
.m4c_c00490{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);}
.m7c_c00490{transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);-ms-transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);}
.m30_c00490{transform:matrix(0.224321,-0.002019,0.002250,0.249990,0,0);-ms-transform:matrix(0.224321,-0.002019,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224321,-0.002019,0.002250,0.249990,0,0);}
.m51_c00490{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);}
.m2d_c00490{transform:matrix(0.226091,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226091,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226091,-0.002035,0.002250,0.249990,0,0);}
.m2c_c00490{transform:matrix(0.229301,-0.002064,0.002250,0.249990,0,0);-ms-transform:matrix(0.229301,-0.002064,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229301,-0.002064,0.002250,0.249990,0,0);}
.mf_c00490{transform:matrix(0.232256,-0.002090,0.002250,0.249990,0,0);-ms-transform:matrix(0.232256,-0.002090,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232256,-0.002090,0.002250,0.249990,0,0);}
.m4_c00490{transform:matrix(0.233200,-0.003032,0.003250,0.249979,0,0);-ms-transform:matrix(0.233200,-0.003032,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233200,-0.003032,0.003250,0.249979,0,0);}
.m5d_c00490{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);}
.m1e_c00490{transform:matrix(0.234391,-0.002110,0.002250,0.249990,0,0);-ms-transform:matrix(0.234391,-0.002110,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234391,-0.002110,0.002250,0.249990,0,0);}
.m6c_c00490{transform:matrix(0.234392,-0.005860,0.006248,0.249922,0,0);-ms-transform:matrix(0.234392,-0.005860,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234392,-0.005860,0.006248,0.249922,0,0);}
.m5_c00490{transform:matrix(0.235220,-0.003058,0.003250,0.249979,0,0);-ms-transform:matrix(0.235220,-0.003058,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235220,-0.003058,0.003250,0.249979,0,0);}
.m3d_c00490{transform:matrix(0.236851,-0.002605,0.002750,0.249985,0,0);-ms-transform:matrix(0.236851,-0.002605,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236851,-0.002605,0.002750,0.249985,0,0);}
.m21_c00490{transform:matrix(0.237955,-0.002142,0.002250,0.249990,0,0);-ms-transform:matrix(0.237955,-0.002142,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237955,-0.002142,0.002250,0.249990,0,0);}
.m89_c00490{transform:matrix(0.239048,-0.002390,0.002500,0.249988,0,0);-ms-transform:matrix(0.239048,-0.002390,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239048,-0.002390,0.002500,0.249988,0,0);}
.m38_c00490{transform:matrix(0.239920,-0.002159,0.002250,0.249990,0,0);-ms-transform:matrix(0.239920,-0.002159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239920,-0.002159,0.002250,0.249990,0,0);}
.m94_c00490{transform:matrix(0.240008,-0.002400,0.002500,0.249988,0,0);-ms-transform:matrix(0.240008,-0.002400,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240008,-0.002400,0.002500,0.249988,0,0);}
.m97_c00490{transform:matrix(0.241788,-0.002418,0.002500,0.249988,0,0);-ms-transform:matrix(0.241788,-0.002418,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241788,-0.002418,0.002500,0.249988,0,0);}
.m4b_c00490{transform:matrix(0.242425,-0.002182,0.002250,0.249990,0,0);-ms-transform:matrix(0.242425,-0.002182,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242425,-0.002182,0.002250,0.249990,0,0);}
.m77_c00490{transform:matrix(0.243349,-0.006084,0.006248,0.249922,0,0);-ms-transform:matrix(0.243349,-0.006084,0.006248,0.249922,0,0);-webkit-transform:matrix(0.243349,-0.006084,0.006248,0.249922,0,0);}
.m9f_c00490{transform:matrix(0.244723,-0.002447,0.002500,0.249988,0,0);-ms-transform:matrix(0.244723,-0.002447,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244723,-0.002447,0.002500,0.249988,0,0);}
.m1b_c00490{transform:matrix(0.244735,-0.002203,0.002250,0.249990,0,0);-ms-transform:matrix(0.244735,-0.002203,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244735,-0.002203,0.002250,0.249990,0,0);}
.m96_c00490{transform:matrix(0.244968,-0.002450,0.002500,0.249988,0,0);-ms-transform:matrix(0.244968,-0.002450,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244968,-0.002450,0.002500,0.249988,0,0);}
.m6d_c00490{transform:matrix(0.245283,-0.006132,0.006248,0.249922,0,0);-ms-transform:matrix(0.245283,-0.006132,0.006248,0.249922,0,0);-webkit-transform:matrix(0.245283,-0.006132,0.006248,0.249922,0,0);}
.md_c00490{transform:matrix(0.247680,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247680,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247680,-0.002229,0.002250,0.249990,0,0);}
.m80_c00490{transform:matrix(0.248983,-0.002490,0.002500,0.249988,0,0);-ms-transform:matrix(0.248983,-0.002490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248983,-0.002490,0.002500,0.249988,0,0);}
.m1f_c00490{transform:matrix(0.253070,-0.002278,0.002250,0.249990,0,0);-ms-transform:matrix(0.253070,-0.002278,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253070,-0.002278,0.002250,0.249990,0,0);}
.m1c_c00490{transform:matrix(0.255770,-0.002302,0.002250,0.249990,0,0);-ms-transform:matrix(0.255770,-0.002302,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255770,-0.002302,0.002250,0.249990,0,0);}
.m6b_c00490{transform:matrix(0.256190,-0.006405,0.006248,0.249922,0,0);-ms-transform:matrix(0.256190,-0.006405,0.006248,0.249922,0,0);-webkit-transform:matrix(0.256190,-0.006405,0.006248,0.249922,0,0);}
.m62_c00490{transform:matrix(0.258594,-0.006465,0.006248,0.249922,0,0);-ms-transform:matrix(0.258594,-0.006465,0.006248,0.249922,0,0);-webkit-transform:matrix(0.258594,-0.006465,0.006248,0.249922,0,0);}
.m68_c00490{transform:matrix(0.263103,-0.006578,0.006248,0.249922,0,0);-ms-transform:matrix(0.263103,-0.006578,0.006248,0.249922,0,0);-webkit-transform:matrix(0.263103,-0.006578,0.006248,0.249922,0,0);}
.m81_c00490{transform:matrix(0.264392,-0.002644,0.002500,0.249988,0,0);-ms-transform:matrix(0.264392,-0.002644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264392,-0.002644,0.002500,0.249988,0,0);}
.mbb_c00490{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);}
.m1_c00490{transform:matrix(0.269519,-0.002965,0.002750,0.249985,0,0);-ms-transform:matrix(0.269519,-0.002965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269519,-0.002965,0.002750,0.249985,0,0);}
.m79_c00490{transform:matrix(0.274569,-0.006864,0.006248,0.249922,0,0);-ms-transform:matrix(0.274569,-0.006864,0.006248,0.249922,0,0);-webkit-transform:matrix(0.274569,-0.006864,0.006248,0.249922,0,0);}
.m16_c00490{transform:matrix(0.285288,-0.002568,0.002250,0.249990,0,0);-ms-transform:matrix(0.285288,-0.002568,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285288,-0.002568,0.002250,0.249990,0,0);}
.m71_c00490{transform:matrix(0.292314,-0.007308,0.006248,0.249922,0,0);-ms-transform:matrix(0.292314,-0.007308,0.006248,0.249922,0,0);-webkit-transform:matrix(0.292314,-0.007308,0.006248,0.249922,0,0);}
.m85_c00490{transform:matrix(0.293010,-0.002930,0.002500,0.249988,0,0);-ms-transform:matrix(0.293010,-0.002930,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293010,-0.002930,0.002500,0.249988,0,0);}
.m17_c00490{transform:matrix(0.293203,-0.002639,0.002250,0.249990,0,0);-ms-transform:matrix(0.293203,-0.002639,0.002250,0.249990,0,0);-webkit-transform:matrix(0.293203,-0.002639,0.002250,0.249990,0,0);}
.maa_c00490{transform:matrix(0.300625,-0.003006,0.002500,0.249988,0,0);-ms-transform:matrix(0.300625,-0.003006,0.002500,0.249988,0,0);-webkit-transform:matrix(0.300625,-0.003006,0.002500,0.249988,0,0);}
.m13_c00490{transform:matrix(0.300833,-0.002707,0.002250,0.249990,0,0);-ms-transform:matrix(0.300833,-0.002707,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300833,-0.002707,0.002250,0.249990,0,0);}
.m60_c00490{transform:matrix(0.301861,-0.007547,0.006248,0.249922,0,0);-ms-transform:matrix(0.301861,-0.007547,0.006248,0.249922,0,0);-webkit-transform:matrix(0.301861,-0.007547,0.006248,0.249922,0,0);}
.m10_c00490{transform:matrix(0.302858,-0.002726,0.002250,0.249990,0,0);-ms-transform:matrix(0.302858,-0.002726,0.002250,0.249990,0,0);-webkit-transform:matrix(0.302858,-0.002726,0.002250,0.249990,0,0);}
.mb4_c00490{transform:matrix(0.305520,-0.003055,0.002500,0.249988,0,0);-ms-transform:matrix(0.305520,-0.003055,0.002500,0.249988,0,0);-webkit-transform:matrix(0.305520,-0.003055,0.002500,0.249988,0,0);}
.mae_c00490{transform:matrix(0.314969,-0.003150,0.002500,0.249988,0,0);-ms-transform:matrix(0.314969,-0.003150,0.002500,0.249988,0,0);-webkit-transform:matrix(0.314969,-0.003150,0.002500,0.249988,0,0);}
.m6a_c00490{transform:matrix(0.319915,-0.007998,0.006248,0.249922,0,0);-ms-transform:matrix(0.319915,-0.007998,0.006248,0.249922,0,0);-webkit-transform:matrix(0.319915,-0.007998,0.006248,0.249922,0,0);}
.ma9_c00490{transform:matrix(0.320729,-0.003207,0.002500,0.249988,0,0);-ms-transform:matrix(0.320729,-0.003207,0.002500,0.249988,0,0);-webkit-transform:matrix(0.320729,-0.003207,0.002500,0.249988,0,0);}
.m5a_c00490{transform:matrix(0.325885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325885,0.000000,0.000000,0.250000,0,0);}
.m58_c00490{transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326965,0.000000,0.000000,0.250000,0,0);}
.m5e_c00490{transform:matrix(0.329317,-0.008233,0.006248,0.249922,0,0);-ms-transform:matrix(0.329317,-0.008233,0.006248,0.249922,0,0);-webkit-transform:matrix(0.329317,-0.008233,0.006248,0.249922,0,0);}
.m3_c00490{transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343130,0.000000,0.000000,0.250000,0,0);}
.mb9_c00490{transform:matrix(0.362747,-0.003627,0.002500,0.249988,0,0);-ms-transform:matrix(0.362747,-0.003627,0.002500,0.249988,0,0);-webkit-transform:matrix(0.362747,-0.003627,0.002500,0.249988,0,0);}
.m95_c00490{transform:matrix(0.366717,-0.003667,0.002500,0.249988,0,0);-ms-transform:matrix(0.366717,-0.003667,0.002500,0.249988,0,0);-webkit-transform:matrix(0.366717,-0.003667,0.002500,0.249988,0,0);}
.mb5_c00490{transform:matrix(0.375011,-0.003750,0.002500,0.249988,0,0);-ms-transform:matrix(0.375011,-0.003750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.375011,-0.003750,0.002500,0.249988,0,0);}
.mac_c00490{transform:matrix(0.384981,-0.003850,0.002500,0.249988,0,0);-ms-transform:matrix(0.384981,-0.003850,0.002500,0.249988,0,0);-webkit-transform:matrix(0.384981,-0.003850,0.002500,0.249988,0,0);}
.mc_c00490{transform:matrix(0.387990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387990,0.000000,0.000000,0.250000,0,0);}
.mbe_c00490{transform:matrix(0.398715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398715,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.405005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405005,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.412715,-0.004540,0.002750,0.249985,0,0);-ms-transform:matrix(0.412715,-0.004540,0.002750,0.249985,0,0);-webkit-transform:matrix(0.412715,-0.004540,0.002750,0.249985,0,0);}
.m8_c00490{transform:matrix(0.445442,-0.005791,0.003250,0.249979,0,0);-ms-transform:matrix(0.445442,-0.005791,0.003250,0.249979,0,0);-webkit-transform:matrix(0.445442,-0.005791,0.003250,0.249979,0,0);}
.ma_c00490{transform:matrix(0.472805,-0.006146,0.003250,0.249979,0,0);-ms-transform:matrix(0.472805,-0.006146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.472805,-0.006146,0.003250,0.249979,0,0);}
.m8b_c00490{transform:matrix(0.479901,-0.004799,0.002500,0.249988,0,0);-ms-transform:matrix(0.479901,-0.004799,0.002500,0.249988,0,0);-webkit-transform:matrix(0.479901,-0.004799,0.002500,0.249988,0,0);}
.m57_c00490{transform:matrix(0.497285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497285,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.518640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518640,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.563297,-0.007323,0.003250,0.249979,0,0);-ms-transform:matrix(0.563297,-0.007323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.563297,-0.007323,0.003250,0.249979,0,0);}
.mb1_c00490{transform:matrix(0.589576,-0.005896,0.002500,0.249988,0,0);-ms-transform:matrix(0.589576,-0.005896,0.002500,0.249988,0,0);-webkit-transform:matrix(0.589576,-0.005896,0.002500,0.249988,0,0);}
.m11_c00490{transform:matrix(0.602896,-0.005426,0.002250,0.249990,0,0);-ms-transform:matrix(0.602896,-0.005426,0.002250,0.249990,0,0);-webkit-transform:matrix(0.602896,-0.005426,0.002250,0.249990,0,0);}
.mba_c00490{transform:matrix(0.682436,-0.006824,0.002500,0.249988,0,0);-ms-transform:matrix(0.682436,-0.006824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.682436,-0.006824,0.002500,0.249988,0,0);}
.mbd_c00490{transform:matrix(1.874730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.874730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.874730,0.000000,0.000000,0.250000,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;}
.fc0_c00490{color:transparent;}
.fs1_c00490{font-size:22.050000px;}
.fs13_c00490{font-size:49.352467px;}
.fs11_c00490{font-size:51.452572px;}
.fs12_c00490{font-size:52.502625px;}
.fs14_c00490{font-size:61.953097px;}
.fs8_c00490{font-size:63.002551px;}
.fsf_c00490{font-size:63.019684px;}
.fs15_c00490{font-size:65.100000px;}
.fse_c00490{font-size:67.220997px;}
.fs10_c00490{font-size:68.271325px;}
.fs4_c00490{font-size:69.300000px;}
.fs6_c00490{font-size:70.352849px;}
.fsa_c00490{font-size:70.354256px;}
.fsc_c00490{font-size:71.400000px;}
.fs9_c00490{font-size:72.452934px;}
.fs7_c00490{font-size:73.502977px;}
.fsd_c00490{font-size:74.550000px;}
.fs3_c00490{font-size:74.556299px;}
.fsb_c00490{font-size:75.603062px;}
.fs5_c00490{font-size:76.653104px;}
.fs0_c00490{font-size:85.055145px;}
.fs2_c00490{font-size:99.758429px;}
.y0_c00490{bottom:0.000000px;}
.yaf_c00490{bottom:159.070500px;}
.ya3_c00490{bottom:177.384600px;}
.ya4_c00490{bottom:177.633000px;}
.ya5_c00490{bottom:177.695310px;}
.ya6_c00490{bottom:177.861135px;}
.ya7_c00490{bottom:178.131450px;}
.ya8_c00490{bottom:178.354275px;}
.ya9_c00490{bottom:178.691295px;}
.yaa_c00490{bottom:178.771815px;}
.yab_c00490{bottom:178.984980px;}
.yac_c00490{bottom:179.076150px;}
.yad_c00490{bottom:179.263530px;}
.yae_c00490{bottom:179.985690px;}
.y95_c00490{bottom:195.739740px;}
.y96_c00490{bottom:196.052985px;}
.y97_c00490{bottom:196.181175px;}
.y98_c00490{bottom:196.575885px;}
.y99_c00490{bottom:196.921200px;}
.y9a_c00490{bottom:196.998855px;}
.y9b_c00490{bottom:197.308125px;}
.y9c_c00490{bottom:197.433540px;}
.y9d_c00490{bottom:197.661690px;}
.y9e_c00490{bottom:197.783730px;}
.y9f_c00490{bottom:198.127560px;}
.ya0_c00490{bottom:198.671355px;}
.ya1_c00490{bottom:199.025640px;}
.ya2_c00490{bottom:199.306500px;}
.y88_c00490{bottom:213.027720px;}
.y89_c00490{bottom:213.381510px;}
.y8a_c00490{bottom:214.509675px;}
.y8b_c00490{bottom:214.898490px;}
.y8c_c00490{bottom:215.060775px;}
.y8d_c00490{bottom:215.372475px;}
.y8e_c00490{bottom:215.527560px;}
.y8f_c00490{bottom:215.730210px;}
.y90_c00490{bottom:216.259080px;}
.y91_c00490{bottom:216.397320px;}
.y92_c00490{bottom:216.680775px;}
.y93_c00490{bottom:217.422180px;}
.y94_c00490{bottom:217.643625px;}
.y7d_c00490{bottom:230.040540px;}
.y7e_c00490{bottom:230.574255px;}
.y7f_c00490{bottom:231.088995px;}
.y80_c00490{bottom:231.679425px;}
.y81_c00490{bottom:232.239555px;}
.y82_c00490{bottom:232.585080px;}
.y83_c00490{bottom:233.107200px;}
.y84_c00490{bottom:233.550675px;}
.y85_c00490{bottom:234.246690px;}
.y86_c00490{bottom:234.461235px;}
.y87_c00490{bottom:234.992625px;}
.y6e_c00490{bottom:248.400000px;}
.y6f_c00490{bottom:248.627145px;}
.y70_c00490{bottom:248.894430px;}
.y71_c00490{bottom:249.271680px;}
.y72_c00490{bottom:249.323730px;}
.y73_c00490{bottom:249.606915px;}
.y74_c00490{bottom:249.909600px;}
.y75_c00490{bottom:250.220160px;}
.y76_c00490{bottom:250.457835px;}
.y77_c00490{bottom:250.809270px;}
.y78_c00490{bottom:251.365035px;}
.y79_c00490{bottom:251.699850px;}
.y7a_c00490{bottom:251.888955px;}
.y7b_c00490{bottom:252.272010px;}
.y7c_c00490{bottom:252.585630px;}
.y65_c00490{bottom:298.607962px;}
.y66_c00490{bottom:299.089162px;}
.y67_c00490{bottom:299.336662px;}
.y68_c00490{bottom:299.941613px;}
.y69_c00490{bottom:300.156263px;}
.y6a_c00490{bottom:300.520463px;}
.y6b_c00490{bottom:300.933075px;}
.y6c_c00490{bottom:301.108200px;}
.y6d_c00490{bottom:301.346963px;}
.y59_c00490{bottom:321.938250px;}
.y5a_c00490{bottom:322.108575px;}
.y5b_c00490{bottom:322.497975px;}
.y5c_c00490{bottom:322.980412px;}
.y5d_c00490{bottom:323.295338px;}
.y5e_c00490{bottom:323.924212px;}
.y5f_c00490{bottom:324.647250px;}
.y60_c00490{bottom:325.246575px;}
.y61_c00490{bottom:325.795762px;}
.y62_c00490{bottom:326.342325px;}
.y63_c00490{bottom:326.610637px;}
.y64_c00490{bottom:326.883225px;}
.y50_c00490{bottom:342.372000px;}
.y51_c00490{bottom:343.343512px;}
.y52_c00490{bottom:344.718075px;}
.y53_c00490{bottom:345.314100px;}
.y54_c00490{bottom:346.852612px;}
.y55_c00490{bottom:347.379300px;}
.y56_c00490{bottom:347.980537px;}
.y57_c00490{bottom:349.532550px;}
.y58_c00490{bottom:350.047087px;}
.y4f_c00490{bottom:375.909000px;}
.y4e_c00490{bottom:396.319500px;}
.y4d_c00490{bottom:418.492500px;}
.y4c_c00490{bottom:463.530000px;}
.y43_c00490{bottom:485.191500px;}
.y44_c00490{bottom:485.480305px;}
.y45_c00490{bottom:485.988729px;}
.y46_c00490{bottom:486.248644px;}
.y47_c00490{bottom:486.882820px;}
.y48_c00490{bottom:487.286025px;}
.y49_c00490{bottom:487.658044px;}
.y4a_c00490{bottom:487.825755px;}
.y4b_c00490{bottom:488.068957px;}
.y3d_c00490{bottom:507.601500px;}
.y3e_c00490{bottom:507.826873px;}
.y3f_c00490{bottom:508.207495px;}
.y40_c00490{bottom:508.911336px;}
.y41_c00490{bottom:509.282949px;}
.y42_c00490{bottom:509.960191px;}
.y33_c00490{bottom:530.548508px;}
.y34_c00490{bottom:530.922444px;}
.y35_c00490{bottom:531.129251px;}
.y36_c00490{bottom:531.620178px;}
.y37_c00490{bottom:532.129695px;}
.y38_c00490{bottom:532.261671px;}
.y39_c00490{bottom:532.465886px;}
.y3a_c00490{bottom:532.640441px;}
.y3b_c00490{bottom:532.837676px;}
.y3c_c00490{bottom:533.272646px;}
.y2c_c00490{bottom:554.395592px;}
.y2d_c00490{bottom:554.395758px;}
.y2b_c00490{bottom:554.396188px;}
.y2e_c00490{bottom:554.396271px;}
.y30_c00490{bottom:554.396304px;}
.y31_c00490{bottom:554.396517px;}
.y32_c00490{bottom:554.396684px;}
.y2f_c00490{bottom:554.396978px;}
.y22_c00490{bottom:576.719939px;}
.y23_c00490{bottom:577.157247px;}
.y24_c00490{bottom:577.523255px;}
.y25_c00490{bottom:577.818543px;}
.y26_c00490{bottom:578.461842px;}
.y27_c00490{bottom:579.088184px;}
.y28_c00490{bottom:579.268643px;}
.y29_c00490{bottom:579.625848px;}
.y2a_c00490{bottom:580.243305px;}
.y1b_c00490{bottom:599.671305px;}
.y1c_c00490{bottom:600.405738px;}
.y1d_c00490{bottom:601.325773px;}
.y1e_c00490{bottom:601.506651px;}
.y1f_c00490{bottom:601.771561px;}
.y20_c00490{bottom:602.119343px;}
.y21_c00490{bottom:602.298276px;}
.yd_c00490{bottom:621.811500px;}
.ye_c00490{bottom:622.076140px;}
.yf_c00490{bottom:622.149567px;}
.y10_c00490{bottom:622.606448px;}
.y11_c00490{bottom:622.707144px;}
.y12_c00490{bottom:623.195857px;}
.y13_c00490{bottom:623.253435px;}
.y14_c00490{bottom:623.737815px;}
.y15_c00490{bottom:623.842737px;}
.y16_c00490{bottom:624.346098px;}
.y17_c00490{bottom:624.465465px;}
.y18_c00490{bottom:624.826968px;}
.y19_c00490{bottom:625.223936px;}
.y1a_c00490{bottom:625.631487px;}
.yc_c00490{bottom:659.146500px;}
.ya_c00490{bottom:697.697053px;}
.yb_c00490{bottom:700.478007px;}
.y5_c00490{bottom:743.581500px;}
.y6_c00490{bottom:744.539886px;}
.y7_c00490{bottom:745.361245px;}
.y8_c00490{bottom:745.803603px;}
.y9_c00490{bottom:746.089765px;}
.y4_c00490{bottom:859.680000px;}
.y1_c00490{bottom:882.093000px;}
.y2_c00490{bottom:884.439019px;}
.y3_c00490{bottom:885.273639px;}
.h3_c00490{height:22.050000px;}
.h15_c00490{height:49.352467px;}
.h13_c00490{height:51.452572px;}
.h14_c00490{height:52.502625px;}
.h16_c00490{height:61.953097px;}
.ha_c00490{height:63.002551px;}
.h11_c00490{height:63.019684px;}
.h17_c00490{height:65.100000px;}
.h10_c00490{height:67.220997px;}
.h12_c00490{height:68.271325px;}
.h6_c00490{height:69.300000px;}
.h8_c00490{height:70.352849px;}
.hc_c00490{height:70.354256px;}
.he_c00490{height:71.400000px;}
.hb_c00490{height:72.452934px;}
.h9_c00490{height:73.502977px;}
.hf_c00490{height:74.550000px;}
.h5_c00490{height:74.556299px;}
.hd_c00490{height:75.603062px;}
.h7_c00490{height:76.653104px;}
.h2_c00490{height:85.055145px;}
.h4_c00490{height:99.758429px;}
.h1_c00490{height:1005.000000px;}
.h0_c00490{height:1005.150000px;}
.w0_c00490{width:715.200000px;}
.w1_c00490{width:715.500000px;}
.x0_c00490{left:0.000000px;}
.x60_c00490{left:107.071545px;}
.x57_c00490{left:112.384500px;}
.x73_c00490{left:115.104855px;}
.x1b_c00490{left:134.919464px;}
.x45_c00490{left:136.815000px;}
.xe_c00490{left:144.576000px;}
.x74_c00490{left:146.095470px;}
.x53_c00490{left:147.813787px;}
.x4b_c00490{left:151.284562px;}
.x6c_c00490{left:152.360415px;}
.x75_c00490{left:153.976635px;}
.x58_c00490{left:161.827500px;}
.x4c_c00490{left:164.341462px;}
.x35_c00490{left:165.888000px;}
.x40_c00490{left:168.750000px;}
.xf_c00490{left:173.980500px;}
.x46_c00490{left:175.675500px;}
.x38_c00490{left:176.923500px;}
.x5_c00490{left:179.448000px;}
.x10_c00490{left:182.139000px;}
.x2e_c00490{left:186.113299px;}
.xa_c00490{left:188.165370px;}
.x1_c00490{left:189.490500px;}
.x4d_c00490{left:194.326462px;}
.x36_c00490{left:200.490000px;}
.x4_c00490{left:203.040000px;}
.x59_c00490{left:204.757500px;}
.x1c_c00490{left:208.355802px;}
.x41_c00490{left:209.520000px;}
.x28_c00490{left:213.031738px;}
.x6d_c00490{left:217.701720px;}
.x22_c00490{left:224.731554px;}
.x54_c00490{left:228.834187px;}
.x47_c00490{left:230.658000px;}
.x11_c00490{left:232.903500px;}
.x76_c00490{left:236.374785px;}
.x12_c00490{left:244.092000px;}
.x3e_c00490{left:249.210000px;}
.x6_c00490{left:253.170000px;}
.x23_c00490{left:254.207784px;}
.x4e_c00490{left:255.639337px;}
.x29_c00490{left:260.554086px;}
.x39_c00490{left:262.294500px;}
.x2f_c00490{left:263.639299px;}
.xc_c00490{left:268.920000px;}
.x6e_c00490{left:270.649785px;}
.x77_c00490{left:278.477625px;}
.x42_c00490{left:279.990000px;}
.x78_c00490{left:288.479820px;}
.x61_c00490{left:290.369385px;}
.x5a_c00490{left:294.400500px;}
.x55_c00490{left:296.079075px;}
.x13_c00490{left:298.393500px;}
.x1d_c00490{left:300.414478px;}
.x14_c00490{left:304.791000px;}
.x6f_c00490{left:309.227550px;}
.x79_c00490{left:315.196860px;}
.x7_c00490{left:316.351500px;}
.x1e_c00490{left:318.511817px;}
.x30_c00490{left:320.252299px;}
.x2a_c00490{left:322.116067px;}
.x43_c00490{left:324.000000px;}
.x7a_c00490{left:326.564085px;}
.x3f_c00490{left:328.590000px;}
.x3a_c00490{left:332.758500px;}
.x31_c00490{left:334.916299px;}
.x48_c00490{left:337.107000px;}
.x1f_c00490{left:344.946074px;}
.x66_c00490{left:347.735775px;}
.x8_c00490{left:350.379000px;}
.x5b_c00490{left:353.311500px;}
.x32_c00490{left:357.606799px;}
.x15_c00490{left:358.611000px;}
.x37_c00490{left:359.826000px;}
.x49_c00490{left:361.156500px;}
.x62_c00490{left:362.732445px;}
.x70_c00490{left:368.639235px;}
.x16_c00490{left:370.269000px;}
.x9_c00490{left:372.391500px;}
.xb_c00490{left:373.580053px;}
.x33_c00490{left:377.001799px;}
.x20_c00490{left:379.754763px;}
.x24_c00490{left:381.111136px;}
.x67_c00490{left:383.509275px;}
.x7b_c00490{left:386.100000px;}
.x2b_c00490{left:387.458359px;}
.x21_c00490{left:397.636101px;}
.x25_c00490{left:399.161974px;}
.xd_c00490{left:400.680000px;}
.x2_c00490{left:402.765000px;}
.x4f_c00490{left:405.733837px;}
.x5c_c00490{left:408.888000px;}
.x71_c00490{left:411.573090px;}
.x3b_c00490{left:418.894500px;}
.x4a_c00490{left:423.237000px;}
.x17_c00490{left:426.198000px;}
.x26_c00490{left:434.851150px;}
.x68_c00490{left:436.396275px;}
.x3c_c00490{left:437.529000px;}
.x18_c00490{left:439.461000px;}
.x5d_c00490{left:442.369500px;}
.x44_c00490{left:443.610000px;}
.x34_c00490{left:447.246799px;}
.x69_c00490{left:450.220275px;}
.x56_c00490{left:452.195475px;}
.x63_c00490{left:457.779555px;}
.x5e_c00490{left:461.280000px;}
.x7c_c00490{left:463.050000px;}
.x3d_c00490{left:464.551500px;}
.x2c_c00490{left:473.322312px;}
.x64_c00490{left:475.633695px;}
.x3_c00490{left:478.639500px;}
.x50_c00490{left:490.029112px;}
.x2d_c00490{left:493.842472px;}
.x27_c00490{left:496.623597px;}
.x5f_c00490{left:499.585500px;}
.x51_c00490{left:510.667800px;}
.x65_c00490{left:519.921810px;}
.x19_c00490{left:523.735500px;}
.x52_c00490{left:531.657600px;}
.x6a_c00490{left:552.706275px;}
.x72_c00490{left:559.020045px;}
.x1a_c00490{left:569.019000px;}
.x6b_c00490{left:574.850775px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
.fs1_c00490{font-size:19.600000pt;}
.fs13_c00490{font-size:43.868860pt;}
.fs11_c00490{font-size:45.735620pt;}
.fs12_c00490{font-size:46.669000pt;}
.fs14_c00490{font-size:55.069420pt;}
.fs8_c00490{font-size:56.002268pt;}
.fsf_c00490{font-size:56.017497pt;}
.fs15_c00490{font-size:57.866667pt;}
.fse_c00490{font-size:59.751997pt;}
.fs10_c00490{font-size:60.685622pt;}
.fs4_c00490{font-size:61.600000pt;}
.fs6_c00490{font-size:62.535866pt;}
.fsa_c00490{font-size:62.537116pt;}
.fsc_c00490{font-size:63.466667pt;}
.fs9_c00490{font-size:64.402608pt;}
.fs7_c00490{font-size:65.335979pt;}
.fsd_c00490{font-size:66.266667pt;}
.fs3_c00490{font-size:66.272266pt;}
.fsb_c00490{font-size:67.202722pt;}
.fs5_c00490{font-size:68.136093pt;}
.fs0_c00490{font-size:75.604574pt;}
.fs2_c00490{font-size:88.674159pt;}
.y0_c00490{bottom:0.000000pt;}
.yaf_c00490{bottom:141.396000pt;}
.ya3_c00490{bottom:157.675200pt;}
.ya4_c00490{bottom:157.896000pt;}
.ya5_c00490{bottom:157.951387pt;}
.ya6_c00490{bottom:158.098787pt;}
.ya7_c00490{bottom:158.339067pt;}
.ya8_c00490{bottom:158.537133pt;}
.ya9_c00490{bottom:158.836707pt;}
.yaa_c00490{bottom:158.908280pt;}
.yab_c00490{bottom:159.097760pt;}
.yac_c00490{bottom:159.178800pt;}
.yad_c00490{bottom:159.345360pt;}
.yae_c00490{bottom:159.987280pt;}
.y95_c00490{bottom:173.990880pt;}
.y96_c00490{bottom:174.269320pt;}
.y97_c00490{bottom:174.383267pt;}
.y98_c00490{bottom:174.734120pt;}
.y99_c00490{bottom:175.041067pt;}
.y9a_c00490{bottom:175.110093pt;}
.y9b_c00490{bottom:175.385000pt;}
.y9c_c00490{bottom:175.496480pt;}
.y9d_c00490{bottom:175.699280pt;}
.y9e_c00490{bottom:175.807760pt;}
.y9f_c00490{bottom:176.113387pt;}
.ya0_c00490{bottom:176.596760pt;}
.ya1_c00490{bottom:176.911680pt;}
.ya2_c00490{bottom:177.161333pt;}
.y88_c00490{bottom:189.357973pt;}
.y89_c00490{bottom:189.672453pt;}
.y8a_c00490{bottom:190.675267pt;}
.y8b_c00490{bottom:191.020880pt;}
.y8c_c00490{bottom:191.165133pt;}
.y8d_c00490{bottom:191.442200pt;}
.y8e_c00490{bottom:191.580053pt;}
.y8f_c00490{bottom:191.760187pt;}
.y90_c00490{bottom:192.230293pt;}
.y91_c00490{bottom:192.353173pt;}
.y92_c00490{bottom:192.605133pt;}
.y93_c00490{bottom:193.264160pt;}
.y94_c00490{bottom:193.461000pt;}
.y7d_c00490{bottom:204.480480pt;}
.y7e_c00490{bottom:204.954893pt;}
.y7f_c00490{bottom:205.412440pt;}
.y80_c00490{bottom:205.937267pt;}
.y81_c00490{bottom:206.435160pt;}
.y82_c00490{bottom:206.742293pt;}
.y83_c00490{bottom:207.206400pt;}
.y84_c00490{bottom:207.600600pt;}
.y85_c00490{bottom:208.219280pt;}
.y86_c00490{bottom:208.409987pt;}
.y87_c00490{bottom:208.882333pt;}
.y6e_c00490{bottom:220.800000pt;}
.y6f_c00490{bottom:221.001907pt;}
.y70_c00490{bottom:221.239493pt;}
.y71_c00490{bottom:221.574827pt;}
.y72_c00490{bottom:221.621093pt;}
.y73_c00490{bottom:221.872813pt;}
.y74_c00490{bottom:222.141867pt;}
.y75_c00490{bottom:222.417920pt;}
.y76_c00490{bottom:222.629187pt;}
.y77_c00490{bottom:222.941573pt;}
.y78_c00490{bottom:223.435587pt;}
.y79_c00490{bottom:223.733200pt;}
.y7a_c00490{bottom:223.901293pt;}
.y7b_c00490{bottom:224.241787pt;}
.y7c_c00490{bottom:224.520560pt;}
.y65_c00490{bottom:265.429300pt;}
.y66_c00490{bottom:265.857033pt;}
.y67_c00490{bottom:266.077033pt;}
.y68_c00490{bottom:266.614767pt;}
.y69_c00490{bottom:266.805567pt;}
.y6a_c00490{bottom:267.129300pt;}
.y6b_c00490{bottom:267.496067pt;}
.y6c_c00490{bottom:267.651733pt;}
.y6d_c00490{bottom:267.863967pt;}
.y59_c00490{bottom:286.167333pt;}
.y5a_c00490{bottom:286.318733pt;}
.y5b_c00490{bottom:286.664867pt;}
.y5c_c00490{bottom:287.093700pt;}
.y5d_c00490{bottom:287.373633pt;}
.y5e_c00490{bottom:287.932633pt;}
.y5f_c00490{bottom:288.575333pt;}
.y60_c00490{bottom:289.108067pt;}
.y61_c00490{bottom:289.596233pt;}
.y62_c00490{bottom:290.082067pt;}
.y63_c00490{bottom:290.320567pt;}
.y64_c00490{bottom:290.562867pt;}
.y50_c00490{bottom:304.330667pt;}
.y51_c00490{bottom:305.194233pt;}
.y52_c00490{bottom:306.416067pt;}
.y53_c00490{bottom:306.945867pt;}
.y54_c00490{bottom:308.313433pt;}
.y55_c00490{bottom:308.781600pt;}
.y56_c00490{bottom:309.316033pt;}
.y57_c00490{bottom:310.695600pt;}
.y58_c00490{bottom:311.152967pt;}
.y4f_c00490{bottom:334.141333pt;}
.y4e_c00490{bottom:352.284000pt;}
.y4d_c00490{bottom:371.993333pt;}
.y4c_c00490{bottom:412.026667pt;}
.y43_c00490{bottom:431.281333pt;}
.y44_c00490{bottom:431.538049pt;}
.y45_c00490{bottom:431.989981pt;}
.y46_c00490{bottom:432.221017pt;}
.y47_c00490{bottom:432.784729pt;}
.y48_c00490{bottom:433.143133pt;}
.y49_c00490{bottom:433.473817pt;}
.y4a_c00490{bottom:433.622893pt;}
.y4b_c00490{bottom:433.839073pt;}
.y3d_c00490{bottom:451.201333pt;}
.y3e_c00490{bottom:451.401665pt;}
.y3f_c00490{bottom:451.739996pt;}
.y40_c00490{bottom:452.365632pt;}
.y41_c00490{bottom:452.695955pt;}
.y42_c00490{bottom:453.297948pt;}
.y33_c00490{bottom:471.598673pt;}
.y34_c00490{bottom:471.931061pt;}
.y35_c00490{bottom:472.114889pt;}
.y36_c00490{bottom:472.551269pt;}
.y37_c00490{bottom:473.004173pt;}
.y38_c00490{bottom:473.121485pt;}
.y39_c00490{bottom:473.303009pt;}
.y3a_c00490{bottom:473.458169pt;}
.y3b_c00490{bottom:473.633489pt;}
.y3c_c00490{bottom:474.020129pt;}
.y2c_c00490{bottom:492.796081pt;}
.y2d_c00490{bottom:492.796229pt;}
.y2b_c00490{bottom:492.796612pt;}
.y2e_c00490{bottom:492.796685pt;}
.y30_c00490{bottom:492.796715pt;}
.y31_c00490{bottom:492.796904pt;}
.y32_c00490{bottom:492.797052pt;}
.y2f_c00490{bottom:492.797313pt;}
.y22_c00490{bottom:512.639945pt;}
.y23_c00490{bottom:513.028664pt;}
.y24_c00490{bottom:513.354004pt;}
.y25_c00490{bottom:513.616483pt;}
.y26_c00490{bottom:514.188304pt;}
.y27_c00490{bottom:514.745052pt;}
.y28_c00490{bottom:514.905460pt;}
.y29_c00490{bottom:515.222976pt;}
.y2a_c00490{bottom:515.771827pt;}
.y1b_c00490{bottom:533.041160pt;}
.y1c_c00490{bottom:533.693989pt;}
.y1d_c00490{bottom:534.511799pt;}
.y1e_c00490{bottom:534.672579pt;}
.y1f_c00490{bottom:534.908055pt;}
.y20_c00490{bottom:535.217193pt;}
.y21_c00490{bottom:535.376245pt;}
.yd_c00490{bottom:552.721333pt;}
.ye_c00490{bottom:552.956569pt;}
.yf_c00490{bottom:553.021837pt;}
.y10_c00490{bottom:553.427953pt;}
.y11_c00490{bottom:553.517461pt;}
.y12_c00490{bottom:553.951873pt;}
.y13_c00490{bottom:554.003053pt;}
.y14_c00490{bottom:554.433613pt;}
.y15_c00490{bottom:554.526877pt;}
.y16_c00490{bottom:554.974309pt;}
.y17_c00490{bottom:555.080413pt;}
.y18_c00490{bottom:555.401749pt;}
.y19_c00490{bottom:555.754609pt;}
.y1a_c00490{bottom:556.116877pt;}
.yc_c00490{bottom:585.908000pt;}
.ya_c00490{bottom:620.175159pt;}
.yb_c00490{bottom:622.647117pt;}
.y5_c00490{bottom:660.961333pt;}
.y6_c00490{bottom:661.813232pt;}
.y7_c00490{bottom:662.543329pt;}
.y8_c00490{bottom:662.936536pt;}
.y9_c00490{bottom:663.190903pt;}
.y4_c00490{bottom:764.160000pt;}
.y1_c00490{bottom:784.082667pt;}
.y2_c00490{bottom:786.168017pt;}
.y3_c00490{bottom:786.909901pt;}
.h3_c00490{height:19.600000pt;}
.h15_c00490{height:43.868860pt;}
.h13_c00490{height:45.735620pt;}
.h14_c00490{height:46.669000pt;}
.h16_c00490{height:55.069420pt;}
.ha_c00490{height:56.002268pt;}
.h11_c00490{height:56.017497pt;}
.h17_c00490{height:57.866667pt;}
.h10_c00490{height:59.751997pt;}
.h12_c00490{height:60.685622pt;}
.h6_c00490{height:61.600000pt;}
.h8_c00490{height:62.535866pt;}
.hc_c00490{height:62.537116pt;}
.he_c00490{height:63.466667pt;}
.hb_c00490{height:64.402608pt;}
.h9_c00490{height:65.335979pt;}
.hf_c00490{height:66.266667pt;}
.h5_c00490{height:66.272266pt;}
.hd_c00490{height:67.202722pt;}
.h7_c00490{height:68.136093pt;}
.h2_c00490{height:75.604574pt;}
.h4_c00490{height:88.674159pt;}
.h1_c00490{height:893.333333pt;}
.h0_c00490{height:893.466667pt;}
.w0_c00490{width:635.733333pt;}
.w1_c00490{width:636.000000pt;}
.x0_c00490{left:0.000000pt;}
.x60_c00490{left:95.174707pt;}
.x57_c00490{left:99.897333pt;}
.x73_c00490{left:102.315427pt;}
.x1b_c00490{left:119.928412pt;}
.x45_c00490{left:121.613333pt;}
.xe_c00490{left:128.512000pt;}
.x74_c00490{left:129.862640pt;}
.x53_c00490{left:131.390033pt;}
.x4b_c00490{left:134.475167pt;}
.x6c_c00490{left:135.431480pt;}
.x75_c00490{left:136.868120pt;}
.x58_c00490{left:143.846667pt;}
.x4c_c00490{left:146.081300pt;}
.x35_c00490{left:147.456000pt;}
.x40_c00490{left:150.000000pt;}
.xf_c00490{left:154.649333pt;}
.x46_c00490{left:156.156000pt;}
.x38_c00490{left:157.265333pt;}
.x5_c00490{left:159.509333pt;}
.x10_c00490{left:161.901333pt;}
.x2e_c00490{left:165.434044pt;}
.xa_c00490{left:167.258107pt;}
.x1_c00490{left:168.436000pt;}
.x4d_c00490{left:172.734633pt;}
.x36_c00490{left:178.213333pt;}
.x4_c00490{left:180.480000pt;}
.x59_c00490{left:182.006667pt;}
.x1c_c00490{left:185.205157pt;}
.x41_c00490{left:186.240000pt;}
.x28_c00490{left:189.361545pt;}
.x6d_c00490{left:193.512640pt;}
.x22_c00490{left:199.761381pt;}
.x54_c00490{left:203.408167pt;}
.x47_c00490{left:205.029333pt;}
.x11_c00490{left:207.025333pt;}
.x76_c00490{left:210.110920pt;}
.x12_c00490{left:216.970667pt;}
.x3e_c00490{left:221.520000pt;}
.x6_c00490{left:225.040000pt;}
.x23_c00490{left:225.962475pt;}
.x4e_c00490{left:227.234967pt;}
.x29_c00490{left:231.603632pt;}
.x39_c00490{left:233.150667pt;}
.x2f_c00490{left:234.346044pt;}
.xc_c00490{left:239.040000pt;}
.x6e_c00490{left:240.577587pt;}
.x77_c00490{left:247.535667pt;}
.x42_c00490{left:248.880000pt;}
.x78_c00490{left:256.426507pt;}
.x61_c00490{left:258.106120pt;}
.x5a_c00490{left:261.689333pt;}
.x55_c00490{left:263.181400pt;}
.x13_c00490{left:265.238667pt;}
.x1d_c00490{left:267.035092pt;}
.x14_c00490{left:270.925333pt;}
.x6f_c00490{left:274.868933pt;}
.x79_c00490{left:280.174987pt;}
.x7_c00490{left:281.201333pt;}
.x1e_c00490{left:283.121615pt;}
.x30_c00490{left:284.668711pt;}
.x2a_c00490{left:286.325393pt;}
.x43_c00490{left:288.000000pt;}
.x7a_c00490{left:290.279187pt;}
.x3f_c00490{left:292.080000pt;}
.x3a_c00490{left:295.785333pt;}
.x31_c00490{left:297.703377pt;}
.x48_c00490{left:299.650667pt;}
.x1f_c00490{left:306.618732pt;}
.x66_c00490{left:309.098467pt;}
.x8_c00490{left:311.448000pt;}
.x5b_c00490{left:314.054667pt;}
.x32_c00490{left:317.872711pt;}
.x15_c00490{left:318.765333pt;}
.x37_c00490{left:319.845333pt;}
.x49_c00490{left:321.028000pt;}
.x62_c00490{left:322.428840pt;}
.x70_c00490{left:327.679320pt;}
.x16_c00490{left:329.128000pt;}
.x9_c00490{left:331.014667pt;}
.xb_c00490{left:332.071159pt;}
.x33_c00490{left:335.112711pt;}
.x20_c00490{left:337.559789pt;}
.x24_c00490{left:338.765455pt;}
.x67_c00490{left:340.897133pt;}
.x7b_c00490{left:343.200000pt;}
.x2b_c00490{left:344.407431pt;}
.x21_c00490{left:353.454312pt;}
.x25_c00490{left:354.810644pt;}
.xd_c00490{left:356.160000pt;}
.x2_c00490{left:358.013333pt;}
.x4f_c00490{left:360.652300pt;}
.x5c_c00490{left:363.456000pt;}
.x71_c00490{left:365.842747pt;}
.x3b_c00490{left:372.350667pt;}
.x4a_c00490{left:376.210667pt;}
.x17_c00490{left:378.842667pt;}
.x26_c00490{left:386.534356pt;}
.x68_c00490{left:387.907800pt;}
.x3c_c00490{left:388.914667pt;}
.x18_c00490{left:390.632000pt;}
.x5d_c00490{left:393.217333pt;}
.x44_c00490{left:394.320000pt;}
.x34_c00490{left:397.552711pt;}
.x69_c00490{left:400.195800pt;}
.x56_c00490{left:401.951533pt;}
.x63_c00490{left:406.915160pt;}
.x5e_c00490{left:410.026667pt;}
.x7c_c00490{left:411.600000pt;}
.x3d_c00490{left:412.934667pt;}
.x2c_c00490{left:420.730944pt;}
.x64_c00490{left:422.785507pt;}
.x3_c00490{left:425.457333pt;}
.x50_c00490{left:435.581433pt;}
.x2d_c00490{left:438.971087pt;}
.x27_c00490{left:441.443197pt;}
.x5f_c00490{left:444.076000pt;}
.x51_c00490{left:453.926933pt;}
.x65_c00490{left:462.152720pt;}
.x19_c00490{left:465.542667pt;}
.x52_c00490{left:472.584533pt;}
.x6a_c00490{left:491.294467pt;}
.x72_c00490{left:496.906707pt;}
.x1a_c00490{left:505.794667pt;}
.x6b_c00490{left:510.978467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.me3_c00491{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);}
.mfa_c00491{transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);}
.me4_c00491{transform:matrix(0.026125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026125,0.000000,0.000000,0.250000,0,0);}
.m11d_c00491{transform:matrix(0.032580,0.000977,-0.007497,0.249888,0,0);-ms-transform:matrix(0.032580,0.000977,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.032580,0.000977,-0.007497,0.249888,0,0);}
.me7_c00491{transform:matrix(0.040010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040010,0.000000,0.000000,0.250000,0,0);}
.m118_c00491{transform:matrix(0.045050,0.001351,-0.007497,0.249888,0,0);-ms-transform:matrix(0.045050,0.001351,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.045050,0.001351,-0.007497,0.249888,0,0);}
.m87_c00491{transform:matrix(0.049298,0.000838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.049298,0.000838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.049298,0.000838,-0.004249,0.249964,0,0);}
.mc9_c00491{transform:matrix(0.055881,0.001453,-0.006498,0.249916,0,0);-ms-transform:matrix(0.055881,0.001453,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.055881,0.001453,-0.006498,0.249916,0,0);}
.mbf_c00491{transform:matrix(0.089385,0.001877,-0.005249,0.249945,0,0);-ms-transform:matrix(0.089385,0.001877,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.089385,0.001877,-0.005249,0.249945,0,0);}
.m97_c00491{transform:matrix(0.092020,0.001932,-0.005249,0.249945,0,0);-ms-transform:matrix(0.092020,0.001932,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.092020,0.001932,-0.005249,0.249945,0,0);}
.me1_c00491{transform:matrix(0.100041,0.004106,-0.010252,0.249790,0,0);-ms-transform:matrix(0.100041,0.004106,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.100041,0.004106,-0.010252,0.249790,0,0);}
.m108_c00491{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);}
.m110_c00491{transform:matrix(0.117579,0.002704,-0.005748,0.249934,0,0);-ms-transform:matrix(0.117579,0.002704,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.117579,0.002704,-0.005748,0.249934,0,0);}
.me0_c00491{transform:matrix(0.118900,0.004880,-0.010252,0.249790,0,0);-ms-transform:matrix(0.118900,0.004880,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.118900,0.004880,-0.010252,0.249790,0,0);}
.ma4_c00491{transform:matrix(0.129756,0.002725,-0.005249,0.249945,0,0);-ms-transform:matrix(0.129756,0.002725,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.129756,0.002725,-0.005249,0.249945,0,0);}
.m10f_c00491{transform:matrix(0.132670,0.003051,-0.005748,0.249934,0,0);-ms-transform:matrix(0.132670,0.003051,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.132670,0.003051,-0.005748,0.249934,0,0);}
.mdf_c00491{transform:matrix(0.135086,0.005544,-0.010252,0.249790,0,0);-ms-transform:matrix(0.135086,0.005544,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.135086,0.005544,-0.010252,0.249790,0,0);}
.m57_c00491{transform:matrix(0.135455,0.002303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.135455,0.002303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.135455,0.002303,-0.004249,0.249964,0,0);}
.m91_c00491{transform:matrix(0.137040,0.002878,-0.005249,0.249945,0,0);-ms-transform:matrix(0.137040,0.002878,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.137040,0.002878,-0.005249,0.249945,0,0);}
.m72_c00491{transform:matrix(0.137190,0.002332,-0.004249,0.249964,0,0);-ms-transform:matrix(0.137190,0.002332,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.137190,0.002332,-0.004249,0.249964,0,0);}
.mdb_c00491{transform:matrix(0.138289,0.005676,-0.010252,0.249790,0,0);-ms-transform:matrix(0.138289,0.005676,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.138289,0.005676,-0.010252,0.249790,0,0);}
.mc4_c00491{transform:matrix(0.138374,0.002906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.138374,0.002906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.138374,0.002906,-0.005249,0.249945,0,0);}
.mdc_c00491{transform:matrix(0.139942,0.005743,-0.010252,0.249790,0,0);-ms-transform:matrix(0.139942,0.005743,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.139942,0.005743,-0.010252,0.249790,0,0);}
.m5f_c00491{transform:matrix(0.141840,0.002411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141840,0.002411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141840,0.002411,-0.004249,0.249964,0,0);}
.m6a_c00491{transform:matrix(0.142039,0.002415,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142039,0.002415,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142039,0.002415,-0.004249,0.249964,0,0);}
.m2_c00491{transform:matrix(0.142094,0.002700,-0.004749,0.249955,0,0);-ms-transform:matrix(0.142094,0.002700,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.142094,0.002700,-0.004749,0.249955,0,0);}
.m6f_c00491{transform:matrix(0.142289,0.002419,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142289,0.002419,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142289,0.002419,-0.004249,0.249964,0,0);}
.m6e_c00491{transform:matrix(0.142399,0.002421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142399,0.002421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142399,0.002421,-0.004249,0.249964,0,0);}
.m99_c00491{transform:matrix(0.142644,0.002996,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142644,0.002996,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142644,0.002996,-0.005249,0.249945,0,0);}
.m60_c00491{transform:matrix(0.144224,0.002452,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144224,0.002452,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144224,0.002452,-0.004249,0.249964,0,0);}
.maa_c00491{transform:matrix(0.145618,0.003058,-0.005249,0.249945,0,0);-ms-transform:matrix(0.145618,0.003058,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.145618,0.003058,-0.005249,0.249945,0,0);}
.m81_c00491{transform:matrix(0.145984,0.002482,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145984,0.002482,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145984,0.002482,-0.004249,0.249964,0,0);}
.m9a_c00491{transform:matrix(0.146563,0.003078,-0.005249,0.249945,0,0);-ms-transform:matrix(0.146563,0.003078,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.146563,0.003078,-0.005249,0.249945,0,0);}
.md1_c00491{transform:matrix(0.146775,0.003816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.146775,0.003816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.146775,0.003816,-0.006498,0.249916,0,0);}
.m5a_c00491{transform:matrix(0.149298,0.002538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149298,0.002538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149298,0.002538,-0.004249,0.249964,0,0);}
.m63_c00491{transform:matrix(0.149433,0.002540,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149433,0.002540,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149433,0.002540,-0.004249,0.249964,0,0);}
.mc8_c00491{transform:matrix(0.150477,0.003160,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150477,0.003160,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150477,0.003160,-0.005249,0.249945,0,0);}
.m4e_c00491{transform:matrix(0.151178,0.002570,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151178,0.002570,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151178,0.002570,-0.004249,0.249964,0,0);}
.m73_c00491{transform:matrix(0.151223,0.002571,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151223,0.002571,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151223,0.002571,-0.004249,0.249964,0,0);}
.m100_c00491{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);}
.m24_c00491{transform:matrix(0.152053,0.002585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152053,0.002585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152053,0.002585,-0.004249,0.249964,0,0);}
.m101_c00491{transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);}
.m9b_c00491{transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);-ms-transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.152711,0.003207,-0.005249,0.249945,0,0);}
.mb2_c00491{transform:matrix(0.153221,0.003218,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153221,0.003218,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153221,0.003218,-0.005249,0.249945,0,0);}
.mda_c00491{transform:matrix(0.154058,0.004006,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154058,0.004006,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154058,0.004006,-0.006498,0.249916,0,0);}
.m47_c00491{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);}
.md0_c00491{transform:matrix(0.154618,0.004020,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154618,0.004020,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154618,0.004020,-0.006498,0.249916,0,0);}
.m10b_c00491{transform:matrix(0.155574,0.003578,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155574,0.003578,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155574,0.003578,-0.005748,0.249934,0,0);}
.mba_c00491{transform:matrix(0.155761,0.003271,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155761,0.003271,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155761,0.003271,-0.005249,0.249945,0,0);}
.m46_c00491{transform:matrix(0.155852,0.002649,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155852,0.002649,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155852,0.002649,-0.004249,0.249964,0,0);}
.md5_c00491{transform:matrix(0.156097,0.004059,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156097,0.004059,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156097,0.004059,-0.006498,0.249916,0,0);}
.mc2_c00491{transform:matrix(0.156695,0.003291,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156695,0.003291,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156695,0.003291,-0.005249,0.249945,0,0);}
.md6_c00491{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);}
.m80_c00491{transform:matrix(0.157992,0.002686,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157992,0.002686,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157992,0.002686,-0.004249,0.249964,0,0);}
.m11_c00491{transform:matrix(0.158357,0.002692,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158357,0.002692,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158357,0.002692,-0.004249,0.249964,0,0);}
.m5d_c00491{transform:matrix(0.158487,0.002694,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158487,0.002694,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158487,0.002694,-0.004249,0.249964,0,0);}
.m89_c00491{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);}
.m69_c00491{transform:matrix(0.161482,0.002745,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161482,0.002745,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161482,0.002745,-0.004249,0.249964,0,0);}
.md3_c00491{transform:matrix(0.161645,0.004203,-0.006498,0.249916,0,0);-ms-transform:matrix(0.161645,0.004203,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.161645,0.004203,-0.006498,0.249916,0,0);}
.mbd_c00491{transform:matrix(0.161974,0.003401,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161974,0.003401,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161974,0.003401,-0.005249,0.249945,0,0);}
.mc3_c00491{transform:matrix(0.162019,0.003402,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162019,0.003402,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162019,0.003402,-0.005249,0.249945,0,0);}
.mcc_c00491{transform:matrix(0.162180,0.004217,-0.006498,0.249916,0,0);-ms-transform:matrix(0.162180,0.004217,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.162180,0.004217,-0.006498,0.249916,0,0);}
.m15_c00491{transform:matrix(0.162517,0.002763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162517,0.002763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162517,0.002763,-0.004249,0.249964,0,0);}
.mb_c00491{transform:matrix(0.162971,0.002771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162971,0.002771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162971,0.002771,-0.004249,0.249964,0,0);}
.m34_c00491{transform:matrix(0.163096,0.002773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163096,0.002773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163096,0.002773,-0.004249,0.249964,0,0);}
.m5c_c00491{transform:matrix(0.163941,0.002787,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163941,0.002787,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163941,0.002787,-0.004249,0.249964,0,0);}
.m27_c00491{transform:matrix(0.164596,0.002798,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164596,0.002798,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164596,0.002798,-0.004249,0.249964,0,0);}
.m9_c00491{transform:matrix(0.164641,0.002799,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164641,0.002799,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164641,0.002799,-0.004249,0.249964,0,0);}
.mc1_c00491{transform:matrix(0.165688,0.003479,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165688,0.003479,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165688,0.003479,-0.005249,0.249945,0,0);}
.m39_c00491{transform:matrix(0.165741,0.002818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165741,0.002818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165741,0.002818,-0.004249,0.249964,0,0);}
.md4_c00491{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);}
.m79_c00491{transform:matrix(0.165916,0.002821,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165916,0.002821,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165916,0.002821,-0.004249,0.249964,0,0);}
.m35_c00491{transform:matrix(0.165926,0.002821,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165926,0.002821,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165926,0.002821,-0.004249,0.249964,0,0);}
.m68_c00491{transform:matrix(0.166246,0.002826,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166246,0.002826,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166246,0.002826,-0.004249,0.249964,0,0);}
.mad_c00491{transform:matrix(0.166958,0.003506,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166958,0.003506,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166958,0.003506,-0.005249,0.249945,0,0);}
.m9f_c00491{transform:matrix(0.167563,0.003519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167563,0.003519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167563,0.003519,-0.005249,0.249945,0,0);}
.md_c00491{transform:matrix(0.167616,0.002849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167616,0.002849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167616,0.002849,-0.004249,0.249964,0,0);}
.m9d_c00491{transform:matrix(0.167623,0.003520,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167623,0.003520,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167623,0.003520,-0.005249,0.249945,0,0);}
.ma5_c00491{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);}
.m9c_c00491{transform:matrix(0.168073,0.003530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168073,0.003530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168073,0.003530,-0.005249,0.249945,0,0);}
.m4a_c00491{transform:matrix(0.168326,0.002862,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168326,0.002862,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168326,0.002862,-0.004249,0.249964,0,0);}
.m41_c00491{transform:matrix(0.168806,0.002870,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168806,0.002870,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168806,0.002870,-0.004249,0.249964,0,0);}
.mef_c00491{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);}
.m10a_c00491{transform:matrix(0.169015,0.003887,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169015,0.003887,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169015,0.003887,-0.005748,0.249934,0,0);}
.m14_c00491{transform:matrix(0.169516,0.002882,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169516,0.002882,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169516,0.002882,-0.004249,0.249964,0,0);}
.mc7_c00491{transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);}
.mce_c00491{transform:matrix(0.169748,0.004413,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169748,0.004413,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169748,0.004413,-0.006498,0.249916,0,0);}
.mb9_c00491{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);}
.mf3_c00491{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);}
.m52_c00491{transform:matrix(0.169975,0.002890,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169975,0.002890,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169975,0.002890,-0.004249,0.249964,0,0);}
.m107_c00491{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_c00491{transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170410,0.002897,-0.004249,0.249964,0,0);}
.m113_c00491{transform:matrix(0.170718,0.005122,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170718,0.005122,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170718,0.005122,-0.007497,0.249888,0,0);}
.mc5_c00491{transform:matrix(0.170822,0.003587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170822,0.003587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170822,0.003587,-0.005249,0.249945,0,0);}
.mc0_c00491{transform:matrix(0.171117,0.003593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171117,0.003593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171117,0.003593,-0.005249,0.249945,0,0);}
.m6d_c00491{transform:matrix(0.171190,0.002910,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171190,0.002910,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171190,0.002910,-0.004249,0.249964,0,0);}
.m7b_c00491{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);}
.med_c00491{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);}
.mc_c00491{transform:matrix(0.172120,0.002926,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172120,0.002926,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172120,0.002926,-0.004249,0.249964,0,0);}
.mc6_c00491{transform:matrix(0.172482,0.003622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172482,0.003622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172482,0.003622,-0.005249,0.249945,0,0);}
.m2a_c00491{transform:matrix(0.172990,0.002941,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172990,0.002941,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172990,0.002941,-0.004249,0.249964,0,0);}
.m10e_c00491{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);}
.ma1_c00491{transform:matrix(0.173947,0.003653,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173947,0.003653,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173947,0.003653,-0.005249,0.249945,0,0);}
.ma2_c00491{transform:matrix(0.174172,0.003658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174172,0.003658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174172,0.003658,-0.005249,0.249945,0,0);}
.m55_c00491{transform:matrix(0.174310,0.002963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174310,0.002963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174310,0.002963,-0.004249,0.249964,0,0);}
.m3f_c00491{transform:matrix(0.174405,0.002965,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174405,0.002965,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174405,0.002965,-0.004249,0.249964,0,0);}
.m10_c00491{transform:matrix(0.174495,0.002966,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174495,0.002966,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174495,0.002966,-0.004249,0.249964,0,0);}
.m31_c00491{transform:matrix(0.174575,0.002968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174575,0.002968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174575,0.002968,-0.004249,0.249964,0,0);}
.me_c00491{transform:matrix(0.174835,0.002972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174835,0.002972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174835,0.002972,-0.004249,0.249964,0,0);}
.m114_c00491{transform:matrix(0.174856,0.005246,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174856,0.005246,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174856,0.005246,-0.007497,0.249888,0,0);}
.md8_c00491{transform:matrix(0.174936,0.004548,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174936,0.004548,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174936,0.004548,-0.006498,0.249916,0,0);}
.m1b_c00491{transform:matrix(0.175750,0.002988,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175750,0.002988,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175750,0.002988,-0.004249,0.249964,0,0);}
.mb8_c00491{transform:matrix(0.175876,0.003693,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175876,0.003693,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175876,0.003693,-0.005249,0.249945,0,0);}
.md7_c00491{transform:matrix(0.176110,0.004579,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176110,0.004579,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176110,0.004579,-0.006498,0.249916,0,0);}
.m92_c00491{transform:matrix(0.176386,0.003704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176386,0.003704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176386,0.003704,-0.005249,0.249945,0,0);}
.m8c_c00491{transform:matrix(0.176634,0.003003,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176634,0.003003,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176634,0.003003,-0.004249,0.249964,0,0);}
.m6c_c00491{transform:matrix(0.177289,0.003014,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177289,0.003014,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177289,0.003014,-0.004249,0.249964,0,0);}
.mab_c00491{transform:matrix(0.177491,0.003727,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177491,0.003727,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177491,0.003727,-0.005249,0.249945,0,0);}
.m74_c00491{transform:matrix(0.177579,0.003019,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177579,0.003019,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177579,0.003019,-0.004249,0.249964,0,0);}
.m22_c00491{transform:matrix(0.177654,0.003020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177654,0.003020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177654,0.003020,-0.004249,0.249964,0,0);}
.m109_c00491{transform:matrix(0.177698,0.004087,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177698,0.004087,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177698,0.004087,-0.005748,0.249934,0,0);}
.m105_c00491{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);}
.ma0_c00491{transform:matrix(0.178016,0.003738,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178016,0.003738,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178016,0.003738,-0.005249,0.249945,0,0);}
.ma8_c00491{transform:matrix(0.178266,0.003744,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178266,0.003744,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178266,0.003744,-0.005249,0.249945,0,0);}
.m40_c00491{transform:matrix(0.178294,0.003031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178294,0.003031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178294,0.003031,-0.004249,0.249964,0,0);}
.m121_c00491{transform:matrix(0.179324,0.005380,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179324,0.005380,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179324,0.005380,-0.007497,0.249888,0,0);}
.mbb_c00491{transform:matrix(0.179655,0.003773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179655,0.003773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179655,0.003773,-0.005249,0.249945,0,0);}
.mb7_c00491{transform:matrix(0.179665,0.003773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179665,0.003773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179665,0.003773,-0.005249,0.249945,0,0);}
.m6b_c00491{transform:matrix(0.179829,0.003057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179829,0.003057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179829,0.003057,-0.004249,0.249964,0,0);}
.m36_c00491{transform:matrix(0.180009,0.003060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180009,0.003060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180009,0.003060,-0.004249,0.249964,0,0);}
.m75_c00491{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);}
.m32_c00491{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);}
.m90_c00491{transform:matrix(0.181270,0.003807,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181270,0.003807,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181270,0.003807,-0.005249,0.249945,0,0);}
.m8f_c00491{transform:matrix(0.181404,0.003084,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181404,0.003084,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181404,0.003084,-0.004249,0.249964,0,0);}
.m7_c00491{transform:matrix(0.181484,0.003085,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181484,0.003085,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181484,0.003085,-0.004249,0.249964,0,0);}
.mbc_c00491{transform:matrix(0.181745,0.003817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181745,0.003817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181745,0.003817,-0.005249,0.249945,0,0);}
.mff_c00491{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);}
.mb1_c00491{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);}
.m51_c00491{transform:matrix(0.181844,0.003091,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181844,0.003091,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181844,0.003091,-0.004249,0.249964,0,0);}
.m112_c00491{transform:matrix(0.182408,0.005472,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182408,0.005472,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182408,0.005472,-0.007497,0.249888,0,0);}
.m7e_c00491{transform:matrix(0.182469,0.003102,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182469,0.003102,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182469,0.003102,-0.004249,0.249964,0,0);}
.m10c_c00491{transform:matrix(0.182872,0.004206,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182872,0.004206,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182872,0.004206,-0.005748,0.249934,0,0);}
.ma9_c00491{transform:matrix(0.182955,0.003842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182955,0.003842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182955,0.003842,-0.005249,0.249945,0,0);}
.m83_c00491{transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183858,0.003126,-0.004249,0.249964,0,0);}
.m1f_c00491{transform:matrix(0.183968,0.003127,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183968,0.003127,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183968,0.003127,-0.004249,0.249964,0,0);}
.m45_c00491{transform:matrix(0.184688,0.003140,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184688,0.003140,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184688,0.003140,-0.004249,0.249964,0,0);}
.m8d_c00491{transform:matrix(0.184748,0.003141,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184748,0.003141,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184748,0.003141,-0.004249,0.249964,0,0);}
.m37_c00491{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);}
.mfb_c00491{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);}
.mbe_c00491{transform:matrix(0.185374,0.003893,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185374,0.003893,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185374,0.003893,-0.005249,0.249945,0,0);}
.m21_c00491{transform:matrix(0.185478,0.003153,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185478,0.003153,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185478,0.003153,-0.004249,0.249964,0,0);}
.mcd_c00491{transform:matrix(0.186047,0.004837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186047,0.004837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186047,0.004837,-0.006498,0.249916,0,0);}
.m66_c00491{transform:matrix(0.186328,0.003168,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186328,0.003168,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186328,0.003168,-0.004249,0.249964,0,0);}
.m65_c00491{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);}
.mae_c00491{transform:matrix(0.186869,0.003924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186869,0.003924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186869,0.003924,-0.005249,0.249945,0,0);}
.mb4_c00491{transform:matrix(0.187029,0.003928,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187029,0.003928,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187029,0.003928,-0.005249,0.249945,0,0);}
.m61_c00491{transform:matrix(0.187388,0.003186,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187388,0.003186,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187388,0.003186,-0.004249,0.249964,0,0);}
.mee_c00491{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);}
.m8_c00491{transform:matrix(0.188153,0.003199,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188153,0.003199,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188153,0.003199,-0.004249,0.249964,0,0);}
.m7d_c00491{transform:matrix(0.188208,0.003200,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188208,0.003200,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188208,0.003200,-0.004249,0.249964,0,0);}
.meb_c00491{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);}
.me5_c00491{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);}
.m12_c00491{transform:matrix(0.188708,0.003208,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188708,0.003208,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188708,0.003208,-0.004249,0.249964,0,0);}
.m2e_c00491{transform:matrix(0.188963,0.003212,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188963,0.003212,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188963,0.003212,-0.004249,0.249964,0,0);}
.m11c_c00491{transform:matrix(0.189000,0.005670,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189000,0.005670,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189000,0.005670,-0.007497,0.249888,0,0);}
.m103_c00491{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);}
.m82_c00491{transform:matrix(0.190033,0.003231,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190033,0.003231,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190033,0.003231,-0.004249,0.249964,0,0);}
.m50_c00491{transform:matrix(0.190118,0.003232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190118,0.003232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190118,0.003232,-0.004249,0.249964,0,0);}
.mf2_c00491{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);}
.m1a_c00491{transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190233,0.003234,-0.004249,0.249964,0,0);}
.m42_c00491{transform:matrix(0.190402,0.003237,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190402,0.003237,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190402,0.003237,-0.004249,0.249964,0,0);}
.mcf_c00491{transform:matrix(0.190441,0.004951,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190441,0.004951,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190441,0.004951,-0.006498,0.249916,0,0);}
.m44_c00491{transform:matrix(0.191027,0.003247,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191027,0.003247,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191027,0.003247,-0.004249,0.249964,0,0);}
.mb3_c00491{transform:matrix(0.191223,0.004016,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191223,0.004016,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191223,0.004016,-0.005249,0.249945,0,0);}
.m1e_c00491{transform:matrix(0.191392,0.003254,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191392,0.003254,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191392,0.003254,-0.004249,0.249964,0,0);}
.m3e_c00491{transform:matrix(0.191952,0.003263,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191952,0.003263,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191952,0.003263,-0.004249,0.249964,0,0);}
.m19_c00491{transform:matrix(0.192287,0.003269,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192287,0.003269,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192287,0.003269,-0.004249,0.249964,0,0);}
.m3b_c00491{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);}
.mf_c00491{transform:matrix(0.193132,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193132,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193132,0.003283,-0.004249,0.249964,0,0);}
.m49_c00491{transform:matrix(0.193892,0.003296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193892,0.003296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193892,0.003296,-0.004249,0.249964,0,0);}
.m11b_c00491{transform:matrix(0.194717,0.005842,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194717,0.005842,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194717,0.005842,-0.007497,0.249888,0,0);}
.m4c_c00491{transform:matrix(0.194782,0.003311,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194782,0.003311,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194782,0.003311,-0.004249,0.249964,0,0);}
.m30_c00491{transform:matrix(0.194797,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194797,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194797,0.003312,-0.004249,0.249964,0,0);}
.m43_c00491{transform:matrix(0.195067,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195067,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195067,0.003316,-0.004249,0.249964,0,0);}
.m2f_c00491{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);}
.m1_c00491{transform:matrix(0.195282,0.003320,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195282,0.003320,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195282,0.003320,-0.004249,0.249964,0,0);}
.m1c_c00491{transform:matrix(0.195302,0.003320,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195302,0.003320,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195302,0.003320,-0.004249,0.249964,0,0);}
.m17_c00491{transform:matrix(0.196157,0.003335,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196157,0.003335,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196157,0.003335,-0.004249,0.249964,0,0);}
.m13_c00491{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);}
.m8b_c00491{transform:matrix(0.196322,0.003337,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196322,0.003337,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196322,0.003337,-0.004249,0.249964,0,0);}
.m62_c00491{transform:matrix(0.196392,0.003339,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196392,0.003339,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196392,0.003339,-0.004249,0.249964,0,0);}
.m123_c00491{transform:matrix(0.196547,0.005896,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196547,0.005896,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196547,0.005896,-0.007497,0.249888,0,0);}
.m7c_c00491{transform:matrix(0.196797,0.003346,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196797,0.003346,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196797,0.003346,-0.004249,0.249964,0,0);}
.m7f_c00491{transform:matrix(0.197516,0.003358,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197516,0.003358,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197516,0.003358,-0.004249,0.249964,0,0);}
.me9_c00491{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);}
.m96_c00491{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);}
.m1d_c00491{transform:matrix(0.197966,0.003365,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197966,0.003365,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197966,0.003365,-0.004249,0.249964,0,0);}
.m59_c00491{transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198296,0.003371,-0.004249,0.249964,0,0);}
.m8e_c00491{transform:matrix(0.198556,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198556,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198556,0.003375,-0.004249,0.249964,0,0);}
.m53_c00491{transform:matrix(0.199536,0.003392,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199536,0.003392,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199536,0.003392,-0.004249,0.249964,0,0);}
.m85_c00491{transform:matrix(0.200116,0.003402,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200116,0.003402,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200116,0.003402,-0.004249,0.249964,0,0);}
.m7a_c00491{transform:matrix(0.200406,0.003407,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200406,0.003407,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200406,0.003407,-0.004249,0.249964,0,0);}
.m16_c00491{transform:matrix(0.200636,0.003411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200636,0.003411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200636,0.003411,-0.004249,0.249964,0,0);}
.m64_c00491{transform:matrix(0.200801,0.003414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200801,0.003414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200801,0.003414,-0.004249,0.249964,0,0);}
.m86_c00491{transform:matrix(0.200856,0.003415,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200856,0.003415,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200856,0.003415,-0.004249,0.249964,0,0);}
.m115_c00491{transform:matrix(0.201489,0.006045,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201489,0.006045,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201489,0.006045,-0.007497,0.249888,0,0);}
.m84_c00491{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);}
.mde_c00491{transform:matrix(0.201935,0.008288,-0.010252,0.249790,0,0);-ms-transform:matrix(0.201935,0.008288,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.201935,0.008288,-0.010252,0.249790,0,0);}
.m104_c00491{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);}
.mf4_c00491{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);}
.m10d_c00491{transform:matrix(0.202761,0.004664,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202761,0.004664,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202761,0.004664,-0.005748,0.249934,0,0);}
.md2_c00491{transform:matrix(0.203391,0.005288,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203391,0.005288,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203391,0.005288,-0.006498,0.249916,0,0);}
.m56_c00491{transform:matrix(0.203721,0.003463,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203721,0.003463,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203721,0.003463,-0.004249,0.249964,0,0);}
.m23_c00491{transform:matrix(0.203761,0.003464,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203761,0.003464,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203761,0.003464,-0.004249,0.249964,0,0);}
.m25_c00491{transform:matrix(0.204910,0.003483,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204910,0.003483,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204910,0.003483,-0.004249,0.249964,0,0);}
.me8_c00491{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);}
.mfc_c00491{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);}
.ma_c00491{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);}
.m20_c00491{transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);}
.m76_c00491{transform:matrix(0.205890,0.003500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205890,0.003500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205890,0.003500,-0.004249,0.249964,0,0);}
.m28_c00491{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);}
.m71_c00491{transform:matrix(0.206055,0.003503,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206055,0.003503,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206055,0.003503,-0.004249,0.249964,0,0);}
.m117_c00491{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);}
.md9_c00491{transform:matrix(0.206535,0.005370,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206535,0.005370,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206535,0.005370,-0.006498,0.249916,0,0);}
.m48_c00491{transform:matrix(0.206615,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206615,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206615,0.003512,-0.004249,0.249964,0,0);}
.m33_c00491{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);}
.m93_c00491{transform:matrix(0.207044,0.004348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207044,0.004348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207044,0.004348,-0.005249,0.249945,0,0);}
.m94_c00491{transform:matrix(0.207104,0.004349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207104,0.004349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207104,0.004349,-0.005249,0.249945,0,0);}
.ma3_c00491{transform:matrix(0.207109,0.004349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207109,0.004349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207109,0.004349,-0.005249,0.249945,0,0);}
.m58_c00491{transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207675,0.003530,-0.004249,0.249964,0,0);}
.m26_c00491{transform:matrix(0.207990,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207990,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207990,0.003536,-0.004249,0.249964,0,0);}
.m98_c00491{transform:matrix(0.210069,0.004411,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210069,0.004411,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210069,0.004411,-0.005249,0.249945,0,0);}
.m18_c00491{transform:matrix(0.210075,0.003571,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210075,0.003571,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210075,0.003571,-0.004249,0.249964,0,0);}
.m5b_c00491{transform:matrix(0.210460,0.003578,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210460,0.003578,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210460,0.003578,-0.004249,0.249964,0,0);}
.mb0_c00491{transform:matrix(0.211513,0.004442,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211513,0.004442,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211513,0.004442,-0.005249,0.249945,0,0);}
.m102_c00491{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);}
.m3a_c00491{transform:matrix(0.211764,0.003600,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211764,0.003600,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211764,0.003600,-0.004249,0.249964,0,0);}
.m4b_c00491{transform:matrix(0.211889,0.003602,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211889,0.003602,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211889,0.003602,-0.004249,0.249964,0,0);}
.mf1_c00491{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);}
.mec_c00491{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);}
.m2c_c00491{transform:matrix(0.214084,0.003639,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214084,0.003639,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214084,0.003639,-0.004249,0.249964,0,0);}
.mf6_c00491{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);}
.m88_c00491{transform:matrix(0.214624,0.003649,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214624,0.003649,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214624,0.003649,-0.004249,0.249964,0,0);}
.m120_c00491{transform:matrix(0.214693,0.006441,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214693,0.006441,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214693,0.006441,-0.007497,0.249888,0,0);}
.mcb_c00491{transform:matrix(0.214917,0.005588,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214917,0.005588,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214917,0.005588,-0.006498,0.249916,0,0);}
.mb5_c00491{transform:matrix(0.215532,0.004526,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215532,0.004526,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215532,0.004526,-0.005249,0.249945,0,0);}
.m124_c00491{transform:matrix(0.216203,0.006486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216203,0.006486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216203,0.006486,-0.007497,0.249888,0,0);}
.m5e_c00491{transform:matrix(0.217349,0.003695,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217349,0.003695,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217349,0.003695,-0.004249,0.249964,0,0);}
.m78_c00491{transform:matrix(0.217914,0.003705,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217914,0.003705,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217914,0.003705,-0.004249,0.249964,0,0);}
.m8a_c00491{transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);}
.m38_c00491{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);}
.m3c_c00491{transform:matrix(0.219578,0.003733,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219578,0.003733,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219578,0.003733,-0.004249,0.249964,0,0);}
.mf7_c00491{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);}
.mac_c00491{transform:matrix(0.219842,0.004617,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219842,0.004617,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219842,0.004617,-0.005249,0.249945,0,0);}
.maf_c00491{transform:matrix(0.220716,0.004635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220716,0.004635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220716,0.004635,-0.005249,0.249945,0,0);}
.m116_c00491{transform:matrix(0.220791,0.006624,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220791,0.006624,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220791,0.006624,-0.007497,0.249888,0,0);}
.m54_c00491{transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);}
.m6_c00491{transform:matrix(0.221213,0.003761,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221213,0.003761,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221213,0.003761,-0.004249,0.249964,0,0);}
.mb6_c00491{transform:matrix(0.221646,0.004655,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221646,0.004655,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221646,0.004655,-0.005249,0.249945,0,0);}
.m11f_c00491{transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);}
.ma6_c00491{transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);}
.m70_c00491{transform:matrix(0.227407,0.003866,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227407,0.003866,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227407,0.003866,-0.004249,0.249964,0,0);}
.mf5_c00491{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);}
.m2b_c00491{transform:matrix(0.228552,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228552,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228552,0.003885,-0.004249,0.249964,0,0);}
.m67_c00491{transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);}
.m95_c00491{transform:matrix(0.231759,0.004867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231759,0.004867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231759,0.004867,-0.005249,0.249945,0,0);}
.m119_c00491{transform:matrix(0.233360,0.007001,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233360,0.007001,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233360,0.007001,-0.007497,0.249888,0,0);}
.m9e_c00491{transform:matrix(0.238977,0.005019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238977,0.005019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238977,0.005019,-0.005249,0.249945,0,0);}
.mdd_c00491{transform:matrix(0.242661,0.009959,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242661,0.009959,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242661,0.009959,-0.010252,0.249790,0,0);}
.m11a_c00491{transform:matrix(0.243620,0.007309,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243620,0.007309,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243620,0.007309,-0.007497,0.249888,0,0);}
.me6_c00491{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00491{transform:matrix(0.244940,0.004164,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244940,0.004164,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244940,0.004164,-0.004249,0.249964,0,0);}
.m29_c00491{transform:matrix(0.245005,0.004165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245005,0.004165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245005,0.004165,-0.004249,0.249964,0,0);}
.m4f_c00491{transform:matrix(0.248129,0.004218,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248129,0.004218,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248129,0.004218,-0.004249,0.249964,0,0);}
.m5_c00491{transform:matrix(0.258398,0.004393,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258398,0.004393,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258398,0.004393,-0.004249,0.249964,0,0);}
.mca_c00491{transform:matrix(0.259882,0.006757,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259882,0.006757,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259882,0.006757,-0.006498,0.249916,0,0);}
.ma7_c00491{transform:matrix(0.271375,0.005699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271375,0.005699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271375,0.005699,-0.005249,0.249945,0,0);}
.mea_c00491{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);}
.m111_c00491{transform:matrix(0.271623,0.008149,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271623,0.008149,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271623,0.008149,-0.007497,0.249888,0,0);}
.me2_c00491{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);}
.mf8_c00491{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.mfe_c00491{transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284515,0.000000,0.000000,0.250000,0,0);}
.m11e_c00491{transform:matrix(0.285107,0.008553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.285107,0.008553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.285107,0.008553,-0.007497,0.249888,0,0);}
.m4_c00491{transform:matrix(0.288603,0.005483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.288603,0.005483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.288603,0.005483,-0.004749,0.249955,0,0);}
.mf0_c00491{transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305655,0.000000,0.000000,0.250000,0,0);}
.m106_c00491{transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317265,0.000000,0.000000,0.250000,0,0);}
.m122_c00491{transform:matrix(0.327932,0.009838,-0.007497,0.249888,0,0);-ms-transform:matrix(0.327932,0.009838,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.327932,0.009838,-0.007497,0.249888,0,0);}
.m3d_c00491{transform:matrix(0.328912,0.005592,-0.004249,0.249964,0,0);-ms-transform:matrix(0.328912,0.005592,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.328912,0.005592,-0.004249,0.249964,0,0);}
.m77_c00491{transform:matrix(0.338636,0.005757,-0.004249,0.249964,0,0);-ms-transform:matrix(0.338636,0.005757,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.338636,0.005757,-0.004249,0.249964,0,0);}
.m3_c00491{transform:matrix(0.343053,0.006518,-0.004749,0.249955,0,0);-ms-transform:matrix(0.343053,0.006518,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.343053,0.006518,-0.004749,0.249955,0,0);}
.m0_c00491{transform:matrix(0.629409,0.010700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.629409,0.010700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.629409,0.010700,-0.004249,0.249964,0,0);}
.mfd_c00491{transform:matrix(0.671665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671665,0.000000,0.000000,0.250000,0,0);}
.mf9_c00491{transform:matrix(1.680610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680610,0.000000,0.000000,0.250000,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;}
.fs19_c00491{font-size:48.321730px;}
.fs15_c00491{font-size:51.450000px;}
.fs18_c00491{font-size:52.523620px;}
.fs14_c00491{font-size:55.650000px;}
.fs17_c00491{font-size:58.815551px;}
.fs16_c00491{font-size:60.900000px;}
.fs1a_c00491{font-size:60.927399px;}
.fs13_c00491{font-size:65.100000px;}
.fs4_c00491{font-size:68.259861px;}
.fs6_c00491{font-size:69.310013px;}
.fs8_c00491{font-size:70.360165px;}
.fs5_c00491{font-size:71.410317px;}
.fsd_c00491{font-size:71.415742px;}
.fs2_c00491{font-size:72.460468px;}
.fs10_c00491{font-size:72.474484px;}
.fs3_c00491{font-size:73.510620px;}
.fsb_c00491{font-size:73.516205px;}
.fs7_c00491{font-size:74.560772px;}
.fsc_c00491{font-size:74.566436px;}
.fs9_c00491{font-size:75.610923px;}
.fse_c00491{font-size:78.767362px;}
.fsa_c00491{font-size:79.817594px;}
.fsf_c00491{font-size:82.968288px;}
.fs11_c00491{font-size:85.078742px;}
.fs12_c00491{font-size:96.584639px;}
.fs1_c00491{font-size:129.173309px;}
.fs0_c00491{font-size:237.334287px;}
.y0_c00491{bottom:0.000000px;}
.y116_c00491{bottom:163.888035px;}
.y115_c00491{bottom:164.367255px;}
.y114_c00491{bottom:165.682740px;}
.y113_c00491{bottom:167.381745px;}
.y112_c00491{bottom:167.925645px;}
.y111_c00491{bottom:168.470715px;}
.yfa_c00491{bottom:175.078500px;}
.y110_c00491{bottom:179.967165px;}
.y10f_c00491{bottom:181.580850px;}
.y10e_c00491{bottom:185.126430px;}
.y10d_c00491{bottom:186.285915px;}
.y10c_c00491{bottom:187.159620px;}
.y10b_c00491{bottom:188.082945px;}
.yf9_c00491{bottom:188.443500px;}
.y10a_c00491{bottom:188.449140px;}
.yf8_c00491{bottom:189.145500px;}
.yf7_c00491{bottom:189.529500px;}
.yf6_c00491{bottom:190.450500px;}
.yf5_c00491{bottom:191.058000px;}
.yf4_c00491{bottom:191.880000px;}
.yf3_c00491{bottom:192.793500px;}
.yf2_c00491{bottom:193.332000px;}
.y109_c00491{bottom:200.020575px;}
.y108_c00491{bottom:200.843265px;}
.y107_c00491{bottom:201.743175px;}
.y106_c00491{bottom:202.609965px;}
.y105_c00491{bottom:204.335445px;}
.y104_c00491{bottom:205.218660px;}
.y103_c00491{bottom:206.292000px;}
.yf1_c00491{bottom:210.999000px;}
.yf0_c00491{bottom:226.656000px;}
.yef_c00491{bottom:236.766000px;}
.yee_c00491{bottom:237.660000px;}
.yed_c00491{bottom:238.179000px;}
.yec_c00491{bottom:238.980000px;}
.yeb_c00491{bottom:239.412000px;}
.yea_c00491{bottom:239.694000px;}
.ye9_c00491{bottom:240.289500px;}
.ye8_c00491{bottom:241.608000px;}
.ye7_c00491{bottom:241.839000px;}
.ye6_c00491{bottom:247.498500px;}
.ye5_c00491{bottom:248.397000px;}
.ye4_c00491{bottom:248.668500px;}
.y102_c00491{bottom:254.081229px;}
.y101_c00491{bottom:254.487915px;}
.y100_c00491{bottom:255.084489px;}
.yff_c00491{bottom:255.694345px;}
.yfe_c00491{bottom:256.375548px;}
.ye2_c00491{bottom:257.184716px;}
.yfd_c00491{bottom:257.607957px;}
.ye3_c00491{bottom:257.860500px;}
.yfc_c00491{bottom:258.302166px;}
.ye1_c00491{bottom:258.508810px;}
.yfb_c00491{bottom:258.936000px;}
.ye0_c00491{bottom:259.546807px;}
.ydf_c00491{bottom:260.276813px;}
.yde_c00491{bottom:261.923045px;}
.ydd_c00491{bottom:262.661413px;}
.ydc_c00491{bottom:263.544000px;}
.ydb_c00491{bottom:313.092432px;}
.yda_c00491{bottom:313.908594px;}
.yd9_c00491{bottom:315.695196px;}
.yd8_c00491{bottom:316.438353px;}
.yd7_c00491{bottom:317.808840px;}
.yd6_c00491{bottom:318.845850px;}
.yd5_c00491{bottom:321.208968px;}
.yd4_c00491{bottom:322.112331px;}
.yd3_c00491{bottom:338.245155px;}
.yd2_c00491{bottom:338.982372px;}
.yd1_c00491{bottom:339.600093px;}
.yd0_c00491{bottom:341.221713px;}
.ycf_c00491{bottom:342.408951px;}
.yce_c00491{bottom:343.638309px;}
.ycd_c00491{bottom:344.129709px;}
.ycc_c00491{bottom:344.895006px;}
.ycb_c00491{bottom:345.759090px;}
.yca_c00491{bottom:346.410000px;}
.yc9_c00491{bottom:360.899687px;}
.yc8_c00491{bottom:361.432254px;}
.yc7_c00491{bottom:362.362589px;}
.yc6_c00491{bottom:363.415967px;}
.yc5_c00491{bottom:363.926709px;}
.yc4_c00491{bottom:365.749745px;}
.yc3_c00491{bottom:366.940191px;}
.yc2_c00491{bottom:367.790943px;}
.yc1_c00491{bottom:368.534535px;}
.yc0_c00491{bottom:382.312271px;}
.ybf_c00491{bottom:383.919480px;}
.ybe_c00491{bottom:385.260796px;}
.ybd_c00491{bottom:386.587206px;}
.ybc_c00491{bottom:387.599568px;}
.ybb_c00491{bottom:388.533867px;}
.yba_c00491{bottom:389.158623px;}
.yb9_c00491{bottom:389.965236px;}
.yb8_c00491{bottom:390.992694px;}
.yb7_c00491{bottom:391.489784px;}
.yb6_c00491{bottom:405.058029px;}
.yb5_c00491{bottom:406.043894px;}
.yb4_c00491{bottom:407.648081px;}
.yb3_c00491{bottom:408.293765px;}
.yb2_c00491{bottom:409.205495px;}
.yb1_c00491{bottom:410.247551px;}
.yb0_c00491{bottom:411.123836px;}
.yaf_c00491{bottom:412.015040px;}
.yae_c00491{bottom:413.021115px;}
.yad_c00491{bottom:413.902661px;}
.yac_c00491{bottom:430.696596px;}
.yab_c00491{bottom:431.311343px;}
.yaa_c00491{bottom:432.202374px;}
.ya9_c00491{bottom:433.168352px;}
.ya8_c00491{bottom:433.629942px;}
.ya7_c00491{bottom:434.661290px;}
.ya6_c00491{bottom:435.909935px;}
.ya5_c00491{bottom:436.550637px;}
.ya4_c00491{bottom:437.126127px;}
.ya3_c00491{bottom:451.874535px;}
.ya2_c00491{bottom:453.411769px;}
.ya1_c00491{bottom:454.336967px;}
.ya0_c00491{bottom:455.163416px;}
.y9f_c00491{bottom:455.620659px;}
.y9e_c00491{bottom:456.855992px;}
.y9d_c00491{bottom:457.509912px;}
.y9c_c00491{bottom:457.926091px;}
.y9b_c00491{bottom:458.531904px;}
.y9a_c00491{bottom:458.999353px;}
.y99_c00491{bottom:459.540930px;}
.y98_c00491{bottom:474.859131px;}
.y97_c00491{bottom:476.626754px;}
.y96_c00491{bottom:477.586212px;}
.y95_c00491{bottom:477.886407px;}
.y94_c00491{bottom:478.533228px;}
.y93_c00491{bottom:479.934128px;}
.y92_c00491{bottom:480.466037px;}
.y91_c00491{bottom:481.686000px;}
.y90_c00491{bottom:499.493163px;}
.y8f_c00491{bottom:499.958913px;}
.y8e_c00491{bottom:500.908811px;}
.y8d_c00491{bottom:501.598250px;}
.y8c_c00491{bottom:502.570697px;}
.y8b_c00491{bottom:503.727798px;}
.y8a_c00491{bottom:504.529199px;}
.y89_c00491{bottom:505.099851px;}
.y88_c00491{bottom:505.383114px;}
.y87_c00491{bottom:522.914793px;}
.y86_c00491{bottom:524.140488px;}
.y85_c00491{bottom:524.452887px;}
.y84_c00491{bottom:525.553525px;}
.y83_c00491{bottom:526.221065px;}
.y82_c00491{bottom:526.846479px;}
.y81_c00491{bottom:527.298031px;}
.y80_c00491{bottom:527.803995px;}
.y7f_c00491{bottom:543.477506px;}
.y7e_c00491{bottom:545.036406px;}
.y7d_c00491{bottom:546.919879px;}
.y7c_c00491{bottom:547.541606px;}
.y7b_c00491{bottom:548.533340px;}
.y7a_c00491{bottom:550.209102px;}
.y79_c00491{bottom:550.756290px;}
.y78_c00491{bottom:568.019182px;}
.y77_c00491{bottom:569.592566px;}
.y76_c00491{bottom:570.223330px;}
.y75_c00491{bottom:571.444741px;}
.y74_c00491{bottom:572.801061px;}
.y73_c00491{bottom:573.242548px;}
.y72_c00491{bottom:573.709166px;}
.y71_c00491{bottom:588.558804px;}
.y70_c00491{bottom:589.477910px;}
.y6f_c00491{bottom:590.110995px;}
.y6e_c00491{bottom:591.394238px;}
.y6d_c00491{bottom:592.134742px;}
.y6c_c00491{bottom:593.447420px;}
.y6b_c00491{bottom:593.911050px;}
.y6a_c00491{bottom:594.621202px;}
.y69_c00491{bottom:595.447236px;}
.y68_c00491{bottom:596.124155px;}
.y67_c00491{bottom:613.896966px;}
.y66_c00491{bottom:614.305425px;}
.y65_c00491{bottom:615.379638px;}
.y64_c00491{bottom:615.810409px;}
.y63_c00491{bottom:616.503091px;}
.y62_c00491{bottom:617.836818px;}
.y61_c00491{bottom:618.244334px;}
.y60_c00491{bottom:618.615129px;}
.y5f_c00491{bottom:619.075225px;}
.y5e_c00491{bottom:635.427746px;}
.y5d_c00491{bottom:635.873754px;}
.y5c_c00491{bottom:637.119777px;}
.y5b_c00491{bottom:637.523443px;}
.y5a_c00491{bottom:638.437356px;}
.y59_c00491{bottom:639.391698px;}
.y58_c00491{bottom:640.059051px;}
.y57_c00491{bottom:640.833013px;}
.y56_c00491{bottom:641.308261px;}
.y55_c00491{bottom:641.755774px;}
.y54_c00491{bottom:658.625759px;}
.y53_c00491{bottom:659.335689px;}
.y52_c00491{bottom:660.197063px;}
.y51_c00491{bottom:660.658205px;}
.y50_c00491{bottom:661.329277px;}
.y4f_c00491{bottom:661.857853px;}
.y4e_c00491{bottom:662.280469px;}
.y4d_c00491{bottom:662.863938px;}
.y4c_c00491{bottom:663.900852px;}
.y4b_c00491{bottom:681.308379px;}
.y4a_c00491{bottom:682.816050px;}
.y49_c00491{bottom:683.220223px;}
.y48_c00491{bottom:683.862510px;}
.y47_c00491{bottom:684.899611px;}
.y46_c00491{bottom:685.541974px;}
.y45_c00491{bottom:686.325213px;}
.y44_c00491{bottom:686.854074px;}
.y43_c00491{bottom:705.693240px;}
.y42_c00491{bottom:706.341616px;}
.y41_c00491{bottom:707.378616px;}
.y40_c00491{bottom:709.215726px;}
.y3f_c00491{bottom:709.809304px;}
.y3e_c00491{bottom:724.958757px;}
.y3d_c00491{bottom:726.358849px;}
.y3c_c00491{bottom:727.088496px;}
.y3b_c00491{bottom:727.705882px;}
.y3a_c00491{bottom:728.210775px;}
.y39_c00491{bottom:729.323062px;}
.y38_c00491{bottom:730.297216px;}
.y37_c00491{bottom:730.997377px;}
.y36_c00491{bottom:731.451399px;}
.y35_c00491{bottom:731.921425px;}
.y34_c00491{bottom:732.495663px;}
.y33_c00491{bottom:747.577824px;}
.y32_c00491{bottom:748.565437px;}
.y31_c00491{bottom:749.099560px;}
.y30_c00491{bottom:749.846257px;}
.y2f_c00491{bottom:750.832825px;}
.y2e_c00491{bottom:751.859865px;}
.y2d_c00491{bottom:753.102330px;}
.y2c_c00491{bottom:753.905988px;}
.y2b_c00491{bottom:754.503646px;}
.y2a_c00491{bottom:755.178831px;}
.y29_c00491{bottom:771.640801px;}
.y28_c00491{bottom:772.051960px;}
.y27_c00491{bottom:772.364976px;}
.y26_c00491{bottom:773.345702px;}
.y25_c00491{bottom:773.869203px;}
.y24_c00491{bottom:774.525697px;}
.y23_c00491{bottom:775.555420px;}
.y22_c00491{bottom:776.177932px;}
.y21_c00491{bottom:777.321579px;}
.y20_c00491{bottom:795.054771px;}
.y1f_c00491{bottom:795.646756px;}
.y1e_c00491{bottom:796.017871px;}
.y1d_c00491{bottom:796.980793px;}
.y1c_c00491{bottom:797.431608px;}
.y1b_c00491{bottom:798.770643px;}
.y1a_c00491{bottom:799.572942px;}
.y19_c00491{bottom:800.277466px;}
.y18_c00491{bottom:818.116854px;}
.y17_c00491{bottom:818.602144px;}
.y16_c00491{bottom:819.010833px;}
.y15_c00491{bottom:819.631962px;}
.y14_c00491{bottom:819.957036px;}
.y13_c00491{bottom:820.636330px;}
.y12_c00491{bottom:821.252309px;}
.y11_c00491{bottom:822.781110px;}
.y10_c00491{bottom:823.230955px;}
.yf_c00491{bottom:840.672001px;}
.ye_c00491{bottom:841.048560px;}
.yd_c00491{bottom:841.804711px;}
.yc_c00491{bottom:842.232142px;}
.yb_c00491{bottom:843.012086px;}
.ya_c00491{bottom:843.651319px;}
.y9_c00491{bottom:844.078291px;}
.y8_c00491{bottom:844.969797px;}
.y7_c00491{bottom:845.446239px;}
.y6_c00491{bottom:845.916000px;}
.y5_c00491{bottom:887.268884px;}
.y4_c00491{bottom:889.274942px;}
.y3_c00491{bottom:892.084500px;}
.y2_c00491{bottom:929.474682px;}
.y1_c00491{bottom:934.749000px;}
.h1b_c00491{height:48.321730px;}
.h17_c00491{height:51.450000px;}
.h1a_c00491{height:52.523620px;}
.h16_c00491{height:55.650000px;}
.h19_c00491{height:58.815551px;}
.h18_c00491{height:60.900000px;}
.h1c_c00491{height:60.927399px;}
.h15_c00491{height:65.100000px;}
.h6_c00491{height:68.259861px;}
.h8_c00491{height:69.310013px;}
.ha_c00491{height:70.360165px;}
.h7_c00491{height:71.410317px;}
.hf_c00491{height:71.415742px;}
.h4_c00491{height:72.460468px;}
.h12_c00491{height:72.474484px;}
.h5_c00491{height:73.510620px;}
.hd_c00491{height:73.516205px;}
.h9_c00491{height:74.560772px;}
.he_c00491{height:74.566436px;}
.hb_c00491{height:75.610923px;}
.h10_c00491{height:78.767362px;}
.hc_c00491{height:79.817594px;}
.h11_c00491{height:82.968288px;}
.h13_c00491{height:85.078742px;}
.h14_c00491{height:96.584639px;}
.h3_c00491{height:129.173309px;}
.h2_c00491{height:237.334287px;}
.h0_c00491{height:1008.450000px;}
.h1_c00491{height:1008.750000px;}
.w1_c00491{width:700.500000px;}
.w0_c00491{width:700.650000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:96.979500px;}
.x90_c00491{left:124.263000px;}
.x91_c00491{left:134.712000px;}
.x88_c00491{left:140.677500px;}
.x9e_c00491{left:144.957000px;}
.x3_c00491{left:148.564500px;}
.x9c_c00491{left:159.841500px;}
.x62_c00491{left:161.783247px;}
.x97_c00491{left:163.891500px;}
.x89_c00491{left:165.712500px;}
.x9f_c00491{left:167.392500px;}
.x8c_c00491{left:169.677974px;}
.x8a_c00491{left:171.073221px;}
.x78_c00491{left:172.527072px;}
.x68_c00491{left:173.850000px;}
.x5f_c00491{left:174.930167px;}
.x4e_c00491{left:176.360166px;}
.x47_c00491{left:177.949083px;}
.x39_c00491{left:179.015967px;}
.x2f_c00491{left:180.351409px;}
.x1f_c00491{left:182.265783px;}
.x6_c00491{left:183.819000px;}
.x8d_c00491{left:187.668964px;}
.x98_c00491{left:189.541500px;}
.x82_c00491{left:191.039857px;}
.x6e_c00491{left:197.700804px;}
.x5a_c00491{left:199.068797px;}
.x48_c00491{left:201.537293px;}
.x4f_c00491{left:203.424666px;}
.x3c_c00491{left:204.923838px;}
.x30_c00491{left:207.687048px;}
.x3a_c00491{left:208.724962px;}
.x10_c00491{left:210.103414px;}
.x7_c00491{left:211.452000px;}
.x28_c00491{left:213.559531px;}
.x6f_c00491{left:218.959863px;}
.x5b_c00491{left:221.155175px;}
.x18_c00491{left:222.516576px;}
.x50_c00491{left:225.236166px;}
.x49_c00491{left:226.580451px;}
.x79_c00491{left:227.868438px;}
.x31_c00491{left:230.040018px;}
.x69_c00491{left:231.943500px;}
.x63_c00491{left:233.823929px;}
.x42_c00491{left:236.109122px;}
.x8_c00491{left:239.478000px;}
.x20_c00491{left:242.478243px;}
.x3d_c00491{left:244.112349px;}
.x70_c00491{left:246.521796px;}
.x55_c00491{left:247.584145px;}
.x51_c00491{left:249.207666px;}
.x32_c00491{left:251.628039px;}
.x7c_c00491{left:254.873770px;}
.x6a_c00491{left:257.272500px;}
.x83_c00491{left:261.583455px;}
.x71_c00491{left:265.410887px;}
.x19_c00491{left:267.062811px;}
.x43_c00491{left:268.489061px;}
.x8e_c00491{left:270.859690px;}
.x21_c00491{left:275.213121px;}
.x3e_c00491{left:276.249717px;}
.x29_c00491{left:280.279492px;}
.x56_c00491{left:281.414351px;}
.x33_c00491{left:284.958770px;}
.x99_c00491{left:287.281500px;}
.x5c_c00491{left:288.935207px;}
.x9_c00491{left:291.919500px;}
.x7d_c00491{left:293.596132px;}
.x72_c00491{left:295.120757px;}
.x4_c00491{left:296.436000px;}
.x11_c00491{left:300.032914px;}
.x4a_c00491{left:302.449376px;}
.x57_c00491{left:303.479346px;}
.x9a_c00491{left:309.421500px;}
.xa_c00491{left:317.035500px;}
.xa0_c00491{left:319.419000px;}
.x44_c00491{left:321.264143px;}
.x9d_c00491{left:322.651500px;}
.x6b_c00491{left:323.982000px;}
.x64_c00491{left:326.434994px;}
.x3f_c00491{left:328.076565px;}
.x22_c00491{left:329.430285px;}
.x34_c00491{left:331.317608px;}
.x61_c00491{left:334.288179px;}
.x12_c00491{left:336.266914px;}
.x2a_c00491{left:339.420463px;}
.x1a_c00491{left:341.416536px;}
.xa1_c00491{left:348.672000px;}
.x5d_c00491{left:350.015096px;}
.x73_c00491{left:351.302091px;}
.x3b_c00491{left:352.371119px;}
.xb_c00491{left:354.637500px;}
.x65_c00491{left:356.398934px;}
.x45_c00491{left:358.532505px;}
.x40_c00491{left:360.209433px;}
.x86_c00491{left:361.213515px;}
.x23_c00491{left:363.987612px;}
.x1b_c00491{left:366.434602px;}
.x52_c00491{left:368.408166px;}
.x74_c00491{left:372.075150px;}
.x9b_c00491{left:373.951500px;}
.xa6_c00491{left:375.165000px;}
.x13_c00491{left:376.225414px;}
.x41_c00491{left:380.453913px;}
.x5e_c00491{left:381.558489px;}
.xaa_c00491{left:383.144895px;}
.x35_c00491{left:384.301512px;}
.x8f_c00491{left:385.830000px;}
.x92_c00491{left:386.971500px;}
.x2b_c00491{left:388.360648px;}
.x24_c00491{left:391.516168px;}
.x53_c00491{left:393.747666px;}
.x14_c00491{left:395.347414px;}
.x7a_c00491{left:396.415410px;}
.x66_c00491{left:397.712226px;}
.xc_c00491{left:400.516500px;}
.x5_c00491{left:402.018000px;}
.x2_c00491{left:407.233500px;}
.x36_c00491{left:408.352380px;}
.x75_c00491{left:409.643363px;}
.x84_c00491{left:411.464205px;}
.x6c_c00491{left:414.766500px;}
.x7e_c00491{left:416.641966px;}
.x67_c00491{left:417.960161px;}
.x1c_c00491{left:419.899684px;}
.x4b_c00491{left:422.058321px;}
.xd_c00491{left:425.659500px;}
.xab_c00491{left:429.233475px;}
.x15_c00491{left:431.884414px;}
.x2c_c00491{left:435.361461px;}
.x37_c00491{left:437.784891px;}
.x1d_c00491{left:440.494327px;}
.x25_c00491{left:443.115909px;}
.x7f_c00491{left:444.744801px;}
.x93_c00491{left:446.583000px;}
.x76_c00491{left:451.699481px;}
.x87_c00491{left:454.381765px;}
.x16_c00491{left:455.924914px;}
.x54_c00491{left:456.936666px;}
.x26_c00491{left:459.586848px;}
.x58_c00491{left:462.317034px;}
.x7b_c00491{left:464.831961px;}
.xe_c00491{left:470.139000px;}
.x46_c00491{left:471.468593px;}
.x1e_c00491{left:473.375266px;}
.x8b_c00491{left:474.939843px;}
.x27_c00491{left:481.213108px;}
.x17_c00491{left:484.471414px;}
.x4c_c00491{left:487.675102px;}
.xf_c00491{left:492.289500px;}
.x2d_c00491{left:496.317304px;}
.xa7_c00491{left:497.899500px;}
.x6d_c00491{left:498.939000px;}
.x60_c00491{left:505.830566px;}
.xa2_c00491{left:509.344500px;}
.x4d_c00491{left:511.174812px;}
.x80_c00491{left:514.488871px;}
.x77_c00491{left:521.542500px;}
.x85_c00491{left:524.858298px;}
.xa8_c00491{left:526.792500px;}
.x94_c00491{left:527.821500px;}
.x59_c00491{left:536.235011px;}
.x38_c00491{left:539.144980px;}
.x2e_c00491{left:543.379617px;}
.x95_c00491{left:547.788000px;}
.xac_c00491{left:549.886440px;}
.x81_c00491{left:557.361576px;}
.xa3_c00491{left:565.477500px;}
.x96_c00491{left:582.187500px;}
.xa9_c00491{left:584.212500px;}
.xad_c00491{left:585.999105px;}
.xa4_c00491{left:591.415500px;}
.xa5_c00491{left:609.097500px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs19_c00491{font-size:42.952649pt;}
.fs15_c00491{font-size:45.733333pt;}
.fs18_c00491{font-size:46.687662pt;}
.fs14_c00491{font-size:49.466667pt;}
.fs17_c00491{font-size:52.280489pt;}
.fs16_c00491{font-size:54.133333pt;}
.fs1a_c00491{font-size:54.157688pt;}
.fs13_c00491{font-size:57.866667pt;}
.fs4_c00491{font-size:60.675432pt;}
.fs6_c00491{font-size:61.608901pt;}
.fs8_c00491{font-size:62.542369pt;}
.fs5_c00491{font-size:63.475837pt;}
.fsd_c00491{font-size:63.480660pt;}
.fs2_c00491{font-size:64.409305pt;}
.fs10_c00491{font-size:64.421764pt;}
.fs3_c00491{font-size:65.342773pt;}
.fsb_c00491{font-size:65.347738pt;}
.fs7_c00491{font-size:66.276242pt;}
.fsc_c00491{font-size:66.281277pt;}
.fs9_c00491{font-size:67.209710pt;}
.fse_c00491{font-size:70.015433pt;}
.fsa_c00491{font-size:70.948972pt;}
.fsf_c00491{font-size:73.749590pt;}
.fs11_c00491{font-size:75.625548pt;}
.fs12_c00491{font-size:85.853013pt;}
.fs1_c00491{font-size:114.820720pt;}
.fs0_c00491{font-size:210.963811pt;}
.y0_c00491{bottom:0.000000pt;}
.y116_c00491{bottom:145.678253pt;}
.y115_c00491{bottom:146.104227pt;}
.y114_c00491{bottom:147.273547pt;}
.y113_c00491{bottom:148.783773pt;}
.y112_c00491{bottom:149.267240pt;}
.y111_c00491{bottom:149.751747pt;}
.yfa_c00491{bottom:155.625333pt;}
.y110_c00491{bottom:159.970813pt;}
.y10f_c00491{bottom:161.405200pt;}
.y10e_c00491{bottom:164.556827pt;}
.y10d_c00491{bottom:165.587480pt;}
.y10c_c00491{bottom:166.364107pt;}
.y10b_c00491{bottom:167.184840pt;}
.yf9_c00491{bottom:167.505333pt;}
.y10a_c00491{bottom:167.510347pt;}
.yf8_c00491{bottom:168.129333pt;}
.yf7_c00491{bottom:168.470667pt;}
.yf6_c00491{bottom:169.289333pt;}
.yf5_c00491{bottom:169.829333pt;}
.yf4_c00491{bottom:170.560000pt;}
.yf3_c00491{bottom:171.372000pt;}
.yf2_c00491{bottom:171.850667pt;}
.y109_c00491{bottom:177.796067pt;}
.y108_c00491{bottom:178.527347pt;}
.y107_c00491{bottom:179.327267pt;}
.y106_c00491{bottom:180.097747pt;}
.y105_c00491{bottom:181.631507pt;}
.y104_c00491{bottom:182.416587pt;}
.y103_c00491{bottom:183.370667pt;}
.yf1_c00491{bottom:187.554667pt;}
.yf0_c00491{bottom:201.472000pt;}
.yef_c00491{bottom:210.458667pt;}
.yee_c00491{bottom:211.253333pt;}
.yed_c00491{bottom:211.714667pt;}
.yec_c00491{bottom:212.426667pt;}
.yeb_c00491{bottom:212.810667pt;}
.yea_c00491{bottom:213.061333pt;}
.ye9_c00491{bottom:213.590667pt;}
.ye8_c00491{bottom:214.762667pt;}
.ye7_c00491{bottom:214.968000pt;}
.ye6_c00491{bottom:219.998667pt;}
.ye5_c00491{bottom:220.797333pt;}
.ye4_c00491{bottom:221.038667pt;}
.y102_c00491{bottom:225.849981pt;}
.y101_c00491{bottom:226.211480pt;}
.y100_c00491{bottom:226.741768pt;}
.yff_c00491{bottom:227.283863pt;}
.yfe_c00491{bottom:227.889376pt;}
.ye2_c00491{bottom:228.608636pt;}
.yfd_c00491{bottom:228.984851pt;}
.ye3_c00491{bottom:229.209333pt;}
.yfc_c00491{bottom:229.601925pt;}
.ye1_c00491{bottom:229.785609pt;}
.yfb_c00491{bottom:230.165333pt;}
.ye0_c00491{bottom:230.708273pt;}
.ydf_c00491{bottom:231.357167pt;}
.yde_c00491{bottom:232.820484pt;}
.ydd_c00491{bottom:233.476812pt;}
.ydc_c00491{bottom:234.261333pt;}
.ydb_c00491{bottom:278.304384pt;}
.yda_c00491{bottom:279.029861pt;}
.yd9_c00491{bottom:280.617952pt;}
.yd8_c00491{bottom:281.278536pt;}
.yd7_c00491{bottom:282.496747pt;}
.yd6_c00491{bottom:283.418533pt;}
.yd5_c00491{bottom:285.519083pt;}
.yd4_c00491{bottom:286.322072pt;}
.yd3_c00491{bottom:300.662360pt;}
.yd2_c00491{bottom:301.317664pt;}
.yd1_c00491{bottom:301.866749pt;}
.yd0_c00491{bottom:303.308189pt;}
.ycf_c00491{bottom:304.363512pt;}
.yce_c00491{bottom:305.456275pt;}
.ycd_c00491{bottom:305.893075pt;}
.ycc_c00491{bottom:306.573339pt;}
.ycb_c00491{bottom:307.341413pt;}
.yca_c00491{bottom:307.920000pt;}
.yc9_c00491{bottom:320.799721pt;}
.yc8_c00491{bottom:321.273115pt;}
.yc7_c00491{bottom:322.100079pt;}
.yc6_c00491{bottom:323.036415pt;}
.yc5_c00491{bottom:323.490408pt;}
.yc4_c00491{bottom:325.110884pt;}
.yc3_c00491{bottom:326.169059pt;}
.yc2_c00491{bottom:326.925283pt;}
.yc1_c00491{bottom:327.586253pt;}
.yc0_c00491{bottom:339.833129pt;}
.ybf_c00491{bottom:341.261760pt;}
.ybe_c00491{bottom:342.454041pt;}
.ybd_c00491{bottom:343.633072pt;}
.ybc_c00491{bottom:344.532949pt;}
.ybb_c00491{bottom:345.363437pt;}
.yba_c00491{bottom:345.918776pt;}
.yb9_c00491{bottom:346.635765pt;}
.yb8_c00491{bottom:347.549061pt;}
.yb7_c00491{bottom:347.990919pt;}
.yb6_c00491{bottom:360.051581pt;}
.yb5_c00491{bottom:360.927905pt;}
.yb4_c00491{bottom:362.353849pt;}
.yb3_c00491{bottom:362.927791pt;}
.yb2_c00491{bottom:363.738217pt;}
.yb1_c00491{bottom:364.664489pt;}
.yb0_c00491{bottom:365.443409pt;}
.yaf_c00491{bottom:366.235591pt;}
.yae_c00491{bottom:367.129880pt;}
.yad_c00491{bottom:367.913476pt;}
.yac_c00491{bottom:382.841419pt;}
.yab_c00491{bottom:383.387860pt;}
.yaa_c00491{bottom:384.179888pt;}
.ya9_c00491{bottom:385.038535pt;}
.ya8_c00491{bottom:385.448837pt;}
.ya7_c00491{bottom:386.365591pt;}
.ya6_c00491{bottom:387.475497pt;}
.ya5_c00491{bottom:388.045011pt;}
.ya4_c00491{bottom:388.556557pt;}
.ya3_c00491{bottom:401.666253pt;}
.ya2_c00491{bottom:403.032684pt;}
.ya1_c00491{bottom:403.855081pt;}
.ya0_c00491{bottom:404.589703pt;}
.y9f_c00491{bottom:404.996141pt;}
.y9e_c00491{bottom:406.094215pt;}
.y9d_c00491{bottom:406.675477pt;}
.y9c_c00491{bottom:407.045415pt;}
.y9b_c00491{bottom:407.583915pt;}
.y9a_c00491{bottom:407.999425pt;}
.y99_c00491{bottom:408.480827pt;}
.y98_c00491{bottom:422.097005pt;}
.y97_c00491{bottom:423.668225pt;}
.y96_c00491{bottom:424.521077pt;}
.y95_c00491{bottom:424.787917pt;}
.y94_c00491{bottom:425.362869pt;}
.y93_c00491{bottom:426.608113pt;}
.y92_c00491{bottom:427.080921pt;}
.y91_c00491{bottom:428.165333pt;}
.y90_c00491{bottom:443.993923pt;}
.y8f_c00491{bottom:444.407923pt;}
.y8e_c00491{bottom:445.252276pt;}
.y8d_c00491{bottom:445.865111pt;}
.y8c_c00491{bottom:446.729508pt;}
.y8b_c00491{bottom:447.758043pt;}
.y8a_c00491{bottom:448.470399pt;}
.y89_c00491{bottom:448.977645pt;}
.y88_c00491{bottom:449.229435pt;}
.y87_c00491{bottom:464.813149pt;}
.y86_c00491{bottom:465.902656pt;}
.y85_c00491{bottom:466.180344pt;}
.y84_c00491{bottom:467.158689pt;}
.y83_c00491{bottom:467.752057pt;}
.y82_c00491{bottom:468.307981pt;}
.y81_c00491{bottom:468.709361pt;}
.y80_c00491{bottom:469.159107pt;}
.y7f_c00491{bottom:483.091116pt;}
.y7e_c00491{bottom:484.476805pt;}
.y7d_c00491{bottom:486.151004pt;}
.y7c_c00491{bottom:486.703649pt;}
.y7b_c00491{bottom:487.585191pt;}
.y7a_c00491{bottom:489.074757pt;}
.y79_c00491{bottom:489.561147pt;}
.y78_c00491{bottom:504.905940pt;}
.y77_c00491{bottom:506.304503pt;}
.y76_c00491{bottom:506.865183pt;}
.y75_c00491{bottom:507.950881pt;}
.y74_c00491{bottom:509.156499pt;}
.y73_c00491{bottom:509.548932pt;}
.y72_c00491{bottom:509.963703pt;}
.y71_c00491{bottom:523.163381pt;}
.y70_c00491{bottom:523.980364pt;}
.y6f_c00491{bottom:524.543107pt;}
.y6e_c00491{bottom:525.683767pt;}
.y6d_c00491{bottom:526.341993pt;}
.y6c_c00491{bottom:527.508817pt;}
.y6b_c00491{bottom:527.920933pt;}
.y6a_c00491{bottom:528.552180pt;}
.y69_c00491{bottom:529.286432pt;}
.y68_c00491{bottom:529.888137pt;}
.y67_c00491{bottom:545.686192pt;}
.y66_c00491{bottom:546.049267pt;}
.y65_c00491{bottom:547.004123pt;}
.y64_c00491{bottom:547.387031pt;}
.y63_c00491{bottom:548.002748pt;}
.y62_c00491{bottom:549.188283pt;}
.y61_c00491{bottom:549.550519pt;}
.y60_c00491{bottom:549.880115pt;}
.y5f_c00491{bottom:550.289089pt;}
.y5e_c00491{bottom:564.824663pt;}
.y5d_c00491{bottom:565.221115pt;}
.y5c_c00491{bottom:566.328691pt;}
.y5b_c00491{bottom:566.687505pt;}
.y5a_c00491{bottom:567.499872pt;}
.y59_c00491{bottom:568.348176pt;}
.y58_c00491{bottom:568.941379pt;}
.y57_c00491{bottom:569.629345pt;}
.y56_c00491{bottom:570.051788pt;}
.y55_c00491{bottom:570.449577pt;}
.y54_c00491{bottom:585.445119pt;}
.y53_c00491{bottom:586.076168pt;}
.y52_c00491{bottom:586.841833pt;}
.y51_c00491{bottom:587.251737pt;}
.y50_c00491{bottom:587.848247pt;}
.y4f_c00491{bottom:588.318092pt;}
.y4e_c00491{bottom:588.693751pt;}
.y4d_c00491{bottom:589.212389pt;}
.y4c_c00491{bottom:590.134091pt;}
.y4b_c00491{bottom:605.607448pt;}
.y4a_c00491{bottom:606.947600pt;}
.y49_c00491{bottom:607.306865pt;}
.y48_c00491{bottom:607.877787pt;}
.y47_c00491{bottom:608.799655pt;}
.y46_c00491{bottom:609.370644pt;}
.y45_c00491{bottom:610.066856pt;}
.y44_c00491{bottom:610.536955pt;}
.y43_c00491{bottom:627.282880pt;}
.y42_c00491{bottom:627.859215pt;}
.y41_c00491{bottom:628.780992pt;}
.y40_c00491{bottom:630.413979pt;}
.y3f_c00491{bottom:630.941604pt;}
.y3e_c00491{bottom:644.407784pt;}
.y3d_c00491{bottom:645.652311pt;}
.y3c_c00491{bottom:646.300885pt;}
.y3b_c00491{bottom:646.849673pt;}
.y3a_c00491{bottom:647.298467pt;}
.y39_c00491{bottom:648.287167pt;}
.y38_c00491{bottom:649.153081pt;}
.y37_c00491{bottom:649.775447pt;}
.y36_c00491{bottom:650.179021pt;}
.y35_c00491{bottom:650.596823pt;}
.y34_c00491{bottom:651.107256pt;}
.y33_c00491{bottom:664.513621pt;}
.y32_c00491{bottom:665.391500pt;}
.y31_c00491{bottom:665.866276pt;}
.y30_c00491{bottom:666.530007pt;}
.y2f_c00491{bottom:667.406956pt;}
.y2e_c00491{bottom:668.319880pt;}
.y2d_c00491{bottom:669.424293pt;}
.y2c_c00491{bottom:670.138656pt;}
.y2b_c00491{bottom:670.669908pt;}
.y2a_c00491{bottom:671.270072pt;}
.y29_c00491{bottom:685.902935pt;}
.y28_c00491{bottom:686.268409pt;}
.y27_c00491{bottom:686.546645pt;}
.y26_c00491{bottom:687.418401pt;}
.y25_c00491{bottom:687.883736pt;}
.y24_c00491{bottom:688.467287pt;}
.y23_c00491{bottom:689.382596pt;}
.y22_c00491{bottom:689.935940pt;}
.y21_c00491{bottom:690.952515pt;}
.y20_c00491{bottom:706.715352pt;}
.y1f_c00491{bottom:707.241561pt;}
.y1e_c00491{bottom:707.571441pt;}
.y1d_c00491{bottom:708.427372pt;}
.y1c_c00491{bottom:708.828096pt;}
.y1b_c00491{bottom:710.018349pt;}
.y1a_c00491{bottom:710.731504pt;}
.y19_c00491{bottom:711.357748pt;}
.y18_c00491{bottom:727.214981pt;}
.y17_c00491{bottom:727.646351pt;}
.y16_c00491{bottom:728.009629pt;}
.y15_c00491{bottom:728.561744pt;}
.y14_c00491{bottom:728.850699pt;}
.y13_c00491{bottom:729.454516pt;}
.y12_c00491{bottom:730.002052pt;}
.y11_c00491{bottom:731.360987pt;}
.y10_c00491{bottom:731.760849pt;}
.yf_c00491{bottom:747.264001pt;}
.ye_c00491{bottom:747.598720pt;}
.yd_c00491{bottom:748.270855pt;}
.yc_c00491{bottom:748.650793pt;}
.yb_c00491{bottom:749.344076pt;}
.ya_c00491{bottom:749.912284pt;}
.y9_c00491{bottom:750.291815pt;}
.y8_c00491{bottom:751.084264pt;}
.y7_c00491{bottom:751.507768pt;}
.y6_c00491{bottom:751.925333pt;}
.y5_c00491{bottom:788.683452pt;}
.y4_c00491{bottom:790.466615pt;}
.y3_c00491{bottom:792.964000pt;}
.y2_c00491{bottom:826.199717pt;}
.y1_c00491{bottom:830.888000pt;}
.h1b_c00491{height:42.952649pt;}
.h17_c00491{height:45.733333pt;}
.h1a_c00491{height:46.687662pt;}
.h16_c00491{height:49.466667pt;}
.h19_c00491{height:52.280489pt;}
.h18_c00491{height:54.133333pt;}
.h1c_c00491{height:54.157688pt;}
.h15_c00491{height:57.866667pt;}
.h6_c00491{height:60.675432pt;}
.h8_c00491{height:61.608901pt;}
.ha_c00491{height:62.542369pt;}
.h7_c00491{height:63.475837pt;}
.hf_c00491{height:63.480660pt;}
.h4_c00491{height:64.409305pt;}
.h12_c00491{height:64.421764pt;}
.h5_c00491{height:65.342773pt;}
.hd_c00491{height:65.347738pt;}
.h9_c00491{height:66.276242pt;}
.he_c00491{height:66.281277pt;}
.hb_c00491{height:67.209710pt;}
.h10_c00491{height:70.015433pt;}
.hc_c00491{height:70.948972pt;}
.h11_c00491{height:73.749590pt;}
.h13_c00491{height:75.625548pt;}
.h14_c00491{height:85.853013pt;}
.h3_c00491{height:114.820720pt;}
.h2_c00491{height:210.963811pt;}
.h0_c00491{height:896.400000pt;}
.h1_c00491{height:896.666667pt;}
.w1_c00491{width:622.666667pt;}
.w0_c00491{width:622.800000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:86.204000pt;}
.x90_c00491{left:110.456000pt;}
.x91_c00491{left:119.744000pt;}
.x88_c00491{left:125.046667pt;}
.x9e_c00491{left:128.850667pt;}
.x3_c00491{left:132.057333pt;}
.x9c_c00491{left:142.081333pt;}
.x62_c00491{left:143.807331pt;}
.x97_c00491{left:145.681333pt;}
.x89_c00491{left:147.300000pt;}
.x9f_c00491{left:148.793333pt;}
.x8c_c00491{left:150.824865pt;}
.x8a_c00491{left:152.065085pt;}
.x78_c00491{left:153.357397pt;}
.x68_c00491{left:154.533333pt;}
.x5f_c00491{left:155.493481pt;}
.x4e_c00491{left:156.764592pt;}
.x47_c00491{left:158.176963pt;}
.x39_c00491{left:159.125304pt;}
.x2f_c00491{left:160.312364pt;}
.x1f_c00491{left:162.014029pt;}
.x6_c00491{left:163.394667pt;}
.x8d_c00491{left:166.816857pt;}
.x98_c00491{left:168.481333pt;}
.x82_c00491{left:169.813207pt;}
.x6e_c00491{left:175.734048pt;}
.x5a_c00491{left:176.950041pt;}
.x48_c00491{left:179.144260pt;}
.x4f_c00491{left:180.821925pt;}
.x3c_c00491{left:182.154523pt;}
.x30_c00491{left:184.610709pt;}
.x3a_c00491{left:185.533300pt;}
.x10_c00491{left:186.758591pt;}
.x7_c00491{left:187.957333pt;}
.x28_c00491{left:189.830695pt;}
.x6f_c00491{left:194.630989pt;}
.x5b_c00491{left:196.582377pt;}
.x18_c00491{left:197.792512pt;}
.x50_c00491{left:200.209925pt;}
.x49_c00491{left:201.404845pt;}
.x79_c00491{left:202.549723pt;}
.x31_c00491{left:204.480016pt;}
.x69_c00491{left:206.172000pt;}
.x63_c00491{left:207.843492pt;}
.x42_c00491{left:209.874775pt;}
.x8_c00491{left:212.869333pt;}
.x20_c00491{left:215.536216pt;}
.x3d_c00491{left:216.988755pt;}
.x70_c00491{left:219.130485pt;}
.x55_c00491{left:220.074796pt;}
.x51_c00491{left:221.517925pt;}
.x32_c00491{left:223.669368pt;}
.x7c_c00491{left:226.554463pt;}
.x6a_c00491{left:228.686667pt;}
.x83_c00491{left:232.518627pt;}
.x71_c00491{left:235.920788pt;}
.x19_c00491{left:237.389165pt;}
.x43_c00491{left:238.656943pt;}
.x8e_c00491{left:240.764169pt;}
.x21_c00491{left:244.633885pt;}
.x3e_c00491{left:245.555304pt;}
.x29_c00491{left:249.137327pt;}
.x56_c00491{left:250.146089pt;}
.x33_c00491{left:253.296684pt;}
.x99_c00491{left:255.361333pt;}
.x5c_c00491{left:256.831295pt;}
.x9_c00491{left:259.484000pt;}
.x7d_c00491{left:260.974340pt;}
.x72_c00491{left:262.329561pt;}
.x4_c00491{left:263.498667pt;}
.x11_c00491{left:266.695924pt;}
.x4a_c00491{left:268.843889pt;}
.x57_c00491{left:269.759419pt;}
.x9a_c00491{left:275.041333pt;}
.xa_c00491{left:281.809333pt;}
.xa0_c00491{left:283.928000pt;}
.x44_c00491{left:285.568127pt;}
.x9d_c00491{left:286.801333pt;}
.x6b_c00491{left:287.984000pt;}
.x64_c00491{left:290.164439pt;}
.x3f_c00491{left:291.623613pt;}
.x22_c00491{left:292.826920pt;}
.x34_c00491{left:294.504540pt;}
.x61_c00491{left:297.145048pt;}
.x12_c00491{left:298.903924pt;}
.x2a_c00491{left:301.707079pt;}
.x1a_c00491{left:303.481365pt;}
.xa1_c00491{left:309.930667pt;}
.x5d_c00491{left:311.124529pt;}
.x73_c00491{left:312.268525pt;}
.x3b_c00491{left:313.218772pt;}
.xb_c00491{left:315.233333pt;}
.x65_c00491{left:316.799052pt;}
.x45_c00491{left:318.695560pt;}
.x40_c00491{left:320.186163pt;}
.x86_c00491{left:321.078680pt;}
.x23_c00491{left:323.544544pt;}
.x1b_c00491{left:325.719647pt;}
.x52_c00491{left:327.473925pt;}
.x74_c00491{left:330.733467pt;}
.x9b_c00491{left:332.401333pt;}
.xa6_c00491{left:333.480000pt;}
.x13_c00491{left:334.422591pt;}
.x41_c00491{left:338.181256pt;}
.x5e_c00491{left:339.163101pt;}
.xaa_c00491{left:340.573240pt;}
.x35_c00491{left:341.601344pt;}
.x8f_c00491{left:342.960000pt;}
.x92_c00491{left:343.974667pt;}
.x2b_c00491{left:345.209465pt;}
.x24_c00491{left:348.014372pt;}
.x53_c00491{left:349.997925pt;}
.x14_c00491{left:351.419924pt;}
.x7a_c00491{left:352.369253pt;}
.x66_c00491{left:353.521979pt;}
.xc_c00491{left:356.014667pt;}
.x5_c00491{left:357.349333pt;}
.x2_c00491{left:361.985333pt;}
.x36_c00491{left:362.979893pt;}
.x75_c00491{left:364.127433pt;}
.x84_c00491{left:365.745960pt;}
.x6c_c00491{left:368.681333pt;}
.x7e_c00491{left:370.348415pt;}
.x67_c00491{left:371.520143pt;}
.x1c_c00491{left:373.244164pt;}
.x4b_c00491{left:375.162952pt;}
.xd_c00491{left:378.364000pt;}
.xab_c00491{left:381.540867pt;}
.x15_c00491{left:383.897257pt;}
.x2c_c00491{left:386.987965pt;}
.x37_c00491{left:389.142125pt;}
.x1d_c00491{left:391.550513pt;}
.x25_c00491{left:393.880808pt;}
.x7f_c00491{left:395.328712pt;}
.x93_c00491{left:396.962667pt;}
.x76_c00491{left:401.510649pt;}
.x87_c00491{left:403.894903pt;}
.x16_c00491{left:405.266591pt;}
.x54_c00491{left:406.165925pt;}
.x26_c00491{left:408.521643pt;}
.x58_c00491{left:410.948475pt;}
.x7b_c00491{left:413.183965pt;}
.xe_c00491{left:417.901333pt;}
.x46_c00491{left:419.083193pt;}
.x1e_c00491{left:420.778015pt;}
.x8b_c00491{left:422.168749pt;}
.x27_c00491{left:427.744985pt;}
.x17_c00491{left:430.641257pt;}
.x4c_c00491{left:433.488980pt;}
.xf_c00491{left:437.590667pt;}
.x2d_c00491{left:441.170937pt;}
.xa7_c00491{left:442.577333pt;}
.x6d_c00491{left:443.501333pt;}
.x60_c00491{left:449.627169pt;}
.xa2_c00491{left:452.750667pt;}
.x4d_c00491{left:454.377611pt;}
.x80_c00491{left:457.323441pt;}
.x77_c00491{left:463.593333pt;}
.x85_c00491{left:466.540709pt;}
.xa8_c00491{left:468.260000pt;}
.x94_c00491{left:469.174667pt;}
.x59_c00491{left:476.653343pt;}
.x38_c00491{left:479.239983pt;}
.x2e_c00491{left:483.004104pt;}
.x95_c00491{left:486.922667pt;}
.xac_c00491{left:488.787947pt;}
.x81_c00491{left:495.432512pt;}
.xa3_c00491{left:502.646667pt;}
.x96_c00491{left:517.500000pt;}
.xa9_c00491{left:519.300000pt;}
.xad_c00491{left:520.888093pt;}
.xa4_c00491{left:525.702667pt;}
.xa5_c00491{left:541.420000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.ma2_c00492{transform:matrix(0.010244,-0.000102,0.002500,0.249988,0,0);-ms-transform:matrix(0.010244,-0.000102,0.002500,0.249988,0,0);-webkit-transform:matrix(0.010244,-0.000102,0.002500,0.249988,0,0);}
.m74_c00492{transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);-ms-transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.010539,-0.000105,0.002500,0.249988,0,0);}
.m16_c00492{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);}
.mbb_c00492{transform:matrix(0.013634,-0.000136,0.002500,0.249988,0,0);-ms-transform:matrix(0.013634,-0.000136,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013634,-0.000136,0.002500,0.249988,0,0);}
.mf4_c00492{transform:matrix(0.015983,-0.000272,0.004249,0.249964,0,0);-ms-transform:matrix(0.015983,-0.000272,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015983,-0.000272,0.004249,0.249964,0,0);}
.m8_c00492{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);}
.maf_c00492{transform:matrix(0.071316,-0.000713,0.002500,0.249988,0,0);-ms-transform:matrix(0.071316,-0.000713,0.002500,0.249988,0,0);-webkit-transform:matrix(0.071316,-0.000713,0.002500,0.249988,0,0);}
.ma4_c00492{transform:matrix(0.092315,-0.000923,0.002500,0.249988,0,0);-ms-transform:matrix(0.092315,-0.000923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.092315,-0.000923,0.002500,0.249988,0,0);}
.m8c_c00492{transform:matrix(0.092710,-0.000927,0.002500,0.249988,0,0);-ms-transform:matrix(0.092710,-0.000927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.092710,-0.000927,0.002500,0.249988,0,0);}
.m25_c00492{transform:matrix(0.095110,-0.000951,0.002500,0.249988,0,0);-ms-transform:matrix(0.095110,-0.000951,0.002500,0.249988,0,0);-webkit-transform:matrix(0.095110,-0.000951,0.002500,0.249988,0,0);}
.m55_c00492{transform:matrix(0.135333,-0.001353,0.002500,0.249988,0,0);-ms-transform:matrix(0.135333,-0.001353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.135333,-0.001353,0.002500,0.249988,0,0);}
.mdb_c00492{transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136030,0.000000,0.000000,0.250000,0,0);}
.m53_c00492{transform:matrix(0.137408,-0.001374,0.002500,0.249988,0,0);-ms-transform:matrix(0.137408,-0.001374,0.002500,0.249988,0,0);-webkit-transform:matrix(0.137408,-0.001374,0.002500,0.249988,0,0);}
.m9c_c00492{transform:matrix(0.139283,-0.001393,0.002500,0.249988,0,0);-ms-transform:matrix(0.139283,-0.001393,0.002500,0.249988,0,0);-webkit-transform:matrix(0.139283,-0.001393,0.002500,0.249988,0,0);}
.m30_c00492{transform:matrix(0.141123,-0.001411,0.002500,0.249988,0,0);-ms-transform:matrix(0.141123,-0.001411,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141123,-0.001411,0.002500,0.249988,0,0);}
.m96_c00492{transform:matrix(0.141918,-0.001419,0.002500,0.249988,0,0);-ms-transform:matrix(0.141918,-0.001419,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141918,-0.001419,0.002500,0.249988,0,0);}
.m59_c00492{transform:matrix(0.141958,-0.001420,0.002500,0.249988,0,0);-ms-transform:matrix(0.141958,-0.001420,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141958,-0.001420,0.002500,0.249988,0,0);}
.m35_c00492{transform:matrix(0.142643,-0.001426,0.002500,0.249988,0,0);-ms-transform:matrix(0.142643,-0.001426,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142643,-0.001426,0.002500,0.249988,0,0);}
.m81_c00492{transform:matrix(0.142668,-0.001427,0.002500,0.249988,0,0);-ms-transform:matrix(0.142668,-0.001427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.142668,-0.001427,0.002500,0.249988,0,0);}
.mdf_c00492{transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);-ms-transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144053,-0.001441,0.002500,0.249988,0,0);}
.m36_c00492{transform:matrix(0.145398,-0.001454,0.002500,0.249988,0,0);-ms-transform:matrix(0.145398,-0.001454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145398,-0.001454,0.002500,0.249988,0,0);}
.m56_c00492{transform:matrix(0.145423,-0.001454,0.002500,0.249988,0,0);-ms-transform:matrix(0.145423,-0.001454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145423,-0.001454,0.002500,0.249988,0,0);}
.m99_c00492{transform:matrix(0.147633,-0.001476,0.002500,0.249988,0,0);-ms-transform:matrix(0.147633,-0.001476,0.002500,0.249988,0,0);-webkit-transform:matrix(0.147633,-0.001476,0.002500,0.249988,0,0);}
.m97_c00492{transform:matrix(0.149518,-0.001495,0.002500,0.249988,0,0);-ms-transform:matrix(0.149518,-0.001495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149518,-0.001495,0.002500,0.249988,0,0);}
.me8_c00492{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);}
.md9_c00492{transform:matrix(0.150915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150915,0.000000,0.000000,0.250000,0,0);}
.md0_c00492{transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);}
.mdc_c00492{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);}
.md4_c00492{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);}
.m61_c00492{transform:matrix(0.154677,-0.001547,0.002500,0.249988,0,0);-ms-transform:matrix(0.154677,-0.001547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154677,-0.001547,0.002500,0.249988,0,0);}
.mc0_c00492{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);}
.m3c_c00492{transform:matrix(0.156452,-0.001565,0.002500,0.249988,0,0);-ms-transform:matrix(0.156452,-0.001565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156452,-0.001565,0.002500,0.249988,0,0);}
.m89_c00492{transform:matrix(0.157052,-0.001571,0.002500,0.249988,0,0);-ms-transform:matrix(0.157052,-0.001571,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157052,-0.001571,0.002500,0.249988,0,0);}
.mb7_c00492{transform:matrix(0.157367,-0.001574,0.002500,0.249988,0,0);-ms-transform:matrix(0.157367,-0.001574,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157367,-0.001574,0.002500,0.249988,0,0);}
.ma6_c00492{transform:matrix(0.157632,-0.001576,0.002500,0.249988,0,0);-ms-transform:matrix(0.157632,-0.001576,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157632,-0.001576,0.002500,0.249988,0,0);}
.m54_c00492{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);}
.m5e_c00492{transform:matrix(0.158932,-0.001589,0.002500,0.249988,0,0);-ms-transform:matrix(0.158932,-0.001589,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158932,-0.001589,0.002500,0.249988,0,0);}
.m85_c00492{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);}
.m90_c00492{transform:matrix(0.160452,-0.001605,0.002500,0.249988,0,0);-ms-transform:matrix(0.160452,-0.001605,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160452,-0.001605,0.002500,0.249988,0,0);}
.m27_c00492{transform:matrix(0.160542,-0.001605,0.002500,0.249988,0,0);-ms-transform:matrix(0.160542,-0.001605,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160542,-0.001605,0.002500,0.249988,0,0);}
.md3_c00492{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);}
.mca_c00492{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);}
.mf0_c00492{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);}
.mf_c00492{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);}
.m8d_c00492{transform:matrix(0.162887,-0.001629,0.002500,0.249988,0,0);-ms-transform:matrix(0.162887,-0.001629,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162887,-0.001629,0.002500,0.249988,0,0);}
.m83_c00492{transform:matrix(0.163007,-0.001630,0.002500,0.249988,0,0);-ms-transform:matrix(0.163007,-0.001630,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163007,-0.001630,0.002500,0.249988,0,0);}
.m51_c00492{transform:matrix(0.163177,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163177,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163177,-0.001632,0.002500,0.249988,0,0);}
.m4a_c00492{transform:matrix(0.163887,-0.001639,0.002500,0.249988,0,0);-ms-transform:matrix(0.163887,-0.001639,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163887,-0.001639,0.002500,0.249988,0,0);}
.m6a_c00492{transform:matrix(0.164142,-0.001641,0.002500,0.249988,0,0);-ms-transform:matrix(0.164142,-0.001641,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164142,-0.001641,0.002500,0.249988,0,0);}
.m57_c00492{transform:matrix(0.164222,-0.001642,0.002500,0.249988,0,0);-ms-transform:matrix(0.164222,-0.001642,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164222,-0.001642,0.002500,0.249988,0,0);}
.m12_c00492{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);}
.m34_c00492{transform:matrix(0.165547,-0.001655,0.002500,0.249988,0,0);-ms-transform:matrix(0.165547,-0.001655,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165547,-0.001655,0.002500,0.249988,0,0);}
.m95_c00492{transform:matrix(0.165677,-0.001657,0.002500,0.249988,0,0);-ms-transform:matrix(0.165677,-0.001657,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165677,-0.001657,0.002500,0.249988,0,0);}
.m13_c00492{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);}
.m4d_c00492{transform:matrix(0.168102,-0.001681,0.002500,0.249988,0,0);-ms-transform:matrix(0.168102,-0.001681,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168102,-0.001681,0.002500,0.249988,0,0);}
.m9e_c00492{transform:matrix(0.168452,-0.001685,0.002500,0.249988,0,0);-ms-transform:matrix(0.168452,-0.001685,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168452,-0.001685,0.002500,0.249988,0,0);}
.maa_c00492{transform:matrix(0.168642,-0.001686,0.002500,0.249988,0,0);-ms-transform:matrix(0.168642,-0.001686,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168642,-0.001686,0.002500,0.249988,0,0);}
.mc2_c00492{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);}
.mea_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);}
.m32_c00492{transform:matrix(0.170016,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.170016,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170016,-0.001700,0.002500,0.249988,0,0);}
.m40_c00492{transform:matrix(0.170071,-0.001701,0.002500,0.249988,0,0);-ms-transform:matrix(0.170071,-0.001701,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170071,-0.001701,0.002500,0.249988,0,0);}
.m92_c00492{transform:matrix(0.170501,-0.001705,0.002500,0.249988,0,0);-ms-transform:matrix(0.170501,-0.001705,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170501,-0.001705,0.002500,0.249988,0,0);}
.mb8_c00492{transform:matrix(0.171131,-0.001711,0.002500,0.249988,0,0);-ms-transform:matrix(0.171131,-0.001711,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171131,-0.001711,0.002500,0.249988,0,0);}
.m52_c00492{transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);-ms-transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171726,-0.001717,0.002500,0.249988,0,0);}
.mba_c00492{transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173486,-0.001735,0.002500,0.249988,0,0);}
.mf5_c00492{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);}
.m33_c00492{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);}
.mc8_c00492{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);}
.m9f_c00492{transform:matrix(0.175141,-0.001751,0.002500,0.249988,0,0);-ms-transform:matrix(0.175141,-0.001751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175141,-0.001751,0.002500,0.249988,0,0);}
.m5a_c00492{transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);-ms-transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175341,-0.001753,0.002500,0.249988,0,0);}
.m100_c00492{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);}
.m4c_c00492{transform:matrix(0.175791,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175791,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175791,-0.001758,0.002500,0.249988,0,0);}
.m29_c00492{transform:matrix(0.175841,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175841,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175841,-0.001758,0.002500,0.249988,0,0);}
.m3b_c00492{transform:matrix(0.176551,-0.001766,0.002500,0.249988,0,0);-ms-transform:matrix(0.176551,-0.001766,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176551,-0.001766,0.002500,0.249988,0,0);}
.mbe_c00492{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);}
.m3f_c00492{transform:matrix(0.177681,-0.001777,0.002500,0.249988,0,0);-ms-transform:matrix(0.177681,-0.001777,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177681,-0.001777,0.002500,0.249988,0,0);}
.mb9_c00492{transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);}
.m37_c00492{transform:matrix(0.178181,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178181,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178181,-0.001782,0.002500,0.249988,0,0);}
.md5_c00492{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);}
.md6_c00492{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);}
.m71_c00492{transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178881,-0.001789,0.002500,0.249988,0,0);}
.m11_c00492{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);}
.m6d_c00492{transform:matrix(0.179451,-0.001795,0.002500,0.249988,0,0);-ms-transform:matrix(0.179451,-0.001795,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179451,-0.001795,0.002500,0.249988,0,0);}
.md7_c00492{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);}
.m8e_c00492{transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);-ms-transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);-webkit-transform:matrix(0.180251,-0.001803,0.002500,0.249988,0,0);}
.m5d_c00492{transform:matrix(0.181081,-0.001811,0.002500,0.249988,0,0);-ms-transform:matrix(0.181081,-0.001811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181081,-0.001811,0.002500,0.249988,0,0);}
.m3a_c00492{transform:matrix(0.181256,-0.001813,0.002500,0.249988,0,0);-ms-transform:matrix(0.181256,-0.001813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181256,-0.001813,0.002500,0.249988,0,0);}
.m77_c00492{transform:matrix(0.181366,-0.001814,0.002500,0.249988,0,0);-ms-transform:matrix(0.181366,-0.001814,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181366,-0.001814,0.002500,0.249988,0,0);}
.m91_c00492{transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);-ms-transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182026,-0.001820,0.002500,0.249988,0,0);}
.ma0_c00492{transform:matrix(0.182406,-0.001824,0.002500,0.249988,0,0);-ms-transform:matrix(0.182406,-0.001824,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182406,-0.001824,0.002500,0.249988,0,0);}
.m1a_c00492{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);}
.m8a_c00492{transform:matrix(0.182651,-0.001827,0.002500,0.249988,0,0);-ms-transform:matrix(0.182651,-0.001827,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182651,-0.001827,0.002500,0.249988,0,0);}
.m3e_c00492{transform:matrix(0.183221,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183221,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183221,-0.001832,0.002500,0.249988,0,0);}
.m60_c00492{transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);}
.m46_c00492{transform:matrix(0.183971,-0.001840,0.002500,0.249988,0,0);-ms-transform:matrix(0.183971,-0.001840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183971,-0.001840,0.002500,0.249988,0,0);}
.m1f_c00492{transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);-ms-transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184026,-0.001840,0.002500,0.249988,0,0);}
.m5c_c00492{transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);}
.m28_c00492{transform:matrix(0.184661,-0.001847,0.002500,0.249988,0,0);-ms-transform:matrix(0.184661,-0.001847,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184661,-0.001847,0.002500,0.249988,0,0);}
.ma7_c00492{transform:matrix(0.184906,-0.001849,0.002500,0.249988,0,0);-ms-transform:matrix(0.184906,-0.001849,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184906,-0.001849,0.002500,0.249988,0,0);}
.md1_c00492{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);}
.m4b_c00492{transform:matrix(0.186276,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186276,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186276,-0.001863,0.002500,0.249988,0,0);}
.me_c00492{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);}
.m94_c00492{transform:matrix(0.186446,-0.001864,0.002500,0.249988,0,0);-ms-transform:matrix(0.186446,-0.001864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186446,-0.001864,0.002500,0.249988,0,0);}
.m9d_c00492{transform:matrix(0.187676,-0.001877,0.002500,0.249988,0,0);-ms-transform:matrix(0.187676,-0.001877,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187676,-0.001877,0.002500,0.249988,0,0);}
.mee_c00492{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);}
.m9b_c00492{transform:matrix(0.188881,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188881,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188881,-0.001889,0.002500,0.249988,0,0);}
.m38_c00492{transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188906,-0.001889,0.002500,0.249988,0,0);}
.m5f_c00492{transform:matrix(0.189181,-0.001892,0.002500,0.249988,0,0);-ms-transform:matrix(0.189181,-0.001892,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189181,-0.001892,0.002500,0.249988,0,0);}
.m76_c00492{transform:matrix(0.189426,-0.001894,0.002500,0.249988,0,0);-ms-transform:matrix(0.189426,-0.001894,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189426,-0.001894,0.002500,0.249988,0,0);}
.m15_c00492{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);}
.m3_c00492{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);}
.m102_c00492{transform:matrix(0.190887,-0.003245,0.004249,0.249964,0,0);-ms-transform:matrix(0.190887,-0.003245,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190887,-0.003245,0.004249,0.249964,0,0);}
.m43_c00492{transform:matrix(0.190895,-0.001909,0.002500,0.249988,0,0);-ms-transform:matrix(0.190895,-0.001909,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190895,-0.001909,0.002500,0.249988,0,0);}
.ma1_c00492{transform:matrix(0.190920,-0.001909,0.002500,0.249988,0,0);-ms-transform:matrix(0.190920,-0.001909,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190920,-0.001909,0.002500,0.249988,0,0);}
.mc4_c00492{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);}
.m79_c00492{transform:matrix(0.191320,-0.001913,0.002500,0.249988,0,0);-ms-transform:matrix(0.191320,-0.001913,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191320,-0.001913,0.002500,0.249988,0,0);}
.m84_c00492{transform:matrix(0.191590,-0.001916,0.002500,0.249988,0,0);-ms-transform:matrix(0.191590,-0.001916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191590,-0.001916,0.002500,0.249988,0,0);}
.m31_c00492{transform:matrix(0.191600,-0.001916,0.002500,0.249988,0,0);-ms-transform:matrix(0.191600,-0.001916,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191600,-0.001916,0.002500,0.249988,0,0);}
.m5_c00492{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);}
.m14_c00492{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);}
.m2e_c00492{transform:matrix(0.192300,-0.001923,0.002500,0.249988,0,0);-ms-transform:matrix(0.192300,-0.001923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192300,-0.001923,0.002500,0.249988,0,0);}
.m58_c00492{transform:matrix(0.192450,-0.001925,0.002500,0.249988,0,0);-ms-transform:matrix(0.192450,-0.001925,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192450,-0.001925,0.002500,0.249988,0,0);}
.m7d_c00492{transform:matrix(0.192675,-0.001927,0.002500,0.249988,0,0);-ms-transform:matrix(0.192675,-0.001927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192675,-0.001927,0.002500,0.249988,0,0);}
.mc9_c00492{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);}
.m1c_c00492{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);}
.m106_c00492{transform:matrix(0.194067,-0.003299,0.004249,0.249964,0,0);-ms-transform:matrix(0.194067,-0.003299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194067,-0.003299,0.004249,0.249964,0,0);}
.ma9_c00492{transform:matrix(0.194080,-0.001941,0.002500,0.249988,0,0);-ms-transform:matrix(0.194080,-0.001941,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194080,-0.001941,0.002500,0.249988,0,0);}
.m23_c00492{transform:matrix(0.194195,-0.001942,0.002500,0.249988,0,0);-ms-transform:matrix(0.194195,-0.001942,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194195,-0.001942,0.002500,0.249988,0,0);}
.m6b_c00492{transform:matrix(0.194295,-0.001943,0.002500,0.249988,0,0);-ms-transform:matrix(0.194295,-0.001943,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194295,-0.001943,0.002500,0.249988,0,0);}
.m108_c00492{transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);-ms-transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195407,-0.003322,0.004249,0.249964,0,0);}
.m8b_c00492{transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);-ms-transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196310,-0.001963,0.002500,0.249988,0,0);}
.m105_c00492{transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);}
.m4e_c00492{transform:matrix(0.197730,-0.001977,0.002500,0.249988,0,0);-ms-transform:matrix(0.197730,-0.001977,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197730,-0.001977,0.002500,0.249988,0,0);}
.m2a_c00492{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);}
.mda_c00492{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.197875,-0.001979,0.002500,0.249988,0,0);-ms-transform:matrix(0.197875,-0.001979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197875,-0.001979,0.002500,0.249988,0,0);}
.m26_c00492{transform:matrix(0.198520,-0.001985,0.002500,0.249988,0,0);-ms-transform:matrix(0.198520,-0.001985,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198520,-0.001985,0.002500,0.249988,0,0);}
.mfb_c00492{transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);-ms-transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199116,-0.003385,0.004249,0.249964,0,0);}
.mb0_c00492{transform:matrix(0.199220,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199220,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199220,-0.001992,0.002500,0.249988,0,0);}
.mf6_c00492{transform:matrix(0.199956,-0.003399,0.004249,0.249964,0,0);-ms-transform:matrix(0.199956,-0.003399,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199956,-0.003399,0.004249,0.249964,0,0);}
.m78_c00492{transform:matrix(0.200065,-0.002001,0.002500,0.249988,0,0);-ms-transform:matrix(0.200065,-0.002001,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200065,-0.002001,0.002500,0.249988,0,0);}
.ma3_c00492{transform:matrix(0.200095,-0.002001,0.002500,0.249988,0,0);-ms-transform:matrix(0.200095,-0.002001,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200095,-0.002001,0.002500,0.249988,0,0);}
.m7f_c00492{transform:matrix(0.200895,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200895,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200895,-0.002009,0.002500,0.249988,0,0);}
.m45_c00492{transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);-ms-transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200930,-0.002009,0.002500,0.249988,0,0);}
.mf1_c00492{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);}
.m7e_c00492{transform:matrix(0.202160,-0.002022,0.002500,0.249988,0,0);-ms-transform:matrix(0.202160,-0.002022,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202160,-0.002022,0.002500,0.249988,0,0);}
.m82_c00492{transform:matrix(0.202190,-0.002022,0.002500,0.249988,0,0);-ms-transform:matrix(0.202190,-0.002022,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202190,-0.002022,0.002500,0.249988,0,0);}
.m109_c00492{transform:matrix(0.202621,-0.003445,0.004249,0.249964,0,0);-ms-transform:matrix(0.202621,-0.003445,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202621,-0.003445,0.004249,0.249964,0,0);}
.m86_c00492{transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-ms-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202895,-0.002029,0.002500,0.249988,0,0);}
.m5b_c00492{transform:matrix(0.202940,-0.002029,0.002500,0.249988,0,0);-ms-transform:matrix(0.202940,-0.002029,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202940,-0.002029,0.002500,0.249988,0,0);}
.mc1_c00492{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);}
.mfc_c00492{transform:matrix(0.203466,-0.003459,0.004249,0.249964,0,0);-ms-transform:matrix(0.203466,-0.003459,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203466,-0.003459,0.004249,0.249964,0,0);}
.m41_c00492{transform:matrix(0.203665,-0.002037,0.002500,0.249988,0,0);-ms-transform:matrix(0.203665,-0.002037,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203665,-0.002037,0.002500,0.249988,0,0);}
.m87_c00492{transform:matrix(0.204280,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204280,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204280,-0.002043,0.002500,0.249988,0,0);}
.mcf_c00492{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);}
.mc5_c00492{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);}
.m2_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);}
.m101_c00492{transform:matrix(0.205715,-0.003497,0.004249,0.249964,0,0);-ms-transform:matrix(0.205715,-0.003497,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205715,-0.003497,0.004249,0.249964,0,0);}
.m4f_c00492{transform:matrix(0.206080,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206080,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206080,-0.002061,0.002500,0.249988,0,0);}
.m6e_c00492{transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206120,-0.002061,0.002500,0.249988,0,0);}
.m6_c00492{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);}
.m9a_c00492{transform:matrix(0.207310,-0.002073,0.002500,0.249988,0,0);-ms-transform:matrix(0.207310,-0.002073,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207310,-0.002073,0.002500,0.249988,0,0);}
.m21_c00492{transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207630,-0.002076,0.002500,0.249988,0,0);}
.m98_c00492{transform:matrix(0.207900,-0.002079,0.002500,0.249988,0,0);-ms-transform:matrix(0.207900,-0.002079,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207900,-0.002079,0.002500,0.249988,0,0);}
.mcb_c00492{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);}
.me7_c00492{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);}
.md2_c00492{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);}
.m64_c00492{transform:matrix(0.210369,-0.002104,0.002500,0.249988,0,0);-ms-transform:matrix(0.210369,-0.002104,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210369,-0.002104,0.002500,0.249988,0,0);}
.m2f_c00492{transform:matrix(0.210389,-0.002104,0.002500,0.249988,0,0);-ms-transform:matrix(0.210389,-0.002104,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210389,-0.002104,0.002500,0.249988,0,0);}
.mab_c00492{transform:matrix(0.211419,-0.002114,0.002500,0.249988,0,0);-ms-transform:matrix(0.211419,-0.002114,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211419,-0.002114,0.002500,0.249988,0,0);}
.m80_c00492{transform:matrix(0.211484,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211484,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211484,-0.002115,0.002500,0.249988,0,0);}
.m7b_c00492{transform:matrix(0.211534,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211534,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211534,-0.002115,0.002500,0.249988,0,0);}
.mbf_c00492{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);}
.m6c_c00492{transform:matrix(0.212419,-0.002124,0.002500,0.249988,0,0);-ms-transform:matrix(0.212419,-0.002124,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212419,-0.002124,0.002500,0.249988,0,0);}
.me9_c00492{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);}
.mcc_c00492{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);}
.m3d_c00492{transform:matrix(0.213589,-0.002136,0.002500,0.249988,0,0);-ms-transform:matrix(0.213589,-0.002136,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213589,-0.002136,0.002500,0.249988,0,0);}
.md_c00492{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);}
.m50_c00492{transform:matrix(0.215364,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215364,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215364,-0.002154,0.002500,0.249988,0,0);}
.m62_c00492{transform:matrix(0.215409,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215409,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215409,-0.002154,0.002500,0.249988,0,0);}
.mfe_c00492{transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-ms-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216554,-0.003681,0.004249,0.249964,0,0);}
.mf7_c00492{transform:matrix(0.217739,-0.003702,0.004249,0.249964,0,0);-ms-transform:matrix(0.217739,-0.003702,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217739,-0.003702,0.004249,0.249964,0,0);}
.m22_c00492{transform:matrix(0.218619,-0.002186,0.002500,0.249988,0,0);-ms-transform:matrix(0.218619,-0.002186,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218619,-0.002186,0.002500,0.249988,0,0);}
.mcd_c00492{transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);}
.m104_c00492{transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);-ms-transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219638,-0.003734,0.004249,0.249964,0,0);}
.mc3_c00492{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);}
.md8_c00492{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);}
.m93_c00492{transform:matrix(0.220584,-0.002206,0.002500,0.249988,0,0);-ms-transform:matrix(0.220584,-0.002206,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220584,-0.002206,0.002500,0.249988,0,0);}
.m67_c00492{transform:matrix(0.220989,-0.002210,0.002500,0.249988,0,0);-ms-transform:matrix(0.220989,-0.002210,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220989,-0.002210,0.002500,0.249988,0,0);}
.mef_c00492{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);}
.m66_c00492{transform:matrix(0.222234,-0.002222,0.002500,0.249988,0,0);-ms-transform:matrix(0.222234,-0.002222,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222234,-0.002222,0.002500,0.249988,0,0);}
.m2b_c00492{transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);-ms-transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222829,-0.002228,0.002500,0.249988,0,0);}
.m10_c00492{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);}
.ma5_c00492{transform:matrix(0.223164,-0.002232,0.002500,0.249988,0,0);-ms-transform:matrix(0.223164,-0.002232,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223164,-0.002232,0.002500,0.249988,0,0);}
.m20_c00492{transform:matrix(0.223379,-0.002234,0.002500,0.249988,0,0);-ms-transform:matrix(0.223379,-0.002234,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223379,-0.002234,0.002500,0.249988,0,0);}
.mb_c00492{transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.225834,-0.002258,0.002500,0.249988,0,0);-ms-transform:matrix(0.225834,-0.002258,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225834,-0.002258,0.002500,0.249988,0,0);}
.m7a_c00492{transform:matrix(0.227439,-0.002274,0.002500,0.249988,0,0);-ms-transform:matrix(0.227439,-0.002274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227439,-0.002274,0.002500,0.249988,0,0);}
.mbd_c00492{transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227665,0.000000,0.000000,0.250000,0,0);}
.me6_c00492{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);}
.m88_c00492{transform:matrix(0.228469,-0.002285,0.002500,0.249988,0,0);-ms-transform:matrix(0.228469,-0.002285,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228469,-0.002285,0.002500,0.249988,0,0);}
.m48_c00492{transform:matrix(0.228589,-0.002286,0.002500,0.249988,0,0);-ms-transform:matrix(0.228589,-0.002286,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228589,-0.002286,0.002500,0.249988,0,0);}
.mb2_c00492{transform:matrix(0.229089,-0.002291,0.002500,0.249988,0,0);-ms-transform:matrix(0.229089,-0.002291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229089,-0.002291,0.002500,0.249988,0,0);}
.m44_c00492{transform:matrix(0.229869,-0.002299,0.002500,0.249988,0,0);-ms-transform:matrix(0.229869,-0.002299,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229869,-0.002299,0.002500,0.249988,0,0);}
.m6f_c00492{transform:matrix(0.230383,-0.002304,0.002500,0.249988,0,0);-ms-transform:matrix(0.230383,-0.002304,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230383,-0.002304,0.002500,0.249988,0,0);}
.mc6_c00492{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.mce_c00492{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);}
.m4_c00492{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);}
.m1_c00492{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);}
.m2d_c00492{transform:matrix(0.232308,-0.002323,0.002500,0.249988,0,0);-ms-transform:matrix(0.232308,-0.002323,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232308,-0.002323,0.002500,0.249988,0,0);}
.m1e_c00492{transform:matrix(0.233493,-0.002335,0.002500,0.249988,0,0);-ms-transform:matrix(0.233493,-0.002335,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233493,-0.002335,0.002500,0.249988,0,0);}
.m24_c00492{transform:matrix(0.234178,-0.002342,0.002500,0.249988,0,0);-ms-transform:matrix(0.234178,-0.002342,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234178,-0.002342,0.002500,0.249988,0,0);}
.m47_c00492{transform:matrix(0.234698,-0.002347,0.002500,0.249988,0,0);-ms-transform:matrix(0.234698,-0.002347,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234698,-0.002347,0.002500,0.249988,0,0);}
.ma_c00492{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);}
.m8f_c00492{transform:matrix(0.236493,-0.002365,0.002500,0.249988,0,0);-ms-transform:matrix(0.236493,-0.002365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236493,-0.002365,0.002500,0.249988,0,0);}
.ma8_c00492{transform:matrix(0.237983,-0.002380,0.002500,0.249988,0,0);-ms-transform:matrix(0.237983,-0.002380,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237983,-0.002380,0.002500,0.249988,0,0);}
.m69_c00492{transform:matrix(0.238773,-0.002388,0.002500,0.249988,0,0);-ms-transform:matrix(0.238773,-0.002388,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238773,-0.002388,0.002500,0.249988,0,0);}
.mc_c00492{transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.240538,-0.002405,0.002500,0.249988,0,0);-ms-transform:matrix(0.240538,-0.002405,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240538,-0.002405,0.002500,0.249988,0,0);}
.m70_c00492{transform:matrix(0.241028,-0.002410,0.002500,0.249988,0,0);-ms-transform:matrix(0.241028,-0.002410,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241028,-0.002410,0.002500,0.249988,0,0);}
.mfd_c00492{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);}
.mb5_c00492{transform:matrix(0.242468,-0.002425,0.002500,0.249988,0,0);-ms-transform:matrix(0.242468,-0.002425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242468,-0.002425,0.002500,0.249988,0,0);}
.m7c_c00492{transform:matrix(0.248198,-0.002482,0.002500,0.249988,0,0);-ms-transform:matrix(0.248198,-0.002482,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248198,-0.002482,0.002500,0.249988,0,0);}
.m68_c00492{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);}
.m0_c00492{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.mb6_c00492{transform:matrix(0.252117,-0.002521,0.002500,0.249988,0,0);-ms-transform:matrix(0.252117,-0.002521,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252117,-0.002521,0.002500,0.249988,0,0);}
.m19_c00492{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);}
.m63_c00492{transform:matrix(0.260052,-0.002601,0.002500,0.249988,0,0);-ms-transform:matrix(0.260052,-0.002601,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260052,-0.002601,0.002500,0.249988,0,0);}
.med_c00492{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);}
.m1d_c00492{transform:matrix(0.260192,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260192,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260192,-0.002602,0.002500,0.249988,0,0);}
.m73_c00492{transform:matrix(0.261252,-0.002613,0.002500,0.249988,0,0);-ms-transform:matrix(0.261252,-0.002613,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261252,-0.002613,0.002500,0.249988,0,0);}
.m42_c00492{transform:matrix(0.263267,-0.002633,0.002500,0.249988,0,0);-ms-transform:matrix(0.263267,-0.002633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263267,-0.002633,0.002500,0.249988,0,0);}
.m107_c00492{transform:matrix(0.264682,-0.004500,0.004249,0.249964,0,0);-ms-transform:matrix(0.264682,-0.004500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264682,-0.004500,0.004249,0.249964,0,0);}
.mac_c00492{transform:matrix(0.266522,-0.002665,0.002500,0.249988,0,0);-ms-transform:matrix(0.266522,-0.002665,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266522,-0.002665,0.002500,0.249988,0,0);}
.mdd_c00492{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.mae_c00492{transform:matrix(0.279196,-0.002792,0.002500,0.249988,0,0);-ms-transform:matrix(0.279196,-0.002792,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279196,-0.002792,0.002500,0.249988,0,0);}
.mfa_c00492{transform:matrix(0.289023,-0.004913,0.004249,0.249964,0,0);-ms-transform:matrix(0.289023,-0.004913,0.004249,0.249964,0,0);-webkit-transform:matrix(0.289023,-0.004913,0.004249,0.249964,0,0);}
.mc7_c00492{transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296160,0.000000,0.000000,0.250000,0,0);}
.mb4_c00492{transform:matrix(0.299590,-0.002996,0.002500,0.249988,0,0);-ms-transform:matrix(0.299590,-0.002996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299590,-0.002996,0.002500,0.249988,0,0);}
.m103_c00492{transform:matrix(0.303801,-0.005165,0.004249,0.249964,0,0);-ms-transform:matrix(0.303801,-0.005165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303801,-0.005165,0.004249,0.249964,0,0);}
.m1b_c00492{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);}
.mb3_c00492{transform:matrix(0.315584,-0.003156,0.002500,0.249988,0,0);-ms-transform:matrix(0.315584,-0.003156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.315584,-0.003156,0.002500,0.249988,0,0);}
.m65_c00492{transform:matrix(0.325109,-0.003251,0.002500,0.249988,0,0);-ms-transform:matrix(0.325109,-0.003251,0.002500,0.249988,0,0);-webkit-transform:matrix(0.325109,-0.003251,0.002500,0.249988,0,0);}
.m72_c00492{transform:matrix(0.332733,-0.003327,0.002500,0.249988,0,0);-ms-transform:matrix(0.332733,-0.003327,0.002500,0.249988,0,0);-webkit-transform:matrix(0.332733,-0.003327,0.002500,0.249988,0,0);}
.mb1_c00492{transform:matrix(0.335323,-0.003353,0.002500,0.249988,0,0);-ms-transform:matrix(0.335323,-0.003353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335323,-0.003353,0.002500,0.249988,0,0);}
.mde_c00492{transform:matrix(0.347660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347660,0.000000,0.000000,0.250000,0,0);}
.mff_c00492{transform:matrix(0.354479,-0.006026,0.004249,0.249964,0,0);-ms-transform:matrix(0.354479,-0.006026,0.004249,0.249964,0,0);-webkit-transform:matrix(0.354479,-0.006026,0.004249,0.249964,0,0);}
.me1_c00492{transform:matrix(0.364125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364125,0.000000,0.000000,0.250000,0,0);}
.me2_c00492{transform:matrix(0.377530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377530,0.000000,0.000000,0.250000,0,0);}
.meb_c00492{transform:matrix(0.390325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390325,0.000000,0.000000,0.250000,0,0);}
.mf8_c00492{transform:matrix(0.391043,-0.006648,0.004249,0.249964,0,0);-ms-transform:matrix(0.391043,-0.006648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.391043,-0.006648,0.004249,0.249964,0,0);}
.me5_c00492{transform:matrix(0.402630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402630,0.000000,0.000000,0.250000,0,0);}
.me3_c00492{transform:matrix(0.433300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00492{transform:matrix(0.449493,-0.004495,0.002500,0.249988,0,0);-ms-transform:matrix(0.449493,-0.004495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.449493,-0.004495,0.002500,0.249988,0,0);}
.mec_c00492{transform:matrix(0.494710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494710,0.000000,0.000000,0.250000,0,0);}
.me0_c00492{transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522055,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.663890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663890,0.000000,0.000000,0.250000,0,0);}
.mf2_c00492{transform:matrix(0.689225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689225,0.000000,0.000000,0.250000,0,0);}
.me4_c00492{transform:matrix(0.703870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703870,0.000000,0.000000,0.250000,0,0);}
.mf9_c00492{transform:matrix(0.711927,-0.012103,0.004249,0.249964,0,0);-ms-transform:matrix(0.711927,-0.012103,0.004249,0.249964,0,0);-webkit-transform:matrix(0.711927,-0.012103,0.004249,0.249964,0,0);}
.m18_c00492{transform:matrix(0.826290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.826290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.826290,0.000000,0.000000,0.250000,0,0);}
.mad_c00492{transform:matrix(0.852232,-0.008522,0.002500,0.249988,0,0);-ms-transform:matrix(0.852232,-0.008522,0.002500,0.249988,0,0);-webkit-transform:matrix(0.852232,-0.008522,0.002500,0.249988,0,0);}
.m7_c00492{transform:matrix(0.901535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.901535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.901535,0.000000,0.000000,0.250000,0,0);}
.mf3_c00492{transform:matrix(1.438460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.438460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.438460,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;}
.fs4_c00492{font-size:23.100000px;}
.fs1_c00492{font-size:45.150000px;}
.fs0_c00492{font-size:46.200000px;}
.fs13_c00492{font-size:52.500000px;}
.fs14_c00492{font-size:53.550000px;}
.fs18_c00492{font-size:55.658041px;}
.fs2_c00492{font-size:57.750000px;}
.fs17_c00492{font-size:59.858648px;}
.fs16_c00492{font-size:60.908799px;}
.fsb_c00492{font-size:61.953097px;}
.fs10_c00492{font-size:66.150000px;}
.fse_c00492{font-size:68.253412px;}
.fs5_c00492{font-size:69.303465px;}
.fsd_c00492{font-size:71.403570px;}
.fs11_c00492{font-size:72.450000px;}
.fs6_c00492{font-size:72.453622px;}
.fsf_c00492{font-size:73.500000px;}
.fs7_c00492{font-size:73.503675px;}
.fs8_c00492{font-size:74.553727px;}
.fsc_c00492{font-size:75.603780px;}
.fs12_c00492{font-size:79.800000px;}
.fsa_c00492{font-size:79.803990px;}
.fs9_c00492{font-size:80.854042px;}
.fs3_c00492{font-size:96.600000px;}
.fs15_c00492{font-size:99.750000px;}
.y0_c00492{bottom:0.000000px;}
.y4_c00492{bottom:151.830000px;}
.yac_c00492{bottom:154.438500px;}
.yab_c00492{bottom:170.541000px;}
.ybd_c00492{bottom:170.906921px;}
.ybe_c00492{bottom:171.161205px;}
.ybf_c00492{bottom:171.339966px;}
.yc0_c00492{bottom:172.492961px;}
.yc1_c00492{bottom:173.076305px;}
.yc2_c00492{bottom:173.357802px;}
.yc3_c00492{bottom:173.889015px;}
.y3_c00492{bottom:187.669500px;}
.yb6_c00492{bottom:188.460951px;}
.yb7_c00492{bottom:189.934290px;}
.yb8_c00492{bottom:190.343055px;}
.yb9_c00492{bottom:190.852775px;}
.yba_c00492{bottom:190.898598px;}
.ybb_c00492{bottom:191.302238px;}
.ybc_c00492{bottom:191.601327px;}
.yaa_c00492{bottom:206.064000px;}
.yae_c00492{bottom:206.821500px;}
.yaf_c00492{bottom:206.964632px;}
.yb0_c00492{bottom:207.488198px;}
.yb1_c00492{bottom:208.569041px;}
.yb2_c00492{bottom:209.216996px;}
.yb3_c00492{bottom:209.603193px;}
.yb4_c00492{bottom:210.138897px;}
.yb5_c00492{bottom:210.413864px;}
.y2_c00492{bottom:223.689000px;}
.y1_c00492{bottom:242.224500px;}
.ya9_c00492{bottom:300.240000px;}
.ya8_c00492{bottom:322.821000px;}
.ya7_c00492{bottom:345.730500px;}
.ya6_c00492{bottom:368.229000px;}
.ya5_c00492{bottom:389.468310px;}
.ya3_c00492{bottom:412.200375px;}
.ya2_c00492{bottom:412.200405px;}
.ya1_c00492{bottom:412.200720px;}
.ya0_c00492{bottom:412.200735px;}
.ya4_c00492{bottom:412.200855px;}
.y9f_c00492{bottom:412.201365px;}
.y9a_c00492{bottom:434.476995px;}
.y96_c00492{bottom:434.477385px;}
.y9b_c00492{bottom:434.477565px;}
.y99_c00492{bottom:434.477610px;}
.y9c_c00492{bottom:434.477850px;}
.y97_c00492{bottom:434.477970px;}
.y9d_c00492{bottom:434.478135px;}
.y98_c00492{bottom:434.478225px;}
.y9e_c00492{bottom:434.478420px;}
.y94_c00492{bottom:478.496760px;}
.y95_c00492{bottom:478.497045px;}
.y93_c00492{bottom:478.497390px;}
.y92_c00492{bottom:478.497705px;}
.y91_c00492{bottom:478.497750px;}
.y8d_c00492{bottom:478.498110px;}
.y90_c00492{bottom:478.498365px;}
.y8f_c00492{bottom:478.498380px;}
.y8e_c00492{bottom:478.498680px;}
.y87_c00492{bottom:502.058250px;}
.y86_c00492{bottom:502.058565px;}
.y8a_c00492{bottom:502.058775px;}
.y88_c00492{bottom:502.058820px;}
.y85_c00492{bottom:502.058880px;}
.y8b_c00492{bottom:502.059045px;}
.y8c_c00492{bottom:502.059300px;}
.y89_c00492{bottom:502.059405px;}
.y84_c00492{bottom:524.564595px;}
.y83_c00492{bottom:524.565210px;}
.y82_c00492{bottom:524.565225px;}
.y81_c00492{bottom:524.565855px;}
.y7f_c00492{bottom:524.565885px;}
.y80_c00492{bottom:524.566170px;}
.y7e_c00492{bottom:524.566515px;}
.y7d_c00492{bottom:524.566530px;}
.y7a_c00492{bottom:547.515660px;}
.y7b_c00492{bottom:547.515945px;}
.y77_c00492{bottom:547.516020px;}
.y79_c00492{bottom:547.516275px;}
.y76_c00492{bottom:547.516335px;}
.y75_c00492{bottom:547.516365px;}
.y74_c00492{bottom:547.516410px;}
.y72_c00492{bottom:547.516440px;}
.y7c_c00492{bottom:547.516530px;}
.y78_c00492{bottom:547.516605px;}
.y73_c00492{bottom:547.516725px;}
.y71_c00492{bottom:569.763480px;}
.y70_c00492{bottom:569.764110px;}
.y6f_c00492{bottom:569.764740px;}
.y6d_c00492{bottom:569.764770px;}
.y69_c00492{bottom:569.764875px;}
.y6e_c00492{bottom:569.765055px;}
.y6c_c00492{bottom:569.765115px;}
.y6b_c00492{bottom:569.765430px;}
.y6a_c00492{bottom:569.765460px;}
.y60_c00492{bottom:592.815570px;}
.y62_c00492{bottom:592.815825px;}
.y61_c00492{bottom:592.815840px;}
.y5f_c00492{bottom:592.816185px;}
.y63_c00492{bottom:592.816410px;}
.y5e_c00492{bottom:592.816785px;}
.y64_c00492{bottom:592.816995px;}
.y65_c00492{bottom:592.817280px;}
.y66_c00492{bottom:592.817850px;}
.y67_c00492{bottom:592.818135px;}
.y68_c00492{bottom:592.818720px;}
.y55_c00492{bottom:613.973985px;}
.y56_c00492{bottom:614.360925px;}
.y57_c00492{bottom:615.018255px;}
.y58_c00492{bottom:615.668985px;}
.y59_c00492{bottom:616.068480px;}
.y5a_c00492{bottom:616.763310px;}
.y5b_c00492{bottom:617.163825px;}
.y5c_c00492{bottom:617.661315px;}
.y5d_c00492{bottom:619.324590px;}
.y4c_c00492{bottom:636.384120px;}
.y4d_c00492{bottom:637.142790px;}
.y4e_c00492{bottom:638.027340px;}
.y4f_c00492{bottom:638.451780px;}
.y50_c00492{bottom:639.336285px;}
.y51_c00492{bottom:639.986835px;}
.y52_c00492{bottom:640.364865px;}
.y53_c00492{bottom:640.651485px;}
.y54_c00492{bottom:642.236985px;}
.y49_c00492{bottom:660.374070px;}
.y48_c00492{bottom:660.374385px;}
.y4a_c00492{bottom:660.374655px;}
.y47_c00492{bottom:660.374700px;}
.y4b_c00492{bottom:660.374940px;}
.y45_c00492{bottom:660.375045px;}
.y46_c00492{bottom:660.375315px;}
.y44_c00492{bottom:660.375360px;}
.y42_c00492{bottom:660.375390px;}
.y43_c00492{bottom:660.375675px;}
.y41_c00492{bottom:683.302635px;}
.y40_c00492{bottom:683.302950px;}
.y3c_c00492{bottom:683.303010px;}
.y3d_c00492{bottom:683.303295px;}
.y3f_c00492{bottom:683.303565px;}
.y3b_c00492{bottom:683.303625px;}
.y39_c00492{bottom:683.303670px;}
.y3e_c00492{bottom:683.303880px;}
.y3a_c00492{bottom:683.303940px;}
.y38_c00492{bottom:683.304285px;}
.y31_c00492{bottom:706.544010px;}
.y32_c00492{bottom:706.544295px;}
.y33_c00492{bottom:706.544865px;}
.y35_c00492{bottom:706.545420px;}
.y34_c00492{bottom:706.545450px;}
.y36_c00492{bottom:706.545705px;}
.y37_c00492{bottom:706.546275px;}
.y2b_c00492{bottom:729.003360px;}
.y2f_c00492{bottom:729.003840px;}
.y2d_c00492{bottom:729.003885px;}
.y2c_c00492{bottom:729.003915px;}
.y30_c00492{bottom:729.004125px;}
.y2e_c00492{bottom:729.004455px;}
.y22_c00492{bottom:749.248890px;}
.y23_c00492{bottom:749.556105px;}
.y24_c00492{bottom:749.837910px;}
.y25_c00492{bottom:750.107055px;}
.y26_c00492{bottom:750.650715px;}
.y27_c00492{bottom:750.957705px;}
.y28_c00492{bottom:751.411260px;}
.y29_c00492{bottom:751.832805px;}
.y2a_c00492{bottom:752.276205px;}
.y19_c00492{bottom:772.470045px;}
.y1a_c00492{bottom:772.712685px;}
.y1b_c00492{bottom:772.956165px;}
.y1c_c00492{bottom:773.523225px;}
.y1d_c00492{bottom:773.712165px;}
.y1e_c00492{bottom:774.168120px;}
.y1f_c00492{bottom:774.411135px;}
.y20_c00492{bottom:774.630360px;}
.y21_c00492{bottom:775.054245px;}
.y10_c00492{bottom:795.691035px;}
.y11_c00492{bottom:796.132725px;}
.y12_c00492{bottom:796.476225px;}
.y13_c00492{bottom:796.692540px;}
.y14_c00492{bottom:797.231715px;}
.y15_c00492{bottom:797.829870px;}
.y16_c00492{bottom:798.085320px;}
.y17_c00492{bottom:798.384750px;}
.y18_c00492{bottom:798.621945px;}
.y7_c00492{bottom:818.626500px;}
.y8_c00492{bottom:819.217980px;}
.y9_c00492{bottom:819.436455px;}
.ya_c00492{bottom:819.735135px;}
.yb_c00492{bottom:820.063035px;}
.yc_c00492{bottom:820.680255px;}
.yd_c00492{bottom:820.919160px;}
.ye_c00492{bottom:821.607225px;}
.yf_c00492{bottom:822.178110px;}
.y6_c00492{bottom:853.740000px;}
.y5_c00492{bottom:863.827500px;}
.yad_c00492{bottom:907.891500px;}
.h6_c00492{height:23.100000px;}
.h3_c00492{height:45.150000px;}
.h2_c00492{height:46.200000px;}
.h15_c00492{height:52.500000px;}
.h16_c00492{height:53.550000px;}
.h1a_c00492{height:55.658041px;}
.h4_c00492{height:57.750000px;}
.h19_c00492{height:59.858648px;}
.h18_c00492{height:60.908799px;}
.hd_c00492{height:61.953097px;}
.h12_c00492{height:66.150000px;}
.h10_c00492{height:68.253412px;}
.h7_c00492{height:69.303465px;}
.hf_c00492{height:71.403570px;}
.h13_c00492{height:72.450000px;}
.h8_c00492{height:72.453622px;}
.h11_c00492{height:73.500000px;}
.h9_c00492{height:73.503675px;}
.ha_c00492{height:74.553727px;}
.he_c00492{height:75.603780px;}
.h14_c00492{height:79.800000px;}
.hc_c00492{height:79.803990px;}
.hb_c00492{height:80.854042px;}
.h5_c00492{height:96.600000px;}
.h17_c00492{height:99.750000px;}
.h1_c00492{height:1005.000000px;}
.h0_c00492{height:1005.150000px;}
.w0_c00492{width:715.200000px;}
.w1_c00492{width:715.500000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:107.730000px;}
.xd_c00492{left:109.080000px;}
.x88_c00492{left:112.320000px;}
.x16_c00492{left:115.290000px;}
.x7d_c00492{left:122.310000px;}
.x51_c00492{left:126.093960px;}
.xa_c00492{left:135.810000px;}
.x35_c00492{left:136.890810px;}
.x48_c00492{left:137.943015px;}
.x63_c00492{left:139.052190px;}
.x2_c00492{left:141.210000px;}
.x7e_c00492{left:142.560000px;}
.xe_c00492{left:145.260000px;}
.x2a_c00492{left:159.938565px;}
.x1b_c00492{left:162.270000px;}
.x3a_c00492{left:164.161605px;}
.x57_c00492{left:165.245865px;}
.x3_c00492{left:166.320000px;}
.x5c_c00492{left:167.945100px;}
.x90_c00492{left:169.560000px;}
.x64_c00492{left:171.453930px;}
.xb_c00492{left:172.530000px;}
.x49_c00492{left:180.056640px;}
.xf_c00492{left:183.870000px;}
.x22_c00492{left:185.860980px;}
.x6d_c00492{left:187.382655px;}
.xc_c00492{left:190.350000px;}
.x10_c00492{left:193.050000px;}
.x1c_c00492{left:194.356500px;}
.x74_c00492{left:195.751905px;}
.x6e_c00492{left:197.103630px;}
.x86_c00492{left:198.990000px;}
.x8c_c00492{left:200.610000px;}
.x6a_c00492{left:203.855730px;}
.x5d_c00492{left:206.017410px;}
.x31_c00492{left:207.806385px;}
.x89_c00492{left:210.600000px;}
.x4d_c00492{left:212.727630px;}
.x75_c00492{left:214.652295px;}
.x4_c00492{left:216.000000px;}
.x52_c00492{left:220.058865px;}
.x8a_c00492{left:221.130000px;}
.x45_c00492{left:222.754110px;}
.x23_c00492{left:223.961355px;}
.x11_c00492{left:226.260000px;}
.x36_c00492{left:228.155430px;}
.x4a_c00492{left:229.207710px;}
.x3e_c00492{left:230.315100px;}
.x65_c00492{left:236.797470px;}
.x58_c00492{left:238.418685px;}
.x2b_c00492{left:240.992565px;}
.x5_c00492{left:243.810000px;}
.x12_c00492{left:245.160000px;}
.x24_c00492{left:247.993095px;}
.x3b_c00492{left:249.485625px;}
.x3f_c00492{left:250.835655px;}
.x32_c00492{left:253.171485px;}
.x8b_c00492{left:256.230000px;}
.x76_c00492{left:258.125145px;}
.x2c_c00492{left:259.886565px;}
.x6_c00492{left:261.900000px;}
.x17_c00492{left:264.060000px;}
.x7f_c00492{left:266.490000px;}
.x66_c00492{left:268.929180px;}
.x13_c00492{left:274.320000px;}
.x40_c00492{left:275.676645px;}
.x1d_c00492{left:278.862000px;}
.x53_c00492{left:281.622015px;}
.x8d_c00492{left:282.690000px;}
.x5e_c00492{left:284.320740px;}
.x4e_c00492{left:287.747130px;}
.x7_c00492{left:289.980000px;}
.x14_c00492{left:297.810000px;}
.x8_c00492{left:300.780000px;}
.x4b_c00492{left:301.896390px;}
.x41_c00492{left:303.757950px;}
.x2d_c00492{left:305.482065px;}
.x25_c00492{left:307.911195px;}
.x77_c00492{left:310.777410px;}
.x67_c00492{left:312.402030px;}
.x33_c00492{left:316.624725px;}
.x84_c00492{left:319.950000px;}
.x54_c00492{left:322.934640px;}
.x80_c00492{left:327.510000px;}
.x2e_c00492{left:329.783565px;}
.x5f_c00492{left:332.922600px;}
.x42_c00492{left:335.619630px;}
.x3c_c00492{left:336.969870px;}
.x37_c00492{left:338.320440px;}
.x1e_c00492{left:340.584000px;}
.x87_c00492{left:344.520000px;}
.x9_c00492{left:347.760000px;}
.x15_c00492{left:349.110000px;}
.x2f_c00492{left:351.706065px;}
.x79_c00492{left:355.860000px;}
.x6f_c00492{left:357.220650px;}
.x4c_c00492{left:358.999815px;}
.x68_c00492{left:360.193815px;}
.x85_c00492{left:363.150000px;}
.x1f_c00492{left:364.474500px;}
.x4f_c00492{left:366.078510px;}
.x26_c00492{left:374.327355px;}
.x81_c00492{left:375.570000px;}
.x46_c00492{left:377.472090px;}
.x38_c00492{left:380.713185px;}
.x71_c00492{left:383.680950px;}
.x59_c00492{left:385.845930px;}
.x34_c00492{left:388.717785px;}
.x6b_c00492{left:390.703905px;}
.x30_c00492{left:394.094565px;}
.x18_c00492{left:398.520000px;}
.x43_c00492{left:401.233200px;}
.x27_c00492{left:402.722640px;}
.x3d_c00492{left:406.633830px;}
.x8e_c00492{left:407.700000px;}
.x69_c00492{left:409.335735px;}
.x39_c00492{left:412.844895px;}
.x55_c00492{left:419.329770px;}
.x70_c00492{left:420.942525px;}
.x72_c00492{left:425.263605px;}
.x7a_c00492{left:428.760000px;}
.x82_c00492{left:430.650000px;}
.x20_c00492{left:433.281000px;}
.x28_c00492{left:435.965970px;}
.x60_c00492{left:439.577265px;}
.x44_c00492{left:440.655645px;}
.x47_c00492{left:442.815615px;}
.x5a_c00492{left:449.839335px;}
.x83_c00492{left:451.170000px;}
.x94_c00492{left:454.905243px;}
.x73_c00492{left:458.745450px;}
.x29_c00492{left:462.385740px;}
.x7b_c00492{left:466.290000px;}
.x56_c00492{left:473.872215px;}
.x19_c00492{left:476.550000px;}
.x8f_c00492{left:478.980000px;}
.x6c_c00492{left:480.888420px;}
.x95_c00492{left:484.888743px;}
.x96_c00492{left:487.584243px;}
.x21_c00492{left:490.369500px;}
.x98_c00492{left:494.283570px;}
.x61_c00492{left:496.549965px;}
.x5b_c00492{left:498.981255px;}
.x91_c00492{left:512.308500px;}
.x62_c00492{left:517.610565px;}
.x50_c00492{left:520.348830px;}
.x97_c00492{left:528.921243px;}
.x1a_c00492{left:537.300000px;}
.x78_c00492{left:541.098435px;}
.x92_c00492{left:543.820500px;}
.x99_c00492{left:545.090937px;}
.x7c_c00492{left:553.500000px;}
.x93_c00492{left:559.995000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs4_c00492{font-size:20.533333pt;}
.fs1_c00492{font-size:40.133333pt;}
.fs0_c00492{font-size:41.066667pt;}
.fs13_c00492{font-size:46.666667pt;}
.fs14_c00492{font-size:47.600000pt;}
.fs18_c00492{font-size:49.473814pt;}
.fs2_c00492{font-size:51.333333pt;}
.fs17_c00492{font-size:53.207687pt;}
.fs16_c00492{font-size:54.141155pt;}
.fsb_c00492{font-size:55.069420pt;}
.fs10_c00492{font-size:58.800000pt;}
.fse_c00492{font-size:60.669700pt;}
.fs5_c00492{font-size:61.603080pt;}
.fsd_c00492{font-size:63.469840pt;}
.fs11_c00492{font-size:64.400000pt;}
.fs6_c00492{font-size:64.403220pt;}
.fsf_c00492{font-size:65.333333pt;}
.fs7_c00492{font-size:65.336600pt;}
.fs8_c00492{font-size:66.269980pt;}
.fsc_c00492{font-size:67.203360pt;}
.fs12_c00492{font-size:70.933333pt;}
.fsa_c00492{font-size:70.936880pt;}
.fs9_c00492{font-size:71.870260pt;}
.fs3_c00492{font-size:85.866667pt;}
.fs15_c00492{font-size:88.666667pt;}
.y0_c00492{bottom:0.000000pt;}
.y4_c00492{bottom:134.960000pt;}
.yac_c00492{bottom:137.278667pt;}
.yab_c00492{bottom:151.592000pt;}
.ybd_c00492{bottom:151.917263pt;}
.ybe_c00492{bottom:152.143293pt;}
.ybf_c00492{bottom:152.302192pt;}
.yc0_c00492{bottom:153.327076pt;}
.yc1_c00492{bottom:153.845604pt;}
.yc2_c00492{bottom:154.095824pt;}
.yc3_c00492{bottom:154.568013pt;}
.y3_c00492{bottom:166.817333pt;}
.yb6_c00492{bottom:167.520845pt;}
.yb7_c00492{bottom:168.830480pt;}
.yb8_c00492{bottom:169.193827pt;}
.yb9_c00492{bottom:169.646911pt;}
.yba_c00492{bottom:169.687643pt;}
.ybb_c00492{bottom:170.046433pt;}
.ybc_c00492{bottom:170.312291pt;}
.yaa_c00492{bottom:183.168000pt;}
.yae_c00492{bottom:183.841333pt;}
.yaf_c00492{bottom:183.968561pt;}
.yb0_c00492{bottom:184.433953pt;}
.yb1_c00492{bottom:185.394703pt;}
.yb2_c00492{bottom:185.970663pt;}
.yb3_c00492{bottom:186.313949pt;}
.yb4_c00492{bottom:186.790131pt;}
.yb5_c00492{bottom:187.034545pt;}
.y2_c00492{bottom:198.834667pt;}
.y1_c00492{bottom:215.310667pt;}
.ya9_c00492{bottom:266.880000pt;}
.ya8_c00492{bottom:286.952000pt;}
.ya7_c00492{bottom:307.316000pt;}
.ya6_c00492{bottom:327.314667pt;}
.ya5_c00492{bottom:346.194053pt;}
.ya3_c00492{bottom:366.400333pt;}
.ya2_c00492{bottom:366.400360pt;}
.ya1_c00492{bottom:366.400640pt;}
.ya0_c00492{bottom:366.400653pt;}
.ya4_c00492{bottom:366.400760pt;}
.y9f_c00492{bottom:366.401213pt;}
.y9a_c00492{bottom:386.201773pt;}
.y96_c00492{bottom:386.202120pt;}
.y9b_c00492{bottom:386.202280pt;}
.y99_c00492{bottom:386.202320pt;}
.y9c_c00492{bottom:386.202533pt;}
.y97_c00492{bottom:386.202640pt;}
.y9d_c00492{bottom:386.202787pt;}
.y98_c00492{bottom:386.202867pt;}
.y9e_c00492{bottom:386.203040pt;}
.y94_c00492{bottom:425.330453pt;}
.y95_c00492{bottom:425.330707pt;}
.y93_c00492{bottom:425.331013pt;}
.y92_c00492{bottom:425.331293pt;}
.y91_c00492{bottom:425.331333pt;}
.y8d_c00492{bottom:425.331653pt;}
.y90_c00492{bottom:425.331880pt;}
.y8f_c00492{bottom:425.331893pt;}
.y8e_c00492{bottom:425.332160pt;}
.y87_c00492{bottom:446.274000pt;}
.y86_c00492{bottom:446.274280pt;}
.y8a_c00492{bottom:446.274467pt;}
.y88_c00492{bottom:446.274507pt;}
.y85_c00492{bottom:446.274560pt;}
.y8b_c00492{bottom:446.274707pt;}
.y8c_c00492{bottom:446.274933pt;}
.y89_c00492{bottom:446.275027pt;}
.y84_c00492{bottom:466.279640pt;}
.y83_c00492{bottom:466.280187pt;}
.y82_c00492{bottom:466.280200pt;}
.y81_c00492{bottom:466.280760pt;}
.y7f_c00492{bottom:466.280787pt;}
.y80_c00492{bottom:466.281040pt;}
.y7e_c00492{bottom:466.281347pt;}
.y7d_c00492{bottom:466.281360pt;}
.y7a_c00492{bottom:486.680587pt;}
.y7b_c00492{bottom:486.680840pt;}
.y77_c00492{bottom:486.680907pt;}
.y79_c00492{bottom:486.681133pt;}
.y76_c00492{bottom:486.681187pt;}
.y75_c00492{bottom:486.681213pt;}
.y74_c00492{bottom:486.681253pt;}
.y72_c00492{bottom:486.681280pt;}
.y7c_c00492{bottom:486.681360pt;}
.y78_c00492{bottom:486.681427pt;}
.y73_c00492{bottom:486.681533pt;}
.y71_c00492{bottom:506.456427pt;}
.y70_c00492{bottom:506.456987pt;}
.y6f_c00492{bottom:506.457547pt;}
.y6d_c00492{bottom:506.457573pt;}
.y69_c00492{bottom:506.457667pt;}
.y6e_c00492{bottom:506.457827pt;}
.y6c_c00492{bottom:506.457880pt;}
.y6b_c00492{bottom:506.458160pt;}
.y6a_c00492{bottom:506.458187pt;}
.y60_c00492{bottom:526.947173pt;}
.y62_c00492{bottom:526.947400pt;}
.y61_c00492{bottom:526.947413pt;}
.y5f_c00492{bottom:526.947720pt;}
.y63_c00492{bottom:526.947920pt;}
.y5e_c00492{bottom:526.948253pt;}
.y64_c00492{bottom:526.948440pt;}
.y65_c00492{bottom:526.948693pt;}
.y66_c00492{bottom:526.949200pt;}
.y67_c00492{bottom:526.949453pt;}
.y68_c00492{bottom:526.949973pt;}
.y55_c00492{bottom:545.754653pt;}
.y56_c00492{bottom:546.098600pt;}
.y57_c00492{bottom:546.682893pt;}
.y58_c00492{bottom:547.261320pt;}
.y59_c00492{bottom:547.616427pt;}
.y5a_c00492{bottom:548.234053pt;}
.y5b_c00492{bottom:548.590067pt;}
.y5c_c00492{bottom:549.032280pt;}
.y5d_c00492{bottom:550.510747pt;}
.y4c_c00492{bottom:565.674773pt;}
.y4d_c00492{bottom:566.349147pt;}
.y4e_c00492{bottom:567.135413pt;}
.y4f_c00492{bottom:567.512693pt;}
.y50_c00492{bottom:568.298920pt;}
.y51_c00492{bottom:568.877187pt;}
.y52_c00492{bottom:569.213213pt;}
.y53_c00492{bottom:569.467987pt;}
.y54_c00492{bottom:570.877320pt;}
.y49_c00492{bottom:586.999173pt;}
.y48_c00492{bottom:586.999453pt;}
.y4a_c00492{bottom:586.999693pt;}
.y47_c00492{bottom:586.999733pt;}
.y4b_c00492{bottom:586.999947pt;}
.y45_c00492{bottom:587.000040pt;}
.y46_c00492{bottom:587.000280pt;}
.y44_c00492{bottom:587.000320pt;}
.y42_c00492{bottom:587.000347pt;}
.y43_c00492{bottom:587.000600pt;}
.y41_c00492{bottom:607.380120pt;}
.y40_c00492{bottom:607.380400pt;}
.y3c_c00492{bottom:607.380453pt;}
.y3d_c00492{bottom:607.380707pt;}
.y3f_c00492{bottom:607.380947pt;}
.y3b_c00492{bottom:607.381000pt;}
.y39_c00492{bottom:607.381040pt;}
.y3e_c00492{bottom:607.381227pt;}
.y3a_c00492{bottom:607.381280pt;}
.y38_c00492{bottom:607.381587pt;}
.y31_c00492{bottom:628.039120pt;}
.y32_c00492{bottom:628.039373pt;}
.y33_c00492{bottom:628.039880pt;}
.y35_c00492{bottom:628.040373pt;}
.y34_c00492{bottom:628.040400pt;}
.y36_c00492{bottom:628.040627pt;}
.y37_c00492{bottom:628.041133pt;}
.y2b_c00492{bottom:648.002987pt;}
.y2f_c00492{bottom:648.003413pt;}
.y2d_c00492{bottom:648.003453pt;}
.y2c_c00492{bottom:648.003480pt;}
.y30_c00492{bottom:648.003667pt;}
.y2e_c00492{bottom:648.003960pt;}
.y22_c00492{bottom:665.999013pt;}
.y23_c00492{bottom:666.272093pt;}
.y24_c00492{bottom:666.522587pt;}
.y25_c00492{bottom:666.761827pt;}
.y26_c00492{bottom:667.245080pt;}
.y27_c00492{bottom:667.517960pt;}
.y28_c00492{bottom:667.921120pt;}
.y29_c00492{bottom:668.295827pt;}
.y2a_c00492{bottom:668.689960pt;}
.y19_c00492{bottom:686.640040pt;}
.y1a_c00492{bottom:686.855720pt;}
.y1b_c00492{bottom:687.072147pt;}
.y1c_c00492{bottom:687.576200pt;}
.y1d_c00492{bottom:687.744147pt;}
.y1e_c00492{bottom:688.149440pt;}
.y1f_c00492{bottom:688.365453pt;}
.y20_c00492{bottom:688.560320pt;}
.y21_c00492{bottom:688.937107pt;}
.y10_c00492{bottom:707.280920pt;}
.y11_c00492{bottom:707.673533pt;}
.y12_c00492{bottom:707.978867pt;}
.y13_c00492{bottom:708.171147pt;}
.y14_c00492{bottom:708.650413pt;}
.y15_c00492{bottom:709.182107pt;}
.y16_c00492{bottom:709.409173pt;}
.y17_c00492{bottom:709.675333pt;}
.y18_c00492{bottom:709.886173pt;}
.y7_c00492{bottom:727.668000pt;}
.y8_c00492{bottom:728.193760pt;}
.y9_c00492{bottom:728.387960pt;}
.ya_c00492{bottom:728.653453pt;}
.yb_c00492{bottom:728.944920pt;}
.yc_c00492{bottom:729.493560pt;}
.yd_c00492{bottom:729.705920pt;}
.ye_c00492{bottom:730.317533pt;}
.yf_c00492{bottom:730.824987pt;}
.y6_c00492{bottom:758.880000pt;}
.y5_c00492{bottom:767.846667pt;}
.yad_c00492{bottom:807.014667pt;}
.h6_c00492{height:20.533333pt;}
.h3_c00492{height:40.133333pt;}
.h2_c00492{height:41.066667pt;}
.h15_c00492{height:46.666667pt;}
.h16_c00492{height:47.600000pt;}
.h1a_c00492{height:49.473814pt;}
.h4_c00492{height:51.333333pt;}
.h19_c00492{height:53.207687pt;}
.h18_c00492{height:54.141155pt;}
.hd_c00492{height:55.069420pt;}
.h12_c00492{height:58.800000pt;}
.h10_c00492{height:60.669700pt;}
.h7_c00492{height:61.603080pt;}
.hf_c00492{height:63.469840pt;}
.h13_c00492{height:64.400000pt;}
.h8_c00492{height:64.403220pt;}
.h11_c00492{height:65.333333pt;}
.h9_c00492{height:65.336600pt;}
.ha_c00492{height:66.269980pt;}
.he_c00492{height:67.203360pt;}
.h14_c00492{height:70.933333pt;}
.hc_c00492{height:70.936880pt;}
.hb_c00492{height:71.870260pt;}
.h5_c00492{height:85.866667pt;}
.h17_c00492{height:88.666667pt;}
.h1_c00492{height:893.333333pt;}
.h0_c00492{height:893.466667pt;}
.w0_c00492{width:635.733333pt;}
.w1_c00492{width:636.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:95.760000pt;}
.xd_c00492{left:96.960000pt;}
.x88_c00492{left:99.840000pt;}
.x16_c00492{left:102.480000pt;}
.x7d_c00492{left:108.720000pt;}
.x51_c00492{left:112.083520pt;}
.xa_c00492{left:120.720000pt;}
.x35_c00492{left:121.680720pt;}
.x48_c00492{left:122.616013pt;}
.x63_c00492{left:123.601947pt;}
.x2_c00492{left:125.520000pt;}
.x7e_c00492{left:126.720000pt;}
.xe_c00492{left:129.120000pt;}
.x2a_c00492{left:142.167613pt;}
.x1b_c00492{left:144.240000pt;}
.x3a_c00492{left:145.921427pt;}
.x57_c00492{left:146.885213pt;}
.x3_c00492{left:147.840000pt;}
.x5c_c00492{left:149.284533pt;}
.x90_c00492{left:150.720000pt;}
.x64_c00492{left:152.403493pt;}
.xb_c00492{left:153.360000pt;}
.x49_c00492{left:160.050347pt;}
.xf_c00492{left:163.440000pt;}
.x22_c00492{left:165.209760pt;}
.x6d_c00492{left:166.562360pt;}
.xc_c00492{left:169.200000pt;}
.x10_c00492{left:171.600000pt;}
.x1c_c00492{left:172.761333pt;}
.x74_c00492{left:174.001693pt;}
.x6e_c00492{left:175.203227pt;}
.x86_c00492{left:176.880000pt;}
.x8c_c00492{left:178.320000pt;}
.x6a_c00492{left:181.205093pt;}
.x5d_c00492{left:183.126587pt;}
.x31_c00492{left:184.716787pt;}
.x89_c00492{left:187.200000pt;}
.x4d_c00492{left:189.091227pt;}
.x75_c00492{left:190.802040pt;}
.x4_c00492{left:192.000000pt;}
.x52_c00492{left:195.607880pt;}
.x8a_c00492{left:196.560000pt;}
.x45_c00492{left:198.003653pt;}
.x23_c00492{left:199.076760pt;}
.x11_c00492{left:201.120000pt;}
.x36_c00492{left:202.804827pt;}
.x4a_c00492{left:203.740187pt;}
.x3e_c00492{left:204.724533pt;}
.x65_c00492{left:210.486640pt;}
.x58_c00492{left:211.927720pt;}
.x2b_c00492{left:214.215613pt;}
.x5_c00492{left:216.720000pt;}
.x12_c00492{left:217.920000pt;}
.x24_c00492{left:220.438307pt;}
.x3b_c00492{left:221.765000pt;}
.x3f_c00492{left:222.965027pt;}
.x32_c00492{left:225.041320pt;}
.x8b_c00492{left:227.760000pt;}
.x76_c00492{left:229.444573pt;}
.x2c_c00492{left:231.010280pt;}
.x6_c00492{left:232.800000pt;}
.x17_c00492{left:234.720000pt;}
.x7f_c00492{left:236.880000pt;}
.x66_c00492{left:239.048160pt;}
.x13_c00492{left:243.840000pt;}
.x40_c00492{left:245.045907pt;}
.x1d_c00492{left:247.877333pt;}
.x53_c00492{left:250.330680pt;}
.x8d_c00492{left:251.280000pt;}
.x5e_c00492{left:252.729547pt;}
.x4e_c00492{left:255.775227pt;}
.x7_c00492{left:257.760000pt;}
.x14_c00492{left:264.720000pt;}
.x8_c00492{left:267.360000pt;}
.x4b_c00492{left:268.352347pt;}
.x41_c00492{left:270.007067pt;}
.x2d_c00492{left:271.539613pt;}
.x25_c00492{left:273.698840pt;}
.x77_c00492{left:276.246587pt;}
.x67_c00492{left:277.690693pt;}
.x33_c00492{left:281.444200pt;}
.x84_c00492{left:284.400000pt;}
.x54_c00492{left:287.053013pt;}
.x80_c00492{left:291.120000pt;}
.x2e_c00492{left:293.140947pt;}
.x5f_c00492{left:295.931200pt;}
.x42_c00492{left:298.328560pt;}
.x3c_c00492{left:299.528773pt;}
.x37_c00492{left:300.729280pt;}
.x1e_c00492{left:302.741333pt;}
.x87_c00492{left:306.240000pt;}
.x9_c00492{left:309.120000pt;}
.x15_c00492{left:310.320000pt;}
.x2f_c00492{left:312.627613pt;}
.x79_c00492{left:316.320000pt;}
.x6f_c00492{left:317.529467pt;}
.x4c_c00492{left:319.110947pt;}
.x68_c00492{left:320.172280pt;}
.x85_c00492{left:322.800000pt;}
.x1f_c00492{left:323.977333pt;}
.x4f_c00492{left:325.403120pt;}
.x26_c00492{left:332.735427pt;}
.x81_c00492{left:333.840000pt;}
.x46_c00492{left:335.530747pt;}
.x38_c00492{left:338.411720pt;}
.x71_c00492{left:341.049733pt;}
.x59_c00492{left:342.974160pt;}
.x34_c00492{left:345.526920pt;}
.x6b_c00492{left:347.292360pt;}
.x30_c00492{left:350.306280pt;}
.x18_c00492{left:354.240000pt;}
.x43_c00492{left:356.651733pt;}
.x27_c00492{left:357.975680pt;}
.x3d_c00492{left:361.452293pt;}
.x8e_c00492{left:362.400000pt;}
.x69_c00492{left:363.853987pt;}
.x39_c00492{left:366.973240pt;}
.x55_c00492{left:372.737573pt;}
.x70_c00492{left:374.171133pt;}
.x72_c00492{left:378.012093pt;}
.x7a_c00492{left:381.120000pt;}
.x82_c00492{left:382.800000pt;}
.x20_c00492{left:385.138667pt;}
.x28_c00492{left:387.525307pt;}
.x60_c00492{left:390.735347pt;}
.x44_c00492{left:391.693907pt;}
.x47_c00492{left:393.613880pt;}
.x5a_c00492{left:399.857187pt;}
.x83_c00492{left:401.040000pt;}
.x94_c00492{left:404.360216pt;}
.x73_c00492{left:407.773733pt;}
.x29_c00492{left:411.009547pt;}
.x7b_c00492{left:414.480000pt;}
.x56_c00492{left:421.219747pt;}
.x19_c00492{left:423.600000pt;}
.x8f_c00492{left:425.760000pt;}
.x6c_c00492{left:427.456373pt;}
.x95_c00492{left:431.012216pt;}
.x96_c00492{left:433.408216pt;}
.x21_c00492{left:435.884000pt;}
.x98_c00492{left:439.363173pt;}
.x61_c00492{left:441.377747pt;}
.x5b_c00492{left:443.538893pt;}
.x91_c00492{left:455.385333pt;}
.x62_c00492{left:460.098280pt;}
.x50_c00492{left:462.532293pt;}
.x97_c00492{left:470.152216pt;}
.x1a_c00492{left:477.600000pt;}
.x78_c00492{left:480.976387pt;}
.x92_c00492{left:483.396000pt;}
.x99_c00492{left:484.525277pt;}
.x7c_c00492{left:492.000000pt;}
.x93_c00492{left:497.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.mf7_c00493{transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);-ms-transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.007244,0.000101,-0.003500,0.249976,0,0);}
.mdd_c00493{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);}
.mfc_c00493{transform:matrix(0.081347,0.001139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.081347,0.001139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.081347,0.001139,-0.003500,0.249976,0,0);}
.mb3_c00493{transform:matrix(0.090730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090730,0.000000,0.000000,0.250000,0,0);}
.mfe_c00493{transform:matrix(0.128367,0.001797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.128367,0.001797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.128367,0.001797,-0.003500,0.249976,0,0);}
.m89_c00493{transform:matrix(0.131765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131765,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);}
.me7_c00493{transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139865,0.000000,0.000000,0.250000,0,0);}
.mfb_c00493{transform:matrix(0.143031,0.002002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143031,0.002002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143031,0.002002,-0.003500,0.249976,0,0);}
.m9c_c00493{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00493{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);}
.m68_c00493{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);}
.m4d_c00493{transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{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);}
.m97_c00493{transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148255,0.000000,0.000000,0.250000,0,0);}
.mbc_c00493{transform:matrix(0.148555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148555,0.000000,0.000000,0.250000,0,0);}
.mfd_c00493{transform:matrix(0.150940,0.002113,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150940,0.002113,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150940,0.002113,-0.003500,0.249976,0,0);}
.mf5_c00493{transform:matrix(0.151505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{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);}
.m64_c00493{transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153320,0.000000,0.000000,0.250000,0,0);}
.mb2_c00493{transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{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);}
.m22_c00493{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);}
.m78_c00493{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);}
.m8f_c00493{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);}
.m9b_c00493{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);}
.me3_c00493{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);}
.m7d_c00493{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);}
.m50_c00493{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);}
.mf6_c00493{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);}
.m6e_c00493{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);}
.mf8_c00493{transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161279,0.002258,-0.003500,0.249976,0,0);}
.m1a_c00493{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);}
.m4_c00493{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);}
.m1b_c00493{transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);}
.md8_c00493{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);}
.ma0_c00493{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);}
.m9a_c00493{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);}
.me5_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);}
.m3_c00493{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{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);}
.m31_c00493{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);}
.m36_c00493{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);}
.m71_c00493{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);}
.m21_c00493{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);}
.m5d_c00493{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);}
.mf0_c00493{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);}
.m100_c00493{transform:matrix(0.168009,0.002352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168009,0.002352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168009,0.002352,-0.003500,0.249976,0,0);}
.m33_c00493{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);}
.m72_c00493{transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168230,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{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);}
.me8_c00493{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);}
.mb1_c00493{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);}
.m102_c00493{transform:matrix(0.168763,0.002363,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168763,0.002363,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168763,0.002363,-0.003500,0.249976,0,0);}
.m6_c00493{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);}
.mee_c00493{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);}
.m60_c00493{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);}
.m52_c00493{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);}
.m11_c00493{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);}
.m81_c00493{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);}
.m8e_c00493{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);}
.m103_c00493{transform:matrix(0.170698,0.002390,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170698,0.002390,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170698,0.002390,-0.003500,0.249976,0,0);}
.mae_c00493{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_c00493{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);}
.m20_c00493{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);}
.m11f_c00493{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);}
.m7b_c00493{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);}
.m12_c00493{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);}
.md_c00493{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);}
.m61_c00493{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);}
.m7f_c00493{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);}
.md9_c00493{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);}
.mf1_c00493{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);}
.mf2_c00493{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);}
.m9e_c00493{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);}
.m40_c00493{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);}
.m2_c00493{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);}
.me4_c00493{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_c00493{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);}
.m99_c00493{transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{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);}
.m7a_c00493{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);}
.mec_c00493{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);}
.m115_c00493{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);}
.m8b_c00493{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);}
.m48_c00493{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);}
.m67_c00493{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);}
.m56_c00493{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);}
.maa_c00493{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);}
.m121_c00493{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);}
.m8c_c00493{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);}
.m9f_c00493{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);}
.m96_c00493{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);}
.mb6_c00493{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);}
.mc1_c00493{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);}
.mf3_c00493{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);}
.m98_c00493{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);}
.mbd_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);}
.me9_c00493{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);}
.m10b_c00493{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);}
.m4b_c00493{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);}
.m49_c00493{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);}
.m15_c00493{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);}
.m73_c00493{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);}
.me_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.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);}
.m35_c00493{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);}
.m39_c00493{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);}
.md0_c00493{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);}
.ma9_c00493{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);}
.m41_c00493{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);}
.m38_c00493{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);}
.m47_c00493{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);}
.m57_c00493{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);}
.m3e_c00493{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);}
.m11b_c00493{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);}
.mef_c00493{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);}
.m11e_c00493{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);}
.m70_c00493{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);}
.m74_c00493{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);}
.m2d_c00493{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);}
.mb5_c00493{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);}
.m9d_c00493{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);}
.ma6_c00493{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);}
.m7c_c00493{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_c00493{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);}
.m1c_c00493{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);}
.m55_c00493{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);}
.m42_c00493{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);}
.m23_c00493{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);}
.m5c_c00493{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);}
.mac_c00493{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);}
.mab_c00493{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);}
.mb8_c00493{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);}
.md2_c00493{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);}
.m85_c00493{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);}
.m93_c00493{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);}
.m95_c00493{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);}
.mf4_c00493{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);}
.m10c_c00493{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);}
.md4_c00493{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);}
.m113_c00493{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);}
.m7_c00493{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);}
.m54_c00493{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);}
.m10e_c00493{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);}
.m108_c00493{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);}
.mfa_c00493{transform:matrix(0.195656,0.002739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195656,0.002739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195656,0.002739,-0.003500,0.249976,0,0);}
.m34_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);}
.m123_c00493{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);}
.meb_c00493{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);}
.m119_c00493{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);}
.m2f_c00493{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);}
.m43_c00493{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);}
.m69_c00493{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);}
.m45_c00493{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);}
.md3_c00493{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);}
.m16_c00493{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);}
.m13_c00493{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);}
.mba_c00493{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);}
.m79_c00493{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);}
.m6a_c00493{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);}
.m10_c00493{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);}
.m66_c00493{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);}
.mf_c00493{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);}
.m2b_c00493{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);}
.mb7_c00493{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);}
.m5e_c00493{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);}
.m53_c00493{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);}
.maf_c00493{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);}
.m122_c00493{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);}
.m6d_c00493{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);}
.m18_c00493{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);}
.m106_c00493{transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201790,0.002825,-0.003500,0.249976,0,0);}
.m59_c00493{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);}
.ma7_c00493{transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202520,0.000000,0.000000,0.250000,0,0);}
.mbb_c00493{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);}
.m4f_c00493{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);}
.md7_c00493{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);}
.m10a_c00493{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);}
.m19_c00493{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);}
.m14_c00493{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);}
.m17_c00493{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);}
.m112_c00493{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);}
.m3f_c00493{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);}
.m114_c00493{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);}
.m120_c00493{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);}
.m77_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);}
.m101_c00493{transform:matrix(0.207305,0.002902,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207305,0.002902,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207305,0.002902,-0.003500,0.249976,0,0);}
.m58_c00493{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);}
.m6b_c00493{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);}
.m2e_c00493{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);}
.mc0_c00493{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);}
.me2_c00493{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{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);}
.m8d_c00493{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);}
.mda_c00493{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);}
.ma2_c00493{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);}
.m5b_c00493{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);}
.m11c_c00493{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);}
.m118_c00493{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);}
.m84_c00493{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);}
.m62_c00493{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);}
.m116_c00493{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);}
.md1_c00493{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);}
.m87_c00493{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);}
.m3d_c00493{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);}
.m8a_c00493{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);}
.m2a_c00493{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);}
.ma_c00493{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.mc2_c00493{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);}
.m91_c00493{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);}
.m11d_c00493{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);}
.mcd_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);}
.mc4_c00493{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);}
.me6_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);}
.mdf_c00493{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);}
.m110_c00493{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{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);}
.m3a_c00493{transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);}
.m10d_c00493{transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{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);}
.m111_c00493{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);}
.m83_c00493{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);}
.m109_c00493{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);}
.mdc_c00493{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);}
.m5a_c00493{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.mc3_c00493{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);}
.mbe_c00493{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);}
.mdb_c00493{transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227335,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{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);}
.mad_c00493{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);}
.m3b_c00493{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);}
.mb4_c00493{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);}
.mcc_c00493{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);}
.med_c00493{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);}
.m6c_c00493{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);}
.m104_c00493{transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);}
.ma8_c00493{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);}
.m10f_c00493{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);}
.m51_c00493{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m117_c00493{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);}
.m88_c00493{transform:matrix(0.242820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242820,0.000000,0.000000,0.250000,0,0);}
.me0_c00493{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);}
.ma3_c00493{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);}
.m1f_c00493{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);}
.m4c_c00493{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);}
.mff_c00493{transform:matrix(0.244551,0.003424,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244551,0.003424,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244551,0.003424,-0.003500,0.249976,0,0);}
.m6f_c00493{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);}
.me1_c00493{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);}
.mcb_c00493{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{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);}
.mc8_c00493{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);}
.m32_c00493{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.md5_c00493{transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{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);}
.mc5_c00493{transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{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);}
.mcf_c00493{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);}
.m29_c00493{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);}
.mce_c00493{transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261295,0.000000,0.000000,0.250000,0,0);}
.md6_c00493{transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261830,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00493{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267820,0.000000,0.000000,0.250000,0,0);}
.m11a_c00493{transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279055,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{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);}
.m28_c00493{transform:matrix(0.282505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282505,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{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);}
.mca_c00493{transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);}
.m107_c00493{transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);}
.mc7_c00493{transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292960,0.000000,0.000000,0.250000,0,0);}
.mea_c00493{transform:matrix(0.313005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313005,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00493{transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317715,0.000000,0.000000,0.250000,0,0);}
.mde_c00493{transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320670,0.000000,0.000000,0.250000,0,0);}
.mc6_c00493{transform:matrix(0.332900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332900,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.352630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352630,0.000000,0.000000,0.250000,0,0);}
.m105_c00493{transform:matrix(0.352635,0.004937,-0.003500,0.249976,0,0);-ms-transform:matrix(0.352635,0.004937,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.352635,0.004937,-0.003500,0.249976,0,0);}
.m92_c00493{transform:matrix(0.355295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355295,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.392520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392520,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);}
.mf9_c00493{transform:matrix(0.440652,0.006169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.440652,0.006169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.440652,0.006169,-0.003500,0.249976,0,0);}
.ma4_c00493{transform:matrix(0.447320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447320,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(1.065990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065990,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;}
.fs16_c00493{font-size:18.900000px;}
.fs2_c00493{font-size:48.300000px;}
.fs1a_c00493{font-size:49.350000px;}
.fs13_c00493{font-size:51.450000px;}
.fs14_c00493{font-size:52.500000px;}
.fs4_c00493{font-size:53.550000px;}
.fs6_c00493{font-size:54.600000px;}
.fs0_c00493{font-size:55.650000px;}
.fs1_c00493{font-size:57.750000px;}
.fs19_c00493{font-size:57.755659px;}
.fs3_c00493{font-size:58.800000px;}
.fs11_c00493{font-size:59.850000px;}
.fs17_c00493{font-size:60.900000px;}
.fs5_c00493{font-size:61.950000px;}
.fs8_c00493{font-size:64.050000px;}
.fs15_c00493{font-size:65.100000px;}
.fs12_c00493{font-size:67.200000px;}
.fs18_c00493{font-size:67.206585px;}
.fsf_c00493{font-size:68.250000px;}
.fse_c00493{font-size:69.300000px;}
.fsb_c00493{font-size:70.350000px;}
.fsa_c00493{font-size:71.400000px;}
.fsc_c00493{font-size:72.450000px;}
.fs9_c00493{font-size:73.500000px;}
.fs10_c00493{font-size:75.600000px;}
.fsd_c00493{font-size:87.150000px;}
.fs7_c00493{font-size:141.750000px;}
.y0_c00493{bottom:0.000000px;}
.y38_c00493{bottom:144.138000px;}
.y7_c00493{bottom:145.381500px;}
.y37_c00493{bottom:161.955000px;}
.y6_c00493{bottom:162.717000px;}
.y36_c00493{bottom:179.932500px;}
.y5_c00493{bottom:180.990000px;}
.y35_c00493{bottom:197.910000px;}
.y4_c00493{bottom:198.805500px;}
.y34_c00493{bottom:216.112794px;}
.y33_c00493{bottom:216.337899px;}
.y1f_c00493{bottom:216.565500px;}
.y32_c00493{bottom:217.023678px;}
.y31_c00493{bottom:217.766520px;}
.y30_c00493{bottom:218.346957px;}
.y2f_c00493{bottom:219.810402px;}
.y2e_c00493{bottom:220.093410px;}
.y2d_c00493{bottom:220.727877px;}
.y2c_c00493{bottom:220.858377px;}
.y2b_c00493{bottom:233.896254px;}
.y2a_c00493{bottom:233.999973px;}
.y29_c00493{bottom:234.664056px;}
.y3_c00493{bottom:235.039500px;}
.y28_c00493{bottom:235.079814px;}
.y27_c00493{bottom:235.899780px;}
.y26_c00493{bottom:236.447565px;}
.y25_c00493{bottom:236.788500px;}
.y24_c00493{bottom:251.370000px;}
.y1e_c00493{bottom:252.274500px;}
.y2_c00493{bottom:268.647000px;}
.y23_c00493{bottom:269.460000px;}
.y22_c00493{bottom:286.900500px;}
.y1_c00493{bottom:288.090000px;}
.y21_c00493{bottom:292.950000px;}
.y20_c00493{bottom:340.864500px;}
.y1d_c00493{bottom:362.448000px;}
.y1c_c00493{bottom:384.570000px;}
.y1b_c00493{bottom:407.263500px;}
.y1a_c00493{bottom:430.315500px;}
.y19_c00493{bottom:453.318000px;}
.y18_c00493{bottom:475.938000px;}
.y17_c00493{bottom:498.751500px;}
.y16_c00493{bottom:521.364000px;}
.y15_c00493{bottom:544.588500px;}
.y14_c00493{bottom:567.453000px;}
.y13_c00493{bottom:590.302500px;}
.y12_c00493{bottom:613.870500px;}
.y11_c00493{bottom:635.851500px;}
.y10_c00493{bottom:658.516500px;}
.yf_c00493{bottom:681.148500px;}
.ye_c00493{bottom:703.968000px;}
.yd_c00493{bottom:727.023000px;}
.yc_c00493{bottom:750.141000px;}
.yb_c00493{bottom:773.182500px;}
.ya_c00493{bottom:796.485000px;}
.y9_c00493{bottom:819.306000px;}
.y8_c00493{bottom:906.978000px;}
.h18_c00493{height:18.900000px;}
.h4_c00493{height:48.300000px;}
.h1c_c00493{height:49.350000px;}
.h15_c00493{height:51.450000px;}
.h16_c00493{height:52.500000px;}
.h6_c00493{height:53.550000px;}
.h8_c00493{height:54.600000px;}
.h2_c00493{height:55.650000px;}
.h3_c00493{height:57.750000px;}
.h1b_c00493{height:57.755659px;}
.h5_c00493{height:58.800000px;}
.h13_c00493{height:59.850000px;}
.h19_c00493{height:60.900000px;}
.h7_c00493{height:61.950000px;}
.ha_c00493{height:64.050000px;}
.h17_c00493{height:65.100000px;}
.h14_c00493{height:67.200000px;}
.h1a_c00493{height:67.206585px;}
.h11_c00493{height:68.250000px;}
.h10_c00493{height:69.300000px;}
.hd_c00493{height:70.350000px;}
.hc_c00493{height:71.400000px;}
.he_c00493{height:72.450000px;}
.hb_c00493{height:73.500000px;}
.h12_c00493{height:75.600000px;}
.hf_c00493{height:87.150000px;}
.h9_c00493{height:141.750000px;}
.h0_c00493{height:1008.450000px;}
.h1_c00493{height:1008.750000px;}
.w1_c00493{width:700.500000px;}
.w0_c00493{width:700.650000px;}
.x0_c00493{left:0.000000px;}
.x20_c00493{left:93.150000px;}
.x9_c00493{left:143.640000px;}
.xb_c00493{left:145.260000px;}
.x8a_c00493{left:148.770000px;}
.x1_c00493{left:156.600000px;}
.x87_c00493{left:159.030000px;}
.x13_c00493{left:161.730000px;}
.x18_c00493{left:171.720000px;}
.xc_c00493{left:174.420000px;}
.x1e_c00493{left:176.850000px;}
.x62_c00493{left:178.740000px;}
.x3e_c00493{left:181.440000px;}
.x2_c00493{left:182.520000px;}
.xd_c00493{left:184.140000px;}
.x27_c00493{left:185.760000px;}
.xe_c00493{left:199.260000px;}
.x6a_c00493{left:201.150000px;}
.x23_c00493{left:204.930000px;}
.x82_c00493{left:206.550000px;}
.x88_c00493{left:208.170000px;}
.x57_c00493{left:210.060000px;}
.xf_c00493{left:211.680000px;}
.x5c_c00493{left:213.570000px;}
.x3_c00493{left:217.620000px;}
.x63_c00493{left:220.860000px;}
.x10_c00493{left:223.560000px;}
.x89_c00493{left:224.640000px;}
.x19_c00493{left:225.720000px;}
.x71_c00493{left:228.690000px;}
.x1f_c00493{left:233.280000px;}
.x83_c00493{left:234.900000px;}
.x6b_c00493{left:236.520000px;}
.x4_c00493{left:237.600000px;}
.x14_c00493{left:238.680000px;}
.x1a_c00493{left:239.760000px;}
.x6f_c00493{left:241.380000px;}
.x5d_c00493{left:242.460000px;}
.xa_c00493{left:244.350000px;}
.x50_c00493{left:245.430000px;}
.x28_c00493{left:249.750000px;}
.x11_c00493{left:252.450000px;}
.x3f_c00493{left:254.340000px;}
.x4c_c00493{left:257.580000px;}
.x80_c00493{left:259.200000px;}
.x33_c00493{left:262.980000px;}
.x77_c00493{left:264.060000px;}
.x15_c00493{left:265.680000px;}
.x29_c00493{left:266.760000px;}
.x1b_c00493{left:267.840000px;}
.x5_c00493{left:269.460000px;}
.x46_c00493{left:273.510000px;}
.x58_c00493{left:275.940000px;}
.x40_c00493{left:277.830000px;}
.x70_c00493{left:280.260000px;}
.x64_c00493{left:281.880000px;}
.x1c_c00493{left:283.230000px;}
.x34_c00493{left:286.470000px;}
.x72_c00493{left:288.360000px;}
.x7b_c00493{left:291.870000px;}
.x6_c00493{left:296.190000px;}
.x78_c00493{left:298.350000px;}
.x65_c00493{left:305.910000px;}
.x2f_c00493{left:308.070000px;}
.x51_c00493{left:312.390000px;}
.x7_c00493{left:314.280000px;}
.x7c_c00493{left:315.630000px;}
.x35_c00493{left:316.710000px;}
.x5e_c00493{left:321.030000px;}
.x41_c00493{left:322.110000px;}
.x54_c00493{left:323.730000px;}
.x4d_c00493{left:326.430000px;}
.x16_c00493{left:328.050000px;}
.x12_c00493{left:329.130000px;}
.x8_c00493{left:330.210000px;}
.x2a_c00493{left:338.040000px;}
.x66_c00493{left:340.200000px;}
.x6c_c00493{left:344.790000px;}
.x59_c00493{left:347.220000px;}
.x79_c00493{left:348.840000px;}
.x1d_c00493{left:350.190000px;}
.x55_c00493{left:351.270000px;}
.x17_c00493{left:357.210000px;}
.x2b_c00493{left:359.370000px;}
.x47_c00493{left:360.450000px;}
.x76_c00493{left:362.610000px;}
.x24_c00493{left:368.820000px;}
.x6d_c00493{left:370.980000px;}
.x42_c00493{left:372.060000px;}
.x67_c00493{left:374.220000px;}
.x5f_c00493{left:375.840000px;}
.x39_c00493{left:378.810000px;}
.x2c_c00493{left:380.970000px;}
.x48_c00493{left:383.130000px;}
.x7d_c00493{left:385.290000px;}
.x84_c00493{left:388.800000px;}
.x9f_c00493{left:390.242493px;}
.x98_c00493{left:392.310000px;}
.xa4_c00493{left:393.930000px;}
.x36_c00493{left:395.280000px;}
.x68_c00493{left:397.980000px;}
.x3a_c00493{left:399.600000px;}
.x73_c00493{left:404.730000px;}
.x6e_c00493{left:408.510000px;}
.x21_c00493{left:411.210000px;}
.xa7_c00493{left:413.100000px;}
.x7e_c00493{left:414.450000px;}
.xa0_c00493{left:415.629087px;}
.x85_c00493{left:416.880000px;}
.x7a_c00493{left:418.500000px;}
.x3b_c00493{left:422.550000px;}
.x43_c00493{left:424.170000px;}
.x2d_c00493{left:425.520000px;}
.x25_c00493{left:426.600000px;}
.x4e_c00493{left:428.220000px;}
.xa5_c00493{left:434.970000px;}
.x81_c00493{left:436.860000px;}
.x30_c00493{left:438.210000px;}
.x49_c00493{left:439.560000px;}
.xae_c00493{left:447.930000px;}
.x69_c00493{left:449.010000px;}
.x26_c00493{left:452.250000px;}
.x22_c00493{left:453.600000px;}
.x52_c00493{left:454.680000px;}
.x31_c00493{left:456.570000px;}
.x37_c00493{left:458.190000px;}
.x74_c00493{left:460.080000px;}
.x93_c00493{left:462.510000px;}
.x56_c00493{left:463.860000px;}
.x2e_c00493{left:465.480000px;}
.x4a_c00493{left:466.560000px;}
.x60_c00493{left:470.340000px;}
.x3c_c00493{left:472.770000px;}
.x5a_c00493{left:474.390000px;}
.x86_c00493{left:478.170000px;}
.x38_c00493{left:479.790000px;}
.x75_c00493{left:481.680000px;}
.xa1_c00493{left:485.507835px;}
.x44_c00493{left:490.590000px;}
.xaf_c00493{left:493.830000px;}
.x32_c00493{left:495.180000px;}
.x4f_c00493{left:499.770000px;}
.x99_c00493{left:501.390000px;}
.x7f_c00493{left:505.170000px;}
.x4b_c00493{left:506.250000px;}
.x9c_c00493{left:508.221000px;}
.x53_c00493{left:509.490000px;}
.xab_c00493{left:511.920000px;}
.x3d_c00493{left:514.890000px;}
.x94_c00493{left:518.400000px;}
.x8f_c00493{left:520.560000px;}
.x9a_c00493{left:525.690000px;}
.xa8_c00493{left:529.470000px;}
.x5b_c00493{left:531.090000px;}
.x95_c00493{left:532.440000px;}
.x9d_c00493{left:537.918000px;}
.xa6_c00493{left:545.400000px;}
.x61_c00493{left:546.480000px;}
.x96_c00493{left:551.070000px;}
.x90_c00493{left:552.150000px;}
.x45_c00493{left:558.360000px;}
.x9b_c00493{left:563.760000px;}
.xa2_c00493{left:565.892466px;}
.xa9_c00493{left:568.080000px;}
.xac_c00493{left:573.210000px;}
.xa3_c00493{left:574.898580px;}
.x8b_c00493{left:576.990000px;}
.xb0_c00493{left:579.420000px;}
.x8c_c00493{left:585.630000px;}
.x91_c00493{left:588.060000px;}
.x8e_c00493{left:589.950000px;}
.x9e_c00493{left:592.761000px;}
.x97_c00493{left:594.810000px;}
.x8d_c00493{left:598.050000px;}
.x92_c00493{left:601.020000px;}
.xad_c00493{left:606.150000px;}
.xaa_c00493{left:610.470000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fs16_c00493{font-size:16.800000pt;}
.fs2_c00493{font-size:42.933333pt;}
.fs1a_c00493{font-size:43.866667pt;}
.fs13_c00493{font-size:45.733333pt;}
.fs14_c00493{font-size:46.666667pt;}
.fs4_c00493{font-size:47.600000pt;}
.fs6_c00493{font-size:48.533333pt;}
.fs0_c00493{font-size:49.466667pt;}
.fs1_c00493{font-size:51.333333pt;}
.fs19_c00493{font-size:51.338364pt;}
.fs3_c00493{font-size:52.266667pt;}
.fs11_c00493{font-size:53.200000pt;}
.fs17_c00493{font-size:54.133333pt;}
.fs5_c00493{font-size:55.066667pt;}
.fs8_c00493{font-size:56.933333pt;}
.fs15_c00493{font-size:57.866667pt;}
.fs12_c00493{font-size:59.733333pt;}
.fs18_c00493{font-size:59.739187pt;}
.fsf_c00493{font-size:60.666667pt;}
.fse_c00493{font-size:61.600000pt;}
.fsb_c00493{font-size:62.533333pt;}
.fsa_c00493{font-size:63.466667pt;}
.fsc_c00493{font-size:64.400000pt;}
.fs9_c00493{font-size:65.333333pt;}
.fs10_c00493{font-size:67.200000pt;}
.fsd_c00493{font-size:77.466667pt;}
.fs7_c00493{font-size:126.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y38_c00493{bottom:128.122667pt;}
.y7_c00493{bottom:129.228000pt;}
.y37_c00493{bottom:143.960000pt;}
.y6_c00493{bottom:144.637333pt;}
.y36_c00493{bottom:159.940000pt;}
.y5_c00493{bottom:160.880000pt;}
.y35_c00493{bottom:175.920000pt;}
.y4_c00493{bottom:176.716000pt;}
.y34_c00493{bottom:192.100261pt;}
.y33_c00493{bottom:192.300355pt;}
.y1f_c00493{bottom:192.502667pt;}
.y32_c00493{bottom:192.909936pt;}
.y31_c00493{bottom:193.570240pt;}
.y30_c00493{bottom:194.086184pt;}
.y2f_c00493{bottom:195.387024pt;}
.y2e_c00493{bottom:195.638587pt;}
.y2d_c00493{bottom:196.202557pt;}
.y2c_c00493{bottom:196.318557pt;}
.y2b_c00493{bottom:207.907781pt;}
.y2a_c00493{bottom:207.999976pt;}
.y29_c00493{bottom:208.590272pt;}
.y3_c00493{bottom:208.924000pt;}
.y28_c00493{bottom:208.959835pt;}
.y27_c00493{bottom:209.688693pt;}
.y26_c00493{bottom:210.175613pt;}
.y25_c00493{bottom:210.478667pt;}
.y24_c00493{bottom:223.440000pt;}
.y1e_c00493{bottom:224.244000pt;}
.y2_c00493{bottom:238.797333pt;}
.y23_c00493{bottom:239.520000pt;}
.y22_c00493{bottom:255.022667pt;}
.y1_c00493{bottom:256.080000pt;}
.y21_c00493{bottom:260.400000pt;}
.y20_c00493{bottom:302.990667pt;}
.y1d_c00493{bottom:322.176000pt;}
.y1c_c00493{bottom:341.840000pt;}
.y1b_c00493{bottom:362.012000pt;}
.y1a_c00493{bottom:382.502667pt;}
.y19_c00493{bottom:402.949333pt;}
.y18_c00493{bottom:423.056000pt;}
.y17_c00493{bottom:443.334667pt;}
.y16_c00493{bottom:463.434667pt;}
.y15_c00493{bottom:484.078667pt;}
.y14_c00493{bottom:504.402667pt;}
.y13_c00493{bottom:524.713333pt;}
.y12_c00493{bottom:545.662667pt;}
.y11_c00493{bottom:565.201333pt;}
.y10_c00493{bottom:585.348000pt;}
.yf_c00493{bottom:605.465333pt;}
.ye_c00493{bottom:625.749333pt;}
.yd_c00493{bottom:646.242667pt;}
.yc_c00493{bottom:666.792000pt;}
.yb_c00493{bottom:687.273333pt;}
.ya_c00493{bottom:707.986667pt;}
.y9_c00493{bottom:728.272000pt;}
.y8_c00493{bottom:806.202667pt;}
.h18_c00493{height:16.800000pt;}
.h4_c00493{height:42.933333pt;}
.h1c_c00493{height:43.866667pt;}
.h15_c00493{height:45.733333pt;}
.h16_c00493{height:46.666667pt;}
.h6_c00493{height:47.600000pt;}
.h8_c00493{height:48.533333pt;}
.h2_c00493{height:49.466667pt;}
.h3_c00493{height:51.333333pt;}
.h1b_c00493{height:51.338364pt;}
.h5_c00493{height:52.266667pt;}
.h13_c00493{height:53.200000pt;}
.h19_c00493{height:54.133333pt;}
.h7_c00493{height:55.066667pt;}
.ha_c00493{height:56.933333pt;}
.h17_c00493{height:57.866667pt;}
.h14_c00493{height:59.733333pt;}
.h1a_c00493{height:59.739187pt;}
.h11_c00493{height:60.666667pt;}
.h10_c00493{height:61.600000pt;}
.hd_c00493{height:62.533333pt;}
.hc_c00493{height:63.466667pt;}
.he_c00493{height:64.400000pt;}
.hb_c00493{height:65.333333pt;}
.h12_c00493{height:67.200000pt;}
.hf_c00493{height:77.466667pt;}
.h9_c00493{height:126.000000pt;}
.h0_c00493{height:896.400000pt;}
.h1_c00493{height:896.666667pt;}
.w1_c00493{width:622.666667pt;}
.w0_c00493{width:622.800000pt;}
.x0_c00493{left:0.000000pt;}
.x20_c00493{left:82.800000pt;}
.x9_c00493{left:127.680000pt;}
.xb_c00493{left:129.120000pt;}
.x8a_c00493{left:132.240000pt;}
.x1_c00493{left:139.200000pt;}
.x87_c00493{left:141.360000pt;}
.x13_c00493{left:143.760000pt;}
.x18_c00493{left:152.640000pt;}
.xc_c00493{left:155.040000pt;}
.x1e_c00493{left:157.200000pt;}
.x62_c00493{left:158.880000pt;}
.x3e_c00493{left:161.280000pt;}
.x2_c00493{left:162.240000pt;}
.xd_c00493{left:163.680000pt;}
.x27_c00493{left:165.120000pt;}
.xe_c00493{left:177.120000pt;}
.x6a_c00493{left:178.800000pt;}
.x23_c00493{left:182.160000pt;}
.x82_c00493{left:183.600000pt;}
.x88_c00493{left:185.040000pt;}
.x57_c00493{left:186.720000pt;}
.xf_c00493{left:188.160000pt;}
.x5c_c00493{left:189.840000pt;}
.x3_c00493{left:193.440000pt;}
.x63_c00493{left:196.320000pt;}
.x10_c00493{left:198.720000pt;}
.x89_c00493{left:199.680000pt;}
.x19_c00493{left:200.640000pt;}
.x71_c00493{left:203.280000pt;}
.x1f_c00493{left:207.360000pt;}
.x83_c00493{left:208.800000pt;}
.x6b_c00493{left:210.240000pt;}
.x4_c00493{left:211.200000pt;}
.x14_c00493{left:212.160000pt;}
.x1a_c00493{left:213.120000pt;}
.x6f_c00493{left:214.560000pt;}
.x5d_c00493{left:215.520000pt;}
.xa_c00493{left:217.200000pt;}
.x50_c00493{left:218.160000pt;}
.x28_c00493{left:222.000000pt;}
.x11_c00493{left:224.400000pt;}
.x3f_c00493{left:226.080000pt;}
.x4c_c00493{left:228.960000pt;}
.x80_c00493{left:230.400000pt;}
.x33_c00493{left:233.760000pt;}
.x77_c00493{left:234.720000pt;}
.x15_c00493{left:236.160000pt;}
.x29_c00493{left:237.120000pt;}
.x1b_c00493{left:238.080000pt;}
.x5_c00493{left:239.520000pt;}
.x46_c00493{left:243.120000pt;}
.x58_c00493{left:245.280000pt;}
.x40_c00493{left:246.960000pt;}
.x70_c00493{left:249.120000pt;}
.x64_c00493{left:250.560000pt;}
.x1c_c00493{left:251.760000pt;}
.x34_c00493{left:254.640000pt;}
.x72_c00493{left:256.320000pt;}
.x7b_c00493{left:259.440000pt;}
.x6_c00493{left:263.280000pt;}
.x78_c00493{left:265.200000pt;}
.x65_c00493{left:271.920000pt;}
.x2f_c00493{left:273.840000pt;}
.x51_c00493{left:277.680000pt;}
.x7_c00493{left:279.360000pt;}
.x7c_c00493{left:280.560000pt;}
.x35_c00493{left:281.520000pt;}
.x5e_c00493{left:285.360000pt;}
.x41_c00493{left:286.320000pt;}
.x54_c00493{left:287.760000pt;}
.x4d_c00493{left:290.160000pt;}
.x16_c00493{left:291.600000pt;}
.x12_c00493{left:292.560000pt;}
.x8_c00493{left:293.520000pt;}
.x2a_c00493{left:300.480000pt;}
.x66_c00493{left:302.400000pt;}
.x6c_c00493{left:306.480000pt;}
.x59_c00493{left:308.640000pt;}
.x79_c00493{left:310.080000pt;}
.x1d_c00493{left:311.280000pt;}
.x55_c00493{left:312.240000pt;}
.x17_c00493{left:317.520000pt;}
.x2b_c00493{left:319.440000pt;}
.x47_c00493{left:320.400000pt;}
.x76_c00493{left:322.320000pt;}
.x24_c00493{left:327.840000pt;}
.x6d_c00493{left:329.760000pt;}
.x42_c00493{left:330.720000pt;}
.x67_c00493{left:332.640000pt;}
.x5f_c00493{left:334.080000pt;}
.x39_c00493{left:336.720000pt;}
.x2c_c00493{left:338.640000pt;}
.x48_c00493{left:340.560000pt;}
.x7d_c00493{left:342.480000pt;}
.x84_c00493{left:345.600000pt;}
.x9f_c00493{left:346.882216pt;}
.x98_c00493{left:348.720000pt;}
.xa4_c00493{left:350.160000pt;}
.x36_c00493{left:351.360000pt;}
.x68_c00493{left:353.760000pt;}
.x3a_c00493{left:355.200000pt;}
.x73_c00493{left:359.760000pt;}
.x6e_c00493{left:363.120000pt;}
.x21_c00493{left:365.520000pt;}
.xa7_c00493{left:367.200000pt;}
.x7e_c00493{left:368.400000pt;}
.xa0_c00493{left:369.448077pt;}
.x85_c00493{left:370.560000pt;}
.x7a_c00493{left:372.000000pt;}
.x3b_c00493{left:375.600000pt;}
.x43_c00493{left:377.040000pt;}
.x2d_c00493{left:378.240000pt;}
.x25_c00493{left:379.200000pt;}
.x4e_c00493{left:380.640000pt;}
.xa5_c00493{left:386.640000pt;}
.x81_c00493{left:388.320000pt;}
.x30_c00493{left:389.520000pt;}
.x49_c00493{left:390.720000pt;}
.xae_c00493{left:398.160000pt;}
.x69_c00493{left:399.120000pt;}
.x26_c00493{left:402.000000pt;}
.x22_c00493{left:403.200000pt;}
.x52_c00493{left:404.160000pt;}
.x31_c00493{left:405.840000pt;}
.x37_c00493{left:407.280000pt;}
.x74_c00493{left:408.960000pt;}
.x93_c00493{left:411.120000pt;}
.x56_c00493{left:412.320000pt;}
.x2e_c00493{left:413.760000pt;}
.x4a_c00493{left:414.720000pt;}
.x60_c00493{left:418.080000pt;}
.x3c_c00493{left:420.240000pt;}
.x5a_c00493{left:421.680000pt;}
.x86_c00493{left:425.040000pt;}
.x38_c00493{left:426.480000pt;}
.x75_c00493{left:428.160000pt;}
.xa1_c00493{left:431.562520pt;}
.x44_c00493{left:436.080000pt;}
.xaf_c00493{left:438.960000pt;}
.x32_c00493{left:440.160000pt;}
.x4f_c00493{left:444.240000pt;}
.x99_c00493{left:445.680000pt;}
.x7f_c00493{left:449.040000pt;}
.x4b_c00493{left:450.000000pt;}
.x9c_c00493{left:451.752000pt;}
.x53_c00493{left:452.880000pt;}
.xab_c00493{left:455.040000pt;}
.x3d_c00493{left:457.680000pt;}
.x94_c00493{left:460.800000pt;}
.x8f_c00493{left:462.720000pt;}
.x9a_c00493{left:467.280000pt;}
.xa8_c00493{left:470.640000pt;}
.x5b_c00493{left:472.080000pt;}
.x95_c00493{left:473.280000pt;}
.x9d_c00493{left:478.149333pt;}
.xa6_c00493{left:484.800000pt;}
.x61_c00493{left:485.760000pt;}
.x96_c00493{left:489.840000pt;}
.x90_c00493{left:490.800000pt;}
.x45_c00493{left:496.320000pt;}
.x9b_c00493{left:501.120000pt;}
.xa2_c00493{left:503.015525pt;}
.xa9_c00493{left:504.960000pt;}
.xac_c00493{left:509.520000pt;}
.xa3_c00493{left:511.020960pt;}
.x8b_c00493{left:512.880000pt;}
.xb0_c00493{left:515.040000pt;}
.x8c_c00493{left:520.560000pt;}
.x91_c00493{left:522.720000pt;}
.x8e_c00493{left:524.400000pt;}
.x9e_c00493{left:526.898667pt;}
.x97_c00493{left:528.720000pt;}
.x8d_c00493{left:531.600000pt;}
.x92_c00493{left:534.240000pt;}
.xad_c00493{left:538.800000pt;}
.xaa_c00493{left:542.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_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_2f6c0d3825a5d54c0b922384.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;}
.ma3_c00494{transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);-ms-transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.012120,-0.000097,0.002000,0.249992,0,0);}
.m55_c00494{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);}
.m95_c00494{transform:matrix(0.068043,-0.000544,0.002000,0.249992,0,0);-ms-transform:matrix(0.068043,-0.000544,0.002000,0.249992,0,0);-webkit-transform:matrix(0.068043,-0.000544,0.002000,0.249992,0,0);}
.mb7_c00494{transform:matrix(0.113526,-0.000908,0.002000,0.249992,0,0);-ms-transform:matrix(0.113526,-0.000908,0.002000,0.249992,0,0);-webkit-transform:matrix(0.113526,-0.000908,0.002000,0.249992,0,0);}
.m4a_c00494{transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);}
.mad_c00494{transform:matrix(0.143355,-0.001147,0.002000,0.249992,0,0);-ms-transform:matrix(0.143355,-0.001147,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143355,-0.001147,0.002000,0.249992,0,0);}
.m72_c00494{transform:matrix(0.144430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144430,0.000000,0.000000,0.250000,0,0);}
.m61_c00494{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);}
.m6e_c00494{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);}
.mff_c00494{transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153395,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{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);}
.m57_c00494{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);}
.m1a_c00494{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);}
.m35_c00494{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);}
.m23_c00494{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);}
.m9a_c00494{transform:matrix(0.158810,-0.001270,0.002000,0.249992,0,0);-ms-transform:matrix(0.158810,-0.001270,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158810,-0.001270,0.002000,0.249992,0,0);}
.maf_c00494{transform:matrix(0.158820,-0.001271,0.002000,0.249992,0,0);-ms-transform:matrix(0.158820,-0.001271,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158820,-0.001271,0.002000,0.249992,0,0);}
.md1_c00494{transform:matrix(0.159012,-0.001590,0.002500,0.249988,0,0);-ms-transform:matrix(0.159012,-0.001590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159012,-0.001590,0.002500,0.249988,0,0);}
.m27_c00494{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);}
.m7e_c00494{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);}
.m1b_c00494{transform:matrix(0.160355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160355,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{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);}
.m10d_c00494{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);}
.ma8_c00494{transform:matrix(0.161720,-0.001294,0.002000,0.249992,0,0);-ms-transform:matrix(0.161720,-0.001294,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161720,-0.001294,0.002000,0.249992,0,0);}
.m58_c00494{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);}
.m44_c00494{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);}
.m25_c00494{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);}
.m5_c00494{transform:matrix(0.163761,-0.005077,0.007746,0.249880,0,0);-ms-transform:matrix(0.163761,-0.005077,0.007746,0.249880,0,0);-webkit-transform:matrix(0.163761,-0.005077,0.007746,0.249880,0,0);}
.mb_c00494{transform:matrix(0.165535,-0.001821,0.002750,0.249985,0,0);-ms-transform:matrix(0.165535,-0.001821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165535,-0.001821,0.002750,0.249985,0,0);}
.mdb_c00494{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.166765,-0.001834,0.002750,0.249985,0,0);-ms-transform:matrix(0.166765,-0.001834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166765,-0.001834,0.002750,0.249985,0,0);}
.m17_c00494{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);}
.m87_c00494{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);}
.m1e_c00494{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);}
.m33_c00494{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);}
.mc1_c00494{transform:matrix(0.168842,-0.001688,0.002500,0.249988,0,0);-ms-transform:matrix(0.168842,-0.001688,0.002500,0.249988,0,0);-webkit-transform:matrix(0.168842,-0.001688,0.002500,0.249988,0,0);}
.m29_c00494{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);}
.m99_c00494{transform:matrix(0.172184,-0.001377,0.002000,0.249992,0,0);-ms-transform:matrix(0.172184,-0.001377,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172184,-0.001377,0.002000,0.249992,0,0);}
.md2_c00494{transform:matrix(0.172471,-0.001725,0.002500,0.249988,0,0);-ms-transform:matrix(0.172471,-0.001725,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172471,-0.001725,0.002500,0.249988,0,0);}
.m109_c00494{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);}
.m49_c00494{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);}
.m2c_c00494{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);}
.m19_c00494{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);}
.m104_c00494{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);}
.mf0_c00494{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);}
.mc5_c00494{transform:matrix(0.177371,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177371,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177371,-0.001774,0.002500,0.249988,0,0);}
.m63_c00494{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);}
.m11_c00494{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);}
.m37_c00494{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);}
.mc4_c00494{transform:matrix(0.178356,-0.001784,0.002500,0.249988,0,0);-ms-transform:matrix(0.178356,-0.001784,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178356,-0.001784,0.002500,0.249988,0,0);}
.mee_c00494{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);}
.m43_c00494{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);}
.m93_c00494{transform:matrix(0.178574,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178574,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178574,-0.001429,0.002000,0.249992,0,0);}
.mec_c00494{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);}
.m22_c00494{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);}
.mdd_c00494{transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);}
.m85_c00494{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);}
.m64_c00494{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);}
.m9f_c00494{transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-ms-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180599,-0.001445,0.002000,0.249992,0,0);}
.m10c_c00494{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);}
.m30_c00494{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);}
.m14_c00494{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);}
.m20_c00494{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);}
.mcc_c00494{transform:matrix(0.183156,-0.001832,0.002500,0.249988,0,0);-ms-transform:matrix(0.183156,-0.001832,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183156,-0.001832,0.002500,0.249988,0,0);}
.m24_c00494{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);}
.m98_c00494{transform:matrix(0.183704,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183704,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183704,-0.001470,0.002000,0.249992,0,0);}
.m68_c00494{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);}
.mea_c00494{transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184555,0.000000,0.000000,0.250000,0,0);}
.mcb_c00494{transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-ms-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184621,-0.001846,0.002500,0.249988,0,0);}
.m107_c00494{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);}
.m75_c00494{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);}
.m10f_c00494{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);}
.m10_c00494{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);}
.m2d_c00494{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);}
.m60_c00494{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);}
.mb0_c00494{transform:matrix(0.186169,-0.001489,0.002000,0.249992,0,0);-ms-transform:matrix(0.186169,-0.001489,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186169,-0.001489,0.002000,0.249992,0,0);}
.m2b_c00494{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);}
.maa_c00494{transform:matrix(0.186959,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.186959,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186959,-0.001496,0.002000,0.249992,0,0);}
.ma2_c00494{transform:matrix(0.187004,-0.001496,0.002000,0.249992,0,0);-ms-transform:matrix(0.187004,-0.001496,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187004,-0.001496,0.002000,0.249992,0,0);}
.m42_c00494{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);}
.m9c_c00494{transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187889,-0.001503,0.002000,0.249992,0,0);}
.ma6_c00494{transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187894,-0.001503,0.002000,0.249992,0,0);}
.mf_c00494{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);}
.m88_c00494{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);}
.m18_c00494{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);}
.m12_c00494{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);}
.m73_c00494{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);}
.m28_c00494{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);}
.mb8_c00494{transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);}
.me5_c00494{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);}
.m8a_c00494{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);}
.me_c00494{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);}
.m2f_c00494{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);}
.m39_c00494{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);}
.m103_c00494{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);}
.mb2_c00494{transform:matrix(0.191394,-0.001531,0.002000,0.249992,0,0);-ms-transform:matrix(0.191394,-0.001531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191394,-0.001531,0.002000,0.249992,0,0);}
.m6f_c00494{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);}
.m100_c00494{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);}
.mce_c00494{transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);-ms-transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192180,-0.001922,0.002500,0.249988,0,0);}
.md3_c00494{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);}
.m5c_c00494{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_c00494{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);}
.m5f_c00494{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);}
.m10e_c00494{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);}
.m6d_c00494{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);}
.m8b_c00494{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);}
.ma1_c00494{transform:matrix(0.195859,-0.001567,0.002000,0.249992,0,0);-ms-transform:matrix(0.195859,-0.001567,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195859,-0.001567,0.002000,0.249992,0,0);}
.m6a_c00494{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);}
.md4_c00494{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);}
.m101_c00494{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);}
.m4_c00494{transform:matrix(0.196416,-0.006089,0.007746,0.249880,0,0);-ms-transform:matrix(0.196416,-0.006089,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196416,-0.006089,0.007746,0.249880,0,0);}
.mb9_c00494{transform:matrix(0.196694,-0.001574,0.002000,0.249992,0,0);-ms-transform:matrix(0.196694,-0.001574,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196694,-0.001574,0.002000,0.249992,0,0);}
.m5a_c00494{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);}
.m7d_c00494{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);}
.m1f_c00494{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);}
.mf1_c00494{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);}
.m97_c00494{transform:matrix(0.198694,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198694,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198694,-0.001590,0.002000,0.249992,0,0);}
.m1_c00494{transform:matrix(0.198705,-0.006160,0.007746,0.249880,0,0);-ms-transform:matrix(0.198705,-0.006160,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198705,-0.006160,0.007746,0.249880,0,0);}
.mf6_c00494{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);}
.m62_c00494{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);}
.m65_c00494{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);}
.mb3_c00494{transform:matrix(0.200679,-0.001605,0.002000,0.249992,0,0);-ms-transform:matrix(0.200679,-0.001605,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200679,-0.001605,0.002000,0.249992,0,0);}
.mca_c00494{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);}
.mcd_c00494{transform:matrix(0.200790,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200790,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200790,-0.002008,0.002500,0.249988,0,0);}
.meb_c00494{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);}
.m3a_c00494{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);}
.md9_c00494{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);}
.m66_c00494{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);}
.mbc_c00494{transform:matrix(0.201849,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201849,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201849,-0.001615,0.002000,0.249992,0,0);}
.m70_c00494{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);}
.m8_c00494{transform:matrix(0.202168,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202168,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202168,-0.002224,0.002750,0.249985,0,0);}
.mae_c00494{transform:matrix(0.202464,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202464,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202464,-0.001620,0.002000,0.249992,0,0);}
.m10a_c00494{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);}
.mcf_c00494{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);}
.m69_c00494{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);}
.m7f_c00494{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);}
.mb4_c00494{transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);-ms-transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204673,-0.001637,0.002000,0.249992,0,0);}
.ma0_c00494{transform:matrix(0.204958,-0.001640,0.002000,0.249992,0,0);-ms-transform:matrix(0.204958,-0.001640,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204958,-0.001640,0.002000,0.249992,0,0);}
.m71_c00494{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);}
.mbe_c00494{transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205613,-0.001645,0.002000,0.249992,0,0);}
.mda_c00494{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);}
.me2_c00494{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);}
.m6b_c00494{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);}
.mb1_c00494{transform:matrix(0.207888,-0.001663,0.002000,0.249992,0,0);-ms-transform:matrix(0.207888,-0.001663,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207888,-0.001663,0.002000,0.249992,0,0);}
.m15_c00494{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);}
.mdc_c00494{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);}
.m59_c00494{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);}
.m114_c00494{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);}
.m108_c00494{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);}
.m52_c00494{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);}
.mc0_c00494{transform:matrix(0.209905,-0.002099,0.002500,0.249988,0,0);-ms-transform:matrix(0.209905,-0.002099,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209905,-0.002099,0.002500,0.249988,0,0);}
.m21_c00494{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);}
.mac_c00494{transform:matrix(0.210468,-0.001684,0.002000,0.249992,0,0);-ms-transform:matrix(0.210468,-0.001684,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210468,-0.001684,0.002000,0.249992,0,0);}
.m4e_c00494{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);}
.m13_c00494{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);}
.m110_c00494{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);}
.m40_c00494{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);}
.m38_c00494{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);}
.m2e_c00494{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);}
.ma9_c00494{transform:matrix(0.212773,-0.001702,0.002000,0.249992,0,0);-ms-transform:matrix(0.212773,-0.001702,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212773,-0.001702,0.002000,0.249992,0,0);}
.mf3_c00494{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);}
.m6c_c00494{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);}
.ma7_c00494{transform:matrix(0.212913,-0.001703,0.002000,0.249992,0,0);-ms-transform:matrix(0.212913,-0.001703,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212913,-0.001703,0.002000,0.249992,0,0);}
.me4_c00494{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);}
.m5d_c00494{transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);}
.md5_c00494{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);}
.mde_c00494{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);}
.m7a_c00494{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);}
.mc7_c00494{transform:matrix(0.214564,-0.002146,0.002500,0.249988,0,0);-ms-transform:matrix(0.214564,-0.002146,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214564,-0.002146,0.002500,0.249988,0,0);}
.md_c00494{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);}
.m76_c00494{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);}
.m1c_c00494{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);}
.m10b_c00494{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);}
.m41_c00494{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);}
.m92_c00494{transform:matrix(0.215828,-0.001727,0.002000,0.249992,0,0);-ms-transform:matrix(0.215828,-0.001727,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215828,-0.001727,0.002000,0.249992,0,0);}
.mbf_c00494{transform:matrix(0.215923,-0.001727,0.002000,0.249992,0,0);-ms-transform:matrix(0.215923,-0.001727,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215923,-0.001727,0.002000,0.249992,0,0);}
.md7_c00494{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);}
.m16_c00494{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);}
.m112_c00494{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);}
.mbd_c00494{transform:matrix(0.218073,-0.001745,0.002000,0.249992,0,0);-ms-transform:matrix(0.218073,-0.001745,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218073,-0.001745,0.002000,0.249992,0,0);}
.mc6_c00494{transform:matrix(0.218194,-0.002182,0.002500,0.249988,0,0);-ms-transform:matrix(0.218194,-0.002182,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218194,-0.002182,0.002500,0.249988,0,0);}
.m3b_c00494{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);}
.mbb_c00494{transform:matrix(0.218268,-0.001746,0.002000,0.249992,0,0);-ms-transform:matrix(0.218268,-0.001746,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218268,-0.001746,0.002000,0.249992,0,0);}
.md0_c00494{transform:matrix(0.218669,-0.002187,0.002500,0.249988,0,0);-ms-transform:matrix(0.218669,-0.002187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218669,-0.002187,0.002500,0.249988,0,0);}
.mc2_c00494{transform:matrix(0.218704,-0.002187,0.002500,0.249988,0,0);-ms-transform:matrix(0.218704,-0.002187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218704,-0.002187,0.002500,0.249988,0,0);}
.m83_c00494{transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{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);}
.mba_c00494{transform:matrix(0.220863,-0.001767,0.002000,0.249992,0,0);-ms-transform:matrix(0.220863,-0.001767,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220863,-0.001767,0.002000,0.249992,0,0);}
.mb6_c00494{transform:matrix(0.221103,-0.001769,0.002000,0.249992,0,0);-ms-transform:matrix(0.221103,-0.001769,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221103,-0.001769,0.002000,0.249992,0,0);}
.m7b_c00494{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);}
.m115_c00494{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{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);}
.mdf_c00494{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);}
.ma5_c00494{transform:matrix(0.224073,-0.001793,0.002000,0.249992,0,0);-ms-transform:matrix(0.224073,-0.001793,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224073,-0.001793,0.002000,0.249992,0,0);}
.m81_c00494{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);}
.m9d_c00494{transform:matrix(0.224488,-0.001796,0.002000,0.249992,0,0);-ms-transform:matrix(0.224488,-0.001796,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224488,-0.001796,0.002000,0.249992,0,0);}
.mf2_c00494{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);}
.m1d_c00494{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);}
.m77_c00494{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);}
.me6_c00494{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);}
.m3f_c00494{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00494{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);}
.m2_c00494{transform:matrix(0.227191,-0.007043,0.007746,0.249880,0,0);-ms-transform:matrix(0.227191,-0.007043,0.007746,0.249880,0,0);-webkit-transform:matrix(0.227191,-0.007043,0.007746,0.249880,0,0);}
.m2a_c00494{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);}
.me3_c00494{transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);}
.m106_c00494{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);}
.m56_c00494{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);}
.m36_c00494{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);}
.m113_c00494{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.mb5_c00494{transform:matrix(0.230943,-0.001848,0.002000,0.249992,0,0);-ms-transform:matrix(0.230943,-0.001848,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230943,-0.001848,0.002000,0.249992,0,0);}
.m86_c00494{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);}
.m84_c00494{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);}
.m45_c00494{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);}
.m74_c00494{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);}
.md6_c00494{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.mfe_c00494{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);}
.m67_c00494{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);}
.mf4_c00494{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);}
.m117_c00494{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);}
.mab_c00494{transform:matrix(0.236262,-0.001890,0.002000,0.249992,0,0);-ms-transform:matrix(0.236262,-0.001890,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236262,-0.001890,0.002000,0.249992,0,0);}
.mf5_c00494{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);}
.m6_c00494{transform:matrix(0.243370,-0.002677,0.002750,0.249985,0,0);-ms-transform:matrix(0.243370,-0.002677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243370,-0.002677,0.002750,0.249985,0,0);}
.m3d_c00494{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);}
.me0_c00494{transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245735,0.000000,0.000000,0.250000,0,0);}
.m47_c00494{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);}
.m96_c00494{transform:matrix(0.249462,-0.001996,0.002000,0.249992,0,0);-ms-transform:matrix(0.249462,-0.001996,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249462,-0.001996,0.002000,0.249992,0,0);}
.me9_c00494{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.252990,-0.002783,0.002750,0.249985,0,0);-ms-transform:matrix(0.252990,-0.002783,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252990,-0.002783,0.002750,0.249985,0,0);}
.m89_c00494{transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);}
.ma4_c00494{transform:matrix(0.254217,-0.002034,0.002000,0.249992,0,0);-ms-transform:matrix(0.254217,-0.002034,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254217,-0.002034,0.002000,0.249992,0,0);}
.m111_c00494{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00494{transform:matrix(0.257267,-0.002058,0.002000,0.249992,0,0);-ms-transform:matrix(0.257267,-0.002058,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257267,-0.002058,0.002000,0.249992,0,0);}
.m90_c00494{transform:matrix(0.259277,-0.002074,0.002000,0.249992,0,0);-ms-transform:matrix(0.259277,-0.002074,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259277,-0.002074,0.002000,0.249992,0,0);}
.mc3_c00494{transform:matrix(0.260962,-0.002610,0.002500,0.249988,0,0);-ms-transform:matrix(0.260962,-0.002610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260962,-0.002610,0.002500,0.249988,0,0);}
.m7c_c00494{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);}
.m4b_c00494{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);}
.med_c00494{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);}
.m82_c00494{transform:matrix(0.265545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265545,0.000000,0.000000,0.250000,0,0);}
.me1_c00494{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);}
.mf9_c00494{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.268341,-0.002147,0.002000,0.249992,0,0);-ms-transform:matrix(0.268341,-0.002147,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268341,-0.002147,0.002000,0.249992,0,0);}
.m4d_c00494{transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270210,0.000000,0.000000,0.250000,0,0);}
.m4f_c00494{transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270630,0.000000,0.000000,0.250000,0,0);}
.me8_c00494{transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270730,0.000000,0.000000,0.250000,0,0);}
.m102_c00494{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);}
.m8c_c00494{transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272845,0.000000,0.000000,0.250000,0,0);}
.m79_c00494{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);}
.m26_c00494{transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);}
.mf7_c00494{transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);}
.me7_c00494{transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286730,0.000000,0.000000,0.250000,0,0);}
.md8_c00494{transform:matrix(0.288950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00494{transform:matrix(0.289806,-0.002898,0.002500,0.249988,0,0);-ms-transform:matrix(0.289806,-0.002898,0.002500,0.249988,0,0);-webkit-transform:matrix(0.289806,-0.002898,0.002500,0.249988,0,0);}
.m8e_c00494{transform:matrix(0.302875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302875,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307960,0.000000,0.000000,0.250000,0,0);}
.m78_c00494{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);}
.m5e_c00494{transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320515,0.000000,0.000000,0.250000,0,0);}
.mef_c00494{transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332395,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.334099,-0.002673,0.002000,0.249992,0,0);-ms-transform:matrix(0.334099,-0.002673,0.002000,0.249992,0,0);-webkit-transform:matrix(0.334099,-0.002673,0.002000,0.249992,0,0);}
.m48_c00494{transform:matrix(0.334470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334470,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347815,0.000000,0.000000,0.250000,0,0);}
.mc9_c00494{transform:matrix(0.350172,-0.003502,0.002500,0.249988,0,0);-ms-transform:matrix(0.350172,-0.003502,0.002500,0.249988,0,0);-webkit-transform:matrix(0.350172,-0.003502,0.002500,0.249988,0,0);}
.m8d_c00494{transform:matrix(0.354810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354810,0.000000,0.000000,0.250000,0,0);}
.mfc_c00494{transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.365523,-0.004021,0.002750,0.249985,0,0);-ms-transform:matrix(0.365523,-0.004021,0.002750,0.249985,0,0);-webkit-transform:matrix(0.365523,-0.004021,0.002750,0.249985,0,0);}
.m31_c00494{transform:matrix(0.390585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390585,0.000000,0.000000,0.250000,0,0);}
.m50_c00494{transform:matrix(0.414170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414170,0.000000,0.000000,0.250000,0,0);}
.m116_c00494{transform:matrix(0.438715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438715,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.456791,-0.014161,0.007746,0.249880,0,0);-ms-transform:matrix(0.456791,-0.014161,0.007746,0.249880,0,0);-webkit-transform:matrix(0.456791,-0.014161,0.007746,0.249880,0,0);}
.m3_c00494{transform:matrix(0.457680,-0.014188,0.007746,0.249880,0,0);-ms-transform:matrix(0.457680,-0.014188,0.007746,0.249880,0,0);-webkit-transform:matrix(0.457680,-0.014188,0.007746,0.249880,0,0);}
.mfa_c00494{transform:matrix(0.464375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464375,0.000000,0.000000,0.250000,0,0);}
.m53_c00494{transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);}
.m54_c00494{transform:matrix(0.507425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507425,0.000000,0.000000,0.250000,0,0);}
.m105_c00494{transform:matrix(0.522995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522995,0.000000,0.000000,0.250000,0,0);}
.m9b_c00494{transform:matrix(0.532703,-0.004262,0.002000,0.249992,0,0);-ms-transform:matrix(0.532703,-0.004262,0.002000,0.249992,0,0);-webkit-transform:matrix(0.532703,-0.004262,0.002000,0.249992,0,0);}
.m9_c00494{transform:matrix(0.539817,-0.005938,0.002750,0.249985,0,0);-ms-transform:matrix(0.539817,-0.005938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.539817,-0.005938,0.002750,0.249985,0,0);}
.mf8_c00494{transform:matrix(0.581530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581530,0.000000,0.000000,0.250000,0,0);}
.m4c_c00494{transform:matrix(0.713720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713720,0.000000,0.000000,0.250000,0,0);}
.m51_c00494{transform:matrix(0.751385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751385,0.000000,0.000000,0.250000,0,0);}
.mfb_c00494{transform:matrix(0.836615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836615,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;}
.fs14_c00494{font-size:46.200000px;}
.fs12_c00494{font-size:49.350000px;}
.fs15_c00494{font-size:50.400000px;}
.fs17_c00494{font-size:51.450000px;}
.fs10_c00494{font-size:51.451646px;}
.fs11_c00494{font-size:51.452572px;}
.fs16_c00494{font-size:52.500000px;}
.fs13_c00494{font-size:53.550000px;}
.fs9_c00494{font-size:59.850000px;}
.fsb_c00494{font-size:61.950000px;}
.fse_c00494{font-size:63.002016px;}
.fs4_c00494{font-size:64.050000px;}
.fsd_c00494{font-size:65.102083px;}
.fs8_c00494{font-size:66.150000px;}
.fs7_c00494{font-size:68.250000px;}
.fsa_c00494{font-size:69.300000px;}
.fsc_c00494{font-size:69.302218px;}
.fs6_c00494{font-size:70.350000px;}
.fsf_c00494{font-size:70.352251px;}
.fs3_c00494{font-size:71.400000px;}
.fs2_c00494{font-size:71.404320px;}
.fs5_c00494{font-size:72.450000px;}
.fs1_c00494{font-size:97.696910px;}
.fs0_c00494{font-size:234.262482px;}
.y0_c00494{bottom:0.000000px;}
.y65_c00494{bottom:145.251000px;}
.y64_c00494{bottom:174.801000px;}
.y68_c00494{bottom:176.580000px;}
.y67_c00494{bottom:193.576500px;}
.y75_c00494{bottom:195.564000px;}
.y63_c00494{bottom:210.376500px;}
.y6c_c00494{bottom:212.761500px;}
.y6d_c00494{bottom:213.000000px;}
.y6e_c00494{bottom:213.328500px;}
.y6f_c00494{bottom:213.604500px;}
.y70_c00494{bottom:213.885000px;}
.y71_c00494{bottom:214.252500px;}
.y72_c00494{bottom:214.758000px;}
.y73_c00494{bottom:215.046000px;}
.y74_c00494{bottom:215.472000px;}
.y62_c00494{bottom:228.907500px;}
.y6b_c00494{bottom:231.934500px;}
.y61_c00494{bottom:246.891000px;}
.y66_c00494{bottom:249.661500px;}
.y6a_c00494{bottom:250.654500px;}
.y60_c00494{bottom:265.117500px;}
.y69_c00494{bottom:267.733500px;}
.y4d_c00494{bottom:282.151500px;}
.y4e_c00494{bottom:282.397155px;}
.y4f_c00494{bottom:282.607800px;}
.y50_c00494{bottom:282.745470px;}
.y51_c00494{bottom:283.091100px;}
.y52_c00494{bottom:283.382625px;}
.y53_c00494{bottom:283.606530px;}
.y54_c00494{bottom:283.982190px;}
.y55_c00494{bottom:284.371005px;}
.y56_c00494{bottom:284.514420px;}
.y57_c00494{bottom:284.654460px;}
.y58_c00494{bottom:284.967375px;}
.y59_c00494{bottom:285.167250px;}
.y5a_c00494{bottom:285.356535px;}
.y5b_c00494{bottom:285.826200px;}
.y5c_c00494{bottom:286.058610px;}
.y5d_c00494{bottom:286.320420px;}
.y5e_c00494{bottom:286.657980px;}
.y5f_c00494{bottom:286.771395px;}
.y3f_c00494{bottom:299.697924px;}
.y40_c00494{bottom:299.910600px;}
.y41_c00494{bottom:300.202644px;}
.y42_c00494{bottom:300.407556px;}
.y43_c00494{bottom:300.818472px;}
.y44_c00494{bottom:301.149192px;}
.y45_c00494{bottom:301.261308px;}
.y46_c00494{bottom:301.537116px;}
.y47_c00494{bottom:302.203716px;}
.y48_c00494{bottom:302.803344px;}
.y49_c00494{bottom:302.888700px;}
.y4a_c00494{bottom:303.085656px;}
.y4b_c00494{bottom:303.625596px;}
.y4c_c00494{bottom:303.982812px;}
.y3b_c00494{bottom:352.850004px;}
.y39_c00494{bottom:352.850040px;}
.y3c_c00494{bottom:352.850472px;}
.y3a_c00494{bottom:352.850616px;}
.y3d_c00494{bottom:352.850640px;}
.y3e_c00494{bottom:352.851108px;}
.y30_c00494{bottom:374.219172px;}
.y31_c00494{bottom:374.329176px;}
.y32_c00494{bottom:375.042492px;}
.y33_c00494{bottom:375.921876px;}
.y34_c00494{bottom:376.147572px;}
.y35_c00494{bottom:376.500192px;}
.y36_c00494{bottom:376.743324px;}
.y37_c00494{bottom:377.111712px;}
.y38_c00494{bottom:377.358600px;}
.y2d_c00494{bottom:398.902188px;}
.y2e_c00494{bottom:398.902356px;}
.y2c_c00494{bottom:398.902680px;}
.y2a_c00494{bottom:398.902824px;}
.y2f_c00494{bottom:398.903064px;}
.y2b_c00494{bottom:398.903220px;}
.y29_c00494{bottom:398.903256px;}
.y1e_c00494{bottom:420.549000px;}
.y1f_c00494{bottom:420.810816px;}
.y20_c00494{bottom:421.143288px;}
.y21_c00494{bottom:421.320588px;}
.y22_c00494{bottom:421.648944px;}
.y23_c00494{bottom:422.018208px;}
.y24_c00494{bottom:422.048292px;}
.y25_c00494{bottom:422.426004px;}
.y26_c00494{bottom:422.559672px;}
.y27_c00494{bottom:422.888376px;}
.y28_c00494{bottom:423.307452px;}
.y1d_c00494{bottom:444.799500px;}
.y1c_c00494{bottom:466.809000px;}
.y1b_c00494{bottom:489.339000px;}
.y1a_c00494{bottom:512.107500px;}
.y19_c00494{bottom:534.690000px;}
.y18_c00494{bottom:557.469000px;}
.y17_c00494{bottom:580.893000px;}
.y16_c00494{bottom:603.418500px;}
.y15_c00494{bottom:648.255000px;}
.y14_c00494{bottom:670.206000px;}
.y13_c00494{bottom:692.475000px;}
.y12_c00494{bottom:715.111500px;}
.y11_c00494{bottom:737.464500px;}
.y10_c00494{bottom:760.627500px;}
.yf_c00494{bottom:783.877500px;}
.ye_c00494{bottom:806.407500px;}
.y7_c00494{bottom:827.013000px;}
.y8_c00494{bottom:827.405667px;}
.y9_c00494{bottom:827.846596px;}
.ya_c00494{bottom:828.742117px;}
.yb_c00494{bottom:829.365388px;}
.yc_c00494{bottom:829.854333px;}
.yd_c00494{bottom:830.590035px;}
.y4_c00494{bottom:873.908545px;}
.y5_c00494{bottom:876.334221px;}
.y6_c00494{bottom:877.127185px;}
.y1_c00494{bottom:911.062500px;}
.y2_c00494{bottom:915.883620px;}
.y3_c00494{bottom:919.172239px;}
.h16_c00494{height:46.200000px;}
.h14_c00494{height:49.350000px;}
.h17_c00494{height:50.400000px;}
.h19_c00494{height:51.450000px;}
.h12_c00494{height:51.451646px;}
.h13_c00494{height:51.452572px;}
.h18_c00494{height:52.500000px;}
.h15_c00494{height:53.550000px;}
.hb_c00494{height:59.850000px;}
.hd_c00494{height:61.950000px;}
.h10_c00494{height:63.002016px;}
.h6_c00494{height:64.050000px;}
.hf_c00494{height:65.102083px;}
.ha_c00494{height:66.150000px;}
.h9_c00494{height:68.250000px;}
.hc_c00494{height:69.300000px;}
.he_c00494{height:69.302218px;}
.h8_c00494{height:70.350000px;}
.h11_c00494{height:70.352251px;}
.h5_c00494{height:71.400000px;}
.h4_c00494{height:71.404320px;}
.h7_c00494{height:72.450000px;}
.h3_c00494{height:97.696910px;}
.h2_c00494{height:234.262482px;}
.h1_c00494{height:1005.000000px;}
.h0_c00494{height:1005.150000px;}
.w0_c00494{width:715.200000px;}
.w1_c00494{width:715.500000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:101.239500px;}
.x91_c00494{left:110.430000px;}
.x7a_c00494{left:112.380084px;}
.x8b_c00494{left:113.670000px;}
.x97_c00494{left:125.010000px;}
.x9b_c00494{left:126.090000px;}
.x94_c00494{left:128.250000px;}
.x8c_c00494{left:130.950000px;}
.x92_c00494{left:132.030000px;}
.x7b_c00494{left:133.714248px;}
.x70_c00494{left:138.379116px;}
.x21_c00494{left:140.940000px;}
.x9c_c00494{left:143.370000px;}
.x7_c00494{left:145.524000px;}
.x44_c00494{left:146.880000px;}
.x71_c00494{left:148.379376px;}
.x89_c00494{left:149.850000px;}
.x95_c00494{left:150.930000px;}
.x96_c00494{left:152.820000px;}
.x81_c00494{left:158.587500px;}
.x3c_c00494{left:162.540000px;}
.x52_c00494{left:165.780000px;}
.x15_c00494{left:169.830000px;}
.x82_c00494{left:172.354500px;}
.x1b_c00494{left:174.150000px;}
.x22_c00494{left:176.580000px;}
.x67_c00494{left:178.902000px;}
.x58_c00494{left:180.090000px;}
.x8_c00494{left:181.221000px;}
.xe_c00494{left:183.060000px;}
.x4_c00494{left:185.101180px;}
.x45_c00494{left:186.570000px;}
.x2b_c00494{left:187.650000px;}
.x16_c00494{left:189.270000px;}
.x93_c00494{left:195.750000px;}
.x8d_c00494{left:197.100000px;}
.x1c_c00494{left:200.070000px;}
.x49_c00494{left:204.660000px;}
.x46_c00494{left:207.360000px;}
.x5c_c00494{left:209.790000px;}
.x17_c00494{left:212.220000px;}
.x8e_c00494{left:215.730000px;}
.x4d_c00494{left:218.970000px;}
.x9_c00494{left:221.305500px;}
.xf_c00494{left:223.290000px;}
.x7c_c00494{left:224.509296px;}
.x4a_c00494{left:225.990000px;}
.x2c_c00494{left:228.690000px;}
.x76_c00494{left:232.736592px;}
.x83_c00494{left:236.070000px;}
.x23_c00494{left:237.600000px;}
.x53_c00494{left:240.030000px;}
.x98_c00494{left:241.380000px;}
.x68_c00494{left:242.623500px;}
.x47_c00494{left:243.810000px;}
.x28_c00494{left:244.890000px;}
.x3d_c00494{left:245.970000px;}
.x33_c00494{left:247.320000px;}
.x62_c00494{left:251.100000px;}
.x9d_c00494{left:252.720000px;}
.x3e_c00494{left:253.800000px;}
.x8a_c00494{left:255.420000px;}
.x2_c00494{left:256.759500px;}
.x84_c00494{left:258.460500px;}
.x4e_c00494{left:260.820000px;}
.x10_c00494{left:263.250000px;}
.x18_c00494{left:265.140000px;}
.x9e_c00494{left:267.300000px;}
.x7d_c00494{left:268.800588px;}
.x5d_c00494{left:270.270000px;}
.x2d_c00494{left:271.620000px;}
.x4b_c00494{left:275.400000px;}
.x8f_c00494{left:280.530000px;}
.x69_c00494{left:283.668000px;}
.x4f_c00494{left:285.390000px;}
.x19_c00494{left:289.440000px;}
.x72_c00494{left:293.088396px;}
.x6e_c00494{left:294.572652px;}
.x7e_c00494{left:296.338644px;}
.xa_c00494{left:302.716500px;}
.x3f_c00494{left:306.720000px;}
.x5e_c00494{left:309.150000px;}
.x90_c00494{left:310.230000px;}
.x73_c00494{left:313.612404px;}
.x34_c00494{left:314.820000px;}
.x1d_c00494{left:316.440000px;}
.x29_c00494{left:322.110000px;}
.x48_c00494{left:323.190000px;}
.x50_c00494{left:324.270000px;}
.x77_c00494{left:325.349520px;}
.x24_c00494{left:328.590000px;}
.x6a_c00494{left:329.826000px;}
.x6b_c00494{left:333.586500px;}
.x85_c00494{left:334.908000px;}
.x1a_c00494{left:336.960000px;}
.x11_c00494{left:339.930000px;}
.x54_c00494{left:341.010000px;}
.x40_c00494{left:342.900000px;}
.x59_c00494{left:344.250000px;}
.x35_c00494{left:346.410000px;}
.x2e_c00494{left:349.920000px;}
.x78_c00494{left:351.809712px;}
.x2a_c00494{left:355.860000px;}
.xb_c00494{left:359.377500px;}
.x99_c00494{left:360.450000px;}
.x3_c00494{left:362.844000px;}
.xa8_c00494{left:364.317000px;}
.x74_c00494{left:367.830108px;}
.x25_c00494{left:369.900000px;}
.x6f_c00494{left:375.844860px;}
.x38_c00494{left:378.000000px;}
.x2f_c00494{left:379.350000px;}
.x6c_c00494{left:380.800500px;}
.x41_c00494{left:383.130000px;}
.x1e_c00494{left:385.830000px;}
.x9f_c00494{left:386.910000px;}
.x12_c00494{left:390.150000px;}
.x39_c00494{left:392.040000px;}
.x26_c00494{left:393.660000px;}
.x36_c00494{left:398.250000px;}
.x5f_c00494{left:401.220000px;}
.xc_c00494{left:403.827000px;}
.x5_c00494{left:405.598251px;}
.x1f_c00494{left:408.510000px;}
.x79_c00494{left:413.372148px;}
.x86_c00494{left:414.532500px;}
.x55_c00494{left:418.770000px;}
.x37_c00494{left:421.470000px;}
.x75_c00494{left:423.738264px;}
.xa4_c00494{left:426.600000px;}
.x13_c00494{left:428.490000px;}
.x4c_c00494{left:430.380000px;}
.x63_c00494{left:431.460000px;}
.x27_c00494{left:433.620000px;}
.x6d_c00494{left:438.597000px;}
.xa0_c00494{left:440.910000px;}
.xa9_c00494{left:444.559500px;}
.xa5_c00494{left:448.470000px;}
.x56_c00494{left:450.630000px;}
.x14_c00494{left:453.600000px;}
.x30_c00494{left:460.080000px;}
.x64_c00494{left:464.400000px;}
.x5a_c00494{left:465.480000px;}
.xa1_c00494{left:467.910000px;}
.xd_c00494{left:470.709000px;}
.xa6_c00494{left:474.120000px;}
.x20_c00494{left:476.550000px;}
.x6_c00494{left:477.722438px;}
.x3a_c00494{left:479.250000px;}
.x60_c00494{left:481.140000px;}
.x5b_c00494{left:486.810000px;}
.x31_c00494{left:489.510000px;}
.x65_c00494{left:490.860000px;}
.x42_c00494{left:497.880000px;}
.x51_c00494{left:499.230000px;}
.x9a_c00494{left:501.120000px;}
.x3b_c00494{left:503.280000px;}
.x7f_c00494{left:505.270308px;}
.xaa_c00494{left:506.914500px;}
.x61_c00494{left:520.020000px;}
.x57_c00494{left:522.720000px;}
.xab_c00494{left:527.449500px;}
.x32_c00494{left:528.930000px;}
.x66_c00494{left:530.010000px;}
.xa7_c00494{left:539.730000px;}
.x80_c00494{left:540.921732px;}
.x43_c00494{left:554.040000px;}
.xac_c00494{left:557.916000px;}
.xa3_c00494{left:560.790000px;}
.x87_c00494{left:563.605500px;}
.xa2_c00494{left:573.210000px;}
.x88_c00494{left:574.947000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs14_c00494{font-size:41.066667pt;}
.fs12_c00494{font-size:43.866667pt;}
.fs15_c00494{font-size:44.800000pt;}
.fs17_c00494{font-size:45.733333pt;}
.fs10_c00494{font-size:45.734797pt;}
.fs11_c00494{font-size:45.735620pt;}
.fs16_c00494{font-size:46.666667pt;}
.fs13_c00494{font-size:47.600000pt;}
.fs9_c00494{font-size:53.200000pt;}
.fsb_c00494{font-size:55.066667pt;}
.fse_c00494{font-size:56.001792pt;}
.fs4_c00494{font-size:56.933333pt;}
.fsd_c00494{font-size:57.868518pt;}
.fs8_c00494{font-size:58.800000pt;}
.fs7_c00494{font-size:60.666667pt;}
.fsa_c00494{font-size:61.600000pt;}
.fsc_c00494{font-size:61.601971pt;}
.fs6_c00494{font-size:62.533333pt;}
.fsf_c00494{font-size:62.535334pt;}
.fs3_c00494{font-size:63.466667pt;}
.fs2_c00494{font-size:63.470506pt;}
.fs5_c00494{font-size:64.400000pt;}
.fs1_c00494{font-size:86.841697pt;}
.fs0_c00494{font-size:208.233317pt;}
.y0_c00494{bottom:0.000000pt;}
.y65_c00494{bottom:129.112000pt;}
.y64_c00494{bottom:155.378667pt;}
.y68_c00494{bottom:156.960000pt;}
.y67_c00494{bottom:172.068000pt;}
.y75_c00494{bottom:173.834667pt;}
.y63_c00494{bottom:187.001333pt;}
.y6c_c00494{bottom:189.121333pt;}
.y6d_c00494{bottom:189.333333pt;}
.y6e_c00494{bottom:189.625333pt;}
.y6f_c00494{bottom:189.870667pt;}
.y70_c00494{bottom:190.120000pt;}
.y71_c00494{bottom:190.446667pt;}
.y72_c00494{bottom:190.896000pt;}
.y73_c00494{bottom:191.152000pt;}
.y74_c00494{bottom:191.530667pt;}
.y62_c00494{bottom:203.473333pt;}
.y6b_c00494{bottom:206.164000pt;}
.y61_c00494{bottom:219.458667pt;}
.y66_c00494{bottom:221.921333pt;}
.y6a_c00494{bottom:222.804000pt;}
.y60_c00494{bottom:235.660000pt;}
.y69_c00494{bottom:237.985333pt;}
.y4d_c00494{bottom:250.801333pt;}
.y4e_c00494{bottom:251.019693pt;}
.y4f_c00494{bottom:251.206933pt;}
.y50_c00494{bottom:251.329307pt;}
.y51_c00494{bottom:251.636533pt;}
.y52_c00494{bottom:251.895667pt;}
.y53_c00494{bottom:252.094693pt;}
.y54_c00494{bottom:252.428613pt;}
.y55_c00494{bottom:252.774227pt;}
.y56_c00494{bottom:252.901707pt;}
.y57_c00494{bottom:253.026187pt;}
.y58_c00494{bottom:253.304333pt;}
.y59_c00494{bottom:253.482000pt;}
.y5a_c00494{bottom:253.650253pt;}
.y5b_c00494{bottom:254.067733pt;}
.y5c_c00494{bottom:254.274320pt;}
.y5d_c00494{bottom:254.507040pt;}
.y5e_c00494{bottom:254.807093pt;}
.y5f_c00494{bottom:254.907907pt;}
.y3f_c00494{bottom:266.398155pt;}
.y40_c00494{bottom:266.587200pt;}
.y41_c00494{bottom:266.846795pt;}
.y42_c00494{bottom:267.028939pt;}
.y43_c00494{bottom:267.394197pt;}
.y44_c00494{bottom:267.688171pt;}
.y45_c00494{bottom:267.787829pt;}
.y46_c00494{bottom:268.032992pt;}
.y47_c00494{bottom:268.625525pt;}
.y48_c00494{bottom:269.158528pt;}
.y49_c00494{bottom:269.234400pt;}
.y4a_c00494{bottom:269.409472pt;}
.y4b_c00494{bottom:269.889419pt;}
.y4c_c00494{bottom:270.206944pt;}
.y3b_c00494{bottom:313.644448pt;}
.y39_c00494{bottom:313.644480pt;}
.y3c_c00494{bottom:313.644864pt;}
.y3a_c00494{bottom:313.644992pt;}
.y3d_c00494{bottom:313.645013pt;}
.y3e_c00494{bottom:313.645429pt;}
.y30_c00494{bottom:332.639264pt;}
.y31_c00494{bottom:332.737045pt;}
.y32_c00494{bottom:333.371104pt;}
.y33_c00494{bottom:334.152779pt;}
.y34_c00494{bottom:334.353397pt;}
.y35_c00494{bottom:334.666837pt;}
.y36_c00494{bottom:334.882955pt;}
.y37_c00494{bottom:335.210411pt;}
.y38_c00494{bottom:335.429867pt;}
.y2d_c00494{bottom:354.579723pt;}
.y2e_c00494{bottom:354.579872pt;}
.y2c_c00494{bottom:354.580160pt;}
.y2a_c00494{bottom:354.580288pt;}
.y2f_c00494{bottom:354.580501pt;}
.y2b_c00494{bottom:354.580640pt;}
.y29_c00494{bottom:354.580672pt;}
.y1e_c00494{bottom:373.821333pt;}
.y1f_c00494{bottom:374.054059pt;}
.y20_c00494{bottom:374.349589pt;}
.y21_c00494{bottom:374.507189pt;}
.y22_c00494{bottom:374.799061pt;}
.y23_c00494{bottom:375.127296pt;}
.y24_c00494{bottom:375.154037pt;}
.y25_c00494{bottom:375.489781pt;}
.y26_c00494{bottom:375.608597pt;}
.y27_c00494{bottom:375.900779pt;}
.y28_c00494{bottom:376.273291pt;}
.y1d_c00494{bottom:395.377333pt;}
.y1c_c00494{bottom:414.941333pt;}
.y1b_c00494{bottom:434.968000pt;}
.y1a_c00494{bottom:455.206667pt;}
.y19_c00494{bottom:475.280000pt;}
.y18_c00494{bottom:495.528000pt;}
.y17_c00494{bottom:516.349333pt;}
.y16_c00494{bottom:536.372000pt;}
.y15_c00494{bottom:576.226667pt;}
.y14_c00494{bottom:595.738667pt;}
.y13_c00494{bottom:615.533333pt;}
.y12_c00494{bottom:635.654667pt;}
.y11_c00494{bottom:655.524000pt;}
.y10_c00494{bottom:676.113333pt;}
.yf_c00494{bottom:696.780000pt;}
.ye_c00494{bottom:716.806667pt;}
.y7_c00494{bottom:735.122667pt;}
.y8_c00494{bottom:735.471704pt;}
.y9_c00494{bottom:735.863641pt;}
.ya_c00494{bottom:736.659660pt;}
.yb_c00494{bottom:737.213679pt;}
.yc_c00494{bottom:737.648296pt;}
.yd_c00494{bottom:738.302253pt;}
.y4_c00494{bottom:776.807596pt;}
.y5_c00494{bottom:778.963752pt;}
.y6_c00494{bottom:779.668609pt;}
.y1_c00494{bottom:809.833333pt;}
.y2_c00494{bottom:814.118773pt;}
.y3_c00494{bottom:817.041991pt;}
.h16_c00494{height:41.066667pt;}
.h14_c00494{height:43.866667pt;}
.h17_c00494{height:44.800000pt;}
.h19_c00494{height:45.733333pt;}
.h12_c00494{height:45.734797pt;}
.h13_c00494{height:45.735620pt;}
.h18_c00494{height:46.666667pt;}
.h15_c00494{height:47.600000pt;}
.hb_c00494{height:53.200000pt;}
.hd_c00494{height:55.066667pt;}
.h10_c00494{height:56.001792pt;}
.h6_c00494{height:56.933333pt;}
.hf_c00494{height:57.868518pt;}
.ha_c00494{height:58.800000pt;}
.h9_c00494{height:60.666667pt;}
.hc_c00494{height:61.600000pt;}
.he_c00494{height:61.601971pt;}
.h8_c00494{height:62.533333pt;}
.h11_c00494{height:62.535334pt;}
.h5_c00494{height:63.466667pt;}
.h4_c00494{height:63.470506pt;}
.h7_c00494{height:64.400000pt;}
.h3_c00494{height:86.841697pt;}
.h2_c00494{height:208.233317pt;}
.h1_c00494{height:893.333333pt;}
.h0_c00494{height:893.466667pt;}
.w0_c00494{width:635.733333pt;}
.w1_c00494{width:636.000000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:89.990667pt;}
.x91_c00494{left:98.160000pt;}
.x7a_c00494{left:99.893408pt;}
.x8b_c00494{left:101.040000pt;}
.x97_c00494{left:111.120000pt;}
.x9b_c00494{left:112.080000pt;}
.x94_c00494{left:114.000000pt;}
.x8c_c00494{left:116.400000pt;}
.x92_c00494{left:117.360000pt;}
.x7b_c00494{left:118.857109pt;}
.x70_c00494{left:123.003659pt;}
.x21_c00494{left:125.280000pt;}
.x9c_c00494{left:127.440000pt;}
.x7_c00494{left:129.354667pt;}
.x44_c00494{left:130.560000pt;}
.x71_c00494{left:131.892779pt;}
.x89_c00494{left:133.200000pt;}
.x95_c00494{left:134.160000pt;}
.x96_c00494{left:135.840000pt;}
.x81_c00494{left:140.966667pt;}
.x3c_c00494{left:144.480000pt;}
.x52_c00494{left:147.360000pt;}
.x15_c00494{left:150.960000pt;}
.x82_c00494{left:153.204000pt;}
.x1b_c00494{left:154.800000pt;}
.x22_c00494{left:156.960000pt;}
.x67_c00494{left:159.024000pt;}
.x58_c00494{left:160.080000pt;}
.x8_c00494{left:161.085333pt;}
.xe_c00494{left:162.720000pt;}
.x4_c00494{left:164.534383pt;}
.x45_c00494{left:165.840000pt;}
.x2b_c00494{left:166.800000pt;}
.x16_c00494{left:168.240000pt;}
.x93_c00494{left:174.000000pt;}
.x8d_c00494{left:175.200000pt;}
.x1c_c00494{left:177.840000pt;}
.x49_c00494{left:181.920000pt;}
.x46_c00494{left:184.320000pt;}
.x5c_c00494{left:186.480000pt;}
.x17_c00494{left:188.640000pt;}
.x8e_c00494{left:191.760000pt;}
.x4d_c00494{left:194.640000pt;}
.x9_c00494{left:196.716000pt;}
.xf_c00494{left:198.480000pt;}
.x7c_c00494{left:199.563819pt;}
.x4a_c00494{left:200.880000pt;}
.x2c_c00494{left:203.280000pt;}
.x76_c00494{left:206.876971pt;}
.x83_c00494{left:209.840000pt;}
.x23_c00494{left:211.200000pt;}
.x53_c00494{left:213.360000pt;}
.x98_c00494{left:214.560000pt;}
.x68_c00494{left:215.665333pt;}
.x47_c00494{left:216.720000pt;}
.x28_c00494{left:217.680000pt;}
.x3d_c00494{left:218.640000pt;}
.x33_c00494{left:219.840000pt;}
.x62_c00494{left:223.200000pt;}
.x9d_c00494{left:224.640000pt;}
.x3e_c00494{left:225.600000pt;}
.x8a_c00494{left:227.040000pt;}
.x2_c00494{left:228.230667pt;}
.x84_c00494{left:229.742667pt;}
.x4e_c00494{left:231.840000pt;}
.x10_c00494{left:234.000000pt;}
.x18_c00494{left:235.680000pt;}
.x9e_c00494{left:237.600000pt;}
.x7d_c00494{left:238.933856pt;}
.x5d_c00494{left:240.240000pt;}
.x2d_c00494{left:241.440000pt;}
.x4b_c00494{left:244.800000pt;}
.x8f_c00494{left:249.360000pt;}
.x69_c00494{left:252.149333pt;}
.x4f_c00494{left:253.680000pt;}
.x19_c00494{left:257.280000pt;}
.x72_c00494{left:260.523019pt;}
.x6e_c00494{left:261.842357pt;}
.x7e_c00494{left:263.412128pt;}
.xa_c00494{left:269.081333pt;}
.x3f_c00494{left:272.640000pt;}
.x5e_c00494{left:274.800000pt;}
.x90_c00494{left:275.760000pt;}
.x73_c00494{left:278.766581pt;}
.x34_c00494{left:279.840000pt;}
.x1d_c00494{left:281.280000pt;}
.x29_c00494{left:286.320000pt;}
.x48_c00494{left:287.280000pt;}
.x50_c00494{left:288.240000pt;}
.x77_c00494{left:289.199573pt;}
.x24_c00494{left:292.080000pt;}
.x6a_c00494{left:293.178667pt;}
.x6b_c00494{left:296.521333pt;}
.x85_c00494{left:297.696000pt;}
.x1a_c00494{left:299.520000pt;}
.x11_c00494{left:302.160000pt;}
.x54_c00494{left:303.120000pt;}
.x40_c00494{left:304.800000pt;}
.x59_c00494{left:306.000000pt;}
.x35_c00494{left:307.920000pt;}
.x2e_c00494{left:311.040000pt;}
.x78_c00494{left:312.719744pt;}
.x2a_c00494{left:316.320000pt;}
.xb_c00494{left:319.446667pt;}
.x99_c00494{left:320.400000pt;}
.x3_c00494{left:322.528000pt;}
.xa8_c00494{left:323.837333pt;}
.x74_c00494{left:326.960096pt;}
.x25_c00494{left:328.800000pt;}
.x6f_c00494{left:334.084320pt;}
.x38_c00494{left:336.000000pt;}
.x2f_c00494{left:337.200000pt;}
.x6c_c00494{left:338.489333pt;}
.x41_c00494{left:340.560000pt;}
.x1e_c00494{left:342.960000pt;}
.x9f_c00494{left:343.920000pt;}
.x12_c00494{left:346.800000pt;}
.x39_c00494{left:348.480000pt;}
.x26_c00494{left:349.920000pt;}
.x36_c00494{left:354.000000pt;}
.x5f_c00494{left:356.640000pt;}
.xc_c00494{left:358.957333pt;}
.x5_c00494{left:360.531779pt;}
.x1f_c00494{left:363.120000pt;}
.x79_c00494{left:367.441909pt;}
.x86_c00494{left:368.473333pt;}
.x55_c00494{left:372.240000pt;}
.x37_c00494{left:374.640000pt;}
.x75_c00494{left:376.656235pt;}
.xa4_c00494{left:379.200000pt;}
.x13_c00494{left:380.880000pt;}
.x4c_c00494{left:382.560000pt;}
.x63_c00494{left:383.520000pt;}
.x27_c00494{left:385.440000pt;}
.x6d_c00494{left:389.864000pt;}
.xa0_c00494{left:391.920000pt;}
.xa9_c00494{left:395.164000pt;}
.xa5_c00494{left:398.640000pt;}
.x56_c00494{left:400.560000pt;}
.x14_c00494{left:403.200000pt;}
.x30_c00494{left:408.960000pt;}
.x64_c00494{left:412.800000pt;}
.x5a_c00494{left:413.760000pt;}
.xa1_c00494{left:415.920000pt;}
.xd_c00494{left:418.408000pt;}
.xa6_c00494{left:421.440000pt;}
.x20_c00494{left:423.600000pt;}
.x6_c00494{left:424.642167pt;}
.x3a_c00494{left:426.000000pt;}
.x60_c00494{left:427.680000pt;}
.x5b_c00494{left:432.720000pt;}
.x31_c00494{left:435.120000pt;}
.x65_c00494{left:436.320000pt;}
.x42_c00494{left:442.560000pt;}
.x51_c00494{left:443.760000pt;}
.x9a_c00494{left:445.440000pt;}
.x3b_c00494{left:447.360000pt;}
.x7f_c00494{left:449.129163pt;}
.xaa_c00494{left:450.590667pt;}
.x61_c00494{left:462.240000pt;}
.x57_c00494{left:464.640000pt;}
.xab_c00494{left:468.844000pt;}
.x32_c00494{left:470.160000pt;}
.x66_c00494{left:471.120000pt;}
.xa7_c00494{left:479.760000pt;}
.x80_c00494{left:480.819317pt;}
.x43_c00494{left:492.480000pt;}
.xac_c00494{left:495.925333pt;}
.xa3_c00494{left:498.480000pt;}
.x87_c00494{left:500.982667pt;}
.xa2_c00494{left:509.520000pt;}
.x88_c00494{left:511.064000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef4e99a7aa2876b3106553d3.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;}
.m46_c00495{transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);-ms-transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.014264,0.000143,-0.002500,0.249988,0,0);}
.mdc_c00495{transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.015149,0.000167,-0.002750,0.249985,0,0);}
.mb6_c00495{transform:matrix(0.093390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093390,0.000000,0.000000,0.250000,0,0);}
.md4_c00495{transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);}
.md5_c00495{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);}
.m5e_c00495{transform:matrix(0.135388,0.001354,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135388,0.001354,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135388,0.001354,-0.002500,0.249988,0,0);}
.mb_c00495{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);}
.mcb_c00495{transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136810,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{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);}
.ma5_c00495{transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139980,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.147598,0.001476,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147598,0.001476,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147598,0.001476,-0.002500,0.249988,0,0);}
.m14_c00495{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);}
.m40_c00495{transform:matrix(0.147965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147965,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152080,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.152880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152880,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{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);}
.md_c00495{transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);}
.md3_c00495{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);}
.m43_c00495{transform:matrix(0.155910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155910,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{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);}
.mc8_c00495{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);}
.m7f_c00495{transform:matrix(0.158782,0.001588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158782,0.001588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158782,0.001588,-0.002500,0.249988,0,0);}
.maf_c00495{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);}
.m1c_c00495{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);}
.m73_c00495{transform:matrix(0.160667,0.001607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160667,0.001607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160667,0.001607,-0.002500,0.249988,0,0);}
.m51_c00495{transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);}
.m6d_c00495{transform:matrix(0.161292,0.001613,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161292,0.001613,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161292,0.001613,-0.002500,0.249988,0,0);}
.m1b_c00495{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.mab_c00495{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);}
.m5c_c00495{transform:matrix(0.163102,0.001631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163102,0.001631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163102,0.001631,-0.002500,0.249988,0,0);}
.m20_c00495{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);}
.mc6_c00495{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m7a_c00495{transform:matrix(0.164782,0.001648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164782,0.001648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164782,0.001648,-0.002500,0.249988,0,0);}
.mb2_c00495{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m76_c00495{transform:matrix(0.167952,0.001680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167952,0.001680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167952,0.001680,-0.002500,0.249988,0,0);}
.mc4_c00495{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);}
.m29_c00495{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);}
.m3c_c00495{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);}
.ma_c00495{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);}
.m1_c00495{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);}
.m50_c00495{transform:matrix(0.170501,0.001705,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170501,0.001705,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170501,0.001705,-0.002500,0.249988,0,0);}
.m10_c00495{transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{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);}
.md2_c00495{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);}
.m38_c00495{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);}
.m68_c00495{transform:matrix(0.172761,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172761,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172761,0.001728,-0.002500,0.249988,0,0);}
.m5d_c00495{transform:matrix(0.172866,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172866,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172866,0.001729,-0.002500,0.249988,0,0);}
.m97_c00495{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);}
.mb9_c00495{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);}
.m63_c00495{transform:matrix(0.175426,0.001754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175426,0.001754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175426,0.001754,-0.002500,0.249988,0,0);}
.m32_c00495{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);}
.m65_c00495{transform:matrix(0.176196,0.001762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176196,0.001762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176196,0.001762,-0.002500,0.249988,0,0);}
.m72_c00495{transform:matrix(0.176231,0.001762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176231,0.001762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176231,0.001762,-0.002500,0.249988,0,0);}
.m5_c00495{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);}
.m57_c00495{transform:matrix(0.177281,0.001773,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177281,0.001773,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177281,0.001773,-0.002500,0.249988,0,0);}
.m9d_c00495{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);}
.mb3_c00495{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);}
.m2c_c00495{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);}
.m77_c00495{transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178101,0.001781,-0.002500,0.249988,0,0);}
.m21_c00495{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);}
.m1d_c00495{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);}
.m22_c00495{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);}
.m2d_c00495{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);}
.m8_c00495{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);}
.m28_c00495{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);}
.m42_c00495{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);}
.maa_c00495{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);}
.m6a_c00495{transform:matrix(0.180061,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180061,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180061,0.001801,-0.002500,0.249988,0,0);}
.ma0_c00495{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);}
.m71_c00495{transform:matrix(0.181311,0.001813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181311,0.001813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181311,0.001813,-0.002500,0.249988,0,0);}
.me_c00495{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);}
.mb0_c00495{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);}
.m53_c00495{transform:matrix(0.182656,0.001827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182656,0.001827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182656,0.001827,-0.002500,0.249988,0,0);}
.m3e_c00495{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);}
.m12_c00495{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);}
.m55_c00495{transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183161,0.001832,-0.002500,0.249988,0,0);}
.m44_c00495{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);}
.m83_c00495{transform:matrix(0.184026,0.001840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184026,0.001840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184026,0.001840,-0.002500,0.249988,0,0);}
.m5a_c00495{transform:matrix(0.184171,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184171,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184171,0.001842,-0.002500,0.249988,0,0);}
.m3_c00495{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);}
.mbf_c00495{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_c00495{transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);}
.m69_c00495{transform:matrix(0.186461,0.001865,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186461,0.001865,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186461,0.001865,-0.002500,0.249988,0,0);}
.m75_c00495{transform:matrix(0.187706,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187706,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187706,0.001877,-0.002500,0.249988,0,0);}
.m8e_c00495{transform:matrix(0.187736,0.001877,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187736,0.001877,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187736,0.001877,-0.002500,0.249988,0,0);}
.m9b_c00495{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);}
.me0_c00495{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);}
.m1f_c00495{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);}
.m2_c00495{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);}
.me7_c00495{transform:matrix(0.188374,0.002072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188374,0.002072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188374,0.002072,-0.002750,0.249985,0,0);}
.mc_c00495{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);}
.m8c_c00495{transform:matrix(0.188956,0.001890,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188956,0.001890,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188956,0.001890,-0.002500,0.249988,0,0);}
.m19_c00495{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);}
.mb8_c00495{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);}
.m91_c00495{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);}
.m30_c00495{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);}
.m35_c00495{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);}
.m59_c00495{transform:matrix(0.193285,0.001933,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193285,0.001933,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193285,0.001933,-0.002500,0.249988,0,0);}
.m3d_c00495{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);}
.m96_c00495{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);}
.ma9_c00495{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);}
.m6f_c00495{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);}
.mb4_c00495{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);}
.m67_c00495{transform:matrix(0.195540,0.001955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195540,0.001955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195540,0.001955,-0.002500,0.249988,0,0);}
.m7b_c00495{transform:matrix(0.195585,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195585,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195585,0.001956,-0.002500,0.249988,0,0);}
.mad_c00495{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);}
.m95_c00495{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);}
.ma8_c00495{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);}
.m99_c00495{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);}
.mba_c00495{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);}
.m9_c00495{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);}
.m7c_c00495{transform:matrix(0.197705,0.001977,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197705,0.001977,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197705,0.001977,-0.002500,0.249988,0,0);}
.me5_c00495{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);}
.me2_c00495{transform:matrix(0.198513,0.002184,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198513,0.002184,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198513,0.002184,-0.002750,0.249985,0,0);}
.m1a_c00495{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);}
.m2f_c00495{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);}
.m58_c00495{transform:matrix(0.199200,0.001992,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199200,0.001992,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199200,0.001992,-0.002500,0.249988,0,0);}
.m15_c00495{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);}
.mf_c00495{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);}
.m81_c00495{transform:matrix(0.200565,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200565,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200565,0.002006,-0.002500,0.249988,0,0);}
.me1_c00495{transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200783,0.002209,-0.002750,0.249985,0,0);}
.m54_c00495{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);}
.m8b_c00495{transform:matrix(0.201610,0.002016,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201610,0.002016,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201610,0.002016,-0.002500,0.249988,0,0);}
.m36_c00495{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);}
.m7d_c00495{transform:matrix(0.202785,0.002028,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202785,0.002028,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202785,0.002028,-0.002500,0.249988,0,0);}
.md9_c00495{transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203028,0.002233,-0.002750,0.249985,0,0);}
.m60_c00495{transform:matrix(0.203305,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203305,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203305,0.002033,-0.002500,0.249988,0,0);}
.mac_c00495{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);}
.m56_c00495{transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203930,0.002039,-0.002500,0.249988,0,0);}
.md1_c00495{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);}
.m98_c00495{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);}
.m79_c00495{transform:matrix(0.205445,0.002054,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205445,0.002054,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205445,0.002054,-0.002500,0.249988,0,0);}
.mb5_c00495{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);}
.m17_c00495{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);}
.m92_c00495{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);}
.mae_c00495{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);}
.m61_c00495{transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206785,0.002068,-0.002500,0.249988,0,0);}
.m9f_c00495{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);}
.m0_c00495{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);}
.m9a_c00495{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);}
.m49_c00495{transform:matrix(0.208290,0.002083,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208290,0.002083,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208290,0.002083,-0.002500,0.249988,0,0);}
.m5f_c00495{transform:matrix(0.208615,0.002086,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208615,0.002086,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208615,0.002086,-0.002500,0.249988,0,0);}
.m25_c00495{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);}
.mc9_c00495{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m74_c00495{transform:matrix(0.208820,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208820,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208820,0.002088,-0.002500,0.249988,0,0);}
.mbb_c00495{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);}
.m4a_c00495{transform:matrix(0.209790,0.002098,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209790,0.002098,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209790,0.002098,-0.002500,0.249988,0,0);}
.md8_c00495{transform:matrix(0.210982,0.002321,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210982,0.002321,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210982,0.002321,-0.002750,0.249985,0,0);}
.m2e_c00495{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);}
.mda_c00495{transform:matrix(0.211912,0.002331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211912,0.002331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211912,0.002331,-0.002750,0.249985,0,0);}
.m62_c00495{transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211979,0.002120,-0.002500,0.249988,0,0);}
.m5b_c00495{transform:matrix(0.212469,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212469,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212469,0.002125,-0.002500,0.249988,0,0);}
.m93_c00495{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);}
.mb1_c00495{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);}
.mb7_c00495{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);}
.md7_c00495{transform:matrix(0.213397,0.002347,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213397,0.002347,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213397,0.002347,-0.002750,0.249985,0,0);}
.mdf_c00495{transform:matrix(0.213617,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213617,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213617,0.002350,-0.002750,0.249985,0,0);}
.mc7_c00495{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.mcc_c00495{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);}
.m6c_c00495{transform:matrix(0.215124,0.002151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215124,0.002151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215124,0.002151,-0.002500,0.249988,0,0);}
.m8d_c00495{transform:matrix(0.215264,0.002153,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215264,0.002153,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215264,0.002153,-0.002500,0.249988,0,0);}
.m18_c00495{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);}
.m4e_c00495{transform:matrix(0.217079,0.002171,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217079,0.002171,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217079,0.002171,-0.002500,0.249988,0,0);}
.m45_c00495{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);}
.m70_c00495{transform:matrix(0.217754,0.002178,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217754,0.002178,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217754,0.002178,-0.002500,0.249988,0,0);}
.m39_c00495{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);}
.mbd_c00495{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);}
.m82_c00495{transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219854,0.002199,-0.002500,0.249988,0,0);}
.m4c_c00495{transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220179,0.002202,-0.002500,0.249988,0,0);}
.m24_c00495{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);}
.ma4_c00495{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);}
.m9e_c00495{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);}
.m9c_c00495{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);}
.ma7_c00495{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);}
.mdb_c00495{transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);}
.ma2_c00495{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);}
.m52_c00495{transform:matrix(0.227439,0.002274,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227439,0.002274,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227439,0.002274,-0.002500,0.249988,0,0);}
.me3_c00495{transform:matrix(0.229676,0.002526,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229676,0.002526,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229676,0.002526,-0.002750,0.249985,0,0);}
.m4b_c00495{transform:matrix(0.230018,0.002300,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230018,0.002300,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230018,0.002300,-0.002500,0.249988,0,0);}
.mc0_c00495{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);}
.m2a_c00495{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);}
.m4_c00495{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{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);}
.mc2_c00495{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);}
.m1e_c00495{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);}
.mc5_c00495{transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.235838,0.002358,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235838,0.002358,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235838,0.002358,-0.002500,0.249988,0,0);}
.m64_c00495{transform:matrix(0.236158,0.002362,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236158,0.002362,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236158,0.002362,-0.002500,0.249988,0,0);}
.ma3_c00495{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);}
.m27_c00495{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{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);}
.me4_c00495{transform:matrix(0.238636,0.002625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238636,0.002625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238636,0.002625,-0.002750,0.249985,0,0);}
.m88_c00495{transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);}
.m6e_c00495{transform:matrix(0.239463,0.002395,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239463,0.002395,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239463,0.002395,-0.002500,0.249988,0,0);}
.mbc_c00495{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);}
.m8f_c00495{transform:matrix(0.240343,0.002403,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240343,0.002403,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240343,0.002403,-0.002500,0.249988,0,0);}
.m34_c00495{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);}
.m4d_c00495{transform:matrix(0.242588,0.002426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242588,0.002426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242588,0.002426,-0.002500,0.249988,0,0);}
.m16_c00495{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);}
.m7_c00495{transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.244548,0.002445,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244548,0.002445,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244548,0.002445,-0.002500,0.249988,0,0);}
.m89_c00495{transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);}
.mc1_c00495{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);}
.m94_c00495{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);}
.m11_c00495{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);}
.mcd_c00495{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);}
.m6_c00495{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);}
.m2b_c00495{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);}
.m8a_c00495{transform:matrix(0.259247,0.002592,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259247,0.002592,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259247,0.002592,-0.002500,0.249988,0,0);}
.mce_c00495{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);}
.m26_c00495{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);}
.m48_c00495{transform:matrix(0.274851,0.002749,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274851,0.002749,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274851,0.002749,-0.002500,0.249988,0,0);}
.m85_c00495{transform:matrix(0.279221,0.002792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279221,0.002792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279221,0.002792,-0.002500,0.249988,0,0);}
.m33_c00495{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);}
.mca_c00495{transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);}
.md6_c00495{transform:matrix(0.293557,0.003229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.293557,0.003229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.293557,0.003229,-0.002750,0.249985,0,0);}
.mcf_c00495{transform:matrix(0.300325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300325,0.000000,0.000000,0.250000,0,0);}
.m84_c00495{transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);-ms-transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);}
.m47_c00495{transform:matrix(0.307155,0.003072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.307155,0.003072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.307155,0.003072,-0.002500,0.249988,0,0);}
.ma6_c00495{transform:matrix(0.355465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00495{transform:matrix(0.357190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357190,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.364765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364765,0.000000,0.000000,0.250000,0,0);}
.mdd_c00495{transform:matrix(0.391391,0.004305,-0.002750,0.249985,0,0);-ms-transform:matrix(0.391391,0.004305,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.391391,0.004305,-0.002750,0.249985,0,0);}
.m7e_c00495{transform:matrix(0.393830,0.003938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.393830,0.003938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.393830,0.003938,-0.002500,0.249988,0,0);}
.md0_c00495{transform:matrix(0.399895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399895,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{transform:matrix(0.407260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407260,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.422874,0.004229,-0.002500,0.249988,0,0);-ms-transform:matrix(0.422874,0.004229,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.422874,0.004229,-0.002500,0.249988,0,0);}
.m86_c00495{transform:matrix(0.436783,0.004368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.436783,0.004368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.436783,0.004368,-0.002500,0.249988,0,0);}
.mde_c00495{transform:matrix(0.453688,0.004991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.453688,0.004991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.453688,0.004991,-0.002750,0.249985,0,0);}
.m78_c00495{transform:matrix(0.573361,0.005734,-0.002500,0.249988,0,0);-ms-transform:matrix(0.573361,0.005734,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.573361,0.005734,-0.002500,0.249988,0,0);}
.me6_c00495{transform:matrix(1.253509,0.013789,-0.002750,0.249985,0,0);-ms-transform:matrix(1.253509,0.013789,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.253509,0.013789,-0.002750,0.249985,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:50.403049px;}
.fs13_c00495{font-size:53.553240px;}
.fs8_c00495{font-size:59.852992px;}
.fsb_c00495{font-size:64.053202px;}
.fs0_c00495{font-size:65.100000px;}
.fs4_c00495{font-size:66.150000px;}
.fs5_c00495{font-size:68.250000px;}
.fse_c00495{font-size:68.253412px;}
.fs2_c00495{font-size:69.300000px;}
.fsc_c00495{font-size:69.303465px;}
.fs10_c00495{font-size:70.350000px;}
.fs9_c00495{font-size:70.353517px;}
.fs1_c00495{font-size:71.400000px;}
.fsa_c00495{font-size:71.403570px;}
.fs3_c00495{font-size:72.450000px;}
.fsd_c00495{font-size:72.453622px;}
.fs6_c00495{font-size:73.500000px;}
.fsf_c00495{font-size:73.503675px;}
.fs11_c00495{font-size:74.550000px;}
.fs7_c00495{font-size:78.750000px;}
.y0_c00495{bottom:0.000000px;}
.yca_c00495{bottom:176.218949px;}
.yc9_c00495{bottom:176.219463px;}
.yc8_c00495{bottom:176.219565px;}
.yc7_c00495{bottom:189.717342px;}
.yc6_c00495{bottom:190.323354px;}
.yc5_c00495{bottom:190.875048px;}
.yc4_c00495{bottom:191.076728px;}
.yc3_c00495{bottom:191.552192px;}
.yc2_c00495{bottom:191.745357px;}
.yc1_c00495{bottom:191.923574px;}
.ybf_c00495{bottom:192.471291px;}
.yc0_c00495{bottom:192.472958px;}
.ybe_c00495{bottom:193.089150px;}
.ybd_c00495{bottom:193.349355px;}
.ybc_c00495{bottom:193.509884px;}
.ybb_c00495{bottom:193.759083px;}
.yba_c00495{bottom:194.436722px;}
.yb9_c00495{bottom:194.671500px;}
.yb8_c00495{bottom:240.934500px;}
.yb7_c00495{bottom:241.465500px;}
.yb6_c00495{bottom:242.470500px;}
.yb5_c00495{bottom:243.291000px;}
.yb4_c00495{bottom:244.485000px;}
.yb3_c00495{bottom:245.653500px;}
.yb2_c00495{bottom:246.166500px;}
.yb1_c00495{bottom:247.168500px;}
.yb0_c00495{bottom:247.720500px;}
.yaf_c00495{bottom:248.409000px;}
.yae_c00495{bottom:262.804500px;}
.yad_c00495{bottom:263.662500px;}
.yac_c00495{bottom:265.324500px;}
.yab_c00495{bottom:265.347000px;}
.yaa_c00495{bottom:267.100500px;}
.ya9_c00495{bottom:267.801000px;}
.ya8_c00495{bottom:268.761000px;}
.ya7_c00495{bottom:269.364000px;}
.ya6_c00495{bottom:269.878500px;}
.ya5_c00495{bottom:270.766500px;}
.ya4_c00495{bottom:271.357500px;}
.ya3_c00495{bottom:287.610000px;}
.ya2_c00495{bottom:287.937000px;}
.ya1_c00495{bottom:288.712500px;}
.ya0_c00495{bottom:289.204500px;}
.y9f_c00495{bottom:289.641000px;}
.y9e_c00495{bottom:289.992000px;}
.y9d_c00495{bottom:291.001500px;}
.y9c_c00495{bottom:291.669000px;}
.y9b_c00495{bottom:292.059000px;}
.y9a_c00495{bottom:293.551500px;}
.y99_c00495{bottom:293.764500px;}
.y98_c00495{bottom:310.983000px;}
.y97_c00495{bottom:311.814000px;}
.y96_c00495{bottom:312.643500px;}
.y95_c00495{bottom:313.393500px;}
.y94_c00495{bottom:313.741500px;}
.y93_c00495{bottom:314.446500px;}
.y92_c00495{bottom:315.181500px;}
.y91_c00495{bottom:315.906000px;}
.y90_c00495{bottom:333.504000px;}
.y8f_c00495{bottom:334.876500px;}
.y8e_c00495{bottom:335.335500px;}
.y8d_c00495{bottom:336.169500px;}
.y8c_c00495{bottom:337.501500px;}
.y8b_c00495{bottom:338.814000px;}
.y8a_c00495{bottom:339.537000px;}
.y89_c00495{bottom:340.206000px;}
.y88_c00495{bottom:355.339500px;}
.y87_c00495{bottom:356.169000px;}
.y86_c00495{bottom:357.259500px;}
.y85_c00495{bottom:357.885000px;}
.y84_c00495{bottom:358.750500px;}
.y83_c00495{bottom:359.785500px;}
.y82_c00495{bottom:360.460500px;}
.y81_c00495{bottom:361.378500px;}
.y80_c00495{bottom:362.124000px;}
.y7f_c00495{bottom:362.616000px;}
.y7e_c00495{bottom:380.224500px;}
.y7d_c00495{bottom:380.907000px;}
.y7c_c00495{bottom:381.321000px;}
.y7b_c00495{bottom:381.810000px;}
.y7a_c00495{bottom:382.656000px;}
.y79_c00495{bottom:383.422500px;}
.y78_c00495{bottom:384.042000px;}
.y77_c00495{bottom:384.754500px;}
.y76_c00495{bottom:403.129500px;}
.y75_c00495{bottom:434.551500px;}
.y74_c00495{bottom:466.031970px;}
.y73_c00495{bottom:466.647870px;}
.y72_c00495{bottom:467.403660px;}
.y71_c00495{bottom:468.170400px;}
.y6f_c00495{bottom:485.369895px;}
.y70_c00495{bottom:485.385000px;}
.y6e_c00495{bottom:485.959395px;}
.y6d_c00495{bottom:486.400275px;}
.y6c_c00495{bottom:486.568650px;}
.y6b_c00495{bottom:487.385760px;}
.y6a_c00495{bottom:487.734510px;}
.y69_c00495{bottom:488.372520px;}
.y68_c00495{bottom:489.319170px;}
.y67_c00495{bottom:490.350885px;}
.y66_c00495{bottom:491.393685px;}
.y65_c00495{bottom:510.523785px;}
.y64_c00495{bottom:510.772470px;}
.y63_c00495{bottom:511.257570px;}
.y62_c00495{bottom:511.788300px;}
.y61_c00495{bottom:512.554725px;}
.y60_c00495{bottom:513.196575px;}
.y5f_c00495{bottom:513.452235px;}
.y5e_c00495{bottom:514.343550px;}
.y5d_c00495{bottom:533.244420px;}
.y5c_c00495{bottom:533.816550px;}
.y5b_c00495{bottom:534.163395px;}
.y5a_c00495{bottom:534.655470px;}
.y59_c00495{bottom:535.175565px;}
.y58_c00495{bottom:535.617240px;}
.y57_c00495{bottom:535.933755px;}
.y56_c00495{bottom:536.548920px;}
.y55_c00495{bottom:537.025485px;}
.y54_c00495{bottom:555.684480px;}
.y53_c00495{bottom:556.491315px;}
.y52_c00495{bottom:556.737435px;}
.y51_c00495{bottom:557.179635px;}
.y50_c00495{bottom:557.466975px;}
.y4f_c00495{bottom:558.025380px;}
.y4e_c00495{bottom:558.864195px;}
.y4d_c00495{bottom:559.344750px;}
.y4c_c00495{bottom:559.707210px;}
.y4b_c00495{bottom:579.100140px;}
.y4a_c00495{bottom:579.417585px;}
.y49_c00495{bottom:580.089390px;}
.y48_c00495{bottom:580.344045px;}
.y47_c00495{bottom:581.033550px;}
.y46_c00495{bottom:581.383605px;}
.y45_c00495{bottom:582.025335px;}
.y44_c00495{bottom:582.387750px;}
.y43_c00495{bottom:602.271600px;}
.y42_c00495{bottom:603.144345px;}
.y41_c00495{bottom:603.501390px;}
.y40_c00495{bottom:603.928035px;}
.y3f_c00495{bottom:604.585950px;}
.y3e_c00495{bottom:605.376795px;}
.y3d_c00495{bottom:605.879205px;}
.y3a_c00495{bottom:626.267910px;}
.y33_c00495{bottom:626.268060px;}
.y38_c00495{bottom:626.268165px;}
.y39_c00495{bottom:626.268180px;}
.y3b_c00495{bottom:626.268225px;}
.y3c_c00495{bottom:626.268240px;}
.y34_c00495{bottom:626.268390px;}
.y36_c00495{bottom:626.268420px;}
.y35_c00495{bottom:626.268705px;}
.y37_c00495{bottom:626.268735px;}
.y32_c00495{bottom:648.343875px;}
.y31_c00495{bottom:648.681060px;}
.y30_c00495{bottom:648.854250px;}
.y2f_c00495{bottom:649.324080px;}
.y2e_c00495{bottom:650.075400px;}
.y2d_c00495{bottom:650.571825px;}
.y2c_c00495{bottom:651.106290px;}
.y2b_c00495{bottom:651.241500px;}
.y2a_c00495{bottom:672.568500px;}
.y29_c00495{bottom:693.564000px;}
.y28_c00495{bottom:694.185000px;}
.y27_c00495{bottom:694.384500px;}
.y26_c00495{bottom:694.423500px;}
.y25_c00495{bottom:694.809000px;}
.y24_c00495{bottom:695.196000px;}
.y23_c00495{bottom:695.413500px;}
.y22_c00495{bottom:695.805000px;}
.y21_c00495{bottom:696.061500px;}
.y20_c00495{bottom:715.552500px;}
.y1f_c00495{bottom:716.035500px;}
.y1e_c00495{bottom:716.424000px;}
.y1d_c00495{bottom:717.021000px;}
.y1c_c00495{bottom:717.852000px;}
.y1b_c00495{bottom:718.291500px;}
.y1a_c00495{bottom:718.582500px;}
.y19_c00495{bottom:719.085000px;}
.y18_c00495{bottom:719.494500px;}
.y17_c00495{bottom:719.839500px;}
.y16_c00495{bottom:738.970500px;}
.y15_c00495{bottom:739.264500px;}
.y14_c00495{bottom:739.663500px;}
.y13_c00495{bottom:740.091000px;}
.y12_c00495{bottom:740.347500px;}
.y11_c00495{bottom:741.028500px;}
.y10_c00495{bottom:741.601500px;}
.yf_c00495{bottom:741.981000px;}
.ye_c00495{bottom:742.503000px;}
.yd_c00495{bottom:763.216500px;}
.yc_c00495{bottom:784.083000px;}
.yb_c00495{bottom:784.296000px;}
.ya_c00495{bottom:784.852500px;}
.y9_c00495{bottom:785.143500px;}
.y8_c00495{bottom:785.311500px;}
.y7_c00495{bottom:785.845500px;}
.y6_c00495{bottom:786.034500px;}
.y5_c00495{bottom:786.304500px;}
.y4_c00495{bottom:786.748500px;}
.y3_c00495{bottom:787.050000px;}
.y2_c00495{bottom:809.034000px;}
.y1_c00495{bottom:832.219500px;}
.h14_c00495{height:50.403049px;}
.h15_c00495{height:53.553240px;}
.ha_c00495{height:59.852992px;}
.hd_c00495{height:64.053202px;}
.h2_c00495{height:65.100000px;}
.h6_c00495{height:66.150000px;}
.h7_c00495{height:68.250000px;}
.h10_c00495{height:68.253412px;}
.h4_c00495{height:69.300000px;}
.he_c00495{height:69.303465px;}
.h12_c00495{height:70.350000px;}
.hb_c00495{height:70.353517px;}
.h3_c00495{height:71.400000px;}
.hc_c00495{height:71.403570px;}
.h5_c00495{height:72.450000px;}
.hf_c00495{height:72.453622px;}
.h8_c00495{height:73.500000px;}
.h11_c00495{height:73.503675px;}
.h13_c00495{height:74.550000px;}
.h9_c00495{height:78.750000px;}
.h0_c00495{height:1008.450000px;}
.h1_c00495{height:1008.750000px;}
.w1_c00495{width:700.500000px;}
.w0_c00495{width:700.650000px;}
.x0_c00495{left:0.000000px;}
.x7f_c00495{left:133.377966px;}
.x79_c00495{left:146.497500px;}
.x38_c00495{left:160.215000px;}
.x66_c00495{left:162.279000px;}
.x7a_c00495{left:167.841000px;}
.x52_c00495{left:170.475480px;}
.x26_c00495{left:172.126500px;}
.x1_c00495{left:173.880000px;}
.x6b_c00495{left:187.414500px;}
.x62_c00495{left:194.418000px;}
.x2d_c00495{left:197.740500px;}
.xa_c00495{left:199.800000px;}
.x27_c00495{left:203.448000px;}
.x2_c00495{left:207.090000px;}
.x19_c00495{left:210.600000px;}
.x60_c00495{left:212.331000px;}
.x45_c00495{left:213.682245px;}
.x32_c00495{left:214.918500px;}
.x1f_c00495{left:217.201500px;}
.x75_c00495{left:223.738500px;}
.x39_c00495{left:227.182500px;}
.x67_c00495{left:228.585000px;}
.x59_c00495{left:231.724905px;}
.x71_c00495{left:233.821500px;}
.xb_c00495{left:234.900000px;}
.x2e_c00495{left:236.956500px;}
.x28_c00495{left:240.694500px;}
.x3_c00495{left:248.940000px;}
.x1a_c00495{left:250.830000px;}
.x7b_c00495{left:252.099000px;}
.x3f_c00495{left:253.804155px;}
.x11_c00495{left:256.372500px;}
.xc_c00495{left:258.660000px;}
.x55_c00495{left:260.387205px;}
.x49_c00495{left:262.566225px;}
.x33_c00495{left:265.138500px;}
.x76_c00495{left:267.285000px;}
.x6c_c00495{left:268.467000px;}
.x6f_c00495{left:269.481000px;}
.x3a_c00495{left:276.825000px;}
.x40_c00495{left:277.835055px;}
.x46_c00495{left:279.565425px;}
.x72_c00495{left:282.408000px;}
.x34_c00495{left:283.498500px;}
.x12_c00495{left:286.371000px;}
.xd_c00495{left:288.630000px;}
.x68_c00495{left:291.069000px;}
.x5a_c00495{left:292.442160px;}
.x4a_c00495{left:294.421410px;}
.x20_c00495{left:296.569500px;}
.x41_c00495{left:298.355610px;}
.x4f_c00495{left:300.608970px;}
.x70_c00495{left:304.603500px;}
.x13_c00495{left:307.402500px;}
.x56_c00495{left:309.720720px;}
.x4_c00495{left:311.040000px;}
.x1b_c00495{left:312.930000px;}
.x5e_c00495{left:324.582525px;}
.x6d_c00495{left:327.024000px;}
.x35_c00495{left:331.828500px;}
.x1c_c00495{left:332.910000px;}
.x47_c00495{left:334.405830px;}
.x2f_c00495{left:335.941500px;}
.xe_c00495{left:338.850000px;}
.x5_c00495{left:340.470000px;}
.x50_c00495{left:343.548180px;}
.x7c_c00495{left:346.516500px;}
.x5b_c00495{left:348.103260px;}
.x42_c00495{left:350.467815px;}
.x3b_c00495{left:351.957000px;}
.x21_c00495{left:353.281500px;}
.x69_c00495{left:354.519000px;}
.x4b_c00495{left:357.071280px;}
.x30_c00495{left:359.782500px;}
.x63_c00495{left:363.067500px;}
.x51_c00495{left:365.681520px;}
.x14_c00495{left:366.813000px;}
.x6_c00495{left:369.630000px;}
.x61_c00495{left:372.363000px;}
.x22_c00495{left:374.650500px;}
.x1d_c00495{left:376.380000px;}
.x4c_c00495{left:380.286555px;}
.x43_c00495{left:382.869555px;}
.x15_c00495{left:385.464000px;}
.x53_c00495{left:390.527865px;}
.x77_c00495{left:392.310000px;}
.x7_c00495{left:394.200000px;}
.x1e_c00495{left:396.090000px;}
.x3c_c00495{left:398.940000px;}
.x5c_c00495{left:406.125195px;}
.xf_c00495{left:408.780000px;}
.x23_c00495{left:410.301000px;}
.x7d_c00495{left:412.510500px;}
.x6e_c00495{left:414.771000px;}
.x3d_c00495{left:416.259000px;}
.x16_c00495{left:417.844500px;}
.x31_c00495{left:421.881000px;}
.x36_c00495{left:424.708500px;}
.x29_c00495{left:428.355000px;}
.x73_c00495{left:430.887000px;}
.x8_c00495{left:434.970000px;}
.x10_c00495{left:437.670000px;}
.x4d_c00495{left:441.316440px;}
.x24_c00495{left:443.496000px;}
.x57_c00495{left:446.692095px;}
.x5f_c00495{left:448.470000px;}
.x3e_c00495{left:449.977500px;}
.x37_c00495{left:454.408500px;}
.x54_c00495{left:461.273250px;}
.x9_c00495{left:463.590000px;}
.x58_c00495{left:465.860025px;}
.x25_c00495{left:467.985000px;}
.x4e_c00495{left:470.210655px;}
.x48_c00495{left:472.446570px;}
.x17_c00495{left:479.703000px;}
.x6a_c00495{left:481.486500px;}
.x2a_c00495{left:482.631000px;}
.x44_c00495{left:490.874355px;}
.x64_c00495{left:492.172500px;}
.x78_c00495{left:494.782500px;}
.x18_c00495{left:503.419500px;}
.x2b_c00495{left:517.993500px;}
.x5d_c00495{left:524.753400px;}
.x65_c00495{left:533.617500px;}
.x74_c00495{left:541.476000px;}
.x2c_c00495{left:561.945000px;}
.x7e_c00495{left:596.875500px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs12_c00495{font-size:44.802710pt;}
.fs13_c00495{font-size:47.602880pt;}
.fs8_c00495{font-size:53.202660pt;}
.fsb_c00495{font-size:56.936180pt;}
.fs0_c00495{font-size:57.866667pt;}
.fs4_c00495{font-size:58.800000pt;}
.fs5_c00495{font-size:60.666667pt;}
.fse_c00495{font-size:60.669700pt;}
.fs2_c00495{font-size:61.600000pt;}
.fsc_c00495{font-size:61.603080pt;}
.fs10_c00495{font-size:62.533333pt;}
.fs9_c00495{font-size:62.536460pt;}
.fs1_c00495{font-size:63.466667pt;}
.fsa_c00495{font-size:63.469840pt;}
.fs3_c00495{font-size:64.400000pt;}
.fsd_c00495{font-size:64.403220pt;}
.fs6_c00495{font-size:65.333333pt;}
.fsf_c00495{font-size:65.336600pt;}
.fs11_c00495{font-size:66.266667pt;}
.fs7_c00495{font-size:70.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.yca_c00495{bottom:156.639065pt;}
.yc9_c00495{bottom:156.639523pt;}
.yc8_c00495{bottom:156.639613pt;}
.yc7_c00495{bottom:168.637637pt;}
.yc6_c00495{bottom:169.176315pt;}
.yc5_c00495{bottom:169.666709pt;}
.yc4_c00495{bottom:169.845980pt;}
.yc3_c00495{bottom:170.268615pt;}
.yc2_c00495{bottom:170.440317pt;}
.yc1_c00495{bottom:170.598732pt;}
.ybf_c00495{bottom:171.085592pt;}
.yc0_c00495{bottom:171.087073pt;}
.ybe_c00495{bottom:171.634800pt;}
.ybd_c00495{bottom:171.866093pt;}
.ybc_c00495{bottom:172.008785pt;}
.ybb_c00495{bottom:172.230296pt;}
.yba_c00495{bottom:172.832641pt;}
.yb9_c00495{bottom:173.041333pt;}
.yb8_c00495{bottom:214.164000pt;}
.yb7_c00495{bottom:214.636000pt;}
.yb6_c00495{bottom:215.529333pt;}
.yb5_c00495{bottom:216.258667pt;}
.yb4_c00495{bottom:217.320000pt;}
.yb3_c00495{bottom:218.358667pt;}
.yb2_c00495{bottom:218.814667pt;}
.yb1_c00495{bottom:219.705333pt;}
.yb0_c00495{bottom:220.196000pt;}
.yaf_c00495{bottom:220.808000pt;}
.yae_c00495{bottom:233.604000pt;}
.yad_c00495{bottom:234.366667pt;}
.yac_c00495{bottom:235.844000pt;}
.yab_c00495{bottom:235.864000pt;}
.yaa_c00495{bottom:237.422667pt;}
.ya9_c00495{bottom:238.045333pt;}
.ya8_c00495{bottom:238.898667pt;}
.ya7_c00495{bottom:239.434667pt;}
.ya6_c00495{bottom:239.892000pt;}
.ya5_c00495{bottom:240.681333pt;}
.ya4_c00495{bottom:241.206667pt;}
.ya3_c00495{bottom:255.653333pt;}
.ya2_c00495{bottom:255.944000pt;}
.ya1_c00495{bottom:256.633333pt;}
.ya0_c00495{bottom:257.070667pt;}
.y9f_c00495{bottom:257.458667pt;}
.y9e_c00495{bottom:257.770667pt;}
.y9d_c00495{bottom:258.668000pt;}
.y9c_c00495{bottom:259.261333pt;}
.y9b_c00495{bottom:259.608000pt;}
.y9a_c00495{bottom:260.934667pt;}
.y99_c00495{bottom:261.124000pt;}
.y98_c00495{bottom:276.429333pt;}
.y97_c00495{bottom:277.168000pt;}
.y96_c00495{bottom:277.905333pt;}
.y95_c00495{bottom:278.572000pt;}
.y94_c00495{bottom:278.881333pt;}
.y93_c00495{bottom:279.508000pt;}
.y92_c00495{bottom:280.161333pt;}
.y91_c00495{bottom:280.805333pt;}
.y90_c00495{bottom:296.448000pt;}
.y8f_c00495{bottom:297.668000pt;}
.y8e_c00495{bottom:298.076000pt;}
.y8d_c00495{bottom:298.817333pt;}
.y8c_c00495{bottom:300.001333pt;}
.y8b_c00495{bottom:301.168000pt;}
.y8a_c00495{bottom:301.810667pt;}
.y89_c00495{bottom:302.405333pt;}
.y88_c00495{bottom:315.857333pt;}
.y87_c00495{bottom:316.594667pt;}
.y86_c00495{bottom:317.564000pt;}
.y85_c00495{bottom:318.120000pt;}
.y84_c00495{bottom:318.889333pt;}
.y83_c00495{bottom:319.809333pt;}
.y82_c00495{bottom:320.409333pt;}
.y81_c00495{bottom:321.225333pt;}
.y80_c00495{bottom:321.888000pt;}
.y7f_c00495{bottom:322.325333pt;}
.y7e_c00495{bottom:337.977333pt;}
.y7d_c00495{bottom:338.584000pt;}
.y7c_c00495{bottom:338.952000pt;}
.y7b_c00495{bottom:339.386667pt;}
.y7a_c00495{bottom:340.138667pt;}
.y79_c00495{bottom:340.820000pt;}
.y78_c00495{bottom:341.370667pt;}
.y77_c00495{bottom:342.004000pt;}
.y76_c00495{bottom:358.337333pt;}
.y75_c00495{bottom:386.268000pt;}
.y74_c00495{bottom:414.250640pt;}
.y73_c00495{bottom:414.798107pt;}
.y72_c00495{bottom:415.469920pt;}
.y71_c00495{bottom:416.151467pt;}
.y6f_c00495{bottom:431.439907pt;}
.y70_c00495{bottom:431.453333pt;}
.y6e_c00495{bottom:431.963907pt;}
.y6d_c00495{bottom:432.355800pt;}
.y6c_c00495{bottom:432.505467pt;}
.y6b_c00495{bottom:433.231787pt;}
.y6a_c00495{bottom:433.541787pt;}
.y69_c00495{bottom:434.108907pt;}
.y68_c00495{bottom:434.950373pt;}
.y67_c00495{bottom:435.867453pt;}
.y66_c00495{bottom:436.794387pt;}
.y65_c00495{bottom:453.798920pt;}
.y64_c00495{bottom:454.019973pt;}
.y63_c00495{bottom:454.451173pt;}
.y62_c00495{bottom:454.922933pt;}
.y61_c00495{bottom:455.604200pt;}
.y60_c00495{bottom:456.174733pt;}
.y5f_c00495{bottom:456.401987pt;}
.y5e_c00495{bottom:457.194267pt;}
.y5d_c00495{bottom:473.995040pt;}
.y5c_c00495{bottom:474.503600pt;}
.y5b_c00495{bottom:474.811907pt;}
.y5a_c00495{bottom:475.249307pt;}
.y59_c00495{bottom:475.711613pt;}
.y58_c00495{bottom:476.104213pt;}
.y57_c00495{bottom:476.385560pt;}
.y56_c00495{bottom:476.932373pt;}
.y55_c00495{bottom:477.355987pt;}
.y54_c00495{bottom:493.941760pt;}
.y53_c00495{bottom:494.658947pt;}
.y52_c00495{bottom:494.877720pt;}
.y51_c00495{bottom:495.270787pt;}
.y50_c00495{bottom:495.526200pt;}
.y4f_c00495{bottom:496.022560pt;}
.y4e_c00495{bottom:496.768173pt;}
.y4d_c00495{bottom:497.195333pt;}
.y4c_c00495{bottom:497.517520pt;}
.y4b_c00495{bottom:514.755680pt;}
.y4a_c00495{bottom:515.037853pt;}
.y49_c00495{bottom:515.635013pt;}
.y48_c00495{bottom:515.861373pt;}
.y47_c00495{bottom:516.474267pt;}
.y46_c00495{bottom:516.785427pt;}
.y45_c00495{bottom:517.355853pt;}
.y44_c00495{bottom:517.678000pt;}
.y43_c00495{bottom:535.352533pt;}
.y42_c00495{bottom:536.128307pt;}
.y41_c00495{bottom:536.445680pt;}
.y40_c00495{bottom:536.824920pt;}
.y3f_c00495{bottom:537.409733pt;}
.y3e_c00495{bottom:538.112707pt;}
.y3d_c00495{bottom:538.559293pt;}
.y3a_c00495{bottom:556.682587pt;}
.y33_c00495{bottom:556.682720pt;}
.y38_c00495{bottom:556.682813pt;}
.y39_c00495{bottom:556.682827pt;}
.y3b_c00495{bottom:556.682867pt;}
.y3c_c00495{bottom:556.682880pt;}
.y34_c00495{bottom:556.683013pt;}
.y36_c00495{bottom:556.683040pt;}
.y35_c00495{bottom:556.683293pt;}
.y37_c00495{bottom:556.683320pt;}
.y32_c00495{bottom:576.305667pt;}
.y31_c00495{bottom:576.605387pt;}
.y30_c00495{bottom:576.759333pt;}
.y2f_c00495{bottom:577.176960pt;}
.y2e_c00495{bottom:577.844800pt;}
.y2d_c00495{bottom:578.286067pt;}
.y2c_c00495{bottom:578.761147pt;}
.y2b_c00495{bottom:578.881333pt;}
.y2a_c00495{bottom:597.838667pt;}
.y29_c00495{bottom:616.501333pt;}
.y28_c00495{bottom:617.053333pt;}
.y27_c00495{bottom:617.230667pt;}
.y26_c00495{bottom:617.265333pt;}
.y25_c00495{bottom:617.608000pt;}
.y24_c00495{bottom:617.952000pt;}
.y23_c00495{bottom:618.145333pt;}
.y22_c00495{bottom:618.493333pt;}
.y21_c00495{bottom:618.721333pt;}
.y20_c00495{bottom:636.046667pt;}
.y1f_c00495{bottom:636.476000pt;}
.y1e_c00495{bottom:636.821333pt;}
.y1d_c00495{bottom:637.352000pt;}
.y1c_c00495{bottom:638.090667pt;}
.y1b_c00495{bottom:638.481333pt;}
.y1a_c00495{bottom:638.740000pt;}
.y19_c00495{bottom:639.186667pt;}
.y18_c00495{bottom:639.550667pt;}
.y17_c00495{bottom:639.857333pt;}
.y16_c00495{bottom:656.862667pt;}
.y15_c00495{bottom:657.124000pt;}
.y14_c00495{bottom:657.478667pt;}
.y13_c00495{bottom:657.858667pt;}
.y12_c00495{bottom:658.086667pt;}
.y11_c00495{bottom:658.692000pt;}
.y10_c00495{bottom:659.201333pt;}
.yf_c00495{bottom:659.538667pt;}
.ye_c00495{bottom:660.002667pt;}
.yd_c00495{bottom:678.414667pt;}
.yc_c00495{bottom:696.962667pt;}
.yb_c00495{bottom:697.152000pt;}
.ya_c00495{bottom:697.646667pt;}
.y9_c00495{bottom:697.905333pt;}
.y8_c00495{bottom:698.054667pt;}
.y7_c00495{bottom:698.529333pt;}
.y6_c00495{bottom:698.697333pt;}
.y5_c00495{bottom:698.937333pt;}
.y4_c00495{bottom:699.332000pt;}
.y3_c00495{bottom:699.600000pt;}
.y2_c00495{bottom:719.141333pt;}
.y1_c00495{bottom:739.750667pt;}
.h14_c00495{height:44.802710pt;}
.h15_c00495{height:47.602880pt;}
.ha_c00495{height:53.202660pt;}
.hd_c00495{height:56.936180pt;}
.h2_c00495{height:57.866667pt;}
.h6_c00495{height:58.800000pt;}
.h7_c00495{height:60.666667pt;}
.h10_c00495{height:60.669700pt;}
.h4_c00495{height:61.600000pt;}
.he_c00495{height:61.603080pt;}
.h12_c00495{height:62.533333pt;}
.hb_c00495{height:62.536460pt;}
.h3_c00495{height:63.466667pt;}
.hc_c00495{height:63.469840pt;}
.h5_c00495{height:64.400000pt;}
.hf_c00495{height:64.403220pt;}
.h8_c00495{height:65.333333pt;}
.h11_c00495{height:65.336600pt;}
.h13_c00495{height:66.266667pt;}
.h9_c00495{height:70.000000pt;}
.h0_c00495{height:896.400000pt;}
.h1_c00495{height:896.666667pt;}
.w1_c00495{width:622.666667pt;}
.w0_c00495{width:622.800000pt;}
.x0_c00495{left:0.000000pt;}
.x7f_c00495{left:118.558192pt;}
.x79_c00495{left:130.220000pt;}
.x38_c00495{left:142.413333pt;}
.x66_c00495{left:144.248000pt;}
.x7a_c00495{left:149.192000pt;}
.x52_c00495{left:151.533760pt;}
.x26_c00495{left:153.001333pt;}
.x1_c00495{left:154.560000pt;}
.x6b_c00495{left:166.590667pt;}
.x62_c00495{left:172.816000pt;}
.x2d_c00495{left:175.769333pt;}
.xa_c00495{left:177.600000pt;}
.x27_c00495{left:180.842667pt;}
.x2_c00495{left:184.080000pt;}
.x19_c00495{left:187.200000pt;}
.x60_c00495{left:188.738667pt;}
.x45_c00495{left:189.939773pt;}
.x32_c00495{left:191.038667pt;}
.x1f_c00495{left:193.068000pt;}
.x75_c00495{left:198.878667pt;}
.x39_c00495{left:201.940000pt;}
.x67_c00495{left:203.186667pt;}
.x59_c00495{left:205.977693pt;}
.x71_c00495{left:207.841333pt;}
.xb_c00495{left:208.800000pt;}
.x2e_c00495{left:210.628000pt;}
.x28_c00495{left:213.950667pt;}
.x3_c00495{left:221.280000pt;}
.x1a_c00495{left:222.960000pt;}
.x7b_c00495{left:224.088000pt;}
.x3f_c00495{left:225.603693pt;}
.x11_c00495{left:227.886667pt;}
.xc_c00495{left:229.920000pt;}
.x55_c00495{left:231.455293pt;}
.x49_c00495{left:233.392200pt;}
.x33_c00495{left:235.678667pt;}
.x76_c00495{left:237.586667pt;}
.x6c_c00495{left:238.637333pt;}
.x6f_c00495{left:239.538667pt;}
.x3a_c00495{left:246.066667pt;}
.x40_c00495{left:246.964493pt;}
.x46_c00495{left:248.502600pt;}
.x72_c00495{left:251.029333pt;}
.x34_c00495{left:251.998667pt;}
.x12_c00495{left:254.552000pt;}
.xd_c00495{left:256.560000pt;}
.x68_c00495{left:258.728000pt;}
.x5a_c00495{left:259.948587pt;}
.x4a_c00495{left:261.707920pt;}
.x20_c00495{left:263.617333pt;}
.x41_c00495{left:265.204987pt;}
.x4f_c00495{left:267.207973pt;}
.x70_c00495{left:270.758667pt;}
.x13_c00495{left:273.246667pt;}
.x56_c00495{left:275.307307pt;}
.x4_c00495{left:276.480000pt;}
.x1b_c00495{left:278.160000pt;}
.x5e_c00495{left:288.517800pt;}
.x6d_c00495{left:290.688000pt;}
.x35_c00495{left:294.958667pt;}
.x1c_c00495{left:295.920000pt;}
.x47_c00495{left:297.249627pt;}
.x2f_c00495{left:298.614667pt;}
.xe_c00495{left:301.200000pt;}
.x5_c00495{left:302.640000pt;}
.x50_c00495{left:305.376160pt;}
.x7c_c00495{left:308.014667pt;}
.x5b_c00495{left:309.425120pt;}
.x42_c00495{left:311.526947pt;}
.x3b_c00495{left:312.850667pt;}
.x21_c00495{left:314.028000pt;}
.x69_c00495{left:315.128000pt;}
.x4b_c00495{left:317.396693pt;}
.x30_c00495{left:319.806667pt;}
.x63_c00495{left:322.726667pt;}
.x51_c00495{left:325.050240pt;}
.x14_c00495{left:326.056000pt;}
.x6_c00495{left:328.560000pt;}
.x61_c00495{left:330.989333pt;}
.x22_c00495{left:333.022667pt;}
.x1d_c00495{left:334.560000pt;}
.x4c_c00495{left:338.032493pt;}
.x43_c00495{left:340.328493pt;}
.x15_c00495{left:342.634667pt;}
.x53_c00495{left:347.135880pt;}
.x77_c00495{left:348.720000pt;}
.x7_c00495{left:350.400000pt;}
.x1e_c00495{left:352.080000pt;}
.x3c_c00495{left:354.613333pt;}
.x5c_c00495{left:361.000173pt;}
.xf_c00495{left:363.360000pt;}
.x23_c00495{left:364.712000pt;}
.x7d_c00495{left:366.676000pt;}
.x6e_c00495{left:368.685333pt;}
.x3d_c00495{left:370.008000pt;}
.x16_c00495{left:371.417333pt;}
.x31_c00495{left:375.005333pt;}
.x36_c00495{left:377.518667pt;}
.x29_c00495{left:380.760000pt;}
.x73_c00495{left:383.010667pt;}
.x8_c00495{left:386.640000pt;}
.x10_c00495{left:389.040000pt;}
.x4d_c00495{left:392.281280pt;}
.x24_c00495{left:394.218667pt;}
.x57_c00495{left:397.059640pt;}
.x5f_c00495{left:398.640000pt;}
.x3e_c00495{left:399.980000pt;}
.x37_c00495{left:403.918667pt;}
.x54_c00495{left:410.020667pt;}
.x9_c00495{left:412.080000pt;}
.x58_c00495{left:414.097800pt;}
.x25_c00495{left:415.986667pt;}
.x4e_c00495{left:417.965027pt;}
.x48_c00495{left:419.952507pt;}
.x17_c00495{left:426.402667pt;}
.x6a_c00495{left:427.988000pt;}
.x2a_c00495{left:429.005333pt;}
.x44_c00495{left:436.332760pt;}
.x64_c00495{left:437.486667pt;}
.x78_c00495{left:439.806667pt;}
.x18_c00495{left:447.484000pt;}
.x2b_c00495{left:460.438667pt;}
.x5d_c00495{left:466.447467pt;}
.x65_c00495{left:474.326667pt;}
.x74_c00495{left:481.312000pt;}
.x2c_c00495{left:499.506667pt;}
.x7e_c00495{left:530.556000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b27c95a9cb4dd3f7cd72c03.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;}
.m7b_c00496{transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022090,0.000000,0.000000,0.250000,0,0);}
.m9d_c00496{transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00496{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);}
.m1a_c00496{transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-ms-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);-webkit-transform:matrix(0.090973,-0.001092,0.003000,0.249982,0,0);}
.m59_c00496{transform:matrix(0.092495,0.000925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.092495,0.000925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.092495,0.000925,-0.002500,0.249988,0,0);}
.m22_c00496{transform:matrix(0.100863,-0.001210,0.003000,0.249982,0,0);-ms-transform:matrix(0.100863,-0.001210,0.003000,0.249982,0,0);-webkit-transform:matrix(0.100863,-0.001210,0.003000,0.249982,0,0);}
.m7c_c00496{transform:matrix(0.110345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110345,0.000000,0.000000,0.250000,0,0);}
.m54_c00496{transform:matrix(0.126984,0.001270,-0.002500,0.249988,0,0);-ms-transform:matrix(0.126984,0.001270,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.126984,0.001270,-0.002500,0.249988,0,0);}
.m6a_c00496{transform:matrix(0.140923,0.001409,-0.002500,0.249988,0,0);-ms-transform:matrix(0.140923,0.001409,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.140923,0.001409,-0.002500,0.249988,0,0);}
.m7d_c00496{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00496{transform:matrix(0.146858,-0.001469,0.002500,0.249988,0,0);-ms-transform:matrix(0.146858,-0.001469,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146858,-0.001469,0.002500,0.249988,0,0);}
.m70_c00496{transform:matrix(0.147088,0.001471,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147088,0.001471,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147088,0.001471,-0.002500,0.249988,0,0);}
.m68_c00496{transform:matrix(0.151022,0.001510,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151022,0.001510,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151022,0.001510,-0.002500,0.249988,0,0);}
.m92_c00496{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);}
.m60_c00496{transform:matrix(0.159832,0.001598,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159832,0.001598,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159832,0.001598,-0.002500,0.249988,0,0);}
.m8a_c00496{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);}
.m2f_c00496{transform:matrix(0.160852,-0.001609,0.002500,0.249988,0,0);-ms-transform:matrix(0.160852,-0.001609,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160852,-0.001609,0.002500,0.249988,0,0);}
.m79_c00496{transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161022,0.001610,-0.002500,0.249988,0,0);}
.m4c_c00496{transform:matrix(0.162407,-0.001624,0.002500,0.249988,0,0);-ms-transform:matrix(0.162407,-0.001624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162407,-0.001624,0.002500,0.249988,0,0);}
.m44_c00496{transform:matrix(0.163712,-0.001637,0.002500,0.249988,0,0);-ms-transform:matrix(0.163712,-0.001637,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163712,-0.001637,0.002500,0.249988,0,0);}
.m73_c00496{transform:matrix(0.164687,0.001647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164687,0.001647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164687,0.001647,-0.002500,0.249988,0,0);}
.m6c_c00496{transform:matrix(0.166932,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166932,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166932,0.001669,-0.002500,0.249988,0,0);}
.m38_c00496{transform:matrix(0.167417,-0.001674,0.002500,0.249988,0,0);-ms-transform:matrix(0.167417,-0.001674,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167417,-0.001674,0.002500,0.249988,0,0);}
.m2a_c00496{transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);-ms-transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169277,-0.001693,0.002500,0.249988,0,0);}
.m78_c00496{transform:matrix(0.169912,0.001699,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169912,0.001699,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169912,0.001699,-0.002500,0.249988,0,0);}
.m6d_c00496{transform:matrix(0.170506,0.001705,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170506,0.001705,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170506,0.001705,-0.002500,0.249988,0,0);}
.m48_c00496{transform:matrix(0.171681,-0.001717,0.002500,0.249988,0,0);-ms-transform:matrix(0.171681,-0.001717,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171681,-0.001717,0.002500,0.249988,0,0);}
.m5f_c00496{transform:matrix(0.172211,0.001722,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172211,0.001722,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172211,0.001722,-0.002500,0.249988,0,0);}
.m4b_c00496{transform:matrix(0.172351,-0.001724,0.002500,0.249988,0,0);-ms-transform:matrix(0.172351,-0.001724,0.002500,0.249988,0,0);-webkit-transform:matrix(0.172351,-0.001724,0.002500,0.249988,0,0);}
.m5a_c00496{transform:matrix(0.172361,0.001724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172361,0.001724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172361,0.001724,-0.002500,0.249988,0,0);}
.m64_c00496{transform:matrix(0.172391,0.001724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172391,0.001724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172391,0.001724,-0.002500,0.249988,0,0);}
.m8b_c00496{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);}
.m82_c00496{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);}
.m15_c00496{transform:matrix(0.175032,-0.002100,0.003000,0.249982,0,0);-ms-transform:matrix(0.175032,-0.002100,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175032,-0.002100,0.003000,0.249982,0,0);}
.m1e_c00496{transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);-ms-transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175307,-0.002104,0.003000,0.249982,0,0);}
.m56_c00496{transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175641,0.001756,-0.002500,0.249988,0,0);}
.m51_c00496{transform:matrix(0.175876,0.001759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175876,0.001759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175876,0.001759,-0.002500,0.249988,0,0);}
.m31_c00496{transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177381,-0.001774,0.002500,0.249988,0,0);}
.m1d_c00496{transform:matrix(0.177452,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177452,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177452,-0.002129,0.003000,0.249982,0,0);}
.m30_c00496{transform:matrix(0.177561,-0.001776,0.002500,0.249988,0,0);-ms-transform:matrix(0.177561,-0.001776,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177561,-0.001776,0.002500,0.249988,0,0);}
.m97_c00496{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);}
.m6f_c00496{transform:matrix(0.178291,0.001783,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178291,0.001783,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178291,0.001783,-0.002500,0.249988,0,0);}
.m67_c00496{transform:matrix(0.178361,0.001784,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178361,0.001784,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178361,0.001784,-0.002500,0.249988,0,0);}
.m17_c00496{transform:matrix(0.178887,-0.002147,0.003000,0.249982,0,0);-ms-transform:matrix(0.178887,-0.002147,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178887,-0.002147,0.003000,0.249982,0,0);}
.m21_c00496{transform:matrix(0.179662,-0.002156,0.003000,0.249982,0,0);-ms-transform:matrix(0.179662,-0.002156,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179662,-0.002156,0.003000,0.249982,0,0);}
.m7a_c00496{transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180686,0.001807,-0.002500,0.249988,0,0);}
.ma5_c00496{transform:matrix(0.181180,-0.002718,0.003750,0.249972,0,0);-ms-transform:matrix(0.181180,-0.002718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181180,-0.002718,0.003750,0.249972,0,0);}
.m5c_c00496{transform:matrix(0.181741,0.001817,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181741,0.001817,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181741,0.001817,-0.002500,0.249988,0,0);}
.m3c_c00496{transform:matrix(0.182006,-0.001820,0.002500,0.249988,0,0);-ms-transform:matrix(0.182006,-0.001820,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182006,-0.001820,0.002500,0.249988,0,0);}
.m26_c00496{transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);-ms-transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182127,-0.002186,0.003000,0.249982,0,0);}
.m24_c00496{transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);-ms-transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182482,-0.002190,0.003000,0.249982,0,0);}
.m11_c00496{transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);}
.m65_c00496{transform:matrix(0.185206,0.001852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185206,0.001852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185206,0.001852,-0.002500,0.249988,0,0);}
.m74_c00496{transform:matrix(0.185631,0.001856,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185631,0.001856,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185631,0.001856,-0.002500,0.249988,0,0);}
.m1c_c00496{transform:matrix(0.185727,-0.002229,0.003000,0.249982,0,0);-ms-transform:matrix(0.185727,-0.002229,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185727,-0.002229,0.003000,0.249982,0,0);}
.m62_c00496{transform:matrix(0.186021,0.001860,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186021,0.001860,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186021,0.001860,-0.002500,0.249988,0,0);}
.m37_c00496{transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);-ms-transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186641,-0.001866,0.002500,0.249988,0,0);}
.m75_c00496{transform:matrix(0.187406,0.001874,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187406,0.001874,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187406,0.001874,-0.002500,0.249988,0,0);}
.m5d_c00496{transform:matrix(0.188046,0.001880,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188046,0.001880,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188046,0.001880,-0.002500,0.249988,0,0);}
.m4a_c00496{transform:matrix(0.188326,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188326,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188326,-0.001883,0.002500,0.249988,0,0);}
.m2e_c00496{transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);-ms-transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188856,-0.001889,0.002500,0.249988,0,0);}
.m8d_c00496{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);}
.m23_c00496{transform:matrix(0.189576,-0.002275,0.003000,0.249982,0,0);-ms-transform:matrix(0.189576,-0.002275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189576,-0.002275,0.003000,0.249982,0,0);}
.m16_c00496{transform:matrix(0.190301,-0.002284,0.003000,0.249982,0,0);-ms-transform:matrix(0.190301,-0.002284,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190301,-0.002284,0.003000,0.249982,0,0);}
.m3b_c00496{transform:matrix(0.190555,-0.001906,0.002500,0.249988,0,0);-ms-transform:matrix(0.190555,-0.001906,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190555,-0.001906,0.002500,0.249988,0,0);}
.m6e_c00496{transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191095,0.001911,-0.002500,0.249988,0,0);}
.m57_c00496{transform:matrix(0.191520,0.001915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191520,0.001915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191520,0.001915,-0.002500,0.249988,0,0);}
.m69_c00496{transform:matrix(0.192225,0.001922,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192225,0.001922,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192225,0.001922,-0.002500,0.249988,0,0);}
.m61_c00496{transform:matrix(0.192245,0.001922,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192245,0.001922,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192245,0.001922,-0.002500,0.249988,0,0);}
.m85_c00496{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);}
.m52_c00496{transform:matrix(0.193280,0.001933,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193280,0.001933,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193280,0.001933,-0.002500,0.249988,0,0);}
.mf_c00496{transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);-ms-transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193911,-0.002327,0.003000,0.249982,0,0);}
.m46_c00496{transform:matrix(0.194795,-0.001948,0.002500,0.249988,0,0);-ms-transform:matrix(0.194795,-0.001948,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194795,-0.001948,0.002500,0.249988,0,0);}
.m63_c00496{transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);}
.m96_c00496{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);}
.m1f_c00496{transform:matrix(0.197166,-0.002366,0.003000,0.249982,0,0);-ms-transform:matrix(0.197166,-0.002366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197166,-0.002366,0.003000,0.249982,0,0);}
.m45_c00496{transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);-ms-transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198005,-0.001980,0.002500,0.249988,0,0);}
.m9_c00496{transform:matrix(0.199968,-0.002600,0.003250,0.249979,0,0);-ms-transform:matrix(0.199968,-0.002600,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199968,-0.002600,0.003250,0.249979,0,0);}
.m58_c00496{transform:matrix(0.201590,0.002016,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201590,0.002016,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201590,0.002016,-0.002500,0.249988,0,0);}
.m49_c00496{transform:matrix(0.202475,-0.002025,0.002500,0.249988,0,0);-ms-transform:matrix(0.202475,-0.002025,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202475,-0.002025,0.002500,0.249988,0,0);}
.m28_c00496{transform:matrix(0.202765,-0.002433,0.003000,0.249982,0,0);-ms-transform:matrix(0.202765,-0.002433,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202765,-0.002433,0.003000,0.249982,0,0);}
.m18_c00496{transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);-ms-transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202985,-0.002436,0.003000,0.249982,0,0);}
.m99_c00496{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);}
.m2c_c00496{transform:matrix(0.204125,-0.002041,0.002500,0.249988,0,0);-ms-transform:matrix(0.204125,-0.002041,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204125,-0.002041,0.002500,0.249988,0,0);}
.m2d_c00496{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);}
.m14_c00496{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);}
.m3d_c00496{transform:matrix(0.206420,-0.002064,0.002500,0.249988,0,0);-ms-transform:matrix(0.206420,-0.002064,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206420,-0.002064,0.002500,0.249988,0,0);}
.ma2_c00496{transform:matrix(0.206492,-0.003097,0.003750,0.249972,0,0);-ms-transform:matrix(0.206492,-0.003097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206492,-0.003097,0.003750,0.249972,0,0);}
.m6b_c00496{transform:matrix(0.206600,0.002066,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206600,0.002066,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206600,0.002066,-0.002500,0.249988,0,0);}
.m50_c00496{transform:matrix(0.206865,0.002069,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206865,0.002069,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206865,0.002069,-0.002500,0.249988,0,0);}
.m20_c00496{transform:matrix(0.206890,-0.002483,0.003000,0.249982,0,0);-ms-transform:matrix(0.206890,-0.002483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206890,-0.002483,0.003000,0.249982,0,0);}
.ma6_c00496{transform:matrix(0.207942,-0.003119,0.003750,0.249972,0,0);-ms-transform:matrix(0.207942,-0.003119,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207942,-0.003119,0.003750,0.249972,0,0);}
.m9b_c00496{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);}
.m19_c00496{transform:matrix(0.209755,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209755,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209755,-0.002517,0.003000,0.249982,0,0);}
.m98_c00496{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);}
.m4f_c00496{transform:matrix(0.212324,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212324,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212324,0.002123,-0.002500,0.249988,0,0);}
.m43_c00496{transform:matrix(0.212674,-0.002127,0.002500,0.249988,0,0);-ms-transform:matrix(0.212674,-0.002127,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212674,-0.002127,0.002500,0.249988,0,0);}
.m25_c00496{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);}
.m27_c00496{transform:matrix(0.213450,-0.002561,0.003000,0.249982,0,0);-ms-transform:matrix(0.213450,-0.002561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213450,-0.002561,0.003000,0.249982,0,0);}
.m42_c00496{transform:matrix(0.215594,-0.002156,0.002500,0.249988,0,0);-ms-transform:matrix(0.215594,-0.002156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215594,-0.002156,0.002500,0.249988,0,0);}
.m32_c00496{transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);-ms-transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216074,-0.002161,0.002500,0.249988,0,0);}
.m47_c00496{transform:matrix(0.218829,-0.002188,0.002500,0.249988,0,0);-ms-transform:matrix(0.218829,-0.002188,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218829,-0.002188,0.002500,0.249988,0,0);}
.m40_c00496{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);}
.m8c_c00496{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);}
.m81_c00496{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);}
.m1b_c00496{transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);}
.m90_c00496{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m41_c00496{transform:matrix(0.227049,-0.002270,0.002500,0.249988,0,0);-ms-transform:matrix(0.227049,-0.002270,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227049,-0.002270,0.002500,0.249988,0,0);}
.m9a_c00496{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);}
.ma7_c00496{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);}
.m5b_c00496{transform:matrix(0.231208,0.002312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231208,0.002312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231208,0.002312,-0.002500,0.249988,0,0);}
.m66_c00496{transform:matrix(0.233028,0.002330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233028,0.002330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233028,0.002330,-0.002500,0.249988,0,0);}
.m2b_c00496{transform:matrix(0.233713,-0.002337,0.002500,0.249988,0,0);-ms-transform:matrix(0.233713,-0.002337,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233713,-0.002337,0.002500,0.249988,0,0);}
.m13_c00496{transform:matrix(0.234168,-0.002810,0.003000,0.249982,0,0);-ms-transform:matrix(0.234168,-0.002810,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234168,-0.002810,0.003000,0.249982,0,0);}
.m5e_c00496{transform:matrix(0.235248,0.002352,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235248,0.002352,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235248,0.002352,-0.002500,0.249988,0,0);}
.m76_c00496{transform:matrix(0.235643,0.002356,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235643,0.002356,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235643,0.002356,-0.002500,0.249988,0,0);}
.m71_c00496{transform:matrix(0.236283,0.002363,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236283,0.002363,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236283,0.002363,-0.002500,0.249988,0,0);}
.ma3_c00496{transform:matrix(0.238188,-0.003573,0.003750,0.249972,0,0);-ms-transform:matrix(0.238188,-0.003573,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238188,-0.003573,0.003750,0.249972,0,0);}
.m2_c00496{transform:matrix(0.238605,-0.003102,0.003250,0.249979,0,0);-ms-transform:matrix(0.238605,-0.003102,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238605,-0.003102,0.003250,0.249979,0,0);}
.md_c00496{transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);-ms-transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242043,-0.002905,0.003000,0.249982,0,0);}
.m94_c00496{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);}
.m29_c00496{transform:matrix(0.247628,-0.002476,0.002500,0.249988,0,0);-ms-transform:matrix(0.247628,-0.002476,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247628,-0.002476,0.002500,0.249988,0,0);}
.m4d_c00496{transform:matrix(0.248743,0.002487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248743,0.002487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248743,0.002487,-0.002500,0.249988,0,0);}
.m53_c00496{transform:matrix(0.249933,0.002499,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249933,0.002499,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249933,0.002499,-0.002500,0.249988,0,0);}
.ma9_c00496{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m55_c00496{transform:matrix(0.252187,0.002522,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252187,0.002522,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252187,0.002522,-0.002500,0.249988,0,0);}
.m77_c00496{transform:matrix(0.256922,0.002569,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256922,0.002569,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256922,0.002569,-0.002500,0.249988,0,0);}
.m84_c00496{transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);}
.m91_c00496{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);}
.m36_c00496{transform:matrix(0.260692,-0.002607,0.002500,0.249988,0,0);-ms-transform:matrix(0.260692,-0.002607,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260692,-0.002607,0.002500,0.249988,0,0);}
.ma0_c00496{transform:matrix(0.263385,-0.003951,0.003750,0.249972,0,0);-ms-transform:matrix(0.263385,-0.003951,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263385,-0.003951,0.003750,0.249972,0,0);}
.m4e_c00496{transform:matrix(0.267292,0.002673,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267292,0.002673,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267292,0.002673,-0.002500,0.249988,0,0);}
.m3a_c00496{transform:matrix(0.272441,-0.002724,0.002500,0.249988,0,0);-ms-transform:matrix(0.272441,-0.002724,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272441,-0.002724,0.002500,0.249988,0,0);}
.maa_c00496{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);}
.m83_c00496{transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00496{transform:matrix(0.275496,-0.002755,0.002500,0.249988,0,0);-ms-transform:matrix(0.275496,-0.002755,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275496,-0.002755,0.002500,0.249988,0,0);}
.m7f_c00496{transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);}
.m35_c00496{transform:matrix(0.294255,-0.002943,0.002500,0.249988,0,0);-ms-transform:matrix(0.294255,-0.002943,0.002500,0.249988,0,0);-webkit-transform:matrix(0.294255,-0.002943,0.002500,0.249988,0,0);}
.m33_c00496{transform:matrix(0.306925,-0.003069,0.002500,0.249988,0,0);-ms-transform:matrix(0.306925,-0.003069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.306925,-0.003069,0.002500,0.249988,0,0);}
.mc_c00496{transform:matrix(0.308378,-0.003701,0.003000,0.249982,0,0);-ms-transform:matrix(0.308378,-0.003701,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308378,-0.003701,0.003000,0.249982,0,0);}
.m87_c00496{transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.328646,-0.003944,0.003000,0.249982,0,0);-ms-transform:matrix(0.328646,-0.003944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328646,-0.003944,0.003000,0.249982,0,0);}
.m72_c00496{transform:matrix(0.331228,0.003312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.331228,0.003312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.331228,0.003312,-0.002500,0.249988,0,0);}
.m8_c00496{transform:matrix(0.336487,-0.004374,0.003250,0.249979,0,0);-ms-transform:matrix(0.336487,-0.004374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336487,-0.004374,0.003250,0.249979,0,0);}
.m80_c00496{transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346635,0.000000,0.000000,0.250000,0,0);}
.m93_c00496{transform:matrix(0.351955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351955,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.356427,-0.003564,0.002500,0.249988,0,0);-ms-transform:matrix(0.356427,-0.003564,0.002500,0.249988,0,0);-webkit-transform:matrix(0.356427,-0.003564,0.002500,0.249988,0,0);}
.ma1_c00496{transform:matrix(0.364384,-0.005466,0.003750,0.249972,0,0);-ms-transform:matrix(0.364384,-0.005466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.364384,-0.005466,0.003750,0.249972,0,0);}
.m7_c00496{transform:matrix(0.369099,-0.004798,0.003250,0.249979,0,0);-ms-transform:matrix(0.369099,-0.004798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.369099,-0.004798,0.003250,0.249979,0,0);}
.m9c_c00496{transform:matrix(0.370195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370195,0.000000,0.000000,0.250000,0,0);}
.ma4_c00496{transform:matrix(0.377073,-0.005656,0.003750,0.249972,0,0);-ms-transform:matrix(0.377073,-0.005656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.377073,-0.005656,0.003750,0.249972,0,0);}
.m1_c00496{transform:matrix(0.386342,-0.005022,0.003250,0.249979,0,0);-ms-transform:matrix(0.386342,-0.005022,0.003250,0.249979,0,0);-webkit-transform:matrix(0.386342,-0.005022,0.003250,0.249979,0,0);}
.m8f_c00496{transform:matrix(0.399660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399660,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.412470,-0.004950,0.003000,0.249982,0,0);-ms-transform:matrix(0.412470,-0.004950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.412470,-0.004950,0.003000,0.249982,0,0);}
.m6_c00496{transform:matrix(0.412665,-0.005365,0.003250,0.249979,0,0);-ms-transform:matrix(0.412665,-0.005365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.412665,-0.005365,0.003250,0.249979,0,0);}
.m34_c00496{transform:matrix(0.413914,-0.004139,0.002500,0.249988,0,0);-ms-transform:matrix(0.413914,-0.004139,0.002500,0.249988,0,0);-webkit-transform:matrix(0.413914,-0.004139,0.002500,0.249988,0,0);}
.m88_c00496{transform:matrix(0.425940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425940,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.453982,-0.005448,0.003000,0.249982,0,0);-ms-transform:matrix(0.453982,-0.005448,0.003000,0.249982,0,0);-webkit-transform:matrix(0.453982,-0.005448,0.003000,0.249982,0,0);}
.m5_c00496{transform:matrix(0.466961,-0.006070,0.003250,0.249979,0,0);-ms-transform:matrix(0.466961,-0.006070,0.003250,0.249979,0,0);-webkit-transform:matrix(0.466961,-0.006070,0.003250,0.249979,0,0);}
.m0_c00496{transform:matrix(0.476300,-0.006192,0.003250,0.249979,0,0);-ms-transform:matrix(0.476300,-0.006192,0.003250,0.249979,0,0);-webkit-transform:matrix(0.476300,-0.006192,0.003250,0.249979,0,0);}
.m86_c00496{transform:matrix(0.478010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478010,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.481945,-0.005783,0.003000,0.249982,0,0);-ms-transform:matrix(0.481945,-0.005783,0.003000,0.249982,0,0);-webkit-transform:matrix(0.481945,-0.005783,0.003000,0.249982,0,0);}
.m8e_c00496{transform:matrix(0.523080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523080,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.533665,-0.006938,0.003250,0.249979,0,0);-ms-transform:matrix(0.533665,-0.006938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.533665,-0.006938,0.003250,0.249979,0,0);}
.m7e_c00496{transform:matrix(0.549595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549595,0.000000,0.000000,0.250000,0,0);}
.m89_c00496{transform:matrix(0.553005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553005,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.578251,-0.007517,0.003250,0.249979,0,0);-ms-transform:matrix(0.578251,-0.007517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.578251,-0.007517,0.003250,0.249979,0,0);}
.ma_c00496{transform:matrix(0.598502,-0.007182,0.003000,0.249982,0,0);-ms-transform:matrix(0.598502,-0.007182,0.003000,0.249982,0,0);-webkit-transform:matrix(0.598502,-0.007182,0.003000,0.249982,0,0);}
.m95_c00496{transform:matrix(0.701640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.701640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.701640,0.000000,0.000000,0.250000,0,0);}
.m9f_c00496{transform:matrix(0.981270,-0.014719,0.003750,0.249972,0,0);-ms-transform:matrix(0.981270,-0.014719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.981270,-0.014719,0.003750,0.249972,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;}
.fs10_c00496{font-size:14.700000px;}
.fs11_c00496{font-size:28.350000px;}
.fsc_c00496{font-size:50.400000px;}
.fsf_c00496{font-size:51.450000px;}
.fs12_c00496{font-size:53.556024px;}
.fsd_c00496{font-size:54.600000px;}
.fs13_c00496{font-size:59.850000px;}
.fs1_c00496{font-size:65.104687px;}
.fs9_c00496{font-size:66.153307px;}
.fse_c00496{font-size:67.200000px;}
.fsa_c00496{font-size:67.203360px;}
.fsb_c00496{font-size:68.253412px;}
.fs7_c00496{font-size:69.303465px;}
.fs6_c00496{font-size:71.403570px;}
.fs4_c00496{font-size:71.405141px;}
.fs8_c00496{font-size:72.453622px;}
.fs2_c00496{font-size:72.455216px;}
.fs5_c00496{font-size:73.503675px;}
.fs3_c00496{font-size:73.505292px;}
.fs0_c00496{font-size:85.057186px;}
.y0_c00496{bottom:0.000000px;}
.y8c_c00496{bottom:141.474000px;}
.y80_c00496{bottom:155.902500px;}
.y82_c00496{bottom:158.760000px;}
.y7e_c00496{bottom:162.259500px;}
.y81_c00496{bottom:162.540000px;}
.y7d_c00496{bottom:174.079500px;}
.y7f_c00496{bottom:176.671500px;}
.y7c_c00496{bottom:191.898000px;}
.y83_c00496{bottom:192.961500px;}
.y84_c00496{bottom:193.248780px;}
.y85_c00496{bottom:193.775775px;}
.y86_c00496{bottom:193.921732px;}
.y87_c00496{bottom:194.284095px;}
.y88_c00496{bottom:194.916367px;}
.y89_c00496{bottom:195.622192px;}
.y8a_c00496{bottom:195.849038px;}
.y8b_c00496{bottom:196.218578px;}
.y76_c00496{bottom:511.291770px;}
.y77_c00496{bottom:511.291785px;}
.y74_c00496{bottom:511.292040px;}
.y75_c00496{bottom:511.292055px;}
.y79_c00496{bottom:511.292145px;}
.y78_c00496{bottom:511.292430px;}
.y7a_c00496{bottom:511.292475px;}
.y7b_c00496{bottom:511.293090px;}
.y6c_c00496{bottom:533.905980px;}
.y6d_c00496{bottom:533.906295px;}
.y6b_c00496{bottom:533.906565px;}
.y6e_c00496{bottom:533.906610px;}
.y70_c00496{bottom:533.906640px;}
.y71_c00496{bottom:533.906955px;}
.y72_c00496{bottom:533.906970px;}
.y73_c00496{bottom:533.906985px;}
.y68_c00496{bottom:533.907120px;}
.y6a_c00496{bottom:533.907150px;}
.y6f_c00496{bottom:533.907225px;}
.y67_c00496{bottom:533.907405px;}
.y69_c00496{bottom:533.907735px;}
.y5f_c00496{bottom:557.221230px;}
.y60_c00496{bottom:557.221260px;}
.y61_c00496{bottom:557.221275px;}
.y62_c00496{bottom:557.221590px;}
.y63_c00496{bottom:557.221620px;}
.y64_c00496{bottom:557.221935px;}
.y65_c00496{bottom:557.222565px;}
.y66_c00496{bottom:557.223180px;}
.y5a_c00496{bottom:580.050270px;}
.y5b_c00496{bottom:580.050585px;}
.y5c_c00496{bottom:580.050600px;}
.y59_c00496{bottom:580.050840px;}
.y5d_c00496{bottom:580.050945px;}
.y5e_c00496{bottom:580.050960px;}
.y56_c00496{bottom:580.051395px;}
.y57_c00496{bottom:580.051410px;}
.y58_c00496{bottom:580.051425px;}
.y55_c00496{bottom:602.353485px;}
.y54_c00496{bottom:603.197355px;}
.y53_c00496{bottom:603.745020px;}
.y52_c00496{bottom:603.966030px;}
.y51_c00496{bottom:604.582350px;}
.y50_c00496{bottom:605.238330px;}
.y4f_c00496{bottom:605.543415px;}
.y4e_c00496{bottom:605.880000px;}
.y47_c00496{bottom:664.308195px;}
.y49_c00496{bottom:664.308465px;}
.y4b_c00496{bottom:664.308705px;}
.y4a_c00496{bottom:664.308735px;}
.y48_c00496{bottom:664.308780px;}
.y4d_c00496{bottom:664.308960px;}
.y4c_c00496{bottom:664.309290px;}
.y40_c00496{bottom:685.527885px;}
.y41_c00496{bottom:685.984350px;}
.y42_c00496{bottom:686.526780px;}
.y43_c00496{bottom:686.853930px;}
.y44_c00496{bottom:687.525765px;}
.y45_c00496{bottom:687.717450px;}
.y46_c00496{bottom:687.963375px;}
.y33_c00496{bottom:707.940420px;}
.y34_c00496{bottom:708.159465px;}
.y35_c00496{bottom:708.346770px;}
.y36_c00496{bottom:708.660210px;}
.y37_c00496{bottom:708.864285px;}
.y38_c00496{bottom:709.202265px;}
.y39_c00496{bottom:709.462770px;}
.y3a_c00496{bottom:709.800480px;}
.y3b_c00496{bottom:710.050290px;}
.y3c_c00496{bottom:710.204940px;}
.y3d_c00496{bottom:710.631780px;}
.y3e_c00496{bottom:711.018045px;}
.y3f_c00496{bottom:711.341085px;}
.y2a_c00496{bottom:730.621500px;}
.y2b_c00496{bottom:730.964490px;}
.y2c_c00496{bottom:731.296215px;}
.y2d_c00496{bottom:731.709945px;}
.y2e_c00496{bottom:731.998905px;}
.y2f_c00496{bottom:732.716610px;}
.y30_c00496{bottom:733.273185px;}
.y31_c00496{bottom:733.689375px;}
.y32_c00496{bottom:734.134530px;}
.y24_c00496{bottom:753.569124px;}
.y25_c00496{bottom:754.716756px;}
.y26_c00496{bottom:755.665680px;}
.y27_c00496{bottom:756.032388px;}
.y28_c00496{bottom:756.368856px;}
.y29_c00496{bottom:757.292010px;}
.y1c_c00496{bottom:776.788794px;}
.y1d_c00496{bottom:777.059688px;}
.y1e_c00496{bottom:777.983346px;}
.y1f_c00496{bottom:778.494126px;}
.y20_c00496{bottom:778.773276px;}
.y21_c00496{bottom:779.178240px;}
.y22_c00496{bottom:780.018606px;}
.y23_c00496{bottom:780.777498px;}
.y14_c00496{bottom:800.011056px;}
.y15_c00496{bottom:800.377302px;}
.y16_c00496{bottom:801.170382px;}
.y17_c00496{bottom:801.566418px;}
.y18_c00496{bottom:802.399152px;}
.y19_c00496{bottom:802.665786px;}
.y1a_c00496{bottom:803.432748px;}
.y1b_c00496{bottom:804.283410px;}
.yb_c00496{bottom:822.577500px;}
.yc_c00496{bottom:823.235256px;}
.yd_c00496{bottom:823.493970px;}
.ye_c00496{bottom:823.975614px;}
.yf_c00496{bottom:824.485698px;}
.y10_c00496{bottom:825.139854px;}
.y11_c00496{bottom:825.932556px;}
.y12_c00496{bottom:826.247016px;}
.y13_c00496{bottom:826.770402px;}
.y1_c00496{bottom:868.779000px;}
.y2_c00496{bottom:869.196846px;}
.y3_c00496{bottom:869.545818px;}
.y4_c00496{bottom:869.849979px;}
.y5_c00496{bottom:869.946017px;}
.y6_c00496{bottom:870.469104px;}
.y7_c00496{bottom:870.883245px;}
.y8_c00496{bottom:871.107359px;}
.y9_c00496{bottom:871.525556px;}
.ya_c00496{bottom:872.655815px;}
.h12_c00496{height:14.700000px;}
.h13_c00496{height:28.350000px;}
.he_c00496{height:50.400000px;}
.h11_c00496{height:51.450000px;}
.h14_c00496{height:53.556024px;}
.hf_c00496{height:54.600000px;}
.h15_c00496{height:59.850000px;}
.h3_c00496{height:65.104687px;}
.hb_c00496{height:66.153307px;}
.h10_c00496{height:67.200000px;}
.hc_c00496{height:67.203360px;}
.hd_c00496{height:68.253412px;}
.h9_c00496{height:69.303465px;}
.h8_c00496{height:71.403570px;}
.h6_c00496{height:71.405141px;}
.ha_c00496{height:72.453622px;}
.h4_c00496{height:72.455216px;}
.h7_c00496{height:73.503675px;}
.h5_c00496{height:73.505292px;}
.h2_c00496{height:85.057186px;}
.h1_c00496{height:1005.000000px;}
.h0_c00496{height:1005.150000px;}
.w0_c00496{width:715.200000px;}
.w1_c00496{width:715.500000px;}
.x0_c00496{left:0.000000px;}
.x66_c00496{left:6.750000px;}
.x67_c00496{left:48.870000px;}
.x5a_c00496{left:66.960000px;}
.x5d_c00496{left:69.930000px;}
.x6c_c00496{left:76.950000px;}
.x5e_c00496{left:125.280000px;}
.x6d_c00496{left:126.360000px;}
.xb_c00496{left:138.546000px;}
.x5f_c00496{left:141.750000px;}
.x22_c00496{left:148.177368px;}
.x13_c00496{left:150.281448px;}
.x3c_c00496{left:152.226000px;}
.x1a_c00496{left:153.247002px;}
.x4a_c00496{left:155.516790px;}
.x2d_c00496{left:174.551325px;}
.x1b_c00496{left:177.821790px;}
.x60_c00496{left:179.010000px;}
.x14_c00496{left:180.801948px;}
.x3d_c00496{left:185.884500px;}
.x4f_c00496{left:187.647885px;}
.x1_c00496{left:188.829000px;}
.xc_c00496{left:193.359000px;}
.x2e_c00496{left:195.382035px;}
.x36_c00496{left:199.164015px;}
.x61_c00496{left:211.140000px;}
.xd_c00496{left:214.918500px;}
.x3e_c00496{left:216.393000px;}
.x4b_c00496{left:217.620000px;}
.x3a_c00496{left:219.244260px;}
.x2_c00496{left:220.971000px;}
.x62_c00496{left:223.020000px;}
.x23_c00496{left:230.186406px;}
.x44_c00496{left:234.091920px;}
.x4c_c00496{left:236.520390px;}
.x50_c00496{left:241.650285px;}
.x3_c00496{left:247.815000px;}
.x2f_c00496{left:252.834105px;}
.xe_c00496{left:255.055500px;}
.x27_c00496{left:256.122000px;}
.x58_c00496{left:257.312220px;}
.x4d_c00496{left:258.391080px;}
.x1c_c00496{left:261.794298px;}
.x5b_c00496{left:264.600000px;}
.x63_c00496{left:269.730000px;}
.x4_c00496{left:271.212000px;}
.x51_c00496{left:273.511965px;}
.x5_c00496{left:278.599500px;}
.x15_c00496{left:279.894948px;}
.x3f_c00496{left:281.991000px;}
.x28_c00496{left:285.018000px;}
.x37_c00496{left:286.122015px;}
.x30_c00496{left:290.382480px;}
.xf_c00496{left:297.562500px;}
.x45_c00496{left:306.456150px;}
.x1d_c00496{left:308.234856px;}
.x52_c00496{left:310.774185px;}
.x64_c00496{left:312.390000px;}
.x6_c00496{left:318.837000px;}
.x46_c00496{left:321.576165px;}
.x24_c00496{left:324.195156px;}
.x6e_c00496{left:326.160000px;}
.x5c_c00496{left:330.480000px;}
.x65_c00496{left:331.560000px;}
.x1e_c00496{left:333.622662px;}
.x3b_c00496{left:335.079840px;}
.x47_c00496{left:341.826690px;}
.x40_c00496{left:343.623000px;}
.x53_c00496{left:346.146225px;}
.x25_c00496{left:348.233580px;}
.x16_c00496{left:349.289448px;}
.x7_c00496{left:350.694000px;}
.x10_c00496{left:352.075500px;}
.x38_c00496{left:353.305515px;}
.x29_c00496{left:356.788500px;}
.x4e_c00496{left:359.916735px;}
.x41_c00496{left:365.724000px;}
.x8_c00496{left:367.933500px;}
.x54_c00496{left:369.367050px;}
.x1f_c00496{left:370.370094px;}
.x17_c00496{left:371.508948px;}
.x68_c00496{left:375.030000px;}
.x31_c00496{left:384.635925px;}
.x39_c00496{left:397.066515px;}
.x9_c00496{left:400.102500px;}
.x32_c00496{left:401.901105px;}
.x55_c00496{left:407.709390px;}
.x6f_c00496{left:410.574000px;}
.x2a_c00496{left:412.446000px;}
.x26_c00496{left:414.161496px;}
.x59_c00496{left:415.809075px;}
.x11_c00496{left:418.134000px;}
.x42_c00496{left:420.490500px;}
.x48_c00496{left:427.150725px;}
.x69_c00496{left:429.030000px;}
.x6a_c00496{left:430.110000px;}
.x18_c00496{left:435.422448px;}
.x6b_c00496{left:437.400000px;}
.x73_c00496{left:438.480000px;}
.x12_c00496{left:444.339000px;}
.x20_c00496{left:446.776512px;}
.x33_c00496{left:449.385585px;}
.x2b_c00496{left:454.065000px;}
.x49_c00496{left:460.902600px;}
.x56_c00496{left:465.492165px;}
.x74_c00496{left:471.150000px;}
.xa_c00496{left:487.045500px;}
.x34_c00496{left:492.362520px;}
.x2c_c00496{left:498.580500px;}
.x43_c00496{left:504.877500px;}
.x19_c00496{left:506.310948px;}
.x21_c00496{left:515.768340px;}
.x35_c00496{left:528.266880px;}
.x57_c00496{left:531.645780px;}
.x70_c00496{left:533.668500px;}
.x71_c00496{left:548.791500px;}
.x72_c00496{left:573.427500px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fs10_c00496{font-size:13.066667pt;}
.fs11_c00496{font-size:25.200000pt;}
.fsc_c00496{font-size:44.800000pt;}
.fsf_c00496{font-size:45.733333pt;}
.fs12_c00496{font-size:47.605355pt;}
.fsd_c00496{font-size:48.533333pt;}
.fs13_c00496{font-size:53.200000pt;}
.fs1_c00496{font-size:57.870833pt;}
.fs9_c00496{font-size:58.802940pt;}
.fse_c00496{font-size:59.733333pt;}
.fsa_c00496{font-size:59.736320pt;}
.fsb_c00496{font-size:60.669700pt;}
.fs7_c00496{font-size:61.603080pt;}
.fs6_c00496{font-size:63.469840pt;}
.fs4_c00496{font-size:63.471236pt;}
.fs8_c00496{font-size:64.403220pt;}
.fs2_c00496{font-size:64.404637pt;}
.fs5_c00496{font-size:65.336600pt;}
.fs3_c00496{font-size:65.338037pt;}
.fs0_c00496{font-size:75.606388pt;}
.y0_c00496{bottom:0.000000pt;}
.y8c_c00496{bottom:125.754667pt;}
.y80_c00496{bottom:138.580000pt;}
.y82_c00496{bottom:141.120000pt;}
.y7e_c00496{bottom:144.230667pt;}
.y81_c00496{bottom:144.480000pt;}
.y7d_c00496{bottom:154.737333pt;}
.y7f_c00496{bottom:157.041333pt;}
.y7c_c00496{bottom:170.576000pt;}
.y83_c00496{bottom:171.521333pt;}
.y84_c00496{bottom:171.776693pt;}
.y85_c00496{bottom:172.245133pt;}
.y86_c00496{bottom:172.374873pt;}
.y87_c00496{bottom:172.696973pt;}
.y88_c00496{bottom:173.258993pt;}
.y89_c00496{bottom:173.886393pt;}
.y8a_c00496{bottom:174.088033pt;}
.y8b_c00496{bottom:174.416513pt;}
.y76_c00496{bottom:454.481573pt;}
.y77_c00496{bottom:454.481587pt;}
.y74_c00496{bottom:454.481813pt;}
.y75_c00496{bottom:454.481827pt;}
.y79_c00496{bottom:454.481907pt;}
.y78_c00496{bottom:454.482160pt;}
.y7a_c00496{bottom:454.482200pt;}
.y7b_c00496{bottom:454.482747pt;}
.y6c_c00496{bottom:474.583093pt;}
.y6d_c00496{bottom:474.583373pt;}
.y6b_c00496{bottom:474.583613pt;}
.y6e_c00496{bottom:474.583653pt;}
.y70_c00496{bottom:474.583680pt;}
.y71_c00496{bottom:474.583960pt;}
.y72_c00496{bottom:474.583973pt;}
.y73_c00496{bottom:474.583987pt;}
.y68_c00496{bottom:474.584107pt;}
.y6a_c00496{bottom:474.584133pt;}
.y6f_c00496{bottom:474.584200pt;}
.y67_c00496{bottom:474.584360pt;}
.y69_c00496{bottom:474.584653pt;}
.y5f_c00496{bottom:495.307760pt;}
.y60_c00496{bottom:495.307787pt;}
.y61_c00496{bottom:495.307800pt;}
.y62_c00496{bottom:495.308080pt;}
.y63_c00496{bottom:495.308107pt;}
.y64_c00496{bottom:495.308387pt;}
.y65_c00496{bottom:495.308947pt;}
.y66_c00496{bottom:495.309493pt;}
.y5a_c00496{bottom:515.600240pt;}
.y5b_c00496{bottom:515.600520pt;}
.y5c_c00496{bottom:515.600533pt;}
.y59_c00496{bottom:515.600747pt;}
.y5d_c00496{bottom:515.600840pt;}
.y5e_c00496{bottom:515.600853pt;}
.y56_c00496{bottom:515.601240pt;}
.y57_c00496{bottom:515.601253pt;}
.y58_c00496{bottom:515.601267pt;}
.y55_c00496{bottom:535.425320pt;}
.y54_c00496{bottom:536.175427pt;}
.y53_c00496{bottom:536.662240pt;}
.y52_c00496{bottom:536.858693pt;}
.y51_c00496{bottom:537.406533pt;}
.y50_c00496{bottom:537.989627pt;}
.y4f_c00496{bottom:538.260813pt;}
.y4e_c00496{bottom:538.560000pt;}
.y47_c00496{bottom:590.496173pt;}
.y49_c00496{bottom:590.496413pt;}
.y4b_c00496{bottom:590.496627pt;}
.y4a_c00496{bottom:590.496653pt;}
.y48_c00496{bottom:590.496693pt;}
.y4d_c00496{bottom:590.496853pt;}
.y4c_c00496{bottom:590.497147pt;}
.y40_c00496{bottom:609.358120pt;}
.y41_c00496{bottom:609.763867pt;}
.y42_c00496{bottom:610.246027pt;}
.y43_c00496{bottom:610.536827pt;}
.y44_c00496{bottom:611.134013pt;}
.y45_c00496{bottom:611.304400pt;}
.y46_c00496{bottom:611.523000pt;}
.y33_c00496{bottom:629.280373pt;}
.y34_c00496{bottom:629.475080pt;}
.y35_c00496{bottom:629.641573pt;}
.y36_c00496{bottom:629.920187pt;}
.y37_c00496{bottom:630.101587pt;}
.y38_c00496{bottom:630.402013pt;}
.y39_c00496{bottom:630.633573pt;}
.y3a_c00496{bottom:630.933760pt;}
.y3b_c00496{bottom:631.155813pt;}
.y3c_c00496{bottom:631.293280pt;}
.y3d_c00496{bottom:631.672693pt;}
.y3e_c00496{bottom:632.016040pt;}
.y3f_c00496{bottom:632.303187pt;}
.y2a_c00496{bottom:649.441333pt;}
.y2b_c00496{bottom:649.746213pt;}
.y2c_c00496{bottom:650.041080pt;}
.y2d_c00496{bottom:650.408840pt;}
.y2e_c00496{bottom:650.665693pt;}
.y2f_c00496{bottom:651.303653pt;}
.y30_c00496{bottom:651.798387pt;}
.y31_c00496{bottom:652.168333pt;}
.y32_c00496{bottom:652.564027pt;}
.y24_c00496{bottom:669.839221pt;}
.y25_c00496{bottom:670.859339pt;}
.y26_c00496{bottom:671.702827pt;}
.y27_c00496{bottom:672.028789pt;}
.y28_c00496{bottom:672.327872pt;}
.y29_c00496{bottom:673.148453pt;}
.y1c_c00496{bottom:690.478928pt;}
.y1d_c00496{bottom:690.719723pt;}
.y1e_c00496{bottom:691.540752pt;}
.y1f_c00496{bottom:691.994779pt;}
.y20_c00496{bottom:692.242912pt;}
.y21_c00496{bottom:692.602880pt;}
.y22_c00496{bottom:693.349872pt;}
.y23_c00496{bottom:694.024443pt;}
.y14_c00496{bottom:711.120939pt;}
.y15_c00496{bottom:711.446491pt;}
.y16_c00496{bottom:712.151451pt;}
.y17_c00496{bottom:712.503483pt;}
.y18_c00496{bottom:713.243691pt;}
.y19_c00496{bottom:713.480699pt;}
.y1a_c00496{bottom:714.162443pt;}
.y1b_c00496{bottom:714.918587pt;}
.yb_c00496{bottom:731.180000pt;}
.yc_c00496{bottom:731.764672pt;}
.yd_c00496{bottom:731.994640pt;}
.ye_c00496{bottom:732.422768pt;}
.yf_c00496{bottom:732.876176pt;}
.y10_c00496{bottom:733.457648pt;}
.y11_c00496{bottom:734.162272pt;}
.y12_c00496{bottom:734.441792pt;}
.y13_c00496{bottom:734.907024pt;}
.y1_c00496{bottom:772.248000pt;}
.y2_c00496{bottom:772.619419pt;}
.y3_c00496{bottom:772.929616pt;}
.y4_c00496{bottom:773.199981pt;}
.y5_c00496{bottom:773.285348pt;}
.y6_c00496{bottom:773.750315pt;}
.y7_c00496{bottom:774.118440pt;}
.y8_c00496{bottom:774.317652pt;}
.y9_c00496{bottom:774.689383pt;}
.ya_c00496{bottom:775.694057pt;}
.h12_c00496{height:13.066667pt;}
.h13_c00496{height:25.200000pt;}
.he_c00496{height:44.800000pt;}
.h11_c00496{height:45.733333pt;}
.h14_c00496{height:47.605355pt;}
.hf_c00496{height:48.533333pt;}
.h15_c00496{height:53.200000pt;}
.h3_c00496{height:57.870833pt;}
.hb_c00496{height:58.802940pt;}
.h10_c00496{height:59.733333pt;}
.hc_c00496{height:59.736320pt;}
.hd_c00496{height:60.669700pt;}
.h9_c00496{height:61.603080pt;}
.h8_c00496{height:63.469840pt;}
.h6_c00496{height:63.471236pt;}
.ha_c00496{height:64.403220pt;}
.h4_c00496{height:64.404637pt;}
.h7_c00496{height:65.336600pt;}
.h5_c00496{height:65.338037pt;}
.h2_c00496{height:75.606388pt;}
.h1_c00496{height:893.333333pt;}
.h0_c00496{height:893.466667pt;}
.w0_c00496{width:635.733333pt;}
.w1_c00496{width:636.000000pt;}
.x0_c00496{left:0.000000pt;}
.x66_c00496{left:6.000000pt;}
.x67_c00496{left:43.440000pt;}
.x5a_c00496{left:59.520000pt;}
.x5d_c00496{left:62.160000pt;}
.x6c_c00496{left:68.400000pt;}
.x5e_c00496{left:111.360000pt;}
.x6d_c00496{left:112.320000pt;}
.xb_c00496{left:123.152000pt;}
.x5f_c00496{left:126.000000pt;}
.x22_c00496{left:131.713216pt;}
.x13_c00496{left:133.583509pt;}
.x3c_c00496{left:135.312000pt;}
.x1a_c00496{left:136.219557pt;}
.x4a_c00496{left:138.237147pt;}
.x2d_c00496{left:155.156733pt;}
.x1b_c00496{left:158.063813pt;}
.x60_c00496{left:159.120000pt;}
.x14_c00496{left:160.712843pt;}
.x3d_c00496{left:165.230667pt;}
.x4f_c00496{left:166.798120pt;}
.x1_c00496{left:167.848000pt;}
.xc_c00496{left:171.874667pt;}
.x2e_c00496{left:173.672920pt;}
.x36_c00496{left:177.034680pt;}
.x61_c00496{left:187.680000pt;}
.xd_c00496{left:191.038667pt;}
.x3e_c00496{left:192.349333pt;}
.x4b_c00496{left:193.440000pt;}
.x3a_c00496{left:194.883787pt;}
.x2_c00496{left:196.418667pt;}
.x62_c00496{left:198.240000pt;}
.x23_c00496{left:204.610139pt;}
.x44_c00496{left:208.081707pt;}
.x4c_c00496{left:210.240347pt;}
.x50_c00496{left:214.800253pt;}
.x3_c00496{left:220.280000pt;}
.x2f_c00496{left:224.741427pt;}
.xe_c00496{left:226.716000pt;}
.x27_c00496{left:227.664000pt;}
.x58_c00496{left:228.721973pt;}
.x4d_c00496{left:229.680960pt;}
.x1c_c00496{left:232.706043pt;}
.x5b_c00496{left:235.200000pt;}
.x63_c00496{left:239.760000pt;}
.x4_c00496{left:241.077333pt;}
.x51_c00496{left:243.121747pt;}
.x5_c00496{left:247.644000pt;}
.x15_c00496{left:248.795509pt;}
.x3f_c00496{left:250.658667pt;}
.x28_c00496{left:253.349333pt;}
.x37_c00496{left:254.330680pt;}
.x30_c00496{left:258.117760pt;}
.xf_c00496{left:264.500000pt;}
.x45_c00496{left:272.405467pt;}
.x1d_c00496{left:273.986539pt;}
.x52_c00496{left:276.243720pt;}
.x64_c00496{left:277.680000pt;}
.x6_c00496{left:283.410667pt;}
.x46_c00496{left:285.845480pt;}
.x24_c00496{left:288.173472pt;}
.x6e_c00496{left:289.920000pt;}
.x5c_c00496{left:293.760000pt;}
.x65_c00496{left:294.720000pt;}
.x1e_c00496{left:296.553477pt;}
.x3b_c00496{left:297.848747pt;}
.x47_c00496{left:303.845947pt;}
.x40_c00496{left:305.442667pt;}
.x53_c00496{left:307.685533pt;}
.x25_c00496{left:309.540960pt;}
.x16_c00496{left:310.479509pt;}
.x7_c00496{left:311.728000pt;}
.x10_c00496{left:312.956000pt;}
.x38_c00496{left:314.049347pt;}
.x29_c00496{left:317.145333pt;}
.x4e_c00496{left:319.925987pt;}
.x41_c00496{left:325.088000pt;}
.x8_c00496{left:327.052000pt;}
.x54_c00496{left:328.326267pt;}
.x1f_c00496{left:329.217861pt;}
.x17_c00496{left:330.230176pt;}
.x68_c00496{left:333.360000pt;}
.x31_c00496{left:341.898600pt;}
.x39_c00496{left:352.948013pt;}
.x9_c00496{left:355.646667pt;}
.x32_c00496{left:357.245427pt;}
.x55_c00496{left:362.408347pt;}
.x6f_c00496{left:364.954667pt;}
.x2a_c00496{left:366.618667pt;}
.x26_c00496{left:368.143552pt;}
.x59_c00496{left:369.608067pt;}
.x11_c00496{left:371.674667pt;}
.x42_c00496{left:373.769333pt;}
.x48_c00496{left:379.689533pt;}
.x69_c00496{left:381.360000pt;}
.x6a_c00496{left:382.320000pt;}
.x18_c00496{left:387.042176pt;}
.x6b_c00496{left:388.800000pt;}
.x73_c00496{left:389.760000pt;}
.x12_c00496{left:394.968000pt;}
.x20_c00496{left:397.134677pt;}
.x33_c00496{left:399.453853pt;}
.x2b_c00496{left:403.613333pt;}
.x49_c00496{left:409.691200pt;}
.x56_c00496{left:413.770813pt;}
.x74_c00496{left:418.800000pt;}
.xa_c00496{left:432.929333pt;}
.x34_c00496{left:437.655573pt;}
.x2c_c00496{left:443.182667pt;}
.x43_c00496{left:448.780000pt;}
.x19_c00496{left:450.054176pt;}
.x21_c00496{left:458.460747pt;}
.x35_c00496{left:469.570560pt;}
.x57_c00496{left:472.574027pt;}
.x70_c00496{left:474.372000pt;}
.x71_c00496{left:487.814667pt;}
.x72_c00496{left:509.713333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.m25_c00497{transform:matrix(0.009955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009955,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{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);}
.maa_c00497{transform:matrix(0.014843,0.000252,-0.004249,0.249964,0,0);-ms-transform:matrix(0.014843,0.000252,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.014843,0.000252,-0.004249,0.249964,0,0);}
.m96_c00497{transform:matrix(0.019312,0.000328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.019312,0.000328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.019312,0.000328,-0.004249,0.249964,0,0);}
.mdd_c00497{transform:matrix(0.074869,0.001273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.074869,0.001273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.074869,0.001273,-0.004249,0.249964,0,0);}
.m17_c00497{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);}
.m72_c00497{transform:matrix(0.093735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093735,0.000000,0.000000,0.250000,0,0);}
.mc9_c00497{transform:matrix(0.094716,0.001610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.094716,0.001610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.094716,0.001610,-0.004249,0.249964,0,0);}
.m55_c00497{transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.m9d_c00497{transform:matrix(0.110689,0.001882,-0.004249,0.249964,0,0);-ms-transform:matrix(0.110689,0.001882,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.110689,0.001882,-0.004249,0.249964,0,0);}
.m86_c00497{transform:matrix(0.121357,0.002063,-0.004249,0.249964,0,0);-ms-transform:matrix(0.121357,0.002063,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.121357,0.002063,-0.004249,0.249964,0,0);}
.m33_c00497{transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124235,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.133385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133385,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.136230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136230,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{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);}
.m59_c00497{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);}
.m4b_c00497{transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143985,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144105,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144740,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.154073,0.002619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154073,0.002619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154073,0.002619,-0.004249,0.249964,0,0);}
.m2d_c00497{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);}
.m97_c00497{transform:matrix(0.156757,0.002665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156757,0.002665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156757,0.002665,-0.004249,0.249964,0,0);}
.m19_c00497{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);}
.m62_c00497{transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159795,0.000000,0.000000,0.250000,0,0);}
.mca_c00497{transform:matrix(0.160857,0.002735,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160857,0.002735,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160857,0.002735,-0.004249,0.249964,0,0);}
.m2a_c00497{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);}
.m77_c00497{transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162845,0.000000,0.000000,0.250000,0,0);}
.mbd_c00497{transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);}
.m75_c00497{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);}
.m37_c00497{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);}
.m48_c00497{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);}
.mba_c00497{transform:matrix(0.168756,0.002869,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168756,0.002869,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168756,0.002869,-0.004249,0.249964,0,0);}
.m8d_c00497{transform:matrix(0.168906,0.002871,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168906,0.002871,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168906,0.002871,-0.004249,0.249964,0,0);}
.m8c_c00497{transform:matrix(0.169346,0.002879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169346,0.002879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169346,0.002879,-0.004249,0.249964,0,0);}
.md6_c00497{transform:matrix(0.169680,0.002885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169680,0.002885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169680,0.002885,-0.004249,0.249964,0,0);}
.m61_c00497{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);}
.m1e_c00497{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);}
.mbc_c00497{transform:matrix(0.172915,0.002940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172915,0.002940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172915,0.002940,-0.004249,0.249964,0,0);}
.m9_c00497{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);}
.m70_c00497{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);}
.mdb_c00497{transform:matrix(0.175715,0.002987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175715,0.002987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175715,0.002987,-0.004249,0.249964,0,0);}
.m4c_c00497{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{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);}
.m51_c00497{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);}
.m71_c00497{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);}
.m1d_c00497{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);}
.m64_c00497{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);}
.m5a_c00497{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);}
.m73_c00497{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);}
.m79_c00497{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{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);}
.ma9_c00497{transform:matrix(0.182074,0.003095,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182074,0.003095,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182074,0.003095,-0.004249,0.249964,0,0);}
.m14_c00497{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);}
.m49_c00497{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);}
.mb4_c00497{transform:matrix(0.185118,0.003147,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185118,0.003147,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185118,0.003147,-0.004249,0.249964,0,0);}
.m5d_c00497{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);}
.m63_c00497{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);}
.m36_c00497{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);}
.m6f_c00497{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);}
.me_c00497{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);}
.m47_c00497{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);}
.mc2_c00497{transform:matrix(0.188548,0.003205,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188548,0.003205,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188548,0.003205,-0.004249,0.249964,0,0);}
.ma0_c00497{transform:matrix(0.189108,0.003215,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189108,0.003215,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189108,0.003215,-0.004249,0.249964,0,0);}
.mb2_c00497{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);}
.m50_c00497{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);}
.m6c_c00497{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);}
.m5f_c00497{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);}
.m16_c00497{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);}
.m5c_c00497{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);}
.m35_c00497{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);}
.m66_c00497{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);}
.m46_c00497{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);}
.m9c_c00497{transform:matrix(0.193067,0.003282,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193067,0.003282,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193067,0.003282,-0.004249,0.249964,0,0);}
.m58_c00497{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);}
.ma_c00497{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);}
.m53_c00497{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);}
.md_c00497{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);}
.m5e_c00497{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);}
.m78_c00497{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);}
.m57_c00497{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);}
.mda_c00497{transform:matrix(0.198236,0.003370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198236,0.003370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198236,0.003370,-0.004249,0.249964,0,0);}
.m6d_c00497{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);}
.m6a_c00497{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);}
.m7d_c00497{transform:matrix(0.199656,0.003394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199656,0.003394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199656,0.003394,-0.004249,0.249964,0,0);}
.m7c_c00497{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);}
.m12_c00497{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);}
.m93_c00497{transform:matrix(0.200451,0.003408,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200451,0.003408,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200451,0.003408,-0.004249,0.249964,0,0);}
.m2c_c00497{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);}
.ma1_c00497{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);}
.mb8_c00497{transform:matrix(0.203221,0.003455,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203221,0.003455,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203221,0.003455,-0.004249,0.249964,0,0);}
.m13_c00497{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);}
.m3a_c00497{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_c00497{transform:matrix(0.204615,0.003478,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204615,0.003478,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204615,0.003478,-0.004249,0.249964,0,0);}
.mc5_c00497{transform:matrix(0.204680,0.003480,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204680,0.003480,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204680,0.003480,-0.004249,0.249964,0,0);}
.m3e_c00497{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);}
.m38_c00497{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);}
.m90_c00497{transform:matrix(0.207540,0.003528,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207540,0.003528,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207540,0.003528,-0.004249,0.249964,0,0);}
.md3_c00497{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);}
.md5_c00497{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);}
.m92_c00497{transform:matrix(0.210285,0.003575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210285,0.003575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210285,0.003575,-0.004249,0.249964,0,0);}
.m9e_c00497{transform:matrix(0.210290,0.003575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210290,0.003575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210290,0.003575,-0.004249,0.249964,0,0);}
.m8a_c00497{transform:matrix(0.210320,0.003575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210320,0.003575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210320,0.003575,-0.004249,0.249964,0,0);}
.mb9_c00497{transform:matrix(0.210530,0.003579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210530,0.003579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210530,0.003579,-0.004249,0.249964,0,0);}
.md0_c00497{transform:matrix(0.210565,0.003580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210565,0.003580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210565,0.003580,-0.004249,0.249964,0,0);}
.m74_c00497{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);}
.mb0_c00497{transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);}
.m9b_c00497{transform:matrix(0.212409,0.003611,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212409,0.003611,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212409,0.003611,-0.004249,0.249964,0,0);}
.mcf_c00497{transform:matrix(0.212574,0.003614,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212574,0.003614,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212574,0.003614,-0.004249,0.249964,0,0);}
.m20_c00497{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);}
.ma2_c00497{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);}
.m4f_c00497{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);}
.mc_c00497{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);}
.ma5_c00497{transform:matrix(0.214499,0.003646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214499,0.003646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214499,0.003646,-0.004249,0.249964,0,0);}
.m3d_c00497{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);}
.m1_c00497{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);}
.mad_c00497{transform:matrix(0.214939,0.003654,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214939,0.003654,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214939,0.003654,-0.004249,0.249964,0,0);}
.md9_c00497{transform:matrix(0.215569,0.003665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215569,0.003665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215569,0.003665,-0.004249,0.249964,0,0);}
.m76_c00497{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);}
.m3c_c00497{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);}
.m6b_c00497{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);}
.m65_c00497{transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);}
.mb3_c00497{transform:matrix(0.217734,0.003701,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217734,0.003701,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217734,0.003701,-0.004249,0.249964,0,0);}
.md7_c00497{transform:matrix(0.218538,0.003715,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218538,0.003715,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218538,0.003715,-0.004249,0.249964,0,0);}
.m68_c00497{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);}
.m22_c00497{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);}
.mcb_c00497{transform:matrix(0.219543,0.003732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219543,0.003732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219543,0.003732,-0.004249,0.249964,0,0);}
.m98_c00497{transform:matrix(0.219973,0.003740,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219973,0.003740,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219973,0.003740,-0.004249,0.249964,0,0);}
.m3b_c00497{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.ma7_c00497{transform:matrix(0.222993,0.003791,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222993,0.003791,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222993,0.003791,-0.004249,0.249964,0,0);}
.m9a_c00497{transform:matrix(0.223593,0.003801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223593,0.003801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223593,0.003801,-0.004249,0.249964,0,0);}
.mb1_c00497{transform:matrix(0.224743,0.003821,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224743,0.003821,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224743,0.003821,-0.004249,0.249964,0,0);}
.m8f_c00497{transform:matrix(0.225112,0.003827,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225112,0.003827,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225112,0.003827,-0.004249,0.249964,0,0);}
.mbe_c00497{transform:matrix(0.225967,0.003841,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225967,0.003841,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225967,0.003841,-0.004249,0.249964,0,0);}
.m43_c00497{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.mbb_c00497{transform:matrix(0.226577,0.003852,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226577,0.003852,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226577,0.003852,-0.004249,0.249964,0,0);}
.m5b_c00497{transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);}
.mb5_c00497{transform:matrix(0.227112,0.003861,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227112,0.003861,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227112,0.003861,-0.004249,0.249964,0,0);}
.mae_c00497{transform:matrix(0.228722,0.003888,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228722,0.003888,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228722,0.003888,-0.004249,0.249964,0,0);}
.m56_c00497{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);}
.ma8_c00497{transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);}
.mc3_c00497{transform:matrix(0.230447,0.003918,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230447,0.003918,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230447,0.003918,-0.004249,0.249964,0,0);}
.mac_c00497{transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230672,0.003921,-0.004249,0.249964,0,0);}
.m8b_c00497{transform:matrix(0.231122,0.003929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231122,0.003929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231122,0.003929,-0.004249,0.249964,0,0);}
.m99_c00497{transform:matrix(0.231547,0.003936,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231547,0.003936,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231547,0.003936,-0.004249,0.249964,0,0);}
.m18_c00497{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);}
.m52_c00497{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);}
.m7a_c00497{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);}
.m84_c00497{transform:matrix(0.234821,0.003992,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234821,0.003992,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234821,0.003992,-0.004249,0.249964,0,0);}
.m26_c00497{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);}
.m23_c00497{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);}
.m10_c00497{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);}
.mcd_c00497{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);}
.m11_c00497{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);}
.m21_c00497{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);}
.mc6_c00497{transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);}
.m39_c00497{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);}
.m4_c00497{transform:matrix(0.241398,0.002897,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241398,0.002897,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241398,0.002897,-0.003000,0.249982,0,0);}
.mcc_c00497{transform:matrix(0.241915,0.004113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241915,0.004113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241915,0.004113,-0.004249,0.249964,0,0);}
.mce_c00497{transform:matrix(0.242285,0.004119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242285,0.004119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242285,0.004119,-0.004249,0.249964,0,0);}
.ma6_c00497{transform:matrix(0.244710,0.004160,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244710,0.004160,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244710,0.004160,-0.004249,0.249964,0,0);}
.m7b_c00497{transform:matrix(0.244840,0.004162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244840,0.004162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244840,0.004162,-0.004249,0.249964,0,0);}
.m7f_c00497{transform:matrix(0.249234,0.004237,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249234,0.004237,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249234,0.004237,-0.004249,0.249964,0,0);}
.m27_c00497{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{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);}
.m83_c00497{transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);}
.mc0_c00497{transform:matrix(0.253028,0.004301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253028,0.004301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253028,0.004301,-0.004249,0.249964,0,0);}
.ma4_c00497{transform:matrix(0.255383,0.004342,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255383,0.004342,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255383,0.004342,-0.004249,0.249964,0,0);}
.mf_c00497{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.256178,0.004355,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256178,0.004355,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256178,0.004355,-0.004249,0.249964,0,0);}
.m8e_c00497{transform:matrix(0.256713,0.004364,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256713,0.004364,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256713,0.004364,-0.004249,0.249964,0,0);}
.m91_c00497{transform:matrix(0.257788,0.004382,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257788,0.004382,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257788,0.004382,-0.004249,0.249964,0,0);}
.mc1_c00497{transform:matrix(0.259777,0.004416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259777,0.004416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259777,0.004416,-0.004249,0.249964,0,0);}
.mb_c00497{transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);}
.maf_c00497{transform:matrix(0.268941,0.004572,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268941,0.004572,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268941,0.004572,-0.004249,0.249964,0,0);}
.md4_c00497{transform:matrix(0.271621,0.004618,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271621,0.004618,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271621,0.004618,-0.004249,0.249964,0,0);}
.md1_c00497{transform:matrix(0.273845,0.004655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273845,0.004655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273845,0.004655,-0.004249,0.249964,0,0);}
.m54_c00497{transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);}
.mdc_c00497{transform:matrix(0.276340,0.004698,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276340,0.004698,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276340,0.004698,-0.004249,0.249964,0,0);}
.mc4_c00497{transform:matrix(0.279835,0.004757,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279835,0.004757,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279835,0.004757,-0.004249,0.249964,0,0);}
.md8_c00497{transform:matrix(0.281124,0.004779,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281124,0.004779,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281124,0.004779,-0.004249,0.249964,0,0);}
.m87_c00497{transform:matrix(0.291063,0.004948,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291063,0.004948,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291063,0.004948,-0.004249,0.249964,0,0);}
.m1c_c00497{transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00497{transform:matrix(0.297737,0.005062,-0.004249,0.249964,0,0);-ms-transform:matrix(0.297737,0.005062,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.297737,0.005062,-0.004249,0.249964,0,0);}
.m3_c00497{transform:matrix(0.298224,0.003579,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298224,0.003579,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298224,0.003579,-0.003000,0.249982,0,0);}
.m5_c00497{transform:matrix(0.298898,0.003587,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298898,0.003587,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298898,0.003587,-0.003000,0.249982,0,0);}
.m40_c00497{transform:matrix(0.298910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298910,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.304701,0.005180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.304701,0.005180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.304701,0.005180,-0.004249,0.249964,0,0);}
.mc7_c00497{transform:matrix(0.306566,0.005212,-0.004249,0.249964,0,0);-ms-transform:matrix(0.306566,0.005212,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.306566,0.005212,-0.004249,0.249964,0,0);}
.m69_c00497{transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308580,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.310670,0.005281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.310670,0.005281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.310670,0.005281,-0.004249,0.249964,0,0);}
.m2_c00497{transform:matrix(0.319257,0.003831,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319257,0.003831,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319257,0.003831,-0.003000,0.249982,0,0);}
.md2_c00497{transform:matrix(0.334762,0.005691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.334762,0.005691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.334762,0.005691,-0.004249,0.249964,0,0);}
.m95_c00497{transform:matrix(0.335781,0.005708,-0.004249,0.249964,0,0);-ms-transform:matrix(0.335781,0.005708,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.335781,0.005708,-0.004249,0.249964,0,0);}
.m6_c00497{transform:matrix(0.342900,0.004115,-0.003000,0.249982,0,0);-ms-transform:matrix(0.342900,0.004115,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.342900,0.004115,-0.003000,0.249982,0,0);}
.m1b_c00497{transform:matrix(0.349405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349405,0.000000,0.000000,0.250000,0,0);}
.ma3_c00497{transform:matrix(0.349804,0.005947,-0.004249,0.249964,0,0);-ms-transform:matrix(0.349804,0.005947,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.349804,0.005947,-0.004249,0.249964,0,0);}
.m7_c00497{transform:matrix(0.352095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361455,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00497{transform:matrix(0.368047,0.006257,-0.004249,0.249964,0,0);-ms-transform:matrix(0.368047,0.006257,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.368047,0.006257,-0.004249,0.249964,0,0);}
.m24_c00497{transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.389344,0.006619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.389344,0.006619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.389344,0.006619,-0.004249,0.249964,0,0);}
.m0_c00497{transform:matrix(0.400270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400270,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.443360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443360,0.000000,0.000000,0.250000,0,0);}
.mab_c00497{transform:matrix(0.459949,0.007819,-0.004249,0.249964,0,0);-ms-transform:matrix(0.459949,0.007819,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.459949,0.007819,-0.004249,0.249964,0,0);}
.m89_c00497{transform:matrix(0.469032,0.007974,-0.004249,0.249964,0,0);-ms-transform:matrix(0.469032,0.007974,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.469032,0.007974,-0.004249,0.249964,0,0);}
.m29_c00497{transform:matrix(0.473515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473515,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.504247,0.008572,-0.004249,0.249964,0,0);-ms-transform:matrix(0.504247,0.008572,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.504247,0.008572,-0.004249,0.249964,0,0);}
.m42_c00497{transform:matrix(0.512370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512370,0.000000,0.000000,0.250000,0,0);}
.mc8_c00497{transform:matrix(0.527774,0.008972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.527774,0.008972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.527774,0.008972,-0.004249,0.249964,0,0);}
.mb6_c00497{transform:matrix(0.546796,0.009296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.546796,0.009296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.546796,0.009296,-0.004249,0.249964,0,0);}
.m80_c00497{transform:matrix(0.557374,0.009475,-0.004249,0.249964,0,0);-ms-transform:matrix(0.557374,0.009475,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.557374,0.009475,-0.004249,0.249964,0,0);}
.m4d_c00497{transform:matrix(0.601595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601595,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.625870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625870,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;}
.fs10_c00497{font-size:47.256827px;}
.fsd_c00497{font-size:50.407282px;}
.fse_c00497{font-size:51.457434px;}
.fsc_c00497{font-size:52.507586px;}
.fsf_c00497{font-size:53.557737px;}
.fs6_c00497{font-size:64.050000px;}
.fsb_c00497{font-size:68.250000px;}
.fs4_c00497{font-size:69.300000px;}
.fs9_c00497{font-size:70.350000px;}
.fs5_c00497{font-size:71.400000px;}
.fs3_c00497{font-size:72.450000px;}
.fsa_c00497{font-size:73.500000px;}
.fs7_c00497{font-size:74.550000px;}
.fs8_c00497{font-size:77.700000px;}
.fs0_c00497{font-size:111.300000px;}
.fs1_c00497{font-size:119.708618px;}
.fs2_c00497{font-size:120.758694px;}
.y0_c00497{bottom:0.000000px;}
.yd1_c00497{bottom:146.986956px;}
.yd0_c00497{bottom:147.417919px;}
.ycf_c00497{bottom:148.052922px;}
.yce_c00497{bottom:148.668660px;}
.ycd_c00497{bottom:149.367979px;}
.ycc_c00497{bottom:149.922303px;}
.ycb_c00497{bottom:150.554322px;}
.yca_c00497{bottom:150.750052px;}
.yc9_c00497{bottom:152.279697px;}
.yc8_c00497{bottom:164.837476px;}
.yc7_c00497{bottom:165.364701px;}
.yc6_c00497{bottom:165.667394px;}
.yc5_c00497{bottom:166.174401px;}
.yc4_c00497{bottom:166.749782px;}
.yc3_c00497{bottom:167.176720px;}
.yc2_c00497{bottom:167.704022px;}
.yc1_c00497{bottom:168.233413px;}
.yc0_c00497{bottom:169.191835px;}
.ybf_c00497{bottom:169.601414px;}
.ybe_c00497{bottom:170.099067px;}
.ybd_c00497{bottom:179.737608px;}
.ybc_c00497{bottom:180.487843px;}
.ybb_c00497{bottom:180.562966px;}
.yba_c00497{bottom:180.681898px;}
.yb9_c00497{bottom:181.186110px;}
.yb8_c00497{bottom:181.618590px;}
.yb7_c00497{bottom:182.032098px;}
.yb6_c00497{bottom:182.761577px;}
.yb5_c00497{bottom:183.308016px;}
.yb4_c00497{bottom:183.620493px;}
.yb3_c00497{bottom:184.084415px;}
.yb2_c00497{bottom:184.960110px;}
.yb1_c00497{bottom:185.350821px;}
.yb0_c00497{bottom:185.708943px;}
.yaf_c00497{bottom:186.117402px;}
.yae_c00497{bottom:186.704208px;}
.yad_c00497{bottom:187.278800px;}
.yac_c00497{bottom:187.655587px;}
.yab_c00497{bottom:188.193000px;}
.yaa_c00497{bottom:197.452776px;}
.ya9_c00497{bottom:200.231583px;}
.ya8_c00497{bottom:200.761153px;}
.ya7_c00497{bottom:201.783966px;}
.ya6_c00497{bottom:202.430844px;}
.ya5_c00497{bottom:202.726798px;}
.ya4_c00497{bottom:203.158569px;}
.ya3_c00497{bottom:203.459675px;}
.ya2_c00497{bottom:204.290861px;}
.ya1_c00497{bottom:204.835425px;}
.ya0_c00497{bottom:206.003412px;}
.y9f_c00497{bottom:219.033984px;}
.y9e_c00497{bottom:219.272250px;}
.y9d_c00497{bottom:219.570257px;}
.y9c_c00497{bottom:219.727181px;}
.y9b_c00497{bottom:220.358842px;}
.y9a_c00497{bottom:220.805340px;}
.y99_c00497{bottom:221.016334px;}
.y98_c00497{bottom:221.445227px;}
.y97_c00497{bottom:221.690850px;}
.y96_c00497{bottom:221.747552px;}
.y95_c00497{bottom:222.080489px;}
.y94_c00497{bottom:222.393878px;}
.y93_c00497{bottom:222.769387px;}
.y92_c00497{bottom:223.004682px;}
.y91_c00497{bottom:223.115352px;}
.y90_c00497{bottom:223.445530px;}
.y8f_c00497{bottom:224.094181px;}
.y8e_c00497{bottom:231.656085px;}
.y8d_c00497{bottom:233.625482px;}
.y8c_c00497{bottom:234.587343px;}
.y8b_c00497{bottom:235.298601px;}
.y8a_c00497{bottom:235.565720px;}
.y89_c00497{bottom:237.243170px;}
.y88_c00497{bottom:237.654529px;}
.y87_c00497{bottom:238.502507px;}
.y86_c00497{bottom:238.880373px;}
.y85_c00497{bottom:239.381606px;}
.y84_c00497{bottom:240.274419px;}
.y83_c00497{bottom:240.727505px;}
.y82_c00497{bottom:240.975278px;}
.y81_c00497{bottom:241.612592px;}
.y80_c00497{bottom:241.920951px;}
.y7f_c00497{bottom:251.539879px;}
.y7e_c00497{bottom:252.277365px;}
.y7d_c00497{bottom:252.600654px;}
.y7c_c00497{bottom:253.067993px;}
.y7b_c00497{bottom:253.402400px;}
.y7a_c00497{bottom:253.552594px;}
.y79_c00497{bottom:254.218221px;}
.y78_c00497{bottom:254.745127px;}
.y77_c00497{bottom:255.737588px;}
.y76_c00497{bottom:255.826481px;}
.y75_c00497{bottom:256.340484px;}
.y74_c00497{bottom:257.316701px;}
.y73_c00497{bottom:257.696294px;}
.y72_c00497{bottom:257.978655px;}
.y71_c00497{bottom:258.666059px;}
.y70_c00497{bottom:259.301952px;}
.y6f_c00497{bottom:259.743000px;}
.y6e_c00497{bottom:307.977000px;}
.y6d_c00497{bottom:308.400000px;}
.y6c_c00497{bottom:308.730000px;}
.y6b_c00497{bottom:309.229500px;}
.y6a_c00497{bottom:309.912000px;}
.y69_c00497{bottom:310.186500px;}
.y68_c00497{bottom:310.765500px;}
.y67_c00497{bottom:311.313000px;}
.y66_c00497{bottom:328.923000px;}
.y65_c00497{bottom:330.435000px;}
.y64_c00497{bottom:330.957000px;}
.y63_c00497{bottom:331.257000px;}
.y62_c00497{bottom:332.271000px;}
.y61_c00497{bottom:332.503500px;}
.y60_c00497{bottom:333.024000px;}
.y5f_c00497{bottom:333.970500px;}
.y5e_c00497{bottom:334.534500px;}
.y5d_c00497{bottom:353.121000px;}
.y5c_c00497{bottom:375.490500px;}
.y5b_c00497{bottom:375.846000px;}
.y5a_c00497{bottom:376.150500px;}
.y59_c00497{bottom:376.633500px;}
.y58_c00497{bottom:377.524500px;}
.y57_c00497{bottom:378.225000px;}
.y56_c00497{bottom:378.654000px;}
.y55_c00497{bottom:379.212000px;}
.y54_c00497{bottom:379.792500px;}
.y53_c00497{bottom:380.164500px;}
.y52_c00497{bottom:398.311500px;}
.y51_c00497{bottom:398.865000px;}
.y50_c00497{bottom:399.379500px;}
.y4f_c00497{bottom:399.772500px;}
.y4e_c00497{bottom:400.873500px;}
.y4d_c00497{bottom:401.284500px;}
.y4c_c00497{bottom:401.500500px;}
.y4b_c00497{bottom:402.018000px;}
.y4a_c00497{bottom:402.574500px;}
.y49_c00497{bottom:420.819000px;}
.y48_c00497{bottom:421.239000px;}
.y47_c00497{bottom:421.668000px;}
.y46_c00497{bottom:422.365500px;}
.y45_c00497{bottom:423.072000px;}
.y44_c00497{bottom:423.516000px;}
.y43_c00497{bottom:424.983000px;}
.y42_c00497{bottom:442.779000px;}
.y41_c00497{bottom:443.899500px;}
.y40_c00497{bottom:444.528000px;}
.y3f_c00497{bottom:444.910500px;}
.y3e_c00497{bottom:445.248000px;}
.y3d_c00497{bottom:445.777500px;}
.y3c_c00497{bottom:446.157000px;}
.y3b_c00497{bottom:446.704500px;}
.y3a_c00497{bottom:447.459000px;}
.y39_c00497{bottom:447.580500px;}
.y38_c00497{bottom:448.143000px;}
.y37_c00497{bottom:448.473000px;}
.y36_c00497{bottom:468.370500px;}
.y35_c00497{bottom:489.571500px;}
.y34_c00497{bottom:489.733500px;}
.y33_c00497{bottom:489.990000px;}
.y32_c00497{bottom:490.693500px;}
.y31_c00497{bottom:490.942500px;}
.y30_c00497{bottom:491.167500px;}
.y2f_c00497{bottom:492.069000px;}
.y2e_c00497{bottom:492.765000px;}
.y2d_c00497{bottom:493.215000px;}
.y2c_c00497{bottom:493.563000px;}
.y2b_c00497{bottom:512.010000px;}
.y2a_c00497{bottom:512.320500px;}
.y29_c00497{bottom:512.802000px;}
.y28_c00497{bottom:513.132000px;}
.y27_c00497{bottom:513.393000px;}
.y26_c00497{bottom:513.616500px;}
.y25_c00497{bottom:514.092000px;}
.y24_c00497{bottom:514.296000px;}
.y23_c00497{bottom:514.750500px;}
.y22_c00497{bottom:515.008500px;}
.y21_c00497{bottom:515.433000px;}
.y20_c00497{bottom:515.971500px;}
.y1f_c00497{bottom:536.854500px;}
.y1e_c00497{bottom:558.901500px;}
.y1d_c00497{bottom:582.609000px;}
.y1c_c00497{bottom:606.939000px;}
.y1b_c00497{bottom:628.572000px;}
.y1a_c00497{bottom:650.824500px;}
.y19_c00497{bottom:650.995500px;}
.y18_c00497{bottom:651.168000px;}
.y17_c00497{bottom:651.301500px;}
.y16_c00497{bottom:651.808500px;}
.y15_c00497{bottom:652.122000px;}
.y14_c00497{bottom:652.344000px;}
.y13_c00497{bottom:652.785000px;}
.y12_c00497{bottom:653.172000px;}
.y11_c00497{bottom:653.403000px;}
.y10_c00497{bottom:672.789000px;}
.yf_c00497{bottom:673.590000px;}
.ye_c00497{bottom:673.803000px;}
.yd_c00497{bottom:674.178000px;}
.yc_c00497{bottom:674.607000px;}
.yb_c00497{bottom:674.928000px;}
.ya_c00497{bottom:675.649500px;}
.y9_c00497{bottom:675.957000px;}
.y8_c00497{bottom:676.623000px;}
.y7_c00497{bottom:697.008000px;}
.y6_c00497{bottom:734.675100px;}
.y5_c00497{bottom:736.560834px;}
.y4_c00497{bottom:760.039716px;}
.y3_c00497{bottom:762.606030px;}
.y2_c00497{bottom:764.103000px;}
.y1_c00497{bottom:804.369000px;}
.h12_c00497{height:47.256827px;}
.hf_c00497{height:50.407282px;}
.h10_c00497{height:51.457434px;}
.he_c00497{height:52.507586px;}
.h11_c00497{height:53.557737px;}
.h8_c00497{height:64.050000px;}
.hd_c00497{height:68.250000px;}
.h6_c00497{height:69.300000px;}
.hb_c00497{height:70.350000px;}
.h7_c00497{height:71.400000px;}
.h5_c00497{height:72.450000px;}
.hc_c00497{height:73.500000px;}
.h9_c00497{height:74.550000px;}
.ha_c00497{height:77.700000px;}
.h2_c00497{height:111.300000px;}
.h3_c00497{height:119.708618px;}
.h4_c00497{height:120.758694px;}
.h0_c00497{height:1008.450000px;}
.h1_c00497{height:1008.750000px;}
.w1_c00497{width:700.500000px;}
.w0_c00497{width:700.650000px;}
.x0_c00497{left:0.000000px;}
.x7c_c00497{left:129.142500px;}
.x66_c00497{left:135.891710px;}
.x5a_c00497{left:149.401500px;}
.x67_c00497{left:151.294419px;}
.x7d_c00497{left:160.755000px;}
.x8a_c00497{left:161.870490px;}
.x3_c00497{left:165.315000px;}
.x54_c00497{left:172.896000px;}
.x3e_c00497{left:173.994000px;}
.x27_c00497{left:175.887000px;}
.x12_c00497{left:177.277500px;}
.x9_c00497{left:178.942500px;}
.x68_c00497{left:183.134787px;}
.x69_c00497{left:195.503150px;}
.x49_c00497{left:198.256500px;}
.x31_c00497{left:200.697000px;}
.x8f_c00497{left:204.495424px;}
.x13_c00497{left:206.158500px;}
.x42_c00497{left:213.448500px;}
.x55_c00497{left:214.984500px;}
.x7e_c00497{left:216.718500px;}
.x6a_c00497{left:218.183502px;}
.x1d_c00497{left:220.861500px;}
.x28_c00497{left:224.790000px;}
.x78_c00497{left:230.726082px;}
.x6_c00497{left:232.549722px;}
.x8b_c00497{left:233.868042px;}
.x4a_c00497{left:236.922000px;}
.x90_c00497{left:242.065711px;}
.x37_c00497{left:243.952500px;}
.xa_c00497{left:245.610000px;}
.x43_c00497{left:250.371000px;}
.x38_c00497{left:253.333500px;}
.x14_c00497{left:254.470500px;}
.x56_c00497{left:259.576500px;}
.x8c_c00497{left:261.743099px;}
.x29_c00497{left:263.422500px;}
.x44_c00497{left:265.833000px;}
.x71_c00497{left:268.019901px;}
.x5b_c00497{left:269.796000px;}
.x4b_c00497{left:274.158000px;}
.x7f_c00497{left:275.263500px;}
.xb_c00497{left:276.357000px;}
.x57_c00497{left:280.696500px;}
.x32_c00497{left:282.499500px;}
.x1_c00497{left:287.280000px;}
.x4_c00497{left:290.062500px;}
.x5c_c00497{left:292.125000px;}
.x36_c00497{left:293.220000px;}
.x45_c00497{left:295.197000px;}
.x3f_c00497{left:296.293500px;}
.x91_c00497{left:299.039866px;}
.x4c_c00497{left:302.755500px;}
.x72_c00497{left:305.554364px;}
.x50_c00497{left:307.255500px;}
.x15_c00497{left:309.622500px;}
.x39_c00497{left:311.422500px;}
.x1e_c00497{left:313.471500px;}
.x79_c00497{left:317.610603px;}
.x80_c00497{left:319.312500px;}
.x1f_c00497{left:322.111500px;}
.x92_c00497{left:327.051495px;}
.x2a_c00497{left:328.225500px;}
.x21_c00497{left:331.021500px;}
.x1b_c00497{left:333.721500px;}
.x8_c00497{left:337.500000px;}
.x8d_c00497{left:342.276870px;}
.x2b_c00497{left:346.803000px;}
.xc_c00497{left:348.490500px;}
.x5d_c00497{left:349.549500px;}
.x3a_c00497{left:353.581500px;}
.x93_c00497{left:355.931547px;}
.x33_c00497{left:362.970000px;}
.x51_c00497{left:366.730500px;}
.x22_c00497{left:368.281500px;}
.x6b_c00497{left:369.749276px;}
.x81_c00497{left:370.824000px;}
.x20_c00497{left:372.331500px;}
.x46_c00497{left:373.842000px;}
.x16_c00497{left:376.489500px;}
.xd_c00497{left:380.604000px;}
.x3b_c00497{left:382.758000px;}
.x52_c00497{left:384.345000px;}
.x7_c00497{left:389.694222px;}
.x1c_c00497{left:391.231500px;}
.x58_c00497{left:397.078500px;}
.x82_c00497{left:398.113500px;}
.x73_c00497{left:400.368634px;}
.x47_c00497{left:401.916000px;}
.x4d_c00497{left:408.832500px;}
.x2c_c00497{left:410.256000px;}
.x8e_c00497{left:412.622973px;}
.x53_c00497{left:415.042500px;}
.x83_c00497{left:416.494500px;}
.xe_c00497{left:423.508500px;}
.x7a_c00497{left:426.793742px;}
.x59_c00497{left:429.645000px;}
.x34_c00497{left:431.016000px;}
.x2d_c00497{left:434.010000px;}
.x23_c00497{left:437.131500px;}
.x48_c00497{left:438.613500px;}
.x17_c00497{left:439.800000px;}
.x4e_c00497{left:440.991000px;}
.x5e_c00497{left:443.394000px;}
.x2_c00497{left:446.040000px;}
.x35_c00497{left:449.368500px;}
.x6c_c00497{left:453.594991px;}
.x18_c00497{left:456.472500px;}
.xf_c00497{left:461.034000px;}
.x2e_c00497{left:463.974000px;}
.x6d_c00497{left:466.924803px;}
.x24_c00497{left:468.991500px;}
.x5f_c00497{left:474.388500px;}
.x19_c00497{left:478.069500px;}
.x10_c00497{left:482.362500px;}
.x4f_c00497{left:484.990500px;}
.x40_c00497{left:486.066000px;}
.x84_c00497{left:491.548500px;}
.x1a_c00497{left:499.396500px;}
.x6e_c00497{left:502.496993px;}
.x5_c00497{left:503.922000px;}
.x2f_c00497{left:507.780000px;}
.x74_c00497{left:508.933538px;}
.x25_c00497{left:511.651500px;}
.x60_c00497{left:513.543000px;}
.x85_c00497{left:515.872500px;}
.x41_c00497{left:521.023500px;}
.x61_c00497{left:522.378000px;}
.x3c_c00497{left:527.142000px;}
.x30_c00497{left:536.070000px;}
.x62_c00497{left:542.049000px;}
.x26_c00497{left:547.021500px;}
.x6f_c00497{left:550.604044px;}
.x11_c00497{left:562.533000px;}
.x63_c00497{left:569.539500px;}
.x86_c00497{left:570.972000px;}
.x75_c00497{left:572.127060px;}
.x87_c00497{left:577.968000px;}
.x88_c00497{left:582.387000px;}
.x64_c00497{left:588.556500px;}
.x7b_c00497{left:610.548105px;}
.x3d_c00497{left:613.390500px;}
.x76_c00497{left:617.598966px;}
.x89_c00497{left:626.518500px;}
.x65_c00497{left:631.938000px;}
.x77_c00497{left:641.499822px;}
.x70_c00497{left:649.063521px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fs10_c00497{font-size:42.006069pt;}
.fsd_c00497{font-size:44.806473pt;}
.fse_c00497{font-size:45.739941pt;}
.fsc_c00497{font-size:46.673410pt;}
.fsf_c00497{font-size:47.606878pt;}
.fs6_c00497{font-size:56.933333pt;}
.fsb_c00497{font-size:60.666667pt;}
.fs4_c00497{font-size:61.600000pt;}
.fs9_c00497{font-size:62.533333pt;}
.fs5_c00497{font-size:63.466667pt;}
.fs3_c00497{font-size:64.400000pt;}
.fsa_c00497{font-size:65.333333pt;}
.fs7_c00497{font-size:66.266667pt;}
.fs8_c00497{font-size:69.066667pt;}
.fs0_c00497{font-size:98.933333pt;}
.fs1_c00497{font-size:106.407661pt;}
.fs2_c00497{font-size:107.341061pt;}
.y0_c00497{bottom:0.000000pt;}
.yd1_c00497{bottom:130.655072pt;}
.yd0_c00497{bottom:131.038151pt;}
.ycf_c00497{bottom:131.602597pt;}
.yce_c00497{bottom:132.149920pt;}
.ycd_c00497{bottom:132.771537pt;}
.ycc_c00497{bottom:133.264269pt;}
.ycb_c00497{bottom:133.826064pt;}
.yca_c00497{bottom:134.000047pt;}
.yc9_c00497{bottom:135.359731pt;}
.yc8_c00497{bottom:146.522201pt;}
.yc7_c00497{bottom:146.990845pt;}
.yc6_c00497{bottom:147.259905pt;}
.yc5_c00497{bottom:147.710579pt;}
.yc4_c00497{bottom:148.222028pt;}
.yc3_c00497{bottom:148.601529pt;}
.yc2_c00497{bottom:149.070241pt;}
.yc1_c00497{bottom:149.540812pt;}
.yc0_c00497{bottom:150.392743pt;}
.ybf_c00497{bottom:150.756812pt;}
.ybe_c00497{bottom:151.199171pt;}
.ybd_c00497{bottom:159.766763pt;}
.ybc_c00497{bottom:160.433639pt;}
.ybb_c00497{bottom:160.500415pt;}
.yba_c00497{bottom:160.606132pt;}
.yb9_c00497{bottom:161.054320pt;}
.yb8_c00497{bottom:161.438747pt;}
.yb7_c00497{bottom:161.806309pt;}
.yb6_c00497{bottom:162.454735pt;}
.yb5_c00497{bottom:162.940459pt;}
.yb4_c00497{bottom:163.218216pt;}
.yb3_c00497{bottom:163.630591pt;}
.yb2_c00497{bottom:164.408987pt;}
.yb1_c00497{bottom:164.756285pt;}
.yb0_c00497{bottom:165.074616pt;}
.yaf_c00497{bottom:165.437691pt;}
.yae_c00497{bottom:165.959296pt;}
.yad_c00497{bottom:166.470044pt;}
.yac_c00497{bottom:166.804967pt;}
.yab_c00497{bottom:167.282667pt;}
.yaa_c00497{bottom:175.513579pt;}
.ya9_c00497{bottom:177.983629pt;}
.ya8_c00497{bottom:178.454359pt;}
.ya7_c00497{bottom:179.363525pt;}
.ya6_c00497{bottom:179.938528pt;}
.ya5_c00497{bottom:180.201599pt;}
.ya4_c00497{bottom:180.585395pt;}
.ya3_c00497{bottom:180.853044pt;}
.ya2_c00497{bottom:181.591876pt;}
.ya1_c00497{bottom:182.075933pt;}
.ya0_c00497{bottom:183.114144pt;}
.y9f_c00497{bottom:194.696875pt;}
.y9e_c00497{bottom:194.908667pt;}
.y9d_c00497{bottom:195.173561pt;}
.y9c_c00497{bottom:195.313049pt;}
.y9b_c00497{bottom:195.874527pt;}
.y9a_c00497{bottom:196.271413pt;}
.y99_c00497{bottom:196.458964pt;}
.y98_c00497{bottom:196.840201pt;}
.y97_c00497{bottom:197.058533pt;}
.y96_c00497{bottom:197.108935pt;}
.y95_c00497{bottom:197.404879pt;}
.y94_c00497{bottom:197.683447pt;}
.y93_c00497{bottom:198.017233pt;}
.y92_c00497{bottom:198.226384pt;}
.y91_c00497{bottom:198.324757pt;}
.y90_c00497{bottom:198.618249pt;}
.y8f_c00497{bottom:199.194828pt;}
.y8e_c00497{bottom:205.916520pt;}
.y8d_c00497{bottom:207.667095pt;}
.y8c_c00497{bottom:208.522083pt;}
.y8b_c00497{bottom:209.154312pt;}
.y8a_c00497{bottom:209.391751pt;}
.y89_c00497{bottom:210.882817pt;}
.y88_c00497{bottom:211.248471pt;}
.y87_c00497{bottom:212.002228pt;}
.y86_c00497{bottom:212.338109pt;}
.y85_c00497{bottom:212.783649pt;}
.y84_c00497{bottom:213.577261pt;}
.y83_c00497{bottom:213.980004pt;}
.y82_c00497{bottom:214.200247pt;}
.y81_c00497{bottom:214.766748pt;}
.y80_c00497{bottom:215.040845pt;}
.y7f_c00497{bottom:223.591004pt;}
.y7e_c00497{bottom:224.246547pt;}
.y7d_c00497{bottom:224.533915pt;}
.y7c_c00497{bottom:224.949327pt;}
.y7b_c00497{bottom:225.246577pt;}
.y7a_c00497{bottom:225.380084pt;}
.y79_c00497{bottom:225.971752pt;}
.y78_c00497{bottom:226.440113pt;}
.y77_c00497{bottom:227.322300pt;}
.y76_c00497{bottom:227.401316pt;}
.y75_c00497{bottom:227.858208pt;}
.y74_c00497{bottom:228.725956pt;}
.y73_c00497{bottom:229.063372pt;}
.y72_c00497{bottom:229.314360pt;}
.y71_c00497{bottom:229.925385pt;}
.y70_c00497{bottom:230.490624pt;}
.y6f_c00497{bottom:230.882667pt;}
.y6e_c00497{bottom:273.757333pt;}
.y6d_c00497{bottom:274.133333pt;}
.y6c_c00497{bottom:274.426667pt;}
.y6b_c00497{bottom:274.870667pt;}
.y6a_c00497{bottom:275.477333pt;}
.y69_c00497{bottom:275.721333pt;}
.y68_c00497{bottom:276.236000pt;}
.y67_c00497{bottom:276.722667pt;}
.y66_c00497{bottom:292.376000pt;}
.y65_c00497{bottom:293.720000pt;}
.y64_c00497{bottom:294.184000pt;}
.y63_c00497{bottom:294.450667pt;}
.y62_c00497{bottom:295.352000pt;}
.y61_c00497{bottom:295.558667pt;}
.y60_c00497{bottom:296.021333pt;}
.y5f_c00497{bottom:296.862667pt;}
.y5e_c00497{bottom:297.364000pt;}
.y5d_c00497{bottom:313.885333pt;}
.y5c_c00497{bottom:333.769333pt;}
.y5b_c00497{bottom:334.085333pt;}
.y5a_c00497{bottom:334.356000pt;}
.y59_c00497{bottom:334.785333pt;}
.y58_c00497{bottom:335.577333pt;}
.y57_c00497{bottom:336.200000pt;}
.y56_c00497{bottom:336.581333pt;}
.y55_c00497{bottom:337.077333pt;}
.y54_c00497{bottom:337.593333pt;}
.y53_c00497{bottom:337.924000pt;}
.y52_c00497{bottom:354.054667pt;}
.y51_c00497{bottom:354.546667pt;}
.y50_c00497{bottom:355.004000pt;}
.y4f_c00497{bottom:355.353333pt;}
.y4e_c00497{bottom:356.332000pt;}
.y4d_c00497{bottom:356.697333pt;}
.y4c_c00497{bottom:356.889333pt;}
.y4b_c00497{bottom:357.349333pt;}
.y4a_c00497{bottom:357.844000pt;}
.y49_c00497{bottom:374.061333pt;}
.y48_c00497{bottom:374.434667pt;}
.y47_c00497{bottom:374.816000pt;}
.y46_c00497{bottom:375.436000pt;}
.y45_c00497{bottom:376.064000pt;}
.y44_c00497{bottom:376.458667pt;}
.y43_c00497{bottom:377.762667pt;}
.y42_c00497{bottom:393.581333pt;}
.y41_c00497{bottom:394.577333pt;}
.y40_c00497{bottom:395.136000pt;}
.y3f_c00497{bottom:395.476000pt;}
.y3e_c00497{bottom:395.776000pt;}
.y3d_c00497{bottom:396.246667pt;}
.y3c_c00497{bottom:396.584000pt;}
.y3b_c00497{bottom:397.070667pt;}
.y3a_c00497{bottom:397.741333pt;}
.y39_c00497{bottom:397.849333pt;}
.y38_c00497{bottom:398.349333pt;}
.y37_c00497{bottom:398.642667pt;}
.y36_c00497{bottom:416.329333pt;}
.y35_c00497{bottom:435.174667pt;}
.y34_c00497{bottom:435.318667pt;}
.y33_c00497{bottom:435.546667pt;}
.y32_c00497{bottom:436.172000pt;}
.y31_c00497{bottom:436.393333pt;}
.y30_c00497{bottom:436.593333pt;}
.y2f_c00497{bottom:437.394667pt;}
.y2e_c00497{bottom:438.013333pt;}
.y2d_c00497{bottom:438.413333pt;}
.y2c_c00497{bottom:438.722667pt;}
.y2b_c00497{bottom:455.120000pt;}
.y2a_c00497{bottom:455.396000pt;}
.y29_c00497{bottom:455.824000pt;}
.y28_c00497{bottom:456.117333pt;}
.y27_c00497{bottom:456.349333pt;}
.y26_c00497{bottom:456.548000pt;}
.y25_c00497{bottom:456.970667pt;}
.y24_c00497{bottom:457.152000pt;}
.y23_c00497{bottom:457.556000pt;}
.y22_c00497{bottom:457.785333pt;}
.y21_c00497{bottom:458.162667pt;}
.y20_c00497{bottom:458.641333pt;}
.y1f_c00497{bottom:477.204000pt;}
.y1e_c00497{bottom:496.801333pt;}
.y1d_c00497{bottom:517.874667pt;}
.y1c_c00497{bottom:539.501333pt;}
.y1b_c00497{bottom:558.730667pt;}
.y1a_c00497{bottom:578.510667pt;}
.y19_c00497{bottom:578.662667pt;}
.y18_c00497{bottom:578.816000pt;}
.y17_c00497{bottom:578.934667pt;}
.y16_c00497{bottom:579.385333pt;}
.y15_c00497{bottom:579.664000pt;}
.y14_c00497{bottom:579.861333pt;}
.y13_c00497{bottom:580.253333pt;}
.y12_c00497{bottom:580.597333pt;}
.y11_c00497{bottom:580.802667pt;}
.y10_c00497{bottom:598.034667pt;}
.yf_c00497{bottom:598.746667pt;}
.ye_c00497{bottom:598.936000pt;}
.yd_c00497{bottom:599.269333pt;}
.yc_c00497{bottom:599.650667pt;}
.yb_c00497{bottom:599.936000pt;}
.ya_c00497{bottom:600.577333pt;}
.y9_c00497{bottom:600.850667pt;}
.y8_c00497{bottom:601.442667pt;}
.y7_c00497{bottom:619.562667pt;}
.y6_c00497{bottom:653.044533pt;}
.y5_c00497{bottom:654.720741pt;}
.y4_c00497{bottom:675.590859pt;}
.y3_c00497{bottom:677.872027pt;}
.y2_c00497{bottom:679.202667pt;}
.y1_c00497{bottom:714.994667pt;}
.h12_c00497{height:42.006069pt;}
.hf_c00497{height:44.806473pt;}
.h10_c00497{height:45.739941pt;}
.he_c00497{height:46.673410pt;}
.h11_c00497{height:47.606878pt;}
.h8_c00497{height:56.933333pt;}
.hd_c00497{height:60.666667pt;}
.h6_c00497{height:61.600000pt;}
.hb_c00497{height:62.533333pt;}
.h7_c00497{height:63.466667pt;}
.h5_c00497{height:64.400000pt;}
.hc_c00497{height:65.333333pt;}
.h9_c00497{height:66.266667pt;}
.ha_c00497{height:69.066667pt;}
.h2_c00497{height:98.933333pt;}
.h3_c00497{height:106.407661pt;}
.h4_c00497{height:107.341061pt;}
.h0_c00497{height:896.400000pt;}
.h1_c00497{height:896.666667pt;}
.w1_c00497{width:622.666667pt;}
.w0_c00497{width:622.800000pt;}
.x0_c00497{left:0.000000pt;}
.x7c_c00497{left:114.793333pt;}
.x66_c00497{left:120.792631pt;}
.x5a_c00497{left:132.801333pt;}
.x67_c00497{left:134.483928pt;}
.x7d_c00497{left:142.893333pt;}
.x8a_c00497{left:143.884880pt;}
.x3_c00497{left:146.946667pt;}
.x54_c00497{left:153.685333pt;}
.x3e_c00497{left:154.661333pt;}
.x27_c00497{left:156.344000pt;}
.x12_c00497{left:157.580000pt;}
.x9_c00497{left:159.060000pt;}
.x68_c00497{left:162.786477pt;}
.x69_c00497{left:173.780577pt;}
.x49_c00497{left:176.228000pt;}
.x31_c00497{left:178.397333pt;}
.x8f_c00497{left:181.773711pt;}
.x13_c00497{left:183.252000pt;}
.x42_c00497{left:189.732000pt;}
.x55_c00497{left:191.097333pt;}
.x7e_c00497{left:192.638667pt;}
.x6a_c00497{left:193.940891pt;}
.x1d_c00497{left:196.321333pt;}
.x28_c00497{left:199.813333pt;}
.x78_c00497{left:205.089851pt;}
.x6_c00497{left:206.710864pt;}
.x8b_c00497{left:207.882704pt;}
.x4a_c00497{left:210.597333pt;}
.x90_c00497{left:215.169521pt;}
.x37_c00497{left:216.846667pt;}
.xa_c00497{left:218.320000pt;}
.x43_c00497{left:222.552000pt;}
.x38_c00497{left:225.185333pt;}
.x14_c00497{left:226.196000pt;}
.x56_c00497{left:230.734667pt;}
.x8c_c00497{left:232.660532pt;}
.x29_c00497{left:234.153333pt;}
.x44_c00497{left:236.296000pt;}
.x71_c00497{left:238.239912pt;}
.x5b_c00497{left:239.818667pt;}
.x4b_c00497{left:243.696000pt;}
.x7f_c00497{left:244.678667pt;}
.xb_c00497{left:245.650667pt;}
.x57_c00497{left:249.508000pt;}
.x32_c00497{left:251.110667pt;}
.x1_c00497{left:255.360000pt;}
.x4_c00497{left:257.833333pt;}
.x5c_c00497{left:259.666667pt;}
.x36_c00497{left:260.640000pt;}
.x45_c00497{left:262.397333pt;}
.x3f_c00497{left:263.372000pt;}
.x91_c00497{left:265.813215pt;}
.x4c_c00497{left:269.116000pt;}
.x72_c00497{left:271.603879pt;}
.x50_c00497{left:273.116000pt;}
.x15_c00497{left:275.220000pt;}
.x39_c00497{left:276.820000pt;}
.x1e_c00497{left:278.641333pt;}
.x79_c00497{left:282.320536pt;}
.x80_c00497{left:283.833333pt;}
.x1f_c00497{left:286.321333pt;}
.x92_c00497{left:290.712440pt;}
.x2a_c00497{left:291.756000pt;}
.x21_c00497{left:294.241333pt;}
.x1b_c00497{left:296.641333pt;}
.x8_c00497{left:300.000000pt;}
.x8d_c00497{left:304.246107pt;}
.x2b_c00497{left:308.269333pt;}
.xc_c00497{left:309.769333pt;}
.x5d_c00497{left:310.710667pt;}
.x3a_c00497{left:314.294667pt;}
.x93_c00497{left:316.383597pt;}
.x33_c00497{left:322.640000pt;}
.x51_c00497{left:325.982667pt;}
.x22_c00497{left:327.361333pt;}
.x6b_c00497{left:328.666023pt;}
.x81_c00497{left:329.621333pt;}
.x20_c00497{left:330.961333pt;}
.x46_c00497{left:332.304000pt;}
.x16_c00497{left:334.657333pt;}
.xd_c00497{left:338.314667pt;}
.x3b_c00497{left:340.229333pt;}
.x52_c00497{left:341.640000pt;}
.x7_c00497{left:346.394864pt;}
.x1c_c00497{left:347.761333pt;}
.x58_c00497{left:352.958667pt;}
.x82_c00497{left:353.878667pt;}
.x73_c00497{left:355.883231pt;}
.x47_c00497{left:357.258667pt;}
.x4d_c00497{left:363.406667pt;}
.x2c_c00497{left:364.672000pt;}
.x8e_c00497{left:366.775976pt;}
.x53_c00497{left:368.926667pt;}
.x83_c00497{left:370.217333pt;}
.xe_c00497{left:376.452000pt;}
.x7a_c00497{left:379.372215pt;}
.x59_c00497{left:381.906667pt;}
.x34_c00497{left:383.125333pt;}
.x2d_c00497{left:385.786667pt;}
.x23_c00497{left:388.561333pt;}
.x48_c00497{left:389.878667pt;}
.x17_c00497{left:390.933333pt;}
.x4e_c00497{left:391.992000pt;}
.x5e_c00497{left:394.128000pt;}
.x2_c00497{left:396.480000pt;}
.x35_c00497{left:399.438667pt;}
.x6c_c00497{left:403.195548pt;}
.x18_c00497{left:405.753333pt;}
.xf_c00497{left:409.808000pt;}
.x2e_c00497{left:412.421333pt;}
.x6d_c00497{left:415.044269pt;}
.x24_c00497{left:416.881333pt;}
.x5f_c00497{left:421.678667pt;}
.x19_c00497{left:424.950667pt;}
.x10_c00497{left:428.766667pt;}
.x4f_c00497{left:431.102667pt;}
.x40_c00497{left:432.058667pt;}
.x84_c00497{left:436.932000pt;}
.x1a_c00497{left:443.908000pt;}
.x6e_c00497{left:446.663993pt;}
.x5_c00497{left:447.930667pt;}
.x2f_c00497{left:451.360000pt;}
.x74_c00497{left:452.385367pt;}
.x25_c00497{left:454.801333pt;}
.x60_c00497{left:456.482667pt;}
.x85_c00497{left:458.553333pt;}
.x41_c00497{left:463.132000pt;}
.x61_c00497{left:464.336000pt;}
.x3c_c00497{left:468.570667pt;}
.x30_c00497{left:476.506667pt;}
.x62_c00497{left:481.821333pt;}
.x26_c00497{left:486.241333pt;}
.x6f_c00497{left:489.425817pt;}
.x11_c00497{left:500.029333pt;}
.x63_c00497{left:506.257333pt;}
.x86_c00497{left:507.530667pt;}
.x75_c00497{left:508.557387pt;}
.x87_c00497{left:513.749333pt;}
.x88_c00497{left:517.677333pt;}
.x64_c00497{left:523.161333pt;}
.x7b_c00497{left:542.709427pt;}
.x3d_c00497{left:545.236000pt;}
.x76_c00497{left:548.976859pt;}
.x89_c00497{left:556.905333pt;}
.x65_c00497{left:561.722667pt;}
.x77_c00497{left:570.222064pt;}
.x70_c00497{left:576.945352pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab86c84425994a9e06b01c2.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;}
.mcc_c00498{transform:matrix(0.005269,-0.000079,0.003750,0.249972,0,0);-ms-transform:matrix(0.005269,-0.000079,0.003750,0.249972,0,0);-webkit-transform:matrix(0.005269,-0.000079,0.003750,0.249972,0,0);}
.mc3_c00498{transform:matrix(0.035156,-0.000527,0.003750,0.249972,0,0);-ms-transform:matrix(0.035156,-0.000527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.035156,-0.000527,0.003750,0.249972,0,0);}
.m11e_c00498{transform:matrix(0.039962,-0.000520,0.003250,0.249979,0,0);-ms-transform:matrix(0.039962,-0.000520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.039962,-0.000520,0.003250,0.249979,0,0);}
.ma6_c00498{transform:matrix(0.045686,-0.000640,0.003500,0.249976,0,0);-ms-transform:matrix(0.045686,-0.000640,0.003500,0.249976,0,0);-webkit-transform:matrix(0.045686,-0.000640,0.003500,0.249976,0,0);}
.mfb_c00498{transform:matrix(0.046081,-0.000599,0.003250,0.249979,0,0);-ms-transform:matrix(0.046081,-0.000599,0.003250,0.249979,0,0);-webkit-transform:matrix(0.046081,-0.000599,0.003250,0.249979,0,0);}
.m109_c00498{transform:matrix(0.058155,-0.000756,0.003250,0.249979,0,0);-ms-transform:matrix(0.058155,-0.000756,0.003250,0.249979,0,0);-webkit-transform:matrix(0.058155,-0.000756,0.003250,0.249979,0,0);}
.m5f_c00498{transform:matrix(0.061506,-0.000677,0.002750,0.249985,0,0);-ms-transform:matrix(0.061506,-0.000677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.061506,-0.000677,0.002750,0.249985,0,0);}
.mce_c00498{transform:matrix(0.076404,-0.000917,0.003000,0.249982,0,0);-ms-transform:matrix(0.076404,-0.000917,0.003000,0.249982,0,0);-webkit-transform:matrix(0.076404,-0.000917,0.003000,0.249982,0,0);}
.me4_c00498{transform:matrix(0.083324,-0.001000,0.003000,0.249982,0,0);-ms-transform:matrix(0.083324,-0.001000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.083324,-0.001000,0.003000,0.249982,0,0);}
.mcd_c00498{transform:matrix(0.083736,-0.001256,0.003750,0.249972,0,0);-ms-transform:matrix(0.083736,-0.001256,0.003750,0.249972,0,0);-webkit-transform:matrix(0.083736,-0.001256,0.003750,0.249972,0,0);}
.m105_c00498{transform:matrix(0.085628,-0.001113,0.003250,0.249979,0,0);-ms-transform:matrix(0.085628,-0.001113,0.003250,0.249979,0,0);-webkit-transform:matrix(0.085628,-0.001113,0.003250,0.249979,0,0);}
.m92_c00498{transform:matrix(0.085747,-0.001200,0.003500,0.249976,0,0);-ms-transform:matrix(0.085747,-0.001200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.085747,-0.001200,0.003500,0.249976,0,0);}
.m5c_c00498{transform:matrix(0.116943,-0.001286,0.002750,0.249985,0,0);-ms-transform:matrix(0.116943,-0.001286,0.002750,0.249985,0,0);-webkit-transform:matrix(0.116943,-0.001286,0.002750,0.249985,0,0);}
.m61_c00498{transform:matrix(0.117783,-0.001296,0.002750,0.249985,0,0);-ms-transform:matrix(0.117783,-0.001296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.117783,-0.001296,0.002750,0.249985,0,0);}
.mf9_c00498{transform:matrix(0.127779,-0.001661,0.003250,0.249979,0,0);-ms-transform:matrix(0.127779,-0.001661,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127779,-0.001661,0.003250,0.249979,0,0);}
.m2b_c00498{transform:matrix(0.140436,-0.001123,0.002000,0.249992,0,0);-ms-transform:matrix(0.140436,-0.001123,0.002000,0.249992,0,0);-webkit-transform:matrix(0.140436,-0.001123,0.002000,0.249992,0,0);}
.m47_c00498{transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141935,0.000000,0.000000,0.250000,0,0);}
.m8e_c00498{transform:matrix(0.141993,-0.001420,0.002500,0.249988,0,0);-ms-transform:matrix(0.141993,-0.001420,0.002500,0.249988,0,0);-webkit-transform:matrix(0.141993,-0.001420,0.002500,0.249988,0,0);}
.m89_c00498{transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);-ms-transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143318,-0.001433,0.002500,0.249988,0,0);}
.m5e_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);}
.mad_c00498{transform:matrix(0.148630,-0.002081,0.003500,0.249976,0,0);-ms-transform:matrix(0.148630,-0.002081,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148630,-0.002081,0.003500,0.249976,0,0);}
.m90_c00498{transform:matrix(0.149533,-0.001495,0.002500,0.249988,0,0);-ms-transform:matrix(0.149533,-0.001495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149533,-0.001495,0.002500,0.249988,0,0);}
.mb7_c00498{transform:matrix(0.150588,-0.002259,0.003750,0.249972,0,0);-ms-transform:matrix(0.150588,-0.002259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150588,-0.002259,0.003750,0.249972,0,0);}
.md7_c00498{transform:matrix(0.151399,-0.001817,0.003000,0.249982,0,0);-ms-transform:matrix(0.151399,-0.001817,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151399,-0.001817,0.003000,0.249982,0,0);}
.m43_c00498{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);}
.m78_c00498{transform:matrix(0.153879,-0.001847,0.003000,0.249982,0,0);-ms-transform:matrix(0.153879,-0.001847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153879,-0.001847,0.003000,0.249982,0,0);}
.m2d_c00498{transform:matrix(0.155380,-0.001243,0.002000,0.249992,0,0);-ms-transform:matrix(0.155380,-0.001243,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155380,-0.001243,0.002000,0.249992,0,0);}
.m4b_c00498{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);}
.mdb_c00498{transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-ms-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156499,-0.001878,0.003000,0.249982,0,0);}
.m2c_c00498{transform:matrix(0.157230,-0.001258,0.002000,0.249992,0,0);-ms-transform:matrix(0.157230,-0.001258,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157230,-0.001258,0.002000,0.249992,0,0);}
.m42_c00498{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);}
.m87_c00498{transform:matrix(0.160307,-0.001603,0.002500,0.249988,0,0);-ms-transform:matrix(0.160307,-0.001603,0.002500,0.249988,0,0);-webkit-transform:matrix(0.160307,-0.001603,0.002500,0.249988,0,0);}
.m14_c00498{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);}
.mbd_c00498{transform:matrix(0.162322,-0.002435,0.003750,0.249972,0,0);-ms-transform:matrix(0.162322,-0.002435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162322,-0.002435,0.003750,0.249972,0,0);}
.mee_c00498{transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00498{transform:matrix(0.162734,-0.002278,0.003500,0.249976,0,0);-ms-transform:matrix(0.162734,-0.002278,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162734,-0.002278,0.003500,0.249976,0,0);}
.m88_c00498{transform:matrix(0.163202,-0.001632,0.002500,0.249988,0,0);-ms-transform:matrix(0.163202,-0.001632,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163202,-0.001632,0.002500,0.249988,0,0);}
.md2_c00498{transform:matrix(0.163788,-0.001965,0.003000,0.249982,0,0);-ms-transform:matrix(0.163788,-0.001965,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163788,-0.001965,0.003000,0.249982,0,0);}
.mbe_c00498{transform:matrix(0.164287,-0.002464,0.003750,0.249972,0,0);-ms-transform:matrix(0.164287,-0.002464,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164287,-0.002464,0.003750,0.249972,0,0);}
.m118_c00498{transform:matrix(0.164946,-0.002144,0.003250,0.249979,0,0);-ms-transform:matrix(0.164946,-0.002144,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164946,-0.002144,0.003250,0.249979,0,0);}
.m103_c00498{transform:matrix(0.165366,-0.002150,0.003250,0.249979,0,0);-ms-transform:matrix(0.165366,-0.002150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165366,-0.002150,0.003250,0.249979,0,0);}
.m70_c00498{transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);-ms-transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165885,-0.001825,0.002750,0.249985,0,0);}
.m5_c00498{transform:matrix(0.166302,-0.001663,0.002500,0.249988,0,0);-ms-transform:matrix(0.166302,-0.001663,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166302,-0.001663,0.002500,0.249988,0,0);}
.mae_c00498{transform:matrix(0.167539,-0.002346,0.003500,0.249976,0,0);-ms-transform:matrix(0.167539,-0.002346,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167539,-0.002346,0.003500,0.249976,0,0);}
.ma0_c00498{transform:matrix(0.167794,-0.002349,0.003500,0.249976,0,0);-ms-transform:matrix(0.167794,-0.002349,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167794,-0.002349,0.003500,0.249976,0,0);}
.ma9_c00498{transform:matrix(0.168004,-0.002352,0.003500,0.249976,0,0);-ms-transform:matrix(0.168004,-0.002352,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168004,-0.002352,0.003500,0.249976,0,0);}
.m66_c00498{transform:matrix(0.168085,-0.001849,0.002750,0.249985,0,0);-ms-transform:matrix(0.168085,-0.001849,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168085,-0.001849,0.002750,0.249985,0,0);}
.m5d_c00498{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);}
.m8d_c00498{transform:matrix(0.169027,-0.001690,0.002500,0.249988,0,0);-ms-transform:matrix(0.169027,-0.001690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169027,-0.001690,0.002500,0.249988,0,0);}
.maa_c00498{transform:matrix(0.169568,-0.002374,0.003500,0.249976,0,0);-ms-transform:matrix(0.169568,-0.002374,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169568,-0.002374,0.003500,0.249976,0,0);}
.mb3_c00498{transform:matrix(0.170771,-0.002562,0.003750,0.249972,0,0);-ms-transform:matrix(0.170771,-0.002562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170771,-0.002562,0.003750,0.249972,0,0);}
.m60_c00498{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);}
.m27_c00498{transform:matrix(0.171445,-0.001372,0.002000,0.249992,0,0);-ms-transform:matrix(0.171445,-0.001372,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171445,-0.001372,0.002000,0.249992,0,0);}
.m1f_c00498{transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);-ms-transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171755,-0.001374,0.002000,0.249992,0,0);}
.m7d_c00498{transform:matrix(0.172398,-0.002069,0.003000,0.249982,0,0);-ms-transform:matrix(0.172398,-0.002069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172398,-0.002069,0.003000,0.249982,0,0);}
.m93_c00498{transform:matrix(0.172433,-0.002414,0.003500,0.249976,0,0);-ms-transform:matrix(0.172433,-0.002414,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172433,-0.002414,0.003500,0.249976,0,0);}
.m13_c00498{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);}
.md1_c00498{transform:matrix(0.172883,-0.002075,0.003000,0.249982,0,0);-ms-transform:matrix(0.172883,-0.002075,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172883,-0.002075,0.003000,0.249982,0,0);}
.mab_c00498{transform:matrix(0.173043,-0.002423,0.003500,0.249976,0,0);-ms-transform:matrix(0.173043,-0.002423,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173043,-0.002423,0.003500,0.249976,0,0);}
.m49_c00498{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);}
.m6f_c00498{transform:matrix(0.173250,-0.001906,0.002750,0.249985,0,0);-ms-transform:matrix(0.173250,-0.001906,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173250,-0.001906,0.002750,0.249985,0,0);}
.m7a_c00498{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);}
.me_c00498{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);}
.m3e_c00498{transform:matrix(0.175041,-0.001750,0.002500,0.249988,0,0);-ms-transform:matrix(0.175041,-0.001750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175041,-0.001750,0.002500,0.249988,0,0);}
.mc8_c00498{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);}
.m39_c00498{transform:matrix(0.175766,-0.001758,0.002500,0.249988,0,0);-ms-transform:matrix(0.175766,-0.001758,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175766,-0.001758,0.002500,0.249988,0,0);}
.m6d_c00498{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);}
.m117_c00498{transform:matrix(0.176360,-0.002293,0.003250,0.249979,0,0);-ms-transform:matrix(0.176360,-0.002293,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176360,-0.002293,0.003250,0.249979,0,0);}
.m12_c00498{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);}
.m4c_c00498{transform:matrix(0.176581,-0.001766,0.002500,0.249988,0,0);-ms-transform:matrix(0.176581,-0.001766,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176581,-0.001766,0.002500,0.249988,0,0);}
.mc9_c00498{transform:matrix(0.177180,-0.002658,0.003750,0.249972,0,0);-ms-transform:matrix(0.177180,-0.002658,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177180,-0.002658,0.003750,0.249972,0,0);}
.m11_c00498{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);}
.m55_c00498{transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);-ms-transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177391,-0.001774,0.002500,0.249988,0,0);}
.m76_c00498{transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);-ms-transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177522,-0.002130,0.003000,0.249982,0,0);}
.mb8_c00498{transform:matrix(0.177845,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177845,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177845,-0.002668,0.003750,0.249972,0,0);}
.m20_c00498{transform:matrix(0.178009,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.178009,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178009,-0.001424,0.002000,0.249992,0,0);}
.m26_c00498{transform:matrix(0.178134,-0.001425,0.002000,0.249992,0,0);-ms-transform:matrix(0.178134,-0.001425,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178134,-0.001425,0.002000,0.249992,0,0);}
.m1d_c00498{transform:matrix(0.178499,-0.001428,0.002000,0.249992,0,0);-ms-transform:matrix(0.178499,-0.001428,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178499,-0.001428,0.002000,0.249992,0,0);}
.m9_c00498{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);}
.mf7_c00498{transform:matrix(0.180290,-0.002344,0.003250,0.249979,0,0);-ms-transform:matrix(0.180290,-0.002344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180290,-0.002344,0.003250,0.249979,0,0);}
.m16_c00498{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);}
.m67_c00498{transform:matrix(0.181374,-0.001995,0.002750,0.249985,0,0);-ms-transform:matrix(0.181374,-0.001995,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181374,-0.001995,0.002750,0.249985,0,0);}
.m4f_c00498{transform:matrix(0.181766,-0.001818,0.002500,0.249988,0,0);-ms-transform:matrix(0.181766,-0.001818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181766,-0.001818,0.002500,0.249988,0,0);}
.m12a_c00498{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);}
.m29_c00498{transform:matrix(0.183374,-0.001467,0.002000,0.249992,0,0);-ms-transform:matrix(0.183374,-0.001467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183374,-0.001467,0.002000,0.249992,0,0);}
.mc7_c00498{transform:matrix(0.183499,-0.002752,0.003750,0.249972,0,0);-ms-transform:matrix(0.183499,-0.002752,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183499,-0.002752,0.003750,0.249972,0,0);}
.m8f_c00498{transform:matrix(0.184106,-0.001841,0.002500,0.249988,0,0);-ms-transform:matrix(0.184106,-0.001841,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184106,-0.001841,0.002500,0.249988,0,0);}
.mba_c00498{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);}
.maf_c00498{transform:matrix(0.184717,-0.002586,0.003500,0.249976,0,0);-ms-transform:matrix(0.184717,-0.002586,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184717,-0.002586,0.003500,0.249976,0,0);}
.m15_c00498{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);}
.mb6_c00498{transform:matrix(0.185924,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185924,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185924,-0.002789,0.003750,0.249972,0,0);}
.md_c00498{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);}
.mbf_c00498{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);}
.m79_c00498{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);}
.m8a_c00498{transform:matrix(0.187021,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.187021,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187021,-0.001870,0.002500,0.249988,0,0);}
.m7b_c00498{transform:matrix(0.187536,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187536,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187536,-0.002250,0.003000,0.249982,0,0);}
.m7_c00498{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);}
.mb2_c00498{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);}
.m77_c00498{transform:matrix(0.187996,-0.002256,0.003000,0.249982,0,0);-ms-transform:matrix(0.187996,-0.002256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187996,-0.002256,0.003000,0.249982,0,0);}
.mea_c00498{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);}
.mf0_c00498{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);}
.m17_c00498{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);}
.m18_c00498{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);}
.mb5_c00498{transform:matrix(0.189004,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.189004,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189004,-0.002835,0.003750,0.249972,0,0);}
.mac_c00498{transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189056,-0.002647,0.003500,0.249976,0,0);}
.m4a_c00498{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);}
.m9b_c00498{transform:matrix(0.189651,-0.002655,0.003500,0.249976,0,0);-ms-transform:matrix(0.189651,-0.002655,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189651,-0.002655,0.003500,0.249976,0,0);}
.m3b_c00498{transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-ms-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190795,-0.001908,0.002500,0.249988,0,0);}
.mdd_c00498{transform:matrix(0.190971,-0.002292,0.003000,0.249982,0,0);-ms-transform:matrix(0.190971,-0.002292,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190971,-0.002292,0.003000,0.249982,0,0);}
.m7f_c00498{transform:matrix(0.191073,-0.002102,0.002750,0.249985,0,0);-ms-transform:matrix(0.191073,-0.002102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191073,-0.002102,0.002750,0.249985,0,0);}
.mbc_c00498{transform:matrix(0.191213,-0.002868,0.003750,0.249972,0,0);-ms-transform:matrix(0.191213,-0.002868,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191213,-0.002868,0.003750,0.249972,0,0);}
.m8_c00498{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);}
.ma3_c00498{transform:matrix(0.191396,-0.002680,0.003500,0.249976,0,0);-ms-transform:matrix(0.191396,-0.002680,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191396,-0.002680,0.003500,0.249976,0,0);}
.m4e_c00498{transform:matrix(0.191410,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191410,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191410,-0.001914,0.002500,0.249988,0,0);}
.m22_c00498{transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);-ms-transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192054,-0.001536,0.002000,0.249992,0,0);}
.m71_c00498{transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);-ms-transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192988,-0.002123,0.002750,0.249985,0,0);}
.m80_c00498{transform:matrix(0.193288,-0.002126,0.002750,0.249985,0,0);-ms-transform:matrix(0.193288,-0.002126,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193288,-0.002126,0.002750,0.249985,0,0);}
.m95_c00498{transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);-ms-transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193611,-0.002711,0.003500,0.249976,0,0);}
.m54_c00498{transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);-ms-transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194515,-0.001945,0.002500,0.249988,0,0);}
.m44_c00498{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);}
.m48_c00498{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);}
.m106_c00498{transform:matrix(0.195748,-0.002545,0.003250,0.249979,0,0);-ms-transform:matrix(0.195748,-0.002545,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195748,-0.002545,0.003250,0.249979,0,0);}
.mb0_c00498{transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);-ms-transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195908,-0.002939,0.003750,0.249972,0,0);}
.mf1_c00498{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);}
.m1c_c00498{transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);-ms-transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196029,-0.001568,0.002000,0.249992,0,0);}
.mef_c00498{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);}
.m33_c00498{transform:matrix(0.196995,-0.001970,0.002500,0.249988,0,0);-ms-transform:matrix(0.196995,-0.001970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196995,-0.001970,0.002500,0.249988,0,0);}
.m25_c00498{transform:matrix(0.197729,-0.001582,0.002000,0.249992,0,0);-ms-transform:matrix(0.197729,-0.001582,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197729,-0.001582,0.002000,0.249992,0,0);}
.m2a_c00498{transform:matrix(0.198029,-0.001584,0.002000,0.249992,0,0);-ms-transform:matrix(0.198029,-0.001584,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198029,-0.001584,0.002000,0.249992,0,0);}
.m9f_c00498{transform:matrix(0.198286,-0.002776,0.003500,0.249976,0,0);-ms-transform:matrix(0.198286,-0.002776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198286,-0.002776,0.003500,0.249976,0,0);}
.mf_c00498{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);}
.mc5_c00498{transform:matrix(0.198603,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198603,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198603,-0.002979,0.003750,0.249972,0,0);}
.m3d_c00498{transform:matrix(0.199210,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199210,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199210,-0.001992,0.002500,0.249988,0,0);}
.m6e_c00498{transform:matrix(0.199213,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199213,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199213,-0.002191,0.002750,0.249985,0,0);}
.m52_c00498{transform:matrix(0.199745,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199745,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199745,-0.001997,0.002500,0.249988,0,0);}
.m10_c00498{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);}
.mc6_c00498{transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);}
.me2_c00498{transform:matrix(0.200371,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200371,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200371,-0.002404,0.003000,0.249982,0,0);}
.mec_c00498{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);}
.m75_c00498{transform:matrix(0.200581,-0.002407,0.003000,0.249982,0,0);-ms-transform:matrix(0.200581,-0.002407,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200581,-0.002407,0.003000,0.249982,0,0);}
.m9a_c00498{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);}
.m38_c00498{transform:matrix(0.201040,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.201040,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201040,-0.002010,0.002500,0.249988,0,0);}
.m64_c00498{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);}
.me9_c00498{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);}
.md6_c00498{transform:matrix(0.203080,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203080,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203080,-0.002437,0.003000,0.249982,0,0);}
.ma5_c00498{transform:matrix(0.203705,-0.002852,0.003500,0.249976,0,0);-ms-transform:matrix(0.203705,-0.002852,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203705,-0.002852,0.003500,0.249976,0,0);}
.m3f_c00498{transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);-ms-transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204705,-0.002047,0.002500,0.249988,0,0);}
.mc_c00498{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);}
.m115_c00498{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);}
.m107_c00498{transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);}
.m122_c00498{transform:matrix(0.205568,-0.002672,0.003250,0.249979,0,0);-ms-transform:matrix(0.205568,-0.002672,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205568,-0.002672,0.003250,0.249979,0,0);}
.m19_c00498{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);}
.m56_c00498{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);}
.md3_c00498{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);}
.ma2_c00498{transform:matrix(0.206620,-0.002893,0.003500,0.249976,0,0);-ms-transform:matrix(0.206620,-0.002893,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206620,-0.002893,0.003500,0.249976,0,0);}
.mb1_c00498{transform:matrix(0.206857,-0.003103,0.003750,0.249972,0,0);-ms-transform:matrix(0.206857,-0.003103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206857,-0.003103,0.003750,0.249972,0,0);}
.mbb_c00498{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);}
.m1a_c00498{transform:matrix(0.206943,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.206943,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206943,-0.001656,0.002000,0.249992,0,0);}
.md9_c00498{transform:matrix(0.207185,-0.002486,0.003000,0.249982,0,0);-ms-transform:matrix(0.207185,-0.002486,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207185,-0.002486,0.003000,0.249982,0,0);}
.m63_c00498{transform:matrix(0.207322,-0.002281,0.002750,0.249985,0,0);-ms-transform:matrix(0.207322,-0.002281,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207322,-0.002281,0.002750,0.249985,0,0);}
.m1b_c00498{transform:matrix(0.208318,-0.001667,0.002000,0.249992,0,0);-ms-transform:matrix(0.208318,-0.001667,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208318,-0.001667,0.002000,0.249992,0,0);}
.m119_c00498{transform:matrix(0.208352,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208352,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208352,-0.002709,0.003250,0.249979,0,0);}
.m40_c00498{transform:matrix(0.208985,-0.002090,0.002500,0.249988,0,0);-ms-transform:matrix(0.208985,-0.002090,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208985,-0.002090,0.002500,0.249988,0,0);}
.m83_c00498{transform:matrix(0.209162,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209162,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209162,-0.002301,0.002750,0.249985,0,0);}
.m3a_c00498{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);}
.m7c_c00498{transform:matrix(0.209860,-0.002518,0.003000,0.249982,0,0);-ms-transform:matrix(0.209860,-0.002518,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209860,-0.002518,0.003000,0.249982,0,0);}
.m121_c00498{transform:matrix(0.210532,-0.002737,0.003250,0.249979,0,0);-ms-transform:matrix(0.210532,-0.002737,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210532,-0.002737,0.003250,0.249979,0,0);}
.m116_c00498{transform:matrix(0.212077,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212077,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212077,-0.002757,0.003250,0.249979,0,0);}
.meb_c00498{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00498{transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);-ms-transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213074,-0.002983,0.003500,0.249976,0,0);}
.m101_c00498{transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);-ms-transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213907,-0.002781,0.003250,0.249979,0,0);}
.m72_c00498{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);}
.m73_c00498{transform:matrix(0.214067,-0.002355,0.002750,0.249985,0,0);-ms-transform:matrix(0.214067,-0.002355,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214067,-0.002355,0.002750,0.249985,0,0);}
.mcf_c00498{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);}
.m108_c00498{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);}
.m41_c00498{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_c00498{transform:matrix(0.216479,-0.003031,0.003500,0.249976,0,0);-ms-transform:matrix(0.216479,-0.003031,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216479,-0.003031,0.003500,0.249976,0,0);}
.m8b_c00498{transform:matrix(0.216479,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216479,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216479,-0.002165,0.002500,0.249988,0,0);}
.mc4_c00498{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);}
.m123_c00498{transform:matrix(0.217797,-0.002831,0.003250,0.249979,0,0);-ms-transform:matrix(0.217797,-0.002831,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217797,-0.002831,0.003250,0.249979,0,0);}
.m6a_c00498{transform:matrix(0.217857,-0.002396,0.002750,0.249985,0,0);-ms-transform:matrix(0.217857,-0.002396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217857,-0.002396,0.002750,0.249985,0,0);}
.me1_c00498{transform:matrix(0.217934,-0.002615,0.003000,0.249982,0,0);-ms-transform:matrix(0.217934,-0.002615,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217934,-0.002615,0.003000,0.249982,0,0);}
.m35_c00498{transform:matrix(0.218204,-0.002182,0.002500,0.249988,0,0);-ms-transform:matrix(0.218204,-0.002182,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218204,-0.002182,0.002500,0.249988,0,0);}
.mc0_c00498{transform:matrix(0.218700,-0.003281,0.003750,0.249972,0,0);-ms-transform:matrix(0.218700,-0.003281,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218700,-0.003281,0.003750,0.249972,0,0);}
.md4_c00498{transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);-ms-transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);}
.m112_c00498{transform:matrix(0.219586,-0.002855,0.003250,0.249979,0,0);-ms-transform:matrix(0.219586,-0.002855,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219586,-0.002855,0.003250,0.249979,0,0);}
.m65_c00498{transform:matrix(0.219637,-0.002416,0.002750,0.249985,0,0);-ms-transform:matrix(0.219637,-0.002416,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219637,-0.002416,0.002750,0.249985,0,0);}
.m81_c00498{transform:matrix(0.219707,-0.002417,0.002750,0.249985,0,0);-ms-transform:matrix(0.219707,-0.002417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219707,-0.002417,0.002750,0.249985,0,0);}
.m10a_c00498{transform:matrix(0.220191,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220191,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220191,-0.002862,0.003250,0.249979,0,0);}
.m69_c00498{transform:matrix(0.220472,-0.002425,0.002750,0.249985,0,0);-ms-transform:matrix(0.220472,-0.002425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220472,-0.002425,0.002750,0.249985,0,0);}
.mdc_c00498{transform:matrix(0.220924,-0.002651,0.003000,0.249982,0,0);-ms-transform:matrix(0.220924,-0.002651,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220924,-0.002651,0.003000,0.249982,0,0);}
.m94_c00498{transform:matrix(0.221688,-0.003104,0.003500,0.249976,0,0);-ms-transform:matrix(0.221688,-0.003104,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221688,-0.003104,0.003500,0.249976,0,0);}
.m21_c00498{transform:matrix(0.222393,-0.001779,0.002000,0.249992,0,0);-ms-transform:matrix(0.222393,-0.001779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222393,-0.001779,0.002000,0.249992,0,0);}
.mfa_c00498{transform:matrix(0.223171,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223171,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223171,-0.002901,0.003250,0.249979,0,0);}
.m24_c00498{transform:matrix(0.224228,-0.001794,0.002000,0.249992,0,0);-ms-transform:matrix(0.224228,-0.001794,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224228,-0.001794,0.002000,0.249992,0,0);}
.me3_c00498{transform:matrix(0.224364,-0.002692,0.003000,0.249982,0,0);-ms-transform:matrix(0.224364,-0.002692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224364,-0.002692,0.003000,0.249982,0,0);}
.mb9_c00498{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);}
.mf5_c00498{transform:matrix(0.228206,-0.002967,0.003250,0.249979,0,0);-ms-transform:matrix(0.228206,-0.002967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228206,-0.002967,0.003250,0.249979,0,0);}
.md0_c00498{transform:matrix(0.228609,-0.002743,0.003000,0.249982,0,0);-ms-transform:matrix(0.228609,-0.002743,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228609,-0.002743,0.003000,0.249982,0,0);}
.m53_c00498{transform:matrix(0.228789,-0.002288,0.002500,0.249988,0,0);-ms-transform:matrix(0.228789,-0.002288,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228789,-0.002288,0.002500,0.249988,0,0);}
.m8c_c00498{transform:matrix(0.228809,-0.002288,0.002500,0.249988,0,0);-ms-transform:matrix(0.228809,-0.002288,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228809,-0.002288,0.002500,0.249988,0,0);}
.m5a_c00498{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);}
.m32_c00498{transform:matrix(0.229644,-0.002296,0.002500,0.249988,0,0);-ms-transform:matrix(0.229644,-0.002296,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229644,-0.002296,0.002500,0.249988,0,0);}
.mda_c00498{transform:matrix(0.230143,-0.002762,0.003000,0.249982,0,0);-ms-transform:matrix(0.230143,-0.002762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230143,-0.002762,0.003000,0.249982,0,0);}
.mf3_c00498{transform:matrix(0.230910,-0.003002,0.003250,0.249979,0,0);-ms-transform:matrix(0.230910,-0.003002,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230910,-0.003002,0.003250,0.249979,0,0);}
.m59_c00498{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);}
.m11f_c00498{transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);-ms-transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);}
.m4_c00498{transform:matrix(0.232913,-0.002329,0.002500,0.249988,0,0);-ms-transform:matrix(0.232913,-0.002329,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232913,-0.002329,0.002500,0.249988,0,0);}
.m58_c00498{transform:matrix(0.233421,-0.002568,0.002750,0.249985,0,0);-ms-transform:matrix(0.233421,-0.002568,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233421,-0.002568,0.002750,0.249985,0,0);}
.m34_c00498{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);}
.m86_c00498{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);}
.m57_c00498{transform:matrix(0.235336,-0.002589,0.002750,0.249985,0,0);-ms-transform:matrix(0.235336,-0.002589,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235336,-0.002589,0.002750,0.249985,0,0);}
.m120_c00498{transform:matrix(0.236055,-0.003069,0.003250,0.249979,0,0);-ms-transform:matrix(0.236055,-0.003069,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236055,-0.003069,0.003250,0.249979,0,0);}
.mff_c00498{transform:matrix(0.237060,-0.003082,0.003250,0.249979,0,0);-ms-transform:matrix(0.237060,-0.003082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237060,-0.003082,0.003250,0.249979,0,0);}
.m3c_c00498{transform:matrix(0.237193,-0.002372,0.002500,0.249988,0,0);-ms-transform:matrix(0.237193,-0.002372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237193,-0.002372,0.002500,0.249988,0,0);}
.m111_c00498{transform:matrix(0.238335,-0.003098,0.003250,0.249979,0,0);-ms-transform:matrix(0.238335,-0.003098,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238335,-0.003098,0.003250,0.249979,0,0);}
.m68_c00498{transform:matrix(0.239141,-0.002631,0.002750,0.249985,0,0);-ms-transform:matrix(0.239141,-0.002631,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239141,-0.002631,0.002750,0.249985,0,0);}
.m10e_c00498{transform:matrix(0.239225,-0.003110,0.003250,0.249979,0,0);-ms-transform:matrix(0.239225,-0.003110,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239225,-0.003110,0.003250,0.249979,0,0);}
.m126_c00498{transform:matrix(0.239270,-0.003111,0.003250,0.249979,0,0);-ms-transform:matrix(0.239270,-0.003111,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239270,-0.003111,0.003250,0.249979,0,0);}
.m98_c00498{transform:matrix(0.239557,-0.003354,0.003500,0.249976,0,0);-ms-transform:matrix(0.239557,-0.003354,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239557,-0.003354,0.003500,0.249976,0,0);}
.m125_c00498{transform:matrix(0.239770,-0.003117,0.003250,0.249979,0,0);-ms-transform:matrix(0.239770,-0.003117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239770,-0.003117,0.003250,0.249979,0,0);}
.mdf_c00498{transform:matrix(0.240008,-0.002880,0.003000,0.249982,0,0);-ms-transform:matrix(0.240008,-0.002880,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240008,-0.002880,0.003000,0.249982,0,0);}
.m124_c00498{transform:matrix(0.241400,-0.003138,0.003250,0.249979,0,0);-ms-transform:matrix(0.241400,-0.003138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241400,-0.003138,0.003250,0.249979,0,0);}
.m45_c00498{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);}
.mfd_c00498{transform:matrix(0.242614,-0.003154,0.003250,0.249979,0,0);-ms-transform:matrix(0.242614,-0.003154,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242614,-0.003154,0.003250,0.249979,0,0);}
.me8_c00498{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{transform:matrix(0.243263,-0.002433,0.002500,0.249988,0,0);-ms-transform:matrix(0.243263,-0.002433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243263,-0.002433,0.002500,0.249988,0,0);}
.m5b_c00498{transform:matrix(0.244075,-0.002685,0.002750,0.249985,0,0);-ms-transform:matrix(0.244075,-0.002685,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244075,-0.002685,0.002750,0.249985,0,0);}
.m4d_c00498{transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);-ms-transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);}
.m7e_c00498{transform:matrix(0.244615,-0.002691,0.002750,0.249985,0,0);-ms-transform:matrix(0.244615,-0.002691,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244615,-0.002691,0.002750,0.249985,0,0);}
.m110_c00498{transform:matrix(0.245579,-0.003193,0.003250,0.249979,0,0);-ms-transform:matrix(0.245579,-0.003193,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245579,-0.003193,0.003250,0.249979,0,0);}
.m96_c00498{transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-ms-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);}
.m6_c00498{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.me7_c00498{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);}
.mb4_c00498{transform:matrix(0.247047,-0.003706,0.003750,0.249972,0,0);-ms-transform:matrix(0.247047,-0.003706,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247047,-0.003706,0.003750,0.249972,0,0);}
.m84_c00498{transform:matrix(0.249030,-0.002739,0.002750,0.249985,0,0);-ms-transform:matrix(0.249030,-0.002739,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249030,-0.002739,0.002750,0.249985,0,0);}
.m104_c00498{transform:matrix(0.250274,-0.003254,0.003250,0.249979,0,0);-ms-transform:matrix(0.250274,-0.003254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250274,-0.003254,0.003250,0.249979,0,0);}
.m113_c00498{transform:matrix(0.253779,-0.003299,0.003250,0.249979,0,0);-ms-transform:matrix(0.253779,-0.003299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253779,-0.003299,0.003250,0.249979,0,0);}
.m36_c00498{transform:matrix(0.256812,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256812,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256812,-0.002568,0.002500,0.249988,0,0);}
.me0_c00498{transform:matrix(0.258201,-0.003098,0.003000,0.249982,0,0);-ms-transform:matrix(0.258201,-0.003098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258201,-0.003098,0.003000,0.249982,0,0);}
.m28_c00498{transform:matrix(0.259487,-0.002076,0.002000,0.249992,0,0);-ms-transform:matrix(0.259487,-0.002076,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259487,-0.002076,0.002000,0.249992,0,0);}
.m31_c00498{transform:matrix(0.260207,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260207,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260207,-0.002602,0.002500,0.249988,0,0);}
.mf4_c00498{transform:matrix(0.260978,-0.003393,0.003250,0.249979,0,0);-ms-transform:matrix(0.260978,-0.003393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260978,-0.003393,0.003250,0.249979,0,0);}
.m51_c00498{transform:matrix(0.261482,-0.002615,0.002500,0.249988,0,0);-ms-transform:matrix(0.261482,-0.002615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261482,-0.002615,0.002500,0.249988,0,0);}
.mf2_c00498{transform:matrix(0.265493,-0.003451,0.003250,0.249979,0,0);-ms-transform:matrix(0.265493,-0.003451,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265493,-0.003451,0.003250,0.249979,0,0);}
.m6c_c00498{transform:matrix(0.265929,-0.002925,0.002750,0.249985,0,0);-ms-transform:matrix(0.265929,-0.002925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265929,-0.002925,0.002750,0.249985,0,0);}
.m9c_c00498{transform:matrix(0.265999,-0.003724,0.003500,0.249976,0,0);-ms-transform:matrix(0.265999,-0.003724,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265999,-0.003724,0.003500,0.249976,0,0);}
.mfc_c00498{transform:matrix(0.266782,-0.003468,0.003250,0.249979,0,0);-ms-transform:matrix(0.266782,-0.003468,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266782,-0.003468,0.003250,0.249979,0,0);}
.m50_c00498{transform:matrix(0.268097,-0.002681,0.002500,0.249988,0,0);-ms-transform:matrix(0.268097,-0.002681,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268097,-0.002681,0.002500,0.249988,0,0);}
.m6b_c00498{transform:matrix(0.268344,-0.002952,0.002750,0.249985,0,0);-ms-transform:matrix(0.268344,-0.002952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268344,-0.002952,0.002750,0.249985,0,0);}
.m62_c00498{transform:matrix(0.269194,-0.002961,0.002750,0.249985,0,0);-ms-transform:matrix(0.269194,-0.002961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269194,-0.002961,0.002750,0.249985,0,0);}
.m102_c00498{transform:matrix(0.270872,-0.003521,0.003250,0.249979,0,0);-ms-transform:matrix(0.270872,-0.003521,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270872,-0.003521,0.003250,0.249979,0,0);}
.mc1_c00498{transform:matrix(0.273249,-0.004099,0.003750,0.249972,0,0);-ms-transform:matrix(0.273249,-0.004099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273249,-0.004099,0.003750,0.249972,0,0);}
.m82_c00498{transform:matrix(0.274423,-0.003019,0.002750,0.249985,0,0);-ms-transform:matrix(0.274423,-0.003019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274423,-0.003019,0.002750,0.249985,0,0);}
.m11b_c00498{transform:matrix(0.275887,-0.003587,0.003250,0.249979,0,0);-ms-transform:matrix(0.275887,-0.003587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275887,-0.003587,0.003250,0.249979,0,0);}
.m9e_c00498{transform:matrix(0.278243,-0.003895,0.003500,0.249976,0,0);-ms-transform:matrix(0.278243,-0.003895,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278243,-0.003895,0.003500,0.249976,0,0);}
.ma7_c00498{transform:matrix(0.280423,-0.003926,0.003500,0.249976,0,0);-ms-transform:matrix(0.280423,-0.003926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280423,-0.003926,0.003500,0.249976,0,0);}
.m100_c00498{transform:matrix(0.282956,-0.003678,0.003250,0.249979,0,0);-ms-transform:matrix(0.282956,-0.003678,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282956,-0.003678,0.003250,0.249979,0,0);}
.m85_c00498{transform:matrix(0.289108,-0.003180,0.002750,0.249985,0,0);-ms-transform:matrix(0.289108,-0.003180,0.002750,0.249985,0,0);-webkit-transform:matrix(0.289108,-0.003180,0.002750,0.249985,0,0);}
.m99_c00498{transform:matrix(0.289477,-0.004053,0.003500,0.249976,0,0);-ms-transform:matrix(0.289477,-0.004053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.289477,-0.004053,0.003500,0.249976,0,0);}
.m30_c00498{transform:matrix(0.290290,-0.002903,0.002500,0.249988,0,0);-ms-transform:matrix(0.290290,-0.002903,0.002500,0.249988,0,0);-webkit-transform:matrix(0.290290,-0.002903,0.002500,0.249988,0,0);}
.m97_c00498{transform:matrix(0.291046,-0.004075,0.003500,0.249976,0,0);-ms-transform:matrix(0.291046,-0.004075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.291046,-0.004075,0.003500,0.249976,0,0);}
.m2e_c00498{transform:matrix(0.292736,-0.002342,0.002000,0.249992,0,0);-ms-transform:matrix(0.292736,-0.002342,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292736,-0.002342,0.002000,0.249992,0,0);}
.m3_c00498{transform:matrix(0.293720,-0.002937,0.002500,0.249988,0,0);-ms-transform:matrix(0.293720,-0.002937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293720,-0.002937,0.002500,0.249988,0,0);}
.mfe_c00498{transform:matrix(0.305139,-0.003967,0.003250,0.249979,0,0);-ms-transform:matrix(0.305139,-0.003967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.305139,-0.003967,0.003250,0.249979,0,0);}
.m10c_c00498{transform:matrix(0.310264,-0.004033,0.003250,0.249979,0,0);-ms-transform:matrix(0.310264,-0.004033,0.003250,0.249979,0,0);-webkit-transform:matrix(0.310264,-0.004033,0.003250,0.249979,0,0);}
.m1e_c00498{transform:matrix(0.312620,-0.002501,0.002000,0.249992,0,0);-ms-transform:matrix(0.312620,-0.002501,0.002000,0.249992,0,0);-webkit-transform:matrix(0.312620,-0.002501,0.002000,0.249992,0,0);}
.m46_c00498{transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);}
.md8_c00498{transform:matrix(0.328626,-0.003944,0.003000,0.249982,0,0);-ms-transform:matrix(0.328626,-0.003944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328626,-0.003944,0.003000,0.249982,0,0);}
.m9d_c00498{transform:matrix(0.335217,-0.004693,0.003500,0.249976,0,0);-ms-transform:matrix(0.335217,-0.004693,0.003500,0.249976,0,0);-webkit-transform:matrix(0.335217,-0.004693,0.003500,0.249976,0,0);}
.m2_c00498{transform:matrix(0.339608,-0.003396,0.002500,0.249988,0,0);-ms-transform:matrix(0.339608,-0.003396,0.002500,0.249988,0,0);-webkit-transform:matrix(0.339608,-0.003396,0.002500,0.249988,0,0);}
.mc2_c00498{transform:matrix(0.340207,-0.005103,0.003750,0.249972,0,0);-ms-transform:matrix(0.340207,-0.005103,0.003750,0.249972,0,0);-webkit-transform:matrix(0.340207,-0.005103,0.003750,0.249972,0,0);}
.m128_c00498{transform:matrix(0.340766,-0.004430,0.003250,0.249979,0,0);-ms-transform:matrix(0.340766,-0.004430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.340766,-0.004430,0.003250,0.249979,0,0);}
.m10f_c00498{transform:matrix(0.346246,-0.004501,0.003250,0.249979,0,0);-ms-transform:matrix(0.346246,-0.004501,0.003250,0.249979,0,0);-webkit-transform:matrix(0.346246,-0.004501,0.003250,0.249979,0,0);}
.m23_c00498{transform:matrix(0.357019,-0.002856,0.002000,0.249992,0,0);-ms-transform:matrix(0.357019,-0.002856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.357019,-0.002856,0.002000,0.249992,0,0);}
.mca_c00498{transform:matrix(0.362724,-0.005441,0.003750,0.249972,0,0);-ms-transform:matrix(0.362724,-0.005441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.362724,-0.005441,0.003750,0.249972,0,0);}
.m74_c00498{transform:matrix(0.365928,-0.004025,0.002750,0.249985,0,0);-ms-transform:matrix(0.365928,-0.004025,0.002750,0.249985,0,0);-webkit-transform:matrix(0.365928,-0.004025,0.002750,0.249985,0,0);}
.med_c00498{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);}
.m114_c00498{transform:matrix(0.376808,-0.004899,0.003250,0.249979,0,0);-ms-transform:matrix(0.376808,-0.004899,0.003250,0.249979,0,0);-webkit-transform:matrix(0.376808,-0.004899,0.003250,0.249979,0,0);}
.mcb_c00498{transform:matrix(0.380122,-0.005702,0.003750,0.249972,0,0);-ms-transform:matrix(0.380122,-0.005702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.380122,-0.005702,0.003750,0.249972,0,0);}
.mb_c00498{transform:matrix(0.382655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382655,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384310,0.000000,0.000000,0.250000,0,0);}
.m10d_c00498{transform:matrix(0.393652,-0.005117,0.003250,0.249979,0,0);-ms-transform:matrix(0.393652,-0.005117,0.003250,0.249979,0,0);-webkit-transform:matrix(0.393652,-0.005117,0.003250,0.249979,0,0);}
.me6_c00498{transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);}
.mf6_c00498{transform:matrix(0.395452,-0.005141,0.003250,0.249979,0,0);-ms-transform:matrix(0.395452,-0.005141,0.003250,0.249979,0,0);-webkit-transform:matrix(0.395452,-0.005141,0.003250,0.249979,0,0);}
.m11a_c00498{transform:matrix(0.425844,-0.005536,0.003250,0.249979,0,0);-ms-transform:matrix(0.425844,-0.005536,0.003250,0.249979,0,0);-webkit-transform:matrix(0.425844,-0.005536,0.003250,0.249979,0,0);}
.m129_c00498{transform:matrix(0.441363,-0.005738,0.003250,0.249979,0,0);-ms-transform:matrix(0.441363,-0.005738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.441363,-0.005738,0.003250,0.249979,0,0);}
.m91_c00498{transform:matrix(0.458803,-0.011011,0.005998,0.249928,0,0);-ms-transform:matrix(0.458803,-0.011011,0.005998,0.249928,0,0);-webkit-transform:matrix(0.458803,-0.011011,0.005998,0.249928,0,0);}
.mf8_c00498{transform:matrix(0.471605,-0.006131,0.003250,0.249979,0,0);-ms-transform:matrix(0.471605,-0.006131,0.003250,0.249979,0,0);-webkit-transform:matrix(0.471605,-0.006131,0.003250,0.249979,0,0);}
.mde_c00498{transform:matrix(0.487260,-0.005847,0.003000,0.249982,0,0);-ms-transform:matrix(0.487260,-0.005847,0.003000,0.249982,0,0);-webkit-transform:matrix(0.487260,-0.005847,0.003000,0.249982,0,0);}
.m127_c00498{transform:matrix(0.506687,-0.006587,0.003250,0.249979,0,0);-ms-transform:matrix(0.506687,-0.006587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.506687,-0.006587,0.003250,0.249979,0,0);}
.m11c_c00498{transform:matrix(0.507052,-0.006592,0.003250,0.249979,0,0);-ms-transform:matrix(0.507052,-0.006592,0.003250,0.249979,0,0);-webkit-transform:matrix(0.507052,-0.006592,0.003250,0.249979,0,0);}
.md5_c00498{transform:matrix(0.523192,-0.006278,0.003000,0.249982,0,0);-ms-transform:matrix(0.523192,-0.006278,0.003000,0.249982,0,0);-webkit-transform:matrix(0.523192,-0.006278,0.003000,0.249982,0,0);}
.m37_c00498{transform:matrix(0.541393,-0.005414,0.002500,0.249988,0,0);-ms-transform:matrix(0.541393,-0.005414,0.002500,0.249988,0,0);-webkit-transform:matrix(0.541393,-0.005414,0.002500,0.249988,0,0);}
.me5_c00498{transform:matrix(0.598715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598715,0.000000,0.000000,0.250000,0,0);}
.m10b_c00498{transform:matrix(0.623607,-0.008107,0.003250,0.249979,0,0);-ms-transform:matrix(0.623607,-0.008107,0.003250,0.249979,0,0);-webkit-transform:matrix(0.623607,-0.008107,0.003250,0.249979,0,0);}
.m11d_c00498{transform:matrix(0.714395,-0.009287,0.003250,0.249979,0,0);-ms-transform:matrix(0.714395,-0.009287,0.003250,0.249979,0,0);-webkit-transform:matrix(0.714395,-0.009287,0.003250,0.249979,0,0);}
.m1_c00498{transform:matrix(0.768899,-0.006920,0.002250,0.249990,0,0);-ms-transform:matrix(0.768899,-0.006920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.768899,-0.006920,0.002250,0.249990,0,0);}
.m0_c00498{transform:matrix(0.886709,-0.007980,0.002250,0.249990,0,0);-ms-transform:matrix(0.886709,-0.007980,0.002250,0.249990,0,0);-webkit-transform:matrix(0.886709,-0.007980,0.002250,0.249990,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;}
.fs1d_c00498{font-size:34.650000px;}
.fs18_c00498{font-size:48.300000px;}
.fs17_c00498{font-size:48.303477px;}
.fs1b_c00498{font-size:49.354170px;}
.fs1a_c00498{font-size:50.404259px;}
.fs19_c00498{font-size:51.450000px;}
.fs16_c00498{font-size:51.453704px;}
.fs1c_c00498{font-size:51.454347px;}
.fsd_c00498{font-size:61.953748px;}
.fs11_c00498{font-size:61.956071px;}
.fs6_c00498{font-size:63.003150px;}
.fs10_c00498{font-size:67.206585px;}
.fs4_c00498{font-size:68.252184px;}
.fs7_c00498{font-size:68.253412px;}
.fsc_c00498{font-size:68.254914px;}
.fs14_c00498{font-size:68.257678px;}
.fs2_c00498{font-size:69.300000px;}
.fs9_c00498{font-size:69.304193px;}
.fs13_c00498{font-size:69.307796px;}
.fsf_c00498{font-size:69.319956px;}
.fs3_c00498{font-size:70.350000px;}
.fs8_c00498{font-size:70.353517px;}
.fs5_c00498{font-size:71.402285px;}
.fsb_c00498{font-size:71.404320px;}
.fs12_c00498{font-size:71.406997px;}
.fsa_c00498{font-size:72.454383px;}
.fs15_c00498{font-size:72.458150px;}
.fse_c00498{font-size:73.503675px;}
.fs1_c00498{font-size:121.806090px;}
.fs0_c00498{font-size:185.857527px;}
.y0_c00498{bottom:0.000000px;}
.y10e_c00498{bottom:3.780000px;}
.y103_c00498{bottom:144.176754px;}
.y104_c00498{bottom:144.387705px;}
.y105_c00498{bottom:144.851259px;}
.y106_c00498{bottom:145.271913px;}
.y107_c00498{bottom:145.497860px;}
.y108_c00498{bottom:146.027558px;}
.y109_c00498{bottom:146.487192px;}
.y10a_c00498{bottom:146.947002px;}
.y10b_c00498{bottom:147.265885px;}
.y10c_c00498{bottom:147.846907px;}
.y10d_c00498{bottom:148.411277px;}
.yf8_c00498{bottom:162.269783px;}
.yf9_c00498{bottom:162.732927px;}
.yfa_c00498{bottom:163.218888px;}
.yfb_c00498{bottom:163.645954px;}
.yfc_c00498{bottom:163.853296px;}
.yfd_c00498{bottom:164.148180px;}
.yfe_c00498{bottom:164.667411px;}
.yff_c00498{bottom:164.819952px;}
.y100_c00498{bottom:165.266169px;}
.y101_c00498{bottom:166.068993px;}
.y102_c00498{bottom:167.750637px;}
.ye8_c00498{bottom:180.184701px;}
.ye9_c00498{bottom:180.347111px;}
.yea_c00498{bottom:180.442103px;}
.yeb_c00498{bottom:180.937172px;}
.yec_c00498{bottom:181.251947px;}
.yee_c00498{bottom:181.712944px;}
.yed_c00498{bottom:181.727357px;}
.yef_c00498{bottom:182.763321px;}
.yf0_c00498{bottom:183.106686px;}
.yf1_c00498{bottom:183.660474px;}
.yf2_c00498{bottom:183.965050px;}
.yf3_c00498{bottom:184.337220px;}
.yf4_c00498{bottom:184.508581px;}
.yf5_c00498{bottom:184.961858px;}
.yf6_c00498{bottom:185.257326px;}
.yf7_c00498{bottom:185.419599px;}
.yd6_c00498{bottom:197.902500px;}
.yd7_c00498{bottom:198.330642px;}
.yd8_c00498{bottom:198.520299px;}
.yd9_c00498{bottom:199.218965px;}
.yda_c00498{bottom:199.906281px;}
.ydb_c00498{bottom:200.029072px;}
.ydc_c00498{bottom:200.520434px;}
.ydd_c00498{bottom:201.011619px;}
.yde_c00498{bottom:201.134683px;}
.ydf_c00498{bottom:201.796650px;}
.ye0_c00498{bottom:201.857782px;}
.ye1_c00498{bottom:202.104146px;}
.ye2_c00498{bottom:202.500464px;}
.ye3_c00498{bottom:202.774088px;}
.ye4_c00498{bottom:203.069532px;}
.ye5_c00498{bottom:203.428157px;}
.ye6_c00498{bottom:204.013176px;}
.ye7_c00498{bottom:204.029985px;}
.ycb_c00498{bottom:216.001500px;}
.ycc_c00498{bottom:216.336000px;}
.ycd_c00498{bottom:216.700500px;}
.yce_c00498{bottom:217.060500px;}
.ycf_c00498{bottom:217.519500px;}
.yd0_c00498{bottom:217.827000px;}
.yd1_c00498{bottom:218.227500px;}
.yd2_c00498{bottom:218.373000px;}
.yd3_c00498{bottom:218.602500px;}
.yd4_c00498{bottom:219.040500px;}
.yd5_c00498{bottom:219.246000px;}
.yca_c00498{bottom:233.542500px;}
.yc4_c00498{bottom:237.529278px;}
.yc8_c00498{bottom:237.529710px;}
.yc9_c00498{bottom:237.529734px;}
.yc5_c00498{bottom:237.529782px;}
.yc7_c00498{bottom:237.530208px;}
.yc6_c00498{bottom:237.530424px;}
.yb3_c00498{bottom:250.698000px;}
.yb4_c00498{bottom:250.830876px;}
.yb5_c00498{bottom:251.041458px;}
.yb6_c00498{bottom:251.381442px;}
.yb7_c00498{bottom:251.705766px;}
.yb8_c00498{bottom:251.923224px;}
.yb9_c00498{bottom:252.344550px;}
.yba_c00498{bottom:252.849054px;}
.ybb_c00498{bottom:253.095744px;}
.ybc_c00498{bottom:253.306128px;}
.ybd_c00498{bottom:253.510896px;}
.ybe_c00498{bottom:253.627374px;}
.ybf_c00498{bottom:254.096940px;}
.yc0_c00498{bottom:254.550666px;}
.yc1_c00498{bottom:254.868168px;}
.yc2_c00498{bottom:255.483444px;}
.yc3_c00498{bottom:255.684810px;}
.ya8_c00498{bottom:316.437165px;}
.ya9_c00498{bottom:316.623623px;}
.yaa_c00498{bottom:316.978170px;}
.yab_c00498{bottom:317.923755px;}
.yac_c00498{bottom:318.639037px;}
.yad_c00498{bottom:319.197307px;}
.yae_c00498{bottom:319.754063px;}
.yaf_c00498{bottom:320.558722px;}
.yb0_c00498{bottom:321.149760px;}
.yb1_c00498{bottom:322.461915px;}
.yb2_c00498{bottom:322.780380px;}
.y9e_c00498{bottom:339.659400px;}
.y9f_c00498{bottom:340.133812px;}
.ya0_c00498{bottom:340.670453px;}
.ya1_c00498{bottom:341.428598px;}
.ya2_c00498{bottom:341.924348px;}
.ya3_c00498{bottom:342.055290px;}
.ya4_c00498{bottom:342.346223px;}
.ya5_c00498{bottom:342.557122px;}
.ya6_c00498{bottom:342.927150px;}
.ya7_c00498{bottom:343.243988px;}
.y95_c00498{bottom:361.803000px;}
.y96_c00498{bottom:362.203972px;}
.y97_c00498{bottom:362.535982px;}
.y98_c00498{bottom:362.868285px;}
.y99_c00498{bottom:363.406080px;}
.y9a_c00498{bottom:364.282005px;}
.y9b_c00498{bottom:365.691540px;}
.y9c_c00498{bottom:366.063127px;}
.y9d_c00498{bottom:366.419550px;}
.y8b_c00498{bottom:384.480000px;}
.y8c_c00498{bottom:384.595185px;}
.y8d_c00498{bottom:385.214307px;}
.y8e_c00498{bottom:386.023143px;}
.y8f_c00498{bottom:386.394654px;}
.y90_c00498{bottom:386.738550px;}
.y91_c00498{bottom:387.365232px;}
.y92_c00498{bottom:387.634851px;}
.y93_c00498{bottom:388.084629px;}
.y94_c00498{bottom:388.761291px;}
.y84_c00498{bottom:407.697684px;}
.y85_c00498{bottom:408.371406px;}
.y86_c00498{bottom:408.872886px;}
.y87_c00498{bottom:410.492886px;}
.y88_c00498{bottom:411.024078px;}
.y89_c00498{bottom:411.370293px;}
.y8a_c00498{bottom:412.126146px;}
.y7b_c00498{bottom:430.379271px;}
.y7c_c00498{bottom:431.073966px;}
.y7d_c00498{bottom:431.525805px;}
.y7e_c00498{bottom:432.044628px;}
.y7f_c00498{bottom:432.433557px;}
.y80_c00498{bottom:432.709218px;}
.y81_c00498{bottom:433.195836px;}
.y82_c00498{bottom:433.608567px;}
.y83_c00498{bottom:433.922013px;}
.y77_c00498{bottom:452.250000px;}
.y78_c00498{bottom:452.964357px;}
.y79_c00498{bottom:455.810403px;}
.y7a_c00498{bottom:456.502290px;}
.y76_c00498{bottom:483.042000px;}
.y6c_c00498{bottom:510.571500px;}
.y6d_c00498{bottom:511.000515px;}
.y6e_c00498{bottom:511.372965px;}
.y6f_c00498{bottom:511.611045px;}
.y70_c00498{bottom:511.954065px;}
.y71_c00498{bottom:512.782890px;}
.y72_c00498{bottom:513.017640px;}
.y73_c00498{bottom:513.392730px;}
.y74_c00498{bottom:513.638445px;}
.y75_c00498{bottom:513.968430px;}
.y63_c00498{bottom:533.521500px;}
.y64_c00498{bottom:534.197934px;}
.y65_c00498{bottom:534.477724px;}
.y66_c00498{bottom:534.730257px;}
.y67_c00498{bottom:535.594411px;}
.y68_c00498{bottom:535.841103px;}
.y69_c00498{bottom:536.636453px;}
.y6a_c00498{bottom:537.073637px;}
.y6b_c00498{bottom:537.418272px;}
.y5a_c00498{bottom:556.471500px;}
.y5b_c00498{bottom:556.785294px;}
.y5c_c00498{bottom:557.346516px;}
.y5d_c00498{bottom:557.994462px;}
.y5e_c00498{bottom:558.334716px;}
.y5f_c00498{bottom:558.888090px;}
.y60_c00498{bottom:559.182912px;}
.y61_c00498{bottom:559.498416px;}
.y62_c00498{bottom:560.097384px;}
.y51_c00498{bottom:578.880864px;}
.y52_c00498{bottom:579.442437px;}
.y53_c00498{bottom:580.151860px;}
.y54_c00498{bottom:580.569213px;}
.y55_c00498{bottom:581.075553px;}
.y56_c00498{bottom:581.619821px;}
.y57_c00498{bottom:582.195714px;}
.y58_c00498{bottom:582.721752px;}
.y59_c00498{bottom:583.480800px;}
.y47_c00498{bottom:601.830845px;}
.y48_c00498{bottom:602.305781px;}
.y49_c00498{bottom:602.792828px;}
.y4a_c00498{bottom:603.369074px;}
.y4b_c00498{bottom:603.606459px;}
.y4c_c00498{bottom:603.932977px;}
.y4d_c00498{bottom:604.206234px;}
.y4e_c00498{bottom:604.516302px;}
.y4f_c00498{bottom:605.382997px;}
.y50_c00498{bottom:605.665494px;}
.y3c_c00498{bottom:624.241500px;}
.y3d_c00498{bottom:624.496904px;}
.y3e_c00498{bottom:624.728844px;}
.y3f_c00498{bottom:625.165335px;}
.y40_c00498{bottom:625.751332px;}
.y41_c00498{bottom:626.575937px;}
.y42_c00498{bottom:626.599135px;}
.y43_c00498{bottom:626.695017px;}
.y44_c00498{bottom:627.263557px;}
.y45_c00498{bottom:627.725508px;}
.y46_c00498{bottom:628.256000px;}
.y31_c00498{bottom:647.191500px;}
.y32_c00498{bottom:647.362080px;}
.y33_c00498{bottom:647.494320px;}
.y34_c00498{bottom:647.734710px;}
.y35_c00498{bottom:647.996490px;}
.y36_c00498{bottom:648.563685px;}
.y37_c00498{bottom:648.741930px;}
.y38_c00498{bottom:649.267950px;}
.y39_c00498{bottom:649.673355px;}
.y3a_c00498{bottom:649.897545px;}
.y3b_c00498{bottom:650.526675px;}
.y30_c00498{bottom:671.605500px;}
.y27_c00498{bottom:694.023480px;}
.y29_c00498{bottom:694.023735px;}
.y28_c00498{bottom:694.024050px;}
.y2a_c00498{bottom:694.024305px;}
.y2c_c00498{bottom:694.024875px;}
.y2b_c00498{bottom:694.024890px;}
.y2d_c00498{bottom:694.025160px;}
.y2f_c00498{bottom:694.025415px;}
.y2e_c00498{bottom:694.025730px;}
.y1e_c00498{bottom:714.961500px;}
.y1f_c00498{bottom:715.196040px;}
.y20_c00498{bottom:715.442130px;}
.y21_c00498{bottom:716.025510px;}
.y22_c00498{bottom:716.560455px;}
.y23_c00498{bottom:716.841270px;}
.y24_c00498{bottom:717.397710px;}
.y25_c00498{bottom:718.252005px;}
.y26_c00498{bottom:718.636605px;}
.y13_c00498{bottom:737.911884px;}
.y14_c00498{bottom:738.287220px;}
.y15_c00498{bottom:738.761820px;}
.y16_c00498{bottom:739.137408px;}
.y17_c00498{bottom:739.512336px;}
.y18_c00498{bottom:739.720428px;}
.y19_c00498{bottom:740.125740px;}
.y1a_c00498{bottom:740.538744px;}
.y1b_c00498{bottom:740.800704px;}
.y1c_c00498{bottom:740.997420px;}
.y1d_c00498{bottom:741.394620px;}
.y9_c00498{bottom:761.131500px;}
.ya_c00498{bottom:761.470632px;}
.yb_c00498{bottom:761.991204px;}
.yc_c00498{bottom:762.161904px;}
.yd_c00498{bottom:762.723504px;}
.ye_c00498{bottom:762.941652px;}
.yf_c00498{bottom:763.274304px;}
.y10_c00498{bottom:763.671732px;}
.y11_c00498{bottom:764.006268px;}
.y12_c00498{bottom:764.252796px;}
.y8_c00498{bottom:784.977000px;}
.y7_c00498{bottom:808.081500px;}
.y3_c00498{bottom:857.154000px;}
.y4_c00498{bottom:859.440300px;}
.y5_c00498{bottom:860.137785px;}
.y6_c00498{bottom:860.803890px;}
.y1_c00498{bottom:896.668500px;}
.y2_c00498{bottom:899.509143px;}
.h1f_c00498{height:34.650000px;}
.h1a_c00498{height:48.300000px;}
.h19_c00498{height:48.303477px;}
.h1d_c00498{height:49.354170px;}
.h1c_c00498{height:50.404259px;}
.h1b_c00498{height:51.450000px;}
.h18_c00498{height:51.453704px;}
.h1e_c00498{height:51.454347px;}
.hf_c00498{height:61.953748px;}
.h13_c00498{height:61.956071px;}
.h8_c00498{height:63.003150px;}
.h12_c00498{height:67.206585px;}
.h6_c00498{height:68.252184px;}
.h9_c00498{height:68.253412px;}
.he_c00498{height:68.254914px;}
.h16_c00498{height:68.257678px;}
.h4_c00498{height:69.300000px;}
.hb_c00498{height:69.304193px;}
.h15_c00498{height:69.307796px;}
.h11_c00498{height:69.319956px;}
.h5_c00498{height:70.350000px;}
.ha_c00498{height:70.353517px;}
.h7_c00498{height:71.402285px;}
.hd_c00498{height:71.404320px;}
.h14_c00498{height:71.406997px;}
.hc_c00498{height:72.454383px;}
.h17_c00498{height:72.458150px;}
.h10_c00498{height:73.503675px;}
.h3_c00498{height:121.806090px;}
.h2_c00498{height:185.857527px;}
.h1_c00498{height:1005.000000px;}
.h0_c00498{height:1005.150000px;}
.w0_c00498{width:715.200000px;}
.w1_c00498{width:715.500000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:42.499500px;}
.x92_c00498{left:103.680000px;}
.x97_c00498{left:108.183000px;}
.x8a_c00498{left:110.011500px;}
.x94_c00498{left:119.761500px;}
.x8b_c00498{left:121.084500px;}
.x9d_c00498{left:122.422088px;}
.xa6_c00498{left:125.666529px;}
.x83_c00498{left:130.218773px;}
.x71_c00498{left:133.972500px;}
.x52_c00498{left:135.514635px;}
.x8c_c00498{left:138.633000px;}
.x93_c00498{left:141.480000px;}
.x7_c00498{left:142.830000px;}
.x78_c00498{left:143.830500px;}
.xa3_c00498{left:147.025690px;}
.x65_c00498{left:149.280000px;}
.x95_c00498{left:153.276000px;}
.x98_c00498{left:155.706000px;}
.x40_c00498{left:159.162000px;}
.xa7_c00498{left:161.324529px;}
.x29_c00498{left:165.606000px;}
.x38_c00498{left:167.400000px;}
.x11_c00498{left:168.750000px;}
.x79_c00498{left:170.562000px;}
.x41_c00498{left:172.386000px;}
.x8_c00498{left:175.770000px;}
.x53_c00498{left:178.656678px;}
.x21_c00498{left:179.961612px;}
.x3_c00498{left:186.276000px;}
.x30_c00498{left:187.920930px;}
.x2a_c00498{left:190.215000px;}
.x12_c00498{left:191.700000px;}
.x8d_c00498{left:193.992000px;}
.x7c_c00498{left:195.054487px;}
.x42_c00498{left:196.425000px;}
.x9e_c00498{left:197.795063px;}
.x66_c00498{left:200.305500px;}
.x5c_c00498{left:204.760500px;}
.x99_c00498{left:209.449500px;}
.x69_c00498{left:211.907679px;}
.x31_c00498{left:213.842025px;}
.x7a_c00498{left:214.849500px;}
.x57_c00498{left:215.904000px;}
.x43_c00498{left:222.603000px;}
.x61_c00498{left:223.651500px;}
.x49_c00498{left:225.877500px;}
.x22_c00498{left:227.473356px;}
.x13_c00498{left:230.580000px;}
.x54_c00498{left:233.193973px;}
.x39_c00498{left:234.630000px;}
.x84_c00498{left:236.426370px;}
.x9_c00498{left:240.300000px;}
.x72_c00498{left:244.197000px;}
.x62_c00498{left:247.459500px;}
.x2b_c00498{left:248.553000px;}
.x19_c00498{left:250.399500px;}
.xa8_c00498{left:251.809029px;}
.x5d_c00498{left:253.153500px;}
.x7d_c00498{left:254.735865px;}
.x6a_c00498{left:257.148720px;}
.x14_c00498{left:260.550000px;}
.x32_c00498{left:261.903825px;}
.x23_c00498{left:265.046256px;}
.x58_c00498{left:269.899500px;}
.x1a_c00498{left:271.737000px;}
.x3a_c00498{left:276.750000px;}
.x44_c00498{left:279.322500px;}
.xa_c00498{left:282.420000px;}
.x33_c00498{left:287.014830px;}
.x8e_c00498{left:289.266000px;}
.x3b_c00498{left:290.790000px;}
.x73_c00498{left:295.297500px;}
.x45_c00498{left:297.147000px;}
.x59_c00498{left:298.254000px;}
.x24_c00498{left:302.536656px;}
.x4f_c00498{left:303.908059px;}
.x6b_c00498{left:308.996118px;}
.x3c_c00498{left:310.230000px;}
.xb_c00498{left:314.010000px;}
.x6e_c00498{left:317.996547px;}
.xa4_c00498{left:320.952952px;}
.x25_c00498{left:323.297820px;}
.x34_c00498{left:324.817110px;}
.x85_c00498{left:327.431243px;}
.x2c_c00498{left:330.129000px;}
.x5e_c00498{left:331.713000px;}
.x50_c00498{left:333.591560px;}
.x15_c00498{left:338.580000px;}
.x74_c00498{left:340.060500px;}
.x1b_c00498{left:341.937000px;}
.x5a_c00498{left:344.368500px;}
.x55_c00498{left:346.051482px;}
.x6c_c00498{left:347.921802px;}
.x46_c00498{left:349.749000px;}
.x6f_c00498{left:351.223623px;}
.x9f_c00498{left:352.238551px;}
.x4a_c00498{left:354.114000px;}
.x4b_c00498{left:356.223000px;}
.x2_c00498{left:358.126500px;}
.x75_c00498{left:359.319000px;}
.xc_c00498{left:363.150000px;}
.x35_c00498{left:365.049630px;}
.x86_c00498{left:367.148828px;}
.x1c_c00498{left:369.205500px;}
.x3d_c00498{left:372.060000px;}
.x16_c00498{left:375.030000px;}
.x96_c00498{left:379.710000px;}
.x2d_c00498{left:385.773000px;}
.x63_c00498{left:388.119000px;}
.x47_c00498{left:390.289500px;}
.x76_c00498{left:391.446000px;}
.x7e_c00498{left:394.041398px;}
.x5b_c00498{left:395.229000px;}
.x17_c00498{left:398.520000px;}
.xd_c00498{left:400.950000px;}
.x3e_c00498{left:402.030000px;}
.x67_c00498{left:403.594500px;}
.x26_c00498{left:405.148512px;}
.x7f_c00498{left:408.672225px;}
.x1d_c00498{left:410.787000px;}
.x36_c00498{left:413.111430px;}
.x4_c00498{left:414.906000px;}
.x4c_c00498{left:416.625000px;}
.x70_c00498{left:420.083691px;}
.x6d_c00498{left:424.124565px;}
.x5f_c00498{left:426.444000px;}
.x7b_c00498{left:427.839000px;}
.x27_c00498{left:431.330592px;}
.x37_c00498{left:434.982120px;}
.x3f_c00498{left:437.670000px;}
.x77_c00498{left:439.779000px;}
.x80_c00498{left:441.070650px;}
.xe_c00498{left:444.690000px;}
.x18_c00498{left:449.550000px;}
.x28_c00498{left:451.044780px;}
.x68_c00498{left:453.015000px;}
.xa0_c00498{left:454.857897px;}
.x8f_c00498{left:457.525500px;}
.x4d_c00498{left:458.620500px;}
.x1e_c00498{left:460.465500px;}
.x9a_c00498{left:461.872500px;}
.x51_c00498{left:465.411559px;}
.x87_c00498{left:466.796813px;}
.xa1_c00498{left:469.193592px;}
.x2e_c00498{left:471.202500px;}
.x48_c00498{left:475.621500px;}
.x64_c00498{left:483.198000px;}
.x5_c00498{left:484.654500px;}
.x56_c00498{left:489.182831px;}
.xf_c00498{left:491.670000px;}
.x60_c00498{left:497.518500px;}
.x1f_c00498{left:502.282500px;}
.x81_c00498{left:505.604955px;}
.x4e_c00498{left:506.847000px;}
.x2f_c00498{left:509.662500px;}
.x90_c00498{left:525.579000px;}
.xa2_c00498{left:531.520891px;}
.x20_c00498{left:533.098500px;}
.x91_c00498{left:536.250366px;}
.x82_c00498{left:540.730605px;}
.x10_c00498{left:545.130000px;}
.x6_c00498{left:551.265000px;}
.x88_c00498{left:560.575230px;}
.xa5_c00498{left:565.201131px;}
.x9b_c00498{left:578.235000px;}
.x9c_c00498{left:579.528000px;}
.x89_c00498{left:583.306568px;}
.xa9_c00498{left:638.010000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fs1d_c00498{font-size:30.800000pt;}
.fs18_c00498{font-size:42.933333pt;}
.fs17_c00498{font-size:42.936424pt;}
.fs1b_c00498{font-size:43.870373pt;}
.fs1a_c00498{font-size:44.803785pt;}
.fs19_c00498{font-size:45.733333pt;}
.fs16_c00498{font-size:45.736626pt;}
.fs1c_c00498{font-size:45.737198pt;}
.fsd_c00498{font-size:55.069998pt;}
.fs11_c00498{font-size:55.072063pt;}
.fs6_c00498{font-size:56.002800pt;}
.fs10_c00498{font-size:59.739187pt;}
.fs4_c00498{font-size:60.668608pt;}
.fs7_c00498{font-size:60.669700pt;}
.fsc_c00498{font-size:60.671035pt;}
.fs14_c00498{font-size:60.673491pt;}
.fs2_c00498{font-size:61.600000pt;}
.fs9_c00498{font-size:61.603727pt;}
.fs13_c00498{font-size:61.606930pt;}
.fsf_c00498{font-size:61.617738pt;}
.fs3_c00498{font-size:62.533333pt;}
.fs8_c00498{font-size:62.536460pt;}
.fs5_c00498{font-size:63.468698pt;}
.fsb_c00498{font-size:63.470506pt;}
.fs12_c00498{font-size:63.472886pt;}
.fsa_c00498{font-size:64.403896pt;}
.fs15_c00498{font-size:64.407245pt;}
.fse_c00498{font-size:65.336600pt;}
.fs1_c00498{font-size:108.272080pt;}
.fs0_c00498{font-size:165.206690pt;}
.y0_c00498{bottom:0.000000pt;}
.y10e_c00498{bottom:3.360000pt;}
.y103_c00498{bottom:128.157115pt;}
.y104_c00498{bottom:128.344627pt;}
.y105_c00498{bottom:128.756675pt;}
.y106_c00498{bottom:129.130589pt;}
.y107_c00498{bottom:129.331431pt;}
.y108_c00498{bottom:129.802273pt;}
.y109_c00498{bottom:130.210837pt;}
.y10a_c00498{bottom:130.619557pt;}
.y10b_c00498{bottom:130.903009pt;}
.y10c_c00498{bottom:131.419473pt;}
.y10d_c00498{bottom:131.921135pt;}
.yf8_c00498{bottom:144.239807pt;}
.yf9_c00498{bottom:144.651491pt;}
.yfa_c00498{bottom:145.083456pt;}
.yfb_c00498{bottom:145.463071pt;}
.yfc_c00498{bottom:145.647375pt;}
.yfd_c00498{bottom:145.909493pt;}
.yfe_c00498{bottom:146.371032pt;}
.yff_c00498{bottom:146.506624pt;}
.y100_c00498{bottom:146.903261pt;}
.y101_c00498{bottom:147.616883pt;}
.y102_c00498{bottom:149.111677pt;}
.ye8_c00498{bottom:160.164179pt;}
.ye9_c00498{bottom:160.308543pt;}
.yea_c00498{bottom:160.392980pt;}
.yeb_c00498{bottom:160.833041pt;}
.yec_c00498{bottom:161.112841pt;}
.yee_c00498{bottom:161.522617pt;}
.yed_c00498{bottom:161.535428pt;}
.yef_c00498{bottom:162.456285pt;}
.yf0_c00498{bottom:162.761499pt;}
.yf1_c00498{bottom:163.253755pt;}
.yf2_c00498{bottom:163.524489pt;}
.yf3_c00498{bottom:163.855307pt;}
.yf4_c00498{bottom:164.007628pt;}
.yf5_c00498{bottom:164.410540pt;}
.yf6_c00498{bottom:164.673179pt;}
.yf7_c00498{bottom:164.817421pt;}
.yd6_c00498{bottom:175.913333pt;}
.yd7_c00498{bottom:176.293904pt;}
.yd8_c00498{bottom:176.462488pt;}
.yd9_c00498{bottom:177.083524pt;}
.yda_c00498{bottom:177.694472pt;}
.ydb_c00498{bottom:177.803620pt;}
.ydc_c00498{bottom:178.240385pt;}
.ydd_c00498{bottom:178.676995pt;}
.yde_c00498{bottom:178.786385pt;}
.ydf_c00498{bottom:179.374800pt;}
.ye0_c00498{bottom:179.429140pt;}
.ye1_c00498{bottom:179.648129pt;}
.ye2_c00498{bottom:180.000412pt;}
.ye3_c00498{bottom:180.243633pt;}
.ye4_c00498{bottom:180.506251pt;}
.ye5_c00498{bottom:180.825028pt;}
.ye6_c00498{bottom:181.345045pt;}
.ye7_c00498{bottom:181.359987pt;}
.ycb_c00498{bottom:192.001333pt;}
.ycc_c00498{bottom:192.298667pt;}
.ycd_c00498{bottom:192.622667pt;}
.yce_c00498{bottom:192.942667pt;}
.ycf_c00498{bottom:193.350667pt;}
.yd0_c00498{bottom:193.624000pt;}
.yd1_c00498{bottom:193.980000pt;}
.yd2_c00498{bottom:194.109333pt;}
.yd3_c00498{bottom:194.313333pt;}
.yd4_c00498{bottom:194.702667pt;}
.yd5_c00498{bottom:194.885333pt;}
.yca_c00498{bottom:207.593333pt;}
.yc4_c00498{bottom:211.137136pt;}
.yc8_c00498{bottom:211.137520pt;}
.yc9_c00498{bottom:211.137541pt;}
.yc5_c00498{bottom:211.137584pt;}
.yc7_c00498{bottom:211.137963pt;}
.yc6_c00498{bottom:211.138155pt;}
.yb3_c00498{bottom:222.842667pt;}
.yb4_c00498{bottom:222.960779pt;}
.yb5_c00498{bottom:223.147963pt;}
.yb6_c00498{bottom:223.450171pt;}
.yb7_c00498{bottom:223.738459pt;}
.yb8_c00498{bottom:223.931755pt;}
.yb9_c00498{bottom:224.306267pt;}
.yba_c00498{bottom:224.754715pt;}
.ybb_c00498{bottom:224.973995pt;}
.ybc_c00498{bottom:225.161003pt;}
.ybd_c00498{bottom:225.343019pt;}
.ybe_c00498{bottom:225.446555pt;}
.ybf_c00498{bottom:225.863947pt;}
.yc0_c00498{bottom:226.267259pt;}
.yc1_c00498{bottom:226.549483pt;}
.yc2_c00498{bottom:227.096395pt;}
.yc3_c00498{bottom:227.275387pt;}
.ya8_c00498{bottom:281.277480pt;}
.ya9_c00498{bottom:281.443220pt;}
.yaa_c00498{bottom:281.758373pt;}
.yab_c00498{bottom:282.598893pt;}
.yac_c00498{bottom:283.234700pt;}
.yad_c00498{bottom:283.730940pt;}
.yae_c00498{bottom:284.225833pt;}
.yaf_c00498{bottom:284.941087pt;}
.yb0_c00498{bottom:285.466453pt;}
.yb1_c00498{bottom:286.632813pt;}
.yb2_c00498{bottom:286.915893pt;}
.y9e_c00498{bottom:301.919467pt;}
.y9f_c00498{bottom:302.341167pt;}
.ya0_c00498{bottom:302.818180pt;}
.ya1_c00498{bottom:303.492087pt;}
.ya2_c00498{bottom:303.932753pt;}
.ya3_c00498{bottom:304.049147pt;}
.ya4_c00498{bottom:304.307753pt;}
.ya5_c00498{bottom:304.495220pt;}
.ya6_c00498{bottom:304.824133pt;}
.ya7_c00498{bottom:305.105767pt;}
.y95_c00498{bottom:321.602667pt;}
.y96_c00498{bottom:321.959087pt;}
.y97_c00498{bottom:322.254207pt;}
.y98_c00498{bottom:322.549587pt;}
.y99_c00498{bottom:323.027627pt;}
.y9a_c00498{bottom:323.806227pt;}
.y9b_c00498{bottom:325.059147pt;}
.y9c_c00498{bottom:325.389447pt;}
.y9d_c00498{bottom:325.706267pt;}
.y8b_c00498{bottom:341.760000pt;}
.y8c_c00498{bottom:341.862387pt;}
.y8d_c00498{bottom:342.412717pt;}
.y8e_c00498{bottom:343.131683pt;}
.y8f_c00498{bottom:343.461915pt;}
.y90_c00498{bottom:343.767600pt;}
.y91_c00498{bottom:344.324651pt;}
.y92_c00498{bottom:344.564312pt;}
.y93_c00498{bottom:344.964115pt;}
.y94_c00498{bottom:345.565592pt;}
.y84_c00498{bottom:362.397941pt;}
.y85_c00498{bottom:362.996805pt;}
.y86_c00498{bottom:363.442565pt;}
.y87_c00498{bottom:364.882565pt;}
.y88_c00498{bottom:365.354736pt;}
.y89_c00498{bottom:365.662483pt;}
.y8a_c00498{bottom:366.334352pt;}
.y7b_c00498{bottom:382.559352pt;}
.y7c_c00498{bottom:383.176859pt;}
.y7d_c00498{bottom:383.578493pt;}
.y7e_c00498{bottom:384.039669pt;}
.y7f_c00498{bottom:384.385384pt;}
.y80_c00498{bottom:384.630416pt;}
.y81_c00498{bottom:385.062965pt;}
.y82_c00498{bottom:385.429837pt;}
.y83_c00498{bottom:385.708456pt;}
.y77_c00498{bottom:402.000000pt;}
.y78_c00498{bottom:402.634984pt;}
.y79_c00498{bottom:405.164803pt;}
.y7a_c00498{bottom:405.779813pt;}
.y76_c00498{bottom:429.370667pt;}
.y6c_c00498{bottom:453.841333pt;}
.y6d_c00498{bottom:454.222680pt;}
.y6e_c00498{bottom:454.553747pt;}
.y6f_c00498{bottom:454.765373pt;}
.y70_c00498{bottom:455.070280pt;}
.y71_c00498{bottom:455.807013pt;}
.y72_c00498{bottom:456.015680pt;}
.y73_c00498{bottom:456.349093pt;}
.y74_c00498{bottom:456.567507pt;}
.y75_c00498{bottom:456.860827pt;}
.y63_c00498{bottom:474.241333pt;}
.y64_c00498{bottom:474.842608pt;}
.y65_c00498{bottom:475.091311pt;}
.y66_c00498{bottom:475.315784pt;}
.y67_c00498{bottom:476.083921pt;}
.y68_c00498{bottom:476.303203pt;}
.y69_c00498{bottom:477.010180pt;}
.y6a_c00498{bottom:477.398788pt;}
.y6b_c00498{bottom:477.705131pt;}
.y5a_c00498{bottom:494.641333pt;}
.y5b_c00498{bottom:494.920261pt;}
.y5c_c00498{bottom:495.419125pt;}
.y5d_c00498{bottom:495.995077pt;}
.y5e_c00498{bottom:496.297525pt;}
.y5f_c00498{bottom:496.789413pt;}
.y60_c00498{bottom:497.051477pt;}
.y61_c00498{bottom:497.331925pt;}
.y62_c00498{bottom:497.864341pt;}
.y51_c00498{bottom:514.560768pt;}
.y52_c00498{bottom:515.059944pt;}
.y53_c00498{bottom:515.690543pt;}
.y54_c00498{bottom:516.061523pt;}
.y55_c00498{bottom:516.511603pt;}
.y56_c00498{bottom:516.995396pt;}
.y57_c00498{bottom:517.507301pt;}
.y58_c00498{bottom:517.974891pt;}
.y59_c00498{bottom:518.649600pt;}
.y47_c00498{bottom:534.960751pt;}
.y48_c00498{bottom:535.382916pt;}
.y49_c00498{bottom:535.815847pt;}
.y4a_c00498{bottom:536.328065pt;}
.y4b_c00498{bottom:536.539075pt;}
.y4c_c00498{bottom:536.829313pt;}
.y4d_c00498{bottom:537.072208pt;}
.y4e_c00498{bottom:537.347824pt;}
.y4f_c00498{bottom:538.118220pt;}
.y50_c00498{bottom:538.369328pt;}
.y3c_c00498{bottom:554.881333pt;}
.y3d_c00498{bottom:555.108359pt;}
.y3e_c00498{bottom:555.314528pt;}
.y3f_c00498{bottom:555.702520pt;}
.y40_c00498{bottom:556.223407pt;}
.y41_c00498{bottom:556.956388pt;}
.y42_c00498{bottom:556.977009pt;}
.y43_c00498{bottom:557.062237pt;}
.y44_c00498{bottom:557.567607pt;}
.y45_c00498{bottom:557.978229pt;}
.y46_c00498{bottom:558.449777pt;}
.y31_c00498{bottom:575.281333pt;}
.y32_c00498{bottom:575.432960pt;}
.y33_c00498{bottom:575.550507pt;}
.y34_c00498{bottom:575.764187pt;}
.y35_c00498{bottom:575.996880pt;}
.y36_c00498{bottom:576.501053pt;}
.y37_c00498{bottom:576.659493pt;}
.y38_c00498{bottom:577.127067pt;}
.y39_c00498{bottom:577.487427pt;}
.y3a_c00498{bottom:577.686707pt;}
.y3b_c00498{bottom:578.245933pt;}
.y30_c00498{bottom:596.982667pt;}
.y27_c00498{bottom:616.909760pt;}
.y29_c00498{bottom:616.909987pt;}
.y28_c00498{bottom:616.910267pt;}
.y2a_c00498{bottom:616.910493pt;}
.y2c_c00498{bottom:616.911000pt;}
.y2b_c00498{bottom:616.911013pt;}
.y2d_c00498{bottom:616.911253pt;}
.y2f_c00498{bottom:616.911480pt;}
.y2e_c00498{bottom:616.911760pt;}
.y1e_c00498{bottom:635.521333pt;}
.y1f_c00498{bottom:635.729813pt;}
.y20_c00498{bottom:635.948560pt;}
.y21_c00498{bottom:636.467120pt;}
.y22_c00498{bottom:636.942627pt;}
.y23_c00498{bottom:637.192240pt;}
.y24_c00498{bottom:637.686853pt;}
.y25_c00498{bottom:638.446227pt;}
.y26_c00498{bottom:638.788093pt;}
.y13_c00498{bottom:655.921675pt;}
.y14_c00498{bottom:656.255307pt;}
.y15_c00498{bottom:656.677173pt;}
.y16_c00498{bottom:657.011029pt;}
.y17_c00498{bottom:657.344299pt;}
.y18_c00498{bottom:657.529269pt;}
.y19_c00498{bottom:657.889547pt;}
.y1a_c00498{bottom:658.256661pt;}
.y1b_c00498{bottom:658.489515pt;}
.y1c_c00498{bottom:658.664373pt;}
.y1d_c00498{bottom:659.017440pt;}
.y9_c00498{bottom:676.561333pt;}
.ya_c00498{bottom:676.862784pt;}
.yb_c00498{bottom:677.325515pt;}
.yc_c00498{bottom:677.477248pt;}
.yd_c00498{bottom:677.976448pt;}
.ye_c00498{bottom:678.170357pt;}
.yf_c00498{bottom:678.466048pt;}
.y10_c00498{bottom:678.819317pt;}
.y11_c00498{bottom:679.116683pt;}
.y12_c00498{bottom:679.335819pt;}
.y8_c00498{bottom:697.757333pt;}
.y7_c00498{bottom:718.294667pt;}
.y3_c00498{bottom:761.914667pt;}
.y4_c00498{bottom:763.946933pt;}
.y5_c00498{bottom:764.566920pt;}
.y6_c00498{bottom:765.159013pt;}
.y1_c00498{bottom:797.038667pt;}
.y2_c00498{bottom:799.563683pt;}
.h1f_c00498{height:30.800000pt;}
.h1a_c00498{height:42.933333pt;}
.h19_c00498{height:42.936424pt;}
.h1d_c00498{height:43.870373pt;}
.h1c_c00498{height:44.803785pt;}
.h1b_c00498{height:45.733333pt;}
.h18_c00498{height:45.736626pt;}
.h1e_c00498{height:45.737198pt;}
.hf_c00498{height:55.069998pt;}
.h13_c00498{height:55.072063pt;}
.h8_c00498{height:56.002800pt;}
.h12_c00498{height:59.739187pt;}
.h6_c00498{height:60.668608pt;}
.h9_c00498{height:60.669700pt;}
.he_c00498{height:60.671035pt;}
.h16_c00498{height:60.673491pt;}
.h4_c00498{height:61.600000pt;}
.hb_c00498{height:61.603727pt;}
.h15_c00498{height:61.606930pt;}
.h11_c00498{height:61.617738pt;}
.h5_c00498{height:62.533333pt;}
.ha_c00498{height:62.536460pt;}
.h7_c00498{height:63.468698pt;}
.hd_c00498{height:63.470506pt;}
.h14_c00498{height:63.472886pt;}
.hc_c00498{height:64.403896pt;}
.h17_c00498{height:64.407245pt;}
.h10_c00498{height:65.336600pt;}
.h3_c00498{height:108.272080pt;}
.h2_c00498{height:165.206690pt;}
.h1_c00498{height:893.333333pt;}
.h0_c00498{height:893.466667pt;}
.w0_c00498{width:635.733333pt;}
.w1_c00498{width:636.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:37.777333pt;}
.x92_c00498{left:92.160000pt;}
.x97_c00498{left:96.162667pt;}
.x8a_c00498{left:97.788000pt;}
.x94_c00498{left:106.454667pt;}
.x8b_c00498{left:107.630667pt;}
.x9d_c00498{left:108.819633pt;}
.xa6_c00498{left:111.703581pt;}
.x83_c00498{left:115.750020pt;}
.x71_c00498{left:119.086667pt;}
.x52_c00498{left:120.457453pt;}
.x8c_c00498{left:123.229333pt;}
.x93_c00498{left:125.760000pt;}
.x7_c00498{left:126.960000pt;}
.x78_c00498{left:127.849333pt;}
.xa3_c00498{left:130.689503pt;}
.x65_c00498{left:132.693333pt;}
.x95_c00498{left:136.245333pt;}
.x98_c00498{left:138.405333pt;}
.x40_c00498{left:141.477333pt;}
.xa7_c00498{left:143.399581pt;}
.x29_c00498{left:147.205333pt;}
.x38_c00498{left:148.800000pt;}
.x11_c00498{left:150.000000pt;}
.x79_c00498{left:151.610667pt;}
.x41_c00498{left:153.232000pt;}
.x8_c00498{left:156.240000pt;}
.x53_c00498{left:158.805936pt;}
.x21_c00498{left:159.965877pt;}
.x3_c00498{left:165.578667pt;}
.x30_c00498{left:167.040827pt;}
.x2a_c00498{left:169.080000pt;}
.x12_c00498{left:170.400000pt;}
.x8d_c00498{left:172.437333pt;}
.x7c_c00498{left:173.381767pt;}
.x42_c00498{left:174.600000pt;}
.x9e_c00498{left:175.817833pt;}
.x66_c00498{left:178.049333pt;}
.x5c_c00498{left:182.009333pt;}
.x99_c00498{left:186.177333pt;}
.x69_c00498{left:188.362381pt;}
.x31_c00498{left:190.081800pt;}
.x7a_c00498{left:190.977333pt;}
.x57_c00498{left:191.914667pt;}
.x43_c00498{left:197.869333pt;}
.x61_c00498{left:198.801333pt;}
.x49_c00498{left:200.780000pt;}
.x22_c00498{left:202.198539pt;}
.x13_c00498{left:204.960000pt;}
.x54_c00498{left:207.283532pt;}
.x39_c00498{left:208.560000pt;}
.x84_c00498{left:210.156773pt;}
.x9_c00498{left:213.600000pt;}
.x72_c00498{left:217.064000pt;}
.x62_c00498{left:219.964000pt;}
.x2b_c00498{left:220.936000pt;}
.x19_c00498{left:222.577333pt;}
.xa8_c00498{left:223.830248pt;}
.x5d_c00498{left:225.025333pt;}
.x7d_c00498{left:226.431880pt;}
.x6a_c00498{left:228.576640pt;}
.x14_c00498{left:231.600000pt;}
.x32_c00498{left:232.803400pt;}
.x23_c00498{left:235.596672pt;}
.x58_c00498{left:239.910667pt;}
.x1a_c00498{left:241.544000pt;}
.x3a_c00498{left:246.000000pt;}
.x44_c00498{left:248.286667pt;}
.xa_c00498{left:251.040000pt;}
.x33_c00498{left:255.124293pt;}
.x8e_c00498{left:257.125333pt;}
.x3b_c00498{left:258.480000pt;}
.x73_c00498{left:262.486667pt;}
.x45_c00498{left:264.130667pt;}
.x59_c00498{left:265.114667pt;}
.x24_c00498{left:268.921472pt;}
.x4f_c00498{left:270.140497pt;}
.x6b_c00498{left:274.663216pt;}
.x3c_c00498{left:275.760000pt;}
.xb_c00498{left:279.120000pt;}
.x6e_c00498{left:282.663597pt;}
.xa4_c00498{left:285.291513pt;}
.x25_c00498{left:287.375840pt;}
.x34_c00498{left:288.726320pt;}
.x85_c00498{left:291.049993pt;}
.x2c_c00498{left:293.448000pt;}
.x5e_c00498{left:294.856000pt;}
.x50_c00498{left:296.525831pt;}
.x15_c00498{left:300.960000pt;}
.x74_c00498{left:302.276000pt;}
.x1b_c00498{left:303.944000pt;}
.x5a_c00498{left:306.105333pt;}
.x55_c00498{left:307.601317pt;}
.x6c_c00498{left:309.263824pt;}
.x46_c00498{left:310.888000pt;}
.x6f_c00498{left:312.198776pt;}
.x9f_c00498{left:313.100935pt;}
.x4a_c00498{left:314.768000pt;}
.x4b_c00498{left:316.642667pt;}
.x2_c00498{left:318.334667pt;}
.x75_c00498{left:319.394667pt;}
.xc_c00498{left:322.800000pt;}
.x35_c00498{left:324.488560pt;}
.x86_c00498{left:326.354513pt;}
.x1c_c00498{left:328.182667pt;}
.x3d_c00498{left:330.720000pt;}
.x16_c00498{left:333.360000pt;}
.x96_c00498{left:337.520000pt;}
.x2d_c00498{left:342.909333pt;}
.x63_c00498{left:344.994667pt;}
.x47_c00498{left:346.924000pt;}
.x76_c00498{left:347.952000pt;}
.x7e_c00498{left:350.259020pt;}
.x5b_c00498{left:351.314667pt;}
.x17_c00498{left:354.240000pt;}
.xd_c00498{left:356.400000pt;}
.x3e_c00498{left:357.360000pt;}
.x67_c00498{left:358.750667pt;}
.x26_c00498{left:360.132011pt;}
.x7f_c00498{left:363.264200pt;}
.x1d_c00498{left:365.144000pt;}
.x36_c00498{left:367.210160pt;}
.x4_c00498{left:368.805333pt;}
.x4c_c00498{left:370.333333pt;}
.x70_c00498{left:373.407725pt;}
.x6d_c00498{left:376.999613pt;}
.x5f_c00498{left:379.061333pt;}
.x7b_c00498{left:380.301333pt;}
.x27_c00498{left:383.404971pt;}
.x37_c00498{left:386.650773pt;}
.x3f_c00498{left:389.040000pt;}
.x77_c00498{left:390.914667pt;}
.x80_c00498{left:392.062800pt;}
.xe_c00498{left:395.280000pt;}
.x18_c00498{left:399.600000pt;}
.x28_c00498{left:400.928693pt;}
.x68_c00498{left:402.680000pt;}
.xa0_c00498{left:404.318131pt;}
.x8f_c00498{left:406.689333pt;}
.x4d_c00498{left:407.662667pt;}
.x1e_c00498{left:409.302667pt;}
.x9a_c00498{left:410.553333pt;}
.x51_c00498{left:413.699164pt;}
.x87_c00498{left:414.930500pt;}
.xa1_c00498{left:417.060971pt;}
.x2e_c00498{left:418.846667pt;}
.x48_c00498{left:422.774667pt;}
.x64_c00498{left:429.509333pt;}
.x5_c00498{left:430.804000pt;}
.x56_c00498{left:434.829183pt;}
.xf_c00498{left:437.040000pt;}
.x60_c00498{left:442.238667pt;}
.x1f_c00498{left:446.473333pt;}
.x81_c00498{left:449.426627pt;}
.x4e_c00498{left:450.530667pt;}
.x2f_c00498{left:453.033333pt;}
.x90_c00498{left:467.181333pt;}
.xa2_c00498{left:472.463015pt;}
.x20_c00498{left:473.865333pt;}
.x91_c00498{left:476.666992pt;}
.x82_c00498{left:480.649427pt;}
.x10_c00498{left:484.560000pt;}
.x6_c00498{left:490.013333pt;}
.x88_c00498{left:498.289093pt;}
.xa5_c00498{left:502.401005pt;}
.x9b_c00498{left:513.986667pt;}
.x9c_c00498{left:515.136000pt;}
.x89_c00498{left:518.494727pt;}
.xa9_c00498{left:567.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_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_7b27c95a9cb4dd3f7cd72c03.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;}
.mfe_c00499{transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016160,0.000000,0.000000,0.250000,0,0);}
.m12f_c00499{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.031270,0.000532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.031270,0.000532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.031270,0.000532,-0.004249,0.249964,0,0);}
.m127_c00499{transform:matrix(0.033190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033190,0.000000,0.000000,0.250000,0,0);}
.mc2_c00499{transform:matrix(0.045583,0.000775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.045583,0.000775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.045583,0.000775,-0.004249,0.249964,0,0);}
.m115_c00499{transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072670,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087055,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.099260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099260,0.000000,0.000000,0.250000,0,0);}
.mbf_c00499{transform:matrix(0.104300,0.001773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.104300,0.001773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.104300,0.001773,-0.004249,0.249964,0,0);}
.m7b_c00499{transform:matrix(0.112430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112430,0.000000,0.000000,0.250000,0,0);}
.m10b_c00499{transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);}
.m10d_c00499{transform:matrix(0.120480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120480,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{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);}
.m4a_c00499{transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140745,0.000000,0.000000,0.250000,0,0);}
.m8d_c00499{transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142295,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{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);}
.m114_c00499{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146490,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.m11e_c00499{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);}
.m8_c00499{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);}
.m42_c00499{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);}
.m51_c00499{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);}
.m91_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);}
.m5a_c00499{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);}
.m96_c00499{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);}
.m103_c00499{transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157440,0.000000,0.000000,0.250000,0,0);}
.m120_c00499{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);}
.m26_c00499{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);}
.mba_c00499{transform:matrix(0.158162,0.002689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158162,0.002689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158162,0.002689,-0.004249,0.249964,0,0);}
.me_c00499{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);}
.m49_c00499{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);}
.ma1_c00499{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);}
.m11a_c00499{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{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);}
.mb0_c00499{transform:matrix(0.160707,0.002732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160707,0.002732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160707,0.002732,-0.004249,0.249964,0,0);}
.m0_c00499{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);}
.m93_c00499{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);}
.m119_c00499{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);}
.m3f_c00499{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);}
.m9d_c00499{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);}
.mb4_c00499{transform:matrix(0.164216,0.002792,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164216,0.002792,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164216,0.002792,-0.004249,0.249964,0,0);}
.mae_c00499{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);}
.mc9_c00499{transform:matrix(0.164754,0.002307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164754,0.002307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164754,0.002307,-0.003500,0.249976,0,0);}
.m82_c00499{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);}
.mc_c00499{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);}
.m9_c00499{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);}
.m57_c00499{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);}
.m72_c00499{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);}
.m3_c00499{transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169465,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{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);}
.m46_c00499{transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);}
.m8f_c00499{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);}
.m1d_c00499{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);}
.ma2_c00499{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);}
.md6_c00499{transform:matrix(0.172703,0.002418,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172703,0.002418,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172703,0.002418,-0.003500,0.249976,0,0);}
.mfa_c00499{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);}
.m73_c00499{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);}
.mb6_c00499{transform:matrix(0.173495,0.002949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173495,0.002949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173495,0.002949,-0.004249,0.249964,0,0);}
.m48_c00499{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);}
.m105_c00499{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);}
.mc5_c00499{transform:matrix(0.175168,0.002452,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175168,0.002452,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175168,0.002452,-0.003500,0.249976,0,0);}
.m9b_c00499{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);}
.m19_c00499{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);}
.m7_c00499{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);}
.m76_c00499{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);}
.md_c00499{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);}
.m1e_c00499{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);}
.mde_c00499{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);}
.ma5_c00499{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);}
.m8e_c00499{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);}
.maf_c00499{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);}
.m4f_c00499{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);}
.ma6_c00499{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);}
.m7f_c00499{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);}
.m11_c00499{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);}
.md5_c00499{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);}
.mcb_c00499{transform:matrix(0.182802,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182802,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182802,0.002559,-0.003500,0.249976,0,0);}
.m28_c00499{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);}
.m24_c00499{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);}
.m10_c00499{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);}
.m37_c00499{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);}
.m4c_c00499{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);}
.mf8_c00499{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);}
.m9a_c00499{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);}
.m41_c00499{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);}
.m71_c00499{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);}
.me4_c00499{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);}
.mf1_c00499{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);}
.mf2_c00499{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);}
.m40_c00499{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);}
.m62_c00499{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);}
.m85_c00499{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);}
.me8_c00499{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);}
.ma0_c00499{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);}
.m11b_c00499{transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);}
.me0_c00499{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);}
.m30_c00499{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);}
.mc7_c00499{transform:matrix(0.191391,0.002679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191391,0.002679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191391,0.002679,-0.003500,0.249976,0,0);}
.m90_c00499{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);}
.m70_c00499{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);}
.m3e_c00499{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);}
.m2_c00499{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);}
.m92_c00499{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);}
.m43_c00499{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);}
.m23_c00499{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);}
.m45_c00499{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);}
.m3d_c00499{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);}
.m78_c00499{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);}
.mdd_c00499{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);}
.m18_c00499{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);}
.m8b_c00499{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);}
.maa_c00499{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);}
.m3b_c00499{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);}
.mdb_c00499{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);}
.m12_c00499{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);}
.m63_c00499{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);}
.mb7_c00499{transform:matrix(0.196387,0.003339,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196387,0.003339,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196387,0.003339,-0.004249,0.249964,0,0);}
.md9_c00499{transform:matrix(0.196686,0.002754,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196686,0.002754,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196686,0.002754,-0.003500,0.249976,0,0);}
.m9c_c00499{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);}
.m112_c00499{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{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);}
.mb8_c00499{transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);}
.mdc_c00499{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);}
.mf6_c00499{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);}
.mc3_c00499{transform:matrix(0.199050,0.002787,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199050,0.002787,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199050,0.002787,-0.003500,0.249976,0,0);}
.m3a_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);}
.me9_c00499{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);}
.mf0_c00499{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);}
.m74_c00499{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);}
.md7_c00499{transform:matrix(0.201320,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201320,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201320,0.002818,-0.003500,0.249976,0,0);}
.m1c_c00499{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);}
.m22_c00499{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);}
.m129_c00499{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);}
.m94_c00499{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);}
.m5d_c00499{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);}
.m99_c00499{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);}
.m39_c00499{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);}
.m56_c00499{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);}
.m55_c00499{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);}
.m89_c00499{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);}
.me1_c00499{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);}
.mab_c00499{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);}
.mac_c00499{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);}
.m5b_c00499{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);}
.me2_c00499{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);}
.m109_c00499{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);}
.m5f_c00499{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);}
.mb3_c00499{transform:matrix(0.206530,0.003511,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206530,0.003511,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206530,0.003511,-0.004249,0.249964,0,0);}
.m86_c00499{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);}
.md2_c00499{transform:matrix(0.206965,0.002898,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206965,0.002898,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206965,0.002898,-0.003500,0.249976,0,0);}
.mdf_c00499{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);}
.m13_c00499{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);}
.m25_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);}
.mc4_c00499{transform:matrix(0.208215,0.002915,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208215,0.002915,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208215,0.002915,-0.003500,0.249976,0,0);}
.mb_c00499{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);}
.mfb_c00499{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);}
.m102_c00499{transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208480,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{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);}
.me6_c00499{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);}
.m54_c00499{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);}
.m50_c00499{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);}
.ma4_c00499{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);}
.m69_c00499{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);}
.m118_c00499{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);}
.me7_c00499{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);}
.m6f_c00499{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);}
.mb5_c00499{transform:matrix(0.212294,0.003609,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212294,0.003609,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212294,0.003609,-0.004249,0.249964,0,0);}
.m35_c00499{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);}
.m106_c00499{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);}
.m11c_c00499{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);}
.m1f_c00499{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);}
.m58_c00499{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);}
.mec_c00499{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);}
.mf9_c00499{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);}
.m130_c00499{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);}
.m60_c00499{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);}
.m12e_c00499{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);}
.md4_c00499{transform:matrix(0.215489,0.003017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215489,0.003017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215489,0.003017,-0.003500,0.249976,0,0);}
.m87_c00499{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mea_c00499{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);}
.m98_c00499{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);}
.mca_c00499{transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);}
.m116_c00499{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);}
.m66_c00499{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);}
.m61_c00499{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);}
.mad_c00499{transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);}
.m108_c00499{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);}
.m7d_c00499{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);}
.m97_c00499{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);}
.ma7_c00499{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);}
.mbe_c00499{transform:matrix(0.219058,0.003724,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219058,0.003724,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219058,0.003724,-0.004249,0.249964,0,0);}
.m7e_c00499{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);}
.mc0_c00499{transform:matrix(0.219448,0.003731,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219448,0.003731,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219448,0.003731,-0.004249,0.249964,0,0);}
.mef_c00499{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);}
.me3_c00499{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);}
.m107_c00499{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);}
.m132_c00499{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m126_c00499{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m79_c00499{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);}
.m1a_c00499{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);}
.m8c_c00499{transform:matrix(0.222595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222595,0.000000,0.000000,0.250000,0,0);}
.m124_c00499{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);}
.mce_c00499{transform:matrix(0.223433,0.003128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223433,0.003128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223433,0.003128,-0.003500,0.249976,0,0);}
.m64_c00499{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);}
.m125_c00499{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);}
.md1_c00499{transform:matrix(0.225753,0.003161,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225753,0.003161,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225753,0.003161,-0.003500,0.249976,0,0);}
.m52_c00499{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);}
.m81_c00499{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);}
.mb2_c00499{transform:matrix(0.226187,0.003845,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226187,0.003845,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226187,0.003845,-0.004249,0.249964,0,0);}
.m84_c00499{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);}
.m10c_c00499{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);}
.m83_c00499{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);}
.m9f_c00499{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);}
.m6_c00499{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);}
.mbd_c00499{transform:matrix(0.228777,0.003889,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228777,0.003889,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228777,0.003889,-0.004249,0.249964,0,0);}
.m3c_c00499{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);}
.mf7_c00499{transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{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);}
.mda_c00499{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);}
.m128_c00499{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);}
.m131_c00499{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);}
.md0_c00499{transform:matrix(0.235072,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235072,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235072,0.003291,-0.003500,0.249976,0,0);}
.m117_c00499{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);}
.m53_c00499{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);}
.m59_c00499{transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);}
.mc1_c00499{transform:matrix(0.236371,0.004018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236371,0.004018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236371,0.004018,-0.004249,0.249964,0,0);}
.mcd_c00499{transform:matrix(0.236427,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236427,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236427,0.003310,-0.003500,0.249976,0,0);}
.m10a_c00499{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);}
.m7c_c00499{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);}
.m95_c00499{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);}
.m4b_c00499{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);}
.ma8_c00499{transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240060,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{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);}
.mc8_c00499{transform:matrix(0.242186,0.003391,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242186,0.003391,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242186,0.003391,-0.003500,0.249976,0,0);}
.mbb_c00499{transform:matrix(0.242425,0.004121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242425,0.004121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242425,0.004121,-0.004249,0.249964,0,0);}
.m32_c00499{transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);}
.m12c_c00499{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);}
.mc6_c00499{transform:matrix(0.242851,0.003400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242851,0.003400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242851,0.003400,-0.003500,0.249976,0,0);}
.m77_c00499{transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244115,0.000000,0.000000,0.250000,0,0);}
.m12a_c00499{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);}
.m1b_c00499{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);}
.mfd_c00499{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);}
.me5_c00499{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);}
.m8a_c00499{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m11d_c00499{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.mf3_c00499{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);}
.m9e_c00499{transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);}
.mfc_c00499{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_c00499{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{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);}
.m100_c00499{transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);}
.mcc_c00499{transform:matrix(0.254905,0.003569,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254905,0.003569,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254905,0.003569,-0.003500,0.249976,0,0);}
.m121_c00499{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);}
.m2a_c00499{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);}
.ma_c00499{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);}
.m5e_c00499{transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);}
.m12b_c00499{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);}
.m6a_c00499{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);}
.m123_c00499{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{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);}
.mbc_c00499{transform:matrix(0.268311,0.004561,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268311,0.004561,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268311,0.004561,-0.004249,0.249964,0,0);}
.m2d_c00499{transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{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);}
.m36_c00499{transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);}
.md8_c00499{transform:matrix(0.276563,0.003872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276563,0.003872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276563,0.003872,-0.003500,0.249976,0,0);}
.m11f_c00499{transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277880,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.278240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278240,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.mf4_c00499{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);}
.m2c_c00499{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);}
.md3_c00499{transform:matrix(0.284847,0.003988,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284847,0.003988,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284847,0.003988,-0.003500,0.249976,0,0);}
.m101_c00499{transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289655,0.000000,0.000000,0.250000,0,0);}
.m133_c00499{transform:matrix(0.290945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290945,0.000000,0.000000,0.250000,0,0);}
.m111_c00499{transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299300,0.000000,0.000000,0.250000,0,0);}
.mf5_c00499{transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300405,0.000000,0.000000,0.250000,0,0);}
.m10e_c00499{transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301035,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302245,0.000000,0.000000,0.250000,0,0);}
.m12d_c00499{transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);}
.mee_c00499{transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303920,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308065,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m104_c00499{transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324430,0.000000,0.000000,0.250000,0,0);}
.m10f_c00499{transform:matrix(0.333075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333075,0.000000,0.000000,0.250000,0,0);}
.mcf_c00499{transform:matrix(0.337452,0.004724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.337452,0.004724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.337452,0.004724,-0.003500,0.249976,0,0);}
.ma9_c00499{transform:matrix(0.339375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339375,0.000000,0.000000,0.250000,0,0);}
.m34_c00499{transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339455,0.000000,0.000000,0.250000,0,0);}
.m122_c00499{transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);}
.meb_c00499{transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366190,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.369995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369995,0.000000,0.000000,0.250000,0,0);}
.m110_c00499{transform:matrix(0.379550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379550,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.385995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385995,0.000000,0.000000,0.250000,0,0);}
.med_c00499{transform:matrix(0.418575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418575,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420025,0.000000,0.000000,0.250000,0,0);}
.m113_c00499{transform:matrix(0.458995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458995,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.488405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488405,0.000000,0.000000,0.250000,0,0);}
.mff_c00499{transform:matrix(0.571885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571885,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;}
.fs1b_c00499{font-size:46.200000px;}
.fs19_c00499{font-size:47.250000px;}
.fs1c_c00499{font-size:48.300000px;}
.fs1d_c00499{font-size:49.350000px;}
.fs14_c00499{font-size:49.354836px;}
.fs18_c00499{font-size:50.400000px;}
.fs11_c00499{font-size:51.450000px;}
.fs17_c00499{font-size:52.500000px;}
.fs16_c00499{font-size:53.550000px;}
.fs13_c00499{font-size:54.605351px;}
.fs12_c00499{font-size:54.607889px;}
.fs1a_c00499{font-size:55.650000px;}
.fs15_c00499{font-size:55.655453px;}
.fs6_c00499{font-size:57.750000px;}
.fs7_c00499{font-size:58.800000px;}
.fs8_c00499{font-size:63.000000px;}
.fsd_c00499{font-size:64.050000px;}
.fsb_c00499{font-size:65.100000px;}
.fsf_c00499{font-size:66.150000px;}
.fsa_c00499{font-size:67.200000px;}
.fse_c00499{font-size:68.250000px;}
.fs1_c00499{font-size:69.300000px;}
.fs10_c00499{font-size:70.350000px;}
.fs0_c00499{font-size:71.400000px;}
.fs4_c00499{font-size:72.450000px;}
.fs9_c00499{font-size:73.500000px;}
.fs2_c00499{font-size:74.550000px;}
.fs3_c00499{font-size:75.600000px;}
.fsc_c00499{font-size:82.950000px;}
.fs5_c00499{font-size:107.100000px;}
.y0_c00499{bottom:0.000000px;}
.y94_c00499{bottom:133.710000px;}
.y85_c00499{bottom:136.617000px;}
.y93_c00499{bottom:149.412000px;}
.y92_c00499{bottom:151.720500px;}
.y91_c00499{bottom:152.169000px;}
.y90_c00499{bottom:152.664000px;}
.y8f_c00499{bottom:152.947500px;}
.y8e_c00499{bottom:153.090000px;}
.y84_c00499{bottom:154.158000px;}
.y8d_c00499{bottom:170.017500px;}
.y83_c00499{bottom:172.093500px;}
.y8c_c00499{bottom:189.232500px;}
.y82_c00499{bottom:190.485000px;}
.y8b_c00499{bottom:206.185500px;}
.y81_c00499{bottom:207.753990px;}
.y80_c00499{bottom:207.946323px;}
.y7f_c00499{bottom:208.789149px;}
.y7e_c00499{bottom:209.140212px;}
.y7d_c00499{bottom:209.554458px;}
.y7c_c00499{bottom:210.060618px;}
.y8a_c00499{bottom:224.542500px;}
.y7b_c00499{bottom:225.069033px;}
.y7a_c00499{bottom:225.216978px;}
.y79_c00499{bottom:225.848910px;}
.y78_c00499{bottom:226.192428px;}
.y77_c00499{bottom:226.302300px;}
.y76_c00499{bottom:227.069346px;}
.y75_c00499{bottom:227.572569px;}
.y74_c00499{bottom:227.881500px;}
.y73_c00499{bottom:242.592174px;}
.y72_c00499{bottom:242.818428px;}
.y71_c00499{bottom:243.306111px;}
.y89_c00499{bottom:243.432000px;}
.y70_c00499{bottom:243.685140px;}
.y6f_c00499{bottom:243.926199px;}
.y6e_c00499{bottom:244.229565px;}
.y6d_c00499{bottom:244.633836px;}
.y6c_c00499{bottom:244.965804px;}
.y6b_c00499{bottom:245.431500px;}
.y6a_c00499{bottom:259.869129px;}
.y88_c00499{bottom:260.854500px;}
.y69_c00499{bottom:260.930582px;}
.y68_c00499{bottom:261.517443px;}
.y67_c00499{bottom:261.597621px;}
.y66_c00499{bottom:262.158030px;}
.y65_c00499{bottom:262.551398px;}
.y64_c00499{bottom:262.802544px;}
.y63_c00499{bottom:263.247521px;}
.y62_c00499{bottom:263.518337px;}
.y61_c00499{bottom:277.515768px;}
.y60_c00499{bottom:278.035764px;}
.y5f_c00499{bottom:278.522304px;}
.y5e_c00499{bottom:278.820680px;}
.y5d_c00499{bottom:279.068744px;}
.y5c_c00499{bottom:279.315558px;}
.y87_c00499{bottom:279.681000px;}
.y5b_c00499{bottom:280.198419px;}
.y5a_c00499{bottom:281.037956px;}
.y59_c00499{bottom:281.515392px;}
.y58_c00499{bottom:281.883000px;}
.y57_c00499{bottom:296.880000px;}
.y86_c00499{bottom:297.070500px;}
.y56_c00499{bottom:342.264000px;}
.y55_c00499{bottom:342.571500px;}
.y54_c00499{bottom:343.194000px;}
.y53_c00499{bottom:343.473000px;}
.y52_c00499{bottom:343.764000px;}
.y51_c00499{bottom:344.281500px;}
.y50_c00499{bottom:344.791500px;}
.y4f_c00499{bottom:345.040500px;}
.y4e_c00499{bottom:345.526500px;}
.y4d_c00499{bottom:345.867000px;}
.y4c_c00499{bottom:364.683000px;}
.y4b_c00499{bottom:364.879500px;}
.y4a_c00499{bottom:365.322000px;}
.y49_c00499{bottom:365.773500px;}
.y48_c00499{bottom:366.249000px;}
.y47_c00499{bottom:366.849000px;}
.y46_c00499{bottom:367.146000px;}
.y45_c00499{bottom:367.588500px;}
.y44_c00499{bottom:367.948500px;}
.y43_c00499{bottom:368.278500px;}
.y42_c00499{bottom:387.730500px;}
.y41_c00499{bottom:387.930000px;}
.y40_c00499{bottom:388.302000px;}
.y3f_c00499{bottom:388.618500px;}
.y3e_c00499{bottom:389.056500px;}
.y3d_c00499{bottom:389.496000px;}
.y3c_c00499{bottom:389.967000px;}
.y3b_c00499{bottom:390.237000px;}
.y3a_c00499{bottom:390.690000px;}
.y39_c00499{bottom:411.472500px;}
.y38_c00499{bottom:411.835500px;}
.y37_c00499{bottom:412.263000px;}
.y36_c00499{bottom:412.623000px;}
.y35_c00499{bottom:413.595000px;}
.y34_c00499{bottom:414.187500px;}
.y33_c00499{bottom:414.531000px;}
.y32_c00499{bottom:414.991500px;}
.y31_c00499{bottom:434.526000px;}
.y30_c00499{bottom:434.757000px;}
.y2f_c00499{bottom:435.393000px;}
.y2e_c00499{bottom:436.156500px;}
.y2d_c00499{bottom:436.405500px;}
.y2c_c00499{bottom:436.881000px;}
.y2b_c00499{bottom:437.350500px;}
.y2a_c00499{bottom:437.671500px;}
.y29_c00499{bottom:457.122000px;}
.y28_c00499{bottom:457.495500px;}
.y27_c00499{bottom:457.773000px;}
.y26_c00499{bottom:458.037000px;}
.y25_c00499{bottom:458.721000px;}
.y24_c00499{bottom:458.974500px;}
.y23_c00499{bottom:459.399000px;}
.y22_c00499{bottom:459.774000px;}
.y21_c00499{bottom:460.152000px;}
.y20_c00499{bottom:460.419000px;}
.y1f_c00499{bottom:460.915500px;}
.y1e_c00499{bottom:481.740000px;}
.y1d_c00499{bottom:504.360000px;}
.y1c_c00499{bottom:527.014500px;}
.y1b_c00499{bottom:527.421000px;}
.y1a_c00499{bottom:528.004500px;}
.y19_c00499{bottom:528.760500px;}
.y18_c00499{bottom:529.159500px;}
.y17_c00499{bottom:529.516500px;}
.y16_c00499{bottom:529.740000px;}
.y15_c00499{bottom:551.427000px;}
.y14_c00499{bottom:573.246000px;}
.y13_c00499{bottom:573.639000px;}
.y12_c00499{bottom:574.228500px;}
.y11_c00499{bottom:574.603500px;}
.y10_c00499{bottom:575.325000px;}
.yf_c00499{bottom:575.770500px;}
.ye_c00499{bottom:576.181500px;}
.yd_c00499{bottom:596.998500px;}
.yc_c00499{bottom:619.605000px;}
.yb_c00499{bottom:642.312000px;}
.y9_c00499{bottom:643.293000px;}
.ya_c00499{bottom:664.963500px;}
.y8_c00499{bottom:665.517000px;}
.y7_c00499{bottom:687.432000px;}
.y6_c00499{bottom:710.587500px;}
.y5_c00499{bottom:734.235000px;}
.y4_c00499{bottom:757.080000px;}
.y3_c00499{bottom:779.808000px;}
.y2_c00499{bottom:802.980000px;}
.y1_c00499{bottom:825.930000px;}
.h1d_c00499{height:46.200000px;}
.h1b_c00499{height:47.250000px;}
.h1e_c00499{height:48.300000px;}
.h1f_c00499{height:49.350000px;}
.h16_c00499{height:49.354836px;}
.h1a_c00499{height:50.400000px;}
.h13_c00499{height:51.450000px;}
.h19_c00499{height:52.500000px;}
.h18_c00499{height:53.550000px;}
.h15_c00499{height:54.605351px;}
.h14_c00499{height:54.607889px;}
.h1c_c00499{height:55.650000px;}
.h17_c00499{height:55.655453px;}
.h8_c00499{height:57.750000px;}
.h9_c00499{height:58.800000px;}
.ha_c00499{height:63.000000px;}
.hf_c00499{height:64.050000px;}
.hd_c00499{height:65.100000px;}
.h11_c00499{height:66.150000px;}
.hc_c00499{height:67.200000px;}
.h10_c00499{height:68.250000px;}
.h3_c00499{height:69.300000px;}
.h12_c00499{height:70.350000px;}
.h2_c00499{height:71.400000px;}
.h6_c00499{height:72.450000px;}
.hb_c00499{height:73.500000px;}
.h4_c00499{height:74.550000px;}
.h5_c00499{height:75.600000px;}
.he_c00499{height:82.950000px;}
.h7_c00499{height:107.100000px;}
.h0_c00499{height:1008.450000px;}
.h1_c00499{height:1008.750000px;}
.w1_c00499{width:700.500000px;}
.w0_c00499{width:700.650000px;}
.x0_c00499{left:0.000000px;}
.x77_c00499{left:127.252500px;}
.x7d_c00499{left:147.003000px;}
.x78_c00499{left:148.876500px;}
.x74_c00499{left:157.680000px;}
.x87_c00499{left:162.810000px;}
.x7a_c00499{left:166.710689px;}
.x81_c00499{left:169.936500px;}
.x8d_c00499{left:172.800000px;}
.x28_c00499{left:177.390000px;}
.x7e_c00499{left:180.267000px;}
.x5a_c00499{left:182.664000px;}
.x48_c00499{left:184.138500px;}
.x2e_c00499{left:185.220000px;}
.x1_c00499{left:187.110000px;}
.x7b_c00499{left:196.416209px;}
.x54_c00499{left:199.800000px;}
.x2_c00499{left:201.150000px;}
.x16_c00499{left:202.230000px;}
.x7f_c00499{left:203.979000px;}
.x29_c00499{left:205.200000px;}
.x50_c00499{left:206.953500px;}
.x49_c00499{left:209.788500px;}
.x3c_c00499{left:212.220000px;}
.x17_c00499{left:214.110000px;}
.x3_c00499{left:216.810000px;}
.xb_c00499{left:222.750000px;}
.x43_c00499{left:226.171500px;}
.x88_c00499{left:228.960000px;}
.x5b_c00499{left:232.350000px;}
.x21_c00499{left:237.060000px;}
.x2f_c00499{left:238.410000px;}
.x51_c00499{left:242.601000px;}
.x85_c00499{left:243.968091px;}
.x2a_c00499{left:246.240000px;}
.x8e_c00499{left:249.210000px;}
.x66_c00499{left:250.678500px;}
.xc_c00499{left:252.720000px;}
.x62_c00499{left:254.739000px;}
.x36_c00499{left:255.960000px;}
.x18_c00499{left:257.580000px;}
.x4a_c00499{left:258.658500px;}
.x82_c00499{left:260.670000px;}
.x4_c00499{left:266.220000px;}
.x83_c00499{left:268.518000px;}
.x8a_c00499{left:270.270000px;}
.x2b_c00499{left:271.620000px;}
.x71_c00499{left:273.352500px;}
.x8f_c00499{left:275.400000px;}
.x7c_c00499{left:276.737937px;}
.x22_c00499{left:279.180000px;}
.x19_c00499{left:281.610000px;}
.x90_c00499{left:285.390000px;}
.x30_c00499{left:286.470000px;}
.x75_c00499{left:288.090000px;}
.x57_c00499{left:291.060000px;}
.x79_c00499{left:292.797000px;}
.x5_c00499{left:295.380000px;}
.x5c_c00499{left:296.878500px;}
.x63_c00499{left:297.945000px;}
.xd_c00499{left:299.160000px;}
.x76_c00499{left:303.750000px;}
.x8b_c00499{left:305.100000px;}
.x3d_c00499{left:307.530000px;}
.x86_c00499{left:308.777994px;}
.x37_c00499{left:312.120000px;}
.x89_c00499{left:313.740000px;}
.x2c_c00499{left:315.630000px;}
.x20_c00499{left:316.710000px;}
.x23_c00499{left:318.060000px;}
.x27_c00499{left:319.410000px;}
.x64_c00499{left:320.619000px;}
.x1a_c00499{left:322.920000px;}
.x55_c00499{left:325.620000px;}
.x3e_c00499{left:329.130000px;}
.x31_c00499{left:331.290000px;}
.x15_c00499{left:333.450000px;}
.x38_c00499{left:338.850000px;}
.x44_c00499{left:342.780000px;}
.x8c_c00499{left:344.790000px;}
.x84_c00499{left:348.760500px;}
.x80_c00499{left:349.812000px;}
.xe_c00499{left:351.540000px;}
.x58_c00499{left:354.240000px;}
.x2d_c00499{left:356.670000px;}
.x52_c00499{left:358.167000px;}
.x56_c00499{left:362.340000px;}
.x4b_c00499{left:364.228500px;}
.x1b_c00499{left:365.310000px;}
.x6e_c00499{left:367.060500px;}
.x24_c00499{left:372.330000px;}
.xf_c00499{left:374.490000px;}
.x6_c00499{left:376.110000px;}
.x45_c00499{left:380.301000px;}
.x6a_c00499{left:381.936000px;}
.x72_c00499{left:383.245500px;}
.xa0_c00499{left:385.020000px;}
.x39_c00499{left:387.180000px;}
.x7_c00499{left:390.150000px;}
.x1c_c00499{left:392.850000px;}
.x10_c00499{left:395.820000px;}
.xab_c00499{left:397.344000px;}
.x95_c00499{left:398.790000px;}
.x3f_c00499{left:400.680000px;}
.x5d_c00499{left:402.109500px;}
.x8_c00499{left:406.890000px;}
.x4c_c00499{left:407.968500px;}
.x9e_c00499{left:409.860000px;}
.x67_c00499{left:411.114000px;}
.x32_c00499{left:413.640000px;}
.x53_c00499{left:416.532000px;}
.xac_c00499{left:417.601500px;}
.x34_c00499{left:419.580000px;}
.x40_c00499{left:423.900000px;}
.x4d_c00499{left:428.758500px;}
.x25_c00499{left:430.380000px;}
.x91_c00499{left:432.000000px;}
.x11_c00499{left:434.160000px;}
.x1d_c00499{left:435.780000px;}
.x46_c00499{left:439.212000px;}
.x98_c00499{left:440.370000px;}
.x59_c00499{left:441.720000px;}
.xa2_c00499{left:442.800000px;}
.x68_c00499{left:446.691000px;}
.x65_c00499{left:447.820500px;}
.x4e_c00499{left:449.278500px;}
.x35_c00499{left:450.900000px;}
.x26_c00499{left:452.520000px;}
.x3a_c00499{left:455.220000px;}
.x12_c00499{left:457.920000px;}
.xa3_c00499{left:459.540000px;}
.x92_c00499{left:460.620000px;}
.x9_c00499{left:462.780000px;}
.x6b_c00499{left:465.633000px;}
.x41_c00499{left:468.180000px;}
.x5e_c00499{left:470.445000px;}
.x33_c00499{left:471.960000px;}
.x3b_c00499{left:473.310000px;}
.x69_c00499{left:476.923500px;}
.x47_c00499{left:478.549500px;}
.x73_c00499{left:483.961500px;}
.x1e_c00499{left:485.460000px;}
.xa4_c00499{left:486.540000px;}
.xa_c00499{left:488.700000px;}
.x99_c00499{left:490.050000px;}
.x6f_c00499{left:491.532000px;}
.x13_c00499{left:493.020000px;}
.x4f_c00499{left:494.368500px;}
.x5f_c00499{left:496.915500px;}
.x42_c00499{left:503.280000px;}
.x6c_c00499{left:506.949000px;}
.x70_c00499{left:509.353500px;}
.xa5_c00499{left:514.080000px;}
.xae_c00499{left:521.641500px;}
.xa1_c00499{left:523.530000px;}
.x60_c00499{left:524.688000px;}
.xa8_c00499{left:526.500000px;}
.x6d_c00499{left:529.108500px;}
.xa6_c00499{left:530.550000px;}
.xa9_c00499{left:534.870000px;}
.x1f_c00499{left:542.700000px;}
.x93_c00499{left:547.290000px;}
.x14_c00499{left:555.930000px;}
.x96_c00499{left:560.520000px;}
.x61_c00499{left:562.101000px;}
.x9a_c00499{left:572.940000px;}
.x9b_c00499{left:588.060000px;}
.xa7_c00499{left:595.620000px;}
.xaf_c00499{left:603.721500px;}
.x9c_c00499{left:605.070000px;}
.x94_c00499{left:607.770000px;}
.xaa_c00499{left:612.900000px;}
.x9f_c00499{left:627.750000px;}
.xb0_c00499{left:641.251500px;}
.x9d_c00499{left:644.490000px;}
.x97_c00499{left:645.840000px;}
.xad_c00499{left:649.915500px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs1b_c00499{font-size:41.066667pt;}
.fs19_c00499{font-size:42.000000pt;}
.fs1c_c00499{font-size:42.933333pt;}
.fs1d_c00499{font-size:43.866667pt;}
.fs14_c00499{font-size:43.870965pt;}
.fs18_c00499{font-size:44.800000pt;}
.fs11_c00499{font-size:45.733333pt;}
.fs17_c00499{font-size:46.666667pt;}
.fs16_c00499{font-size:47.600000pt;}
.fs13_c00499{font-size:48.538089pt;}
.fs12_c00499{font-size:48.540346pt;}
.fs1a_c00499{font-size:49.466667pt;}
.fs15_c00499{font-size:49.471514pt;}
.fs6_c00499{font-size:51.333333pt;}
.fs7_c00499{font-size:52.266667pt;}
.fs8_c00499{font-size:56.000000pt;}
.fsd_c00499{font-size:56.933333pt;}
.fsb_c00499{font-size:57.866667pt;}
.fsf_c00499{font-size:58.800000pt;}
.fsa_c00499{font-size:59.733333pt;}
.fse_c00499{font-size:60.666667pt;}
.fs1_c00499{font-size:61.600000pt;}
.fs10_c00499{font-size:62.533333pt;}
.fs0_c00499{font-size:63.466667pt;}
.fs4_c00499{font-size:64.400000pt;}
.fs9_c00499{font-size:65.333333pt;}
.fs2_c00499{font-size:66.266667pt;}
.fs3_c00499{font-size:67.200000pt;}
.fsc_c00499{font-size:73.733333pt;}
.fs5_c00499{font-size:95.200000pt;}
.y0_c00499{bottom:0.000000pt;}
.y94_c00499{bottom:118.853333pt;}
.y85_c00499{bottom:121.437333pt;}
.y93_c00499{bottom:132.810667pt;}
.y92_c00499{bottom:134.862667pt;}
.y91_c00499{bottom:135.261333pt;}
.y90_c00499{bottom:135.701333pt;}
.y8f_c00499{bottom:135.953333pt;}
.y8e_c00499{bottom:136.080000pt;}
.y84_c00499{bottom:137.029333pt;}
.y8d_c00499{bottom:151.126667pt;}
.y83_c00499{bottom:152.972000pt;}
.y8c_c00499{bottom:168.206667pt;}
.y82_c00499{bottom:169.320000pt;}
.y8b_c00499{bottom:183.276000pt;}
.y81_c00499{bottom:184.670213pt;}
.y80_c00499{bottom:184.841176pt;}
.y7f_c00499{bottom:185.590355pt;}
.y7e_c00499{bottom:185.902411pt;}
.y7d_c00499{bottom:186.270629pt;}
.y7c_c00499{bottom:186.720549pt;}
.y8a_c00499{bottom:199.593333pt;}
.y7b_c00499{bottom:200.061363pt;}
.y7a_c00499{bottom:200.192869pt;}
.y79_c00499{bottom:200.754587pt;}
.y78_c00499{bottom:201.059936pt;}
.y77_c00499{bottom:201.157600pt;}
.y76_c00499{bottom:201.839419pt;}
.y75_c00499{bottom:202.286728pt;}
.y74_c00499{bottom:202.561333pt;}
.y73_c00499{bottom:215.637488pt;}
.y72_c00499{bottom:215.838603pt;}
.y71_c00499{bottom:216.272099pt;}
.y89_c00499{bottom:216.384000pt;}
.y70_c00499{bottom:216.609013pt;}
.y6f_c00499{bottom:216.823288pt;}
.y6e_c00499{bottom:217.092947pt;}
.y6d_c00499{bottom:217.452299pt;}
.y6c_c00499{bottom:217.747381pt;}
.y6b_c00499{bottom:218.161333pt;}
.y6a_c00499{bottom:230.994781pt;}
.y88_c00499{bottom:231.870667pt;}
.y69_c00499{bottom:231.938295pt;}
.y68_c00499{bottom:232.459949pt;}
.y67_c00499{bottom:232.531219pt;}
.y66_c00499{bottom:233.029360pt;}
.y65_c00499{bottom:233.379020pt;}
.y64_c00499{bottom:233.602261pt;}
.y63_c00499{bottom:233.997796pt;}
.y62_c00499{bottom:234.238521pt;}
.y61_c00499{bottom:246.680683pt;}
.y60_c00499{bottom:247.142901pt;}
.y5f_c00499{bottom:247.575381pt;}
.y5e_c00499{bottom:247.840604pt;}
.y5d_c00499{bottom:248.061105pt;}
.y5c_c00499{bottom:248.280496pt;}
.y87_c00499{bottom:248.605333pt;}
.y5b_c00499{bottom:249.065261pt;}
.y5a_c00499{bottom:249.811516pt;}
.y59_c00499{bottom:250.235904pt;}
.y58_c00499{bottom:250.562667pt;}
.y57_c00499{bottom:263.893333pt;}
.y86_c00499{bottom:264.062667pt;}
.y56_c00499{bottom:304.234667pt;}
.y55_c00499{bottom:304.508000pt;}
.y54_c00499{bottom:305.061333pt;}
.y53_c00499{bottom:305.309333pt;}
.y52_c00499{bottom:305.568000pt;}
.y51_c00499{bottom:306.028000pt;}
.y50_c00499{bottom:306.481333pt;}
.y4f_c00499{bottom:306.702667pt;}
.y4e_c00499{bottom:307.134667pt;}
.y4d_c00499{bottom:307.437333pt;}
.y4c_c00499{bottom:324.162667pt;}
.y4b_c00499{bottom:324.337333pt;}
.y4a_c00499{bottom:324.730667pt;}
.y49_c00499{bottom:325.132000pt;}
.y48_c00499{bottom:325.554667pt;}
.y47_c00499{bottom:326.088000pt;}
.y46_c00499{bottom:326.352000pt;}
.y45_c00499{bottom:326.745333pt;}
.y44_c00499{bottom:327.065333pt;}
.y43_c00499{bottom:327.358667pt;}
.y42_c00499{bottom:344.649333pt;}
.y41_c00499{bottom:344.826667pt;}
.y40_c00499{bottom:345.157333pt;}
.y3f_c00499{bottom:345.438667pt;}
.y3e_c00499{bottom:345.828000pt;}
.y3d_c00499{bottom:346.218667pt;}
.y3c_c00499{bottom:346.637333pt;}
.y3b_c00499{bottom:346.877333pt;}
.y3a_c00499{bottom:347.280000pt;}
.y39_c00499{bottom:365.753333pt;}
.y38_c00499{bottom:366.076000pt;}
.y37_c00499{bottom:366.456000pt;}
.y36_c00499{bottom:366.776000pt;}
.y35_c00499{bottom:367.640000pt;}
.y34_c00499{bottom:368.166667pt;}
.y33_c00499{bottom:368.472000pt;}
.y32_c00499{bottom:368.881333pt;}
.y31_c00499{bottom:386.245333pt;}
.y30_c00499{bottom:386.450667pt;}
.y2f_c00499{bottom:387.016000pt;}
.y2e_c00499{bottom:387.694667pt;}
.y2d_c00499{bottom:387.916000pt;}
.y2c_c00499{bottom:388.338667pt;}
.y2b_c00499{bottom:388.756000pt;}
.y2a_c00499{bottom:389.041333pt;}
.y29_c00499{bottom:406.330667pt;}
.y28_c00499{bottom:406.662667pt;}
.y27_c00499{bottom:406.909333pt;}
.y26_c00499{bottom:407.144000pt;}
.y25_c00499{bottom:407.752000pt;}
.y24_c00499{bottom:407.977333pt;}
.y23_c00499{bottom:408.354667pt;}
.y22_c00499{bottom:408.688000pt;}
.y21_c00499{bottom:409.024000pt;}
.y20_c00499{bottom:409.261333pt;}
.y1f_c00499{bottom:409.702667pt;}
.y1e_c00499{bottom:428.213333pt;}
.y1d_c00499{bottom:448.320000pt;}
.y1c_c00499{bottom:468.457333pt;}
.y1b_c00499{bottom:468.818667pt;}
.y1a_c00499{bottom:469.337333pt;}
.y19_c00499{bottom:470.009333pt;}
.y18_c00499{bottom:470.364000pt;}
.y17_c00499{bottom:470.681333pt;}
.y16_c00499{bottom:470.880000pt;}
.y15_c00499{bottom:490.157333pt;}
.y14_c00499{bottom:509.552000pt;}
.y13_c00499{bottom:509.901333pt;}
.y12_c00499{bottom:510.425333pt;}
.y11_c00499{bottom:510.758667pt;}
.y10_c00499{bottom:511.400000pt;}
.yf_c00499{bottom:511.796000pt;}
.ye_c00499{bottom:512.161333pt;}
.yd_c00499{bottom:530.665333pt;}
.yc_c00499{bottom:550.760000pt;}
.yb_c00499{bottom:570.944000pt;}
.y9_c00499{bottom:571.816000pt;}
.ya_c00499{bottom:591.078667pt;}
.y8_c00499{bottom:591.570667pt;}
.y7_c00499{bottom:611.050667pt;}
.y6_c00499{bottom:631.633333pt;}
.y5_c00499{bottom:652.653333pt;}
.y4_c00499{bottom:672.960000pt;}
.y3_c00499{bottom:693.162667pt;}
.y2_c00499{bottom:713.760000pt;}
.y1_c00499{bottom:734.160000pt;}
.h1d_c00499{height:41.066667pt;}
.h1b_c00499{height:42.000000pt;}
.h1e_c00499{height:42.933333pt;}
.h1f_c00499{height:43.866667pt;}
.h16_c00499{height:43.870965pt;}
.h1a_c00499{height:44.800000pt;}
.h13_c00499{height:45.733333pt;}
.h19_c00499{height:46.666667pt;}
.h18_c00499{height:47.600000pt;}
.h15_c00499{height:48.538089pt;}
.h14_c00499{height:48.540346pt;}
.h1c_c00499{height:49.466667pt;}
.h17_c00499{height:49.471514pt;}
.h8_c00499{height:51.333333pt;}
.h9_c00499{height:52.266667pt;}
.ha_c00499{height:56.000000pt;}
.hf_c00499{height:56.933333pt;}
.hd_c00499{height:57.866667pt;}
.h11_c00499{height:58.800000pt;}
.hc_c00499{height:59.733333pt;}
.h10_c00499{height:60.666667pt;}
.h3_c00499{height:61.600000pt;}
.h12_c00499{height:62.533333pt;}
.h2_c00499{height:63.466667pt;}
.h6_c00499{height:64.400000pt;}
.hb_c00499{height:65.333333pt;}
.h4_c00499{height:66.266667pt;}
.h5_c00499{height:67.200000pt;}
.he_c00499{height:73.733333pt;}
.h7_c00499{height:95.200000pt;}
.h0_c00499{height:896.400000pt;}
.h1_c00499{height:896.666667pt;}
.w1_c00499{width:622.666667pt;}
.w0_c00499{width:622.800000pt;}
.x0_c00499{left:0.000000pt;}
.x77_c00499{left:113.113333pt;}
.x7d_c00499{left:130.669333pt;}
.x78_c00499{left:132.334667pt;}
.x74_c00499{left:140.160000pt;}
.x87_c00499{left:144.720000pt;}
.x7a_c00499{left:148.187279pt;}
.x81_c00499{left:151.054667pt;}
.x8d_c00499{left:153.600000pt;}
.x28_c00499{left:157.680000pt;}
.x7e_c00499{left:160.237333pt;}
.x5a_c00499{left:162.368000pt;}
.x48_c00499{left:163.678667pt;}
.x2e_c00499{left:164.640000pt;}
.x1_c00499{left:166.320000pt;}
.x7b_c00499{left:174.592185pt;}
.x54_c00499{left:177.600000pt;}
.x2_c00499{left:178.800000pt;}
.x16_c00499{left:179.760000pt;}
.x7f_c00499{left:181.314667pt;}
.x29_c00499{left:182.400000pt;}
.x50_c00499{left:183.958667pt;}
.x49_c00499{left:186.478667pt;}
.x3c_c00499{left:188.640000pt;}
.x17_c00499{left:190.320000pt;}
.x3_c00499{left:192.720000pt;}
.xb_c00499{left:198.000000pt;}
.x43_c00499{left:201.041333pt;}
.x88_c00499{left:203.520000pt;}
.x5b_c00499{left:206.533333pt;}
.x21_c00499{left:210.720000pt;}
.x2f_c00499{left:211.920000pt;}
.x51_c00499{left:215.645333pt;}
.x85_c00499{left:216.860525pt;}
.x2a_c00499{left:218.880000pt;}
.x8e_c00499{left:221.520000pt;}
.x66_c00499{left:222.825333pt;}
.xc_c00499{left:224.640000pt;}
.x62_c00499{left:226.434667pt;}
.x36_c00499{left:227.520000pt;}
.x18_c00499{left:228.960000pt;}
.x4a_c00499{left:229.918667pt;}
.x82_c00499{left:231.706667pt;}
.x4_c00499{left:236.640000pt;}
.x83_c00499{left:238.682667pt;}
.x8a_c00499{left:240.240000pt;}
.x2b_c00499{left:241.440000pt;}
.x71_c00499{left:242.980000pt;}
.x8f_c00499{left:244.800000pt;}
.x7c_c00499{left:245.989277pt;}
.x22_c00499{left:248.160000pt;}
.x19_c00499{left:250.320000pt;}
.x90_c00499{left:253.680000pt;}
.x30_c00499{left:254.640000pt;}
.x75_c00499{left:256.080000pt;}
.x57_c00499{left:258.720000pt;}
.x79_c00499{left:260.264000pt;}
.x5_c00499{left:262.560000pt;}
.x5c_c00499{left:263.892000pt;}
.x63_c00499{left:264.840000pt;}
.xd_c00499{left:265.920000pt;}
.x76_c00499{left:270.000000pt;}
.x8b_c00499{left:271.200000pt;}
.x3d_c00499{left:273.360000pt;}
.x86_c00499{left:274.469328pt;}
.x37_c00499{left:277.440000pt;}
.x89_c00499{left:278.880000pt;}
.x2c_c00499{left:280.560000pt;}
.x20_c00499{left:281.520000pt;}
.x23_c00499{left:282.720000pt;}
.x27_c00499{left:283.920000pt;}
.x64_c00499{left:284.994667pt;}
.x1a_c00499{left:287.040000pt;}
.x55_c00499{left:289.440000pt;}
.x3e_c00499{left:292.560000pt;}
.x31_c00499{left:294.480000pt;}
.x15_c00499{left:296.400000pt;}
.x38_c00499{left:301.200000pt;}
.x44_c00499{left:304.693333pt;}
.x8c_c00499{left:306.480000pt;}
.x84_c00499{left:310.009333pt;}
.x80_c00499{left:310.944000pt;}
.xe_c00499{left:312.480000pt;}
.x58_c00499{left:314.880000pt;}
.x2d_c00499{left:317.040000pt;}
.x52_c00499{left:318.370667pt;}
.x56_c00499{left:322.080000pt;}
.x4b_c00499{left:323.758667pt;}
.x1b_c00499{left:324.720000pt;}
.x6e_c00499{left:326.276000pt;}
.x24_c00499{left:330.960000pt;}
.xf_c00499{left:332.880000pt;}
.x6_c00499{left:334.320000pt;}
.x45_c00499{left:338.045333pt;}
.x6a_c00499{left:339.498667pt;}
.x72_c00499{left:340.662667pt;}
.xa0_c00499{left:342.240000pt;}
.x39_c00499{left:344.160000pt;}
.x7_c00499{left:346.800000pt;}
.x1c_c00499{left:349.200000pt;}
.x10_c00499{left:351.840000pt;}
.xab_c00499{left:353.194667pt;}
.x95_c00499{left:354.480000pt;}
.x3f_c00499{left:356.160000pt;}
.x5d_c00499{left:357.430667pt;}
.x8_c00499{left:361.680000pt;}
.x4c_c00499{left:362.638667pt;}
.x9e_c00499{left:364.320000pt;}
.x67_c00499{left:365.434667pt;}
.x32_c00499{left:367.680000pt;}
.x53_c00499{left:370.250667pt;}
.xac_c00499{left:371.201333pt;}
.x34_c00499{left:372.960000pt;}
.x40_c00499{left:376.800000pt;}
.x4d_c00499{left:381.118667pt;}
.x25_c00499{left:382.560000pt;}
.x91_c00499{left:384.000000pt;}
.x11_c00499{left:385.920000pt;}
.x1d_c00499{left:387.360000pt;}
.x46_c00499{left:390.410667pt;}
.x98_c00499{left:391.440000pt;}
.x59_c00499{left:392.640000pt;}
.xa2_c00499{left:393.600000pt;}
.x68_c00499{left:397.058667pt;}
.x65_c00499{left:398.062667pt;}
.x4e_c00499{left:399.358667pt;}
.x35_c00499{left:400.800000pt;}
.x26_c00499{left:402.240000pt;}
.x3a_c00499{left:404.640000pt;}
.x12_c00499{left:407.040000pt;}
.xa3_c00499{left:408.480000pt;}
.x92_c00499{left:409.440000pt;}
.x9_c00499{left:411.360000pt;}
.x6b_c00499{left:413.896000pt;}
.x41_c00499{left:416.160000pt;}
.x5e_c00499{left:418.173333pt;}
.x33_c00499{left:419.520000pt;}
.x3b_c00499{left:420.720000pt;}
.x69_c00499{left:423.932000pt;}
.x47_c00499{left:425.377333pt;}
.x73_c00499{left:430.188000pt;}
.x1e_c00499{left:431.520000pt;}
.xa4_c00499{left:432.480000pt;}
.xa_c00499{left:434.400000pt;}
.x99_c00499{left:435.600000pt;}
.x6f_c00499{left:436.917333pt;}
.x13_c00499{left:438.240000pt;}
.x4f_c00499{left:439.438667pt;}
.x5f_c00499{left:441.702667pt;}
.x42_c00499{left:447.360000pt;}
.x6c_c00499{left:450.621333pt;}
.x70_c00499{left:452.758667pt;}
.xa5_c00499{left:456.960000pt;}
.xae_c00499{left:463.681333pt;}
.xa1_c00499{left:465.360000pt;}
.x60_c00499{left:466.389333pt;}
.xa8_c00499{left:468.000000pt;}
.x6d_c00499{left:470.318667pt;}
.xa6_c00499{left:471.600000pt;}
.xa9_c00499{left:475.440000pt;}
.x1f_c00499{left:482.400000pt;}
.x93_c00499{left:486.480000pt;}
.x14_c00499{left:494.160000pt;}
.x96_c00499{left:498.240000pt;}
.x61_c00499{left:499.645333pt;}
.x9a_c00499{left:509.280000pt;}
.x9b_c00499{left:522.720000pt;}
.xa7_c00499{left:529.440000pt;}
.xaf_c00499{left:536.641333pt;}
.x9c_c00499{left:537.840000pt;}
.x94_c00499{left:540.240000pt;}
.xaa_c00499{left:544.800000pt;}
.x9f_c00499{left:558.000000pt;}
.xb0_c00499{left:570.001333pt;}
.x9d_c00499{left:572.880000pt;}
.x97_c00499{left:574.080000pt;}
.xad_c00499{left:577.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_c01000 {
    display:none;
  }
  .loading-indicator_c01000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01000 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01000 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01000" -> "#page-container .classname_c01000")
 */
.pf_c01000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01000 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01000 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01000 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01000 {overflow:visible;}
  }
}
.c_c01000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01000 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01000:after { /* webkit #35443 */
  content: '';
}
.t_c01000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01000 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01000 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01000 { /* info for Javascript */
  display:none;
}
.l_c01000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.000000;font-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_c01000{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);}
.m30_c01000{transform:matrix(0.015580,0.000390,-0.006248,0.249922,0,0);-ms-transform:matrix(0.015580,0.000390,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.015580,0.000390,-0.006248,0.249922,0,0);}
.m71_c01000{transform:matrix(0.016428,0.000263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016428,0.000263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016428,0.000263,-0.003999,0.249968,0,0);}
.mbe_c01000{transform:matrix(0.017674,0.000230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.017674,0.000230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.017674,0.000230,-0.003250,0.249979,0,0);}
.mb4_c01000{transform:matrix(0.018108,0.000235,-0.003250,0.249979,0,0);-ms-transform:matrix(0.018108,0.000235,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.018108,0.000235,-0.003250,0.249979,0,0);}
.m104_c01000{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.md9_c01000{transform:matrix(0.022115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022115,0.000000,0.000000,0.250000,0,0);}
.m43_c01000{transform:matrix(0.023697,0.000379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.023697,0.000379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.023697,0.000379,-0.003999,0.249968,0,0);}
.m120_c01000{transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024470,0.000000,0.000000,0.250000,0,0);}
.md8_c01000{transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045590,0.000000,0.000000,0.250000,0,0);}
.m6d_c01000{transform:matrix(0.052588,0.000841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.052588,0.000841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.052588,0.000841,-0.003999,0.249968,0,0);}
.m12b_c01000{transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);}
.mce_c01000{transform:matrix(0.078563,0.001021,-0.003250,0.249979,0,0);-ms-transform:matrix(0.078563,0.001021,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.078563,0.001021,-0.003250,0.249979,0,0);}
.m76_c01000{transform:matrix(0.091538,0.001465,-0.003999,0.249968,0,0);-ms-transform:matrix(0.091538,0.001465,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.091538,0.001465,-0.003999,0.249968,0,0);}
.m5e_c01000{transform:matrix(0.094528,0.001512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.094528,0.001512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.094528,0.001512,-0.003999,0.249968,0,0);}
.m3d_c01000{transform:matrix(0.105372,0.002634,-0.006248,0.249922,0,0);-ms-transform:matrix(0.105372,0.002634,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.105372,0.002634,-0.006248,0.249922,0,0);}
.mf3_c01000{transform:matrix(0.111825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111825,0.000000,0.000000,0.250000,0,0);}
.mae_c01000{transform:matrix(0.115315,0.001499,-0.003250,0.249979,0,0);-ms-transform:matrix(0.115315,0.001499,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.115315,0.001499,-0.003250,0.249979,0,0);}
.m52_c01000{transform:matrix(0.116410,0.001863,-0.003999,0.249968,0,0);-ms-transform:matrix(0.116410,0.001863,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.116410,0.001863,-0.003999,0.249968,0,0);}
.m1b_c01000{transform:matrix(0.117648,0.001294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.117648,0.001294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.117648,0.001294,-0.002750,0.249985,0,0);}
.maf_c01000{transform:matrix(0.118105,0.001535,-0.003250,0.249979,0,0);-ms-transform:matrix(0.118105,0.001535,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.118105,0.001535,-0.003250,0.249979,0,0);}
.mb0_c01000{transform:matrix(0.124255,0.001615,-0.003250,0.249979,0,0);-ms-transform:matrix(0.124255,0.001615,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.124255,0.001615,-0.003250,0.249979,0,0);}
.m11b_c01000{transform:matrix(0.125048,0.001751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.125048,0.001751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.125048,0.001751,-0.003500,0.249976,0,0);}
.ma6_c01000{transform:matrix(0.131804,0.001713,-0.003250,0.249979,0,0);-ms-transform:matrix(0.131804,0.001713,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.131804,0.001713,-0.003250,0.249979,0,0);}
.mb2_c01000{transform:matrix(0.132204,0.001719,-0.003250,0.249979,0,0);-ms-transform:matrix(0.132204,0.001719,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.132204,0.001719,-0.003250,0.249979,0,0);}
.mad_c01000{transform:matrix(0.138533,0.001801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.138533,0.001801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.138533,0.001801,-0.003250,0.249979,0,0);}
.mb1_c01000{transform:matrix(0.141788,0.001843,-0.003250,0.249979,0,0);-ms-transform:matrix(0.141788,0.001843,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.141788,0.001843,-0.003250,0.249979,0,0);}
.m112_c01000{transform:matrix(0.142866,0.002000,-0.003500,0.249976,0,0);-ms-transform:matrix(0.142866,0.002000,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.142866,0.002000,-0.003500,0.249976,0,0);}
.m22_c01000{transform:matrix(0.143016,0.001573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143016,0.001573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143016,0.001573,-0.002750,0.249985,0,0);}
.mf0_c01000{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.m9d_c01000{transform:matrix(0.147658,0.001477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147658,0.001477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147658,0.001477,-0.002500,0.249988,0,0);}
.m117_c01000{transform:matrix(0.147761,0.002069,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147761,0.002069,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147761,0.002069,-0.003500,0.249976,0,0);}
.mb5_c01000{transform:matrix(0.148922,0.001936,-0.003250,0.249979,0,0);-ms-transform:matrix(0.148922,0.001936,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.148922,0.001936,-0.003250,0.249979,0,0);}
.ma5_c01000{transform:matrix(0.149327,0.001941,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149327,0.001941,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149327,0.001941,-0.003250,0.249979,0,0);}
.m17_c01000{transform:matrix(0.151286,0.001664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151286,0.001664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151286,0.001664,-0.002750,0.249985,0,0);}
.ma1_c01000{transform:matrix(0.151572,0.001970,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151572,0.001970,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151572,0.001970,-0.003250,0.249979,0,0);}
.m59_c01000{transform:matrix(0.151596,0.002426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151596,0.002426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151596,0.002426,-0.003999,0.249968,0,0);}
.m92_c01000{transform:matrix(0.152727,0.001527,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152727,0.001527,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152727,0.001527,-0.002500,0.249988,0,0);}
.m5a_c01000{transform:matrix(0.154390,0.002470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154390,0.002470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154390,0.002470,-0.003999,0.249968,0,0);}
.m57_c01000{transform:matrix(0.154935,0.002479,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154935,0.002479,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154935,0.002479,-0.003999,0.249968,0,0);}
.me_c01000{transform:matrix(0.155091,0.001706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155091,0.001706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155091,0.001706,-0.002750,0.249985,0,0);}
.m10d_c01000{transform:matrix(0.155245,0.002173,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155245,0.002173,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155245,0.002173,-0.003500,0.249976,0,0);}
.m4a_c01000{transform:matrix(0.155460,0.002487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155460,0.002487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155460,0.002487,-0.003999,0.249968,0,0);}
.ma8_c01000{transform:matrix(0.155487,0.002021,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155487,0.002021,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155487,0.002021,-0.003250,0.249979,0,0);}
.m9a_c01000{transform:matrix(0.155837,0.001558,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155837,0.001558,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155837,0.001558,-0.002500,0.249988,0,0);}
.m11c_c01000{transform:matrix(0.156160,0.002186,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156160,0.002186,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156160,0.002186,-0.003500,0.249976,0,0);}
.maa_c01000{transform:matrix(0.156377,0.002033,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156377,0.002033,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156377,0.002033,-0.003250,0.249979,0,0);}
.m11a_c01000{transform:matrix(0.156910,0.002197,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156910,0.002197,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156910,0.002197,-0.003500,0.249976,0,0);}
.m115_c01000{transform:matrix(0.157070,0.002199,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157070,0.002199,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157070,0.002199,-0.003500,0.249976,0,0);}
.m93_c01000{transform:matrix(0.159207,0.001592,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159207,0.001592,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159207,0.001592,-0.002500,0.249988,0,0);}
.mc4_c01000{transform:matrix(0.159866,0.002078,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159866,0.002078,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159866,0.002078,-0.003250,0.249979,0,0);}
.m89_c01000{transform:matrix(0.160297,0.001603,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160297,0.001603,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160297,0.001603,-0.002500,0.249988,0,0);}
.m88_c01000{transform:matrix(0.160637,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160637,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160637,0.001606,-0.002500,0.249988,0,0);}
.mf1_c01000{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);}
.mef_c01000{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);}
.ma9_c01000{transform:matrix(0.161386,0.002098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161386,0.002098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161386,0.002098,-0.003250,0.249979,0,0);}
.med_c01000{transform:matrix(0.162365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162365,0.000000,0.000000,0.250000,0,0);}
.m14_c01000{transform:matrix(0.163790,0.001802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163790,0.001802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163790,0.001802,-0.002750,0.249985,0,0);}
.m124_c01000{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);}
.m87_c01000{transform:matrix(0.164427,0.001644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164427,0.001644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164427,0.001644,-0.002500,0.249988,0,0);}
.m83_c01000{transform:matrix(0.164456,0.002138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164456,0.002138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164456,0.002138,-0.003250,0.249979,0,0);}
.m16_c01000{transform:matrix(0.164575,0.001810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164575,0.001810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164575,0.001810,-0.002750,0.249985,0,0);}
.m60_c01000{transform:matrix(0.165379,0.002646,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165379,0.002646,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165379,0.002646,-0.003999,0.249968,0,0);}
.m8d_c01000{transform:matrix(0.165572,0.001656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165572,0.001656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165572,0.001656,-0.002500,0.249988,0,0);}
.m3a_c01000{transform:matrix(0.166623,0.004166,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166623,0.004166,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166623,0.004166,-0.006248,0.249922,0,0);}
.m12_c01000{transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168010,0.001848,-0.002750,0.249985,0,0);}
.m18_c01000{transform:matrix(0.168065,0.001849,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168065,0.001849,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168065,0.001849,-0.002750,0.249985,0,0);}
.m7c_c01000{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);}
.m10f_c01000{transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168648,0.002361,-0.003500,0.249976,0,0);}
.m20_c01000{transform:matrix(0.169260,0.001862,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169260,0.001862,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169260,0.001862,-0.002750,0.249985,0,0);}
.ma7_c01000{transform:matrix(0.169491,0.002203,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169491,0.002203,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169491,0.002203,-0.003250,0.249979,0,0);}
.m8b_c01000{transform:matrix(0.169877,0.001699,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169877,0.001699,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169877,0.001699,-0.002500,0.249988,0,0);}
.m50_c01000{transform:matrix(0.170023,0.002720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170023,0.002720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170023,0.002720,-0.003999,0.249968,0,0);}
.me7_c01000{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);}
.mf6_c01000{transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170220,0.000000,0.000000,0.250000,0,0);}
.mec_c01000{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);}
.m75_c01000{transform:matrix(0.170598,0.002730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170598,0.002730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170598,0.002730,-0.003999,0.249968,0,0);}
.m126_c01000{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);}
.m13_c01000{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);}
.m9e_c01000{transform:matrix(0.172430,0.002242,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172430,0.002242,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172430,0.002242,-0.003250,0.249979,0,0);}
.md0_c01000{transform:matrix(0.173040,0.002250,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173040,0.002250,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173040,0.002250,-0.003250,0.249979,0,0);}
.mcf_c01000{transform:matrix(0.173315,0.002253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173315,0.002253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173315,0.002253,-0.003250,0.249979,0,0);}
.mac_c01000{transform:matrix(0.173460,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173460,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173460,0.002255,-0.003250,0.249979,0,0);}
.m69_c01000{transform:matrix(0.173923,0.002783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173923,0.002783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173923,0.002783,-0.003999,0.249968,0,0);}
.m7b_c01000{transform:matrix(0.174038,0.002785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174038,0.002785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174038,0.002785,-0.003999,0.249968,0,0);}
.m45_c01000{transform:matrix(0.174483,0.002792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174483,0.002792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174483,0.002792,-0.003999,0.249968,0,0);}
.m54_c01000{transform:matrix(0.174533,0.002793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174533,0.002793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174533,0.002793,-0.003999,0.249968,0,0);}
.mb3_c01000{transform:matrix(0.175030,0.002275,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175030,0.002275,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175030,0.002275,-0.003250,0.249979,0,0);}
.m8f_c01000{transform:matrix(0.175031,0.001750,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175031,0.001750,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175031,0.001750,-0.002500,0.249988,0,0);}
.m56_c01000{transform:matrix(0.175568,0.002809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175568,0.002809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175568,0.002809,-0.003999,0.249968,0,0);}
.mfa_c01000{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);}
.m10e_c01000{transform:matrix(0.176168,0.002466,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176168,0.002466,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176168,0.002466,-0.003500,0.249976,0,0);}
.m2d_c01000{transform:matrix(0.176464,0.001941,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176464,0.001941,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176464,0.001941,-0.002750,0.249985,0,0);}
.m91_c01000{transform:matrix(0.176696,0.001767,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176696,0.001767,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176696,0.001767,-0.002500,0.249988,0,0);}
.m127_c01000{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);}
.m128_c01000{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);}
.m55_c01000{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);}
.m19_c01000{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);}
.m103_c01000{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);}
.m61_c01000{transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178452,0.002855,-0.003999,0.249968,0,0);}
.m129_c01000{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);}
.m5d_c01000{transform:matrix(0.179332,0.002869,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179332,0.002869,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179332,0.002869,-0.003999,0.249968,0,0);}
.m15_c01000{transform:matrix(0.180034,0.001980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180034,0.001980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180034,0.001980,-0.002750,0.249985,0,0);}
.m119_c01000{transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180092,0.002521,-0.003500,0.249976,0,0);}
.m95_c01000{transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180246,0.001802,-0.002500,0.249988,0,0);}
.m2b_c01000{transform:matrix(0.180624,0.001987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180624,0.001987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180624,0.001987,-0.002750,0.249985,0,0);}
.m110_c01000{transform:matrix(0.180957,0.002533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180957,0.002533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180957,0.002533,-0.003500,0.249976,0,0);}
.m62_c01000{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);}
.m42_c01000{transform:matrix(0.181283,0.004532,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181283,0.004532,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181283,0.004532,-0.006248,0.249922,0,0);}
.m23_c01000{transform:matrix(0.181954,0.002001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181954,0.002001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181954,0.002001,-0.002750,0.249985,0,0);}
.m3f_c01000{transform:matrix(0.182028,0.004551,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182028,0.004551,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182028,0.004551,-0.006248,0.249922,0,0);}
.mf9_c01000{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);}
.md_c01000{transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182829,0.002011,-0.002750,0.249985,0,0);}
.m9b_c01000{transform:matrix(0.182851,0.001829,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182851,0.001829,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182851,0.001829,-0.002500,0.249988,0,0);}
.m8e_c01000{transform:matrix(0.182986,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182986,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182986,0.001830,-0.002500,0.249988,0,0);}
.m66_c01000{transform:matrix(0.183961,0.002943,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183961,0.002943,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183961,0.002943,-0.003999,0.249968,0,0);}
.m11d_c01000{transform:matrix(0.184117,0.002578,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184117,0.002578,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184117,0.002578,-0.003500,0.249976,0,0);}
.m1e_c01000{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);}
.m2a_c01000{transform:matrix(0.184579,0.002030,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184579,0.002030,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184579,0.002030,-0.002750,0.249985,0,0);}
.m21_c01000{transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186044,0.002046,-0.002750,0.249985,0,0);}
.mf5_c01000{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);}
.m10a_c01000{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);}
.m78_c01000{transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187926,0.003007,-0.003999,0.249968,0,0);}
.m118_c01000{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);}
.m73_c01000{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);}
.mb_c01000{transform:matrix(0.189194,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189194,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189194,0.002081,-0.002750,0.249985,0,0);}
.mf7_c01000{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);}
.m36_c01000{transform:matrix(0.189391,0.004735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189391,0.004735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189391,0.004735,-0.006248,0.249922,0,0);}
.m123_c01000{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);}
.ma0_c01000{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);}
.m37_c01000{transform:matrix(0.190246,0.004756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190246,0.004756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190246,0.004756,-0.006248,0.249922,0,0);}
.m3b_c01000{transform:matrix(0.190985,0.004775,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190985,0.004775,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190985,0.004775,-0.006248,0.249922,0,0);}
.me3_c01000{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);}
.m49_c01000{transform:matrix(0.191366,0.003062,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191366,0.003062,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191366,0.003062,-0.003999,0.249968,0,0);}
.m25_c01000{transform:matrix(0.191603,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191603,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191603,0.002108,-0.002750,0.249985,0,0);}
.m81_c01000{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);}
.mda_c01000{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);}
.m9c_c01000{transform:matrix(0.193425,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193425,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193425,0.001934,-0.002500,0.249988,0,0);}
.m51_c01000{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);}
.m1d_c01000{transform:matrix(0.194963,0.002145,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194963,0.002145,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194963,0.002145,-0.002750,0.249985,0,0);}
.m1c_c01000{transform:matrix(0.195003,0.002145,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195003,0.002145,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195003,0.002145,-0.002750,0.249985,0,0);}
.mfb_c01000{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);}
.m4e_c01000{transform:matrix(0.195050,0.003121,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195050,0.003121,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195050,0.003121,-0.003999,0.249968,0,0);}
.m41_c01000{transform:matrix(0.195094,0.004877,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195094,0.004877,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195094,0.004877,-0.006248,0.249922,0,0);}
.m121_c01000{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);}
.m1f_c01000{transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195503,0.002151,-0.002750,0.249985,0,0);}
.m9_c01000{transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196138,0.002158,-0.002750,0.249985,0,0);}
.mf8_c01000{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);}
.md7_c01000{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);}
.m6b_c01000{transform:matrix(0.197115,0.003154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197115,0.003154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197115,0.003154,-0.003999,0.249968,0,0);}
.m6c_c01000{transform:matrix(0.197120,0.003154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197120,0.003154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197120,0.003154,-0.003999,0.249968,0,0);}
.m85_c01000{transform:matrix(0.197120,0.001971,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197120,0.001971,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197120,0.001971,-0.002500,0.249988,0,0);}
.m35_c01000{transform:matrix(0.197703,0.004943,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197703,0.004943,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197703,0.004943,-0.006248,0.249922,0,0);}
.m7e_c01000{transform:matrix(0.197868,0.002572,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197868,0.002572,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197868,0.002572,-0.003250,0.249979,0,0);}
.ma3_c01000{transform:matrix(0.198323,0.002578,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198323,0.002578,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198323,0.002578,-0.003250,0.249979,0,0);}
.mdd_c01000{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);}
.mc_c01000{transform:matrix(0.199248,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199248,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199248,0.002192,-0.002750,0.249985,0,0);}
.mde_c01000{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);}
.ma2_c01000{transform:matrix(0.200213,0.002603,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200213,0.002603,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200213,0.002603,-0.003250,0.249979,0,0);}
.mfe_c01000{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);}
.m9f_c01000{transform:matrix(0.200783,0.002610,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200783,0.002610,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200783,0.002610,-0.003250,0.249979,0,0);}
.me0_c01000{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);}
.m86_c01000{transform:matrix(0.201490,0.002015,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201490,0.002015,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201490,0.002015,-0.002500,0.249988,0,0);}
.m4f_c01000{transform:matrix(0.201639,0.003226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201639,0.003226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201639,0.003226,-0.003999,0.249968,0,0);}
.mba_c01000{transform:matrix(0.201738,0.002623,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201738,0.002623,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201738,0.002623,-0.003250,0.249979,0,0);}
.mf4_c01000{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);}
.m38_c01000{transform:matrix(0.203571,0.005089,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203571,0.005089,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203571,0.005089,-0.006248,0.249922,0,0);}
.m11e_c01000{transform:matrix(0.204075,0.002857,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204075,0.002857,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204075,0.002857,-0.003500,0.249976,0,0);}
.m90_c01000{transform:matrix(0.204090,0.002041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204090,0.002041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204090,0.002041,-0.002500,0.249988,0,0);}
.mbb_c01000{transform:matrix(0.204173,0.002654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204173,0.002654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204173,0.002654,-0.003250,0.249979,0,0);}
.m4b_c01000{transform:matrix(0.204224,0.003268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204224,0.003268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204224,0.003268,-0.003999,0.249968,0,0);}
.m67_c01000{transform:matrix(0.204439,0.003271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204439,0.003271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204439,0.003271,-0.003999,0.249968,0,0);}
.m63_c01000{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);}
.m108_c01000{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);}
.m8a_c01000{transform:matrix(0.204600,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204600,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204600,0.002046,-0.002500,0.249988,0,0);}
.mc8_c01000{transform:matrix(0.205068,0.002666,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205068,0.002666,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205068,0.002666,-0.003250,0.249979,0,0);}
.mc2_c01000{transform:matrix(0.205413,0.002670,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205413,0.002670,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205413,0.002670,-0.003250,0.249979,0,0);}
.m109_c01000{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.mdf_c01000{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);}
.m125_c01000{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m33_c01000{transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);}
.m80_c01000{transform:matrix(0.208432,0.002710,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208432,0.002710,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208432,0.002710,-0.003250,0.249979,0,0);}
.m28_c01000{transform:matrix(0.209092,0.002300,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209092,0.002300,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209092,0.002300,-0.002750,0.249985,0,0);}
.md2_c01000{transform:matrix(0.209447,0.002723,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209447,0.002723,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209447,0.002723,-0.003250,0.249979,0,0);}
.mdb_c01000{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);}
.m7_c01000{transform:matrix(0.211802,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211802,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211802,0.002330,-0.002750,0.249985,0,0);}
.m8c_c01000{transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212294,0.002123,-0.002500,0.249988,0,0);}
.m114_c01000{transform:matrix(0.212344,0.002973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212344,0.002973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212344,0.002973,-0.003500,0.249976,0,0);}
.m74_c01000{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);}
.m6a_c01000{transform:matrix(0.215952,0.003455,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215952,0.003455,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215952,0.003455,-0.003999,0.249968,0,0);}
.me5_c01000{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);}
.m47_c01000{transform:matrix(0.219487,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219487,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219487,0.003512,-0.003999,0.249968,0,0);}
.m8_c01000{transform:matrix(0.220167,0.002422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220167,0.002422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220167,0.002422,-0.002750,0.249985,0,0);}
.m102_c01000{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);}
.m12a_c01000{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);}
.m64_c01000{transform:matrix(0.221047,0.003537,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221047,0.003537,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221047,0.003537,-0.003999,0.249968,0,0);}
.m106_c01000{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.ma4_c01000{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);}
.mb9_c01000{transform:matrix(0.222171,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222171,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222171,0.002888,-0.003250,0.249979,0,0);}
.m107_c01000{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);}
.m105_c01000{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);}
.m11_c01000{transform:matrix(0.224681,0.002471,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224681,0.002471,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224681,0.002471,-0.002750,0.249985,0,0);}
.meb_c01000{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);}
.m12c_c01000{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);}
.md3_c01000{transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);}
.m48_c01000{transform:matrix(0.229071,0.003665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229071,0.003665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229071,0.003665,-0.003999,0.249968,0,0);}
.me4_c01000{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);}
.mb8_c01000{transform:matrix(0.231295,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231295,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231295,0.003007,-0.003250,0.249979,0,0);}
.m32_c01000{transform:matrix(0.231388,0.005785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231388,0.005785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231388,0.005785,-0.006248,0.249922,0,0);}
.m1_c01000{transform:matrix(0.231431,0.002546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231431,0.002546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231431,0.002546,-0.002750,0.249985,0,0);}
.m24_c01000{transform:matrix(0.232821,0.002561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232821,0.002561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232821,0.002561,-0.002750,0.249985,0,0);}
.mc1_c01000{transform:matrix(0.233445,0.003035,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233445,0.003035,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233445,0.003035,-0.003250,0.249979,0,0);}
.m39_c01000{transform:matrix(0.233747,0.005844,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233747,0.005844,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233747,0.005844,-0.006248,0.249922,0,0);}
.m70_c01000{transform:matrix(0.233910,0.003743,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233910,0.003743,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233910,0.003743,-0.003999,0.249968,0,0);}
.mdc_c01000{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.mc5_c01000{transform:matrix(0.234455,0.003048,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234455,0.003048,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234455,0.003048,-0.003250,0.249979,0,0);}
.m122_c01000{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);}
.m5f_c01000{transform:matrix(0.235335,0.003765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235335,0.003765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235335,0.003765,-0.003999,0.249968,0,0);}
.m5b_c01000{transform:matrix(0.237335,0.003797,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237335,0.003797,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237335,0.003797,-0.003999,0.249968,0,0);}
.mb7_c01000{transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);}
.m65_c01000{transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);}
.m94_c01000{transform:matrix(0.238778,0.002388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238778,0.002388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238778,0.002388,-0.002500,0.249988,0,0);}
.m98_c01000{transform:matrix(0.239243,0.002392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239243,0.002392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239243,0.002392,-0.002500,0.249988,0,0);}
.mf_c01000{transform:matrix(0.240160,0.002642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240160,0.002642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240160,0.002642,-0.002750,0.249985,0,0);}
.m77_c01000{transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241639,0.003866,-0.003999,0.249968,0,0);}
.m96_c01000{transform:matrix(0.244268,0.002443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244268,0.002443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244268,0.002443,-0.002500,0.249988,0,0);}
.m113_c01000{transform:matrix(0.245011,0.003430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245011,0.003430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245011,0.003430,-0.003500,0.249976,0,0);}
.md5_c01000{transform:matrix(0.246944,0.003210,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246944,0.003210,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246944,0.003210,-0.003250,0.249979,0,0);}
.mee_c01000{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);}
.m99_c01000{transform:matrix(0.248178,0.002482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248178,0.002482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248178,0.002482,-0.002500,0.249988,0,0);}
.m40_c01000{transform:matrix(0.249937,0.006248,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249937,0.006248,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249937,0.006248,-0.006248,0.249922,0,0);}
.m10_c01000{transform:matrix(0.252875,0.002782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252875,0.002782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252875,0.002782,-0.002750,0.249985,0,0);}
.mfd_c01000{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);}
.md1_c01000{transform:matrix(0.255428,0.003321,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255428,0.003321,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255428,0.003321,-0.003250,0.249979,0,0);}
.mbf_c01000{transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);}
.mcc_c01000{transform:matrix(0.255778,0.003325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255778,0.003325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255778,0.003325,-0.003250,0.249979,0,0);}
.m84_c01000{transform:matrix(0.256567,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256567,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256567,0.002566,-0.002500,0.249988,0,0);}
.me9_c01000{transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);}
.mff_c01000{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);}
.m7f_c01000{transform:matrix(0.262823,0.003417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262823,0.003417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262823,0.003417,-0.003250,0.249979,0,0);}
.m2c_c01000{transform:matrix(0.263609,0.002900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263609,0.002900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263609,0.002900,-0.002750,0.249985,0,0);}
.mbc_c01000{transform:matrix(0.264188,0.003434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264188,0.003434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264188,0.003434,-0.003250,0.249979,0,0);}
.m27_c01000{transform:matrix(0.264484,0.002909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264484,0.002909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264484,0.002909,-0.002750,0.249985,0,0);}
.m111_c01000{transform:matrix(0.264759,0.003707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264759,0.003707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264759,0.003707,-0.003500,0.249976,0,0);}
.m97_c01000{transform:matrix(0.264837,0.002648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264837,0.002648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264837,0.002648,-0.002500,0.249988,0,0);}
.m68_c01000{transform:matrix(0.267826,0.004285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267826,0.004285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267826,0.004285,-0.003999,0.249968,0,0);}
.m79_c01000{transform:matrix(0.271190,0.004339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271190,0.004339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271190,0.004339,-0.003999,0.249968,0,0);}
.ma_c01000{transform:matrix(0.274093,0.003015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274093,0.003015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274093,0.003015,-0.002750,0.249985,0,0);}
.m53_c01000{transform:matrix(0.274945,0.004399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274945,0.004399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274945,0.004399,-0.003999,0.249968,0,0);}
.me2_c01000{transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276570,0.000000,0.000000,0.250000,0,0);}
.m1a_c01000{transform:matrix(0.286938,0.003156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286938,0.003156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286938,0.003156,-0.002750,0.249985,0,0);}
.m3e_c01000{transform:matrix(0.288365,0.007209,-0.006248,0.249922,0,0);-ms-transform:matrix(0.288365,0.007209,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.288365,0.007209,-0.006248,0.249922,0,0);}
.m7d_c01000{transform:matrix(0.289586,0.003765,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289586,0.003765,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289586,0.003765,-0.003250,0.249979,0,0);}
.m72_c01000{transform:matrix(0.290393,0.004646,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290393,0.004646,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290393,0.004646,-0.003999,0.249968,0,0);}
.mc0_c01000{transform:matrix(0.292905,0.003808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292905,0.003808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292905,0.003808,-0.003250,0.249979,0,0);}
.m6f_c01000{transform:matrix(0.294872,0.004718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.294872,0.004718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.294872,0.004718,-0.003999,0.249968,0,0);}
.m10b_c01000{transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295835,0.000000,0.000000,0.250000,0,0);}
.md6_c01000{transform:matrix(0.297610,0.003869,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297610,0.003869,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297610,0.003869,-0.003250,0.249979,0,0);}
.m82_c01000{transform:matrix(0.300390,0.003905,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300390,0.003905,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300390,0.003905,-0.003250,0.249979,0,0);}
.m0_c01000{transform:matrix(0.301282,0.003314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301282,0.003314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301282,0.003314,-0.002750,0.249985,0,0);}
.m7a_c01000{transform:matrix(0.303621,0.004858,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303621,0.004858,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303621,0.004858,-0.003999,0.249968,0,0);}
.m11f_c01000{transform:matrix(0.305275,0.004274,-0.003500,0.249976,0,0);-ms-transform:matrix(0.305275,0.004274,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.305275,0.004274,-0.003500,0.249976,0,0);}
.m2e_c01000{transform:matrix(0.308759,0.007719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.308759,0.007719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.308759,0.007719,-0.006248,0.249922,0,0);}
.mbd_c01000{transform:matrix(0.309454,0.004023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.309454,0.004023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.309454,0.004023,-0.003250,0.249979,0,0);}
.mfc_c01000{transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311805,0.000000,0.000000,0.250000,0,0);}
.me6_c01000{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);}
.m3_c01000{transform:matrix(0.314951,0.003464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.314951,0.003464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.314951,0.003464,-0.002750,0.249985,0,0);}
.mab_c01000{transform:matrix(0.323003,0.004199,-0.003250,0.249979,0,0);-ms-transform:matrix(0.323003,0.004199,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.323003,0.004199,-0.003250,0.249979,0,0);}
.md4_c01000{transform:matrix(0.325103,0.004226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.325103,0.004226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.325103,0.004226,-0.003250,0.249979,0,0);}
.m29_c01000{transform:matrix(0.337320,0.003711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337320,0.003711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337320,0.003711,-0.002750,0.249985,0,0);}
.m58_c01000{transform:matrix(0.342711,0.005483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.342711,0.005483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.342711,0.005483,-0.003999,0.249968,0,0);}
.mc7_c01000{transform:matrix(0.343191,0.004461,-0.003250,0.249979,0,0);-ms-transform:matrix(0.343191,0.004461,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.343191,0.004461,-0.003250,0.249979,0,0);}
.m6e_c01000{transform:matrix(0.346146,0.005538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.346146,0.005538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.346146,0.005538,-0.003999,0.249968,0,0);}
.m31_c01000{transform:matrix(0.346237,0.008656,-0.006248,0.249922,0,0);-ms-transform:matrix(0.346237,0.008656,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.346237,0.008656,-0.006248,0.249922,0,0);}
.m4c_c01000{transform:matrix(0.348110,0.005570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.348110,0.005570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.348110,0.005570,-0.003999,0.249968,0,0);}
.m4d_c01000{transform:matrix(0.353365,0.005654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.353365,0.005654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.353365,0.005654,-0.003999,0.249968,0,0);}
.mc3_c01000{transform:matrix(0.355105,0.004616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.355105,0.004616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.355105,0.004616,-0.003250,0.249979,0,0);}
.m44_c01000{transform:matrix(0.356264,0.005700,-0.003999,0.249968,0,0);-ms-transform:matrix(0.356264,0.005700,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.356264,0.005700,-0.003999,0.249968,0,0);}
.mc6_c01000{transform:matrix(0.360000,0.004680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.360000,0.004680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.360000,0.004680,-0.003250,0.249979,0,0);}
.m5c_c01000{transform:matrix(0.363154,0.005810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.363154,0.005810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.363154,0.005810,-0.003999,0.249968,0,0);}
.mcd_c01000{transform:matrix(0.371399,0.004828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.371399,0.004828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.371399,0.004828,-0.003250,0.249979,0,0);}
.mf2_c01000{transform:matrix(0.376025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376025,0.000000,0.000000,0.250000,0,0);}
.m12d_c01000{transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383545,0.000000,0.000000,0.250000,0,0);}
.m2f_c01000{transform:matrix(0.391818,0.009795,-0.006248,0.249922,0,0);-ms-transform:matrix(0.391818,0.009795,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.391818,0.009795,-0.006248,0.249922,0,0);}
.me8_c01000{transform:matrix(0.393225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393225,0.000000,0.000000,0.250000,0,0);}
.m5_c01000{transform:matrix(0.395561,0.004351,-0.002750,0.249985,0,0);-ms-transform:matrix(0.395561,0.004351,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.395561,0.004351,-0.002750,0.249985,0,0);}
.mc9_c01000{transform:matrix(0.422854,0.005497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.422854,0.005497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.422854,0.005497,-0.003250,0.249979,0,0);}
.m3c_c01000{transform:matrix(0.458862,0.011472,-0.006248,0.249922,0,0);-ms-transform:matrix(0.458862,0.011472,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.458862,0.011472,-0.006248,0.249922,0,0);}
.m26_c01000{transform:matrix(0.466727,0.005134,-0.002750,0.249985,0,0);-ms-transform:matrix(0.466727,0.005134,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.466727,0.005134,-0.002750,0.249985,0,0);}
.m6_c01000{transform:matrix(0.467052,0.005138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.467052,0.005138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.467052,0.005138,-0.002750,0.249985,0,0);}
.mb6_c01000{transform:matrix(0.478040,0.006215,-0.003250,0.249979,0,0);-ms-transform:matrix(0.478040,0.006215,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.478040,0.006215,-0.003250,0.249979,0,0);}
.mea_c01000{transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478350,0.000000,0.000000,0.250000,0,0);}
.m46_c01000{transform:matrix(0.516104,0.008258,-0.003999,0.249968,0,0);-ms-transform:matrix(0.516104,0.008258,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.516104,0.008258,-0.003999,0.249968,0,0);}
.m101_c01000{transform:matrix(0.516455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516455,0.000000,0.000000,0.250000,0,0);}
.m100_c01000{transform:matrix(0.527600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527600,0.000000,0.000000,0.250000,0,0);}
.m4_c01000{transform:matrix(0.533423,0.005868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.533423,0.005868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.533423,0.005868,-0.002750,0.249985,0,0);}
.m34_c01000{transform:matrix(0.650937,0.016273,-0.006248,0.249922,0,0);-ms-transform:matrix(0.650937,0.016273,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.650937,0.016273,-0.006248,0.249922,0,0);}
.m10c_c01000{transform:matrix(0.656150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656150,0.000000,0.000000,0.250000,0,0);}
.m2_c01000{transform:matrix(0.782323,0.008606,-0.002750,0.249985,0,0);-ms-transform:matrix(0.782323,0.008606,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.782323,0.008606,-0.002750,0.249985,0,0);}
.mca_c01000{transform:matrix(0.806772,0.010488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.806772,0.010488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.806772,0.010488,-0.003250,0.249979,0,0);}
.m116_c01000{transform:matrix(0.908571,0.012720,-0.003500,0.249976,0,0);-ms-transform:matrix(0.908571,0.012720,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.908571,0.012720,-0.003500,0.249976,0,0);}
.mcb_c01000{transform:matrix(0.990001,0.012870,-0.003250,0.249979,0,0);-ms-transform:matrix(0.990001,0.012870,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.990001,0.012870,-0.003250,0.249979,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls0_c01000{letter-spacing:0.000000px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:0.000000px;}
.fc0_c01000{color:transparent;}
.fs11_c01000{font-size:48.304081px;}
.fs18_c01000{font-size:49.350000px;}
.fs12_c01000{font-size:49.354170px;}
.fs16_c01000{font-size:52.500000px;}
.fs13_c01000{font-size:54.600000px;}
.fs15_c01000{font-size:55.650000px;}
.fs19_c01000{font-size:57.750000px;}
.fsf_c01000{font-size:59.855057px;}
.fs17_c01000{font-size:59.855865px;}
.fs14_c01000{font-size:63.000000px;}
.fsd_c01000{font-size:69.303465px;}
.fs0_c01000{font-size:69.304193px;}
.fs7_c01000{font-size:69.308870px;}
.fs5_c01000{font-size:69.321653px;}
.fse_c01000{font-size:70.353517px;}
.fs1_c01000{font-size:70.354256px;}
.fsb_c01000{font-size:70.359004px;}
.fs2_c01000{font-size:71.404320px;}
.fs9_c01000{font-size:71.409139px;}
.fsc_c01000{font-size:72.456122px;}
.fs8_c01000{font-size:72.459273px;}
.fs6_c01000{font-size:72.472637px;}
.fs3_c01000{font-size:73.504447px;}
.fsa_c01000{font-size:73.509407px;}
.fs4_c01000{font-size:73.522965px;}
.fs10_c01000{font-size:74.556299px;}
.fs1a_c01000{font-size:243.600000px;}
.y0_c01000{bottom:0.000000px;}
.y11a_c01000{bottom:89.638500px;}
.y119_c01000{bottom:131.971500px;}
.y118_c01000{bottom:134.088000px;}
.y104_c01000{bottom:146.869500px;}
.y103_c01000{bottom:147.384000px;}
.y102_c01000{bottom:147.661500px;}
.y101_c01000{bottom:147.799500px;}
.y100_c01000{bottom:148.132500px;}
.yff_c01000{bottom:148.750500px;}
.yfe_c01000{bottom:148.986000px;}
.yfd_c01000{bottom:149.391000px;}
.yfc_c01000{bottom:149.500500px;}
.yfb_c01000{bottom:149.992500px;}
.yfa_c01000{bottom:150.241500px;}
.yf9_c01000{bottom:150.594000px;}
.yf8_c01000{bottom:150.996000px;}
.yf7_c01000{bottom:151.287000px;}
.yf6_c01000{bottom:151.483500px;}
.yf5_c01000{bottom:151.740000px;}
.yf4_c01000{bottom:163.515000px;}
.yf3_c01000{bottom:164.560500px;}
.yf2_c01000{bottom:164.953500px;}
.yf1_c01000{bottom:165.550500px;}
.yf0_c01000{bottom:166.168500px;}
.yef_c01000{bottom:166.263000px;}
.yee_c01000{bottom:166.614000px;}
.yed_c01000{bottom:166.993500px;}
.yec_c01000{bottom:170.173500px;}
.yeb_c01000{bottom:170.640000px;}
.yea_c01000{bottom:180.610500px;}
.ye9_c01000{bottom:181.446000px;}
.ye8_c01000{bottom:181.969500px;}
.ye7_c01000{bottom:182.398500px;}
.ye6_c01000{bottom:182.605500px;}
.ye5_c01000{bottom:183.208500px;}
.ye4_c01000{bottom:183.702000px;}
.ye3_c01000{bottom:184.512000px;}
.ye2_c01000{bottom:184.741500px;}
.ye1_c01000{bottom:184.935000px;}
.ye0_c01000{bottom:185.548500px;}
.ydf_c01000{bottom:186.162000px;}
.yde_c01000{bottom:186.580500px;}
.ydd_c01000{bottom:186.945000px;}
.ydc_c01000{bottom:187.231500px;}
.ydb_c01000{bottom:187.843500px;}
.yda_c01000{bottom:188.271000px;}
.yd9_c01000{bottom:188.458500px;}
.yd8_c01000{bottom:202.275000px;}
.yd7_c01000{bottom:218.731077px;}
.yd6_c01000{bottom:219.141597px;}
.yd5_c01000{bottom:219.298560px;}
.yd4_c01000{bottom:219.714678px;}
.yd3_c01000{bottom:219.902949px;}
.yd2_c01000{bottom:220.035939px;}
.yd1_c01000{bottom:220.518729px;}
.yd0_c01000{bottom:220.794190px;}
.ycf_c01000{bottom:220.910289px;}
.yce_c01000{bottom:221.169834px;}
.ycd_c01000{bottom:221.251095px;}
.ycc_c01000{bottom:222.210061px;}
.ycb_c01000{bottom:222.947324px;}
.yca_c01000{bottom:223.387629px;}
.yc9_c01000{bottom:236.127529px;}
.yc8_c01000{bottom:236.378501px;}
.yc7_c01000{bottom:236.764086px;}
.yc6_c01000{bottom:237.066119px;}
.yc5_c01000{bottom:237.121294px;}
.yc4_c01000{bottom:237.488975px;}
.yc3_c01000{bottom:237.949337px;}
.yc2_c01000{bottom:238.245089px;}
.yc1_c01000{bottom:238.422747px;}
.yc0_c01000{bottom:238.640114px;}
.ybf_c01000{bottom:238.848567px;}
.ybe_c01000{bottom:239.281332px;}
.ybd_c01000{bottom:239.788698px;}
.ybc_c01000{bottom:240.034384px;}
.ybb_c01000{bottom:240.504050px;}
.yba_c01000{bottom:240.827652px;}
.yb9_c01000{bottom:241.380051px;}
.yb8_c01000{bottom:241.520047px;}
.yb7_c01000{bottom:254.372672px;}
.yb6_c01000{bottom:256.624161px;}
.yb5_c01000{bottom:256.770828px;}
.yb4_c01000{bottom:257.092773px;}
.yb3_c01000{bottom:257.357260px;}
.yb2_c01000{bottom:257.520174px;}
.yb1_c01000{bottom:257.951397px;}
.yb0_c01000{bottom:258.072612px;}
.yaf_c01000{bottom:258.336943px;}
.yae_c01000{bottom:258.646425px;}
.yad_c01000{bottom:259.472420px;}
.yac_c01000{bottom:271.818597px;}
.yab_c01000{bottom:272.261423px;}
.yaa_c01000{bottom:272.636602px;}
.ya9_c01000{bottom:273.039941px;}
.ya8_c01000{bottom:273.847533px;}
.ya7_c01000{bottom:274.022468px;}
.ya6_c01000{bottom:274.194984px;}
.ya5_c01000{bottom:274.469154px;}
.ya4_c01000{bottom:274.602573px;}
.ya3_c01000{bottom:274.991286px;}
.ya2_c01000{bottom:275.504487px;}
.ya1_c01000{bottom:275.901039px;}
.ya0_c01000{bottom:277.045377px;}
.y9f_c01000{bottom:277.831500px;}
.y117_c01000{bottom:288.504585px;}
.y116_c01000{bottom:288.930675px;}
.y115_c01000{bottom:289.112199px;}
.y114_c01000{bottom:289.626279px;}
.y113_c01000{bottom:289.875780px;}
.y112_c01000{bottom:290.583144px;}
.y111_c01000{bottom:291.055014px;}
.y110_c01000{bottom:291.319320px;}
.y10f_c01000{bottom:291.633564px;}
.y10e_c01000{bottom:291.792891px;}
.y10d_c01000{bottom:292.147287px;}
.y10c_c01000{bottom:292.616763px;}
.y10b_c01000{bottom:293.066646px;}
.y10a_c01000{bottom:293.270577px;}
.y109_c01000{bottom:293.486289px;}
.y108_c01000{bottom:294.083319px;}
.y107_c01000{bottom:294.298968px;}
.y106_c01000{bottom:294.915108px;}
.y105_c01000{bottom:295.111500px;}
.y9e_c01000{bottom:342.728910px;}
.y9d_c01000{bottom:343.396785px;}
.y9c_c01000{bottom:343.946865px;}
.y9b_c01000{bottom:344.223360px;}
.y9a_c01000{bottom:344.499315px;}
.y99_c01000{bottom:345.124005px;}
.y98_c01000{bottom:345.603135px;}
.y97_c01000{bottom:345.810720px;}
.y96_c01000{bottom:346.374690px;}
.y95_c01000{bottom:346.679535px;}
.y94_c01000{bottom:365.879505px;}
.y93_c01000{bottom:366.465405px;}
.y92_c01000{bottom:366.893985px;}
.y91_c01000{bottom:367.525365px;}
.y90_c01000{bottom:368.307405px;}
.y8f_c01000{bottom:368.802075px;}
.y8e_c01000{bottom:369.300480px;}
.y8d_c01000{bottom:369.631395px;}
.y8c_c01000{bottom:389.649120px;}
.y8b_c01000{bottom:390.394035px;}
.y8a_c01000{bottom:390.596850px;}
.y89_c01000{bottom:391.055955px;}
.y88_c01000{bottom:391.555455px;}
.y87_c01000{bottom:391.946940px;}
.y86_c01000{bottom:392.324550px;}
.y85_c01000{bottom:392.581500px;}
.y84_c01000{bottom:412.204042px;}
.y83_c01000{bottom:412.654570px;}
.y82_c01000{bottom:412.978563px;}
.y81_c01000{bottom:413.636785px;}
.y80_c01000{bottom:414.532947px;}
.y7f_c01000{bottom:414.668316px;}
.y7e_c01000{bottom:415.066194px;}
.y7d_c01000{bottom:415.801500px;}
.y7c_c01000{bottom:478.458576px;}
.y7b_c01000{bottom:479.386848px;}
.y7a_c01000{bottom:479.730228px;}
.y79_c01000{bottom:480.307872px;}
.y78_c01000{bottom:480.671424px;}
.y77_c01000{bottom:480.917256px;}
.y76_c01000{bottom:481.736904px;}
.y75_c01000{bottom:482.732556px;}
.y74_c01000{bottom:483.470592px;}
.y73_c01000{bottom:484.097292px;}
.y72_c01000{bottom:502.353792px;}
.y71_c01000{bottom:504.061068px;}
.y70_c01000{bottom:504.314148px;}
.y6f_c01000{bottom:504.937176px;}
.y6e_c01000{bottom:506.253216px;}
.y6d_c01000{bottom:525.133548px;}
.y6c_c01000{bottom:525.297000px;}
.y6b_c01000{bottom:525.884712px;}
.y6a_c01000{bottom:526.191864px;}
.y69_c01000{bottom:526.543656px;}
.y68_c01000{bottom:527.783892px;}
.y67_c01000{bottom:528.657816px;}
.y66_c01000{bottom:529.136220px;}
.y65_c01000{bottom:529.463784px;}
.y64_c01000{bottom:547.264512px;}
.y63_c01000{bottom:547.657584px;}
.y62_c01000{bottom:548.279928px;}
.y61_c01000{bottom:548.944152px;}
.y60_c01000{bottom:549.308160px;}
.y5f_c01000{bottom:549.521928px;}
.y5e_c01000{bottom:550.530984px;}
.y5d_c01000{bottom:550.800384px;}
.y5c_c01000{bottom:551.347296px;}
.y5b_c01000{bottom:551.891880px;}
.y5a_c01000{bottom:552.223368px;}
.y59_c01000{bottom:552.687696px;}
.y58_c01000{bottom:569.482680px;}
.y57_c01000{bottom:570.313452px;}
.y56_c01000{bottom:570.885264px;}
.y55_c01000{bottom:571.813260px;}
.y54_c01000{bottom:572.331720px;}
.y53_c01000{bottom:572.536380px;}
.y52_c01000{bottom:573.239544px;}
.y51_c01000{bottom:573.980700px;}
.y50_c01000{bottom:574.438740px;}
.y4f_c01000{bottom:574.766760px;}
.y4e_c01000{bottom:575.014212px;}
.y4d_c01000{bottom:575.370060px;}
.y4c_c01000{bottom:592.707312px;}
.y4b_c01000{bottom:593.140752px;}
.y4a_c01000{bottom:594.067464px;}
.y49_c01000{bottom:594.789288px;}
.y48_c01000{bottom:595.441728px;}
.y47_c01000{bottom:596.392896px;}
.y46_c01000{bottom:596.872392px;}
.y45_c01000{bottom:598.030392px;}
.y44_c01000{bottom:598.593000px;}
.y43_c01000{bottom:661.120500px;}
.y42_c01000{bottom:661.623938px;}
.y41_c01000{bottom:662.518088px;}
.y40_c01000{bottom:662.995313px;}
.y3f_c01000{bottom:663.561225px;}
.y3e_c01000{bottom:663.674438px;}
.y3d_c01000{bottom:664.615200px;}
.y3c_c01000{bottom:665.381175px;}
.y3b_c01000{bottom:666.380288px;}
.y3a_c01000{bottom:666.889088px;}
.y39_c01000{bottom:684.015863px;}
.y38_c01000{bottom:684.827137px;}
.y37_c01000{bottom:685.488150px;}
.y36_c01000{bottom:686.050500px;}
.y35_c01000{bottom:687.106313px;}
.y34_c01000{bottom:687.414563px;}
.y33_c01000{bottom:688.063350px;}
.y32_c01000{bottom:688.768163px;}
.y31_c01000{bottom:705.378675px;}
.y30_c01000{bottom:711.127538px;}
.y2f_c01000{bottom:713.338500px;}
.y2e_c01000{bottom:730.398730px;}
.y2d_c01000{bottom:730.712221px;}
.y2c_c01000{bottom:731.223052px;}
.y2b_c01000{bottom:731.619152px;}
.y2a_c01000{bottom:732.144072px;}
.y29_c01000{bottom:732.516891px;}
.y28_c01000{bottom:732.911423px;}
.y27_c01000{bottom:733.527366px;}
.y26_c01000{bottom:733.854319px;}
.y25_c01000{bottom:751.365595px;}
.y24_c01000{bottom:751.667959px;}
.y23_c01000{bottom:752.003465px;}
.y22_c01000{bottom:752.499958px;}
.y21_c01000{bottom:753.089229px;}
.y20_c01000{bottom:753.496412px;}
.y1f_c01000{bottom:754.250167px;}
.y1e_c01000{bottom:754.721175px;}
.y1d_c01000{bottom:755.519571px;}
.y1c_c01000{bottom:755.818503px;}
.y1b_c01000{bottom:756.537418px;}
.y1a_c01000{bottom:776.651758px;}
.y19_c01000{bottom:777.028016px;}
.y18_c01000{bottom:777.304662px;}
.y17_c01000{bottom:777.908617px;}
.y16_c01000{bottom:778.255921px;}
.y15_c01000{bottom:778.804017px;}
.y14_c01000{bottom:779.151948px;}
.y13_c01000{bottom:779.696215px;}
.y12_c01000{bottom:780.300055px;}
.y11_c01000{bottom:799.672447px;}
.y10_c01000{bottom:800.416849px;}
.yf_c01000{bottom:800.831592px;}
.ye_c01000{bottom:801.306406px;}
.yd_c01000{bottom:801.600627px;}
.yc_c01000{bottom:802.391868px;}
.yb_c01000{bottom:802.657462px;}
.ya_c01000{bottom:803.085437px;}
.y9_c01000{bottom:803.519813px;}
.y8_c01000{bottom:823.391065px;}
.y7_c01000{bottom:824.019204px;}
.y6_c01000{bottom:824.262761px;}
.y5_c01000{bottom:824.747695px;}
.y4_c01000{bottom:825.397432px;}
.y3_c01000{bottom:825.997306px;}
.y2_c01000{bottom:826.177486px;}
.y1_c01000{bottom:826.471500px;}
.h13_c01000{height:48.304081px;}
.h1a_c01000{height:49.350000px;}
.h14_c01000{height:49.354170px;}
.h18_c01000{height:52.500000px;}
.h15_c01000{height:54.600000px;}
.h17_c01000{height:55.650000px;}
.h1b_c01000{height:57.750000px;}
.h11_c01000{height:59.855057px;}
.h19_c01000{height:59.855865px;}
.h16_c01000{height:63.000000px;}
.hf_c01000{height:69.303465px;}
.h2_c01000{height:69.304193px;}
.h9_c01000{height:69.308870px;}
.h7_c01000{height:69.321653px;}
.h10_c01000{height:70.353517px;}
.h3_c01000{height:70.354256px;}
.hd_c01000{height:70.359004px;}
.h4_c01000{height:71.404320px;}
.hb_c01000{height:71.409139px;}
.he_c01000{height:72.456122px;}
.ha_c01000{height:72.459273px;}
.h8_c01000{height:72.472637px;}
.h5_c01000{height:73.504447px;}
.hc_c01000{height:73.509407px;}
.h6_c01000{height:73.522965px;}
.h12_c01000{height:74.556299px;}
.h1c_c01000{height:243.600000px;}
.h1_c01000{height:1005.000000px;}
.h0_c01000{height:1005.150000px;}
.w0_c01000{width:715.200000px;}
.w1_c01000{width:715.500000px;}
.x0_c01000{left:0.000000px;}
.x99_c01000{left:64.147500px;}
.x8f_c01000{left:79.425000px;}
.x87_c01000{left:90.046572px;}
.x6f_c01000{left:91.687500px;}
.x7e_c01000{left:100.059446px;}
.x39_c01000{left:105.363000px;}
.x7f_c01000{left:112.790277px;}
.xa5_c01000{left:114.871500px;}
.x90_c01000{left:120.423000px;}
.x40_c01000{left:131.525724px;}
.x49_c01000{left:133.654944px;}
.x31_c01000{left:136.926038px;}
.x61_c01000{left:138.381000px;}
.xb0_c01000{left:139.590000px;}
.x2a_c01000{left:141.372450px;}
.x11_c01000{left:142.397047px;}
.x1_c01000{left:143.455500px;}
.x70_c01000{left:152.158500px;}
.x41_c01000{left:155.266608px;}
.xa0_c01000{left:158.656500px;}
.x91_c01000{left:161.212500px;}
.x4a_c01000{left:162.675444px;}
.x62_c01000{left:164.076000px;}
.x32_c01000{left:165.202988px;}
.x7b_c01000{left:166.225731px;}
.x21_c01000{left:169.130344px;}
.x2_c01000{left:170.184000px;}
.x42_c01000{left:171.763872px;}
.xb1_c01000{left:173.070000px;}
.xa6_c01000{left:174.285000px;}
.x58_c01000{left:177.252912px;}
.x9_c01000{left:179.981203px;}
.x4b_c01000{left:183.393444px;}
.x2b_c01000{left:185.414850px;}
.x3_c01000{left:186.564000px;}
.xa1_c01000{left:187.729500px;}
.x12_c01000{left:188.836024px;}
.x80_c01000{left:192.407844px;}
.x18_c01000{left:193.411455px;}
.x27_c01000{left:200.089500px;}
.x63_c01000{left:201.837000px;}
.xb2_c01000{left:203.040000px;}
.x92_c01000{left:204.640500px;}
.x88_c01000{left:207.748655px;}
.x6a_c01000{left:210.148515px;}
.x3a_c01000{left:212.901000px;}
.xa_c01000{left:215.614807px;}
.x4c_c01000{left:217.429944px;}
.x22_c01000{left:220.488283px;}
.x43_c01000{left:224.174712px;}
.x2c_c01000{left:225.955463px;}
.x6b_c01000{left:227.456670px;}
.x7c_c01000{left:229.383369px;}
.x13_c01000{left:230.677600px;}
.x93_c01000{left:232.516500px;}
.x5e_c01000{left:235.386000px;}
.xb_c01000{left:237.714060px;}
.x4_c01000{left:241.098000px;}
.x3b_c01000{left:242.869500px;}
.x2d_c01000{left:245.189775px;}
.xa7_c01000{left:246.904500px;}
.x4d_c01000{left:251.611944px;}
.x23_c01000{left:253.354420px;}
.x14_c01000{left:257.398006px;}
.x33_c01000{left:263.303662px;}
.x6c_c01000{left:267.418875px;}
.x4e_c01000{left:268.449444px;}
.x71_c01000{left:270.688500px;}
.x19_c01000{left:271.756864px;}
.x44_c01000{left:273.591504px;}
.x59_c01000{left:279.231780px;}
.x24_c01000{left:284.383074px;}
.x28_c01000{left:288.528000px;}
.x55_c01000{left:290.401248px;}
.xb3_c01000{left:292.950000px;}
.x5_c01000{left:300.165000px;}
.x3c_c01000{left:302.317500px;}
.xc_c01000{left:303.644334px;}
.x1a_c01000{left:305.438259px;}
.x7d_c01000{left:307.433397px;}
.x72_c01000{left:310.165500px;}
.x2e_c01000{left:311.197125px;}
.xa8_c01000{left:312.573000px;}
.x94_c01000{left:314.304000px;}
.x34_c01000{left:315.583312px;}
.x45_c01000{left:320.446248px;}
.x35_c01000{left:321.912937px;}
.x15_c01000{left:326.250988px;}
.xd_c01000{left:328.209570px;}
.x4f_c01000{left:331.515444px;}
.x46_c01000{left:334.081464px;}
.x52_c01000{left:335.165820px;}
.x64_c01000{left:336.846000px;}
.xa9_c01000{left:337.887000px;}
.x73_c01000{left:340.066500px;}
.x5a_c01000{left:341.885772px;}
.x3d_c01000{left:343.095000px;}
.x6_c01000{left:344.250000px;}
.x2f_c01000{left:346.299000px;}
.xb4_c01000{left:348.030000px;}
.x67_c01000{left:349.196730px;}
.x74_c01000{left:350.329500px;}
.x36_c01000{left:353.314912px;}
.x5f_c01000{left:354.954000px;}
.x65_c01000{left:357.127500px;}
.x1b_c01000{left:359.232477px;}
.x25_c01000{left:361.156732px;}
.x5b_c01000{left:363.294936px;}
.x7_c01000{left:366.391500px;}
.xe_c01000{left:367.828641px;}
.x56_c01000{left:370.008108px;}
.x75_c01000{left:371.419500px;}
.x16_c01000{left:372.700465px;}
.x9a_c01000{left:373.816500px;}
.x89_c01000{left:376.857746px;}
.x37_c01000{left:379.788525px;}
.x68_c01000{left:382.153740px;}
.x76_c01000{left:384.690000px;}
.x1c_c01000{left:388.339020px;}
.xaa_c01000{left:390.592500px;}
.x17_c01000{left:394.031503px;}
.x5c_c01000{left:397.240884px;}
.x9b_c01000{left:400.830000px;}
.xf_c01000{left:402.395761px;}
.x26_c01000{left:403.777270px;}
.x9c_c01000{left:408.111000px;}
.x50_c01000{left:409.140444px;}
.x6d_c01000{left:411.337995px;}
.x60_c01000{left:414.532500px;}
.x53_c01000{left:418.333164px;}
.x8_c01000{left:423.495000px;}
.x81_c01000{left:424.814909px;}
.x69_c01000{left:427.242390px;}
.x54_c01000{left:429.205332px;}
.x1d_c01000{left:430.453134px;}
.x66_c01000{left:431.619000px;}
.x30_c01000{left:438.331200px;}
.x3e_c01000{left:446.128500px;}
.x51_c01000{left:448.036944px;}
.x9d_c01000{left:455.608500px;}
.x38_c01000{left:457.485637px;}
.x77_c01000{left:460.269000px;}
.x10_c01000{left:464.477085px;}
.x1e_c01000{left:465.905962px;}
.x6e_c01000{left:467.024385px;}
.x47_c01000{left:468.569100px;}
.x95_c01000{left:469.576500px;}
.x5d_c01000{left:472.124208px;}
.x3f_c01000{left:473.218500px;}
.xab_c01000{left:474.823500px;}
.x8d_c01000{left:479.250000px;}
.x96_c01000{left:483.376500px;}
.x1f_c01000{left:489.860170px;}
.x78_c01000{left:491.295000px;}
.xac_c01000{left:492.645000px;}
.x8a_c01000{left:498.875504px;}
.x82_c01000{left:500.050859px;}
.x9e_c01000{left:501.567000px;}
.x83_c01000{left:505.102995px;}
.xa2_c01000{left:507.265500px;}
.x20_c01000{left:511.483461px;}
.x8b_c01000{left:514.527108px;}
.x29_c01000{left:518.482500px;}
.x79_c01000{left:520.155000px;}
.x48_c01000{left:523.961988px;}
.x57_c01000{left:525.194016px;}
.xad_c01000{left:529.365000px;}
.x84_c01000{left:532.606217px;}
.x8e_c01000{left:534.600000px;}
.xae_c01000{left:542.331000px;}
.x97_c01000{left:546.856500px;}
.xa3_c01000{left:548.770500px;}
.x7a_c01000{left:554.218500px;}
.x8c_c01000{left:555.568707px;}
.x85_c01000{left:567.690633px;}
.xaf_c01000{left:572.766000px;}
.x86_c01000{left:590.458218px;}
.xa4_c01000{left:600.235500px;}
.x98_c01000{left:602.533500px;}
.x9f_c01000{left:612.231000px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls0_c01000{letter-spacing:0.000000pt;}
.ws0_c01000{word-spacing:0.000000pt;}
.fs11_c01000{font-size:42.936961pt;}
.fs18_c01000{font-size:43.866667pt;}
.fs12_c01000{font-size:43.870373pt;}
.fs16_c01000{font-size:46.666667pt;}
.fs13_c01000{font-size:48.533333pt;}
.fs15_c01000{font-size:49.466667pt;}
.fs19_c01000{font-size:51.333333pt;}
.fsf_c01000{font-size:53.204495pt;}
.fs17_c01000{font-size:53.205213pt;}
.fs14_c01000{font-size:56.000000pt;}
.fsd_c01000{font-size:61.603080pt;}
.fs0_c01000{font-size:61.603727pt;}
.fs7_c01000{font-size:61.607884pt;}
.fs5_c01000{font-size:61.619247pt;}
.fse_c01000{font-size:62.536460pt;}
.fs1_c01000{font-size:62.537116pt;}
.fsb_c01000{font-size:62.541337pt;}
.fs2_c01000{font-size:63.470506pt;}
.fs9_c01000{font-size:63.474790pt;}
.fsc_c01000{font-size:64.405442pt;}
.fs8_c01000{font-size:64.408243pt;}
.fs6_c01000{font-size:64.420122pt;}
.fs3_c01000{font-size:65.337286pt;}
.fsa_c01000{font-size:65.341695pt;}
.fs4_c01000{font-size:65.353747pt;}
.fs10_c01000{font-size:66.272266pt;}
.fs1a_c01000{font-size:216.533333pt;}
.y0_c01000{bottom:0.000000pt;}
.y11a_c01000{bottom:79.678667pt;}
.y119_c01000{bottom:117.308000pt;}
.y118_c01000{bottom:119.189333pt;}
.y104_c01000{bottom:130.550667pt;}
.y103_c01000{bottom:131.008000pt;}
.y102_c01000{bottom:131.254667pt;}
.y101_c01000{bottom:131.377333pt;}
.y100_c01000{bottom:131.673333pt;}
.yff_c01000{bottom:132.222667pt;}
.yfe_c01000{bottom:132.432000pt;}
.yfd_c01000{bottom:132.792000pt;}
.yfc_c01000{bottom:132.889333pt;}
.yfb_c01000{bottom:133.326667pt;}
.yfa_c01000{bottom:133.548000pt;}
.yf9_c01000{bottom:133.861333pt;}
.yf8_c01000{bottom:134.218667pt;}
.yf7_c01000{bottom:134.477333pt;}
.yf6_c01000{bottom:134.652000pt;}
.yf5_c01000{bottom:134.880000pt;}
.yf4_c01000{bottom:145.346667pt;}
.yf3_c01000{bottom:146.276000pt;}
.yf2_c01000{bottom:146.625333pt;}
.yf1_c01000{bottom:147.156000pt;}
.yf0_c01000{bottom:147.705333pt;}
.yef_c01000{bottom:147.789333pt;}
.yee_c01000{bottom:148.101333pt;}
.yed_c01000{bottom:148.438667pt;}
.yec_c01000{bottom:151.265333pt;}
.yeb_c01000{bottom:151.680000pt;}
.yea_c01000{bottom:160.542667pt;}
.ye9_c01000{bottom:161.285333pt;}
.ye8_c01000{bottom:161.750667pt;}
.ye7_c01000{bottom:162.132000pt;}
.ye6_c01000{bottom:162.316000pt;}
.ye5_c01000{bottom:162.852000pt;}
.ye4_c01000{bottom:163.290667pt;}
.ye3_c01000{bottom:164.010667pt;}
.ye2_c01000{bottom:164.214667pt;}
.ye1_c01000{bottom:164.386667pt;}
.ye0_c01000{bottom:164.932000pt;}
.ydf_c01000{bottom:165.477333pt;}
.yde_c01000{bottom:165.849333pt;}
.ydd_c01000{bottom:166.173333pt;}
.ydc_c01000{bottom:166.428000pt;}
.ydb_c01000{bottom:166.972000pt;}
.yda_c01000{bottom:167.352000pt;}
.yd9_c01000{bottom:167.518667pt;}
.yd8_c01000{bottom:179.800000pt;}
.yd7_c01000{bottom:194.427624pt;}
.yd6_c01000{bottom:194.792531pt;}
.yd5_c01000{bottom:194.932053pt;}
.yd4_c01000{bottom:195.301936pt;}
.yd3_c01000{bottom:195.469288pt;}
.yd2_c01000{bottom:195.587501pt;}
.yd1_c01000{bottom:196.016648pt;}
.yd0_c01000{bottom:196.261503pt;}
.ycf_c01000{bottom:196.364701pt;}
.yce_c01000{bottom:196.595408pt;}
.ycd_c01000{bottom:196.667640pt;}
.ycc_c01000{bottom:197.520055pt;}
.ycb_c01000{bottom:198.175399pt;}
.yca_c01000{bottom:198.566781pt;}
.yc9_c01000{bottom:209.891137pt;}
.yc8_c01000{bottom:210.114223pt;}
.yc7_c01000{bottom:210.456965pt;}
.yc6_c01000{bottom:210.725439pt;}
.yc5_c01000{bottom:210.774484pt;}
.yc4_c01000{bottom:211.101311pt;}
.yc3_c01000{bottom:211.510521pt;}
.yc2_c01000{bottom:211.773412pt;}
.yc1_c01000{bottom:211.931331pt;}
.yc0_c01000{bottom:212.124545pt;}
.ybf_c01000{bottom:212.309837pt;}
.ybe_c01000{bottom:212.694517pt;}
.ybd_c01000{bottom:213.145509pt;}
.ybc_c01000{bottom:213.363897pt;}
.ybb_c01000{bottom:213.781377pt;}
.yba_c01000{bottom:214.069024pt;}
.yb9_c01000{bottom:214.560045pt;}
.yb8_c01000{bottom:214.684487pt;}
.yb7_c01000{bottom:226.109041pt;}
.yb6_c01000{bottom:228.110365pt;}
.yb5_c01000{bottom:228.240736pt;}
.yb4_c01000{bottom:228.526909pt;}
.yb3_c01000{bottom:228.762009pt;}
.yb2_c01000{bottom:228.906821pt;}
.yb1_c01000{bottom:229.290131pt;}
.yb0_c01000{bottom:229.397877pt;}
.yaf_c01000{bottom:229.632839pt;}
.yae_c01000{bottom:229.907933pt;}
.yad_c01000{bottom:230.642151pt;}
.yac_c01000{bottom:241.616531pt;}
.yab_c01000{bottom:242.010153pt;}
.yaa_c01000{bottom:242.343647pt;}
.ya9_c01000{bottom:242.702169pt;}
.ya8_c01000{bottom:243.420029pt;}
.ya7_c01000{bottom:243.575527pt;}
.ya6_c01000{bottom:243.728875pt;}
.ya5_c01000{bottom:243.972581pt;}
.ya4_c01000{bottom:244.091176pt;}
.ya3_c01000{bottom:244.436699pt;}
.ya2_c01000{bottom:244.892877pt;}
.ya1_c01000{bottom:245.245368pt;}
.ya0_c01000{bottom:246.262557pt;}
.y9f_c01000{bottom:246.961333pt;}
.y117_c01000{bottom:256.448520pt;}
.y116_c01000{bottom:256.827267pt;}
.y115_c01000{bottom:256.988621pt;}
.y114_c01000{bottom:257.445581pt;}
.y113_c01000{bottom:257.667360pt;}
.y112_c01000{bottom:258.296128pt;}
.y111_c01000{bottom:258.715568pt;}
.y110_c01000{bottom:258.950507pt;}
.y10f_c01000{bottom:259.229835pt;}
.y10e_c01000{bottom:259.371459pt;}
.y10d_c01000{bottom:259.686477pt;}
.y10c_c01000{bottom:260.103789pt;}
.y10b_c01000{bottom:260.503685pt;}
.y10a_c01000{bottom:260.684957pt;}
.y109_c01000{bottom:260.876701pt;}
.y108_c01000{bottom:261.407395pt;}
.y107_c01000{bottom:261.599083pt;}
.y106_c01000{bottom:262.146763pt;}
.y105_c01000{bottom:262.321333pt;}
.y9e_c01000{bottom:304.647920pt;}
.y9d_c01000{bottom:305.241587pt;}
.y9c_c01000{bottom:305.730547pt;}
.y9b_c01000{bottom:305.976320pt;}
.y9a_c01000{bottom:306.221613pt;}
.y99_c01000{bottom:306.776893pt;}
.y98_c01000{bottom:307.202787pt;}
.y97_c01000{bottom:307.387307pt;}
.y96_c01000{bottom:307.888613pt;}
.y95_c01000{bottom:308.159587pt;}
.y94_c01000{bottom:325.226227pt;}
.y93_c01000{bottom:325.747027pt;}
.y92_c01000{bottom:326.127987pt;}
.y91_c01000{bottom:326.689213pt;}
.y90_c01000{bottom:327.384360pt;}
.y8f_c01000{bottom:327.824067pt;}
.y8e_c01000{bottom:328.267093pt;}
.y8d_c01000{bottom:328.561240pt;}
.y8c_c01000{bottom:346.354773pt;}
.y8b_c01000{bottom:347.016920pt;}
.y8a_c01000{bottom:347.197200pt;}
.y89_c01000{bottom:347.605293pt;}
.y88_c01000{bottom:348.049293pt;}
.y87_c01000{bottom:348.397280pt;}
.y86_c01000{bottom:348.732933pt;}
.y85_c01000{bottom:348.961333pt;}
.y84_c01000{bottom:366.403593pt;}
.y83_c01000{bottom:366.804063pt;}
.y82_c01000{bottom:367.092056pt;}
.y81_c01000{bottom:367.677143pt;}
.y80_c01000{bottom:368.473731pt;}
.y7f_c01000{bottom:368.594059pt;}
.y7e_c01000{bottom:368.947728pt;}
.y7d_c01000{bottom:369.601333pt;}
.y7c_c01000{bottom:425.296512pt;}
.y7b_c01000{bottom:426.121643pt;}
.y7a_c01000{bottom:426.426869pt;}
.y79_c01000{bottom:426.940331pt;}
.y78_c01000{bottom:427.263488pt;}
.y77_c01000{bottom:427.482005pt;}
.y76_c01000{bottom:428.210581pt;}
.y75_c01000{bottom:429.095605pt;}
.y74_c01000{bottom:429.751637pt;}
.y73_c01000{bottom:430.308704pt;}
.y72_c01000{bottom:446.536704pt;}
.y71_c01000{bottom:448.054283pt;}
.y70_c01000{bottom:448.279243pt;}
.y6f_c01000{bottom:448.833045pt;}
.y6e_c01000{bottom:450.002859pt;}
.y6d_c01000{bottom:466.785376pt;}
.y6c_c01000{bottom:466.930667pt;}
.y6b_c01000{bottom:467.453077pt;}
.y6a_c01000{bottom:467.726101pt;}
.y69_c01000{bottom:468.038805pt;}
.y68_c01000{bottom:469.141237pt;}
.y67_c01000{bottom:469.918059pt;}
.y66_c01000{bottom:470.343307pt;}
.y65_c01000{bottom:470.634475pt;}
.y64_c01000{bottom:486.457344pt;}
.y63_c01000{bottom:486.806741pt;}
.y62_c01000{bottom:487.359936pt;}
.y61_c01000{bottom:487.950357pt;}
.y60_c01000{bottom:488.273920pt;}
.y5f_c01000{bottom:488.463936pt;}
.y5e_c01000{bottom:489.360875pt;}
.y5d_c01000{bottom:489.600341pt;}
.y5c_c01000{bottom:490.086485pt;}
.y5b_c01000{bottom:490.570560pt;}
.y5a_c01000{bottom:490.865216pt;}
.y59_c01000{bottom:491.277952pt;}
.y58_c01000{bottom:506.206827pt;}
.y57_c01000{bottom:506.945291pt;}
.y56_c01000{bottom:507.453568pt;}
.y55_c01000{bottom:508.278453pt;}
.y54_c01000{bottom:508.739307pt;}
.y53_c01000{bottom:508.921227pt;}
.y52_c01000{bottom:509.546261pt;}
.y51_c01000{bottom:510.205067pt;}
.y50_c01000{bottom:510.612213pt;}
.y4f_c01000{bottom:510.903787pt;}
.y4e_c01000{bottom:511.123744pt;}
.y4d_c01000{bottom:511.440053pt;}
.y4c_c01000{bottom:526.850944pt;}
.y4b_c01000{bottom:527.236224pt;}
.y4a_c01000{bottom:528.059968pt;}
.y49_c01000{bottom:528.701589pt;}
.y48_c01000{bottom:529.281536pt;}
.y47_c01000{bottom:530.127019pt;}
.y46_c01000{bottom:530.553237pt;}
.y45_c01000{bottom:531.582571pt;}
.y44_c01000{bottom:532.082667pt;}
.y43_c01000{bottom:587.662667pt;}
.y42_c01000{bottom:588.110167pt;}
.y41_c01000{bottom:588.904967pt;}
.y40_c01000{bottom:589.329167pt;}
.y3f_c01000{bottom:589.832200pt;}
.y3e_c01000{bottom:589.932833pt;}
.y3d_c01000{bottom:590.769067pt;}
.y3c_c01000{bottom:591.449933pt;}
.y3b_c01000{bottom:592.338033pt;}
.y3a_c01000{bottom:592.790300pt;}
.y39_c01000{bottom:608.014100pt;}
.y38_c01000{bottom:608.735233pt;}
.y37_c01000{bottom:609.322800pt;}
.y36_c01000{bottom:609.822667pt;}
.y35_c01000{bottom:610.761167pt;}
.y34_c01000{bottom:611.035167pt;}
.y33_c01000{bottom:611.611867pt;}
.y32_c01000{bottom:612.238367pt;}
.y31_c01000{bottom:627.003267pt;}
.y30_c01000{bottom:632.113367pt;}
.y2f_c01000{bottom:634.078667pt;}
.y2e_c01000{bottom:649.243316pt;}
.y2d_c01000{bottom:649.521975pt;}
.y2c_c01000{bottom:649.976047pt;}
.y2b_c01000{bottom:650.328135pt;}
.y2a_c01000{bottom:650.794731pt;}
.y29_c01000{bottom:651.126125pt;}
.y28_c01000{bottom:651.476820pt;}
.y27_c01000{bottom:652.024325pt;}
.y26_c01000{bottom:652.314951pt;}
.y25_c01000{bottom:667.880529pt;}
.y24_c01000{bottom:668.149297pt;}
.y23_c01000{bottom:668.447524pt;}
.y22_c01000{bottom:668.888852pt;}
.y21_c01000{bottom:669.412648pt;}
.y20_c01000{bottom:669.774588pt;}
.y1f_c01000{bottom:670.444593pt;}
.y1e_c01000{bottom:670.863267pt;}
.y1d_c01000{bottom:671.572952pt;}
.y1c_c01000{bottom:671.838669pt;}
.y1b_c01000{bottom:672.477705pt;}
.y1a_c01000{bottom:690.357119pt;}
.y19_c01000{bottom:690.691569pt;}
.y18_c01000{bottom:690.937477pt;}
.y17_c01000{bottom:691.474327pt;}
.y16_c01000{bottom:691.783041pt;}
.y15_c01000{bottom:692.270237pt;}
.y14_c01000{bottom:692.579509pt;}
.y13_c01000{bottom:693.063303pt;}
.y12_c01000{bottom:693.600049pt;}
.y11_c01000{bottom:710.819953pt;}
.y10_c01000{bottom:711.481644pt;}
.yf_c01000{bottom:711.850304pt;}
.ye_c01000{bottom:712.272361pt;}
.yd_c01000{bottom:712.533891pt;}
.yc_c01000{bottom:713.237216pt;}
.yb_c01000{bottom:713.473300pt;}
.ya_c01000{bottom:713.853721pt;}
.y9_c01000{bottom:714.239833pt;}
.y8_c01000{bottom:731.903169pt;}
.y7_c01000{bottom:732.461515pt;}
.y6_c01000{bottom:732.678009pt;}
.y5_c01000{bottom:733.109063pt;}
.y4_c01000{bottom:733.686607pt;}
.y3_c01000{bottom:734.219828pt;}
.y2_c01000{bottom:734.379988pt;}
.y1_c01000{bottom:734.641333pt;}
.h13_c01000{height:42.936961pt;}
.h1a_c01000{height:43.866667pt;}
.h14_c01000{height:43.870373pt;}
.h18_c01000{height:46.666667pt;}
.h15_c01000{height:48.533333pt;}
.h17_c01000{height:49.466667pt;}
.h1b_c01000{height:51.333333pt;}
.h11_c01000{height:53.204495pt;}
.h19_c01000{height:53.205213pt;}
.h16_c01000{height:56.000000pt;}
.hf_c01000{height:61.603080pt;}
.h2_c01000{height:61.603727pt;}
.h9_c01000{height:61.607884pt;}
.h7_c01000{height:61.619247pt;}
.h10_c01000{height:62.536460pt;}
.h3_c01000{height:62.537116pt;}
.hd_c01000{height:62.541337pt;}
.h4_c01000{height:63.470506pt;}
.hb_c01000{height:63.474790pt;}
.he_c01000{height:64.405442pt;}
.ha_c01000{height:64.408243pt;}
.h8_c01000{height:64.420122pt;}
.h5_c01000{height:65.337286pt;}
.hc_c01000{height:65.341695pt;}
.h6_c01000{height:65.353747pt;}
.h12_c01000{height:66.272266pt;}
.h1c_c01000{height:216.533333pt;}
.h1_c01000{height:893.333333pt;}
.h0_c01000{height:893.466667pt;}
.w0_c01000{width:635.733333pt;}
.w1_c01000{width:636.000000pt;}
.x0_c01000{left:0.000000pt;}
.x99_c01000{left:57.020000pt;}
.x8f_c01000{left:70.600000pt;}
.x87_c01000{left:80.041397pt;}
.x6f_c01000{left:81.500000pt;}
.x7e_c01000{left:88.941729pt;}
.x39_c01000{left:93.656000pt;}
.x7f_c01000{left:100.258024pt;}
.xa5_c01000{left:102.108000pt;}
.x90_c01000{left:107.042667pt;}
.x40_c01000{left:116.911755pt;}
.x49_c01000{left:118.804395pt;}
.x31_c01000{left:121.712033pt;}
.x61_c01000{left:123.005333pt;}
.xb0_c01000{left:124.080000pt;}
.x2a_c01000{left:125.664400pt;}
.x11_c01000{left:126.575153pt;}
.x1_c01000{left:127.516000pt;}
.x70_c01000{left:135.252000pt;}
.x41_c01000{left:138.014763pt;}
.xa0_c01000{left:141.028000pt;}
.x91_c01000{left:143.300000pt;}
.x4a_c01000{left:144.600395pt;}
.x62_c01000{left:145.845333pt;}
.x32_c01000{left:146.847100pt;}
.x7b_c01000{left:147.756205pt;}
.x21_c01000{left:150.338084pt;}
.x2_c01000{left:151.274667pt;}
.x42_c01000{left:152.678997pt;}
.xb1_c01000{left:153.840000pt;}
.xa6_c01000{left:154.920000pt;}
.x58_c01000{left:157.558144pt;}
.x9_c01000{left:159.983292pt;}
.x4b_c01000{left:163.016395pt;}
.x2b_c01000{left:164.813200pt;}
.x3_c01000{left:165.834667pt;}
.xa1_c01000{left:166.870667pt;}
.x12_c01000{left:167.854244pt;}
.x80_c01000{left:171.029195pt;}
.x18_c01000{left:171.921293pt;}
.x27_c01000{left:177.857333pt;}
.x63_c01000{left:179.410667pt;}
.xb2_c01000{left:180.480000pt;}
.x92_c01000{left:181.902667pt;}
.x88_c01000{left:184.665471pt;}
.x6a_c01000{left:186.798680pt;}
.x3a_c01000{left:189.245333pt;}
.xa_c01000{left:191.657607pt;}
.x4c_c01000{left:193.271061pt;}
.x22_c01000{left:195.989585pt;}
.x43_c01000{left:199.266411pt;}
.x2c_c01000{left:200.849300pt;}
.x6b_c01000{left:202.183707pt;}
.x7c_c01000{left:203.896328pt;}
.x13_c01000{left:205.046756pt;}
.x93_c01000{left:206.681333pt;}
.x5e_c01000{left:209.232000pt;}
.xb_c01000{left:211.301387pt;}
.x4_c01000{left:214.309333pt;}
.x3b_c01000{left:215.884000pt;}
.x2d_c01000{left:217.946467pt;}
.xa7_c01000{left:219.470667pt;}
.x4d_c01000{left:223.655061pt;}
.x23_c01000{left:225.203929pt;}
.x14_c01000{left:228.798228pt;}
.x33_c01000{left:234.047700pt;}
.x6c_c01000{left:237.705667pt;}
.x4e_c01000{left:238.621728pt;}
.x71_c01000{left:240.612000pt;}
.x19_c01000{left:241.561657pt;}
.x44_c01000{left:243.192448pt;}
.x59_c01000{left:248.206027pt;}
.x24_c01000{left:252.784955pt;}
.x28_c01000{left:256.469333pt;}
.x55_c01000{left:258.134443pt;}
.xb3_c01000{left:260.400000pt;}
.x5_c01000{left:266.813333pt;}
.x3c_c01000{left:268.726667pt;}
.xc_c01000{left:269.906075pt;}
.x1a_c01000{left:271.500675pt;}
.x7d_c01000{left:273.274131pt;}
.x72_c01000{left:275.702667pt;}
.x2e_c01000{left:276.619667pt;}
.xa8_c01000{left:277.842667pt;}
.x94_c01000{left:279.381333pt;}
.x34_c01000{left:280.518500pt;}
.x45_c01000{left:284.841109pt;}
.x35_c01000{left:286.144833pt;}
.x15_c01000{left:290.000879pt;}
.xd_c01000{left:291.741840pt;}
.x4f_c01000{left:294.680395pt;}
.x46_c01000{left:296.961301pt;}
.x52_c01000{left:297.925173pt;}
.x64_c01000{left:299.418667pt;}
.xa9_c01000{left:300.344000pt;}
.x73_c01000{left:302.281333pt;}
.x5a_c01000{left:303.898464pt;}
.x3d_c01000{left:304.973333pt;}
.x6_c01000{left:306.000000pt;}
.x2f_c01000{left:307.821333pt;}
.xb4_c01000{left:309.360000pt;}
.x67_c01000{left:310.397093pt;}
.x74_c01000{left:311.404000pt;}
.x36_c01000{left:314.057700pt;}
.x5f_c01000{left:315.514667pt;}
.x65_c01000{left:317.446667pt;}
.x1b_c01000{left:319.317757pt;}
.x25_c01000{left:321.028207pt;}
.x5b_c01000{left:322.928832pt;}
.x7_c01000{left:325.681333pt;}
.xe_c01000{left:326.958792pt;}
.x56_c01000{left:328.896096pt;}
.x75_c01000{left:330.150667pt;}
.x16_c01000{left:331.289303pt;}
.x9a_c01000{left:332.281333pt;}
.x89_c01000{left:334.984663pt;}
.x37_c01000{left:337.589800pt;}
.x68_c01000{left:339.692213pt;}
.x76_c01000{left:341.946667pt;}
.x1c_c01000{left:345.190240pt;}
.xaa_c01000{left:347.193333pt;}
.x17_c01000{left:350.250225pt;}
.x5c_c01000{left:353.103008pt;}
.x9b_c01000{left:356.293333pt;}
.xf_c01000{left:357.685121pt;}
.x26_c01000{left:358.913129pt;}
.x9c_c01000{left:362.765333pt;}
.x50_c01000{left:363.680395pt;}
.x6d_c01000{left:365.633773pt;}
.x60_c01000{left:368.473333pt;}
.x53_c01000{left:371.851701pt;}
.x8_c01000{left:376.440000pt;}
.x81_c01000{left:377.613252pt;}
.x69_c01000{left:379.771013pt;}
.x54_c01000{left:381.515851pt;}
.x1d_c01000{left:382.625008pt;}
.x66_c01000{left:383.661333pt;}
.x30_c01000{left:389.627733pt;}
.x3e_c01000{left:396.558667pt;}
.x51_c01000{left:398.255061pt;}
.x9d_c01000{left:404.985333pt;}
.x38_c01000{left:406.653900pt;}
.x77_c01000{left:409.128000pt;}
.x10_c01000{left:412.868520pt;}
.x1e_c01000{left:414.138633pt;}
.x6e_c01000{left:415.132787pt;}
.x47_c01000{left:416.505867pt;}
.x95_c01000{left:417.401333pt;}
.x5d_c01000{left:419.665963pt;}
.x3f_c01000{left:420.638667pt;}
.xab_c01000{left:422.065333pt;}
.x8d_c01000{left:426.000000pt;}
.x96_c01000{left:429.668000pt;}
.x1f_c01000{left:435.431263pt;}
.x78_c01000{left:436.706667pt;}
.xac_c01000{left:437.906667pt;}
.x8a_c01000{left:443.444892pt;}
.x82_c01000{left:444.489652pt;}
.x9e_c01000{left:445.837333pt;}
.x83_c01000{left:448.980440pt;}
.xa2_c01000{left:450.902667pt;}
.x20_c01000{left:454.651965pt;}
.x8b_c01000{left:457.357429pt;}
.x29_c01000{left:460.873333pt;}
.x79_c01000{left:462.360000pt;}
.x48_c01000{left:465.743989pt;}
.x57_c01000{left:466.839125pt;}
.xad_c01000{left:470.546667pt;}
.x84_c01000{left:473.427748pt;}
.x8e_c01000{left:475.200000pt;}
.xae_c01000{left:482.072000pt;}
.x97_c01000{left:486.094667pt;}
.xa3_c01000{left:487.796000pt;}
.x7a_c01000{left:492.638667pt;}
.x8c_c01000{left:493.838851pt;}
.x85_c01000{left:504.613896pt;}
.xaf_c01000{left:509.125333pt;}
.x86_c01000{left:524.851749pt;}
.xa4_c01000{left:533.542667pt;}
.x98_c01000{left:535.585333pt;}
.x9f_c01000{left:544.205333pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.000000;font-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_c01001{transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013725,0.000000,0.000000,0.250000,0,0);}
.mb2_c01001{transform:matrix(0.015145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015145,0.000000,0.000000,0.250000,0,0);}
.m3d_c01001{transform:matrix(0.031365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031365,0.000000,0.000000,0.250000,0,0);}
.m99_c01001{transform:matrix(0.050690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050690,0.000000,0.000000,0.250000,0,0);}
.m26_c01001{transform:matrix(0.065755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065755,0.000000,0.000000,0.250000,0,0);}
.m11c_c01001{transform:matrix(0.077045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077045,0.000000,0.000000,0.250000,0,0);}
.m5_c01001{transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);}
.m103_c01001{transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104315,0.000000,0.000000,0.250000,0,0);}
.me7_c01001{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.m8d_c01001{transform:matrix(0.121065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121065,0.000000,0.000000,0.250000,0,0);}
.md2_c01001{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m5d_c01001{transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134520,0.000000,0.000000,0.250000,0,0);}
.mc3_c01001{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);}
.m97_c01001{transform:matrix(0.141635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141635,0.000000,0.000000,0.250000,0,0);}
.m62_c01001{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);}
.mdf_c01001{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m13e_c01001{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);}
.md5_c01001{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);}
.m13_c01001{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.mf4_c01001{transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146185,0.000000,0.000000,0.250000,0,0);}
.m65_c01001{transform:matrix(0.147520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147520,0.000000,0.000000,0.250000,0,0);}
.m79_c01001{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);}
.m20_c01001{transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148885,0.000000,0.000000,0.250000,0,0);}
.mbf_c01001{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.mde_c01001{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);}
.m114_c01001{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);}
.m55_c01001{transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);}
.md7_c01001{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m80_c01001{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);}
.m104_c01001{transform:matrix(0.152915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152915,0.000000,0.000000,0.250000,0,0);}
.m129_c01001{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);}
.ma0_c01001{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);}
.mfe_c01001{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);}
.m94_c01001{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);}
.m6c_c01001{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);}
.m41_c01001{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);}
.m5a_c01001{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);}
.m59_c01001{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);}
.m60_c01001{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);}
.me_c01001{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);}
.m10_c01001{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);}
.md3_c01001{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);}
.m13a_c01001{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);}
.mad_c01001{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);}
.md8_c01001{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);}
.mce_c01001{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);}
.m96_c01001{transform:matrix(0.160630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160630,0.000000,0.000000,0.250000,0,0);}
.m127_c01001{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);}
.maa_c01001{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_c01001{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m6f_c01001{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);}
.mb9_c01001{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);}
.mc1_c01001{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);}
.mac_c01001{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);}
.mf6_c01001{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);}
.mee_c01001{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);}
.m142_c01001{transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164645,0.000000,0.000000,0.250000,0,0);}
.m58_c01001{transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165005,0.000000,0.000000,0.250000,0,0);}
.me8_c01001{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);}
.m85_c01001{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);}
.m86_c01001{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);}
.m7d_c01001{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);}
.mb0_c01001{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);}
.m69_c01001{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);}
.m14_c01001{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);}
.m141_c01001{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);}
.m51_c01001{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);}
.m100_c01001{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);}
.m81_c01001{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);}
.m2_c01001{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);}
.mcf_c01001{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);}
.m144_c01001{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);}
.m89_c01001{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);}
.m11_c01001{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);}
.md6_c01001{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);}
.m110_c01001{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);}
.m113_c01001{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);}
.m11e_c01001{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);}
.m23_c01001{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);}
.m28_c01001{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);}
.mff_c01001{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);}
.m29_c01001{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);}
.mef_c01001{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);}
.m40_c01001{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);}
.m84_c01001{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);}
.m66_c01001{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);}
.m42_c01001{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);}
.m5c_c01001{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);}
.m1b_c01001{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);}
.m95_c01001{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);}
.m17_c01001{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);}
.mc2_c01001{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);}
.m4f_c01001{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_c01001{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);}
.m50_c01001{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);}
.m87_c01001{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);}
.m15_c01001{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);}
.m6e_c01001{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);}
.ma2_c01001{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);}
.m27_c01001{transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180285,0.000000,0.000000,0.250000,0,0);}
.m143_c01001{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);}
.m56_c01001{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);}
.m1c_c01001{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);}
.m6b_c01001{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);}
.mea_c01001{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);}
.m18_c01001{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);}
.m139_c01001{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);}
.mf_c01001{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);}
.mae_c01001{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);}
.ma9_c01001{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);}
.m7e_c01001{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);}
.m102_c01001{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);}
.m77_c01001{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);}
.m88_c01001{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);}
.m63_c01001{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);}
.m125_c01001{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);}
.m7f_c01001{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);}
.m128_c01001{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);}
.m78_c01001{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_c01001{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);}
.m76_c01001{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);}
.m61_c01001{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);}
.mcd_c01001{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);}
.m12a_c01001{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);}
.m9d_c01001{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);}
.m22_c01001{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);}
.m10b_c01001{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);}
.mb5_c01001{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);}
.m19_c01001{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);}
.m71_c01001{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);}
.mfc_c01001{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);}
.m121_c01001{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);}
.m9c_c01001{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);}
.m0_c01001{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);}
.m64_c01001{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);}
.m13b_c01001{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);}
.mc0_c01001{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);}
.m21_c01001{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);}
.m6_c01001{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);}
.m7b_c01001{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);}
.m124_c01001{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);}
.m7c_c01001{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);}
.m1a_c01001{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);}
.m54_c01001{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);}
.m98_c01001{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);}
.m3a_c01001{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);}
.m126_c01001{transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197795,0.000000,0.000000,0.250000,0,0);}
.mf0_c01001{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);}
.mcc_c01001{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);}
.me1_c01001{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);}
.m43_c01001{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);}
.m47_c01001{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);}
.m31_c01001{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m4e_c01001{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);}
.m3c_c01001{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);}
.m8a_c01001{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);}
.mf5_c01001{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);}
.ma3_c01001{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);}
.m7a_c01001{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);}
.m70_c01001{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);}
.mba_c01001{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);}
.m3f_c01001{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);}
.m32_c01001{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);}
.m12_c01001{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);}
.m35_c01001{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);}
.md9_c01001{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);}
.m34_c01001{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);}
.mc6_c01001{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);}
.mbe_c01001{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);}
.mb6_c01001{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);}
.ma1_c01001{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);}
.mf3_c01001{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);}
.mb8_c01001{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);}
.m10c_c01001{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);}
.m8b_c01001{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);}
.m48_c01001{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);}
.m130_c01001{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);}
.m33_c01001{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);}
.m7_c01001{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);}
.m39_c01001{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);}
.ma7_c01001{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);}
.m57_c01001{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);}
.mf9_c01001{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);}
.m105_c01001{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);}
.mf7_c01001{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);}
.mab_c01001{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);}
.m1d_c01001{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);}
.m11d_c01001{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);}
.m2a_c01001{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);}
.m140_c01001{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);}
.m30_c01001{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);}
.m133_c01001{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);}
.mdc_c01001{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);}
.ma4_c01001{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);}
.m101_c01001{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);}
.m107_c01001{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);}
.md0_c01001{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);}
.m9f_c01001{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);}
.m12d_c01001{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);}
.m74_c01001{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);}
.m1e_c01001{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);}
.m2f_c01001{transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213405,0.000000,0.000000,0.250000,0,0);}
.m10e_c01001{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);}
.m112_c01001{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);}
.m2e_c01001{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);}
.m91_c01001{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);}
.meb_c01001{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);}
.med_c01001{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);}
.m73_c01001{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);}
.m75_c01001{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);}
.mbb_c01001{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);}
.m72_c01001{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);}
.ma8_c01001{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);}
.md4_c01001{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);}
.m108_c01001{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);}
.m13f_c01001{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);}
.m4c_c01001{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);}
.me9_c01001{transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219105,0.000000,0.000000,0.250000,0,0);}
.m68_c01001{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);}
.mf1_c01001{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);}
.mfb_c01001{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);}
.mec_c01001{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);}
.m3b_c01001{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);}
.m4a_c01001{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);}
.m106_c01001{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);}
.m67_c01001{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);}
.me5_c01001{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);}
.m5f_c01001{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);}
.m120_c01001{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);}
.m2c_c01001{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);}
.mc5_c01001{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.ma_c01001{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);}
.m8_c01001{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);}
.m10d_c01001{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);}
.md1_c01001{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);}
.m9e_c01001{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);}
.m2b_c01001{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);}
.maf_c01001{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);}
.m10a_c01001{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);}
.m12c_c01001{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);}
.md_c01001{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);}
.mf8_c01001{transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);}
.m9b_c01001{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);}
.mfd_c01001{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);}
.m116_c01001{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_c01001{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);}
.m16_c01001{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);}
.m38_c01001{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);}
.m4_c01001{transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);}
.m136_c01001{transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);}
.mdb_c01001{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);}
.m5e_c01001{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);}
.mc7_c01001{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);}
.mfa_c01001{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);}
.m3e_c01001{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);}
.m109_c01001{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);}
.me6_c01001{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);}
.m123_c01001{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);}
.me3_c01001{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);}
.m131_c01001{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m37_c01001{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);}
.m12f_c01001{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);}
.m24_c01001{transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);}
.m2d_c01001{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);}
.m134_c01001{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);}
.m12e_c01001{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);}
.mcb_c01001{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);}
.ma6_c01001{transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);}
.m11a_c01001{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);}
.mb4_c01001{transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);}
.m6d_c01001{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.mc9_c01001{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.m53_c01001{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m1f_c01001{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);}
.m138_c01001{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m83_c01001{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.mf2_c01001{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m13c_c01001{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m92_c01001{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);}
.mda_c01001{transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);}
.m119_c01001{transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);}
.m46_c01001{transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);}
.m90_c01001{transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255635,0.000000,0.000000,0.250000,0,0);}
.m132_c01001{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_c01001{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);}
.mca_c01001{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_c01001{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);}
.mbd_c01001{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);}
.m115_c01001{transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262390,0.000000,0.000000,0.250000,0,0);}
.m135_c01001{transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263070,0.000000,0.000000,0.250000,0,0);}
.m122_c01001{transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265815,0.000000,0.000000,0.250000,0,0);}
.m118_c01001{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);}
.m12b_c01001{transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268110,0.000000,0.000000,0.250000,0,0);}
.m9_c01001{transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270205,0.000000,0.000000,0.250000,0,0);}
.m111_c01001{transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279105,0.000000,0.000000,0.250000,0,0);}
.m8e_c01001{transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);}
.m25_c01001{transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281995,0.000000,0.000000,0.250000,0,0);}
.m137_c01001{transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);}
.m49_c01001{transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287020,0.000000,0.000000,0.250000,0,0);}
.mc4_c01001{transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290615,0.000000,0.000000,0.250000,0,0);}
.m11f_c01001{transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292325,0.000000,0.000000,0.250000,0,0);}
.me2_c01001{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);}
.m117_c01001{transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296485,0.000000,0.000000,0.250000,0,0);}
.mc8_c01001{transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301565,0.000000,0.000000,0.250000,0,0);}
.m36_c01001{transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306535,0.000000,0.000000,0.250000,0,0);}
.m10f_c01001{transform:matrix(0.317525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317525,0.000000,0.000000,0.250000,0,0);}
.m8c_c01001{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);}
.mb_c01001{transform:matrix(0.322410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322410,0.000000,0.000000,0.250000,0,0);}
.m82_c01001{transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322535,0.000000,0.000000,0.250000,0,0);}
.me4_c01001{transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322830,0.000000,0.000000,0.250000,0,0);}
.m45_c01001{transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);}
.m4b_c01001{transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347645,0.000000,0.000000,0.250000,0,0);}
.m13d_c01001{transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);}
.m3_c01001{transform:matrix(0.363855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363855,0.000000,0.000000,0.250000,0,0);}
.ma5_c01001{transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);}
.mbc_c01001{transform:matrix(0.369300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369300,0.000000,0.000000,0.250000,0,0);}
.m9a_c01001{transform:matrix(0.377825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377825,0.000000,0.000000,0.250000,0,0);}
.me0_c01001{transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385440,0.000000,0.000000,0.250000,0,0);}
.mb1_c01001{transform:matrix(0.399045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399045,0.000000,0.000000,0.250000,0,0);}
.m11b_c01001{transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399275,0.000000,0.000000,0.250000,0,0);}
.m4d_c01001{transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);}
.m8f_c01001{transform:matrix(0.477135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477135,0.000000,0.000000,0.250000,0,0);}
.m93_c01001{transform:matrix(0.479830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479830,0.000000,0.000000,0.250000,0,0);}
.m52_c01001{transform:matrix(0.593175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593175,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls0_c01001{letter-spacing:0.000000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:0.000000px;}
.fc0_c01001{color:transparent;}
.fs13_c01001{font-size:47.250000px;}
.fs11_c01001{font-size:48.300000px;}
.fs5_c01001{font-size:49.350000px;}
.fs4_c01001{font-size:50.400000px;}
.fs3_c01001{font-size:51.450000px;}
.fs12_c01001{font-size:52.500000px;}
.fs7_c01001{font-size:53.550000px;}
.fs2_c01001{font-size:54.600000px;}
.fse_c01001{font-size:55.650000px;}
.fs6_c01001{font-size:57.750000px;}
.fs14_c01001{font-size:58.800000px;}
.fs10_c01001{font-size:59.850000px;}
.fsd_c01001{font-size:63.000000px;}
.fs0_c01001{font-size:64.050000px;}
.fs8_c01001{font-size:67.200000px;}
.fsa_c01001{font-size:69.300000px;}
.fsb_c01001{font-size:70.350000px;}
.fsc_c01001{font-size:71.400000px;}
.fs1_c01001{font-size:72.450000px;}
.fs9_c01001{font-size:73.500000px;}
.fsf_c01001{font-size:78.750000px;}
.y0_c01001{bottom:0.000000px;}
.yd_c01001{bottom:132.829500px;}
.y2d_c01001{bottom:147.289500px;}
.yc_c01001{bottom:150.135000px;}
.y2c_c01001{bottom:165.289500px;}
.yb_c01001{bottom:168.358500px;}
.y2b_c01001{bottom:183.238500px;}
.ya_c01001{bottom:185.892000px;}
.y2a_c01001{bottom:201.306000px;}
.y9_c01001{bottom:204.231000px;}
.y29_c01001{bottom:219.547500px;}
.y28_c01001{bottom:237.324000px;}
.y8_c01001{bottom:239.028000px;}
.y27_c01001{bottom:254.880000px;}
.y1f_c01001{bottom:257.175000px;}
.y26_c01001{bottom:273.043500px;}
.y7_c01001{bottom:274.881000px;}
.y25_c01001{bottom:291.456000px;}
.y6_c01001{bottom:293.359500px;}
.y24_c01001{bottom:309.606000px;}
.y5_c01001{bottom:311.173500px;}
.y23_c01001{bottom:327.354000px;}
.y4_c01001{bottom:328.992000px;}
.y22_c01001{bottom:345.790500px;}
.y3_c01001{bottom:346.849500px;}
.y1e_c01001{bottom:419.479500px;}
.y1d_c01001{bottom:442.368000px;}
.y1c_c01001{bottom:465.601500px;}
.y21_c01001{bottom:487.620000px;}
.y2_c01001{bottom:488.233500px;}
.y1b_c01001{bottom:510.700500px;}
.y1a_c01001{bottom:534.436500px;}
.y19_c01001{bottom:557.341500px;}
.y18_c01001{bottom:580.354500px;}
.y17_c01001{bottom:603.573000px;}
.y16_c01001{bottom:626.421000px;}
.y15_c01001{bottom:649.350000px;}
.y14_c01001{bottom:671.781000px;}
.y20_c01001{bottom:694.891500px;}
.y1_c01001{bottom:695.250000px;}
.y13_c01001{bottom:717.909000px;}
.y12_c01001{bottom:740.937000px;}
.y11_c01001{bottom:763.660500px;}
.y10_c01001{bottom:786.774000px;}
.yf_c01001{bottom:809.791500px;}
.ye_c01001{bottom:832.579500px;}
.h15_c01001{height:47.250000px;}
.h13_c01001{height:48.300000px;}
.h7_c01001{height:49.350000px;}
.h6_c01001{height:50.400000px;}
.h5_c01001{height:51.450000px;}
.h14_c01001{height:52.500000px;}
.h9_c01001{height:53.550000px;}
.h4_c01001{height:54.600000px;}
.h10_c01001{height:55.650000px;}
.h8_c01001{height:57.750000px;}
.h16_c01001{height:58.800000px;}
.h12_c01001{height:59.850000px;}
.hf_c01001{height:63.000000px;}
.h2_c01001{height:64.050000px;}
.ha_c01001{height:67.200000px;}
.hc_c01001{height:69.300000px;}
.hd_c01001{height:70.350000px;}
.he_c01001{height:71.400000px;}
.h3_c01001{height:72.450000px;}
.hb_c01001{height:73.500000px;}
.h11_c01001{height:78.750000px;}
.h0_c01001{height:1008.450000px;}
.h1_c01001{height:1008.750000px;}
.w1_c01001{width:700.500000px;}
.w0_c01001{width:700.650000px;}
.x0_c01001{left:0.000000px;}
.x43_c01001{left:75.060000px;}
.x44_c01001{left:84.780000px;}
.x45_c01001{left:109.080000px;}
.x3d_c01001{left:141.480000px;}
.x2c_c01001{left:143.100000px;}
.x15_c01001{left:144.180000px;}
.x33_c01001{left:146.880000px;}
.x34_c01001{left:155.520000px;}
.xd_c01001{left:157.410000px;}
.x1c_c01001{left:163.620000px;}
.x32_c01001{left:169.830000px;}
.x16_c01001{left:173.070000px;}
.x2d_c01001{left:176.040000px;}
.xe_c01001{left:177.120000px;}
.x35_c01001{left:178.470000px;}
.x39_c01001{left:179.550000px;}
.x1d_c01001{left:180.630000px;}
.x7_c01001{left:182.250000px;}
.x21_c01001{left:183.600000px;}
.x1_c01001{left:184.680000px;}
.x5c_c01001{left:186.570000px;}
.x4d_c01001{left:187.920000px;}
.x46_c01001{left:189.540000px;}
.x3e_c01001{left:190.890000px;}
.x90_c01001{left:193.860000px;}
.x22_c01001{left:201.690000px;}
.xf_c01001{left:202.770000px;}
.x23_c01001{left:204.930000px;}
.x8_c01001{left:207.630000px;}
.x82_c01001{left:208.980000px;}
.x88_c01001{left:210.330000px;}
.x4e_c01001{left:211.680000px;}
.x62_c01001{left:212.760000px;}
.x17_c01001{left:213.840000px;}
.x10_c01001{left:216.000000px;}
.x2_c01001{left:220.860000px;}
.x67_c01001{left:222.480000px;}
.x2e_c01001{left:223.560000px;}
.x27_c01001{left:225.180000px;}
.x9_c01001{left:226.530000px;}
.x5d_c01001{left:230.580000px;}
.x3a_c01001{left:233.010000px;}
.x36_c01001{left:235.170000px;}
.x18_c01001{left:239.490000px;}
.x24_c01001{left:241.380000px;}
.x89_c01001{left:242.460000px;}
.x6f_c01001{left:243.810000px;}
.x3f_c01001{left:247.860000px;}
.x28_c01001{left:249.750000px;}
.x68_c01001{left:253.800000px;}
.x3_c01001{left:255.960000px;}
.x91_c01001{left:257.850000px;}
.x2f_c01001{left:258.930000px;}
.x70_c01001{left:261.360000px;}
.x19_c01001{left:266.220000px;}
.x47_c01001{left:267.300000px;}
.x37_c01001{left:270.540000px;}
.x1e_c01001{left:272.160000px;}
.x83_c01001{left:273.240000px;}
.x11_c01001{left:274.320000px;}
.x3b_c01001{left:276.210000px;}
.x4_c01001{left:280.800000px;}
.xa_c01001{left:283.230000px;}
.x29_c01001{left:287.550000px;}
.x25_c01001{left:289.710000px;}
.x40_c01001{left:292.950000px;}
.x12_c01001{left:294.570000px;}
.x7b_c01001{left:297.000000px;}
.x30_c01001{left:299.700000px;}
.x38_c01001{left:304.020000px;}
.x1a_c01001{left:305.910000px;}
.xb_c01001{left:307.800000px;}
.x5_c01001{left:310.770000px;}
.x54_c01001{left:314.280000px;}
.x2a_c01001{left:315.900000px;}
.x69_c01001{left:318.600000px;}
.x41_c01001{left:321.030000px;}
.x80_c01001{left:322.920000px;}
.x1f_c01001{left:324.000000px;}
.x13_c01001{left:326.970000px;}
.x31_c01001{left:329.670000px;}
.x5e_c01001{left:331.830000px;}
.x1b_c01001{left:332.910000px;}
.x7a_c01001{left:334.260000px;}
.x14_c01001{left:337.230000px;}
.x48_c01001{left:338.310000px;}
.x2b_c01001{left:340.740000px;}
.x26_c01001{left:342.360000px;}
.x92_c01001{left:344.520000px;}
.x42_c01001{left:346.680000px;}
.x3c_c01001{left:349.110000px;}
.x6d_c01001{left:350.460000px;}
.xc_c01001{left:352.890000px;}
.x20_c01001{left:354.240000px;}
.x55_c01001{left:356.130000px;}
.x63_c01001{left:357.750000px;}
.x8a_c01001{left:364.230000px;}
.x6_c01001{left:365.580000px;}
.x56_c01001{left:370.170000px;}
.x84_c01001{left:375.300000px;}
.x49_c01001{left:376.650000px;}
.xac_c01001{left:379.350000px;}
.x85_c01001{left:380.970000px;}
.x4f_c01001{left:382.050000px;}
.x6a_c01001{left:383.400000px;}
.x5f_c01001{left:386.100000px;}
.x93_c01001{left:388.800000px;}
.xad_c01001{left:390.960000px;}
.x7c_c01001{left:392.040000px;}
.x9c_c01001{left:393.390000px;}
.x64_c01001{left:395.280000px;}
.x87_c01001{left:396.630000px;}
.x57_c01001{left:400.950000px;}
.xa1_c01001{left:402.030000px;}
.x94_c01001{left:404.460000px;}
.xb7_c01001{left:405.540000px;}
.x86_c01001{left:411.210000px;}
.x6b_c01001{left:414.720000px;}
.x60_c01001{left:417.690000px;}
.x58_c01001{left:419.040000px;}
.x4a_c01001{left:420.660000px;}
.x65_c01001{left:424.170000px;}
.xb8_c01001{left:428.220000px;}
.x50_c01001{left:429.570000px;}
.xa9_c01001{left:431.460000px;}
.xb0_c01001{left:432.540000px;}
.x71_c01001{left:434.430000px;}
.x75_c01001{left:435.510000px;}
.x97_c01001{left:436.860000px;}
.x59_c01001{left:440.100000px;}
.x61_c01001{left:445.230000px;}
.x51_c01001{left:446.310000px;}
.x98_c01001{left:447.390000px;}
.x66_c01001{left:448.740000px;}
.x8b_c01001{left:451.170000px;}
.x72_c01001{left:452.250000px;}
.x76_c01001{left:453.870000px;}
.x9d_c01001{left:456.030000px;}
.x99_c01001{left:459.810000px;}
.xb4_c01001{left:461.970000px;}
.x4b_c01001{left:463.590000px;}
.x73_c01001{left:465.210000px;}
.xa5_c01001{left:466.560000px;}
.x6c_c01001{left:471.690000px;}
.xb9_c01001{left:474.390000px;}
.x5a_c01001{left:475.740000px;}
.x7d_c01001{left:479.520000px;}
.x77_c01001{left:481.680000px;}
.x8c_c01001{left:483.030000px;}
.x74_c01001{left:484.920000px;}
.x95_c01001{left:486.000000px;}
.x4c_c01001{left:490.050000px;}
.xa6_c01001{left:492.750000px;}
.xaa_c01001{left:494.370000px;}
.xb1_c01001{left:496.530000px;}
.x52_c01001{left:503.280000px;}
.x96_c01001{left:505.440000px;}
.x5b_c01001{left:507.600000px;}
.x6e_c01001{left:509.220000px;}
.xba_c01001{left:514.350000px;}
.xa0_c01001{left:518.940000px;}
.x78_c01001{left:520.020000px;}
.xa7_c01001{left:521.640000px;}
.x8d_c01001{left:522.990000px;}
.x7e_c01001{left:524.340000px;}
.x9a_c01001{left:530.550000px;}
.x9e_c01001{left:532.710000px;}
.x8e_c01001{left:538.920000px;}
.xbb_c01001{left:542.160000px;}
.xb5_c01001{left:545.670000px;}
.x53_c01001{left:549.990000px;}
.xa2_c01001{left:551.070000px;}
.xbc_c01001{left:552.690000px;}
.x7f_c01001{left:554.850000px;}
.xa3_c01001{left:558.630000px;}
.xab_c01001{left:565.110000px;}
.xb2_c01001{left:566.460000px;}
.xae_c01001{left:568.080000px;}
.xa8_c01001{left:571.860000px;}
.x79_c01001{left:573.750000px;}
.x81_c01001{left:575.370000px;}
.xa4_c01001{left:576.990000px;}
.xb3_c01001{left:592.920000px;}
.xb6_c01001{left:594.270000px;}
.x9b_c01001{left:596.430000px;}
.xbd_c01001{left:599.670000px;}
.x8f_c01001{left:601.020000px;}
.x9f_c01001{left:607.230000px;}
.xaf_c01001{left:642.330000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ws0_c01001{word-spacing:0.000000pt;}
.fs13_c01001{font-size:42.000000pt;}
.fs11_c01001{font-size:42.933333pt;}
.fs5_c01001{font-size:43.866667pt;}
.fs4_c01001{font-size:44.800000pt;}
.fs3_c01001{font-size:45.733333pt;}
.fs12_c01001{font-size:46.666667pt;}
.fs7_c01001{font-size:47.600000pt;}
.fs2_c01001{font-size:48.533333pt;}
.fse_c01001{font-size:49.466667pt;}
.fs6_c01001{font-size:51.333333pt;}
.fs14_c01001{font-size:52.266667pt;}
.fs10_c01001{font-size:53.200000pt;}
.fsd_c01001{font-size:56.000000pt;}
.fs0_c01001{font-size:56.933333pt;}
.fs8_c01001{font-size:59.733333pt;}
.fsa_c01001{font-size:61.600000pt;}
.fsb_c01001{font-size:62.533333pt;}
.fsc_c01001{font-size:63.466667pt;}
.fs1_c01001{font-size:64.400000pt;}
.fs9_c01001{font-size:65.333333pt;}
.fsf_c01001{font-size:70.000000pt;}
.y0_c01001{bottom:0.000000pt;}
.yd_c01001{bottom:118.070667pt;}
.y2d_c01001{bottom:130.924000pt;}
.yc_c01001{bottom:133.453333pt;}
.y2c_c01001{bottom:146.924000pt;}
.yb_c01001{bottom:149.652000pt;}
.y2b_c01001{bottom:162.878667pt;}
.ya_c01001{bottom:165.237333pt;}
.y2a_c01001{bottom:178.938667pt;}
.y9_c01001{bottom:181.538667pt;}
.y29_c01001{bottom:195.153333pt;}
.y28_c01001{bottom:210.954667pt;}
.y8_c01001{bottom:212.469333pt;}
.y27_c01001{bottom:226.560000pt;}
.y1f_c01001{bottom:228.600000pt;}
.y26_c01001{bottom:242.705333pt;}
.y7_c01001{bottom:244.338667pt;}
.y25_c01001{bottom:259.072000pt;}
.y6_c01001{bottom:260.764000pt;}
.y24_c01001{bottom:275.205333pt;}
.y5_c01001{bottom:276.598667pt;}
.y23_c01001{bottom:290.981333pt;}
.y4_c01001{bottom:292.437333pt;}
.y22_c01001{bottom:307.369333pt;}
.y3_c01001{bottom:308.310667pt;}
.y1e_c01001{bottom:372.870667pt;}
.y1d_c01001{bottom:393.216000pt;}
.y1c_c01001{bottom:413.868000pt;}
.y21_c01001{bottom:433.440000pt;}
.y2_c01001{bottom:433.985333pt;}
.y1b_c01001{bottom:453.956000pt;}
.y1a_c01001{bottom:475.054667pt;}
.y19_c01001{bottom:495.414667pt;}
.y18_c01001{bottom:515.870667pt;}
.y17_c01001{bottom:536.509333pt;}
.y16_c01001{bottom:556.818667pt;}
.y15_c01001{bottom:577.200000pt;}
.y14_c01001{bottom:597.138667pt;}
.y20_c01001{bottom:617.681333pt;}
.y1_c01001{bottom:618.000000pt;}
.y13_c01001{bottom:638.141333pt;}
.y12_c01001{bottom:658.610667pt;}
.y11_c01001{bottom:678.809333pt;}
.y10_c01001{bottom:699.354667pt;}
.yf_c01001{bottom:719.814667pt;}
.ye_c01001{bottom:740.070667pt;}
.h15_c01001{height:42.000000pt;}
.h13_c01001{height:42.933333pt;}
.h7_c01001{height:43.866667pt;}
.h6_c01001{height:44.800000pt;}
.h5_c01001{height:45.733333pt;}
.h14_c01001{height:46.666667pt;}
.h9_c01001{height:47.600000pt;}
.h4_c01001{height:48.533333pt;}
.h10_c01001{height:49.466667pt;}
.h8_c01001{height:51.333333pt;}
.h16_c01001{height:52.266667pt;}
.h12_c01001{height:53.200000pt;}
.hf_c01001{height:56.000000pt;}
.h2_c01001{height:56.933333pt;}
.ha_c01001{height:59.733333pt;}
.hc_c01001{height:61.600000pt;}
.hd_c01001{height:62.533333pt;}
.he_c01001{height:63.466667pt;}
.h3_c01001{height:64.400000pt;}
.hb_c01001{height:65.333333pt;}
.h11_c01001{height:70.000000pt;}
.h0_c01001{height:896.400000pt;}
.h1_c01001{height:896.666667pt;}
.w1_c01001{width:622.666667pt;}
.w0_c01001{width:622.800000pt;}
.x0_c01001{left:0.000000pt;}
.x43_c01001{left:66.720000pt;}
.x44_c01001{left:75.360000pt;}
.x45_c01001{left:96.960000pt;}
.x3d_c01001{left:125.760000pt;}
.x2c_c01001{left:127.200000pt;}
.x15_c01001{left:128.160000pt;}
.x33_c01001{left:130.560000pt;}
.x34_c01001{left:138.240000pt;}
.xd_c01001{left:139.920000pt;}
.x1c_c01001{left:145.440000pt;}
.x32_c01001{left:150.960000pt;}
.x16_c01001{left:153.840000pt;}
.x2d_c01001{left:156.480000pt;}
.xe_c01001{left:157.440000pt;}
.x35_c01001{left:158.640000pt;}
.x39_c01001{left:159.600000pt;}
.x1d_c01001{left:160.560000pt;}
.x7_c01001{left:162.000000pt;}
.x21_c01001{left:163.200000pt;}
.x1_c01001{left:164.160000pt;}
.x5c_c01001{left:165.840000pt;}
.x4d_c01001{left:167.040000pt;}
.x46_c01001{left:168.480000pt;}
.x3e_c01001{left:169.680000pt;}
.x90_c01001{left:172.320000pt;}
.x22_c01001{left:179.280000pt;}
.xf_c01001{left:180.240000pt;}
.x23_c01001{left:182.160000pt;}
.x8_c01001{left:184.560000pt;}
.x82_c01001{left:185.760000pt;}
.x88_c01001{left:186.960000pt;}
.x4e_c01001{left:188.160000pt;}
.x62_c01001{left:189.120000pt;}
.x17_c01001{left:190.080000pt;}
.x10_c01001{left:192.000000pt;}
.x2_c01001{left:196.320000pt;}
.x67_c01001{left:197.760000pt;}
.x2e_c01001{left:198.720000pt;}
.x27_c01001{left:200.160000pt;}
.x9_c01001{left:201.360000pt;}
.x5d_c01001{left:204.960000pt;}
.x3a_c01001{left:207.120000pt;}
.x36_c01001{left:209.040000pt;}
.x18_c01001{left:212.880000pt;}
.x24_c01001{left:214.560000pt;}
.x89_c01001{left:215.520000pt;}
.x6f_c01001{left:216.720000pt;}
.x3f_c01001{left:220.320000pt;}
.x28_c01001{left:222.000000pt;}
.x68_c01001{left:225.600000pt;}
.x3_c01001{left:227.520000pt;}
.x91_c01001{left:229.200000pt;}
.x2f_c01001{left:230.160000pt;}
.x70_c01001{left:232.320000pt;}
.x19_c01001{left:236.640000pt;}
.x47_c01001{left:237.600000pt;}
.x37_c01001{left:240.480000pt;}
.x1e_c01001{left:241.920000pt;}
.x83_c01001{left:242.880000pt;}
.x11_c01001{left:243.840000pt;}
.x3b_c01001{left:245.520000pt;}
.x4_c01001{left:249.600000pt;}
.xa_c01001{left:251.760000pt;}
.x29_c01001{left:255.600000pt;}
.x25_c01001{left:257.520000pt;}
.x40_c01001{left:260.400000pt;}
.x12_c01001{left:261.840000pt;}
.x7b_c01001{left:264.000000pt;}
.x30_c01001{left:266.400000pt;}
.x38_c01001{left:270.240000pt;}
.x1a_c01001{left:271.920000pt;}
.xb_c01001{left:273.600000pt;}
.x5_c01001{left:276.240000pt;}
.x54_c01001{left:279.360000pt;}
.x2a_c01001{left:280.800000pt;}
.x69_c01001{left:283.200000pt;}
.x41_c01001{left:285.360000pt;}
.x80_c01001{left:287.040000pt;}
.x1f_c01001{left:288.000000pt;}
.x13_c01001{left:290.640000pt;}
.x31_c01001{left:293.040000pt;}
.x5e_c01001{left:294.960000pt;}
.x1b_c01001{left:295.920000pt;}
.x7a_c01001{left:297.120000pt;}
.x14_c01001{left:299.760000pt;}
.x48_c01001{left:300.720000pt;}
.x2b_c01001{left:302.880000pt;}
.x26_c01001{left:304.320000pt;}
.x92_c01001{left:306.240000pt;}
.x42_c01001{left:308.160000pt;}
.x3c_c01001{left:310.320000pt;}
.x6d_c01001{left:311.520000pt;}
.xc_c01001{left:313.680000pt;}
.x20_c01001{left:314.880000pt;}
.x55_c01001{left:316.560000pt;}
.x63_c01001{left:318.000000pt;}
.x8a_c01001{left:323.760000pt;}
.x6_c01001{left:324.960000pt;}
.x56_c01001{left:329.040000pt;}
.x84_c01001{left:333.600000pt;}
.x49_c01001{left:334.800000pt;}
.xac_c01001{left:337.200000pt;}
.x85_c01001{left:338.640000pt;}
.x4f_c01001{left:339.600000pt;}
.x6a_c01001{left:340.800000pt;}
.x5f_c01001{left:343.200000pt;}
.x93_c01001{left:345.600000pt;}
.xad_c01001{left:347.520000pt;}
.x7c_c01001{left:348.480000pt;}
.x9c_c01001{left:349.680000pt;}
.x64_c01001{left:351.360000pt;}
.x87_c01001{left:352.560000pt;}
.x57_c01001{left:356.400000pt;}
.xa1_c01001{left:357.360000pt;}
.x94_c01001{left:359.520000pt;}
.xb7_c01001{left:360.480000pt;}
.x86_c01001{left:365.520000pt;}
.x6b_c01001{left:368.640000pt;}
.x60_c01001{left:371.280000pt;}
.x58_c01001{left:372.480000pt;}
.x4a_c01001{left:373.920000pt;}
.x65_c01001{left:377.040000pt;}
.xb8_c01001{left:380.640000pt;}
.x50_c01001{left:381.840000pt;}
.xa9_c01001{left:383.520000pt;}
.xb0_c01001{left:384.480000pt;}
.x71_c01001{left:386.160000pt;}
.x75_c01001{left:387.120000pt;}
.x97_c01001{left:388.320000pt;}
.x59_c01001{left:391.200000pt;}
.x61_c01001{left:395.760000pt;}
.x51_c01001{left:396.720000pt;}
.x98_c01001{left:397.680000pt;}
.x66_c01001{left:398.880000pt;}
.x8b_c01001{left:401.040000pt;}
.x72_c01001{left:402.000000pt;}
.x76_c01001{left:403.440000pt;}
.x9d_c01001{left:405.360000pt;}
.x99_c01001{left:408.720000pt;}
.xb4_c01001{left:410.640000pt;}
.x4b_c01001{left:412.080000pt;}
.x73_c01001{left:413.520000pt;}
.xa5_c01001{left:414.720000pt;}
.x6c_c01001{left:419.280000pt;}
.xb9_c01001{left:421.680000pt;}
.x5a_c01001{left:422.880000pt;}
.x7d_c01001{left:426.240000pt;}
.x77_c01001{left:428.160000pt;}
.x8c_c01001{left:429.360000pt;}
.x74_c01001{left:431.040000pt;}
.x95_c01001{left:432.000000pt;}
.x4c_c01001{left:435.600000pt;}
.xa6_c01001{left:438.000000pt;}
.xaa_c01001{left:439.440000pt;}
.xb1_c01001{left:441.360000pt;}
.x52_c01001{left:447.360000pt;}
.x96_c01001{left:449.280000pt;}
.x5b_c01001{left:451.200000pt;}
.x6e_c01001{left:452.640000pt;}
.xba_c01001{left:457.200000pt;}
.xa0_c01001{left:461.280000pt;}
.x78_c01001{left:462.240000pt;}
.xa7_c01001{left:463.680000pt;}
.x8d_c01001{left:464.880000pt;}
.x7e_c01001{left:466.080000pt;}
.x9a_c01001{left:471.600000pt;}
.x9e_c01001{left:473.520000pt;}
.x8e_c01001{left:479.040000pt;}
.xbb_c01001{left:481.920000pt;}
.xb5_c01001{left:485.040000pt;}
.x53_c01001{left:488.880000pt;}
.xa2_c01001{left:489.840000pt;}
.xbc_c01001{left:491.280000pt;}
.x7f_c01001{left:493.200000pt;}
.xa3_c01001{left:496.560000pt;}
.xab_c01001{left:502.320000pt;}
.xb2_c01001{left:503.520000pt;}
.xae_c01001{left:504.960000pt;}
.xa8_c01001{left:508.320000pt;}
.x79_c01001{left:510.000000pt;}
.x81_c01001{left:511.440000pt;}
.xa4_c01001{left:512.880000pt;}
.xb3_c01001{left:527.040000pt;}
.xb6_c01001{left:528.240000pt;}
.x9b_c01001{left:530.160000pt;}
.xbd_c01001{left:533.040000pt;}
.x8f_c01001{left:534.240000pt;}
.x9f_c01001{left:539.760000pt;}
.xaf_c01001{left:570.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_c01002 {
    display:none;
  }
  .loading-indicator_c01002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01002 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01002 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01002" -> "#page-container .classname_c01002")
 */
.pf_c01002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01002 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01002 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01002 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01002 {overflow:visible;}
  }
}
.c_c01002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01002 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01002:after { /* webkit #35443 */
  content: '';
}
.t_c01002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01002 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01002 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01002 { /* info for Javascript */
  display:none;
}
.l_c01002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.000000;font-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_c01002{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);}
.m68_c01002{transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);}
.mbb_c01002{transform:matrix(0.050540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050540,0.000000,0.000000,0.250000,0,0);}
.m27_c01002{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.me7_c01002{transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);}
.m129_c01002{transform:matrix(0.140030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140030,0.000000,0.000000,0.250000,0,0);}
.mb_c01002{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);}
.m2f_c01002{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);}
.mf_c01002{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m54_c01002{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);}
.md_c01002{transform:matrix(0.152170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152170,0.000000,0.000000,0.250000,0,0);}
.ma_c01002{transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152265,0.000000,0.000000,0.250000,0,0);}
.mbc_c01002{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);}
.m1a_c01002{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.m78_c01002{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);}
.m79_c01002{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);}
.ma7_c01002{transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157270,0.000000,0.000000,0.250000,0,0);}
.m7c_c01002{transform:matrix(0.158070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158070,0.000000,0.000000,0.250000,0,0);}
.m45_c01002{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);}
.ma6_c01002{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);}
.m5_c01002{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);}
.m76_c01002{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);}
.mbf_c01002{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);}
.ma2_c01002{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.mc0_c01002{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);}
.m8_c01002{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);}
.m38_c01002{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);}
.m33_c01002{transform:matrix(0.164020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164020,0.000000,0.000000,0.250000,0,0);}
.m32_c01002{transform:matrix(0.164515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164515,0.000000,0.000000,0.250000,0,0);}
.me4_c01002{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);}
.mc2_c01002{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);}
.m13_c01002{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);}
.m15_c01002{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);}
.m22_c01002{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);}
.m11_c01002{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);}
.m14_c01002{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);}
.me2_c01002{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);}
.m10e_c01002{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);}
.m2d_c01002{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);}
.m1d_c01002{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);}
.m1e_c01002{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);}
.m119_c01002{transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171745,0.000000,0.000000,0.250000,0,0);}
.md3_c01002{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);}
.m7a_c01002{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);}
.mef_c01002{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);}
.m20_c01002{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);}
.mc9_c01002{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);}
.me_c01002{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);}
.md1_c01002{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);}
.m92_c01002{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);}
.md4_c01002{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);}
.m4c_c01002{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);}
.m35_c01002{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);}
.m3f_c01002{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);}
.mfa_c01002{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);}
.mb5_c01002{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);}
.mc4_c01002{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);}
.m127_c01002{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);}
.mf3_c01002{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);}
.m47_c01002{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);}
.m108_c01002{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);}
.m63_c01002{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);}
.mb1_c01002{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);}
.m12e_c01002{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);}
.mc3_c01002{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);}
.m10c_c01002{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);}
.md6_c01002{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);}
.ma1_c01002{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);}
.m3d_c01002{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);}
.m2e_c01002{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);}
.mf5_c01002{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);}
.mb9_c01002{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);}
.m65_c01002{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);}
.m6e_c01002{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);}
.mb2_c01002{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);}
.m2c_c01002{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);}
.ma5_c01002{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);}
.m73_c01002{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);}
.m114_c01002{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);}
.m7b_c01002{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);}
.m10b_c01002{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);}
.m67_c01002{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);}
.m115_c01002{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);}
.m36_c01002{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);}
.m30_c01002{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);}
.m6a_c01002{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);}
.m107_c01002{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);}
.m4a_c01002{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);}
.m91_c01002{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);}
.mcf_c01002{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);}
.m59_c01002{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);}
.m62_c01002{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);}
.m4e_c01002{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);}
.m3e_c01002{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);}
.m7e_c01002{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);}
.mf1_c01002{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);}
.m110_c01002{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);}
.ma4_c01002{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);}
.m77_c01002{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);}
.m75_c01002{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);}
.m39_c01002{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);}
.m21_c01002{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);}
.mf2_c01002{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);}
.m80_c01002{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);}
.m7d_c01002{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);}
.m64_c01002{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);}
.m116_c01002{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);}
.m72_c01002{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_c01002{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m5b_c01002{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);}
.m12c_c01002{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);}
.mf0_c01002{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m3a_c01002{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);}
.m118_c01002{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);}
.mf7_c01002{transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191910,0.000000,0.000000,0.250000,0,0);}
.m105_c01002{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);}
.m48_c01002{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);}
.m18_c01002{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);}
.m85_c01002{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);}
.m103_c01002{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);}
.m10a_c01002{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);}
.m71_c01002{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);}
.m7f_c01002{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);}
.mbe_c01002{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);}
.m23_c01002{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);}
.md2_c01002{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);}
.m88_c01002{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);}
.m5a_c01002{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);}
.m61_c01002{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);}
.m74_c01002{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);}
.mf4_c01002{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);}
.m109_c01002{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);}
.mb8_c01002{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);}
.m51_c01002{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);}
.mae_c01002{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);}
.m31_c01002{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);}
.m10d_c01002{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);}
.m10f_c01002{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);}
.m29_c01002{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);}
.mc8_c01002{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);}
.mb7_c01002{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);}
.m69_c01002{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);}
.m9f_c01002{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m6f_c01002{transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);}
.m106_c01002{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);}
.m3c_c01002{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);}
.m37_c01002{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);}
.m6d_c01002{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);}
.m16_c01002{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);}
.md8_c01002{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);}
.m9e_c01002{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);}
.mdf_c01002{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);}
.m46_c01002{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);}
.m86_c01002{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);}
.m100_c01002{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);}
.m58_c01002{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);}
.mcc_c01002{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);}
.mb4_c01002{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);}
.m8c_c01002{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);}
.m0_c01002{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);}
.md5_c01002{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);}
.mac_c01002{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);}
.mba_c01002{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m2b_c01002{transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210340,0.000000,0.000000,0.250000,0,0);}
.ma9_c01002{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);}
.mca_c01002{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);}
.mfb_c01002{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);}
.m1c_c01002{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);}
.mc_c01002{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);}
.mde_c01002{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);}
.me5_c01002{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);}
.m4b_c01002{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);}
.ma8_c01002{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);}
.m52_c01002{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);}
.m104_c01002{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);}
.m5c_c01002{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);}
.m4f_c01002{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);}
.mb3_c01002{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);}
.m6c_c01002{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);}
.m28_c01002{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);}
.mdb_c01002{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);}
.m17_c01002{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);}
.m11c_c01002{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);}
.m11a_c01002{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);}
.m49_c01002{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);}
.mda_c01002{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);}
.mce_c01002{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);}
.m84_c01002{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);}
.m26_c01002{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);}
.m19_c01002{transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217805,0.000000,0.000000,0.250000,0,0);}
.me0_c01002{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);}
.mf9_c01002{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);}
.m5d_c01002{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);}
.mf6_c01002{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);}
.mf8_c01002{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);}
.m99_c01002{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);}
.mfe_c01002{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);}
.m70_c01002{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);}
.m126_c01002{transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220610,0.000000,0.000000,0.250000,0,0);}
.m89_c01002{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);}
.m40_c01002{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);}
.m83_c01002{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);}
.m4d_c01002{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);}
.m101_c01002{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);}
.m87_c01002{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);}
.mfc_c01002{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);}
.mff_c01002{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);}
.m113_c01002{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);}
.mec_c01002{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);}
.m10_c01002{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);}
.m136_c01002{transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223830,0.000000,0.000000,0.250000,0,0);}
.m81_c01002{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);}
.mb0_c01002{transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224835,0.000000,0.000000,0.250000,0,0);}
.m12b_c01002{transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);}
.m102_c01002{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);}
.maa_c01002{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);}
.mc1_c01002{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);}
.m90_c01002{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);}
.mc7_c01002{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);}
.m9d_c01002{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);}
.mdc_c01002{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);}
.m2a_c01002{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m25_c01002{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.ma0_c01002{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);}
.mcb_c01002{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);}
.mab_c01002{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);}
.m93_c01002{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);}
.mad_c01002{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m112_c01002{transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);}
.m11d_c01002{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);}
.m11e_c01002{transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);}
.ma3_c01002{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);}
.m53_c01002{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);}
.m6b_c01002{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m57_c01002{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);}
.m97_c01002{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);}
.m9_c01002{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);}
.m117_c01002{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);}
.m125_c01002{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);}
.m34_c01002{transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);}
.m8f_c01002{transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);}
.mcd_c01002{transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);}
.m7_c01002{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);}
.maf_c01002{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);}
.m8b_c01002{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);}
.mfd_c01002{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);}
.m12_c01002{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m9c_c01002{transform:matrix(0.240615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240615,0.000000,0.000000,0.250000,0,0);}
.m135_c01002{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);}
.m11b_c01002{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);}
.m6_c01002{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);}
.m12a_c01002{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);}
.m1f_c01002{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);}
.m8e_c01002{transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);}
.m66_c01002{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.m24_c01002{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);}
.m12d_c01002{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);}
.mee_c01002{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m41_c01002{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);}
.m133_c01002{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);}
.m3b_c01002{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.me9_c01002{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m123_c01002{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m9b_c01002{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m1b_c01002{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);}
.m44_c01002{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);}
.m50_c01002{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);}
.m8d_c01002{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);}
.md0_c01002{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m11f_c01002{transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255275,0.000000,0.000000,0.250000,0,0);}
.mc5_c01002{transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);}
.m120_c01002{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);}
.m134_c01002{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);}
.m98_c01002{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);}
.m122_c01002{transform:matrix(0.266470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266470,0.000000,0.000000,0.250000,0,0);}
.m60_c01002{transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);}
.meb_c01002{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.m9a_c01002{transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269255,0.000000,0.000000,0.250000,0,0);}
.mbd_c01002{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.me3_c01002{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.m55_c01002{transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);}
.m8a_c01002{transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280210,0.000000,0.000000,0.250000,0,0);}
.mdd_c01002{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m42_c01002{transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286920,0.000000,0.000000,0.250000,0,0);}
.me1_c01002{transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);}
.m111_c01002{transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300730,0.000000,0.000000,0.250000,0,0);}
.m3_c01002{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);}
.mb6_c01002{transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308990,0.000000,0.000000,0.250000,0,0);}
.m96_c01002{transform:matrix(0.317825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317825,0.000000,0.000000,0.250000,0,0);}
.me8_c01002{transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);}
.m82_c01002{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);}
.m132_c01002{transform:matrix(0.322890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322890,0.000000,0.000000,0.250000,0,0);}
.mc6_c01002{transform:matrix(0.332510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332510,0.000000,0.000000,0.250000,0,0);}
.m124_c01002{transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337375,0.000000,0.000000,0.250000,0,0);}
.m43_c01002{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);}
.m121_c01002{transform:matrix(0.352480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352480,0.000000,0.000000,0.250000,0,0);}
.m128_c01002{transform:matrix(0.364070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364070,0.000000,0.000000,0.250000,0,0);}
.m12f_c01002{transform:matrix(0.371240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371240,0.000000,0.000000,0.250000,0,0);}
.m5e_c01002{transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);}
.me6_c01002{transform:matrix(0.382525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382525,0.000000,0.000000,0.250000,0,0);}
.m130_c01002{transform:matrix(0.395880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395880,0.000000,0.000000,0.250000,0,0);}
.mea_c01002{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);}
.m2_c01002{transform:matrix(0.417235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417235,0.000000,0.000000,0.250000,0,0);}
.m94_c01002{transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);}
.md9_c01002{transform:matrix(0.432040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432040,0.000000,0.000000,0.250000,0,0);}
.med_c01002{transform:matrix(0.441925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441925,0.000000,0.000000,0.250000,0,0);}
.m5f_c01002{transform:matrix(0.443355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443355,0.000000,0.000000,0.250000,0,0);}
.m95_c01002{transform:matrix(0.490500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490500,0.000000,0.000000,0.250000,0,0);}
.m1_c01002{transform:matrix(0.565449,-0.006785,0.003000,0.249982,0,0);-ms-transform:matrix(0.565449,-0.006785,0.003000,0.249982,0,0);-webkit-transform:matrix(0.565449,-0.006785,0.003000,0.249982,0,0);}
.m4_c01002{transform:matrix(0.725905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725905,0.000000,0.000000,0.250000,0,0);}
.m131_c01002{transform:matrix(0.844695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844695,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls0_c01002{letter-spacing:0.000000px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:0.000000px;}
._0_c01002{width:19.294602px;}
.fc0_c01002{color:transparent;}
.fs0_c01002{font-size:22.050000px;}
.fs18_c01002{font-size:45.150000px;}
.fs16_c01002{font-size:47.250000px;}
.fs12_c01002{font-size:48.300000px;}
.fs14_c01002{font-size:50.400000px;}
.fs17_c01002{font-size:51.450000px;}
.fs15_c01002{font-size:52.500000px;}
.fs13_c01002{font-size:53.550000px;}
.fs19_c01002{font-size:54.600000px;}
.fs11_c01002{font-size:57.750000px;}
.fs10_c01002{font-size:58.800000px;}
.fse_c01002{font-size:61.950000px;}
.fs7_c01002{font-size:63.000000px;}
.fsb_c01002{font-size:64.050000px;}
.fsf_c01002{font-size:66.150000px;}
.fsa_c01002{font-size:68.250000px;}
.fsd_c01002{font-size:69.300000px;}
.fs6_c01002{font-size:70.350000px;}
.fsc_c01002{font-size:71.400000px;}
.fs5_c01002{font-size:72.450000px;}
.fs9_c01002{font-size:74.550000px;}
.fs8_c01002{font-size:76.650000px;}
.fs4_c01002{font-size:78.750000px;}
.fs2_c01002{font-size:102.900000px;}
.fs3_c01002{font-size:114.450000px;}
.fs1_c01002{font-size:234.166858px;}
.y0_c01002{bottom:0.000000px;}
.y23_c01002{bottom:148.371000px;}
.y22_c01002{bottom:171.180000px;}
.y25_c01002{bottom:189.148500px;}
.y2f_c01002{bottom:190.510500px;}
.y24_c01002{bottom:206.283000px;}
.y2e_c01002{bottom:208.807500px;}
.y21_c01002{bottom:224.205000px;}
.y2d_c01002{bottom:226.848000px;}
.y20_c01002{bottom:241.807500px;}
.y2c_c01002{bottom:244.059000px;}
.y1f_c01002{bottom:259.854000px;}
.y2b_c01002{bottom:261.451500px;}
.y1e_c01002{bottom:277.560000px;}
.y2a_c01002{bottom:279.474000px;}
.y1d_c01002{bottom:295.374000px;}
.y29_c01002{bottom:297.363000px;}
.y1c_c01002{bottom:313.696500px;}
.y28_c01002{bottom:314.871000px;}
.y1b_c01002{bottom:331.587000px;}
.y27_c01002{bottom:333.049500px;}
.y1a_c01002{bottom:349.377000px;}
.y26_c01002{bottom:350.947500px;}
.y19_c01002{bottom:401.275500px;}
.y18_c01002{bottom:424.105500px;}
.y17_c01002{bottom:445.620000px;}
.y16_c01002{bottom:468.808500px;}
.y15_c01002{bottom:491.770500px;}
.y14_c01002{bottom:514.428000px;}
.y13_c01002{bottom:537.379500px;}
.y12_c01002{bottom:560.335500px;}
.y11_c01002{bottom:582.408000px;}
.yf_c01002{bottom:605.698500px;}
.ye_c01002{bottom:627.735000px;}
.y10_c01002{bottom:650.409000px;}
.yd_c01002{bottom:651.099000px;}
.yc_c01002{bottom:673.470000px;}
.yb_c01002{bottom:695.715000px;}
.ya_c01002{bottom:718.822500px;}
.y9_c01002{bottom:741.783000px;}
.y8_c01002{bottom:764.986500px;}
.y7_c01002{bottom:788.485500px;}
.y6_c01002{bottom:810.250500px;}
.y5_c01002{bottom:833.551500px;}
.y4_c01002{bottom:878.004000px;}
.y3_c01002{bottom:902.340000px;}
.y2_c01002{bottom:916.654500px;}
.y1_c01002{bottom:957.960000px;}
.h2_c01002{height:22.050000px;}
.h1a_c01002{height:45.150000px;}
.h18_c01002{height:47.250000px;}
.h14_c01002{height:48.300000px;}
.h16_c01002{height:50.400000px;}
.h19_c01002{height:51.450000px;}
.h17_c01002{height:52.500000px;}
.h15_c01002{height:53.550000px;}
.h1b_c01002{height:54.600000px;}
.h13_c01002{height:57.750000px;}
.h12_c01002{height:58.800000px;}
.h10_c01002{height:61.950000px;}
.h9_c01002{height:63.000000px;}
.hd_c01002{height:64.050000px;}
.h11_c01002{height:66.150000px;}
.hc_c01002{height:68.250000px;}
.hf_c01002{height:69.300000px;}
.h8_c01002{height:70.350000px;}
.he_c01002{height:71.400000px;}
.h7_c01002{height:72.450000px;}
.hb_c01002{height:74.550000px;}
.ha_c01002{height:76.650000px;}
.h6_c01002{height:78.750000px;}
.h4_c01002{height:102.900000px;}
.h5_c01002{height:114.450000px;}
.h3_c01002{height:234.166858px;}
.h1_c01002{height:1005.000000px;}
.h0_c01002{height:1005.150000px;}
.w0_c01002{width:715.200000px;}
.w1_c01002{width:715.500000px;}
.x0_c01002{left:0.000000px;}
.x2_c01002{left:66.021000px;}
.x3_c01002{left:67.500000px;}
.x85_c01002{left:109.620000px;}
.x71_c01002{left:117.990000px;}
.x6d_c01002{left:129.600000px;}
.x76_c01002{left:130.680000px;}
.x44_c01002{left:133.920000px;}
.x7a_c01002{left:139.050000px;}
.x7c_c01002{left:140.130000px;}
.x52_c01002{left:142.020000px;}
.x45_c01002{left:144.720000px;}
.x42_c01002{left:147.960000px;}
.x86_c01002{left:149.850000px;}
.xa_c01002{left:151.200000px;}
.x77_c01002{left:152.280000px;}
.x34_c01002{left:153.630000px;}
.x1a_c01002{left:154.710000px;}
.x72_c01002{left:156.060000px;}
.x7d_c01002{left:157.140000px;}
.x1_c01002{left:162.810000px;}
.x7b_c01002{left:167.130000px;}
.x1b_c01002{left:169.830000px;}
.x24_c01002{left:171.720000px;}
.x57_c01002{left:174.960000px;}
.xb_c01002{left:176.850000px;}
.x5f_c01002{left:179.820000px;}
.x11_c01002{left:181.440000px;}
.x1c_c01002{left:183.060000px;}
.x7e_c01002{left:185.760000px;}
.x67_c01002{left:191.700000px;}
.x40_c01002{left:193.050000px;}
.x35_c01002{left:196.830000px;}
.x46_c01002{left:199.800000px;}
.x4_c01002{left:202.230000px;}
.x4e_c01002{left:203.310000px;}
.x25_c01002{left:205.200000px;}
.x82_c01002{left:208.440000px;}
.x58_c01002{left:211.680000px;}
.x2f_c01002{left:213.570000px;}
.x7f_c01002{left:215.730000px;}
.x73_c01002{left:217.620000px;}
.x2a_c01002{left:219.240000px;}
.x63_c01002{left:220.320000px;}
.xc_c01002{left:223.020000px;}
.x4f_c01002{left:225.180000px;}
.x1d_c01002{left:226.800000px;}
.x12_c01002{left:230.040000px;}
.x81_c01002{left:232.470000px;}
.x6e_c01002{left:237.600000px;}
.x74_c01002{left:239.220000px;}
.x41_c01002{left:242.460000px;}
.x26_c01002{left:244.080000px;}
.x13_c01002{left:249.210000px;}
.x59_c01002{left:250.290000px;}
.x2b_c01002{left:253.260000px;}
.x47_c01002{left:255.150000px;}
.x62_c01002{left:259.470000px;}
.x1e_c01002{left:262.710000px;}
.x75_c01002{left:264.600000px;}
.x30_c01002{left:266.760000px;}
.x14_c01002{left:267.840000px;}
.x78_c01002{left:270.270000px;}
.x36_c01002{left:273.780000px;}
.x5_c01002{left:279.990000px;}
.x84_c01002{left:281.070000px;}
.x27_c01002{left:283.230000px;}
.x4d_c01002{left:285.660000px;}
.x64_c01002{left:287.550000px;}
.xd_c01002{left:289.980000px;}
.x80_c01002{left:292.950000px;}
.x48_c01002{left:294.300000px;}
.x28_c01002{left:295.650000px;}
.x1f_c01002{left:299.970000px;}
.x2c_c01002{left:302.940000px;}
.x3b_c01002{left:304.560000px;}
.x6f_c01002{left:306.450000px;}
.x79_c01002{left:308.070000px;}
.x83_c01002{left:312.390000px;}
.x87_c01002{left:314.280000px;}
.x5a_c01002{left:317.250000px;}
.x65_c01002{left:319.140000px;}
.x68_c01002{left:320.490000px;}
.x31_c01002{left:322.380000px;}
.x70_c01002{left:323.730000px;}
.x53_c01002{left:326.160000px;}
.xe_c01002{left:328.320000px;}
.x15_c01002{left:330.480000px;}
.x37_c01002{left:332.640000px;}
.x3c_c01002{left:335.070000px;}
.x69_c01002{left:339.930000px;}
.x2d_c01002{left:345.060000px;}
.x32_c01002{left:346.140000px;}
.x43_c01002{left:348.840000px;}
.x5b_c01002{left:351.810000px;}
.x16_c01002{left:355.320000px;}
.x6_c01002{left:358.830000px;}
.x6a_c01002{left:360.720000px;}
.x8d_c01002{left:365.580000px;}
.x88_c01002{left:366.660000px;}
.x20_c01002{left:369.090000px;}
.x49_c01002{left:370.980000px;}
.x33_c01002{left:374.490000px;}
.x7_c01002{left:377.460000px;}
.x50_c01002{left:379.890000px;}
.x38_c01002{left:382.590000px;}
.x9b_c01002{left:383.940000px;}
.x3d_c01002{left:385.560000px;}
.x4b_c01002{left:387.450000px;}
.x5c_c01002{left:388.530000px;}
.x60_c01002{left:389.610000px;}
.xa5_c01002{left:398.520000px;}
.xf_c01002{left:402.570000px;}
.x17_c01002{left:404.730000px;}
.x3e_c01002{left:407.160000px;}
.x8_c01002{left:409.860000px;}
.x4c_c01002{left:411.480000px;}
.x21_c01002{left:412.830000px;}
.x6b_c01002{left:415.260000px;}
.x89_c01002{left:418.500000px;}
.x18_c01002{left:420.120000px;}
.xa1_c01002{left:424.440000px;}
.x10_c01002{left:425.520000px;}
.x54_c01002{left:428.220000px;}
.x9c_c01002{left:429.570000px;}
.x39_c01002{left:430.920000px;}
.x22_c01002{left:437.130000px;}
.x2e_c01002{left:438.750000px;}
.x8e_c01002{left:442.260000px;}
.x61_c01002{left:443.880000px;}
.x6c_c01002{left:444.960000px;}
.x55_c01002{left:446.850000px;}
.x19_c01002{left:447.930000px;}
.x51_c01002{left:452.520000px;}
.x8a_c01002{left:463.050000px;}
.x95_c01002{left:465.750000px;}
.x4a_c01002{left:467.910000px;}
.x5d_c01002{left:470.880000px;}
.x9d_c01002{left:473.580000px;}
.x8f_c01002{left:478.440000px;}
.x23_c01002{left:479.790000px;}
.xa6_c01002{left:481.140000px;}
.x98_c01002{left:484.380000px;}
.x9_c01002{left:487.890000px;}
.x3a_c01002{left:490.860000px;}
.x66_c01002{left:495.720000px;}
.x56_c01002{left:496.800000px;}
.x99_c01002{left:499.770000px;}
.x9e_c01002{left:503.550000px;}
.x3f_c01002{left:507.600000px;}
.x90_c01002{left:511.110000px;}
.x93_c01002{left:514.620000px;}
.x5e_c01002{left:517.590000px;}
.xa2_c01002{left:521.100000px;}
.x8b_c01002{left:522.990000px;}
.x9f_c01002{left:524.070000px;}
.xa3_c01002{left:528.660000px;}
.xa0_c01002{left:535.950000px;}
.x96_c01002{left:539.190000px;}
.x94_c01002{left:544.050000px;}
.xa7_c01002{left:546.210000px;}
.x8c_c01002{left:547.560000px;}
.x91_c01002{left:549.990000px;}
.x9a_c01002{left:551.610000px;}
.x29_c01002{left:555.930000px;}
.x92_c01002{left:566.730000px;}
.x97_c01002{left:568.350000px;}
.xa4_c01002{left:574.830000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls0_c01002{letter-spacing:0.000000pt;}
.ws0_c01002{word-spacing:0.000000pt;}
._0_c01002{width:17.150758pt;}
.fs0_c01002{font-size:19.600000pt;}
.fs18_c01002{font-size:40.133333pt;}
.fs16_c01002{font-size:42.000000pt;}
.fs12_c01002{font-size:42.933333pt;}
.fs14_c01002{font-size:44.800000pt;}
.fs17_c01002{font-size:45.733333pt;}
.fs15_c01002{font-size:46.666667pt;}
.fs13_c01002{font-size:47.600000pt;}
.fs19_c01002{font-size:48.533333pt;}
.fs11_c01002{font-size:51.333333pt;}
.fs10_c01002{font-size:52.266667pt;}
.fse_c01002{font-size:55.066667pt;}
.fs7_c01002{font-size:56.000000pt;}
.fsb_c01002{font-size:56.933333pt;}
.fsf_c01002{font-size:58.800000pt;}
.fsa_c01002{font-size:60.666667pt;}
.fsd_c01002{font-size:61.600000pt;}
.fs6_c01002{font-size:62.533333pt;}
.fsc_c01002{font-size:63.466667pt;}
.fs5_c01002{font-size:64.400000pt;}
.fs9_c01002{font-size:66.266667pt;}
.fs8_c01002{font-size:68.133333pt;}
.fs4_c01002{font-size:70.000000pt;}
.fs2_c01002{font-size:91.466667pt;}
.fs3_c01002{font-size:101.733333pt;}
.fs1_c01002{font-size:208.148318pt;}
.y0_c01002{bottom:0.000000pt;}
.y23_c01002{bottom:131.885333pt;}
.y22_c01002{bottom:152.160000pt;}
.y25_c01002{bottom:168.132000pt;}
.y2f_c01002{bottom:169.342667pt;}
.y24_c01002{bottom:183.362667pt;}
.y2e_c01002{bottom:185.606667pt;}
.y21_c01002{bottom:199.293333pt;}
.y2d_c01002{bottom:201.642667pt;}
.y20_c01002{bottom:214.940000pt;}
.y2c_c01002{bottom:216.941333pt;}
.y1f_c01002{bottom:230.981333pt;}
.y2b_c01002{bottom:232.401333pt;}
.y1e_c01002{bottom:246.720000pt;}
.y2a_c01002{bottom:248.421333pt;}
.y1d_c01002{bottom:262.554667pt;}
.y29_c01002{bottom:264.322667pt;}
.y1c_c01002{bottom:278.841333pt;}
.y28_c01002{bottom:279.885333pt;}
.y1b_c01002{bottom:294.744000pt;}
.y27_c01002{bottom:296.044000pt;}
.y1a_c01002{bottom:310.557333pt;}
.y26_c01002{bottom:311.953333pt;}
.y19_c01002{bottom:356.689333pt;}
.y18_c01002{bottom:376.982667pt;}
.y17_c01002{bottom:396.106667pt;}
.y16_c01002{bottom:416.718667pt;}
.y15_c01002{bottom:437.129333pt;}
.y14_c01002{bottom:457.269333pt;}
.y13_c01002{bottom:477.670667pt;}
.y12_c01002{bottom:498.076000pt;}
.y11_c01002{bottom:517.696000pt;}
.yf_c01002{bottom:538.398667pt;}
.ye_c01002{bottom:557.986667pt;}
.y10_c01002{bottom:578.141333pt;}
.yd_c01002{bottom:578.754667pt;}
.yc_c01002{bottom:598.640000pt;}
.yb_c01002{bottom:618.413333pt;}
.ya_c01002{bottom:638.953333pt;}
.y9_c01002{bottom:659.362667pt;}
.y8_c01002{bottom:679.988000pt;}
.y7_c01002{bottom:700.876000pt;}
.y6_c01002{bottom:720.222667pt;}
.y5_c01002{bottom:740.934667pt;}
.y4_c01002{bottom:780.448000pt;}
.y3_c01002{bottom:802.080000pt;}
.y2_c01002{bottom:814.804000pt;}
.y1_c01002{bottom:851.520000pt;}
.h2_c01002{height:19.600000pt;}
.h1a_c01002{height:40.133333pt;}
.h18_c01002{height:42.000000pt;}
.h14_c01002{height:42.933333pt;}
.h16_c01002{height:44.800000pt;}
.h19_c01002{height:45.733333pt;}
.h17_c01002{height:46.666667pt;}
.h15_c01002{height:47.600000pt;}
.h1b_c01002{height:48.533333pt;}
.h13_c01002{height:51.333333pt;}
.h12_c01002{height:52.266667pt;}
.h10_c01002{height:55.066667pt;}
.h9_c01002{height:56.000000pt;}
.hd_c01002{height:56.933333pt;}
.h11_c01002{height:58.800000pt;}
.hc_c01002{height:60.666667pt;}
.hf_c01002{height:61.600000pt;}
.h8_c01002{height:62.533333pt;}
.he_c01002{height:63.466667pt;}
.h7_c01002{height:64.400000pt;}
.hb_c01002{height:66.266667pt;}
.ha_c01002{height:68.133333pt;}
.h6_c01002{height:70.000000pt;}
.h4_c01002{height:91.466667pt;}
.h5_c01002{height:101.733333pt;}
.h3_c01002{height:208.148318pt;}
.h1_c01002{height:893.333333pt;}
.h0_c01002{height:893.466667pt;}
.w0_c01002{width:635.733333pt;}
.w1_c01002{width:636.000000pt;}
.x0_c01002{left:0.000000pt;}
.x2_c01002{left:58.685333pt;}
.x3_c01002{left:60.000000pt;}
.x85_c01002{left:97.440000pt;}
.x71_c01002{left:104.880000pt;}
.x6d_c01002{left:115.200000pt;}
.x76_c01002{left:116.160000pt;}
.x44_c01002{left:119.040000pt;}
.x7a_c01002{left:123.600000pt;}
.x7c_c01002{left:124.560000pt;}
.x52_c01002{left:126.240000pt;}
.x45_c01002{left:128.640000pt;}
.x42_c01002{left:131.520000pt;}
.x86_c01002{left:133.200000pt;}
.xa_c01002{left:134.400000pt;}
.x77_c01002{left:135.360000pt;}
.x34_c01002{left:136.560000pt;}
.x1a_c01002{left:137.520000pt;}
.x72_c01002{left:138.720000pt;}
.x7d_c01002{left:139.680000pt;}
.x1_c01002{left:144.720000pt;}
.x7b_c01002{left:148.560000pt;}
.x1b_c01002{left:150.960000pt;}
.x24_c01002{left:152.640000pt;}
.x57_c01002{left:155.520000pt;}
.xb_c01002{left:157.200000pt;}
.x5f_c01002{left:159.840000pt;}
.x11_c01002{left:161.280000pt;}
.x1c_c01002{left:162.720000pt;}
.x7e_c01002{left:165.120000pt;}
.x67_c01002{left:170.400000pt;}
.x40_c01002{left:171.600000pt;}
.x35_c01002{left:174.960000pt;}
.x46_c01002{left:177.600000pt;}
.x4_c01002{left:179.760000pt;}
.x4e_c01002{left:180.720000pt;}
.x25_c01002{left:182.400000pt;}
.x82_c01002{left:185.280000pt;}
.x58_c01002{left:188.160000pt;}
.x2f_c01002{left:189.840000pt;}
.x7f_c01002{left:191.760000pt;}
.x73_c01002{left:193.440000pt;}
.x2a_c01002{left:194.880000pt;}
.x63_c01002{left:195.840000pt;}
.xc_c01002{left:198.240000pt;}
.x4f_c01002{left:200.160000pt;}
.x1d_c01002{left:201.600000pt;}
.x12_c01002{left:204.480000pt;}
.x81_c01002{left:206.640000pt;}
.x6e_c01002{left:211.200000pt;}
.x74_c01002{left:212.640000pt;}
.x41_c01002{left:215.520000pt;}
.x26_c01002{left:216.960000pt;}
.x13_c01002{left:221.520000pt;}
.x59_c01002{left:222.480000pt;}
.x2b_c01002{left:225.120000pt;}
.x47_c01002{left:226.800000pt;}
.x62_c01002{left:230.640000pt;}
.x1e_c01002{left:233.520000pt;}
.x75_c01002{left:235.200000pt;}
.x30_c01002{left:237.120000pt;}
.x14_c01002{left:238.080000pt;}
.x78_c01002{left:240.240000pt;}
.x36_c01002{left:243.360000pt;}
.x5_c01002{left:248.880000pt;}
.x84_c01002{left:249.840000pt;}
.x27_c01002{left:251.760000pt;}
.x4d_c01002{left:253.920000pt;}
.x64_c01002{left:255.600000pt;}
.xd_c01002{left:257.760000pt;}
.x80_c01002{left:260.400000pt;}
.x48_c01002{left:261.600000pt;}
.x28_c01002{left:262.800000pt;}
.x1f_c01002{left:266.640000pt;}
.x2c_c01002{left:269.280000pt;}
.x3b_c01002{left:270.720000pt;}
.x6f_c01002{left:272.400000pt;}
.x79_c01002{left:273.840000pt;}
.x83_c01002{left:277.680000pt;}
.x87_c01002{left:279.360000pt;}
.x5a_c01002{left:282.000000pt;}
.x65_c01002{left:283.680000pt;}
.x68_c01002{left:284.880000pt;}
.x31_c01002{left:286.560000pt;}
.x70_c01002{left:287.760000pt;}
.x53_c01002{left:289.920000pt;}
.xe_c01002{left:291.840000pt;}
.x15_c01002{left:293.760000pt;}
.x37_c01002{left:295.680000pt;}
.x3c_c01002{left:297.840000pt;}
.x69_c01002{left:302.160000pt;}
.x2d_c01002{left:306.720000pt;}
.x32_c01002{left:307.680000pt;}
.x43_c01002{left:310.080000pt;}
.x5b_c01002{left:312.720000pt;}
.x16_c01002{left:315.840000pt;}
.x6_c01002{left:318.960000pt;}
.x6a_c01002{left:320.640000pt;}
.x8d_c01002{left:324.960000pt;}
.x88_c01002{left:325.920000pt;}
.x20_c01002{left:328.080000pt;}
.x49_c01002{left:329.760000pt;}
.x33_c01002{left:332.880000pt;}
.x7_c01002{left:335.520000pt;}
.x50_c01002{left:337.680000pt;}
.x38_c01002{left:340.080000pt;}
.x9b_c01002{left:341.280000pt;}
.x3d_c01002{left:342.720000pt;}
.x4b_c01002{left:344.400000pt;}
.x5c_c01002{left:345.360000pt;}
.x60_c01002{left:346.320000pt;}
.xa5_c01002{left:354.240000pt;}
.xf_c01002{left:357.840000pt;}
.x17_c01002{left:359.760000pt;}
.x3e_c01002{left:361.920000pt;}
.x8_c01002{left:364.320000pt;}
.x4c_c01002{left:365.760000pt;}
.x21_c01002{left:366.960000pt;}
.x6b_c01002{left:369.120000pt;}
.x89_c01002{left:372.000000pt;}
.x18_c01002{left:373.440000pt;}
.xa1_c01002{left:377.280000pt;}
.x10_c01002{left:378.240000pt;}
.x54_c01002{left:380.640000pt;}
.x9c_c01002{left:381.840000pt;}
.x39_c01002{left:383.040000pt;}
.x22_c01002{left:388.560000pt;}
.x2e_c01002{left:390.000000pt;}
.x8e_c01002{left:393.120000pt;}
.x61_c01002{left:394.560000pt;}
.x6c_c01002{left:395.520000pt;}
.x55_c01002{left:397.200000pt;}
.x19_c01002{left:398.160000pt;}
.x51_c01002{left:402.240000pt;}
.x8a_c01002{left:411.600000pt;}
.x95_c01002{left:414.000000pt;}
.x4a_c01002{left:415.920000pt;}
.x5d_c01002{left:418.560000pt;}
.x9d_c01002{left:420.960000pt;}
.x8f_c01002{left:425.280000pt;}
.x23_c01002{left:426.480000pt;}
.xa6_c01002{left:427.680000pt;}
.x98_c01002{left:430.560000pt;}
.x9_c01002{left:433.680000pt;}
.x3a_c01002{left:436.320000pt;}
.x66_c01002{left:440.640000pt;}
.x56_c01002{left:441.600000pt;}
.x99_c01002{left:444.240000pt;}
.x9e_c01002{left:447.600000pt;}
.x3f_c01002{left:451.200000pt;}
.x90_c01002{left:454.320000pt;}
.x93_c01002{left:457.440000pt;}
.x5e_c01002{left:460.080000pt;}
.xa2_c01002{left:463.200000pt;}
.x8b_c01002{left:464.880000pt;}
.x9f_c01002{left:465.840000pt;}
.xa3_c01002{left:469.920000pt;}
.xa0_c01002{left:476.400000pt;}
.x96_c01002{left:479.280000pt;}
.x94_c01002{left:483.600000pt;}
.xa7_c01002{left:485.520000pt;}
.x8c_c01002{left:486.720000pt;}
.x91_c01002{left:488.880000pt;}
.x9a_c01002{left:490.320000pt;}
.x29_c01002{left:494.160000pt;}
.x92_c01002{left:503.760000pt;}
.x97_c01002{left:505.200000pt;}
.xa4_c01002{left:510.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_c01003 {
    display:none;
  }
  .loading-indicator_c01003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01003 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01003 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01003" -> "#page-container .classname_c01003")
 */
.pf_c01003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01003 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01003 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01003 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01003 {overflow:visible;}
  }
}
.c_c01003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01003 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01003:after { /* webkit #35443 */
  content: '';
}
.t_c01003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01003 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01003 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01003 { /* info for Javascript */
  display:none;
}
.l_c01003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.000000;font-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_c01003{transform:matrix(0.010909,0.000142,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010909,0.000142,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010909,0.000142,-0.003250,0.249979,0,0);}
.m8d_c01003{transform:matrix(0.011064,0.000155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.011064,0.000155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.011064,0.000155,-0.003500,0.249976,0,0);}
.ma7_c01003{transform:matrix(0.024652,0.000370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.024652,0.000370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.024652,0.000370,-0.003750,0.249972,0,0);}
.m9b_c01003{transform:matrix(0.035202,0.000493,-0.003500,0.249976,0,0);-ms-transform:matrix(0.035202,0.000493,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.035202,0.000493,-0.003500,0.249976,0,0);}
.maa_c01003{transform:matrix(0.072002,0.001080,-0.003750,0.249972,0,0);-ms-transform:matrix(0.072002,0.001080,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.072002,0.001080,-0.003750,0.249972,0,0);}
.ma9_c01003{transform:matrix(0.084560,0.001268,-0.003750,0.249972,0,0);-ms-transform:matrix(0.084560,0.001268,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.084560,0.001268,-0.003750,0.249972,0,0);}
.m11_c01003{transform:matrix(0.109590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109590,0.000000,0.000000,0.250000,0,0);}
.ma8_c01003{transform:matrix(0.111702,0.001676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.111702,0.001676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.111702,0.001676,-0.003750,0.249972,0,0);}
.mab_c01003{transform:matrix(0.114012,0.001710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.114012,0.001710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.114012,0.001710,-0.003750,0.249972,0,0);}
.mae_c01003{transform:matrix(0.124021,0.001860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.124021,0.001860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.124021,0.001860,-0.003750,0.249972,0,0);}
.ma4_c01003{transform:matrix(0.126136,0.001892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.126136,0.001892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.126136,0.001892,-0.003750,0.249972,0,0);}
.ma1_c01003{transform:matrix(0.130467,0.001827,-0.003500,0.249976,0,0);-ms-transform:matrix(0.130467,0.001827,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.130467,0.001827,-0.003500,0.249976,0,0);}
.m6a_c01003{transform:matrix(0.144454,0.002167,-0.003750,0.249972,0,0);-ms-transform:matrix(0.144454,0.002167,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.144454,0.002167,-0.003750,0.249972,0,0);}
.m70_c01003{transform:matrix(0.145059,0.002756,-0.004749,0.249955,0,0);-ms-transform:matrix(0.145059,0.002756,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.145059,0.002756,-0.004749,0.249955,0,0);}
.m63_c01003{transform:matrix(0.149368,0.002241,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149368,0.002241,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149368,0.002241,-0.003750,0.249972,0,0);}
.m55_c01003{transform:matrix(0.149572,0.001944,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149572,0.001944,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149572,0.001944,-0.003250,0.249979,0,0);}
.m81_c01003{transform:matrix(0.151048,0.003776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151048,0.003776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151048,0.003776,-0.006248,0.249922,0,0);}
.m2_c01003{transform:matrix(0.152560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152560,0.000000,0.000000,0.250000,0,0);}
.m2d_c01003{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);}
.m7a_c01003{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);}
.m92_c01003{transform:matrix(0.161409,0.002260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161409,0.002260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161409,0.002260,-0.003500,0.249976,0,0);}
.ma0_c01003{transform:matrix(0.161704,0.002264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.161704,0.002264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.161704,0.002264,-0.003500,0.249976,0,0);}
.m33_c01003{transform:matrix(0.163366,0.002124,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163366,0.002124,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163366,0.002124,-0.003250,0.249979,0,0);}
.m5a_c01003{transform:matrix(0.164726,0.002471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164726,0.002471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164726,0.002471,-0.003750,0.249972,0,0);}
.m1b_c01003{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);}
.m2c_c01003{transform:matrix(0.164941,0.002144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164941,0.002144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164941,0.002144,-0.003250,0.249979,0,0);}
.m75_c01003{transform:matrix(0.165670,0.003148,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165670,0.003148,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165670,0.003148,-0.004749,0.249955,0,0);}
.m3f_c01003{transform:matrix(0.166051,0.002159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166051,0.002159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166051,0.002159,-0.003250,0.249979,0,0);}
.m7_c01003{transform:matrix(0.167976,0.001176,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167976,0.001176,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167976,0.001176,-0.001750,0.249994,0,0);}
.m71_c01003{transform:matrix(0.168535,0.003202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168535,0.003202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168535,0.003202,-0.004749,0.249955,0,0);}
.m56_c01003{transform:matrix(0.168696,0.002193,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168696,0.002193,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168696,0.002193,-0.003250,0.249979,0,0);}
.mc_c01003{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);}
.m16_c01003{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);}
.m36_c01003{transform:matrix(0.170056,0.002211,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170056,0.002211,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170056,0.002211,-0.003250,0.249979,0,0);}
.m9e_c01003{transform:matrix(0.170893,0.002393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170893,0.002393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170893,0.002393,-0.003500,0.249976,0,0);}
.m62_c01003{transform:matrix(0.171836,0.002578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171836,0.002578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171836,0.002578,-0.003750,0.249972,0,0);}
.m94_c01003{transform:matrix(0.172088,0.002409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172088,0.002409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172088,0.002409,-0.003500,0.249976,0,0);}
.mb5_c01003{transform:matrix(0.172441,0.002587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172441,0.002587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172441,0.002587,-0.003750,0.249972,0,0);}
.m51_c01003{transform:matrix(0.172835,0.002247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172835,0.002247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172835,0.002247,-0.003250,0.249979,0,0);}
.m50_c01003{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);}
.m80_c01003{transform:matrix(0.173671,0.004342,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173671,0.004342,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173671,0.004342,-0.006248,0.249922,0,0);}
.mc9_c01003{transform:matrix(0.174190,0.002613,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174190,0.002613,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174190,0.002613,-0.003750,0.249972,0,0);}
.m54_c01003{transform:matrix(0.175890,0.002287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175890,0.002287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175890,0.002287,-0.003250,0.249979,0,0);}
.m1a_c01003{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);}
.m6e_c01003{transform:matrix(0.178115,0.002672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178115,0.002672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178115,0.002672,-0.003750,0.249972,0,0);}
.m1f_c01003{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);}
.mbc_c01003{transform:matrix(0.179645,0.002695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179645,0.002695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179645,0.002695,-0.003750,0.249972,0,0);}
.m78_c01003{transform:matrix(0.179988,0.003420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179988,0.003420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179988,0.003420,-0.004749,0.249955,0,0);}
.mc5_c01003{transform:matrix(0.180215,0.002703,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180215,0.002703,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180215,0.002703,-0.003750,0.249972,0,0);}
.m6b_c01003{transform:matrix(0.180290,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180290,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180290,0.002704,-0.003750,0.249972,0,0);}
.mbf_c01003{transform:matrix(0.181955,0.002729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181955,0.002729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181955,0.002729,-0.003750,0.249972,0,0);}
.mc8_c01003{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);}
.m79_c01003{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);}
.m74_c01003{transform:matrix(0.183222,0.003481,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183222,0.003481,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183222,0.003481,-0.004749,0.249955,0,0);}
.ma2_c01003{transform:matrix(0.183237,0.002565,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183237,0.002565,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183237,0.002565,-0.003500,0.249976,0,0);}
.m82_c01003{transform:matrix(0.183758,0.004594,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183758,0.004594,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183758,0.004594,-0.006248,0.249922,0,0);}
.m2a_c01003{transform:matrix(0.184319,0.002396,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184319,0.002396,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184319,0.002396,-0.003250,0.249979,0,0);}
.mbd_c01003{transform:matrix(0.185249,0.002779,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185249,0.002779,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185249,0.002779,-0.003750,0.249972,0,0);}
.m26_c01003{transform:matrix(0.185399,0.002410,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185399,0.002410,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185399,0.002410,-0.003250,0.249979,0,0);}
.m5b_c01003{transform:matrix(0.185444,0.002782,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185444,0.002782,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185444,0.002782,-0.003750,0.249972,0,0);}
.m7b_c01003{transform:matrix(0.185572,0.003526,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185572,0.003526,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185572,0.003526,-0.004749,0.249955,0,0);}
.m53_c01003{transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185964,0.002418,-0.003250,0.249979,0,0);}
.m72_c01003{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);}
.m25_c01003{transform:matrix(0.186904,0.002430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186904,0.002430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186904,0.002430,-0.003250,0.249979,0,0);}
.m28_c01003{transform:matrix(0.187179,0.002433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187179,0.002433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187179,0.002433,-0.003250,0.249979,0,0);}
.m23_c01003{transform:matrix(0.187184,0.002433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187184,0.002433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187184,0.002433,-0.003250,0.249979,0,0);}
.mca_c01003{transform:matrix(0.187324,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187324,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187324,0.002810,-0.003750,0.249972,0,0);}
.m66_c01003{transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);}
.mb7_c01003{transform:matrix(0.187889,0.002818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187889,0.002818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187889,0.002818,-0.003750,0.249972,0,0);}
.mc4_c01003{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);}
.mb6_c01003{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);}
.m7e_c01003{transform:matrix(0.190131,0.004753,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190131,0.004753,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190131,0.004753,-0.006248,0.249922,0,0);}
.m22_c01003{transform:matrix(0.190999,0.002483,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190999,0.002483,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190999,0.002483,-0.003250,0.249979,0,0);}
.m6d_c01003{transform:matrix(0.191583,0.002874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191583,0.002874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191583,0.002874,-0.003750,0.249972,0,0);}
.m52_c01003{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);}
.m1d_c01003{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);}
.m39_c01003{transform:matrix(0.192154,0.002498,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192154,0.002498,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192154,0.002498,-0.003250,0.249979,0,0);}
.mc7_c01003{transform:matrix(0.192563,0.002888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192563,0.002888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192563,0.002888,-0.003750,0.249972,0,0);}
.m5c_c01003{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);}
.m45_c01003{transform:matrix(0.193339,0.002513,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193339,0.002513,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193339,0.002513,-0.003250,0.249979,0,0);}
.m58_c01003{transform:matrix(0.193823,0.002907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193823,0.002907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193823,0.002907,-0.003750,0.249972,0,0);}
.m2e_c01003{transform:matrix(0.193834,0.002520,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193834,0.002520,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193834,0.002520,-0.003250,0.249979,0,0);}
.m29_c01003{transform:matrix(0.194139,0.002524,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194139,0.002524,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194139,0.002524,-0.003250,0.249979,0,0);}
.m42_c01003{transform:matrix(0.194574,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194574,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194574,0.002529,-0.003250,0.249979,0,0);}
.m38_c01003{transform:matrix(0.195533,0.002542,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195533,0.002542,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195533,0.002542,-0.003250,0.249979,0,0);}
.mc3_c01003{transform:matrix(0.195678,0.002935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195678,0.002935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195678,0.002935,-0.003750,0.249972,0,0);}
.m41_c01003{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);}
.m59_c01003{transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196778,0.002952,-0.003750,0.249972,0,0);}
.m4f_c01003{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);}
.m2b_c01003{transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);}
.m30_c01003{transform:matrix(0.197788,0.002571,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197788,0.002571,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197788,0.002571,-0.003250,0.249979,0,0);}
.m24_c01003{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);}
.m76_c01003{transform:matrix(0.199004,0.003781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199004,0.003781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199004,0.003781,-0.004749,0.249955,0,0);}
.mc6_c01003{transform:matrix(0.199488,0.002992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199488,0.002992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199488,0.002992,-0.003750,0.249972,0,0);}
.m31_c01003{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);}
.m8_c01003{transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);}
.m35_c01003{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);}
.m4e_c01003{transform:matrix(0.201528,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201528,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201528,0.002620,-0.003250,0.249979,0,0);}
.m73_c01003{transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201639,0.003831,-0.004749,0.249955,0,0);}
.m7c_c01003{transform:matrix(0.201789,0.003834,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201789,0.003834,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201789,0.003834,-0.004749,0.249955,0,0);}
.m3b_c01003{transform:matrix(0.202048,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202048,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202048,0.002627,-0.003250,0.249979,0,0);}
.m44_c01003{transform:matrix(0.202198,0.002629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202198,0.002629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202198,0.002629,-0.003250,0.249979,0,0);}
.m5f_c01003{transform:matrix(0.202387,0.003036,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202387,0.003036,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202387,0.003036,-0.003750,0.249972,0,0);}
.m69_c01003{transform:matrix(0.203977,0.003060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203977,0.003060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203977,0.003060,-0.003750,0.249972,0,0);}
.m14_c01003{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);}
.mbe_c01003{transform:matrix(0.205382,0.003081,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205382,0.003081,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205382,0.003081,-0.003750,0.249972,0,0);}
.m6_c01003{transform:matrix(0.205410,0.001438,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205410,0.001438,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205410,0.001438,-0.001750,0.249994,0,0);}
.mc1_c01003{transform:matrix(0.205442,0.003082,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205442,0.003082,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205442,0.003082,-0.003750,0.249972,0,0);}
.mcd_c01003{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);}
.m49_c01003{transform:matrix(0.206743,0.002688,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206743,0.002688,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206743,0.002688,-0.003250,0.249979,0,0);}
.m1e_c01003{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);}
.m32_c01003{transform:matrix(0.207392,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207392,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207392,0.002696,-0.003250,0.249979,0,0);}
.m60_c01003{transform:matrix(0.207702,0.003116,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207702,0.003116,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207702,0.003116,-0.003750,0.249972,0,0);}
.m27_c01003{transform:matrix(0.207877,0.002702,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207877,0.002702,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207877,0.002702,-0.003250,0.249979,0,0);}
.m5e_c01003{transform:matrix(0.209051,0.003136,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209051,0.003136,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209051,0.003136,-0.003750,0.249972,0,0);}
.maf_c01003{transform:matrix(0.209346,0.003140,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209346,0.003140,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209346,0.003140,-0.003750,0.249972,0,0);}
.m9f_c01003{transform:matrix(0.211604,0.002962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211604,0.002962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211604,0.002962,-0.003500,0.249976,0,0);}
.m77_c01003{transform:matrix(0.213941,0.004065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213941,0.004065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213941,0.004065,-0.004749,0.249955,0,0);}
.m96_c01003{transform:matrix(0.214989,0.003010,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214989,0.003010,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214989,0.003010,-0.003500,0.249976,0,0);}
.m3e_c01003{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);}
.m8a_c01003{transform:matrix(0.216924,0.003037,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216924,0.003037,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216924,0.003037,-0.003500,0.249976,0,0);}
.m34_c01003{transform:matrix(0.218737,0.002844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218737,0.002844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218737,0.002844,-0.003250,0.249979,0,0);}
.m40_c01003{transform:matrix(0.218937,0.002846,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218937,0.002846,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218937,0.002846,-0.003250,0.249979,0,0);}
.m64_c01003{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);}
.m9_c01003{transform:matrix(0.221255,0.001549,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221255,0.001549,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221255,0.001549,-0.001750,0.249994,0,0);}
.mc2_c01003{transform:matrix(0.221600,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221600,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221600,0.003324,-0.003750,0.249972,0,0);}
.m65_c01003{transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222515,0.003338,-0.003750,0.249972,0,0);}
.m15_c01003{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);}
.m6f_c01003{transform:matrix(0.223125,0.003347,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223125,0.003347,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223125,0.003347,-0.003750,0.249972,0,0);}
.m5d_c01003{transform:matrix(0.223350,0.003350,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223350,0.003350,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223350,0.003350,-0.003750,0.249972,0,0);}
.m4a_c01003{transform:matrix(0.224896,0.002924,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224896,0.002924,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224896,0.002924,-0.003250,0.249979,0,0);}
.m21_c01003{transform:matrix(0.225666,0.002934,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225666,0.002934,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225666,0.002934,-0.003250,0.249979,0,0);}
.m9a_c01003{transform:matrix(0.225703,0.003160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225703,0.003160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225703,0.003160,-0.003500,0.249976,0,0);}
.m68_c01003{transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);}
.m57_c01003{transform:matrix(0.227394,0.003411,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227394,0.003411,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227394,0.003411,-0.003750,0.249972,0,0);}
.m2f_c01003{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);}
.m99_c01003{transform:matrix(0.227993,0.003192,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227993,0.003192,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227993,0.003192,-0.003500,0.249976,0,0);}
.m37_c01003{transform:matrix(0.228296,0.002968,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228296,0.002968,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228296,0.002968,-0.003250,0.249979,0,0);}
.mb4_c01003{transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229004,0.003435,-0.003750,0.249972,0,0);}
.m6c_c01003{transform:matrix(0.230549,0.003458,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230549,0.003458,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230549,0.003458,-0.003750,0.249972,0,0);}
.m19_c01003{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);}
.m87_c01003{transform:matrix(0.235837,0.003302,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235837,0.003302,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235837,0.003302,-0.003500,0.249976,0,0);}
.m8c_c01003{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);}
.m48_c01003{transform:matrix(0.238240,0.003097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238240,0.003097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238240,0.003097,-0.003250,0.249979,0,0);}
.m13_c01003{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);}
.mb_c01003{transform:matrix(0.239939,0.001680,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239939,0.001680,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239939,0.001680,-0.001750,0.249994,0,0);}
.m86_c01003{transform:matrix(0.240096,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240096,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240096,0.003361,-0.003500,0.249976,0,0);}
.m91_c01003{transform:matrix(0.240336,0.003365,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240336,0.003365,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240336,0.003365,-0.003500,0.249976,0,0);}
.m46_c01003{transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241525,0.003140,-0.003250,0.249979,0,0);}
.ma5_c01003{transform:matrix(0.242148,0.003632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242148,0.003632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242148,0.003632,-0.003750,0.249972,0,0);}
.ma_c01003{transform:matrix(0.242564,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242564,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242564,0.001698,-0.001750,0.249994,0,0);}
.m97_c01003{transform:matrix(0.243221,0.003405,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243221,0.003405,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243221,0.003405,-0.003500,0.249976,0,0);}
.m47_c01003{transform:matrix(0.244169,0.003174,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244169,0.003174,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244169,0.003174,-0.003250,0.249979,0,0);}
.mb9_c01003{transform:matrix(0.244183,0.003663,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244183,0.003663,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244183,0.003663,-0.003750,0.249972,0,0);}
.mb8_c01003{transform:matrix(0.247362,0.003710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247362,0.003710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247362,0.003710,-0.003750,0.249972,0,0);}
.m95_c01003{transform:matrix(0.247516,0.003465,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247516,0.003465,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247516,0.003465,-0.003500,0.249976,0,0);}
.m4b_c01003{transform:matrix(0.248074,0.003225,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248074,0.003225,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248074,0.003225,-0.003250,0.249979,0,0);}
.m7d_c01003{transform:matrix(0.249657,0.006241,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249657,0.006241,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249657,0.006241,-0.006248,0.249922,0,0);}
.m4d_c01003{transform:matrix(0.249869,0.003248,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249869,0.003248,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249869,0.003248,-0.003250,0.249979,0,0);}
.m3a_c01003{transform:matrix(0.251059,0.003264,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251059,0.003264,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251059,0.003264,-0.003250,0.249979,0,0);}
.m61_c01003{transform:matrix(0.251972,0.003780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251972,0.003780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251972,0.003780,-0.003750,0.249972,0,0);}
.m67_c01003{transform:matrix(0.251982,0.003780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251982,0.003780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251982,0.003780,-0.003750,0.249972,0,0);}
.m1_c01003{transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);}
.mcc_c01003{transform:matrix(0.254106,0.003812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254106,0.003812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254106,0.003812,-0.003750,0.249972,0,0);}
.m98_c01003{transform:matrix(0.255655,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255655,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255655,0.003579,-0.003500,0.249976,0,0);}
.m9d_c01003{transform:matrix(0.257255,0.003602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257255,0.003602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257255,0.003602,-0.003500,0.249976,0,0);}
.m93_c01003{transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);}
.mc0_c01003{transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);}
.mb1_c01003{transform:matrix(0.258116,0.003872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258116,0.003872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258116,0.003872,-0.003750,0.249972,0,0);}
.m43_c01003{transform:matrix(0.264493,0.003438,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264493,0.003438,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264493,0.003438,-0.003250,0.249979,0,0);}
.mb2_c01003{transform:matrix(0.264530,0.003968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264530,0.003968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264530,0.003968,-0.003750,0.249972,0,0);}
.m4c_c01003{transform:matrix(0.265733,0.003455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265733,0.003455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265733,0.003455,-0.003250,0.249979,0,0);}
.m8b_c01003{transform:matrix(0.267879,0.003750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267879,0.003750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267879,0.003750,-0.003500,0.249976,0,0);}
.mb3_c01003{transform:matrix(0.274254,0.004114,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274254,0.004114,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274254,0.004114,-0.003750,0.249972,0,0);}
.m3_c01003{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m17_c01003{transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285220,0.000000,0.000000,0.250000,0,0);}
.me_c01003{transform:matrix(0.286710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286710,0.000000,0.000000,0.250000,0,0);}
.m83_c01003{transform:matrix(0.304555,0.007614,-0.006248,0.249922,0,0);-ms-transform:matrix(0.304555,0.007614,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.304555,0.007614,-0.006248,0.249922,0,0);}
.ma3_c01003{transform:matrix(0.327243,0.004581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.327243,0.004581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.327243,0.004581,-0.003500,0.249976,0,0);}
.m8f_c01003{transform:matrix(0.336302,0.004708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.336302,0.004708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.336302,0.004708,-0.003500,0.249976,0,0);}
.m4_c01003{transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341290,0.000000,0.000000,0.250000,0,0);}
.m89_c01003{transform:matrix(0.356220,0.004987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.356220,0.004987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.356220,0.004987,-0.003500,0.249976,0,0);}
.m5_c01003{transform:matrix(0.359730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359730,0.000000,0.000000,0.250000,0,0);}
.m7f_c01003{transform:matrix(0.362537,0.009063,-0.006248,0.249922,0,0);-ms-transform:matrix(0.362537,0.009063,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.362537,0.009063,-0.006248,0.249922,0,0);}
.m3d_c01003{transform:matrix(0.370119,0.004812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.370119,0.004812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.370119,0.004812,-0.003250,0.249979,0,0);}
.mb0_c01003{transform:matrix(0.380882,0.005713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.380882,0.005713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.380882,0.005713,-0.003750,0.249972,0,0);}
.m88_c01003{transform:matrix(0.381648,0.005343,-0.003500,0.249976,0,0);-ms-transform:matrix(0.381648,0.005343,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.381648,0.005343,-0.003500,0.249976,0,0);}
.m10_c01003{transform:matrix(0.394510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394510,0.000000,0.000000,0.250000,0,0);}
.mac_c01003{transform:matrix(0.397190,0.005958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.397190,0.005958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.397190,0.005958,-0.003750,0.249972,0,0);}
.mcb_c01003{transform:matrix(0.407959,0.006119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.407959,0.006119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.407959,0.006119,-0.003750,0.249972,0,0);}
.m90_c01003{transform:matrix(0.419784,0.005877,-0.003500,0.249976,0,0);-ms-transform:matrix(0.419784,0.005877,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.419784,0.005877,-0.003500,0.249976,0,0);}
.m9c_c01003{transform:matrix(0.432673,0.006057,-0.003500,0.249976,0,0);-ms-transform:matrix(0.432673,0.006057,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.432673,0.006057,-0.003500,0.249976,0,0);}
.m20_c01003{transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);}
.m12_c01003{transform:matrix(0.445450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445450,0.000000,0.000000,0.250000,0,0);}
.m18_c01003{transform:matrix(0.471295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471295,0.000000,0.000000,0.250000,0,0);}
.mad_c01003{transform:matrix(0.481751,0.007226,-0.003750,0.249972,0,0);-ms-transform:matrix(0.481751,0.007226,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.481751,0.007226,-0.003750,0.249972,0,0);}
.ma6_c01003{transform:matrix(0.496144,0.007442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.496144,0.007442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.496144,0.007442,-0.003750,0.249972,0,0);}
.mf_c01003{transform:matrix(0.497780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497780,0.000000,0.000000,0.250000,0,0);}
.m8e_c01003{transform:matrix(0.537462,0.007524,-0.003500,0.249976,0,0);-ms-transform:matrix(0.537462,0.007524,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.537462,0.007524,-0.003500,0.249976,0,0);}
.m0_c01003{transform:matrix(0.560335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560335,0.000000,0.000000,0.250000,0,0);}
.md_c01003{transform:matrix(0.575905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575905,0.000000,0.000000,0.250000,0,0);}
.mbb_c01003{transform:matrix(0.579595,0.008694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.579595,0.008694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.579595,0.008694,-0.003750,0.249972,0,0);}
.m84_c01003{transform:matrix(0.586782,0.008215,-0.003500,0.249976,0,0);-ms-transform:matrix(0.586782,0.008215,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.586782,0.008215,-0.003500,0.249976,0,0);}
.mba_c01003{transform:matrix(0.718779,0.010782,-0.003750,0.249972,0,0);-ms-transform:matrix(0.718779,0.010782,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.718779,0.010782,-0.003750,0.249972,0,0);}
.m85_c01003{transform:matrix(0.753281,0.010546,-0.003500,0.249976,0,0);-ms-transform:matrix(0.753281,0.010546,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.753281,0.010546,-0.003500,0.249976,0,0);}
.m1c_c01003{transform:matrix(0.859185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.859185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.859185,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls0_c01003{letter-spacing:0.000000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:0.000000px;}
.fc0_c01003{color:transparent;}
.fs14_c01003{font-size:32.553662px;}
.fs13_c01003{font-size:45.155079px;}
.fs11_c01003{font-size:51.455042px;}
.fs15_c01003{font-size:52.505906px;}
.fs16_c01003{font-size:54.606142px;}
.fs12_c01003{font-size:57.755659px;}
.fs6_c01003{font-size:68.250000px;}
.fsb_c01003{font-size:68.255767px;}
.fs9_c01003{font-size:69.305856px;}
.fs7_c01003{font-size:70.355944px;}
.fse_c01003{font-size:70.357914px;}
.fsf_c01003{font-size:70.362697px;}
.fs10_c01003{font-size:70.371981px;}
.fs5_c01003{font-size:71.400000px;}
.fs8_c01003{font-size:71.406033px;}
.fsd_c01003{font-size:71.408032px;}
.fsc_c01003{font-size:72.456122px;}
.fs4_c01003{font-size:73.500000px;}
.fs3_c01003{font-size:74.550000px;}
.fs0_c01003{font-size:77.700000px;}
.fsa_c01003{font-size:89.257541px;}
.fs1_c01003{font-size:147.003601px;}
.fs2_c01003{font-size:148.053627px;}
.y0_c01003{bottom:0.000000px;}
.yb9_c01003{bottom:172.956645px;}
.yb8_c01003{bottom:175.517595px;}
.yb7_c01003{bottom:176.197320px;}
.yb6_c01003{bottom:177.261615px;}
.yb5_c01003{bottom:177.884640px;}
.yb4_c01003{bottom:178.285838px;}
.yb3_c01003{bottom:178.837245px;}
.yb2_c01003{bottom:179.599163px;}
.yb1_c01003{bottom:179.817412px;}
.yb0_c01003{bottom:197.985638px;}
.yaf_c01003{bottom:198.333600px;}
.yae_c01003{bottom:198.726480px;}
.yad_c01003{bottom:199.155233px;}
.yac_c01003{bottom:199.341428px;}
.yab_c01003{bottom:199.531650px;}
.yaa_c01003{bottom:200.005013px;}
.ya9_c01003{bottom:200.244233px;}
.ya8_c01003{bottom:200.475555px;}
.ya7_c01003{bottom:201.025673px;}
.ya6_c01003{bottom:201.805470px;}
.ya5_c01003{bottom:202.112175px;}
.ya4_c01003{bottom:202.269615px;}
.ya3_c01003{bottom:202.757205px;}
.ya2_c01003{bottom:202.999493px;}
.ya1_c01003{bottom:203.515455px;}
.ya0_c01003{bottom:203.834842px;}
.y9f_c01003{bottom:204.119213px;}
.y9e_c01003{bottom:207.380182px;}
.y9d_c01003{bottom:214.953030px;}
.y9c_c01003{bottom:215.191455px;}
.y9b_c01003{bottom:218.496652px;}
.y9a_c01003{bottom:218.609197px;}
.y99_c01003{bottom:219.304335px;}
.y98_c01003{bottom:219.782123px;}
.y97_c01003{bottom:219.958005px;}
.y96_c01003{bottom:220.325475px;}
.y95_c01003{bottom:221.241045px;}
.y94_c01003{bottom:221.540723px;}
.y93_c01003{bottom:222.675578px;}
.y92_c01003{bottom:223.153028px;}
.y91_c01003{bottom:224.046998px;}
.y90_c01003{bottom:224.913000px;}
.y8f_c01003{bottom:231.015909px;}
.y8e_c01003{bottom:231.574881px;}
.y8d_c01003{bottom:231.992217px;}
.y8c_c01003{bottom:232.409721px;}
.y8b_c01003{bottom:232.766277px;}
.y8a_c01003{bottom:233.277792px;}
.y89_c01003{bottom:244.120002px;}
.y88_c01003{bottom:245.601249px;}
.y87_c01003{bottom:246.730041px;}
.y86_c01003{bottom:247.562334px;}
.y85_c01003{bottom:248.632578px;}
.y84_c01003{bottom:249.156939px;}
.y83_c01003{bottom:249.377358px;}
.y82_c01003{bottom:250.125540px;}
.y81_c01003{bottom:250.330968px;}
.y80_c01003{bottom:250.831299px;}
.y7f_c01003{bottom:263.142252px;}
.y7e_c01003{bottom:263.256723px;}
.y7d_c01003{bottom:264.128832px;}
.y7c_c01003{bottom:264.638544px;}
.y7b_c01003{bottom:264.868725px;}
.y7a_c01003{bottom:265.312056px;}
.y79_c01003{bottom:265.338222px;}
.y78_c01003{bottom:266.164572px;}
.y77_c01003{bottom:266.440596px;}
.y76_c01003{bottom:266.727750px;}
.y75_c01003{bottom:267.115452px;}
.y74_c01003{bottom:267.232506px;}
.y73_c01003{bottom:267.234123px;}
.y72_c01003{bottom:267.639276px;}
.y71_c01003{bottom:268.371231px;}
.y70_c01003{bottom:268.654500px;}
.y6f_c01003{bottom:314.247788px;}
.y6e_c01003{bottom:315.501563px;}
.y6d_c01003{bottom:316.453538px;}
.y6c_c01003{bottom:317.000288px;}
.y6b_c01003{bottom:319.181363px;}
.y6a_c01003{bottom:321.019163px;}
.y69_c01003{bottom:321.573000px;}
.y68_c01003{bottom:337.968210px;}
.y67_c01003{bottom:339.514450px;}
.y66_c01003{bottom:340.362778px;}
.y65_c01003{bottom:341.456044px;}
.y64_c01003{bottom:342.862204px;}
.y63_c01003{bottom:343.443499px;}
.y62_c01003{bottom:360.019878px;}
.y61_c01003{bottom:361.281715px;}
.y60_c01003{bottom:362.039445px;}
.y5f_c01003{bottom:362.713099px;}
.y5e_c01003{bottom:363.955785px;}
.y5d_c01003{bottom:365.027271px;}
.y5c_c01003{bottom:365.323500px;}
.y5b_c01003{bottom:382.514595px;}
.y5a_c01003{bottom:383.564910px;}
.y59_c01003{bottom:383.973248px;}
.y58_c01003{bottom:384.633322px;}
.y57_c01003{bottom:385.383457px;}
.y56_c01003{bottom:385.716825px;}
.y55_c01003{bottom:386.474857px;}
.y54_c01003{bottom:387.861975px;}
.y53_c01003{bottom:388.257000px;}
.y52_c01003{bottom:405.713565px;}
.y51_c01003{bottom:406.128795px;}
.y50_c01003{bottom:407.623515px;}
.y4f_c01003{bottom:408.150585px;}
.y4e_c01003{bottom:408.911902px;}
.y4d_c01003{bottom:409.647488px;}
.y4c_c01003{bottom:410.649818px;}
.y4b_c01003{bottom:411.481597px;}
.y4a_c01003{bottom:428.595510px;}
.y49_c01003{bottom:429.206880px;}
.y48_c01003{bottom:430.042305px;}
.y47_c01003{bottom:430.759020px;}
.y46_c01003{bottom:431.188388px;}
.y45_c01003{bottom:432.090952px;}
.y44_c01003{bottom:433.152592px;}
.y43_c01003{bottom:433.623000px;}
.y42_c01003{bottom:452.065669px;}
.y41_c01003{bottom:452.372460px;}
.y40_c01003{bottom:452.964925px;}
.y3f_c01003{bottom:453.419866px;}
.y3e_c01003{bottom:453.669546px;}
.y3d_c01003{bottom:454.194253px;}
.y3c_c01003{bottom:454.992877px;}
.y3b_c01003{bottom:455.408256px;}
.y3a_c01003{bottom:456.021994px;}
.y39_c01003{bottom:474.257763px;}
.y38_c01003{bottom:474.923017px;}
.y37_c01003{bottom:475.203531px;}
.y36_c01003{bottom:476.387485px;}
.y35_c01003{bottom:477.282289px;}
.y34_c01003{bottom:478.172025px;}
.y33_c01003{bottom:478.794348px;}
.y32_c01003{bottom:479.242998px;}
.y31_c01003{bottom:496.980547px;}
.y30_c01003{bottom:497.260618px;}
.y2f_c01003{bottom:498.187021px;}
.y2e_c01003{bottom:499.515517px;}
.y2d_c01003{bottom:500.559886px;}
.y2c_c01003{bottom:501.082909px;}
.y2b_c01003{bottom:501.715594px;}
.y2a_c01003{bottom:502.193856px;}
.y29_c01003{bottom:522.651867px;}
.y28_c01003{bottom:524.607880px;}
.y27_c01003{bottom:543.313737px;}
.y26_c01003{bottom:543.655273px;}
.y25_c01003{bottom:544.289899px;}
.y24_c01003{bottom:544.687839px;}
.y23_c01003{bottom:544.942909px;}
.y22_c01003{bottom:545.556927px;}
.y21_c01003{bottom:545.932875px;}
.y20_c01003{bottom:546.454402px;}
.y1f_c01003{bottom:546.887085px;}
.y1e_c01003{bottom:547.167871px;}
.y1d_c01003{bottom:547.829440px;}
.y1c_c01003{bottom:566.650554px;}
.y1b_c01003{bottom:566.955397px;}
.y1a_c01003{bottom:567.474643px;}
.y19_c01003{bottom:567.761976px;}
.y18_c01003{bottom:568.278687px;}
.y17_c01003{bottom:568.608510px;}
.y16_c01003{bottom:569.050088px;}
.y15_c01003{bottom:569.700257px;}
.y14_c01003{bottom:589.337985px;}
.y13_c01003{bottom:589.755051px;}
.y12_c01003{bottom:590.355612px;}
.y11_c01003{bottom:590.948841px;}
.y10_c01003{bottom:591.257779px;}
.yf_c01003{bottom:591.770142px;}
.ye_c01003{bottom:592.543044px;}
.yd_c01003{bottom:592.921500px;}
.yc_c01003{bottom:613.554000px;}
.yb_c01003{bottom:636.505500px;}
.ya_c01003{bottom:660.058500px;}
.y9_c01003{bottom:681.504000px;}
.y8_c01003{bottom:704.935500px;}
.y7_c01003{bottom:745.477477px;}
.y6_c01003{bottom:745.477926px;}
.y5_c01003{bottom:770.835200px;}
.y4_c01003{bottom:771.606802px;}
.y3_c01003{bottom:772.282929px;}
.y2_c01003{bottom:773.281500px;}
.y1_c01003{bottom:818.920500px;}
.h16_c01003{height:32.553662px;}
.h15_c01003{height:45.155079px;}
.h13_c01003{height:51.455042px;}
.h17_c01003{height:52.505906px;}
.h18_c01003{height:54.606142px;}
.h14_c01003{height:57.755659px;}
.h8_c01003{height:68.250000px;}
.hd_c01003{height:68.255767px;}
.hb_c01003{height:69.305856px;}
.h9_c01003{height:70.355944px;}
.h10_c01003{height:70.357914px;}
.h11_c01003{height:70.362697px;}
.h12_c01003{height:70.371981px;}
.h7_c01003{height:71.400000px;}
.ha_c01003{height:71.406033px;}
.hf_c01003{height:71.408032px;}
.he_c01003{height:72.456122px;}
.h6_c01003{height:73.500000px;}
.h5_c01003{height:74.550000px;}
.h2_c01003{height:77.700000px;}
.hc_c01003{height:89.257541px;}
.h3_c01003{height:147.003601px;}
.h4_c01003{height:148.053627px;}
.h0_c01003{height:1008.450000px;}
.h1_c01003{height:1008.750000px;}
.w1_c01003{width:700.500000px;}
.w0_c01003{width:700.650000px;}
.x0_c01003{left:0.000000px;}
.x6c_c01003{left:126.482853px;}
.x7_c01003{left:131.820000px;}
.x60_c01003{left:133.555500px;}
.x62_c01003{left:140.113500px;}
.x7c_c01003{left:141.657997px;}
.x73_c01003{left:146.710500px;}
.x61_c01003{left:155.709000px;}
.x3e_c01003{left:161.250783px;}
.x54_c01003{left:162.834960px;}
.x35_c01003{left:163.888373px;}
.x1f_c01003{left:165.075000px;}
.x1a_c01003{left:166.320000px;}
.x6d_c01003{left:167.999610px;}
.x10_c01003{left:170.370000px;}
.x5b_c01003{left:175.341000px;}
.x49_c01003{left:181.519500px;}
.x71_c01003{left:184.313334px;}
.x55_c01003{left:186.069262px;}
.x3f_c01003{left:189.299691px;}
.x5c_c01003{left:190.932000px;}
.x37_c01003{left:192.617678px;}
.x20_c01003{left:194.187000px;}
.x1_c01003{left:195.750000px;}
.x74_c01003{left:204.444000px;}
.x2c_c01003{left:206.881867px;}
.x45_c01003{left:208.582982px;}
.x11_c01003{left:211.140000px;}
.x4a_c01003{left:212.880000px;}
.x26_c01003{left:214.535581px;}
.x18_c01003{left:217.890000px;}
.xb_c01003{left:222.211814px;}
.x2d_c01003{left:224.441685px;}
.x7e_c01003{left:225.700140px;}
.x40_c01003{left:228.169170px;}
.x38_c01003{left:229.860747px;}
.xd_c01003{left:233.550000px;}
.x1b_c01003{left:236.790000px;}
.x46_c01003{left:238.227092px;}
.x72_c01003{left:239.872536px;}
.x63_c01003{left:241.569000px;}
.x7f_c01003{left:244.353202px;}
.x5d_c01003{left:247.326000px;}
.x27_c01003{left:248.503082px;}
.x64_c01003{left:250.045500px;}
.x2e_c01003{left:251.493132px;}
.x21_c01003{left:253.641000px;}
.x12_c01003{left:254.880000px;}
.x88_c01003{left:256.153852px;}
.x39_c01003{left:260.630148px;}
.x13_c01003{left:261.900000px;}
.x75_c01003{left:264.042000px;}
.x56_c01003{left:267.641310px;}
.x2_c01003{left:268.920000px;}
.x8_c01003{left:274.473000px;}
.x65_c01003{left:277.738500px;}
.x36_c01003{left:278.921886px;}
.x1c_c01003{left:280.260000px;}
.x80_c01003{left:281.860327px;}
.x2f_c01003{left:284.109365px;}
.xe_c01003{left:291.330000px;}
.x22_c01003{left:293.053500px;}
.x19_c01003{left:295.110000px;}
.x4f_c01003{left:298.581750px;}
.x3_c01003{left:301.050000px;}
.x30_c01003{left:307.604448px;}
.x14_c01003{left:308.610000px;}
.x57_c01003{left:312.275482px;}
.x28_c01003{left:313.621081px;}
.x23_c01003{left:316.818000px;}
.x66_c01003{left:317.965500px;}
.x3a_c01003{left:322.039950px;}
.x47_c01003{left:332.751363px;}
.x29_c01003{left:335.723582px;}
.x50_c01003{left:338.633843px;}
.x41_c01003{left:339.706322px;}
.x4_c01003{left:342.900000px;}
.x31_c01003{left:345.950446px;}
.x5e_c01003{left:348.186000px;}
.x15_c01003{left:350.190000px;}
.x24_c01003{left:362.451000px;}
.x51_c01003{left:366.370177px;}
.x6e_c01003{left:367.669710px;}
.x9_c01003{left:371.062500px;}
.x4b_c01003{left:372.451500px;}
.x2a_c01003{left:375.665581px;}
.x67_c01003{left:376.990500px;}
.xc_c01003{left:379.355010px;}
.x48_c01003{left:383.029200px;}
.xf_c01003{left:384.750000px;}
.x32_c01003{left:386.718848px;}
.x5f_c01003{left:388.066500px;}
.x16_c01003{left:389.070000px;}
.x76_c01003{left:391.507500px;}
.x2b_c01003{left:399.115082px;}
.x3b_c01003{left:400.227894px;}
.x1d_c01003{left:405.270000px;}
.x25_c01003{left:408.648000px;}
.x68_c01003{left:410.526000px;}
.x42_c01003{left:413.699936px;}
.x58_c01003{left:414.810900px;}
.x4c_c01003{left:420.232500px;}
.x5_c01003{left:425.250000px;}
.x33_c01003{left:426.419307px;}
.x43_c01003{left:431.238753px;}
.x6f_c01003{left:434.044917px;}
.x81_c01003{left:437.590485px;}
.x59_c01003{left:438.832680px;}
.x1e_c01003{left:441.450000px;}
.x52_c01003{left:445.013452px;}
.x34_c01003{left:447.728968px;}
.x77_c01003{left:452.545500px;}
.x3c_c01003{left:454.756067px;}
.x82_c01003{left:455.939025px;}
.x17_c01003{left:460.350000px;}
.x69_c01003{left:463.375500px;}
.x53_c01003{left:466.894147px;}
.x3d_c01003{left:471.222209px;}
.x44_c01003{left:472.833635px;}
.x4d_c01003{left:475.927500px;}
.x78_c01003{left:477.043500px;}
.xa_c01003{left:481.291500px;}
.x79_c01003{left:488.769000px;}
.x83_c01003{left:492.397627px;}
.x5a_c01003{left:500.651835px;}
.x84_c01003{left:506.979555px;}
.x6_c01003{left:508.410000px;}
.x4e_c01003{left:516.685500px;}
.x70_c01003{left:521.201763px;}
.x6a_c01003{left:525.669000px;}
.x6b_c01003{left:533.845500px;}
.x85_c01003{left:554.277472px;}
.x7a_c01003{left:566.964000px;}
.x7b_c01003{left:574.467000px;}
.x86_c01003{left:584.470372px;}
.x87_c01003{left:611.268682px;}
.x7d_c01003{left:615.007410px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws0_c01003{word-spacing:0.000000pt;}
.fs14_c01003{font-size:28.936588pt;}
.fs13_c01003{font-size:40.137848pt;}
.fs11_c01003{font-size:45.737815pt;}
.fs15_c01003{font-size:46.671916pt;}
.fs16_c01003{font-size:48.538793pt;}
.fs12_c01003{font-size:51.338364pt;}
.fs6_c01003{font-size:60.666667pt;}
.fsb_c01003{font-size:60.671793pt;}
.fs9_c01003{font-size:61.605205pt;}
.fs7_c01003{font-size:62.538617pt;}
.fse_c01003{font-size:62.540368pt;}
.fsf_c01003{font-size:62.544620pt;}
.fs10_c01003{font-size:62.552872pt;}
.fs5_c01003{font-size:63.466667pt;}
.fs8_c01003{font-size:63.472029pt;}
.fsd_c01003{font-size:63.473806pt;}
.fsc_c01003{font-size:64.405442pt;}
.fs4_c01003{font-size:65.333333pt;}
.fs3_c01003{font-size:66.266667pt;}
.fs0_c01003{font-size:69.066667pt;}
.fsa_c01003{font-size:79.340037pt;}
.fs1_c01003{font-size:130.669868pt;}
.fs2_c01003{font-size:131.603224pt;}
.y0_c01003{bottom:0.000000pt;}
.yb9_c01003{bottom:153.739240pt;}
.yb8_c01003{bottom:156.015640pt;}
.yb7_c01003{bottom:156.619840pt;}
.yb6_c01003{bottom:157.565880pt;}
.yb5_c01003{bottom:158.119680pt;}
.yb4_c01003{bottom:158.476300pt;}
.yb3_c01003{bottom:158.966440pt;}
.yb2_c01003{bottom:159.643700pt;}
.yb1_c01003{bottom:159.837700pt;}
.yb0_c01003{bottom:175.987233pt;}
.yaf_c01003{bottom:176.296533pt;}
.yae_c01003{bottom:176.645760pt;}
.yad_c01003{bottom:177.026873pt;}
.yac_c01003{bottom:177.192380pt;}
.yab_c01003{bottom:177.361467pt;}
.yaa_c01003{bottom:177.782233pt;}
.ya9_c01003{bottom:177.994873pt;}
.ya8_c01003{bottom:178.200493pt;}
.ya7_c01003{bottom:178.689487pt;}
.ya6_c01003{bottom:179.382640pt;}
.ya5_c01003{bottom:179.655267pt;}
.ya4_c01003{bottom:179.795213pt;}
.ya3_c01003{bottom:180.228627pt;}
.ya2_c01003{bottom:180.443993pt;}
.ya1_c01003{bottom:180.902627pt;}
.ya0_c01003{bottom:181.186527pt;}
.y9f_c01003{bottom:181.439300pt;}
.y9e_c01003{bottom:184.337940pt;}
.y9d_c01003{bottom:191.069360pt;}
.y9c_c01003{bottom:191.281293pt;}
.y9b_c01003{bottom:194.219247pt;}
.y9a_c01003{bottom:194.319287pt;}
.y99_c01003{bottom:194.937187pt;}
.y98_c01003{bottom:195.361887pt;}
.y97_c01003{bottom:195.518227pt;}
.y96_c01003{bottom:195.844867pt;}
.y95_c01003{bottom:196.658707pt;}
.y94_c01003{bottom:196.925087pt;}
.y93_c01003{bottom:197.933847pt;}
.y92_c01003{bottom:198.358247pt;}
.y91_c01003{bottom:199.152887pt;}
.y90_c01003{bottom:199.922667pt;}
.y8f_c01003{bottom:205.347475pt;}
.y8e_c01003{bottom:205.844339pt;}
.y8d_c01003{bottom:206.215304pt;}
.y8c_c01003{bottom:206.586419pt;}
.y8b_c01003{bottom:206.903357pt;}
.y8a_c01003{bottom:207.358037pt;}
.y89_c01003{bottom:216.995557pt;}
.y88_c01003{bottom:218.312221pt;}
.y87_c01003{bottom:219.315592pt;}
.y86_c01003{bottom:220.055408pt;}
.y85_c01003{bottom:221.006736pt;}
.y84_c01003{bottom:221.472835pt;}
.y83_c01003{bottom:221.668763pt;}
.y82_c01003{bottom:222.333813pt;}
.y81_c01003{bottom:222.516416pt;}
.y80_c01003{bottom:222.961155pt;}
.y7f_c01003{bottom:233.904224pt;}
.y7e_c01003{bottom:234.005976pt;}
.y7d_c01003{bottom:234.781184pt;}
.y7c_c01003{bottom:235.234261pt;}
.y7b_c01003{bottom:235.438867pt;}
.y7a_c01003{bottom:235.832939pt;}
.y79_c01003{bottom:235.856197pt;}
.y78_c01003{bottom:236.590731pt;}
.y77_c01003{bottom:236.836085pt;}
.y76_c01003{bottom:237.091333pt;}
.y75_c01003{bottom:237.435957pt;}
.y74_c01003{bottom:237.540005pt;}
.y73_c01003{bottom:237.541443pt;}
.y72_c01003{bottom:237.901579pt;}
.y71_c01003{bottom:238.552205pt;}
.y70_c01003{bottom:238.804000pt;}
.y6f_c01003{bottom:279.331367pt;}
.y6e_c01003{bottom:280.445833pt;}
.y6d_c01003{bottom:281.292033pt;}
.y6c_c01003{bottom:281.778033pt;}
.y6b_c01003{bottom:283.716767pt;}
.y6a_c01003{bottom:285.350367pt;}
.y69_c01003{bottom:285.842667pt;}
.y68_c01003{bottom:300.416187pt;}
.y67_c01003{bottom:301.790623pt;}
.y66_c01003{bottom:302.544692pt;}
.y65_c01003{bottom:303.516484pt;}
.y64_c01003{bottom:304.766404pt;}
.y63_c01003{bottom:305.283111pt;}
.y62_c01003{bottom:320.017669pt;}
.y61_c01003{bottom:321.139303pt;}
.y60_c01003{bottom:321.812840pt;}
.y5f_c01003{bottom:322.411644pt;}
.y5e_c01003{bottom:323.516253pt;}
.y5d_c01003{bottom:324.468685pt;}
.y5c_c01003{bottom:324.732000pt;}
.y5b_c01003{bottom:340.012973pt;}
.y5a_c01003{bottom:340.946587pt;}
.y59_c01003{bottom:341.309553pt;}
.y58_c01003{bottom:341.896287pt;}
.y57_c01003{bottom:342.563073pt;}
.y56_c01003{bottom:342.859400pt;}
.y55_c01003{bottom:343.533207pt;}
.y54_c01003{bottom:344.766200pt;}
.y53_c01003{bottom:345.117333pt;}
.y52_c01003{bottom:360.634280pt;}
.y51_c01003{bottom:361.003373pt;}
.y50_c01003{bottom:362.332013pt;}
.y4f_c01003{bottom:362.800520pt;}
.y4e_c01003{bottom:363.477247pt;}
.y4d_c01003{bottom:364.131100pt;}
.y4c_c01003{bottom:365.022060pt;}
.y4b_c01003{bottom:365.761420pt;}
.y4a_c01003{bottom:380.973787pt;}
.y49_c01003{bottom:381.517227pt;}
.y48_c01003{bottom:382.259827pt;}
.y47_c01003{bottom:382.896907pt;}
.y46_c01003{bottom:383.278567pt;}
.y45_c01003{bottom:384.080847pt;}
.y44_c01003{bottom:385.024527pt;}
.y43_c01003{bottom:385.442667pt;}
.y42_c01003{bottom:401.836151pt;}
.y41_c01003{bottom:402.108853pt;}
.y40_c01003{bottom:402.635489pt;}
.y3f_c01003{bottom:403.039881pt;}
.y3e_c01003{bottom:403.261819pt;}
.y3d_c01003{bottom:403.728225pt;}
.y3c_c01003{bottom:404.438113pt;}
.y3b_c01003{bottom:404.807339pt;}
.y3a_c01003{bottom:405.352884pt;}
.y39_c01003{bottom:421.562456pt;}
.y38_c01003{bottom:422.153793pt;}
.y37_c01003{bottom:422.403139pt;}
.y36_c01003{bottom:423.455543pt;}
.y35_c01003{bottom:424.250924pt;}
.y34_c01003{bottom:425.041800pt;}
.y33_c01003{bottom:425.594976pt;}
.y32_c01003{bottom:425.993776pt;}
.y31_c01003{bottom:441.760487pt;}
.y30_c01003{bottom:442.009439pt;}
.y2f_c01003{bottom:442.832908pt;}
.y2e_c01003{bottom:444.013793pt;}
.y2d_c01003{bottom:444.942121pt;}
.y2c_c01003{bottom:445.407031pt;}
.y2b_c01003{bottom:445.969417pt;}
.y2a_c01003{bottom:446.394539pt;}
.y29_c01003{bottom:464.579437pt;}
.y28_c01003{bottom:466.318116pt;}
.y27_c01003{bottom:482.945544pt;}
.y26_c01003{bottom:483.249132pt;}
.y25_c01003{bottom:483.813244pt;}
.y24_c01003{bottom:484.166968pt;}
.y23_c01003{bottom:484.393697pt;}
.y22_c01003{bottom:484.939491pt;}
.y21_c01003{bottom:485.273667pt;}
.y20_c01003{bottom:485.737247pt;}
.y1f_c01003{bottom:486.121853pt;}
.y1e_c01003{bottom:486.371441pt;}
.y1d_c01003{bottom:486.959503pt;}
.y1c_c01003{bottom:503.689381pt;}
.y1b_c01003{bottom:503.960353pt;}
.y1a_c01003{bottom:504.421905pt;}
.y19_c01003{bottom:504.677312pt;}
.y18_c01003{bottom:505.136611pt;}
.y17_c01003{bottom:505.429787pt;}
.y16_c01003{bottom:505.822300pt;}
.y15_c01003{bottom:506.400228pt;}
.y14_c01003{bottom:523.855987pt;}
.y13_c01003{bottom:524.226712pt;}
.y12_c01003{bottom:524.760544pt;}
.y11_c01003{bottom:525.287859pt;}
.y10_c01003{bottom:525.562471pt;}
.yf_c01003{bottom:526.017904pt;}
.ye_c01003{bottom:526.704928pt;}
.yd_c01003{bottom:527.041333pt;}
.yc_c01003{bottom:545.381333pt;}
.yb_c01003{bottom:565.782667pt;}
.ya_c01003{bottom:586.718667pt;}
.y9_c01003{bottom:605.781333pt;}
.y8_c01003{bottom:626.609333pt;}
.y7_c01003{bottom:662.646647pt;}
.y6_c01003{bottom:662.647045pt;}
.y5_c01003{bottom:685.186844pt;}
.y4_c01003{bottom:685.872713pt;}
.y3_c01003{bottom:686.473715pt;}
.y2_c01003{bottom:687.361333pt;}
.y1_c01003{bottom:727.929333pt;}
.h16_c01003{height:28.936588pt;}
.h15_c01003{height:40.137848pt;}
.h13_c01003{height:45.737815pt;}
.h17_c01003{height:46.671916pt;}
.h18_c01003{height:48.538793pt;}
.h14_c01003{height:51.338364pt;}
.h8_c01003{height:60.666667pt;}
.hd_c01003{height:60.671793pt;}
.hb_c01003{height:61.605205pt;}
.h9_c01003{height:62.538617pt;}
.h10_c01003{height:62.540368pt;}
.h11_c01003{height:62.544620pt;}
.h12_c01003{height:62.552872pt;}
.h7_c01003{height:63.466667pt;}
.ha_c01003{height:63.472029pt;}
.hf_c01003{height:63.473806pt;}
.he_c01003{height:64.405442pt;}
.h6_c01003{height:65.333333pt;}
.h5_c01003{height:66.266667pt;}
.h2_c01003{height:69.066667pt;}
.hc_c01003{height:79.340037pt;}
.h3_c01003{height:130.669868pt;}
.h4_c01003{height:131.603224pt;}
.h0_c01003{height:896.400000pt;}
.h1_c01003{height:896.666667pt;}
.w1_c01003{width:622.666667pt;}
.w0_c01003{width:622.800000pt;}
.x0_c01003{left:0.000000pt;}
.x6c_c01003{left:112.429203pt;}
.x7_c01003{left:117.173333pt;}
.x60_c01003{left:118.716000pt;}
.x62_c01003{left:124.545333pt;}
.x7c_c01003{left:125.918220pt;}
.x73_c01003{left:130.409333pt;}
.x61_c01003{left:138.408000pt;}
.x3e_c01003{left:143.334029pt;}
.x54_c01003{left:144.742187pt;}
.x35_c01003{left:145.678553pt;}
.x1f_c01003{left:146.733333pt;}
.x1a_c01003{left:147.840000pt;}
.x6d_c01003{left:149.332987pt;}
.x10_c01003{left:151.440000pt;}
.x5b_c01003{left:155.858667pt;}
.x49_c01003{left:161.350667pt;}
.x71_c01003{left:163.834075pt;}
.x55_c01003{left:165.394900pt;}
.x3f_c01003{left:168.266392pt;}
.x5c_c01003{left:169.717333pt;}
.x37_c01003{left:171.215713pt;}
.x20_c01003{left:172.610667pt;}
.x1_c01003{left:174.000000pt;}
.x74_c01003{left:181.728000pt;}
.x2c_c01003{left:183.894993pt;}
.x45_c01003{left:185.407095pt;}
.x11_c01003{left:187.680000pt;}
.x4a_c01003{left:189.226667pt;}
.x26_c01003{left:190.698295pt;}
.x18_c01003{left:193.680000pt;}
.xb_c01003{left:197.521612pt;}
.x2d_c01003{left:199.503720pt;}
.x7e_c01003{left:200.622347pt;}
.x40_c01003{left:202.817040pt;}
.x38_c01003{left:204.320664pt;}
.xd_c01003{left:207.600000pt;}
.x1b_c01003{left:210.480000pt;}
.x46_c01003{left:211.757415pt;}
.x72_c01003{left:213.220032pt;}
.x63_c01003{left:214.728000pt;}
.x7f_c01003{left:217.202847pt;}
.x5d_c01003{left:219.845333pt;}
.x27_c01003{left:220.891628pt;}
.x64_c01003{left:222.262667pt;}
.x2e_c01003{left:223.549451pt;}
.x21_c01003{left:225.458667pt;}
.x12_c01003{left:226.560000pt;}
.x88_c01003{left:227.692313pt;}
.x39_c01003{left:231.671243pt;}
.x13_c01003{left:232.800000pt;}
.x75_c01003{left:234.704000pt;}
.x56_c01003{left:237.903387pt;}
.x2_c01003{left:239.040000pt;}
.x8_c01003{left:243.976000pt;}
.x65_c01003{left:246.878667pt;}
.x36_c01003{left:247.930565pt;}
.x1c_c01003{left:249.120000pt;}
.x80_c01003{left:250.542513pt;}
.x2f_c01003{left:252.541657pt;}
.xe_c01003{left:258.960000pt;}
.x22_c01003{left:260.492000pt;}
.x19_c01003{left:262.320000pt;}
.x4f_c01003{left:265.406000pt;}
.x3_c01003{left:267.600000pt;}
.x30_c01003{left:273.426176pt;}
.x14_c01003{left:274.320000pt;}
.x57_c01003{left:277.578207pt;}
.x28_c01003{left:278.774295pt;}
.x23_c01003{left:281.616000pt;}
.x66_c01003{left:282.636000pt;}
.x3a_c01003{left:286.257733pt;}
.x47_c01003{left:295.778989pt;}
.x29_c01003{left:298.420961pt;}
.x50_c01003{left:301.007860pt;}
.x41_c01003{left:301.961175pt;}
.x4_c01003{left:304.800000pt;}
.x31_c01003{left:307.511508pt;}
.x5e_c01003{left:309.498667pt;}
.x15_c01003{left:311.280000pt;}
.x24_c01003{left:322.178667pt;}
.x51_c01003{left:325.662380pt;}
.x6e_c01003{left:326.817520pt;}
.x9_c01003{left:329.833333pt;}
.x4b_c01003{left:331.068000pt;}
.x2a_c01003{left:333.924961pt;}
.x67_c01003{left:335.102667pt;}
.xc_c01003{left:337.204453pt;}
.x48_c01003{left:340.470400pt;}
.xf_c01003{left:342.000000pt;}
.x32_c01003{left:343.750087pt;}
.x5f_c01003{left:344.948000pt;}
.x16_c01003{left:345.840000pt;}
.x76_c01003{left:348.006667pt;}
.x2b_c01003{left:354.768961pt;}
.x3b_c01003{left:355.758128pt;}
.x1d_c01003{left:360.240000pt;}
.x25_c01003{left:363.242667pt;}
.x68_c01003{left:364.912000pt;}
.x42_c01003{left:367.733276pt;}
.x58_c01003{left:368.720800pt;}
.x4c_c01003{left:373.540000pt;}
.x5_c01003{left:378.000000pt;}
.x33_c01003{left:379.039384pt;}
.x43_c01003{left:383.323336pt;}
.x6f_c01003{left:385.817704pt;}
.x81_c01003{left:388.969320pt;}
.x59_c01003{left:390.073493pt;}
.x1e_c01003{left:392.400000pt;}
.x52_c01003{left:395.567513pt;}
.x34_c01003{left:397.981305pt;}
.x77_c01003{left:402.262667pt;}
.x3c_c01003{left:404.227615pt;}
.x82_c01003{left:405.279133pt;}
.x17_c01003{left:409.200000pt;}
.x69_c01003{left:411.889333pt;}
.x53_c01003{left:415.017020pt;}
.x3d_c01003{left:418.864185pt;}
.x44_c01003{left:420.296564pt;}
.x4d_c01003{left:423.046667pt;}
.x78_c01003{left:424.038667pt;}
.xa_c01003{left:427.814667pt;}
.x79_c01003{left:434.461333pt;}
.x83_c01003{left:437.686780pt;}
.x5a_c01003{left:445.023853pt;}
.x84_c01003{left:450.648493pt;}
.x6_c01003{left:451.920000pt;}
.x4e_c01003{left:459.276000pt;}
.x70_c01003{left:463.290456pt;}
.x6a_c01003{left:467.261333pt;}
.x6b_c01003{left:474.529333pt;}
.x85_c01003{left:492.691087pt;}
.x7a_c01003{left:503.968000pt;}
.x7b_c01003{left:510.637333pt;}
.x86_c01003{left:519.529220pt;}
.x87_c01003{left:543.349940pt;}
.x7d_c01003{left:546.673253pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.000000;font-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_c01004{transform:matrix(0.011958,-0.000191,0.003999,0.249968,0,0);-ms-transform:matrix(0.011958,-0.000191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.011958,-0.000191,0.003999,0.249968,0,0);}
.mee_c01004{transform:matrix(0.015943,-0.000271,0.004249,0.249964,0,0);-ms-transform:matrix(0.015943,-0.000271,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015943,-0.000271,0.004249,0.249964,0,0);}
.mf1_c01004{transform:matrix(0.033820,-0.000575,0.004249,0.249964,0,0);-ms-transform:matrix(0.033820,-0.000575,0.004249,0.249964,0,0);-webkit-transform:matrix(0.033820,-0.000575,0.004249,0.249964,0,0);}
.m82_c01004{transform:matrix(0.064395,-0.000837,0.003250,0.249979,0,0);-ms-transform:matrix(0.064395,-0.000837,0.003250,0.249979,0,0);-webkit-transform:matrix(0.064395,-0.000837,0.003250,0.249979,0,0);}
.mcd_c01004{transform:matrix(0.079720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079720,0.000000,0.000000,0.250000,0,0);}
.m5a_c01004{transform:matrix(0.090189,-0.001714,0.004749,0.249955,0,0);-ms-transform:matrix(0.090189,-0.001714,0.004749,0.249955,0,0);-webkit-transform:matrix(0.090189,-0.001714,0.004749,0.249955,0,0);}
.m4a_c01004{transform:matrix(0.097692,-0.001563,0.003999,0.249968,0,0);-ms-transform:matrix(0.097692,-0.001563,0.003999,0.249968,0,0);-webkit-transform:matrix(0.097692,-0.001563,0.003999,0.249968,0,0);}
.m89_c01004{transform:matrix(0.097843,-0.001174,0.003000,0.249982,0,0);-ms-transform:matrix(0.097843,-0.001174,0.003000,0.249982,0,0);-webkit-transform:matrix(0.097843,-0.001174,0.003000,0.249982,0,0);}
.mda_c01004{transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113010,0.000000,0.000000,0.250000,0,0);}
.mdc_c01004{transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);}
.m43_c01004{transform:matrix(0.118005,-0.001888,0.003999,0.249968,0,0);-ms-transform:matrix(0.118005,-0.001888,0.003999,0.249968,0,0);-webkit-transform:matrix(0.118005,-0.001888,0.003999,0.249968,0,0);}
.m53_c01004{transform:matrix(0.125167,-0.002378,0.004749,0.249955,0,0);-ms-transform:matrix(0.125167,-0.002378,0.004749,0.249955,0,0);-webkit-transform:matrix(0.125167,-0.002378,0.004749,0.249955,0,0);}
.m1e_c01004{transform:matrix(0.140917,-0.002255,0.003999,0.249968,0,0);-ms-transform:matrix(0.140917,-0.002255,0.003999,0.249968,0,0);-webkit-transform:matrix(0.140917,-0.002255,0.003999,0.249968,0,0);}
.m85_c01004{transform:matrix(0.142770,-0.001713,0.003000,0.249982,0,0);-ms-transform:matrix(0.142770,-0.001713,0.003000,0.249982,0,0);-webkit-transform:matrix(0.142770,-0.001713,0.003000,0.249982,0,0);}
.m92_c01004{transform:matrix(0.143979,-0.002160,0.003750,0.249972,0,0);-ms-transform:matrix(0.143979,-0.002160,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143979,-0.002160,0.003750,0.249972,0,0);}
.m64_c01004{transform:matrix(0.148328,-0.002818,0.004749,0.249955,0,0);-ms-transform:matrix(0.148328,-0.002818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148328,-0.002818,0.004749,0.249955,0,0);}
.mb1_c01004{transform:matrix(0.150106,-0.002402,0.003999,0.249968,0,0);-ms-transform:matrix(0.150106,-0.002402,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150106,-0.002402,0.003999,0.249968,0,0);}
.m7_c01004{transform:matrix(0.150576,-0.002409,0.003999,0.249968,0,0);-ms-transform:matrix(0.150576,-0.002409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150576,-0.002409,0.003999,0.249968,0,0);}
.m45_c01004{transform:matrix(0.151101,-0.002418,0.003999,0.249968,0,0);-ms-transform:matrix(0.151101,-0.002418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151101,-0.002418,0.003999,0.249968,0,0);}
.md6_c01004{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);}
.m46_c01004{transform:matrix(0.153680,-0.002459,0.003999,0.249968,0,0);-ms-transform:matrix(0.153680,-0.002459,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153680,-0.002459,0.003999,0.249968,0,0);}
.m1a_c01004{transform:matrix(0.154025,-0.002464,0.003999,0.249968,0,0);-ms-transform:matrix(0.154025,-0.002464,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154025,-0.002464,0.003999,0.249968,0,0);}
.m8b_c01004{transform:matrix(0.154988,-0.002325,0.003750,0.249972,0,0);-ms-transform:matrix(0.154988,-0.002325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154988,-0.002325,0.003750,0.249972,0,0);}
.m94_c01004{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);}
.m35_c01004{transform:matrix(0.156010,-0.002496,0.003999,0.249968,0,0);-ms-transform:matrix(0.156010,-0.002496,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156010,-0.002496,0.003999,0.249968,0,0);}
.m9a_c01004{transform:matrix(0.156540,-0.002505,0.003999,0.249968,0,0);-ms-transform:matrix(0.156540,-0.002505,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156540,-0.002505,0.003999,0.249968,0,0);}
.m87_c01004{transform:matrix(0.156554,-0.001879,0.003000,0.249982,0,0);-ms-transform:matrix(0.156554,-0.001879,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156554,-0.001879,0.003000,0.249982,0,0);}
.m7b_c01004{transform:matrix(0.156815,-0.002195,0.003500,0.249976,0,0);-ms-transform:matrix(0.156815,-0.002195,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156815,-0.002195,0.003500,0.249976,0,0);}
.m72_c01004{transform:matrix(0.157665,-0.002523,0.003999,0.249968,0,0);-ms-transform:matrix(0.157665,-0.002523,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157665,-0.002523,0.003999,0.249968,0,0);}
.ma3_c01004{transform:matrix(0.158107,-0.002055,0.003250,0.249979,0,0);-ms-transform:matrix(0.158107,-0.002055,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158107,-0.002055,0.003250,0.249979,0,0);}
.m98_c01004{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);}
.m88_c01004{transform:matrix(0.161743,-0.001941,0.003000,0.249982,0,0);-ms-transform:matrix(0.161743,-0.001941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161743,-0.001941,0.003000,0.249982,0,0);}
.m79_c01004{transform:matrix(0.162089,-0.002269,0.003500,0.249976,0,0);-ms-transform:matrix(0.162089,-0.002269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.162089,-0.002269,0.003500,0.249976,0,0);}
.m23_c01004{transform:matrix(0.164009,-0.002624,0.003999,0.249968,0,0);-ms-transform:matrix(0.164009,-0.002624,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164009,-0.002624,0.003999,0.249968,0,0);}
.m17_c01004{transform:matrix(0.164184,-0.002627,0.003999,0.249968,0,0);-ms-transform:matrix(0.164184,-0.002627,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164184,-0.002627,0.003999,0.249968,0,0);}
.m67_c01004{transform:matrix(0.165475,-0.003144,0.004749,0.249955,0,0);-ms-transform:matrix(0.165475,-0.003144,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165475,-0.003144,0.004749,0.249955,0,0);}
.mae_c01004{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);}
.m3e_c01004{transform:matrix(0.166734,-0.002668,0.003999,0.249968,0,0);-ms-transform:matrix(0.166734,-0.002668,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166734,-0.002668,0.003999,0.249968,0,0);}
.mbe_c01004{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);}
.m77_c01004{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);}
.m95_c01004{transform:matrix(0.168663,-0.002699,0.003999,0.249968,0,0);-ms-transform:matrix(0.168663,-0.002699,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168663,-0.002699,0.003999,0.249968,0,0);}
.md_c01004{transform:matrix(0.169173,-0.002707,0.003999,0.249968,0,0);-ms-transform:matrix(0.169173,-0.002707,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169173,-0.002707,0.003999,0.249968,0,0);}
.m6b_c01004{transform:matrix(0.169379,-0.003218,0.004749,0.249955,0,0);-ms-transform:matrix(0.169379,-0.003218,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169379,-0.003218,0.004749,0.249955,0,0);}
.m65_c01004{transform:matrix(0.171719,-0.003263,0.004749,0.249955,0,0);-ms-transform:matrix(0.171719,-0.003263,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171719,-0.003263,0.004749,0.249955,0,0);}
.mb8_c01004{transform:matrix(0.172107,-0.003098,0.004499,0.249960,0,0);-ms-transform:matrix(0.172107,-0.003098,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172107,-0.003098,0.004499,0.249960,0,0);}
.m49_c01004{transform:matrix(0.172273,-0.002756,0.003999,0.249968,0,0);-ms-transform:matrix(0.172273,-0.002756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172273,-0.002756,0.003999,0.249968,0,0);}
.m6c_c01004{transform:matrix(0.172288,-0.002757,0.003999,0.249968,0,0);-ms-transform:matrix(0.172288,-0.002757,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172288,-0.002757,0.003999,0.249968,0,0);}
.m4c_c01004{transform:matrix(0.173879,-0.003304,0.004749,0.249955,0,0);-ms-transform:matrix(0.173879,-0.003304,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173879,-0.003304,0.004749,0.249955,0,0);}
.m68_c01004{transform:matrix(0.174079,-0.003307,0.004749,0.249955,0,0);-ms-transform:matrix(0.174079,-0.003307,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174079,-0.003307,0.004749,0.249955,0,0);}
.m16_c01004{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);}
.m39_c01004{transform:matrix(0.174698,-0.002795,0.003999,0.249968,0,0);-ms-transform:matrix(0.174698,-0.002795,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174698,-0.002795,0.003999,0.249968,0,0);}
.m61_c01004{transform:matrix(0.175393,-0.003332,0.004749,0.249955,0,0);-ms-transform:matrix(0.175393,-0.003332,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175393,-0.003332,0.004749,0.249955,0,0);}
.m40_c01004{transform:matrix(0.175438,-0.002807,0.003999,0.249968,0,0);-ms-transform:matrix(0.175438,-0.002807,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175438,-0.002807,0.003999,0.249968,0,0);}
.m3d_c01004{transform:matrix(0.175553,-0.002809,0.003999,0.249968,0,0);-ms-transform:matrix(0.175553,-0.002809,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175553,-0.002809,0.003999,0.249968,0,0);}
.m34_c01004{transform:matrix(0.176082,-0.002817,0.003999,0.249968,0,0);-ms-transform:matrix(0.176082,-0.002817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176082,-0.002817,0.003999,0.249968,0,0);}
.m71_c01004{transform:matrix(0.176097,-0.002818,0.003999,0.249968,0,0);-ms-transform:matrix(0.176097,-0.002818,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176097,-0.002818,0.003999,0.249968,0,0);}
.ma2_c01004{transform:matrix(0.176290,-0.002292,0.003250,0.249979,0,0);-ms-transform:matrix(0.176290,-0.002292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176290,-0.002292,0.003250,0.249979,0,0);}
.mcc_c01004{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);}
.m6e_c01004{transform:matrix(0.177427,-0.002839,0.003999,0.249968,0,0);-ms-transform:matrix(0.177427,-0.002839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177427,-0.002839,0.003999,0.249968,0,0);}
.m62_c01004{transform:matrix(0.177703,-0.003376,0.004749,0.249955,0,0);-ms-transform:matrix(0.177703,-0.003376,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177703,-0.003376,0.004749,0.249955,0,0);}
.m73_c01004{transform:matrix(0.177772,-0.002844,0.003999,0.249968,0,0);-ms-transform:matrix(0.177772,-0.002844,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177772,-0.002844,0.003999,0.249968,0,0);}
.mec_c01004{transform:matrix(0.177924,-0.003025,0.004249,0.249964,0,0);-ms-transform:matrix(0.177924,-0.003025,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177924,-0.003025,0.004249,0.249964,0,0);}
.m5e_c01004{transform:matrix(0.178188,-0.003386,0.004749,0.249955,0,0);-ms-transform:matrix(0.178188,-0.003386,0.004749,0.249955,0,0);-webkit-transform:matrix(0.178188,-0.003386,0.004749,0.249955,0,0);}
.m76_c01004{transform:matrix(0.178403,-0.002498,0.003500,0.249976,0,0);-ms-transform:matrix(0.178403,-0.002498,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178403,-0.002498,0.003500,0.249976,0,0);}
.m36_c01004{transform:matrix(0.178802,-0.002861,0.003999,0.249968,0,0);-ms-transform:matrix(0.178802,-0.002861,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178802,-0.002861,0.003999,0.249968,0,0);}
.m3a_c01004{transform:matrix(0.179507,-0.002872,0.003999,0.249968,0,0);-ms-transform:matrix(0.179507,-0.002872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179507,-0.002872,0.003999,0.249968,0,0);}
.mb2_c01004{transform:matrix(0.180012,-0.002880,0.003999,0.249968,0,0);-ms-transform:matrix(0.180012,-0.002880,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180012,-0.002880,0.003999,0.249968,0,0);}
.m44_c01004{transform:matrix(0.180577,-0.002889,0.003999,0.249968,0,0);-ms-transform:matrix(0.180577,-0.002889,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180577,-0.002889,0.003999,0.249968,0,0);}
.me3_c01004{transform:matrix(0.180969,-0.003076,0.004249,0.249964,0,0);-ms-transform:matrix(0.180969,-0.003076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180969,-0.003076,0.004249,0.249964,0,0);}
.m2c_c01004{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);}
.ma4_c01004{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);}
.m8c_c01004{transform:matrix(0.182679,-0.002740,0.003750,0.249972,0,0);-ms-transform:matrix(0.182679,-0.002740,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182679,-0.002740,0.003750,0.249972,0,0);}
.ma9_c01004{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);}
.m8d_c01004{transform:matrix(0.185919,-0.002789,0.003750,0.249972,0,0);-ms-transform:matrix(0.185919,-0.002789,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185919,-0.002789,0.003750,0.249972,0,0);}
.mf_c01004{transform:matrix(0.186526,-0.002984,0.003999,0.249968,0,0);-ms-transform:matrix(0.186526,-0.002984,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186526,-0.002984,0.003999,0.249968,0,0);}
.m51_c01004{transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);-ms-transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);}
.m6d_c01004{transform:matrix(0.186726,-0.002988,0.003999,0.249968,0,0);-ms-transform:matrix(0.186726,-0.002988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186726,-0.002988,0.003999,0.249968,0,0);}
.mc2_c01004{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);}
.mbc_c01004{transform:matrix(0.186900,-0.003364,0.004499,0.249960,0,0);-ms-transform:matrix(0.186900,-0.003364,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186900,-0.003364,0.004499,0.249960,0,0);}
.me0_c01004{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);}
.ma0_c01004{transform:matrix(0.187574,-0.002438,0.003250,0.249979,0,0);-ms-transform:matrix(0.187574,-0.002438,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187574,-0.002438,0.003250,0.249979,0,0);}
.m3b_c01004{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);}
.m59_c01004{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);}
.m30_c01004{transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);-ms-transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);}
.m70_c01004{transform:matrix(0.188426,-0.003015,0.003999,0.249968,0,0);-ms-transform:matrix(0.188426,-0.003015,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188426,-0.003015,0.003999,0.249968,0,0);}
.m1b_c01004{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);}
.m24_c01004{transform:matrix(0.189216,-0.003027,0.003999,0.249968,0,0);-ms-transform:matrix(0.189216,-0.003027,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189216,-0.003027,0.003999,0.249968,0,0);}
.m33_c01004{transform:matrix(0.190626,-0.003050,0.003999,0.249968,0,0);-ms-transform:matrix(0.190626,-0.003050,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190626,-0.003050,0.003999,0.249968,0,0);}
.maa_c01004{transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);-ms-transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191830,-0.003069,0.003999,0.249968,0,0);}
.m96_c01004{transform:matrix(0.192265,-0.003076,0.003999,0.249968,0,0);-ms-transform:matrix(0.192265,-0.003076,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192265,-0.003076,0.003999,0.249968,0,0);}
.m1f_c01004{transform:matrix(0.192470,-0.003080,0.003999,0.249968,0,0);-ms-transform:matrix(0.192470,-0.003080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192470,-0.003080,0.003999,0.249968,0,0);}
.m5b_c01004{transform:matrix(0.192755,-0.003662,0.004749,0.249955,0,0);-ms-transform:matrix(0.192755,-0.003662,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192755,-0.003662,0.004749,0.249955,0,0);}
.m2b_c01004{transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);-ms-transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193585,-0.003097,0.003999,0.249968,0,0);}
.mba_c01004{transform:matrix(0.193679,-0.003486,0.004499,0.249960,0,0);-ms-transform:matrix(0.193679,-0.003486,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193679,-0.003486,0.004499,0.249960,0,0);}
.meb_c01004{transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);}
.m19_c01004{transform:matrix(0.195240,-0.003124,0.003999,0.249968,0,0);-ms-transform:matrix(0.195240,-0.003124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195240,-0.003124,0.003999,0.249968,0,0);}
.m91_c01004{transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195518,-0.002933,0.003750,0.249972,0,0);}
.m97_c01004{transform:matrix(0.195920,-0.003135,0.003999,0.249968,0,0);-ms-transform:matrix(0.195920,-0.003135,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195920,-0.003135,0.003999,0.249968,0,0);}
.m60_c01004{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);}
.ma7_c01004{transform:matrix(0.197015,-0.003152,0.003999,0.249968,0,0);-ms-transform:matrix(0.197015,-0.003152,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197015,-0.003152,0.003999,0.249968,0,0);}
.mc0_c01004{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);}
.m55_c01004{transform:matrix(0.197444,-0.003751,0.004749,0.249955,0,0);-ms-transform:matrix(0.197444,-0.003751,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197444,-0.003751,0.004749,0.249955,0,0);}
.mb6_c01004{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);}
.m66_c01004{transform:matrix(0.199544,-0.003791,0.004749,0.249955,0,0);-ms-transform:matrix(0.199544,-0.003791,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199544,-0.003791,0.004749,0.249955,0,0);}
.m58_c01004{transform:matrix(0.199904,-0.003798,0.004749,0.249955,0,0);-ms-transform:matrix(0.199904,-0.003798,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199904,-0.003798,0.004749,0.249955,0,0);}
.mb7_c01004{transform:matrix(0.200323,-0.003606,0.004499,0.249960,0,0);-ms-transform:matrix(0.200323,-0.003606,0.004499,0.249960,0,0);-webkit-transform:matrix(0.200323,-0.003606,0.004499,0.249960,0,0);}
.m3f_c01004{transform:matrix(0.200574,-0.003209,0.003999,0.249968,0,0);-ms-transform:matrix(0.200574,-0.003209,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200574,-0.003209,0.003999,0.249968,0,0);}
.m18_c01004{transform:matrix(0.201419,-0.003223,0.003999,0.249968,0,0);-ms-transform:matrix(0.201419,-0.003223,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201419,-0.003223,0.003999,0.249968,0,0);}
.mc9_c01004{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);}
.mbb_c01004{transform:matrix(0.202067,-0.003637,0.004499,0.249960,0,0);-ms-transform:matrix(0.202067,-0.003637,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202067,-0.003637,0.004499,0.249960,0,0);}
.m9e_c01004{transform:matrix(0.202163,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202163,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202163,-0.002628,0.003250,0.249979,0,0);}
.m9b_c01004{transform:matrix(0.202664,-0.003243,0.003999,0.249968,0,0);-ms-transform:matrix(0.202664,-0.003243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202664,-0.003243,0.003999,0.249968,0,0);}
.m41_c01004{transform:matrix(0.202779,-0.003244,0.003999,0.249968,0,0);-ms-transform:matrix(0.202779,-0.003244,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202779,-0.003244,0.003999,0.249968,0,0);}
.mb9_c01004{transform:matrix(0.202902,-0.003652,0.004499,0.249960,0,0);-ms-transform:matrix(0.202902,-0.003652,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202902,-0.003652,0.004499,0.249960,0,0);}
.m6f_c01004{transform:matrix(0.203329,-0.003253,0.003999,0.249968,0,0);-ms-transform:matrix(0.203329,-0.003253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203329,-0.003253,0.003999,0.249968,0,0);}
.m22_c01004{transform:matrix(0.203414,-0.003255,0.003999,0.249968,0,0);-ms-transform:matrix(0.203414,-0.003255,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203414,-0.003255,0.003999,0.249968,0,0);}
.mb3_c01004{transform:matrix(0.204239,-0.003268,0.003999,0.249968,0,0);-ms-transform:matrix(0.204239,-0.003268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204239,-0.003268,0.003999,0.249968,0,0);}
.m15_c01004{transform:matrix(0.205474,-0.003288,0.003999,0.249968,0,0);-ms-transform:matrix(0.205474,-0.003288,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205474,-0.003288,0.003999,0.249968,0,0);}
.m10_c01004{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);}
.maf_c01004{transform:matrix(0.205624,-0.003290,0.003999,0.249968,0,0);-ms-transform:matrix(0.205624,-0.003290,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205624,-0.003290,0.003999,0.249968,0,0);}
.m11_c01004{transform:matrix(0.205729,-0.003292,0.003999,0.249968,0,0);-ms-transform:matrix(0.205729,-0.003292,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205729,-0.003292,0.003999,0.249968,0,0);}
.mc4_c01004{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);}
.m8_c01004{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);}
.mb5_c01004{transform:matrix(0.207236,-0.003730,0.004499,0.249960,0,0);-ms-transform:matrix(0.207236,-0.003730,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207236,-0.003730,0.004499,0.249960,0,0);}
.m93_c01004{transform:matrix(0.207523,-0.003320,0.003999,0.249968,0,0);-ms-transform:matrix(0.207523,-0.003320,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207523,-0.003320,0.003999,0.249968,0,0);}
.mab_c01004{transform:matrix(0.207773,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207773,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207773,-0.003324,0.003999,0.249968,0,0);}
.m54_c01004{transform:matrix(0.207947,-0.003951,0.004749,0.249955,0,0);-ms-transform:matrix(0.207947,-0.003951,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207947,-0.003951,0.004749,0.249955,0,0);}
.m8e_c01004{transform:matrix(0.208137,-0.003122,0.003750,0.249972,0,0);-ms-transform:matrix(0.208137,-0.003122,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208137,-0.003122,0.003750,0.249972,0,0);}
.ma8_c01004{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);}
.mdf_c01004{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);}
.ma6_c01004{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);}
.m47_c01004{transform:matrix(0.208748,-0.003340,0.003999,0.249968,0,0);-ms-transform:matrix(0.208748,-0.003340,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208748,-0.003340,0.003999,0.249968,0,0);}
.m86_c01004{transform:matrix(0.209400,-0.002513,0.003000,0.249982,0,0);-ms-transform:matrix(0.209400,-0.002513,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209400,-0.002513,0.003000,0.249982,0,0);}
.m32_c01004{transform:matrix(0.209688,-0.003355,0.003999,0.249968,0,0);-ms-transform:matrix(0.209688,-0.003355,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209688,-0.003355,0.003999,0.249968,0,0);}
.m81_c01004{transform:matrix(0.210112,-0.002731,0.003250,0.249979,0,0);-ms-transform:matrix(0.210112,-0.002731,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210112,-0.002731,0.003250,0.249979,0,0);}
.md1_c01004{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);}
.m84_c01004{transform:matrix(0.210710,-0.002529,0.003000,0.249982,0,0);-ms-transform:matrix(0.210710,-0.002529,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210710,-0.002529,0.003000,0.249982,0,0);}
.m25_c01004{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);}
.m7e_c01004{transform:matrix(0.211579,-0.002962,0.003500,0.249976,0,0);-ms-transform:matrix(0.211579,-0.002962,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211579,-0.002962,0.003500,0.249976,0,0);}
.m9f_c01004{transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);-ms-transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212052,-0.002757,0.003250,0.249979,0,0);}
.me_c01004{transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);-ms-transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212123,-0.003394,0.003999,0.249968,0,0);}
.me6_c01004{transform:matrix(0.212709,-0.003616,0.004249,0.249964,0,0);-ms-transform:matrix(0.212709,-0.003616,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212709,-0.003616,0.004249,0.249964,0,0);}
.m5c_c01004{transform:matrix(0.212872,-0.004045,0.004749,0.249955,0,0);-ms-transform:matrix(0.212872,-0.004045,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212872,-0.004045,0.004749,0.249955,0,0);}
.m1c_c01004{transform:matrix(0.213013,-0.003408,0.003999,0.249968,0,0);-ms-transform:matrix(0.213013,-0.003408,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213013,-0.003408,0.003999,0.249968,0,0);}
.m6a_c01004{transform:matrix(0.213067,-0.004048,0.004749,0.249955,0,0);-ms-transform:matrix(0.213067,-0.004048,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213067,-0.004048,0.004749,0.249955,0,0);}
.m20_c01004{transform:matrix(0.213388,-0.003414,0.003999,0.249968,0,0);-ms-transform:matrix(0.213388,-0.003414,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213388,-0.003414,0.003999,0.249968,0,0);}
.md2_c01004{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);}
.mc3_c01004{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);}
.m50_c01004{transform:matrix(0.213936,-0.004065,0.004749,0.249955,0,0);-ms-transform:matrix(0.213936,-0.004065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213936,-0.004065,0.004749,0.249955,0,0);}
.mcf_c01004{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);}
.md8_c01004{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);}
.m57_c01004{transform:matrix(0.217816,-0.004138,0.004749,0.249955,0,0);-ms-transform:matrix(0.217816,-0.004138,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217816,-0.004138,0.004749,0.249955,0,0);}
.m42_c01004{transform:matrix(0.218532,-0.003497,0.003999,0.249968,0,0);-ms-transform:matrix(0.218532,-0.003497,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218532,-0.003497,0.003999,0.249968,0,0);}
.m7d_c01004{transform:matrix(0.220298,-0.003084,0.003500,0.249976,0,0);-ms-transform:matrix(0.220298,-0.003084,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220298,-0.003084,0.003500,0.249976,0,0);}
.mc_c01004{transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);-ms-transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);}
.m5f_c01004{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);}
.m37_c01004{transform:matrix(0.223266,-0.003572,0.003999,0.249968,0,0);-ms-transform:matrix(0.223266,-0.003572,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223266,-0.003572,0.003999,0.249968,0,0);}
.ma1_c01004{transform:matrix(0.224816,-0.002923,0.003250,0.249979,0,0);-ms-transform:matrix(0.224816,-0.002923,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224816,-0.002923,0.003250,0.249979,0,0);}
.m56_c01004{transform:matrix(0.225159,-0.004278,0.004749,0.249955,0,0);-ms-transform:matrix(0.225159,-0.004278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225159,-0.004278,0.004749,0.249955,0,0);}
.m38_c01004{transform:matrix(0.225461,-0.003607,0.003999,0.249968,0,0);-ms-transform:matrix(0.225461,-0.003607,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225461,-0.003607,0.003999,0.249968,0,0);}
.m69_c01004{transform:matrix(0.226344,-0.004301,0.004749,0.249955,0,0);-ms-transform:matrix(0.226344,-0.004301,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226344,-0.004301,0.004749,0.249955,0,0);}
.m1d_c01004{transform:matrix(0.227716,-0.003643,0.003999,0.249968,0,0);-ms-transform:matrix(0.227716,-0.003643,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227716,-0.003643,0.003999,0.249968,0,0);}
.mc5_c01004{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);}
.mac_c01004{transform:matrix(0.228716,-0.003659,0.003999,0.249968,0,0);-ms-transform:matrix(0.228716,-0.003659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228716,-0.003659,0.003999,0.249968,0,0);}
.ma_c01004{transform:matrix(0.228741,-0.003660,0.003999,0.249968,0,0);-ms-transform:matrix(0.228741,-0.003660,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228741,-0.003660,0.003999,0.249968,0,0);}
.mf2_c01004{transform:matrix(0.229307,-0.003898,0.004249,0.249964,0,0);-ms-transform:matrix(0.229307,-0.003898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229307,-0.003898,0.004249,0.249964,0,0);}
.m63_c01004{transform:matrix(0.229754,-0.004365,0.004749,0.249955,0,0);-ms-transform:matrix(0.229754,-0.004365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229754,-0.004365,0.004749,0.249955,0,0);}
.m48_c01004{transform:matrix(0.229841,-0.003677,0.003999,0.249968,0,0);-ms-transform:matrix(0.229841,-0.003677,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229841,-0.003677,0.003999,0.249968,0,0);}
.m6_c01004{transform:matrix(0.229896,-0.003678,0.003999,0.249968,0,0);-ms-transform:matrix(0.229896,-0.003678,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229896,-0.003678,0.003999,0.249968,0,0);}
.mb0_c01004{transform:matrix(0.230021,-0.003680,0.003999,0.249968,0,0);-ms-transform:matrix(0.230021,-0.003680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230021,-0.003680,0.003999,0.249968,0,0);}
.m2d_c01004{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);}
.m80_c01004{transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);-ms-transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232155,-0.003018,0.003250,0.249979,0,0);}
.mbf_c01004{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);}
.m31_c01004{transform:matrix(0.232830,-0.003725,0.003999,0.249968,0,0);-ms-transform:matrix(0.232830,-0.003725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232830,-0.003725,0.003999,0.249968,0,0);}
.m4f_c01004{transform:matrix(0.233593,-0.004438,0.004749,0.249955,0,0);-ms-transform:matrix(0.233593,-0.004438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233593,-0.004438,0.004749,0.249955,0,0);}
.mad_c01004{transform:matrix(0.234745,-0.003756,0.003999,0.249968,0,0);-ms-transform:matrix(0.234745,-0.003756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234745,-0.003756,0.003999,0.249968,0,0);}
.m29_c01004{transform:matrix(0.235640,-0.003770,0.003999,0.249968,0,0);-ms-transform:matrix(0.235640,-0.003770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235640,-0.003770,0.003999,0.249968,0,0);}
.m8f_c01004{transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);-ms-transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236768,-0.003552,0.003750,0.249972,0,0);}
.md9_c01004{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);}
.m2a_c01004{transform:matrix(0.239974,-0.003840,0.003999,0.249968,0,0);-ms-transform:matrix(0.239974,-0.003840,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239974,-0.003840,0.003999,0.249968,0,0);}
.md7_c01004{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);}
.m4e_c01004{transform:matrix(0.240577,-0.004571,0.004749,0.249955,0,0);-ms-transform:matrix(0.240577,-0.004571,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240577,-0.004571,0.004749,0.249955,0,0);}
.mc8_c01004{transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);}
.m7a_c01004{transform:matrix(0.240806,-0.003371,0.003500,0.249976,0,0);-ms-transform:matrix(0.240806,-0.003371,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240806,-0.003371,0.003500,0.249976,0,0);}
.m5d_c01004{transform:matrix(0.241786,-0.004594,0.004749,0.249955,0,0);-ms-transform:matrix(0.241786,-0.004594,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241786,-0.004594,0.004749,0.249955,0,0);}
.me1_c01004{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);}
.md0_c01004{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m12_c01004{transform:matrix(0.249633,-0.003994,0.003999,0.249968,0,0);-ms-transform:matrix(0.249633,-0.003994,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249633,-0.003994,0.003999,0.249968,0,0);}
.m21_c01004{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);}
.m9_c01004{transform:matrix(0.252313,-0.004037,0.003999,0.249968,0,0);-ms-transform:matrix(0.252313,-0.004037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252313,-0.004037,0.003999,0.249968,0,0);}
.m13_c01004{transform:matrix(0.255802,-0.004093,0.003999,0.249968,0,0);-ms-transform:matrix(0.255802,-0.004093,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255802,-0.004093,0.003999,0.249968,0,0);}
.m9c_c01004{transform:matrix(0.256342,-0.004101,0.003999,0.249968,0,0);-ms-transform:matrix(0.256342,-0.004101,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256342,-0.004101,0.003999,0.249968,0,0);}
.m26_c01004{transform:matrix(0.256467,-0.004103,0.003999,0.249968,0,0);-ms-transform:matrix(0.256467,-0.004103,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256467,-0.004103,0.003999,0.249968,0,0);}
.m83_c01004{transform:matrix(0.257736,-0.003093,0.003000,0.249982,0,0);-ms-transform:matrix(0.257736,-0.003093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257736,-0.003093,0.003000,0.249982,0,0);}
.mc1_c01004{transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);}
.mef_c01004{transform:matrix(0.258463,-0.004394,0.004249,0.249964,0,0);-ms-transform:matrix(0.258463,-0.004394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258463,-0.004394,0.004249,0.249964,0,0);}
.m3c_c01004{transform:matrix(0.258887,-0.004142,0.003999,0.249968,0,0);-ms-transform:matrix(0.258887,-0.004142,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258887,-0.004142,0.003999,0.249968,0,0);}
.m4d_c01004{transform:matrix(0.259688,-0.004934,0.004749,0.249955,0,0);-ms-transform:matrix(0.259688,-0.004934,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259688,-0.004934,0.004749,0.249955,0,0);}
.m78_c01004{transform:matrix(0.263459,-0.003688,0.003500,0.249976,0,0);-ms-transform:matrix(0.263459,-0.003688,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263459,-0.003688,0.003500,0.249976,0,0);}
.m99_c01004{transform:matrix(0.264806,-0.004237,0.003999,0.249968,0,0);-ms-transform:matrix(0.264806,-0.004237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264806,-0.004237,0.003999,0.249968,0,0);}
.mdd_c01004{transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);}
.me2_c01004{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);}
.ma5_c01004{transform:matrix(0.266581,-0.004265,0.003999,0.249968,0,0);-ms-transform:matrix(0.266581,-0.004265,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266581,-0.004265,0.003999,0.249968,0,0);}
.m8a_c01004{transform:matrix(0.267385,-0.004011,0.003750,0.249972,0,0);-ms-transform:matrix(0.267385,-0.004011,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267385,-0.004011,0.003750,0.249972,0,0);}
.m5_c01004{transform:matrix(0.269391,-0.004310,0.003999,0.249968,0,0);-ms-transform:matrix(0.269391,-0.004310,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269391,-0.004310,0.003999,0.249968,0,0);}
.mcb_c01004{transform:matrix(0.270990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270990,0.000000,0.000000,0.250000,0,0);}
.m4_c01004{transform:matrix(0.272070,-0.004353,0.003999,0.249968,0,0);-ms-transform:matrix(0.272070,-0.004353,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272070,-0.004353,0.003999,0.249968,0,0);}
.m27_c01004{transform:matrix(0.277504,-0.004440,0.003999,0.249968,0,0);-ms-transform:matrix(0.277504,-0.004440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277504,-0.004440,0.003999,0.249968,0,0);}
.m52_c01004{transform:matrix(0.280989,-0.005339,0.004749,0.249955,0,0);-ms-transform:matrix(0.280989,-0.005339,0.004749,0.249955,0,0);-webkit-transform:matrix(0.280989,-0.005339,0.004749,0.249955,0,0);}
.mde_c01004{transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284205,0.000000,0.000000,0.250000,0,0);}
.m75_c01004{transform:matrix(0.284247,-0.003979,0.003500,0.249976,0,0);-ms-transform:matrix(0.284247,-0.003979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284247,-0.003979,0.003500,0.249976,0,0);}
.m2f_c01004{transform:matrix(0.287508,-0.004600,0.003999,0.249968,0,0);-ms-transform:matrix(0.287508,-0.004600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.287508,-0.004600,0.003999,0.249968,0,0);}
.m2_c01004{transform:matrix(0.290973,-0.004656,0.003999,0.249968,0,0);-ms-transform:matrix(0.290973,-0.004656,0.003999,0.249968,0,0);-webkit-transform:matrix(0.290973,-0.004656,0.003999,0.249968,0,0);}
.mce_c01004{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb_c01004{transform:matrix(0.299822,-0.004797,0.003999,0.249968,0,0);-ms-transform:matrix(0.299822,-0.004797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299822,-0.004797,0.003999,0.249968,0,0);}
.m28_c01004{transform:matrix(0.307236,-0.004916,0.003999,0.249968,0,0);-ms-transform:matrix(0.307236,-0.004916,0.003999,0.249968,0,0);-webkit-transform:matrix(0.307236,-0.004916,0.003999,0.249968,0,0);}
.md5_c01004{transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312330,0.000000,0.000000,0.250000,0,0);}
.mc7_c01004{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);}
.me4_c01004{transform:matrix(0.314495,-0.005346,0.004249,0.249964,0,0);-ms-transform:matrix(0.314495,-0.005346,0.004249,0.249964,0,0);-webkit-transform:matrix(0.314495,-0.005346,0.004249,0.249964,0,0);}
.mc6_c01004{transform:matrix(0.314975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314975,0.000000,0.000000,0.250000,0,0);}
.mb4_c01004{transform:matrix(0.334586,-0.006023,0.004499,0.249960,0,0);-ms-transform:matrix(0.334586,-0.006023,0.004499,0.249960,0,0);-webkit-transform:matrix(0.334586,-0.006023,0.004499,0.249960,0,0);}
.m14_c01004{transform:matrix(0.345516,-0.005528,0.003999,0.249968,0,0);-ms-transform:matrix(0.345516,-0.005528,0.003999,0.249968,0,0);-webkit-transform:matrix(0.345516,-0.005528,0.003999,0.249968,0,0);}
.m7c_c01004{transform:matrix(0.348706,-0.004882,0.003500,0.249976,0,0);-ms-transform:matrix(0.348706,-0.004882,0.003500,0.249976,0,0);-webkit-transform:matrix(0.348706,-0.004882,0.003500,0.249976,0,0);}
.m74_c01004{transform:matrix(0.351920,-0.005631,0.003999,0.249968,0,0);-ms-transform:matrix(0.351920,-0.005631,0.003999,0.249968,0,0);-webkit-transform:matrix(0.351920,-0.005631,0.003999,0.249968,0,0);}
.md3_c01004{transform:matrix(0.353475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353475,0.000000,0.000000,0.250000,0,0);}
.med_c01004{transform:matrix(0.355059,-0.006036,0.004249,0.249964,0,0);-ms-transform:matrix(0.355059,-0.006036,0.004249,0.249964,0,0);-webkit-transform:matrix(0.355059,-0.006036,0.004249,0.249964,0,0);}
.m9d_c01004{transform:matrix(0.358699,-0.005739,0.003999,0.249968,0,0);-ms-transform:matrix(0.358699,-0.005739,0.003999,0.249968,0,0);-webkit-transform:matrix(0.358699,-0.005739,0.003999,0.249968,0,0);}
.mf0_c01004{transform:matrix(0.363532,-0.006180,0.004249,0.249964,0,0);-ms-transform:matrix(0.363532,-0.006180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.363532,-0.006180,0.004249,0.249964,0,0);}
.mca_c01004{transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371540,0.000000,0.000000,0.250000,0,0);}
.m2e_c01004{transform:matrix(0.397634,-0.006362,0.003999,0.249968,0,0);-ms-transform:matrix(0.397634,-0.006362,0.003999,0.249968,0,0);-webkit-transform:matrix(0.397634,-0.006362,0.003999,0.249968,0,0);}
.m90_c01004{transform:matrix(0.408534,-0.006128,0.003750,0.249972,0,0);-ms-transform:matrix(0.408534,-0.006128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.408534,-0.006128,0.003750,0.249972,0,0);}
.m4b_c01004{transform:matrix(0.426493,-0.008103,0.004749,0.249955,0,0);-ms-transform:matrix(0.426493,-0.008103,0.004749,0.249955,0,0);-webkit-transform:matrix(0.426493,-0.008103,0.004749,0.249955,0,0);}
.mbd_c01004{transform:matrix(0.436090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436090,0.000000,0.000000,0.250000,0,0);}
.me8_c01004{transform:matrix(0.466628,-0.007933,0.004249,0.249964,0,0);-ms-transform:matrix(0.466628,-0.007933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.466628,-0.007933,0.004249,0.249964,0,0);}
.me5_c01004{transform:matrix(0.480641,-0.008171,0.004249,0.249964,0,0);-ms-transform:matrix(0.480641,-0.008171,0.004249,0.249964,0,0);-webkit-transform:matrix(0.480641,-0.008171,0.004249,0.249964,0,0);}
.md4_c01004{transform:matrix(0.489220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489220,0.000000,0.000000,0.250000,0,0);}
.mdb_c01004{transform:matrix(0.491720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491720,0.000000,0.000000,0.250000,0,0);}
.mea_c01004{transform:matrix(0.531728,-0.009039,0.004249,0.249964,0,0);-ms-transform:matrix(0.531728,-0.009039,0.004249,0.249964,0,0);-webkit-transform:matrix(0.531728,-0.009039,0.004249,0.249964,0,0);}
.m7f_c01004{transform:matrix(0.543862,-0.007614,0.003500,0.249976,0,0);-ms-transform:matrix(0.543862,-0.007614,0.003500,0.249976,0,0);-webkit-transform:matrix(0.543862,-0.007614,0.003500,0.249976,0,0);}
.me9_c01004{transform:matrix(0.658885,-0.011201,0.004249,0.249964,0,0);-ms-transform:matrix(0.658885,-0.011201,0.004249,0.249964,0,0);-webkit-transform:matrix(0.658885,-0.011201,0.004249,0.249964,0,0);}
.me7_c01004{transform:matrix(0.722966,-0.012290,0.004249,0.249964,0,0);-ms-transform:matrix(0.722966,-0.012290,0.004249,0.249964,0,0);-webkit-transform:matrix(0.722966,-0.012290,0.004249,0.249964,0,0);}
.m0_c01004{transform:matrix(0.753202,-0.007532,0.002500,0.249988,0,0);-ms-transform:matrix(0.753202,-0.007532,0.002500,0.249988,0,0);-webkit-transform:matrix(0.753202,-0.007532,0.002500,0.249988,0,0);}
.m3_c01004{transform:matrix(0.853976,-0.013664,0.003999,0.249968,0,0);-ms-transform:matrix(0.853976,-0.013664,0.003999,0.249968,0,0);-webkit-transform:matrix(0.853976,-0.013664,0.003999,0.249968,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls0_c01004{letter-spacing:0.000000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:0.000000px;}
.fc0_c01004{color:transparent;}
.fs17_c01004{font-size:25.200000px;}
.fs19_c01004{font-size:26.250000px;}
.fs18_c01004{font-size:27.300000px;}
.fs14_c01004{font-size:50.400000px;}
.fs1a_c01004{font-size:51.450000px;}
.fs16_c01004{font-size:53.550000px;}
.fs1b_c01004{font-size:53.557737px;}
.fs15_c01004{font-size:54.600000px;}
.fs5_c01004{font-size:64.058198px;}
.fs2_c01004{font-size:67.208601px;}
.fse_c01004{font-size:68.255767px;}
.fsd_c01004{font-size:68.256688px;}
.fs3_c01004{font-size:68.258735px;}
.fs4_c01004{font-size:69.308870px;}
.fsa_c01004{font-size:69.312508px;}
.fsf_c01004{font-size:70.355065px;}
.fs12_c01004{font-size:70.359004px;}
.fs9_c01004{font-size:70.362697px;}
.fs11_c01004{font-size:71.406033px;}
.fs10_c01004{font-size:71.408032px;}
.fs1_c01004{font-size:71.409139px;}
.fs13_c01004{font-size:71.411566px;}
.fs8_c01004{font-size:71.412887px;}
.fsb_c01004{font-size:72.459273px;}
.fs6_c01004{font-size:73.509407px;}
.fs7_c01004{font-size:76.663834px;}
.fsc_c01004{font-size:89.261423px;}
.fs0_c01004{font-size:231.011550px;}
.y0_c01004{bottom:0.000000px;}
.yc8_c01004{bottom:153.363000px;}
.yc9_c01004{bottom:154.019982px;}
.yca_c01004{bottom:155.131450px;}
.ycb_c01004{bottom:155.575763px;}
.ycc_c01004{bottom:155.938475px;}
.ycd_c01004{bottom:156.847550px;}
.yce_c01004{bottom:157.363517px;}
.ycf_c01004{bottom:157.585290px;}
.yd0_c01004{bottom:159.295473px;}
.yd1_c01004{bottom:159.601090px;}
.yd2_c01004{bottom:159.954240px;}
.yd3_c01004{bottom:160.169919px;}
.yd4_c01004{bottom:160.316876px;}
.yd5_c01004{bottom:160.785234px;}
.yd6_c01004{bottom:161.171738px;}
.yd7_c01004{bottom:161.202083px;}
.yc7_c01004{bottom:173.301000px;}
.yc4_c01004{bottom:190.084500px;}
.yc5_c01004{bottom:190.995000px;}
.yc6_c01004{bottom:193.486500px;}
.yc0_c01004{bottom:208.761000px;}
.yc3_c01004{bottom:223.830000px;}
.ybf_c01004{bottom:226.281000px;}
.yc2_c01004{bottom:240.300000px;}
.ybe_c01004{bottom:244.368000px;}
.yc1_c01004{bottom:247.320000px;}
.yb5_c01004{bottom:294.306000px;}
.yb6_c01004{bottom:294.815247px;}
.yb7_c01004{bottom:295.826316px;}
.yb8_c01004{bottom:296.725362px;}
.yb9_c01004{bottom:297.775554px;}
.yba_c01004{bottom:298.407165px;}
.ybb_c01004{bottom:299.068206px;}
.ybc_c01004{bottom:299.646465px;}
.ybd_c01004{bottom:300.337260px;}
.yad_c01004{bottom:317.253000px;}
.yae_c01004{bottom:317.745768px;}
.yaf_c01004{bottom:318.259704px;}
.yb0_c01004{bottom:318.593208px;}
.yb1_c01004{bottom:319.655376px;}
.yb2_c01004{bottom:320.428560px;}
.yb3_c01004{bottom:321.033552px;}
.yb4_c01004{bottom:321.965856px;}
.ya6_c01004{bottom:340.447500px;}
.ya7_c01004{bottom:340.875540px;}
.ya8_c01004{bottom:342.046260px;}
.ya9_c01004{bottom:343.472220px;}
.yaa_c01004{bottom:343.908132px;}
.yab_c01004{bottom:344.414268px;}
.yac_c01004{bottom:345.117156px;}
.y9f_c01004{bottom:363.423000px;}
.ya0_c01004{bottom:364.468805px;}
.ya1_c01004{bottom:364.686405px;}
.ya2_c01004{bottom:365.384154px;}
.ya3_c01004{bottom:365.785308px;}
.ya4_c01004{bottom:366.638219px;}
.ya5_c01004{bottom:368.279611px;}
.y94_c01004{bottom:386.373000px;}
.y95_c01004{bottom:386.748936px;}
.y96_c01004{bottom:387.077424px;}
.y97_c01004{bottom:387.790128px;}
.y98_c01004{bottom:388.147608px;}
.y99_c01004{bottom:388.809648px;}
.y9a_c01004{bottom:389.604576px;}
.y9b_c01004{bottom:389.967888px;}
.y9c_c01004{bottom:390.887592px;}
.y9d_c01004{bottom:391.174680px;}
.y9e_c01004{bottom:392.194344px;}
.y8b_c01004{bottom:409.053000px;}
.y8c_c01004{bottom:409.502077px;}
.y8d_c01004{bottom:410.048513px;}
.y8e_c01004{bottom:410.846587px;}
.y8f_c01004{bottom:411.215227px;}
.y90_c01004{bottom:411.900330px;}
.y91_c01004{bottom:412.769370px;}
.y92_c01004{bottom:413.109052px;}
.y93_c01004{bottom:414.094035px;}
.y84_c01004{bottom:432.003000px;}
.y85_c01004{bottom:432.672654px;}
.y86_c01004{bottom:433.320456px;}
.y87_c01004{bottom:433.415190px;}
.y88_c01004{bottom:433.852644px;}
.y89_c01004{bottom:434.441226px;}
.y8a_c01004{bottom:435.189504px;}
.y81_c01004{bottom:453.873000px;}
.y82_c01004{bottom:454.599551px;}
.y83_c01004{bottom:456.161637px;}
.y76_c01004{bottom:477.363000px;}
.y77_c01004{bottom:477.775083px;}
.y78_c01004{bottom:478.497042px;}
.y79_c01004{bottom:479.196111px;}
.y7a_c01004{bottom:479.442042px;}
.y7b_c01004{bottom:480.050622px;}
.y7c_c01004{bottom:480.349326px;}
.y7d_c01004{bottom:480.644397px;}
.y7e_c01004{bottom:481.119900px;}
.y7f_c01004{bottom:481.690680px;}
.y80_c01004{bottom:482.073489px;}
.y75_c01004{bottom:500.047260px;}
.y6d_c01004{bottom:521.913000px;}
.y6e_c01004{bottom:522.249912px;}
.y6f_c01004{bottom:522.599928px;}
.y70_c01004{bottom:523.208760px;}
.y71_c01004{bottom:523.926000px;}
.y72_c01004{bottom:524.721192px;}
.y73_c01004{bottom:525.460104px;}
.y74_c01004{bottom:526.341552px;}
.y67_c01004{bottom:545.124759px;}
.y68_c01004{bottom:545.553215px;}
.y69_c01004{bottom:546.434763px;}
.y6a_c01004{bottom:547.548492px;}
.y6b_c01004{bottom:548.198116px;}
.y6c_c01004{bottom:549.243333px;}
.y5e_c01004{bottom:567.806727px;}
.y5f_c01004{bottom:568.330475px;}
.y60_c01004{bottom:569.330333px;}
.y61_c01004{bottom:570.046670px;}
.y62_c01004{bottom:570.919398px;}
.y63_c01004{bottom:571.472322px;}
.y64_c01004{bottom:572.241170px;}
.y65_c01004{bottom:572.687847px;}
.y66_c01004{bottom:573.092797px;}
.y55_c01004{bottom:590.760855px;}
.y56_c01004{bottom:591.374474px;}
.y57_c01004{bottom:592.148696px;}
.y58_c01004{bottom:592.889494px;}
.y59_c01004{bottom:593.704710px;}
.y5a_c01004{bottom:594.175224px;}
.y5b_c01004{bottom:595.425033px;}
.y5c_c01004{bottom:595.704324px;}
.y5d_c01004{bottom:596.338986px;}
.y4c_c01004{bottom:612.367500px;}
.y4d_c01004{bottom:613.224552px;}
.y4f_c01004{bottom:614.409582px;}
.y4e_c01004{bottom:614.409867px;}
.y50_c01004{bottom:615.089506px;}
.y51_c01004{bottom:615.475938px;}
.y52_c01004{bottom:616.534827px;}
.y53_c01004{bottom:617.072251px;}
.y54_c01004{bottom:618.149608px;}
.y40_c01004{bottom:659.061672px;}
.y41_c01004{bottom:659.451216px;}
.y42_c01004{bottom:659.748984px;}
.y43_c01004{bottom:660.609960px;}
.y44_c01004{bottom:661.435020px;}
.y45_c01004{bottom:661.493784px;}
.y46_c01004{bottom:662.091192px;}
.y47_c01004{bottom:662.445084px;}
.y48_c01004{bottom:662.890344px;}
.y49_c01004{bottom:663.086352px;}
.y4a_c01004{bottom:663.623868px;}
.y4b_c01004{bottom:664.218348px;}
.y38_c01004{bottom:680.395128px;}
.y39_c01004{bottom:681.060936px;}
.y3a_c01004{bottom:681.920232px;}
.y3b_c01004{bottom:682.244616px;}
.y3c_c01004{bottom:683.073960px;}
.y3d_c01004{bottom:683.450304px;}
.y3e_c01004{bottom:684.145536px;}
.y3f_c01004{bottom:684.858456px;}
.y30_c01004{bottom:702.809148px;}
.y31_c01004{bottom:703.304592px;}
.y32_c01004{bottom:703.670508px;}
.y33_c01004{bottom:704.457156px;}
.y34_c01004{bottom:704.925864px;}
.y35_c01004{bottom:705.749556px;}
.y36_c01004{bottom:706.361520px;}
.y37_c01004{bottom:707.193504px;}
.y26_c01004{bottom:725.491788px;}
.y27_c01004{bottom:726.098172px;}
.y28_c01004{bottom:726.708804px;}
.y29_c01004{bottom:727.469940px;}
.y2a_c01004{bottom:728.181588px;}
.y2b_c01004{bottom:729.018456px;}
.y2c_c01004{bottom:729.789480px;}
.y2d_c01004{bottom:730.514088px;}
.y2e_c01004{bottom:730.880856px;}
.y2f_c01004{bottom:732.152904px;}
.y1e_c01004{bottom:748.812000px;}
.y1f_c01004{bottom:749.222280px;}
.y20_c01004{bottom:749.636472px;}
.y21_c01004{bottom:750.363168px;}
.y22_c01004{bottom:751.666680px;}
.y23_c01004{bottom:751.914264px;}
.y24_c01004{bottom:753.037608px;}
.y25_c01004{bottom:753.487656px;}
.y16_c01004{bottom:771.386700px;}
.y17_c01004{bottom:771.975588px;}
.y18_c01004{bottom:772.338984px;}
.y19_c01004{bottom:772.830516px;}
.y1a_c01004{bottom:773.196528px;}
.y1b_c01004{bottom:773.979072px;}
.y1c_c01004{bottom:774.388548px;}
.y1d_c01004{bottom:775.413216px;}
.yb_c01004{bottom:793.799472px;}
.yc_c01004{bottom:794.017728px;}
.yd_c01004{bottom:794.269740px;}
.ye_c01004{bottom:794.892756px;}
.yf_c01004{bottom:795.775968px;}
.y10_c01004{bottom:796.168884px;}
.y11_c01004{bottom:796.958616px;}
.y12_c01004{bottom:797.572044px;}
.y13_c01004{bottom:798.341436px;}
.y14_c01004{bottom:798.894936px;}
.y15_c01004{bottom:799.547916px;}
.y2_c01004{bottom:816.750000px;}
.y3_c01004{bottom:816.902664px;}
.y4_c01004{bottom:817.357872px;}
.y5_c01004{bottom:818.289768px;}
.y6_c01004{bottom:818.644440px;}
.y7_c01004{bottom:819.669288px;}
.y8_c01004{bottom:820.005504px;}
.y9_c01004{bottom:820.467312px;}
.ya_c01004{bottom:821.755104px;}
.y1_c01004{bottom:908.013000px;}
.h19_c01004{height:25.200000px;}
.h1b_c01004{height:26.250000px;}
.h1a_c01004{height:27.300000px;}
.h16_c01004{height:50.400000px;}
.h1c_c01004{height:51.450000px;}
.h18_c01004{height:53.550000px;}
.h1d_c01004{height:53.557737px;}
.h17_c01004{height:54.600000px;}
.h7_c01004{height:64.058198px;}
.h4_c01004{height:67.208601px;}
.h10_c01004{height:68.255767px;}
.hf_c01004{height:68.256688px;}
.h5_c01004{height:68.258735px;}
.h6_c01004{height:69.308870px;}
.hc_c01004{height:69.312508px;}
.h11_c01004{height:70.355065px;}
.h14_c01004{height:70.359004px;}
.hb_c01004{height:70.362697px;}
.h13_c01004{height:71.406033px;}
.h12_c01004{height:71.408032px;}
.h3_c01004{height:71.409139px;}
.h15_c01004{height:71.411566px;}
.ha_c01004{height:71.412887px;}
.hd_c01004{height:72.459273px;}
.h8_c01004{height:73.509407px;}
.h9_c01004{height:76.663834px;}
.he_c01004{height:89.261423px;}
.h2_c01004{height:231.011550px;}
.h1_c01004{height:1005.000000px;}
.h0_c01004{height:1005.150000px;}
.w0_c01004{width:715.200000px;}
.w1_c01004{width:715.500000px;}
.x0_c01004{left:0.000000px;}
.x81_c01004{left:102.870000px;}
.x85_c01004{left:115.290000px;}
.x88_c01004{left:118.260000px;}
.x8a_c01004{left:126.096000px;}
.x3f_c01004{left:135.375000px;}
.x8b_c01004{left:139.320000px;}
.x2_c01004{left:143.683500px;}
.x65_c01004{left:147.624000px;}
.x82_c01004{left:151.470000px;}
.x3_c01004{left:153.225000px;}
.x2b_c01004{left:154.448028px;}
.xb_c01004{left:155.458128px;}
.x47_c01004{left:156.838123px;}
.x4e_c01004{left:158.162572px;}
.x76_c01004{left:159.237000px;}
.x73_c01004{left:160.299000px;}
.x8e_c01004{left:165.441000px;}
.x86_c01004{left:168.750000px;}
.xc_c01004{left:170.036868px;}
.x57_c01004{left:178.417500px;}
.x40_c01004{left:180.483000px;}
.x4_c01004{left:181.675500px;}
.x37_c01004{left:182.684304px;}
.x55_c01004{left:184.357189px;}
.xd_c01004{left:186.819132px;}
.x4f_c01004{left:188.966241px;}
.x77_c01004{left:190.035000px;}
.x23_c01004{left:191.398956px;}
.x16_c01004{left:197.231412px;}
.x58_c01004{left:200.293500px;}
.x2c_c01004{left:202.281492px;}
.x66_c01004{left:203.428500px;}
.x38_c01004{left:205.608408px;}
.x1d_c01004{left:207.264000px;}
.x64_c01004{left:213.747000px;}
.x8c_c01004{left:216.000000px;}
.x87_c01004{left:217.620000px;}
.x69_c01004{left:218.883000px;}
.x78_c01004{left:222.156000px;}
.x17_c01004{left:223.225752px;}
.x24_c01004{left:227.312880px;}
.xe_c01004{left:228.383304px;}
.x8f_c01004{left:230.821500px;}
.x48_c01004{left:233.989105px;}
.x1_c01004{left:236.566500px;}
.x59_c01004{left:238.345500px;}
.x5_c01004{left:239.919000px;}
.x41_c01004{left:242.868000px;}
.x7c_c01004{left:244.599000px;}
.x2d_c01004{left:246.008100px;}
.x50_c01004{left:247.750464px;}
.x31_c01004{left:249.968112px;}
.x1e_c01004{left:252.682500px;}
.x90_c01004{left:256.957500px;}
.x18_c01004{left:258.353880px;}
.x8d_c01004{left:259.740000px;}
.x83_c01004{left:260.820000px;}
.x6_c01004{left:262.086000px;}
.x67_c01004{left:265.306500px;}
.x32_c01004{left:270.242112px;}
.x25_c01004{left:272.070660px;}
.x49_c01004{left:275.110875px;}
.x84_c01004{left:277.560000px;}
.x42_c01004{left:278.638500px;}
.x5a_c01004{left:283.173000px;}
.x19_c01004{left:284.511720px;}
.xf_c01004{left:287.241240px;}
.x5e_c01004{left:288.520500px;}
.x51_c01004{left:289.875060px;}
.x5d_c01004{left:291.229524px;}
.x7d_c01004{left:294.546000px;}
.x6a_c01004{left:296.664000px;}
.x43_c01004{left:298.977000px;}
.x68_c01004{left:301.761000px;}
.x5f_c01004{left:306.087000px;}
.x56_c01004{left:309.036786px;}
.x6f_c01004{left:311.248500px;}
.x10_c01004{left:313.392648px;}
.x2e_c01004{left:317.780796px;}
.x4a_c01004{left:320.386230px;}
.x33_c01004{left:322.076112px;}
.x7_c01004{left:326.139000px;}
.x91_c01004{left:331.768500px;}
.x5b_c01004{left:332.872500px;}
.x1f_c01004{left:334.152000px;}
.x39_c01004{left:335.273124px;}
.x89_c01004{left:336.420000px;}
.x1a_c01004{left:340.359996px;}
.x6b_c01004{left:342.337500px;}
.x34_c01004{left:345.597612px;}
.x8_c01004{left:347.152500px;}
.x20_c01004{left:349.626000px;}
.x2f_c01004{left:351.808716px;}
.x7e_c01004{left:352.890000px;}
.x44_c01004{left:354.708000px;}
.x79_c01004{left:357.709500px;}
.x70_c01004{left:360.931500px;}
.x92_c01004{left:362.119500px;}
.x26_c01004{left:363.132696px;}
.x11_c01004{left:366.032988px;}
.x1b_c01004{left:369.609432px;}
.x60_c01004{left:370.893000px;}
.x52_c01004{left:373.675724px;}
.x9_c01004{left:376.015500px;}
.x5c_c01004{left:379.054500px;}
.x45_c01004{left:382.993500px;}
.x3a_c01004{left:385.755048px;}
.x7f_c01004{left:387.979500px;}
.x35_c01004{left:389.049612px;}
.x61_c01004{left:391.969500px;}
.x7a_c01004{left:395.521500px;}
.x30_c01004{left:397.993728px;}
.x6c_c01004{left:400.273500px;}
.x12_c01004{left:406.904136px;}
.x27_c01004{left:408.508476px;}
.x3b_c01004{left:413.030868px;}
.x4b_c01004{left:415.905025px;}
.x21_c01004{left:419.835000px;}
.x6d_c01004{left:422.919000px;}
.x80_c01004{left:424.704000px;}
.x62_c01004{left:425.934000px;}
.x4c_c01004{left:431.394310px;}
.x36_c01004{left:433.607112px;}
.x46_c01004{left:439.696500px;}
.x71_c01004{left:441.120000px;}
.x1c_c01004{left:442.747260px;}
.x53_c01004{left:445.153431px;}
.x22_c01004{left:447.963000px;}
.x75_c01004{left:450.007500px;}
.x28_c01004{left:451.170804px;}
.x7b_c01004{left:453.790500px;}
.xa_c01004{left:456.502500px;}
.x13_c01004{left:458.179452px;}
.x3c_c01004{left:462.393744px;}
.x4d_c01004{left:466.692994px;}
.x54_c01004{left:468.993843px;}
.x29_c01004{left:472.780968px;}
.x93_c01004{left:475.764000px;}
.x6e_c01004{left:488.584500px;}
.x63_c01004{left:494.047500px;}
.x14_c01004{left:495.117552px;}
.x3d_c01004{left:503.771736px;}
.x94_c01004{left:514.515000px;}
.x72_c01004{left:522.792000px;}
.x95_c01004{left:527.202000px;}
.x74_c01004{left:533.884500px;}
.x96_c01004{left:535.846500px;}
.x15_c01004{left:538.648248px;}
.x2a_c01004{left:547.595268px;}
.x3e_c01004{left:549.553944px;}
.x97_c01004{left:563.397000px;}
.x98_c01004{left:586.132500px;}
.x99_c01004{left:587.917500px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ws0_c01004{word-spacing:0.000000pt;}
.fs17_c01004{font-size:22.400000pt;}
.fs19_c01004{font-size:23.333333pt;}
.fs18_c01004{font-size:24.266667pt;}
.fs14_c01004{font-size:44.800000pt;}
.fs1a_c01004{font-size:45.733333pt;}
.fs16_c01004{font-size:47.600000pt;}
.fs1b_c01004{font-size:47.606878pt;}
.fs15_c01004{font-size:48.533333pt;}
.fs5_c01004{font-size:56.940620pt;}
.fs2_c01004{font-size:59.740979pt;}
.fse_c01004{font-size:60.671793pt;}
.fsd_c01004{font-size:60.672612pt;}
.fs3_c01004{font-size:60.674432pt;}
.fs4_c01004{font-size:61.607884pt;}
.fsa_c01004{font-size:61.611118pt;}
.fsf_c01004{font-size:62.537836pt;}
.fs12_c01004{font-size:62.541337pt;}
.fs9_c01004{font-size:62.544620pt;}
.fs11_c01004{font-size:63.472029pt;}
.fs10_c01004{font-size:63.473806pt;}
.fs1_c01004{font-size:63.474790pt;}
.fs13_c01004{font-size:63.476947pt;}
.fs8_c01004{font-size:63.478121pt;}
.fsb_c01004{font-size:64.408243pt;}
.fs6_c01004{font-size:65.341695pt;}
.fs7_c01004{font-size:68.145630pt;}
.fsc_c01004{font-size:79.343487pt;}
.fs0_c01004{font-size:205.343600pt;}
.y0_c01004{bottom:0.000000pt;}
.yc8_c01004{bottom:136.322667pt;}
.yc9_c01004{bottom:136.906651pt;}
.yca_c01004{bottom:137.894623pt;}
.ycb_c01004{bottom:138.289567pt;}
.ycc_c01004{bottom:138.611977pt;}
.ycd_c01004{bottom:139.420044pt;}
.yce_c01004{bottom:139.878681pt;}
.ycf_c01004{bottom:140.075813pt;}
.yd0_c01004{bottom:141.595976pt;}
.yd1_c01004{bottom:141.867636pt;}
.yd2_c01004{bottom:142.181547pt;}
.yd3_c01004{bottom:142.373261pt;}
.yd4_c01004{bottom:142.503889pt;}
.yd5_c01004{bottom:142.920208pt;}
.yd6_c01004{bottom:143.263767pt;}
.yd7_c01004{bottom:143.290740pt;}
.yc7_c01004{bottom:154.045333pt;}
.yc4_c01004{bottom:168.964000pt;}
.yc5_c01004{bottom:169.773333pt;}
.yc6_c01004{bottom:171.988000pt;}
.yc0_c01004{bottom:185.565333pt;}
.yc3_c01004{bottom:198.960000pt;}
.ybf_c01004{bottom:201.138667pt;}
.yc2_c01004{bottom:213.600000pt;}
.ybe_c01004{bottom:217.216000pt;}
.yc1_c01004{bottom:219.840000pt;}
.yb5_c01004{bottom:261.605333pt;}
.yb6_c01004{bottom:262.057997pt;}
.yb7_c01004{bottom:262.956725pt;}
.yb8_c01004{bottom:263.755877pt;}
.yb9_c01004{bottom:264.689381pt;}
.yba_c01004{bottom:265.250813pt;}
.ybb_c01004{bottom:265.838405pt;}
.ybc_c01004{bottom:266.352413pt;}
.ybd_c01004{bottom:266.966453pt;}
.yad_c01004{bottom:282.002667pt;}
.yae_c01004{bottom:282.440683pt;}
.yaf_c01004{bottom:282.897515pt;}
.yb0_c01004{bottom:283.193963pt;}
.yb1_c01004{bottom:284.138112pt;}
.yb2_c01004{bottom:284.825387pt;}
.yb3_c01004{bottom:285.363157pt;}
.yb4_c01004{bottom:286.191872pt;}
.ya6_c01004{bottom:302.620000pt;}
.ya7_c01004{bottom:303.000480pt;}
.ya8_c01004{bottom:304.041120pt;}
.ya9_c01004{bottom:305.308640pt;}
.yaa_c01004{bottom:305.696117pt;}
.yab_c01004{bottom:306.146016pt;}
.yac_c01004{bottom:306.770805pt;}
.y9f_c01004{bottom:323.042667pt;}
.ya0_c01004{bottom:323.972271pt;}
.ya1_c01004{bottom:324.165693pt;}
.ya2_c01004{bottom:324.785915pt;}
.ya3_c01004{bottom:325.142496pt;}
.ya4_c01004{bottom:325.900639pt;}
.ya5_c01004{bottom:327.359655pt;}
.y94_c01004{bottom:343.442667pt;}
.y95_c01004{bottom:343.776832pt;}
.y96_c01004{bottom:344.068821pt;}
.y97_c01004{bottom:344.702336pt;}
.y98_c01004{bottom:345.020096pt;}
.y99_c01004{bottom:345.608576pt;}
.y9a_c01004{bottom:346.315179pt;}
.y9b_c01004{bottom:346.638123pt;}
.y9c_c01004{bottom:347.455637pt;}
.y9d_c01004{bottom:347.710827pt;}
.y9e_c01004{bottom:348.617195pt;}
.y8b_c01004{bottom:363.602667pt;}
.y8c_c01004{bottom:364.001847pt;}
.y8d_c01004{bottom:364.487567pt;}
.y8e_c01004{bottom:365.196967pt;}
.y8f_c01004{bottom:365.524647pt;}
.y90_c01004{bottom:366.133627pt;}
.y91_c01004{bottom:366.906107pt;}
.y92_c01004{bottom:367.208047pt;}
.y93_c01004{bottom:368.083587pt;}
.y84_c01004{bottom:384.002667pt;}
.y85_c01004{bottom:384.597915pt;}
.y86_c01004{bottom:385.173739pt;}
.y87_c01004{bottom:385.257947pt;}
.y88_c01004{bottom:385.646795pt;}
.y89_c01004{bottom:386.169979pt;}
.y8a_c01004{bottom:386.835115pt;}
.y81_c01004{bottom:403.442667pt;}
.y82_c01004{bottom:404.088489pt;}
.y83_c01004{bottom:405.477011pt;}
.y76_c01004{bottom:424.322667pt;}
.y77_c01004{bottom:424.688963pt;}
.y78_c01004{bottom:425.330704pt;}
.y79_c01004{bottom:425.952099pt;}
.y7a_c01004{bottom:426.170704pt;}
.y7b_c01004{bottom:426.711664pt;}
.y7c_c01004{bottom:426.977179pt;}
.y7d_c01004{bottom:427.239464pt;}
.y7e_c01004{bottom:427.662133pt;}
.y7f_c01004{bottom:428.169493pt;}
.y80_c01004{bottom:428.509768pt;}
.y75_c01004{bottom:444.486453pt;}
.y6d_c01004{bottom:463.922667pt;}
.y6e_c01004{bottom:464.222144pt;}
.y6f_c01004{bottom:464.533269pt;}
.y70_c01004{bottom:465.074453pt;}
.y71_c01004{bottom:465.712000pt;}
.y72_c01004{bottom:466.418837pt;}
.y73_c01004{bottom:467.075648pt;}
.y74_c01004{bottom:467.859157pt;}
.y67_c01004{bottom:484.555341pt;}
.y68_c01004{bottom:484.936191pt;}
.y69_c01004{bottom:485.719789pt;}
.y6a_c01004{bottom:486.709771pt;}
.y6b_c01004{bottom:487.287215pt;}
.y6c_c01004{bottom:488.216296pt;}
.y5e_c01004{bottom:504.717091pt;}
.y5f_c01004{bottom:505.182644pt;}
.y60_c01004{bottom:506.071407pt;}
.y61_c01004{bottom:506.708151pt;}
.y62_c01004{bottom:507.483909pt;}
.y63_c01004{bottom:507.975397pt;}
.y64_c01004{bottom:508.658817pt;}
.y65_c01004{bottom:509.055864pt;}
.y66_c01004{bottom:509.415820pt;}
.y55_c01004{bottom:525.120760pt;}
.y56_c01004{bottom:525.666199pt;}
.y57_c01004{bottom:526.354396pt;}
.y58_c01004{bottom:527.012884pt;}
.y59_c01004{bottom:527.737520pt;}
.y5a_c01004{bottom:528.155755pt;}
.y5b_c01004{bottom:529.266696pt;}
.y5c_c01004{bottom:529.514955pt;}
.y5d_c01004{bottom:530.079099pt;}
.y4c_c01004{bottom:544.326667pt;}
.y4d_c01004{bottom:545.088491pt;}
.y4f_c01004{bottom:546.141851pt;}
.y4e_c01004{bottom:546.142104pt;}
.y50_c01004{bottom:546.746228pt;}
.y51_c01004{bottom:547.089723pt;}
.y52_c01004{bottom:548.030957pt;}
.y53_c01004{bottom:548.508668pt;}
.y54_c01004{bottom:549.466319pt;}
.y40_c01004{bottom:585.832597pt;}
.y41_c01004{bottom:586.178859pt;}
.y42_c01004{bottom:586.443541pt;}
.y43_c01004{bottom:587.208853pt;}
.y44_c01004{bottom:587.942240pt;}
.y45_c01004{bottom:587.994475pt;}
.y46_c01004{bottom:588.525504pt;}
.y47_c01004{bottom:588.840075pt;}
.y48_c01004{bottom:589.235861pt;}
.y49_c01004{bottom:589.410091pt;}
.y4a_c01004{bottom:589.887883pt;}
.y4b_c01004{bottom:590.416309pt;}
.y38_c01004{bottom:604.795669pt;}
.y39_c01004{bottom:605.387499pt;}
.y3a_c01004{bottom:606.151317pt;}
.y3b_c01004{bottom:606.439659pt;}
.y3c_c01004{bottom:607.176853pt;}
.y3d_c01004{bottom:607.511381pt;}
.y3e_c01004{bottom:608.129365pt;}
.y3f_c01004{bottom:608.763072pt;}
.y30_c01004{bottom:624.719243pt;}
.y31_c01004{bottom:625.159637pt;}
.y32_c01004{bottom:625.484896pt;}
.y33_c01004{bottom:626.184139pt;}
.y34_c01004{bottom:626.600768pt;}
.y35_c01004{bottom:627.332939pt;}
.y36_c01004{bottom:627.876907pt;}
.y37_c01004{bottom:628.616448pt;}
.y26_c01004{bottom:644.881589pt;}
.y27_c01004{bottom:645.420597pt;}
.y28_c01004{bottom:645.963381pt;}
.y29_c01004{bottom:646.639947pt;}
.y2a_c01004{bottom:647.272523pt;}
.y2b_c01004{bottom:648.016405pt;}
.y2c_c01004{bottom:648.701760pt;}
.y2d_c01004{bottom:649.345856pt;}
.y2e_c01004{bottom:649.671872pt;}
.y2f_c01004{bottom:650.802581pt;}
.y1e_c01004{bottom:665.610667pt;}
.y1f_c01004{bottom:665.975360pt;}
.y20_c01004{bottom:666.343531pt;}
.y21_c01004{bottom:666.989483pt;}
.y22_c01004{bottom:668.148160pt;}
.y23_c01004{bottom:668.368235pt;}
.y24_c01004{bottom:669.366763pt;}
.y25_c01004{bottom:669.766805pt;}
.y16_c01004{bottom:685.677067pt;}
.y17_c01004{bottom:686.200523pt;}
.y18_c01004{bottom:686.523541pt;}
.y19_c01004{bottom:686.960459pt;}
.y1a_c01004{bottom:687.285803pt;}
.y1b_c01004{bottom:687.981397pt;}
.y1c_c01004{bottom:688.345376pt;}
.y1d_c01004{bottom:689.256192pt;}
.yb_c01004{bottom:705.599531pt;}
.yc_c01004{bottom:705.793536pt;}
.yd_c01004{bottom:706.017547pt;}
.ye_c01004{bottom:706.571339pt;}
.yf_c01004{bottom:707.356416pt;}
.y10_c01004{bottom:707.705675pt;}
.y11_c01004{bottom:708.407659pt;}
.y12_c01004{bottom:708.952928pt;}
.y13_c01004{bottom:709.636832pt;}
.y14_c01004{bottom:710.128832pt;}
.y15_c01004{bottom:710.709259pt;}
.y2_c01004{bottom:726.000000pt;}
.y3_c01004{bottom:726.135701pt;}
.y4_c01004{bottom:726.540331pt;}
.y5_c01004{bottom:727.368683pt;}
.y6_c01004{bottom:727.683947pt;}
.y7_c01004{bottom:728.594923pt;}
.y8_c01004{bottom:728.893781pt;}
.y9_c01004{bottom:729.304277pt;}
.ya_c01004{bottom:730.448981pt;}
.y1_c01004{bottom:807.122667pt;}
.h19_c01004{height:22.400000pt;}
.h1b_c01004{height:23.333333pt;}
.h1a_c01004{height:24.266667pt;}
.h16_c01004{height:44.800000pt;}
.h1c_c01004{height:45.733333pt;}
.h18_c01004{height:47.600000pt;}
.h1d_c01004{height:47.606878pt;}
.h17_c01004{height:48.533333pt;}
.h7_c01004{height:56.940620pt;}
.h4_c01004{height:59.740979pt;}
.h10_c01004{height:60.671793pt;}
.hf_c01004{height:60.672612pt;}
.h5_c01004{height:60.674432pt;}
.h6_c01004{height:61.607884pt;}
.hc_c01004{height:61.611118pt;}
.h11_c01004{height:62.537836pt;}
.h14_c01004{height:62.541337pt;}
.hb_c01004{height:62.544620pt;}
.h13_c01004{height:63.472029pt;}
.h12_c01004{height:63.473806pt;}
.h3_c01004{height:63.474790pt;}
.h15_c01004{height:63.476947pt;}
.ha_c01004{height:63.478121pt;}
.hd_c01004{height:64.408243pt;}
.h8_c01004{height:65.341695pt;}
.h9_c01004{height:68.145630pt;}
.he_c01004{height:79.343487pt;}
.h2_c01004{height:205.343600pt;}
.h1_c01004{height:893.333333pt;}
.h0_c01004{height:893.466667pt;}
.w0_c01004{width:635.733333pt;}
.w1_c01004{width:636.000000pt;}
.x0_c01004{left:0.000000pt;}
.x81_c01004{left:91.440000pt;}
.x85_c01004{left:102.480000pt;}
.x88_c01004{left:105.120000pt;}
.x8a_c01004{left:112.085333pt;}
.x3f_c01004{left:120.333333pt;}
.x8b_c01004{left:123.840000pt;}
.x2_c01004{left:127.718667pt;}
.x65_c01004{left:131.221333pt;}
.x82_c01004{left:134.640000pt;}
.x3_c01004{left:136.200000pt;}
.x2b_c01004{left:137.287136pt;}
.xb_c01004{left:138.185003pt;}
.x47_c01004{left:139.411665pt;}
.x4e_c01004{left:140.588953pt;}
.x76_c01004{left:141.544000pt;}
.x73_c01004{left:142.488000pt;}
.x8e_c01004{left:147.058667pt;}
.x86_c01004{left:150.000000pt;}
.xc_c01004{left:151.143883pt;}
.x57_c01004{left:158.593333pt;}
.x40_c01004{left:160.429333pt;}
.x4_c01004{left:161.489333pt;}
.x37_c01004{left:162.386048pt;}
.x55_c01004{left:163.873057pt;}
.xd_c01004{left:166.061451pt;}
.x4f_c01004{left:167.969992pt;}
.x77_c01004{left:168.920000pt;}
.x23_c01004{left:170.132405pt;}
.x16_c01004{left:175.316811pt;}
.x58_c01004{left:178.038667pt;}
.x2c_c01004{left:179.805771pt;}
.x66_c01004{left:180.825333pt;}
.x38_c01004{left:182.763029pt;}
.x1d_c01004{left:184.234667pt;}
.x64_c01004{left:189.997333pt;}
.x8c_c01004{left:192.000000pt;}
.x87_c01004{left:193.440000pt;}
.x69_c01004{left:194.562667pt;}
.x78_c01004{left:197.472000pt;}
.x17_c01004{left:198.422891pt;}
.x24_c01004{left:202.055893pt;}
.xe_c01004{left:203.007381pt;}
.x8f_c01004{left:205.174667pt;}
.x48_c01004{left:207.990316pt;}
.x1_c01004{left:210.281333pt;}
.x59_c01004{left:211.862667pt;}
.x5_c01004{left:213.261333pt;}
.x41_c01004{left:215.882667pt;}
.x7c_c01004{left:217.421333pt;}
.x2d_c01004{left:218.673867pt;}
.x50_c01004{left:220.222635pt;}
.x31_c01004{left:222.193877pt;}
.x1e_c01004{left:224.606667pt;}
.x90_c01004{left:228.406667pt;}
.x18_c01004{left:229.647893pt;}
.x8d_c01004{left:230.880000pt;}
.x83_c01004{left:231.840000pt;}
.x6_c01004{left:232.965333pt;}
.x67_c01004{left:235.828000pt;}
.x32_c01004{left:240.215211pt;}
.x25_c01004{left:241.840587pt;}
.x49_c01004{left:244.543000pt;}
.x84_c01004{left:246.720000pt;}
.x42_c01004{left:247.678667pt;}
.x5a_c01004{left:251.709333pt;}
.x19_c01004{left:252.899307pt;}
.xf_c01004{left:255.325547pt;}
.x5e_c01004{left:256.462667pt;}
.x51_c01004{left:257.666720pt;}
.x5d_c01004{left:258.870688pt;}
.x7d_c01004{left:261.818667pt;}
.x6a_c01004{left:263.701333pt;}
.x43_c01004{left:265.757333pt;}
.x68_c01004{left:268.232000pt;}
.x5f_c01004{left:272.077333pt;}
.x56_c01004{left:274.699365pt;}
.x6f_c01004{left:276.665333pt;}
.x10_c01004{left:278.571243pt;}
.x2e_c01004{left:282.471819pt;}
.x4a_c01004{left:284.787760pt;}
.x33_c01004{left:286.289877pt;}
.x7_c01004{left:289.901333pt;}
.x91_c01004{left:294.905333pt;}
.x5b_c01004{left:295.886667pt;}
.x1f_c01004{left:297.024000pt;}
.x39_c01004{left:298.020555pt;}
.x89_c01004{left:299.040000pt;}
.x1a_c01004{left:302.542219pt;}
.x6b_c01004{left:304.300000pt;}
.x34_c01004{left:307.197877pt;}
.x8_c01004{left:308.580000pt;}
.x20_c01004{left:310.778667pt;}
.x2f_c01004{left:312.718859pt;}
.x7e_c01004{left:313.680000pt;}
.x44_c01004{left:315.296000pt;}
.x79_c01004{left:317.964000pt;}
.x70_c01004{left:320.828000pt;}
.x92_c01004{left:321.884000pt;}
.x26_c01004{left:322.784619pt;}
.x11_c01004{left:325.362656pt;}
.x1b_c01004{left:328.541717pt;}
.x60_c01004{left:329.682667pt;}
.x52_c01004{left:332.156199pt;}
.x9_c01004{left:334.236000pt;}
.x5c_c01004{left:336.937333pt;}
.x45_c01004{left:340.438667pt;}
.x3a_c01004{left:342.893376pt;}
.x7f_c01004{left:344.870667pt;}
.x35_c01004{left:345.821877pt;}
.x61_c01004{left:348.417333pt;}
.x7a_c01004{left:351.574667pt;}
.x30_c01004{left:353.772203pt;}
.x6c_c01004{left:355.798667pt;}
.x12_c01004{left:361.692565pt;}
.x27_c01004{left:363.118645pt;}
.x3b_c01004{left:367.138549pt;}
.x4b_c01004{left:369.693356pt;}
.x21_c01004{left:373.186667pt;}
.x6d_c01004{left:375.928000pt;}
.x80_c01004{left:377.514667pt;}
.x62_c01004{left:378.608000pt;}
.x4c_c01004{left:383.461609pt;}
.x36_c01004{left:385.428544pt;}
.x46_c01004{left:390.841333pt;}
.x71_c01004{left:392.106667pt;}
.x1c_c01004{left:393.553120pt;}
.x53_c01004{left:395.691939pt;}
.x22_c01004{left:398.189333pt;}
.x75_c01004{left:400.006667pt;}
.x28_c01004{left:401.040715pt;}
.x7b_c01004{left:403.369333pt;}
.xa_c01004{left:405.780000pt;}
.x13_c01004{left:407.270624pt;}
.x3c_c01004{left:411.016661pt;}
.x4d_c01004{left:414.838217pt;}
.x54_c01004{left:416.883416pt;}
.x29_c01004{left:420.249749pt;}
.x93_c01004{left:422.901333pt;}
.x6e_c01004{left:434.297333pt;}
.x63_c01004{left:439.153333pt;}
.x14_c01004{left:440.104491pt;}
.x3d_c01004{left:447.797099pt;}
.x94_c01004{left:457.346667pt;}
.x72_c01004{left:464.704000pt;}
.x95_c01004{left:468.624000pt;}
.x74_c01004{left:474.564000pt;}
.x96_c01004{left:476.308000pt;}
.x15_c01004{left:478.798443pt;}
.x2a_c01004{left:486.751349pt;}
.x3e_c01004{left:488.492395pt;}
.x97_c01004{left:500.797333pt;}
.x98_c01004{left:521.006667pt;}
.x99_c01004{left:522.593333pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m104_c01005{transform:matrix(0.019312,0.000367,-0.004749,0.249955,0,0);-ms-transform:matrix(0.019312,0.000367,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.019312,0.000367,-0.004749,0.249955,0,0);}
.m103_c01005{transform:matrix(0.022726,0.000432,-0.004749,0.249955,0,0);-ms-transform:matrix(0.022726,0.000432,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.022726,0.000432,-0.004749,0.249955,0,0);}
.mc3_c01005{transform:matrix(0.028839,0.000807,-0.006997,0.249902,0,0);-ms-transform:matrix(0.028839,0.000807,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.028839,0.000807,-0.006997,0.249902,0,0);}
.mca_c01005{transform:matrix(0.045752,0.001281,-0.006997,0.249902,0,0);-ms-transform:matrix(0.045752,0.001281,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.045752,0.001281,-0.006997,0.249902,0,0);}
.m11f_c01005{transform:matrix(0.057945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057945,0.000000,0.000000,0.250000,0,0);}
.mcb_c01005{transform:matrix(0.065164,0.001825,-0.006997,0.249902,0,0);-ms-transform:matrix(0.065164,0.001825,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.065164,0.001825,-0.006997,0.249902,0,0);}
.mf6_c01005{transform:matrix(0.096757,0.002709,-0.006997,0.249902,0,0);-ms-transform:matrix(0.096757,0.002709,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.096757,0.002709,-0.006997,0.249902,0,0);}
.me0_c01005{transform:matrix(0.128964,0.003611,-0.006997,0.249902,0,0);-ms-transform:matrix(0.128964,0.003611,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.128964,0.003611,-0.006997,0.249902,0,0);}
.m20_c01005{transform:matrix(0.136503,0.002730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.136503,0.002730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.136503,0.002730,-0.004999,0.249950,0,0);}
.m12_c01005{transform:matrix(0.139587,0.002792,-0.004999,0.249950,0,0);-ms-transform:matrix(0.139587,0.002792,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.139587,0.002792,-0.004999,0.249950,0,0);}
.mfd_c01005{transform:matrix(0.140465,0.002669,-0.004749,0.249955,0,0);-ms-transform:matrix(0.140465,0.002669,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.140465,0.002669,-0.004749,0.249955,0,0);}
.m87_c01005{transform:matrix(0.144813,0.001883,-0.003250,0.249979,0,0);-ms-transform:matrix(0.144813,0.001883,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.144813,0.001883,-0.003250,0.249979,0,0);}
.m72_c01005{transform:matrix(0.145513,0.001892,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145513,0.001892,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145513,0.001892,-0.003250,0.249979,0,0);}
.m66_c01005{transform:matrix(0.146553,0.001905,-0.003250,0.249979,0,0);-ms-transform:matrix(0.146553,0.001905,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.146553,0.001905,-0.003250,0.249979,0,0);}
.ma4_c01005{transform:matrix(0.147436,0.002064,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147436,0.002064,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147436,0.002064,-0.003500,0.249976,0,0);}
.m4b_c01005{transform:matrix(0.147651,0.001624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147651,0.001624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147651,0.001624,-0.002750,0.249985,0,0);}
.m2f_c01005{transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149720,0.002994,-0.004999,0.249950,0,0);}
.m55_c01005{transform:matrix(0.150116,0.001651,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150116,0.001651,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150116,0.001651,-0.002750,0.249985,0,0);}
.m4d_c01005{transform:matrix(0.150236,0.001653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150236,0.001653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150236,0.001653,-0.002750,0.249985,0,0);}
.m5f_c01005{transform:matrix(0.151036,0.001661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151036,0.001661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151036,0.001661,-0.002750,0.249985,0,0);}
.m45_c01005{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m34_c01005{transform:matrix(0.154204,0.003084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154204,0.003084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154204,0.003084,-0.004999,0.249950,0,0);}
.mb_c01005{transform:matrix(0.154738,0.002321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154738,0.002321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154738,0.002321,-0.003750,0.249972,0,0);}
.m42_c01005{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);}
.m4e_c01005{transform:matrix(0.156811,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156811,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156811,0.001725,-0.002750,0.249985,0,0);}
.m80_c01005{transform:matrix(0.157387,0.002046,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157387,0.002046,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157387,0.002046,-0.003250,0.249979,0,0);}
.m37_c01005{transform:matrix(0.158263,0.003165,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158263,0.003165,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158263,0.003165,-0.004999,0.249950,0,0);}
.m52_c01005{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);}
.m2b_c01005{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);}
.m19_c01005{transform:matrix(0.160808,0.003216,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160808,0.003216,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160808,0.003216,-0.004999,0.249950,0,0);}
.m60_c01005{transform:matrix(0.162035,0.001782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162035,0.001782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162035,0.001782,-0.002750,0.249985,0,0);}
.m9f_c01005{transform:matrix(0.162369,0.002273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162369,0.002273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162369,0.002273,-0.003500,0.249976,0,0);}
.m7_c01005{transform:matrix(0.163172,0.002448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163172,0.002448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163172,0.002448,-0.003750,0.249972,0,0);}
.m97_c01005{transform:matrix(0.163944,0.002295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163944,0.002295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163944,0.002295,-0.003500,0.249976,0,0);}
.m8b_c01005{transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163951,0.002131,-0.003250,0.249979,0,0);}
.m91_c01005{transform:matrix(0.164019,0.002296,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164019,0.002296,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164019,0.002296,-0.003500,0.249976,0,0);}
.m9b_c01005{transform:matrix(0.166024,0.002324,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166024,0.002324,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166024,0.002324,-0.003500,0.249976,0,0);}
.m1f_c01005{transform:matrix(0.166307,0.003326,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166307,0.003326,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166307,0.003326,-0.004999,0.249950,0,0);}
.m90_c01005{transform:matrix(0.166399,0.002330,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166399,0.002330,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166399,0.002330,-0.003500,0.249976,0,0);}
.m119_c01005{transform:matrix(0.166837,0.004004,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166837,0.004004,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166837,0.004004,-0.005998,0.249928,0,0);}
.mb8_c01005{transform:matrix(0.166869,0.002336,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166869,0.002336,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166869,0.002336,-0.003500,0.249976,0,0);}
.m4c_c01005{transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167245,0.001840,-0.002750,0.249985,0,0);}
.m85_c01005{transform:matrix(0.167291,0.002175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167291,0.002175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167291,0.002175,-0.003250,0.249979,0,0);}
.me_c01005{transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167611,0.002514,-0.003750,0.249972,0,0);}
.mf_c01005{transform:matrix(0.168836,0.002533,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168836,0.002533,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168836,0.002533,-0.003750,0.249972,0,0);}
.mc_c01005{transform:matrix(0.170026,0.002550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170026,0.002550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170026,0.002550,-0.003750,0.249972,0,0);}
.mae_c01005{transform:matrix(0.171643,0.002403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171643,0.002403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171643,0.002403,-0.003500,0.249976,0,0);}
.m15_c01005{transform:matrix(0.173110,0.003462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173110,0.003462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173110,0.003462,-0.004999,0.249950,0,0);}
.m1b_c01005{transform:matrix(0.174605,0.003492,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174605,0.003492,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174605,0.003492,-0.004999,0.249950,0,0);}
.m67_c01005{transform:matrix(0.175565,0.002282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175565,0.002282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175565,0.002282,-0.003250,0.249979,0,0);}
.m6a_c01005{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);}
.m43_c01005{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);}
.m89_c01005{transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177155,0.002303,-0.003250,0.249979,0,0);}
.ma1_c01005{transform:matrix(0.177168,0.002480,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177168,0.002480,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177168,0.002480,-0.003500,0.249976,0,0);}
.med_c01005{transform:matrix(0.177445,0.004968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177445,0.004968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177445,0.004968,-0.006997,0.249902,0,0);}
.m51_c01005{transform:matrix(0.177734,0.001955,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177734,0.001955,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177734,0.001955,-0.002750,0.249985,0,0);}
.m10b_c01005{transform:matrix(0.178117,0.002850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178117,0.002850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178117,0.002850,-0.003999,0.249968,0,0);}
.m5a_c01005{transform:matrix(0.178824,0.001967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178824,0.001967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178824,0.001967,-0.002750,0.249985,0,0);}
.m113_c01005{transform:matrix(0.178928,0.004294,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178928,0.004294,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178928,0.004294,-0.005998,0.249928,0,0);}
.m1d_c01005{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);}
.m6f_c01005{transform:matrix(0.179035,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179035,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179035,0.002327,-0.003250,0.249979,0,0);}
.m96_c01005{transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179477,0.002513,-0.003500,0.249976,0,0);}
.mea_c01005{transform:matrix(0.180099,0.005043,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180099,0.005043,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180099,0.005043,-0.006997,0.249902,0,0);}
.m35_c01005{transform:matrix(0.180549,0.003611,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180549,0.003611,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180549,0.003611,-0.004999,0.249950,0,0);}
.mc7_c01005{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);}
.m74_c01005{transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181065,0.002354,-0.003250,0.249979,0,0);}
.m8e_c01005{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);}
.m2d_c01005{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);}
.m68_c01005{transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181830,0.002364,-0.003250,0.249979,0,0);}
.m3b_c01005{transform:matrix(0.181939,0.003639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181939,0.003639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181939,0.003639,-0.004999,0.249950,0,0);}
.meb_c01005{transform:matrix(0.182099,0.005099,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182099,0.005099,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182099,0.005099,-0.006997,0.249902,0,0);}
.m107_c01005{transform:matrix(0.182212,0.002915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182212,0.002915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182212,0.002915,-0.003999,0.249968,0,0);}
.m47_c01005{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);}
.m8c_c01005{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);}
.mab_c01005{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);}
.m13_c01005{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);}
.m7d_c01005{transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);}
.m5_c01005{transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184969,0.002775,-0.003750,0.249972,0,0);}
.m5e_c01005{transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185074,0.002036,-0.002750,0.249985,0,0);}
.m100_c01005{transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);}
.m56_c01005{transform:matrix(0.185689,0.002043,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185689,0.002043,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185689,0.002043,-0.002750,0.249985,0,0);}
.m63_c01005{transform:matrix(0.186009,0.002418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186009,0.002418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186009,0.002418,-0.003250,0.249979,0,0);}
.me3_c01005{transform:matrix(0.186437,0.005220,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186437,0.005220,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186437,0.005220,-0.006997,0.249902,0,0);}
.m73_c01005{transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);}
.m3f_c01005{transform:matrix(0.186618,0.003732,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186618,0.003732,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186618,0.003732,-0.004999,0.249950,0,0);}
.mb0_c01005{transform:matrix(0.186662,0.002613,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186662,0.002613,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186662,0.002613,-0.003500,0.249976,0,0);}
.md1_c01005{transform:matrix(0.186847,0.005232,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186847,0.005232,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186847,0.005232,-0.006997,0.249902,0,0);}
.m7e_c01005{transform:matrix(0.186849,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186849,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186849,0.002429,-0.003250,0.249979,0,0);}
.m9c_c01005{transform:matrix(0.187097,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187097,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187097,0.002619,-0.003500,0.249976,0,0);}
.maa_c01005{transform:matrix(0.187392,0.002623,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187392,0.002623,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187392,0.002623,-0.003500,0.249976,0,0);}
.m26_c01005{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);}
.mad_c01005{transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);}
.maf_c01005{transform:matrix(0.189821,0.002657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189821,0.002657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189821,0.002657,-0.003500,0.249976,0,0);}
.m98_c01005{transform:matrix(0.190146,0.002662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190146,0.002662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190146,0.002662,-0.003500,0.249976,0,0);}
.m1e_c01005{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);}
.mba_c01005{transform:matrix(0.190290,0.005328,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190290,0.005328,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190290,0.005328,-0.006997,0.249902,0,0);}
.mb3_c01005{transform:matrix(0.190401,0.002666,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190401,0.002666,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190401,0.002666,-0.003500,0.249976,0,0);}
.m62_c01005{transform:matrix(0.190534,0.002477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190534,0.002477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190534,0.002477,-0.003250,0.249979,0,0);}
.m6_c01005{transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190599,0.002859,-0.003750,0.249972,0,0);}
.m44_c01005{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);}
.m29_c01005{transform:matrix(0.191452,0.003829,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191452,0.003829,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191452,0.003829,-0.004999,0.249950,0,0);}
.m14_c01005{transform:matrix(0.191647,0.003833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191647,0.003833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191647,0.003833,-0.004999,0.249950,0,0);}
.m65_c01005{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);}
.m2e_c01005{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);}
.m10d_c01005{transform:matrix(0.193075,0.003089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193075,0.003089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193075,0.003089,-0.003999,0.249968,0,0);}
.m6d_c01005{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);}
.m1c_c01005{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);}
.m30_c01005{transform:matrix(0.194051,0.003881,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194051,0.003881,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194051,0.003881,-0.004999,0.249950,0,0);}
.m88_c01005{transform:matrix(0.194329,0.002526,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194329,0.002526,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194329,0.002526,-0.003250,0.249979,0,0);}
.m8_c01005{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);}
.ma6_c01005{transform:matrix(0.195131,0.002732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195131,0.002732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195131,0.002732,-0.003500,0.249976,0,0);}
.m53_c01005{transform:matrix(0.195133,0.002146,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195133,0.002146,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195133,0.002146,-0.002750,0.249985,0,0);}
.m4_c01005{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);}
.m70_c01005{transform:matrix(0.195229,0.002538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195229,0.002538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195229,0.002538,-0.003250,0.249979,0,0);}
.m9_c01005{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);}
.m81_c01005{transform:matrix(0.195613,0.002543,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195613,0.002543,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195613,0.002543,-0.003250,0.249979,0,0);}
.m2c_c01005{transform:matrix(0.196091,0.003922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196091,0.003922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196091,0.003922,-0.004999,0.249950,0,0);}
.ma_c01005{transform:matrix(0.196138,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196138,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196138,0.002942,-0.003750,0.249972,0,0);}
.m54_c01005{transform:matrix(0.196228,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196228,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196228,0.002159,-0.002750,0.249985,0,0);}
.m10c_c01005{transform:matrix(0.196610,0.003146,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196610,0.003146,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196610,0.003146,-0.003999,0.249968,0,0);}
.mee_c01005{transform:matrix(0.196963,0.005515,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196963,0.005515,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196963,0.005515,-0.006997,0.249902,0,0);}
.m17_c01005{transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);}
.mf0_c01005{transform:matrix(0.197658,0.005534,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197658,0.005534,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197658,0.005534,-0.006997,0.249902,0,0);}
.m9e_c01005{transform:matrix(0.198251,0.002776,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198251,0.002776,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198251,0.002776,-0.003500,0.249976,0,0);}
.m22_c01005{transform:matrix(0.198305,0.003966,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198305,0.003966,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198305,0.003966,-0.004999,0.249950,0,0);}
.m94_c01005{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);}
.mb9_c01005{transform:matrix(0.198741,0.002782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198741,0.002782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198741,0.002782,-0.003500,0.249976,0,0);}
.m46_c01005{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);}
.m114_c01005{transform:matrix(0.199528,0.004789,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199528,0.004789,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199528,0.004789,-0.005998,0.249928,0,0);}
.m71_c01005{transform:matrix(0.199543,0.002594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199543,0.002594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199543,0.002594,-0.003250,0.249979,0,0);}
.mb4_c01005{transform:matrix(0.199555,0.002794,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199555,0.002794,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199555,0.002794,-0.003500,0.249976,0,0);}
.m86_c01005{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);}
.m106_c01005{transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199799,0.003197,-0.003999,0.249968,0,0);}
.m9d_c01005{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);}
.m58_c01005{transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200188,0.002202,-0.002750,0.249985,0,0);}
.m28_c01005{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);}
.m6e_c01005{transform:matrix(0.200923,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200923,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200923,0.002612,-0.003250,0.249979,0,0);}
.m69_c01005{transform:matrix(0.201083,0.002614,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201083,0.002614,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201083,0.002614,-0.003250,0.249979,0,0);}
.mac_c01005{transform:matrix(0.201415,0.002820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201415,0.002820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201415,0.002820,-0.003500,0.249976,0,0);}
.m49_c01005{transform:matrix(0.201863,0.002220,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201863,0.002220,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201863,0.002220,-0.002750,0.249985,0,0);}
.ma2_c01005{transform:matrix(0.203145,0.002844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203145,0.002844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203145,0.002844,-0.003500,0.249976,0,0);}
.m8d_c01005{transform:matrix(0.203643,0.002647,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203643,0.002647,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203643,0.002647,-0.003250,0.249979,0,0);}
.mec_c01005{transform:matrix(0.203655,0.005702,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203655,0.005702,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203655,0.005702,-0.006997,0.249902,0,0);}
.m3_c01005{transform:matrix(0.203702,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203702,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203702,0.003056,-0.003750,0.249972,0,0);}
.m4a_c01005{transform:matrix(0.203928,0.002243,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203928,0.002243,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203928,0.002243,-0.002750,0.249985,0,0);}
.m108_c01005{transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);}
.m3a_c01005{transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204084,0.004082,-0.004999,0.249950,0,0);}
.m5d_c01005{transform:matrix(0.204303,0.002247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204303,0.002247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204303,0.002247,-0.002750,0.249985,0,0);}
.m25_c01005{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);}
.m1_c01005{transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);}
.m115_c01005{transform:matrix(0.204956,0.004919,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204956,0.004919,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204956,0.004919,-0.005998,0.249928,0,0);}
.m92_c01005{transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);}
.m84_c01005{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);}
.m64_c01005{transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);}
.mc9_c01005{transform:matrix(0.205340,0.005750,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205340,0.005750,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205340,0.005750,-0.006997,0.249902,0,0);}
.m9a_c01005{transform:matrix(0.205425,0.002876,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205425,0.002876,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205425,0.002876,-0.003500,0.249976,0,0);}
.m95_c01005{transform:matrix(0.205545,0.002878,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205545,0.002878,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205545,0.002878,-0.003500,0.249976,0,0);}
.md9_c01005{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);}
.ma7_c01005{transform:matrix(0.207145,0.002900,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207145,0.002900,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207145,0.002900,-0.003500,0.249976,0,0);}
.mda_c01005{transform:matrix(0.207294,0.005804,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207294,0.005804,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207294,0.005804,-0.006997,0.249902,0,0);}
.m8f_c01005{transform:matrix(0.207530,0.002905,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207530,0.002905,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207530,0.002905,-0.003500,0.249976,0,0);}
.m36_c01005{transform:matrix(0.207603,0.004152,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207603,0.004152,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207603,0.004152,-0.004999,0.249950,0,0);}
.ma3_c01005{transform:matrix(0.207730,0.002908,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207730,0.002908,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207730,0.002908,-0.003500,0.249976,0,0);}
.m24_c01005{transform:matrix(0.207798,0.004156,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207798,0.004156,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207798,0.004156,-0.004999,0.249950,0,0);}
.mc4_c01005{transform:matrix(0.207824,0.005819,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207824,0.005819,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207824,0.005819,-0.006997,0.249902,0,0);}
.md7_c01005{transform:matrix(0.208078,0.005826,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208078,0.005826,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208078,0.005826,-0.006997,0.249902,0,0);}
.m4f_c01005{transform:matrix(0.208577,0.002294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208577,0.002294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208577,0.002294,-0.002750,0.249985,0,0);}
.md8_c01005{transform:matrix(0.209123,0.005855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209123,0.005855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209123,0.005855,-0.006997,0.249902,0,0);}
.mc0_c01005{transform:matrix(0.209153,0.005856,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209153,0.005856,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209153,0.005856,-0.006997,0.249902,0,0);}
.md2_c01005{transform:matrix(0.209213,0.005858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209213,0.005858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209213,0.005858,-0.006997,0.249902,0,0);}
.m59_c01005{transform:matrix(0.209517,0.002305,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209517,0.002305,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209517,0.002305,-0.002750,0.249985,0,0);}
.ma5_c01005{transform:matrix(0.209649,0.002935,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209649,0.002935,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209649,0.002935,-0.003500,0.249976,0,0);}
.me5_c01005{transform:matrix(0.210038,0.005881,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210038,0.005881,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210038,0.005881,-0.006997,0.249902,0,0);}
.md3_c01005{transform:matrix(0.210912,0.005906,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210912,0.005906,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210912,0.005906,-0.006997,0.249902,0,0);}
.mc8_c01005{transform:matrix(0.212257,0.005943,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212257,0.005943,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212257,0.005943,-0.006997,0.249902,0,0);}
.m48_c01005{transform:matrix(0.213132,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213132,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213132,0.002344,-0.002750,0.249985,0,0);}
.m41_c01005{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);}
.mb1_c01005{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);}
.mff_c01005{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);}
.m118_c01005{transform:matrix(0.213848,0.005132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213848,0.005132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213848,0.005132,-0.005998,0.249928,0,0);}
.m50_c01005{transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);}
.mbd_c01005{transform:matrix(0.214586,0.006008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214586,0.006008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214586,0.006008,-0.006997,0.249902,0,0);}
.mc6_c01005{transform:matrix(0.214631,0.006010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214631,0.006010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214631,0.006010,-0.006997,0.249902,0,0);}
.mbb_c01005{transform:matrix(0.214641,0.006010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214641,0.006010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214641,0.006010,-0.006997,0.249902,0,0);}
.m5c_c01005{transform:matrix(0.214682,0.002362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214682,0.002362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214682,0.002362,-0.002750,0.249985,0,0);}
.mcf_c01005{transform:matrix(0.215321,0.006029,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215321,0.006029,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215321,0.006029,-0.006997,0.249902,0,0);}
.m83_c01005{transform:matrix(0.215357,0.002800,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215357,0.002800,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215357,0.002800,-0.003250,0.249979,0,0);}
.mf4_c01005{transform:matrix(0.215855,0.006044,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215855,0.006044,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215855,0.006044,-0.006997,0.249902,0,0);}
.m3c_c01005{transform:matrix(0.215952,0.004319,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215952,0.004319,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215952,0.004319,-0.004999,0.249950,0,0);}
.m112_c01005{transform:matrix(0.216538,0.005197,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216538,0.005197,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216538,0.005197,-0.005998,0.249928,0,0);}
.m93_c01005{transform:matrix(0.216584,0.003032,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216584,0.003032,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216584,0.003032,-0.003500,0.249976,0,0);}
.m3e_c01005{transform:matrix(0.217187,0.004344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217187,0.004344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217187,0.004344,-0.004999,0.249950,0,0);}
.m76_c01005{transform:matrix(0.217202,0.002824,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217202,0.002824,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217202,0.002824,-0.003250,0.249979,0,0);}
.m10_c01005{transform:matrix(0.217211,0.003258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217211,0.003258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217211,0.003258,-0.003750,0.249972,0,0);}
.m6c_c01005{transform:matrix(0.217332,0.002825,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217332,0.002825,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217332,0.002825,-0.003250,0.249979,0,0);}
.m61_c01005{transform:matrix(0.217462,0.002827,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217462,0.002827,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217462,0.002827,-0.003250,0.249979,0,0);}
.m77_c01005{transform:matrix(0.218002,0.002834,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218002,0.002834,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218002,0.002834,-0.003250,0.249979,0,0);}
.m99_c01005{transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);}
.m11d_c01005{transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);}
.m27_c01005{transform:matrix(0.218451,0.004369,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218451,0.004369,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218451,0.004369,-0.004999,0.249950,0,0);}
.m31_c01005{transform:matrix(0.219066,0.004381,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219066,0.004381,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219066,0.004381,-0.004999,0.249950,0,0);}
.m38_c01005{transform:matrix(0.219281,0.004386,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219281,0.004386,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219281,0.004386,-0.004999,0.249950,0,0);}
.m57_c01005{transform:matrix(0.220752,0.002428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220752,0.002428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220752,0.002428,-0.002750,0.249985,0,0);}
.m7f_c01005{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);}
.m111_c01005{transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);}
.mfb_c01005{transform:matrix(0.222230,0.004222,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222230,0.004222,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222230,0.004222,-0.004749,0.249955,0,0);}
.m8a_c01005{transform:matrix(0.222406,0.002891,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222406,0.002891,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222406,0.002891,-0.003250,0.249979,0,0);}
.m33_c01005{transform:matrix(0.222845,0.004457,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222845,0.004457,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222845,0.004457,-0.004999,0.249950,0,0);}
.m5b_c01005{transform:matrix(0.222992,0.002453,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222992,0.002453,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222992,0.002453,-0.002750,0.249985,0,0);}
.m16_c01005{transform:matrix(0.223060,0.004461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223060,0.004461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223060,0.004461,-0.004999,0.249950,0,0);}
.m120_c01005{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);}
.m1a_c01005{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);}
.md0_c01005{transform:matrix(0.223632,0.006262,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223632,0.006262,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223632,0.006262,-0.006997,0.249902,0,0);}
.m23_c01005{transform:matrix(0.223720,0.004474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223720,0.004474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223720,0.004474,-0.004999,0.249950,0,0);}
.mb2_c01005{transform:matrix(0.224188,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224188,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224188,0.003139,-0.003500,0.249976,0,0);}
.md_c01005{transform:matrix(0.224640,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224640,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224640,0.003370,-0.003750,0.249972,0,0);}
.mde_c01005{transform:matrix(0.225057,0.006302,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225057,0.006302,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225057,0.006302,-0.006997,0.249902,0,0);}
.md4_c01005{transform:matrix(0.227676,0.006375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227676,0.006375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227676,0.006375,-0.006997,0.249902,0,0);}
.m7c_c01005{transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227681,0.002960,-0.003250,0.249979,0,0);}
.mdb_c01005{transform:matrix(0.228480,0.006397,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228480,0.006397,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228480,0.006397,-0.006997,0.249902,0,0);}
.m21_c01005{transform:matrix(0.228854,0.004577,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228854,0.004577,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228854,0.004577,-0.004999,0.249950,0,0);}
.m11a_c01005{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);}
.mdd_c01005{transform:matrix(0.228985,0.006412,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228985,0.006412,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228985,0.006412,-0.006997,0.249902,0,0);}
.m2a_c01005{transform:matrix(0.229534,0.004591,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229534,0.004591,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229534,0.004591,-0.004999,0.249950,0,0);}
.mdf_c01005{transform:matrix(0.229735,0.006433,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229735,0.006433,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229735,0.006433,-0.006997,0.249902,0,0);}
.m11c_c01005{transform:matrix(0.230344,0.005528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230344,0.005528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230344,0.005528,-0.005998,0.249928,0,0);}
.me8_c01005{transform:matrix(0.230395,0.006451,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230395,0.006451,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230395,0.006451,-0.006997,0.249902,0,0);}
.ma8_c01005{transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231657,0.003243,-0.003500,0.249976,0,0);}
.m11_c01005{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);}
.me6_c01005{transform:matrix(0.232739,0.006517,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232739,0.006517,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232739,0.006517,-0.006997,0.249902,0,0);}
.m116_c01005{transform:matrix(0.232898,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232898,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232898,0.005590,-0.005998,0.249928,0,0);}
.mcd_c01005{transform:matrix(0.235218,0.006586,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235218,0.006586,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235218,0.006586,-0.006997,0.249902,0,0);}
.m18_c01005{transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235813,0.004716,-0.004999,0.249950,0,0);}
.m10a_c01005{transform:matrix(0.235855,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235855,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235855,0.003774,-0.003999,0.249968,0,0);}
.me2_c01005{transform:matrix(0.237637,0.006654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237637,0.006654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237637,0.006654,-0.006997,0.249902,0,0);}
.mbc_c01005{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);}
.m82_c01005{transform:matrix(0.240545,0.003127,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240545,0.003127,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240545,0.003127,-0.003250,0.249979,0,0);}
.m109_c01005{transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);}
.mbe_c01005{transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);}
.m2_c01005{transform:matrix(0.242008,0.003630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242008,0.003630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242008,0.003630,-0.003750,0.249972,0,0);}
.m110_c01005{transform:matrix(0.242725,0.005825,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242725,0.005825,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242725,0.005825,-0.005998,0.249928,0,0);}
.m10e_c01005{transform:matrix(0.243375,0.005841,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243375,0.005841,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243375,0.005841,-0.005998,0.249928,0,0);}
.mf1_c01005{transform:matrix(0.243739,0.006825,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243739,0.006825,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243739,0.006825,-0.006997,0.249902,0,0);}
.m3d_c01005{transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);}
.m79_c01005{transform:matrix(0.246544,0.003205,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246544,0.003205,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246544,0.003205,-0.003250,0.249979,0,0);}
.m7a_c01005{transform:matrix(0.247479,0.003217,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247479,0.003217,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247479,0.003217,-0.003250,0.249979,0,0);}
.mb7_c01005{transform:matrix(0.248011,0.003472,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248011,0.003472,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248011,0.003472,-0.003500,0.249976,0,0);}
.mef_c01005{transform:matrix(0.249422,0.006984,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249422,0.006984,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249422,0.006984,-0.006997,0.249902,0,0);}
.mf3_c01005{transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);}
.me4_c01005{transform:matrix(0.254700,0.007132,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254700,0.007132,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254700,0.007132,-0.006997,0.249902,0,0);}
.m105_c01005{transform:matrix(0.255002,0.004080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255002,0.004080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255002,0.004080,-0.003999,0.249968,0,0);}
.mfc_c01005{transform:matrix(0.258748,0.004916,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258748,0.004916,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258748,0.004916,-0.004749,0.249955,0,0);}
.mf9_c01005{transform:matrix(0.259168,0.004924,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259168,0.004924,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259168,0.004924,-0.004749,0.249955,0,0);}
.m0_c01005{transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);}
.m40_c01005{transform:matrix(0.259908,0.005198,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259908,0.005198,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259908,0.005198,-0.004999,0.249950,0,0);}
.m7b_c01005{transform:matrix(0.260808,0.003391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260808,0.003391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260808,0.003391,-0.003250,0.249979,0,0);}
.m78_c01005{transform:matrix(0.262433,0.003412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262433,0.003412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262433,0.003412,-0.003250,0.249979,0,0);}
.m101_c01005{transform:matrix(0.265157,0.005038,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265157,0.005038,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265157,0.005038,-0.004749,0.249955,0,0);}
.m11b_c01005{transform:matrix(0.266288,0.006391,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266288,0.006391,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266288,0.006391,-0.005998,0.249928,0,0);}
.me1_c01005{transform:matrix(0.268875,0.007528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268875,0.007528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268875,0.007528,-0.006997,0.249902,0,0);}
.ma0_c01005{transform:matrix(0.274593,0.003844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274593,0.003844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274593,0.003844,-0.003500,0.249976,0,0);}
.me7_c01005{transform:matrix(0.275172,0.007705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275172,0.007705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275172,0.007705,-0.006997,0.249902,0,0);}
.mf5_c01005{transform:matrix(0.277191,0.007761,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277191,0.007761,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277191,0.007761,-0.006997,0.249902,0,0);}
.mb6_c01005{transform:matrix(0.278208,0.003895,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278208,0.003895,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278208,0.003895,-0.003500,0.249976,0,0);}
.m75_c01005{transform:matrix(0.279141,0.003629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279141,0.003629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279141,0.003629,-0.003250,0.249979,0,0);}
.mc5_c01005{transform:matrix(0.303976,0.008511,-0.006997,0.249902,0,0);-ms-transform:matrix(0.303976,0.008511,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.303976,0.008511,-0.006997,0.249902,0,0);}
.me9_c01005{transform:matrix(0.304341,0.008522,-0.006997,0.249902,0,0);-ms-transform:matrix(0.304341,0.008522,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.304341,0.008522,-0.006997,0.249902,0,0);}
.mf2_c01005{transform:matrix(0.310443,0.008692,-0.006997,0.249902,0,0);-ms-transform:matrix(0.310443,0.008692,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.310443,0.008692,-0.006997,0.249902,0,0);}
.mf8_c01005{transform:matrix(0.312354,0.005935,-0.004749,0.249955,0,0);-ms-transform:matrix(0.312354,0.005935,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.312354,0.005935,-0.004749,0.249955,0,0);}
.mc1_c01005{transform:matrix(0.315886,0.008845,-0.006997,0.249902,0,0);-ms-transform:matrix(0.315886,0.008845,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.315886,0.008845,-0.006997,0.249902,0,0);}
.m32_c01005{transform:matrix(0.320451,0.006409,-0.004999,0.249950,0,0);-ms-transform:matrix(0.320451,0.006409,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.320451,0.006409,-0.004999,0.249950,0,0);}
.ma9_c01005{transform:matrix(0.325133,0.004552,-0.003500,0.249976,0,0);-ms-transform:matrix(0.325133,0.004552,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.325133,0.004552,-0.003500,0.249976,0,0);}
.mf7_c01005{transform:matrix(0.327896,0.006230,-0.004749,0.249955,0,0);-ms-transform:matrix(0.327896,0.006230,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.327896,0.006230,-0.004749,0.249955,0,0);}
.m10f_c01005{transform:matrix(0.333294,0.007999,-0.005998,0.249928,0,0);-ms-transform:matrix(0.333294,0.007999,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.333294,0.007999,-0.005998,0.249928,0,0);}
.md5_c01005{transform:matrix(0.333994,0.009352,-0.006997,0.249902,0,0);-ms-transform:matrix(0.333994,0.009352,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.333994,0.009352,-0.006997,0.249902,0,0);}
.mfa_c01005{transform:matrix(0.336184,0.006388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.336184,0.006388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.336184,0.006388,-0.004749,0.249955,0,0);}
.mdc_c01005{transform:matrix(0.345720,0.009680,-0.006997,0.249902,0,0);-ms-transform:matrix(0.345720,0.009680,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.345720,0.009680,-0.006997,0.249902,0,0);}
.mc2_c01005{transform:matrix(0.352062,0.009858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.352062,0.009858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.352062,0.009858,-0.006997,0.249902,0,0);}
.mb5_c01005{transform:matrix(0.377528,0.005285,-0.003500,0.249976,0,0);-ms-transform:matrix(0.377528,0.005285,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.377528,0.005285,-0.003500,0.249976,0,0);}
.mcc_c01005{transform:matrix(0.393396,0.011015,-0.006997,0.249902,0,0);-ms-transform:matrix(0.393396,0.011015,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.393396,0.011015,-0.006997,0.249902,0,0);}
.mbf_c01005{transform:matrix(0.397299,0.011124,-0.006997,0.249902,0,0);-ms-transform:matrix(0.397299,0.011124,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.397299,0.011124,-0.006997,0.249902,0,0);}
.m117_c01005{transform:matrix(0.399915,0.009598,-0.005998,0.249928,0,0);-ms-transform:matrix(0.399915,0.009598,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.399915,0.009598,-0.005998,0.249928,0,0);}
.md6_c01005{transform:matrix(0.428937,0.012010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.428937,0.012010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.428937,0.012010,-0.006997,0.249902,0,0);}
.mce_c01005{transform:matrix(0.442896,0.012401,-0.006997,0.249902,0,0);-ms-transform:matrix(0.442896,0.012401,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.442896,0.012401,-0.006997,0.249902,0,0);}
.m6b_c01005{transform:matrix(0.448697,0.005833,-0.003250,0.249979,0,0);-ms-transform:matrix(0.448697,0.005833,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.448697,0.005833,-0.003250,0.249979,0,0);}
.m102_c01005{transform:matrix(0.450669,0.008563,-0.004749,0.249955,0,0);-ms-transform:matrix(0.450669,0.008563,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.450669,0.008563,-0.004749,0.249955,0,0);}
.m39_c01005{transform:matrix(0.477025,0.009540,-0.004999,0.249950,0,0);-ms-transform:matrix(0.477025,0.009540,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.477025,0.009540,-0.004999,0.249950,0,0);}
.mfe_c01005{transform:matrix(0.542847,0.010314,-0.004749,0.249955,0,0);-ms-transform:matrix(0.542847,0.010314,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.542847,0.010314,-0.004749,0.249955,0,0);}
.m11e_c01005{transform:matrix(0.599357,0.014385,-0.005998,0.249928,0,0);-ms-transform:matrix(0.599357,0.014385,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.599357,0.014385,-0.005998,0.249928,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls0_c01005{letter-spacing:0.000000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:0.000000px;}
.fc0_c01005{color:transparent;}
.fs1b_c01005{font-size:16.800000px;}
.fs15_c01005{font-size:47.258528px;}
.fs12_c01005{font-size:48.318930px;}
.fs14_c01005{font-size:49.369341px;}
.fs18_c01005{font-size:50.406451px;}
.fs16_c01005{font-size:50.409096px;}
.fs11_c01005{font-size:50.419753px;}
.fs17_c01005{font-size:51.456585px;}
.fs19_c01005{font-size:51.464815px;}
.fs1a_c01005{font-size:52.515118px;}
.fs13_c01005{font-size:53.570987px;}
.fs10_c01005{font-size:64.056277px;}
.fs4_c01005{font-size:66.163229px;}
.fsc_c01005{font-size:69.305856px;}
.fs8_c01005{font-size:70.354256px;}
.fse_c01005{font-size:70.356894px;}
.fs0_c01005{font-size:70.357914px;}
.fs6_c01005{font-size:70.364069px;}
.fs9_c01005{font-size:71.404320px;}
.fsa_c01005{font-size:71.406033px;}
.fsd_c01005{font-size:71.406997px;}
.fs5_c01005{font-size:71.414279px;}
.fs7_c01005{font-size:72.450000px;}
.fsb_c01005{font-size:72.456122px;}
.fsf_c01005{font-size:72.457100px;}
.fs1_c01005{font-size:72.458150px;}
.fs2_c01005{font-size:73.514699px;}
.fs3_c01005{font-size:75.615118px;}
.y0_c01005{bottom:0.000000px;}
.y11d_c01005{bottom:104.356500px;}
.yf4_c01005{bottom:141.240216px;}
.yf3_c01005{bottom:141.730950px;}
.yf2_c01005{bottom:142.095354px;}
.yf1_c01005{bottom:144.217806px;}
.yf0_c01005{bottom:144.487278px;}
.yef_c01005{bottom:146.047860px;}
.yee_c01005{bottom:146.674974px;}
.yed_c01005{bottom:147.127536px;}
.y11c_c01005{bottom:149.747052px;}
.y11b_c01005{bottom:150.399660px;}
.y11a_c01005{bottom:151.044960px;}
.y119_c01005{bottom:152.305008px;}
.y118_c01005{bottom:153.337932px;}
.y117_c01005{bottom:153.910416px;}
.y116_c01005{bottom:154.633284px;}
.y115_c01005{bottom:155.251848px;}
.yec_c01005{bottom:160.132908px;}
.yeb_c01005{bottom:160.881060px;}
.yea_c01005{bottom:161.634672px;}
.ye9_c01005{bottom:162.779394px;}
.ye8_c01005{bottom:163.022982px;}
.ye7_c01005{bottom:163.920504px;}
.ye6_c01005{bottom:165.202896px;}
.y114_c01005{bottom:167.671164px;}
.y113_c01005{bottom:168.158676px;}
.y112_c01005{bottom:168.892716px;}
.y111_c01005{bottom:169.761576px;}
.y110_c01005{bottom:170.631984px;}
.y10f_c01005{bottom:171.104412px;}
.y10e_c01005{bottom:171.947640px;}
.y10d_c01005{bottom:172.640784px;}
.y10c_c01005{bottom:173.338500px;}
.ye5_c01005{bottom:177.863364px;}
.ye4_c01005{bottom:178.201710px;}
.ye3_c01005{bottom:179.132280px;}
.ye2_c01005{bottom:179.472264px;}
.ye1_c01005{bottom:180.280878px;}
.ye0_c01005{bottom:180.851448px;}
.ydf_c01005{bottom:181.124220px;}
.yde_c01005{bottom:181.399680px;}
.ydd_c01005{bottom:182.440362px;}
.ydc_c01005{bottom:183.031464px;}
.y10b_c01005{bottom:192.865644px;}
.y10a_c01005{bottom:192.865752px;}
.ydb_c01005{bottom:194.727804px;}
.yda_c01005{bottom:195.107886px;}
.yd9_c01005{bottom:197.199816px;}
.yd8_c01005{bottom:197.802108px;}
.yd7_c01005{bottom:198.588156px;}
.yd6_c01005{bottom:199.661832px;}
.yd5_c01005{bottom:201.397998px;}
.y109_c01005{bottom:208.769664px;}
.y108_c01005{bottom:208.996560px;}
.y107_c01005{bottom:209.705568px;}
.y106_c01005{bottom:210.170352px;}
.y105_c01005{bottom:210.658872px;}
.y104_c01005{bottom:211.194624px;}
.y103_c01005{bottom:211.722000px;}
.yd4_c01005{bottom:212.522730px;}
.yd3_c01005{bottom:212.928198px;}
.yd2_c01005{bottom:214.376610px;}
.yd1_c01005{bottom:215.079858px;}
.yd0_c01005{bottom:216.257118px;}
.ycf_c01005{bottom:217.188888px;}
.yce_c01005{bottom:218.043672px;}
.ycd_c01005{bottom:219.221940px;}
.ycc_c01005{bottom:231.371442px;}
.ycb_c01005{bottom:232.927614px;}
.yca_c01005{bottom:233.822214px;}
.yc9_c01005{bottom:237.591048px;}
.yc8_c01005{bottom:248.441208px;}
.yc7_c01005{bottom:249.771606px;}
.yc6_c01005{bottom:251.046036px;}
.yc5_c01005{bottom:251.355570px;}
.yc4_c01005{bottom:252.479052px;}
.yc3_c01005{bottom:252.821604px;}
.y102_c01005{bottom:253.023974px;}
.y101_c01005{bottom:253.526874px;}
.yc2_c01005{bottom:253.629492px;}
.yc1_c01005{bottom:253.837206px;}
.yc0_c01005{bottom:254.336190px;}
.y100_c01005{bottom:254.733605px;}
.yff_c01005{bottom:255.362517px;}
.yfe_c01005{bottom:256.226442px;}
.yfd_c01005{bottom:256.769903px;}
.ybf_c01005{bottom:267.037770px;}
.ybe_c01005{bottom:267.862986px;}
.ybd_c01005{bottom:268.497606px;}
.ybc_c01005{bottom:269.230002px;}
.ybb_c01005{bottom:269.663022px;}
.yba_c01005{bottom:270.531708px;}
.yfc_c01005{bottom:271.405158px;}
.yfb_c01005{bottom:271.506675px;}
.yb9_c01005{bottom:271.762224px;}
.yfa_c01005{bottom:272.341497px;}
.yb8_c01005{bottom:272.437500px;}
.yf9_c01005{bottom:272.784216px;}
.yf8_c01005{bottom:273.305367px;}
.yf7_c01005{bottom:273.941288px;}
.yf6_c01005{bottom:274.357046px;}
.yf5_c01005{bottom:275.025000px;}
.yb7_c01005{bottom:322.549335px;}
.yb6_c01005{bottom:322.940985px;}
.yb5_c01005{bottom:323.743269px;}
.yb4_c01005{bottom:324.184542px;}
.yb3_c01005{bottom:324.578733px;}
.yb2_c01005{bottom:325.300755px;}
.yb1_c01005{bottom:325.851627px;}
.yb0_c01005{bottom:326.430870px;}
.yaf_c01005{bottom:344.744688px;}
.yae_c01005{bottom:345.148308px;}
.yad_c01005{bottom:345.707790px;}
.yac_c01005{bottom:346.230165px;}
.yab_c01005{bottom:346.517739px;}
.yaa_c01005{bottom:347.553669px;}
.ya9_c01005{bottom:348.524079px;}
.ya8_c01005{bottom:349.068399px;}
.ya7_c01005{bottom:349.383000px;}
.ya6_c01005{bottom:368.665593px;}
.ya5_c01005{bottom:369.322221px;}
.ya4_c01005{bottom:370.116321px;}
.ya3_c01005{bottom:370.639017px;}
.ya2_c01005{bottom:371.193873px;}
.ya1_c01005{bottom:371.374155px;}
.ya0_c01005{bottom:371.784009px;}
.y9f_c01005{bottom:372.056706px;}
.y9e_c01005{bottom:391.796790px;}
.y9d_c01005{bottom:392.146929px;}
.y9c_c01005{bottom:392.585727px;}
.y9b_c01005{bottom:393.004740px;}
.y9a_c01005{bottom:393.379440px;}
.y99_c01005{bottom:394.022709px;}
.y98_c01005{bottom:394.351668px;}
.y97_c01005{bottom:394.959045px;}
.y96_c01005{bottom:395.464407px;}
.y95_c01005{bottom:395.819985px;}
.y94_c01005{bottom:414.238950px;}
.y93_c01005{bottom:415.142328px;}
.y92_c01005{bottom:415.546116px;}
.y91_c01005{bottom:416.090541px;}
.y90_c01005{bottom:416.608464px;}
.y8f_c01005{bottom:416.956287px;}
.y8e_c01005{bottom:417.633579px;}
.y8d_c01005{bottom:418.166769px;}
.y8c_c01005{bottom:418.503000px;}
.y8b_c01005{bottom:438.436947px;}
.y8a_c01005{bottom:438.742957px;}
.y89_c01005{bottom:439.401826px;}
.y88_c01005{bottom:439.630545px;}
.y87_c01005{bottom:439.909348px;}
.y86_c01005{bottom:440.523614px;}
.y85_c01005{bottom:440.894259px;}
.y84_c01005{bottom:441.146090px;}
.y83_c01005{bottom:441.443791px;}
.y82_c01005{bottom:459.519537px;}
.y81_c01005{bottom:460.219840px;}
.y80_c01005{bottom:461.118459px;}
.y7f_c01005{bottom:461.419929px;}
.y7e_c01005{bottom:461.840719px;}
.y7d_c01005{bottom:462.518325px;}
.y7c_c01005{bottom:463.043967px;}
.y7b_c01005{bottom:463.820379px;}
.y7a_c01005{bottom:464.125905px;}
.y79_c01005{bottom:483.030337px;}
.y78_c01005{bottom:483.564488px;}
.y77_c01005{bottom:483.836925px;}
.y76_c01005{bottom:484.547056px;}
.y75_c01005{bottom:484.922736px;}
.y74_c01005{bottom:485.198566px;}
.y73_c01005{bottom:485.980035px;}
.y72_c01005{bottom:486.268484px;}
.y71_c01005{bottom:504.159547px;}
.y70_c01005{bottom:504.799225px;}
.y6f_c01005{bottom:505.529383px;}
.y6e_c01005{bottom:505.907703px;}
.y6d_c01005{bottom:506.136691px;}
.y6c_c01005{bottom:507.119725px;}
.y6b_c01005{bottom:507.733020px;}
.y6a_c01005{bottom:508.083981px;}
.y69_c01005{bottom:508.369129px;}
.y68_c01005{bottom:508.681500px;}
.y67_c01005{bottom:529.743312px;}
.y66_c01005{bottom:550.312719px;}
.y65_c01005{bottom:550.941009px;}
.y64_c01005{bottom:551.436016px;}
.y63_c01005{bottom:551.944830px;}
.y62_c01005{bottom:552.239416px;}
.y61_c01005{bottom:552.506605px;}
.y60_c01005{bottom:553.317669px;}
.y5f_c01005{bottom:553.671418px;}
.y5e_c01005{bottom:554.486499px;}
.y5d_c01005{bottom:554.851500px;}
.y5c_c01005{bottom:575.236079px;}
.y5b_c01005{bottom:575.537442px;}
.y5a_c01005{bottom:576.254257px;}
.y59_c01005{bottom:576.445971px;}
.y58_c01005{bottom:577.255954px;}
.y57_c01005{bottom:577.702819px;}
.y56_c01005{bottom:578.033485px;}
.y55_c01005{bottom:578.609997px;}
.y54_c01005{bottom:597.238006px;}
.y53_c01005{bottom:597.629162px;}
.y52_c01005{bottom:597.913056px;}
.y51_c01005{bottom:598.312116px;}
.y50_c01005{bottom:598.463419px;}
.y4f_c01005{bottom:599.102364px;}
.y4e_c01005{bottom:599.350632px;}
.y4d_c01005{bottom:600.203817px;}
.y4c_c01005{bottom:600.479674px;}
.y4b_c01005{bottom:620.532097px;}
.y4a_c01005{bottom:621.132483px;}
.y49_c01005{bottom:621.449860px;}
.y48_c01005{bottom:621.737769px;}
.y47_c01005{bottom:622.213596px;}
.y46_c01005{bottom:622.548661px;}
.y45_c01005{bottom:623.187690px;}
.y44_c01005{bottom:623.701500px;}
.y43_c01005{bottom:644.481000px;}
.y3d_c01005{bottom:667.456860px;}
.y3f_c01005{bottom:667.456920px;}
.y40_c01005{bottom:667.457070px;}
.y3c_c01005{bottom:667.457310px;}
.y3e_c01005{bottom:667.457610px;}
.y41_c01005{bottom:667.457760px;}
.y42_c01005{bottom:667.458270px;}
.y3b_c01005{bottom:689.017710px;}
.y3a_c01005{bottom:689.484540px;}
.y39_c01005{bottom:689.871300px;}
.y38_c01005{bottom:690.118620px;}
.y37_c01005{bottom:690.876150px;}
.y36_c01005{bottom:691.362720px;}
.y35_c01005{bottom:691.719720px;}
.y34_c01005{bottom:691.990680px;}
.y33_c01005{bottom:710.787360px;}
.y32_c01005{bottom:711.558900px;}
.y31_c01005{bottom:712.037370px;}
.y30_c01005{bottom:712.298970px;}
.y2f_c01005{bottom:712.548510px;}
.y2e_c01005{bottom:713.407200px;}
.y2d_c01005{bottom:713.804280px;}
.y2c_c01005{bottom:714.336960px;}
.y2b_c01005{bottom:714.674880px;}
.y2a_c01005{bottom:733.964190px;}
.y29_c01005{bottom:734.231340px;}
.y28_c01005{bottom:734.876340px;}
.y27_c01005{bottom:735.143790px;}
.y26_c01005{bottom:735.616800px;}
.y25_c01005{bottom:735.885060px;}
.y24_c01005{bottom:736.463790px;}
.y23_c01005{bottom:736.977900px;}
.y22_c01005{bottom:737.361060px;}
.y21_c01005{bottom:757.502610px;}
.y20_c01005{bottom:758.075340px;}
.y1f_c01005{bottom:759.158040px;}
.y1e_c01005{bottom:759.770880px;}
.y1d_c01005{bottom:760.858770px;}
.y1c_c01005{bottom:761.364930px;}
.y1b_c01005{bottom:763.289820px;}
.y1a_c01005{bottom:780.692430px;}
.y19_c01005{bottom:781.487370px;}
.y18_c01005{bottom:781.799640px;}
.y17_c01005{bottom:782.969700px;}
.y16_c01005{bottom:783.893460px;}
.y15_c01005{bottom:784.878000px;}
.y14_c01005{bottom:785.326230px;}
.y13_c01005{bottom:785.751570px;}
.y12_c01005{bottom:786.244500px;}
.y11_c01005{bottom:804.590355px;}
.y10_c01005{bottom:805.294118px;}
.yf_c01005{bottom:805.812352px;}
.ye_c01005{bottom:806.241360px;}
.yd_c01005{bottom:807.053602px;}
.yc_c01005{bottom:807.376808px;}
.yb_c01005{bottom:808.258732px;}
.ya_c01005{bottom:808.651237px;}
.y9_c01005{bottom:826.784737px;}
.y8_c01005{bottom:827.088037px;}
.y7_c01005{bottom:827.845545px;}
.y6_c01005{bottom:828.324120px;}
.y5_c01005{bottom:828.655702px;}
.y4_c01005{bottom:829.522312px;}
.y3_c01005{bottom:830.130465px;}
.y2_c01005{bottom:830.393130px;}
.y1_c01005{bottom:831.333000px;}
.h1d_c01005{height:16.800000px;}
.h17_c01005{height:47.258528px;}
.h14_c01005{height:48.318930px;}
.h16_c01005{height:49.369341px;}
.h1a_c01005{height:50.406451px;}
.h18_c01005{height:50.409096px;}
.h13_c01005{height:50.419753px;}
.h19_c01005{height:51.456585px;}
.h1b_c01005{height:51.464815px;}
.h1c_c01005{height:52.515118px;}
.h15_c01005{height:53.570987px;}
.h12_c01005{height:64.056277px;}
.h6_c01005{height:66.163229px;}
.he_c01005{height:69.305856px;}
.ha_c01005{height:70.354256px;}
.h10_c01005{height:70.356894px;}
.h2_c01005{height:70.357914px;}
.h8_c01005{height:70.364069px;}
.hb_c01005{height:71.404320px;}
.hc_c01005{height:71.406033px;}
.hf_c01005{height:71.406997px;}
.h7_c01005{height:71.414279px;}
.h9_c01005{height:72.450000px;}
.hd_c01005{height:72.456122px;}
.h11_c01005{height:72.457100px;}
.h3_c01005{height:72.458150px;}
.h4_c01005{height:73.514699px;}
.h5_c01005{height:75.615118px;}
.h0_c01005{height:1008.450000px;}
.h1_c01005{height:1008.750000px;}
.w1_c01005{width:700.500000px;}
.w0_c01005{width:700.650000px;}
.x0_c01005{left:0.000000px;}
.xa3_c01005{left:87.024000px;}
.xa8_c01005{left:94.517484px;}
.xa4_c01005{left:116.095500px;}
.xa9_c01005{left:118.289832px;}
.x97_c01005{left:143.599500px;}
.xa5_c01005{left:144.976500px;}
.xaa_c01005{left:146.095500px;}
.x9e_c01005{left:148.593000px;}
.x64_c01005{left:161.563500px;}
.x5a_c01005{left:162.926592px;}
.x2e_c01005{left:164.290740px;}
.x34_c01005{left:166.319580px;}
.x26_c01005{left:167.535540px;}
.x1e_c01005{left:168.880620px;}
.xa_c01005{left:170.168985px;}
.x1_c01005{left:171.792000px;}
.x9c_c01005{left:177.217410px;}
.x6c_c01005{left:179.687931px;}
.x9f_c01005{left:181.554000px;}
.x3c_c01005{left:183.736500px;}
.x65_c01005{left:185.580000px;}
.x52_c01005{left:187.476000px;}
.x2f_c01005{left:188.868150px;}
.x43_c01005{left:192.632133px;}
.xb_c01005{left:194.735625px;}
.x27_c01005{left:198.312090px;}
.x98_c01005{left:200.637000px;}
.x72_c01005{left:202.384179px;}
.x1f_c01005{left:203.719890px;}
.x35_c01005{left:206.558160px;}
.xab_c01005{left:207.859548px;}
.x53_c01005{left:209.410500px;}
.x38_c01005{left:212.760000px;}
.xa0_c01005{left:215.038500px;}
.x12_c01005{left:216.300000px;}
.x30_c01005{left:221.273970px;}
.x70_c01005{left:222.637500px;}
.x66_c01005{left:223.665000px;}
.x68_c01005{left:227.779425px;}
.x3d_c01005{left:230.446500px;}
.x39_c01005{left:233.010000px;}
.x2_c01005{left:234.450000px;}
.x54_c01005{left:236.407500px;}
.x13_c01005{left:238.711500px;}
.x36_c01005{left:241.934820px;}
.xa1_c01005{left:245.571000px;}
.x28_c01005{left:246.704790px;}
.xc_c01005{left:249.829793px;}
.x3_c01005{left:251.961000px;}
.x4c_c01005{left:254.763000px;}
.xac_c01005{left:256.296708px;}
.x6d_c01005{left:258.250749px;}
.x99_c01005{left:261.535500px;}
.x31_c01005{left:265.560450px;}
.xd_c01005{left:270.076500px;}
.x19_c01005{left:271.207920px;}
.xa6_c01005{left:272.265000px;}
.x5b_c01005{left:274.985535px;}
.x49_c01005{left:276.877430px;}
.x44_c01005{left:277.968074px;}
.xad_c01005{left:281.120520px;}
.x29_c01005{left:282.840300px;}
.x9a_c01005{left:284.836500px;}
.x5e_c01005{left:286.843330px;}
.x14_c01005{left:287.938500px;}
.x4_c01005{left:292.504500px;}
.x3a_c01005{left:296.460000px;}
.x1a_c01005{left:297.866460px;}
.x69_c01005{left:299.804433px;}
.x62_c01005{left:301.742481px;}
.x20_c01005{left:303.079770px;}
.x5c_c01005{left:306.307444px;}
.x51_c01005{left:309.161679px;}
.x3e_c01005{left:319.000500px;}
.xe_c01005{left:320.825235px;}
.xa7_c01005{left:323.163000px;}
.x21_c01005{left:327.447150px;}
.x9b_c01005{left:328.774500px;}
.xa2_c01005{left:333.114000px;}
.x15_c01005{left:334.126500px;}
.x3b_c01005{left:337.770000px;}
.x5f_c01005{left:338.966830px;}
.x9d_c01005{left:340.096041px;}
.x4a_c01005{left:344.375187px;}
.xf_c01005{left:347.625330px;}
.x5_c01005{left:350.278500px;}
.x73_c01005{left:352.981179px;}
.x1b_c01005{left:355.112100px;}
.x32_c01005{left:356.844360px;}
.x55_c01005{left:359.202000px;}
.x2a_c01005{left:360.888840px;}
.x3f_c01005{left:362.257500px;}
.x4d_c01005{left:364.917000px;}
.x45_c01005{left:366.806564px;}
.x22_c01005{left:370.380360px;}
.x6_c01005{left:372.384000px;}
.x56_c01005{left:376.816500px;}
.x6a_c01005{left:378.089025px;}
.x10_c01005{left:379.973835px;}
.x46_c01005{left:381.925229px;}
.x2b_c01005{left:383.569920px;}
.x7a_c01005{left:385.764960px;}
.x1c_c01005{left:387.329730px;}
.x40_c01005{left:388.431000px;}
.x16_c01005{left:392.629500px;}
.x23_c01005{left:394.632210px;}
.x8c_c01005{left:396.949176px;}
.x37_c01005{left:401.265540px;}
.x7_c01005{left:404.289000px;}
.x57_c01005{left:405.918000px;}
.x17_c01005{left:408.243000px;}
.x6b_c01005{left:410.268966px;}
.x95_c01005{left:414.140952px;}
.x41_c01005{left:417.283500px;}
.x91_c01005{left:418.496406px;}
.x4b_c01005{left:420.013346px;}
.x47_c01005{left:421.885674px;}
.x11_c01005{left:423.990683px;}
.x4e_c01005{left:426.717000px;}
.x6e_c01005{left:428.375889px;}
.x7b_c01005{left:429.917634px;}
.x5d_c01005{left:432.672082px;}
.x33_c01005{left:434.337780px;}
.x63_c01005{left:435.661471px;}
.x88_c01005{left:437.160000px;}
.x74_c01005{left:438.262179px;}
.x75_c01005{left:439.327500px;}
.x8d_c01005{left:440.335548px;}
.x1d_c01005{left:444.315870px;}
.x18_c01005{left:447.990000px;}
.x2c_c01005{left:450.810510px;}
.x83_c01005{left:452.035026px;}
.x24_c01005{left:453.292770px;}
.x8_c01005{left:454.789500px;}
.x58_c01005{left:462.084000px;}
.x60_c01005{left:463.649830px;}
.x4f_c01005{left:464.794500px;}
.x67_c01005{left:466.138500px;}
.x76_c01005{left:470.352000px;}
.x42_c01005{left:471.864000px;}
.x9_c01005{left:475.009500px;}
.x25_c01005{left:477.529620px;}
.x77_c01005{left:485.817000px;}
.x8e_c01005{left:486.887214px;}
.x6f_c01005{left:488.030388px;}
.x48_c01005{left:489.390917px;}
.x71_c01005{left:492.594000px;}
.x7c_c01005{left:493.642038px;}
.x80_c01005{left:499.633182px;}
.x89_c01005{left:506.044932px;}
.x7d_c01005{left:507.109428px;}
.x92_c01005{left:509.998134px;}
.x59_c01005{left:511.290000px;}
.x50_c01005{left:513.124500px;}
.x61_c01005{left:517.519331px;}
.x2d_c01005{left:520.975140px;}
.x84_c01005{left:527.357526px;}
.x8a_c01005{left:528.359562px;}
.x81_c01005{left:530.457300px;}
.x78_c01005{left:534.639000px;}
.x93_c01005{left:540.129654px;}
.x85_c01005{left:552.473526px;}
.x7e_c01005{left:562.489656px;}
.x79_c01005{left:564.111000px;}
.x94_c01005{left:570.066174px;}
.x96_c01005{left:572.243724px;}
.x8f_c01005{left:573.527916px;}
.x82_c01005{left:584.104788px;}
.x90_c01005{left:587.649012px;}
.x86_c01005{left:604.202526px;}
.x8b_c01005{left:605.859246px;}
.x87_c01005{left:618.683526px;}
.x7f_c01005{left:620.351262px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ws0_c01005{word-spacing:0.000000pt;}
.fs1b_c01005{font-size:14.933333pt;}
.fs15_c01005{font-size:42.007580pt;}
.fs12_c01005{font-size:42.950160pt;}
.fs14_c01005{font-size:43.883859pt;}
.fs18_c01005{font-size:44.805734pt;}
.fs16_c01005{font-size:44.808086pt;}
.fs11_c01005{font-size:44.817558pt;}
.fs17_c01005{font-size:45.739187pt;}
.fs19_c01005{font-size:45.746503pt;}
.fs1a_c01005{font-size:46.680105pt;}
.fs13_c01005{font-size:47.618656pt;}
.fs10_c01005{font-size:56.938913pt;}
.fs4_c01005{font-size:58.811759pt;}
.fsc_c01005{font-size:61.605205pt;}
.fs8_c01005{font-size:62.537116pt;}
.fse_c01005{font-size:62.539461pt;}
.fs0_c01005{font-size:62.540368pt;}
.fs6_c01005{font-size:62.545839pt;}
.fs9_c01005{font-size:63.470506pt;}
.fsa_c01005{font-size:63.472029pt;}
.fsd_c01005{font-size:63.472886pt;}
.fs5_c01005{font-size:63.479359pt;}
.fs7_c01005{font-size:64.400000pt;}
.fsb_c01005{font-size:64.405442pt;}
.fsf_c01005{font-size:64.406311pt;}
.fs1_c01005{font-size:64.407245pt;}
.fs2_c01005{font-size:65.346399pt;}
.fs3_c01005{font-size:67.213439pt;}
.y0_c01005{bottom:0.000000pt;}
.y11d_c01005{bottom:92.761333pt;}
.yf4_c01005{bottom:125.546859pt;}
.yf3_c01005{bottom:125.983067pt;}
.yf2_c01005{bottom:126.306981pt;}
.yf1_c01005{bottom:128.193605pt;}
.yf0_c01005{bottom:128.433136pt;}
.yef_c01005{bottom:129.820320pt;}
.yee_c01005{bottom:130.377755pt;}
.yed_c01005{bottom:130.780032pt;}
.y11c_c01005{bottom:133.108491pt;}
.y11b_c01005{bottom:133.688587pt;}
.y11a_c01005{bottom:134.262187pt;}
.y119_c01005{bottom:135.382229pt;}
.y118_c01005{bottom:136.300384pt;}
.y117_c01005{bottom:136.809259pt;}
.y116_c01005{bottom:137.451808pt;}
.y115_c01005{bottom:138.001643pt;}
.yec_c01005{bottom:142.340363pt;}
.yeb_c01005{bottom:143.005387pt;}
.yea_c01005{bottom:143.675264pt;}
.ye9_c01005{bottom:144.692795pt;}
.ye8_c01005{bottom:144.909317pt;}
.ye7_c01005{bottom:145.707115pt;}
.ye6_c01005{bottom:146.847019pt;}
.y114_c01005{bottom:149.041035pt;}
.y113_c01005{bottom:149.474379pt;}
.y112_c01005{bottom:150.126859pt;}
.y111_c01005{bottom:150.899179pt;}
.y110_c01005{bottom:151.672875pt;}
.y10f_c01005{bottom:152.092811pt;}
.y10e_c01005{bottom:152.842347pt;}
.y10d_c01005{bottom:153.458475pt;}
.y10c_c01005{bottom:154.078667pt;}
.ye5_c01005{bottom:158.100768pt;}
.ye4_c01005{bottom:158.401520pt;}
.ye3_c01005{bottom:159.228693pt;}
.ye2_c01005{bottom:159.530901pt;}
.ye1_c01005{bottom:160.249669pt;}
.ye0_c01005{bottom:160.756843pt;}
.ydf_c01005{bottom:160.999307pt;}
.yde_c01005{bottom:161.244160pt;}
.ydd_c01005{bottom:162.169211pt;}
.ydc_c01005{bottom:162.694635pt;}
.y10b_c01005{bottom:171.436128pt;}
.y10a_c01005{bottom:171.436224pt;}
.ydb_c01005{bottom:173.091381pt;}
.yda_c01005{bottom:173.429232pt;}
.yd9_c01005{bottom:175.288725pt;}
.yd8_c01005{bottom:175.824096pt;}
.yd7_c01005{bottom:176.522805pt;}
.yd6_c01005{bottom:177.477184pt;}
.yd5_c01005{bottom:179.020443pt;}
.y109_c01005{bottom:185.573035pt;}
.y108_c01005{bottom:185.774720pt;}
.y107_c01005{bottom:186.404949pt;}
.y106_c01005{bottom:186.818091pt;}
.y105_c01005{bottom:187.252331pt;}
.y104_c01005{bottom:187.728555pt;}
.y103_c01005{bottom:188.197333pt;}
.yd4_c01005{bottom:188.909093pt;}
.yd3_c01005{bottom:189.269509pt;}
.yd2_c01005{bottom:190.556987pt;}
.yd1_c01005{bottom:191.182096pt;}
.yd0_c01005{bottom:192.228549pt;}
.ycf_c01005{bottom:193.056789pt;}
.yce_c01005{bottom:193.816597pt;}
.ycd_c01005{bottom:194.863947pt;}
.ycc_c01005{bottom:205.663504pt;}
.ycb_c01005{bottom:207.046768pt;}
.yca_c01005{bottom:207.841968pt;}
.yc9_c01005{bottom:211.192043pt;}
.yc8_c01005{bottom:220.836629pt;}
.yc7_c01005{bottom:222.019205pt;}
.yc6_c01005{bottom:223.152032pt;}
.yc5_c01005{bottom:223.427173pt;}
.yc4_c01005{bottom:224.425824pt;}
.yc3_c01005{bottom:224.730315pt;}
.y102_c01005{bottom:224.910199pt;}
.y101_c01005{bottom:225.357221pt;}
.yc2_c01005{bottom:225.448437pt;}
.yc1_c01005{bottom:225.633072pt;}
.yc0_c01005{bottom:226.076613pt;}
.y100_c01005{bottom:226.429871pt;}
.yff_c01005{bottom:226.988904pt;}
.yfe_c01005{bottom:227.756837pt;}
.yfd_c01005{bottom:228.239913pt;}
.ybf_c01005{bottom:237.366907pt;}
.ybe_c01005{bottom:238.100432pt;}
.ybd_c01005{bottom:238.664539pt;}
.ybc_c01005{bottom:239.315557pt;}
.ybb_c01005{bottom:239.700464pt;}
.yba_c01005{bottom:240.472629pt;}
.yfc_c01005{bottom:241.249029pt;}
.yfb_c01005{bottom:241.339267pt;}
.yb9_c01005{bottom:241.566421pt;}
.yfa_c01005{bottom:242.081331pt;}
.yb8_c01005{bottom:242.166667pt;}
.yf9_c01005{bottom:242.474859pt;}
.yf8_c01005{bottom:242.938104pt;}
.yf7_c01005{bottom:243.503367pt;}
.yf6_c01005{bottom:243.872929pt;}
.yf5_c01005{bottom:244.466667pt;}
.yb7_c01005{bottom:286.710520pt;}
.yb6_c01005{bottom:287.058653pt;}
.yb5_c01005{bottom:287.771795pt;}
.yb4_c01005{bottom:288.164037pt;}
.yb3_c01005{bottom:288.514429pt;}
.yb2_c01005{bottom:289.156227pt;}
.yb1_c01005{bottom:289.645891pt;}
.yb0_c01005{bottom:290.160773pt;}
.yaf_c01005{bottom:306.439723pt;}
.yae_c01005{bottom:306.798496pt;}
.yad_c01005{bottom:307.295813pt;}
.yac_c01005{bottom:307.760147pt;}
.yab_c01005{bottom:308.015768pt;}
.yaa_c01005{bottom:308.936595pt;}
.ya9_c01005{bottom:309.799181pt;}
.ya8_c01005{bottom:310.283021pt;}
.ya7_c01005{bottom:310.562667pt;}
.ya6_c01005{bottom:327.702749pt;}
.ya5_c01005{bottom:328.286419pt;}
.ya4_c01005{bottom:328.992285pt;}
.ya3_c01005{bottom:329.456904pt;}
.ya2_c01005{bottom:329.950109pt;}
.ya1_c01005{bottom:330.110360pt;}
.ya0_c01005{bottom:330.474675pt;}
.y9f_c01005{bottom:330.717072pt;}
.y9e_c01005{bottom:348.263813pt;}
.y9d_c01005{bottom:348.575048pt;}
.y9c_c01005{bottom:348.965091pt;}
.y9b_c01005{bottom:349.337547pt;}
.y9a_c01005{bottom:349.670613pt;}
.y99_c01005{bottom:350.242408pt;}
.y98_c01005{bottom:350.534816pt;}
.y97_c01005{bottom:351.074707pt;}
.y96_c01005{bottom:351.523917pt;}
.y95_c01005{bottom:351.839987pt;}
.y94_c01005{bottom:368.212400pt;}
.y93_c01005{bottom:369.015403pt;}
.y92_c01005{bottom:369.374325pt;}
.y91_c01005{bottom:369.858259pt;}
.y90_c01005{bottom:370.318635pt;}
.y8f_c01005{bottom:370.627811pt;}
.y8e_c01005{bottom:371.229848pt;}
.y8d_c01005{bottom:371.703795pt;}
.y8c_c01005{bottom:372.002667pt;}
.y8b_c01005{bottom:389.721731pt;}
.y8a_c01005{bottom:389.993740pt;}
.y89_c01005{bottom:390.579401pt;}
.y88_c01005{bottom:390.782707pt;}
.y87_c01005{bottom:391.030532pt;}
.y86_c01005{bottom:391.576545pt;}
.y85_c01005{bottom:391.906008pt;}
.y84_c01005{bottom:392.129857pt;}
.y83_c01005{bottom:392.394481pt;}
.y82_c01005{bottom:408.461811pt;}
.y81_c01005{bottom:409.084303pt;}
.y80_c01005{bottom:409.883075pt;}
.y7f_c01005{bottom:410.151048pt;}
.y7e_c01005{bottom:410.525084pt;}
.y7d_c01005{bottom:411.127400pt;}
.y7c_c01005{bottom:411.594637pt;}
.y7b_c01005{bottom:412.284781pt;}
.y7a_c01005{bottom:412.556360pt;}
.y79_c01005{bottom:429.360300pt;}
.y78_c01005{bottom:429.835100pt;}
.y77_c01005{bottom:430.077267pt;}
.y76_c01005{bottom:430.708495pt;}
.y75_c01005{bottom:431.042432pt;}
.y74_c01005{bottom:431.287615pt;}
.y73_c01005{bottom:431.982253pt;}
.y72_c01005{bottom:432.238652pt;}
.y71_c01005{bottom:448.141820pt;}
.y70_c01005{bottom:448.710423pt;}
.y6f_c01005{bottom:449.359452pt;}
.y6e_c01005{bottom:449.695736pt;}
.y6d_c01005{bottom:449.899281pt;}
.y6c_c01005{bottom:450.773089pt;}
.y6b_c01005{bottom:451.318240pt;}
.y6a_c01005{bottom:451.630205pt;}
.y69_c01005{bottom:451.883671pt;}
.y68_c01005{bottom:452.161333pt;}
.y67_c01005{bottom:470.882944pt;}
.y66_c01005{bottom:489.166861pt;}
.y65_c01005{bottom:489.725341pt;}
.y64_c01005{bottom:490.165348pt;}
.y63_c01005{bottom:490.617627pt;}
.y62_c01005{bottom:490.879481pt;}
.y61_c01005{bottom:491.116983pt;}
.y60_c01005{bottom:491.837928pt;}
.y5f_c01005{bottom:492.152372pt;}
.y5e_c01005{bottom:492.876888pt;}
.y5d_c01005{bottom:493.201333pt;}
.y5c_c01005{bottom:511.320959pt;}
.y5b_c01005{bottom:511.588837pt;}
.y5a_c01005{bottom:512.226007pt;}
.y59_c01005{bottom:512.396419pt;}
.y58_c01005{bottom:513.116404pt;}
.y57_c01005{bottom:513.513617pt;}
.y56_c01005{bottom:513.807543pt;}
.y55_c01005{bottom:514.319997pt;}
.y54_c01005{bottom:530.878228pt;}
.y53_c01005{bottom:531.225921pt;}
.y52_c01005{bottom:531.478272pt;}
.y51_c01005{bottom:531.832992pt;}
.y50_c01005{bottom:531.967484pt;}
.y4f_c01005{bottom:532.535435pt;}
.y4e_c01005{bottom:532.756117pt;}
.y4d_c01005{bottom:533.514504pt;}
.y4c_c01005{bottom:533.759711pt;}
.y4b_c01005{bottom:551.584087pt;}
.y4a_c01005{bottom:552.117763pt;}
.y49_c01005{bottom:552.399876pt;}
.y48_c01005{bottom:552.655795pt;}
.y47_c01005{bottom:553.078752pt;}
.y46_c01005{bottom:553.376588pt;}
.y45_c01005{bottom:553.944613pt;}
.y44_c01005{bottom:554.401333pt;}
.y43_c01005{bottom:572.872000pt;}
.y3d_c01005{bottom:593.294987pt;}
.y3f_c01005{bottom:593.295040pt;}
.y40_c01005{bottom:593.295173pt;}
.y3c_c01005{bottom:593.295387pt;}
.y3e_c01005{bottom:593.295653pt;}
.y41_c01005{bottom:593.295787pt;}
.y42_c01005{bottom:593.296240pt;}
.y3b_c01005{bottom:612.460187pt;}
.y3a_c01005{bottom:612.875147pt;}
.y39_c01005{bottom:613.218933pt;}
.y38_c01005{bottom:613.438773pt;}
.y37_c01005{bottom:614.112133pt;}
.y36_c01005{bottom:614.544640pt;}
.y35_c01005{bottom:614.861973pt;}
.y34_c01005{bottom:615.102827pt;}
.y33_c01005{bottom:631.810987pt;}
.y32_c01005{bottom:632.496800pt;}
.y31_c01005{bottom:632.922107pt;}
.y30_c01005{bottom:633.154640pt;}
.y2f_c01005{bottom:633.376453pt;}
.y2e_c01005{bottom:634.139733pt;}
.y2d_c01005{bottom:634.492693pt;}
.y2c_c01005{bottom:634.966187pt;}
.y2b_c01005{bottom:635.266560pt;}
.y2a_c01005{bottom:652.412613pt;}
.y29_c01005{bottom:652.650080pt;}
.y28_c01005{bottom:653.223413pt;}
.y27_c01005{bottom:653.461147pt;}
.y26_c01005{bottom:653.881600pt;}
.y25_c01005{bottom:654.120053pt;}
.y24_c01005{bottom:654.634480pt;}
.y23_c01005{bottom:655.091467pt;}
.y22_c01005{bottom:655.432053pt;}
.y21_c01005{bottom:673.335653pt;}
.y20_c01005{bottom:673.844747pt;}
.y1f_c01005{bottom:674.807147pt;}
.y1e_c01005{bottom:675.351893pt;}
.y1d_c01005{bottom:676.318907pt;}
.y1c_c01005{bottom:676.768827pt;}
.y1b_c01005{bottom:678.479840pt;}
.y1a_c01005{bottom:693.948827pt;}
.y19_c01005{bottom:694.655440pt;}
.y18_c01005{bottom:694.933013pt;}
.y17_c01005{bottom:695.973067pt;}
.y16_c01005{bottom:696.794187pt;}
.y15_c01005{bottom:697.669333pt;}
.y14_c01005{bottom:698.067760pt;}
.y13_c01005{bottom:698.445840pt;}
.y12_c01005{bottom:698.884000pt;}
.y11_c01005{bottom:715.191427pt;}
.y10_c01005{bottom:715.816993pt;}
.yf_c01005{bottom:716.277647pt;}
.ye_c01005{bottom:716.658987pt;}
.yd_c01005{bottom:717.380980pt;}
.yc_c01005{bottom:717.668273pt;}
.yb_c01005{bottom:718.452207pt;}
.ya_c01005{bottom:718.801100pt;}
.y9_c01005{bottom:734.919767pt;}
.y8_c01005{bottom:735.189367pt;}
.y7_c01005{bottom:735.862707pt;}
.y6_c01005{bottom:736.288107pt;}
.y5_c01005{bottom:736.582847pt;}
.y4_c01005{bottom:737.353167pt;}
.y3_c01005{bottom:737.893747pt;}
.y2_c01005{bottom:738.127227pt;}
.y1_c01005{bottom:738.962667pt;}
.h1d_c01005{height:14.933333pt;}
.h17_c01005{height:42.007580pt;}
.h14_c01005{height:42.950160pt;}
.h16_c01005{height:43.883859pt;}
.h1a_c01005{height:44.805734pt;}
.h18_c01005{height:44.808086pt;}
.h13_c01005{height:44.817558pt;}
.h19_c01005{height:45.739187pt;}
.h1b_c01005{height:45.746503pt;}
.h1c_c01005{height:46.680105pt;}
.h15_c01005{height:47.618656pt;}
.h12_c01005{height:56.938913pt;}
.h6_c01005{height:58.811759pt;}
.he_c01005{height:61.605205pt;}
.ha_c01005{height:62.537116pt;}
.h10_c01005{height:62.539461pt;}
.h2_c01005{height:62.540368pt;}
.h8_c01005{height:62.545839pt;}
.hb_c01005{height:63.470506pt;}
.hc_c01005{height:63.472029pt;}
.hf_c01005{height:63.472886pt;}
.h7_c01005{height:63.479359pt;}
.h9_c01005{height:64.400000pt;}
.hd_c01005{height:64.405442pt;}
.h11_c01005{height:64.406311pt;}
.h3_c01005{height:64.407245pt;}
.h4_c01005{height:65.346399pt;}
.h5_c01005{height:67.213439pt;}
.h0_c01005{height:896.400000pt;}
.h1_c01005{height:896.666667pt;}
.w1_c01005{width:622.666667pt;}
.w0_c01005{width:622.800000pt;}
.x0_c01005{left:0.000000pt;}
.xa3_c01005{left:77.354667pt;}
.xa8_c01005{left:84.015541pt;}
.xa4_c01005{left:103.196000pt;}
.xa9_c01005{left:105.146517pt;}
.x97_c01005{left:127.644000pt;}
.xa5_c01005{left:128.868000pt;}
.xaa_c01005{left:129.862667pt;}
.x9e_c01005{left:132.082667pt;}
.x64_c01005{left:143.612000pt;}
.x5a_c01005{left:144.823637pt;}
.x2e_c01005{left:146.036213pt;}
.x34_c01005{left:147.839627pt;}
.x26_c01005{left:148.920480pt;}
.x1e_c01005{left:150.116107pt;}
.xa_c01005{left:151.261320pt;}
.x1_c01005{left:152.704000pt;}
.x9c_c01005{left:157.526587pt;}
.x6c_c01005{left:159.722605pt;}
.x9f_c01005{left:161.381333pt;}
.x3c_c01005{left:163.321333pt;}
.x65_c01005{left:164.960000pt;}
.x52_c01005{left:166.645333pt;}
.x2f_c01005{left:167.882800pt;}
.x43_c01005{left:171.228563pt;}
.xb_c01005{left:173.098333pt;}
.x27_c01005{left:176.277413pt;}
.x98_c01005{left:178.344000pt;}
.x72_c01005{left:179.897048pt;}
.x1f_c01005{left:181.084347pt;}
.x35_c01005{left:183.607253pt;}
.xab_c01005{left:184.764043pt;}
.x53_c01005{left:186.142667pt;}
.x38_c01005{left:189.120000pt;}
.xa0_c01005{left:191.145333pt;}
.x12_c01005{left:192.266667pt;}
.x30_c01005{left:196.687973pt;}
.x70_c01005{left:197.900000pt;}
.x66_c01005{left:198.813333pt;}
.x68_c01005{left:202.470600pt;}
.x3d_c01005{left:204.841333pt;}
.x39_c01005{left:207.120000pt;}
.x2_c01005{left:208.400000pt;}
.x54_c01005{left:210.140000pt;}
.x13_c01005{left:212.188000pt;}
.x36_c01005{left:215.053173pt;}
.xa1_c01005{left:218.285333pt;}
.x28_c01005{left:219.293147pt;}
.xc_c01005{left:222.070927pt;}
.x3_c01005{left:223.965333pt;}
.x4c_c01005{left:226.456000pt;}
.xac_c01005{left:227.819296pt;}
.x6d_c01005{left:229.556221pt;}
.x99_c01005{left:232.476000pt;}
.x31_c01005{left:236.053733pt;}
.xd_c01005{left:240.068000pt;}
.x19_c01005{left:241.073707pt;}
.xa6_c01005{left:242.013333pt;}
.x5b_c01005{left:244.431587pt;}
.x49_c01005{left:246.113271pt;}
.x44_c01005{left:247.082732pt;}
.xad_c01005{left:249.884907pt;}
.x29_c01005{left:251.413600pt;}
.x9a_c01005{left:253.188000pt;}
.x5e_c01005{left:254.971849pt;}
.x14_c01005{left:255.945333pt;}
.x4_c01005{left:260.004000pt;}
.x3a_c01005{left:263.520000pt;}
.x1a_c01005{left:264.770187pt;}
.x69_c01005{left:266.492829pt;}
.x62_c01005{left:268.215539pt;}
.x20_c01005{left:269.404240pt;}
.x5c_c01005{left:272.273284pt;}
.x51_c01005{left:274.810381pt;}
.x3e_c01005{left:283.556000pt;}
.xe_c01005{left:285.177987pt;}
.xa7_c01005{left:287.256000pt;}
.x21_c01005{left:291.064133pt;}
.x9b_c01005{left:292.244000pt;}
.xa2_c01005{left:296.101333pt;}
.x15_c01005{left:297.001333pt;}
.x3b_c01005{left:300.240000pt;}
.x5f_c01005{left:301.303849pt;}
.x9d_c01005{left:302.307592pt;}
.x4a_c01005{left:306.111277pt;}
.xf_c01005{left:309.000293pt;}
.x5_c01005{left:311.358667pt;}
.x73_c01005{left:313.761048pt;}
.x1b_c01005{left:315.655200pt;}
.x32_c01005{left:317.194987pt;}
.x55_c01005{left:319.290667pt;}
.x2a_c01005{left:320.790080pt;}
.x3f_c01005{left:322.006667pt;}
.x4d_c01005{left:324.370667pt;}
.x45_c01005{left:326.050279pt;}
.x22_c01005{left:329.226987pt;}
.x6_c01005{left:331.008000pt;}
.x56_c01005{left:334.948000pt;}
.x6a_c01005{left:336.079133pt;}
.x10_c01005{left:337.754520pt;}
.x46_c01005{left:339.489092pt;}
.x2b_c01005{left:340.951040pt;}
.x7a_c01005{left:342.902187pt;}
.x1c_c01005{left:344.293093pt;}
.x40_c01005{left:345.272000pt;}
.x16_c01005{left:349.004000pt;}
.x23_c01005{left:350.784187pt;}
.x8c_c01005{left:352.843712pt;}
.x37_c01005{left:356.680480pt;}
.x7_c01005{left:359.368000pt;}
.x57_c01005{left:360.816000pt;}
.x17_c01005{left:362.882667pt;}
.x6b_c01005{left:364.683525pt;}
.x95_c01005{left:368.125291pt;}
.x41_c01005{left:370.918667pt;}
.x91_c01005{left:371.996805pt;}
.x4b_c01005{left:373.345196pt;}
.x47_c01005{left:375.009488pt;}
.x11_c01005{left:376.880607pt;}
.x4e_c01005{left:379.304000pt;}
.x6e_c01005{left:380.778568pt;}
.x7b_c01005{left:382.149008pt;}
.x5d_c01005{left:384.597407pt;}
.x33_c01005{left:386.078027pt;}
.x63_c01005{left:387.254641pt;}
.x88_c01005{left:388.586667pt;}
.x74_c01005{left:389.566381pt;}
.x75_c01005{left:390.513333pt;}
.x8d_c01005{left:391.409376pt;}
.x1d_c01005{left:394.947440pt;}
.x18_c01005{left:398.213333pt;}
.x2c_c01005{left:400.720453pt;}
.x83_c01005{left:401.808912pt;}
.x24_c01005{left:402.926907pt;}
.x8_c01005{left:404.257333pt;}
.x58_c01005{left:410.741333pt;}
.x60_c01005{left:412.133183pt;}
.x4f_c01005{left:413.150667pt;}
.x67_c01005{left:414.345333pt;}
.x76_c01005{left:418.090667pt;}
.x42_c01005{left:419.434667pt;}
.x9_c01005{left:422.230667pt;}
.x25_c01005{left:424.470773pt;}
.x77_c01005{left:431.837333pt;}
.x8e_c01005{left:432.788635pt;}
.x6f_c01005{left:433.804789pt;}
.x48_c01005{left:435.014148pt;}
.x71_c01005{left:437.861333pt;}
.x7c_c01005{left:438.792923pt;}
.x80_c01005{left:444.118384pt;}
.x89_c01005{left:449.817717pt;}
.x7d_c01005{left:450.763936pt;}
.x92_c01005{left:453.331675pt;}
.x59_c01005{left:454.480000pt;}
.x50_c01005{left:456.110667pt;}
.x61_c01005{left:460.017183pt;}
.x2d_c01005{left:463.089013pt;}
.x84_c01005{left:468.762245pt;}
.x8a_c01005{left:469.652944pt;}
.x81_c01005{left:471.517600pt;}
.x78_c01005{left:475.234667pt;}
.x93_c01005{left:480.115248pt;}
.x85_c01005{left:491.087579pt;}
.x7e_c01005{left:499.990805pt;}
.x79_c01005{left:501.432000pt;}
.x94_c01005{left:506.725488pt;}
.x96_c01005{left:508.661088pt;}
.x8f_c01005{left:509.802592pt;}
.x82_c01005{left:519.204256pt;}
.x90_c01005{left:522.354677pt;}
.x86_c01005{left:537.068912pt;}
.x8b_c01005{left:538.541552pt;}
.x87_c01005{left:549.940912pt;}
.x7f_c01005{left:551.423344pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb3_c01006{transform:matrix(0.010314,0.000155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010314,0.000155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010314,0.000155,-0.003750,0.249972,0,0);}
.mbf_c01006{transform:matrix(0.071335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071335,0.000000,0.000000,0.250000,0,0);}
.mb4_c01006{transform:matrix(0.109835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109835,0.000000,0.000000,0.250000,0,0);}
.mb2_c01006{transform:matrix(0.138069,0.002071,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138069,0.002071,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138069,0.002071,-0.003750,0.249972,0,0);}
.mb6_c01006{transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138090,0.000000,0.000000,0.250000,0,0);}
.m69_c01006{transform:matrix(0.143310,0.001720,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143310,0.001720,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143310,0.001720,-0.003000,0.249982,0,0);}
.m15_c01006{transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145045,0.000000,0.000000,0.250000,0,0);}
.m5d_c01006{transform:matrix(0.152903,0.002294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152903,0.002294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152903,0.002294,-0.003750,0.249972,0,0);}
.md8_c01006{transform:matrix(0.153357,0.003834,-0.006248,0.249922,0,0);-ms-transform:matrix(0.153357,0.003834,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.153357,0.003834,-0.006248,0.249922,0,0);}
.m73_c01006{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);}
.m5f_c01006{transform:matrix(0.154473,0.002317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154473,0.002317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154473,0.002317,-0.003750,0.249972,0,0);}
.m1c_c01006{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);}
.m6c_c01006{transform:matrix(0.155584,0.001867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155584,0.001867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155584,0.001867,-0.003000,0.249982,0,0);}
.m12_c01006{transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155640,0.000000,0.000000,0.250000,0,0);}
.m53_c01006{transform:matrix(0.155842,0.002338,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155842,0.002338,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155842,0.002338,-0.003750,0.249972,0,0);}
.m19_c01006{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);}
.mea_c01006{transform:matrix(0.156466,0.003912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156466,0.003912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156466,0.003912,-0.006248,0.249922,0,0);}
.ma6_c01006{transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156650,0.002193,-0.003500,0.249976,0,0);}
.m59_c01006{transform:matrix(0.157532,0.002363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157532,0.002363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157532,0.002363,-0.003750,0.249972,0,0);}
.m79_c01006{transform:matrix(0.158559,0.001903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158559,0.001903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158559,0.001903,-0.003000,0.249982,0,0);}
.ma3_c01006{transform:matrix(0.158619,0.002221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158619,0.002221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158619,0.002221,-0.003500,0.249976,0,0);}
.m57_c01006{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);}
.m99_c01006{transform:matrix(0.163468,0.001962,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163468,0.001962,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163468,0.001962,-0.003000,0.249982,0,0);}
.m64_c01006{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);}
.m16_c01006{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);}
.m47_c01006{transform:matrix(0.167158,0.002006,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167158,0.002006,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167158,0.002006,-0.003000,0.249982,0,0);}
.mb5_c01006{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);}
.mc6_c01006{transform:matrix(0.167843,0.004196,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167843,0.004196,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167843,0.004196,-0.006248,0.249922,0,0);}
.m8a_c01006{transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169193,0.002369,-0.003500,0.249976,0,0);}
.m86_c01006{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);}
.mf_c01006{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);}
.m5e_c01006{transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169861,0.002548,-0.003750,0.249972,0,0);}
.m87_c01006{transform:matrix(0.171448,0.002400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171448,0.002400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171448,0.002400,-0.003500,0.249976,0,0);}
.m5a_c01006{transform:matrix(0.172126,0.002582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172126,0.002582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172126,0.002582,-0.003750,0.249972,0,0);}
.m78_c01006{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);}
.m4f_c01006{transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);}
.m77_c01006{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);}
.m11_c01006{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);}
.m3c_c01006{transform:matrix(0.173743,0.001564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173743,0.001564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173743,0.001564,-0.002250,0.249990,0,0);}
.m49_c01006{transform:matrix(0.173842,0.002086,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173842,0.002086,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173842,0.002086,-0.003000,0.249982,0,0);}
.m95_c01006{transform:matrix(0.174137,0.002090,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174137,0.002090,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174137,0.002090,-0.003000,0.249982,0,0);}
.m7a_c01006{transform:matrix(0.174707,0.002096,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174707,0.002096,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174707,0.002096,-0.003000,0.249982,0,0);}
.m70_c01006{transform:matrix(0.175057,0.002101,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175057,0.002101,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175057,0.002101,-0.003000,0.249982,0,0);}
.m6a_c01006{transform:matrix(0.175312,0.002104,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175312,0.002104,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175312,0.002104,-0.003000,0.249982,0,0);}
.m48_c01006{transform:matrix(0.175897,0.002111,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175897,0.002111,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175897,0.002111,-0.003000,0.249982,0,0);}
.m26_c01006{transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175988,0.001584,-0.002250,0.249990,0,0);}
.m8c_c01006{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);}
.mcb_c01006{transform:matrix(0.178024,0.004451,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178024,0.004451,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178024,0.004451,-0.006248,0.249922,0,0);}
.m1f_c01006{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);}
.m14_c01006{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);}
.m3b_c01006{transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179438,0.001615,-0.002250,0.249990,0,0);}
.m62_c01006{transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);}
.m76_c01006{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);}
.m4b_c01006{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);}
.m24_c01006{transform:matrix(0.181848,0.001637,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181848,0.001637,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181848,0.001637,-0.002250,0.249990,0,0);}
.m8d_c01006{transform:matrix(0.182337,0.002553,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182337,0.002553,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182337,0.002553,-0.003500,0.249976,0,0);}
.m38_c01006{transform:matrix(0.182748,0.001645,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182748,0.001645,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182748,0.001645,-0.002250,0.249990,0,0);}
.m20_c01006{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);}
.m6f_c01006{transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);}
.mcc_c01006{transform:matrix(0.183618,0.004590,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183618,0.004590,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183618,0.004590,-0.006248,0.249922,0,0);}
.m39_c01006{transform:matrix(0.184138,0.001657,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184138,0.001657,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184138,0.001657,-0.002250,0.249990,0,0);}
.mc9_c01006{transform:matrix(0.184312,0.004608,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184312,0.004608,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184312,0.004608,-0.006248,0.249922,0,0);}
.ma0_c01006{transform:matrix(0.186267,0.002608,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186267,0.002608,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186267,0.002608,-0.003500,0.249976,0,0);}
.m66_c01006{transform:matrix(0.186577,0.002239,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186577,0.002239,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186577,0.002239,-0.003000,0.249982,0,0);}
.m98_c01006{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);}
.m4a_c01006{transform:matrix(0.187172,0.002246,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187172,0.002246,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187172,0.002246,-0.003000,0.249982,0,0);}
.m67_c01006{transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);}
.m63_c01006{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);}
.m17_c01006{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);}
.m6_c01006{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);}
.m7d_c01006{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);}
.m5b_c01006{transform:matrix(0.190589,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190589,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190589,0.002859,-0.003750,0.249972,0,0);}
.ma2_c01006{transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190766,0.002671,-0.003500,0.249976,0,0);}
.m1e_c01006{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);}
.m13_c01006{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);}
.md5_c01006{transform:matrix(0.192850,0.004821,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192850,0.004821,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192850,0.004821,-0.006248,0.249922,0,0);}
.m58_c01006{transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);}
.mac_c01006{transform:matrix(0.193438,0.002902,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193438,0.002902,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193438,0.002902,-0.003750,0.249972,0,0);}
.mdd_c01006{transform:matrix(0.193909,0.004848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193909,0.004848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193909,0.004848,-0.006248,0.249922,0,0);}
.me7_c01006{transform:matrix(0.195269,0.004882,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195269,0.004882,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195269,0.004882,-0.006248,0.249922,0,0);}
.m2d_c01006{transform:matrix(0.195417,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195417,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195417,0.001759,-0.002250,0.249990,0,0);}
.m80_c01006{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);}
.m5c_c01006{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);}
.m8f_c01006{transform:matrix(0.195766,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195766,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195766,0.002349,-0.003000,0.249982,0,0);}
.m88_c01006{transform:matrix(0.196126,0.002746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196126,0.002746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196126,0.002746,-0.003500,0.249976,0,0);}
.m6e_c01006{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);}
.mca_c01006{transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);}
.mc8_c01006{transform:matrix(0.197953,0.004949,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197953,0.004949,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197953,0.004949,-0.006248,0.249922,0,0);}
.m7b_c01006{transform:matrix(0.198311,0.002380,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198311,0.002380,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198311,0.002380,-0.003000,0.249982,0,0);}
.m22_c01006{transform:matrix(0.198372,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198372,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198372,0.001785,-0.002250,0.249990,0,0);}
.m8e_c01006{transform:matrix(0.198641,0.002384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198641,0.002384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198641,0.002384,-0.003000,0.249982,0,0);}
.m54_c01006{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);}
.m34_c01006{transform:matrix(0.199197,0.001793,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199197,0.001793,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199197,0.001793,-0.002250,0.249990,0,0);}
.m4e_c01006{transform:matrix(0.199993,0.003000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199993,0.003000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199993,0.003000,-0.003750,0.249972,0,0);}
.m65_c01006{transform:matrix(0.200926,0.002411,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200926,0.002411,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200926,0.002411,-0.003000,0.249982,0,0);}
.m7f_c01006{transform:matrix(0.200996,0.002412,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200996,0.002412,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200996,0.002412,-0.003000,0.249982,0,0);}
.m21_c01006{transform:matrix(0.201002,0.001809,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201002,0.001809,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201002,0.001809,-0.002250,0.249990,0,0);}
.m72_c01006{transform:matrix(0.201266,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201266,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201266,0.002415,-0.003000,0.249982,0,0);}
.m9e_c01006{transform:matrix(0.201610,0.002823,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201610,0.002823,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201610,0.002823,-0.003500,0.249976,0,0);}
.m43_c01006{transform:matrix(0.201700,0.002420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201700,0.002420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201700,0.002420,-0.003000,0.249982,0,0);}
.m45_c01006{transform:matrix(0.201800,0.002422,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201800,0.002422,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201800,0.002422,-0.003000,0.249982,0,0);}
.m6d_c01006{transform:matrix(0.203085,0.002437,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203085,0.002437,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203085,0.002437,-0.003000,0.249982,0,0);}
.m55_c01006{transform:matrix(0.203842,0.003058,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203842,0.003058,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203842,0.003058,-0.003750,0.249972,0,0);}
.m7c_c01006{transform:matrix(0.205595,0.002467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205595,0.002467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205595,0.002467,-0.003000,0.249982,0,0);}
.m51_c01006{transform:matrix(0.205607,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205607,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205607,0.003084,-0.003750,0.249972,0,0);}
.m90_c01006{transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205700,0.002468,-0.003000,0.249982,0,0);}
.m7e_c01006{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);}
.m25_c01006{transform:matrix(0.206587,0.001859,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206587,0.001859,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206587,0.001859,-0.002250,0.249990,0,0);}
.m97_c01006{transform:matrix(0.207130,0.002486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207130,0.002486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207130,0.002486,-0.003000,0.249982,0,0);}
.m36_c01006{transform:matrix(0.207152,0.001864,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207152,0.001864,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207152,0.001864,-0.002250,0.249990,0,0);}
.m2e_c01006{transform:matrix(0.207702,0.001869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207702,0.001869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207702,0.001869,-0.002250,0.249990,0,0);}
.m5_c01006{transform:matrix(0.208028,0.004161,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208028,0.004161,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208028,0.004161,-0.004999,0.249950,0,0);}
.m89_c01006{transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208100,0.002913,-0.003500,0.249976,0,0);}
.mab_c01006{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);}
.m1d_c01006{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);}
.m29_c01006{transform:matrix(0.208962,0.001881,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208962,0.001881,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208962,0.001881,-0.002250,0.249990,0,0);}
.m75_c01006{transform:matrix(0.209500,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209500,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209500,0.002514,-0.003000,0.249982,0,0);}
.me0_c01006{transform:matrix(0.209615,0.005240,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209615,0.005240,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209615,0.005240,-0.006248,0.249922,0,0);}
.m52_c01006{transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);}
.m1a_c01006{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);}
.m6b_c01006{transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);}
.m92_c01006{transform:matrix(0.211745,0.002541,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211745,0.002541,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211745,0.002541,-0.003000,0.249982,0,0);}
.mba_c01006{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);}
.mbc_c01006{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);}
.m8b_c01006{transform:matrix(0.212889,0.002980,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212889,0.002980,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212889,0.002980,-0.003500,0.249976,0,0);}
.m94_c01006{transform:matrix(0.213265,0.002559,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213265,0.002559,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213265,0.002559,-0.003000,0.249982,0,0);}
.m8_c01006{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);}
.mce_c01006{transform:matrix(0.213878,0.005347,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213878,0.005347,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213878,0.005347,-0.006248,0.249922,0,0);}
.m50_c01006{transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);}
.m23_c01006{transform:matrix(0.213946,0.001926,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213946,0.001926,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213946,0.001926,-0.002250,0.249990,0,0);}
.m85_c01006{transform:matrix(0.214565,0.002575,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214565,0.002575,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214565,0.002575,-0.003000,0.249982,0,0);}
.me1_c01006{transform:matrix(0.216562,0.005414,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216562,0.005414,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216562,0.005414,-0.006248,0.249922,0,0);}
.me8_c01006{transform:matrix(0.216622,0.005416,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216622,0.005416,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216622,0.005416,-0.006248,0.249922,0,0);}
.m61_c01006{transform:matrix(0.217016,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217016,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217016,0.003255,-0.003750,0.249972,0,0);}
.mae_c01006{transform:matrix(0.217950,0.003269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217950,0.003269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217950,0.003269,-0.003750,0.249972,0,0);}
.m96_c01006{transform:matrix(0.218104,0.002617,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218104,0.002617,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218104,0.002617,-0.003000,0.249982,0,0);}
.maa_c01006{transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);}
.m81_c01006{transform:matrix(0.219489,0.002634,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219489,0.002634,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219489,0.002634,-0.003000,0.249982,0,0);}
.mc5_c01006{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);}
.mb8_c01006{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);}
.m83_c01006{transform:matrix(0.220394,0.002645,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220394,0.002645,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220394,0.002645,-0.003000,0.249982,0,0);}
.m3e_c01006{transform:matrix(0.220869,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220869,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220869,0.002650,-0.003000,0.249982,0,0);}
.mbb_c01006{transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);}
.m7_c01006{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);}
.m60_c01006{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);}
.mb7_c01006{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);}
.m18_c01006{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m74_c01006{transform:matrix(0.227399,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227399,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227399,0.002729,-0.003000,0.249982,0,0);}
.ma1_c01006{transform:matrix(0.228053,0.003193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228053,0.003193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228053,0.003193,-0.003500,0.249976,0,0);}
.md3_c01006{transform:matrix(0.229388,0.005735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229388,0.005735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229388,0.005735,-0.006248,0.249922,0,0);}
.m10_c01006{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);}
.mde_c01006{transform:matrix(0.231418,0.005785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231418,0.005785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231418,0.005785,-0.006248,0.249922,0,0);}
.mdf_c01006{transform:matrix(0.233627,0.005841,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233627,0.005841,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233627,0.005841,-0.006248,0.249922,0,0);}
.ma9_c01006{transform:matrix(0.234409,0.003516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234409,0.003516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234409,0.003516,-0.003750,0.249972,0,0);}
.m30_c01006{transform:matrix(0.234830,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234830,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234830,0.002113,-0.002250,0.249990,0,0);}
.m84_c01006{transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);}
.ma8_c01006{transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234989,0.003525,-0.003750,0.249972,0,0);}
.m68_c01006{transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);}
.m9d_c01006{transform:matrix(0.236007,0.003304,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236007,0.003304,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236007,0.003304,-0.003500,0.249976,0,0);}
.m42_c01006{transform:matrix(0.236928,0.002843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236928,0.002843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236928,0.002843,-0.003000,0.249982,0,0);}
.mdc_c01006{transform:matrix(0.237061,0.005927,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237061,0.005927,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237061,0.005927,-0.006248,0.249922,0,0);}
.ma_c01006{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);}
.md4_c01006{transform:matrix(0.237596,0.005940,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237596,0.005940,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237596,0.005940,-0.006248,0.249922,0,0);}
.mbd_c01006{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);}
.md7_c01006{transform:matrix(0.238171,0.005954,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238171,0.005954,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238171,0.005954,-0.006248,0.249922,0,0);}
.mc0_c01006{transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);}
.mb9_c01006{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);}
.mc2_c01006{transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);}
.maf_c01006{transform:matrix(0.241618,0.003624,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241618,0.003624,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241618,0.003624,-0.003750,0.249972,0,0);}
.mb1_c01006{transform:matrix(0.243698,0.003655,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243698,0.003655,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243698,0.003655,-0.003750,0.249972,0,0);}
.m9c_c01006{transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);}
.mc7_c01006{transform:matrix(0.244599,0.006115,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244599,0.006115,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244599,0.006115,-0.006248,0.249922,0,0);}
.mc3_c01006{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);}
.mad_c01006{transform:matrix(0.245757,0.003686,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245757,0.003686,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245757,0.003686,-0.003750,0.249972,0,0);}
.m56_c01006{transform:matrix(0.246377,0.003696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246377,0.003696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246377,0.003696,-0.003750,0.249972,0,0);}
.m35_c01006{transform:matrix(0.247485,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247485,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247485,0.002227,-0.002250,0.249990,0,0);}
.m9_c01006{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m2c_c01006{transform:matrix(0.248365,0.002235,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248365,0.002235,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248365,0.002235,-0.002250,0.249990,0,0);}
.m9f_c01006{transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);}
.m1b_c01006{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);}
.m71_c01006{transform:matrix(0.252977,0.003036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252977,0.003036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252977,0.003036,-0.003000,0.249982,0,0);}
.me_c01006{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);}
.m4c_c01006{transform:matrix(0.256022,0.003072,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256022,0.003072,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256022,0.003072,-0.003000,0.249982,0,0);}
.md_c01006{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);}
.ma5_c01006{transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257600,0.003606,-0.003500,0.249976,0,0);}
.m91_c01006{transform:matrix(0.258216,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258216,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258216,0.003099,-0.003000,0.249982,0,0);}
.mbe_c01006{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m82_c01006{transform:matrix(0.260241,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260241,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260241,0.003123,-0.003000,0.249982,0,0);}
.m3a_c01006{transform:matrix(0.261684,0.002355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261684,0.002355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261684,0.002355,-0.002250,0.249990,0,0);}
.me9_c01006{transform:matrix(0.262803,0.006570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262803,0.006570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262803,0.006570,-0.006248,0.249922,0,0);}
.mb0_c01006{transform:matrix(0.263055,0.003946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263055,0.003946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263055,0.003946,-0.003750,0.249972,0,0);}
.me4_c01006{transform:matrix(0.264802,0.006620,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264802,0.006620,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264802,0.006620,-0.006248,0.249922,0,0);}
.me5_c01006{transform:matrix(0.265447,0.006636,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265447,0.006636,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265447,0.006636,-0.006248,0.249922,0,0);}
.m27_c01006{transform:matrix(0.265994,0.002394,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265994,0.002394,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265994,0.002394,-0.002250,0.249990,0,0);}
.m28_c01006{transform:matrix(0.266244,0.002396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266244,0.002396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266244,0.002396,-0.002250,0.249990,0,0);}
.m2b_c01006{transform:matrix(0.269694,0.002427,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269694,0.002427,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269694,0.002427,-0.002250,0.249990,0,0);}
.md6_c01006{transform:matrix(0.277053,0.006926,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277053,0.006926,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277053,0.006926,-0.006248,0.249922,0,0);}
.mcd_c01006{transform:matrix(0.281242,0.007031,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281242,0.007031,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281242,0.007031,-0.006248,0.249922,0,0);}
.me6_c01006{transform:matrix(0.286515,0.007163,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286515,0.007163,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286515,0.007163,-0.006248,0.249922,0,0);}
.md1_c01006{transform:matrix(0.288510,0.007213,-0.006248,0.249922,0,0);-ms-transform:matrix(0.288510,0.007213,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.288510,0.007213,-0.006248,0.249922,0,0);}
.m9a_c01006{transform:matrix(0.297759,0.003573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297759,0.003573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297759,0.003573,-0.003000,0.249982,0,0);}
.md9_c01006{transform:matrix(0.297857,0.007446,-0.006248,0.249922,0,0);-ms-transform:matrix(0.297857,0.007446,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.297857,0.007446,-0.006248,0.249922,0,0);}
.m44_c01006{transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);}
.m1_c01006{transform:matrix(0.303999,0.006080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.303999,0.006080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.303999,0.006080,-0.004999,0.249950,0,0);}
.mdb_c01006{transform:matrix(0.321105,0.008028,-0.006248,0.249922,0,0);-ms-transform:matrix(0.321105,0.008028,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.321105,0.008028,-0.006248,0.249922,0,0);}
.me2_c01006{transform:matrix(0.321934,0.008048,-0.006248,0.249922,0,0);-ms-transform:matrix(0.321934,0.008048,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.321934,0.008048,-0.006248,0.249922,0,0);}
.mb_c01006{transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332480,0.000000,0.000000,0.250000,0,0);}
.mcf_c01006{transform:matrix(0.341618,0.008540,-0.006248,0.249922,0,0);-ms-transform:matrix(0.341618,0.008540,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.341618,0.008540,-0.006248,0.249922,0,0);}
.m32_c01006{transform:matrix(0.349540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349540,0.000000,0.000000,0.250000,0,0);}
.m4d_c01006{transform:matrix(0.355134,0.004262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.355134,0.004262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.355134,0.004262,-0.003000,0.249982,0,0);}
.m3_c01006{transform:matrix(0.355334,0.007107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.355334,0.007107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.355334,0.007107,-0.004999,0.249950,0,0);}
.m2a_c01006{transform:matrix(0.355776,0.003202,-0.002250,0.249990,0,0);-ms-transform:matrix(0.355776,0.003202,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.355776,0.003202,-0.002250,0.249990,0,0);}
.mc1_c01006{transform:matrix(0.359805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359805,0.000000,0.000000,0.250000,0,0);}
.m33_c01006{transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373350,0.000000,0.000000,0.250000,0,0);}
.m93_c01006{transform:matrix(0.374398,0.004493,-0.003000,0.249982,0,0);-ms-transform:matrix(0.374398,0.004493,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.374398,0.004493,-0.003000,0.249982,0,0);}
.m0_c01006{transform:matrix(0.381269,0.007625,-0.004999,0.249950,0,0);-ms-transform:matrix(0.381269,0.007625,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.381269,0.007625,-0.004999,0.249950,0,0);}
.m41_c01006{transform:matrix(0.384187,0.004610,-0.003000,0.249982,0,0);-ms-transform:matrix(0.384187,0.004610,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.384187,0.004610,-0.003000,0.249982,0,0);}
.m2f_c01006{transform:matrix(0.399904,0.003599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.399904,0.003599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.399904,0.003599,-0.002250,0.249990,0,0);}
.m3f_c01006{transform:matrix(0.401411,0.004817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.401411,0.004817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.401411,0.004817,-0.003000,0.249982,0,0);}
.md0_c01006{transform:matrix(0.401694,0.010042,-0.006248,0.249922,0,0);-ms-transform:matrix(0.401694,0.010042,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.401694,0.010042,-0.006248,0.249922,0,0);}
.m37_c01006{transform:matrix(0.403459,0.003631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.403459,0.003631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.403459,0.003631,-0.002250,0.249990,0,0);}
.me3_c01006{transform:matrix(0.422808,0.010570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.422808,0.010570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.422808,0.010570,-0.006248,0.249922,0,0);}
.m40_c01006{transform:matrix(0.424804,0.005098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.424804,0.005098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.424804,0.005098,-0.003000,0.249982,0,0);}
.m46_c01006{transform:matrix(0.442823,0.005314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.442823,0.005314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.442823,0.005314,-0.003000,0.249982,0,0);}
.mc4_c01006{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.md2_c01006{transform:matrix(0.449989,0.011250,-0.006248,0.249922,0,0);-ms-transform:matrix(0.449989,0.011250,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.449989,0.011250,-0.006248,0.249922,0,0);}
.mc_c01006{transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460155,0.000000,0.000000,0.250000,0,0);}
.mda_c01006{transform:matrix(0.464660,0.011616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.464660,0.011616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.464660,0.011616,-0.006248,0.249922,0,0);}
.m9b_c01006{transform:matrix(0.493899,0.005927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.493899,0.005927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.493899,0.005927,-0.003000,0.249982,0,0);}
.ma7_c01006{transform:matrix(0.528131,0.007922,-0.003750,0.249972,0,0);-ms-transform:matrix(0.528131,0.007922,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.528131,0.007922,-0.003750,0.249972,0,0);}
.m4_c01006{transform:matrix(0.533808,0.010676,-0.004999,0.249950,0,0);-ms-transform:matrix(0.533808,0.010676,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.533808,0.010676,-0.004999,0.249950,0,0);}
.m2_c01006{transform:matrix(0.559073,0.011181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.559073,0.011181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.559073,0.011181,-0.004999,0.249950,0,0);}
.ma4_c01006{transform:matrix(0.637937,0.008931,-0.003500,0.249976,0,0);-ms-transform:matrix(0.637937,0.008931,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.637937,0.008931,-0.003500,0.249976,0,0);}
.meb_c01006{transform:matrix(0.663183,0.016580,-0.006248,0.249922,0,0);-ms-transform:matrix(0.663183,0.016580,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.663183,0.016580,-0.006248,0.249922,0,0);}
.m31_c01006{transform:matrix(1.084610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.084610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.084610,0.000000,0.000000,0.250000,0,0);}
.m3d_c01006{transform:matrix(1.132478,0.013590,-0.003000,0.249982,0,0);-ms-transform:matrix(1.132478,0.013590,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.132478,0.013590,-0.003000,0.249982,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls0_c01006{letter-spacing:0.000000px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:0.000000px;}
.fc0_c01006{color:transparent;}
.fse_c01006{font-size:45.150000px;}
.fs19_c01006{font-size:45.164107px;}
.fs16_c01006{font-size:47.250000px;}
.fs17_c01006{font-size:49.350000px;}
.fs15_c01006{font-size:49.355552px;}
.fs12_c01006{font-size:50.403629px;}
.fs14_c01006{font-size:50.405670px;}
.fs18_c01006{font-size:50.415748px;}
.fs13_c01006{font-size:51.455042px;}
.fsf_c01006{font-size:67.204838px;}
.fs3_c01006{font-size:68.250000px;}
.fs4_c01006{font-size:68.252764px;}
.fs10_c01006{font-size:68.254914px;}
.fsc_c01006{font-size:68.257678px;}
.fs1_c01006{font-size:69.300000px;}
.fs7_c01006{font-size:69.302807px;}
.fs8_c01006{font-size:69.304989px;}
.fsb_c01006{font-size:69.307796px;}
.fs5_c01006{font-size:70.352849px;}
.fs9_c01006{font-size:70.355065px;}
.fsa_c01006{font-size:71.405141px;}
.fs11_c01006{font-size:71.406997px;}
.fsd_c01006{font-size:74.558386px;}
.fs2_c01006{font-size:75.600000px;}
.fs6_c01006{font-size:92.400000px;}
.fs0_c01006{font-size:128.125617px;}
.y0_c01006{bottom:0.000000px;}
.yd1_c01006{bottom:153.616125px;}
.yd0_c01006{bottom:153.899663px;}
.ycf_c01006{bottom:155.342850px;}
.yce_c01006{bottom:155.758088px;}
.ycd_c01006{bottom:156.283388px;}
.ycc_c01006{bottom:156.494587px;}
.ycb_c01006{bottom:157.197488px;}
.yca_c01006{bottom:157.926600px;}
.yc9_c01006{bottom:158.481863px;}
.yc8_c01006{bottom:158.675213px;}
.yc7_c01006{bottom:159.340988px;}
.yc6_c01006{bottom:159.873338px;}
.yc5_c01006{bottom:160.634550px;}
.yc4_c01006{bottom:160.987838px;}
.yc3_c01006{bottom:161.465063px;}
.yc2_c01006{bottom:161.766938px;}
.yc1_c01006{bottom:162.262950px;}
.yc0_c01006{bottom:171.077513px;}
.ybf_c01006{bottom:171.865837px;}
.ybe_c01006{bottom:172.366013px;}
.ybd_c01006{bottom:172.694625px;}
.ybc_c01006{bottom:173.380200px;}
.ybb_c01006{bottom:174.193988px;}
.yba_c01006{bottom:174.730125px;}
.yb9_c01006{bottom:175.591500px;}
.yb8_c01006{bottom:176.087137px;}
.yb7_c01006{bottom:176.646187px;}
.yb6_c01006{bottom:177.152625px;}
.yb5_c01006{bottom:177.369750px;}
.yb4_c01006{bottom:178.408238px;}
.yb3_c01006{bottom:178.799288px;}
.yb2_c01006{bottom:179.222213px;}
.yb1_c01006{bottom:179.591138px;}
.yb0_c01006{bottom:180.501937px;}
.yaf_c01006{bottom:180.925688px;}
.yae_c01006{bottom:181.370700px;}
.yad_c01006{bottom:182.847150px;}
.yac_c01006{bottom:183.139500px;}
.yab_c01006{bottom:187.639500px;}
.yaa_c01006{bottom:201.606000px;}
.ya9_c01006{bottom:205.864028px;}
.ya7_c01006{bottom:205.864748px;}
.ya8_c01006{bottom:205.864755px;}
.ya6_c01006{bottom:218.711528px;}
.ya5_c01006{bottom:219.472298px;}
.ya4_c01006{bottom:219.736245px;}
.ya3_c01006{bottom:219.853808px;}
.ya2_c01006{bottom:220.351778px;}
.ya1_c01006{bottom:222.032888px;}
.ya0_c01006{bottom:222.672788px;}
.y9f_c01006{bottom:223.358250px;}
.y9e_c01006{bottom:223.791555px;}
.y9d_c01006{bottom:224.103000px;}
.y9c_c01006{bottom:236.020752px;}
.y9b_c01006{bottom:236.186631px;}
.y9a_c01006{bottom:236.806173px;}
.y99_c01006{bottom:236.999310px;}
.y98_c01006{bottom:237.907371px;}
.y97_c01006{bottom:238.190262px;}
.y96_c01006{bottom:239.188350px;}
.y95_c01006{bottom:239.899032px;}
.y94_c01006{bottom:240.280203px;}
.y93_c01006{bottom:241.369578px;}
.y92_c01006{bottom:241.921500px;}
.y91_c01006{bottom:252.940326px;}
.y90_c01006{bottom:253.763970px;}
.y8f_c01006{bottom:253.938138px;}
.y8e_c01006{bottom:254.174298px;}
.y8d_c01006{bottom:254.784660px;}
.y8c_c01006{bottom:255.017310px;}
.y8b_c01006{bottom:255.622992px;}
.y8a_c01006{bottom:255.959700px;}
.y89_c01006{bottom:256.113060px;}
.y88_c01006{bottom:256.429932px;}
.y87_c01006{bottom:257.129880px;}
.y86_c01006{bottom:257.778024px;}
.y85_c01006{bottom:258.037170px;}
.y84_c01006{bottom:258.931500px;}
.y83_c01006{bottom:313.820907px;}
.y82_c01006{bottom:314.307624px;}
.y81_c01006{bottom:314.785227px;}
.y80_c01006{bottom:315.097287px;}
.y7f_c01006{bottom:315.865614px;}
.y7e_c01006{bottom:316.629846px;}
.y7d_c01006{bottom:316.942809px;}
.y7c_c01006{bottom:317.253000px;}
.y7b_c01006{bottom:335.795670px;}
.y7a_c01006{bottom:336.378102px;}
.y79_c01006{bottom:337.526118px;}
.y78_c01006{bottom:338.628732px;}
.y77_c01006{bottom:339.548460px;}
.y76_c01006{bottom:340.065378px;}
.y75_c01006{bottom:340.468098px;}
.y74_c01006{bottom:357.573924px;}
.y73_c01006{bottom:358.021032px;}
.y72_c01006{bottom:358.290054px;}
.y71_c01006{bottom:358.934910px;}
.y70_c01006{bottom:359.246472px;}
.y6f_c01006{bottom:359.654820px;}
.y6e_c01006{bottom:360.221820px;}
.y6d_c01006{bottom:360.810756px;}
.y6c_c01006{bottom:361.139604px;}
.y6b_c01006{bottom:362.610072px;}
.y6a_c01006{bottom:381.846120px;}
.y69_c01006{bottom:382.108110px;}
.y68_c01006{bottom:382.575264px;}
.y67_c01006{bottom:382.847280px;}
.y66_c01006{bottom:383.453430px;}
.y65_c01006{bottom:383.838414px;}
.y64_c01006{bottom:384.328194px;}
.y63_c01006{bottom:385.021500px;}
.y62_c01006{bottom:403.689354px;}
.y61_c01006{bottom:404.739978px;}
.y60_c01006{bottom:405.300534px;}
.y5f_c01006{bottom:405.530160px;}
.y5e_c01006{bottom:405.978216px;}
.y5d_c01006{bottom:406.279158px;}
.y5c_c01006{bottom:406.923954px;}
.y5b_c01006{bottom:407.701500px;}
.y5a_c01006{bottom:458.190000px;}
.y59_c01006{bottom:464.079877px;}
.y58_c01006{bottom:465.693368px;}
.y57_c01006{bottom:466.832948px;}
.y56_c01006{bottom:483.789922px;}
.y55_c01006{bottom:483.996908px;}
.y54_c01006{bottom:484.598325px;}
.y53_c01006{bottom:484.911142px;}
.y52_c01006{bottom:485.524755px;}
.y51_c01006{bottom:486.207607px;}
.y50_c01006{bottom:486.786112px;}
.y4f_c01006{bottom:487.028003px;}
.y4e_c01006{bottom:487.599052px;}
.y4d_c01006{bottom:487.890780px;}
.y4c_c01006{bottom:505.545150px;}
.y4b_c01006{bottom:505.832857px;}
.y4a_c01006{bottom:506.546670px;}
.y49_c01006{bottom:507.222345px;}
.y48_c01006{bottom:507.748732px;}
.y47_c01006{bottom:508.368855px;}
.y46_c01006{bottom:509.040907px;}
.y45_c01006{bottom:509.659770px;}
.y44_c01006{bottom:510.033000px;}
.y43_c01006{bottom:528.803610px;}
.y42_c01006{bottom:529.800522px;}
.y41_c01006{bottom:530.329380px;}
.y40_c01006{bottom:530.674980px;}
.y3f_c01006{bottom:531.456378px;}
.y3e_c01006{bottom:531.916620px;}
.y3d_c01006{bottom:532.441500px;}
.y3c_c01006{bottom:561.874590px;}
.y3b_c01006{bottom:588.944184px;}
.y3a_c01006{bottom:589.541820px;}
.y39_c01006{bottom:590.003862px;}
.y38_c01006{bottom:590.457156px;}
.y37_c01006{bottom:590.743968px;}
.y36_c01006{bottom:591.338094px;}
.y35_c01006{bottom:591.959742px;}
.y34_c01006{bottom:592.480770px;}
.y33_c01006{bottom:593.196000px;}
.y32_c01006{bottom:657.527100px;}
.y31_c01006{bottom:657.825625px;}
.y30_c01006{bottom:658.159062px;}
.y2f_c01006{bottom:658.559890px;}
.y2e_c01006{bottom:658.775864px;}
.y2d_c01006{bottom:659.145628px;}
.y2c_c01006{bottom:659.453982px;}
.y2b_c01006{bottom:659.730921px;}
.y2a_c01006{bottom:660.421500px;}
.y29_c01006{bottom:688.033500px;}
.y28_c01006{bottom:716.756312px;}
.y27_c01006{bottom:716.934421px;}
.y26_c01006{bottom:717.112747px;}
.y25_c01006{bottom:717.726371px;}
.y24_c01006{bottom:718.300866px;}
.y23_c01006{bottom:718.677823px;}
.y22_c01006{bottom:718.875334px;}
.y21_c01006{bottom:719.550159px;}
.y20_c01006{bottom:739.194324px;}
.y1f_c01006{bottom:739.694796px;}
.y1e_c01006{bottom:739.917708px;}
.y1d_c01006{bottom:740.355459px;}
.y1c_c01006{bottom:740.734526px;}
.y1b_c01006{bottom:741.420069px;}
.y1a_c01006{bottom:741.985773px;}
.y19_c01006{bottom:742.231500px;}
.y18_c01006{bottom:762.003000px;}
.y17_c01006{bottom:762.382500px;}
.y16_c01006{bottom:762.943500px;}
.y15_c01006{bottom:763.360500px;}
.y14_c01006{bottom:763.552500px;}
.y13_c01006{bottom:763.737000px;}
.y12_c01006{bottom:764.274000px;}
.y11_c01006{bottom:764.508000px;}
.y10_c01006{bottom:764.911500px;}
.yf_c01006{bottom:784.816500px;}
.ye_c01006{bottom:785.146500px;}
.yd_c01006{bottom:785.410500px;}
.yc_c01006{bottom:785.658000px;}
.yb_c01006{bottom:786.187500px;}
.ya_c01006{bottom:786.393000px;}
.y9_c01006{bottom:786.780000px;}
.y8_c01006{bottom:787.051500px;}
.y7_c01006{bottom:808.074000px;}
.y6_c01006{bottom:851.553420px;}
.y5_c01006{bottom:853.076880px;}
.y4_c01006{bottom:854.384400px;}
.y3_c01006{bottom:855.853110px;}
.y2_c01006{bottom:856.525170px;}
.y1_c01006{bottom:858.007500px;}
.h10_c01006{height:45.150000px;}
.h1b_c01006{height:45.164107px;}
.h18_c01006{height:47.250000px;}
.h19_c01006{height:49.350000px;}
.h17_c01006{height:49.355552px;}
.h14_c01006{height:50.403629px;}
.h16_c01006{height:50.405670px;}
.h1a_c01006{height:50.415748px;}
.h15_c01006{height:51.455042px;}
.h11_c01006{height:67.204838px;}
.h5_c01006{height:68.250000px;}
.h6_c01006{height:68.252764px;}
.h12_c01006{height:68.254914px;}
.he_c01006{height:68.257678px;}
.h3_c01006{height:69.300000px;}
.h9_c01006{height:69.302807px;}
.ha_c01006{height:69.304989px;}
.hd_c01006{height:69.307796px;}
.h7_c01006{height:70.352849px;}
.hb_c01006{height:70.355065px;}
.hc_c01006{height:71.405141px;}
.h13_c01006{height:71.406997px;}
.hf_c01006{height:74.558386px;}
.h4_c01006{height:75.600000px;}
.h8_c01006{height:92.400000px;}
.h2_c01006{height:128.125617px;}
.h1_c01006{height:1005.000000px;}
.h0_c01006{height:1005.150000px;}
.w0_c01006{width:715.200000px;}
.w1_c01006{width:715.500000px;}
.x0_c01006{left:0.000000px;}
.x8f_c01006{left:93.140812px;}
.x72_c01006{left:94.638000px;}
.x79_c01006{left:96.498000px;}
.x6c_c01006{left:101.130000px;}
.x86_c01006{left:112.999500px;}
.x7f_c01006{left:114.211972px;}
.x7a_c01006{left:117.261000px;}
.x90_c01006{left:122.347162px;}
.x17_c01006{left:126.787500px;}
.x34_c01006{left:128.047500px;}
.x73_c01006{left:134.061000px;}
.x7_c01006{left:135.270000px;}
.x20_c01006{left:136.506000px;}
.x65_c01006{left:137.515500px;}
.x91_c01006{left:140.125725px;}
.x7b_c01006{left:146.148000px;}
.x82_c01006{left:154.440000px;}
.x47_c01006{left:157.294260px;}
.x66_c01006{left:159.672000px;}
.x41_c01006{left:161.311500px;}
.x21_c01006{left:163.809000px;}
.x1_c01006{left:165.454500px;}
.x92_c01006{left:168.220350px;}
.x10_c01006{left:170.260500px;}
.x18_c01006{left:171.598500px;}
.x6d_c01006{left:175.657500px;}
.x3d_c01006{left:180.462000px;}
.x67_c01006{left:182.026500px;}
.x8_c01006{left:183.600000px;}
.x35_c01006{left:187.650000px;}
.x2d_c01006{left:189.540000px;}
.x7c_c01006{left:191.845500px;}
.x56_c01006{left:193.429500px;}
.x19_c01006{left:197.550000px;}
.x4f_c01006{left:200.179500px;}
.x80_c01006{left:201.431092px;}
.x27_c01006{left:203.430732px;}
.x9_c01006{left:204.660000px;}
.x87_c01006{left:206.808000px;}
.x83_c01006{left:207.900000px;}
.x2f_c01006{left:212.682000px;}
.x48_c01006{left:215.291115px;}
.x11_c01006{left:218.628000px;}
.x28_c01006{left:223.209557px;}
.x22_c01006{left:226.665000px;}
.x36_c01006{left:231.069000px;}
.x57_c01006{left:234.244500px;}
.x84_c01006{left:235.440000px;}
.x68_c01006{left:236.614500px;}
.x2_c01006{left:239.571000px;}
.x5c_c01006{left:242.290812px;}
.x12_c01006{left:244.248000px;}
.x42_c01006{left:247.372500px;}
.x4d_c01006{left:250.007407px;}
.x61_c01006{left:251.178000px;}
.x50_c01006{left:253.912500px;}
.x1a_c01006{left:257.197500px;}
.x29_c01006{left:260.926719px;}
.xa_c01006{left:262.980000px;}
.x93_c01006{left:265.133737px;}
.x58_c01006{left:266.326500px;}
.x3c_c01006{left:267.559284px;}
.x3_c01006{left:273.174000px;}
.x88_c01006{left:274.914000px;}
.x1b_c01006{left:277.755000px;}
.x51_c01006{left:278.991000px;}
.x37_c01006{left:282.873000px;}
.x3e_c01006{left:283.932000px;}
.x81_c01006{left:285.930000px;}
.x43_c01006{left:288.714000px;}
.x74_c01006{left:289.863000px;}
.x69_c01006{left:291.495000px;}
.xb_c01006{left:296.730000px;}
.x1c_c01006{left:299.085000px;}
.x23_c01006{left:302.836500px;}
.x94_c01006{left:304.312575px;}
.x49_c01006{left:305.482987px;}
.x5d_c01006{left:307.896246px;}
.x13_c01006{left:310.432500px;}
.x3f_c01006{left:312.732000px;}
.x6a_c01006{left:313.785000px;}
.x52_c01006{left:316.329000px;}
.x2a_c01006{left:318.425706px;}
.x62_c01006{left:320.059188px;}
.x44_c01006{left:323.806500px;}
.x38_c01006{left:332.383500px;}
.x53_c01006{left:335.464500px;}
.x59_c01006{left:339.507000px;}
.x14_c01006{left:341.443500px;}
.x30_c01006{left:342.796500px;}
.x1d_c01006{left:345.483000px;}
.x4_c01006{left:346.609500px;}
.x6b_c01006{left:347.899500px;}
.x4a_c01006{left:349.291140px;}
.x39_c01006{left:356.284500px;}
.x75_c01006{left:361.155000px;}
.x45_c01006{left:368.851500px;}
.xc_c01006{left:369.900000px;}
.x2e_c01006{left:371.520000px;}
.x15_c01006{left:374.389500px;}
.x6e_c01006{left:376.839000px;}
.x5a_c01006{left:378.436500px;}
.x2b_c01006{left:379.772153px;}
.x54_c01006{left:382.177500px;}
.x85_c01006{left:384.210000px;}
.x31_c01006{left:387.333000px;}
.x63_c01006{left:391.848750px;}
.x24_c01006{left:393.594000px;}
.xd_c01006{left:396.360000px;}
.x2c_c01006{left:397.585991px;}
.x5b_c01006{left:400.269000px;}
.x89_c01006{left:403.225500px;}
.x7d_c01006{left:405.211500px;}
.x1e_c01006{left:407.841000px;}
.x5_c01006{left:411.985500px;}
.x4b_c01006{left:414.641130px;}
.x16_c01006{left:415.669500px;}
.x25_c01006{left:418.362000px;}
.x32_c01006{left:424.381500px;}
.xe_c01006{left:425.520000px;}
.x64_c01006{left:428.258004px;}
.x4c_c01006{left:429.440355px;}
.x3a_c01006{left:432.562500px;}
.x46_c01006{left:435.619500px;}
.x8a_c01006{left:437.680500px;}
.x40_c01006{left:439.879500px;}
.x5e_c01006{left:445.873434px;}
.x1f_c01006{left:449.940000px;}
.x7e_c01006{left:455.929500px;}
.x33_c01006{left:457.551000px;}
.x76_c01006{left:460.018500px;}
.x5f_c01006{left:465.041466px;}
.x55_c01006{left:469.729500px;}
.x26_c01006{left:473.970000px;}
.x95_c01006{left:475.871850px;}
.x3b_c01006{left:482.365500px;}
.x6_c01006{left:488.158500px;}
.x8b_c01006{left:491.677500px;}
.x60_c01006{left:496.924692px;}
.xf_c01006{left:499.230000px;}
.x96_c01006{left:500.286225px;}
.x77_c01006{left:504.271500px;}
.x78_c01006{left:516.120000px;}
.x6f_c01006{left:517.243500px;}
.x8c_c01006{left:519.100500px;}
.x70_c01006{left:531.757500px;}
.x8d_c01006{left:552.252000px;}
.x8e_c01006{left:583.785000px;}
.x97_c01006{left:585.150675px;}
.x71_c01006{left:600.394500px;}
.x98_c01006{left:601.835512px;}
.x4e_c01006{left:620.730000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ws0_c01006{word-spacing:0.000000pt;}
.fse_c01006{font-size:40.133333pt;}
.fs19_c01006{font-size:40.145873pt;}
.fs16_c01006{font-size:42.000000pt;}
.fs17_c01006{font-size:43.866667pt;}
.fs15_c01006{font-size:43.871601pt;}
.fs12_c01006{font-size:44.803225pt;}
.fs14_c01006{font-size:44.805040pt;}
.fs18_c01006{font-size:44.813998pt;}
.fs13_c01006{font-size:45.737815pt;}
.fsf_c01006{font-size:59.737634pt;}
.fs3_c01006{font-size:60.666667pt;}
.fs4_c01006{font-size:60.669124pt;}
.fs10_c01006{font-size:60.671035pt;}
.fsc_c01006{font-size:60.673491pt;}
.fs1_c01006{font-size:61.600000pt;}
.fs7_c01006{font-size:61.602495pt;}
.fs8_c01006{font-size:61.604435pt;}
.fsb_c01006{font-size:61.606930pt;}
.fs5_c01006{font-size:62.535866pt;}
.fs9_c01006{font-size:62.537836pt;}
.fsa_c01006{font-size:63.471236pt;}
.fs11_c01006{font-size:63.472886pt;}
.fsd_c01006{font-size:66.274121pt;}
.fs2_c01006{font-size:67.200000pt;}
.fs6_c01006{font-size:82.133333pt;}
.fs0_c01006{font-size:113.889438pt;}
.y0_c01006{bottom:0.000000pt;}
.yd1_c01006{bottom:136.547667pt;}
.yd0_c01006{bottom:136.799700pt;}
.ycf_c01006{bottom:138.082533pt;}
.yce_c01006{bottom:138.451633pt;}
.ycd_c01006{bottom:138.918567pt;}
.ycc_c01006{bottom:139.106300pt;}
.ycb_c01006{bottom:139.731100pt;}
.yca_c01006{bottom:140.379200pt;}
.yc9_c01006{bottom:140.872767pt;}
.yc8_c01006{bottom:141.044633pt;}
.yc7_c01006{bottom:141.636433pt;}
.yc6_c01006{bottom:142.109633pt;}
.yc5_c01006{bottom:142.786267pt;}
.yc4_c01006{bottom:143.100300pt;}
.yc3_c01006{bottom:143.524500pt;}
.yc2_c01006{bottom:143.792833pt;}
.yc1_c01006{bottom:144.233733pt;}
.yc0_c01006{bottom:152.068900pt;}
.ybf_c01006{bottom:152.769633pt;}
.ybe_c01006{bottom:153.214233pt;}
.ybd_c01006{bottom:153.506333pt;}
.ybc_c01006{bottom:154.115733pt;}
.ybb_c01006{bottom:154.839100pt;}
.yba_c01006{bottom:155.315667pt;}
.yb9_c01006{bottom:156.081333pt;}
.yb8_c01006{bottom:156.521900pt;}
.yb7_c01006{bottom:157.018833pt;}
.yb6_c01006{bottom:157.469000pt;}
.yb5_c01006{bottom:157.662000pt;}
.yb4_c01006{bottom:158.585100pt;}
.yb3_c01006{bottom:158.932700pt;}
.yb2_c01006{bottom:159.308633pt;}
.yb1_c01006{bottom:159.636567pt;}
.yb0_c01006{bottom:160.446167pt;}
.yaf_c01006{bottom:160.822833pt;}
.yae_c01006{bottom:161.218400pt;}
.yad_c01006{bottom:162.530800pt;}
.yac_c01006{bottom:162.790667pt;}
.yab_c01006{bottom:166.790667pt;}
.yaa_c01006{bottom:179.205333pt;}
.ya9_c01006{bottom:182.990247pt;}
.ya7_c01006{bottom:182.990887pt;}
.ya8_c01006{bottom:182.990893pt;}
.ya6_c01006{bottom:194.410247pt;}
.ya5_c01006{bottom:195.086487pt;}
.ya4_c01006{bottom:195.321107pt;}
.ya3_c01006{bottom:195.425607pt;}
.ya2_c01006{bottom:195.868247pt;}
.ya1_c01006{bottom:197.362567pt;}
.ya0_c01006{bottom:197.931367pt;}
.y9f_c01006{bottom:198.540667pt;}
.y9e_c01006{bottom:198.925827pt;}
.y9d_c01006{bottom:199.202667pt;}
.y9c_c01006{bottom:209.796224pt;}
.y9b_c01006{bottom:209.943672pt;}
.y9a_c01006{bottom:210.494376pt;}
.y99_c01006{bottom:210.666053pt;}
.y98_c01006{bottom:211.473219pt;}
.y97_c01006{bottom:211.724677pt;}
.y96_c01006{bottom:212.611867pt;}
.y95_c01006{bottom:213.243584pt;}
.y94_c01006{bottom:213.582403pt;}
.y93_c01006{bottom:214.550736pt;}
.y92_c01006{bottom:215.041333pt;}
.y91_c01006{bottom:224.835845pt;}
.y90_c01006{bottom:225.567973pt;}
.y8f_c01006{bottom:225.722789pt;}
.y8e_c01006{bottom:225.932709pt;}
.y8d_c01006{bottom:226.475253pt;}
.y8c_c01006{bottom:226.682053pt;}
.y8b_c01006{bottom:227.220437pt;}
.y8a_c01006{bottom:227.519733pt;}
.y89_c01006{bottom:227.656053pt;}
.y88_c01006{bottom:227.937717pt;}
.y87_c01006{bottom:228.559893pt;}
.y86_c01006{bottom:229.136021pt;}
.y85_c01006{bottom:229.366373pt;}
.y84_c01006{bottom:230.161333pt;}
.y83_c01006{bottom:278.951917pt;}
.y82_c01006{bottom:279.384555pt;}
.y81_c01006{bottom:279.809091pt;}
.y80_c01006{bottom:280.086477pt;}
.y7f_c01006{bottom:280.769435pt;}
.y7e_c01006{bottom:281.448752pt;}
.y7d_c01006{bottom:281.726941pt;}
.y7c_c01006{bottom:282.002667pt;}
.y7b_c01006{bottom:298.485040pt;}
.y7a_c01006{bottom:299.002757pt;}
.y79_c01006{bottom:300.023216pt;}
.y78_c01006{bottom:301.003317pt;}
.y77_c01006{bottom:301.820853pt;}
.y76_c01006{bottom:302.280336pt;}
.y75_c01006{bottom:302.638309pt;}
.y74_c01006{bottom:317.843488pt;}
.y73_c01006{bottom:318.240917pt;}
.y72_c01006{bottom:318.480048pt;}
.y71_c01006{bottom:319.053253pt;}
.y70_c01006{bottom:319.330197pt;}
.y6f_c01006{bottom:319.693173pt;}
.y6e_c01006{bottom:320.197173pt;}
.y6d_c01006{bottom:320.720672pt;}
.y6c_c01006{bottom:321.012981pt;}
.y6b_c01006{bottom:322.320064pt;}
.y6a_c01006{bottom:339.418773pt;}
.y69_c01006{bottom:339.651653pt;}
.y68_c01006{bottom:340.066901pt;}
.y67_c01006{bottom:340.308693pt;}
.y66_c01006{bottom:340.847493pt;}
.y65_c01006{bottom:341.189701pt;}
.y64_c01006{bottom:341.625061pt;}
.y63_c01006{bottom:342.241333pt;}
.y62_c01006{bottom:358.834981pt;}
.y61_c01006{bottom:359.768869pt;}
.y60_c01006{bottom:360.267141pt;}
.y5f_c01006{bottom:360.471253pt;}
.y5e_c01006{bottom:360.869525pt;}
.y5d_c01006{bottom:361.137029pt;}
.y5c_c01006{bottom:361.710181pt;}
.y5b_c01006{bottom:362.401333pt;}
.y5a_c01006{bottom:407.280000pt;}
.y59_c01006{bottom:412.515447pt;}
.y58_c01006{bottom:413.949660pt;}
.y57_c01006{bottom:414.962620pt;}
.y56_c01006{bottom:430.035487pt;}
.y55_c01006{bottom:430.219473pt;}
.y54_c01006{bottom:430.754067pt;}
.y53_c01006{bottom:431.032127pt;}
.y52_c01006{bottom:431.577560pt;}
.y51_c01006{bottom:432.184540pt;}
.y50_c01006{bottom:432.698767pt;}
.y4f_c01006{bottom:432.913780pt;}
.y4e_c01006{bottom:433.421380pt;}
.y4d_c01006{bottom:433.680693pt;}
.y4c_c01006{bottom:449.373467pt;}
.y4b_c01006{bottom:449.629207pt;}
.y4a_c01006{bottom:450.263707pt;}
.y49_c01006{bottom:450.864307pt;}
.y48_c01006{bottom:451.332207pt;}
.y47_c01006{bottom:451.883427pt;}
.y46_c01006{bottom:452.480807pt;}
.y45_c01006{bottom:453.030907pt;}
.y44_c01006{bottom:453.362667pt;}
.y43_c01006{bottom:470.047653pt;}
.y42_c01006{bottom:470.933797pt;}
.y41_c01006{bottom:471.403893pt;}
.y40_c01006{bottom:471.711093pt;}
.y3f_c01006{bottom:472.405669pt;}
.y3e_c01006{bottom:472.814773pt;}
.y3d_c01006{bottom:473.281333pt;}
.y3c_c01006{bottom:499.444080pt;}
.y3b_c01006{bottom:523.505941pt;}
.y3a_c01006{bottom:524.037173pt;}
.y39_c01006{bottom:524.447877pt;}
.y38_c01006{bottom:524.850805pt;}
.y37_c01006{bottom:525.105749pt;}
.y36_c01006{bottom:525.633861pt;}
.y35_c01006{bottom:526.186437pt;}
.y34_c01006{bottom:526.649573pt;}
.y33_c01006{bottom:527.285333pt;}
.y32_c01006{bottom:584.468533pt;}
.y31_c01006{bottom:584.733889pt;}
.y30_c01006{bottom:585.030277pt;}
.y2f_c01006{bottom:585.386569pt;}
.y2e_c01006{bottom:585.578545pt;}
.y2d_c01006{bottom:585.907225pt;}
.y2c_c01006{bottom:586.181317pt;}
.y2b_c01006{bottom:586.427485pt;}
.y2a_c01006{bottom:587.041333pt;}
.y29_c01006{bottom:611.585333pt;}
.y28_c01006{bottom:637.116721pt;}
.y27_c01006{bottom:637.275041pt;}
.y26_c01006{bottom:637.433553pt;}
.y25_c01006{bottom:637.978996pt;}
.y24_c01006{bottom:638.489659pt;}
.y23_c01006{bottom:638.824732pt;}
.y22_c01006{bottom:639.000297pt;}
.y21_c01006{bottom:639.600141pt;}
.y20_c01006{bottom:657.061621pt;}
.y1f_c01006{bottom:657.506485pt;}
.y1e_c01006{bottom:657.704629pt;}
.y1d_c01006{bottom:658.093741pt;}
.y1c_c01006{bottom:658.430689pt;}
.y1b_c01006{bottom:659.040061pt;}
.y1a_c01006{bottom:659.542909pt;}
.y19_c01006{bottom:659.761333pt;}
.y18_c01006{bottom:677.336000pt;}
.y17_c01006{bottom:677.673333pt;}
.y16_c01006{bottom:678.172000pt;}
.y15_c01006{bottom:678.542667pt;}
.y14_c01006{bottom:678.713333pt;}
.y13_c01006{bottom:678.877333pt;}
.y12_c01006{bottom:679.354667pt;}
.y11_c01006{bottom:679.562667pt;}
.y10_c01006{bottom:679.921333pt;}
.yf_c01006{bottom:697.614667pt;}
.ye_c01006{bottom:697.908000pt;}
.yd_c01006{bottom:698.142667pt;}
.yc_c01006{bottom:698.362667pt;}
.yb_c01006{bottom:698.833333pt;}
.ya_c01006{bottom:699.016000pt;}
.y9_c01006{bottom:699.360000pt;}
.y8_c01006{bottom:699.601333pt;}
.y7_c01006{bottom:718.288000pt;}
.y6_c01006{bottom:756.936373pt;}
.y5_c01006{bottom:758.290560pt;}
.y4_c01006{bottom:759.452800pt;}
.y3_c01006{bottom:760.758320pt;}
.y2_c01006{bottom:761.355707pt;}
.y1_c01006{bottom:762.673333pt;}
.h10_c01006{height:40.133333pt;}
.h1b_c01006{height:40.145873pt;}
.h18_c01006{height:42.000000pt;}
.h19_c01006{height:43.866667pt;}
.h17_c01006{height:43.871601pt;}
.h14_c01006{height:44.803225pt;}
.h16_c01006{height:44.805040pt;}
.h1a_c01006{height:44.813998pt;}
.h15_c01006{height:45.737815pt;}
.h11_c01006{height:59.737634pt;}
.h5_c01006{height:60.666667pt;}
.h6_c01006{height:60.669124pt;}
.h12_c01006{height:60.671035pt;}
.he_c01006{height:60.673491pt;}
.h3_c01006{height:61.600000pt;}
.h9_c01006{height:61.602495pt;}
.ha_c01006{height:61.604435pt;}
.hd_c01006{height:61.606930pt;}
.h7_c01006{height:62.535866pt;}
.hb_c01006{height:62.537836pt;}
.hc_c01006{height:63.471236pt;}
.h13_c01006{height:63.472886pt;}
.hf_c01006{height:66.274121pt;}
.h4_c01006{height:67.200000pt;}
.h8_c01006{height:82.133333pt;}
.h2_c01006{height:113.889438pt;}
.h1_c01006{height:893.333333pt;}
.h0_c01006{height:893.466667pt;}
.w0_c01006{width:635.733333pt;}
.w1_c01006{width:636.000000pt;}
.x0_c01006{left:0.000000pt;}
.x8f_c01006{left:82.791833pt;}
.x72_c01006{left:84.122667pt;}
.x79_c01006{left:85.776000pt;}
.x6c_c01006{left:89.893333pt;}
.x86_c01006{left:100.444000pt;}
.x7f_c01006{left:101.521753pt;}
.x7a_c01006{left:104.232000pt;}
.x90_c01006{left:108.753033pt;}
.x17_c01006{left:112.700000pt;}
.x34_c01006{left:113.820000pt;}
.x73_c01006{left:119.165333pt;}
.x7_c01006{left:120.240000pt;}
.x20_c01006{left:121.338667pt;}
.x65_c01006{left:122.236000pt;}
.x91_c01006{left:124.556200pt;}
.x7b_c01006{left:129.909333pt;}
.x82_c01006{left:137.280000pt;}
.x47_c01006{left:139.817120pt;}
.x66_c01006{left:141.930667pt;}
.x41_c01006{left:143.388000pt;}
.x21_c01006{left:145.608000pt;}
.x1_c01006{left:147.070667pt;}
.x92_c01006{left:149.529200pt;}
.x10_c01006{left:151.342667pt;}
.x18_c01006{left:152.532000pt;}
.x6d_c01006{left:156.140000pt;}
.x3d_c01006{left:160.410667pt;}
.x67_c01006{left:161.801333pt;}
.x8_c01006{left:163.200000pt;}
.x35_c01006{left:166.800000pt;}
.x2d_c01006{left:168.480000pt;}
.x7c_c01006{left:170.529333pt;}
.x56_c01006{left:171.937333pt;}
.x19_c01006{left:175.600000pt;}
.x4f_c01006{left:177.937333pt;}
.x80_c01006{left:179.049860pt;}
.x27_c01006{left:180.827317pt;}
.x9_c01006{left:181.920000pt;}
.x87_c01006{left:183.829333pt;}
.x83_c01006{left:184.800000pt;}
.x2f_c01006{left:189.050667pt;}
.x48_c01006{left:191.369880pt;}
.x11_c01006{left:194.336000pt;}
.x28_c01006{left:198.408495pt;}
.x22_c01006{left:201.480000pt;}
.x36_c01006{left:205.394667pt;}
.x57_c01006{left:208.217333pt;}
.x84_c01006{left:209.280000pt;}
.x68_c01006{left:210.324000pt;}
.x2_c01006{left:212.952000pt;}
.x5c_c01006{left:215.369611pt;}
.x12_c01006{left:217.109333pt;}
.x42_c01006{left:219.886667pt;}
.x4d_c01006{left:222.228807pt;}
.x61_c01006{left:223.269333pt;}
.x50_c01006{left:225.700000pt;}
.x1a_c01006{left:228.620000pt;}
.x29_c01006{left:231.934861pt;}
.xa_c01006{left:233.760000pt;}
.x93_c01006{left:235.674433pt;}
.x58_c01006{left:236.734667pt;}
.x3c_c01006{left:237.830475pt;}
.x3_c01006{left:242.821333pt;}
.x88_c01006{left:244.368000pt;}
.x1b_c01006{left:246.893333pt;}
.x51_c01006{left:247.992000pt;}
.x37_c01006{left:251.442667pt;}
.x3e_c01006{left:252.384000pt;}
.x81_c01006{left:254.160000pt;}
.x43_c01006{left:256.634667pt;}
.x74_c01006{left:257.656000pt;}
.x69_c01006{left:259.106667pt;}
.xb_c01006{left:263.760000pt;}
.x1c_c01006{left:265.853333pt;}
.x23_c01006{left:269.188000pt;}
.x94_c01006{left:270.500067pt;}
.x49_c01006{left:271.540433pt;}
.x5d_c01006{left:273.685552pt;}
.x13_c01006{left:275.940000pt;}
.x3f_c01006{left:277.984000pt;}
.x6a_c01006{left:278.920000pt;}
.x52_c01006{left:281.181333pt;}
.x2a_c01006{left:283.045072pt;}
.x62_c01006{left:284.497056pt;}
.x44_c01006{left:287.828000pt;}
.x38_c01006{left:295.452000pt;}
.x53_c01006{left:298.190667pt;}
.x59_c01006{left:301.784000pt;}
.x14_c01006{left:303.505333pt;}
.x30_c01006{left:304.708000pt;}
.x1d_c01006{left:307.096000pt;}
.x4_c01006{left:308.097333pt;}
.x6b_c01006{left:309.244000pt;}
.x4a_c01006{left:310.481013pt;}
.x39_c01006{left:316.697333pt;}
.x75_c01006{left:321.026667pt;}
.x45_c01006{left:327.868000pt;}
.xc_c01006{left:328.800000pt;}
.x2e_c01006{left:330.240000pt;}
.x15_c01006{left:332.790667pt;}
.x6e_c01006{left:334.968000pt;}
.x5a_c01006{left:336.388000pt;}
.x2b_c01006{left:337.575247pt;}
.x54_c01006{left:339.713333pt;}
.x85_c01006{left:341.520000pt;}
.x31_c01006{left:344.296000pt;}
.x63_c01006{left:348.310000pt;}
.x24_c01006{left:349.861333pt;}
.xd_c01006{left:352.320000pt;}
.x2c_c01006{left:353.409769pt;}
.x5b_c01006{left:355.794667pt;}
.x89_c01006{left:358.422667pt;}
.x7d_c01006{left:360.188000pt;}
.x1e_c01006{left:362.525333pt;}
.x5_c01006{left:366.209333pt;}
.x4b_c01006{left:368.569893pt;}
.x16_c01006{left:369.484000pt;}
.x25_c01006{left:371.877333pt;}
.x32_c01006{left:377.228000pt;}
.xe_c01006{left:378.240000pt;}
.x64_c01006{left:380.673781pt;}
.x4c_c01006{left:381.724760pt;}
.x3a_c01006{left:384.500000pt;}
.x46_c01006{left:387.217333pt;}
.x8a_c01006{left:389.049333pt;}
.x40_c01006{left:391.004000pt;}
.x5e_c01006{left:396.331941pt;}
.x1f_c01006{left:399.946667pt;}
.x7e_c01006{left:405.270667pt;}
.x33_c01006{left:406.712000pt;}
.x76_c01006{left:408.905333pt;}
.x5f_c01006{left:413.370192pt;}
.x55_c01006{left:417.537333pt;}
.x26_c01006{left:421.306667pt;}
.x95_c01006{left:422.997200pt;}
.x3b_c01006{left:428.769333pt;}
.x6_c01006{left:433.918667pt;}
.x8b_c01006{left:437.046667pt;}
.x60_c01006{left:441.710837pt;}
.xf_c01006{left:443.760000pt;}
.x96_c01006{left:444.698867pt;}
.x77_c01006{left:448.241333pt;}
.x78_c01006{left:458.773333pt;}
.x6f_c01006{left:459.772000pt;}
.x8c_c01006{left:461.422667pt;}
.x70_c01006{left:472.673333pt;}
.x8d_c01006{left:490.890667pt;}
.x8e_c01006{left:518.920000pt;}
.x97_c01006{left:520.133933pt;}
.x71_c01006{left:533.684000pt;}
.x98_c01006{left:534.964900pt;}
.x4e_c01006{left:551.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_c01007 {
    display:none;
  }
  .loading-indicator_c01007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01007 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01007 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01007" -> "#page-container .classname_c01007")
 */
.pf_c01007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01007 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01007 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01007 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01007 {overflow:visible;}
  }
}
.c_c01007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01007 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01007:after { /* webkit #35443 */
  content: '';
}
.t_c01007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01007 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01007 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01007 { /* info for Javascript */
  display:none;
}
.l_c01007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.000000;font-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_c01007{transform:matrix(0.009679,0.000165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.009679,0.000165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.009679,0.000165,-0.004249,0.249964,0,0);}
.m0_c01007{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);}
.mea_c01007{transform:matrix(0.012988,0.000221,-0.004249,0.249964,0,0);-ms-transform:matrix(0.012988,0.000221,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.012988,0.000221,-0.004249,0.249964,0,0);}
.mbe_c01007{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);}
.m20_c01007{transform:matrix(0.020490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020490,0.000000,0.000000,0.250000,0,0);}
.me9_c01007{transform:matrix(0.094151,0.001601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.094151,0.001601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.094151,0.001601,-0.004249,0.249964,0,0);}
.me0_c01007{transform:matrix(0.099011,0.001683,-0.004249,0.249964,0,0);-ms-transform:matrix(0.099011,0.001683,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.099011,0.001683,-0.004249,0.249964,0,0);}
.ma0_c01007{transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);}
.mfd_c01007{transform:matrix(0.120058,0.002041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.120058,0.002041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.120058,0.002041,-0.004249,0.249964,0,0);}
.mc4_c01007{transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);}
.mb6_c01007{transform:matrix(0.125340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125340,0.000000,0.000000,0.250000,0,0);}
.mc5_c01007{transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);}
.mc2_c01007{transform:matrix(0.131855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131855,0.000000,0.000000,0.250000,0,0);}
.mc6_c01007{transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);}
.m7_c01007{transform:matrix(0.140055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140055,0.000000,0.000000,0.250000,0,0);}
.mfe_c01007{transform:matrix(0.141185,0.002400,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141185,0.002400,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141185,0.002400,-0.004249,0.249964,0,0);}
.m78_c01007{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m8_c01007{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);}
.m7a_c01007{transform:matrix(0.143855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143855,0.000000,0.000000,0.250000,0,0);}
.mc3_c01007{transform:matrix(0.143895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143895,0.000000,0.000000,0.250000,0,0);}
.m3e_c01007{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);}
.mc7_c01007{transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145110,0.000000,0.000000,0.250000,0,0);}
.m5f_c01007{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);}
.m88_c01007{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);}
.m102_c01007{transform:matrix(0.149243,0.002537,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149243,0.002537,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149243,0.002537,-0.004249,0.249964,0,0);}
.mf2_c01007{transform:matrix(0.150328,0.002556,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150328,0.002556,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150328,0.002556,-0.004249,0.249964,0,0);}
.me_c01007{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_c01007{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mff_c01007{transform:matrix(0.153383,0.002608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153383,0.002608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153383,0.002608,-0.004249,0.249964,0,0);}
.m5e_c01007{transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);}
.m3b_c01007{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);}
.mcc_c01007{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);}
.m100_c01007{transform:matrix(0.155917,0.002651,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155917,0.002651,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155917,0.002651,-0.004249,0.249964,0,0);}
.mb_c01007{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);}
.m86_c01007{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);}
.mb3_c01007{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);}
.m30_c01007{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);}
.m47_c01007{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);}
.m93_c01007{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);}
.m6d_c01007{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);}
.m62_c01007{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);}
.ma7_c01007{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);}
.m42_c01007{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);}
.mde_c01007{transform:matrix(0.163666,0.002782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163666,0.002782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163666,0.002782,-0.004249,0.249964,0,0);}
.mfc_c01007{transform:matrix(0.165021,0.002805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165021,0.002805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165021,0.002805,-0.004249,0.249964,0,0);}
.m9_c01007{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);}
.m9a_c01007{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);}
.m3_c01007{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);}
.mb0_c01007{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);}
.m13_c01007{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);}
.mef_c01007{transform:matrix(0.166776,0.002835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166776,0.002835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166776,0.002835,-0.004249,0.249964,0,0);}
.m3f_c01007{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);}
.m41_c01007{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);}
.mfb_c01007{transform:matrix(0.167511,0.002848,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167511,0.002848,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167511,0.002848,-0.004249,0.249964,0,0);}
.mf7_c01007{transform:matrix(0.168126,0.002858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168126,0.002858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168126,0.002858,-0.004249,0.249964,0,0);}
.me7_c01007{transform:matrix(0.168401,0.002863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168401,0.002863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168401,0.002863,-0.004249,0.249964,0,0);}
.med_c01007{transform:matrix(0.168741,0.002869,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168741,0.002869,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168741,0.002869,-0.004249,0.249964,0,0);}
.m17_c01007{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);}
.m85_c01007{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);}
.m46_c01007{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);}
.m58_c01007{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);}
.m101_c01007{transform:matrix(0.170510,0.002899,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170510,0.002899,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170510,0.002899,-0.004249,0.249964,0,0);}
.mbb_c01007{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);}
.mbc_c01007{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);}
.m28_c01007{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);}
.mb4_c01007{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);}
.m97_c01007{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);}
.m31_c01007{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);}
.maa_c01007{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);}
.mf5_c01007{transform:matrix(0.172955,0.002940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172955,0.002940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172955,0.002940,-0.004249,0.249964,0,0);}
.m96_c01007{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);}
.m24_c01007{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);}
.mba_c01007{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);}
.m21_c01007{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);}
.m5_c01007{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);}
.ma9_c01007{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);}
.ma4_c01007{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);}
.m48_c01007{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);}
.m2a_c01007{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);}
.mc1_c01007{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m7e_c01007{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);}
.ma_c01007{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);}
.m37_c01007{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);}
.mee_c01007{transform:matrix(0.177009,0.003009,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177009,0.003009,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177009,0.003009,-0.004249,0.249964,0,0);}
.m83_c01007{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);}
.mf_c01007{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);}
.mcf_c01007{transform:matrix(0.177804,0.003023,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177804,0.003023,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177804,0.003023,-0.004249,0.249964,0,0);}
.m5d_c01007{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);}
.m7c_c01007{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);}
.mac_c01007{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);}
.mdd_c01007{transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);}
.m53_c01007{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);}
.m8a_c01007{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);}
.mad_c01007{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);}
.m9e_c01007{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);}
.m4b_c01007{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);}
.m1b_c01007{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);}
.mb9_c01007{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);}
.mb1_c01007{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);}
.mcb_c01007{transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181799,0.003091,-0.004249,0.249964,0,0);}
.mce_c01007{transform:matrix(0.181874,0.003092,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181874,0.003092,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181874,0.003092,-0.004249,0.249964,0,0);}
.m92_c01007{transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);}
.m104_c01007{transform:matrix(0.182319,0.003099,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182319,0.003099,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182319,0.003099,-0.004249,0.249964,0,0);}
.m71_c01007{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);}
.me4_c01007{transform:matrix(0.182754,0.003107,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182754,0.003107,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182754,0.003107,-0.004249,0.249964,0,0);}
.m12_c01007{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);}
.mf4_c01007{transform:matrix(0.183084,0.003112,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183084,0.003112,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183084,0.003112,-0.004249,0.249964,0,0);}
.m40_c01007{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);}
.m8e_c01007{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);}
.m18_c01007{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);}
.m2e_c01007{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);}
.mcd_c01007{transform:matrix(0.184458,0.003136,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184458,0.003136,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184458,0.003136,-0.004249,0.249964,0,0);}
.m5c_c01007{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);}
.m98_c01007{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);}
.m11_c01007{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);}
.mf0_c01007{transform:matrix(0.185303,0.003150,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185303,0.003150,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185303,0.003150,-0.004249,0.249964,0,0);}
.m25_c01007{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);}
.m14_c01007{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);}
.m2b_c01007{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);}
.m63_c01007{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);}
.mb5_c01007{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);}
.me1_c01007{transform:matrix(0.186463,0.003170,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186463,0.003170,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186463,0.003170,-0.004249,0.249964,0,0);}
.m6c_c01007{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);}
.mf9_c01007{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);}
.m19_c01007{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);}
.m22_c01007{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);}
.m54_c01007{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);}
.m7d_c01007{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);}
.m9f_c01007{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);}
.mdf_c01007{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);}
.m79_c01007{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);}
.m10_c01007{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);}
.m5a_c01007{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);}
.m60_c01007{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);}
.m6a_c01007{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);}
.md_c01007{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);}
.m7b_c01007{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);}
.mda_c01007{transform:matrix(0.190762,0.003243,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190762,0.003243,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190762,0.003243,-0.004249,0.249964,0,0);}
.mc_c01007{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);}
.me2_c01007{transform:matrix(0.190982,0.003247,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190982,0.003247,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190982,0.003247,-0.004249,0.249964,0,0);}
.mdc_c01007{transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191042,0.003248,-0.004249,0.249964,0,0);}
.m1c_c01007{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);}
.m4e_c01007{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_c01007{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);}
.m56_c01007{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);}
.m1d_c01007{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);}
.m2d_c01007{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);}
.m68_c01007{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);}
.m16_c01007{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);}
.mf6_c01007{transform:matrix(0.195612,0.003325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195612,0.003325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195612,0.003325,-0.004249,0.249964,0,0);}
.mf8_c01007{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);}
.m44_c01007{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);}
.m51_c01007{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);}
.me3_c01007{transform:matrix(0.196757,0.003345,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196757,0.003345,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196757,0.003345,-0.004249,0.249964,0,0);}
.mfa_c01007{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);}
.m5b_c01007{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);}
.m59_c01007{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);}
.md3_c01007{transform:matrix(0.197276,0.003354,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197276,0.003354,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197276,0.003354,-0.004249,0.249964,0,0);}
.m61_c01007{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);}
.mb2_c01007{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);}
.m27_c01007{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);}
.m3d_c01007{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);}
.m64_c01007{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);}
.m23_c01007{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);}
.m3c_c01007{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);}
.m95_c01007{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);}
.mab_c01007{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);}
.m8d_c01007{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);}
.maf_c01007{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);}
.m70_c01007{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);}
.m33_c01007{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);}
.m57_c01007{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_c01007{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);}
.m87_c01007{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);}
.m4d_c01007{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);}
.mb8_c01007{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);}
.m90_c01007{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);}
.md2_c01007{transform:matrix(0.204915,0.003484,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204915,0.003484,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204915,0.003484,-0.004249,0.249964,0,0);}
.m9d_c01007{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);}
.m4c_c01007{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);}
.m94_c01007{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);}
.m103_c01007{transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);}
.m1a_c01007{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);}
.m6_c01007{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);}
.m8c_c01007{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);}
.m6e_c01007{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);}
.ma1_c01007{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);}
.m4_c01007{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);}
.ma2_c01007{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);}
.m45_c01007{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);}
.mb7_c01007{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);}
.m6b_c01007{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);}
.m84_c01007{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);}
.m74_c01007{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);}
.ma5_c01007{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);}
.m35_c01007{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);}
.m69_c01007{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);}
.m76_c01007{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_c01007{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);}
.m1e_c01007{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);}
.md7_c01007{transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211729,0.003599,-0.004249,0.249964,0,0);}
.md6_c01007{transform:matrix(0.212869,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212869,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212869,0.003619,-0.004249,0.249964,0,0);}
.ma6_c01007{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);}
.ma3_c01007{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);}
.m55_c01007{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);}
.m29_c01007{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);}
.m4a_c01007{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);}
.md8_c01007{transform:matrix(0.215084,0.003656,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215084,0.003656,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215084,0.003656,-0.004249,0.249964,0,0);}
.m52_c01007{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);}
.m4f_c01007{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);}
.m26_c01007{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);}
.m9b_c01007{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);}
.m89_c01007{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);}
.m9c_c01007{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);}
.m77_c01007{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);}
.ma8_c01007{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);}
.m49_c01007{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);}
.m82_c01007{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m39_c01007{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.md4_c01007{transform:matrix(0.221758,0.003770,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221758,0.003770,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221758,0.003770,-0.004249,0.249964,0,0);}
.m72_c01007{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);}
.m15_c01007{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m2f_c01007{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);}
.m7f_c01007{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);}
.me5_c01007{transform:matrix(0.231397,0.003934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231397,0.003934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231397,0.003934,-0.004249,0.249964,0,0);}
.m106_c01007{transform:matrix(0.232848,0.012353,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232848,0.012353,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232848,0.012353,-0.013245,0.249649,0,0);}
.mca_c01007{transform:matrix(0.233136,0.003963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233136,0.003963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233136,0.003963,-0.004249,0.249964,0,0);}
.m6f_c01007{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);}
.m2_c01007{transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);}
.m67_c01007{transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235135,0.000000,0.000000,0.250000,0,0);}
.mec_c01007{transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);}
.m8b_c01007{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);}
.mbf_c01007{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);}
.md5_c01007{transform:matrix(0.240740,0.004093,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240740,0.004093,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240740,0.004093,-0.004249,0.249964,0,0);}
.m36_c01007{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);}
.m32_c01007{transform:matrix(0.244340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244340,0.000000,0.000000,0.250000,0,0);}
.m38_c01007{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);}
.meb_c01007{transform:matrix(0.245340,0.004171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245340,0.004171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245340,0.004171,-0.004249,0.249964,0,0);}
.m91_c01007{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_c01007{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);}
.md9_c01007{transform:matrix(0.254073,0.004319,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254073,0.004319,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254073,0.004319,-0.004249,0.249964,0,0);}
.m8f_c01007{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);}
.m99_c01007{transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);}
.m66_c01007{transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);}
.mc8_c01007{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);}
.md1_c01007{transform:matrix(0.262722,0.004466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262722,0.004466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262722,0.004466,-0.004249,0.249964,0,0);}
.mc0_c01007{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);}
.md0_c01007{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);}
.m80_c01007{transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);}
.mdb_c01007{transform:matrix(0.267886,0.004554,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267886,0.004554,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267886,0.004554,-0.004249,0.249964,0,0);}
.m3a_c01007{transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);}
.me6_c01007{transform:matrix(0.269126,0.004575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269126,0.004575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269126,0.004575,-0.004249,0.249964,0,0);}
.m75_c01007{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);}
.m34_c01007{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);}
.mc9_c01007{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);}
.m81_c01007{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);}
.mf3_c01007{transform:matrix(0.305531,0.005194,-0.004249,0.249964,0,0);-ms-transform:matrix(0.305531,0.005194,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.305531,0.005194,-0.004249,0.249964,0,0);}
.mae_c01007{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m107_c01007{transform:matrix(0.319401,0.016945,-0.013245,0.249649,0,0);-ms-transform:matrix(0.319401,0.016945,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.319401,0.016945,-0.013245,0.249649,0,0);}
.m65_c01007{transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345425,0.000000,0.000000,0.250000,0,0);}
.mf1_c01007{transform:matrix(0.364442,0.006196,-0.004249,0.249964,0,0);-ms-transform:matrix(0.364442,0.006196,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.364442,0.006196,-0.004249,0.249964,0,0);}
.m1f_c01007{transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370160,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402960,0.000000,0.000000,0.250000,0,0);}
.m105_c01007{transform:matrix(1.545327,0.081984,-0.013245,0.249649,0,0);-ms-transform:matrix(1.545327,0.081984,-0.013245,0.249649,0,0);-webkit-transform:matrix(1.545327,0.081984,-0.013245,0.249649,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls0_c01007{letter-spacing:0.000000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:0.000000px;}
.fc0_c01007{color:transparent;}
.fsb_c01007{font-size:50.407282px;}
.fsc_c01007{font-size:54.607889px;}
.fsf_c01007{font-size:55.672534px;}
.fsd_c01007{font-size:58.808496px;}
.fse_c01007{font-size:63.009103px;}
.fs6_c01007{font-size:65.100000px;}
.fs4_c01007{font-size:67.200000px;}
.fs8_c01007{font-size:68.250000px;}
.fs5_c01007{font-size:69.300000px;}
.fs3_c01007{font-size:70.350000px;}
.fs7_c01007{font-size:71.400000px;}
.fs2_c01007{font-size:72.450000px;}
.fs0_c01007{font-size:74.550000px;}
.fs1_c01007{font-size:76.650000px;}
.fs9_c01007{font-size:77.700000px;}
.fsa_c01007{font-size:100.800000px;}
.y0_c01007{bottom:0.000000px;}
.y9a_c01007{bottom:128.533131px;}
.y99_c01007{bottom:131.595630px;}
.y98_c01007{bottom:139.614000px;}
.y97_c01007{bottom:144.452343px;}
.y96_c01007{bottom:144.770386px;}
.y95_c01007{bottom:144.923940px;}
.y94_c01007{bottom:145.196673px;}
.y93_c01007{bottom:145.751057px;}
.y92_c01007{bottom:145.993662px;}
.y91_c01007{bottom:146.301789px;}
.y90_c01007{bottom:146.457948px;}
.y8f_c01007{bottom:146.930335px;}
.y8e_c01007{bottom:147.283947px;}
.y8d_c01007{bottom:147.678623px;}
.y8c_c01007{bottom:161.450378px;}
.y8b_c01007{bottom:161.894656px;}
.y8a_c01007{bottom:162.224020px;}
.y89_c01007{bottom:162.483679px;}
.y88_c01007{bottom:162.925531px;}
.y87_c01007{bottom:163.119192px;}
.y86_c01007{bottom:163.544247px;}
.y85_c01007{bottom:163.974386px;}
.y84_c01007{bottom:164.166180px;}
.y83_c01007{bottom:164.450912px;}
.y82_c01007{bottom:164.671608px;}
.y81_c01007{bottom:165.037176px;}
.y80_c01007{bottom:165.649661px;}
.y7f_c01007{bottom:165.838748px;}
.y7e_c01007{bottom:166.056150px;}
.y7d_c01007{bottom:166.169688px;}
.y7c_c01007{bottom:166.520750px;}
.y7b_c01007{bottom:166.853917px;}
.y7a_c01007{bottom:180.857054px;}
.y79_c01007{bottom:181.313493px;}
.y78_c01007{bottom:181.673106px;}
.y77_c01007{bottom:181.851112px;}
.y76_c01007{bottom:182.332617px;}
.y75_c01007{bottom:182.802675px;}
.y74_c01007{bottom:182.980401px;}
.y73_c01007{bottom:183.066542px;}
.y72_c01007{bottom:183.505499px;}
.y71_c01007{bottom:183.975735px;}
.y70_c01007{bottom:184.299397px;}
.y6f_c01007{bottom:184.899321px;}
.y6e_c01007{bottom:185.090543px;}
.y6d_c01007{bottom:185.487951px;}
.y6c_c01007{bottom:197.452389px;}
.y6b_c01007{bottom:199.100658px;}
.y6a_c01007{bottom:199.544103px;}
.y69_c01007{bottom:200.518050px;}
.y68_c01007{bottom:200.894532px;}
.y67_c01007{bottom:201.330914px;}
.y66_c01007{bottom:202.189422px;}
.y65_c01007{bottom:202.897047px;}
.y64_c01007{bottom:203.244816px;}
.y63_c01007{bottom:203.455931px;}
.y62_c01007{bottom:204.127371px;}
.y61_c01007{bottom:204.392392px;}
.y60_c01007{bottom:204.855447px;}
.y5f_c01007{bottom:205.047743px;}
.y5e_c01007{bottom:205.282903px;}
.y5d_c01007{bottom:205.743000px;}
.y5c_c01007{bottom:248.050500px;}
.y5b_c01007{bottom:272.667000px;}
.y5a_c01007{bottom:273.279000px;}
.y59_c01007{bottom:274.089000px;}
.y58_c01007{bottom:275.146500px;}
.y57_c01007{bottom:275.428500px;}
.y56_c01007{bottom:275.710500px;}
.y55_c01007{bottom:276.687000px;}
.y54_c01007{bottom:277.144500px;}
.y53_c01007{bottom:277.747500px;}
.y52_c01007{bottom:277.830000px;}
.y51_c01007{bottom:297.442500px;}
.y50_c01007{bottom:297.900000px;}
.y4f_c01007{bottom:298.116000px;}
.y4e_c01007{bottom:298.689000px;}
.y4d_c01007{bottom:299.242500px;}
.y4c_c01007{bottom:299.466000px;}
.y4b_c01007{bottom:300.552000px;}
.y4a_c01007{bottom:300.781500px;}
.y49_c01007{bottom:321.273000px;}
.y48_c01007{bottom:343.153500px;}
.y47_c01007{bottom:343.428000px;}
.y46_c01007{bottom:343.926000px;}
.y45_c01007{bottom:344.059500px;}
.y44_c01007{bottom:344.506500px;}
.y43_c01007{bottom:344.842500px;}
.y42_c01007{bottom:345.237000px;}
.y41_c01007{bottom:345.871500px;}
.y40_c01007{bottom:365.319000px;}
.y3f_c01007{bottom:365.917500px;}
.y3e_c01007{bottom:366.426000px;}
.y3d_c01007{bottom:367.323000px;}
.y3c_c01007{bottom:368.104500px;}
.y3b_c01007{bottom:368.514000px;}
.y3a_c01007{bottom:368.811000px;}
.y39_c01007{bottom:369.093000px;}
.y38_c01007{bottom:388.843500px;}
.y37_c01007{bottom:389.056500px;}
.y36_c01007{bottom:389.445000px;}
.y35_c01007{bottom:390.255000px;}
.y34_c01007{bottom:390.667500px;}
.y33_c01007{bottom:390.859500px;}
.y32_c01007{bottom:391.437000px;}
.y31_c01007{bottom:391.771500px;}
.y30_c01007{bottom:412.492500px;}
.y2f_c01007{bottom:434.511000px;}
.y2e_c01007{bottom:435.342000px;}
.y2d_c01007{bottom:435.733500px;}
.y2c_c01007{bottom:436.219500px;}
.y2b_c01007{bottom:436.905000px;}
.y2a_c01007{bottom:437.367000px;}
.y29_c01007{bottom:437.670000px;}
.y28_c01007{bottom:458.589000px;}
.y27_c01007{bottom:479.422500px;}
.y26_c01007{bottom:479.739000px;}
.y25_c01007{bottom:480.366000px;}
.y24_c01007{bottom:481.197000px;}
.y23_c01007{bottom:481.623000px;}
.y22_c01007{bottom:481.834500px;}
.y21_c01007{bottom:481.998000px;}
.y20_c01007{bottom:482.221500px;}
.y1f_c01007{bottom:502.617000px;}
.y1e_c01007{bottom:525.070500px;}
.y1d_c01007{bottom:547.108500px;}
.y1c_c01007{bottom:547.288500px;}
.y1b_c01007{bottom:547.629000px;}
.y1a_c01007{bottom:547.828500px;}
.y19_c01007{bottom:548.088000px;}
.y18_c01007{bottom:548.293500px;}
.y17_c01007{bottom:548.566500px;}
.y16_c01007{bottom:548.881500px;}
.y15_c01007{bottom:549.207000px;}
.y14_c01007{bottom:549.549000px;}
.y13_c01007{bottom:549.991500px;}
.y12_c01007{bottom:571.323000px;}
.y11_c01007{bottom:594.009000px;}
.y10_c01007{bottom:617.148000px;}
.yf_c01007{bottom:640.339500px;}
.yd_c01007{bottom:661.159500px;}
.yc_c01007{bottom:663.037500px;}
.ye_c01007{bottom:663.387000px;}
.yb_c01007{bottom:663.550500px;}
.ya_c01007{bottom:664.210500px;}
.y9_c01007{bottom:664.503000px;}
.y8_c01007{bottom:666.094500px;}
.y7_c01007{bottom:684.930000px;}
.y6_c01007{bottom:708.033000px;}
.y5_c01007{bottom:730.797000px;}
.y4_c01007{bottom:753.658500px;}
.y3_c01007{bottom:776.062500px;}
.y2_c01007{bottom:798.646500px;}
.y1_c01007{bottom:822.738000px;}
.hd_c01007{height:50.407282px;}
.he_c01007{height:54.607889px;}
.h11_c01007{height:55.672534px;}
.hf_c01007{height:58.808496px;}
.h10_c01007{height:63.009103px;}
.h8_c01007{height:65.100000px;}
.h6_c01007{height:67.200000px;}
.ha_c01007{height:68.250000px;}
.h7_c01007{height:69.300000px;}
.h5_c01007{height:70.350000px;}
.h9_c01007{height:71.400000px;}
.h4_c01007{height:72.450000px;}
.h2_c01007{height:74.550000px;}
.h3_c01007{height:76.650000px;}
.hb_c01007{height:77.700000px;}
.hc_c01007{height:100.800000px;}
.h0_c01007{height:1008.450000px;}
.h1_c01007{height:1008.750000px;}
.w1_c01007{width:700.500000px;}
.w0_c01007{width:700.650000px;}
.x0_c01007{left:0.000000px;}
.x8d_c01007{left:138.102949px;}
.x83_c01007{left:142.651500px;}
.x93_c01007{left:148.614799px;}
.x73_c01007{left:155.320500px;}
.x77_c01007{left:159.396000px;}
.x78_c01007{left:166.942500px;}
.x84_c01007{left:169.716000px;}
.x6f_c01007{left:173.760000px;}
.x6a_c01007{left:175.090500px;}
.x3d_c01007{left:176.310000px;}
.x3_c01007{left:177.660000px;}
.x16_c01007{left:179.280000px;}
.x22_c01007{left:180.360000px;}
.xd_c01007{left:181.440000px;}
.x85_c01007{left:183.549000px;}
.x63_c01007{left:193.050000px;}
.x86_c01007{left:194.860500px;}
.x37_c01007{left:196.830000px;}
.x6b_c01007{left:200.737500px;}
.x43_c01007{left:203.040000px;}
.x5f_c01007{left:205.642500px;}
.x4_c01007{left:206.820000px;}
.xe_c01007{left:208.440000px;}
.x17_c01007{left:213.840000px;}
.x94_c01007{left:215.047935px;}
.x2e_c01007{left:218.430000px;}
.x3e_c01007{left:220.050000px;}
.x59_c01007{left:222.750000px;}
.x27_c01007{left:225.450000px;}
.xf_c01007{left:228.420000px;}
.x72_c01007{left:230.038500px;}
.x48_c01007{left:232.128000px;}
.x18_c01007{left:233.280000px;}
.x32_c01007{left:234.630000px;}
.x2f_c01007{left:238.410000px;}
.x64_c01007{left:241.920000px;}
.x52_c01007{left:243.000000px;}
.x1_c01007{left:244.350000px;}
.x5_c01007{left:246.240000px;}
.x44_c01007{left:248.400000px;}
.x9b_c01007{left:250.453336px;}
.x60_c01007{left:251.778000px;}
.x19_c01007{left:256.770000px;}
.x10_c01007{left:260.820000px;}
.x79_c01007{left:263.364000px;}
.x6c_c01007{left:264.987000px;}
.x38_c01007{left:268.110000px;}
.x49_c01007{left:274.785000px;}
.x53_c01007{left:277.560000px;}
.x23_c01007{left:278.910000px;}
.x65_c01007{left:282.420000px;}
.x28_c01007{left:283.503000px;}
.x30_c01007{left:284.850000px;}
.x68_c01007{left:286.335000px;}
.x70_c01007{left:287.973000px;}
.x8e_c01007{left:289.368952px;}
.x31_c01007{left:290.520000px;}
.x1a_c01007{left:291.600000px;}
.x11_c01007{left:296.460000px;}
.x95_c01007{left:299.877126px;}
.x9e_c01007{left:303.579000px;}
.x5a_c01007{left:305.370000px;}
.x33_c01007{left:308.340000px;}
.x24_c01007{left:311.040000px;}
.x50_c01007{left:313.470000px;}
.x4a_c01007{left:315.522000px;}
.x39_c01007{left:316.980000px;}
.x6_c01007{left:319.140000px;}
.x61_c01007{left:320.353500px;}
.x54_c01007{left:324.540000px;}
.x2_c01007{left:326.430000px;}
.x3f_c01007{left:328.590000px;}
.x74_c01007{left:329.778000px;}
.x66_c01007{left:335.610000px;}
.x20_c01007{left:336.960000px;}
.x34_c01007{left:338.040000px;}
.x1b_c01007{left:346.140000px;}
.x96_c01007{left:348.749782px;}
.x7a_c01007{left:352.189500px;}
.x25_c01007{left:354.240000px;}
.x5b_c01007{left:356.130000px;}
.x12_c01007{left:359.370000px;}
.x35_c01007{left:362.880000px;}
.x29_c01007{left:367.234500px;}
.x62_c01007{left:368.956500px;}
.x7_c01007{left:371.520000px;}
.x1c_c01007{left:372.870000px;}
.x45_c01007{left:374.760000px;}
.x3a_c01007{left:376.110000px;}
.x75_c01007{left:377.565000px;}
.x8f_c01007{left:380.185239px;}
.x2a_c01007{left:382.644000px;}
.x4b_c01007{left:389.008500px;}
.x5c_c01007{left:395.280000px;}
.x8_c01007{left:397.710000px;}
.x87_c01007{left:402.186000px;}
.x7b_c01007{left:403.441500px;}
.x55_c01007{left:406.080000px;}
.x3b_c01007{left:407.700000px;}
.x1d_c01007{left:411.480000px;}
.x4c_c01007{left:414.657000px;}
.x9_c01007{left:416.340000px;}
.x2b_c01007{left:417.384000px;}
.x51_c01007{left:419.310000px;}
.x97_c01007{left:424.324708px;}
.x88_c01007{left:427.855500px;}
.x36_c01007{left:429.570000px;}
.xa_c01007{left:432.000000px;}
.x76_c01007{left:433.716000px;}
.x13_c01007{left:435.510000px;}
.x56_c01007{left:442.530000px;}
.x2c_c01007{left:444.400500px;}
.x1e_c01007{left:445.770000px;}
.x4d_c01007{left:447.016500px;}
.x89_c01007{left:450.001500px;}
.x57_c01007{left:453.204000px;}
.x7f_c01007{left:455.217000px;}
.x3c_c01007{left:458.190000px;}
.x14_c01007{left:460.350000px;}
.x67_c01007{left:462.510000px;}
.x6d_c01007{left:463.720500px;}
.x40_c01007{left:465.210000px;}
.x69_c01007{left:468.864000px;}
.xb_c01007{left:470.340000px;}
.x46_c01007{left:472.500000px;}
.x71_c01007{left:475.620000px;}
.x26_c01007{left:479.790000px;}
.x5d_c01007{left:483.300000px;}
.x80_c01007{left:486.267000px;}
.x58_c01007{left:488.305500px;}
.x1f_c01007{left:490.320000px;}
.x15_c01007{left:493.560000px;}
.xc_c01007{left:494.910000px;}
.x41_c01007{left:497.610000px;}
.x7c_c01007{left:499.618500px;}
.x90_c01007{left:501.636672px;}
.x8a_c01007{left:507.292500px;}
.x47_c01007{left:509.490000px;}
.x98_c01007{left:512.659705px;}
.x4e_c01007{left:514.516500px;}
.x21_c01007{left:516.780000px;}
.x6e_c01007{left:518.088000px;}
.x91_c01007{left:519.433289px;}
.x9c_c01007{left:525.908604px;}
.x8b_c01007{left:533.377500px;}
.x4f_c01007{left:536.926500px;}
.x9d_c01007{left:541.295940px;}
.x2d_c01007{left:543.235500px;}
.x5e_c01007{left:544.320000px;}
.x42_c01007{left:550.260000px;}
.x81_c01007{left:555.387000px;}
.x99_c01007{left:561.782887px;}
.x82_c01007{left:570.237000px;}
.x7d_c01007{left:573.204000px;}
.x9a_c01007{left:598.773024px;}
.x92_c01007{left:600.975478px;}
.x7e_c01007{left:628.797000px;}
.x8c_c01007{left:630.334500px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls0_c01007{letter-spacing:0.000000pt;}
.ws0_c01007{word-spacing:0.000000pt;}
.fsb_c01007{font-size:44.806473pt;}
.fsc_c01007{font-size:48.540346pt;}
.fsf_c01007{font-size:49.486697pt;}
.fsd_c01007{font-size:52.274219pt;}
.fse_c01007{font-size:56.008091pt;}
.fs6_c01007{font-size:57.866667pt;}
.fs4_c01007{font-size:59.733333pt;}
.fs8_c01007{font-size:60.666667pt;}
.fs5_c01007{font-size:61.600000pt;}
.fs3_c01007{font-size:62.533333pt;}
.fs7_c01007{font-size:63.466667pt;}
.fs2_c01007{font-size:64.400000pt;}
.fs0_c01007{font-size:66.266667pt;}
.fs1_c01007{font-size:68.133333pt;}
.fs9_c01007{font-size:69.066667pt;}
.fsa_c01007{font-size:89.600000pt;}
.y0_c01007{bottom:0.000000pt;}
.y9a_c01007{bottom:114.251672pt;}
.y99_c01007{bottom:116.973893pt;}
.y98_c01007{bottom:124.101333pt;}
.y97_c01007{bottom:128.402083pt;}
.y96_c01007{bottom:128.684788pt;}
.y95_c01007{bottom:128.821280pt;}
.y94_c01007{bottom:129.063709pt;}
.y93_c01007{bottom:129.556495pt;}
.y92_c01007{bottom:129.772144pt;}
.y91_c01007{bottom:130.046035pt;}
.y90_c01007{bottom:130.184843pt;}
.y8f_c01007{bottom:130.604743pt;}
.y8e_c01007{bottom:130.919064pt;}
.y8d_c01007{bottom:131.269887pt;}
.y8c_c01007{bottom:143.511447pt;}
.y8b_c01007{bottom:143.906361pt;}
.y8a_c01007{bottom:144.199129pt;}
.y89_c01007{bottom:144.429937pt;}
.y88_c01007{bottom:144.822695pt;}
.y87_c01007{bottom:144.994837pt;}
.y86_c01007{bottom:145.372664pt;}
.y85_c01007{bottom:145.755009pt;}
.y84_c01007{bottom:145.925493pt;}
.y83_c01007{bottom:146.178588pt;}
.y82_c01007{bottom:146.374763pt;}
.y81_c01007{bottom:146.699712pt;}
.y80_c01007{bottom:147.244143pt;}
.y7f_c01007{bottom:147.412220pt;}
.y7e_c01007{bottom:147.605467pt;}
.y7d_c01007{bottom:147.706389pt;}
.y7c_c01007{bottom:148.018444pt;}
.y7b_c01007{bottom:148.314593pt;}
.y7a_c01007{bottom:160.761825pt;}
.y79_c01007{bottom:161.167549pt;}
.y78_c01007{bottom:161.487205pt;}
.y77_c01007{bottom:161.645433pt;}
.y76_c01007{bottom:162.073437pt;}
.y75_c01007{bottom:162.491267pt;}
.y74_c01007{bottom:162.649245pt;}
.y73_c01007{bottom:162.725815pt;}
.y72_c01007{bottom:163.115999pt;}
.y71_c01007{bottom:163.533987pt;}
.y70_c01007{bottom:163.821687pt;}
.y6f_c01007{bottom:164.354952pt;}
.y6e_c01007{bottom:164.524927pt;}
.y6d_c01007{bottom:164.878179pt;}
.y6c_c01007{bottom:175.513235pt;}
.y6b_c01007{bottom:176.978363pt;}
.y6a_c01007{bottom:177.372536pt;}
.y69_c01007{bottom:178.238267pt;}
.y68_c01007{bottom:178.572917pt;}
.y67_c01007{bottom:178.960812pt;}
.y66_c01007{bottom:179.723931pt;}
.y65_c01007{bottom:180.352931pt;}
.y64_c01007{bottom:180.662059pt;}
.y63_c01007{bottom:180.849716pt;}
.y62_c01007{bottom:181.446552pt;}
.y61_c01007{bottom:181.682127pt;}
.y60_c01007{bottom:182.093731pt;}
.y5f_c01007{bottom:182.264660pt;}
.y5e_c01007{bottom:182.473692pt;}
.y5d_c01007{bottom:182.882667pt;}
.y5c_c01007{bottom:220.489333pt;}
.y5b_c01007{bottom:242.370667pt;}
.y5a_c01007{bottom:242.914667pt;}
.y59_c01007{bottom:243.634667pt;}
.y58_c01007{bottom:244.574667pt;}
.y57_c01007{bottom:244.825333pt;}
.y56_c01007{bottom:245.076000pt;}
.y55_c01007{bottom:245.944000pt;}
.y54_c01007{bottom:246.350667pt;}
.y53_c01007{bottom:246.886667pt;}
.y52_c01007{bottom:246.960000pt;}
.y51_c01007{bottom:264.393333pt;}
.y50_c01007{bottom:264.800000pt;}
.y4f_c01007{bottom:264.992000pt;}
.y4e_c01007{bottom:265.501333pt;}
.y4d_c01007{bottom:265.993333pt;}
.y4c_c01007{bottom:266.192000pt;}
.y4b_c01007{bottom:267.157333pt;}
.y4a_c01007{bottom:267.361333pt;}
.y49_c01007{bottom:285.576000pt;}
.y48_c01007{bottom:305.025333pt;}
.y47_c01007{bottom:305.269333pt;}
.y46_c01007{bottom:305.712000pt;}
.y45_c01007{bottom:305.830667pt;}
.y44_c01007{bottom:306.228000pt;}
.y43_c01007{bottom:306.526667pt;}
.y42_c01007{bottom:306.877333pt;}
.y41_c01007{bottom:307.441333pt;}
.y40_c01007{bottom:324.728000pt;}
.y3f_c01007{bottom:325.260000pt;}
.y3e_c01007{bottom:325.712000pt;}
.y3d_c01007{bottom:326.509333pt;}
.y3c_c01007{bottom:327.204000pt;}
.y3b_c01007{bottom:327.568000pt;}
.y3a_c01007{bottom:327.832000pt;}
.y39_c01007{bottom:328.082667pt;}
.y38_c01007{bottom:345.638667pt;}
.y37_c01007{bottom:345.828000pt;}
.y36_c01007{bottom:346.173333pt;}
.y35_c01007{bottom:346.893333pt;}
.y34_c01007{bottom:347.260000pt;}
.y33_c01007{bottom:347.430667pt;}
.y32_c01007{bottom:347.944000pt;}
.y31_c01007{bottom:348.241333pt;}
.y30_c01007{bottom:366.660000pt;}
.y2f_c01007{bottom:386.232000pt;}
.y2e_c01007{bottom:386.970667pt;}
.y2d_c01007{bottom:387.318667pt;}
.y2c_c01007{bottom:387.750667pt;}
.y2b_c01007{bottom:388.360000pt;}
.y2a_c01007{bottom:388.770667pt;}
.y29_c01007{bottom:389.040000pt;}
.y28_c01007{bottom:407.634667pt;}
.y27_c01007{bottom:426.153333pt;}
.y26_c01007{bottom:426.434667pt;}
.y25_c01007{bottom:426.992000pt;}
.y24_c01007{bottom:427.730667pt;}
.y23_c01007{bottom:428.109333pt;}
.y22_c01007{bottom:428.297333pt;}
.y21_c01007{bottom:428.442667pt;}
.y20_c01007{bottom:428.641333pt;}
.y1f_c01007{bottom:446.770667pt;}
.y1e_c01007{bottom:466.729333pt;}
.y1d_c01007{bottom:486.318667pt;}
.y1c_c01007{bottom:486.478667pt;}
.y1b_c01007{bottom:486.781333pt;}
.y1a_c01007{bottom:486.958667pt;}
.y19_c01007{bottom:487.189333pt;}
.y18_c01007{bottom:487.372000pt;}
.y17_c01007{bottom:487.614667pt;}
.y16_c01007{bottom:487.894667pt;}
.y15_c01007{bottom:488.184000pt;}
.y14_c01007{bottom:488.488000pt;}
.y13_c01007{bottom:488.881333pt;}
.y12_c01007{bottom:507.842667pt;}
.y11_c01007{bottom:528.008000pt;}
.y10_c01007{bottom:548.576000pt;}
.yf_c01007{bottom:569.190667pt;}
.yd_c01007{bottom:587.697333pt;}
.yc_c01007{bottom:589.366667pt;}
.ye_c01007{bottom:589.677333pt;}
.yb_c01007{bottom:589.822667pt;}
.ya_c01007{bottom:590.409333pt;}
.y9_c01007{bottom:590.669333pt;}
.y8_c01007{bottom:592.084000pt;}
.y7_c01007{bottom:608.826667pt;}
.y6_c01007{bottom:629.362667pt;}
.y5_c01007{bottom:649.597333pt;}
.y4_c01007{bottom:669.918667pt;}
.y3_c01007{bottom:689.833333pt;}
.y2_c01007{bottom:709.908000pt;}
.y1_c01007{bottom:731.322667pt;}
.hd_c01007{height:44.806473pt;}
.he_c01007{height:48.540346pt;}
.h11_c01007{height:49.486697pt;}
.hf_c01007{height:52.274219pt;}
.h10_c01007{height:56.008091pt;}
.h8_c01007{height:57.866667pt;}
.h6_c01007{height:59.733333pt;}
.ha_c01007{height:60.666667pt;}
.h7_c01007{height:61.600000pt;}
.h5_c01007{height:62.533333pt;}
.h9_c01007{height:63.466667pt;}
.h4_c01007{height:64.400000pt;}
.h2_c01007{height:66.266667pt;}
.h3_c01007{height:68.133333pt;}
.hb_c01007{height:69.066667pt;}
.hc_c01007{height:89.600000pt;}
.h0_c01007{height:896.400000pt;}
.h1_c01007{height:896.666667pt;}
.w1_c01007{width:622.666667pt;}
.w0_c01007{width:622.800000pt;}
.x0_c01007{left:0.000000pt;}
.x8d_c01007{left:122.758177pt;}
.x83_c01007{left:126.801333pt;}
.x93_c01007{left:132.102044pt;}
.x73_c01007{left:138.062667pt;}
.x77_c01007{left:141.685333pt;}
.x78_c01007{left:148.393333pt;}
.x84_c01007{left:150.858667pt;}
.x6f_c01007{left:154.453333pt;}
.x6a_c01007{left:155.636000pt;}
.x3d_c01007{left:156.720000pt;}
.x3_c01007{left:157.920000pt;}
.x16_c01007{left:159.360000pt;}
.x22_c01007{left:160.320000pt;}
.xd_c01007{left:161.280000pt;}
.x85_c01007{left:163.154667pt;}
.x63_c01007{left:171.600000pt;}
.x86_c01007{left:173.209333pt;}
.x37_c01007{left:174.960000pt;}
.x6b_c01007{left:178.433333pt;}
.x43_c01007{left:180.480000pt;}
.x5f_c01007{left:182.793333pt;}
.x4_c01007{left:183.840000pt;}
.xe_c01007{left:185.280000pt;}
.x17_c01007{left:190.080000pt;}
.x94_c01007{left:191.153720pt;}
.x2e_c01007{left:194.160000pt;}
.x3e_c01007{left:195.600000pt;}
.x59_c01007{left:198.000000pt;}
.x27_c01007{left:200.400000pt;}
.xf_c01007{left:203.040000pt;}
.x72_c01007{left:204.478667pt;}
.x48_c01007{left:206.336000pt;}
.x18_c01007{left:207.360000pt;}
.x32_c01007{left:208.560000pt;}
.x2f_c01007{left:211.920000pt;}
.x64_c01007{left:215.040000pt;}
.x52_c01007{left:216.000000pt;}
.x1_c01007{left:217.200000pt;}
.x5_c01007{left:218.880000pt;}
.x44_c01007{left:220.800000pt;}
.x9b_c01007{left:222.625188pt;}
.x60_c01007{left:223.802667pt;}
.x19_c01007{left:228.240000pt;}
.x10_c01007{left:231.840000pt;}
.x79_c01007{left:234.101333pt;}
.x6c_c01007{left:235.544000pt;}
.x38_c01007{left:238.320000pt;}
.x49_c01007{left:244.253333pt;}
.x53_c01007{left:246.720000pt;}
.x23_c01007{left:247.920000pt;}
.x65_c01007{left:251.040000pt;}
.x28_c01007{left:252.002667pt;}
.x30_c01007{left:253.200000pt;}
.x68_c01007{left:254.520000pt;}
.x70_c01007{left:255.976000pt;}
.x8e_c01007{left:257.216847pt;}
.x31_c01007{left:258.240000pt;}
.x1a_c01007{left:259.200000pt;}
.x11_c01007{left:263.520000pt;}
.x95_c01007{left:266.557445pt;}
.x9e_c01007{left:269.848000pt;}
.x5a_c01007{left:271.440000pt;}
.x33_c01007{left:274.080000pt;}
.x24_c01007{left:276.480000pt;}
.x50_c01007{left:278.640000pt;}
.x4a_c01007{left:280.464000pt;}
.x39_c01007{left:281.760000pt;}
.x6_c01007{left:283.680000pt;}
.x61_c01007{left:284.758667pt;}
.x54_c01007{left:288.480000pt;}
.x2_c01007{left:290.160000pt;}
.x3f_c01007{left:292.080000pt;}
.x74_c01007{left:293.136000pt;}
.x66_c01007{left:298.320000pt;}
.x20_c01007{left:299.520000pt;}
.x34_c01007{left:300.480000pt;}
.x1b_c01007{left:307.680000pt;}
.x96_c01007{left:309.999807pt;}
.x7a_c01007{left:313.057333pt;}
.x25_c01007{left:314.880000pt;}
.x5b_c01007{left:316.560000pt;}
.x12_c01007{left:319.440000pt;}
.x35_c01007{left:322.560000pt;}
.x29_c01007{left:326.430667pt;}
.x62_c01007{left:327.961333pt;}
.x7_c01007{left:330.240000pt;}
.x1c_c01007{left:331.440000pt;}
.x45_c01007{left:333.120000pt;}
.x3a_c01007{left:334.320000pt;}
.x75_c01007{left:335.613333pt;}
.x8f_c01007{left:337.942435pt;}
.x2a_c01007{left:340.128000pt;}
.x4b_c01007{left:345.785333pt;}
.x5c_c01007{left:351.360000pt;}
.x8_c01007{left:353.520000pt;}
.x87_c01007{left:357.498667pt;}
.x7b_c01007{left:358.614667pt;}
.x55_c01007{left:360.960000pt;}
.x3b_c01007{left:362.400000pt;}
.x1d_c01007{left:365.760000pt;}
.x4c_c01007{left:368.584000pt;}
.x9_c01007{left:370.080000pt;}
.x2b_c01007{left:371.008000pt;}
.x51_c01007{left:372.720000pt;}
.x97_c01007{left:377.177519pt;}
.x88_c01007{left:380.316000pt;}
.x36_c01007{left:381.840000pt;}
.xa_c01007{left:384.000000pt;}
.x76_c01007{left:385.525333pt;}
.x13_c01007{left:387.120000pt;}
.x56_c01007{left:393.360000pt;}
.x2c_c01007{left:395.022667pt;}
.x1e_c01007{left:396.240000pt;}
.x4d_c01007{left:397.348000pt;}
.x89_c01007{left:400.001333pt;}
.x57_c01007{left:402.848000pt;}
.x7f_c01007{left:404.637333pt;}
.x3c_c01007{left:407.280000pt;}
.x14_c01007{left:409.200000pt;}
.x67_c01007{left:411.120000pt;}
.x6d_c01007{left:412.196000pt;}
.x40_c01007{left:413.520000pt;}
.x69_c01007{left:416.768000pt;}
.xb_c01007{left:418.080000pt;}
.x46_c01007{left:420.000000pt;}
.x71_c01007{left:422.773333pt;}
.x26_c01007{left:426.480000pt;}
.x5d_c01007{left:429.600000pt;}
.x80_c01007{left:432.237333pt;}
.x58_c01007{left:434.049333pt;}
.x1f_c01007{left:435.840000pt;}
.x15_c01007{left:438.720000pt;}
.xc_c01007{left:439.920000pt;}
.x41_c01007{left:442.320000pt;}
.x7c_c01007{left:444.105333pt;}
.x90_c01007{left:445.899264pt;}
.x8a_c01007{left:450.926667pt;}
.x47_c01007{left:452.880000pt;}
.x98_c01007{left:455.697516pt;}
.x4e_c01007{left:457.348000pt;}
.x21_c01007{left:459.360000pt;}
.x6e_c01007{left:460.522667pt;}
.x91_c01007{left:461.718479pt;}
.x9c_c01007{left:467.474315pt;}
.x8b_c01007{left:474.113333pt;}
.x4f_c01007{left:477.268000pt;}
.x9d_c01007{left:481.151947pt;}
.x2d_c01007{left:482.876000pt;}
.x5e_c01007{left:483.840000pt;}
.x42_c01007{left:489.120000pt;}
.x81_c01007{left:493.677333pt;}
.x99_c01007{left:499.362567pt;}
.x82_c01007{left:506.877333pt;}
.x7d_c01007{left:509.514667pt;}
.x9a_c01007{left:532.242688pt;}
.x92_c01007{left:534.200425pt;}
.x7e_c01007{left:558.930667pt;}
.x8c_c01007{left:560.297333pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.000000;font-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_c01008{transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);-ms-transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);}
.m47_c01008{transform:matrix(0.011544,0.000139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011544,0.000139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011544,0.000139,-0.003000,0.249982,0,0);}
.m5d_c01008{transform:matrix(0.011794,0.000142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011794,0.000142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011794,0.000142,-0.003000,0.249982,0,0);}
.m67_c01008{transform:matrix(0.011959,0.000144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011959,0.000144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011959,0.000144,-0.003000,0.249982,0,0);}
.m5a_c01008{transform:matrix(0.091943,0.001103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.091943,0.001103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.091943,0.001103,-0.003000,0.249982,0,0);}
.m16_c01008{transform:matrix(0.094783,0.001137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.094783,0.001137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.094783,0.001137,-0.003000,0.249982,0,0);}
.m59_c01008{transform:matrix(0.099553,0.001195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.099553,0.001195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.099553,0.001195,-0.003000,0.249982,0,0);}
.m51_c01008{transform:matrix(0.103008,0.001236,-0.003000,0.249982,0,0);-ms-transform:matrix(0.103008,0.001236,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.103008,0.001236,-0.003000,0.249982,0,0);}
.m7_c01008{transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109705,0.000000,0.000000,0.250000,0,0);}
.m7d_c01008{transform:matrix(0.114102,0.001369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.114102,0.001369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.114102,0.001369,-0.003000,0.249982,0,0);}
.m9c_c01008{transform:matrix(0.131326,0.002233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.131326,0.002233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.131326,0.002233,-0.004249,0.249964,0,0);}
.m3_c01008{transform:matrix(0.138265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138265,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);}
.m31_c01008{transform:matrix(0.145370,0.001744,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145370,0.001744,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145370,0.001744,-0.003000,0.249982,0,0);}
.m23_c01008{transform:matrix(0.151664,0.001820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151664,0.001820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151664,0.001820,-0.003000,0.249982,0,0);}
.m72_c01008{transform:matrix(0.153104,0.001837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153104,0.001837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153104,0.001837,-0.003000,0.249982,0,0);}
.m85_c01008{transform:matrix(0.154477,0.002008,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154477,0.002008,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154477,0.002008,-0.003250,0.249979,0,0);}
.m6a_c01008{transform:matrix(0.155469,0.001866,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155469,0.001866,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155469,0.001866,-0.003000,0.249982,0,0);}
.m4a_c01008{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);}
.m2e_c01008{transform:matrix(0.158564,0.001903,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158564,0.001903,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158564,0.001903,-0.003000,0.249982,0,0);}
.m4e_c01008{transform:matrix(0.162868,0.001954,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162868,0.001954,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162868,0.001954,-0.003000,0.249982,0,0);}
.m53_c01008{transform:matrix(0.163543,0.001963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163543,0.001963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163543,0.001963,-0.003000,0.249982,0,0);}
.m99_c01008{transform:matrix(0.164711,0.002800,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164711,0.002800,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164711,0.002800,-0.004249,0.249964,0,0);}
.m8a_c01008{transform:matrix(0.165531,0.002152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165531,0.002152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165531,0.002152,-0.003250,0.249979,0,0);}
.m8_c01008{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);}
.m37_c01008{transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167988,0.002016,-0.003000,0.249982,0,0);}
.m4_c01008{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);}
.m49_c01008{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);}
.m2a_c01008{transform:matrix(0.169948,0.002039,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169948,0.002039,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169948,0.002039,-0.003000,0.249982,0,0);}
.m6e_c01008{transform:matrix(0.170268,0.002043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170268,0.002043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170268,0.002043,-0.003000,0.249982,0,0);}
.m3d_c01008{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);}
.m74_c01008{transform:matrix(0.173652,0.002084,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173652,0.002084,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173652,0.002084,-0.003000,0.249982,0,0);}
.m5b_c01008{transform:matrix(0.174522,0.002094,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174522,0.002094,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174522,0.002094,-0.003000,0.249982,0,0);}
.m86_c01008{transform:matrix(0.175635,0.002283,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175635,0.002283,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175635,0.002283,-0.003250,0.249979,0,0);}
.m66_c01008{transform:matrix(0.175777,0.002109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175777,0.002109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175777,0.002109,-0.003000,0.249982,0,0);}
.m35_c01008{transform:matrix(0.175972,0.002112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175972,0.002112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175972,0.002112,-0.003000,0.249982,0,0);}
.m97_c01008{transform:matrix(0.175990,0.002992,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175990,0.002992,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175990,0.002992,-0.004249,0.249964,0,0);}
.m21_c01008{transform:matrix(0.176312,0.002116,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176312,0.002116,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176312,0.002116,-0.003000,0.249982,0,0);}
.m90_c01008{transform:matrix(0.176850,0.002299,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176850,0.002299,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176850,0.002299,-0.003250,0.249979,0,0);}
.m94_c01008{transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177115,0.002302,-0.003250,0.249979,0,0);}
.m78_c01008{transform:matrix(0.177497,0.002130,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177497,0.002130,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177497,0.002130,-0.003000,0.249982,0,0);}
.m8b_c01008{transform:matrix(0.178245,0.002317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178245,0.002317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178245,0.002317,-0.003250,0.249979,0,0);}
.m25_c01008{transform:matrix(0.178697,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178697,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178697,0.002144,-0.003000,0.249982,0,0);}
.m4d_c01008{transform:matrix(0.179217,0.002151,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179217,0.002151,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179217,0.002151,-0.003000,0.249982,0,0);}
.m77_c01008{transform:matrix(0.179742,0.002157,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179742,0.002157,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179742,0.002157,-0.003000,0.249982,0,0);}
.m80_c01008{transform:matrix(0.180347,0.002164,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180347,0.002164,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180347,0.002164,-0.003000,0.249982,0,0);}
.me_c01008{transform:matrix(0.180747,0.002169,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180747,0.002169,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180747,0.002169,-0.003000,0.249982,0,0);}
.m57_c01008{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);}
.m79_c01008{transform:matrix(0.182027,0.002184,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182027,0.002184,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182027,0.002184,-0.003000,0.249982,0,0);}
.m22_c01008{transform:matrix(0.182587,0.002191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182587,0.002191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182587,0.002191,-0.003000,0.249982,0,0);}
.m36_c01008{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);}
.m2d_c01008{transform:matrix(0.185322,0.002224,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185322,0.002224,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185322,0.002224,-0.003000,0.249982,0,0);}
.m83_c01008{transform:matrix(0.186402,0.002237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186402,0.002237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186402,0.002237,-0.003000,0.249982,0,0);}
.m87_c01008{transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);}
.m33_c01008{transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187576,0.002251,-0.003000,0.249982,0,0);}
.m56_c01008{transform:matrix(0.187926,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187926,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187926,0.002255,-0.003000,0.249982,0,0);}
.m4c_c01008{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);}
.mf_c01008{transform:matrix(0.188201,0.002258,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188201,0.002258,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188201,0.002258,-0.003000,0.249982,0,0);}
.m92_c01008{transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188269,0.002447,-0.003250,0.249979,0,0);}
.m32_c01008{transform:matrix(0.190636,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190636,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190636,0.002288,-0.003000,0.249982,0,0);}
.m96_c01008{transform:matrix(0.190812,0.003244,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190812,0.003244,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190812,0.003244,-0.004249,0.249964,0,0);}
.m7f_c01008{transform:matrix(0.191066,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191066,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191066,0.002293,-0.003000,0.249982,0,0);}
.m46_c01008{transform:matrix(0.191121,0.002293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191121,0.002293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191121,0.002293,-0.003000,0.249982,0,0);}
.m54_c01008{transform:matrix(0.191356,0.002296,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191356,0.002296,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191356,0.002296,-0.003000,0.249982,0,0);}
.m6b_c01008{transform:matrix(0.191831,0.002302,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191831,0.002302,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191831,0.002302,-0.003000,0.249982,0,0);}
.m6c_c01008{transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192441,0.002309,-0.003000,0.249982,0,0);}
.m69_c01008{transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192886,0.002315,-0.003000,0.249982,0,0);}
.m26_c01008{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);}
.m70_c01008{transform:matrix(0.194096,0.002329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194096,0.002329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194096,0.002329,-0.003000,0.249982,0,0);}
.m81_c01008{transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);}
.m7e_c01008{transform:matrix(0.195221,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195221,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195221,0.002343,-0.003000,0.249982,0,0);}
.m34_c01008{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);}
.m76_c01008{transform:matrix(0.195401,0.002345,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195401,0.002345,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195401,0.002345,-0.003000,0.249982,0,0);}
.m41_c01008{transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196321,0.002356,-0.003000,0.249982,0,0);}
.m10_c01008{transform:matrix(0.197261,0.002367,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197261,0.002367,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197261,0.002367,-0.003000,0.249982,0,0);}
.m52_c01008{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);}
.m28_c01008{transform:matrix(0.198516,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198516,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198516,0.002382,-0.003000,0.249982,0,0);}
.m3b_c01008{transform:matrix(0.198686,0.002384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198686,0.002384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198686,0.002384,-0.003000,0.249982,0,0);}
.m4b_c01008{transform:matrix(0.198776,0.002385,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198776,0.002385,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198776,0.002385,-0.003000,0.249982,0,0);}
.m89_c01008{transform:matrix(0.198923,0.002586,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198923,0.002586,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198923,0.002586,-0.003250,0.249979,0,0);}
.m9a_c01008{transform:matrix(0.199501,0.003392,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199501,0.003392,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199501,0.003392,-0.004249,0.249964,0,0);}
.m6d_c01008{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);}
.m7b_c01008{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);}
.m7c_c01008{transform:matrix(0.200911,0.002411,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200911,0.002411,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200911,0.002411,-0.003000,0.249982,0,0);}
.m5_c01008{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);}
.m82_c01008{transform:matrix(0.203990,0.002448,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203990,0.002448,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203990,0.002448,-0.003000,0.249982,0,0);}
.m58_c01008{transform:matrix(0.204370,0.002452,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204370,0.002452,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204370,0.002452,-0.003000,0.249982,0,0);}
.m2c_c01008{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);}
.m19_c01008{transform:matrix(0.205415,0.002465,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205415,0.002465,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205415,0.002465,-0.003000,0.249982,0,0);}
.m2f_c01008{transform:matrix(0.205690,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205690,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205690,0.002468,-0.003000,0.249982,0,0);}
.m24_c01008{transform:matrix(0.206595,0.002479,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206595,0.002479,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206595,0.002479,-0.003000,0.249982,0,0);}
.m9b_c01008{transform:matrix(0.206600,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206600,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206600,0.003512,-0.004249,0.249964,0,0);}
.m29_c01008{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);}
.m44_c01008{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);}
.m7a_c01008{transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208870,0.002506,-0.003000,0.249982,0,0);}
.m95_c01008{transform:matrix(0.209087,0.002718,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209087,0.002718,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209087,0.002718,-0.003250,0.249979,0,0);}
.m20_c01008{transform:matrix(0.209165,0.002510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209165,0.002510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209165,0.002510,-0.003000,0.249982,0,0);}
.m73_c01008{transform:matrix(0.211185,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211185,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211185,0.002534,-0.003000,0.249982,0,0);}
.m1b_c01008{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);}
.m42_c01008{transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);}
.m1_c01008{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);}
.m68_c01008{transform:matrix(0.214240,0.002571,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214240,0.002571,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214240,0.002571,-0.003000,0.249982,0,0);}
.m3c_c01008{transform:matrix(0.215349,0.002584,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215349,0.002584,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215349,0.002584,-0.003000,0.249982,0,0);}
.m84_c01008{transform:matrix(0.218212,0.002837,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218212,0.002837,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218212,0.002837,-0.003250,0.249979,0,0);}
.m30_c01008{transform:matrix(0.218769,0.002625,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218769,0.002625,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218769,0.002625,-0.003000,0.249982,0,0);}
.m1a_c01008{transform:matrix(0.219179,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219179,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219179,0.002630,-0.003000,0.249982,0,0);}
.m65_c01008{transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);}
.m6f_c01008{transform:matrix(0.220569,0.002647,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220569,0.002647,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220569,0.002647,-0.003000,0.249982,0,0);}
.m91_c01008{transform:matrix(0.222841,0.002897,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222841,0.002897,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222841,0.002897,-0.003250,0.249979,0,0);}
.m12_c01008{transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224084,0.002689,-0.003000,0.249982,0,0);}
.m71_c01008{transform:matrix(0.224449,0.002693,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224449,0.002693,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224449,0.002693,-0.003000,0.249982,0,0);}
.m18_c01008{transform:matrix(0.225719,0.002709,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225719,0.002709,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225719,0.002709,-0.003000,0.249982,0,0);}
.m62_c01008{transform:matrix(0.226399,0.002717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226399,0.002717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226399,0.002717,-0.003000,0.249982,0,0);}
.m45_c01008{transform:matrix(0.227114,0.002725,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227114,0.002725,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227114,0.002725,-0.003000,0.249982,0,0);}
.m43_c01008{transform:matrix(0.228239,0.002739,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228239,0.002739,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228239,0.002739,-0.003000,0.249982,0,0);}
.m5c_c01008{transform:matrix(0.229273,0.002751,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229273,0.002751,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229273,0.002751,-0.003000,0.249982,0,0);}
.m1c_c01008{transform:matrix(0.235943,0.002831,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235943,0.002831,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235943,0.002831,-0.003000,0.249982,0,0);}
.m40_c01008{transform:matrix(0.236083,0.002833,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236083,0.002833,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236083,0.002833,-0.003000,0.249982,0,0);}
.m75_c01008{transform:matrix(0.237113,0.002845,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237113,0.002845,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237113,0.002845,-0.003000,0.249982,0,0);}
.m4f_c01008{transform:matrix(0.239688,0.002876,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239688,0.002876,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239688,0.002876,-0.003000,0.249982,0,0);}
.m38_c01008{transform:matrix(0.240453,0.002885,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240453,0.002885,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240453,0.002885,-0.003000,0.249982,0,0);}
.m64_c01008{transform:matrix(0.240873,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240873,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240873,0.002890,-0.003000,0.249982,0,0);}
.m0_c01008{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);}
.m61_c01008{transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);}
.m3e_c01008{transform:matrix(0.244547,0.002935,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244547,0.002935,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244547,0.002935,-0.003000,0.249982,0,0);}
.m1f_c01008{transform:matrix(0.245767,0.002949,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245767,0.002949,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245767,0.002949,-0.003000,0.249982,0,0);}
.m9_c01008{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.m8f_c01008{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.mc_c01008{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m1d_c01008{transform:matrix(0.251607,0.003019,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251607,0.003019,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251607,0.003019,-0.003000,0.249982,0,0);}
.m88_c01008{transform:matrix(0.251804,0.003273,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251804,0.003273,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251804,0.003273,-0.003250,0.249979,0,0);}
.m2b_c01008{transform:matrix(0.259351,0.003112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259351,0.003112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259351,0.003112,-0.003000,0.249982,0,0);}
.m55_c01008{transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);}
.m27_c01008{transform:matrix(0.268076,0.003217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268076,0.003217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268076,0.003217,-0.003000,0.249982,0,0);}
.m8d_c01008{transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276225,0.000000,0.000000,0.250000,0,0);}
.m48_c01008{transform:matrix(0.279935,0.003359,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279935,0.003359,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279935,0.003359,-0.003000,0.249982,0,0);}
.md_c01008{transform:matrix(0.285989,0.003432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.285989,0.003432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.285989,0.003432,-0.003000,0.249982,0,0);}
.m39_c01008{transform:matrix(0.291304,0.003496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291304,0.003496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291304,0.003496,-0.003000,0.249982,0,0);}
.m3a_c01008{transform:matrix(0.295674,0.003548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295674,0.003548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295674,0.003548,-0.003000,0.249982,0,0);}
.m1e_c01008{transform:matrix(0.295789,0.003549,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295789,0.003549,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295789,0.003549,-0.003000,0.249982,0,0);}
.m8e_c01008{transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302040,0.000000,0.000000,0.250000,0,0);}
.m93_c01008{transform:matrix(0.308114,0.004005,-0.003250,0.249979,0,0);-ms-transform:matrix(0.308114,0.004005,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.308114,0.004005,-0.003250,0.249979,0,0);}
.m2_c01008{transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);}
.m17_c01008{transform:matrix(0.314237,0.003771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314237,0.003771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314237,0.003771,-0.003000,0.249982,0,0);}
.m60_c01008{transform:matrix(0.326971,0.003924,-0.003000,0.249982,0,0);-ms-transform:matrix(0.326971,0.003924,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.326971,0.003924,-0.003000,0.249982,0,0);}
.m3f_c01008{transform:matrix(0.342520,0.004110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.342520,0.004110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.342520,0.004110,-0.003000,0.249982,0,0);}
.m50_c01008{transform:matrix(0.357509,0.004290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.357509,0.004290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.357509,0.004290,-0.003000,0.249982,0,0);}
.m98_c01008{transform:matrix(0.368167,0.006259,-0.004249,0.249964,0,0);-ms-transform:matrix(0.368167,0.006259,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.368167,0.006259,-0.004249,0.249964,0,0);}
.m13_c01008{transform:matrix(0.377663,0.004532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.377663,0.004532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.377663,0.004532,-0.003000,0.249982,0,0);}
.m14_c01008{transform:matrix(0.435029,0.005220,-0.003000,0.249982,0,0);-ms-transform:matrix(0.435029,0.005220,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.435029,0.005220,-0.003000,0.249982,0,0);}
.m5f_c01008{transform:matrix(0.522882,0.006275,-0.003000,0.249982,0,0);-ms-transform:matrix(0.522882,0.006275,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.522882,0.006275,-0.003000,0.249982,0,0);}
.m11_c01008{transform:matrix(0.531987,0.006384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.531987,0.006384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.531987,0.006384,-0.003000,0.249982,0,0);}
.ma_c01008{transform:matrix(0.616015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616015,0.000000,0.000000,0.250000,0,0);}
.m15_c01008{transform:matrix(0.677596,0.008131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.677596,0.008131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.677596,0.008131,-0.003000,0.249982,0,0);}
.m63_c01008{transform:matrix(0.686691,0.008240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.686691,0.008240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.686691,0.008240,-0.003000,0.249982,0,0);}
.m8c_c01008{transform:matrix(0.743870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743870,0.000000,0.000000,0.250000,0,0);}
.mb_c01008{transform:matrix(0.769960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769960,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls0_c01008{letter-spacing:0.000000px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:0.000000px;}
.fc0_c01008{color:transparent;}
.fs0_c01008{font-size:22.050000px;}
.fs3_c01008{font-size:38.850000px;}
.fse_c01008{font-size:55.658041px;}
.fsb_c01008{font-size:66.154763px;}
.fs5_c01008{font-size:67.204838px;}
.fsa_c01008{font-size:68.254914px;}
.fsc_c01008{font-size:68.255767px;}
.fs9_c01008{font-size:69.304989px;}
.fs4_c01008{font-size:70.355065px;}
.fs7_c01008{font-size:71.405141px;}
.fs6_c01008{font-size:72.455216px;}
.fs8_c01008{font-size:73.505292px;}
.fsd_c01008{font-size:75.606388px;}
.fs1_c01008{font-size:84.000000px;}
.fs2_c01008{font-size:130.200000px;}
.y0_c01008{bottom:0.000000px;}
.y94_c01008{bottom:210.714724px;}
.y93_c01008{bottom:211.632750px;}
.y92_c01008{bottom:212.596344px;}
.y91_c01008{bottom:212.894643px;}
.y90_c01008{bottom:213.138347px;}
.y8f_c01008{bottom:213.641844px;}
.y8e_c01008{bottom:214.450500px;}
.y8d_c01008{bottom:423.223137px;}
.y8c_c01008{bottom:423.935706px;}
.y8b_c01008{bottom:424.286589px;}
.y8a_c01008{bottom:425.336352px;}
.y89_c01008{bottom:425.680391px;}
.y88_c01008{bottom:426.063000px;}
.y86_c01008{bottom:467.016775px;}
.y85_c01008{bottom:467.518257px;}
.y84_c01008{bottom:468.041286px;}
.y83_c01008{bottom:468.298042px;}
.y82_c01008{bottom:468.989551px;}
.y81_c01008{bottom:469.494484px;}
.y80_c01008{bottom:469.722381px;}
.y7f_c01008{bottom:470.881500px;}
.y7e_c01008{bottom:490.731306px;}
.y7d_c01008{bottom:491.645040px;}
.y7c_c01008{bottom:492.461610px;}
.y7b_c01008{bottom:492.849762px;}
.y7a_c01008{bottom:493.228770px;}
.y79_c01008{bottom:493.533960px;}
.y78_c01008{bottom:510.939546px;}
.y77_c01008{bottom:511.837206px;}
.y76_c01008{bottom:512.926464px;}
.y75_c01008{bottom:513.254976px;}
.y74_c01008{bottom:513.781086px;}
.y73_c01008{bottom:514.761918px;}
.y72_c01008{bottom:515.348610px;}
.y71_c01008{bottom:515.947338px;}
.y70_c01008{bottom:516.486942px;}
.y6f_c01008{bottom:534.777324px;}
.y6e_c01008{bottom:535.887900px;}
.y6d_c01008{bottom:536.315058px;}
.y6c_c01008{bottom:537.397752px;}
.y6b_c01008{bottom:538.526274px;}
.y6a_c01008{bottom:539.439372px;}
.y69_c01008{bottom:558.041394px;}
.y68_c01008{bottom:558.871482px;}
.y67_c01008{bottom:559.353162px;}
.y66_c01008{bottom:559.949970px;}
.y65_c01008{bottom:560.254548px;}
.y64_c01008{bottom:561.080730px;}
.y63_c01008{bottom:561.579726px;}
.y62_c01008{bottom:581.190906px;}
.y61_c01008{bottom:582.372270px;}
.y60_c01008{bottom:582.791190px;}
.y5f_c01008{bottom:582.992808px;}
.y5e_c01008{bottom:583.766712px;}
.y5d_c01008{bottom:584.314284px;}
.y5c_c01008{bottom:584.559156px;}
.y5b_c01008{bottom:584.710740px;}
.y5a_c01008{bottom:604.978800px;}
.y59_c01008{bottom:606.746022px;}
.y58_c01008{bottom:607.750242px;}
.y57_c01008{bottom:628.406586px;}
.y55_c01008{bottom:628.406694px;}
.y56_c01008{bottom:628.407012px;}
.y54_c01008{bottom:649.331850px;}
.y53_c01008{bottom:649.378848px;}
.y52_c01008{bottom:650.230734px;}
.y51_c01008{bottom:650.528904px;}
.y50_c01008{bottom:651.137664px;}
.y4f_c01008{bottom:651.650088px;}
.y4e_c01008{bottom:652.564290px;}
.y4d_c01008{bottom:652.800288px;}
.y4c_c01008{bottom:653.114550px;}
.y4b_c01008{bottom:671.916786px;}
.y4a_c01008{bottom:671.961198px;}
.y49_c01008{bottom:672.965868px;}
.y48_c01008{bottom:673.316742px;}
.y47_c01008{bottom:673.974444px;}
.y46_c01008{bottom:674.594970px;}
.y45_c01008{bottom:675.050754px;}
.y44_c01008{bottom:675.479382px;}
.y43_c01008{bottom:675.770610px;}
.y42_c01008{bottom:676.220634px;}
.y41_c01008{bottom:676.338060px;}
.y40_c01008{bottom:694.735584px;}
.y3f_c01008{bottom:695.104668px;}
.y3e_c01008{bottom:695.929938px;}
.y3d_c01008{bottom:696.256464px;}
.y3c_c01008{bottom:696.691080px;}
.y3b_c01008{bottom:697.305828px;}
.y3a_c01008{bottom:697.823736px;}
.y39_c01008{bottom:717.096564px;}
.y38_c01008{bottom:718.174014px;}
.y37_c01008{bottom:718.446456px;}
.y36_c01008{bottom:719.038452px;}
.y35_c01008{bottom:719.530206px;}
.y34_c01008{bottom:720.259062px;}
.y33_c01008{bottom:720.588180px;}
.y32_c01008{bottom:721.075104px;}
.y31_c01008{bottom:721.475472px;}
.y30_c01008{bottom:721.970556px;}
.y2f_c01008{bottom:741.749724px;}
.y2e_c01008{bottom:742.792932px;}
.y2d_c01008{bottom:743.392764px;}
.y2c_c01008{bottom:744.069564px;}
.y2b_c01008{bottom:744.283512px;}
.y2a_c01008{bottom:744.921630px;}
.y29_c01008{bottom:763.363716px;}
.y28_c01008{bottom:763.946304px;}
.y27_c01008{bottom:764.581638px;}
.y26_c01008{bottom:764.837604px;}
.y25_c01008{bottom:765.405240px;}
.y24_c01008{bottom:765.777402px;}
.y23_c01008{bottom:766.814724px;}
.y22_c01008{bottom:767.272344px;}
.y21_c01008{bottom:767.875104px;}
.y20_c01008{bottom:787.189236px;}
.y1f_c01008{bottom:787.687386px;}
.y1e_c01008{bottom:788.218638px;}
.y1d_c01008{bottom:788.572248px;}
.y1c_c01008{bottom:789.203580px;}
.y1b_c01008{bottom:789.845748px;}
.y1a_c01008{bottom:790.286208px;}
.y19_c01008{bottom:808.638294px;}
.y18_c01008{bottom:808.991034px;}
.y17_c01008{bottom:810.008868px;}
.y16_c01008{bottom:810.337182px;}
.y15_c01008{bottom:811.073556px;}
.y14_c01008{bottom:811.594098px;}
.y13_c01008{bottom:811.959216px;}
.y12_c01008{bottom:812.714346px;}
.y11_c01008{bottom:813.241086px;}
.y10_c01008{bottom:830.972184px;}
.yf_c01008{bottom:831.831090px;}
.ye_c01008{bottom:832.073568px;}
.yd_c01008{bottom:832.586586px;}
.yc_c01008{bottom:832.942842px;}
.yb_c01008{bottom:833.230446px;}
.ya_c01008{bottom:833.608212px;}
.y9_c01008{bottom:834.009360px;}
.y8_c01008{bottom:834.472950px;}
.y7_c01008{bottom:835.111500px;}
.y87_c01008{bottom:857.244000px;}
.y6_c01008{bottom:913.140000px;}
.y5_c01008{bottom:918.517500px;}
.y4_c01008{bottom:920.878500px;}
.y3_c01008{bottom:921.045000px;}
.y2_c01008{bottom:937.185000px;}
.y1_c01008{bottom:944.730000px;}
.h2_c01008{height:22.050000px;}
.h5_c01008{height:38.850000px;}
.h10_c01008{height:55.658041px;}
.hd_c01008{height:66.154763px;}
.h7_c01008{height:67.204838px;}
.hc_c01008{height:68.254914px;}
.he_c01008{height:68.255767px;}
.hb_c01008{height:69.304989px;}
.h6_c01008{height:70.355065px;}
.h9_c01008{height:71.405141px;}
.h8_c01008{height:72.455216px;}
.ha_c01008{height:73.505292px;}
.hf_c01008{height:75.606388px;}
.h3_c01008{height:84.000000px;}
.h4_c01008{height:130.200000px;}
.h1_c01008{height:1005.000000px;}
.h0_c01008{height:1005.150000px;}
.w0_c01008{width:715.200000px;}
.w1_c01008{width:715.500000px;}
.x0_c01008{left:0.000000px;}
.x3e_c01008{left:121.560576px;}
.x17_c01008{left:127.993602px;}
.x3f_c01008{left:129.970878px;}
.x4f_c01008{left:133.197882px;}
.x2a_c01008{left:134.587836px;}
.x46_c01008{left:136.201542px;}
.x37_c01008{left:137.222622px;}
.xe_c01008{left:138.348000px;}
.x50_c01008{left:148.330242px;}
.x57_c01008{left:154.521774px;}
.x40_c01008{left:162.097104px;}
.x18_c01008{left:163.137342px;}
.x30_c01008{left:172.908540px;}
.x1f_c01008{left:175.331214px;}
.x24_c01008{left:178.552836px;}
.x41_c01008{left:182.865600px;}
.x38_c01008{left:184.257180px;}
.x2b_c01008{left:187.764336px;}
.xf_c01008{left:191.560500px;}
.x60_c01008{left:194.311008px;}
.x31_c01008{left:201.521856px;}
.x2c_c01008{left:205.593336px;}
.x25_c01008{left:209.061738px;}
.x5b_c01008{left:212.304546px;}
.x19_c01008{left:213.438024px;}
.x62_c01008{left:226.431000px;}
.x51_c01008{left:227.619150px;}
.x20_c01008{left:228.845214px;}
.x10_c01008{left:230.193000px;}
.x32_c01008{left:236.348028px;}
.x1a_c01008{left:237.738642px;}
.x39_c01008{left:240.111846px;}
.x63_c01008{left:243.961500px;}
.x42_c01008{left:246.065088px;}
.x55_c01008{left:247.436898px;}
.x5c_c01008{left:251.444142px;}
.x6c_c01008{left:256.345500px;}
.x47_c01008{left:258.240042px;}
.x33_c01008{left:259.898970px;}
.x2d_c01008{left:261.993336px;}
.x11_c01008{left:263.622000px;}
.x68_c01008{left:264.946500px;}
.xa_c01008{left:270.889500px;}
.x1b_c01008{left:272.490900px;}
.x58_c01008{left:274.649574px;}
.x26_c01008{left:278.252754px;}
.x3a_c01008{left:279.580314px;}
.xb_c01008{left:282.030000px;}
.x43_c01008{left:290.399526px;}
.x2_c01008{left:295.110000px;}
.x48_c01008{left:300.942042px;}
.x27_c01008{left:303.015354px;}
.x52_c01008{left:304.988004px;}
.x3b_c01008{left:309.291174px;}
.x21_c01008{left:310.923714px;}
.x2e_c01008{left:311.979336px;}
.x1_c01008{left:313.470000px;}
.x4d_c01008{left:315.918966px;}
.x12_c01008{left:319.069500px;}
.x1c_c01008{left:321.603636px;}
.x53_c01008{left:325.164990px;}
.x6d_c01008{left:333.531000px;}
.x64_c01008{left:335.995500px;}
.x3_c01008{left:338.310000px;}
.x28_c01008{left:340.816986px;}
.x1d_c01008{left:343.462344px;}
.x69_c01008{left:345.697500px;}
.x34_c01008{left:347.114382px;}
.x13_c01008{left:348.757500px;}
.x49_c01008{left:351.672042px;}
.x22_c01008{left:355.194714px;}
.x4_c01008{left:356.940000px;}
.x44_c01008{left:362.445798px;}
.x59_c01008{left:363.465246px;}
.x6e_c01008{left:365.413500px;}
.x54_c01008{left:367.075998px;}
.x61_c01008{left:370.849008px;}
.x6a_c01008{left:372.688500px;}
.x5d_c01008{left:373.769232px;}
.x4a_c01008{left:376.519542px;}
.x3c_c01008{left:384.314574px;}
.x35_c01008{left:389.446374px;}
.x14_c01008{left:391.509000px;}
.x23_c01008{left:396.707214px;}
.x2f_c01008{left:398.913336px;}
.x29_c01008{left:400.214844px;}
.x65_c01008{left:404.460000px;}
.x4e_c01008{left:405.565872px;}
.x36_c01008{left:408.899406px;}
.x15_c01008{left:411.715500px;}
.x3d_c01008{left:417.821970px;}
.x6f_c01008{left:422.095500px;}
.x5_c01008{left:426.060000px;}
.x6b_c01008{left:427.501500px;}
.x5a_c01008{left:428.759322px;}
.x66_c01008{left:430.380000px;}
.x56_c01008{left:431.866398px;}
.x1e_c01008{left:434.798550px;}
.x45_c01008{left:437.367498px;}
.xc_c01008{left:439.416000px;}
.x67_c01008{left:444.960000px;}
.x5e_c01008{left:446.413122px;}
.x4b_c01008{left:447.510042px;}
.x4c_c01008{left:451.426542px;}
.x70_c01008{left:476.097000px;}
.x16_c01008{left:483.291000px;}
.x6_c01008{left:485.190000px;}
.x5f_c01008{left:506.215962px;}
.x7_c01008{left:515.160000px;}
.x8_c01008{left:571.050000px;}
.xd_c01008{left:592.920000px;}
.x9_c01008{left:602.910000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls0_c01008{letter-spacing:0.000000pt;}
.ws0_c01008{word-spacing:0.000000pt;}
.fs0_c01008{font-size:19.600000pt;}
.fs3_c01008{font-size:34.533333pt;}
.fse_c01008{font-size:49.473814pt;}
.fsb_c01008{font-size:58.804233pt;}
.fs5_c01008{font-size:59.737634pt;}
.fsa_c01008{font-size:60.671035pt;}
.fsc_c01008{font-size:60.671793pt;}
.fs9_c01008{font-size:61.604435pt;}
.fs4_c01008{font-size:62.537836pt;}
.fs7_c01008{font-size:63.471236pt;}
.fs6_c01008{font-size:64.404637pt;}
.fs8_c01008{font-size:65.338037pt;}
.fsd_c01008{font-size:67.205678pt;}
.fs1_c01008{font-size:74.666667pt;}
.fs2_c01008{font-size:115.733333pt;}
.y0_c01008{bottom:0.000000pt;}
.y94_c01008{bottom:187.301977pt;}
.y93_c01008{bottom:188.118000pt;}
.y92_c01008{bottom:188.974528pt;}
.y91_c01008{bottom:189.239683pt;}
.y90_c01008{bottom:189.456308pt;}
.y8f_c01008{bottom:189.903861pt;}
.y8e_c01008{bottom:190.622667pt;}
.y8d_c01008{bottom:376.198344pt;}
.y8c_c01008{bottom:376.831739pt;}
.y8b_c01008{bottom:377.143635pt;}
.y8a_c01008{bottom:378.076757pt;}
.y89_c01008{bottom:378.382569pt;}
.y88_c01008{bottom:378.722667pt;}
.y86_c01008{bottom:415.126023pt;}
.y85_c01008{bottom:415.571784pt;}
.y84_c01008{bottom:416.036699pt;}
.y83_c01008{bottom:416.264927pt;}
.y82_c01008{bottom:416.879601pt;}
.y81_c01008{bottom:417.328431pt;}
.y80_c01008{bottom:417.531005pt;}
.y7f_c01008{bottom:418.561333pt;}
.y7e_c01008{bottom:436.205605pt;}
.y7d_c01008{bottom:437.017813pt;}
.y7c_c01008{bottom:437.743653pt;}
.y7b_c01008{bottom:438.088677pt;}
.y7a_c01008{bottom:438.425573pt;}
.y79_c01008{bottom:438.696853pt;}
.y78_c01008{bottom:454.168485pt;}
.y77_c01008{bottom:454.966405pt;}
.y76_c01008{bottom:455.934635pt;}
.y75_c01008{bottom:456.226645pt;}
.y74_c01008{bottom:456.694299pt;}
.y73_c01008{bottom:457.566149pt;}
.y72_c01008{bottom:458.087653pt;}
.y71_c01008{bottom:458.619856pt;}
.y70_c01008{bottom:459.099504pt;}
.y6f_c01008{bottom:475.357621pt;}
.y6e_c01008{bottom:476.344800pt;}
.y6d_c01008{bottom:476.724496pt;}
.y6c_c01008{bottom:477.686891pt;}
.y6b_c01008{bottom:478.690021pt;}
.y6a_c01008{bottom:479.501664pt;}
.y69_c01008{bottom:496.036795pt;}
.y68_c01008{bottom:496.774651pt;}
.y67_c01008{bottom:497.202811pt;}
.y66_c01008{bottom:497.733307pt;}
.y65_c01008{bottom:498.004043pt;}
.y64_c01008{bottom:498.738427pt;}
.y63_c01008{bottom:499.181979pt;}
.y62_c01008{bottom:516.614139pt;}
.y61_c01008{bottom:517.664240pt;}
.y60_c01008{bottom:518.036613pt;}
.y5f_c01008{bottom:518.215829pt;}
.y5e_c01008{bottom:518.903744pt;}
.y5d_c01008{bottom:519.390475pt;}
.y5c_c01008{bottom:519.608139pt;}
.y5b_c01008{bottom:519.742880pt;}
.y5a_c01008{bottom:537.758933pt;}
.y59_c01008{bottom:539.329797pt;}
.y58_c01008{bottom:540.222437pt;}
.y57_c01008{bottom:558.583632pt;}
.y55_c01008{bottom:558.583728pt;}
.y56_c01008{bottom:558.584011pt;}
.y54_c01008{bottom:577.183867pt;}
.y53_c01008{bottom:577.225643pt;}
.y52_c01008{bottom:577.982875pt;}
.y51_c01008{bottom:578.247915pt;}
.y50_c01008{bottom:578.789035pt;}
.y4f_c01008{bottom:579.244523pt;}
.y4e_c01008{bottom:580.057147pt;}
.y4d_c01008{bottom:580.266923pt;}
.y4c_c01008{bottom:580.546267pt;}
.y4b_c01008{bottom:597.259365pt;}
.y4a_c01008{bottom:597.298843pt;}
.y49_c01008{bottom:598.191883pt;}
.y48_c01008{bottom:598.503771pt;}
.y47_c01008{bottom:599.088395pt;}
.y46_c01008{bottom:599.639973pt;}
.y45_c01008{bottom:600.045115pt;}
.y44_c01008{bottom:600.426117pt;}
.y43_c01008{bottom:600.684987pt;}
.y42_c01008{bottom:601.085008pt;}
.y41_c01008{bottom:601.189387pt;}
.y40_c01008{bottom:617.542741pt;}
.y3f_c01008{bottom:617.870816pt;}
.y3e_c01008{bottom:618.604389pt;}
.y3d_c01008{bottom:618.894635pt;}
.y3c_c01008{bottom:619.280960pt;}
.y3b_c01008{bottom:619.827403pt;}
.y3a_c01008{bottom:620.287765pt;}
.y39_c01008{bottom:637.419168pt;}
.y38_c01008{bottom:638.376901pt;}
.y37_c01008{bottom:638.619072pt;}
.y36_c01008{bottom:639.145291pt;}
.y35_c01008{bottom:639.582405pt;}
.y34_c01008{bottom:640.230277pt;}
.y33_c01008{bottom:640.522827pt;}
.y32_c01008{bottom:640.955648pt;}
.y31_c01008{bottom:641.311531pt;}
.y30_c01008{bottom:641.751605pt;}
.y2f_c01008{bottom:659.333088pt;}
.y2e_c01008{bottom:660.260384pt;}
.y2d_c01008{bottom:660.793568pt;}
.y2c_c01008{bottom:661.395168pt;}
.y2b_c01008{bottom:661.585344pt;}
.y2a_c01008{bottom:662.152560pt;}
.y29_c01008{bottom:678.545525pt;}
.y28_c01008{bottom:679.063381pt;}
.y27_c01008{bottom:679.628123pt;}
.y26_c01008{bottom:679.855648pt;}
.y25_c01008{bottom:680.360213pt;}
.y24_c01008{bottom:680.691024pt;}
.y23_c01008{bottom:681.613088pt;}
.y22_c01008{bottom:682.019861pt;}
.y21_c01008{bottom:682.555648pt;}
.y20_c01008{bottom:699.723765pt;}
.y1f_c01008{bottom:700.166565pt;}
.y1e_c01008{bottom:700.638789pt;}
.y1d_c01008{bottom:700.953109pt;}
.y1c_c01008{bottom:701.514293pt;}
.y1b_c01008{bottom:702.085109pt;}
.y1a_c01008{bottom:702.476629pt;}
.y19_c01008{bottom:718.789595pt;}
.y18_c01008{bottom:719.103141pt;}
.y17_c01008{bottom:720.007883pt;}
.y16_c01008{bottom:720.299717pt;}
.y15_c01008{bottom:720.954272pt;}
.y14_c01008{bottom:721.416976pt;}
.y13_c01008{bottom:721.741525pt;}
.y12_c01008{bottom:722.412752pt;}
.y11_c01008{bottom:722.880965pt;}
.y10_c01008{bottom:738.641941pt;}
.yf_c01008{bottom:739.405413pt;}
.ye_c01008{bottom:739.620949pt;}
.yd_c01008{bottom:740.076965pt;}
.yc_c01008{bottom:740.393637pt;}
.yb_c01008{bottom:740.649285pt;}
.ya_c01008{bottom:740.985077pt;}
.y9_c01008{bottom:741.341653pt;}
.y8_c01008{bottom:741.753733pt;}
.y7_c01008{bottom:742.321333pt;}
.y87_c01008{bottom:761.994667pt;}
.y6_c01008{bottom:811.680000pt;}
.y5_c01008{bottom:816.460000pt;}
.y4_c01008{bottom:818.558667pt;}
.y3_c01008{bottom:818.706667pt;}
.y2_c01008{bottom:833.053333pt;}
.y1_c01008{bottom:839.760000pt;}
.h2_c01008{height:19.600000pt;}
.h5_c01008{height:34.533333pt;}
.h10_c01008{height:49.473814pt;}
.hd_c01008{height:58.804233pt;}
.h7_c01008{height:59.737634pt;}
.hc_c01008{height:60.671035pt;}
.he_c01008{height:60.671793pt;}
.hb_c01008{height:61.604435pt;}
.h6_c01008{height:62.537836pt;}
.h9_c01008{height:63.471236pt;}
.h8_c01008{height:64.404637pt;}
.ha_c01008{height:65.338037pt;}
.hf_c01008{height:67.205678pt;}
.h3_c01008{height:74.666667pt;}
.h4_c01008{height:115.733333pt;}
.h1_c01008{height:893.333333pt;}
.h0_c01008{height:893.466667pt;}
.w0_c01008{width:635.733333pt;}
.w1_c01008{width:636.000000pt;}
.x0_c01008{left:0.000000pt;}
.x3e_c01008{left:108.053845pt;}
.x17_c01008{left:113.772091pt;}
.x3f_c01008{left:115.529669pt;}
.x4f_c01008{left:118.398117pt;}
.x2a_c01008{left:119.633632pt;}
.x46_c01008{left:121.068037pt;}
.x37_c01008{left:121.975664pt;}
.xe_c01008{left:122.976000pt;}
.x50_c01008{left:131.849104pt;}
.x57_c01008{left:137.352688pt;}
.x40_c01008{left:144.086315pt;}
.x18_c01008{left:145.010971pt;}
.x30_c01008{left:153.696480pt;}
.x1f_c01008{left:155.849968pt;}
.x24_c01008{left:158.713632pt;}
.x41_c01008{left:162.547200pt;}
.x38_c01008{left:163.784160pt;}
.x2b_c01008{left:166.901632pt;}
.xf_c01008{left:170.276000pt;}
.x60_c01008{left:172.720896pt;}
.x31_c01008{left:179.130539pt;}
.x2c_c01008{left:182.749632pt;}
.x25_c01008{left:185.832656pt;}
.x5b_c01008{left:188.715152pt;}
.x19_c01008{left:189.722688pt;}
.x62_c01008{left:201.272000pt;}
.x51_c01008{left:202.328133pt;}
.x20_c01008{left:203.417968pt;}
.x10_c01008{left:204.616000pt;}
.x32_c01008{left:210.087136pt;}
.x1a_c01008{left:211.323237pt;}
.x39_c01008{left:213.432752pt;}
.x63_c01008{left:216.854667pt;}
.x42_c01008{left:218.724523pt;}
.x55_c01008{left:219.943909pt;}
.x5c_c01008{left:223.505904pt;}
.x6c_c01008{left:227.862667pt;}
.x47_c01008{left:229.546704pt;}
.x33_c01008{left:231.021307pt;}
.x2d_c01008{left:232.882965pt;}
.x11_c01008{left:234.330667pt;}
.x68_c01008{left:235.508000pt;}
.xa_c01008{left:240.790667pt;}
.x1b_c01008{left:242.214133pt;}
.x58_c01008{left:244.132955pt;}
.x26_c01008{left:247.335781pt;}
.x3a_c01008{left:248.515835pt;}
.xb_c01008{left:250.693333pt;}
.x43_c01008{left:258.132912pt;}
.x2_c01008{left:262.320000pt;}
.x48_c01008{left:267.504037pt;}
.x27_c01008{left:269.346981pt;}
.x52_c01008{left:271.100448pt;}
.x3b_c01008{left:274.925488pt;}
.x21_c01008{left:276.376635pt;}
.x2e_c01008{left:277.314965pt;}
.x1_c01008{left:278.640000pt;}
.x4d_c01008{left:280.816859pt;}
.x12_c01008{left:283.617333pt;}
.x1c_c01008{left:285.869899pt;}
.x53_c01008{left:289.035547pt;}
.x6d_c01008{left:296.472000pt;}
.x64_c01008{left:298.662667pt;}
.x3_c01008{left:300.720000pt;}
.x28_c01008{left:302.948432pt;}
.x1d_c01008{left:305.299861pt;}
.x69_c01008{left:307.286667pt;}
.x34_c01008{left:308.546117pt;}
.x13_c01008{left:310.006667pt;}
.x49_c01008{left:312.597371pt;}
.x22_c01008{left:315.728635pt;}
.x4_c01008{left:317.280000pt;}
.x44_c01008{left:322.174043pt;}
.x59_c01008{left:323.080219pt;}
.x6e_c01008{left:324.812000pt;}
.x54_c01008{left:326.289776pt;}
.x61_c01008{left:329.643563pt;}
.x6a_c01008{left:331.278667pt;}
.x5d_c01008{left:332.239317pt;}
.x4a_c01008{left:334.684037pt;}
.x3c_c01008{left:341.612955pt;}
.x35_c01008{left:346.174555pt;}
.x14_c01008{left:348.008000pt;}
.x23_c01008{left:352.628635pt;}
.x2f_c01008{left:354.589632pt;}
.x29_c01008{left:355.746528pt;}
.x65_c01008{left:359.520000pt;}
.x4e_c01008{left:360.502997pt;}
.x36_c01008{left:363.466139pt;}
.x15_c01008{left:365.969333pt;}
.x3d_c01008{left:371.397307pt;}
.x6f_c01008{left:375.196000pt;}
.x5_c01008{left:378.720000pt;}
.x6b_c01008{left:380.001333pt;}
.x5a_c01008{left:381.119397pt;}
.x66_c01008{left:382.560000pt;}
.x56_c01008{left:383.881243pt;}
.x1e_c01008{left:386.487600pt;}
.x45_c01008{left:388.771109pt;}
.xc_c01008{left:390.592000pt;}
.x67_c01008{left:395.520000pt;}
.x5e_c01008{left:396.811664pt;}
.x4b_c01008{left:397.786704pt;}
.x4c_c01008{left:401.268037pt;}
.x70_c01008{left:423.197333pt;}
.x16_c01008{left:429.592000pt;}
.x6_c01008{left:431.280000pt;}
.x5f_c01008{left:449.969744pt;}
.x7_c01008{left:457.920000pt;}
.x8_c01008{left:507.600000pt;}
.xd_c01008{left:527.040000pt;}
.x9_c01008{left:535.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_c01009 {
    display:none;
  }
  .loading-indicator_c01009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01009 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01009 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01009" -> "#page-container .classname_c01009")
 */
.pf_c01009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01009 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01009 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01009 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01009 {overflow:visible;}
  }
}
.c_c01009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01009 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01009:after { /* webkit #35443 */
  content: '';
}
.t_c01009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01009 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01009 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01009 { /* info for Javascript */
  display:none;
}
.l_c01009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfd_c01009{transform:matrix(0.008168,-0.000163,0.004999,0.249950,0,0);-ms-transform:matrix(0.008168,-0.000163,0.004999,0.249950,0,0);-webkit-transform:matrix(0.008168,-0.000163,0.004999,0.249950,0,0);}
.m121_c01009{transform:matrix(0.009423,-0.000188,0.004999,0.249950,0,0);-ms-transform:matrix(0.009423,-0.000188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.009423,-0.000188,0.004999,0.249950,0,0);}
.mf7_c01009{transform:matrix(0.016842,-0.000337,0.004999,0.249950,0,0);-ms-transform:matrix(0.016842,-0.000337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.016842,-0.000337,0.004999,0.249950,0,0);}
.md6_c01009{transform:matrix(0.031464,-0.000629,0.004999,0.249950,0,0);-ms-transform:matrix(0.031464,-0.000629,0.004999,0.249950,0,0);-webkit-transform:matrix(0.031464,-0.000629,0.004999,0.249950,0,0);}
.m20_c01009{transform:matrix(0.066831,0.000735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.066831,0.000735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.066831,0.000735,-0.002750,0.249985,0,0);}
.mdd_c01009{transform:matrix(0.082633,-0.001653,0.004999,0.249950,0,0);-ms-transform:matrix(0.082633,-0.001653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.082633,-0.001653,0.004999,0.249950,0,0);}
.mc6_c01009{transform:matrix(0.102977,0.001648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.102977,0.001648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.102977,0.001648,-0.003999,0.249968,0,0);}
.mf3_c01009{transform:matrix(0.104084,-0.002082,0.004999,0.249950,0,0);-ms-transform:matrix(0.104084,-0.002082,0.004999,0.249950,0,0);-webkit-transform:matrix(0.104084,-0.002082,0.004999,0.249950,0,0);}
.mf2_c01009{transform:matrix(0.106774,-0.002135,0.004999,0.249950,0,0);-ms-transform:matrix(0.106774,-0.002135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.106774,-0.002135,0.004999,0.249950,0,0);}
.mfa_c01009{transform:matrix(0.107384,-0.002148,0.004999,0.249950,0,0);-ms-transform:matrix(0.107384,-0.002148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.107384,-0.002148,0.004999,0.249950,0,0);}
.mf1_c01009{transform:matrix(0.107414,-0.002148,0.004999,0.249950,0,0);-ms-transform:matrix(0.107414,-0.002148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.107414,-0.002148,0.004999,0.249950,0,0);}
.mf0_c01009{transform:matrix(0.107673,-0.002153,0.004999,0.249950,0,0);-ms-transform:matrix(0.107673,-0.002153,0.004999,0.249950,0,0);-webkit-transform:matrix(0.107673,-0.002153,0.004999,0.249950,0,0);}
.mf4_c01009{transform:matrix(0.110978,-0.002220,0.004999,0.249950,0,0);-ms-transform:matrix(0.110978,-0.002220,0.004999,0.249950,0,0);-webkit-transform:matrix(0.110978,-0.002220,0.004999,0.249950,0,0);}
.ma4_c01009{transform:matrix(0.113494,0.001929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.113494,0.001929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.113494,0.001929,-0.004249,0.249964,0,0);}
.md4_c01009{transform:matrix(0.124514,0.001992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.124514,0.001992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.124514,0.001992,-0.003999,0.249968,0,0);}
.m10c_c01009{transform:matrix(0.125320,-0.002506,0.004999,0.249950,0,0);-ms-transform:matrix(0.125320,-0.002506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.125320,-0.002506,0.004999,0.249950,0,0);}
.mfb_c01009{transform:matrix(0.128604,-0.002572,0.004999,0.249950,0,0);-ms-transform:matrix(0.128604,-0.002572,0.004999,0.249950,0,0);-webkit-transform:matrix(0.128604,-0.002572,0.004999,0.249950,0,0);}
.m80_c01009{transform:matrix(0.132597,0.001459,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132597,0.001459,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132597,0.001459,-0.002750,0.249985,0,0);}
.m14_c01009{transform:matrix(0.134477,0.001479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.134477,0.001479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.134477,0.001479,-0.002750,0.249985,0,0);}
.m97_c01009{transform:matrix(0.134721,0.002290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.134721,0.002290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.134721,0.002290,-0.004249,0.249964,0,0);}
.mfc_c01009{transform:matrix(0.140107,-0.002802,0.004999,0.249950,0,0);-ms-transform:matrix(0.140107,-0.002802,0.004999,0.249950,0,0);-webkit-transform:matrix(0.140107,-0.002802,0.004999,0.249950,0,0);}
.m120_c01009{transform:matrix(0.141017,-0.002820,0.004999,0.249950,0,0);-ms-transform:matrix(0.141017,-0.002820,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141017,-0.002820,0.004999,0.249950,0,0);}
.m11d_c01009{transform:matrix(0.141832,-0.002837,0.004999,0.249950,0,0);-ms-transform:matrix(0.141832,-0.002837,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141832,-0.002837,0.004999,0.249950,0,0);}
.m11f_c01009{transform:matrix(0.143226,-0.002865,0.004999,0.249950,0,0);-ms-transform:matrix(0.143226,-0.002865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.143226,-0.002865,0.004999,0.249950,0,0);}
.m21_c01009{transform:matrix(0.143606,0.001580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143606,0.001580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143606,0.001580,-0.002750,0.249985,0,0);}
.m32_c01009{transform:matrix(0.144056,0.001585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144056,0.001585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144056,0.001585,-0.002750,0.249985,0,0);}
.m29_c01009{transform:matrix(0.145056,0.001596,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145056,0.001596,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145056,0.001596,-0.002750,0.249985,0,0);}
.m6c_c01009{transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);}
.m53_c01009{transform:matrix(0.146151,0.001608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146151,0.001608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146151,0.001608,-0.002750,0.249985,0,0);}
.m7b_c01009{transform:matrix(0.146296,0.001609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146296,0.001609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146296,0.001609,-0.002750,0.249985,0,0);}
.m75_c01009{transform:matrix(0.146386,0.001610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146386,0.001610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146386,0.001610,-0.002750,0.249985,0,0);}
.m26_c01009{transform:matrix(0.146456,0.001611,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146456,0.001611,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146456,0.001611,-0.002750,0.249985,0,0);}
.m6d_c01009{transform:matrix(0.147131,0.001618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147131,0.001618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147131,0.001618,-0.002750,0.249985,0,0);}
.m4a_c01009{transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148066,0.001629,-0.002750,0.249985,0,0);}
.m6e_c01009{transform:matrix(0.148191,0.001630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148191,0.001630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148191,0.001630,-0.002750,0.249985,0,0);}
.m89_c01009{transform:matrix(0.149501,0.001645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149501,0.001645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149501,0.001645,-0.002750,0.249985,0,0);}
.m123_c01009{transform:matrix(0.150345,-0.003007,0.004999,0.249950,0,0);-ms-transform:matrix(0.150345,-0.003007,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150345,-0.003007,0.004999,0.249950,0,0);}
.m8b_c01009{transform:matrix(0.151086,0.001662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151086,0.001662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151086,0.001662,-0.002750,0.249985,0,0);}
.mb_c01009{transform:matrix(0.151681,0.001668,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151681,0.001668,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151681,0.001668,-0.002750,0.249985,0,0);}
.m78_c01009{transform:matrix(0.151736,0.001669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151736,0.001669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151736,0.001669,-0.002750,0.249985,0,0);}
.m4d_c01009{transform:matrix(0.152276,0.001675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152276,0.001675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152276,0.001675,-0.002750,0.249985,0,0);}
.m44_c01009{transform:matrix(0.153056,0.001684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153056,0.001684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153056,0.001684,-0.002750,0.249985,0,0);}
.m110_c01009{transform:matrix(0.153264,-0.003065,0.004999,0.249950,0,0);-ms-transform:matrix(0.153264,-0.003065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153264,-0.003065,0.004999,0.249950,0,0);}
.ma5_c01009{transform:matrix(0.153978,0.002618,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153978,0.002618,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153978,0.002618,-0.004249,0.249964,0,0);}
.m108_c01009{transform:matrix(0.154104,-0.003082,0.004999,0.249950,0,0);-ms-transform:matrix(0.154104,-0.003082,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154104,-0.003082,0.004999,0.249950,0,0);}
.me_c01009{transform:matrix(0.155046,0.001706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155046,0.001706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155046,0.001706,-0.002750,0.249985,0,0);}
.m118_c01009{transform:matrix(0.155229,-0.003105,0.004999,0.249950,0,0);-ms-transform:matrix(0.155229,-0.003105,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155229,-0.003105,0.004999,0.249950,0,0);}
.md1_c01009{transform:matrix(0.155305,0.002485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155305,0.002485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155305,0.002485,-0.003999,0.249968,0,0);}
.m4_c01009{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);}
.m9_c01009{transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155906,0.001715,-0.002750,0.249985,0,0);}
.m42_c01009{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);}
.maa_c01009{transform:matrix(0.156342,0.002658,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156342,0.002658,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156342,0.002658,-0.004249,0.249964,0,0);}
.m73_c01009{transform:matrix(0.156661,0.001723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156661,0.001723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156661,0.001723,-0.002750,0.249985,0,0);}
.ma9_c01009{transform:matrix(0.156812,0.002666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156812,0.002666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156812,0.002666,-0.004249,0.249964,0,0);}
.m25_c01009{transform:matrix(0.157520,0.001733,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157520,0.001733,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157520,0.001733,-0.002750,0.249985,0,0);}
.m3c_c01009{transform:matrix(0.158170,0.001740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158170,0.001740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158170,0.001740,-0.002750,0.249985,0,0);}
.m55_c01009{transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158450,0.001743,-0.002750,0.249985,0,0);}
.m8d_c01009{transform:matrix(0.159087,0.002704,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159087,0.002704,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159087,0.002704,-0.004249,0.249964,0,0);}
.m61_c01009{transform:matrix(0.159275,0.001752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159275,0.001752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159275,0.001752,-0.002750,0.249985,0,0);}
.m11e_c01009{transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);-ms-transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);}
.m11a_c01009{transform:matrix(0.160643,-0.003213,0.004999,0.249950,0,0);-ms-transform:matrix(0.160643,-0.003213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160643,-0.003213,0.004999,0.249950,0,0);}
.m10_c01009{transform:matrix(0.160780,0.001769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160780,0.001769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160780,0.001769,-0.002750,0.249985,0,0);}
.m124_c01009{transform:matrix(0.161058,-0.003221,0.004999,0.249950,0,0);-ms-transform:matrix(0.161058,-0.003221,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161058,-0.003221,0.004999,0.249950,0,0);}
.mb0_c01009{transform:matrix(0.161757,0.002750,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161757,0.002750,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161757,0.002750,-0.004249,0.249964,0,0);}
.md3_c01009{transform:matrix(0.161984,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161984,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161984,0.002592,-0.003999,0.249968,0,0);}
.m9b_c01009{transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);}
.m4b_c01009{transform:matrix(0.162450,0.001787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162450,0.001787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162450,0.001787,-0.002750,0.249985,0,0);}
.m114_c01009{transform:matrix(0.162587,-0.003252,0.004999,0.249950,0,0);-ms-transform:matrix(0.162587,-0.003252,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162587,-0.003252,0.004999,0.249950,0,0);}
.m6b_c01009{transform:matrix(0.162870,0.001792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162870,0.001792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162870,0.001792,-0.002750,0.249985,0,0);}
.m71_c01009{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);}
.m63_c01009{transform:matrix(0.164385,0.001808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164385,0.001808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164385,0.001808,-0.002750,0.249985,0,0);}
.ma8_c01009{transform:matrix(0.164391,0.002795,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164391,0.002795,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164391,0.002795,-0.004249,0.249964,0,0);}
.m84_c01009{transform:matrix(0.164495,0.001809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164495,0.001809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164495,0.001809,-0.002750,0.249985,0,0);}
.m125_c01009{transform:matrix(0.165142,-0.003303,0.004999,0.249950,0,0);-ms-transform:matrix(0.165142,-0.003303,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165142,-0.003303,0.004999,0.249950,0,0);}
.ma_c01009{transform:matrix(0.165445,0.001820,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165445,0.001820,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165445,0.001820,-0.002750,0.249985,0,0);}
.m8c_c01009{transform:matrix(0.165636,0.002816,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165636,0.002816,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165636,0.002816,-0.004249,0.249964,0,0);}
.m70_c01009{transform:matrix(0.165960,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165960,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165960,0.001826,-0.002750,0.249985,0,0);}
.m95_c01009{transform:matrix(0.166081,0.002823,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166081,0.002823,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166081,0.002823,-0.004249,0.249964,0,0);}
.m43_c01009{transform:matrix(0.166340,0.001830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166340,0.001830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166340,0.001830,-0.002750,0.249985,0,0);}
.m11_c01009{transform:matrix(0.166485,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166485,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166485,0.001831,-0.002750,0.249985,0,0);}
.m3a_c01009{transform:matrix(0.166895,0.001836,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166895,0.001836,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166895,0.001836,-0.002750,0.249985,0,0);}
.m46_c01009{transform:matrix(0.167465,0.001842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167465,0.001842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167465,0.001842,-0.002750,0.249985,0,0);}
.mac_c01009{transform:matrix(0.167531,0.002848,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167531,0.002848,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167531,0.002848,-0.004249,0.249964,0,0);}
.mb7_c01009{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);}
.m128_c01009{transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);-ms-transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);}
.m74_c01009{transform:matrix(0.169060,0.001860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169060,0.001860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169060,0.001860,-0.002750,0.249985,0,0);}
.m69_c01009{transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169480,0.001864,-0.002750,0.249985,0,0);}
.m100_c01009{transform:matrix(0.169591,-0.003392,0.004999,0.249950,0,0);-ms-transform:matrix(0.169591,-0.003392,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169591,-0.003392,0.004999,0.249950,0,0);}
.m1b_c01009{transform:matrix(0.169735,0.001867,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169735,0.001867,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169735,0.001867,-0.002750,0.249985,0,0);}
.m1c_c01009{transform:matrix(0.169970,0.001870,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169970,0.001870,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169970,0.001870,-0.002750,0.249985,0,0);}
.m127_c01009{transform:matrix(0.170286,-0.003406,0.004999,0.249950,0,0);-ms-transform:matrix(0.170286,-0.003406,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170286,-0.003406,0.004999,0.249950,0,0);}
.mcf_c01009{transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);}
.m5f_c01009{transform:matrix(0.170805,0.001879,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170805,0.001879,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170805,0.001879,-0.002750,0.249985,0,0);}
.m50_c01009{transform:matrix(0.171320,0.001885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171320,0.001885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171320,0.001885,-0.002750,0.249985,0,0);}
.m8f_c01009{transform:matrix(0.171425,0.002914,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171425,0.002914,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171425,0.002914,-0.004249,0.249964,0,0);}
.m126_c01009{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);}
.mc_c01009{transform:matrix(0.171975,0.001892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171975,0.001892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171975,0.001892,-0.002750,0.249985,0,0);}
.m10f_c01009{transform:matrix(0.172076,-0.003442,0.004999,0.249950,0,0);-ms-transform:matrix(0.172076,-0.003442,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172076,-0.003442,0.004999,0.249950,0,0);}
.m9d_c01009{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);}
.m113_c01009{transform:matrix(0.172900,-0.003458,0.004999,0.249950,0,0);-ms-transform:matrix(0.172900,-0.003458,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172900,-0.003458,0.004999,0.249950,0,0);}
.m60_c01009{transform:matrix(0.172920,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172920,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172920,0.001902,-0.002750,0.249985,0,0);}
.m39_c01009{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);}
.m7c_c01009{transform:matrix(0.173180,0.001905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173180,0.001905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173180,0.001905,-0.002750,0.249985,0,0);}
.m41_c01009{transform:matrix(0.173235,0.001906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173235,0.001906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173235,0.001906,-0.002750,0.249985,0,0);}
.m3e_c01009{transform:matrix(0.173480,0.001908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173480,0.001908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173480,0.001908,-0.002750,0.249985,0,0);}
.m11c_c01009{transform:matrix(0.173620,-0.003472,0.004999,0.249950,0,0);-ms-transform:matrix(0.173620,-0.003472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173620,-0.003472,0.004999,0.249950,0,0);}
.m87_c01009{transform:matrix(0.173714,0.001911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173714,0.001911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173714,0.001911,-0.002750,0.249985,0,0);}
.ma6_c01009{transform:matrix(0.173730,0.002953,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173730,0.002953,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173730,0.002953,-0.004249,0.249964,0,0);}
.m24_c01009{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);}
.m31_c01009{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);}
.m2e_c01009{transform:matrix(0.174564,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174564,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174564,0.001920,-0.002750,0.249985,0,0);}
.m48_c01009{transform:matrix(0.174699,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174699,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174699,0.001922,-0.002750,0.249985,0,0);}
.m9c_c01009{transform:matrix(0.174815,0.002972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174815,0.002972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174815,0.002972,-0.004249,0.249964,0,0);}
.mc2_c01009{transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);}
.m1a_c01009{transform:matrix(0.174924,0.001924,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174924,0.001924,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174924,0.001924,-0.002750,0.249985,0,0);}
.m4f_c01009{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);}
.m79_c01009{transform:matrix(0.175299,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175299,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175299,0.001928,-0.002750,0.249985,0,0);}
.m117_c01009{transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);-ms-transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176025,-0.003520,0.004999,0.249950,0,0);}
.m2f_c01009{transform:matrix(0.176074,0.001937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176074,0.001937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176074,0.001937,-0.002750,0.249985,0,0);}
.ma7_c01009{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);}
.mc1_c01009{transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176377,0.002822,-0.003999,0.249968,0,0);}
.m34_c01009{transform:matrix(0.177129,0.001948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177129,0.001948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177129,0.001948,-0.002750,0.249985,0,0);}
.m6f_c01009{transform:matrix(0.177189,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177189,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177189,0.001949,-0.002750,0.249985,0,0);}
.m82_c01009{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);}
.m8e_c01009{transform:matrix(0.177554,0.003018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177554,0.003018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177554,0.003018,-0.004249,0.249964,0,0);}
.mcc_c01009{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);}
.m6a_c01009{transform:matrix(0.178319,0.001962,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178319,0.001962,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178319,0.001962,-0.002750,0.249985,0,0);}
.m72_c01009{transform:matrix(0.178419,0.001963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178419,0.001963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178419,0.001963,-0.002750,0.249985,0,0);}
.m83_c01009{transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178744,0.001966,-0.002750,0.249985,0,0);}
.m99_c01009{transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179024,0.003043,-0.004249,0.249964,0,0);}
.m1d_c01009{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);}
.mc9_c01009{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);}
.m37_c01009{transform:matrix(0.179254,0.001972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179254,0.001972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179254,0.001972,-0.002750,0.249985,0,0);}
.m52_c01009{transform:matrix(0.179489,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179489,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179489,0.001974,-0.002750,0.249985,0,0);}
.m68_c01009{transform:matrix(0.179754,0.001977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179754,0.001977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179754,0.001977,-0.002750,0.249985,0,0);}
.mb9_c01009{transform:matrix(0.179789,0.003056,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179789,0.003056,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179789,0.003056,-0.004249,0.249964,0,0);}
.m102_c01009{transform:matrix(0.180199,-0.003604,0.004999,0.249950,0,0);-ms-transform:matrix(0.180199,-0.003604,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180199,-0.003604,0.004999,0.249950,0,0);}
.mb8_c01009{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);}
.m112_c01009{transform:matrix(0.180249,-0.003605,0.004999,0.249950,0,0);-ms-transform:matrix(0.180249,-0.003605,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180249,-0.003605,0.004999,0.249950,0,0);}
.mba_c01009{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);}
.ma2_c01009{transform:matrix(0.180384,0.003067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180384,0.003067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180384,0.003067,-0.004249,0.249964,0,0);}
.m115_c01009{transform:matrix(0.180429,-0.003609,0.004999,0.249950,0,0);-ms-transform:matrix(0.180429,-0.003609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180429,-0.003609,0.004999,0.249950,0,0);}
.mae_c01009{transform:matrix(0.180754,0.003073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180754,0.003073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180754,0.003073,-0.004249,0.249964,0,0);}
.m9f_c01009{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);}
.m10e_c01009{transform:matrix(0.181399,-0.003628,0.004999,0.249950,0,0);-ms-transform:matrix(0.181399,-0.003628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181399,-0.003628,0.004999,0.249950,0,0);}
.m107_c01009{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);}
.m7e_c01009{transform:matrix(0.181639,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181639,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181639,0.001998,-0.002750,0.249985,0,0);}
.m116_c01009{transform:matrix(0.181789,-0.003636,0.004999,0.249950,0,0);-ms-transform:matrix(0.181789,-0.003636,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181789,-0.003636,0.004999,0.249950,0,0);}
.m7f_c01009{transform:matrix(0.181934,0.002001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181934,0.002001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181934,0.002001,-0.002750,0.249985,0,0);}
.mc4_c01009{transform:matrix(0.181992,0.002912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181992,0.002912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181992,0.002912,-0.003999,0.249968,0,0);}
.m5d_c01009{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);}
.m85_c01009{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);}
.mb2_c01009{transform:matrix(0.183189,0.003114,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183189,0.003114,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183189,0.003114,-0.004249,0.249964,0,0);}
.mc8_c01009{transform:matrix(0.183292,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183292,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183292,0.002933,-0.003999,0.249968,0,0);}
.m57_c01009{transform:matrix(0.183614,0.002020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183614,0.002020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183614,0.002020,-0.002750,0.249985,0,0);}
.m88_c01009{transform:matrix(0.183769,0.002021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183769,0.002021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183769,0.002021,-0.002750,0.249985,0,0);}
.m66_c01009{transform:matrix(0.184134,0.002025,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184134,0.002025,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184134,0.002025,-0.002750,0.249985,0,0);}
.m51_c01009{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);}
.m15_c01009{transform:matrix(0.184664,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184664,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184664,0.002031,-0.002750,0.249985,0,0);}
.m47_c01009{transform:matrix(0.184679,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184679,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184679,0.002031,-0.002750,0.249985,0,0);}
.m96_c01009{transform:matrix(0.184698,0.003140,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184698,0.003140,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184698,0.003140,-0.004249,0.249964,0,0);}
.m8a_c01009{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);}
.m12_c01009{transform:matrix(0.184889,0.002034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184889,0.002034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184889,0.002034,-0.002750,0.249985,0,0);}
.mb3_c01009{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);}
.m101_c01009{transform:matrix(0.186583,-0.003732,0.004999,0.249950,0,0);-ms-transform:matrix(0.186583,-0.003732,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186583,-0.003732,0.004999,0.249950,0,0);}
.mff_c01009{transform:matrix(0.186978,-0.003740,0.004999,0.249950,0,0);-ms-transform:matrix(0.186978,-0.003740,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186978,-0.003740,0.004999,0.249950,0,0);}
.m49_c01009{transform:matrix(0.187119,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187119,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187119,0.002058,-0.002750,0.249985,0,0);}
.m3f_c01009{transform:matrix(0.187329,0.002061,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187329,0.002061,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187329,0.002061,-0.002750,0.249985,0,0);}
.m35_c01009{transform:matrix(0.187719,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187719,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187719,0.002065,-0.002750,0.249985,0,0);}
.me0_c01009{transform:matrix(0.187987,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.187987,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187987,-0.003760,0.004999,0.249950,0,0);}
.m2d_c01009{transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);}
.m67_c01009{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);}
.m93_c01009{transform:matrix(0.188503,0.003205,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188503,0.003205,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188503,0.003205,-0.004249,0.249964,0,0);}
.m65_c01009{transform:matrix(0.188549,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188549,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188549,0.002074,-0.002750,0.249985,0,0);}
.mad_c01009{transform:matrix(0.188688,0.003208,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188688,0.003208,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188688,0.003208,-0.004249,0.249964,0,0);}
.ma3_c01009{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);}
.m36_c01009{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);}
.m103_c01009{transform:matrix(0.189487,-0.003790,0.004999,0.249950,0,0);-ms-transform:matrix(0.189487,-0.003790,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189487,-0.003790,0.004999,0.249950,0,0);}
.ma0_c01009{transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);}
.md0_c01009{transform:matrix(0.189601,0.003034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189601,0.003034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189601,0.003034,-0.003999,0.249968,0,0);}
.m4e_c01009{transform:matrix(0.189654,0.002086,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189654,0.002086,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189654,0.002086,-0.002750,0.249985,0,0);}
.m54_c01009{transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189989,0.002090,-0.002750,0.249985,0,0);}
.m81_c01009{transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);}
.mbd_c01009{transform:matrix(0.190251,0.003044,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190251,0.003044,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190251,0.003044,-0.003999,0.249968,0,0);}
.m58_c01009{transform:matrix(0.191148,0.002103,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191148,0.002103,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191148,0.002103,-0.002750,0.249985,0,0);}
.m23_c01009{transform:matrix(0.191633,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191633,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191633,0.002108,-0.002750,0.249985,0,0);}
.m104_c01009{transform:matrix(0.191712,-0.003834,0.004999,0.249950,0,0);-ms-transform:matrix(0.191712,-0.003834,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191712,-0.003834,0.004999,0.249950,0,0);}
.m56_c01009{transform:matrix(0.191938,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191938,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191938,0.002111,-0.002750,0.249985,0,0);}
.m5b_c01009{transform:matrix(0.192103,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192103,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192103,0.002113,-0.002750,0.249985,0,0);}
.m40_c01009{transform:matrix(0.192403,0.002116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192403,0.002116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192403,0.002116,-0.002750,0.249985,0,0);}
.m119_c01009{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);}
.mce_c01009{transform:matrix(0.193705,0.003099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193705,0.003099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193705,0.003099,-0.003999,0.249968,0,0);}
.m7d_c01009{transform:matrix(0.194758,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194758,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194758,0.002142,-0.002750,0.249985,0,0);}
.m105_c01009{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);}
.m2c_c01009{transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);}
.m76_c01009{transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196598,0.002163,-0.002750,0.249985,0,0);}
.m7a_c01009{transform:matrix(0.196743,0.002164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196743,0.002164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196743,0.002164,-0.002750,0.249985,0,0);}
.m3d_c01009{transform:matrix(0.196763,0.002164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196763,0.002164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196763,0.002164,-0.002750,0.249985,0,0);}
.mc0_c01009{transform:matrix(0.197570,0.003161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197570,0.003161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197570,0.003161,-0.003999,0.249968,0,0);}
.mc7_c01009{transform:matrix(0.197915,0.003167,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197915,0.003167,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197915,0.003167,-0.003999,0.249968,0,0);}
.m45_c01009{transform:matrix(0.198968,0.002189,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198968,0.002189,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198968,0.002189,-0.002750,0.249985,0,0);}
.m94_c01009{transform:matrix(0.199286,0.003388,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199286,0.003388,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199286,0.003388,-0.004249,0.249964,0,0);}
.md_c01009{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);}
.m86_c01009{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);}
.mf9_c01009{transform:matrix(0.200845,-0.004017,0.004999,0.249950,0,0);-ms-transform:matrix(0.200845,-0.004017,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200845,-0.004017,0.004999,0.249950,0,0);}
.m98_c01009{transform:matrix(0.203676,0.003462,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203676,0.003462,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203676,0.003462,-0.004249,0.249964,0,0);}
.m1e_c01009{transform:matrix(0.203883,0.002243,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203883,0.002243,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203883,0.002243,-0.002750,0.249985,0,0);}
.m28_c01009{transform:matrix(0.204973,0.002255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204973,0.002255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204973,0.002255,-0.002750,0.249985,0,0);}
.m3b_c01009{transform:matrix(0.205273,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205273,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205273,0.002258,-0.002750,0.249985,0,0);}
.m22_c01009{transform:matrix(0.205893,0.002265,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205893,0.002265,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205893,0.002265,-0.002750,0.249985,0,0);}
.mfe_c01009{transform:matrix(0.206029,-0.004121,0.004999,0.249950,0,0);-ms-transform:matrix(0.206029,-0.004121,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206029,-0.004121,0.004999,0.249950,0,0);}
.mbb_c01009{transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);}
.mde_c01009{transform:matrix(0.206274,-0.004125,0.004999,0.249950,0,0);-ms-transform:matrix(0.206274,-0.004125,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206274,-0.004125,0.004999,0.249950,0,0);}
.m30_c01009{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);}
.me5_c01009{transform:matrix(0.207334,-0.004147,0.004999,0.249950,0,0);-ms-transform:matrix(0.207334,-0.004147,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207334,-0.004147,0.004999,0.249950,0,0);}
.mf_c01009{transform:matrix(0.207492,0.002282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207492,0.002282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207492,0.002282,-0.002750,0.249985,0,0);}
.ma1_c01009{transform:matrix(0.209735,0.003565,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209735,0.003565,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209735,0.003565,-0.004249,0.249964,0,0);}
.m9a_c01009{transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);}
.m8_c01009{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);}
.me7_c01009{transform:matrix(0.214052,-0.004281,0.004999,0.249950,0,0);-ms-transform:matrix(0.214052,-0.004281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214052,-0.004281,0.004999,0.249950,0,0);}
.md2_c01009{transform:matrix(0.214483,0.003432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214483,0.003432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214483,0.003432,-0.003999,0.249968,0,0);}
.mb6_c01009{transform:matrix(0.214564,0.003648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214564,0.003648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214564,0.003648,-0.004249,0.249964,0,0);}
.m122_c01009{transform:matrix(0.214572,-0.004291,0.004999,0.249950,0,0);-ms-transform:matrix(0.214572,-0.004291,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214572,-0.004291,0.004999,0.249950,0,0);}
.m92_c01009{transform:matrix(0.215009,0.003655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215009,0.003655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215009,0.003655,-0.004249,0.249964,0,0);}
.mbe_c01009{transform:matrix(0.215027,0.003440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215027,0.003440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215027,0.003440,-0.003999,0.249968,0,0);}
.mb1_c01009{transform:matrix(0.215699,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215699,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215699,0.003667,-0.004249,0.249964,0,0);}
.mbc_c01009{transform:matrix(0.216877,0.003470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216877,0.003470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216877,0.003470,-0.003999,0.249968,0,0);}
.m5c_c01009{transform:matrix(0.217727,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217727,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217727,0.002395,-0.002750,0.249985,0,0);}
.m91_c01009{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);}
.mbf_c01009{transform:matrix(0.219567,0.003513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219567,0.003513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219567,0.003513,-0.003999,0.249968,0,0);}
.m5a_c01009{transform:matrix(0.219957,0.002420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219957,0.002420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219957,0.002420,-0.002750,0.249985,0,0);}
.mea_c01009{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);}
.me1_c01009{transform:matrix(0.220421,-0.004408,0.004999,0.249950,0,0);-ms-transform:matrix(0.220421,-0.004408,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220421,-0.004408,0.004999,0.249950,0,0);}
.mca_c01009{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);}
.m5_c01009{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);}
.md5_c01009{transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226381,0.003622,-0.003999,0.249968,0,0);}
.m64_c01009{transform:matrix(0.228621,0.002515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228621,0.002515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228621,0.002515,-0.002750,0.249985,0,0);}
.md8_c01009{transform:matrix(0.228664,-0.004573,0.004999,0.249950,0,0);-ms-transform:matrix(0.228664,-0.004573,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228664,-0.004573,0.004999,0.249950,0,0);}
.m2a_c01009{transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);}
.m10b_c01009{transform:matrix(0.230469,-0.004609,0.004999,0.249950,0,0);-ms-transform:matrix(0.230469,-0.004609,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230469,-0.004609,0.004999,0.249950,0,0);}
.mab_c01009{transform:matrix(0.231362,0.003933,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231362,0.003933,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231362,0.003933,-0.004249,0.249964,0,0);}
.m2b_c01009{transform:matrix(0.234401,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234401,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234401,0.002578,-0.002750,0.249985,0,0);}
.md7_c01009{transform:matrix(0.234408,-0.004688,0.004999,0.249950,0,0);-ms-transform:matrix(0.234408,-0.004688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234408,-0.004688,0.004999,0.249950,0,0);}
.m38_c01009{transform:matrix(0.234531,0.002580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234531,0.002580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234531,0.002580,-0.002750,0.249985,0,0);}
.mda_c01009{transform:matrix(0.235233,-0.004705,0.004999,0.249950,0,0);-ms-transform:matrix(0.235233,-0.004705,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235233,-0.004705,0.004999,0.249950,0,0);}
.mf6_c01009{transform:matrix(0.235558,-0.004711,0.004999,0.249950,0,0);-ms-transform:matrix(0.235558,-0.004711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235558,-0.004711,0.004999,0.249950,0,0);}
.m1f_c01009{transform:matrix(0.236806,0.002605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236806,0.002605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236806,0.002605,-0.002750,0.249985,0,0);}
.m5e_c01009{transform:matrix(0.236976,0.002607,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236976,0.002607,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236976,0.002607,-0.002750,0.249985,0,0);}
.m62_c01009{transform:matrix(0.238776,0.002627,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238776,0.002627,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238776,0.002627,-0.002750,0.249985,0,0);}
.me4_c01009{transform:matrix(0.238797,-0.004776,0.004999,0.249950,0,0);-ms-transform:matrix(0.238797,-0.004776,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238797,-0.004776,0.004999,0.249950,0,0);}
.m3_c01009{transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238940,0.000000,0.000000,0.250000,0,0);}
.m16_c01009{transform:matrix(0.239351,0.002633,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239351,0.002633,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239351,0.002633,-0.002750,0.249985,0,0);}
.m4c_c01009{transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);}
.m0_c01009{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);}
.m90_c01009{transform:matrix(0.244655,0.004159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244655,0.004159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244655,0.004159,-0.004249,0.249964,0,0);}
.mb4_c01009{transform:matrix(0.245025,0.004165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245025,0.004165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245025,0.004165,-0.004249,0.249964,0,0);}
.m11b_c01009{transform:matrix(0.246491,-0.004930,0.004999,0.249950,0,0);-ms-transform:matrix(0.246491,-0.004930,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246491,-0.004930,0.004999,0.249950,0,0);}
.m9e_c01009{transform:matrix(0.247889,0.004214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247889,0.004214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247889,0.004214,-0.004249,0.249964,0,0);}
.mcb_c01009{transform:matrix(0.248258,0.003972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248258,0.003972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248258,0.003972,-0.003999,0.249968,0,0);}
.mc5_c01009{transform:matrix(0.248453,0.003975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248453,0.003975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248453,0.003975,-0.003999,0.249968,0,0);}
.md9_c01009{transform:matrix(0.249610,-0.004992,0.004999,0.249950,0,0);-ms-transform:matrix(0.249610,-0.004992,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249610,-0.004992,0.004999,0.249950,0,0);}
.me2_c01009{transform:matrix(0.251950,-0.005039,0.004999,0.249950,0,0);-ms-transform:matrix(0.251950,-0.005039,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251950,-0.005039,0.004999,0.249950,0,0);}
.mdb_c01009{transform:matrix(0.252899,-0.005058,0.004999,0.249950,0,0);-ms-transform:matrix(0.252899,-0.005058,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252899,-0.005058,0.004999,0.249950,0,0);}
.mf5_c01009{transform:matrix(0.254869,-0.005097,0.004999,0.249950,0,0);-ms-transform:matrix(0.254869,-0.005097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254869,-0.005097,0.004999,0.249950,0,0);}
.m10a_c01009{transform:matrix(0.256214,-0.005124,0.004999,0.249950,0,0);-ms-transform:matrix(0.256214,-0.005124,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256214,-0.005124,0.004999,0.249950,0,0);}
.m59_c01009{transform:matrix(0.256919,0.002826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256919,0.002826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256919,0.002826,-0.002750,0.249985,0,0);}
.mdf_c01009{transform:matrix(0.258678,-0.005174,0.004999,0.249950,0,0);-ms-transform:matrix(0.258678,-0.005174,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258678,-0.005174,0.004999,0.249950,0,0);}
.m19_c01009{transform:matrix(0.261294,0.002874,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261294,0.002874,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261294,0.002874,-0.002750,0.249985,0,0);}
.mdc_c01009{transform:matrix(0.262098,-0.005242,0.004999,0.249950,0,0);-ms-transform:matrix(0.262098,-0.005242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262098,-0.005242,0.004999,0.249950,0,0);}
.mcd_c01009{transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);}
.m2_c01009{transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);}
.m18_c01009{transform:matrix(0.271204,0.002983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271204,0.002983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271204,0.002983,-0.002750,0.249985,0,0);}
.m13_c01009{transform:matrix(0.272868,0.003002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272868,0.003002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272868,0.003002,-0.002750,0.249985,0,0);}
.maf_c01009{transform:matrix(0.273301,0.004646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273301,0.004646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273301,0.004646,-0.004249,0.249964,0,0);}
.meb_c01009{transform:matrix(0.278209,-0.005564,0.004999,0.249950,0,0);-ms-transform:matrix(0.278209,-0.005564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.278209,-0.005564,0.004999,0.249950,0,0);}
.me3_c01009{transform:matrix(0.281709,-0.005634,0.004999,0.249950,0,0);-ms-transform:matrix(0.281709,-0.005634,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281709,-0.005634,0.004999,0.249950,0,0);}
.me8_c01009{transform:matrix(0.281979,-0.005640,0.004999,0.249950,0,0);-ms-transform:matrix(0.281979,-0.005640,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281979,-0.005640,0.004999,0.249950,0,0);}
.me9_c01009{transform:matrix(0.293266,-0.005865,0.004999,0.249950,0,0);-ms-transform:matrix(0.293266,-0.005865,0.004999,0.249950,0,0);-webkit-transform:matrix(0.293266,-0.005865,0.004999,0.249950,0,0);}
.mb5_c01009{transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);-ms-transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);}
.m1_c01009{transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301610,0.000000,0.000000,0.250000,0,0);}
.m33_c01009{transform:matrix(0.302692,0.003330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302692,0.003330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302692,0.003330,-0.002750,0.249985,0,0);}
.mec_c01009{transform:matrix(0.303159,-0.006063,0.004999,0.249950,0,0);-ms-transform:matrix(0.303159,-0.006063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.303159,-0.006063,0.004999,0.249950,0,0);}
.m77_c01009{transform:matrix(0.310316,0.003413,-0.002750,0.249985,0,0);-ms-transform:matrix(0.310316,0.003413,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.310316,0.003413,-0.002750,0.249985,0,0);}
.m27_c01009{transform:matrix(0.311666,0.003428,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311666,0.003428,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311666,0.003428,-0.002750,0.249985,0,0);}
.med_c01009{transform:matrix(0.333883,-0.006678,0.004999,0.249950,0,0);-ms-transform:matrix(0.333883,-0.006678,0.004999,0.249950,0,0);-webkit-transform:matrix(0.333883,-0.006678,0.004999,0.249950,0,0);}
.m111_c01009{transform:matrix(0.339727,-0.006795,0.004999,0.249950,0,0);-ms-transform:matrix(0.339727,-0.006795,0.004999,0.249950,0,0);-webkit-transform:matrix(0.339727,-0.006795,0.004999,0.249950,0,0);}
.m6_c01009{transform:matrix(0.356905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356905,0.000000,0.000000,0.250000,0,0);}
.mf8_c01009{transform:matrix(0.357993,-0.007160,0.004999,0.249950,0,0);-ms-transform:matrix(0.357993,-0.007160,0.004999,0.249950,0,0);-webkit-transform:matrix(0.357993,-0.007160,0.004999,0.249950,0,0);}
.m17_c01009{transform:matrix(0.363038,0.003993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.363038,0.003993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.363038,0.003993,-0.002750,0.249985,0,0);}
.mc3_c01009{transform:matrix(0.365518,0.005848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.365518,0.005848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.365518,0.005848,-0.003999,0.249968,0,0);}
.m109_c01009{transform:matrix(0.370591,-0.007412,0.004999,0.249950,0,0);-ms-transform:matrix(0.370591,-0.007412,0.004999,0.249950,0,0);-webkit-transform:matrix(0.370591,-0.007412,0.004999,0.249950,0,0);}
.m106_c01009{transform:matrix(0.381494,-0.007630,0.004999,0.249950,0,0);-ms-transform:matrix(0.381494,-0.007630,0.004999,0.249950,0,0);-webkit-transform:matrix(0.381494,-0.007630,0.004999,0.249950,0,0);}
.me6_c01009{transform:matrix(0.395126,-0.007903,0.004999,0.249950,0,0);-ms-transform:matrix(0.395126,-0.007903,0.004999,0.249950,0,0);-webkit-transform:matrix(0.395126,-0.007903,0.004999,0.249950,0,0);}
.mee_c01009{transform:matrix(0.439412,-0.008788,0.004999,0.249950,0,0);-ms-transform:matrix(0.439412,-0.008788,0.004999,0.249950,0,0);-webkit-transform:matrix(0.439412,-0.008788,0.004999,0.249950,0,0);}
.m7_c01009{transform:matrix(0.460332,0.005064,-0.002750,0.249985,0,0);-ms-transform:matrix(0.460332,0.005064,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.460332,0.005064,-0.002750,0.249985,0,0);}
.mef_c01009{transform:matrix(0.613252,-0.012265,0.004999,0.249950,0,0);-ms-transform:matrix(0.613252,-0.012265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.613252,-0.012265,0.004999,0.249950,0,0);}
.m10d_c01009{transform:matrix(1.547730,-0.030955,0.004999,0.249950,0,0);-ms-transform:matrix(1.547730,-0.030955,0.004999,0.249950,0,0);-webkit-transform:matrix(1.547730,-0.030955,0.004999,0.249950,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls0_c01009{letter-spacing:0.000000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:0.000000px;}
.fc0_c01009{color:transparent;}
.fs11_c01009{font-size:46.209239px;}
.fs10_c01009{font-size:53.556854px;}
.fsf_c01009{font-size:54.606988px;}
.fs13_c01009{font-size:54.610919px;}
.fs14_c01009{font-size:58.811759px;}
.fs15_c01009{font-size:64.062809px;}
.fsb_c01009{font-size:67.209710px;}
.fse_c01009{font-size:69.300000px;}
.fs8_c01009{font-size:69.304193px;}
.fs5_c01009{font-size:70.354256px;}
.fs2_c01009{font-size:71.404320px;}
.fsc_c01009{font-size:71.410317px;}
.fs6_c01009{font-size:72.454383px;}
.fs7_c01009{font-size:73.504447px;}
.fs3_c01009{font-size:74.554510px;}
.fsd_c01009{font-size:74.560772px;}
.fs4_c01009{font-size:76.654637px;}
.fsa_c01009{font-size:87.155272px;}
.fs9_c01009{font-size:91.355527px;}
.fs12_c01009{font-size:93.468688px;}
.fs1_c01009{font-size:178.500000px;}
.fs0_c01009{font-size:179.550000px;}
.y0_c01009{bottom:0.000000px;}
.y112_c01009{bottom:164.144310px;}
.y113_c01009{bottom:164.508720px;}
.y114_c01009{bottom:164.815200px;}
.y115_c01009{bottom:165.194220px;}
.y116_c01009{bottom:165.531660px;}
.y117_c01009{bottom:165.696180px;}
.y118_c01009{bottom:165.989610px;}
.y119_c01009{bottom:166.245870px;}
.y11a_c01009{bottom:166.384920px;}
.y11b_c01009{bottom:166.508790px;}
.y11c_c01009{bottom:166.698960px;}
.y11d_c01009{bottom:167.087670px;}
.y11e_c01009{bottom:167.748540px;}
.y11f_c01009{bottom:168.067560px;}
.y120_c01009{bottom:168.181920px;}
.y111_c01009{bottom:182.412900px;}
.y110_c01009{bottom:182.413260px;}
.y10f_c01009{bottom:182.413680px;}
.y10e_c01009{bottom:182.414340px;}
.y10d_c01009{bottom:182.414520px;}
.y10b_c01009{bottom:182.414610px;}
.y10a_c01009{bottom:182.414970px;}
.y107_c01009{bottom:182.415060px;}
.y109_c01009{bottom:182.415120px;}
.y10c_c01009{bottom:182.415210px;}
.y106_c01009{bottom:182.415330px;}
.y108_c01009{bottom:182.415480px;}
.yf8_c01009{bottom:211.558170px;}
.yfa_c01009{bottom:211.558200px;}
.yf9_c01009{bottom:211.558560px;}
.yfb_c01009{bottom:211.558680px;}
.y100_c01009{bottom:211.559010px;}
.yfc_c01009{bottom:211.559160px;}
.y102_c01009{bottom:211.559280px;}
.yfe_c01009{bottom:211.559340px;}
.yff_c01009{bottom:211.559430px;}
.y101_c01009{bottom:211.559550px;}
.yfd_c01009{bottom:211.559700px;}
.y104_c01009{bottom:211.559790px;}
.y105_c01009{bottom:211.560120px;}
.y103_c01009{bottom:211.560270px;}
.yee_c01009{bottom:218.615100px;}
.yed_c01009{bottom:218.615340px;}
.yef_c01009{bottom:218.615520px;}
.yec_c01009{bottom:218.615790px;}
.yf1_c01009{bottom:218.615850px;}
.yf0_c01009{bottom:218.616060px;}
.yf2_c01009{bottom:218.616300px;}
.yf3_c01009{bottom:218.616330px;}
.yf4_c01009{bottom:218.616870px;}
.yf5_c01009{bottom:218.616900px;}
.yf7_c01009{bottom:218.617350px;}
.yf6_c01009{bottom:218.617560px;}
.yeb_c01009{bottom:248.473440px;}
.ye9_c01009{bottom:248.473470px;}
.ye8_c01009{bottom:248.473560px;}
.ye7_c01009{bottom:248.473890px;}
.ye4_c01009{bottom:248.473950px;}
.ye6_c01009{bottom:248.474040px;}
.ye5_c01009{bottom:248.474100px;}
.yea_c01009{bottom:248.474190px;}
.yde_c01009{bottom:248.474430px;}
.ye3_c01009{bottom:248.474520px;}
.ye2_c01009{bottom:248.474640px;}
.ydf_c01009{bottom:248.475150px;}
.ye1_c01009{bottom:248.475300px;}
.ye0_c01009{bottom:248.475420px;}
.yd6_c01009{bottom:254.881500px;}
.yd7_c01009{bottom:257.947560px;}
.yd8_c01009{bottom:258.623190px;}
.yd9_c01009{bottom:259.517370px;}
.yd5_c01009{bottom:259.792152px;}
.yda_c01009{bottom:259.992360px;}
.yd4_c01009{bottom:260.017152px;}
.ydb_c01009{bottom:260.586360px;}
.yd3_c01009{bottom:261.178728px;}
.ydc_c01009{bottom:261.411840px;}
.yd2_c01009{bottom:261.489948px;}
.yd1_c01009{bottom:261.975852px;}
.ydd_c01009{bottom:262.647750px;}
.yd0_c01009{bottom:262.656024px;}
.ycf_c01009{bottom:263.816568px;}
.yce_c01009{bottom:264.873420px;}
.ycd_c01009{bottom:274.287648px;}
.ycc_c01009{bottom:274.657944px;}
.ycb_c01009{bottom:274.873920px;}
.yca_c01009{bottom:275.695368px;}
.yc9_c01009{bottom:276.175320px;}
.yc8_c01009{bottom:276.476640px;}
.yc7_c01009{bottom:276.899400px;}
.yc6_c01009{bottom:277.085064px;}
.yc5_c01009{bottom:277.479168px;}
.yc4_c01009{bottom:278.097960px;}
.yc3_c01009{bottom:278.370360px;}
.yc2_c01009{bottom:278.749632px;}
.yc1_c01009{bottom:279.129528px;}
.yc0_c01009{bottom:279.902712px;}
.ybf_c01009{bottom:280.088040px;}
.ybe_c01009{bottom:280.451904px;}
.ybd_c01009{bottom:280.953576px;}
.ybc_c01009{bottom:281.731344px;}
.ybb_c01009{bottom:281.883000px;}
.yba_c01009{bottom:331.570500px;}
.yb9_c01009{bottom:354.283662px;}
.yb8_c01009{bottom:355.491138px;}
.yb7_c01009{bottom:355.968651px;}
.yb6_c01009{bottom:356.919112px;}
.yb5_c01009{bottom:357.267825px;}
.yb4_c01009{bottom:358.360475px;}
.yb3_c01009{bottom:358.974285px;}
.yb2_c01009{bottom:360.123341px;}
.yb1_c01009{bottom:361.338263px;}
.yb0_c01009{bottom:361.793081px;}
.yaf_c01009{bottom:376.402728px;}
.yae_c01009{bottom:377.242957px;}
.yad_c01009{bottom:378.324717px;}
.yac_c01009{bottom:379.167216px;}
.yab_c01009{bottom:379.426371px;}
.yaa_c01009{bottom:380.380786px;}
.ya9_c01009{bottom:380.825286px;}
.ya8_c01009{bottom:381.797909px;}
.ya7_c01009{bottom:383.224287px;}
.ya6_c01009{bottom:384.183369px;}
.ya5_c01009{bottom:384.477438px;}
.ya4_c01009{bottom:399.371480px;}
.ya3_c01009{bottom:400.297458px;}
.ya2_c01009{bottom:401.097286px;}
.ya1_c01009{bottom:401.365341px;}
.ya0_c01009{bottom:402.393567px;}
.y9f_c01009{bottom:403.020321px;}
.y9e_c01009{bottom:403.703592px;}
.y9d_c01009{bottom:404.040714px;}
.y9c_c01009{bottom:404.705625px;}
.y9b_c01009{bottom:405.042441px;}
.y9a_c01009{bottom:405.439400px;}
.y99_c01009{bottom:406.294322px;}
.y98_c01009{bottom:406.717014px;}
.y97_c01009{bottom:407.429492px;}
.y96_c01009{bottom:423.249930px;}
.y95_c01009{bottom:423.897503px;}
.y94_c01009{bottom:424.352014px;}
.y93_c01009{bottom:425.554799px;}
.y92_c01009{bottom:426.105981px;}
.y91_c01009{bottom:427.479054px;}
.y90_c01009{bottom:427.868210px;}
.y8f_c01009{bottom:428.575197px;}
.y8e_c01009{bottom:429.222438px;}
.y8d_c01009{bottom:429.722978px;}
.y8c_c01009{bottom:430.113000px;}
.y8b_c01009{bottom:446.387148px;}
.y8a_c01009{bottom:446.767074px;}
.y89_c01009{bottom:447.376327px;}
.y88_c01009{bottom:447.910480px;}
.y87_c01009{bottom:448.240525px;}
.y86_c01009{bottom:449.048031px;}
.y85_c01009{bottom:449.411577px;}
.y84_c01009{bottom:450.296443px;}
.y83_c01009{bottom:450.775305px;}
.y82_c01009{bottom:451.160460px;}
.y81_c01009{bottom:453.052468px;}
.y80_c01009{bottom:468.268524px;}
.y7f_c01009{bottom:468.636820px;}
.y7e_c01009{bottom:470.387665px;}
.y7d_c01009{bottom:470.765463px;}
.y7c_c01009{bottom:471.217554px;}
.y7b_c01009{bottom:472.229166px;}
.y7a_c01009{bottom:472.683945px;}
.y79_c01009{bottom:473.136415px;}
.y78_c01009{bottom:473.727756px;}
.y77_c01009{bottom:473.973859px;}
.y76_c01009{bottom:474.953769px;}
.y75_c01009{bottom:475.735377px;}
.y74_c01009{bottom:487.216798px;}
.y73_c01009{bottom:487.870908px;}
.y72_c01009{bottom:488.135155px;}
.y71_c01009{bottom:488.990664px;}
.y70_c01009{bottom:489.420835px;}
.y6f_c01009{bottom:489.967909px;}
.y6e_c01009{bottom:490.773324px;}
.y6d_c01009{bottom:491.604379px;}
.y6c_c01009{bottom:491.925123px;}
.y6b_c01009{bottom:492.385704px;}
.y6a_c01009{bottom:515.084109px;}
.y69_c01009{bottom:515.480716px;}
.y68_c01009{bottom:516.418986px;}
.y67_c01009{bottom:516.797118px;}
.y66_c01009{bottom:517.597824px;}
.y65_c01009{bottom:518.346318px;}
.y64_c01009{bottom:518.761518px;}
.y63_c01009{bottom:519.355341px;}
.y62_c01009{bottom:520.399270px;}
.y61_c01009{bottom:520.825852px;}
.y60_c01009{bottom:537.345721px;}
.y5f_c01009{bottom:537.640315px;}
.y5e_c01009{bottom:538.019074px;}
.y5d_c01009{bottom:538.894954px;}
.y5c_c01009{bottom:539.440261px;}
.y5b_c01009{bottom:540.524772px;}
.y5a_c01009{bottom:542.034264px;}
.y59_c01009{bottom:542.313648px;}
.y58_c01009{bottom:543.081079px;}
.y57_c01009{bottom:543.508651px;}
.y56_c01009{bottom:561.742914px;}
.y55_c01009{bottom:562.029508px;}
.y54_c01009{bottom:562.464711px;}
.y53_c01009{bottom:562.794907px;}
.y52_c01009{bottom:563.084157px;}
.y51_c01009{bottom:563.705880px;}
.y50_c01009{bottom:564.175909px;}
.y4f_c01009{bottom:564.741112px;}
.y4e_c01009{bottom:565.654477px;}
.y4d_c01009{bottom:565.847778px;}
.y4c_c01009{bottom:566.162946px;}
.y4b_c01009{bottom:566.731317px;}
.y4a_c01009{bottom:582.824175px;}
.y49_c01009{bottom:584.002765px;}
.y48_c01009{bottom:584.672488px;}
.y47_c01009{bottom:585.681693px;}
.y46_c01009{bottom:586.164610px;}
.y45_c01009{bottom:586.769421px;}
.y44_c01009{bottom:587.385646px;}
.y43_c01009{bottom:588.085162px;}
.y42_c01009{bottom:588.367929px;}
.y41_c01009{bottom:589.411182px;}
.y40_c01009{bottom:606.214309px;}
.y3f_c01009{bottom:606.739477px;}
.y3e_c01009{bottom:607.173111px;}
.y3d_c01009{bottom:607.494009px;}
.y3c_c01009{bottom:608.106982px;}
.y3b_c01009{bottom:609.056692px;}
.y3a_c01009{bottom:609.361422px;}
.y39_c01009{bottom:610.070451px;}
.y38_c01009{bottom:610.345269px;}
.y37_c01009{bottom:610.944351px;}
.y36_c01009{bottom:611.550658px;}
.y35_c01009{bottom:629.011506px;}
.y34_c01009{bottom:629.434914px;}
.y33_c01009{bottom:630.021399px;}
.y32_c01009{bottom:630.341383px;}
.y31_c01009{bottom:630.573354px;}
.y30_c01009{bottom:630.924403px;}
.y2f_c01009{bottom:631.727665px;}
.y2e_c01009{bottom:632.173789px;}
.y2d_c01009{bottom:633.097416px;}
.y2c_c01009{bottom:633.679776px;}
.y2b_c01009{bottom:634.772568px;}
.y2a_c01009{bottom:651.436993px;}
.y29_c01009{bottom:651.911377px;}
.y28_c01009{bottom:652.319722px;}
.y27_c01009{bottom:652.771671px;}
.y26_c01009{bottom:653.062653px;}
.y25_c01009{bottom:653.384782px;}
.y24_c01009{bottom:653.679939px;}
.y23_c01009{bottom:654.258439px;}
.y22_c01009{bottom:654.610033px;}
.y21_c01009{bottom:655.164711px;}
.y20_c01009{bottom:655.597803px;}
.y1f_c01009{bottom:655.834443px;}
.y1e_c01009{bottom:656.680498px;}
.y1d_c01009{bottom:657.452184px;}
.y1c_c01009{bottom:674.699437px;}
.y1b_c01009{bottom:675.143332px;}
.y1a_c01009{bottom:675.759226px;}
.y19_c01009{bottom:676.163130px;}
.y18_c01009{bottom:676.416945px;}
.y17_c01009{bottom:676.820320px;}
.y16_c01009{bottom:677.572377px;}
.y15_c01009{bottom:677.863693px;}
.y14_c01009{bottom:678.388614px;}
.y13_c01009{bottom:679.011601px;}
.y12_c01009{bottom:679.538931px;}
.y11_c01009{bottom:698.159236px;}
.y10_c01009{bottom:698.415201px;}
.yf_c01009{bottom:699.187483px;}
.ye_c01009{bottom:699.496380px;}
.yd_c01009{bottom:699.843886px;}
.yc_c01009{bottom:700.583499px;}
.yb_c01009{bottom:701.379376px;}
.ya_c01009{bottom:701.791959px;}
.y9_c01009{bottom:701.963988px;}
.y8_c01009{bottom:702.546570px;}
.y7_c01009{bottom:703.081500px;}
.y6_c01009{bottom:747.693000px;}
.y5_c01009{bottom:748.747500px;}
.y4_c01009{bottom:749.134500px;}
.y3_c01009{bottom:749.923500px;}
.y2_c01009{bottom:751.143000px;}
.y1_c01009{bottom:806.481000px;}
.h13_c01009{height:46.209239px;}
.h12_c01009{height:53.556854px;}
.h11_c01009{height:54.606988px;}
.h15_c01009{height:54.610919px;}
.h16_c01009{height:58.811759px;}
.h17_c01009{height:64.062809px;}
.hd_c01009{height:67.209710px;}
.h10_c01009{height:69.300000px;}
.ha_c01009{height:69.304193px;}
.h7_c01009{height:70.354256px;}
.h4_c01009{height:71.404320px;}
.he_c01009{height:71.410317px;}
.h8_c01009{height:72.454383px;}
.h9_c01009{height:73.504447px;}
.h5_c01009{height:74.554510px;}
.hf_c01009{height:74.560772px;}
.h6_c01009{height:76.654637px;}
.hc_c01009{height:87.155272px;}
.hb_c01009{height:91.355527px;}
.h14_c01009{height:93.468688px;}
.h3_c01009{height:178.500000px;}
.h2_c01009{height:179.550000px;}
.h0_c01009{height:1008.450000px;}
.h1_c01009{height:1008.750000px;}
.w1_c01009{width:700.500000px;}
.w0_c01009{width:700.650000px;}
.x0_c01009{left:0.000000px;}
.xa1_c01009{left:137.950440px;}
.x9c_c01009{left:141.461220px;}
.x6b_c01009{left:142.623534px;}
.x39_c01009{left:143.998816px;}
.x1e_c01009{left:145.065306px;}
.x8_c01009{left:147.811500px;}
.x3_c01009{left:153.846000px;}
.x7c_c01009{left:155.844000px;}
.x65_c01009{left:161.514000px;}
.x7d_c01009{left:165.322500px;}
.x75_c01009{left:169.685028px;}
.x49_c01009{left:174.820476px;}
.x96_c01009{left:176.567670px;}
.xa4_c01009{left:182.970930px;}
.x13_c01009{left:185.336103px;}
.x41_c01009{left:187.224346px;}
.x8f_c01009{left:188.991180px;}
.x9d_c01009{left:191.150580px;}
.x56_c01009{left:193.328906px;}
.x9_c01009{left:196.441500px;}
.x90_c01009{left:197.633130px;}
.x1f_c01009{left:204.444502px;}
.x9e_c01009{left:208.164390px;}
.x42_c01009{left:211.511819px;}
.x51_c01009{left:214.459096px;}
.xa5_c01009{left:216.977400px;}
.x3a_c01009{left:218.519358px;}
.x72_c01009{left:220.923287px;}
.x43_c01009{left:226.356988px;}
.x14_c01009{left:229.320124px;}
.x97_c01009{left:233.278350px;}
.x86_c01009{left:234.680124px;}
.x3b_c01009{left:238.770198px;}
.x76_c01009{left:241.151028px;}
.x32_c01009{left:245.824383px;}
.xa_c01009{left:249.403500px;}
.x66_c01009{left:251.973000px;}
.x57_c01009{left:254.590040px;}
.xa6_c01009{left:259.112670px;}
.x5e_c01009{left:261.694482px;}
.x87_c01009{left:263.031000px;}
.xb_c01009{left:265.042500px;}
.x6c_c01009{left:267.101676px;}
.x20_c01009{left:269.493567px;}
.x2b_c01009{left:274.701120px;}
.x4_c01009{left:275.722500px;}
.x7e_c01009{left:279.612000px;}
.x15_c01009{left:281.182047px;}
.x88_c01009{left:283.272408px;}
.x5f_c01009{left:285.798162px;}
.x21_c01009{left:287.733171px;}
.x52_c01009{left:290.009596px;}
.x4e_c01009{left:291.163569px;}
.x67_c01009{left:293.560500px;}
.x91_c01009{left:295.122630px;}
.x44_c01009{left:296.570437px;}
.xc_c01009{left:302.550000px;}
.x58_c01009{left:306.991168px;}
.x77_c01009{left:308.742528px;}
.x73_c01009{left:310.035291px;}
.x6d_c01009{left:313.000967px;}
.x60_c01009{left:315.693012px;}
.x22_c01009{left:321.104445px;}
.x16_c01009{left:324.947069px;}
.x33_c01009{left:327.900492px;}
.x3c_c01009{left:332.743596px;}
.x59_c01009{left:335.305117px;}
.x45_c01009{left:340.042480px;}
.x92_c01009{left:341.842320px;}
.x1_c01009{left:343.440000px;}
.x89_c01009{left:344.658060px;}
.x2c_c01009{left:345.711052px;}
.x98_c01009{left:347.511510px;}
.x17_c01009{left:349.248305px;}
.x9f_c01009{left:350.482770px;}
.x7f_c01009{left:351.679500px;}
.x34_c01009{left:353.284711px;}
.x5_c01009{left:354.568500px;}
.x4a_c01009{left:357.296937px;}
.x23_c01009{left:363.756004px;}
.x61_c01009{left:371.041476px;}
.xd_c01009{left:374.902500px;}
.x3d_c01009{left:375.997677px;}
.x2d_c01009{left:379.994293px;}
.x99_c01009{left:382.347930px;}
.x9a_c01009{left:383.698470px;}
.x24_c01009{left:390.809411px;}
.x8a_c01009{left:392.053500px;}
.x6_c01009{left:393.301500px;}
.x68_c01009{left:397.221000px;}
.x74_c01009{left:398.602796px;}
.xa7_c01009{left:405.423390px;}
.x78_c01009{left:409.122528px;}
.x3e_c01009{left:410.489038px;}
.x18_c01009{left:411.889112px;}
.x53_c01009{left:412.963096px;}
.x6e_c01009{left:418.314752px;}
.x46_c01009{left:424.018132px;}
.x8b_c01009{left:425.835000px;}
.x5a_c01009{left:426.881068px;}
.x69_c01009{left:429.643500px;}
.x80_c01009{left:431.083500px;}
.x35_c01009{left:432.393837px;}
.x25_c01009{left:435.353937px;}
.x93_c01009{left:436.360620px;}
.xe_c01009{left:442.140000px;}
.x62_c01009{left:444.223950px;}
.x19_c01009{left:445.559248px;}
.x54_c01009{left:452.069596px;}
.x5b_c01009{left:455.160518px;}
.x26_c01009{left:458.094942px;}
.x2_c01009{left:459.810000px;}
.x63_c01009{left:464.817812px;}
.x1a_c01009{left:466.724017px;}
.x2e_c01009{left:468.838846px;}
.x8c_c01009{left:470.544000px;}
.x47_c01009{left:471.603076px;}
.xf_c01009{left:473.731500px;}
.x5c_c01009{left:478.731714px;}
.xa2_c01009{left:480.646980px;}
.x27_c01009{left:482.878897px;}
.x79_c01009{left:485.544528px;}
.x2f_c01009{left:486.653950px;}
.x94_c01009{left:488.751060px;}
.x81_c01009{left:493.741500px;}
.x7_c01009{left:498.766500px;}
.x1b_c01009{left:500.442154px;}
.x10_c01009{left:501.813000px;}
.x28_c01009{left:505.240402px;}
.x36_c01009{left:510.199479px;}
.x30_c01009{left:511.242906px;}
.x82_c01009{left:512.574000px;}
.x7a_c01009{left:513.633528px;}
.x6f_c01009{left:521.756511px;}
.x8d_c01009{left:523.993500px;}
.x4f_c01009{left:525.592347px;}
.x48_c01009{left:527.128855px;}
.x3f_c01009{left:530.387578px;}
.x4b_c01009{left:536.263530px;}
.x70_c01009{left:538.495292px;}
.x29_c01009{left:540.053143px;}
.x83_c01009{left:542.571000px;}
.x37_c01009{left:546.347583px;}
.x1c_c01009{left:551.795593px;}
.x50_c01009{left:553.873906px;}
.x31_c01009{left:556.376916px;}
.x64_c01009{left:560.070081px;}
.x4c_c01009{left:563.331639px;}
.x6a_c01009{left:565.224000px;}
.xa3_c01009{left:566.793450px;}
.x11_c01009{left:572.020500px;}
.x95_c01009{left:577.058370px;}
.xa8_c01009{left:578.499930px;}
.x4d_c01009{left:584.384946px;}
.x1d_c01009{left:588.740181px;}
.x38_c01009{left:590.135104px;}
.x7b_c01009{left:592.110000px;}
.x84_c01009{left:593.911500px;}
.x12_c01009{left:595.290000px;}
.x2a_c01009{left:607.890642px;}
.x5d_c01009{left:611.100921px;}
.x55_c01009{left:613.330096px;}
.x40_c01009{left:614.620306px;}
.x8e_c01009{left:627.063000px;}
.xa0_c01009{left:629.178690px;}
.x85_c01009{left:630.553500px;}
.x71_c01009{left:646.368128px;}
.x9b_c01009{left:650.782740px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ws0_c01009{word-spacing:0.000000pt;}
.fs11_c01009{font-size:41.074879pt;}
.fs10_c01009{font-size:47.606092pt;}
.fsf_c01009{font-size:48.539545pt;}
.fs13_c01009{font-size:48.543039pt;}
.fs14_c01009{font-size:52.277119pt;}
.fs15_c01009{font-size:56.944719pt;}
.fsb_c01009{font-size:59.741964pt;}
.fse_c01009{font-size:61.600000pt;}
.fs8_c01009{font-size:61.603727pt;}
.fs5_c01009{font-size:62.537116pt;}
.fs2_c01009{font-size:63.470506pt;}
.fsc_c01009{font-size:63.475837pt;}
.fs6_c01009{font-size:64.403896pt;}
.fs7_c01009{font-size:65.337286pt;}
.fs3_c01009{font-size:66.270676pt;}
.fsd_c01009{font-size:66.276242pt;}
.fs4_c01009{font-size:68.137455pt;}
.fsa_c01009{font-size:77.471353pt;}
.fs9_c01009{font-size:81.204912pt;}
.fs12_c01009{font-size:83.083278pt;}
.fs1_c01009{font-size:158.666667pt;}
.fs0_c01009{font-size:159.600000pt;}
.y0_c01009{bottom:0.000000pt;}
.y112_c01009{bottom:145.906053pt;}
.y113_c01009{bottom:146.229973pt;}
.y114_c01009{bottom:146.502400pt;}
.y115_c01009{bottom:146.839307pt;}
.y116_c01009{bottom:147.139253pt;}
.y117_c01009{bottom:147.285493pt;}
.y118_c01009{bottom:147.546320pt;}
.y119_c01009{bottom:147.774107pt;}
.y11a_c01009{bottom:147.897707pt;}
.y11b_c01009{bottom:148.007813pt;}
.y11c_c01009{bottom:148.176853pt;}
.y11d_c01009{bottom:148.522373pt;}
.y11e_c01009{bottom:149.109813pt;}
.y11f_c01009{bottom:149.393387pt;}
.y120_c01009{bottom:149.495040pt;}
.y111_c01009{bottom:162.144800pt;}
.y110_c01009{bottom:162.145120pt;}
.y10f_c01009{bottom:162.145493pt;}
.y10e_c01009{bottom:162.146080pt;}
.y10d_c01009{bottom:162.146240pt;}
.y10b_c01009{bottom:162.146320pt;}
.y10a_c01009{bottom:162.146640pt;}
.y107_c01009{bottom:162.146720pt;}
.y109_c01009{bottom:162.146773pt;}
.y10c_c01009{bottom:162.146853pt;}
.y106_c01009{bottom:162.146960pt;}
.y108_c01009{bottom:162.147093pt;}
.yf8_c01009{bottom:188.051707pt;}
.yfa_c01009{bottom:188.051733pt;}
.yf9_c01009{bottom:188.052053pt;}
.yfb_c01009{bottom:188.052160pt;}
.y100_c01009{bottom:188.052453pt;}
.yfc_c01009{bottom:188.052587pt;}
.y102_c01009{bottom:188.052693pt;}
.yfe_c01009{bottom:188.052747pt;}
.yff_c01009{bottom:188.052827pt;}
.y101_c01009{bottom:188.052933pt;}
.yfd_c01009{bottom:188.053067pt;}
.y104_c01009{bottom:188.053147pt;}
.y105_c01009{bottom:188.053440pt;}
.y103_c01009{bottom:188.053573pt;}
.yee_c01009{bottom:194.324533pt;}
.yed_c01009{bottom:194.324747pt;}
.yef_c01009{bottom:194.324907pt;}
.yec_c01009{bottom:194.325147pt;}
.yf1_c01009{bottom:194.325200pt;}
.yf0_c01009{bottom:194.325387pt;}
.yf2_c01009{bottom:194.325600pt;}
.yf3_c01009{bottom:194.325627pt;}
.yf4_c01009{bottom:194.326107pt;}
.yf5_c01009{bottom:194.326133pt;}
.yf7_c01009{bottom:194.326533pt;}
.yf6_c01009{bottom:194.326720pt;}
.yeb_c01009{bottom:220.865280pt;}
.ye9_c01009{bottom:220.865307pt;}
.ye8_c01009{bottom:220.865387pt;}
.ye7_c01009{bottom:220.865680pt;}
.ye4_c01009{bottom:220.865733pt;}
.ye6_c01009{bottom:220.865813pt;}
.ye5_c01009{bottom:220.865867pt;}
.yea_c01009{bottom:220.865947pt;}
.yde_c01009{bottom:220.866160pt;}
.ye3_c01009{bottom:220.866240pt;}
.ye2_c01009{bottom:220.866347pt;}
.ydf_c01009{bottom:220.866800pt;}
.ye1_c01009{bottom:220.866933pt;}
.ye0_c01009{bottom:220.867040pt;}
.yd6_c01009{bottom:226.561333pt;}
.yd7_c01009{bottom:229.286720pt;}
.yd8_c01009{bottom:229.887280pt;}
.yd9_c01009{bottom:230.682107pt;}
.yd5_c01009{bottom:230.926357pt;}
.yda_c01009{bottom:231.104320pt;}
.yd4_c01009{bottom:231.126357pt;}
.ydb_c01009{bottom:231.632320pt;}
.yd3_c01009{bottom:232.158869pt;}
.ydc_c01009{bottom:232.366080pt;}
.yd2_c01009{bottom:232.435509pt;}
.yd1_c01009{bottom:232.867424pt;}
.ydd_c01009{bottom:233.464667pt;}
.yd0_c01009{bottom:233.472021pt;}
.ycf_c01009{bottom:234.503616pt;}
.yce_c01009{bottom:235.443040pt;}
.ycd_c01009{bottom:243.811243pt;}
.ycc_c01009{bottom:244.140395pt;}
.ycb_c01009{bottom:244.332373pt;}
.yca_c01009{bottom:245.062549pt;}
.yc9_c01009{bottom:245.489173pt;}
.yc8_c01009{bottom:245.757013pt;}
.yc7_c01009{bottom:246.132800pt;}
.yc6_c01009{bottom:246.297835pt;}
.yc5_c01009{bottom:246.648149pt;}
.yc4_c01009{bottom:247.198187pt;}
.yc3_c01009{bottom:247.440320pt;}
.yc2_c01009{bottom:247.777451pt;}
.yc1_c01009{bottom:248.115136pt;}
.yc0_c01009{bottom:248.802411pt;}
.ybf_c01009{bottom:248.967147pt;}
.ybe_c01009{bottom:249.290581pt;}
.ybd_c01009{bottom:249.736512pt;}
.ybc_c01009{bottom:250.427861pt;}
.ybb_c01009{bottom:250.562667pt;}
.yba_c01009{bottom:294.729333pt;}
.yb9_c01009{bottom:314.918811pt;}
.yb8_c01009{bottom:315.992123pt;}
.yb7_c01009{bottom:316.416579pt;}
.yb6_c01009{bottom:317.261433pt;}
.yb5_c01009{bottom:317.571400pt;}
.yb4_c01009{bottom:318.542644pt;}
.yb3_c01009{bottom:319.088253pt;}
.yb2_c01009{bottom:320.109636pt;}
.yb1_c01009{bottom:321.189567pt;}
.yb0_c01009{bottom:321.593849pt;}
.yaf_c01009{bottom:334.580203pt;}
.yae_c01009{bottom:335.327073pt;}
.yad_c01009{bottom:336.288637pt;}
.yac_c01009{bottom:337.037525pt;}
.yab_c01009{bottom:337.267885pt;}
.yaa_c01009{bottom:338.116255pt;}
.ya9_c01009{bottom:338.511365pt;}
.ya8_c01009{bottom:339.375919pt;}
.ya7_c01009{bottom:340.643811pt;}
.ya6_c01009{bottom:341.496328pt;}
.ya5_c01009{bottom:341.757723pt;}
.ya4_c01009{bottom:354.996871pt;}
.ya3_c01009{bottom:355.819963pt;}
.ya2_c01009{bottom:356.530921pt;}
.ya1_c01009{bottom:356.769192pt;}
.ya0_c01009{bottom:357.683171pt;}
.y9f_c01009{bottom:358.240285pt;}
.y9e_c01009{bottom:358.847637pt;}
.y9d_c01009{bottom:359.147301pt;}
.y9c_c01009{bottom:359.738333pt;}
.y9b_c01009{bottom:360.037725pt;}
.y9a_c01009{bottom:360.390577pt;}
.y99_c01009{bottom:361.150508pt;}
.y98_c01009{bottom:361.526235pt;}
.y97_c01009{bottom:362.159548pt;}
.y96_c01009{bottom:376.222160pt;}
.y95_c01009{bottom:376.797780pt;}
.y94_c01009{bottom:377.201791pt;}
.y93_c01009{bottom:378.270932pt;}
.y92_c01009{bottom:378.760872pt;}
.y91_c01009{bottom:379.981381pt;}
.y90_c01009{bottom:380.327297pt;}
.y8f_c01009{bottom:380.955731pt;}
.y8e_c01009{bottom:381.531056pt;}
.y8d_c01009{bottom:381.975980pt;}
.y8c_c01009{bottom:382.322667pt;}
.y8b_c01009{bottom:396.788576pt;}
.y8a_c01009{bottom:397.126288pt;}
.y89_c01009{bottom:397.667847pt;}
.y88_c01009{bottom:398.142649pt;}
.y87_c01009{bottom:398.436023pt;}
.y86_c01009{bottom:399.153805pt;}
.y85_c01009{bottom:399.476957pt;}
.y84_c01009{bottom:400.263505pt;}
.y83_c01009{bottom:400.689160pt;}
.y82_c01009{bottom:401.031520pt;}
.y81_c01009{bottom:402.713305pt;}
.y80_c01009{bottom:416.238688pt;}
.y7f_c01009{bottom:416.566063pt;}
.y7e_c01009{bottom:418.122369pt;}
.y7d_c01009{bottom:418.458189pt;}
.y7c_c01009{bottom:418.860048pt;}
.y7b_c01009{bottom:419.759259pt;}
.y7a_c01009{bottom:420.163507pt;}
.y79_c01009{bottom:420.565703pt;}
.y78_c01009{bottom:421.091339pt;}
.y77_c01009{bottom:421.310097pt;}
.y76_c01009{bottom:422.181128pt;}
.y75_c01009{bottom:422.875891pt;}
.y74_c01009{bottom:433.081599pt;}
.y73_c01009{bottom:433.663029pt;}
.y72_c01009{bottom:433.897916pt;}
.y71_c01009{bottom:434.658368pt;}
.y70_c01009{bottom:435.040743pt;}
.y6f_c01009{bottom:435.527031pt;}
.y6e_c01009{bottom:436.242955pt;}
.y6d_c01009{bottom:436.981671pt;}
.y6c_c01009{bottom:437.266776pt;}
.y6b_c01009{bottom:437.676181pt;}
.y6a_c01009{bottom:457.852541pt;}
.y69_c01009{bottom:458.205081pt;}
.y68_c01009{bottom:459.039099pt;}
.y67_c01009{bottom:459.375216pt;}
.y66_c01009{bottom:460.086955pt;}
.y65_c01009{bottom:460.752283pt;}
.y64_c01009{bottom:461.121349pt;}
.y63_c01009{bottom:461.649192pt;}
.y62_c01009{bottom:462.577129pt;}
.y61_c01009{bottom:462.956313pt;}
.y60_c01009{bottom:477.640641pt;}
.y5f_c01009{bottom:477.902503pt;}
.y5e_c01009{bottom:478.239177pt;}
.y5d_c01009{bottom:479.017737pt;}
.y5c_c01009{bottom:479.502455pt;}
.y5b_c01009{bottom:480.466464pt;}
.y5a_c01009{bottom:481.808235pt;}
.y59_c01009{bottom:482.056576pt;}
.y58_c01009{bottom:482.738737pt;}
.y57_c01009{bottom:483.118801pt;}
.y56_c01009{bottom:499.327035pt;}
.y55_c01009{bottom:499.581785pt;}
.y54_c01009{bottom:499.968632pt;}
.y53_c01009{bottom:500.262140pt;}
.y52_c01009{bottom:500.519251pt;}
.y51_c01009{bottom:501.071893pt;}
.y50_c01009{bottom:501.489697pt;}
.y4f_c01009{bottom:501.992100pt;}
.y4e_c01009{bottom:502.803980pt;}
.y4d_c01009{bottom:502.975803pt;}
.y4c_c01009{bottom:503.255952pt;}
.y4b_c01009{bottom:503.761171pt;}
.y4a_c01009{bottom:518.065933pt;}
.y49_c01009{bottom:519.113569pt;}
.y48_c01009{bottom:519.708879pt;}
.y47_c01009{bottom:520.605949pt;}
.y46_c01009{bottom:521.035209pt;}
.y45_c01009{bottom:521.572819pt;}
.y44_c01009{bottom:522.120575pt;}
.y43_c01009{bottom:522.742367pt;}
.y42_c01009{bottom:522.993715pt;}
.y41_c01009{bottom:523.921051pt;}
.y40_c01009{bottom:538.857164pt;}
.y3f_c01009{bottom:539.323980pt;}
.y3e_c01009{bottom:539.709432pt;}
.y3d_c01009{bottom:539.994675pt;}
.y3c_c01009{bottom:540.539540pt;}
.y3b_c01009{bottom:541.383727pt;}
.y3a_c01009{bottom:541.654597pt;}
.y39_c01009{bottom:542.284845pt;}
.y38_c01009{bottom:542.529128pt;}
.y37_c01009{bottom:543.061645pt;}
.y36_c01009{bottom:543.600585pt;}
.y35_c01009{bottom:559.121339pt;}
.y34_c01009{bottom:559.497701pt;}
.y33_c01009{bottom:560.019021pt;}
.y32_c01009{bottom:560.303452pt;}
.y31_c01009{bottom:560.509648pt;}
.y30_c01009{bottom:560.821692pt;}
.y2f_c01009{bottom:561.535703pt;}
.y2e_c01009{bottom:561.932257pt;}
.y2d_c01009{bottom:562.753259pt;}
.y2c_c01009{bottom:563.270912pt;}
.y2b_c01009{bottom:564.242283pt;}
.y2a_c01009{bottom:579.055105pt;}
.y29_c01009{bottom:579.476780pt;}
.y28_c01009{bottom:579.839753pt;}
.y27_c01009{bottom:580.241485pt;}
.y26_c01009{bottom:580.500136pt;}
.y25_c01009{bottom:580.786473pt;}
.y24_c01009{bottom:581.048835pt;}
.y23_c01009{bottom:581.563057pt;}
.y22_c01009{bottom:581.875585pt;}
.y21_c01009{bottom:582.368632pt;}
.y20_c01009{bottom:582.753603pt;}
.y1f_c01009{bottom:582.963949pt;}
.y1e_c01009{bottom:583.715999pt;}
.y1d_c01009{bottom:584.401941pt;}
.y1c_c01009{bottom:599.732833pt;}
.y1b_c01009{bottom:600.127407pt;}
.y1a_c01009{bottom:600.674868pt;}
.y19_c01009{bottom:601.033893pt;}
.y18_c01009{bottom:601.259507pt;}
.y17_c01009{bottom:601.618063pt;}
.y16_c01009{bottom:602.286557pt;}
.y15_c01009{bottom:602.545505pt;}
.y14_c01009{bottom:603.012101pt;}
.y13_c01009{bottom:603.565868pt;}
.y12_c01009{bottom:604.034605pt;}
.y11_c01009{bottom:620.585988pt;}
.y10_c01009{bottom:620.813512pt;}
.yf_c01009{bottom:621.499985pt;}
.ye_c01009{bottom:621.774560pt;}
.yd_c01009{bottom:622.083455pt;}
.yc_c01009{bottom:622.740888pt;}
.yb_c01009{bottom:623.448335pt;}
.ya_c01009{bottom:623.815075pt;}
.y9_c01009{bottom:623.967989pt;}
.y8_c01009{bottom:624.485840pt;}
.y7_c01009{bottom:624.961333pt;}
.y6_c01009{bottom:664.616000pt;}
.y5_c01009{bottom:665.553333pt;}
.y4_c01009{bottom:665.897333pt;}
.y3_c01009{bottom:666.598667pt;}
.y2_c01009{bottom:667.682667pt;}
.y1_c01009{bottom:716.872000pt;}
.h13_c01009{height:41.074879pt;}
.h12_c01009{height:47.606092pt;}
.h11_c01009{height:48.539545pt;}
.h15_c01009{height:48.543039pt;}
.h16_c01009{height:52.277119pt;}
.h17_c01009{height:56.944719pt;}
.hd_c01009{height:59.741964pt;}
.h10_c01009{height:61.600000pt;}
.ha_c01009{height:61.603727pt;}
.h7_c01009{height:62.537116pt;}
.h4_c01009{height:63.470506pt;}
.he_c01009{height:63.475837pt;}
.h8_c01009{height:64.403896pt;}
.h9_c01009{height:65.337286pt;}
.h5_c01009{height:66.270676pt;}
.hf_c01009{height:66.276242pt;}
.h6_c01009{height:68.137455pt;}
.hc_c01009{height:77.471353pt;}
.hb_c01009{height:81.204912pt;}
.h14_c01009{height:83.083278pt;}
.h3_c01009{height:158.666667pt;}
.h2_c01009{height:159.600000pt;}
.h0_c01009{height:896.400000pt;}
.h1_c01009{height:896.666667pt;}
.w1_c01009{width:622.666667pt;}
.w0_c01009{width:622.800000pt;}
.x0_c01009{left:0.000000pt;}
.xa1_c01009{left:122.622613pt;}
.x9c_c01009{left:125.743307pt;}
.x6b_c01009{left:126.776475pt;}
.x39_c01009{left:127.998948pt;}
.x1e_c01009{left:128.946939pt;}
.x8_c01009{left:131.388000pt;}
.x3_c01009{left:136.752000pt;}
.x7c_c01009{left:138.528000pt;}
.x65_c01009{left:143.568000pt;}
.x7d_c01009{left:146.953333pt;}
.x75_c01009{left:150.831136pt;}
.x49_c01009{left:155.395979pt;}
.x96_c01009{left:156.949040pt;}
.xa4_c01009{left:162.640827pt;}
.x13_c01009{left:164.743203pt;}
.x41_c01009{left:166.421641pt;}
.x8f_c01009{left:167.992160pt;}
.x9d_c01009{left:169.911627pt;}
.x56_c01009{left:171.847916pt;}
.x9_c01009{left:174.614667pt;}
.x90_c01009{left:175.673893pt;}
.x1f_c01009{left:181.728447pt;}
.x9e_c01009{left:185.035013pt;}
.x42_c01009{left:188.010505pt;}
.x51_c01009{left:190.630308pt;}
.xa5_c01009{left:192.868800pt;}
.x3a_c01009{left:194.239429pt;}
.x72_c01009{left:196.376255pt;}
.x43_c01009{left:201.206212pt;}
.x14_c01009{left:203.840111pt;}
.x97_c01009{left:207.358533pt;}
.x86_c01009{left:208.604555pt;}
.x3b_c01009{left:212.240176pt;}
.x76_c01009{left:214.356469pt;}
.x32_c01009{left:218.510563pt;}
.xa_c01009{left:221.692000pt;}
.x66_c01009{left:223.976000pt;}
.x57_c01009{left:226.302257pt;}
.xa6_c01009{left:230.322373pt;}
.x5e_c01009{left:232.617317pt;}
.x87_c01009{left:233.805333pt;}
.xb_c01009{left:235.593333pt;}
.x6c_c01009{left:237.423712pt;}
.x20_c01009{left:239.549837pt;}
.x2b_c01009{left:244.178773pt;}
.x4_c01009{left:245.086667pt;}
.x7e_c01009{left:248.544000pt;}
.x15_c01009{left:249.939597pt;}
.x88_c01009{left:251.797696pt;}
.x5f_c01009{left:254.042811pt;}
.x21_c01009{left:255.762819pt;}
.x52_c01009{left:257.786308pt;}
.x4e_c01009{left:258.812061pt;}
.x67_c01009{left:260.942667pt;}
.x91_c01009{left:262.331227pt;}
.x44_c01009{left:263.618167pt;}
.xc_c01009{left:268.933333pt;}
.x58_c01009{left:272.881039pt;}
.x77_c01009{left:274.437803pt;}
.x73_c01009{left:275.586925pt;}
.x6d_c01009{left:278.223081pt;}
.x60_c01009{left:280.616011pt;}
.x22_c01009{left:285.426173pt;}
.x16_c01009{left:288.841839pt;}
.x33_c01009{left:291.467104pt;}
.x3c_c01009{left:295.772085pt;}
.x59_c01009{left:298.048993pt;}
.x45_c01009{left:302.259983pt;}
.x92_c01009{left:303.859840pt;}
.x1_c01009{left:305.280000pt;}
.x89_c01009{left:306.362720pt;}
.x2c_c01009{left:307.298713pt;}
.x98_c01009{left:308.899120pt;}
.x17_c01009{left:310.442937pt;}
.x9f_c01009{left:311.540240pt;}
.x7f_c01009{left:312.604000pt;}
.x34_c01009{left:314.030855pt;}
.x5_c01009{left:315.172000pt;}
.x4a_c01009{left:317.597277pt;}
.x23_c01009{left:323.338671pt;}
.x61_c01009{left:329.814645pt;}
.xd_c01009{left:333.246667pt;}
.x3d_c01009{left:334.220157pt;}
.x2d_c01009{left:337.772705pt;}
.x99_c01009{left:339.864827pt;}
.x9a_c01009{left:341.065307pt;}
.x24_c01009{left:347.386143pt;}
.x8a_c01009{left:348.492000pt;}
.x6_c01009{left:349.601333pt;}
.x68_c01009{left:353.085333pt;}
.x74_c01009{left:354.313596pt;}
.xa7_c01009{left:360.376347pt;}
.x78_c01009{left:363.664469pt;}
.x3e_c01009{left:364.879145pt;}
.x18_c01009{left:366.123655pt;}
.x53_c01009{left:367.078308pt;}
.x6e_c01009{left:371.835335pt;}
.x46_c01009{left:376.905007pt;}
.x8b_c01009{left:378.520000pt;}
.x5a_c01009{left:379.449839pt;}
.x69_c01009{left:381.905333pt;}
.x80_c01009{left:383.185333pt;}
.x35_c01009{left:384.350077pt;}
.x25_c01009{left:386.981277pt;}
.x93_c01009{left:387.876107pt;}
.xe_c01009{left:393.013333pt;}
.x62_c01009{left:394.865733pt;}
.x19_c01009{left:396.052665pt;}
.x54_c01009{left:401.839641pt;}
.x5b_c01009{left:404.587127pt;}
.x26_c01009{left:407.195504pt;}
.x2_c01009{left:408.720000pt;}
.x63_c01009{left:413.171388pt;}
.x1a_c01009{left:414.865793pt;}
.x2e_c01009{left:416.745641pt;}
.x8c_c01009{left:418.261333pt;}
.x47_c01009{left:419.202735pt;}
.xf_c01009{left:421.094667pt;}
.x5c_c01009{left:425.539301pt;}
.xa2_c01009{left:427.241760pt;}
.x27_c01009{left:429.225687pt;}
.x79_c01009{left:431.595136pt;}
.x2f_c01009{left:432.581289pt;}
.x94_c01009{left:434.445387pt;}
.x81_c01009{left:438.881333pt;}
.x7_c01009{left:443.348000pt;}
.x1b_c01009{left:444.837471pt;}
.x10_c01009{left:446.056000pt;}
.x28_c01009{left:449.102580pt;}
.x36_c01009{left:453.510648pt;}
.x30_c01009{left:454.438139pt;}
.x82_c01009{left:455.621333pt;}
.x7a_c01009{left:456.563136pt;}
.x6f_c01009{left:463.783565pt;}
.x8d_c01009{left:465.772000pt;}
.x4f_c01009{left:467.193197pt;}
.x48_c01009{left:468.558983pt;}
.x3f_c01009{left:471.455625pt;}
.x4b_c01009{left:476.678693pt;}
.x70_c01009{left:478.662481pt;}
.x29_c01009{left:480.047239pt;}
.x83_c01009{left:482.285333pt;}
.x37_c01009{left:485.642296pt;}
.x1c_c01009{left:490.484972pt;}
.x50_c01009{left:492.332361pt;}
.x31_c01009{left:494.557259pt;}
.x64_c01009{left:497.840072pt;}
.x4c_c01009{left:500.739235pt;}
.x6a_c01009{left:502.421333pt;}
.xa3_c01009{left:503.816400pt;}
.x11_c01009{left:508.462667pt;}
.x95_c01009{left:512.940773pt;}
.xa8_c01009{left:514.222160pt;}
.x4d_c01009{left:519.453285pt;}
.x1d_c01009{left:523.324605pt;}
.x38_c01009{left:524.564537pt;}
.x7b_c01009{left:526.320000pt;}
.x84_c01009{left:527.921333pt;}
.x12_c01009{left:529.146667pt;}
.x2a_c01009{left:540.347237pt;}
.x5d_c01009{left:543.200819pt;}
.x55_c01009{left:545.182308pt;}
.x40_c01009{left:546.329161pt;}
.x8e_c01009{left:557.389333pt;}
.xa0_c01009{left:559.269947pt;}
.x85_c01009{left:560.492000pt;}
.x71_c01009{left:574.549447pt;}
.x9b_c01009{left:578.473547pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14e_c01010{transform:matrix(0.015639,-0.000188,0.003000,0.249982,0,0);-ms-transform:matrix(0.015639,-0.000188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.015639,-0.000188,0.003000,0.249982,0,0);}
.m117_c01010{transform:matrix(0.016264,-0.000195,0.003000,0.249982,0,0);-ms-transform:matrix(0.016264,-0.000195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.016264,-0.000195,0.003000,0.249982,0,0);}
.mdf_c01010{transform:matrix(0.064586,-0.000710,0.002750,0.249985,0,0);-ms-transform:matrix(0.064586,-0.000710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.064586,-0.000710,0.002750,0.249985,0,0);}
.mde_c01010{transform:matrix(0.102074,-0.001123,0.002750,0.249985,0,0);-ms-transform:matrix(0.102074,-0.001123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.102074,-0.001123,0.002750,0.249985,0,0);}
.me1_c01010{transform:matrix(0.102294,-0.001125,0.002750,0.249985,0,0);-ms-transform:matrix(0.102294,-0.001125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.102294,-0.001125,0.002750,0.249985,0,0);}
.mff_c01010{transform:matrix(0.104952,-0.001259,0.003000,0.249982,0,0);-ms-transform:matrix(0.104952,-0.001259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.104952,-0.001259,0.003000,0.249982,0,0);}
.mb9_c01010{transform:matrix(0.129022,-0.001419,0.002750,0.249985,0,0);-ms-transform:matrix(0.129022,-0.001419,0.002750,0.249985,0,0);-webkit-transform:matrix(0.129022,-0.001419,0.002750,0.249985,0,0);}
.mca_c01010{transform:matrix(0.135977,-0.001496,0.002750,0.249985,0,0);-ms-transform:matrix(0.135977,-0.001496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.135977,-0.001496,0.002750,0.249985,0,0);}
.m1b_c01010{transform:matrix(0.139067,-0.001530,0.002750,0.249985,0,0);-ms-transform:matrix(0.139067,-0.001530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139067,-0.001530,0.002750,0.249985,0,0);}
.m1d_c01010{transform:matrix(0.144046,-0.001585,0.002750,0.249985,0,0);-ms-transform:matrix(0.144046,-0.001585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.144046,-0.001585,0.002750,0.249985,0,0);}
.m157_c01010{transform:matrix(0.144864,-0.001304,0.002250,0.249990,0,0);-ms-transform:matrix(0.144864,-0.001304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144864,-0.001304,0.002250,0.249990,0,0);}
.m8d_c01010{transform:matrix(0.145506,-0.001601,0.002750,0.249985,0,0);-ms-transform:matrix(0.145506,-0.001601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145506,-0.001601,0.002750,0.249985,0,0);}
.mf2_c01010{transform:matrix(0.145685,-0.001748,0.003000,0.249982,0,0);-ms-transform:matrix(0.145685,-0.001748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145685,-0.001748,0.003000,0.249982,0,0);}
.m80_c01010{transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);-ms-transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146096,-0.001607,0.002750,0.249985,0,0);}
.m20_c01010{transform:matrix(0.146186,-0.001608,0.002750,0.249985,0,0);-ms-transform:matrix(0.146186,-0.001608,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146186,-0.001608,0.002750,0.249985,0,0);}
.m24_c01010{transform:matrix(0.148836,-0.001637,0.002750,0.249985,0,0);-ms-transform:matrix(0.148836,-0.001637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148836,-0.001637,0.002750,0.249985,0,0);}
.m17_c01010{transform:matrix(0.149476,-0.001644,0.002750,0.249985,0,0);-ms-transform:matrix(0.149476,-0.001644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149476,-0.001644,0.002750,0.249985,0,0);}
.mb_c01010{transform:matrix(0.150456,-0.001655,0.002750,0.249985,0,0);-ms-transform:matrix(0.150456,-0.001655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150456,-0.001655,0.002750,0.249985,0,0);}
.m48_c01010{transform:matrix(0.150661,-0.001657,0.002750,0.249985,0,0);-ms-transform:matrix(0.150661,-0.001657,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150661,-0.001657,0.002750,0.249985,0,0);}
.maa_c01010{transform:matrix(0.150841,-0.001659,0.002750,0.249985,0,0);-ms-transform:matrix(0.150841,-0.001659,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150841,-0.001659,0.002750,0.249985,0,0);}
.mf3_c01010{transform:matrix(0.150864,-0.001810,0.003000,0.249982,0,0);-ms-transform:matrix(0.150864,-0.001810,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150864,-0.001810,0.003000,0.249982,0,0);}
.md0_c01010{transform:matrix(0.152011,-0.001672,0.002750,0.249985,0,0);-ms-transform:matrix(0.152011,-0.001672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152011,-0.001672,0.002750,0.249985,0,0);}
.m14b_c01010{transform:matrix(0.152414,-0.001829,0.003000,0.249982,0,0);-ms-transform:matrix(0.152414,-0.001829,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152414,-0.001829,0.003000,0.249982,0,0);}
.m2d_c01010{transform:matrix(0.152881,-0.001682,0.002750,0.249985,0,0);-ms-transform:matrix(0.152881,-0.001682,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152881,-0.001682,0.002750,0.249985,0,0);}
.ma3_c01010{transform:matrix(0.152936,-0.001682,0.002750,0.249985,0,0);-ms-transform:matrix(0.152936,-0.001682,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152936,-0.001682,0.002750,0.249985,0,0);}
.mc9_c01010{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);}
.mf6_c01010{transform:matrix(0.153004,-0.001836,0.003000,0.249982,0,0);-ms-transform:matrix(0.153004,-0.001836,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153004,-0.001836,0.003000,0.249982,0,0);}
.m79_c01010{transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);-ms-transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);}
.m8b_c01010{transform:matrix(0.155276,-0.001708,0.002750,0.249985,0,0);-ms-transform:matrix(0.155276,-0.001708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155276,-0.001708,0.002750,0.249985,0,0);}
.m82_c01010{transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156591,-0.001722,0.002750,0.249985,0,0);}
.m153_c01010{transform:matrix(0.156819,-0.001882,0.003000,0.249982,0,0);-ms-transform:matrix(0.156819,-0.001882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156819,-0.001882,0.003000,0.249982,0,0);}
.m18_c01010{transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-ms-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);}
.m50_c01010{transform:matrix(0.157485,-0.001732,0.002750,0.249985,0,0);-ms-transform:matrix(0.157485,-0.001732,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157485,-0.001732,0.002750,0.249985,0,0);}
.mee_c01010{transform:matrix(0.157559,-0.001891,0.003000,0.249982,0,0);-ms-transform:matrix(0.157559,-0.001891,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157559,-0.001891,0.003000,0.249982,0,0);}
.m88_c01010{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);}
.m1c_c01010{transform:matrix(0.161005,-0.001771,0.002750,0.249985,0,0);-ms-transform:matrix(0.161005,-0.001771,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161005,-0.001771,0.002750,0.249985,0,0);}
.m8_c01010{transform:matrix(0.161105,-0.001772,0.002750,0.249985,0,0);-ms-transform:matrix(0.161105,-0.001772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161105,-0.001772,0.002750,0.249985,0,0);}
.m41_c01010{transform:matrix(0.161365,-0.001775,0.002750,0.249985,0,0);-ms-transform:matrix(0.161365,-0.001775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161365,-0.001775,0.002750,0.249985,0,0);}
.m89_c01010{transform:matrix(0.161370,-0.001775,0.002750,0.249985,0,0);-ms-transform:matrix(0.161370,-0.001775,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161370,-0.001775,0.002750,0.249985,0,0);}
.m6d_c01010{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);}
.m114_c01010{transform:matrix(0.163308,-0.001960,0.003000,0.249982,0,0);-ms-transform:matrix(0.163308,-0.001960,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163308,-0.001960,0.003000,0.249982,0,0);}
.m141_c01010{transform:matrix(0.163593,-0.001963,0.003000,0.249982,0,0);-ms-transform:matrix(0.163593,-0.001963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163593,-0.001963,0.003000,0.249982,0,0);}
.mc_c01010{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);}
.m4b_c01010{transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);-ms-transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164055,-0.001805,0.002750,0.249985,0,0);}
.m65_c01010{transform:matrix(0.164275,-0.001807,0.002750,0.249985,0,0);-ms-transform:matrix(0.164275,-0.001807,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164275,-0.001807,0.002750,0.249985,0,0);}
.m6e_c01010{transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);-ms-transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164525,-0.001810,0.002750,0.249985,0,0);}
.m25_c01010{transform:matrix(0.164630,-0.001811,0.002750,0.249985,0,0);-ms-transform:matrix(0.164630,-0.001811,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164630,-0.001811,0.002750,0.249985,0,0);}
.m22_c01010{transform:matrix(0.164775,-0.001813,0.002750,0.249985,0,0);-ms-transform:matrix(0.164775,-0.001813,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164775,-0.001813,0.002750,0.249985,0,0);}
.mef_c01010{transform:matrix(0.165398,-0.001985,0.003000,0.249982,0,0);-ms-transform:matrix(0.165398,-0.001985,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165398,-0.001985,0.003000,0.249982,0,0);}
.m85_c01010{transform:matrix(0.165465,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165465,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165465,-0.001820,0.002750,0.249985,0,0);}
.ma4_c01010{transform:matrix(0.165720,-0.001823,0.002750,0.249985,0,0);-ms-transform:matrix(0.165720,-0.001823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165720,-0.001823,0.002750,0.249985,0,0);}
.m69_c01010{transform:matrix(0.166080,-0.001827,0.002750,0.249985,0,0);-ms-transform:matrix(0.166080,-0.001827,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166080,-0.001827,0.002750,0.249985,0,0);}
.m67_c01010{transform:matrix(0.166270,-0.001829,0.002750,0.249985,0,0);-ms-transform:matrix(0.166270,-0.001829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166270,-0.001829,0.002750,0.249985,0,0);}
.ma8_c01010{transform:matrix(0.166420,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166420,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166420,-0.001831,0.002750,0.249985,0,0);}
.m23_c01010{transform:matrix(0.166495,-0.001831,0.002750,0.249985,0,0);-ms-transform:matrix(0.166495,-0.001831,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166495,-0.001831,0.002750,0.249985,0,0);}
.m78_c01010{transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);-ms-transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166970,-0.001837,0.002750,0.249985,0,0);}
.m9e_c01010{transform:matrix(0.167125,-0.001838,0.002750,0.249985,0,0);-ms-transform:matrix(0.167125,-0.001838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167125,-0.001838,0.002750,0.249985,0,0);}
.mcb_c01010{transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);-ms-transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167385,-0.001841,0.002750,0.249985,0,0);}
.m4d_c01010{transform:matrix(0.168165,-0.001850,0.002750,0.249985,0,0);-ms-transform:matrix(0.168165,-0.001850,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168165,-0.001850,0.002750,0.249985,0,0);}
.md7_c01010{transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-ms-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);}
.m98_c01010{transform:matrix(0.169145,-0.001861,0.002750,0.249985,0,0);-ms-transform:matrix(0.169145,-0.001861,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169145,-0.001861,0.002750,0.249985,0,0);}
.m100_c01010{transform:matrix(0.169943,-0.002039,0.003000,0.249982,0,0);-ms-transform:matrix(0.169943,-0.002039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169943,-0.002039,0.003000,0.249982,0,0);}
.md_c01010{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);}
.m76_c01010{transform:matrix(0.170280,-0.001873,0.002750,0.249985,0,0);-ms-transform:matrix(0.170280,-0.001873,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170280,-0.001873,0.002750,0.249985,0,0);}
.mf5_c01010{transform:matrix(0.170323,-0.002044,0.003000,0.249982,0,0);-ms-transform:matrix(0.170323,-0.002044,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170323,-0.002044,0.003000,0.249982,0,0);}
.m8a_c01010{transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);-ms-transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170480,-0.001875,0.002750,0.249985,0,0);}
.m26_c01010{transform:matrix(0.170520,-0.001876,0.002750,0.249985,0,0);-ms-transform:matrix(0.170520,-0.001876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170520,-0.001876,0.002750,0.249985,0,0);}
.m9c_c01010{transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);-ms-transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170805,-0.001879,0.002750,0.249985,0,0);}
.m64_c01010{transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);-ms-transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170985,-0.001881,0.002750,0.249985,0,0);}
.m63_c01010{transform:matrix(0.171350,-0.001885,0.002750,0.249985,0,0);-ms-transform:matrix(0.171350,-0.001885,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171350,-0.001885,0.002750,0.249985,0,0);}
.mfc_c01010{transform:matrix(0.171788,-0.002061,0.003000,0.249982,0,0);-ms-transform:matrix(0.171788,-0.002061,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171788,-0.002061,0.003000,0.249982,0,0);}
.mac_c01010{transform:matrix(0.172175,-0.001894,0.002750,0.249985,0,0);-ms-transform:matrix(0.172175,-0.001894,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172175,-0.001894,0.002750,0.249985,0,0);}
.m86_c01010{transform:matrix(0.172665,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172665,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172665,-0.001899,0.002750,0.249985,0,0);}
.m14a_c01010{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);}
.m62_c01010{transform:matrix(0.174144,-0.001916,0.002750,0.249985,0,0);-ms-transform:matrix(0.174144,-0.001916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174144,-0.001916,0.002750,0.249985,0,0);}
.m1a_c01010{transform:matrix(0.174614,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174614,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174614,-0.001921,0.002750,0.249985,0,0);}
.m9f_c01010{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);}
.me_c01010{transform:matrix(0.174879,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174879,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174879,-0.001924,0.002750,0.249985,0,0);}
.m146_c01010{transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);-ms-transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175177,-0.002102,0.003000,0.249982,0,0);}
.m49_c01010{transform:matrix(0.175404,-0.001929,0.002750,0.249985,0,0);-ms-transform:matrix(0.175404,-0.001929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175404,-0.001929,0.002750,0.249985,0,0);}
.m61_c01010{transform:matrix(0.175779,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175779,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175779,-0.001934,0.002750,0.249985,0,0);}
.m4e_c01010{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);}
.m66_c01010{transform:matrix(0.177049,-0.001948,0.002750,0.249985,0,0);-ms-transform:matrix(0.177049,-0.001948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177049,-0.001948,0.002750,0.249985,0,0);}
.m13e_c01010{transform:matrix(0.177622,-0.002131,0.003000,0.249982,0,0);-ms-transform:matrix(0.177622,-0.002131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177622,-0.002131,0.003000,0.249982,0,0);}
.m87_c01010{transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177799,-0.001956,0.002750,0.249985,0,0);}
.ma_c01010{transform:matrix(0.177929,-0.001957,0.002750,0.249985,0,0);-ms-transform:matrix(0.177929,-0.001957,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177929,-0.001957,0.002750,0.249985,0,0);}
.m145_c01010{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);}
.m4_c01010{transform:matrix(0.178494,-0.001963,0.002750,0.249985,0,0);-ms-transform:matrix(0.178494,-0.001963,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178494,-0.001963,0.002750,0.249985,0,0);}
.m84_c01010{transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);-ms-transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179489,-0.001974,0.002750,0.249985,0,0);}
.m43_c01010{transform:matrix(0.179589,-0.001975,0.002750,0.249985,0,0);-ms-transform:matrix(0.179589,-0.001975,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179589,-0.001975,0.002750,0.249985,0,0);}
.ma5_c01010{transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179759,-0.001977,0.002750,0.249985,0,0);}
.m144_c01010{transform:matrix(0.180192,-0.002162,0.003000,0.249982,0,0);-ms-transform:matrix(0.180192,-0.002162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180192,-0.002162,0.003000,0.249982,0,0);}
.m73_c01010{transform:matrix(0.180444,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180444,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180444,-0.001985,0.002750,0.249985,0,0);}
.m147_c01010{transform:matrix(0.180452,-0.002165,0.003000,0.249982,0,0);-ms-transform:matrix(0.180452,-0.002165,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180452,-0.002165,0.003000,0.249982,0,0);}
.m104_c01010{transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);}
.m4a_c01010{transform:matrix(0.180654,-0.001987,0.002750,0.249985,0,0);-ms-transform:matrix(0.180654,-0.001987,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180654,-0.001987,0.002750,0.249985,0,0);}
.md2_c01010{transform:matrix(0.180914,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180914,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180914,-0.001990,0.002750,0.249985,0,0);}
.m5e_c01010{transform:matrix(0.180934,-0.001990,0.002750,0.249985,0,0);-ms-transform:matrix(0.180934,-0.001990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180934,-0.001990,0.002750,0.249985,0,0);}
.m142_c01010{transform:matrix(0.181417,-0.002177,0.003000,0.249982,0,0);-ms-transform:matrix(0.181417,-0.002177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181417,-0.002177,0.003000,0.249982,0,0);}
.m112_c01010{transform:matrix(0.181437,-0.002177,0.003000,0.249982,0,0);-ms-transform:matrix(0.181437,-0.002177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181437,-0.002177,0.003000,0.249982,0,0);}
.m40_c01010{transform:matrix(0.181774,-0.002000,0.002750,0.249985,0,0);-ms-transform:matrix(0.181774,-0.002000,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181774,-0.002000,0.002750,0.249985,0,0);}
.m99_c01010{transform:matrix(0.181954,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181954,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181954,-0.002001,0.002750,0.249985,0,0);}
.m16_c01010{transform:matrix(0.182504,-0.002008,0.002750,0.249985,0,0);-ms-transform:matrix(0.182504,-0.002008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182504,-0.002008,0.002750,0.249985,0,0);}
.m7c_c01010{transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);}
.mc5_c01010{transform:matrix(0.182889,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182889,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182889,-0.002012,0.002750,0.249985,0,0);}
.m8c_c01010{transform:matrix(0.183274,-0.002016,0.002750,0.249985,0,0);-ms-transform:matrix(0.183274,-0.002016,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183274,-0.002016,0.002750,0.249985,0,0);}
.ma9_c01010{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);}
.mfd_c01010{transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);-ms-transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183762,-0.002205,0.003000,0.249982,0,0);}
.m11e_c01010{transform:matrix(0.183952,-0.002207,0.003000,0.249982,0,0);-ms-transform:matrix(0.183952,-0.002207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183952,-0.002207,0.003000,0.249982,0,0);}
.m3_c01010{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);}
.m37_c01010{transform:matrix(0.184664,-0.002031,0.002750,0.249985,0,0);-ms-transform:matrix(0.184664,-0.002031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184664,-0.002031,0.002750,0.249985,0,0);}
.m9d_c01010{transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);-ms-transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184789,-0.002033,0.002750,0.249985,0,0);}
.m4f_c01010{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);}
.m152_c01010{transform:matrix(0.184867,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184867,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184867,-0.002218,0.003000,0.249982,0,0);}
.m83_c01010{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);}
.m106_c01010{transform:matrix(0.185317,-0.002224,0.003000,0.249982,0,0);-ms-transform:matrix(0.185317,-0.002224,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185317,-0.002224,0.003000,0.249982,0,0);}
.m97_c01010{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);}
.m68_c01010{transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185534,-0.002041,0.002750,0.249985,0,0);}
.mc6_c01010{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);}
.md4_c01010{transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186099,-0.002047,0.002750,0.249985,0,0);}
.m103_c01010{transform:matrix(0.186592,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186592,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186592,-0.002239,0.003000,0.249982,0,0);}
.m13_c01010{transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);-ms-transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186629,-0.002053,0.002750,0.249985,0,0);}
.m56_c01010{transform:matrix(0.186709,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186709,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186709,-0.002054,0.002750,0.249985,0,0);}
.m77_c01010{transform:matrix(0.186739,-0.002054,0.002750,0.249985,0,0);-ms-transform:matrix(0.186739,-0.002054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186739,-0.002054,0.002750,0.249985,0,0);}
.m70_c01010{transform:matrix(0.187004,-0.002057,0.002750,0.249985,0,0);-ms-transform:matrix(0.187004,-0.002057,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187004,-0.002057,0.002750,0.249985,0,0);}
.m12a_c01010{transform:matrix(0.187262,-0.002247,0.003000,0.249982,0,0);-ms-transform:matrix(0.187262,-0.002247,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187262,-0.002247,0.003000,0.249982,0,0);}
.m1f_c01010{transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);-ms-transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187534,-0.002063,0.002750,0.249985,0,0);}
.m113_c01010{transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187671,-0.002252,0.003000,0.249982,0,0);}
.mc8_c01010{transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-ms-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187844,-0.002066,0.002750,0.249985,0,0);}
.m9a_c01010{transform:matrix(0.187879,-0.002067,0.002750,0.249985,0,0);-ms-transform:matrix(0.187879,-0.002067,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187879,-0.002067,0.002750,0.249985,0,0);}
.m15_c01010{transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);-ms-transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188289,-0.002071,0.002750,0.249985,0,0);}
.m14f_c01010{transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);-ms-transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188406,-0.002261,0.003000,0.249982,0,0);}
.mf9_c01010{transform:matrix(0.188601,-0.002263,0.003000,0.249982,0,0);-ms-transform:matrix(0.188601,-0.002263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188601,-0.002263,0.003000,0.249982,0,0);}
.mdd_c01010{transform:matrix(0.189039,-0.002079,0.002750,0.249985,0,0);-ms-transform:matrix(0.189039,-0.002079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189039,-0.002079,0.002750,0.249985,0,0);}
.me7_c01010{transform:matrix(0.189131,-0.002270,0.003000,0.249982,0,0);-ms-transform:matrix(0.189131,-0.002270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189131,-0.002270,0.003000,0.249982,0,0);}
.m125_c01010{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);}
.md3_c01010{transform:matrix(0.189804,-0.002088,0.002750,0.249985,0,0);-ms-transform:matrix(0.189804,-0.002088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189804,-0.002088,0.002750,0.249985,0,0);}
.m10f_c01010{transform:matrix(0.190511,-0.002286,0.003000,0.249982,0,0);-ms-transform:matrix(0.190511,-0.002286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190511,-0.002286,0.003000,0.249982,0,0);}
.m2e_c01010{transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);}
.m42_c01010{transform:matrix(0.191133,-0.002102,0.002750,0.249985,0,0);-ms-transform:matrix(0.191133,-0.002102,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191133,-0.002102,0.002750,0.249985,0,0);}
.mc3_c01010{transform:matrix(0.191323,-0.002105,0.002750,0.249985,0,0);-ms-transform:matrix(0.191323,-0.002105,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191323,-0.002105,0.002750,0.249985,0,0);}
.m13f_c01010{transform:matrix(0.191661,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191661,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191661,-0.002300,0.003000,0.249982,0,0);}
.m13b_c01010{transform:matrix(0.191771,-0.002301,0.003000,0.249982,0,0);-ms-transform:matrix(0.191771,-0.002301,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191771,-0.002301,0.003000,0.249982,0,0);}
.m28_c01010{transform:matrix(0.191793,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191793,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191793,-0.002110,0.002750,0.249985,0,0);}
.m1e_c01010{transform:matrix(0.192058,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192058,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192058,-0.002113,0.002750,0.249985,0,0);}
.me6_c01010{transform:matrix(0.192216,-0.002307,0.003000,0.249982,0,0);-ms-transform:matrix(0.192216,-0.002307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192216,-0.002307,0.003000,0.249982,0,0);}
.m14d_c01010{transform:matrix(0.192641,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192641,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192641,-0.002312,0.003000,0.249982,0,0);}
.m9b_c01010{transform:matrix(0.192658,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192658,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192658,-0.002119,0.002750,0.249985,0,0);}
.ma1_c01010{transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);-ms-transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192728,-0.002120,0.002750,0.249985,0,0);}
.mc4_c01010{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);}
.mea_c01010{transform:matrix(0.193026,-0.002316,0.003000,0.249982,0,0);-ms-transform:matrix(0.193026,-0.002316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193026,-0.002316,0.003000,0.249982,0,0);}
.m96_c01010{transform:matrix(0.193638,-0.002130,0.002750,0.249985,0,0);-ms-transform:matrix(0.193638,-0.002130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193638,-0.002130,0.002750,0.249985,0,0);}
.m54_c01010{transform:matrix(0.193693,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193693,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193693,-0.002131,0.002750,0.249985,0,0);}
.m3c_c01010{transform:matrix(0.193718,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193718,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193718,-0.002131,0.002750,0.249985,0,0);}
.me8_c01010{transform:matrix(0.193796,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193796,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193796,-0.002326,0.003000,0.249982,0,0);}
.m53_c01010{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);}
.m4c_c01010{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);}
.m156_c01010{transform:matrix(0.194777,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194777,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194777,-0.001753,0.002250,0.249990,0,0);}
.me3_c01010{transform:matrix(0.194831,-0.002338,0.003000,0.249982,0,0);-ms-transform:matrix(0.194831,-0.002338,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194831,-0.002338,0.003000,0.249982,0,0);}
.m47_c01010{transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195043,-0.002145,0.002750,0.249985,0,0);}
.m10_c01010{transform:matrix(0.195048,-0.002146,0.002750,0.249985,0,0);-ms-transform:matrix(0.195048,-0.002146,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195048,-0.002146,0.002750,0.249985,0,0);}
.m52_c01010{transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);}
.m94_c01010{transform:matrix(0.195603,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195603,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195603,-0.002152,0.002750,0.249985,0,0);}
.m3f_c01010{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);}
.m81_c01010{transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);}
.m12e_c01010{transform:matrix(0.196061,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196061,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196061,-0.002353,0.003000,0.249982,0,0);}
.m36_c01010{transform:matrix(0.196393,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196393,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196393,-0.002160,0.002750,0.249985,0,0);}
.ma6_c01010{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);}
.m7e_c01010{transform:matrix(0.197703,-0.002175,0.002750,0.249985,0,0);-ms-transform:matrix(0.197703,-0.002175,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197703,-0.002175,0.002750,0.249985,0,0);}
.m74_c01010{transform:matrix(0.197928,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197928,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197928,-0.002177,0.002750,0.249985,0,0);}
.mcf_c01010{transform:matrix(0.197968,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.197968,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197968,-0.002178,0.002750,0.249985,0,0);}
.m71_c01010{transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198048,-0.002179,0.002750,0.249985,0,0);}
.ma2_c01010{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);}
.m45_c01010{transform:matrix(0.198883,-0.002188,0.002750,0.249985,0,0);-ms-transform:matrix(0.198883,-0.002188,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198883,-0.002188,0.002750,0.249985,0,0);}
.m111_c01010{transform:matrix(0.198921,-0.002387,0.003000,0.249982,0,0);-ms-transform:matrix(0.198921,-0.002387,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198921,-0.002387,0.003000,0.249982,0,0);}
.m12_c01010{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);}
.me4_c01010{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);}
.m148_c01010{transform:matrix(0.199216,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199216,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199216,-0.002391,0.003000,0.249982,0,0);}
.mcd_c01010{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);}
.m21_c01010{transform:matrix(0.199613,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199613,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199613,-0.002196,0.002750,0.249985,0,0);}
.m118_c01010{transform:matrix(0.199626,-0.002396,0.003000,0.249982,0,0);-ms-transform:matrix(0.199626,-0.002396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199626,-0.002396,0.003000,0.249982,0,0);}
.m2b_c01010{transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-ms-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200083,-0.002201,0.002750,0.249985,0,0);}
.m110_c01010{transform:matrix(0.200296,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200296,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200296,-0.002404,0.003000,0.249982,0,0);}
.m5c_c01010{transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);-ms-transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200858,-0.002209,0.002750,0.249985,0,0);}
.m91_c01010{transform:matrix(0.201138,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201138,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201138,-0.002213,0.002750,0.249985,0,0);}
.mdc_c01010{transform:matrix(0.201198,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201198,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201198,-0.002213,0.002750,0.249985,0,0);}
.ma7_c01010{transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201213,-0.002213,0.002750,0.249985,0,0);}
.m150_c01010{transform:matrix(0.201241,-0.002415,0.003000,0.249982,0,0);-ms-transform:matrix(0.201241,-0.002415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201241,-0.002415,0.003000,0.249982,0,0);}
.m51_c01010{transform:matrix(0.201283,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201283,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201283,-0.002214,0.002750,0.249985,0,0);}
.m143_c01010{transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201530,-0.002418,0.003000,0.249982,0,0);}
.mf1_c01010{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);}
.m5d_c01010{transform:matrix(0.201653,-0.002218,0.002750,0.249985,0,0);-ms-transform:matrix(0.201653,-0.002218,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201653,-0.002218,0.002750,0.249985,0,0);}
.m151_c01010{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);}
.m95_c01010{transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202173,-0.002224,0.002750,0.249985,0,0);}
.m2a_c01010{transform:matrix(0.202913,-0.002232,0.002750,0.249985,0,0);-ms-transform:matrix(0.202913,-0.002232,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202913,-0.002232,0.002750,0.249985,0,0);}
.m155_c01010{transform:matrix(0.203095,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203095,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203095,-0.002437,0.003000,0.249982,0,0);}
.m154_c01010{transform:matrix(0.203115,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203115,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203115,-0.002437,0.003000,0.249982,0,0);}
.m12d_c01010{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);}
.m6_c01010{transform:matrix(0.203273,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203273,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203273,-0.002236,0.002750,0.249985,0,0);}
.mf8_c01010{transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);-ms-transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203425,-0.002441,0.003000,0.249982,0,0);}
.m7f_c01010{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);}
.m115_c01010{transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);-ms-transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204065,-0.002449,0.003000,0.249982,0,0);}
.m11d_c01010{transform:matrix(0.204150,-0.002450,0.003000,0.249982,0,0);-ms-transform:matrix(0.204150,-0.002450,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204150,-0.002450,0.003000,0.249982,0,0);}
.m3e_c01010{transform:matrix(0.204198,-0.002246,0.002750,0.249985,0,0);-ms-transform:matrix(0.204198,-0.002246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204198,-0.002246,0.002750,0.249985,0,0);}
.mc2_c01010{transform:matrix(0.204638,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204638,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204638,-0.002251,0.002750,0.249985,0,0);}
.m14c_c01010{transform:matrix(0.204760,-0.002457,0.003000,0.249982,0,0);-ms-transform:matrix(0.204760,-0.002457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204760,-0.002457,0.003000,0.249982,0,0);}
.m7a_c01010{transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);-ms-transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204928,-0.002254,0.002750,0.249985,0,0);}
.mab_c01010{transform:matrix(0.205433,-0.002260,0.002750,0.249985,0,0);-ms-transform:matrix(0.205433,-0.002260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205433,-0.002260,0.002750,0.249985,0,0);}
.m44_c01010{transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);-ms-transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205463,-0.002260,0.002750,0.249985,0,0);}
.m6b_c01010{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);}
.m122_c01010{transform:matrix(0.205600,-0.002467,0.003000,0.249982,0,0);-ms-transform:matrix(0.205600,-0.002467,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205600,-0.002467,0.003000,0.249982,0,0);}
.m124_c01010{transform:matrix(0.205665,-0.002468,0.003000,0.249982,0,0);-ms-transform:matrix(0.205665,-0.002468,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205665,-0.002468,0.003000,0.249982,0,0);}
.m7_c01010{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);}
.m6a_c01010{transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206238,-0.002269,0.002750,0.249985,0,0);}
.m101_c01010{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);}
.mad_c01010{transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);}
.mb8_c01010{transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206593,-0.002273,0.002750,0.249985,0,0);}
.m6f_c01010{transform:matrix(0.206622,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206622,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206622,-0.002273,0.002750,0.249985,0,0);}
.m5_c01010{transform:matrix(0.206637,-0.002273,0.002750,0.249985,0,0);-ms-transform:matrix(0.206637,-0.002273,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206637,-0.002273,0.002750,0.249985,0,0);}
.mb7_c01010{transform:matrix(0.206892,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206892,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206892,-0.002276,0.002750,0.249985,0,0);}
.m5b_c01010{transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);-ms-transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207132,-0.002278,0.002750,0.249985,0,0);}
.ma0_c01010{transform:matrix(0.207292,-0.002280,0.002750,0.249985,0,0);-ms-transform:matrix(0.207292,-0.002280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207292,-0.002280,0.002750,0.249985,0,0);}
.mf_c01010{transform:matrix(0.207302,-0.002280,0.002750,0.249985,0,0);-ms-transform:matrix(0.207302,-0.002280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207302,-0.002280,0.002750,0.249985,0,0);}
.m105_c01010{transform:matrix(0.207320,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207320,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207320,-0.002488,0.003000,0.249982,0,0);}
.mfa_c01010{transform:matrix(0.207605,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207605,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207605,-0.002491,0.003000,0.249982,0,0);}
.mfb_c01010{transform:matrix(0.207715,-0.002493,0.003000,0.249982,0,0);-ms-transform:matrix(0.207715,-0.002493,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207715,-0.002493,0.003000,0.249982,0,0);}
.mbe_c01010{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);}
.md1_c01010{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);}
.mc1_c01010{transform:matrix(0.207997,-0.002288,0.002750,0.249985,0,0);-ms-transform:matrix(0.207997,-0.002288,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207997,-0.002288,0.002750,0.249985,0,0);}
.m134_c01010{transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);-ms-transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);}
.m158_c01010{transform:matrix(0.208527,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208527,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208527,-0.001877,0.002250,0.249990,0,0);}
.me2_c01010{transform:matrix(0.208757,-0.002296,0.002750,0.249985,0,0);-ms-transform:matrix(0.208757,-0.002296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208757,-0.002296,0.002750,0.249985,0,0);}
.m7d_c01010{transform:matrix(0.208887,-0.002298,0.002750,0.249985,0,0);-ms-transform:matrix(0.208887,-0.002298,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208887,-0.002298,0.002750,0.249985,0,0);}
.mf0_c01010{transform:matrix(0.209305,-0.002512,0.003000,0.249982,0,0);-ms-transform:matrix(0.209305,-0.002512,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209305,-0.002512,0.003000,0.249982,0,0);}
.m2f_c01010{transform:matrix(0.209392,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209392,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209392,-0.002303,0.002750,0.249985,0,0);}
.meb_c01010{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);}
.m12f_c01010{transform:matrix(0.210275,-0.002523,0.003000,0.249982,0,0);-ms-transform:matrix(0.210275,-0.002523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210275,-0.002523,0.003000,0.249982,0,0);}
.mce_c01010{transform:matrix(0.210452,-0.002315,0.002750,0.249985,0,0);-ms-transform:matrix(0.210452,-0.002315,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210452,-0.002315,0.002750,0.249985,0,0);}
.m19_c01010{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);}
.m120_c01010{transform:matrix(0.210885,-0.002531,0.003000,0.249982,0,0);-ms-transform:matrix(0.210885,-0.002531,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210885,-0.002531,0.003000,0.249982,0,0);}
.m11c_c01010{transform:matrix(0.211030,-0.002532,0.003000,0.249982,0,0);-ms-transform:matrix(0.211030,-0.002532,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211030,-0.002532,0.003000,0.249982,0,0);}
.m10b_c01010{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);}
.m139_c01010{transform:matrix(0.212015,-0.002544,0.003000,0.249982,0,0);-ms-transform:matrix(0.212015,-0.002544,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212015,-0.002544,0.003000,0.249982,0,0);}
.m109_c01010{transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);-ms-transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212075,-0.002545,0.003000,0.249982,0,0);}
.m72_c01010{transform:matrix(0.212332,-0.002336,0.002750,0.249985,0,0);-ms-transform:matrix(0.212332,-0.002336,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212332,-0.002336,0.002750,0.249985,0,0);}
.m92_c01010{transform:matrix(0.212417,-0.002337,0.002750,0.249985,0,0);-ms-transform:matrix(0.212417,-0.002337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212417,-0.002337,0.002750,0.249985,0,0);}
.m107_c01010{transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);-ms-transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213550,-0.002563,0.003000,0.249982,0,0);}
.m31_c01010{transform:matrix(0.213582,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213582,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213582,-0.002349,0.002750,0.249985,0,0);}
.mbd_c01010{transform:matrix(0.214427,-0.002359,0.002750,0.249985,0,0);-ms-transform:matrix(0.214427,-0.002359,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214427,-0.002359,0.002750,0.249985,0,0);}
.mf4_c01010{transform:matrix(0.215015,-0.002580,0.003000,0.249982,0,0);-ms-transform:matrix(0.215015,-0.002580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215015,-0.002580,0.003000,0.249982,0,0);}
.m12c_c01010{transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);-ms-transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215709,-0.002589,0.003000,0.249982,0,0);}
.m93_c01010{transform:matrix(0.215937,-0.002375,0.002750,0.249985,0,0);-ms-transform:matrix(0.215937,-0.002375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215937,-0.002375,0.002750,0.249985,0,0);}
.m2c_c01010{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);}
.m108_c01010{transform:matrix(0.216104,-0.002593,0.003000,0.249982,0,0);-ms-transform:matrix(0.216104,-0.002593,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216104,-0.002593,0.003000,0.249982,0,0);}
.m29_c01010{transform:matrix(0.217127,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217127,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217127,-0.002388,0.002750,0.249985,0,0);}
.mdb_c01010{transform:matrix(0.218052,-0.002399,0.002750,0.249985,0,0);-ms-transform:matrix(0.218052,-0.002399,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218052,-0.002399,0.002750,0.249985,0,0);}
.m129_c01010{transform:matrix(0.218079,-0.002617,0.003000,0.249982,0,0);-ms-transform:matrix(0.218079,-0.002617,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218079,-0.002617,0.003000,0.249982,0,0);}
.me5_c01010{transform:matrix(0.218579,-0.002623,0.003000,0.249982,0,0);-ms-transform:matrix(0.218579,-0.002623,0.003000,0.249982,0,0);-webkit-transform:matrix(0.218579,-0.002623,0.003000,0.249982,0,0);}
.m136_c01010{transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);-ms-transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219139,-0.002630,0.003000,0.249982,0,0);}
.m11f_c01010{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);}
.m75_c01010{transform:matrix(0.219287,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219287,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219287,-0.002412,0.002750,0.249985,0,0);}
.m6c_c01010{transform:matrix(0.219677,-0.002416,0.002750,0.249985,0,0);-ms-transform:matrix(0.219677,-0.002416,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219677,-0.002416,0.002750,0.249985,0,0);}
.m11_c01010{transform:matrix(0.219752,-0.002417,0.002750,0.249985,0,0);-ms-transform:matrix(0.219752,-0.002417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219752,-0.002417,0.002750,0.249985,0,0);}
.m13a_c01010{transform:matrix(0.219939,-0.002639,0.003000,0.249982,0,0);-ms-transform:matrix(0.219939,-0.002639,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219939,-0.002639,0.003000,0.249982,0,0);}
.m57_c01010{transform:matrix(0.220382,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220382,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220382,-0.002424,0.002750,0.249985,0,0);}
.m14_c01010{transform:matrix(0.220467,-0.002425,0.002750,0.249985,0,0);-ms-transform:matrix(0.220467,-0.002425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220467,-0.002425,0.002750,0.249985,0,0);}
.m59_c01010{transform:matrix(0.220997,-0.002431,0.002750,0.249985,0,0);-ms-transform:matrix(0.220997,-0.002431,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220997,-0.002431,0.002750,0.249985,0,0);}
.mcc_c01010{transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);}
.mb0_c01010{transform:matrix(0.221227,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221227,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221227,-0.002433,0.002750,0.249985,0,0);}
.m11a_c01010{transform:matrix(0.222484,-0.002670,0.003000,0.249982,0,0);-ms-transform:matrix(0.222484,-0.002670,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222484,-0.002670,0.003000,0.249982,0,0);}
.mb6_c01010{transform:matrix(0.223042,-0.002453,0.002750,0.249985,0,0);-ms-transform:matrix(0.223042,-0.002453,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223042,-0.002453,0.002750,0.249985,0,0);}
.m13d_c01010{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);}
.mc0_c01010{transform:matrix(0.223911,-0.002463,0.002750,0.249985,0,0);-ms-transform:matrix(0.223911,-0.002463,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223911,-0.002463,0.002750,0.249985,0,0);}
.mae_c01010{transform:matrix(0.224211,-0.002466,0.002750,0.249985,0,0);-ms-transform:matrix(0.224211,-0.002466,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224211,-0.002466,0.002750,0.249985,0,0);}
.mfe_c01010{transform:matrix(0.224574,-0.002695,0.003000,0.249982,0,0);-ms-transform:matrix(0.224574,-0.002695,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224574,-0.002695,0.003000,0.249982,0,0);}
.m35_c01010{transform:matrix(0.225311,-0.002478,0.002750,0.249985,0,0);-ms-transform:matrix(0.225311,-0.002478,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225311,-0.002478,0.002750,0.249985,0,0);}
.m7b_c01010{transform:matrix(0.225541,-0.002481,0.002750,0.249985,0,0);-ms-transform:matrix(0.225541,-0.002481,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225541,-0.002481,0.002750,0.249985,0,0);}
.m58_c01010{transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);-ms-transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225631,-0.002482,0.002750,0.249985,0,0);}
.m5f_c01010{transform:matrix(0.225771,-0.002483,0.002750,0.249985,0,0);-ms-transform:matrix(0.225771,-0.002483,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225771,-0.002483,0.002750,0.249985,0,0);}
.m60_c01010{transform:matrix(0.225996,-0.002486,0.002750,0.249985,0,0);-ms-transform:matrix(0.225996,-0.002486,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225996,-0.002486,0.002750,0.249985,0,0);}
.m39_c01010{transform:matrix(0.226291,-0.002489,0.002750,0.249985,0,0);-ms-transform:matrix(0.226291,-0.002489,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226291,-0.002489,0.002750,0.249985,0,0);}
.md5_c01010{transform:matrix(0.226516,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226516,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226516,-0.002492,0.002750,0.249985,0,0);}
.m38_c01010{transform:matrix(0.226921,-0.002496,0.002750,0.249985,0,0);-ms-transform:matrix(0.226921,-0.002496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226921,-0.002496,0.002750,0.249985,0,0);}
.m137_c01010{transform:matrix(0.227559,-0.002731,0.003000,0.249982,0,0);-ms-transform:matrix(0.227559,-0.002731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227559,-0.002731,0.003000,0.249982,0,0);}
.m119_c01010{transform:matrix(0.227594,-0.002731,0.003000,0.249982,0,0);-ms-transform:matrix(0.227594,-0.002731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227594,-0.002731,0.003000,0.249982,0,0);}
.mba_c01010{transform:matrix(0.229806,-0.002528,0.002750,0.249985,0,0);-ms-transform:matrix(0.229806,-0.002528,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229806,-0.002528,0.002750,0.249985,0,0);}
.med_c01010{transform:matrix(0.230063,-0.002761,0.003000,0.249982,0,0);-ms-transform:matrix(0.230063,-0.002761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230063,-0.002761,0.003000,0.249982,0,0);}
.m128_c01010{transform:matrix(0.233283,-0.002799,0.003000,0.249982,0,0);-ms-transform:matrix(0.233283,-0.002799,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233283,-0.002799,0.003000,0.249982,0,0);}
.md9_c01010{transform:matrix(0.233921,-0.002573,0.002750,0.249985,0,0);-ms-transform:matrix(0.233921,-0.002573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233921,-0.002573,0.002750,0.249985,0,0);}
.m12b_c01010{transform:matrix(0.234403,-0.002813,0.003000,0.249982,0,0);-ms-transform:matrix(0.234403,-0.002813,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234403,-0.002813,0.003000,0.249982,0,0);}
.m32_c01010{transform:matrix(0.235246,-0.002588,0.002750,0.249985,0,0);-ms-transform:matrix(0.235246,-0.002588,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235246,-0.002588,0.002750,0.249985,0,0);}
.m149_c01010{transform:matrix(0.236338,-0.002836,0.003000,0.249982,0,0);-ms-transform:matrix(0.236338,-0.002836,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236338,-0.002836,0.003000,0.249982,0,0);}
.m127_c01010{transform:matrix(0.236948,-0.002843,0.003000,0.249982,0,0);-ms-transform:matrix(0.236948,-0.002843,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236948,-0.002843,0.003000,0.249982,0,0);}
.m131_c01010{transform:matrix(0.237473,-0.002850,0.003000,0.249982,0,0);-ms-transform:matrix(0.237473,-0.002850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237473,-0.002850,0.003000,0.249982,0,0);}
.mbf_c01010{transform:matrix(0.237736,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237736,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237736,-0.002615,0.002750,0.249985,0,0);}
.mec_c01010{transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);-ms-transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238043,-0.002857,0.003000,0.249982,0,0);}
.m135_c01010{transform:matrix(0.238973,-0.002868,0.003000,0.249982,0,0);-ms-transform:matrix(0.238973,-0.002868,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238973,-0.002868,0.003000,0.249982,0,0);}
.m123_c01010{transform:matrix(0.240238,-0.002883,0.003000,0.249982,0,0);-ms-transform:matrix(0.240238,-0.002883,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240238,-0.002883,0.003000,0.249982,0,0);}
.m3d_c01010{transform:matrix(0.240780,-0.002649,0.002750,0.249985,0,0);-ms-transform:matrix(0.240780,-0.002649,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240780,-0.002649,0.002750,0.249985,0,0);}
.m11b_c01010{transform:matrix(0.241268,-0.002895,0.003000,0.249982,0,0);-ms-transform:matrix(0.241268,-0.002895,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241268,-0.002895,0.003000,0.249982,0,0);}
.m30_c01010{transform:matrix(0.241390,-0.002655,0.002750,0.249985,0,0);-ms-transform:matrix(0.241390,-0.002655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241390,-0.002655,0.002750,0.249985,0,0);}
.m27_c01010{transform:matrix(0.242010,-0.002662,0.002750,0.249985,0,0);-ms-transform:matrix(0.242010,-0.002662,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242010,-0.002662,0.002750,0.249985,0,0);}
.m90_c01010{transform:matrix(0.242455,-0.002667,0.002750,0.249985,0,0);-ms-transform:matrix(0.242455,-0.002667,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242455,-0.002667,0.002750,0.249985,0,0);}
.m55_c01010{transform:matrix(0.244715,-0.002692,0.002750,0.249985,0,0);-ms-transform:matrix(0.244715,-0.002692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244715,-0.002692,0.002750,0.249985,0,0);}
.m46_c01010{transform:matrix(0.245315,-0.002698,0.002750,0.249985,0,0);-ms-transform:matrix(0.245315,-0.002698,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245315,-0.002698,0.002750,0.249985,0,0);}
.mbb_c01010{transform:matrix(0.245450,-0.002700,0.002750,0.249985,0,0);-ms-transform:matrix(0.245450,-0.002700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245450,-0.002700,0.002750,0.249985,0,0);}
.m116_c01010{transform:matrix(0.247267,-0.002967,0.003000,0.249982,0,0);-ms-transform:matrix(0.247267,-0.002967,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247267,-0.002967,0.003000,0.249982,0,0);}
.mbc_c01010{transform:matrix(0.247540,-0.002723,0.002750,0.249985,0,0);-ms-transform:matrix(0.247540,-0.002723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247540,-0.002723,0.002750,0.249985,0,0);}
.m10a_c01010{transform:matrix(0.248497,-0.002982,0.003000,0.249982,0,0);-ms-transform:matrix(0.248497,-0.002982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248497,-0.002982,0.003000,0.249982,0,0);}
.m102_c01010{transform:matrix(0.248532,-0.002982,0.003000,0.249982,0,0);-ms-transform:matrix(0.248532,-0.002982,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248532,-0.002982,0.003000,0.249982,0,0);}
.m138_c01010{transform:matrix(0.248797,-0.002986,0.003000,0.249982,0,0);-ms-transform:matrix(0.248797,-0.002986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248797,-0.002986,0.003000,0.249982,0,0);}
.mc7_c01010{transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);-ms-transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);}
.m10c_c01010{transform:matrix(0.252362,-0.003028,0.003000,0.249982,0,0);-ms-transform:matrix(0.252362,-0.003028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252362,-0.003028,0.003000,0.249982,0,0);}
.m132_c01010{transform:matrix(0.253202,-0.003038,0.003000,0.249982,0,0);-ms-transform:matrix(0.253202,-0.003038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253202,-0.003038,0.003000,0.249982,0,0);}
.m1_c01010{transform:matrix(0.257259,-0.002830,0.002750,0.249985,0,0);-ms-transform:matrix(0.257259,-0.002830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257259,-0.002830,0.002750,0.249985,0,0);}
.m3b_c01010{transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);-ms-transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258014,-0.002838,0.002750,0.249985,0,0);}
.m9_c01010{transform:matrix(0.258259,-0.002841,0.002750,0.249985,0,0);-ms-transform:matrix(0.258259,-0.002841,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258259,-0.002841,0.002750,0.249985,0,0);}
.m133_c01010{transform:matrix(0.258686,-0.003104,0.003000,0.249982,0,0);-ms-transform:matrix(0.258686,-0.003104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258686,-0.003104,0.003000,0.249982,0,0);}
.m10d_c01010{transform:matrix(0.260911,-0.003131,0.003000,0.249982,0,0);-ms-transform:matrix(0.260911,-0.003131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260911,-0.003131,0.003000,0.249982,0,0);}
.m121_c01010{transform:matrix(0.261076,-0.003133,0.003000,0.249982,0,0);-ms-transform:matrix(0.261076,-0.003133,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261076,-0.003133,0.003000,0.249982,0,0);}
.m140_c01010{transform:matrix(0.266521,-0.003198,0.003000,0.249982,0,0);-ms-transform:matrix(0.266521,-0.003198,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266521,-0.003198,0.003000,0.249982,0,0);}
.me9_c01010{transform:matrix(0.267251,-0.003207,0.003000,0.249982,0,0);-ms-transform:matrix(0.267251,-0.003207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267251,-0.003207,0.003000,0.249982,0,0);}
.mda_c01010{transform:matrix(0.268404,-0.002952,0.002750,0.249985,0,0);-ms-transform:matrix(0.268404,-0.002952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268404,-0.002952,0.002750,0.249985,0,0);}
.mb5_c01010{transform:matrix(0.269609,-0.002966,0.002750,0.249985,0,0);-ms-transform:matrix(0.269609,-0.002966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269609,-0.002966,0.002750,0.249985,0,0);}
.m5a_c01010{transform:matrix(0.270719,-0.002978,0.002750,0.249985,0,0);-ms-transform:matrix(0.270719,-0.002978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270719,-0.002978,0.002750,0.249985,0,0);}
.m8e_c01010{transform:matrix(0.273573,-0.003009,0.002750,0.249985,0,0);-ms-transform:matrix(0.273573,-0.003009,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273573,-0.003009,0.002750,0.249985,0,0);}
.m8f_c01010{transform:matrix(0.277623,-0.003054,0.002750,0.249985,0,0);-ms-transform:matrix(0.277623,-0.003054,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277623,-0.003054,0.002750,0.249985,0,0);}
.mb4_c01010{transform:matrix(0.280503,-0.003086,0.002750,0.249985,0,0);-ms-transform:matrix(0.280503,-0.003086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280503,-0.003086,0.002750,0.249985,0,0);}
.m33_c01010{transform:matrix(0.281718,-0.003099,0.002750,0.249985,0,0);-ms-transform:matrix(0.281718,-0.003099,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281718,-0.003099,0.002750,0.249985,0,0);}
.mb1_c01010{transform:matrix(0.283453,-0.003118,0.002750,0.249985,0,0);-ms-transform:matrix(0.283453,-0.003118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283453,-0.003118,0.002750,0.249985,0,0);}
.maf_c01010{transform:matrix(0.286453,-0.003151,0.002750,0.249985,0,0);-ms-transform:matrix(0.286453,-0.003151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286453,-0.003151,0.002750,0.249985,0,0);}
.md6_c01010{transform:matrix(0.303732,-0.003341,0.002750,0.249985,0,0);-ms-transform:matrix(0.303732,-0.003341,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303732,-0.003341,0.002750,0.249985,0,0);}
.m15a_c01010{transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308620,0.000000,0.000000,0.250000,0,0);}
.md8_c01010{transform:matrix(0.309191,-0.003401,0.002750,0.249985,0,0);-ms-transform:matrix(0.309191,-0.003401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.309191,-0.003401,0.002750,0.249985,0,0);}
.m13c_c01010{transform:matrix(0.313422,-0.003761,0.003000,0.249982,0,0);-ms-transform:matrix(0.313422,-0.003761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.313422,-0.003761,0.003000,0.249982,0,0);}
.m159_c01010{transform:matrix(0.350121,-0.003151,0.002250,0.249990,0,0);-ms-transform:matrix(0.350121,-0.003151,0.002250,0.249990,0,0);-webkit-transform:matrix(0.350121,-0.003151,0.002250,0.249990,0,0);}
.mb3_c01010{transform:matrix(0.354809,-0.003903,0.002750,0.249985,0,0);-ms-transform:matrix(0.354809,-0.003903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.354809,-0.003903,0.002750,0.249985,0,0);}
.m34_c01010{transform:matrix(0.361493,-0.003976,0.002750,0.249985,0,0);-ms-transform:matrix(0.361493,-0.003976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.361493,-0.003976,0.002750,0.249985,0,0);}
.m10e_c01010{transform:matrix(0.376683,-0.004520,0.003000,0.249982,0,0);-ms-transform:matrix(0.376683,-0.004520,0.003000,0.249982,0,0);-webkit-transform:matrix(0.376683,-0.004520,0.003000,0.249982,0,0);}
.mb2_c01010{transform:matrix(0.382607,-0.004209,0.002750,0.249985,0,0);-ms-transform:matrix(0.382607,-0.004209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.382607,-0.004209,0.002750,0.249985,0,0);}
.m126_c01010{transform:matrix(0.404296,-0.004852,0.003000,0.249982,0,0);-ms-transform:matrix(0.404296,-0.004852,0.003000,0.249982,0,0);-webkit-transform:matrix(0.404296,-0.004852,0.003000,0.249982,0,0);}
.mf7_c01010{transform:matrix(0.415020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415020,0.000000,0.000000,0.250000,0,0);}
.me0_c01010{transform:matrix(0.460467,-0.005065,0.002750,0.249985,0,0);-ms-transform:matrix(0.460467,-0.005065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.460467,-0.005065,0.002750,0.249985,0,0);}
.m2_c01010{transform:matrix(0.466397,-0.005130,0.002750,0.249985,0,0);-ms-transform:matrix(0.466397,-0.005130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.466397,-0.005130,0.002750,0.249985,0,0);}
.m130_c01010{transform:matrix(0.595357,-0.007144,0.003000,0.249982,0,0);-ms-transform:matrix(0.595357,-0.007144,0.003000,0.249982,0,0);-webkit-transform:matrix(0.595357,-0.007144,0.003000,0.249982,0,0);}
.m3a_c01010{transform:matrix(0.654155,-0.007196,0.002750,0.249985,0,0);-ms-transform:matrix(0.654155,-0.007196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.654155,-0.007196,0.002750,0.249985,0,0);}
.m0_c01010{transform:matrix(1.764243,-0.019407,0.002750,0.249985,0,0);-ms-transform:matrix(1.764243,-0.019407,0.002750,0.249985,0,0);-webkit-transform:matrix(1.764243,-0.019407,0.002750,0.249985,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls0_c01010{letter-spacing:0.000000px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01010{word-spacing:0.000000px;}
.fc0_c01010{color:transparent;}
.fsd_c01010{font-size:24.150000px;}
.fs14_c01010{font-size:39.900000px;}
.fsf_c01010{font-size:51.453704px;}
.fs10_c01010{font-size:52.503780px;}
.fs11_c01010{font-size:54.603931px;}
.fse_c01010{font-size:55.654007px;}
.fs9_c01010{font-size:57.753494px;}
.fs12_c01010{font-size:58.804233px;}
.fsa_c01010{font-size:59.853621px;}
.fs3_c01010{font-size:60.903684px;}
.fs7_c01010{font-size:61.953748px;}
.fs5_c01010{font-size:65.103938px;}
.fs4_c01010{font-size:69.304193px;}
.fs1_c01010{font-size:70.354256px;}
.fs8_c01010{font-size:71.404320px;}
.fs2_c01010{font-size:72.454383px;}
.fs6_c01010{font-size:73.504447px;}
.fs13_c01010{font-size:74.553019px;}
.fsb_c01010{font-size:75.605443px;}
.fsc_c01010{font-size:76.655519px;}
.fs0_c01010{font-size:147.008893px;}
.y0_c01010{bottom:0.000000px;}
.y15e_c01010{bottom:17.010000px;}
.y15a_c01010{bottom:123.390000px;}
.y15b_c01010{bottom:123.723248px;}
.y15c_c01010{bottom:124.935899px;}
.y15d_c01010{bottom:126.714807px;}
.y14c_c01010{bottom:143.627052px;}
.y14d_c01010{bottom:144.010392px;}
.y14e_c01010{bottom:144.290610px;}
.y14f_c01010{bottom:144.730326px;}
.y150_c01010{bottom:145.519434px;}
.y151_c01010{bottom:146.126238px;}
.y152_c01010{bottom:146.699874px;}
.y153_c01010{bottom:146.841558px;}
.y154_c01010{bottom:147.219816px;}
.y155_c01010{bottom:147.740376px;}
.y156_c01010{bottom:148.371072px;}
.y157_c01010{bottom:148.570770px;}
.y158_c01010{bottom:149.005710px;}
.y159_c01010{bottom:149.399058px;}
.y140_c01010{bottom:160.101108px;}
.y141_c01010{bottom:161.003646px;}
.y142_c01010{bottom:162.217854px;}
.y143_c01010{bottom:162.558162px;}
.y144_c01010{bottom:163.144908px;}
.y145_c01010{bottom:163.907586px;}
.y146_c01010{bottom:164.388768px;}
.y147_c01010{bottom:164.891514px;}
.y148_c01010{bottom:165.231336px;}
.y149_c01010{bottom:165.652008px;}
.y14a_c01010{bottom:166.041066px;}
.y14b_c01010{bottom:166.693152px;}
.y132_c01010{bottom:179.271516px;}
.y133_c01010{bottom:179.673672px;}
.y134_c01010{bottom:180.192234px;}
.y135_c01010{bottom:180.483618px;}
.y136_c01010{bottom:181.089642px;}
.y137_c01010{bottom:181.403580px;}
.y138_c01010{bottom:182.110008px;}
.y139_c01010{bottom:182.249904px;}
.y13a_c01010{bottom:182.914212px;}
.y13b_c01010{bottom:183.286632px;}
.y13c_c01010{bottom:183.792198px;}
.y13d_c01010{bottom:184.142136px;}
.y13e_c01010{bottom:184.375434px;}
.y13f_c01010{bottom:184.890126px;}
.y121_c01010{bottom:196.285104px;}
.y122_c01010{bottom:196.572006px;}
.y123_c01010{bottom:197.056230px;}
.y124_c01010{bottom:197.667966px;}
.y125_c01010{bottom:198.287592px;}
.y126_c01010{bottom:198.484374px;}
.y127_c01010{bottom:198.984054px;}
.y128_c01010{bottom:199.139970px;}
.y129_c01010{bottom:199.604040px;}
.y12a_c01010{bottom:200.254626px;}
.y12b_c01010{bottom:200.938818px;}
.y12c_c01010{bottom:201.195300px;}
.y12d_c01010{bottom:201.592284px;}
.y12e_c01010{bottom:201.842196px;}
.y12f_c01010{bottom:202.287390px;}
.y130_c01010{bottom:202.507062px;}
.y131_c01010{bottom:202.699014px;}
.y112_c01010{bottom:213.838650px;}
.y113_c01010{bottom:214.245702px;}
.y114_c01010{bottom:214.578894px;}
.y115_c01010{bottom:215.055714px;}
.y116_c01010{bottom:215.413158px;}
.y117_c01010{bottom:215.752830px;}
.y118_c01010{bottom:215.994588px;}
.y119_c01010{bottom:216.707628px;}
.y11a_c01010{bottom:216.906318px;}
.y11b_c01010{bottom:217.139184px;}
.y11c_c01010{bottom:217.540224px;}
.y11d_c01010{bottom:218.365110px;}
.y11e_c01010{bottom:219.260616px;}
.y11f_c01010{bottom:219.622350px;}
.y120_c01010{bottom:219.923472px;}
.y106_c01010{bottom:231.389886px;}
.y107_c01010{bottom:231.969918px;}
.y108_c01010{bottom:232.365126px;}
.y109_c01010{bottom:233.009922px;}
.y10a_c01010{bottom:233.424804px;}
.y10b_c01010{bottom:234.089004px;}
.y10c_c01010{bottom:234.445422px;}
.y10d_c01010{bottom:235.284636px;}
.y10e_c01010{bottom:235.961868px;}
.y10f_c01010{bottom:236.506188px;}
.y110_c01010{bottom:236.700930px;}
.y111_c01010{bottom:237.076896px;}
.yfb_c01010{bottom:249.211500px;}
.yfc_c01010{bottom:249.892116px;}
.yfd_c01010{bottom:250.445616px;}
.yfe_c01010{bottom:250.776618px;}
.yff_c01010{bottom:251.778210px;}
.y100_c01010{bottom:252.273966px;}
.y101_c01010{bottom:252.873168px;}
.y102_c01010{bottom:253.458438px;}
.y103_c01010{bottom:253.660470px;}
.y104_c01010{bottom:254.169384px;}
.y105_c01010{bottom:254.784948px;}
.yfa_c01010{bottom:281.880000px;}
.yf0_c01010{bottom:303.750414px;}
.yf1_c01010{bottom:304.161588px;}
.yf2_c01010{bottom:304.563708px;}
.yf3_c01010{bottom:305.684442px;}
.yf4_c01010{bottom:306.051228px;}
.yf5_c01010{bottom:306.540036px;}
.yf6_c01010{bottom:306.948294px;}
.yf7_c01010{bottom:307.735794px;}
.yf8_c01010{bottom:308.125350px;}
.yf9_c01010{bottom:308.970936px;}
.ye6_c01010{bottom:326.431500px;}
.ye7_c01010{bottom:326.735772px;}
.ye8_c01010{bottom:327.449220px;}
.ye9_c01010{bottom:327.877188px;}
.yea_c01010{bottom:328.816446px;}
.yeb_c01010{bottom:329.279766px;}
.yec_c01010{bottom:329.578836px;}
.yed_c01010{bottom:329.847576px;}
.yee_c01010{bottom:331.104264px;}
.yef_c01010{bottom:331.762092px;}
.ydb_c01010{bottom:354.496563px;}
.ydc_c01010{bottom:355.221225px;}
.ydd_c01010{bottom:355.722300px;}
.yde_c01010{bottom:356.383017px;}
.ydf_c01010{bottom:357.447331px;}
.ye0_c01010{bottom:357.938181px;}
.ye1_c01010{bottom:359.007889px;}
.ye2_c01010{bottom:359.779608px;}
.ye3_c01010{bottom:360.396534px;}
.ye4_c01010{bottom:362.066823px;}
.ye5_c01010{bottom:362.517939px;}
.yd0_c01010{bottom:378.525457px;}
.yd1_c01010{bottom:379.196677px;}
.yd2_c01010{bottom:379.855720px;}
.yd3_c01010{bottom:380.244774px;}
.yd4_c01010{bottom:380.708061px;}
.yd5_c01010{bottom:380.901721px;}
.yd6_c01010{bottom:381.540271px;}
.yd7_c01010{bottom:382.127770px;}
.yd8_c01010{bottom:382.419474px;}
.yd9_c01010{bottom:383.310655px;}
.yda_c01010{bottom:383.453083px;}
.yc4_c01010{bottom:401.205925px;}
.yc5_c01010{bottom:401.521306px;}
.yc6_c01010{bottom:401.966361px;}
.yc7_c01010{bottom:402.252157px;}
.yc8_c01010{bottom:402.970914px;}
.yc9_c01010{bottom:403.247173px;}
.yca_c01010{bottom:403.971870px;}
.ycb_c01010{bottom:404.417337px;}
.ycc_c01010{bottom:404.868744px;}
.ycd_c01010{bottom:405.109462px;}
.yce_c01010{bottom:405.545953px;}
.ycf_c01010{bottom:406.048114px;}
.yba_c01010{bottom:423.886554px;}
.ybb_c01010{bottom:424.303128px;}
.ybc_c01010{bottom:424.505038px;}
.ybd_c01010{bottom:425.241289px;}
.ybe_c01010{bottom:425.701468px;}
.ybf_c01010{bottom:426.074419px;}
.yc0_c01010{bottom:426.502723px;}
.yc1_c01010{bottom:427.196836px;}
.yc2_c01010{bottom:428.589271px;}
.yc3_c01010{bottom:429.078670px;}
.yaf_c01010{bottom:446.837947px;}
.yb0_c01010{bottom:447.323005px;}
.yb1_c01010{bottom:448.438531px;}
.yb2_c01010{bottom:448.954506px;}
.yb3_c01010{bottom:449.297967px;}
.yb4_c01010{bottom:449.968951px;}
.yb5_c01010{bottom:450.839226px;}
.yb6_c01010{bottom:451.007269px;}
.yb7_c01010{bottom:451.305972px;}
.yb8_c01010{bottom:452.312862px;}
.yb9_c01010{bottom:452.836276px;}
.ya5_c01010{bottom:469.247217px;}
.ya6_c01010{bottom:469.865847px;}
.ya7_c01010{bottom:470.217579px;}
.ya8_c01010{bottom:470.790186px;}
.ya9_c01010{bottom:471.089988px;}
.yaa_c01010{bottom:471.896820px;}
.yab_c01010{bottom:472.307826px;}
.yac_c01010{bottom:472.693486px;}
.yad_c01010{bottom:473.055631px;}
.yae_c01010{bottom:473.851786px;}
.y9a_c01010{bottom:492.738078px;}
.y9b_c01010{bottom:493.114510px;}
.y9c_c01010{bottom:493.649542px;}
.y9d_c01010{bottom:494.378509px;}
.y9e_c01010{bottom:494.883307px;}
.y9f_c01010{bottom:495.123783px;}
.ya0_c01010{bottom:495.553506px;}
.ya1_c01010{bottom:495.963441px;}
.ya2_c01010{bottom:496.229199px;}
.ya3_c01010{bottom:496.468204px;}
.ya4_c01010{bottom:496.835179px;}
.y90_c01010{bottom:515.419359px;}
.y91_c01010{bottom:516.075118px;}
.y92_c01010{bottom:516.312577px;}
.y93_c01010{bottom:516.585745px;}
.y94_c01010{bottom:517.389706px;}
.y95_c01010{bottom:517.800118px;}
.y96_c01010{bottom:518.076603px;}
.y97_c01010{bottom:518.729359px;}
.y98_c01010{bottom:519.515085px;}
.y99_c01010{bottom:519.769309px;}
.y82_c01010{bottom:538.100572px;}
.y83_c01010{bottom:538.320963px;}
.y84_c01010{bottom:538.641415px;}
.y85_c01010{bottom:538.841158px;}
.y86_c01010{bottom:539.210511px;}
.y87_c01010{bottom:539.457984px;}
.y88_c01010{bottom:539.655120px;}
.y89_c01010{bottom:539.985557px;}
.y8a_c01010{bottom:540.554404px;}
.y8b_c01010{bottom:540.929400px;}
.y8c_c01010{bottom:541.179777px;}
.y8d_c01010{bottom:541.366516px;}
.y8e_c01010{bottom:541.701409px;}
.y8f_c01010{bottom:542.217000px;}
.y78_c01010{bottom:561.322054px;}
.y79_c01010{bottom:561.728110px;}
.y7a_c01010{bottom:561.983027px;}
.y7b_c01010{bottom:562.206816px;}
.y7c_c01010{bottom:562.581383px;}
.y7d_c01010{bottom:563.019110px;}
.y7e_c01010{bottom:563.144753px;}
.y7f_c01010{bottom:563.805592px;}
.y80_c01010{bottom:564.619141px;}
.y81_c01010{bottom:565.358505px;}
.y6c_c01010{bottom:584.003040px;}
.y6d_c01010{bottom:584.425831px;}
.y6e_c01010{bottom:585.237828px;}
.y6f_c01010{bottom:585.626012px;}
.y70_c01010{bottom:585.791988px;}
.y71_c01010{bottom:586.155993px;}
.y72_c01010{bottom:586.406865px;}
.y73_c01010{bottom:586.688484px;}
.y74_c01010{bottom:587.123982px;}
.y75_c01010{bottom:587.393635px;}
.y76_c01010{bottom:587.864865px;}
.y77_c01010{bottom:588.044030px;}
.y60_c01010{bottom:606.951340px;}
.y61_c01010{bottom:607.405210px;}
.y62_c01010{bottom:607.653942px;}
.y63_c01010{bottom:608.188362px;}
.y64_c01010{bottom:608.525649px;}
.y65_c01010{bottom:608.854089px;}
.y66_c01010{bottom:609.083475px;}
.y67_c01010{bottom:609.403035px;}
.y68_c01010{bottom:609.662232px;}
.y69_c01010{bottom:610.130892px;}
.y6a_c01010{bottom:610.265565px;}
.y6b_c01010{bottom:610.644298px;}
.y57_c01010{bottom:628.283791px;}
.y58_c01010{bottom:628.660669px;}
.y59_c01010{bottom:629.609818px;}
.y5a_c01010{bottom:630.161251px;}
.y5b_c01010{bottom:630.474924px;}
.y5c_c01010{bottom:631.855545px;}
.y5d_c01010{bottom:632.415921px;}
.y5e_c01010{bottom:633.358026px;}
.y5f_c01010{bottom:633.876874px;}
.y51_c01010{bottom:651.505594px;}
.y52_c01010{bottom:651.802545px;}
.y53_c01010{bottom:652.034650px;}
.y54_c01010{bottom:654.190111px;}
.y55_c01010{bottom:654.591622px;}
.y56_c01010{bottom:655.598584px;}
.y46_c01010{bottom:674.185444px;}
.y47_c01010{bottom:674.491104px;}
.y48_c01010{bottom:675.038481px;}
.y49_c01010{bottom:675.235840px;}
.y4a_c01010{bottom:675.673513px;}
.y4b_c01010{bottom:675.840691px;}
.y4c_c01010{bottom:676.118646px;}
.y4d_c01010{bottom:676.931632px;}
.y4e_c01010{bottom:677.417737px;}
.y4f_c01010{bottom:677.858529px;}
.y50_c01010{bottom:678.244750px;}
.y3b_c01010{bottom:696.597922px;}
.y3c_c01010{bottom:697.078312px;}
.y3d_c01010{bottom:697.336533px;}
.y3e_c01010{bottom:697.811991px;}
.y3f_c01010{bottom:698.437915px;}
.y40_c01010{bottom:698.748585px;}
.y41_c01010{bottom:699.525934px;}
.y42_c01010{bottom:700.501267px;}
.y43_c01010{bottom:700.896327px;}
.y44_c01010{bottom:701.673544px;}
.y45_c01010{bottom:702.189208px;}
.y31_c01010{bottom:719.276821px;}
.y32_c01010{bottom:719.859874px;}
.y33_c01010{bottom:720.404224px;}
.y34_c01010{bottom:721.132158px;}
.y35_c01010{bottom:722.017180px;}
.y36_c01010{bottom:722.209969px;}
.y37_c01010{bottom:722.880723px;}
.y38_c01010{bottom:723.239212px;}
.y39_c01010{bottom:723.523332px;}
.y3a_c01010{bottom:724.667118px;}
.y26_c01010{bottom:742.767168px;}
.y27_c01010{bottom:743.147311px;}
.y28_c01010{bottom:743.451010px;}
.y29_c01010{bottom:744.828942px;}
.y2a_c01010{bottom:745.476369px;}
.y2b_c01010{bottom:745.755136px;}
.y2c_c01010{bottom:746.043903px;}
.y2d_c01010{bottom:746.795263px;}
.y2e_c01010{bottom:746.991333px;}
.y2f_c01010{bottom:747.424375px;}
.y30_c01010{bottom:747.757543px;}
.y1a_c01010{bottom:765.719094px;}
.y1b_c01010{bottom:766.104715px;}
.y1c_c01010{bottom:766.675384px;}
.y1d_c01010{bottom:767.129893px;}
.y1e_c01010{bottom:767.592636px;}
.y1f_c01010{bottom:767.866453px;}
.y20_c01010{bottom:768.213927px;}
.y21_c01010{bottom:768.567406px;}
.y22_c01010{bottom:768.950058px;}
.y23_c01010{bottom:769.604068px;}
.y24_c01010{bottom:770.420802px;}
.y25_c01010{bottom:770.732701px;}
.yf_c01010{bottom:788.130231px;}
.y10_c01010{bottom:788.575764px;}
.y11_c01010{bottom:788.840176px;}
.y12_c01010{bottom:789.433945px;}
.y13_c01010{bottom:790.063849px;}
.y14_c01010{bottom:790.248072px;}
.y15_c01010{bottom:790.856922px;}
.y16_c01010{bottom:791.385681px;}
.y17_c01010{bottom:792.398451px;}
.y18_c01010{bottom:792.902740px;}
.y19_c01010{bottom:793.060860px;}
.y4_c01010{bottom:810.811500px;}
.y5_c01010{bottom:811.224148px;}
.y6_c01010{bottom:811.541691px;}
.y7_c01010{bottom:812.077116px;}
.y8_c01010{bottom:813.098664px;}
.y9_c01010{bottom:813.538158px;}
.ya_c01010{bottom:813.805507px;}
.yb_c01010{bottom:814.375747px;}
.yc_c01010{bottom:814.898500px;}
.yd_c01010{bottom:815.233599px;}
.ye_c01010{bottom:815.510485px;}
.y1_c01010{bottom:897.214500px;}
.y2_c01010{bottom:900.389364px;}
.y3_c01010{bottom:901.066359px;}
.hf_c01010{height:24.150000px;}
.h16_c01010{height:39.900000px;}
.h11_c01010{height:51.453704px;}
.h12_c01010{height:52.503780px;}
.h13_c01010{height:54.603931px;}
.h10_c01010{height:55.654007px;}
.hb_c01010{height:57.753494px;}
.h14_c01010{height:58.804233px;}
.hc_c01010{height:59.853621px;}
.h5_c01010{height:60.903684px;}
.h9_c01010{height:61.953748px;}
.h7_c01010{height:65.103938px;}
.h6_c01010{height:69.304193px;}
.h3_c01010{height:70.354256px;}
.ha_c01010{height:71.404320px;}
.h4_c01010{height:72.454383px;}
.h8_c01010{height:73.504447px;}
.h15_c01010{height:74.553019px;}
.hd_c01010{height:75.605443px;}
.he_c01010{height:76.655519px;}
.h2_c01010{height:147.008893px;}
.h1_c01010{height:1005.000000px;}
.h0_c01010{height:1005.150000px;}
.w0_c01010{width:715.200000px;}
.w1_c01010{width:715.500000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:92.758500px;}
.x32_c01010{left:109.255254px;}
.x49_c01010{left:110.585780px;}
.xa2_c01010{left:114.393060px;}
.x84_c01010{left:115.721999px;}
.x4_c01010{left:117.052500px;}
.x22_c01010{left:118.089022px;}
.x6f_c01010{left:119.470713px;}
.xb8_c01010{left:135.419964px;}
.x9c_c01010{left:139.215000px;}
.x4a_c01010{left:141.983433px;}
.x67_c01010{left:143.185695px;}
.x44_c01010{left:145.399817px;}
.x3c_c01010{left:147.019469px;}
.x33_c01010{left:149.244809px;}
.x85_c01010{left:150.455619px;}
.x18_c01010{left:152.659023px;}
.x5_c01010{left:154.566000px;}
.x97_c01010{left:156.043104px;}
.xf_c01010{left:157.825997px;}
.x78_c01010{left:160.507502px;}
.x2a_c01010{left:161.637741px;}
.x59_c01010{left:163.214526px;}
.x9d_c01010{left:164.571000px;}
.x45_c01010{left:166.500317px;}
.xc1_c01010{left:167.518872px;}
.x34_c01010{left:170.810078px;}
.xa8_c01010{left:172.128000px;}
.x50_c01010{left:173.952083px;}
.x93_c01010{left:176.459376px;}
.x68_c01010{left:178.863987px;}
.x23_c01010{left:180.256523px;}
.x10_c01010{left:181.863496px;}
.x6_c01010{left:183.433500px;}
.x70_c01010{left:185.085939px;}
.x8a_c01010{left:186.408644px;}
.x61_c01010{left:190.209633px;}
.xbc_c01010{left:192.393696px;}
.xae_c01010{left:197.759484px;}
.x3d_c01010{left:201.827079px;}
.x2b_c01010{left:203.486817px;}
.x19_c01010{left:204.538023px;}
.x71_c01010{left:208.855203px;}
.x35_c01010{left:210.487649px;}
.x8b_c01010{left:212.390144px;}
.x7e_c01010{left:213.999309px;}
.x62_c01010{left:215.054678px;}
.xbd_c01010{left:216.675696px;}
.xa9_c01010{left:218.253000px;}
.x79_c01010{left:219.920805px;}
.x3e_c01010{left:221.541794px;}
.x9e_c01010{left:224.025000px;}
.x86_c01010{left:228.651261px;}
.x7_c01010{left:232.108500px;}
.x11_c01010{left:235.842497px;}
.xb4_c01010{left:236.929518px;}
.x80_c01010{left:239.419425px;}
.x69_c01010{left:242.055873px;}
.x1a_c01010{left:245.857023px;}
.xaf_c01010{left:251.492484px;}
.x5a_c01010{left:253.398006px;}
.x63_c01010{left:256.607085px;}
.xb9_c01010{left:258.007530px;}
.x2c_c01010{left:259.434080px;}
.x36_c01010{left:262.616571px;}
.x3f_c01010{left:265.285272px;}
.x4b_c01010{left:266.944047px;}
.x6a_c01010{left:269.599484px;}
.x51_c01010{left:271.741800px;}
.xa3_c01010{left:275.562060px;}
.x8c_c01010{left:277.731644px;}
.x81_c01010{left:279.098051px;}
.x40_c01010{left:281.983454px;}
.xc3_c01010{left:283.881000px;}
.xb0_c01010{left:286.065984px;}
.x1b_c01010{left:287.924523px;}
.x6b_c01010{left:291.475962px;}
.x12_c01010{left:293.106497px;}
.x5b_c01010{left:296.597463px;}
.x87_c01010{left:297.980486px;}
.x7a_c01010{left:300.919587px;}
.x8d_c01010{left:302.846144px;}
.x24_c01010{left:305.523023px;}
.x98_c01010{left:307.027488px;}
.xc2_c01010{left:308.736180px;}
.x13_c01010{left:309.853997px;}
.x1c_c01010{left:312.817023px;}
.x52_c01010{left:313.860186px;}
.x5c_c01010{left:314.959359px;}
.x72_c01010{left:316.595391px;}
.x64_c01010{left:319.278471px;}
.x8_c01010{left:324.976500px;}
.x2d_c01010{left:327.480078px;}
.xaa_c01010{left:329.302500px;}
.x94_c01010{left:331.463376px;}
.x88_c01010{left:333.644090px;}
.xb5_c01010{left:336.550830px;}
.x9f_c01010{left:337.960500px;}
.x2e_c01010{left:342.278748px;}
.x1d_c01010{left:344.405523px;}
.xa4_c01010{left:346.861560px;}
.xb6_c01010{left:351.858150px;}
.x37_c01010{left:353.344581px;}
.x53_c01010{left:354.901539px;}
.x73_c01010{left:357.587837px;}
.x46_c01010{left:362.451317px;}
.xbe_c01010{left:363.866196px;}
.x9_c01010{left:364.930500px;}
.x99_c01010{left:366.496418px;}
.x8e_c01010{left:368.727644px;}
.xab_c01010{left:370.615500px;}
.x1e_c01010{left:376.540023px;}
.x2_c01010{left:381.382500px;}
.x54_c01010{left:383.528480px;}
.x74_c01010{left:385.177634px;}
.xa_c01010{left:389.235000px;}
.x41_c01010{left:391.115658px;}
.x65_c01010{left:392.720088px;}
.x2f_c01010{left:393.846110px;}
.x47_c01010{left:398.952317px;}
.xa0_c01010{left:401.493000px;}
.x4c_c01010{left:408.150996px;}
.x8f_c01010{left:409.224644px;}
.x1f_c01010{left:411.326523px;}
.x14_c01010{left:413.272997px;}
.x5d_c01010{left:414.597554px;}
.x25_c01010{left:415.974023px;}
.xbf_c01010{left:419.225196px;}
.x30_c01010{left:421.389999px;}
.x55_c01010{left:423.489800px;}
.x7b_c01010{left:431.603975px;}
.x6c_c01010{left:432.959064px;}
.x38_c01010{left:434.646690px;}
.x82_c01010{left:437.073086px;}
.x42_c01010{left:439.671186px;}
.xb_c01010{left:441.075000px;}
.x3_c01010{left:442.927500px;}
.xa5_c01010{left:446.508060px;}
.x75_c01010{left:450.519860px;}
.x4d_c01010{left:454.866485px;}
.x56_c01010{left:455.917872px;}
.xc0_c01010{left:457.869924px;}
.x6d_c01010{left:460.766675px;}
.x5e_c01010{left:462.916610px;}
.xb7_c01010{left:464.047800px;}
.xba_c01010{left:465.686544px;}
.x39_c01010{left:467.560827px;}
.x95_c01010{left:469.440876px;}
.x20_c01010{left:470.782023px;}
.x90_c01010{left:472.145144px;}
.x7c_c01010{left:477.189981px;}
.xa6_c01010{left:478.971060px;}
.x6e_c01010{left:481.561637px;}
.x66_c01010{left:483.181085px;}
.x26_c01010{left:484.279523px;}
.xac_c01010{left:486.157500px;}
.xc_c01010{left:488.598000px;}
.x48_c01010{left:490.494317px;}
.x5f_c01010{left:492.885770px;}
.xbb_c01010{left:494.017860px;}
.x7f_c01010{left:497.779928px;}
.x27_c01010{left:502.104023px;}
.x15_c01010{left:505.342997px;}
.x7d_c01010{left:506.668625px;}
.x91_c01010{left:511.826144px;}
.x57_c01010{left:514.479803px;}
.xd_c01010{left:519.061500px;}
.x43_c01010{left:522.355094px;}
.x76_c01010{left:529.041218px;}
.x31_c01010{left:531.288090px;}
.x3a_c01010{left:532.352618px;}
.x4e_c01010{left:533.420627px;}
.x9a_c01010{left:536.431833px;}
.x83_c01010{left:537.488375px;}
.x28_c01010{left:541.471523px;}
.xb1_c01010{left:542.847984px;}
.xe_c01010{left:544.233000px;}
.x60_c01010{left:545.271425px;}
.x89_c01010{left:548.318730px;}
.xa7_c01010{left:549.436560px;}
.x16_c01010{left:551.187497px;}
.x77_c01010{left:554.470998px;}
.x92_c01010{left:557.477144px;}
.xb2_c01010{left:559.076484px;}
.x9b_c01010{left:561.485903px;}
.x96_c01010{left:563.405376px;}
.x17_c01010{left:565.561997px;}
.x29_c01010{left:571.759523px;}
.x21_c01010{left:573.385023px;}
.x3b_c01010{left:575.276139px;}
.x4f_c01010{left:576.633648px;}
.x58_c01010{left:578.473398px;}
.xad_c01010{left:579.864000px;}
.xa1_c01010{left:583.431000px;}
.xb3_c01010{left:590.406984px;}
.xc4_c01010{left:616.276500px;}
.xc5_c01010{left:619.650000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ws0_c01010{word-spacing:0.000000pt;}
.fsd_c01010{font-size:21.466667pt;}
.fs14_c01010{font-size:35.466667pt;}
.fsf_c01010{font-size:45.736626pt;}
.fs10_c01010{font-size:46.670027pt;}
.fs11_c01010{font-size:48.536828pt;}
.fse_c01010{font-size:49.470228pt;}
.fs9_c01010{font-size:51.336439pt;}
.fs12_c01010{font-size:52.270430pt;}
.fsa_c01010{font-size:53.203219pt;}
.fs3_c01010{font-size:54.136608pt;}
.fs7_c01010{font-size:55.069998pt;}
.fs5_c01010{font-size:57.870167pt;}
.fs4_c01010{font-size:61.603727pt;}
.fs1_c01010{font-size:62.537116pt;}
.fs8_c01010{font-size:63.470506pt;}
.fs2_c01010{font-size:64.403896pt;}
.fs6_c01010{font-size:65.337286pt;}
.fs13_c01010{font-size:66.269350pt;}
.fsb_c01010{font-size:67.204838pt;}
.fsc_c01010{font-size:68.138239pt;}
.fs0_c01010{font-size:130.674572pt;}
.y0_c01010{bottom:0.000000pt;}
.y15e_c01010{bottom:15.120000pt;}
.y15a_c01010{bottom:109.680000pt;}
.y15b_c01010{bottom:109.976220pt;}
.y15c_c01010{bottom:111.054132pt;}
.y15d_c01010{bottom:112.635384pt;}
.y14c_c01010{bottom:127.668491pt;}
.y14d_c01010{bottom:128.009237pt;}
.y14e_c01010{bottom:128.258320pt;}
.y14f_c01010{bottom:128.649179pt;}
.y150_c01010{bottom:129.350608pt;}
.y151_c01010{bottom:129.889989pt;}
.y152_c01010{bottom:130.399888pt;}
.y153_c01010{bottom:130.525829pt;}
.y154_c01010{bottom:130.862059pt;}
.y155_c01010{bottom:131.324779pt;}
.y156_c01010{bottom:131.885397pt;}
.y157_c01010{bottom:132.062907pt;}
.y158_c01010{bottom:132.449520pt;}
.y159_c01010{bottom:132.799163pt;}
.y140_c01010{bottom:142.312096pt;}
.y141_c01010{bottom:143.114352pt;}
.y142_c01010{bottom:144.193648pt;}
.y143_c01010{bottom:144.496144pt;}
.y144_c01010{bottom:145.017696pt;}
.y145_c01010{bottom:145.695632pt;}
.y146_c01010{bottom:146.123349pt;}
.y147_c01010{bottom:146.570235pt;}
.y148_c01010{bottom:146.872299pt;}
.y149_c01010{bottom:147.246229pt;}
.y14a_c01010{bottom:147.592059pt;}
.y14b_c01010{bottom:148.171691pt;}
.y132_c01010{bottom:159.352459pt;}
.y133_c01010{bottom:159.709931pt;}
.y134_c01010{bottom:160.170875pt;}
.y135_c01010{bottom:160.429883pt;}
.y136_c01010{bottom:160.968571pt;}
.y137_c01010{bottom:161.247627pt;}
.y138_c01010{bottom:161.875563pt;}
.y139_c01010{bottom:161.999915pt;}
.y13a_c01010{bottom:162.590411pt;}
.y13b_c01010{bottom:162.921451pt;}
.y13c_c01010{bottom:163.370843pt;}
.y13d_c01010{bottom:163.681899pt;}
.y13e_c01010{bottom:163.889275pt;}
.y13f_c01010{bottom:164.346779pt;}
.y121_c01010{bottom:174.475648pt;}
.y122_c01010{bottom:174.730672pt;}
.y123_c01010{bottom:175.161093pt;}
.y124_c01010{bottom:175.704859pt;}
.y125_c01010{bottom:176.255637pt;}
.y126_c01010{bottom:176.430555pt;}
.y127_c01010{bottom:176.874715pt;}
.y128_c01010{bottom:177.013307pt;}
.y129_c01010{bottom:177.425813pt;}
.y12a_c01010{bottom:178.004112pt;}
.y12b_c01010{bottom:178.612283pt;}
.y12c_c01010{bottom:178.840267pt;}
.y12d_c01010{bottom:179.193141pt;}
.y12e_c01010{bottom:179.415285pt;}
.y12f_c01010{bottom:179.811013pt;}
.y130_c01010{bottom:180.006277pt;}
.y131_c01010{bottom:180.176901pt;}
.y112_c01010{bottom:190.078800pt;}
.y113_c01010{bottom:190.440624pt;}
.y114_c01010{bottom:190.736795pt;}
.y115_c01010{bottom:191.160635pt;}
.y116_c01010{bottom:191.478363pt;}
.y117_c01010{bottom:191.780293pt;}
.y118_c01010{bottom:191.995189pt;}
.y119_c01010{bottom:192.629003pt;}
.y11a_c01010{bottom:192.805616pt;}
.y11b_c01010{bottom:193.012608pt;}
.y11c_c01010{bottom:193.369088pt;}
.y11d_c01010{bottom:194.102320pt;}
.y11e_c01010{bottom:194.898325pt;}
.y11f_c01010{bottom:195.219867pt;}
.y120_c01010{bottom:195.487531pt;}
.y106_c01010{bottom:205.679899pt;}
.y107_c01010{bottom:206.195483pt;}
.y108_c01010{bottom:206.546779pt;}
.y109_c01010{bottom:207.119931pt;}
.y10a_c01010{bottom:207.488715pt;}
.y10b_c01010{bottom:208.079115pt;}
.y10c_c01010{bottom:208.395931pt;}
.y10d_c01010{bottom:209.141899pt;}
.y10e_c01010{bottom:209.743883pt;}
.y10f_c01010{bottom:210.227723pt;}
.y110_c01010{bottom:210.400827pt;}
.y111_c01010{bottom:210.735019pt;}
.yfb_c01010{bottom:221.521333pt;}
.yfc_c01010{bottom:222.126325pt;}
.yfd_c01010{bottom:222.618325pt;}
.yfe_c01010{bottom:222.912549pt;}
.yff_c01010{bottom:223.802853pt;}
.y100_c01010{bottom:224.243525pt;}
.y101_c01010{bottom:224.776149pt;}
.y102_c01010{bottom:225.296389pt;}
.y103_c01010{bottom:225.475973pt;}
.y104_c01010{bottom:225.928341pt;}
.y105_c01010{bottom:226.475509pt;}
.yfa_c01010{bottom:250.560000pt;}
.yf0_c01010{bottom:270.000368pt;}
.yf1_c01010{bottom:270.365856pt;}
.yf2_c01010{bottom:270.723296pt;}
.yf3_c01010{bottom:271.719504pt;}
.yf4_c01010{bottom:272.045536pt;}
.yf5_c01010{bottom:272.480032pt;}
.yf6_c01010{bottom:272.842928pt;}
.yf7_c01010{bottom:273.542928pt;}
.yf8_c01010{bottom:273.889200pt;}
.yf9_c01010{bottom:274.640832pt;}
.ye6_c01010{bottom:290.161333pt;}
.ye7_c01010{bottom:290.431797pt;}
.ye8_c01010{bottom:291.065973pt;}
.ye9_c01010{bottom:291.446389pt;}
.yea_c01010{bottom:292.281285pt;}
.yeb_c01010{bottom:292.693125pt;}
.yec_c01010{bottom:292.958965pt;}
.yed_c01010{bottom:293.197845pt;}
.yee_c01010{bottom:294.314901pt;}
.yef_c01010{bottom:294.899637pt;}
.ydb_c01010{bottom:315.108056pt;}
.ydc_c01010{bottom:315.752200pt;}
.ydd_c01010{bottom:316.197600pt;}
.yde_c01010{bottom:316.784904pt;}
.ydf_c01010{bottom:317.730961pt;}
.ye0_c01010{bottom:318.167272pt;}
.ye1_c01010{bottom:319.118124pt;}
.ye2_c01010{bottom:319.804096pt;}
.ye3_c01010{bottom:320.352475pt;}
.ye4_c01010{bottom:321.837176pt;}
.ye5_c01010{bottom:322.238168pt;}
.yd0_c01010{bottom:336.467073pt;}
.yd1_c01010{bottom:337.063713pt;}
.yd2_c01010{bottom:337.649529pt;}
.yd3_c01010{bottom:337.995355pt;}
.yd4_c01010{bottom:338.407165pt;}
.yd5_c01010{bottom:338.579308pt;}
.yd6_c01010{bottom:339.146908pt;}
.yd7_c01010{bottom:339.669129pt;}
.yd8_c01010{bottom:339.928421pt;}
.yd9_c01010{bottom:340.720583pt;}
.yda_c01010{bottom:340.847185pt;}
.yc4_c01010{bottom:356.627489pt;}
.yc5_c01010{bottom:356.907828pt;}
.yc6_c01010{bottom:357.303432pt;}
.yc7_c01010{bottom:357.557473pt;}
.yc8_c01010{bottom:358.196368pt;}
.yc9_c01010{bottom:358.441932pt;}
.yca_c01010{bottom:359.086107pt;}
.ycb_c01010{bottom:359.482077pt;}
.ycc_c01010{bottom:359.883328pt;}
.ycd_c01010{bottom:360.097300pt;}
.yce_c01010{bottom:360.485292pt;}
.ycf_c01010{bottom:360.931657pt;}
.yba_c01010{bottom:376.788048pt;}
.ybb_c01010{bottom:377.158336pt;}
.ybc_c01010{bottom:377.337812pt;}
.ybd_c01010{bottom:377.992257pt;}
.ybe_c01010{bottom:378.401305pt;}
.ybf_c01010{bottom:378.732817pt;}
.yc0_c01010{bottom:379.113532pt;}
.yc1_c01010{bottom:379.730521pt;}
.yc2_c01010{bottom:380.968241pt;}
.yc3_c01010{bottom:381.403263pt;}
.yaf_c01010{bottom:397.189287pt;}
.yb0_c01010{bottom:397.620449pt;}
.yb1_c01010{bottom:398.612028pt;}
.yb2_c01010{bottom:399.070672pt;}
.yb3_c01010{bottom:399.375971pt;}
.yb4_c01010{bottom:399.972401pt;}
.yb5_c01010{bottom:400.745979pt;}
.yb6_c01010{bottom:400.895351pt;}
.yb7_c01010{bottom:401.160864pt;}
.yb8_c01010{bottom:402.055877pt;}
.yb9_c01010{bottom:402.521135pt;}
.ya5_c01010{bottom:417.108637pt;}
.ya6_c01010{bottom:417.658531pt;}
.ya7_c01010{bottom:417.971181pt;}
.ya8_c01010{bottom:418.480165pt;}
.ya9_c01010{bottom:418.746656pt;}
.yaa_c01010{bottom:419.463840pt;}
.yab_c01010{bottom:419.829179pt;}
.yac_c01010{bottom:420.171988pt;}
.yad_c01010{bottom:420.493895pt;}
.yae_c01010{bottom:421.201588pt;}
.y9a_c01010{bottom:437.989403pt;}
.y9b_c01010{bottom:438.324009pt;}
.y9c_c01010{bottom:438.799593pt;}
.y9d_c01010{bottom:439.447564pt;}
.y9e_c01010{bottom:439.896273pt;}
.y9f_c01010{bottom:440.110029pt;}
.ya0_c01010{bottom:440.492005pt;}
.ya1_c01010{bottom:440.856392pt;}
.ya2_c01010{bottom:441.092621pt;}
.ya3_c01010{bottom:441.305071pt;}
.ya4_c01010{bottom:441.631271pt;}
.y90_c01010{bottom:458.150541pt;}
.y91_c01010{bottom:458.733439pt;}
.y92_c01010{bottom:458.944513pt;}
.y93_c01010{bottom:459.187329pt;}
.y94_c01010{bottom:459.901961pt;}
.y95_c01010{bottom:460.266772pt;}
.y96_c01010{bottom:460.512536pt;}
.y97_c01010{bottom:461.092764pt;}
.y98_c01010{bottom:461.791187pt;}
.y99_c01010{bottom:462.017164pt;}
.y82_c01010{bottom:478.311620pt;}
.y83_c01010{bottom:478.507523pt;}
.y84_c01010{bottom:478.792369pt;}
.y85_c01010{bottom:478.969919pt;}
.y86_c01010{bottom:479.298232pt;}
.y87_c01010{bottom:479.518208pt;}
.y88_c01010{bottom:479.693440pt;}
.y89_c01010{bottom:479.987161pt;}
.y8a_c01010{bottom:480.492804pt;}
.y8b_c01010{bottom:480.826133pt;}
.y8c_c01010{bottom:481.048691pt;}
.y8d_c01010{bottom:481.214681pt;}
.y8e_c01010{bottom:481.512364pt;}
.y8f_c01010{bottom:481.970667pt;}
.y78_c01010{bottom:498.952937pt;}
.y79_c01010{bottom:499.313876pt;}
.y7a_c01010{bottom:499.540468pt;}
.y7b_c01010{bottom:499.739392pt;}
.y7c_c01010{bottom:500.072340pt;}
.y7d_c01010{bottom:500.461431pt;}
.y7e_c01010{bottom:500.573113pt;}
.y7f_c01010{bottom:501.160527pt;}
.y80_c01010{bottom:501.883681pt;}
.y81_c01010{bottom:502.540893pt;}
.y6c_c01010{bottom:519.113813pt;}
.y6d_c01010{bottom:519.489628pt;}
.y6e_c01010{bottom:520.211403pt;}
.y6f_c01010{bottom:520.556455pt;}
.y70_c01010{bottom:520.703989pt;}
.y71_c01010{bottom:521.027549pt;}
.y72_c01010{bottom:521.250547pt;}
.y73_c01010{bottom:521.500875pt;}
.y74_c01010{bottom:521.887984pt;}
.y75_c01010{bottom:522.127676pt;}
.y76_c01010{bottom:522.546547pt;}
.y77_c01010{bottom:522.705804pt;}
.y60_c01010{bottom:539.512303pt;}
.y61_c01010{bottom:539.915743pt;}
.y62_c01010{bottom:540.136837pt;}
.y63_c01010{bottom:540.611877pt;}
.y64_c01010{bottom:540.911688pt;}
.y65_c01010{bottom:541.203635pt;}
.y66_c01010{bottom:541.407533pt;}
.y67_c01010{bottom:541.691587pt;}
.y68_c01010{bottom:541.921984pt;}
.y69_c01010{bottom:542.338571pt;}
.y6a_c01010{bottom:542.458280pt;}
.y6b_c01010{bottom:542.794932pt;}
.y57_c01010{bottom:558.474481pt;}
.y58_c01010{bottom:558.809484pt;}
.y59_c01010{bottom:559.653172pt;}
.y5a_c01010{bottom:560.143335pt;}
.y5b_c01010{bottom:560.422155pt;}
.y5c_c01010{bottom:561.649373pt;}
.y5d_c01010{bottom:562.147485pt;}
.y5e_c01010{bottom:562.984912pt;}
.y5f_c01010{bottom:563.446111pt;}
.y51_c01010{bottom:579.116084pt;}
.y52_c01010{bottom:579.380040pt;}
.y53_c01010{bottom:579.586356pt;}
.y54_c01010{bottom:581.502321pt;}
.y55_c01010{bottom:581.859220pt;}
.y56_c01010{bottom:582.754297pt;}
.y46_c01010{bottom:599.275951pt;}
.y47_c01010{bottom:599.547648pt;}
.y48_c01010{bottom:600.034205pt;}
.y49_c01010{bottom:600.209636pt;}
.y4a_c01010{bottom:600.598679pt;}
.y4b_c01010{bottom:600.747281pt;}
.y4c_c01010{bottom:600.994352pt;}
.y4d_c01010{bottom:601.717007pt;}
.y4e_c01010{bottom:602.149100pt;}
.y4f_c01010{bottom:602.540915pt;}
.y50_c01010{bottom:602.884223pt;}
.y3b_c01010{bottom:619.198153pt;}
.y3c_c01010{bottom:619.625167pt;}
.y3d_c01010{bottom:619.854696pt;}
.y3e_c01010{bottom:620.277325pt;}
.y3f_c01010{bottom:620.833703pt;}
.y40_c01010{bottom:621.109853pt;}
.y41_c01010{bottom:621.800831pt;}
.y42_c01010{bottom:622.667793pt;}
.y43_c01010{bottom:623.018957pt;}
.y44_c01010{bottom:623.709817pt;}
.y45_c01010{bottom:624.168185pt;}
.y31_c01010{bottom:639.357175pt;}
.y32_c01010{bottom:639.875444pt;}
.y33_c01010{bottom:640.359311pt;}
.y34_c01010{bottom:641.006363pt;}
.y35_c01010{bottom:641.793049pt;}
.y36_c01010{bottom:641.964417pt;}
.y37_c01010{bottom:642.560643pt;}
.y38_c01010{bottom:642.879300pt;}
.y39_c01010{bottom:643.131851pt;}
.y3a_c01010{bottom:644.148549pt;}
.y26_c01010{bottom:660.237483pt;}
.y27_c01010{bottom:660.575388pt;}
.y28_c01010{bottom:660.845343pt;}
.y29_c01010{bottom:662.070171pt;}
.y2a_c01010{bottom:662.645661pt;}
.y2b_c01010{bottom:662.893455pt;}
.y2c_c01010{bottom:663.150136pt;}
.y2d_c01010{bottom:663.818012pt;}
.y2e_c01010{bottom:663.992296pt;}
.y2f_c01010{bottom:664.377223pt;}
.y30_c01010{bottom:664.673372pt;}
.y1a_c01010{bottom:680.639195pt;}
.y1b_c01010{bottom:680.981969pt;}
.y1c_c01010{bottom:681.489231pt;}
.y1d_c01010{bottom:681.893239pt;}
.y1e_c01010{bottom:682.304565pt;}
.y1f_c01010{bottom:682.547959pt;}
.y20_c01010{bottom:682.856824pt;}
.y21_c01010{bottom:683.171028pt;}
.y22_c01010{bottom:683.511163pt;}
.y23_c01010{bottom:684.092505pt;}
.y24_c01010{bottom:684.818491pt;}
.y25_c01010{bottom:685.095735pt;}
.yf_c01010{bottom:700.560205pt;}
.y10_c01010{bottom:700.956235pt;}
.y11_c01010{bottom:701.191268pt;}
.y12_c01010{bottom:701.719063pt;}
.y13_c01010{bottom:702.278977pt;}
.y14_c01010{bottom:702.442731pt;}
.y15_c01010{bottom:702.983931pt;}
.y16_c01010{bottom:703.453939pt;}
.y17_c01010{bottom:704.354179pt;}
.y18_c01010{bottom:704.802436pt;}
.y19_c01010{bottom:704.942987pt;}
.y4_c01010{bottom:720.721333pt;}
.y5_c01010{bottom:721.088132pt;}
.y6_c01010{bottom:721.370392pt;}
.y7_c01010{bottom:721.846325pt;}
.y8_c01010{bottom:722.754368pt;}
.y9_c01010{bottom:723.145029pt;}
.ya_c01010{bottom:723.382673pt;}
.yb_c01010{bottom:723.889553pt;}
.yc_c01010{bottom:724.354223pt;}
.yd_c01010{bottom:724.652088pt;}
.ye_c01010{bottom:724.898209pt;}
.y1_c01010{bottom:797.524000pt;}
.y2_c01010{bottom:800.346101pt;}
.y3_c01010{bottom:800.947875pt;}
.hf_c01010{height:21.466667pt;}
.h16_c01010{height:35.466667pt;}
.h11_c01010{height:45.736626pt;}
.h12_c01010{height:46.670027pt;}
.h13_c01010{height:48.536828pt;}
.h10_c01010{height:49.470228pt;}
.hb_c01010{height:51.336439pt;}
.h14_c01010{height:52.270430pt;}
.hc_c01010{height:53.203219pt;}
.h5_c01010{height:54.136608pt;}
.h9_c01010{height:55.069998pt;}
.h7_c01010{height:57.870167pt;}
.h6_c01010{height:61.603727pt;}
.h3_c01010{height:62.537116pt;}
.ha_c01010{height:63.470506pt;}
.h4_c01010{height:64.403896pt;}
.h8_c01010{height:65.337286pt;}
.h15_c01010{height:66.269350pt;}
.hd_c01010{height:67.204838pt;}
.he_c01010{height:68.138239pt;}
.h2_c01010{height:130.674572pt;}
.h1_c01010{height:893.333333pt;}
.h0_c01010{height:893.466667pt;}
.w0_c01010{width:635.733333pt;}
.w1_c01010{width:636.000000pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:82.452000pt;}
.x32_c01010{left:97.115781pt;}
.x49_c01010{left:98.298471pt;}
.xa2_c01010{left:101.682720pt;}
.x84_c01010{left:102.863999pt;}
.x4_c01010{left:104.046667pt;}
.x22_c01010{left:104.968020pt;}
.x6f_c01010{left:106.196189pt;}
.xb8_c01010{left:120.373301pt;}
.x9c_c01010{left:123.746667pt;}
.x4a_c01010{left:126.207496pt;}
.x67_c01010{left:127.276173pt;}
.x44_c01010{left:129.244281pt;}
.x3c_c01010{left:130.683972pt;}
.x33_c01010{left:132.662052pt;}
.x85_c01010{left:133.738328pt;}
.x18_c01010{left:135.696909pt;}
.x5_c01010{left:137.392000pt;}
.x97_c01010{left:138.704981pt;}
.xf_c01010{left:140.289775pt;}
.x78_c01010{left:142.673335pt;}
.x2a_c01010{left:143.677992pt;}
.x59_c01010{left:145.079579pt;}
.x9d_c01010{left:146.285333pt;}
.x45_c01010{left:148.000281pt;}
.xc1_c01010{left:148.905664pt;}
.x34_c01010{left:151.831180pt;}
.xa8_c01010{left:153.002667pt;}
.x50_c01010{left:154.624073pt;}
.x93_c01010{left:156.852779pt;}
.x68_c01010{left:158.990211pt;}
.x23_c01010{left:160.228020pt;}
.x10_c01010{left:161.656441pt;}
.x6_c01010{left:163.052000pt;}
.x70_c01010{left:164.520835pt;}
.x8a_c01010{left:165.696572pt;}
.x61_c01010{left:169.075229pt;}
.xbc_c01010{left:171.016619pt;}
.xae_c01010{left:175.786208pt;}
.x3d_c01010{left:179.401848pt;}
.x2b_c01010{left:180.877171pt;}
.x19_c01010{left:181.811576pt;}
.x71_c01010{left:185.649069pt;}
.x35_c01010{left:187.100132pt;}
.x8b_c01010{left:188.791239pt;}
.x7e_c01010{left:190.221608pt;}
.x62_c01010{left:191.159713pt;}
.xbd_c01010{left:192.600619pt;}
.xa9_c01010{left:194.002667pt;}
.x79_c01010{left:195.485160pt;}
.x3e_c01010{left:196.926039pt;}
.x9e_c01010{left:199.133333pt;}
.x86_c01010{left:203.245565pt;}
.x7_c01010{left:206.318667pt;}
.x11_c01010{left:209.637775pt;}
.xb4_c01010{left:210.604016pt;}
.x80_c01010{left:212.817267pt;}
.x69_c01010{left:215.160776pt;}
.x1a_c01010{left:218.539576pt;}
.xaf_c01010{left:223.548875pt;}
.x5a_c01010{left:225.242672pt;}
.x63_c01010{left:228.095187pt;}
.xb9_c01010{left:229.340027pt;}
.x2c_c01010{left:230.608071pt;}
.x36_c01010{left:233.436952pt;}
.x3f_c01010{left:235.809131pt;}
.x4b_c01010{left:237.283597pt;}
.x6a_c01010{left:239.643985pt;}
.x51_c01010{left:241.548267pt;}
.xa3_c01010{left:244.944053pt;}
.x8c_c01010{left:246.872572pt;}
.x81_c01010{left:248.087156pt;}
.x40_c01010{left:250.651959pt;}
.xc3_c01010{left:252.338667pt;}
.xb0_c01010{left:254.280875pt;}
.x1b_c01010{left:255.932909pt;}
.x6b_c01010{left:259.089744pt;}
.x12_c01010{left:260.539108pt;}
.x5b_c01010{left:263.642189pt;}
.x87_c01010{left:264.871543pt;}
.x7a_c01010{left:267.484077pt;}
.x8d_c01010{left:269.196572pt;}
.x24_c01010{left:271.576020pt;}
.x98_c01010{left:272.913323pt;}
.xc2_c01010{left:274.432160pt;}
.x13_c01010{left:275.425775pt;}
.x1c_c01010{left:278.059576pt;}
.x52_c01010{left:278.986832pt;}
.x5c_c01010{left:279.963875pt;}
.x72_c01010{left:281.418125pt;}
.x64_c01010{left:283.803085pt;}
.x8_c01010{left:288.868000pt;}
.x2d_c01010{left:291.093403pt;}
.xaa_c01010{left:292.713333pt;}
.x94_c01010{left:294.634112pt;}
.x88_c01010{left:296.572524pt;}
.xb5_c01010{left:299.156293pt;}
.x9f_c01010{left:300.409333pt;}
.x2e_c01010{left:304.247776pt;}
.x1d_c01010{left:306.138243pt;}
.xa4_c01010{left:308.321387pt;}
.xb6_c01010{left:312.762800pt;}
.x37_c01010{left:314.084072pt;}
.x53_c01010{left:315.468035pt;}
.x73_c01010{left:317.855855pt;}
.x46_c01010{left:322.178948pt;}
.xbe_c01010{left:323.436619pt;}
.x9_c01010{left:324.382667pt;}
.x99_c01010{left:325.774593pt;}
.x8e_c01010{left:327.757905pt;}
.xab_c01010{left:329.436000pt;}
.x1e_c01010{left:334.702243pt;}
.x2_c01010{left:339.006667pt;}
.x54_c01010{left:340.914204pt;}
.x74_c01010{left:342.380119pt;}
.xa_c01010{left:345.986667pt;}
.x41_c01010{left:347.658363pt;}
.x65_c01010{left:349.084523pt;}
.x2f_c01010{left:350.085431pt;}
.x47_c01010{left:354.624281pt;}
.xa0_c01010{left:356.882667pt;}
.x4c_c01010{left:362.800885pt;}
.x8f_c01010{left:363.755239pt;}
.x1f_c01010{left:365.623576pt;}
.x14_c01010{left:367.353775pt;}
.x5d_c01010{left:368.531159pt;}
.x25_c01010{left:369.754687pt;}
.xbf_c01010{left:372.644619pt;}
.x30_c01010{left:374.568888pt;}
.x55_c01010{left:376.435377pt;}
.x7b_c01010{left:383.647977pt;}
.x6c_c01010{left:384.852501pt;}
.x38_c01010{left:386.352613pt;}
.x82_c01010{left:388.509409pt;}
.x42_c01010{left:390.818832pt;}
.xb_c01010{left:392.066667pt;}
.x3_c01010{left:393.713333pt;}
.xa5_c01010{left:396.896053pt;}
.x75_c01010{left:400.462097pt;}
.x4d_c01010{left:404.325764pt;}
.x56_c01010{left:405.260331pt;}
.xc0_c01010{left:406.995488pt;}
.x6d_c01010{left:409.570377pt;}
.x5e_c01010{left:411.481431pt;}
.xb7_c01010{left:412.486933pt;}
.xba_c01010{left:413.943595pt;}
.x39_c01010{left:415.609624pt;}
.x95_c01010{left:417.280779pt;}
.x20_c01010{left:418.472909pt;}
.x90_c01010{left:419.684572pt;}
.x7c_c01010{left:424.168872pt;}
.xa6_c01010{left:425.752053pt;}
.x6e_c01010{left:428.054788pt;}
.x66_c01010{left:429.494297pt;}
.x26_c01010{left:430.470687pt;}
.xac_c01010{left:432.140000pt;}
.xc_c01010{left:434.309333pt;}
.x48_c01010{left:435.994948pt;}
.x5f_c01010{left:438.120684pt;}
.xbb_c01010{left:439.126987pt;}
.x7f_c01010{left:442.471047pt;}
.x27_c01010{left:446.314687pt;}
.x15_c01010{left:449.193775pt;}
.x7d_c01010{left:450.372111pt;}
.x91_c01010{left:454.956572pt;}
.x57_c01010{left:457.315380pt;}
.xd_c01010{left:461.388000pt;}
.x43_c01010{left:464.315639pt;}
.x76_c01010{left:470.258860pt;}
.x31_c01010{left:472.256080pt;}
.x3a_c01010{left:473.202327pt;}
.x4e_c01010{left:474.151668pt;}
.x9a_c01010{left:476.828296pt;}
.x83_c01010{left:477.767444pt;}
.x28_c01010{left:481.308020pt;}
.xb1_c01010{left:482.531541pt;}
.xe_c01010{left:483.762667pt;}
.x60_c01010{left:484.685711pt;}
.x89_c01010{left:487.394427pt;}
.xa7_c01010{left:488.388053pt;}
.x16_c01010{left:489.944441pt;}
.x77_c01010{left:492.863109pt;}
.x92_c01010{left:495.535239pt;}
.xb2_c01010{left:496.956875pt;}
.x9b_c01010{left:499.098580pt;}
.x96_c01010{left:500.804779pt;}
.x17_c01010{left:502.721775pt;}
.x29_c01010{left:508.230687pt;}
.x21_c01010{left:509.675576pt;}
.x3b_c01010{left:511.356568pt;}
.x4f_c01010{left:512.563243pt;}
.x58_c01010{left:514.198576pt;}
.xad_c01010{left:515.434667pt;}
.xa1_c01010{left:518.605333pt;}
.xb3_c01010{left:524.806208pt;}
.xc4_c01010{left:547.801333pt;}
.xc5_c01010{left:550.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_c01011 {
    display:none;
  }
  .loading-indicator_c01011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01011 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01011 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01011" -> "#page-container .classname_c01011")
 */
.pf_c01011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01011 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01011 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01011 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01011 {overflow:visible;}
  }
}
.c_c01011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01011 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01011:after { /* webkit #35443 */
  content: '';
}
.t_c01011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01011 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01011 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01011 { /* info for Javascript */
  display:none;
}
.l_c01011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.000000;font-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_c01011{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);}
.m11e_c01011{transform:matrix(0.011497,0.000264,-0.005748,0.249934,0,0);-ms-transform:matrix(0.011497,0.000264,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.011497,0.000264,-0.005748,0.249934,0,0);}
.m69_c01011{transform:matrix(0.016782,0.000336,-0.004999,0.249950,0,0);-ms-transform:matrix(0.016782,0.000336,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.016782,0.000336,-0.004999,0.249950,0,0);}
.m55_c01011{transform:matrix(0.084553,0.001691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.084553,0.001691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.084553,0.001691,-0.004999,0.249950,0,0);}
.m46_c01011{transform:matrix(0.095591,0.001912,-0.004999,0.249950,0,0);-ms-transform:matrix(0.095591,0.001912,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.095591,0.001912,-0.004999,0.249950,0,0);}
.m68_c01011{transform:matrix(0.098245,0.001965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.098245,0.001965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.098245,0.001965,-0.004999,0.249950,0,0);}
.m36_c01011{transform:matrix(0.103419,0.002068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.103419,0.002068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.103419,0.002068,-0.004999,0.249950,0,0);}
.m73_c01011{transform:matrix(0.103669,0.002073,-0.004999,0.249950,0,0);-ms-transform:matrix(0.103669,0.002073,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.103669,0.002073,-0.004999,0.249950,0,0);}
.m6b_c01011{transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.123565,0.002471,-0.004999,0.249950,0,0);}
.m127_c01011{transform:matrix(0.135509,0.003523,-0.006498,0.249916,0,0);-ms-transform:matrix(0.135509,0.003523,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.135509,0.003523,-0.006498,0.249916,0,0);}
.m6e_c01011{transform:matrix(0.136373,0.002727,-0.004999,0.249950,0,0);-ms-transform:matrix(0.136373,0.002727,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.136373,0.002727,-0.004999,0.249950,0,0);}
.m7c_c01011{transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137435,0.000000,0.000000,0.250000,0,0);}
.me3_c01011{transform:matrix(0.137795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137795,0.000000,0.000000,0.250000,0,0);}
.m74_c01011{transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138640,0.000000,0.000000,0.250000,0,0);}
.m56_c01011{transform:matrix(0.140337,0.002807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.140337,0.002807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.140337,0.002807,-0.004999,0.249950,0,0);}
.m7_c01011{transform:matrix(0.142671,0.002853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.142671,0.002853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.142671,0.002853,-0.004999,0.249950,0,0);}
.m1d_c01011{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);}
.mec_c01011{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);}
.m41_c01011{transform:matrix(0.145001,0.002900,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145001,0.002900,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145001,0.002900,-0.004999,0.249950,0,0);}
.m1_c01011{transform:matrix(0.146816,0.002936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.146816,0.002936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.146816,0.002936,-0.004999,0.249950,0,0);}
.m79_c01011{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);}
.m71_c01011{transform:matrix(0.150565,0.003011,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150565,0.003011,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150565,0.003011,-0.004999,0.249950,0,0);}
.ma6_c01011{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);}
.m47_c01011{transform:matrix(0.151340,0.003027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151340,0.003027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151340,0.003027,-0.004999,0.249950,0,0);}
.mda_c01011{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m144_c01011{transform:matrix(0.151562,0.005158,-0.008504,0.249855,0,0);-ms-transform:matrix(0.151562,0.005158,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.151562,0.005158,-0.008504,0.249855,0,0);}
.me1_c01011{transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);}
.mb_c01011{transform:matrix(0.152824,0.003056,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152824,0.003056,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152824,0.003056,-0.004999,0.249950,0,0);}
.m6_c01011{transform:matrix(0.153439,0.003069,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153439,0.003069,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153439,0.003069,-0.004999,0.249950,0,0);}
.m97_c01011{transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153440,0.000000,0.000000,0.250000,0,0);}
.m20_c01011{transform:matrix(0.153624,0.003072,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153624,0.003072,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153624,0.003072,-0.004999,0.249950,0,0);}
.m2d_c01011{transform:matrix(0.153794,0.003076,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153794,0.003076,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153794,0.003076,-0.004999,0.249950,0,0);}
.m93_c01011{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);}
.me_c01011{transform:matrix(0.154064,0.003081,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154064,0.003081,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154064,0.003081,-0.004999,0.249950,0,0);}
.m2e_c01011{transform:matrix(0.154329,0.003087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154329,0.003087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154329,0.003087,-0.004999,0.249950,0,0);}
.mef_c01011{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);}
.m6c_c01011{transform:matrix(0.156279,0.003126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156279,0.003126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156279,0.003126,-0.004999,0.249950,0,0);}
.m94_c01011{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);}
.mce_c01011{transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156905,0.000000,0.000000,0.250000,0,0);}
.mc0_c01011{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);}
.mdd_c01011{transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157410,0.000000,0.000000,0.250000,0,0);}
.m7d_c01011{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);}
.m76_c01011{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.m96_c01011{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);}
.m99_c01011{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);}
.m142_c01011{transform:matrix(0.159073,0.005414,-0.008504,0.249855,0,0);-ms-transform:matrix(0.159073,0.005414,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.159073,0.005414,-0.008504,0.249855,0,0);}
.m3d_c01011{transform:matrix(0.159998,0.003200,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159998,0.003200,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159998,0.003200,-0.004999,0.249950,0,0);}
.me6_c01011{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);}
.m110_c01011{transform:matrix(0.160201,0.003524,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160201,0.003524,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160201,0.003524,-0.005499,0.249940,0,0);}
.mc_c01011{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);}
.m13_c01011{transform:matrix(0.161508,0.003230,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161508,0.003230,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161508,0.003230,-0.004999,0.249950,0,0);}
.m3e_c01011{transform:matrix(0.161588,0.003232,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161588,0.003232,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161588,0.003232,-0.004999,0.249950,0,0);}
.m22_c01011{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);}
.m8f_c01011{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);}
.mab_c01011{transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);}
.m1c_c01011{transform:matrix(0.163317,0.003266,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163317,0.003266,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163317,0.003266,-0.004999,0.249950,0,0);}
.ma9_c01011{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);}
.m18_c01011{transform:matrix(0.164317,0.003286,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164317,0.003286,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164317,0.003286,-0.004999,0.249950,0,0);}
.mea_c01011{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);}
.me4_c01011{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);}
.mee_c01011{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);}
.m4_c01011{transform:matrix(0.166857,0.003337,-0.004999,0.249950,0,0);-ms-transform:matrix(0.166857,0.003337,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.166857,0.003337,-0.004999,0.249950,0,0);}
.mcd_c01011{transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167640,0.000000,0.000000,0.250000,0,0);}
.m1a_c01011{transform:matrix(0.167651,0.003353,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167651,0.003353,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167651,0.003353,-0.004999,0.249950,0,0);}
.mad_c01011{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);}
.m9_c01011{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);}
.ma7_c01011{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);}
.me5_c01011{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);}
.m13e_c01011{transform:matrix(0.170047,0.005787,-0.008504,0.249855,0,0);-ms-transform:matrix(0.170047,0.005787,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.170047,0.005787,-0.008504,0.249855,0,0);}
.m12_c01011{transform:matrix(0.170316,0.003406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170316,0.003406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170316,0.003406,-0.004999,0.249950,0,0);}
.m95_c01011{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);}
.m80_c01011{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);}
.m91_c01011{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);}
.m62_c01011{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);}
.m140_c01011{transform:matrix(0.171091,0.005823,-0.008504,0.249855,0,0);-ms-transform:matrix(0.171091,0.005823,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.171091,0.005823,-0.008504,0.249855,0,0);}
.m145_c01011{transform:matrix(0.171346,0.005832,-0.008504,0.249855,0,0);-ms-transform:matrix(0.171346,0.005832,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.171346,0.005832,-0.008504,0.249855,0,0);}
.m11_c01011{transform:matrix(0.171846,0.003437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171846,0.003437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171846,0.003437,-0.004999,0.249950,0,0);}
.m2f_c01011{transform:matrix(0.172321,0.003446,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172321,0.003446,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172321,0.003446,-0.004999,0.249950,0,0);}
.md_c01011{transform:matrix(0.172910,0.003458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172910,0.003458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172910,0.003458,-0.004999,0.249950,0,0);}
.m3f_c01011{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);}
.mf7_c01011{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);}
.m1e_c01011{transform:matrix(0.173545,0.003471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173545,0.003471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173545,0.003471,-0.004999,0.249950,0,0);}
.mb8_c01011{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);}
.md4_c01011{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);}
.m75_c01011{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);}
.m61_c01011{transform:matrix(0.174875,0.003498,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174875,0.003498,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174875,0.003498,-0.004999,0.249950,0,0);}
.ma5_c01011{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);}
.mbc_c01011{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);}
.m16_c01011{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);}
.mae_c01011{transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176515,0.000000,0.000000,0.250000,0,0);}
.mf8_c01011{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);}
.mcc_c01011{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);}
.meb_c01011{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);}
.mc2_c01011{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);}
.me9_c01011{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);}
.m89_c01011{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);}
.m7b_c01011{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);}
.mf0_c01011{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);}
.m25_c01011{transform:matrix(0.178164,0.003563,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178164,0.003563,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178164,0.003563,-0.004999,0.249950,0,0);}
.mc9_c01011{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);}
.m45_c01011{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);}
.mde_c01011{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);}
.m32_c01011{transform:matrix(0.179629,0.003593,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179629,0.003593,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179629,0.003593,-0.004999,0.249950,0,0);}
.mc1_c01011{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);}
.m78_c01011{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);}
.m83_c01011{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);}
.mf_c01011{transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180234,0.003605,-0.004999,0.249950,0,0);}
.m39_c01011{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);}
.mdf_c01011{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);}
.m21_c01011{transform:matrix(0.181329,0.003627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181329,0.003627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181329,0.003627,-0.004999,0.249950,0,0);}
.m90_c01011{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);}
.m92_c01011{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);}
.m35_c01011{transform:matrix(0.182094,0.003642,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182094,0.003642,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182094,0.003642,-0.004999,0.249950,0,0);}
.maa_c01011{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);}
.m9a_c01011{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);}
.m2b_c01011{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);}
.m107_c01011{transform:matrix(0.182953,0.005306,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182953,0.005306,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182953,0.005306,-0.007247,0.249895,0,0);}
.mf2_c01011{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);}
.mbe_c01011{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);}
.m13a_c01011{transform:matrix(0.183239,0.006236,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183239,0.006236,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183239,0.006236,-0.008504,0.249855,0,0);}
.mcf_c01011{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);}
.mc8_c01011{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);}
.m31_c01011{transform:matrix(0.183368,0.003667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183368,0.003667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183368,0.003667,-0.004999,0.249950,0,0);}
.mb9_c01011{transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183515,0.000000,0.000000,0.250000,0,0);}
.mac_c01011{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);}
.m54_c01011{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);}
.md1_c01011{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);}
.mc6_c01011{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);}
.m15_c01011{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);}
.m9b_c01011{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);}
.m8b_c01011{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);}
.mb3_c01011{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);}
.ma8_c01011{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);}
.m1f_c01011{transform:matrix(0.185183,0.003704,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185183,0.003704,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185183,0.003704,-0.004999,0.249950,0,0);}
.m103_c01011{transform:matrix(0.185412,0.005377,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185412,0.005377,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185412,0.005377,-0.007247,0.249895,0,0);}
.m58_c01011{transform:matrix(0.185503,0.003710,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185503,0.003710,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185503,0.003710,-0.004999,0.249950,0,0);}
.m5d_c01011{transform:matrix(0.185788,0.003716,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185788,0.003716,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185788,0.003716,-0.004999,0.249950,0,0);}
.mc5_c01011{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);}
.m11b_c01011{transform:matrix(0.186006,0.004278,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186006,0.004278,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186006,0.004278,-0.005748,0.249934,0,0);}
.m19_c01011{transform:matrix(0.186028,0.003721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186028,0.003721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186028,0.003721,-0.004999,0.249950,0,0);}
.m63_c01011{transform:matrix(0.186123,0.003722,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186123,0.003722,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186123,0.003722,-0.004999,0.249950,0,0);}
.mbf_c01011{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);}
.m1b_c01011{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);}
.m24_c01011{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);}
.m5_c01011{transform:matrix(0.187188,0.003744,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187188,0.003744,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187188,0.003744,-0.004999,0.249950,0,0);}
.mc4_c01011{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);}
.m146_c01011{transform:matrix(0.187531,0.006382,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187531,0.006382,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187531,0.006382,-0.008504,0.249855,0,0);}
.m5c_c01011{transform:matrix(0.187592,0.003752,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187592,0.003752,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187592,0.003752,-0.004999,0.249950,0,0);}
.m3c_c01011{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);}
.m141_c01011{transform:matrix(0.188241,0.006407,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188241,0.006407,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188241,0.006407,-0.008504,0.249855,0,0);}
.m7a_c01011{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);}
.m40_c01011{transform:matrix(0.188602,0.003772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188602,0.003772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188602,0.003772,-0.004999,0.249950,0,0);}
.m13f_c01011{transform:matrix(0.188681,0.006422,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188681,0.006422,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188681,0.006422,-0.008504,0.249855,0,0);}
.mb1_c01011{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);}
.m81_c01011{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);}
.mbd_c01011{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);}
.m23_c01011{transform:matrix(0.189422,0.003788,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189422,0.003788,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189422,0.003788,-0.004999,0.249950,0,0);}
.m7f_c01011{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);}
.m9f_c01011{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);}
.mfa_c01011{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);}
.m37_c01011{transform:matrix(0.190482,0.003810,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190482,0.003810,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190482,0.003810,-0.004999,0.249950,0,0);}
.maf_c01011{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);}
.me0_c01011{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);}
.m3_c01011{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);}
.m84_c01011{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);}
.ma1_c01011{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);}
.md0_c01011{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);}
.m7e_c01011{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);}
.mfd_c01011{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);}
.ma_c01011{transform:matrix(0.192492,0.003850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192492,0.003850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192492,0.003850,-0.004999,0.249950,0,0);}
.mb7_c01011{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);}
.m72_c01011{transform:matrix(0.193491,0.003870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193491,0.003870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193491,0.003870,-0.004999,0.249950,0,0);}
.m6f_c01011{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);}
.m85_c01011{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);}
.m9e_c01011{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);}
.m98_c01011{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);}
.m138_c01011{transform:matrix(0.194372,0.006615,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194372,0.006615,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194372,0.006615,-0.008504,0.249855,0,0);}
.m60_c01011{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);}
.m108_c01011{transform:matrix(0.195538,0.005671,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195538,0.005671,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195538,0.005671,-0.007247,0.249895,0,0);}
.m2c_c01011{transform:matrix(0.195626,0.003913,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195626,0.003913,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195626,0.003913,-0.004999,0.249950,0,0);}
.m77_c01011{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);}
.m13c_c01011{transform:matrix(0.195697,0.006660,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195697,0.006660,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195697,0.006660,-0.008504,0.249855,0,0);}
.mc7_c01011{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);}
.mf9_c01011{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.mb4_c01011{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);}
.m27_c01011{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);}
.me8_c01011{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{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);}
.m67_c01011{transform:matrix(0.197800,0.003956,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197800,0.003956,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197800,0.003956,-0.004999,0.249950,0,0);}
.m64_c01011{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);}
.md5_c01011{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);}
.m5e_c01011{transform:matrix(0.198275,0.003966,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198275,0.003966,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198275,0.003966,-0.004999,0.249950,0,0);}
.m6d_c01011{transform:matrix(0.198515,0.003970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198515,0.003970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198515,0.003970,-0.004999,0.249950,0,0);}
.mfe_c01011{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);}
.mb2_c01011{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);}
.mf1_c01011{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);}
.m13b_c01011{transform:matrix(0.198920,0.006770,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198920,0.006770,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198920,0.006770,-0.008504,0.249855,0,0);}
.m17_c01011{transform:matrix(0.199075,0.003982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199075,0.003982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199075,0.003982,-0.004999,0.249950,0,0);}
.m28_c01011{transform:matrix(0.199095,0.003982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199095,0.003982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199095,0.003982,-0.004999,0.249950,0,0);}
.mdb_c01011{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);}
.m57_c01011{transform:matrix(0.199365,0.003987,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199365,0.003987,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199365,0.003987,-0.004999,0.249950,0,0);}
.m2a_c01011{transform:matrix(0.199770,0.003995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199770,0.003995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199770,0.003995,-0.004999,0.249950,0,0);}
.m112_c01011{transform:matrix(0.201076,0.004424,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201076,0.004424,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201076,0.004424,-0.005499,0.249940,0,0);}
.m8e_c01011{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);}
.m100_c01011{transform:matrix(0.201520,0.005844,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201520,0.005844,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201520,0.005844,-0.007247,0.249895,0,0);}
.m130_c01011{transform:matrix(0.201609,0.007265,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201609,0.007265,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201609,0.007265,-0.009003,0.249838,0,0);}
.mca_c01011{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);}
.mbb_c01011{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);}
.m139_c01011{transform:matrix(0.201918,0.006872,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201918,0.006872,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201918,0.006872,-0.008504,0.249855,0,0);}
.m113_c01011{transform:matrix(0.201981,0.004444,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201981,0.004444,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201981,0.004444,-0.005499,0.249940,0,0);}
.m104_c01011{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);}
.m109_c01011{transform:matrix(0.202191,0.004448,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202191,0.004448,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202191,0.004448,-0.005499,0.249940,0,0);}
.m3a_c01011{transform:matrix(0.202255,0.004045,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202255,0.004045,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202255,0.004045,-0.004999,0.249950,0,0);}
.mf4_c01011{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);}
.md2_c01011{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);}
.mc3_c01011{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);}
.m88_c01011{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);}
.m143_c01011{transform:matrix(0.202997,0.006909,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202997,0.006909,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202997,0.006909,-0.008504,0.249855,0,0);}
.ma2_c01011{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);}
.m49_c01011{transform:matrix(0.203929,0.004079,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203929,0.004079,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203929,0.004079,-0.004999,0.249950,0,0);}
.m106_c01011{transform:matrix(0.204029,0.005917,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204029,0.005917,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204029,0.005917,-0.007247,0.249895,0,0);}
.m111_c01011{transform:matrix(0.204136,0.004491,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204136,0.004491,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204136,0.004491,-0.005499,0.249940,0,0);}
.m3b_c01011{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);}
.m122_c01011{transform:matrix(0.206431,0.005161,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206431,0.005161,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206431,0.005161,-0.006248,0.249922,0,0);}
.m8c_c01011{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);}
.m11a_c01011{transform:matrix(0.207145,0.004764,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207145,0.004764,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207145,0.004764,-0.005748,0.249934,0,0);}
.m59_c01011{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);}
.m34_c01011{transform:matrix(0.207364,0.004147,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207364,0.004147,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207364,0.004147,-0.004999,0.249950,0,0);}
.ma4_c01011{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);}
.m114_c01011{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);}
.me7_c01011{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);}
.m11c_c01011{transform:matrix(0.209180,0.004811,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209180,0.004811,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209180,0.004811,-0.005748,0.249934,0,0);}
.m9d_c01011{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);}
.m137_c01011{transform:matrix(0.209279,0.007123,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209279,0.007123,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209279,0.007123,-0.008504,0.249855,0,0);}
.m10b_c01011{transform:matrix(0.209659,0.004613,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209659,0.004613,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209659,0.004613,-0.005499,0.249940,0,0);}
.m105_c01011{transform:matrix(0.209722,0.006082,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209722,0.006082,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209722,0.006082,-0.007247,0.249895,0,0);}
.mf5_c01011{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);}
.m12a_c01011{transform:matrix(0.210904,0.005483,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210904,0.005483,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210904,0.005483,-0.006498,0.249916,0,0);}
.m14_c01011{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);}
.m26_c01011{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);}
.md6_c01011{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);}
.m8d_c01011{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);}
.m134_c01011{transform:matrix(0.212532,0.007659,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212532,0.007659,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212532,0.007659,-0.009003,0.249838,0,0);}
.mf6_c01011{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);}
.mfc_c01011{transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);}
.mff_c01011{transform:matrix(0.213875,0.006202,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213875,0.006202,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213875,0.006202,-0.007247,0.249895,0,0);}
.m38_c01011{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);}
.m10e_c01011{transform:matrix(0.214193,0.004712,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214193,0.004712,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214193,0.004712,-0.005499,0.249940,0,0);}
.m123_c01011{transform:matrix(0.214263,0.005357,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214263,0.005357,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214263,0.005357,-0.006248,0.249922,0,0);}
.m5b_c01011{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);}
.md3_c01011{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);}
.mba_c01011{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);}
.md7_c01011{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);}
.m43_c01011{transform:matrix(0.218291,0.004366,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218291,0.004366,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218291,0.004366,-0.004999,0.249950,0,0);}
.m8a_c01011{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);}
.m29_c01011{transform:matrix(0.218591,0.004372,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218591,0.004372,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218591,0.004372,-0.004999,0.249950,0,0);}
.ma0_c01011{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);}
.m11d_c01011{transform:matrix(0.219057,0.005038,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219057,0.005038,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219057,0.005038,-0.005748,0.249934,0,0);}
.m12b_c01011{transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);}
.m116_c01011{transform:matrix(0.219322,0.005044,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219322,0.005044,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219322,0.005044,-0.005748,0.249934,0,0);}
.m6a_c01011{transform:matrix(0.219351,0.004387,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219351,0.004387,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219351,0.004387,-0.004999,0.249950,0,0);}
.m128_c01011{transform:matrix(0.219531,0.005708,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219531,0.005708,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219531,0.005708,-0.006498,0.249916,0,0);}
.med_c01011{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);}
.mf3_c01011{transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221605,0.000000,0.000000,0.250000,0,0);}
.m70_c01011{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);}
.mb0_c01011{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);}
.mb6_c01011{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);}
.m66_c01011{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);}
.mfb_c01011{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);}
.mcb_c01011{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);}
.m124_c01011{transform:matrix(0.224455,0.005611,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224455,0.005611,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224455,0.005611,-0.006248,0.249922,0,0);}
.m135_c01011{transform:matrix(0.225564,0.008128,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225564,0.008128,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225564,0.008128,-0.009003,0.249838,0,0);}
.m10_c01011{transform:matrix(0.225580,0.004512,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225580,0.004512,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225580,0.004512,-0.004999,0.249950,0,0);}
.m101_c01011{transform:matrix(0.225895,0.006551,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225895,0.006551,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225895,0.006551,-0.007247,0.249895,0,0);}
.m115_c01011{transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);}
.m133_c01011{transform:matrix(0.227422,0.008195,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227422,0.008195,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227422,0.008195,-0.009003,0.249838,0,0);}
.m82_c01011{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);}
.m10a_c01011{transform:matrix(0.228675,0.005031,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228675,0.005031,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228675,0.005031,-0.005499,0.249940,0,0);}
.m121_c01011{transform:matrix(0.228973,0.005724,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228973,0.005724,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228973,0.005724,-0.006248,0.249922,0,0);}
.m129_c01011{transform:matrix(0.229283,0.005961,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229283,0.005961,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229283,0.005961,-0.006498,0.249916,0,0);}
.m86_c01011{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);}
.m12d_c01011{transform:matrix(0.229992,0.005980,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229992,0.005980,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229992,0.005980,-0.006498,0.249916,0,0);}
.m8_c01011{transform:matrix(0.230159,0.004603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230159,0.004603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230159,0.004603,-0.004999,0.249950,0,0);}
.m65_c01011{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);}
.m120_c01011{transform:matrix(0.231163,0.005779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231163,0.005779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231163,0.005779,-0.006248,0.249922,0,0);}
.m5f_c01011{transform:matrix(0.231524,0.004630,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231524,0.004630,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231524,0.004630,-0.004999,0.249950,0,0);}
.m33_c01011{transform:matrix(0.231634,0.004633,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231634,0.004633,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231634,0.004633,-0.004999,0.249950,0,0);}
.mdc_c01011{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);}
.m11f_c01011{transform:matrix(0.232928,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232928,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232928,0.005357,-0.005748,0.249934,0,0);}
.m87_c01011{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);}
.m30_c01011{transform:matrix(0.240022,0.004800,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240022,0.004800,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240022,0.004800,-0.004999,0.249950,0,0);}
.m125_c01011{transform:matrix(0.240885,0.006022,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240885,0.006022,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240885,0.006022,-0.006248,0.249922,0,0);}
.m12c_c01011{transform:matrix(0.243778,0.006338,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243778,0.006338,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243778,0.006338,-0.006498,0.249916,0,0);}
.m4e_c01011{transform:matrix(0.244011,0.004880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244011,0.004880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244011,0.004880,-0.004999,0.249950,0,0);}
.m5a_c01011{transform:matrix(0.248935,0.004979,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248935,0.004979,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248935,0.004979,-0.004999,0.249950,0,0);}
.m118_c01011{transform:matrix(0.250244,0.005756,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250244,0.005756,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250244,0.005756,-0.005748,0.249934,0,0);}
.md8_c01011{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m9c_c01011{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m12e_c01011{transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);-ms-transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);}
.m53_c01011{transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);}
.m13d_c01011{transform:matrix(0.259360,0.008827,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259360,0.008827,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259360,0.008827,-0.008504,0.249855,0,0);}
.m10c_c01011{transform:matrix(0.262561,0.005776,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262561,0.005776,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262561,0.005776,-0.005499,0.249940,0,0);}
.me2_c01011{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m44_c01011{transform:matrix(0.266622,0.005332,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266622,0.005332,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266622,0.005332,-0.004999,0.249950,0,0);}
.m4d_c01011{transform:matrix(0.267976,0.005360,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267976,0.005360,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267976,0.005360,-0.004999,0.249950,0,0);}
.m10f_c01011{transform:matrix(0.274179,0.006032,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274179,0.006032,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274179,0.006032,-0.005499,0.249940,0,0);}
.m4f_c01011{transform:matrix(0.274305,0.005486,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274305,0.005486,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274305,0.005486,-0.004999,0.249950,0,0);}
.m131_c01011{transform:matrix(0.281717,0.010152,-0.009003,0.249838,0,0);-ms-transform:matrix(0.281717,0.010152,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.281717,0.010152,-0.009003,0.249838,0,0);}
.mb5_c01011{transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);}
.m48_c01011{transform:matrix(0.288277,0.005766,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288277,0.005766,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288277,0.005766,-0.004999,0.249950,0,0);}
.m119_c01011{transform:matrix(0.290703,0.006686,-0.005748,0.249934,0,0);-ms-transform:matrix(0.290703,0.006686,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.290703,0.006686,-0.005748,0.249934,0,0);}
.m51_c01011{transform:matrix(0.297770,0.005955,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297770,0.005955,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297770,0.005955,-0.004999,0.249950,0,0);}
.m117_c01011{transform:matrix(0.298271,0.006860,-0.005748,0.249934,0,0);-ms-transform:matrix(0.298271,0.006860,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.298271,0.006860,-0.005748,0.249934,0,0);}
.m52_c01011{transform:matrix(0.298410,0.005968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298410,0.005968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298410,0.005968,-0.004999,0.249950,0,0);}
.m132_c01011{transform:matrix(0.300520,0.010830,-0.009003,0.249838,0,0);-ms-transform:matrix(0.300520,0.010830,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.300520,0.010830,-0.009003,0.249838,0,0);}
.m4c_c01011{transform:matrix(0.300880,0.006018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300880,0.006018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300880,0.006018,-0.004999,0.249950,0,0);}
.m126_c01011{transform:matrix(0.306094,0.007652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.306094,0.007652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.306094,0.007652,-0.006248,0.249922,0,0);}
.m50_c01011{transform:matrix(0.307563,0.006151,-0.004999,0.249950,0,0);-ms-transform:matrix(0.307563,0.006151,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.307563,0.006151,-0.004999,0.249950,0,0);}
.m4a_c01011{transform:matrix(0.318261,0.006365,-0.004999,0.249950,0,0);-ms-transform:matrix(0.318261,0.006365,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.318261,0.006365,-0.004999,0.249950,0,0);}
.m0_c01011{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);}
.m42_c01011{transform:matrix(0.336928,0.006739,-0.004999,0.249950,0,0);-ms-transform:matrix(0.336928,0.006739,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.336928,0.006739,-0.004999,0.249950,0,0);}
.md9_c01011{transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);}
.m102_c01011{transform:matrix(0.344920,0.010003,-0.007247,0.249895,0,0);-ms-transform:matrix(0.344920,0.010003,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.344920,0.010003,-0.007247,0.249895,0,0);}
.m4b_c01011{transform:matrix(0.345191,0.006904,-0.004999,0.249950,0,0);-ms-transform:matrix(0.345191,0.006904,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.345191,0.006904,-0.004999,0.249950,0,0);}
.m12f_c01011{transform:matrix(0.377038,0.009803,-0.006498,0.249916,0,0);-ms-transform:matrix(0.377038,0.009803,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.377038,0.009803,-0.006498,0.249916,0,0);}
.m10d_c01011{transform:matrix(0.399783,0.008795,-0.005499,0.249940,0,0);-ms-transform:matrix(0.399783,0.008795,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.399783,0.008795,-0.005499,0.249940,0,0);}
.m136_c01011{transform:matrix(0.424374,0.014443,-0.008504,0.249855,0,0);-ms-transform:matrix(0.424374,0.014443,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.424374,0.014443,-0.008504,0.249855,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls0_c01011{letter-spacing:0.000000px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:0.000000px;}
.fc0_c01011{color:transparent;}
.fs0_c01011{font-size:26.250000px;}
.fs5_c01011{font-size:45.159029px;}
.fs13_c01011{font-size:46.214435px;}
.fs14_c01011{font-size:46.215613px;}
.fs15_c01011{font-size:50.382281px;}
.fs16_c01011{font-size:52.477867px;}
.fs12_c01011{font-size:52.513884px;}
.fs11_c01011{font-size:53.562958px;}
.fs17_c01011{font-size:59.824768px;}
.fsb_c01011{font-size:61.950000px;}
.fse_c01011{font-size:63.000000px;}
.fsf_c01011{font-size:67.200000px;}
.fs3_c01011{font-size:67.213439px;}
.fs7_c01011{font-size:68.263649px;}
.fs9_c01011{font-size:69.300000px;}
.fs4_c01011{font-size:69.313859px;}
.fs10_c01011{font-size:69.329135px;}
.fs1_c01011{font-size:71.414279px;}
.fs8_c01011{font-size:72.450000px;}
.fs2_c01011{font-size:72.464489px;}
.fs6_c01011{font-size:73.514699px;}
.fsc_c01011{font-size:75.600000px;}
.fsa_c01011{font-size:76.650000px;}
.fsd_c01011{font-size:80.850000px;}
.y0_c01011{bottom:0.000000px;}
.y149_c01011{bottom:157.628939px;}
.y148_c01011{bottom:158.114902px;}
.y147_c01011{bottom:158.523739px;}
.y146_c01011{bottom:159.765332px;}
.y145_c01011{bottom:160.280916px;}
.y144_c01011{bottom:160.591311px;}
.y143_c01011{bottom:160.744188px;}
.y142_c01011{bottom:162.155370px;}
.y141_c01011{bottom:162.821760px;}
.y140_c01011{bottom:172.202097px;}
.y13f_c01011{bottom:174.375258px;}
.y13e_c01011{bottom:175.005210px;}
.y13d_c01011{bottom:176.182086px;}
.y13c_c01011{bottom:176.833815px;}
.y13b_c01011{bottom:177.770583px;}
.y13a_c01011{bottom:179.295432px;}
.y139_c01011{bottom:180.910500px;}
.y138_c01011{bottom:192.250704px;}
.y137_c01011{bottom:192.820674px;}
.y136_c01011{bottom:193.611342px;}
.y135_c01011{bottom:195.455550px;}
.y134_c01011{bottom:196.934502px;}
.y133_c01011{bottom:198.462000px;}
.y132_c01011{bottom:209.057952px;}
.y131_c01011{bottom:209.536053px;}
.y130_c01011{bottom:210.642093px;}
.y12f_c01011{bottom:211.421781px;}
.y12e_c01011{bottom:212.510232px;}
.y12d_c01011{bottom:213.121869px;}
.y12c_c01011{bottom:214.343466px;}
.y12b_c01011{bottom:215.172099px;}
.y12a_c01011{bottom:215.463000px;}
.y129_c01011{bottom:227.724225px;}
.y128_c01011{bottom:228.282450px;}
.y127_c01011{bottom:230.282513px;}
.y126_c01011{bottom:230.846475px;}
.y125_c01011{bottom:231.557887px;}
.y124_c01011{bottom:232.901213px;}
.y123_c01011{bottom:233.826000px;}
.y122_c01011{bottom:246.518462px;}
.y121_c01011{bottom:246.805122px;}
.y120_c01011{bottom:247.344909px;}
.y11f_c01011{bottom:248.003583px;}
.y11e_c01011{bottom:248.550477px;}
.y11d_c01011{bottom:249.208564px;}
.y11c_c01011{bottom:249.546664px;}
.y11b_c01011{bottom:249.819835px;}
.y11a_c01011{bottom:251.017469px;}
.y119_c01011{bottom:252.184500px;}
.y118_c01011{bottom:255.643764px;}
.y117_c01011{bottom:257.427018px;}
.y116_c01011{bottom:258.180573px;}
.y115_c01011{bottom:258.780876px;}
.y114_c01011{bottom:259.549578px;}
.y113_c01011{bottom:259.665738px;}
.y112_c01011{bottom:260.351280px;}
.y111_c01011{bottom:261.137274px;}
.y110_c01011{bottom:261.393816px;}
.y10f_c01011{bottom:262.098795px;}
.y10e_c01011{bottom:263.352993px;}
.y10d_c01011{bottom:264.292866px;}
.y10c_c01011{bottom:265.147500px;}
.y10b_c01011{bottom:310.737471px;}
.y10a_c01011{bottom:313.692687px;}
.y109_c01011{bottom:314.867709px;}
.y108_c01011{bottom:316.830734px;}
.y107_c01011{bottom:318.217427px;}
.y106_c01011{bottom:319.697818px;}
.y105_c01011{bottom:320.264972px;}
.y104_c01011{bottom:320.967540px;}
.y103_c01011{bottom:323.137799px;}
.y102_c01011{bottom:324.280500px;}
.y101_c01011{bottom:333.127500px;}
.y100_c01011{bottom:333.501000px;}
.yff_c01011{bottom:336.709500px;}
.yfe_c01011{bottom:337.191000px;}
.yfd_c01011{bottom:338.652000px;}
.yfc_c01011{bottom:341.155500px;}
.yfb_c01011{bottom:343.060500px;}
.yfa_c01011{bottom:343.744500px;}
.yf9_c01011{bottom:345.354000px;}
.yf8_c01011{bottom:348.072000px;}
.yf7_c01011{bottom:348.865500px;}
.yf6_c01011{bottom:356.881500px;}
.yf5_c01011{bottom:357.913500px;}
.yf4_c01011{bottom:358.672500px;}
.yf3_c01011{bottom:360.397500px;}
.yf2_c01011{bottom:361.591500px;}
.yf1_c01011{bottom:363.426000px;}
.yf0_c01011{bottom:364.518000px;}
.yef_c01011{bottom:365.889000px;}
.yee_c01011{bottom:366.619500px;}
.yed_c01011{bottom:368.482500px;}
.yec_c01011{bottom:369.208500px;}
.yeb_c01011{bottom:370.062000px;}
.yea_c01011{bottom:371.535000px;}
.ye9_c01011{bottom:381.571500px;}
.ye8_c01011{bottom:382.311000px;}
.ye7_c01011{bottom:384.330000px;}
.ye6_c01011{bottom:385.968000px;}
.ye5_c01011{bottom:387.442500px;}
.ye4_c01011{bottom:389.086500px;}
.ye3_c01011{bottom:389.743500px;}
.ye2_c01011{bottom:390.826500px;}
.ye1_c01011{bottom:392.688000px;}
.ye0_c01011{bottom:393.991500px;}
.ydf_c01011{bottom:395.568000px;}
.yde_c01011{bottom:402.723000px;}
.ydd_c01011{bottom:404.133000px;}
.ydc_c01011{bottom:405.018000px;}
.ydb_c01011{bottom:405.610500px;}
.yda_c01011{bottom:408.241500px;}
.yd9_c01011{bottom:410.124000px;}
.yd8_c01011{bottom:411.436500px;}
.yd7_c01011{bottom:412.272000px;}
.yd6_c01011{bottom:413.640000px;}
.yd5_c01011{bottom:414.696000px;}
.yd4_c01011{bottom:416.514000px;}
.yd3_c01011{bottom:417.439500px;}
.yd2_c01011{bottom:426.585000px;}
.yd1_c01011{bottom:427.372500px;}
.yd0_c01011{bottom:429.205500px;}
.ycf_c01011{bottom:429.897000px;}
.yce_c01011{bottom:432.091500px;}
.ycd_c01011{bottom:432.756000px;}
.ycc_c01011{bottom:435.565500px;}
.ycb_c01011{bottom:436.848000px;}
.yca_c01011{bottom:438.022500px;}
.yc9_c01011{bottom:439.849500px;}
.yc8_c01011{bottom:447.793500px;}
.yc7_c01011{bottom:448.551000px;}
.yc6_c01011{bottom:450.135000px;}
.yc5_c01011{bottom:452.427000px;}
.yc4_c01011{bottom:453.658500px;}
.yc3_c01011{bottom:455.229000px;}
.yc2_c01011{bottom:456.681000px;}
.yc1_c01011{bottom:457.618500px;}
.yc0_c01011{bottom:459.051000px;}
.ybf_c01011{bottom:460.255500px;}
.ybe_c01011{bottom:461.602500px;}
.ybd_c01011{bottom:463.162500px;}
.ybc_c01011{bottom:464.143500px;}
.ybb_c01011{bottom:471.505500px;}
.yba_c01011{bottom:472.200000px;}
.yb9_c01011{bottom:473.724000px;}
.yb8_c01011{bottom:474.720000px;}
.yb7_c01011{bottom:476.872500px;}
.yb6_c01011{bottom:477.505500px;}
.yb5_c01011{bottom:478.929000px;}
.yb4_c01011{bottom:480.900000px;}
.yb3_c01011{bottom:483.231000px;}
.yb2_c01011{bottom:485.074500px;}
.yb1_c01011{bottom:486.288000px;}
.yb0_c01011{bottom:493.785000px;}
.yaf_c01011{bottom:495.156000px;}
.yae_c01011{bottom:497.185500px;}
.yad_c01011{bottom:498.181500px;}
.yac_c01011{bottom:500.503500px;}
.yab_c01011{bottom:502.570500px;}
.yaa_c01011{bottom:503.554500px;}
.ya9_c01011{bottom:504.361500px;}
.ya8_c01011{bottom:505.585500px;}
.ya7_c01011{bottom:506.607000px;}
.ya6_c01011{bottom:508.441500px;}
.ya5_c01011{bottom:514.392000px;}
.ya4_c01011{bottom:520.117500px;}
.ya3_c01011{bottom:522.328500px;}
.ya2_c01011{bottom:523.234500px;}
.ya1_c01011{bottom:524.340000px;}
.ya0_c01011{bottom:525.552000px;}
.y9f_c01011{bottom:527.379000px;}
.y9e_c01011{bottom:528.030000px;}
.y9d_c01011{bottom:529.530000px;}
.y9c_c01011{bottom:530.568000px;}
.y9b_c01011{bottom:539.850000px;}
.y9a_c01011{bottom:542.137500px;}
.y99_c01011{bottom:542.716500px;}
.y98_c01011{bottom:543.489000px;}
.y97_c01011{bottom:544.320000px;}
.y96_c01011{bottom:545.655000px;}
.y95_c01011{bottom:546.658500px;}
.y94_c01011{bottom:547.371000px;}
.y93_c01011{bottom:548.910000px;}
.y92_c01011{bottom:549.814500px;}
.y91_c01011{bottom:550.767000px;}
.y90_c01011{bottom:552.375000px;}
.y8f_c01011{bottom:554.322000px;}
.y8e_c01011{bottom:563.947500px;}
.y8d_c01011{bottom:565.035000px;}
.y8c_c01011{bottom:567.112500px;}
.y8b_c01011{bottom:567.780000px;}
.y8a_c01011{bottom:568.696500px;}
.y89_c01011{bottom:570.337500px;}
.y88_c01011{bottom:571.614000px;}
.y87_c01011{bottom:572.479500px;}
.y86_c01011{bottom:574.293000px;}
.y85_c01011{bottom:575.329500px;}
.y84_c01011{bottom:578.083500px;}
.y83_c01011{bottom:588.957000px;}
.y82_c01011{bottom:589.603500px;}
.y81_c01011{bottom:590.101500px;}
.y80_c01011{bottom:592.105500px;}
.y7f_c01011{bottom:593.757000px;}
.y76_c01011{bottom:594.000150px;}
.y7e_c01011{bottom:594.285000px;}
.y75_c01011{bottom:595.055580px;}
.y74_c01011{bottom:595.529940px;}
.y73_c01011{bottom:598.484910px;}
.y72_c01011{bottom:599.750910px;}
.y71_c01011{bottom:600.442740px;}
.y7d_c01011{bottom:611.557500px;}
.y7c_c01011{bottom:613.081500px;}
.y7b_c01011{bottom:614.170500px;}
.y7a_c01011{bottom:614.968500px;}
.y79_c01011{bottom:617.031000px;}
.y78_c01011{bottom:617.773500px;}
.y70_c01011{bottom:617.872560px;}
.y6f_c01011{bottom:619.581270px;}
.y6e_c01011{bottom:620.161410px;}
.y6d_c01011{bottom:620.595240px;}
.y6c_c01011{bottom:620.835960px;}
.y6b_c01011{bottom:621.088170px;}
.y6a_c01011{bottom:622.856100px;}
.y77_c01011{bottom:632.746500px;}
.y69_c01011{bottom:633.394830px;}
.y68_c01011{bottom:635.905380px;}
.y67_c01011{bottom:637.296960px;}
.y66_c01011{bottom:638.469150px;}
.y65_c01011{bottom:639.104220px;}
.y64_c01011{bottom:639.901950px;}
.y63_c01011{bottom:642.238140px;}
.y62_c01011{bottom:643.083720px;}
.y61_c01011{bottom:644.313630px;}
.y60_c01011{bottom:645.274080px;}
.y5f_c01011{bottom:656.432160px;}
.y5e_c01011{bottom:658.492740px;}
.y5d_c01011{bottom:659.128470px;}
.y5c_c01011{bottom:661.261680px;}
.y5b_c01011{bottom:661.976400px;}
.y5a_c01011{bottom:663.415980px;}
.y59_c01011{bottom:665.472240px;}
.y58_c01011{bottom:666.262020px;}
.y57_c01011{bottom:666.660840px;}
.y56_c01011{bottom:667.682820px;}
.y55_c01011{bottom:681.028500px;}
.y54_c01011{bottom:683.157450px;}
.y53_c01011{bottom:684.071700px;}
.y52_c01011{bottom:685.420920px;}
.y51_c01011{bottom:686.054040px;}
.y50_c01011{bottom:687.007440px;}
.y4f_c01011{bottom:687.816000px;}
.y4e_c01011{bottom:688.420020px;}
.y4d_c01011{bottom:689.824110px;}
.y4c_c01011{bottom:691.178370px;}
.y4b_c01011{bottom:703.530900px;}
.y4a_c01011{bottom:703.753230px;}
.y49_c01011{bottom:704.581710px;}
.y48_c01011{bottom:705.020100px;}
.y47_c01011{bottom:706.450020px;}
.y46_c01011{bottom:707.062830px;}
.y45_c01011{bottom:708.432450px;}
.y44_c01011{bottom:708.597270px;}
.y43_c01011{bottom:709.658040px;}
.y42_c01011{bottom:710.293710px;}
.y41_c01011{bottom:712.199760px;}
.y40_c01011{bottom:713.326590px;}
.y3f_c01011{bottom:723.906270px;}
.y3e_c01011{bottom:724.425000px;}
.y3d_c01011{bottom:725.901720px;}
.y3c_c01011{bottom:727.457100px;}
.y3b_c01011{bottom:728.792730px;}
.y3a_c01011{bottom:730.095960px;}
.y39_c01011{bottom:730.848570px;}
.y38_c01011{bottom:731.306670px;}
.y37_c01011{bottom:732.242490px;}
.y36_c01011{bottom:733.505970px;}
.y35_c01011{bottom:733.984830px;}
.y34_c01011{bottom:735.202740px;}
.y33_c01011{bottom:749.737530px;}
.y32_c01011{bottom:750.356580px;}
.y31_c01011{bottom:751.189320px;}
.y30_c01011{bottom:751.460040px;}
.y2f_c01011{bottom:751.852830px;}
.y2e_c01011{bottom:753.106530px;}
.y2d_c01011{bottom:754.160880px;}
.y2c_c01011{bottom:755.010420px;}
.y2b_c01011{bottom:756.053640px;}
.y2a_c01011{bottom:756.729870px;}
.y29_c01011{bottom:757.268250px;}
.y28_c01011{bottom:758.623530px;}
.y27_c01011{bottom:758.964180px;}
.y26_c01011{bottom:770.245440px;}
.y25_c01011{bottom:772.260870px;}
.y24_c01011{bottom:773.245950px;}
.y23_c01011{bottom:773.829060px;}
.y22_c01011{bottom:774.412800px;}
.y21_c01011{bottom:774.837780px;}
.y20_c01011{bottom:776.136450px;}
.y1f_c01011{bottom:778.217010px;}
.y1e_c01011{bottom:778.838490px;}
.y1d_c01011{bottom:779.524860px;}
.y1c_c01011{bottom:780.199170px;}
.y1b_c01011{bottom:781.378950px;}
.y1a_c01011{bottom:793.289520px;}
.y19_c01011{bottom:793.810980px;}
.y18_c01011{bottom:795.002520px;}
.y17_c01011{bottom:796.088880px;}
.y16_c01011{bottom:796.760160px;}
.y15_c01011{bottom:797.723550px;}
.y14_c01011{bottom:798.667740px;}
.y13_c01011{bottom:800.009820px;}
.y12_c01011{bottom:800.649630px;}
.y11_c01011{bottom:801.096960px;}
.y10_c01011{bottom:802.884990px;}
.yf_c01011{bottom:803.792550px;}
.ye_c01011{bottom:817.542810px;}
.yd_c01011{bottom:818.502210px;}
.yc_c01011{bottom:819.957000px;}
.yb_c01011{bottom:820.610370px;}
.ya_c01011{bottom:821.469120px;}
.y9_c01011{bottom:821.895960px;}
.y8_c01011{bottom:822.484860px;}
.y7_c01011{bottom:822.911040px;}
.y6_c01011{bottom:823.537530px;}
.y5_c01011{bottom:824.369280px;}
.y4_c01011{bottom:825.069840px;}
.y3_c01011{bottom:825.833460px;}
.y2_c01011{bottom:826.206000px;}
.y1_c01011{bottom:930.286500px;}
.h2_c01011{height:26.250000px;}
.h7_c01011{height:45.159029px;}
.h15_c01011{height:46.214435px;}
.h16_c01011{height:46.215613px;}
.h17_c01011{height:50.382281px;}
.h18_c01011{height:52.477867px;}
.h14_c01011{height:52.513884px;}
.h13_c01011{height:53.562958px;}
.h19_c01011{height:59.824768px;}
.hd_c01011{height:61.950000px;}
.h10_c01011{height:63.000000px;}
.h11_c01011{height:67.200000px;}
.h5_c01011{height:67.213439px;}
.h9_c01011{height:68.263649px;}
.hb_c01011{height:69.300000px;}
.h6_c01011{height:69.313859px;}
.h12_c01011{height:69.329135px;}
.h3_c01011{height:71.414279px;}
.ha_c01011{height:72.450000px;}
.h4_c01011{height:72.464489px;}
.h8_c01011{height:73.514699px;}
.he_c01011{height:75.600000px;}
.hc_c01011{height:76.650000px;}
.hf_c01011{height:80.850000px;}
.h0_c01011{height:1008.450000px;}
.h1_c01011{height:1008.750000px;}
.w1_c01011{width:700.500000px;}
.w0_c01011{width:700.650000px;}
.x0_c01011{left:0.000000px;}
.xa3_c01011{left:101.284500px;}
.xbc_c01011{left:104.466000px;}
.xb7_c01011{left:113.557500px;}
.xa4_c01011{left:125.314500px;}
.x6a_c01011{left:127.056000px;}
.x44_c01011{left:128.541630px;}
.x24_c01011{left:130.682160px;}
.x2_c01011{left:132.036000px;}
.x25_c01011{left:146.889330px;}
.x3_c01011{left:150.663000px;}
.x5d_c01011{left:152.046210px;}
.x8d_c01011{left:154.374000px;}
.xbe_c01011{left:155.575318px;}
.xb8_c01011{left:156.616500px;}
.x7b_c01011{left:158.181000px;}
.xb4_c01011{left:162.846000px;}
.x52_c01011{left:164.080920px;}
.xa9_c01011{left:165.388500px;}
.x4a_c01011{left:170.294670px;}
.xf_c01011{left:172.261350px;}
.x39_c01011{left:176.811690px;}
.x19_c01011{left:180.877260px;}
.x2e_c01011{left:181.945770px;}
.x93_c01011{left:184.387500px;}
.x4b_c01011{left:186.259080px;}
.x4_c01011{left:188.844000px;}
.x45_c01011{left:190.102170px;}
.x5e_c01011{left:195.688350px;}
.x8e_c01011{left:197.719500px;}
.x58_c01011{left:199.453740px;}
.x2f_c01011{left:201.912180px;}
.x7c_c01011{left:203.655000px;}
.x82_c01011{left:205.315500px;}
.x1_c01011{left:207.090000px;}
.x1a_c01011{left:208.965510px;}
.x26_c01011{left:211.427040px;}
.xbb_c01011{left:214.029488px;}
.x6b_c01011{left:215.910000px;}
.x4c_c01011{left:217.869930px;}
.x59_c01011{left:219.148260px;}
.x94_c01011{left:221.095500px;}
.x5_c01011{left:223.872000px;}
.xb9_c01011{left:227.125500px;}
.xaf_c01011{left:232.759500px;}
.x8f_c01011{left:235.155000px;}
.x5a_c01011{left:236.488020px;}
.x1b_c01011{left:237.581730px;}
.xaa_c01011{left:240.225000px;}
.x73_c01011{left:241.527000px;}
.xbd_c01011{left:243.397929px;}
.xb0_c01011{left:244.636500px;}
.x10_c01011{left:250.033200px;}
.x30_c01011{left:254.581980px;}
.x3a_c01011{left:256.207830px;}
.x5b_c01011{left:259.717710px;}
.x95_c01011{left:261.181500px;}
.x1c_c01011{left:263.478660px;}
.x6_c01011{left:265.459500px;}
.xb5_c01011{left:267.594000px;}
.x11_c01011{left:269.473530px;}
.x74_c01011{left:272.253000px;}
.x83_c01011{left:273.361500px;}
.xa5_c01011{left:277.182000px;}
.x7d_c01011{left:278.713500px;}
.x46_c01011{left:281.354010px;}
.x3b_c01011{left:282.664200px;}
.xab_c01011{left:284.008500px;}
.xb1_c01011{left:287.949000px;}
.x88_c01011{left:290.263500px;}
.x31_c01011{left:293.569860px;}
.xa0_c01011{left:294.837000px;}
.x7_c01011{left:296.784000px;}
.x84_c01011{left:297.813000px;}
.xba_c01011{left:298.977000px;}
.x4d_c01011{left:300.124710px;}
.x75_c01011{left:301.452000px;}
.x97_c01011{left:303.046500px;}
.x6c_c01011{left:307.822500px;}
.x32_c01011{left:312.648330px;}
.x5f_c01011{left:313.958580px;}
.x7e_c01011{left:315.447000px;}
.x8_c01011{left:318.093000px;}
.xbf_c01011{left:320.335128px;}
.x53_c01011{left:321.639720px;}
.x3c_c01011{left:326.849160px;}
.x5c_c01011{left:328.046370px;}
.x3d_c01011{left:333.739620px;}
.x6d_c01011{left:335.749500px;}
.xc0_c01011{left:338.871628px;}
.xb2_c01011{left:340.365000px;}
.x98_c01011{left:341.631000px;}
.x33_c01011{left:343.976310px;}
.x9_c01011{left:347.538000px;}
.x7f_c01011{left:348.934500px;}
.x1d_c01011{left:350.174730px;}
.x12_c01011{left:355.587840px;}
.x4e_c01011{left:357.697950px;}
.x27_c01011{left:359.442600px;}
.x47_c01011{left:361.423800px;}
.xb3_c01011{left:363.834000px;}
.x65_c01011{left:364.896000px;}
.xa1_c01011{left:367.318500px;}
.xa_c01011{left:368.880000px;}
.xb6_c01011{left:369.925500px;}
.x54_c01011{left:372.796530px;}
.x76_c01011{left:374.103000px;}
.x6e_c01011{left:376.917000px;}
.x62_c01011{left:379.182000px;}
.x66_c01011{left:381.384000px;}
.xac_c01011{left:382.873500px;}
.x4f_c01011{left:386.306100px;}
.x3e_c01011{left:390.816060px;}
.x89_c01011{left:393.138000px;}
.x13_c01011{left:396.644880px;}
.x34_c01011{left:398.258460px;}
.x9c_c01011{left:400.798500px;}
.x1e_c01011{left:404.303910px;}
.x77_c01011{left:406.488000px;}
.x28_c01011{left:409.684110px;}
.xa6_c01011{left:410.793000px;}
.xb_c01011{left:411.817500px;}
.x55_c01011{left:414.674340px;}
.x3f_c01011{left:416.354520px;}
.x90_c01011{left:418.441500px;}
.x1f_c01011{left:422.026500px;}
.x6f_c01011{left:429.870000px;}
.x67_c01011{left:433.014000px;}
.x14_c01011{left:438.511860px;}
.xad_c01011{left:441.913500px;}
.x80_c01011{left:443.412000px;}
.xc_c01011{left:444.486000px;}
.x20_c01011{left:446.336550px;}
.x9d_c01011{left:447.612000px;}
.x78_c01011{left:449.569500px;}
.x48_c01011{left:451.537200px;}
.x91_c01011{left:452.667000px;}
.x35_c01011{left:453.935520px;}
.xa7_c01011{left:455.070000px;}
.xa2_c01011{left:456.417000px;}
.x70_c01011{left:459.433500px;}
.x85_c01011{left:460.605000px;}
.x56_c01011{left:464.370390px;}
.x15_c01011{left:467.724120px;}
.x29_c01011{left:469.367910px;}
.x21_c01011{left:470.615100px;}
.x50_c01011{left:471.658080px;}
.x99_c01011{left:474.345000px;}
.x40_c01011{left:475.920750px;}
.x8a_c01011{left:477.556500px;}
.x71_c01011{left:480.970500px;}
.x2a_c01011{left:488.107050px;}
.x86_c01011{left:490.767000px;}
.x9a_c01011{left:491.779500px;}
.x49_c01011{left:493.123050px;}
.x41_c01011{left:494.163780px;}
.x68_c01011{left:495.624000px;}
.x51_c01011{left:497.067030px;}
.x2b_c01011{left:500.967780px;}
.x63_c01011{left:502.645500px;}
.x9e_c01011{left:505.312500px;}
.x8b_c01011{left:507.726000px;}
.x22_c01011{left:511.690830px;}
.x16_c01011{left:514.989300px;}
.xd_c01011{left:517.225500px;}
.x36_c01011{left:518.724330px;}
.x79_c01011{left:519.946500px;}
.x9f_c01011{left:526.450500px;}
.x42_c01011{left:528.685020px;}
.x69_c01011{left:531.391500px;}
.x43_c01011{left:537.925770px;}
.x2c_c01011{left:540.654000px;}
.x96_c01011{left:541.785000px;}
.x72_c01011{left:548.008500px;}
.x64_c01011{left:550.272000px;}
.x87_c01011{left:552.268500px;}
.x57_c01011{left:554.033550px;}
.xae_c01011{left:557.223000px;}
.x9b_c01011{left:559.284000px;}
.x92_c01011{left:560.334000px;}
.x60_c01011{left:563.220000px;}
.xe_c01011{left:565.195500px;}
.x17_c01011{left:566.763180px;}
.x2d_c01011{left:570.105900px;}
.x8c_c01011{left:574.945500px;}
.xa8_c01011{left:578.208000px;}
.x37_c01011{left:580.255410px;}
.x61_c01011{left:582.120000px;}
.x18_c01011{left:589.459830px;}
.x7a_c01011{left:593.719500px;}
.x23_c01011{left:595.655610px;}
.x38_c01011{left:601.840170px;}
.x81_c01011{left:616.935000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ws0_c01011{word-spacing:0.000000pt;}
.fs0_c01011{font-size:23.333333pt;}
.fs5_c01011{font-size:40.141359pt;}
.fs13_c01011{font-size:41.079498pt;}
.fs14_c01011{font-size:41.080545pt;}
.fs15_c01011{font-size:44.784250pt;}
.fs16_c01011{font-size:46.646993pt;}
.fs12_c01011{font-size:46.679008pt;}
.fs11_c01011{font-size:47.611518pt;}
.fs17_c01011{font-size:53.177571pt;}
.fsb_c01011{font-size:55.066667pt;}
.fse_c01011{font-size:56.000000pt;}
.fsf_c01011{font-size:59.733333pt;}
.fs3_c01011{font-size:59.745279pt;}
.fs7_c01011{font-size:60.678799pt;}
.fs9_c01011{font-size:61.600000pt;}
.fs4_c01011{font-size:61.612319pt;}
.fs10_c01011{font-size:61.625897pt;}
.fs1_c01011{font-size:63.479359pt;}
.fs8_c01011{font-size:64.400000pt;}
.fs2_c01011{font-size:64.412879pt;}
.fs6_c01011{font-size:65.346399pt;}
.fsc_c01011{font-size:67.200000pt;}
.fsa_c01011{font-size:68.133333pt;}
.fsd_c01011{font-size:71.866667pt;}
.y0_c01011{bottom:0.000000pt;}
.y149_c01011{bottom:140.114612pt;}
.y148_c01011{bottom:140.546580pt;}
.y147_c01011{bottom:140.909991pt;}
.y146_c01011{bottom:142.013628pt;}
.y145_c01011{bottom:142.471925pt;}
.y144_c01011{bottom:142.747832pt;}
.y143_c01011{bottom:142.883723pt;}
.y142_c01011{bottom:144.138107pt;}
.y141_c01011{bottom:144.730453pt;}
.y140_c01011{bottom:153.068531pt;}
.y13f_c01011{bottom:155.000229pt;}
.y13e_c01011{bottom:155.560187pt;}
.y13d_c01011{bottom:156.606299pt;}
.y13c_c01011{bottom:157.185613pt;}
.y13b_c01011{bottom:158.018296pt;}
.y13a_c01011{bottom:159.373717pt;}
.y139_c01011{bottom:160.809333pt;}
.y138_c01011{bottom:170.889515pt;}
.y137_c01011{bottom:171.396155pt;}
.y136_c01011{bottom:172.098971pt;}
.y135_c01011{bottom:173.738267pt;}
.y134_c01011{bottom:175.052891pt;}
.y133_c01011{bottom:176.410667pt;}
.y132_c01011{bottom:185.829291pt;}
.y131_c01011{bottom:186.254269pt;}
.y130_c01011{bottom:187.237416pt;}
.y12f_c01011{bottom:187.930472pt;}
.y12e_c01011{bottom:188.897984pt;}
.y12d_c01011{bottom:189.441661pt;}
.y12c_c01011{bottom:190.527525pt;}
.y12b_c01011{bottom:191.264088pt;}
.y12a_c01011{bottom:191.522667pt;}
.y129_c01011{bottom:202.421533pt;}
.y128_c01011{bottom:202.917733pt;}
.y127_c01011{bottom:204.695567pt;}
.y126_c01011{bottom:205.196867pt;}
.y125_c01011{bottom:205.829233pt;}
.y124_c01011{bottom:207.023300pt;}
.y123_c01011{bottom:207.845333pt;}
.y122_c01011{bottom:219.127521pt;}
.y121_c01011{bottom:219.382331pt;}
.y120_c01011{bottom:219.862141pt;}
.y11f_c01011{bottom:220.447629pt;}
.y11e_c01011{bottom:220.933757pt;}
.y11d_c01011{bottom:221.518724pt;}
.y11c_c01011{bottom:221.819257pt;}
.y11b_c01011{bottom:222.062076pt;}
.y11a_c01011{bottom:223.126639pt;}
.y119_c01011{bottom:224.164000pt;}
.y118_c01011{bottom:227.238901pt;}
.y117_c01011{bottom:228.824016pt;}
.y116_c01011{bottom:229.493843pt;}
.y115_c01011{bottom:230.027445pt;}
.y114_c01011{bottom:230.710736pt;}
.y113_c01011{bottom:230.813989pt;}
.y112_c01011{bottom:231.423360pt;}
.y111_c01011{bottom:232.122021pt;}
.y110_c01011{bottom:232.350059pt;}
.y10f_c01011{bottom:232.976707pt;}
.y10e_c01011{bottom:234.091549pt;}
.y10d_c01011{bottom:234.926992pt;}
.y10c_c01011{bottom:235.686667pt;}
.y10b_c01011{bottom:276.211085pt;}
.y10a_c01011{bottom:278.837944pt;}
.y109_c01011{bottom:279.882408pt;}
.y108_c01011{bottom:281.627319pt;}
.y107_c01011{bottom:282.859935pt;}
.y106_c01011{bottom:284.175839pt;}
.y105_c01011{bottom:284.679975pt;}
.y104_c01011{bottom:285.304480pt;}
.y103_c01011{bottom:287.233599pt;}
.y102_c01011{bottom:288.249333pt;}
.y101_c01011{bottom:296.113333pt;}
.y100_c01011{bottom:296.445333pt;}
.yff_c01011{bottom:299.297333pt;}
.yfe_c01011{bottom:299.725333pt;}
.yfd_c01011{bottom:301.024000pt;}
.yfc_c01011{bottom:303.249333pt;}
.yfb_c01011{bottom:304.942667pt;}
.yfa_c01011{bottom:305.550667pt;}
.yf9_c01011{bottom:306.981333pt;}
.yf8_c01011{bottom:309.397333pt;}
.yf7_c01011{bottom:310.102667pt;}
.yf6_c01011{bottom:317.228000pt;}
.yf5_c01011{bottom:318.145333pt;}
.yf4_c01011{bottom:318.820000pt;}
.yf3_c01011{bottom:320.353333pt;}
.yf2_c01011{bottom:321.414667pt;}
.yf1_c01011{bottom:323.045333pt;}
.yf0_c01011{bottom:324.016000pt;}
.yef_c01011{bottom:325.234667pt;}
.yee_c01011{bottom:325.884000pt;}
.yed_c01011{bottom:327.540000pt;}
.yec_c01011{bottom:328.185333pt;}
.yeb_c01011{bottom:328.944000pt;}
.yea_c01011{bottom:330.253333pt;}
.ye9_c01011{bottom:339.174667pt;}
.ye8_c01011{bottom:339.832000pt;}
.ye7_c01011{bottom:341.626667pt;}
.ye6_c01011{bottom:343.082667pt;}
.ye5_c01011{bottom:344.393333pt;}
.ye4_c01011{bottom:345.854667pt;}
.ye3_c01011{bottom:346.438667pt;}
.ye2_c01011{bottom:347.401333pt;}
.ye1_c01011{bottom:349.056000pt;}
.ye0_c01011{bottom:350.214667pt;}
.ydf_c01011{bottom:351.616000pt;}
.yde_c01011{bottom:357.976000pt;}
.ydd_c01011{bottom:359.229333pt;}
.ydc_c01011{bottom:360.016000pt;}
.ydb_c01011{bottom:360.542667pt;}
.yda_c01011{bottom:362.881333pt;}
.yd9_c01011{bottom:364.554667pt;}
.yd8_c01011{bottom:365.721333pt;}
.yd7_c01011{bottom:366.464000pt;}
.yd6_c01011{bottom:367.680000pt;}
.yd5_c01011{bottom:368.618667pt;}
.yd4_c01011{bottom:370.234667pt;}
.yd3_c01011{bottom:371.057333pt;}
.yd2_c01011{bottom:379.186667pt;}
.yd1_c01011{bottom:379.886667pt;}
.yd0_c01011{bottom:381.516000pt;}
.ycf_c01011{bottom:382.130667pt;}
.yce_c01011{bottom:384.081333pt;}
.ycd_c01011{bottom:384.672000pt;}
.ycc_c01011{bottom:387.169333pt;}
.ycb_c01011{bottom:388.309333pt;}
.yca_c01011{bottom:389.353333pt;}
.yc9_c01011{bottom:390.977333pt;}
.yc8_c01011{bottom:398.038667pt;}
.yc7_c01011{bottom:398.712000pt;}
.yc6_c01011{bottom:400.120000pt;}
.yc5_c01011{bottom:402.157333pt;}
.yc4_c01011{bottom:403.252000pt;}
.yc3_c01011{bottom:404.648000pt;}
.yc2_c01011{bottom:405.938667pt;}
.yc1_c01011{bottom:406.772000pt;}
.yc0_c01011{bottom:408.045333pt;}
.ybf_c01011{bottom:409.116000pt;}
.ybe_c01011{bottom:410.313333pt;}
.ybd_c01011{bottom:411.700000pt;}
.ybc_c01011{bottom:412.572000pt;}
.ybb_c01011{bottom:419.116000pt;}
.yba_c01011{bottom:419.733333pt;}
.yb9_c01011{bottom:421.088000pt;}
.yb8_c01011{bottom:421.973333pt;}
.yb7_c01011{bottom:423.886667pt;}
.yb6_c01011{bottom:424.449333pt;}
.yb5_c01011{bottom:425.714667pt;}
.yb4_c01011{bottom:427.466667pt;}
.yb3_c01011{bottom:429.538667pt;}
.yb2_c01011{bottom:431.177333pt;}
.yb1_c01011{bottom:432.256000pt;}
.yb0_c01011{bottom:438.920000pt;}
.yaf_c01011{bottom:440.138667pt;}
.yae_c01011{bottom:441.942667pt;}
.yad_c01011{bottom:442.828000pt;}
.yac_c01011{bottom:444.892000pt;}
.yab_c01011{bottom:446.729333pt;}
.yaa_c01011{bottom:447.604000pt;}
.ya9_c01011{bottom:448.321333pt;}
.ya8_c01011{bottom:449.409333pt;}
.ya7_c01011{bottom:450.317333pt;}
.ya6_c01011{bottom:451.948000pt;}
.ya5_c01011{bottom:457.237333pt;}
.ya4_c01011{bottom:462.326667pt;}
.ya3_c01011{bottom:464.292000pt;}
.ya2_c01011{bottom:465.097333pt;}
.ya1_c01011{bottom:466.080000pt;}
.ya0_c01011{bottom:467.157333pt;}
.y9f_c01011{bottom:468.781333pt;}
.y9e_c01011{bottom:469.360000pt;}
.y9d_c01011{bottom:470.693333pt;}
.y9c_c01011{bottom:471.616000pt;}
.y9b_c01011{bottom:479.866667pt;}
.y9a_c01011{bottom:481.900000pt;}
.y99_c01011{bottom:482.414667pt;}
.y98_c01011{bottom:483.101333pt;}
.y97_c01011{bottom:483.840000pt;}
.y96_c01011{bottom:485.026667pt;}
.y95_c01011{bottom:485.918667pt;}
.y94_c01011{bottom:486.552000pt;}
.y93_c01011{bottom:487.920000pt;}
.y92_c01011{bottom:488.724000pt;}
.y91_c01011{bottom:489.570667pt;}
.y90_c01011{bottom:491.000000pt;}
.y8f_c01011{bottom:492.730667pt;}
.y8e_c01011{bottom:501.286667pt;}
.y8d_c01011{bottom:502.253333pt;}
.y8c_c01011{bottom:504.100000pt;}
.y8b_c01011{bottom:504.693333pt;}
.y8a_c01011{bottom:505.508000pt;}
.y89_c01011{bottom:506.966667pt;}
.y88_c01011{bottom:508.101333pt;}
.y87_c01011{bottom:508.870667pt;}
.y86_c01011{bottom:510.482667pt;}
.y85_c01011{bottom:511.404000pt;}
.y84_c01011{bottom:513.852000pt;}
.y83_c01011{bottom:523.517333pt;}
.y82_c01011{bottom:524.092000pt;}
.y81_c01011{bottom:524.534667pt;}
.y80_c01011{bottom:526.316000pt;}
.y7f_c01011{bottom:527.784000pt;}
.y76_c01011{bottom:528.000133pt;}
.y7e_c01011{bottom:528.253333pt;}
.y75_c01011{bottom:528.938293pt;}
.y74_c01011{bottom:529.359947pt;}
.y73_c01011{bottom:531.986587pt;}
.y72_c01011{bottom:533.111920pt;}
.y71_c01011{bottom:533.726880pt;}
.y7d_c01011{bottom:543.606667pt;}
.y7c_c01011{bottom:544.961333pt;}
.y7b_c01011{bottom:545.929333pt;}
.y7a_c01011{bottom:546.638667pt;}
.y79_c01011{bottom:548.472000pt;}
.y78_c01011{bottom:549.132000pt;}
.y70_c01011{bottom:549.220053pt;}
.y6f_c01011{bottom:550.738907pt;}
.y6e_c01011{bottom:551.254587pt;}
.y6d_c01011{bottom:551.640213pt;}
.y6c_c01011{bottom:551.854187pt;}
.y6b_c01011{bottom:552.078373pt;}
.y6a_c01011{bottom:553.649867pt;}
.y77_c01011{bottom:562.441333pt;}
.y69_c01011{bottom:563.017627pt;}
.y68_c01011{bottom:565.249227pt;}
.y67_c01011{bottom:566.486187pt;}
.y66_c01011{bottom:567.528133pt;}
.y65_c01011{bottom:568.092640pt;}
.y64_c01011{bottom:568.801733pt;}
.y63_c01011{bottom:570.878347pt;}
.y62_c01011{bottom:571.629973pt;}
.y61_c01011{bottom:572.723227pt;}
.y60_c01011{bottom:573.576960pt;}
.y5f_c01011{bottom:583.495253pt;}
.y5e_c01011{bottom:585.326880pt;}
.y5d_c01011{bottom:585.891973pt;}
.y5c_c01011{bottom:587.788160pt;}
.y5b_c01011{bottom:588.423467pt;}
.y5a_c01011{bottom:589.703093pt;}
.y59_c01011{bottom:591.530880pt;}
.y58_c01011{bottom:592.232907pt;}
.y57_c01011{bottom:592.587413pt;}
.y56_c01011{bottom:593.495840pt;}
.y55_c01011{bottom:605.358667pt;}
.y54_c01011{bottom:607.251067pt;}
.y53_c01011{bottom:608.063733pt;}
.y52_c01011{bottom:609.263040pt;}
.y51_c01011{bottom:609.825813pt;}
.y50_c01011{bottom:610.673280pt;}
.y4f_c01011{bottom:611.392000pt;}
.y4e_c01011{bottom:611.928907pt;}
.y4d_c01011{bottom:613.176987pt;}
.y4c_c01011{bottom:614.380773pt;}
.y4b_c01011{bottom:625.360800pt;}
.y4a_c01011{bottom:625.558427pt;}
.y49_c01011{bottom:626.294853pt;}
.y48_c01011{bottom:626.684533pt;}
.y47_c01011{bottom:627.955573pt;}
.y46_c01011{bottom:628.500293pt;}
.y45_c01011{bottom:629.717733pt;}
.y44_c01011{bottom:629.864240pt;}
.y43_c01011{bottom:630.807147pt;}
.y42_c01011{bottom:631.372187pt;}
.y41_c01011{bottom:633.066453pt;}
.y40_c01011{bottom:634.068080pt;}
.y3f_c01011{bottom:643.472240pt;}
.y3e_c01011{bottom:643.933333pt;}
.y3d_c01011{bottom:645.245973pt;}
.y3c_c01011{bottom:646.628533pt;}
.y3b_c01011{bottom:647.815760pt;}
.y3a_c01011{bottom:648.974187pt;}
.y39_c01011{bottom:649.643173pt;}
.y38_c01011{bottom:650.050373pt;}
.y37_c01011{bottom:650.882213pt;}
.y36_c01011{bottom:652.005307pt;}
.y35_c01011{bottom:652.430960pt;}
.y34_c01011{bottom:653.513547pt;}
.y33_c01011{bottom:666.433360pt;}
.y32_c01011{bottom:666.983627pt;}
.y31_c01011{bottom:667.723840pt;}
.y30_c01011{bottom:667.964480pt;}
.y2f_c01011{bottom:668.313627pt;}
.y2e_c01011{bottom:669.428027pt;}
.y2d_c01011{bottom:670.365227pt;}
.y2c_c01011{bottom:671.120373pt;}
.y2b_c01011{bottom:672.047680pt;}
.y2a_c01011{bottom:672.648773pt;}
.y29_c01011{bottom:673.127333pt;}
.y28_c01011{bottom:674.332027pt;}
.y27_c01011{bottom:674.634827pt;}
.y26_c01011{bottom:684.662613pt;}
.y25_c01011{bottom:686.454107pt;}
.y24_c01011{bottom:687.329733pt;}
.y23_c01011{bottom:687.848053pt;}
.y22_c01011{bottom:688.366933pt;}
.y21_c01011{bottom:688.744693pt;}
.y20_c01011{bottom:689.899067pt;}
.y1f_c01011{bottom:691.748453pt;}
.y1e_c01011{bottom:692.300880pt;}
.y1d_c01011{bottom:692.910987pt;}
.y1c_c01011{bottom:693.510373pt;}
.y1b_c01011{bottom:694.559067pt;}
.y1a_c01011{bottom:705.146240pt;}
.y19_c01011{bottom:705.609760pt;}
.y18_c01011{bottom:706.668907pt;}
.y17_c01011{bottom:707.634560pt;}
.y16_c01011{bottom:708.231253pt;}
.y15_c01011{bottom:709.087600pt;}
.y14_c01011{bottom:709.926880pt;}
.y13_c01011{bottom:711.119840pt;}
.y12_c01011{bottom:711.688560pt;}
.y11_c01011{bottom:712.086187pt;}
.y10_c01011{bottom:713.675547pt;}
.yf_c01011{bottom:714.482267pt;}
.ye_c01011{bottom:726.704720pt;}
.yd_c01011{bottom:727.557520pt;}
.yc_c01011{bottom:728.850667pt;}
.yb_c01011{bottom:729.431440pt;}
.ya_c01011{bottom:730.194773pt;}
.y9_c01011{bottom:730.574187pt;}
.y8_c01011{bottom:731.097653pt;}
.y7_c01011{bottom:731.476480pt;}
.y6_c01011{bottom:732.033360pt;}
.y5_c01011{bottom:732.772693pt;}
.y4_c01011{bottom:733.395413pt;}
.y3_c01011{bottom:734.074187pt;}
.y2_c01011{bottom:734.405333pt;}
.y1_c01011{bottom:826.921333pt;}
.h2_c01011{height:23.333333pt;}
.h7_c01011{height:40.141359pt;}
.h15_c01011{height:41.079498pt;}
.h16_c01011{height:41.080545pt;}
.h17_c01011{height:44.784250pt;}
.h18_c01011{height:46.646993pt;}
.h14_c01011{height:46.679008pt;}
.h13_c01011{height:47.611518pt;}
.h19_c01011{height:53.177571pt;}
.hd_c01011{height:55.066667pt;}
.h10_c01011{height:56.000000pt;}
.h11_c01011{height:59.733333pt;}
.h5_c01011{height:59.745279pt;}
.h9_c01011{height:60.678799pt;}
.hb_c01011{height:61.600000pt;}
.h6_c01011{height:61.612319pt;}
.h12_c01011{height:61.625897pt;}
.h3_c01011{height:63.479359pt;}
.ha_c01011{height:64.400000pt;}
.h4_c01011{height:64.412879pt;}
.h8_c01011{height:65.346399pt;}
.he_c01011{height:67.200000pt;}
.hc_c01011{height:68.133333pt;}
.hf_c01011{height:71.866667pt;}
.h0_c01011{height:896.400000pt;}
.h1_c01011{height:896.666667pt;}
.w1_c01011{width:622.666667pt;}
.w0_c01011{width:622.800000pt;}
.x0_c01011{left:0.000000pt;}
.xa3_c01011{left:90.030667pt;}
.xbc_c01011{left:92.858667pt;}
.xb7_c01011{left:100.940000pt;}
.xa4_c01011{left:111.390667pt;}
.x6a_c01011{left:112.938667pt;}
.x44_c01011{left:114.259227pt;}
.x24_c01011{left:116.161920pt;}
.x2_c01011{left:117.365333pt;}
.x25_c01011{left:130.568293pt;}
.x3_c01011{left:133.922667pt;}
.x5d_c01011{left:135.152187pt;}
.x8d_c01011{left:137.221333pt;}
.xbe_c01011{left:138.289172pt;}
.xb8_c01011{left:139.214667pt;}
.x7b_c01011{left:140.605333pt;}
.xb4_c01011{left:144.752000pt;}
.x52_c01011{left:145.849707pt;}
.xa9_c01011{left:147.012000pt;}
.x4a_c01011{left:151.373040pt;}
.xf_c01011{left:153.121200pt;}
.x39_c01011{left:157.165947pt;}
.x19_c01011{left:160.779787pt;}
.x2e_c01011{left:161.729573pt;}
.x93_c01011{left:163.900000pt;}
.x4b_c01011{left:165.563627pt;}
.x4_c01011{left:167.861333pt;}
.x45_c01011{left:168.979707pt;}
.x5e_c01011{left:173.945200pt;}
.x8e_c01011{left:175.750667pt;}
.x58_c01011{left:177.292213pt;}
.x2f_c01011{left:179.477493pt;}
.x7c_c01011{left:181.026667pt;}
.x82_c01011{left:182.502667pt;}
.x1_c01011{left:184.080000pt;}
.x1a_c01011{left:185.747120pt;}
.x26_c01011{left:187.935147pt;}
.xbb_c01011{left:190.248433pt;}
.x6b_c01011{left:191.920000pt;}
.x4c_c01011{left:193.662160pt;}
.x59_c01011{left:194.798453pt;}
.x94_c01011{left:196.529333pt;}
.x5_c01011{left:198.997333pt;}
.xb9_c01011{left:201.889333pt;}
.xaf_c01011{left:206.897333pt;}
.x8f_c01011{left:209.026667pt;}
.x5a_c01011{left:210.211573pt;}
.x1b_c01011{left:211.183760pt;}
.xaa_c01011{left:213.533333pt;}
.x73_c01011{left:214.690667pt;}
.xbd_c01011{left:216.353715pt;}
.xb0_c01011{left:217.454667pt;}
.x10_c01011{left:222.251733pt;}
.x30_c01011{left:226.295093pt;}
.x3a_c01011{left:227.740293pt;}
.x5b_c01011{left:230.860187pt;}
.x95_c01011{left:232.161333pt;}
.x1c_c01011{left:234.203253pt;}
.x6_c01011{left:235.964000pt;}
.xb5_c01011{left:237.861333pt;}
.x11_c01011{left:239.532027pt;}
.x74_c01011{left:242.002667pt;}
.x83_c01011{left:242.988000pt;}
.xa5_c01011{left:246.384000pt;}
.x7d_c01011{left:247.745333pt;}
.x46_c01011{left:250.092453pt;}
.x3b_c01011{left:251.257067pt;}
.xab_c01011{left:252.452000pt;}
.xb1_c01011{left:255.954667pt;}
.x88_c01011{left:258.012000pt;}
.x31_c01011{left:260.950987pt;}
.xa0_c01011{left:262.077333pt;}
.x7_c01011{left:263.808000pt;}
.x84_c01011{left:264.722667pt;}
.xba_c01011{left:265.757333pt;}
.x4d_c01011{left:266.777520pt;}
.x75_c01011{left:267.957333pt;}
.x97_c01011{left:269.374667pt;}
.x6c_c01011{left:273.620000pt;}
.x32_c01011{left:277.909627pt;}
.x5f_c01011{left:279.074293pt;}
.x7e_c01011{left:280.397333pt;}
.x8_c01011{left:282.749333pt;}
.xbf_c01011{left:284.742336pt;}
.x53_c01011{left:285.901973pt;}
.x3c_c01011{left:290.532587pt;}
.x5c_c01011{left:291.596773pt;}
.x3d_c01011{left:296.657440pt;}
.x6d_c01011{left:298.444000pt;}
.xc0_c01011{left:301.219225pt;}
.xb2_c01011{left:302.546667pt;}
.x98_c01011{left:303.672000pt;}
.x33_c01011{left:305.756720pt;}
.x9_c01011{left:308.922667pt;}
.x7f_c01011{left:310.164000pt;}
.x1d_c01011{left:311.266427pt;}
.x12_c01011{left:316.078080pt;}
.x4e_c01011{left:317.953733pt;}
.x27_c01011{left:319.504533pt;}
.x47_c01011{left:321.265600pt;}
.xb3_c01011{left:323.408000pt;}
.x65_c01011{left:324.352000pt;}
.xa1_c01011{left:326.505333pt;}
.xa_c01011{left:327.893333pt;}
.xb6_c01011{left:328.822667pt;}
.x54_c01011{left:331.374693pt;}
.x76_c01011{left:332.536000pt;}
.x6e_c01011{left:335.037333pt;}
.x62_c01011{left:337.050667pt;}
.x66_c01011{left:339.008000pt;}
.xac_c01011{left:340.332000pt;}
.x4f_c01011{left:343.383200pt;}
.x3e_c01011{left:347.392053pt;}
.x89_c01011{left:349.456000pt;}
.x13_c01011{left:352.573227pt;}
.x34_c01011{left:354.007520pt;}
.x9c_c01011{left:356.265333pt;}
.x1e_c01011{left:359.381253pt;}
.x77_c01011{left:361.322667pt;}
.x28_c01011{left:364.163653pt;}
.xa6_c01011{left:365.149333pt;}
.xb_c01011{left:366.060000pt;}
.x55_c01011{left:368.599413pt;}
.x3f_c01011{left:370.092907pt;}
.x90_c01011{left:371.948000pt;}
.x1f_c01011{left:375.134667pt;}
.x6f_c01011{left:382.106667pt;}
.x67_c01011{left:384.901333pt;}
.x14_c01011{left:389.788320pt;}
.xad_c01011{left:392.812000pt;}
.x80_c01011{left:394.144000pt;}
.xc_c01011{left:395.098667pt;}
.x20_c01011{left:396.743600pt;}
.x9d_c01011{left:397.877333pt;}
.x78_c01011{left:399.617333pt;}
.x48_c01011{left:401.366400pt;}
.x91_c01011{left:402.370667pt;}
.x35_c01011{left:403.498240pt;}
.xa7_c01011{left:404.506667pt;}
.xa2_c01011{left:405.704000pt;}
.x70_c01011{left:408.385333pt;}
.x85_c01011{left:409.426667pt;}
.x56_c01011{left:412.773680pt;}
.x15_c01011{left:415.754773pt;}
.x29_c01011{left:417.215920pt;}
.x21_c01011{left:418.324533pt;}
.x50_c01011{left:419.251627pt;}
.x99_c01011{left:421.640000pt;}
.x40_c01011{left:423.040667pt;}
.x8a_c01011{left:424.494667pt;}
.x71_c01011{left:427.529333pt;}
.x2a_c01011{left:433.872933pt;}
.x86_c01011{left:436.237333pt;}
.x9a_c01011{left:437.137333pt;}
.x49_c01011{left:438.331600pt;}
.x41_c01011{left:439.256693pt;}
.x68_c01011{left:440.554667pt;}
.x51_c01011{left:441.837360pt;}
.x2b_c01011{left:445.304693pt;}
.x63_c01011{left:446.796000pt;}
.x9e_c01011{left:449.166667pt;}
.x8b_c01011{left:451.312000pt;}
.x22_c01011{left:454.836293pt;}
.x16_c01011{left:457.768267pt;}
.xd_c01011{left:459.756000pt;}
.x36_c01011{left:461.088293pt;}
.x79_c01011{left:462.174667pt;}
.x9f_c01011{left:467.956000pt;}
.x42_c01011{left:469.942240pt;}
.x69_c01011{left:472.348000pt;}
.x43_c01011{left:478.156240pt;}
.x2c_c01011{left:480.581333pt;}
.x96_c01011{left:481.586667pt;}
.x72_c01011{left:487.118667pt;}
.x64_c01011{left:489.130667pt;}
.x87_c01011{left:490.905333pt;}
.x57_c01011{left:492.474267pt;}
.xae_c01011{left:495.309333pt;}
.x9b_c01011{left:497.141333pt;}
.x92_c01011{left:498.074667pt;}
.x60_c01011{left:500.640000pt;}
.xe_c01011{left:502.396000pt;}
.x17_c01011{left:503.789493pt;}
.x2d_c01011{left:506.760800pt;}
.x8c_c01011{left:511.062667pt;}
.xa8_c01011{left:513.962667pt;}
.x37_c01011{left:515.782587pt;}
.x61_c01011{left:517.440000pt;}
.x18_c01011{left:523.964293pt;}
.x7a_c01011{left:527.750667pt;}
.x23_c01011{left:529.471653pt;}
.x38_c01011{left:534.969040pt;}
.x81_c01011{left:548.386667pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.000000;font-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_c01012{transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);}
.m98_c01012{transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019315,0.000000,0.000000,0.250000,0,0);}
.mda_c01012{transform:matrix(0.048575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01012{transform:matrix(0.071700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071700,0.000000,0.000000,0.250000,0,0);}
.m25_c01012{transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088355,0.000000,0.000000,0.250000,0,0);}
.me0_c01012{transform:matrix(0.091255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091255,0.000000,0.000000,0.250000,0,0);}
.m5d_c01012{transform:matrix(0.123465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123465,0.000000,0.000000,0.250000,0,0);}
.m29_c01012{transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140420,0.000000,0.000000,0.250000,0,0);}
.ma5_c01012{transform:matrix(0.143495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143495,0.000000,0.000000,0.250000,0,0);}
.m2_c01012{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);}
.m33_c01012{transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);}
.m53_c01012{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);}
.m19_c01012{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);}
.m55_c01012{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);}
.m58_c01012{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);}
.m14_c01012{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);}
.m1d_c01012{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);}
.m43_c01012{transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157720,0.000000,0.000000,0.250000,0,0);}
.m3_c01012{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);}
.m39_c01012{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);}
.m9_c01012{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);}
.m6e_c01012{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);}
.m3a_c01012{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);}
.m51_c01012{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);}
.m80_c01012{transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);}
.m57_c01012{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);}
.mca_c01012{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);}
.m3b_c01012{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);}
.mb_c01012{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);}
.m20_c01012{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);}
.m10_c01012{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);}
.m8a_c01012{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);}
.m96_c01012{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);}
.m9b_c01012{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);}
.m6d_c01012{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);}
.m32_c01012{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);}
.m3d_c01012{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);}
.m22_c01012{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);}
.m23_c01012{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);}
.m13_c01012{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);}
.ma9_c01012{transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);}
.m7_c01012{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);}
.m5a_c01012{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);}
.m4_c01012{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);}
.m3f_c01012{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);}
.m35_c01012{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);}
.m5c_c01012{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);}
.m4a_c01012{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);}
.ma_c01012{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);}
.m1a_c01012{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);}
.m4c_c01012{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);}
.m91_c01012{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);}
.m2a_c01012{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);}
.m2c_c01012{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);}
.m1b_c01012{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);}
.ma1_c01012{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);}
.mba_c01012{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);}
.m38_c01012{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);}
.mb5_c01012{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);}
.m44_c01012{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);}
.mc8_c01012{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);}
.m2d_c01012{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);}
.m16_c01012{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);}
.m47_c01012{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);}
.mbd_c01012{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);}
.mbc_c01012{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);}
.m76_c01012{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);}
.m7d_c01012{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);}
.m28_c01012{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);}
.m11_c01012{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);}
.m2e_c01012{transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186110,0.000000,0.000000,0.250000,0,0);}
.m27_c01012{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);}
.m50_c01012{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);}
.m34_c01012{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);}
.m56_c01012{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);}
.ma2_c01012{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);}
.m45_c01012{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);}
.m4f_c01012{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);}
.m6f_c01012{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);}
.m9f_c01012{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);}
.ma3_c01012{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);}
.m70_c01012{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);}
.m3e_c01012{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);}
.m1e_c01012{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);}
.mac_c01012{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);}
.mb4_c01012{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);}
.m3c_c01012{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);}
.m26_c01012{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);}
.m40_c01012{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);}
.mc6_c01012{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);}
.ma7_c01012{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);}
.m52_c01012{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);}
.m54_c01012{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);}
.m48_c01012{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);}
.m7b_c01012{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);}
.m18_c01012{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);}
.m71_c01012{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);}
.m5f_c01012{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);}
.m8d_c01012{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);}
.m74_c01012{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_c01012{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);}
.m41_c01012{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);}
.m6c_c01012{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);}
.m93_c01012{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);}
.m5b_c01012{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);}
.m69_c01012{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);}
.mae_c01012{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.mb7_c01012{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);}
.m97_c01012{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);}
.m8b_c01012{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);}
.m15_c01012{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);}
.m49_c01012{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);}
.mc_c01012{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);}
.m86_c01012{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);}
.mb8_c01012{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);}
.mb0_c01012{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);}
.mce_c01012{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);}
.m2f_c01012{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);}
.mf_c01012{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);}
.m6a_c01012{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);}
.m5_c01012{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);}
.ma6_c01012{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);}
.mc5_c01012{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);}
.mb9_c01012{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);}
.m4b_c01012{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);}
.m65_c01012{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);}
.mad_c01012{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);}
.ma8_c01012{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);}
.m7f_c01012{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);}
.m94_c01012{transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202905,0.000000,0.000000,0.250000,0,0);}
.m21_c01012{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);}
.m31_c01012{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);}
.m6_c01012{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);}
.mc3_c01012{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);}
.m7e_c01012{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);}
.m90_c01012{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);}
.m63_c01012{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);}
.m4d_c01012{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);}
.m72_c01012{transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);}
.m79_c01012{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);}
.m17_c01012{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);}
.m95_c01012{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);}
.m9d_c01012{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);}
.m9c_c01012{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);}
.m8c_c01012{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);}
.m30_c01012{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);}
.mab_c01012{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);}
.m9e_c01012{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);}
.m6b_c01012{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);}
.m7a_c01012{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);}
.m64_c01012{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);}
.mbb_c01012{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_c01012{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);}
.m8e_c01012{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);}
.m61_c01012{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);}
.m89_c01012{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);}
.m99_c01012{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);}
.mc2_c01012{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);}
.m66_c01012{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);}
.m1c_c01012{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);}
.mb2_c01012{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);}
.md_c01012{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);}
.m24_c01012{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);}
.m78_c01012{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);}
.m9a_c01012{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);}
.m12_c01012{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);}
.m8_c01012{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);}
.ma0_c01012{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);}
.m36_c01012{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);}
.m85_c01012{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);}
.mbe_c01012{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);}
.maa_c01012{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);}
.m7c_c01012{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);}
.m5e_c01012{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);}
.m87_c01012{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);}
.ma4_c01012{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);}
.mc1_c01012{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);}
.m67_c01012{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);}
.m42_c01012{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);}
.m37_c01012{transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237995,0.000000,0.000000,0.250000,0,0);}
.m88_c01012{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);}
.m81_c01012{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m59_c01012{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);}
.m75_c01012{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);}
.m2b_c01012{transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);}
.m4e_c01012{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m84_c01012{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);}
.mb3_c01012{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.mc0_c01012{transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);}
.m77_c01012{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);}
.m83_c01012{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m60_c01012{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);}
.mbf_c01012{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m73_c01012{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.mb6_c01012{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);}
.mc4_c01012{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m92_c01012{transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);}
.me_c01012{transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);}
.m68_c01012{transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);}
.mc7_c01012{transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261935,0.000000,0.000000,0.250000,0,0);}
.mcb_c01012{transform:matrix(0.264505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264505,0.000000,0.000000,0.250000,0,0);}
.m62_c01012{transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);}
.maf_c01012{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.mcc_c01012{transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267530,0.000000,0.000000,0.250000,0,0);}
.mc9_c01012{transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);}
.m0_c01012{transform:matrix(0.275850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275850,0.000000,0.000000,0.250000,0,0);}
.md1_c01012{transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279555,0.000000,0.000000,0.250000,0,0);}
.md0_c01012{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);}
.m82_c01012{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);}
.mb1_c01012{transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295880,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324475,0.000000,0.000000,0.250000,0,0);}
.md6_c01012{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);}
.md2_c01012{transform:matrix(0.341790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341790,0.000000,0.000000,0.250000,0,0);}
.md9_c01012{transform:matrix(0.366885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366885,0.000000,0.000000,0.250000,0,0);}
.md8_c01012{transform:matrix(0.374135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374135,0.000000,0.000000,0.250000,0,0);}
.md7_c01012{transform:matrix(0.377820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377820,0.000000,0.000000,0.250000,0,0);}
.md4_c01012{transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380430,0.000000,0.000000,0.250000,0,0);}
.mdc_c01012{transform:matrix(0.413685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413685,0.000000,0.000000,0.250000,0,0);}
.mdb_c01012{transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450675,0.000000,0.000000,0.250000,0,0);}
.mde_c01012{transform:matrix(0.506210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506210,0.000000,0.000000,0.250000,0,0);}
.mcf_c01012{transform:matrix(0.577855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577855,0.000000,0.000000,0.250000,0,0);}
.md5_c01012{transform:matrix(0.682820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682820,0.000000,0.000000,0.250000,0,0);}
.md3_c01012{transform:matrix(0.785190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785190,0.000000,0.000000,0.250000,0,0);}
.mdf_c01012{transform:matrix(0.837420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837420,0.000000,0.000000,0.250000,0,0);}
.mdd_c01012{transform:matrix(1.047525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047525,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls0_c01012{letter-spacing:0.000000px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01012{word-spacing:0.000000px;}
.fc0_c01012{color:transparent;}
.fsa_c01012{font-size:43.050000px;}
.fse_c01012{font-size:46.200000px;}
.fs8_c01012{font-size:47.250000px;}
.fsb_c01012{font-size:49.350000px;}
.fsc_c01012{font-size:50.400000px;}
.fs7_c01012{font-size:52.500000px;}
.fs9_c01012{font-size:53.550000px;}
.fsd_c01012{font-size:60.900000px;}
.fs6_c01012{font-size:61.950000px;}
.fs1_c01012{font-size:65.100000px;}
.fs5_c01012{font-size:68.250000px;}
.fs2_c01012{font-size:69.300000px;}
.fs3_c01012{font-size:70.350000px;}
.fs4_c01012{font-size:71.400000px;}
.fsf_c01012{font-size:75.600000px;}
.fs11_c01012{font-size:100.800000px;}
.fs0_c01012{font-size:119.700000px;}
.fs10_c01012{font-size:201.600000px;}
.y0_c01012{bottom:0.000000px;}
.y1e_c01012{bottom:105.030000px;}
.y1d_c01012{bottom:120.673500px;}
.y1c_c01012{bottom:135.462000px;}
.y1a_c01012{bottom:149.310000px;}
.y14_c01012{bottom:172.686000px;}
.y19_c01012{bottom:173.871000px;}
.y13_c01012{bottom:191.046000px;}
.y18_c01012{bottom:192.109500px;}
.y12_c01012{bottom:209.136000px;}
.y17_c01012{bottom:210.211500px;}
.y11_c01012{bottom:226.800000px;}
.y16_c01012{bottom:228.174000px;}
.y10_c01012{bottom:244.776000px;}
.y15_c01012{bottom:245.812500px;}
.yf_c01012{bottom:262.546500px;}
.yd_c01012{bottom:263.833500px;}
.ye_c01012{bottom:280.702500px;}
.yc_c01012{bottom:281.610000px;}
.yb_c01012{bottom:629.266500px;}
.ya_c01012{bottom:651.393000px;}
.y9_c01012{bottom:674.797500px;}
.y8_c01012{bottom:696.960000px;}
.y7_c01012{bottom:719.610000px;}
.y6_c01012{bottom:742.590000px;}
.y5_c01012{bottom:765.574500px;}
.y4_c01012{bottom:788.485500px;}
.y3_c01012{bottom:810.972000px;}
.y2_c01012{bottom:834.127500px;}
.y1_c01012{bottom:877.968000px;}
.y1b_c01012{bottom:919.440000px;}
.hc_c01012{height:43.050000px;}
.h10_c01012{height:46.200000px;}
.ha_c01012{height:47.250000px;}
.hd_c01012{height:49.350000px;}
.he_c01012{height:50.400000px;}
.h9_c01012{height:52.500000px;}
.hb_c01012{height:53.550000px;}
.hf_c01012{height:60.900000px;}
.h8_c01012{height:61.950000px;}
.h3_c01012{height:65.100000px;}
.h7_c01012{height:68.250000px;}
.h4_c01012{height:69.300000px;}
.h5_c01012{height:70.350000px;}
.h6_c01012{height:71.400000px;}
.h11_c01012{height:75.600000px;}
.h13_c01012{height:100.800000px;}
.h2_c01012{height:119.700000px;}
.h12_c01012{height:201.600000px;}
.h1_c01012{height:1005.000000px;}
.h0_c01012{height:1005.150000px;}
.w0_c01012{width:715.200000px;}
.w1_c01012{width:715.500000px;}
.x0_c01012{left:0.000000px;}
.x8a_c01012{left:62.370000px;}
.x8b_c01012{left:64.260000px;}
.x1b_c01012{left:107.190000px;}
.x23_c01012{left:112.050000px;}
.x4_c01012{left:113.130000px;}
.x69_c01012{left:116.100000px;}
.x91_c01012{left:126.360000px;}
.x66_c01012{left:129.060000px;}
.x54_c01012{left:132.570000px;}
.x5_c01012{left:134.730000px;}
.x4c_c01012{left:140.130000px;}
.x2e_c01012{left:141.750000px;}
.x6f_c01012{left:145.530000px;}
.x63_c01012{left:149.580000px;}
.x44_c01012{left:155.250000px;}
.x55_c01012{left:157.140000px;}
.x24_c01012{left:162.000000px;}
.x67_c01012{left:164.970000px;}
.x1c_c01012{left:166.050000px;}
.x77_c01012{left:167.670000px;}
.x70_c01012{left:172.260000px;}
.x7a_c01012{left:173.340000px;}
.x6_c01012{left:174.420000px;}
.x45_c01012{left:181.440000px;}
.x6a_c01012{left:183.330000px;}
.x13_c01012{left:184.680000px;}
.x37_c01012{left:189.810000px;}
.x4d_c01012{left:190.890000px;}
.x1d_c01012{left:196.290000px;}
.x2f_c01012{left:200.610000px;}
.x71_c01012{left:201.960000px;}
.x6b_c01012{left:205.200000px;}
.x14_c01012{left:212.760000px;}
.x25_c01012{left:216.540000px;}
.x74_c01012{left:219.240000px;}
.x7_c01012{left:221.670000px;}
.x64_c01012{left:224.640000px;}
.x92_c01012{left:225.990000px;}
.x56_c01012{left:231.390000px;}
.x78_c01012{left:234.900000px;}
.x15_c01012{left:238.680000px;}
.x26_c01012{left:241.380000px;}
.x6c_c01012{left:243.540000px;}
.x1_c01012{left:245.160000px;}
.x8_c01012{left:246.240000px;}
.x75_c01012{left:251.370000px;}
.x1e_c01012{left:254.880000px;}
.x8d_c01012{left:257.310000px;}
.x46_c01012{left:258.930000px;}
.x38_c01012{left:262.440000px;}
.x7b_c01012{left:265.950000px;}
.x72_c01012{left:270.810000px;}
.x27_c01012{left:276.210000px;}
.x65_c01012{left:277.290000px;}
.x4e_c01012{left:279.720000px;}
.x30_c01012{left:282.150000px;}
.x6d_c01012{left:289.170000px;}
.x39_c01012{left:292.680000px;}
.x7c_c01012{left:295.920000px;}
.x68_c01012{left:298.620000px;}
.x1f_c01012{left:299.970000px;}
.x28_c01012{left:301.590000px;}
.x57_c01012{left:305.370000px;}
.x16_c01012{left:309.150000px;}
.x9_c01012{left:311.040000px;}
.x93_c01012{left:312.660000px;}
.x6e_c01012{left:313.740000px;}
.x4f_c01012{left:315.900000px;}
.x2_c01012{left:318.870000px;}
.x8e_c01012{left:320.760000px;}
.x31_c01012{left:321.840000px;}
.x76_c01012{left:324.270000px;}
.x94_c01012{left:329.400000px;}
.x79_c01012{left:332.370000px;}
.x3d_c01012{left:333.990000px;}
.xa_c01012{left:338.310000px;}
.x50_c01012{left:342.360000px;}
.x73_c01012{left:349.380000px;}
.x29_c01012{left:360.450000px;}
.xb_c01012{left:361.800000px;}
.x58_c01012{left:366.660000px;}
.x82_c01012{left:367.740000px;}
.x3e_c01012{left:376.380000px;}
.x80_c01012{left:383.400000px;}
.x47_c01012{left:384.480000px;}
.x51_c01012{left:387.180000px;}
.x89_c01012{left:388.260000px;}
.x86_c01012{left:393.120000px;}
.x3f_c01012{left:399.600000px;}
.xc_c01012{left:400.680000px;}
.x32_c01012{left:402.300000px;}
.x8f_c01012{left:403.650000px;}
.x5d_c01012{left:405.270000px;}
.x3a_c01012{left:409.860000px;}
.x20_c01012{left:412.560000px;}
.x48_c01012{left:414.180000px;}
.xd_c01012{left:417.150000px;}
.x59_c01012{left:421.470000px;}
.x33_c01012{left:424.170000px;}
.x5e_c01012{left:426.600000px;}
.x17_c01012{left:430.650000px;}
.x2a_c01012{left:431.730000px;}
.x83_c01012{left:435.510000px;}
.x5a_c01012{left:437.130000px;}
.x21_c01012{left:445.500000px;}
.xe_c01012{left:453.060000px;}
.x2b_c01012{left:460.080000px;}
.x52_c01012{left:465.210000px;}
.x18_c01012{left:466.830000px;}
.x7d_c01012{left:477.360000px;}
.x40_c01012{left:479.250000px;}
.x5f_c01012{left:482.220000px;}
.x49_c01012{left:483.300000px;}
.x87_c01012{left:484.380000px;}
.x2c_c01012{left:487.890000px;}
.xf_c01012{left:489.780000px;}
.x53_c01012{left:491.130000px;}
.x19_c01012{left:494.910000px;}
.x41_c01012{left:500.310000px;}
.x5b_c01012{left:503.280000px;}
.x10_c01012{left:509.760000px;}
.x84_c01012{left:512.730000px;}
.x34_c01012{left:514.080000px;}
.x60_c01012{left:518.400000px;}
.x42_c01012{left:521.910000px;}
.x2d_c01012{left:524.610000px;}
.x3b_c01012{left:531.360000px;}
.x61_c01012{left:532.440000px;}
.x11_c01012{left:534.330000px;}
.x5c_c01012{left:538.920000px;}
.x4a_c01012{left:540.270000px;}
.x85_c01012{left:543.240000px;}
.x7e_c01012{left:546.210000px;}
.x35_c01012{left:552.960000px;}
.x3_c01012{left:556.470000px;}
.x1a_c01012{left:560.250000px;}
.x43_c01012{left:561.600000px;}
.x3c_c01012{left:564.840000px;}
.x88_c01012{left:566.190000px;}
.x81_c01012{left:570.240000px;}
.x62_c01012{left:572.670000px;}
.x12_c01012{left:575.910000px;}
.x7f_c01012{left:579.420000px;}
.x36_c01012{left:580.500000px;}
.x22_c01012{left:586.980000px;}
.x90_c01012{left:590.760000px;}
.x4b_c01012{left:601.560000px;}
.x8c_c01012{left:628.020000px;}
.x95_c01012{left:635.580000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls0_c01012{letter-spacing:0.000000pt;}
.ws0_c01012{word-spacing:0.000000pt;}
.fsa_c01012{font-size:38.266667pt;}
.fse_c01012{font-size:41.066667pt;}
.fs8_c01012{font-size:42.000000pt;}
.fsb_c01012{font-size:43.866667pt;}
.fsc_c01012{font-size:44.800000pt;}
.fs7_c01012{font-size:46.666667pt;}
.fs9_c01012{font-size:47.600000pt;}
.fsd_c01012{font-size:54.133333pt;}
.fs6_c01012{font-size:55.066667pt;}
.fs1_c01012{font-size:57.866667pt;}
.fs5_c01012{font-size:60.666667pt;}
.fs2_c01012{font-size:61.600000pt;}
.fs3_c01012{font-size:62.533333pt;}
.fs4_c01012{font-size:63.466667pt;}
.fsf_c01012{font-size:67.200000pt;}
.fs11_c01012{font-size:89.600000pt;}
.fs0_c01012{font-size:106.400000pt;}
.fs10_c01012{font-size:179.200000pt;}
.y0_c01012{bottom:0.000000pt;}
.y1e_c01012{bottom:93.360000pt;}
.y1d_c01012{bottom:107.265333pt;}
.y1c_c01012{bottom:120.410667pt;}
.y1a_c01012{bottom:132.720000pt;}
.y14_c01012{bottom:153.498667pt;}
.y19_c01012{bottom:154.552000pt;}
.y13_c01012{bottom:169.818667pt;}
.y18_c01012{bottom:170.764000pt;}
.y12_c01012{bottom:185.898667pt;}
.y17_c01012{bottom:186.854667pt;}
.y11_c01012{bottom:201.600000pt;}
.y16_c01012{bottom:202.821333pt;}
.y10_c01012{bottom:217.578667pt;}
.y15_c01012{bottom:218.500000pt;}
.yf_c01012{bottom:233.374667pt;}
.yd_c01012{bottom:234.518667pt;}
.ye_c01012{bottom:249.513333pt;}
.yc_c01012{bottom:250.320000pt;}
.yb_c01012{bottom:559.348000pt;}
.ya_c01012{bottom:579.016000pt;}
.y9_c01012{bottom:599.820000pt;}
.y8_c01012{bottom:619.520000pt;}
.y7_c01012{bottom:639.653333pt;}
.y6_c01012{bottom:660.080000pt;}
.y5_c01012{bottom:680.510667pt;}
.y4_c01012{bottom:700.876000pt;}
.y3_c01012{bottom:720.864000pt;}
.y2_c01012{bottom:741.446667pt;}
.y1_c01012{bottom:780.416000pt;}
.y1b_c01012{bottom:817.280000pt;}
.hc_c01012{height:38.266667pt;}
.h10_c01012{height:41.066667pt;}
.ha_c01012{height:42.000000pt;}
.hd_c01012{height:43.866667pt;}
.he_c01012{height:44.800000pt;}
.h9_c01012{height:46.666667pt;}
.hb_c01012{height:47.600000pt;}
.hf_c01012{height:54.133333pt;}
.h8_c01012{height:55.066667pt;}
.h3_c01012{height:57.866667pt;}
.h7_c01012{height:60.666667pt;}
.h4_c01012{height:61.600000pt;}
.h5_c01012{height:62.533333pt;}
.h6_c01012{height:63.466667pt;}
.h11_c01012{height:67.200000pt;}
.h13_c01012{height:89.600000pt;}
.h2_c01012{height:106.400000pt;}
.h12_c01012{height:179.200000pt;}
.h1_c01012{height:893.333333pt;}
.h0_c01012{height:893.466667pt;}
.w0_c01012{width:635.733333pt;}
.w1_c01012{width:636.000000pt;}
.x0_c01012{left:0.000000pt;}
.x8a_c01012{left:55.440000pt;}
.x8b_c01012{left:57.120000pt;}
.x1b_c01012{left:95.280000pt;}
.x23_c01012{left:99.600000pt;}
.x4_c01012{left:100.560000pt;}
.x69_c01012{left:103.200000pt;}
.x91_c01012{left:112.320000pt;}
.x66_c01012{left:114.720000pt;}
.x54_c01012{left:117.840000pt;}
.x5_c01012{left:119.760000pt;}
.x4c_c01012{left:124.560000pt;}
.x2e_c01012{left:126.000000pt;}
.x6f_c01012{left:129.360000pt;}
.x63_c01012{left:132.960000pt;}
.x44_c01012{left:138.000000pt;}
.x55_c01012{left:139.680000pt;}
.x24_c01012{left:144.000000pt;}
.x67_c01012{left:146.640000pt;}
.x1c_c01012{left:147.600000pt;}
.x77_c01012{left:149.040000pt;}
.x70_c01012{left:153.120000pt;}
.x7a_c01012{left:154.080000pt;}
.x6_c01012{left:155.040000pt;}
.x45_c01012{left:161.280000pt;}
.x6a_c01012{left:162.960000pt;}
.x13_c01012{left:164.160000pt;}
.x37_c01012{left:168.720000pt;}
.x4d_c01012{left:169.680000pt;}
.x1d_c01012{left:174.480000pt;}
.x2f_c01012{left:178.320000pt;}
.x71_c01012{left:179.520000pt;}
.x6b_c01012{left:182.400000pt;}
.x14_c01012{left:189.120000pt;}
.x25_c01012{left:192.480000pt;}
.x74_c01012{left:194.880000pt;}
.x7_c01012{left:197.040000pt;}
.x64_c01012{left:199.680000pt;}
.x92_c01012{left:200.880000pt;}
.x56_c01012{left:205.680000pt;}
.x78_c01012{left:208.800000pt;}
.x15_c01012{left:212.160000pt;}
.x26_c01012{left:214.560000pt;}
.x6c_c01012{left:216.480000pt;}
.x1_c01012{left:217.920000pt;}
.x8_c01012{left:218.880000pt;}
.x75_c01012{left:223.440000pt;}
.x1e_c01012{left:226.560000pt;}
.x8d_c01012{left:228.720000pt;}
.x46_c01012{left:230.160000pt;}
.x38_c01012{left:233.280000pt;}
.x7b_c01012{left:236.400000pt;}
.x72_c01012{left:240.720000pt;}
.x27_c01012{left:245.520000pt;}
.x65_c01012{left:246.480000pt;}
.x4e_c01012{left:248.640000pt;}
.x30_c01012{left:250.800000pt;}
.x6d_c01012{left:257.040000pt;}
.x39_c01012{left:260.160000pt;}
.x7c_c01012{left:263.040000pt;}
.x68_c01012{left:265.440000pt;}
.x1f_c01012{left:266.640000pt;}
.x28_c01012{left:268.080000pt;}
.x57_c01012{left:271.440000pt;}
.x16_c01012{left:274.800000pt;}
.x9_c01012{left:276.480000pt;}
.x93_c01012{left:277.920000pt;}
.x6e_c01012{left:278.880000pt;}
.x4f_c01012{left:280.800000pt;}
.x2_c01012{left:283.440000pt;}
.x8e_c01012{left:285.120000pt;}
.x31_c01012{left:286.080000pt;}
.x76_c01012{left:288.240000pt;}
.x94_c01012{left:292.800000pt;}
.x79_c01012{left:295.440000pt;}
.x3d_c01012{left:296.880000pt;}
.xa_c01012{left:300.720000pt;}
.x50_c01012{left:304.320000pt;}
.x73_c01012{left:310.560000pt;}
.x29_c01012{left:320.400000pt;}
.xb_c01012{left:321.600000pt;}
.x58_c01012{left:325.920000pt;}
.x82_c01012{left:326.880000pt;}
.x3e_c01012{left:334.560000pt;}
.x80_c01012{left:340.800000pt;}
.x47_c01012{left:341.760000pt;}
.x51_c01012{left:344.160000pt;}
.x89_c01012{left:345.120000pt;}
.x86_c01012{left:349.440000pt;}
.x3f_c01012{left:355.200000pt;}
.xc_c01012{left:356.160000pt;}
.x32_c01012{left:357.600000pt;}
.x8f_c01012{left:358.800000pt;}
.x5d_c01012{left:360.240000pt;}
.x3a_c01012{left:364.320000pt;}
.x20_c01012{left:366.720000pt;}
.x48_c01012{left:368.160000pt;}
.xd_c01012{left:370.800000pt;}
.x59_c01012{left:374.640000pt;}
.x33_c01012{left:377.040000pt;}
.x5e_c01012{left:379.200000pt;}
.x17_c01012{left:382.800000pt;}
.x2a_c01012{left:383.760000pt;}
.x83_c01012{left:387.120000pt;}
.x5a_c01012{left:388.560000pt;}
.x21_c01012{left:396.000000pt;}
.xe_c01012{left:402.720000pt;}
.x2b_c01012{left:408.960000pt;}
.x52_c01012{left:413.520000pt;}
.x18_c01012{left:414.960000pt;}
.x7d_c01012{left:424.320000pt;}
.x40_c01012{left:426.000000pt;}
.x5f_c01012{left:428.640000pt;}
.x49_c01012{left:429.600000pt;}
.x87_c01012{left:430.560000pt;}
.x2c_c01012{left:433.680000pt;}
.xf_c01012{left:435.360000pt;}
.x53_c01012{left:436.560000pt;}
.x19_c01012{left:439.920000pt;}
.x41_c01012{left:444.720000pt;}
.x5b_c01012{left:447.360000pt;}
.x10_c01012{left:453.120000pt;}
.x84_c01012{left:455.760000pt;}
.x34_c01012{left:456.960000pt;}
.x60_c01012{left:460.800000pt;}
.x42_c01012{left:463.920000pt;}
.x2d_c01012{left:466.320000pt;}
.x3b_c01012{left:472.320000pt;}
.x61_c01012{left:473.280000pt;}
.x11_c01012{left:474.960000pt;}
.x5c_c01012{left:479.040000pt;}
.x4a_c01012{left:480.240000pt;}
.x85_c01012{left:482.880000pt;}
.x7e_c01012{left:485.520000pt;}
.x35_c01012{left:491.520000pt;}
.x3_c01012{left:494.640000pt;}
.x1a_c01012{left:498.000000pt;}
.x43_c01012{left:499.200000pt;}
.x3c_c01012{left:502.080000pt;}
.x88_c01012{left:503.280000pt;}
.x81_c01012{left:506.880000pt;}
.x62_c01012{left:509.040000pt;}
.x12_c01012{left:511.920000pt;}
.x7f_c01012{left:515.040000pt;}
.x36_c01012{left:516.000000pt;}
.x22_c01012{left:521.760000pt;}
.x90_c01012{left:525.120000pt;}
.x4b_c01012{left:534.720000pt;}
.x8c_c01012{left:558.240000pt;}
.x95_c01012{left:564.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_c01013 {
    display:none;
  }
  .loading-indicator_c01013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01013" -> "#page-container .classname_c01013")
 */
.pf_c01013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01013 {overflow:visible;}
  }
}
.c_c01013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01013:after { /* webkit #35443 */
  content: '';
}
.t_c01013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01013 { /* info for Javascript */
  display:none;
}
.l_c01013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
.sc__c01013{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
}
.y0_c01013{bottom:0.000000px;}
.h0_c01013{height:1008.450000px;}
.h1_c01013{height:1008.750000px;}
.w1_c01013{width:700.500000px;}
.w0_c01013{width:700.650000px;}
.x0_c01013{left:0.000000px;}
@media print{
.y0_c01013{bottom:0.000000pt;}
.h0_c01013{height:896.400000pt;}
.h1_c01013{height:896.666667pt;}
.w1_c01013{width:622.666667pt;}
.w0_c01013{width:622.800000pt;}
.x0_c01013{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_c01014 {
    display:none;
  }
  .loading-indicator_c01014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01014 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01014 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01014" -> "#page-container .classname_c01014")
 */
.pf_c01014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01014 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01014 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01014 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01014 {overflow:visible;}
  }
}
.c_c01014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01014 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01014:after { /* webkit #35443 */
  content: '';
}
.t_c01014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01014 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01014 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01014 { /* info for Javascript */
  display:none;
}
.l_c01014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_31cbb8ad81f4c1d1a4b2c7cb.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c01014{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);}
.m18_c01014{transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);}
.m2c_c01014{transform:matrix(0.068185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068185,0.000000,0.000000,0.250000,0,0);}
.m24_c01014{transform:matrix(0.080335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080335,0.000000,0.000000,0.250000,0,0);}
.m5_c01014{transform:matrix(0.090563,-0.001087,0.003000,0.249982,0,0);-ms-transform:matrix(0.090563,-0.001087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.090563,-0.001087,0.003000,0.249982,0,0);}
.m2a_c01014{transform:matrix(0.095410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095410,0.000000,0.000000,0.250000,0,0);}
.m10_c01014{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);}
.m6_c01014{transform:matrix(0.096463,-0.001158,0.003000,0.249982,0,0);-ms-transform:matrix(0.096463,-0.001158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.096463,-0.001158,0.003000,0.249982,0,0);}
.m11_c01014{transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);}
.m2d_c01014{transform:matrix(0.109940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109940,0.000000,0.000000,0.250000,0,0);}
.m27_c01014{transform:matrix(0.128020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128020,0.000000,0.000000,0.250000,0,0);}
.mc_c01014{transform:matrix(0.134833,-0.002427,0.004499,0.249960,0,0);-ms-transform:matrix(0.134833,-0.002427,0.004499,0.249960,0,0);-webkit-transform:matrix(0.134833,-0.002427,0.004499,0.249960,0,0);}
.m23_c01014{transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);}
.m1e_c01014{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);}
.m2_c01014{transform:matrix(0.161983,-0.001944,0.003000,0.249982,0,0);-ms-transform:matrix(0.161983,-0.001944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161983,-0.001944,0.003000,0.249982,0,0);}
.md_c01014{transform:matrix(0.172742,-0.003109,0.004499,0.249960,0,0);-ms-transform:matrix(0.172742,-0.003109,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172742,-0.003109,0.004499,0.249960,0,0);}
.m3_c01014{transform:matrix(0.189966,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189966,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189966,-0.002280,0.003000,0.249982,0,0);}
.me_c01014{transform:matrix(0.194754,0.002532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194754,0.002532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194754,0.002532,-0.003250,0.249979,0,0);}
.mb_c01014{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);}
.m2f_c01014{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);}
.m1d_c01014{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);}
.m26_c01014{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);}
.m1f_c01014{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);}
.ma_c01014{transform:matrix(0.230538,-0.002766,0.003000,0.249982,0,0);-ms-transform:matrix(0.230538,-0.002766,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230538,-0.002766,0.003000,0.249982,0,0);}
.mf_c01014{transform:matrix(0.230780,0.003000,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230780,0.003000,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230780,0.003000,-0.003250,0.249979,0,0);}
.m15_c01014{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);}
.m20_c01014{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);}
.m4_c01014{transform:matrix(0.271595,-0.003259,0.003000,0.249982,0,0);-ms-transform:matrix(0.271595,-0.003259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271595,-0.003259,0.003000,0.249982,0,0);}
.m25_c01014{transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);}
.m2e_c01014{transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290465,0.000000,0.000000,0.250000,0,0);}
.m28_c01014{transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299810,0.000000,0.000000,0.250000,0,0);}
.m2b_c01014{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);}
.m22_c01014{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_c01014{transform:matrix(0.327686,-0.003932,0.003000,0.249982,0,0);-ms-transform:matrix(0.327686,-0.003932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.327686,-0.003932,0.003000,0.249982,0,0);}
.m21_c01014{transform:matrix(0.337780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337780,0.000000,0.000000,0.250000,0,0);}
.m16_c01014{transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);}
.m1_c01014{transform:matrix(0.375513,-0.004506,0.003000,0.249982,0,0);-ms-transform:matrix(0.375513,-0.004506,0.003000,0.249982,0,0);-webkit-transform:matrix(0.375513,-0.004506,0.003000,0.249982,0,0);}
.m1c_c01014{transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391460,0.000000,0.000000,0.250000,0,0);}
.m14_c01014{transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395125,0.000000,0.000000,0.250000,0,0);}
.m9_c01014{transform:matrix(0.398086,-0.004777,0.003000,0.249982,0,0);-ms-transform:matrix(0.398086,-0.004777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.398086,-0.004777,0.003000,0.249982,0,0);}
.m1b_c01014{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);}
.m19_c01014{transform:matrix(0.432200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432200,0.000000,0.000000,0.250000,0,0);}
.m0_c01014{transform:matrix(0.435259,-0.005223,0.003000,0.249982,0,0);-ms-transform:matrix(0.435259,-0.005223,0.003000,0.249982,0,0);-webkit-transform:matrix(0.435259,-0.005223,0.003000,0.249982,0,0);}
.m29_c01014{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);}
.m12_c01014{transform:matrix(0.473980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473980,0.000000,0.000000,0.250000,0,0);}
.m17_c01014{transform:matrix(0.713075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713075,0.000000,0.000000,0.250000,0,0);}
.m7_c01014{transform:matrix(0.720723,-0.008649,0.003000,0.249982,0,0);-ms-transform:matrix(0.720723,-0.008649,0.003000,0.249982,0,0);-webkit-transform:matrix(0.720723,-0.008649,0.003000,0.249982,0,0);}
.m1a_c01014{transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls0_c01014{letter-spacing:0.000000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:0.000000px;}
.fc0_c01014{color:transparent;}
.fs6_c01014{font-size:31.500000px;}
.fs7_c01014{font-size:34.650000px;}
.fs8_c01014{font-size:37.800000px;}
.fsd_c01014{font-size:45.150000px;}
.fs0_c01014{font-size:65.104687px;}
.fs5_c01014{font-size:69.300000px;}
.fsb_c01014{font-size:81.900000px;}
.fsa_c01014{font-size:110.250000px;}
.fs9_c01014{font-size:120.750000px;}
.fsc_c01014{font-size:173.250000px;}
.fs1_c01014{font-size:212.115271px;}
.fs4_c01014{font-size:248.871027px;}
.fs2_c01014{font-size:286.650000px;}
.fs3_c01014{font-size:431.619905px;}
.y0_c01014{bottom:0.000000px;}
.y1a_c01014{bottom:98.001000px;}
.y19_c01014{bottom:107.697000px;}
.y12_c01014{bottom:110.071500px;}
.y11_c01014{bottom:111.627000px;}
.y18_c01014{bottom:131.176500px;}
.y17_c01014{bottom:144.705000px;}
.y16_c01014{bottom:471.790500px;}
.y15_c01014{bottom:475.338000px;}
.y10_c01014{bottom:479.082481px;}
.yf_c01014{bottom:480.336000px;}
.y14_c01014{bottom:527.850000px;}
.y13_c01014{bottom:589.140000px;}
.yd_c01014{bottom:603.796500px;}
.ye_c01014{bottom:604.704942px;}
.yc_c01014{bottom:797.310000px;}
.yb_c01014{bottom:914.833404px;}
.ya_c01014{bottom:918.002598px;}
.y1_c01014{bottom:932.853000px;}
.y2_c01014{bottom:933.814470px;}
.y3_c01014{bottom:935.009904px;}
.y4_c01014{bottom:935.758326px;}
.y5_c01014{bottom:936.500034px;}
.y6_c01014{bottom:936.890418px;}
.y7_c01014{bottom:937.468614px;}
.y8_c01014{bottom:938.284446px;}
.y9_c01014{bottom:939.359856px;}
.h8_c01014{height:31.500000px;}
.h9_c01014{height:34.650000px;}
.ha_c01014{height:37.800000px;}
.hf_c01014{height:45.150000px;}
.h2_c01014{height:65.104687px;}
.h7_c01014{height:69.300000px;}
.hd_c01014{height:81.900000px;}
.hc_c01014{height:110.250000px;}
.hb_c01014{height:120.750000px;}
.he_c01014{height:173.250000px;}
.h3_c01014{height:212.115271px;}
.h6_c01014{height:248.871027px;}
.h4_c01014{height:286.650000px;}
.h5_c01014{height:431.619905px;}
.h1_c01014{height:1005.000000px;}
.h0_c01014{height:1005.150000px;}
.w0_c01014{width:715.200000px;}
.w1_c01014{width:715.500000px;}
.x0_c01014{left:0.000000px;}
.x24_c01014{left:52.380000px;}
.x21_c01014{left:55.080000px;}
.xa_c01014{left:60.461448px;}
.x1_c01014{left:62.067000px;}
.x1e_c01014{left:63.180000px;}
.xc_c01014{left:111.513000px;}
.xd_c01014{left:131.623500px;}
.x2_c01014{left:142.189500px;}
.x25_c01014{left:157.140000px;}
.x22_c01014{left:181.170000px;}
.x13_c01014{left:204.390000px;}
.xf_c01014{left:211.410000px;}
.x14_c01014{left:218.160000px;}
.x15_c01014{left:224.100000px;}
.xe_c01014{left:228.048000px;}
.x3_c01014{left:241.809000px;}
.x16_c01014{left:243.000000px;}
.x10_c01014{left:272.700000px;}
.x17_c01014{left:292.410000px;}
.x4_c01014{left:304.177500px;}
.x26_c01014{left:316.710000px;}
.x11_c01014{left:326.970000px;}
.x18_c01014{left:354.510000px;}
.x5_c01014{left:365.986500px;}
.xb_c01014{left:377.445612px;}
.x27_c01014{left:391.500000px;}
.x12_c01014{left:396.090000px;}
.x6_c01014{left:398.518500px;}
.x19_c01014{left:429.570000px;}
.x7_c01014{left:446.701500px;}
.x28_c01014{left:450.360000px;}
.x1f_c01014{left:457.920000px;}
.x29_c01014{left:488.700000px;}
.x8_c01014{left:514.687500px;}
.x2a_c01014{left:536.760000px;}
.x9_c01014{left:604.305000px;}
.x1c_c01014{left:614.520000px;}
.x1d_c01014{left:620.190000px;}
.x1a_c01014{left:623.160000px;}
.x2b_c01014{left:624.510000px;}
.x20_c01014{left:626.940000px;}
.x23_c01014{left:630.180000px;}
.x1b_c01014{left:632.610000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls0_c01014{letter-spacing:0.000000pt;}
.ws0_c01014{word-spacing:0.000000pt;}
.fs6_c01014{font-size:28.000000pt;}
.fs7_c01014{font-size:30.800000pt;}
.fs8_c01014{font-size:33.600000pt;}
.fsd_c01014{font-size:40.133333pt;}
.fs0_c01014{font-size:57.870833pt;}
.fs5_c01014{font-size:61.600000pt;}
.fsb_c01014{font-size:72.800000pt;}
.fsa_c01014{font-size:98.000000pt;}
.fs9_c01014{font-size:107.333333pt;}
.fsc_c01014{font-size:154.000000pt;}
.fs1_c01014{font-size:188.546907pt;}
.fs4_c01014{font-size:221.218691pt;}
.fs2_c01014{font-size:254.800000pt;}
.fs3_c01014{font-size:383.662138pt;}
.y0_c01014{bottom:0.000000pt;}
.y1a_c01014{bottom:87.112000pt;}
.y19_c01014{bottom:95.730667pt;}
.y12_c01014{bottom:97.841333pt;}
.y11_c01014{bottom:99.224000pt;}
.y18_c01014{bottom:116.601333pt;}
.y17_c01014{bottom:128.626667pt;}
.y16_c01014{bottom:419.369333pt;}
.y15_c01014{bottom:422.522667pt;}
.y10_c01014{bottom:425.851095pt;}
.yf_c01014{bottom:426.965333pt;}
.y14_c01014{bottom:469.200000pt;}
.y13_c01014{bottom:523.680000pt;}
.yd_c01014{bottom:536.708000pt;}
.ye_c01014{bottom:537.515504pt;}
.yc_c01014{bottom:708.720000pt;}
.yb_c01014{bottom:813.185248pt;}
.ya_c01014{bottom:816.002309pt;}
.y1_c01014{bottom:829.202667pt;}
.y2_c01014{bottom:830.057307pt;}
.y3_c01014{bottom:831.119915pt;}
.y4_c01014{bottom:831.785179pt;}
.y5_c01014{bottom:832.444475pt;}
.y6_c01014{bottom:832.791483pt;}
.y7_c01014{bottom:833.305435pt;}
.y8_c01014{bottom:834.030619pt;}
.y9_c01014{bottom:834.986539pt;}
.h8_c01014{height:28.000000pt;}
.h9_c01014{height:30.800000pt;}
.ha_c01014{height:33.600000pt;}
.hf_c01014{height:40.133333pt;}
.h2_c01014{height:57.870833pt;}
.h7_c01014{height:61.600000pt;}
.hd_c01014{height:72.800000pt;}
.hc_c01014{height:98.000000pt;}
.hb_c01014{height:107.333333pt;}
.he_c01014{height:154.000000pt;}
.h3_c01014{height:188.546907pt;}
.h6_c01014{height:221.218691pt;}
.h4_c01014{height:254.800000pt;}
.h5_c01014{height:383.662138pt;}
.h1_c01014{height:893.333333pt;}
.h0_c01014{height:893.466667pt;}
.w0_c01014{width:635.733333pt;}
.w1_c01014{width:636.000000pt;}
.x0_c01014{left:0.000000pt;}
.x24_c01014{left:46.560000pt;}
.x21_c01014{left:48.960000pt;}
.xa_c01014{left:53.743509pt;}
.x1_c01014{left:55.170667pt;}
.x1e_c01014{left:56.160000pt;}
.xc_c01014{left:99.122667pt;}
.xd_c01014{left:116.998667pt;}
.x2_c01014{left:126.390667pt;}
.x25_c01014{left:139.680000pt;}
.x22_c01014{left:161.040000pt;}
.x13_c01014{left:181.680000pt;}
.xf_c01014{left:187.920000pt;}
.x14_c01014{left:193.920000pt;}
.x15_c01014{left:199.200000pt;}
.xe_c01014{left:202.709333pt;}
.x3_c01014{left:214.941333pt;}
.x16_c01014{left:216.000000pt;}
.x10_c01014{left:242.400000pt;}
.x17_c01014{left:259.920000pt;}
.x4_c01014{left:270.380000pt;}
.x26_c01014{left:281.520000pt;}
.x11_c01014{left:290.640000pt;}
.x18_c01014{left:315.120000pt;}
.x5_c01014{left:325.321333pt;}
.xb_c01014{left:335.507211pt;}
.x27_c01014{left:348.000000pt;}
.x12_c01014{left:352.080000pt;}
.x6_c01014{left:354.238667pt;}
.x19_c01014{left:381.840000pt;}
.x7_c01014{left:397.068000pt;}
.x28_c01014{left:400.320000pt;}
.x1f_c01014{left:407.040000pt;}
.x29_c01014{left:434.400000pt;}
.x8_c01014{left:457.500000pt;}
.x2a_c01014{left:477.120000pt;}
.x9_c01014{left:537.160000pt;}
.x1c_c01014{left:546.240000pt;}
.x1d_c01014{left:551.280000pt;}
.x1a_c01014{left:553.920000pt;}
.x2b_c01014{left:555.120000pt;}
.x20_c01014{left:557.280000pt;}
.x23_c01014{left:560.160000pt;}
.x1b_c01014{left:562.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_c01015 {
    display:none;
  }
  .loading-indicator_c01015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01015" -> "#page-container .classname_c01015")
 */
.pf_c01015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01015 {overflow:visible;}
  }
}
.c_c01015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01015:after { /* webkit #35443 */
  content: '';
}
.t_c01015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01015 { /* info for Javascript */
  display:none;
}
.l_c01015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
.sc__c01015{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
}
.y0_c01015{bottom:0.000000px;}
.h0_c01015{height:1008.450000px;}
.h1_c01015{height:1008.750000px;}
.w1_c01015{width:700.500000px;}
.w0_c01015{width:700.650000px;}
.x0_c01015{left:0.000000px;}
@media print{
.y0_c01015{bottom:0.000000pt;}
.h0_c01015{height:896.400000pt;}
.h1_c01015{height:896.666667pt;}
.w1_c01015{width:622.666667pt;}
.w0_c01015{width:622.800000pt;}
.x0_c01015{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_c01016 {
    display:none;
  }
  .loading-indicator_c01016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01016" -> "#page-container .classname_c01016")
 */
.pf_c01016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01016 {overflow:visible;}
  }
}
.c_c01016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01016:after { /* webkit #35443 */
  content: '';
}
.t_c01016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01016 { /* info for Javascript */
  display:none;
}
.l_c01016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.000000;font-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_c01016{transform:matrix(0.012317,0.000271,-0.005499,0.249940,0,0);-ms-transform:matrix(0.012317,0.000271,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.012317,0.000271,-0.005499,0.249940,0,0);}
.m1b_c01016{transform:matrix(0.012702,0.000279,-0.005499,0.249940,0,0);-ms-transform:matrix(0.012702,0.000279,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.012702,0.000279,-0.005499,0.249940,0,0);}
.maf_c01016{transform:matrix(0.013837,0.000304,-0.005499,0.249940,0,0);-ms-transform:matrix(0.013837,0.000304,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.013837,0.000304,-0.005499,0.249940,0,0);}
.m13b_c01016{transform:matrix(0.019500,0.000429,-0.005499,0.249940,0,0);-ms-transform:matrix(0.019500,0.000429,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.019500,0.000429,-0.005499,0.249940,0,0);}
.ma1_c01016{transform:matrix(0.026109,0.000574,-0.005499,0.249940,0,0);-ms-transform:matrix(0.026109,0.000574,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.026109,0.000574,-0.005499,0.249940,0,0);}
.m14e_c01016{transform:matrix(0.061789,0.001607,-0.006498,0.249916,0,0);-ms-transform:matrix(0.061789,0.001607,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.061789,0.001607,-0.006498,0.249916,0,0);}
.md7_c01016{transform:matrix(0.062405,0.001373,-0.005499,0.249940,0,0);-ms-transform:matrix(0.062405,0.001373,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.062405,0.001373,-0.005499,0.249940,0,0);}
.m14d_c01016{transform:matrix(0.070656,0.001837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.070656,0.001837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.070656,0.001837,-0.006498,0.249916,0,0);}
.m14b_c01016{transform:matrix(0.075066,0.002705,-0.009003,0.249838,0,0);-ms-transform:matrix(0.075066,0.002705,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.075066,0.002705,-0.009003,0.249838,0,0);}
.m63_c01016{transform:matrix(0.089188,0.001962,-0.005499,0.249940,0,0);-ms-transform:matrix(0.089188,0.001962,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.089188,0.001962,-0.005499,0.249940,0,0);}
.m56_c01016{transform:matrix(0.092913,0.002044,-0.005499,0.249940,0,0);-ms-transform:matrix(0.092913,0.002044,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.092913,0.002044,-0.005499,0.249940,0,0);}
.mc6_c01016{transform:matrix(0.095487,0.002101,-0.005499,0.249940,0,0);-ms-transform:matrix(0.095487,0.002101,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.095487,0.002101,-0.005499,0.249940,0,0);}
.m137_c01016{transform:matrix(0.102205,0.002249,-0.005499,0.249940,0,0);-ms-transform:matrix(0.102205,0.002249,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.102205,0.002249,-0.005499,0.249940,0,0);}
.mda_c01016{transform:matrix(0.102675,0.002259,-0.005499,0.249940,0,0);-ms-transform:matrix(0.102675,0.002259,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.102675,0.002259,-0.005499,0.249940,0,0);}
.m14f_c01016{transform:matrix(0.109733,0.002853,-0.006498,0.249916,0,0);-ms-transform:matrix(0.109733,0.002853,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.109733,0.002853,-0.006498,0.249916,0,0);}
.m14c_c01016{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);}
.m132_c01016{transform:matrix(0.128539,0.002828,-0.005499,0.249940,0,0);-ms-transform:matrix(0.128539,0.002828,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.128539,0.002828,-0.005499,0.249940,0,0);}
.md9_c01016{transform:matrix(0.130953,0.002881,-0.005499,0.249940,0,0);-ms-transform:matrix(0.130953,0.002881,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.130953,0.002881,-0.005499,0.249940,0,0);}
.m153_c01016{transform:matrix(0.132035,0.003433,-0.006498,0.249916,0,0);-ms-transform:matrix(0.132035,0.003433,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.132035,0.003433,-0.006498,0.249916,0,0);}
.m14a_c01016{transform:matrix(0.135372,0.004878,-0.009003,0.249838,0,0);-ms-transform:matrix(0.135372,0.004878,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.135372,0.004878,-0.009003,0.249838,0,0);}
.mc4_c01016{transform:matrix(0.137852,0.003033,-0.005499,0.249940,0,0);-ms-transform:matrix(0.137852,0.003033,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.137852,0.003033,-0.005499,0.249940,0,0);}
.m85_c01016{transform:matrix(0.140596,0.003093,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140596,0.003093,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140596,0.003093,-0.005499,0.249940,0,0);}
.mf9_c01016{transform:matrix(0.140606,0.003093,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140606,0.003093,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140606,0.003093,-0.005499,0.249940,0,0);}
.ma2_c01016{transform:matrix(0.140756,0.003097,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140756,0.003097,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140756,0.003097,-0.005499,0.249940,0,0);}
.m76_c01016{transform:matrix(0.140851,0.003099,-0.005499,0.249940,0,0);-ms-transform:matrix(0.140851,0.003099,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.140851,0.003099,-0.005499,0.249940,0,0);}
.ma4_c01016{transform:matrix(0.144200,0.003172,-0.005499,0.249940,0,0);-ms-transform:matrix(0.144200,0.003172,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.144200,0.003172,-0.005499,0.249940,0,0);}
.md3_c01016{transform:matrix(0.144700,0.003183,-0.005499,0.249940,0,0);-ms-transform:matrix(0.144700,0.003183,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.144700,0.003183,-0.005499,0.249940,0,0);}
.mbd_c01016{transform:matrix(0.146260,0.003218,-0.005499,0.249940,0,0);-ms-transform:matrix(0.146260,0.003218,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.146260,0.003218,-0.005499,0.249940,0,0);}
.mc9_c01016{transform:matrix(0.147214,0.003239,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147214,0.003239,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147214,0.003239,-0.005499,0.249940,0,0);}
.m2a_c01016{transform:matrix(0.147369,0.003242,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147369,0.003242,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147369,0.003242,-0.005499,0.249940,0,0);}
.mbb_c01016{transform:matrix(0.147374,0.003242,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147374,0.003242,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147374,0.003242,-0.005499,0.249940,0,0);}
.m91_c01016{transform:matrix(0.147569,0.003247,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147569,0.003247,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147569,0.003247,-0.005499,0.249940,0,0);}
.m106_c01016{transform:matrix(0.149649,0.003292,-0.005499,0.249940,0,0);-ms-transform:matrix(0.149649,0.003292,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.149649,0.003292,-0.005499,0.249940,0,0);}
.m8f_c01016{transform:matrix(0.149839,0.003296,-0.005499,0.249940,0,0);-ms-transform:matrix(0.149839,0.003296,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.149839,0.003296,-0.005499,0.249940,0,0);}
.mb5_c01016{transform:matrix(0.150109,0.003302,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150109,0.003302,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150109,0.003302,-0.005499,0.249940,0,0);}
.mfd_c01016{transform:matrix(0.150274,0.003306,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150274,0.003306,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150274,0.003306,-0.005499,0.249940,0,0);}
.m93_c01016{transform:matrix(0.150429,0.003309,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150429,0.003309,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150429,0.003309,-0.005499,0.249940,0,0);}
.m74_c01016{transform:matrix(0.151193,0.003326,-0.005499,0.249940,0,0);-ms-transform:matrix(0.151193,0.003326,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.151193,0.003326,-0.005499,0.249940,0,0);}
.mb1_c01016{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);}
.m81_c01016{transform:matrix(0.151968,0.003343,-0.005499,0.249940,0,0);-ms-transform:matrix(0.151968,0.003343,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.151968,0.003343,-0.005499,0.249940,0,0);}
.m54_c01016{transform:matrix(0.152383,0.003352,-0.005499,0.249940,0,0);-ms-transform:matrix(0.152383,0.003352,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.152383,0.003352,-0.005499,0.249940,0,0);}
.m8a_c01016{transform:matrix(0.153378,0.003374,-0.005499,0.249940,0,0);-ms-transform:matrix(0.153378,0.003374,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.153378,0.003374,-0.005499,0.249940,0,0);}
.mad_c01016{transform:matrix(0.154987,0.003410,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154987,0.003410,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154987,0.003410,-0.005499,0.249940,0,0);}
.mca_c01016{transform:matrix(0.155102,0.003412,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155102,0.003412,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155102,0.003412,-0.005499,0.249940,0,0);}
.m146_c01016{transform:matrix(0.155152,0.003413,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155152,0.003413,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155152,0.003413,-0.005499,0.249940,0,0);}
.m40_c01016{transform:matrix(0.155287,0.003416,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155287,0.003416,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155287,0.003416,-0.005499,0.249940,0,0);}
.me6_c01016{transform:matrix(0.155552,0.003422,-0.005499,0.249940,0,0);-ms-transform:matrix(0.155552,0.003422,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.155552,0.003422,-0.005499,0.249940,0,0);}
.m21_c01016{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);}
.mc0_c01016{transform:matrix(0.156837,0.003450,-0.005499,0.249940,0,0);-ms-transform:matrix(0.156837,0.003450,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.156837,0.003450,-0.005499,0.249940,0,0);}
.m101_c01016{transform:matrix(0.156982,0.003454,-0.005499,0.249940,0,0);-ms-transform:matrix(0.156982,0.003454,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.156982,0.003454,-0.005499,0.249940,0,0);}
.mc8_c01016{transform:matrix(0.157487,0.003465,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157487,0.003465,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157487,0.003465,-0.005499,0.249940,0,0);}
.m61_c01016{transform:matrix(0.157862,0.003473,-0.005499,0.249940,0,0);-ms-transform:matrix(0.157862,0.003473,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.157862,0.003473,-0.005499,0.249940,0,0);}
.mf3_c01016{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);}
.m4a_c01016{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);}
.m104_c01016{transform:matrix(0.158597,0.003489,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158597,0.003489,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158597,0.003489,-0.005499,0.249940,0,0);}
.m7c_c01016{transform:matrix(0.158882,0.003495,-0.005499,0.249940,0,0);-ms-transform:matrix(0.158882,0.003495,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.158882,0.003495,-0.005499,0.249940,0,0);}
.mef_c01016{transform:matrix(0.160261,0.003526,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160261,0.003526,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160261,0.003526,-0.005499,0.249940,0,0);}
.m70_c01016{transform:matrix(0.160971,0.003541,-0.005499,0.249940,0,0);-ms-transform:matrix(0.160971,0.003541,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.160971,0.003541,-0.005499,0.249940,0,0);}
.m7e_c01016{transform:matrix(0.161286,0.003548,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161286,0.003548,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161286,0.003548,-0.005499,0.249940,0,0);}
.m7d_c01016{transform:matrix(0.161476,0.003552,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161476,0.003552,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161476,0.003552,-0.005499,0.249940,0,0);}
.mf5_c01016{transform:matrix(0.161596,0.003555,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161596,0.003555,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161596,0.003555,-0.005499,0.249940,0,0);}
.m13e_c01016{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);}
.m84_c01016{transform:matrix(0.162656,0.003578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.162656,0.003578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.162656,0.003578,-0.005499,0.249940,0,0);}
.mc2_c01016{transform:matrix(0.163106,0.003588,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163106,0.003588,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163106,0.003588,-0.005499,0.249940,0,0);}
.m138_c01016{transform:matrix(0.163850,0.003605,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163850,0.003605,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163850,0.003605,-0.005499,0.249940,0,0);}
.m97_c01016{transform:matrix(0.163900,0.003606,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163900,0.003606,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163900,0.003606,-0.005499,0.249940,0,0);}
.m124_c01016{transform:matrix(0.164235,0.003613,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164235,0.003613,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164235,0.003613,-0.005499,0.249940,0,0);}
.mcf_c01016{transform:matrix(0.164535,0.003620,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164535,0.003620,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164535,0.003620,-0.005499,0.249940,0,0);}
.mf4_c01016{transform:matrix(0.164965,0.003629,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164965,0.003629,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164965,0.003629,-0.005499,0.249940,0,0);}
.m67_c01016{transform:matrix(0.165275,0.003636,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165275,0.003636,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165275,0.003636,-0.005499,0.249940,0,0);}
.ma6_c01016{transform:matrix(0.165675,0.003645,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165675,0.003645,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165675,0.003645,-0.005499,0.249940,0,0);}
.mc1_c01016{transform:matrix(0.165895,0.003650,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165895,0.003650,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165895,0.003650,-0.005499,0.249940,0,0);}
.m117_c01016{transform:matrix(0.166015,0.003652,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166015,0.003652,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166015,0.003652,-0.005499,0.249940,0,0);}
.m36_c01016{transform:matrix(0.166625,0.003666,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166625,0.003666,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166625,0.003666,-0.005499,0.249940,0,0);}
.md2_c01016{transform:matrix(0.166715,0.003668,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166715,0.003668,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166715,0.003668,-0.005499,0.249940,0,0);}
.m64_c01016{transform:matrix(0.167320,0.003681,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167320,0.003681,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167320,0.003681,-0.005499,0.249940,0,0);}
.ma0_c01016{transform:matrix(0.167370,0.003682,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167370,0.003682,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167370,0.003682,-0.005499,0.249940,0,0);}
.mbe_c01016{transform:matrix(0.168229,0.003701,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168229,0.003701,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168229,0.003701,-0.005499,0.249940,0,0);}
.mb6_c01016{transform:matrix(0.168264,0.003702,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168264,0.003702,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168264,0.003702,-0.005499,0.249940,0,0);}
.mfb_c01016{transform:matrix(0.168449,0.003706,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168449,0.003706,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168449,0.003706,-0.005499,0.249940,0,0);}
.mab_c01016{transform:matrix(0.168689,0.003711,-0.005499,0.249940,0,0);-ms-transform:matrix(0.168689,0.003711,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.168689,0.003711,-0.005499,0.249940,0,0);}
.m1f_c01016{transform:matrix(0.169004,0.003718,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169004,0.003718,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169004,0.003718,-0.005499,0.249940,0,0);}
.me3_c01016{transform:matrix(0.169169,0.003722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169169,0.003722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169169,0.003722,-0.005499,0.249940,0,0);}
.me9_c01016{transform:matrix(0.169274,0.003724,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169274,0.003724,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169274,0.003724,-0.005499,0.249940,0,0);}
.mb8_c01016{transform:matrix(0.169594,0.003731,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169594,0.003731,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169594,0.003731,-0.005499,0.249940,0,0);}
.mf7_c01016{transform:matrix(0.169804,0.003736,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169804,0.003736,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169804,0.003736,-0.005499,0.249940,0,0);}
.m96_c01016{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);}
.m29_c01016{transform:matrix(0.169919,0.003738,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169919,0.003738,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169919,0.003738,-0.005499,0.249940,0,0);}
.m7a_c01016{transform:matrix(0.170094,0.003742,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170094,0.003742,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170094,0.003742,-0.005499,0.249940,0,0);}
.m57_c01016{transform:matrix(0.170359,0.003748,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170359,0.003748,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170359,0.003748,-0.005499,0.249940,0,0);}
.m110_c01016{transform:matrix(0.170369,0.003748,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170369,0.003748,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170369,0.003748,-0.005499,0.249940,0,0);}
.md4_c01016{transform:matrix(0.170374,0.003748,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170374,0.003748,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170374,0.003748,-0.005499,0.249940,0,0);}
.m10c_c01016{transform:matrix(0.170699,0.003755,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170699,0.003755,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170699,0.003755,-0.005499,0.249940,0,0);}
.m6b_c01016{transform:matrix(0.170884,0.003759,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170884,0.003759,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170884,0.003759,-0.005499,0.249940,0,0);}
.m7f_c01016{transform:matrix(0.170969,0.003761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170969,0.003761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170969,0.003761,-0.005499,0.249940,0,0);}
.m6a_c01016{transform:matrix(0.171489,0.003773,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171489,0.003773,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171489,0.003773,-0.005499,0.249940,0,0);}
.m37_c01016{transform:matrix(0.171758,0.003779,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171758,0.003779,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171758,0.003779,-0.005499,0.249940,0,0);}
.m140_c01016{transform:matrix(0.172298,0.003791,-0.005499,0.249940,0,0);-ms-transform:matrix(0.172298,0.003791,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.172298,0.003791,-0.005499,0.249940,0,0);}
.m142_c01016{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);}
.mb_c01016{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);}
.mcd_c01016{transform:matrix(0.173303,0.003813,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173303,0.003813,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173303,0.003813,-0.005499,0.249940,0,0);}
.mb7_c01016{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);}
.m22_c01016{transform:matrix(0.173543,0.003818,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173543,0.003818,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173543,0.003818,-0.005499,0.249940,0,0);}
.m1d_c01016{transform:matrix(0.173893,0.003826,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173893,0.003826,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173893,0.003826,-0.005499,0.249940,0,0);}
.mba_c01016{transform:matrix(0.174248,0.003833,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174248,0.003833,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174248,0.003833,-0.005499,0.249940,0,0);}
.m7b_c01016{transform:matrix(0.174288,0.003834,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174288,0.003834,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174288,0.003834,-0.005499,0.249940,0,0);}
.m78_c01016{transform:matrix(0.174363,0.003836,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174363,0.003836,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174363,0.003836,-0.005499,0.249940,0,0);}
.m45_c01016{transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174473,0.003838,-0.005499,0.249940,0,0);}
.m103_c01016{transform:matrix(0.174528,0.003840,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174528,0.003840,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174528,0.003840,-0.005499,0.249940,0,0);}
.m50_c01016{transform:matrix(0.174623,0.003842,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174623,0.003842,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174623,0.003842,-0.005499,0.249940,0,0);}
.m9a_c01016{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);}
.m100_c01016{transform:matrix(0.174928,0.003848,-0.005499,0.249940,0,0);-ms-transform:matrix(0.174928,0.003848,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.174928,0.003848,-0.005499,0.249940,0,0);}
.m102_c01016{transform:matrix(0.175068,0.003851,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175068,0.003851,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175068,0.003851,-0.005499,0.249940,0,0);}
.m6d_c01016{transform:matrix(0.175453,0.003860,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175453,0.003860,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175453,0.003860,-0.005499,0.249940,0,0);}
.me0_c01016{transform:matrix(0.175642,0.003864,-0.005499,0.249940,0,0);-ms-transform:matrix(0.175642,0.003864,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.175642,0.003864,-0.005499,0.249940,0,0);}
.m83_c01016{transform:matrix(0.176017,0.003872,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176017,0.003872,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176017,0.003872,-0.005499,0.249940,0,0);}
.m10e_c01016{transform:matrix(0.176152,0.003875,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176152,0.003875,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176152,0.003875,-0.005499,0.249940,0,0);}
.mbf_c01016{transform:matrix(0.176897,0.003892,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176897,0.003892,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176897,0.003892,-0.005499,0.249940,0,0);}
.m6f_c01016{transform:matrix(0.177052,0.003895,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177052,0.003895,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177052,0.003895,-0.005499,0.249940,0,0);}
.m10d_c01016{transform:matrix(0.177197,0.003898,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177197,0.003898,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177197,0.003898,-0.005499,0.249940,0,0);}
.m10f_c01016{transform:matrix(0.177437,0.003904,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177437,0.003904,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177437,0.003904,-0.005499,0.249940,0,0);}
.ma7_c01016{transform:matrix(0.177502,0.003905,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177502,0.003905,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177502,0.003905,-0.005499,0.249940,0,0);}
.m73_c01016{transform:matrix(0.177817,0.003912,-0.005499,0.249940,0,0);-ms-transform:matrix(0.177817,0.003912,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.177817,0.003912,-0.005499,0.249940,0,0);}
.med_c01016{transform:matrix(0.179082,0.003940,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179082,0.003940,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179082,0.003940,-0.005499,0.249940,0,0);}
.m38_c01016{transform:matrix(0.180046,0.003961,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180046,0.003961,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180046,0.003961,-0.005499,0.249940,0,0);}
.md0_c01016{transform:matrix(0.180076,0.003962,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180076,0.003962,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180076,0.003962,-0.005499,0.249940,0,0);}
.m15_c01016{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);}
.md8_c01016{transform:matrix(0.180346,0.003968,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180346,0.003968,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180346,0.003968,-0.005499,0.249940,0,0);}
.mee_c01016{transform:matrix(0.180541,0.003972,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180541,0.003972,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180541,0.003972,-0.005499,0.249940,0,0);}
.mfe_c01016{transform:matrix(0.180676,0.003975,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180676,0.003975,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180676,0.003975,-0.005499,0.249940,0,0);}
.mb4_c01016{transform:matrix(0.180921,0.003980,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180921,0.003980,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180921,0.003980,-0.005499,0.249940,0,0);}
.mff_c01016{transform:matrix(0.181596,0.003995,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181596,0.003995,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181596,0.003995,-0.005499,0.249940,0,0);}
.m13f_c01016{transform:matrix(0.181621,0.003996,-0.005499,0.249940,0,0);-ms-transform:matrix(0.181621,0.003996,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.181621,0.003996,-0.005499,0.249940,0,0);}
.m60_c01016{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);}
.ma9_c01016{transform:matrix(0.182346,0.004012,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182346,0.004012,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182346,0.004012,-0.005499,0.249940,0,0);}
.mc7_c01016{transform:matrix(0.182376,0.004012,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182376,0.004012,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182376,0.004012,-0.005499,0.249940,0,0);}
.maa_c01016{transform:matrix(0.182501,0.004015,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182501,0.004015,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182501,0.004015,-0.005499,0.249940,0,0);}
.m125_c01016{transform:matrix(0.182631,0.004018,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182631,0.004018,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182631,0.004018,-0.005499,0.249940,0,0);}
.m3f_c01016{transform:matrix(0.182776,0.004021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.182776,0.004021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.182776,0.004021,-0.005499,0.249940,0,0);}
.me2_c01016{transform:matrix(0.183021,0.004026,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183021,0.004026,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183021,0.004026,-0.005499,0.249940,0,0);}
.m28_c01016{transform:matrix(0.183066,0.004027,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183066,0.004027,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183066,0.004027,-0.005499,0.249940,0,0);}
.ma5_c01016{transform:matrix(0.183281,0.004032,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183281,0.004032,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183281,0.004032,-0.005499,0.249940,0,0);}
.m41_c01016{transform:matrix(0.183351,0.004034,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183351,0.004034,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183351,0.004034,-0.005499,0.249940,0,0);}
.m5f_c01016{transform:matrix(0.183476,0.004036,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183476,0.004036,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183476,0.004036,-0.005499,0.249940,0,0);}
.m136_c01016{transform:matrix(0.183656,0.004040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183656,0.004040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183656,0.004040,-0.005499,0.249940,0,0);}
.m33_c01016{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);}
.m12d_c01016{transform:matrix(0.184235,0.004053,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184235,0.004053,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184235,0.004053,-0.005499,0.249940,0,0);}
.mb2_c01016{transform:matrix(0.184275,0.004054,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184275,0.004054,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184275,0.004054,-0.005499,0.249940,0,0);}
.m49_c01016{transform:matrix(0.184530,0.004060,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184530,0.004060,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184530,0.004060,-0.005499,0.249940,0,0);}
.ma3_c01016{transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);}
.m105_c01016{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);}
.m128_c01016{transform:matrix(0.184740,0.004064,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184740,0.004064,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184740,0.004064,-0.005499,0.249940,0,0);}
.m133_c01016{transform:matrix(0.184910,0.004068,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184910,0.004068,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184910,0.004068,-0.005499,0.249940,0,0);}
.m8c_c01016{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);}
.m39_c01016{transform:matrix(0.185320,0.004077,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185320,0.004077,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185320,0.004077,-0.005499,0.249940,0,0);}
.m8b_c01016{transform:matrix(0.186875,0.004111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186875,0.004111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186875,0.004111,-0.005499,0.249940,0,0);}
.m9d_c01016{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);}
.me8_c01016{transform:matrix(0.187205,0.004119,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187205,0.004119,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187205,0.004119,-0.005499,0.249940,0,0);}
.m8d_c01016{transform:matrix(0.187210,0.004119,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187210,0.004119,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187210,0.004119,-0.005499,0.249940,0,0);}
.m5b_c01016{transform:matrix(0.187555,0.004126,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187555,0.004126,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187555,0.004126,-0.005499,0.249940,0,0);}
.m13d_c01016{transform:matrix(0.188064,0.004137,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188064,0.004137,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188064,0.004137,-0.005499,0.249940,0,0);}
.meb_c01016{transform:matrix(0.188129,0.004139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188129,0.004139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188129,0.004139,-0.005499,0.249940,0,0);}
.m123_c01016{transform:matrix(0.188154,0.004139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188154,0.004139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188154,0.004139,-0.005499,0.249940,0,0);}
.m11e_c01016{transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);}
.me5_c01016{transform:matrix(0.188589,0.004149,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188589,0.004149,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188589,0.004149,-0.005499,0.249940,0,0);}
.m55_c01016{transform:matrix(0.189074,0.004160,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189074,0.004160,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189074,0.004160,-0.005499,0.249940,0,0);}
.m12e_c01016{transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);}
.m44_c01016{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);}
.m9f_c01016{transform:matrix(0.189569,0.004171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189569,0.004171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189569,0.004171,-0.005499,0.249940,0,0);}
.m4b_c01016{transform:matrix(0.190124,0.004183,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190124,0.004183,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190124,0.004183,-0.005499,0.249940,0,0);}
.m13_c01016{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);}
.mf6_c01016{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);}
.m108_c01016{transform:matrix(0.190594,0.004193,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190594,0.004193,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190594,0.004193,-0.005499,0.249940,0,0);}
.me7_c01016{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);}
.mf1_c01016{transform:matrix(0.190794,0.004197,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190794,0.004197,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190794,0.004197,-0.005499,0.249940,0,0);}
.m11f_c01016{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);}
.m80_c01016{transform:matrix(0.190879,0.004199,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190879,0.004199,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190879,0.004199,-0.005499,0.249940,0,0);}
.mf0_c01016{transform:matrix(0.191004,0.004202,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191004,0.004202,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191004,0.004202,-0.005499,0.249940,0,0);}
.mea_c01016{transform:matrix(0.191034,0.004203,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191034,0.004203,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191034,0.004203,-0.005499,0.249940,0,0);}
.m12f_c01016{transform:matrix(0.191394,0.004211,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191394,0.004211,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191394,0.004211,-0.005499,0.249940,0,0);}
.m6c_c01016{transform:matrix(0.191424,0.004211,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191424,0.004211,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191424,0.004211,-0.005499,0.249940,0,0);}
.mdf_c01016{transform:matrix(0.191824,0.004220,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191824,0.004220,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191824,0.004220,-0.005499,0.249940,0,0);}
.mf8_c01016{transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);}
.m47_c01016{transform:matrix(0.191939,0.004223,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191939,0.004223,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191939,0.004223,-0.005499,0.249940,0,0);}
.m141_c01016{transform:matrix(0.192268,0.004230,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192268,0.004230,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192268,0.004230,-0.005499,0.249940,0,0);}
.mec_c01016{transform:matrix(0.192398,0.004233,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192398,0.004233,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192398,0.004233,-0.005499,0.249940,0,0);}
.m62_c01016{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);}
.m92_c01016{transform:matrix(0.192663,0.004239,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192663,0.004239,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192663,0.004239,-0.005499,0.249940,0,0);}
.m9_c01016{transform:matrix(0.192788,0.004241,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192788,0.004241,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192788,0.004241,-0.005499,0.249940,0,0);}
.m51_c01016{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);}
.mf_c01016{transform:matrix(0.194358,0.004276,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194358,0.004276,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194358,0.004276,-0.005499,0.249940,0,0);}
.m72_c01016{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);}
.m121_c01016{transform:matrix(0.194478,0.004279,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194478,0.004279,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194478,0.004279,-0.005499,0.249940,0,0);}
.m31_c01016{transform:matrix(0.194843,0.004287,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194843,0.004287,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194843,0.004287,-0.005499,0.249940,0,0);}
.m48_c01016{transform:matrix(0.194913,0.004288,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194913,0.004288,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194913,0.004288,-0.005499,0.249940,0,0);}
.md1_c01016{transform:matrix(0.195598,0.004303,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195598,0.004303,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195598,0.004303,-0.005499,0.249940,0,0);}
.m120_c01016{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);}
.mfc_c01016{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);}
.mac_c01016{transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);}
.m52_c01016{transform:matrix(0.196517,0.004323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196517,0.004323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196517,0.004323,-0.005499,0.249940,0,0);}
.m143_c01016{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);}
.m46_c01016{transform:matrix(0.196852,0.004331,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196852,0.004331,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196852,0.004331,-0.005499,0.249940,0,0);}
.m8_c01016{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);}
.m5e_c01016{transform:matrix(0.197512,0.004345,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197512,0.004345,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197512,0.004345,-0.005499,0.249940,0,0);}
.m82_c01016{transform:matrix(0.197627,0.004348,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197627,0.004348,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197627,0.004348,-0.005499,0.249940,0,0);}
.m20_c01016{transform:matrix(0.197897,0.004354,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197897,0.004354,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197897,0.004354,-0.005499,0.249940,0,0);}
.m17_c01016{transform:matrix(0.198427,0.004365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198427,0.004365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198427,0.004365,-0.005499,0.249940,0,0);}
.m69_c01016{transform:matrix(0.199267,0.004384,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199267,0.004384,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199267,0.004384,-0.005499,0.249940,0,0);}
.m18_c01016{transform:matrix(0.199377,0.004386,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199377,0.004386,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199377,0.004386,-0.005499,0.249940,0,0);}
.m34_c01016{transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199622,0.004392,-0.005499,0.249940,0,0);}
.mc3_c01016{transform:matrix(0.200052,0.004401,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200052,0.004401,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200052,0.004401,-0.005499,0.249940,0,0);}
.md5_c01016{transform:matrix(0.200057,0.004401,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200057,0.004401,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200057,0.004401,-0.005499,0.249940,0,0);}
.ma_c01016{transform:matrix(0.200317,0.004407,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200317,0.004407,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200317,0.004407,-0.005499,0.249940,0,0);}
.me4_c01016{transform:matrix(0.201366,0.004430,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201366,0.004430,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201366,0.004430,-0.005499,0.249940,0,0);}
.m14_c01016{transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201401,0.004431,-0.005499,0.249940,0,0);}
.mcc_c01016{transform:matrix(0.201901,0.004442,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201901,0.004442,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201901,0.004442,-0.005499,0.249940,0,0);}
.me1_c01016{transform:matrix(0.201916,0.004442,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201916,0.004442,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201916,0.004442,-0.005499,0.249940,0,0);}
.m95_c01016{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);}
.m71_c01016{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);}
.m118_c01016{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);}
.m12b_c01016{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);}
.m11c_c01016{transform:matrix(0.202746,0.004460,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202746,0.004460,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202746,0.004460,-0.005499,0.249940,0,0);}
.m2d_c01016{transform:matrix(0.202786,0.004461,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202786,0.004461,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202786,0.004461,-0.005499,0.249940,0,0);}
.mf2_c01016{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);}
.m23_c01016{transform:matrix(0.203656,0.004480,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203656,0.004480,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203656,0.004480,-0.005499,0.249940,0,0);}
.mae_c01016{transform:matrix(0.203986,0.004488,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203986,0.004488,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203986,0.004488,-0.005499,0.249940,0,0);}
.m4c_c01016{transform:matrix(0.205500,0.004521,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205500,0.004521,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205500,0.004521,-0.005499,0.249940,0,0);}
.m11a_c01016{transform:matrix(0.206235,0.004537,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206235,0.004537,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206235,0.004537,-0.005499,0.249940,0,0);}
.md6_c01016{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);}
.m119_c01016{transform:matrix(0.206375,0.004540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206375,0.004540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206375,0.004540,-0.005499,0.249940,0,0);}
.m53_c01016{transform:matrix(0.207110,0.004556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207110,0.004556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207110,0.004556,-0.005499,0.249940,0,0);}
.m65_c01016{transform:matrix(0.207265,0.004560,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207265,0.004560,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207265,0.004560,-0.005499,0.249940,0,0);}
.m24_c01016{transform:matrix(0.207610,0.004567,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207610,0.004567,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207610,0.004567,-0.005499,0.249940,0,0);}
.mfa_c01016{transform:matrix(0.207825,0.004572,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207825,0.004572,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207825,0.004572,-0.005499,0.249940,0,0);}
.md_c01016{transform:matrix(0.207875,0.004573,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207875,0.004573,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207875,0.004573,-0.005499,0.249940,0,0);}
.m115_c01016{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);}
.m12c_c01016{transform:matrix(0.208440,0.004586,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208440,0.004586,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208440,0.004586,-0.005499,0.249940,0,0);}
.m116_c01016{transform:matrix(0.209119,0.004601,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209119,0.004601,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209119,0.004601,-0.005499,0.249940,0,0);}
.mb0_c01016{transform:matrix(0.209199,0.004602,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209199,0.004602,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209199,0.004602,-0.005499,0.249940,0,0);}
.m6e_c01016{transform:matrix(0.209349,0.004606,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209349,0.004606,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209349,0.004606,-0.005499,0.249940,0,0);}
.m2c_c01016{transform:matrix(0.209354,0.004606,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209354,0.004606,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209354,0.004606,-0.005499,0.249940,0,0);}
.m12_c01016{transform:matrix(0.209614,0.004612,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209614,0.004612,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209614,0.004612,-0.005499,0.249940,0,0);}
.m26_c01016{transform:matrix(0.209919,0.004618,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209919,0.004618,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209919,0.004618,-0.005499,0.249940,0,0);}
.m122_c01016{transform:matrix(0.210519,0.004631,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210519,0.004631,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210519,0.004631,-0.005499,0.249940,0,0);}
.m32_c01016{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);}
.mc5_c01016{transform:matrix(0.210994,0.004642,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210994,0.004642,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210994,0.004642,-0.005499,0.249940,0,0);}
.m25_c01016{transform:matrix(0.211084,0.004644,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211084,0.004644,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211084,0.004644,-0.005499,0.249940,0,0);}
.m114_c01016{transform:matrix(0.211169,0.004646,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211169,0.004646,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211169,0.004646,-0.005499,0.249940,0,0);}
.m3b_c01016{transform:matrix(0.211314,0.004649,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211314,0.004649,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211314,0.004649,-0.005499,0.249940,0,0);}
.m1c_c01016{transform:matrix(0.213153,0.004689,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213153,0.004689,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213153,0.004689,-0.005499,0.249940,0,0);}
.m107_c01016{transform:matrix(0.214433,0.004718,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214433,0.004718,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214433,0.004718,-0.005499,0.249940,0,0);}
.m11d_c01016{transform:matrix(0.216323,0.004759,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216323,0.004759,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216323,0.004759,-0.005499,0.249940,0,0);}
.m79_c01016{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);}
.m75_c01016{transform:matrix(0.217002,0.004774,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217002,0.004774,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217002,0.004774,-0.005499,0.249940,0,0);}
.m77_c01016{transform:matrix(0.217027,0.004775,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217027,0.004775,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217027,0.004775,-0.005499,0.249940,0,0);}
.m111_c01016{transform:matrix(0.217162,0.004778,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217162,0.004778,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217162,0.004778,-0.005499,0.249940,0,0);}
.m88_c01016{transform:matrix(0.217252,0.004780,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217252,0.004780,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217252,0.004780,-0.005499,0.249940,0,0);}
.m10_c01016{transform:matrix(0.217697,0.004789,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217697,0.004789,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217697,0.004789,-0.005499,0.249940,0,0);}
.m9e_c01016{transform:matrix(0.217757,0.004791,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217757,0.004791,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217757,0.004791,-0.005499,0.249940,0,0);}
.m149_c01016{transform:matrix(0.217869,0.007851,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217869,0.007851,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217869,0.007851,-0.009003,0.249838,0,0);}
.m11b_c01016{transform:matrix(0.218597,0.004809,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218597,0.004809,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218597,0.004809,-0.005499,0.249940,0,0);}
.m68_c01016{transform:matrix(0.222426,0.004893,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222426,0.004893,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222426,0.004893,-0.005499,0.249940,0,0);}
.m19_c01016{transform:matrix(0.222881,0.004903,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222881,0.004903,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222881,0.004903,-0.005499,0.249940,0,0);}
.m5d_c01016{transform:matrix(0.222981,0.004906,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222981,0.004906,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222981,0.004906,-0.005499,0.249940,0,0);}
.mc_c01016{transform:matrix(0.224841,0.004946,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224841,0.004946,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224841,0.004946,-0.005499,0.249940,0,0);}
.m3a_c01016{transform:matrix(0.224876,0.004947,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224876,0.004947,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224876,0.004947,-0.005499,0.249940,0,0);}
.ma8_c01016{transform:matrix(0.225310,0.004957,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225310,0.004957,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225310,0.004957,-0.005499,0.249940,0,0);}
.m109_c01016{transform:matrix(0.225880,0.004969,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225880,0.004969,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225880,0.004969,-0.005499,0.249940,0,0);}
.m13c_c01016{transform:matrix(0.227025,0.004995,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227025,0.004995,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227025,0.004995,-0.005499,0.249940,0,0);}
.m90_c01016{transform:matrix(0.227305,0.005001,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227305,0.005001,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227305,0.005001,-0.005499,0.249940,0,0);}
.m89_c01016{transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);}
.m130_c01016{transform:matrix(0.229419,0.005047,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229419,0.005047,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229419,0.005047,-0.005499,0.249940,0,0);}
.m87_c01016{transform:matrix(0.230464,0.005070,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230464,0.005070,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230464,0.005070,-0.005499,0.249940,0,0);}
.mbc_c01016{transform:matrix(0.230524,0.005072,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230524,0.005072,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230524,0.005072,-0.005499,0.249940,0,0);}
.m16_c01016{transform:matrix(0.230594,0.005073,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230594,0.005073,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230594,0.005073,-0.005499,0.249940,0,0);}
.mcb_c01016{transform:matrix(0.232079,0.005106,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232079,0.005106,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232079,0.005106,-0.005499,0.249940,0,0);}
.mce_c01016{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);}
.mb3_c01016{transform:matrix(0.233588,0.005139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233588,0.005139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233588,0.005139,-0.005499,0.249940,0,0);}
.m145_c01016{transform:matrix(0.234993,0.005170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234993,0.005170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234993,0.005170,-0.005499,0.249940,0,0);}
.m131_c01016{transform:matrix(0.238567,0.005248,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238567,0.005248,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238567,0.005248,-0.005499,0.249940,0,0);}
.m11_c01016{transform:matrix(0.239117,0.005261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239117,0.005261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239117,0.005261,-0.005499,0.249940,0,0);}
.m2f_c01016{transform:matrix(0.239477,0.005268,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239477,0.005268,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239477,0.005268,-0.005499,0.249940,0,0);}
.mde_c01016{transform:matrix(0.240402,0.005289,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240402,0.005289,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240402,0.005289,-0.005499,0.249940,0,0);}
.m8e_c01016{transform:matrix(0.241512,0.005313,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241512,0.005313,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241512,0.005313,-0.005499,0.249940,0,0);}
.m0_c01016{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);}
.mb9_c01016{transform:matrix(0.244246,0.005373,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244246,0.005373,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244246,0.005373,-0.005499,0.249940,0,0);}
.m86_c01016{transform:matrix(0.246015,0.005412,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246015,0.005412,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246015,0.005412,-0.005499,0.249940,0,0);}
.m4d_c01016{transform:matrix(0.246675,0.005427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246675,0.005427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246675,0.005427,-0.005499,0.249940,0,0);}
.m112_c01016{transform:matrix(0.246710,0.005428,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246710,0.005428,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246710,0.005428,-0.005499,0.249940,0,0);}
.m3c_c01016{transform:matrix(0.247405,0.005443,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247405,0.005443,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247405,0.005443,-0.005499,0.249940,0,0);}
.m94_c01016{transform:matrix(0.247480,0.005445,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247480,0.005445,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247480,0.005445,-0.005499,0.249940,0,0);}
.mdc_c01016{transform:matrix(0.248120,0.005459,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248120,0.005459,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248120,0.005459,-0.005499,0.249940,0,0);}
.m30_c01016{transform:matrix(0.248855,0.005475,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248855,0.005475,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248855,0.005475,-0.005499,0.249940,0,0);}
.m5a_c01016{transform:matrix(0.250289,0.005506,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250289,0.005506,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250289,0.005506,-0.005499,0.249940,0,0);}
.m113_c01016{transform:matrix(0.253394,0.005575,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253394,0.005575,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253394,0.005575,-0.005499,0.249940,0,0);}
.m135_c01016{transform:matrix(0.256208,0.005637,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256208,0.005637,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256208,0.005637,-0.005499,0.249940,0,0);}
.m134_c01016{transform:matrix(0.256828,0.005650,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256828,0.005650,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256828,0.005650,-0.005499,0.249940,0,0);}
.m99_c01016{transform:matrix(0.257403,0.005663,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257403,0.005663,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257403,0.005663,-0.005499,0.249940,0,0);}
.m2b_c01016{transform:matrix(0.260107,0.005722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260107,0.005722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260107,0.005722,-0.005499,0.249940,0,0);}
.m10a_c01016{transform:matrix(0.262831,0.005782,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262831,0.005782,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262831,0.005782,-0.005499,0.249940,0,0);}
.m12a_c01016{transform:matrix(0.266810,0.005870,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266810,0.005870,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266810,0.005870,-0.005499,0.249940,0,0);}
.m3_c01016{transform:matrix(0.270905,0.001625,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270905,0.001625,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270905,0.001625,-0.001500,0.249996,0,0);}
.m139_c01016{transform:matrix(0.271479,0.005973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271479,0.005973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271479,0.005973,-0.005499,0.249940,0,0);}
.m42_c01016{transform:matrix(0.272149,0.005987,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272149,0.005987,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272149,0.005987,-0.005499,0.249940,0,0);}
.m1e_c01016{transform:matrix(0.272349,0.005992,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272349,0.005992,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272349,0.005992,-0.005499,0.249940,0,0);}
.m147_c01016{transform:matrix(0.275126,0.009914,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275126,0.009914,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275126,0.009914,-0.009003,0.249838,0,0);}
.m127_c01016{transform:matrix(0.276778,0.006089,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276778,0.006089,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276778,0.006089,-0.005499,0.249940,0,0);}
.m152_c01016{transform:matrix(0.277551,0.007216,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277551,0.007216,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277551,0.007216,-0.006498,0.249916,0,0);}
.m9c_c01016{transform:matrix(0.282767,0.006221,-0.005499,0.249940,0,0);-ms-transform:matrix(0.282767,0.006221,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.282767,0.006221,-0.005499,0.249940,0,0);}
.m144_c01016{transform:matrix(0.286831,0.006310,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286831,0.006310,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286831,0.006310,-0.005499,0.249940,0,0);}
.m4f_c01016{transform:matrix(0.288335,0.006343,-0.005499,0.249940,0,0);-ms-transform:matrix(0.288335,0.006343,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.288335,0.006343,-0.005499,0.249940,0,0);}
.m66_c01016{transform:matrix(0.292904,0.006444,-0.005499,0.249940,0,0);-ms-transform:matrix(0.292904,0.006444,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.292904,0.006444,-0.005499,0.249940,0,0);}
.m10b_c01016{transform:matrix(0.293479,0.006457,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293479,0.006457,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293479,0.006457,-0.005499,0.249940,0,0);}
.m7_c01016{transform:matrix(0.301117,0.006625,-0.005499,0.249940,0,0);-ms-transform:matrix(0.301117,0.006625,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.301117,0.006625,-0.005499,0.249940,0,0);}
.m1_c01016{transform:matrix(0.308354,0.001850,-0.001500,0.249996,0,0);-ms-transform:matrix(0.308354,0.001850,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.308354,0.001850,-0.001500,0.249996,0,0);}
.m129_c01016{transform:matrix(0.318213,0.007001,-0.005499,0.249940,0,0);-ms-transform:matrix(0.318213,0.007001,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.318213,0.007001,-0.005499,0.249940,0,0);}
.m58_c01016{transform:matrix(0.331195,0.007286,-0.005499,0.249940,0,0);-ms-transform:matrix(0.331195,0.007286,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.331195,0.007286,-0.005499,0.249940,0,0);}
.m59_c01016{transform:matrix(0.341197,0.007506,-0.005499,0.249940,0,0);-ms-transform:matrix(0.341197,0.007506,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.341197,0.007506,-0.005499,0.249940,0,0);}
.m3e_c01016{transform:matrix(0.343502,0.007557,-0.005499,0.249940,0,0);-ms-transform:matrix(0.343502,0.007557,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.343502,0.007557,-0.005499,0.249940,0,0);}
.m9b_c01016{transform:matrix(0.343772,0.007563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.343772,0.007563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.343772,0.007563,-0.005499,0.249940,0,0);}
.m3d_c01016{transform:matrix(0.350640,0.007714,-0.005499,0.249940,0,0);-ms-transform:matrix(0.350640,0.007714,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.350640,0.007714,-0.005499,0.249940,0,0);}
.m2e_c01016{transform:matrix(0.360358,0.007928,-0.005499,0.249940,0,0);-ms-transform:matrix(0.360358,0.007928,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.360358,0.007928,-0.005499,0.249940,0,0);}
.m5_c01016{transform:matrix(0.365778,0.002195,-0.001500,0.249996,0,0);-ms-transform:matrix(0.365778,0.002195,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.365778,0.002195,-0.001500,0.249996,0,0);}
.m126_c01016{transform:matrix(0.366726,0.008068,-0.005499,0.249940,0,0);-ms-transform:matrix(0.366726,0.008068,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.366726,0.008068,-0.005499,0.249940,0,0);}
.m2_c01016{transform:matrix(0.369218,0.002215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.369218,0.002215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.369218,0.002215,-0.001500,0.249996,0,0);}
.mdb_c01016{transform:matrix(0.394769,0.008685,-0.005499,0.249940,0,0);-ms-transform:matrix(0.394769,0.008685,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.394769,0.008685,-0.005499,0.249940,0,0);}
.m13a_c01016{transform:matrix(0.399738,0.008794,-0.005499,0.249940,0,0);-ms-transform:matrix(0.399738,0.008794,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.399738,0.008794,-0.005499,0.249940,0,0);}
.mdd_c01016{transform:matrix(0.442228,0.009729,-0.005499,0.249940,0,0);-ms-transform:matrix(0.442228,0.009729,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.442228,0.009729,-0.005499,0.249940,0,0);}
.m4e_c01016{transform:matrix(0.447387,0.009843,-0.005499,0.249940,0,0);-ms-transform:matrix(0.447387,0.009843,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.447387,0.009843,-0.005499,0.249940,0,0);}
.m155_c01016{transform:matrix(0.452417,0.011763,-0.006498,0.249916,0,0);-ms-transform:matrix(0.452417,0.011763,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.452417,0.011763,-0.006498,0.249916,0,0);}
.me_c01016{transform:matrix(0.453320,0.009973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.453320,0.009973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.453320,0.009973,-0.005499,0.249940,0,0);}
.m148_c01016{transform:matrix(0.453646,0.016348,-0.009003,0.249838,0,0);-ms-transform:matrix(0.453646,0.016348,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.453646,0.016348,-0.009003,0.249838,0,0);}
.m4_c01016{transform:matrix(0.453987,0.002724,-0.001500,0.249996,0,0);-ms-transform:matrix(0.453987,0.002724,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.453987,0.002724,-0.001500,0.249996,0,0);}
.m154_c01016{transform:matrix(0.484451,0.012596,-0.006498,0.249916,0,0);-ms-transform:matrix(0.484451,0.012596,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.484451,0.012596,-0.006498,0.249916,0,0);}
.m27_c01016{transform:matrix(0.517230,0.011379,-0.005499,0.249940,0,0);-ms-transform:matrix(0.517230,0.011379,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.517230,0.011379,-0.005499,0.249940,0,0);}
.m5c_c01016{transform:matrix(0.529547,0.011650,-0.005499,0.249940,0,0);-ms-transform:matrix(0.529547,0.011650,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.529547,0.011650,-0.005499,0.249940,0,0);}
.m98_c01016{transform:matrix(0.556465,0.012242,-0.005499,0.249940,0,0);-ms-transform:matrix(0.556465,0.012242,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.556465,0.012242,-0.005499,0.249940,0,0);}
.m1a_c01016{transform:matrix(0.575326,0.012657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.575326,0.012657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.575326,0.012657,-0.005499,0.249940,0,0);}
.m150_c01016{transform:matrix(0.589786,0.015334,-0.006498,0.249916,0,0);-ms-transform:matrix(0.589786,0.015334,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.589786,0.015334,-0.006498,0.249916,0,0);}
.m6_c01016{transform:matrix(0.597310,0.013141,-0.005499,0.249940,0,0);-ms-transform:matrix(0.597310,0.013141,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.597310,0.013141,-0.005499,0.249940,0,0);}
.m151_c01016{transform:matrix(0.627683,0.016320,-0.006498,0.249916,0,0);-ms-transform:matrix(0.627683,0.016320,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.627683,0.016320,-0.006498,0.249916,0,0);}
.m35_c01016{transform:matrix(0.896088,0.019714,-0.005499,0.249940,0,0);-ms-transform:matrix(0.896088,0.019714,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.896088,0.019714,-0.005499,0.249940,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls0_c01016{letter-spacing:0.000000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:0.000000px;}
.fc0_c01016{color:transparent;}
.fs13_c01016{font-size:15.755323px;}
.fs0_c01016{font-size:18.900000px;}
.fs12_c01016{font-size:22.050000px;}
.fs5_c01016{font-size:60.914736px;}
.fs10_c01016{font-size:63.015244px;}
.fsf_c01016{font-size:65.115752px;}
.fs6_c01016{font-size:67.216260px;}
.fsa_c01016{font-size:68.266515px;}
.fs9_c01016{font-size:69.316769px;}
.fsc_c01016{font-size:70.367023px;}
.fs7_c01016{font-size:71.417277px;}
.fs8_c01016{font-size:72.467531px;}
.fs4_c01016{font-size:73.517785px;}
.fs14_c01016{font-size:73.524839px;}
.fse_c01016{font-size:74.568039px;}
.fsb_c01016{font-size:76.668547px;}
.fsd_c01016{font-size:77.718801px;}
.fs11_c01016{font-size:98.665301px;}
.fs15_c01016{font-size:108.186549px;}
.fs3_c01016{font-size:150.152703px;}
.fs2_c01016{font-size:184.803326px;}
.fs1_c01016{font-size:224.704045px;}
.y0_c01016{bottom:0.000000px;}
.y15a_c01016{bottom:60.981321px;}
.y15b_c01016{bottom:60.981561px;}
.y159_c01016{bottom:75.432936px;}
.y158_c01016{bottom:76.726188px;}
.y157_c01016{bottom:79.381200px;}
.y151_c01016{bottom:80.894592px;}
.y150_c01016{bottom:84.397842px;}
.y14f_c01016{bottom:85.476492px;}
.y14e_c01016{bottom:86.945616px;}
.y152_c01016{bottom:89.100000px;}
.y14d_c01016{bottom:90.193500px;}
.y156_c01016{bottom:95.566434px;}
.y155_c01016{bottom:95.709174px;}
.y154_c01016{bottom:96.016299px;}
.y153_c01016{bottom:99.630000px;}
.y14c_c01016{bottom:120.136818px;}
.y14b_c01016{bottom:120.662316px;}
.y14a_c01016{bottom:121.509438px;}
.y149_c01016{bottom:123.022329px;}
.y148_c01016{bottom:124.066263px;}
.y147_c01016{bottom:125.483973px;}
.y146_c01016{bottom:126.402006px;}
.y145_c01016{bottom:127.299333px;}
.y144_c01016{bottom:128.123340px;}
.y143_c01016{bottom:129.873036px;}
.y142_c01016{bottom:130.715670px;}
.y141_c01016{bottom:131.349135px;}
.y140_c01016{bottom:141.998508px;}
.y13f_c01016{bottom:143.401485px;}
.y13e_c01016{bottom:144.221607px;}
.y13d_c01016{bottom:144.439374px;}
.y13c_c01016{bottom:145.786557px;}
.y13b_c01016{bottom:146.379162px;}
.y13a_c01016{bottom:148.313952px;}
.y139_c01016{bottom:148.938876px;}
.y138_c01016{bottom:149.354397px;}
.y137_c01016{bottom:151.770384px;}
.y136_c01016{bottom:154.039230px;}
.y135_c01016{bottom:165.466920px;}
.y134_c01016{bottom:166.488180px;}
.y133_c01016{bottom:166.896183px;}
.y132_c01016{bottom:167.952483px;}
.y131_c01016{bottom:169.694742px;}
.y130_c01016{bottom:170.316726px;}
.y12f_c01016{bottom:171.452376px;}
.y12e_c01016{bottom:172.837377px;}
.y12d_c01016{bottom:173.533350px;}
.y12c_c01016{bottom:174.560433px;}
.y12b_c01016{bottom:175.427694px;}
.y12a_c01016{bottom:176.360877px;}
.y129_c01016{bottom:177.263673px;}
.y128_c01016{bottom:187.785237px;}
.y127_c01016{bottom:188.388747px;}
.y126_c01016{bottom:189.217530px;}
.y125_c01016{bottom:190.595811px;}
.y124_c01016{bottom:191.109096px;}
.y123_c01016{bottom:192.064431px;}
.y122_c01016{bottom:192.769995px;}
.y121_c01016{bottom:194.535471px;}
.y120_c01016{bottom:195.104073px;}
.y11f_c01016{bottom:196.038423px;}
.y11e_c01016{bottom:196.826820px;}
.y11d_c01016{bottom:197.654547px;}
.y11c_c01016{bottom:198.516606px;}
.y11b_c01016{bottom:199.406133px;}
.y11a_c01016{bottom:211.049529px;}
.y119_c01016{bottom:211.826766px;}
.y118_c01016{bottom:213.018324px;}
.y117_c01016{bottom:215.432322px;}
.y116_c01016{bottom:216.508368px;}
.y115_c01016{bottom:217.340259px;}
.y114_c01016{bottom:219.364335px;}
.y113_c01016{bottom:220.829313px;}
.y112_c01016{bottom:221.888070px;}
.y111_c01016{bottom:222.489351px;}
.y110_c01016{bottom:223.442412px;}
.y10f_c01016{bottom:232.385721px;}
.y10e_c01016{bottom:234.997503px;}
.y10d_c01016{bottom:235.816017px;}
.y10c_c01016{bottom:237.361179px;}
.y10b_c01016{bottom:237.741324px;}
.y10a_c01016{bottom:238.844043px;}
.y109_c01016{bottom:239.337270px;}
.y108_c01016{bottom:239.848827px;}
.y107_c01016{bottom:241.845309px;}
.y106_c01016{bottom:242.513025px;}
.y105_c01016{bottom:243.450642px;}
.y104_c01016{bottom:244.509210px;}
.y103_c01016{bottom:256.512114px;}
.y102_c01016{bottom:257.201163px;}
.y101_c01016{bottom:259.924515px;}
.y100_c01016{bottom:261.463167px;}
.yff_c01016{bottom:262.377027px;}
.yfe_c01016{bottom:262.748583px;}
.yfd_c01016{bottom:264.385197px;}
.yfc_c01016{bottom:264.925539px;}
.yfb_c01016{bottom:265.487574px;}
.yfa_c01016{bottom:266.561559px;}
.yf9_c01016{bottom:267.467682px;}
.yf8_c01016{bottom:278.812647px;}
.yf7_c01016{bottom:280.159611px;}
.yf6_c01016{bottom:281.217480px;}
.yf5_c01016{bottom:283.292436px;}
.yf4_c01016{bottom:284.279826px;}
.yf3_c01016{bottom:285.143712px;}
.yf2_c01016{bottom:285.696792px;}
.yf1_c01016{bottom:286.693569px;}
.yf0_c01016{bottom:287.655255px;}
.yef_c01016{bottom:289.423596px;}
.yee_c01016{bottom:290.152512px;}
.yed_c01016{bottom:301.358901px;}
.yec_c01016{bottom:302.293284px;}
.yeb_c01016{bottom:302.759139px;}
.yea_c01016{bottom:304.559172px;}
.ye9_c01016{bottom:306.428070px;}
.ye8_c01016{bottom:307.016394px;}
.ye7_c01016{bottom:308.067258px;}
.ye6_c01016{bottom:308.739198px;}
.ye5_c01016{bottom:310.290432px;}
.ye4_c01016{bottom:311.260881px;}
.ye3_c01016{bottom:312.027951px;}
.ye2_c01016{bottom:325.961838px;}
.ye1_c01016{bottom:328.498947px;}
.ye0_c01016{bottom:331.052769px;}
.ydf_c01016{bottom:332.640630px;}
.yde_c01016{bottom:335.141013px;}
.ydd_c01016{bottom:335.968254px;}
.ydc_c01016{bottom:336.329673px;}
.ydb_c01016{bottom:347.562888px;}
.yda_c01016{bottom:348.137217px;}
.yd9_c01016{bottom:349.083741px;}
.yd8_c01016{bottom:349.623276px;}
.yd7_c01016{bottom:350.689725px;}
.yd6_c01016{bottom:351.355173px;}
.yd5_c01016{bottom:351.972315px;}
.yd4_c01016{bottom:352.905459px;}
.yd3_c01016{bottom:353.481570px;}
.yd2_c01016{bottom:353.920335px;}
.yd1_c01016{bottom:354.581922px;}
.yd0_c01016{bottom:356.268366px;}
.ycf_c01016{bottom:356.792475px;}
.yce_c01016{bottom:357.832626px;}
.ycd_c01016{bottom:358.480701px;}
.ycc_c01016{bottom:370.673871px;}
.ycb_c01016{bottom:371.058852px;}
.yca_c01016{bottom:371.516226px;}
.yc9_c01016{bottom:372.749172px;}
.yc8_c01016{bottom:373.201020px;}
.yc7_c01016{bottom:374.449854px;}
.yc6_c01016{bottom:375.955101px;}
.yc5_c01016{bottom:376.917678px;}
.yc4_c01016{bottom:378.398541px;}
.yc3_c01016{bottom:378.945516px;}
.yc2_c01016{bottom:380.011965px;}
.yc1_c01016{bottom:380.366442px;}
.yc0_c01016{bottom:381.165804px;}
.ybf_c01016{bottom:392.966994px;}
.ybe_c01016{bottom:393.940743px;}
.ybd_c01016{bottom:394.498389px;}
.ybc_c01016{bottom:396.701688px;}
.ybb_c01016{bottom:397.747809px;}
.yba_c01016{bottom:399.200646px;}
.yb9_c01016{bottom:399.849900px;}
.yb8_c01016{bottom:400.681461px;}
.yb7_c01016{bottom:401.264331px;}
.yb6_c01016{bottom:403.037307px;}
.yb5_c01016{bottom:403.693209px;}
.yb4_c01016{bottom:404.590362px;}
.yb3_c01016{bottom:404.937144px;}
.yb2_c01016{bottom:414.864417px;}
.yb1_c01016{bottom:415.877031px;}
.yb0_c01016{bottom:416.975844px;}
.yaf_c01016{bottom:417.844188px;}
.yae_c01016{bottom:419.578005px;}
.yad_c01016{bottom:421.157505px;}
.yac_c01016{bottom:421.655151px;}
.yab_c01016{bottom:423.214623px;}
.yaa_c01016{bottom:424.174347px;}
.ya9_c01016{bottom:424.843500px;}
.ya8_c01016{bottom:425.524944px;}
.ya7_c01016{bottom:426.296778px;}
.ya6_c01016{bottom:426.897978px;}
.ya5_c01016{bottom:427.352367px;}
.ya4_c01016{bottom:438.628149px;}
.ya3_c01016{bottom:439.653516px;}
.ya2_c01016{bottom:440.299260px;}
.ya1_c01016{bottom:441.521046px;}
.ya0_c01016{bottom:441.942441px;}
.y9f_c01016{bottom:442.597803px;}
.y9e_c01016{bottom:442.990344px;}
.y9d_c01016{bottom:444.953064px;}
.y9c_c01016{bottom:445.571505px;}
.y9b_c01016{bottom:447.219024px;}
.y9a_c01016{bottom:447.773157px;}
.y99_c01016{bottom:448.847142px;}
.y98_c01016{bottom:450.034431px;}
.y97_c01016{bottom:460.045332px;}
.y96_c01016{bottom:460.761465px;}
.y95_c01016{bottom:461.606901px;}
.y94_c01016{bottom:462.230964px;}
.y93_c01016{bottom:464.903502px;}
.y92_c01016{bottom:465.278874px;}
.y91_c01016{bottom:466.083414px;}
.y90_c01016{bottom:467.598807px;}
.y8f_c01016{bottom:469.757004px;}
.y8e_c01016{bottom:470.658183px;}
.y8d_c01016{bottom:471.668637px;}
.y8c_c01016{bottom:472.719162px;}
.y8b_c01016{bottom:482.831589px;}
.y8a_c01016{bottom:483.395802px;}
.y89_c01016{bottom:484.861206px;}
.y88_c01016{bottom:485.398314px;}
.y87_c01016{bottom:487.171395px;}
.y86_c01016{bottom:488.175777px;}
.y85_c01016{bottom:489.256872px;}
.y84_c01016{bottom:491.243925px;}
.y83_c01016{bottom:492.837102px;}
.y82_c01016{bottom:493.498056px;}
.y81_c01016{bottom:495.134835px;}
.y80_c01016{bottom:505.904091px;}
.y7f_c01016{bottom:506.839530px;}
.y7e_c01016{bottom:508.406442px;}
.y7d_c01016{bottom:509.928366px;}
.y7c_c01016{bottom:510.649272px;}
.y7b_c01016{bottom:511.185522px;}
.y7a_c01016{bottom:512.899146px;}
.y79_c01016{bottom:513.670815px;}
.y78_c01016{bottom:515.166327px;}
.y77_c01016{bottom:515.643615px;}
.y76_c01016{bottom:516.570690px;}
.y75_c01016{bottom:517.817799px;}
.y74_c01016{bottom:529.573812px;}
.y73_c01016{bottom:530.144664px;}
.y72_c01016{bottom:531.817080px;}
.y71_c01016{bottom:532.517496px;}
.y70_c01016{bottom:533.754051px;}
.y6f_c01016{bottom:534.423912px;}
.y6e_c01016{bottom:535.842612px;}
.y6d_c01016{bottom:536.642961px;}
.y6c_c01016{bottom:537.630915px;}
.y6b_c01016{bottom:539.428374px;}
.y6a_c01016{bottom:552.119055px;}
.y69_c01016{bottom:553.820775px;}
.y68_c01016{bottom:554.262048px;}
.y67_c01016{bottom:554.710086px;}
.y66_c01016{bottom:555.653367px;}
.y65_c01016{bottom:556.112460px;}
.y64_c01016{bottom:556.412169px;}
.y63_c01016{bottom:557.672829px;}
.y62_c01016{bottom:558.293664px;}
.y61_c01016{bottom:559.172235px;}
.y60_c01016{bottom:561.218163px;}
.y5f_c01016{bottom:561.819678px;}
.y5e_c01016{bottom:562.922061px;}
.y5d_c01016{bottom:574.599669px;}
.y5c_c01016{bottom:575.789256px;}
.y5b_c01016{bottom:576.185460px;}
.y5a_c01016{bottom:576.482094px;}
.y59_c01016{bottom:577.242474px;}
.y58_c01016{bottom:577.577556px;}
.y57_c01016{bottom:577.806516px;}
.y56_c01016{bottom:578.901417px;}
.y55_c01016{bottom:579.398529px;}
.y54_c01016{bottom:580.811829px;}
.y53_c01016{bottom:582.109239px;}
.y52_c01016{bottom:583.193529px;}
.y51_c01016{bottom:584.236962px;}
.y50_c01016{bottom:584.795427px;}
.y4f_c01016{bottom:598.088616px;}
.y4e_c01016{bottom:599.448150px;}
.y4d_c01016{bottom:601.192509px;}
.y4c_c01016{bottom:601.719636px;}
.y4b_c01016{bottom:602.094558px;}
.y4a_c01016{bottom:603.173118px;}
.y49_c01016{bottom:605.137902px;}
.y48_c01016{bottom:606.009735px;}
.y47_c01016{bottom:606.623319px;}
.y46_c01016{bottom:607.514163px;}
.y45_c01016{bottom:608.033484px;}
.y44_c01016{bottom:608.286039px;}
.y43_c01016{bottom:619.023891px;}
.y42_c01016{bottom:619.846842px;}
.y41_c01016{bottom:621.188712px;}
.y40_c01016{bottom:621.996039px;}
.y3f_c01016{bottom:622.623771px;}
.y3e_c01016{bottom:622.856328px;}
.y3d_c01016{bottom:623.911803px;}
.y3c_c01016{bottom:624.960795px;}
.y3b_c01016{bottom:626.209527px;}
.y3a_c01016{bottom:628.402875px;}
.y39_c01016{bottom:629.112657px;}
.y38_c01016{bottom:629.909721px;}
.y37_c01016{bottom:630.705168px;}
.y36_c01016{bottom:641.876493px;}
.y35_c01016{bottom:642.806433px;}
.y34_c01016{bottom:643.959024px;}
.y33_c01016{bottom:644.464056px;}
.y32_c01016{bottom:645.353538px;}
.y31_c01016{bottom:645.825834px;}
.y30_c01016{bottom:646.271235px;}
.y2f_c01016{bottom:647.179329px;}
.y2e_c01016{bottom:648.700398px;}
.y2d_c01016{bottom:649.230378px;}
.y2c_c01016{bottom:650.197707px;}
.y2b_c01016{bottom:650.762007px;}
.y2a_c01016{bottom:651.140121px;}
.y29_c01016{bottom:653.123289px;}
.y28_c01016{bottom:665.027859px;}
.y27_c01016{bottom:666.813657px;}
.y26_c01016{bottom:667.807929px;}
.y25_c01016{bottom:669.096822px;}
.y24_c01016{bottom:669.750633px;}
.y23_c01016{bottom:670.732281px;}
.y22_c01016{bottom:671.310897px;}
.y21_c01016{bottom:672.173442px;}
.y20_c01016{bottom:673.295661px;}
.y1f_c01016{bottom:673.767303px;}
.y1e_c01016{bottom:674.538219px;}
.y1d_c01016{bottom:675.893676px;}
.y1c_c01016{bottom:676.069476px;}
.y1b_c01016{bottom:687.035130px;}
.y1a_c01016{bottom:688.184256px;}
.y19_c01016{bottom:689.186499px;}
.y18_c01016{bottom:690.824751px;}
.y17_c01016{bottom:692.208573px;}
.y16_c01016{bottom:692.743437px;}
.y15_c01016{bottom:693.515703px;}
.y14_c01016{bottom:694.396704px;}
.y13_c01016{bottom:694.964964px;}
.y12_c01016{bottom:696.869229px;}
.y11_c01016{bottom:697.532793px;}
.y10_c01016{bottom:698.222592px;}
.yf_c01016{bottom:709.846482px;}
.ye_c01016{bottom:712.741770px;}
.yd_c01016{bottom:712.996992px;}
.yc_c01016{bottom:714.530040px;}
.yb_c01016{bottom:716.175156px;}
.ya_c01016{bottom:717.661245px;}
.y9_c01016{bottom:719.080179px;}
.y8_c01016{bottom:720.470469px;}
.y7_c01016{bottom:721.299000px;}
.y6_c01016{bottom:768.762027px;}
.y5_c01016{bottom:771.126207px;}
.y4_c01016{bottom:823.162263px;}
.y3_c01016{bottom:829.714371px;}
.y2_c01016{bottom:886.951500px;}
.y1_c01016{bottom:910.710000px;}
.h15_c01016{height:15.755323px;}
.h2_c01016{height:18.900000px;}
.h14_c01016{height:22.050000px;}
.h7_c01016{height:60.914736px;}
.h12_c01016{height:63.015244px;}
.h11_c01016{height:65.115752px;}
.h8_c01016{height:67.216260px;}
.hc_c01016{height:68.266515px;}
.hb_c01016{height:69.316769px;}
.he_c01016{height:70.367023px;}
.h9_c01016{height:71.417277px;}
.ha_c01016{height:72.467531px;}
.h6_c01016{height:73.517785px;}
.h16_c01016{height:73.524839px;}
.h10_c01016{height:74.568039px;}
.hd_c01016{height:76.668547px;}
.hf_c01016{height:77.718801px;}
.h13_c01016{height:98.665301px;}
.h17_c01016{height:108.186549px;}
.h5_c01016{height:150.152703px;}
.h4_c01016{height:184.803326px;}
.h3_c01016{height:224.704045px;}
.h1_c01016{height:1005.000000px;}
.h0_c01016{height:1005.150000px;}
.w0_c01016{width:715.200000px;}
.w1_c01016{width:715.500000px;}
.x0_c01016{left:0.000000px;}
.xbe_c01016{left:49.041000px;}
.x2_c01016{left:58.936500px;}
.xb6_c01016{left:65.082651px;}
.x75_c01016{left:86.295834px;}
.x93_c01016{left:87.621945px;}
.x7d_c01016{left:89.450964px;}
.xb7_c01016{left:91.488996px;}
.x39_c01016{left:92.701548px;}
.x1b_c01016{left:95.559945px;}
.xa4_c01016{left:97.173993px;}
.xb3_c01016{left:99.025512px;}
.x67_c01016{left:100.627854px;}
.x43_c01016{left:102.785883px;}
.x1c_c01016{left:103.960143px;}
.x10_c01016{left:106.024140px;}
.x7_c01016{left:108.969000px;}
.x3_c01016{left:111.366477px;}
.x5_c01016{left:114.459072px;}
.x97_c01016{left:121.204812px;}
.x76_c01016{left:126.841737px;}
.x8c_c01016{left:129.003300px;}
.x44_c01016{left:130.694604px;}
.x3a_c01016{left:133.312221px;}
.xab_c01016{left:134.412660px;}
.x7e_c01016{left:135.488382px;}
.x11_c01016{left:137.378640px;}
.x68_c01016{left:139.511064px;}
.x31_c01016{left:140.669244px;}
.xa7_c01016{left:143.318892px;}
.x8_c01016{left:146.629500px;}
.x4f_c01016{left:150.383187px;}
.x98_c01016{left:153.138393px;}
.x77_c01016{left:156.536130px;}
.x7f_c01016{left:159.776709px;}
.xaf_c01016{left:164.915706px;}
.x12_c01016{left:167.540640px;}
.x8d_c01016{left:170.621061px;}
.x32_c01016{left:175.330485px;}
.x50_c01016{left:176.565126px;}
.x9d_c01016{left:177.612207px;}
.x3b_c01016{left:180.217323px;}
.x45_c01016{left:182.898414px;}
.x5d_c01016{left:186.001536px;}
.x70_c01016{left:190.850454px;}
.x86_c01016{left:192.753399px;}
.x27_c01016{left:193.961868px;}
.xb0_c01016{left:197.037675px;}
.x9e_c01016{left:199.202793px;}
.x99_c01016{left:201.125535px;}
.x1d_c01016{left:205.183854px;}
.x78_c01016{left:208.445043px;}
.x9_c01016{left:209.824500px;}
.x28_c01016{left:211.148868px;}
.x3c_c01016{left:212.541468px;}
.x87_c01016{left:214.614447px;}
.x9f_c01016{left:220.011978px;}
.x58_c01016{left:221.487465px;}
.x80_c01016{left:225.427482px;}
.x1e_c01016{left:227.645349px;}
.xac_c01016{left:229.730778px;}
.xb8_c01016{left:233.816226px;}
.xb1_c01016{left:235.059984px;}
.x29_c01016{left:236.798868px;}
.x9a_c01016{left:239.585994px;}
.x94_c01016{left:241.321680px;}
.x79_c01016{left:245.383809px;}
.x81_c01016{left:247.010106px;}
.x13_c01016{left:254.098140px;}
.x64_c01016{left:255.143451px;}
.x3d_c01016{left:258.446004px;}
.xb2_c01016{left:260.828646px;}
.x6_c01016{left:262.230207px;}
.x51_c01016{left:265.537179px;}
.xb9_c01016{left:271.193076px;}
.xa_c01016{left:274.321500px;}
.x71_c01016{left:275.508996px;}
.x82_c01016{left:277.782207px;}
.x14_c01016{left:279.928140px;}
.x1f_c01016{left:281.111037px;}
.xa0_c01016{left:282.943434px;}
.x8e_c01016{left:285.483471px;}
.xad_c01016{left:287.541696px;}
.x69_c01016{left:290.259498px;}
.x5e_c01016{left:291.581763px;}
.xb4_c01016{left:295.115220px;}
.xa1_c01016{left:297.240180px;}
.x72_c01016{left:299.322417px;}
.x33_c01016{left:301.492680px;}
.x52_c01016{left:303.766854px;}
.x2a_c01016{left:304.858368px;}
.x95_c01016{left:307.494276px;}
.xba_c01016{left:309.442893px;}
.x88_c01016{left:312.378012px;}
.x59_c01016{left:313.962906px;}
.x15_c01016{left:319.973640px;}
.x20_c01016{left:322.159428px;}
.x7a_c01016{left:324.495846px;}
.x8f_c01016{left:326.088798px;}
.x53_c01016{left:330.758760px;}
.xa2_c01016{left:332.367078px;}
.x9b_c01016{left:336.136125px;}
.xb_c01016{left:341.871000px;}
.x6a_c01016{left:346.384827px;}
.x21_c01016{left:349.688022px;}
.x16_c01016{left:355.076640px;}
.x5f_c01016{left:357.467955px;}
.x3e_c01016{left:361.874835px;}
.x90_c01016{left:363.388323px;}
.xbb_c01016{left:368.495286px;}
.x46_c01016{left:372.656763px;}
.x2b_c01016{left:373.997868px;}
.x6b_c01016{left:376.201560px;}
.x60_c01016{left:378.091140px;}
.x17_c01016{left:379.388640px;}
.xa8_c01016{left:382.326558px;}
.x54_c01016{left:385.537539px;}
.x91_c01016{left:388.097706px;}
.x6c_c01016{left:390.126042px;}
.xa3_c01016{left:391.527864px;}
.x5a_c01016{left:393.387408px;}
.x83_c01016{left:394.415403px;}
.x22_c01016{left:396.423045px;}
.x47_c01016{left:397.503852px;}
.x55_c01016{left:398.546742px;}
.x34_c01016{left:401.432502px;}
.x61_c01016{left:405.811698px;}
.x65_c01016{left:411.744657px;}
.x96_c01016{left:413.890590px;}
.x2c_c01016{left:415.274868px;}
.xc_c01016{left:416.649000px;}
.x3f_c01016{left:418.608564px;}
.x5b_c01016{left:422.564121px;}
.x23_c01016{left:427.574238px;}
.xc3_c01016{left:429.828105px;}
.x73_c01016{left:431.379834px;}
.x1_c01016{left:432.810000px;}
.x2d_c01016{left:435.520368px;}
.x40_c01016{left:438.310851px;}
.x89_c01016{left:440.639064px;}
.x18_c01016{left:442.289640px;}
.x35_c01016{left:447.293979px;}
.x48_c01016{left:452.251761px;}
.x2e_c01016{left:456.988368px;}
.x56_c01016{left:459.562422px;}
.xbf_c01016{left:461.962500px;}
.x49_c01016{left:463.682256px;}
.x41_c01016{left:466.091199px;}
.xb5_c01016{left:468.191007px;}
.xa9_c01016{left:471.725724px;}
.x84_c01016{left:476.010927px;}
.x57_c01016{left:479.040993px;}
.x4a_c01016{left:480.413982px;}
.x36_c01016{left:484.692654px;}
.xd_c01016{left:486.333000px;}
.x24_c01016{left:488.957091px;}
.x5c_c01016{left:492.239052px;}
.xa5_c01016{left:493.575102px;}
.x85_c01016{left:496.651650px;}
.xe_c01016{left:497.934000px;}
.x66_c01016{left:500.586336px;}
.x74_c01016{left:503.238531px;}
.x8a_c01016{left:508.194576px;}
.xbc_c01016{left:510.327549px;}
.x6d_c01016{left:512.208111px;}
.x19_c01016{left:516.755640px;}
.x4b_c01016{left:518.455665px;}
.x2f_c01016{left:520.375368px;}
.x8b_c01016{left:523.579053px;}
.x62_c01016{left:524.589237px;}
.x7b_c01016{left:527.544960px;}
.xbd_c01016{left:532.235592px;}
.x4c_c01016{left:533.303325px;}
.x25_c01016{left:536.334147px;}
.x92_c01016{left:539.805207px;}
.x6e_c01016{left:543.542679px;}
.xaa_c01016{left:544.640205px;}
.xae_c01016{left:547.165860px;}
.x4d_c01016{left:553.086183px;}
.x9c_c01016{left:554.766171px;}
.x42_c01016{left:557.931771px;}
.x63_c01016{left:560.560569px;}
.x1a_c01016{left:562.312140px;}
.x7c_c01016{left:566.478528px;}
.x6f_c01016{left:570.091275px;}
.x30_c01016{left:572.765868px;}
.x37_c01016{left:578.154108px;}
.xc2_c01016{left:597.139119px;}
.xc0_c01016{left:600.951000px;}
.xa6_c01016{left:602.401317px;}
.x4e_c01016{left:612.547290px;}
.x38_c01016{left:613.923816px;}
.x4_c01016{left:615.363309px;}
.xc1_c01016{left:618.253500px;}
.x26_c01016{left:621.395028px;}
.xf_c01016{left:629.538000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws0_c01016{word-spacing:0.000000pt;}
.fs13_c01016{font-size:14.004731pt;}
.fs0_c01016{font-size:16.800000pt;}
.fs12_c01016{font-size:19.600000pt;}
.fs5_c01016{font-size:54.146432pt;}
.fs10_c01016{font-size:56.013550pt;}
.fsf_c01016{font-size:57.880669pt;}
.fs6_c01016{font-size:59.747787pt;}
.fsa_c01016{font-size:60.681346pt;}
.fs9_c01016{font-size:61.614905pt;}
.fsc_c01016{font-size:62.548465pt;}
.fs7_c01016{font-size:63.482024pt;}
.fs8_c01016{font-size:64.415583pt;}
.fs4_c01016{font-size:65.349142pt;}
.fs14_c01016{font-size:65.355412pt;}
.fse_c01016{font-size:66.282701pt;}
.fsb_c01016{font-size:68.149820pt;}
.fsd_c01016{font-size:69.083379pt;}
.fs11_c01016{font-size:87.702490pt;}
.fs15_c01016{font-size:96.165821pt;}
.fs3_c01016{font-size:133.469069pt;}
.fs2_c01016{font-size:164.269623pt;}
.fs1_c01016{font-size:199.736929pt;}
.y0_c01016{bottom:0.000000pt;}
.y15a_c01016{bottom:54.205619pt;}
.y15b_c01016{bottom:54.205832pt;}
.y159_c01016{bottom:67.051499pt;}
.y158_c01016{bottom:68.201056pt;}
.y157_c01016{bottom:70.561067pt;}
.y151_c01016{bottom:71.906304pt;}
.y150_c01016{bottom:75.020304pt;}
.y14f_c01016{bottom:75.979104pt;}
.y14e_c01016{bottom:77.284992pt;}
.y152_c01016{bottom:79.200000pt;}
.y14d_c01016{bottom:80.172000pt;}
.y156_c01016{bottom:84.947941pt;}
.y155_c01016{bottom:85.074821pt;}
.y154_c01016{bottom:85.347821pt;}
.y153_c01016{bottom:88.560000pt;}
.y14c_c01016{bottom:106.788283pt;}
.y14b_c01016{bottom:107.255392pt;}
.y14a_c01016{bottom:108.008389pt;}
.y149_c01016{bottom:109.353181pt;}
.y148_c01016{bottom:110.281123pt;}
.y147_c01016{bottom:111.541309pt;}
.y146_c01016{bottom:112.357339pt;}
.y145_c01016{bottom:113.154963pt;}
.y144_c01016{bottom:113.887413pt;}
.y143_c01016{bottom:115.442699pt;}
.y142_c01016{bottom:116.191707pt;}
.y141_c01016{bottom:116.754787pt;}
.y140_c01016{bottom:126.220896pt;}
.y13f_c01016{bottom:127.467987pt;}
.y13e_c01016{bottom:128.196984pt;}
.y13d_c01016{bottom:128.390555pt;}
.y13c_c01016{bottom:129.588051pt;}
.y13b_c01016{bottom:130.114811pt;}
.y13a_c01016{bottom:131.834624pt;}
.y139_c01016{bottom:132.390112pt;}
.y138_c01016{bottom:132.759464pt;}
.y137_c01016{bottom:134.907008pt;}
.y136_c01016{bottom:136.923760pt;}
.y135_c01016{bottom:147.081707pt;}
.y134_c01016{bottom:147.989493pt;}
.y133_c01016{bottom:148.352163pt;}
.y132_c01016{bottom:149.291096pt;}
.y131_c01016{bottom:150.839771pt;}
.y130_c01016{bottom:151.392645pt;}
.y12f_c01016{bottom:152.402112pt;}
.y12e_c01016{bottom:153.633224pt;}
.y12d_c01016{bottom:154.251867pt;}
.y12c_c01016{bottom:155.164829pt;}
.y12b_c01016{bottom:155.935728pt;}
.y12a_c01016{bottom:156.765224pt;}
.y129_c01016{bottom:157.567709pt;}
.y128_c01016{bottom:166.920211pt;}
.y127_c01016{bottom:167.456664pt;}
.y126_c01016{bottom:168.193360pt;}
.y125_c01016{bottom:169.418499pt;}
.y124_c01016{bottom:169.874752pt;}
.y123_c01016{bottom:170.723939pt;}
.y122_c01016{bottom:171.351107pt;}
.y121_c01016{bottom:172.920419pt;}
.y120_c01016{bottom:173.425843pt;}
.y11f_c01016{bottom:174.256376pt;}
.y11e_c01016{bottom:174.957173pt;}
.y11d_c01016{bottom:175.692931pt;}
.y11c_c01016{bottom:176.459205pt;}
.y11b_c01016{bottom:177.249896pt;}
.y11a_c01016{bottom:187.599581pt;}
.y119_c01016{bottom:188.290459pt;}
.y118_c01016{bottom:189.349621pt;}
.y117_c01016{bottom:191.495397pt;}
.y116_c01016{bottom:192.451883pt;}
.y115_c01016{bottom:193.191341pt;}
.y114_c01016{bottom:194.990520pt;}
.y113_c01016{bottom:196.292723pt;}
.y112_c01016{bottom:197.233840pt;}
.y111_c01016{bottom:197.768312pt;}
.y110_c01016{bottom:198.615477pt;}
.y10f_c01016{bottom:206.565085pt;}
.y10e_c01016{bottom:208.886669pt;}
.y10d_c01016{bottom:209.614237pt;}
.y10c_c01016{bottom:210.987715pt;}
.y10b_c01016{bottom:211.325621pt;}
.y10a_c01016{bottom:212.305816pt;}
.y109_c01016{bottom:212.744240pt;}
.y108_c01016{bottom:213.198957pt;}
.y107_c01016{bottom:214.973608pt;}
.y106_c01016{bottom:215.567133pt;}
.y105_c01016{bottom:216.400571pt;}
.y104_c01016{bottom:217.341520pt;}
.y103_c01016{bottom:228.010768pt;}
.y102_c01016{bottom:228.623256pt;}
.y101_c01016{bottom:231.044013pt;}
.y100_c01016{bottom:232.411704pt;}
.yff_c01016{bottom:233.224024pt;}
.yfe_c01016{bottom:233.554296pt;}
.yfd_c01016{bottom:235.009064pt;}
.yfc_c01016{bottom:235.489368pt;}
.yfb_c01016{bottom:235.988955pt;}
.yfa_c01016{bottom:236.943608pt;}
.yf9_c01016{bottom:237.749051pt;}
.yf8_c01016{bottom:247.833464pt;}
.yf7_c01016{bottom:249.030765pt;}
.yf6_c01016{bottom:249.971093pt;}
.yf5_c01016{bottom:251.815499pt;}
.yf4_c01016{bottom:252.693179pt;}
.yf3_c01016{bottom:253.461077pt;}
.yf2_c01016{bottom:253.952704pt;}
.yf1_c01016{bottom:254.838728pt;}
.yf0_c01016{bottom:255.693560pt;}
.yef_c01016{bottom:257.265419pt;}
.yee_c01016{bottom:257.913344pt;}
.yed_c01016{bottom:267.874579pt;}
.yec_c01016{bottom:268.705141pt;}
.yeb_c01016{bottom:269.119235pt;}
.yea_c01016{bottom:270.719264pt;}
.ye9_c01016{bottom:272.380507pt;}
.ye8_c01016{bottom:272.903461pt;}
.ye7_c01016{bottom:273.837563pt;}
.ye6_c01016{bottom:274.434843pt;}
.ye5_c01016{bottom:275.813717pt;}
.ye4_c01016{bottom:276.676339pt;}
.ye3_c01016{bottom:277.358179pt;}
.ye2_c01016{bottom:289.743856pt;}
.ye1_c01016{bottom:291.999064pt;}
.ye0_c01016{bottom:294.269128pt;}
.ydf_c01016{bottom:295.680560pt;}
.yde_c01016{bottom:297.903123pt;}
.ydd_c01016{bottom:298.638448pt;}
.ydc_c01016{bottom:298.959709pt;}
.ydb_c01016{bottom:308.944789pt;}
.yda_c01016{bottom:309.455304pt;}
.yd9_c01016{bottom:310.296659pt;}
.yd8_c01016{bottom:310.776245pt;}
.yd7_c01016{bottom:311.724200pt;}
.yd6_c01016{bottom:312.315709pt;}
.yd5_c01016{bottom:312.864280pt;}
.yd4_c01016{bottom:313.693741pt;}
.yd3_c01016{bottom:314.205840pt;}
.yd2_c01016{bottom:314.595853pt;}
.yd1_c01016{bottom:315.183931pt;}
.yd0_c01016{bottom:316.682992pt;}
.ycf_c01016{bottom:317.148867pt;}
.yce_c01016{bottom:318.073445pt;}
.ycd_c01016{bottom:318.649512pt;}
.ycc_c01016{bottom:329.487885pt;}
.ycb_c01016{bottom:329.830091pt;}
.yca_c01016{bottom:330.236645pt;}
.yc9_c01016{bottom:331.332597pt;}
.yc8_c01016{bottom:331.734240pt;}
.yc7_c01016{bottom:332.844315pt;}
.yc6_c01016{bottom:334.182312pt;}
.yc5_c01016{bottom:335.037936pt;}
.yc4_c01016{bottom:336.354259pt;}
.yc3_c01016{bottom:336.840459pt;}
.yc2_c01016{bottom:337.788413pt;}
.yc1_c01016{bottom:338.103504pt;}
.yc0_c01016{bottom:338.814048pt;}
.ybf_c01016{bottom:349.303995pt;}
.ybe_c01016{bottom:350.169549pt;}
.ybd_c01016{bottom:350.665235pt;}
.ybc_c01016{bottom:352.623723pt;}
.ybb_c01016{bottom:353.553608pt;}
.yba_c01016{bottom:354.845019pt;}
.yb9_c01016{bottom:355.422133pt;}
.yb8_c01016{bottom:356.161299pt;}
.yb7_c01016{bottom:356.679405pt;}
.yb6_c01016{bottom:358.255384pt;}
.yb5_c01016{bottom:358.838408pt;}
.yb4_c01016{bottom:359.635877pt;}
.yb3_c01016{bottom:359.944128pt;}
.yb2_c01016{bottom:368.768371pt;}
.yb1_c01016{bottom:369.668472pt;}
.yb0_c01016{bottom:370.645195pt;}
.yaf_c01016{bottom:371.417056pt;}
.yae_c01016{bottom:372.958227pt;}
.yad_c01016{bottom:374.362227pt;}
.yac_c01016{bottom:374.804579pt;}
.yab_c01016{bottom:376.190776pt;}
.yaa_c01016{bottom:377.043864pt;}
.ya9_c01016{bottom:377.638667pt;}
.ya8_c01016{bottom:378.244395pt;}
.ya7_c01016{bottom:378.930469pt;}
.ya6_c01016{bottom:379.464869pt;}
.ya5_c01016{bottom:379.868771pt;}
.ya4_c01016{bottom:389.891688pt;}
.ya3_c01016{bottom:390.803125pt;}
.ya2_c01016{bottom:391.377120pt;}
.ya1_c01016{bottom:392.463152pt;}
.ya0_c01016{bottom:392.837725pt;}
.y9f_c01016{bottom:393.420269pt;}
.y9e_c01016{bottom:393.769195pt;}
.y9d_c01016{bottom:395.513835pt;}
.y9c_c01016{bottom:396.063560pt;}
.y9b_c01016{bottom:397.528021pt;}
.y9a_c01016{bottom:398.020584pt;}
.y99_c01016{bottom:398.975237pt;}
.y98_c01016{bottom:400.030605pt;}
.y97_c01016{bottom:408.929184pt;}
.y96_c01016{bottom:409.565747pt;}
.y95_c01016{bottom:410.317245pt;}
.y94_c01016{bottom:410.871968pt;}
.y93_c01016{bottom:413.247557pt;}
.y92_c01016{bottom:413.581221pt;}
.y91_c01016{bottom:414.296368pt;}
.y90_c01016{bottom:415.643384pt;}
.y8f_c01016{bottom:417.561781pt;}
.y8e_c01016{bottom:418.362829pt;}
.y8d_c01016{bottom:419.261011pt;}
.y8c_c01016{bottom:420.194811pt;}
.y8b_c01016{bottom:429.183635pt;}
.y8a_c01016{bottom:429.685157pt;}
.y89_c01016{bottom:430.987739pt;}
.y88_c01016{bottom:431.465168pt;}
.y87_c01016{bottom:433.041240pt;}
.y86_c01016{bottom:433.934024pt;}
.y85_c01016{bottom:434.894997pt;}
.y84_c01016{bottom:436.661267pt;}
.y83_c01016{bottom:438.077424pt;}
.y82_c01016{bottom:438.664939pt;}
.y81_c01016{bottom:440.119853pt;}
.y80_c01016{bottom:449.692525pt;}
.y7f_c01016{bottom:450.524027pt;}
.y7e_c01016{bottom:451.916837pt;}
.y7d_c01016{bottom:453.269659pt;}
.y7c_c01016{bottom:453.910464pt;}
.y7b_c01016{bottom:454.387131pt;}
.y7a_c01016{bottom:455.910352pt;}
.y79_c01016{bottom:456.596280pt;}
.y78_c01016{bottom:457.925624pt;}
.y77_c01016{bottom:458.349880pt;}
.y76_c01016{bottom:459.173947pt;}
.y75_c01016{bottom:460.282488pt;}
.y74_c01016{bottom:470.732277pt;}
.y73_c01016{bottom:471.239701pt;}
.y72_c01016{bottom:472.726293pt;}
.y71_c01016{bottom:473.348885pt;}
.y70_c01016{bottom:474.448045pt;}
.y6f_c01016{bottom:475.043477pt;}
.y6e_c01016{bottom:476.304544pt;}
.y6d_c01016{bottom:477.015965pt;}
.y6c_c01016{bottom:477.894147pt;}
.y6b_c01016{bottom:479.491888pt;}
.y6a_c01016{bottom:490.772493pt;}
.y69_c01016{bottom:492.285133pt;}
.y68_c01016{bottom:492.677376pt;}
.y67_c01016{bottom:493.075632pt;}
.y66_c01016{bottom:493.914104pt;}
.y65_c01016{bottom:494.322187pt;}
.y64_c01016{bottom:494.588595pt;}
.y63_c01016{bottom:495.709181pt;}
.y62_c01016{bottom:496.261035pt;}
.y61_c01016{bottom:497.041987pt;}
.y60_c01016{bottom:498.860589pt;}
.y5f_c01016{bottom:499.395269pt;}
.y5e_c01016{bottom:500.375165pt;}
.y5d_c01016{bottom:510.755261pt;}
.y5c_c01016{bottom:511.812672pt;}
.y5b_c01016{bottom:512.164853pt;}
.y5a_c01016{bottom:512.428528pt;}
.y59_c01016{bottom:513.104421pt;}
.y58_c01016{bottom:513.402272pt;}
.y57_c01016{bottom:513.605792pt;}
.y56_c01016{bottom:514.579037pt;}
.y55_c01016{bottom:515.020915pt;}
.y54_c01016{bottom:516.277181pt;}
.y53_c01016{bottom:517.430435pt;}
.y52_c01016{bottom:518.394248pt;}
.y51_c01016{bottom:519.321744pt;}
.y50_c01016{bottom:519.818157pt;}
.y4f_c01016{bottom:531.634325pt;}
.y4e_c01016{bottom:532.842800pt;}
.y4d_c01016{bottom:534.393341pt;}
.y4c_c01016{bottom:534.861899pt;}
.y4b_c01016{bottom:535.195163pt;}
.y4a_c01016{bottom:536.153883pt;}
.y49_c01016{bottom:537.900357pt;}
.y48_c01016{bottom:538.675320pt;}
.y47_c01016{bottom:539.220728pt;}
.y46_c01016{bottom:540.012589pt;}
.y45_c01016{bottom:540.474208pt;}
.y44_c01016{bottom:540.698701pt;}
.y43_c01016{bottom:550.243459pt;}
.y42_c01016{bottom:550.974971pt;}
.y41_c01016{bottom:552.167744pt;}
.y40_c01016{bottom:552.885368pt;}
.y3f_c01016{bottom:553.443352pt;}
.y3e_c01016{bottom:553.650069pt;}
.y3d_c01016{bottom:554.588269pt;}
.y3c_c01016{bottom:555.520707pt;}
.y3b_c01016{bottom:556.630691pt;}
.y3a_c01016{bottom:558.580333pt;}
.y39_c01016{bottom:559.211251pt;}
.y38_c01016{bottom:559.919752pt;}
.y37_c01016{bottom:560.626816pt;}
.y36_c01016{bottom:570.556883pt;}
.y35_c01016{bottom:571.383496pt;}
.y34_c01016{bottom:572.408021pt;}
.y33_c01016{bottom:572.856939pt;}
.y32_c01016{bottom:573.647589pt;}
.y31_c01016{bottom:574.067408pt;}
.y30_c01016{bottom:574.463320pt;}
.y2f_c01016{bottom:575.270515pt;}
.y2e_c01016{bottom:576.622576pt;}
.y2d_c01016{bottom:577.093669pt;}
.y2c_c01016{bottom:577.953517pt;}
.y2b_c01016{bottom:578.455117pt;}
.y2a_c01016{bottom:578.791219pt;}
.y29_c01016{bottom:580.554035pt;}
.y28_c01016{bottom:591.135875pt;}
.y27_c01016{bottom:592.723251pt;}
.y26_c01016{bottom:593.607048pt;}
.y25_c01016{bottom:594.752731pt;}
.y24_c01016{bottom:595.333896pt;}
.y23_c01016{bottom:596.206472pt;}
.y22_c01016{bottom:596.720797pt;}
.y21_c01016{bottom:597.487504pt;}
.y20_c01016{bottom:598.485032pt;}
.y1f_c01016{bottom:598.904269pt;}
.y1e_c01016{bottom:599.589528pt;}
.y1d_c01016{bottom:600.794379pt;}
.y1c_c01016{bottom:600.950645pt;}
.y1b_c01016{bottom:610.697893pt;}
.y1a_c01016{bottom:611.719339pt;}
.y19_c01016{bottom:612.610221pt;}
.y18_c01016{bottom:614.066445pt;}
.y17_c01016{bottom:615.296509pt;}
.y16_c01016{bottom:615.771944pt;}
.y15_c01016{bottom:616.458403pt;}
.y14_c01016{bottom:617.241515pt;}
.y13_c01016{bottom:617.746635pt;}
.y12_c01016{bottom:619.439315pt;}
.y11_c01016{bottom:620.029149pt;}
.y10_c01016{bottom:620.642304pt;}
.yf_c01016{bottom:630.974651pt;}
.ye_c01016{bottom:633.548240pt;}
.yd_c01016{bottom:633.775104pt;}
.yc_c01016{bottom:635.137813pt;}
.yb_c01016{bottom:636.600139pt;}
.ya_c01016{bottom:637.921107pt;}
.y9_c01016{bottom:639.182381pt;}
.y8_c01016{bottom:640.418195pt;}
.y7_c01016{bottom:641.154667pt;}
.y6_c01016{bottom:683.344024pt;}
.y5_c01016{bottom:685.445517pt;}
.y4_c01016{bottom:731.699789pt;}
.y3_c01016{bottom:737.523885pt;}
.y2_c01016{bottom:788.401333pt;}
.y1_c01016{bottom:809.520000pt;}
.h15_c01016{height:14.004731pt;}
.h2_c01016{height:16.800000pt;}
.h14_c01016{height:19.600000pt;}
.h7_c01016{height:54.146432pt;}
.h12_c01016{height:56.013550pt;}
.h11_c01016{height:57.880669pt;}
.h8_c01016{height:59.747787pt;}
.hc_c01016{height:60.681346pt;}
.hb_c01016{height:61.614905pt;}
.he_c01016{height:62.548465pt;}
.h9_c01016{height:63.482024pt;}
.ha_c01016{height:64.415583pt;}
.h6_c01016{height:65.349142pt;}
.h16_c01016{height:65.355412pt;}
.h10_c01016{height:66.282701pt;}
.hd_c01016{height:68.149820pt;}
.hf_c01016{height:69.083379pt;}
.h13_c01016{height:87.702490pt;}
.h17_c01016{height:96.165821pt;}
.h5_c01016{height:133.469069pt;}
.h4_c01016{height:164.269623pt;}
.h3_c01016{height:199.736929pt;}
.h1_c01016{height:893.333333pt;}
.h0_c01016{height:893.466667pt;}
.w0_c01016{width:635.733333pt;}
.w1_c01016{width:636.000000pt;}
.x0_c01016{left:0.000000pt;}
.xbe_c01016{left:43.592000pt;}
.x2_c01016{left:52.388000pt;}
.xb6_c01016{left:57.851245pt;}
.x75_c01016{left:76.707408pt;}
.x93_c01016{left:77.886173pt;}
.x7d_c01016{left:79.511968pt;}
.xb7_c01016{left:81.323552pt;}
.x39_c01016{left:82.401376pt;}
.x1b_c01016{left:84.942173pt;}
.xa4_c01016{left:86.376883pt;}
.xb3_c01016{left:88.022677pt;}
.x67_c01016{left:89.446981pt;}
.x43_c01016{left:91.365229pt;}
.x1c_c01016{left:92.409016pt;}
.x10_c01016{left:94.243680pt;}
.x7_c01016{left:96.861333pt;}
.x3_c01016{left:98.992424pt;}
.x5_c01016{left:101.741397pt;}
.x97_c01016{left:107.737611pt;}
.x76_c01016{left:112.748211pt;}
.x8c_c01016{left:114.669600pt;}
.x44_c01016{left:116.172981pt;}
.x3a_c01016{left:118.499752pt;}
.xab_c01016{left:119.477920pt;}
.x7e_c01016{left:120.434117pt;}
.x11_c01016{left:122.114347pt;}
.x68_c01016{left:124.009835pt;}
.x31_c01016{left:125.039328pt;}
.xa7_c01016{left:127.394571pt;}
.x8_c01016{left:130.337333pt;}
.x4f_c01016{left:133.673944pt;}
.x98_c01016{left:136.123016pt;}
.x77_c01016{left:139.143227pt;}
.x7f_c01016{left:142.023741pt;}
.xaf_c01016{left:146.591739pt;}
.x12_c01016{left:148.925013pt;}
.x8d_c01016{left:151.663165pt;}
.x32_c01016{left:155.849320pt;}
.x50_c01016{left:156.946779pt;}
.x9d_c01016{left:157.877517pt;}
.x3b_c01016{left:160.193176pt;}
.x45_c01016{left:162.576368pt;}
.x5d_c01016{left:165.334699pt;}
.x70_c01016{left:169.644848pt;}
.x86_c01016{left:171.336355pt;}
.x27_c01016{left:172.410549pt;}
.xb0_c01016{left:175.144600pt;}
.x9e_c01016{left:177.069149pt;}
.x99_c01016{left:178.778253pt;}
.x1d_c01016{left:182.385648pt;}
.x78_c01016{left:185.284483pt;}
.x9_c01016{left:186.510667pt;}
.x28_c01016{left:187.687883pt;}
.x3c_c01016{left:188.925749pt;}
.x87_c01016{left:190.768397pt;}
.x9f_c01016{left:195.566203pt;}
.x58_c01016{left:196.877747pt;}
.x80_c01016{left:200.379984pt;}
.x1e_c01016{left:202.351421pt;}
.xac_c01016{left:204.205136pt;}
.xb8_c01016{left:207.836645pt;}
.xb1_c01016{left:208.942208pt;}
.x29_c01016{left:210.487883pt;}
.x9a_c01016{left:212.965328pt;}
.x94_c01016{left:214.508160pt;}
.x79_c01016{left:218.118941pt;}
.x81_c01016{left:219.564539pt;}
.x13_c01016{left:225.865013pt;}
.x64_c01016{left:226.794179pt;}
.x3d_c01016{left:229.729781pt;}
.xb2_c01016{left:231.847685pt;}
.x6_c01016{left:233.093517pt;}
.x51_c01016{left:236.033048pt;}
.xb9_c01016{left:241.060512pt;}
.xa_c01016{left:243.841333pt;}
.x71_c01016{left:244.896885pt;}
.x82_c01016{left:246.917517pt;}
.x14_c01016{left:248.825013pt;}
.x1f_c01016{left:249.876477pt;}
.xa0_c01016{left:251.505275pt;}
.x8e_c01016{left:253.763085pt;}
.xad_c01016{left:255.592619pt;}
.x69_c01016{left:258.008443pt;}
.x5e_c01016{left:259.183789pt;}
.xb4_c01016{left:262.324640pt;}
.xa1_c01016{left:264.213493pt;}
.x72_c01016{left:266.064371pt;}
.x33_c01016{left:267.993493pt;}
.x52_c01016{left:270.014981pt;}
.x2a_c01016{left:270.985216pt;}
.x95_c01016{left:273.328245pt;}
.xba_c01016{left:275.060349pt;}
.x88_c01016{left:277.669344pt;}
.x59_c01016{left:279.078139pt;}
.x15_c01016{left:284.421013pt;}
.x20_c01016{left:286.363936pt;}
.x7a_c01016{left:288.440752pt;}
.x8f_c01016{left:289.856709pt;}
.x53_c01016{left:294.007787pt;}
.xa2_c01016{left:295.437403pt;}
.x9b_c01016{left:298.787667pt;}
.xb_c01016{left:303.885333pt;}
.x6a_c01016{left:307.897624pt;}
.x21_c01016{left:310.833797pt;}
.x16_c01016{left:315.623680pt;}
.x5f_c01016{left:317.749293pt;}
.x3e_c01016{left:321.666520pt;}
.x90_c01016{left:323.011843pt;}
.xbb_c01016{left:327.551365pt;}
.x46_c01016{left:331.250456pt;}
.x2b_c01016{left:332.442549pt;}
.x6b_c01016{left:334.401387pt;}
.x60_c01016{left:336.081013pt;}
.x17_c01016{left:337.234347pt;}
.xa8_c01016{left:339.845829pt;}
.x54_c01016{left:342.700035pt;}
.x91_c01016{left:344.975739pt;}
.x6c_c01016{left:346.778704pt;}
.xa3_c01016{left:348.024768pt;}
.x5a_c01016{left:349.677696pt;}
.x83_c01016{left:350.591469pt;}
.x22_c01016{left:352.376040pt;}
.x47_c01016{left:353.336757pt;}
.x55_c01016{left:354.263771pt;}
.x34_c01016{left:356.828891pt;}
.x61_c01016{left:360.721509pt;}
.x65_c01016{left:365.995251pt;}
.x96_c01016{left:367.902747pt;}
.x2c_c01016{left:369.133216pt;}
.xc_c01016{left:370.354667pt;}
.x3f_c01016{left:372.096501pt;}
.x5b_c01016{left:375.612552pt;}
.x23_c01016{left:380.065989pt;}
.xc3_c01016{left:382.069427pt;}
.x73_c01016{left:383.448741pt;}
.x1_c01016{left:384.720000pt;}
.x2d_c01016{left:387.129216pt;}
.x40_c01016{left:389.609645pt;}
.x89_c01016{left:391.679168pt;}
.x18_c01016{left:393.146347pt;}
.x35_c01016{left:397.594648pt;}
.x48_c01016{left:402.001565pt;}
.x2e_c01016{left:406.211883pt;}
.x56_c01016{left:408.499931pt;}
.xbf_c01016{left:410.633333pt;}
.x49_c01016{left:412.162005pt;}
.x41_c01016{left:414.303288pt;}
.xb5_c01016{left:416.169784pt;}
.xa9_c01016{left:419.311755pt;}
.x84_c01016{left:423.120824pt;}
.x57_c01016{left:425.814216pt;}
.x4a_c01016{left:427.034651pt;}
.x36_c01016{left:430.837915pt;}
.xd_c01016{left:432.296000pt;}
.x24_c01016{left:434.628525pt;}
.x5c_c01016{left:437.545824pt;}
.xa5_c01016{left:438.733424pt;}
.x85_c01016{left:441.468133pt;}
.xe_c01016{left:442.608000pt;}
.x66_c01016{left:444.965632pt;}
.x74_c01016{left:447.323139pt;}
.x8a_c01016{left:451.728512pt;}
.xbc_c01016{left:453.624488pt;}
.x6d_c01016{left:455.296099pt;}
.x19_c01016{left:459.338347pt;}
.x4b_c01016{left:460.849480pt;}
.x2f_c01016{left:462.555883pt;}
.x8b_c01016{left:465.403603pt;}
.x62_c01016{left:466.301544pt;}
.x7b_c01016{left:468.928853pt;}
.xbd_c01016{left:473.098304pt;}
.x4c_c01016{left:474.047400pt;}
.x25_c01016{left:476.741464pt;}
.x92_c01016{left:479.826851pt;}
.x6e_c01016{left:483.149048pt;}
.xaa_c01016{left:484.124627pt;}
.xae_c01016{left:486.369653pt;}
.x4d_c01016{left:491.632163pt;}
.x9c_c01016{left:493.125485pt;}
.x42_c01016{left:495.939352pt;}
.x63_c01016{left:498.276061pt;}
.x1a_c01016{left:499.833013pt;}
.x7c_c01016{left:503.536469pt;}
.x6f_c01016{left:506.747800pt;}
.x30_c01016{left:509.125216pt;}
.x37_c01016{left:513.914763pt;}
.xc2_c01016{left:530.790328pt;}
.xc0_c01016{left:534.178667pt;}
.xa6_c01016{left:535.467837pt;}
.x4e_c01016{left:544.486480pt;}
.x38_c01016{left:545.710059pt;}
.x4_c01016{left:546.989608pt;}
.xc1_c01016{left:549.558667pt;}
.x26_c01016{left:552.351136pt;}
.xf_c01016{left:559.589333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.000000;font-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_c01017{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);}
.m125_c01017{transform:matrix(0.013435,-0.000107,0.002000,0.249992,0,0);-ms-transform:matrix(0.013435,-0.000107,0.002000,0.249992,0,0);-webkit-transform:matrix(0.013435,-0.000107,0.002000,0.249992,0,0);}
.mb0_c01017{transform:matrix(0.015305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015305,0.000000,0.000000,0.250000,0,0);}
.m46_c01017{transform:matrix(0.041335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041335,0.000000,0.000000,0.250000,0,0);}
.mc_c01017{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.m3c_c01017{transform:matrix(0.134070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134070,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{transform:matrix(0.137272,-0.001922,0.003500,0.249976,0,0);-ms-transform:matrix(0.137272,-0.001922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.137272,-0.001922,0.003500,0.249976,0,0);}
.m5b_c01017{transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139885,0.000000,0.000000,0.250000,0,0);}
.mc1_c01017{transform:matrix(0.141590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141590,0.000000,0.000000,0.250000,0,0);}
.m8c_c01017{transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01017{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);}
.m104_c01017{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);}
.mf4_c01017{transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148035,0.000000,0.000000,0.250000,0,0);}
.md8_c01017{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);}
.m54_c01017{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);}
.m11c_c01017{transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150590,0.000000,0.000000,0.250000,0,0);}
.mff_c01017{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);}
.m18_c01017{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);}
.m10f_c01017{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);}
.mf1_c01017{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);}
.m7d_c01017{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);}
.m112_c01017{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);}
.md7_c01017{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);}
.m23_c01017{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);}
.me3_c01017{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);}
.m64_c01017{transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156490,0.000000,0.000000,0.250000,0,0);}
.m39_c01017{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);}
.m107_c01017{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);}
.mf6_c01017{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);}
.m11e_c01017{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);}
.m85_c01017{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);}
.m2f_c01017{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);}
.m41_c01017{transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);}
.m56_c01017{transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159920,0.000000,0.000000,0.250000,0,0);}
.mdd_c01017{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);}
.me5_c01017{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);}
.m11b_c01017{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);}
.m1a_c01017{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);}
.md2_c01017{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);}
.m114_c01017{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);}
.m57_c01017{transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161815,0.000000,0.000000,0.250000,0,0);}
.m71_c01017{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);}
.m3_c01017{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);}
.me0_c01017{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);}
.m87_c01017{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);}
.m2c_c01017{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);}
.m103_c01017{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);}
.m44_c01017{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);}
.mcc_c01017{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.m5a_c01017{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);}
.m34_c01017{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);}
.mfc_c01017{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);}
.m1f_c01017{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);}
.m100_c01017{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);}
.mde_c01017{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);}
.m26_c01017{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);}
.m6b_c01017{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);}
.me7_c01017{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);}
.m110_c01017{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);}
.m11d_c01017{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);}
.mdb_c01017{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);}
.m115_c01017{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);}
.mc8_c01017{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);}
.md3_c01017{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);}
.m59_c01017{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);}
.md5_c01017{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);}
.m122_c01017{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);}
.m119_c01017{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);}
.m4e_c01017{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);}
.mfe_c01017{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);}
.m97_c01017{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);}
.mc5_c01017{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);}
.m10b_c01017{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);}
.m10e_c01017{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);}
.mbd_c01017{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);}
.m82_c01017{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);}
.m10a_c01017{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);}
.m30_c01017{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);}
.med_c01017{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);}
.mc2_c01017{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);}
.m77_c01017{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);}
.m120_c01017{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);}
.m1e_c01017{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);}
.mbe_c01017{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);}
.m88_c01017{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);}
.m40_c01017{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.m111_c01017{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);}
.m124_c01017{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);}
.mdf_c01017{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);}
.m24_c01017{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);}
.mc4_c01017{transform:matrix(0.178495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178495,0.000000,0.000000,0.250000,0,0);}
.m79_c01017{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);}
.m8a_c01017{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);}
.m8e_c01017{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);}
.mc0_c01017{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);}
.m6_c01017{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);}
.m106_c01017{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);}
.mf8_c01017{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);}
.m117_c01017{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);}
.mf7_c01017{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);}
.mba_c01017{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);}
.m33_c01017{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.me8_c01017{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);}
.m20_c01017{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);}
.ma7_c01017{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);}
.m109_c01017{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);}
.m14_c01017{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);}
.m86_c01017{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);}
.m116_c01017{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);}
.m62_c01017{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);}
.m72_c01017{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);}
.mf5_c01017{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);}
.m45_c01017{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);}
.m3e_c01017{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);}
.m2e_c01017{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);}
.m22_c01017{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);}
.m80_c01017{transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185335,0.000000,0.000000,0.250000,0,0);}
.m76_c01017{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);}
.mf3_c01017{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);}
.mf2_c01017{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);}
.m11a_c01017{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);}
.m83_c01017{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);}
.m3b_c01017{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);}
.m10d_c01017{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);}
.m5d_c01017{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);}
.m10c_c01017{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);}
.m63_c01017{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);}
.m81_c01017{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);}
.m94_c01017{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);}
.md6_c01017{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);}
.m8_c01017{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);}
.mb4_c01017{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);}
.me9_c01017{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);}
.me2_c01017{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);}
.m102_c01017{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);}
.m118_c01017{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);}
.m90_c01017{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);}
.m7e_c01017{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);}
.ma_c01017{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);}
.m84_c01017{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);}
.mee_c01017{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);}
.m9f_c01017{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);}
.m8f_c01017{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);}
.m121_c01017{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);}
.mb_c01017{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);}
.m7_c01017{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);}
.m113_c01017{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);}
.m11f_c01017{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);}
.m91_c01017{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);}
.me4_c01017{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);}
.mcf_c01017{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);}
.m32_c01017{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);}
.mb8_c01017{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);}
.md_c01017{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);}
.m78_c01017{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);}
.ma4_c01017{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);}
.m8d_c01017{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);}
.m6c_c01017{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);}
.m70_c01017{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);}
.mad_c01017{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);}
.m55_c01017{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);}
.md9_c01017{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);}
.m6e_c01017{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);}
.maa_c01017{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);}
.m58_c01017{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);}
.m74_c01017{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);}
.m15_c01017{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);}
.m3a_c01017{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);}
.m6a_c01017{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);}
.m4f_c01017{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);}
.ma6_c01017{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);}
.m27_c01017{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);}
.m123_c01017{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);}
.m105_c01017{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);}
.m96_c01017{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);}
.mc7_c01017{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);}
.m2a_c01017{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);}
.mbc_c01017{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);}
.mce_c01017{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);}
.m73_c01017{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);}
.mfd_c01017{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);}
.m101_c01017{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);}
.ma0_c01017{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.mec_c01017{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);}
.m7b_c01017{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);}
.m9a_c01017{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);}
.mc3_c01017{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);}
.mc6_c01017{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);}
.mf9_c01017{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);}
.mdc_c01017{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);}
.m8b_c01017{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);}
.m35_c01017{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);}
.m42_c01017{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);}
.m37_c01017{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);}
.mea_c01017{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);}
.m67_c01017{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);}
.m43_c01017{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);}
.m12_c01017{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_c01017{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);}
.mb9_c01017{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);}
.m6f_c01017{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);}
.m2b_c01017{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_c01017{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);}
.m4d_c01017{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);}
.me1_c01017{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);}
.m1d_c01017{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);}
.m21_c01017{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);}
.m5_c01017{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);}
.m61_c01017{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);}
.mf0_c01017{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);}
.m28_c01017{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);}
.mac_c01017{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);}
.mda_c01017{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);}
.m36_c01017{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);}
.m49_c01017{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);}
.ma3_c01017{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);}
.m3d_c01017{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);}
.m1b_c01017{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);}
.m9c_c01017{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);}
.m6d_c01017{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);}
.m48_c01017{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);}
.md0_c01017{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);}
.m53_c01017{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);}
.m9_c01017{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);}
.mbb_c01017{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);}
.m60_c01017{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);}
.mcd_c01017{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);}
.mfb_c01017{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);}
.m7c_c01017{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);}
.m7f_c01017{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);}
.m9e_c01017{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);}
.m69_c01017{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);}
.m1c_c01017{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);}
.mfa_c01017{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);}
.m38_c01017{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);}
.mb6_c01017{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);}
.me6_c01017{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);}
.mca_c01017{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);}
.m108_c01017{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);}
.m92_c01017{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);}
.m89_c01017{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);}
.m5c_c01017{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);}
.ma5_c01017{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);}
.m98_c01017{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);}
.m65_c01017{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);}
.m19_c01017{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);}
.m75_c01017{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);}
.md4_c01017{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);}
.m2d_c01017{transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231735,0.000000,0.000000,0.250000,0,0);}
.m10_c01017{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);}
.m126_c01017{transform:matrix(0.233588,-0.001869,0.002000,0.249992,0,0);-ms-transform:matrix(0.233588,-0.001869,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233588,-0.001869,0.002000,0.249992,0,0);}
.m50_c01017{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);}
.m99_c01017{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);}
.mb3_c01017{transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);}
.m9b_c01017{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);}
.mae_c01017{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);}
.mbf_c01017{transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241190,0.000000,0.000000,0.250000,0,0);}
.m16_c01017{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);}
.mab_c01017{transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245305,0.000000,0.000000,0.250000,0,0);}
.m7a_c01017{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);}
.mcb_c01017{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.meb_c01017{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.mb5_c01017{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.m66_c01017{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);}
.ma1_c01017{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);}
.m11_c01017{transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255190,0.000000,0.000000,0.250000,0,0);}
.m68_c01017{transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255380,0.000000,0.000000,0.250000,0,0);}
.m17_c01017{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.m4_c01017{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);}
.m5e_c01017{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.m52_c01017{transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262895,0.000000,0.000000,0.250000,0,0);}
.ma8_c01017{transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);}
.m29_c01017{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);}
.mb7_c01017{transform:matrix(0.284700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284700,0.000000,0.000000,0.250000,0,0);}
.m4b_c01017{transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285515,0.000000,0.000000,0.250000,0,0);}
.md1_c01017{transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286295,0.000000,0.000000,0.250000,0,0);}
.m5f_c01017{transform:matrix(0.289470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289470,0.000000,0.000000,0.250000,0,0);}
.m95_c01017{transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);}
.mb2_c01017{transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);}
.m51_c01017{transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312470,0.000000,0.000000,0.250000,0,0);}
.maf_c01017{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m13_c01017{transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315425,0.000000,0.000000,0.250000,0,0);}
.m4a_c01017{transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324565,0.000000,0.000000,0.250000,0,0);}
.m2_c01017{transform:matrix(0.326438,-0.004570,0.003500,0.249976,0,0);-ms-transform:matrix(0.326438,-0.004570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.326438,-0.004570,0.003500,0.249976,0,0);}
.m47_c01017{transform:matrix(0.331440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331440,0.000000,0.000000,0.250000,0,0);}
.m93_c01017{transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337590,0.000000,0.000000,0.250000,0,0);}
.mef_c01017{transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338545,0.000000,0.000000,0.250000,0,0);}
.m4c_c01017{transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358270,0.000000,0.000000,0.250000,0,0);}
.m31_c01017{transform:matrix(0.360990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360990,0.000000,0.000000,0.250000,0,0);}
.m0_c01017{transform:matrix(0.361590,-0.005062,0.003500,0.249976,0,0);-ms-transform:matrix(0.361590,-0.005062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.361590,-0.005062,0.003500,0.249976,0,0);}
.ma9_c01017{transform:matrix(0.432355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432355,0.000000,0.000000,0.250000,0,0);}
.mc9_c01017{transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486390,0.000000,0.000000,0.250000,0,0);}
.mb1_c01017{transform:matrix(0.568185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568185,0.000000,0.000000,0.250000,0,0);}
.m25_c01017{transform:matrix(0.622345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622345,0.000000,0.000000,0.250000,0,0);}
.mf_c01017{transform:matrix(0.918320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.918320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.918320,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls0_c01017{letter-spacing:0.000000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:0.000000px;}
.fc0_c01017{color:transparent;}
.fs2_c01017{font-size:57.750000px;}
.fsd_c01017{font-size:61.950000px;}
.fsa_c01017{font-size:63.000000px;}
.fs3_c01017{font-size:64.050000px;}
.fs11_c01017{font-size:65.100000px;}
.fs6_c01017{font-size:66.150000px;}
.fsb_c01017{font-size:67.200000px;}
.fsf_c01017{font-size:68.250000px;}
.fsc_c01017{font-size:69.300000px;}
.fs7_c01017{font-size:70.350000px;}
.fs5_c01017{font-size:71.400000px;}
.fs8_c01017{font-size:72.450000px;}
.fs12_c01017{font-size:72.452318px;}
.fs4_c01017{font-size:73.500000px;}
.fs9_c01017{font-size:74.550000px;}
.fse_c01017{font-size:81.900000px;}
.fs10_c01017{font-size:88.200000px;}
.fs1_c01017{font-size:136.513376px;}
.fs0_c01017{font-size:231.022637px;}
.y0_c01017{bottom:0.000000px;}
.y97_c01017{bottom:130.950000px;}
.y98_c01017{bottom:133.786392px;}
.y96_c01017{bottom:154.791000px;}
.y88_c01017{bottom:176.314500px;}
.y89_c01017{bottom:176.523000px;}
.y8a_c01017{bottom:176.631000px;}
.y8b_c01017{bottom:176.835000px;}
.y8c_c01017{bottom:177.028500px;}
.y8d_c01017{bottom:177.382500px;}
.y8e_c01017{bottom:177.537000px;}
.y8f_c01017{bottom:177.805500px;}
.y90_c01017{bottom:178.087500px;}
.y91_c01017{bottom:178.239000px;}
.y92_c01017{bottom:178.542000px;}
.y93_c01017{bottom:178.854000px;}
.y94_c01017{bottom:179.371500px;}
.y95_c01017{bottom:179.548500px;}
.y7c_c01017{bottom:198.453000px;}
.y7d_c01017{bottom:198.843000px;}
.y7e_c01017{bottom:199.177500px;}
.y7f_c01017{bottom:199.495500px;}
.y80_c01017{bottom:199.704000px;}
.y81_c01017{bottom:199.825500px;}
.y82_c01017{bottom:200.268000px;}
.y83_c01017{bottom:200.539500px;}
.y84_c01017{bottom:200.692500px;}
.y85_c01017{bottom:200.977500px;}
.y86_c01017{bottom:201.124500px;}
.y87_c01017{bottom:201.690000px;}
.y6e_c01017{bottom:221.131500px;}
.y6f_c01017{bottom:221.323500px;}
.y70_c01017{bottom:221.539500px;}
.y71_c01017{bottom:222.048000px;}
.y72_c01017{bottom:222.348000px;}
.y73_c01017{bottom:222.529500px;}
.y74_c01017{bottom:222.741000px;}
.y75_c01017{bottom:223.080000px;}
.y76_c01017{bottom:223.473000px;}
.y77_c01017{bottom:223.663500px;}
.y78_c01017{bottom:223.801500px;}
.y79_c01017{bottom:224.317500px;}
.y7a_c01017{bottom:224.542500px;}
.y7b_c01017{bottom:224.718000px;}
.y64_c01017{bottom:244.080000px;}
.y65_c01017{bottom:244.678500px;}
.y66_c01017{bottom:245.410500px;}
.y67_c01017{bottom:245.581500px;}
.y68_c01017{bottom:245.961000px;}
.y69_c01017{bottom:246.166500px;}
.y6a_c01017{bottom:246.450000px;}
.y6b_c01017{bottom:246.954000px;}
.y6c_c01017{bottom:247.273500px;}
.y6d_c01017{bottom:247.632000px;}
.y63_c01017{bottom:269.032500px;}
.y62_c01017{bottom:291.669000px;}
.y61_c01017{bottom:330.094500px;}
.y60_c01017{bottom:353.575500px;}
.y5f_c01017{bottom:376.189500px;}
.y5e_c01017{bottom:398.775000px;}
.y5d_c01017{bottom:422.337000px;}
.y5c_c01017{bottom:445.015500px;}
.y5b_c01017{bottom:468.363000px;}
.y5a_c01017{bottom:490.251000px;}
.y59_c01017{bottom:512.913000px;}
.y58_c01017{bottom:536.104500px;}
.y57_c01017{bottom:558.540000px;}
.y56_c01017{bottom:581.763000px;}
.y55_c01017{bottom:605.106000px;}
.y54_c01017{bottom:627.126000px;}
.y4d_c01017{bottom:647.940000px;}
.y4e_c01017{bottom:648.909000px;}
.y4f_c01017{bottom:649.645500px;}
.y50_c01017{bottom:649.939500px;}
.y51_c01017{bottom:650.571000px;}
.y52_c01017{bottom:650.791500px;}
.y53_c01017{bottom:651.223500px;}
.y3e_c01017{bottom:670.951500px;}
.y3f_c01017{bottom:671.199000px;}
.y40_c01017{bottom:671.350500px;}
.y41_c01017{bottom:671.530500px;}
.y42_c01017{bottom:671.629500px;}
.y43_c01017{bottom:672.123000px;}
.y44_c01017{bottom:672.240000px;}
.y45_c01017{bottom:672.460500px;}
.y46_c01017{bottom:672.738000px;}
.y47_c01017{bottom:672.996000px;}
.y48_c01017{bottom:673.377000px;}
.y49_c01017{bottom:673.521000px;}
.y4a_c01017{bottom:673.714500px;}
.y4b_c01017{bottom:673.879500px;}
.y4c_c01017{bottom:674.220000px;}
.y34_c01017{bottom:693.634500px;}
.y35_c01017{bottom:694.339500px;}
.y36_c01017{bottom:694.971000px;}
.y37_c01017{bottom:695.278500px;}
.y38_c01017{bottom:695.761500px;}
.y39_c01017{bottom:696.157500px;}
.y3a_c01017{bottom:696.559500px;}
.y3b_c01017{bottom:696.700500px;}
.y3c_c01017{bottom:696.897000px;}
.y3d_c01017{bottom:698.347500px;}
.y33_c01017{bottom:718.561500px;}
.y27_c01017{bottom:740.343000px;}
.y28_c01017{bottom:740.569500px;}
.y29_c01017{bottom:740.716500px;}
.y2a_c01017{bottom:741.013500px;}
.y2b_c01017{bottom:741.210000px;}
.y2c_c01017{bottom:741.618000px;}
.y2d_c01017{bottom:741.898500px;}
.y2e_c01017{bottom:742.048500px;}
.y2f_c01017{bottom:742.759500px;}
.y30_c01017{bottom:742.906500px;}
.y31_c01017{bottom:743.023500px;}
.y32_c01017{bottom:743.355000px;}
.y1d_c01017{bottom:762.751500px;}
.y1e_c01017{bottom:763.249500px;}
.y1f_c01017{bottom:763.725000px;}
.y20_c01017{bottom:764.049000px;}
.y21_c01017{bottom:764.596500px;}
.y22_c01017{bottom:764.827500px;}
.y23_c01017{bottom:765.364500px;}
.y24_c01017{bottom:765.646500px;}
.y25_c01017{bottom:765.775500px;}
.y26_c01017{bottom:766.275000px;}
.y11_c01017{bottom:785.701500px;}
.y12_c01017{bottom:786.186000px;}
.y13_c01017{bottom:786.387000px;}
.y14_c01017{bottom:787.006500px;}
.y15_c01017{bottom:787.129500px;}
.y16_c01017{bottom:787.450500px;}
.y17_c01017{bottom:787.896000px;}
.y18_c01017{bottom:788.589000px;}
.y19_c01017{bottom:788.791500px;}
.y1a_c01017{bottom:788.887500px;}
.y1b_c01017{bottom:789.325500px;}
.y1c_c01017{bottom:789.715500px;}
.y5_c01017{bottom:808.110000px;}
.y6_c01017{bottom:808.488000px;}
.y7_c01017{bottom:808.857000px;}
.y8_c01017{bottom:809.029500px;}
.y9_c01017{bottom:809.508000px;}
.ya_c01017{bottom:809.725500px;}
.yb_c01017{bottom:810.367500px;}
.yc_c01017{bottom:810.586500px;}
.yd_c01017{bottom:811.066500px;}
.ye_c01017{bottom:811.201500px;}
.yf_c01017{bottom:811.428000px;}
.y10_c01017{bottom:811.507500px;}
.y4_c01017{bottom:840.211500px;}
.y2_c01017{bottom:852.117564px;}
.y3_c01017{bottom:852.894660px;}
.y1_c01017{bottom:893.976000px;}
.h4_c01017{height:57.750000px;}
.hf_c01017{height:61.950000px;}
.hc_c01017{height:63.000000px;}
.h5_c01017{height:64.050000px;}
.h13_c01017{height:65.100000px;}
.h8_c01017{height:66.150000px;}
.hd_c01017{height:67.200000px;}
.h11_c01017{height:68.250000px;}
.he_c01017{height:69.300000px;}
.h9_c01017{height:70.350000px;}
.h7_c01017{height:71.400000px;}
.ha_c01017{height:72.450000px;}
.h14_c01017{height:72.452318px;}
.h6_c01017{height:73.500000px;}
.hb_c01017{height:74.550000px;}
.h10_c01017{height:81.900000px;}
.h12_c01017{height:88.200000px;}
.h3_c01017{height:136.513376px;}
.h2_c01017{height:231.022637px;}
.h0_c01017{height:1008.450000px;}
.h1_c01017{height:1008.750000px;}
.w1_c01017{width:700.500000px;}
.w0_c01017{width:700.650000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:93.078000px;}
.x92_c01017{left:139.860000px;}
.x85_c01017{left:141.214500px;}
.x34_c01017{left:142.465500px;}
.x3e_c01017{left:144.298500px;}
.x6a_c01017{left:145.534500px;}
.x1b_c01017{left:147.490500px;}
.x2_c01017{left:149.000862px;}
.x93_c01017{left:158.490000px;}
.x86_c01017{left:159.574500px;}
.x61_c01017{left:160.654500px;}
.x4b_c01017{left:163.548000px;}
.x5_c01017{left:165.336000px;}
.xa1_c01017{left:167.485500px;}
.xb0_c01017{left:173.418000px;}
.x96_c01017{left:178.470000px;}
.x3f_c01017{left:179.644500px;}
.x87_c01017{left:182.254500px;}
.x23_c01017{left:185.295000px;}
.x94_c01017{left:186.570000px;}
.xb1_c01017{left:188.806500px;}
.x2d_c01017{left:189.810000px;}
.x82_c01017{left:194.404500px;}
.x84_c01017{left:197.374500px;}
.xa9_c01017{left:199.084500px;}
.x40_c01017{left:201.276000px;}
.x6b_c01017{left:203.044500px;}
.x70_c01017{left:205.204500px;}
.x78_c01017{left:206.554500px;}
.x11_c01017{left:208.579500px;}
.x24_c01017{left:209.842500px;}
.x35_c01017{left:212.937000px;}
.x9d_c01017{left:218.275500px;}
.x6_c01017{left:219.301500px;}
.x55_c01017{left:221.404500px;}
.x62_c01017{left:222.484500px;}
.x88_c01017{left:225.454500px;}
.x41_c01017{left:226.924500px;}
.x12_c01017{left:233.662500px;}
.x3_c01017{left:235.370910px;}
.x95_c01017{left:239.760000px;}
.x42_c01017{left:240.972000px;}
.x56_c01017{left:242.734500px;}
.x2e_c01017{left:244.890000px;}
.xaa_c01017{left:246.846000px;}
.x50_c01017{left:249.754500px;}
.x63_c01017{left:251.914500px;}
.x83_c01017{left:254.074500px;}
.x8f_c01017{left:257.854500px;}
.x25_c01017{left:259.278000px;}
.x2f_c01017{left:261.090000px;}
.x99_c01017{left:262.170000px;}
.x7_c01017{left:271.954500px;}
.xb4_c01017{left:273.511500px;}
.x36_c01017{left:276.081000px;}
.x71_c01017{left:277.294500px;}
.x57_c01017{left:279.454500px;}
.x80_c01017{left:281.074500px;}
.x9a_c01017{left:284.580000px;}
.x1c_c01017{left:286.539000px;}
.x26_c01017{left:291.954000px;}
.x58_c01017{left:292.954500px;}
.xa2_c01017{left:295.494000px;}
.x8_c01017{left:296.559000px;}
.x90_c01017{left:298.084500px;}
.x6c_c01017{left:300.244500px;}
.x89_c01017{left:304.024500px;}
.x37_c01017{left:306.850500px;}
.x79_c01017{left:309.694500px;}
.x13_c01017{left:311.173500px;}
.x72_c01017{left:313.744500px;}
.x64_c01017{left:316.984500px;}
.x7d_c01017{left:318.604500px;}
.xab_c01017{left:321.904500px;}
.x14_c01017{left:326.541000px;}
.x43_c01017{left:328.141500px;}
.x9e_c01017{left:331.116000px;}
.x1d_c01017{left:332.737500px;}
.x4c_c01017{left:334.131000px;}
.x65_c01017{left:338.044500px;}
.xac_c01017{left:339.226500px;}
.x7a_c01017{left:340.744500px;}
.xa3_c01017{left:344.613000px;}
.x7e_c01017{left:346.414500px;}
.x51_c01017{left:353.974500px;}
.x38_c01017{left:355.189500px;}
.xb2_c01017{left:356.496000px;}
.x27_c01017{left:359.979000px;}
.x4d_c01017{left:363.561000px;}
.x9_c01017{left:364.864500px;}
.x15_c01017{left:366.744000px;}
.x59_c01017{left:376.384500px;}
.xb5_c01017{left:377.461500px;}
.x9f_c01017{left:378.607500px;}
.x73_c01017{left:382.324500px;}
.x91_c01017{left:385.564500px;}
.xa4_c01017{left:387.024000px;}
.x8a_c01017{left:388.534500px;}
.x66_c01017{left:390.964500px;}
.x39_c01017{left:394.857000px;}
.xa_c01017{left:395.919000px;}
.x44_c01017{left:399.429000px;}
.xad_c01017{left:402.405000px;}
.x9b_c01017{left:404.460000px;}
.x28_c01017{left:406.672500px;}
.x1e_c01017{left:411.030000px;}
.x74_c01017{left:413.644500px;}
.x8b_c01017{left:416.884500px;}
.x5a_c01017{left:419.314500px;}
.x16_c01017{left:422.397000px;}
.x4e_c01017{left:426.742500px;}
.x52_c01017{left:428.224500px;}
.x67_c01017{left:430.114500px;}
.x29_c01017{left:431.793000px;}
.x3a_c01017{left:435.105000px;}
.x45_c01017{left:436.359000px;}
.x75_c01017{left:439.564500px;}
.xae_c01017{left:441.271500px;}
.x1f_c01017{left:443.976000px;}
.x3b_c01017{left:449.143500px;}
.x68_c01017{left:451.444500px;}
.x5b_c01017{left:453.064500px;}
.x7b_c01017{left:457.924500px;}
.x6d_c01017{left:459.004500px;}
.xb3_c01017{left:461.517000px;}
.x30_c01017{left:462.780000px;}
.x53_c01017{left:466.024500px;}
.x3c_c01017{left:468.859500px;}
.xa5_c01017{left:477.204000px;}
.x5c_c01017{left:481.144500px;}
.xb6_c01017{left:482.491500px;}
.xb_c01017{left:487.716000px;}
.x46_c01017{left:490.684500px;}
.x4f_c01017{left:492.079500px;}
.x6e_c01017{left:498.154500px;}
.x97_c01017{left:499.500000px;}
.xa0_c01017{left:502.587000px;}
.x5d_c01017{left:504.364500px;}
.x9c_c01017{left:507.060000px;}
.x17_c01017{left:509.070000px;}
.x47_c01017{left:511.209000px;}
.x31_c01017{left:514.620000px;}
.x76_c01017{left:515.974500px;}
.xc_c01017{left:519.046500px;}
.x20_c01017{left:520.651500px;}
.x7c_c01017{left:521.914500px;}
.x7f_c01017{left:524.884500px;}
.x32_c01017{left:528.390000px;}
.x8c_c01017{left:530.824500px;}
.x18_c01017{left:534.399000px;}
.x54_c01017{left:535.684500px;}
.x48_c01017{left:538.774500px;}
.xa6_c01017{left:541.683000px;}
.x5e_c01017{left:543.514500px;}
.x19_c01017{left:546.315000px;}
.x6f_c01017{left:548.914500px;}
.x2a_c01017{left:550.339500px;}
.x69_c01017{left:556.204500px;}
.x8d_c01017{left:558.634500px;}
.x21_c01017{left:560.880000px;}
.x49_c01017{left:562.260000px;}
.xa7_c01017{left:569.797500px;}
.x5f_c01017{left:573.484500px;}
.x2b_c01017{left:574.906500px;}
.x77_c01017{left:577.804500px;}
.x22_c01017{left:579.243000px;}
.x98_c01017{left:581.040000px;}
.xd_c01017{left:587.550000px;}
.xa8_c01017{left:591.672000px;}
.x2c_c01017{left:594.352500px;}
.x81_c01017{left:596.974500px;}
.x33_c01017{left:598.860000px;}
.x1a_c01017{left:601.083000px;}
.x60_c01017{left:602.644500px;}
.xb7_c01017{left:604.072500px;}
.xaf_c01017{left:605.704500px;}
.xe_c01017{left:606.784500px;}
.x4a_c01017{left:610.833000px;}
.x3d_c01017{left:613.945500px;}
.xf_c01017{left:639.090000px;}
.x8e_c01017{left:642.874500px;}
.x10_c01017{left:650.452500px;}
.x4_c01017{left:654.210000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls0_c01017{letter-spacing:0.000000pt;}
.ws0_c01017{word-spacing:0.000000pt;}
.fs2_c01017{font-size:51.333333pt;}
.fsd_c01017{font-size:55.066667pt;}
.fsa_c01017{font-size:56.000000pt;}
.fs3_c01017{font-size:56.933333pt;}
.fs11_c01017{font-size:57.866667pt;}
.fs6_c01017{font-size:58.800000pt;}
.fsb_c01017{font-size:59.733333pt;}
.fsf_c01017{font-size:60.666667pt;}
.fsc_c01017{font-size:61.600000pt;}
.fs7_c01017{font-size:62.533333pt;}
.fs5_c01017{font-size:63.466667pt;}
.fs8_c01017{font-size:64.400000pt;}
.fs12_c01017{font-size:64.402061pt;}
.fs4_c01017{font-size:65.333333pt;}
.fs9_c01017{font-size:66.266667pt;}
.fse_c01017{font-size:72.800000pt;}
.fs10_c01017{font-size:78.400000pt;}
.fs1_c01017{font-size:121.345223pt;}
.fs0_c01017{font-size:205.353455pt;}
.y0_c01017{bottom:0.000000pt;}
.y97_c01017{bottom:116.400000pt;}
.y98_c01017{bottom:118.921237pt;}
.y96_c01017{bottom:137.592000pt;}
.y88_c01017{bottom:156.724000pt;}
.y89_c01017{bottom:156.909333pt;}
.y8a_c01017{bottom:157.005333pt;}
.y8b_c01017{bottom:157.186667pt;}
.y8c_c01017{bottom:157.358667pt;}
.y8d_c01017{bottom:157.673333pt;}
.y8e_c01017{bottom:157.810667pt;}
.y8f_c01017{bottom:158.049333pt;}
.y90_c01017{bottom:158.300000pt;}
.y91_c01017{bottom:158.434667pt;}
.y92_c01017{bottom:158.704000pt;}
.y93_c01017{bottom:158.981333pt;}
.y94_c01017{bottom:159.441333pt;}
.y95_c01017{bottom:159.598667pt;}
.y7c_c01017{bottom:176.402667pt;}
.y7d_c01017{bottom:176.749333pt;}
.y7e_c01017{bottom:177.046667pt;}
.y7f_c01017{bottom:177.329333pt;}
.y80_c01017{bottom:177.514667pt;}
.y81_c01017{bottom:177.622667pt;}
.y82_c01017{bottom:178.016000pt;}
.y83_c01017{bottom:178.257333pt;}
.y84_c01017{bottom:178.393333pt;}
.y85_c01017{bottom:178.646667pt;}
.y86_c01017{bottom:178.777333pt;}
.y87_c01017{bottom:179.280000pt;}
.y6e_c01017{bottom:196.561333pt;}
.y6f_c01017{bottom:196.732000pt;}
.y70_c01017{bottom:196.924000pt;}
.y71_c01017{bottom:197.376000pt;}
.y72_c01017{bottom:197.642667pt;}
.y73_c01017{bottom:197.804000pt;}
.y74_c01017{bottom:197.992000pt;}
.y75_c01017{bottom:198.293333pt;}
.y76_c01017{bottom:198.642667pt;}
.y77_c01017{bottom:198.812000pt;}
.y78_c01017{bottom:198.934667pt;}
.y79_c01017{bottom:199.393333pt;}
.y7a_c01017{bottom:199.593333pt;}
.y7b_c01017{bottom:199.749333pt;}
.y64_c01017{bottom:216.960000pt;}
.y65_c01017{bottom:217.492000pt;}
.y66_c01017{bottom:218.142667pt;}
.y67_c01017{bottom:218.294667pt;}
.y68_c01017{bottom:218.632000pt;}
.y69_c01017{bottom:218.814667pt;}
.y6a_c01017{bottom:219.066667pt;}
.y6b_c01017{bottom:219.514667pt;}
.y6c_c01017{bottom:219.798667pt;}
.y6d_c01017{bottom:220.117333pt;}
.y63_c01017{bottom:239.140000pt;}
.y62_c01017{bottom:259.261333pt;}
.y61_c01017{bottom:293.417333pt;}
.y60_c01017{bottom:314.289333pt;}
.y5f_c01017{bottom:334.390667pt;}
.y5e_c01017{bottom:354.466667pt;}
.y5d_c01017{bottom:375.410667pt;}
.y5c_c01017{bottom:395.569333pt;}
.y5b_c01017{bottom:416.322667pt;}
.y5a_c01017{bottom:435.778667pt;}
.y59_c01017{bottom:455.922667pt;}
.y58_c01017{bottom:476.537333pt;}
.y57_c01017{bottom:496.480000pt;}
.y56_c01017{bottom:517.122667pt;}
.y55_c01017{bottom:537.872000pt;}
.y54_c01017{bottom:557.445333pt;}
.y4d_c01017{bottom:575.946667pt;}
.y4e_c01017{bottom:576.808000pt;}
.y4f_c01017{bottom:577.462667pt;}
.y50_c01017{bottom:577.724000pt;}
.y51_c01017{bottom:578.285333pt;}
.y52_c01017{bottom:578.481333pt;}
.y53_c01017{bottom:578.865333pt;}
.y3e_c01017{bottom:596.401333pt;}
.y3f_c01017{bottom:596.621333pt;}
.y40_c01017{bottom:596.756000pt;}
.y41_c01017{bottom:596.916000pt;}
.y42_c01017{bottom:597.004000pt;}
.y43_c01017{bottom:597.442667pt;}
.y44_c01017{bottom:597.546667pt;}
.y45_c01017{bottom:597.742667pt;}
.y46_c01017{bottom:597.989333pt;}
.y47_c01017{bottom:598.218667pt;}
.y48_c01017{bottom:598.557333pt;}
.y49_c01017{bottom:598.685333pt;}
.y4a_c01017{bottom:598.857333pt;}
.y4b_c01017{bottom:599.004000pt;}
.y4c_c01017{bottom:599.306667pt;}
.y34_c01017{bottom:616.564000pt;}
.y35_c01017{bottom:617.190667pt;}
.y36_c01017{bottom:617.752000pt;}
.y37_c01017{bottom:618.025333pt;}
.y38_c01017{bottom:618.454667pt;}
.y39_c01017{bottom:618.806667pt;}
.y3a_c01017{bottom:619.164000pt;}
.y3b_c01017{bottom:619.289333pt;}
.y3c_c01017{bottom:619.464000pt;}
.y3d_c01017{bottom:620.753333pt;}
.y33_c01017{bottom:638.721333pt;}
.y27_c01017{bottom:658.082667pt;}
.y28_c01017{bottom:658.284000pt;}
.y29_c01017{bottom:658.414667pt;}
.y2a_c01017{bottom:658.678667pt;}
.y2b_c01017{bottom:658.853333pt;}
.y2c_c01017{bottom:659.216000pt;}
.y2d_c01017{bottom:659.465333pt;}
.y2e_c01017{bottom:659.598667pt;}
.y2f_c01017{bottom:660.230667pt;}
.y30_c01017{bottom:660.361333pt;}
.y31_c01017{bottom:660.465333pt;}
.y32_c01017{bottom:660.760000pt;}
.y1d_c01017{bottom:678.001333pt;}
.y1e_c01017{bottom:678.444000pt;}
.y1f_c01017{bottom:678.866667pt;}
.y20_c01017{bottom:679.154667pt;}
.y21_c01017{bottom:679.641333pt;}
.y22_c01017{bottom:679.846667pt;}
.y23_c01017{bottom:680.324000pt;}
.y24_c01017{bottom:680.574667pt;}
.y25_c01017{bottom:680.689333pt;}
.y26_c01017{bottom:681.133333pt;}
.y11_c01017{bottom:698.401333pt;}
.y12_c01017{bottom:698.832000pt;}
.y13_c01017{bottom:699.010667pt;}
.y14_c01017{bottom:699.561333pt;}
.y15_c01017{bottom:699.670667pt;}
.y16_c01017{bottom:699.956000pt;}
.y17_c01017{bottom:700.352000pt;}
.y18_c01017{bottom:700.968000pt;}
.y19_c01017{bottom:701.148000pt;}
.y1a_c01017{bottom:701.233333pt;}
.y1b_c01017{bottom:701.622667pt;}
.y1c_c01017{bottom:701.969333pt;}
.y5_c01017{bottom:718.320000pt;}
.y6_c01017{bottom:718.656000pt;}
.y7_c01017{bottom:718.984000pt;}
.y8_c01017{bottom:719.137333pt;}
.y9_c01017{bottom:719.562667pt;}
.ya_c01017{bottom:719.756000pt;}
.yb_c01017{bottom:720.326667pt;}
.yc_c01017{bottom:720.521333pt;}
.yd_c01017{bottom:720.948000pt;}
.ye_c01017{bottom:721.068000pt;}
.yf_c01017{bottom:721.269333pt;}
.y10_c01017{bottom:721.340000pt;}
.y4_c01017{bottom:746.854667pt;}
.y2_c01017{bottom:757.437835pt;}
.y3_c01017{bottom:758.128587pt;}
.y1_c01017{bottom:794.645333pt;}
.h4_c01017{height:51.333333pt;}
.hf_c01017{height:55.066667pt;}
.hc_c01017{height:56.000000pt;}
.h5_c01017{height:56.933333pt;}
.h13_c01017{height:57.866667pt;}
.h8_c01017{height:58.800000pt;}
.hd_c01017{height:59.733333pt;}
.h11_c01017{height:60.666667pt;}
.he_c01017{height:61.600000pt;}
.h9_c01017{height:62.533333pt;}
.h7_c01017{height:63.466667pt;}
.ha_c01017{height:64.400000pt;}
.h14_c01017{height:64.402061pt;}
.h6_c01017{height:65.333333pt;}
.hb_c01017{height:66.266667pt;}
.h10_c01017{height:72.800000pt;}
.h12_c01017{height:78.400000pt;}
.h3_c01017{height:121.345223pt;}
.h2_c01017{height:205.353455pt;}
.h0_c01017{height:896.400000pt;}
.h1_c01017{height:896.666667pt;}
.w1_c01017{width:622.666667pt;}
.w0_c01017{width:622.800000pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:82.736000pt;}
.x92_c01017{left:124.320000pt;}
.x85_c01017{left:125.524000pt;}
.x34_c01017{left:126.636000pt;}
.x3e_c01017{left:128.265333pt;}
.x6a_c01017{left:129.364000pt;}
.x1b_c01017{left:131.102667pt;}
.x2_c01017{left:132.445211pt;}
.x93_c01017{left:140.880000pt;}
.x86_c01017{left:141.844000pt;}
.x61_c01017{left:142.804000pt;}
.x4b_c01017{left:145.376000pt;}
.x5_c01017{left:146.965333pt;}
.xa1_c01017{left:148.876000pt;}
.xb0_c01017{left:154.149333pt;}
.x96_c01017{left:158.640000pt;}
.x3f_c01017{left:159.684000pt;}
.x87_c01017{left:162.004000pt;}
.x23_c01017{left:164.706667pt;}
.x94_c01017{left:165.840000pt;}
.xb1_c01017{left:167.828000pt;}
.x2d_c01017{left:168.720000pt;}
.x82_c01017{left:172.804000pt;}
.x84_c01017{left:175.444000pt;}
.xa9_c01017{left:176.964000pt;}
.x40_c01017{left:178.912000pt;}
.x6b_c01017{left:180.484000pt;}
.x70_c01017{left:182.404000pt;}
.x78_c01017{left:183.604000pt;}
.x11_c01017{left:185.404000pt;}
.x24_c01017{left:186.526667pt;}
.x35_c01017{left:189.277333pt;}
.x9d_c01017{left:194.022667pt;}
.x6_c01017{left:194.934667pt;}
.x55_c01017{left:196.804000pt;}
.x62_c01017{left:197.764000pt;}
.x88_c01017{left:200.404000pt;}
.x41_c01017{left:201.710667pt;}
.x12_c01017{left:207.700000pt;}
.x3_c01017{left:209.218587pt;}
.x95_c01017{left:213.120000pt;}
.x42_c01017{left:214.197333pt;}
.x56_c01017{left:215.764000pt;}
.x2e_c01017{left:217.680000pt;}
.xaa_c01017{left:219.418667pt;}
.x50_c01017{left:222.004000pt;}
.x63_c01017{left:223.924000pt;}
.x83_c01017{left:225.844000pt;}
.x8f_c01017{left:229.204000pt;}
.x25_c01017{left:230.469333pt;}
.x2f_c01017{left:232.080000pt;}
.x99_c01017{left:233.040000pt;}
.x7_c01017{left:241.737333pt;}
.xb4_c01017{left:243.121333pt;}
.x36_c01017{left:245.405333pt;}
.x71_c01017{left:246.484000pt;}
.x57_c01017{left:248.404000pt;}
.x80_c01017{left:249.844000pt;}
.x9a_c01017{left:252.960000pt;}
.x1c_c01017{left:254.701333pt;}
.x26_c01017{left:259.514667pt;}
.x58_c01017{left:260.404000pt;}
.xa2_c01017{left:262.661333pt;}
.x8_c01017{left:263.608000pt;}
.x90_c01017{left:264.964000pt;}
.x6c_c01017{left:266.884000pt;}
.x89_c01017{left:270.244000pt;}
.x37_c01017{left:272.756000pt;}
.x79_c01017{left:275.284000pt;}
.x13_c01017{left:276.598667pt;}
.x72_c01017{left:278.884000pt;}
.x64_c01017{left:281.764000pt;}
.x7d_c01017{left:283.204000pt;}
.xab_c01017{left:286.137333pt;}
.x14_c01017{left:290.258667pt;}
.x43_c01017{left:291.681333pt;}
.x9e_c01017{left:294.325333pt;}
.x1d_c01017{left:295.766667pt;}
.x4c_c01017{left:297.005333pt;}
.x65_c01017{left:300.484000pt;}
.xac_c01017{left:301.534667pt;}
.x7a_c01017{left:302.884000pt;}
.xa3_c01017{left:306.322667pt;}
.x7e_c01017{left:307.924000pt;}
.x51_c01017{left:314.644000pt;}
.x38_c01017{left:315.724000pt;}
.xb2_c01017{left:316.885333pt;}
.x27_c01017{left:319.981333pt;}
.x4d_c01017{left:323.165333pt;}
.x9_c01017{left:324.324000pt;}
.x15_c01017{left:325.994667pt;}
.x59_c01017{left:334.564000pt;}
.xb5_c01017{left:335.521333pt;}
.x9f_c01017{left:336.540000pt;}
.x73_c01017{left:339.844000pt;}
.x91_c01017{left:342.724000pt;}
.xa4_c01017{left:344.021333pt;}
.x8a_c01017{left:345.364000pt;}
.x66_c01017{left:347.524000pt;}
.x39_c01017{left:350.984000pt;}
.xa_c01017{left:351.928000pt;}
.x44_c01017{left:355.048000pt;}
.xad_c01017{left:357.693333pt;}
.x9b_c01017{left:359.520000pt;}
.x28_c01017{left:361.486667pt;}
.x1e_c01017{left:365.360000pt;}
.x74_c01017{left:367.684000pt;}
.x8b_c01017{left:370.564000pt;}
.x5a_c01017{left:372.724000pt;}
.x16_c01017{left:375.464000pt;}
.x4e_c01017{left:379.326667pt;}
.x52_c01017{left:380.644000pt;}
.x67_c01017{left:382.324000pt;}
.x29_c01017{left:383.816000pt;}
.x3a_c01017{left:386.760000pt;}
.x45_c01017{left:387.874667pt;}
.x75_c01017{left:390.724000pt;}
.xae_c01017{left:392.241333pt;}
.x1f_c01017{left:394.645333pt;}
.x3b_c01017{left:399.238667pt;}
.x68_c01017{left:401.284000pt;}
.x5b_c01017{left:402.724000pt;}
.x7b_c01017{left:407.044000pt;}
.x6d_c01017{left:408.004000pt;}
.xb3_c01017{left:410.237333pt;}
.x30_c01017{left:411.360000pt;}
.x53_c01017{left:414.244000pt;}
.x3c_c01017{left:416.764000pt;}
.xa5_c01017{left:424.181333pt;}
.x5c_c01017{left:427.684000pt;}
.xb6_c01017{left:428.881333pt;}
.xb_c01017{left:433.525333pt;}
.x46_c01017{left:436.164000pt;}
.x4f_c01017{left:437.404000pt;}
.x6e_c01017{left:442.804000pt;}
.x97_c01017{left:444.000000pt;}
.xa0_c01017{left:446.744000pt;}
.x5d_c01017{left:448.324000pt;}
.x9c_c01017{left:450.720000pt;}
.x17_c01017{left:452.506667pt;}
.x47_c01017{left:454.408000pt;}
.x31_c01017{left:457.440000pt;}
.x76_c01017{left:458.644000pt;}
.xc_c01017{left:461.374667pt;}
.x20_c01017{left:462.801333pt;}
.x7c_c01017{left:463.924000pt;}
.x7f_c01017{left:466.564000pt;}
.x32_c01017{left:469.680000pt;}
.x8c_c01017{left:471.844000pt;}
.x18_c01017{left:475.021333pt;}
.x54_c01017{left:476.164000pt;}
.x48_c01017{left:478.910667pt;}
.xa6_c01017{left:481.496000pt;}
.x5e_c01017{left:483.124000pt;}
.x19_c01017{left:485.613333pt;}
.x6f_c01017{left:487.924000pt;}
.x2a_c01017{left:489.190667pt;}
.x69_c01017{left:494.404000pt;}
.x8d_c01017{left:496.564000pt;}
.x21_c01017{left:498.560000pt;}
.x49_c01017{left:499.786667pt;}
.xa7_c01017{left:506.486667pt;}
.x5f_c01017{left:509.764000pt;}
.x2b_c01017{left:511.028000pt;}
.x77_c01017{left:513.604000pt;}
.x22_c01017{left:514.882667pt;}
.x98_c01017{left:516.480000pt;}
.xd_c01017{left:522.266667pt;}
.xa8_c01017{left:525.930667pt;}
.x2c_c01017{left:528.313333pt;}
.x81_c01017{left:530.644000pt;}
.x33_c01017{left:532.320000pt;}
.x1a_c01017{left:534.296000pt;}
.x60_c01017{left:535.684000pt;}
.xb7_c01017{left:536.953333pt;}
.xaf_c01017{left:538.404000pt;}
.xe_c01017{left:539.364000pt;}
.x4a_c01017{left:542.962667pt;}
.x3d_c01017{left:545.729333pt;}
.xf_c01017{left:568.080000pt;}
.x8e_c01017{left:571.444000pt;}
.x10_c01017{left:578.180000pt;}
.x4_c01017{left:581.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_c01018 {
    display:none;
  }
  .loading-indicator_c01018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01018" -> "#page-container .classname_c01018")
 */
.pf_c01018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01018 {overflow:visible;}
  }
}
.c_c01018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01018:after { /* webkit #35443 */
  content: '';
}
.t_c01018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01018 { /* info for Javascript */
  display:none;
}
.l_c01018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.000000;font-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_c01018{transform:matrix(0.012133,0.000194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012133,0.000194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012133,0.000194,-0.003999,0.249968,0,0);}
.m4b_c01018{transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.012318,0.000197,-0.003999,0.249968,0,0);}
.m45_c01018{transform:matrix(0.016283,0.000261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016283,0.000261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016283,0.000261,-0.003999,0.249968,0,0);}
.m44_c01018{transform:matrix(0.021707,0.000347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.021707,0.000347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.021707,0.000347,-0.003999,0.249968,0,0);}
.m2_c01018{transform:matrix(0.066842,-0.000602,0.002250,0.249990,0,0);-ms-transform:matrix(0.066842,-0.000602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.066842,-0.000602,0.002250,0.249990,0,0);}
.m6_c01018{transform:matrix(0.144032,0.002305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.144032,0.002305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.144032,0.002305,-0.003999,0.249968,0,0);}
.m11_c01018{transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148236,0.002372,-0.003999,0.249968,0,0);}
.m58_c01018{transform:matrix(0.150801,0.002413,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150801,0.002413,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150801,0.002413,-0.003999,0.249968,0,0);}
.m5b_c01018{transform:matrix(0.154825,0.002477,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154825,0.002477,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154825,0.002477,-0.003999,0.249968,0,0);}
.m59_c01018{transform:matrix(0.156145,0.002498,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156145,0.002498,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156145,0.002498,-0.003999,0.249968,0,0);}
.m4d_c01018{transform:matrix(0.158105,0.002530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158105,0.002530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158105,0.002530,-0.003999,0.249968,0,0);}
.m55_c01018{transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161979,0.002592,-0.003999,0.249968,0,0);}
.md_c01018{transform:matrix(0.162444,0.002599,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162444,0.002599,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162444,0.002599,-0.003999,0.249968,0,0);}
.m13_c01018{transform:matrix(0.162604,0.002602,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162604,0.002602,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162604,0.002602,-0.003999,0.249968,0,0);}
.m36_c01018{transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);}
.m61_c01018{transform:matrix(0.163379,0.002614,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163379,0.002614,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163379,0.002614,-0.003999,0.249968,0,0);}
.mf_c01018{transform:matrix(0.164779,0.002636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164779,0.002636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164779,0.002636,-0.003999,0.249968,0,0);}
.m29_c01018{transform:matrix(0.165094,0.002642,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165094,0.002642,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165094,0.002642,-0.003999,0.249968,0,0);}
.m5f_c01018{transform:matrix(0.167694,0.002683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167694,0.002683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167694,0.002683,-0.003999,0.249968,0,0);}
.m6a_c01018{transform:matrix(0.168118,0.002690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168118,0.002690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168118,0.002690,-0.003999,0.249968,0,0);}
.m34_c01018{transform:matrix(0.168548,0.002697,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168548,0.002697,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168548,0.002697,-0.003999,0.249968,0,0);}
.m2c_c01018{transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169768,0.002716,-0.003999,0.249968,0,0);}
.m69_c01018{transform:matrix(0.169858,0.002718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169858,0.002718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169858,0.002718,-0.003999,0.249968,0,0);}
.m73_c01018{transform:matrix(0.169929,0.003229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169929,0.003229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169929,0.003229,-0.004749,0.249955,0,0);}
.m54_c01018{transform:matrix(0.171073,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171073,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171073,0.002737,-0.003999,0.249968,0,0);}
.m22_c01018{transform:matrix(0.172038,0.002753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172038,0.002753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172038,0.002753,-0.003999,0.249968,0,0);}
.me_c01018{transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);}
.m3b_c01018{transform:matrix(0.173958,0.002783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173958,0.002783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173958,0.002783,-0.003999,0.249968,0,0);}
.m1f_c01018{transform:matrix(0.178142,0.002850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178142,0.002850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178142,0.002850,-0.003999,0.249968,0,0);}
.m4f_c01018{transform:matrix(0.178867,0.002862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178867,0.002862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178867,0.002862,-0.003999,0.249968,0,0);}
.m14_c01018{transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179382,0.002870,-0.003999,0.249968,0,0);}
.m3a_c01018{transform:matrix(0.180402,0.002886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180402,0.002886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180402,0.002886,-0.003999,0.249968,0,0);}
.m20_c01018{transform:matrix(0.180492,0.002888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180492,0.002888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180492,0.002888,-0.003999,0.249968,0,0);}
.m68_c01018{transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);}
.m53_c01018{transform:matrix(0.182107,0.002914,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182107,0.002914,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182107,0.002914,-0.003999,0.249968,0,0);}
.m2b_c01018{transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182632,0.002922,-0.003999,0.249968,0,0);}
.m5d_c01018{transform:matrix(0.182792,0.002925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182792,0.002925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182792,0.002925,-0.003999,0.249968,0,0);}
.m84_c01018{transform:matrix(0.184221,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184221,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184221,0.001842,-0.002500,0.249988,0,0);}
.m7c_c01018{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);}
.m2d_c01018{transform:matrix(0.184716,0.002955,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184716,0.002955,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184716,0.002955,-0.003999,0.249968,0,0);}
.m5a_c01018{transform:matrix(0.186636,0.002986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186636,0.002986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186636,0.002986,-0.003999,0.249968,0,0);}
.m50_c01018{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);}
.m66_c01018{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);}
.m6b_c01018{transform:matrix(0.189196,0.003027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189196,0.003027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189196,0.003027,-0.003999,0.249968,0,0);}
.m56_c01018{transform:matrix(0.189466,0.003031,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189466,0.003031,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189466,0.003031,-0.003999,0.249968,0,0);}
.m51_c01018{transform:matrix(0.189861,0.003038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189861,0.003038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189861,0.003038,-0.003999,0.249968,0,0);}
.m15_c01018{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);}
.m32_c01018{transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190491,0.003048,-0.003999,0.249968,0,0);}
.m2e_c01018{transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191306,0.003061,-0.003999,0.249968,0,0);}
.m57_c01018{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);}
.m37_c01018{transform:matrix(0.192175,0.003075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192175,0.003075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192175,0.003075,-0.003999,0.249968,0,0);}
.m7b_c01018{transform:matrix(0.192635,0.003082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192635,0.003082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192635,0.003082,-0.003999,0.249968,0,0);}
.m12_c01018{transform:matrix(0.192770,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192770,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192770,0.003084,-0.003999,0.249968,0,0);}
.m64_c01018{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);}
.m1a_c01018{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);}
.m4e_c01018{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);}
.m10_c01018{transform:matrix(0.194490,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194490,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194490,0.003112,-0.003999,0.249968,0,0);}
.m21_c01018{transform:matrix(0.194605,0.003114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194605,0.003114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194605,0.003114,-0.003999,0.249968,0,0);}
.m3e_c01018{transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195245,0.003124,-0.003999,0.249968,0,0);}
.m41_c01018{transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195320,0.003125,-0.003999,0.249968,0,0);}
.m30_c01018{transform:matrix(0.195995,0.003136,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195995,0.003136,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195995,0.003136,-0.003999,0.249968,0,0);}
.m4c_c01018{transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);}
.m81_c01018{transform:matrix(0.196470,0.003144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196470,0.003144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196470,0.003144,-0.003999,0.249968,0,0);}
.m8_c01018{transform:matrix(0.198865,0.003182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198865,0.003182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198865,0.003182,-0.003999,0.249968,0,0);}
.m26_c01018{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);}
.m39_c01018{transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);}
.m1b_c01018{transform:matrix(0.199140,0.003186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199140,0.003186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199140,0.003186,-0.003999,0.249968,0,0);}
.m5c_c01018{transform:matrix(0.199554,0.003193,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199554,0.003193,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199554,0.003193,-0.003999,0.249968,0,0);}
.m18_c01018{transform:matrix(0.199864,0.003198,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199864,0.003198,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199864,0.003198,-0.003999,0.249968,0,0);}
.m70_c01018{transform:matrix(0.200564,0.003811,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200564,0.003811,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200564,0.003811,-0.004749,0.249955,0,0);}
.m17_c01018{transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201124,0.003218,-0.003999,0.249968,0,0);}
.m6f_c01018{transform:matrix(0.203423,0.003865,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203423,0.003865,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203423,0.003865,-0.004749,0.249955,0,0);}
.m3c_c01018{transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);}
.m83_c01018{transform:matrix(0.203900,0.002039,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203900,0.002039,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203900,0.002039,-0.002500,0.249988,0,0);}
.m31_c01018{transform:matrix(0.204199,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204199,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204199,0.003267,-0.003999,0.249968,0,0);}
.m48_c01018{transform:matrix(0.204479,0.003272,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204479,0.003272,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204479,0.003272,-0.003999,0.249968,0,0);}
.m52_c01018{transform:matrix(0.206004,0.003296,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206004,0.003296,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206004,0.003296,-0.003999,0.249968,0,0);}
.m49_c01018{transform:matrix(0.206079,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206079,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206079,0.003297,-0.003999,0.249968,0,0);}
.m71_c01018{transform:matrix(0.207713,0.003947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207713,0.003947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207713,0.003947,-0.004749,0.249955,0,0);}
.m19_c01018{transform:matrix(0.208548,0.003337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208548,0.003337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208548,0.003337,-0.003999,0.249968,0,0);}
.m1e_c01018{transform:matrix(0.209058,0.003345,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209058,0.003345,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209058,0.003345,-0.003999,0.249968,0,0);}
.m33_c01018{transform:matrix(0.210428,0.003367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210428,0.003367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210428,0.003367,-0.003999,0.249968,0,0);}
.m7d_c01018{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);}
.m16_c01018{transform:matrix(0.211478,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211478,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211478,0.003384,-0.003999,0.249968,0,0);}
.m60_c01018{transform:matrix(0.211543,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211543,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211543,0.003385,-0.003999,0.249968,0,0);}
.m9_c01018{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);}
.m7a_c01018{transform:matrix(0.212918,0.003407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212918,0.003407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212918,0.003407,-0.003999,0.249968,0,0);}
.m76_c01018{transform:matrix(0.213756,0.004061,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213756,0.004061,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213756,0.004061,-0.004749,0.249955,0,0);}
.m1d_c01018{transform:matrix(0.214488,0.003432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214488,0.003432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214488,0.003432,-0.003999,0.249968,0,0);}
.m23_c01018{transform:matrix(0.214763,0.003436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214763,0.003436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214763,0.003436,-0.003999,0.249968,0,0);}
.m46_c01018{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);}
.m74_c01018{transform:matrix(0.215751,0.004099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215751,0.004099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215751,0.004099,-0.004749,0.249955,0,0);}
.m78_c01018{transform:matrix(0.216111,0.004106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216111,0.004106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216111,0.004106,-0.004749,0.249955,0,0);}
.m40_c01018{transform:matrix(0.218557,0.003497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218557,0.003497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218557,0.003497,-0.003999,0.249968,0,0);}
.m7f_c01018{transform:matrix(0.219047,0.003505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219047,0.003505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219047,0.003505,-0.003999,0.249968,0,0);}
.m35_c01018{transform:matrix(0.220242,0.003524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220242,0.003524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220242,0.003524,-0.003999,0.249968,0,0);}
.m72_c01018{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);}
.m42_c01018{transform:matrix(0.222721,0.003564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222721,0.003564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222721,0.003564,-0.003999,0.249968,0,0);}
.m27_c01018{transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225921,0.003615,-0.003999,0.249968,0,0);}
.m28_c01018{transform:matrix(0.226556,0.003625,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226556,0.003625,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226556,0.003625,-0.003999,0.249968,0,0);}
.m80_c01018{transform:matrix(0.227456,0.003639,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227456,0.003639,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227456,0.003639,-0.003999,0.249968,0,0);}
.mc_c01018{transform:matrix(0.234855,0.003758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234855,0.003758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234855,0.003758,-0.003999,0.249968,0,0);}
.m24_c01018{transform:matrix(0.234970,0.003760,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234970,0.003760,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234970,0.003760,-0.003999,0.249968,0,0);}
.m3f_c01018{transform:matrix(0.235775,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235775,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235775,0.003772,-0.003999,0.249968,0,0);}
.m67_c01018{transform:matrix(0.237275,0.003796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237275,0.003796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237275,0.003796,-0.003999,0.249968,0,0);}
.m2a_c01018{transform:matrix(0.237295,0.003797,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237295,0.003797,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237295,0.003797,-0.003999,0.249968,0,0);}
.m62_c01018{transform:matrix(0.240099,0.003842,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240099,0.003842,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240099,0.003842,-0.003999,0.249968,0,0);}
.m6e_c01018{transform:matrix(0.247135,0.004696,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247135,0.004696,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247135,0.004696,-0.004749,0.249955,0,0);}
.m7e_c01018{transform:matrix(0.256562,0.004105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256562,0.004105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256562,0.004105,-0.003999,0.249968,0,0);}
.m38_c01018{transform:matrix(0.259252,0.004148,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259252,0.004148,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259252,0.004148,-0.003999,0.249968,0,0);}
.m77_c01018{transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);}
.m25_c01018{transform:matrix(0.262211,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262211,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262211,0.004195,-0.003999,0.249968,0,0);}
.m6d_c01018{transform:matrix(0.262553,0.004988,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262553,0.004988,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262553,0.004988,-0.004749,0.249955,0,0);}
.m1c_c01018{transform:matrix(0.264771,0.004236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264771,0.004236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264771,0.004236,-0.003999,0.249968,0,0);}
.m2f_c01018{transform:matrix(0.272135,0.004354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272135,0.004354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272135,0.004354,-0.003999,0.249968,0,0);}
.m6c_c01018{transform:matrix(0.273031,0.005188,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273031,0.005188,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273031,0.005188,-0.004749,0.249955,0,0);}
.m63_c01018{transform:matrix(0.275895,0.004414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275895,0.004414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275895,0.004414,-0.003999,0.249968,0,0);}
.m82_c01018{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m65_c01018{transform:matrix(0.289893,0.004638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289893,0.004638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289893,0.004638,-0.003999,0.249968,0,0);}
.m79_c01018{transform:matrix(0.290798,0.004653,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290798,0.004653,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290798,0.004653,-0.003999,0.249968,0,0);}
.m85_c01018{transform:matrix(0.293885,0.002939,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293885,0.002939,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293885,0.002939,-0.002500,0.249988,0,0);}
.m3d_c01018{transform:matrix(0.300227,0.004804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300227,0.004804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300227,0.004804,-0.003999,0.249968,0,0);}
.m47_c01018{transform:matrix(0.302556,0.004841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.302556,0.004841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.302556,0.004841,-0.003999,0.249968,0,0);}
.m89_c01018{transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309410,0.000000,0.000000,0.250000,0,0);}
.m4a_c01018{transform:matrix(0.326978,0.005232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.326978,0.005232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.326978,0.005232,-0.003999,0.249968,0,0);}
.mb_c01018{transform:matrix(0.350025,0.005600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.350025,0.005600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.350025,0.005600,-0.003999,0.249968,0,0);}
.m75_c01018{transform:matrix(0.352801,0.006703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.352801,0.006703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.352801,0.006703,-0.004749,0.249955,0,0);}
.ma_c01018{transform:matrix(0.359914,0.005759,-0.003999,0.249968,0,0);-ms-transform:matrix(0.359914,0.005759,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.359914,0.005759,-0.003999,0.249968,0,0);}
.m5e_c01018{transform:matrix(0.362189,0.005795,-0.003999,0.249968,0,0);-ms-transform:matrix(0.362189,0.005795,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.362189,0.005795,-0.003999,0.249968,0,0);}
.m86_c01018{transform:matrix(0.366317,0.003663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.366317,0.003663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.366317,0.003663,-0.002500,0.249988,0,0);}
.m88_c01018{transform:matrix(0.373071,0.003731,-0.002500,0.249988,0,0);-ms-transform:matrix(0.373071,0.003731,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.373071,0.003731,-0.002500,0.249988,0,0);}
.m4_c01018{transform:matrix(0.427392,0.014118,-0.008254,0.249864,0,0);-ms-transform:matrix(0.427392,0.014118,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.427392,0.014118,-0.008254,0.249864,0,0);}
.m1_c01018{transform:matrix(0.436167,-0.003926,0.002250,0.249990,0,0);-ms-transform:matrix(0.436167,-0.003926,0.002250,0.249990,0,0);-webkit-transform:matrix(0.436167,-0.003926,0.002250,0.249990,0,0);}
.m3_c01018{transform:matrix(0.442699,0.014624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.442699,0.014624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.442699,0.014624,-0.008254,0.249864,0,0);}
.m5_c01018{transform:matrix(0.457750,0.015121,-0.008254,0.249864,0,0);-ms-transform:matrix(0.457750,0.015121,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.457750,0.015121,-0.008254,0.249864,0,0);}
.m7_c01018{transform:matrix(0.466515,0.007464,-0.003999,0.249968,0,0);-ms-transform:matrix(0.466515,0.007464,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.466515,0.007464,-0.003999,0.249968,0,0);}
.m0_c01018{transform:matrix(0.664008,-0.005976,0.002250,0.249990,0,0);-ms-transform:matrix(0.664008,-0.005976,0.002250,0.249990,0,0);-webkit-transform:matrix(0.664008,-0.005976,0.002250,0.249990,0,0);}
.m87_c01018{transform:matrix(0.909540,0.009095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.909540,0.009095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.909540,0.009095,-0.002500,0.249988,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls0_c01018{letter-spacing:0.000000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:0.000000px;}
.fc0_c01018{color:transparent;}
.fsb_c01018{font-size:29.400000px;}
.fs9_c01018{font-size:30.450000px;}
.fsa_c01018{font-size:61.953097px;}
.fs3_c01018{font-size:65.108332px;}
.fs8_c01018{font-size:66.158467px;}
.fs6_c01018{font-size:68.258735px;}
.fs7_c01018{font-size:68.262318px;}
.fs4_c01018{font-size:69.308870px;}
.fs5_c01018{font-size:70.359004px;}
.fs2_c01018{font-size:71.409139px;}
.fs1_c01018{font-size:93.407471px;}
.fs0_c01018{font-size:234.159483px;}
.y0_c01018{bottom:0.000000px;}
.y8b_c01018{bottom:143.412450px;}
.y8a_c01018{bottom:144.401115px;}
.y89_c01018{bottom:144.959685px;}
.y88_c01018{bottom:145.445145px;}
.y87_c01018{bottom:146.110065px;}
.y86_c01018{bottom:146.341500px;}
.y85_c01018{bottom:576.450000px;}
.y84_c01018{bottom:596.961600px;}
.y83_c01018{bottom:597.315792px;}
.y82_c01018{bottom:597.907488px;}
.y81_c01018{bottom:598.541688px;}
.y80_c01018{bottom:598.829928px;}
.y7f_c01018{bottom:599.839128px;}
.y7e_c01018{bottom:600.163512px;}
.y7d_c01018{bottom:600.764808px;}
.y7c_c01018{bottom:601.563000px;}
.y7b_c01018{bottom:615.409509px;}
.y7a_c01018{bottom:616.047567px;}
.y79_c01018{bottom:617.132334px;}
.y78_c01018{bottom:617.599363px;}
.y77_c01018{bottom:618.758629px;}
.y76_c01018{bottom:619.049614px;}
.y75_c01018{bottom:620.329093px;}
.y74_c01018{bottom:621.160695px;}
.y73_c01018{bottom:621.739786px;}
.y72_c01018{bottom:622.615990px;}
.y71_c01018{bottom:623.119015px;}
.y70_c01018{bottom:623.561079px;}
.y6f_c01018{bottom:623.974500px;}
.y6e_c01018{bottom:639.507948px;}
.y6d_c01018{bottom:640.167696px;}
.y6c_c01018{bottom:640.581564px;}
.y6b_c01018{bottom:641.841552px;}
.y6a_c01018{bottom:642.399924px;}
.y69_c01018{bottom:643.100220px;}
.y68_c01018{bottom:643.567296px;}
.y67_c01018{bottom:644.475804px;}
.y66_c01018{bottom:644.911308px;}
.y65_c01018{bottom:645.326280px;}
.y64_c01018{bottom:646.166760px;}
.y63_c01018{bottom:647.206908px;}
.y62_c01018{bottom:661.811796px;}
.y61_c01018{bottom:662.100456px;}
.y60_c01018{bottom:663.099216px;}
.y5f_c01018{bottom:663.712668px;}
.y5e_c01018{bottom:664.222260px;}
.y5d_c01018{bottom:664.916112px;}
.y5c_c01018{bottom:665.601708px;}
.y5b_c01018{bottom:666.510528px;}
.y5a_c01018{bottom:667.000704px;}
.y59_c01018{bottom:667.447740px;}
.y58_c01018{bottom:668.248920px;}
.y57_c01018{bottom:668.632464px;}
.y56_c01018{bottom:669.218364px;}
.y55_c01018{bottom:669.879912px;}
.y54_c01018{bottom:685.108656px;}
.y53_c01018{bottom:685.505832px;}
.y52_c01018{bottom:686.301432px;}
.y51_c01018{bottom:686.871264px;}
.y50_c01018{bottom:687.334008px;}
.y4f_c01018{bottom:687.829632px;}
.y4e_c01018{bottom:688.427088px;}
.y4d_c01018{bottom:689.524584px;}
.y4c_c01018{bottom:689.684328px;}
.y4b_c01018{bottom:689.803104px;}
.y4a_c01018{bottom:690.306480px;}
.y49_c01018{bottom:691.088304px;}
.y48_c01018{bottom:691.667448px;}
.y47_c01018{bottom:692.013000px;}
.y46_c01018{bottom:709.603068px;}
.y45_c01018{bottom:711.397092px;}
.y44_c01018{bottom:713.008200px;}
.y43_c01018{bottom:715.213512px;}
.y42_c01018{bottom:730.820232px;}
.y41_c01018{bottom:731.636856px;}
.y40_c01018{bottom:731.990952px;}
.y3f_c01018{bottom:732.647544px;}
.y3e_c01018{bottom:733.070436px;}
.y3d_c01018{bottom:733.745412px;}
.y3c_c01018{bottom:734.128680px;}
.y3b_c01018{bottom:735.163644px;}
.y3a_c01018{bottom:736.341852px;}
.y39_c01018{bottom:736.897428px;}
.y38_c01018{bottom:737.909076px;}
.y37_c01018{bottom:738.437520px;}
.y36_c01018{bottom:753.393924px;}
.y35_c01018{bottom:753.642180px;}
.y34_c01018{bottom:754.514616px;}
.y33_c01018{bottom:754.922592px;}
.y32_c01018{bottom:755.639052px;}
.y31_c01018{bottom:756.201372px;}
.y30_c01018{bottom:757.122060px;}
.y2f_c01018{bottom:757.529268px;}
.y2e_c01018{bottom:758.876028px;}
.y2d_c01018{bottom:759.302796px;}
.y2c_c01018{bottom:761.020104px;}
.y2b_c01018{bottom:761.663256px;}
.y2a_c01018{bottom:777.485052px;}
.y29_c01018{bottom:777.739668px;}
.y28_c01018{bottom:778.677792px;}
.y27_c01018{bottom:778.946244px;}
.y26_c01018{bottom:779.423856px;}
.y25_c01018{bottom:779.960124px;}
.y24_c01018{bottom:780.905988px;}
.y23_c01018{bottom:781.975596px;}
.y22_c01018{bottom:782.516976px;}
.y21_c01018{bottom:783.303252px;}
.y20_c01018{bottom:783.570828px;}
.y1f_c01018{bottom:783.805812px;}
.y8c_c01018{bottom:791.100000px;}
.y1e_c01018{bottom:799.191264px;}
.y1d_c01018{bottom:799.667232px;}
.y1c_c01018{bottom:800.769456px;}
.y1b_c01018{bottom:801.157104px;}
.y1a_c01018{bottom:802.143456px;}
.y19_c01018{bottom:802.816872px;}
.y18_c01018{bottom:803.435112px;}
.y17_c01018{bottom:804.290352px;}
.y16_c01018{bottom:804.972192px;}
.y15_c01018{bottom:805.339008px;}
.y14_c01018{bottom:805.949496px;}
.y13_c01018{bottom:821.438148px;}
.y12_c01018{bottom:821.795412px;}
.y11_c01018{bottom:822.529788px;}
.y10_c01018{bottom:823.205004px;}
.yf_c01018{bottom:823.818300px;}
.ye_c01018{bottom:824.077116px;}
.yd_c01018{bottom:824.820132px;}
.yc_c01018{bottom:825.107772px;}
.yb_c01018{bottom:825.989412px;}
.ya_c01018{bottom:826.619700px;}
.y9_c01018{bottom:826.921164px;}
.y8_c01018{bottom:828.041076px;}
.y7_c01018{bottom:828.361500px;}
.y6_c01018{bottom:861.976257px;}
.y5_c01018{bottom:869.958033px;}
.y4_c01018{bottom:872.664000px;}
.y1_c01018{bottom:915.033000px;}
.y2_c01018{bottom:917.762592px;}
.y3_c01018{bottom:920.076033px;}
.hd_c01018{height:29.400000px;}
.hb_c01018{height:30.450000px;}
.hc_c01018{height:61.953097px;}
.h5_c01018{height:65.108332px;}
.ha_c01018{height:66.158467px;}
.h8_c01018{height:68.258735px;}
.h9_c01018{height:68.262318px;}
.h6_c01018{height:69.308870px;}
.h7_c01018{height:70.359004px;}
.h4_c01018{height:71.409139px;}
.h3_c01018{height:93.407471px;}
.h2_c01018{height:234.159483px;}
.h1_c01018{height:1005.000000px;}
.h0_c01018{height:1005.150000px;}
.w0_c01018{width:715.200000px;}
.w1_c01018{width:715.500000px;}
.x0_c01018{left:0.000000px;}
.x1_c01018{left:61.047000px;}
.x63_c01018{left:98.857500px;}
.x27_c01018{left:106.079400px;}
.x3a_c01018{left:108.571032px;}
.x48_c01018{left:109.714200px;}
.x1d_c01018{left:111.056364px;}
.x7_c01018{left:112.726500px;}
.x1e_c01018{left:127.805892px;}
.x68_c01018{left:130.285500px;}
.x8_c01018{left:132.753000px;}
.x28_c01018{left:141.775248px;}
.x1f_c01018{left:146.967516px;}
.x64_c01018{left:148.744500px;}
.x14_c01018{left:149.992272px;}
.x69_c01018{left:153.429000px;}
.x58_c01018{left:155.209500px;}
.x50_c01018{left:167.171592px;}
.x15_c01018{left:172.918272px;}
.x49_c01018{left:179.052492px;}
.x59_c01018{left:181.684500px;}
.x3d_c01018{left:186.111000px;}
.x32_c01018{left:201.290616px;}
.x9_c01018{left:202.747500px;}
.x4_c01018{left:206.908500px;}
.x51_c01018{left:213.887604px;}
.x16_c01018{left:215.533272px;}
.x6a_c01018{left:219.921000px;}
.xa_c01018{left:221.589000px;}
.x5a_c01018{left:227.800500px;}
.x33_c01018{left:233.951088px;}
.x3e_c01018{left:234.975000px;}
.x29_c01018{left:237.197700px;}
.x3b_c01018{left:238.338468px;}
.x20_c01018{left:241.761540px;}
.x4a_c01018{left:244.939404px;}
.x5b_c01018{left:258.279000px;}
.xb_c01018{left:260.982000px;}
.x3f_c01018{left:266.436000px;}
.x17_c01018{left:268.985772px;}
.x40_c01018{left:273.859500px;}
.x41_c01018{left:283.843500px;}
.x65_c01018{left:287.689500px;}
.x5_c01018{left:288.825501px;}
.x4b_c01018{left:297.044748px;}
.x5c_c01018{left:302.047500px;}
.x34_c01018{left:303.275484px;}
.x18_c01018{left:307.625772px;}
.x52_c01018{left:311.633484px;}
.xc_c01018{left:316.084500px;}
.x21_c01018{left:318.176988px;}
.x6b_c01018{left:324.324000px;}
.x66_c01018{left:327.327000px;}
.xd_c01018{left:334.062000px;}
.x2a_c01018{left:335.665032px;}
.x53_c01018{left:337.543644px;}
.x4c_c01018{left:347.563140px;}
.x19_c01018{left:349.714272px;}
.x42_c01018{left:352.437000px;}
.x2b_c01018{left:358.302312px;}
.x2_c01018{left:364.335000px;}
.x5d_c01018{left:369.388500px;}
.x54_c01018{left:376.435896px;}
.x67_c01018{left:378.540000px;}
.xe_c01018{left:380.500500px;}
.x5e_c01018{left:384.703500px;}
.x22_c01018{left:385.733148px;}
.x43_c01018{left:389.778000px;}
.xf_c01018{left:396.676500px;}
.x55_c01018{left:407.489412px;}
.x2c_c01018{left:409.468680px;}
.x1a_c01018{left:411.361272px;}
.x44_c01018{left:420.754500px;}
.x23_c01018{left:424.032372px;}
.x35_c01018{left:426.411516px;}
.x10_c01018{left:435.007500px;}
.x3c_c01018{left:438.687276px;}
.x2d_c01018{left:440.675172px;}
.x5f_c01018{left:445.717500px;}
.x45_c01018{left:449.676000px;}
.x36_c01018{left:451.248108px;}
.x4d_c01018{left:452.499780px;}
.x24_c01018{left:458.102952px;}
.x60_c01018{left:470.298000px;}
.x11_c01018{left:477.208500px;}
.x2e_c01018{left:480.483900px;}
.x46_c01018{left:485.290500px;}
.x4e_c01018{left:486.620700px;}
.x37_c01018{left:489.846984px;}
.x56_c01018{left:500.477436px;}
.x2f_c01018{left:503.169180px;}
.x1b_c01018{left:504.478272px;}
.x38_c01018{left:510.665148px;}
.x12_c01018{left:523.107000px;}
.x61_c01018{left:527.391000px;}
.x6_c01018{left:530.455629px;}
.x1c_c01018{left:534.226272px;}
.x57_c01018{left:537.116760px;}
.x4f_c01018{left:542.103924px;}
.x25_c01018{left:544.204188px;}
.x13_c01018{left:545.436000px;}
.x30_c01018{left:551.601120px;}
.x39_c01018{left:558.703380px;}
.x47_c01018{left:559.839000px;}
.x62_c01018{left:560.973000px;}
.x26_c01018{left:562.368264px;}
.x31_c01018{left:565.429188px;}
.x3_c01018{left:621.384000px;}
.x6c_c01018{left:655.020000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls0_c01018{letter-spacing:0.000000pt;}
.ws0_c01018{word-spacing:0.000000pt;}
.fsb_c01018{font-size:26.133333pt;}
.fs9_c01018{font-size:27.066667pt;}
.fsa_c01018{font-size:55.069420pt;}
.fs3_c01018{font-size:57.874073pt;}
.fs8_c01018{font-size:58.807526pt;}
.fs6_c01018{font-size:60.674432pt;}
.fs7_c01018{font-size:60.677616pt;}
.fs4_c01018{font-size:61.607884pt;}
.fs5_c01018{font-size:62.541337pt;}
.fs2_c01018{font-size:63.474790pt;}
.fs1_c01018{font-size:83.028863pt;}
.fs0_c01018{font-size:208.141763pt;}
.y0_c01018{bottom:0.000000pt;}
.y8b_c01018{bottom:127.477733pt;}
.y8a_c01018{bottom:128.356547pt;}
.y89_c01018{bottom:128.853053pt;}
.y88_c01018{bottom:129.284573pt;}
.y87_c01018{bottom:129.875613pt;}
.y86_c01018{bottom:130.081333pt;}
.y85_c01018{bottom:512.400000pt;}
.y84_c01018{bottom:530.632533pt;}
.y83_c01018{bottom:530.947371pt;}
.y82_c01018{bottom:531.473323pt;}
.y81_c01018{bottom:532.037056pt;}
.y80_c01018{bottom:532.293269pt;}
.y7f_c01018{bottom:533.190336pt;}
.y7e_c01018{bottom:533.478677pt;}
.y7d_c01018{bottom:534.013163pt;}
.y7c_c01018{bottom:534.722667pt;}
.y7b_c01018{bottom:547.030675pt;}
.y7a_c01018{bottom:547.597837pt;}
.y79_c01018{bottom:548.562075pt;}
.y78_c01018{bottom:548.977212pt;}
.y77_c01018{bottom:550.007671pt;}
.y76_c01018{bottom:550.266324pt;}
.y75_c01018{bottom:551.403639pt;}
.y74_c01018{bottom:552.142840pt;}
.y73_c01018{bottom:552.657588pt;}
.y72_c01018{bottom:553.436436pt;}
.y71_c01018{bottom:553.883569pt;}
.y70_c01018{bottom:554.276515pt;}
.y6f_c01018{bottom:554.644000pt;}
.y6e_c01018{bottom:568.451509pt;}
.y6d_c01018{bottom:569.037952pt;}
.y6c_c01018{bottom:569.405835pt;}
.y6b_c01018{bottom:570.525824pt;}
.y6a_c01018{bottom:571.022155pt;}
.y69_c01018{bottom:571.644640pt;}
.y68_c01018{bottom:572.059819pt;}
.y67_c01018{bottom:572.867381pt;}
.y66_c01018{bottom:573.254496pt;}
.y65_c01018{bottom:573.623360pt;}
.y64_c01018{bottom:574.370453pt;}
.y63_c01018{bottom:575.295029pt;}
.y62_c01018{bottom:588.277152pt;}
.y61_c01018{bottom:588.533739pt;}
.y60_c01018{bottom:589.421525pt;}
.y5f_c01018{bottom:589.966816pt;}
.y5e_c01018{bottom:590.419787pt;}
.y5d_c01018{bottom:591.036544pt;}
.y5c_c01018{bottom:591.645963pt;}
.y5b_c01018{bottom:592.453803pt;}
.y5a_c01018{bottom:592.889515pt;}
.y59_c01018{bottom:593.286880pt;}
.y58_c01018{bottom:593.999040pt;}
.y57_c01018{bottom:594.339968pt;}
.y56_c01018{bottom:594.860768pt;}
.y55_c01018{bottom:595.448811pt;}
.y54_c01018{bottom:608.985472pt;}
.y53_c01018{bottom:609.338517pt;}
.y52_c01018{bottom:610.045717pt;}
.y51_c01018{bottom:610.552235pt;}
.y50_c01018{bottom:610.963563pt;}
.y4f_c01018{bottom:611.404117pt;}
.y4e_c01018{bottom:611.935189pt;}
.y4d_c01018{bottom:612.910741pt;}
.y4c_c01018{bottom:613.052736pt;}
.y4b_c01018{bottom:613.158315pt;}
.y4a_c01018{bottom:613.605760pt;}
.y49_c01018{bottom:614.300715pt;}
.y48_c01018{bottom:614.815509pt;}
.y47_c01018{bottom:615.122667pt;}
.y46_c01018{bottom:630.758283pt;}
.y45_c01018{bottom:632.352971pt;}
.y44_c01018{bottom:633.785067pt;}
.y43_c01018{bottom:635.745344pt;}
.y42_c01018{bottom:649.617984pt;}
.y41_c01018{bottom:650.343872pt;}
.y40_c01018{bottom:650.658624pt;}
.y3f_c01018{bottom:651.242261pt;}
.y3e_c01018{bottom:651.618165pt;}
.y3d_c01018{bottom:652.218144pt;}
.y3c_c01018{bottom:652.558827pt;}
.y3b_c01018{bottom:653.478795pt;}
.y3a_c01018{bottom:654.526091pt;}
.y39_c01018{bottom:655.019936pt;}
.y38_c01018{bottom:655.919179pt;}
.y37_c01018{bottom:656.388907pt;}
.y36_c01018{bottom:669.683488pt;}
.y35_c01018{bottom:669.904160pt;}
.y34_c01018{bottom:670.679659pt;}
.y33_c01018{bottom:671.042304pt;}
.y32_c01018{bottom:671.679157pt;}
.y31_c01018{bottom:672.178997pt;}
.y30_c01018{bottom:672.997387pt;}
.y2f_c01018{bottom:673.359349pt;}
.y2e_c01018{bottom:674.556469pt;}
.y2d_c01018{bottom:674.935819pt;}
.y2c_c01018{bottom:676.462315pt;}
.y2b_c01018{bottom:677.034005pt;}
.y2a_c01018{bottom:691.097824pt;}
.y29_c01018{bottom:691.324149pt;}
.y28_c01018{bottom:692.158037pt;}
.y27_c01018{bottom:692.396661pt;}
.y26_c01018{bottom:692.821205pt;}
.y25_c01018{bottom:693.297888pt;}
.y24_c01018{bottom:694.138656pt;}
.y23_c01018{bottom:695.089419pt;}
.y22_c01018{bottom:695.570645pt;}
.y21_c01018{bottom:696.269557pt;}
.y20_c01018{bottom:696.507403pt;}
.y1f_c01018{bottom:696.716277pt;}
.y8c_c01018{bottom:703.200000pt;}
.y1e_c01018{bottom:710.392235pt;}
.y1d_c01018{bottom:710.815317pt;}
.y1c_c01018{bottom:711.795072pt;}
.y1b_c01018{bottom:712.139648pt;}
.y1a_c01018{bottom:713.016405pt;}
.y19_c01018{bottom:713.614997pt;}
.y18_c01018{bottom:714.164544pt;}
.y17_c01018{bottom:714.924757pt;}
.y16_c01018{bottom:715.530837pt;}
.y15_c01018{bottom:715.856896pt;}
.y14_c01018{bottom:716.399552pt;}
.y13_c01018{bottom:730.167243pt;}
.y12_c01018{bottom:730.484811pt;}
.y11_c01018{bottom:731.137589pt;}
.y10_c01018{bottom:731.737781pt;}
.yf_c01018{bottom:732.282933pt;}
.ye_c01018{bottom:732.512992pt;}
.yd_c01018{bottom:733.173451pt;}
.yc_c01018{bottom:733.429131pt;}
.yb_c01018{bottom:734.212811pt;}
.ya_c01018{bottom:734.773067pt;}
.y9_c01018{bottom:735.041035pt;}
.y8_c01018{bottom:736.036512pt;}
.y7_c01018{bottom:736.321333pt;}
.y6_c01018{bottom:766.201117pt;}
.y5_c01018{bottom:773.296029pt;}
.y4_c01018{bottom:775.701333pt;}
.y1_c01018{bottom:813.362667pt;}
.y2_c01018{bottom:815.788971pt;}
.y3_c01018{bottom:817.845363pt;}
.hd_c01018{height:26.133333pt;}
.hb_c01018{height:27.066667pt;}
.hc_c01018{height:55.069420pt;}
.h5_c01018{height:57.874073pt;}
.ha_c01018{height:58.807526pt;}
.h8_c01018{height:60.674432pt;}
.h9_c01018{height:60.677616pt;}
.h6_c01018{height:61.607884pt;}
.h7_c01018{height:62.541337pt;}
.h4_c01018{height:63.474790pt;}
.h3_c01018{height:83.028863pt;}
.h2_c01018{height:208.141763pt;}
.h1_c01018{height:893.333333pt;}
.h0_c01018{height:893.466667pt;}
.w0_c01018{width:635.733333pt;}
.w1_c01018{width:636.000000pt;}
.x0_c01018{left:0.000000pt;}
.x1_c01018{left:54.264000pt;}
.x63_c01018{left:87.873333pt;}
.x27_c01018{left:94.292800pt;}
.x3a_c01018{left:96.507584pt;}
.x48_c01018{left:97.523733pt;}
.x1d_c01018{left:98.716768pt;}
.x7_c01018{left:100.201333pt;}
.x1e_c01018{left:113.605237pt;}
.x68_c01018{left:115.809333pt;}
.x8_c01018{left:118.002667pt;}
.x28_c01018{left:126.022443pt;}
.x1f_c01018{left:130.637792pt;}
.x64_c01018{left:132.217333pt;}
.x14_c01018{left:133.326464pt;}
.x69_c01018{left:136.381333pt;}
.x58_c01018{left:137.964000pt;}
.x50_c01018{left:148.596971pt;}
.x15_c01018{left:153.705131pt;}
.x49_c01018{left:159.157771pt;}
.x59_c01018{left:161.497333pt;}
.x3d_c01018{left:165.432000pt;}
.x32_c01018{left:178.924992pt;}
.x9_c01018{left:180.220000pt;}
.x4_c01018{left:183.918667pt;}
.x51_c01018{left:190.122315pt;}
.x16_c01018{left:191.585131pt;}
.x6a_c01018{left:195.485333pt;}
.xa_c01018{left:196.968000pt;}
.x5a_c01018{left:202.489333pt;}
.x33_c01018{left:207.956523pt;}
.x3e_c01018{left:208.866667pt;}
.x29_c01018{left:210.842400pt;}
.x3b_c01018{left:211.856416pt;}
.x20_c01018{left:214.899147pt;}
.x4a_c01018{left:217.723915pt;}
.x5b_c01018{left:229.581333pt;}
.xb_c01018{left:231.984000pt;}
.x3f_c01018{left:236.832000pt;}
.x17_c01018{left:239.098464pt;}
.x40_c01018{left:243.430667pt;}
.x41_c01018{left:252.305333pt;}
.x65_c01018{left:255.724000pt;}
.x5_c01018{left:256.733779pt;}
.x4b_c01018{left:264.039776pt;}
.x5c_c01018{left:268.486667pt;}
.x34_c01018{left:269.578208pt;}
.x18_c01018{left:273.445131pt;}
.x52_c01018{left:277.007541pt;}
.xc_c01018{left:280.964000pt;}
.x21_c01018{left:282.823989pt;}
.x6b_c01018{left:288.288000pt;}
.x66_c01018{left:290.957333pt;}
.xd_c01018{left:296.944000pt;}
.x2a_c01018{left:298.368917pt;}
.x53_c01018{left:300.038795pt;}
.x4c_c01018{left:308.945013pt;}
.x19_c01018{left:310.857131pt;}
.x42_c01018{left:313.277333pt;}
.x2b_c01018{left:318.490944pt;}
.x2_c01018{left:323.853333pt;}
.x5d_c01018{left:328.345333pt;}
.x54_c01018{left:334.609685pt;}
.x67_c01018{left:336.480000pt;}
.xe_c01018{left:338.222667pt;}
.x5e_c01018{left:341.958667pt;}
.x22_c01018{left:342.873909pt;}
.x43_c01018{left:346.469333pt;}
.xf_c01018{left:352.601333pt;}
.x55_c01018{left:362.212811pt;}
.x2c_c01018{left:363.972160pt;}
.x1a_c01018{left:365.654464pt;}
.x44_c01018{left:374.004000pt;}
.x23_c01018{left:376.917664pt;}
.x35_c01018{left:379.032459pt;}
.x10_c01018{left:386.673333pt;}
.x3c_c01018{left:389.944245pt;}
.x2d_c01018{left:391.711264pt;}
.x5f_c01018{left:396.193333pt;}
.x45_c01018{left:399.712000pt;}
.x36_c01018{left:401.109429pt;}
.x4d_c01018{left:402.222027pt;}
.x24_c01018{left:407.202624pt;}
.x60_c01018{left:418.042667pt;}
.x11_c01018{left:424.185333pt;}
.x2e_c01018{left:427.096800pt;}
.x46_c01018{left:431.369333pt;}
.x4e_c01018{left:432.551733pt;}
.x37_c01018{left:435.419541pt;}
.x56_c01018{left:444.868832pt;}
.x2f_c01018{left:447.261493pt;}
.x1b_c01018{left:448.425131pt;}
.x38_c01018{left:453.924576pt;}
.x12_c01018{left:464.984000pt;}
.x61_c01018{left:468.792000pt;}
.x6_c01018{left:471.516115pt;}
.x1c_c01018{left:474.867797pt;}
.x57_c01018{left:477.437120pt;}
.x4f_c01018{left:481.870155pt;}
.x25_c01018{left:483.737056pt;}
.x13_c01018{left:484.832000pt;}
.x30_c01018{left:490.312107pt;}
.x39_c01018{left:496.625227pt;}
.x47_c01018{left:497.634667pt;}
.x62_c01018{left:498.642667pt;}
.x26_c01018{left:499.882901pt;}
.x31_c01018{left:502.603723pt;}
.x3_c01018{left:552.341333pt;}
.x6c_c01018{left:582.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_c01019 {
    display:none;
  }
  .loading-indicator_c01019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01019 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01019 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01019" -> "#page-container .classname_c01019")
 */
.pf_c01019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01019 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01019 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01019 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01019 {overflow:visible;}
  }
}
.c_c01019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01019 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01019:after { /* webkit #35443 */
  content: '';
}
.t_c01019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01019 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01019 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01019 { /* info for Javascript */
  display:none;
}
.l_c01019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.000000;font-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_c01019{transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009660,0.000000,0.000000,0.250000,0,0);}
.m95_c01019{transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);}
.mac_c01019{transform:matrix(0.048955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048955,0.000000,0.000000,0.250000,0,0);}
.m49_c01019{transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113860,0.000000,0.000000,0.250000,0,0);}
.m8e_c01019{transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126820,0.000000,0.000000,0.250000,0,0);}
.m5c_c01019{transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145795,0.000000,0.000000,0.250000,0,0);}
.m62_c01019{transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146105,0.000000,0.000000,0.250000,0,0);}
.m81_c01019{transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151370,0.000000,0.000000,0.250000,0,0);}
.m5e_c01019{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);}
.m39_c01019{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);}
.m63_c01019{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);}
.m68_c01019{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);}
.m6a_c01019{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);}
.m9f_c01019{transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163795,0.000000,0.000000,0.250000,0,0);}
.m3a_c01019{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);}
.ma2_c01019{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);}
.m28_c01019{transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165795,0.000000,0.000000,0.250000,0,0);}
.ma1_c01019{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);}
.m66_c01019{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);}
.m69_c01019{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);}
.m1b_c01019{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);}
.m10_c01019{transform:matrix(0.168911,0.002871,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168911,0.002871,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168911,0.002871,-0.004249,0.249964,0,0);}
.m6e_c01019{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);}
.m35_c01019{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);}
.m73_c01019{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);}
.m33_c01019{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);}
.m5d_c01019{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);}
.m27_c01019{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);}
.m2f_c01019{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);}
.mc8_c01019{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);}
.m40_c01019{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);}
.mc9_c01019{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);}
.m70_c01019{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);}
.mba_c01019{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);}
.m5f_c01019{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);}
.m23_c01019{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);}
.m26_c01019{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);}
.m2d_c01019{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);}
.mca_c01019{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);}
.m43_c01019{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);}
.m2a_c01019{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);}
.mc6_c01019{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);}
.m8d_c01019{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);}
.m25_c01019{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);}
.mb1_c01019{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);}
.m74_c01019{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);}
.m36_c01019{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);}
.mc3_c01019{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);}
.m7b_c01019{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);}
.m2b_c01019{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);}
.mbf_c01019{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);}
.m60_c01019{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);}
.m8f_c01019{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_c01019{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);}
.mab_c01019{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);}
.mbd_c01019{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);}
.m31_c01019{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);}
.m38_c01019{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);}
.mc7_c01019{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m9e_c01019{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);}
.m87_c01019{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);}
.m83_c01019{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);}
.ma9_c01019{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);}
.m3f_c01019{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);}
.m29_c01019{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);}
.m30_c01019{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);}
.m88_c01019{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);}
.mcd_c01019{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);}
.m2c_c01019{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);}
.m24_c01019{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);}
.m20_c01019{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);}
.m45_c01019{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);}
.m4b_c01019{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);}
.m64_c01019{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);}
.m34_c01019{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);}
.m71_c01019{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);}
.mb4_c01019{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);}
.m72_c01019{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);}
.m19_c01019{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);}
.mbb_c01019{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);}
.m46_c01019{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);}
.m15_c01019{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);}
.m61_c01019{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);}
.m22_c01019{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);}
.m1f_c01019{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);}
.mc5_c01019{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);}
.ma0_c01019{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);}
.m65_c01019{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);}
.maa_c01019{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);}
.ma6_c01019{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);}
.mc0_c01019{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);}
.m5_c01019{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);}
.m6d_c01019{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);}
.m1d_c01019{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);}
.m80_c01019{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);}
.m47_c01019{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_c01019{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);}
.m3e_c01019{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);}
.m93_c01019{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);}
.m14_c01019{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);}
.m82_c01019{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);}
.m9b_c01019{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);}
.m6f_c01019{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);}
.m54_c01019{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);}
.m94_c01019{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);}
.m76_c01019{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);}
.mbc_c01019{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);}
.m37_c01019{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);}
.m56_c01019{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);}
.m1c_c01019{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_c01019{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);}
.m89_c01019{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);}
.m1e_c01019{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);}
.mcb_c01019{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);}
.m6b_c01019{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);}
.m90_c01019{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);}
.mae_c01019{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);}
.m7f_c01019{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_c01019{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);}
.m55_c01019{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);}
.m92_c01019{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);}
.m4c_c01019{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);}
.maf_c01019{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);}
.m9a_c01019{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);}
.m9_c01019{transform:matrix(0.228377,0.003882,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228377,0.003882,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228377,0.003882,-0.004249,0.249964,0,0);}
.m21_c01019{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);}
.mc_c01019{transform:matrix(0.230502,0.003919,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230502,0.003919,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230502,0.003919,-0.004249,0.249964,0,0);}
.m3d_c01019{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{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);}
.m57_c01019{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);}
.m77_c01019{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);}
.mc2_c01019{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m67_c01019{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);}
.m3c_c01019{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);}
.m4d_c01019{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);}
.mb2_c01019{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);}
.m48_c01019{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);}
.m4a_c01019{transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237880,0.000000,0.000000,0.250000,0,0);}
.mad_c01019{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);}
.m42_c01019{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_c01019{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);}
.m86_c01019{transform:matrix(0.244120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244120,0.000000,0.000000,0.250000,0,0);}
.ma8_c01019{transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);}
.m97_c01019{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);}
.mf_c01019{transform:matrix(0.247324,0.004205,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247324,0.004205,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247324,0.004205,-0.004249,0.249964,0,0);}
.m7d_c01019{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.mb8_c01019{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);}
.m1_c01019{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);}
.m4e_c01019{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);}
.m8a_c01019{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m79_c01019{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);}
.mb6_c01019{transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);}
.mc1_c01019{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);}
.m58_c01019{transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);}
.mb9_c01019{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.ma7_c01019{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);}
.m17_c01019{transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265010,0.000000,0.000000,0.250000,0,0);}
.mb0_c01019{transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270805,0.000000,0.000000,0.250000,0,0);}
.me_c01019{transform:matrix(0.274155,0.004661,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274155,0.004661,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274155,0.004661,-0.004249,0.249964,0,0);}
.m2e_c01019{transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);}
.mbe_c01019{transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279885,0.000000,0.000000,0.250000,0,0);}
.m18_c01019{transform:matrix(0.282770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282770,0.000000,0.000000,0.250000,0,0);}
.m98_c01019{transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283955,0.000000,0.000000,0.250000,0,0);}
.m4f_c01019{transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289990,0.000000,0.000000,0.250000,0,0);}
.m16_c01019{transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290340,0.000000,0.000000,0.250000,0,0);}
.m78_c01019{transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);}
.m9d_c01019{transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295850,0.000000,0.000000,0.250000,0,0);}
.m8_c01019{transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298640,0.000000,0.000000,0.250000,0,0);}
.m5b_c01019{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);}
.m6c_c01019{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m44_c01019{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);}
.m7a_c01019{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);}
.m53_c01019{transform:matrix(0.311890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311890,0.000000,0.000000,0.250000,0,0);}
.m96_c01019{transform:matrix(0.321745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321745,0.000000,0.000000,0.250000,0,0);}
.m59_c01019{transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322255,0.000000,0.000000,0.250000,0,0);}
.m7e_c01019{transform:matrix(0.326040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326040,0.000000,0.000000,0.250000,0,0);}
.m13_c01019{transform:matrix(0.333911,-0.004007,0.003000,0.249982,0,0);-ms-transform:matrix(0.333911,-0.004007,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333911,-0.004007,0.003000,0.249982,0,0);}
.m51_c01019{transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);}
.md_c01019{transform:matrix(0.342590,0.005824,-0.004249,0.249964,0,0);-ms-transform:matrix(0.342590,0.005824,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.342590,0.005824,-0.004249,0.249964,0,0);}
.mb3_c01019{transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350580,0.000000,0.000000,0.250000,0,0);}
.mb7_c01019{transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355150,0.000000,0.000000,0.250000,0,0);}
.m99_c01019{transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);}
.mcc_c01019{transform:matrix(0.361025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361025,0.000000,0.000000,0.250000,0,0);}
.mc4_c01019{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m3b_c01019{transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01019{transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372230,0.000000,0.000000,0.250000,0,0);}
.m0_c01019{transform:matrix(0.373160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373160,0.000000,0.000000,0.250000,0,0);}
.m85_c01019{transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376235,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);}
.ma4_c01019{transform:matrix(0.383105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383105,0.000000,0.000000,0.250000,0,0);}
.m75_c01019{transform:matrix(0.392325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392325,0.000000,0.000000,0.250000,0,0);}
.m52_c01019{transform:matrix(0.400725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400725,0.000000,0.000000,0.250000,0,0);}
.mb_c01019{transform:matrix(0.404911,0.006883,-0.004249,0.249964,0,0);-ms-transform:matrix(0.404911,0.006883,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.404911,0.006883,-0.004249,0.249964,0,0);}
.m7_c01019{transform:matrix(0.407925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407925,0.000000,0.000000,0.250000,0,0);}
.m9c_c01019{transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);}
.m7c_c01019{transform:matrix(0.419335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419335,0.000000,0.000000,0.250000,0,0);}
.m12_c01019{transform:matrix(0.437623,-0.005251,0.003000,0.249982,0,0);-ms-transform:matrix(0.437623,-0.005251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.437623,-0.005251,0.003000,0.249982,0,0);}
.mb5_c01019{transform:matrix(0.451160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451160,0.000000,0.000000,0.250000,0,0);}
.m11_c01019{transform:matrix(0.472841,-0.005674,0.003000,0.249982,0,0);-ms-transform:matrix(0.472841,-0.005674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.472841,-0.005674,0.003000,0.249982,0,0);}
.ma_c01019{transform:matrix(0.477486,0.008117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.477486,0.008117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.477486,0.008117,-0.004249,0.249964,0,0);}
.ma3_c01019{transform:matrix(0.587305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587305,0.000000,0.000000,0.250000,0,0);}
.m1a_c01019{transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);}
.m50_c01019{transform:matrix(0.603275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603275,0.000000,0.000000,0.250000,0,0);}
.m41_c01019{transform:matrix(0.666560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666560,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.717235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717235,0.000000,0.000000,0.250000,0,0);}
.m4_c01019{transform:matrix(0.744670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744670,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls0_c01019{letter-spacing:0.000000px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:0.000000px;}
.fc0_c01019{color:transparent;}
.fs10_c01019{font-size:22.050000px;}
.fs6_c01019{font-size:30.450000px;}
.fs13_c01019{font-size:48.300000px;}
.fs15_c01019{font-size:49.350000px;}
.fs12_c01019{font-size:51.450000px;}
.fs11_c01019{font-size:53.550000px;}
.fs14_c01019{font-size:54.600000px;}
.fs0_c01019{font-size:56.700000px;}
.fsb_c01019{font-size:59.850000px;}
.fs1_c01019{font-size:63.000000px;}
.fsd_c01019{font-size:65.100000px;}
.fs7_c01019{font-size:67.200000px;}
.fsf_c01019{font-size:68.250000px;}
.fs9_c01019{font-size:70.350000px;}
.fs8_c01019{font-size:71.400000px;}
.fsc_c01019{font-size:72.450000px;}
.fsa_c01019{font-size:74.550000px;}
.fs4_c01019{font-size:93.456728px;}
.fse_c01019{font-size:100.800000px;}
.fs5_c01019{font-size:108.150000px;}
.fs2_c01019{font-size:127.050000px;}
.fs3_c01019{font-size:158.572909px;}
.y0_c01019{bottom:0.000000px;}
.y24_c01019{bottom:166.638000px;}
.y23_c01019{bottom:184.699500px;}
.y22_c01019{bottom:201.531000px;}
.y21_c01019{bottom:220.332000px;}
.y20_c01019{bottom:238.390500px;}
.y1f_c01019{bottom:255.729000px;}
.y1e_c01019{bottom:278.910000px;}
.y1d_c01019{bottom:291.060000px;}
.y1c_c01019{bottom:308.197500px;}
.y1b_c01019{bottom:331.770000px;}
.y1a_c01019{bottom:354.447000px;}
.y19_c01019{bottom:383.310000px;}
.y18_c01019{bottom:411.702000px;}
.y17_c01019{bottom:439.377000px;}
.y16_c01019{bottom:467.910000px;}
.y15_c01019{bottom:491.110500px;}
.y14_c01019{bottom:513.526500px;}
.y13_c01019{bottom:536.463000px;}
.y12_c01019{bottom:559.290000px;}
.y11_c01019{bottom:584.550000px;}
.y10_c01019{bottom:600.606000px;}
.yd_c01019{bottom:641.598000px;}
.ye_c01019{bottom:643.337826px;}
.yf_c01019{bottom:645.625032px;}
.yc_c01019{bottom:781.029012px;}
.yb_c01019{bottom:784.053618px;}
.ya_c01019{bottom:784.641775px;}
.y9_c01019{bottom:785.528691px;}
.y8_c01019{bottom:786.388882px;}
.y7_c01019{bottom:786.799942px;}
.y6_c01019{bottom:787.608063px;}
.y5_c01019{bottom:788.403000px;}
.y4_c01019{bottom:883.243500px;}
.y3_c01019{bottom:887.946000px;}
.y2_c01019{bottom:918.978000px;}
.y1_c01019{bottom:936.750000px;}
.h12_c01019{height:22.050000px;}
.h8_c01019{height:30.450000px;}
.h15_c01019{height:48.300000px;}
.h17_c01019{height:49.350000px;}
.h14_c01019{height:51.450000px;}
.h13_c01019{height:53.550000px;}
.h16_c01019{height:54.600000px;}
.h2_c01019{height:56.700000px;}
.hd_c01019{height:59.850000px;}
.h3_c01019{height:63.000000px;}
.hf_c01019{height:65.100000px;}
.h9_c01019{height:67.200000px;}
.h11_c01019{height:68.250000px;}
.hb_c01019{height:70.350000px;}
.ha_c01019{height:71.400000px;}
.he_c01019{height:72.450000px;}
.hc_c01019{height:74.550000px;}
.h6_c01019{height:93.456728px;}
.h10_c01019{height:100.800000px;}
.h7_c01019{height:108.150000px;}
.h4_c01019{height:127.050000px;}
.h5_c01019{height:158.572909px;}
.h0_c01019{height:1008.450000px;}
.h1_c01019{height:1008.750000px;}
.w1_c01019{width:700.500000px;}
.w0_c01019{width:700.650000px;}
.x0_c01019{left:0.000000px;}
.x9_c01019{left:85.560000px;}
.x8_c01019{left:87.750000px;}
.xa_c01019{left:137.836500px;}
.x1a_c01019{left:140.400000px;}
.x75_c01019{left:142.560000px;}
.x4e_c01019{left:150.660000px;}
.x48_c01019{left:153.090000px;}
.x66_c01019{left:155.250000px;}
.x58_c01019{left:163.350000px;}
.x3f_c01019{left:164.700000px;}
.x36_c01019{left:167.130000px;}
.x7e_c01019{left:169.290000px;}
.x2c_c01019{left:171.450000px;}
.x76_c01019{left:175.230000px;}
.x93_c01019{left:176.310000px;}
.x40_c01019{left:177.390000px;}
.xb_c01019{left:184.597500px;}
.x11_c01019{left:189.696000px;}
.x67_c01019{left:191.160000px;}
.x23_c01019{left:193.320000px;}
.x59_c01019{left:196.020000px;}
.x8c_c01019{left:200.070000px;}
.x89_c01019{left:204.120000px;}
.x37_c01019{left:205.200000px;}
.x68_c01019{left:208.170000px;}
.x63_c01019{left:209.250000px;}
.x4f_c01019{left:214.380000px;}
.x41_c01019{left:215.460000px;}
.x64_c01019{left:219.240000px;}
.x77_c01019{left:221.400000px;}
.x45_c01019{left:223.290000px;}
.x1b_c01019{left:227.880000px;}
.xc_c01019{left:232.134000px;}
.x49_c01019{left:235.710000px;}
.x65_c01019{left:236.790000px;}
.x42_c01019{left:241.920000px;}
.x2d_c01019{left:247.860000px;}
.x8d_c01019{left:251.100000px;}
.xd_c01019{left:256.314000px;}
.x7f_c01019{left:263.250000px;}
.x69_c01019{left:265.140000px;}
.x8e_c01019{left:267.570000px;}
.x94_c01019{left:269.190000px;}
.x5a_c01019{left:270.810000px;}
.x43_c01019{left:273.240000px;}
.x1c_c01019{left:275.400000px;}
.x2e_c01019{left:278.910000px;}
.x8a_c01019{left:280.530000px;}
.x24_c01019{left:285.120000px;}
.x5b_c01019{left:287.280000px;}
.x95_c01019{left:291.600000px;}
.x1d_c01019{left:292.680000px;}
.x6a_c01019{left:296.190000px;}
.x4c_c01019{left:298.080000px;}
.x78_c01019{left:300.510000px;}
.x50_c01019{left:302.130000px;}
.xe_c01019{left:306.913500px;}
.x80_c01019{left:309.960000px;}
.x1e_c01019{left:312.930000px;}
.x14_c01019{left:314.010000px;}
.x2f_c01019{left:318.060000px;}
.x96_c01019{left:319.140000px;}
.x25_c01019{left:320.760000px;}
.x51_c01019{left:324.270000px;}
.x8f_c01019{left:328.590000px;}
.x4a_c01019{left:331.830000px;}
.x12_c01019{left:334.681500px;}
.x18_c01019{left:339.120000px;}
.x26_c01019{left:341.820000px;}
.x6b_c01019{left:343.710000px;}
.x38_c01019{left:344.790000px;}
.x90_c01019{left:346.950000px;}
.x15_c01019{left:349.380000px;}
.xf_c01019{left:359.085000px;}
.x81_c01019{left:361.530000px;}
.x16_c01019{left:369.630000px;}
.x46_c01019{left:371.790000px;}
.x4b_c01019{left:373.680000px;}
.x97_c01019{left:375.300000px;}
.x6c_c01019{left:376.650000px;}
.x1f_c01019{left:383.400000px;}
.x30_c01019{left:386.100000px;}
.x79_c01019{left:388.260000px;}
.x82_c01019{left:390.420000px;}
.x6d_c01019{left:392.040000px;}
.x10_c01019{left:393.682500px;}
.x5c_c01019{left:399.060000px;}
.x52_c01019{left:402.570000px;}
.x27_c01019{left:405.540000px;}
.x44_c01019{left:409.320000px;}
.x39_c01019{left:410.400000px;}
.x31_c01019{left:413.370000px;}
.x5d_c01019{left:418.770000px;}
.x6e_c01019{left:419.850000px;}
.x47_c01019{left:424.710000px;}
.x91_c01019{left:426.600000px;}
.x53_c01019{left:427.950000px;}
.x17_c01019{left:429.570000px;}
.x3a_c01019{left:434.970000px;}
.x83_c01019{left:442.530000px;}
.x5e_c01019{left:444.690000px;}
.x54_c01019{left:449.550000px;}
.x3_c01019{left:450.630000px;}
.x32_c01019{left:453.600000px;}
.x3b_c01019{left:458.460000px;}
.x20_c01019{left:461.970000px;}
.x4_c01019{left:468.180000px;}
.x6f_c01019{left:472.230000px;}
.x3c_c01019{left:478.440000px;}
.x84_c01019{left:483.840000px;}
.x28_c01019{left:487.890000px;}
.x5f_c01019{left:500.040000px;}
.x21_c01019{left:502.470000px;}
.x55_c01019{left:504.360000px;}
.x1_c01019{left:512.730000px;}
.x70_c01019{left:515.160000px;}
.x5_c01019{left:516.240000px;}
.x4d_c01019{left:521.640000px;}
.x60_c01019{left:524.070000px;}
.x13_c01019{left:525.282000px;}
.x29_c01019{left:528.390000px;}
.x33_c01019{left:529.470000px;}
.x19_c01019{left:535.680000px;}
.x71_c01019{left:537.840000px;}
.x85_c01019{left:545.670000px;}
.x3d_c01019{left:548.640000px;}
.x7a_c01019{left:550.800000px;}
.x22_c01019{left:555.930000px;}
.x72_c01019{left:557.820000px;}
.x61_c01019{left:564.030000px;}
.x2_c01019{left:567.810000px;}
.x6_c01019{left:571.050000px;}
.x56_c01019{left:574.020000px;}
.x73_c01019{left:576.990000px;}
.x92_c01019{left:578.880000px;}
.x7_c01019{left:579.960000px;}
.x86_c01019{left:585.360000px;}
.x62_c01019{left:590.760000px;}
.x34_c01019{left:592.920000px;}
.x7b_c01019{left:595.620000px;}
.x2a_c01019{left:596.970000px;}
.x87_c01019{left:606.960000px;}
.x8b_c01019{left:626.400000px;}
.x7c_c01019{left:632.340000px;}
.x35_c01019{left:634.500000px;}
.x74_c01019{left:637.470000px;}
.x2b_c01019{left:639.360000px;}
.x57_c01019{left:640.980000px;}
.x3e_c01019{left:642.870000px;}
.x7d_c01019{left:651.240000px;}
.x88_c01019{left:656.100000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ws0_c01019{word-spacing:0.000000pt;}
.fs10_c01019{font-size:19.600000pt;}
.fs6_c01019{font-size:27.066667pt;}
.fs13_c01019{font-size:42.933333pt;}
.fs15_c01019{font-size:43.866667pt;}
.fs12_c01019{font-size:45.733333pt;}
.fs11_c01019{font-size:47.600000pt;}
.fs14_c01019{font-size:48.533333pt;}
.fs0_c01019{font-size:50.400000pt;}
.fsb_c01019{font-size:53.200000pt;}
.fs1_c01019{font-size:56.000000pt;}
.fsd_c01019{font-size:57.866667pt;}
.fs7_c01019{font-size:59.733333pt;}
.fsf_c01019{font-size:60.666667pt;}
.fs9_c01019{font-size:62.533333pt;}
.fs8_c01019{font-size:63.466667pt;}
.fsc_c01019{font-size:64.400000pt;}
.fsa_c01019{font-size:66.266667pt;}
.fs4_c01019{font-size:83.072647pt;}
.fse_c01019{font-size:89.600000pt;}
.fs5_c01019{font-size:96.133333pt;}
.fs2_c01019{font-size:112.933333pt;}
.fs3_c01019{font-size:140.953697pt;}
.y0_c01019{bottom:0.000000pt;}
.y24_c01019{bottom:148.122667pt;}
.y23_c01019{bottom:164.177333pt;}
.y22_c01019{bottom:179.138667pt;}
.y21_c01019{bottom:195.850667pt;}
.y20_c01019{bottom:211.902667pt;}
.y1f_c01019{bottom:227.314667pt;}
.y1e_c01019{bottom:247.920000pt;}
.y1d_c01019{bottom:258.720000pt;}
.y1c_c01019{bottom:273.953333pt;}
.y1b_c01019{bottom:294.906667pt;}
.y1a_c01019{bottom:315.064000pt;}
.y19_c01019{bottom:340.720000pt;}
.y18_c01019{bottom:365.957333pt;}
.y17_c01019{bottom:390.557333pt;}
.y16_c01019{bottom:415.920000pt;}
.y15_c01019{bottom:436.542667pt;}
.y14_c01019{bottom:456.468000pt;}
.y13_c01019{bottom:476.856000pt;}
.y12_c01019{bottom:497.146667pt;}
.y11_c01019{bottom:519.600000pt;}
.y10_c01019{bottom:533.872000pt;}
.yd_c01019{bottom:570.309333pt;}
.ye_c01019{bottom:571.855845pt;}
.yf_c01019{bottom:573.888917pt;}
.yc_c01019{bottom:694.248011pt;}
.yb_c01019{bottom:696.936549pt;}
.ya_c01019{bottom:697.459356pt;}
.y9_c01019{bottom:698.247725pt;}
.y8_c01019{bottom:699.012340pt;}
.y7_c01019{bottom:699.377727pt;}
.y6_c01019{bottom:700.096056pt;}
.y5_c01019{bottom:700.802667pt;}
.y4_c01019{bottom:785.105333pt;}
.y3_c01019{bottom:789.285333pt;}
.y2_c01019{bottom:816.869333pt;}
.y1_c01019{bottom:832.666667pt;}
.h12_c01019{height:19.600000pt;}
.h8_c01019{height:27.066667pt;}
.h15_c01019{height:42.933333pt;}
.h17_c01019{height:43.866667pt;}
.h14_c01019{height:45.733333pt;}
.h13_c01019{height:47.600000pt;}
.h16_c01019{height:48.533333pt;}
.h2_c01019{height:50.400000pt;}
.hd_c01019{height:53.200000pt;}
.h3_c01019{height:56.000000pt;}
.hf_c01019{height:57.866667pt;}
.h9_c01019{height:59.733333pt;}
.h11_c01019{height:60.666667pt;}
.hb_c01019{height:62.533333pt;}
.ha_c01019{height:63.466667pt;}
.he_c01019{height:64.400000pt;}
.hc_c01019{height:66.266667pt;}
.h6_c01019{height:83.072647pt;}
.h10_c01019{height:89.600000pt;}
.h7_c01019{height:96.133333pt;}
.h4_c01019{height:112.933333pt;}
.h5_c01019{height:140.953697pt;}
.h0_c01019{height:896.400000pt;}
.h1_c01019{height:896.666667pt;}
.w1_c01019{width:622.666667pt;}
.w0_c01019{width:622.800000pt;}
.x0_c01019{left:0.000000pt;}
.x9_c01019{left:76.053333pt;}
.x8_c01019{left:78.000000pt;}
.xa_c01019{left:122.521333pt;}
.x1a_c01019{left:124.800000pt;}
.x75_c01019{left:126.720000pt;}
.x4e_c01019{left:133.920000pt;}
.x48_c01019{left:136.080000pt;}
.x66_c01019{left:138.000000pt;}
.x58_c01019{left:145.200000pt;}
.x3f_c01019{left:146.400000pt;}
.x36_c01019{left:148.560000pt;}
.x7e_c01019{left:150.480000pt;}
.x2c_c01019{left:152.400000pt;}
.x76_c01019{left:155.760000pt;}
.x93_c01019{left:156.720000pt;}
.x40_c01019{left:157.680000pt;}
.xb_c01019{left:164.086667pt;}
.x11_c01019{left:168.618667pt;}
.x67_c01019{left:169.920000pt;}
.x23_c01019{left:171.840000pt;}
.x59_c01019{left:174.240000pt;}
.x8c_c01019{left:177.840000pt;}
.x89_c01019{left:181.440000pt;}
.x37_c01019{left:182.400000pt;}
.x68_c01019{left:185.040000pt;}
.x63_c01019{left:186.000000pt;}
.x4f_c01019{left:190.560000pt;}
.x41_c01019{left:191.520000pt;}
.x64_c01019{left:194.880000pt;}
.x77_c01019{left:196.800000pt;}
.x45_c01019{left:198.480000pt;}
.x1b_c01019{left:202.560000pt;}
.xc_c01019{left:206.341333pt;}
.x49_c01019{left:209.520000pt;}
.x65_c01019{left:210.480000pt;}
.x42_c01019{left:215.040000pt;}
.x2d_c01019{left:220.320000pt;}
.x8d_c01019{left:223.200000pt;}
.xd_c01019{left:227.834667pt;}
.x7f_c01019{left:234.000000pt;}
.x69_c01019{left:235.680000pt;}
.x8e_c01019{left:237.840000pt;}
.x94_c01019{left:239.280000pt;}
.x5a_c01019{left:240.720000pt;}
.x43_c01019{left:242.880000pt;}
.x1c_c01019{left:244.800000pt;}
.x2e_c01019{left:247.920000pt;}
.x8a_c01019{left:249.360000pt;}
.x24_c01019{left:253.440000pt;}
.x5b_c01019{left:255.360000pt;}
.x95_c01019{left:259.200000pt;}
.x1d_c01019{left:260.160000pt;}
.x6a_c01019{left:263.280000pt;}
.x4c_c01019{left:264.960000pt;}
.x78_c01019{left:267.120000pt;}
.x50_c01019{left:268.560000pt;}
.xe_c01019{left:272.812000pt;}
.x80_c01019{left:275.520000pt;}
.x1e_c01019{left:278.160000pt;}
.x14_c01019{left:279.120000pt;}
.x2f_c01019{left:282.720000pt;}
.x96_c01019{left:283.680000pt;}
.x25_c01019{left:285.120000pt;}
.x51_c01019{left:288.240000pt;}
.x8f_c01019{left:292.080000pt;}
.x4a_c01019{left:294.960000pt;}
.x12_c01019{left:297.494667pt;}
.x18_c01019{left:301.440000pt;}
.x26_c01019{left:303.840000pt;}
.x6b_c01019{left:305.520000pt;}
.x38_c01019{left:306.480000pt;}
.x90_c01019{left:308.400000pt;}
.x15_c01019{left:310.560000pt;}
.xf_c01019{left:319.186667pt;}
.x81_c01019{left:321.360000pt;}
.x16_c01019{left:328.560000pt;}
.x46_c01019{left:330.480000pt;}
.x4b_c01019{left:332.160000pt;}
.x97_c01019{left:333.600000pt;}
.x6c_c01019{left:334.800000pt;}
.x1f_c01019{left:340.800000pt;}
.x30_c01019{left:343.200000pt;}
.x79_c01019{left:345.120000pt;}
.x82_c01019{left:347.040000pt;}
.x6d_c01019{left:348.480000pt;}
.x10_c01019{left:349.940000pt;}
.x5c_c01019{left:354.720000pt;}
.x52_c01019{left:357.840000pt;}
.x27_c01019{left:360.480000pt;}
.x44_c01019{left:363.840000pt;}
.x39_c01019{left:364.800000pt;}
.x31_c01019{left:367.440000pt;}
.x5d_c01019{left:372.240000pt;}
.x6e_c01019{left:373.200000pt;}
.x47_c01019{left:377.520000pt;}
.x91_c01019{left:379.200000pt;}
.x53_c01019{left:380.400000pt;}
.x17_c01019{left:381.840000pt;}
.x3a_c01019{left:386.640000pt;}
.x83_c01019{left:393.360000pt;}
.x5e_c01019{left:395.280000pt;}
.x54_c01019{left:399.600000pt;}
.x3_c01019{left:400.560000pt;}
.x32_c01019{left:403.200000pt;}
.x3b_c01019{left:407.520000pt;}
.x20_c01019{left:410.640000pt;}
.x4_c01019{left:416.160000pt;}
.x6f_c01019{left:419.760000pt;}
.x3c_c01019{left:425.280000pt;}
.x84_c01019{left:430.080000pt;}
.x28_c01019{left:433.680000pt;}
.x5f_c01019{left:444.480000pt;}
.x21_c01019{left:446.640000pt;}
.x55_c01019{left:448.320000pt;}
.x1_c01019{left:455.760000pt;}
.x70_c01019{left:457.920000pt;}
.x5_c01019{left:458.880000pt;}
.x4d_c01019{left:463.680000pt;}
.x60_c01019{left:465.840000pt;}
.x13_c01019{left:466.917333pt;}
.x29_c01019{left:469.680000pt;}
.x33_c01019{left:470.640000pt;}
.x19_c01019{left:476.160000pt;}
.x71_c01019{left:478.080000pt;}
.x85_c01019{left:485.040000pt;}
.x3d_c01019{left:487.680000pt;}
.x7a_c01019{left:489.600000pt;}
.x22_c01019{left:494.160000pt;}
.x72_c01019{left:495.840000pt;}
.x61_c01019{left:501.360000pt;}
.x2_c01019{left:504.720000pt;}
.x6_c01019{left:507.600000pt;}
.x56_c01019{left:510.240000pt;}
.x73_c01019{left:512.880000pt;}
.x92_c01019{left:514.560000pt;}
.x7_c01019{left:515.520000pt;}
.x86_c01019{left:520.320000pt;}
.x62_c01019{left:525.120000pt;}
.x34_c01019{left:527.040000pt;}
.x7b_c01019{left:529.440000pt;}
.x2a_c01019{left:530.640000pt;}
.x87_c01019{left:539.520000pt;}
.x8b_c01019{left:556.800000pt;}
.x7c_c01019{left:562.080000pt;}
.x35_c01019{left:564.000000pt;}
.x74_c01019{left:566.640000pt;}
.x2b_c01019{left:568.320000pt;}
.x57_c01019{left:569.760000pt;}
.x3e_c01019{left:571.440000pt;}
.x7d_c01019{left:578.880000pt;}
.x88_c01019{left:583.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_c01020 {
    display:none;
  }
  .loading-indicator_c01020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01020 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01020 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01020" -> "#page-container .classname_c01020")
 */
.pf_c01020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01020 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01020 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01020 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01020 {overflow:visible;}
  }
}
.c_c01020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01020 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01020:after { /* webkit #35443 */
  content: '';
}
.t_c01020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01020 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01020 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01020 { /* info for Javascript */
  display:none;
}
.l_c01020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.000000;font-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_c01020{transform:matrix(0.008708,-0.000183,0.005249,0.249945,0,0);-ms-transform:matrix(0.008708,-0.000183,0.005249,0.249945,0,0);-webkit-transform:matrix(0.008708,-0.000183,0.005249,0.249945,0,0);}
.me2_c01020{transform:matrix(0.009443,-0.000170,0.004499,0.249960,0,0);-ms-transform:matrix(0.009443,-0.000170,0.004499,0.249960,0,0);-webkit-transform:matrix(0.009443,-0.000170,0.004499,0.249960,0,0);}
.m7_c01020{transform:matrix(0.015122,-0.000318,0.005249,0.249945,0,0);-ms-transform:matrix(0.015122,-0.000318,0.005249,0.249945,0,0);-webkit-transform:matrix(0.015122,-0.000318,0.005249,0.249945,0,0);}
.m4e_c01020{transform:matrix(0.016039,-0.000449,0.006997,0.249902,0,0);-ms-transform:matrix(0.016039,-0.000449,0.006997,0.249902,0,0);-webkit-transform:matrix(0.016039,-0.000449,0.006997,0.249902,0,0);}
.m8f_c01020{transform:matrix(0.016043,-0.000225,0.003500,0.249976,0,0);-ms-transform:matrix(0.016043,-0.000225,0.003500,0.249976,0,0);-webkit-transform:matrix(0.016043,-0.000225,0.003500,0.249976,0,0);}
.m1f_c01020{transform:matrix(0.016526,-0.000347,0.005249,0.249945,0,0);-ms-transform:matrix(0.016526,-0.000347,0.005249,0.249945,0,0);-webkit-transform:matrix(0.016526,-0.000347,0.005249,0.249945,0,0);}
.m1d_c01020{transform:matrix(0.043550,-0.000915,0.005249,0.249945,0,0);-ms-transform:matrix(0.043550,-0.000915,0.005249,0.249945,0,0);-webkit-transform:matrix(0.043550,-0.000915,0.005249,0.249945,0,0);}
.m6d_c01020{transform:matrix(0.064883,-0.000973,0.003750,0.249972,0,0);-ms-transform:matrix(0.064883,-0.000973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.064883,-0.000973,0.003750,0.249972,0,0);}
.ma8_c01020{transform:matrix(0.082101,-0.001970,0.005998,0.249928,0,0);-ms-transform:matrix(0.082101,-0.001970,0.005998,0.249928,0,0);-webkit-transform:matrix(0.082101,-0.001970,0.005998,0.249928,0,0);}
.m45_c01020{transform:matrix(0.098571,-0.002760,0.006997,0.249902,0,0);-ms-transform:matrix(0.098571,-0.002760,0.006997,0.249902,0,0);-webkit-transform:matrix(0.098571,-0.002760,0.006997,0.249902,0,0);}
.m15_c01020{transform:matrix(0.112185,-0.002356,0.005249,0.249945,0,0);-ms-transform:matrix(0.112185,-0.002356,0.005249,0.249945,0,0);-webkit-transform:matrix(0.112185,-0.002356,0.005249,0.249945,0,0);}
.mdb_c01020{transform:matrix(0.120480,-0.002169,0.004499,0.249960,0,0);-ms-transform:matrix(0.120480,-0.002169,0.004499,0.249960,0,0);-webkit-transform:matrix(0.120480,-0.002169,0.004499,0.249960,0,0);}
.m14_c01020{transform:matrix(0.122423,-0.002571,0.005249,0.249945,0,0);-ms-transform:matrix(0.122423,-0.002571,0.005249,0.249945,0,0);-webkit-transform:matrix(0.122423,-0.002571,0.005249,0.249945,0,0);}
.m89_c01020{transform:matrix(0.135737,-0.001900,0.003500,0.249976,0,0);-ms-transform:matrix(0.135737,-0.001900,0.003500,0.249976,0,0);-webkit-transform:matrix(0.135737,-0.001900,0.003500,0.249976,0,0);}
.me_c01020{transform:matrix(0.137325,-0.002884,0.005249,0.249945,0,0);-ms-transform:matrix(0.137325,-0.002884,0.005249,0.249945,0,0);-webkit-transform:matrix(0.137325,-0.002884,0.005249,0.249945,0,0);}
.m11_c01020{transform:matrix(0.141084,-0.002963,0.005249,0.249945,0,0);-ms-transform:matrix(0.141084,-0.002963,0.005249,0.249945,0,0);-webkit-transform:matrix(0.141084,-0.002963,0.005249,0.249945,0,0);}
.ma5_c01020{transform:matrix(0.144114,-0.002162,0.003750,0.249972,0,0);-ms-transform:matrix(0.144114,-0.002162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144114,-0.002162,0.003750,0.249972,0,0);}
.md1_c01020{transform:matrix(0.145251,-0.002615,0.004499,0.249960,0,0);-ms-transform:matrix(0.145251,-0.002615,0.004499,0.249960,0,0);-webkit-transform:matrix(0.145251,-0.002615,0.004499,0.249960,0,0);}
.m55_c01020{transform:matrix(0.147202,-0.004122,0.006997,0.249902,0,0);-ms-transform:matrix(0.147202,-0.004122,0.006997,0.249902,0,0);-webkit-transform:matrix(0.147202,-0.004122,0.006997,0.249902,0,0);}
.m9f_c01020{transform:matrix(0.150143,-0.002252,0.003750,0.249972,0,0);-ms-transform:matrix(0.150143,-0.002252,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150143,-0.002252,0.003750,0.249972,0,0);}
.mcd_c01020{transform:matrix(0.153360,-0.002760,0.004499,0.249960,0,0);-ms-transform:matrix(0.153360,-0.002760,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153360,-0.002760,0.004499,0.249960,0,0);}
.mad_c01020{transform:matrix(0.154815,-0.002787,0.004499,0.249960,0,0);-ms-transform:matrix(0.154815,-0.002787,0.004499,0.249960,0,0);-webkit-transform:matrix(0.154815,-0.002787,0.004499,0.249960,0,0);}
.m26_c01020{transform:matrix(0.155789,-0.004362,0.006997,0.249902,0,0);-ms-transform:matrix(0.155789,-0.004362,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155789,-0.004362,0.006997,0.249902,0,0);}
.m2a_c01020{transform:matrix(0.156169,-0.004373,0.006997,0.249902,0,0);-ms-transform:matrix(0.156169,-0.004373,0.006997,0.249902,0,0);-webkit-transform:matrix(0.156169,-0.004373,0.006997,0.249902,0,0);}
.m91_c01020{transform:matrix(0.156665,-0.002193,0.003500,0.249976,0,0);-ms-transform:matrix(0.156665,-0.002193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156665,-0.002193,0.003500,0.249976,0,0);}
.m8a_c01020{transform:matrix(0.159779,-0.002237,0.003500,0.249976,0,0);-ms-transform:matrix(0.159779,-0.002237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159779,-0.002237,0.003500,0.249976,0,0);}
.mc3_c01020{transform:matrix(0.161484,-0.002907,0.004499,0.249960,0,0);-ms-transform:matrix(0.161484,-0.002907,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161484,-0.002907,0.004499,0.249960,0,0);}
.ma1_c01020{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);}
.m82_c01020{transform:matrix(0.163469,-0.002289,0.003500,0.249976,0,0);-ms-transform:matrix(0.163469,-0.002289,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163469,-0.002289,0.003500,0.249976,0,0);}
.mcf_c01020{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);}
.m8c_c01020{transform:matrix(0.163889,-0.002294,0.003500,0.249976,0,0);-ms-transform:matrix(0.163889,-0.002294,0.003500,0.249976,0,0);-webkit-transform:matrix(0.163889,-0.002294,0.003500,0.249976,0,0);}
.m5f_c01020{transform:matrix(0.163992,-0.002460,0.003750,0.249972,0,0);-ms-transform:matrix(0.163992,-0.002460,0.003750,0.249972,0,0);-webkit-transform:matrix(0.163992,-0.002460,0.003750,0.249972,0,0);}
.m90_c01020{transform:matrix(0.164279,-0.002300,0.003500,0.249976,0,0);-ms-transform:matrix(0.164279,-0.002300,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164279,-0.002300,0.003500,0.249976,0,0);}
.m95_c01020{transform:matrix(0.164844,-0.002308,0.003500,0.249976,0,0);-ms-transform:matrix(0.164844,-0.002308,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164844,-0.002308,0.003500,0.249976,0,0);}
.ma6_c01020{transform:matrix(0.165256,-0.002479,0.003750,0.249972,0,0);-ms-transform:matrix(0.165256,-0.002479,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165256,-0.002479,0.003750,0.249972,0,0);}
.mc_c01020{transform:matrix(0.165988,-0.003486,0.005249,0.249945,0,0);-ms-transform:matrix(0.165988,-0.003486,0.005249,0.249945,0,0);-webkit-transform:matrix(0.165988,-0.003486,0.005249,0.249945,0,0);}
.m1c_c01020{transform:matrix(0.166273,-0.003492,0.005249,0.249945,0,0);-ms-transform:matrix(0.166273,-0.003492,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166273,-0.003492,0.005249,0.249945,0,0);}
.m7d_c01020{transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);-ms-transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);}
.m27_c01020{transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);-ms-transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167689,-0.004695,0.006997,0.249902,0,0);}
.m2e_c01020{transform:matrix(0.167744,-0.004697,0.006997,0.249902,0,0);-ms-transform:matrix(0.167744,-0.004697,0.006997,0.249902,0,0);-webkit-transform:matrix(0.167744,-0.004697,0.006997,0.249902,0,0);}
.ma0_c01020{transform:matrix(0.167756,-0.002516,0.003750,0.249972,0,0);-ms-transform:matrix(0.167756,-0.002516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167756,-0.002516,0.003750,0.249972,0,0);}
.m85_c01020{transform:matrix(0.168928,-0.002365,0.003500,0.249976,0,0);-ms-transform:matrix(0.168928,-0.002365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168928,-0.002365,0.003500,0.249976,0,0);}
.m9e_c01020{transform:matrix(0.170291,-0.002554,0.003750,0.249972,0,0);-ms-transform:matrix(0.170291,-0.002554,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170291,-0.002554,0.003750,0.249972,0,0);}
.ma3_c01020{transform:matrix(0.170711,-0.002561,0.003750,0.249972,0,0);-ms-transform:matrix(0.170711,-0.002561,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170711,-0.002561,0.003750,0.249972,0,0);}
.m48_c01020{transform:matrix(0.171528,-0.004803,0.006997,0.249902,0,0);-ms-transform:matrix(0.171528,-0.004803,0.006997,0.249902,0,0);-webkit-transform:matrix(0.171528,-0.004803,0.006997,0.249902,0,0);}
.m39_c01020{transform:matrix(0.172028,-0.004817,0.006997,0.249902,0,0);-ms-transform:matrix(0.172028,-0.004817,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172028,-0.004817,0.006997,0.249902,0,0);}
.mae_c01020{transform:matrix(0.172117,-0.003098,0.004499,0.249960,0,0);-ms-transform:matrix(0.172117,-0.003098,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172117,-0.003098,0.004499,0.249960,0,0);}
.m1a_c01020{transform:matrix(0.172142,-0.003615,0.005249,0.249945,0,0);-ms-transform:matrix(0.172142,-0.003615,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172142,-0.003615,0.005249,0.249945,0,0);}
.m86_c01020{transform:matrix(0.172258,-0.002412,0.003500,0.249976,0,0);-ms-transform:matrix(0.172258,-0.002412,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172258,-0.002412,0.003500,0.249976,0,0);}
.m23_c01020{transform:matrix(0.172907,-0.004841,0.006997,0.249902,0,0);-ms-transform:matrix(0.172907,-0.004841,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172907,-0.004841,0.006997,0.249902,0,0);}
.m3e_c01020{transform:matrix(0.173367,-0.004854,0.006997,0.249902,0,0);-ms-transform:matrix(0.173367,-0.004854,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173367,-0.004854,0.006997,0.249902,0,0);}
.m63_c01020{transform:matrix(0.173895,-0.002608,0.003750,0.249972,0,0);-ms-transform:matrix(0.173895,-0.002608,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173895,-0.002608,0.003750,0.249972,0,0);}
.md2_c01020{transform:matrix(0.174527,-0.003141,0.004499,0.249960,0,0);-ms-transform:matrix(0.174527,-0.003141,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174527,-0.003141,0.004499,0.249960,0,0);}
.mb1_c01020{transform:matrix(0.175287,-0.003155,0.004499,0.249960,0,0);-ms-transform:matrix(0.175287,-0.003155,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175287,-0.003155,0.004499,0.249960,0,0);}
.m13_c01020{transform:matrix(0.175446,-0.003684,0.005249,0.249945,0,0);-ms-transform:matrix(0.175446,-0.003684,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175446,-0.003684,0.005249,0.249945,0,0);}
.m61_c01020{transform:matrix(0.175450,-0.002632,0.003750,0.249972,0,0);-ms-transform:matrix(0.175450,-0.002632,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175450,-0.002632,0.003750,0.249972,0,0);}
.me7_c01020{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);}
.m10_c01020{transform:matrix(0.176476,-0.003706,0.005249,0.249945,0,0);-ms-transform:matrix(0.176476,-0.003706,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176476,-0.003706,0.005249,0.249945,0,0);}
.m67_c01020{transform:matrix(0.176690,-0.002650,0.003750,0.249972,0,0);-ms-transform:matrix(0.176690,-0.002650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176690,-0.002650,0.003750,0.249972,0,0);}
.m60_c01020{transform:matrix(0.177075,-0.002656,0.003750,0.249972,0,0);-ms-transform:matrix(0.177075,-0.002656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177075,-0.002656,0.003750,0.249972,0,0);}
.mb2_c01020{transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);-ms-transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);-webkit-transform:matrix(0.177331,-0.003192,0.004499,0.249960,0,0);}
.m87_c01020{transform:matrix(0.177573,-0.002486,0.003500,0.249976,0,0);-ms-transform:matrix(0.177573,-0.002486,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177573,-0.002486,0.003500,0.249976,0,0);}
.ma4_c01020{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);}
.md0_c01020{transform:matrix(0.179411,-0.003229,0.004499,0.249960,0,0);-ms-transform:matrix(0.179411,-0.003229,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179411,-0.003229,0.004499,0.249960,0,0);}
.mb5_c01020{transform:matrix(0.181666,-0.003270,0.004499,0.249960,0,0);-ms-transform:matrix(0.181666,-0.003270,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181666,-0.003270,0.004499,0.249960,0,0);}
.m69_c01020{transform:matrix(0.181675,-0.002725,0.003750,0.249972,0,0);-ms-transform:matrix(0.181675,-0.002725,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181675,-0.002725,0.003750,0.249972,0,0);}
.md_c01020{transform:matrix(0.181945,-0.003821,0.005249,0.249945,0,0);-ms-transform:matrix(0.181945,-0.003821,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181945,-0.003821,0.005249,0.249945,0,0);}
.mf_c01020{transform:matrix(0.182110,-0.003824,0.005249,0.249945,0,0);-ms-transform:matrix(0.182110,-0.003824,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182110,-0.003824,0.005249,0.249945,0,0);}
.m16_c01020{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);}
.mc1_c01020{transform:matrix(0.183660,-0.003306,0.004499,0.249960,0,0);-ms-transform:matrix(0.183660,-0.003306,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183660,-0.003306,0.004499,0.249960,0,0);}
.m62_c01020{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);}
.mcc_c01020{transform:matrix(0.183805,-0.003308,0.004499,0.249960,0,0);-ms-transform:matrix(0.183805,-0.003308,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183805,-0.003308,0.004499,0.249960,0,0);}
.mc0_c01020{transform:matrix(0.184600,-0.003323,0.004499,0.249960,0,0);-ms-transform:matrix(0.184600,-0.003323,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184600,-0.003323,0.004499,0.249960,0,0);}
.m98_c01020{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);}
.m66_c01020{transform:matrix(0.184899,-0.002773,0.003750,0.249972,0,0);-ms-transform:matrix(0.184899,-0.002773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184899,-0.002773,0.003750,0.249972,0,0);}
.md3_c01020{transform:matrix(0.186080,-0.003349,0.004499,0.249960,0,0);-ms-transform:matrix(0.186080,-0.003349,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186080,-0.003349,0.004499,0.249960,0,0);}
.m12_c01020{transform:matrix(0.186454,-0.003916,0.005249,0.249945,0,0);-ms-transform:matrix(0.186454,-0.003916,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186454,-0.003916,0.005249,0.249945,0,0);}
.m2f_c01020{transform:matrix(0.186802,-0.005230,0.006997,0.249902,0,0);-ms-transform:matrix(0.186802,-0.005230,0.006997,0.249902,0,0);-webkit-transform:matrix(0.186802,-0.005230,0.006997,0.249902,0,0);}
.me6_c01020{transform:matrix(0.187100,-0.003368,0.004499,0.249960,0,0);-ms-transform:matrix(0.187100,-0.003368,0.004499,0.249960,0,0);-webkit-transform:matrix(0.187100,-0.003368,0.004499,0.249960,0,0);}
.m50_c01020{transform:matrix(0.187187,-0.005241,0.006997,0.249902,0,0);-ms-transform:matrix(0.187187,-0.005241,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187187,-0.005241,0.006997,0.249902,0,0);}
.m28_c01020{transform:matrix(0.187696,-0.005256,0.006997,0.249902,0,0);-ms-transform:matrix(0.187696,-0.005256,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187696,-0.005256,0.006997,0.249902,0,0);}
.mb3_c01020{transform:matrix(0.188170,-0.003387,0.004499,0.249960,0,0);-ms-transform:matrix(0.188170,-0.003387,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188170,-0.003387,0.004499,0.249960,0,0);}
.m53_c01020{transform:matrix(0.188516,-0.005278,0.006997,0.249902,0,0);-ms-transform:matrix(0.188516,-0.005278,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188516,-0.005278,0.006997,0.249902,0,0);}
.mde_c01020{transform:matrix(0.188679,-0.003396,0.004499,0.249960,0,0);-ms-transform:matrix(0.188679,-0.003396,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188679,-0.003396,0.004499,0.249960,0,0);}
.m65_c01020{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);}
.m54_c01020{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);}
.m83_c01020{transform:matrix(0.190316,-0.002664,0.003500,0.249976,0,0);-ms-transform:matrix(0.190316,-0.002664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190316,-0.002664,0.003500,0.249976,0,0);}
.m96_c01020{transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);-ms-transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191311,-0.002678,0.003500,0.249976,0,0);}
.m1b_c01020{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);}
.m70_c01020{transform:matrix(0.192226,-0.002691,0.003500,0.249976,0,0);-ms-transform:matrix(0.192226,-0.002691,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192226,-0.002691,0.003500,0.249976,0,0);}
.mb0_c01020{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);}
.mb8_c01020{transform:matrix(0.192344,-0.003462,0.004499,0.249960,0,0);-ms-transform:matrix(0.192344,-0.003462,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192344,-0.003462,0.004499,0.249960,0,0);}
.m7c_c01020{transform:matrix(0.193311,-0.002706,0.003500,0.249976,0,0);-ms-transform:matrix(0.193311,-0.002706,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193311,-0.002706,0.003500,0.249976,0,0);}
.m56_c01020{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);}
.m17_c01020{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);}
.m5e_c01020{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);}
.m3d_c01020{transform:matrix(0.194444,-0.005444,0.006997,0.249902,0,0);-ms-transform:matrix(0.194444,-0.005444,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194444,-0.005444,0.006997,0.249902,0,0);}
.m38_c01020{transform:matrix(0.194454,-0.005445,0.006997,0.249902,0,0);-ms-transform:matrix(0.194454,-0.005445,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194454,-0.005445,0.006997,0.249902,0,0);}
.m9d_c01020{transform:matrix(0.195123,-0.002927,0.003750,0.249972,0,0);-ms-transform:matrix(0.195123,-0.002927,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195123,-0.002927,0.003750,0.249972,0,0);}
.m84_c01020{transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);-ms-transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);}
.m92_c01020{transform:matrix(0.196536,-0.002752,0.003500,0.249976,0,0);-ms-transform:matrix(0.196536,-0.002752,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196536,-0.002752,0.003500,0.249976,0,0);}
.m9b_c01020{transform:matrix(0.196841,-0.002756,0.003500,0.249976,0,0);-ms-transform:matrix(0.196841,-0.002756,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196841,-0.002756,0.003500,0.249976,0,0);}
.mce_c01020{transform:matrix(0.197363,-0.003553,0.004499,0.249960,0,0);-ms-transform:matrix(0.197363,-0.003553,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197363,-0.003553,0.004499,0.249960,0,0);}
.mda_c01020{transform:matrix(0.198103,-0.003566,0.004499,0.249960,0,0);-ms-transform:matrix(0.198103,-0.003566,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198103,-0.003566,0.004499,0.249960,0,0);}
.m3b_c01020{transform:matrix(0.198917,-0.005570,0.006997,0.249902,0,0);-ms-transform:matrix(0.198917,-0.005570,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198917,-0.005570,0.006997,0.249902,0,0);}
.m3a_c01020{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);}
.m94_c01020{transform:matrix(0.199575,-0.002794,0.003500,0.249976,0,0);-ms-transform:matrix(0.199575,-0.002794,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199575,-0.002794,0.003500,0.249976,0,0);}
.m2b_c01020{transform:matrix(0.200087,-0.005602,0.006997,0.249902,0,0);-ms-transform:matrix(0.200087,-0.005602,0.006997,0.249902,0,0);-webkit-transform:matrix(0.200087,-0.005602,0.006997,0.249902,0,0);}
.m88_c01020{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);}
.m7b_c01020{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);}
.ma7_c01020{transform:matrix(0.201567,-0.003024,0.003750,0.249972,0,0);-ms-transform:matrix(0.201567,-0.003024,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201567,-0.003024,0.003750,0.249972,0,0);}
.m6a_c01020{transform:matrix(0.201792,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201792,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201792,-0.003027,0.003750,0.249972,0,0);}
.m19_c01020{transform:matrix(0.202270,-0.004248,0.005249,0.249945,0,0);-ms-transform:matrix(0.202270,-0.004248,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202270,-0.004248,0.005249,0.249945,0,0);}
.mdf_c01020{transform:matrix(0.202367,-0.003643,0.004499,0.249960,0,0);-ms-transform:matrix(0.202367,-0.003643,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202367,-0.003643,0.004499,0.249960,0,0);}
.mbb_c01020{transform:matrix(0.202537,-0.003646,0.004499,0.249960,0,0);-ms-transform:matrix(0.202537,-0.003646,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202537,-0.003646,0.004499,0.249960,0,0);}
.m74_c01020{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);}
.mb7_c01020{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);}
.m40_c01020{transform:matrix(0.204670,-0.005731,0.006997,0.249902,0,0);-ms-transform:matrix(0.204670,-0.005731,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204670,-0.005731,0.006997,0.249902,0,0);}
.ma2_c01020{transform:matrix(0.204942,-0.003074,0.003750,0.249972,0,0);-ms-transform:matrix(0.204942,-0.003074,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204942,-0.003074,0.003750,0.249972,0,0);}
.m8b_c01020{transform:matrix(0.205525,-0.002877,0.003500,0.249976,0,0);-ms-transform:matrix(0.205525,-0.002877,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205525,-0.002877,0.003500,0.249976,0,0);}
.m35_c01020{transform:matrix(0.206019,-0.005769,0.006997,0.249902,0,0);-ms-transform:matrix(0.206019,-0.005769,0.006997,0.249902,0,0);-webkit-transform:matrix(0.206019,-0.005769,0.006997,0.249902,0,0);}
.me1_c01020{transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);-ms-transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);}
.me5_c01020{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);}
.md4_c01020{transform:matrix(0.207381,-0.003733,0.004499,0.249960,0,0);-ms-transform:matrix(0.207381,-0.003733,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207381,-0.003733,0.004499,0.249960,0,0);}
.m64_c01020{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);}
.m99_c01020{transform:matrix(0.208890,-0.002924,0.003500,0.249976,0,0);-ms-transform:matrix(0.208890,-0.002924,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208890,-0.002924,0.003500,0.249976,0,0);}
.m58_c01020{transform:matrix(0.208898,-0.005849,0.006997,0.249902,0,0);-ms-transform:matrix(0.208898,-0.005849,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208898,-0.005849,0.006997,0.249902,0,0);}
.m4f_c01020{transform:matrix(0.209648,-0.005870,0.006997,0.249902,0,0);-ms-transform:matrix(0.209648,-0.005870,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209648,-0.005870,0.006997,0.249902,0,0);}
.m93_c01020{transform:matrix(0.210534,-0.002947,0.003500,0.249976,0,0);-ms-transform:matrix(0.210534,-0.002947,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210534,-0.002947,0.003500,0.249976,0,0);}
.mb_c01020{transform:matrix(0.211268,-0.004437,0.005249,0.249945,0,0);-ms-transform:matrix(0.211268,-0.004437,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211268,-0.004437,0.005249,0.249945,0,0);}
.m2d_c01020{transform:matrix(0.211282,-0.005916,0.006997,0.249902,0,0);-ms-transform:matrix(0.211282,-0.005916,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211282,-0.005916,0.006997,0.249902,0,0);}
.m9a_c01020{transform:matrix(0.211504,-0.002961,0.003500,0.249976,0,0);-ms-transform:matrix(0.211504,-0.002961,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211504,-0.002961,0.003500,0.249976,0,0);}
.m6_c01020{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);}
.mc4_c01020{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);}
.mac_c01020{transform:matrix(0.213115,-0.003836,0.004499,0.249960,0,0);-ms-transform:matrix(0.213115,-0.003836,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213115,-0.003836,0.004499,0.249960,0,0);}
.me4_c01020{transform:matrix(0.213535,-0.003844,0.004499,0.249960,0,0);-ms-transform:matrix(0.213535,-0.003844,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213535,-0.003844,0.004499,0.249960,0,0);}
.mbe_c01020{transform:matrix(0.213635,-0.003845,0.004499,0.249960,0,0);-ms-transform:matrix(0.213635,-0.003845,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213635,-0.003845,0.004499,0.249960,0,0);}
.mb6_c01020{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);}
.maf_c01020{transform:matrix(0.215385,-0.003877,0.004499,0.249960,0,0);-ms-transform:matrix(0.215385,-0.003877,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215385,-0.003877,0.004499,0.249960,0,0);}
.m3c_c01020{transform:matrix(0.215785,-0.006042,0.006997,0.249902,0,0);-ms-transform:matrix(0.215785,-0.006042,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215785,-0.006042,0.006997,0.249902,0,0);}
.m81_c01020{transform:matrix(0.217004,-0.003038,0.003500,0.249976,0,0);-ms-transform:matrix(0.217004,-0.003038,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217004,-0.003038,0.003500,0.249976,0,0);}
.m22_c01020{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);}
.m75_c01020{transform:matrix(0.218439,-0.003058,0.003500,0.249976,0,0);-ms-transform:matrix(0.218439,-0.003058,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218439,-0.003058,0.003500,0.249976,0,0);}
.mb4_c01020{transform:matrix(0.218765,-0.003938,0.004499,0.249960,0,0);-ms-transform:matrix(0.218765,-0.003938,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218765,-0.003938,0.004499,0.249960,0,0);}
.me0_c01020{transform:matrix(0.219140,-0.003945,0.004499,0.249960,0,0);-ms-transform:matrix(0.219140,-0.003945,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219140,-0.003945,0.004499,0.249960,0,0);}
.m71_c01020{transform:matrix(0.220258,-0.003084,0.003500,0.249976,0,0);-ms-transform:matrix(0.220258,-0.003084,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220258,-0.003084,0.003500,0.249976,0,0);}
.mc8_c01020{transform:matrix(0.221879,-0.003994,0.004499,0.249960,0,0);-ms-transform:matrix(0.221879,-0.003994,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221879,-0.003994,0.004499,0.249960,0,0);}
.m42_c01020{transform:matrix(0.222833,-0.006239,0.006997,0.249902,0,0);-ms-transform:matrix(0.222833,-0.006239,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222833,-0.006239,0.006997,0.249902,0,0);}
.mc7_c01020{transform:matrix(0.223104,-0.004016,0.004499,0.249960,0,0);-ms-transform:matrix(0.223104,-0.004016,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223104,-0.004016,0.004499,0.249960,0,0);}
.md7_c01020{transform:matrix(0.223249,-0.004018,0.004499,0.249960,0,0);-ms-transform:matrix(0.223249,-0.004018,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223249,-0.004018,0.004499,0.249960,0,0);}
.m97_c01020{transform:matrix(0.225563,-0.003158,0.003500,0.249976,0,0);-ms-transform:matrix(0.225563,-0.003158,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225563,-0.003158,0.003500,0.249976,0,0);}
.m51_c01020{transform:matrix(0.226096,-0.006331,0.006997,0.249902,0,0);-ms-transform:matrix(0.226096,-0.006331,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226096,-0.006331,0.006997,0.249902,0,0);}
.mdd_c01020{transform:matrix(0.226848,-0.004083,0.004499,0.249960,0,0);-ms-transform:matrix(0.226848,-0.004083,0.004499,0.249960,0,0);-webkit-transform:matrix(0.226848,-0.004083,0.004499,0.249960,0,0);}
.me8_c01020{transform:matrix(0.228498,-0.004113,0.004499,0.249960,0,0);-ms-transform:matrix(0.228498,-0.004113,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228498,-0.004113,0.004499,0.249960,0,0);}
.m49_c01020{transform:matrix(0.228565,-0.006400,0.006997,0.249902,0,0);-ms-transform:matrix(0.228565,-0.006400,0.006997,0.249902,0,0);-webkit-transform:matrix(0.228565,-0.006400,0.006997,0.249902,0,0);}
.ma9_c01020{transform:matrix(0.229109,-0.005499,0.005998,0.249928,0,0);-ms-transform:matrix(0.229109,-0.005499,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229109,-0.005499,0.005998,0.249928,0,0);}
.mc5_c01020{transform:matrix(0.231677,-0.004170,0.004499,0.249960,0,0);-ms-transform:matrix(0.231677,-0.004170,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231677,-0.004170,0.004499,0.249960,0,0);}
.mbf_c01020{transform:matrix(0.234022,-0.004212,0.004499,0.249960,0,0);-ms-transform:matrix(0.234022,-0.004212,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234022,-0.004212,0.004499,0.249960,0,0);}
.maa_c01020{transform:matrix(0.239986,-0.004320,0.004499,0.249960,0,0);-ms-transform:matrix(0.239986,-0.004320,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239986,-0.004320,0.004499,0.249960,0,0);}
.m47_c01020{transform:matrix(0.241460,-0.006761,0.006997,0.249902,0,0);-ms-transform:matrix(0.241460,-0.006761,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241460,-0.006761,0.006997,0.249902,0,0);}
.md9_c01020{transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);-ms-transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);-webkit-transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);}
.m3f_c01020{transform:matrix(0.246303,-0.006896,0.006997,0.249902,0,0);-ms-transform:matrix(0.246303,-0.006896,0.006997,0.249902,0,0);-webkit-transform:matrix(0.246303,-0.006896,0.006997,0.249902,0,0);}
.mc6_c01020{transform:matrix(0.248125,-0.004466,0.004499,0.249960,0,0);-ms-transform:matrix(0.248125,-0.004466,0.004499,0.249960,0,0);-webkit-transform:matrix(0.248125,-0.004466,0.004499,0.249960,0,0);}
.m36_c01020{transform:matrix(0.248932,-0.006970,0.006997,0.249902,0,0);-ms-transform:matrix(0.248932,-0.006970,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248932,-0.006970,0.006997,0.249902,0,0);}
.md5_c01020{transform:matrix(0.251119,-0.004520,0.004499,0.249960,0,0);-ms-transform:matrix(0.251119,-0.004520,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251119,-0.004520,0.004499,0.249960,0,0);}
.mc9_c01020{transform:matrix(0.255364,-0.004597,0.004499,0.249960,0,0);-ms-transform:matrix(0.255364,-0.004597,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255364,-0.004597,0.004499,0.249960,0,0);}
.m5d_c01020{transform:matrix(0.256051,-0.003841,0.003750,0.249972,0,0);-ms-transform:matrix(0.256051,-0.003841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256051,-0.003841,0.003750,0.249972,0,0);}
.md8_c01020{transform:matrix(0.260218,-0.004684,0.004499,0.249960,0,0);-ms-transform:matrix(0.260218,-0.004684,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260218,-0.004684,0.004499,0.249960,0,0);}
.mab_c01020{transform:matrix(0.261893,-0.004714,0.004499,0.249960,0,0);-ms-transform:matrix(0.261893,-0.004714,0.004499,0.249960,0,0);-webkit-transform:matrix(0.261893,-0.004714,0.004499,0.249960,0,0);}
.m18_c01020{transform:matrix(0.264907,-0.005563,0.005249,0.249945,0,0);-ms-transform:matrix(0.264907,-0.005563,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264907,-0.005563,0.005249,0.249945,0,0);}
.m7a_c01020{transform:matrix(0.267029,-0.003738,0.003500,0.249976,0,0);-ms-transform:matrix(0.267029,-0.003738,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267029,-0.003738,0.003500,0.249976,0,0);}
.m31_c01020{transform:matrix(0.268145,-0.007508,0.006997,0.249902,0,0);-ms-transform:matrix(0.268145,-0.007508,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268145,-0.007508,0.006997,0.249902,0,0);}
.m5c_c01020{transform:matrix(0.268290,-0.007512,0.006997,0.249902,0,0);-ms-transform:matrix(0.268290,-0.007512,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268290,-0.007512,0.006997,0.249902,0,0);}
.m72_c01020{transform:matrix(0.268434,-0.003758,0.003500,0.249976,0,0);-ms-transform:matrix(0.268434,-0.003758,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268434,-0.003758,0.003500,0.249976,0,0);}
.m34_c01020{transform:matrix(0.270654,-0.007578,0.006997,0.249902,0,0);-ms-transform:matrix(0.270654,-0.007578,0.006997,0.249902,0,0);-webkit-transform:matrix(0.270654,-0.007578,0.006997,0.249902,0,0);}
.me3_c01020{transform:matrix(0.270801,-0.004874,0.004499,0.249960,0,0);-ms-transform:matrix(0.270801,-0.004874,0.004499,0.249960,0,0);-webkit-transform:matrix(0.270801,-0.004874,0.004499,0.249960,0,0);}
.mba_c01020{transform:matrix(0.271431,-0.004886,0.004499,0.249960,0,0);-ms-transform:matrix(0.271431,-0.004886,0.004499,0.249960,0,0);-webkit-transform:matrix(0.271431,-0.004886,0.004499,0.249960,0,0);}
.m9_c01020{transform:matrix(0.276714,-0.005811,0.005249,0.249945,0,0);-ms-transform:matrix(0.276714,-0.005811,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276714,-0.005811,0.005249,0.249945,0,0);}
.m80_c01020{transform:matrix(0.279128,-0.003908,0.003500,0.249976,0,0);-ms-transform:matrix(0.279128,-0.003908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279128,-0.003908,0.003500,0.249976,0,0);}
.mca_c01020{transform:matrix(0.284974,-0.005130,0.004499,0.249960,0,0);-ms-transform:matrix(0.284974,-0.005130,0.004499,0.249960,0,0);-webkit-transform:matrix(0.284974,-0.005130,0.004499,0.249960,0,0);}
.m6e_c01020{transform:matrix(0.287462,-0.004024,0.003500,0.249976,0,0);-ms-transform:matrix(0.287462,-0.004024,0.003500,0.249976,0,0);-webkit-transform:matrix(0.287462,-0.004024,0.003500,0.249976,0,0);}
.m24_c01020{transform:matrix(0.289062,-0.008094,0.006997,0.249902,0,0);-ms-transform:matrix(0.289062,-0.008094,0.006997,0.249902,0,0);-webkit-transform:matrix(0.289062,-0.008094,0.006997,0.249902,0,0);}
.meb_c01020{transform:matrix(0.299606,-0.005393,0.004499,0.249960,0,0);-ms-transform:matrix(0.299606,-0.005393,0.004499,0.249960,0,0);-webkit-transform:matrix(0.299606,-0.005393,0.004499,0.249960,0,0);}
.mbc_c01020{transform:matrix(0.302046,-0.005437,0.004499,0.249960,0,0);-ms-transform:matrix(0.302046,-0.005437,0.004499,0.249960,0,0);-webkit-transform:matrix(0.302046,-0.005437,0.004499,0.249960,0,0);}
.m7e_c01020{transform:matrix(0.304845,-0.004268,0.003500,0.249976,0,0);-ms-transform:matrix(0.304845,-0.004268,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304845,-0.004268,0.003500,0.249976,0,0);}
.m43_c01020{transform:matrix(0.305185,-0.008545,0.006997,0.249902,0,0);-ms-transform:matrix(0.305185,-0.008545,0.006997,0.249902,0,0);-webkit-transform:matrix(0.305185,-0.008545,0.006997,0.249902,0,0);}
.m21_c01020{transform:matrix(0.308959,-0.008651,0.006997,0.249902,0,0);-ms-transform:matrix(0.308959,-0.008651,0.006997,0.249902,0,0);-webkit-transform:matrix(0.308959,-0.008651,0.006997,0.249902,0,0);}
.m4d_c01020{transform:matrix(0.313792,-0.008786,0.006997,0.249902,0,0);-ms-transform:matrix(0.313792,-0.008786,0.006997,0.249902,0,0);-webkit-transform:matrix(0.313792,-0.008786,0.006997,0.249902,0,0);}
.m6c_c01020{transform:matrix(0.319074,-0.004786,0.003750,0.249972,0,0);-ms-transform:matrix(0.319074,-0.004786,0.003750,0.249972,0,0);-webkit-transform:matrix(0.319074,-0.004786,0.003750,0.249972,0,0);}
.m7f_c01020{transform:matrix(0.326358,-0.004569,0.003500,0.249976,0,0);-ms-transform:matrix(0.326358,-0.004569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.326358,-0.004569,0.003500,0.249976,0,0);}
.mbd_c01020{transform:matrix(0.327432,-0.005894,0.004499,0.249960,0,0);-ms-transform:matrix(0.327432,-0.005894,0.004499,0.249960,0,0);-webkit-transform:matrix(0.327432,-0.005894,0.004499,0.249960,0,0);}
.mdc_c01020{transform:matrix(0.331371,-0.005965,0.004499,0.249960,0,0);-ms-transform:matrix(0.331371,-0.005965,0.004499,0.249960,0,0);-webkit-transform:matrix(0.331371,-0.005965,0.004499,0.249960,0,0);}
.m41_c01020{transform:matrix(0.333079,-0.009326,0.006997,0.249902,0,0);-ms-transform:matrix(0.333079,-0.009326,0.006997,0.249902,0,0);-webkit-transform:matrix(0.333079,-0.009326,0.006997,0.249902,0,0);}
.m78_c01020{transform:matrix(0.334167,-0.004678,0.003500,0.249976,0,0);-ms-transform:matrix(0.334167,-0.004678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.334167,-0.004678,0.003500,0.249976,0,0);}
.m5_c01020{transform:matrix(0.343196,-0.005148,0.003750,0.249972,0,0);-ms-transform:matrix(0.343196,-0.005148,0.003750,0.249972,0,0);-webkit-transform:matrix(0.343196,-0.005148,0.003750,0.249972,0,0);}
.m37_c01020{transform:matrix(0.346394,-0.009699,0.006997,0.249902,0,0);-ms-transform:matrix(0.346394,-0.009699,0.006997,0.249902,0,0);-webkit-transform:matrix(0.346394,-0.009699,0.006997,0.249902,0,0);}
.ma_c01020{transform:matrix(0.347318,-0.007294,0.005249,0.249945,0,0);-ms-transform:matrix(0.347318,-0.007294,0.005249,0.249945,0,0);-webkit-transform:matrix(0.347318,-0.007294,0.005249,0.249945,0,0);}
.m52_c01020{transform:matrix(0.347474,-0.009729,0.006997,0.249902,0,0);-ms-transform:matrix(0.347474,-0.009729,0.006997,0.249902,0,0);-webkit-transform:matrix(0.347474,-0.009729,0.006997,0.249902,0,0);}
.m73_c01020{transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);-ms-transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);}
.m8_c01020{transform:matrix(0.363910,-0.007642,0.005249,0.249945,0,0);-ms-transform:matrix(0.363910,-0.007642,0.005249,0.249945,0,0);-webkit-transform:matrix(0.363910,-0.007642,0.005249,0.249945,0,0);}
.mc2_c01020{transform:matrix(0.371350,-0.006684,0.004499,0.249960,0,0);-ms-transform:matrix(0.371350,-0.006684,0.004499,0.249960,0,0);-webkit-transform:matrix(0.371350,-0.006684,0.004499,0.249960,0,0);}
.mcb_c01020{transform:matrix(0.378694,-0.006816,0.004499,0.249960,0,0);-ms-transform:matrix(0.378694,-0.006816,0.004499,0.249960,0,0);-webkit-transform:matrix(0.378694,-0.006816,0.004499,0.249960,0,0);}
.m8e_c01020{transform:matrix(0.380588,-0.005328,0.003500,0.249976,0,0);-ms-transform:matrix(0.380588,-0.005328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.380588,-0.005328,0.003500,0.249976,0,0);}
.m79_c01020{transform:matrix(0.381518,-0.005341,0.003500,0.249976,0,0);-ms-transform:matrix(0.381518,-0.005341,0.003500,0.249976,0,0);-webkit-transform:matrix(0.381518,-0.005341,0.003500,0.249976,0,0);}
.m77_c01020{transform:matrix(0.389997,-0.005460,0.003500,0.249976,0,0);-ms-transform:matrix(0.389997,-0.005460,0.003500,0.249976,0,0);-webkit-transform:matrix(0.389997,-0.005460,0.003500,0.249976,0,0);}
.m32_c01020{transform:matrix(0.391557,-0.010964,0.006997,0.249902,0,0);-ms-transform:matrix(0.391557,-0.010964,0.006997,0.249902,0,0);-webkit-transform:matrix(0.391557,-0.010964,0.006997,0.249902,0,0);}
.m59_c01020{transform:matrix(0.392106,-0.010979,0.006997,0.249902,0,0);-ms-transform:matrix(0.392106,-0.010979,0.006997,0.249902,0,0);-webkit-transform:matrix(0.392106,-0.010979,0.006997,0.249902,0,0);}
.m29_c01020{transform:matrix(0.394540,-0.011047,0.006997,0.249902,0,0);-ms-transform:matrix(0.394540,-0.011047,0.006997,0.249902,0,0);-webkit-transform:matrix(0.394540,-0.011047,0.006997,0.249902,0,0);}
.m3_c01020{transform:matrix(0.394781,-0.005922,0.003750,0.249972,0,0);-ms-transform:matrix(0.394781,-0.005922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.394781,-0.005922,0.003750,0.249972,0,0);}
.m8d_c01020{transform:matrix(0.396176,-0.005546,0.003500,0.249976,0,0);-ms-transform:matrix(0.396176,-0.005546,0.003500,0.249976,0,0);-webkit-transform:matrix(0.396176,-0.005546,0.003500,0.249976,0,0);}
.m2c_c01020{transform:matrix(0.397494,-0.011130,0.006997,0.249902,0,0);-ms-transform:matrix(0.397494,-0.011130,0.006997,0.249902,0,0);-webkit-transform:matrix(0.397494,-0.011130,0.006997,0.249902,0,0);}
.m4_c01020{transform:matrix(0.398820,-0.005982,0.003750,0.249972,0,0);-ms-transform:matrix(0.398820,-0.005982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.398820,-0.005982,0.003750,0.249972,0,0);}
.m46_c01020{transform:matrix(0.408190,-0.011429,0.006997,0.249902,0,0);-ms-transform:matrix(0.408190,-0.011429,0.006997,0.249902,0,0);-webkit-transform:matrix(0.408190,-0.011429,0.006997,0.249902,0,0);}
.m33_c01020{transform:matrix(0.411359,-0.011518,0.006997,0.249902,0,0);-ms-transform:matrix(0.411359,-0.011518,0.006997,0.249902,0,0);-webkit-transform:matrix(0.411359,-0.011518,0.006997,0.249902,0,0);}
.m5a_c01020{transform:matrix(0.420760,-0.011781,0.006997,0.249902,0,0);-ms-transform:matrix(0.420760,-0.011781,0.006997,0.249902,0,0);-webkit-transform:matrix(0.420760,-0.011781,0.006997,0.249902,0,0);}
.m6f_c01020{transform:matrix(0.423269,-0.005926,0.003500,0.249976,0,0);-ms-transform:matrix(0.423269,-0.005926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.423269,-0.005926,0.003500,0.249976,0,0);}
.m25_c01020{transform:matrix(0.426813,-0.011951,0.006997,0.249902,0,0);-ms-transform:matrix(0.426813,-0.011951,0.006997,0.249902,0,0);-webkit-transform:matrix(0.426813,-0.011951,0.006997,0.249902,0,0);}
.m0_c01020{transform:matrix(0.437890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437890,0.000000,0.000000,0.250000,0,0);}
.m4c_c01020{transform:matrix(0.444146,-0.012436,0.006997,0.249902,0,0);-ms-transform:matrix(0.444146,-0.012436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.444146,-0.012436,0.006997,0.249902,0,0);}
.m20_c01020{transform:matrix(0.445715,-0.012480,0.006997,0.249902,0,0);-ms-transform:matrix(0.445715,-0.012480,0.006997,0.249902,0,0);-webkit-transform:matrix(0.445715,-0.012480,0.006997,0.249902,0,0);}
.m57_c01020{transform:matrix(0.453637,-0.012702,0.006997,0.249902,0,0);-ms-transform:matrix(0.453637,-0.012702,0.006997,0.249902,0,0);-webkit-transform:matrix(0.453637,-0.012702,0.006997,0.249902,0,0);}
.m2_c01020{transform:matrix(0.458828,-0.006882,0.003750,0.249972,0,0);-ms-transform:matrix(0.458828,-0.006882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.458828,-0.006882,0.003750,0.249972,0,0);}
.m5b_c01020{transform:matrix(0.459670,-0.012871,0.006997,0.249902,0,0);-ms-transform:matrix(0.459670,-0.012871,0.006997,0.249902,0,0);-webkit-transform:matrix(0.459670,-0.012871,0.006997,0.249902,0,0);}
.mea_c01020{transform:matrix(0.463860,-0.008349,0.004499,0.249960,0,0);-ms-transform:matrix(0.463860,-0.008349,0.004499,0.249960,0,0);-webkit-transform:matrix(0.463860,-0.008349,0.004499,0.249960,0,0);}
.m68_c01020{transform:matrix(0.465768,-0.006987,0.003750,0.249972,0,0);-ms-transform:matrix(0.465768,-0.006987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.465768,-0.006987,0.003750,0.249972,0,0);}
.m30_c01020{transform:matrix(0.469761,-0.013153,0.006997,0.249902,0,0);-ms-transform:matrix(0.469761,-0.013153,0.006997,0.249902,0,0);-webkit-transform:matrix(0.469761,-0.013153,0.006997,0.249902,0,0);}
.m4b_c01020{transform:matrix(0.479707,-0.013432,0.006997,0.249902,0,0);-ms-transform:matrix(0.479707,-0.013432,0.006997,0.249902,0,0);-webkit-transform:matrix(0.479707,-0.013432,0.006997,0.249902,0,0);}
.mb9_c01020{transform:matrix(0.546132,-0.009830,0.004499,0.249960,0,0);-ms-transform:matrix(0.546132,-0.009830,0.004499,0.249960,0,0);-webkit-transform:matrix(0.546132,-0.009830,0.004499,0.249960,0,0);}
.mec_c01020{transform:matrix(0.582916,-0.010492,0.004499,0.249960,0,0);-ms-transform:matrix(0.582916,-0.010492,0.004499,0.249960,0,0);-webkit-transform:matrix(0.582916,-0.010492,0.004499,0.249960,0,0);}
.m76_c01020{transform:matrix(0.612415,-0.008574,0.003500,0.249976,0,0);-ms-transform:matrix(0.612415,-0.008574,0.003500,0.249976,0,0);-webkit-transform:matrix(0.612415,-0.008574,0.003500,0.249976,0,0);}
.me9_c01020{transform:matrix(0.632797,-0.011390,0.004499,0.249960,0,0);-ms-transform:matrix(0.632797,-0.011390,0.004499,0.249960,0,0);-webkit-transform:matrix(0.632797,-0.011390,0.004499,0.249960,0,0);}
.m6b_c01020{transform:matrix(0.705191,-0.010578,0.003750,0.249972,0,0);-ms-transform:matrix(0.705191,-0.010578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.705191,-0.010578,0.003750,0.249972,0,0);}
.m1_c01020{transform:matrix(0.773908,-0.011609,0.003750,0.249972,0,0);-ms-transform:matrix(0.773908,-0.011609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.773908,-0.011609,0.003750,0.249972,0,0);}
.m4a_c01020{transform:matrix(0.795033,-0.022261,0.006997,0.249902,0,0);-ms-transform:matrix(0.795033,-0.022261,0.006997,0.249902,0,0);-webkit-transform:matrix(0.795033,-0.022261,0.006997,0.249902,0,0);}
.m9c_c01020{transform:matrix(0.813010,-0.011382,0.003500,0.249976,0,0);-ms-transform:matrix(0.813010,-0.011382,0.003500,0.249976,0,0);-webkit-transform:matrix(0.813010,-0.011382,0.003500,0.249976,0,0);}
.med_c01020{transform:matrix(0.821735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821735,0.000000,0.000000,0.250000,0,0);}
.m44_c01020{transform:matrix(0.831609,-0.023285,0.006997,0.249902,0,0);-ms-transform:matrix(0.831609,-0.023285,0.006997,0.249902,0,0);-webkit-transform:matrix(0.831609,-0.023285,0.006997,0.249902,0,0);}
.md6_c01020{transform:matrix(0.891086,-0.016040,0.004499,0.249960,0,0);-ms-transform:matrix(0.891086,-0.016040,0.004499,0.249960,0,0);-webkit-transform:matrix(0.891086,-0.016040,0.004499,0.249960,0,0);}
.mee_c01020{transform:matrix(1.021955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021955,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls0_c01020{letter-spacing:0.000000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:0.000000px;}
._0_c01020{width:32.639890px;}
.fc0_c01020{color:transparent;}
.fs19_c01020{font-size:47.250000px;}
.fs15_c01020{font-size:51.458334px;}
.fs14_c01020{font-size:52.508504px;}
.fs16_c01020{font-size:59.859695px;}
.fs8_c01020{font-size:68.276749px;}
.fs12_c01020{font-size:69.306791px;}
.fs5_c01020{font-size:69.315279px;}
.fs18_c01020{font-size:70.350000px;}
.fse_c01020{font-size:70.356894px;}
.fs7_c01020{font-size:70.377572px;}
.fs11_c01020{font-size:71.406997px;}
.fs6_c01020{font-size:71.427983px;}
.fs10_c01020{font-size:72.457100px;}
.fsc_c01020{font-size:74.558386px;}
.fsb_c01020{font-size:75.608505px;}
.fs4_c01020{font-size:75.616668px;}
.fs17_c01020{font-size:80.863097px;}
.fs2_c01020{font-size:87.159804px;}
.fs9_c01020{font-size:87.184156px;}
.fs3_c01020{font-size:89.269677px;}
.fsd_c01020{font-size:91.360276px;}
.fsa_c01020{font-size:91.385802px;}
.fsf_c01020{font-size:94.509261px;}
.fs13_c01020{font-size:237.368333px;}
.fs1_c01020{font-size:253.078467px;}
.fs0_c01020{font-size:299.250000px;}
.y0_c01020{bottom:0.000000px;}
.yf0_c01020{bottom:89.979000px;}
.yef_c01020{bottom:104.275500px;}
.ye5_c01020{bottom:165.508371px;}
.ye6_c01020{bottom:165.865104px;}
.ye7_c01020{bottom:166.999242px;}
.ye8_c01020{bottom:167.476668px;}
.ye9_c01020{bottom:167.970588px;}
.yea_c01020{bottom:168.197937px;}
.yeb_c01020{bottom:169.185777px;}
.yec_c01020{bottom:169.671639px;}
.yed_c01020{bottom:170.149281px;}
.yee_c01020{bottom:170.425395px;}
.ye3_c01020{bottom:174.417711px;}
.ye4_c01020{bottom:178.175295px;}
.yd3_c01020{bottom:183.333000px;}
.yd4_c01020{bottom:183.692586px;}
.yd5_c01020{bottom:184.214172px;}
.yd6_c01020{bottom:184.909206px;}
.yd7_c01020{bottom:185.129445px;}
.yd8_c01020{bottom:186.343716px;}
.yd9_c01020{bottom:186.959883px;}
.yda_c01020{bottom:187.528314px;}
.ydb_c01020{bottom:187.926510px;}
.ydc_c01020{bottom:188.983182px;}
.ydd_c01020{bottom:189.141645px;}
.yde_c01020{bottom:189.467292px;}
.ydf_c01020{bottom:189.929532px;}
.ye0_c01020{bottom:190.993440px;}
.ye1_c01020{bottom:191.300457px;}
.ye2_c01020{bottom:192.343521px;}
.ycc_c01020{bottom:198.457647px;}
.ycd_c01020{bottom:204.389814px;}
.yce_c01020{bottom:205.223904px;}
.ycf_c01020{bottom:205.609587px;}
.yd0_c01020{bottom:207.138696px;}
.yd1_c01020{bottom:208.603299px;}
.yd2_c01020{bottom:210.885666px;}
.ybb_c01020{bottom:219.238479px;}
.ybc_c01020{bottom:219.938691px;}
.ybd_c01020{bottom:220.228743px;}
.ybe_c01020{bottom:221.145630px;}
.ybf_c01020{bottom:221.660334px;}
.yc0_c01020{bottom:221.854386px;}
.yc1_c01020{bottom:222.255786px;}
.yc2_c01020{bottom:222.584754px;}
.yc3_c01020{bottom:222.983724px;}
.yc4_c01020{bottom:223.251531px;}
.yc5_c01020{bottom:223.636179px;}
.yc6_c01020{bottom:224.452989px;}
.yc7_c01020{bottom:225.214362px;}
.yc8_c01020{bottom:225.599226px;}
.yc9_c01020{bottom:225.833517px;}
.yca_c01020{bottom:226.485810px;}
.ycb_c01020{bottom:227.444892px;}
.yab_c01020{bottom:236.793000px;}
.yac_c01020{bottom:237.167085px;}
.yad_c01020{bottom:237.511227px;}
.yae_c01020{bottom:238.547190px;}
.yaf_c01020{bottom:238.921518px;}
.yb0_c01020{bottom:239.256642px;}
.yb1_c01020{bottom:239.718612px;}
.yb2_c01020{bottom:240.030030px;}
.yb3_c01020{bottom:241.070691px;}
.yb4_c01020{bottom:241.731111px;}
.yb5_c01020{bottom:242.440482px;}
.yb6_c01020{bottom:242.664177px;}
.yb7_c01020{bottom:243.165459px;}
.yb8_c01020{bottom:244.283502px;}
.yb9_c01020{bottom:244.842753px;}
.yba_c01020{bottom:245.400438px;}
.ya9_c01020{bottom:247.428000px;}
.yaa_c01020{bottom:258.495516px;}
.y9e_c01020{bottom:296.733000px;}
.y9f_c01020{bottom:297.470505px;}
.ya0_c01020{bottom:297.887678px;}
.ya1_c01020{bottom:298.766303px;}
.ya2_c01020{bottom:299.182800px;}
.ya3_c01020{bottom:299.961278px;}
.ya4_c01020{bottom:301.362533px;}
.ya5_c01020{bottom:301.642073px;}
.ya6_c01020{bottom:301.994513px;}
.ya7_c01020{bottom:302.662808px;}
.ya8_c01020{bottom:303.084143px;}
.y91_c01020{bottom:320.209392px;}
.y92_c01020{bottom:320.525379px;}
.y93_c01020{bottom:320.910042px;}
.y94_c01020{bottom:321.671892px;}
.y95_c01020{bottom:322.899669px;}
.y96_c01020{bottom:323.232087px;}
.y97_c01020{bottom:323.702067px;}
.y98_c01020{bottom:324.044985px;}
.y99_c01020{bottom:324.657168px;}
.y9a_c01020{bottom:325.419060px;}
.y9b_c01020{bottom:325.750806px;}
.y9c_c01020{bottom:326.641893px;}
.y9d_c01020{bottom:327.331602px;}
.y8e_c01020{bottom:345.051603px;}
.y8f_c01020{bottom:345.699252px;}
.y90_c01020{bottom:348.947253px;}
.y82_c01020{bottom:365.036397px;}
.y83_c01020{bottom:365.639799px;}
.y84_c01020{bottom:365.990886px;}
.y85_c01020{bottom:366.318078px;}
.y86_c01020{bottom:366.965091px;}
.y87_c01020{bottom:367.364535px;}
.y88_c01020{bottom:367.930152px;}
.y89_c01020{bottom:368.866278px;}
.y8a_c01020{bottom:369.129837px;}
.y8b_c01020{bottom:369.558015px;}
.y8c_c01020{bottom:369.973773px;}
.y8d_c01020{bottom:370.185972px;}
.y7f_c01020{bottom:390.859896px;}
.y80_c01020{bottom:390.860493px;}
.y81_c01020{bottom:390.861210px;}
.y7b_c01020{bottom:410.671980px;}
.y7c_c01020{bottom:411.185085px;}
.y7d_c01020{bottom:412.116711px;}
.y7e_c01020{bottom:412.872018px;}
.y78_c01020{bottom:434.887530px;}
.y79_c01020{bottom:436.558242px;}
.y7a_c01020{bottom:437.146707px;}
.y6f_c01020{bottom:456.303000px;}
.y70_c01020{bottom:456.677346px;}
.y71_c01020{bottom:457.462977px;}
.y72_c01020{bottom:457.950450px;}
.y73_c01020{bottom:458.299239px;}
.y74_c01020{bottom:459.716865px;}
.y75_c01020{bottom:459.863634px;}
.y76_c01020{bottom:461.228823px;}
.y77_c01020{bottom:461.690193px;}
.y6d_c01020{bottom:480.600847px;}
.y6e_c01020{bottom:486.207488px;}
.y6a_c01020{bottom:501.120667px;}
.y6b_c01020{bottom:501.761827px;}
.y6c_c01020{bottom:508.693627px;}
.y5e_c01020{bottom:524.074500px;}
.y5f_c01020{bottom:524.681212px;}
.y60_c01020{bottom:525.899092px;}
.y61_c01020{bottom:526.267912px;}
.y62_c01020{bottom:526.892085px;}
.y63_c01020{bottom:527.751450px;}
.y64_c01020{bottom:528.201000px;}
.y65_c01020{bottom:528.792547px;}
.y66_c01020{bottom:529.147867px;}
.y67_c01020{bottom:529.926345px;}
.y68_c01020{bottom:530.210047px;}
.y69_c01020{bottom:531.429570px;}
.y5b_c01020{bottom:546.466050px;}
.y5c_c01020{bottom:550.435680px;}
.y5d_c01020{bottom:554.480640px;}
.y50_c01020{bottom:569.084682px;}
.y51_c01020{bottom:569.809914px;}
.y52_c01020{bottom:570.838896px;}
.y53_c01020{bottom:571.652574px;}
.y54_c01020{bottom:571.931718px;}
.y55_c01020{bottom:572.575290px;}
.y56_c01020{bottom:573.624762px;}
.y57_c01020{bottom:574.002492px;}
.y58_c01020{bottom:575.079954px;}
.y59_c01020{bottom:575.901828px;}
.y5a_c01020{bottom:577.251006px;}
.y4c_c01020{bottom:593.616030px;}
.y4d_c01020{bottom:594.233802px;}
.y4e_c01020{bottom:596.345178px;}
.y4f_c01020{bottom:598.500840px;}
.y49_c01020{bottom:611.223960px;}
.y4a_c01020{bottom:612.206130px;}
.y4b_c01020{bottom:616.428792px;}
.y3f_c01020{bottom:636.341202px;}
.y40_c01020{bottom:636.823284px;}
.y41_c01020{bottom:637.685466px;}
.y42_c01020{bottom:639.186876px;}
.y43_c01020{bottom:639.968658px;}
.y44_c01020{bottom:640.862904px;}
.y45_c01020{bottom:641.486214px;}
.y46_c01020{bottom:642.873372px;}
.y47_c01020{bottom:642.967074px;}
.y48_c01020{bottom:644.072886px;}
.y35_c01020{bottom:659.297490px;}
.y36_c01020{bottom:660.128238px;}
.y37_c01020{bottom:661.347672px;}
.y38_c01020{bottom:662.613834px;}
.y39_c01020{bottom:662.929092px;}
.y3a_c01020{bottom:663.716232px;}
.y3b_c01020{bottom:664.817958px;}
.y3c_c01020{bottom:665.441112px;}
.y3d_c01020{bottom:665.815026px;}
.y3e_c01020{bottom:666.572928px;}
.y31_c01020{bottom:682.540692px;}
.y32_c01020{bottom:685.462404px;}
.y33_c01020{bottom:685.903044px;}
.y34_c01020{bottom:686.517036px;}
.y30_c01020{bottom:704.413248px;}
.y23_c01020{bottom:727.376040px;}
.y24_c01020{bottom:728.224002px;}
.y25_c01020{bottom:728.634486px;}
.y26_c01020{bottom:729.589644px;}
.y27_c01020{bottom:730.458510px;}
.y28_c01020{bottom:730.982250px;}
.y29_c01020{bottom:731.613984px;}
.y2a_c01020{bottom:732.579762px;}
.y2b_c01020{bottom:732.891684px;}
.y2c_c01020{bottom:733.314468px;}
.y2d_c01020{bottom:733.817010px;}
.y2e_c01020{bottom:734.564730px;}
.y2f_c01020{bottom:735.772650px;}
.y21_c01020{bottom:751.692000px;}
.y22_c01020{bottom:754.104816px;}
.y19_c01020{bottom:772.249380px;}
.y1a_c01020{bottom:773.606082px;}
.y1b_c01020{bottom:774.308387px;}
.y1c_c01020{bottom:775.622159px;}
.y1d_c01020{bottom:776.190369px;}
.y1e_c01020{bottom:778.716839px;}
.y1f_c01020{bottom:780.502031px;}
.y20_c01020{bottom:782.617733px;}
.yc_c01020{bottom:795.149025px;}
.yd_c01020{bottom:795.625044px;}
.ye_c01020{bottom:796.548629px;}
.yf_c01020{bottom:797.153397px;}
.y10_c01020{bottom:797.448843px;}
.y11_c01020{bottom:797.877334px;}
.y12_c01020{bottom:798.819584px;}
.y13_c01020{bottom:799.177914px;}
.y14_c01020{bottom:799.834506px;}
.y15_c01020{bottom:800.812509px;}
.y16_c01020{bottom:801.118764px;}
.y17_c01020{bottom:801.432528px;}
.y18_c01020{bottom:801.722639px;}
.y8_c01020{bottom:817.020000px;}
.y9_c01020{bottom:818.434413px;}
.ya_c01020{bottom:821.518200px;}
.yb_c01020{bottom:822.448962px;}
.y3_c01020{bottom:866.698702px;}
.y4_c01020{bottom:867.719115px;}
.y5_c01020{bottom:868.405470px;}
.y6_c01020{bottom:868.956990px;}
.y7_c01020{bottom:869.519707px;}
.y2_c01020{bottom:902.346000px;}
.y1_c01020{bottom:911.520000px;}
.h1c_c01020{height:47.250000px;}
.h18_c01020{height:51.458334px;}
.h17_c01020{height:52.508504px;}
.h19_c01020{height:59.859695px;}
.ha_c01020{height:68.276749px;}
.h14_c01020{height:69.306791px;}
.h7_c01020{height:69.315279px;}
.h15_c01020{height:69.420802px;}
.h1b_c01020{height:70.350000px;}
.h10_c01020{height:70.356894px;}
.h9_c01020{height:70.377572px;}
.h13_c01020{height:71.406997px;}
.h8_c01020{height:71.427983px;}
.h12_c01020{height:72.457100px;}
.he_c01020{height:74.558386px;}
.hd_c01020{height:75.608505px;}
.h6_c01020{height:75.616668px;}
.h1a_c01020{height:80.863097px;}
.h4_c01020{height:87.159804px;}
.hb_c01020{height:87.184156px;}
.h5_c01020{height:89.269677px;}
.hf_c01020{height:91.360276px;}
.hc_c01020{height:91.385802px;}
.h11_c01020{height:94.509261px;}
.h16_c01020{height:237.368333px;}
.h3_c01020{height:253.078467px;}
.h2_c01020{height:299.250000px;}
.h1_c01020{height:1005.000000px;}
.h0_c01020{height:1005.150000px;}
.w0_c01020{width:715.200000px;}
.w1_c01020{width:715.500000px;}
.x0_c01020{left:0.000000px;}
.x2_c01020{left:65.275500px;}
.x19_c01020{left:119.019912px;}
.x39_c01020{left:121.330086px;}
.x57_c01020{left:123.522420px;}
.x83_c01020{left:129.976242px;}
.x96_c01020{left:131.046102px;}
.x8_c01020{left:132.306000px;}
.xc_c01020{left:136.291845px;}
.x20_c01020{left:137.379180px;}
.x2f_c01020{left:138.497262px;}
.x45_c01020{left:143.013780px;}
.x64_c01020{left:144.677808px;}
.x3a_c01020{left:148.144104px;}
.x97_c01020{left:154.865898px;}
.x79_c01020{left:163.423500px;}
.xd_c01020{left:166.033964px;}
.x5a_c01020{left:169.753500px;}
.x61_c01020{left:171.979203px;}
.x74_c01020{left:173.299500px;}
.x3f_c01020{left:176.099244px;}
.x1a_c01020{left:177.979423px;}
.x21_c01020{left:179.780172px;}
.x65_c01020{left:182.419758px;}
.x30_c01020{left:184.626156px;}
.x46_c01020{left:185.695926px;}
.x6c_c01020{left:192.172263px;}
.x3b_c01020{left:196.039002px;}
.x4f_c01020{left:197.470266px;}
.x9_c01020{left:199.659000px;}
.x5f_c01020{left:201.720762px;}
.x2c_c01020{left:203.869674px;}
.x3_c01020{left:208.955910px;}
.xe_c01020{left:223.734511px;}
.x66_c01020{left:224.867082px;}
.x5b_c01020{left:225.870000px;}
.x8d_c01020{left:231.387000px;}
.x7b_c01020{left:240.204000px;}
.x6d_c01020{left:242.946549px;}
.x47_c01020{left:246.196032px;}
.x22_c01020{left:248.122002px;}
.x31_c01020{left:252.410640px;}
.x69_c01020{left:257.458641px;}
.x51_c01020{left:259.876500px;}
.xf_c01020{left:261.536981px;}
.x1b_c01020{left:265.622238px;}
.x41_c01020{left:271.869384px;}
.x10_c01020{left:279.964902px;}
.x84_c01020{left:281.279169px;}
.x52_c01020{left:284.464500px;}
.x5c_c01020{left:285.603000px;}
.x75_c01020{left:287.452500px;}
.x1c_c01020{left:290.321699px;}
.x23_c01020{left:291.591246px;}
.x48_c01020{left:294.074274px;}
.x98_c01020{left:295.261485px;}
.x58_c01020{left:297.281235px;}
.x62_c01020{left:300.525390px;}
.x42_c01020{left:302.725272px;}
.x7c_c01020{left:305.283000px;}
.x11_c01020{left:306.729205px;}
.x49_c01020{left:310.477314px;}
.x6a_c01020{left:316.364619px;}
.x24_c01020{left:317.802126px;}
.x32_c01020{left:322.721796px;}
.x6e_c01020{left:324.750894px;}
.x53_c01020{left:326.076000px;}
.x4_c01020{left:336.596820px;}
.x85_c01020{left:338.971221px;}
.x33_c01020{left:340.200168px;}
.x8e_c01020{left:345.313500px;}
.xa_c01020{left:346.506000px;}
.x4a_c01020{left:348.312948px;}
.x25_c01020{left:349.424724px;}
.x60_c01020{left:353.635146px;}
.x94_c01020{left:361.840539px;}
.x86_c01020{left:363.887112px;}
.x12_c01020{left:365.604379px;}
.x2d_c01020{left:371.991306px;}
.x8f_c01020{left:376.893000px;}
.x6f_c01020{left:378.207138px;}
.x63_c01020{left:380.992140px;}
.x34_c01020{left:383.967432px;}
.x5d_c01020{left:386.862000px;}
.x13_c01020{left:388.027242px;}
.xb_c01020{left:390.828000px;}
.x26_c01020{left:397.749060px;}
.x90_c01020{left:399.015000px;}
.x1d_c01020{left:400.196599px;}
.x2e_c01020{left:402.712194px;}
.x87_c01020{left:404.636070px;}
.x3c_c01020{left:407.214096px;}
.x43_c01020{left:408.315918px;}
.x40_c01020{left:410.706390px;}
.x27_c01020{left:413.339046px;}
.x7d_c01020{left:417.088500px;}
.x1_c01020{left:419.310000px;}
.x5_c01020{left:422.462842px;}
.x67_c01020{left:427.356912px;}
.x14_c01020{left:429.083557px;}
.x4b_c01020{left:432.310320px;}
.x28_c01020{left:434.496792px;}
.x99_c01020{left:440.557842px;}
.x70_c01020{left:441.927756px;}
.x35_c01020{left:445.189068px;}
.x76_c01020{left:451.404000px;}
.x54_c01020{left:452.773500px;}
.x7e_c01020{left:456.498000px;}
.x91_c01020{left:457.719000px;}
.x29_c01020{left:459.628920px;}
.x68_c01020{left:466.531299px;}
.x7f_c01020{left:468.925500px;}
.x77_c01020{left:474.900000px;}
.x55_c01020{left:476.461500px;}
.x1e_c01020{left:477.845355px;}
.x36_c01020{left:479.829270px;}
.x3d_c01020{left:484.259142px;}
.x15_c01020{left:490.232984px;}
.x6_c01020{left:491.338065px;}
.x71_c01020{left:492.705042px;}
.x4c_c01020{left:495.721350px;}
.x2a_c01020{left:497.002278px;}
.x37_c01020{left:500.635608px;}
.x88_c01020{left:503.233107px;}
.x16_c01020{left:509.390000px;}
.x72_c01020{left:514.793727px;}
.x44_c01020{left:516.131568px;}
.x78_c01020{left:519.453000px;}
.x5e_c01020{left:527.814000px;}
.x17_c01020{left:528.976047px;}
.x38_c01020{left:542.768910px;}
.x4d_c01020{left:544.106760px;}
.x18_c01020{left:547.078437px;}
.x3e_c01020{left:550.903290px;}
.x8b_c01020{left:553.544805px;}
.x2b_c01020{left:557.405802px;}
.x80_c01020{left:558.888000px;}
.x7_c01020{left:561.759968px;}
.x1f_c01020{left:569.803480px;}
.x73_c01020{left:574.263408px;}
.x89_c01020{left:582.621942px;}
.x92_c01020{left:586.456500px;}
.x81_c01020{left:589.957500px;}
.x6b_c01020{left:611.698530px;}
.x50_c01020{left:619.293984px;}
.x82_c01020{left:620.940000px;}
.x4e_c01020{left:623.494704px;}
.x7a_c01020{left:624.570000px;}
.x56_c01020{left:628.575000px;}
.x95_c01020{left:630.197844px;}
.x8a_c01020{left:642.573102px;}
.x93_c01020{left:644.404500px;}
.x59_c01020{left:647.651970px;}
.x8c_c01020{left:648.666045px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls0_c01020{letter-spacing:0.000000pt;}
.ws0_c01020{word-spacing:0.000000pt;}
._0_c01020{width:29.013236pt;}
.fs19_c01020{font-size:42.000000pt;}
.fs15_c01020{font-size:45.740742pt;}
.fs14_c01020{font-size:46.674226pt;}
.fs16_c01020{font-size:53.208618pt;}
.fs8_c01020{font-size:60.690443pt;}
.fs12_c01020{font-size:61.606037pt;}
.fs5_c01020{font-size:61.613581pt;}
.fs18_c01020{font-size:62.533333pt;}
.fse_c01020{font-size:62.539461pt;}
.fs7_c01020{font-size:62.557842pt;}
.fs11_c01020{font-size:63.472886pt;}
.fs6_c01020{font-size:63.491541pt;}
.fs10_c01020{font-size:64.406311pt;}
.fsc_c01020{font-size:66.274121pt;}
.fsb_c01020{font-size:67.207560pt;}
.fs4_c01020{font-size:67.214816pt;}
.fs17_c01020{font-size:71.878308pt;}
.fs2_c01020{font-size:77.475381pt;}
.fs9_c01020{font-size:77.497028pt;}
.fs3_c01020{font-size:79.350824pt;}
.fsd_c01020{font-size:81.209134pt;}
.fsa_c01020{font-size:81.231824pt;}
.fsf_c01020{font-size:84.008232pt;}
.fs13_c01020{font-size:210.994073pt;}
.fs1_c01020{font-size:224.958637pt;}
.fs0_c01020{font-size:266.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.yf0_c01020{bottom:79.981333pt;}
.yef_c01020{bottom:92.689333pt;}
.ye5_c01020{bottom:147.118552pt;}
.ye6_c01020{bottom:147.435648pt;}
.ye7_c01020{bottom:148.443771pt;}
.ye8_c01020{bottom:148.868149pt;}
.ye9_c01020{bottom:149.307189pt;}
.yea_c01020{bottom:149.509277pt;}
.yeb_c01020{bottom:150.387357pt;}
.yec_c01020{bottom:150.819235pt;}
.yed_c01020{bottom:151.243805pt;}
.yee_c01020{bottom:151.489240pt;}
.ye3_c01020{bottom:155.037965pt;}
.ye4_c01020{bottom:158.378040pt;}
.yd3_c01020{bottom:162.962667pt;}
.yd4_c01020{bottom:163.282299pt;}
.yd5_c01020{bottom:163.745931pt;}
.yd6_c01020{bottom:164.363739pt;}
.yd7_c01020{bottom:164.559507pt;}
.yd8_c01020{bottom:165.638859pt;}
.yd9_c01020{bottom:166.186563pt;}
.yda_c01020{bottom:166.691835pt;}
.ydb_c01020{bottom:167.045787pt;}
.ydc_c01020{bottom:167.985051pt;}
.ydd_c01020{bottom:168.125907pt;}
.yde_c01020{bottom:168.415371pt;}
.ydf_c01020{bottom:168.826251pt;}
.ye0_c01020{bottom:169.771947pt;}
.ye1_c01020{bottom:170.044851pt;}
.ye2_c01020{bottom:170.972019pt;}
.ycc_c01020{bottom:176.406797pt;}
.ycd_c01020{bottom:181.679835pt;}
.yce_c01020{bottom:182.421248pt;}
.ycf_c01020{bottom:182.764077pt;}
.yd0_c01020{bottom:184.123285pt;}
.yd1_c01020{bottom:185.425155pt;}
.yd2_c01020{bottom:187.453925pt;}
.ybb_c01020{bottom:194.878648pt;}
.ybc_c01020{bottom:195.501059pt;}
.ybd_c01020{bottom:195.758883pt;}
.ybe_c01020{bottom:196.573893pt;}
.ybf_c01020{bottom:197.031408pt;}
.yc0_c01020{bottom:197.203899pt;}
.yc1_c01020{bottom:197.560699pt;}
.yc2_c01020{bottom:197.853115pt;}
.yc3_c01020{bottom:198.207755pt;}
.yc4_c01020{bottom:198.445805pt;}
.yc5_c01020{bottom:198.787715pt;}
.yc6_c01020{bottom:199.513768pt;}
.yc7_c01020{bottom:200.190544pt;}
.yc8_c01020{bottom:200.532645pt;}
.yc9_c01020{bottom:200.740904pt;}
.yca_c01020{bottom:201.320720pt;}
.ycb_c01020{bottom:202.173237pt;}
.yab_c01020{bottom:210.482667pt;}
.yac_c01020{bottom:210.815187pt;}
.yad_c01020{bottom:211.121091pt;}
.yae_c01020{bottom:212.041947pt;}
.yaf_c01020{bottom:212.374683pt;}
.yb0_c01020{bottom:212.672571pt;}
.yb1_c01020{bottom:213.083211pt;}
.yb2_c01020{bottom:213.360027pt;}
.yb3_c01020{bottom:214.285059pt;}
.yb4_c01020{bottom:214.872099pt;}
.yb5_c01020{bottom:215.502651pt;}
.yb6_c01020{bottom:215.701491pt;}
.yb7_c01020{bottom:216.147075pt;}
.yb8_c01020{bottom:217.140891pt;}
.yb9_c01020{bottom:217.638003pt;}
.yba_c01020{bottom:218.133723pt;}
.ya9_c01020{bottom:219.936000pt;}
.yaa_c01020{bottom:229.773792pt;}
.y9e_c01020{bottom:263.762667pt;}
.y9f_c01020{bottom:264.418227pt;}
.ya0_c01020{bottom:264.789047pt;}
.ya1_c01020{bottom:265.570047pt;}
.ya2_c01020{bottom:265.940267pt;}
.ya3_c01020{bottom:266.632247pt;}
.ya4_c01020{bottom:267.877807pt;}
.ya5_c01020{bottom:268.126287pt;}
.ya6_c01020{bottom:268.439567pt;}
.ya7_c01020{bottom:269.033607pt;}
.ya8_c01020{bottom:269.408127pt;}
.y91_c01020{bottom:284.630571pt;}
.y92_c01020{bottom:284.911448pt;}
.y93_c01020{bottom:285.253371pt;}
.y94_c01020{bottom:285.930571pt;}
.y95_c01020{bottom:287.021928pt;}
.y96_c01020{bottom:287.317411pt;}
.y97_c01020{bottom:287.735171pt;}
.y98_c01020{bottom:288.039987pt;}
.y99_c01020{bottom:288.584149pt;}
.y9a_c01020{bottom:289.261387pt;}
.y9b_c01020{bottom:289.556272pt;}
.y9c_c01020{bottom:290.348349pt;}
.y9d_c01020{bottom:290.961424pt;}
.y8e_c01020{bottom:306.712536pt;}
.y8f_c01020{bottom:307.288224pt;}
.y90_c01020{bottom:310.175336pt;}
.y82_c01020{bottom:324.476797pt;}
.y83_c01020{bottom:325.013155pt;}
.y84_c01020{bottom:325.325232pt;}
.y85_c01020{bottom:325.616069pt;}
.y86_c01020{bottom:326.191192pt;}
.y87_c01020{bottom:326.546253pt;}
.y88_c01020{bottom:327.049024pt;}
.y89_c01020{bottom:327.881136pt;}
.y8a_c01020{bottom:328.115411pt;}
.y8b_c01020{bottom:328.496013pt;}
.y8c_c01020{bottom:328.865576pt;}
.y8d_c01020{bottom:329.054197pt;}
.y7f_c01020{bottom:347.431019pt;}
.y80_c01020{bottom:347.431549pt;}
.y81_c01020{bottom:347.432187pt;}
.y7b_c01020{bottom:365.041760pt;}
.y7c_c01020{bottom:365.497853pt;}
.y7d_c01020{bottom:366.325965pt;}
.y7e_c01020{bottom:366.997349pt;}
.y78_c01020{bottom:386.566693pt;}
.y79_c01020{bottom:388.051771pt;}
.y7a_c01020{bottom:388.574851pt;}
.y6f_c01020{bottom:405.602667pt;}
.y70_c01020{bottom:405.935419pt;}
.y71_c01020{bottom:406.633757pt;}
.y72_c01020{bottom:407.067067pt;}
.y73_c01020{bottom:407.377101pt;}
.y74_c01020{bottom:408.637213pt;}
.y75_c01020{bottom:408.767675pt;}
.y76_c01020{bottom:409.981176pt;}
.y77_c01020{bottom:410.391283pt;}
.y6d_c01020{bottom:427.200753pt;}
.y6e_c01020{bottom:432.184433pt;}
.y6a_c01020{bottom:445.440593pt;}
.y6b_c01020{bottom:446.010513pt;}
.y6c_c01020{bottom:452.172113pt;}
.y5e_c01020{bottom:465.844000pt;}
.y5f_c01020{bottom:466.383300pt;}
.y60_c01020{bottom:467.465860pt;}
.y61_c01020{bottom:467.793700pt;}
.y62_c01020{bottom:468.348520pt;}
.y63_c01020{bottom:469.112400pt;}
.y64_c01020{bottom:469.512000pt;}
.y65_c01020{bottom:470.037820pt;}
.y66_c01020{bottom:470.353660pt;}
.y67_c01020{bottom:471.045640pt;}
.y68_c01020{bottom:471.297820pt;}
.y69_c01020{bottom:472.381840pt;}
.y5b_c01020{bottom:485.747600pt;}
.y5c_c01020{bottom:489.276160pt;}
.y5d_c01020{bottom:492.871680pt;}
.y50_c01020{bottom:505.853051pt;}
.y51_c01020{bottom:506.497701pt;}
.y52_c01020{bottom:507.412352pt;}
.y53_c01020{bottom:508.135621pt;}
.y54_c01020{bottom:508.383749pt;}
.y55_c01020{bottom:508.955813pt;}
.y56_c01020{bottom:509.888677pt;}
.y57_c01020{bottom:510.224437pt;}
.y58_c01020{bottom:511.182181pt;}
.y59_c01020{bottom:511.912736pt;}
.y5a_c01020{bottom:513.112005pt;}
.y4c_c01020{bottom:527.658693pt;}
.y4d_c01020{bottom:528.207824pt;}
.y4e_c01020{bottom:530.084603pt;}
.y4f_c01020{bottom:532.000747pt;}
.y49_c01020{bottom:543.310187pt;}
.y4a_c01020{bottom:544.183227pt;}
.y4b_c01020{bottom:547.936704pt;}
.y3f_c01020{bottom:565.636624pt;}
.y40_c01020{bottom:566.065141pt;}
.y41_c01020{bottom:566.831525pt;}
.y42_c01020{bottom:568.166112pt;}
.y43_c01020{bottom:568.861029pt;}
.y44_c01020{bottom:569.655915pt;}
.y45_c01020{bottom:570.209968pt;}
.y46_c01020{bottom:571.442997pt;}
.y47_c01020{bottom:571.526288pt;}
.y48_c01020{bottom:572.509232pt;}
.y35_c01020{bottom:586.042213pt;}
.y36_c01020{bottom:586.780656pt;}
.y37_c01020{bottom:587.864597pt;}
.y38_c01020{bottom:588.990075pt;}
.y39_c01020{bottom:589.270304pt;}
.y3a_c01020{bottom:589.969984pt;}
.y3b_c01020{bottom:590.949296pt;}
.y3c_c01020{bottom:591.503211pt;}
.y3d_c01020{bottom:591.835579pt;}
.y3e_c01020{bottom:592.509269pt;}
.y31_c01020{bottom:606.702837pt;}
.y32_c01020{bottom:609.299915pt;}
.y33_c01020{bottom:609.691595pt;}
.y34_c01020{bottom:610.237365pt;}
.y30_c01020{bottom:626.145109pt;}
.y23_c01020{bottom:646.556480pt;}
.y24_c01020{bottom:647.310224pt;}
.y25_c01020{bottom:647.675099pt;}
.y26_c01020{bottom:648.524128pt;}
.y27_c01020{bottom:649.296453pt;}
.y28_c01020{bottom:649.762000pt;}
.y29_c01020{bottom:650.323541pt;}
.y2a_c01020{bottom:651.182011pt;}
.y2b_c01020{bottom:651.459275pt;}
.y2c_c01020{bottom:651.835083pt;}
.y2d_c01020{bottom:652.281787pt;}
.y2e_c01020{bottom:652.946427pt;}
.y2f_c01020{bottom:654.020133pt;}
.y21_c01020{bottom:668.170667pt;}
.y22_c01020{bottom:670.315392pt;}
.y19_c01020{bottom:686.443893pt;}
.y1a_c01020{bottom:687.649851pt;}
.y1b_c01020{bottom:688.274121pt;}
.y1c_c01020{bottom:689.441919pt;}
.y1d_c01020{bottom:689.946995pt;}
.y1e_c01020{bottom:692.192745pt;}
.y1f_c01020{bottom:693.779583pt;}
.y20_c01020{bottom:695.660207pt;}
.yc_c01020{bottom:706.799133pt;}
.yd_c01020{bottom:707.222261pt;}
.ye_c01020{bottom:708.043225pt;}
.yf_c01020{bottom:708.580797pt;}
.y10_c01020{bottom:708.843416pt;}
.y11_c01020{bottom:709.224297pt;}
.y12_c01020{bottom:710.061852pt;}
.y13_c01020{bottom:710.380368pt;}
.y14_c01020{bottom:710.964005pt;}
.y15_c01020{bottom:711.833341pt;}
.y16_c01020{bottom:712.105568pt;}
.y17_c01020{bottom:712.384469pt;}
.y18_c01020{bottom:712.642345pt;}
.y8_c01020{bottom:726.240000pt;}
.y9_c01020{bottom:727.497256pt;}
.ya_c01020{bottom:730.238400pt;}
.yb_c01020{bottom:731.065744pt;}
.y3_c01020{bottom:770.398847pt;}
.y4_c01020{bottom:771.305880pt;}
.y5_c01020{bottom:771.915973pt;}
.y6_c01020{bottom:772.406213pt;}
.y7_c01020{bottom:772.906407pt;}
.y2_c01020{bottom:802.085333pt;}
.y1_c01020{bottom:810.240000pt;}
.h1c_c01020{height:42.000000pt;}
.h18_c01020{height:45.740742pt;}
.h17_c01020{height:46.674226pt;}
.h19_c01020{height:53.208618pt;}
.ha_c01020{height:60.690443pt;}
.h14_c01020{height:61.606037pt;}
.h7_c01020{height:61.613581pt;}
.h15_c01020{height:61.707380pt;}
.h1b_c01020{height:62.533333pt;}
.h10_c01020{height:62.539461pt;}
.h9_c01020{height:62.557842pt;}
.h13_c01020{height:63.472886pt;}
.h8_c01020{height:63.491541pt;}
.h12_c01020{height:64.406311pt;}
.he_c01020{height:66.274121pt;}
.hd_c01020{height:67.207560pt;}
.h6_c01020{height:67.214816pt;}
.h1a_c01020{height:71.878308pt;}
.h4_c01020{height:77.475381pt;}
.hb_c01020{height:77.497028pt;}
.h5_c01020{height:79.350824pt;}
.hf_c01020{height:81.209134pt;}
.hc_c01020{height:81.231824pt;}
.h11_c01020{height:84.008232pt;}
.h16_c01020{height:210.994073pt;}
.h3_c01020{height:224.958637pt;}
.h2_c01020{height:266.000000pt;}
.h1_c01020{height:893.333333pt;}
.h0_c01020{height:893.466667pt;}
.w0_c01020{width:635.733333pt;}
.w1_c01020{width:636.000000pt;}
.x0_c01020{left:0.000000pt;}
.x2_c01020{left:58.022667pt;}
.x19_c01020{left:105.795477pt;}
.x39_c01020{left:107.848965pt;}
.x57_c01020{left:109.797707pt;}
.x83_c01020{left:115.534437pt;}
.x96_c01020{left:116.485424pt;}
.x8_c01020{left:117.605333pt;}
.xc_c01020{left:121.148307pt;}
.x20_c01020{left:122.114827pt;}
.x2f_c01020{left:123.108677pt;}
.x45_c01020{left:127.123360pt;}
.x64_c01020{left:128.602496pt;}
.x3a_c01020{left:131.683648pt;}
.x97_c01020{left:137.658576pt;}
.x79_c01020{left:145.265333pt;}
.xd_c01020{left:147.585745pt;}
.x5a_c01020{left:150.892000pt;}
.x61_c01020{left:152.870403pt;}
.x74_c01020{left:154.044000pt;}
.x3f_c01020{left:156.532661pt;}
.x1a_c01020{left:158.203932pt;}
.x21_c01020{left:159.804597pt;}
.x65_c01020{left:162.150896pt;}
.x30_c01020{left:164.112139pt;}
.x46_c01020{left:165.063045pt;}
.x6c_c01020{left:170.819789pt;}
.x3b_c01020{left:174.256891pt;}
.x4f_c01020{left:175.529125pt;}
.x9_c01020{left:177.474667pt;}
.x5f_c01020{left:179.307344pt;}
.x2c_c01020{left:181.217488pt;}
.x3_c01020{left:185.738587pt;}
.xe_c01020{left:198.875121pt;}
.x66_c01020{left:199.881851pt;}
.x5b_c01020{left:200.773333pt;}
.x8d_c01020{left:205.677333pt;}
.x7b_c01020{left:213.514667pt;}
.x6d_c01020{left:215.952488pt;}
.x47_c01020{left:218.840917pt;}
.x22_c01020{left:220.552891pt;}
.x31_c01020{left:224.365013pt;}
.x69_c01020{left:228.852125pt;}
.x51_c01020{left:231.001333pt;}
.xf_c01020{left:232.477316pt;}
.x1b_c01020{left:236.108656pt;}
.x41_c01020{left:241.661675pt;}
.x10_c01020{left:248.857691pt;}
.x84_c01020{left:250.025928pt;}
.x52_c01020{left:252.857333pt;}
.x5c_c01020{left:253.869333pt;}
.x75_c01020{left:255.513333pt;}
.x1c_c01020{left:258.063732pt;}
.x23_c01020{left:259.192219pt;}
.x48_c01020{left:261.399355pt;}
.x98_c01020{left:262.454653pt;}
.x58_c01020{left:264.249987pt;}
.x62_c01020{left:267.133680pt;}
.x42_c01020{left:269.089131pt;}
.x7c_c01020{left:271.362667pt;}
.x11_c01020{left:272.648183pt;}
.x49_c01020{left:275.979835pt;}
.x6a_c01020{left:281.212995pt;}
.x24_c01020{left:282.490779pt;}
.x32_c01020{left:286.863819pt;}
.x6e_c01020{left:288.667461pt;}
.x53_c01020{left:289.845333pt;}
.x4_c01020{left:299.197173pt;}
.x85_c01020{left:301.307752pt;}
.x33_c01020{left:302.400149pt;}
.x8e_c01020{left:306.945333pt;}
.xa_c01020{left:308.005333pt;}
.x4a_c01020{left:309.611509pt;}
.x25_c01020{left:310.599755pt;}
.x60_c01020{left:314.342352pt;}
.x94_c01020{left:321.636035pt;}
.x86_c01020{left:323.455211pt;}
.x12_c01020{left:324.981671pt;}
.x2d_c01020{left:330.658939pt;}
.x8f_c01020{left:335.016000pt;}
.x6f_c01020{left:336.184123pt;}
.x63_c01020{left:338.659680pt;}
.x34_c01020{left:341.304384pt;}
.x5d_c01020{left:343.877333pt;}
.x13_c01020{left:344.913104pt;}
.xb_c01020{left:347.402667pt;}
.x26_c01020{left:353.554720pt;}
.x90_c01020{left:354.680000pt;}
.x1d_c01020{left:355.730311pt;}
.x2e_c01020{left:357.966395pt;}
.x87_c01020{left:359.676507pt;}
.x3c_c01020{left:361.968085pt;}
.x43_c01020{left:362.947483pt;}
.x40_c01020{left:365.072347pt;}
.x27_c01020{left:367.412485pt;}
.x7d_c01020{left:370.745333pt;}
.x1_c01020{left:372.720000pt;}
.x5_c01020{left:375.522527pt;}
.x67_c01020{left:379.872811pt;}
.x14_c01020{left:381.407607pt;}
.x4b_c01020{left:384.275840pt;}
.x28_c01020{left:386.219371pt;}
.x99_c01020{left:391.606971pt;}
.x70_c01020{left:392.824672pt;}
.x35_c01020{left:395.723616pt;}
.x76_c01020{left:401.248000pt;}
.x54_c01020{left:402.465333pt;}
.x7e_c01020{left:405.776000pt;}
.x91_c01020{left:406.861333pt;}
.x29_c01020{left:408.559040pt;}
.x68_c01020{left:414.694488pt;}
.x7f_c01020{left:416.822667pt;}
.x77_c01020{left:422.133333pt;}
.x55_c01020{left:423.521333pt;}
.x1e_c01020{left:424.751427pt;}
.x36_c01020{left:426.514907pt;}
.x3d_c01020{left:430.452571pt;}
.x15_c01020{left:435.762652pt;}
.x6_c01020{left:436.744947pt;}
.x71_c01020{left:437.960037pt;}
.x4c_c01020{left:440.641200pt;}
.x2a_c01020{left:441.779803pt;}
.x37_c01020{left:445.009429pt;}
.x88_c01020{left:447.318317pt;}
.x16_c01020{left:452.791111pt;}
.x72_c01020{left:457.594424pt;}
.x44_c01020{left:458.783616pt;}
.x78_c01020{left:461.736000pt;}
.x5e_c01020{left:469.168000pt;}
.x17_c01020{left:470.200931pt;}
.x38_c01020{left:482.461253pt;}
.x4d_c01020{left:483.650453pt;}
.x18_c01020{left:486.291944pt;}
.x3e_c01020{left:489.691813pt;}
.x8b_c01020{left:492.039827pt;}
.x2b_c01020{left:495.471824pt;}
.x80_c01020{left:496.789333pt;}
.x7_c01020{left:499.342193pt;}
.x1f_c01020{left:506.491983pt;}
.x73_c01020{left:510.456363pt;}
.x89_c01020{left:517.886171pt;}
.x92_c01020{left:521.294667pt;}
.x81_c01020{left:524.406667pt;}
.x6b_c01020{left:543.732027pt;}
.x50_c01020{left:550.483541pt;}
.x82_c01020{left:551.946667pt;}
.x4e_c01020{left:554.217515pt;}
.x7a_c01020{left:555.173333pt;}
.x56_c01020{left:558.733333pt;}
.x95_c01020{left:560.175861pt;}
.x8a_c01020{left:571.176091pt;}
.x93_c01020{left:572.804000pt;}
.x59_c01020{left:575.690640pt;}
.x8c_c01020{left:576.592040pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.000000;font-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_c01021{transform:matrix(0.022163,-0.000310,0.003500,0.249976,0,0);-ms-transform:matrix(0.022163,-0.000310,0.003500,0.249976,0,0);-webkit-transform:matrix(0.022163,-0.000310,0.003500,0.249976,0,0);}
.m2e_c01021{transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024945,0.000000,0.000000,0.250000,0,0);}
.mc1_c01021{transform:matrix(0.102853,0.001234,-0.003000,0.249982,0,0);-ms-transform:matrix(0.102853,0.001234,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.102853,0.001234,-0.003000,0.249982,0,0);}
.m90_c01021{transform:matrix(0.150907,0.001962,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150907,0.001962,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150907,0.001962,-0.003250,0.249979,0,0);}
.m93_c01021{transform:matrix(0.151547,0.001970,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151547,0.001970,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151547,0.001970,-0.003250,0.249979,0,0);}
.m2b_c01021{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);}
.m21_c01021{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);}
.m61_c01021{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);}
.m8e_c01021{transform:matrix(0.155597,0.002023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.155597,0.002023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.155597,0.002023,-0.003250,0.249979,0,0);}
.mae_c01021{transform:matrix(0.157222,0.002044,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157222,0.002044,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157222,0.002044,-0.003250,0.249979,0,0);}
.m67_c01021{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);}
.mcb_c01021{transform:matrix(0.161228,0.001935,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161228,0.001935,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161228,0.001935,-0.003000,0.249982,0,0);}
.mfa_c01021{transform:matrix(0.163459,0.002615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163459,0.002615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163459,0.002615,-0.003999,0.249968,0,0);}
.m59_c01021{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);}
.mcd_c01021{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);}
.m6f_c01021{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);}
.mb4_c01021{transform:matrix(0.164935,0.001814,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164935,0.001814,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164935,0.001814,-0.002750,0.249985,0,0);}
.mbc_c01021{transform:matrix(0.165028,0.001980,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165028,0.001980,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165028,0.001980,-0.003000,0.249982,0,0);}
.m77_c01021{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);}
.m4b_c01021{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);}
.m48_c01021{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);}
.mc_c01021{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);}
.m27_c01021{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);}
.m25_c01021{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.mef_c01021{transform:matrix(0.167816,0.002853,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167816,0.002853,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167816,0.002853,-0.004249,0.249964,0,0);}
.ma7_c01021{transform:matrix(0.167836,0.002182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167836,0.002182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167836,0.002182,-0.003250,0.249979,0,0);}
.m97_c01021{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);}
.md0_c01021{transform:matrix(0.168198,0.002018,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168198,0.002018,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168198,0.002018,-0.003000,0.249982,0,0);}
.m9a_c01021{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);}
.m9e_c01021{transform:matrix(0.170661,0.002219,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170661,0.002219,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170661,0.002219,-0.003250,0.249979,0,0);}
.m4a_c01021{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);}
.m78_c01021{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);}
.mf7_c01021{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);}
.m60_c01021{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);}
.mfe_c01021{transform:matrix(0.172888,0.002766,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172888,0.002766,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172888,0.002766,-0.003999,0.249968,0,0);}
.m6e_c01021{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);}
.m102_c01021{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);}
.ma1_c01021{transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173450,0.002255,-0.003250,0.249979,0,0);}
.m5f_c01021{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);}
.m12_c01021{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);}
.mb6_c01021{transform:matrix(0.174694,0.001922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174694,0.001922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174694,0.001922,-0.002750,0.249985,0,0);}
.mee_c01021{transform:matrix(0.174950,0.002974,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174950,0.002974,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174950,0.002974,-0.004249,0.249964,0,0);}
.ma4_c01021{transform:matrix(0.175095,0.002276,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175095,0.002276,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175095,0.002276,-0.003250,0.249979,0,0);}
.m75_c01021{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);}
.m4_c01021{transform:matrix(0.176048,-0.002465,0.003500,0.249976,0,0);-ms-transform:matrix(0.176048,-0.002465,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176048,-0.002465,0.003500,0.249976,0,0);}
.m0_c01021{transform:matrix(0.176833,-0.002476,0.003500,0.249976,0,0);-ms-transform:matrix(0.176833,-0.002476,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176833,-0.002476,0.003500,0.249976,0,0);}
.m66_c01021{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);}
.m94_c01021{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);}
.m8_c01021{transform:matrix(0.179257,-0.002510,0.003500,0.249976,0,0);-ms-transform:matrix(0.179257,-0.002510,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179257,-0.002510,0.003500,0.249976,0,0);}
.mf2_c01021{transform:matrix(0.179394,0.003050,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179394,0.003050,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179394,0.003050,-0.004249,0.249964,0,0);}
.m34_c01021{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);}
.m14_c01021{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);}
.m91_c01021{transform:matrix(0.180305,0.002344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180305,0.002344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180305,0.002344,-0.003250,0.249979,0,0);}
.m76_c01021{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);}
.m70_c01021{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m88_c01021{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);}
.md5_c01021{transform:matrix(0.181832,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181832,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181832,0.002182,-0.003000,0.249982,0,0);}
.m18_c01021{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);}
.m65_c01021{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);}
.m52_c01021{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);}
.m5c_c01021{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);}
.m79_c01021{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);}
.me7_c01021{transform:matrix(0.182467,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182467,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182467,0.002190,-0.003000,0.249982,0,0);}
.mec_c01021{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);}
.m39_c01021{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);}
.m6c_c01021{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);}
.m54_c01021{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);}
.m8d_c01021{transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);}
.m11_c01021{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);}
.md3_c01021{transform:matrix(0.185247,0.002223,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185247,0.002223,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185247,0.002223,-0.003000,0.249982,0,0);}
.mdc_c01021{transform:matrix(0.185622,0.002227,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185622,0.002227,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185622,0.002227,-0.003000,0.249982,0,0);}
.maa_c01021{transform:matrix(0.185734,0.002415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185734,0.002415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185734,0.002415,-0.003250,0.249979,0,0);}
.ma3_c01021{transform:matrix(0.186279,0.002422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186279,0.002422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186279,0.002422,-0.003250,0.249979,0,0);}
.m6b_c01021{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);}
.ma2_c01021{transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186429,0.002424,-0.003250,0.249979,0,0);}
.m7c_c01021{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);}
.m3_c01021{transform:matrix(0.186917,-0.002617,0.003500,0.249976,0,0);-ms-transform:matrix(0.186917,-0.002617,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186917,-0.002617,0.003500,0.249976,0,0);}
.mfc_c01021{transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);}
.m37_c01021{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);}
.m92_c01021{transform:matrix(0.187654,0.002440,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187654,0.002440,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187654,0.002440,-0.003250,0.249979,0,0);}
.m53_c01021{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);}
.mf4_c01021{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);}
.mcf_c01021{transform:matrix(0.188671,0.002264,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188671,0.002264,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188671,0.002264,-0.003000,0.249982,0,0);}
.mb2_c01021{transform:matrix(0.188709,0.002076,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188709,0.002076,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188709,0.002076,-0.002750,0.249985,0,0);}
.m68_c01021{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);}
.ma9_c01021{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);}
.m4e_c01021{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);}
.m8f_c01021{transform:matrix(0.189709,0.002466,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189709,0.002466,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189709,0.002466,-0.003250,0.249979,0,0);}
.m3d_c01021{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);}
.m71_c01021{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);}
.m13_c01021{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);}
.md2_c01021{transform:matrix(0.190656,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190656,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190656,0.002288,-0.003000,0.249982,0,0);}
.mcc_c01021{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);}
.mb7_c01021{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);}
.m19_c01021{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);}
.m20_c01021{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);}
.m43_c01021{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);}
.m45_c01021{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);}
.m46_c01021{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);}
.m51_c01021{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);}
.mf_c01021{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);}
.m72_c01021{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);}
.m9d_c01021{transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);}
.m4c_c01021{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);}
.ma8_c01021{transform:matrix(0.194389,0.002527,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194389,0.002527,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194389,0.002527,-0.003250,0.249979,0,0);}
.m55_c01021{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);}
.m9b_c01021{transform:matrix(0.194864,0.002533,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194864,0.002533,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194864,0.002533,-0.003250,0.249979,0,0);}
.mb5_c01021{transform:matrix(0.195008,0.002145,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195008,0.002145,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195008,0.002145,-0.002750,0.249985,0,0);}
.mdd_c01021{transform:matrix(0.195426,0.002345,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195426,0.002345,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195426,0.002345,-0.003000,0.249982,0,0);}
.m103_c01021{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);}
.m50_c01021{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);}
.meb_c01021{transform:matrix(0.196021,0.002352,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196021,0.002352,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196021,0.002352,-0.003000,0.249982,0,0);}
.m6d_c01021{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);}
.mb3_c01021{transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);}
.m85_c01021{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);}
.m38_c01021{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);}
.md_c01021{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);}
.m28_c01021{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);}
.m10_c01021{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);}
.m89_c01021{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);}
.mad_c01021{transform:matrix(0.197653,0.002569,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197653,0.002569,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197653,0.002569,-0.003250,0.249979,0,0);}
.m99_c01021{transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);}
.m1e_c01021{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);}
.m36_c01021{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);}
.m58_c01021{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);}
.m95_c01021{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);}
.mb0_c01021{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);}
.mc8_c01021{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);}
.me_c01021{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);}
.m44_c01021{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);}
.mce_c01021{transform:matrix(0.201460,0.002418,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201460,0.002418,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201460,0.002418,-0.003000,0.249982,0,0);}
.m5b_c01021{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);}
.ma6_c01021{transform:matrix(0.202803,0.002636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202803,0.002636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202803,0.002636,-0.003250,0.249979,0,0);}
.m40_c01021{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);}
.mda_c01021{transform:matrix(0.202905,0.002435,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202905,0.002435,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202905,0.002435,-0.003000,0.249982,0,0);}
.me0_c01021{transform:matrix(0.203160,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203160,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203160,0.002438,-0.003000,0.249982,0,0);}
.mc9_c01021{transform:matrix(0.204240,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204240,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204240,0.002451,-0.003000,0.249982,0,0);}
.ma5_c01021{transform:matrix(0.204593,0.002660,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204593,0.002660,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204593,0.002660,-0.003250,0.249979,0,0);}
.m1c_c01021{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);}
.m26_c01021{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);}
.mc0_c01021{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);}
.m4f_c01021{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);}
.md4_c01021{transform:matrix(0.206065,0.002473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206065,0.002473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206065,0.002473,-0.003000,0.249982,0,0);}
.mf9_c01021{transform:matrix(0.206569,0.003305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206569,0.003305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206569,0.003305,-0.003999,0.249968,0,0);}
.m2a_c01021{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);}
.maf_c01021{transform:matrix(0.207297,0.002695,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207297,0.002695,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207297,0.002695,-0.003250,0.249979,0,0);}
.m98_c01021{transform:matrix(0.207372,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207372,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207372,0.002696,-0.003250,0.249979,0,0);}
.mf5_c01021{transform:matrix(0.207578,0.003321,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207578,0.003321,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207578,0.003321,-0.003999,0.249968,0,0);}
.mf3_c01021{transform:matrix(0.208123,0.003330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208123,0.003330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208123,0.003330,-0.003999,0.249968,0,0);}
.mc5_c01021{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);}
.m64_c01021{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);}
.m1d_c01021{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);}
.m101_c01021{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);}
.m5d_c01021{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);}
.mb9_c01021{transform:matrix(0.209177,0.002301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209177,0.002301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209177,0.002301,-0.002750,0.249985,0,0);}
.md8_c01021{transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);}
.ma0_c01021{transform:matrix(0.209507,0.002724,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209507,0.002724,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209507,0.002724,-0.003250,0.249979,0,0);}
.m81_c01021{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);}
.mb8_c01021{transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210482,0.002315,-0.002750,0.249985,0,0);}
.mbd_c01021{transform:matrix(0.211455,0.002537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211455,0.002537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211455,0.002537,-0.003000,0.249982,0,0);}
.mc2_c01021{transform:matrix(0.212090,0.002545,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212090,0.002545,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212090,0.002545,-0.003000,0.249982,0,0);}
.m3a_c01021{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);}
.m96_c01021{transform:matrix(0.212902,0.002768,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212902,0.002768,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212902,0.002768,-0.003250,0.249979,0,0);}
.m15_c01021{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);}
.mea_c01021{transform:matrix(0.213790,0.002565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213790,0.002565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213790,0.002565,-0.003000,0.249982,0,0);}
.mde_c01021{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);}
.m3b_c01021{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);}
.md6_c01021{transform:matrix(0.216649,0.002600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216649,0.002600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216649,0.002600,-0.003000,0.249982,0,0);}
.mc7_c01021{transform:matrix(0.217229,0.002607,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217229,0.002607,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217229,0.002607,-0.003000,0.249982,0,0);}
.m49_c01021{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);}
.mf1_c01021{transform:matrix(0.217774,0.003702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217774,0.003702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217774,0.003702,-0.004249,0.249964,0,0);}
.mbf_c01021{transform:matrix(0.217814,0.002614,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217814,0.002614,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217814,0.002614,-0.003000,0.249982,0,0);}
.m35_c01021{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);}
.mc3_c01021{transform:matrix(0.219139,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219139,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219139,0.002630,-0.003000,0.249982,0,0);}
.me3_c01021{transform:matrix(0.219324,0.002632,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219324,0.002632,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219324,0.002632,-0.003000,0.249982,0,0);}
.m5a_c01021{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);}
.mab_c01021{transform:matrix(0.220981,0.002873,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220981,0.002873,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220981,0.002873,-0.003250,0.249979,0,0);}
.m1f_c01021{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);}
.m100_c01021{transform:matrix(0.222117,0.003554,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222117,0.003554,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222117,0.003554,-0.003999,0.249968,0,0);}
.m62_c01021{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);}
.me1_c01021{transform:matrix(0.222869,0.002674,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222869,0.002674,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222869,0.002674,-0.003000,0.249982,0,0);}
.m17_c01021{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);}
.m2c_c01021{transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224355,0.000000,0.000000,0.250000,0,0);}
.md9_c01021{transform:matrix(0.225369,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225369,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225369,0.002704,-0.003000,0.249982,0,0);}
.mfb_c01021{transform:matrix(0.226141,0.003618,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226141,0.003618,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226141,0.003618,-0.003999,0.249968,0,0);}
.m1a_c01021{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);}
.m29_c01021{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);}
.m7f_c01021{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);}
.mfd_c01021{transform:matrix(0.227351,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227351,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227351,0.003638,-0.003999,0.249968,0,0);}
.m41_c01021{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);}
.med_c01021{transform:matrix(0.228462,0.003884,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228462,0.003884,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228462,0.003884,-0.004249,0.249964,0,0);}
.mff_c01021{transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);}
.md1_c01021{transform:matrix(0.229268,0.002751,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229268,0.002751,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229268,0.002751,-0.003000,0.249982,0,0);}
.mc4_c01021{transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);}
.m69_c01021{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);}
.m8c_c01021{transform:matrix(0.230081,0.002991,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230081,0.002991,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230081,0.002991,-0.003250,0.249979,0,0);}
.m8a_c01021{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);}
.m3f_c01021{transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231885,0.000000,0.000000,0.250000,0,0);}
.m83_c01021{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);}
.m33_c01021{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);}
.m9f_c01021{transform:matrix(0.233345,0.003033,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233345,0.003033,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233345,0.003033,-0.003250,0.249979,0,0);}
.mf6_c01021{transform:matrix(0.235220,0.003764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235220,0.003764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235220,0.003764,-0.003999,0.249968,0,0);}
.mf0_c01021{transform:matrix(0.236351,0.004018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236351,0.004018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236351,0.004018,-0.004249,0.249964,0,0);}
.mac_c01021{transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);}
.me2_c01021{transform:matrix(0.237038,0.002844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237038,0.002844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237038,0.002844,-0.003000,0.249982,0,0);}
.mdb_c01021{transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238288,0.002859,-0.003000,0.249982,0,0);}
.me6_c01021{transform:matrix(0.238583,0.002863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238583,0.002863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238583,0.002863,-0.003000,0.249982,0,0);}
.m87_c01021{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);}
.m7_c01021{transform:matrix(0.239192,-0.003349,0.003500,0.249976,0,0);-ms-transform:matrix(0.239192,-0.003349,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239192,-0.003349,0.003500,0.249976,0,0);}
.m80_c01021{transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);}
.m22_c01021{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);}
.mc6_c01021{transform:matrix(0.240428,0.002885,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240428,0.002885,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240428,0.002885,-0.003000,0.249982,0,0);}
.m3c_c01021{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01021{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);}
.m7b_c01021{transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);}
.mbb_c01021{transform:matrix(0.244207,0.002930,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244207,0.002930,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244207,0.002930,-0.003000,0.249982,0,0);}
.m7a_c01021{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);}
.mb1_c01021{transform:matrix(0.247019,0.003211,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247019,0.003211,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247019,0.003211,-0.003250,0.249979,0,0);}
.mbe_c01021{transform:matrix(0.248997,0.002988,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248997,0.002988,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248997,0.002988,-0.003000,0.249982,0,0);}
.m86_c01021{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.m32_c01021{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.me9_c01021{transform:matrix(0.252077,0.003025,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252077,0.003025,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252077,0.003025,-0.003000,0.249982,0,0);}
.mf8_c01021{transform:matrix(0.254742,0.004076,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254742,0.004076,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254742,0.004076,-0.003999,0.249968,0,0);}
.mca_c01021{transform:matrix(0.255142,0.003062,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255142,0.003062,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255142,0.003062,-0.003000,0.249982,0,0);}
.m7d_c01021{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);}
.m16_c01021{transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);}
.m47_c01021{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.me5_c01021{transform:matrix(0.259621,0.003115,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259621,0.003115,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259621,0.003115,-0.003000,0.249982,0,0);}
.m3e_c01021{transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);}
.mb_c01021{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_c01021{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);}
.m82_c01021{transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);}
.m2_c01021{transform:matrix(0.278133,-0.003894,0.003500,0.249976,0,0);-ms-transform:matrix(0.278133,-0.003894,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278133,-0.003894,0.003500,0.249976,0,0);}
.m31_c01021{transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283880,0.000000,0.000000,0.250000,0,0);}
.me4_c01021{transform:matrix(0.286559,0.003439,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286559,0.003439,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286559,0.003439,-0.003000,0.249982,0,0);}
.m73_c01021{transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);}
.m42_c01021{transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289350,0.000000,0.000000,0.250000,0,0);}
.mdf_c01021{transform:matrix(0.290159,0.003482,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290159,0.003482,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290159,0.003482,-0.003000,0.249982,0,0);}
.m1_c01021{transform:matrix(0.293416,-0.004108,0.003500,0.249976,0,0);-ms-transform:matrix(0.293416,-0.004108,0.003500,0.249976,0,0);-webkit-transform:matrix(0.293416,-0.004108,0.003500,0.249976,0,0);}
.m74_c01021{transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300085,0.000000,0.000000,0.250000,0,0);}
.m6a_c01021{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);}
.m23_c01021{transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327780,0.000000,0.000000,0.250000,0,0);}
.m2f_c01021{transform:matrix(0.328640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328640,0.000000,0.000000,0.250000,0,0);}
.me8_c01021{transform:matrix(0.328886,0.003947,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328886,0.003947,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328886,0.003947,-0.003000,0.249982,0,0);}
.m2d_c01021{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);}
.m5e_c01021{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);}
.m84_c01021{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);}
.m63_c01021{transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342960,0.000000,0.000000,0.250000,0,0);}
.mba_c01021{transform:matrix(0.346509,0.003812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.346509,0.003812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.346509,0.003812,-0.002750,0.249985,0,0);}
.md7_c01021{transform:matrix(0.349545,0.004195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.349545,0.004195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.349545,0.004195,-0.003000,0.249982,0,0);}
.m1b_c01021{transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359605,0.000000,0.000000,0.250000,0,0);}
.m9_c01021{transform:matrix(0.362709,-0.005078,0.003500,0.249976,0,0);-ms-transform:matrix(0.362709,-0.005078,0.003500,0.249976,0,0);-webkit-transform:matrix(0.362709,-0.005078,0.003500,0.249976,0,0);}
.m8b_c01021{transform:matrix(0.373840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373840,0.000000,0.000000,0.250000,0,0);}
.m30_c01021{transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390050,0.000000,0.000000,0.250000,0,0);}
.m7e_c01021{transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425345,0.000000,0.000000,0.250000,0,0);}
.m6_c01021{transform:matrix(0.450121,-0.006302,0.003500,0.249976,0,0);-ms-transform:matrix(0.450121,-0.006302,0.003500,0.249976,0,0);-webkit-transform:matrix(0.450121,-0.006302,0.003500,0.249976,0,0);}
.m56_c01021{transform:matrix(0.457160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457160,0.000000,0.000000,0.250000,0,0);}
.m24_c01021{transform:matrix(0.659030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659030,0.000000,0.000000,0.250000,0,0);}
.m57_c01021{transform:matrix(0.693550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693550,0.000000,0.000000,0.250000,0,0);}
.ma_c01021{transform:matrix(0.799987,-0.011200,0.003500,0.249976,0,0);-ms-transform:matrix(0.799987,-0.011200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.799987,-0.011200,0.003500,0.249976,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls0_c01021{letter-spacing:0.000000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
.fc0_c01021{color:transparent;}
.fs11_c01021{font-size:23.100000px;}
.fs14_c01021{font-size:50.406451px;}
.fs15_c01021{font-size:51.450000px;}
.fs13_c01021{font-size:51.456585px;}
.fs12_c01021{font-size:54.607889px;}
.fs0_c01021{font-size:60.905968px;}
.fs3_c01021{font-size:61.950000px;}
.fse_c01021{font-size:61.954460px;}
.fs7_c01021{font-size:63.000000px;}
.fsb_c01021{font-size:63.005323px;}
.fs2_c01021{font-size:66.150000px;}
.fs5_c01021{font-size:68.250000px;}
.fsd_c01021{font-size:68.254129px;}
.fs6_c01021{font-size:69.300000px;}
.fsa_c01021{font-size:69.305856px;}
.fs8_c01021{font-size:70.350000px;}
.fsf_c01021{font-size:70.355065px;}
.fs4_c01021{font-size:71.400000px;}
.fs10_c01021{font-size:71.405141px;}
.fsc_c01021{font-size:71.406033px;}
.fs9_c01021{font-size:72.450000px;}
.fs1_c01021{font-size:107.110495px;}
.y0_c01021{bottom:0.000000px;}
.ya3_c01021{bottom:154.407000px;}
.ya2_c01021{bottom:155.967288px;}
.ya1_c01021{bottom:156.920412px;}
.ya0_c01021{bottom:157.242408px;}
.y9f_c01021{bottom:158.348988px;}
.y9e_c01021{bottom:158.620704px;}
.y9d_c01021{bottom:159.180888px;}
.y9c_c01021{bottom:159.570396px;}
.y9b_c01021{bottom:170.313972px;}
.y9a_c01021{bottom:171.139404px;}
.y99_c01021{bottom:171.501900px;}
.y98_c01021{bottom:172.003644px;}
.y97_c01021{bottom:172.615908px;}
.y96_c01021{bottom:172.871436px;}
.y95_c01021{bottom:173.341500px;}
.y94_c01021{bottom:174.257495px;}
.y93_c01021{bottom:174.569487px;}
.y92_c01021{bottom:174.950406px;}
.y91_c01021{bottom:176.446287px;}
.y90_c01021{bottom:176.727170px;}
.y8f_c01021{bottom:177.034802px;}
.y8e_c01021{bottom:177.393000px;}
.y8d_c01021{bottom:206.280000px;}
.y8c_c01021{bottom:225.657132px;}
.y8b_c01021{bottom:226.127598px;}
.y8a_c01021{bottom:226.523004px;}
.y89_c01021{bottom:226.843188px;}
.y88_c01021{bottom:227.300352px;}
.y87_c01021{bottom:227.935392px;}
.y86_c01021{bottom:228.752322px;}
.y85_c01021{bottom:229.040430px;}
.y84_c01021{bottom:229.941366px;}
.y83_c01021{bottom:230.303832px;}
.y82_c01021{bottom:247.529892px;}
.y81_c01021{bottom:248.697108px;}
.y80_c01021{bottom:249.339078px;}
.y7f_c01021{bottom:250.368000px;}
.y7e_c01021{bottom:250.703592px;}
.y7d_c01021{bottom:251.590362px;}
.y7c_c01021{bottom:252.028332px;}
.y7b_c01021{bottom:253.067220px;}
.y7a_c01021{bottom:253.729536px;}
.y79_c01021{bottom:254.611350px;}
.y78_c01021{bottom:270.281484px;}
.y77_c01021{bottom:271.693644px;}
.y76_c01021{bottom:272.804994px;}
.y75_c01021{bottom:273.517608px;}
.y74_c01021{bottom:273.741900px;}
.y73_c01021{bottom:274.462224px;}
.y72_c01021{bottom:275.402316px;}
.y71_c01021{bottom:276.117900px;}
.y70_c01021{bottom:277.021572px;}
.y6f_c01021{bottom:294.410418px;}
.y6e_c01021{bottom:294.818586px;}
.y6d_c01021{bottom:295.310454px;}
.y6c_c01021{bottom:295.664442px;}
.y6b_c01021{bottom:295.913742px;}
.y6a_c01021{bottom:296.617164px;}
.y69_c01021{bottom:296.928024px;}
.y68_c01021{bottom:297.669966px;}
.y67_c01021{bottom:298.081500px;}
.y66_c01021{bottom:318.457050px;}
.y65_c01021{bottom:318.746292px;}
.y64_c01021{bottom:319.134372px;}
.y63_c01021{bottom:319.420086px;}
.y62_c01021{bottom:319.590474px;}
.y61_c01021{bottom:320.006562px;}
.y60_c01021{bottom:320.385102px;}
.y5f_c01021{bottom:320.690292px;}
.y5e_c01021{bottom:321.675846px;}
.y5d_c01021{bottom:322.051200px;}
.y5c_c01021{bottom:322.381500px;}
.y5b_c01021{bottom:340.942743px;}
.y5a_c01021{bottom:341.556906px;}
.y59_c01021{bottom:341.865869px;}
.y58_c01021{bottom:342.272792px;}
.y57_c01021{bottom:342.557367px;}
.y56_c01021{bottom:343.226195px;}
.y55_c01021{bottom:343.618317px;}
.y54_c01021{bottom:344.051558px;}
.y53_c01021{bottom:344.791500px;}
.y52_c01021{bottom:364.314201px;}
.y51_c01021{bottom:364.554918px;}
.y50_c01021{bottom:364.905099px;}
.y4f_c01021{bottom:365.057968px;}
.y4e_c01021{bottom:365.289496px;}
.y4d_c01021{bottom:365.669602px;}
.y4c_c01021{bottom:365.877975px;}
.y4b_c01021{bottom:366.222888px;}
.y4a_c01021{bottom:366.923794px;}
.y49_c01021{bottom:386.756614px;}
.y48_c01021{bottom:387.151171px;}
.y47_c01021{bottom:387.661080px;}
.y46_c01021{bottom:388.302391px;}
.y45_c01021{bottom:388.680528px;}
.y44_c01021{bottom:389.349121px;}
.y43_c01021{bottom:389.883057px;}
.y42_c01021{bottom:390.249706px;}
.y41_c01021{bottom:390.956250px;}
.y40_c01021{bottom:410.995675px;}
.y3f_c01021{bottom:411.231165px;}
.y3e_c01021{bottom:411.500814px;}
.y3d_c01021{bottom:411.682947px;}
.y3c_c01021{bottom:412.125325px;}
.y3b_c01021{bottom:412.377904px;}
.y3a_c01021{bottom:412.653132px;}
.y39_c01021{bottom:413.117632px;}
.y38_c01021{bottom:413.343933px;}
.y37_c01021{bottom:413.638065px;}
.y36_c01021{bottom:433.634613px;}
.y35_c01021{bottom:434.277021px;}
.y34_c01021{bottom:434.642119px;}
.y33_c01021{bottom:435.137088px;}
.y32_c01021{bottom:435.807537px;}
.y31_c01021{bottom:436.196386px;}
.y30_c01021{bottom:436.706214px;}
.y2f_c01021{bottom:437.134492px;}
.y2e_c01021{bottom:437.460844px;}
.y2d_c01021{bottom:437.941500px;}
.y2c_c01021{bottom:457.801500px;}
.y2b_c01021{bottom:478.864500px;}
.y2a_c01021{bottom:479.059500px;}
.y29_c01021{bottom:479.473500px;}
.y28_c01021{bottom:479.805000px;}
.y27_c01021{bottom:479.988000px;}
.y26_c01021{bottom:480.622500px;}
.y25_c01021{bottom:480.883500px;}
.y24_c01021{bottom:481.260000px;}
.y23_c01021{bottom:481.681500px;}
.y22_c01021{bottom:504.244500px;}
.y21_c01021{bottom:527.646000px;}
.y20_c01021{bottom:549.226500px;}
.y1f_c01021{bottom:549.516000px;}
.y1e_c01021{bottom:549.664500px;}
.y1d_c01021{bottom:550.320000px;}
.y1c_c01021{bottom:550.869000px;}
.y1b_c01021{bottom:551.119500px;}
.y1a_c01021{bottom:551.409000px;}
.y19_c01021{bottom:551.749500px;}
.y18_c01021{bottom:552.160500px;}
.y17_c01021{bottom:572.427000px;}
.y16_c01021{bottom:595.656000px;}
.y15_c01021{bottom:619.810500px;}
.y14_c01021{bottom:641.170500px;}
.y13_c01021{bottom:663.840000px;}
.y12_c01021{bottom:686.269500px;}
.y11_c01021{bottom:709.570500px;}
.y10_c01021{bottom:733.050000px;}
.yf_c01021{bottom:754.005000px;}
.ye_c01021{bottom:777.871500px;}
.yd_c01021{bottom:801.667500px;}
.yc_c01021{bottom:822.813000px;}
.y9_c01021{bottom:871.115166px;}
.yb_c01021{bottom:871.115193px;}
.ya_c01021{bottom:871.115559px;}
.y1_c01021{bottom:932.305500px;}
.y2_c01021{bottom:933.016182px;}
.y3_c01021{bottom:933.614367px;}
.y4_c01021{bottom:933.982602px;}
.y5_c01021{bottom:934.743579px;}
.y6_c01021{bottom:935.382756px;}
.y7_c01021{bottom:936.323241px;}
.y8_c01021{bottom:937.128192px;}
.h13_c01021{height:23.100000px;}
.h16_c01021{height:50.406451px;}
.h17_c01021{height:51.450000px;}
.h15_c01021{height:51.456585px;}
.h14_c01021{height:54.607889px;}
.h2_c01021{height:60.905968px;}
.h5_c01021{height:61.950000px;}
.h10_c01021{height:61.954460px;}
.h9_c01021{height:63.000000px;}
.hd_c01021{height:63.005323px;}
.h4_c01021{height:66.150000px;}
.h7_c01021{height:68.250000px;}
.hf_c01021{height:68.254129px;}
.h8_c01021{height:69.300000px;}
.hc_c01021{height:69.305856px;}
.ha_c01021{height:70.350000px;}
.h11_c01021{height:70.355065px;}
.h6_c01021{height:71.400000px;}
.h12_c01021{height:71.405141px;}
.he_c01021{height:71.406033px;}
.hb_c01021{height:72.450000px;}
.h3_c01021{height:107.110495px;}
.h0_c01021{height:1008.450000px;}
.h1_c01021{height:1008.750000px;}
.w1_c01021{width:700.500000px;}
.w0_c01021{width:700.650000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:88.141500px;}
.x38_c01021{left:113.400000px;}
.x17_c01021{left:118.530000px;}
.xc_c01021{left:122.040000px;}
.x9_c01021{left:123.123852px;}
.x27_c01021{left:125.280000px;}
.x2_c01021{left:138.904500px;}
.x1d_c01021{left:143.100000px;}
.xd_c01021{left:146.070000px;}
.x9a_c01021{left:148.301124px;}
.x5c_c01021{left:152.010000px;}
.x83_c01021{left:156.162000px;}
.x4f_c01021{left:159.840000px;}
.x39_c01021{left:161.730000px;}
.x28_c01021{left:162.810000px;}
.x41_c01021{left:175.770000px;}
.x93_c01021{left:177.511500px;}
.xe_c01021{left:179.010000px;}
.x3_c01021{left:181.632000px;}
.x1e_c01021{left:185.760000px;}
.x4a_c01021{left:187.110000px;}
.x84_c01021{left:190.456500px;}
.x18_c01021{left:191.970000px;}
.x6f_c01021{left:193.200582px;}
.x9b_c01021{left:197.200332px;}
.x29_c01021{left:199.530000px;}
.xf_c01021{left:203.580000px;}
.x55_c01021{left:205.617000px;}
.x4_c01021{left:207.934500px;}
.x63_c01021{left:212.917500px;}
.x19_c01021{left:214.110000px;}
.x4b_c01021{left:218.430000px;}
.x2a_c01021{left:222.750000px;}
.x6c_c01021{left:223.933500px;}
.x7b_c01021{left:228.042000px;}
.xa_c01021{left:229.244142px;}
.x50_c01021{left:232.200000px;}
.x77_c01021{left:238.060692px;}
.x1a_c01021{left:240.840000px;}
.x56_c01021{left:243.465000px;}
.x3a_c01021{left:246.240000px;}
.x42_c01021{left:248.940000px;}
.x85_c01021{left:252.285000px;}
.x1f_c01021{left:256.770000px;}
.x2f_c01021{left:260.550000px;}
.x5_c01021{left:262.290000px;}
.x32_c01021{left:263.790000px;}
.x91_c01021{left:265.771908px;}
.x7c_c01021{left:267.427500px;}
.x70_c01021{left:269.881560px;}
.x67_c01021{left:272.158500px;}
.x43_c01021{left:274.320000px;}
.x57_c01021{left:275.551500px;}
.x2b_c01021{left:277.290000px;}
.x94_c01021{left:282.027000px;}
.x10_c01021{left:284.040000px;}
.x3b_c01021{left:289.710000px;}
.x60_c01021{left:292.680000px;}
.x73_c01021{left:294.391300px;}
.x6d_c01021{left:296.095500px;}
.x1b_c01021{left:297.270000px;}
.x71_c01021{left:300.400640px;}
.x7e_c01021{left:301.441500px;}
.x58_c01021{left:303.366000px;}
.x33_c01021{left:304.560000px;}
.x11_c01021{left:306.450000px;}
.x6_c01021{left:307.945500px;}
.x44_c01021{left:309.690000px;}
.x30_c01021{left:312.120000px;}
.x8b_c01021{left:313.396080px;}
.x1c_c01021{left:316.980000px;}
.x20_c01021{left:320.490000px;}
.x95_c01021{left:322.786500px;}
.x51_c01021{left:326.970000px;}
.xb_c01021{left:328.344567px;}
.x86_c01021{left:336.808500px;}
.x8c_c01021{left:339.142032px;}
.x52_c01021{left:341.280000px;}
.x2c_c01021{left:344.250000px;}
.x68_c01021{left:346.948500px;}
.x34_c01021{left:348.300000px;}
.x74_c01021{left:350.091522px;}
.x21_c01021{left:352.080000px;}
.x12_c01021{left:354.240000px;}
.x45_c01021{left:356.670000px;}
.x7f_c01021{left:358.419000px;}
.x61_c01021{left:362.340000px;}
.x59_c01021{left:364.381500px;}
.x78_c01021{left:367.368900px;}
.x69_c01021{left:369.628500px;}
.x64_c01021{left:371.956500px;}
.x7_c01021{left:375.123000px;}
.x2d_c01021{left:378.000000px;}
.x3c_c01021{left:382.050000px;}
.x79_c01021{left:384.321278px;}
.x87_c01021{left:387.082500px;}
.x35_c01021{left:388.530000px;}
.x22_c01021{left:390.690000px;}
.x80_c01021{left:393.093000px;}
.x2e_c01021{left:394.740000px;}
.x72_c01021{left:397.874210px;}
.x62_c01021{left:399.870000px;}
.x96_c01021{left:403.770000px;}
.x81_c01021{left:407.292000px;}
.x88_c01021{left:409.645722px;}
.x8d_c01021{left:411.001212px;}
.x23_c01021{left:413.370000px;}
.x6e_c01021{left:415.654500px;}
.x97_c01021{left:419.740500px;}
.x6a_c01021{left:421.468500px;}
.x7a_c01021{left:423.260306px;}
.x13_c01021{left:424.440000px;}
.x5d_c01021{left:425.520000px;}
.x4c_c01021{left:427.680000px;}
.x82_c01021{left:431.101500px;}
.x8_c01021{left:432.619500px;}
.x46_c01021{left:435.240000px;}
.x65_c01021{left:436.246500px;}
.x5a_c01021{left:437.248500px;}
.x31_c01021{left:443.610000px;}
.x5e_c01021{left:447.660000px;}
.x6b_c01021{left:449.818500px;}
.x4d_c01021{left:453.060000px;}
.x7d_c01021{left:454.828500px;}
.x53_c01021{left:459.000000px;}
.x47_c01021{left:463.050000px;}
.x3d_c01021{left:466.290000px;}
.x8e_c01021{left:471.491076px;}
.x89_c01021{left:475.004298px;}
.x75_c01021{left:477.543680px;}
.x24_c01021{left:478.710000px;}
.x5b_c01021{left:485.878500px;}
.x66_c01021{left:488.053500px;}
.x98_c01021{left:489.366000px;}
.x4e_c01021{left:490.860000px;}
.x3e_c01021{left:492.480000px;}
.x14_c01021{left:496.800000px;}
.x25_c01021{left:499.230000px;}
.x5f_c01021{left:501.930000px;}
.x36_c01021{left:503.550000px;}
.x8f_c01021{left:509.236308px;}
.x76_c01021{left:510.433109px;}
.x48_c01021{left:512.730000px;}
.x3f_c01021{left:528.660000px;}
.x54_c01021{left:530.550000px;}
.x15_c01021{left:536.220000px;}
.x92_c01021{left:547.713408px;}
.x49_c01021{left:552.960000px;}
.x8a_c01021{left:558.054312px;}
.x16_c01021{left:561.600000px;}
.x99_c01021{left:563.611500px;}
.x37_c01021{left:565.650000px;}
.x26_c01021{left:568.350000px;}
.x40_c01021{left:572.130000px;}
.x90_c01021{left:577.875186px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls0_c01021{letter-spacing:0.000000pt;}
.ws0_c01021{word-spacing:0.000000pt;}
.fs11_c01021{font-size:20.533333pt;}
.fs14_c01021{font-size:44.805734pt;}
.fs15_c01021{font-size:45.733333pt;}
.fs13_c01021{font-size:45.739187pt;}
.fs12_c01021{font-size:48.540346pt;}
.fs0_c01021{font-size:54.138638pt;}
.fs3_c01021{font-size:55.066667pt;}
.fse_c01021{font-size:55.070631pt;}
.fs7_c01021{font-size:56.000000pt;}
.fsb_c01021{font-size:56.004732pt;}
.fs2_c01021{font-size:58.800000pt;}
.fs5_c01021{font-size:60.666667pt;}
.fsd_c01021{font-size:60.670337pt;}
.fs6_c01021{font-size:61.600000pt;}
.fsa_c01021{font-size:61.605205pt;}
.fs8_c01021{font-size:62.533333pt;}
.fsf_c01021{font-size:62.537836pt;}
.fs4_c01021{font-size:63.466667pt;}
.fs10_c01021{font-size:63.471236pt;}
.fsc_c01021{font-size:63.472029pt;}
.fs9_c01021{font-size:64.400000pt;}
.fs1_c01021{font-size:95.209329pt;}
.y0_c01021{bottom:0.000000pt;}
.ya3_c01021{bottom:137.250667pt;}
.ya2_c01021{bottom:138.637589pt;}
.ya1_c01021{bottom:139.484811pt;}
.ya0_c01021{bottom:139.771029pt;}
.y9f_c01021{bottom:140.754656pt;}
.y9e_c01021{bottom:140.996181pt;}
.y9d_c01021{bottom:141.494123pt;}
.y9c_c01021{bottom:141.840352pt;}
.y9b_c01021{bottom:151.390197pt;}
.y9a_c01021{bottom:152.123915pt;}
.y99_c01021{bottom:152.446133pt;}
.y98_c01021{bottom:152.892128pt;}
.y97_c01021{bottom:153.436363pt;}
.y96_c01021{bottom:153.663499pt;}
.y95_c01021{bottom:154.081333pt;}
.y94_c01021{bottom:154.895551pt;}
.y93_c01021{bottom:155.172877pt;}
.y92_c01021{bottom:155.511472pt;}
.y91_c01021{bottom:156.841144pt;}
.y90_c01021{bottom:157.090817pt;}
.y8f_c01021{bottom:157.364268pt;}
.y8e_c01021{bottom:157.682667pt;}
.y8d_c01021{bottom:183.360000pt;}
.y8c_c01021{bottom:200.584117pt;}
.y8b_c01021{bottom:201.002309pt;}
.y8a_c01021{bottom:201.353781pt;}
.y89_c01021{bottom:201.638389pt;}
.y88_c01021{bottom:202.044757pt;}
.y87_c01021{bottom:202.609237pt;}
.y86_c01021{bottom:203.335397pt;}
.y85_c01021{bottom:203.591493pt;}
.y84_c01021{bottom:204.392325pt;}
.y83_c01021{bottom:204.714517pt;}
.y82_c01021{bottom:220.026571pt;}
.y81_c01021{bottom:221.064096pt;}
.y80_c01021{bottom:221.634736pt;}
.y7f_c01021{bottom:222.549333pt;}
.y7e_c01021{bottom:222.847637pt;}
.y7d_c01021{bottom:223.635877pt;}
.y7c_c01021{bottom:224.025184pt;}
.y7b_c01021{bottom:224.948640pt;}
.y7a_c01021{bottom:225.537365pt;}
.y79_c01021{bottom:226.321200pt;}
.y78_c01021{bottom:240.250208pt;}
.y77_c01021{bottom:241.505461pt;}
.y76_c01021{bottom:242.493328pt;}
.y75_c01021{bottom:243.126763pt;}
.y74_c01021{bottom:243.326133pt;}
.y73_c01021{bottom:243.966421pt;}
.y72_c01021{bottom:244.802059pt;}
.y71_c01021{bottom:245.438133pt;}
.y70_c01021{bottom:246.241397pt;}
.y6f_c01021{bottom:261.698149pt;}
.y6e_c01021{bottom:262.060965pt;}
.y6d_c01021{bottom:262.498181pt;}
.y6c_c01021{bottom:262.812837pt;}
.y6b_c01021{bottom:263.034437pt;}
.y6a_c01021{bottom:263.659701pt;}
.y69_c01021{bottom:263.936021pt;}
.y68_c01021{bottom:264.595525pt;}
.y67_c01021{bottom:264.961333pt;}
.y66_c01021{bottom:283.072933pt;}
.y65_c01021{bottom:283.330037pt;}
.y64_c01021{bottom:283.674997pt;}
.y63_c01021{bottom:283.928965pt;}
.y62_c01021{bottom:284.080421pt;}
.y61_c01021{bottom:284.450277pt;}
.y60_c01021{bottom:284.786757pt;}
.y5f_c01021{bottom:285.058037pt;}
.y5e_c01021{bottom:285.934085pt;}
.y5d_c01021{bottom:286.267733pt;}
.y5c_c01021{bottom:286.561333pt;}
.y5b_c01021{bottom:303.060216pt;}
.y5a_c01021{bottom:303.606139pt;}
.y59_c01021{bottom:303.880772pt;}
.y58_c01021{bottom:304.242481pt;}
.y57_c01021{bottom:304.495437pt;}
.y56_c01021{bottom:305.089951pt;}
.y55_c01021{bottom:305.438504pt;}
.y54_c01021{bottom:305.823607pt;}
.y53_c01021{bottom:306.481333pt;}
.y52_c01021{bottom:323.834845pt;}
.y51_c01021{bottom:324.048816pt;}
.y50_c01021{bottom:324.360088pt;}
.y4f_c01021{bottom:324.495972pt;}
.y4e_c01021{bottom:324.701775pt;}
.y4d_c01021{bottom:325.039647pt;}
.y4c_c01021{bottom:325.224867pt;}
.y4b_c01021{bottom:325.531456pt;}
.y4a_c01021{bottom:326.154484pt;}
.y49_c01021{bottom:343.783657pt;}
.y48_c01021{bottom:344.134375pt;}
.y47_c01021{bottom:344.587627pt;}
.y46_c01021{bottom:345.157681pt;}
.y45_c01021{bottom:345.493803pt;}
.y44_c01021{bottom:346.088108pt;}
.y43_c01021{bottom:346.562717pt;}
.y42_c01021{bottom:346.888628pt;}
.y41_c01021{bottom:347.516667pt;}
.y40_c01021{bottom:365.329489pt;}
.y3f_c01021{bottom:365.538813pt;}
.y3e_c01021{bottom:365.778501pt;}
.y3d_c01021{bottom:365.940397pt;}
.y3c_c01021{bottom:366.333623pt;}
.y3b_c01021{bottom:366.558137pt;}
.y3a_c01021{bottom:366.802784pt;}
.y39_c01021{bottom:367.215673pt;}
.y38_c01021{bottom:367.416829pt;}
.y37_c01021{bottom:367.678280pt;}
.y36_c01021{bottom:385.452989pt;}
.y35_c01021{bottom:386.024019pt;}
.y34_c01021{bottom:386.348551pt;}
.y33_c01021{bottom:386.788523pt;}
.y32_c01021{bottom:387.384477pt;}
.y31_c01021{bottom:387.730121pt;}
.y30_c01021{bottom:388.183301pt;}
.y2f_c01021{bottom:388.563993pt;}
.y2e_c01021{bottom:388.854084pt;}
.y2d_c01021{bottom:389.281333pt;}
.y2c_c01021{bottom:406.934667pt;}
.y2b_c01021{bottom:425.657333pt;}
.y2a_c01021{bottom:425.830667pt;}
.y29_c01021{bottom:426.198667pt;}
.y28_c01021{bottom:426.493333pt;}
.y27_c01021{bottom:426.656000pt;}
.y26_c01021{bottom:427.220000pt;}
.y25_c01021{bottom:427.452000pt;}
.y24_c01021{bottom:427.786667pt;}
.y23_c01021{bottom:428.161333pt;}
.y22_c01021{bottom:448.217333pt;}
.y21_c01021{bottom:469.018667pt;}
.y20_c01021{bottom:488.201333pt;}
.y1f_c01021{bottom:488.458667pt;}
.y1e_c01021{bottom:488.590667pt;}
.y1d_c01021{bottom:489.173333pt;}
.y1c_c01021{bottom:489.661333pt;}
.y1b_c01021{bottom:489.884000pt;}
.y1a_c01021{bottom:490.141333pt;}
.y19_c01021{bottom:490.444000pt;}
.y18_c01021{bottom:490.809333pt;}
.y17_c01021{bottom:508.824000pt;}
.y16_c01021{bottom:529.472000pt;}
.y15_c01021{bottom:550.942667pt;}
.y14_c01021{bottom:569.929333pt;}
.y13_c01021{bottom:590.080000pt;}
.y12_c01021{bottom:610.017333pt;}
.y11_c01021{bottom:630.729333pt;}
.y10_c01021{bottom:651.600000pt;}
.yf_c01021{bottom:670.226667pt;}
.ye_c01021{bottom:691.441333pt;}
.yd_c01021{bottom:712.593333pt;}
.yc_c01021{bottom:731.389333pt;}
.y9_c01021{bottom:774.324592pt;}
.yb_c01021{bottom:774.324616pt;}
.ya_c01021{bottom:774.324941pt;}
.y1_c01021{bottom:828.716000pt;}
.y2_c01021{bottom:829.347717pt;}
.y3_c01021{bottom:829.879437pt;}
.y4_c01021{bottom:830.206757pt;}
.y5_c01021{bottom:830.883181pt;}
.y6_c01021{bottom:831.451339pt;}
.y7_c01021{bottom:832.287325pt;}
.y8_c01021{bottom:833.002837pt;}
.h13_c01021{height:20.533333pt;}
.h16_c01021{height:44.805734pt;}
.h17_c01021{height:45.733333pt;}
.h15_c01021{height:45.739187pt;}
.h14_c01021{height:48.540346pt;}
.h2_c01021{height:54.138638pt;}
.h5_c01021{height:55.066667pt;}
.h10_c01021{height:55.070631pt;}
.h9_c01021{height:56.000000pt;}
.hd_c01021{height:56.004732pt;}
.h4_c01021{height:58.800000pt;}
.h7_c01021{height:60.666667pt;}
.hf_c01021{height:60.670337pt;}
.h8_c01021{height:61.600000pt;}
.hc_c01021{height:61.605205pt;}
.ha_c01021{height:62.533333pt;}
.h11_c01021{height:62.537836pt;}
.h6_c01021{height:63.466667pt;}
.h12_c01021{height:63.471236pt;}
.he_c01021{height:63.472029pt;}
.hb_c01021{height:64.400000pt;}
.h3_c01021{height:95.209329pt;}
.h0_c01021{height:896.400000pt;}
.h1_c01021{height:896.666667pt;}
.w1_c01021{width:622.666667pt;}
.w0_c01021{width:622.800000pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:78.348000pt;}
.x38_c01021{left:100.800000pt;}
.x17_c01021{left:105.360000pt;}
.xc_c01021{left:108.480000pt;}
.x9_c01021{left:109.443424pt;}
.x27_c01021{left:111.360000pt;}
.x2_c01021{left:123.470667pt;}
.x1d_c01021{left:127.200000pt;}
.xd_c01021{left:129.840000pt;}
.x9a_c01021{left:131.823221pt;}
.x5c_c01021{left:135.120000pt;}
.x83_c01021{left:138.810667pt;}
.x4f_c01021{left:142.080000pt;}
.x39_c01021{left:143.760000pt;}
.x28_c01021{left:144.720000pt;}
.x41_c01021{left:156.240000pt;}
.x93_c01021{left:157.788000pt;}
.xe_c01021{left:159.120000pt;}
.x3_c01021{left:161.450667pt;}
.x1e_c01021{left:165.120000pt;}
.x4a_c01021{left:166.320000pt;}
.x84_c01021{left:169.294667pt;}
.x18_c01021{left:170.640000pt;}
.x6f_c01021{left:171.733851pt;}
.x9b_c01021{left:175.289184pt;}
.x29_c01021{left:177.360000pt;}
.xf_c01021{left:180.960000pt;}
.x55_c01021{left:182.770667pt;}
.x4_c01021{left:184.830667pt;}
.x63_c01021{left:189.260000pt;}
.x19_c01021{left:190.320000pt;}
.x4b_c01021{left:194.160000pt;}
.x2a_c01021{left:198.000000pt;}
.x6c_c01021{left:199.052000pt;}
.x7b_c01021{left:202.704000pt;}
.xa_c01021{left:203.772571pt;}
.x50_c01021{left:206.400000pt;}
.x77_c01021{left:211.609504pt;}
.x1a_c01021{left:214.080000pt;}
.x56_c01021{left:216.413333pt;}
.x3a_c01021{left:218.880000pt;}
.x42_c01021{left:221.280000pt;}
.x85_c01021{left:224.253333pt;}
.x1f_c01021{left:228.240000pt;}
.x2f_c01021{left:231.600000pt;}
.x5_c01021{left:233.146667pt;}
.x32_c01021{left:234.480000pt;}
.x91_c01021{left:236.241696pt;}
.x7c_c01021{left:237.713333pt;}
.x70_c01021{left:239.894720pt;}
.x67_c01021{left:241.918667pt;}
.x43_c01021{left:243.840000pt;}
.x57_c01021{left:244.934667pt;}
.x2b_c01021{left:246.480000pt;}
.x94_c01021{left:250.690667pt;}
.x10_c01021{left:252.480000pt;}
.x3b_c01021{left:257.520000pt;}
.x60_c01021{left:260.160000pt;}
.x73_c01021{left:261.681156pt;}
.x6d_c01021{left:263.196000pt;}
.x1b_c01021{left:264.240000pt;}
.x71_c01021{left:267.022791pt;}
.x7e_c01021{left:267.948000pt;}
.x58_c01021{left:269.658667pt;}
.x33_c01021{left:270.720000pt;}
.x11_c01021{left:272.400000pt;}
.x6_c01021{left:273.729333pt;}
.x44_c01021{left:275.280000pt;}
.x30_c01021{left:277.440000pt;}
.x8b_c01021{left:278.574293pt;}
.x1c_c01021{left:281.760000pt;}
.x20_c01021{left:284.880000pt;}
.x95_c01021{left:286.921333pt;}
.x51_c01021{left:290.640000pt;}
.xb_c01021{left:291.861837pt;}
.x86_c01021{left:299.385333pt;}
.x8c_c01021{left:301.459584pt;}
.x52_c01021{left:303.360000pt;}
.x2c_c01021{left:306.000000pt;}
.x68_c01021{left:308.398667pt;}
.x34_c01021{left:309.600000pt;}
.x74_c01021{left:311.192464pt;}
.x21_c01021{left:312.960000pt;}
.x12_c01021{left:314.880000pt;}
.x45_c01021{left:317.040000pt;}
.x7f_c01021{left:318.594667pt;}
.x61_c01021{left:322.080000pt;}
.x59_c01021{left:323.894667pt;}
.x78_c01021{left:326.550133pt;}
.x69_c01021{left:328.558667pt;}
.x64_c01021{left:330.628000pt;}
.x7_c01021{left:333.442667pt;}
.x2d_c01021{left:336.000000pt;}
.x3c_c01021{left:339.600000pt;}
.x79_c01021{left:341.618913pt;}
.x87_c01021{left:344.073333pt;}
.x35_c01021{left:345.360000pt;}
.x22_c01021{left:347.280000pt;}
.x80_c01021{left:349.416000pt;}
.x2e_c01021{left:350.880000pt;}
.x72_c01021{left:353.665964pt;}
.x62_c01021{left:355.440000pt;}
.x96_c01021{left:358.906667pt;}
.x81_c01021{left:362.037333pt;}
.x88_c01021{left:364.129531pt;}
.x8d_c01021{left:365.334411pt;}
.x23_c01021{left:367.440000pt;}
.x6e_c01021{left:369.470667pt;}
.x97_c01021{left:373.102667pt;}
.x6a_c01021{left:374.638667pt;}
.x7a_c01021{left:376.231383pt;}
.x13_c01021{left:377.280000pt;}
.x5d_c01021{left:378.240000pt;}
.x4c_c01021{left:380.160000pt;}
.x82_c01021{left:383.201333pt;}
.x8_c01021{left:384.550667pt;}
.x46_c01021{left:386.880000pt;}
.x65_c01021{left:387.774667pt;}
.x5a_c01021{left:388.665333pt;}
.x31_c01021{left:394.320000pt;}
.x5e_c01021{left:397.920000pt;}
.x6b_c01021{left:399.838667pt;}
.x4d_c01021{left:402.720000pt;}
.x7d_c01021{left:404.292000pt;}
.x53_c01021{left:408.000000pt;}
.x47_c01021{left:411.600000pt;}
.x3d_c01021{left:414.480000pt;}
.x8e_c01021{left:419.103179pt;}
.x89_c01021{left:422.226043pt;}
.x75_c01021{left:424.483271pt;}
.x24_c01021{left:425.520000pt;}
.x5b_c01021{left:431.892000pt;}
.x66_c01021{left:433.825333pt;}
.x98_c01021{left:434.992000pt;}
.x4e_c01021{left:436.320000pt;}
.x3e_c01021{left:437.760000pt;}
.x14_c01021{left:441.600000pt;}
.x25_c01021{left:443.760000pt;}
.x5f_c01021{left:446.160000pt;}
.x36_c01021{left:447.600000pt;}
.x8f_c01021{left:452.654496pt;}
.x76_c01021{left:453.718319pt;}
.x48_c01021{left:455.760000pt;}
.x3f_c01021{left:469.920000pt;}
.x54_c01021{left:471.600000pt;}
.x15_c01021{left:476.640000pt;}
.x92_c01021{left:486.856363pt;}
.x49_c01021{left:491.520000pt;}
.x8a_c01021{left:496.048277pt;}
.x16_c01021{left:499.200000pt;}
.x99_c01021{left:500.988000pt;}
.x37_c01021{left:502.800000pt;}
.x26_c01021{left:505.200000pt;}
.x40_c01021{left:508.560000pt;}
.x90_c01021{left:513.666832pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.000000;font-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_c01022{transform:matrix(0.098320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098320,0.000000,0.000000,0.250000,0,0);}
.m3d_c01022{transform:matrix(0.132540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132540,0.000000,0.000000,0.250000,0,0);}
.m6f_c01022{transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139145,0.000000,0.000000,0.250000,0,0);}
.m35_c01022{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m5c_c01022{transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144015,0.000000,0.000000,0.250000,0,0);}
.m34_c01022{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m2a_c01022{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);}
.m6e_c01022{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);}
.m11_c01022{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);}
.m6d_c01022{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);}
.m49_c01022{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01022{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);}
.m5e_c01022{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);}
.m87_c01022{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);}
.m38_c01022{transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157965,0.000000,0.000000,0.250000,0,0);}
.m13_c01022{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);}
.m65_c01022{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);}
.m43_c01022{transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160655,0.000000,0.000000,0.250000,0,0);}
.m63_c01022{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);}
.m8b_c01022{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);}
.m7c_c01022{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);}
.m16_c01022{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);}
.m8f_c01022{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);}
.m40_c01022{transform:matrix(0.166685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166685,0.000000,0.000000,0.250000,0,0);}
.m8e_c01022{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);}
.m74_c01022{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);}
.m56_c01022{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);}
.m3c_c01022{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);}
.m3b_c01022{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);}
.m89_c01022{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);}
.m19_c01022{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);}
.m82_c01022{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);}
.m7d_c01022{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);}
.m23_c01022{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);}
.m4b_c01022{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);}
.m5b_c01022{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);}
.m72_c01022{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);}
.m1a_c01022{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);}
.m36_c01022{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);}
.m67_c01022{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);}
.m5a_c01022{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);}
.m71_c01022{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);}
.m78_c01022{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);}
.m84_c01022{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);}
.m4c_c01022{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);}
.m7e_c01022{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);}
.m8a_c01022{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m88_c01022{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);}
.mf_c01022{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);}
.m51_c01022{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);}
.m2f_c01022{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);}
.m33_c01022{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m2c_c01022{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);}
.me_c01022{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);}
.m18_c01022{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);}
.m81_c01022{transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183295,0.000000,0.000000,0.250000,0,0);}
.m12_c01022{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);}
.m2e_c01022{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);}
.m6_c01022{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);}
.m46_c01022{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);}
.m79_c01022{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);}
.m3f_c01022{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);}
.m50_c01022{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);}
.m4a_c01022{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_c01022{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);}
.m47_c01022{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);}
.m44_c01022{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);}
.m4d_c01022{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);}
.m2b_c01022{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);}
.m39_c01022{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);}
.m75_c01022{transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);}
.m8c_c01022{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);}
.m73_c01022{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);}
.m26_c01022{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);}
.m5d_c01022{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);}
.m48_c01022{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);}
.m20_c01022{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);}
.m17_c01022{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);}
.m1f_c01022{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);}
.m62_c01022{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);}
.m66_c01022{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);}
.m7a_c01022{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);}
.m59_c01022{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);}
.m28_c01022{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);}
.m55_c01022{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);}
.m14_c01022{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);}
.m61_c01022{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);}
.m10_c01022{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);}
.m2d_c01022{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);}
.m24_c01022{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);}
.m31_c01022{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);}
.m30_c01022{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);}
.m68_c01022{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);}
.m4e_c01022{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);}
.mb_c01022{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);}
.m8d_c01022{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);}
.mc_c01022{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);}
.m37_c01022{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);}
.m7f_c01022{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);}
.m15_c01022{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);}
.m52_c01022{transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);}
.m41_c01022{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);}
.m83_c01022{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);}
.ma_c01022{transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220235,0.000000,0.000000,0.250000,0,0);}
.m8_c01022{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);}
.m29_c01022{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);}
.m64_c01022{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m3e_c01022{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);}
.m0_c01022{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);}
.m32_c01022{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);}
.m94_c01022{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);}
.m1_c01022{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);}
.m77_c01022{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);}
.m27_c01022{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);}
.m1b_c01022{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);}
.m54_c01022{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m6b_c01022{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m80_c01022{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);}
.m57_c01022{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m4f_c01022{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);}
.m85_c01022{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);}
.m21_c01022{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);}
.m91_c01022{transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);}
.m45_c01022{transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265820,0.000000,0.000000,0.250000,0,0);}
.m1e_c01022{transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);}
.m3_c01022{transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);}
.m53_c01022{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);}
.m6c_c01022{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);}
.m7_c01022{transform:matrix(0.281960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281960,0.000000,0.000000,0.250000,0,0);}
.m7b_c01022{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.m5_c01022{transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298055,0.000000,0.000000,0.250000,0,0);}
.m76_c01022{transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304760,0.000000,0.000000,0.250000,0,0);}
.m86_c01022{transform:matrix(0.304925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304925,0.000000,0.000000,0.250000,0,0);}
.m70_c01022{transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312395,0.000000,0.000000,0.250000,0,0);}
.m42_c01022{transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320130,0.000000,0.000000,0.250000,0,0);}
.m95_c01022{transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);}
.m69_c01022{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);}
.m25_c01022{transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344540,0.000000,0.000000,0.250000,0,0);}
.m22_c01022{transform:matrix(0.351175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351175,0.000000,0.000000,0.250000,0,0);}
.m93_c01022{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);}
.m6a_c01022{transform:matrix(0.354940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354940,0.000000,0.000000,0.250000,0,0);}
.m4_c01022{transform:matrix(0.376095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376095,0.000000,0.000000,0.250000,0,0);}
.m60_c01022{transform:matrix(0.380770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380770,0.000000,0.000000,0.250000,0,0);}
.m1d_c01022{transform:matrix(0.382690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382690,0.000000,0.000000,0.250000,0,0);}
.m90_c01022{transform:matrix(0.392075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392075,0.000000,0.000000,0.250000,0,0);}
.md_c01022{transform:matrix(0.420555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420555,0.000000,0.000000,0.250000,0,0);}
.m1c_c01022{transform:matrix(0.432640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432640,0.000000,0.000000,0.250000,0,0);}
.m58_c01022{transform:matrix(0.438280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438280,0.000000,0.000000,0.250000,0,0);}
.m5f_c01022{transform:matrix(0.469155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469155,0.000000,0.000000,0.250000,0,0);}
.m2_c01022{transform:matrix(0.481650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481650,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls0_c01022{letter-spacing:0.000000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01022{word-spacing:0.000000px;}
.fc0_c01022{color:transparent;}
.fs0_c01022{font-size:22.050000px;}
.fsa_c01022{font-size:61.950000px;}
.fs2_c01022{font-size:64.050000px;}
.fs9_c01022{font-size:66.150000px;}
.fs6_c01022{font-size:68.250000px;}
.fs4_c01022{font-size:70.350000px;}
.fs5_c01022{font-size:71.400000px;}
.fs7_c01022{font-size:73.500000px;}
.fs3_c01022{font-size:76.650000px;}
.fs1_c01022{font-size:78.750000px;}
.fs8_c01022{font-size:82.950000px;}
.fsb_c01022{font-size:100.800000px;}
.fsc_c01022{font-size:150.150000px;}
.y0_c01022{bottom:0.000000px;}
.y1b_c01022{bottom:383.215500px;}
.y1a_c01022{bottom:405.898500px;}
.y19_c01022{bottom:428.854500px;}
.y18_c01022{bottom:446.296500px;}
.y17_c01022{bottom:447.009000px;}
.y16_c01022{bottom:448.854000px;}
.y15_c01022{bottom:450.150000px;}
.y14_c01022{bottom:450.699000px;}
.y13_c01022{bottom:451.717500px;}
.y12_c01022{bottom:474.120000px;}
.y11_c01022{bottom:495.798000px;}
.y10_c01022{bottom:519.378000px;}
.yf_c01022{bottom:541.560000px;}
.ye_c01022{bottom:564.520500px;}
.yd_c01022{bottom:587.790000px;}
.yc_c01022{bottom:611.380500px;}
.yb_c01022{bottom:656.451000px;}
.ya_c01022{bottom:678.444000px;}
.y9_c01022{bottom:701.461500px;}
.y8_c01022{bottom:723.534000px;}
.y7_c01022{bottom:747.900000px;}
.y6_c01022{bottom:769.933500px;}
.y5_c01022{bottom:793.399500px;}
.y4_c01022{bottom:816.003000px;}
.y3_c01022{bottom:861.606000px;}
.y1c_c01022{bottom:905.305500px;}
.y2_c01022{bottom:907.336500px;}
.y1_c01022{bottom:933.660000px;}
.h2_c01022{height:22.050000px;}
.hc_c01022{height:61.950000px;}
.h4_c01022{height:64.050000px;}
.hb_c01022{height:66.150000px;}
.h8_c01022{height:68.250000px;}
.h6_c01022{height:70.350000px;}
.h7_c01022{height:71.400000px;}
.h9_c01022{height:73.500000px;}
.h5_c01022{height:76.650000px;}
.h3_c01022{height:78.750000px;}
.ha_c01022{height:82.950000px;}
.hd_c01022{height:100.800000px;}
.he_c01022{height:150.150000px;}
.h1_c01022{height:1005.000000px;}
.h0_c01022{height:1005.150000px;}
.w0_c01022{width:715.200000px;}
.w1_c01022{width:715.500000px;}
.x0_c01022{left:0.000000px;}
.x69_c01022{left:92.340000px;}
.x35_c01022{left:132.300000px;}
.x8_c01022{left:140.130000px;}
.x26_c01022{left:143.370000px;}
.xe_c01022{left:148.500000px;}
.x2f_c01022{left:149.850000px;}
.x5a_c01022{left:150.930000px;}
.x61_c01022{left:171.180000px;}
.x36_c01022{left:174.960000px;}
.x43_c01022{left:179.550000px;}
.x5b_c01022{left:184.950000px;}
.x4f_c01022{left:190.620000px;}
.x57_c01022{left:192.786000px;}
.x3c_c01022{left:194.400000px;}
.x3_c01022{left:199.260000px;}
.x30_c01022{left:201.150000px;}
.x9_c01022{left:202.770000px;}
.x37_c01022{left:206.820000px;}
.x27_c01022{left:211.680000px;}
.xa_c01022{left:216.270000px;}
.x44_c01022{left:217.620000px;}
.xf_c01022{left:219.510000px;}
.x20_c01022{left:221.940000px;}
.x14_c01022{left:225.450000px;}
.x5c_c01022{left:228.150000px;}
.x62_c01022{left:232.740000px;}
.x45_c01022{left:234.090000px;}
.x10_c01022{left:236.790000px;}
.x4a_c01022{left:238.410000px;}
.x5d_c01022{left:245.160000px;}
.x28_c01022{left:247.050000px;}
.x1c_c01022{left:248.940000px;}
.x6a_c01022{left:254.880000px;}
.x38_c01022{left:256.500000px;}
.x21_c01022{left:259.740000px;}
.x4e_c01022{left:262.980000px;}
.x63_c01022{left:268.110000px;}
.x58_c01022{left:269.613000px;}
.x15_c01022{left:274.320000px;}
.x3d_c01022{left:276.480000px;}
.x19_c01022{left:278.640000px;}
.x4b_c01022{left:279.720000px;}
.x54_c01022{left:287.820000px;}
.x29_c01022{left:292.680000px;}
.x11_c01022{left:294.300000px;}
.x4_c01022{left:302.400000px;}
.x46_c01022{left:310.500000px;}
.x22_c01022{left:311.580000px;}
.x5e_c01022{left:313.740000px;}
.x12_c01022{left:315.360000px;}
.xb_c01022{left:318.600000px;}
.x5_c01022{left:320.760000px;}
.x31_c01022{left:321.840000px;}
.x4c_c01022{left:327.510000px;}
.x23_c01022{left:331.020000px;}
.x47_c01022{left:333.180000px;}
.x3e_c01022{left:334.530000px;}
.x39_c01022{left:336.150000px;}
.x1d_c01022{left:340.740000px;}
.x16_c01022{left:344.520000px;}
.x55_c01022{left:346.140000px;}
.x5f_c01022{left:349.380000px;}
.x3a_c01022{left:354.240000px;}
.x1e_c01022{left:356.400000px;}
.x24_c01022{left:358.560000px;}
.x32_c01022{left:359.640000px;}
.x1a_c01022{left:366.930000px;}
.x56_c01022{left:368.010000px;}
.x6b_c01022{left:369.630000px;}
.x50_c01022{left:371.790000px;}
.x59_c01022{left:376.156500px;}
.x66_c01022{left:378.000000px;}
.x2a_c01022{left:381.510000px;}
.x17_c01022{left:383.670000px;}
.x60_c01022{left:384.750000px;}
.x13_c01022{left:387.450000px;}
.x3f_c01022{left:390.690000px;}
.x48_c01022{left:396.900000px;}
.x3b_c01022{left:400.140000px;}
.x2b_c01022{left:401.220000px;}
.x1f_c01022{left:404.190000px;}
.x6c_c01022{left:407.430000px;}
.x67_c01022{left:409.320000px;}
.x4d_c01022{left:412.830000px;}
.x6_c01022{left:414.450000px;}
.xc_c01022{left:418.770000px;}
.x25_c01022{left:420.390000px;}
.x51_c01022{left:428.760000px;}
.x40_c01022{left:433.350000px;}
.x2c_c01022{left:435.240000px;}
.x68_c01022{left:453.060000px;}
.x52_c01022{left:456.840000px;}
.x2d_c01022{left:465.480000px;}
.x64_c01022{left:469.530000px;}
.xd_c01022{left:474.930000px;}
.x41_c01022{left:476.280000px;}
.x18_c01022{left:481.140000px;}
.x33_c01022{left:482.760000px;}
.x7_c01022{left:488.700000px;}
.x1b_c01022{left:495.990000px;}
.x65_c01022{left:505.170000px;}
.x2e_c01022{left:513.000000px;}
.x34_c01022{left:515.700000px;}
.x53_c01022{left:527.310000px;}
.x42_c01022{left:531.090000px;}
.x49_c01022{left:544.590000px;}
.x2_c01022{left:548.100000px;}
.x1_c01022{left:549.720000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ws0_c01022{word-spacing:0.000000pt;}
.fs0_c01022{font-size:19.600000pt;}
.fsa_c01022{font-size:55.066667pt;}
.fs2_c01022{font-size:56.933333pt;}
.fs9_c01022{font-size:58.800000pt;}
.fs6_c01022{font-size:60.666667pt;}
.fs4_c01022{font-size:62.533333pt;}
.fs5_c01022{font-size:63.466667pt;}
.fs7_c01022{font-size:65.333333pt;}
.fs3_c01022{font-size:68.133333pt;}
.fs1_c01022{font-size:70.000000pt;}
.fs8_c01022{font-size:73.733333pt;}
.fsb_c01022{font-size:89.600000pt;}
.fsc_c01022{font-size:133.466667pt;}
.y0_c01022{bottom:0.000000pt;}
.y1b_c01022{bottom:340.636000pt;}
.y1a_c01022{bottom:360.798667pt;}
.y19_c01022{bottom:381.204000pt;}
.y18_c01022{bottom:396.708000pt;}
.y17_c01022{bottom:397.341333pt;}
.y16_c01022{bottom:398.981333pt;}
.y15_c01022{bottom:400.133333pt;}
.y14_c01022{bottom:400.621333pt;}
.y13_c01022{bottom:401.526667pt;}
.y12_c01022{bottom:421.440000pt;}
.y11_c01022{bottom:440.709333pt;}
.y10_c01022{bottom:461.669333pt;}
.yf_c01022{bottom:481.386667pt;}
.ye_c01022{bottom:501.796000pt;}
.yd_c01022{bottom:522.480000pt;}
.yc_c01022{bottom:543.449333pt;}
.yb_c01022{bottom:583.512000pt;}
.ya_c01022{bottom:603.061333pt;}
.y9_c01022{bottom:623.521333pt;}
.y8_c01022{bottom:643.141333pt;}
.y7_c01022{bottom:664.800000pt;}
.y6_c01022{bottom:684.385333pt;}
.y5_c01022{bottom:705.244000pt;}
.y4_c01022{bottom:725.336000pt;}
.y3_c01022{bottom:765.872000pt;}
.y1c_c01022{bottom:804.716000pt;}
.y2_c01022{bottom:806.521333pt;}
.y1_c01022{bottom:829.920000pt;}
.h2_c01022{height:19.600000pt;}
.hc_c01022{height:55.066667pt;}
.h4_c01022{height:56.933333pt;}
.hb_c01022{height:58.800000pt;}
.h8_c01022{height:60.666667pt;}
.h6_c01022{height:62.533333pt;}
.h7_c01022{height:63.466667pt;}
.h9_c01022{height:65.333333pt;}
.h5_c01022{height:68.133333pt;}
.h3_c01022{height:70.000000pt;}
.ha_c01022{height:73.733333pt;}
.hd_c01022{height:89.600000pt;}
.he_c01022{height:133.466667pt;}
.h1_c01022{height:893.333333pt;}
.h0_c01022{height:893.466667pt;}
.w0_c01022{width:635.733333pt;}
.w1_c01022{width:636.000000pt;}
.x0_c01022{left:0.000000pt;}
.x69_c01022{left:82.080000pt;}
.x35_c01022{left:117.600000pt;}
.x8_c01022{left:124.560000pt;}
.x26_c01022{left:127.440000pt;}
.xe_c01022{left:132.000000pt;}
.x2f_c01022{left:133.200000pt;}
.x5a_c01022{left:134.160000pt;}
.x61_c01022{left:152.160000pt;}
.x36_c01022{left:155.520000pt;}
.x43_c01022{left:159.600000pt;}
.x5b_c01022{left:164.400000pt;}
.x4f_c01022{left:169.440000pt;}
.x57_c01022{left:171.365333pt;}
.x3c_c01022{left:172.800000pt;}
.x3_c01022{left:177.120000pt;}
.x30_c01022{left:178.800000pt;}
.x9_c01022{left:180.240000pt;}
.x37_c01022{left:183.840000pt;}
.x27_c01022{left:188.160000pt;}
.xa_c01022{left:192.240000pt;}
.x44_c01022{left:193.440000pt;}
.xf_c01022{left:195.120000pt;}
.x20_c01022{left:197.280000pt;}
.x14_c01022{left:200.400000pt;}
.x5c_c01022{left:202.800000pt;}
.x62_c01022{left:206.880000pt;}
.x45_c01022{left:208.080000pt;}
.x10_c01022{left:210.480000pt;}
.x4a_c01022{left:211.920000pt;}
.x5d_c01022{left:217.920000pt;}
.x28_c01022{left:219.600000pt;}
.x1c_c01022{left:221.280000pt;}
.x6a_c01022{left:226.560000pt;}
.x38_c01022{left:228.000000pt;}
.x21_c01022{left:230.880000pt;}
.x4e_c01022{left:233.760000pt;}
.x63_c01022{left:238.320000pt;}
.x58_c01022{left:239.656000pt;}
.x15_c01022{left:243.840000pt;}
.x3d_c01022{left:245.760000pt;}
.x19_c01022{left:247.680000pt;}
.x4b_c01022{left:248.640000pt;}
.x54_c01022{left:255.840000pt;}
.x29_c01022{left:260.160000pt;}
.x11_c01022{left:261.600000pt;}
.x4_c01022{left:268.800000pt;}
.x46_c01022{left:276.000000pt;}
.x22_c01022{left:276.960000pt;}
.x5e_c01022{left:278.880000pt;}
.x12_c01022{left:280.320000pt;}
.xb_c01022{left:283.200000pt;}
.x5_c01022{left:285.120000pt;}
.x31_c01022{left:286.080000pt;}
.x4c_c01022{left:291.120000pt;}
.x23_c01022{left:294.240000pt;}
.x47_c01022{left:296.160000pt;}
.x3e_c01022{left:297.360000pt;}
.x39_c01022{left:298.800000pt;}
.x1d_c01022{left:302.880000pt;}
.x16_c01022{left:306.240000pt;}
.x55_c01022{left:307.680000pt;}
.x5f_c01022{left:310.560000pt;}
.x3a_c01022{left:314.880000pt;}
.x1e_c01022{left:316.800000pt;}
.x24_c01022{left:318.720000pt;}
.x32_c01022{left:319.680000pt;}
.x1a_c01022{left:326.160000pt;}
.x56_c01022{left:327.120000pt;}
.x6b_c01022{left:328.560000pt;}
.x50_c01022{left:330.480000pt;}
.x59_c01022{left:334.361333pt;}
.x66_c01022{left:336.000000pt;}
.x2a_c01022{left:339.120000pt;}
.x17_c01022{left:341.040000pt;}
.x60_c01022{left:342.000000pt;}
.x13_c01022{left:344.400000pt;}
.x3f_c01022{left:347.280000pt;}
.x48_c01022{left:352.800000pt;}
.x3b_c01022{left:355.680000pt;}
.x2b_c01022{left:356.640000pt;}
.x1f_c01022{left:359.280000pt;}
.x6c_c01022{left:362.160000pt;}
.x67_c01022{left:363.840000pt;}
.x4d_c01022{left:366.960000pt;}
.x6_c01022{left:368.400000pt;}
.xc_c01022{left:372.240000pt;}
.x25_c01022{left:373.680000pt;}
.x51_c01022{left:381.120000pt;}
.x40_c01022{left:385.200000pt;}
.x2c_c01022{left:386.880000pt;}
.x68_c01022{left:402.720000pt;}
.x52_c01022{left:406.080000pt;}
.x2d_c01022{left:413.760000pt;}
.x64_c01022{left:417.360000pt;}
.xd_c01022{left:422.160000pt;}
.x41_c01022{left:423.360000pt;}
.x18_c01022{left:427.680000pt;}
.x33_c01022{left:429.120000pt;}
.x7_c01022{left:434.400000pt;}
.x1b_c01022{left:440.880000pt;}
.x65_c01022{left:449.040000pt;}
.x2e_c01022{left:456.000000pt;}
.x34_c01022{left:458.400000pt;}
.x53_c01022{left:468.720000pt;}
.x42_c01022{left:472.080000pt;}
.x49_c01022{left:484.080000pt;}
.x2_c01022{left:487.200000pt;}
.x1_c01022{left:488.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_c01023 {
    display:none;
  }
  .loading-indicator_c01023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01023 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01023 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01023" -> "#page-container .classname_c01023")
 */
.pf_c01023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01023 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01023 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01023 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01023 {overflow:visible;}
  }
}
.c_c01023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01023 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01023:after { /* webkit #35443 */
  content: '';
}
.t_c01023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01023 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01023 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01023 { /* info for Javascript */
  display:none;
}
.l_c01023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_89649886b96e4d41b56d1c32.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.000000;font-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_c01023{transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010425,0.000000,0.000000,0.250000,0,0);}
.m37_c01023{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);}
.m1d_c01023{transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);}
.m5a_c01023{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m49_c01023{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m55_c01023{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);}
.m16_c01023{transform:matrix(0.080125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080125,0.000000,0.000000,0.250000,0,0);}
.m73_c01023{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);}
.m29_c01023{transform:matrix(0.121865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121865,0.000000,0.000000,0.250000,0,0);}
.m8d_c01023{transform:matrix(0.134348,0.001343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.134348,0.001343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.134348,0.001343,-0.002500,0.249988,0,0);}
.m4a_c01023{transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144145,0.000000,0.000000,0.250000,0,0);}
.m2a_c01023{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_c01023{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);}
.m27_c01023{transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);}
.m6c_c01023{transform:matrix(0.155726,0.001090,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155726,0.001090,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155726,0.001090,-0.001750,0.249994,0,0);}
.m1b_c01023{transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156920,0.000000,0.000000,0.250000,0,0);}
.m9b_c01023{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);}
.m2b_c01023{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);}
.m9c_c01023{transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166967,0.001670,-0.002500,0.249988,0,0);}
.m78_c01023{transform:matrix(0.167092,0.001671,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167092,0.001671,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167092,0.001671,-0.002500,0.249988,0,0);}
.m15_c01023{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m28_c01023{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);}
.m63_c01023{transform:matrix(0.169336,0.001185,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169336,0.001185,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169336,0.001185,-0.001750,0.249994,0,0);}
.m40_c01023{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);}
.m7c_c01023{transform:matrix(0.170211,0.001702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.170211,0.001702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.170211,0.001702,-0.002500,0.249988,0,0);}
.m13_c01023{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);}
.m99_c01023{transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173951,0.001740,-0.002500,0.249988,0,0);}
.m17_c01023{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);}
.m4_c01023{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);}
.m8a_c01023{transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178816,0.001788,-0.002500,0.249988,0,0);}
.m3c_c01023{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);}
.m7e_c01023{transform:matrix(0.183056,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183056,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183056,0.001831,-0.002500,0.249988,0,0);}
.m35_c01023{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);}
.m1a_c01023{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);}
.m7a_c01023{transform:matrix(0.183531,0.001835,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183531,0.001835,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183531,0.001835,-0.002500,0.249988,0,0);}
.m9e_c01023{transform:matrix(0.183876,0.001839,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183876,0.001839,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183876,0.001839,-0.002500,0.249988,0,0);}
.m12_c01023{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);}
.m1f_c01023{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);}
.m65_c01023{transform:matrix(0.184900,0.001294,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184900,0.001294,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184900,0.001294,-0.001750,0.249994,0,0);}
.m83_c01023{transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185546,0.001855,-0.002500,0.249988,0,0);}
.m59_c01023{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);}
.m80_c01023{transform:matrix(0.185846,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185846,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185846,0.001858,-0.002500,0.249988,0,0);}
.m64_c01023{transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186345,0.001304,-0.001750,0.249994,0,0);}
.m60_c01023{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);}
.m6a_c01023{transform:matrix(0.187555,0.001313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187555,0.001313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187555,0.001313,-0.001750,0.249994,0,0);}
.m88_c01023{transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187906,0.001879,-0.002500,0.249988,0,0);}
.m9d_c01023{transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188721,0.001887,-0.002500,0.249988,0,0);}
.m44_c01023{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);}
.m6_c01023{transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189145,0.000000,0.000000,0.250000,0,0);}
.m95_c01023{transform:matrix(0.189866,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189866,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189866,0.001899,-0.002500,0.249988,0,0);}
.md_c01023{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);}
.m92_c01023{transform:matrix(0.190960,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190960,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190960,0.001910,-0.002500,0.249988,0,0);}
.mb_c01023{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);}
.m53_c01023{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);}
.m38_c01023{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);}
.m52_c01023{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);}
.m3d_c01023{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);}
.m98_c01023{transform:matrix(0.194960,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194960,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194960,0.001950,-0.002500,0.249988,0,0);}
.m6e_c01023{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);}
.m19_c01023{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);}
.m82_c01023{transform:matrix(0.196190,0.001962,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196190,0.001962,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196190,0.001962,-0.002500,0.249988,0,0);}
.m66_c01023{transform:matrix(0.196680,0.001377,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196680,0.001377,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196680,0.001377,-0.001750,0.249994,0,0);}
.m79_c01023{transform:matrix(0.196690,0.001967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196690,0.001967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196690,0.001967,-0.002500,0.249988,0,0);}
.m91_c01023{transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);}
.m41_c01023{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_c01023{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);}
.m75_c01023{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);}
.m81_c01023{transform:matrix(0.198325,0.001983,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198325,0.001983,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198325,0.001983,-0.002500,0.249988,0,0);}
.m58_c01023{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);}
.me_c01023{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);}
.m85_c01023{transform:matrix(0.202980,0.002030,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202980,0.002030,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202980,0.002030,-0.002500,0.249988,0,0);}
.m3f_c01023{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);}
.m51_c01023{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);}
.m8c_c01023{transform:matrix(0.204685,0.002047,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204685,0.002047,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204685,0.002047,-0.002500,0.249988,0,0);}
.m3b_c01023{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);}
.mc_c01023{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);}
.m23_c01023{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);}
.m39_c01023{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);}
.m7f_c01023{transform:matrix(0.206215,0.002062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206215,0.002062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206215,0.002062,-0.002500,0.249988,0,0);}
.m10_c01023{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);}
.m14_c01023{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);}
.m48_c01023{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);}
.m7d_c01023{transform:matrix(0.207745,0.002077,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207745,0.002077,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207745,0.002077,-0.002500,0.249988,0,0);}
.m97_c01023{transform:matrix(0.209890,0.002099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209890,0.002099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209890,0.002099,-0.002500,0.249988,0,0);}
.m89_c01023{transform:matrix(0.211199,0.002112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211199,0.002112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211199,0.002112,-0.002500,0.249988,0,0);}
.m72_c01023{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);}
.ma_c01023{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);}
.m26_c01023{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);}
.m77_c01023{transform:matrix(0.212079,0.002121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212079,0.002121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212079,0.002121,-0.002500,0.249988,0,0);}
.m87_c01023{transform:matrix(0.212109,0.002121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212109,0.002121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212109,0.002121,-0.002500,0.249988,0,0);}
.m8e_c01023{transform:matrix(0.212564,0.002126,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212564,0.002126,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212564,0.002126,-0.002500,0.249988,0,0);}
.m2c_c01023{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);}
.m62_c01023{transform:matrix(0.213210,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213210,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213210,0.001492,-0.001750,0.249994,0,0);}
.m11_c01023{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);}
.m8_c01023{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);}
.m74_c01023{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);}
.m2d_c01023{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);}
.m6f_c01023{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);}
.m69_c01023{transform:matrix(0.223410,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223410,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223410,0.001564,-0.001750,0.249994,0,0);}
.m6b_c01023{transform:matrix(0.224539,0.001572,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224539,0.001572,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224539,0.001572,-0.001750,0.249994,0,0);}
.m7_c01023{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);}
.m18_c01023{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);}
.m5_c01023{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);}
.m9a_c01023{transform:matrix(0.226519,0.002265,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226519,0.002265,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226519,0.002265,-0.002500,0.249988,0,0);}
.m8b_c01023{transform:matrix(0.227504,0.002275,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227504,0.002275,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227504,0.002275,-0.002500,0.249988,0,0);}
.m57_c01023{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);}
.m67_c01023{transform:matrix(0.232104,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232104,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232104,0.001625,-0.001750,0.249994,0,0);}
.m8f_c01023{transform:matrix(0.235043,0.002350,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235043,0.002350,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235043,0.002350,-0.002500,0.249988,0,0);}
.m45_c01023{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);}
.m76_c01023{transform:matrix(0.237478,0.002375,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237478,0.002375,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237478,0.002375,-0.002500,0.249988,0,0);}
.m3a_c01023{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);}
.m84_c01023{transform:matrix(0.242203,0.002422,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242203,0.002422,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242203,0.002422,-0.002500,0.249988,0,0);}
.m32_c01023{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m1e_c01023{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);}
.m5f_c01023{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);}
.m86_c01023{transform:matrix(0.258022,0.002580,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258022,0.002580,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258022,0.002580,-0.002500,0.249988,0,0);}
.m6d_c01023{transform:matrix(0.260694,0.001825,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260694,0.001825,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260694,0.001825,-0.001750,0.249994,0,0);}
.m33_c01023{transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);}
.m22_c01023{transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275950,0.000000,0.000000,0.250000,0,0);}
.m68_c01023{transform:matrix(0.281838,0.001973,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281838,0.001973,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281838,0.001973,-0.001750,0.249994,0,0);}
.m46_c01023{transform:matrix(0.283150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283150,0.000000,0.000000,0.250000,0,0);}
.m43_c01023{transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288370,0.000000,0.000000,0.250000,0,0);}
.m4e_c01023{transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293130,0.000000,0.000000,0.250000,0,0);}
.m2e_c01023{transform:matrix(0.293925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293925,0.000000,0.000000,0.250000,0,0);}
.m47_c01023{transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297335,0.000000,0.000000,0.250000,0,0);}
.m5d_c01023{transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301860,0.000000,0.000000,0.250000,0,0);}
.m93_c01023{transform:matrix(0.302440,0.003024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.302440,0.003024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.302440,0.003024,-0.002500,0.249988,0,0);}
.m36_c01023{transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);}
.m96_c01023{transform:matrix(0.343673,0.003437,-0.002500,0.249988,0,0);-ms-transform:matrix(0.343673,0.003437,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.343673,0.003437,-0.002500,0.249988,0,0);}
.m70_c01023{transform:matrix(0.347305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347305,0.000000,0.000000,0.250000,0,0);}
.m54_c01023{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);}
.m31_c01023{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01023{transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359430,0.000000,0.000000,0.250000,0,0);}
.mf_c01023{transform:matrix(0.367815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367815,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{transform:matrix(0.369965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369965,0.000000,0.000000,0.250000,0,0);}
.m4d_c01023{transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374050,0.000000,0.000000,0.250000,0,0);}
.m2f_c01023{transform:matrix(0.386890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386890,0.000000,0.000000,0.250000,0,0);}
.m56_c01023{transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389035,0.000000,0.000000,0.250000,0,0);}
.m61_c01023{transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394580,0.000000,0.000000,0.250000,0,0);}
.m20_c01023{transform:matrix(0.394845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394845,0.000000,0.000000,0.250000,0,0);}
.m1_c01023{transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408095,0.000000,0.000000,0.250000,0,0);}
.m94_c01023{transform:matrix(0.410774,0.004108,-0.002500,0.249988,0,0);-ms-transform:matrix(0.410774,0.004108,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.410774,0.004108,-0.002500,0.249988,0,0);}
.m5b_c01023{transform:matrix(0.419665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419665,0.000000,0.000000,0.250000,0,0);}
.m21_c01023{transform:matrix(0.420775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420775,0.000000,0.000000,0.250000,0,0);}
.m5e_c01023{transform:matrix(0.424260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424260,0.000000,0.000000,0.250000,0,0);}
.m30_c01023{transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441990,0.000000,0.000000,0.250000,0,0);}
.m4c_c01023{transform:matrix(0.446580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446580,0.000000,0.000000,0.250000,0,0);}
.m71_c01023{transform:matrix(0.452085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452085,0.000000,0.000000,0.250000,0,0);}
.m90_c01023{transform:matrix(0.471196,0.004712,-0.002500,0.249988,0,0);-ms-transform:matrix(0.471196,0.004712,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.471196,0.004712,-0.002500,0.249988,0,0);}
.m3_c01023{transform:matrix(0.490370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490370,0.000000,0.000000,0.250000,0,0);}
.m5c_c01023{transform:matrix(0.494555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494555,0.000000,0.000000,0.250000,0,0);}
.m1c_c01023{transform:matrix(0.521030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521030,0.000000,0.000000,0.250000,0,0);}
.m9_c01023{transform:matrix(0.531355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531355,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.539835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539835,0.000000,0.000000,0.250000,0,0);}
.m7b_c01023{transform:matrix(0.562112,0.005621,-0.002500,0.249988,0,0);-ms-transform:matrix(0.562112,0.005621,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.562112,0.005621,-0.002500,0.249988,0,0);}
.m4f_c01023{transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);}
.m42_c01023{transform:matrix(0.703330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703330,0.000000,0.000000,0.250000,0,0);}
.m24_c01023{transform:matrix(0.756865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756865,0.000000,0.000000,0.250000,0,0);}
.m4b_c01023{transform:matrix(0.796420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796420,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:0.000000px;}
.fc0_c01023{color:transparent;}
.fsd_c01023{font-size:46.200000px;}
.fs15_c01023{font-size:50.402520px;}
.fs14_c01023{font-size:51.452572px;}
.fs16_c01023{font-size:55.652782px;}
.fs10_c01023{font-size:59.850000px;}
.fsa_c01023{font-size:65.100000px;}
.fsb_c01023{font-size:68.250000px;}
.fsc_c01023{font-size:69.300000px;}
.fs9_c01023{font-size:71.400000px;}
.fse_c01023{font-size:72.450000px;}
.fs11_c01023{font-size:72.451775px;}
.fsf_c01023{font-size:73.500000px;}
.fs12_c01023{font-size:73.501801px;}
.fs1_c01023{font-size:77.700000px;}
.fs0_c01023{font-size:79.800000px;}
.fs7_c01023{font-size:80.850000px;}
.fs3_c01023{font-size:81.900000px;}
.fs13_c01023{font-size:84.000000px;}
.fs2_c01023{font-size:85.050000px;}
.fs6_c01023{font-size:89.250000px;}
.fs8_c01023{font-size:105.000000px;}
.fs5_c01023{font-size:134.400000px;}
.fs4_c01023{font-size:140.700000px;}
.y0_c01023{bottom:0.000000px;}
.y60_c01023{bottom:151.873080px;}
.y5f_c01023{bottom:152.223570px;}
.y5e_c01023{bottom:152.357880px;}
.y5d_c01023{bottom:152.637210px;}
.y5c_c01023{bottom:152.799240px;}
.y5b_c01023{bottom:153.065325px;}
.y5a_c01023{bottom:153.314340px;}
.y59_c01023{bottom:153.590865px;}
.y58_c01023{bottom:153.708375px;}
.y57_c01023{bottom:154.241670px;}
.y56_c01023{bottom:154.505085px;}
.y55_c01023{bottom:154.643400px;}
.y54_c01023{bottom:155.047830px;}
.y53_c01023{bottom:155.318040px;}
.y52_c01023{bottom:155.443350px;}
.y51_c01023{bottom:155.518125px;}
.y50_c01023{bottom:169.626945px;}
.y4f_c01023{bottom:169.729485px;}
.y4e_c01023{bottom:169.916160px;}
.y4d_c01023{bottom:170.234775px;}
.y4c_c01023{bottom:170.658735px;}
.y4b_c01023{bottom:171.285105px;}
.y4a_c01023{bottom:171.633495px;}
.y49_c01023{bottom:173.342625px;}
.y48_c01023{bottom:173.526240px;}
.y47_c01023{bottom:173.896335px;}
.y46_c01023{bottom:174.149685px;}
.y45_c01023{bottom:187.080990px;}
.y44_c01023{bottom:187.261830px;}
.y43_c01023{bottom:187.780260px;}
.y42_c01023{bottom:188.012475px;}
.y41_c01023{bottom:188.485035px;}
.y40_c01023{bottom:188.665920px;}
.y3f_c01023{bottom:188.927505px;}
.y3e_c01023{bottom:189.241020px;}
.y3d_c01023{bottom:190.024200px;}
.y3c_c01023{bottom:190.339980px;}
.y3b_c01023{bottom:190.555965px;}
.y3a_c01023{bottom:190.823280px;}
.y39_c01023{bottom:191.419980px;}
.y38_c01023{bottom:191.628000px;}
.y37_c01023{bottom:244.297500px;}
.y36_c01023{bottom:245.367000px;}
.y35_c01023{bottom:245.583000px;}
.y34_c01023{bottom:247.059000px;}
.y33_c01023{bottom:267.283500px;}
.y32_c01023{bottom:278.910000px;}
.y30_c01023{bottom:291.754486px;}
.y31_c01023{bottom:293.220000px;}
.y2f_c01023{bottom:311.114208px;}
.y2e_c01023{bottom:311.473298px;}
.y2d_c01023{bottom:312.010047px;}
.y2c_c01023{bottom:312.437219px;}
.y2b_c01023{bottom:312.616737px;}
.y2a_c01023{bottom:312.885138px;}
.y29_c01023{bottom:313.236542px;}
.y28_c01023{bottom:313.535120px;}
.y27_c01023{bottom:313.707362px;}
.y26_c01023{bottom:313.964391px;}
.y25_c01023{bottom:314.280000px;}
.y24_c01023{bottom:335.328000px;}
.y23_c01023{bottom:359.335500px;}
.y22_c01023{bottom:366.120000px;}
.y21_c01023{bottom:380.694000px;}
.y20_c01023{bottom:404.998500px;}
.y1e_c01023{bottom:427.140000px;}
.y1f_c01023{bottom:443.880000px;}
.y1d_c01023{bottom:451.350000px;}
.y1c_c01023{bottom:473.826000px;}
.y1b_c01023{bottom:497.070000px;}
.y1a_c01023{bottom:518.670000px;}
.y19_c01023{bottom:557.739000px;}
.y18_c01023{bottom:558.393000px;}
.y17_c01023{bottom:558.580500px;}
.y16_c01023{bottom:559.062000px;}
.y15_c01023{bottom:559.284000px;}
.y14_c01023{bottom:559.735500px;}
.y13_c01023{bottom:559.963500px;}
.y12_c01023{bottom:560.463000px;}
.y11_c01023{bottom:560.697000px;}
.y10_c01023{bottom:561.139500px;}
.yf_c01023{bottom:561.600000px;}
.ye_c01023{bottom:587.268000px;}
.yd_c01023{bottom:613.708500px;}
.yc_c01023{bottom:639.375000px;}
.y4_c01023{bottom:660.961500px;}
.y5_c01023{bottom:661.656000px;}
.y6_c01023{bottom:662.731500px;}
.y7_c01023{bottom:662.980500px;}
.y8_c01023{bottom:664.635000px;}
.y9_c01023{bottom:665.391000px;}
.ya_c01023{bottom:665.830500px;}
.yb_c01023{bottom:666.217500px;}
.y3_c01023{bottom:692.010000px;}
.y2_c01023{bottom:720.019500px;}
.y1_c01023{bottom:745.917000px;}
.hf_c01023{height:46.200000px;}
.h17_c01023{height:50.402520px;}
.h16_c01023{height:51.452572px;}
.h18_c01023{height:55.652782px;}
.h12_c01023{height:59.850000px;}
.hc_c01023{height:65.100000px;}
.hd_c01023{height:68.250000px;}
.he_c01023{height:69.300000px;}
.hb_c01023{height:71.400000px;}
.h10_c01023{height:72.450000px;}
.h13_c01023{height:72.451775px;}
.h11_c01023{height:73.500000px;}
.h14_c01023{height:73.501801px;}
.h3_c01023{height:77.700000px;}
.h2_c01023{height:79.800000px;}
.h9_c01023{height:80.850000px;}
.h5_c01023{height:81.900000px;}
.h15_c01023{height:84.000000px;}
.h4_c01023{height:85.050000px;}
.h8_c01023{height:89.250000px;}
.ha_c01023{height:105.000000px;}
.h7_c01023{height:134.400000px;}
.h6_c01023{height:140.700000px;}
.h0_c01023{height:1008.450000px;}
.h1_c01023{height:1008.750000px;}
.w1_c01023{width:700.500000px;}
.w0_c01023{width:700.650000px;}
.x0_c01023{left:0.000000px;}
.x43_c01023{left:126.090000px;}
.x1_c01023{left:131.760000px;}
.x4e_c01023{left:143.640000px;}
.x5f_c01023{left:145.159500px;}
.x44_c01023{left:149.040000px;}
.x1d_c01023{left:150.060000px;}
.x27_c01023{left:152.818500px;}
.x7_c01023{left:154.440000px;}
.x6a_c01023{left:157.299915px;}
.x60_c01023{left:165.961500px;}
.x70_c01023{left:167.844705px;}
.x51_c01023{left:194.037000px;}
.x5a_c01023{left:195.750000px;}
.x11_c01023{left:200.070000px;}
.x71_c01023{left:201.616380px;}
.x4f_c01023{left:203.580000px;}
.x2f_c01023{left:209.665500px;}
.x6b_c01023{left:212.670915px;}
.x12_c01023{left:214.380000px;}
.x1e_c01023{left:219.489000px;}
.x5c_c01023{left:223.482000px;}
.x61_c01023{left:225.631500px;}
.x3d_c01023{left:228.418500px;}
.x52_c01023{left:230.755500px;}
.x8_c01023{left:232.740000px;}
.x5d_c01023{left:234.273000px;}
.x62_c01023{left:252.363000px;}
.x53_c01023{left:255.361500px;}
.x4b_c01023{left:260.280000px;}
.x13_c01023{left:262.710000px;}
.x30_c01023{left:265.000500px;}
.x22_c01023{left:269.998500px;}
.x63_c01023{left:273.961500px;}
.x45_c01023{left:280.530000px;}
.x9_c01023{left:284.580000px;}
.x5e_c01023{left:287.749500px;}
.x14_c01023{left:292.950000px;}
.x31_c01023{left:294.168000px;}
.x3f_c01023{left:296.188500px;}
.x28_c01023{left:297.268500px;}
.x5b_c01023{left:298.350000px;}
.x49_c01023{left:300.780000px;}
.x72_c01023{left:302.334390px;}
.x64_c01023{left:305.539500px;}
.x23_c01023{left:312.658500px;}
.xa_c01023{left:318.870000px;}
.x39_c01023{left:319.948500px;}
.x50_c01023{left:323.460000px;}
.x48_c01023{left:324.810000px;}
.x1f_c01023{left:327.064500px;}
.x46_c01023{left:331.020000px;}
.x54_c01023{left:348.216000px;}
.x2_c01023{left:349.650000px;}
.x20_c01023{left:352.008000px;}
.x15_c01023{left:354.510000px;}
.x32_c01023{left:356.577000px;}
.x16_c01023{left:360.990000px;}
.x24_c01023{left:365.848500px;}
.x73_c01023{left:369.015225px;}
.x3_c01023{left:376.920000px;}
.x17_c01023{left:380.160000px;}
.x40_c01023{left:382.318500px;}
.x65_c01023{left:383.857500px;}
.x33_c01023{left:385.152000px;}
.x55_c01023{left:386.559000px;}
.x29_c01023{left:387.988500px;}
.x25_c01023{left:390.148500px;}
.x3a_c01023{left:401.758500px;}
.xb_c01023{left:405.540000px;}
.x18_c01023{left:409.860000px;}
.x41_c01023{left:412.288500px;}
.x4c_c01023{left:415.260000px;}
.x2a_c01023{left:417.418500px;}
.x4a_c01023{left:418.770000px;}
.x47_c01023{left:425.790000px;}
.x3e_c01023{left:436.588500px;}
.x34_c01023{left:441.580500px;}
.x74_c01023{left:449.221815px;}
.x2b_c01023{left:455.488500px;}
.xc_c01023{left:458.190000px;}
.x66_c01023{left:459.456000px;}
.x4_c01023{left:462.780000px;}
.x19_c01023{left:466.290000px;}
.x35_c01023{left:469.395000px;}
.x56_c01023{left:473.229000px;}
.x5_c01023{left:478.710000px;}
.xd_c01023{left:480.870000px;}
.x2c_c01023{left:482.758500px;}
.x26_c01023{left:494.098500px;}
.x75_c01023{left:502.684380px;}
.x67_c01023{left:506.712000px;}
.x2d_c01023{left:516.238500px;}
.x1a_c01023{left:517.590000px;}
.x6c_c01023{left:523.455915px;}
.xe_c01023{left:525.690000px;}
.x36_c01023{left:529.642500px;}
.x76_c01023{left:537.518070px;}
.x3b_c01023{left:542.698500px;}
.x57_c01023{left:549.907500px;}
.x37_c01023{left:553.081500px;}
.x77_c01023{left:554.249400px;}
.x6d_c01023{left:555.317415px;}
.x6_c01023{left:558.900000px;}
.xf_c01023{left:563.490000px;}
.x6e_c01023{left:573.984915px;}
.x68_c01023{left:581.776500px;}
.x6f_c01023{left:584.238915px;}
.x1b_c01023{left:592.110000px;}
.x78_c01023{left:597.999270px;}
.x69_c01023{left:599.860500px;}
.x58_c01023{left:601.206000px;}
.x42_c01023{left:620.728500px;}
.x38_c01023{left:634.813500px;}
.x4d_c01023{left:635.850000px;}
.x10_c01023{left:636.930000px;}
.x59_c01023{left:646.650000px;}
.x3c_c01023{left:650.158500px;}
.x2e_c01023{left:672.568500px;}
.x21_c01023{left:675.667500px;}
.x1c_c01023{left:684.450000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws0_c01023{word-spacing:0.000000pt;}
.fsd_c01023{font-size:41.066667pt;}
.fs15_c01023{font-size:44.802240pt;}
.fs14_c01023{font-size:45.735620pt;}
.fs16_c01023{font-size:49.469140pt;}
.fs10_c01023{font-size:53.200000pt;}
.fsa_c01023{font-size:57.866667pt;}
.fsb_c01023{font-size:60.666667pt;}
.fsc_c01023{font-size:61.600000pt;}
.fs9_c01023{font-size:63.466667pt;}
.fse_c01023{font-size:64.400000pt;}
.fs11_c01023{font-size:64.401578pt;}
.fsf_c01023{font-size:65.333333pt;}
.fs12_c01023{font-size:65.334934pt;}
.fs1_c01023{font-size:69.066667pt;}
.fs0_c01023{font-size:70.933333pt;}
.fs7_c01023{font-size:71.866667pt;}
.fs3_c01023{font-size:72.800000pt;}
.fs13_c01023{font-size:74.666667pt;}
.fs2_c01023{font-size:75.600000pt;}
.fs6_c01023{font-size:79.333333pt;}
.fs8_c01023{font-size:93.333333pt;}
.fs5_c01023{font-size:119.466667pt;}
.fs4_c01023{font-size:125.066667pt;}
.y0_c01023{bottom:0.000000pt;}
.y60_c01023{bottom:134.998293pt;}
.y5f_c01023{bottom:135.309840pt;}
.y5e_c01023{bottom:135.429227pt;}
.y5d_c01023{bottom:135.677520pt;}
.y5c_c01023{bottom:135.821547pt;}
.y5b_c01023{bottom:136.058067pt;}
.y5a_c01023{bottom:136.279413pt;}
.y59_c01023{bottom:136.525213pt;}
.y58_c01023{bottom:136.629667pt;}
.y57_c01023{bottom:137.103707pt;}
.y56_c01023{bottom:137.337853pt;}
.y55_c01023{bottom:137.460800pt;}
.y54_c01023{bottom:137.820293pt;}
.y53_c01023{bottom:138.060480pt;}
.y52_c01023{bottom:138.171867pt;}
.y51_c01023{bottom:138.238333pt;}
.y50_c01023{bottom:150.779507pt;}
.y4f_c01023{bottom:150.870653pt;}
.y4e_c01023{bottom:151.036587pt;}
.y4d_c01023{bottom:151.319800pt;}
.y4c_c01023{bottom:151.696653pt;}
.y4b_c01023{bottom:152.253427pt;}
.y4a_c01023{bottom:152.563107pt;}
.y49_c01023{bottom:154.082333pt;}
.y48_c01023{bottom:154.245547pt;}
.y47_c01023{bottom:154.574520pt;}
.y46_c01023{bottom:154.799720pt;}
.y45_c01023{bottom:166.294213pt;}
.y44_c01023{bottom:166.454960pt;}
.y43_c01023{bottom:166.915787pt;}
.y42_c01023{bottom:167.122200pt;}
.y41_c01023{bottom:167.542253pt;}
.y40_c01023{bottom:167.703040pt;}
.y3f_c01023{bottom:167.935560pt;}
.y3e_c01023{bottom:168.214240pt;}
.y3d_c01023{bottom:168.910400pt;}
.y3c_c01023{bottom:169.191093pt;}
.y3b_c01023{bottom:169.383080pt;}
.y3a_c01023{bottom:169.620693pt;}
.y39_c01023{bottom:170.151093pt;}
.y38_c01023{bottom:170.336000pt;}
.y37_c01023{bottom:217.153333pt;}
.y36_c01023{bottom:218.104000pt;}
.y35_c01023{bottom:218.296000pt;}
.y34_c01023{bottom:219.608000pt;}
.y33_c01023{bottom:237.585333pt;}
.y32_c01023{bottom:247.920000pt;}
.y30_c01023{bottom:259.337321pt;}
.y31_c01023{bottom:260.640000pt;}
.y2f_c01023{bottom:276.545963pt;}
.y2e_c01023{bottom:276.865153pt;}
.y2d_c01023{bottom:277.342264pt;}
.y2c_c01023{bottom:277.721972pt;}
.y2b_c01023{bottom:277.881544pt;}
.y2a_c01023{bottom:278.120123pt;}
.y29_c01023{bottom:278.432481pt;}
.y28_c01023{bottom:278.697884pt;}
.y27_c01023{bottom:278.850988pt;}
.y26_c01023{bottom:279.079459pt;}
.y25_c01023{bottom:279.360000pt;}
.y24_c01023{bottom:298.069333pt;}
.y23_c01023{bottom:319.409333pt;}
.y22_c01023{bottom:325.440000pt;}
.y21_c01023{bottom:338.394667pt;}
.y20_c01023{bottom:359.998667pt;}
.y1e_c01023{bottom:379.680000pt;}
.y1f_c01023{bottom:394.560000pt;}
.y1d_c01023{bottom:401.200000pt;}
.y1c_c01023{bottom:421.178667pt;}
.y1b_c01023{bottom:441.840000pt;}
.y1a_c01023{bottom:461.040000pt;}
.y19_c01023{bottom:495.768000pt;}
.y18_c01023{bottom:496.349333pt;}
.y17_c01023{bottom:496.516000pt;}
.y16_c01023{bottom:496.944000pt;}
.y15_c01023{bottom:497.141333pt;}
.y14_c01023{bottom:497.542667pt;}
.y13_c01023{bottom:497.745333pt;}
.y12_c01023{bottom:498.189333pt;}
.y11_c01023{bottom:498.397333pt;}
.y10_c01023{bottom:498.790667pt;}
.yf_c01023{bottom:499.200000pt;}
.ye_c01023{bottom:522.016000pt;}
.yd_c01023{bottom:545.518667pt;}
.yc_c01023{bottom:568.333333pt;}
.y4_c01023{bottom:587.521333pt;}
.y5_c01023{bottom:588.138667pt;}
.y6_c01023{bottom:589.094667pt;}
.y7_c01023{bottom:589.316000pt;}
.y8_c01023{bottom:590.786667pt;}
.y9_c01023{bottom:591.458667pt;}
.ya_c01023{bottom:591.849333pt;}
.yb_c01023{bottom:592.193333pt;}
.y3_c01023{bottom:615.120000pt;}
.y2_c01023{bottom:640.017333pt;}
.y1_c01023{bottom:663.037333pt;}
.hf_c01023{height:41.066667pt;}
.h17_c01023{height:44.802240pt;}
.h16_c01023{height:45.735620pt;}
.h18_c01023{height:49.469140pt;}
.h12_c01023{height:53.200000pt;}
.hc_c01023{height:57.866667pt;}
.hd_c01023{height:60.666667pt;}
.he_c01023{height:61.600000pt;}
.hb_c01023{height:63.466667pt;}
.h10_c01023{height:64.400000pt;}
.h13_c01023{height:64.401578pt;}
.h11_c01023{height:65.333333pt;}
.h14_c01023{height:65.334934pt;}
.h3_c01023{height:69.066667pt;}
.h2_c01023{height:70.933333pt;}
.h9_c01023{height:71.866667pt;}
.h5_c01023{height:72.800000pt;}
.h15_c01023{height:74.666667pt;}
.h4_c01023{height:75.600000pt;}
.h8_c01023{height:79.333333pt;}
.ha_c01023{height:93.333333pt;}
.h7_c01023{height:119.466667pt;}
.h6_c01023{height:125.066667pt;}
.h0_c01023{height:896.400000pt;}
.h1_c01023{height:896.666667pt;}
.w1_c01023{width:622.666667pt;}
.w0_c01023{width:622.800000pt;}
.x0_c01023{left:0.000000pt;}
.x43_c01023{left:112.080000pt;}
.x1_c01023{left:117.120000pt;}
.x4e_c01023{left:127.680000pt;}
.x5f_c01023{left:129.030667pt;}
.x44_c01023{left:132.480000pt;}
.x1d_c01023{left:133.386667pt;}
.x27_c01023{left:135.838667pt;}
.x7_c01023{left:137.280000pt;}
.x6a_c01023{left:139.822147pt;}
.x60_c01023{left:147.521333pt;}
.x70_c01023{left:149.195293pt;}
.x51_c01023{left:172.477333pt;}
.x5a_c01023{left:174.000000pt;}
.x11_c01023{left:177.840000pt;}
.x71_c01023{left:179.214560pt;}
.x4f_c01023{left:180.960000pt;}
.x2f_c01023{left:186.369333pt;}
.x6b_c01023{left:189.040813pt;}
.x12_c01023{left:190.560000pt;}
.x1e_c01023{left:195.101333pt;}
.x5c_c01023{left:198.650667pt;}
.x61_c01023{left:200.561333pt;}
.x3d_c01023{left:203.038667pt;}
.x52_c01023{left:205.116000pt;}
.x8_c01023{left:206.880000pt;}
.x5d_c01023{left:208.242667pt;}
.x62_c01023{left:224.322667pt;}
.x53_c01023{left:226.988000pt;}
.x4b_c01023{left:231.360000pt;}
.x13_c01023{left:233.520000pt;}
.x30_c01023{left:235.556000pt;}
.x22_c01023{left:239.998667pt;}
.x63_c01023{left:243.521333pt;}
.x45_c01023{left:249.360000pt;}
.x9_c01023{left:252.960000pt;}
.x5e_c01023{left:255.777333pt;}
.x14_c01023{left:260.400000pt;}
.x31_c01023{left:261.482667pt;}
.x3f_c01023{left:263.278667pt;}
.x28_c01023{left:264.238667pt;}
.x5b_c01023{left:265.200000pt;}
.x49_c01023{left:267.360000pt;}
.x72_c01023{left:268.741680pt;}
.x64_c01023{left:271.590667pt;}
.x23_c01023{left:277.918667pt;}
.xa_c01023{left:283.440000pt;}
.x39_c01023{left:284.398667pt;}
.x50_c01023{left:287.520000pt;}
.x48_c01023{left:288.720000pt;}
.x1f_c01023{left:290.724000pt;}
.x46_c01023{left:294.240000pt;}
.x54_c01023{left:309.525333pt;}
.x2_c01023{left:310.800000pt;}
.x20_c01023{left:312.896000pt;}
.x15_c01023{left:315.120000pt;}
.x32_c01023{left:316.957333pt;}
.x16_c01023{left:320.880000pt;}
.x24_c01023{left:325.198667pt;}
.x73_c01023{left:328.013533pt;}
.x3_c01023{left:335.040000pt;}
.x17_c01023{left:337.920000pt;}
.x40_c01023{left:339.838667pt;}
.x65_c01023{left:341.206667pt;}
.x33_c01023{left:342.357333pt;}
.x55_c01023{left:343.608000pt;}
.x29_c01023{left:344.878667pt;}
.x25_c01023{left:346.798667pt;}
.x3a_c01023{left:357.118667pt;}
.xb_c01023{left:360.480000pt;}
.x18_c01023{left:364.320000pt;}
.x41_c01023{left:366.478667pt;}
.x4c_c01023{left:369.120000pt;}
.x2a_c01023{left:371.038667pt;}
.x4a_c01023{left:372.240000pt;}
.x47_c01023{left:378.480000pt;}
.x3e_c01023{left:388.078667pt;}
.x34_c01023{left:392.516000pt;}
.x74_c01023{left:399.308280pt;}
.x2b_c01023{left:404.878667pt;}
.xc_c01023{left:407.280000pt;}
.x66_c01023{left:408.405333pt;}
.x4_c01023{left:411.360000pt;}
.x19_c01023{left:414.480000pt;}
.x35_c01023{left:417.240000pt;}
.x56_c01023{left:420.648000pt;}
.x5_c01023{left:425.520000pt;}
.xd_c01023{left:427.440000pt;}
.x2c_c01023{left:429.118667pt;}
.x26_c01023{left:439.198667pt;}
.x75_c01023{left:446.830560pt;}
.x67_c01023{left:450.410667pt;}
.x2d_c01023{left:458.878667pt;}
.x1a_c01023{left:460.080000pt;}
.x6c_c01023{left:465.294147pt;}
.xe_c01023{left:467.280000pt;}
.x36_c01023{left:470.793333pt;}
.x76_c01023{left:477.793840pt;}
.x3b_c01023{left:482.398667pt;}
.x57_c01023{left:488.806667pt;}
.x37_c01023{left:491.628000pt;}
.x77_c01023{left:492.666133pt;}
.x6d_c01023{left:493.615480pt;}
.x6_c01023{left:496.800000pt;}
.xf_c01023{left:500.880000pt;}
.x6e_c01023{left:510.208813pt;}
.x68_c01023{left:517.134667pt;}
.x6f_c01023{left:519.323480pt;}
.x1b_c01023{left:526.320000pt;}
.x78_c01023{left:531.554907pt;}
.x69_c01023{left:533.209333pt;}
.x58_c01023{left:534.405333pt;}
.x42_c01023{left:551.758667pt;}
.x38_c01023{left:564.278667pt;}
.x4d_c01023{left:565.200000pt;}
.x10_c01023{left:566.160000pt;}
.x59_c01023{left:574.800000pt;}
.x3c_c01023{left:577.918667pt;}
.x2e_c01023{left:597.838667pt;}
.x21_c01023{left:600.593333pt;}
.x1c_c01023{left:608.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_c01024 {
    display:none;
  }
  .loading-indicator_c01024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01024 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01024 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01024" -> "#page-container .classname_c01024")
 */
.pf_c01024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01024 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01024 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01024 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01024 {overflow:visible;}
  }
}
.c_c01024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01024 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01024:after { /* webkit #35443 */
  content: '';
}
.t_c01024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01024 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01024 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01024 { /* info for Javascript */
  display:none;
}
.l_c01024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.000000;font-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_c01024{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m51_c01024{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);}
.m5a_c01024{transform:matrix(0.039480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039480,0.000000,0.000000,0.250000,0,0);}
.m32_c01024{transform:matrix(0.040653,-0.000732,0.004499,0.249960,0,0);-ms-transform:matrix(0.040653,-0.000732,0.004499,0.249960,0,0);-webkit-transform:matrix(0.040653,-0.000732,0.004499,0.249960,0,0);}
.m47_c01024{transform:matrix(0.094980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094980,0.000000,0.000000,0.250000,0,0);}
.m9f_c01024{transform:matrix(0.095230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095230,0.000000,0.000000,0.250000,0,0);}
.m89_c01024{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);}
.mbb_c01024{transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);}
.m21_c01024{transform:matrix(0.127345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127345,0.000000,0.000000,0.250000,0,0);}
.m26_c01024{transform:matrix(0.136495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136495,0.000000,0.000000,0.250000,0,0);}
.m55_c01024{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);}
.m4a_c01024{transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);}
.ma2_c01024{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);}
.m8f_c01024{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);}
.m1c_c01024{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);}
.m20_c01024{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);}
.m6d_c01024{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);}
.m98_c01024{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);}
.m81_c01024{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);}
.ma7_c01024{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);}
.mab_c01024{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01024{transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162965,0.000000,0.000000,0.250000,0,0);}
.m9d_c01024{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);}
.mb0_c01024{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);}
.m24_c01024{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);}
.m90_c01024{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);}
.m7b_c01024{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);}
.m5e_c01024{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);}
.m8c_c01024{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);}
.m9c_c01024{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);}
.mc7_c01024{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);}
.m11_c01024{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);}
.mc6_c01024{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);}
.m97_c01024{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);}
.m45_c01024{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);}
.m61_c01024{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);}
.m0_c01024{transform:matrix(0.184599,-0.001477,0.002000,0.249992,0,0);-ms-transform:matrix(0.184599,-0.001477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184599,-0.001477,0.002000,0.249992,0,0);}
.m8d_c01024{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);}
.m60_c01024{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);}
.mc8_c01024{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);}
.m6a_c01024{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);}
.mc9_c01024{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);}
.m72_c01024{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);}
.m2f_c01024{transform:matrix(0.188205,-0.003388,0.004499,0.249960,0,0);-ms-transform:matrix(0.188205,-0.003388,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188205,-0.003388,0.004499,0.249960,0,0);}
.ma8_c01024{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);}
.m31_c01024{transform:matrix(0.188619,-0.003395,0.004499,0.249960,0,0);-ms-transform:matrix(0.188619,-0.003395,0.004499,0.249960,0,0);-webkit-transform:matrix(0.188619,-0.003395,0.004499,0.249960,0,0);}
.m80_c01024{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);}
.m73_c01024{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);}
.ma6_c01024{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);}
.m18_c01024{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);}
.m22_c01024{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);}
.m4b_c01024{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);}
.ma1_c01024{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);}
.m91_c01024{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);}
.m53_c01024{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);}
.m2e_c01024{transform:matrix(0.194139,-0.003494,0.004499,0.249960,0,0);-ms-transform:matrix(0.194139,-0.003494,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194139,-0.003494,0.004499,0.249960,0,0);}
.m63_c01024{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);}
.m59_c01024{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);}
.m6e_c01024{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);}
.ma9_c01024{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);}
.m17_c01024{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);}
.m8e_c01024{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);}
.m1e_c01024{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);}
.m8b_c01024{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);}
.m82_c01024{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);}
.mcc_c01024{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);}
.m71_c01024{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);}
.m65_c01024{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);}
.ma5_c01024{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);}
.m88_c01024{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);}
.m56_c01024{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);}
.m19_c01024{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);}
.mb9_c01024{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);}
.maf_c01024{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);}
.m1d_c01024{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);}
.m37_c01024{transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);-ms-transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206392,-0.003715,0.004499,0.249960,0,0);}
.mc2_c01024{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);}
.m75_c01024{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);}
.m62_c01024{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);}
.m6_c01024{transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209283,-0.001674,0.002000,0.249992,0,0);}
.m1b_c01024{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);}
.m3d_c01024{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);}
.mcd_c01024{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);}
.m5d_c01024{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);}
.mf_c01024{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);}
.mae_c01024{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);}
.m96_c01024{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);}
.m16_c01024{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);}
.m64_c01024{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);}
.m7c_c01024{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);}
.mca_c01024{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);}
.m25_c01024{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);}
.m52_c01024{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);}
.m99_c01024{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);}
.m23_c01024{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);}
.m3c_c01024{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);}
.m86_c01024{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.mad_c01024{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);}
.m44_c01024{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);}
.mb8_c01024{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);}
.m13_c01024{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);}
.m84_c01024{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);}
.mbd_c01024{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);}
.ma0_c01024{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);}
.m5_c01024{transform:matrix(0.223373,-0.001787,0.002000,0.249992,0,0);-ms-transform:matrix(0.223373,-0.001787,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223373,-0.001787,0.002000,0.249992,0,0);}
.m10_c01024{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);}
.m5b_c01024{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);}
.m7a_c01024{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);}
.m15_c01024{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);}
.m87_c01024{transform:matrix(0.231155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231155,0.000000,0.000000,0.250000,0,0);}
.m5f_c01024{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);}
.ma4_c01024{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);}
.mac_c01024{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);}
.m58_c01024{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m79_c01024{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);}
.me_c01024{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);}
.m54_c01024{transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);}
.m30_c01024{transform:matrix(0.234982,-0.004230,0.004499,0.249960,0,0);-ms-transform:matrix(0.234982,-0.004230,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234982,-0.004230,0.004499,0.249960,0,0);}
.m3a_c01024{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);}
.m14_c01024{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);}
.m85_c01024{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);}
.mba_c01024{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);}
.mc0_c01024{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);}
.mb5_c01024{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.ma3_c01024{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);}
.mc3_c01024{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);}
.m35_c01024{transform:matrix(0.238116,-0.004286,0.004499,0.249960,0,0);-ms-transform:matrix(0.238116,-0.004286,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238116,-0.004286,0.004499,0.249960,0,0);}
.m3b_c01024{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_c01024{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);}
.m74_c01024{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m9b_c01024{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);}
.mb1_c01024{transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243530,0.000000,0.000000,0.250000,0,0);}
.m68_c01024{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);}
.m94_c01024{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);}
.m4c_c01024{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);}
.mb7_c01024{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);}
.m70_c01024{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);}
.mcb_c01024{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m6c_c01024{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);}
.m7e_c01024{transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);}
.m7d_c01024{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);}
.mb3_c01024{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);}
.m57_c01024{transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261170,0.000000,0.000000,0.250000,0,0);}
.m66_c01024{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);}
.m95_c01024{transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262180,0.000000,0.000000,0.250000,0,0);}
.m36_c01024{transform:matrix(0.262333,-0.004722,0.004499,0.249960,0,0);-ms-transform:matrix(0.262333,-0.004722,0.004499,0.249960,0,0);-webkit-transform:matrix(0.262333,-0.004722,0.004499,0.249960,0,0);}
.m92_c01024{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);}
.m8_c01024{transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);}
.mb4_c01024{transform:matrix(0.265120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265120,0.000000,0.000000,0.250000,0,0);}
.m38_c01024{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);}
.m33_c01024{transform:matrix(0.267257,-0.004811,0.004499,0.249960,0,0);-ms-transform:matrix(0.267257,-0.004811,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267257,-0.004811,0.004499,0.249960,0,0);}
.m39_c01024{transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271090,0.000000,0.000000,0.250000,0,0);}
.md_c01024{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);}
.m46_c01024{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);}
.mb2_c01024{transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284195,0.000000,0.000000,0.250000,0,0);}
.m2_c01024{transform:matrix(0.285491,-0.002284,0.002000,0.249992,0,0);-ms-transform:matrix(0.285491,-0.002284,0.002000,0.249992,0,0);-webkit-transform:matrix(0.285491,-0.002284,0.002000,0.249992,0,0);}
.m41_c01024{transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291740,0.000000,0.000000,0.250000,0,0);}
.m6f_c01024{transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291910,0.000000,0.000000,0.250000,0,0);}
.m2c_c01024{transform:matrix(0.294512,-0.005301,0.004499,0.249960,0,0);-ms-transform:matrix(0.294512,-0.005301,0.004499,0.249960,0,0);-webkit-transform:matrix(0.294512,-0.005301,0.004499,0.249960,0,0);}
.mb6_c01024{transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294515,0.000000,0.000000,0.250000,0,0);}
.m50_c01024{transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);}
.m1f_c01024{transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);}
.m76_c01024{transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302080,0.000000,0.000000,0.250000,0,0);}
.m77_c01024{transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305095,0.000000,0.000000,0.250000,0,0);}
.m40_c01024{transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310380,0.000000,0.000000,0.250000,0,0);}
.mc4_c01024{transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);}
.m5c_c01024{transform:matrix(0.344700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344700,0.000000,0.000000,0.250000,0,0);}
.m49_c01024{transform:matrix(0.344730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344730,0.000000,0.000000,0.250000,0,0);}
.m9e_c01024{transform:matrix(0.345760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345760,0.000000,0.000000,0.250000,0,0);}
.m29_c01024{transform:matrix(0.347954,-0.006263,0.004499,0.249960,0,0);-ms-transform:matrix(0.347954,-0.006263,0.004499,0.249960,0,0);-webkit-transform:matrix(0.347954,-0.006263,0.004499,0.249960,0,0);}
.mc_c01024{transform:matrix(0.350085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350085,0.000000,0.000000,0.250000,0,0);}
.m3f_c01024{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.m4_c01024{transform:matrix(0.350354,-0.002803,0.002000,0.249992,0,0);-ms-transform:matrix(0.350354,-0.002803,0.002000,0.249992,0,0);-webkit-transform:matrix(0.350354,-0.002803,0.002000,0.249992,0,0);}
.m2b_c01024{transform:matrix(0.352848,-0.006351,0.004499,0.249960,0,0);-ms-transform:matrix(0.352848,-0.006351,0.004499,0.249960,0,0);-webkit-transform:matrix(0.352848,-0.006351,0.004499,0.249960,0,0);}
.m12_c01024{transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354130,0.000000,0.000000,0.250000,0,0);}
.m4d_c01024{transform:matrix(0.355545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355545,0.000000,0.000000,0.250000,0,0);}
.mbe_c01024{transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364425,0.000000,0.000000,0.250000,0,0);}
.m3_c01024{transform:matrix(0.365888,-0.002927,0.002000,0.249992,0,0);-ms-transform:matrix(0.365888,-0.002927,0.002000,0.249992,0,0);-webkit-transform:matrix(0.365888,-0.002927,0.002000,0.249992,0,0);}
.m34_c01024{transform:matrix(0.369930,-0.006659,0.004499,0.249960,0,0);-ms-transform:matrix(0.369930,-0.006659,0.004499,0.249960,0,0);-webkit-transform:matrix(0.369930,-0.006659,0.004499,0.249960,0,0);}
.m4e_c01024{transform:matrix(0.375440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375440,0.000000,0.000000,0.250000,0,0);}
.m78_c01024{transform:matrix(0.380075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380075,0.000000,0.000000,0.250000,0,0);}
.ma_c01024{transform:matrix(0.394925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394925,0.000000,0.000000,0.250000,0,0);}
.m27_c01024{transform:matrix(0.397646,-0.007158,0.004499,0.249960,0,0);-ms-transform:matrix(0.397646,-0.007158,0.004499,0.249960,0,0);-webkit-transform:matrix(0.397646,-0.007158,0.004499,0.249960,0,0);}
.m67_c01024{transform:matrix(0.400490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400490,0.000000,0.000000,0.250000,0,0);}
.m28_c01024{transform:matrix(0.429026,-0.007722,0.004499,0.249960,0,0);-ms-transform:matrix(0.429026,-0.007722,0.004499,0.249960,0,0);-webkit-transform:matrix(0.429026,-0.007722,0.004499,0.249960,0,0);}
.mb_c01024{transform:matrix(0.439645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439645,0.000000,0.000000,0.250000,0,0);}
.m8a_c01024{transform:matrix(0.452760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452760,0.000000,0.000000,0.250000,0,0);}
.m43_c01024{transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452895,0.000000,0.000000,0.250000,0,0);}
.m9_c01024{transform:matrix(0.465850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01024{transform:matrix(0.470119,-0.008462,0.004499,0.249960,0,0);-ms-transform:matrix(0.470119,-0.008462,0.004499,0.249960,0,0);-webkit-transform:matrix(0.470119,-0.008462,0.004499,0.249960,0,0);}
.m9a_c01024{transform:matrix(0.470935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470935,0.000000,0.000000,0.250000,0,0);}
.mbc_c01024{transform:matrix(0.476905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476905,0.000000,0.000000,0.250000,0,0);}
.m4f_c01024{transform:matrix(0.478330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478330,0.000000,0.000000,0.250000,0,0);}
.m69_c01024{transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);}
.m83_c01024{transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);}
.m3e_c01024{transform:matrix(0.530375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530375,0.000000,0.000000,0.250000,0,0);}
.m1_c01024{transform:matrix(0.530643,-0.004245,0.002000,0.249992,0,0);-ms-transform:matrix(0.530643,-0.004245,0.002000,0.249992,0,0);-webkit-transform:matrix(0.530643,-0.004245,0.002000,0.249992,0,0);}
.m6b_c01024{transform:matrix(0.536535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536535,0.000000,0.000000,0.250000,0,0);}
.m2d_c01024{transform:matrix(0.551701,-0.009931,0.004499,0.249960,0,0);-ms-transform:matrix(0.551701,-0.009931,0.004499,0.249960,0,0);-webkit-transform:matrix(0.551701,-0.009931,0.004499,0.249960,0,0);}
.mc5_c01024{transform:matrix(0.569735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569735,0.000000,0.000000,0.250000,0,0);}
.m93_c01024{transform:matrix(0.587525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587525,0.000000,0.000000,0.250000,0,0);}
.maa_c01024{transform:matrix(0.674985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674985,0.000000,0.000000,0.250000,0,0);}
.m42_c01024{transform:matrix(0.676395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676395,0.000000,0.000000,0.250000,0,0);}
.m7f_c01024{transform:matrix(0.699785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699785,0.000000,0.000000,0.250000,0,0);}
.mbf_c01024{transform:matrix(0.893235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893235,0.000000,0.000000,0.250000,0,0);}
.m7_c01024{transform:matrix(1.875700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.875700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.875700,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls0_c01024{letter-spacing:0.000000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:0.000000px;}
.fc0_c01024{color:transparent;}
.fs2_c01024{font-size:16.800000px;}
.fs11_c01024{font-size:22.050000px;}
.fs10_c01024{font-size:29.400000px;}
.fs12_c01024{font-size:53.550000px;}
.fs13_c01024{font-size:54.600000px;}
.fsa_c01024{font-size:60.900000px;}
.fsc_c01024{font-size:61.950000px;}
.fs9_c01024{font-size:63.010205px;}
.fs4_c01024{font-size:64.050000px;}
.fsf_c01024{font-size:67.200000px;}
.fse_c01024{font-size:68.250000px;}
.fs8_c01024{font-size:69.311226px;}
.fs3_c01024{font-size:70.350000px;}
.fs7_c01024{font-size:70.361396px;}
.fsb_c01024{font-size:71.400000px;}
.fs5_c01024{font-size:72.450000px;}
.fsd_c01024{font-size:73.500000px;}
.fs6_c01024{font-size:74.550000px;}
.fs1_c01024{font-size:123.903965px;}
.fs0_c01024{font-size:138.604435px;}
.y0_c01024{bottom:0.000000px;}
.y34_c01024{bottom:163.234500px;}
.y32_c01024{bottom:181.980000px;}
.y33_c01024{bottom:199.864500px;}
.y31_c01024{bottom:219.912000px;}
.y30_c01024{bottom:223.831500px;}
.y2f_c01024{bottom:260.265000px;}
.y2e_c01024{bottom:283.269000px;}
.y2d_c01024{bottom:305.353500px;}
.y2c_c01024{bottom:328.683000px;}
.y2b_c01024{bottom:350.446500px;}
.y2a_c01024{bottom:373.627500px;}
.y29_c01024{bottom:396.282000px;}
.y28_c01024{bottom:419.388000px;}
.y27_c01024{bottom:442.230000px;}
.y26_c01024{bottom:464.748000px;}
.y25_c01024{bottom:486.138000px;}
.y24_c01024{bottom:509.421000px;}
.y23_c01024{bottom:530.404500px;}
.y22_c01024{bottom:554.739000px;}
.y21_c01024{bottom:576.555000px;}
.y20_c01024{bottom:600.199500px;}
.y1f_c01024{bottom:621.849000px;}
.y1e_c01024{bottom:644.976000px;}
.y1a_c01024{bottom:673.113933px;}
.y18_c01024{bottom:673.113963px;}
.y19_c01024{bottom:673.114047px;}
.y1d_c01024{bottom:673.114131px;}
.y1c_c01024{bottom:673.114185px;}
.y1b_c01024{bottom:673.114539px;}
.y11_c01024{bottom:699.956973px;}
.y13_c01024{bottom:699.957237px;}
.y15_c01024{bottom:699.957393px;}
.y12_c01024{bottom:699.957405px;}
.y14_c01024{bottom:699.957435px;}
.y17_c01024{bottom:699.957444px;}
.y16_c01024{bottom:699.958119px;}
.yd_c01024{bottom:726.180000px;}
.ye_c01024{bottom:726.962325px;}
.yf_c01024{bottom:727.348479px;}
.y10_c01024{bottom:727.812501px;}
.yc_c01024{bottom:756.057000px;}
.yb_c01024{bottom:778.824000px;}
.ya_c01024{bottom:801.306000px;}
.y9_c01024{bottom:828.862500px;}
.y8_c01024{bottom:854.419500px;}
.y7_c01024{bottom:875.423820px;}
.y6_c01024{bottom:875.424516px;}
.y5_c01024{bottom:875.424876px;}
.y1_c01024{bottom:915.031500px;}
.y2_c01024{bottom:915.308280px;}
.y3_c01024{bottom:916.928880px;}
.y4_c01024{bottom:918.299004px;}
.h4_c01024{height:16.800000px;}
.h13_c01024{height:22.050000px;}
.h12_c01024{height:29.400000px;}
.h14_c01024{height:53.550000px;}
.h15_c01024{height:54.600000px;}
.hc_c01024{height:60.900000px;}
.he_c01024{height:61.950000px;}
.hb_c01024{height:63.010205px;}
.h6_c01024{height:64.050000px;}
.h11_c01024{height:67.200000px;}
.h10_c01024{height:68.250000px;}
.ha_c01024{height:69.311226px;}
.h5_c01024{height:70.350000px;}
.h9_c01024{height:70.361396px;}
.hd_c01024{height:71.400000px;}
.h7_c01024{height:72.450000px;}
.hf_c01024{height:73.500000px;}
.h8_c01024{height:74.550000px;}
.h3_c01024{height:123.903965px;}
.h2_c01024{height:138.604435px;}
.h1_c01024{height:1005.000000px;}
.h0_c01024{height:1005.150000px;}
.w0_c01024{width:715.200000px;}
.w1_c01024{width:715.500000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:58.467000px;}
.x2_c01024{left:93.064500px;}
.x58_c01024{left:115.560000px;}
.x8_c01024{left:117.450000px;}
.x3e_c01024{left:120.690000px;}
.x44_c01024{left:124.200000px;}
.x3f_c01024{left:131.220000px;}
.x4a_c01024{left:133.380000px;}
.x45_c01024{left:134.460000px;}
.x6e_c01024{left:135.540000px;}
.x87_c01024{left:138.240000px;}
.x7a_c01024{left:141.750000px;}
.x9_c01024{left:149.310000px;}
.x16_c01024{left:151.200000px;}
.xe_c01024{left:152.280000px;}
.x59_c01024{left:153.630000px;}
.x4b_c01024{left:163.620000px;}
.x46_c01024{left:166.860000px;}
.x50_c01024{left:171.180000px;}
.x80_c01024{left:174.960000px;}
.x74_c01024{left:176.310000px;}
.x6f_c01024{left:179.820000px;}
.x36_c01024{left:184.680000px;}
.x33_c01024{left:186.300000px;}
.x5_c01024{left:188.464152px;}
.x40_c01024{left:189.540000px;}
.x17_c01024{left:191.160000px;}
.x20_c01024{left:195.750000px;}
.x5a_c01024{left:198.990000px;}
.x75_c01024{left:204.120000px;}
.xf_c01024{left:207.900000px;}
.x37_c01024{left:210.600000px;}
.x51_c01024{left:213.570000px;}
.x88_c01024{left:215.730000px;}
.x7b_c01024{left:217.350000px;}
.x81_c01024{left:221.940000px;}
.x5b_c01024{left:225.450000px;}
.x68_c01024{left:228.960000px;}
.x2a_c01024{left:230.570841px;}
.x70_c01024{left:236.520000px;}
.x21_c01024{left:238.410000px;}
.x18_c01024{left:241.110000px;}
.x52_c01024{left:246.510000px;}
.x7c_c01024{left:249.210000px;}
.x10_c01024{left:250.290000px;}
.x5c_c01024{left:259.470000px;}
.x89_c01024{left:265.140000px;}
.x63_c01024{left:267.570000px;}
.x38_c01024{left:269.190000px;}
.x71_c01024{left:271.890000px;}
.x69_c01024{left:276.210000px;}
.x4c_c01024{left:278.640000px;}
.x26_c01024{left:280.018500px;}
.x19_c01024{left:283.500000px;}
.x2b_c01024{left:284.849418px;}
.x5d_c01024{left:285.930000px;}
.x22_c01024{left:287.280000px;}
.x73_c01024{left:288.360000px;}
.x47_c01024{left:290.520000px;}
.x6d_c01024{left:293.760000px;}
.x3_c01024{left:295.639500px;}
.xa_c01024{left:297.000000px;}
.x72_c01024{left:298.080000px;}
.x41_c01024{left:302.940000px;}
.x2f_c01024{left:305.373090px;}
.x48_c01024{left:307.530000px;}
.x6a_c01024{left:310.230000px;}
.x1a_c01024{left:315.090000px;}
.x64_c01024{left:316.980000px;}
.xb_c01024{left:321.300000px;}
.x27_c01024{left:323.481000px;}
.x42_c01024{left:325.080000px;}
.x30_c01024{left:326.707002px;}
.x76_c01024{left:328.320000px;}
.x34_c01024{left:335.070000px;}
.x2c_c01024{left:336.697212px;}
.x23_c01024{left:338.040000px;}
.x65_c01024{left:340.200000px;}
.x1b_c01024{left:341.280000px;}
.x53_c01024{left:342.360000px;}
.x28_c01024{left:344.934000px;}
.x31_c01024{left:348.581076px;}
.x39_c01024{left:354.510000px;}
.x2d_c01024{left:356.410584px;}
.x35_c01024{left:358.020000px;}
.x24_c01024{left:362.610000px;}
.x82_c01024{left:363.690000px;}
.xc_c01024{left:365.850000px;}
.x32_c01024{left:367.484205px;}
.x6b_c01024{left:369.090000px;}
.x29_c01024{left:370.713000px;}
.x7d_c01024{left:374.220000px;}
.x5e_c01024{left:383.940000px;}
.x25_c01024{left:385.560000px;}
.xd_c01024{left:388.260000px;}
.x43_c01024{left:390.420000px;}
.x1c_c01024{left:392.040000px;}
.x11_c01024{left:396.630000px;}
.x3a_c01024{left:397.980000px;}
.x77_c01024{left:400.680000px;}
.x2e_c01024{left:406.639365px;}
.x6c_c01024{left:408.240000px;}
.x6_c01024{left:409.870824px;}
.x12_c01024{left:412.290000px;}
.x78_c01024{left:423.360000px;}
.x4d_c01024{left:427.950000px;}
.x54_c01024{left:430.110000px;}
.x1d_c01024{left:433.890000px;}
.x3b_c01024{left:434.970000px;}
.x66_c01024{left:436.050000px;}
.x5f_c01024{left:442.260000px;}
.x7e_c01024{left:444.960000px;}
.x13_c01024{left:447.390000px;}
.x49_c01024{left:451.170000px;}
.x55_c01024{left:465.210000px;}
.x4_c01024{left:466.905000px;}
.x3c_c01024{left:470.610000px;}
.x60_c01024{left:471.690000px;}
.x83_c01024{left:473.040000px;}
.x4e_c01024{left:475.470000px;}
.x1e_c01024{left:485.460000px;}
.x79_c01024{left:486.810000px;}
.x7f_c01024{left:489.780000px;}
.x84_c01024{left:497.340000px;}
.x4f_c01024{left:504.360000px;}
.x14_c01024{left:507.870000px;}
.x3d_c01024{left:511.650000px;}
.x85_c01024{left:514.350000px;}
.x67_c01024{left:518.670000px;}
.x61_c01024{left:521.910000px;}
.x1f_c01024{left:527.040000px;}
.x56_c01024{left:532.440000px;}
.x15_c01024{left:535.680000px;}
.x7_c01024{left:558.105816px;}
.x86_c01024{left:560.790000px;}
.x57_c01024{left:566.460000px;}
.x62_c01024{left:569.160000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws0_c01024{word-spacing:0.000000pt;}
.fs2_c01024{font-size:14.933333pt;}
.fs11_c01024{font-size:19.600000pt;}
.fs10_c01024{font-size:26.133333pt;}
.fs12_c01024{font-size:47.600000pt;}
.fs13_c01024{font-size:48.533333pt;}
.fsa_c01024{font-size:54.133333pt;}
.fsc_c01024{font-size:55.066667pt;}
.fs9_c01024{font-size:56.009071pt;}
.fs4_c01024{font-size:56.933333pt;}
.fsf_c01024{font-size:59.733333pt;}
.fse_c01024{font-size:60.666667pt;}
.fs8_c01024{font-size:61.609978pt;}
.fs3_c01024{font-size:62.533333pt;}
.fs7_c01024{font-size:62.543463pt;}
.fsb_c01024{font-size:63.466667pt;}
.fs5_c01024{font-size:64.400000pt;}
.fsd_c01024{font-size:65.333333pt;}
.fs6_c01024{font-size:66.266667pt;}
.fs1_c01024{font-size:110.136858pt;}
.fs0_c01024{font-size:123.203942pt;}
.y0_c01024{bottom:0.000000pt;}
.y34_c01024{bottom:145.097333pt;}
.y32_c01024{bottom:161.760000pt;}
.y33_c01024{bottom:177.657333pt;}
.y31_c01024{bottom:195.477333pt;}
.y30_c01024{bottom:198.961333pt;}
.y2f_c01024{bottom:231.346667pt;}
.y2e_c01024{bottom:251.794667pt;}
.y2d_c01024{bottom:271.425333pt;}
.y2c_c01024{bottom:292.162667pt;}
.y2b_c01024{bottom:311.508000pt;}
.y2a_c01024{bottom:332.113333pt;}
.y29_c01024{bottom:352.250667pt;}
.y28_c01024{bottom:372.789333pt;}
.y27_c01024{bottom:393.093333pt;}
.y26_c01024{bottom:413.109333pt;}
.y25_c01024{bottom:432.122667pt;}
.y24_c01024{bottom:452.818667pt;}
.y23_c01024{bottom:471.470667pt;}
.y22_c01024{bottom:493.101333pt;}
.y21_c01024{bottom:512.493333pt;}
.y20_c01024{bottom:533.510667pt;}
.y1f_c01024{bottom:552.754667pt;}
.y1e_c01024{bottom:573.312000pt;}
.y1a_c01024{bottom:598.323496pt;}
.y18_c01024{bottom:598.323523pt;}
.y19_c01024{bottom:598.323597pt;}
.y1d_c01024{bottom:598.323672pt;}
.y1c_c01024{bottom:598.323720pt;}
.y1b_c01024{bottom:598.324035pt;}
.y11_c01024{bottom:622.183976pt;}
.y13_c01024{bottom:622.184211pt;}
.y15_c01024{bottom:622.184349pt;}
.y12_c01024{bottom:622.184360pt;}
.y14_c01024{bottom:622.184387pt;}
.y17_c01024{bottom:622.184395pt;}
.y16_c01024{bottom:622.184995pt;}
.yd_c01024{bottom:645.493333pt;}
.ye_c01024{bottom:646.188733pt;}
.yf_c01024{bottom:646.531981pt;}
.y10_c01024{bottom:646.944445pt;}
.yc_c01024{bottom:672.050667pt;}
.yb_c01024{bottom:692.288000pt;}
.ya_c01024{bottom:712.272000pt;}
.y9_c01024{bottom:736.766667pt;}
.y8_c01024{bottom:759.484000pt;}
.y7_c01024{bottom:778.154507pt;}
.y6_c01024{bottom:778.155125pt;}
.y5_c01024{bottom:778.155445pt;}
.y1_c01024{bottom:813.361333pt;}
.y2_c01024{bottom:813.607360pt;}
.y3_c01024{bottom:815.047893pt;}
.y4_c01024{bottom:816.265781pt;}
.h4_c01024{height:14.933333pt;}
.h13_c01024{height:19.600000pt;}
.h12_c01024{height:26.133333pt;}
.h14_c01024{height:47.600000pt;}
.h15_c01024{height:48.533333pt;}
.hc_c01024{height:54.133333pt;}
.he_c01024{height:55.066667pt;}
.hb_c01024{height:56.009071pt;}
.h6_c01024{height:56.933333pt;}
.h11_c01024{height:59.733333pt;}
.h10_c01024{height:60.666667pt;}
.ha_c01024{height:61.609978pt;}
.h5_c01024{height:62.533333pt;}
.h9_c01024{height:62.543463pt;}
.hd_c01024{height:63.466667pt;}
.h7_c01024{height:64.400000pt;}
.hf_c01024{height:65.333333pt;}
.h8_c01024{height:66.266667pt;}
.h3_c01024{height:110.136858pt;}
.h2_c01024{height:123.203942pt;}
.h1_c01024{height:893.333333pt;}
.h0_c01024{height:893.466667pt;}
.w0_c01024{width:635.733333pt;}
.w1_c01024{width:636.000000pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:51.970667pt;}
.x2_c01024{left:82.724000pt;}
.x58_c01024{left:102.720000pt;}
.x8_c01024{left:104.400000pt;}
.x3e_c01024{left:107.280000pt;}
.x44_c01024{left:110.400000pt;}
.x3f_c01024{left:116.640000pt;}
.x4a_c01024{left:118.560000pt;}
.x45_c01024{left:119.520000pt;}
.x6e_c01024{left:120.480000pt;}
.x87_c01024{left:122.880000pt;}
.x7a_c01024{left:126.000000pt;}
.x9_c01024{left:132.720000pt;}
.x16_c01024{left:134.400000pt;}
.xe_c01024{left:135.360000pt;}
.x59_c01024{left:136.560000pt;}
.x4b_c01024{left:145.440000pt;}
.x46_c01024{left:148.320000pt;}
.x50_c01024{left:152.160000pt;}
.x80_c01024{left:155.520000pt;}
.x74_c01024{left:156.720000pt;}
.x6f_c01024{left:159.840000pt;}
.x36_c01024{left:164.160000pt;}
.x33_c01024{left:165.600000pt;}
.x5_c01024{left:167.523691pt;}
.x40_c01024{left:168.480000pt;}
.x17_c01024{left:169.920000pt;}
.x20_c01024{left:174.000000pt;}
.x5a_c01024{left:176.880000pt;}
.x75_c01024{left:181.440000pt;}
.xf_c01024{left:184.800000pt;}
.x37_c01024{left:187.200000pt;}
.x51_c01024{left:189.840000pt;}
.x88_c01024{left:191.760000pt;}
.x7b_c01024{left:193.200000pt;}
.x81_c01024{left:197.280000pt;}
.x5b_c01024{left:200.400000pt;}
.x68_c01024{left:203.520000pt;}
.x2a_c01024{left:204.951859pt;}
.x70_c01024{left:210.240000pt;}
.x21_c01024{left:211.920000pt;}
.x18_c01024{left:214.320000pt;}
.x52_c01024{left:219.120000pt;}
.x7c_c01024{left:221.520000pt;}
.x10_c01024{left:222.480000pt;}
.x5c_c01024{left:230.640000pt;}
.x89_c01024{left:235.680000pt;}
.x63_c01024{left:237.840000pt;}
.x38_c01024{left:239.280000pt;}
.x71_c01024{left:241.680000pt;}
.x69_c01024{left:245.520000pt;}
.x4c_c01024{left:247.680000pt;}
.x26_c01024{left:248.905333pt;}
.x19_c01024{left:252.000000pt;}
.x2b_c01024{left:253.199483pt;}
.x5d_c01024{left:254.160000pt;}
.x22_c01024{left:255.360000pt;}
.x73_c01024{left:256.320000pt;}
.x47_c01024{left:258.240000pt;}
.x6d_c01024{left:261.120000pt;}
.x3_c01024{left:262.790667pt;}
.xa_c01024{left:264.000000pt;}
.x72_c01024{left:264.960000pt;}
.x41_c01024{left:269.280000pt;}
.x2f_c01024{left:271.442747pt;}
.x48_c01024{left:273.360000pt;}
.x6a_c01024{left:275.760000pt;}
.x1a_c01024{left:280.080000pt;}
.x64_c01024{left:281.760000pt;}
.xb_c01024{left:285.600000pt;}
.x27_c01024{left:287.538667pt;}
.x42_c01024{left:288.960000pt;}
.x30_c01024{left:290.406224pt;}
.x76_c01024{left:291.840000pt;}
.x34_c01024{left:297.840000pt;}
.x2c_c01024{left:299.286411pt;}
.x23_c01024{left:300.480000pt;}
.x65_c01024{left:302.400000pt;}
.x1b_c01024{left:303.360000pt;}
.x53_c01024{left:304.320000pt;}
.x28_c01024{left:306.608000pt;}
.x31_c01024{left:309.849845pt;}
.x39_c01024{left:315.120000pt;}
.x2d_c01024{left:316.809408pt;}
.x35_c01024{left:318.240000pt;}
.x24_c01024{left:322.320000pt;}
.x82_c01024{left:323.280000pt;}
.xc_c01024{left:325.200000pt;}
.x32_c01024{left:326.652627pt;}
.x6b_c01024{left:328.080000pt;}
.x29_c01024{left:329.522667pt;}
.x7d_c01024{left:332.640000pt;}
.x5e_c01024{left:341.280000pt;}
.x25_c01024{left:342.720000pt;}
.xd_c01024{left:345.120000pt;}
.x43_c01024{left:347.040000pt;}
.x1c_c01024{left:348.480000pt;}
.x11_c01024{left:352.560000pt;}
.x3a_c01024{left:353.760000pt;}
.x77_c01024{left:356.160000pt;}
.x2e_c01024{left:361.457213pt;}
.x6c_c01024{left:362.880000pt;}
.x6_c01024{left:364.329621pt;}
.x12_c01024{left:366.480000pt;}
.x78_c01024{left:376.320000pt;}
.x4d_c01024{left:380.400000pt;}
.x54_c01024{left:382.320000pt;}
.x1d_c01024{left:385.680000pt;}
.x3b_c01024{left:386.640000pt;}
.x66_c01024{left:387.600000pt;}
.x5f_c01024{left:393.120000pt;}
.x7e_c01024{left:395.520000pt;}
.x13_c01024{left:397.680000pt;}
.x49_c01024{left:401.040000pt;}
.x55_c01024{left:413.520000pt;}
.x4_c01024{left:415.026667pt;}
.x3c_c01024{left:418.320000pt;}
.x60_c01024{left:419.280000pt;}
.x83_c01024{left:420.480000pt;}
.x4e_c01024{left:422.640000pt;}
.x1e_c01024{left:431.520000pt;}
.x79_c01024{left:432.720000pt;}
.x7f_c01024{left:435.360000pt;}
.x84_c01024{left:442.080000pt;}
.x4f_c01024{left:448.320000pt;}
.x14_c01024{left:451.440000pt;}
.x3d_c01024{left:454.800000pt;}
.x85_c01024{left:457.200000pt;}
.x67_c01024{left:461.040000pt;}
.x61_c01024{left:463.920000pt;}
.x1f_c01024{left:468.480000pt;}
.x56_c01024{left:473.280000pt;}
.x15_c01024{left:476.160000pt;}
.x7_c01024{left:496.094059pt;}
.x86_c01024{left:498.480000pt;}
.x57_c01024{left:503.520000pt;}
.x62_c01024{left:505.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_c01025 {
    display:none;
  }
  .loading-indicator_c01025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01025 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01025 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01025" -> "#page-container .classname_c01025")
 */
.pf_c01025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01025 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01025 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01025 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01025 {overflow:visible;}
  }
}
.c_c01025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01025 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01025:after { /* webkit #35443 */
  content: '';
}
.t_c01025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01025 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01025 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01025 { /* info for Javascript */
  display:none;
}
.l_c01025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c01025{transform:matrix(0.007670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007670,0.000000,0.000000,0.250000,0,0);}
.m7c_c01025{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);}
.m36_c01025{transform:matrix(0.011019,0.000121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011019,0.000121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011019,0.000121,-0.002750,0.249985,0,0);}
.m98_c01025{transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011784,0.000118,-0.002500,0.249988,0,0);}
.m71_c01025{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);}
.m42_c01025{transform:matrix(0.013554,0.000149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.013554,0.000149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.013554,0.000149,-0.002750,0.249985,0,0);}
.m7b_c01025{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);}
.m5e_c01025{transform:matrix(0.018633,0.000279,-0.003750,0.249972,0,0);-ms-transform:matrix(0.018633,0.000279,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.018633,0.000279,-0.003750,0.249972,0,0);}
.mc_c01025{transform:matrix(0.020779,0.000145,-0.001750,0.249994,0,0);-ms-transform:matrix(0.020779,0.000145,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.020779,0.000145,-0.001750,0.249994,0,0);}
.m22_c01025{transform:matrix(0.024214,0.000266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.024214,0.000266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.024214,0.000266,-0.002750,0.249985,0,0);}
.m43_c01025{transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.087950,0.000967,-0.002750,0.249985,0,0);}
.m1b_c01025{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);}
.m40_c01025{transform:matrix(0.099954,0.001099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.099954,0.001099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.099954,0.001099,-0.002750,0.249985,0,0);}
.m2c_c01025{transform:matrix(0.109848,0.001208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.109848,0.001208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.109848,0.001208,-0.002750,0.249985,0,0);}
.mb_c01025{transform:matrix(0.110507,0.000774,-0.001750,0.249994,0,0);-ms-transform:matrix(0.110507,0.000774,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.110507,0.000774,-0.001750,0.249994,0,0);}
.m80_c01025{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);}
.m64_c01025{transform:matrix(0.148238,0.002224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148238,0.002224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148238,0.002224,-0.003750,0.249972,0,0);}
.m90_c01025{transform:matrix(0.149333,0.001493,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149333,0.001493,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149333,0.001493,-0.002500,0.249988,0,0);}
.ma5_c01025{transform:matrix(0.151192,0.001512,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151192,0.001512,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151192,0.001512,-0.002500,0.249988,0,0);}
.m4b_c01025{transform:matrix(0.153811,0.001692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153811,0.001692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153811,0.001692,-0.002750,0.249985,0,0);}
.m46_c01025{transform:matrix(0.156001,0.001716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156001,0.001716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156001,0.001716,-0.002750,0.249985,0,0);}
.m49_c01025{transform:matrix(0.159930,0.001759,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159930,0.001759,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159930,0.001759,-0.002750,0.249985,0,0);}
.me_c01025{transform:matrix(0.160131,0.001121,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160131,0.001121,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160131,0.001121,-0.001750,0.249994,0,0);}
.ma4_c01025{transform:matrix(0.160567,0.001606,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160567,0.001606,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160567,0.001606,-0.002500,0.249988,0,0);}
.m48_c01025{transform:matrix(0.162195,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162195,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162195,0.001784,-0.002750,0.249985,0,0);}
.m19_c01025{transform:matrix(0.165871,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165871,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165871,0.001161,-0.001750,0.249994,0,0);}
.m1e_c01025{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);}
.m78_c01025{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);}
.m14_c01025{transform:matrix(0.167471,0.001172,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167471,0.001172,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167471,0.001172,-0.001750,0.249994,0,0);}
.m7a_c01025{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);}
.m8a_c01025{transform:matrix(0.168383,0.001515,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168383,0.001515,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168383,0.001515,-0.002250,0.249990,0,0);}
.m3f_c01025{transform:matrix(0.169415,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169415,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169415,0.001864,-0.002750,0.249985,0,0);}
.m7_c01025{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);}
.m86_c01025{transform:matrix(0.170308,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170308,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170308,0.001533,-0.002250,0.249990,0,0);}
.m63_c01025{transform:matrix(0.171866,0.002578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171866,0.002578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171866,0.002578,-0.003750,0.249972,0,0);}
.m4e_c01025{transform:matrix(0.172076,0.003442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172076,0.003442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172076,0.003442,-0.004999,0.249950,0,0);}
.m6e_c01025{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);}
.m47_c01025{transform:matrix(0.172210,0.001894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172210,0.001894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172210,0.001894,-0.002750,0.249985,0,0);}
.ma8_c01025{transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172581,0.001726,-0.002500,0.249988,0,0);}
.m1d_c01025{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);}
.m38_c01025{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);}
.m1f_c01025{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);}
.m66_c01025{transform:matrix(0.175160,0.002627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175160,0.002627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175160,0.002627,-0.003750,0.249972,0,0);}
.m45_c01025{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);}
.m67_c01025{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);}
.m65_c01025{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);}
.m6f_c01025{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);}
.m62_c01025{transform:matrix(0.179530,0.002693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179530,0.002693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179530,0.002693,-0.003750,0.249972,0,0);}
.m13_c01025{transform:matrix(0.180876,0.001266,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180876,0.001266,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180876,0.001266,-0.001750,0.249994,0,0);}
.ma3_c01025{transform:matrix(0.180881,0.001809,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180881,0.001809,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180881,0.001809,-0.002500,0.249988,0,0);}
.mf_c01025{transform:matrix(0.181256,0.001269,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181256,0.001269,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181256,0.001269,-0.001750,0.249994,0,0);}
.mab_c01025{transform:matrix(0.182411,0.001824,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182411,0.001824,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182411,0.001824,-0.002500,0.249988,0,0);}
.mac_c01025{transform:matrix(0.182486,0.001825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182486,0.001825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182486,0.001825,-0.002500,0.249988,0,0);}
.md_c01025{transform:matrix(0.183136,0.001282,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183136,0.001282,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183136,0.001282,-0.001750,0.249994,0,0);}
.m95_c01025{transform:matrix(0.183466,0.001835,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183466,0.001835,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183466,0.001835,-0.002500,0.249988,0,0);}
.m2b_c01025{transform:matrix(0.184494,0.002029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184494,0.002029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184494,0.002029,-0.002750,0.249985,0,0);}
.m84_c01025{transform:matrix(0.185237,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185237,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185237,0.001667,-0.002250,0.249990,0,0);}
.m91_c01025{transform:matrix(0.186011,0.001860,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186011,0.001860,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186011,0.001860,-0.002500,0.249988,0,0);}
.m79_c01025{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);}
.m82_c01025{transform:matrix(0.186057,0.001675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186057,0.001675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186057,0.001675,-0.002250,0.249990,0,0);}
.m2a_c01025{transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);}
.m77_c01025{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m27_c01025{transform:matrix(0.186609,0.002053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186609,0.002053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186609,0.002053,-0.002750,0.249985,0,0);}
.mae_c01025{transform:matrix(0.186731,0.001867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186731,0.001867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186731,0.001867,-0.002500,0.249988,0,0);}
.m35_c01025{transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);}
.m93_c01025{transform:matrix(0.188301,0.001883,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188301,0.001883,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188301,0.001883,-0.002500,0.249988,0,0);}
.m88_c01025{transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189917,0.001709,-0.002250,0.249990,0,0);}
.m31_c01025{transform:matrix(0.192223,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192223,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192223,0.002114,-0.002750,0.249985,0,0);}
.m9a_c01025{transform:matrix(0.192252,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192252,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192252,0.001730,-0.002250,0.249990,0,0);}
.m20_c01025{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);}
.maf_c01025{transform:matrix(0.193420,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193420,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193420,0.001934,-0.002500,0.249988,0,0);}
.m3e_c01025{transform:matrix(0.194288,0.002137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194288,0.002137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194288,0.002137,-0.002750,0.249985,0,0);}
.m61_c01025{transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);}
.m85_c01025{transform:matrix(0.195612,0.001761,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195612,0.001761,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195612,0.001761,-0.002250,0.249990,0,0);}
.m2f_c01025{transform:matrix(0.196233,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196233,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196233,0.002159,-0.002750,0.249985,0,0);}
.m89_c01025{transform:matrix(0.196812,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196812,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196812,0.001771,-0.002250,0.249990,0,0);}
.m99_c01025{transform:matrix(0.197172,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197172,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197172,0.001775,-0.002250,0.249990,0,0);}
.m87_c01025{transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);}
.m41_c01025{transform:matrix(0.197558,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197558,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197558,0.002173,-0.002750,0.249985,0,0);}
.m76_c01025{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);}
.ma9_c01025{transform:matrix(0.198540,0.001985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198540,0.001985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198540,0.001985,-0.002500,0.249988,0,0);}
.m11_c01025{transform:matrix(0.198840,0.001392,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198840,0.001392,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198840,0.001392,-0.001750,0.249994,0,0);}
.maa_c01025{transform:matrix(0.200070,0.002001,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200070,0.002001,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200070,0.002001,-0.002500,0.249988,0,0);}
.m10_c01025{transform:matrix(0.200525,0.001404,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200525,0.001404,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200525,0.001404,-0.001750,0.249994,0,0);}
.m18_c01025{transform:matrix(0.200965,0.001407,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200965,0.001407,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200965,0.001407,-0.001750,0.249994,0,0);}
.m28_c01025{transform:matrix(0.202818,0.002231,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202818,0.002231,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202818,0.002231,-0.002750,0.249985,0,0);}
.m60_c01025{transform:matrix(0.203902,0.003059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203902,0.003059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203902,0.003059,-0.003750,0.249972,0,0);}
.m3c_c01025{transform:matrix(0.204528,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204528,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204528,0.002250,-0.002750,0.249985,0,0);}
.ma6_c01025{transform:matrix(0.206405,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206405,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206405,0.002064,-0.002500,0.249988,0,0);}
.m8f_c01025{transform:matrix(0.207410,0.002074,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207410,0.002074,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207410,0.002074,-0.002500,0.249988,0,0);}
.m4_c01025{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);}
.m4a_c01025{transform:matrix(0.211067,0.002322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211067,0.002322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211067,0.002322,-0.002750,0.249985,0,0);}
.m32_c01025{transform:matrix(0.214042,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214042,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214042,0.002354,-0.002750,0.249985,0,0);}
.m75_c01025{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);}
.m1c_c01025{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);}
.m3b_c01025{transform:matrix(0.217362,0.002391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217362,0.002391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217362,0.002391,-0.002750,0.249985,0,0);}
.m8e_c01025{transform:matrix(0.218734,0.002187,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218734,0.002187,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218734,0.002187,-0.002500,0.249988,0,0);}
.m8b_c01025{transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218781,0.001969,-0.002250,0.249990,0,0);}
.mad_c01025{transform:matrix(0.220374,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220374,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220374,0.002204,-0.002500,0.249988,0,0);}
.m92_c01025{transform:matrix(0.220894,0.002209,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220894,0.002209,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220894,0.002209,-0.002500,0.249988,0,0);}
.m3d_c01025{transform:matrix(0.223206,0.002455,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223206,0.002455,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223206,0.002455,-0.002750,0.249985,0,0);}
.m17_c01025{transform:matrix(0.228079,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228079,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228079,0.001597,-0.001750,0.249994,0,0);}
.ma7_c01025{transform:matrix(0.230963,0.002310,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230963,0.002310,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230963,0.002310,-0.002500,0.249988,0,0);}
.m9e_c01025{transform:matrix(0.231601,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231601,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231601,0.002084,-0.002250,0.249990,0,0);}
.m26_c01025{transform:matrix(0.232726,0.002560,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232726,0.002560,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232726,0.002560,-0.002750,0.249985,0,0);}
.m7f_c01025{transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);}
.m6d_c01025{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);}
.m6a_c01025{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);}
.m94_c01025{transform:matrix(0.241188,0.002412,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241188,0.002412,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241188,0.002412,-0.002500,0.249988,0,0);}
.m9c_c01025{transform:matrix(0.241850,0.002177,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241850,0.002177,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241850,0.002177,-0.002250,0.249990,0,0);}
.m44_c01025{transform:matrix(0.245155,0.002697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245155,0.002697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245155,0.002697,-0.002750,0.249985,0,0);}
.m9d_c01025{transform:matrix(0.248870,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248870,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248870,0.002240,-0.002250,0.249990,0,0);}
.m33_c01025{transform:matrix(0.250000,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250000,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250000,0.002750,-0.002750,0.249985,0,0);}
.m8d_c01025{transform:matrix(0.250342,0.002503,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250342,0.002503,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250342,0.002503,-0.002500,0.249988,0,0);}
.m81_c01025{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m68_c01025{transform:matrix(0.256276,0.003844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256276,0.003844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256276,0.003844,-0.003750,0.249972,0,0);}
.m39_c01025{transform:matrix(0.256834,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256834,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256834,0.002825,-0.002750,0.249985,0,0);}
.ma2_c01025{transform:matrix(0.257725,0.002320,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257725,0.002320,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257725,0.002320,-0.002250,0.249990,0,0);}
.m5b_c01025{transform:matrix(0.259321,0.003890,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259321,0.003890,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259321,0.003890,-0.003750,0.249972,0,0);}
.m21_c01025{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);}
.m30_c01025{transform:matrix(0.262494,0.002887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262494,0.002887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262494,0.002887,-0.002750,0.249985,0,0);}
.m34_c01025{transform:matrix(0.264714,0.002912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264714,0.002912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264714,0.002912,-0.002750,0.249985,0,0);}
.m9f_c01025{transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);}
.m4c_c01025{transform:matrix(0.266489,0.002931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266489,0.002931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266489,0.002931,-0.002750,0.249985,0,0);}
.ma0_c01025{transform:matrix(0.268504,0.002417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268504,0.002417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268504,0.002417,-0.002250,0.249990,0,0);}
.m9b_c01025{transform:matrix(0.271114,0.002440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271114,0.002440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271114,0.002440,-0.002250,0.249990,0,0);}
.m83_c01025{transform:matrix(0.271159,0.002440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271159,0.002440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271159,0.002440,-0.002250,0.249990,0,0);}
.m51_c01025{transform:matrix(0.277040,0.005541,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277040,0.005541,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277040,0.005541,-0.004999,0.249950,0,0);}
.m4d_c01025{transform:matrix(0.287797,0.005756,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287797,0.005756,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287797,0.005756,-0.004999,0.249950,0,0);}
.m9_c01025{transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288605,0.000000,0.000000,0.250000,0,0);}
.m5d_c01025{transform:matrix(0.289702,0.004346,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289702,0.004346,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289702,0.004346,-0.003750,0.249972,0,0);}
.m23_c01025{transform:matrix(0.289897,0.003189,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289897,0.003189,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289897,0.003189,-0.002750,0.249985,0,0);}
.ma1_c01025{transform:matrix(0.291213,0.002621,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291213,0.002621,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291213,0.002621,-0.002250,0.249990,0,0);}
.m5_c01025{transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301435,0.000000,0.000000,0.250000,0,0);}
.m72_c01025{transform:matrix(0.306810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306810,0.000000,0.000000,0.250000,0,0);}
.m96_c01025{transform:matrix(0.307840,0.003078,-0.002500,0.249988,0,0);-ms-transform:matrix(0.307840,0.003078,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.307840,0.003078,-0.002500,0.249988,0,0);}
.m16_c01025{transform:matrix(0.310637,0.002174,-0.001750,0.249994,0,0);-ms-transform:matrix(0.310637,0.002174,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.310637,0.002174,-0.001750,0.249994,0,0);}
.m29_c01025{transform:matrix(0.321261,0.003534,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321261,0.003534,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321261,0.003534,-0.002750,0.249985,0,0);}
.mb0_c01025{transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);}
.m3a_c01025{transform:matrix(0.324965,0.003575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.324965,0.003575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.324965,0.003575,-0.002750,0.249985,0,0);}
.m4f_c01025{transform:matrix(0.328784,0.006576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.328784,0.006576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.328784,0.006576,-0.004999,0.249950,0,0);}
.m69_c01025{transform:matrix(0.333670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333670,0.000000,0.000000,0.250000,0,0);}
.m8c_c01025{transform:matrix(0.343186,0.003089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.343186,0.003089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.343186,0.003089,-0.002250,0.249990,0,0);}
.m55_c01025{transform:matrix(0.343701,0.006874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.343701,0.006874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.343701,0.006874,-0.004999,0.249950,0,0);}
.m50_c01025{transform:matrix(0.350120,0.007002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.350120,0.007002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.350120,0.007002,-0.004999,0.249950,0,0);}
.m0_c01025{transform:matrix(0.353895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353895,0.000000,0.000000,0.250000,0,0);}
.m5a_c01025{transform:matrix(0.371753,0.005576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.371753,0.005576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.371753,0.005576,-0.003750,0.249972,0,0);}
.m97_c01025{transform:matrix(0.380166,0.003802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.380166,0.003802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.380166,0.003802,-0.002500,0.249988,0,0);}
.m59_c01025{transform:matrix(0.384262,0.005764,-0.003750,0.249972,0,0);-ms-transform:matrix(0.384262,0.005764,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.384262,0.005764,-0.003750,0.249972,0,0);}
.ma_c01025{transform:matrix(0.388200,0.002717,-0.001750,0.249994,0,0);-ms-transform:matrix(0.388200,0.002717,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.388200,0.002717,-0.001750,0.249994,0,0);}
.m2d_c01025{transform:matrix(0.389126,0.004280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.389126,0.004280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.389126,0.004280,-0.002750,0.249985,0,0);}
.m58_c01025{transform:matrix(0.390461,0.005857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.390461,0.005857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.390461,0.005857,-0.003750,0.249972,0,0);}
.m6b_c01025{transform:matrix(0.390755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390755,0.000000,0.000000,0.250000,0,0);}
.m3_c01025{transform:matrix(0.396345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396345,0.000000,0.000000,0.250000,0,0);}
.m57_c01025{transform:matrix(0.398780,0.005982,-0.003750,0.249972,0,0);-ms-transform:matrix(0.398780,0.005982,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.398780,0.005982,-0.003750,0.249972,0,0);}
.m56_c01025{transform:matrix(0.404879,0.008098,-0.004999,0.249950,0,0);-ms-transform:matrix(0.404879,0.008098,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.404879,0.008098,-0.004999,0.249950,0,0);}
.m6_c01025{transform:matrix(0.410090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410090,0.000000,0.000000,0.250000,0,0);}
.m73_c01025{transform:matrix(0.412660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412660,0.000000,0.000000,0.250000,0,0);}
.m70_c01025{transform:matrix(0.414805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414805,0.000000,0.000000,0.250000,0,0);}
.m7e_c01025{transform:matrix(0.415620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415620,0.000000,0.000000,0.250000,0,0);}
.m2e_c01025{transform:matrix(0.423379,0.004657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.423379,0.004657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.423379,0.004657,-0.002750,0.249985,0,0);}
.m74_c01025{transform:matrix(0.426220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426220,0.000000,0.000000,0.250000,0,0);}
.m15_c01025{transform:matrix(0.428589,0.003000,-0.001750,0.249994,0,0);-ms-transform:matrix(0.428589,0.003000,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.428589,0.003000,-0.001750,0.249994,0,0);}
.m5c_c01025{transform:matrix(0.432006,0.006480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.432006,0.006480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.432006,0.006480,-0.003750,0.249972,0,0);}
.m24_c01025{transform:matrix(0.474046,0.005215,-0.002750,0.249985,0,0);-ms-transform:matrix(0.474046,0.005215,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.474046,0.005215,-0.002750,0.249985,0,0);}
.m2_c01025{transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);}
.m53_c01025{transform:matrix(0.502275,0.010045,-0.004999,0.249950,0,0);-ms-transform:matrix(0.502275,0.010045,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.502275,0.010045,-0.004999,0.249950,0,0);}
.m1_c01025{transform:matrix(0.507135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507135,0.000000,0.000000,0.250000,0,0);}
.m54_c01025{transform:matrix(0.522296,0.010446,-0.004999,0.249950,0,0);-ms-transform:matrix(0.522296,0.010446,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.522296,0.010446,-0.004999,0.249950,0,0);}
.m12_c01025{transform:matrix(0.559151,0.003914,-0.001750,0.249994,0,0);-ms-transform:matrix(0.559151,0.003914,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.559151,0.003914,-0.001750,0.249994,0,0);}
.m25_c01025{transform:matrix(0.601454,0.006616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.601454,0.006616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.601454,0.006616,-0.002750,0.249985,0,0);}
.m37_c01025{transform:matrix(0.622867,0.006852,-0.002750,0.249985,0,0);-ms-transform:matrix(0.622867,0.006852,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.622867,0.006852,-0.002750,0.249985,0,0);}
.m1a_c01025{transform:matrix(0.665515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665515,0.000000,0.000000,0.250000,0,0);}
.m52_c01025{transform:matrix(0.665787,0.013316,-0.004999,0.249950,0,0);-ms-transform:matrix(0.665787,0.013316,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.665787,0.013316,-0.004999,0.249950,0,0);}
.m6c_c01025{transform:matrix(0.825280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825280,0.000000,0.000000,0.250000,0,0);}
.m5f_c01025{transform:matrix(0.834396,0.012516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.834396,0.012516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.834396,0.012516,-0.003750,0.249972,0,0);}
.m7d_c01025{transform:matrix(0.871675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.871675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.871675,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls0_c01025{letter-spacing:0.000000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:0.000000px;}
.fc0_c01025{color:transparent;}
.fsf_c01025{font-size:37.807559px;}
.fs1_c01025{font-size:39.900000px;}
.fsb_c01025{font-size:63.003811px;}
.fs18_c01025{font-size:65.103255px;}
.fs16_c01025{font-size:68.252764px;}
.fs6_c01025{font-size:69.300000px;}
.fs8_c01025{font-size:69.304193px;}
.fs17_c01025{font-size:70.353517px;}
.fs13_c01025{font-size:71.400000px;}
.fs14_c01025{font-size:71.402892px;}
.fs7_c01025{font-size:71.404320px;}
.fs11_c01025{font-size:71.408032px;}
.fs12_c01025{font-size:72.450000px;}
.fs15_c01025{font-size:72.453622px;}
.fsc_c01025{font-size:72.454383px;}
.fs10_c01025{font-size:72.458150px;}
.fs5_c01025{font-size:73.501801px;}
.fsd_c01025{font-size:88.217638px;}
.fse_c01025{font-size:90.318058px;}
.fs19_c01025{font-size:91.350000px;}
.fs9_c01025{font-size:99.756035px;}
.fsa_c01025{font-size:100.806098px;}
.fs3_c01025{font-size:107.100000px;}
.fs4_c01025{font-size:111.300000px;}
.fs2_c01025{font-size:137.550000px;}
.fs0_c01025{font-size:228.900000px;}
.y0_c01025{bottom:0.000000px;}
.y97_c01025{bottom:154.150500px;}
.y96_c01025{bottom:177.664350px;}
.y95_c01025{bottom:178.260990px;}
.y94_c01025{bottom:178.535775px;}
.y93_c01025{bottom:178.984440px;}
.y92_c01025{bottom:179.473410px;}
.y91_c01025{bottom:179.902095px;}
.y90_c01025{bottom:180.361500px;}
.y8f_c01025{bottom:201.168120px;}
.y8e_c01025{bottom:201.416610px;}
.y8d_c01025{bottom:202.058310px;}
.y8c_c01025{bottom:202.352520px;}
.y8b_c01025{bottom:203.122575px;}
.y8a_c01025{bottom:203.581500px;}
.y89_c01025{bottom:222.786384px;}
.y88_c01025{bottom:223.005125px;}
.y87_c01025{bottom:223.352682px;}
.y86_c01025{bottom:223.694813px;}
.y85_c01025{bottom:223.910961px;}
.y84_c01025{bottom:224.088500px;}
.y83_c01025{bottom:224.560028px;}
.y82_c01025{bottom:224.759585px;}
.y81_c01025{bottom:225.208851px;}
.y80_c01025{bottom:225.721500px;}
.y7f_c01025{bottom:242.794305px;}
.y7e_c01025{bottom:247.057590px;}
.y7d_c01025{bottom:268.389030px;}
.y7c_c01025{bottom:268.807155px;}
.y7b_c01025{bottom:269.010180px;}
.y7a_c01025{bottom:269.523285px;}
.y79_c01025{bottom:269.950245px;}
.y78_c01025{bottom:270.356925px;}
.y77_c01025{bottom:270.724725px;}
.y76_c01025{bottom:271.213350px;}
.y75_c01025{bottom:271.594440px;}
.y74_c01025{bottom:271.891500px;}
.y73_c01025{bottom:290.697363px;}
.y72_c01025{bottom:291.321590px;}
.y71_c01025{bottom:291.810047px;}
.y70_c01025{bottom:292.332497px;}
.y6f_c01025{bottom:292.587593px;}
.y6e_c01025{bottom:293.024993px;}
.y6d_c01025{bottom:293.282208px;}
.y6c_c01025{bottom:293.668983px;}
.y6b_c01025{bottom:294.150164px;}
.y6a_c01025{bottom:294.371267px;}
.y69_c01025{bottom:294.570000px;}
.y68_c01025{bottom:314.100000px;}
.y67_c01025{bottom:314.386500px;}
.y66_c01025{bottom:314.691000px;}
.y65_c01025{bottom:316.042500px;}
.y64_c01025{bottom:317.251500px;}
.y63_c01025{bottom:338.464500px;}
.y62_c01025{bottom:360.784500px;}
.y61_c01025{bottom:362.880000px;}
.y60_c01025{bottom:377.653500px;}
.y5f_c01025{bottom:385.114500px;}
.y5e_c01025{bottom:404.586000px;}
.y5d_c01025{bottom:430.311045px;}
.y5c_c01025{bottom:430.311060px;}
.y5a_c01025{bottom:430.311675px;}
.y5b_c01025{bottom:430.311765px;}
.y59_c01025{bottom:430.312080px;}
.y58_c01025{bottom:430.312162px;}
.y57_c01025{bottom:430.312545px;}
.y54_c01025{bottom:430.312830px;}
.y56_c01025{bottom:430.313227px;}
.y55_c01025{bottom:430.313437px;}
.y53_c01025{bottom:450.345757px;}
.y52_c01025{bottom:451.932705px;}
.y51_c01025{bottom:452.277157px;}
.y50_c01025{bottom:452.455470px;}
.y4f_c01025{bottom:452.762685px;}
.y4e_c01025{bottom:452.998170px;}
.y4d_c01025{bottom:453.293910px;}
.y4c_c01025{bottom:453.618000px;}
.y4b_c01025{bottom:454.797690px;}
.y4a_c01025{bottom:491.950410px;}
.y49_c01025{bottom:493.021890px;}
.y48_c01025{bottom:494.963040px;}
.y47_c01025{bottom:495.983580px;}
.y46_c01025{bottom:531.911070px;}
.y45_c01025{bottom:533.379150px;}
.y44_c01025{bottom:534.497040px;}
.y43_c01025{bottom:535.053030px;}
.y42_c01025{bottom:538.927500px;}
.y40_c01025{bottom:599.448800px;}
.y38_c01025{bottom:599.449002px;}
.y3a_c01025{bottom:599.449028px;}
.y41_c01025{bottom:599.449102px;}
.y39_c01025{bottom:599.449131px;}
.y3f_c01025{bottom:599.449203px;}
.y3b_c01025{bottom:599.449211px;}
.y3e_c01025{bottom:599.449320px;}
.y3c_c01025{bottom:599.449737px;}
.y3d_c01025{bottom:599.449754px;}
.y37_c01025{bottom:622.237682px;}
.y36_c01025{bottom:622.237962px;}
.y35_c01025{bottom:622.238005px;}
.y33_c01025{bottom:622.238390px;}
.y32_c01025{bottom:622.238520px;}
.y34_c01025{bottom:622.238529px;}
.y30_c01025{bottom:622.238591px;}
.y31_c01025{bottom:622.238684px;}
.y2c_c01025{bottom:645.889662px;}
.y2d_c01025{bottom:645.890175px;}
.y2f_c01025{bottom:645.890470px;}
.y2e_c01025{bottom:645.890825px;}
.y29_c01025{bottom:667.670877px;}
.y2b_c01025{bottom:667.670903px;}
.y23_c01025{bottom:667.671268px;}
.y28_c01025{bottom:667.671311px;}
.y2a_c01025{bottom:667.671423px;}
.y24_c01025{bottom:667.671662px;}
.y27_c01025{bottom:667.671894px;}
.y25_c01025{bottom:667.671905px;}
.y26_c01025{bottom:667.672448px;}
.y21_c01025{bottom:690.305991px;}
.y22_c01025{bottom:690.306406px;}
.y1c_c01025{bottom:713.128479px;}
.y1b_c01025{bottom:713.128746px;}
.y1d_c01025{bottom:713.129129px;}
.y1a_c01025{bottom:713.129387px;}
.y1e_c01025{bottom:713.129825px;}
.y1f_c01025{bottom:713.130291px;}
.y20_c01025{bottom:713.130414px;}
.y19_c01025{bottom:736.683542px;}
.y18_c01025{bottom:739.077312px;}
.y17_c01025{bottom:739.260000px;}
.y16_c01025{bottom:758.358000px;}
.y15_c01025{bottom:781.014259px;}
.y14_c01025{bottom:781.165702px;}
.y13_c01025{bottom:781.662102px;}
.y12_c01025{bottom:781.987845px;}
.y11_c01025{bottom:783.540906px;}
.y10_c01025{bottom:808.057444px;}
.yf_c01025{bottom:808.263475px;}
.ye_c01025{bottom:808.696275px;}
.yd_c01025{bottom:808.911514px;}
.yc_c01025{bottom:809.214135px;}
.yb_c01025{bottom:809.586454px;}
.ya_c01025{bottom:809.989024px;}
.y9_c01025{bottom:810.304644px;}
.y8_c01025{bottom:810.379677px;}
.y7_c01025{bottom:810.621922px;}
.y6_c01025{bottom:810.811500px;}
.y5_c01025{bottom:837.076500px;}
.y4_c01025{bottom:859.680000px;}
.y3_c01025{bottom:884.064000px;}
.y2_c01025{bottom:908.820000px;}
.y1_c01025{bottom:925.768500px;}
.h11_c01025{height:37.807559px;}
.h3_c01025{height:39.900000px;}
.hd_c01025{height:63.003811px;}
.h1a_c01025{height:65.103255px;}
.h18_c01025{height:68.252764px;}
.h8_c01025{height:69.300000px;}
.ha_c01025{height:69.304193px;}
.h19_c01025{height:70.353517px;}
.h15_c01025{height:71.400000px;}
.h16_c01025{height:71.402892px;}
.h9_c01025{height:71.404320px;}
.h13_c01025{height:71.408032px;}
.h14_c01025{height:72.450000px;}
.h17_c01025{height:72.453622px;}
.he_c01025{height:72.454383px;}
.h12_c01025{height:72.458150px;}
.h7_c01025{height:73.501801px;}
.hf_c01025{height:88.217638px;}
.h10_c01025{height:90.318058px;}
.h1b_c01025{height:91.350000px;}
.hb_c01025{height:99.756035px;}
.hc_c01025{height:100.806098px;}
.h5_c01025{height:107.100000px;}
.h6_c01025{height:111.300000px;}
.h4_c01025{height:137.550000px;}
.h2_c01025{height:228.900000px;}
.h0_c01025{height:1008.450000px;}
.h1_c01025{height:1008.750000px;}
.w1_c01025{width:700.500000px;}
.w0_c01025{width:700.650000px;}
.x0_c01025{left:0.000000px;}
.x51_c01025{left:64.260000px;}
.x1d_c01025{left:66.948000px;}
.x53_c01025{left:74.520000px;}
.x3d_c01025{left:75.799500px;}
.x1f_c01025{left:77.490374px;}
.x9_c01025{left:80.323500px;}
.x1_c01025{left:82.350000px;}
.x2_c01025{left:83.430000px;}
.x5_c01025{left:88.290000px;}
.x25_c01025{left:94.230420px;}
.xa_c01025{left:107.406000px;}
.x17_c01025{left:126.360000px;}
.x2c_c01025{left:135.004290px;}
.xb_c01025{left:142.012500px;}
.x54_c01025{left:147.960000px;}
.x26_c01025{left:151.474350px;}
.xc_c01025{left:152.731500px;}
.x71_c01025{left:162.142500px;}
.x4a_c01025{left:164.683148px;}
.x41_c01025{left:168.230520px;}
.x57_c01025{left:184.410000px;}
.x6_c01025{left:188.190000px;}
.x20_c01025{left:190.086486px;}
.x2f_c01025{left:191.977548px;}
.x27_c01025{left:193.866482px;}
.xd_c01025{left:197.820000px;}
.x58_c01025{left:204.390000px;}
.x72_c01025{left:208.083000px;}
.x56_c01025{left:210.060000px;}
.x18_c01025{left:214.650000px;}
.x30_c01025{left:217.359117px;}
.x55_c01025{left:220.050000px;}
.x2d_c01025{left:221.410251px;}
.x5b_c01025{left:225.346500px;}
.x65_c01025{left:232.345500px;}
.x52_c01025{left:235.980000px;}
.x28_c01025{left:238.958943px;}
.x3_c01025{left:241.650000px;}
.x36_c01025{left:243.010568px;}
.x19_c01025{left:244.350000px;}
.x24_c01025{left:245.439670px;}
.x73_c01025{left:250.951500px;}
.xe_c01025{left:255.330000px;}
.x4b_c01025{left:259.463955px;}
.x1a_c01025{left:262.980000px;}
.x3e_c01025{left:269.523000px;}
.x6b_c01025{left:270.927000px;}
.x14_c01025{left:275.296298px;}
.x7_c01025{left:280.530000px;}
.x31_c01025{left:283.242587px;}
.x5f_c01025{left:285.054000px;}
.x6f_c01025{left:287.743500px;}
.x6c_c01025{left:293.100000px;}
.x69_c01025{left:296.136345px;}
.x37_c01025{left:297.282635px;}
.x74_c01025{left:299.848500px;}
.x1e_c01025{left:301.171500px;}
.x4c_c01025{left:302.399108px;}
.x44_c01025{left:306.327000px;}
.xf_c01025{left:308.518500px;}
.x60_c01025{left:313.633500px;}
.x15_c01025{left:316.045014px;}
.x66_c01025{left:317.988000px;}
.x1b_c01025{left:320.220000px;}
.x2e_c01025{left:325.636857px;}
.x8_c01025{left:327.510000px;}
.x38_c01025{left:328.874963px;}
.x29_c01025{left:332.385729px;}
.x4d_c01025{left:338.312685px;}
.x42_c01025{left:344.669760px;}
.x45_c01025{left:347.649000px;}
.x10_c01025{left:351.750000px;}
.x3f_c01025{left:353.217000px;}
.x39_c01025{left:355.876730px;}
.x67_c01025{left:358.656000px;}
.x21_c01025{left:363.166941px;}
.x32_c01025{left:365.057987px;}
.x75_c01025{left:372.193500px;}
.x4_c01025{left:377.190000px;}
.x1c_c01025{left:378.270000px;}
.x22_c01025{left:380.717569px;}
.x11_c01025{left:382.498500px;}
.x46_c01025{left:383.829000px;}
.x6d_c01025{left:389.235000px;}
.x61_c01025{left:390.577500px;}
.x3a_c01025{left:392.329635px;}
.x5c_c01025{left:394.360500px;}
.x47_c01025{left:395.716500px;}
.x16_c01025{left:397.021947px;}
.x33_c01025{left:400.700793px;}
.x70_c01025{left:406.183500px;}
.x34_c01025{left:413.660861px;}
.x48_c01025{left:418.680000px;}
.x4e_c01025{left:421.752450px;}
.x59_c01025{left:422.820000px;}
.x40_c01025{left:426.621000px;}
.x2a_c01025{left:431.211692px;}
.x5d_c01025{left:432.469500px;}
.x23_c01025{left:435.531203px;}
.x43_c01025{left:442.136310px;}
.x12_c01025{left:444.327000px;}
.x62_c01025{left:448.627500px;}
.x4f_c01025{left:452.806425px;}
.x3b_c01025{left:454.702676px;}
.x6a_c01025{left:460.088610px;}
.x6e_c01025{left:465.867000px;}
.x5e_c01025{left:468.339000px;}
.x13_c01025{left:473.760000px;}
.x35_c01025{left:478.194165px;}
.x76_c01025{left:486.270000px;}
.x5a_c01025{left:490.590000px;}
.x3c_c01025{left:497.634873px;}
.x63_c01025{left:502.900500px;}
.x2b_c01025{left:507.086366px;}
.x68_c01025{left:514.777500px;}
.x49_c01025{left:524.476500px;}
.x50_c01025{left:526.524008px;}
.x64_c01025{left:572.259000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ws0_c01025{word-spacing:0.000000pt;}
.fsf_c01025{font-size:33.606719pt;}
.fs1_c01025{font-size:35.466667pt;}
.fsb_c01025{font-size:56.003388pt;}
.fs18_c01025{font-size:57.869560pt;}
.fs16_c01025{font-size:60.669124pt;}
.fs6_c01025{font-size:61.600000pt;}
.fs8_c01025{font-size:61.603727pt;}
.fs17_c01025{font-size:62.536460pt;}
.fs13_c01025{font-size:63.466667pt;}
.fs14_c01025{font-size:63.469237pt;}
.fs7_c01025{font-size:63.470506pt;}
.fs11_c01025{font-size:63.473806pt;}
.fs12_c01025{font-size:64.400000pt;}
.fs15_c01025{font-size:64.403220pt;}
.fsc_c01025{font-size:64.403896pt;}
.fs10_c01025{font-size:64.407245pt;}
.fs5_c01025{font-size:65.334934pt;}
.fsd_c01025{font-size:78.415678pt;}
.fse_c01025{font-size:80.282718pt;}
.fs19_c01025{font-size:81.200000pt;}
.fs9_c01025{font-size:88.672031pt;}
.fsa_c01025{font-size:89.605421pt;}
.fs3_c01025{font-size:95.200000pt;}
.fs4_c01025{font-size:98.933333pt;}
.fs2_c01025{font-size:122.266667pt;}
.fs0_c01025{font-size:203.466667pt;}
.y0_c01025{bottom:0.000000pt;}
.y97_c01025{bottom:137.022667pt;}
.y96_c01025{bottom:157.923867pt;}
.y95_c01025{bottom:158.454213pt;}
.y94_c01025{bottom:158.698467pt;}
.y93_c01025{bottom:159.097280pt;}
.y92_c01025{bottom:159.531920pt;}
.y91_c01025{bottom:159.912973pt;}
.y90_c01025{bottom:160.321333pt;}
.y8f_c01025{bottom:178.816107pt;}
.y8e_c01025{bottom:179.036987pt;}
.y8d_c01025{bottom:179.607387pt;}
.y8c_c01025{bottom:179.868907pt;}
.y8b_c01025{bottom:180.553400pt;}
.y8a_c01025{bottom:180.961333pt;}
.y89_c01025{bottom:198.032341pt;}
.y88_c01025{bottom:198.226777pt;}
.y87_c01025{bottom:198.535717pt;}
.y86_c01025{bottom:198.839833pt;}
.y85_c01025{bottom:199.031965pt;}
.y84_c01025{bottom:199.189777pt;}
.y83_c01025{bottom:199.608913pt;}
.y82_c01025{bottom:199.786297pt;}
.y81_c01025{bottom:200.185645pt;}
.y80_c01025{bottom:200.641333pt;}
.y7f_c01025{bottom:215.817160pt;}
.y7e_c01025{bottom:219.606747pt;}
.y7d_c01025{bottom:238.568027pt;}
.y7c_c01025{bottom:238.939693pt;}
.y7b_c01025{bottom:239.120160pt;}
.y7a_c01025{bottom:239.576253pt;}
.y79_c01025{bottom:239.955773pt;}
.y78_c01025{bottom:240.317267pt;}
.y77_c01025{bottom:240.644200pt;}
.y76_c01025{bottom:241.078533pt;}
.y75_c01025{bottom:241.417280pt;}
.y74_c01025{bottom:241.681333pt;}
.y73_c01025{bottom:258.397656pt;}
.y72_c01025{bottom:258.952524pt;}
.y71_c01025{bottom:259.386708pt;}
.y70_c01025{bottom:259.851108pt;}
.y6f_c01025{bottom:260.077860pt;}
.y6e_c01025{bottom:260.466660pt;}
.y6d_c01025{bottom:260.695296pt;}
.y6c_c01025{bottom:261.039096pt;}
.y6b_c01025{bottom:261.466812pt;}
.y6a_c01025{bottom:261.663348pt;}
.y69_c01025{bottom:261.840000pt;}
.y68_c01025{bottom:279.200000pt;}
.y67_c01025{bottom:279.454667pt;}
.y66_c01025{bottom:279.725333pt;}
.y65_c01025{bottom:280.926667pt;}
.y64_c01025{bottom:282.001333pt;}
.y63_c01025{bottom:300.857333pt;}
.y62_c01025{bottom:320.697333pt;}
.y61_c01025{bottom:322.560000pt;}
.y60_c01025{bottom:335.692000pt;}
.y5f_c01025{bottom:342.324000pt;}
.y5e_c01025{bottom:359.632000pt;}
.y5d_c01025{bottom:382.498707pt;}
.y5c_c01025{bottom:382.498720pt;}
.y5a_c01025{bottom:382.499267pt;}
.y5b_c01025{bottom:382.499347pt;}
.y59_c01025{bottom:382.499627pt;}
.y58_c01025{bottom:382.499700pt;}
.y57_c01025{bottom:382.500040pt;}
.y54_c01025{bottom:382.500293pt;}
.y56_c01025{bottom:382.500647pt;}
.y55_c01025{bottom:382.500833pt;}
.y53_c01025{bottom:400.307340pt;}
.y52_c01025{bottom:401.717960pt;}
.y51_c01025{bottom:402.024140pt;}
.y50_c01025{bottom:402.182640pt;}
.y4f_c01025{bottom:402.455720pt;}
.y4e_c01025{bottom:402.665040pt;}
.y4d_c01025{bottom:402.927920pt;}
.y4c_c01025{bottom:403.216000pt;}
.y4b_c01025{bottom:404.264613pt;}
.y4a_c01025{bottom:437.289253pt;}
.y49_c01025{bottom:438.241680pt;}
.y48_c01025{bottom:439.967147pt;}
.y47_c01025{bottom:440.874293pt;}
.y46_c01025{bottom:472.809840pt;}
.y45_c01025{bottom:474.114800pt;}
.y44_c01025{bottom:475.108480pt;}
.y43_c01025{bottom:475.602693pt;}
.y42_c01025{bottom:479.046667pt;}
.y40_c01025{bottom:532.843377pt;}
.y38_c01025{bottom:532.843557pt;}
.y3a_c01025{bottom:532.843580pt;}
.y41_c01025{bottom:532.843647pt;}
.y39_c01025{bottom:532.843672pt;}
.y3f_c01025{bottom:532.843736pt;}
.y3b_c01025{bottom:532.843743pt;}
.y3e_c01025{bottom:532.843840pt;}
.y3c_c01025{bottom:532.844211pt;}
.y3d_c01025{bottom:532.844225pt;}
.y37_c01025{bottom:553.100161pt;}
.y36_c01025{bottom:553.100411pt;}
.y35_c01025{bottom:553.100449pt;}
.y33_c01025{bottom:553.100791pt;}
.y32_c01025{bottom:553.100907pt;}
.y34_c01025{bottom:553.100915pt;}
.y30_c01025{bottom:553.100969pt;}
.y31_c01025{bottom:553.101052pt;}
.y2c_c01025{bottom:574.124144pt;}
.y2d_c01025{bottom:574.124600pt;}
.y2f_c01025{bottom:574.124863pt;}
.y2e_c01025{bottom:574.125177pt;}
.y29_c01025{bottom:593.485224pt;}
.y2b_c01025{bottom:593.485247pt;}
.y23_c01025{bottom:593.485572pt;}
.y28_c01025{bottom:593.485609pt;}
.y2a_c01025{bottom:593.485709pt;}
.y24_c01025{bottom:593.485921pt;}
.y27_c01025{bottom:593.486128pt;}
.y25_c01025{bottom:593.486137pt;}
.y26_c01025{bottom:593.486620pt;}
.y21_c01025{bottom:613.605325pt;}
.y22_c01025{bottom:613.605695pt;}
.y1c_c01025{bottom:633.891981pt;}
.y1b_c01025{bottom:633.892219pt;}
.y1d_c01025{bottom:633.892559pt;}
.y1a_c01025{bottom:633.892788pt;}
.y1e_c01025{bottom:633.893177pt;}
.y1f_c01025{bottom:633.893592pt;}
.y20_c01025{bottom:633.893701pt;}
.y19_c01025{bottom:654.829815pt;}
.y18_c01025{bottom:656.957611pt;}
.y17_c01025{bottom:657.120000pt;}
.y16_c01025{bottom:674.096000pt;}
.y15_c01025{bottom:694.234897pt;}
.y14_c01025{bottom:694.369513pt;}
.y13_c01025{bottom:694.810757pt;}
.y12_c01025{bottom:695.100307pt;}
.y11_c01025{bottom:696.480805pt;}
.y10_c01025{bottom:718.273284pt;}
.yf_c01025{bottom:718.456423pt;}
.ye_c01025{bottom:718.841133pt;}
.yd_c01025{bottom:719.032457pt;}
.yc_c01025{bottom:719.301453pt;}
.yb_c01025{bottom:719.632404pt;}
.ya_c01025{bottom:719.990244pt;}
.y9_c01025{bottom:720.270795pt;}
.y8_c01025{bottom:720.337491pt;}
.y7_c01025{bottom:720.552820pt;}
.y6_c01025{bottom:720.721333pt;}
.y5_c01025{bottom:744.068000pt;}
.y4_c01025{bottom:764.160000pt;}
.y3_c01025{bottom:785.834667pt;}
.y2_c01025{bottom:807.840000pt;}
.y1_c01025{bottom:822.905333pt;}
.h11_c01025{height:33.606719pt;}
.h3_c01025{height:35.466667pt;}
.hd_c01025{height:56.003388pt;}
.h1a_c01025{height:57.869560pt;}
.h18_c01025{height:60.669124pt;}
.h8_c01025{height:61.600000pt;}
.ha_c01025{height:61.603727pt;}
.h19_c01025{height:62.536460pt;}
.h15_c01025{height:63.466667pt;}
.h16_c01025{height:63.469237pt;}
.h9_c01025{height:63.470506pt;}
.h13_c01025{height:63.473806pt;}
.h14_c01025{height:64.400000pt;}
.h17_c01025{height:64.403220pt;}
.he_c01025{height:64.403896pt;}
.h12_c01025{height:64.407245pt;}
.h7_c01025{height:65.334934pt;}
.hf_c01025{height:78.415678pt;}
.h10_c01025{height:80.282718pt;}
.h1b_c01025{height:81.200000pt;}
.hb_c01025{height:88.672031pt;}
.hc_c01025{height:89.605421pt;}
.h5_c01025{height:95.200000pt;}
.h6_c01025{height:98.933333pt;}
.h4_c01025{height:122.266667pt;}
.h2_c01025{height:203.466667pt;}
.h0_c01025{height:896.400000pt;}
.h1_c01025{height:896.666667pt;}
.w1_c01025{width:622.666667pt;}
.w0_c01025{width:622.800000pt;}
.x0_c01025{left:0.000000pt;}
.x51_c01025{left:57.120000pt;}
.x1d_c01025{left:59.509333pt;}
.x53_c01025{left:66.240000pt;}
.x3d_c01025{left:67.377333pt;}
.x1f_c01025{left:68.880332pt;}
.x9_c01025{left:71.398667pt;}
.x1_c01025{left:73.200000pt;}
.x2_c01025{left:74.160000pt;}
.x5_c01025{left:78.480000pt;}
.x25_c01025{left:83.760373pt;}
.xa_c01025{left:95.472000pt;}
.x17_c01025{left:112.320000pt;}
.x2c_c01025{left:120.003813pt;}
.xb_c01025{left:126.233333pt;}
.x54_c01025{left:131.520000pt;}
.x26_c01025{left:134.643867pt;}
.xc_c01025{left:135.761333pt;}
.x71_c01025{left:144.126667pt;}
.x4a_c01025{left:146.385020pt;}
.x41_c01025{left:149.538240pt;}
.x57_c01025{left:163.920000pt;}
.x6_c01025{left:167.280000pt;}
.x20_c01025{left:168.965765pt;}
.x2f_c01025{left:170.646709pt;}
.x27_c01025{left:172.325761pt;}
.xd_c01025{left:175.840000pt;}
.x58_c01025{left:181.680000pt;}
.x72_c01025{left:184.962667pt;}
.x56_c01025{left:186.720000pt;}
.x18_c01025{left:190.800000pt;}
.x30_c01025{left:193.208104pt;}
.x55_c01025{left:195.600000pt;}
.x2d_c01025{left:196.809112pt;}
.x5b_c01025{left:200.308000pt;}
.x65_c01025{left:206.529333pt;}
.x52_c01025{left:209.760000pt;}
.x28_c01025{left:212.407949pt;}
.x3_c01025{left:214.800000pt;}
.x36_c01025{left:216.009393pt;}
.x19_c01025{left:217.200000pt;}
.x24_c01025{left:218.168596pt;}
.x73_c01025{left:223.068000pt;}
.xe_c01025{left:226.960000pt;}
.x4b_c01025{left:230.634627pt;}
.x1a_c01025{left:233.760000pt;}
.x3e_c01025{left:239.576000pt;}
.x6b_c01025{left:240.824000pt;}
.x14_c01025{left:244.707820pt;}
.x7_c01025{left:249.360000pt;}
.x31_c01025{left:251.771188pt;}
.x5f_c01025{left:253.381333pt;}
.x6f_c01025{left:255.772000pt;}
.x6c_c01025{left:260.533333pt;}
.x69_c01025{left:263.232307pt;}
.x37_c01025{left:264.251231pt;}
.x74_c01025{left:266.532000pt;}
.x1e_c01025{left:267.708000pt;}
.x4c_c01025{left:268.799207pt;}
.x44_c01025{left:272.290667pt;}
.xf_c01025{left:274.238667pt;}
.x60_c01025{left:278.785333pt;}
.x15_c01025{left:280.928901pt;}
.x66_c01025{left:282.656000pt;}
.x1b_c01025{left:284.640000pt;}
.x2e_c01025{left:289.454984pt;}
.x8_c01025{left:291.120000pt;}
.x38_c01025{left:292.333300pt;}
.x29_c01025{left:295.453981pt;}
.x4d_c01025{left:300.722387pt;}
.x42_c01025{left:306.373120pt;}
.x45_c01025{left:309.021333pt;}
.x10_c01025{left:312.666667pt;}
.x3f_c01025{left:313.970667pt;}
.x39_c01025{left:316.334871pt;}
.x67_c01025{left:318.805333pt;}
.x21_c01025{left:322.815059pt;}
.x32_c01025{left:324.495988pt;}
.x75_c01025{left:330.838667pt;}
.x4_c01025{left:335.280000pt;}
.x1c_c01025{left:336.240000pt;}
.x22_c01025{left:338.415617pt;}
.x11_c01025{left:339.998667pt;}
.x46_c01025{left:341.181333pt;}
.x6d_c01025{left:345.986667pt;}
.x61_c01025{left:347.180000pt;}
.x3a_c01025{left:348.737453pt;}
.x5c_c01025{left:350.542667pt;}
.x47_c01025{left:351.748000pt;}
.x16_c01025{left:352.908397pt;}
.x33_c01025{left:356.178483pt;}
.x70_c01025{left:361.052000pt;}
.x34_c01025{left:367.698543pt;}
.x48_c01025{left:372.160000pt;}
.x4e_c01025{left:374.891067pt;}
.x59_c01025{left:375.840000pt;}
.x40_c01025{left:379.218667pt;}
.x2a_c01025{left:383.299281pt;}
.x5d_c01025{left:384.417333pt;}
.x23_c01025{left:387.138847pt;}
.x43_c01025{left:393.010053pt;}
.x12_c01025{left:394.957333pt;}
.x62_c01025{left:398.780000pt;}
.x4f_c01025{left:402.494600pt;}
.x3b_c01025{left:404.180156pt;}
.x6a_c01025{left:408.967653pt;}
.x6e_c01025{left:414.104000pt;}
.x5e_c01025{left:416.301333pt;}
.x13_c01025{left:421.120000pt;}
.x35_c01025{left:425.061480pt;}
.x76_c01025{left:432.240000pt;}
.x5a_c01025{left:436.080000pt;}
.x3c_c01025{left:442.342109pt;}
.x63_c01025{left:447.022667pt;}
.x2b_c01025{left:450.743436pt;}
.x68_c01025{left:457.580000pt;}
.x49_c01025{left:466.201333pt;}
.x50_c01025{left:468.021340pt;}
.x64_c01025{left:508.674667pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.000000;font-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_c01026{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);}
.m7c_c01026{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);}
.ma7_c01026{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);}
.md8_c01026{transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);}
.m9d_c01026{transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);}
.m40_c01026{transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);}
.m52_c01026{transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129070,0.000000,0.000000,0.250000,0,0);}
.m33_c01026{transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138620,0.000000,0.000000,0.250000,0,0);}
.m82_c01026{transform:matrix(0.141710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141710,0.000000,0.000000,0.250000,0,0);}
.mbe_c01026{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.m84_c01026{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);}
.m16_c01026{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);}
.m64_c01026{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);}
.m62_c01026{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);}
.m93_c01026{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);}
.m2d_c01026{transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158795,0.000000,0.000000,0.250000,0,0);}
.m8e_c01026{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);}
.mbd_c01026{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);}
.m6_c01026{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);}
.m58_c01026{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);}
.m9a_c01026{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);}
.m5f_c01026{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);}
.m63_c01026{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m66_c01026{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);}
.ma5_c01026{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);}
.me1_c01026{transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166660,0.000000,0.000000,0.250000,0,0);}
.m5a_c01026{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);}
.ma4_c01026{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m7f_c01026{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);}
.m12_c01026{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m4e_c01026{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);}
.m2c_c01026{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.me3_c01026{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);}
.m74_c01026{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);}
.m28_c01026{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);}
.mba_c01026{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);}
.meb_c01026{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);}
.mac_c01026{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);}
.m57_c01026{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);}
.m4a_c01026{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);}
.m2a_c01026{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);}
.md5_c01026{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);}
.m4f_c01026{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);}
.m1c_c01026{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);}
.mc1_c01026{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);}
.m24_c01026{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);}
.m32_c01026{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);}
.m9b_c01026{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_c01026{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);}
.maa_c01026{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);}
.m3e_c01026{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);}
.m65_c01026{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);}
.mef_c01026{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);}
.m89_c01026{transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178980,0.000000,0.000000,0.250000,0,0);}
.m98_c01026{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);}
.m43_c01026{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);}
.m5b_c01026{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);}
.m3b_c01026{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);}
.m87_c01026{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);}
.mb9_c01026{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);}
.mab_c01026{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);}
.mbb_c01026{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);}
.ma2_c01026{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);}
.mca_c01026{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);}
.m92_c01026{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);}
.md1_c01026{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);}
.m10_c01026{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);}
.m69_c01026{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);}
.m26_c01026{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);}
.m68_c01026{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);}
.mf_c01026{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);}
.ma3_c01026{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);}
.mb8_c01026{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);}
.m25_c01026{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);}
.m78_c01026{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);}
.m75_c01026{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);}
.mb4_c01026{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);}
.md0_c01026{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);}
.m5_c01026{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);}
.m37_c01026{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);}
.mbc_c01026{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);}
.m15_c01026{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);}
.m38_c01026{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);}
.m77_c01026{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);}
.m34_c01026{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);}
.m44_c01026{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);}
.med_c01026{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);}
.m4c_c01026{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);}
.mad_c01026{transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193740,0.000000,0.000000,0.250000,0,0);}
.me2_c01026{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);}
.m11_c01026{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);}
.md2_c01026{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);}
.mb1_c01026{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);}
.mcf_c01026{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);}
.m18_c01026{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);}
.ma1_c01026{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);}
.m1d_c01026{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);}
.m22_c01026{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);}
.ma0_c01026{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);}
.m5c_c01026{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);}
.mb6_c01026{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);}
.m20_c01026{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);}
.m2e_c01026{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);}
.m90_c01026{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);}
.m1b_c01026{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);}
.mb3_c01026{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);}
.m5d_c01026{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);}
.m81_c01026{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);}
.mb5_c01026{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_c01026{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);}
.m29_c01026{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);}
.m5e_c01026{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);}
.m13_c01026{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);}
.m46_c01026{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);}
.m8c_c01026{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);}
.m6d_c01026{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);}
.m17_c01026{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);}
.m88_c01026{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);}
.m95_c01026{transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201470,0.000000,0.000000,0.250000,0,0);}
.m6e_c01026{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);}
.mb2_c01026{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);}
.m8b_c01026{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);}
.mc_c01026{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);}
.m2f_c01026{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);}
.m67_c01026{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);}
.md4_c01026{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);}
.m39_c01026{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);}
.m97_c01026{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);}
.m9c_c01026{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);}
.mcd_c01026{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);}
.mec_c01026{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);}
.m49_c01026{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);}
.m59_c01026{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);}
.m99_c01026{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);}
.m71_c01026{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);}
.m8f_c01026{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);}
.m42_c01026{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);}
.me8_c01026{transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208470,0.000000,0.000000,0.250000,0,0);}
.m79_c01026{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);}
.m6c_c01026{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);}
.m85_c01026{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);}
.me4_c01026{transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210230,0.000000,0.000000,0.250000,0,0);}
.m4b_c01026{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);}
.m27_c01026{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);}
.ma6_c01026{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);}
.m45_c01026{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);}
.m31_c01026{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);}
.mce_c01026{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);}
.mbf_c01026{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);}
.mb_c01026{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);}
.m6f_c01026{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);}
.mee_c01026{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);}
.m23_c01026{transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214845,0.000000,0.000000,0.250000,0,0);}
.m47_c01026{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);}
.mc9_c01026{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);}
.mdb_c01026{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);}
.m4d_c01026{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);}
.m86_c01026{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);}
.m2b_c01026{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);}
.mae_c01026{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);}
.me6_c01026{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);}
.mcb_c01026{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);}
.mb7_c01026{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);}
.m56_c01026{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);}
.m21_c01026{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);}
.m61_c01026{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);}
.m8a_c01026{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);}
.m76_c01026{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);}
.m9e_c01026{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);}
.m1f_c01026{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);}
.me0_c01026{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);}
.m1e_c01026{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);}
.mde_c01026{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);}
.m51_c01026{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);}
.m9f_c01026{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);}
.mdf_c01026{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);}
.md3_c01026{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);}
.m83_c01026{transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231420,0.000000,0.000000,0.250000,0,0);}
.maf_c01026{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m7d_c01026{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.mda_c01026{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);}
.me5_c01026{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);}
.m30_c01026{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);}
.m70_c01026{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);}
.m6b_c01026{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);}
.m94_c01026{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);}
.m55_c01026{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m50_c01026{transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);}
.md9_c01026{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.m8d_c01026{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);}
.mdc_c01026{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);}
.m3d_c01026{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.m7_c01026{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);}
.mc6_c01026{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m80_c01026{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m7b_c01026{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.m96_c01026{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);}
.m91_c01026{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.mcc_c01026{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m3a_c01026{transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);}
.m4_c01026{transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);}
.m3_c01026{transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257515,0.000000,0.000000,0.250000,0,0);}
.m14_c01026{transform:matrix(0.260455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260455,0.000000,0.000000,0.250000,0,0);}
.m7a_c01026{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);}
.mea_c01026{transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);}
.m54_c01026{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);}
.m41_c01026{transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266655,0.000000,0.000000,0.250000,0,0);}
.md7_c01026{transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);}
.mc7_c01026{transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);}
.mc8_c01026{transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277090,0.000000,0.000000,0.250000,0,0);}
.me9_c01026{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.md6_c01026{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);}
.mdd_c01026{transform:matrix(0.285575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285575,0.000000,0.000000,0.250000,0,0);}
.mc5_c01026{transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);}
.m3c_c01026{transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294365,0.000000,0.000000,0.250000,0,0);}
.m73_c01026{transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295200,0.000000,0.000000,0.250000,0,0);}
.m1a_c01026{transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295545,0.000000,0.000000,0.250000,0,0);}
.mf0_c01026{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);}
.mc3_c01026{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);}
.m53_c01026{transform:matrix(0.307190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307190,0.000000,0.000000,0.250000,0,0);}
.mc0_c01026{transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308350,0.000000,0.000000,0.250000,0,0);}
.m8_c01026{transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314115,0.000000,0.000000,0.250000,0,0);}
.mf1_c01026{transform:matrix(0.337210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337210,0.000000,0.000000,0.250000,0,0);}
.ma9_c01026{transform:matrix(0.337975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337975,0.000000,0.000000,0.250000,0,0);}
.md_c01026{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);}
.m72_c01026{transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);}
.mc2_c01026{transform:matrix(0.351270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351270,0.000000,0.000000,0.250000,0,0);}
.m3f_c01026{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01026{transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354350,0.000000,0.000000,0.250000,0,0);}
.me7_c01026{transform:matrix(0.375305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375305,0.000000,0.000000,0.250000,0,0);}
.m9_c01026{transform:matrix(0.375870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375870,0.000000,0.000000,0.250000,0,0);}
.mc4_c01026{transform:matrix(0.379090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379090,0.000000,0.000000,0.250000,0,0);}
.m6a_c01026{transform:matrix(0.384200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384200,0.000000,0.000000,0.250000,0,0);}
.mb0_c01026{transform:matrix(0.387065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387065,0.000000,0.000000,0.250000,0,0);}
.ma_c01026{transform:matrix(0.388145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388145,0.000000,0.000000,0.250000,0,0);}
.m48_c01026{transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);}
.m60_c01026{transform:matrix(0.398220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398220,0.000000,0.000000,0.250000,0,0);}
.ma8_c01026{transform:matrix(0.410415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410415,0.000000,0.000000,0.250000,0,0);}
.m35_c01026{transform:matrix(0.438995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438995,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.675970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675970,0.000000,0.000000,0.250000,0,0);}
.m2_c01026{transform:matrix(0.887380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887380,0.000000,0.000000,0.250000,0,0);}
.m0_c01026{transform:matrix(1.155575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.155575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.155575,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls0_c01026{letter-spacing:0.000000px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01026{word-spacing:0.000000px;}
.fc0_c01026{color:transparent;}
.fsb_c01026{font-size:22.050000px;}
.fsc_c01026{font-size:51.450000px;}
.fsd_c01026{font-size:53.550000px;}
.fse_c01026{font-size:54.600000px;}
.fsf_c01026{font-size:60.900000px;}
.fs5_c01026{font-size:63.000000px;}
.fsa_c01026{font-size:64.050000px;}
.fs9_c01026{font-size:66.150000px;}
.fs8_c01026{font-size:67.200000px;}
.fs4_c01026{font-size:68.250000px;}
.fs1_c01026{font-size:69.300000px;}
.fs3_c01026{font-size:70.350000px;}
.fs6_c01026{font-size:71.400000px;}
.fs2_c01026{font-size:72.450000px;}
.fs7_c01026{font-size:73.500000px;}
.fs0_c01026{font-size:76.650000px;}
.y0_c01026{bottom:0.000000px;}
.y28_c01026{bottom:145.525500px;}
.y27_c01026{bottom:171.648000px;}
.y26_c01026{bottom:188.860500px;}
.y25_c01026{bottom:206.475000px;}
.y23_c01026{bottom:257.382000px;}
.y22_c01026{bottom:280.056000px;}
.y21_c01026{bottom:302.721000px;}
.y20_c01026{bottom:325.722000px;}
.y1f_c01026{bottom:348.220500px;}
.y1e_c01026{bottom:371.374500px;}
.y1d_c01026{bottom:392.689500px;}
.y1c_c01026{bottom:393.198000px;}
.y1b_c01026{bottom:393.405000px;}
.y1a_c01026{bottom:393.684000px;}
.y19_c01026{bottom:394.111500px;}
.y18_c01026{bottom:394.320000px;}
.y17_c01026{bottom:394.951500px;}
.y16_c01026{bottom:395.203500px;}
.y15_c01026{bottom:395.551500px;}
.y14_c01026{bottom:416.538000px;}
.y13_c01026{bottom:439.206000px;}
.y12_c01026{bottom:460.741500px;}
.y11_c01026{bottom:483.501000px;}
.y10_c01026{bottom:506.803500px;}
.yf_c01026{bottom:529.150500px;}
.ye_c01026{bottom:552.312000px;}
.yd_c01026{bottom:575.134500px;}
.yc_c01026{bottom:597.670500px;}
.yb_c01026{bottom:620.577000px;}
.y24_c01026{bottom:625.320000px;}
.ya_c01026{bottom:642.817500px;}
.y9_c01026{bottom:663.934500px;}
.y8_c01026{bottom:666.987000px;}
.y7_c01026{bottom:688.612500px;}
.y6_c01026{bottom:711.430500px;}
.y5_c01026{bottom:734.215500px;}
.y4_c01026{bottom:756.637500px;}
.y3_c01026{bottom:779.392500px;}
.y2_c01026{bottom:802.258500px;}
.y1_c01026{bottom:932.425500px;}
.hd_c01026{height:22.050000px;}
.he_c01026{height:51.450000px;}
.hf_c01026{height:53.550000px;}
.h10_c01026{height:54.600000px;}
.h11_c01026{height:60.900000px;}
.h7_c01026{height:63.000000px;}
.hc_c01026{height:64.050000px;}
.hb_c01026{height:66.150000px;}
.ha_c01026{height:67.200000px;}
.h6_c01026{height:68.250000px;}
.h3_c01026{height:69.300000px;}
.h5_c01026{height:70.350000px;}
.h8_c01026{height:71.400000px;}
.h4_c01026{height:72.450000px;}
.h9_c01026{height:73.500000px;}
.h2_c01026{height:76.650000px;}
.h1_c01026{height:1005.000000px;}
.h0_c01026{height:1005.150000px;}
.w0_c01026{width:715.200000px;}
.w1_c01026{width:715.500000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:35.100000px;}
.x7c_c01026{left:50.220000px;}
.x84_c01026{left:113.940000px;}
.x7d_c01026{left:125.820000px;}
.x5a_c01026{left:139.590000px;}
.x8e_c01026{left:142.020000px;}
.x73_c01026{left:143.641500px;}
.x21_c01026{left:145.260000px;}
.x54_c01026{left:149.310000px;}
.x41_c01026{left:150.390000px;}
.x25_c01026{left:151.470000px;}
.x5_c01026{left:153.360000px;}
.x85_c01026{left:169.020000px;}
.x93_c01026{left:173.880000px;}
.x77_c01026{left:177.391500px;}
.x6e_c01026{left:178.741500px;}
.x15_c01026{left:180.090000px;}
.x26_c01026{left:182.520000px;}
.x5b_c01026{left:184.680000px;}
.xe_c01026{left:186.840000px;}
.x62_c01026{left:189.270000px;}
.x65_c01026{left:190.506000px;}
.x68_c01026{left:193.591500px;}
.x6f_c01026{left:196.291500px;}
.x4e_c01026{left:197.370000px;}
.x2_c01026{left:198.720000px;}
.x39_c01026{left:201.690000px;}
.x86_c01026{left:203.310000px;}
.x16_c01026{left:208.710000px;}
.x2f_c01026{left:213.030000px;}
.x7e_c01026{left:215.190000px;}
.x22_c01026{left:217.620000px;}
.x8f_c01026{left:219.510000px;}
.x70_c01026{left:222.481500px;}
.x42_c01026{left:225.990000px;}
.x55_c01026{left:229.770000px;}
.x6_c01026{left:237.060000px;}
.x4f_c01026{left:239.760000px;}
.x3a_c01026{left:245.160000px;}
.x5c_c01026{left:246.780000px;}
.x69_c01026{left:247.861500px;}
.x78_c01026{left:249.751500px;}
.x36_c01026{left:250.830000px;}
.xf_c01026{left:255.150000px;}
.x43_c01026{left:259.470000px;}
.x30_c01026{left:262.170000px;}
.x3_c01026{left:267.300000px;}
.x7_c01026{left:272.160000px;}
.x5d_c01026{left:273.240000px;}
.x90_c01026{left:275.940000px;}
.x6a_c01026{left:277.021500px;}
.x4b_c01026{left:278.640000px;}
.x56_c01026{left:279.720000px;}
.x44_c01026{left:281.880000px;}
.x17_c01026{left:283.230000px;}
.x1c_c01026{left:284.580000px;}
.x87_c01026{left:286.470000px;}
.x10_c01026{left:287.820000px;}
.x63_c01026{left:290.250000px;}
.x4d_c01026{left:291.870000px;}
.x5e_c01026{left:294.300000px;}
.x2d_c01026{left:296.806500px;}
.x4c_c01026{left:304.020000px;}
.x88_c01026{left:306.990000px;}
.x27_c01026{left:311.850000px;}
.x57_c01026{left:315.900000px;}
.x45_c01026{left:317.790000px;}
.x7b_c01026{left:320.221500px;}
.x8_c01026{left:323.190000px;}
.x1d_c01026{left:326.700000px;}
.x71_c01026{left:328.051500px;}
.x79_c01026{left:329.671500px;}
.x37_c01026{left:331.020000px;}
.x31_c01026{left:333.180000px;}
.x46_c01026{left:335.880000px;}
.x9_c01026{left:336.960000px;}
.x5f_c01026{left:338.310000px;}
.x74_c01026{left:341.281500px;}
.x50_c01026{left:342.630000px;}
.x11_c01026{left:343.710000px;}
.x3b_c01026{left:346.950000px;}
.x89_c01026{left:348.300000px;}
.x18_c01026{left:349.380000px;}
.x6b_c01026{left:351.541500px;}
.x58_c01026{left:353.700000px;}
.x28_c01026{left:356.400000px;}
.x66_c01026{left:359.553000px;}
.x32_c01026{left:362.070000px;}
.x1e_c01026{left:363.690000px;}
.x60_c01026{left:366.930000px;}
.x75_c01026{left:368.551500px;}
.x12_c01026{left:373.680000px;}
.x51_c01026{left:375.300000px;}
.x47_c01026{left:381.240000px;}
.x33_c01026{left:382.590000px;}
.x19_c01026{left:384.210000px;}
.x91_c01026{left:386.100000px;}
.x72_c01026{left:387.991500px;}
.x38_c01026{left:389.340000px;}
.x67_c01026{left:390.574500px;}
.x29_c01026{left:394.200000px;}
.x48_c01026{left:395.550000px;}
.x76_c01026{left:397.981500px;}
.x64_c01026{left:399.870000px;}
.x23_c01026{left:405.000000px;}
.x59_c01026{left:407.160000px;}
.xb_c01026{left:409.320000px;}
.xa_c01026{left:410.400000px;}
.x3c_c01026{left:413.100000px;}
.x1f_c01026{left:414.990000px;}
.x1a_c01026{left:417.690000px;}
.x6c_c01026{left:418.771500px;}
.x13_c01026{left:429.030000px;}
.x7f_c01026{left:430.380000px;}
.x4_c01026{left:434.970000px;}
.x34_c01026{left:436.320000px;}
.x2a_c01026{left:438.750000px;}
.x24_c01026{left:444.150000px;}
.x7a_c01026{left:445.771500px;}
.x3d_c01026{left:448.740000px;}
.x1b_c01026{left:452.790000px;}
.xc_c01026{left:461.700000px;}
.x20_c01026{left:463.590000px;}
.x2b_c01026{left:465.480000px;}
.x92_c01026{left:466.560000px;}
.x14_c01026{left:468.990000px;}
.x61_c01026{left:474.120000px;}
.x52_c01026{left:475.200000px;}
.x3e_c01026{left:478.710000px;}
.x8a_c01026{left:484.110000px;}
.x2e_c01026{left:487.611000px;}
.x6d_c01026{left:489.241500px;}
.x49_c01026{left:492.210000px;}
.x35_c01026{left:494.370000px;}
.x80_c01026{left:499.230000px;}
.x2c_c01026{left:501.660000px;}
.xd_c01026{left:507.060000px;}
.x8b_c01026{left:515.700000px;}
.x3f_c01026{left:524.340000px;}
.x53_c01026{left:526.230000px;}
.x8c_c01026{left:529.740000px;}
.x4a_c01026{left:533.520000px;}
.x81_c01026{left:543.510000px;}
.x82_c01026{left:554.580000px;}
.x40_c01026{left:561.060000px;}
.x8d_c01026{left:564.030000px;}
.x83_c01026{left:567.540000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls0_c01026{letter-spacing:0.000000pt;}
.ws0_c01026{word-spacing:0.000000pt;}
.fsb_c01026{font-size:19.600000pt;}
.fsc_c01026{font-size:45.733333pt;}
.fsd_c01026{font-size:47.600000pt;}
.fse_c01026{font-size:48.533333pt;}
.fsf_c01026{font-size:54.133333pt;}
.fs5_c01026{font-size:56.000000pt;}
.fsa_c01026{font-size:56.933333pt;}
.fs9_c01026{font-size:58.800000pt;}
.fs8_c01026{font-size:59.733333pt;}
.fs4_c01026{font-size:60.666667pt;}
.fs1_c01026{font-size:61.600000pt;}
.fs3_c01026{font-size:62.533333pt;}
.fs6_c01026{font-size:63.466667pt;}
.fs2_c01026{font-size:64.400000pt;}
.fs7_c01026{font-size:65.333333pt;}
.fs0_c01026{font-size:68.133333pt;}
.y0_c01026{bottom:0.000000pt;}
.y28_c01026{bottom:129.356000pt;}
.y27_c01026{bottom:152.576000pt;}
.y26_c01026{bottom:167.876000pt;}
.y25_c01026{bottom:183.533333pt;}
.y23_c01026{bottom:228.784000pt;}
.y22_c01026{bottom:248.938667pt;}
.y21_c01026{bottom:269.085333pt;}
.y20_c01026{bottom:289.530667pt;}
.y1f_c01026{bottom:309.529333pt;}
.y1e_c01026{bottom:330.110667pt;}
.y1d_c01026{bottom:349.057333pt;}
.y1c_c01026{bottom:349.509333pt;}
.y1b_c01026{bottom:349.693333pt;}
.y1a_c01026{bottom:349.941333pt;}
.y19_c01026{bottom:350.321333pt;}
.y18_c01026{bottom:350.506667pt;}
.y17_c01026{bottom:351.068000pt;}
.y16_c01026{bottom:351.292000pt;}
.y15_c01026{bottom:351.601333pt;}
.y14_c01026{bottom:370.256000pt;}
.y13_c01026{bottom:390.405333pt;}
.y12_c01026{bottom:409.548000pt;}
.y11_c01026{bottom:429.778667pt;}
.y10_c01026{bottom:450.492000pt;}
.yf_c01026{bottom:470.356000pt;}
.ye_c01026{bottom:490.944000pt;}
.yd_c01026{bottom:511.230667pt;}
.yc_c01026{bottom:531.262667pt;}
.yb_c01026{bottom:551.624000pt;}
.y24_c01026{bottom:555.840000pt;}
.ya_c01026{bottom:571.393333pt;}
.y9_c01026{bottom:590.164000pt;}
.y8_c01026{bottom:592.877333pt;}
.y7_c01026{bottom:612.100000pt;}
.y6_c01026{bottom:632.382667pt;}
.y5_c01026{bottom:652.636000pt;}
.y4_c01026{bottom:672.566667pt;}
.y3_c01026{bottom:692.793333pt;}
.y2_c01026{bottom:713.118667pt;}
.y1_c01026{bottom:828.822667pt;}
.hd_c01026{height:19.600000pt;}
.he_c01026{height:45.733333pt;}
.hf_c01026{height:47.600000pt;}
.h10_c01026{height:48.533333pt;}
.h11_c01026{height:54.133333pt;}
.h7_c01026{height:56.000000pt;}
.hc_c01026{height:56.933333pt;}
.hb_c01026{height:58.800000pt;}
.ha_c01026{height:59.733333pt;}
.h6_c01026{height:60.666667pt;}
.h3_c01026{height:61.600000pt;}
.h5_c01026{height:62.533333pt;}
.h8_c01026{height:63.466667pt;}
.h4_c01026{height:64.400000pt;}
.h9_c01026{height:65.333333pt;}
.h2_c01026{height:68.133333pt;}
.h1_c01026{height:893.333333pt;}
.h0_c01026{height:893.466667pt;}
.w0_c01026{width:635.733333pt;}
.w1_c01026{width:636.000000pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:31.200000pt;}
.x7c_c01026{left:44.640000pt;}
.x84_c01026{left:101.280000pt;}
.x7d_c01026{left:111.840000pt;}
.x5a_c01026{left:124.080000pt;}
.x8e_c01026{left:126.240000pt;}
.x73_c01026{left:127.681333pt;}
.x21_c01026{left:129.120000pt;}
.x54_c01026{left:132.720000pt;}
.x41_c01026{left:133.680000pt;}
.x25_c01026{left:134.640000pt;}
.x5_c01026{left:136.320000pt;}
.x85_c01026{left:150.240000pt;}
.x93_c01026{left:154.560000pt;}
.x77_c01026{left:157.681333pt;}
.x6e_c01026{left:158.881333pt;}
.x15_c01026{left:160.080000pt;}
.x26_c01026{left:162.240000pt;}
.x5b_c01026{left:164.160000pt;}
.xe_c01026{left:166.080000pt;}
.x62_c01026{left:168.240000pt;}
.x65_c01026{left:169.338667pt;}
.x68_c01026{left:172.081333pt;}
.x6f_c01026{left:174.481333pt;}
.x4e_c01026{left:175.440000pt;}
.x2_c01026{left:176.640000pt;}
.x39_c01026{left:179.280000pt;}
.x86_c01026{left:180.720000pt;}
.x16_c01026{left:185.520000pt;}
.x2f_c01026{left:189.360000pt;}
.x7e_c01026{left:191.280000pt;}
.x22_c01026{left:193.440000pt;}
.x8f_c01026{left:195.120000pt;}
.x70_c01026{left:197.761333pt;}
.x42_c01026{left:200.880000pt;}
.x55_c01026{left:204.240000pt;}
.x6_c01026{left:210.720000pt;}
.x4f_c01026{left:213.120000pt;}
.x3a_c01026{left:217.920000pt;}
.x5c_c01026{left:219.360000pt;}
.x69_c01026{left:220.321333pt;}
.x78_c01026{left:222.001333pt;}
.x36_c01026{left:222.960000pt;}
.xf_c01026{left:226.800000pt;}
.x43_c01026{left:230.640000pt;}
.x30_c01026{left:233.040000pt;}
.x3_c01026{left:237.600000pt;}
.x7_c01026{left:241.920000pt;}
.x5d_c01026{left:242.880000pt;}
.x90_c01026{left:245.280000pt;}
.x6a_c01026{left:246.241333pt;}
.x4b_c01026{left:247.680000pt;}
.x56_c01026{left:248.640000pt;}
.x44_c01026{left:250.560000pt;}
.x17_c01026{left:251.760000pt;}
.x1c_c01026{left:252.960000pt;}
.x87_c01026{left:254.640000pt;}
.x10_c01026{left:255.840000pt;}
.x63_c01026{left:258.000000pt;}
.x4d_c01026{left:259.440000pt;}
.x5e_c01026{left:261.600000pt;}
.x2d_c01026{left:263.828000pt;}
.x4c_c01026{left:270.240000pt;}
.x88_c01026{left:272.880000pt;}
.x27_c01026{left:277.200000pt;}
.x57_c01026{left:280.800000pt;}
.x45_c01026{left:282.480000pt;}
.x7b_c01026{left:284.641333pt;}
.x8_c01026{left:287.280000pt;}
.x1d_c01026{left:290.400000pt;}
.x71_c01026{left:291.601333pt;}
.x79_c01026{left:293.041333pt;}
.x37_c01026{left:294.240000pt;}
.x31_c01026{left:296.160000pt;}
.x46_c01026{left:298.560000pt;}
.x9_c01026{left:299.520000pt;}
.x5f_c01026{left:300.720000pt;}
.x74_c01026{left:303.361333pt;}
.x50_c01026{left:304.560000pt;}
.x11_c01026{left:305.520000pt;}
.x3b_c01026{left:308.400000pt;}
.x89_c01026{left:309.600000pt;}
.x18_c01026{left:310.560000pt;}
.x6b_c01026{left:312.481333pt;}
.x58_c01026{left:314.400000pt;}
.x28_c01026{left:316.800000pt;}
.x66_c01026{left:319.602667pt;}
.x32_c01026{left:321.840000pt;}
.x1e_c01026{left:323.280000pt;}
.x60_c01026{left:326.160000pt;}
.x75_c01026{left:327.601333pt;}
.x12_c01026{left:332.160000pt;}
.x51_c01026{left:333.600000pt;}
.x47_c01026{left:338.880000pt;}
.x33_c01026{left:340.080000pt;}
.x19_c01026{left:341.520000pt;}
.x91_c01026{left:343.200000pt;}
.x72_c01026{left:344.881333pt;}
.x38_c01026{left:346.080000pt;}
.x67_c01026{left:347.177333pt;}
.x29_c01026{left:350.400000pt;}
.x48_c01026{left:351.600000pt;}
.x76_c01026{left:353.761333pt;}
.x64_c01026{left:355.440000pt;}
.x23_c01026{left:360.000000pt;}
.x59_c01026{left:361.920000pt;}
.xb_c01026{left:363.840000pt;}
.xa_c01026{left:364.800000pt;}
.x3c_c01026{left:367.200000pt;}
.x1f_c01026{left:368.880000pt;}
.x1a_c01026{left:371.280000pt;}
.x6c_c01026{left:372.241333pt;}
.x13_c01026{left:381.360000pt;}
.x7f_c01026{left:382.560000pt;}
.x4_c01026{left:386.640000pt;}
.x34_c01026{left:387.840000pt;}
.x2a_c01026{left:390.000000pt;}
.x24_c01026{left:394.800000pt;}
.x7a_c01026{left:396.241333pt;}
.x3d_c01026{left:398.880000pt;}
.x1b_c01026{left:402.480000pt;}
.xc_c01026{left:410.400000pt;}
.x20_c01026{left:412.080000pt;}
.x2b_c01026{left:413.760000pt;}
.x92_c01026{left:414.720000pt;}
.x14_c01026{left:416.880000pt;}
.x61_c01026{left:421.440000pt;}
.x52_c01026{left:422.400000pt;}
.x3e_c01026{left:425.520000pt;}
.x8a_c01026{left:430.320000pt;}
.x2e_c01026{left:433.432000pt;}
.x6d_c01026{left:434.881333pt;}
.x49_c01026{left:437.520000pt;}
.x35_c01026{left:439.440000pt;}
.x80_c01026{left:443.760000pt;}
.x2c_c01026{left:445.920000pt;}
.xd_c01026{left:450.720000pt;}
.x8b_c01026{left:458.400000pt;}
.x3f_c01026{left:466.080000pt;}
.x53_c01026{left:467.760000pt;}
.x8c_c01026{left:470.880000pt;}
.x4a_c01026{left:474.240000pt;}
.x81_c01026{left:483.120000pt;}
.x82_c01026{left:492.960000pt;}
.x40_c01026{left:498.720000pt;}
.x8d_c01026{left:501.360000pt;}
.x83_c01026{left:504.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_c01027 {
    display:none;
  }
  .loading-indicator_c01027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01027" -> "#page-container .classname_c01027")
 */
.pf_c01027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01027 {overflow:visible;}
  }
}
.c_c01027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01027:after { /* webkit #35443 */
  content: '';
}
.t_c01027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01027 { /* info for Javascript */
  display:none;
}
.l_c01027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.000000;font-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_c01027{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);}
.maa_c01027{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.mcc_c01027{transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102230,0.000000,0.000000,0.250000,0,0);}
.m7b_c01027{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);}
.m69_c01027{transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134415,0.000000,0.000000,0.250000,0,0);}
.m4e_c01027{transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139030,0.000000,0.000000,0.250000,0,0);}
.m88_c01027{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.me2_c01027{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);}
.m6a_c01027{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);}
.mdb_c01027{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);}
.m68_c01027{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);}
.m56_c01027{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);}
.m22_c01027{transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155045,0.000000,0.000000,0.250000,0,0);}
.ma4_c01027{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);}
.m1c_c01027{transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158785,0.000000,0.000000,0.250000,0,0);}
.m6_c01027{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);}
.m28_c01027{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);}
.m29_c01027{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);}
.m6b_c01027{transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160955,0.000000,0.000000,0.250000,0,0);}
.m31_c01027{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);}
.m1d_c01027{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);}
.m67_c01027{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);}
.m27_c01027{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);}
.ma3_c01027{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_c01027{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);}
.m1e_c01027{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);}
.m2c_c01027{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m98_c01027{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_c01027{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);}
.m58_c01027{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m43_c01027{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);}
.mce_c01027{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);}
.m59_c01027{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);}
.m8b_c01027{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);}
.m41_c01027{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);}
.m44_c01027{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);}
.mde_c01027{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);}
.m53_c01027{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);}
.m2b_c01027{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);}
.m9b_c01027{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);}
.mba_c01027{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);}
.m13_c01027{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);}
.m48_c01027{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_c01027{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);}
.ma5_c01027{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);}
.m61_c01027{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);}
.me1_c01027{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);}
.m52_c01027{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);}
.m32_c01027{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);}
.m63_c01027{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);}
.m1b_c01027{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);}
.m12_c01027{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);}
.m37_c01027{transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177480,0.000000,0.000000,0.250000,0,0);}
.m3a_c01027{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);}
.mb2_c01027{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);}
.m9f_c01027{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);}
.m3e_c01027{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);}
.m54_c01027{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);}
.mc6_c01027{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);}
.m64_c01027{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);}
.m14_c01027{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);}
.m8f_c01027{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);}
.ma8_c01027{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);}
.mae_c01027{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);}
.m66_c01027{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);}
.m9e_c01027{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);}
.ma6_c01027{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);}
.m35_c01027{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);}
.m76_c01027{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);}
.m1a_c01027{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);}
.m49_c01027{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);}
.mbd_c01027{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);}
.mc2_c01027{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);}
.mb5_c01027{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);}
.mf_c01027{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);}
.ma9_c01027{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);}
.ma0_c01027{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);}
.m4b_c01027{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_c01027{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);}
.m19_c01027{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);}
.m10_c01027{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);}
.m15_c01027{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);}
.m2e_c01027{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);}
.m7_c01027{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);}
.m21_c01027{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);}
.m42_c01027{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);}
.m86_c01027{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);}
.md_c01027{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);}
.mbb_c01027{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);}
.mc0_c01027{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);}
.mc1_c01027{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);}
.m57_c01027{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);}
.m99_c01027{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);}
.ma2_c01027{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);}
.m7a_c01027{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);}
.mac_c01027{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);}
.m46_c01027{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);}
.m3c_c01027{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);}
.m18_c01027{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);}
.m87_c01027{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);}
.m2a_c01027{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_c01027{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);}
.md0_c01027{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);}
.m23_c01027{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);}
.m16_c01027{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);}
.m51_c01027{transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202585,0.000000,0.000000,0.250000,0,0);}
.m97_c01027{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);}
.mdc_c01027{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);}
.mb6_c01027{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);}
.m83_c01027{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);}
.m3f_c01027{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);}
.mbc_c01027{transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206685,0.000000,0.000000,0.250000,0,0);}
.m8d_c01027{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);}
.m47_c01027{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);}
.me8_c01027{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);}
.mb3_c01027{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);}
.m93_c01027{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.mb8_c01027{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);}
.m85_c01027{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);}
.m30_c01027{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);}
.m33_c01027{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);}
.m24_c01027{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);}
.m3b_c01027{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.mea_c01027{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);}
.m90_c01027{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.me3_c01027{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);}
.m9a_c01027{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);}
.m4d_c01027{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);}
.m55_c01027{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);}
.mb1_c01027{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);}
.m9c_c01027{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);}
.mc8_c01027{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);}
.m6c_c01027{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);}
.m25_c01027{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);}
.m26_c01027{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);}
.me6_c01027{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);}
.ma1_c01027{transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);}
.mb0_c01027{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);}
.m95_c01027{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);}
.m94_c01027{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);}
.mbe_c01027{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);}
.m4c_c01027{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);}
.md8_c01027{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);}
.mc4_c01027{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);}
.mdd_c01027{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01027{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m84_c01027{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);}
.m2d_c01027{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);}
.meb_c01027{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);}
.mc7_c01027{transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222495,0.000000,0.000000,0.250000,0,0);}
.m82_c01027{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);}
.md9_c01027{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);}
.m40_c01027{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);}
.me5_c01027{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);}
.m3d_c01027{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);}
.m9_c01027{transform:matrix(0.227370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227370,0.000000,0.000000,0.250000,0,0);}
.m8c_c01027{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);}
.m62_c01027{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);}
.maf_c01027{transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231290,0.000000,0.000000,0.250000,0,0);}
.m73_c01027{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);}
.m38_c01027{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);}
.mad_c01027{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);}
.me_c01027{transform:matrix(0.233885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233885,0.000000,0.000000,0.250000,0,0);}
.mc_c01027{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);}
.m5f_c01027{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);}
.m39_c01027{transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);}
.m17_c01027{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);}
.m4a_c01027{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.mab_c01027{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);}
.m60_c01027{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);}
.mcf_c01027{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);}
.m50_c01027{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);}
.mc3_c01027{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);}
.md3_c01027{transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242030,0.000000,0.000000,0.250000,0,0);}
.mcb_c01027{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.m81_c01027{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_c01027{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);}
.m8e_c01027{transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);}
.md5_c01027{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);}
.md2_c01027{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);}
.m96_c01027{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);}
.m74_c01027{transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);}
.mb4_c01027{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.me0_c01027{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);}
.me9_c01027{transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);}
.m80_c01027{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);}
.m8a_c01027{transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257130,0.000000,0.000000,0.250000,0,0);}
.md6_c01027{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.mb7_c01027{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);}
.m6f_c01027{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);}
.me7_c01027{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);}
.mcd_c01027{transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);}
.m45_c01027{transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269915,0.000000,0.000000,0.250000,0,0);}
.m70_c01027{transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270655,0.000000,0.000000,0.250000,0,0);}
.m8_c01027{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);}
.mdf_c01027{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);}
.mb9_c01027{transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274295,0.000000,0.000000,0.250000,0,0);}
.m89_c01027{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m75_c01027{transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275995,0.000000,0.000000,0.250000,0,0);}
.m11_c01027{transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);}
.mbf_c01027{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);}
.md4_c01027{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);}
.m5e_c01027{transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);}
.md1_c01027{transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);}
.m7c_c01027{transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);}
.md7_c01027{transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286070,0.000000,0.000000,0.250000,0,0);}
.m6d_c01027{transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288265,0.000000,0.000000,0.250000,0,0);}
.ma7_c01027{transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288315,0.000000,0.000000,0.250000,0,0);}
.m71_c01027{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.m72_c01027{transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298630,0.000000,0.000000,0.250000,0,0);}
.m5c_c01027{transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306680,0.000000,0.000000,0.250000,0,0);}
.m6e_c01027{transform:matrix(0.311055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311055,0.000000,0.000000,0.250000,0,0);}
.m4_c01027{transform:matrix(0.323920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323920,0.000000,0.000000,0.250000,0,0);}
.m5d_c01027{transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324085,0.000000,0.000000,0.250000,0,0);}
.m5a_c01027{transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324995,0.000000,0.000000,0.250000,0,0);}
.m2f_c01027{transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325270,0.000000,0.000000,0.250000,0,0);}
.m65_c01027{transform:matrix(0.332400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332400,0.000000,0.000000,0.250000,0,0);}
.mc9_c01027{transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334010,0.000000,0.000000,0.250000,0,0);}
.m91_c01027{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);}
.mca_c01027{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m5_c01027{transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);}
.m7e_c01027{transform:matrix(0.373220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373220,0.000000,0.000000,0.250000,0,0);}
.mb_c01027{transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);}
.m78_c01027{transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389770,0.000000,0.000000,0.250000,0,0);}
.m7d_c01027{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);}
.ma_c01027{transform:matrix(0.413345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413345,0.000000,0.000000,0.250000,0,0);}
.m5b_c01027{transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442365,0.000000,0.000000,0.250000,0,0);}
.mec_c01027{transform:matrix(0.465430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465430,0.000000,0.000000,0.250000,0,0);}
.m79_c01027{transform:matrix(0.487170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487170,0.000000,0.000000,0.250000,0,0);}
.m77_c01027{transform:matrix(0.496670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496670,0.000000,0.000000,0.250000,0,0);}
.m4f_c01027{transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);}
.m7f_c01027{transform:matrix(0.724085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724085,0.000000,0.000000,0.250000,0,0);}
.m2_c01027{transform:matrix(0.816280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816280,0.000000,0.000000,0.250000,0,0);}
.m1_c01027{transform:matrix(0.949685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.949685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.949685,0.000000,0.000000,0.250000,0,0);}
.m3_c01027{transform:matrix(0.975870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975870,0.000000,0.000000,0.250000,0,0);}
.mda_c01027{transform:matrix(0.978390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.978390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.978390,0.000000,0.000000,0.250000,0,0);}
.m0_c01027{transform:matrix(1.021025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021025,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls0_c01027{letter-spacing:0.000000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:0.000000px;}
.fc0_c01027{color:transparent;}
.fs1_c01027{font-size:33.600000px;}
.fs0_c01027{font-size:55.650000px;}
.fsc_c01027{font-size:59.850000px;}
.fs11_c01027{font-size:63.000000px;}
.fs10_c01027{font-size:64.050000px;}
.fs4_c01027{font-size:65.100000px;}
.fs8_c01027{font-size:66.150000px;}
.fs5_c01027{font-size:67.200000px;}
.fse_c01027{font-size:68.250000px;}
.fs7_c01027{font-size:69.300000px;}
.fs9_c01027{font-size:70.350000px;}
.fs3_c01027{font-size:71.400000px;}
.fsa_c01027{font-size:72.450000px;}
.fsf_c01027{font-size:73.500000px;}
.fs6_c01027{font-size:74.550000px;}
.fs12_c01027{font-size:85.050000px;}
.fsd_c01027{font-size:86.100000px;}
.fsb_c01027{font-size:95.550000px;}
.fs2_c01027{font-size:138.600000px;}
.y0_c01027{bottom:0.000000px;}
.y45_c01027{bottom:168.886500px;}
.y44_c01027{bottom:188.875500px;}
.y43_c01027{bottom:189.118500px;}
.y42_c01027{bottom:189.796500px;}
.y41_c01027{bottom:190.041000px;}
.y40_c01027{bottom:190.693500px;}
.y3f_c01027{bottom:191.263500px;}
.y3e_c01027{bottom:191.803500px;}
.y3d_c01027{bottom:191.976000px;}
.y3c_c01027{bottom:192.243000px;}
.y3b_c01027{bottom:213.676500px;}
.y3a_c01027{bottom:239.194500px;}
.y39_c01027{bottom:259.693500px;}
.y38_c01027{bottom:260.058000px;}
.y37_c01027{bottom:260.503500px;}
.y36_c01027{bottom:260.743500px;}
.y35_c01027{bottom:261.087000px;}
.y34_c01027{bottom:261.208500px;}
.y33_c01027{bottom:261.781500px;}
.y32_c01027{bottom:262.032000px;}
.y31_c01027{bottom:262.215000px;}
.y30_c01027{bottom:262.495500px;}
.y2f_c01027{bottom:262.653000px;}
.y2e_c01027{bottom:262.981500px;}
.y2d_c01027{bottom:284.923500px;}
.y2c_c01027{bottom:305.757000px;}
.y2b_c01027{bottom:306.093000px;}
.y2a_c01027{bottom:306.547500px;}
.y29_c01027{bottom:306.712500px;}
.y28_c01027{bottom:306.889500px;}
.y27_c01027{bottom:307.251000px;}
.y26_c01027{bottom:307.492500px;}
.y25_c01027{bottom:307.834500px;}
.y24_c01027{bottom:308.284500px;}
.y23_c01027{bottom:308.508000px;}
.y22_c01027{bottom:327.688500px;}
.y21_c01027{bottom:328.033500px;}
.y20_c01027{bottom:328.378500px;}
.y1f_c01027{bottom:328.950000px;}
.y1e_c01027{bottom:329.509500px;}
.y1d_c01027{bottom:329.839500px;}
.y1c_c01027{bottom:330.174000px;}
.y1b_c01027{bottom:330.643500px;}
.y1a_c01027{bottom:331.291500px;}
.y19_c01027{bottom:352.564500px;}
.y18_c01027{bottom:375.439500px;}
.y17_c01027{bottom:399.604500px;}
.y16_c01027{bottom:421.284000px;}
.y15_c01027{bottom:443.961000px;}
.y14_c01027{bottom:467.955000px;}
.y13_c01027{bottom:490.741500px;}
.y12_c01027{bottom:513.264000px;}
.y11_c01027{bottom:537.030000px;}
.y10_c01027{bottom:559.623000px;}
.yf_c01027{bottom:583.729500px;}
.ye_c01027{bottom:606.630000px;}
.yd_c01027{bottom:629.311500px;}
.yc_c01027{bottom:651.961500px;}
.yb_c01027{bottom:674.181000px;}
.ya_c01027{bottom:697.077000px;}
.y9_c01027{bottom:719.772000px;}
.y8_c01027{bottom:742.953000px;}
.y7_c01027{bottom:765.651000px;}
.y6_c01027{bottom:788.917500px;}
.y5_c01027{bottom:811.777500px;}
.y4_c01027{bottom:835.270500px;}
.y3_c01027{bottom:879.456000px;}
.y2_c01027{bottom:904.905000px;}
.y1_c01027{bottom:922.590000px;}
.h3_c01027{height:33.600000px;}
.h2_c01027{height:55.650000px;}
.he_c01027{height:59.850000px;}
.h13_c01027{height:63.000000px;}
.h12_c01027{height:64.050000px;}
.h6_c01027{height:65.100000px;}
.ha_c01027{height:66.150000px;}
.h7_c01027{height:67.200000px;}
.h10_c01027{height:68.250000px;}
.h9_c01027{height:69.300000px;}
.hb_c01027{height:70.350000px;}
.h5_c01027{height:71.400000px;}
.hc_c01027{height:72.450000px;}
.h11_c01027{height:73.500000px;}
.h8_c01027{height:74.550000px;}
.h14_c01027{height:85.050000px;}
.hf_c01027{height:86.100000px;}
.hd_c01027{height:95.550000px;}
.h4_c01027{height:138.600000px;}
.h0_c01027{height:1008.450000px;}
.h1_c01027{height:1008.750000px;}
.w1_c01027{width:700.500000px;}
.w0_c01027{width:700.650000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:72.900000px;}
.x6_c01027{left:75.600000px;}
.x5_c01027{left:82.080000px;}
.x7_c01027{left:124.740000px;}
.x8a_c01027{left:135.375000px;}
.x7f_c01027{left:138.777000px;}
.x76_c01027{left:147.828000px;}
.x8f_c01027{left:149.578500px;}
.x80_c01027{left:157.137000px;}
.x60_c01027{left:160.380000px;}
.x4f_c01027{left:161.460000px;}
.x31_c01027{left:162.540000px;}
.x1c_c01027{left:163.620000px;}
.xd_c01027{left:164.700000px;}
.x43_c01027{left:175.230000px;}
.x8_c01027{left:181.170000px;}
.x70_c01027{left:183.330000px;}
.x81_c01027{left:184.947000px;}
.x2c_c01027{left:186.570000px;}
.x1d_c01027{left:189.540000px;}
.x83_c01027{left:193.426500px;}
.x12_c01027{left:195.750000px;}
.x37_c01027{left:198.990000px;}
.x44_c01027{left:201.150000px;}
.x65_c01027{left:202.230000px;}
.x3b_c01027{left:204.120000px;}
.x6b_c01027{left:207.360000px;}
.x84_c01027{left:209.115000px;}
.x61_c01027{left:210.870000px;}
.x2d_c01027{left:212.490000px;}
.x13_c01027{left:224.370000px;}
.x69_c01027{left:225.990000px;}
.xe_c01027{left:232.470000px;}
.x7c_c01027{left:234.237000px;}
.x9_c01027{left:236.250000px;}
.x2_c01027{left:241.110000px;}
.x82_c01027{left:243.537000px;}
.x32_c01027{left:244.890000px;}
.x23_c01027{left:245.970000px;}
.x3c_c01027{left:249.210000px;}
.x45_c01027{left:251.910000px;}
.x1e_c01027{left:255.150000px;}
.x77_c01027{left:259.602000px;}
.x50_c01027{left:263.790000px;}
.x38_c01027{left:265.680000px;}
.x24_c01027{left:267.840000px;}
.x3_c01027{left:268.920000px;}
.x2e_c01027{left:271.080000px;}
.xf_c01027{left:272.160000px;}
.x3d_c01027{left:274.860000px;}
.x8b_c01027{left:276.322500px;}
.x14_c01027{left:278.910000px;}
.x46_c01027{left:281.070000px;}
.x59_c01027{left:282.150000px;}
.x33_c01027{left:283.500000px;}
.x18_c01027{left:285.120000px;}
.x25_c01027{left:288.900000px;}
.x66_c01027{left:292.140000px;}
.x62_c01027{left:299.160000px;}
.x15_c01027{left:301.050000px;}
.x56_c01027{left:303.750000px;}
.x4d_c01027{left:305.640000px;}
.xc_c01027{left:306.990000px;}
.x71_c01027{left:309.960000px;}
.x3e_c01027{left:312.120000px;}
.x90_c01027{left:314.548500px;}
.x4_c01027{left:315.630000px;}
.x5a_c01027{left:321.030000px;}
.x1f_c01027{left:323.460000px;}
.x78_c01027{left:326.061000px;}
.x26_c01027{left:329.670000px;}
.x34_c01027{left:331.560000px;}
.x8c_c01027{left:335.679000px;}
.x16_c01027{left:336.690000px;}
.x10_c01027{left:337.770000px;}
.x7d_c01027{left:339.267000px;}
.x19_c01027{left:340.470000px;}
.x5e_c01027{left:342.630000px;}
.x2f_c01027{left:345.330000px;}
.x91_c01027{left:348.028500px;}
.x27_c01027{left:349.920000px;}
.x5b_c01027{left:355.860000px;}
.x8d_c01027{left:357.864000px;}
.x7e_c01027{left:358.971000px;}
.x57_c01027{left:360.180000px;}
.x63_c01027{left:362.070000px;}
.x5f_c01027{left:364.500000px;}
.x20_c01027{left:367.200000px;}
.xa_c01027{left:369.090000px;}
.x28_c01027{left:373.680000px;}
.x39_c01027{left:375.300000px;}
.x11_c01027{left:377.460000px;}
.x35_c01027{left:379.620000px;}
.x47_c01027{left:381.240000px;}
.x21_c01027{left:384.480000px;}
.x87_c01027{left:386.098500px;}
.x1a_c01027{left:388.800000px;}
.x58_c01027{left:392.040000px;}
.x3f_c01027{left:397.170000px;}
.x17_c01027{left:399.330000px;}
.x29_c01027{left:401.490000px;}
.x48_c01027{left:408.780000px;}
.x88_c01027{left:412.558500px;}
.x6c_c01027{left:414.180000px;}
.x72_c01027{left:417.420000px;}
.x8e_c01027{left:419.458500px;}
.xb_c01027{left:420.660000px;}
.x3a_c01027{left:422.280000px;}
.x54_c01027{left:424.170000px;}
.x30_c01027{left:425.250000px;}
.x49_c01027{left:426.330000px;}
.x1b_c01027{left:428.490000px;}
.x67_c01027{left:432.270000px;}
.x5c_c01027{left:436.860000px;}
.x79_c01027{left:439.152000px;}
.x73_c01027{left:442.260000px;}
.x40_c01027{left:449.280000px;}
.x85_c01027{left:452.959500px;}
.x2a_c01027{left:455.490000px;}
.x22_c01027{left:458.730000px;}
.x51_c01027{left:464.670000px;}
.x36_c01027{left:467.640000px;}
.x74_c01027{left:470.610000px;}
.x7a_c01027{left:473.710500px;}
.x64_c01027{left:477.630000px;}
.x6a_c01027{left:479.520000px;}
.x4a_c01027{left:484.920000px;}
.x86_c01027{left:489.381000px;}
.x55_c01027{left:491.130000px;}
.x6d_c01027{left:492.210000px;}
.x52_c01027{left:494.100000px;}
.x68_c01027{left:497.610000px;}
.x2b_c01027{left:501.120000px;}
.x75_c01027{left:503.010000px;}
.x7b_c01027{left:508.267500px;}
.x41_c01027{left:509.760000px;}
.x6e_c01027{left:511.920000px;}
.x53_c01027{left:522.720000px;}
.x5d_c01027{left:535.140000px;}
.x89_c01027{left:548.098500px;}
.x6f_c01027{left:552.150000px;}
.x4b_c01027{left:561.330000px;}
.x4c_c01027{left:632.340000px;}
.x4e_c01027{left:635.580000px;}
.x42_c01027{left:640.170000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ws0_c01027{word-spacing:0.000000pt;}
.fs1_c01027{font-size:29.866667pt;}
.fs0_c01027{font-size:49.466667pt;}
.fsc_c01027{font-size:53.200000pt;}
.fs11_c01027{font-size:56.000000pt;}
.fs10_c01027{font-size:56.933333pt;}
.fs4_c01027{font-size:57.866667pt;}
.fs8_c01027{font-size:58.800000pt;}
.fs5_c01027{font-size:59.733333pt;}
.fse_c01027{font-size:60.666667pt;}
.fs7_c01027{font-size:61.600000pt;}
.fs9_c01027{font-size:62.533333pt;}
.fs3_c01027{font-size:63.466667pt;}
.fsa_c01027{font-size:64.400000pt;}
.fsf_c01027{font-size:65.333333pt;}
.fs6_c01027{font-size:66.266667pt;}
.fs12_c01027{font-size:75.600000pt;}
.fsd_c01027{font-size:76.533333pt;}
.fsb_c01027{font-size:84.933333pt;}
.fs2_c01027{font-size:123.200000pt;}
.y0_c01027{bottom:0.000000pt;}
.y45_c01027{bottom:150.121333pt;}
.y44_c01027{bottom:167.889333pt;}
.y43_c01027{bottom:168.105333pt;}
.y42_c01027{bottom:168.708000pt;}
.y41_c01027{bottom:168.925333pt;}
.y40_c01027{bottom:169.505333pt;}
.y3f_c01027{bottom:170.012000pt;}
.y3e_c01027{bottom:170.492000pt;}
.y3d_c01027{bottom:170.645333pt;}
.y3c_c01027{bottom:170.882667pt;}
.y3b_c01027{bottom:189.934667pt;}
.y3a_c01027{bottom:212.617333pt;}
.y39_c01027{bottom:230.838667pt;}
.y38_c01027{bottom:231.162667pt;}
.y37_c01027{bottom:231.558667pt;}
.y36_c01027{bottom:231.772000pt;}
.y35_c01027{bottom:232.077333pt;}
.y34_c01027{bottom:232.185333pt;}
.y33_c01027{bottom:232.694667pt;}
.y32_c01027{bottom:232.917333pt;}
.y31_c01027{bottom:233.080000pt;}
.y30_c01027{bottom:233.329333pt;}
.y2f_c01027{bottom:233.469333pt;}
.y2e_c01027{bottom:233.761333pt;}
.y2d_c01027{bottom:253.265333pt;}
.y2c_c01027{bottom:271.784000pt;}
.y2b_c01027{bottom:272.082667pt;}
.y2a_c01027{bottom:272.486667pt;}
.y29_c01027{bottom:272.633333pt;}
.y28_c01027{bottom:272.790667pt;}
.y27_c01027{bottom:273.112000pt;}
.y26_c01027{bottom:273.326667pt;}
.y25_c01027{bottom:273.630667pt;}
.y24_c01027{bottom:274.030667pt;}
.y23_c01027{bottom:274.229333pt;}
.y22_c01027{bottom:291.278667pt;}
.y21_c01027{bottom:291.585333pt;}
.y20_c01027{bottom:291.892000pt;}
.y1f_c01027{bottom:292.400000pt;}
.y1e_c01027{bottom:292.897333pt;}
.y1d_c01027{bottom:293.190667pt;}
.y1c_c01027{bottom:293.488000pt;}
.y1b_c01027{bottom:293.905333pt;}
.y1a_c01027{bottom:294.481333pt;}
.y19_c01027{bottom:313.390667pt;}
.y18_c01027{bottom:333.724000pt;}
.y17_c01027{bottom:355.204000pt;}
.y16_c01027{bottom:374.474667pt;}
.y15_c01027{bottom:394.632000pt;}
.y14_c01027{bottom:415.960000pt;}
.y13_c01027{bottom:436.214667pt;}
.y12_c01027{bottom:456.234667pt;}
.y11_c01027{bottom:477.360000pt;}
.y10_c01027{bottom:497.442667pt;}
.yf_c01027{bottom:518.870667pt;}
.ye_c01027{bottom:539.226667pt;}
.yd_c01027{bottom:559.388000pt;}
.yc_c01027{bottom:579.521333pt;}
.yb_c01027{bottom:599.272000pt;}
.ya_c01027{bottom:619.624000pt;}
.y9_c01027{bottom:639.797333pt;}
.y8_c01027{bottom:660.402667pt;}
.y7_c01027{bottom:680.578667pt;}
.y6_c01027{bottom:701.260000pt;}
.y5_c01027{bottom:721.580000pt;}
.y4_c01027{bottom:742.462667pt;}
.y3_c01027{bottom:781.738667pt;}
.y2_c01027{bottom:804.360000pt;}
.y1_c01027{bottom:820.080000pt;}
.h3_c01027{height:29.866667pt;}
.h2_c01027{height:49.466667pt;}
.he_c01027{height:53.200000pt;}
.h13_c01027{height:56.000000pt;}
.h12_c01027{height:56.933333pt;}
.h6_c01027{height:57.866667pt;}
.ha_c01027{height:58.800000pt;}
.h7_c01027{height:59.733333pt;}
.h10_c01027{height:60.666667pt;}
.h9_c01027{height:61.600000pt;}
.hb_c01027{height:62.533333pt;}
.h5_c01027{height:63.466667pt;}
.hc_c01027{height:64.400000pt;}
.h11_c01027{height:65.333333pt;}
.h8_c01027{height:66.266667pt;}
.h14_c01027{height:75.600000pt;}
.hf_c01027{height:76.533333pt;}
.hd_c01027{height:84.933333pt;}
.h4_c01027{height:123.200000pt;}
.h0_c01027{height:896.400000pt;}
.h1_c01027{height:896.666667pt;}
.w1_c01027{width:622.666667pt;}
.w0_c01027{width:622.800000pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:64.800000pt;}
.x6_c01027{left:67.200000pt;}
.x5_c01027{left:72.960000pt;}
.x7_c01027{left:110.880000pt;}
.x8a_c01027{left:120.333333pt;}
.x7f_c01027{left:123.357333pt;}
.x76_c01027{left:131.402667pt;}
.x8f_c01027{left:132.958667pt;}
.x80_c01027{left:139.677333pt;}
.x60_c01027{left:142.560000pt;}
.x4f_c01027{left:143.520000pt;}
.x31_c01027{left:144.480000pt;}
.x1c_c01027{left:145.440000pt;}
.xd_c01027{left:146.400000pt;}
.x43_c01027{left:155.760000pt;}
.x8_c01027{left:161.040000pt;}
.x70_c01027{left:162.960000pt;}
.x81_c01027{left:164.397333pt;}
.x2c_c01027{left:165.840000pt;}
.x1d_c01027{left:168.480000pt;}
.x83_c01027{left:171.934667pt;}
.x12_c01027{left:174.000000pt;}
.x37_c01027{left:176.880000pt;}
.x44_c01027{left:178.800000pt;}
.x65_c01027{left:179.760000pt;}
.x3b_c01027{left:181.440000pt;}
.x6b_c01027{left:184.320000pt;}
.x84_c01027{left:185.880000pt;}
.x61_c01027{left:187.440000pt;}
.x2d_c01027{left:188.880000pt;}
.x13_c01027{left:199.440000pt;}
.x69_c01027{left:200.880000pt;}
.xe_c01027{left:206.640000pt;}
.x7c_c01027{left:208.210667pt;}
.x9_c01027{left:210.000000pt;}
.x2_c01027{left:214.320000pt;}
.x82_c01027{left:216.477333pt;}
.x32_c01027{left:217.680000pt;}
.x23_c01027{left:218.640000pt;}
.x3c_c01027{left:221.520000pt;}
.x45_c01027{left:223.920000pt;}
.x1e_c01027{left:226.800000pt;}
.x77_c01027{left:230.757333pt;}
.x50_c01027{left:234.480000pt;}
.x38_c01027{left:236.160000pt;}
.x24_c01027{left:238.080000pt;}
.x3_c01027{left:239.040000pt;}
.x2e_c01027{left:240.960000pt;}
.xf_c01027{left:241.920000pt;}
.x3d_c01027{left:244.320000pt;}
.x8b_c01027{left:245.620000pt;}
.x14_c01027{left:247.920000pt;}
.x46_c01027{left:249.840000pt;}
.x59_c01027{left:250.800000pt;}
.x33_c01027{left:252.000000pt;}
.x18_c01027{left:253.440000pt;}
.x25_c01027{left:256.800000pt;}
.x66_c01027{left:259.680000pt;}
.x62_c01027{left:265.920000pt;}
.x15_c01027{left:267.600000pt;}
.x56_c01027{left:270.000000pt;}
.x4d_c01027{left:271.680000pt;}
.xc_c01027{left:272.880000pt;}
.x71_c01027{left:275.520000pt;}
.x3e_c01027{left:277.440000pt;}
.x90_c01027{left:279.598667pt;}
.x4_c01027{left:280.560000pt;}
.x5a_c01027{left:285.360000pt;}
.x1f_c01027{left:287.520000pt;}
.x78_c01027{left:289.832000pt;}
.x26_c01027{left:293.040000pt;}
.x34_c01027{left:294.720000pt;}
.x8c_c01027{left:298.381333pt;}
.x16_c01027{left:299.280000pt;}
.x10_c01027{left:300.240000pt;}
.x7d_c01027{left:301.570667pt;}
.x19_c01027{left:302.640000pt;}
.x5e_c01027{left:304.560000pt;}
.x2f_c01027{left:306.960000pt;}
.x91_c01027{left:309.358667pt;}
.x27_c01027{left:311.040000pt;}
.x5b_c01027{left:316.320000pt;}
.x8d_c01027{left:318.101333pt;}
.x7e_c01027{left:319.085333pt;}
.x57_c01027{left:320.160000pt;}
.x63_c01027{left:321.840000pt;}
.x5f_c01027{left:324.000000pt;}
.x20_c01027{left:326.400000pt;}
.xa_c01027{left:328.080000pt;}
.x28_c01027{left:332.160000pt;}
.x39_c01027{left:333.600000pt;}
.x11_c01027{left:335.520000pt;}
.x35_c01027{left:337.440000pt;}
.x47_c01027{left:338.880000pt;}
.x21_c01027{left:341.760000pt;}
.x87_c01027{left:343.198667pt;}
.x1a_c01027{left:345.600000pt;}
.x58_c01027{left:348.480000pt;}
.x3f_c01027{left:353.040000pt;}
.x17_c01027{left:354.960000pt;}
.x29_c01027{left:356.880000pt;}
.x48_c01027{left:363.360000pt;}
.x88_c01027{left:366.718667pt;}
.x6c_c01027{left:368.160000pt;}
.x72_c01027{left:371.040000pt;}
.x8e_c01027{left:372.852000pt;}
.xb_c01027{left:373.920000pt;}
.x3a_c01027{left:375.360000pt;}
.x54_c01027{left:377.040000pt;}
.x30_c01027{left:378.000000pt;}
.x49_c01027{left:378.960000pt;}
.x1b_c01027{left:380.880000pt;}
.x67_c01027{left:384.240000pt;}
.x5c_c01027{left:388.320000pt;}
.x79_c01027{left:390.357333pt;}
.x73_c01027{left:393.120000pt;}
.x40_c01027{left:399.360000pt;}
.x85_c01027{left:402.630667pt;}
.x2a_c01027{left:404.880000pt;}
.x22_c01027{left:407.760000pt;}
.x51_c01027{left:413.040000pt;}
.x36_c01027{left:415.680000pt;}
.x74_c01027{left:418.320000pt;}
.x7a_c01027{left:421.076000pt;}
.x64_c01027{left:424.560000pt;}
.x6a_c01027{left:426.240000pt;}
.x4a_c01027{left:431.040000pt;}
.x86_c01027{left:435.005333pt;}
.x55_c01027{left:436.560000pt;}
.x6d_c01027{left:437.520000pt;}
.x52_c01027{left:439.200000pt;}
.x68_c01027{left:442.320000pt;}
.x2b_c01027{left:445.440000pt;}
.x75_c01027{left:447.120000pt;}
.x7b_c01027{left:451.793333pt;}
.x41_c01027{left:453.120000pt;}
.x6e_c01027{left:455.040000pt;}
.x53_c01027{left:464.640000pt;}
.x5d_c01027{left:475.680000pt;}
.x89_c01027{left:487.198667pt;}
.x6f_c01027{left:490.800000pt;}
.x4b_c01027{left:498.960000pt;}
.x4c_c01027{left:562.080000pt;}
.x4e_c01027{left:564.960000pt;}
.x42_c01027{left:569.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_c01028 {
    display:none;
  }
  .loading-indicator_c01028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01028" -> "#page-container .classname_c01028")
 */
.pf_c01028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01028 {overflow:visible;}
  }
}
.c_c01028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01028:after { /* webkit #35443 */
  content: '';
}
.t_c01028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01028 { /* info for Javascript */
  display:none;
}
.l_c01028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.000000;font-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_c01028{transform:matrix(0.007415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007415,0.000000,0.000000,0.250000,0,0);}
.ma2_c01028{transform:matrix(0.007970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007970,0.000000,0.000000,0.250000,0,0);}
.me_c01028{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);}
.m7a_c01028{transform:matrix(0.018550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018550,0.000000,0.000000,0.250000,0,0);}
.m10d_c01028{transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020605,0.000000,0.000000,0.250000,0,0);}
.ma1_c01028{transform:matrix(0.045535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045535,0.000000,0.000000,0.250000,0,0);}
.m5d_c01028{transform:matrix(0.049695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049695,0.000000,0.000000,0.250000,0,0);}
.m50_c01028{transform:matrix(0.054790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054790,0.000000,0.000000,0.250000,0,0);}
.mcb_c01028{transform:matrix(0.055375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055375,0.000000,0.000000,0.250000,0,0);}
.me9_c01028{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_c01028{transform:matrix(0.116885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116885,0.000000,0.000000,0.250000,0,0);}
.mcc_c01028{transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);}
.m70_c01028{transform:matrix(0.132785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132785,0.000000,0.000000,0.250000,0,0);}
.md7_c01028{transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);}
.m52_c01028{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.m9b_c01028{transform:matrix(0.143595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143595,0.000000,0.000000,0.250000,0,0);}
.m1b_c01028{transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147540,0.000000,0.000000,0.250000,0,0);}
.mdc_c01028{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);}
.m97_c01028{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);}
.m7f_c01028{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);}
.m48_c01028{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);}
.m17_c01028{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);}
.m1d_c01028{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);}
.m91_c01028{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);}
.mc6_c01028{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);}
.mb6_c01028{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);}
.m95_c01028{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);}
.me4_c01028{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);}
.m40_c01028{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);}
.m9e_c01028{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);}
.m84_c01028{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);}
.m44_c01028{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_c01028{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);}
.md8_c01028{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.md9_c01028{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);}
.m87_c01028{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);}
.me5_c01028{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);}
.m2b_c01028{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);}
.m98_c01028{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);}
.m82_c01028{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);}
.mbf_c01028{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);}
.me6_c01028{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);}
.m38_c01028{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);}
.mdd_c01028{transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);}
.m2c_c01028{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);}
.m3a_c01028{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);}
.mda_c01028{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);}
.m20_c01028{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);}
.mdb_c01028{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);}
.mb2_c01028{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);}
.mb7_c01028{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);}
.me3_c01028{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);}
.mb_c01028{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);}
.me7_c01028{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);}
.m116_c01028{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);}
.m61_c01028{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);}
.m6c_c01028{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);}
.m26_c01028{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);}
.m89_c01028{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);}
.m72_c01028{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);}
.m30_c01028{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);}
.m24_c01028{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);}
.m77_c01028{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);}
.m36_c01028{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);}
.m32_c01028{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);}
.m88_c01028{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);}
.m3c_c01028{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);}
.m80_c01028{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);}
.mc0_c01028{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);}
.me2_c01028{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);}
.m3e_c01028{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.md_c01028{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);}
.ma5_c01028{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);}
.mc4_c01028{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);}
.m3b_c01028{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);}
.m8d_c01028{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);}
.m63_c01028{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);}
.mc8_c01028{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);}
.md1_c01028{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);}
.md2_c01028{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);}
.m81_c01028{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);}
.mf9_c01028{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);}
.m96_c01028{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);}
.m41_c01028{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);}
.m1c_c01028{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);}
.m8c_c01028{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);}
.mb8_c01028{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_c01028{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);}
.mb4_c01028{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);}
.m99_c01028{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);}
.m1f_c01028{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);}
.m92_c01028{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);}
.m7e_c01028{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);}
.m7c_c01028{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);}
.mbc_c01028{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);}
.m42_c01028{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);}
.mc7_c01028{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);}
.m49_c01028{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);}
.mb1_c01028{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);}
.mb3_c01028{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);}
.mae_c01028{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);}
.m76_c01028{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);}
.md0_c01028{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);}
.m2e_c01028{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);}
.m28_c01028{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);}
.m69_c01028{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);}
.mff_c01028{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);}
.m83_c01028{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);}
.mc_c01028{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);}
.m75_c01028{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);}
.m43_c01028{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);}
.m12_c01028{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);}
.m93_c01028{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);}
.m15_c01028{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);}
.m21_c01028{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);}
.mad_c01028{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);}
.mca_c01028{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);}
.m8b_c01028{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);}
.m119_c01028{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);}
.m5a_c01028{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);}
.m47_c01028{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);}
.m108_c01028{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);}
.m103_c01028{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);}
.ma0_c01028{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);}
.me1_c01028{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);}
.m100_c01028{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);}
.m4d_c01028{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);}
.mf6_c01028{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);}
.m1e_c01028{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);}
.ma4_c01028{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);}
.ma6_c01028{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);}
.m9a_c01028{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);}
.m10a_c01028{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);}
.ma3_c01028{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);}
.mac_c01028{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);}
.me0_c01028{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);}
.mf_c01028{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);}
.me8_c01028{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);}
.mc9_c01028{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);}
.m6d_c01028{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);}
.ma8_c01028{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);}
.m78_c01028{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);}
.ma7_c01028{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);}
.m6b_c01028{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_c01028{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);}
.m7b_c01028{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);}
.m23_c01028{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);}
.maf_c01028{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);}
.m10_c01028{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);}
.ma9_c01028{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);}
.mbe_c01028{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);}
.m11c_c01028{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);}
.mc3_c01028{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);}
.m6e_c01028{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);}
.m8_c01028{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);}
.m8e_c01028{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);}
.m14_c01028{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_c01028{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);}
.m86_c01028{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);}
.m6a_c01028{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);}
.mfb_c01028{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);}
.m90_c01028{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);}
.mf8_c01028{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);}
.ma_c01028{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);}
.mf5_c01028{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);}
.mce_c01028{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);}
.maa_c01028{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);}
.m22_c01028{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);}
.md6_c01028{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);}
.m74_c01028{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);}
.m31_c01028{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);}
.m110_c01028{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);}
.m66_c01028{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);}
.m10b_c01028{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);}
.m19_c01028{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);}
.m35_c01028{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);}
.m13_c01028{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);}
.m11_c01028{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);}
.mfc_c01028{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c01028{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);}
.m117_c01028{transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224815,0.000000,0.000000,0.250000,0,0);}
.m37_c01028{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);}
.md5_c01028{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);}
.mbd_c01028{transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227455,0.000000,0.000000,0.250000,0,0);}
.m111_c01028{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);}
.m56_c01028{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);}
.m107_c01028{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);}
.mc2_c01028{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.m58_c01028{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);}
.mcd_c01028{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);}
.mdf_c01028{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);}
.mab_c01028{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);}
.m3d_c01028{transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232630,0.000000,0.000000,0.250000,0,0);}
.m57_c01028{transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);}
.m2f_c01028{transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);}
.m79_c01028{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);}
.m64_c01028{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);}
.m115_c01028{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m6f_c01028{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);}
.m55_c01028{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);}
.m2a_c01028{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.m16_c01028{transform:matrix(0.238585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238585,0.000000,0.000000,0.250000,0,0);}
.mb9_c01028{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);}
.m4c_c01028{transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);}
.m25_c01028{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);}
.m10e_c01028{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);}
.m27_c01028{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);}
.m59_c01028{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);}
.m33_c01028{transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);}
.m10f_c01028{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);}
.m9_c01028{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);}
.m3f_c01028{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m65_c01028{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);}
.m39_c01028{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m4b_c01028{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);}
.m51_c01028{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.mf7_c01028{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);}
.med_c01028{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);}
.mba_c01028{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.mc5_c01028{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m118_c01028{transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257965,0.000000,0.000000,0.250000,0,0);}
.mec_c01028{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);}
.m73_c01028{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);}
.mf1_c01028{transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261450,0.000000,0.000000,0.250000,0,0);}
.m71_c01028{transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);}
.m4f_c01028{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);}
.m11b_c01028{transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);}
.mbb_c01028{transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);}
.m34_c01028{transform:matrix(0.274385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274385,0.000000,0.000000,0.250000,0,0);}
.md3_c01028{transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275025,0.000000,0.000000,0.250000,0,0);}
.m18_c01028{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.mf3_c01028{transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275440,0.000000,0.000000,0.250000,0,0);}
.mf4_c01028{transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);}
.mfd_c01028{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);}
.m114_c01028{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);}
.m9f_c01028{transform:matrix(0.285675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285675,0.000000,0.000000,0.250000,0,0);}
.m112_c01028{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);}
.mf2_c01028{transform:matrix(0.293200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293200,0.000000,0.000000,0.250000,0,0);}
.mc1_c01028{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m0_c01028{transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294385,0.000000,0.000000,0.250000,0,0);}
.m4a_c01028{transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294435,0.000000,0.000000,0.250000,0,0);}
.m5e_c01028{transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);}
.m4e_c01028{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.m60_c01028{transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299990,0.000000,0.000000,0.250000,0,0);}
.m7d_c01028{transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300780,0.000000,0.000000,0.250000,0,0);}
.mb0_c01028{transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304485,0.000000,0.000000,0.250000,0,0);}
.mcf_c01028{transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305495,0.000000,0.000000,0.250000,0,0);}
.m8a_c01028{transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);}
.m53_c01028{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01028{transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310330,0.000000,0.000000,0.250000,0,0);}
.mef_c01028{transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311035,0.000000,0.000000,0.250000,0,0);}
.mde_c01028{transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313435,0.000000,0.000000,0.250000,0,0);}
.m54_c01028{transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315155,0.000000,0.000000,0.250000,0,0);}
.m106_c01028{transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319095,0.000000,0.000000,0.250000,0,0);}
.m109_c01028{transform:matrix(0.319655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319655,0.000000,0.000000,0.250000,0,0);}
.m5b_c01028{transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325630,0.000000,0.000000,0.250000,0,0);}
.mee_c01028{transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327225,0.000000,0.000000,0.250000,0,0);}
.m68_c01028{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);}
.m5f_c01028{transform:matrix(0.333320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333320,0.000000,0.000000,0.250000,0,0);}
.m45_c01028{transform:matrix(0.334295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334295,0.000000,0.000000,0.250000,0,0);}
.m11d_c01028{transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335495,0.000000,0.000000,0.250000,0,0);}
.mfe_c01028{transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);}
.m46_c01028{transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340310,0.000000,0.000000,0.250000,0,0);}
.mfa_c01028{transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);}
.md4_c01028{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);}
.m3_c01028{transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);}
.m11a_c01028{transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360680,0.000000,0.000000,0.250000,0,0);}
.m5_c01028{transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377900,0.000000,0.000000,0.250000,0,0);}
.m101_c01028{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);}
.m6_c01028{transform:matrix(0.409945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409945,0.000000,0.000000,0.250000,0,0);}
.m104_c01028{transform:matrix(0.411675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411675,0.000000,0.000000,0.250000,0,0);}
.m7_c01028{transform:matrix(0.416710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416710,0.000000,0.000000,0.250000,0,0);}
.m113_c01028{transform:matrix(0.451555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451555,0.000000,0.000000,0.250000,0,0);}
.meb_c01028{transform:matrix(0.460570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460570,0.000000,0.000000,0.250000,0,0);}
.mf0_c01028{transform:matrix(0.496505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496505,0.000000,0.000000,0.250000,0,0);}
.m8f_c01028{transform:matrix(0.498595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498595,0.000000,0.000000,0.250000,0,0);}
.m9c_c01028{transform:matrix(0.503720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503720,0.000000,0.000000,0.250000,0,0);}
.m105_c01028{transform:matrix(0.509995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509995,0.000000,0.000000,0.250000,0,0);}
.mea_c01028{transform:matrix(0.510280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510280,0.000000,0.000000,0.250000,0,0);}
.m5c_c01028{transform:matrix(0.553170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553170,0.000000,0.000000,0.250000,0,0);}
.m102_c01028{transform:matrix(0.562280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562280,0.000000,0.000000,0.250000,0,0);}
.m4_c01028{transform:matrix(0.650605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650605,0.000000,0.000000,0.250000,0,0);}
.m9d_c01028{transform:matrix(0.695110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695110,0.000000,0.000000,0.250000,0,0);}
.m67_c01028{transform:matrix(0.717795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717795,0.000000,0.000000,0.250000,0,0);}
.m1_c01028{transform:matrix(0.723135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723135,0.000000,0.000000,0.250000,0,0);}
.m94_c01028{transform:matrix(0.759055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759055,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls0_c01028{letter-spacing:0.000000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01028{word-spacing:0.000000px;}
.fc0_c01028{color:transparent;}
.fs0_c01028{font-size:22.050000px;}
.fs12_c01028{font-size:47.250000px;}
.fs13_c01028{font-size:49.350000px;}
.fs11_c01028{font-size:51.450000px;}
.fsf_c01028{font-size:52.500000px;}
.fsd_c01028{font-size:53.550000px;}
.fse_c01028{font-size:54.600000px;}
.fs3_c01028{font-size:61.950000px;}
.fsb_c01028{font-size:64.050000px;}
.fs9_c01028{font-size:65.100000px;}
.fsa_c01028{font-size:66.150000px;}
.fs8_c01028{font-size:67.200000px;}
.fs2_c01028{font-size:68.250000px;}
.fs7_c01028{font-size:69.300000px;}
.fs5_c01028{font-size:70.350000px;}
.fs4_c01028{font-size:71.400000px;}
.fs6_c01028{font-size:72.450000px;}
.fsc_c01028{font-size:75.600000px;}
.fs10_c01028{font-size:110.250000px;}
.fs1_c01028{font-size:131.250000px;}
.y0_c01028{bottom:0.000000px;}
.y2a_c01028{bottom:91.387500px;}
.y29_c01028{bottom:104.499000px;}
.y2d_c01028{bottom:160.104000px;}
.y28_c01028{bottom:160.549500px;}
.y2c_c01028{bottom:178.591500px;}
.y27_c01028{bottom:178.842000px;}
.y2b_c01028{bottom:195.855000px;}
.y26_c01028{bottom:196.744500px;}
.y25_c01028{bottom:251.610000px;}
.y24_c01028{bottom:275.053500px;}
.y23_c01028{bottom:297.399000px;}
.y22_c01028{bottom:320.086500px;}
.y21_c01028{bottom:343.252500px;}
.y20_c01028{bottom:365.761500px;}
.y1f_c01028{bottom:388.887000px;}
.y1e_c01028{bottom:412.023000px;}
.y1d_c01028{bottom:434.812500px;}
.y1c_c01028{bottom:457.267500px;}
.y1b_c01028{bottom:479.850000px;}
.y1a_c01028{bottom:502.950000px;}
.y19_c01028{bottom:525.688500px;}
.y18_c01028{bottom:548.209500px;}
.y17_c01028{bottom:571.314000px;}
.y16_c01028{bottom:594.243000px;}
.y15_c01028{bottom:616.966500px;}
.y14_c01028{bottom:639.172500px;}
.y13_c01028{bottom:661.974000px;}
.y12_c01028{bottom:684.655500px;}
.y11_c01028{bottom:707.194500px;}
.y10_c01028{bottom:730.185000px;}
.yf_c01028{bottom:752.781000px;}
.ye_c01028{bottom:775.764000px;}
.y4_c01028{bottom:797.310000px;}
.y5_c01028{bottom:797.475000px;}
.y6_c01028{bottom:798.178500px;}
.y7_c01028{bottom:798.448500px;}
.y8_c01028{bottom:798.876000px;}
.y9_c01028{bottom:799.204500px;}
.ya_c01028{bottom:799.479000px;}
.yb_c01028{bottom:800.233500px;}
.yc_c01028{bottom:800.482500px;}
.yd_c01028{bottom:800.874000px;}
.y3_c01028{bottom:820.578000px;}
.y2_c01028{bottom:865.104000px;}
.y1_c01028{bottom:956.610000px;}
.h2_c01028{height:22.050000px;}
.h14_c01028{height:47.250000px;}
.h15_c01028{height:49.350000px;}
.h13_c01028{height:51.450000px;}
.h11_c01028{height:52.500000px;}
.hf_c01028{height:53.550000px;}
.h10_c01028{height:54.600000px;}
.h5_c01028{height:61.950000px;}
.hd_c01028{height:64.050000px;}
.hb_c01028{height:65.100000px;}
.hc_c01028{height:66.150000px;}
.ha_c01028{height:67.200000px;}
.h4_c01028{height:68.250000px;}
.h9_c01028{height:69.300000px;}
.h7_c01028{height:70.350000px;}
.h6_c01028{height:71.400000px;}
.h8_c01028{height:72.450000px;}
.he_c01028{height:75.600000px;}
.h12_c01028{height:110.250000px;}
.h3_c01028{height:131.250000px;}
.h1_c01028{height:1005.000000px;}
.h0_c01028{height:1005.150000px;}
.w0_c01028{width:715.200000px;}
.w1_c01028{width:715.500000px;}
.x0_c01028{left:0.000000px;}
.x2_c01028{left:45.360000px;}
.x1_c01028{left:81.540000px;}
.x9a_c01028{left:108.000000px;}
.x9b_c01028{left:117.180000px;}
.x98_c01028{left:128.520000px;}
.x57_c01028{left:133.381500px;}
.xf_c01028{left:135.054000px;}
.x44_c01028{left:137.701500px;}
.x4d_c01028{left:141.481500px;}
.x6_c01028{left:144.990000px;}
.x4e_c01028{left:148.231500px;}
.x10_c01028{left:149.991000px;}
.x2d_c01028{left:151.741500px;}
.x71_c01028{left:153.361500px;}
.x9f_c01028{left:154.710000px;}
.x58_c01028{left:171.181500px;}
.x7d_c01028{left:172.261500px;}
.x3e_c01028{left:173.881500px;}
.x19_c01028{left:176.851500px;}
.x3_c01028{left:180.900000px;}
.xa0_c01028{left:184.950000px;}
.x99_c01028{left:186.030000px;}
.x9c_c01028{left:187.110000px;}
.x6b_c01028{left:189.001500px;}
.x4_c01028{left:190.890000px;}
.x2e_c01028{left:194.671500px;}
.x3f_c01028{left:196.831500px;}
.x7_c01028{left:199.260000px;}
.x84_c01028{left:204.121500px;}
.x45_c01028{left:205.201500px;}
.x80_c01028{left:208.711500px;}
.x6c_c01028{left:211.141500px;}
.x4f_c01028{left:212.221500px;}
.x11_c01028{left:213.979500px;}
.x38_c01028{left:220.051500px;}
.x46_c01028{left:228.421500px;}
.x50_c01028{left:230.311500px;}
.x59_c01028{left:231.391500px;}
.x64_c01028{left:232.471500px;}
.x21_c01028{left:233.821500px;}
.x6f_c01028{left:235.981500px;}
.x12_c01028{left:238.567500px;}
.x8_c01028{left:239.760000px;}
.x39_c01028{left:240.841500px;}
.x70_c01028{left:245.431500px;}
.x33_c01028{left:248.671500px;}
.x76_c01028{left:250.831500px;}
.x1a_c01028{left:255.691500px;}
.x2f_c01028{left:257.581500px;}
.x51_c01028{left:259.201500px;}
.x72_c01028{left:261.631500px;}
.x5e_c01028{left:262.711500px;}
.x81_c01028{left:267.571500px;}
.x40_c01028{left:269.461500px;}
.x9d_c01028{left:271.350000px;}
.x5a_c01028{left:272.971500px;}
.x47_c01028{left:275.131500px;}
.x13_c01028{left:277.437000px;}
.x28_c01028{left:278.641500px;}
.x22_c01028{left:279.721500px;}
.x5f_c01028{left:283.231500px;}
.x67_c01028{left:286.201500px;}
.x52_c01028{left:288.901500px;}
.x30_c01028{left:289.981500px;}
.x41_c01028{left:291.061500px;}
.x3a_c01028{left:294.841500px;}
.x78_c01028{left:295.921500px;}
.x48_c01028{left:298.351500px;}
.x29_c01028{left:299.701500px;}
.x1b_c01028{left:301.591500px;}
.x14_c01028{left:307.368000px;}
.x34_c01028{left:308.881500px;}
.x42_c01028{left:312.121500px;}
.x3b_c01028{left:315.631500px;}
.x23_c01028{left:318.871500px;}
.xa1_c01028{left:319.950000px;}
.x9e_c01028{left:321.570000px;}
.x73_c01028{left:323.461500px;}
.x1c_c01028{left:325.081500px;}
.x9_c01028{left:329.400000px;}
.x15_c01028{left:332.256000px;}
.x56_c01028{left:334.801500px;}
.x2a_c01028{left:339.121500px;}
.x5b_c01028{left:345.061500px;}
.x35_c01028{left:347.221500px;}
.x60_c01028{left:348.301500px;}
.x89_c01028{left:351.540000px;}
.x65_c01028{left:353.701500px;}
.x82_c01028{left:355.321500px;}
.x74_c01028{left:356.401500px;}
.x1d_c01028{left:358.021500px;}
.x68_c01028{left:359.371500px;}
.x43_c01028{left:362.611500px;}
.x24_c01028{left:365.581500px;}
.x7e_c01028{left:367.741500px;}
.x3c_c01028{left:369.901500px;}
.x31_c01028{left:372.061500px;}
.xa_c01028{left:374.220000px;}
.x1e_c01028{left:375.841500px;}
.x5_c01028{left:378.270000px;}
.x8a_c01028{left:379.620000px;}
.x2b_c01028{left:382.051500px;}
.x6d_c01028{left:385.021500px;}
.x79_c01028{left:386.641500px;}
.x66_c01028{left:387.991500px;}
.x8d_c01028{left:390.960000px;}
.x8e_c01028{left:397.440000px;}
.x3d_c01028{left:398.791500px;}
.x16_c01028{left:400.827000px;}
.x61_c01028{left:404.191500px;}
.xb_c01028{left:406.620000px;}
.x36_c01028{left:408.511500px;}
.x49_c01028{left:412.291500px;}
.x25_c01028{left:417.961500px;}
.x75_c01028{left:422.011500px;}
.x17_c01028{left:423.504000px;}
.x5c_c01028{left:424.981500px;}
.x7f_c01028{left:427.141500px;}
.x1f_c01028{left:429.301500px;}
.x62_c01028{left:432.001500px;}
.x37_c01028{left:433.891500px;}
.x77_c01028{left:435.241500px;}
.x7b_c01028{left:437.401500px;}
.xc_c01028{left:439.560000px;}
.x92_c01028{left:440.640000px;}
.x85_c01028{left:449.011500px;}
.x53_c01028{left:453.331500px;}
.x20_c01028{left:455.761500px;}
.x7a_c01028{left:457.921500px;}
.x18_c01028{left:459.066000px;}
.x63_c01028{left:460.081500px;}
.x5d_c01028{left:461.701500px;}
.x4a_c01028{left:466.291500px;}
.x26_c01028{left:471.421500px;}
.x54_c01028{left:473.041500px;}
.xd_c01028{left:476.820000px;}
.x2c_c01028{left:479.521500px;}
.x6e_c01028{left:480.871500px;}
.x32_c01028{left:482.491500px;}
.x4b_c01028{left:484.921500px;}
.x69_c01028{left:487.621500px;}
.x8f_c01028{left:490.320000px;}
.x8b_c01028{left:506.250000px;}
.xe_c01028{left:513.000000px;}
.x6a_c01028{left:514.891500px;}
.x90_c01028{left:516.780000px;}
.x27_c01028{left:518.941500px;}
.x8c_c01028{left:525.690000px;}
.x7c_c01028{left:527.581500px;}
.x4c_c01028{left:531.631500px;}
.x55_c01028{left:533.521500px;}
.x86_c01028{left:543.511500px;}
.x93_c01028{left:547.830000px;}
.x87_c01028{left:553.501500px;}
.x96_c01028{left:559.980000px;}
.x95_c01028{left:561.060000px;}
.x91_c01028{left:568.890000px;}
.x94_c01028{left:570.240000px;}
.x83_c01028{left:606.421500px;}
.x97_c01028{left:607.770000px;}
.x88_c01028{left:615.061500px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ws0_c01028{word-spacing:0.000000pt;}
.fs0_c01028{font-size:19.600000pt;}
.fs12_c01028{font-size:42.000000pt;}
.fs13_c01028{font-size:43.866667pt;}
.fs11_c01028{font-size:45.733333pt;}
.fsf_c01028{font-size:46.666667pt;}
.fsd_c01028{font-size:47.600000pt;}
.fse_c01028{font-size:48.533333pt;}
.fs3_c01028{font-size:55.066667pt;}
.fsb_c01028{font-size:56.933333pt;}
.fs9_c01028{font-size:57.866667pt;}
.fsa_c01028{font-size:58.800000pt;}
.fs8_c01028{font-size:59.733333pt;}
.fs2_c01028{font-size:60.666667pt;}
.fs7_c01028{font-size:61.600000pt;}
.fs5_c01028{font-size:62.533333pt;}
.fs4_c01028{font-size:63.466667pt;}
.fs6_c01028{font-size:64.400000pt;}
.fsc_c01028{font-size:67.200000pt;}
.fs10_c01028{font-size:98.000000pt;}
.fs1_c01028{font-size:116.666667pt;}
.y0_c01028{bottom:0.000000pt;}
.y2a_c01028{bottom:81.233333pt;}
.y29_c01028{bottom:92.888000pt;}
.y2d_c01028{bottom:142.314667pt;}
.y28_c01028{bottom:142.710667pt;}
.y2c_c01028{bottom:158.748000pt;}
.y27_c01028{bottom:158.970667pt;}
.y2b_c01028{bottom:174.093333pt;}
.y26_c01028{bottom:174.884000pt;}
.y25_c01028{bottom:223.653333pt;}
.y24_c01028{bottom:244.492000pt;}
.y23_c01028{bottom:264.354667pt;}
.y22_c01028{bottom:284.521333pt;}
.y21_c01028{bottom:305.113333pt;}
.y20_c01028{bottom:325.121333pt;}
.y1f_c01028{bottom:345.677333pt;}
.y1e_c01028{bottom:366.242667pt;}
.y1d_c01028{bottom:386.500000pt;}
.y1c_c01028{bottom:406.460000pt;}
.y1b_c01028{bottom:426.533333pt;}
.y1a_c01028{bottom:447.066667pt;}
.y19_c01028{bottom:467.278667pt;}
.y18_c01028{bottom:487.297333pt;}
.y17_c01028{bottom:507.834667pt;}
.y16_c01028{bottom:528.216000pt;}
.y15_c01028{bottom:548.414667pt;}
.y14_c01028{bottom:568.153333pt;}
.y13_c01028{bottom:588.421333pt;}
.y12_c01028{bottom:608.582667pt;}
.y11_c01028{bottom:628.617333pt;}
.y10_c01028{bottom:649.053333pt;}
.yf_c01028{bottom:669.138667pt;}
.ye_c01028{bottom:689.568000pt;}
.y4_c01028{bottom:708.720000pt;}
.y5_c01028{bottom:708.866667pt;}
.y6_c01028{bottom:709.492000pt;}
.y7_c01028{bottom:709.732000pt;}
.y8_c01028{bottom:710.112000pt;}
.y9_c01028{bottom:710.404000pt;}
.ya_c01028{bottom:710.648000pt;}
.yb_c01028{bottom:711.318667pt;}
.yc_c01028{bottom:711.540000pt;}
.yd_c01028{bottom:711.888000pt;}
.y3_c01028{bottom:729.402667pt;}
.y2_c01028{bottom:768.981333pt;}
.y1_c01028{bottom:850.320000pt;}
.h2_c01028{height:19.600000pt;}
.h14_c01028{height:42.000000pt;}
.h15_c01028{height:43.866667pt;}
.h13_c01028{height:45.733333pt;}
.h11_c01028{height:46.666667pt;}
.hf_c01028{height:47.600000pt;}
.h10_c01028{height:48.533333pt;}
.h5_c01028{height:55.066667pt;}
.hd_c01028{height:56.933333pt;}
.hb_c01028{height:57.866667pt;}
.hc_c01028{height:58.800000pt;}
.ha_c01028{height:59.733333pt;}
.h4_c01028{height:60.666667pt;}
.h9_c01028{height:61.600000pt;}
.h7_c01028{height:62.533333pt;}
.h6_c01028{height:63.466667pt;}
.h8_c01028{height:64.400000pt;}
.he_c01028{height:67.200000pt;}
.h12_c01028{height:98.000000pt;}
.h3_c01028{height:116.666667pt;}
.h1_c01028{height:893.333333pt;}
.h0_c01028{height:893.466667pt;}
.w0_c01028{width:635.733333pt;}
.w1_c01028{width:636.000000pt;}
.x0_c01028{left:0.000000pt;}
.x2_c01028{left:40.320000pt;}
.x1_c01028{left:72.480000pt;}
.x9a_c01028{left:96.000000pt;}
.x9b_c01028{left:104.160000pt;}
.x98_c01028{left:114.240000pt;}
.x57_c01028{left:118.561333pt;}
.xf_c01028{left:120.048000pt;}
.x44_c01028{left:122.401333pt;}
.x4d_c01028{left:125.761333pt;}
.x6_c01028{left:128.880000pt;}
.x4e_c01028{left:131.761333pt;}
.x10_c01028{left:133.325333pt;}
.x2d_c01028{left:134.881333pt;}
.x71_c01028{left:136.321333pt;}
.x9f_c01028{left:137.520000pt;}
.x58_c01028{left:152.161333pt;}
.x7d_c01028{left:153.121333pt;}
.x3e_c01028{left:154.561333pt;}
.x19_c01028{left:157.201333pt;}
.x3_c01028{left:160.800000pt;}
.xa0_c01028{left:164.400000pt;}
.x99_c01028{left:165.360000pt;}
.x9c_c01028{left:166.320000pt;}
.x6b_c01028{left:168.001333pt;}
.x4_c01028{left:169.680000pt;}
.x2e_c01028{left:173.041333pt;}
.x3f_c01028{left:174.961333pt;}
.x7_c01028{left:177.120000pt;}
.x84_c01028{left:181.441333pt;}
.x45_c01028{left:182.401333pt;}
.x80_c01028{left:185.521333pt;}
.x6c_c01028{left:187.681333pt;}
.x4f_c01028{left:188.641333pt;}
.x11_c01028{left:190.204000pt;}
.x38_c01028{left:195.601333pt;}
.x46_c01028{left:203.041333pt;}
.x50_c01028{left:204.721333pt;}
.x59_c01028{left:205.681333pt;}
.x64_c01028{left:206.641333pt;}
.x21_c01028{left:207.841333pt;}
.x6f_c01028{left:209.761333pt;}
.x12_c01028{left:212.060000pt;}
.x8_c01028{left:213.120000pt;}
.x39_c01028{left:214.081333pt;}
.x70_c01028{left:218.161333pt;}
.x33_c01028{left:221.041333pt;}
.x76_c01028{left:222.961333pt;}
.x1a_c01028{left:227.281333pt;}
.x2f_c01028{left:228.961333pt;}
.x51_c01028{left:230.401333pt;}
.x72_c01028{left:232.561333pt;}
.x5e_c01028{left:233.521333pt;}
.x81_c01028{left:237.841333pt;}
.x40_c01028{left:239.521333pt;}
.x9d_c01028{left:241.200000pt;}
.x5a_c01028{left:242.641333pt;}
.x47_c01028{left:244.561333pt;}
.x13_c01028{left:246.610667pt;}
.x28_c01028{left:247.681333pt;}
.x22_c01028{left:248.641333pt;}
.x5f_c01028{left:251.761333pt;}
.x67_c01028{left:254.401333pt;}
.x52_c01028{left:256.801333pt;}
.x30_c01028{left:257.761333pt;}
.x41_c01028{left:258.721333pt;}
.x3a_c01028{left:262.081333pt;}
.x78_c01028{left:263.041333pt;}
.x48_c01028{left:265.201333pt;}
.x29_c01028{left:266.401333pt;}
.x1b_c01028{left:268.081333pt;}
.x14_c01028{left:273.216000pt;}
.x34_c01028{left:274.561333pt;}
.x42_c01028{left:277.441333pt;}
.x3b_c01028{left:280.561333pt;}
.x23_c01028{left:283.441333pt;}
.xa1_c01028{left:284.400000pt;}
.x9e_c01028{left:285.840000pt;}
.x73_c01028{left:287.521333pt;}
.x1c_c01028{left:288.961333pt;}
.x9_c01028{left:292.800000pt;}
.x15_c01028{left:295.338667pt;}
.x56_c01028{left:297.601333pt;}
.x2a_c01028{left:301.441333pt;}
.x5b_c01028{left:306.721333pt;}
.x35_c01028{left:308.641333pt;}
.x60_c01028{left:309.601333pt;}
.x89_c01028{left:312.480000pt;}
.x65_c01028{left:314.401333pt;}
.x82_c01028{left:315.841333pt;}
.x74_c01028{left:316.801333pt;}
.x1d_c01028{left:318.241333pt;}
.x68_c01028{left:319.441333pt;}
.x43_c01028{left:322.321333pt;}
.x24_c01028{left:324.961333pt;}
.x7e_c01028{left:326.881333pt;}
.x3c_c01028{left:328.801333pt;}
.x31_c01028{left:330.721333pt;}
.xa_c01028{left:332.640000pt;}
.x1e_c01028{left:334.081333pt;}
.x5_c01028{left:336.240000pt;}
.x8a_c01028{left:337.440000pt;}
.x2b_c01028{left:339.601333pt;}
.x6d_c01028{left:342.241333pt;}
.x79_c01028{left:343.681333pt;}
.x66_c01028{left:344.881333pt;}
.x8d_c01028{left:347.520000pt;}
.x8e_c01028{left:353.280000pt;}
.x3d_c01028{left:354.481333pt;}
.x16_c01028{left:356.290667pt;}
.x61_c01028{left:359.281333pt;}
.xb_c01028{left:361.440000pt;}
.x36_c01028{left:363.121333pt;}
.x49_c01028{left:366.481333pt;}
.x25_c01028{left:371.521333pt;}
.x75_c01028{left:375.121333pt;}
.x17_c01028{left:376.448000pt;}
.x5c_c01028{left:377.761333pt;}
.x7f_c01028{left:379.681333pt;}
.x1f_c01028{left:381.601333pt;}
.x62_c01028{left:384.001333pt;}
.x37_c01028{left:385.681333pt;}
.x77_c01028{left:386.881333pt;}
.x7b_c01028{left:388.801333pt;}
.xc_c01028{left:390.720000pt;}
.x92_c01028{left:391.680000pt;}
.x85_c01028{left:399.121333pt;}
.x53_c01028{left:402.961333pt;}
.x20_c01028{left:405.121333pt;}
.x7a_c01028{left:407.041333pt;}
.x18_c01028{left:408.058667pt;}
.x63_c01028{left:408.961333pt;}
.x5d_c01028{left:410.401333pt;}
.x4a_c01028{left:414.481333pt;}
.x26_c01028{left:419.041333pt;}
.x54_c01028{left:420.481333pt;}
.xd_c01028{left:423.840000pt;}
.x2c_c01028{left:426.241333pt;}
.x6e_c01028{left:427.441333pt;}
.x32_c01028{left:428.881333pt;}
.x4b_c01028{left:431.041333pt;}
.x69_c01028{left:433.441333pt;}
.x8f_c01028{left:435.840000pt;}
.x8b_c01028{left:450.000000pt;}
.xe_c01028{left:456.000000pt;}
.x6a_c01028{left:457.681333pt;}
.x90_c01028{left:459.360000pt;}
.x27_c01028{left:461.281333pt;}
.x8c_c01028{left:467.280000pt;}
.x7c_c01028{left:468.961333pt;}
.x4c_c01028{left:472.561333pt;}
.x55_c01028{left:474.241333pt;}
.x86_c01028{left:483.121333pt;}
.x93_c01028{left:486.960000pt;}
.x87_c01028{left:492.001333pt;}
.x96_c01028{left:497.760000pt;}
.x95_c01028{left:498.720000pt;}
.x91_c01028{left:505.680000pt;}
.x94_c01028{left:506.880000pt;}
.x83_c01028{left:539.041333pt;}
.x97_c01028{left:540.240000pt;}
.x88_c01028{left:546.721333pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.000000;font-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_c01029{transform:matrix(0.013144,0.000381,-0.007247,0.249895,0,0);-ms-transform:matrix(0.013144,0.000381,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.013144,0.000381,-0.007247,0.249895,0,0);}
.mf0_c01029{transform:matrix(0.021946,0.000636,-0.007247,0.249895,0,0);-ms-transform:matrix(0.021946,0.000636,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.021946,0.000636,-0.007247,0.249895,0,0);}
.m82_c01029{transform:matrix(0.045082,0.001579,-0.008753,0.249847,0,0);-ms-transform:matrix(0.045082,0.001579,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.045082,0.001579,-0.008753,0.249847,0,0);}
.mcf_c01029{transform:matrix(0.049579,0.001041,-0.005249,0.249945,0,0);-ms-transform:matrix(0.049579,0.001041,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.049579,0.001041,-0.005249,0.249945,0,0);}
.mcc_c01029{transform:matrix(0.066105,0.001388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.066105,0.001388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.066105,0.001388,-0.005249,0.249945,0,0);}
.m118_c01029{transform:matrix(0.066386,-0.002791,0.010501,0.249779,0,0);-ms-transform:matrix(0.066386,-0.002791,0.010501,0.249779,0,0);-webkit-transform:matrix(0.066386,-0.002791,0.010501,0.249779,0,0);}
.m33_c01029{transform:matrix(0.130396,0.002478,-0.004749,0.249955,0,0);-ms-transform:matrix(0.130396,0.002478,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.130396,0.002478,-0.004749,0.249955,0,0);}
.mc7_c01029{transform:matrix(0.133236,0.002798,-0.005249,0.249945,0,0);-ms-transform:matrix(0.133236,0.002798,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.133236,0.002798,-0.005249,0.249945,0,0);}
.m9d_c01029{transform:matrix(0.137264,0.003569,-0.006498,0.249916,0,0);-ms-transform:matrix(0.137264,0.003569,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.137264,0.003569,-0.006498,0.249916,0,0);}
.m6c_c01029{transform:matrix(0.143287,0.003296,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143287,0.003296,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143287,0.003296,-0.005748,0.249934,0,0);}
.m4a_c01029{transform:matrix(0.144331,0.002887,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144331,0.002887,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144331,0.002887,-0.004999,0.249950,0,0);}
.m2c_c01029{transform:matrix(0.147078,0.002794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.147078,0.002794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.147078,0.002794,-0.004749,0.249955,0,0);}
.mcb_c01029{transform:matrix(0.147812,0.003104,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147812,0.003104,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147812,0.003104,-0.005249,0.249945,0,0);}
.m66_c01029{transform:matrix(0.149181,0.003431,-0.005748,0.249934,0,0);-ms-transform:matrix(0.149181,0.003431,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.149181,0.003431,-0.005748,0.249934,0,0);}
.m4f_c01029{transform:matrix(0.149525,0.002991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149525,0.002991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149525,0.002991,-0.004999,0.249950,0,0);}
.m6e_c01029{transform:matrix(0.149840,0.003446,-0.005748,0.249934,0,0);-ms-transform:matrix(0.149840,0.003446,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.149840,0.003446,-0.005748,0.249934,0,0);}
.ma3_c01029{transform:matrix(0.150059,0.003902,-0.006498,0.249916,0,0);-ms-transform:matrix(0.150059,0.003902,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.150059,0.003902,-0.006498,0.249916,0,0);}
.m5c_c01029{transform:matrix(0.150090,0.004052,-0.006748,0.249909,0,0);-ms-transform:matrix(0.150090,0.004052,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.150090,0.004052,-0.006748,0.249909,0,0);}
.m17_c01029{transform:matrix(0.151108,0.002267,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151108,0.002267,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151108,0.002267,-0.003750,0.249972,0,0);}
.m4d_c01029{transform:matrix(0.152025,0.003040,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152025,0.003040,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152025,0.003040,-0.004999,0.249950,0,0);}
.m68_c01029{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);}
.m6b_c01029{transform:matrix(0.153679,0.003535,-0.005748,0.249934,0,0);-ms-transform:matrix(0.153679,0.003535,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.153679,0.003535,-0.005748,0.249934,0,0);}
.m2b_c01029{transform:matrix(0.154532,0.002936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154532,0.002936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154532,0.002936,-0.004749,0.249955,0,0);}
.m2a_c01029{transform:matrix(0.155132,0.002948,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155132,0.002948,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155132,0.002948,-0.004749,0.249955,0,0);}
.m38_c01029{transform:matrix(0.155642,0.002957,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155642,0.002957,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155642,0.002957,-0.004749,0.249955,0,0);}
.mea_c01029{transform:matrix(0.155725,0.004516,-0.007247,0.249895,0,0);-ms-transform:matrix(0.155725,0.004516,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.155725,0.004516,-0.007247,0.249895,0,0);}
.m22_c01029{transform:matrix(0.156197,0.002343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156197,0.002343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156197,0.002343,-0.003750,0.249972,0,0);}
.m42_c01029{transform:matrix(0.156809,0.003136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156809,0.003136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156809,0.003136,-0.004999,0.249950,0,0);}
.maa_c01029{transform:matrix(0.158516,0.004121,-0.006498,0.249916,0,0);-ms-transform:matrix(0.158516,0.004121,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.158516,0.004121,-0.006498,0.249916,0,0);}
.m18_c01029{transform:matrix(0.158667,0.002380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158667,0.002380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158667,0.002380,-0.003750,0.249972,0,0);}
.med_c01029{transform:matrix(0.158693,0.004602,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158693,0.004602,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158693,0.004602,-0.007247,0.249895,0,0);}
.m35_c01029{transform:matrix(0.158906,0.003019,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158906,0.003019,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158906,0.003019,-0.004749,0.249955,0,0);}
.mb2_c01029{transform:matrix(0.159811,0.004155,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159811,0.004155,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159811,0.004155,-0.006498,0.249916,0,0);}
.m3f_c01029{transform:matrix(0.160456,0.003049,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160456,0.003049,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160456,0.003049,-0.004749,0.249955,0,0);}
.m90_c01029{transform:matrix(0.160981,0.005640,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160981,0.005640,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160981,0.005640,-0.008753,0.249847,0,0);}
.m40_c01029{transform:matrix(0.161271,0.003064,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161271,0.003064,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161271,0.003064,-0.004749,0.249955,0,0);}
.m1d_c01029{transform:matrix(0.161457,0.002422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161457,0.002422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161457,0.002422,-0.003750,0.249972,0,0);}
.mf8_c01029{transform:matrix(0.162012,0.004698,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162012,0.004698,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162012,0.004698,-0.007247,0.249895,0,0);}
.me5_c01029{transform:matrix(0.162762,0.004720,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162762,0.004720,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162762,0.004720,-0.007247,0.249895,0,0);}
.me9_c01029{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);}
.m1e_c01029{transform:matrix(0.164686,0.002470,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164686,0.002470,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164686,0.002470,-0.003750,0.249972,0,0);}
.m4c_c01029{transform:matrix(0.165642,0.003313,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165642,0.003313,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165642,0.003313,-0.004999,0.249950,0,0);}
.m63_c01029{transform:matrix(0.165781,0.003813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.165781,0.003813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.165781,0.003813,-0.005748,0.249934,0,0);}
.m8d_c01029{transform:matrix(0.166218,0.005823,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166218,0.005823,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166218,0.005823,-0.008753,0.249847,0,0);}
.meb_c01029{transform:matrix(0.166830,0.004838,-0.007247,0.249895,0,0);-ms-transform:matrix(0.166830,0.004838,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.166830,0.004838,-0.007247,0.249895,0,0);}
.m77_c01029{transform:matrix(0.167186,0.003845,-0.005748,0.249934,0,0);-ms-transform:matrix(0.167186,0.003845,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.167186,0.003845,-0.005748,0.249934,0,0);}
.m85_c01029{transform:matrix(0.167372,0.005864,-0.008753,0.249847,0,0);-ms-transform:matrix(0.167372,0.005864,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.167372,0.005864,-0.008753,0.249847,0,0);}
.m61_c01029{transform:matrix(0.168086,0.003866,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168086,0.003866,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168086,0.003866,-0.005748,0.249934,0,0);}
.m55_c01029{transform:matrix(0.168426,0.003369,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168426,0.003369,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168426,0.003369,-0.004999,0.249950,0,0);}
.m81_c01029{transform:matrix(0.169051,0.005923,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169051,0.005923,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169051,0.005923,-0.008753,0.249847,0,0);}
.m23_c01029{transform:matrix(0.169181,0.002538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169181,0.002538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169181,0.002538,-0.003750,0.249972,0,0);}
.me6_c01029{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);}
.m10b_c01029{transform:matrix(0.169632,0.007981,-0.011749,0.249724,0,0);-ms-transform:matrix(0.169632,0.007981,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.169632,0.007981,-0.011749,0.249724,0,0);}
.mb_c01029{transform:matrix(0.169961,0.002549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169961,0.002549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169961,0.002549,-0.003750,0.249972,0,0);}
.m10a_c01029{transform:matrix(0.170178,0.004935,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170178,0.004935,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170178,0.004935,-0.007247,0.249895,0,0);}
.mf6_c01029{transform:matrix(0.170593,0.004947,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170593,0.004947,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170593,0.004947,-0.007247,0.249895,0,0);}
.ma_c01029{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);}
.ma9_c01029{transform:matrix(0.171027,0.004447,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171027,0.004447,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171027,0.004447,-0.006498,0.249916,0,0);}
.m117_c01029{transform:matrix(0.171420,0.008065,-0.011749,0.249724,0,0);-ms-transform:matrix(0.171420,0.008065,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.171420,0.008065,-0.011749,0.249724,0,0);}
.mbc_c01029{transform:matrix(0.172142,0.004476,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172142,0.004476,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172142,0.004476,-0.006498,0.249916,0,0);}
.m10f_c01029{transform:matrix(0.173138,0.008146,-0.011749,0.249724,0,0);-ms-transform:matrix(0.173138,0.008146,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.173138,0.008146,-0.011749,0.249724,0,0);}
.m1a_c01029{transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173840,0.002608,-0.003750,0.249972,0,0);}
.m110_c01029{transform:matrix(0.174427,0.008206,-0.011749,0.249724,0,0);-ms-transform:matrix(0.174427,0.008206,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.174427,0.008206,-0.011749,0.249724,0,0);}
.m4e_c01029{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);}
.m93_c01029{transform:matrix(0.175043,0.006133,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175043,0.006133,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175043,0.006133,-0.008753,0.249847,0,0);}
.mc0_c01029{transform:matrix(0.175291,0.004558,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175291,0.004558,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175291,0.004558,-0.006498,0.249916,0,0);}
.m41_c01029{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);}
.m1c_c01029{transform:matrix(0.176180,0.002643,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176180,0.002643,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176180,0.002643,-0.003750,0.249972,0,0);}
.mf9_c01029{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);}
.m91_c01029{transform:matrix(0.176582,0.006187,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176582,0.006187,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176582,0.006187,-0.008753,0.249847,0,0);}
.mad_c01029{transform:matrix(0.176755,0.004596,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176755,0.004596,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176755,0.004596,-0.006498,0.249916,0,0);}
.m6d_c01029{transform:matrix(0.176963,0.004070,-0.005748,0.249934,0,0);-ms-transform:matrix(0.176963,0.004070,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.176963,0.004070,-0.005748,0.249934,0,0);}
.m20_c01029{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);}
.mbd_c01029{transform:matrix(0.177385,0.004612,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177385,0.004612,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177385,0.004612,-0.006498,0.249916,0,0);}
.m6_c01029{transform:matrix(0.177625,0.002664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177625,0.002664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177625,0.002664,-0.003750,0.249972,0,0);}
.m60_c01029{transform:matrix(0.178073,0.004096,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178073,0.004096,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178073,0.004096,-0.005748,0.249934,0,0);}
.mb6_c01029{transform:matrix(0.178920,0.004652,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178920,0.004652,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178920,0.004652,-0.006498,0.249916,0,0);}
.m4_c01029{transform:matrix(0.179210,0.002688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179210,0.002688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179210,0.002688,-0.003750,0.249972,0,0);}
.m51_c01029{transform:matrix(0.179219,0.003584,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179219,0.003584,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179219,0.003584,-0.004999,0.249950,0,0);}
.mb4_c01029{transform:matrix(0.179354,0.004663,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179354,0.004663,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179354,0.004663,-0.006498,0.249916,0,0);}
.m1f_c01029{transform:matrix(0.179410,0.002691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179410,0.002691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179410,0.002691,-0.003750,0.249972,0,0);}
.m9b_c01029{transform:matrix(0.179609,0.004670,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179609,0.004670,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179609,0.004670,-0.006498,0.249916,0,0);}
.m8a_c01029{transform:matrix(0.179970,0.006305,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179970,0.006305,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179970,0.006305,-0.008753,0.249847,0,0);}
.m31_c01029{transform:matrix(0.180033,0.003421,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180033,0.003421,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180033,0.003421,-0.004749,0.249955,0,0);}
.m19_c01029{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);}
.m28_c01029{transform:matrix(0.180357,0.003427,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180357,0.003427,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180357,0.003427,-0.004749,0.249955,0,0);}
.m3a_c01029{transform:matrix(0.180797,0.003435,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180797,0.003435,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180797,0.003435,-0.004749,0.249955,0,0);}
.m8c_c01029{transform:matrix(0.181244,0.006350,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181244,0.006350,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181244,0.006350,-0.008753,0.249847,0,0);}
.mbf_c01029{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);}
.m29_c01029{transform:matrix(0.181742,0.003453,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181742,0.003453,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181742,0.003453,-0.004749,0.249955,0,0);}
.m24_c01029{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);}
.m21_c01029{transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182120,0.002732,-0.003750,0.249972,0,0);}
.m5a_c01029{transform:matrix(0.182124,0.004917,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182124,0.004917,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182124,0.004917,-0.006748,0.249909,0,0);}
.mac_c01029{transform:matrix(0.182318,0.004740,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182318,0.004740,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182318,0.004740,-0.006498,0.249916,0,0);}
.mbb_c01029{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);}
.mbe_c01029{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);}
.m54_c01029{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);}
.m62_c01029{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);}
.m10d_c01029{transform:matrix(0.183497,0.008633,-0.011749,0.249724,0,0);-ms-transform:matrix(0.183497,0.008633,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.183497,0.008633,-0.011749,0.249724,0,0);}
.m50_c01029{transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);}
.ma1_c01029{transform:matrix(0.184218,0.004790,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184218,0.004790,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184218,0.004790,-0.006498,0.249916,0,0);}
.m10_c01029{transform:matrix(0.184284,0.002764,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184284,0.002764,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184284,0.002764,-0.003750,0.249972,0,0);}
.m71_c01029{transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184401,0.004241,-0.005748,0.249934,0,0);}
.m78_c01029{transform:matrix(0.184421,0.004242,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184421,0.004242,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184421,0.004242,-0.005748,0.249934,0,0);}
.mc2_c01029{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);}
.m4b_c01029{transform:matrix(0.185293,0.003706,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185293,0.003706,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185293,0.003706,-0.004999,0.249950,0,0);}
.mab_c01029{transform:matrix(0.185362,0.004819,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185362,0.004819,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185362,0.004819,-0.006498,0.249916,0,0);}
.m32_c01029{transform:matrix(0.186261,0.003539,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186261,0.003539,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186261,0.003539,-0.004749,0.249955,0,0);}
.m43_c01029{transform:matrix(0.187078,0.003742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187078,0.003742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187078,0.003742,-0.004999,0.249950,0,0);}
.m34_c01029{transform:matrix(0.187166,0.003556,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187166,0.003556,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187166,0.003556,-0.004749,0.249955,0,0);}
.m3b_c01029{transform:matrix(0.187321,0.003559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187321,0.003559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187321,0.003559,-0.004749,0.249955,0,0);}
.mf3_c01029{transform:matrix(0.187351,0.005433,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187351,0.005433,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187351,0.005433,-0.007247,0.249895,0,0);}
.m12_c01029{transform:matrix(0.187614,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187614,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187614,0.002814,-0.003750,0.249972,0,0);}
.m114_c01029{transform:matrix(0.187912,0.008841,-0.011749,0.249724,0,0);-ms-transform:matrix(0.187912,0.008841,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.187912,0.008841,-0.011749,0.249724,0,0);}
.m5e_c01029{transform:matrix(0.187942,0.005074,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187942,0.005074,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187942,0.005074,-0.006748,0.249909,0,0);}
.m25_c01029{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);}
.m108_c01029{transform:matrix(0.188811,0.005476,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188811,0.005476,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188811,0.005476,-0.007247,0.249895,0,0);}
.m27_c01029{transform:matrix(0.188871,0.003589,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188871,0.003589,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188871,0.003589,-0.004749,0.249955,0,0);}
.m84_c01029{transform:matrix(0.189294,0.006632,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189294,0.006632,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189294,0.006632,-0.008753,0.249847,0,0);}
.m9a_c01029{transform:matrix(0.189301,0.004922,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189301,0.004922,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189301,0.004922,-0.006498,0.249916,0,0);}
.m111_c01029{transform:matrix(0.189760,0.008928,-0.011749,0.249724,0,0);-ms-transform:matrix(0.189760,0.008928,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.189760,0.008928,-0.011749,0.249724,0,0);}
.m57_c01029{transform:matrix(0.189861,0.005126,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189861,0.005126,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189861,0.005126,-0.006748,0.249909,0,0);}
.m86_c01029{transform:matrix(0.189874,0.006652,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189874,0.006652,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189874,0.006652,-0.008753,0.249847,0,0);}
.m53_c01029{transform:matrix(0.189977,0.003800,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189977,0.003800,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189977,0.003800,-0.004999,0.249950,0,0);}
.m87_c01029{transform:matrix(0.190328,0.006668,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190328,0.006668,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190328,0.006668,-0.008753,0.249847,0,0);}
.mf_c01029{transform:matrix(0.190374,0.002856,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190374,0.002856,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190374,0.002856,-0.003750,0.249972,0,0);}
.mdf_c01029{transform:matrix(0.190635,0.005528,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190635,0.005528,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190635,0.005528,-0.007247,0.249895,0,0);}
.m100_c01029{transform:matrix(0.191265,0.005547,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191265,0.005547,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191265,0.005547,-0.007247,0.249895,0,0);}
.m52_c01029{transform:matrix(0.191532,0.003831,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191532,0.003831,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191532,0.003831,-0.004999,0.249950,0,0);}
.m37_c01029{transform:matrix(0.191580,0.003640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191580,0.003640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191580,0.003640,-0.004749,0.249955,0,0);}
.m8b_c01029{transform:matrix(0.191737,0.006718,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191737,0.006718,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191737,0.006718,-0.008753,0.249847,0,0);}
.m113_c01029{transform:matrix(0.191818,0.009024,-0.011749,0.249724,0,0);-ms-transform:matrix(0.191818,0.009024,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.191818,0.009024,-0.011749,0.249724,0,0);}
.m99_c01029{transform:matrix(0.193640,0.005035,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193640,0.005035,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193640,0.005035,-0.006498,0.249916,0,0);}
.m2d_c01029{transform:matrix(0.193715,0.003681,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193715,0.003681,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193715,0.003681,-0.004749,0.249955,0,0);}
.mae_c01029{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);}
.m36_c01029{transform:matrix(0.194490,0.003695,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194490,0.003695,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194490,0.003695,-0.004749,0.249955,0,0);}
.md3_c01029{transform:matrix(0.194608,0.005644,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194608,0.005644,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194608,0.005644,-0.007247,0.249895,0,0);}
.m7a_c01029{transform:matrix(0.195108,0.004487,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195108,0.004487,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195108,0.004487,-0.005748,0.249934,0,0);}
.m2e_c01029{transform:matrix(0.195180,0.003708,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195180,0.003708,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195180,0.003708,-0.004749,0.249955,0,0);}
.mb1_c01029{transform:matrix(0.195264,0.005077,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195264,0.005077,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195264,0.005077,-0.006498,0.249916,0,0);}
.m26_c01029{transform:matrix(0.197054,0.003744,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197054,0.003744,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197054,0.003744,-0.004749,0.249955,0,0);}
.m9_c01029{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);}
.me0_c01029{transform:matrix(0.197427,0.005725,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197427,0.005725,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197427,0.005725,-0.007247,0.249895,0,0);}
.m104_c01029{transform:matrix(0.198097,0.005745,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198097,0.005745,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198097,0.005745,-0.007247,0.249895,0,0);}
.m8_c01029{transform:matrix(0.198538,0.002978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198538,0.002978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198538,0.002978,-0.003750,0.249972,0,0);}
.me1_c01029{transform:matrix(0.198986,0.005771,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198986,0.005771,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198986,0.005771,-0.007247,0.249895,0,0);}
.m10c_c01029{transform:matrix(0.199210,0.009372,-0.011749,0.249724,0,0);-ms-transform:matrix(0.199210,0.009372,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.199210,0.009372,-0.011749,0.249724,0,0);}
.m5f_c01029{transform:matrix(0.199282,0.004583,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199282,0.004583,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199282,0.004583,-0.005748,0.249934,0,0);}
.mfb_c01029{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);}
.me8_c01029{transform:matrix(0.199816,0.005795,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199816,0.005795,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199816,0.005795,-0.007247,0.249895,0,0);}
.maf_c01029{transform:matrix(0.200122,0.005203,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200122,0.005203,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200122,0.005203,-0.006498,0.249916,0,0);}
.mf4_c01029{transform:matrix(0.200541,0.005816,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200541,0.005816,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200541,0.005816,-0.007247,0.249895,0,0);}
.mec_c01029{transform:matrix(0.200551,0.005816,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200551,0.005816,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200551,0.005816,-0.007247,0.249895,0,0);}
.mdd_c01029{transform:matrix(0.201085,0.005831,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201085,0.005831,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201085,0.005831,-0.007247,0.249895,0,0);}
.md2_c01029{transform:matrix(0.201295,0.005838,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201295,0.005838,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201295,0.005838,-0.007247,0.249895,0,0);}
.m3e_c01029{transform:matrix(0.201584,0.003830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201584,0.003830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201584,0.003830,-0.004749,0.249955,0,0);}
.m73_c01029{transform:matrix(0.201987,0.004646,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201987,0.004646,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201987,0.004646,-0.005748,0.249934,0,0);}
.m3d_c01029{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);}
.ma6_c01029{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);}
.me2_c01029{transform:matrix(0.203175,0.005892,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203175,0.005892,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203175,0.005892,-0.007247,0.249895,0,0);}
.m5_c01029{transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203707,0.003056,-0.003750,0.249972,0,0);}
.m11_c01029{transform:matrix(0.203722,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203722,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203722,0.003056,-0.003750,0.249972,0,0);}
.m106_c01029{transform:matrix(0.203729,0.005908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203729,0.005908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203729,0.005908,-0.007247,0.249895,0,0);}
.mba_c01029{transform:matrix(0.204201,0.005309,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204201,0.005309,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204201,0.005309,-0.006498,0.249916,0,0);}
.m83_c01029{transform:matrix(0.204405,0.007161,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204405,0.007161,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204405,0.007161,-0.008753,0.249847,0,0);}
.m2f_c01029{transform:matrix(0.204533,0.003886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204533,0.003886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204533,0.003886,-0.004749,0.249955,0,0);}
.m115_c01029{transform:matrix(0.204754,0.009633,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204754,0.009633,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204754,0.009633,-0.011749,0.249724,0,0);}
.m76_c01029{transform:matrix(0.204896,0.004713,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204896,0.004713,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204896,0.004713,-0.005748,0.249934,0,0);}
.ma8_c01029{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);}
.ma2_c01029{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);}
.m45_c01029{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);}
.m67_c01029{transform:matrix(0.206895,0.004759,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206895,0.004759,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206895,0.004759,-0.005748,0.249934,0,0);}
.m7f_c01029{transform:matrix(0.206978,0.007251,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206978,0.007251,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206978,0.007251,-0.008753,0.249847,0,0);}
.mff_c01029{transform:matrix(0.207063,0.006005,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207063,0.006005,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207063,0.006005,-0.007247,0.249895,0,0);}
.m59_c01029{transform:matrix(0.207534,0.005603,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207534,0.005603,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207534,0.005603,-0.006748,0.249909,0,0);}
.md7_c01029{transform:matrix(0.207668,0.006022,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207668,0.006022,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207668,0.006022,-0.007247,0.249895,0,0);}
.m9e_c01029{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);}
.m95_c01029{transform:matrix(0.208367,0.007300,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208367,0.007300,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208367,0.007300,-0.008753,0.249847,0,0);}
.m116_c01029{transform:matrix(0.208399,0.009805,-0.011749,0.249724,0,0);-ms-transform:matrix(0.208399,0.009805,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.208399,0.009805,-0.011749,0.249724,0,0);}
.m80_c01029{transform:matrix(0.208522,0.007306,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208522,0.007306,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208522,0.007306,-0.008753,0.249847,0,0);}
.mfa_c01029{transform:matrix(0.208637,0.006050,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208637,0.006050,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208637,0.006050,-0.007247,0.249895,0,0);}
.m97_c01029{transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);}
.m46_c01029{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);}
.ma0_c01029{transform:matrix(0.210439,0.005471,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210439,0.005471,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210439,0.005471,-0.006498,0.249916,0,0);}
.m9c_c01029{transform:matrix(0.210499,0.005473,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210499,0.005473,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210499,0.005473,-0.006498,0.249916,0,0);}
.m70_c01029{transform:matrix(0.211414,0.004863,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211414,0.004863,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211414,0.004863,-0.005748,0.249934,0,0);}
.m16_c01029{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);}
.m74_c01029{transform:matrix(0.211934,0.004874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211934,0.004874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211934,0.004874,-0.005748,0.249934,0,0);}
.mfe_c01029{transform:matrix(0.212236,0.006155,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212236,0.006155,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212236,0.006155,-0.007247,0.249895,0,0);}
.m3_c01029{transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212246,0.003184,-0.003750,0.249972,0,0);}
.mb9_c01029{transform:matrix(0.212938,0.005536,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212938,0.005536,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212938,0.005536,-0.006498,0.249916,0,0);}
.mb3_c01029{transform:matrix(0.213533,0.005552,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213533,0.005552,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213533,0.005552,-0.006498,0.249916,0,0);}
.m58_c01029{transform:matrix(0.214117,0.005781,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214117,0.005781,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214117,0.005781,-0.006748,0.249909,0,0);}
.m102_c01029{transform:matrix(0.214195,0.006212,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214195,0.006212,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214195,0.006212,-0.007247,0.249895,0,0);}
.mb0_c01029{transform:matrix(0.214802,0.005585,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214802,0.005585,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214802,0.005585,-0.006498,0.249916,0,0);}
.mc_c01029{transform:matrix(0.215891,0.003238,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215891,0.003238,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215891,0.003238,-0.003750,0.249972,0,0);}
.md4_c01029{transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);}
.m2_c01029{transform:matrix(0.219680,0.003295,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219680,0.003295,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219680,0.003295,-0.003750,0.249972,0,0);}
.m75_c01029{transform:matrix(0.220012,0.005060,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220012,0.005060,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220012,0.005060,-0.005748,0.249934,0,0);}
.md5_c01029{transform:matrix(0.221147,0.006413,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221147,0.006413,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221147,0.006413,-0.007247,0.249895,0,0);}
.ma7_c01029{transform:matrix(0.221155,0.005750,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221155,0.005750,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221155,0.005750,-0.006498,0.249916,0,0);}
.m105_c01029{transform:matrix(0.221542,0.006425,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221542,0.006425,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221542,0.006425,-0.007247,0.249895,0,0);}
.ma5_c01029{transform:matrix(0.222150,0.005776,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222150,0.005776,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222150,0.005776,-0.006498,0.249916,0,0);}
.m101_c01029{transform:matrix(0.222456,0.006451,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222456,0.006451,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222456,0.006451,-0.007247,0.249895,0,0);}
.mf2_c01029{transform:matrix(0.222806,0.006461,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222806,0.006461,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222806,0.006461,-0.007247,0.249895,0,0);}
.m56_c01029{transform:matrix(0.223130,0.004463,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223130,0.004463,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223130,0.004463,-0.004999,0.249950,0,0);}
.mb5_c01029{transform:matrix(0.225294,0.005858,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225294,0.005858,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225294,0.005858,-0.006498,0.249916,0,0);}
.m39_c01029{transform:matrix(0.225334,0.004281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225334,0.004281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225334,0.004281,-0.004749,0.249955,0,0);}
.m79_c01029{transform:matrix(0.225360,0.005183,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225360,0.005183,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225360,0.005183,-0.005748,0.249934,0,0);}
.mde_c01029{transform:matrix(0.225570,0.006542,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225570,0.006542,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225570,0.006542,-0.007247,0.249895,0,0);}
.mb7_c01029{transform:matrix(0.226254,0.005883,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226254,0.005883,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226254,0.005883,-0.006498,0.249916,0,0);}
.m10e_c01029{transform:matrix(0.226619,0.010662,-0.011749,0.249724,0,0);-ms-transform:matrix(0.226619,0.010662,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.226619,0.010662,-0.011749,0.249724,0,0);}
.mf5_c01029{transform:matrix(0.226840,0.006578,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226840,0.006578,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226840,0.006578,-0.007247,0.249895,0,0);}
.mce_c01029{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);}
.m109_c01029{transform:matrix(0.228184,0.006617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228184,0.006617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228184,0.006617,-0.007247,0.249895,0,0);}
.m5b_c01029{transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);}
.mdc_c01029{transform:matrix(0.229753,0.006663,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229753,0.006663,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229753,0.006663,-0.007247,0.249895,0,0);}
.m30_c01029{transform:matrix(0.230228,0.004374,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230228,0.004374,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230228,0.004374,-0.004749,0.249955,0,0);}
.m14_c01029{transform:matrix(0.231159,0.003467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231159,0.003467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231159,0.003467,-0.003750,0.249972,0,0);}
.md8_c01029{transform:matrix(0.231563,0.006715,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231563,0.006715,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231563,0.006715,-0.007247,0.249895,0,0);}
.m13_c01029{transform:matrix(0.231574,0.003474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231574,0.003474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231574,0.003474,-0.003750,0.249972,0,0);}
.m1b_c01029{transform:matrix(0.232444,0.003487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232444,0.003487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232444,0.003487,-0.003750,0.249972,0,0);}
.m64_c01029{transform:matrix(0.232843,0.005355,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232843,0.005355,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232843,0.005355,-0.005748,0.249934,0,0);}
.m72_c01029{transform:matrix(0.236432,0.005438,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236432,0.005438,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236432,0.005438,-0.005748,0.249934,0,0);}
.m107_c01029{transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);}
.m92_c01029{transform:matrix(0.239018,0.008374,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239018,0.008374,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239018,0.008374,-0.008753,0.249847,0,0);}
.m49_c01029{transform:matrix(0.240037,0.004801,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240037,0.004801,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240037,0.004801,-0.004999,0.249950,0,0);}
.m5d_c01029{transform:matrix(0.240043,0.006481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240043,0.006481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240043,0.006481,-0.006748,0.249909,0,0);}
.m103_c01029{transform:matrix(0.241304,0.006998,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241304,0.006998,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241304,0.006998,-0.007247,0.249895,0,0);}
.m98_c01029{transform:matrix(0.245942,0.006394,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245942,0.006394,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245942,0.006394,-0.006498,0.249916,0,0);}
.m3c_c01029{transform:matrix(0.246830,0.004690,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246830,0.004690,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246830,0.004690,-0.004749,0.249955,0,0);}
.mb8_c01029{transform:matrix(0.247471,0.006434,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247471,0.006434,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247471,0.006434,-0.006498,0.249916,0,0);}
.m69_c01029{transform:matrix(0.247650,0.005696,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247650,0.005696,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247650,0.005696,-0.005748,0.249934,0,0);}
.m48_c01029{transform:matrix(0.247880,0.004958,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247880,0.004958,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247880,0.004958,-0.004999,0.249950,0,0);}
.m96_c01029{transform:matrix(0.249027,0.008725,-0.008753,0.249847,0,0);-ms-transform:matrix(0.249027,0.008725,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.249027,0.008725,-0.008753,0.249847,0,0);}
.m88_c01029{transform:matrix(0.250346,0.008771,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250346,0.008771,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250346,0.008771,-0.008753,0.249847,0,0);}
.m15_c01029{transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);}
.m8e_c01029{transform:matrix(0.252170,0.008835,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252170,0.008835,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252170,0.008835,-0.008753,0.249847,0,0);}
.m47_c01029{transform:matrix(0.252684,0.005054,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252684,0.005054,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252684,0.005054,-0.004999,0.249950,0,0);}
.m7d_c01029{transform:matrix(0.256408,0.008983,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256408,0.008983,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256408,0.008983,-0.008753,0.249847,0,0);}
.me7_c01029{transform:matrix(0.256622,0.007442,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256622,0.007442,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256622,0.007442,-0.007247,0.249895,0,0);}
.m7_c01029{transform:matrix(0.258646,0.003880,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258646,0.003880,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258646,0.003880,-0.003750,0.249972,0,0);}
.m65_c01029{transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);}
.m6a_c01029{transform:matrix(0.263135,0.006052,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263135,0.006052,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263135,0.006052,-0.005748,0.249934,0,0);}
.me_c01029{transform:matrix(0.267210,0.004008,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267210,0.004008,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267210,0.004008,-0.003750,0.249972,0,0);}
.m6f_c01029{transform:matrix(0.268969,0.006186,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268969,0.006186,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268969,0.006186,-0.005748,0.249934,0,0);}
.md6_c01029{transform:matrix(0.270426,0.007842,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270426,0.007842,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270426,0.007842,-0.007247,0.249895,0,0);}
.ma4_c01029{transform:matrix(0.274347,0.007133,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274347,0.007133,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274347,0.007133,-0.006498,0.249916,0,0);}
.md9_c01029{transform:matrix(0.276764,0.008026,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276764,0.008026,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276764,0.008026,-0.007247,0.249895,0,0);}
.mf1_c01029{transform:matrix(0.279203,0.008097,-0.007247,0.249895,0,0);-ms-transform:matrix(0.279203,0.008097,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.279203,0.008097,-0.007247,0.249895,0,0);}
.mfc_c01029{transform:matrix(0.285255,0.008272,-0.007247,0.249895,0,0);-ms-transform:matrix(0.285255,0.008272,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.285255,0.008272,-0.007247,0.249895,0,0);}
.m7c_c01029{transform:matrix(0.286709,0.010045,-0.008753,0.249847,0,0);-ms-transform:matrix(0.286709,0.010045,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.286709,0.010045,-0.008753,0.249847,0,0);}
.m89_c01029{transform:matrix(0.287234,0.010063,-0.008753,0.249847,0,0);-ms-transform:matrix(0.287234,0.010063,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.287234,0.010063,-0.008753,0.249847,0,0);}
.m9f_c01029{transform:matrix(0.293656,0.007635,-0.006498,0.249916,0,0);-ms-transform:matrix(0.293656,0.007635,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.293656,0.007635,-0.006498,0.249916,0,0);}
.mdb_c01029{transform:matrix(0.296775,0.008606,-0.007247,0.249895,0,0);-ms-transform:matrix(0.296775,0.008606,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.296775,0.008606,-0.007247,0.249895,0,0);}
.m0_c01029{transform:matrix(0.297224,0.007133,-0.005998,0.249928,0,0);-ms-transform:matrix(0.297224,0.007133,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.297224,0.007133,-0.005998,0.249928,0,0);}
.m119_c01029{transform:matrix(0.302158,-0.012703,0.010501,0.249779,0,0);-ms-transform:matrix(0.302158,-0.012703,0.010501,0.249779,0,0);-webkit-transform:matrix(0.302158,-0.012703,0.010501,0.249779,0,0);}
.m112_c01029{transform:matrix(0.311351,0.014648,-0.011749,0.249724,0,0);-ms-transform:matrix(0.311351,0.014648,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.311351,0.014648,-0.011749,0.249724,0,0);}
.m1_c01029{transform:matrix(0.317224,0.007613,-0.005998,0.249928,0,0);-ms-transform:matrix(0.317224,0.007613,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.317224,0.007613,-0.005998,0.249928,0,0);}
.md0_c01029{transform:matrix(0.324089,0.009399,-0.007247,0.249895,0,0);-ms-transform:matrix(0.324089,0.009399,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.324089,0.009399,-0.007247,0.249895,0,0);}
.mf7_c01029{transform:matrix(0.324679,0.009416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.324679,0.009416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.324679,0.009416,-0.007247,0.249895,0,0);}
.mcd_c01029{transform:matrix(0.334626,0.007027,-0.005249,0.249945,0,0);-ms-transform:matrix(0.334626,0.007027,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.334626,0.007027,-0.005249,0.249945,0,0);}
.mca_c01029{transform:matrix(0.348618,0.007321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.348618,0.007321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.348618,0.007321,-0.005249,0.249945,0,0);}
.mfd_c01029{transform:matrix(0.349098,0.010124,-0.007247,0.249895,0,0);-ms-transform:matrix(0.349098,0.010124,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.349098,0.010124,-0.007247,0.249895,0,0);}
.m94_c01029{transform:matrix(0.354822,0.012431,-0.008753,0.249847,0,0);-ms-transform:matrix(0.354822,0.012431,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.354822,0.012431,-0.008753,0.249847,0,0);}
.m8f_c01029{transform:matrix(0.356231,0.012481,-0.008753,0.249847,0,0);-ms-transform:matrix(0.356231,0.012481,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.356231,0.012481,-0.008753,0.249847,0,0);}
.mc1_c01029{transform:matrix(0.357990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357990,0.000000,0.000000,0.250000,0,0);}
.mc6_c01029{transform:matrix(0.422272,0.008868,-0.005249,0.249945,0,0);-ms-transform:matrix(0.422272,0.008868,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.422272,0.008868,-0.005249,0.249945,0,0);}
.mc4_c01029{transform:matrix(0.437973,0.005256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.437973,0.005256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.437973,0.005256,-0.003000,0.249982,0,0);}
.me3_c01029{transform:matrix(0.438721,0.012723,-0.007247,0.249895,0,0);-ms-transform:matrix(0.438721,0.012723,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.438721,0.012723,-0.007247,0.249895,0,0);}
.md_c01029{transform:matrix(0.439271,0.006589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.439271,0.006589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.439271,0.006589,-0.003750,0.249972,0,0);}
.m11a_c01029{transform:matrix(0.442569,-0.018607,0.010501,0.249779,0,0);-ms-transform:matrix(0.442569,-0.018607,0.010501,0.249779,0,0);-webkit-transform:matrix(0.442569,-0.018607,0.010501,0.249779,0,0);}
.md1_c01029{transform:matrix(0.449526,0.013036,-0.007247,0.249895,0,0);-ms-transform:matrix(0.449526,0.013036,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.449526,0.013036,-0.007247,0.249895,0,0);}
.me4_c01029{transform:matrix(0.485031,0.014066,-0.007247,0.249895,0,0);-ms-transform:matrix(0.485031,0.014066,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.485031,0.014066,-0.007247,0.249895,0,0);}
.mee_c01029{transform:matrix(0.505642,0.014664,-0.007247,0.249895,0,0);-ms-transform:matrix(0.505642,0.014664,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.505642,0.014664,-0.007247,0.249895,0,0);}
.m44_c01029{transform:matrix(0.574405,0.011488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.574405,0.011488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.574405,0.011488,-0.004999,0.249950,0,0);}
.mc3_c01029{transform:matrix(0.623410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623410,0.000000,0.000000,0.250000,0,0);}
.mc9_c01029{transform:matrix(0.709664,0.014903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.709664,0.014903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.709664,0.014903,-0.005249,0.249945,0,0);}
.m7b_c01029{transform:matrix(0.715216,0.025058,-0.008753,0.249847,0,0);-ms-transform:matrix(0.715216,0.025058,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.715216,0.025058,-0.008753,0.249847,0,0);}
.mef_c01029{transform:matrix(0.853416,0.024749,-0.007247,0.249895,0,0);-ms-transform:matrix(0.853416,0.024749,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.853416,0.024749,-0.007247,0.249895,0,0);}
.m7e_c01029{transform:matrix(1.214605,0.042554,-0.008753,0.249847,0,0);-ms-transform:matrix(1.214605,0.042554,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.214605,0.042554,-0.008753,0.249847,0,0);}
.m11b_c01029{transform:matrix(1.419656,-0.059685,0.010501,0.249779,0,0);-ms-transform:matrix(1.419656,-0.059685,0.010501,0.249779,0,0);-webkit-transform:matrix(1.419656,-0.059685,0.010501,0.249779,0,0);}
.mc5_c01029{transform:matrix(1.524920,0.018299,-0.003000,0.249982,0,0);-ms-transform:matrix(1.524920,0.018299,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.524920,0.018299,-0.003000,0.249982,0,0);}
.mc8_c01029{transform:matrix(3.108485,0.065278,-0.005249,0.249945,0,0);-ms-transform:matrix(3.108485,0.065278,-0.005249,0.249945,0,0);-webkit-transform:matrix(3.108485,0.065278,-0.005249,0.249945,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls0_c01029{letter-spacing:0.000000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01029{word-spacing:0.000000px;}
.fc0_c01029{color:transparent;}
.fs19_c01029{font-size:14.700000px;}
.fs1b_c01029{font-size:23.105093px;}
.fs1c_c01029{font-size:48.320306px;}
.fs1d_c01029{font-size:49.370747px;}
.fs20_c01029{font-size:50.421189px;}
.fs1f_c01029{font-size:52.522072px;}
.fs23_c01029{font-size:54.605733px;}
.fs21_c01029{font-size:57.774279px;}
.fs22_c01029{font-size:59.856284px;}
.fs14_c01029{font-size:61.970936px;}
.fs11_c01029{font-size:64.025208px;}
.fs1e_c01029{font-size:64.076927px;}
.fs24_c01029{font-size:66.142227px;}
.fs6_c01029{font-size:66.161939px;}
.fs1_c01029{font-size:67.207560px;}
.fs16_c01029{font-size:67.222710px;}
.fsc_c01029{font-size:68.268050px;}
.fsb_c01029{font-size:68.274873px;}
.fs15_c01029{font-size:69.323419px;}
.fs2_c01029{font-size:70.357914px;}
.fsa_c01029{font-size:70.364069px;}
.fs13_c01029{font-size:70.373774px;}
.fs4_c01029{font-size:71.408032px;}
.fs5_c01029{font-size:71.412887px;}
.fs12_c01029{font-size:72.421956px;}
.fs9_c01029{font-size:72.464489px;}
.fs17_c01029{font-size:72.474484px;}
.fs7_c01029{font-size:73.513266px;}
.fsd_c01029{font-size:73.519438px;}
.fse_c01029{font-size:74.569716px;}
.fs3_c01029{font-size:75.608505px;}
.fs8_c01029{font-size:75.615118px;}
.fs10_c01029{font-size:76.620331px;}
.fs18_c01029{font-size:87.150000px;}
.fs0_c01029{font-size:123.935678px;}
.fsf_c01029{font-size:150.091881px;}
.fs1a_c01029{font-size:169.062171px;}
.y0_c01029{bottom:0.000000px;}
.y118_c01029{bottom:112.882500px;}
.y119_c01029{bottom:113.317704px;}
.y11a_c01029{bottom:114.108102px;}
.y11b_c01029{bottom:115.805700px;}
.y10a_c01029{bottom:152.439870px;}
.y109_c01029{bottom:153.185242px;}
.y108_c01029{bottom:154.568282px;}
.y107_c01029{bottom:155.378295px;}
.y106_c01029{bottom:156.449439px;}
.y105_c01029{bottom:158.196617px;}
.y117_c01029{bottom:161.342158px;}
.y116_c01029{bottom:162.611385px;}
.y115_c01029{bottom:164.158831px;}
.y114_c01029{bottom:165.610471px;}
.y113_c01029{bottom:166.574248px;}
.y112_c01029{bottom:167.414619px;}
.y104_c01029{bottom:170.290572px;}
.y103_c01029{bottom:171.562687px;}
.y102_c01029{bottom:172.119219px;}
.y101_c01029{bottom:173.066313px;}
.y100_c01029{bottom:173.828904px;}
.yff_c01029{bottom:174.348043px;}
.yfe_c01029{bottom:175.183635px;}
.y111_c01029{bottom:176.686041px;}
.y110_c01029{bottom:177.662677px;}
.y10f_c01029{bottom:178.651440px;}
.y10e_c01029{bottom:180.683743px;}
.yfd_c01029{bottom:182.508883px;}
.y10d_c01029{bottom:183.069816px;}
.y10c_c01029{bottom:183.480196px;}
.y10b_c01029{bottom:185.512500px;}
.yfc_c01029{bottom:186.985071px;}
.yfb_c01029{bottom:189.979170px;}
.yfa_c01029{bottom:191.867604px;}
.yf9_c01029{bottom:194.194163px;}
.yf8_c01029{bottom:194.688554px;}
.yf7_c01029{bottom:195.128549px;}
.yf6_c01029{bottom:195.797850px;}
.yf5_c01029{bottom:196.395335px;}
.yf4_c01029{bottom:197.791031px;}
.yf3_c01029{bottom:199.493462px;}
.yf2_c01029{bottom:201.058805px;}
.yf1_c01029{bottom:201.740156px;}
.yf0_c01029{bottom:202.416634px;}
.yef_c01029{bottom:203.678157px;}
.yee_c01029{bottom:205.027843px;}
.yed_c01029{bottom:206.674617px;}
.yec_c01029{bottom:208.356843px;}
.yeb_c01029{bottom:209.185417px;}
.yea_c01029{bottom:210.404115px;}
.ye9_c01029{bottom:211.072938px;}
.ye8_c01029{bottom:213.564251px;}
.ye7_c01029{bottom:214.477953px;}
.ye6_c01029{bottom:218.996789px;}
.ye5_c01029{bottom:220.197956px;}
.ye4_c01029{bottom:221.671384px;}
.ye3_c01029{bottom:222.607098px;}
.ye2_c01029{bottom:223.939459px;}
.ye1_c01029{bottom:225.034964px;}
.ye0_c01029{bottom:225.655100px;}
.ydf_c01029{bottom:226.767612px;}
.yde_c01029{bottom:227.426420px;}
.ydd_c01029{bottom:228.444102px;}
.ydc_c01029{bottom:229.078071px;}
.ydb_c01029{bottom:229.798562px;}
.yda_c01029{bottom:230.309208px;}
.yd9_c01029{bottom:231.535386px;}
.yd8_c01029{bottom:231.937500px;}
.yd7_c01029{bottom:233.214075px;}
.yd6_c01029{bottom:234.600768px;}
.yd5_c01029{bottom:235.756867px;}
.yd4_c01029{bottom:236.548742px;}
.yd3_c01029{bottom:237.082095px;}
.yd2_c01029{bottom:238.108086px;}
.yd1_c01029{bottom:239.339919px;}
.yd0_c01029{bottom:239.763000px;}
.ycf_c01029{bottom:253.476472px;}
.yce_c01029{bottom:254.263846px;}
.ycd_c01029{bottom:256.606124px;}
.ycc_c01029{bottom:258.026301px;}
.yc5_c01029{bottom:258.209922px;}
.ycb_c01029{bottom:259.141748px;}
.yca_c01029{bottom:260.676364px;}
.yc9_c01029{bottom:261.944271px;}
.yc4_c01029{bottom:262.443000px;}
.yc8_c01029{bottom:264.702631px;}
.yc7_c01029{bottom:265.495770px;}
.yc6_c01029{bottom:265.950000px;}
.yc3_c01029{bottom:268.110000px;}
.yc2_c01029{bottom:271.980000px;}
.yc1_c01029{bottom:279.817089px;}
.yc0_c01029{bottom:280.772043px;}
.ybf_c01029{bottom:281.382588px;}
.ybe_c01029{bottom:282.779646px;}
.ybd_c01029{bottom:283.341792px;}
.ybc_c01029{bottom:285.623799px;}
.ybb_c01029{bottom:286.270341px;}
.yba_c01029{bottom:288.139767px;}
.yb9_c01029{bottom:289.150296px;}
.yb8_c01029{bottom:303.464100px;}
.yb7_c01029{bottom:304.548975px;}
.yb6_c01029{bottom:306.767916px;}
.yb5_c01029{bottom:307.611432px;}
.yb4_c01029{bottom:309.944862px;}
.yb3_c01029{bottom:310.491939px;}
.yb2_c01029{bottom:312.399234px;}
.yb1_c01029{bottom:313.728450px;}
.yb0_c01029{bottom:326.553384px;}
.yaf_c01029{bottom:327.800226px;}
.yae_c01029{bottom:329.260176px;}
.yad_c01029{bottom:330.401469px;}
.yac_c01029{bottom:331.789584px;}
.yab_c01029{bottom:332.512266px;}
.yaa_c01029{bottom:333.669060px;}
.ya9_c01029{bottom:335.605221px;}
.ya8_c01029{bottom:350.790111px;}
.ya7_c01029{bottom:352.127559px;}
.ya6_c01029{bottom:353.304885px;}
.ya5_c01029{bottom:353.958030px;}
.ya4_c01029{bottom:354.445515px;}
.ya3_c01029{bottom:355.772532px;}
.ya2_c01029{bottom:356.913708px;}
.ya1_c01029{bottom:357.674076px;}
.ya0_c01029{bottom:359.373126px;}
.y9f_c01029{bottom:373.773669px;}
.y9e_c01029{bottom:374.424111px;}
.y9d_c01029{bottom:376.162029px;}
.y9c_c01029{bottom:376.987854px;}
.y9b_c01029{bottom:378.451056px;}
.y9a_c01029{bottom:379.433895px;}
.y99_c01029{bottom:381.260655px;}
.y98_c01029{bottom:382.327500px;}
.y97_c01029{bottom:399.894139px;}
.y96_c01029{bottom:399.894972px;}
.y95_c01029{bottom:399.897532px;}
.y94_c01029{bottom:420.219280px;}
.y93_c01029{bottom:420.801261px;}
.y92_c01029{bottom:422.178634px;}
.y91_c01029{bottom:422.692888px;}
.y90_c01029{bottom:423.302265px;}
.y8f_c01029{bottom:424.546968px;}
.y8e_c01029{bottom:425.844334px;}
.y8d_c01029{bottom:427.988970px;}
.y8c_c01029{bottom:442.448431px;}
.y8b_c01029{bottom:443.405116px;}
.y8a_c01029{bottom:444.778795px;}
.y89_c01029{bottom:445.629598px;}
.y88_c01029{bottom:446.765019px;}
.y87_c01029{bottom:447.461514px;}
.y86_c01029{bottom:448.332964px;}
.y85_c01029{bottom:449.247886px;}
.y84_c01029{bottom:450.928849px;}
.y83_c01029{bottom:462.936883px;}
.y82_c01029{bottom:464.153151px;}
.y81_c01029{bottom:466.056078px;}
.y80_c01029{bottom:466.843536px;}
.y7f_c01029{bottom:470.543733px;}
.y7e_c01029{bottom:473.325079px;}
.y7d_c01029{bottom:491.905012px;}
.y7c_c01029{bottom:496.824000px;}
.y7b_c01029{bottom:529.558043px;}
.y7a_c01029{bottom:530.035202px;}
.y79_c01029{bottom:531.783078px;}
.y78_c01029{bottom:532.876872px;}
.y77_c01029{bottom:533.785757px;}
.y76_c01029{bottom:546.833700px;}
.y75_c01029{bottom:548.564963px;}
.y74_c01029{bottom:549.460865px;}
.y73_c01029{bottom:551.838479px;}
.y72_c01029{bottom:552.550340px;}
.y71_c01029{bottom:553.575830px;}
.y70_c01029{bottom:554.047644px;}
.y6f_c01029{bottom:555.250707px;}
.y6e_c01029{bottom:556.441886px;}
.y6d_c01029{bottom:557.009981px;}
.y6c_c01029{bottom:558.094443px;}
.y6b_c01029{bottom:572.078627px;}
.y6a_c01029{bottom:573.134189px;}
.y69_c01029{bottom:573.603872px;}
.y68_c01029{bottom:574.519640px;}
.y67_c01029{bottom:575.271153px;}
.y66_c01029{bottom:575.680910px;}
.y65_c01029{bottom:576.097152px;}
.y64_c01029{bottom:576.994566px;}
.y63_c01029{bottom:577.731210px;}
.y62_c01029{bottom:578.321850px;}
.y61_c01029{bottom:578.927981px;}
.y60_c01029{bottom:579.967500px;}
.y5f_c01029{bottom:596.349415px;}
.y5e_c01029{bottom:597.152814px;}
.y5d_c01029{bottom:598.311519px;}
.y5c_c01029{bottom:599.353786px;}
.y5b_c01029{bottom:600.688747px;}
.y5a_c01029{bottom:601.220513px;}
.y59_c01029{bottom:601.797192px;}
.y58_c01029{bottom:603.730500px;}
.y57_c01029{bottom:620.063160px;}
.y56_c01029{bottom:621.448770px;}
.y55_c01029{bottom:623.460000px;}
.y54_c01029{bottom:624.277350px;}
.y53_c01029{bottom:625.236180px;}
.y52_c01029{bottom:626.397720px;}
.y51_c01029{bottom:640.731480px;}
.y50_c01029{bottom:641.231940px;}
.y4f_c01029{bottom:641.909850px;}
.y4e_c01029{bottom:642.736200px;}
.y4d_c01029{bottom:643.618530px;}
.y4c_c01029{bottom:644.361270px;}
.y4b_c01029{bottom:644.868660px;}
.y4a_c01029{bottom:645.518340px;}
.y49_c01029{bottom:645.845340px;}
.y48_c01029{bottom:647.730870px;}
.y47_c01029{bottom:665.182440px;}
.y46_c01029{bottom:666.143880px;}
.y45_c01029{bottom:667.773930px;}
.y44_c01029{bottom:668.561970px;}
.y43_c01029{bottom:669.740880px;}
.y42_c01029{bottom:670.684500px;}
.y41_c01029{bottom:686.943877px;}
.y40_c01029{bottom:687.667948px;}
.y3f_c01029{bottom:688.089691px;}
.y3e_c01029{bottom:688.335988px;}
.y3d_c01029{bottom:690.049295px;}
.y3c_c01029{bottom:690.480528px;}
.y3b_c01029{bottom:691.224720px;}
.y3a_c01029{bottom:692.112238px;}
.y39_c01029{bottom:692.834942px;}
.y38_c01029{bottom:693.364500px;}
.y37_c01029{bottom:710.414208px;}
.y36_c01029{bottom:711.007521px;}
.y35_c01029{bottom:712.430212px;}
.y34_c01029{bottom:712.700592px;}
.y33_c01029{bottom:713.740186px;}
.y32_c01029{bottom:714.693597px;}
.y31_c01029{bottom:715.538251px;}
.y30_c01029{bottom:716.191500px;}
.y2f_c01029{bottom:732.913171px;}
.y2e_c01029{bottom:734.016606px;}
.y2d_c01029{bottom:734.519631px;}
.y2c_c01029{bottom:735.515250px;}
.y2b_c01029{bottom:736.182321px;}
.y2a_c01029{bottom:737.126070px;}
.y29_c01029{bottom:737.627641px;}
.y28_c01029{bottom:738.409197px;}
.y27_c01029{bottom:739.192491px;}
.y26_c01029{bottom:739.804500px;}
.y25_c01029{bottom:756.225885px;}
.y24_c01029{bottom:757.231500px;}
.y23_c01029{bottom:757.754257px;}
.y22_c01029{bottom:758.195422px;}
.y21_c01029{bottom:759.663127px;}
.y20_c01029{bottom:761.130360px;}
.y1f_c01029{bottom:779.322698px;}
.y1e_c01029{bottom:779.849865px;}
.y1d_c01029{bottom:780.791220px;}
.y1c_c01029{bottom:781.330470px;}
.y1b_c01029{bottom:782.462385px;}
.y1a_c01029{bottom:783.124080px;}
.y19_c01029{bottom:783.473550px;}
.y18_c01029{bottom:783.932520px;}
.y17_c01029{bottom:784.351342px;}
.y16_c01029{bottom:800.776297px;}
.y15_c01029{bottom:801.328980px;}
.y14_c01029{bottom:802.338885px;}
.y13_c01029{bottom:803.637517px;}
.y12_c01029{bottom:803.991847px;}
.y11_c01029{bottom:805.020502px;}
.y10_c01029{bottom:805.718970px;}
.yf_c01029{bottom:806.122845px;}
.ye_c01029{bottom:806.845912px;}
.yd_c01029{bottom:807.302167px;}
.yc_c01029{bottom:824.727067px;}
.yb_c01029{bottom:825.059122px;}
.ya_c01029{bottom:825.691102px;}
.y9_c01029{bottom:826.196272px;}
.y8_c01029{bottom:826.533480px;}
.y7_c01029{bottom:827.400517px;}
.y6_c01029{bottom:827.740627px;}
.y5_c01029{bottom:828.360570px;}
.y4_c01029{bottom:829.077217px;}
.y3_c01029{bottom:829.713000px;}
.y2_c01029{bottom:871.647516px;}
.y1_c01029{bottom:874.809000px;}
.h1b_c01029{height:14.700000px;}
.h1d_c01029{height:23.105093px;}
.h1e_c01029{height:48.320306px;}
.h1f_c01029{height:49.370747px;}
.h22_c01029{height:50.421189px;}
.h21_c01029{height:52.522072px;}
.h25_c01029{height:54.605733px;}
.h23_c01029{height:57.774279px;}
.h24_c01029{height:59.856284px;}
.h16_c01029{height:61.970936px;}
.h13_c01029{height:64.025208px;}
.h20_c01029{height:64.076927px;}
.h26_c01029{height:66.142227px;}
.h8_c01029{height:66.161939px;}
.h3_c01029{height:67.207560px;}
.h18_c01029{height:67.222710px;}
.he_c01029{height:68.268050px;}
.hd_c01029{height:68.274873px;}
.h17_c01029{height:69.323419px;}
.h4_c01029{height:70.357914px;}
.hc_c01029{height:70.364069px;}
.h15_c01029{height:70.373774px;}
.h6_c01029{height:71.408032px;}
.h7_c01029{height:71.412887px;}
.h14_c01029{height:72.421956px;}
.hb_c01029{height:72.464489px;}
.h19_c01029{height:72.474484px;}
.h9_c01029{height:73.513266px;}
.hf_c01029{height:73.519438px;}
.h10_c01029{height:74.569716px;}
.h5_c01029{height:75.608505px;}
.ha_c01029{height:75.615118px;}
.h12_c01029{height:76.620331px;}
.h1a_c01029{height:87.150000px;}
.h2_c01029{height:123.935678px;}
.h11_c01029{height:150.091881px;}
.h1c_c01029{height:169.062171px;}
.h0_c01029{height:1008.450000px;}
.h1_c01029{height:1008.750000px;}
.w1_c01029{width:700.500000px;}
.w0_c01029{width:700.650000px;}
.x0_c01029{left:0.000000px;}
.x86_c01029{left:62.005500px;}
.xa7_c01029{left:64.792500px;}
.x7b_c01029{left:67.230000px;}
.x7e_c01029{left:70.207500px;}
.xa8_c01029{left:75.144138px;}
.x87_c01029{left:76.594500px;}
.x7f_c01029{left:92.617500px;}
.xa9_c01029{left:93.944319px;}
.x96_c01029{left:109.359687px;}
.xa3_c01029{left:116.815437px;}
.x88_c01029{left:119.071500px;}
.x80_c01029{left:130.386000px;}
.x97_c01029{left:131.910034px;}
.xaa_c01029{left:134.322900px;}
.xa4_c01029{left:136.784605px;}
.x3b_c01029{left:151.918860px;}
.x73_c01029{left:155.144853px;}
.x6f_c01029{left:156.780870px;}
.x5d_c01029{left:158.484278px;}
.x45_c01029{left:160.540500px;}
.x30_c01029{left:162.564000px;}
.x3_c01029{left:164.514000px;}
.xa0_c01029{left:171.332028px;}
.x89_c01029{left:172.842000px;}
.x59_c01029{left:178.078685px;}
.xd_c01029{left:189.249135px;}
.x15_c01029{left:190.965398px;}
.x54_c01029{left:194.963003px;}
.x22_c01029{left:197.230500px;}
.x2b_c01029{left:198.838500px;}
.x65_c01029{left:200.287500px;}
.x4_c01029{left:206.899500px;}
.x37_c01029{left:209.731500px;}
.x69_c01029{left:218.228283px;}
.x16_c01029{left:219.662970px;}
.xa1_c01029{left:222.048760px;}
.x5e_c01029{left:225.606080px;}
.xe_c01029{left:229.451835px;}
.xa5_c01029{left:231.039915px;}
.x46_c01029{left:232.144500px;}
.x60_c01029{left:234.677873px;}
.x1_c01029{left:235.861500px;}
.x55_c01029{left:237.038105px;}
.x23_c01029{left:238.456500px;}
.x8a_c01029{left:240.013500px;}
.x17_c01029{left:241.460633px;}
.x1d_c01029{left:242.472525px;}
.x6a_c01029{left:245.394879px;}
.x42_c01029{left:247.839330px;}
.xf_c01029{left:251.875822px;}
.x47_c01029{left:253.503000px;}
.x5_c01029{left:254.676000px;}
.x4c_c01029{left:258.121500px;}
.xa6_c01029{left:261.241811px;}
.x50_c01029{left:262.367967px;}
.x98_c01029{left:263.531206px;}
.x57_c01029{left:265.251000px;}
.x75_c01029{left:266.453118px;}
.x38_c01029{left:268.677000px;}
.x66_c01029{left:270.547500px;}
.x48_c01029{left:273.198000px;}
.x31_c01029{left:275.184000px;}
.x24_c01029{left:279.591000px;}
.x61_c01029{left:280.958397px;}
.x18_c01029{left:282.773002px;}
.x5a_c01029{left:284.916426px;}
.x6b_c01029{left:286.168773px;}
.x8b_c01029{left:287.830500px;}
.x10_c01029{left:290.638568px;}
.x2c_c01029{left:293.473500px;}
.x6_c01029{left:296.005500px;}
.x70_c01029{left:298.051665px;}
.x63_c01029{left:300.496418px;}
.x3c_c01029{left:302.532360px;}
.x56_c01029{left:304.288981px;}
.x25_c01029{left:305.989500px;}
.xa2_c01029{left:307.021203px;}
.x39_c01029{left:308.079000px;}
.x92_c01029{left:309.901185px;}
.x32_c01029{left:314.352000px;}
.x8c_c01029{left:316.524000px;}
.x7_c01029{left:318.679500px;}
.x1e_c01029{left:319.714890px;}
.x49_c01029{left:322.641000px;}
.x5f_c01029{left:324.738033px;}
.x3d_c01029{left:329.252400px;}
.x6c_c01029{left:333.570816px;}
.x33_c01029{left:337.048500px;}
.x93_c01029{left:340.372815px;}
.x1f_c01029{left:342.924495px;}
.x11_c01029{left:347.813003px;}
.x71_c01029{left:349.477839px;}
.x6d_c01029{left:350.992419px;}
.x99_c01029{left:352.286640px;}
.x19_c01029{left:353.532945px;}
.x26_c01029{left:355.660500px;}
.x51_c01029{left:358.829393px;}
.x43_c01029{left:360.982020px;}
.x2d_c01029{left:362.419500px;}
.x4d_c01029{left:365.080500px;}
.x2_c01029{left:367.590000px;}
.x20_c01029{left:370.473352px;}
.x64_c01029{left:373.907903px;}
.x8_c01029{left:376.482000px;}
.x76_c01029{left:379.089618px;}
.x52_c01029{left:384.233460px;}
.x1a_c01029{left:387.282450px;}
.x3a_c01029{left:389.581500px;}
.x27_c01029{left:390.769500px;}
.x81_c01029{left:395.190000px;}
.x67_c01029{left:396.388500px;}
.x4e_c01029{left:397.755000px;}
.x9_c01029{left:398.962500px;}
.x77_c01029{left:400.710618px;}
.x4a_c01029{left:404.158500px;}
.x58_c01029{left:405.652957px;}
.x3e_c01029{left:414.782610px;}
.x44_c01029{left:416.381970px;}
.x9c_c01029{left:418.777260px;}
.x21_c01029{left:423.411180px;}
.x34_c01029{left:427.222500px;}
.xa_c01029{left:432.640500px;}
.x4b_c01029{left:433.914000px;}
.x62_c01029{left:435.316223px;}
.x2e_c01029{left:437.298000px;}
.x12_c01029{left:439.706385px;}
.x28_c01029{left:443.170500px;}
.x1b_c01029{left:446.138572px;}
.x82_c01029{left:448.306500px;}
.x78_c01029{left:454.443618px;}
.x9d_c01029{left:455.713260px;}
.x3f_c01029{left:458.275980px;}
.x74_c01029{left:461.150568px;}
.x35_c01029{left:462.382500px;}
.x6e_c01029{left:464.118030px;}
.x2f_c01029{left:468.525000px;}
.x29_c01029{left:469.645500px;}
.xb_c01029{left:474.772500px;}
.x79_c01029{left:477.926118px;}
.x1c_c01029{left:479.082577px;}
.x8d_c01029{left:480.930000px;}
.x9e_c01029{left:483.644760px;}
.x94_c01029{left:486.345595px;}
.x68_c01029{left:488.248500px;}
.x72_c01029{left:491.996634px;}
.x40_c01029{left:493.972200px;}
.x13_c01029{left:495.830865px;}
.xc_c01029{left:496.909500px;}
.x36_c01029{left:500.491500px;}
.x4f_c01029{left:503.886000px;}
.x7a_c01029{left:514.655118px;}
.x83_c01029{left:515.934000px;}
.x9b_c01029{left:517.651760px;}
.x8e_c01029{left:519.292500px;}
.x41_c01029{left:520.345740px;}
.x9a_c01029{left:523.898137px;}
.x14_c01029{left:526.574993px;}
.x2a_c01029{left:527.721000px;}
.x5b_c01029{left:530.401605px;}
.x8f_c01029{left:540.676500px;}
.x9f_c01029{left:557.038260px;}
.x53_c01029{left:562.942398px;}
.x95_c01029{left:570.077703px;}
.x5c_c01029{left:577.108066px;}
.x90_c01029{left:578.452500px;}
.x91_c01029{left:624.396000px;}
.x84_c01029{left:627.471000px;}
.x7c_c01029{left:629.640000px;}
.x7d_c01029{left:632.610000px;}
.x85_c01029{left:664.965000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ws0_c01029{word-spacing:0.000000pt;}
.fs19_c01029{font-size:13.066667pt;}
.fs1b_c01029{font-size:20.537860pt;}
.fs1c_c01029{font-size:42.951383pt;}
.fs1d_c01029{font-size:43.885109pt;}
.fs20_c01029{font-size:44.818834pt;}
.fs1f_c01029{font-size:46.686286pt;}
.fs23_c01029{font-size:48.538429pt;}
.fs21_c01029{font-size:51.354914pt;}
.fs22_c01029{font-size:53.205586pt;}
.fs14_c01029{font-size:55.085276pt;}
.fs11_c01029{font-size:56.911296pt;}
.fs1e_c01029{font-size:56.957269pt;}
.fs24_c01029{font-size:58.793091pt;}
.fs6_c01029{font-size:58.810612pt;}
.fs1_c01029{font-size:59.740053pt;}
.fs16_c01029{font-size:59.753520pt;}
.fsc_c01029{font-size:60.682711pt;}
.fsb_c01029{font-size:60.688776pt;}
.fs15_c01029{font-size:61.620817pt;}
.fs2_c01029{font-size:62.540368pt;}
.fsa_c01029{font-size:62.545839pt;}
.fs13_c01029{font-size:62.554466pt;}
.fs4_c01029{font-size:63.473806pt;}
.fs5_c01029{font-size:63.478121pt;}
.fs12_c01029{font-size:64.375072pt;}
.fs9_c01029{font-size:64.412879pt;}
.fs17_c01029{font-size:64.421764pt;}
.fs7_c01029{font-size:65.345125pt;}
.fsd_c01029{font-size:65.350612pt;}
.fse_c01029{font-size:66.284192pt;}
.fs3_c01029{font-size:67.207560pt;}
.fs8_c01029{font-size:67.213439pt;}
.fs10_c01029{font-size:68.106961pt;}
.fs18_c01029{font-size:77.466667pt;}
.fs0_c01029{font-size:110.165047pt;}
.fsf_c01029{font-size:133.415005pt;}
.fs1a_c01029{font-size:150.277485pt;}
.y0_c01029{bottom:0.000000pt;}
.y118_c01029{bottom:100.340000pt;}
.y119_c01029{bottom:100.726848pt;}
.y11a_c01029{bottom:101.429424pt;}
.y11b_c01029{bottom:102.938400pt;}
.y10a_c01029{bottom:135.502107pt;}
.y109_c01029{bottom:136.164660pt;}
.y108_c01029{bottom:137.394028pt;}
.y107_c01029{bottom:138.114040pt;}
.y106_c01029{bottom:139.066168pt;}
.y105_c01029{bottom:140.619215pt;}
.y117_c01029{bottom:143.415252pt;}
.y116_c01029{bottom:144.543453pt;}
.y115_c01029{bottom:145.918961pt;}
.y114_c01029{bottom:147.209308pt;}
.y113_c01029{bottom:148.065999pt;}
.y112_c01029{bottom:148.812995pt;}
.y104_c01029{bottom:151.369397pt;}
.y103_c01029{bottom:152.500167pt;}
.y102_c01029{bottom:152.994861pt;}
.y101_c01029{bottom:153.836723pt;}
.y100_c01029{bottom:154.514581pt;}
.yff_c01029{bottom:154.976039pt;}
.yfe_c01029{bottom:155.718787pt;}
.y111_c01029{bottom:157.054259pt;}
.y110_c01029{bottom:157.922380pt;}
.y10f_c01029{bottom:158.801280pt;}
.y10e_c01029{bottom:160.607772pt;}
.yfd_c01029{bottom:162.230119pt;}
.y10d_c01029{bottom:162.728725pt;}
.y10c_c01029{bottom:163.093508pt;}
.y10b_c01029{bottom:164.900000pt;}
.yfc_c01029{bottom:166.208952pt;}
.yfb_c01029{bottom:168.870373pt;}
.yfa_c01029{bottom:170.548981pt;}
.yf9_c01029{bottom:172.617033pt;}
.yf8_c01029{bottom:173.056492pt;}
.yf7_c01029{bottom:173.447599pt;}
.yf6_c01029{bottom:174.042533pt;}
.yf5_c01029{bottom:174.573631pt;}
.yf4_c01029{bottom:175.814249pt;}
.yf3_c01029{bottom:177.327521pt;}
.yf2_c01029{bottom:178.718937pt;}
.yf1_c01029{bottom:179.324583pt;}
.yf0_c01029{bottom:179.925897pt;}
.yef_c01029{bottom:181.047251pt;}
.yee_c01029{bottom:182.246972pt;}
.yed_c01029{bottom:183.710771pt;}
.yec_c01029{bottom:185.206083pt;}
.yeb_c01029{bottom:185.942593pt;}
.yea_c01029{bottom:187.025880pt;}
.ye9_c01029{bottom:187.620389pt;}
.ye8_c01029{bottom:189.834889pt;}
.ye7_c01029{bottom:190.647069pt;}
.ye6_c01029{bottom:194.663812pt;}
.ye5_c01029{bottom:195.731516pt;}
.ye4_c01029{bottom:197.041231pt;}
.ye3_c01029{bottom:197.872976pt;}
.ye2_c01029{bottom:199.057297pt;}
.ye1_c01029{bottom:200.031079pt;}
.ye0_c01029{bottom:200.582311pt;}
.ydf_c01029{bottom:201.571211pt;}
.yde_c01029{bottom:202.156817pt;}
.ydd_c01029{bottom:203.061424pt;}
.ydc_c01029{bottom:203.624952pt;}
.ydb_c01029{bottom:204.265388pt;}
.yda_c01029{bottom:204.719296pt;}
.yd9_c01029{bottom:205.809232pt;}
.yd8_c01029{bottom:206.166667pt;}
.yd7_c01029{bottom:207.301400pt;}
.yd6_c01029{bottom:208.534016pt;}
.yd5_c01029{bottom:209.561660pt;}
.yd4_c01029{bottom:210.265548pt;}
.yd3_c01029{bottom:210.739640pt;}
.yd2_c01029{bottom:211.651632pt;}
.yd1_c01029{bottom:212.746595pt;}
.yd0_c01029{bottom:213.122667pt;}
.ycf_c01029{bottom:225.312420pt;}
.yce_c01029{bottom:226.012308pt;}
.ycd_c01029{bottom:228.094332pt;}
.ycc_c01029{bottom:229.356712pt;}
.yc5_c01029{bottom:229.519931pt;}
.ycb_c01029{bottom:230.348220pt;}
.yca_c01029{bottom:231.712324pt;}
.yc9_c01029{bottom:232.839352pt;}
.yc4_c01029{bottom:233.282667pt;}
.yc8_c01029{bottom:235.291228pt;}
.yc7_c01029{bottom:235.996240pt;}
.yc6_c01029{bottom:236.400000pt;}
.yc3_c01029{bottom:238.320000pt;}
.yc2_c01029{bottom:241.760000pt;}
.yc1_c01029{bottom:248.726301pt;}
.yc0_c01029{bottom:249.575149pt;}
.ybf_c01029{bottom:250.117856pt;}
.ybe_c01029{bottom:251.359685pt;}
.ybd_c01029{bottom:251.859371pt;}
.ybc_c01029{bottom:253.887821pt;}
.ybb_c01029{bottom:254.462525pt;}
.yba_c01029{bottom:256.124237pt;}
.yb9_c01029{bottom:257.022485pt;}
.yb8_c01029{bottom:269.745867pt;}
.yb7_c01029{bottom:270.710200pt;}
.yb6_c01029{bottom:272.682592pt;}
.yb5_c01029{bottom:273.432384pt;}
.yb4_c01029{bottom:275.506544pt;}
.yb3_c01029{bottom:275.992835pt;}
.yb2_c01029{bottom:277.688208pt;}
.yb1_c01029{bottom:278.869733pt;}
.yb0_c01029{bottom:290.269675pt;}
.yaf_c01029{bottom:291.377979pt;}
.yae_c01029{bottom:292.675712pt;}
.yad_c01029{bottom:293.690195pt;}
.yac_c01029{bottom:294.924075pt;}
.yab_c01029{bottom:295.566459pt;}
.yaa_c01029{bottom:296.594720pt;}
.ya9_c01029{bottom:298.315752pt;}
.ya8_c01029{bottom:311.813432pt;}
.ya7_c01029{bottom:313.002275pt;}
.ya6_c01029{bottom:314.048787pt;}
.ya5_c01029{bottom:314.629360pt;}
.ya4_c01029{bottom:315.062680pt;}
.ya3_c01029{bottom:316.242251pt;}
.ya2_c01029{bottom:317.256629pt;}
.ya1_c01029{bottom:317.932512pt;}
.ya0_c01029{bottom:319.442779pt;}
.y9f_c01029{bottom:332.243261pt;}
.y9e_c01029{bottom:332.821432pt;}
.y9d_c01029{bottom:334.366248pt;}
.y9c_c01029{bottom:335.100315pt;}
.y9b_c01029{bottom:336.400939pt;}
.y9a_c01029{bottom:337.274573pt;}
.y99_c01029{bottom:338.898360pt;}
.y98_c01029{bottom:339.846667pt;}
.y97_c01029{bottom:355.461457pt;}
.y96_c01029{bottom:355.462197pt;}
.y95_c01029{bottom:355.464473pt;}
.y94_c01029{bottom:373.528249pt;}
.y93_c01029{bottom:374.045565pt;}
.y92_c01029{bottom:375.269897pt;}
.y91_c01029{bottom:375.727012pt;}
.y90_c01029{bottom:376.268680pt;}
.y8f_c01029{bottom:377.375083pt;}
.y8e_c01029{bottom:378.528297pt;}
.y8d_c01029{bottom:380.434640pt;}
.y8c_c01029{bottom:393.287495pt;}
.y8b_c01029{bottom:394.137881pt;}
.y8a_c01029{bottom:395.358929pt;}
.y89_c01029{bottom:396.115199pt;}
.y88_c01029{bottom:397.124461pt;}
.y87_c01029{bottom:397.743568pt;}
.y86_c01029{bottom:398.518191pt;}
.y85_c01029{bottom:399.331455pt;}
.y84_c01029{bottom:400.825644pt;}
.y83_c01029{bottom:411.499452pt;}
.y82_c01029{bottom:412.580579pt;}
.y81_c01029{bottom:414.272069pt;}
.y80_c01029{bottom:414.972032pt;}
.y7f_c01029{bottom:418.261096pt;}
.y7e_c01029{bottom:420.733404pt;}
.y7d_c01029{bottom:437.248900pt;}
.y7c_c01029{bottom:441.621333pt;}
.y7b_c01029{bottom:470.718260pt;}
.y7a_c01029{bottom:471.142401pt;}
.y79_c01029{bottom:472.696069pt;}
.y78_c01029{bottom:473.668331pt;}
.y77_c01029{bottom:474.476228pt;}
.y76_c01029{bottom:486.074400pt;}
.y75_c01029{bottom:487.613300pt;}
.y74_c01029{bottom:488.409657pt;}
.y73_c01029{bottom:490.523092pt;}
.y72_c01029{bottom:491.155857pt;}
.y71_c01029{bottom:492.067404pt;}
.y70_c01029{bottom:492.486795pt;}
.y6f_c01029{bottom:493.556184pt;}
.y6e_c01029{bottom:494.615009pt;}
.y6d_c01029{bottom:495.119983pt;}
.y6c_c01029{bottom:496.083949pt;}
.y6b_c01029{bottom:508.514335pt;}
.y6a_c01029{bottom:509.452612pt;}
.y69_c01029{bottom:509.870108pt;}
.y68_c01029{bottom:510.684124pt;}
.y67_c01029{bottom:511.352136pt;}
.y66_c01029{bottom:511.716364pt;}
.y65_c01029{bottom:512.086357pt;}
.y64_c01029{bottom:512.884059pt;}
.y63_c01029{bottom:513.538853pt;}
.y62_c01029{bottom:514.063867pt;}
.y61_c01029{bottom:514.602649pt;}
.y60_c01029{bottom:515.526667pt;}
.y5f_c01029{bottom:530.088369pt;}
.y5e_c01029{bottom:530.802501pt;}
.y5d_c01029{bottom:531.832461pt;}
.y5c_c01029{bottom:532.758921pt;}
.y5b_c01029{bottom:533.945553pt;}
.y5a_c01029{bottom:534.418233pt;}
.y59_c01029{bottom:534.930837pt;}
.y58_c01029{bottom:536.649333pt;}
.y57_c01029{bottom:551.167253pt;}
.y56_c01029{bottom:552.398907pt;}
.y55_c01029{bottom:554.186667pt;}
.y54_c01029{bottom:554.913200pt;}
.y53_c01029{bottom:555.765493pt;}
.y52_c01029{bottom:556.797973pt;}
.y51_c01029{bottom:569.539093pt;}
.y50_c01029{bottom:569.983947pt;}
.y4f_c01029{bottom:570.586533pt;}
.y4e_c01029{bottom:571.321067pt;}
.y4d_c01029{bottom:572.105360pt;}
.y4c_c01029{bottom:572.765573pt;}
.y4b_c01029{bottom:573.216587pt;}
.y4a_c01029{bottom:573.794080pt;}
.y49_c01029{bottom:574.084747pt;}
.y48_c01029{bottom:575.760773pt;}
.y47_c01029{bottom:591.273280pt;}
.y46_c01029{bottom:592.127893pt;}
.y45_c01029{bottom:593.576827pt;}
.y44_c01029{bottom:594.277307pt;}
.y43_c01029{bottom:595.325227pt;}
.y42_c01029{bottom:596.164000pt;}
.y41_c01029{bottom:610.616780pt;}
.y40_c01029{bottom:611.260399pt;}
.y3f_c01029{bottom:611.635281pt;}
.y3e_c01029{bottom:611.854212pt;}
.y3d_c01029{bottom:613.377151pt;}
.y3c_c01029{bottom:613.760469pt;}
.y3b_c01029{bottom:614.421973pt;}
.y3a_c01029{bottom:615.210879pt;}
.y39_c01029{bottom:615.853281pt;}
.y38_c01029{bottom:616.324000pt;}
.y37_c01029{bottom:631.479296pt;}
.y36_c01029{bottom:632.006685pt;}
.y35_c01029{bottom:633.271300pt;}
.y34_c01029{bottom:633.511637pt;}
.y33_c01029{bottom:634.435721pt;}
.y32_c01029{bottom:635.283197pt;}
.y31_c01029{bottom:636.034001pt;}
.y30_c01029{bottom:636.614667pt;}
.y2f_c01029{bottom:651.478375pt;}
.y2e_c01029{bottom:652.459205pt;}
.y2d_c01029{bottom:652.906339pt;}
.y2c_c01029{bottom:653.791333pt;}
.y2b_c01029{bottom:654.384285pt;}
.y2a_c01029{bottom:655.223173pt;}
.y29_c01029{bottom:655.669015pt;}
.y28_c01029{bottom:656.363731pt;}
.y27_c01029{bottom:657.059992pt;}
.y26_c01029{bottom:657.604000pt;}
.y25_c01029{bottom:672.200787pt;}
.y24_c01029{bottom:673.094667pt;}
.y23_c01029{bottom:673.559340pt;}
.y22_c01029{bottom:673.951487pt;}
.y21_c01029{bottom:675.256113pt;}
.y20_c01029{bottom:676.560320pt;}
.y1f_c01029{bottom:692.731287pt;}
.y1e_c01029{bottom:693.199880pt;}
.y1d_c01029{bottom:694.036640pt;}
.y1c_c01029{bottom:694.515973pt;}
.y1b_c01029{bottom:695.522120pt;}
.y1a_c01029{bottom:696.110293pt;}
.y19_c01029{bottom:696.420933pt;}
.y18_c01029{bottom:696.828907pt;}
.y17_c01029{bottom:697.201193pt;}
.y16_c01029{bottom:711.801153pt;}
.y15_c01029{bottom:712.292427pt;}
.y14_c01029{bottom:713.190120pt;}
.y13_c01029{bottom:714.344460pt;}
.y12_c01029{bottom:714.659420pt;}
.y11_c01029{bottom:715.573780pt;}
.y10_c01029{bottom:716.194640pt;}
.yf_c01029{bottom:716.553640pt;}
.ye_c01029{bottom:717.196367pt;}
.yd_c01029{bottom:717.601927pt;}
.yc_c01029{bottom:733.090727pt;}
.yb_c01029{bottom:733.385887pt;}
.ya_c01029{bottom:733.947647pt;}
.y9_c01029{bottom:734.396687pt;}
.y8_c01029{bottom:734.696427pt;}
.y7_c01029{bottom:735.467127pt;}
.y6_c01029{bottom:735.769447pt;}
.y5_c01029{bottom:736.320507pt;}
.y4_c01029{bottom:736.957527pt;}
.y3_c01029{bottom:737.522667pt;}
.y2_c01029{bottom:774.797792pt;}
.y1_c01029{bottom:777.608000pt;}
.h1b_c01029{height:13.066667pt;}
.h1d_c01029{height:20.537860pt;}
.h1e_c01029{height:42.951383pt;}
.h1f_c01029{height:43.885109pt;}
.h22_c01029{height:44.818834pt;}
.h21_c01029{height:46.686286pt;}
.h25_c01029{height:48.538429pt;}
.h23_c01029{height:51.354914pt;}
.h24_c01029{height:53.205586pt;}
.h16_c01029{height:55.085276pt;}
.h13_c01029{height:56.911296pt;}
.h20_c01029{height:56.957269pt;}
.h26_c01029{height:58.793091pt;}
.h8_c01029{height:58.810612pt;}
.h3_c01029{height:59.740053pt;}
.h18_c01029{height:59.753520pt;}
.he_c01029{height:60.682711pt;}
.hd_c01029{height:60.688776pt;}
.h17_c01029{height:61.620817pt;}
.h4_c01029{height:62.540368pt;}
.hc_c01029{height:62.545839pt;}
.h15_c01029{height:62.554466pt;}
.h6_c01029{height:63.473806pt;}
.h7_c01029{height:63.478121pt;}
.h14_c01029{height:64.375072pt;}
.hb_c01029{height:64.412879pt;}
.h19_c01029{height:64.421764pt;}
.h9_c01029{height:65.345125pt;}
.hf_c01029{height:65.350612pt;}
.h10_c01029{height:66.284192pt;}
.h5_c01029{height:67.207560pt;}
.ha_c01029{height:67.213439pt;}
.h12_c01029{height:68.106961pt;}
.h1a_c01029{height:77.466667pt;}
.h2_c01029{height:110.165047pt;}
.h11_c01029{height:133.415005pt;}
.h1c_c01029{height:150.277485pt;}
.h0_c01029{height:896.400000pt;}
.h1_c01029{height:896.666667pt;}
.w1_c01029{width:622.666667pt;}
.w0_c01029{width:622.800000pt;}
.x0_c01029{left:0.000000pt;}
.x86_c01029{left:55.116000pt;}
.xa7_c01029{left:57.593333pt;}
.x7b_c01029{left:59.760000pt;}
.x7e_c01029{left:62.406667pt;}
.xa8_c01029{left:66.794789pt;}
.x87_c01029{left:68.084000pt;}
.x7f_c01029{left:82.326667pt;}
.xa9_c01029{left:83.506061pt;}
.x96_c01029{left:97.208611pt;}
.xa3_c01029{left:103.835944pt;}
.x88_c01029{left:105.841333pt;}
.x80_c01029{left:115.898667pt;}
.x97_c01029{left:117.253364pt;}
.xaa_c01029{left:119.398133pt;}
.xa4_c01029{left:121.586316pt;}
.x3b_c01029{left:135.038987pt;}
.x73_c01029{left:137.906536pt;}
.x6f_c01029{left:139.360773pt;}
.x5d_c01029{left:140.874913pt;}
.x45_c01029{left:142.702667pt;}
.x30_c01029{left:144.501333pt;}
.x3_c01029{left:146.234667pt;}
.xa0_c01029{left:152.295136pt;}
.x89_c01029{left:153.637333pt;}
.x59_c01029{left:158.292164pt;}
.xd_c01029{left:168.221453pt;}
.x15_c01029{left:169.747020pt;}
.x54_c01029{left:173.300447pt;}
.x22_c01029{left:175.316000pt;}
.x2b_c01029{left:176.745333pt;}
.x65_c01029{left:178.033333pt;}
.x4_c01029{left:183.910667pt;}
.x37_c01029{left:186.428000pt;}
.x69_c01029{left:193.980696pt;}
.x16_c01029{left:195.255973pt;}
.xa1_c01029{left:197.376676pt;}
.x5e_c01029{left:200.538737pt;}
.xe_c01029{left:203.957187pt;}
.xa5_c01029{left:205.368813pt;}
.x46_c01029{left:206.350667pt;}
.x60_c01029{left:208.602553pt;}
.x1_c01029{left:209.654667pt;}
.x55_c01029{left:210.700537pt;}
.x23_c01029{left:211.961333pt;}
.x8a_c01029{left:213.345333pt;}
.x17_c01029{left:214.631673pt;}
.x1d_c01029{left:215.531133pt;}
.x6a_c01029{left:218.128781pt;}
.x42_c01029{left:220.301627pt;}
.xf_c01029{left:223.889620pt;}
.x47_c01029{left:225.336000pt;}
.x5_c01029{left:226.378667pt;}
.x4c_c01029{left:229.441333pt;}
.xa6_c01029{left:232.214943pt;}
.x50_c01029{left:233.215971pt;}
.x98_c01029{left:234.249961pt;}
.x57_c01029{left:235.778667pt;}
.x75_c01029{left:236.847216pt;}
.x38_c01029{left:238.824000pt;}
.x66_c01029{left:240.486667pt;}
.x48_c01029{left:242.842667pt;}
.x31_c01029{left:244.608000pt;}
.x24_c01029{left:248.525333pt;}
.x61_c01029{left:249.740797pt;}
.x18_c01029{left:251.353780pt;}
.x5a_c01029{left:253.259045pt;}
.x6b_c01029{left:254.372243pt;}
.x8b_c01029{left:255.849333pt;}
.x10_c01029{left:258.345393pt;}
.x2c_c01029{left:260.865333pt;}
.x6_c01029{left:263.116000pt;}
.x70_c01029{left:264.934813pt;}
.x63_c01029{left:267.107927pt;}
.x3c_c01029{left:268.917653pt;}
.x56_c01029{left:270.479095pt;}
.x25_c01029{left:271.990667pt;}
.xa2_c01029{left:272.907736pt;}
.x39_c01029{left:273.848000pt;}
.x92_c01029{left:275.467720pt;}
.x32_c01029{left:279.424000pt;}
.x8c_c01029{left:281.354667pt;}
.x7_c01029{left:283.270667pt;}
.x1e_c01029{left:284.191013pt;}
.x49_c01029{left:286.792000pt;}
.x5f_c01029{left:288.656029pt;}
.x3d_c01029{left:292.668800pt;}
.x6c_c01029{left:296.507392pt;}
.x33_c01029{left:299.598667pt;}
.x93_c01029{left:302.553613pt;}
.x1f_c01029{left:304.821773pt;}
.x11_c01029{left:309.167113pt;}
.x71_c01029{left:310.646968pt;}
.x6d_c01029{left:311.993261pt;}
.x99_c01029{left:313.143680pt;}
.x19_c01029{left:314.251507pt;}
.x26_c01029{left:316.142667pt;}
.x51_c01029{left:318.959460pt;}
.x43_c01029{left:320.872907pt;}
.x2d_c01029{left:322.150667pt;}
.x4d_c01029{left:324.516000pt;}
.x2_c01029{left:326.746667pt;}
.x20_c01029{left:329.309647pt;}
.x64_c01029{left:332.362580pt;}
.x8_c01029{left:334.650667pt;}
.x76_c01029{left:336.968549pt;}
.x52_c01029{left:341.540853pt;}
.x1a_c01029{left:344.251067pt;}
.x3a_c01029{left:346.294667pt;}
.x27_c01029{left:347.350667pt;}
.x81_c01029{left:351.280000pt;}
.x67_c01029{left:352.345333pt;}
.x4e_c01029{left:353.560000pt;}
.x9_c01029{left:354.633333pt;}
.x77_c01029{left:356.187216pt;}
.x4a_c01029{left:359.252000pt;}
.x58_c01029{left:360.580407pt;}
.x3e_c01029{left:368.695653pt;}
.x44_c01029{left:370.117307pt;}
.x9c_c01029{left:372.246453pt;}
.x21_c01029{left:376.365493pt;}
.x34_c01029{left:379.753333pt;}
.xa_c01029{left:384.569333pt;}
.x4b_c01029{left:385.701333pt;}
.x62_c01029{left:386.947753pt;}
.x2e_c01029{left:388.709333pt;}
.x12_c01029{left:390.850120pt;}
.x28_c01029{left:393.929333pt;}
.x1b_c01029{left:396.567620pt;}
.x82_c01029{left:398.494667pt;}
.x78_c01029{left:403.949883pt;}
.x9d_c01029{left:405.078453pt;}
.x3f_c01029{left:407.356427pt;}
.x74_c01029{left:409.911616pt;}
.x35_c01029{left:411.006667pt;}
.x6e_c01029{left:412.549360pt;}
.x2f_c01029{left:416.466667pt;}
.x29_c01029{left:417.462667pt;}
.xb_c01029{left:422.020000pt;}
.x79_c01029{left:424.823216pt;}
.x1c_c01029{left:425.851180pt;}
.x8d_c01029{left:427.493333pt;}
.x9e_c01029{left:429.906453pt;}
.x94_c01029{left:432.307196pt;}
.x68_c01029{left:433.998667pt;}
.x72_c01029{left:437.330341pt;}
.x40_c01029{left:439.086400pt;}
.x13_c01029{left:440.738547pt;}
.xc_c01029{left:441.697333pt;}
.x36_c01029{left:444.881333pt;}
.x4f_c01029{left:447.898667pt;}
.x7a_c01029{left:457.471216pt;}
.x83_c01029{left:458.608000pt;}
.x9b_c01029{left:460.134897pt;}
.x8e_c01029{left:461.593333pt;}
.x41_c01029{left:462.529547pt;}
.x9a_c01029{left:465.687233pt;}
.x14_c01029{left:468.066660pt;}
.x2a_c01029{left:469.085333pt;}
.x5b_c01029{left:471.468093pt;}
.x8f_c01029{left:480.601333pt;}
.x9f_c01029{left:495.145120pt;}
.x53_c01029{left:500.393243pt;}
.x95_c01029{left:506.735736pt;}
.x5c_c01029{left:512.984948pt;}
.x90_c01029{left:514.180000pt;}
.x91_c01029{left:555.018667pt;}
.x84_c01029{left:557.752000pt;}
.x7c_c01029{left:559.680000pt;}
.x7d_c01029{left:562.320000pt;}
.x85_c01029{left:591.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_c01030 {
    display:none;
  }
  .loading-indicator_c01030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01030 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01030 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01030" -> "#page-container .classname_c01030")
 */
.pf_c01030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01030 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01030 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01030 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01030 {overflow:visible;}
  }
}
.c_c01030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01030 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01030:after { /* webkit #35443 */
  content: '';
}
.t_c01030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01030 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01030 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01030 { /* info for Javascript */
  display:none;
}
.l_c01030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.000000;font-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_c01030{transform:matrix(0.011730,-0.000106,0.002250,0.249990,0,0);-ms-transform:matrix(0.011730,-0.000106,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011730,-0.000106,0.002250,0.249990,0,0);}
.m16_c01030{transform:matrix(0.012509,-0.000113,0.002250,0.249990,0,0);-ms-transform:matrix(0.012509,-0.000113,0.002250,0.249990,0,0);-webkit-transform:matrix(0.012509,-0.000113,0.002250,0.249990,0,0);}
.m7c_c01030{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);}
.m0_c01030{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);}
.mf7_c01030{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);}
.m106_c01030{transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062125,0.000000,0.000000,0.250000,0,0);}
.m9d_c01030{transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068415,0.000000,0.000000,0.250000,0,0);}
.m98_c01030{transform:matrix(0.082865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082865,0.000000,0.000000,0.250000,0,0);}
.me8_c01030{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);}
.mda_c01030{transform:matrix(0.101470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101470,0.000000,0.000000,0.250000,0,0);}
.md1_c01030{transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102435,0.000000,0.000000,0.250000,0,0);}
.mdd_c01030{transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106360,0.000000,0.000000,0.250000,0,0);}
.m8_c01030{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.m87_c01030{transform:matrix(0.128785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128785,0.000000,0.000000,0.250000,0,0);}
.mbd_c01030{transform:matrix(0.140545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140545,0.000000,0.000000,0.250000,0,0);}
.mac_c01030{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m1d_c01030{transform:matrix(0.142234,-0.001280,0.002250,0.249990,0,0);-ms-transform:matrix(0.142234,-0.001280,0.002250,0.249990,0,0);-webkit-transform:matrix(0.142234,-0.001280,0.002250,0.249990,0,0);}
.m8e_c01030{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);}
.mb2_c01030{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m83_c01030{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);}
.m77_c01030{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);}
.m28_c01030{transform:matrix(0.148924,-0.001340,0.002250,0.249990,0,0);-ms-transform:matrix(0.148924,-0.001340,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148924,-0.001340,0.002250,0.249990,0,0);}
.m75_c01030{transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150145,0.000000,0.000000,0.250000,0,0);}
.mef_c01030{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);}
.mb3_c01030{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);}
.maa_c01030{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);}
.m2f_c01030{transform:matrix(0.154589,-0.001391,0.002250,0.249990,0,0);-ms-transform:matrix(0.154589,-0.001391,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154589,-0.001391,0.002250,0.249990,0,0);}
.m49_c01030{transform:matrix(0.155054,-0.001395,0.002250,0.249990,0,0);-ms-transform:matrix(0.155054,-0.001395,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155054,-0.001395,0.002250,0.249990,0,0);}
.m9e_c01030{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);}
.mf0_c01030{transform:matrix(0.156660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156660,0.000000,0.000000,0.250000,0,0);}
.m69_c01030{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);}
.mea_c01030{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);}
.mf1_c01030{transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157655,0.000000,0.000000,0.250000,0,0);}
.md7_c01030{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);}
.m44_c01030{transform:matrix(0.160588,-0.001445,0.002250,0.249990,0,0);-ms-transform:matrix(0.160588,-0.001445,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160588,-0.001445,0.002250,0.249990,0,0);}
.m3b_c01030{transform:matrix(0.162693,-0.001464,0.002250,0.249990,0,0);-ms-transform:matrix(0.162693,-0.001464,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162693,-0.001464,0.002250,0.249990,0,0);}
.m32_c01030{transform:matrix(0.162773,-0.001465,0.002250,0.249990,0,0);-ms-transform:matrix(0.162773,-0.001465,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162773,-0.001465,0.002250,0.249990,0,0);}
.m20_c01030{transform:matrix(0.162823,-0.001465,0.002250,0.249990,0,0);-ms-transform:matrix(0.162823,-0.001465,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162823,-0.001465,0.002250,0.249990,0,0);}
.mb8_c01030{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);}
.m64_c01030{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);}
.m74_c01030{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);}
.mb7_c01030{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);}
.m93_c01030{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);}
.m76_c01030{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);}
.m9_c01030{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);}
.mbe_c01030{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);}
.mba_c01030{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);}
.m18_c01030{transform:matrix(0.170558,-0.001535,0.002250,0.249990,0,0);-ms-transform:matrix(0.170558,-0.001535,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170558,-0.001535,0.002250,0.249990,0,0);}
.m48_c01030{transform:matrix(0.171363,-0.001542,0.002250,0.249990,0,0);-ms-transform:matrix(0.171363,-0.001542,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171363,-0.001542,0.002250,0.249990,0,0);}
.md6_c01030{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);}
.m79_c01030{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);}
.m47_c01030{transform:matrix(0.172383,-0.001551,0.002250,0.249990,0,0);-ms-transform:matrix(0.172383,-0.001551,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172383,-0.001551,0.002250,0.249990,0,0);}
.m88_c01030{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);}
.meb_c01030{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);}
.mee_c01030{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);}
.m51_c01030{transform:matrix(0.176973,-0.001593,0.002250,0.249990,0,0);-ms-transform:matrix(0.176973,-0.001593,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176973,-0.001593,0.002250,0.249990,0,0);}
.mf2_c01030{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);}
.m14_c01030{transform:matrix(0.179023,-0.001611,0.002250,0.249990,0,0);-ms-transform:matrix(0.179023,-0.001611,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179023,-0.001611,0.002250,0.249990,0,0);}
.m6e_c01030{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);}
.m89_c01030{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);}
.m2c_c01030{transform:matrix(0.179458,-0.001615,0.002250,0.249990,0,0);-ms-transform:matrix(0.179458,-0.001615,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179458,-0.001615,0.002250,0.249990,0,0);}
.m7f_c01030{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);}
.mb1_c01030{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);}
.m46_c01030{transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);-ms-transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);}
.m7a_c01030{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);}
.md_c01030{transform:matrix(0.180858,-0.001628,0.002250,0.249990,0,0);-ms-transform:matrix(0.180858,-0.001628,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180858,-0.001628,0.002250,0.249990,0,0);}
.maf_c01030{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);}
.m3f_c01030{transform:matrix(0.180923,-0.001628,0.002250,0.249990,0,0);-ms-transform:matrix(0.180923,-0.001628,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180923,-0.001628,0.002250,0.249990,0,0);}
.mc3_c01030{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);}
.mec_c01030{transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181540,0.000000,0.000000,0.250000,0,0);}
.m78_c01030{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);}
.m65_c01030{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_c01030{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);}
.m4e_c01030{transform:matrix(0.183458,-0.001651,0.002250,0.249990,0,0);-ms-transform:matrix(0.183458,-0.001651,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183458,-0.001651,0.002250,0.249990,0,0);}
.ma8_c01030{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);}
.m21_c01030{transform:matrix(0.184203,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184203,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184203,-0.001658,0.002250,0.249990,0,0);}
.m25_c01030{transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);-ms-transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185212,-0.001667,0.002250,0.249990,0,0);}
.mdb_c01030{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);}
.m24_c01030{transform:matrix(0.185772,-0.001672,0.002250,0.249990,0,0);-ms-transform:matrix(0.185772,-0.001672,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185772,-0.001672,0.002250,0.249990,0,0);}
.m3e_c01030{transform:matrix(0.185872,-0.001673,0.002250,0.249990,0,0);-ms-transform:matrix(0.185872,-0.001673,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185872,-0.001673,0.002250,0.249990,0,0);}
.mbc_c01030{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);}
.m35_c01030{transform:matrix(0.186212,-0.001676,0.002250,0.249990,0,0);-ms-transform:matrix(0.186212,-0.001676,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186212,-0.001676,0.002250,0.249990,0,0);}
.m15_c01030{transform:matrix(0.187087,-0.001684,0.002250,0.249990,0,0);-ms-transform:matrix(0.187087,-0.001684,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187087,-0.001684,0.002250,0.249990,0,0);}
.m4d_c01030{transform:matrix(0.187107,-0.001684,0.002250,0.249990,0,0);-ms-transform:matrix(0.187107,-0.001684,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187107,-0.001684,0.002250,0.249990,0,0);}
.m92_c01030{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);}
.m1b_c01030{transform:matrix(0.187437,-0.001687,0.002250,0.249990,0,0);-ms-transform:matrix(0.187437,-0.001687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187437,-0.001687,0.002250,0.249990,0,0);}
.mad_c01030{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);}
.m17_c01030{transform:matrix(0.188382,-0.001695,0.002250,0.249990,0,0);-ms-transform:matrix(0.188382,-0.001695,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188382,-0.001695,0.002250,0.249990,0,0);}
.mc2_c01030{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);}
.m61_c01030{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);}
.m7b_c01030{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);}
.m4c_c01030{transform:matrix(0.188882,-0.001700,0.002250,0.249990,0,0);-ms-transform:matrix(0.188882,-0.001700,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188882,-0.001700,0.002250,0.249990,0,0);}
.m38_c01030{transform:matrix(0.188992,-0.001701,0.002250,0.249990,0,0);-ms-transform:matrix(0.188992,-0.001701,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188992,-0.001701,0.002250,0.249990,0,0);}
.m108_c01030{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);}
.m4f_c01030{transform:matrix(0.189372,-0.001704,0.002250,0.249990,0,0);-ms-transform:matrix(0.189372,-0.001704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189372,-0.001704,0.002250,0.249990,0,0);}
.m63_c01030{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);}
.m62_c01030{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);}
.m3a_c01030{transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);-ms-transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190082,-0.001711,0.002250,0.249990,0,0);}
.m70_c01030{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);}
.m60_c01030{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_c01030{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);}
.m84_c01030{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);}
.mf4_c01030{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);}
.m2e_c01030{transform:matrix(0.192497,-0.001732,0.002250,0.249990,0,0);-ms-transform:matrix(0.192497,-0.001732,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192497,-0.001732,0.002250,0.249990,0,0);}
.ma2_c01030{transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193515,0.000000,0.000000,0.250000,0,0);}
.md9_c01030{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);}
.m3_c01030{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);}
.me1_c01030{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);}
.m23_c01030{transform:matrix(0.194697,-0.001752,0.002250,0.249990,0,0);-ms-transform:matrix(0.194697,-0.001752,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194697,-0.001752,0.002250,0.249990,0,0);}
.m4a_c01030{transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195557,-0.001760,0.002250,0.249990,0,0);}
.m91_c01030{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);}
.m22_c01030{transform:matrix(0.196277,-0.001766,0.002250,0.249990,0,0);-ms-transform:matrix(0.196277,-0.001766,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196277,-0.001766,0.002250,0.249990,0,0);}
.mb9_c01030{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);}
.m8d_c01030{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);}
.mf6_c01030{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);}
.m43_c01030{transform:matrix(0.197402,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197402,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197402,-0.001777,0.002250,0.249990,0,0);}
.m8f_c01030{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);}
.m33_c01030{transform:matrix(0.198237,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198237,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198237,-0.001784,0.002250,0.249990,0,0);}
.mc_c01030{transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);}
.mb5_c01030{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);}
.m31_c01030{transform:matrix(0.198887,-0.001790,0.002250,0.249990,0,0);-ms-transform:matrix(0.198887,-0.001790,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198887,-0.001790,0.002250,0.249990,0,0);}
.mc4_c01030{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);}
.ma3_c01030{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);}
.me7_c01030{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);}
.m4_c01030{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);}
.m8b_c01030{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);}
.m3c_c01030{transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);}
.mde_c01030{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);}
.m96_c01030{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);}
.m42_c01030{transform:matrix(0.202117,-0.001819,0.002250,0.249990,0,0);-ms-transform:matrix(0.202117,-0.001819,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202117,-0.001819,0.002250,0.249990,0,0);}
.m19_c01030{transform:matrix(0.202137,-0.001819,0.002250,0.249990,0,0);-ms-transform:matrix(0.202137,-0.001819,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202137,-0.001819,0.002250,0.249990,0,0);}
.m10b_c01030{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);}
.m34_c01030{transform:matrix(0.202832,-0.001825,0.002250,0.249990,0,0);-ms-transform:matrix(0.202832,-0.001825,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202832,-0.001825,0.002250,0.249990,0,0);}
.m40_c01030{transform:matrix(0.202957,-0.001827,0.002250,0.249990,0,0);-ms-transform:matrix(0.202957,-0.001827,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202957,-0.001827,0.002250,0.249990,0,0);}
.m52_c01030{transform:matrix(0.203027,-0.001827,0.002250,0.249990,0,0);-ms-transform:matrix(0.203027,-0.001827,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203027,-0.001827,0.002250,0.249990,0,0);}
.mcc_c01030{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);}
.m6d_c01030{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);}
.m86_c01030{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);}
.m7e_c01030{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);}
.m30_c01030{transform:matrix(0.204652,-0.001842,0.002250,0.249990,0,0);-ms-transform:matrix(0.204652,-0.001842,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204652,-0.001842,0.002250,0.249990,0,0);}
.m10d_c01030{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);}
.m8a_c01030{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);}
.m26_c01030{transform:matrix(0.206042,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.206042,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206042,-0.001854,0.002250,0.249990,0,0);}
.m27_c01030{transform:matrix(0.206772,-0.001861,0.002250,0.249990,0,0);-ms-transform:matrix(0.206772,-0.001861,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206772,-0.001861,0.002250,0.249990,0,0);}
.m68_c01030{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);}
.m29_c01030{transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);-ms-transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208077,-0.001873,0.002250,0.249990,0,0);}
.m1a_c01030{transform:matrix(0.208767,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208767,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208767,-0.001879,0.002250,0.249990,0,0);}
.m56_c01030{transform:matrix(0.208827,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208827,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208827,-0.001879,0.002250,0.249990,0,0);}
.m1c_c01030{transform:matrix(0.208847,-0.001880,0.002250,0.249990,0,0);-ms-transform:matrix(0.208847,-0.001880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208847,-0.001880,0.002250,0.249990,0,0);}
.ma5_c01030{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);}
.m100_c01030{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);}
.mab_c01030{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);}
.mc5_c01030{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);}
.m6c_c01030{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);}
.m6f_c01030{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);}
.m80_c01030{transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212435,0.000000,0.000000,0.250000,0,0);}
.mae_c01030{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);}
.m55_c01030{transform:matrix(0.212911,-0.001916,0.002250,0.249990,0,0);-ms-transform:matrix(0.212911,-0.001916,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212911,-0.001916,0.002250,0.249990,0,0);}
.m5a_c01030{transform:matrix(0.213141,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213141,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213141,-0.001918,0.002250,0.249990,0,0);}
.m82_c01030{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);}
.m37_c01030{transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);-ms-transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213501,-0.001922,0.002250,0.249990,0,0);}
.mbf_c01030{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);}
.m85_c01030{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);}
.mf_c01030{transform:matrix(0.215751,-0.001942,0.002250,0.249990,0,0);-ms-transform:matrix(0.215751,-0.001942,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215751,-0.001942,0.002250,0.249990,0,0);}
.mce_c01030{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);}
.mff_c01030{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);}
.m2d_c01030{transform:matrix(0.216696,-0.001950,0.002250,0.249990,0,0);-ms-transform:matrix(0.216696,-0.001950,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216696,-0.001950,0.002250,0.249990,0,0);}
.mca_c01030{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);}
.m5f_c01030{transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);}
.m6b_c01030{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);}
.m13_c01030{transform:matrix(0.217726,-0.001960,0.002250,0.249990,0,0);-ms-transform:matrix(0.217726,-0.001960,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217726,-0.001960,0.002250,0.249990,0,0);}
.m5_c01030{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);}
.me9_c01030{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);}
.m5b_c01030{transform:matrix(0.218041,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.218041,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218041,-0.001962,0.002250,0.249990,0,0);}
.md3_c01030{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);}
.mc9_c01030{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);}
.mcd_c01030{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);}
.m53_c01030{transform:matrix(0.219481,-0.001975,0.002250,0.249990,0,0);-ms-transform:matrix(0.219481,-0.001975,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219481,-0.001975,0.002250,0.249990,0,0);}
.ma1_c01030{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);}
.ma4_c01030{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);}
.mfb_c01030{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);}
.m10c_c01030{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);}
.m50_c01030{transform:matrix(0.220431,-0.001984,0.002250,0.249990,0,0);-ms-transform:matrix(0.220431,-0.001984,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220431,-0.001984,0.002250,0.249990,0,0);}
.me_c01030{transform:matrix(0.221551,-0.001994,0.002250,0.249990,0,0);-ms-transform:matrix(0.221551,-0.001994,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221551,-0.001994,0.002250,0.249990,0,0);}
.me5_c01030{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);}
.m2b_c01030{transform:matrix(0.223031,-0.002007,0.002250,0.249990,0,0);-ms-transform:matrix(0.223031,-0.002007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223031,-0.002007,0.002250,0.249990,0,0);}
.m4b_c01030{transform:matrix(0.223136,-0.002008,0.002250,0.249990,0,0);-ms-transform:matrix(0.223136,-0.002008,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223136,-0.002008,0.002250,0.249990,0,0);}
.m3d_c01030{transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);-ms-transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);}
.m1e_c01030{transform:matrix(0.224821,-0.002023,0.002250,0.249990,0,0);-ms-transform:matrix(0.224821,-0.002023,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224821,-0.002023,0.002250,0.249990,0,0);}
.m6a_c01030{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);}
.m81_c01030{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);}
.m103_c01030{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);}
.ma9_c01030{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);}
.mfd_c01030{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);}
.mb6_c01030{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);}
.m9a_c01030{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);}
.m94_c01030{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);}
.m5c_c01030{transform:matrix(0.230891,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230891,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230891,-0.002078,0.002250,0.249990,0,0);}
.m2a_c01030{transform:matrix(0.230901,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230901,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230901,-0.002078,0.002250,0.249990,0,0);}
.mbb_c01030{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);}
.m10a_c01030{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.m7d_c01030{transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231760,0.000000,0.000000,0.250000,0,0);}
.m9c_c01030{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);}
.mb_c01030{transform:matrix(0.232561,-0.002093,0.002250,0.249990,0,0);-ms-transform:matrix(0.232561,-0.002093,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232561,-0.002093,0.002250,0.249990,0,0);}
.m39_c01030{transform:matrix(0.234336,-0.002109,0.002250,0.249990,0,0);-ms-transform:matrix(0.234336,-0.002109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234336,-0.002109,0.002250,0.249990,0,0);}
.m73_c01030{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m36_c01030{transform:matrix(0.235335,-0.002118,0.002250,0.249990,0,0);-ms-transform:matrix(0.235335,-0.002118,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235335,-0.002118,0.002250,0.249990,0,0);}
.m10_c01030{transform:matrix(0.236305,-0.002127,0.002250,0.249990,0,0);-ms-transform:matrix(0.236305,-0.002127,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236305,-0.002127,0.002250,0.249990,0,0);}
.md8_c01030{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);}
.m10f_c01030{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);}
.m67_c01030{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);}
.m1f_c01030{transform:matrix(0.238935,-0.002150,0.002250,0.249990,0,0);-ms-transform:matrix(0.238935,-0.002150,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238935,-0.002150,0.002250,0.249990,0,0);}
.md0_c01030{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.mdf_c01030{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m66_c01030{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.mb0_c01030{transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);}
.m7_c01030{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);}
.m9f_c01030{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);}
.m41_c01030{transform:matrix(0.244665,-0.002202,0.002250,0.249990,0,0);-ms-transform:matrix(0.244665,-0.002202,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244665,-0.002202,0.002250,0.249990,0,0);}
.mcf_c01030{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.me6_c01030{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m6_c01030{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m54_c01030{transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);-ms-transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);}
.m59_c01030{transform:matrix(0.251250,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251250,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251250,-0.002261,0.002250,0.249990,0,0);}
.m97_c01030{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);}
.m45_c01030{transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);-ms-transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);}
.m72_c01030{transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);}
.mc8_c01030{transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);}
.m2_c01030{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);}
.m71_c01030{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);}
.m8c_c01030{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);}
.md4_c01030{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);}
.m101_c01030{transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267760,0.000000,0.000000,0.250000,0,0);}
.ma0_c01030{transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);}
.m102_c01030{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.mfe_c01030{transform:matrix(0.270290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270290,0.000000,0.000000,0.250000,0,0);}
.m12_c01030{transform:matrix(0.271624,-0.002445,0.002250,0.249990,0,0);-ms-transform:matrix(0.271624,-0.002445,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271624,-0.002445,0.002250,0.249990,0,0);}
.me4_c01030{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);}
.m107_c01030{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);}
.m109_c01030{transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);}
.mf8_c01030{transform:matrix(0.285615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285615,0.000000,0.000000,0.250000,0,0);}
.md2_c01030{transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294160,0.000000,0.000000,0.250000,0,0);}
.mdc_c01030{transform:matrix(0.297950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297950,0.000000,0.000000,0.250000,0,0);}
.m10e_c01030{transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300650,0.000000,0.000000,0.250000,0,0);}
.m11_c01030{transform:matrix(0.302578,-0.002723,0.002250,0.249990,0,0);-ms-transform:matrix(0.302578,-0.002723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.302578,-0.002723,0.002250,0.249990,0,0);}
.m105_c01030{transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315520,0.000000,0.000000,0.250000,0,0);}
.m5e_c01030{transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317805,0.000000,0.000000,0.250000,0,0);}
.m58_c01030{transform:matrix(0.320062,-0.002881,0.002250,0.249990,0,0);-ms-transform:matrix(0.320062,-0.002881,0.002250,0.249990,0,0);-webkit-transform:matrix(0.320062,-0.002881,0.002250,0.249990,0,0);}
.m9b_c01030{transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);}
.ma7_c01030{transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338025,0.000000,0.000000,0.250000,0,0);}
.med_c01030{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);}
.m99_c01030{transform:matrix(0.342680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342680,0.000000,0.000000,0.250000,0,0);}
.mf3_c01030{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);}
.md5_c01030{transform:matrix(0.364905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364905,0.000000,0.000000,0.250000,0,0);}
.m104_c01030{transform:matrix(0.371930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371930,0.000000,0.000000,0.250000,0,0);}
.mf5_c01030{transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375415,0.000000,0.000000,0.250000,0,0);}
.mf9_c01030{transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);}
.mc6_c01030{transform:matrix(0.380415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380415,0.000000,0.000000,0.250000,0,0);}
.m95_c01030{transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383860,0.000000,0.000000,0.250000,0,0);}
.mfa_c01030{transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);}
.me0_c01030{transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391595,0.000000,0.000000,0.250000,0,0);}
.mfc_c01030{transform:matrix(0.400910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400910,0.000000,0.000000,0.250000,0,0);}
.ma_c01030{transform:matrix(0.401400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401400,0.000000,0.000000,0.250000,0,0);}
.mcb_c01030{transform:matrix(0.412540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412540,0.000000,0.000000,0.250000,0,0);}
.mc7_c01030{transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434155,0.000000,0.000000,0.250000,0,0);}
.ma6_c01030{transform:matrix(0.443105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443105,0.000000,0.000000,0.250000,0,0);}
.mc1_c01030{transform:matrix(0.459945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459945,0.000000,0.000000,0.250000,0,0);}
.me3_c01030{transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466100,0.000000,0.000000,0.250000,0,0);}
.mc0_c01030{transform:matrix(0.705800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705800,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{transform:matrix(0.709980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709980,0.000000,0.000000,0.250000,0,0);}
.me2_c01030{transform:matrix(0.789480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789480,0.000000,0.000000,0.250000,0,0);}
.m5d_c01030{transform:matrix(1.847495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.847495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.847495,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls0_c01030{letter-spacing:0.000000px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:0.000000px;}
.fc0_c01030{color:transparent;}
.fs8_c01030{font-size:22.050000px;}
.fs13_c01030{font-size:46.200000px;}
.fs11_c01030{font-size:50.400000px;}
.fs10_c01030{font-size:53.550000px;}
.fs0_c01030{font-size:54.600000px;}
.fs12_c01030{font-size:59.850000px;}
.fs1_c01030{font-size:63.002551px;}
.fsf_c01030{font-size:65.100000px;}
.fs6_c01030{font-size:65.102636px;}
.fsc_c01030{font-size:67.200000px;}
.fs2_c01030{font-size:68.252764px;}
.fsa_c01030{font-size:69.300000px;}
.fsb_c01030{font-size:70.350000px;}
.fs5_c01030{font-size:70.352849px;}
.fs9_c01030{font-size:71.400000px;}
.fs3_c01030{font-size:71.402892px;}
.fsd_c01030{font-size:72.450000px;}
.fs7_c01030{font-size:72.452934px;}
.fse_c01030{font-size:73.500000px;}
.fs4_c01030{font-size:73.502977px;}
.y0_c01030{bottom:0.000000px;}
.y1_c01030{bottom:155.671500px;}
.y64_c01030{bottom:173.283000px;}
.y68_c01030{bottom:191.115000px;}
.y65_c01030{bottom:191.967000px;}
.y67_c01030{bottom:210.031500px;}
.y66_c01030{bottom:226.822500px;}
.y63_c01030{bottom:288.816000px;}
.y62_c01030{bottom:311.608500px;}
.y61_c01030{bottom:334.626000px;}
.y60_c01030{bottom:357.954000px;}
.y5f_c01030{bottom:380.230500px;}
.y5e_c01030{bottom:403.161000px;}
.y5d_c01030{bottom:426.409500px;}
.y5c_c01030{bottom:448.393500px;}
.y5b_c01030{bottom:470.458500px;}
.y5a_c01030{bottom:498.216000px;}
.y59_c01030{bottom:520.651500px;}
.y58_c01030{bottom:543.712500px;}
.y57_c01030{bottom:566.646000px;}
.y56_c01030{bottom:590.145000px;}
.y55_c01030{bottom:612.456000px;}
.y54_c01030{bottom:628.020000px;}
.y52_c01030{bottom:634.606782px;}
.y4f_c01030{bottom:634.606969px;}
.y53_c01030{bottom:634.606995px;}
.y51_c01030{bottom:634.607049px;}
.y50_c01030{bottom:634.607676px;}
.y4a_c01030{bottom:658.158592px;}
.y4b_c01030{bottom:658.158655px;}
.y4c_c01030{bottom:658.158749px;}
.y49_c01030{bottom:658.158876px;}
.y4d_c01030{bottom:658.158885px;}
.y4e_c01030{bottom:658.159308px;}
.y48_c01030{bottom:658.159429px;}
.y47_c01030{bottom:658.159727px;}
.y3d_c01030{bottom:680.598549px;}
.y3e_c01030{bottom:680.598685px;}
.y43_c01030{bottom:680.599158px;}
.y42_c01030{bottom:680.599201px;}
.y3f_c01030{bottom:680.599302px;}
.y45_c01030{bottom:680.599461px;}
.y46_c01030{bottom:680.599568px;}
.y44_c01030{bottom:680.599654px;}
.y41_c01030{bottom:680.599695px;}
.y40_c01030{bottom:680.599709px;}
.y39_c01030{bottom:703.678114px;}
.y3c_c01030{bottom:703.678194px;}
.y37_c01030{bottom:703.678322px;}
.y34_c01030{bottom:703.678345px;}
.y3b_c01030{bottom:703.678387px;}
.y3a_c01030{bottom:703.678491px;}
.y35_c01030{bottom:703.678528px;}
.y38_c01030{bottom:703.678728px;}
.y36_c01030{bottom:703.678845px;}
.y31_c01030{bottom:726.220964px;}
.y32_c01030{bottom:726.221310px;}
.y33_c01030{bottom:726.221476px;}
.y30_c01030{bottom:726.221487px;}
.y2d_c01030{bottom:726.221617px;}
.y2f_c01030{bottom:726.221620px;}
.y2c_c01030{bottom:726.221751px;}
.y2b_c01030{bottom:726.221958px;}
.y2e_c01030{bottom:726.222054px;}
.y23_c01030{bottom:748.627514px;}
.y26_c01030{bottom:748.627880px;}
.y28_c01030{bottom:748.627913px;}
.y27_c01030{bottom:748.628046px;}
.y25_c01030{bottom:748.628073px;}
.y21_c01030{bottom:748.628111px;}
.y22_c01030{bottom:748.628157px;}
.y24_c01030{bottom:748.628236px;}
.y29_c01030{bottom:748.628319px;}
.y2a_c01030{bottom:748.628336px;}
.y1d_c01030{bottom:771.789996px;}
.y1f_c01030{bottom:771.790419px;}
.y1e_c01030{bottom:771.790493px;}
.y20_c01030{bottom:771.790526px;}
.y1c_c01030{bottom:771.790609px;}
.y1b_c01030{bottom:771.790653px;}
.y19_c01030{bottom:771.791143px;}
.y1a_c01030{bottom:771.791387px;}
.y18_c01030{bottom:771.791517px;}
.yd_c01030{bottom:792.722910px;}
.ye_c01030{bottom:792.918477px;}
.yf_c01030{bottom:793.490000px;}
.y10_c01030{bottom:793.971031px;}
.y11_c01030{bottom:794.698027px;}
.y12_c01030{bottom:794.912271px;}
.y13_c01030{bottom:795.273669px;}
.y14_c01030{bottom:795.673595px;}
.y15_c01030{bottom:796.052630px;}
.y16_c01030{bottom:796.671660px;}
.y17_c01030{bottom:797.598126px;}
.y2_c01030{bottom:815.401500px;}
.y3_c01030{bottom:815.625505px;}
.y4_c01030{bottom:815.996931px;}
.y5_c01030{bottom:816.218034px;}
.y6_c01030{bottom:816.582764px;}
.y7_c01030{bottom:816.852088px;}
.y8_c01030{bottom:817.333499px;}
.y9_c01030{bottom:817.494243px;}
.ya_c01030{bottom:817.831716px;}
.yb_c01030{bottom:818.203492px;}
.yc_c01030{bottom:818.436813px;}
.ha_c01030{height:22.050000px;}
.h15_c01030{height:46.200000px;}
.h13_c01030{height:50.400000px;}
.h12_c01030{height:53.550000px;}
.h2_c01030{height:54.600000px;}
.h14_c01030{height:59.850000px;}
.h3_c01030{height:63.002551px;}
.h11_c01030{height:65.100000px;}
.h8_c01030{height:65.102636px;}
.he_c01030{height:67.200000px;}
.h4_c01030{height:68.252764px;}
.hc_c01030{height:69.300000px;}
.hd_c01030{height:70.350000px;}
.h7_c01030{height:70.352849px;}
.hb_c01030{height:71.400000px;}
.h5_c01030{height:71.402892px;}
.hf_c01030{height:72.450000px;}
.h9_c01030{height:72.452934px;}
.h10_c01030{height:73.500000px;}
.h6_c01030{height:73.502977px;}
.h1_c01030{height:1005.000000px;}
.h0_c01030{height:1005.150000px;}
.w0_c01030{width:715.200000px;}
.w1_c01030{width:715.500000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:89.100000px;}
.x99_c01030{left:105.570000px;}
.xa2_c01030{left:111.780000px;}
.x2_c01030{left:112.860000px;}
.x86_c01030{left:125.550000px;}
.x15_c01030{left:129.290094px;}
.x46_c01030{left:133.108832px;}
.x28_c01030{left:137.432074px;}
.xa3_c01030{left:140.400000px;}
.xc_c01030{left:141.597000px;}
.x1f_c01030{left:143.102580px;}
.x16_c01030{left:144.352554px;}
.x5b_c01030{left:146.880000px;}
.x3_c01030{left:148.770000px;}
.x6c_c01030{left:157.410000px;}
.x70_c01030{left:159.840000px;}
.x4c_c01030{left:165.240000px;}
.xd_c01030{left:166.486500px;}
.x4_c01030{left:168.750000px;}
.x8d_c01030{left:173.070000px;}
.x47_c01030{left:174.690693px;}
.x29_c01030{left:175.773680px;}
.x77_c01030{left:182.790000px;}
.x3b_c01030{left:185.223161px;}
.x65_c01030{left:186.570000px;}
.x17_c01030{left:188.353475px;}
.x7f_c01030{left:189.810000px;}
.x9a_c01030{left:192.240000px;}
.x20_c01030{left:196.565414px;}
.x31_c01030{left:203.043530px;}
.x7c_c01030{left:204.660000px;}
.xe_c01030{left:207.756000px;}
.x6d_c01030{left:210.870000px;}
.x42_c01030{left:213.843416px;}
.x5_c01030{left:216.000000px;}
.x2a_c01030{left:218.705663px;}
.x36_c01030{left:221.945433px;}
.x3c_c01030{left:223.294739px;}
.x18_c01030{left:225.300138px;}
.x6a_c01030{left:227.340000px;}
.x5c_c01030{left:229.770000px;}
.x57_c01030{left:230.850000px;}
.x6_c01030{left:232.470000px;}
.x81_c01030{left:233.550000px;}
.x71_c01030{left:235.440000px;}
.x48_c01030{left:236.792729px;}
.x87_c01030{left:238.680000px;}
.x8e_c01030{left:243.540000px;}
.x32_c01030{left:247.865661px;}
.x7d_c01030{left:249.480000px;}
.x66_c01030{left:256.230000px;}
.x37_c01030{left:257.316795px;}
.x82_c01030{left:258.390000px;}
.x51_c01030{left:259.740000px;}
.x21_c01030{left:261.097638px;}
.x3d_c01030{left:262.176384px;}
.x43_c01030{left:263.254425px;}
.x58_c01030{left:267.030000px;}
.x78_c01030{left:268.380000px;}
.x60_c01030{left:271.080000px;}
.xf_c01030{left:272.848500px;}
.x4d_c01030{left:274.590000px;}
.x83_c01030{left:276.750000px;}
.x52_c01030{left:278.640000px;}
.x19_c01030{left:281.242127px;}
.x9b_c01030{left:283.500000px;}
.x80_c01030{left:285.930000px;}
.x22_c01030{left:287.018244px;}
.x7_c01030{left:289.170000px;}
.x88_c01030{left:290.520000px;}
.x2b_c01030{left:292.958670px;}
.x38_c01030{left:295.928427px;}
.x1a_c01030{left:297.713032px;}
.x49_c01030{left:299.434805px;}
.x10_c01030{left:302.773500px;}
.x74_c01030{left:305.640000px;}
.x79_c01030{left:310.230000px;}
.x84_c01030{left:314.010000px;}
.x5d_c01030{left:315.900000px;}
.x8f_c01030{left:318.870000px;}
.x61_c01030{left:320.760000px;}
.x1b_c01030{left:325.534034px;}
.x8_c01030{left:326.970000px;}
.x6e_c01030{left:328.320000px;}
.x7e_c01030{left:331.020000px;}
.x3e_c01030{left:333.459162px;}
.x23_c01030{left:335.350659px;}
.x6b_c01030{left:339.390000px;}
.x5e_c01030{left:341.820000px;}
.x67_c01030{left:344.250000px;}
.x2c_c01030{left:345.611436px;}
.x4e_c01030{left:347.490000px;}
.x75_c01030{left:349.920000px;}
.x62_c01030{left:351.810000px;}
.x53_c01030{left:353.430000px;}
.x9_c01030{left:355.860000px;}
.x9c_c01030{left:357.480000px;}
.x6f_c01030{left:358.830000px;}
.x90_c01030{left:361.800000px;}
.x59_c01030{left:363.690000px;}
.x72_c01030{left:365.040000px;}
.x7a_c01030{left:367.200000px;}
.x3f_c01030{left:368.290484px;}
.x24_c01030{left:370.452007px;}
.x4a_c01030{left:371.797664px;}
.x11_c01030{left:374.124000px;}
.xa_c01030{left:377.460000px;}
.x2d_c01030{left:379.092650px;}
.x76_c01030{left:382.860000px;}
.x1c_c01030{left:385.416374px;}
.x4b_c01030{left:387.720000px;}
.x91_c01030{left:393.930000px;}
.x7b_c01030{left:395.820000px;}
.x40_c01030{left:397.181319px;}
.x25_c01030{left:399.342843px;}
.xb_c01030{left:402.300000px;}
.x33_c01030{left:404.472351px;}
.x54_c01030{left:408.240000px;}
.x12_c01030{left:411.621000px;}
.x39_c01030{left:416.623701px;}
.x63_c01030{left:419.040000px;}
.x5f_c01030{left:420.120000px;}
.x9d_c01030{left:424.710000px;}
.x44_c01030{left:425.800088px;}
.x55_c01030{left:429.840000px;}
.x1d_c01030{left:433.029159px;}
.x92_c01030{left:439.020000px;}
.x26_c01030{left:442.004799px;}
.x2e_c01030{left:444.434942px;}
.x34_c01030{left:445.514172px;}
.x4f_c01030{left:446.850000px;}
.x89_c01030{left:450.090000px;}
.x13_c01030{left:452.929500px;}
.x73_c01030{left:454.950000px;}
.x68_c01030{left:460.350000px;}
.x27_c01030{left:464.685135px;}
.x35_c01030{left:466.034333px;}
.x9e_c01030{left:467.910000px;}
.x2f_c01030{left:469.815494px;}
.x93_c01030{left:471.690000px;}
.x3a_c01030{left:473.595318px;}
.x56_c01030{left:476.280000px;}
.x14_c01030{left:478.854000px;}
.x41_c01030{left:480.345056px;}
.x5a_c01030{left:481.950000px;}
.x64_c01030{left:487.620000px;}
.x30_c01030{left:488.985546px;}
.x85_c01030{left:490.590000px;}
.x69_c01030{left:494.640000px;}
.x50_c01030{left:495.720000px;}
.x45_c01030{left:497.352879px;}
.x1e_c01030{left:504.300594px;}
.x94_c01030{left:505.440000px;}
.x8a_c01030{left:509.760000px;}
.x9f_c01030{left:515.160000px;}
.x95_c01030{left:536.220000px;}
.x8b_c01030{left:544.320000px;}
.xa0_c01030{left:554.040000px;}
.xa1_c01030{left:557.280000px;}
.x8c_c01030{left:564.300000px;}
.x96_c01030{left:570.780000px;}
.x97_c01030{left:605.880000px;}
.x98_c01030{left:623.700000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls0_c01030{letter-spacing:0.000000pt;}
.ws0_c01030{word-spacing:0.000000pt;}
.fs8_c01030{font-size:19.600000pt;}
.fs13_c01030{font-size:41.066667pt;}
.fs11_c01030{font-size:44.800000pt;}
.fs10_c01030{font-size:47.600000pt;}
.fs0_c01030{font-size:48.533333pt;}
.fs12_c01030{font-size:53.200000pt;}
.fs1_c01030{font-size:56.002268pt;}
.fsf_c01030{font-size:57.866667pt;}
.fs6_c01030{font-size:57.869010pt;}
.fsc_c01030{font-size:59.733333pt;}
.fs2_c01030{font-size:60.669124pt;}
.fsa_c01030{font-size:61.600000pt;}
.fsb_c01030{font-size:62.533333pt;}
.fs5_c01030{font-size:62.535866pt;}
.fs9_c01030{font-size:63.466667pt;}
.fs3_c01030{font-size:63.469237pt;}
.fsd_c01030{font-size:64.400000pt;}
.fs7_c01030{font-size:64.402608pt;}
.fse_c01030{font-size:65.333333pt;}
.fs4_c01030{font-size:65.335979pt;}
.y0_c01030{bottom:0.000000pt;}
.y1_c01030{bottom:138.374667pt;}
.y64_c01030{bottom:154.029333pt;}
.y68_c01030{bottom:169.880000pt;}
.y65_c01030{bottom:170.637333pt;}
.y67_c01030{bottom:186.694667pt;}
.y66_c01030{bottom:201.620000pt;}
.y63_c01030{bottom:256.725333pt;}
.y62_c01030{bottom:276.985333pt;}
.y61_c01030{bottom:297.445333pt;}
.y60_c01030{bottom:318.181333pt;}
.y5f_c01030{bottom:337.982667pt;}
.y5e_c01030{bottom:358.365333pt;}
.y5d_c01030{bottom:379.030667pt;}
.y5c_c01030{bottom:398.572000pt;}
.y5b_c01030{bottom:418.185333pt;}
.y5a_c01030{bottom:442.858667pt;}
.y59_c01030{bottom:462.801333pt;}
.y58_c01030{bottom:483.300000pt;}
.y57_c01030{bottom:503.685333pt;}
.y56_c01030{bottom:524.573333pt;}
.y55_c01030{bottom:544.405333pt;}
.y54_c01030{bottom:558.240000pt;}
.y52_c01030{bottom:564.094917pt;}
.y4f_c01030{bottom:564.095084pt;}
.y53_c01030{bottom:564.095107pt;}
.y51_c01030{bottom:564.095155pt;}
.y50_c01030{bottom:564.095712pt;}
.y4a_c01030{bottom:585.029860pt;}
.y4b_c01030{bottom:585.029916pt;}
.y4c_c01030{bottom:585.029999pt;}
.y49_c01030{bottom:585.030112pt;}
.y4d_c01030{bottom:585.030120pt;}
.y4e_c01030{bottom:585.030496pt;}
.y48_c01030{bottom:585.030604pt;}
.y47_c01030{bottom:585.030868pt;}
.y3d_c01030{bottom:604.976488pt;}
.y3e_c01030{bottom:604.976609pt;}
.y43_c01030{bottom:604.977029pt;}
.y42_c01030{bottom:604.977068pt;}
.y3f_c01030{bottom:604.977157pt;}
.y45_c01030{bottom:604.977299pt;}
.y46_c01030{bottom:604.977393pt;}
.y44_c01030{bottom:604.977471pt;}
.y41_c01030{bottom:604.977507pt;}
.y40_c01030{bottom:604.977519pt;}
.y39_c01030{bottom:625.491657pt;}
.y3c_c01030{bottom:625.491728pt;}
.y37_c01030{bottom:625.491841pt;}
.y34_c01030{bottom:625.491863pt;}
.y3b_c01030{bottom:625.491900pt;}
.y3a_c01030{bottom:625.491992pt;}
.y35_c01030{bottom:625.492025pt;}
.y38_c01030{bottom:625.492203pt;}
.y36_c01030{bottom:625.492307pt;}
.y31_c01030{bottom:645.529745pt;}
.y32_c01030{bottom:645.530053pt;}
.y33_c01030{bottom:645.530201pt;}
.y30_c01030{bottom:645.530211pt;}
.y2d_c01030{bottom:645.530327pt;}
.y2f_c01030{bottom:645.530329pt;}
.y2c_c01030{bottom:645.530445pt;}
.y2b_c01030{bottom:645.530629pt;}
.y2e_c01030{bottom:645.530715pt;}
.y23_c01030{bottom:665.446679pt;}
.y26_c01030{bottom:665.447004pt;}
.y28_c01030{bottom:665.447033pt;}
.y27_c01030{bottom:665.447152pt;}
.y25_c01030{bottom:665.447176pt;}
.y21_c01030{bottom:665.447209pt;}
.y22_c01030{bottom:665.447251pt;}
.y24_c01030{bottom:665.447321pt;}
.y29_c01030{bottom:665.447395pt;}
.y2a_c01030{bottom:665.447409pt;}
.y1d_c01030{bottom:686.035552pt;}
.y1f_c01030{bottom:686.035928pt;}
.y1e_c01030{bottom:686.035993pt;}
.y20_c01030{bottom:686.036023pt;}
.y1c_c01030{bottom:686.036097pt;}
.y1b_c01030{bottom:686.036136pt;}
.y19_c01030{bottom:686.036572pt;}
.y1a_c01030{bottom:686.036788pt;}
.y18_c01030{bottom:686.036904pt;}
.yd_c01030{bottom:704.642587pt;}
.ye_c01030{bottom:704.816424pt;}
.yf_c01030{bottom:705.324444pt;}
.y10_c01030{bottom:705.752028pt;}
.y11_c01030{bottom:706.398247pt;}
.y12_c01030{bottom:706.588685pt;}
.y13_c01030{bottom:706.909928pt;}
.y14_c01030{bottom:707.265417pt;}
.y15_c01030{bottom:707.602337pt;}
.y16_c01030{bottom:708.152587pt;}
.y17_c01030{bottom:708.976112pt;}
.y2_c01030{bottom:724.801333pt;}
.y3_c01030{bottom:725.000449pt;}
.y4_c01030{bottom:725.330605pt;}
.y5_c01030{bottom:725.527141pt;}
.y6_c01030{bottom:725.851345pt;}
.y7_c01030{bottom:726.090745pt;}
.y8_c01030{bottom:726.518665pt;}
.y9_c01030{bottom:726.661549pt;}
.ya_c01030{bottom:726.961525pt;}
.yb_c01030{bottom:727.291993pt;}
.yc_c01030{bottom:727.499389pt;}
.ha_c01030{height:19.600000pt;}
.h15_c01030{height:41.066667pt;}
.h13_c01030{height:44.800000pt;}
.h12_c01030{height:47.600000pt;}
.h2_c01030{height:48.533333pt;}
.h14_c01030{height:53.200000pt;}
.h3_c01030{height:56.002268pt;}
.h11_c01030{height:57.866667pt;}
.h8_c01030{height:57.869010pt;}
.he_c01030{height:59.733333pt;}
.h4_c01030{height:60.669124pt;}
.hc_c01030{height:61.600000pt;}
.hd_c01030{height:62.533333pt;}
.h7_c01030{height:62.535866pt;}
.hb_c01030{height:63.466667pt;}
.h5_c01030{height:63.469237pt;}
.hf_c01030{height:64.400000pt;}
.h9_c01030{height:64.402608pt;}
.h10_c01030{height:65.333333pt;}
.h6_c01030{height:65.335979pt;}
.h1_c01030{height:893.333333pt;}
.h0_c01030{height:893.466667pt;}
.w0_c01030{width:635.733333pt;}
.w1_c01030{width:636.000000pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:79.200000pt;}
.x99_c01030{left:93.840000pt;}
.xa2_c01030{left:99.360000pt;}
.x2_c01030{left:100.320000pt;}
.x86_c01030{left:111.600000pt;}
.x15_c01030{left:114.924528pt;}
.x46_c01030{left:118.318961pt;}
.x28_c01030{left:122.161844pt;}
.xa3_c01030{left:124.800000pt;}
.xc_c01030{left:125.864000pt;}
.x1f_c01030{left:127.202293pt;}
.x16_c01030{left:128.313381pt;}
.x5b_c01030{left:130.560000pt;}
.x3_c01030{left:132.240000pt;}
.x6c_c01030{left:139.920000pt;}
.x70_c01030{left:142.080000pt;}
.x4c_c01030{left:146.880000pt;}
.xd_c01030{left:147.988000pt;}
.x4_c01030{left:150.000000pt;}
.x8d_c01030{left:153.840000pt;}
.x47_c01030{left:155.280616pt;}
.x29_c01030{left:156.243271pt;}
.x77_c01030{left:162.480000pt;}
.x3b_c01030{left:164.642809pt;}
.x65_c01030{left:165.840000pt;}
.x17_c01030{left:167.425311pt;}
.x7f_c01030{left:168.720000pt;}
.x9a_c01030{left:170.880000pt;}
.x20_c01030{left:174.724812pt;}
.x31_c01030{left:180.483137pt;}
.x7c_c01030{left:181.920000pt;}
.xe_c01030{left:184.672000pt;}
.x6d_c01030{left:187.440000pt;}
.x42_c01030{left:190.083036pt;}
.x5_c01030{left:192.000000pt;}
.x2a_c01030{left:194.405033pt;}
.x36_c01030{left:197.284829pt;}
.x3c_c01030{left:198.484212pt;}
.x18_c01030{left:200.266789pt;}
.x6a_c01030{left:202.080000pt;}
.x5c_c01030{left:204.240000pt;}
.x57_c01030{left:205.200000pt;}
.x6_c01030{left:206.640000pt;}
.x81_c01030{left:207.600000pt;}
.x71_c01030{left:209.280000pt;}
.x48_c01030{left:210.482425pt;}
.x87_c01030{left:212.160000pt;}
.x8e_c01030{left:216.480000pt;}
.x32_c01030{left:220.325032pt;}
.x7d_c01030{left:221.760000pt;}
.x66_c01030{left:227.760000pt;}
.x37_c01030{left:228.726040pt;}
.x82_c01030{left:229.680000pt;}
.x51_c01030{left:230.880000pt;}
.x21_c01030{left:232.086789pt;}
.x3d_c01030{left:233.045675pt;}
.x43_c01030{left:234.003933pt;}
.x58_c01030{left:237.360000pt;}
.x78_c01030{left:238.560000pt;}
.x60_c01030{left:240.960000pt;}
.xf_c01030{left:242.532000pt;}
.x4d_c01030{left:244.080000pt;}
.x83_c01030{left:246.000000pt;}
.x52_c01030{left:247.680000pt;}
.x19_c01030{left:249.993001pt;}
.x9b_c01030{left:252.000000pt;}
.x80_c01030{left:254.160000pt;}
.x22_c01030{left:255.127328pt;}
.x7_c01030{left:257.040000pt;}
.x88_c01030{left:258.240000pt;}
.x2b_c01030{left:260.407707pt;}
.x38_c01030{left:263.047491pt;}
.x1a_c01030{left:264.633807pt;}
.x49_c01030{left:266.164271pt;}
.x10_c01030{left:269.132000pt;}
.x74_c01030{left:271.680000pt;}
.x79_c01030{left:275.760000pt;}
.x84_c01030{left:279.120000pt;}
.x5d_c01030{left:280.800000pt;}
.x8f_c01030{left:283.440000pt;}
.x61_c01030{left:285.120000pt;}
.x1b_c01030{left:289.363585pt;}
.x8_c01030{left:290.640000pt;}
.x6e_c01030{left:291.840000pt;}
.x7e_c01030{left:294.240000pt;}
.x3e_c01030{left:296.408144pt;}
.x23_c01030{left:298.089475pt;}
.x6b_c01030{left:301.680000pt;}
.x5e_c01030{left:303.840000pt;}
.x67_c01030{left:306.000000pt;}
.x2c_c01030{left:307.210165pt;}
.x4e_c01030{left:308.880000pt;}
.x75_c01030{left:311.040000pt;}
.x62_c01030{left:312.720000pt;}
.x53_c01030{left:314.160000pt;}
.x9_c01030{left:316.320000pt;}
.x9c_c01030{left:317.760000pt;}
.x6f_c01030{left:318.960000pt;}
.x90_c01030{left:321.600000pt;}
.x59_c01030{left:323.280000pt;}
.x72_c01030{left:324.480000pt;}
.x7a_c01030{left:326.400000pt;}
.x3f_c01030{left:327.369319pt;}
.x24_c01030{left:329.290673pt;}
.x4a_c01030{left:330.486812pt;}
.x11_c01030{left:332.554667pt;}
.xa_c01030{left:335.520000pt;}
.x2d_c01030{left:336.971244pt;}
.x76_c01030{left:340.320000pt;}
.x1c_c01030{left:342.592332pt;}
.x4b_c01030{left:344.640000pt;}
.x91_c01030{left:350.160000pt;}
.x7b_c01030{left:351.840000pt;}
.x40_c01030{left:353.050061pt;}
.x25_c01030{left:354.971416pt;}
.xb_c01030{left:357.600000pt;}
.x33_c01030{left:359.530979pt;}
.x54_c01030{left:362.880000pt;}
.x12_c01030{left:365.885333pt;}
.x39_c01030{left:370.332179pt;}
.x63_c01030{left:372.480000pt;}
.x5f_c01030{left:373.440000pt;}
.x9d_c01030{left:377.520000pt;}
.x44_c01030{left:378.488967pt;}
.x55_c01030{left:382.080000pt;}
.x1d_c01030{left:384.914808pt;}
.x92_c01030{left:390.240000pt;}
.x26_c01030{left:392.893155pt;}
.x2e_c01030{left:395.053281pt;}
.x34_c01030{left:396.012597pt;}
.x4f_c01030{left:397.200000pt;}
.x89_c01030{left:400.080000pt;}
.x13_c01030{left:402.604000pt;}
.x73_c01030{left:404.400000pt;}
.x68_c01030{left:409.200000pt;}
.x27_c01030{left:413.053453pt;}
.x35_c01030{left:414.252740pt;}
.x9e_c01030{left:415.920000pt;}
.x2f_c01030{left:417.613772pt;}
.x93_c01030{left:419.280000pt;}
.x3a_c01030{left:420.973616pt;}
.x56_c01030{left:423.360000pt;}
.x14_c01030{left:425.648000pt;}
.x41_c01030{left:426.973383pt;}
.x5a_c01030{left:428.400000pt;}
.x64_c01030{left:433.440000pt;}
.x30_c01030{left:434.653819pt;}
.x85_c01030{left:436.080000pt;}
.x69_c01030{left:439.680000pt;}
.x50_c01030{left:440.640000pt;}
.x45_c01030{left:442.091448pt;}
.x1e_c01030{left:448.267195pt;}
.x94_c01030{left:449.280000pt;}
.x8a_c01030{left:453.120000pt;}
.x9f_c01030{left:457.920000pt;}
.x95_c01030{left:476.640000pt;}
.x8b_c01030{left:483.840000pt;}
.xa0_c01030{left:492.480000pt;}
.xa1_c01030{left:495.360000pt;}
.x8c_c01030{left:501.600000pt;}
.x96_c01030{left:507.360000pt;}
.x97_c01030{left:538.560000pt;}
.x98_c01030{left:554.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_c01031 {
    display:none;
  }
  .loading-indicator_c01031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01031" -> "#page-container .classname_c01031")
 */
.pf_c01031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01031 {overflow:visible;}
  }
}
.c_c01031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01031:after { /* webkit #35443 */
  content: '';
}
.t_c01031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01031 { /* info for Javascript */
  display:none;
}
.l_c01031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.000000;font-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_c01031{transform:matrix(0.007540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007540,0.000000,0.000000,0.250000,0,0);}
.m41_c01031{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_c01031{transform:matrix(0.064042,0.002051,-0.008004,0.249872,0,0);-ms-transform:matrix(0.064042,0.002051,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.064042,0.002051,-0.008004,0.249872,0,0);}
.m84_c01031{transform:matrix(0.097095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097095,0.000000,0.000000,0.250000,0,0);}
.m71_c01031{transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100555,0.000000,0.000000,0.250000,0,0);}
.m68_c01031{transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102910,0.000000,0.000000,0.250000,0,0);}
.m55_c01031{transform:matrix(0.106570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106570,0.000000,0.000000,0.250000,0,0);}
.mae_c01031{transform:matrix(0.138554,0.004438,-0.008004,0.249872,0,0);-ms-transform:matrix(0.138554,0.004438,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.138554,0.004438,-0.008004,0.249872,0,0);}
.m52_c01031{transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150560,0.000000,0.000000,0.250000,0,0);}
.m14_c01031{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);}
.m31_c01031{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);}
.m18_c01031{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);}
.m38_c01031{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);}
.mb1_c01031{transform:matrix(0.157039,0.005030,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157039,0.005030,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157039,0.005030,-0.008004,0.249872,0,0);}
.m3e_c01031{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);}
.m22_c01031{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);}
.m9c_c01031{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);}
.m2d_c01031{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);}
.m80_c01031{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);}
.m8d_c01031{transform:matrix(0.164418,0.001973,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164418,0.001973,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164418,0.001973,-0.003000,0.249982,0,0);}
.m8c_c01031{transform:matrix(0.164973,0.001980,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164973,0.001980,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164973,0.001980,-0.003000,0.249982,0,0);}
.m1d_c01031{transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);}
.m2c_c01031{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);}
.m73_c01031{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);}
.m7_c01031{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);}
.m7f_c01031{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);}
.m26_c01031{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);}
.m69_c01031{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);}
.m37_c01031{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);}
.m1f_c01031{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);}
.m0_c01031{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);}
.m54_c01031{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);}
.m58_c01031{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);}
.m72_c01031{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);}
.m2f_c01031{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);}
.m90_c01031{transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175857,0.002110,-0.003000,0.249982,0,0);}
.m32_c01031{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);}
.md_c01031{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);}
.m5b_c01031{transform:matrix(0.177293,0.001596,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177293,0.001596,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177293,0.001596,-0.002250,0.249990,0,0);}
.m2b_c01031{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);}
.m2e_c01031{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);}
.m1c_c01031{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);}
.m9a_c01031{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);}
.m6d_c01031{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);}
.mb0_c01031{transform:matrix(0.181917,0.005827,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181917,0.005827,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181917,0.005827,-0.008004,0.249872,0,0);}
.m50_c01031{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);}
.m4_c01031{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);}
.m89_c01031{transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183582,0.002203,-0.003000,0.249982,0,0);}
.ma2_c01031{transform:matrix(0.183629,0.002387,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183629,0.002387,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183629,0.002387,-0.003250,0.249979,0,0);}
.m35_c01031{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);}
.mb3_c01031{transform:matrix(0.184146,0.005899,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184146,0.005899,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184146,0.005899,-0.008004,0.249872,0,0);}
.ma_c01031{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);}
.m98_c01031{transform:matrix(0.185722,0.002229,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185722,0.002229,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185722,0.002229,-0.003000,0.249982,0,0);}
.m7b_c01031{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);}
.m6f_c01031{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);}
.m60_c01031{transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188462,0.001696,-0.002250,0.249990,0,0);}
.m3d_c01031{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);}
.m95_c01031{transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188841,0.002266,-0.003000,0.249982,0,0);}
.mb_c01031{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);}
.m13_c01031{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);}
.m51_c01031{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);}
.m3a_c01031{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);}
.mc_c01031{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);}
.mad_c01031{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);}
.m11_c01031{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);}
.ma9_c01031{transform:matrix(0.193621,0.006202,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193621,0.006202,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193621,0.006202,-0.008004,0.249872,0,0);}
.m33_c01031{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);}
.m12_c01031{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);}
.m9d_c01031{transform:matrix(0.194906,0.002339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194906,0.002339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194906,0.002339,-0.003000,0.249982,0,0);}
.m49_c01031{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);}
.mb5_c01031{transform:matrix(0.195740,0.006270,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195740,0.006270,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195740,0.006270,-0.008004,0.249872,0,0);}
.m7e_c01031{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);}
.m8b_c01031{transform:matrix(0.196371,0.002356,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196371,0.002356,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196371,0.002356,-0.003000,0.249982,0,0);}
.m6c_c01031{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);}
.mac_c01031{transform:matrix(0.197564,0.006328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197564,0.006328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197564,0.006328,-0.008004,0.249872,0,0);}
.m99_c01031{transform:matrix(0.200121,0.002401,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200121,0.002401,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200121,0.002401,-0.003000,0.249982,0,0);}
.m1b_c01031{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);}
.m15_c01031{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);}
.mb4_c01031{transform:matrix(0.201657,0.006459,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201657,0.006459,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201657,0.006459,-0.008004,0.249872,0,0);}
.m34_c01031{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);}
.m39_c01031{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);}
.m8_c01031{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);}
.m2a_c01031{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);}
.m74_c01031{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);}
.m91_c01031{transform:matrix(0.204905,0.002459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204905,0.002459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204905,0.002459,-0.003000,0.249982,0,0);}
.m7a_c01031{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);}
.m29_c01031{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);}
.m5_c01031{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);}
.m88_c01031{transform:matrix(0.205915,0.002471,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205915,0.002471,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205915,0.002471,-0.003000,0.249982,0,0);}
.m1_c01031{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);}
.maa_c01031{transform:matrix(0.208298,0.006672,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208298,0.006672,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208298,0.006672,-0.008004,0.249872,0,0);}
.m23_c01031{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);}
.m46_c01031{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);}
.m86_c01031{transform:matrix(0.209645,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209645,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209645,0.002516,-0.003000,0.249982,0,0);}
.m45_c01031{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);}
.m70_c01031{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);}
.m92_c01031{transform:matrix(0.212130,0.002546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212130,0.002546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212130,0.002546,-0.003000,0.249982,0,0);}
.m77_c01031{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);}
.m97_c01031{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);}
.m9b_c01031{transform:matrix(0.214020,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214020,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214020,0.002568,-0.003000,0.249982,0,0);}
.m3_c01031{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);}
.m3b_c01031{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);}
.m8a_c01031{transform:matrix(0.219614,0.002635,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219614,0.002635,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219614,0.002635,-0.003000,0.249982,0,0);}
.m36_c01031{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);}
.m44_c01031{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);}
.mf_c01031{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);}
.m5d_c01031{transform:matrix(0.221291,0.001992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221291,0.001992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221291,0.001992,-0.002250,0.249990,0,0);}
.m19_c01031{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);}
.m78_c01031{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);}
.m25_c01031{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);}
.ma3_c01031{transform:matrix(0.223986,0.002912,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223986,0.002912,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223986,0.002912,-0.003250,0.249979,0,0);}
.m10_c01031{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);}
.m30_c01031{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);}
.m27_c01031{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);}
.m1a_c01031{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);}
.m21_c01031{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);}
.m28_c01031{transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229710,0.000000,0.000000,0.250000,0,0);}
.m3c_c01031{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);}
.m67_c01031{transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230835,0.000000,0.000000,0.250000,0,0);}
.m81_c01031{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);}
.m6a_c01031{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);}
.m3f_c01031{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);}
.m93_c01031{transform:matrix(0.234883,0.002819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234883,0.002819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234883,0.002819,-0.003000,0.249982,0,0);}
.m20_c01031{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);}
.m65_c01031{transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237740,0.002140,-0.002250,0.249990,0,0);}
.m6b_c01031{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);}
.m1e_c01031{transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238035,0.000000,0.000000,0.250000,0,0);}
.m75_c01031{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);}
.m6_c01031{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.m66_c01031{transform:matrix(0.240760,0.002167,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240760,0.002167,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240760,0.002167,-0.002250,0.249990,0,0);}
.m9_c01031{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);}
.m94_c01031{transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241818,0.002902,-0.003000,0.249982,0,0);}
.m53_c01031{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m42_c01031{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);}
.m5c_c01031{transform:matrix(0.244820,0.002203,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244820,0.002203,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244820,0.002203,-0.002250,0.249990,0,0);}
.m4c_c01031{transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);}
.m79_c01031{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m6e_c01031{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);}
.m16_c01031{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);}
.m76_c01031{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.m56_c01031{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m62_c01031{transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);}
.m4f_c01031{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);}
.m4a_c01031{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.m24_c01031{transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);}
.me_c01031{transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263670,0.000000,0.000000,0.250000,0,0);}
.m7c_c01031{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.ma4_c01031{transform:matrix(0.271862,0.003534,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271862,0.003534,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271862,0.003534,-0.003250,0.249979,0,0);}
.m8f_c01031{transform:matrix(0.279125,0.003349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279125,0.003349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279125,0.003349,-0.003000,0.249982,0,0);}
.m8e_c01031{transform:matrix(0.284095,0.003409,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284095,0.003409,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284095,0.003409,-0.003000,0.249982,0,0);}
.m83_c01031{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.m82_c01031{transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289860,0.000000,0.000000,0.250000,0,0);}
.m87_c01031{transform:matrix(0.292329,0.003508,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292329,0.003508,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292329,0.003508,-0.003000,0.249982,0,0);}
.m17_c01031{transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295510,0.000000,0.000000,0.250000,0,0);}
.ma7_c01031{transform:matrix(0.298502,0.009562,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298502,0.009562,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298502,0.009562,-0.008004,0.249872,0,0);}
.m2_c01031{transform:matrix(0.304900,-0.004269,0.003500,0.249976,0,0);-ms-transform:matrix(0.304900,-0.004269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304900,-0.004269,0.003500,0.249976,0,0);}
.m5f_c01031{transform:matrix(0.312422,0.002812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.312422,0.002812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.312422,0.002812,-0.002250,0.249990,0,0);}
.m96_c01031{transform:matrix(0.325537,0.003906,-0.003000,0.249982,0,0);-ms-transform:matrix(0.325537,0.003906,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.325537,0.003906,-0.003000,0.249982,0,0);}
.maf_c01031{transform:matrix(0.349446,0.011193,-0.008004,0.249872,0,0);-ms-transform:matrix(0.349446,0.011193,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.349446,0.011193,-0.008004,0.249872,0,0);}
.m7d_c01031{transform:matrix(0.350830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350830,0.000000,0.000000,0.250000,0,0);}
.mb6_c01031{transform:matrix(0.357916,0.011465,-0.008004,0.249872,0,0);-ms-transform:matrix(0.357916,0.011465,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.357916,0.011465,-0.008004,0.249872,0,0);}
.m61_c01031{transform:matrix(0.362005,0.003258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.362005,0.003258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.362005,0.003258,-0.002250,0.249990,0,0);}
.m9e_c01031{transform:matrix(0.380683,0.004949,-0.003250,0.249979,0,0);-ms-transform:matrix(0.380683,0.004949,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.380683,0.004949,-0.003250,0.249979,0,0);}
.m4b_c01031{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);}
.m47_c01031{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);}
.m4e_c01031{transform:matrix(0.418060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418060,0.000000,0.000000,0.250000,0,0);}
.m4d_c01031{transform:matrix(0.425435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425435,0.000000,0.000000,0.250000,0,0);}
.m64_c01031{transform:matrix(0.439047,0.003951,-0.002250,0.249990,0,0);-ms-transform:matrix(0.439047,0.003951,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.439047,0.003951,-0.002250,0.249990,0,0);}
.ma6_c01031{transform:matrix(0.440353,0.005725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.440353,0.005725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.440353,0.005725,-0.003250,0.249979,0,0);}
.m63_c01031{transform:matrix(0.455947,0.004104,-0.002250,0.249990,0,0);-ms-transform:matrix(0.455947,0.004104,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.455947,0.004104,-0.002250,0.249990,0,0);}
.m48_c01031{transform:matrix(0.460035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460035,0.000000,0.000000,0.250000,0,0);}
.m85_c01031{transform:matrix(0.466695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466695,0.000000,0.000000,0.250000,0,0);}
.m5a_c01031{transform:matrix(0.495615,0.004461,-0.002250,0.249990,0,0);-ms-transform:matrix(0.495615,0.004461,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.495615,0.004461,-0.002250,0.249990,0,0);}
.mab_c01031{transform:matrix(0.496955,0.015918,-0.008004,0.249872,0,0);-ms-transform:matrix(0.496955,0.015918,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.496955,0.015918,-0.008004,0.249872,0,0);}
.ma0_c01031{transform:matrix(0.512812,0.006667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.512812,0.006667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.512812,0.006667,-0.003250,0.249979,0,0);}
.m57_c01031{transform:matrix(0.533050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533050,0.000000,0.000000,0.250000,0,0);}
.m5e_c01031{transform:matrix(0.538973,0.004851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.538973,0.004851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.538973,0.004851,-0.002250,0.249990,0,0);}
.m9f_c01031{transform:matrix(0.560118,0.007282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.560118,0.007282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.560118,0.007282,-0.003250,0.249979,0,0);}
.ma8_c01031{transform:matrix(0.578523,0.018531,-0.008004,0.249872,0,0);-ms-transform:matrix(0.578523,0.018531,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.578523,0.018531,-0.008004,0.249872,0,0);}
.ma1_c01031{transform:matrix(0.606579,0.007886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.606579,0.007886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.606579,0.007886,-0.003250,0.249979,0,0);}
.m43_c01031{transform:matrix(0.633925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633925,0.000000,0.000000,0.250000,0,0);}
.ma5_c01031{transform:matrix(0.675093,0.008776,-0.003250,0.249979,0,0);-ms-transform:matrix(0.675093,0.008776,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.675093,0.008776,-0.003250,0.249979,0,0);}
.m40_c01031{transform:matrix(0.680975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680975,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls0_c01031{letter-spacing:0.000000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:0.000000px;}
.fc0_c01031{color:transparent;}
.fs3_c01031{font-size:63.000000px;}
.fsc_c01031{font-size:64.050000px;}
.fse_c01031{font-size:64.054611px;}
.fs2_c01031{font-size:66.150000px;}
.fs7_c01031{font-size:67.200000px;}
.fs4_c01031{font-size:68.250000px;}
.fs1_c01031{font-size:69.300000px;}
.fs6_c01031{font-size:70.350000px;}
.fs5_c01031{font-size:71.400000px;}
.fsf_c01031{font-size:71.405141px;}
.fs11_c01031{font-size:74.513648px;}
.fsa_c01031{font-size:74.553019px;}
.fsd_c01031{font-size:74.555367px;}
.fs10_c01031{font-size:74.556299px;}
.fsb_c01031{font-size:76.653104px;}
.fs9_c01031{font-size:86.100000px;}
.fs8_c01031{font-size:89.250000px;}
.fs0_c01031{font-size:121.811936px;}
.y0_c01031{bottom:0.000000px;}
.y50_c01031{bottom:156.225090px;}
.y4f_c01031{bottom:158.955810px;}
.y4e_c01031{bottom:159.845826px;}
.y4d_c01031{bottom:161.652306px;}
.y4c_c01031{bottom:162.019362px;}
.y4b_c01031{bottom:162.222354px;}
.y4a_c01031{bottom:163.890882px;}
.y48_c01031{bottom:164.733522px;}
.y49_c01031{bottom:164.849730px;}
.y47_c01031{bottom:166.889394px;}
.y46_c01031{bottom:180.867228px;}
.y45_c01031{bottom:183.117180px;}
.y44_c01031{bottom:187.901724px;}
.y43_c01031{bottom:189.675036px;}
.y42_c01031{bottom:191.423148px;}
.y41_c01031{bottom:191.983500px;}
.y40_c01031{bottom:252.863822px;}
.y3f_c01031{bottom:254.174495px;}
.y3e_c01031{bottom:254.328876px;}
.y3d_c01031{bottom:254.967872px;}
.y3c_c01031{bottom:255.307542px;}
.y3b_c01031{bottom:256.073619px;}
.y3a_c01031{bottom:256.323453px;}
.y39_c01031{bottom:256.976391px;}
.y38_c01031{bottom:257.313000px;}
.y37_c01031{bottom:276.858084px;}
.y36_c01031{bottom:277.187484px;}
.y35_c01031{bottom:277.514742px;}
.y34_c01031{bottom:277.958676px;}
.y33_c01031{bottom:278.941098px;}
.y32_c01031{bottom:279.309918px;}
.y31_c01031{bottom:279.763572px;}
.y30_c01031{bottom:280.263000px;}
.y2f_c01031{bottom:299.332008px;}
.y2e_c01031{bottom:299.636622px;}
.y2d_c01031{bottom:300.442860px;}
.y2c_c01031{bottom:300.933576px;}
.y2b_c01031{bottom:301.211460px;}
.y2a_c01031{bottom:301.733028px;}
.y29_c01031{bottom:302.669352px;}
.y28_c01031{bottom:321.480582px;}
.y27_c01031{bottom:321.830088px;}
.y26_c01031{bottom:322.306134px;}
.y25_c01031{bottom:323.053188px;}
.y24_c01031{bottom:323.596842px;}
.y23_c01031{bottom:324.031560px;}
.y22_c01031{bottom:324.994074px;}
.y21_c01031{bottom:325.360122px;}
.y20_c01031{bottom:325.621500px;}
.y1f_c01031{bottom:353.614500px;}
.y1e_c01031{bottom:380.206500px;}
.y1d_c01031{bottom:403.207500px;}
.y1c_c01031{bottom:425.590500px;}
.y19_c01031{bottom:453.579624px;}
.y1b_c01031{bottom:453.579904px;}
.y1a_c01031{bottom:453.580341px;}
.y18_c01031{bottom:479.536402px;}
.y17_c01031{bottom:479.994741px;}
.y16_c01031{bottom:480.254953px;}
.y15_c01031{bottom:480.517245px;}
.y14_c01031{bottom:480.679853px;}
.y13_c01031{bottom:480.890074px;}
.y12_c01031{bottom:481.428994px;}
.y11_c01031{bottom:481.632669px;}
.y10_c01031{bottom:481.839205px;}
.yf_c01031{bottom:482.611500px;}
.ye_c01031{bottom:523.230000px;}
.yd_c01031{bottom:548.962500px;}
.yc_c01031{bottom:596.043000px;}
.yb_c01031{bottom:669.040500px;}
.ya_c01031{bottom:691.417500px;}
.y9_c01031{bottom:714.201000px;}
.y8_c01031{bottom:736.710000px;}
.y7_c01031{bottom:759.534000px;}
.y6_c01031{bottom:782.856000px;}
.y5_c01031{bottom:804.525000px;}
.y4_c01031{bottom:827.823000px;}
.y1_c01031{bottom:868.863000px;}
.y2_c01031{bottom:870.258324px;}
.y3_c01031{bottom:872.193768px;}
.h5_c01031{height:63.000000px;}
.he_c01031{height:64.050000px;}
.h10_c01031{height:64.054611px;}
.h4_c01031{height:66.150000px;}
.h9_c01031{height:67.200000px;}
.h6_c01031{height:68.250000px;}
.h3_c01031{height:69.300000px;}
.h8_c01031{height:70.350000px;}
.h7_c01031{height:71.400000px;}
.h11_c01031{height:71.405141px;}
.h13_c01031{height:74.513648px;}
.hc_c01031{height:74.553019px;}
.hf_c01031{height:74.555367px;}
.h12_c01031{height:74.556299px;}
.hd_c01031{height:76.653104px;}
.hb_c01031{height:86.100000px;}
.ha_c01031{height:89.250000px;}
.h2_c01031{height:121.811936px;}
.h0_c01031{height:1008.450000px;}
.h1_c01031{height:1008.750000px;}
.w1_c01031{width:700.500000px;}
.w0_c01031{width:700.650000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:133.629000px;}
.x3f_c01031{left:147.690000px;}
.x49_c01031{left:149.781000px;}
.x6d_c01031{left:151.539000px;}
.x69_c01031{left:153.209448px;}
.x52_c01031{left:159.300000px;}
.x58_c01031{left:160.380000px;}
.x16_c01031{left:164.160000px;}
.x2c_c01031{left:165.510000px;}
.x26_c01031{left:166.590000px;}
.x4_c01031{left:167.670000px;}
.x40_c01031{left:176.310000px;}
.x59_c01031{left:178.740000px;}
.x63_c01031{left:180.900000px;}
.x65_c01031{left:183.088500px;}
.x72_c01031{left:186.883500px;}
.x5_c01031{left:191.970000px;}
.x17_c01031{left:193.860000px;}
.x1f_c01031{left:198.450000px;}
.x41_c01031{left:199.530000px;}
.x35_c01031{left:203.040000px;}
.x2d_c01031{left:204.120000px;}
.x78_c01031{left:205.547860px;}
.x18_c01031{left:211.140000px;}
.xf_c01031{left:213.300000px;}
.x5a_c01031{left:215.730000px;}
.x42_c01031{left:220.860000px;}
.x7a_c01031{left:222.115590px;}
.x79_c01031{left:225.743458px;}
.x6_c01031{left:227.340000px;}
.x53_c01031{left:230.850000px;}
.x2_c01031{left:233.295000px;}
.x10_c01031{left:235.440000px;}
.x20_c01031{left:236.520000px;}
.x2e_c01031{left:238.950000px;}
.x43_c01031{left:243.270000px;}
.x54_c01031{left:244.350000px;}
.x5b_c01031{left:249.750000px;}
.x7_c01031{left:252.450000px;}
.x36_c01031{left:254.340000px;}
.x73_c01031{left:256.327500px;}
.x4a_c01031{left:258.540000px;}
.x6e_c01031{left:261.697500px;}
.x21_c01031{left:262.710000px;}
.x2f_c01031{left:268.380000px;}
.x3b_c01031{left:271.350000px;}
.x6a_c01031{left:274.700448px;}
.x55_c01031{left:276.750000px;}
.x19_c01031{left:281.880000px;}
.x8_c01031{left:289.440000px;}
.x66_c01031{left:293.802000px;}
.x6b_c01031{left:297.857448px;}
.x30_c01031{left:300.510000px;}
.x11_c01031{left:304.560000px;}
.x64_c01031{left:307.530000px;}
.x7b_c01031{left:310.476141px;}
.x9_c01031{left:314.010000px;}
.x74_c01031{left:315.256500px;}
.x5c_c01031{left:318.870000px;}
.x7c_c01031{left:321.935171px;}
.x1a_c01031{left:326.160000px;}
.x3c_c01031{left:327.780000px;}
.x44_c01031{left:330.210000px;}
.x27_c01031{left:335.340000px;}
.x22_c01031{left:336.690000px;}
.x6c_c01031{left:338.750448px;}
.x5f_c01031{left:339.930000px;}
.x4b_c01031{left:341.050500px;}
.x6f_c01031{left:343.566000px;}
.x1b_c01031{left:350.460000px;}
.x28_c01031{left:353.970000px;}
.x31_c01031{left:357.480000px;}
.x5d_c01031{left:360.990000px;}
.x51_c01031{left:362.888001px;}
.x4c_c01031{left:364.408500px;}
.xa_c01031{left:365.580000px;}
.x3a_c01031{left:369.630000px;}
.x3_c01031{left:371.541000px;}
.x67_c01031{left:375.333000px;}
.x29_c01031{left:378.540000px;}
.x70_c01031{left:380.560500px;}
.x4d_c01031{left:382.476000px;}
.x3d_c01031{left:387.990000px;}
.x75_c01031{left:390.538500px;}
.xb_c01031{left:393.120000px;}
.x5e_c01031{left:394.200000px;}
.x37_c01031{left:397.710000px;}
.x60_c01031{left:399.060000px;}
.x76_c01031{left:402.414000px;}
.x1c_c01031{left:403.920000px;}
.x12_c01031{left:406.890000px;}
.x56_c01031{left:410.400000px;}
.x4e_c01031{left:411.619500px;}
.x23_c01031{left:413.910000px;}
.x2a_c01031{left:415.260000px;}
.x45_c01031{left:417.420000px;}
.x61_c01031{left:420.390000px;}
.x32_c01031{left:422.820000px;}
.x3e_c01031{left:426.870000px;}
.x38_c01031{left:430.920000px;}
.x1d_c01031{left:434.160000px;}
.x71_c01031{left:435.282000px;}
.x62_c01031{left:438.210000px;}
.x4f_c01031{left:440.532000px;}
.xc_c01031{left:443.340000px;}
.x13_c01031{left:445.500000px;}
.x24_c01031{left:455.220000px;}
.x57_c01031{left:462.780000px;}
.x1e_c01031{left:469.530000px;}
.x33_c01031{left:474.390000px;}
.x14_c01031{left:476.550000px;}
.x2b_c01031{left:477.630000px;}
.xd_c01031{left:480.330000px;}
.x50_c01031{left:491.458500px;}
.x25_c01031{left:492.480000px;}
.x77_c01031{left:503.235000px;}
.x68_c01031{left:506.383500px;}
.x39_c01031{left:508.680000px;}
.x34_c01031{left:513.000000px;}
.xe_c01031{left:519.750000px;}
.x48_c01031{left:529.200000px;}
.x46_c01031{left:543.510000px;}
.x47_c01031{left:557.550000px;}
.x15_c01031{left:567.810000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ws0_c01031{word-spacing:0.000000pt;}
.fs3_c01031{font-size:56.000000pt;}
.fsc_c01031{font-size:56.933333pt;}
.fse_c01031{font-size:56.937432pt;}
.fs2_c01031{font-size:58.800000pt;}
.fs7_c01031{font-size:59.733333pt;}
.fs4_c01031{font-size:60.666667pt;}
.fs1_c01031{font-size:61.600000pt;}
.fs6_c01031{font-size:62.533333pt;}
.fs5_c01031{font-size:63.466667pt;}
.fsf_c01031{font-size:63.471236pt;}
.fs11_c01031{font-size:66.234354pt;}
.fsa_c01031{font-size:66.269350pt;}
.fsd_c01031{font-size:66.271438pt;}
.fs10_c01031{font-size:66.272266pt;}
.fsb_c01031{font-size:68.136093pt;}
.fs9_c01031{font-size:76.533333pt;}
.fs8_c01031{font-size:79.333333pt;}
.fs0_c01031{font-size:108.277276pt;}
.y0_c01031{bottom:0.000000pt;}
.y50_c01031{bottom:138.866747pt;}
.y4f_c01031{bottom:141.294053pt;}
.y4e_c01031{bottom:142.085179pt;}
.y4d_c01031{bottom:143.690939pt;}
.y4c_c01031{bottom:144.017211pt;}
.y4b_c01031{bottom:144.197648pt;}
.y4a_c01031{bottom:145.680784pt;}
.y48_c01031{bottom:146.429797pt;}
.y49_c01031{bottom:146.533093pt;}
.y47_c01031{bottom:148.346128pt;}
.y46_c01031{bottom:160.770869pt;}
.y45_c01031{bottom:162.770827pt;}
.y44_c01031{bottom:167.023755pt;}
.y43_c01031{bottom:168.600032pt;}
.y42_c01031{bottom:170.153909pt;}
.y41_c01031{bottom:170.652000pt;}
.y40_c01031{bottom:224.767841pt;}
.y3f_c01031{bottom:225.932884pt;}
.y3e_c01031{bottom:226.070112pt;}
.y3d_c01031{bottom:226.638108pt;}
.y3c_c01031{bottom:226.940037pt;}
.y3b_c01031{bottom:227.620995pt;}
.y3a_c01031{bottom:227.843069pt;}
.y39_c01031{bottom:228.423459pt;}
.y38_c01031{bottom:228.722667pt;}
.y37_c01031{bottom:246.096075pt;}
.y36_c01031{bottom:246.388875pt;}
.y35_c01031{bottom:246.679771pt;}
.y34_c01031{bottom:247.074379pt;}
.y33_c01031{bottom:247.947643pt;}
.y32_c01031{bottom:248.275483pt;}
.y31_c01031{bottom:248.678731pt;}
.y30_c01031{bottom:249.122667pt;}
.y2f_c01031{bottom:266.072896pt;}
.y2e_c01031{bottom:266.343664pt;}
.y2d_c01031{bottom:267.060320pt;}
.y2c_c01031{bottom:267.496512pt;}
.y2b_c01031{bottom:267.743520pt;}
.y2a_c01031{bottom:268.207136pt;}
.y29_c01031{bottom:269.039424pt;}
.y28_c01031{bottom:285.760517pt;}
.y27_c01031{bottom:286.071189pt;}
.y26_c01031{bottom:286.494341pt;}
.y25_c01031{bottom:287.158389pt;}
.y24_c01031{bottom:287.641637pt;}
.y23_c01031{bottom:288.028053pt;}
.y22_c01031{bottom:288.883621pt;}
.y21_c01031{bottom:289.208997pt;}
.y20_c01031{bottom:289.441333pt;}
.y1f_c01031{bottom:314.324000pt;}
.y1e_c01031{bottom:337.961333pt;}
.y1d_c01031{bottom:358.406667pt;}
.y1c_c01031{bottom:378.302667pt;}
.y19_c01031{bottom:403.181888pt;}
.y1b_c01031{bottom:403.182137pt;}
.y1a_c01031{bottom:403.182525pt;}
.y18_c01031{bottom:426.254580pt;}
.y17_c01031{bottom:426.661992pt;}
.y16_c01031{bottom:426.893292pt;}
.y15_c01031{bottom:427.126440pt;}
.y14_c01031{bottom:427.270980pt;}
.y13_c01031{bottom:427.457844pt;}
.y12_c01031{bottom:427.936884pt;}
.y11_c01031{bottom:428.117928pt;}
.y10_c01031{bottom:428.301516pt;}
.yf_c01031{bottom:428.988000pt;}
.ye_c01031{bottom:465.093333pt;}
.yd_c01031{bottom:487.966667pt;}
.yc_c01031{bottom:529.816000pt;}
.yb_c01031{bottom:594.702667pt;}
.ya_c01031{bottom:614.593333pt;}
.y9_c01031{bottom:634.845333pt;}
.y8_c01031{bottom:654.853333pt;}
.y7_c01031{bottom:675.141333pt;}
.y6_c01031{bottom:695.872000pt;}
.y5_c01031{bottom:715.133333pt;}
.y4_c01031{bottom:735.842667pt;}
.y1_c01031{bottom:772.322667pt;}
.y2_c01031{bottom:773.562955pt;}
.y3_c01031{bottom:775.283349pt;}
.h5_c01031{height:56.000000pt;}
.he_c01031{height:56.933333pt;}
.h10_c01031{height:56.937432pt;}
.h4_c01031{height:58.800000pt;}
.h9_c01031{height:59.733333pt;}
.h6_c01031{height:60.666667pt;}
.h3_c01031{height:61.600000pt;}
.h8_c01031{height:62.533333pt;}
.h7_c01031{height:63.466667pt;}
.h11_c01031{height:63.471236pt;}
.h13_c01031{height:66.234354pt;}
.hc_c01031{height:66.269350pt;}
.hf_c01031{height:66.271438pt;}
.h12_c01031{height:66.272266pt;}
.hd_c01031{height:68.136093pt;}
.hb_c01031{height:76.533333pt;}
.ha_c01031{height:79.333333pt;}
.h2_c01031{height:108.277276pt;}
.h0_c01031{height:896.400000pt;}
.h1_c01031{height:896.666667pt;}
.w1_c01031{width:622.666667pt;}
.w0_c01031{width:622.800000pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:118.781333pt;}
.x3f_c01031{left:131.280000pt;}
.x49_c01031{left:133.138667pt;}
.x6d_c01031{left:134.701333pt;}
.x69_c01031{left:136.186176pt;}
.x52_c01031{left:141.600000pt;}
.x58_c01031{left:142.560000pt;}
.x16_c01031{left:145.920000pt;}
.x2c_c01031{left:147.120000pt;}
.x26_c01031{left:148.080000pt;}
.x4_c01031{left:149.040000pt;}
.x40_c01031{left:156.720000pt;}
.x59_c01031{left:158.880000pt;}
.x63_c01031{left:160.800000pt;}
.x65_c01031{left:162.745333pt;}
.x72_c01031{left:166.118667pt;}
.x5_c01031{left:170.640000pt;}
.x17_c01031{left:172.320000pt;}
.x1f_c01031{left:176.400000pt;}
.x41_c01031{left:177.360000pt;}
.x35_c01031{left:180.480000pt;}
.x2d_c01031{left:181.440000pt;}
.x78_c01031{left:182.709209pt;}
.x18_c01031{left:187.680000pt;}
.xf_c01031{left:189.600000pt;}
.x5a_c01031{left:191.760000pt;}
.x42_c01031{left:196.320000pt;}
.x7a_c01031{left:197.436080pt;}
.x79_c01031{left:200.660852pt;}
.x6_c01031{left:202.080000pt;}
.x53_c01031{left:205.200000pt;}
.x2_c01031{left:207.373333pt;}
.x10_c01031{left:209.280000pt;}
.x20_c01031{left:210.240000pt;}
.x2e_c01031{left:212.400000pt;}
.x43_c01031{left:216.240000pt;}
.x54_c01031{left:217.200000pt;}
.x5b_c01031{left:222.000000pt;}
.x7_c01031{left:224.400000pt;}
.x36_c01031{left:226.080000pt;}
.x73_c01031{left:227.846667pt;}
.x4a_c01031{left:229.813333pt;}
.x6e_c01031{left:232.620000pt;}
.x21_c01031{left:233.520000pt;}
.x2f_c01031{left:238.560000pt;}
.x3b_c01031{left:241.200000pt;}
.x6a_c01031{left:244.178176pt;}
.x55_c01031{left:246.000000pt;}
.x19_c01031{left:250.560000pt;}
.x8_c01031{left:257.280000pt;}
.x66_c01031{left:261.157333pt;}
.x6b_c01031{left:264.762176pt;}
.x30_c01031{left:267.120000pt;}
.x11_c01031{left:270.720000pt;}
.x64_c01031{left:273.360000pt;}
.x7b_c01031{left:275.978792pt;}
.x9_c01031{left:279.120000pt;}
.x74_c01031{left:280.228000pt;}
.x5c_c01031{left:283.440000pt;}
.x7c_c01031{left:286.164596pt;}
.x1a_c01031{left:289.920000pt;}
.x3c_c01031{left:291.360000pt;}
.x44_c01031{left:293.520000pt;}
.x27_c01031{left:298.080000pt;}
.x22_c01031{left:299.280000pt;}
.x6c_c01031{left:301.111509pt;}
.x5f_c01031{left:302.160000pt;}
.x4b_c01031{left:303.156000pt;}
.x6f_c01031{left:305.392000pt;}
.x1b_c01031{left:311.520000pt;}
.x28_c01031{left:314.640000pt;}
.x31_c01031{left:317.760000pt;}
.x5d_c01031{left:320.880000pt;}
.x51_c01031{left:322.567112pt;}
.x4c_c01031{left:323.918667pt;}
.xa_c01031{left:324.960000pt;}
.x3a_c01031{left:328.560000pt;}
.x3_c01031{left:330.258667pt;}
.x67_c01031{left:333.629333pt;}
.x29_c01031{left:336.480000pt;}
.x70_c01031{left:338.276000pt;}
.x4d_c01031{left:339.978667pt;}
.x3d_c01031{left:344.880000pt;}
.x75_c01031{left:347.145333pt;}
.xb_c01031{left:349.440000pt;}
.x5e_c01031{left:350.400000pt;}
.x37_c01031{left:353.520000pt;}
.x60_c01031{left:354.720000pt;}
.x76_c01031{left:357.701333pt;}
.x1c_c01031{left:359.040000pt;}
.x12_c01031{left:361.680000pt;}
.x56_c01031{left:364.800000pt;}
.x4e_c01031{left:365.884000pt;}
.x23_c01031{left:367.920000pt;}
.x2a_c01031{left:369.120000pt;}
.x45_c01031{left:371.040000pt;}
.x61_c01031{left:373.680000pt;}
.x32_c01031{left:375.840000pt;}
.x3e_c01031{left:379.440000pt;}
.x38_c01031{left:383.040000pt;}
.x1d_c01031{left:385.920000pt;}
.x71_c01031{left:386.917333pt;}
.x62_c01031{left:389.520000pt;}
.x4f_c01031{left:391.584000pt;}
.xc_c01031{left:394.080000pt;}
.x13_c01031{left:396.000000pt;}
.x24_c01031{left:404.640000pt;}
.x57_c01031{left:411.360000pt;}
.x1e_c01031{left:417.360000pt;}
.x33_c01031{left:421.680000pt;}
.x14_c01031{left:423.600000pt;}
.x2b_c01031{left:424.560000pt;}
.xd_c01031{left:426.960000pt;}
.x50_c01031{left:436.852000pt;}
.x25_c01031{left:437.760000pt;}
.x77_c01031{left:447.320000pt;}
.x68_c01031{left:450.118667pt;}
.x39_c01031{left:452.160000pt;}
.x34_c01031{left:456.000000pt;}
.xe_c01031{left:462.000000pt;}
.x48_c01031{left:470.400000pt;}
.x46_c01031{left:483.120000pt;}
.x47_c01031{left:495.600000pt;}
.x15_c01031{left:504.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_c01032 {
    display:none;
  }
  .loading-indicator_c01032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01032 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01032 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01032" -> "#page-container .classname_c01032")
 */
.pf_c01032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01032 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01032 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01032 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01032 {overflow:visible;}
  }
}
.c_c01032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01032 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01032:after { /* webkit #35443 */
  content: '';
}
.t_c01032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01032 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01032 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01032 { /* info for Javascript */
  display:none;
}
.l_c01032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.000000;font-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_c01032{transform:matrix(0.007235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007235,0.000000,0.000000,0.250000,0,0);}
.m64_c01032{transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010694,0.000118,-0.002750,0.249985,0,0);}
.m96_c01032{transform:matrix(0.012539,0.000176,-0.003500,0.249976,0,0);-ms-transform:matrix(0.012539,0.000176,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.012539,0.000176,-0.003500,0.249976,0,0);}
.m27_c01032{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);}
.m81_c01032{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);}
.ma_c01032{transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016785,0.000000,0.000000,0.250000,0,0);}
.m3e_c01032{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);}
.m5b_c01032{transform:matrix(0.072781,0.000801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.072781,0.000801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.072781,0.000801,-0.002750,0.249985,0,0);}
.m2c_c01032{transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);}
.mac_c01032{transform:matrix(0.096571,0.001352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.096571,0.001352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.096571,0.001352,-0.003500,0.249976,0,0);}
.m2b_c01032{transform:matrix(0.097840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097840,0.000000,0.000000,0.250000,0,0);}
.m47_c01032{transform:matrix(0.103834,0.001142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.103834,0.001142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.103834,0.001142,-0.002750,0.249985,0,0);}
.m83_c01032{transform:matrix(0.133090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133090,0.000000,0.000000,0.250000,0,0);}
.m61_c01032{transform:matrix(0.146806,0.001615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146806,0.001615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146806,0.001615,-0.002750,0.249985,0,0);}
.m6c_c01032{transform:matrix(0.149031,0.001639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149031,0.001639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149031,0.001639,-0.002750,0.249985,0,0);}
.mc6_c01032{transform:matrix(0.151830,0.002126,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151830,0.002126,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151830,0.002126,-0.003500,0.249976,0,0);}
.m8f_c01032{transform:matrix(0.152151,0.002434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152151,0.002434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152151,0.002434,-0.003999,0.249968,0,0);}
.m55_c01032{transform:matrix(0.152201,0.001674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152201,0.001674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152201,0.001674,-0.002750,0.249985,0,0);}
.m9f_c01032{transform:matrix(0.153880,0.002154,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153880,0.002154,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153880,0.002154,-0.003500,0.249976,0,0);}
.mba_c01032{transform:matrix(0.156625,0.002193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156625,0.002193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156625,0.002193,-0.003500,0.249976,0,0);}
.m56_c01032{transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158515,0.001744,-0.002750,0.249985,0,0);}
.m5c_c01032{transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158725,0.001746,-0.002750,0.249985,0,0);}
.mcc_c01032{transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);}
.m7d_c01032{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);}
.mb2_c01032{transform:matrix(0.163104,0.002283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163104,0.002283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163104,0.002283,-0.003500,0.249976,0,0);}
.m88_c01032{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);}
.m63_c01032{transform:matrix(0.164680,0.001811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164680,0.001811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164680,0.001811,-0.002750,0.249985,0,0);}
.m8c_c01032{transform:matrix(0.165324,0.002645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165324,0.002645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165324,0.002645,-0.003999,0.249968,0,0);}
.m51_c01032{transform:matrix(0.166215,0.001828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166215,0.001828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166215,0.001828,-0.002750,0.249985,0,0);}
.m5_c01032{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);}
.mbd_c01032{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);}
.mca_c01032{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);}
.m60_c01032{transform:matrix(0.168700,0.001856,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168700,0.001856,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168700,0.001856,-0.002750,0.249985,0,0);}
.mbb_c01032{transform:matrix(0.169013,0.002366,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169013,0.002366,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169013,0.002366,-0.003500,0.249976,0,0);}
.m9a_c01032{transform:matrix(0.169808,0.002377,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169808,0.002377,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169808,0.002377,-0.003500,0.249976,0,0);}
.mb4_c01032{transform:matrix(0.171273,0.002398,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171273,0.002398,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171273,0.002398,-0.003500,0.249976,0,0);}
.m68_c01032{transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171845,0.001890,-0.002750,0.249985,0,0);}
.mc4_c01032{transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173243,0.002425,-0.003500,0.249976,0,0);}
.m78_c01032{transform:matrix(0.173275,0.001906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173275,0.001906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173275,0.001906,-0.002750,0.249985,0,0);}
.mbc_c01032{transform:matrix(0.174198,0.002439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174198,0.002439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174198,0.002439,-0.003500,0.249976,0,0);}
.m11_c01032{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);}
.m57_c01032{transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175194,0.001927,-0.002750,0.249985,0,0);}
.m9c_c01032{transform:matrix(0.175553,0.002458,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175553,0.002458,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175553,0.002458,-0.003500,0.249976,0,0);}
.m8a_c01032{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);}
.m34_c01032{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);}
.m67_c01032{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);}
.m98_c01032{transform:matrix(0.177933,0.002491,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177933,0.002491,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177933,0.002491,-0.003500,0.249976,0,0);}
.m77_c01032{transform:matrix(0.178984,0.001969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178984,0.001969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178984,0.001969,-0.002750,0.249985,0,0);}
.mf_c01032{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);}
.mcd_c01032{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);}
.m53_c01032{transform:matrix(0.180504,0.001986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180504,0.001986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180504,0.001986,-0.002750,0.249985,0,0);}
.m87_c01032{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);}
.m8e_c01032{transform:matrix(0.181262,0.002900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181262,0.002900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181262,0.002900,-0.003999,0.249968,0,0);}
.m3d_c01032{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);}
.mbf_c01032{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);}
.m97_c01032{transform:matrix(0.182782,0.002559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182782,0.002559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182782,0.002559,-0.003500,0.249976,0,0);}
.m89_c01032{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);}
.m59_c01032{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);}
.m69_c01032{transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);}
.mcb_c01032{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);}
.mc2_c01032{transform:matrix(0.184257,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184257,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184257,0.002580,-0.003500,0.249976,0,0);}
.m7b_c01032{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);}
.m5d_c01032{transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185544,0.002041,-0.002750,0.249985,0,0);}
.m15_c01032{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);}
.mb7_c01032{transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186762,0.002615,-0.003500,0.249976,0,0);}
.mc3_c01032{transform:matrix(0.186792,0.002615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186792,0.002615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186792,0.002615,-0.003500,0.249976,0,0);}
.m4c_c01032{transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187934,0.002067,-0.002750,0.249985,0,0);}
.m3f_c01032{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);}
.m6e_c01032{transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188059,0.002069,-0.002750,0.249985,0,0);}
.m72_c01032{transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188169,0.002070,-0.002750,0.249985,0,0);}
.mb1_c01032{transform:matrix(0.189191,0.002649,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189191,0.002649,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189191,0.002649,-0.003500,0.249976,0,0);}
.m86_c01032{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);}
.ma9_c01032{transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);}
.mb8_c01032{transform:matrix(0.192336,0.002693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192336,0.002693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192336,0.002693,-0.003500,0.249976,0,0);}
.m7f_c01032{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);}
.m3b_c01032{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);}
.mae_c01032{transform:matrix(0.194721,0.002726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194721,0.002726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194721,0.002726,-0.003500,0.249976,0,0);}
.mcf_c01032{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);}
.m62_c01032{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);}
.maa_c01032{transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);}
.m75_c01032{transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197523,0.002173,-0.002750,0.249985,0,0);}
.ma8_c01032{transform:matrix(0.197676,0.002767,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197676,0.002767,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197676,0.002767,-0.003500,0.249976,0,0);}
.m6d_c01032{transform:matrix(0.197948,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197948,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197948,0.002177,-0.002750,0.249985,0,0);}
.m90_c01032{transform:matrix(0.198275,0.003172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198275,0.003172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198275,0.003172,-0.003999,0.249968,0,0);}
.ma5_c01032{transform:matrix(0.198626,0.002781,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198626,0.002781,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198626,0.002781,-0.003500,0.249976,0,0);}
.mb3_c01032{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);}
.m7c_c01032{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);}
.m8d_c01032{transform:matrix(0.200049,0.003201,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200049,0.003201,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200049,0.003201,-0.003999,0.249968,0,0);}
.m18_c01032{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);}
.m5e_c01032{transform:matrix(0.201158,0.002213,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201158,0.002213,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201158,0.002213,-0.002750,0.249985,0,0);}
.m52_c01032{transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201603,0.002218,-0.002750,0.249985,0,0);}
.mb0_c01032{transform:matrix(0.203525,0.002849,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203525,0.002849,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203525,0.002849,-0.003500,0.249976,0,0);}
.mab_c01032{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);}
.m73_c01032{transform:matrix(0.205493,0.002260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205493,0.002260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205493,0.002260,-0.002750,0.249985,0,0);}
.m8b_c01032{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);}
.m37_c01032{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);}
.mbe_c01032{transform:matrix(0.210229,0.002943,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210229,0.002943,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210229,0.002943,-0.003500,0.249976,0,0);}
.m5a_c01032{transform:matrix(0.211762,0.002329,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211762,0.002329,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211762,0.002329,-0.002750,0.249985,0,0);}
.mc_c01032{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);}
.m40_c01032{transform:matrix(0.211967,0.002332,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211967,0.002332,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211967,0.002332,-0.002750,0.249985,0,0);}
.m10_c01032{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);}
.mc1_c01032{transform:matrix(0.213529,0.002989,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213529,0.002989,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213529,0.002989,-0.003500,0.249976,0,0);}
.mb6_c01032{transform:matrix(0.214054,0.002997,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214054,0.002997,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214054,0.002997,-0.003500,0.249976,0,0);}
.mc7_c01032{transform:matrix(0.214339,0.003001,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214339,0.003001,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214339,0.003001,-0.003500,0.249976,0,0);}
.ma6_c01032{transform:matrix(0.214889,0.003008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214889,0.003008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214889,0.003008,-0.003500,0.249976,0,0);}
.ma4_c01032{transform:matrix(0.215344,0.003015,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215344,0.003015,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215344,0.003015,-0.003500,0.249976,0,0);}
.m7a_c01032{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);}
.ma0_c01032{transform:matrix(0.215904,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215904,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215904,0.003023,-0.003500,0.249976,0,0);}
.m58_c01032{transform:matrix(0.215952,0.002375,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215952,0.002375,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215952,0.002375,-0.002750,0.249985,0,0);}
.m54_c01032{transform:matrix(0.216337,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216337,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216337,0.002380,-0.002750,0.249985,0,0);}
.m2f_c01032{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m5f_c01032{transform:matrix(0.217047,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217047,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217047,0.002388,-0.002750,0.249985,0,0);}
.m6b_c01032{transform:matrix(0.217947,0.002397,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217947,0.002397,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217947,0.002397,-0.002750,0.249985,0,0);}
.mb9_c01032{transform:matrix(0.218604,0.003060,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218604,0.003060,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218604,0.003060,-0.003500,0.249976,0,0);}
.me_c01032{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);}
.m76_c01032{transform:matrix(0.220522,0.002426,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220522,0.002426,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220522,0.002426,-0.002750,0.249985,0,0);}
.m4a_c01032{transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221467,0.002436,-0.002750,0.249985,0,0);}
.m4f_c01032{transform:matrix(0.221527,0.002437,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221527,0.002437,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221527,0.002437,-0.002750,0.249985,0,0);}
.m44_c01032{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);}
.m3c_c01032{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);}
.ma2_c01032{transform:matrix(0.222813,0.003119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222813,0.003119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222813,0.003119,-0.003500,0.249976,0,0);}
.m9b_c01032{transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223583,0.003130,-0.003500,0.249976,0,0);}
.m12_c01032{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);}
.m91_c01032{transform:matrix(0.224071,0.003585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224071,0.003585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224071,0.003585,-0.003999,0.249968,0,0);}
.m9e_c01032{transform:matrix(0.224203,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224203,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224203,0.003139,-0.003500,0.249976,0,0);}
.m42_c01032{transform:matrix(0.226541,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226541,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226541,0.002492,-0.002750,0.249985,0,0);}
.m74_c01032{transform:matrix(0.229001,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229001,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229001,0.002519,-0.002750,0.249985,0,0);}
.ma3_c01032{transform:matrix(0.230672,0.003229,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230672,0.003229,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230672,0.003229,-0.003500,0.249976,0,0);}
.m71_c01032{transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);}
.m66_c01032{transform:matrix(0.231356,0.002545,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231356,0.002545,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231356,0.002545,-0.002750,0.249985,0,0);}
.mce_c01032{transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);}
.mb5_c01032{transform:matrix(0.235457,0.003296,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235457,0.003296,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235457,0.003296,-0.003500,0.249976,0,0);}
.m43_c01032{transform:matrix(0.235761,0.002593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235761,0.002593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235761,0.002593,-0.002750,0.249985,0,0);}
.m17_c01032{transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);}
.m19_c01032{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);}
.m93_c01032{transform:matrix(0.238120,0.003810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238120,0.003810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238120,0.003810,-0.003999,0.249968,0,0);}
.m49_c01032{transform:matrix(0.241310,0.002654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241310,0.002654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241310,0.002654,-0.002750,0.249985,0,0);}
.m9d_c01032{transform:matrix(0.243646,0.003411,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243646,0.003411,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243646,0.003411,-0.003500,0.249976,0,0);}
.m92_c01032{transform:matrix(0.244229,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244229,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244229,0.003908,-0.003999,0.249968,0,0);}
.m95_c01032{transform:matrix(0.245134,0.003922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245134,0.003922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245134,0.003922,-0.003999,0.249968,0,0);}
.maf_c01032{transform:matrix(0.249001,0.003486,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249001,0.003486,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249001,0.003486,-0.003500,0.249976,0,0);}
.m6f_c01032{transform:matrix(0.250600,0.002757,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250600,0.002757,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250600,0.002757,-0.002750,0.249985,0,0);}
.m84_c01032{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m85_c01032{transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256335,0.000000,0.000000,0.250000,0,0);}
.m4e_c01032{transform:matrix(0.256789,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256789,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256789,0.002825,-0.002750,0.249985,0,0);}
.mc5_c01032{transform:matrix(0.257985,0.003612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257985,0.003612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257985,0.003612,-0.003500,0.249976,0,0);}
.m99_c01032{transform:matrix(0.259570,0.003634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259570,0.003634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259570,0.003634,-0.003500,0.249976,0,0);}
.m7e_c01032{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_c01032{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m4b_c01032{transform:matrix(0.263344,0.002897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263344,0.002897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263344,0.002897,-0.002750,0.249985,0,0);}
.m4d_c01032{transform:matrix(0.263864,0.002903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263864,0.002903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263864,0.002903,-0.002750,0.249985,0,0);}
.m82_c01032{transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);}
.m48_c01032{transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277793,0.003056,-0.002750,0.249985,0,0);}
.m2_c01032{transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);}
.m28_c01032{transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);}
.m6a_c01032{transform:matrix(0.280178,0.003082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280178,0.003082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280178,0.003082,-0.002750,0.249985,0,0);}
.ma7_c01032{transform:matrix(0.282082,0.003949,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282082,0.003949,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282082,0.003949,-0.003500,0.249976,0,0);}
.m3_c01032{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m2d_c01032{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);}
.m30_c01032{transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297015,0.000000,0.000000,0.250000,0,0);}
.md_c01032{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.mc8_c01032{transform:matrix(0.301550,0.004222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301550,0.004222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301550,0.004222,-0.003500,0.249976,0,0);}
.m32_c01032{transform:matrix(0.304725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304725,0.000000,0.000000,0.250000,0,0);}
.m36_c01032{transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307850,0.000000,0.000000,0.250000,0,0);}
.m13_c01032{transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307910,0.000000,0.000000,0.250000,0,0);}
.m46_c01032{transform:matrix(0.328740,0.003616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.328740,0.003616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.328740,0.003616,-0.002750,0.249985,0,0);}
.m94_c01032{transform:matrix(0.334502,0.005352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.334502,0.005352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.334502,0.005352,-0.003999,0.249968,0,0);}
.m2a_c01032{transform:matrix(0.334930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334930,0.000000,0.000000,0.250000,0,0);}
.m24_c01032{transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336115,0.000000,0.000000,0.250000,0,0);}
.mb_c01032{transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339720,0.000000,0.000000,0.250000,0,0);}
.ma1_c01032{transform:matrix(0.343206,0.004805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.343206,0.004805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.343206,0.004805,-0.003500,0.249976,0,0);}
.m7_c01032{transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);}
.m70_c01032{transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349549,0.003845,-0.002750,0.249985,0,0);}
.m4_c01032{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);}
.m41_c01032{transform:matrix(0.357023,0.003927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.357023,0.003927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.357023,0.003927,-0.002750,0.249985,0,0);}
.m20_c01032{transform:matrix(0.361035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361035,0.000000,0.000000,0.250000,0,0);}
.m33_c01032{transform:matrix(0.362865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362865,0.000000,0.000000,0.250000,0,0);}
.m3a_c01032{transform:matrix(0.373595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373595,0.000000,0.000000,0.250000,0,0);}
.m1a_c01032{transform:matrix(0.374555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374555,0.000000,0.000000,0.250000,0,0);}
.m2e_c01032{transform:matrix(0.377000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377000,0.000000,0.000000,0.250000,0,0);}
.m31_c01032{transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);}
.m25_c01032{transform:matrix(0.385610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385610,0.000000,0.000000,0.250000,0,0);}
.m22_c01032{transform:matrix(0.386320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386320,0.000000,0.000000,0.250000,0,0);}
.m1b_c01032{transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);}
.m21_c01032{transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390830,0.000000,0.000000,0.250000,0,0);}
.m1e_c01032{transform:matrix(0.391770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391770,0.000000,0.000000,0.250000,0,0);}
.md0_c01032{transform:matrix(0.392015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392015,0.000000,0.000000,0.250000,0,0);}
.m50_c01032{transform:matrix(0.403511,0.004439,-0.002750,0.249985,0,0);-ms-transform:matrix(0.403511,0.004439,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.403511,0.004439,-0.002750,0.249985,0,0);}
.m80_c01032{transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404295,0.000000,0.000000,0.250000,0,0);}
.m23_c01032{transform:matrix(0.405610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405610,0.000000,0.000000,0.250000,0,0);}
.mc0_c01032{transform:matrix(0.407670,0.005707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.407670,0.005707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.407670,0.005707,-0.003500,0.249976,0,0);}
.mad_c01032{transform:matrix(0.408125,0.005714,-0.003500,0.249976,0,0);-ms-transform:matrix(0.408125,0.005714,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.408125,0.005714,-0.003500,0.249976,0,0);}
.m1f_c01032{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.m35_c01032{transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424115,0.000000,0.000000,0.250000,0,0);}
.m14_c01032{transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427430,0.000000,0.000000,0.250000,0,0);}
.m45_c01032{transform:matrix(0.434574,0.004780,-0.002750,0.249985,0,0);-ms-transform:matrix(0.434574,0.004780,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.434574,0.004780,-0.002750,0.249985,0,0);}
.m65_c01032{transform:matrix(0.435669,0.004792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.435669,0.004792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.435669,0.004792,-0.002750,0.249985,0,0);}
.m26_c01032{transform:matrix(0.448640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448640,0.000000,0.000000,0.250000,0,0);}
.m6_c01032{transform:matrix(0.449745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449745,0.000000,0.000000,0.250000,0,0);}
.m79_c01032{transform:matrix(0.449870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449870,0.000000,0.000000,0.250000,0,0);}
.m39_c01032{transform:matrix(0.458340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458340,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(0.482730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482730,0.000000,0.000000,0.250000,0,0);}
.m9_c01032{transform:matrix(0.526570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526570,0.000000,0.000000,0.250000,0,0);}
.m8_c01032{transform:matrix(0.528870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528870,0.000000,0.000000,0.250000,0,0);}
.m0_c01032{transform:matrix(0.552635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552635,0.000000,0.000000,0.250000,0,0);}
.m1c_c01032{transform:matrix(0.574725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574725,0.000000,0.000000,0.250000,0,0);}
.m16_c01032{transform:matrix(0.687095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687095,0.000000,0.000000,0.250000,0,0);}
.m38_c01032{transform:matrix(0.784935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784935,0.000000,0.000000,0.250000,0,0);}
.mc9_c01032{transform:matrix(0.816155,0.011426,-0.003500,0.249976,0,0);-ms-transform:matrix(0.816155,0.011426,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.816155,0.011426,-0.003500,0.249976,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls0_c01032{letter-spacing:0.000000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:0.000000px;}
.fc0_c01032{color:transparent;}
.fs7_c01032{font-size:22.050000px;}
.fs6_c01032{font-size:55.650000px;}
.fsf_c01032{font-size:60.905968px;}
.fs5_c01032{font-size:67.200000px;}
.fs8_c01032{font-size:67.204065px;}
.fs10_c01032{font-size:67.206585px;}
.fs2_c01032{font-size:68.250000px;}
.fs9_c01032{font-size:68.254129px;}
.fs11_c01032{font-size:68.256688px;}
.fs4_c01032{font-size:69.300000px;}
.fsa_c01032{font-size:69.304193px;}
.fs12_c01032{font-size:69.306791px;}
.fse_c01032{font-size:69.308870px;}
.fs1_c01032{font-size:70.350000px;}
.fsd_c01032{font-size:70.354256px;}
.fs13_c01032{font-size:70.356894px;}
.fs3_c01032{font-size:71.400000px;}
.fsc_c01032{font-size:71.404320px;}
.fsb_c01032{font-size:72.454383px;}
.fs14_c01032{font-size:76.657511px;}
.fs0_c01032{font-size:89.250000px;}
.y0_c01032{bottom:0.000000px;}
.y9d_c01032{bottom:171.504000px;}
.y9c_c01032{bottom:226.456173px;}
.y9b_c01032{bottom:226.702755px;}
.y9a_c01032{bottom:227.280129px;}
.y99_c01032{bottom:227.567325px;}
.y98_c01032{bottom:227.877201px;}
.y97_c01032{bottom:228.913089px;}
.y96_c01032{bottom:229.321497px;}
.y95_c01032{bottom:230.058681px;}
.y94_c01032{bottom:230.569044px;}
.y93_c01032{bottom:247.859409px;}
.y92_c01032{bottom:250.414602px;}
.y91_c01032{bottom:251.610042px;}
.y90_c01032{bottom:251.896200px;}
.y8f_c01032{bottom:252.797712px;}
.y8e_c01032{bottom:253.496367px;}
.y8d_c01032{bottom:253.792227px;}
.y8c_c01032{bottom:272.704869px;}
.y8b_c01032{bottom:273.292221px;}
.y8a_c01032{bottom:273.646797px;}
.y89_c01032{bottom:273.923358px;}
.y88_c01032{bottom:274.576731px;}
.y87_c01032{bottom:274.804686px;}
.y86_c01032{bottom:275.439522px;}
.y85_c01032{bottom:275.663043px;}
.y84_c01032{bottom:295.275162px;}
.y83_c01032{bottom:295.664094px;}
.y82_c01032{bottom:296.049708px;}
.y81_c01032{bottom:296.541180px;}
.y80_c01032{bottom:296.800878px;}
.y7f_c01032{bottom:296.999949px;}
.y7e_c01032{bottom:297.821175px;}
.y7d_c01032{bottom:298.382976px;}
.y7c_c01032{bottom:298.615611px;}
.y7b_c01032{bottom:316.329519px;}
.y7a_c01032{bottom:316.354479px;}
.y79_c01032{bottom:317.117499px;}
.y78_c01032{bottom:317.562975px;}
.y77_c01032{bottom:318.405948px;}
.y76_c01032{bottom:318.919122px;}
.y75_c01032{bottom:319.358097px;}
.y74_c01032{bottom:319.635738px;}
.y73_c01032{bottom:320.737305px;}
.y72_c01032{bottom:321.017886px;}
.y71_c01032{bottom:321.570186px;}
.y70_c01032{bottom:340.821633px;}
.y6f_c01032{bottom:341.180376px;}
.y6e_c01032{bottom:342.243354px;}
.y6d_c01032{bottom:342.639519px;}
.y6c_c01032{bottom:344.122140px;}
.y6b_c01032{bottom:344.560158px;}
.y6a_c01032{bottom:344.851092px;}
.y69_c01032{bottom:345.060000px;}
.y68_c01032{bottom:363.239256px;}
.y67_c01032{bottom:363.426024px;}
.y66_c01032{bottom:363.809280px;}
.y65_c01032{bottom:364.572912px;}
.y64_c01032{bottom:364.898664px;}
.y63_c01032{bottom:365.654160px;}
.y62_c01032{bottom:366.228864px;}
.y61_c01032{bottom:366.673776px;}
.y60_c01032{bottom:367.156512px;}
.y5f_c01032{bottom:368.104608px;}
.y5e_c01032{bottom:368.553000px;}
.y5d_c01032{bottom:386.553000px;}
.y5c_c01032{bottom:387.114000px;}
.y5b_c01032{bottom:387.732000px;}
.y5a_c01032{bottom:388.351500px;}
.y59_c01032{bottom:388.957500px;}
.y58_c01032{bottom:389.272500px;}
.y57_c01032{bottom:389.538000px;}
.y56_c01032{bottom:390.586500px;}
.y55_c01032{bottom:390.909000px;}
.y54_c01032{bottom:391.276500px;}
.y53_c01032{bottom:409.567500px;}
.y52_c01032{bottom:410.700000px;}
.y51_c01032{bottom:411.534000px;}
.y50_c01032{bottom:412.005000px;}
.y4f_c01032{bottom:412.528500px;}
.y4e_c01032{bottom:412.866000px;}
.y4d_c01032{bottom:413.641500px;}
.y4c_c01032{bottom:432.234000px;}
.y4b_c01032{bottom:500.640339px;}
.y4a_c01032{bottom:501.333654px;}
.y49_c01032{bottom:502.046413px;}
.y48_c01032{bottom:502.693137px;}
.y47_c01032{bottom:503.876628px;}
.y46_c01032{bottom:504.820927px;}
.y45_c01032{bottom:505.380554px;}
.y44_c01032{bottom:506.246760px;}
.y43_c01032{bottom:521.698169px;}
.y42_c01032{bottom:523.251902px;}
.y41_c01032{bottom:523.838543px;}
.y40_c01032{bottom:524.677849px;}
.y3f_c01032{bottom:525.040406px;}
.y3e_c01032{bottom:526.214397px;}
.y3d_c01032{bottom:526.610598px;}
.y3c_c01032{bottom:527.437784px;}
.y3b_c01032{bottom:528.194100px;}
.y3a_c01032{bottom:528.593946px;}
.y39_c01032{bottom:529.198119px;}
.y38_c01032{bottom:549.145513px;}
.y37_c01032{bottom:551.065844px;}
.y36_c01032{bottom:569.593684px;}
.y35_c01032{bottom:570.528986px;}
.y34_c01032{bottom:570.912344px;}
.y33_c01032{bottom:571.718649px;}
.y32_c01032{bottom:572.050838px;}
.y31_c01032{bottom:572.792859px;}
.y30_c01032{bottom:573.452106px;}
.y2f_c01032{bottom:573.748301px;}
.y2e_c01032{bottom:590.610357px;}
.y2d_c01032{bottom:592.118831px;}
.y2c_c01032{bottom:592.693884px;}
.y2b_c01032{bottom:593.406956px;}
.y2a_c01032{bottom:593.821572px;}
.y29_c01032{bottom:594.059158px;}
.y28_c01032{bottom:594.356244px;}
.y27_c01032{bottom:595.420854px;}
.y26_c01032{bottom:595.945959px;}
.y25_c01032{bottom:596.318843px;}
.y24_c01032{bottom:597.239445px;}
.y23_c01032{bottom:612.089531px;}
.y22_c01032{bottom:613.200110px;}
.y21_c01032{bottom:614.186904px;}
.y20_c01032{bottom:614.731242px;}
.y1f_c01032{bottom:614.741781px;}
.y1e_c01032{bottom:615.845219px;}
.y1d_c01032{bottom:617.569606px;}
.y1c_c01032{bottom:618.283730px;}
.y1b_c01032{bottom:619.070936px;}
.y1a_c01032{bottom:619.216854px;}
.y19_c01032{bottom:619.737194px;}
.y18_c01032{bottom:637.628294px;}
.y17_c01032{bottom:637.860069px;}
.y16_c01032{bottom:638.507810px;}
.y15_c01032{bottom:639.140766px;}
.y14_c01032{bottom:639.152943px;}
.y13_c01032{bottom:639.972284px;}
.y12_c01032{bottom:640.711500px;}
.y11_c01032{bottom:661.500000px;}
.y10_c01032{bottom:666.481500px;}
.yf_c01032{bottom:688.905000px;}
.ye_c01032{bottom:718.813500px;}
.yd_c01032{bottom:738.871500px;}
.yc_c01032{bottom:739.297500px;}
.yb_c01032{bottom:739.656000px;}
.ya_c01032{bottom:740.076000px;}
.y9_c01032{bottom:740.542500px;}
.y8_c01032{bottom:740.893500px;}
.y7_c01032{bottom:741.471000px;}
.y6_c01032{bottom:742.149000px;}
.y5_c01032{bottom:763.911000px;}
.y4_c01032{bottom:785.809500px;}
.y3_c01032{bottom:808.941000px;}
.y2_c01032{bottom:830.929500px;}
.y1_c01032{bottom:873.220500px;}
.h9_c01032{height:22.050000px;}
.h8_c01032{height:55.650000px;}
.h11_c01032{height:60.905968px;}
.h7_c01032{height:67.200000px;}
.ha_c01032{height:67.204065px;}
.h12_c01032{height:67.206585px;}
.h4_c01032{height:68.250000px;}
.hb_c01032{height:68.254129px;}
.h13_c01032{height:68.256688px;}
.h6_c01032{height:69.300000px;}
.hc_c01032{height:69.304193px;}
.h14_c01032{height:69.306791px;}
.h10_c01032{height:69.308870px;}
.h3_c01032{height:70.350000px;}
.hf_c01032{height:70.354256px;}
.h15_c01032{height:70.356894px;}
.h5_c01032{height:71.400000px;}
.he_c01032{height:71.404320px;}
.hd_c01032{height:72.454383px;}
.h16_c01032{height:76.657511px;}
.h2_c01032{height:89.250000px;}
.h1_c01032{height:1005.000000px;}
.h0_c01032{height:1005.150000px;}
.w0_c01032{width:715.200000px;}
.w1_c01032{width:715.500000px;}
.x0_c01032{left:0.000000px;}
.x88_c01032{left:122.310000px;}
.x28_c01032{left:129.600000px;}
.x73_c01032{left:130.699500px;}
.xb_c01032{left:135.270000px;}
.x6b_c01032{left:136.969500px;}
.x44_c01032{left:139.358703px;}
.x29_c01032{left:141.210000px;}
.x64_c01032{left:142.905000px;}
.xc_c01032{left:143.910000px;}
.x53_c01032{left:145.277055px;}
.x5f_c01032{left:146.691000px;}
.x52_c01032{left:157.589561px;}
.x2a_c01032{left:161.460000px;}
.x4e_c01032{left:163.949049px;}
.x65_c01032{left:165.840000px;}
.x22_c01032{left:170.370000px;}
.x89_c01032{left:171.990000px;}
.xd_c01032{left:173.070000px;}
.x54_c01032{left:175.517069px;}
.x3c_c01032{left:178.968112px;}
.x1_c01032{left:181.710000px;}
.x83_c01032{left:183.158577px;}
.x2b_c01032{left:184.410000px;}
.x66_c01032{left:186.042000px;}
.x5a_c01032{left:187.480700px;}
.x8a_c01032{left:189.270000px;}
.x55_c01032{left:195.501089px;}
.x74_c01032{left:197.689500px;}
.x2c_c01032{left:201.150000px;}
.x60_c01032{left:206.379000px;}
.x4f_c01032{left:207.924119px;}
.x38_c01032{left:212.034000px;}
.x5b_c01032{left:215.443928px;}
.x23_c01032{left:218.160000px;}
.xe_c01032{left:220.050000px;}
.x8b_c01032{left:221.670000px;}
.x3d_c01032{left:222.710746px;}
.x6c_c01032{left:224.250000px;}
.x45_c01032{left:225.580908px;}
.x1b_c01032{left:232.987500px;}
.x84_c01032{left:235.814577px;}
.x2d_c01032{left:240.840000px;}
.x15_c01032{left:245.430000px;}
.xf_c01032{left:249.750000px;}
.x67_c01032{left:251.617500px;}
.x6d_c01032{left:254.421000px;}
.x50_c01032{left:257.378441px;}
.x8c_c01032{left:259.200000px;}
.x46_c01032{left:260.634374px;}
.x3e_c01032{left:262.400694px;}
.x85_c01032{left:264.986577px;}
.x1c_c01032{left:268.695000px;}
.x61_c01032{left:272.625000px;}
.x56_c01032{left:274.675251px;}
.x18_c01032{left:277.560000px;}
.x24_c01032{left:279.450000px;}
.x6e_c01032{left:282.228000px;}
.x2e_c01032{left:283.500000px;}
.x4_c01032{left:285.660000px;}
.x37_c01032{left:288.360000px;}
.x81_c01032{left:292.170099px;}
.x76_c01032{left:293.608554px;}
.x10_c01032{left:294.840000px;}
.x7d_c01032{left:296.529501px;}
.x1d_c01032{left:299.107500px;}
.x75_c01032{left:303.591000px;}
.x5_c01032{left:306.720000px;}
.x62_c01032{left:308.872500px;}
.x35_c01032{left:314.550000px;}
.x1e_c01032{left:317.553000px;}
.x2f_c01032{left:318.870000px;}
.x25_c01032{left:320.220000px;}
.x5c_c01032{left:321.868901px;}
.x68_c01032{left:325.678500px;}
.x6_c01032{left:328.050000px;}
.x47_c01032{left:331.641255px;}
.x11_c01032{left:333.720000px;}
.x36_c01032{left:336.420000px;}
.x86_c01032{left:338.978577px;}
.x7_c01032{left:341.550000px;}
.x39_c01032{left:345.168000px;}
.x77_c01032{left:348.653310px;}
.x48_c01032{left:351.420881px;}
.x16_c01032{left:353.970000px;}
.x26_c01032{left:355.860000px;}
.x12_c01032{left:356.940000px;}
.x3f_c01032{left:358.201319px;}
.x8_c01032{left:361.530000px;}
.x1f_c01032{left:364.257000px;}
.x6f_c01032{left:365.365500px;}
.x49_c01032{left:367.291688px;}
.x57_c01032{left:371.279181px;}
.x30_c01032{left:373.680000px;}
.x9_c01032{left:374.760000px;}
.x87_c01032{left:381.626577px;}
.x20_c01032{left:383.149500px;}
.x70_c01032{left:385.725000px;}
.x78_c01032{left:388.094856px;}
.x5d_c01032{left:389.815169px;}
.x7e_c01032{left:391.338168px;}
.x4a_c01032{left:394.891967px;}
.x17_c01032{left:396.090000px;}
.x13_c01032{left:397.170000px;}
.xa_c01032{left:398.250000px;}
.x69_c01032{left:402.951000px;}
.x3a_c01032{left:404.053500px;}
.x21_c01032{left:405.574500px;}
.x2_c01032{left:408.240000px;}
.x58_c01032{left:413.212023px;}
.x80_c01032{left:414.608862px;}
.x40_c01032{left:419.509099px;}
.x51_c01032{left:421.294247px;}
.x7f_c01032{left:423.727071px;}
.x3b_c01032{left:425.124000px;}
.x71_c01032{left:433.452000px;}
.x14_c01032{left:435.240000px;}
.x6a_c01032{left:437.994000px;}
.x19_c01032{left:439.560000px;}
.x4b_c01032{left:442.396371px;}
.x5e_c01032{left:447.930000px;}
.x41_c01032{left:450.313724px;}
.x79_c01032{left:452.915259px;}
.x72_c01032{left:457.405500px;}
.x63_c01032{left:460.131000px;}
.x31_c01032{left:463.590000px;}
.x1a_c01032{left:469.260000px;}
.x32_c01032{left:474.930000px;}
.x4c_c01032{left:480.763188px;}
.x7a_c01032{left:487.199742px;}
.x3_c01032{left:489.780000px;}
.x33_c01032{left:497.610000px;}
.x42_c01032{left:505.109000px;}
.x59_c01032{left:520.235430px;}
.x34_c01032{left:531.090000px;}
.x27_c01032{left:534.600000px;}
.x82_c01032{left:542.176092px;}
.x7b_c01032{left:545.880561px;}
.x7c_c01032{left:547.770582px;}
.x43_c01032{left:566.793248px;}
.x4d_c01032{left:581.347266px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ws0_c01032{word-spacing:0.000000pt;}
.fs7_c01032{font-size:19.600000pt;}
.fs6_c01032{font-size:49.466667pt;}
.fsf_c01032{font-size:54.138638pt;}
.fs5_c01032{font-size:59.733333pt;}
.fs8_c01032{font-size:59.736947pt;}
.fs10_c01032{font-size:59.739187pt;}
.fs2_c01032{font-size:60.666667pt;}
.fs9_c01032{font-size:60.670337pt;}
.fs11_c01032{font-size:60.672612pt;}
.fs4_c01032{font-size:61.600000pt;}
.fsa_c01032{font-size:61.603727pt;}
.fs12_c01032{font-size:61.606037pt;}
.fse_c01032{font-size:61.607884pt;}
.fs1_c01032{font-size:62.533333pt;}
.fsd_c01032{font-size:62.537116pt;}
.fs13_c01032{font-size:62.539461pt;}
.fs3_c01032{font-size:63.466667pt;}
.fsc_c01032{font-size:63.470506pt;}
.fsb_c01032{font-size:64.403896pt;}
.fs14_c01032{font-size:68.140010pt;}
.fs0_c01032{font-size:79.333333pt;}
.y0_c01032{bottom:0.000000pt;}
.y9d_c01032{bottom:152.448000pt;}
.y9c_c01032{bottom:201.294376pt;}
.y9b_c01032{bottom:201.513560pt;}
.y9a_c01032{bottom:202.026781pt;}
.y99_c01032{bottom:202.282067pt;}
.y98_c01032{bottom:202.557512pt;}
.y97_c01032{bottom:203.478301pt;}
.y96_c01032{bottom:203.841331pt;}
.y95_c01032{bottom:204.496605pt;}
.y94_c01032{bottom:204.950261pt;}
.y93_c01032{bottom:220.319475pt;}
.y92_c01032{bottom:222.590757pt;}
.y91_c01032{bottom:223.653371pt;}
.y90_c01032{bottom:223.907733pt;}
.y8f_c01032{bottom:224.709077pt;}
.y8e_c01032{bottom:225.330104pt;}
.y8d_c01032{bottom:225.593091pt;}
.y8c_c01032{bottom:242.404328pt;}
.y8b_c01032{bottom:242.926419pt;}
.y8a_c01032{bottom:243.241597pt;}
.y89_c01032{bottom:243.487429pt;}
.y88_c01032{bottom:244.068205pt;}
.y87_c01032{bottom:244.270832pt;}
.y86_c01032{bottom:244.835131pt;}
.y85_c01032{bottom:245.033816pt;}
.y84_c01032{bottom:262.466811pt;}
.y83_c01032{bottom:262.812528pt;}
.y82_c01032{bottom:263.155296pt;}
.y81_c01032{bottom:263.592160pt;}
.y80_c01032{bottom:263.823003pt;}
.y7f_c01032{bottom:263.999955pt;}
.y7e_c01032{bottom:264.729933pt;}
.y7d_c01032{bottom:265.229312pt;}
.y7c_c01032{bottom:265.436099pt;}
.y7b_c01032{bottom:281.181795pt;}
.y7a_c01032{bottom:281.203981pt;}
.y79_c01032{bottom:281.882221pt;}
.y78_c01032{bottom:282.278200pt;}
.y77_c01032{bottom:283.027509pt;}
.y76_c01032{bottom:283.483664pt;}
.y75_c01032{bottom:283.873864pt;}
.y74_c01032{bottom:284.120656pt;}
.y73_c01032{bottom:285.099827pt;}
.y72_c01032{bottom:285.349232pt;}
.y71_c01032{bottom:285.840165pt;}
.y70_c01032{bottom:302.952563pt;}
.y6f_c01032{bottom:303.271445pt;}
.y6e_c01032{bottom:304.216315pt;}
.y6d_c01032{bottom:304.568461pt;}
.y6c_c01032{bottom:305.886347pt;}
.y6b_c01032{bottom:306.275696pt;}
.y6a_c01032{bottom:306.534304pt;}
.y69_c01032{bottom:306.720000pt;}
.y68_c01032{bottom:322.879339pt;}
.y67_c01032{bottom:323.045355pt;}
.y66_c01032{bottom:323.386027pt;}
.y65_c01032{bottom:324.064811pt;}
.y64_c01032{bottom:324.354368pt;}
.y63_c01032{bottom:325.025920pt;}
.y62_c01032{bottom:325.536768pt;}
.y61_c01032{bottom:325.932245pt;}
.y60_c01032{bottom:326.361344pt;}
.y5f_c01032{bottom:327.204096pt;}
.y5e_c01032{bottom:327.602667pt;}
.y5d_c01032{bottom:343.602667pt;}
.y5c_c01032{bottom:344.101333pt;}
.y5b_c01032{bottom:344.650667pt;}
.y5a_c01032{bottom:345.201333pt;}
.y59_c01032{bottom:345.740000pt;}
.y58_c01032{bottom:346.020000pt;}
.y57_c01032{bottom:346.256000pt;}
.y56_c01032{bottom:347.188000pt;}
.y55_c01032{bottom:347.474667pt;}
.y54_c01032{bottom:347.801333pt;}
.y53_c01032{bottom:364.060000pt;}
.y52_c01032{bottom:365.066667pt;}
.y51_c01032{bottom:365.808000pt;}
.y50_c01032{bottom:366.226667pt;}
.y4f_c01032{bottom:366.692000pt;}
.y4e_c01032{bottom:366.992000pt;}
.y4d_c01032{bottom:367.681333pt;}
.y4c_c01032{bottom:384.208000pt;}
.y4b_c01032{bottom:445.013635pt;}
.y4a_c01032{bottom:445.629915pt;}
.y49_c01032{bottom:446.263479pt;}
.y48_c01032{bottom:446.838344pt;}
.y47_c01032{bottom:447.890336pt;}
.y46_c01032{bottom:448.729713pt;}
.y45_c01032{bottom:449.227159pt;}
.y44_c01032{bottom:449.997120pt;}
.y43_c01032{bottom:463.731705pt;}
.y42_c01032{bottom:465.112801pt;}
.y41_c01032{bottom:465.634260pt;}
.y40_c01032{bottom:466.380311pt;}
.y3f_c01032{bottom:466.702583pt;}
.y3e_c01032{bottom:467.746131pt;}
.y3d_c01032{bottom:468.098309pt;}
.y3c_c01032{bottom:468.833585pt;}
.y3b_c01032{bottom:469.505867pt;}
.y3a_c01032{bottom:469.861285pt;}
.y39_c01032{bottom:470.398328pt;}
.y38_c01032{bottom:488.129345pt;}
.y37_c01032{bottom:489.836305pt;}
.y36_c01032{bottom:506.305497pt;}
.y35_c01032{bottom:507.136876pt;}
.y34_c01032{bottom:507.477639pt;}
.y33_c01032{bottom:508.194355pt;}
.y32_c01032{bottom:508.489633pt;}
.y31_c01032{bottom:509.149208pt;}
.y30_c01032{bottom:509.735205pt;}
.y2f_c01032{bottom:509.998489pt;}
.y2e_c01032{bottom:524.986984pt;}
.y2d_c01032{bottom:526.327849pt;}
.y2c_c01032{bottom:526.839008pt;}
.y2b_c01032{bottom:527.472849pt;}
.y2a_c01032{bottom:527.841397pt;}
.y29_c01032{bottom:528.052585pt;}
.y28_c01032{bottom:528.316661pt;}
.y27_c01032{bottom:529.262981pt;}
.y26_c01032{bottom:529.729741pt;}
.y25_c01032{bottom:530.061193pt;}
.y24_c01032{bottom:530.879507pt;}
.y23_c01032{bottom:544.079583pt;}
.y22_c01032{bottom:545.066764pt;}
.y21_c01032{bottom:545.943915pt;}
.y20_c01032{bottom:546.427771pt;}
.y1f_c01032{bottom:546.437139pt;}
.y1e_c01032{bottom:547.417972pt;}
.y1d_c01032{bottom:548.950761pt;}
.y1c_c01032{bottom:549.585537pt;}
.y1b_c01032{bottom:550.285276pt;}
.y1a_c01032{bottom:550.414981pt;}
.y19_c01032{bottom:550.877505pt;}
.y18_c01032{bottom:566.780705pt;}
.y17_c01032{bottom:566.986728pt;}
.y16_c01032{bottom:567.562497pt;}
.y15_c01032{bottom:568.125125pt;}
.y14_c01032{bottom:568.135949pt;}
.y13_c01032{bottom:568.864252pt;}
.y12_c01032{bottom:569.521333pt;}
.y11_c01032{bottom:588.000000pt;}
.y10_c01032{bottom:592.428000pt;}
.yf_c01032{bottom:612.360000pt;}
.ye_c01032{bottom:638.945333pt;}
.yd_c01032{bottom:656.774667pt;}
.yc_c01032{bottom:657.153333pt;}
.yb_c01032{bottom:657.472000pt;}
.ya_c01032{bottom:657.845333pt;}
.y9_c01032{bottom:658.260000pt;}
.y8_c01032{bottom:658.572000pt;}
.y7_c01032{bottom:659.085333pt;}
.y6_c01032{bottom:659.688000pt;}
.y5_c01032{bottom:679.032000pt;}
.y4_c01032{bottom:698.497333pt;}
.y3_c01032{bottom:719.058667pt;}
.y2_c01032{bottom:738.604000pt;}
.y1_c01032{bottom:776.196000pt;}
.h9_c01032{height:19.600000pt;}
.h8_c01032{height:49.466667pt;}
.h11_c01032{height:54.138638pt;}
.h7_c01032{height:59.733333pt;}
.ha_c01032{height:59.736947pt;}
.h12_c01032{height:59.739187pt;}
.h4_c01032{height:60.666667pt;}
.hb_c01032{height:60.670337pt;}
.h13_c01032{height:60.672612pt;}
.h6_c01032{height:61.600000pt;}
.hc_c01032{height:61.603727pt;}
.h14_c01032{height:61.606037pt;}
.h10_c01032{height:61.607884pt;}
.h3_c01032{height:62.533333pt;}
.hf_c01032{height:62.537116pt;}
.h15_c01032{height:62.539461pt;}
.h5_c01032{height:63.466667pt;}
.he_c01032{height:63.470506pt;}
.hd_c01032{height:64.403896pt;}
.h16_c01032{height:68.140010pt;}
.h2_c01032{height:79.333333pt;}
.h1_c01032{height:893.333333pt;}
.h0_c01032{height:893.466667pt;}
.w0_c01032{width:635.733333pt;}
.w1_c01032{width:636.000000pt;}
.x0_c01032{left:0.000000pt;}
.x88_c01032{left:108.720000pt;}
.x28_c01032{left:115.200000pt;}
.x73_c01032{left:116.177333pt;}
.xb_c01032{left:120.240000pt;}
.x6b_c01032{left:121.750667pt;}
.x44_c01032{left:123.874403pt;}
.x29_c01032{left:125.520000pt;}
.x64_c01032{left:127.026667pt;}
.xc_c01032{left:127.920000pt;}
.x53_c01032{left:129.135160pt;}
.x5f_c01032{left:130.392000pt;}
.x52_c01032{left:140.079609pt;}
.x2a_c01032{left:143.520000pt;}
.x4e_c01032{left:145.732488pt;}
.x65_c01032{left:147.413333pt;}
.x22_c01032{left:151.440000pt;}
.x89_c01032{left:152.880000pt;}
.xd_c01032{left:153.840000pt;}
.x54_c01032{left:156.015172pt;}
.x3c_c01032{left:159.082767pt;}
.x1_c01032{left:161.520000pt;}
.x83_c01032{left:162.807624pt;}
.x2b_c01032{left:163.920000pt;}
.x66_c01032{left:165.370667pt;}
.x5a_c01032{left:166.649511pt;}
.x8a_c01032{left:168.240000pt;}
.x55_c01032{left:173.778745pt;}
.x74_c01032{left:175.724000pt;}
.x2c_c01032{left:178.800000pt;}
.x60_c01032{left:183.448000pt;}
.x4f_c01032{left:184.821439pt;}
.x38_c01032{left:188.474667pt;}
.x5b_c01032{left:191.505713pt;}
.x23_c01032{left:193.920000pt;}
.xe_c01032{left:195.600000pt;}
.x8b_c01032{left:197.040000pt;}
.x3d_c01032{left:197.965108pt;}
.x6c_c01032{left:199.333333pt;}
.x45_c01032{left:200.516363pt;}
.x1b_c01032{left:207.100000pt;}
.x84_c01032{left:209.612957pt;}
.x2d_c01032{left:214.080000pt;}
.x15_c01032{left:218.160000pt;}
.xf_c01032{left:222.000000pt;}
.x67_c01032{left:223.660000pt;}
.x6d_c01032{left:226.152000pt;}
.x50_c01032{left:228.780836pt;}
.x8c_c01032{left:230.400000pt;}
.x46_c01032{left:231.674999pt;}
.x3e_c01032{left:233.245061pt;}
.x85_c01032{left:235.543624pt;}
.x1c_c01032{left:238.840000pt;}
.x61_c01032{left:242.333333pt;}
.x56_c01032{left:244.155779pt;}
.x18_c01032{left:246.720000pt;}
.x24_c01032{left:248.400000pt;}
.x6e_c01032{left:250.869333pt;}
.x2e_c01032{left:252.000000pt;}
.x4_c01032{left:253.920000pt;}
.x37_c01032{left:256.320000pt;}
.x81_c01032{left:259.706755pt;}
.x76_c01032{left:260.985381pt;}
.x10_c01032{left:262.080000pt;}
.x7d_c01032{left:263.581779pt;}
.x1d_c01032{left:265.873333pt;}
.x75_c01032{left:269.858667pt;}
.x5_c01032{left:272.640000pt;}
.x62_c01032{left:274.553333pt;}
.x35_c01032{left:279.600000pt;}
.x1e_c01032{left:282.269333pt;}
.x2f_c01032{left:283.440000pt;}
.x25_c01032{left:284.640000pt;}
.x5c_c01032{left:286.105689pt;}
.x68_c01032{left:289.492000pt;}
.x6_c01032{left:291.600000pt;}
.x47_c01032{left:294.792227pt;}
.x11_c01032{left:296.640000pt;}
.x36_c01032{left:299.040000pt;}
.x86_c01032{left:301.314291pt;}
.x7_c01032{left:303.600000pt;}
.x39_c01032{left:306.816000pt;}
.x77_c01032{left:309.914053pt;}
.x48_c01032{left:312.374116pt;}
.x16_c01032{left:314.640000pt;}
.x26_c01032{left:316.320000pt;}
.x12_c01032{left:317.280000pt;}
.x3f_c01032{left:318.401172pt;}
.x8_c01032{left:321.360000pt;}
.x1f_c01032{left:323.784000pt;}
.x6f_c01032{left:324.769333pt;}
.x49_c01032{left:326.481500pt;}
.x57_c01032{left:330.025939pt;}
.x30_c01032{left:332.160000pt;}
.x9_c01032{left:333.120000pt;}
.x87_c01032{left:339.223624pt;}
.x20_c01032{left:340.577333pt;}
.x70_c01032{left:342.866667pt;}
.x78_c01032{left:344.973205pt;}
.x5d_c01032{left:346.502372pt;}
.x7e_c01032{left:347.856149pt;}
.x4a_c01032{left:351.015081pt;}
.x17_c01032{left:352.080000pt;}
.x13_c01032{left:353.040000pt;}
.xa_c01032{left:354.000000pt;}
.x69_c01032{left:358.178667pt;}
.x3a_c01032{left:359.158667pt;}
.x21_c01032{left:360.510667pt;}
.x2_c01032{left:362.880000pt;}
.x58_c01032{left:367.299576pt;}
.x80_c01032{left:368.541211pt;}
.x40_c01032{left:372.896977pt;}
.x51_c01032{left:374.483775pt;}
.x7f_c01032{left:376.646285pt;}
.x3b_c01032{left:377.888000pt;}
.x71_c01032{left:385.290667pt;}
.x14_c01032{left:386.880000pt;}
.x6a_c01032{left:389.328000pt;}
.x19_c01032{left:390.720000pt;}
.x4b_c01032{left:393.241219pt;}
.x5e_c01032{left:398.160000pt;}
.x41_c01032{left:400.278865pt;}
.x79_c01032{left:402.591341pt;}
.x72_c01032{left:406.582667pt;}
.x63_c01032{left:409.005333pt;}
.x31_c01032{left:412.080000pt;}
.x1a_c01032{left:417.120000pt;}
.x32_c01032{left:422.160000pt;}
.x4c_c01032{left:427.345056pt;}
.x7a_c01032{left:433.066437pt;}
.x3_c01032{left:435.360000pt;}
.x33_c01032{left:442.320000pt;}
.x42_c01032{left:448.985777pt;}
.x59_c01032{left:462.431493pt;}
.x34_c01032{left:472.080000pt;}
.x27_c01032{left:475.200000pt;}
.x82_c01032{left:481.934304pt;}
.x7b_c01032{left:485.227165pt;}
.x7c_c01032{left:486.907184pt;}
.x43_c01032{left:503.816220pt;}
.x4d_c01032{left:516.753125pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.000000;font-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_c01033{transform:matrix(0.007345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007345,0.000000,0.000000,0.250000,0,0);}
.m5b_c01033{transform:matrix(0.008454,-0.000093,0.002750,0.249985,0,0);-ms-transform:matrix(0.008454,-0.000093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.008454,-0.000093,0.002750,0.249985,0,0);}
.m8b_c01033{transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010694,0.000160,-0.003750,0.249972,0,0);}
.m58_c01033{transform:matrix(0.012985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012985,0.000000,0.000000,0.250000,0,0);}
.m20_c01033{transform:matrix(0.013840,0.000097,-0.001750,0.249994,0,0);-ms-transform:matrix(0.013840,0.000097,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.013840,0.000097,-0.001750,0.249994,0,0);}
.m60_c01033{transform:matrix(0.014779,-0.000163,0.002750,0.249985,0,0);-ms-transform:matrix(0.014779,-0.000163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014779,-0.000163,0.002750,0.249985,0,0);}
.m5a_c01033{transform:matrix(0.014949,-0.000164,0.002750,0.249985,0,0);-ms-transform:matrix(0.014949,-0.000164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014949,-0.000164,0.002750,0.249985,0,0);}
.m2d_c01033{transform:matrix(0.057499,0.000402,-0.001750,0.249994,0,0);-ms-transform:matrix(0.057499,0.000402,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.057499,0.000402,-0.001750,0.249994,0,0);}
.mb0_c01033{transform:matrix(0.057614,0.000864,-0.003750,0.249972,0,0);-ms-transform:matrix(0.057614,0.000864,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.057614,0.000864,-0.003750,0.249972,0,0);}
.mcc_c01033{transform:matrix(0.067872,0.001018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.067872,0.001018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.067872,0.001018,-0.003750,0.249972,0,0);}
.m6d_c01033{transform:matrix(0.069410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069410,0.000000,0.000000,0.250000,0,0);}
.mba_c01033{transform:matrix(0.102423,0.001536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.102423,0.001536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.102423,0.001536,-0.003750,0.249972,0,0);}
.mc2_c01033{transform:matrix(0.113637,0.001705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.113637,0.001705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.113637,0.001705,-0.003750,0.249972,0,0);}
.ma0_c01033{transform:matrix(0.125682,0.002388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.125682,0.002388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.125682,0.002388,-0.004749,0.249955,0,0);}
.m30_c01033{transform:matrix(0.130602,0.000914,-0.001750,0.249994,0,0);-ms-transform:matrix(0.130602,0.000914,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.130602,0.000914,-0.001750,0.249994,0,0);}
.m47_c01033{transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);}
.m35_c01033{transform:matrix(0.139997,0.000980,-0.001750,0.249994,0,0);-ms-transform:matrix(0.139997,0.000980,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.139997,0.000980,-0.001750,0.249994,0,0);}
.mad_c01033{transform:matrix(0.142782,0.003712,-0.006498,0.249916,0,0);-ms-transform:matrix(0.142782,0.003712,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.142782,0.003712,-0.006498,0.249916,0,0);}
.m16_c01033{transform:matrix(0.142881,0.001000,-0.001750,0.249994,0,0);-ms-transform:matrix(0.142881,0.001000,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.142881,0.001000,-0.001750,0.249994,0,0);}
.m62_c01033{transform:matrix(0.145026,-0.001595,0.002750,0.249985,0,0);-ms-transform:matrix(0.145026,-0.001595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145026,-0.001595,0.002750,0.249985,0,0);}
.m1b_c01033{transform:matrix(0.150501,0.001054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150501,0.001054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150501,0.001054,-0.001750,0.249994,0,0);}
.mca_c01033{transform:matrix(0.151273,0.002269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151273,0.002269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151273,0.002269,-0.003750,0.249972,0,0);}
.m2f_c01033{transform:matrix(0.152286,0.001066,-0.001750,0.249994,0,0);-ms-transform:matrix(0.152286,0.001066,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.152286,0.001066,-0.001750,0.249994,0,0);}
.m7c_c01033{transform:matrix(0.154199,0.004163,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154199,0.004163,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154199,0.004163,-0.006748,0.249909,0,0);}
.m42_c01033{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);}
.m4a_c01033{transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);}
.m33_c01033{transform:matrix(0.159916,0.001119,-0.001750,0.249994,0,0);-ms-transform:matrix(0.159916,0.001119,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.159916,0.001119,-0.001750,0.249994,0,0);}
.m23_c01033{transform:matrix(0.160226,0.001122,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160226,0.001122,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160226,0.001122,-0.001750,0.249994,0,0);}
.m93_c01033{transform:matrix(0.160347,0.002726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160347,0.002726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160347,0.002726,-0.004249,0.249964,0,0);}
.mc4_c01033{transform:matrix(0.162372,0.002436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162372,0.002436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162372,0.002436,-0.003750,0.249972,0,0);}
.m46_c01033{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);}
.m4b_c01033{transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);}
.m1f_c01033{transform:matrix(0.164026,0.001148,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164026,0.001148,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164026,0.001148,-0.001750,0.249994,0,0);}
.m94_c01033{transform:matrix(0.164551,0.002797,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164551,0.002797,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164551,0.002797,-0.004249,0.249964,0,0);}
.m8a_c01033{transform:matrix(0.164706,0.002471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.164706,0.002471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.164706,0.002471,-0.003750,0.249972,0,0);}
.m13_c01033{transform:matrix(0.165716,0.001160,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165716,0.001160,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165716,0.001160,-0.001750,0.249994,0,0);}
.mb_c01033{transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166036,0.001162,-0.001750,0.249994,0,0);}
.m3f_c01033{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);}
.m19_c01033{transform:matrix(0.168686,0.001181,-0.001750,0.249994,0,0);-ms-transform:matrix(0.168686,0.001181,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.168686,0.001181,-0.001750,0.249994,0,0);}
.m65_c01033{transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168725,-0.001856,0.002750,0.249985,0,0);}
.mc9_c01033{transform:matrix(0.169131,0.002537,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169131,0.002537,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169131,0.002537,-0.003750,0.249972,0,0);}
.m36_c01033{transform:matrix(0.169231,0.001185,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169231,0.001185,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169231,0.001185,-0.001750,0.249994,0,0);}
.m31_c01033{transform:matrix(0.171166,0.001198,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171166,0.001198,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171166,0.001198,-0.001750,0.249994,0,0);}
.m7_c01033{transform:matrix(0.171461,0.001200,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171461,0.001200,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171461,0.001200,-0.001750,0.249994,0,0);}
.m2b_c01033{transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173556,0.001215,-0.001750,0.249994,0,0);}
.m27_c01033{transform:matrix(0.173721,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173721,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173721,0.001216,-0.001750,0.249994,0,0);}
.m79_c01033{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);}
.m78_c01033{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);}
.m24_c01033{transform:matrix(0.175371,0.001228,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175371,0.001228,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175371,0.001228,-0.001750,0.249994,0,0);}
.mf_c01033{transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176071,0.001232,-0.001750,0.249994,0,0);}
.m88_c01033{transform:matrix(0.176150,0.002642,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176150,0.002642,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176150,0.002642,-0.003750,0.249972,0,0);}
.m92_c01033{transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178929,0.003042,-0.004249,0.249964,0,0);}
.m81_c01033{transform:matrix(0.179185,0.004838,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179185,0.004838,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179185,0.004838,-0.006748,0.249909,0,0);}
.mc3_c01033{transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180150,0.002702,-0.003750,0.249972,0,0);}
.m15_c01033{transform:matrix(0.182751,0.001279,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182751,0.001279,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182751,0.001279,-0.001750,0.249994,0,0);}
.m49_c01033{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);}
.m9e_c01033{transform:matrix(0.183057,0.003478,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183057,0.003478,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183057,0.003478,-0.004749,0.249955,0,0);}
.m96_c01033{transform:matrix(0.183144,0.003113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183144,0.003113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183144,0.003113,-0.004249,0.249964,0,0);}
.m95_c01033{transform:matrix(0.183289,0.003116,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183289,0.003116,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183289,0.003116,-0.004249,0.249964,0,0);}
.m66_c01033{transform:matrix(0.184429,-0.002029,0.002750,0.249985,0,0);-ms-transform:matrix(0.184429,-0.002029,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184429,-0.002029,0.002750,0.249985,0,0);}
.mc_c01033{transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);}
.ma_c01033{transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184480,0.001291,-0.001750,0.249994,0,0);}
.m3d_c01033{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_c01033{transform:matrix(0.185045,0.001295,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185045,0.001295,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185045,0.001295,-0.001750,0.249994,0,0);}
.m53_c01033{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);}
.m77_c01033{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);}
.m10_c01033{transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187045,0.001309,-0.001750,0.249994,0,0);}
.m98_c01033{transform:matrix(0.187177,0.005241,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187177,0.005241,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187177,0.005241,-0.006997,0.249902,0,0);}
.m87_c01033{transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187619,0.002814,-0.003750,0.249972,0,0);}
.ma9_c01033{transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187627,0.004878,-0.006498,0.249916,0,0);}
.m3c_c01033{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);}
.m73_c01033{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);}
.m75_c01033{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);}
.m11_c01033{transform:matrix(0.192045,0.001344,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192045,0.001344,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192045,0.001344,-0.001750,0.249994,0,0);}
.mc5_c01033{transform:matrix(0.192368,0.002886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192368,0.002886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192368,0.002886,-0.003750,0.249972,0,0);}
.mb4_c01033{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);}
.m14_c01033{transform:matrix(0.194105,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194105,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194105,0.001359,-0.001750,0.249994,0,0);}
.mbc_c01033{transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);}
.m64_c01033{transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);}
.m12_c01033{transform:matrix(0.196835,0.001378,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196835,0.001378,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196835,0.001378,-0.001750,0.249994,0,0);}
.m39_c01033{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);}
.mc7_c01033{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);}
.m37_c01033{transform:matrix(0.197740,0.001384,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197740,0.001384,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197740,0.001384,-0.001750,0.249994,0,0);}
.m41_c01033{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);}
.m40_c01033{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);}
.ma3_c01033{transform:matrix(0.198629,0.003774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198629,0.003774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198629,0.003774,-0.004749,0.249955,0,0);}
.m1d_c01033{transform:matrix(0.199390,0.001396,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199390,0.001396,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199390,0.001396,-0.001750,0.249994,0,0);}
.m7f_c01033{transform:matrix(0.201307,0.005435,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201307,0.005435,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201307,0.005435,-0.006748,0.249909,0,0);}
.m25_c01033{transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);}
.mb8_c01033{transform:matrix(0.202662,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202662,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202662,0.003040,-0.003750,0.249972,0,0);}
.m70_c01033{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);}
.m63_c01033{transform:matrix(0.204483,-0.002249,0.002750,0.249985,0,0);-ms-transform:matrix(0.204483,-0.002249,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204483,-0.002249,0.002750,0.249985,0,0);}
.m80_c01033{transform:matrix(0.204995,0.005535,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204995,0.005535,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204995,0.005535,-0.006748,0.249909,0,0);}
.mc0_c01033{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);}
.m97_c01033{transform:matrix(0.206695,0.003514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206695,0.003514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206695,0.003514,-0.004249,0.249964,0,0);}
.m89_c01033{transform:matrix(0.207252,0.003109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207252,0.003109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207252,0.003109,-0.003750,0.249972,0,0);}
.m61_c01033{transform:matrix(0.207892,-0.002287,0.002750,0.249985,0,0);-ms-transform:matrix(0.207892,-0.002287,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207892,-0.002287,0.002750,0.249985,0,0);}
.m45_c01033{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);}
.ma1_c01033{transform:matrix(0.209662,0.003984,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209662,0.003984,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209662,0.003984,-0.004749,0.249955,0,0);}
.m2e_c01033{transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212040,0.001484,-0.001750,0.249994,0,0);}
.m32_c01033{transform:matrix(0.213435,0.001494,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213435,0.001494,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213435,0.001494,-0.001750,0.249994,0,0);}
.m2a_c01033{transform:matrix(0.213910,0.001497,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213910,0.001497,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213910,0.001497,-0.001750,0.249994,0,0);}
.m1c_c01033{transform:matrix(0.214585,0.001502,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214585,0.001502,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214585,0.001502,-0.001750,0.249994,0,0);}
.m6f_c01033{transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216235,0.000000,0.000000,0.250000,0,0);}
.m9d_c01033{transform:matrix(0.216256,0.004109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216256,0.004109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216256,0.004109,-0.004749,0.249955,0,0);}
.mc1_c01033{transform:matrix(0.217191,0.003258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217191,0.003258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217191,0.003258,-0.003750,0.249972,0,0);}
.m17_c01033{transform:matrix(0.218985,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218985,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218985,0.001533,-0.001750,0.249994,0,0);}
.m56_c01033{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);}
.m48_c01033{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);}
.mcd_c01033{transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);}
.mb9_c01033{transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);}
.m83_c01033{transform:matrix(0.221935,0.003329,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221935,0.003329,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221935,0.003329,-0.003750,0.249972,0,0);}
.m8f_c01033{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m18_c01033{transform:matrix(0.223520,0.001565,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223520,0.001565,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223520,0.001565,-0.001750,0.249994,0,0);}
.m7e_c01033{transform:matrix(0.224618,0.006065,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224618,0.006065,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224618,0.006065,-0.006748,0.249909,0,0);}
.m34_c01033{transform:matrix(0.227399,0.001592,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227399,0.001592,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227399,0.001592,-0.001750,0.249994,0,0);}
.mb6_c01033{transform:matrix(0.227744,0.003416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227744,0.003416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227744,0.003416,-0.003750,0.249972,0,0);}
.m50_c01033{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);}
.m6_c01033{transform:matrix(0.228644,0.001601,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228644,0.001601,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228644,0.001601,-0.001750,0.249994,0,0);}
.m0_c01033{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);}
.m67_c01033{transform:matrix(0.230016,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.230016,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230016,-0.002530,0.002750,0.249985,0,0);}
.m44_c01033{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);}
.mc6_c01033{transform:matrix(0.231399,0.003471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231399,0.003471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231399,0.003471,-0.003750,0.249972,0,0);}
.m26_c01033{transform:matrix(0.232024,0.001624,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232024,0.001624,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232024,0.001624,-0.001750,0.249994,0,0);}
.m72_c01033{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m91_c01033{transform:matrix(0.235691,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235691,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235691,0.004007,-0.004249,0.249964,0,0);}
.m3b_c01033{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);}
.m4_c01033{transform:matrix(0.237824,0.001665,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237824,0.001665,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237824,0.001665,-0.001750,0.249994,0,0);}
.m76_c01033{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);}
.m9_c01033{transform:matrix(0.240709,0.001685,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240709,0.001685,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240709,0.001685,-0.001750,0.249994,0,0);}
.m22_c01033{transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);}
.m1e_c01033{transform:matrix(0.241564,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241564,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241564,0.001691,-0.001750,0.249994,0,0);}
.mce_c01033{transform:matrix(0.243278,0.003649,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243278,0.003649,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243278,0.003649,-0.003750,0.249972,0,0);}
.mb2_c01033{transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);}
.m5_c01033{transform:matrix(0.245054,0.001715,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245054,0.001715,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245054,0.001715,-0.001750,0.249994,0,0);}
.me_c01033{transform:matrix(0.246094,0.001723,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246094,0.001723,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246094,0.001723,-0.001750,0.249994,0,0);}
.mbe_c01033{transform:matrix(0.247447,0.003712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247447,0.003712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247447,0.003712,-0.003750,0.249972,0,0);}
.ma2_c01033{transform:matrix(0.249180,0.004734,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249180,0.004734,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249180,0.004734,-0.004749,0.249955,0,0);}
.m29_c01033{transform:matrix(0.251499,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251499,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251499,0.001760,-0.001750,0.249994,0,0);}
.m90_c01033{transform:matrix(0.258628,0.004397,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258628,0.004397,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258628,0.004397,-0.004249,0.249964,0,0);}
.m86_c01033{transform:matrix(0.262260,0.003934,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262260,0.003934,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262260,0.003934,-0.003750,0.249972,0,0);}
.m6e_c01033{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.ma4_c01033{transform:matrix(0.266942,0.005072,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266942,0.005072,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266942,0.005072,-0.004749,0.249955,0,0);}
.m3e_c01033{transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);}
.m71_c01033{transform:matrix(0.269530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269530,0.000000,0.000000,0.250000,0,0);}
.mc8_c01033{transform:matrix(0.269775,0.004047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269775,0.004047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269775,0.004047,-0.003750,0.249972,0,0);}
.mb1_c01033{transform:matrix(0.270345,0.004055,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270345,0.004055,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270345,0.004055,-0.003750,0.249972,0,0);}
.m8c_c01033{transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);}
.m28_c01033{transform:matrix(0.272183,0.001905,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272183,0.001905,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272183,0.001905,-0.001750,0.249994,0,0);}
.m82_c01033{transform:matrix(0.274520,0.007412,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274520,0.007412,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274520,0.007412,-0.006748,0.249909,0,0);}
.m57_c01033{transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284285,0.000000,0.000000,0.250000,0,0);}
.m5e_c01033{transform:matrix(0.285773,-0.003143,0.002750,0.249985,0,0);-ms-transform:matrix(0.285773,-0.003143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285773,-0.003143,0.002750,0.249985,0,0);}
.m5d_c01033{transform:matrix(0.287518,-0.003163,0.002750,0.249985,0,0);-ms-transform:matrix(0.287518,-0.003163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287518,-0.003163,0.002750,0.249985,0,0);}
.m4f_c01033{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m52_c01033{transform:matrix(0.289715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289715,0.000000,0.000000,0.250000,0,0);}
.m8e_c01033{transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);}
.m38_c01033{transform:matrix(0.295283,0.002067,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295283,0.002067,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295283,0.002067,-0.001750,0.249994,0,0);}
.m9a_c01033{transform:matrix(0.307025,0.005833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.307025,0.005833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.307025,0.005833,-0.004749,0.249955,0,0);}
.ma5_c01033{transform:matrix(0.310164,0.005893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.310164,0.005893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.310164,0.005893,-0.004749,0.249955,0,0);}
.m3a_c01033{transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316265,0.000000,0.000000,0.250000,0,0);}
.m59_c01033{transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);}
.mac_c01033{transform:matrix(0.320827,0.008341,-0.006498,0.249916,0,0);-ms-transform:matrix(0.320827,0.008341,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.320827,0.008341,-0.006498,0.249916,0,0);}
.m4c_c01033{transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);}
.m8d_c01033{transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324455,0.000000,0.000000,0.250000,0,0);}
.m9c_c01033{transform:matrix(0.333410,0.006335,-0.004749,0.249955,0,0);-ms-transform:matrix(0.333410,0.006335,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.333410,0.006335,-0.004749,0.249955,0,0);}
.m9f_c01033{transform:matrix(0.333830,0.006343,-0.004749,0.249955,0,0);-ms-transform:matrix(0.333830,0.006343,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.333830,0.006343,-0.004749,0.249955,0,0);}
.maf_c01033{transform:matrix(0.334717,0.008703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.334717,0.008703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.334717,0.008703,-0.006498,0.249916,0,0);}
.m7b_c01033{transform:matrix(0.337017,0.009099,-0.006748,0.249909,0,0);-ms-transform:matrix(0.337017,0.009099,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.337017,0.009099,-0.006748,0.249909,0,0);}
.m4d_c01033{transform:matrix(0.338740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338740,0.000000,0.000000,0.250000,0,0);}
.m5f_c01033{transform:matrix(0.344424,-0.003789,0.002750,0.249985,0,0);-ms-transform:matrix(0.344424,-0.003789,0.002750,0.249985,0,0);-webkit-transform:matrix(0.344424,-0.003789,0.002750,0.249985,0,0);}
.m3_c01033{transform:matrix(0.352490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352490,0.000000,0.000000,0.250000,0,0);}
.m2_c01033{transform:matrix(0.366025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366025,0.000000,0.000000,0.250000,0,0);}
.m8_c01033{transform:matrix(0.375496,0.002628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.375496,0.002628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.375496,0.002628,-0.001750,0.249994,0,0);}
.mae_c01033{transform:matrix(0.375778,0.009770,-0.006498,0.249916,0,0);-ms-transform:matrix(0.375778,0.009770,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.375778,0.009770,-0.006498,0.249916,0,0);}
.m1_c01033{transform:matrix(0.387695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387695,0.000000,0.000000,0.250000,0,0);}
.m6c_c01033{transform:matrix(0.387915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387915,0.000000,0.000000,0.250000,0,0);}
.mb5_c01033{transform:matrix(0.390446,0.005857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.390446,0.005857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.390446,0.005857,-0.003750,0.249972,0,0);}
.m54_c01033{transform:matrix(0.396075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396075,0.000000,0.000000,0.250000,0,0);}
.m84_c01033{transform:matrix(0.415338,0.006230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.415338,0.006230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.415338,0.006230,-0.003750,0.249972,0,0);}
.m7a_c01033{transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416445,0.000000,0.000000,0.250000,0,0);}
.m5c_c01033{transform:matrix(0.422194,-0.004644,0.002750,0.249985,0,0);-ms-transform:matrix(0.422194,-0.004644,0.002750,0.249985,0,0);-webkit-transform:matrix(0.422194,-0.004644,0.002750,0.249985,0,0);}
.m51_c01033{transform:matrix(0.422570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422570,0.000000,0.000000,0.250000,0,0);}
.ma8_c01033{transform:matrix(0.423357,0.011007,-0.006498,0.249916,0,0);-ms-transform:matrix(0.423357,0.011007,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.423357,0.011007,-0.006498,0.249916,0,0);}
.mbf_c01033{transform:matrix(0.431122,0.006467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.431122,0.006467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.431122,0.006467,-0.003750,0.249972,0,0);}
.mbb_c01033{transform:matrix(0.432501,0.006488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.432501,0.006488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.432501,0.006488,-0.003750,0.249972,0,0);}
.m7d_c01033{transform:matrix(0.433302,0.011699,-0.006748,0.249909,0,0);-ms-transform:matrix(0.433302,0.011699,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.433302,0.011699,-0.006748,0.249909,0,0);}
.maa_c01033{transform:matrix(0.433608,0.011274,-0.006498,0.249916,0,0);-ms-transform:matrix(0.433608,0.011274,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.433608,0.011274,-0.006498,0.249916,0,0);}
.m9b_c01033{transform:matrix(0.437301,0.008309,-0.004749,0.249955,0,0);-ms-transform:matrix(0.437301,0.008309,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.437301,0.008309,-0.004749,0.249955,0,0);}
.md_c01033{transform:matrix(0.445314,0.003117,-0.001750,0.249994,0,0);-ms-transform:matrix(0.445314,0.003117,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.445314,0.003117,-0.001750,0.249994,0,0);}
.mab_c01033{transform:matrix(0.461904,0.012010,-0.006498,0.249916,0,0);-ms-transform:matrix(0.461904,0.012010,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.461904,0.012010,-0.006498,0.249916,0,0);}
.m99_c01033{transform:matrix(0.483386,0.013535,-0.006997,0.249902,0,0);-ms-transform:matrix(0.483386,0.013535,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.483386,0.013535,-0.006997,0.249902,0,0);}
.m85_c01033{transform:matrix(0.490625,0.007359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.490625,0.007359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.490625,0.007359,-0.003750,0.249972,0,0);}
.mb3_c01033{transform:matrix(0.527076,0.007906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.527076,0.007906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.527076,0.007906,-0.003750,0.249972,0,0);}
.m6a_c01033{transform:matrix(0.577550,-0.006353,0.002750,0.249985,0,0);-ms-transform:matrix(0.577550,-0.006353,0.002750,0.249985,0,0);-webkit-transform:matrix(0.577550,-0.006353,0.002750,0.249985,0,0);}
.mb7_c01033{transform:matrix(0.586344,0.008795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.586344,0.008795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.586344,0.008795,-0.003750,0.249972,0,0);}
.m4e_c01033{transform:matrix(0.588460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588460,0.000000,0.000000,0.250000,0,0);}
.mbd_c01033{transform:matrix(0.594193,0.008913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.594193,0.008913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.594193,0.008913,-0.003750,0.249972,0,0);}
.m68_c01033{transform:matrix(0.678399,-0.007462,0.002750,0.249985,0,0);-ms-transform:matrix(0.678399,-0.007462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.678399,-0.007462,0.002750,0.249985,0,0);}
.ma7_c01033{transform:matrix(0.741814,0.019287,-0.006498,0.249916,0,0);-ms-transform:matrix(0.741814,0.019287,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.741814,0.019287,-0.006498,0.249916,0,0);}
.m43_c01033{transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);}
.m2c_c01033{transform:matrix(0.747777,0.005234,-0.001750,0.249994,0,0);-ms-transform:matrix(0.747777,0.005234,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.747777,0.005234,-0.001750,0.249994,0,0);}
.m21_c01033{transform:matrix(0.810380,0.005673,-0.001750,0.249994,0,0);-ms-transform:matrix(0.810380,0.005673,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.810380,0.005673,-0.001750,0.249994,0,0);}
.mcf_c01033{transform:matrix(0.939659,0.014095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.939659,0.014095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.939659,0.014095,-0.003750,0.249972,0,0);}
.m74_c01033{transform:matrix(0.962475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962475,0.000000,0.000000,0.250000,0,0);}
.ma6_c01033{transform:matrix(1.002036,0.026053,-0.006498,0.249916,0,0);-ms-transform:matrix(1.002036,0.026053,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.002036,0.026053,-0.006498,0.249916,0,0);}
.m6b_c01033{transform:matrix(1.052140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052140,0.000000,0.000000,0.250000,0,0);}
.mcb_c01033{transform:matrix(1.345049,0.020176,-0.003750,0.249972,0,0);-ms-transform:matrix(1.345049,0.020176,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.345049,0.020176,-0.003750,0.249972,0,0);}
.m69_c01033{transform:matrix(4.021937,-0.044241,0.002750,0.249985,0,0);-ms-transform:matrix(4.021937,-0.044241,0.002750,0.249985,0,0);-webkit-transform:matrix(4.021937,-0.044241,0.002750,0.249985,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls0_c01033{letter-spacing:0.000000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:0.000000px;}
.fc0_c01033{color:transparent;}
.fs0_c01033{font-size:51.450000px;}
.fs1a_c01033{font-size:61.956969px;}
.fsa_c01033{font-size:63.000000px;}
.fs6_c01033{font-size:63.001543px;}
.fs10_c01033{font-size:64.050000px;}
.fs19_c01033{font-size:65.107323px;}
.fs8_c01033{font-size:67.200000px;}
.fs11_c01033{font-size:69.300000px;}
.fs4_c01033{font-size:69.301698px;}
.fs5_c01033{font-size:70.351724px;}
.fs18_c01033{font-size:70.373774px;}
.fs3_c01033{font-size:71.401749px;}
.fs14_c01033{font-size:71.408032px;}
.fs17_c01033{font-size:71.412887px;}
.fs16_c01033{font-size:71.427983px;}
.fs15_c01033{font-size:72.460468px;}
.fs13_c01033{font-size:72.476403px;}
.fsf_c01033{font-size:73.504447px;}
.fs9_c01033{font-size:75.600000px;}
.fs7_c01033{font-size:78.751929px;}
.fs12_c01033{font-size:89.282526px;}
.fsc_c01033{font-size:90.305463px;}
.fse_c01033{font-size:91.355527px;}
.fsb_c01033{font-size:103.950000px;}
.fs2_c01033{font-size:108.150000px;}
.fs1_c01033{font-size:130.200000px;}
.fsd_c01033{font-size:140.708512px;}
.y0_c01033{bottom:0.000000px;}
.ya9_c01033{bottom:150.661733px;}
.ya8_c01033{bottom:151.257630px;}
.ya7_c01033{bottom:152.579400px;}
.ya6_c01033{bottom:155.607848px;}
.ya5_c01033{bottom:173.667630px;}
.ya3_c01033{bottom:174.144683px;}
.ya4_c01033{bottom:174.168435px;}
.ya2_c01033{bottom:174.467647px;}
.ya1_c01033{bottom:175.115543px;}
.ya0_c01033{bottom:175.520805px;}
.y9f_c01033{bottom:176.321385px;}
.y9e_c01033{bottom:176.714895px;}
.y9d_c01033{bottom:177.002130px;}
.y9c_c01033{bottom:177.211875px;}
.y9b_c01033{bottom:178.130040px;}
.y9a_c01033{bottom:178.716548px;}
.y99_c01033{bottom:179.219040px;}
.y98_c01033{bottom:180.124620px;}
.y97_c01033{bottom:196.429575px;}
.y96_c01033{bottom:197.168700px;}
.y95_c01033{bottom:197.554080px;}
.y94_c01033{bottom:197.736173px;}
.y93_c01033{bottom:198.806700px;}
.y92_c01033{bottom:199.377818px;}
.y91_c01033{bottom:200.236958px;}
.y90_c01033{bottom:200.383320px;}
.y8f_c01033{bottom:201.001710px;}
.y8e_c01033{bottom:201.253440px;}
.y8d_c01033{bottom:202.067783px;}
.y8c_c01033{bottom:202.501965px;}
.y8b_c01033{bottom:203.615715px;}
.y8a_c01033{bottom:203.763000px;}
.y89_c01033{bottom:240.990132px;}
.y88_c01033{bottom:241.413009px;}
.y87_c01033{bottom:241.480167px;}
.y86_c01033{bottom:242.077842px;}
.y85_c01033{bottom:243.551184px;}
.y84_c01033{bottom:243.650361px;}
.y83_c01033{bottom:245.445063px;}
.y82_c01033{bottom:246.161961px;}
.y81_c01033{bottom:247.194837px;}
.y80_c01033{bottom:248.853000px;}
.y7f_c01033{bottom:265.607931px;}
.y7e_c01033{bottom:266.306095px;}
.y7d_c01033{bottom:267.965024px;}
.y7c_c01033{bottom:268.420140px;}
.y7b_c01033{bottom:269.183798px;}
.y7a_c01033{bottom:269.261232px;}
.y79_c01033{bottom:269.483247px;}
.y78_c01033{bottom:270.304275px;}
.y77_c01033{bottom:270.707607px;}
.y76_c01033{bottom:271.200087px;}
.y75_c01033{bottom:271.497855px;}
.y74_c01033{bottom:272.181000px;}
.y73_c01033{bottom:291.472962px;}
.y72_c01033{bottom:295.651500px;}
.y71_c01033{bottom:314.419657px;}
.y70_c01033{bottom:315.980895px;}
.y6f_c01033{bottom:316.352404px;}
.y6e_c01033{bottom:316.736587px;}
.y6d_c01033{bottom:317.522778px;}
.y6c_c01033{bottom:318.252716px;}
.y6b_c01033{bottom:318.582991px;}
.y6a_c01033{bottom:319.416000px;}
.y69_c01033{bottom:340.869000px;}
.y68_c01033{bottom:358.332083px;}
.y67_c01033{bottom:361.741283px;}
.y66_c01033{bottom:362.137237px;}
.y65_c01033{bottom:362.679690px;}
.y64_c01033{bottom:363.365085px;}
.y63_c01033{bottom:364.086750px;}
.y62_c01033{bottom:364.347615px;}
.y61_c01033{bottom:364.923593px;}
.y60_c01033{bottom:365.583000px;}
.y5f_c01033{bottom:380.605934px;}
.y5e_c01033{bottom:382.946889px;}
.y5d_c01033{bottom:384.745229px;}
.y5c_c01033{bottom:385.222443px;}
.y5b_c01033{bottom:386.370041px;}
.y5a_c01033{bottom:401.809589px;}
.y59_c01033{bottom:406.336800px;}
.y58_c01033{bottom:410.443500px;}
.y57_c01033{bottom:433.018500px;}
.y56_c01033{bottom:455.377500px;}
.y54_c01033{bottom:478.265249px;}
.y55_c01033{bottom:478.265481px;}
.y53_c01033{bottom:523.980585px;}
.y52_c01033{bottom:523.981281px;}
.y50_c01033{bottom:523.981617px;}
.y4d_c01033{bottom:523.981656px;}
.y51_c01033{bottom:523.981871px;}
.y4b_c01033{bottom:523.981946px;}
.y4e_c01033{bottom:523.982119px;}
.y4f_c01033{bottom:523.982280px;}
.y4c_c01033{bottom:523.982336px;}
.y48_c01033{bottom:548.962728px;}
.y4a_c01033{bottom:548.962968px;}
.y49_c01033{bottom:548.963307px;}
.y45_c01033{bottom:579.960000px;}
.y46_c01033{bottom:580.711361px;}
.y47_c01033{bottom:583.962867px;}
.y44_c01033{bottom:597.903000px;}
.y43_c01033{bottom:673.648500px;}
.y42_c01033{bottom:697.927500px;}
.y41_c01033{bottom:698.068500px;}
.y40_c01033{bottom:699.888000px;}
.y3f_c01033{bottom:700.224000px;}
.y3e_c01033{bottom:700.411500px;}
.y3d_c01033{bottom:700.722000px;}
.y3c_c01033{bottom:700.923000px;}
.y3b_c01033{bottom:701.436000px;}
.y3a_c01033{bottom:701.710500px;}
.y39_c01033{bottom:702.270000px;}
.y38_c01033{bottom:720.463500px;}
.y37_c01033{bottom:743.030836px;}
.y36_c01033{bottom:743.962491px;}
.y35_c01033{bottom:744.450153px;}
.y34_c01033{bottom:744.688377px;}
.y33_c01033{bottom:744.862267px;}
.y32_c01033{bottom:745.259220px;}
.y31_c01033{bottom:745.416069px;}
.y30_c01033{bottom:745.648298px;}
.y2f_c01033{bottom:745.799466px;}
.y2e_c01033{bottom:745.999806px;}
.y2d_c01033{bottom:746.275935px;}
.y2c_c01033{bottom:767.946060px;}
.y2b_c01033{bottom:767.946319px;}
.y2a_c01033{bottom:767.946598px;}
.y29_c01033{bottom:767.947248px;}
.y25_c01033{bottom:767.947457px;}
.y23_c01033{bottom:767.947566px;}
.y28_c01033{bottom:767.947627px;}
.y24_c01033{bottom:767.947956px;}
.y26_c01033{bottom:767.947977px;}
.y22_c01033{bottom:767.947986px;}
.y27_c01033{bottom:767.948037px;}
.y21_c01033{bottom:767.948706px;}
.y1a_c01033{bottom:791.935873px;}
.y1b_c01033{bottom:791.936294px;}
.y1e_c01033{bottom:791.936314px;}
.y19_c01033{bottom:791.936433px;}
.y20_c01033{bottom:791.936496px;}
.y1c_c01033{bottom:791.936544px;}
.y1f_c01033{bottom:791.936786px;}
.y17_c01033{bottom:791.936832px;}
.y1d_c01033{bottom:791.936854px;}
.y18_c01033{bottom:791.936992px;}
.y10_c01033{bottom:814.394745px;}
.yf_c01033{bottom:814.395244px;}
.ye_c01033{bottom:814.395474px;}
.y11_c01033{bottom:814.395475px;}
.y14_c01033{bottom:814.395567px;}
.y13_c01033{bottom:814.395587px;}
.y12_c01033{bottom:814.395906px;}
.y15_c01033{bottom:814.396238px;}
.y16_c01033{bottom:814.396758px;}
.yd_c01033{bottom:835.637972px;}
.yc_c01033{bottom:836.826099px;}
.yb_c01033{bottom:836.967660px;}
.ya_c01033{bottom:837.434721px;}
.y9_c01033{bottom:837.631586px;}
.y8_c01033{bottom:838.019277px;}
.y7_c01033{bottom:838.187004px;}
.y6_c01033{bottom:838.355266px;}
.y5_c01033{bottom:838.668933px;}
.y4_c01033{bottom:838.890000px;}
.y3_c01033{bottom:881.839500px;}
.y2_c01033{bottom:921.696000px;}
.y1_c01033{bottom:940.680000px;}
.h2_c01033{height:51.450000px;}
.h1c_c01033{height:61.956969px;}
.hc_c01033{height:63.000000px;}
.h8_c01033{height:63.001543px;}
.h12_c01033{height:64.050000px;}
.h1b_c01033{height:65.107323px;}
.ha_c01033{height:67.200000px;}
.h13_c01033{height:69.300000px;}
.h6_c01033{height:69.301698px;}
.h7_c01033{height:70.351724px;}
.h1a_c01033{height:70.373774px;}
.h5_c01033{height:71.401749px;}
.h16_c01033{height:71.408032px;}
.h19_c01033{height:71.412887px;}
.h18_c01033{height:71.427983px;}
.h17_c01033{height:72.460468px;}
.h15_c01033{height:72.476403px;}
.h11_c01033{height:73.504447px;}
.hb_c01033{height:75.600000px;}
.h9_c01033{height:78.751929px;}
.h14_c01033{height:89.282526px;}
.he_c01033{height:90.305463px;}
.h10_c01033{height:91.355527px;}
.hd_c01033{height:103.950000px;}
.h4_c01033{height:108.150000px;}
.h3_c01033{height:130.200000px;}
.hf_c01033{height:140.708512px;}
.h0_c01033{height:1008.450000px;}
.h1_c01033{height:1008.750000px;}
.w1_c01033{width:700.500000px;}
.w0_c01033{width:700.650000px;}
.x0_c01033{left:0.000000px;}
.x87_c01033{left:128.878252px;}
.x7e_c01033{left:134.442000px;}
.x4c_c01033{left:140.392149px;}
.x7f_c01033{left:144.261000px;}
.x2_c01033{left:153.630000px;}
.x71_c01033{left:160.080000px;}
.x64_c01033{left:165.042000px;}
.x39_c01033{left:167.577000px;}
.x54_c01033{left:169.290000px;}
.x16_c01033{left:173.068256px;}
.x5_c01033{left:174.873000px;}
.x4e_c01033{left:191.965644px;}
.x88_c01033{left:198.552345px;}
.x1f_c01033{left:200.879705px;}
.x4f_c01033{left:201.956849px;}
.x6_c01033{left:206.454000px;}
.x65_c01033{left:209.002500px;}
.x28_c01033{left:212.966667px;}
.x17_c01033{left:217.618940px;}
.x20_c01033{left:221.940734px;}
.x42_c01033{left:224.100000px;}
.x31_c01033{left:230.040000px;}
.xe_c01033{left:232.740881px;}
.x55_c01033{left:237.600000px;}
.x29_c01033{left:241.586667px;}
.x73_c01033{left:243.304500px;}
.x66_c01033{left:247.401000px;}
.x21_c01033{left:248.672046px;}
.x7_c01033{left:251.263500px;}
.x3_c01033{left:253.530000px;}
.x3a_c01033{left:260.176500px;}
.x18_c01033{left:261.629592px;}
.x2a_c01033{left:263.182167px;}
.x67_c01033{left:264.792000px;}
.x32_c01033{left:269.190000px;}
.x4b_c01033{left:270.819000px;}
.x48_c01033{left:274.050000px;}
.x8_c01033{left:275.301000px;}
.x5b_c01033{left:281.340000px;}
.x56_c01033{left:284.850000px;}
.x43_c01033{left:287.550000px;}
.xf_c01033{left:289.172142px;}
.x22_c01033{left:291.602646px;}
.x2b_c01033{left:296.357667px;}
.x9_c01033{left:299.262000px;}
.x80_c01033{left:301.746000px;}
.x57_c01033{left:306.990000px;}
.x33_c01033{left:308.070000px;}
.x72_c01033{left:309.313500px;}
.x5d_c01033{left:311.632500px;}
.x68_c01033{left:312.903000px;}
.x10_c01033{left:316.173465px;}
.x3b_c01033{left:317.196000px;}
.x2c_c01033{left:318.764667px;}
.x6b_c01033{left:321.300000px;}
.x44_c01033{left:322.920000px;}
.x50_c01033{left:324.815715px;}
.x5c_c01033{left:326.700000px;}
.x77_c01033{left:328.321500px;}
.x23_c01033{left:329.673015px;}
.x19_c01033{left:332.641568px;}
.x1_c01033{left:338.310000px;}
.x3c_c01033{left:339.577500px;}
.x6c_c01033{left:341.820000px;}
.x6e_c01033{left:344.833500px;}
.x1a_c01033{left:352.082523px;}
.xa_c01033{left:354.646500px;}
.x78_c01033{left:355.894500px;}
.x69_c01033{left:358.596000px;}
.x81_c01033{left:359.754000px;}
.x34_c01033{left:361.530000px;}
.x74_c01033{left:363.697500px;}
.x6f_c01033{left:366.687000px;}
.x82_c01033{left:369.511500px;}
.x11_c01033{left:370.714642px;}
.x3d_c01033{left:374.130000px;}
.x2d_c01033{left:375.472167px;}
.x6d_c01033{left:380.430000px;}
.x4_c01033{left:382.590000px;}
.x1b_c01033{left:388.262798px;}
.x51_c01033{left:390.429152px;}
.x3e_c01033{left:394.918500px;}
.x2e_c01033{left:400.313667px;}
.x60_c01033{left:402.547719px;}
.x12_c01033{left:403.654759px;}
.x35_c01033{left:416.340000px;}
.x58_c01033{left:417.420000px;}
.x45_c01033{left:420.930000px;}
.x79_c01033{left:424.921500px;}
.x83_c01033{left:426.787500px;}
.x7a_c01033{left:428.736000px;}
.x3f_c01033{left:432.172500px;}
.x2f_c01033{left:434.345667px;}
.x1c_c01033{left:436.863681px;}
.x24_c01033{left:444.425633px;}
.x61_c01033{left:448.442690px;}
.xb_c01033{left:449.493000px;}
.x13_c01033{left:456.845863px;}
.x70_c01033{left:458.524500px;}
.x1d_c01033{left:460.084815px;}
.x52_c01033{left:461.173215px;}
.x8c_c01033{left:462.188145px;}
.x5e_c01033{left:463.732500px;}
.x36_c01033{left:465.750000px;}
.x46_c01033{left:466.830000px;}
.xc_c01033{left:469.716000px;}
.x75_c01033{left:474.963000px;}
.x59_c01033{left:481.950000px;}
.x4d_c01033{left:484.122729px;}
.x7b_c01033{left:485.403000px;}
.x14_c01033{left:491.136044px;}
.x30_c01033{left:504.011667px;}
.x47_c01033{left:507.060000px;}
.x7c_c01033{left:508.390500px;}
.x25_c01033{left:510.307356px;}
.x76_c01033{left:511.708500px;}
.x5a_c01033{left:513.000000px;}
.x37_c01033{left:514.350000px;}
.x7d_c01033{left:527.238000px;}
.x53_c01033{left:533.537477px;}
.x84_c01033{left:536.230500px;}
.x62_c01033{left:539.449590px;}
.x85_c01033{left:548.370000px;}
.x1e_c01033{left:553.236382px;}
.x89_c01033{left:563.922780px;}
.x15_c01033{left:573.758596px;}
.x8a_c01033{left:586.970977px;}
.x49_c01033{left:588.600000px;}
.x8d_c01033{left:609.737077px;}
.x86_c01033{left:623.337000px;}
.x8b_c01033{left:625.459125px;}
.x5f_c01033{left:631.407000px;}
.x63_c01033{left:633.101153px;}
.x40_c01033{left:634.377000px;}
.x4a_c01033{left:636.120000px;}
.x26_c01033{left:637.210572px;}
.x38_c01033{left:638.280000px;}
.xd_c01033{left:639.448500px;}
.x6a_c01033{left:648.436500px;}
.x41_c01033{left:650.043000px;}
.x27_c01033{left:675.820962px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls0_c01033{letter-spacing:0.000000pt;}
.ws0_c01033{word-spacing:0.000000pt;}
.fs0_c01033{font-size:45.733333pt;}
.fs1a_c01033{font-size:55.072861pt;}
.fsa_c01033{font-size:56.000000pt;}
.fs6_c01033{font-size:56.001372pt;}
.fs10_c01033{font-size:56.933333pt;}
.fs19_c01033{font-size:57.873176pt;}
.fs8_c01033{font-size:59.733333pt;}
.fs11_c01033{font-size:61.600000pt;}
.fs4_c01033{font-size:61.601509pt;}
.fs5_c01033{font-size:62.534865pt;}
.fs18_c01033{font-size:62.554466pt;}
.fs3_c01033{font-size:63.468222pt;}
.fs14_c01033{font-size:63.473806pt;}
.fs17_c01033{font-size:63.478121pt;}
.fs16_c01033{font-size:63.491541pt;}
.fs15_c01033{font-size:64.409305pt;}
.fs13_c01033{font-size:64.423470pt;}
.fsf_c01033{font-size:65.337286pt;}
.fs9_c01033{font-size:67.200000pt;}
.fs7_c01033{font-size:70.001715pt;}
.fs12_c01033{font-size:79.362245pt;}
.fsc_c01033{font-size:80.271523pt;}
.fse_c01033{font-size:81.204912pt;}
.fsb_c01033{font-size:92.400000pt;}
.fs2_c01033{font-size:96.133333pt;}
.fs1_c01033{font-size:115.733333pt;}
.fsd_c01033{font-size:125.074233pt;}
.y0_c01033{bottom:0.000000pt;}
.ya9_c01033{bottom:133.921540pt;}
.ya8_c01033{bottom:134.451227pt;}
.ya7_c01033{bottom:135.626133pt;}
.ya6_c01033{bottom:138.318087pt;}
.ya5_c01033{bottom:154.371227pt;}
.ya3_c01033{bottom:154.795273pt;}
.ya4_c01033{bottom:154.816387pt;}
.ya2_c01033{bottom:155.082353pt;}
.ya1_c01033{bottom:155.658260pt;}
.ya0_c01033{bottom:156.018493pt;}
.y9f_c01033{bottom:156.730120pt;}
.y9e_c01033{bottom:157.079907pt;}
.y9d_c01033{bottom:157.335227pt;}
.y9c_c01033{bottom:157.521667pt;}
.y9b_c01033{bottom:158.337813pt;}
.y9a_c01033{bottom:158.859153pt;}
.y99_c01033{bottom:159.305813pt;}
.y98_c01033{bottom:160.110773pt;}
.y97_c01033{bottom:174.604067pt;}
.y96_c01033{bottom:175.261067pt;}
.y95_c01033{bottom:175.603627pt;}
.y94_c01033{bottom:175.765487pt;}
.y93_c01033{bottom:176.717067pt;}
.y92_c01033{bottom:177.224727pt;}
.y91_c01033{bottom:177.988407pt;}
.y90_c01033{bottom:178.118507pt;}
.y8f_c01033{bottom:178.668187pt;}
.y8e_c01033{bottom:178.891947pt;}
.y8d_c01033{bottom:179.615807pt;}
.y8c_c01033{bottom:180.001747pt;}
.y8b_c01033{bottom:180.991747pt;}
.y8a_c01033{bottom:181.122667pt;}
.y89_c01033{bottom:214.213451pt;}
.y88_c01033{bottom:214.589341pt;}
.y87_c01033{bottom:214.649037pt;}
.y86_c01033{bottom:215.180304pt;}
.y85_c01033{bottom:216.489941pt;}
.y84_c01033{bottom:216.578099pt;}
.y83_c01033{bottom:218.173389pt;}
.y82_c01033{bottom:218.810632pt;}
.y81_c01033{bottom:219.728744pt;}
.y80_c01033{bottom:221.202667pt;}
.y7f_c01033{bottom:236.095939pt;}
.y7e_c01033{bottom:236.716529pt;}
.y7d_c01033{bottom:238.191132pt;}
.y7c_c01033{bottom:238.595680pt;}
.y7b_c01033{bottom:239.274487pt;}
.y7a_c01033{bottom:239.343317pt;}
.y79_c01033{bottom:239.540664pt;}
.y78_c01033{bottom:240.270467pt;}
.y77_c01033{bottom:240.628984pt;}
.y76_c01033{bottom:241.066744pt;}
.y75_c01033{bottom:241.331427pt;}
.y74_c01033{bottom:241.938667pt;}
.y73_c01033{bottom:259.087077pt;}
.y72_c01033{bottom:262.801333pt;}
.y71_c01033{bottom:279.484140pt;}
.y70_c01033{bottom:280.871907pt;}
.y6f_c01033{bottom:281.202137pt;}
.y6e_c01033{bottom:281.543633pt;}
.y6d_c01033{bottom:282.242469pt;}
.y6c_c01033{bottom:282.891303pt;}
.y6b_c01033{bottom:283.184881pt;}
.y6a_c01033{bottom:283.925333pt;}
.y69_c01033{bottom:302.994667pt;}
.y68_c01033{bottom:318.517407pt;}
.y67_c01033{bottom:321.547807pt;}
.y66_c01033{bottom:321.899767pt;}
.y65_c01033{bottom:322.381947pt;}
.y64_c01033{bottom:322.991187pt;}
.y63_c01033{bottom:323.632667pt;}
.y62_c01033{bottom:323.864547pt;}
.y61_c01033{bottom:324.376527pt;}
.y60_c01033{bottom:324.962667pt;}
.y5f_c01033{bottom:338.316385pt;}
.y5e_c01033{bottom:340.397235pt;}
.y5d_c01033{bottom:341.995759pt;}
.y5c_c01033{bottom:342.419949pt;}
.y5b_c01033{bottom:343.440036pt;}
.y5a_c01033{bottom:357.164079pt;}
.y59_c01033{bottom:361.188267pt;}
.y58_c01033{bottom:364.838667pt;}
.y57_c01033{bottom:384.905333pt;}
.y56_c01033{bottom:404.780000pt;}
.y54_c01033{bottom:425.124665pt;}
.y55_c01033{bottom:425.124872pt;}
.y53_c01033{bottom:465.760520pt;}
.y52_c01033{bottom:465.761139pt;}
.y50_c01033{bottom:465.761437pt;}
.y4d_c01033{bottom:465.761472pt;}
.y51_c01033{bottom:465.761663pt;}
.y4b_c01033{bottom:465.761729pt;}
.y4e_c01033{bottom:465.761884pt;}
.y4f_c01033{bottom:465.762027pt;}
.y4c_c01033{bottom:465.762076pt;}
.y48_c01033{bottom:487.966869pt;}
.y4a_c01033{bottom:487.967083pt;}
.y49_c01033{bottom:487.967384pt;}
.y45_c01033{bottom:515.520000pt;}
.y46_c01033{bottom:516.187876pt;}
.y47_c01033{bottom:519.078104pt;}
.y44_c01033{bottom:531.469333pt;}
.y43_c01033{bottom:598.798667pt;}
.y42_c01033{bottom:620.380000pt;}
.y41_c01033{bottom:620.505333pt;}
.y40_c01033{bottom:622.122667pt;}
.y3f_c01033{bottom:622.421333pt;}
.y3e_c01033{bottom:622.588000pt;}
.y3d_c01033{bottom:622.864000pt;}
.y3c_c01033{bottom:623.042667pt;}
.y3b_c01033{bottom:623.498667pt;}
.y3a_c01033{bottom:623.742667pt;}
.y39_c01033{bottom:624.240000pt;}
.y38_c01033{bottom:640.412000pt;}
.y37_c01033{bottom:660.471855pt;}
.y36_c01033{bottom:661.299992pt;}
.y35_c01033{bottom:661.733469pt;}
.y34_c01033{bottom:661.945224pt;}
.y33_c01033{bottom:662.099793pt;}
.y32_c01033{bottom:662.452640pt;}
.y31_c01033{bottom:662.592061pt;}
.y30_c01033{bottom:662.798487pt;}
.y2f_c01033{bottom:662.932859pt;}
.y2e_c01033{bottom:663.110939pt;}
.y2d_c01033{bottom:663.356387pt;}
.y2c_c01033{bottom:682.618720pt;}
.y2b_c01033{bottom:682.618951pt;}
.y2a_c01033{bottom:682.619199pt;}
.y29_c01033{bottom:682.619776pt;}
.y25_c01033{bottom:682.619961pt;}
.y23_c01033{bottom:682.620059pt;}
.y28_c01033{bottom:682.620113pt;}
.y24_c01033{bottom:682.620405pt;}
.y26_c01033{bottom:682.620424pt;}
.y22_c01033{bottom:682.620432pt;}
.y27_c01033{bottom:682.620477pt;}
.y21_c01033{bottom:682.621072pt;}
.y1a_c01033{bottom:703.942999pt;}
.y1b_c01033{bottom:703.943372pt;}
.y1e_c01033{bottom:703.943391pt;}
.y19_c01033{bottom:703.943496pt;}
.y20_c01033{bottom:703.943552pt;}
.y1c_c01033{bottom:703.943595pt;}
.y1f_c01033{bottom:703.943809pt;}
.y17_c01033{bottom:703.943851pt;}
.y1d_c01033{bottom:703.943871pt;}
.y18_c01033{bottom:703.943993pt;}
.y10_c01033{bottom:723.906440pt;}
.yf_c01033{bottom:723.906884pt;}
.ye_c01033{bottom:723.907088pt;}
.y11_c01033{bottom:723.907089pt;}
.y14_c01033{bottom:723.907171pt;}
.y13_c01033{bottom:723.907188pt;}
.y12_c01033{bottom:723.907472pt;}
.y15_c01033{bottom:723.907767pt;}
.y16_c01033{bottom:723.908229pt;}
.yd_c01033{bottom:742.789308pt;}
.yc_c01033{bottom:743.845421pt;}
.yb_c01033{bottom:743.971253pt;}
.ya_c01033{bottom:744.386419pt;}
.y9_c01033{bottom:744.561409pt;}
.y8_c01033{bottom:744.906024pt;}
.y7_c01033{bottom:745.055115pt;}
.y6_c01033{bottom:745.204681pt;}
.y5_c01033{bottom:745.483496pt;}
.y4_c01033{bottom:745.680000pt;}
.y3_c01033{bottom:783.857333pt;}
.y2_c01033{bottom:819.285333pt;}
.y1_c01033{bottom:836.160000pt;}
.h2_c01033{height:45.733333pt;}
.h1c_c01033{height:55.072861pt;}
.hc_c01033{height:56.000000pt;}
.h8_c01033{height:56.001372pt;}
.h12_c01033{height:56.933333pt;}
.h1b_c01033{height:57.873176pt;}
.ha_c01033{height:59.733333pt;}
.h13_c01033{height:61.600000pt;}
.h6_c01033{height:61.601509pt;}
.h7_c01033{height:62.534865pt;}
.h1a_c01033{height:62.554466pt;}
.h5_c01033{height:63.468222pt;}
.h16_c01033{height:63.473806pt;}
.h19_c01033{height:63.478121pt;}
.h18_c01033{height:63.491541pt;}
.h17_c01033{height:64.409305pt;}
.h15_c01033{height:64.423470pt;}
.h11_c01033{height:65.337286pt;}
.hb_c01033{height:67.200000pt;}
.h9_c01033{height:70.001715pt;}
.h14_c01033{height:79.362245pt;}
.he_c01033{height:80.271523pt;}
.h10_c01033{height:81.204912pt;}
.hd_c01033{height:92.400000pt;}
.h4_c01033{height:96.133333pt;}
.h3_c01033{height:115.733333pt;}
.hf_c01033{height:125.074233pt;}
.h0_c01033{height:896.400000pt;}
.h1_c01033{height:896.666667pt;}
.w1_c01033{width:622.666667pt;}
.w0_c01033{width:622.800000pt;}
.x0_c01033{left:0.000000pt;}
.x87_c01033{left:114.558447pt;}
.x7e_c01033{left:119.504000pt;}
.x4c_c01033{left:124.793021pt;}
.x7f_c01033{left:128.232000pt;}
.x2_c01033{left:136.560000pt;}
.x71_c01033{left:142.293333pt;}
.x64_c01033{left:146.704000pt;}
.x39_c01033{left:148.957333pt;}
.x54_c01033{left:150.480000pt;}
.x16_c01033{left:153.838449pt;}
.x5_c01033{left:155.442667pt;}
.x4e_c01033{left:170.636128pt;}
.x88_c01033{left:176.490973pt;}
.x1f_c01033{left:178.559737pt;}
.x4f_c01033{left:179.517199pt;}
.x6_c01033{left:183.514667pt;}
.x65_c01033{left:185.780000pt;}
.x28_c01033{left:189.303704pt;}
.x17_c01033{left:193.439057pt;}
.x20_c01033{left:197.280652pt;}
.x42_c01033{left:199.200000pt;}
.x31_c01033{left:204.480000pt;}
.xe_c01033{left:206.880783pt;}
.x55_c01033{left:211.200000pt;}
.x29_c01033{left:214.743704pt;}
.x73_c01033{left:216.270667pt;}
.x66_c01033{left:219.912000pt;}
.x21_c01033{left:221.041819pt;}
.x7_c01033{left:223.345333pt;}
.x3_c01033{left:225.360000pt;}
.x3a_c01033{left:231.268000pt;}
.x18_c01033{left:232.559637pt;}
.x2a_c01033{left:233.939704pt;}
.x67_c01033{left:235.370667pt;}
.x32_c01033{left:239.280000pt;}
.x4b_c01033{left:240.728000pt;}
.x48_c01033{left:243.600000pt;}
.x8_c01033{left:244.712000pt;}
.x5b_c01033{left:250.080000pt;}
.x56_c01033{left:253.200000pt;}
.x43_c01033{left:255.600000pt;}
.xf_c01033{left:257.041904pt;}
.x22_c01033{left:259.202352pt;}
.x2b_c01033{left:263.429037pt;}
.x9_c01033{left:266.010667pt;}
.x80_c01033{left:268.218667pt;}
.x57_c01033{left:272.880000pt;}
.x33_c01033{left:273.840000pt;}
.x72_c01033{left:274.945333pt;}
.x5d_c01033{left:277.006667pt;}
.x68_c01033{left:278.136000pt;}
.x10_c01033{left:281.043080pt;}
.x3b_c01033{left:281.952000pt;}
.x2c_c01033{left:283.346371pt;}
.x6b_c01033{left:285.600000pt;}
.x44_c01033{left:287.040000pt;}
.x50_c01033{left:288.725080pt;}
.x5c_c01033{left:290.400000pt;}
.x77_c01033{left:291.841333pt;}
.x23_c01033{left:293.042680pt;}
.x19_c01033{left:295.681393pt;}
.x1_c01033{left:300.720000pt;}
.x3c_c01033{left:301.846667pt;}
.x6c_c01033{left:303.840000pt;}
.x6e_c01033{left:306.518667pt;}
.x1a_c01033{left:312.962243pt;}
.xa_c01033{left:315.241333pt;}
.x78_c01033{left:316.350667pt;}
.x69_c01033{left:318.752000pt;}
.x81_c01033{left:319.781333pt;}
.x34_c01033{left:321.360000pt;}
.x74_c01033{left:323.286667pt;}
.x6f_c01033{left:325.944000pt;}
.x82_c01033{left:328.454667pt;}
.x11_c01033{left:329.524127pt;}
.x3d_c01033{left:332.560000pt;}
.x2d_c01033{left:333.753037pt;}
.x6d_c01033{left:338.160000pt;}
.x4_c01033{left:340.080000pt;}
.x1b_c01033{left:345.122487pt;}
.x51_c01033{left:347.048135pt;}
.x3e_c01033{left:351.038667pt;}
.x2e_c01033{left:355.834371pt;}
.x60_c01033{left:357.820195pt;}
.x12_c01033{left:358.804231pt;}
.x35_c01033{left:370.080000pt;}
.x58_c01033{left:371.040000pt;}
.x45_c01033{left:374.160000pt;}
.x79_c01033{left:377.708000pt;}
.x83_c01033{left:379.366667pt;}
.x7a_c01033{left:381.098667pt;}
.x3f_c01033{left:384.153333pt;}
.x2f_c01033{left:386.085037pt;}
.x1c_c01033{left:388.323272pt;}
.x24_c01033{left:395.045007pt;}
.x61_c01033{left:398.615724pt;}
.xb_c01033{left:399.549333pt;}
.x13_c01033{left:406.085212pt;}
.x70_c01033{left:407.577333pt;}
.x1d_c01033{left:408.964280pt;}
.x52_c01033{left:409.931747pt;}
.x8c_c01033{left:410.833907pt;}
.x5e_c01033{left:412.206667pt;}
.x36_c01033{left:414.000000pt;}
.x46_c01033{left:414.960000pt;}
.xc_c01033{left:417.525333pt;}
.x75_c01033{left:422.189333pt;}
.x59_c01033{left:428.400000pt;}
.x4d_c01033{left:430.331315pt;}
.x7b_c01033{left:431.469333pt;}
.x14_c01033{left:436.565372pt;}
.x30_c01033{left:448.010371pt;}
.x47_c01033{left:450.720000pt;}
.x7c_c01033{left:451.902667pt;}
.x25_c01033{left:453.606539pt;}
.x76_c01033{left:454.852000pt;}
.x5a_c01033{left:456.000000pt;}
.x37_c01033{left:457.200000pt;}
.x7d_c01033{left:468.656000pt;}
.x53_c01033{left:474.255535pt;}
.x84_c01033{left:476.649333pt;}
.x62_c01033{left:479.510747pt;}
.x85_c01033{left:487.440000pt;}
.x1e_c01033{left:491.765673pt;}
.x89_c01033{left:501.264693pt;}
.x15_c01033{left:510.007641pt;}
.x8a_c01033{left:521.751980pt;}
.x49_c01033{left:523.200000pt;}
.x8d_c01033{left:541.988513pt;}
.x86_c01033{left:554.077333pt;}
.x8b_c01033{left:555.963667pt;}
.x5f_c01033{left:561.250667pt;}
.x63_c01033{left:562.756580pt;}
.x40_c01033{left:563.890667pt;}
.x4a_c01033{left:565.440000pt;}
.x26_c01033{left:566.409397pt;}
.x38_c01033{left:567.360000pt;}
.xd_c01033{left:568.398667pt;}
.x6a_c01033{left:576.388000pt;}
.x41_c01033{left:577.816000pt;}
.x27_c01033{left:600.729744pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c01034{transform:matrix(0.006925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006925,0.000000,0.000000,0.250000,0,0);}
.m92_c01034{transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008080,0.000000,0.000000,0.250000,0,0);}
.m1d_c01034{transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009570,0.000000,0.000000,0.250000,0,0);}
.m39_c01034{transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010245,0.000000,0.000000,0.250000,0,0);}
.m50_c01034{transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010780,0.000000,0.000000,0.250000,0,0);}
.m27_c01034{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m47_c01034{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m68_c01034{transform:matrix(0.012605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012605,0.000000,0.000000,0.250000,0,0);}
.m6a_c01034{transform:matrix(0.013190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013190,0.000000,0.000000,0.250000,0,0);}
.m9a_c01034{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);}
.m8e_c01034{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);}
.m93_c01034{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);}
.m90_c01034{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);}
.mda_c01034{transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018810,0.000000,0.000000,0.250000,0,0);}
.ma2_c01034{transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025365,0.000000,0.000000,0.250000,0,0);}
.m6e_c01034{transform:matrix(0.046375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046375,0.000000,0.000000,0.250000,0,0);}
.m26_c01034{transform:matrix(0.074845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074845,0.000000,0.000000,0.250000,0,0);}
.m23_c01034{transform:matrix(0.110870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110870,0.000000,0.000000,0.250000,0,0);}
.m84_c01034{transform:matrix(0.111760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111760,0.000000,0.000000,0.250000,0,0);}
.m2e_c01034{transform:matrix(0.117795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117795,0.000000,0.000000,0.250000,0,0);}
.m2d_c01034{transform:matrix(0.130680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130680,0.000000,0.000000,0.250000,0,0);}
.m34_c01034{transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);}
.md6_c01034{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);}
.m40_c01034{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);}
.md_c01034{transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144490,0.000000,0.000000,0.250000,0,0);}
.mb8_c01034{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);}
.m4_c01034{transform:matrix(0.150037,-0.001500,0.002500,0.249988,0,0);-ms-transform:matrix(0.150037,-0.001500,0.002500,0.249988,0,0);-webkit-transform:matrix(0.150037,-0.001500,0.002500,0.249988,0,0);}
.m21_c01034{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);}
.m64_c01034{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);}
.m42_c01034{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);}
.m1a_c01034{transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);}
.m63_c01034{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);}
.maa_c01034{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);}
.m16_c01034{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);}
.m62_c01034{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m60_c01034{transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160045,0.000000,0.000000,0.250000,0,0);}
.m58_c01034{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);}
.m65_c01034{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);}
.m14_c01034{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);}
.me_c01034{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);}
.mcd_c01034{transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);}
.m53_c01034{transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163595,0.000000,0.000000,0.250000,0,0);}
.m7f_c01034{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);}
.mb4_c01034{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);}
.m31_c01034{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);}
.m18_c01034{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);}
.m97_c01034{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);}
.mce_c01034{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);}
.mc7_c01034{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);}
.mcc_c01034{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);}
.mab_c01034{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);}
.m56_c01034{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);}
.ma9_c01034{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);}
.ma7_c01034{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);}
.mac_c01034{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);}
.mb1_c01034{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);}
.m89_c01034{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);}
.m1b_c01034{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);}
.m77_c01034{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);}
.m3c_c01034{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);}
.m11_c01034{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);}
.m8d_c01034{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);}
.m5f_c01034{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);}
.md5_c01034{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);}
.mf_c01034{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);}
.m20_c01034{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);}
.m57_c01034{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);}
.m3f_c01034{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);}
.m15_c01034{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);}
.m7e_c01034{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);}
.m9f_c01034{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);}
.md1_c01034{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);}
.mbd_c01034{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);}
.m55_c01034{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);}
.mcb_c01034{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.md8_c01034{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);}
.mb_c01034{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);}
.m52_c01034{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);}
.m61_c01034{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);}
.ma_c01034{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);}
.m3_c01034{transform:matrix(0.190965,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190965,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190965,-0.001910,0.002500,0.249988,0,0);}
.m29_c01034{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);}
.ma8_c01034{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);}
.m3b_c01034{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);}
.m98_c01034{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);}
.m70_c01034{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);}
.md0_c01034{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);}
.m8c_c01034{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);}
.m10_c01034{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);}
.m13_c01034{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);}
.m25_c01034{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);}
.mad_c01034{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);}
.mbb_c01034{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);}
.m7d_c01034{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);}
.m3e_c01034{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_c01034{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);}
.md3_c01034{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);}
.m6f_c01034{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);}
.m7a_c01034{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);}
.mb9_c01034{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);}
.md4_c01034{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);}
.m82_c01034{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);}
.m81_c01034{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);}
.m75_c01034{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);}
.mc6_c01034{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);}
.mc5_c01034{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);}
.md2_c01034{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);}
.m7_c01034{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);}
.mbe_c01034{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);}
.m45_c01034{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.mb2_c01034{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);}
.m88_c01034{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);}
.m12_c01034{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);}
.m51_c01034{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);}
.md7_c01034{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);}
.ma6_c01034{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);}
.m99_c01034{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);}
.m8a_c01034{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);}
.mae_c01034{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);}
.m5e_c01034{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);}
.m5b_c01034{transform:matrix(0.216468,-0.004762,0.005499,0.249940,0,0);-ms-transform:matrix(0.216468,-0.004762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216468,-0.004762,0.005499,0.249940,0,0);}
.m96_c01034{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);}
.m9e_c01034{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);}
.m80_c01034{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);}
.m83_c01034{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);}
.m94_c01034{transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222345,0.000000,0.000000,0.250000,0,0);}
.mbf_c01034{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);}
.mc4_c01034{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);}
.m54_c01034{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);}
.m7b_c01034{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.mb5_c01034{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);}
.m28_c01034{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);}
.mb3_c01034{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);}
.m78_c01034{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);}
.m95_c01034{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);}
.m85_c01034{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);}
.m41_c01034{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);}
.m44_c01034{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);}
.mcf_c01034{transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234245,0.000000,0.000000,0.250000,0,0);}
.m71_c01034{transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);}
.m7c_c01034{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);}
.m2c_c01034{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);}
.m5_c01034{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);}
.m32_c01034{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);}
.m66_c01034{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);}
.mca_c01034{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.mba_c01034{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);}
.ma0_c01034{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);}
.mc2_c01034{transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);}
.mb0_c01034{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);}
.m6_c01034{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);}
.m76_c01034{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);}
.mc0_c01034{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);}
.m69_c01034{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);}
.mb6_c01034{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);}
.mb7_c01034{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m73_c01034{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.m5d_c01034{transform:matrix(0.249135,-0.005481,0.005499,0.249940,0,0);-ms-transform:matrix(0.249135,-0.005481,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249135,-0.005481,0.005499,0.249940,0,0);}
.m24_c01034{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);}
.m87_c01034{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);}
.m2f_c01034{transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);}
.ma1_c01034{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_c01034{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);}
.m48_c01034{transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);}
.m4d_c01034{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);}
.m1f_c01034{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);}
.m30_c01034{transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);}
.mdc_c01034{transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);}
.m4f_c01034{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);}
.m19_c01034{transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290980,0.000000,0.000000,0.250000,0,0);}
.m38_c01034{transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);}
.md9_c01034{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);}
.mc9_c01034{transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299650,0.000000,0.000000,0.250000,0,0);}
.m91_c01034{transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300220,0.000000,0.000000,0.250000,0,0);}
.m4b_c01034{transform:matrix(0.304203,0.002129,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304203,0.002129,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304203,0.002129,-0.001750,0.249994,0,0);}
.mbc_c01034{transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305615,0.000000,0.000000,0.250000,0,0);}
.m4c_c01034{transform:matrix(0.309127,0.002164,-0.001750,0.249994,0,0);-ms-transform:matrix(0.309127,0.002164,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.309127,0.002164,-0.001750,0.249994,0,0);}
.m43_c01034{transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314940,0.000000,0.000000,0.250000,0,0);}
.m67_c01034{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);}
.m4a_c01034{transform:matrix(0.321422,0.002250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.321422,0.002250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.321422,0.002250,-0.001750,0.249994,0,0);}
.m22_c01034{transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);}
.m8b_c01034{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);}
.m2_c01034{transform:matrix(0.334438,-0.003344,0.002500,0.249988,0,0);-ms-transform:matrix(0.334438,-0.003344,0.002500,0.249988,0,0);-webkit-transform:matrix(0.334438,-0.003344,0.002500,0.249988,0,0);}
.m3d_c01034{transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335920,0.000000,0.000000,0.250000,0,0);}
.m37_c01034{transform:matrix(0.339070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339070,0.000000,0.000000,0.250000,0,0);}
.m49_c01034{transform:matrix(0.341322,0.002389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.341322,0.002389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.341322,0.002389,-0.001750,0.249994,0,0);}
.m35_c01034{transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342355,0.000000,0.000000,0.250000,0,0);}
.ma5_c01034{transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345110,0.000000,0.000000,0.250000,0,0);}
.m5a_c01034{transform:matrix(0.345376,-0.007598,0.005499,0.249940,0,0);-ms-transform:matrix(0.345376,-0.007598,0.005499,0.249940,0,0);-webkit-transform:matrix(0.345376,-0.007598,0.005499,0.249940,0,0);}
.mc1_c01034{transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346840,0.000000,0.000000,0.250000,0,0);}
.m9c_c01034{transform:matrix(0.350215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350215,0.000000,0.000000,0.250000,0,0);}
.m9b_c01034{transform:matrix(0.353970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353970,0.000000,0.000000,0.250000,0,0);}
.maf_c01034{transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);}
.m8f_c01034{transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367570,0.000000,0.000000,0.250000,0,0);}
.m0_c01034{transform:matrix(0.372051,-0.003721,0.002500,0.249988,0,0);-ms-transform:matrix(0.372051,-0.003721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.372051,-0.003721,0.002500,0.249988,0,0);}
.m1c_c01034{transform:matrix(0.372980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372980,0.000000,0.000000,0.250000,0,0);}
.ma3_c01034{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);}
.ma4_c01034{transform:matrix(0.394385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394385,0.000000,0.000000,0.250000,0,0);}
.m46_c01034{transform:matrix(0.399990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399990,0.000000,0.000000,0.250000,0,0);}
.mc8_c01034{transform:matrix(0.400785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400785,0.000000,0.000000,0.250000,0,0);}
.m2b_c01034{transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);}
.m9d_c01034{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m8_c01034{transform:matrix(0.424105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424105,0.000000,0.000000,0.250000,0,0);}
.m36_c01034{transform:matrix(0.424335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424335,0.000000,0.000000,0.250000,0,0);}
.mc_c01034{transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440275,0.000000,0.000000,0.250000,0,0);}
.m3a_c01034{transform:matrix(0.451325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451325,0.000000,0.000000,0.250000,0,0);}
.m59_c01034{transform:matrix(0.456869,-0.010051,0.005499,0.249940,0,0);-ms-transform:matrix(0.456869,-0.010051,0.005499,0.249940,0,0);-webkit-transform:matrix(0.456869,-0.010051,0.005499,0.249940,0,0);}
.m4e_c01034{transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);}
.m74_c01034{transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467570,0.000000,0.000000,0.250000,0,0);}
.m5c_c01034{transform:matrix(0.492951,-0.010845,0.005499,0.249940,0,0);-ms-transform:matrix(0.492951,-0.010845,0.005499,0.249940,0,0);-webkit-transform:matrix(0.492951,-0.010845,0.005499,0.249940,0,0);}
.m79_c01034{transform:matrix(0.502905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502905,0.000000,0.000000,0.250000,0,0);}
.m33_c01034{transform:matrix(0.515475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01034{transform:matrix(0.515995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515995,0.000000,0.000000,0.250000,0,0);}
.m6d_c01034{transform:matrix(0.545420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545420,0.000000,0.000000,0.250000,0,0);}
.m72_c01034{transform:matrix(0.547060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547060,0.000000,0.000000,0.250000,0,0);}
.m9_c01034{transform:matrix(0.577395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577395,0.000000,0.000000,0.250000,0,0);}
.mdb_c01034{transform:matrix(0.615800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615800,0.000000,0.000000,0.250000,0,0);}
.m1_c01034{transform:matrix(0.745573,-0.007456,0.002500,0.249988,0,0);-ms-transform:matrix(0.745573,-0.007456,0.002500,0.249988,0,0);-webkit-transform:matrix(0.745573,-0.007456,0.002500,0.249988,0,0);}
.m86_c01034{transform:matrix(0.937565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937565,0.000000,0.000000,0.250000,0,0);}
.m17_c01034{transform:matrix(0.998850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01034{transform:matrix(1.458990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.458990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.458990,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:0.000000px;}
.fc0_c01034{color:transparent;}
.fs1_c01034{font-size:59.850000px;}
.fs15_c01034{font-size:60.900000px;}
.fs10_c01034{font-size:63.000000px;}
.fs9_c01034{font-size:65.101595px;}
.fs11_c01034{font-size:68.250000px;}
.fs14_c01034{font-size:69.300000px;}
.fsf_c01034{font-size:70.350000px;}
.fs3_c01034{font-size:71.400000px;}
.fs8_c01034{font-size:72.450000px;}
.fs13_c01034{font-size:73.500000px;}
.fs2_c01034{font-size:74.550000px;}
.fsb_c01034{font-size:75.600000px;}
.fs4_c01034{font-size:77.700000px;}
.fs6_c01034{font-size:84.000000px;}
.fsa_c01034{font-size:90.300000px;}
.fs7_c01034{font-size:92.400000px;}
.fs12_c01034{font-size:94.500000px;}
.fsc_c01034{font-size:96.623374px;}
.fse_c01034{font-size:110.250000px;}
.fs5_c01034{font-size:119.700000px;}
.fsd_c01034{font-size:119.728964px;}
.fs0_c01034{font-size:127.056352px;}
.y0_c01034{bottom:0.000000px;}
.y32_c01034{bottom:139.087500px;}
.y31_c01034{bottom:169.200000px;}
.y30_c01034{bottom:192.444000px;}
.y2f_c01034{bottom:214.878000px;}
.y2e_c01034{bottom:235.978500px;}
.y2d_c01034{bottom:259.116000px;}
.y2c_c01034{bottom:282.162000px;}
.y2b_c01034{bottom:305.268000px;}
.y2a_c01034{bottom:327.358500px;}
.y29_c01034{bottom:351.000000px;}
.y28_c01034{bottom:369.904500px;}
.y27_c01034{bottom:373.683000px;}
.y26_c01034{bottom:397.173000px;}
.y25_c01034{bottom:419.307000px;}
.y24_c01034{bottom:442.236000px;}
.y23_c01034{bottom:468.180000px;}
.y22_c01034{bottom:497.610000px;}
.y21_c01034{bottom:504.353106px;}
.y1d_c01034{bottom:524.616000px;}
.y1e_c01034{bottom:526.510662px;}
.y1f_c01034{bottom:529.283652px;}
.y20_c01034{bottom:532.157919px;}
.y1c_c01034{bottom:553.398000px;}
.y1b_c01034{bottom:581.884500px;}
.y1a_c01034{bottom:597.123342px;}
.y19_c01034{bottom:597.389685px;}
.y18_c01034{bottom:598.188420px;}
.y17_c01034{bottom:600.391005px;}
.y16_c01034{bottom:600.750000px;}
.y15_c01034{bottom:622.107000px;}
.y14_c01034{bottom:648.306000px;}
.y13_c01034{bottom:672.646500px;}
.y12_c01034{bottom:675.741000px;}
.y11_c01034{bottom:677.137500px;}
.y10_c01034{bottom:677.728500px;}
.yf_c01034{bottom:677.991000px;}
.ye_c01034{bottom:678.640500px;}
.yd_c01034{bottom:698.721000px;}
.yc_c01034{bottom:726.328500px;}
.yb_c01034{bottom:755.589000px;}
.ya_c01034{bottom:784.092000px;}
.y9_c01034{bottom:806.971500px;}
.y8_c01034{bottom:827.193000px;}
.y1_c01034{bottom:852.486000px;}
.y2_c01034{bottom:853.710735px;}
.y3_c01034{bottom:853.951995px;}
.y4_c01034{bottom:854.815500px;}
.y5_c01034{bottom:856.133190px;}
.y7_c01034{bottom:877.230000px;}
.y6_c01034{bottom:881.280000px;}
.h3_c01034{height:59.850000px;}
.h17_c01034{height:60.900000px;}
.h12_c01034{height:63.000000px;}
.hb_c01034{height:65.101595px;}
.h13_c01034{height:68.250000px;}
.h16_c01034{height:69.300000px;}
.h11_c01034{height:70.350000px;}
.h5_c01034{height:71.400000px;}
.ha_c01034{height:72.450000px;}
.h15_c01034{height:73.500000px;}
.h4_c01034{height:74.550000px;}
.hd_c01034{height:75.600000px;}
.h6_c01034{height:77.700000px;}
.h8_c01034{height:84.000000px;}
.hc_c01034{height:90.300000px;}
.h9_c01034{height:92.400000px;}
.h14_c01034{height:94.500000px;}
.he_c01034{height:96.623374px;}
.h10_c01034{height:110.250000px;}
.h7_c01034{height:119.700000px;}
.hf_c01034{height:119.728964px;}
.h2_c01034{height:127.056352px;}
.h1_c01034{height:1005.000000px;}
.h0_c01034{height:1005.150000px;}
.w0_c01034{width:715.200000px;}
.w1_c01034{width:715.500000px;}
.x0_c01034{left:0.000000px;}
.x8_c01034{left:54.810000px;}
.xa_c01034{left:61.290000px;}
.x6_c01034{left:77.760000px;}
.x6c_c01034{left:99.360000px;}
.x57_c01034{left:100.440000px;}
.x62_c01034{left:106.650000px;}
.xb_c01034{left:107.730000px;}
.x5a_c01034{left:112.590000px;}
.x2c_c01034{left:114.765000px;}
.x27_c01034{left:117.720000px;}
.x7e_c01034{left:123.930000px;}
.x1f_c01034{left:125.010000px;}
.x76_c01034{left:126.630000px;}
.x9f_c01034{left:133.920000px;}
.x93_c01034{left:136.890000px;}
.x6d_c01034{left:142.020000px;}
.x1d_c01034{left:143.370000px;}
.x8a_c01034{left:145.260000px;}
.x43_c01034{left:148.770000px;}
.x9a_c01034{left:150.930000px;}
.x84_c01034{left:152.280000px;}
.x7f_c01034{left:153.630000px;}
.xa0_c01034{left:155.520000px;}
.x3f_c01034{left:158.379000px;}
.xc_c01034{left:159.570000px;}
.x63_c01034{left:161.190000px;}
.x77_c01034{left:162.810000px;}
.x19_c01034{left:165.510000px;}
.x35_c01034{left:167.400000px;}
.x2d_c01034{left:168.877500px;}
.x58_c01034{left:172.530000px;}
.x9b_c01034{left:178.470000px;}
.x4d_c01034{left:180.360000px;}
.x94_c01034{left:181.710000px;}
.xd_c01034{left:182.790000px;}
.x1_c01034{left:184.633500px;}
.x8b_c01034{left:188.460000px;}
.x2e_c01034{left:190.747500px;}
.x78_c01034{left:193.590000px;}
.x64_c01034{left:197.370000px;}
.x1a_c01034{left:198.450000px;}
.x85_c01034{left:202.770000px;}
.x4e_c01034{left:207.360000px;}
.x48_c01034{left:208.440000px;}
.x5b_c01034{left:210.330000px;}
.x36_c01034{left:211.410000px;}
.x6e_c01034{left:214.380000px;}
.x95_c01034{left:218.700000px;}
.x20_c01034{left:221.400000px;}
.x8c_c01034{left:222.480000px;}
.xe_c01034{left:225.180000px;}
.x4f_c01034{left:232.470000px;}
.x80_c01034{left:236.250000px;}
.x2f_c01034{left:240.004500px;}
.x1b_c01034{left:241.110000px;}
.x5c_c01034{left:243.810000px;}
.x7a_c01034{left:246.510000px;}
.xf_c01034{left:248.670000px;}
.x50_c01034{left:251.370000px;}
.x96_c01034{left:252.720000px;}
.x65_c01034{left:254.340000px;}
.x79_c01034{left:256.230000px;}
.x49_c01034{left:259.740000px;}
.x21_c01034{left:265.410000px;}
.x10_c01034{left:267.840000px;}
.x37_c01034{left:271.080000px;}
.x31_c01034{left:273.240000px;}
.x8d_c01034{left:275.130000px;}
.x22_c01034{left:278.100000px;}
.x74_c01034{left:280.318500px;}
.x81_c01034{left:285.120000px;}
.x44_c01034{left:288.900000px;}
.x1e_c01034{left:289.980000px;}
.x28_c01034{left:295.110000px;}
.x89_c01034{left:296.460000px;}
.x51_c01034{left:297.540000px;}
.x59_c01034{left:299.160000px;}
.x7b_c01034{left:303.750000px;}
.x2_c01034{left:307.107000px;}
.x11_c01034{left:310.500000px;}
.x38_c01034{left:313.200000px;}
.x8e_c01034{left:315.630000px;}
.x97_c01034{left:321.300000px;}
.xa1_c01034{left:324.000000px;}
.x3_c01034{left:331.233000px;}
.x9c_c01034{left:332.640000px;}
.x5d_c01034{left:336.150000px;}
.x52_c01034{left:338.580000px;}
.x32_c01034{left:340.740000px;}
.x4a_c01034{left:344.520000px;}
.x82_c01034{left:346.680000px;}
.x12_c01034{left:350.460000px;}
.x39_c01034{left:351.540000px;}
.x9d_c01034{left:354.240000px;}
.x30_c01034{left:356.343000px;}
.x33_c01034{left:359.370000px;}
.x7c_c01034{left:361.800000px;}
.x98_c01034{left:363.420000px;}
.x83_c01034{left:367.200000px;}
.x53_c01034{left:373.140000px;}
.x6f_c01034{left:377.730000px;}
.x7d_c01034{left:381.510000px;}
.x66_c01034{left:382.860000px;}
.x86_c01034{left:385.830000px;}
.x4b_c01034{left:386.910000px;}
.x13_c01034{left:389.070000px;}
.x23_c01034{left:390.150000px;}
.x54_c01034{left:394.740000px;}
.x67_c01034{left:407.160000px;}
.x4_c01034{left:417.583500px;}
.x5e_c01034{left:419.580000px;}
.x87_c01034{left:422.280000px;}
.x3b_c01034{left:426.330000px;}
.x3a_c01034{left:427.410000px;}
.x45_c01034{left:435.240000px;}
.x99_c01034{left:436.590000px;}
.x8f_c01034{left:437.670000px;}
.x70_c01034{left:441.180000px;}
.x68_c01034{left:443.070000px;}
.x3c_c01034{left:444.690000px;}
.x14_c01034{left:450.090000px;}
.x29_c01034{left:452.250000px;}
.x24_c01034{left:454.680000px;}
.x55_c01034{left:461.970000px;}
.x90_c01034{left:465.750000px;}
.x88_c01034{left:469.800000px;}
.x40_c01034{left:473.034000px;}
.x5f_c01034{left:477.630000px;}
.x25_c01034{left:480.060000px;}
.x4c_c01034{left:483.255000px;}
.x15_c01034{left:497.340000px;}
.x69_c01034{left:501.930000px;}
.x2a_c01034{left:503.820000px;}
.x46_c01034{left:507.330000px;}
.x34_c01034{left:511.110000px;}
.x9e_c01034{left:514.080000px;}
.x16_c01034{left:520.560000px;}
.x91_c01034{left:521.910000px;}
.x3d_c01034{left:525.150000px;}
.x56_c01034{left:527.580000px;}
.x92_c01034{left:532.980000px;}
.x6a_c01034{left:541.620000px;}
.x5_c01034{left:549.352500px;}
.x6b_c01034{left:556.470000px;}
.x71_c01034{left:557.820000px;}
.x60_c01034{left:563.760000px;}
.x61_c01034{left:567.000000px;}
.x17_c01034{left:574.290000px;}
.x2b_c01034{left:583.740000px;}
.x18_c01034{left:585.360000px;}
.x41_c01034{left:587.139000px;}
.x72_c01034{left:611.820000px;}
.x9_c01034{left:613.170000px;}
.x26_c01034{left:614.790000px;}
.x47_c01034{left:618.840000px;}
.x75_c01034{left:623.764500px;}
.x42_c01034{left:625.188000px;}
.x1c_c01034{left:626.400000px;}
.x7_c01034{left:628.830000px;}
.x73_c01034{left:634.770000px;}
.x3e_c01034{left:637.740000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws0_c01034{word-spacing:0.000000pt;}
.fs1_c01034{font-size:53.200000pt;}
.fs15_c01034{font-size:54.133333pt;}
.fs10_c01034{font-size:56.000000pt;}
.fs9_c01034{font-size:57.868084pt;}
.fs11_c01034{font-size:60.666667pt;}
.fs14_c01034{font-size:61.600000pt;}
.fsf_c01034{font-size:62.533333pt;}
.fs3_c01034{font-size:63.466667pt;}
.fs8_c01034{font-size:64.400000pt;}
.fs13_c01034{font-size:65.333333pt;}
.fs2_c01034{font-size:66.266667pt;}
.fsb_c01034{font-size:67.200000pt;}
.fs4_c01034{font-size:69.066667pt;}
.fs6_c01034{font-size:74.666667pt;}
.fsa_c01034{font-size:80.266667pt;}
.fs7_c01034{font-size:82.133333pt;}
.fs12_c01034{font-size:84.000000pt;}
.fsc_c01034{font-size:85.887444pt;}
.fse_c01034{font-size:98.000000pt;}
.fs5_c01034{font-size:106.400000pt;}
.fsd_c01034{font-size:106.425746pt;}
.fs0_c01034{font-size:112.938980pt;}
.y0_c01034{bottom:0.000000pt;}
.y32_c01034{bottom:123.633333pt;}
.y31_c01034{bottom:150.400000pt;}
.y30_c01034{bottom:171.061333pt;}
.y2f_c01034{bottom:191.002667pt;}
.y2e_c01034{bottom:209.758667pt;}
.y2d_c01034{bottom:230.325333pt;}
.y2c_c01034{bottom:250.810667pt;}
.y2b_c01034{bottom:271.349333pt;}
.y2a_c01034{bottom:290.985333pt;}
.y29_c01034{bottom:312.000000pt;}
.y28_c01034{bottom:328.804000pt;}
.y27_c01034{bottom:332.162667pt;}
.y26_c01034{bottom:353.042667pt;}
.y25_c01034{bottom:372.717333pt;}
.y24_c01034{bottom:393.098667pt;}
.y23_c01034{bottom:416.160000pt;}
.y22_c01034{bottom:442.320000pt;}
.y21_c01034{bottom:448.313872pt;}
.y1d_c01034{bottom:466.325333pt;}
.y1e_c01034{bottom:468.009477pt;}
.y1f_c01034{bottom:470.474357pt;}
.y20_c01034{bottom:473.029261pt;}
.y1c_c01034{bottom:491.909333pt;}
.y1b_c01034{bottom:517.230667pt;}
.y1a_c01034{bottom:530.776304pt;}
.y19_c01034{bottom:531.013053pt;}
.y18_c01034{bottom:531.723040pt;}
.y17_c01034{bottom:533.680893pt;}
.y16_c01034{bottom:534.000000pt;}
.y15_c01034{bottom:552.984000pt;}
.y14_c01034{bottom:576.272000pt;}
.y13_c01034{bottom:597.908000pt;}
.y12_c01034{bottom:600.658667pt;}
.y11_c01034{bottom:601.900000pt;}
.y10_c01034{bottom:602.425333pt;}
.yf_c01034{bottom:602.658667pt;}
.ye_c01034{bottom:603.236000pt;}
.yd_c01034{bottom:621.085333pt;}
.yc_c01034{bottom:645.625333pt;}
.yb_c01034{bottom:671.634667pt;}
.ya_c01034{bottom:696.970667pt;}
.y9_c01034{bottom:717.308000pt;}
.y8_c01034{bottom:735.282667pt;}
.y1_c01034{bottom:757.765333pt;}
.y2_c01034{bottom:758.853987pt;}
.y3_c01034{bottom:759.068440pt;}
.y4_c01034{bottom:759.836000pt;}
.y5_c01034{bottom:761.007280pt;}
.y7_c01034{bottom:779.760000pt;}
.y6_c01034{bottom:783.360000pt;}
.h3_c01034{height:53.200000pt;}
.h17_c01034{height:54.133333pt;}
.h12_c01034{height:56.000000pt;}
.hb_c01034{height:57.868084pt;}
.h13_c01034{height:60.666667pt;}
.h16_c01034{height:61.600000pt;}
.h11_c01034{height:62.533333pt;}
.h5_c01034{height:63.466667pt;}
.ha_c01034{height:64.400000pt;}
.h15_c01034{height:65.333333pt;}
.h4_c01034{height:66.266667pt;}
.hd_c01034{height:67.200000pt;}
.h6_c01034{height:69.066667pt;}
.h8_c01034{height:74.666667pt;}
.hc_c01034{height:80.266667pt;}
.h9_c01034{height:82.133333pt;}
.h14_c01034{height:84.000000pt;}
.he_c01034{height:85.887444pt;}
.h10_c01034{height:98.000000pt;}
.h7_c01034{height:106.400000pt;}
.hf_c01034{height:106.425746pt;}
.h2_c01034{height:112.938980pt;}
.h1_c01034{height:893.333333pt;}
.h0_c01034{height:893.466667pt;}
.w0_c01034{width:635.733333pt;}
.w1_c01034{width:636.000000pt;}
.x0_c01034{left:0.000000pt;}
.x8_c01034{left:48.720000pt;}
.xa_c01034{left:54.480000pt;}
.x6_c01034{left:69.120000pt;}
.x6c_c01034{left:88.320000pt;}
.x57_c01034{left:89.280000pt;}
.x62_c01034{left:94.800000pt;}
.xb_c01034{left:95.760000pt;}
.x5a_c01034{left:100.080000pt;}
.x2c_c01034{left:102.013333pt;}
.x27_c01034{left:104.640000pt;}
.x7e_c01034{left:110.160000pt;}
.x1f_c01034{left:111.120000pt;}
.x76_c01034{left:112.560000pt;}
.x9f_c01034{left:119.040000pt;}
.x93_c01034{left:121.680000pt;}
.x6d_c01034{left:126.240000pt;}
.x1d_c01034{left:127.440000pt;}
.x8a_c01034{left:129.120000pt;}
.x43_c01034{left:132.240000pt;}
.x9a_c01034{left:134.160000pt;}
.x84_c01034{left:135.360000pt;}
.x7f_c01034{left:136.560000pt;}
.xa0_c01034{left:138.240000pt;}
.x3f_c01034{left:140.781333pt;}
.xc_c01034{left:141.840000pt;}
.x63_c01034{left:143.280000pt;}
.x77_c01034{left:144.720000pt;}
.x19_c01034{left:147.120000pt;}
.x35_c01034{left:148.800000pt;}
.x2d_c01034{left:150.113333pt;}
.x58_c01034{left:153.360000pt;}
.x9b_c01034{left:158.640000pt;}
.x4d_c01034{left:160.320000pt;}
.x94_c01034{left:161.520000pt;}
.xd_c01034{left:162.480000pt;}
.x1_c01034{left:164.118667pt;}
.x8b_c01034{left:167.520000pt;}
.x2e_c01034{left:169.553333pt;}
.x78_c01034{left:172.080000pt;}
.x64_c01034{left:175.440000pt;}
.x1a_c01034{left:176.400000pt;}
.x85_c01034{left:180.240000pt;}
.x4e_c01034{left:184.320000pt;}
.x48_c01034{left:185.280000pt;}
.x5b_c01034{left:186.960000pt;}
.x36_c01034{left:187.920000pt;}
.x6e_c01034{left:190.560000pt;}
.x95_c01034{left:194.400000pt;}
.x20_c01034{left:196.800000pt;}
.x8c_c01034{left:197.760000pt;}
.xe_c01034{left:200.160000pt;}
.x4f_c01034{left:206.640000pt;}
.x80_c01034{left:210.000000pt;}
.x2f_c01034{left:213.337333pt;}
.x1b_c01034{left:214.320000pt;}
.x5c_c01034{left:216.720000pt;}
.x7a_c01034{left:219.120000pt;}
.xf_c01034{left:221.040000pt;}
.x50_c01034{left:223.440000pt;}
.x96_c01034{left:224.640000pt;}
.x65_c01034{left:226.080000pt;}
.x79_c01034{left:227.760000pt;}
.x49_c01034{left:230.880000pt;}
.x21_c01034{left:235.920000pt;}
.x10_c01034{left:238.080000pt;}
.x37_c01034{left:240.960000pt;}
.x31_c01034{left:242.880000pt;}
.x8d_c01034{left:244.560000pt;}
.x22_c01034{left:247.200000pt;}
.x74_c01034{left:249.172000pt;}
.x81_c01034{left:253.440000pt;}
.x44_c01034{left:256.800000pt;}
.x1e_c01034{left:257.760000pt;}
.x28_c01034{left:262.320000pt;}
.x89_c01034{left:263.520000pt;}
.x51_c01034{left:264.480000pt;}
.x59_c01034{left:265.920000pt;}
.x7b_c01034{left:270.000000pt;}
.x2_c01034{left:272.984000pt;}
.x11_c01034{left:276.000000pt;}
.x38_c01034{left:278.400000pt;}
.x8e_c01034{left:280.560000pt;}
.x97_c01034{left:285.600000pt;}
.xa1_c01034{left:288.000000pt;}
.x3_c01034{left:294.429333pt;}
.x9c_c01034{left:295.680000pt;}
.x5d_c01034{left:298.800000pt;}
.x52_c01034{left:300.960000pt;}
.x32_c01034{left:302.880000pt;}
.x4a_c01034{left:306.240000pt;}
.x82_c01034{left:308.160000pt;}
.x12_c01034{left:311.520000pt;}
.x39_c01034{left:312.480000pt;}
.x9d_c01034{left:314.880000pt;}
.x30_c01034{left:316.749333pt;}
.x33_c01034{left:319.440000pt;}
.x7c_c01034{left:321.600000pt;}
.x98_c01034{left:323.040000pt;}
.x83_c01034{left:326.400000pt;}
.x53_c01034{left:331.680000pt;}
.x6f_c01034{left:335.760000pt;}
.x7d_c01034{left:339.120000pt;}
.x66_c01034{left:340.320000pt;}
.x86_c01034{left:342.960000pt;}
.x4b_c01034{left:343.920000pt;}
.x13_c01034{left:345.840000pt;}
.x23_c01034{left:346.800000pt;}
.x54_c01034{left:350.880000pt;}
.x67_c01034{left:361.920000pt;}
.x4_c01034{left:371.185333pt;}
.x5e_c01034{left:372.960000pt;}
.x87_c01034{left:375.360000pt;}
.x3b_c01034{left:378.960000pt;}
.x3a_c01034{left:379.920000pt;}
.x45_c01034{left:386.880000pt;}
.x99_c01034{left:388.080000pt;}
.x8f_c01034{left:389.040000pt;}
.x70_c01034{left:392.160000pt;}
.x68_c01034{left:393.840000pt;}
.x3c_c01034{left:395.280000pt;}
.x14_c01034{left:400.080000pt;}
.x29_c01034{left:402.000000pt;}
.x24_c01034{left:404.160000pt;}
.x55_c01034{left:410.640000pt;}
.x90_c01034{left:414.000000pt;}
.x88_c01034{left:417.600000pt;}
.x40_c01034{left:420.474667pt;}
.x5f_c01034{left:424.560000pt;}
.x25_c01034{left:426.720000pt;}
.x4c_c01034{left:429.560000pt;}
.x15_c01034{left:442.080000pt;}
.x69_c01034{left:446.160000pt;}
.x2a_c01034{left:447.840000pt;}
.x46_c01034{left:450.960000pt;}
.x34_c01034{left:454.320000pt;}
.x9e_c01034{left:456.960000pt;}
.x16_c01034{left:462.720000pt;}
.x91_c01034{left:463.920000pt;}
.x3d_c01034{left:466.800000pt;}
.x56_c01034{left:468.960000pt;}
.x92_c01034{left:473.760000pt;}
.x6a_c01034{left:481.440000pt;}
.x5_c01034{left:488.313333pt;}
.x6b_c01034{left:494.640000pt;}
.x71_c01034{left:495.840000pt;}
.x60_c01034{left:501.120000pt;}
.x61_c01034{left:504.000000pt;}
.x17_c01034{left:510.480000pt;}
.x2b_c01034{left:518.880000pt;}
.x18_c01034{left:520.320000pt;}
.x41_c01034{left:521.901333pt;}
.x72_c01034{left:543.840000pt;}
.x9_c01034{left:545.040000pt;}
.x26_c01034{left:546.480000pt;}
.x47_c01034{left:550.080000pt;}
.x75_c01034{left:554.457333pt;}
.x42_c01034{left:555.722667pt;}
.x1c_c01034{left:556.800000pt;}
.x7_c01034{left:558.960000pt;}
.x73_c01034{left:564.240000pt;}
.x3e_c01034{left:566.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_c01035 {
    display:none;
  }
  .loading-indicator_c01035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01035" -> "#page-container .classname_c01035")
 */
.pf_c01035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01035 {overflow:visible;}
  }
}
.c_c01035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01035:after { /* webkit #35443 */
  content: '';
}
.t_c01035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01035 { /* info for Javascript */
  display:none;
}
.l_c01035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.000000;font-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_c01035{transform:matrix(0.006204,0.000130,-0.005249,0.249945,0,0);-ms-transform:matrix(0.006204,0.000130,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.006204,0.000130,-0.005249,0.249945,0,0);}
.ma8_c01035{transform:matrix(0.010538,0.000200,-0.004749,0.249955,0,0);-ms-transform:matrix(0.010538,0.000200,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.010538,0.000200,-0.004749,0.249955,0,0);}
.mc5_c01035{transform:matrix(0.010652,0.000266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.010652,0.000266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.010652,0.000266,-0.006248,0.249922,0,0);}
.m9a_c01035{transform:matrix(0.013688,0.000233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.013688,0.000233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.013688,0.000233,-0.004249,0.249964,0,0);}
.mde_c01035{transform:matrix(0.018629,0.000466,-0.006248,0.249922,0,0);-ms-transform:matrix(0.018629,0.000466,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.018629,0.000466,-0.006248,0.249922,0,0);}
.mfe_c01035{transform:matrix(0.062539,0.001188,-0.004749,0.249955,0,0);-ms-transform:matrix(0.062539,0.001188,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.062539,0.001188,-0.004749,0.249955,0,0);}
.mfb_c01035{transform:matrix(0.088444,0.001680,-0.004749,0.249955,0,0);-ms-transform:matrix(0.088444,0.001680,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.088444,0.001680,-0.004749,0.249955,0,0);}
.mb4_c01035{transform:matrix(0.093436,0.002336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.093436,0.002336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.093436,0.002336,-0.006248,0.249922,0,0);}
.mfc_c01035{transform:matrix(0.106501,0.002024,-0.004749,0.249955,0,0);-ms-transform:matrix(0.106501,0.002024,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.106501,0.002024,-0.004749,0.249955,0,0);}
.m9d_c01035{transform:matrix(0.113864,0.002163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.113864,0.002163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.113864,0.002163,-0.004749,0.249955,0,0);}
.m7b_c01035{transform:matrix(0.133151,0.002264,-0.004249,0.249964,0,0);-ms-transform:matrix(0.133151,0.002264,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.133151,0.002264,-0.004249,0.249964,0,0);}
.m7c_c01035{transform:matrix(0.135805,0.002309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.135805,0.002309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.135805,0.002309,-0.004249,0.249964,0,0);}
.m61_c01035{transform:matrix(0.137540,0.002338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.137540,0.002338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.137540,0.002338,-0.004249,0.249964,0,0);}
.m7e_c01035{transform:matrix(0.141260,0.002401,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141260,0.002401,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141260,0.002401,-0.004249,0.249964,0,0);}
.m3b_c01035{transform:matrix(0.141994,0.002414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141994,0.002414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141994,0.002414,-0.004249,0.249964,0,0);}
.m116_c01035{transform:matrix(0.142119,0.002132,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142119,0.002132,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142119,0.002132,-0.003750,0.249972,0,0);}
.maa_c01035{transform:matrix(0.142785,0.003570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.142785,0.003570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.142785,0.003570,-0.006248,0.249922,0,0);}
.me3_c01035{transform:matrix(0.143947,0.003311,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143947,0.003311,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143947,0.003311,-0.005748,0.249934,0,0);}
.mfa_c01035{transform:matrix(0.143974,0.002736,-0.004749,0.249955,0,0);-ms-transform:matrix(0.143974,0.002736,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.143974,0.002736,-0.004749,0.249955,0,0);}
.me5_c01035{transform:matrix(0.144012,0.003312,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144012,0.003312,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144012,0.003312,-0.005748,0.249934,0,0);}
.mf2_c01035{transform:matrix(0.144067,0.003314,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144067,0.003314,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144067,0.003314,-0.005748,0.249934,0,0);}
.m99_c01035{transform:matrix(0.144704,0.002460,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144704,0.002460,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144704,0.002460,-0.004249,0.249964,0,0);}
.mbd_c01035{transform:matrix(0.145440,0.003636,-0.006248,0.249922,0,0);-ms-transform:matrix(0.145440,0.003636,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.145440,0.003636,-0.006248,0.249922,0,0);}
.m39_c01035{transform:matrix(0.145949,0.002481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145949,0.002481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145949,0.002481,-0.004249,0.249964,0,0);}
.m1b_c01035{transform:matrix(0.146219,0.002486,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146219,0.002486,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146219,0.002486,-0.004249,0.249964,0,0);}
.m2a_c01035{transform:matrix(0.146464,0.002490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146464,0.002490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146464,0.002490,-0.004249,0.249964,0,0);}
.mac_c01035{transform:matrix(0.147319,0.003683,-0.006248,0.249922,0,0);-ms-transform:matrix(0.147319,0.003683,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.147319,0.003683,-0.006248,0.249922,0,0);}
.mf9_c01035{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);}
.m76_c01035{transform:matrix(0.147654,0.002510,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147654,0.002510,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147654,0.002510,-0.004249,0.249964,0,0);}
.m52_c01035{transform:matrix(0.147884,0.002514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147884,0.002514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147884,0.002514,-0.004249,0.249964,0,0);}
.m67_c01035{transform:matrix(0.148169,0.002519,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148169,0.002519,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148169,0.002519,-0.004249,0.249964,0,0);}
.m63_c01035{transform:matrix(0.148239,0.002520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148239,0.002520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148239,0.002520,-0.004249,0.249964,0,0);}
.m62_c01035{transform:matrix(0.149258,0.002537,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149258,0.002537,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149258,0.002537,-0.004249,0.249964,0,0);}
.m31_c01035{transform:matrix(0.150483,0.002558,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150483,0.002558,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150483,0.002558,-0.004249,0.249964,0,0);}
.mdd_c01035{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);}
.m93_c01035{transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152723,0.002596,-0.004249,0.249964,0,0);}
.m3e_c01035{transform:matrix(0.152753,0.002597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152753,0.002597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152753,0.002597,-0.004249,0.249964,0,0);}
.m7f_c01035{transform:matrix(0.152858,0.002599,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152858,0.002599,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152858,0.002599,-0.004249,0.249964,0,0);}
.m16_c01035{transform:matrix(0.152923,0.002600,-0.004249,0.249964,0,0);-ms-transform:matrix(0.152923,0.002600,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.152923,0.002600,-0.004249,0.249964,0,0);}
.m42_c01035{transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153903,0.002616,-0.004249,0.249964,0,0);}
.m6c_c01035{transform:matrix(0.154183,0.002621,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154183,0.002621,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154183,0.002621,-0.004249,0.249964,0,0);}
.mbe_c01035{transform:matrix(0.154297,0.003857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154297,0.003857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154297,0.003857,-0.006248,0.249922,0,0);}
.m4f_c01035{transform:matrix(0.154468,0.002626,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154468,0.002626,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154468,0.002626,-0.004249,0.249964,0,0);}
.m3f_c01035{transform:matrix(0.155158,0.002638,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155158,0.002638,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155158,0.002638,-0.004249,0.249964,0,0);}
.m65_c01035{transform:matrix(0.155663,0.002646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155663,0.002646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155663,0.002646,-0.004249,0.249964,0,0);}
.m32_c01035{transform:matrix(0.156742,0.002665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156742,0.002665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156742,0.002665,-0.004249,0.249964,0,0);}
.m44_c01035{transform:matrix(0.156922,0.002668,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156922,0.002668,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156922,0.002668,-0.004249,0.249964,0,0);}
.mb5_c01035{transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157001,0.003925,-0.006248,0.249922,0,0);}
.m10d_c01035{transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);}
.m6a_c01035{transform:matrix(0.158182,0.002689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158182,0.002689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158182,0.002689,-0.004249,0.249964,0,0);}
.m56_c01035{transform:matrix(0.158777,0.002699,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158777,0.002699,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158777,0.002699,-0.004249,0.249964,0,0);}
.m88_c01035{transform:matrix(0.159352,0.002709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159352,0.002709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159352,0.002709,-0.004249,0.249964,0,0);}
.m96_c01035{transform:matrix(0.160607,0.002730,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160607,0.002730,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160607,0.002730,-0.004249,0.249964,0,0);}
.m10b_c01035{transform:matrix(0.160912,0.002414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160912,0.002414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160912,0.002414,-0.003750,0.249972,0,0);}
.m1c_c01035{transform:matrix(0.161137,0.002739,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161137,0.002739,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161137,0.002739,-0.004249,0.249964,0,0);}
.m110_c01035{transform:matrix(0.161347,0.002420,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161347,0.002420,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161347,0.002420,-0.003750,0.249972,0,0);}
.m20_c01035{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);}
.m104_c01035{transform:matrix(0.161592,0.002424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161592,0.002424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161592,0.002424,-0.003750,0.249972,0,0);}
.mc9_c01035{transform:matrix(0.161854,0.004046,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161854,0.004046,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161854,0.004046,-0.006248,0.249922,0,0);}
.m1d_c01035{transform:matrix(0.162052,0.002755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162052,0.002755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162052,0.002755,-0.004249,0.249964,0,0);}
.m98_c01035{transform:matrix(0.162147,0.002756,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162147,0.002756,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162147,0.002756,-0.004249,0.249964,0,0);}
.m70_c01035{transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162442,0.002762,-0.004249,0.249964,0,0);}
.med_c01035{transform:matrix(0.162447,0.003736,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162447,0.003736,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162447,0.003736,-0.005748,0.249934,0,0);}
.m82_c01035{transform:matrix(0.162741,0.002767,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162741,0.002767,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162741,0.002767,-0.004249,0.249964,0,0);}
.mad_c01035{transform:matrix(0.163174,0.004079,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163174,0.004079,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163174,0.004079,-0.006248,0.249922,0,0);}
.m111_c01035{transform:matrix(0.163277,0.002449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163277,0.002449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163277,0.002449,-0.003750,0.249972,0,0);}
.m45_c01035{transform:matrix(0.163436,0.002778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163436,0.002778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163436,0.002778,-0.004249,0.249964,0,0);}
.m2b_c01035{transform:matrix(0.164371,0.002794,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164371,0.002794,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164371,0.002794,-0.004249,0.249964,0,0);}
.m4b_c01035{transform:matrix(0.165186,0.002808,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165186,0.002808,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165186,0.002808,-0.004249,0.249964,0,0);}
.ma2_c01035{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);}
.m97_c01035{transform:matrix(0.165376,0.002811,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165376,0.002811,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165376,0.002811,-0.004249,0.249964,0,0);}
.m77_c01035{transform:matrix(0.165716,0.002817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165716,0.002817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165716,0.002817,-0.004249,0.249964,0,0);}
.m36_c01035{transform:matrix(0.165991,0.002822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165991,0.002822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165991,0.002822,-0.004249,0.249964,0,0);}
.mdb_c01035{transform:matrix(0.167203,0.004180,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167203,0.004180,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167203,0.004180,-0.006248,0.249922,0,0);}
.mb8_c01035{transform:matrix(0.167643,0.004191,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167643,0.004191,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167643,0.004191,-0.006248,0.249922,0,0);}
.m75_c01035{transform:matrix(0.167996,0.002856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167996,0.002856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167996,0.002856,-0.004249,0.249964,0,0);}
.m47_c01035{transform:matrix(0.168281,0.002861,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168281,0.002861,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168281,0.002861,-0.004249,0.249964,0,0);}
.m12_c01035{transform:matrix(0.168336,0.002862,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168336,0.002862,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168336,0.002862,-0.004249,0.249964,0,0);}
.m89_c01035{transform:matrix(0.168571,0.002866,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168571,0.002866,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168571,0.002866,-0.004249,0.249964,0,0);}
.m91_c01035{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);}
.mbf_c01035{transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);-ms-transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.169437,0.004236,-0.006248,0.249922,0,0);}
.m107_c01035{transform:matrix(0.169636,0.002545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169636,0.002545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169636,0.002545,-0.003750,0.249972,0,0);}
.m4e_c01035{transform:matrix(0.169920,0.002889,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169920,0.002889,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169920,0.002889,-0.004249,0.249964,0,0);}
.mae_c01035{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);}
.m103_c01035{transform:matrix(0.170591,0.002559,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170591,0.002559,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170591,0.002559,-0.003750,0.249972,0,0);}
.mee_c01035{transform:matrix(0.170960,0.003932,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170960,0.003932,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170960,0.003932,-0.005748,0.249934,0,0);}
.m14_c01035{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);}
.m9_c01035{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);}
.m6_c01035{transform:matrix(0.171780,0.002920,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171780,0.002920,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171780,0.002920,-0.004249,0.249964,0,0);}
.m10a_c01035{transform:matrix(0.172311,0.002585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172311,0.002585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172311,0.002585,-0.003750,0.249972,0,0);}
.m4d_c01035{transform:matrix(0.172555,0.002933,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172555,0.002933,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172555,0.002933,-0.004249,0.249964,0,0);}
.mc8_c01035{transform:matrix(0.172601,0.004315,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172601,0.004315,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172601,0.004315,-0.006248,0.249922,0,0);}
.m46_c01035{transform:matrix(0.172645,0.002935,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172645,0.002935,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172645,0.002935,-0.004249,0.249964,0,0);}
.mb_c01035{transform:matrix(0.172845,0.002938,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172845,0.002938,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172845,0.002938,-0.004249,0.249964,0,0);}
.m3d_c01035{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);}
.m34_c01035{transform:matrix(0.173175,0.002944,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173175,0.002944,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173175,0.002944,-0.004249,0.249964,0,0);}
.m37_c01035{transform:matrix(0.173745,0.002954,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173745,0.002954,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173745,0.002954,-0.004249,0.249964,0,0);}
.m3a_c01035{transform:matrix(0.174190,0.002961,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174190,0.002961,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174190,0.002961,-0.004249,0.249964,0,0);}
.md5_c01035{transform:matrix(0.174396,0.004360,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174396,0.004360,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174396,0.004360,-0.006248,0.249922,0,0);}
.m95_c01035{transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174830,0.002972,-0.004249,0.249964,0,0);}
.m114_c01035{transform:matrix(0.174865,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174865,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174865,0.002623,-0.003750,0.249972,0,0);}
.m26_c01035{transform:matrix(0.175045,0.002976,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175045,0.002976,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175045,0.002976,-0.004249,0.249964,0,0);}
.m86_c01035{transform:matrix(0.175095,0.002977,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175095,0.002977,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175095,0.002977,-0.004249,0.249964,0,0);}
.m108_c01035{transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175155,0.002627,-0.003750,0.249972,0,0);}
.m10c_c01035{transform:matrix(0.175355,0.002630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175355,0.002630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175355,0.002630,-0.003750,0.249972,0,0);}
.mb6_c01035{transform:matrix(0.175360,0.004384,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175360,0.004384,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175360,0.004384,-0.006248,0.249922,0,0);}
.me9_c01035{transform:matrix(0.175389,0.004034,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175389,0.004034,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175389,0.004034,-0.005748,0.249934,0,0);}
.m117_c01035{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);}
.mcf_c01035{transform:matrix(0.175750,0.004394,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175750,0.004394,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175750,0.004394,-0.006248,0.249922,0,0);}
.mea_c01035{transform:matrix(0.175958,0.004047,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175958,0.004047,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175958,0.004047,-0.005748,0.249934,0,0);}
.mc4_c01035{transform:matrix(0.176435,0.004411,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176435,0.004411,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176435,0.004411,-0.006248,0.249922,0,0);}
.m6e_c01035{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);}
.m28_c01035{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);}
.m101_c01035{transform:matrix(0.177990,0.002670,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177990,0.002670,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177990,0.002670,-0.003750,0.249972,0,0);}
.m6b_c01035{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);}
.m73_c01035{transform:matrix(0.178344,0.003032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178344,0.003032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178344,0.003032,-0.004249,0.249964,0,0);}
.mcb_c01035{transform:matrix(0.178374,0.004459,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178374,0.004459,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178374,0.004459,-0.006248,0.249922,0,0);}
.m40_c01035{transform:matrix(0.178539,0.003035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178539,0.003035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178539,0.003035,-0.004249,0.249964,0,0);}
.m6f_c01035{transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);}
.m5a_c01035{transform:matrix(0.178864,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178864,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178864,0.003041,-0.004249,0.249964,0,0);}
.mf0_c01035{transform:matrix(0.179213,0.004122,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179213,0.004122,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179213,0.004122,-0.005748,0.249934,0,0);}
.ma6_c01035{transform:matrix(0.179773,0.003416,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179773,0.003416,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179773,0.003416,-0.004749,0.249955,0,0);}
.m33_c01035{transform:matrix(0.179899,0.003058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179899,0.003058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179899,0.003058,-0.004249,0.249964,0,0);}
.m122_c01035{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);}
.m38_c01035{transform:matrix(0.180099,0.003062,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180099,0.003062,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180099,0.003062,-0.004249,0.249964,0,0);}
.m15_c01035{transform:matrix(0.180734,0.003072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180734,0.003072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180734,0.003072,-0.004249,0.249964,0,0);}
.m54_c01035{transform:matrix(0.181754,0.003090,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181754,0.003090,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181754,0.003090,-0.004249,0.249964,0,0);}
.mf1_c01035{transform:matrix(0.181852,0.004183,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181852,0.004183,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181852,0.004183,-0.005748,0.249934,0,0);}
.mdc_c01035{transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182338,0.004558,-0.006248,0.249922,0,0);}
.m8a_c01035{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);}
.md0_c01035{transform:matrix(0.182473,0.004562,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182473,0.004562,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182473,0.004562,-0.006248,0.249922,0,0);}
.m25_c01035{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);}
.m24_c01035{transform:matrix(0.183359,0.003117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183359,0.003117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183359,0.003117,-0.004249,0.249964,0,0);}
.m11_c01035{transform:matrix(0.183448,0.003119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183448,0.003119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183448,0.003119,-0.004249,0.249964,0,0);}
.m92_c01035{transform:matrix(0.183993,0.003128,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183993,0.003128,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183993,0.003128,-0.004249,0.249964,0,0);}
.m118_c01035{transform:matrix(0.184054,0.002761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184054,0.002761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184054,0.002761,-0.003750,0.249972,0,0);}
.m74_c01035{transform:matrix(0.184238,0.003132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184238,0.003132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184238,0.003132,-0.004249,0.249964,0,0);}
.mba_c01035{transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);}
.m124_c01035{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);}
.mcc_c01035{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);}
.m84_c01035{transform:matrix(0.185543,0.003154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185543,0.003154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185543,0.003154,-0.004249,0.249964,0,0);}
.m59_c01035{transform:matrix(0.185833,0.003159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185833,0.003159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185833,0.003159,-0.004249,0.249964,0,0);}
.m12a_c01035{transform:matrix(0.185959,0.002789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185959,0.002789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185959,0.002789,-0.003750,0.249972,0,0);}
.m112_c01035{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);}
.me7_c01035{transform:matrix(0.186126,0.004281,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186126,0.004281,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186126,0.004281,-0.005748,0.249934,0,0);}
.m126_c01035{transform:matrix(0.186359,0.002795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186359,0.002795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186359,0.002795,-0.003750,0.249972,0,0);}
.meb_c01035{transform:matrix(0.186861,0.004298,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186861,0.004298,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186861,0.004298,-0.005748,0.249934,0,0);}
.m1e_c01035{transform:matrix(0.186983,0.003179,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186983,0.003179,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186983,0.003179,-0.004249,0.249964,0,0);}
.me2_c01035{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_c01035{transform:matrix(0.187038,0.003180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187038,0.003180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187038,0.003180,-0.004249,0.249964,0,0);}
.m51_c01035{transform:matrix(0.187058,0.003180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187058,0.003180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187058,0.003180,-0.004249,0.249964,0,0);}
.m43_c01035{transform:matrix(0.187223,0.003183,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187223,0.003183,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187223,0.003183,-0.004249,0.249964,0,0);}
.m72_c01035{transform:matrix(0.187323,0.003184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187323,0.003184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187323,0.003184,-0.004249,0.249964,0,0);}
.m71_c01035{transform:matrix(0.187608,0.003189,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187608,0.003189,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187608,0.003189,-0.004249,0.249964,0,0);}
.m30_c01035{transform:matrix(0.187648,0.003190,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187648,0.003190,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187648,0.003190,-0.004249,0.249964,0,0);}
.mef_c01035{transform:matrix(0.187695,0.004317,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187695,0.004317,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187695,0.004317,-0.005748,0.249934,0,0);}
.m29_c01035{transform:matrix(0.187953,0.003195,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187953,0.003195,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187953,0.003195,-0.004249,0.249964,0,0);}
.m78_c01035{transform:matrix(0.188028,0.003196,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188028,0.003196,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188028,0.003196,-0.004249,0.249964,0,0);}
.m50_c01035{transform:matrix(0.188043,0.003197,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188043,0.003197,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188043,0.003197,-0.004249,0.249964,0,0);}
.mce_c01035{transform:matrix(0.188086,0.004702,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188086,0.004702,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188086,0.004702,-0.006248,0.249922,0,0);}
.m8b_c01035{transform:matrix(0.188268,0.003201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188268,0.003201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188268,0.003201,-0.004249,0.249964,0,0);}
.me6_c01035{transform:matrix(0.188580,0.004337,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188580,0.004337,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188580,0.004337,-0.005748,0.249934,0,0);}
.m102_c01035{transform:matrix(0.188774,0.002832,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188774,0.002832,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188774,0.002832,-0.003750,0.249972,0,0);}
.m10e_c01035{transform:matrix(0.188864,0.002833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188864,0.002833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188864,0.002833,-0.003750,0.249972,0,0);}
.m4c_c01035{transform:matrix(0.188893,0.003211,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188893,0.003211,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188893,0.003211,-0.004249,0.249964,0,0);}
.m5f_c01035{transform:matrix(0.189198,0.003216,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189198,0.003216,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189198,0.003216,-0.004249,0.249964,0,0);}
.m64_c01035{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);}
.m41_c01035{transform:matrix(0.189288,0.003218,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189288,0.003218,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189288,0.003218,-0.004249,0.249964,0,0);}
.m23_c01035{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);}
.m125_c01035{transform:matrix(0.190174,0.002853,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190174,0.002853,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190174,0.002853,-0.003750,0.249972,0,0);}
.m87_c01035{transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190188,0.003233,-0.004249,0.249964,0,0);}
.m35_c01035{transform:matrix(0.190362,0.003236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190362,0.003236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190362,0.003236,-0.004249,0.249964,0,0);}
.mb3_c01035{transform:matrix(0.190480,0.004762,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190480,0.004762,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190480,0.004762,-0.006248,0.249922,0,0);}
.ma5_c01035{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);}
.m100_c01035{transform:matrix(0.190644,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190644,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190644,0.002860,-0.003750,0.249972,0,0);}
.md3_c01035{transform:matrix(0.191145,0.004779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191145,0.004779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191145,0.004779,-0.006248,0.249922,0,0);}
.mb1_c01035{transform:matrix(0.191280,0.004782,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191280,0.004782,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191280,0.004782,-0.006248,0.249922,0,0);}
.mcd_c01035{transform:matrix(0.191355,0.004784,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191355,0.004784,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191355,0.004784,-0.006248,0.249922,0,0);}
.mec_c01035{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);}
.m8c_c01035{transform:matrix(0.191717,0.003259,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191717,0.003259,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191717,0.003259,-0.004249,0.249964,0,0);}
.me8_c01035{transform:matrix(0.191814,0.004412,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191814,0.004412,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191814,0.004412,-0.005748,0.249934,0,0);}
.m53_c01035{transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192742,0.003277,-0.004249,0.249964,0,0);}
.m2c_c01035{transform:matrix(0.193042,0.003282,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193042,0.003282,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193042,0.003282,-0.004249,0.249964,0,0);}
.maf_c01035{transform:matrix(0.193100,0.004827,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193100,0.004827,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193100,0.004827,-0.006248,0.249922,0,0);}
.m94_c01035{transform:matrix(0.193757,0.003294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193757,0.003294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193757,0.003294,-0.004249,0.249964,0,0);}
.m13_c01035{transform:matrix(0.193782,0.003294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193782,0.003294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193782,0.003294,-0.004249,0.249964,0,0);}
.m66_c01035{transform:matrix(0.194417,0.003305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194417,0.003305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194417,0.003305,-0.004249,0.249964,0,0);}
.m57_c01035{transform:matrix(0.194822,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194822,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194822,0.003312,-0.004249,0.249964,0,0);}
.m79_c01035{transform:matrix(0.194852,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194852,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194852,0.003312,-0.004249,0.249964,0,0);}
.m7d_c01035{transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);}
.ma_c01035{transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195037,0.003316,-0.004249,0.249964,0,0);}
.mbc_c01035{transform:matrix(0.195204,0.004880,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195204,0.004880,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195204,0.004880,-0.006248,0.249922,0,0);}
.m5d_c01035{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);}
.m85_c01035{transform:matrix(0.195522,0.003324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195522,0.003324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195522,0.003324,-0.004249,0.249964,0,0);}
.md9_c01035{transform:matrix(0.195684,0.004892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195684,0.004892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195684,0.004892,-0.006248,0.249922,0,0);}
.md2_c01035{transform:matrix(0.195759,0.004894,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195759,0.004894,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195759,0.004894,-0.006248,0.249922,0,0);}
.mb7_c01035{transform:matrix(0.195869,0.004897,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195869,0.004897,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195869,0.004897,-0.006248,0.249922,0,0);}
.m11d_c01035{transform:matrix(0.196058,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196058,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196058,0.002941,-0.003750,0.249972,0,0);}
.mca_c01035{transform:matrix(0.196094,0.004902,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196094,0.004902,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196094,0.004902,-0.006248,0.249922,0,0);}
.mb2_c01035{transform:matrix(0.196519,0.004913,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196519,0.004913,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196519,0.004913,-0.006248,0.249922,0,0);}
.m11c_c01035{transform:matrix(0.196578,0.002949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196578,0.002949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196578,0.002949,-0.003750,0.249972,0,0);}
.m11f_c01035{transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);}
.m90_c01035{transform:matrix(0.197207,0.003353,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197207,0.003353,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197207,0.003353,-0.004249,0.249964,0,0);}
.mab_c01035{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);}
.m18_c01035{transform:matrix(0.197451,0.003357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197451,0.003357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197451,0.003357,-0.004249,0.249964,0,0);}
.m7_c01035{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);}
.m1f_c01035{transform:matrix(0.198196,0.003369,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198196,0.003369,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198196,0.003369,-0.004249,0.249964,0,0);}
.m105_c01035{transform:matrix(0.198318,0.002975,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198318,0.002975,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198318,0.002975,-0.003750,0.249972,0,0);}
.m8d_c01035{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);}
.md8_c01035{transform:matrix(0.198743,0.004969,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198743,0.004969,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198743,0.004969,-0.006248,0.249922,0,0);}
.m3_c01035{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);}
.m12b_c01035{transform:matrix(0.199653,0.002995,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199653,0.002995,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199653,0.002995,-0.003750,0.249972,0,0);}
.m58_c01035{transform:matrix(0.199741,0.003396,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199741,0.003396,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199741,0.003396,-0.004249,0.249964,0,0);}
.m121_c01035{transform:matrix(0.199843,0.002998,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199843,0.002998,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199843,0.002998,-0.003750,0.249972,0,0);}
.m49_c01035{transform:matrix(0.199896,0.003398,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199896,0.003398,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199896,0.003398,-0.004249,0.249964,0,0);}
.me4_c01035{transform:matrix(0.200162,0.004604,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200162,0.004604,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200162,0.004604,-0.005748,0.249934,0,0);}
.m2e_c01035{transform:matrix(0.200796,0.003414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200796,0.003414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200796,0.003414,-0.004249,0.249964,0,0);}
.m27_c01035{transform:matrix(0.201316,0.003422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201316,0.003422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201316,0.003422,-0.004249,0.249964,0,0);}
.ma7_c01035{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);}
.md7_c01035{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);}
.m5_c01035{transform:matrix(0.202486,0.003442,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202486,0.003442,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202486,0.003442,-0.004249,0.249964,0,0);}
.ma4_c01035{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);}
.mb0_c01035{transform:matrix(0.203082,0.005077,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203082,0.005077,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203082,0.005077,-0.006248,0.249922,0,0);}
.m80_c01035{transform:matrix(0.203271,0.003456,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203271,0.003456,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203271,0.003456,-0.004249,0.249964,0,0);}
.m10_c01035{transform:matrix(0.203611,0.003461,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203611,0.003461,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203611,0.003461,-0.004249,0.249964,0,0);}
.mf4_c01035{transform:matrix(0.203636,0.004684,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203636,0.004684,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203636,0.004684,-0.005748,0.249934,0,0);}
.m8f_c01035{transform:matrix(0.203741,0.003464,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203741,0.003464,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203741,0.003464,-0.004249,0.249964,0,0);}
.mf8_c01035{transform:matrix(0.204796,0.004710,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204796,0.004710,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204796,0.004710,-0.005748,0.249934,0,0);}
.md_c01035{transform:matrix(0.205095,0.003487,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205095,0.003487,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205095,0.003487,-0.004249,0.249964,0,0);}
.m5e_c01035{transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205490,0.003493,-0.004249,0.249964,0,0);}
.m8e_c01035{transform:matrix(0.206540,0.003511,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206540,0.003511,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206540,0.003511,-0.004249,0.249964,0,0);}
.mc1_c01035{transform:matrix(0.207375,0.005184,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207375,0.005184,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207375,0.005184,-0.006248,0.249922,0,0);}
.m11e_c01035{transform:matrix(0.207467,0.003112,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207467,0.003112,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207467,0.003112,-0.003750,0.249972,0,0);}
.m21_c01035{transform:matrix(0.208115,0.003538,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208115,0.003538,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208115,0.003538,-0.004249,0.249964,0,0);}
.mc2_c01035{transform:matrix(0.208945,0.005224,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208945,0.005224,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208945,0.005224,-0.006248,0.249922,0,0);}
.m2_c01035{transform:matrix(0.208949,0.004388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208949,0.004388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208949,0.004388,-0.005249,0.249945,0,0);}
.mc3_c01035{transform:matrix(0.208975,0.005224,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208975,0.005224,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208975,0.005224,-0.006248,0.249922,0,0);}
.m1a_c01035{transform:matrix(0.209820,0.003567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209820,0.003567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209820,0.003567,-0.004249,0.249964,0,0);}
.md6_c01035{transform:matrix(0.210104,0.005253,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210104,0.005253,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210104,0.005253,-0.006248,0.249922,0,0);}
.ma3_c01035{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);}
.mc_c01035{transform:matrix(0.210630,0.003581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210630,0.003581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210630,0.003581,-0.004249,0.249964,0,0);}
.m81_c01035{transform:matrix(0.212299,0.003609,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212299,0.003609,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212299,0.003609,-0.004249,0.249964,0,0);}
.me1_c01035{transform:matrix(0.212684,0.004892,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212684,0.004892,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212684,0.004892,-0.005748,0.249934,0,0);}
.m11b_c01035{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);}
.m10f_c01035{transform:matrix(0.213411,0.003201,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213411,0.003201,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213411,0.003201,-0.003750,0.249972,0,0);}
.m109_c01035{transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);}
.ma1_c01035{transform:matrix(0.214706,0.004079,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214706,0.004079,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214706,0.004079,-0.004749,0.249955,0,0);}
.m4a_c01035{transform:matrix(0.217449,0.003697,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217449,0.003697,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217449,0.003697,-0.004249,0.249964,0,0);}
.md4_c01035{transform:matrix(0.219266,0.005482,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219266,0.005482,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219266,0.005482,-0.006248,0.249922,0,0);}
.ma9_c01035{transform:matrix(0.219426,0.005486,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219426,0.005486,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219426,0.005486,-0.006248,0.249922,0,0);}
.m5c_c01035{transform:matrix(0.220238,0.003744,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220238,0.003744,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220238,0.003744,-0.004249,0.249964,0,0);}
.mc0_c01035{transform:matrix(0.221371,0.005534,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221371,0.005534,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221371,0.005534,-0.006248,0.249922,0,0);}
.m119_c01035{transform:matrix(0.221755,0.003326,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221755,0.003326,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221755,0.003326,-0.003750,0.249972,0,0);}
.mc7_c01035{transform:matrix(0.223030,0.005576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223030,0.005576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223030,0.005576,-0.006248,0.249922,0,0);}
.m83_c01035{transform:matrix(0.223598,0.003801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223598,0.003801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223598,0.003801,-0.004249,0.249964,0,0);}
.m9e_c01035{transform:matrix(0.224025,0.004256,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224025,0.004256,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224025,0.004256,-0.004749,0.249955,0,0);}
.m9f_c01035{transform:matrix(0.224395,0.004263,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224395,0.004263,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224395,0.004263,-0.004749,0.249955,0,0);}
.md1_c01035{transform:matrix(0.224705,0.005618,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224705,0.005618,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224705,0.005618,-0.006248,0.249922,0,0);}
.m2f_c01035{transform:matrix(0.225867,0.003840,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225867,0.003840,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225867,0.003840,-0.004249,0.249964,0,0);}
.m120_c01035{transform:matrix(0.230144,0.003452,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230144,0.003452,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230144,0.003452,-0.003750,0.249972,0,0);}
.ma0_c01035{transform:matrix(0.230773,0.004385,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230773,0.004385,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230773,0.004385,-0.004749,0.249955,0,0);}
.mf7_c01035{transform:matrix(0.232583,0.005349,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232583,0.005349,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232583,0.005349,-0.005748,0.249934,0,0);}
.m129_c01035{transform:matrix(0.233919,0.003509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233919,0.003509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233919,0.003509,-0.003750,0.249972,0,0);}
.mda_c01035{transform:matrix(0.234152,0.005854,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234152,0.005854,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234152,0.005854,-0.006248,0.249922,0,0);}
.m127_c01035{transform:matrix(0.234689,0.003520,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234689,0.003520,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234689,0.003520,-0.003750,0.249972,0,0);}
.m19_c01035{transform:matrix(0.236766,0.004025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236766,0.004025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236766,0.004025,-0.004249,0.249964,0,0);}
.m128_c01035{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);}
.m5b_c01035{transform:matrix(0.238321,0.004051,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238321,0.004051,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238321,0.004051,-0.004249,0.249964,0,0);}
.m17_c01035{transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);}
.m3c_c01035{transform:matrix(0.240425,0.004087,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240425,0.004087,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240425,0.004087,-0.004249,0.249964,0,0);}
.mff_c01035{transform:matrix(0.240518,0.003608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240518,0.003608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240518,0.003608,-0.003750,0.249972,0,0);}
.m6d_c01035{transform:matrix(0.241890,0.004112,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241890,0.004112,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241890,0.004112,-0.004249,0.249964,0,0);}
.mf3_c01035{transform:matrix(0.242371,0.005575,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242371,0.005575,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242371,0.005575,-0.005748,0.249934,0,0);}
.m48_c01035{transform:matrix(0.243480,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243480,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243480,0.004139,-0.004249,0.249964,0,0);}
.mf_c01035{transform:matrix(0.243735,0.004143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243735,0.004143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243735,0.004143,-0.004249,0.249964,0,0);}
.m9c_c01035{transform:matrix(0.245611,0.004667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245611,0.004667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245611,0.004667,-0.004749,0.249955,0,0);}
.mf6_c01035{transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);}
.me_c01035{transform:matrix(0.247154,0.004202,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247154,0.004202,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247154,0.004202,-0.004249,0.249964,0,0);}
.m115_c01035{transform:matrix(0.252612,0.003789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252612,0.003789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252612,0.003789,-0.003750,0.249972,0,0);}
.mf5_c01035{transform:matrix(0.256917,0.005909,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256917,0.005909,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256917,0.005909,-0.005748,0.249934,0,0);}
.m60_c01035{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);}
.m55_c01035{transform:matrix(0.263972,0.004488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263972,0.004488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263972,0.004488,-0.004249,0.249964,0,0);}
.m22_c01035{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);}
.m123_c01035{transform:matrix(0.274674,0.004120,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274674,0.004120,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274674,0.004120,-0.003750,0.249972,0,0);}
.mfd_c01035{transform:matrix(0.275300,0.005231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275300,0.005231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275300,0.005231,-0.004749,0.249955,0,0);}
.mbb_c01035{transform:matrix(0.276079,0.006902,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276079,0.006902,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276079,0.006902,-0.006248,0.249922,0,0);}
.m11a_c01035{transform:matrix(0.288208,0.004323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288208,0.004323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288208,0.004323,-0.003750,0.249972,0,0);}
.me0_c01035{transform:matrix(0.313294,0.008146,-0.006498,0.249916,0,0);-ms-transform:matrix(0.313294,0.008146,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.313294,0.008146,-0.006498,0.249916,0,0);}
.m9b_c01035{transform:matrix(0.317009,0.005389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.317009,0.005389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.317009,0.005389,-0.004249,0.249964,0,0);}
.m7a_c01035{transform:matrix(0.326973,0.005559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.326973,0.005559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.326973,0.005559,-0.004249,0.249964,0,0);}
.mc6_c01035{transform:matrix(0.332436,0.008311,-0.006248,0.249922,0,0);-ms-transform:matrix(0.332436,0.008311,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.332436,0.008311,-0.006248,0.249922,0,0);}
.m8_c01035{transform:matrix(0.344950,0.005864,-0.004249,0.249964,0,0);-ms-transform:matrix(0.344950,0.005864,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.344950,0.005864,-0.004249,0.249964,0,0);}
.m113_c01035{transform:matrix(0.354790,0.005322,-0.003750,0.249972,0,0);-ms-transform:matrix(0.354790,0.005322,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.354790,0.005322,-0.003750,0.249972,0,0);}
.m68_c01035{transform:matrix(0.355009,0.006035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.355009,0.006035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.355009,0.006035,-0.004249,0.249964,0,0);}
.m69_c01035{transform:matrix(0.356399,0.006059,-0.004249,0.249964,0,0);-ms-transform:matrix(0.356399,0.006059,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.356399,0.006059,-0.004249,0.249964,0,0);}
.m106_c01035{transform:matrix(0.358060,0.005371,-0.003750,0.249972,0,0);-ms-transform:matrix(0.358060,0.005371,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.358060,0.005371,-0.003750,0.249972,0,0);}
.m4_c01035{transform:matrix(0.431980,0.009072,-0.005249,0.249945,0,0);-ms-transform:matrix(0.431980,0.009072,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.431980,0.009072,-0.005249,0.249945,0,0);}
.mb9_c01035{transform:matrix(0.466679,0.011667,-0.006248,0.249922,0,0);-ms-transform:matrix(0.466679,0.011667,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.466679,0.011667,-0.006248,0.249922,0,0);}
.m0_c01035{transform:matrix(1.211258,0.025436,-0.005249,0.249945,0,0);-ms-transform:matrix(1.211258,0.025436,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.211258,0.025436,-0.005249,0.249945,0,0);}
.mdf_c01035{transform:matrix(1.382743,0.035951,-0.006498,0.249916,0,0);-ms-transform:matrix(1.382743,0.035951,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.382743,0.035951,-0.006498,0.249916,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls0_c01035{letter-spacing:0.000000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01035{word-spacing:0.000000px;}
.fc0_c01035{color:transparent;}
.fs16_c01035{font-size:13.652464px;}
.fs15_c01035{font-size:22.050000px;}
.fs19_c01035{font-size:49.355552px;}
.fs18_c01035{font-size:57.756497px;}
.fs17_c01035{font-size:59.856733px;}
.fs6_c01035{font-size:65.109406px;}
.fsa_c01035{font-size:65.111749px;}
.fs2_c01035{font-size:67.209710px;}
.fs5_c01035{font-size:68.259861px;}
.fsd_c01035{font-size:69.321653px;}
.fs4_c01035{font-size:70.360165px;}
.fsf_c01035{font-size:70.371981px;}
.fs3_c01035{font-size:71.410317px;}
.fs14_c01035{font-size:71.418883px;}
.fse_c01035{font-size:71.422309px;}
.fsb_c01035{font-size:72.463076px;}
.fs12_c01035{font-size:72.472637px;}
.fs13_c01035{font-size:72.474484px;}
.fs8_c01035{font-size:73.510620px;}
.fsc_c01035{font-size:74.573293px;}
.fs11_c01035{font-size:75.623621px;}
.fs7_c01035{font-size:76.661075px;}
.fs9_c01035{font-size:88.212744px;}
.fs10_c01035{font-size:91.378542px;}
.fs1_c01035{font-size:137.580326px;}
.fs0_c01035{font-size:233.151393px;}
.y0_c01035{bottom:0.000000px;}
.y12c_c01035{bottom:142.810868px;}
.y12b_c01035{bottom:143.572950px;}
.y12a_c01035{bottom:144.022882px;}
.y129_c01035{bottom:145.245990px;}
.y128_c01035{bottom:145.651508px;}
.y127_c01035{bottom:146.495280px;}
.y126_c01035{bottom:146.934233px;}
.y125_c01035{bottom:147.946417px;}
.y124_c01035{bottom:148.756642px;}
.y123_c01035{bottom:149.451450px;}
.y122_c01035{bottom:150.039480px;}
.y121_c01035{bottom:150.998873px;}
.y120_c01035{bottom:151.321800px;}
.y11f_c01035{bottom:151.992218px;}
.y11e_c01035{bottom:152.411227px;}
.y11d_c01035{bottom:152.978107px;}
.y11c_c01035{bottom:154.171192px;}
.y11b_c01035{bottom:162.918915px;}
.y11a_c01035{bottom:163.459230px;}
.y119_c01035{bottom:164.414513px;}
.y118_c01035{bottom:165.003120px;}
.y117_c01035{bottom:165.429413px;}
.y116_c01035{bottom:165.764940px;}
.y115_c01035{bottom:167.006670px;}
.y114_c01035{bottom:167.317657px;}
.y113_c01035{bottom:168.832178px;}
.y112_c01035{bottom:169.982963px;}
.y111_c01035{bottom:170.501078px;}
.y110_c01035{bottom:171.067328px;}
.y10f_c01035{bottom:171.990900px;}
.y10e_c01035{bottom:180.574343px;}
.y10d_c01035{bottom:181.157183px;}
.y10c_c01035{bottom:181.619130px;}
.y10b_c01035{bottom:181.911000px;}
.y10a_c01035{bottom:182.498250px;}
.y109_c01035{bottom:183.211455px;}
.y108_c01035{bottom:183.571680px;}
.y107_c01035{bottom:183.811868px;}
.y106_c01035{bottom:184.247647px;}
.y105_c01035{bottom:184.868018px;}
.y104_c01035{bottom:185.131538px;}
.y103_c01035{bottom:185.589390px;}
.y102_c01035{bottom:186.451523px;}
.y101_c01035{bottom:186.820770px;}
.y100_c01035{bottom:187.113000px;}
.yff_c01035{bottom:200.518384px;}
.yfe_c01035{bottom:204.603746px;}
.yfd_c01035{bottom:205.336566px;}
.yfc_c01035{bottom:205.666653px;}
.yfb_c01035{bottom:205.921500px;}
.yfa_c01035{bottom:231.120000px;}
.yf9_c01035{bottom:233.010258px;}
.yf8_c01035{bottom:233.627325px;}
.yf7_c01035{bottom:234.931804px;}
.yf6_c01035{bottom:235.732963px;}
.yf5_c01035{bottom:237.362122px;}
.yf4_c01035{bottom:239.293191px;}
.yf3_c01035{bottom:239.758665px;}
.yf2_c01035{bottom:240.746641px;}
.yf1_c01035{bottom:241.765081px;}
.yf0_c01035{bottom:242.464500px;}
.yef_c01035{bottom:255.555006px;}
.yee_c01035{bottom:256.412055px;}
.yed_c01035{bottom:256.889811px;}
.yec_c01035{bottom:257.902214px;}
.yeb_c01035{bottom:258.704097px;}
.yea_c01035{bottom:259.402929px;}
.ye9_c01035{bottom:261.032226px;}
.ye8_c01035{bottom:261.981114px;}
.ye7_c01035{bottom:262.720621px;}
.ye6_c01035{bottom:263.192616px;}
.ye5_c01035{bottom:263.885583px;}
.ye4_c01035{bottom:264.586830px;}
.ye3_c01035{bottom:265.151354px;}
.ye2_c01035{bottom:265.686000px;}
.ye1_c01035{bottom:279.223926px;}
.ye0_c01035{bottom:285.330000px;}
.ydf_c01035{bottom:296.737687px;}
.yde_c01035{bottom:306.175575px;}
.ydd_c01035{bottom:318.624937px;}
.ydc_c01035{bottom:319.222463px;}
.ydb_c01035{bottom:320.845838px;}
.yda_c01035{bottom:321.561113px;}
.yd9_c01035{bottom:323.026237px;}
.yd8_c01035{bottom:324.673913px;}
.yd7_c01035{bottom:326.102775px;}
.yd6_c01035{bottom:327.057600px;}
.yd5_c01035{bottom:329.130225px;}
.yd4_c01035{bottom:329.940488px;}
.yd3_c01035{bottom:341.487638px;}
.yd2_c01035{bottom:342.080625px;}
.yd1_c01035{bottom:343.154212px;}
.yd0_c01035{bottom:344.187637px;}
.ycf_c01035{bottom:345.287362px;}
.yce_c01035{bottom:346.354725px;}
.ycd_c01035{bottom:347.009625px;}
.ycc_c01035{bottom:348.150675px;}
.ycb_c01035{bottom:349.406813px;}
.yca_c01035{bottom:350.019000px;}
.yc9_c01035{bottom:351.156713px;}
.yc8_c01035{bottom:352.357500px;}
.yc7_c01035{bottom:370.929712px;}
.yc6_c01035{bottom:372.578888px;}
.yc5_c01035{bottom:387.734513px;}
.yc4_c01035{bottom:388.788412px;}
.yc3_c01035{bottom:389.484150px;}
.yc2_c01035{bottom:391.013663px;}
.yc1_c01035{bottom:391.483950px;}
.yc0_c01035{bottom:392.531250px;}
.ybf_c01035{bottom:393.197963px;}
.ybe_c01035{bottom:393.668400px;}
.ybd_c01035{bottom:396.561563px;}
.ybc_c01035{bottom:397.312613px;}
.ybb_c01035{bottom:398.239838px;}
.yba_c01035{bottom:416.497650px;}
.yb7_c01035{bottom:438.099975px;}
.yb8_c01035{bottom:438.100088px;}
.yb9_c01035{bottom:438.100275px;}
.yb6_c01035{bottom:450.845363px;}
.yb5_c01035{bottom:452.384063px;}
.yb4_c01035{bottom:453.888338px;}
.yb3_c01035{bottom:454.456350px;}
.yb2_c01035{bottom:456.183638px;}
.yb1_c01035{bottom:456.899588px;}
.yb0_c01035{bottom:458.243438px;}
.yaf_c01035{bottom:458.882475px;}
.yae_c01035{bottom:459.828375px;}
.yad_c01035{bottom:461.140163px;}
.yac_c01035{bottom:461.761650px;}
.yab_c01035{bottom:462.247500px;}
.yaa_c01035{bottom:502.047496px;}
.ya9_c01035{bottom:506.380122px;}
.ya8_c01035{bottom:507.601686px;}
.ya7_c01035{bottom:521.519742px;}
.ya6_c01035{bottom:522.530466px;}
.ya5_c01035{bottom:523.566640px;}
.ya4_c01035{bottom:524.047806px;}
.ya3_c01035{bottom:524.526065px;}
.ya2_c01035{bottom:525.388132px;}
.ya1_c01035{bottom:525.983497px;}
.ya0_c01035{bottom:527.758848px;}
.y9f_c01035{bottom:528.119801px;}
.y9e_c01035{bottom:529.744500px;}
.y9d_c01035{bottom:548.260732px;}
.y9c_c01035{bottom:550.501213px;}
.y9b_c01035{bottom:570.454307px;}
.y9a_c01035{bottom:570.848080px;}
.y99_c01035{bottom:571.440001px;}
.y98_c01035{bottom:572.553954px;}
.y97_c01035{bottom:573.357915px;}
.y96_c01035{bottom:574.659054px;}
.y95_c01035{bottom:575.091034px;}
.y94_c01035{bottom:576.154366px;}
.y93_c01035{bottom:590.321445px;}
.y92_c01035{bottom:590.722791px;}
.y91_c01035{bottom:591.846756px;}
.y90_c01035{bottom:592.517118px;}
.y8f_c01035{bottom:593.753961px;}
.y8e_c01035{bottom:594.698949px;}
.y8d_c01035{bottom:595.452108px;}
.y8c_c01035{bottom:595.884249px;}
.y8b_c01035{bottom:596.740906px;}
.y8a_c01035{bottom:597.782431px;}
.y89_c01035{bottom:598.223595px;}
.y88_c01035{bottom:599.104978px;}
.y87_c01035{bottom:613.346220px;}
.y86_c01035{bottom:614.157144px;}
.y85_c01035{bottom:614.651686px;}
.y84_c01035{bottom:615.707436px;}
.y83_c01035{bottom:616.376523px;}
.y82_c01035{bottom:617.421949px;}
.y81_c01035{bottom:617.991516px;}
.y80_c01035{bottom:618.293851px;}
.y7f_c01035{bottom:619.761474px;}
.y7e_c01035{bottom:620.474356px;}
.y7d_c01035{bottom:620.828515px;}
.y7c_c01035{bottom:621.090880px;}
.y7b_c01035{bottom:622.059880px;}
.y7a_c01035{bottom:636.415564px;}
.y79_c01035{bottom:636.950643px;}
.y78_c01035{bottom:637.236499px;}
.y77_c01035{bottom:637.707331px;}
.y76_c01035{bottom:638.593894px;}
.y75_c01035{bottom:639.272566px;}
.y74_c01035{bottom:640.551868px;}
.y73_c01035{bottom:641.566878px;}
.y72_c01035{bottom:642.005304px;}
.y71_c01035{bottom:642.471367px;}
.y70_c01035{bottom:643.633285px;}
.y6f_c01035{bottom:644.201892px;}
.y6e_c01035{bottom:658.761100px;}
.y6d_c01035{bottom:659.890459px;}
.y6c_c01035{bottom:660.604750px;}
.y6b_c01035{bottom:660.994302px;}
.y6a_c01035{bottom:661.344231px;}
.y69_c01035{bottom:662.946844px;}
.y68_c01035{bottom:663.494851px;}
.y67_c01035{bottom:664.034188px;}
.y66_c01035{bottom:664.718776px;}
.y65_c01035{bottom:665.208142px;}
.y64_c01035{bottom:665.963122px;}
.y63_c01035{bottom:666.574866px;}
.y62_c01035{bottom:666.880230px;}
.y61_c01035{bottom:680.969340px;}
.y60_c01035{bottom:682.139548px;}
.y5f_c01035{bottom:682.616275px;}
.y5e_c01035{bottom:683.323522px;}
.y5d_c01035{bottom:684.108777px;}
.y5c_c01035{bottom:685.124530px;}
.y5b_c01035{bottom:686.320332px;}
.y5a_c01035{bottom:686.916103px;}
.y59_c01035{bottom:687.346408px;}
.y58_c01035{bottom:688.255119px;}
.y57_c01035{bottom:688.566477px;}
.y56_c01035{bottom:689.009119px;}
.y55_c01035{bottom:689.835594px;}
.y54_c01035{bottom:704.431594px;}
.y53_c01035{bottom:704.718762px;}
.y52_c01035{bottom:705.164439px;}
.y51_c01035{bottom:706.114446px;}
.y50_c01035{bottom:706.389199px;}
.y4f_c01035{bottom:707.575545px;}
.y4e_c01035{bottom:708.047503px;}
.y4d_c01035{bottom:708.827989px;}
.y4c_c01035{bottom:709.945507px;}
.y4b_c01035{bottom:710.353046px;}
.y4a_c01035{bottom:710.638734px;}
.y49_c01035{bottom:711.043267px;}
.y48_c01035{bottom:711.385344px;}
.y47_c01035{bottom:712.234657px;}
.y46_c01035{bottom:712.787297px;}
.y45_c01035{bottom:727.712140px;}
.y44_c01035{bottom:728.136154px;}
.y43_c01035{bottom:728.439043px;}
.y42_c01035{bottom:729.751758px;}
.y41_c01035{bottom:730.562734px;}
.y40_c01035{bottom:730.810722px;}
.y3f_c01035{bottom:731.284997px;}
.y3e_c01035{bottom:731.665839px;}
.y3d_c01035{bottom:732.156892px;}
.y3c_c01035{bottom:733.199230px;}
.y3b_c01035{bottom:734.121999px;}
.y3a_c01035{bottom:734.594692px;}
.y39_c01035{bottom:735.470464px;}
.y38_c01035{bottom:749.953887px;}
.y37_c01035{bottom:750.439887px;}
.y36_c01035{bottom:750.883081px;}
.y35_c01035{bottom:751.710238px;}
.y34_c01035{bottom:752.459073px;}
.y33_c01035{bottom:753.212829px;}
.y32_c01035{bottom:753.553501px;}
.y31_c01035{bottom:754.505488px;}
.y30_c01035{bottom:755.233316px;}
.y2f_c01035{bottom:755.506809px;}
.y2e_c01035{bottom:756.240450px;}
.y2d_c01035{bottom:757.439083px;}
.y2c_c01035{bottom:758.155767px;}
.y2b_c01035{bottom:772.864284px;}
.y2a_c01035{bottom:773.302710px;}
.y29_c01035{bottom:773.615566px;}
.y28_c01035{bottom:774.750561px;}
.y27_c01035{bottom:775.598653px;}
.y26_c01035{bottom:775.877196px;}
.y25_c01035{bottom:776.422755px;}
.y24_c01035{bottom:776.786530px;}
.y23_c01035{bottom:777.316101px;}
.y22_c01035{bottom:778.618935px;}
.y21_c01035{bottom:779.036354px;}
.y20_c01035{bottom:779.852346px;}
.y1f_c01035{bottom:780.548022px;}
.y1e_c01035{bottom:781.107627px;}
.y1d_c01035{bottom:796.243124px;}
.y1c_c01035{bottom:796.581418px;}
.y1b_c01035{bottom:797.813706px;}
.y1a_c01035{bottom:798.499914px;}
.y19_c01035{bottom:799.317419px;}
.y18_c01035{bottom:800.065192px;}
.y17_c01035{bottom:801.006522px;}
.y16_c01035{bottom:801.378481px;}
.y15_c01035{bottom:801.707163px;}
.y14_c01035{bottom:802.367203px;}
.y13_c01035{bottom:802.834143px;}
.y12_c01035{bottom:803.519331px;}
.y11_c01035{bottom:818.596713px;}
.y10_c01035{bottom:819.619186px;}
.yf_c01035{bottom:820.051921px;}
.ye_c01035{bottom:820.809628px;}
.yd_c01035{bottom:821.985586px;}
.yc_c01035{bottom:822.700045px;}
.yb_c01035{bottom:823.186279px;}
.ya_c01035{bottom:824.188225px;}
.y9_c01035{bottom:824.367822px;}
.y8_c01035{bottom:825.042144px;}
.y7_c01035{bottom:825.610054px;}
.y6_c01035{bottom:826.473000px;}
.y2_c01035{bottom:861.836410px;}
.y3_c01035{bottom:862.532815px;}
.y4_c01035{bottom:864.069662px;}
.y5_c01035{bottom:865.894895px;}
.y1_c01035{bottom:913.693500px;}
.h18_c01035{height:13.652464px;}
.h17_c01035{height:22.050000px;}
.h1b_c01035{height:49.355552px;}
.h1a_c01035{height:57.756497px;}
.h19_c01035{height:59.856733px;}
.h8_c01035{height:65.109406px;}
.hc_c01035{height:65.111749px;}
.h4_c01035{height:67.209710px;}
.h7_c01035{height:68.259861px;}
.hf_c01035{height:69.321653px;}
.h6_c01035{height:70.360165px;}
.h11_c01035{height:70.371981px;}
.h5_c01035{height:71.410317px;}
.h16_c01035{height:71.418883px;}
.h10_c01035{height:71.422309px;}
.hd_c01035{height:72.463076px;}
.h14_c01035{height:72.472637px;}
.h15_c01035{height:72.474484px;}
.ha_c01035{height:73.510620px;}
.he_c01035{height:74.573293px;}
.h13_c01035{height:75.623621px;}
.h9_c01035{height:76.661075px;}
.hb_c01035{height:88.212744px;}
.h12_c01035{height:91.378542px;}
.h3_c01035{height:137.580326px;}
.h2_c01035{height:233.151393px;}
.h0_c01035{height:1008.450000px;}
.h1_c01035{height:1008.750000px;}
.w1_c01035{width:700.500000px;}
.w0_c01035{width:700.650000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:78.745500px;}
.x2_c01035{left:84.759132px;}
.x57_c01035{left:123.960338px;}
.x90_c01035{left:127.678800px;}
.x6d_c01035{left:128.806764px;}
.x5d_c01035{left:130.145319px;}
.x3a_c01035{left:131.339585px;}
.x6_c01035{left:132.436500px;}
.x3_c01035{left:134.490672px;}
.xa7_c01035{left:140.721000px;}
.x81_c01035{left:144.721537px;}
.x84_c01035{left:145.736287px;}
.x4e_c01035{left:147.525377px;}
.x58_c01035{left:155.554302px;}
.x9f_c01035{left:158.467500px;}
.x3b_c01035{left:160.405590px;}
.x1c_c01035{left:163.398947px;}
.x7a_c01035{left:166.003500px;}
.x98_c01035{left:168.760500px;}
.x82_c01035{left:170.109900px;}
.x28_c01035{left:171.298991px;}
.x45_c01035{left:173.928777px;}
.x12_c01035{left:175.568217px;}
.x4f_c01035{left:181.480290px;}
.x7_c01035{left:183.198000px;}
.xa8_c01035{left:184.819500px;}
.x79_c01035{left:189.837731px;}
.x7b_c01035{left:190.863000px;}
.x88_c01035{left:193.521000px;}
.x5e_c01035{left:194.988126px;}
.x46_c01035{left:197.230486px;}
.x64_c01035{left:198.749543px;}
.x1d_c01035{left:202.026284px;}
.x6e_c01035{left:203.615465px;}
.x13_c01035{left:204.712202px;}
.x96_c01035{left:208.371000px;}
.x85_c01035{left:210.285675px;}
.x31_c01035{left:211.742900px;}
.x47_c01035{left:213.603926px;}
.x8_c01035{left:216.604500px;}
.x59_c01035{left:220.107206px;}
.x87_c01035{left:221.720625px;}
.x3c_c01035{left:223.073448px;}
.xb0_c01035{left:227.986238px;}
.x83_c01035{left:229.799175px;}
.x75_c01035{left:232.414500px;}
.x29_c01035{left:237.923369px;}
.x89_c01035{left:239.029500px;}
.xb4_c01035{left:241.186853px;}
.x91_c01035{left:242.994300px;}
.x4_c01035{left:244.245312px;}
.x14_c01035{left:246.009416px;}
.x1e_c01035{left:247.378019px;}
.x50_c01035{left:250.617117px;}
.x65_c01035{left:253.572681px;}
.x9_c01035{left:256.270500px;}
.x3d_c01035{left:259.438224px;}
.x48_c01035{left:261.408794px;}
.x8a_c01035{left:263.517000px;}
.xa_c01035{left:266.835000px;}
.x6f_c01035{left:268.679150px;}
.x1f_c01035{left:270.608136px;}
.xa9_c01035{left:272.818500px;}
.x99_c01035{left:274.444500px;}
.x2a_c01035{left:278.695680px;}
.x3e_c01035{left:280.851485px;}
.x49_c01035{left:284.073029px;}
.xb1_c01035{left:285.500918px;}
.x51_c01035{left:288.680480px;}
.x15_c01035{left:289.783155px;}
.xb5_c01035{left:292.467158px;}
.x2b_c01035{left:293.900925px;}
.x66_c01035{left:298.668651px;}
.x74_c01035{left:305.185668px;}
.x7c_c01035{left:306.732000px;}
.x70_c01035{left:308.910110px;}
.x8b_c01035{left:313.762500px;}
.x4a_c01035{left:315.411457px;}
.x52_c01035{left:318.640970px;}
.x67_c01035{left:321.440886px;}
.xa4_c01035{left:322.630500px;}
.xb_c01035{left:325.773000px;}
.x32_c01035{left:327.337400px;}
.x5f_c01035{left:328.375587px;}
.xaa_c01035{left:331.744500px;}
.x2c_c01035{left:334.331237px;}
.xa5_c01035{left:336.043500px;}
.x92_c01035{left:338.341800px;}
.x3f_c01035{left:339.703496px;}
.x20_c01035{left:343.008912px;}
.x60_c01035{left:344.306552px;}
.x16_c01035{left:348.597650px;}
.xa0_c01035{left:349.900500px;}
.xc_c01035{left:354.375000px;}
.x33_c01035{left:356.222900px;}
.x8c_c01035{left:359.404500px;}
.x68_c01035{left:361.066535px;}
.x71_c01035{left:364.639779px;}
.x21_c01035{left:372.394902px;}
.x5_c01035{left:374.568072px;}
.x76_c01035{left:376.186500px;}
.x34_c01035{left:378.625400px;}
.x40_c01035{left:380.760093px;}
.x8d_c01035{left:385.600500px;}
.x2d_c01035{left:387.241344px;}
.x7d_c01035{left:389.124000px;}
.x22_c01035{left:392.646071px;}
.x72_c01035{left:394.251275px;}
.x17_c01035{left:395.320440px;}
.xd_c01035{left:396.402000px;}
.x5a_c01035{left:397.857197px;}
.xab_c01035{left:400.824000px;}
.x93_c01035{left:404.248800px;}
.x2e_c01035{left:406.133513px;}
.x69_c01035{left:410.828852px;}
.x73_c01035{left:413.972280px;}
.xb6_c01035{left:416.665028px;}
.x9a_c01035{left:418.692000px;}
.x35_c01035{left:421.111400px;}
.x23_c01035{left:422.972561px;}
.x8e_c01035{left:428.295000px;}
.x61_c01035{left:429.332670px;}
.x4b_c01035{left:431.822505px;}
.xb7_c01035{left:434.225895px;}
.x5b_c01035{left:435.572559px;}
.x24_c01035{left:438.474806px;}
.x97_c01035{left:443.220000px;}
.x18_c01035{left:446.409807px;}
.x2f_c01035{left:448.000799px;}
.x9b_c01035{left:449.076000px;}
.xa1_c01035{left:455.566500px;}
.x53_c01035{left:457.612124px;}
.x94_c01035{left:462.853800px;}
.x62_c01035{left:464.542472px;}
.xe_c01035{left:465.576000px;}
.x36_c01035{left:468.815900px;}
.x77_c01035{left:472.054500px;}
.x4c_c01035{left:473.159603px;}
.x6a_c01035{left:475.905633px;}
.xb2_c01035{left:476.957063px;}
.x54_c01035{left:479.291267px;}
.x7e_c01035{left:480.936000px;}
.x41_c01035{left:482.554151px;}
.x9c_c01035{left:483.940500px;}
.x25_c01035{left:485.626515px;}
.xac_c01035{left:487.521000px;}
.x19_c01035{left:489.334547px;}
.x95_c01035{left:491.464800px;}
.xad_c01035{left:506.979000px;}
.xf_c01035{left:510.147000px;}
.x6b_c01035{left:511.190435px;}
.xa2_c01035{left:512.283000px;}
.x8f_c01035{left:513.621000px;}
.x55_c01035{left:519.013604px;}
.x63_c01035{left:520.114085px;}
.x5c_c01035{left:526.850504px;}
.x9d_c01035{left:527.958000px;}
.x42_c01035{left:532.523442px;}
.x10_c01035{left:535.602000px;}
.xae_c01035{left:537.775500px;}
.xa3_c01035{left:539.112000px;}
.x7f_c01035{left:541.107000px;}
.x37_c01035{left:546.034400px;}
.x26_c01035{left:548.683944px;}
.x86_c01035{left:549.799200px;}
.xb8_c01035{left:551.130368px;}
.xb3_c01035{left:554.177280px;}
.x43_c01035{left:556.003652px;}
.x30_c01035{left:560.156886px;}
.x38_c01035{left:563.851400px;}
.x1a_c01035{left:566.323347px;}
.x44_c01035{left:571.130642px;}
.xaf_c01035{left:576.631500px;}
.x78_c01035{left:579.786000px;}
.x56_c01035{left:581.739532px;}
.x9e_c01035{left:585.993000px;}
.x1b_c01035{left:587.458704px;}
.x39_c01035{left:588.793400px;}
.x27_c01035{left:590.405730px;}
.x6c_c01035{left:591.470706px;}
.x11_c01035{left:595.747500px;}
.x4d_c01035{left:597.077895px;}
.x80_c01035{left:602.655000px;}
.xa6_c01035{left:607.005000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls0_c01035{letter-spacing:0.000000pt;}
.ws0_c01035{word-spacing:0.000000pt;}
.fs16_c01035{font-size:12.135523pt;}
.fs15_c01035{font-size:19.600000pt;}
.fs19_c01035{font-size:43.871601pt;}
.fs18_c01035{font-size:51.339108pt;}
.fs17_c01035{font-size:53.205985pt;}
.fs6_c01035{font-size:57.875028pt;}
.fsa_c01035{font-size:57.877111pt;}
.fs2_c01035{font-size:59.741964pt;}
.fs5_c01035{font-size:60.675432pt;}
.fsd_c01035{font-size:61.619247pt;}
.fs4_c01035{font-size:62.542369pt;}
.fsf_c01035{font-size:62.552872pt;}
.fs3_c01035{font-size:63.475837pt;}
.fs14_c01035{font-size:63.483451pt;}
.fse_c01035{font-size:63.486497pt;}
.fsb_c01035{font-size:64.411623pt;}
.fs12_c01035{font-size:64.420122pt;}
.fs13_c01035{font-size:64.421764pt;}
.fs8_c01035{font-size:65.342773pt;}
.fsc_c01035{font-size:66.287372pt;}
.fs11_c01035{font-size:67.220997pt;}
.fs7_c01035{font-size:68.143178pt;}
.fs9_c01035{font-size:78.411328pt;}
.fs10_c01035{font-size:81.225371pt;}
.fs1_c01035{font-size:122.293623pt;}
.fs0_c01035{font-size:207.245683pt;}
.y0_c01035{bottom:0.000000pt;}
.y12c_c01035{bottom:126.942993pt;}
.y12b_c01035{bottom:127.620400pt;}
.y12a_c01035{bottom:128.020340pt;}
.y129_c01035{bottom:129.107547pt;}
.y128_c01035{bottom:129.468007pt;}
.y127_c01035{bottom:130.218027pt;}
.y126_c01035{bottom:130.608207pt;}
.y125_c01035{bottom:131.507927pt;}
.y124_c01035{bottom:132.228127pt;}
.y123_c01035{bottom:132.845733pt;}
.y122_c01035{bottom:133.368427pt;}
.y121_c01035{bottom:134.221220pt;}
.y120_c01035{bottom:134.508267pt;}
.y11f_c01035{bottom:135.104193pt;}
.y11e_c01035{bottom:135.476647pt;}
.y11d_c01035{bottom:135.980540pt;}
.y11c_c01035{bottom:137.041060pt;}
.y11b_c01035{bottom:144.816813pt;}
.y11a_c01035{bottom:145.297093pt;}
.y119_c01035{bottom:146.146233pt;}
.y118_c01035{bottom:146.669440pt;}
.y117_c01035{bottom:147.048367pt;}
.y116_c01035{bottom:147.346613pt;}
.y115_c01035{bottom:148.450373pt;}
.y114_c01035{bottom:148.726807pt;}
.y113_c01035{bottom:150.073047pt;}
.y112_c01035{bottom:151.095967pt;}
.y111_c01035{bottom:151.556513pt;}
.y110_c01035{bottom:152.059847pt;}
.y10f_c01035{bottom:152.880800pt;}
.y10e_c01035{bottom:160.510527pt;}
.y10d_c01035{bottom:161.028607pt;}
.y10c_c01035{bottom:161.439227pt;}
.y10b_c01035{bottom:161.698667pt;}
.y10a_c01035{bottom:162.220667pt;}
.y109_c01035{bottom:162.854627pt;}
.y108_c01035{bottom:163.174827pt;}
.y107_c01035{bottom:163.388327pt;}
.y106_c01035{bottom:163.775687pt;}
.y105_c01035{bottom:164.327127pt;}
.y104_c01035{bottom:164.561367pt;}
.y103_c01035{bottom:164.968347pt;}
.y102_c01035{bottom:165.734687pt;}
.y101_c01035{bottom:166.062907pt;}
.y100_c01035{bottom:166.322667pt;}
.yff_c01035{bottom:178.238564pt;}
.yfe_c01035{bottom:181.869996pt;}
.yfd_c01035{bottom:182.521392pt;}
.yfc_c01035{bottom:182.814803pt;}
.yfb_c01035{bottom:183.041333pt;}
.yfa_c01035{bottom:205.440000pt;}
.yf9_c01035{bottom:207.120229pt;}
.yf8_c01035{bottom:207.668733pt;}
.yf7_c01035{bottom:208.828271pt;}
.yf6_c01035{bottom:209.540412pt;}
.yf5_c01035{bottom:210.988553pt;}
.yf4_c01035{bottom:212.705059pt;}
.yf3_c01035{bottom:213.118813pt;}
.yf2_c01035{bottom:213.997015pt;}
.yf1_c01035{bottom:214.902295pt;}
.yf0_c01035{bottom:215.524000pt;}
.yef_c01035{bottom:227.160005pt;}
.yee_c01035{bottom:227.921827pt;}
.yed_c01035{bottom:228.346499pt;}
.yec_c01035{bottom:229.246412pt;}
.yeb_c01035{bottom:229.959197pt;}
.yea_c01035{bottom:230.580381pt;}
.ye9_c01035{bottom:232.028645pt;}
.ye8_c01035{bottom:232.872101pt;}
.ye7_c01035{bottom:233.529441pt;}
.ye6_c01035{bottom:233.948992pt;}
.ye5_c01035{bottom:234.564963pt;}
.ye4_c01035{bottom:235.188293pt;}
.ye3_c01035{bottom:235.690092pt;}
.ye2_c01035{bottom:236.165333pt;}
.ye1_c01035{bottom:248.199045pt;}
.ye0_c01035{bottom:253.626667pt;}
.ydf_c01035{bottom:263.766833pt;}
.yde_c01035{bottom:272.156067pt;}
.ydd_c01035{bottom:283.222167pt;}
.ydc_c01035{bottom:283.753300pt;}
.ydb_c01035{bottom:285.196300pt;}
.yda_c01035{bottom:285.832100pt;}
.yd9_c01035{bottom:287.134433pt;}
.yd8_c01035{bottom:288.599033pt;}
.yd7_c01035{bottom:289.869133pt;}
.yd6_c01035{bottom:290.717867pt;}
.yd5_c01035{bottom:292.560200pt;}
.yd4_c01035{bottom:293.280433pt;}
.yd3_c01035{bottom:303.544567pt;}
.yd2_c01035{bottom:304.071667pt;}
.yd1_c01035{bottom:305.025967pt;}
.yd0_c01035{bottom:305.944567pt;}
.ycf_c01035{bottom:306.922100pt;}
.yce_c01035{bottom:307.870867pt;}
.ycd_c01035{bottom:308.453000pt;}
.ycc_c01035{bottom:309.467267pt;}
.ycb_c01035{bottom:310.583833pt;}
.yca_c01035{bottom:311.128000pt;}
.yc9_c01035{bottom:312.139300pt;}
.yc8_c01035{bottom:313.206667pt;}
.yc7_c01035{bottom:329.715300pt;}
.yc6_c01035{bottom:331.181233pt;}
.yc5_c01035{bottom:344.652900pt;}
.yc4_c01035{bottom:345.589700pt;}
.yc3_c01035{bottom:346.208133pt;}
.yc2_c01035{bottom:347.567700pt;}
.yc1_c01035{bottom:347.985733pt;}
.yc0_c01035{bottom:348.916667pt;}
.ybf_c01035{bottom:349.509300pt;}
.ybe_c01035{bottom:349.927467pt;}
.ybd_c01035{bottom:352.499167pt;}
.ybc_c01035{bottom:353.166767pt;}
.ybb_c01035{bottom:353.990967pt;}
.yba_c01035{bottom:370.220133pt;}
.yb7_c01035{bottom:389.422200pt;}
.yb8_c01035{bottom:389.422300pt;}
.yb9_c01035{bottom:389.422467pt;}
.yb6_c01035{bottom:400.751433pt;}
.yb5_c01035{bottom:402.119167pt;}
.yb4_c01035{bottom:403.456300pt;}
.yb3_c01035{bottom:403.961200pt;}
.yb2_c01035{bottom:405.496567pt;}
.yb1_c01035{bottom:406.132967pt;}
.yb0_c01035{bottom:407.327500pt;}
.yaf_c01035{bottom:407.895533pt;}
.yae_c01035{bottom:408.736333pt;}
.yad_c01035{bottom:409.902367pt;}
.yac_c01035{bottom:410.454800pt;}
.yab_c01035{bottom:410.886667pt;}
.yaa_c01035{bottom:446.264441pt;}
.ya9_c01035{bottom:450.115664pt;}
.ya8_c01035{bottom:451.201499pt;}
.ya7_c01035{bottom:463.573104pt;}
.ya6_c01035{bottom:464.471525pt;}
.ya5_c01035{bottom:465.392569pt;}
.ya4_c01035{bottom:465.820272pt;}
.ya3_c01035{bottom:466.245391pt;}
.ya2_c01035{bottom:467.011673pt;}
.ya1_c01035{bottom:467.540887pt;}
.ya0_c01035{bottom:469.118976pt;}
.y9f_c01035{bottom:469.439823pt;}
.y9e_c01035{bottom:470.884000pt;}
.y9d_c01035{bottom:487.342873pt;}
.y9c_c01035{bottom:489.334412pt;}
.y9b_c01035{bottom:507.070495pt;}
.y9a_c01035{bottom:507.420516pt;}
.y99_c01035{bottom:507.946668pt;}
.y98_c01035{bottom:508.936848pt;}
.y97_c01035{bottom:509.651480pt;}
.y96_c01035{bottom:510.808048pt;}
.y95_c01035{bottom:511.192031pt;}
.y94_c01035{bottom:512.137215pt;}
.y93_c01035{bottom:524.730173pt;}
.y92_c01035{bottom:525.086925pt;}
.y91_c01035{bottom:526.086005pt;}
.y90_c01035{bottom:526.681883pt;}
.y8f_c01035{bottom:527.781299pt;}
.y8e_c01035{bottom:528.621288pt;}
.y8d_c01035{bottom:529.290763pt;}
.y8c_c01035{bottom:529.674888pt;}
.y8b_c01035{bottom:530.436361pt;}
.y8a_c01035{bottom:531.362161pt;}
.y89_c01035{bottom:531.754307pt;}
.y88_c01035{bottom:532.537759pt;}
.y87_c01035{bottom:545.196640pt;}
.y86_c01035{bottom:545.917461pt;}
.y85_c01035{bottom:546.357055pt;}
.y84_c01035{bottom:547.295499pt;}
.y83_c01035{bottom:547.890243pt;}
.y82_c01035{bottom:548.819511pt;}
.y81_c01035{bottom:549.325792pt;}
.y80_c01035{bottom:549.594535pt;}
.y7f_c01035{bottom:550.899088pt;}
.y7e_c01035{bottom:551.532761pt;}
.y7d_c01035{bottom:551.847569pt;}
.y7c_c01035{bottom:552.080783pt;}
.y7b_c01035{bottom:552.942116pt;}
.y7a_c01035{bottom:565.702724pt;}
.y79_c01035{bottom:566.178349pt;}
.y78_c01035{bottom:566.432444pt;}
.y77_c01035{bottom:566.850961pt;}
.y76_c01035{bottom:567.639017pt;}
.y75_c01035{bottom:568.242281pt;}
.y74_c01035{bottom:569.379439pt;}
.y73_c01035{bottom:570.281669pt;}
.y72_c01035{bottom:570.671381pt;}
.y71_c01035{bottom:571.085660pt;}
.y70_c01035{bottom:572.118476pt;}
.y6f_c01035{bottom:572.623904pt;}
.y6e_c01035{bottom:585.565423pt;}
.y6d_c01035{bottom:586.569297pt;}
.y6c_c01035{bottom:587.204223pt;}
.y6b_c01035{bottom:587.550491pt;}
.y6a_c01035{bottom:587.861539pt;}
.y69_c01035{bottom:589.286084pt;}
.y68_c01035{bottom:589.773201pt;}
.y67_c01035{bottom:590.252612pt;}
.y66_c01035{bottom:590.861135pt;}
.y65_c01035{bottom:591.296127pt;}
.y64_c01035{bottom:591.967220pt;}
.y63_c01035{bottom:592.510992pt;}
.y62_c01035{bottom:592.782427pt;}
.y61_c01035{bottom:605.306080pt;}
.y60_c01035{bottom:606.346265pt;}
.y5f_c01035{bottom:606.770023pt;}
.y5e_c01035{bottom:607.398687pt;}
.y5d_c01035{bottom:608.096691pt;}
.y5c_c01035{bottom:608.999583pt;}
.y5b_c01035{bottom:610.062517pt;}
.y5a_c01035{bottom:610.592092pt;}
.y59_c01035{bottom:610.974585pt;}
.y58_c01035{bottom:611.782328pt;}
.y57_c01035{bottom:612.059091pt;}
.y56_c01035{bottom:612.452551pt;}
.y55_c01035{bottom:613.187195pt;}
.y54_c01035{bottom:626.161417pt;}
.y53_c01035{bottom:626.416677pt;}
.y52_c01035{bottom:626.812835pt;}
.y51_c01035{bottom:627.657285pt;}
.y50_c01035{bottom:627.901511pt;}
.y4f_c01035{bottom:628.956040pt;}
.y4e_c01035{bottom:629.375559pt;}
.y4d_c01035{bottom:630.069324pt;}
.y4c_c01035{bottom:631.062673pt;}
.y4b_c01035{bottom:631.424929pt;}
.y4a_c01035{bottom:631.678875pt;}
.y49_c01035{bottom:632.038460pt;}
.y48_c01035{bottom:632.342528pt;}
.y47_c01035{bottom:633.097473pt;}
.y46_c01035{bottom:633.588708pt;}
.y45_c01035{bottom:646.855236pt;}
.y44_c01035{bottom:647.232137pt;}
.y43_c01035{bottom:647.501372pt;}
.y42_c01035{bottom:648.668229pt;}
.y41_c01035{bottom:649.389097pt;}
.y40_c01035{bottom:649.609531pt;}
.y3f_c01035{bottom:650.031108pt;}
.y3e_c01035{bottom:650.369635pt;}
.y3d_c01035{bottom:650.806127pt;}
.y3c_c01035{bottom:651.732649pt;}
.y3b_c01035{bottom:652.552888pt;}
.y3a_c01035{bottom:652.973060pt;}
.y39_c01035{bottom:653.751524pt;}
.y38_c01035{bottom:666.625677pt;}
.y37_c01035{bottom:667.057677pt;}
.y36_c01035{bottom:667.451628pt;}
.y35_c01035{bottom:668.186879pt;}
.y34_c01035{bottom:668.852509pt;}
.y33_c01035{bottom:669.522515pt;}
.y32_c01035{bottom:669.825335pt;}
.y31_c01035{bottom:670.671545pt;}
.y30_c01035{bottom:671.318503pt;}
.y2f_c01035{bottom:671.561608pt;}
.y2e_c01035{bottom:672.213733pt;}
.y2d_c01035{bottom:673.279185pt;}
.y2c_c01035{bottom:673.916237pt;}
.y2b_c01035{bottom:686.990475pt;}
.y2a_c01035{bottom:687.380187pt;}
.y29_c01035{bottom:687.658281pt;}
.y28_c01035{bottom:688.667165pt;}
.y27_c01035{bottom:689.421025pt;}
.y26_c01035{bottom:689.668619pt;}
.y25_c01035{bottom:690.153560pt;}
.y24_c01035{bottom:690.476916pt;}
.y23_c01035{bottom:690.947645pt;}
.y22_c01035{bottom:692.105720pt;}
.y21_c01035{bottom:692.476759pt;}
.y20_c01035{bottom:693.202085pt;}
.y1f_c01035{bottom:693.820464pt;}
.y1e_c01035{bottom:694.317891pt;}
.y1d_c01035{bottom:707.771665pt;}
.y1c_c01035{bottom:708.072372pt;}
.y1b_c01035{bottom:709.167739pt;}
.y1a_c01035{bottom:709.777701pt;}
.y19_c01035{bottom:710.504372pt;}
.y18_c01035{bottom:711.169060pt;}
.y17_c01035{bottom:712.005797pt;}
.y16_c01035{bottom:712.336428pt;}
.y15_c01035{bottom:712.628589pt;}
.y14_c01035{bottom:713.215292pt;}
.y13_c01035{bottom:713.630349pt;}
.y12_c01035{bottom:714.239405pt;}
.y11_c01035{bottom:727.641523pt;}
.y10_c01035{bottom:728.550388pt;}
.yf_c01035{bottom:728.935041pt;}
.ye_c01035{bottom:729.608559pt;}
.yd_c01035{bottom:730.653855pt;}
.yc_c01035{bottom:731.288929pt;}
.yb_c01035{bottom:731.721137pt;}
.ya_c01035{bottom:732.611756pt;}
.y9_c01035{bottom:732.771397pt;}
.y8_c01035{bottom:733.370795pt;}
.y7_c01035{bottom:733.875604pt;}
.y6_c01035{bottom:734.642667pt;}
.y2_c01035{bottom:766.076809pt;}
.y3_c01035{bottom:766.695836pt;}
.y4_c01035{bottom:768.061921pt;}
.y5_c01035{bottom:769.684351pt;}
.y1_c01035{bottom:812.172000pt;}
.h18_c01035{height:12.135523pt;}
.h17_c01035{height:19.600000pt;}
.h1b_c01035{height:43.871601pt;}
.h1a_c01035{height:51.339108pt;}
.h19_c01035{height:53.205985pt;}
.h8_c01035{height:57.875028pt;}
.hc_c01035{height:57.877111pt;}
.h4_c01035{height:59.741964pt;}
.h7_c01035{height:60.675432pt;}
.hf_c01035{height:61.619247pt;}
.h6_c01035{height:62.542369pt;}
.h11_c01035{height:62.552872pt;}
.h5_c01035{height:63.475837pt;}
.h16_c01035{height:63.483451pt;}
.h10_c01035{height:63.486497pt;}
.hd_c01035{height:64.411623pt;}
.h14_c01035{height:64.420122pt;}
.h15_c01035{height:64.421764pt;}
.ha_c01035{height:65.342773pt;}
.he_c01035{height:66.287372pt;}
.h13_c01035{height:67.220997pt;}
.h9_c01035{height:68.143178pt;}
.hb_c01035{height:78.411328pt;}
.h12_c01035{height:81.225371pt;}
.h3_c01035{height:122.293623pt;}
.h2_c01035{height:207.245683pt;}
.h0_c01035{height:896.400000pt;}
.h1_c01035{height:896.666667pt;}
.w1_c01035{width:622.666667pt;}
.w0_c01035{width:622.800000pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:69.996000pt;}
.x2_c01035{left:75.341451pt;}
.x57_c01035{left:110.186967pt;}
.x90_c01035{left:113.492267pt;}
.x6d_c01035{left:114.494901pt;}
.x5d_c01035{left:115.684728pt;}
.x3a_c01035{left:116.746297pt;}
.x6_c01035{left:117.721333pt;}
.x3_c01035{left:119.547264pt;}
.xa7_c01035{left:125.085333pt;}
.x81_c01035{left:128.641367pt;}
.x84_c01035{left:129.543367pt;}
.x4e_c01035{left:131.133668pt;}
.x58_c01035{left:138.270491pt;}
.x9f_c01035{left:140.860000pt;}
.x3b_c01035{left:142.582747pt;}
.x1c_c01035{left:145.243508pt;}
.x7a_c01035{left:147.558667pt;}
.x98_c01035{left:150.009333pt;}
.x82_c01035{left:151.208800pt;}
.x28_c01035{left:152.265769pt;}
.x45_c01035{left:154.603357pt;}
.x12_c01035{left:156.060637pt;}
.x4f_c01035{left:161.315813pt;}
.x7_c01035{left:162.842667pt;}
.xa8_c01035{left:164.284000pt;}
.x79_c01035{left:168.744649pt;}
.x7b_c01035{left:169.656000pt;}
.x88_c01035{left:172.018667pt;}
.x5e_c01035{left:173.322779pt;}
.x46_c01035{left:175.315988pt;}
.x64_c01035{left:176.666260pt;}
.x1d_c01035{left:179.578919pt;}
.x6e_c01035{left:180.991524pt;}
.x13_c01035{left:181.966401pt;}
.x96_c01035{left:185.218667pt;}
.x85_c01035{left:186.920600pt;}
.x31_c01035{left:188.215911pt;}
.x47_c01035{left:189.870156pt;}
.x8_c01035{left:192.537333pt;}
.x59_c01035{left:195.650849pt;}
.x87_c01035{left:197.085000pt;}
.x3c_c01035{left:198.287509pt;}
.xb0_c01035{left:202.654433pt;}
.x83_c01035{left:204.265933pt;}
.x75_c01035{left:206.590667pt;}
.x29_c01035{left:211.487439pt;}
.x89_c01035{left:212.470667pt;}
.xb4_c01035{left:214.388313pt;}
.x91_c01035{left:215.994933pt;}
.x4_c01035{left:217.106944pt;}
.x14_c01035{left:218.675036pt;}
.x1e_c01035{left:219.891572pt;}
.x50_c01035{left:222.770771pt;}
.x65_c01035{left:225.397939pt;}
.x9_c01035{left:227.796000pt;}
.x3d_c01035{left:230.611755pt;}
.x48_c01035{left:232.363372pt;}
.x8a_c01035{left:234.237333pt;}
.xa_c01035{left:237.186667pt;}
.x6f_c01035{left:238.825911pt;}
.x1f_c01035{left:240.540565pt;}
.xa9_c01035{left:242.505333pt;}
.x99_c01035{left:243.950667pt;}
.x2a_c01035{left:247.729493pt;}
.x3e_c01035{left:249.645764pt;}
.x49_c01035{left:252.509359pt;}
.xb1_c01035{left:253.778593pt;}
.x51_c01035{left:256.604871pt;}
.x15_c01035{left:257.585027pt;}
.xb5_c01035{left:259.970807pt;}
.x2b_c01035{left:261.245267pt;}
.x66_c01035{left:265.483245pt;}
.x74_c01035{left:271.276149pt;}
.x7c_c01035{left:272.650667pt;}
.x70_c01035{left:274.586764pt;}
.x8b_c01035{left:278.900000pt;}
.x4a_c01035{left:280.365740pt;}
.x52_c01035{left:283.236417pt;}
.x67_c01035{left:285.725232pt;}
.xa4_c01035{left:286.782667pt;}
.xb_c01035{left:289.576000pt;}
.x32_c01035{left:290.966577pt;}
.x5f_c01035{left:291.889411pt;}
.xaa_c01035{left:294.884000pt;}
.x2c_c01035{left:297.183321pt;}
.xa5_c01035{left:298.705333pt;}
.x92_c01035{left:300.748267pt;}
.x3f_c01035{left:301.958663pt;}
.x20_c01035{left:304.896811pt;}
.x60_c01035{left:306.050268pt;}
.x16_c01035{left:309.864577pt;}
.xa0_c01035{left:311.022667pt;}
.xc_c01035{left:315.000000pt;}
.x33_c01035{left:316.642577pt;}
.x8c_c01035{left:319.470667pt;}
.x68_c01035{left:320.948031pt;}
.x71_c01035{left:324.124248pt;}
.x21_c01035{left:331.017691pt;}
.x5_c01035{left:332.949397pt;}
.x76_c01035{left:334.388000pt;}
.x34_c01035{left:336.555911pt;}
.x40_c01035{left:338.453416pt;}
.x8d_c01035{left:342.756000pt;}
.x2d_c01035{left:344.214528pt;}
.x7d_c01035{left:345.888000pt;}
.x22_c01035{left:349.018729pt;}
.x72_c01035{left:350.445577pt;}
.x17_c01035{left:351.395947pt;}
.xd_c01035{left:352.357333pt;}
.x5a_c01035{left:353.650841pt;}
.xab_c01035{left:356.288000pt;}
.x93_c01035{left:359.332267pt;}
.x2e_c01035{left:361.007567pt;}
.x69_c01035{left:365.181201pt;}
.x73_c01035{left:367.975360pt;}
.xb6_c01035{left:370.368913pt;}
.x9a_c01035{left:372.170667pt;}
.x35_c01035{left:374.321244pt;}
.x23_c01035{left:375.975609pt;}
.x8e_c01035{left:380.706667pt;}
.x61_c01035{left:381.629040pt;}
.x4b_c01035{left:383.842227pt;}
.xb7_c01035{left:385.978573pt;}
.x5b_c01035{left:387.175608pt;}
.x24_c01035{left:389.755383pt;}
.x97_c01035{left:393.973333pt;}
.x18_c01035{left:396.808717pt;}
.x2f_c01035{left:398.222932pt;}
.x9b_c01035{left:399.178667pt;}
.xa1_c01035{left:404.948000pt;}
.x53_c01035{left:406.766332pt;}
.x94_c01035{left:411.425600pt;}
.x62_c01035{left:412.926641pt;}
.xe_c01035{left:413.845333pt;}
.x36_c01035{left:416.725244pt;}
.x77_c01035{left:419.604000pt;}
.x4c_c01035{left:420.586313pt;}
.x6a_c01035{left:423.027229pt;}
.xb2_c01035{left:423.961833pt;}
.x54_c01035{left:426.036681pt;}
.x7e_c01035{left:427.498667pt;}
.x41_c01035{left:428.937023pt;}
.x9c_c01035{left:430.169333pt;}
.x25_c01035{left:431.668013pt;}
.xac_c01035{left:433.352000pt;}
.x19_c01035{left:434.964041pt;}
.x95_c01035{left:436.857600pt;}
.xad_c01035{left:450.648000pt;}
.xf_c01035{left:453.464000pt;}
.x6b_c01035{left:454.391497pt;}
.xa2_c01035{left:455.362667pt;}
.x8f_c01035{left:456.552000pt;}
.x55_c01035{left:461.345425pt;}
.x63_c01035{left:462.323631pt;}
.x5c_c01035{left:468.311559pt;}
.x9d_c01035{left:469.296000pt;}
.x42_c01035{left:473.354171pt;}
.x10_c01035{left:476.090667pt;}
.xae_c01035{left:478.022667pt;}
.xa3_c01035{left:479.210667pt;}
.x7f_c01035{left:480.984000pt;}
.x37_c01035{left:485.363911pt;}
.x26_c01035{left:487.719061pt;}
.x86_c01035{left:488.710400pt;}
.xb8_c01035{left:489.893660pt;}
.xb3_c01035{left:492.602027pt;}
.x43_c01035{left:494.225468pt;}
.x30_c01035{left:497.917232pt;}
.x38_c01035{left:501.201244pt;}
.x1a_c01035{left:503.398531pt;}
.x44_c01035{left:507.671681pt;}
.xaf_c01035{left:512.561333pt;}
.x78_c01035{left:515.365333pt;}
.x56_c01035{left:517.101807pt;}
.x9e_c01035{left:520.882667pt;}
.x1b_c01035{left:522.185515pt;}
.x39_c01035{left:523.371911pt;}
.x27_c01035{left:524.805093pt;}
.x6c_c01035{left:525.751739pt;}
.x11_c01035{left:529.553333pt;}
.x4d_c01035{left:530.735907pt;}
.x80_c01035{left:535.693333pt;}
.xa6_c01035{left:539.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_c01036 {
    display:none;
  }
  .loading-indicator_c01036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01036 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01036 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01036" -> "#page-container .classname_c01036")
 */
.pf_c01036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01036 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01036 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01036 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01036 {overflow:visible;}
  }
}
.c_c01036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01036 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01036:after { /* webkit #35443 */
  content: '';
}
.t_c01036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01036 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01036 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01036 { /* info for Javascript */
  display:none;
}
.l_c01036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.000000;font-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_c01036{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);}
.ma2_c01036{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);}
.mb6_c01036{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m6_c01036{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.me9_c01036{transform:matrix(0.033188,-0.000398,0.003000,0.249982,0,0);-ms-transform:matrix(0.033188,-0.000398,0.003000,0.249982,0,0);-webkit-transform:matrix(0.033188,-0.000398,0.003000,0.249982,0,0);}
.m6b_c01036{transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033390,0.000000,0.000000,0.250000,0,0);}
.md1_c01036{transform:matrix(0.069728,-0.000558,0.002000,0.249992,0,0);-ms-transform:matrix(0.069728,-0.000558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.069728,-0.000558,0.002000,0.249992,0,0);}
.m36_c01036{transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095115,0.000000,0.000000,0.250000,0,0);}
.mcb_c01036{transform:matrix(0.095437,-0.000763,0.002000,0.249992,0,0);-ms-transform:matrix(0.095437,-0.000763,0.002000,0.249992,0,0);-webkit-transform:matrix(0.095437,-0.000763,0.002000,0.249992,0,0);}
.m26_c01036{transform:matrix(0.128905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128905,0.000000,0.000000,0.250000,0,0);}
.m73_c01036{transform:matrix(0.129660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129660,0.000000,0.000000,0.250000,0,0);}
.m55_c01036{transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131820,0.000000,0.000000,0.250000,0,0);}
.md4_c01036{transform:matrix(0.145395,-0.001745,0.003000,0.249982,0,0);-ms-transform:matrix(0.145395,-0.001745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145395,-0.001745,0.003000,0.249982,0,0);}
.m9c_c01036{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);}
.mc6_c01036{transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);-ms-transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147725,-0.001182,0.002000,0.249992,0,0);}
.m9e_c01036{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);}
.m2a_c01036{transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);}
.m84_c01036{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);}
.m58_c01036{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);}
.m92_c01036{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);}
.m7_c01036{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);}
.m3b_c01036{transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154910,0.000000,0.000000,0.250000,0,0);}
.m4e_c01036{transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155285,0.000000,0.000000,0.250000,0,0);}
.mb3_c01036{transform:matrix(0.156035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156035,0.000000,0.000000,0.250000,0,0);}
.m3c_c01036{transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157635,0.000000,0.000000,0.250000,0,0);}
.mbd_c01036{transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158135,0.000000,0.000000,0.250000,0,0);}
.mc9_c01036{transform:matrix(0.158465,-0.001268,0.002000,0.249992,0,0);-ms-transform:matrix(0.158465,-0.001268,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158465,-0.001268,0.002000,0.249992,0,0);}
.md2_c01036{transform:matrix(0.158734,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158734,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158734,-0.001905,0.003000,0.249982,0,0);}
.m7e_c01036{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);}
.mbc_c01036{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);}
.m9d_c01036{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);}
.mb5_c01036{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);}
.m47_c01036{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);}
.me2_c01036{transform:matrix(0.161718,-0.001941,0.003000,0.249982,0,0);-ms-transform:matrix(0.161718,-0.001941,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161718,-0.001941,0.003000,0.249982,0,0);}
.maa_c01036{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);}
.m8c_c01036{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);}
.m41_c01036{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);}
.m80_c01036{transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163845,0.000000,0.000000,0.250000,0,0);}
.m95_c01036{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);}
.m9_c01036{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.ma9_c01036{transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166810,0.000000,0.000000,0.250000,0,0);}
.mb2_c01036{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);}
.m59_c01036{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);}
.m7a_c01036{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);}
.mba_c01036{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);}
.m8b_c01036{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);}
.m12_c01036{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);}
.m9a_c01036{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);}
.mcc_c01036{transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);-ms-transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169580,-0.001357,0.002000,0.249992,0,0);}
.m71_c01036{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);}
.m85_c01036{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);}
.m86_c01036{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);}
.m13_c01036{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);}
.mbf_c01036{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);}
.mc3_c01036{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);}
.m90_c01036{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);}
.mc_c01036{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);}
.m65_c01036{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);}
.m8e_c01036{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);}
.m93_c01036{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);}
.me0_c01036{transform:matrix(0.174782,-0.002097,0.003000,0.249982,0,0);-ms-transform:matrix(0.174782,-0.002097,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174782,-0.002097,0.003000,0.249982,0,0);}
.m8d_c01036{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);}
.mc2_c01036{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);}
.m5b_c01036{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);}
.m75_c01036{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);}
.mcd_c01036{transform:matrix(0.175904,-0.001407,0.002000,0.249992,0,0);-ms-transform:matrix(0.175904,-0.001407,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175904,-0.001407,0.002000,0.249992,0,0);}
.m6f_c01036{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);}
.m45_c01036{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);}
.m87_c01036{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);}
.me3_c01036{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);}
.mb4_c01036{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);}
.m2e_c01036{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);}
.mb0_c01036{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);}
.m15_c01036{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);}
.md3_c01036{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);}
.m6d_c01036{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);}
.m78_c01036{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);}
.mc4_c01036{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);}
.m7b_c01036{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);}
.mbb_c01036{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);}
.me5_c01036{transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);-ms-transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180592,-0.002167,0.003000,0.249982,0,0);}
.mc0_c01036{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);}
.m10_c01036{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);}
.m70_c01036{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);}
.m2b_c01036{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);}
.m6c_c01036{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);}
.m72_c01036{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);}
.m43_c01036{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);}
.md6_c01036{transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183812,-0.002206,0.003000,0.249982,0,0);}
.m61_c01036{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);}
.mbe_c01036{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);}
.m1f_c01036{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);}
.m64_c01036{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);}
.m96_c01036{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);}
.m14_c01036{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);}
.m4f_c01036{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);}
.m4d_c01036{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);}
.m94_c01036{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);}
.m74_c01036{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);}
.mce_c01036{transform:matrix(0.188684,-0.001509,0.002000,0.249992,0,0);-ms-transform:matrix(0.188684,-0.001509,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188684,-0.001509,0.002000,0.249992,0,0);}
.mb_c01036{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);}
.m50_c01036{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);}
.m5f_c01036{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);}
.mc8_c01036{transform:matrix(0.191044,-0.001528,0.002000,0.249992,0,0);-ms-transform:matrix(0.191044,-0.001528,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191044,-0.001528,0.002000,0.249992,0,0);}
.m20_c01036{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);}
.m1e_c01036{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);}
.m7f_c01036{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);}
.m5a_c01036{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);}
.m38_c01036{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);}
.m77_c01036{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_c01036{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);}
.m2c_c01036{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);}
.m83_c01036{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);}
.mc5_c01036{transform:matrix(0.196129,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196129,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196129,-0.001569,0.002000,0.249992,0,0);}
.m53_c01036{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);}
.mdc_c01036{transform:matrix(0.197091,-0.002365,0.003000,0.249982,0,0);-ms-transform:matrix(0.197091,-0.002365,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197091,-0.002365,0.003000,0.249982,0,0);}
.mc1_c01036{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);}
.m4a_c01036{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);}
.m16_c01036{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);}
.me4_c01036{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);}
.m66_c01036{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);}
.mab_c01036{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);}
.m6a_c01036{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);}
.mca_c01036{transform:matrix(0.199704,-0.001598,0.002000,0.249992,0,0);-ms-transform:matrix(0.199704,-0.001598,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199704,-0.001598,0.002000,0.249992,0,0);}
.m3f_c01036{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);}
.m37_c01036{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);}
.m49_c01036{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);}
.md9_c01036{transform:matrix(0.201490,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201490,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201490,-0.002418,0.003000,0.249982,0,0);}
.m5_c01036{transform:matrix(0.201555,0.002822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201555,0.002822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201555,0.002822,-0.003500,0.249976,0,0);}
.m89_c01036{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);}
.m88_c01036{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);}
.m44_c01036{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);}
.m81_c01036{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);}
.m9f_c01036{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);}
.m42_c01036{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);}
.ma_c01036{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);}
.me7_c01036{transform:matrix(0.206520,-0.002478,0.003000,0.249982,0,0);-ms-transform:matrix(0.206520,-0.002478,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206520,-0.002478,0.003000,0.249982,0,0);}
.m8a_c01036{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);}
.m79_c01036{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);}
.mea_c01036{transform:matrix(0.207535,-0.002490,0.003000,0.249982,0,0);-ms-transform:matrix(0.207535,-0.002490,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207535,-0.002490,0.003000,0.249982,0,0);}
.ma4_c01036{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);}
.m91_c01036{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);}
.me1_c01036{transform:matrix(0.208135,-0.002498,0.003000,0.249982,0,0);-ms-transform:matrix(0.208135,-0.002498,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208135,-0.002498,0.003000,0.249982,0,0);}
.m2d_c01036{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);}
.mc7_c01036{transform:matrix(0.209088,-0.001673,0.002000,0.249992,0,0);-ms-transform:matrix(0.209088,-0.001673,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209088,-0.001673,0.002000,0.249992,0,0);}
.m29_c01036{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);}
.m8_c01036{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);}
.md_c01036{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);}
.m34_c01036{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);}
.mf_c01036{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);}
.m24_c01036{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);}
.m82_c01036{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);}
.mb1_c01036{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);}
.ma0_c01036{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);}
.ma1_c01036{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);}
.m6e_c01036{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);}
.m40_c01036{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);}
.me8_c01036{transform:matrix(0.215789,-0.002589,0.003000,0.249982,0,0);-ms-transform:matrix(0.215789,-0.002589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215789,-0.002589,0.003000,0.249982,0,0);}
.md8_c01036{transform:matrix(0.216379,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216379,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216379,-0.002597,0.003000,0.249982,0,0);}
.m48_c01036{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);}
.m35_c01036{transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218070,0.000000,0.000000,0.250000,0,0);}
.me6_c01036{transform:matrix(0.220614,-0.002647,0.003000,0.249982,0,0);-ms-transform:matrix(0.220614,-0.002647,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220614,-0.002647,0.003000,0.249982,0,0);}
.m39_c01036{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);}
.md5_c01036{transform:matrix(0.223474,-0.002682,0.003000,0.249982,0,0);-ms-transform:matrix(0.223474,-0.002682,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223474,-0.002682,0.003000,0.249982,0,0);}
.m8f_c01036{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);}
.m1d_c01036{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);}
.m46_c01036{transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225015,0.000000,0.000000,0.250000,0,0);}
.m3a_c01036{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);}
.m17_c01036{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);}
.m62_c01036{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m2f_c01036{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);}
.md7_c01036{transform:matrix(0.238013,-0.002856,0.003000,0.249982,0,0);-ms-transform:matrix(0.238013,-0.002856,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238013,-0.002856,0.003000,0.249982,0,0);}
.m1b_c01036{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.maf_c01036{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m4b_c01036{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);}
.mac_c01036{transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);}
.m11_c01036{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);}
.mec_c01036{transform:matrix(0.246057,-0.002953,0.003000,0.249982,0,0);-ms-transform:matrix(0.246057,-0.002953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246057,-0.002953,0.003000,0.249982,0,0);}
.m1a_c01036{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m98_c01036{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);}
.m76_c01036{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);}
.m33_c01036{transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254145,0.000000,0.000000,0.250000,0,0);}
.m7c_c01036{transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258685,0.000000,0.000000,0.250000,0,0);}
.m4c_c01036{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);}
.m3_c01036{transform:matrix(0.262919,0.003681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262919,0.003681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262919,0.003681,-0.003500,0.249976,0,0);}
.m21_c01036{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);}
.m57_c01036{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);}
.m18_c01036{transform:matrix(0.266185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266185,0.000000,0.000000,0.250000,0,0);}
.m1c_c01036{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);}
.m51_c01036{transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);}
.m31_c01036{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m52_c01036{transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273680,0.000000,0.000000,0.250000,0,0);}
.m19_c01036{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);}
.m3d_c01036{transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288360,0.000000,0.000000,0.250000,0,0);}
.meb_c01036{transform:matrix(0.292209,-0.003507,0.003000,0.249982,0,0);-ms-transform:matrix(0.292209,-0.003507,0.003000,0.249982,0,0);-webkit-transform:matrix(0.292209,-0.003507,0.003000,0.249982,0,0);}
.mb9_c01036{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);}
.me_c01036{transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);}
.m4_c01036{transform:matrix(0.301460,0.004220,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301460,0.004220,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301460,0.004220,-0.003500,0.249976,0,0);}
.m25_c01036{transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302350,0.000000,0.000000,0.250000,0,0);}
.m1_c01036{transform:matrix(0.303793,0.002734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.303793,0.002734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.303793,0.002734,-0.002250,0.249990,0,0);}
.m68_c01036{transform:matrix(0.306405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306405,0.000000,0.000000,0.250000,0,0);}
.m3e_c01036{transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314040,0.000000,0.000000,0.250000,0,0);}
.mcf_c01036{transform:matrix(0.315670,-0.002525,0.002000,0.249992,0,0);-ms-transform:matrix(0.315670,-0.002525,0.002000,0.249992,0,0);-webkit-transform:matrix(0.315670,-0.002525,0.002000,0.249992,0,0);}
.m7d_c01036{transform:matrix(0.318190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318190,0.000000,0.000000,0.250000,0,0);}
.m27_c01036{transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318410,0.000000,0.000000,0.250000,0,0);}
.m28_c01036{transform:matrix(0.325805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325805,0.000000,0.000000,0.250000,0,0);}
.mad_c01036{transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330085,0.000000,0.000000,0.250000,0,0);}
.m60_c01036{transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333480,0.000000,0.000000,0.250000,0,0);}
.m5c_c01036{transform:matrix(0.334145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334145,0.000000,0.000000,0.250000,0,0);}
.mae_c01036{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m69_c01036{transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349710,0.000000,0.000000,0.250000,0,0);}
.mdb_c01036{transform:matrix(0.359649,-0.004316,0.003000,0.249982,0,0);-ms-transform:matrix(0.359649,-0.004316,0.003000,0.249982,0,0);-webkit-transform:matrix(0.359649,-0.004316,0.003000,0.249982,0,0);}
.mda_c01036{transform:matrix(0.360339,-0.004324,0.003000,0.249982,0,0);-ms-transform:matrix(0.360339,-0.004324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.360339,-0.004324,0.003000,0.249982,0,0);}
.m32_c01036{transform:matrix(0.364855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364855,0.000000,0.000000,0.250000,0,0);}
.ma6_c01036{transform:matrix(0.366465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366465,0.000000,0.000000,0.250000,0,0);}
.m99_c01036{transform:matrix(0.370785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370785,0.000000,0.000000,0.250000,0,0);}
.mb7_c01036{transform:matrix(0.373625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373625,0.000000,0.000000,0.250000,0,0);}
.m30_c01036{transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);}
.ma7_c01036{transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385675,0.000000,0.000000,0.250000,0,0);}
.m97_c01036{transform:matrix(0.410300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410300,0.000000,0.000000,0.250000,0,0);}
.m23_c01036{transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415530,0.000000,0.000000,0.250000,0,0);}
.m2_c01036{transform:matrix(0.437037,0.006119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.437037,0.006119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.437037,0.006119,-0.003500,0.249976,0,0);}
.mdd_c01036{transform:matrix(0.440753,-0.005289,0.003000,0.249982,0,0);-ms-transform:matrix(0.440753,-0.005289,0.003000,0.249982,0,0);-webkit-transform:matrix(0.440753,-0.005289,0.003000,0.249982,0,0);}
.m22_c01036{transform:matrix(0.441240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441240,0.000000,0.000000,0.250000,0,0);}
.m9b_c01036{transform:matrix(0.445760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445760,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{transform:matrix(0.450677,0.004056,-0.002250,0.249990,0,0);-ms-transform:matrix(0.450677,0.004056,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.450677,0.004056,-0.002250,0.249990,0,0);}
.mb8_c01036{transform:matrix(0.460125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460125,0.000000,0.000000,0.250000,0,0);}
.mde_c01036{transform:matrix(0.462917,-0.005555,0.003000,0.249982,0,0);-ms-transform:matrix(0.462917,-0.005555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.462917,-0.005555,0.003000,0.249982,0,0);}
.m63_c01036{transform:matrix(0.495055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495055,0.000000,0.000000,0.250000,0,0);}
.mdf_c01036{transform:matrix(0.541371,-0.006496,0.003000,0.249982,0,0);-ms-transform:matrix(0.541371,-0.006496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.541371,-0.006496,0.003000,0.249982,0,0);}
.m56_c01036{transform:matrix(0.597340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597340,0.000000,0.000000,0.250000,0,0);}
.m54_c01036{transform:matrix(0.612735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612735,0.000000,0.000000,0.250000,0,0);}
.md0_c01036{transform:matrix(0.684543,-0.005476,0.002000,0.249992,0,0);-ms-transform:matrix(0.684543,-0.005476,0.002000,0.249992,0,0);-webkit-transform:matrix(0.684543,-0.005476,0.002000,0.249992,0,0);}
.m5e_c01036{transform:matrix(0.798240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798240,0.000000,0.000000,0.250000,0,0);}
.m5d_c01036{transform:matrix(0.928360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928360,0.000000,0.000000,0.250000,0,0);}
.m67_c01036{transform:matrix(1.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250225,0.000000,0.000000,0.250000,0,0);}
.ma3_c01036{transform:matrix(2.516925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.516925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.516925,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls0_c01036{letter-spacing:0.000000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01036{word-spacing:0.000000px;}
.fc0_c01036{color:transparent;}
.fsa_c01036{font-size:18.900000px;}
.fsc_c01036{font-size:22.050000px;}
.fs9_c01036{font-size:24.150000px;}
.fs13_c01036{font-size:51.453704px;}
.fs12_c01036{font-size:57.754158px;}
.fs4_c01036{font-size:61.950000px;}
.fs5_c01036{font-size:63.000000px;}
.fs3_c01036{font-size:64.050000px;}
.fs8_c01036{font-size:65.100000px;}
.fsd_c01036{font-size:68.250000px;}
.fs7_c01036{font-size:69.300000px;}
.fs6_c01036{font-size:70.350000px;}
.fse_c01036{font-size:71.400000px;}
.fs11_c01036{font-size:71.402285px;}
.fs2_c01036{font-size:72.450000px;}
.fsf_c01036{font-size:73.500000px;}
.fsb_c01036{font-size:74.550000px;}
.fs10_c01036{font-size:75.600000px;}
.fs1_c01036{font-size:91.358952px;}
.fs0_c01036{font-size:199.508080px;}
.y0_c01036{bottom:0.000000px;}
.y4b_c01036{bottom:169.262040px;}
.y4c_c01036{bottom:169.262442px;}
.y4a_c01036{bottom:169.262736px;}
.y49_c01036{bottom:169.263216px;}
.y43_c01036{bottom:169.263276px;}
.y42_c01036{bottom:169.263594px;}
.y46_c01036{bottom:169.263804px;}
.y41_c01036{bottom:169.263810px;}
.y48_c01036{bottom:169.263852px;}
.y44_c01036{bottom:169.263900px;}
.y45_c01036{bottom:169.264182px;}
.y47_c01036{bottom:169.264230px;}
.y32_c01036{bottom:185.491500px;}
.y33_c01036{bottom:185.695692px;}
.y34_c01036{bottom:186.133182px;}
.y35_c01036{bottom:186.366480px;}
.y36_c01036{bottom:186.573894px;}
.y37_c01036{bottom:187.027350px;}
.y38_c01036{bottom:187.215954px;}
.y39_c01036{bottom:187.419588px;}
.y3a_c01036{bottom:188.162124px;}
.y3b_c01036{bottom:188.336256px;}
.y3c_c01036{bottom:188.716560px;}
.y3d_c01036{bottom:189.397572px;}
.y3e_c01036{bottom:190.123008px;}
.y3f_c01036{bottom:190.376520px;}
.y40_c01036{bottom:191.074560px;}
.y25_c01036{bottom:236.520000px;}
.y26_c01036{bottom:236.716884px;}
.y27_c01036{bottom:237.105600px;}
.y28_c01036{bottom:237.470676px;}
.y29_c01036{bottom:237.703932px;}
.y2a_c01036{bottom:238.043112px;}
.y2b_c01036{bottom:238.543608px;}
.y2c_c01036{bottom:238.663056px;}
.y2d_c01036{bottom:238.842348px;}
.y2e_c01036{bottom:239.121048px;}
.y2f_c01036{bottom:239.641680px;}
.y30_c01036{bottom:239.797128px;}
.y31_c01036{bottom:240.410568px;}
.y24_c01036{bottom:260.580000px;}
.y23_c01036{bottom:282.718500px;}
.y22_c01036{bottom:318.759000px;}
.y21_c01036{bottom:341.584500px;}
.y20_c01036{bottom:365.040000px;}
.y1f_c01036{bottom:386.661000px;}
.y1e_c01036{bottom:410.656500px;}
.y1b_c01036{bottom:426.061500px;}
.y1c_c01036{bottom:428.899500px;}
.y1d_c01036{bottom:429.357000px;}
.y1a_c01036{bottom:447.703500px;}
.y19_c01036{bottom:468.141000px;}
.y18_c01036{bottom:491.517000px;}
.y17_c01036{bottom:513.783000px;}
.y16_c01036{bottom:536.128500px;}
.y15_c01036{bottom:558.807000px;}
.y14_c01036{bottom:571.320000px;}
.y13_c01036{bottom:581.262000px;}
.y12_c01036{bottom:604.393500px;}
.y11_c01036{bottom:638.010000px;}
.y10_c01036{bottom:642.070500px;}
.yf_c01036{bottom:648.961500px;}
.ye_c01036{bottom:672.153000px;}
.yd_c01036{bottom:694.789500px;}
.yc_c01036{bottom:717.120000px;}
.yb_c01036{bottom:740.457000px;}
.ya_c01036{bottom:763.065000px;}
.y9_c01036{bottom:780.594000px;}
.y8_c01036{bottom:803.427000px;}
.y7_c01036{bottom:827.503500px;}
.y6_c01036{bottom:868.870050px;}
.y5_c01036{bottom:869.936703px;}
.y4_c01036{bottom:870.908184px;}
.y3_c01036{bottom:873.993000px;}
.y2_c01036{bottom:915.712373px;}
.y1_c01036{bottom:916.651500px;}
.hc_c01036{height:18.900000px;}
.he_c01036{height:22.050000px;}
.hb_c01036{height:24.150000px;}
.h15_c01036{height:51.453704px;}
.h14_c01036{height:57.754158px;}
.h6_c01036{height:61.950000px;}
.h7_c01036{height:63.000000px;}
.h5_c01036{height:64.050000px;}
.ha_c01036{height:65.100000px;}
.hf_c01036{height:68.250000px;}
.h9_c01036{height:69.300000px;}
.h8_c01036{height:70.350000px;}
.h10_c01036{height:71.400000px;}
.h13_c01036{height:71.402285px;}
.h4_c01036{height:72.450000px;}
.h11_c01036{height:73.500000px;}
.hd_c01036{height:74.550000px;}
.h12_c01036{height:75.600000px;}
.h3_c01036{height:91.358952px;}
.h2_c01036{height:199.508080px;}
.h1_c01036{height:1005.000000px;}
.h0_c01036{height:1005.150000px;}
.w0_c01036{width:715.200000px;}
.w1_c01036{width:715.500000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:59.998500px;}
.x56_c01036{left:83.970000px;}
.x7_c01036{left:97.470000px;}
.x57_c01036{left:107.460000px;}
.x8_c01036{left:111.780000px;}
.x5f_c01036{left:113.400000px;}
.x93_c01036{left:114.864000px;}
.x21_c01036{left:129.600000px;}
.x9_c01036{left:130.950000px;}
.x7a_c01036{left:132.438000px;}
.x1d_c01036{left:133.920000px;}
.x8a_c01036{left:138.888000px;}
.x3c_c01036{left:144.720000px;}
.x51_c01036{left:146.070000px;}
.x14_c01036{left:151.740000px;}
.x68_c01036{left:152.820000px;}
.x75_c01036{left:156.600000px;}
.x71_c01036{left:157.950000px;}
.x9a_c01036{left:161.463420px;}
.x2_c01036{left:164.346000px;}
.x60_c01036{left:166.590000px;}
.x94_c01036{left:168.337500px;}
.xa_c01036{left:169.560000px;}
.x2f_c01036{left:170.910000px;}
.x2b_c01036{left:173.610000px;}
.x44_c01036{left:177.660000px;}
.x82_c01036{left:178.738500px;}
.x15_c01036{left:180.090000px;}
.x30_c01036{left:184.680000px;}
.x3d_c01036{left:185.760000px;}
.x8b_c01036{left:187.477500px;}
.x3_c01036{left:189.853500px;}
.xb_c01036{left:191.700000px;}
.x69_c01036{left:193.320000px;}
.x52_c01036{left:194.670000px;}
.x7d_c01036{left:197.638500px;}
.x76_c01036{left:201.960000px;}
.x79_c01036{left:203.580000px;}
.x45_c01036{left:204.660000px;}
.x3e_c01036{left:210.060000px;}
.x58_c01036{left:211.680000px;}
.x22_c01036{left:216.540000px;}
.x53_c01036{left:219.240000px;}
.x84_c01036{left:221.940000px;}
.x46_c01036{left:226.260000px;}
.x3f_c01036{left:228.150000px;}
.x31_c01036{left:230.040000px;}
.x8c_c01036{left:233.112000px;}
.x23_c01036{left:234.360000px;}
.x61_c01036{left:236.520000px;}
.x7e_c01036{left:241.108500px;}
.x95_c01036{left:242.851500px;}
.x16_c01036{left:245.700000px;}
.x85_c01036{left:247.590000px;}
.xc_c01036{left:248.670000px;}
.x54_c01036{left:249.750000px;}
.x32_c01036{left:255.420000px;}
.x62_c01036{left:259.470000px;}
.x6a_c01036{left:262.440000px;}
.x24_c01036{left:264.600000px;}
.x7f_c01036{left:268.918500px;}
.x17_c01036{left:270.810000px;}
.x77_c01036{left:272.970000px;}
.xd_c01036{left:275.400000px;}
.x72_c01036{left:280.800000px;}
.x47_c01036{left:284.580000px;}
.x9b_c01036{left:287.561064px;}
.x86_c01036{left:289.170000px;}
.x1e_c01036{left:291.330000px;}
.x74_c01036{left:293.490000px;}
.x63_c01036{left:298.350000px;}
.x48_c01036{left:300.510000px;}
.x2c_c01036{left:303.750000px;}
.x81_c01036{left:305.368500px;}
.x1f_c01036{left:310.500000px;}
.x40_c01036{left:312.660000px;}
.x25_c01036{left:315.090000px;}
.x33_c01036{left:325.350000px;}
.x6b_c01036{left:327.240000px;}
.x20_c01036{left:331.020000px;}
.x26_c01036{left:333.450000px;}
.x83_c01036{left:334.798500px;}
.x59_c01036{left:338.040000px;}
.x87_c01036{left:342.360000px;}
.xe_c01036{left:344.250000px;}
.x5e_c01036{left:347.220000px;}
.x96_c01036{left:351.927000px;}
.x49_c01036{left:353.970000px;}
.x18_c01036{left:355.050000px;}
.x78_c01036{left:356.400000px;}
.x27_c01036{left:360.180000px;}
.x2d_c01036{left:362.610000px;}
.x64_c01036{left:364.500000px;}
.xf_c01036{left:365.850000px;}
.x8d_c01036{left:367.228500px;}
.x80_c01036{left:372.328500px;}
.x6c_c01036{left:375.300000px;}
.x73_c01036{left:376.650000px;}
.x34_c01036{left:377.730000px;}
.x4a_c01036{left:380.700000px;}
.x2e_c01036{left:382.590000px;}
.x97_c01036{left:383.619000px;}
.x5a_c01036{left:385.560000px;}
.x6d_c01036{left:391.770000px;}
.x35_c01036{left:395.820000px;}
.x10_c01036{left:397.170000px;}
.x9c_c01036{left:398.269530px;}
.x4f_c01036{left:399.330000px;}
.x8e_c01036{left:404.571000px;}
.x36_c01036{left:408.510000px;}
.x4_c01036{left:410.197500px;}
.x19_c01036{left:413.370000px;}
.x65_c01036{left:415.260000px;}
.x28_c01036{left:416.880000px;}
.x37_c01036{left:420.930000px;}
.x41_c01036{left:422.010000px;}
.x11_c01036{left:433.890000px;}
.x50_c01036{left:436.590000px;}
.x8f_c01036{left:439.408500px;}
.x6e_c01036{left:440.640000px;}
.x7b_c01036{left:447.769500px;}
.x4b_c01036{left:451.170000px;}
.x29_c01036{left:455.760000px;}
.x2a_c01036{left:458.190000px;}
.x38_c01036{left:459.270000px;}
.x1a_c01036{left:461.700000px;}
.x5b_c01036{left:466.560000px;}
.x6f_c01036{left:471.690000px;}
.x4c_c01036{left:473.040000px;}
.x66_c01036{left:477.090000px;}
.x5_c01036{left:479.589000px;}
.x88_c01036{left:489.240000px;}
.x12_c01036{left:490.320000px;}
.x1b_c01036{left:492.480000px;}
.x7c_c01036{left:498.528000px;}
.x98_c01036{left:500.823000px;}
.x67_c01036{left:502.200000px;}
.x90_c01036{left:504.487500px;}
.x5c_c01036{left:509.490000px;}
.x13_c01036{left:512.460000px;}
.x4d_c01036{left:521.100000px;}
.x91_c01036{left:523.918500px;}
.x39_c01036{left:528.390000px;}
.x89_c01036{left:533.520000px;}
.x55_c01036{left:536.760000px;}
.x42_c01036{left:540.270000px;}
.x5d_c01036{left:543.240000px;}
.x70_c01036{left:547.020000px;}
.x3a_c01036{left:548.640000px;}
.x6_c01036{left:555.778500px;}
.x43_c01036{left:564.570000px;}
.x1c_c01036{left:569.970000px;}
.x4e_c01036{left:571.050000px;}
.x3b_c01036{left:578.070000px;}
.x99_c01036{left:580.119000px;}
.x92_c01036{left:600.598500px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws0_c01036{word-spacing:0.000000pt;}
.fsa_c01036{font-size:16.800000pt;}
.fsc_c01036{font-size:19.600000pt;}
.fs9_c01036{font-size:21.466667pt;}
.fs13_c01036{font-size:45.736626pt;}
.fs12_c01036{font-size:51.337029pt;}
.fs4_c01036{font-size:55.066667pt;}
.fs5_c01036{font-size:56.000000pt;}
.fs3_c01036{font-size:56.933333pt;}
.fs8_c01036{font-size:57.866667pt;}
.fsd_c01036{font-size:60.666667pt;}
.fs7_c01036{font-size:61.600000pt;}
.fs6_c01036{font-size:62.533333pt;}
.fse_c01036{font-size:63.466667pt;}
.fs11_c01036{font-size:63.468698pt;}
.fs2_c01036{font-size:64.400000pt;}
.fsf_c01036{font-size:65.333333pt;}
.fsb_c01036{font-size:66.266667pt;}
.fs10_c01036{font-size:67.200000pt;}
.fs1_c01036{font-size:81.207957pt;}
.fs0_c01036{font-size:177.340515pt;}
.y0_c01036{bottom:0.000000pt;}
.y4b_c01036{bottom:150.455147pt;}
.y4c_c01036{bottom:150.455504pt;}
.y4a_c01036{bottom:150.455765pt;}
.y49_c01036{bottom:150.456192pt;}
.y43_c01036{bottom:150.456245pt;}
.y42_c01036{bottom:150.456528pt;}
.y46_c01036{bottom:150.456715pt;}
.y41_c01036{bottom:150.456720pt;}
.y48_c01036{bottom:150.456757pt;}
.y44_c01036{bottom:150.456800pt;}
.y45_c01036{bottom:150.457051pt;}
.y47_c01036{bottom:150.457093pt;}
.y32_c01036{bottom:164.881333pt;}
.y33_c01036{bottom:165.062837pt;}
.y34_c01036{bottom:165.451717pt;}
.y35_c01036{bottom:165.659093pt;}
.y36_c01036{bottom:165.843461pt;}
.y37_c01036{bottom:166.246533pt;}
.y38_c01036{bottom:166.414181pt;}
.y39_c01036{bottom:166.595189pt;}
.y3a_c01036{bottom:167.255221pt;}
.y3b_c01036{bottom:167.410005pt;}
.y3c_c01036{bottom:167.748053pt;}
.y3d_c01036{bottom:168.353397pt;}
.y3e_c01036{bottom:168.998229pt;}
.y3f_c01036{bottom:169.223573pt;}
.y40_c01036{bottom:169.844053pt;}
.y25_c01036{bottom:210.240000pt;}
.y26_c01036{bottom:210.415008pt;}
.y27_c01036{bottom:210.760533pt;}
.y28_c01036{bottom:211.085045pt;}
.y29_c01036{bottom:211.292384pt;}
.y2a_c01036{bottom:211.593877pt;}
.y2b_c01036{bottom:212.038763pt;}
.y2c_c01036{bottom:212.144939pt;}
.y2d_c01036{bottom:212.304309pt;}
.y2e_c01036{bottom:212.552043pt;}
.y2f_c01036{bottom:213.014827pt;}
.y30_c01036{bottom:213.153003pt;}
.y31_c01036{bottom:213.698283pt;}
.y24_c01036{bottom:231.626667pt;}
.y23_c01036{bottom:251.305333pt;}
.y22_c01036{bottom:283.341333pt;}
.y21_c01036{bottom:303.630667pt;}
.y20_c01036{bottom:324.480000pt;}
.y1f_c01036{bottom:343.698667pt;}
.y1e_c01036{bottom:365.028000pt;}
.y1b_c01036{bottom:378.721333pt;}
.y1c_c01036{bottom:381.244000pt;}
.y1d_c01036{bottom:381.650667pt;}
.y1a_c01036{bottom:397.958667pt;}
.y19_c01036{bottom:416.125333pt;}
.y18_c01036{bottom:436.904000pt;}
.y17_c01036{bottom:456.696000pt;}
.y16_c01036{bottom:476.558667pt;}
.y15_c01036{bottom:496.717333pt;}
.y14_c01036{bottom:507.840000pt;}
.y13_c01036{bottom:516.677333pt;}
.y12_c01036{bottom:537.238667pt;}
.y11_c01036{bottom:567.120000pt;}
.y10_c01036{bottom:570.729333pt;}
.yf_c01036{bottom:576.854667pt;}
.ye_c01036{bottom:597.469333pt;}
.yd_c01036{bottom:617.590667pt;}
.yc_c01036{bottom:637.440000pt;}
.yb_c01036{bottom:658.184000pt;}
.ya_c01036{bottom:678.280000pt;}
.y9_c01036{bottom:693.861333pt;}
.y8_c01036{bottom:714.157333pt;}
.y7_c01036{bottom:735.558667pt;}
.y6_c01036{bottom:772.328933pt;}
.y5_c01036{bottom:773.277069pt;}
.y4_c01036{bottom:774.140608pt;}
.y3_c01036{bottom:776.882667pt;}
.y2_c01036{bottom:813.966553pt;}
.y1_c01036{bottom:814.801333pt;}
.hc_c01036{height:16.800000pt;}
.he_c01036{height:19.600000pt;}
.hb_c01036{height:21.466667pt;}
.h15_c01036{height:45.736626pt;}
.h14_c01036{height:51.337029pt;}
.h6_c01036{height:55.066667pt;}
.h7_c01036{height:56.000000pt;}
.h5_c01036{height:56.933333pt;}
.ha_c01036{height:57.866667pt;}
.hf_c01036{height:60.666667pt;}
.h9_c01036{height:61.600000pt;}
.h8_c01036{height:62.533333pt;}
.h10_c01036{height:63.466667pt;}
.h13_c01036{height:63.468698pt;}
.h4_c01036{height:64.400000pt;}
.h11_c01036{height:65.333333pt;}
.hd_c01036{height:66.266667pt;}
.h12_c01036{height:67.200000pt;}
.h3_c01036{height:81.207957pt;}
.h2_c01036{height:177.340515pt;}
.h1_c01036{height:893.333333pt;}
.h0_c01036{height:893.466667pt;}
.w0_c01036{width:635.733333pt;}
.w1_c01036{width:636.000000pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:53.332000pt;}
.x56_c01036{left:74.640000pt;}
.x7_c01036{left:86.640000pt;}
.x57_c01036{left:95.520000pt;}
.x8_c01036{left:99.360000pt;}
.x5f_c01036{left:100.800000pt;}
.x93_c01036{left:102.101333pt;}
.x21_c01036{left:115.200000pt;}
.x9_c01036{left:116.400000pt;}
.x7a_c01036{left:117.722667pt;}
.x1d_c01036{left:119.040000pt;}
.x8a_c01036{left:123.456000pt;}
.x3c_c01036{left:128.640000pt;}
.x51_c01036{left:129.840000pt;}
.x14_c01036{left:134.880000pt;}
.x68_c01036{left:135.840000pt;}
.x75_c01036{left:139.200000pt;}
.x71_c01036{left:140.400000pt;}
.x9a_c01036{left:143.523040pt;}
.x2_c01036{left:146.085333pt;}
.x60_c01036{left:148.080000pt;}
.x94_c01036{left:149.633333pt;}
.xa_c01036{left:150.720000pt;}
.x2f_c01036{left:151.920000pt;}
.x2b_c01036{left:154.320000pt;}
.x44_c01036{left:157.920000pt;}
.x82_c01036{left:158.878667pt;}
.x15_c01036{left:160.080000pt;}
.x30_c01036{left:164.160000pt;}
.x3d_c01036{left:165.120000pt;}
.x8b_c01036{left:166.646667pt;}
.x3_c01036{left:168.758667pt;}
.xb_c01036{left:170.400000pt;}
.x69_c01036{left:171.840000pt;}
.x52_c01036{left:173.040000pt;}
.x7d_c01036{left:175.678667pt;}
.x76_c01036{left:179.520000pt;}
.x79_c01036{left:180.960000pt;}
.x45_c01036{left:181.920000pt;}
.x3e_c01036{left:186.720000pt;}
.x58_c01036{left:188.160000pt;}
.x22_c01036{left:192.480000pt;}
.x53_c01036{left:194.880000pt;}
.x84_c01036{left:197.280000pt;}
.x46_c01036{left:201.120000pt;}
.x3f_c01036{left:202.800000pt;}
.x31_c01036{left:204.480000pt;}
.x8c_c01036{left:207.210667pt;}
.x23_c01036{left:208.320000pt;}
.x61_c01036{left:210.240000pt;}
.x7e_c01036{left:214.318667pt;}
.x95_c01036{left:215.868000pt;}
.x16_c01036{left:218.400000pt;}
.x85_c01036{left:220.080000pt;}
.xc_c01036{left:221.040000pt;}
.x54_c01036{left:222.000000pt;}
.x32_c01036{left:227.040000pt;}
.x62_c01036{left:230.640000pt;}
.x6a_c01036{left:233.280000pt;}
.x24_c01036{left:235.200000pt;}
.x7f_c01036{left:239.038667pt;}
.x17_c01036{left:240.720000pt;}
.x77_c01036{left:242.640000pt;}
.xd_c01036{left:244.800000pt;}
.x72_c01036{left:249.600000pt;}
.x47_c01036{left:252.960000pt;}
.x9b_c01036{left:255.609835pt;}
.x86_c01036{left:257.040000pt;}
.x1e_c01036{left:258.960000pt;}
.x74_c01036{left:260.880000pt;}
.x63_c01036{left:265.200000pt;}
.x48_c01036{left:267.120000pt;}
.x2c_c01036{left:270.000000pt;}
.x81_c01036{left:271.438667pt;}
.x1f_c01036{left:276.000000pt;}
.x40_c01036{left:277.920000pt;}
.x25_c01036{left:280.080000pt;}
.x33_c01036{left:289.200000pt;}
.x6b_c01036{left:290.880000pt;}
.x20_c01036{left:294.240000pt;}
.x26_c01036{left:296.400000pt;}
.x83_c01036{left:297.598667pt;}
.x59_c01036{left:300.480000pt;}
.x87_c01036{left:304.320000pt;}
.xe_c01036{left:306.000000pt;}
.x5e_c01036{left:308.640000pt;}
.x96_c01036{left:312.824000pt;}
.x49_c01036{left:314.640000pt;}
.x18_c01036{left:315.600000pt;}
.x78_c01036{left:316.800000pt;}
.x27_c01036{left:320.160000pt;}
.x2d_c01036{left:322.320000pt;}
.x64_c01036{left:324.000000pt;}
.xf_c01036{left:325.200000pt;}
.x8d_c01036{left:326.425333pt;}
.x80_c01036{left:330.958667pt;}
.x6c_c01036{left:333.600000pt;}
.x73_c01036{left:334.800000pt;}
.x34_c01036{left:335.760000pt;}
.x4a_c01036{left:338.400000pt;}
.x2e_c01036{left:340.080000pt;}
.x97_c01036{left:340.994667pt;}
.x5a_c01036{left:342.720000pt;}
.x6d_c01036{left:348.240000pt;}
.x35_c01036{left:351.840000pt;}
.x10_c01036{left:353.040000pt;}
.x9c_c01036{left:354.017360pt;}
.x4f_c01036{left:354.960000pt;}
.x8e_c01036{left:359.618667pt;}
.x36_c01036{left:363.120000pt;}
.x4_c01036{left:364.620000pt;}
.x19_c01036{left:367.440000pt;}
.x65_c01036{left:369.120000pt;}
.x28_c01036{left:370.560000pt;}
.x37_c01036{left:374.160000pt;}
.x41_c01036{left:375.120000pt;}
.x11_c01036{left:385.680000pt;}
.x50_c01036{left:388.080000pt;}
.x8f_c01036{left:390.585333pt;}
.x6e_c01036{left:391.680000pt;}
.x7b_c01036{left:398.017333pt;}
.x4b_c01036{left:401.040000pt;}
.x29_c01036{left:405.120000pt;}
.x2a_c01036{left:407.280000pt;}
.x38_c01036{left:408.240000pt;}
.x1a_c01036{left:410.400000pt;}
.x5b_c01036{left:414.720000pt;}
.x6f_c01036{left:419.280000pt;}
.x4c_c01036{left:420.480000pt;}
.x66_c01036{left:424.080000pt;}
.x5_c01036{left:426.301333pt;}
.x88_c01036{left:434.880000pt;}
.x12_c01036{left:435.840000pt;}
.x1b_c01036{left:437.760000pt;}
.x7c_c01036{left:443.136000pt;}
.x98_c01036{left:445.176000pt;}
.x67_c01036{left:446.400000pt;}
.x90_c01036{left:448.433333pt;}
.x5c_c01036{left:452.880000pt;}
.x13_c01036{left:455.520000pt;}
.x4d_c01036{left:463.200000pt;}
.x91_c01036{left:465.705333pt;}
.x39_c01036{left:469.680000pt;}
.x89_c01036{left:474.240000pt;}
.x55_c01036{left:477.120000pt;}
.x42_c01036{left:480.240000pt;}
.x5d_c01036{left:482.880000pt;}
.x70_c01036{left:486.240000pt;}
.x3a_c01036{left:487.680000pt;}
.x6_c01036{left:494.025333pt;}
.x43_c01036{left:501.840000pt;}
.x1c_c01036{left:506.640000pt;}
.x4e_c01036{left:507.600000pt;}
.x3b_c01036{left:513.840000pt;}
.x99_c01036{left:515.661333pt;}
.x92_c01036{left:533.865333pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.000000;font-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_c01037{transform:matrix(0.007500,0.000082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.007500,0.000082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.007500,0.000082,-0.002750,0.249985,0,0);}
.m89_c01037{transform:matrix(0.008999,0.000099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.008999,0.000099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.008999,0.000099,-0.002750,0.249985,0,0);}
.m70_c01037{transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010854,0.000119,-0.002750,0.249985,0,0);}
.m6d_c01037{transform:matrix(0.012039,0.000132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.012039,0.000132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.012039,0.000132,-0.002750,0.249985,0,0);}
.m5d_c01037{transform:matrix(0.012330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012330,0.000000,0.000000,0.250000,0,0);}
.m5b_c01037{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);}
.m8c_c01037{transform:matrix(0.013254,0.000146,-0.002750,0.249985,0,0);-ms-transform:matrix(0.013254,0.000146,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.013254,0.000146,-0.002750,0.249985,0,0);}
.m59_c01037{transform:matrix(0.019145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019145,0.000000,0.000000,0.250000,0,0);}
.md2_c01037{transform:matrix(0.028093,0.000309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.028093,0.000309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.028093,0.000309,-0.002750,0.249985,0,0);}
.m5e_c01037{transform:matrix(0.034090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034090,0.000000,0.000000,0.250000,0,0);}
.m108_c01037{transform:matrix(0.116953,0.001286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.116953,0.001286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.116953,0.001286,-0.002750,0.249985,0,0);}
.m69_c01037{transform:matrix(0.122718,0.001350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.122718,0.001350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.122718,0.001350,-0.002750,0.249985,0,0);}
.m8f_c01037{transform:matrix(0.130932,0.001440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.130932,0.001440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.130932,0.001440,-0.002750,0.249985,0,0);}
.m33_c01037{transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134940,0.000000,0.000000,0.250000,0,0);}
.m92_c01037{transform:matrix(0.135182,0.001487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135182,0.001487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135182,0.001487,-0.002750,0.249985,0,0);}
.m91_c01037{transform:matrix(0.140207,0.001542,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140207,0.001542,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140207,0.001542,-0.002750,0.249985,0,0);}
.m35_c01037{transform:matrix(0.140595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140595,0.000000,0.000000,0.250000,0,0);}
.m3a_c01037{transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141430,0.000000,0.000000,0.250000,0,0);}
.m26_c01037{transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);}
.m31_c01037{transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142680,0.000000,0.000000,0.250000,0,0);}
.mf5_c01037{transform:matrix(0.143346,0.001577,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143346,0.001577,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143346,0.001577,-0.002750,0.249985,0,0);}
.mce_c01037{transform:matrix(0.144071,0.001585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144071,0.001585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144071,0.001585,-0.002750,0.249985,0,0);}
.mf7_c01037{transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144316,0.001587,-0.002750,0.249985,0,0);}
.m109_c01037{transform:matrix(0.144801,0.001593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144801,0.001593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144801,0.001593,-0.002750,0.249985,0,0);}
.me9_c01037{transform:matrix(0.146936,0.001616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.146936,0.001616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.146936,0.001616,-0.002750,0.249985,0,0);}
.m90_c01037{transform:matrix(0.147401,0.001621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147401,0.001621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147401,0.001621,-0.002750,0.249985,0,0);}
.m4e_c01037{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);}
.m17_c01037{transform:matrix(0.149665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149665,0.000000,0.000000,0.250000,0,0);}
.m30_c01037{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);}
.me0_c01037{transform:matrix(0.150971,0.001661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150971,0.001661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150971,0.001661,-0.002750,0.249985,0,0);}
.me8_c01037{transform:matrix(0.152746,0.001680,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152746,0.001680,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152746,0.001680,-0.002750,0.249985,0,0);}
.mf_c01037{transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152835,0.000000,0.000000,0.250000,0,0);}
.me_c01037{transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152885,0.000000,0.000000,0.250000,0,0);}
.ma5_c01037{transform:matrix(0.153586,0.001689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153586,0.001689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153586,0.001689,-0.002750,0.249985,0,0);}
.md6_c01037{transform:matrix(0.153721,0.001691,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153721,0.001691,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153721,0.001691,-0.002750,0.249985,0,0);}
.mc9_c01037{transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153936,0.001693,-0.002750,0.249985,0,0);}
.mb4_c01037{transform:matrix(0.154281,0.001697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154281,0.001697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154281,0.001697,-0.002750,0.249985,0,0);}
.m85_c01037{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);}
.m72_c01037{transform:matrix(0.156151,0.001718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156151,0.001718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156151,0.001718,-0.002750,0.249985,0,0);}
.med_c01037{transform:matrix(0.157250,0.001730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157250,0.001730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157250,0.001730,-0.002750,0.249985,0,0);}
.m2f_c01037{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);}
.m39_c01037{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);}
.m83_c01037{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);}
.mb_c01037{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);}
.mba_c01037{transform:matrix(0.159460,0.001754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159460,0.001754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159460,0.001754,-0.002750,0.249985,0,0);}
.mbc_c01037{transform:matrix(0.160315,0.001763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160315,0.001763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160315,0.001763,-0.002750,0.249985,0,0);}
.mf0_c01037{transform:matrix(0.160410,0.001765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160410,0.001765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160410,0.001765,-0.002750,0.249985,0,0);}
.m2b_c01037{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_c01037{transform:matrix(0.161045,0.001771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161045,0.001771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161045,0.001771,-0.002750,0.249985,0,0);}
.mb3_c01037{transform:matrix(0.162210,0.001784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162210,0.001784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162210,0.001784,-0.002750,0.249985,0,0);}
.m7e_c01037{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);}
.mf6_c01037{transform:matrix(0.162685,0.001790,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162685,0.001790,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162685,0.001790,-0.002750,0.249985,0,0);}
.mca_c01037{transform:matrix(0.163955,0.001804,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163955,0.001804,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163955,0.001804,-0.002750,0.249985,0,0);}
.mbe_c01037{transform:matrix(0.165550,0.001821,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165550,0.001821,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165550,0.001821,-0.002750,0.249985,0,0);}
.m9e_c01037{transform:matrix(0.165955,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165955,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165955,0.001826,-0.002750,0.249985,0,0);}
.ma7_c01037{transform:matrix(0.166450,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166450,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166450,0.001831,-0.002750,0.249985,0,0);}
.mc2_c01037{transform:matrix(0.166705,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166705,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166705,0.001834,-0.002750,0.249985,0,0);}
.ma8_c01037{transform:matrix(0.167065,0.001838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167065,0.001838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167065,0.001838,-0.002750,0.249985,0,0);}
.mfa_c01037{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);}
.mea_c01037{transform:matrix(0.168040,0.001848,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168040,0.001848,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168040,0.001848,-0.002750,0.249985,0,0);}
.mda_c01037{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);}
.m81_c01037{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_c01037{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);}
.m6_c01037{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);}
.mcf_c01037{transform:matrix(0.170780,0.001879,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170780,0.001879,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170780,0.001879,-0.002750,0.249985,0,0);}
.md7_c01037{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);}
.m21_c01037{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);}
.m9c_c01037{transform:matrix(0.172915,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172915,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172915,0.001902,-0.002750,0.249985,0,0);}
.m25_c01037{transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);}
.m37_c01037{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);}
.m82_c01037{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);}
.m9_c01037{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);}
.m1c_c01037{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);}
.md1_c01037{transform:matrix(0.174969,0.001925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174969,0.001925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174969,0.001925,-0.002750,0.249985,0,0);}
.m107_c01037{transform:matrix(0.174979,0.001925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174979,0.001925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174979,0.001925,-0.002750,0.249985,0,0);}
.m4f_c01037{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);}
.mf8_c01037{transform:matrix(0.175134,0.001926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175134,0.001926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175134,0.001926,-0.002750,0.249985,0,0);}
.mbd_c01037{transform:matrix(0.175309,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175309,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175309,0.001928,-0.002750,0.249985,0,0);}
.mdf_c01037{transform:matrix(0.175424,0.001930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175424,0.001930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175424,0.001930,-0.002750,0.249985,0,0);}
.m4c_c01037{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);}
.m2d_c01037{transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176130,0.000000,0.000000,0.250000,0,0);}
.m11_c01037{transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);}
.mc0_c01037{transform:matrix(0.176934,0.001946,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176934,0.001946,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176934,0.001946,-0.002750,0.249985,0,0);}
.me4_c01037{transform:matrix(0.177969,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177969,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177969,0.001958,-0.002750,0.249985,0,0);}
.m7c_c01037{transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179354,0.001973,-0.002750,0.249985,0,0);}
.m7f_c01037{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);}
.m13_c01037{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);}
.m103_c01037{transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179839,0.001978,-0.002750,0.249985,0,0);}
.m9f_c01037{transform:matrix(0.180304,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180304,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180304,0.001983,-0.002750,0.249985,0,0);}
.m28_c01037{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m84_c01037{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);}
.mbb_c01037{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);}
.meb_c01037{transform:matrix(0.183684,0.002021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183684,0.002021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183684,0.002021,-0.002750,0.249985,0,0);}
.m9b_c01037{transform:matrix(0.183929,0.002023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183929,0.002023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183929,0.002023,-0.002750,0.249985,0,0);}
.ma_c01037{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.m1b_c01037{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);}
.m14_c01037{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_c01037{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);}
.mc_c01037{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);}
.m7_c01037{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);}
.m9d_c01037{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);}
.m32_c01037{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);}
.m20_c01037{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);}
.m29_c01037{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);}
.mf4_c01037{transform:matrix(0.189134,0.002080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189134,0.002080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189134,0.002080,-0.002750,0.249985,0,0);}
.ma6_c01037{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);}
.m12_c01037{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);}
.m105_c01037{transform:matrix(0.189769,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189769,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189769,0.002087,-0.002750,0.249985,0,0);}
.m7b_c01037{transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190054,0.002091,-0.002750,0.249985,0,0);}
.m10a_c01037{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);}
.m76_c01037{transform:matrix(0.191173,0.002103,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191173,0.002103,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191173,0.002103,-0.002750,0.249985,0,0);}
.me1_c01037{transform:matrix(0.191923,0.002111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191923,0.002111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191923,0.002111,-0.002750,0.249985,0,0);}
.mcc_c01037{transform:matrix(0.192228,0.002115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192228,0.002115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192228,0.002115,-0.002750,0.249985,0,0);}
.m27_c01037{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);}
.m40_c01037{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);}
.m4b_c01037{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);}
.ma3_c01037{transform:matrix(0.193493,0.002128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193493,0.002128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193493,0.002128,-0.002750,0.249985,0,0);}
.md8_c01037{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);}
.mb0_c01037{transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194493,0.002139,-0.002750,0.249985,0,0);}
.m10c_c01037{transform:matrix(0.194993,0.002145,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194993,0.002145,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194993,0.002145,-0.002750,0.249985,0,0);}
.m1e_c01037{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);}
.mb6_c01037{transform:matrix(0.196088,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196088,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196088,0.002157,-0.002750,0.249985,0,0);}
.ma9_c01037{transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196203,0.002158,-0.002750,0.249985,0,0);}
.md9_c01037{transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196778,0.002165,-0.002750,0.249985,0,0);}
.m78_c01037{transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197203,0.002169,-0.002750,0.249985,0,0);}
.m49_c01037{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m86_c01037{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);}
.m10_c01037{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);}
.md0_c01037{transform:matrix(0.198058,0.002179,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198058,0.002179,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198058,0.002179,-0.002750,0.249985,0,0);}
.mf9_c01037{transform:matrix(0.198748,0.002186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198748,0.002186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198748,0.002186,-0.002750,0.249985,0,0);}
.mec_c01037{transform:matrix(0.198828,0.002187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198828,0.002187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198828,0.002187,-0.002750,0.249985,0,0);}
.m4a_c01037{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);}
.m7a_c01037{transform:matrix(0.199333,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199333,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199333,0.002193,-0.002750,0.249985,0,0);}
.mc1_c01037{transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200088,0.002201,-0.002750,0.249985,0,0);}
.m3d_c01037{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);}
.m106_c01037{transform:matrix(0.201123,0.002212,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201123,0.002212,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201123,0.002212,-0.002750,0.249985,0,0);}
.m38_c01037{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);}
.m73_c01037{transform:matrix(0.201538,0.002217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201538,0.002217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201538,0.002217,-0.002750,0.249985,0,0);}
.m4d_c01037{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);}
.m34_c01037{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);}
.m63_c01037{transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203653,0.002240,-0.002750,0.249985,0,0);}
.mde_c01037{transform:matrix(0.203733,0.002241,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203733,0.002241,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203733,0.002241,-0.002750,0.249985,0,0);}
.mb9_c01037{transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205058,0.002256,-0.002750,0.249985,0,0);}
.mff_c01037{transform:matrix(0.205228,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205228,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205228,0.002258,-0.002750,0.249985,0,0);}
.m62_c01037{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);}
.md_c01037{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);}
.m8b_c01037{transform:matrix(0.208457,0.002293,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208457,0.002293,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208457,0.002293,-0.002750,0.249985,0,0);}
.mb5_c01037{transform:matrix(0.210092,0.002311,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210092,0.002311,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210092,0.002311,-0.002750,0.249985,0,0);}
.ma2_c01037{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);}
.m3e_c01037{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);}
.m56_c01037{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m10b_c01037{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);}
.mee_c01037{transform:matrix(0.212632,0.002339,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212632,0.002339,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212632,0.002339,-0.002750,0.249985,0,0);}
.m42_c01037{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);}
.m54_c01037{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);}
.m2c_c01037{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);}
.m1d_c01037{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);}
.m3f_c01037{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);}
.mcd_c01037{transform:matrix(0.217582,0.002393,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217582,0.002393,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217582,0.002393,-0.002750,0.249985,0,0);}
.m79_c01037{transform:matrix(0.219017,0.002409,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219017,0.002409,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219017,0.002409,-0.002750,0.249985,0,0);}
.m2a_c01037{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);}
.ma4_c01037{transform:matrix(0.222052,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222052,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222052,0.002443,-0.002750,0.249985,0,0);}
.md5_c01037{transform:matrix(0.222127,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222127,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222127,0.002443,-0.002750,0.249985,0,0);}
.m41_c01037{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m43_c01037{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);}
.m5a_c01037{transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);}
.me7_c01037{transform:matrix(0.237371,0.002611,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237371,0.002611,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237371,0.002611,-0.002750,0.249985,0,0);}
.m64_c01037{transform:matrix(0.237911,0.002617,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237911,0.002617,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237911,0.002617,-0.002750,0.249985,0,0);}
.m1f_c01037{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);}
.m1_c01037{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);}
.m6e_c01037{transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);}
.mcb_c01037{transform:matrix(0.240500,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240500,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240500,0.002646,-0.002750,0.249985,0,0);}
.m104_c01037{transform:matrix(0.240870,0.002650,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240870,0.002650,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240870,0.002650,-0.002750,0.249985,0,0);}
.m71_c01037{transform:matrix(0.243075,0.002674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243075,0.002674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243075,0.002674,-0.002750,0.249985,0,0);}
.m8_c01037{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.m93_c01037{transform:matrix(0.243745,0.002681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243745,0.002681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243745,0.002681,-0.002750,0.249985,0,0);}
.m77_c01037{transform:matrix(0.246065,0.002707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246065,0.002707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246065,0.002707,-0.002750,0.249985,0,0);}
.m48_c01037{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.me2_c01037{transform:matrix(0.249750,0.002747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249750,0.002747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249750,0.002747,-0.002750,0.249985,0,0);}
.m19_c01037{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m75_c01037{transform:matrix(0.252305,0.002775,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252305,0.002775,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252305,0.002775,-0.002750,0.249985,0,0);}
.mdd_c01037{transform:matrix(0.253000,0.002783,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253000,0.002783,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253000,0.002783,-0.002750,0.249985,0,0);}
.m7d_c01037{transform:matrix(0.253085,0.002784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253085,0.002784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253085,0.002784,-0.002750,0.249985,0,0);}
.mb1_c01037{transform:matrix(0.256120,0.002817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256120,0.002817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256120,0.002817,-0.002750,0.249985,0,0);}
.mc4_c01037{transform:matrix(0.258729,0.002846,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258729,0.002846,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258729,0.002846,-0.002750,0.249985,0,0);}
.mef_c01037{transform:matrix(0.258734,0.002846,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258734,0.002846,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258734,0.002846,-0.002750,0.249985,0,0);}
.m3_c01037{transform:matrix(0.259565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259565,0.000000,0.000000,0.250000,0,0);}
.m87_c01037{transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260585,0.000000,0.000000,0.250000,0,0);}
.m0_c01037{transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267505,0.000000,0.000000,0.250000,0,0);}
.m23_c01037{transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268390,0.000000,0.000000,0.250000,0,0);}
.m36_c01037{transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270330,0.000000,0.000000,0.250000,0,0);}
.mc5_c01037{transform:matrix(0.272494,0.002997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272494,0.002997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272494,0.002997,-0.002750,0.249985,0,0);}
.m61_c01037{transform:matrix(0.274103,0.003015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274103,0.003015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274103,0.003015,-0.002750,0.249985,0,0);}
.m45_c01037{transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276115,0.000000,0.000000,0.250000,0,0);}
.m2_c01037{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);}
.m53_c01037{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);}
.m100_c01037{transform:matrix(0.279983,0.003080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279983,0.003080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279983,0.003080,-0.002750,0.249985,0,0);}
.m6c_c01037{transform:matrix(0.284138,0.003126,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284138,0.003126,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284138,0.003126,-0.002750,0.249985,0,0);}
.m65_c01037{transform:matrix(0.293382,0.003227,-0.002750,0.249985,0,0);-ms-transform:matrix(0.293382,0.003227,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.293382,0.003227,-0.002750,0.249985,0,0);}
.m4_c01037{transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);}
.m74_c01037{transform:matrix(0.304932,0.003354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304932,0.003354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304932,0.003354,-0.002750,0.249985,0,0);}
.m51_c01037{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);}
.mb2_c01037{transform:matrix(0.309936,0.003409,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309936,0.003409,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309936,0.003409,-0.002750,0.249985,0,0);}
.mb7_c01037{transform:matrix(0.313146,0.003445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.313146,0.003445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.313146,0.003445,-0.002750,0.249985,0,0);}
.mf1_c01037{transform:matrix(0.317111,0.003488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.317111,0.003488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.317111,0.003488,-0.002750,0.249985,0,0);}
.m88_c01037{transform:matrix(0.323270,0.003556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323270,0.003556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323270,0.003556,-0.002750,0.249985,0,0);}
.m5c_c01037{transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327480,0.000000,0.000000,0.250000,0,0);}
.m18_c01037{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.me3_c01037{transform:matrix(0.329955,0.003630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329955,0.003630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329955,0.003630,-0.002750,0.249985,0,0);}
.m95_c01037{transform:matrix(0.337275,0.003710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337275,0.003710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337275,0.003710,-0.002750,0.249985,0,0);}
.mc8_c01037{transform:matrix(0.338020,0.003718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.338020,0.003718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.338020,0.003718,-0.002750,0.249985,0,0);}
.m66_c01037{transform:matrix(0.339049,0.003730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.339049,0.003730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.339049,0.003730,-0.002750,0.249985,0,0);}
.m8a_c01037{transform:matrix(0.347604,0.003824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.347604,0.003824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.347604,0.003824,-0.002750,0.249985,0,0);}
.m6b_c01037{transform:matrix(0.355893,0.003915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.355893,0.003915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.355893,0.003915,-0.002750,0.249985,0,0);}
.m68_c01037{transform:matrix(0.360078,0.003961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360078,0.003961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360078,0.003961,-0.002750,0.249985,0,0);}
.m6a_c01037{transform:matrix(0.360798,0.003969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360798,0.003969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360798,0.003969,-0.002750,0.249985,0,0);}
.m5_c01037{transform:matrix(0.361725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361725,0.000000,0.000000,0.250000,0,0);}
.mad_c01037{transform:matrix(0.363418,0.003998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.363418,0.003998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.363418,0.003998,-0.002750,0.249985,0,0);}
.mc6_c01037{transform:matrix(0.364698,0.004012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.364698,0.004012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.364698,0.004012,-0.002750,0.249985,0,0);}
.m58_c01037{transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366550,0.000000,0.000000,0.250000,0,0);}
.md4_c01037{transform:matrix(0.369708,0.004067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.369708,0.004067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.369708,0.004067,-0.002750,0.249985,0,0);}
.m2e_c01037{transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380735,0.000000,0.000000,0.250000,0,0);}
.m47_c01037{transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381795,0.000000,0.000000,0.250000,0,0);}
.m52_c01037{transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);}
.mab_c01037{transform:matrix(0.387787,0.004266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.387787,0.004266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.387787,0.004266,-0.002750,0.249985,0,0);}
.mb8_c01037{transform:matrix(0.396991,0.004367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.396991,0.004367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.396991,0.004367,-0.002750,0.249985,0,0);}
.mf2_c01037{transform:matrix(0.402041,0.004422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.402041,0.004422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.402041,0.004422,-0.002750,0.249985,0,0);}
.me6_c01037{transform:matrix(0.410690,0.004518,-0.002750,0.249985,0,0);-ms-transform:matrix(0.410690,0.004518,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.410690,0.004518,-0.002750,0.249985,0,0);}
.maa_c01037{transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.410825,0.004519,-0.002750,0.249985,0,0);}
.m55_c01037{transform:matrix(0.413120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413120,0.000000,0.000000,0.250000,0,0);}
.mac_c01037{transform:matrix(0.422589,0.004648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422589,0.004648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422589,0.004648,-0.002750,0.249985,0,0);}
.m99_c01037{transform:matrix(0.422919,0.004652,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422919,0.004652,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422919,0.004652,-0.002750,0.249985,0,0);}
.m22_c01037{transform:matrix(0.430925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430925,0.000000,0.000000,0.250000,0,0);}
.mfe_c01037{transform:matrix(0.438933,0.004828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.438933,0.004828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.438933,0.004828,-0.002750,0.249985,0,0);}
.m94_c01037{transform:matrix(0.443823,0.004882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.443823,0.004882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.443823,0.004882,-0.002750,0.249985,0,0);}
.m8d_c01037{transform:matrix(0.448108,0.004929,-0.002750,0.249985,0,0);-ms-transform:matrix(0.448108,0.004929,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.448108,0.004929,-0.002750,0.249985,0,0);}
.mf3_c01037{transform:matrix(0.449023,0.004939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.449023,0.004939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.449023,0.004939,-0.002750,0.249985,0,0);}
.m97_c01037{transform:matrix(0.451998,0.004972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.451998,0.004972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.451998,0.004972,-0.002750,0.249985,0,0);}
.m5f_c01037{transform:matrix(0.462945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462945,0.000000,0.000000,0.250000,0,0);}
.m67_c01037{transform:matrix(0.465152,0.005117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.465152,0.005117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.465152,0.005117,-0.002750,0.249985,0,0);}
.m9a_c01037{transform:matrix(0.467657,0.005144,-0.002750,0.249985,0,0);-ms-transform:matrix(0.467657,0.005144,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.467657,0.005144,-0.002750,0.249985,0,0);}
.m60_c01037{transform:matrix(0.472006,0.005192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.472006,0.005192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.472006,0.005192,-0.002750,0.249985,0,0);}
.m101_c01037{transform:matrix(0.494330,0.005438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.494330,0.005438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.494330,0.005438,-0.002750,0.249985,0,0);}
.m50_c01037{transform:matrix(0.497100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497100,0.000000,0.000000,0.250000,0,0);}
.maf_c01037{transform:matrix(0.527913,0.005807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.527913,0.005807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.527913,0.005807,-0.002750,0.249985,0,0);}
.m3c_c01037{transform:matrix(0.539065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539065,0.000000,0.000000,0.250000,0,0);}
.m96_c01037{transform:matrix(0.540957,0.005951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.540957,0.005951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.540957,0.005951,-0.002750,0.249985,0,0);}
.m102_c01037{transform:matrix(0.551532,0.006067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.551532,0.006067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.551532,0.006067,-0.002750,0.249985,0,0);}
.m98_c01037{transform:matrix(0.568956,0.006259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.568956,0.006259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.568956,0.006259,-0.002750,0.249985,0,0);}
.md3_c01037{transform:matrix(0.576600,0.006343,-0.002750,0.249985,0,0);-ms-transform:matrix(0.576600,0.006343,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.576600,0.006343,-0.002750,0.249985,0,0);}
.m10f_c01037{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);}
.ma0_c01037{transform:matrix(0.600999,0.006611,-0.002750,0.249985,0,0);-ms-transform:matrix(0.600999,0.006611,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.600999,0.006611,-0.002750,0.249985,0,0);}
.mdb_c01037{transform:matrix(0.601809,0.006620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.601809,0.006620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.601809,0.006620,-0.002750,0.249985,0,0);}
.m16_c01037{transform:matrix(0.614450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614450,0.000000,0.000000,0.250000,0,0);}
.m10e_c01037{transform:matrix(0.617785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617785,0.000000,0.000000,0.250000,0,0);}
.mfc_c01037{transform:matrix(0.620492,0.006825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.620492,0.006825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.620492,0.006825,-0.002750,0.249985,0,0);}
.m10d_c01037{transform:matrix(0.623127,0.006854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.623127,0.006854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.623127,0.006854,-0.002750,0.249985,0,0);}
.mfd_c01037{transform:matrix(0.631662,0.006948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.631662,0.006948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.631662,0.006948,-0.002750,0.249985,0,0);}
.mc3_c01037{transform:matrix(0.643836,0.007082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.643836,0.007082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.643836,0.007082,-0.002750,0.249985,0,0);}
.mdc_c01037{transform:matrix(0.652176,0.007174,-0.002750,0.249985,0,0);-ms-transform:matrix(0.652176,0.007174,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.652176,0.007174,-0.002750,0.249985,0,0);}
.m15_c01037{transform:matrix(0.659700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659700,0.000000,0.000000,0.250000,0,0);}
.m80_c01037{transform:matrix(0.660770,0.007268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.660770,0.007268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.660770,0.007268,-0.002750,0.249985,0,0);}
.me5_c01037{transform:matrix(0.663285,0.007296,-0.002750,0.249985,0,0);-ms-transform:matrix(0.663285,0.007296,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.663285,0.007296,-0.002750,0.249985,0,0);}
.mae_c01037{transform:matrix(0.668530,0.007354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.668530,0.007354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.668530,0.007354,-0.002750,0.249985,0,0);}
.m44_c01037{transform:matrix(0.672530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672530,0.000000,0.000000,0.250000,0,0);}
.ma1_c01037{transform:matrix(0.720696,0.007928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.720696,0.007928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.720696,0.007928,-0.002750,0.249985,0,0);}
.m57_c01037{transform:matrix(0.730235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730235,0.000000,0.000000,0.250000,0,0);}
.mfb_c01037{transform:matrix(0.742810,0.008171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.742810,0.008171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.742810,0.008171,-0.002750,0.249985,0,0);}
.m6f_c01037{transform:matrix(0.763744,0.008401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.763744,0.008401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.763744,0.008401,-0.002750,0.249985,0,0);}
.m3b_c01037{transform:matrix(0.852720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852720,0.000000,0.000000,0.250000,0,0);}
.mc7_c01037{transform:matrix(0.932154,0.010254,-0.002750,0.249985,0,0);-ms-transform:matrix(0.932154,0.010254,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.932154,0.010254,-0.002750,0.249985,0,0);}
.m46_c01037{transform:matrix(2.388790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.388790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.388790,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls0_c01037{letter-spacing:0.000000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:0.000000px;}
.fc0_c01037{color:transparent;}
.fsc_c01037{font-size:31.501906px;}
.fs1b_c01037{font-size:33.600000px;}
.fsf_c01037{font-size:36.750000px;}
.fsb_c01037{font-size:60.903684px;}
.fs6_c01037{font-size:63.000000px;}
.fs9_c01037{font-size:66.150000px;}
.fs14_c01037{font-size:66.154002px;}
.fs16_c01037{font-size:69.304193px;}
.fs8_c01037{font-size:70.350000px;}
.fse_c01037{font-size:70.354256px;}
.fs2_c01037{font-size:71.400000px;}
.fs18_c01037{font-size:71.404320px;}
.fs19_c01037{font-size:72.454383px;}
.fs4_c01037{font-size:73.500000px;}
.fs13_c01037{font-size:73.504447px;}
.fs3_c01037{font-size:74.550000px;}
.fs1a_c01037{font-size:75.604574px;}
.fs5_c01037{font-size:77.700000px;}
.fsd_c01037{font-size:80.854891px;}
.fs15_c01037{font-size:84.005082px;}
.fs1_c01037{font-size:89.250000px;}
.fs12_c01037{font-size:89.255399px;}
.fsa_c01037{font-size:90.300000px;}
.fs11_c01037{font-size:101.856162px;}
.fs10_c01037{font-size:108.156543px;}
.fs17_c01037{font-size:113.406860px;}
.fs0_c01037{font-size:121.800000px;}
.fs7_c01037{font-size:124.950000px;}
.y0_c01037{bottom:0.000000px;}
.yb6_c01037{bottom:133.410000px;}
.yb5_c01037{bottom:166.866132px;}
.yb4_c01037{bottom:167.388589px;}
.yb3_c01037{bottom:169.140652px;}
.yb2_c01037{bottom:170.096152px;}
.yb1_c01037{bottom:170.635372px;}
.yb0_c01037{bottom:170.831560px;}
.yaf_c01037{bottom:171.485091px;}
.yae_c01037{bottom:171.856498px;}
.yad_c01037{bottom:172.310871px;}
.yac_c01037{bottom:172.516924px;}
.yab_c01037{bottom:172.917631px;}
.yaa_c01037{bottom:174.012073px;}
.ya9_c01037{bottom:188.724886px;}
.ya8_c01037{bottom:189.330954px;}
.ya7_c01037{bottom:190.938862px;}
.ya6_c01037{bottom:193.097523px;}
.ya5_c01037{bottom:195.265587px;}
.ya4_c01037{bottom:195.999543px;}
.ya3_c01037{bottom:212.920815px;}
.ya2_c01037{bottom:215.092281px;}
.ya1_c01037{bottom:215.430877px;}
.ya0_c01037{bottom:216.057415px;}
.y9f_c01037{bottom:216.636499px;}
.y9e_c01037{bottom:217.090365px;}
.y9d_c01037{bottom:217.554312px;}
.y9c_c01037{bottom:218.044395px;}
.y9b_c01037{bottom:218.950459px;}
.y9a_c01037{bottom:235.037838px;}
.y99_c01037{bottom:235.529068px;}
.y98_c01037{bottom:236.940642px;}
.y97_c01037{bottom:237.382458px;}
.y96_c01037{bottom:237.492075px;}
.y95_c01037{bottom:237.906421px;}
.y94_c01037{bottom:238.386696px;}
.y93_c01037{bottom:238.889079px;}
.y92_c01037{bottom:239.391462px;}
.y91_c01037{bottom:240.045781px;}
.y90_c01037{bottom:240.301246px;}
.y8f_c01037{bottom:240.784309px;}
.y8e_c01037{bottom:241.677940px;}
.y8d_c01037{bottom:241.903987px;}
.y8c_c01037{bottom:257.696143px;}
.y8b_c01037{bottom:259.517034px;}
.y8a_c01037{bottom:259.685103px;}
.y89_c01037{bottom:260.113371px;}
.y88_c01037{bottom:260.610417px;}
.y87_c01037{bottom:260.874427px;}
.y86_c01037{bottom:261.279526px;}
.y85_c01037{bottom:261.555714px;}
.y84_c01037{bottom:262.358139px;}
.y83_c01037{bottom:263.235912px;}
.y82_c01037{bottom:279.750094px;}
.y81_c01037{bottom:281.655157px;}
.y80_c01037{bottom:282.228880px;}
.y7f_c01037{bottom:282.973497px;}
.y7e_c01037{bottom:283.770166px;}
.y7d_c01037{bottom:284.508892px;}
.y7c_c01037{bottom:285.373899px;}
.y7b_c01037{bottom:286.450153px;}
.y7a_c01037{bottom:304.406633px;}
.y79_c01037{bottom:305.158933px;}
.y78_c01037{bottom:305.225334px;}
.y77_c01037{bottom:305.767389px;}
.y76_c01037{bottom:306.011052px;}
.y75_c01037{bottom:306.130629px;}
.y74_c01037{bottom:306.490899px;}
.y73_c01037{bottom:306.887786px;}
.y72_c01037{bottom:307.238065px;}
.y71_c01037{bottom:307.375425px;}
.y70_c01037{bottom:307.555608px;}
.y6f_c01037{bottom:307.684035px;}
.y6e_c01037{bottom:308.328084px;}
.y6d_c01037{bottom:325.853539px;}
.y6c_c01037{bottom:328.331358px;}
.y6b_c01037{bottom:329.658567px;}
.y6a_c01037{bottom:348.088399px;}
.y69_c01037{bottom:349.966963px;}
.y68_c01037{bottom:350.276485px;}
.y67_c01037{bottom:350.671683px;}
.y66_c01037{bottom:351.079686px;}
.y65_c01037{bottom:351.346765px;}
.y64_c01037{bottom:351.594456px;}
.y63_c01037{bottom:351.963499px;}
.y62_c01037{bottom:352.226337px;}
.y61_c01037{bottom:352.532046px;}
.y60_c01037{bottom:352.765016px;}
.y5f_c01037{bottom:353.691567px;}
.y5e_c01037{bottom:371.324619px;}
.y5d_c01037{bottom:373.011945px;}
.y5c_c01037{bottom:373.597902px;}
.y5b_c01037{bottom:373.860542px;}
.y5a_c01037{bottom:374.265525px;}
.y59_c01037{bottom:374.420096px;}
.y58_c01037{bottom:375.253479px;}
.y57_c01037{bottom:376.001301px;}
.y56_c01037{bottom:376.774288px;}
.y55_c01037{bottom:393.781231px;}
.y54_c01037{bottom:395.059885px;}
.y53_c01037{bottom:396.737335px;}
.y52_c01037{bottom:398.784104px;}
.y51_c01037{bottom:416.642713px;}
.y50_c01037{bottom:418.460452px;}
.y4f_c01037{bottom:418.683918px;}
.y4e_c01037{bottom:418.911327px;}
.y4d_c01037{bottom:419.332746px;}
.y4c_c01037{bottom:419.667614px;}
.y4b_c01037{bottom:419.894989px;}
.y4a_c01037{bottom:420.299973px;}
.y49_c01037{bottom:420.567102px;}
.y48_c01037{bottom:422.278059px;}
.y47_c01037{bottom:439.390827px;}
.y46_c01037{bottom:442.184518px;}
.y45_c01037{bottom:442.529362px;}
.y44_c01037{bottom:442.966809px;}
.y43_c01037{bottom:443.335749px;}
.y42_c01037{bottom:443.760982px;}
.y41_c01037{bottom:444.327256px;}
.y40_c01037{bottom:463.570593px;}
.y3f_c01037{bottom:466.094878px;}
.y3e_c01037{bottom:467.036500px;}
.y3d_c01037{bottom:468.759100px;}
.y3c_c01037{bottom:469.798469px;}
.y3b_c01037{bottom:479.011039px;}
.y3a_c01037{bottom:480.267244px;}
.y39_c01037{bottom:482.554537px;}
.y38_c01037{bottom:482.982806px;}
.y37_c01037{bottom:483.471469px;}
.y36_c01037{bottom:483.866155px;}
.y35_c01037{bottom:483.982756px;}
.y34_c01037{bottom:484.499092px;}
.y33_c01037{bottom:484.649686px;}
.y32_c01037{bottom:507.127692px;}
.y31_c01037{bottom:510.824270px;}
.y30_c01037{bottom:511.526229px;}
.y2f_c01037{bottom:513.271500px;}
.y2e_c01037{bottom:529.041000px;}
.y2d_c01037{bottom:533.691000px;}
.y2c_c01037{bottom:553.110838px;}
.y2b_c01037{bottom:553.547031px;}
.y2a_c01037{bottom:553.705944px;}
.y29_c01037{bottom:553.876278px;}
.y28_c01037{bottom:554.418687px;}
.y27_c01037{bottom:554.680403px;}
.y26_c01037{bottom:555.242418px;}
.y25_c01037{bottom:555.489974px;}
.y24_c01037{bottom:555.694041px;}
.y23_c01037{bottom:555.853251px;}
.y22_c01037{bottom:556.202799px;}
.y21_c01037{bottom:556.399968px;}
.y20_c01037{bottom:556.713867px;}
.y1f_c01037{bottom:556.896100px;}
.y1e_c01037{bottom:557.063630px;}
.y1d_c01037{bottom:557.481420px;}
.y1c_c01037{bottom:557.629475px;}
.y1b_c01037{bottom:558.089184px;}
.y1a_c01037{bottom:574.298517px;}
.y19_c01037{bottom:575.216964px;}
.y18_c01037{bottom:577.607281px;}
.y17_c01037{bottom:578.446128px;}
.y16_c01037{bottom:581.581915px;}
.y15_c01037{bottom:591.847824px;}
.y14_c01037{bottom:591.847828px;}
.y13_c01037{bottom:597.223761px;}
.y12_c01037{bottom:599.787135px;}
.y11_c01037{bottom:600.365955px;}
.y10_c01037{bottom:600.769792px;}
.yf_c01037{bottom:601.217751px;}
.ye_c01037{bottom:601.717371px;}
.yd_c01037{bottom:602.566775px;}
.yc_c01037{bottom:603.183000px;}
.yb_c01037{bottom:623.952000px;}
.ya_c01037{bottom:646.723500px;}
.y9_c01037{bottom:692.241000px;}
.y8_c01037{bottom:713.880000px;}
.y7_c01037{bottom:743.559000px;}
.y6_c01037{bottom:764.878500px;}
.y5_c01037{bottom:788.041500px;}
.y4_c01037{bottom:810.975000px;}
.y3_c01037{bottom:833.439000px;}
.y2_c01037{bottom:849.670500px;}
.y1_c01037{bottom:878.202000px;}
.he_c01037{height:31.501906px;}
.h1d_c01037{height:33.600000px;}
.h11_c01037{height:36.750000px;}
.hd_c01037{height:60.903684px;}
.h8_c01037{height:63.000000px;}
.hb_c01037{height:66.150000px;}
.h16_c01037{height:66.154002px;}
.h18_c01037{height:69.304193px;}
.ha_c01037{height:70.350000px;}
.h10_c01037{height:70.354256px;}
.h4_c01037{height:71.400000px;}
.h1a_c01037{height:71.404320px;}
.h1b_c01037{height:72.454383px;}
.h6_c01037{height:73.500000px;}
.h15_c01037{height:73.504447px;}
.h5_c01037{height:74.550000px;}
.h1c_c01037{height:75.604574px;}
.h7_c01037{height:77.700000px;}
.hf_c01037{height:80.854891px;}
.h17_c01037{height:84.005082px;}
.h3_c01037{height:89.250000px;}
.h14_c01037{height:89.255399px;}
.hc_c01037{height:90.300000px;}
.h13_c01037{height:101.856162px;}
.h12_c01037{height:108.156543px;}
.h19_c01037{height:113.406860px;}
.h2_c01037{height:121.800000px;}
.h9_c01037{height:124.950000px;}
.h0_c01037{height:1008.450000px;}
.h1_c01037{height:1008.750000px;}
.w1_c01037{width:700.500000px;}
.w0_c01037{width:700.650000px;}
.x0_c01037{left:0.000000px;}
.x73_c01037{left:69.519873px;}
.x6c_c01037{left:71.345438px;}
.x9f_c01037{left:72.729338px;}
.x88_c01037{left:73.733924px;}
.x76_c01037{left:74.762346px;}
.x57_c01037{left:76.480673px;}
.x46_c01037{left:78.030000px;}
.x16_c01037{left:81.000000px;}
.x1_c01037{left:82.890000px;}
.x6_c01037{left:84.240000px;}
.x6d_c01037{left:86.399603px;}
.x22_c01037{left:88.560000px;}
.x87_c01037{left:93.017864px;}
.x51_c01037{left:95.031000px;}
.x2c_c01037{left:97.470000px;}
.x8_c01037{left:99.360000px;}
.xa0_c01037{left:129.224100px;}
.x67_c01037{left:132.840000px;}
.x35_c01037{left:134.730000px;}
.x2_c01037{left:136.080000px;}
.x6e_c01037{left:137.976164px;}
.x47_c01037{left:150.390000px;}
.x3e_c01037{left:152.550000px;}
.x9_c01037{left:157.680000px;}
.x74_c01037{left:164.007873px;}
.x17_c01037{left:165.240000px;}
.x48_c01037{left:166.590000px;}
.x3d_c01037{left:168.480000px;}
.x36_c01037{left:172.530000px;}
.x68_c01037{left:177.120000px;}
.x23_c01037{left:181.170000px;}
.x89_c01037{left:184.054775px;}
.x6f_c01037{left:189.093724px;}
.xa_c01037{left:192.510000px;}
.x5c_c01037{left:197.251616px;}
.x49_c01037{left:201.690000px;}
.x18_c01037{left:207.360000px;}
.x8a_c01037{left:209.708897px;}
.x3f_c01037{left:211.140000px;}
.x37_c01037{left:212.760000px;}
.x5d_c01037{left:215.891028px;}
.x2d_c01037{left:217.350000px;}
.x4a_c01037{left:219.240000px;}
.x3_c01037{left:226.800000px;}
.x52_c01037{left:228.270000px;}
.x8b_c01037{left:229.424271px;}
.x19_c01037{left:230.580000px;}
.x38_c01037{left:234.630000px;}
.x5e_c01037{left:236.139974px;}
.x70_c01037{left:238.018269px;}
.x7e_c01037{left:241.545317px;}
.xb_c01037{left:245.430000px;}
.x94_c01037{left:246.910442px;}
.xa2_c01037{left:248.034506px;}
.x9c_c01037{left:253.181141px;}
.x24_c01037{left:256.230000px;}
.x4b_c01037{left:258.120000px;}
.x39_c01037{left:260.280000px;}
.xa6_c01037{left:262.980000px;}
.xc_c01037{left:264.330000px;}
.x5f_c01037{left:270.949733px;}
.x77_c01037{left:272.590524px;}
.x53_c01037{left:273.690000px;}
.x40_c01037{left:275.130000px;}
.xa3_c01037{left:276.616379px;}
.x69_c01037{left:279.450000px;}
.x71_c01037{left:280.906747px;}
.x2e_c01037{left:282.150000px;}
.x82_c01037{left:283.383161px;}
.x25_c01037{left:287.280000px;}
.x60_c01037{left:292.829211px;}
.x9d_c01037{left:294.441641px;}
.xa1_c01037{left:296.044437px;}
.x90_c01037{left:298.483511px;}
.x6b_c01037{left:300.108000px;}
.x1a_c01037{left:301.320000px;}
.x3a_c01037{left:302.940000px;}
.x4e_c01037{left:304.830000px;}
.x7c_c01037{left:306.347951px;}
.x83_c01037{left:308.218941px;}
.xd_c01037{left:312.120000px;}
.x54_c01037{left:314.413500px;}
.x58_c01037{left:317.637859px;}
.x1b_c01037{left:319.680000px;}
.x75_c01037{left:324.697029px;}
.x6a_c01037{left:326.160000px;}
.x41_c01037{left:329.400000px;}
.x61_c01037{left:331.698069px;}
.x78_c01037{left:335.805717px;}
.x2f_c01037{left:338.850000px;}
.x7f_c01037{left:340.360406px;}
.x95_c01037{left:341.438481px;}
.x9e_c01037{left:347.085641px;}
.x26_c01037{left:348.300000px;}
.x62_c01037{left:349.308449px;}
.x55_c01037{left:351.126000px;}
.x1c_c01037{left:358.020000px;}
.xe_c01037{left:359.100000px;}
.x91_c01037{left:364.907285px;}
.x98_c01037{left:366.808119px;}
.x79_c01037{left:369.248580px;}
.x42_c01037{left:371.520000px;}
.x3b_c01037{left:372.870000px;}
.x27_c01037{left:376.110000px;}
.x4_c01037{left:379.620000px;}
.x80_c01037{left:380.859351px;}
.x59_c01037{left:382.167941px;}
.xa4_c01037{left:383.517536px;}
.x8c_c01037{left:387.652734px;}
.x96_c01037{left:391.125026px;}
.xf_c01037{left:393.660000px;}
.x30_c01037{left:399.330000px;}
.x56_c01037{left:403.746000px;}
.x43_c01037{left:406.890000px;}
.x1d_c01037{left:409.050000px;}
.x7a_c01037{left:411.378042px;}
.x84_c01037{left:415.200113px;}
.x28_c01037{left:425.520000px;}
.x92_c01037{left:427.008108px;}
.x31_c01037{left:429.570000px;}
.x44_c01037{left:432.270000px;}
.x10_c01037{left:434.430000px;}
.x8d_c01037{left:439.495011px;}
.x99_c01037{left:441.318294px;}
.x85_c01037{left:446.202459px;}
.x29_c01037{left:451.440000px;}
.x7b_c01037{left:456.458037px;}
.x11_c01037{left:461.160000px;}
.x81_c01037{left:465.641775px;}
.x93_c01037{left:474.800580px;}
.x32_c01037{left:476.550000px;}
.x1e_c01037{left:482.490000px;}
.x9a_c01037{left:487.220783px;}
.x63_c01037{left:491.025567px;}
.x7d_c01037{left:492.802059px;}
.x2a_c01037{left:495.720000px;}
.x1f_c01037{left:501.660000px;}
.x12_c01037{left:505.440000px;}
.x4c_c01037{left:509.760000px;}
.x8e_c01037{left:517.003427px;}
.x33_c01037{left:518.670000px;}
.x4f_c01037{left:523.800000px;}
.x8f_c01037{left:526.449339px;}
.x13_c01037{left:546.210000px;}
.x64_c01037{left:551.245887px;}
.x5a_c01037{left:566.056398px;}
.x65_c01037{left:570.140300px;}
.x50_c01037{left:572.940000px;}
.x20_c01037{left:577.800000px;}
.x34_c01037{left:582.120000px;}
.x2b_c01037{left:584.820000px;}
.x66_c01037{left:587.723679px;}
.xa5_c01037{left:591.745949px;}
.x14_c01037{left:594.000000px;}
.x9b_c01037{left:604.907996px;}
.x97_c01037{left:632.830182px;}
.x86_c01037{left:634.028522px;}
.x72_c01037{left:635.228642px;}
.x5b_c01037{left:636.731847px;}
.x4d_c01037{left:637.740000px;}
.x15_c01037{left:638.820000px;}
.x5_c01037{left:639.900000px;}
.x3c_c01037{left:640.980000px;}
.x21_c01037{left:645.840000px;}
.x45_c01037{left:652.590000px;}
.x7_c01037{left:654.210000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws0_c01037{word-spacing:0.000000pt;}
.fsc_c01037{font-size:28.001694pt;}
.fs1b_c01037{font-size:29.866667pt;}
.fsf_c01037{font-size:32.666667pt;}
.fsb_c01037{font-size:54.136608pt;}
.fs6_c01037{font-size:56.000000pt;}
.fs9_c01037{font-size:58.800000pt;}
.fs14_c01037{font-size:58.803557pt;}
.fs16_c01037{font-size:61.603727pt;}
.fs8_c01037{font-size:62.533333pt;}
.fse_c01037{font-size:62.537116pt;}
.fs2_c01037{font-size:63.466667pt;}
.fs18_c01037{font-size:63.470506pt;}
.fs19_c01037{font-size:64.403896pt;}
.fs4_c01037{font-size:65.333333pt;}
.fs13_c01037{font-size:65.337286pt;}
.fs3_c01037{font-size:66.266667pt;}
.fs1a_c01037{font-size:67.204065pt;}
.fs5_c01037{font-size:69.066667pt;}
.fsd_c01037{font-size:71.871014pt;}
.fs15_c01037{font-size:74.671184pt;}
.fs1_c01037{font-size:79.333333pt;}
.fs12_c01037{font-size:79.338133pt;}
.fsa_c01037{font-size:80.266667pt;}
.fs11_c01037{font-size:90.538810pt;}
.fs10_c01037{font-size:96.139149pt;}
.fs17_c01037{font-size:100.806098pt;}
.fs0_c01037{font-size:108.266667pt;}
.fs7_c01037{font-size:111.066667pt;}
.y0_c01037{bottom:0.000000pt;}
.yb6_c01037{bottom:118.586667pt;}
.yb5_c01037{bottom:148.325451pt;}
.yb4_c01037{bottom:148.789857pt;}
.yb3_c01037{bottom:150.347247pt;}
.yb2_c01037{bottom:151.196580pt;}
.yb1_c01037{bottom:151.675887pt;}
.yb0_c01037{bottom:151.850276pt;}
.yaf_c01037{bottom:152.431192pt;}
.yae_c01037{bottom:152.761332pt;}
.yad_c01037{bottom:153.165219pt;}
.yac_c01037{bottom:153.348377pt;}
.yab_c01037{bottom:153.704561pt;}
.yaa_c01037{bottom:154.677399pt;}
.ya9_c01037{bottom:167.755455pt;}
.ya8_c01037{bottom:168.294181pt;}
.ya7_c01037{bottom:169.723433pt;}
.ya6_c01037{bottom:171.642243pt;}
.ya5_c01037{bottom:173.569411pt;}
.ya4_c01037{bottom:174.221816pt;}
.ya3_c01037{bottom:189.262947pt;}
.ya2_c01037{bottom:191.193139pt;}
.ya1_c01037{bottom:191.494113pt;}
.ya0_c01037{bottom:192.051036pt;}
.y9f_c01037{bottom:192.565777pt;}
.y9e_c01037{bottom:192.969213pt;}
.y9d_c01037{bottom:193.381611pt;}
.y9c_c01037{bottom:193.817240pt;}
.y9b_c01037{bottom:194.622631pt;}
.y9a_c01037{bottom:208.922523pt;}
.y99_c01037{bottom:209.359172pt;}
.y98_c01037{bottom:210.613904pt;}
.y97_c01037{bottom:211.006629pt;}
.y96_c01037{bottom:211.104067pt;}
.y95_c01037{bottom:211.472375pt;}
.y94_c01037{bottom:211.899285pt;}
.y93_c01037{bottom:212.345848pt;}
.y92_c01037{bottom:212.792411pt;}
.y91_c01037{bottom:213.374028pt;}
.y90_c01037{bottom:213.601108pt;}
.y8f_c01037{bottom:214.030497pt;}
.y8e_c01037{bottom:214.824836pt;}
.y8d_c01037{bottom:215.025767pt;}
.y8c_c01037{bottom:229.063239pt;}
.y8b_c01037{bottom:230.681808pt;}
.y8a_c01037{bottom:230.831203pt;}
.y89_c01037{bottom:231.211885pt;}
.y88_c01037{bottom:231.653704pt;}
.y87_c01037{bottom:231.888380pt;}
.y86_c01037{bottom:232.248468pt;}
.y85_c01037{bottom:232.493968pt;}
.y84_c01037{bottom:233.207235pt;}
.y83_c01037{bottom:233.987477pt;}
.y82_c01037{bottom:248.666751pt;}
.y81_c01037{bottom:250.360140pt;}
.y80_c01037{bottom:250.870116pt;}
.y7f_c01037{bottom:251.531997pt;}
.y7e_c01037{bottom:252.240148pt;}
.y7d_c01037{bottom:252.896793pt;}
.y7c_c01037{bottom:253.665688pt;}
.y7b_c01037{bottom:254.622359pt;}
.y7a_c01037{bottom:270.583673pt;}
.y79_c01037{bottom:271.252385pt;}
.y78_c01037{bottom:271.311408pt;}
.y77_c01037{bottom:271.793235pt;}
.y76_c01037{bottom:272.009824pt;}
.y75_c01037{bottom:272.116115pt;}
.y74_c01037{bottom:272.436355pt;}
.y73_c01037{bottom:272.789143pt;}
.y72_c01037{bottom:273.100503pt;}
.y71_c01037{bottom:273.222600pt;}
.y70_c01037{bottom:273.382763pt;}
.y6f_c01037{bottom:273.496920pt;}
.y6e_c01037{bottom:274.069408pt;}
.y6d_c01037{bottom:289.647591pt;}
.y6c_c01037{bottom:291.850096pt;}
.y6b_c01037{bottom:293.029837pt;}
.y6a_c01037{bottom:309.411911pt;}
.y69_c01037{bottom:311.081745pt;}
.y68_c01037{bottom:311.356876pt;}
.y67_c01037{bottom:311.708163pt;}
.y66_c01037{bottom:312.070832pt;}
.y65_c01037{bottom:312.308236pt;}
.y64_c01037{bottom:312.528405pt;}
.y63_c01037{bottom:312.856444pt;}
.y62_c01037{bottom:313.090077pt;}
.y61_c01037{bottom:313.361819pt;}
.y60_c01037{bottom:313.568903pt;}
.y5f_c01037{bottom:314.392504pt;}
.y5e_c01037{bottom:330.066328pt;}
.y5d_c01037{bottom:331.566173pt;}
.y5c_c01037{bottom:332.087024pt;}
.y5b_c01037{bottom:332.320481pt;}
.y5a_c01037{bottom:332.680467pt;}
.y59_c01037{bottom:332.817863pt;}
.y58_c01037{bottom:333.558648pt;}
.y57_c01037{bottom:334.223379pt;}
.y56_c01037{bottom:334.910479pt;}
.y55_c01037{bottom:350.027761pt;}
.y54_c01037{bottom:351.164343pt;}
.y53_c01037{bottom:352.655409pt;}
.y52_c01037{bottom:354.474759pt;}
.y51_c01037{bottom:370.349079pt;}
.y50_c01037{bottom:371.964847pt;}
.y4f_c01037{bottom:372.163483pt;}
.y4e_c01037{bottom:372.365624pt;}
.y4d_c01037{bottom:372.740219pt;}
.y4c_c01037{bottom:373.037879pt;}
.y4b_c01037{bottom:373.239991pt;}
.y4a_c01037{bottom:373.599976pt;}
.y49_c01037{bottom:373.837424pt;}
.y48_c01037{bottom:375.358275pt;}
.y47_c01037{bottom:390.569624pt;}
.y46_c01037{bottom:393.052905pt;}
.y45_c01037{bottom:393.359433pt;}
.y44_c01037{bottom:393.748275pt;}
.y43_c01037{bottom:394.076221pt;}
.y42_c01037{bottom:394.454207pt;}
.y41_c01037{bottom:394.957561pt;}
.y40_c01037{bottom:412.062749pt;}
.y3f_c01037{bottom:414.306559pt;}
.y3e_c01037{bottom:415.143556pt;}
.y3d_c01037{bottom:416.674756pt;}
.y3c_c01037{bottom:417.598639pt;}
.y3b_c01037{bottom:425.787591pt;}
.y3a_c01037{bottom:426.904217pt;}
.y39_c01037{bottom:428.937367pt;}
.y38_c01037{bottom:429.318049pt;}
.y37_c01037{bottom:429.752417pt;}
.y36_c01037{bottom:430.103249pt;}
.y35_c01037{bottom:430.206895pt;}
.y34_c01037{bottom:430.665860pt;}
.y33_c01037{bottom:430.799721pt;}
.y32_c01037{bottom:450.780171pt;}
.y31_c01037{bottom:454.066017pt;}
.y30_c01037{bottom:454.689981pt;}
.y2f_c01037{bottom:456.241333pt;}
.y2e_c01037{bottom:470.258667pt;}
.y2d_c01037{bottom:474.392000pt;}
.y2c_c01037{bottom:491.654079pt;}
.y2b_c01037{bottom:492.041805pt;}
.y2a_c01037{bottom:492.183061pt;}
.y29_c01037{bottom:492.334469pt;}
.y28_c01037{bottom:492.816611pt;}
.y27_c01037{bottom:493.049247pt;}
.y26_c01037{bottom:493.548816pt;}
.y25_c01037{bottom:493.768865pt;}
.y24_c01037{bottom:493.950259pt;}
.y23_c01037{bottom:494.091779pt;}
.y22_c01037{bottom:494.402488pt;}
.y21_c01037{bottom:494.577749pt;}
.y20_c01037{bottom:494.856771pt;}
.y1f_c01037{bottom:495.018756pt;}
.y1e_c01037{bottom:495.167671pt;}
.y1d_c01037{bottom:495.539040pt;}
.y1c_c01037{bottom:495.670644pt;}
.y1b_c01037{bottom:496.079275pt;}
.y1a_c01037{bottom:510.487571pt;}
.y19_c01037{bottom:511.303968pt;}
.y18_c01037{bottom:513.428695pt;}
.y17_c01037{bottom:514.174336pt;}
.y16_c01037{bottom:516.961703pt;}
.y15_c01037{bottom:526.086955pt;}
.y14_c01037{bottom:526.086959pt;}
.y13_c01037{bottom:530.865565pt;}
.y12_c01037{bottom:533.144120pt;}
.y11_c01037{bottom:533.658627pt;}
.y10_c01037{bottom:534.017593pt;}
.yf_c01037{bottom:534.415779pt;}
.ye_c01037{bottom:534.859885pt;}
.yd_c01037{bottom:535.614911pt;}
.yc_c01037{bottom:536.162667pt;}
.yb_c01037{bottom:554.624000pt;}
.ya_c01037{bottom:574.865333pt;}
.y9_c01037{bottom:615.325333pt;}
.y8_c01037{bottom:634.560000pt;}
.y7_c01037{bottom:660.941333pt;}
.y6_c01037{bottom:679.892000pt;}
.y5_c01037{bottom:700.481333pt;}
.y4_c01037{bottom:720.866667pt;}
.y3_c01037{bottom:740.834667pt;}
.y2_c01037{bottom:755.262667pt;}
.y1_c01037{bottom:780.624000pt;}
.he_c01037{height:28.001694pt;}
.h1d_c01037{height:29.866667pt;}
.h11_c01037{height:32.666667pt;}
.hd_c01037{height:54.136608pt;}
.h8_c01037{height:56.000000pt;}
.hb_c01037{height:58.800000pt;}
.h16_c01037{height:58.803557pt;}
.h18_c01037{height:61.603727pt;}
.ha_c01037{height:62.533333pt;}
.h10_c01037{height:62.537116pt;}
.h4_c01037{height:63.466667pt;}
.h1a_c01037{height:63.470506pt;}
.h1b_c01037{height:64.403896pt;}
.h6_c01037{height:65.333333pt;}
.h15_c01037{height:65.337286pt;}
.h5_c01037{height:66.266667pt;}
.h1c_c01037{height:67.204065pt;}
.h7_c01037{height:69.066667pt;}
.hf_c01037{height:71.871014pt;}
.h17_c01037{height:74.671184pt;}
.h3_c01037{height:79.333333pt;}
.h14_c01037{height:79.338133pt;}
.hc_c01037{height:80.266667pt;}
.h13_c01037{height:90.538810pt;}
.h12_c01037{height:96.139149pt;}
.h19_c01037{height:100.806098pt;}
.h2_c01037{height:108.266667pt;}
.h9_c01037{height:111.066667pt;}
.h0_c01037{height:896.400000pt;}
.h1_c01037{height:896.666667pt;}
.w1_c01037{width:622.666667pt;}
.w0_c01037{width:622.800000pt;}
.x0_c01037{left:0.000000pt;}
.x73_c01037{left:61.795443pt;}
.x6c_c01037{left:63.418167pt;}
.x9f_c01037{left:64.648300pt;}
.x88_c01037{left:65.541265pt;}
.x76_c01037{left:66.455419pt;}
.x57_c01037{left:67.982820pt;}
.x46_c01037{left:69.360000pt;}
.x16_c01037{left:72.000000pt;}
.x1_c01037{left:73.680000pt;}
.x6_c01037{left:74.880000pt;}
.x6d_c01037{left:76.799647pt;}
.x22_c01037{left:78.720000pt;}
.x87_c01037{left:82.682545pt;}
.x51_c01037{left:84.472000pt;}
.x2c_c01037{left:86.640000pt;}
.x8_c01037{left:88.320000pt;}
.xa0_c01037{left:114.865867pt;}
.x67_c01037{left:118.080000pt;}
.x35_c01037{left:119.760000pt;}
.x2_c01037{left:120.960000pt;}
.x6e_c01037{left:122.645479pt;}
.x47_c01037{left:133.680000pt;}
.x3e_c01037{left:135.600000pt;}
.x9_c01037{left:140.160000pt;}
.x74_c01037{left:145.784776pt;}
.x17_c01037{left:146.880000pt;}
.x48_c01037{left:148.080000pt;}
.x3d_c01037{left:149.760000pt;}
.x36_c01037{left:153.360000pt;}
.x68_c01037{left:157.440000pt;}
.x23_c01037{left:161.040000pt;}
.x89_c01037{left:163.604244pt;}
.x6f_c01037{left:168.083311pt;}
.xa_c01037{left:171.120000pt;}
.x5c_c01037{left:175.334769pt;}
.x49_c01037{left:179.280000pt;}
.x18_c01037{left:184.320000pt;}
.x8a_c01037{left:186.407908pt;}
.x3f_c01037{left:187.680000pt;}
.x37_c01037{left:189.120000pt;}
.x5d_c01037{left:191.903136pt;}
.x2d_c01037{left:193.200000pt;}
.x4a_c01037{left:194.880000pt;}
.x3_c01037{left:201.600000pt;}
.x52_c01037{left:202.906667pt;}
.x8b_c01037{left:203.932685pt;}
.x19_c01037{left:204.960000pt;}
.x38_c01037{left:208.560000pt;}
.x5e_c01037{left:209.902199pt;}
.x70_c01037{left:211.571795pt;}
.x7e_c01037{left:214.706948pt;}
.xb_c01037{left:218.160000pt;}
.x94_c01037{left:219.475948pt;}
.xa2_c01037{left:220.475116pt;}
.x9c_c01037{left:225.049903pt;}
.x24_c01037{left:227.760000pt;}
.x4b_c01037{left:229.440000pt;}
.x39_c01037{left:231.360000pt;}
.xa6_c01037{left:233.760000pt;}
.xc_c01037{left:234.960000pt;}
.x5f_c01037{left:240.844207pt;}
.x77_c01037{left:242.302688pt;}
.x53_c01037{left:243.280000pt;}
.x40_c01037{left:244.560000pt;}
.xa3_c01037{left:245.881225pt;}
.x69_c01037{left:248.400000pt;}
.x71_c01037{left:249.694887pt;}
.x2e_c01037{left:250.800000pt;}
.x82_c01037{left:251.896143pt;}
.x25_c01037{left:255.360000pt;}
.x60_c01037{left:260.292632pt;}
.x9d_c01037{left:261.725903pt;}
.xa1_c01037{left:263.150611pt;}
.x90_c01037{left:265.318676pt;}
.x6b_c01037{left:266.762667pt;}
.x1a_c01037{left:267.840000pt;}
.x3a_c01037{left:269.280000pt;}
.x4e_c01037{left:270.960000pt;}
.x7c_c01037{left:272.309289pt;}
.x83_c01037{left:273.972392pt;}
.xd_c01037{left:277.440000pt;}
.x54_c01037{left:279.478667pt;}
.x58_c01037{left:282.344764pt;}
.x1b_c01037{left:284.160000pt;}
.x75_c01037{left:288.619581pt;}
.x6a_c01037{left:289.920000pt;}
.x41_c01037{left:292.800000pt;}
.x61_c01037{left:294.842728pt;}
.x78_c01037{left:298.493971pt;}
.x2f_c01037{left:301.200000pt;}
.x7f_c01037{left:302.542583pt;}
.x95_c01037{left:303.500872pt;}
.x9e_c01037{left:308.520569pt;}
.x26_c01037{left:309.600000pt;}
.x62_c01037{left:310.496399pt;}
.x55_c01037{left:312.112000pt;}
.x1c_c01037{left:318.240000pt;}
.xe_c01037{left:319.200000pt;}
.x91_c01037{left:324.362031pt;}
.x98_c01037{left:326.051661pt;}
.x79_c01037{left:328.220960pt;}
.x42_c01037{left:330.240000pt;}
.x3b_c01037{left:331.440000pt;}
.x27_c01037{left:334.320000pt;}
.x4_c01037{left:337.440000pt;}
.x80_c01037{left:338.541645pt;}
.x59_c01037{left:339.704836pt;}
.xa4_c01037{left:340.904476pt;}
.x8c_c01037{left:344.580208pt;}
.x96_c01037{left:347.666689pt;}
.xf_c01037{left:349.920000pt;}
.x30_c01037{left:354.960000pt;}
.x56_c01037{left:358.885333pt;}
.x43_c01037{left:361.680000pt;}
.x1d_c01037{left:363.600000pt;}
.x7a_c01037{left:365.669371pt;}
.x84_c01037{left:369.066767pt;}
.x28_c01037{left:378.240000pt;}
.x92_c01037{left:379.562763pt;}
.x31_c01037{left:381.840000pt;}
.x44_c01037{left:384.240000pt;}
.x10_c01037{left:386.160000pt;}
.x8d_c01037{left:390.662232pt;}
.x99_c01037{left:392.282928pt;}
.x85_c01037{left:396.624408pt;}
.x29_c01037{left:401.280000pt;}
.x7b_c01037{left:405.740477pt;}
.x11_c01037{left:409.920000pt;}
.x81_c01037{left:413.903800pt;}
.x93_c01037{left:422.044960pt;}
.x32_c01037{left:423.600000pt;}
.x1e_c01037{left:428.880000pt;}
.x9a_c01037{left:433.085140pt;}
.x63_c01037{left:436.467171pt;}
.x7d_c01037{left:438.046275pt;}
.x2a_c01037{left:440.640000pt;}
.x1f_c01037{left:445.920000pt;}
.x12_c01037{left:449.280000pt;}
.x4c_c01037{left:453.120000pt;}
.x8e_c01037{left:459.558601pt;}
.x33_c01037{left:461.040000pt;}
.x4f_c01037{left:465.600000pt;}
.x8f_c01037{left:467.954968pt;}
.x13_c01037{left:485.520000pt;}
.x64_c01037{left:489.996344pt;}
.x5a_c01037{left:503.161243pt;}
.x65_c01037{left:506.791377pt;}
.x50_c01037{left:509.280000pt;}
.x20_c01037{left:513.600000pt;}
.x34_c01037{left:517.440000pt;}
.x2b_c01037{left:519.840000pt;}
.x66_c01037{left:522.421048pt;}
.xa5_c01037{left:525.996399pt;}
.x14_c01037{left:528.000000pt;}
.x9b_c01037{left:537.695996pt;}
.x97_c01037{left:562.515717pt;}
.x86_c01037{left:563.580908pt;}
.x72_c01037{left:564.647681pt;}
.x5b_c01037{left:565.983864pt;}
.x4d_c01037{left:566.880000pt;}
.x15_c01037{left:567.840000pt;}
.x5_c01037{left:568.800000pt;}
.x3c_c01037{left:569.760000pt;}
.x21_c01037{left:574.080000pt;}
.x45_c01037{left:580.080000pt;}
.x7_c01037{left:581.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_c01038 {
    display:none;
  }
  .loading-indicator_c01038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01038 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01038 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01038" -> "#page-container .classname_c01038")
 */
.pf_c01038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01038 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01038 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01038 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01038 {overflow:visible;}
  }
}
.c_c01038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01038 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01038:after { /* webkit #35443 */
  content: '';
}
.t_c01038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01038 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01038 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01038 { /* info for Javascript */
  display:none;
}
.l_c01038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.000000;font-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_c01038{transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);-ms-transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);-webkit-transform:matrix(0.010539,-0.000126,0.003000,0.249982,0,0);}
.m45_c01038{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);}
.mc4_c01038{transform:matrix(0.011728,-0.000235,0.004999,0.249950,0,0);-ms-transform:matrix(0.011728,-0.000235,0.004999,0.249950,0,0);-webkit-transform:matrix(0.011728,-0.000235,0.004999,0.249950,0,0);}
.m36_c01038{transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-ms-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);-webkit-transform:matrix(0.011784,-0.000141,0.003000,0.249982,0,0);}
.ma4_c01038{transform:matrix(0.013632,-0.000273,0.004999,0.249950,0,0);-ms-transform:matrix(0.013632,-0.000273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.013632,-0.000273,0.004999,0.249950,0,0);}
.m0_c01038{transform:matrix(0.013770,-0.000110,0.002000,0.249992,0,0);-ms-transform:matrix(0.013770,-0.000110,0.002000,0.249992,0,0);-webkit-transform:matrix(0.013770,-0.000110,0.002000,0.249992,0,0);}
.m19_c01038{transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.014263,0.000228,-0.003999,0.249968,0,0);}
.mbd_c01038{transform:matrix(0.019936,-0.000399,0.004999,0.249950,0,0);-ms-transform:matrix(0.019936,-0.000399,0.004999,0.249950,0,0);-webkit-transform:matrix(0.019936,-0.000399,0.004999,0.249950,0,0);}
.m40_c01038{transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024245,0.000000,0.000000,0.250000,0,0);}
.mba_c01038{transform:matrix(0.031424,-0.000628,0.004999,0.249950,0,0);-ms-transform:matrix(0.031424,-0.000628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.031424,-0.000628,0.004999,0.249950,0,0);}
.m4_c01038{transform:matrix(0.035324,-0.000283,0.002000,0.249992,0,0);-ms-transform:matrix(0.035324,-0.000283,0.002000,0.249992,0,0);-webkit-transform:matrix(0.035324,-0.000283,0.002000,0.249992,0,0);}
.m4d_c01038{transform:matrix(0.042600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042600,0.000000,0.000000,0.250000,0,0);}
.m38_c01038{transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042855,0.000000,0.000000,0.250000,0,0);}
.m1_c01038{transform:matrix(0.054768,-0.000438,0.002000,0.249992,0,0);-ms-transform:matrix(0.054768,-0.000438,0.002000,0.249992,0,0);-webkit-transform:matrix(0.054768,-0.000438,0.002000,0.249992,0,0);}
.me0_c01038{transform:matrix(0.057933,-0.001159,0.004999,0.249950,0,0);-ms-transform:matrix(0.057933,-0.001159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.057933,-0.001159,0.004999,0.249950,0,0);}
.m33_c01038{transform:matrix(0.066775,-0.000801,0.003000,0.249982,0,0);-ms-transform:matrix(0.066775,-0.000801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.066775,-0.000801,0.003000,0.249982,0,0);}
.m2e_c01038{transform:matrix(0.068330,-0.000820,0.003000,0.249982,0,0);-ms-transform:matrix(0.068330,-0.000820,0.003000,0.249982,0,0);-webkit-transform:matrix(0.068330,-0.000820,0.003000,0.249982,0,0);}
.m4c_c01038{transform:matrix(0.086460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086460,0.000000,0.000000,0.250000,0,0);}
.m22_c01038{transform:matrix(0.088004,0.001408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.088004,0.001408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.088004,0.001408,-0.003999,0.249968,0,0);}
.md0_c01038{transform:matrix(0.109878,-0.002198,0.004999,0.249950,0,0);-ms-transform:matrix(0.109878,-0.002198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.109878,-0.002198,0.004999,0.249950,0,0);}
.med_c01038{transform:matrix(0.139552,-0.002791,0.004999,0.249950,0,0);-ms-transform:matrix(0.139552,-0.002791,0.004999,0.249950,0,0);-webkit-transform:matrix(0.139552,-0.002791,0.004999,0.249950,0,0);}
.m6_c01038{transform:matrix(0.141380,-0.001131,0.002000,0.249992,0,0);-ms-transform:matrix(0.141380,-0.001131,0.002000,0.249992,0,0);-webkit-transform:matrix(0.141380,-0.001131,0.002000,0.249992,0,0);}
.md8_c01038{transform:matrix(0.146956,-0.002939,0.004999,0.249950,0,0);-ms-transform:matrix(0.146956,-0.002939,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146956,-0.002939,0.004999,0.249950,0,0);}
.m5c_c01038{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);}
.m7b_c01038{transform:matrix(0.150614,-0.001807,0.003000,0.249982,0,0);-ms-transform:matrix(0.150614,-0.001807,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150614,-0.001807,0.003000,0.249982,0,0);}
.mdc_c01038{transform:matrix(0.151180,-0.003024,0.004999,0.249950,0,0);-ms-transform:matrix(0.151180,-0.003024,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151180,-0.003024,0.004999,0.249950,0,0);}
.m96_c01038{transform:matrix(0.153174,-0.003063,0.004999,0.249950,0,0);-ms-transform:matrix(0.153174,-0.003063,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153174,-0.003063,0.004999,0.249950,0,0);}
.m69_c01038{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01038{transform:matrix(0.157124,-0.003142,0.004999,0.249950,0,0);-ms-transform:matrix(0.157124,-0.003142,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157124,-0.003142,0.004999,0.249950,0,0);}
.m71_c01038{transform:matrix(0.158745,-0.001746,0.002750,0.249985,0,0);-ms-transform:matrix(0.158745,-0.001746,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158745,-0.001746,0.002750,0.249985,0,0);}
.meb_c01038{transform:matrix(0.158828,-0.003177,0.004999,0.249950,0,0);-ms-transform:matrix(0.158828,-0.003177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158828,-0.003177,0.004999,0.249950,0,0);}
.m78_c01038{transform:matrix(0.159674,-0.001916,0.003000,0.249982,0,0);-ms-transform:matrix(0.159674,-0.001916,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159674,-0.001916,0.003000,0.249982,0,0);}
.m86_c01038{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);}
.mce_c01038{transform:matrix(0.159958,-0.003199,0.004999,0.249950,0,0);-ms-transform:matrix(0.159958,-0.003199,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159958,-0.003199,0.004999,0.249950,0,0);}
.m57_c01038{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);}
.m2f_c01038{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);}
.md7_c01038{transform:matrix(0.162742,-0.003255,0.004999,0.249950,0,0);-ms-transform:matrix(0.162742,-0.003255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162742,-0.003255,0.004999,0.249950,0,0);}
.m67_c01038{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);}
.m9_c01038{transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);-ms-transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163030,-0.001304,0.002000,0.249992,0,0);}
.m1d_c01038{transform:matrix(0.163849,0.002622,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163849,0.002622,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163849,0.002622,-0.003999,0.249968,0,0);}
.mb_c01038{transform:matrix(0.164185,-0.001313,0.002000,0.249992,0,0);-ms-transform:matrix(0.164185,-0.001313,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164185,-0.001313,0.002000,0.249992,0,0);}
.mea_c01038{transform:matrix(0.164472,-0.003289,0.004999,0.249950,0,0);-ms-transform:matrix(0.164472,-0.003289,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164472,-0.003289,0.004999,0.249950,0,0);}
.ma_c01038{transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);-ms-transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);}
.ma8_c01038{transform:matrix(0.166672,-0.003333,0.004999,0.249950,0,0);-ms-transform:matrix(0.166672,-0.003333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166672,-0.003333,0.004999,0.249950,0,0);}
.m87_c01038{transform:matrix(0.166797,-0.003336,0.004999,0.249950,0,0);-ms-transform:matrix(0.166797,-0.003336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166797,-0.003336,0.004999,0.249950,0,0);}
.m91_c01038{transform:matrix(0.166842,-0.003337,0.004999,0.249950,0,0);-ms-transform:matrix(0.166842,-0.003337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166842,-0.003337,0.004999,0.249950,0,0);}
.ma0_c01038{transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);-ms-transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167352,-0.003347,0.004999,0.249950,0,0);}
.ma3_c01038{transform:matrix(0.168396,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168396,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168396,-0.003368,0.004999,0.249950,0,0);}
.me2_c01038{transform:matrix(0.168421,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168421,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168421,-0.003368,0.004999,0.249950,0,0);}
.m51_c01038{transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168480,0.000000,0.000000,0.250000,0,0);}
.m73_c01038{transform:matrix(0.169330,-0.001863,0.002750,0.249985,0,0);-ms-transform:matrix(0.169330,-0.001863,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169330,-0.001863,0.002750,0.249985,0,0);}
.m5d_c01038{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);}
.mb2_c01038{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);}
.m58_c01038{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);}
.m9f_c01038{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);}
.ma2_c01038{transform:matrix(0.172890,-0.003458,0.004999,0.249950,0,0);-ms-transform:matrix(0.172890,-0.003458,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172890,-0.003458,0.004999,0.249950,0,0);}
.m61_c01038{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);}
.mee_c01038{transform:matrix(0.174985,-0.003500,0.004999,0.249950,0,0);-ms-transform:matrix(0.174985,-0.003500,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174985,-0.003500,0.004999,0.249950,0,0);}
.m8a_c01038{transform:matrix(0.175445,-0.003509,0.004999,0.249950,0,0);-ms-transform:matrix(0.175445,-0.003509,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175445,-0.003509,0.004999,0.249950,0,0);}
.mcc_c01038{transform:matrix(0.175665,-0.003513,0.004999,0.249950,0,0);-ms-transform:matrix(0.175665,-0.003513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175665,-0.003513,0.004999,0.249950,0,0);}
.m9e_c01038{transform:matrix(0.175990,-0.003520,0.004999,0.249950,0,0);-ms-transform:matrix(0.175990,-0.003520,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175990,-0.003520,0.004999,0.249950,0,0);}
.maa_c01038{transform:matrix(0.176300,-0.003526,0.004999,0.249950,0,0);-ms-transform:matrix(0.176300,-0.003526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176300,-0.003526,0.004999,0.249950,0,0);}
.md9_c01038{transform:matrix(0.178599,-0.003572,0.004999,0.249950,0,0);-ms-transform:matrix(0.178599,-0.003572,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178599,-0.003572,0.004999,0.249950,0,0);}
.m66_c01038{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);}
.m93_c01038{transform:matrix(0.179394,-0.003588,0.004999,0.249950,0,0);-ms-transform:matrix(0.179394,-0.003588,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179394,-0.003588,0.004999,0.249950,0,0);}
.m7a_c01038{transform:matrix(0.179797,-0.002158,0.003000,0.249982,0,0);-ms-transform:matrix(0.179797,-0.002158,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179797,-0.002158,0.003000,0.249982,0,0);}
.m16_c01038{transform:matrix(0.179919,-0.001439,0.002000,0.249992,0,0);-ms-transform:matrix(0.179919,-0.001439,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179919,-0.001439,0.002000,0.249992,0,0);}
.m7_c01038{transform:matrix(0.180359,-0.001443,0.002000,0.249992,0,0);-ms-transform:matrix(0.180359,-0.001443,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180359,-0.001443,0.002000,0.249992,0,0);}
.mbf_c01038{transform:matrix(0.180974,-0.003619,0.004999,0.249950,0,0);-ms-transform:matrix(0.180974,-0.003619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180974,-0.003619,0.004999,0.249950,0,0);}
.mec_c01038{transform:matrix(0.181124,-0.003622,0.004999,0.249950,0,0);-ms-transform:matrix(0.181124,-0.003622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181124,-0.003622,0.004999,0.249950,0,0);}
.mf_c01038{transform:matrix(0.181199,-0.001450,0.002000,0.249992,0,0);-ms-transform:matrix(0.181199,-0.001450,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181199,-0.001450,0.002000,0.249992,0,0);}
.mf1_c01038{transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);-ms-transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);}
.m24_c01038{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);}
.me9_c01038{transform:matrix(0.183213,-0.003664,0.004999,0.249950,0,0);-ms-transform:matrix(0.183213,-0.003664,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183213,-0.003664,0.004999,0.249950,0,0);}
.m29_c01038{transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);-ms-transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183272,-0.002199,0.003000,0.249982,0,0);}
.m68_c01038{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);}
.m97_c01038{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);}
.m12_c01038{transform:matrix(0.183774,-0.001470,0.002000,0.249992,0,0);-ms-transform:matrix(0.183774,-0.001470,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183774,-0.001470,0.002000,0.249992,0,0);}
.ma1_c01038{transform:matrix(0.184678,-0.003694,0.004999,0.249950,0,0);-ms-transform:matrix(0.184678,-0.003694,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184678,-0.003694,0.004999,0.249950,0,0);}
.m65_c01038{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);}
.me1_c01038{transform:matrix(0.185553,-0.003711,0.004999,0.249950,0,0);-ms-transform:matrix(0.185553,-0.003711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185553,-0.003711,0.004999,0.249950,0,0);}
.m5e_c01038{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);}
.mb7_c01038{transform:matrix(0.185943,-0.003719,0.004999,0.249950,0,0);-ms-transform:matrix(0.185943,-0.003719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185943,-0.003719,0.004999,0.249950,0,0);}
.md6_c01038{transform:matrix(0.186228,-0.003725,0.004999,0.249950,0,0);-ms-transform:matrix(0.186228,-0.003725,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186228,-0.003725,0.004999,0.249950,0,0);}
.m8_c01038{transform:matrix(0.186749,-0.001494,0.002000,0.249992,0,0);-ms-transform:matrix(0.186749,-0.001494,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186749,-0.001494,0.002000,0.249992,0,0);}
.m79_c01038{transform:matrix(0.187182,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187182,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187182,-0.002246,0.003000,0.249982,0,0);}
.m6e_c01038{transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187414,-0.002062,0.002750,0.249985,0,0);}
.m55_c01038{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);}
.m43_c01038{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);}
.m10_c01038{transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);-ms-transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188944,-0.001512,0.002000,0.249992,0,0);}
.m70_c01038{transform:matrix(0.189054,-0.002080,0.002750,0.249985,0,0);-ms-transform:matrix(0.189054,-0.002080,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189054,-0.002080,0.002750,0.249985,0,0);}
.md5_c01038{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);}
.m77_c01038{transform:matrix(0.189951,-0.002279,0.003000,0.249982,0,0);-ms-transform:matrix(0.189951,-0.002279,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189951,-0.002279,0.003000,0.249982,0,0);}
.m60_c01038{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_c01038{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);}
.m5f_c01038{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);}
.m76_c01038{transform:matrix(0.191216,-0.002295,0.003000,0.249982,0,0);-ms-transform:matrix(0.191216,-0.002295,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191216,-0.002295,0.003000,0.249982,0,0);}
.m30_c01038{transform:matrix(0.191326,-0.002296,0.003000,0.249982,0,0);-ms-transform:matrix(0.191326,-0.002296,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191326,-0.002296,0.003000,0.249982,0,0);}
.m2b_c01038{transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);-ms-transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191521,-0.002298,0.003000,0.249982,0,0);}
.m2d_c01038{transform:matrix(0.191706,-0.002300,0.003000,0.249982,0,0);-ms-transform:matrix(0.191706,-0.002300,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191706,-0.002300,0.003000,0.249982,0,0);}
.mcb_c01038{transform:matrix(0.191862,-0.003837,0.004999,0.249950,0,0);-ms-transform:matrix(0.191862,-0.003837,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191862,-0.003837,0.004999,0.249950,0,0);}
.m52_c01038{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);}
.mcf_c01038{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);}
.m15_c01038{transform:matrix(0.192389,-0.001539,0.002000,0.249992,0,0);-ms-transform:matrix(0.192389,-0.001539,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192389,-0.001539,0.002000,0.249992,0,0);}
.m56_c01038{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);}
.m7f_c01038{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);}
.m1f_c01038{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);}
.mca_c01038{transform:matrix(0.193761,-0.003875,0.004999,0.249950,0,0);-ms-transform:matrix(0.193761,-0.003875,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193761,-0.003875,0.004999,0.249950,0,0);}
.m27_c01038{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);}
.m72_c01038{transform:matrix(0.195298,-0.002148,0.002750,0.249985,0,0);-ms-transform:matrix(0.195298,-0.002148,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195298,-0.002148,0.002750,0.249985,0,0);}
.mad_c01038{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);}
.ma9_c01038{transform:matrix(0.196236,-0.003925,0.004999,0.249950,0,0);-ms-transform:matrix(0.196236,-0.003925,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196236,-0.003925,0.004999,0.249950,0,0);}
.m11_c01038{transform:matrix(0.196279,-0.001570,0.002000,0.249992,0,0);-ms-transform:matrix(0.196279,-0.001570,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196279,-0.001570,0.002000,0.249992,0,0);}
.m8b_c01038{transform:matrix(0.197206,-0.003944,0.004999,0.249950,0,0);-ms-transform:matrix(0.197206,-0.003944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197206,-0.003944,0.004999,0.249950,0,0);}
.m6f_c01038{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);}
.m26_c01038{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);}
.m1c_c01038{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);}
.mb3_c01038{transform:matrix(0.201650,-0.004033,0.004999,0.249950,0,0);-ms-transform:matrix(0.201650,-0.004033,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201650,-0.004033,0.004999,0.249950,0,0);}
.m7c_c01038{transform:matrix(0.202920,-0.002435,0.003000,0.249982,0,0);-ms-transform:matrix(0.202920,-0.002435,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202920,-0.002435,0.003000,0.249982,0,0);}
.m2_c01038{transform:matrix(0.203293,-0.001626,0.002000,0.249992,0,0);-ms-transform:matrix(0.203293,-0.001626,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203293,-0.001626,0.002000,0.249992,0,0);}
.m1e_c01038{transform:matrix(0.205084,0.003281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205084,0.003281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205084,0.003281,-0.003999,0.249968,0,0);}
.mb8_c01038{transform:matrix(0.205139,-0.004103,0.004999,0.249950,0,0);-ms-transform:matrix(0.205139,-0.004103,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205139,-0.004103,0.004999,0.249950,0,0);}
.m9d_c01038{transform:matrix(0.205889,-0.004118,0.004999,0.249950,0,0);-ms-transform:matrix(0.205889,-0.004118,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205889,-0.004118,0.004999,0.249950,0,0);}
.me8_c01038{transform:matrix(0.206624,-0.004132,0.004999,0.249950,0,0);-ms-transform:matrix(0.206624,-0.004132,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206624,-0.004132,0.004999,0.249950,0,0);}
.mac_c01038{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);}
.m85_c01038{transform:matrix(0.207873,-0.004157,0.004999,0.249950,0,0);-ms-transform:matrix(0.207873,-0.004157,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207873,-0.004157,0.004999,0.249950,0,0);}
.m62_c01038{transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208105,0.000000,0.000000,0.250000,0,0);}
.m99_c01038{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);}
.m13_c01038{transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);-ms-transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209378,-0.001675,0.002000,0.249992,0,0);}
.m9c_c01038{transform:matrix(0.209443,-0.004189,0.004999,0.249950,0,0);-ms-transform:matrix(0.209443,-0.004189,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209443,-0.004189,0.004999,0.249950,0,0);}
.mae_c01038{transform:matrix(0.210553,-0.004211,0.004999,0.249950,0,0);-ms-transform:matrix(0.210553,-0.004211,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210553,-0.004211,0.004999,0.249950,0,0);}
.mc7_c01038{transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);-ms-transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211733,-0.004235,0.004999,0.249950,0,0);}
.mef_c01038{transform:matrix(0.211953,-0.004239,0.004999,0.249950,0,0);-ms-transform:matrix(0.211953,-0.004239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211953,-0.004239,0.004999,0.249950,0,0);}
.m95_c01038{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);}
.mbe_c01038{transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);-ms-transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212413,-0.004248,0.004999,0.249950,0,0);}
.m6d_c01038{transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-ms-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212677,-0.002339,0.002750,0.249985,0,0);}
.mcd_c01038{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);}
.m31_c01038{transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);-ms-transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215255,-0.002583,0.003000,0.249982,0,0);}
.me_c01038{transform:matrix(0.215908,-0.001727,0.002000,0.249992,0,0);-ms-transform:matrix(0.215908,-0.001727,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215908,-0.001727,0.002000,0.249992,0,0);}
.md1_c01038{transform:matrix(0.216637,-0.004333,0.004999,0.249950,0,0);-ms-transform:matrix(0.216637,-0.004333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216637,-0.004333,0.004999,0.249950,0,0);}
.m81_c01038{transform:matrix(0.216695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216695,0.000000,0.000000,0.250000,0,0);}
.m98_c01038{transform:matrix(0.216802,-0.004336,0.004999,0.249950,0,0);-ms-transform:matrix(0.216802,-0.004336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216802,-0.004336,0.004999,0.249950,0,0);}
.mb4_c01038{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);}
.m3b_c01038{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);}
.mb6_c01038{transform:matrix(0.219446,-0.004389,0.004999,0.249950,0,0);-ms-transform:matrix(0.219446,-0.004389,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219446,-0.004389,0.004999,0.249950,0,0);}
.ma7_c01038{transform:matrix(0.221336,-0.004427,0.004999,0.249950,0,0);-ms-transform:matrix(0.221336,-0.004427,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221336,-0.004427,0.004999,0.249950,0,0);}
.me4_c01038{transform:matrix(0.221556,-0.004431,0.004999,0.249950,0,0);-ms-transform:matrix(0.221556,-0.004431,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221556,-0.004431,0.004999,0.249950,0,0);}
.mc8_c01038{transform:matrix(0.221926,-0.004439,0.004999,0.249950,0,0);-ms-transform:matrix(0.221926,-0.004439,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221926,-0.004439,0.004999,0.249950,0,0);}
.m25_c01038{transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);}
.m90_c01038{transform:matrix(0.224340,-0.004487,0.004999,0.249950,0,0);-ms-transform:matrix(0.224340,-0.004487,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224340,-0.004487,0.004999,0.249950,0,0);}
.mf0_c01038{transform:matrix(0.224665,-0.004493,0.004999,0.249950,0,0);-ms-transform:matrix(0.224665,-0.004493,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224665,-0.004493,0.004999,0.249950,0,0);}
.m4e_c01038{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);}
.mc0_c01038{transform:matrix(0.225530,-0.004511,0.004999,0.249950,0,0);-ms-transform:matrix(0.225530,-0.004511,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225530,-0.004511,0.004999,0.249950,0,0);}
.mb9_c01038{transform:matrix(0.226170,-0.004523,0.004999,0.249950,0,0);-ms-transform:matrix(0.226170,-0.004523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226170,-0.004523,0.004999,0.249950,0,0);}
.m54_c01038{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);}
.m75_c01038{transform:matrix(0.228464,-0.002742,0.003000,0.249982,0,0);-ms-transform:matrix(0.228464,-0.002742,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228464,-0.002742,0.003000,0.249982,0,0);}
.m17_c01038{transform:matrix(0.229188,-0.001834,0.002000,0.249992,0,0);-ms-transform:matrix(0.229188,-0.001834,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229188,-0.001834,0.002000,0.249992,0,0);}
.md4_c01038{transform:matrix(0.229369,-0.004587,0.004999,0.249950,0,0);-ms-transform:matrix(0.229369,-0.004587,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229369,-0.004587,0.004999,0.249950,0,0);}
.m5b_c01038{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);}
.m80_c01038{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);}
.m94_c01038{transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);-ms-transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);}
.m88_c01038{transform:matrix(0.236288,-0.004726,0.004999,0.249950,0,0);-ms-transform:matrix(0.236288,-0.004726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236288,-0.004726,0.004999,0.249950,0,0);}
.m5_c01038{transform:matrix(0.237567,-0.001901,0.002000,0.249992,0,0);-ms-transform:matrix(0.237567,-0.001901,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237567,-0.001901,0.002000,0.249992,0,0);}
.mc1_c01038{transform:matrix(0.237862,-0.004757,0.004999,0.249950,0,0);-ms-transform:matrix(0.237862,-0.004757,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237862,-0.004757,0.004999,0.249950,0,0);}
.m2a_c01038{transform:matrix(0.238333,-0.002860,0.003000,0.249982,0,0);-ms-transform:matrix(0.238333,-0.002860,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238333,-0.002860,0.003000,0.249982,0,0);}
.m92_c01038{transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);-ms-transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);}
.m37_c01038{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);}
.mb1_c01038{transform:matrix(0.243781,-0.004876,0.004999,0.249950,0,0);-ms-transform:matrix(0.243781,-0.004876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243781,-0.004876,0.004999,0.249950,0,0);}
.m9b_c01038{transform:matrix(0.246041,-0.004921,0.004999,0.249950,0,0);-ms-transform:matrix(0.246041,-0.004921,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246041,-0.004921,0.004999,0.249950,0,0);}
.mab_c01038{transform:matrix(0.246911,-0.004938,0.004999,0.249950,0,0);-ms-transform:matrix(0.246911,-0.004938,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246911,-0.004938,0.004999,0.249950,0,0);}
.m3e_c01038{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);}
.m14_c01038{transform:matrix(0.248822,-0.001991,0.002000,0.249992,0,0);-ms-transform:matrix(0.248822,-0.001991,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248822,-0.001991,0.002000,0.249992,0,0);}
.mb5_c01038{transform:matrix(0.252450,-0.005049,0.004999,0.249950,0,0);-ms-transform:matrix(0.252450,-0.005049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252450,-0.005049,0.004999,0.249950,0,0);}
.mc2_c01038{transform:matrix(0.254464,-0.005089,0.004999,0.249950,0,0);-ms-transform:matrix(0.254464,-0.005089,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254464,-0.005089,0.004999,0.249950,0,0);}
.m8c_c01038{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);}
.me3_c01038{transform:matrix(0.258123,-0.005162,0.004999,0.249950,0,0);-ms-transform:matrix(0.258123,-0.005162,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258123,-0.005162,0.004999,0.249950,0,0);}
.m49_c01038{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);}
.mdb_c01038{transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);-ms-transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);-webkit-transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);}
.m1a_c01038{transform:matrix(0.262241,0.004196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262241,0.004196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262241,0.004196,-0.003999,0.249968,0,0);}
.m6b_c01038{transform:matrix(0.267965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267965,0.000000,0.000000,0.250000,0,0);}
.m6c_c01038{transform:matrix(0.274370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274370,0.000000,0.000000,0.250000,0,0);}
.m4b_c01038{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.m34_c01038{transform:matrix(0.275935,-0.003311,0.003000,0.249982,0,0);-ms-transform:matrix(0.275935,-0.003311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275935,-0.003311,0.003000,0.249982,0,0);}
.m18_c01038{transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);-ms-transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);}
.m2c_c01038{transform:matrix(0.284605,-0.003415,0.003000,0.249982,0,0);-ms-transform:matrix(0.284605,-0.003415,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284605,-0.003415,0.003000,0.249982,0,0);}
.mb0_c01038{transform:matrix(0.288492,-0.005770,0.004999,0.249950,0,0);-ms-transform:matrix(0.288492,-0.005770,0.004999,0.249950,0,0);-webkit-transform:matrix(0.288492,-0.005770,0.004999,0.249950,0,0);}
.m4f_c01038{transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291525,0.000000,0.000000,0.250000,0,0);}
.me5_c01038{transform:matrix(0.295716,-0.005914,0.004999,0.249950,0,0);-ms-transform:matrix(0.295716,-0.005914,0.004999,0.249950,0,0);-webkit-transform:matrix(0.295716,-0.005914,0.004999,0.249950,0,0);}
.m83_c01038{transform:matrix(0.296575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296575,0.000000,0.000000,0.250000,0,0);}
.mdd_c01038{transform:matrix(0.300565,-0.006011,0.004999,0.249950,0,0);-ms-transform:matrix(0.300565,-0.006011,0.004999,0.249950,0,0);-webkit-transform:matrix(0.300565,-0.006011,0.004999,0.249950,0,0);}
.mf7_c01038{transform:matrix(0.300847,-0.003309,0.002750,0.249985,0,0);-ms-transform:matrix(0.300847,-0.003309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300847,-0.003309,0.002750,0.249985,0,0);}
.m39_c01038{transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307195,0.000000,0.000000,0.250000,0,0);}
.m82_c01038{transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307595,0.000000,0.000000,0.250000,0,0);}
.m89_c01038{transform:matrix(0.308688,-0.006174,0.004999,0.249950,0,0);-ms-transform:matrix(0.308688,-0.006174,0.004999,0.249950,0,0);-webkit-transform:matrix(0.308688,-0.006174,0.004999,0.249950,0,0);}
.m64_c01038{transform:matrix(0.317990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317990,0.000000,0.000000,0.250000,0,0);}
.m47_c01038{transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323220,0.000000,0.000000,0.250000,0,0);}
.m6a_c01038{transform:matrix(0.324810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324810,0.000000,0.000000,0.250000,0,0);}
.m8e_c01038{transform:matrix(0.327849,-0.006557,0.004999,0.249950,0,0);-ms-transform:matrix(0.327849,-0.006557,0.004999,0.249950,0,0);-webkit-transform:matrix(0.327849,-0.006557,0.004999,0.249950,0,0);}
.m7d_c01038{transform:matrix(0.337656,-0.004052,0.003000,0.249982,0,0);-ms-transform:matrix(0.337656,-0.004052,0.003000,0.249982,0,0);-webkit-transform:matrix(0.337656,-0.004052,0.003000,0.249982,0,0);}
.m63_c01038{transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338255,0.000000,0.000000,0.250000,0,0);}
.m3f_c01038{transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343665,0.000000,0.000000,0.250000,0,0);}
.maf_c01038{transform:matrix(0.344901,-0.006898,0.004999,0.249950,0,0);-ms-transform:matrix(0.344901,-0.006898,0.004999,0.249950,0,0);-webkit-transform:matrix(0.344901,-0.006898,0.004999,0.249950,0,0);}
.mda_c01038{transform:matrix(0.346151,-0.006923,0.004999,0.249950,0,0);-ms-transform:matrix(0.346151,-0.006923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.346151,-0.006923,0.004999,0.249950,0,0);}
.m41_c01038{transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359985,0.000000,0.000000,0.250000,0,0);}
.mc3_c01038{transform:matrix(0.360448,-0.007209,0.004999,0.249950,0,0);-ms-transform:matrix(0.360448,-0.007209,0.004999,0.249950,0,0);-webkit-transform:matrix(0.360448,-0.007209,0.004999,0.249950,0,0);}
.mc5_c01038{transform:matrix(0.363247,-0.007265,0.004999,0.249950,0,0);-ms-transform:matrix(0.363247,-0.007265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.363247,-0.007265,0.004999,0.249950,0,0);}
.m32_c01038{transform:matrix(0.363289,-0.004359,0.003000,0.249982,0,0);-ms-transform:matrix(0.363289,-0.004359,0.003000,0.249982,0,0);-webkit-transform:matrix(0.363289,-0.004359,0.003000,0.249982,0,0);}
.mf8_c01038{transform:matrix(0.364233,-0.004007,0.002750,0.249985,0,0);-ms-transform:matrix(0.364233,-0.004007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.364233,-0.004007,0.002750,0.249985,0,0);}
.m50_c01038{transform:matrix(0.367665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367665,0.000000,0.000000,0.250000,0,0);}
.md_c01038{transform:matrix(0.369013,-0.002952,0.002000,0.249992,0,0);-ms-transform:matrix(0.369013,-0.002952,0.002000,0.249992,0,0);-webkit-transform:matrix(0.369013,-0.002952,0.002000,0.249992,0,0);}
.m3_c01038{transform:matrix(0.388863,-0.003111,0.002000,0.249992,0,0);-ms-transform:matrix(0.388863,-0.003111,0.002000,0.249992,0,0);-webkit-transform:matrix(0.388863,-0.003111,0.002000,0.249992,0,0);}
.md3_c01038{transform:matrix(0.395936,-0.007919,0.004999,0.249950,0,0);-ms-transform:matrix(0.395936,-0.007919,0.004999,0.249950,0,0);-webkit-transform:matrix(0.395936,-0.007919,0.004999,0.249950,0,0);}
.m4a_c01038{transform:matrix(0.396905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396905,0.000000,0.000000,0.250000,0,0);}
.m9a_c01038{transform:matrix(0.403339,-0.008067,0.004999,0.249950,0,0);-ms-transform:matrix(0.403339,-0.008067,0.004999,0.249950,0,0);-webkit-transform:matrix(0.403339,-0.008067,0.004999,0.249950,0,0);}
.mc6_c01038{transform:matrix(0.406019,-0.008120,0.004999,0.249950,0,0);-ms-transform:matrix(0.406019,-0.008120,0.004999,0.249950,0,0);-webkit-transform:matrix(0.406019,-0.008120,0.004999,0.249950,0,0);}
.mf5_c01038{transform:matrix(0.412762,-0.008255,0.004999,0.249950,0,0);-ms-transform:matrix(0.412762,-0.008255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.412762,-0.008255,0.004999,0.249950,0,0);}
.m59_c01038{transform:matrix(0.415195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415195,0.000000,0.000000,0.250000,0,0);}
.m74_c01038{transform:matrix(0.416695,-0.005000,0.003000,0.249982,0,0);-ms-transform:matrix(0.416695,-0.005000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.416695,-0.005000,0.003000,0.249982,0,0);}
.m21_c01038{transform:matrix(0.423311,0.006773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.423311,0.006773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.423311,0.006773,-0.003999,0.249968,0,0);}
.m7e_c01038{transform:matrix(0.427419,-0.005129,0.003000,0.249982,0,0);-ms-transform:matrix(0.427419,-0.005129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.427419,-0.005129,0.003000,0.249982,0,0);}
.ma6_c01038{transform:matrix(0.430284,-0.008606,0.004999,0.249950,0,0);-ms-transform:matrix(0.430284,-0.008606,0.004999,0.249950,0,0);-webkit-transform:matrix(0.430284,-0.008606,0.004999,0.249950,0,0);}
.m5a_c01038{transform:matrix(0.464815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464815,0.000000,0.000000,0.250000,0,0);}
.me7_c01038{transform:matrix(0.473210,-0.009464,0.004999,0.249950,0,0);-ms-transform:matrix(0.473210,-0.009464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.473210,-0.009464,0.004999,0.249950,0,0);}
.me6_c01038{transform:matrix(0.476155,-0.009523,0.004999,0.249950,0,0);-ms-transform:matrix(0.476155,-0.009523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.476155,-0.009523,0.004999,0.249950,0,0);}
.m20_c01038{transform:matrix(0.480523,0.007688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.480523,0.007688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.480523,0.007688,-0.003999,0.249968,0,0);}
.m3a_c01038{transform:matrix(0.489730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489730,0.000000,0.000000,0.250000,0,0);}
.mf2_c01038{transform:matrix(0.497446,-0.009949,0.004999,0.249950,0,0);-ms-transform:matrix(0.497446,-0.009949,0.004999,0.249950,0,0);-webkit-transform:matrix(0.497446,-0.009949,0.004999,0.249950,0,0);}
.m1b_c01038{transform:matrix(0.503596,0.008058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.503596,0.008058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.503596,0.008058,-0.003999,0.249968,0,0);}
.m84_c01038{transform:matrix(0.526295,-0.010526,0.004999,0.249950,0,0);-ms-transform:matrix(0.526295,-0.010526,0.004999,0.249950,0,0);-webkit-transform:matrix(0.526295,-0.010526,0.004999,0.249950,0,0);}
.mf6_c01038{transform:matrix(0.556861,-0.006125,0.002750,0.249985,0,0);-ms-transform:matrix(0.556861,-0.006125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.556861,-0.006125,0.002750,0.249985,0,0);}
.m23_c01038{transform:matrix(0.558089,0.008929,-0.003999,0.249968,0,0);-ms-transform:matrix(0.558089,0.008929,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.558089,0.008929,-0.003999,0.249968,0,0);}
.m8f_c01038{transform:matrix(0.561523,-0.011230,0.004999,0.249950,0,0);-ms-transform:matrix(0.561523,-0.011230,0.004999,0.249950,0,0);-webkit-transform:matrix(0.561523,-0.011230,0.004999,0.249950,0,0);}
.mc_c01038{transform:matrix(0.574972,-0.004600,0.002000,0.249992,0,0);-ms-transform:matrix(0.574972,-0.004600,0.002000,0.249992,0,0);-webkit-transform:matrix(0.574972,-0.004600,0.002000,0.249992,0,0);}
.md2_c01038{transform:matrix(0.603549,-0.012071,0.004999,0.249950,0,0);-ms-transform:matrix(0.603549,-0.012071,0.004999,0.249950,0,0);-webkit-transform:matrix(0.603549,-0.012071,0.004999,0.249950,0,0);}
.m46_c01038{transform:matrix(0.606470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606470,0.000000,0.000000,0.250000,0,0);}
.m3c_c01038{transform:matrix(0.627825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627825,0.000000,0.000000,0.250000,0,0);}
.m28_c01038{transform:matrix(0.637884,-0.007655,0.003000,0.249982,0,0);-ms-transform:matrix(0.637884,-0.007655,0.003000,0.249982,0,0);-webkit-transform:matrix(0.637884,-0.007655,0.003000,0.249982,0,0);}
.m44_c01038{transform:matrix(0.671545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671545,0.000000,0.000000,0.250000,0,0);}
.mdf_c01038{transform:matrix(0.678929,-0.013579,0.004999,0.249950,0,0);-ms-transform:matrix(0.678929,-0.013579,0.004999,0.249950,0,0);-webkit-transform:matrix(0.678929,-0.013579,0.004999,0.249950,0,0);}
.mde_c01038{transform:matrix(0.732169,-0.014643,0.004999,0.249950,0,0);-ms-transform:matrix(0.732169,-0.014643,0.004999,0.249950,0,0);-webkit-transform:matrix(0.732169,-0.014643,0.004999,0.249950,0,0);}
.mf3_c01038{transform:matrix(0.740502,-0.014810,0.004999,0.249950,0,0);-ms-transform:matrix(0.740502,-0.014810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.740502,-0.014810,0.004999,0.249950,0,0);}
.mf4_c01038{transform:matrix(0.760488,-0.015210,0.004999,0.249950,0,0);-ms-transform:matrix(0.760488,-0.015210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.760488,-0.015210,0.004999,0.249950,0,0);}
.mbc_c01038{transform:matrix(0.827095,-0.016542,0.004999,0.249950,0,0);-ms-transform:matrix(0.827095,-0.016542,0.004999,0.249950,0,0);-webkit-transform:matrix(0.827095,-0.016542,0.004999,0.249950,0,0);}
.ma5_c01038{transform:matrix(0.833568,-0.016671,0.004999,0.249950,0,0);-ms-transform:matrix(0.833568,-0.016671,0.004999,0.249950,0,0);-webkit-transform:matrix(0.833568,-0.016671,0.004999,0.249950,0,0);}
.m3d_c01038{transform:matrix(0.841710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841710,0.000000,0.000000,0.250000,0,0);}
.m48_c01038{transform:matrix(0.852400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852400,0.000000,0.000000,0.250000,0,0);}
.mbb_c01038{transform:matrix(0.932389,-0.018648,0.004999,0.249950,0,0);-ms-transform:matrix(0.932389,-0.018648,0.004999,0.249950,0,0);-webkit-transform:matrix(0.932389,-0.018648,0.004999,0.249950,0,0);}
.m42_c01038{transform:matrix(1.106465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.106465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.106465,0.000000,0.000000,0.250000,0,0);}
.m8d_c01038{transform:matrix(1.390512,-0.027810,0.004999,0.249950,0,0);-ms-transform:matrix(1.390512,-0.027810,0.004999,0.249950,0,0);-webkit-transform:matrix(1.390512,-0.027810,0.004999,0.249950,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls0_c01038{letter-spacing:0.000000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:0.000000px;}
.fc0_c01038{color:transparent;}
.fs9_c01038{font-size:31.500000px;}
.fs11_c01038{font-size:49.350000px;}
.fs3_c01038{font-size:59.857660px;}
.fsa_c01038{font-size:60.900000px;}
.fs16_c01038{font-size:61.962389px;}
.fs15_c01038{font-size:63.012599px;}
.fs6_c01038{font-size:65.100000px;}
.fs17_c01038{font-size:65.113019px;}
.fs13_c01038{font-size:66.163229px;}
.fs10_c01038{font-size:67.200000px;}
.fse_c01038{font-size:67.204065px;}
.fs12_c01038{font-size:67.213439px;}
.fs4_c01038{font-size:68.258735px;}
.fsd_c01038{font-size:70.350000px;}
.fs2_c01038{font-size:70.352251px;}
.fs14_c01038{font-size:71.414279px;}
.fs8_c01038{font-size:72.455216px;}
.fs19_c01038{font-size:72.464489px;}
.fsf_c01038{font-size:73.505292px;}
.fsb_c01038{font-size:74.550000px;}
.fs7_c01038{font-size:74.555367px;}
.fs18_c01038{font-size:74.564909px;}
.fs1_c01038{font-size:79.802554px;}
.fs0_c01038{font-size:80.852587px;}
.fsc_c01038{font-size:103.950000px;}
.fs1a_c01038{font-size:122.857432px;}
.fs5_c01038{font-size:124.965993px;}
.y0_c01038{bottom:0.000000px;}
.ye9_c01038{bottom:113.982000px;}
.yea_c01038{bottom:116.379301px;}
.yeb_c01038{bottom:117.515277px;}
.ye6_c01038{bottom:198.159180px;}
.ye7_c01038{bottom:208.174470px;}
.ye8_c01038{bottom:213.725820px;}
.yda_c01038{bottom:222.716670px;}
.ydb_c01038{bottom:224.163570px;}
.ydc_c01038{bottom:224.889420px;}
.ydd_c01038{bottom:225.615180px;}
.yde_c01038{bottom:226.672950px;}
.ydf_c01038{bottom:227.343390px;}
.ye0_c01038{bottom:227.821770px;}
.ye1_c01038{bottom:228.514350px;}
.ye2_c01038{bottom:229.236120px;}
.ye3_c01038{bottom:229.875060px;}
.ye4_c01038{bottom:230.687880px;}
.ye5_c01038{bottom:231.587310px;}
.yd2_c01038{bottom:244.869720px;}
.yd3_c01038{bottom:248.025930px;}
.yd4_c01038{bottom:248.314980px;}
.yd5_c01038{bottom:249.340440px;}
.yd6_c01038{bottom:250.112820px;}
.yd7_c01038{bottom:252.819840px;}
.yd8_c01038{bottom:254.318370px;}
.yd9_c01038{bottom:255.988800px;}
.yc6_c01038{bottom:268.356900px;}
.yc7_c01038{bottom:269.881200px;}
.yc8_c01038{bottom:270.428250px;}
.yc9_c01038{bottom:271.640640px;}
.yca_c01038{bottom:271.969680px;}
.ycb_c01038{bottom:272.920410px;}
.ycc_c01038{bottom:273.278730px;}
.ycd_c01038{bottom:273.898500px;}
.yce_c01038{bottom:274.449540px;}
.ycf_c01038{bottom:274.880190px;}
.yd0_c01038{bottom:276.775110px;}
.yd1_c01038{bottom:277.826460px;}
.yb8_c01038{bottom:291.582960px;}
.yb9_c01038{bottom:293.025180px;}
.yba_c01038{bottom:293.582430px;}
.ybb_c01038{bottom:294.230580px;}
.ybc_c01038{bottom:294.627090px;}
.ybd_c01038{bottom:295.224090px;}
.ybe_c01038{bottom:296.013510px;}
.ybf_c01038{bottom:296.308980px;}
.yc0_c01038{bottom:297.453360px;}
.yc1_c01038{bottom:297.703590px;}
.yc2_c01038{bottom:298.041240px;}
.yc3_c01038{bottom:298.972230px;}
.yc4_c01038{bottom:299.162070px;}
.yc5_c01038{bottom:300.560580px;}
.yae_c01038{bottom:313.998570px;}
.yaf_c01038{bottom:314.955300px;}
.yb0_c01038{bottom:315.417480px;}
.yb1_c01038{bottom:315.831360px;}
.yb2_c01038{bottom:316.468140px;}
.yb3_c01038{bottom:318.006870px;}
.yb4_c01038{bottom:319.790820px;}
.yb5_c01038{bottom:320.426280px;}
.yb6_c01038{bottom:322.727940px;}
.yb7_c01038{bottom:322.899330px;}
.ya2_c01038{bottom:337.489920px;}
.ya3_c01038{bottom:338.861730px;}
.ya4_c01038{bottom:339.534990px;}
.ya5_c01038{bottom:339.951690px;}
.ya6_c01038{bottom:340.733040px;}
.ya7_c01038{bottom:341.268480px;}
.ya8_c01038{bottom:341.924580px;}
.ya9_c01038{bottom:342.733140px;}
.yaa_c01038{bottom:343.091400px;}
.yab_c01038{bottom:343.557570px;}
.yac_c01038{bottom:344.916870px;}
.yad_c01038{bottom:345.878160px;}
.y98_c01038{bottom:363.681180px;}
.y99_c01038{bottom:364.483410px;}
.y9a_c01038{bottom:364.789080px;}
.y9b_c01038{bottom:365.234340px;}
.y9c_c01038{bottom:365.555520px;}
.y9d_c01038{bottom:365.740140px;}
.y9e_c01038{bottom:366.100530px;}
.y9f_c01038{bottom:366.317220px;}
.ya0_c01038{bottom:366.943830px;}
.ya1_c01038{bottom:368.691300px;}
.y8d_c01038{bottom:382.857600px;}
.y8e_c01038{bottom:384.214230px;}
.y8f_c01038{bottom:384.477180px;}
.y90_c01038{bottom:385.521330px;}
.y91_c01038{bottom:386.185860px;}
.y92_c01038{bottom:386.733270px;}
.y93_c01038{bottom:387.417930px;}
.y94_c01038{bottom:387.628530px;}
.y95_c01038{bottom:387.968070px;}
.y96_c01038{bottom:389.649120px;}
.y97_c01038{bottom:391.234380px;}
.y81_c01038{bottom:405.005070px;}
.y82_c01038{bottom:406.344450px;}
.y83_c01038{bottom:406.724880px;}
.y84_c01038{bottom:407.248200px;}
.y85_c01038{bottom:407.741340px;}
.y86_c01038{bottom:408.181500px;}
.y87_c01038{bottom:408.773370px;}
.y88_c01038{bottom:409.418820px;}
.y89_c01038{bottom:409.661790px;}
.y8a_c01038{bottom:410.415960px;}
.y8b_c01038{bottom:411.178020px;}
.y8c_c01038{bottom:413.620560px;}
.y76_c01038{bottom:427.960500px;}
.y77_c01038{bottom:429.602730px;}
.y78_c01038{bottom:430.083870px;}
.y79_c01038{bottom:430.479930px;}
.y7a_c01038{bottom:431.408640px;}
.y7b_c01038{bottom:432.801450px;}
.y7c_c01038{bottom:433.254090px;}
.y7d_c01038{bottom:433.961550px;}
.y7e_c01038{bottom:434.518380px;}
.y7f_c01038{bottom:435.955470px;}
.y80_c01038{bottom:438.563790px;}
.y74_c01038{bottom:453.582000px;}
.y75_c01038{bottom:455.380500px;}
.y62_c01038{bottom:474.661500px;}
.y63_c01038{bottom:474.961520px;}
.y64_c01038{bottom:475.383292px;}
.y65_c01038{bottom:475.846612px;}
.y66_c01038{bottom:476.500045px;}
.y67_c01038{bottom:476.797095px;}
.y68_c01038{bottom:477.768318px;}
.y69_c01038{bottom:496.533000px;}
.y6a_c01038{bottom:497.465742px;}
.y6b_c01038{bottom:497.848224px;}
.y6c_c01038{bottom:498.446958px;}
.y6d_c01038{bottom:498.982188px;}
.y6e_c01038{bottom:499.406826px;}
.y6f_c01038{bottom:500.236212px;}
.y60_c01038{bottom:500.851500px;}
.y70_c01038{bottom:501.201786px;}
.y71_c01038{bottom:501.474162px;}
.y72_c01038{bottom:502.378212px;}
.y73_c01038{bottom:503.187456px;}
.y61_c01038{bottom:508.111500px;}
.y59_c01038{bottom:518.398500px;}
.y5a_c01038{bottom:519.399000px;}
.y5b_c01038{bottom:520.186500px;}
.y5c_c01038{bottom:520.932000px;}
.y5d_c01038{bottom:521.265000px;}
.y5e_c01038{bottom:521.892000px;}
.y5f_c01038{bottom:524.562000px;}
.y4f_c01038{bottom:543.778500px;}
.y50_c01038{bottom:544.407000px;}
.y51_c01038{bottom:544.678500px;}
.y52_c01038{bottom:544.830000px;}
.y53_c01038{bottom:545.149500px;}
.y54_c01038{bottom:545.472000px;}
.y55_c01038{bottom:545.748000px;}
.y56_c01038{bottom:546.087000px;}
.y57_c01038{bottom:546.474000px;}
.y58_c01038{bottom:547.681500px;}
.y44_c01038{bottom:564.300000px;}
.y45_c01038{bottom:565.371000px;}
.y46_c01038{bottom:566.421000px;}
.y47_c01038{bottom:566.796000px;}
.y48_c01038{bottom:567.325500px;}
.y49_c01038{bottom:567.588000px;}
.y4a_c01038{bottom:568.161000px;}
.y4b_c01038{bottom:568.641000px;}
.y4c_c01038{bottom:569.577000px;}
.y4d_c01038{bottom:569.823000px;}
.y4e_c01038{bottom:570.999000px;}
.y40_c01038{bottom:576.451500px;}
.y41_c01038{bottom:579.640500px;}
.y42_c01038{bottom:581.307000px;}
.y43_c01038{bottom:582.613500px;}
.y39_c01038{bottom:605.095500px;}
.y3a_c01038{bottom:606.178500px;}
.y3b_c01038{bottom:606.987000px;}
.y3c_c01038{bottom:608.080500px;}
.y3d_c01038{bottom:608.647500px;}
.y3e_c01038{bottom:610.800000px;}
.y3f_c01038{bottom:611.262000px;}
.y36_c01038{bottom:619.651500px;}
.y37_c01038{bottom:624.831000px;}
.y38_c01038{bottom:627.126000px;}
.y35_c01038{bottom:647.730000px;}
.y32_c01038{bottom:656.276712px;}
.y33_c01038{bottom:656.277402px;}
.y34_c01038{bottom:656.277912px;}
.y26_c01038{bottom:707.404500px;}
.y27_c01038{bottom:708.436980px;}
.y28_c01038{bottom:709.072020px;}
.y29_c01038{bottom:709.360290px;}
.y2a_c01038{bottom:710.199270px;}
.y2b_c01038{bottom:710.376840px;}
.y2c_c01038{bottom:711.169344px;}
.y2d_c01038{bottom:711.325440px;}
.y2e_c01038{bottom:711.782910px;}
.y2f_c01038{bottom:712.045332px;}
.y30_c01038{bottom:713.083464px;}
.y31_c01038{bottom:714.253644px;}
.y25_c01038{bottom:733.156500px;}
.y24_c01038{bottom:754.210152px;}
.y23_c01038{bottom:760.737672px;}
.y22_c01038{bottom:761.397972px;}
.y21_c01038{bottom:772.059048px;}
.y20_c01038{bottom:776.829192px;}
.y1f_c01038{bottom:777.396240px;}
.y1e_c01038{bottom:778.178796px;}
.y1d_c01038{bottom:778.590816px;}
.y1c_c01038{bottom:779.759676px;}
.y1b_c01038{bottom:795.456048px;}
.ye_c01038{bottom:799.737696px;}
.yf_c01038{bottom:800.271204px;}
.y10_c01038{bottom:800.412708px;}
.y11_c01038{bottom:800.804700px;}
.y12_c01038{bottom:801.037788px;}
.y13_c01038{bottom:801.395124px;}
.y14_c01038{bottom:801.468324px;}
.y15_c01038{bottom:801.607668px;}
.y16_c01038{bottom:801.881352px;}
.y17_c01038{bottom:802.294152px;}
.y18_c01038{bottom:802.526544px;}
.y19_c01038{bottom:803.101704px;}
.y1a_c01038{bottom:804.597000px;}
.y4_c01038{bottom:822.419808px;}
.y5_c01038{bottom:822.732924px;}
.y6_c01038{bottom:822.880572px;}
.y7_c01038{bottom:823.463244px;}
.y8_c01038{bottom:823.585752px;}
.y9_c01038{bottom:823.859964px;}
.ya_c01038{bottom:824.343792px;}
.yb_c01038{bottom:824.643840px;}
.yc_c01038{bottom:825.157800px;}
.yd_c01038{bottom:826.219236px;}
.y1_c01038{bottom:848.070000px;}
.y2_c01038{bottom:849.616584px;}
.y3_c01038{bottom:851.386272px;}
.hb_c01038{height:31.500000px;}
.h13_c01038{height:49.350000px;}
.h5_c01038{height:59.857660px;}
.hc_c01038{height:60.900000px;}
.h18_c01038{height:61.962389px;}
.h17_c01038{height:63.012599px;}
.h8_c01038{height:65.100000px;}
.h19_c01038{height:65.113019px;}
.h15_c01038{height:66.163229px;}
.h12_c01038{height:67.200000px;}
.h10_c01038{height:67.204065px;}
.h14_c01038{height:67.213439px;}
.h6_c01038{height:68.258735px;}
.hf_c01038{height:70.350000px;}
.h4_c01038{height:70.352251px;}
.h16_c01038{height:71.414279px;}
.ha_c01038{height:72.455216px;}
.h1b_c01038{height:72.464489px;}
.h11_c01038{height:73.505292px;}
.hd_c01038{height:74.550000px;}
.h9_c01038{height:74.555367px;}
.h1a_c01038{height:74.564909px;}
.h3_c01038{height:79.802554px;}
.h2_c01038{height:80.852587px;}
.he_c01038{height:103.950000px;}
.h1c_c01038{height:122.857432px;}
.h7_c01038{height:124.965993px;}
.h1_c01038{height:1005.000000px;}
.h0_c01038{height:1005.150000px;}
.w0_c01038{width:715.200000px;}
.w1_c01038{width:715.500000px;}
.x0_c01038{left:0.000000px;}
.xe_c01038{left:62.190048px;}
.x19_c01038{left:63.888000px;}
.x66_c01038{left:65.035890px;}
.x24_c01038{left:66.493500px;}
.x1a_c01038{left:68.668428px;}
.x59_c01038{left:72.057000px;}
.x4_c01038{left:75.210936px;}
.x2f_c01038{left:78.300000px;}
.x1e_c01038{left:118.470900px;}
.x5_c01038{left:119.975796px;}
.x72_c01038{left:126.853110px;}
.x6_c01038{left:141.056964px;}
.xf_c01038{left:151.004964px;}
.x1b_c01038{left:152.131092px;}
.x40_c01038{left:153.441000px;}
.x44_c01038{left:154.510500px;}
.x6b_c01038{left:156.155160px;}
.x85_c01038{left:158.169240px;}
.x39_c01038{left:160.986000px;}
.x67_c01038{left:173.025690px;}
.x10_c01038{left:174.505836px;}
.x2d_c01038{left:175.781172px;}
.x5a_c01038{left:178.225500px;}
.x1c_c01038{left:181.539528px;}
.x51_c01038{left:184.849500px;}
.x80_c01038{left:188.990640px;}
.x6c_c01038{left:190.196160px;}
.x76_c01038{left:191.387700px;}
.x45_c01038{left:193.371000px;}
.x30_c01038{left:196.830000px;}
.x5b_c01038{left:198.028500px;}
.x6f_c01038{left:200.825790px;}
.x57_c01038{left:201.960000px;}
.x86_c01038{left:203.540370px;}
.x25_c01038{left:205.453500px;}
.x31_c01038{left:216.000000px;}
.x1_c01038{left:219.789000px;}
.x73_c01038{left:221.402670px;}
.x7_c01038{left:224.204124px;}
.x26_c01038{left:229.476000px;}
.x77_c01038{left:231.898440px;}
.x3a_c01038{left:234.511500px;}
.x8c_c01038{left:236.422500px;}
.x1d_c01038{left:237.482328px;}
.x11_c01038{left:239.818380px;}
.x8_c01038{left:241.767768px;}
.x5c_c01038{left:244.464000px;}
.x32_c01038{left:248.940000px;}
.x78_c01038{left:256.675920px;}
.x46_c01038{left:260.637000px;}
.x4d_c01038{left:262.587000px;}
.x33_c01038{left:272.970000px;}
.x6d_c01038{left:275.261850px;}
.x12_c01038{left:278.705004px;}
.x9_c01038{left:280.919580px;}
.x2e_c01038{left:287.839800px;}
.x83_c01038{left:290.812440px;}
.x4b_c01038{left:292.825500px;}
.x79_c01038{left:294.028920px;}
.x6e_c01038{left:295.747350px;}
.x27_c01038{left:299.391000px;}
.x20_c01038{left:301.860000px;}
.x47_c01038{left:306.780000px;}
.x34_c01038{left:308.340000px;}
.x21_c01038{left:315.090000px;}
.x41_c01038{left:316.368000px;}
.x74_c01038{left:317.546850px;}
.x4e_c01038{left:321.990000px;}
.x4c_c01038{left:323.068500px;}
.x84_c01038{left:329.431440px;}
.x3b_c01038{left:333.871500px;}
.x81_c01038{left:335.582430px;}
.x5d_c01038{left:336.736500px;}
.x13_c01038{left:338.372964px;}
.x7a_c01038{left:343.328850px;}
.x48_c01038{left:346.234500px;}
.x4f_c01038{left:348.994500px;}
.xa_c01038{left:350.023632px;}
.x3e_c01038{left:352.840500px;}
.x58_c01038{left:356.130000px;}
.x62_c01038{left:360.158880px;}
.x7b_c01038{left:361.778820px;}
.x35_c01038{left:365.040000px;}
.x68_c01038{left:369.057780px;}
.x5e_c01038{left:372.109500px;}
.x14_c01038{left:373.754028px;}
.x63_c01038{left:376.359000px;}
.x28_c01038{left:380.230500px;}
.x52_c01038{left:383.848500px;}
.x3c_c01038{left:385.441500px;}
.x87_c01038{left:386.847540px;}
.xb_c01038{left:392.967480px;}
.x49_c01038{left:394.558500px;}
.x22_c01038{left:398.520000px;}
.x5f_c01038{left:399.951000px;}
.x69_c01038{left:405.793470px;}
.x2_c01038{left:413.112000px;}
.x15_c01038{left:419.402760px;}
.x42_c01038{left:425.959500px;}
.x23_c01038{left:428.760000px;}
.x88_c01038{left:430.104990px;}
.x29_c01038{left:431.361000px;}
.x7c_c01038{left:433.328550px;}
.x50_c01038{left:437.287500px;}
.x4a_c01038{left:449.910000px;}
.x36_c01038{left:451.170000px;}
.x2a_c01038{left:453.229500px;}
.x8d_c01038{left:454.359000px;}
.x38_c01038{left:461.271000px;}
.x53_c01038{left:464.313000px;}
.xc_c01038{left:466.400568px;}
.x70_c01038{left:468.956580px;}
.x7d_c01038{left:470.075490px;}
.x60_c01038{left:471.805500px;}
.x89_c01038{left:475.197090px;}
.x64_c01038{left:477.380580px;}
.x54_c01038{left:487.011000px;}
.x16_c01038{left:488.253864px;}
.x3f_c01038{left:504.372000px;}
.x8a_c01038{left:515.172300px;}
.x6a_c01038{left:517.832160px;}
.x43_c01038{left:524.469000px;}
.x17_c01038{left:526.865976px;}
.x7e_c01038{left:528.254640px;}
.x2b_c01038{left:539.740500px;}
.x8e_c01038{left:557.629500px;}
.x71_c01038{left:559.580640px;}
.x55_c01038{left:562.348500px;}
.x8b_c01038{left:565.942350px;}
.x3d_c01038{left:581.061000px;}
.x61_c01038{left:602.221500px;}
.x75_c01038{left:612.573930px;}
.xd_c01038{left:618.018780px;}
.x1f_c01038{left:620.589996px;}
.x18_c01038{left:622.762512px;}
.x82_c01038{left:624.252270px;}
.x7f_c01038{left:627.555090px;}
.x56_c01038{left:629.785500px;}
.x3_c01038{left:634.323000px;}
.x2c_c01038{left:637.255500px;}
.x65_c01038{left:640.173840px;}
.x37_c01038{left:649.620000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls0_c01038{letter-spacing:0.000000pt;}
.ws0_c01038{word-spacing:0.000000pt;}
.fs9_c01038{font-size:28.000000pt;}
.fs11_c01038{font-size:43.866667pt;}
.fs3_c01038{font-size:53.206809pt;}
.fsa_c01038{font-size:54.133333pt;}
.fs16_c01038{font-size:55.077679pt;}
.fs15_c01038{font-size:56.011199pt;}
.fs6_c01038{font-size:57.866667pt;}
.fs17_c01038{font-size:57.878239pt;}
.fs13_c01038{font-size:58.811759pt;}
.fs10_c01038{font-size:59.733333pt;}
.fse_c01038{font-size:59.736947pt;}
.fs12_c01038{font-size:59.745279pt;}
.fs4_c01038{font-size:60.674432pt;}
.fsd_c01038{font-size:62.533333pt;}
.fs2_c01038{font-size:62.535334pt;}
.fs14_c01038{font-size:63.479359pt;}
.fs8_c01038{font-size:64.404637pt;}
.fs19_c01038{font-size:64.412879pt;}
.fsf_c01038{font-size:65.338037pt;}
.fsb_c01038{font-size:66.266667pt;}
.fs7_c01038{font-size:66.271438pt;}
.fs18_c01038{font-size:66.279919pt;}
.fs1_c01038{font-size:70.935603pt;}
.fs0_c01038{font-size:71.868966pt;}
.fsc_c01038{font-size:92.400000pt;}
.fs1a_c01038{font-size:109.206606pt;}
.fs5_c01038{font-size:111.080882pt;}
.y0_c01038{bottom:0.000000pt;}
.ye9_c01038{bottom:101.317333pt;}
.yea_c01038{bottom:103.448268pt;}
.yeb_c01038{bottom:104.458024pt;}
.ye6_c01038{bottom:176.141493pt;}
.ye7_c01038{bottom:185.043973pt;}
.ye8_c01038{bottom:189.978507pt;}
.yda_c01038{bottom:197.970373pt;}
.ydb_c01038{bottom:199.256507pt;}
.ydc_c01038{bottom:199.901707pt;}
.ydd_c01038{bottom:200.546827pt;}
.yde_c01038{bottom:201.487067pt;}
.ydf_c01038{bottom:202.083013pt;}
.ye0_c01038{bottom:202.508240pt;}
.ye1_c01038{bottom:203.123867pt;}
.ye2_c01038{bottom:203.765440pt;}
.ye3_c01038{bottom:204.333387pt;}
.ye4_c01038{bottom:205.055893pt;}
.ye5_c01038{bottom:205.855387pt;}
.yd2_c01038{bottom:217.661973pt;}
.yd3_c01038{bottom:220.467493pt;}
.yd4_c01038{bottom:220.724427pt;}
.yd5_c01038{bottom:221.635947pt;}
.yd6_c01038{bottom:222.322507pt;}
.yd7_c01038{bottom:224.728747pt;}
.yd8_c01038{bottom:226.060773pt;}
.yd9_c01038{bottom:227.545600pt;}
.yc6_c01038{bottom:238.539467pt;}
.yc7_c01038{bottom:239.894400pt;}
.yc8_c01038{bottom:240.380667pt;}
.yc9_c01038{bottom:241.458347pt;}
.yca_c01038{bottom:241.750827pt;}
.ycb_c01038{bottom:242.595920pt;}
.ycc_c01038{bottom:242.914427pt;}
.ycd_c01038{bottom:243.465333pt;}
.yce_c01038{bottom:243.955147pt;}
.ycf_c01038{bottom:244.337947pt;}
.yd0_c01038{bottom:246.022320pt;}
.yd1_c01038{bottom:246.956853pt;}
.yb8_c01038{bottom:259.184853pt;}
.yb9_c01038{bottom:260.466827pt;}
.yba_c01038{bottom:260.962160pt;}
.ybb_c01038{bottom:261.538293pt;}
.ybc_c01038{bottom:261.890747pt;}
.ybd_c01038{bottom:262.421413pt;}
.ybe_c01038{bottom:263.123120pt;}
.ybf_c01038{bottom:263.385760pt;}
.yc0_c01038{bottom:264.402987pt;}
.yc1_c01038{bottom:264.625413pt;}
.yc2_c01038{bottom:264.925547pt;}
.yc3_c01038{bottom:265.753093pt;}
.yc4_c01038{bottom:265.921840pt;}
.yc5_c01038{bottom:267.164960pt;}
.yae_c01038{bottom:279.109840pt;}
.yaf_c01038{bottom:279.960267pt;}
.yb0_c01038{bottom:280.371093pt;}
.yb1_c01038{bottom:280.738987pt;}
.yb2_c01038{bottom:281.305013pt;}
.yb3_c01038{bottom:282.672773pt;}
.yb4_c01038{bottom:284.258507pt;}
.yb5_c01038{bottom:284.823360pt;}
.yb6_c01038{bottom:286.869280pt;}
.yb7_c01038{bottom:287.021627pt;}
.ya2_c01038{bottom:299.991040pt;}
.ya3_c01038{bottom:301.210427pt;}
.ya4_c01038{bottom:301.808880pt;}
.ya5_c01038{bottom:302.179280pt;}
.ya6_c01038{bottom:302.873813pt;}
.ya7_c01038{bottom:303.349760pt;}
.ya8_c01038{bottom:303.932960pt;}
.ya9_c01038{bottom:304.651680pt;}
.yaa_c01038{bottom:304.970133pt;}
.yab_c01038{bottom:305.384507pt;}
.yac_c01038{bottom:306.592773pt;}
.yad_c01038{bottom:307.447253pt;}
.y98_c01038{bottom:323.272160pt;}
.y99_c01038{bottom:323.985253pt;}
.y9a_c01038{bottom:324.256960pt;}
.y9b_c01038{bottom:324.652747pt;}
.y9c_c01038{bottom:324.938240pt;}
.y9d_c01038{bottom:325.102347pt;}
.y9e_c01038{bottom:325.422693pt;}
.y9f_c01038{bottom:325.615307pt;}
.ya0_c01038{bottom:326.172293pt;}
.ya1_c01038{bottom:327.725600pt;}
.y8d_c01038{bottom:340.317867pt;}
.y8e_c01038{bottom:341.523760pt;}
.y8f_c01038{bottom:341.757493pt;}
.y90_c01038{bottom:342.685627pt;}
.y91_c01038{bottom:343.276320pt;}
.y92_c01038{bottom:343.762907pt;}
.y93_c01038{bottom:344.371493pt;}
.y94_c01038{bottom:344.558693pt;}
.y95_c01038{bottom:344.860507pt;}
.y96_c01038{bottom:346.354773pt;}
.y97_c01038{bottom:347.763893pt;}
.y81_c01038{bottom:360.004507pt;}
.y82_c01038{bottom:361.195067pt;}
.y83_c01038{bottom:361.533227pt;}
.y84_c01038{bottom:361.998400pt;}
.y85_c01038{bottom:362.436747pt;}
.y86_c01038{bottom:362.828000pt;}
.y87_c01038{bottom:363.354107pt;}
.y88_c01038{bottom:363.927840pt;}
.y89_c01038{bottom:364.143813pt;}
.y8a_c01038{bottom:364.814187pt;}
.y8b_c01038{bottom:365.491573pt;}
.y8c_c01038{bottom:367.662720pt;}
.y76_c01038{bottom:380.409333pt;}
.y77_c01038{bottom:381.869093pt;}
.y78_c01038{bottom:382.296773pt;}
.y79_c01038{bottom:382.648827pt;}
.y7a_c01038{bottom:383.474347pt;}
.y7b_c01038{bottom:384.712400pt;}
.y7c_c01038{bottom:385.114747pt;}
.y7d_c01038{bottom:385.743600pt;}
.y7e_c01038{bottom:386.238560pt;}
.y7f_c01038{bottom:387.515973pt;}
.y80_c01038{bottom:389.834480pt;}
.y74_c01038{bottom:403.184000pt;}
.y75_c01038{bottom:404.782667pt;}
.y62_c01038{bottom:421.921333pt;}
.y63_c01038{bottom:422.188017pt;}
.y64_c01038{bottom:422.562927pt;}
.y65_c01038{bottom:422.974767pt;}
.y66_c01038{bottom:423.555596pt;}
.y67_c01038{bottom:423.819640pt;}
.y68_c01038{bottom:424.682949pt;}
.y69_c01038{bottom:441.362667pt;}
.y6a_c01038{bottom:442.191771pt;}
.y6b_c01038{bottom:442.531755pt;}
.y6c_c01038{bottom:443.063963pt;}
.y6d_c01038{bottom:443.539723pt;}
.y6e_c01038{bottom:443.917179pt;}
.y6f_c01038{bottom:444.654411pt;}
.y60_c01038{bottom:445.201333pt;}
.y70_c01038{bottom:445.512699pt;}
.y71_c01038{bottom:445.754811pt;}
.y72_c01038{bottom:446.558411pt;}
.y73_c01038{bottom:447.277739pt;}
.y61_c01038{bottom:451.654667pt;}
.y59_c01038{bottom:460.798667pt;}
.y5a_c01038{bottom:461.688000pt;}
.y5b_c01038{bottom:462.388000pt;}
.y5c_c01038{bottom:463.050667pt;}
.y5d_c01038{bottom:463.346667pt;}
.y5e_c01038{bottom:463.904000pt;}
.y5f_c01038{bottom:466.277333pt;}
.y4f_c01038{bottom:483.358667pt;}
.y50_c01038{bottom:483.917333pt;}
.y51_c01038{bottom:484.158667pt;}
.y52_c01038{bottom:484.293333pt;}
.y53_c01038{bottom:484.577333pt;}
.y54_c01038{bottom:484.864000pt;}
.y55_c01038{bottom:485.109333pt;}
.y56_c01038{bottom:485.410667pt;}
.y57_c01038{bottom:485.754667pt;}
.y58_c01038{bottom:486.828000pt;}
.y44_c01038{bottom:501.600000pt;}
.y45_c01038{bottom:502.552000pt;}
.y46_c01038{bottom:503.485333pt;}
.y47_c01038{bottom:503.818667pt;}
.y48_c01038{bottom:504.289333pt;}
.y49_c01038{bottom:504.522667pt;}
.y4a_c01038{bottom:505.032000pt;}
.y4b_c01038{bottom:505.458667pt;}
.y4c_c01038{bottom:506.290667pt;}
.y4d_c01038{bottom:506.509333pt;}
.y4e_c01038{bottom:507.554667pt;}
.y40_c01038{bottom:512.401333pt;}
.y41_c01038{bottom:515.236000pt;}
.y42_c01038{bottom:516.717333pt;}
.y43_c01038{bottom:517.878667pt;}
.y39_c01038{bottom:537.862667pt;}
.y3a_c01038{bottom:538.825333pt;}
.y3b_c01038{bottom:539.544000pt;}
.y3c_c01038{bottom:540.516000pt;}
.y3d_c01038{bottom:541.020000pt;}
.y3e_c01038{bottom:542.933333pt;}
.y3f_c01038{bottom:543.344000pt;}
.y36_c01038{bottom:550.801333pt;}
.y37_c01038{bottom:555.405333pt;}
.y38_c01038{bottom:557.445333pt;}
.y35_c01038{bottom:575.760000pt;}
.y32_c01038{bottom:583.357077pt;}
.y33_c01038{bottom:583.357691pt;}
.y34_c01038{bottom:583.358144pt;}
.y26_c01038{bottom:628.804000pt;}
.y27_c01038{bottom:629.721760pt;}
.y28_c01038{bottom:630.286240pt;}
.y29_c01038{bottom:630.542480pt;}
.y2a_c01038{bottom:631.288240pt;}
.y2b_c01038{bottom:631.446080pt;}
.y2c_c01038{bottom:632.150528pt;}
.y2d_c01038{bottom:632.289280pt;}
.y2e_c01038{bottom:632.695920pt;}
.y2f_c01038{bottom:632.929184pt;}
.y30_c01038{bottom:633.851968pt;}
.y31_c01038{bottom:634.892128pt;}
.y25_c01038{bottom:651.694667pt;}
.y24_c01038{bottom:670.409024pt;}
.y23_c01038{bottom:676.211264pt;}
.y22_c01038{bottom:676.798197pt;}
.y21_c01038{bottom:686.274709pt;}
.y20_c01038{bottom:690.514837pt;}
.y1f_c01038{bottom:691.018880pt;}
.y1e_c01038{bottom:691.714485pt;}
.y1d_c01038{bottom:692.080725pt;}
.y1c_c01038{bottom:693.119712pt;}
.y1b_c01038{bottom:707.072043pt;}
.ye_c01038{bottom:710.877952pt;}
.yf_c01038{bottom:711.352181pt;}
.y10_c01038{bottom:711.477963pt;}
.y11_c01038{bottom:711.826400pt;}
.y12_c01038{bottom:712.033589pt;}
.y13_c01038{bottom:712.351221pt;}
.y14_c01038{bottom:712.416288pt;}
.y15_c01038{bottom:712.540149pt;}
.y16_c01038{bottom:712.783424pt;}
.y17_c01038{bottom:713.150357pt;}
.y18_c01038{bottom:713.356928pt;}
.y19_c01038{bottom:713.868181pt;}
.y1a_c01038{bottom:715.197333pt;}
.y4_c01038{bottom:731.039829pt;}
.y5_c01038{bottom:731.318155pt;}
.y6_c01038{bottom:731.449397pt;}
.y7_c01038{bottom:731.967328pt;}
.y8_c01038{bottom:732.076224pt;}
.y9_c01038{bottom:732.319968pt;}
.ya_c01038{bottom:732.750037pt;}
.yb_c01038{bottom:733.016747pt;}
.yc_c01038{bottom:733.473600pt;}
.yd_c01038{bottom:734.417099pt;}
.y1_c01038{bottom:753.840000pt;}
.y2_c01038{bottom:755.214741pt;}
.y3_c01038{bottom:756.787797pt;}
.hb_c01038{height:28.000000pt;}
.h13_c01038{height:43.866667pt;}
.h5_c01038{height:53.206809pt;}
.hc_c01038{height:54.133333pt;}
.h18_c01038{height:55.077679pt;}
.h17_c01038{height:56.011199pt;}
.h8_c01038{height:57.866667pt;}
.h19_c01038{height:57.878239pt;}
.h15_c01038{height:58.811759pt;}
.h12_c01038{height:59.733333pt;}
.h10_c01038{height:59.736947pt;}
.h14_c01038{height:59.745279pt;}
.h6_c01038{height:60.674432pt;}
.hf_c01038{height:62.533333pt;}
.h4_c01038{height:62.535334pt;}
.h16_c01038{height:63.479359pt;}
.ha_c01038{height:64.404637pt;}
.h1b_c01038{height:64.412879pt;}
.h11_c01038{height:65.338037pt;}
.hd_c01038{height:66.266667pt;}
.h9_c01038{height:66.271438pt;}
.h1a_c01038{height:66.279919pt;}
.h3_c01038{height:70.935603pt;}
.h2_c01038{height:71.868966pt;}
.he_c01038{height:92.400000pt;}
.h1c_c01038{height:109.206606pt;}
.h7_c01038{height:111.080882pt;}
.h1_c01038{height:893.333333pt;}
.h0_c01038{height:893.466667pt;}
.w0_c01038{width:635.733333pt;}
.w1_c01038{width:636.000000pt;}
.x0_c01038{left:0.000000pt;}
.xe_c01038{left:55.280043pt;}
.x19_c01038{left:56.789333pt;}
.x66_c01038{left:57.809680pt;}
.x24_c01038{left:59.105333pt;}
.x1a_c01038{left:61.038603pt;}
.x59_c01038{left:64.050667pt;}
.x4_c01038{left:66.854165pt;}
.x2f_c01038{left:69.600000pt;}
.x1e_c01038{left:105.307467pt;}
.x5_c01038{left:106.645152pt;}
.x72_c01038{left:112.758320pt;}
.x6_c01038{left:125.383968pt;}
.xf_c01038{left:134.226635pt;}
.x1b_c01038{left:135.227637pt;}
.x40_c01038{left:136.392000pt;}
.x44_c01038{left:137.342667pt;}
.x6b_c01038{left:138.804587pt;}
.x85_c01038{left:140.594880pt;}
.x39_c01038{left:143.098667pt;}
.x67_c01038{left:153.800613pt;}
.x10_c01038{left:155.116299pt;}
.x2d_c01038{left:156.249931pt;}
.x5a_c01038{left:158.422667pt;}
.x1c_c01038{left:161.368469pt;}
.x51_c01038{left:164.310667pt;}
.x80_c01038{left:167.991680pt;}
.x6c_c01038{left:169.063253pt;}
.x76_c01038{left:170.122400pt;}
.x45_c01038{left:171.885333pt;}
.x30_c01038{left:174.960000pt;}
.x5b_c01038{left:176.025333pt;}
.x6f_c01038{left:178.511813pt;}
.x57_c01038{left:179.520000pt;}
.x86_c01038{left:180.924773pt;}
.x25_c01038{left:182.625333pt;}
.x31_c01038{left:192.000000pt;}
.x1_c01038{left:195.368000pt;}
.x73_c01038{left:196.802373pt;}
.x7_c01038{left:199.292555pt;}
.x26_c01038{left:203.978667pt;}
.x77_c01038{left:206.131947pt;}
.x3a_c01038{left:208.454667pt;}
.x8c_c01038{left:210.153333pt;}
.x1d_c01038{left:211.095403pt;}
.x11_c01038{left:213.171893pt;}
.x8_c01038{left:214.904683pt;}
.x5c_c01038{left:217.301333pt;}
.x32_c01038{left:221.280000pt;}
.x78_c01038{left:228.156373pt;}
.x46_c01038{left:231.677333pt;}
.x4d_c01038{left:233.410667pt;}
.x33_c01038{left:242.640000pt;}
.x6d_c01038{left:244.677200pt;}
.x12_c01038{left:247.737781pt;}
.x9_c01038{left:249.706293pt;}
.x2e_c01038{left:255.857600pt;}
.x83_c01038{left:258.499947pt;}
.x4b_c01038{left:260.289333pt;}
.x79_c01038{left:261.359040pt;}
.x6e_c01038{left:262.886533pt;}
.x27_c01038{left:266.125333pt;}
.x20_c01038{left:268.320000pt;}
.x47_c01038{left:272.693333pt;}
.x34_c01038{left:274.080000pt;}
.x21_c01038{left:280.080000pt;}
.x41_c01038{left:281.216000pt;}
.x74_c01038{left:282.263867pt;}
.x4e_c01038{left:286.213333pt;}
.x4c_c01038{left:287.172000pt;}
.x84_c01038{left:292.827947pt;}
.x3b_c01038{left:296.774667pt;}
.x81_c01038{left:298.295493pt;}
.x5d_c01038{left:299.321333pt;}
.x13_c01038{left:300.775968pt;}
.x7a_c01038{left:305.181200pt;}
.x48_c01038{left:307.764000pt;}
.x4f_c01038{left:310.217333pt;}
.xa_c01038{left:311.132117pt;}
.x3e_c01038{left:313.636000pt;}
.x58_c01038{left:316.560000pt;}
.x62_c01038{left:320.141227pt;}
.x7b_c01038{left:321.581173pt;}
.x35_c01038{left:324.480000pt;}
.x68_c01038{left:328.051360pt;}
.x5e_c01038{left:330.764000pt;}
.x14_c01038{left:332.225803pt;}
.x63_c01038{left:334.541333pt;}
.x28_c01038{left:337.982667pt;}
.x52_c01038{left:341.198667pt;}
.x3c_c01038{left:342.614667pt;}
.x87_c01038{left:343.864480pt;}
.xb_c01038{left:349.304427pt;}
.x49_c01038{left:350.718667pt;}
.x22_c01038{left:354.240000pt;}
.x5f_c01038{left:355.512000pt;}
.x69_c01038{left:360.705307pt;}
.x2_c01038{left:367.210667pt;}
.x15_c01038{left:372.802453pt;}
.x42_c01038{left:378.630667pt;}
.x23_c01038{left:381.120000pt;}
.x88_c01038{left:382.315547pt;}
.x29_c01038{left:383.432000pt;}
.x7c_c01038{left:385.180933pt;}
.x50_c01038{left:388.700000pt;}
.x4a_c01038{left:399.920000pt;}
.x36_c01038{left:401.040000pt;}
.x2a_c01038{left:402.870667pt;}
.x8d_c01038{left:403.874667pt;}
.x38_c01038{left:410.018667pt;}
.x53_c01038{left:412.722667pt;}
.xc_c01038{left:414.578283pt;}
.x70_c01038{left:416.850293pt;}
.x7d_c01038{left:417.844880pt;}
.x60_c01038{left:419.382667pt;}
.x89_c01038{left:422.397413pt;}
.x64_c01038{left:424.338293pt;}
.x54_c01038{left:432.898667pt;}
.x16_c01038{left:434.003435pt;}
.x3f_c01038{left:448.330667pt;}
.x8a_c01038{left:457.930933pt;}
.x6a_c01038{left:460.295253pt;}
.x43_c01038{left:466.194667pt;}
.x17_c01038{left:468.325312pt;}
.x7e_c01038{left:469.559680pt;}
.x2b_c01038{left:479.769333pt;}
.x8e_c01038{left:495.670667pt;}
.x71_c01038{left:497.405013pt;}
.x55_c01038{left:499.865333pt;}
.x8b_c01038{left:503.059867pt;}
.x3d_c01038{left:516.498667pt;}
.x61_c01038{left:535.308000pt;}
.x75_c01038{left:544.510160pt;}
.xd_c01038{left:549.350027pt;}
.x1f_c01038{left:551.635552pt;}
.x18_c01038{left:553.566677pt;}
.x82_c01038{left:554.890907pt;}
.x7f_c01038{left:557.826747pt;}
.x56_c01038{left:559.809333pt;}
.x3_c01038{left:563.842667pt;}
.x2c_c01038{left:566.449333pt;}
.x65_c01038{left:569.043413pt;}
.x37_c01038{left:577.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_c01039 {
    display:none;
  }
  .loading-indicator_c01039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01039" -> "#page-container .classname_c01039")
 */
.pf_c01039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01039 {overflow:visible;}
  }
}
.c_c01039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01039:after { /* webkit #35443 */
  content: '';
}
.t_c01039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01039 { /* info for Javascript */
  display:none;
}
.l_c01039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma6_c01039{transform:matrix(0.013244,0.000159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.013244,0.000159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.013244,0.000159,-0.003000,0.249982,0,0);}
.m79_c01039{transform:matrix(0.015808,0.000221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015808,0.000221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015808,0.000221,-0.003500,0.249976,0,0);}
.m22_c01039{transform:matrix(0.080840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080840,0.000000,0.000000,0.250000,0,0);}
.m29_c01039{transform:matrix(0.089645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089645,0.000000,0.000000,0.250000,0,0);}
.m1d_c01039{transform:matrix(0.121407,0.000850,-0.001750,0.249994,0,0);-ms-transform:matrix(0.121407,0.000850,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.121407,0.000850,-0.001750,0.249994,0,0);}
.md5_c01039{transform:matrix(0.139326,0.001951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.139326,0.001951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.139326,0.001951,-0.003500,0.249976,0,0);}
.m7b_c01039{transform:matrix(0.139751,0.001957,-0.003500,0.249976,0,0);-ms-transform:matrix(0.139751,0.001957,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.139751,0.001957,-0.003500,0.249976,0,0);}
.md4_c01039{transform:matrix(0.141926,0.001987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.141926,0.001987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.141926,0.001987,-0.003500,0.249976,0,0);}
.md2_c01039{transform:matrix(0.143951,0.002015,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143951,0.002015,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143951,0.002015,-0.003500,0.249976,0,0);}
.me_c01039{transform:matrix(0.146376,0.001025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146376,0.001025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146376,0.001025,-0.001750,0.249994,0,0);}
.m7e_c01039{transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147236,0.002061,-0.003500,0.249976,0,0);}
.m82_c01039{transform:matrix(0.147541,0.002066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147541,0.002066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147541,0.002066,-0.003500,0.249976,0,0);}
.mcc_c01039{transform:matrix(0.149739,0.001797,-0.003000,0.249982,0,0);-ms-transform:matrix(0.149739,0.001797,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.149739,0.001797,-0.003000,0.249982,0,0);}
.m87_c01039{transform:matrix(0.149743,0.001497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149743,0.001497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149743,0.001497,-0.002500,0.249988,0,0);}
.m15_c01039{transform:matrix(0.150956,0.001057,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150956,0.001057,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150956,0.001057,-0.001750,0.249994,0,0);}
.md8_c01039{transform:matrix(0.151845,0.002126,-0.003500,0.249976,0,0);-ms-transform:matrix(0.151845,0.002126,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.151845,0.002126,-0.003500,0.249976,0,0);}
.m59_c01039{transform:matrix(0.151880,0.001215,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151880,0.001215,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151880,0.001215,-0.002000,0.249992,0,0);}
.m55_c01039{transform:matrix(0.152395,0.001219,-0.002000,0.249992,0,0);-ms-transform:matrix(0.152395,0.001219,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.152395,0.001219,-0.002000,0.249992,0,0);}
.m86_c01039{transform:matrix(0.152497,0.001525,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152497,0.001525,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152497,0.001525,-0.002500,0.249988,0,0);}
.m7d_c01039{transform:matrix(0.152860,0.002140,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152860,0.002140,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152860,0.002140,-0.003500,0.249976,0,0);}
.m91_c01039{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);}
.m34_c01039{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);}
.mb9_c01039{transform:matrix(0.154132,0.002004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154132,0.002004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154132,0.002004,-0.003250,0.249979,0,0);}
.mf_c01039{transform:matrix(0.154206,0.001079,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154206,0.001079,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154206,0.001079,-0.001750,0.249994,0,0);}
.m3a_c01039{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);}
.mbe_c01039{transform:matrix(0.154697,0.002011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154697,0.002011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154697,0.002011,-0.003250,0.249979,0,0);}
.m3c_c01039{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);}
.m5c_c01039{transform:matrix(0.155840,0.001247,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155840,0.001247,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155840,0.001247,-0.002000,0.249992,0,0);}
.m17_c01039{transform:matrix(0.157801,0.001105,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157801,0.001105,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157801,0.001105,-0.001750,0.249994,0,0);}
.mcb_c01039{transform:matrix(0.158314,0.001900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158314,0.001900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158314,0.001900,-0.003000,0.249982,0,0);}
.md3_c01039{transform:matrix(0.158479,0.002219,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158479,0.002219,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158479,0.002219,-0.003500,0.249976,0,0);}
.m73_c01039{transform:matrix(0.159710,0.001278,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159710,0.001278,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159710,0.001278,-0.002000,0.249992,0,0);}
.mca_c01039{transform:matrix(0.160253,0.001923,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160253,0.001923,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160253,0.001923,-0.003000,0.249982,0,0);}
.m6c_c01039{transform:matrix(0.160710,0.001286,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160710,0.001286,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160710,0.001286,-0.002000,0.249992,0,0);}
.m3d_c01039{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);}
.m4e_c01039{transform:matrix(0.162120,0.001297,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162120,0.001297,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162120,0.001297,-0.002000,0.249992,0,0);}
.m76_c01039{transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);}
.m84_c01039{transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);}
.ma_c01039{transform:matrix(0.163016,0.001141,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163016,0.001141,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163016,0.001141,-0.001750,0.249994,0,0);}
.m4c_c01039{transform:matrix(0.163250,0.001306,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163250,0.001306,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163250,0.001306,-0.002000,0.249992,0,0);}
.m18_c01039{transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);}
.m8c_c01039{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_c01039{transform:matrix(0.165461,0.002151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165461,0.002151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165461,0.002151,-0.003250,0.249979,0,0);}
.ma1_c01039{transform:matrix(0.165588,0.001987,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165588,0.001987,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165588,0.001987,-0.003000,0.249982,0,0);}
.mb4_c01039{transform:matrix(0.165996,0.002158,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165996,0.002158,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165996,0.002158,-0.003250,0.249979,0,0);}
.m39_c01039{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);}
.mc6_c01039{transform:matrix(0.167893,0.002015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167893,0.002015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167893,0.002015,-0.003000,0.249982,0,0);}
.m51_c01039{transform:matrix(0.167920,0.001343,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167920,0.001343,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167920,0.001343,-0.002000,0.249992,0,0);}
.m90_c01039{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_c01039{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);}
.m96_c01039{transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169157,0.001692,-0.002500,0.249988,0,0);}
.m54_c01039{transform:matrix(0.169415,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169415,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169415,0.001355,-0.002000,0.249992,0,0);}
.mc9_c01039{transform:matrix(0.169783,0.002037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169783,0.002037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169783,0.002037,-0.003000,0.249982,0,0);}
.m7_c01039{transform:matrix(0.170761,0.001195,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170761,0.001195,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170761,0.001195,-0.001750,0.249994,0,0);}
.m80_c01039{transform:matrix(0.171573,0.002402,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171573,0.002402,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171573,0.002402,-0.003500,0.249976,0,0);}
.mb8_c01039{transform:matrix(0.171940,0.002235,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171940,0.002235,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171940,0.002235,-0.003250,0.249979,0,0);}
.m1b_c01039{transform:matrix(0.172011,0.001204,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172011,0.001204,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172011,0.001204,-0.001750,0.249994,0,0);}
.m81_c01039{transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172078,0.002409,-0.003500,0.249976,0,0);}
.m11_c01039{transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);}
.m4b_c01039{transform:matrix(0.172619,0.001381,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172619,0.001381,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172619,0.001381,-0.002000,0.249992,0,0);}
.m30_c01039{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);}
.ma4_c01039{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);}
.m58_c01039{transform:matrix(0.175144,0.001401,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175144,0.001401,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175144,0.001401,-0.002000,0.249992,0,0);}
.m19_c01039{transform:matrix(0.175661,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175661,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175661,0.001230,-0.001750,0.249994,0,0);}
.m2e_c01039{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);}
.m36_c01039{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);}
.m49_c01039{transform:matrix(0.175959,0.001408,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175959,0.001408,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175959,0.001408,-0.002000,0.249992,0,0);}
.m4_c01039{transform:matrix(0.176161,0.001233,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176161,0.001233,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176161,0.001233,-0.001750,0.249994,0,0);}
.m89_c01039{transform:matrix(0.176551,0.001766,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176551,0.001766,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176551,0.001766,-0.002500,0.249988,0,0);}
.m92_c01039{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);}
.m98_c01039{transform:matrix(0.177686,0.001777,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177686,0.001777,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177686,0.001777,-0.002500,0.249988,0,0);}
.m37_c01039{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);}
.mc2_c01039{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);}
.m53_c01039{transform:matrix(0.177944,0.001424,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177944,0.001424,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177944,0.001424,-0.002000,0.249992,0,0);}
.m40_c01039{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);}
.m2b_c01039{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);}
.m48_c01039{transform:matrix(0.179544,0.001436,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179544,0.001436,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179544,0.001436,-0.002000,0.249992,0,0);}
.mcf_c01039{transform:matrix(0.179672,0.002515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179672,0.002515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179672,0.002515,-0.003500,0.249976,0,0);}
.mad_c01039{transform:matrix(0.179864,0.003058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179864,0.003058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179864,0.003058,-0.004249,0.249964,0,0);}
.ma3_c01039{transform:matrix(0.180217,0.002163,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180217,0.002163,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180217,0.002163,-0.003000,0.249982,0,0);}
.m5e_c01039{transform:matrix(0.180344,0.001443,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180344,0.001443,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180344,0.001443,-0.002000,0.249992,0,0);}
.m99_c01039{transform:matrix(0.181076,0.001811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181076,0.001811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181076,0.001811,-0.002500,0.249988,0,0);}
.m5f_c01039{transform:matrix(0.182124,0.001457,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182124,0.001457,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182124,0.001457,-0.002000,0.249992,0,0);}
.m56_c01039{transform:matrix(0.182129,0.001457,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182129,0.001457,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182129,0.001457,-0.002000,0.249992,0,0);}
.mc4_c01039{transform:matrix(0.182137,0.002186,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182137,0.002186,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182137,0.002186,-0.003000,0.249982,0,0);}
.ma9_c01039{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);}
.m7c_c01039{transform:matrix(0.182907,0.002561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182907,0.002561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182907,0.002561,-0.003500,0.249976,0,0);}
.mc8_c01039{transform:matrix(0.182997,0.002196,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182997,0.002196,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182997,0.002196,-0.003000,0.249982,0,0);}
.m85_c01039{transform:matrix(0.184616,0.001846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184616,0.001846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184616,0.001846,-0.002500,0.249988,0,0);}
.m9_c01039{transform:matrix(0.184705,0.001293,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184705,0.001293,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184705,0.001293,-0.001750,0.249994,0,0);}
.mae_c01039{transform:matrix(0.184793,0.003141,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184793,0.003141,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184793,0.003141,-0.004249,0.249964,0,0);}
.m69_c01039{transform:matrix(0.184929,0.001479,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184929,0.001479,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184929,0.001479,-0.002000,0.249992,0,0);}
.mc1_c01039{transform:matrix(0.185329,0.002409,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185329,0.002409,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185329,0.002409,-0.003250,0.249979,0,0);}
.m72_c01039{transform:matrix(0.185809,0.001486,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185809,0.001486,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185809,0.001486,-0.002000,0.249992,0,0);}
.m2f_c01039{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);}
.m31_c01039{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);}
.ma0_c01039{transform:matrix(0.186942,0.002243,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186942,0.002243,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186942,0.002243,-0.003000,0.249982,0,0);}
.m4d_c01039{transform:matrix(0.187284,0.001498,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187284,0.001498,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187284,0.001498,-0.002000,0.249992,0,0);}
.m88_c01039{transform:matrix(0.187516,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187516,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187516,0.001875,-0.002500,0.249988,0,0);}
.mc5_c01039{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);}
.mbf_c01039{transform:matrix(0.188259,0.002447,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188259,0.002447,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188259,0.002447,-0.003250,0.249979,0,0);}
.m38_c01039{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);}
.m93_c01039{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);}
.m8_c01039{transform:matrix(0.189360,0.001326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189360,0.001326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189360,0.001326,-0.001750,0.249994,0,0);}
.m16_c01039{transform:matrix(0.192455,0.001347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192455,0.001347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192455,0.001347,-0.001750,0.249994,0,0);}
.m4f_c01039{transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192549,0.001540,-0.002000,0.249992,0,0);}
.m6e_c01039{transform:matrix(0.193189,0.001546,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193189,0.001546,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193189,0.001546,-0.002000,0.249992,0,0);}
.m78_c01039{transform:matrix(0.193599,0.001549,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193599,0.001549,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193599,0.001549,-0.002000,0.249992,0,0);}
.m60_c01039{transform:matrix(0.193634,0.001549,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193634,0.001549,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193634,0.001549,-0.002000,0.249992,0,0);}
.m3_c01039{transform:matrix(0.193915,0.001357,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193915,0.001357,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193915,0.001357,-0.001750,0.249994,0,0);}
.m5d_c01039{transform:matrix(0.194404,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194404,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194404,0.001555,-0.002000,0.249992,0,0);}
.ma2_c01039{transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);}
.m74_c01039{transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);}
.m52_c01039{transform:matrix(0.195174,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195174,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195174,0.001561,-0.002000,0.249992,0,0);}
.m43_c01039{transform:matrix(0.195559,0.001564,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195559,0.001564,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195559,0.001564,-0.002000,0.249992,0,0);}
.m6d_c01039{transform:matrix(0.196214,0.001570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196214,0.001570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196214,0.001570,-0.002000,0.249992,0,0);}
.m77_c01039{transform:matrix(0.197574,0.001581,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197574,0.001581,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197574,0.001581,-0.002000,0.249992,0,0);}
.m6a_c01039{transform:matrix(0.198684,0.001589,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198684,0.001589,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198684,0.001589,-0.002000,0.249992,0,0);}
.m5a_c01039{transform:matrix(0.199254,0.001594,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199254,0.001594,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199254,0.001594,-0.002000,0.249992,0,0);}
.m94_c01039{transform:matrix(0.200185,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200185,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200185,0.002002,-0.002500,0.249988,0,0);}
.m12_c01039{transform:matrix(0.200415,0.001403,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200415,0.001403,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200415,0.001403,-0.001750,0.249994,0,0);}
.m2d_c01039{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);}
.m6b_c01039{transform:matrix(0.200744,0.001606,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200744,0.001606,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200744,0.001606,-0.002000,0.249992,0,0);}
.m8f_c01039{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);}
.mc7_c01039{transform:matrix(0.201660,0.002420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201660,0.002420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201660,0.002420,-0.003000,0.249982,0,0);}
.m42_c01039{transform:matrix(0.202089,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202089,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202089,0.001617,-0.002000,0.249992,0,0);}
.mc3_c01039{transform:matrix(0.202348,0.002631,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202348,0.002631,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202348,0.002631,-0.003250,0.249979,0,0);}
.m1e_c01039{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);}
.m9d_c01039{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);}
.m9e_c01039{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);}
.m41_c01039{transform:matrix(0.203988,0.001632,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203988,0.001632,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203988,0.001632,-0.002000,0.249992,0,0);}
.m75_c01039{transform:matrix(0.204178,0.001633,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204178,0.001633,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204178,0.001633,-0.002000,0.249992,0,0);}
.m9b_c01039{transform:matrix(0.204370,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204370,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204370,0.002044,-0.002500,0.249988,0,0);}
.m4a_c01039{transform:matrix(0.204473,0.001636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204473,0.001636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204473,0.001636,-0.002000,0.249992,0,0);}
.m46_c01039{transform:matrix(0.206598,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206598,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206598,0.001653,-0.002000,0.249992,0,0);}
.m71_c01039{transform:matrix(0.207168,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207168,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207168,0.001657,-0.002000,0.249992,0,0);}
.m44_c01039{transform:matrix(0.207288,0.001658,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207288,0.001658,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207288,0.001658,-0.002000,0.249992,0,0);}
.m3b_c01039{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);}
.m8a_c01039{transform:matrix(0.208725,0.002087,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208725,0.002087,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208725,0.002087,-0.002500,0.249988,0,0);}
.mba_c01039{transform:matrix(0.208977,0.002717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208977,0.002717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208977,0.002717,-0.003250,0.249979,0,0);}
.mab_c01039{transform:matrix(0.209365,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209365,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209365,0.003559,-0.004249,0.249964,0,0);}
.m97_c01039{transform:matrix(0.209395,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209395,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209395,0.002094,-0.002500,0.249988,0,0);}
.md9_c01039{transform:matrix(0.209994,0.002940,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209994,0.002940,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209994,0.002940,-0.003500,0.249976,0,0);}
.m95_c01039{transform:matrix(0.211984,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211984,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211984,0.002120,-0.002500,0.249988,0,0);}
.m5b_c01039{transform:matrix(0.214248,0.001714,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214248,0.001714,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214248,0.001714,-0.002000,0.249992,0,0);}
.m61_c01039{transform:matrix(0.214448,0.001716,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214448,0.001716,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214448,0.001716,-0.002000,0.249992,0,0);}
.mb1_c01039{transform:matrix(0.214464,0.003646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214464,0.003646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214464,0.003646,-0.004249,0.249964,0,0);}
.m7a_c01039{transform:matrix(0.214724,0.003006,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214724,0.003006,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214724,0.003006,-0.003500,0.249976,0,0);}
.m9a_c01039{transform:matrix(0.215204,0.002152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215204,0.002152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215204,0.002152,-0.002500,0.249988,0,0);}
.m32_c01039{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);}
.ma5_c01039{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);}
.m63_c01039{transform:matrix(0.218368,0.001747,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218368,0.001747,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218368,0.001747,-0.002000,0.249992,0,0);}
.mbb_c01039{transform:matrix(0.218582,0.002842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218582,0.002842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218582,0.002842,-0.003250,0.249979,0,0);}
.m21_c01039{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);}
.m8e_c01039{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);}
.md6_c01039{transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);}
.m5_c01039{transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);}
.m47_c01039{transform:matrix(0.222213,0.001778,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222213,0.001778,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222213,0.001778,-0.002000,0.249992,0,0);}
.mbc_c01039{transform:matrix(0.223896,0.002911,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223896,0.002911,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223896,0.002911,-0.003250,0.249979,0,0);}
.m7f_c01039{transform:matrix(0.224653,0.003145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224653,0.003145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224653,0.003145,-0.003500,0.249976,0,0);}
.mb2_c01039{transform:matrix(0.224873,0.003823,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224873,0.003823,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224873,0.003823,-0.004249,0.249964,0,0);}
.mb7_c01039{transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);}
.mb6_c01039{transform:matrix(0.226116,0.002940,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226116,0.002940,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226116,0.002940,-0.003250,0.249979,0,0);}
.maf_c01039{transform:matrix(0.227537,0.003868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227537,0.003868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227537,0.003868,-0.004249,0.249964,0,0);}
.m35_c01039{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);}
.m68_c01039{transform:matrix(0.233293,0.001866,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233293,0.001866,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233293,0.001866,-0.002000,0.249992,0,0);}
.mc0_c01039{transform:matrix(0.234555,0.003049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234555,0.003049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234555,0.003049,-0.003250,0.249979,0,0);}
.mac_c01039{transform:matrix(0.234686,0.003990,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234686,0.003990,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234686,0.003990,-0.004249,0.249964,0,0);}
.m3e_c01039{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.mcd_c01039{transform:matrix(0.237263,0.002847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237263,0.002847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237263,0.002847,-0.003000,0.249982,0,0);}
.m8d_c01039{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);}
.mb3_c01039{transform:matrix(0.237675,0.003090,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237675,0.003090,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237675,0.003090,-0.003250,0.249979,0,0);}
.m66_c01039{transform:matrix(0.238327,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238327,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238327,0.001907,-0.002000,0.249992,0,0);}
.m45_c01039{transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239527,0.001916,-0.002000,0.249992,0,0);}
.ma8_c01039{transform:matrix(0.239913,0.002879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239913,0.002879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239913,0.002879,-0.003000,0.249982,0,0);}
.m6f_c01039{transform:matrix(0.240497,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240497,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240497,0.001924,-0.002000,0.249992,0,0);}
.m83_c01039{transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);}
.m57_c01039{transform:matrix(0.240882,0.001927,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240882,0.001927,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240882,0.001927,-0.002000,0.249992,0,0);}
.m64_c01039{transform:matrix(0.242482,0.001940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242482,0.001940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242482,0.001940,-0.002000,0.249992,0,0);}
.m67_c01039{transform:matrix(0.246857,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246857,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246857,0.001975,-0.002000,0.249992,0,0);}
.m10_c01039{transform:matrix(0.248079,0.001737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248079,0.001737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248079,0.001737,-0.001750,0.249994,0,0);}
.m2_c01039{transform:matrix(0.249964,0.001750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249964,0.001750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249964,0.001750,-0.001750,0.249994,0,0);}
.mb0_c01039{transform:matrix(0.252399,0.004291,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252399,0.004291,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252399,0.004291,-0.004249,0.249964,0,0);}
.m8b_c01039{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);}
.md1_c01039{transform:matrix(0.254840,0.003568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254840,0.003568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254840,0.003568,-0.003500,0.249976,0,0);}
.mbd_c01039{transform:matrix(0.257513,0.003348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257513,0.003348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257513,0.003348,-0.003250,0.249979,0,0);}
.m24_c01039{transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);}
.mc_c01039{transform:matrix(0.262119,0.001835,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262119,0.001835,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262119,0.001835,-0.001750,0.249994,0,0);}
.m50_c01039{transform:matrix(0.266156,0.002129,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266156,0.002129,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266156,0.002129,-0.002000,0.249992,0,0);}
.m2c_c01039{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m65_c01039{transform:matrix(0.271641,0.002173,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271641,0.002173,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271641,0.002173,-0.002000,0.249992,0,0);}
.m27_c01039{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);}
.m14_c01039{transform:matrix(0.274808,0.001924,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274808,0.001924,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274808,0.001924,-0.001750,0.249994,0,0);}
.m1a_c01039{transform:matrix(0.286148,0.002003,-0.001750,0.249994,0,0);-ms-transform:matrix(0.286148,0.002003,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.286148,0.002003,-0.001750,0.249994,0,0);}
.m20_c01039{transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286170,0.000000,0.000000,0.250000,0,0);}
.m13_c01039{transform:matrix(0.287618,0.002013,-0.001750,0.249994,0,0);-ms-transform:matrix(0.287618,0.002013,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.287618,0.002013,-0.001750,0.249994,0,0);}
.m1f_c01039{transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293600,0.000000,0.000000,0.250000,0,0);}
.m3f_c01039{transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294280,0.000000,0.000000,0.250000,0,0);}
.md7_c01039{transform:matrix(0.298136,0.004174,-0.003500,0.249976,0,0);-ms-transform:matrix(0.298136,0.004174,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.298136,0.004174,-0.003500,0.249976,0,0);}
.md_c01039{transform:matrix(0.317457,0.002222,-0.001750,0.249994,0,0);-ms-transform:matrix(0.317457,0.002222,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.317457,0.002222,-0.001750,0.249994,0,0);}
.m25_c01039{transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322845,0.000000,0.000000,0.250000,0,0);}
.mce_c01039{transform:matrix(0.331221,0.003975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.331221,0.003975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.331221,0.003975,-0.003000,0.249982,0,0);}
.mb_c01039{transform:matrix(0.334652,0.002343,-0.001750,0.249994,0,0);-ms-transform:matrix(0.334652,0.002343,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.334652,0.002343,-0.001750,0.249994,0,0);}
.m1_c01039{transform:matrix(0.335985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335985,0.000000,0.000000,0.250000,0,0);}
.m23_c01039{transform:matrix(0.336060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336060,0.000000,0.000000,0.250000,0,0);}
.m26_c01039{transform:matrix(0.339180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339180,0.000000,0.000000,0.250000,0,0);}
.m6_c01039{transform:matrix(0.340892,0.002386,-0.001750,0.249994,0,0);-ms-transform:matrix(0.340892,0.002386,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.340892,0.002386,-0.001750,0.249994,0,0);}
.m62_c01039{transform:matrix(0.341269,0.002730,-0.002000,0.249992,0,0);-ms-transform:matrix(0.341269,0.002730,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.341269,0.002730,-0.002000,0.249992,0,0);}
.ma7_c01039{transform:matrix(0.343725,0.004125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.343725,0.004125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.343725,0.004125,-0.003000,0.249982,0,0);}
.maa_c01039{transform:matrix(0.356349,0.006058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.356349,0.006058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.356349,0.006058,-0.004249,0.249964,0,0);}
.m0_c01039{transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);}
.m70_c01039{transform:matrix(0.369738,0.002958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.369738,0.002958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.369738,0.002958,-0.002000,0.249992,0,0);}
.m33_c01039{transform:matrix(0.391885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391885,0.000000,0.000000,0.250000,0,0);}
.m9c_c01039{transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);}
.m28_c01039{transform:matrix(0.432380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432380,0.000000,0.000000,0.250000,0,0);}
.m1c_c01039{transform:matrix(0.460399,0.003223,-0.001750,0.249994,0,0);-ms-transform:matrix(0.460399,0.003223,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.460399,0.003223,-0.001750,0.249994,0,0);}
.m9f_c01039{transform:matrix(0.481545,0.005779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.481545,0.005779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.481545,0.005779,-0.003000,0.249982,0,0);}
.m2a_c01039{transform:matrix(0.701395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.701395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.701395,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls0_c01039{letter-spacing:0.000000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:0.000000px;}
.fc0_c01039{color:transparent;}
.fs14_c01039{font-size:63.009103px;}
.fs7_c01039{font-size:64.052050px;}
.fsc_c01039{font-size:67.202150px;}
.fsf_c01039{font-size:68.250000px;}
.fsb_c01039{font-size:68.252184px;}
.fsa_c01039{font-size:69.302218px;}
.fs6_c01039{font-size:70.350000px;}
.fs10_c01039{font-size:70.353517px;}
.fs16_c01039{font-size:70.355944px;}
.fs5_c01039{font-size:71.400000px;}
.fs9_c01039{font-size:71.402285px;}
.fse_c01039{font-size:71.403570px;}
.fs17_c01039{font-size:71.405141px;}
.fs11_c01039{font-size:72.450000px;}
.fs8_c01039{font-size:72.452318px;}
.fs13_c01039{font-size:72.455216px;}
.fs15_c01039{font-size:72.456122px;}
.fsd_c01039{font-size:72.457100px;}
.fs12_c01039{font-size:73.505292px;}
.fs18_c01039{font-size:75.607408px;}
.fs1_c01039{font-size:81.902007px;}
.fs3_c01039{font-size:88.202161px;}
.fs4_c01039{font-size:89.250000px;}
.fs2_c01039{font-size:92.402264px;}
.fs0_c01039{font-size:118.650000px;}
.y0_c01039{bottom:0.000000px;}
.yb2_c01039{bottom:163.189563px;}
.yb1_c01039{bottom:163.476717px;}
.yb0_c01039{bottom:163.696461px;}
.yaf_c01039{bottom:164.081727px;}
.yae_c01039{bottom:164.401998px;}
.yad_c01039{bottom:164.852826px;}
.yac_c01039{bottom:165.483540px;}
.yab_c01039{bottom:165.793143px;}
.yaa_c01039{bottom:166.678692px;}
.ya9_c01039{bottom:167.151150px;}
.ya8_c01039{bottom:167.673000px;}
.ya7_c01039{bottom:185.321346px;}
.ya6_c01039{bottom:185.706222px;}
.ya5_c01039{bottom:186.033354px;}
.ya4_c01039{bottom:186.593982px;}
.ya3_c01039{bottom:187.060434px;}
.ya2_c01039{bottom:187.485036px;}
.ya1_c01039{bottom:188.230254px;}
.ya0_c01039{bottom:188.742138px;}
.y9f_c01039{bottom:188.972286px;}
.y9e_c01039{bottom:189.340962px;}
.y9d_c01039{bottom:189.811500px;}
.y9c_c01039{bottom:208.359843px;}
.y9b_c01039{bottom:208.847089px;}
.y9a_c01039{bottom:210.052385px;}
.y99_c01039{bottom:211.088107px;}
.y98_c01039{bottom:211.673225px;}
.y97_c01039{bottom:211.940141px;}
.y96_c01039{bottom:212.761500px;}
.y95_c01039{bottom:231.745841px;}
.y94_c01039{bottom:232.433098px;}
.y93_c01039{bottom:232.572660px;}
.y92_c01039{bottom:232.984032px;}
.y91_c01039{bottom:233.168580px;}
.y90_c01039{bottom:233.925317px;}
.y8f_c01039{bottom:234.423366px;}
.y8e_c01039{bottom:234.683360px;}
.y8d_c01039{bottom:235.167798px;}
.y8c_c01039{bottom:235.441500px;}
.y8b_c01039{bottom:253.581168px;}
.y8a_c01039{bottom:253.977336px;}
.y89_c01039{bottom:254.873508px;}
.y88_c01039{bottom:255.299154px;}
.y87_c01039{bottom:255.987552px;}
.y86_c01039{bottom:256.689950px;}
.y85_c01039{bottom:257.025121px;}
.y84_c01039{bottom:258.136284px;}
.y83_c01039{bottom:258.667500px;}
.y82_c01039{bottom:275.907228px;}
.y81_c01039{bottom:276.326934px;}
.y80_c01039{bottom:277.562844px;}
.y7f_c01039{bottom:298.828536px;}
.y7e_c01039{bottom:300.051168px;}
.y7d_c01039{bottom:300.498180px;}
.y7c_c01039{bottom:300.789906px;}
.y7b_c01039{bottom:301.104042px;}
.y7a_c01039{bottom:301.535124px;}
.y79_c01039{bottom:302.286984px;}
.y78_c01039{bottom:302.941500px;}
.y77_c01039{bottom:322.599000px;}
.y76_c01039{bottom:345.312465px;}
.y75_c01039{bottom:346.211580px;}
.y74_c01039{bottom:346.492425px;}
.y73_c01039{bottom:346.973115px;}
.y72_c01039{bottom:347.129700px;}
.y71_c01039{bottom:347.559060px;}
.y70_c01039{bottom:347.772315px;}
.y6f_c01039{bottom:348.031500px;}
.y6e_c01039{bottom:369.216000px;}
.y6d_c01039{bottom:391.514970px;}
.y6c_c01039{bottom:391.714755px;}
.y6b_c01039{bottom:392.111655px;}
.y6a_c01039{bottom:392.378970px;}
.y69_c01039{bottom:392.859660px;}
.y68_c01039{bottom:393.399225px;}
.y67_c01039{bottom:393.610245px;}
.y66_c01039{bottom:393.931500px;}
.y65_c01039{bottom:412.499508px;}
.y64_c01039{bottom:412.982613px;}
.y63_c01039{bottom:413.407044px;}
.y62_c01039{bottom:414.329322px;}
.y61_c01039{bottom:414.695940px;}
.y60_c01039{bottom:415.259412px;}
.y5f_c01039{bottom:416.181690px;}
.y5e_c01039{bottom:416.488059px;}
.y5d_c01039{bottom:416.979249px;}
.y5c_c01039{bottom:417.150000px;}
.y5b_c01039{bottom:435.305292px;}
.y5a_c01039{bottom:435.659820px;}
.y59_c01039{bottom:436.239972px;}
.y58_c01039{bottom:436.688868px;}
.y57_c01039{bottom:436.977024px;}
.y56_c01039{bottom:437.453844px;}
.y55_c01039{bottom:437.972712px;}
.y54_c01039{bottom:438.724800px;}
.y53_c01039{bottom:439.290000px;}
.y52_c01039{bottom:457.980456px;}
.y51_c01039{bottom:458.765064px;}
.y50_c01039{bottom:459.204936px;}
.y4f_c01039{bottom:459.484536px;}
.y4e_c01039{bottom:459.835212px;}
.y4d_c01039{bottom:460.571808px;}
.y4c_c01039{bottom:461.161908px;}
.y45_c01039{bottom:481.363020px;}
.y46_c01039{bottom:481.363392px;}
.y48_c01039{bottom:481.363728px;}
.y4a_c01039{bottom:481.363824px;}
.y49_c01039{bottom:481.363980px;}
.y47_c01039{bottom:481.364016px;}
.y4b_c01039{bottom:481.364316px;}
.y44_c01039{bottom:502.135968px;}
.y43_c01039{bottom:503.028732px;}
.y42_c01039{bottom:503.622732px;}
.y41_c01039{bottom:503.969940px;}
.y40_c01039{bottom:504.554244px;}
.y3f_c01039{bottom:505.077264px;}
.y3e_c01039{bottom:505.370568px;}
.y3d_c01039{bottom:506.249952px;}
.y3c_c01039{bottom:526.081800px;}
.y3b_c01039{bottom:526.581276px;}
.y3a_c01039{bottom:526.855368px;}
.y39_c01039{bottom:527.080584px;}
.y38_c01039{bottom:527.707080px;}
.y37_c01039{bottom:528.013944px;}
.y36_c01039{bottom:528.378720px;}
.y35_c01039{bottom:528.812208px;}
.y34_c01039{bottom:529.088316px;}
.y33_c01039{bottom:529.472076px;}
.y32_c01039{bottom:548.382708px;}
.y31_c01039{bottom:549.373668px;}
.y30_c01039{bottom:549.688248px;}
.y2f_c01039{bottom:550.520928px;}
.y2e_c01039{bottom:551.048664px;}
.y2d_c01039{bottom:551.517240px;}
.y2c_c01039{bottom:552.421800px;}
.y2b_c01039{bottom:571.450788px;}
.y2a_c01039{bottom:571.617312px;}
.y29_c01039{bottom:571.999356px;}
.y28_c01039{bottom:572.306088px;}
.y27_c01039{bottom:572.729748px;}
.y26_c01039{bottom:573.276300px;}
.y25_c01039{bottom:573.530892px;}
.y24_c01039{bottom:573.848472px;}
.y23_c01039{bottom:574.291500px;}
.y22_c01039{bottom:595.335000px;}
.y21_c01039{bottom:618.882000px;}
.y20_c01039{bottom:640.821000px;}
.y1f_c01039{bottom:663.123000px;}
.y1a_c01039{bottom:704.334168px;}
.y1d_c01039{bottom:704.334319px;}
.y18_c01039{bottom:704.334327px;}
.y1b_c01039{bottom:704.334558px;}
.y19_c01039{bottom:704.334727px;}
.y1c_c01039{bottom:704.335048px;}
.y17_c01039{bottom:728.546098px;}
.y16_c01039{bottom:728.889214px;}
.y15_c01039{bottom:729.305405px;}
.y14_c01039{bottom:729.566376px;}
.y13_c01039{bottom:730.579538px;}
.y12_c01039{bottom:731.106647px;}
.y11_c01039{bottom:731.340712px;}
.y10_c01039{bottom:731.544430px;}
.yf_c01039{bottom:732.073419px;}
.ye_c01039{bottom:732.510835px;}
.yd_c01039{bottom:755.146908px;}
.yc_c01039{bottom:755.290527px;}
.yb_c01039{bottom:755.443680px;}
.ya_c01039{bottom:755.923687px;}
.y9_c01039{bottom:756.165628px;}
.y8_c01039{bottom:756.475567px;}
.y7_c01039{bottom:756.641646px;}
.y6_c01039{bottom:756.749775px;}
.y5_c01039{bottom:757.274901px;}
.y4_c01039{bottom:757.428211px;}
.y3_c01039{bottom:757.857220px;}
.y2_c01039{bottom:758.161500px;}
.y1e_c01039{bottom:802.417500px;}
.y1_c01039{bottom:875.419500px;}
.h16_c01039{height:63.009103px;}
.h9_c01039{height:64.052050px;}
.he_c01039{height:67.202150px;}
.h11_c01039{height:68.250000px;}
.hd_c01039{height:68.252184px;}
.hc_c01039{height:69.302218px;}
.h8_c01039{height:70.350000px;}
.h12_c01039{height:70.353517px;}
.h18_c01039{height:70.355944px;}
.h7_c01039{height:71.400000px;}
.hb_c01039{height:71.402285px;}
.h10_c01039{height:71.403570px;}
.h19_c01039{height:71.405141px;}
.h13_c01039{height:72.450000px;}
.ha_c01039{height:72.452318px;}
.h15_c01039{height:72.455216px;}
.h17_c01039{height:72.456122px;}
.hf_c01039{height:72.457100px;}
.h14_c01039{height:73.505292px;}
.h1a_c01039{height:75.607408px;}
.h3_c01039{height:81.902007px;}
.h5_c01039{height:88.202161px;}
.h6_c01039{height:89.250000px;}
.h4_c01039{height:92.402264px;}
.h2_c01039{height:118.650000px;}
.h0_c01039{height:1008.450000px;}
.h1_c01039{height:1008.750000px;}
.w1_c01039{width:700.500000px;}
.w0_c01039{width:700.650000px;}
.x0_c01039{left:0.000000px;}
.x3_c01039{left:125.704500px;}
.xf_c01039{left:147.049500px;}
.x5a_c01039{left:148.822500px;}
.x29_c01039{left:159.570000px;}
.x31_c01039{left:161.730000px;}
.x4_c01039{left:169.173000px;}
.x70_c01039{left:181.809000px;}
.x51_c01039{left:188.193996px;}
.x32_c01039{left:192.510000px;}
.x45_c01039{left:194.273160px;}
.x10_c01039{left:195.608318px;}
.x7c_c01039{left:197.743500px;}
.x19_c01039{left:199.798862px;}
.x58_c01039{left:204.490452px;}
.x67_c01039{left:208.572000px;}
.x62_c01039{left:213.300000px;}
.x1_c01039{left:214.920000px;}
.x5b_c01039{left:217.987500px;}
.x71_c01039{left:219.073500px;}
.x2a_c01039{left:220.320000px;}
.x74_c01039{left:223.936500px;}
.x5_c01039{left:230.460000px;}
.x7d_c01039{left:231.490500px;}
.x41_c01039{left:236.152260px;}
.x4c_c01039{left:239.617332px;}
.x33_c01039{left:242.460000px;}
.x75_c01039{left:244.468500px;}
.x1e_c01039{left:247.050000px;}
.x78_c01039{left:250.147500px;}
.x6_c01039{left:252.361500px;}
.x11_c01039{left:254.462999px;}
.x1a_c01039{left:257.310176px;}
.x46_c01039{left:258.783612px;}
.x21_c01039{left:262.710000px;}
.x4d_c01039{left:266.342196px;}
.x5f_c01039{left:267.979500px;}
.x42_c01039{left:275.223012px;}
.x12_c01039{left:277.136684px;}
.x34_c01039{left:281.340000px;}
.x1b_c01039{left:284.041488px;}
.x3d_c01039{left:285.822000px;}
.x22_c01039{left:287.550000px;}
.x76_c01039{left:289.477500px;}
.x47_c01039{left:292.004820px;}
.x7e_c01039{left:294.744000px;}
.x68_c01039{left:298.350000px;}
.x2b_c01039{left:301.320000px;}
.x13_c01039{left:303.074316px;}
.x23_c01039{left:312.390000px;}
.x4e_c01039{left:313.906056px;}
.x39_c01039{left:315.090000px;}
.x7f_c01039{left:316.858500px;}
.x6d_c01039{left:318.156000px;}
.x43_c01039{left:319.251108px;}
.x52_c01039{left:321.848052px;}
.x5c_c01039{left:324.112500px;}
.x24_c01039{left:325.890000px;}
.x7_c01039{left:327.379500px;}
.x72_c01039{left:335.595000px;}
.x3a_c01039{left:337.230000px;}
.x2c_c01039{left:339.120000px;}
.x8_c01039{left:342.826500px;}
.x63_c01039{left:345.330000px;}
.x25_c01039{left:347.490000px;}
.x35_c01039{left:350.730000px;}
.x3e_c01039{left:354.141000px;}
.x3b_c01039{left:357.480000px;}
.x53_c01039{left:358.568904px;}
.x2_c01039{left:360.450000px;}
.x14_c01039{left:361.660497px;}
.x6a_c01039{left:363.288000px;}
.x9_c01039{left:366.552000px;}
.x26_c01039{left:368.010000px;}
.x1c_c01039{left:369.904199px;}
.x36_c01039{left:372.060000px;}
.x6c_c01039{left:374.770140px;}
.x48_c01039{left:376.797780px;}
.x56_c01039{left:378.628908px;}
.x64_c01039{left:381.240000px;}
.x60_c01039{left:382.470000px;}
.x6e_c01039{left:383.688000px;}
.x2d_c01039{left:388.800000px;}
.x79_c01039{left:390.289500px;}
.x73_c01039{left:392.170500px;}
.x69_c01039{left:394.470000px;}
.x3c_c01039{left:396.090000px;}
.x49_c01039{left:397.261788px;}
.x37_c01039{left:398.520000px;}
.x6b_c01039{left:400.539000px;}
.x61_c01039{left:402.448500px;}
.x27_c01039{left:406.080000px;}
.x3f_c01039{left:407.098500px;}
.xa_c01039{left:410.829000px;}
.x44_c01039{left:414.843048px;}
.x1f_c01039{left:416.070000px;}
.x4a_c01039{left:422.147688px;}
.x7a_c01039{left:429.160500px;}
.x54_c01039{left:432.280620px;}
.x2e_c01039{left:434.160000px;}
.x65_c01039{left:436.050000px;}
.x59_c01039{left:440.228520px;}
.x38_c01039{left:441.450000px;}
.xb_c01039{left:445.392000px;}
.x5d_c01039{left:446.493000px;}
.x57_c01039{left:449.890692px;}
.x4f_c01039{left:452.654232px;}
.x55_c01039{left:458.470800px;}
.x6f_c01039{left:459.708000px;}
.x66_c01039{left:461.970000px;}
.x4b_c01039{left:467.518596px;}
.x15_c01039{left:474.253422px;}
.x7b_c01039{left:475.879500px;}
.x5e_c01039{left:481.000500px;}
.x20_c01039{left:485.460000px;}
.x40_c01039{left:493.195500px;}
.x1d_c01039{left:498.157478px;}
.x77_c01039{left:499.344000px;}
.x28_c01039{left:501.930000px;}
.x16_c01039{left:503.177513px;}
.xc_c01039{left:513.964500px;}
.x2f_c01039{left:522.990000px;}
.x50_c01039{left:533.872788px;}
.xd_c01039{left:535.843500px;}
.x30_c01039{left:545.940000px;}
.x17_c01039{left:549.346862px;}
.xe_c01039{left:556.360500px;}
.x18_c01039{left:587.434326px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ws0_c01039{word-spacing:0.000000pt;}
.fs14_c01039{font-size:56.008091pt;}
.fs7_c01039{font-size:56.935155pt;}
.fsc_c01039{font-size:59.735245pt;}
.fsf_c01039{font-size:60.666667pt;}
.fsb_c01039{font-size:60.668608pt;}
.fsa_c01039{font-size:61.601971pt;}
.fs6_c01039{font-size:62.533333pt;}
.fs10_c01039{font-size:62.536460pt;}
.fs16_c01039{font-size:62.538617pt;}
.fs5_c01039{font-size:63.466667pt;}
.fs9_c01039{font-size:63.468698pt;}
.fse_c01039{font-size:63.469840pt;}
.fs17_c01039{font-size:63.471236pt;}
.fs11_c01039{font-size:64.400000pt;}
.fs8_c01039{font-size:64.402061pt;}
.fs13_c01039{font-size:64.404637pt;}
.fs15_c01039{font-size:64.405442pt;}
.fsd_c01039{font-size:64.406311pt;}
.fs12_c01039{font-size:65.338037pt;}
.fs18_c01039{font-size:67.206585pt;}
.fs1_c01039{font-size:72.801784pt;}
.fs3_c01039{font-size:78.401921pt;}
.fs4_c01039{font-size:79.333333pt;}
.fs2_c01039{font-size:82.135346pt;}
.fs0_c01039{font-size:105.466667pt;}
.y0_c01039{bottom:0.000000pt;}
.yb2_c01039{bottom:145.057389pt;}
.yb1_c01039{bottom:145.312637pt;}
.yb0_c01039{bottom:145.507965pt;}
.yaf_c01039{bottom:145.850424pt;}
.yae_c01039{bottom:146.135109pt;}
.yad_c01039{bottom:146.535845pt;}
.yac_c01039{bottom:147.096480pt;}
.yab_c01039{bottom:147.371683pt;}
.yaa_c01039{bottom:148.158837pt;}
.ya9_c01039{bottom:148.578800pt;}
.ya8_c01039{bottom:149.042667pt;}
.ya7_c01039{bottom:164.730085pt;}
.ya6_c01039{bottom:165.072197pt;}
.ya5_c01039{bottom:165.362981pt;}
.ya4_c01039{bottom:165.861317pt;}
.ya3_c01039{bottom:166.275941pt;}
.ya2_c01039{bottom:166.653365pt;}
.ya1_c01039{bottom:167.315781pt;}
.ya0_c01039{bottom:167.770789pt;}
.y9f_c01039{bottom:167.975365pt;}
.y9e_c01039{bottom:168.303077pt;}
.y9d_c01039{bottom:168.721333pt;}
.y9c_c01039{bottom:185.208749pt;}
.y9b_c01039{bottom:185.641857pt;}
.y9a_c01039{bottom:186.713231pt;}
.y99_c01039{bottom:187.633873pt;}
.y98_c01039{bottom:188.153977pt;}
.y97_c01039{bottom:188.391236pt;}
.y96_c01039{bottom:189.121333pt;}
.y95_c01039{bottom:205.996303pt;}
.y94_c01039{bottom:206.607199pt;}
.y93_c01039{bottom:206.731253pt;}
.y92_c01039{bottom:207.096917pt;}
.y91_c01039{bottom:207.260960pt;}
.y90_c01039{bottom:207.933615pt;}
.y8f_c01039{bottom:208.376325pt;}
.y8e_c01039{bottom:208.607431pt;}
.y8d_c01039{bottom:209.038043pt;}
.y8c_c01039{bottom:209.281333pt;}
.y8b_c01039{bottom:225.405483pt;}
.y8a_c01039{bottom:225.757632pt;}
.y89_c01039{bottom:226.554229pt;}
.y88_c01039{bottom:226.932581pt;}
.y87_c01039{bottom:227.544491pt;}
.y86_c01039{bottom:228.168844pt;}
.y85_c01039{bottom:228.466775pt;}
.y84_c01039{bottom:229.454475pt;}
.y83_c01039{bottom:229.926667pt;}
.y82_c01039{bottom:245.250869pt;}
.y81_c01039{bottom:245.623941pt;}
.y80_c01039{bottom:246.722528pt;}
.y7f_c01039{bottom:265.625365pt;}
.y7e_c01039{bottom:266.712149pt;}
.y7d_c01039{bottom:267.109493pt;}
.y7c_c01039{bottom:267.368805pt;}
.y7b_c01039{bottom:267.648037pt;}
.y7a_c01039{bottom:268.031221pt;}
.y79_c01039{bottom:268.699541pt;}
.y78_c01039{bottom:269.281333pt;}
.y77_c01039{bottom:286.754667pt;}
.y76_c01039{bottom:306.944413pt;}
.y75_c01039{bottom:307.743627pt;}
.y74_c01039{bottom:307.993267pt;}
.y73_c01039{bottom:308.420547pt;}
.y72_c01039{bottom:308.559733pt;}
.y71_c01039{bottom:308.941387pt;}
.y70_c01039{bottom:309.130947pt;}
.y6f_c01039{bottom:309.361333pt;}
.y6e_c01039{bottom:328.192000pt;}
.y6d_c01039{bottom:348.013307pt;}
.y6c_c01039{bottom:348.190893pt;}
.y6b_c01039{bottom:348.543693pt;}
.y6a_c01039{bottom:348.781307pt;}
.y69_c01039{bottom:349.208587pt;}
.y68_c01039{bottom:349.688200pt;}
.y67_c01039{bottom:349.875773pt;}
.y66_c01039{bottom:350.161333pt;}
.y65_c01039{bottom:366.666229pt;}
.y64_c01039{bottom:367.095656pt;}
.y63_c01039{bottom:367.472928pt;}
.y62_c01039{bottom:368.292731pt;}
.y61_c01039{bottom:368.618613pt;}
.y60_c01039{bottom:369.119477pt;}
.y5f_c01039{bottom:369.939280pt;}
.y5e_c01039{bottom:370.211608pt;}
.y5d_c01039{bottom:370.648221pt;}
.y5c_c01039{bottom:370.800000pt;}
.y5b_c01039{bottom:386.938037pt;}
.y5a_c01039{bottom:387.253173pt;}
.y59_c01039{bottom:387.768864pt;}
.y58_c01039{bottom:388.167883pt;}
.y57_c01039{bottom:388.424021pt;}
.y56_c01039{bottom:388.847861pt;}
.y55_c01039{bottom:389.309077pt;}
.y54_c01039{bottom:389.977600pt;}
.y53_c01039{bottom:390.480000pt;}
.y52_c01039{bottom:407.093739pt;}
.y51_c01039{bottom:407.791168pt;}
.y50_c01039{bottom:408.182165pt;}
.y4f_c01039{bottom:408.430699pt;}
.y4e_c01039{bottom:408.742411pt;}
.y4d_c01039{bottom:409.397163pt;}
.y4c_c01039{bottom:409.921696pt;}
.y45_c01039{bottom:427.878240pt;}
.y46_c01039{bottom:427.878571pt;}
.y48_c01039{bottom:427.878869pt;}
.y4a_c01039{bottom:427.878955pt;}
.y49_c01039{bottom:427.879093pt;}
.y47_c01039{bottom:427.879125pt;}
.y4b_c01039{bottom:427.879392pt;}
.y44_c01039{bottom:446.343083pt;}
.y43_c01039{bottom:447.136651pt;}
.y42_c01039{bottom:447.664651pt;}
.y41_c01039{bottom:447.973280pt;}
.y40_c01039{bottom:448.492661pt;}
.y3f_c01039{bottom:448.957568pt;}
.y3e_c01039{bottom:449.218283pt;}
.y3d_c01039{bottom:449.999957pt;}
.y3c_c01039{bottom:467.628267pt;}
.y3b_c01039{bottom:468.072245pt;}
.y3a_c01039{bottom:468.315883pt;}
.y39_c01039{bottom:468.516075pt;}
.y38_c01039{bottom:469.072960pt;}
.y37_c01039{bottom:469.345728pt;}
.y36_c01039{bottom:469.669973pt;}
.y35_c01039{bottom:470.055296pt;}
.y34_c01039{bottom:470.300725pt;}
.y33_c01039{bottom:470.641845pt;}
.y32_c01039{bottom:487.451296pt;}
.y31_c01039{bottom:488.332149pt;}
.y30_c01039{bottom:488.611776pt;}
.y2f_c01039{bottom:489.351936pt;}
.y2e_c01039{bottom:489.821035pt;}
.y2d_c01039{bottom:490.237547pt;}
.y2c_c01039{bottom:491.041600pt;}
.y2b_c01039{bottom:507.956256pt;}
.y2a_c01039{bottom:508.104277pt;}
.y29_c01039{bottom:508.443872pt;}
.y28_c01039{bottom:508.716523pt;}
.y27_c01039{bottom:509.093109pt;}
.y26_c01039{bottom:509.578933pt;}
.y25_c01039{bottom:509.805237pt;}
.y24_c01039{bottom:510.087531pt;}
.y23_c01039{bottom:510.481333pt;}
.y22_c01039{bottom:529.186667pt;}
.y21_c01039{bottom:550.117333pt;}
.y20_c01039{bottom:569.618667pt;}
.y1f_c01039{bottom:589.442667pt;}
.y1a_c01039{bottom:626.074816pt;}
.y1d_c01039{bottom:626.074951pt;}
.y18_c01039{bottom:626.074957pt;}
.y1b_c01039{bottom:626.075163pt;}
.y19_c01039{bottom:626.075313pt;}
.y1c_c01039{bottom:626.075599pt;}
.y17_c01039{bottom:647.596532pt;}
.y16_c01039{bottom:647.901524pt;}
.y15_c01039{bottom:648.271471pt;}
.y14_c01039{bottom:648.503445pt;}
.y13_c01039{bottom:649.404033pt;}
.y12_c01039{bottom:649.872575pt;}
.y11_c01039{bottom:650.080633pt;}
.y10_c01039{bottom:650.261716pt;}
.yf_c01039{bottom:650.731928pt;}
.ye_c01039{bottom:651.120743pt;}
.yd_c01039{bottom:671.241696pt;}
.yc_c01039{bottom:671.369357pt;}
.yb_c01039{bottom:671.505493pt;}
.ya_c01039{bottom:671.932167pt;}
.y9_c01039{bottom:672.147225pt;}
.y8_c01039{bottom:672.422727pt;}
.y7_c01039{bottom:672.570352pt;}
.y6_c01039{bottom:672.666467pt;}
.y5_c01039{bottom:673.133245pt;}
.y4_c01039{bottom:673.269521pt;}
.y3_c01039{bottom:673.650863pt;}
.y2_c01039{bottom:673.921333pt;}
.y1e_c01039{bottom:713.260000pt;}
.y1_c01039{bottom:778.150667pt;}
.h16_c01039{height:56.008091pt;}
.h9_c01039{height:56.935155pt;}
.he_c01039{height:59.735245pt;}
.h11_c01039{height:60.666667pt;}
.hd_c01039{height:60.668608pt;}
.hc_c01039{height:61.601971pt;}
.h8_c01039{height:62.533333pt;}
.h12_c01039{height:62.536460pt;}
.h18_c01039{height:62.538617pt;}
.h7_c01039{height:63.466667pt;}
.hb_c01039{height:63.468698pt;}
.h10_c01039{height:63.469840pt;}
.h19_c01039{height:63.471236pt;}
.h13_c01039{height:64.400000pt;}
.ha_c01039{height:64.402061pt;}
.h15_c01039{height:64.404637pt;}
.h17_c01039{height:64.405442pt;}
.hf_c01039{height:64.406311pt;}
.h14_c01039{height:65.338037pt;}
.h1a_c01039{height:67.206585pt;}
.h3_c01039{height:72.801784pt;}
.h5_c01039{height:78.401921pt;}
.h6_c01039{height:79.333333pt;}
.h4_c01039{height:82.135346pt;}
.h2_c01039{height:105.466667pt;}
.h0_c01039{height:896.400000pt;}
.h1_c01039{height:896.666667pt;}
.w1_c01039{width:622.666667pt;}
.w0_c01039{width:622.800000pt;}
.x0_c01039{left:0.000000pt;}
.x3_c01039{left:111.737333pt;}
.xf_c01039{left:130.710667pt;}
.x5a_c01039{left:132.286667pt;}
.x29_c01039{left:141.840000pt;}
.x31_c01039{left:143.760000pt;}
.x4_c01039{left:150.376000pt;}
.x70_c01039{left:161.608000pt;}
.x51_c01039{left:167.283552pt;}
.x32_c01039{left:171.120000pt;}
.x45_c01039{left:172.687253pt;}
.x10_c01039{left:173.874060pt;}
.x7c_c01039{left:175.772000pt;}
.x19_c01039{left:177.598988pt;}
.x58_c01039{left:181.769291pt;}
.x67_c01039{left:185.397333pt;}
.x62_c01039{left:189.600000pt;}
.x1_c01039{left:191.040000pt;}
.x5b_c01039{left:193.766667pt;}
.x71_c01039{left:194.732000pt;}
.x2a_c01039{left:195.840000pt;}
.x74_c01039{left:199.054667pt;}
.x5_c01039{left:204.853333pt;}
.x7d_c01039{left:205.769333pt;}
.x41_c01039{left:209.913120pt;}
.x4c_c01039{left:212.993184pt;}
.x33_c01039{left:215.520000pt;}
.x75_c01039{left:217.305333pt;}
.x1e_c01039{left:219.600000pt;}
.x78_c01039{left:222.353333pt;}
.x6_c01039{left:224.321333pt;}
.x11_c01039{left:226.189332pt;}
.x1a_c01039{left:228.720156pt;}
.x46_c01039{left:230.029877pt;}
.x21_c01039{left:233.520000pt;}
.x4d_c01039{left:236.748619pt;}
.x5f_c01039{left:238.204000pt;}
.x42_c01039{left:244.642677pt;}
.x12_c01039{left:246.343719pt;}
.x34_c01039{left:250.080000pt;}
.x1b_c01039{left:252.481323pt;}
.x3d_c01039{left:254.064000pt;}
.x22_c01039{left:255.600000pt;}
.x76_c01039{left:257.313333pt;}
.x47_c01039{left:259.559840pt;}
.x7e_c01039{left:261.994667pt;}
.x68_c01039{left:265.200000pt;}
.x2b_c01039{left:267.840000pt;}
.x13_c01039{left:269.399392pt;}
.x23_c01039{left:277.680000pt;}
.x4e_c01039{left:279.027605pt;}
.x39_c01039{left:280.080000pt;}
.x7f_c01039{left:281.652000pt;}
.x6d_c01039{left:282.805333pt;}
.x43_c01039{left:283.778763pt;}
.x52_c01039{left:286.087157pt;}
.x5c_c01039{left:288.100000pt;}
.x24_c01039{left:289.680000pt;}
.x7_c01039{left:291.004000pt;}
.x72_c01039{left:298.306667pt;}
.x3a_c01039{left:299.760000pt;}
.x2c_c01039{left:301.440000pt;}
.x8_c01039{left:304.734667pt;}
.x63_c01039{left:306.960000pt;}
.x25_c01039{left:308.880000pt;}
.x35_c01039{left:311.760000pt;}
.x3e_c01039{left:314.792000pt;}
.x3b_c01039{left:317.760000pt;}
.x53_c01039{left:318.727915pt;}
.x2_c01039{left:320.400000pt;}
.x14_c01039{left:321.475997pt;}
.x6a_c01039{left:322.922667pt;}
.x9_c01039{left:325.824000pt;}
.x26_c01039{left:327.120000pt;}
.x1c_c01039{left:328.803732pt;}
.x36_c01039{left:330.720000pt;}
.x6c_c01039{left:333.129013pt;}
.x48_c01039{left:334.931360pt;}
.x56_c01039{left:336.559029pt;}
.x64_c01039{left:338.880000pt;}
.x60_c01039{left:339.973333pt;}
.x6e_c01039{left:341.056000pt;}
.x2d_c01039{left:345.600000pt;}
.x79_c01039{left:346.924000pt;}
.x73_c01039{left:348.596000pt;}
.x69_c01039{left:350.640000pt;}
.x3c_c01039{left:352.080000pt;}
.x49_c01039{left:353.121589pt;}
.x37_c01039{left:354.240000pt;}
.x6b_c01039{left:356.034667pt;}
.x61_c01039{left:357.732000pt;}
.x27_c01039{left:360.960000pt;}
.x3f_c01039{left:361.865333pt;}
.xa_c01039{left:365.181333pt;}
.x44_c01039{left:368.749376pt;}
.x1f_c01039{left:369.840000pt;}
.x4a_c01039{left:375.242389pt;}
.x7a_c01039{left:381.476000pt;}
.x54_c01039{left:384.249440pt;}
.x2e_c01039{left:385.920000pt;}
.x65_c01039{left:387.600000pt;}
.x59_c01039{left:391.314240pt;}
.x38_c01039{left:392.400000pt;}
.xb_c01039{left:395.904000pt;}
.x5d_c01039{left:396.882667pt;}
.x57_c01039{left:399.902837pt;}
.x4f_c01039{left:402.359317pt;}
.x55_c01039{left:407.529600pt;}
.x6f_c01039{left:408.629333pt;}
.x66_c01039{left:410.640000pt;}
.x4b_c01039{left:415.572085pt;}
.x15_c01039{left:421.558597pt;}
.x7b_c01039{left:423.004000pt;}
.x5e_c01039{left:427.556000pt;}
.x20_c01039{left:431.520000pt;}
.x40_c01039{left:438.396000pt;}
.x1d_c01039{left:442.806647pt;}
.x77_c01039{left:443.861333pt;}
.x28_c01039{left:446.160000pt;}
.x16_c01039{left:447.268900pt;}
.xc_c01039{left:456.857333pt;}
.x2f_c01039{left:464.880000pt;}
.x50_c01039{left:474.553589pt;}
.xd_c01039{left:476.305333pt;}
.x30_c01039{left:485.280000pt;}
.x17_c01039{left:488.308321pt;}
.xe_c01039{left:494.542667pt;}
.x18_c01039{left:522.163845pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.000000;font-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_c01040{transform:matrix(0.007130,-0.000078,0.002750,0.249985,0,0);-ms-transform:matrix(0.007130,-0.000078,0.002750,0.249985,0,0);-webkit-transform:matrix(0.007130,-0.000078,0.002750,0.249985,0,0);}
.mcd_c01040{transform:matrix(0.010245,-0.000082,0.002000,0.249992,0,0);-ms-transform:matrix(0.010245,-0.000082,0.002000,0.249992,0,0);-webkit-transform:matrix(0.010245,-0.000082,0.002000,0.249992,0,0);}
.mb8_c01040{transform:matrix(0.010389,-0.000114,0.002750,0.249985,0,0);-ms-transform:matrix(0.010389,-0.000114,0.002750,0.249985,0,0);-webkit-transform:matrix(0.010389,-0.000114,0.002750,0.249985,0,0);}
.m5f_c01040{transform:matrix(0.010694,-0.000118,0.002750,0.249985,0,0);-ms-transform:matrix(0.010694,-0.000118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.010694,-0.000118,0.002750,0.249985,0,0);}
.m3c_c01040{transform:matrix(0.011190,-0.000090,0.002000,0.249992,0,0);-ms-transform:matrix(0.011190,-0.000090,0.002000,0.249992,0,0);-webkit-transform:matrix(0.011190,-0.000090,0.002000,0.249992,0,0);}
.mb6_c01040{transform:matrix(0.022344,-0.000246,0.002750,0.249985,0,0);-ms-transform:matrix(0.022344,-0.000246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.022344,-0.000246,0.002750,0.249985,0,0);}
.m6_c01040{transform:matrix(0.059796,-0.000658,0.002750,0.249985,0,0);-ms-transform:matrix(0.059796,-0.000658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.059796,-0.000658,0.002750,0.249985,0,0);}
.mae_c01040{transform:matrix(0.143666,-0.001580,0.002750,0.249985,0,0);-ms-transform:matrix(0.143666,-0.001580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143666,-0.001580,0.002750,0.249985,0,0);}
.m86_c01040{transform:matrix(0.143846,-0.001582,0.002750,0.249985,0,0);-ms-transform:matrix(0.143846,-0.001582,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143846,-0.001582,0.002750,0.249985,0,0);}
.m28_c01040{transform:matrix(0.146246,-0.001024,0.001750,0.249994,0,0);-ms-transform:matrix(0.146246,-0.001024,0.001750,0.249994,0,0);-webkit-transform:matrix(0.146246,-0.001024,0.001750,0.249994,0,0);}
.m72_c01040{transform:matrix(0.147216,-0.001619,0.002750,0.249985,0,0);-ms-transform:matrix(0.147216,-0.001619,0.002750,0.249985,0,0);-webkit-transform:matrix(0.147216,-0.001619,0.002750,0.249985,0,0);}
.m31_c01040{transform:matrix(0.147661,-0.001034,0.001750,0.249994,0,0);-ms-transform:matrix(0.147661,-0.001034,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147661,-0.001034,0.001750,0.249994,0,0);}
.m53_c01040{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);}
.m66_c01040{transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);-ms-transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151251,-0.001664,0.002750,0.249985,0,0);}
.m3e_c01040{transform:matrix(0.151750,-0.001214,0.002000,0.249992,0,0);-ms-transform:matrix(0.151750,-0.001214,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151750,-0.001214,0.002000,0.249992,0,0);}
.ma3_c01040{transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);-ms-transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154061,-0.001695,0.002750,0.249985,0,0);}
.m4d_c01040{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);}
.m8a_c01040{transform:matrix(0.155411,-0.001710,0.002750,0.249985,0,0);-ms-transform:matrix(0.155411,-0.001710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155411,-0.001710,0.002750,0.249985,0,0);}
.m89_c01040{transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);-ms-transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155496,-0.001710,0.002750,0.249985,0,0);}
.m5d_c01040{transform:matrix(0.155871,-0.001715,0.002750,0.249985,0,0);-ms-transform:matrix(0.155871,-0.001715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155871,-0.001715,0.002750,0.249985,0,0);}
.m6e_c01040{transform:matrix(0.156041,-0.001716,0.002750,0.249985,0,0);-ms-transform:matrix(0.156041,-0.001716,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156041,-0.001716,0.002750,0.249985,0,0);}
.m9_c01040{transform:matrix(0.156621,-0.001723,0.002750,0.249985,0,0);-ms-transform:matrix(0.156621,-0.001723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156621,-0.001723,0.002750,0.249985,0,0);}
.m69_c01040{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);}
.m94_c01040{transform:matrix(0.159270,-0.001752,0.002750,0.249985,0,0);-ms-transform:matrix(0.159270,-0.001752,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159270,-0.001752,0.002750,0.249985,0,0);}
.maf_c01040{transform:matrix(0.159930,-0.001759,0.002750,0.249985,0,0);-ms-transform:matrix(0.159930,-0.001759,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159930,-0.001759,0.002750,0.249985,0,0);}
.mcb_c01040{transform:matrix(0.160720,-0.001286,0.002000,0.249992,0,0);-ms-transform:matrix(0.160720,-0.001286,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160720,-0.001286,0.002000,0.249992,0,0);}
.m4c_c01040{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);}
.m67_c01040{transform:matrix(0.161675,-0.001778,0.002750,0.249985,0,0);-ms-transform:matrix(0.161675,-0.001778,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161675,-0.001778,0.002750,0.249985,0,0);}
.mcf_c01040{transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);-ms-transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161715,-0.001294,0.002000,0.249992,0,0);}
.ma_c01040{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);}
.mc8_c01040{transform:matrix(0.162805,-0.001302,0.002000,0.249992,0,0);-ms-transform:matrix(0.162805,-0.001302,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162805,-0.001302,0.002000,0.249992,0,0);}
.mb_c01040{transform:matrix(0.163090,-0.001794,0.002750,0.249985,0,0);-ms-transform:matrix(0.163090,-0.001794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163090,-0.001794,0.002750,0.249985,0,0);}
.m80_c01040{transform:matrix(0.163665,-0.001800,0.002750,0.249985,0,0);-ms-transform:matrix(0.163665,-0.001800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163665,-0.001800,0.002750,0.249985,0,0);}
.mbf_c01040{transform:matrix(0.164880,-0.001814,0.002750,0.249985,0,0);-ms-transform:matrix(0.164880,-0.001814,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164880,-0.001814,0.002750,0.249985,0,0);}
.mc0_c01040{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);}
.m45_c01040{transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);-ms-transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166485,-0.001332,0.002000,0.249992,0,0);}
.m27_c01040{transform:matrix(0.167176,-0.001170,0.001750,0.249994,0,0);-ms-transform:matrix(0.167176,-0.001170,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167176,-0.001170,0.001750,0.249994,0,0);}
.m21_c01040{transform:matrix(0.167182,-0.001672,0.002500,0.249988,0,0);-ms-transform:matrix(0.167182,-0.001672,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167182,-0.001672,0.002500,0.249988,0,0);}
.m56_c01040{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);}
.m6d_c01040{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);}
.m8f_c01040{transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169850,-0.001868,0.002750,0.249985,0,0);}
.m54_c01040{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);}
.m7a_c01040{transform:matrix(0.171445,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171445,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171445,-0.001886,0.002750,0.249985,0,0);}
.m57_c01040{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);}
.m92_c01040{transform:matrix(0.172525,-0.001898,0.002750,0.249985,0,0);-ms-transform:matrix(0.172525,-0.001898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172525,-0.001898,0.002750,0.249985,0,0);}
.m17_c01040{transform:matrix(0.172551,-0.001208,0.001750,0.249994,0,0);-ms-transform:matrix(0.172551,-0.001208,0.001750,0.249994,0,0);-webkit-transform:matrix(0.172551,-0.001208,0.001750,0.249994,0,0);}
.m76_c01040{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);}
.mb0_c01040{transform:matrix(0.172840,-0.001901,0.002750,0.249985,0,0);-ms-transform:matrix(0.172840,-0.001901,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172840,-0.001901,0.002750,0.249985,0,0);}
.m1b_c01040{transform:matrix(0.173151,-0.001732,0.002500,0.249988,0,0);-ms-transform:matrix(0.173151,-0.001732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173151,-0.001732,0.002500,0.249988,0,0);}
.maa_c01040{transform:matrix(0.173689,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173689,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173689,-0.001911,0.002750,0.249985,0,0);}
.m7e_c01040{transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173704,-0.001911,0.002750,0.249985,0,0);}
.m11_c01040{transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);}
.m5e_c01040{transform:matrix(0.174309,-0.001917,0.002750,0.249985,0,0);-ms-transform:matrix(0.174309,-0.001917,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174309,-0.001917,0.002750,0.249985,0,0);}
.mad_c01040{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);}
.m6c_c01040{transform:matrix(0.174874,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174874,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174874,-0.001924,0.002750,0.249985,0,0);}
.m37_c01040{transform:matrix(0.175099,-0.001401,0.002000,0.249992,0,0);-ms-transform:matrix(0.175099,-0.001401,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175099,-0.001401,0.002000,0.249992,0,0);}
.mb3_c01040{transform:matrix(0.175124,-0.001926,0.002750,0.249985,0,0);-ms-transform:matrix(0.175124,-0.001926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175124,-0.001926,0.002750,0.249985,0,0);}
.mc6_c01040{transform:matrix(0.175169,-0.001401,0.002000,0.249992,0,0);-ms-transform:matrix(0.175169,-0.001401,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175169,-0.001401,0.002000,0.249992,0,0);}
.ma9_c01040{transform:matrix(0.175569,-0.001931,0.002750,0.249985,0,0);-ms-transform:matrix(0.175569,-0.001931,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175569,-0.001931,0.002750,0.249985,0,0);}
.m13_c01040{transform:matrix(0.175601,-0.001229,0.001750,0.249994,0,0);-ms-transform:matrix(0.175601,-0.001229,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175601,-0.001229,0.001750,0.249994,0,0);}
.mbb_c01040{transform:matrix(0.175869,-0.001935,0.002750,0.249985,0,0);-ms-transform:matrix(0.175869,-0.001935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175869,-0.001935,0.002750,0.249985,0,0);}
.mc_c01040{transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);}
.m5b_c01040{transform:matrix(0.176484,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176484,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176484,-0.001941,0.002750,0.249985,0,0);}
.m32_c01040{transform:matrix(0.176756,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176756,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176756,-0.001237,0.001750,0.249994,0,0);}
.m1d_c01040{transform:matrix(0.176971,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.176971,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.176971,-0.001770,0.002500,0.249988,0,0);}
.m39_c01040{transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);-ms-transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177889,-0.001423,0.002000,0.249992,0,0);}
.m1c_c01040{transform:matrix(0.178091,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178091,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178091,-0.001781,0.002500,0.249988,0,0);}
.m5c_c01040{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);}
.m2f_c01040{transform:matrix(0.180256,-0.001262,0.001750,0.249994,0,0);-ms-transform:matrix(0.180256,-0.001262,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180256,-0.001262,0.001750,0.249994,0,0);}
.m63_c01040{transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);-ms-transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180464,-0.001985,0.002750,0.249985,0,0);}
.mac_c01040{transform:matrix(0.180519,-0.001986,0.002750,0.249985,0,0);-ms-transform:matrix(0.180519,-0.001986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180519,-0.001986,0.002750,0.249985,0,0);}
.m14_c01040{transform:matrix(0.180756,-0.001265,0.001750,0.249994,0,0);-ms-transform:matrix(0.180756,-0.001265,0.001750,0.249994,0,0);-webkit-transform:matrix(0.180756,-0.001265,0.001750,0.249994,0,0);}
.m3a_c01040{transform:matrix(0.181494,-0.001452,0.002000,0.249992,0,0);-ms-transform:matrix(0.181494,-0.001452,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181494,-0.001452,0.002000,0.249992,0,0);}
.m41_c01040{transform:matrix(0.181584,-0.001453,0.002000,0.249992,0,0);-ms-transform:matrix(0.181584,-0.001453,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181584,-0.001453,0.002000,0.249992,0,0);}
.m71_c01040{transform:matrix(0.181659,-0.001998,0.002750,0.249985,0,0);-ms-transform:matrix(0.181659,-0.001998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181659,-0.001998,0.002750,0.249985,0,0);}
.m87_c01040{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);}
.m64_c01040{transform:matrix(0.182319,-0.002006,0.002750,0.249985,0,0);-ms-transform:matrix(0.182319,-0.002006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182319,-0.002006,0.002750,0.249985,0,0);}
.m38_c01040{transform:matrix(0.182779,-0.001462,0.002000,0.249992,0,0);-ms-transform:matrix(0.182779,-0.001462,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182779,-0.001462,0.002000,0.249992,0,0);}
.m65_c01040{transform:matrix(0.183884,-0.002023,0.002750,0.249985,0,0);-ms-transform:matrix(0.183884,-0.002023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183884,-0.002023,0.002750,0.249985,0,0);}
.m15_c01040{transform:matrix(0.184705,-0.001293,0.001750,0.249994,0,0);-ms-transform:matrix(0.184705,-0.001293,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184705,-0.001293,0.001750,0.249994,0,0);}
.m95_c01040{transform:matrix(0.185379,-0.002039,0.002750,0.249985,0,0);-ms-transform:matrix(0.185379,-0.002039,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185379,-0.002039,0.002750,0.249985,0,0);}
.mb1_c01040{transform:matrix(0.185879,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185879,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185879,-0.002045,0.002750,0.249985,0,0);}
.m16_c01040{transform:matrix(0.186220,-0.001304,0.001750,0.249994,0,0);-ms-transform:matrix(0.186220,-0.001304,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186220,-0.001304,0.001750,0.249994,0,0);}
.m1f_c01040{transform:matrix(0.186226,-0.001862,0.002500,0.249988,0,0);-ms-transform:matrix(0.186226,-0.001862,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186226,-0.001862,0.002500,0.249988,0,0);}
.m85_c01040{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);}
.m68_c01040{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);}
.mc7_c01040{transform:matrix(0.188359,-0.001507,0.002000,0.249992,0,0);-ms-transform:matrix(0.188359,-0.001507,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188359,-0.001507,0.002000,0.249992,0,0);}
.m49_c01040{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);}
.mc9_c01040{transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);-ms-transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189409,-0.001515,0.002000,0.249992,0,0);}
.m36_c01040{transform:matrix(0.189914,-0.001519,0.002000,0.249992,0,0);-ms-transform:matrix(0.189914,-0.001519,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189914,-0.001519,0.002000,0.249992,0,0);}
.ma8_c01040{transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);}
.m84_c01040{transform:matrix(0.190453,-0.002095,0.002750,0.249985,0,0);-ms-transform:matrix(0.190453,-0.002095,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190453,-0.002095,0.002750,0.249985,0,0);}
.m91_c01040{transform:matrix(0.190623,-0.002097,0.002750,0.249985,0,0);-ms-transform:matrix(0.190623,-0.002097,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190623,-0.002097,0.002750,0.249985,0,0);}
.md_c01040{transform:matrix(0.191603,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191603,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191603,-0.002108,0.002750,0.249985,0,0);}
.m62_c01040{transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);-ms-transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191733,-0.002109,0.002750,0.249985,0,0);}
.m2b_c01040{transform:matrix(0.192660,-0.001349,0.001750,0.249994,0,0);-ms-transform:matrix(0.192660,-0.001349,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192660,-0.001349,0.001750,0.249994,0,0);}
.m25_c01040{transform:matrix(0.193180,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193180,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193180,-0.001352,0.001750,0.249994,0,0);}
.m4b_c01040{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);}
.m70_c01040{transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);-ms-transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195403,-0.002149,0.002750,0.249985,0,0);}
.ma5_c01040{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);}
.m81_c01040{transform:matrix(0.195718,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195718,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195718,-0.002153,0.002750,0.249985,0,0);}
.m4e_c01040{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);}
.mca_c01040{transform:matrix(0.196474,-0.001572,0.002000,0.249992,0,0);-ms-transform:matrix(0.196474,-0.001572,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196474,-0.001572,0.002000,0.249992,0,0);}
.m88_c01040{transform:matrix(0.196853,-0.002165,0.002750,0.249985,0,0);-ms-transform:matrix(0.196853,-0.002165,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196853,-0.002165,0.002750,0.249985,0,0);}
.m75_c01040{transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);-ms-transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197353,-0.002171,0.002750,0.249985,0,0);}
.m55_c01040{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);}
.mb4_c01040{transform:matrix(0.199348,-0.002193,0.002750,0.249985,0,0);-ms-transform:matrix(0.199348,-0.002193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199348,-0.002193,0.002750,0.249985,0,0);}
.m6a_c01040{transform:matrix(0.200228,-0.002203,0.002750,0.249985,0,0);-ms-transform:matrix(0.200228,-0.002203,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200228,-0.002203,0.002750,0.249985,0,0);}
.m3b_c01040{transform:matrix(0.200904,-0.001607,0.002000,0.249992,0,0);-ms-transform:matrix(0.200904,-0.001607,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200904,-0.001607,0.002000,0.249992,0,0);}
.ma6_c01040{transform:matrix(0.201078,-0.002212,0.002750,0.249985,0,0);-ms-transform:matrix(0.201078,-0.002212,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201078,-0.002212,0.002750,0.249985,0,0);}
.m12_c01040{transform:matrix(0.201120,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201120,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201120,-0.001408,0.001750,0.249994,0,0);}
.m98_c01040{transform:matrix(0.201728,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201728,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201728,-0.002219,0.002750,0.249985,0,0);}
.mc3_c01040{transform:matrix(0.201958,-0.002222,0.002750,0.249985,0,0);-ms-transform:matrix(0.201958,-0.002222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201958,-0.002222,0.002750,0.249985,0,0);}
.m46_c01040{transform:matrix(0.202509,-0.001620,0.002000,0.249992,0,0);-ms-transform:matrix(0.202509,-0.001620,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202509,-0.001620,0.002000,0.249992,0,0);}
.m93_c01040{transform:matrix(0.202923,-0.002232,0.002750,0.249985,0,0);-ms-transform:matrix(0.202923,-0.002232,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202923,-0.002232,0.002750,0.249985,0,0);}
.mce_c01040{transform:matrix(0.202939,-0.001624,0.002000,0.249992,0,0);-ms-transform:matrix(0.202939,-0.001624,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202939,-0.001624,0.002000,0.249992,0,0);}
.m2a_c01040{transform:matrix(0.203825,-0.001427,0.001750,0.249994,0,0);-ms-transform:matrix(0.203825,-0.001427,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203825,-0.001427,0.001750,0.249994,0,0);}
.m74_c01040{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);}
.ma7_c01040{transform:matrix(0.204283,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204283,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204283,-0.002247,0.002750,0.249985,0,0);}
.m90_c01040{transform:matrix(0.204633,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204633,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204633,-0.002251,0.002750,0.249985,0,0);}
.m6f_c01040{transform:matrix(0.205418,-0.002260,0.002750,0.249985,0,0);-ms-transform:matrix(0.205418,-0.002260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205418,-0.002260,0.002750,0.249985,0,0);}
.m23_c01040{transform:matrix(0.206625,-0.002066,0.002500,0.249988,0,0);-ms-transform:matrix(0.206625,-0.002066,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206625,-0.002066,0.002500,0.249988,0,0);}
.m7f_c01040{transform:matrix(0.207187,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207187,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207187,-0.002279,0.002750,0.249985,0,0);}
.m42_c01040{transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);-ms-transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207308,-0.001658,0.002000,0.249992,0,0);}
.mbd_c01040{transform:matrix(0.207667,-0.002284,0.002750,0.249985,0,0);-ms-transform:matrix(0.207667,-0.002284,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207667,-0.002284,0.002750,0.249985,0,0);}
.m7d_c01040{transform:matrix(0.208257,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208257,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208257,-0.002291,0.002750,0.249985,0,0);}
.m26_c01040{transform:matrix(0.208480,-0.001459,0.001750,0.249994,0,0);-ms-transform:matrix(0.208480,-0.001459,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208480,-0.001459,0.001750,0.249994,0,0);}
.m30_c01040{transform:matrix(0.208575,-0.001460,0.001750,0.249994,0,0);-ms-transform:matrix(0.208575,-0.001460,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208575,-0.001460,0.001750,0.249994,0,0);}
.mc2_c01040{transform:matrix(0.209622,-0.002306,0.002750,0.249985,0,0);-ms-transform:matrix(0.209622,-0.002306,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209622,-0.002306,0.002750,0.249985,0,0);}
.m50_c01040{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);}
.m1e_c01040{transform:matrix(0.210324,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210324,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210324,-0.002103,0.002500,0.249988,0,0);}
.mbe_c01040{transform:matrix(0.210877,-0.002320,0.002750,0.249985,0,0);-ms-transform:matrix(0.210877,-0.002320,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210877,-0.002320,0.002750,0.249985,0,0);}
.mc5_c01040{transform:matrix(0.212343,-0.001699,0.002000,0.249992,0,0);-ms-transform:matrix(0.212343,-0.001699,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212343,-0.001699,0.002000,0.249992,0,0);}
.m2d_c01040{transform:matrix(0.212525,-0.001488,0.001750,0.249994,0,0);-ms-transform:matrix(0.212525,-0.001488,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212525,-0.001488,0.001750,0.249994,0,0);}
.m40_c01040{transform:matrix(0.212543,-0.001700,0.002000,0.249992,0,0);-ms-transform:matrix(0.212543,-0.001700,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212543,-0.001700,0.002000,0.249992,0,0);}
.mc1_c01040{transform:matrix(0.212722,-0.002340,0.002750,0.249985,0,0);-ms-transform:matrix(0.212722,-0.002340,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212722,-0.002340,0.002750,0.249985,0,0);}
.mb2_c01040{transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);-ms-transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213022,-0.002343,0.002750,0.249985,0,0);}
.m29_c01040{transform:matrix(0.213140,-0.001492,0.001750,0.249994,0,0);-ms-transform:matrix(0.213140,-0.001492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213140,-0.001492,0.001750,0.249994,0,0);}
.m2e_c01040{transform:matrix(0.213960,-0.001498,0.001750,0.249994,0,0);-ms-transform:matrix(0.213960,-0.001498,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213960,-0.001498,0.001750,0.249994,0,0);}
.m52_c01040{transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);}
.m3d_c01040{transform:matrix(0.214673,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214673,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214673,-0.001717,0.002000,0.249992,0,0);}
.m9d_c01040{transform:matrix(0.215762,-0.002373,0.002750,0.249985,0,0);-ms-transform:matrix(0.215762,-0.002373,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215762,-0.002373,0.002750,0.249985,0,0);}
.m99_c01040{transform:matrix(0.218222,-0.002400,0.002750,0.249985,0,0);-ms-transform:matrix(0.218222,-0.002400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218222,-0.002400,0.002750,0.249985,0,0);}
.m8b_c01040{transform:matrix(0.218712,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218712,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218712,-0.002406,0.002750,0.249985,0,0);}
.m20_c01040{transform:matrix(0.219279,-0.002193,0.002500,0.249988,0,0);-ms-transform:matrix(0.219279,-0.002193,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219279,-0.002193,0.002500,0.249988,0,0);}
.ma4_c01040{transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220392,-0.002424,0.002750,0.249985,0,0);}
.m4_c01040{transform:matrix(0.220839,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220839,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220839,-0.002208,0.002500,0.249988,0,0);}
.m51_c01040{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);}
.m5a_c01040{transform:matrix(0.222637,-0.002449,0.002750,0.249985,0,0);-ms-transform:matrix(0.222637,-0.002449,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222637,-0.002449,0.002750,0.249985,0,0);}
.m9a_c01040{transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);-ms-transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222752,-0.002450,0.002750,0.249985,0,0);}
.m3_c01040{transform:matrix(0.223239,-0.002232,0.002500,0.249988,0,0);-ms-transform:matrix(0.223239,-0.002232,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223239,-0.002232,0.002500,0.249988,0,0);}
.ma0_c01040{transform:matrix(0.223516,-0.002459,0.002750,0.249985,0,0);-ms-transform:matrix(0.223516,-0.002459,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223516,-0.002459,0.002750,0.249985,0,0);}
.m97_c01040{transform:matrix(0.224481,-0.002469,0.002750,0.249985,0,0);-ms-transform:matrix(0.224481,-0.002469,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224481,-0.002469,0.002750,0.249985,0,0);}
.m22_c01040{transform:matrix(0.226784,-0.002268,0.002500,0.249988,0,0);-ms-transform:matrix(0.226784,-0.002268,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226784,-0.002268,0.002500,0.249988,0,0);}
.mbc_c01040{transform:matrix(0.230726,-0.002538,0.002750,0.249985,0,0);-ms-transform:matrix(0.230726,-0.002538,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230726,-0.002538,0.002750,0.249985,0,0);}
.m43_c01040{transform:matrix(0.232298,-0.001858,0.002000,0.249992,0,0);-ms-transform:matrix(0.232298,-0.001858,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232298,-0.001858,0.002000,0.249992,0,0);}
.mf_c01040{transform:matrix(0.234116,-0.002575,0.002750,0.249985,0,0);-ms-transform:matrix(0.234116,-0.002575,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234116,-0.002575,0.002750,0.249985,0,0);}
.m34_c01040{transform:matrix(0.234549,-0.001642,0.001750,0.249994,0,0);-ms-transform:matrix(0.234549,-0.001642,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234549,-0.001642,0.001750,0.249994,0,0);}
.m7b_c01040{transform:matrix(0.235401,-0.002589,0.002750,0.249985,0,0);-ms-transform:matrix(0.235401,-0.002589,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235401,-0.002589,0.002750,0.249985,0,0);}
.m4a_c01040{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);}
.m24_c01040{transform:matrix(0.240569,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240569,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240569,-0.001684,0.001750,0.249994,0,0);}
.me_c01040{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);}
.m33_c01040{transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);}
.m3f_c01040{transform:matrix(0.249097,-0.001993,0.002000,0.249992,0,0);-ms-transform:matrix(0.249097,-0.001993,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249097,-0.001993,0.002000,0.249992,0,0);}
.m73_c01040{transform:matrix(0.249340,-0.002743,0.002750,0.249985,0,0);-ms-transform:matrix(0.249340,-0.002743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249340,-0.002743,0.002750,0.249985,0,0);}
.m8e_c01040{transform:matrix(0.251830,-0.002770,0.002750,0.249985,0,0);-ms-transform:matrix(0.251830,-0.002770,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251830,-0.002770,0.002750,0.249985,0,0);}
.m8_c01040{transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);-ms-transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);}
.m48_c01040{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);}
.m0_c01040{transform:matrix(0.261742,-0.002617,0.002500,0.249988,0,0);-ms-transform:matrix(0.261742,-0.002617,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261742,-0.002617,0.002500,0.249988,0,0);}
.m7_c01040{transform:matrix(0.262034,-0.002882,0.002750,0.249985,0,0);-ms-transform:matrix(0.262034,-0.002882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262034,-0.002882,0.002750,0.249985,0,0);}
.m58_c01040{transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280965,0.000000,0.000000,0.250000,0,0);}
.m9c_c01040{transform:matrix(0.284493,-0.003129,0.002750,0.249985,0,0);-ms-transform:matrix(0.284493,-0.003129,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284493,-0.003129,0.002750,0.249985,0,0);}
.m18_c01040{transform:matrix(0.285053,-0.001995,0.001750,0.249994,0,0);-ms-transform:matrix(0.285053,-0.001995,0.001750,0.249994,0,0);-webkit-transform:matrix(0.285053,-0.001995,0.001750,0.249994,0,0);}
.m2_c01040{transform:matrix(0.286061,-0.002861,0.002500,0.249988,0,0);-ms-transform:matrix(0.286061,-0.002861,0.002500,0.249988,0,0);-webkit-transform:matrix(0.286061,-0.002861,0.002500,0.249988,0,0);}
.m9b_c01040{transform:matrix(0.291087,-0.003202,0.002750,0.249985,0,0);-ms-transform:matrix(0.291087,-0.003202,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291087,-0.003202,0.002750,0.249985,0,0);}
.m77_c01040{transform:matrix(0.293607,-0.003230,0.002750,0.249985,0,0);-ms-transform:matrix(0.293607,-0.003230,0.002750,0.249985,0,0);-webkit-transform:matrix(0.293607,-0.003230,0.002750,0.249985,0,0);}
.m79_c01040{transform:matrix(0.294872,-0.003244,0.002750,0.249985,0,0);-ms-transform:matrix(0.294872,-0.003244,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294872,-0.003244,0.002750,0.249985,0,0);}
.mba_c01040{transform:matrix(0.301102,-0.003312,0.002750,0.249985,0,0);-ms-transform:matrix(0.301102,-0.003312,0.002750,0.249985,0,0);-webkit-transform:matrix(0.301102,-0.003312,0.002750,0.249985,0,0);}
.mb5_c01040{transform:matrix(0.302747,-0.003330,0.002750,0.249985,0,0);-ms-transform:matrix(0.302747,-0.003330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.302747,-0.003330,0.002750,0.249985,0,0);}
.m44_c01040{transform:matrix(0.310280,-0.002482,0.002000,0.249992,0,0);-ms-transform:matrix(0.310280,-0.002482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.310280,-0.002482,0.002000,0.249992,0,0);}
.m5_c01040{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);}
.m8c_c01040{transform:matrix(0.322895,-0.003552,0.002750,0.249985,0,0);-ms-transform:matrix(0.322895,-0.003552,0.002750,0.249985,0,0);-webkit-transform:matrix(0.322895,-0.003552,0.002750,0.249985,0,0);}
.m78_c01040{transform:matrix(0.324795,-0.003573,0.002750,0.249985,0,0);-ms-transform:matrix(0.324795,-0.003573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.324795,-0.003573,0.002750,0.249985,0,0);}
.mc4_c01040{transform:matrix(0.328060,-0.002624,0.002000,0.249992,0,0);-ms-transform:matrix(0.328060,-0.002624,0.002000,0.249992,0,0);-webkit-transform:matrix(0.328060,-0.002624,0.002000,0.249992,0,0);}
.m19_c01040{transform:matrix(0.334822,-0.002344,0.001750,0.249994,0,0);-ms-transform:matrix(0.334822,-0.002344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.334822,-0.002344,0.001750,0.249994,0,0);}
.m59_c01040{transform:matrix(0.339054,-0.003730,0.002750,0.249985,0,0);-ms-transform:matrix(0.339054,-0.003730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.339054,-0.003730,0.002750,0.249985,0,0);}
.m82_c01040{transform:matrix(0.341214,-0.003753,0.002750,0.249985,0,0);-ms-transform:matrix(0.341214,-0.003753,0.002750,0.249985,0,0);-webkit-transform:matrix(0.341214,-0.003753,0.002750,0.249985,0,0);}
.md0_c01040{transform:matrix(0.366068,-0.002929,0.002000,0.249992,0,0);-ms-transform:matrix(0.366068,-0.002929,0.002000,0.249992,0,0);-webkit-transform:matrix(0.366068,-0.002929,0.002000,0.249992,0,0);}
.m10_c01040{transform:matrix(0.368721,-0.002581,0.001750,0.249994,0,0);-ms-transform:matrix(0.368721,-0.002581,0.001750,0.249994,0,0);-webkit-transform:matrix(0.368721,-0.002581,0.001750,0.249994,0,0);}
.m83_c01040{transform:matrix(0.379482,-0.004174,0.002750,0.249985,0,0);-ms-transform:matrix(0.379482,-0.004174,0.002750,0.249985,0,0);-webkit-transform:matrix(0.379482,-0.004174,0.002750,0.249985,0,0);}
.m9f_c01040{transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);-ms-transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.408940,-0.004498,0.002750,0.249985,0,0);}
.m35_c01040{transform:matrix(0.421287,-0.003370,0.002000,0.249992,0,0);-ms-transform:matrix(0.421287,-0.003370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.421287,-0.003370,0.002000,0.249992,0,0);}
.mb7_c01040{transform:matrix(0.424724,-0.004672,0.002750,0.249985,0,0);-ms-transform:matrix(0.424724,-0.004672,0.002750,0.249985,0,0);-webkit-transform:matrix(0.424724,-0.004672,0.002750,0.249985,0,0);}
.m47_c01040{transform:matrix(0.428440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428440,0.000000,0.000000,0.250000,0,0);}
.m4f_c01040{transform:matrix(0.435535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435535,0.000000,0.000000,0.250000,0,0);}
.m8d_c01040{transform:matrix(0.450208,-0.004952,0.002750,0.249985,0,0);-ms-transform:matrix(0.450208,-0.004952,0.002750,0.249985,0,0);-webkit-transform:matrix(0.450208,-0.004952,0.002750,0.249985,0,0);}
.m1_c01040{transform:matrix(0.465137,-0.004651,0.002500,0.249988,0,0);-ms-transform:matrix(0.465137,-0.004651,0.002500,0.249988,0,0);-webkit-transform:matrix(0.465137,-0.004651,0.002500,0.249988,0,0);}
.m60_c01040{transform:matrix(0.466742,-0.005134,0.002750,0.249985,0,0);-ms-transform:matrix(0.466742,-0.005134,0.002750,0.249985,0,0);-webkit-transform:matrix(0.466742,-0.005134,0.002750,0.249985,0,0);}
.mab_c01040{transform:matrix(0.472106,-0.005193,0.002750,0.249985,0,0);-ms-transform:matrix(0.472106,-0.005193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.472106,-0.005193,0.002750,0.249985,0,0);}
.m6b_c01040{transform:matrix(0.490585,-0.005396,0.002750,0.249985,0,0);-ms-transform:matrix(0.490585,-0.005396,0.002750,0.249985,0,0);-webkit-transform:matrix(0.490585,-0.005396,0.002750,0.249985,0,0);}
.m1a_c01040{transform:matrix(0.568177,-0.005682,0.002500,0.249988,0,0);-ms-transform:matrix(0.568177,-0.005682,0.002500,0.249988,0,0);-webkit-transform:matrix(0.568177,-0.005682,0.002500,0.249988,0,0);}
.m9e_c01040{transform:matrix(0.587864,-0.006467,0.002750,0.249985,0,0);-ms-transform:matrix(0.587864,-0.006467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.587864,-0.006467,0.002750,0.249985,0,0);}
.ma2_c01040{transform:matrix(0.729956,-0.008030,0.002750,0.249985,0,0);-ms-transform:matrix(0.729956,-0.008030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.729956,-0.008030,0.002750,0.249985,0,0);}
.m7c_c01040{transform:matrix(0.788892,-0.008678,0.002750,0.249985,0,0);-ms-transform:matrix(0.788892,-0.008678,0.002750,0.249985,0,0);-webkit-transform:matrix(0.788892,-0.008678,0.002750,0.249985,0,0);}
.mcc_c01040{transform:matrix(0.808399,-0.006467,0.002000,0.249992,0,0);-ms-transform:matrix(0.808399,-0.006467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.808399,-0.006467,0.002000,0.249992,0,0);}
.mb9_c01040{transform:matrix(0.912015,-0.010032,0.002750,0.249985,0,0);-ms-transform:matrix(0.912015,-0.010032,0.002750,0.249985,0,0);-webkit-transform:matrix(0.912015,-0.010032,0.002750,0.249985,0,0);}
.m2c_c01040{transform:matrix(0.914733,-0.006403,0.001750,0.249994,0,0);-ms-transform:matrix(0.914733,-0.006403,0.001750,0.249994,0,0);-webkit-transform:matrix(0.914733,-0.006403,0.001750,0.249994,0,0);}
.m96_c01040{transform:matrix(0.970826,-0.010679,0.002750,0.249985,0,0);-ms-transform:matrix(0.970826,-0.010679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.970826,-0.010679,0.002750,0.249985,0,0);}
.ma1_c01040{transform:matrix(1.467251,-0.016140,0.002750,0.249985,0,0);-ms-transform:matrix(1.467251,-0.016140,0.002750,0.249985,0,0);-webkit-transform:matrix(1.467251,-0.016140,0.002750,0.249985,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls0_c01040{letter-spacing:0.000000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:0.000000px;}
.fc0_c01040{color:transparent;}
.fs12_c01040{font-size:64.053875px;}
.fs5_c01040{font-size:65.103255px;}
.fs11_c01040{font-size:67.204065px;}
.fsa_c01040{font-size:68.250000px;}
.fs9_c01040{font-size:68.252184px;}
.fse_c01040{font-size:68.254129px;}
.fs7_c01040{font-size:69.301698px;}
.fs2_c01040{font-size:70.350000px;}
.fs8_c01040{font-size:70.352251px;}
.fs14_c01040{font-size:70.354256px;}
.fs4_c01040{font-size:71.401749px;}
.fsd_c01040{font-size:71.404320px;}
.fs10_c01040{font-size:72.454383px;}
.fsb_c01040{font-size:73.500000px;}
.fs6_c01040{font-size:73.501801px;}
.fs3_c01040{font-size:73.504447px;}
.fs17_c01040{font-size:74.552386px;}
.fs15_c01040{font-size:74.554510px;}
.fsc_c01040{font-size:75.604574px;}
.fs16_c01040{font-size:76.652453px;}
.fsf_c01040{font-size:91.355527px;}
.fs1_c01040{font-size:92.404620px;}
.fs13_c01040{font-size:97.655908px;}
.fs0_c01040{font-size:225.761287px;}
.y0_c01040{bottom:0.000000px;}
.yc8_c01040{bottom:291.869076px;}
.yc9_c01040{bottom:291.869184px;}
.yca_c01040{bottom:291.869292px;}
.yc6_c01040{bottom:291.869592px;}
.yc7_c01040{bottom:291.869700px;}
.ybe_c01040{bottom:312.121500px;}
.ybf_c01040{bottom:312.778044px;}
.yc0_c01040{bottom:313.032660px;}
.yc1_c01040{bottom:313.397856px;}
.yc2_c01040{bottom:314.086752px;}
.yc3_c01040{bottom:314.372136px;}
.yc4_c01040{bottom:314.566584px;}
.yc5_c01040{bottom:315.255624px;}
.yb3_c01040{bottom:334.516215px;}
.yb4_c01040{bottom:335.138852px;}
.yb5_c01040{bottom:335.404671px;}
.yb6_c01040{bottom:335.627615px;}
.yb7_c01040{bottom:335.970185px;}
.yb8_c01040{bottom:336.252281px;}
.yb9_c01040{bottom:336.547106px;}
.yba_c01040{bottom:336.653871px;}
.ybb_c01040{bottom:336.847328px;}
.ybc_c01040{bottom:337.145654px;}
.ybd_c01040{bottom:337.557597px;}
.yaf_c01040{bottom:356.658960px;}
.yb0_c01040{bottom:358.824636px;}
.yb1_c01040{bottom:359.228177px;}
.yb2_c01040{bottom:362.455242px;}
.ya5_c01040{bottom:380.418306px;}
.ya6_c01040{bottom:381.133058px;}
.ya7_c01040{bottom:381.461151px;}
.ya8_c01040{bottom:381.795930px;}
.ya9_c01040{bottom:382.105074px;}
.yaa_c01040{bottom:382.551897px;}
.yab_c01040{bottom:382.742444px;}
.yac_c01040{bottom:383.061987px;}
.yad_c01040{bottom:383.220710px;}
.yae_c01040{bottom:383.646866px;}
.y9c_c01040{bottom:402.829978px;}
.y9d_c01040{bottom:403.629929px;}
.y9e_c01040{bottom:403.814769px;}
.y9f_c01040{bottom:403.985648px;}
.ya0_c01040{bottom:404.616170px;}
.ya1_c01040{bottom:405.098507px;}
.ya2_c01040{bottom:405.880830px;}
.ya3_c01040{bottom:406.104636px;}
.ya4_c01040{bottom:406.304297px;}
.y9a_c01040{bottom:425.780634px;}
.y9b_c01040{bottom:428.486700px;}
.y90_c01040{bottom:447.382026px;}
.y91_c01040{bottom:448.474647px;}
.y92_c01040{bottom:448.976964px;}
.y93_c01040{bottom:449.682743px;}
.y94_c01040{bottom:450.162241px;}
.y95_c01040{bottom:451.024278px;}
.y96_c01040{bottom:451.274315px;}
.y97_c01040{bottom:451.595114px;}
.y98_c01040{bottom:452.020150px;}
.y99_c01040{bottom:452.930132px;}
.y87_c01040{bottom:471.141716px;}
.y88_c01040{bottom:471.913728px;}
.y89_c01040{bottom:472.237260px;}
.y8a_c01040{bottom:472.833531px;}
.y8b_c01040{bottom:473.116898px;}
.y8c_c01040{bottom:473.426452px;}
.y8d_c01040{bottom:473.690677px;}
.y8e_c01040{bottom:474.343731px;}
.y8f_c01040{bottom:474.560018px;}
.y7d_c01040{bottom:493.554202px;}
.y7e_c01040{bottom:494.231750px;}
.y7f_c01040{bottom:494.565753px;}
.y80_c01040{bottom:494.896043px;}
.y81_c01040{bottom:495.106166px;}
.y82_c01040{bottom:495.687645px;}
.y83_c01040{bottom:496.147771px;}
.y84_c01040{bottom:496.411095px;}
.y85_c01040{bottom:496.633087px;}
.y86_c01040{bottom:497.056274px;}
.y76_c01040{bottom:515.428784px;}
.y77_c01040{bottom:516.502546px;}
.y78_c01040{bottom:517.082358px;}
.y79_c01040{bottom:517.439107px;}
.y7a_c01040{bottom:518.485451px;}
.y7b_c01040{bottom:519.380220px;}
.y7c_c01040{bottom:520.303252px;}
.y71_c01040{bottom:537.569523px;}
.y72_c01040{bottom:539.158971px;}
.y73_c01040{bottom:540.352068px;}
.y74_c01040{bottom:541.717266px;}
.y75_c01040{bottom:541.970750px;}
.y65_c01040{bottom:560.789037px;}
.y66_c01040{bottom:561.593194px;}
.y67_c01040{bottom:561.973968px;}
.y68_c01040{bottom:562.141414px;}
.y69_c01040{bottom:562.430378px;}
.y6a_c01040{bottom:562.699635px;}
.y6b_c01040{bottom:563.072007px;}
.y6c_c01040{bottom:563.435930px;}
.y6d_c01040{bottom:563.562447px;}
.y6e_c01040{bottom:563.755126px;}
.y6f_c01040{bottom:564.034715px;}
.y70_c01040{bottom:564.421956px;}
.y59_c01040{bottom:583.469927px;}
.y5a_c01040{bottom:583.622073px;}
.y5b_c01040{bottom:584.250046px;}
.y5c_c01040{bottom:584.473918px;}
.y5d_c01040{bottom:584.765028px;}
.y5e_c01040{bottom:585.032477px;}
.y5f_c01040{bottom:585.691816px;}
.y60_c01040{bottom:586.285883px;}
.y61_c01040{bottom:586.582899px;}
.y62_c01040{bottom:586.977958px;}
.y63_c01040{bottom:587.257023px;}
.y64_c01040{bottom:587.470450px;}
.y53_c01040{bottom:606.151500px;}
.y54_c01040{bottom:607.149420px;}
.y55_c01040{bottom:608.444422px;}
.y56_c01040{bottom:608.854414px;}
.y57_c01040{bottom:609.605808px;}
.y58_c01040{bottom:610.407890px;}
.y49_c01040{bottom:628.560000px;}
.y4a_c01040{bottom:629.293500px;}
.y4b_c01040{bottom:629.904000px;}
.y4c_c01040{bottom:630.349500px;}
.y4d_c01040{bottom:630.798000px;}
.y4e_c01040{bottom:630.934500px;}
.y4f_c01040{bottom:631.258500px;}
.y50_c01040{bottom:631.827000px;}
.y51_c01040{bottom:632.059500px;}
.y52_c01040{bottom:632.656500px;}
.y48_c01040{bottom:653.724000px;}
.y3f_c01040{bottom:676.170840px;}
.y40_c01040{bottom:676.170888px;}
.y3d_c01040{bottom:676.171164px;}
.y3e_c01040{bottom:676.171332px;}
.y41_c01040{bottom:676.171548px;}
.y46_c01040{bottom:676.171620px;}
.y45_c01040{bottom:676.171680px;}
.y43_c01040{bottom:676.171824px;}
.y44_c01040{bottom:676.171872px;}
.y47_c01040{bottom:676.172100px;}
.y42_c01040{bottom:676.172256px;}
.y36_c01040{bottom:697.141500px;}
.y37_c01040{bottom:697.741704px;}
.y38_c01040{bottom:698.350788px;}
.y39_c01040{bottom:698.640240px;}
.y3a_c01040{bottom:699.059244px;}
.y3b_c01040{bottom:699.242856px;}
.y3c_c01040{bottom:699.549804px;}
.y2d_c01040{bottom:718.497591px;}
.y2e_c01040{bottom:719.216762px;}
.y2f_c01040{bottom:719.637591px;}
.y30_c01040{bottom:719.795617px;}
.y31_c01040{bottom:720.121361px;}
.y32_c01040{bottom:720.375734px;}
.y33_c01040{bottom:720.589896px;}
.y34_c01040{bottom:720.840731px;}
.y35_c01040{bottom:721.389780px;}
.y25_c01040{bottom:740.610000px;}
.y26_c01040{bottom:741.190178px;}
.y27_c01040{bottom:741.502101px;}
.y28_c01040{bottom:741.932790px;}
.y29_c01040{bottom:742.125591px;}
.y2a_c01040{bottom:742.331842px;}
.y2b_c01040{bottom:742.715555px;}
.y2c_c01040{bottom:743.363825px;}
.y1b_c01040{bottom:763.021500px;}
.y1c_c01040{bottom:763.891215px;}
.y1d_c01040{bottom:764.077455px;}
.y1e_c01040{bottom:764.433540px;}
.y1f_c01040{bottom:764.680140px;}
.y20_c01040{bottom:765.524880px;}
.y21_c01040{bottom:765.888960px;}
.y22_c01040{bottom:766.186425px;}
.y23_c01040{bottom:766.591695px;}
.y24_c01040{bottom:766.840245px;}
.y11_c01040{bottom:786.240000px;}
.y12_c01040{bottom:786.880836px;}
.y13_c01040{bottom:787.098018px;}
.y14_c01040{bottom:787.417669px;}
.y15_c01040{bottom:787.954461px;}
.y16_c01040{bottom:788.105692px;}
.y17_c01040{bottom:788.375994px;}
.y18_c01040{bottom:788.793673px;}
.y19_c01040{bottom:788.995830px;}
.y1a_c01040{bottom:789.201955px;}
.y7_c01040{bottom:810.001500px;}
.y8_c01040{bottom:810.325675px;}
.y9_c01040{bottom:810.477013px;}
.ya_c01040{bottom:811.043178px;}
.yb_c01040{bottom:811.210174px;}
.yc_c01040{bottom:811.634406px;}
.yd_c01040{bottom:812.077398px;}
.ye_c01040{bottom:812.505078px;}
.yf_c01040{bottom:812.780595px;}
.y10_c01040{bottom:813.407843px;}
.y4_c01040{bottom:855.938430px;}
.y5_c01040{bottom:855.939000px;}
.y3_c01040{bottom:855.939060px;}
.y2_c01040{bottom:855.939765px;}
.y6_c01040{bottom:879.520500px;}
.y1_c01040{bottom:893.976000px;}
.h14_c01040{height:64.053875px;}
.h7_c01040{height:65.103255px;}
.h13_c01040{height:67.204065px;}
.hc_c01040{height:68.250000px;}
.hb_c01040{height:68.252184px;}
.h10_c01040{height:68.254129px;}
.h9_c01040{height:69.301698px;}
.h4_c01040{height:70.350000px;}
.ha_c01040{height:70.352251px;}
.h16_c01040{height:70.354256px;}
.h6_c01040{height:71.401749px;}
.hf_c01040{height:71.404320px;}
.h12_c01040{height:72.454383px;}
.hd_c01040{height:73.500000px;}
.h8_c01040{height:73.501801px;}
.h5_c01040{height:73.504447px;}
.h19_c01040{height:74.552386px;}
.h17_c01040{height:74.554510px;}
.he_c01040{height:75.604574px;}
.h18_c01040{height:76.652453px;}
.h11_c01040{height:91.355527px;}
.h3_c01040{height:92.404620px;}
.h15_c01040{height:97.655908px;}
.h2_c01040{height:225.761287px;}
.h1_c01040{height:1005.000000px;}
.h0_c01040{height:1005.150000px;}
.w0_c01040{width:715.200000px;}
.w1_c01040{width:715.500000px;}
.x0_c01040{left:0.000000px;}
.x6_c01040{left:55.350000px;}
.x1_c01040{left:56.746500px;}
.x6c_c01040{left:57.784542px;}
.x57_c01040{left:59.352276px;}
.x19_c01040{left:60.855000px;}
.x79_c01040{left:63.449928px;}
.x22_c01040{left:64.899000px;}
.x72_c01040{left:67.610050px;}
.x60_c01040{left:69.601633px;}
.x2f_c01040{left:70.897500px;}
.x33_c01040{left:99.900108px;}
.x7_c01040{left:118.975500px;}
.x4b_c01040{left:127.485596px;}
.x40_c01040{left:138.898500px;}
.x28_c01040{left:146.447241px;}
.x8_c01040{left:148.446000px;}
.x9_c01040{left:162.204000px;}
.x1a_c01040{left:166.450500px;}
.x3b_c01040{left:167.940000px;}
.x34_c01040{left:172.801776px;}
.x4c_c01040{left:174.302095px;}
.x11_c01040{left:179.076000px;}
.x58_c01040{left:181.617586px;}
.x74_c01040{left:185.059029px;}
.x6d_c01040{left:186.166363px;}
.x51_c01040{left:188.594496px;}
.x23_c01040{left:192.342000px;}
.x5b_c01040{left:194.578968px;}
.x29_c01040{left:199.065374px;}
.x2_c01040{left:200.617710px;}
.x1b_c01040{left:202.059000px;}
.x41_c01040{left:206.682000px;}
.x3c_c01040{left:208.440000px;}
.xa_c01040{left:213.673500px;}
.x35_c01040{left:217.623144px;}
.x2a_c01040{left:218.854737px;}
.x30_c01040{left:222.058500px;}
.x12_c01040{left:224.740500px;}
.x1c_c01040{left:226.719000px;}
.xb_c01040{left:228.855000px;}
.x36_c01040{left:238.144452px;}
.x52_c01040{left:239.360118px;}
.x65_c01040{left:247.816215px;}
.x24_c01040{left:253.869000px;}
.x42_c01040{left:256.125000px;}
.x31_c01040{left:258.240000px;}
.x2b_c01040{left:259.603454px;}
.x49_c01040{left:263.952000px;}
.x75_c01040{left:265.791077px;}
.xc_c01040{left:267.421500px;}
.x53_c01040{left:269.293278px;}
.x59_c01040{left:273.442573px;}
.x25_c01040{left:281.412000px;}
.x66_c01040{left:287.724769px;}
.x2c_c01040{left:291.442233px;}
.x37_c01040{left:296.736696px;}
.x61_c01040{left:298.171158px;}
.x13_c01040{left:301.425000px;}
.x6b_c01040{left:303.188542px;}
.x43_c01040{left:306.039000px;}
.xd_c01040{left:307.693500px;}
.x6e_c01040{left:309.838086px;}
.x1d_c01040{left:311.193000px;}
.x4d_c01040{left:312.561595px;}
.x2d_c01040{left:318.179544px;}
.x44_c01040{left:321.192000px;}
.x14_c01040{left:323.029500px;}
.x62_c01040{left:324.646455px;}
.x5d_c01040{left:328.447477px;}
.x32_c01040{left:333.567000px;}
.x4e_c01040{left:339.563095px;}
.xe_c01040{left:346.573500px;}
.x1e_c01040{left:347.601000px;}
.x2e_c01040{left:349.512824px;}
.x54_c01040{left:351.094576px;}
.x45_c01040{left:357.121500px;}
.x67_c01040{left:359.545477px;}
.x15_c01040{left:361.644000px;}
.x76_c01040{left:363.266850px;}
.x26_c01040{left:365.692500px;}
.x4a_c01040{left:369.532500px;}
.xf_c01040{left:371.620500px;}
.x4f_c01040{left:375.477596px;}
.x1f_c01040{left:377.347500px;}
.x38_c01040{left:378.818952px;}
.x68_c01040{left:380.366746px;}
.x55_c01040{left:386.522352px;}
.x71_c01040{left:387.815392px;}
.x63_c01040{left:390.015681px;}
.x6f_c01040{left:396.778500px;}
.x5a_c01040{left:397.956334px;}
.x50_c01040{left:400.847096px;}
.x69_c01040{left:407.075449px;}
.x64_c01040{left:411.587412px;}
.x3d_c01040{left:412.830000px;}
.x3_c01040{left:414.468600px;}
.x20_c01040{left:417.874500px;}
.x5e_c01040{left:418.900464px;}
.x46_c01040{left:420.255000px;}
.x16_c01040{left:421.312500px;}
.x10_c01040{left:428.643000px;}
.x39_c01040{left:433.360944px;}
.x7a_c01040{left:440.110536px;}
.x3e_c01040{left:441.180000px;}
.x21_c01040{left:442.729500px;}
.x70_c01040{left:443.731023px;}
.x47_c01040{left:446.166000px;}
.x17_c01040{left:450.192000px;}
.x78_c01040{left:456.417000px;}
.x27_c01040{left:458.302500px;}
.x56_c01040{left:460.508469px;}
.x5c_c01040{left:462.975514px;}
.x3a_c01040{left:470.353308px;}
.x3f_c01040{left:475.470000px;}
.x18_c01040{left:479.638500px;}
.x4_c01040{left:489.263085px;}
.x77_c01040{left:492.338526px;}
.x5f_c01040{left:499.646637px;}
.x48_c01040{left:512.544000px;}
.x6a_c01040{left:518.212212px;}
.x73_c01040{left:550.766754px;}
.x5_c01040{left:552.176370px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:0.000000pt;}
.ws0_c01040{word-spacing:0.000000pt;}
.fs12_c01040{font-size:56.936778pt;}
.fs5_c01040{font-size:57.869560pt;}
.fs11_c01040{font-size:59.736947pt;}
.fsa_c01040{font-size:60.666667pt;}
.fs9_c01040{font-size:60.668608pt;}
.fse_c01040{font-size:60.670337pt;}
.fs7_c01040{font-size:61.601509pt;}
.fs2_c01040{font-size:62.533333pt;}
.fs8_c01040{font-size:62.535334pt;}
.fs14_c01040{font-size:62.537116pt;}
.fs4_c01040{font-size:63.468222pt;}
.fsd_c01040{font-size:63.470506pt;}
.fs10_c01040{font-size:64.403896pt;}
.fsb_c01040{font-size:65.333333pt;}
.fs6_c01040{font-size:65.334934pt;}
.fs3_c01040{font-size:65.337286pt;}
.fs17_c01040{font-size:66.268787pt;}
.fs15_c01040{font-size:66.270676pt;}
.fsc_c01040{font-size:67.204065pt;}
.fs16_c01040{font-size:68.135514pt;}
.fsf_c01040{font-size:81.204912pt;}
.fs1_c01040{font-size:82.137440pt;}
.fs13_c01040{font-size:86.805251pt;}
.fs0_c01040{font-size:200.676700pt;}
.y0_c01040{bottom:0.000000pt;}
.yc8_c01040{bottom:259.439179pt;}
.yc9_c01040{bottom:259.439275pt;}
.yca_c01040{bottom:259.439371pt;}
.yc6_c01040{bottom:259.439637pt;}
.yc7_c01040{bottom:259.439733pt;}
.ybe_c01040{bottom:277.441333pt;}
.ybf_c01040{bottom:278.024928pt;}
.yc0_c01040{bottom:278.251253pt;}
.yc1_c01040{bottom:278.575872pt;}
.yc2_c01040{bottom:279.188224pt;}
.yc3_c01040{bottom:279.441899pt;}
.yc4_c01040{bottom:279.614741pt;}
.yc5_c01040{bottom:280.227221pt;}
.yb3_c01040{bottom:297.347747pt;}
.yb4_c01040{bottom:297.901201pt;}
.yb5_c01040{bottom:298.137485pt;}
.yb6_c01040{bottom:298.335657pt;}
.yb7_c01040{bottom:298.640164pt;}
.yb8_c01040{bottom:298.890916pt;}
.yb9_c01040{bottom:299.152983pt;}
.yba_c01040{bottom:299.247885pt;}
.ybb_c01040{bottom:299.419847pt;}
.ybc_c01040{bottom:299.685025pt;}
.ybd_c01040{bottom:300.051197pt;}
.yaf_c01040{bottom:317.030187pt;}
.yb0_c01040{bottom:318.955232pt;}
.yb1_c01040{bottom:319.313935pt;}
.yb2_c01040{bottom:322.182437pt;}
.ya5_c01040{bottom:338.149605pt;}
.ya6_c01040{bottom:338.784940pt;}
.ya7_c01040{bottom:339.076579pt;}
.ya8_c01040{bottom:339.374160pt;}
.ya9_c01040{bottom:339.648955pt;}
.yaa_c01040{bottom:340.046131pt;}
.yab_c01040{bottom:340.215505pt;}
.yac_c01040{bottom:340.499544pt;}
.yad_c01040{bottom:340.640631pt;}
.yae_c01040{bottom:341.019436pt;}
.y9c_c01040{bottom:358.071092pt;}
.y9d_c01040{bottom:358.782159pt;}
.y9e_c01040{bottom:358.946461pt;}
.y9f_c01040{bottom:359.098353pt;}
.ya0_c01040{bottom:359.658817pt;}
.ya1_c01040{bottom:360.087561pt;}
.ya2_c01040{bottom:360.782960pt;}
.ya3_c01040{bottom:360.981899pt;}
.ya4_c01040{bottom:361.159375pt;}
.y9a_c01040{bottom:378.471675pt;}
.y9b_c01040{bottom:380.877067pt;}
.y90_c01040{bottom:397.672912pt;}
.y91_c01040{bottom:398.644131pt;}
.y92_c01040{bottom:399.090635pt;}
.y93_c01040{bottom:399.717993pt;}
.y94_c01040{bottom:400.144215pt;}
.y95_c01040{bottom:400.910469pt;}
.y96_c01040{bottom:401.132724pt;}
.y97_c01040{bottom:401.417879pt;}
.y98_c01040{bottom:401.795689pt;}
.y99_c01040{bottom:402.604561pt;}
.y87_c01040{bottom:418.792636pt;}
.y88_c01040{bottom:419.478869pt;}
.y89_c01040{bottom:419.766453pt;}
.y8a_c01040{bottom:420.296472pt;}
.y8b_c01040{bottom:420.548353pt;}
.y8c_c01040{bottom:420.823513pt;}
.y8d_c01040{bottom:421.058380pt;}
.y8e_c01040{bottom:421.638872pt;}
.y8f_c01040{bottom:421.831127pt;}
.y7d_c01040{bottom:438.714847pt;}
.y7e_c01040{bottom:439.317111pt;}
.y7f_c01040{bottom:439.614003pt;}
.y80_c01040{bottom:439.907593pt;}
.y81_c01040{bottom:440.094369pt;}
.y82_c01040{bottom:440.611240pt;}
.y83_c01040{bottom:441.020241pt;}
.y84_c01040{bottom:441.254307pt;}
.y85_c01040{bottom:441.451633pt;}
.y86_c01040{bottom:441.827799pt;}
.y76_c01040{bottom:458.158919pt;}
.y77_c01040{bottom:459.113375pt;}
.y78_c01040{bottom:459.628763pt;}
.y79_c01040{bottom:459.945873pt;}
.y7a_c01040{bottom:460.875956pt;}
.y7b_c01040{bottom:461.671307pt;}
.y7c_c01040{bottom:462.491780pt;}
.y71_c01040{bottom:477.839576pt;}
.y72_c01040{bottom:479.252419pt;}
.y73_c01040{bottom:480.312949pt;}
.y74_c01040{bottom:481.526459pt;}
.y75_c01040{bottom:481.751777pt;}
.y65_c01040{bottom:498.479144pt;}
.y66_c01040{bottom:499.193951pt;}
.y67_c01040{bottom:499.532416pt;}
.y68_c01040{bottom:499.681257pt;}
.y69_c01040{bottom:499.938113pt;}
.y6a_c01040{bottom:500.177453pt;}
.y6b_c01040{bottom:500.508451pt;}
.y6c_c01040{bottom:500.831937pt;}
.y6d_c01040{bottom:500.944397pt;}
.y6e_c01040{bottom:501.115668pt;}
.y6f_c01040{bottom:501.364191pt;}
.y70_c01040{bottom:501.708405pt;}
.y59_c01040{bottom:518.639935pt;}
.y5a_c01040{bottom:518.775176pt;}
.y5b_c01040{bottom:519.333375pt;}
.y5c_c01040{bottom:519.532372pt;}
.y5d_c01040{bottom:519.791136pt;}
.y5e_c01040{bottom:520.028868pt;}
.y5f_c01040{bottom:520.614948pt;}
.y60_c01040{bottom:521.143007pt;}
.y61_c01040{bottom:521.407021pt;}
.y62_c01040{bottom:521.758185pt;}
.y63_c01040{bottom:522.006243pt;}
.y64_c01040{bottom:522.195956pt;}
.y53_c01040{bottom:538.801333pt;}
.y54_c01040{bottom:539.688373pt;}
.y55_c01040{bottom:540.839487pt;}
.y56_c01040{bottom:541.203924pt;}
.y57_c01040{bottom:541.871829pt;}
.y58_c01040{bottom:542.584791pt;}
.y49_c01040{bottom:558.720000pt;}
.y4a_c01040{bottom:559.372000pt;}
.y4b_c01040{bottom:559.914667pt;}
.y4c_c01040{bottom:560.310667pt;}
.y4d_c01040{bottom:560.709333pt;}
.y4e_c01040{bottom:560.830667pt;}
.y4f_c01040{bottom:561.118667pt;}
.y50_c01040{bottom:561.624000pt;}
.y51_c01040{bottom:561.830667pt;}
.y52_c01040{bottom:562.361333pt;}
.y48_c01040{bottom:581.088000pt;}
.y3f_c01040{bottom:601.040747pt;}
.y40_c01040{bottom:601.040789pt;}
.y3d_c01040{bottom:601.041035pt;}
.y3e_c01040{bottom:601.041184pt;}
.y41_c01040{bottom:601.041376pt;}
.y46_c01040{bottom:601.041440pt;}
.y45_c01040{bottom:601.041493pt;}
.y43_c01040{bottom:601.041621pt;}
.y44_c01040{bottom:601.041664pt;}
.y47_c01040{bottom:601.041867pt;}
.y42_c01040{bottom:601.042005pt;}
.y36_c01040{bottom:619.681333pt;}
.y37_c01040{bottom:620.214848pt;}
.y38_c01040{bottom:620.756256pt;}
.y39_c01040{bottom:621.013547pt;}
.y3a_c01040{bottom:621.385995pt;}
.y3b_c01040{bottom:621.549205pt;}
.y3c_c01040{bottom:621.822048pt;}
.y2d_c01040{bottom:638.664525pt;}
.y2e_c01040{bottom:639.303788pt;}
.y2f_c01040{bottom:639.677859pt;}
.y30_c01040{bottom:639.818327pt;}
.y31_c01040{bottom:640.107876pt;}
.y32_c01040{bottom:640.333985pt;}
.y33_c01040{bottom:640.524352pt;}
.y34_c01040{bottom:640.747316pt;}
.y35_c01040{bottom:641.235360pt;}
.y25_c01040{bottom:658.320000pt;}
.y26_c01040{bottom:658.835713pt;}
.y27_c01040{bottom:659.112979pt;}
.y28_c01040{bottom:659.495813pt;}
.y29_c01040{bottom:659.667192pt;}
.y2a_c01040{bottom:659.850527pt;}
.y2b_c01040{bottom:660.191604pt;}
.y2c_c01040{bottom:660.767844pt;}
.y1b_c01040{bottom:678.241333pt;}
.y1c_c01040{bottom:679.014413pt;}
.y1d_c01040{bottom:679.179960pt;}
.y1e_c01040{bottom:679.496480pt;}
.y1f_c01040{bottom:679.715680pt;}
.y20_c01040{bottom:680.466560pt;}
.y21_c01040{bottom:680.790187pt;}
.y22_c01040{bottom:681.054600pt;}
.y23_c01040{bottom:681.414840pt;}
.y24_c01040{bottom:681.635773pt;}
.y11_c01040{bottom:698.880000pt;}
.y12_c01040{bottom:699.449632pt;}
.y13_c01040{bottom:699.642683pt;}
.y14_c01040{bottom:699.926817pt;}
.y15_c01040{bottom:700.403965pt;}
.y16_c01040{bottom:700.538393pt;}
.y17_c01040{bottom:700.778661pt;}
.y18_c01040{bottom:701.149932pt;}
.y19_c01040{bottom:701.329627pt;}
.y1a_c01040{bottom:701.512849pt;}
.y7_c01040{bottom:720.001333pt;}
.y8_c01040{bottom:720.289489pt;}
.y9_c01040{bottom:720.424012pt;}
.ya_c01040{bottom:720.927269pt;}
.yb_c01040{bottom:721.075711pt;}
.yc_c01040{bottom:721.452805pt;}
.yd_c01040{bottom:721.846576pt;}
.ye_c01040{bottom:722.226736pt;}
.yf_c01040{bottom:722.471640pt;}
.y10_c01040{bottom:723.029193pt;}
.y4_c01040{bottom:760.834160pt;}
.y5_c01040{bottom:760.834667pt;}
.y3_c01040{bottom:760.834720pt;}
.y2_c01040{bottom:760.835347pt;}
.y6_c01040{bottom:781.796000pt;}
.y1_c01040{bottom:794.645333pt;}
.h14_c01040{height:56.936778pt;}
.h7_c01040{height:57.869560pt;}
.h13_c01040{height:59.736947pt;}
.hc_c01040{height:60.666667pt;}
.hb_c01040{height:60.668608pt;}
.h10_c01040{height:60.670337pt;}
.h9_c01040{height:61.601509pt;}
.h4_c01040{height:62.533333pt;}
.ha_c01040{height:62.535334pt;}
.h16_c01040{height:62.537116pt;}
.h6_c01040{height:63.468222pt;}
.hf_c01040{height:63.470506pt;}
.h12_c01040{height:64.403896pt;}
.hd_c01040{height:65.333333pt;}
.h8_c01040{height:65.334934pt;}
.h5_c01040{height:65.337286pt;}
.h19_c01040{height:66.268787pt;}
.h17_c01040{height:66.270676pt;}
.he_c01040{height:67.204065pt;}
.h18_c01040{height:68.135514pt;}
.h11_c01040{height:81.204912pt;}
.h3_c01040{height:82.137440pt;}
.h15_c01040{height:86.805251pt;}
.h2_c01040{height:200.676700pt;}
.h1_c01040{height:893.333333pt;}
.h0_c01040{height:893.466667pt;}
.w0_c01040{width:635.733333pt;}
.w1_c01040{width:636.000000pt;}
.x0_c01040{left:0.000000pt;}
.x6_c01040{left:49.200000pt;}
.x1_c01040{left:50.441333pt;}
.x6c_c01040{left:51.364037pt;}
.x57_c01040{left:52.757579pt;}
.x19_c01040{left:54.093333pt;}
.x79_c01040{left:56.399936pt;}
.x22_c01040{left:57.688000pt;}
.x72_c01040{left:60.097823pt;}
.x60_c01040{left:61.868119pt;}
.x2f_c01040{left:63.020000pt;}
.x33_c01040{left:88.800096pt;}
.x7_c01040{left:105.756000pt;}
.x4b_c01040{left:113.320529pt;}
.x40_c01040{left:123.465333pt;}
.x28_c01040{left:130.175325pt;}
.x8_c01040{left:131.952000pt;}
.x9_c01040{left:144.181333pt;}
.x1a_c01040{left:147.956000pt;}
.x3b_c01040{left:149.280000pt;}
.x34_c01040{left:153.601579pt;}
.x4c_c01040{left:154.935196pt;}
.x11_c01040{left:159.178667pt;}
.x58_c01040{left:161.437855pt;}
.x74_c01040{left:164.496915pt;}
.x6d_c01040{left:165.481212pt;}
.x51_c01040{left:167.639552pt;}
.x23_c01040{left:170.970667pt;}
.x5b_c01040{left:172.959083pt;}
.x29_c01040{left:176.946999pt;}
.x2_c01040{left:178.326853pt;}
.x1b_c01040{left:179.608000pt;}
.x41_c01040{left:183.717333pt;}
.x3c_c01040{left:185.280000pt;}
.xa_c01040{left:189.932000pt;}
.x35_c01040{left:193.442795pt;}
.x2a_c01040{left:194.537544pt;}
.x30_c01040{left:197.385333pt;}
.x12_c01040{left:199.769333pt;}
.x1c_c01040{left:201.528000pt;}
.xb_c01040{left:203.426667pt;}
.x36_c01040{left:211.683957pt;}
.x52_c01040{left:212.764549pt;}
.x65_c01040{left:220.281080pt;}
.x24_c01040{left:225.661333pt;}
.x42_c01040{left:227.666667pt;}
.x31_c01040{left:229.546667pt;}
.x2b_c01040{left:230.758625pt;}
.x49_c01040{left:234.624000pt;}
.x75_c01040{left:236.258735pt;}
.xc_c01040{left:237.708000pt;}
.x53_c01040{left:239.371803pt;}
.x59_c01040{left:243.060065pt;}
.x25_c01040{left:250.144000pt;}
.x66_c01040{left:255.755351pt;}
.x2c_c01040{left:259.059763pt;}
.x37_c01040{left:263.765952pt;}
.x61_c01040{left:265.041029pt;}
.x13_c01040{left:267.933333pt;}
.x6b_c01040{left:269.500927pt;}
.x43_c01040{left:272.034667pt;}
.xd_c01040{left:273.505333pt;}
.x6e_c01040{left:275.411632pt;}
.x1d_c01040{left:276.616000pt;}
.x4d_c01040{left:277.832529pt;}
.x2d_c01040{left:282.826261pt;}
.x44_c01040{left:285.504000pt;}
.x14_c01040{left:287.137333pt;}
.x62_c01040{left:288.574627pt;}
.x5d_c01040{left:291.953313pt;}
.x32_c01040{left:296.504000pt;}
.x4e_c01040{left:301.833863pt;}
.xe_c01040{left:308.065333pt;}
.x1e_c01040{left:308.978667pt;}
.x2e_c01040{left:310.678065pt;}
.x54_c01040{left:312.084068pt;}
.x45_c01040{left:317.441333pt;}
.x67_c01040{left:319.595980pt;}
.x15_c01040{left:321.461333pt;}
.x76_c01040{left:322.903867pt;}
.x26_c01040{left:325.060000pt;}
.x4a_c01040{left:328.473333pt;}
.xf_c01040{left:330.329333pt;}
.x4f_c01040{left:333.757863pt;}
.x1f_c01040{left:335.420000pt;}
.x38_c01040{left:336.727957pt;}
.x68_c01040{left:338.103775pt;}
.x55_c01040{left:343.575424pt;}
.x71_c01040{left:344.724793pt;}
.x63_c01040{left:346.680605pt;}
.x6f_c01040{left:352.692000pt;}
.x5a_c01040{left:353.738964pt;}
.x50_c01040{left:356.308529pt;}
.x69_c01040{left:361.844844pt;}
.x64_c01040{left:365.855477pt;}
.x3d_c01040{left:366.960000pt;}
.x3_c01040{left:368.416533pt;}
.x20_c01040{left:371.444000pt;}
.x5e_c01040{left:372.355968pt;}
.x46_c01040{left:373.560000pt;}
.x16_c01040{left:374.500000pt;}
.x10_c01040{left:381.016000pt;}
.x39_c01040{left:385.209728pt;}
.x7a_c01040{left:391.209365pt;}
.x3e_c01040{left:392.160000pt;}
.x21_c01040{left:393.537333pt;}
.x70_c01040{left:394.427576pt;}
.x47_c01040{left:396.592000pt;}
.x17_c01040{left:400.170667pt;}
.x78_c01040{left:405.704000pt;}
.x27_c01040{left:407.380000pt;}
.x56_c01040{left:409.340861pt;}
.x5c_c01040{left:411.533791pt;}
.x3a_c01040{left:418.091829pt;}
.x3f_c01040{left:422.640000pt;}
.x18_c01040{left:426.345333pt;}
.x4_c01040{left:434.900520pt;}
.x77_c01040{left:437.634245pt;}
.x5f_c01040{left:444.130344pt;}
.x48_c01040{left:455.594667pt;}
.x6a_c01040{left:460.633077pt;}
.x73_c01040{left:489.570448pt;}
.x5_c01040{left:490.823440pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.000000;font-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_c01041{transform:matrix(0.003620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003620,0.000000,0.000000,0.250000,0,0);}
.m13_c01041{transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007275,0.000000,0.000000,0.250000,0,0);}
.m9_c01041{transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010560,0.000084,-0.002000,0.249992,0,0);}
.m3_c01041{transform:matrix(0.010700,0.000086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010700,0.000086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010700,0.000086,-0.002000,0.249992,0,0);}
.m7f_c01041{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.m8_c01041{transform:matrix(0.012040,0.000096,-0.002000,0.249992,0,0);-ms-transform:matrix(0.012040,0.000096,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.012040,0.000096,-0.002000,0.249992,0,0);}
.mca_c01041{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m7b_c01041{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);}
.m3f_c01041{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);}
.md6_c01041{transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015365,0.000000,0.000000,0.250000,0,0);}
.m12_c01041{transform:matrix(0.019585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019585,0.000000,0.000000,0.250000,0,0);}
.m27_c01041{transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034635,0.000000,0.000000,0.250000,0,0);}
.m4c_c01041{transform:matrix(0.086455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086455,0.000000,0.000000,0.250000,0,0);}
.m11_c01041{transform:matrix(0.092920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092920,0.000000,0.000000,0.250000,0,0);}
.m15_c01041{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);}
.me2_c01041{transform:matrix(0.116960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116960,0.000000,0.000000,0.250000,0,0);}
.mdd_c01041{transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136855,0.000000,0.000000,0.250000,0,0);}
.ma_c01041{transform:matrix(0.139336,0.001115,-0.002000,0.249992,0,0);-ms-transform:matrix(0.139336,0.001115,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.139336,0.001115,-0.002000,0.249992,0,0);}
.m74_c01041{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);}
.m80_c01041{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_c01041{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);}
.ma8_c01041{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);}
.ma9_c01041{transform:matrix(0.151435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151435,0.000000,0.000000,0.250000,0,0);}
.m69_c01041{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m64_c01041{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);}
.md9_c01041{transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153405,0.000000,0.000000,0.250000,0,0);}
.m43_c01041{transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153970,0.000000,0.000000,0.250000,0,0);}
.md1_c01041{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);}
.m8a_c01041{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);}
.m26_c01041{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);}
.m72_c01041{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);}
.m14_c01041{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);}
.m86_c01041{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);}
.mdb_c01041{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);}
.m67_c01041{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);}
.m59_c01041{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);}
.mde_c01041{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);}
.m45_c01041{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);}
.m18_c01041{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);}
.mb8_c01041{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);}
.m37_c01041{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.m4e_c01041{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);}
.m83_c01041{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);}
.md0_c01041{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);}
.m99_c01041{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);}
.mda_c01041{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);}
.mb9_c01041{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);}
.m91_c01041{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);}
.m95_c01041{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);}
.mdc_c01041{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);}
.m75_c01041{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.mcb_c01041{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);}
.m89_c01041{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);}
.m6a_c01041{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);}
.mb6_c01041{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);}
.maa_c01041{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);}
.m9e_c01041{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);}
.m2c_c01041{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);}
.m29_c01041{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);}
.m76_c01041{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);}
.mba_c01041{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);}
.m73_c01041{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);}
.m68_c01041{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);}
.m44_c01041{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);}
.m36_c01041{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);}
.ma2_c01041{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);}
.m19_c01041{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);}
.m4b_c01041{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);}
.m60_c01041{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);}
.m9a_c01041{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);}
.m9c_c01041{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);}
.mcc_c01041{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);}
.mcd_c01041{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);}
.mc4_c01041{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);}
.mb7_c01041{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);}
.mdf_c01041{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);}
.m49_c01041{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);}
.md2_c01041{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);}
.m85_c01041{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);}
.mc5_c01041{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.ma1_c01041{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m3b_c01041{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);}
.m87_c01041{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);}
.m1e_c01041{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);}
.m66_c01041{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);}
.m92_c01041{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);}
.m88_c01041{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);}
.mbf_c01041{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);}
.ma6_c01041{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);}
.m3d_c01041{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);}
.ma0_c01041{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);}
.mc2_c01041{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);}
.m6b_c01041{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);}
.m1a_c01041{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);}
.m62_c01041{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);}
.m23_c01041{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);}
.mc0_c01041{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);}
.mbb_c01041{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);}
.mc6_c01041{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.m9f_c01041{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);}
.m6_c01041{transform:matrix(0.199129,0.001593,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199129,0.001593,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199129,0.001593,-0.002000,0.249992,0,0);}
.mb4_c01041{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);}
.mce_c01041{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);}
.ma5_c01041{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);}
.mac_c01041{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);}
.m71_c01041{transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202385,0.000000,0.000000,0.250000,0,0);}
.m35_c01041{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);}
.m6f_c01041{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);}
.m93_c01041{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);}
.m65_c01041{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);}
.mcf_c01041{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_c01041{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);}
.mc3_c01041{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);}
.m90_c01041{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);}
.m3a_c01041{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);}
.m5f_c01041{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);}
.m53_c01041{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);}
.m7d_c01041{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);}
.md8_c01041{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);}
.m77_c01041{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);}
.mc7_c01041{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);}
.m1f_c01041{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);}
.m25_c01041{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);}
.m9d_c01041{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);}
.m46_c01041{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);}
.m2b_c01041{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);}
.m9b_c01041{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.m7a_c01041{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);}
.mc1_c01041{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);}
.m8f_c01041{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);}
.m94_c01041{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);}
.m50_c01041{transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);}
.m8e_c01041{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);}
.m38_c01041{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);}
.m84_c01041{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m3c_c01041{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);}
.m54_c01041{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m21_c01041{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m22_c01041{transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238435,0.000000,0.000000,0.250000,0,0);}
.m5e_c01041{transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);}
.ma7_c01041{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.mbc_c01041{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m96_c01041{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m51_c01041{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m55_c01041{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);}
.m34_c01041{transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);}
.md_c01041{transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);}
.m1c_c01041{transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268325,0.000000,0.000000,0.250000,0,0);}
.m6c_c01041{transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);}
.m47_c01041{transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276310,0.000000,0.000000,0.250000,0,0);}
.m3e_c01041{transform:matrix(0.276370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276370,0.000000,0.000000,0.250000,0,0);}
.md7_c01041{transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);}
.ma4_c01041{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.mc8_c01041{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m1b_c01041{transform:matrix(0.299570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299570,0.000000,0.000000,0.250000,0,0);}
.m17_c01041{transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01041{transform:matrix(0.300695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300695,0.000000,0.000000,0.250000,0,0);}
.m78_c01041{transform:matrix(0.306735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306735,0.000000,0.000000,0.250000,0,0);}
.me4_c01041{transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312010,0.000000,0.000000,0.250000,0,0);}
.m24_c01041{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);}
.m6e_c01041{transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314105,0.000000,0.000000,0.250000,0,0);}
.m16_c01041{transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315145,0.000000,0.000000,0.250000,0,0);}
.m5b_c01041{transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318355,0.000000,0.000000,0.250000,0,0);}
.m5d_c01041{transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326345,0.000000,0.000000,0.250000,0,0);}
.m5c_c01041{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01041{transform:matrix(0.332105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332105,0.000000,0.000000,0.250000,0,0);}
.m10_c01041{transform:matrix(0.333710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333710,0.000000,0.000000,0.250000,0,0);}
.me3_c01041{transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333920,0.000000,0.000000,0.250000,0,0);}
.m5_c01041{transform:matrix(0.336594,0.002693,-0.002000,0.249992,0,0);-ms-transform:matrix(0.336594,0.002693,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.336594,0.002693,-0.002000,0.249992,0,0);}
.me7_c01041{transform:matrix(0.343626,0.004467,-0.003250,0.249979,0,0);-ms-transform:matrix(0.343626,0.004467,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.343626,0.004467,-0.003250,0.249979,0,0);}
.m20_c01041{transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347205,0.000000,0.000000,0.250000,0,0);}
.m42_c01041{transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347610,0.000000,0.000000,0.250000,0,0);}
.m7c_c01041{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);}
.m82_c01041{transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353910,0.000000,0.000000,0.250000,0,0);}
.m33_c01041{transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);}
.m5a_c01041{transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);}
.me8_c01041{transform:matrix(0.360320,0.004684,-0.003250,0.249979,0,0);-ms-transform:matrix(0.360320,0.004684,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.360320,0.004684,-0.003250,0.249979,0,0);}
.m7e_c01041{transform:matrix(0.362970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362970,0.000000,0.000000,0.250000,0,0);}
.mbd_c01041{transform:matrix(0.368320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368320,0.000000,0.000000,0.250000,0,0);}
.me5_c01041{transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368395,0.000000,0.000000,0.250000,0,0);}
.m8d_c01041{transform:matrix(0.372680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372680,0.000000,0.000000,0.250000,0,0);}
.mb_c01041{transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375185,0.000000,0.000000,0.250000,0,0);}
.m32_c01041{transform:matrix(0.375340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375340,0.000000,0.000000,0.250000,0,0);}
.me_c01041{transform:matrix(0.380615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380615,0.000000,0.000000,0.250000,0,0);}
.m4d_c01041{transform:matrix(0.388120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388120,0.000000,0.000000,0.250000,0,0);}
.m39_c01041{transform:matrix(0.391310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391310,0.000000,0.000000,0.250000,0,0);}
.m2e_c01041{transform:matrix(0.393360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393360,0.000000,0.000000,0.250000,0,0);}
.m52_c01041{transform:matrix(0.398355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398355,0.000000,0.000000,0.250000,0,0);}
.md3_c01041{transform:matrix(0.413085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413085,0.000000,0.000000,0.250000,0,0);}
.mea_c01041{transform:matrix(0.415680,0.005404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.415680,0.005404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.415680,0.005404,-0.003250,0.249979,0,0);}
.m0_c01041{transform:matrix(0.418927,0.002514,-0.001500,0.249996,0,0);-ms-transform:matrix(0.418927,0.002514,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.418927,0.002514,-0.001500,0.249996,0,0);}
.mb3_c01041{transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422400,0.000000,0.000000,0.250000,0,0);}
.mb1_c01041{transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424490,0.000000,0.000000,0.250000,0,0);}
.mae_c01041{transform:matrix(0.431370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431370,0.000000,0.000000,0.250000,0,0);}
.m1_c01041{transform:matrix(0.440597,0.002644,-0.001500,0.249996,0,0);-ms-transform:matrix(0.440597,0.002644,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.440597,0.002644,-0.001500,0.249996,0,0);}
.m1d_c01041{transform:matrix(0.446900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446900,0.000000,0.000000,0.250000,0,0);}
.md5_c01041{transform:matrix(0.447355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447355,0.000000,0.000000,0.250000,0,0);}
.m6d_c01041{transform:matrix(0.453600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453600,0.000000,0.000000,0.250000,0,0);}
.m56_c01041{transform:matrix(0.453695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453695,0.000000,0.000000,0.250000,0,0);}
.mb2_c01041{transform:matrix(0.455210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455210,0.000000,0.000000,0.250000,0,0);}
.mc_c01041{transform:matrix(0.461710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461710,0.000000,0.000000,0.250000,0,0);}
.mb0_c01041{transform:matrix(0.466455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466455,0.000000,0.000000,0.250000,0,0);}
.me6_c01041{transform:matrix(0.475810,0.006186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475810,0.006186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475810,0.006186,-0.003250,0.249979,0,0);}
.mc9_c01041{transform:matrix(0.484330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484330,0.000000,0.000000,0.250000,0,0);}
.m63_c01041{transform:matrix(0.488475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488475,0.000000,0.000000,0.250000,0,0);}
.m98_c01041{transform:matrix(0.496640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496640,0.000000,0.000000,0.250000,0,0);}
.me1_c01041{transform:matrix(0.499540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499540,0.000000,0.000000,0.250000,0,0);}
.m8c_c01041{transform:matrix(0.503780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503780,0.000000,0.000000,0.250000,0,0);}
.ma3_c01041{transform:matrix(0.520065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520065,0.000000,0.000000,0.250000,0,0);}
.m30_c01041{transform:matrix(0.522730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522730,0.000000,0.000000,0.250000,0,0);}
.m97_c01041{transform:matrix(0.532835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532835,0.000000,0.000000,0.250000,0,0);}
.m40_c01041{transform:matrix(0.533105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533105,0.000000,0.000000,0.250000,0,0);}
.m4a_c01041{transform:matrix(0.534290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534290,0.000000,0.000000,0.250000,0,0);}
.m4_c01041{transform:matrix(0.535413,0.004283,-0.002000,0.249992,0,0);-ms-transform:matrix(0.535413,0.004283,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.535413,0.004283,-0.002000,0.249992,0,0);}
.maf_c01041{transform:matrix(0.544675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544675,0.000000,0.000000,0.250000,0,0);}
.m4f_c01041{transform:matrix(0.548120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548120,0.000000,0.000000,0.250000,0,0);}
.mab_c01041{transform:matrix(0.553610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553610,0.000000,0.000000,0.250000,0,0);}
.m31_c01041{transform:matrix(0.566550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566550,0.000000,0.000000,0.250000,0,0);}
.m28_c01041{transform:matrix(0.569145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569145,0.000000,0.000000,0.250000,0,0);}
.m2_c01041{transform:matrix(0.608136,0.004865,-0.002000,0.249992,0,0);-ms-transform:matrix(0.608136,0.004865,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.608136,0.004865,-0.002000,0.249992,0,0);}
.m79_c01041{transform:matrix(0.623790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623790,0.000000,0.000000,0.250000,0,0);}
.m41_c01041{transform:matrix(0.673925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673925,0.000000,0.000000,0.250000,0,0);}
.m57_c01041{transform:matrix(0.710585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710585,0.000000,0.000000,0.250000,0,0);}
.m81_c01041{transform:matrix(0.724160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724160,0.000000,0.000000,0.250000,0,0);}
.me0_c01041{transform:matrix(0.733635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733635,0.000000,0.000000,0.250000,0,0);}
.m61_c01041{transform:matrix(0.739985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739985,0.000000,0.000000,0.250000,0,0);}
.me9_c01041{transform:matrix(0.748347,0.009729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.748347,0.009729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.748347,0.009729,-0.003250,0.249979,0,0);}
.m70_c01041{transform:matrix(0.785550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785550,0.000000,0.000000,0.250000,0,0);}
.md4_c01041{transform:matrix(0.794165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794165,0.000000,0.000000,0.250000,0,0);}
.m2a_c01041{transform:matrix(0.842455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842455,0.000000,0.000000,0.250000,0,0);}
.mbe_c01041{transform:matrix(0.859335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.859335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.859335,0.000000,0.000000,0.250000,0,0);}
.m8b_c01041{transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870510,0.000000,0.000000,0.250000,0,0);}
.m7_c01041{transform:matrix(0.872122,0.006977,-0.002000,0.249992,0,0);-ms-transform:matrix(0.872122,0.006977,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.872122,0.006977,-0.002000,0.249992,0,0);}
.m48_c01041{transform:matrix(0.903685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.903685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.903685,0.000000,0.000000,0.250000,0,0);}
.m58_c01041{transform:matrix(2.531815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.531815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.531815,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls0_c01041{letter-spacing:0.000000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:0.000000px;}
.fc0_c01041{color:transparent;}
.fse_c01041{font-size:42.000000px;}
.fs7_c01041{font-size:64.050000px;}
.fs11_c01041{font-size:68.250000px;}
.fsf_c01041{font-size:69.300000px;}
.fs12_c01041{font-size:70.350000px;}
.fsd_c01041{font-size:71.400000px;}
.fs6_c01041{font-size:72.450000px;}
.fs10_c01041{font-size:74.550000px;}
.fsb_c01041{font-size:75.600000px;}
.fs9_c01041{font-size:77.700000px;}
.fs1_c01041{font-size:79.802554px;}
.fs2_c01041{font-size:80.852587px;}
.fsc_c01041{font-size:84.000000px;}
.fs8_c01041{font-size:88.200000px;}
.fs3_c01041{font-size:89.250000px;}
.fs13_c01041{font-size:98.700000px;}
.fsa_c01041{font-size:101.850000px;}
.fs5_c01041{font-size:105.000000px;}
.fs4_c01041{font-size:140.700000px;}
.fs14_c01041{font-size:151.212776px;}
.fs0_c01041{font-size:239.404309px;}
.y0_c01041{bottom:0.000000px;}
.yb9_c01041{bottom:85.786722px;}
.yb8_c01041{bottom:88.166112px;}
.yb7_c01041{bottom:89.536903px;}
.yb6_c01041{bottom:91.116813px;}
.yb5_c01041{bottom:92.896500px;}
.yb4_c01041{bottom:115.674000px;}
.yb3_c01041{bottom:116.301000px;}
.yb2_c01041{bottom:118.030500px;}
.yb1_c01041{bottom:119.991000px;}
.yb0_c01041{bottom:122.316000px;}
.yaf_c01041{bottom:155.145000px;}
.yae_c01041{bottom:156.492000px;}
.yad_c01041{bottom:156.708000px;}
.yac_c01041{bottom:156.952500px;}
.yab_c01041{bottom:157.144500px;}
.yaa_c01041{bottom:157.413000px;}
.ya9_c01041{bottom:157.977000px;}
.ya8_c01041{bottom:158.373000px;}
.ya7_c01041{bottom:158.566500px;}
.ya6_c01041{bottom:158.865000px;}
.ya5_c01041{bottom:177.903000px;}
.ya4_c01041{bottom:180.145500px;}
.ya3_c01041{bottom:181.984500px;}
.ya2_c01041{bottom:184.686000px;}
.ya1_c01041{bottom:201.105000px;}
.ya0_c01041{bottom:203.043000px;}
.y9f_c01041{bottom:203.397000px;}
.y9e_c01041{bottom:203.593500px;}
.y9d_c01041{bottom:203.751000px;}
.y9c_c01041{bottom:204.136500px;}
.y9b_c01041{bottom:204.355500px;}
.y9a_c01041{bottom:205.006500px;}
.y99_c01041{bottom:205.291500px;}
.y98_c01041{bottom:205.552500px;}
.y97_c01041{bottom:206.011500px;}
.y96_c01041{bottom:224.446500px;}
.y95_c01041{bottom:225.664500px;}
.y94_c01041{bottom:225.960000px;}
.y93_c01041{bottom:226.114500px;}
.y92_c01041{bottom:226.579500px;}
.y91_c01041{bottom:227.137500px;}
.y90_c01041{bottom:227.242500px;}
.y8f_c01041{bottom:227.782500px;}
.y8e_c01041{bottom:227.914500px;}
.y8d_c01041{bottom:228.243000px;}
.y8c_c01041{bottom:228.961500px;}
.y8b_c01041{bottom:245.686500px;}
.y8a_c01041{bottom:246.906000px;}
.y89_c01041{bottom:247.363500px;}
.y88_c01041{bottom:247.696500px;}
.y87_c01041{bottom:248.224500px;}
.y86_c01041{bottom:248.464500px;}
.y85_c01041{bottom:248.907000px;}
.y84_c01041{bottom:249.555000px;}
.y83_c01041{bottom:250.345500px;}
.y82_c01041{bottom:250.815000px;}
.y81_c01041{bottom:251.641500px;}
.y80_c01041{bottom:269.367000px;}
.y7f_c01041{bottom:270.349500px;}
.y7e_c01041{bottom:271.258500px;}
.y7d_c01041{bottom:272.698500px;}
.y7c_c01041{bottom:292.878000px;}
.y7b_c01041{bottom:293.991000px;}
.y7a_c01041{bottom:294.189000px;}
.y79_c01041{bottom:294.631500px;}
.y78_c01041{bottom:294.855000px;}
.y77_c01041{bottom:295.219500px;}
.y76_c01041{bottom:295.423500px;}
.y75_c01041{bottom:295.569000px;}
.y74_c01041{bottom:295.948500px;}
.y73_c01041{bottom:296.136000px;}
.y72_c01041{bottom:296.727000px;}
.y71_c01041{bottom:315.310500px;}
.y70_c01041{bottom:315.789000px;}
.y6f_c01041{bottom:316.384500px;}
.y6e_c01041{bottom:316.599000px;}
.y6d_c01041{bottom:317.040000px;}
.y6c_c01041{bottom:317.191500px;}
.y6b_c01041{bottom:317.292000px;}
.y6a_c01041{bottom:317.601000px;}
.y69_c01041{bottom:317.875500px;}
.y68_c01041{bottom:318.334500px;}
.y67_c01041{bottom:318.570000px;}
.y66_c01041{bottom:319.137000px;}
.y65_c01041{bottom:338.674500px;}
.y64_c01041{bottom:339.454500px;}
.y63_c01041{bottom:339.609000px;}
.y62_c01041{bottom:339.843000px;}
.y61_c01041{bottom:340.192500px;}
.y60_c01041{bottom:340.372500px;}
.y5f_c01041{bottom:340.593000px;}
.y5e_c01041{bottom:340.839000px;}
.y5d_c01041{bottom:341.079000px;}
.y5c_c01041{bottom:341.283000px;}
.y5b_c01041{bottom:341.548500px;}
.y5a_c01041{bottom:341.997000px;}
.y59_c01041{bottom:342.087000px;}
.y58_c01041{bottom:360.624000px;}
.y57_c01041{bottom:361.594500px;}
.y56_c01041{bottom:361.729500px;}
.y55_c01041{bottom:361.870500px;}
.y54_c01041{bottom:362.196000px;}
.y53_c01041{bottom:362.356500px;}
.y52_c01041{bottom:362.709000px;}
.y51_c01041{bottom:362.887500px;}
.y50_c01041{bottom:363.133500px;}
.y4f_c01041{bottom:363.546000px;}
.y4e_c01041{bottom:363.955500px;}
.y4d_c01041{bottom:385.431000px;}
.y4c_c01041{bottom:407.901000px;}
.y4b_c01041{bottom:428.884500px;}
.y4a_c01041{bottom:430.800000px;}
.y49_c01041{bottom:432.267000px;}
.y48_c01041{bottom:452.964000px;}
.y47_c01041{bottom:474.787500px;}
.y45_c01041{bottom:476.185500px;}
.y46_c01041{bottom:476.187000px;}
.y44_c01041{bottom:476.560500px;}
.y43_c01041{bottom:477.403500px;}
.y42_c01041{bottom:477.750000px;}
.y41_c01041{bottom:478.291500px;}
.y40_c01041{bottom:478.618500px;}
.y3f_c01041{bottom:478.794000px;}
.y3e_c01041{bottom:480.184500px;}
.y3d_c01041{bottom:481.842000px;}
.y3c_c01041{bottom:496.348500px;}
.y3b_c01041{bottom:497.836500px;}
.y3a_c01041{bottom:498.027000px;}
.y39_c01041{bottom:498.145500px;}
.y38_c01041{bottom:498.294000px;}
.y37_c01041{bottom:498.412500px;}
.y36_c01041{bottom:498.916500px;}
.y35_c01041{bottom:499.770000px;}
.y34_c01041{bottom:519.222000px;}
.y33_c01041{bottom:519.379500px;}
.y32_c01041{bottom:520.131000px;}
.y31_c01041{bottom:521.389500px;}
.y30_c01041{bottom:521.880000px;}
.y2f_c01041{bottom:522.184500px;}
.y2e_c01041{bottom:522.720000px;}
.y26_c01041{bottom:541.621500px;}
.y27_c01041{bottom:542.335500px;}
.y28_c01041{bottom:543.663000px;}
.y29_c01041{bottom:544.393500px;}
.y2a_c01041{bottom:544.840500px;}
.y2b_c01041{bottom:545.091000px;}
.y2c_c01041{bottom:545.386500px;}
.y2d_c01041{bottom:546.696000px;}
.y25_c01041{bottom:565.530000px;}
.y24_c01041{bottom:566.467500px;}
.y23_c01041{bottom:567.166500px;}
.y22_c01041{bottom:567.294000px;}
.y21_c01041{bottom:567.460500px;}
.y20_c01041{bottom:568.077000px;}
.y1f_c01041{bottom:568.888500px;}
.y1e_c01041{bottom:589.377000px;}
.y1d_c01041{bottom:611.446500px;}
.y1c_c01041{bottom:612.117000px;}
.y1b_c01041{bottom:613.449000px;}
.y1a_c01041{bottom:614.790000px;}
.y19_c01041{bottom:636.838500px;}
.y18_c01041{bottom:658.528500px;}
.y17_c01041{bottom:680.332500px;}
.y16_c01041{bottom:704.131500px;}
.y15_c01041{bottom:715.017000px;}
.y14_c01041{bottom:720.055500px;}
.y13_c01041{bottom:721.174500px;}
.y12_c01041{bottom:725.220000px;}
.y11_c01041{bottom:739.423500px;}
.y10_c01041{bottom:739.918500px;}
.yf_c01041{bottom:740.830500px;}
.ye_c01041{bottom:741.951000px;}
.yd_c01041{bottom:742.770000px;}
.yc_c01041{bottom:775.440000px;}
.y9_c01041{bottom:778.348332px;}
.ya_c01041{bottom:778.348440px;}
.yb_c01041{bottom:778.348584px;}
.y8_c01041{bottom:788.807544px;}
.y7_c01041{bottom:789.562776px;}
.y6_c01041{bottom:790.567596px;}
.y5_c01041{bottom:791.813976px;}
.y4_c01041{bottom:792.243960px;}
.y3_c01041{bottom:793.263000px;}
.y2_c01041{bottom:899.271591px;}
.y1_c01041{bottom:901.531500px;}
.h10_c01041{height:42.000000px;}
.h9_c01041{height:64.050000px;}
.h13_c01041{height:68.250000px;}
.h11_c01041{height:69.300000px;}
.h14_c01041{height:70.350000px;}
.hf_c01041{height:71.400000px;}
.h8_c01041{height:72.450000px;}
.h12_c01041{height:74.550000px;}
.hd_c01041{height:75.600000px;}
.hb_c01041{height:77.700000px;}
.h3_c01041{height:79.802554px;}
.h4_c01041{height:80.852587px;}
.he_c01041{height:84.000000px;}
.ha_c01041{height:88.200000px;}
.h5_c01041{height:89.250000px;}
.h15_c01041{height:98.700000px;}
.hc_c01041{height:101.850000px;}
.h7_c01041{height:105.000000px;}
.h6_c01041{height:140.700000px;}
.h16_c01041{height:151.212776px;}
.h2_c01041{height:239.404309px;}
.h0_c01041{height:1008.450000px;}
.h1_c01041{height:1008.750000px;}
.w1_c01041{width:700.500000px;}
.w0_c01041{width:700.650000px;}
.x0_c01041{left:0.000000px;}
.x98_c01041{left:68.446500px;}
.x79_c01041{left:69.480000px;}
.x63_c01041{left:70.650000px;}
.x43_c01041{left:71.932500px;}
.x3d_c01041{left:73.254000px;}
.x28_c01041{left:74.356500px;}
.xc_c01041{left:76.188000px;}
.x3_c01041{left:77.445000px;}
.x1_c01041{left:79.185000px;}
.x10_c01041{left:80.673000px;}
.x7d_c01041{left:84.031500px;}
.x47_c01041{left:86.508000px;}
.x2b_c01041{left:89.101500px;}
.x13_c01041{left:92.341500px;}
.x88_c01041{left:129.660000px;}
.x5c_c01041{left:139.777500px;}
.x36_c01041{left:152.821500px;}
.x7e_c01041{left:159.159000px;}
.x64_c01041{left:160.287000px;}
.x3e_c01041{left:162.448500px;}
.x2c_c01041{left:164.431500px;}
.x22_c01041{left:182.791500px;}
.x71_c01041{left:187.285500px;}
.x18_c01041{left:188.461500px;}
.x89_c01041{left:190.234500px;}
.x6b_c01041{left:194.305500px;}
.x90_c01041{left:196.474500px;}
.x84_c01041{left:200.241000px;}
.x7f_c01041{left:201.775500px;}
.x4_c01041{left:204.825000px;}
.x31_c01041{left:209.470500px;}
.xd_c01041{left:212.658000px;}
.x44_c01041{left:214.065000px;}
.x85_c01041{left:216.714000px;}
.x91_c01041{left:220.755000px;}
.x19_c01041{left:223.021500px;}
.x59_c01041{left:224.911500px;}
.x2d_c01041{left:226.261500px;}
.x4f_c01041{left:231.121500px;}
.x65_c01041{left:238.602000px;}
.x72_c01041{left:241.563000px;}
.x54_c01041{left:244.621500px;}
.x5d_c01041{left:249.669000px;}
.x5_c01041{left:258.573000px;}
.x6c_c01041{left:259.950000px;}
.x73_c01041{left:262.351500px;}
.x2e_c01041{left:265.681500px;}
.x92_c01041{left:270.162000px;}
.x80_c01041{left:273.640500px;}
.x1a_c01041{left:277.291500px;}
.x5e_c01041{left:279.376500px;}
.x86_c01041{left:284.215500px;}
.x8a_c01041{left:286.918500px;}
.x2f_c01041{left:290.251500px;}
.x74_c01041{left:291.510000px;}
.x3f_c01041{left:295.015500px;}
.x29_c01041{left:297.733500px;}
.x6d_c01041{left:299.101500px;}
.x37_c01041{left:300.399000px;}
.x23_c01041{left:302.401500px;}
.x14_c01041{left:303.481500px;}
.x11_c01041{left:305.425500px;}
.x7a_c01041{left:309.595500px;}
.x32_c01041{left:312.286500px;}
.x53_c01041{left:316.072500px;}
.x1b_c01041{left:317.521500px;}
.x66_c01041{left:319.605000px;}
.x48_c01041{left:320.898000px;}
.x99_c01041{left:326.877000px;}
.x8b_c01041{left:329.827500px;}
.x81_c01041{left:332.547000px;}
.x49_c01041{left:334.402500px;}
.x5f_c01041{left:338.233500px;}
.x33_c01041{left:340.125000px;}
.x45_c01041{left:342.556500px;}
.x75_c01041{left:343.650000px;}
.x15_c01041{left:345.871500px;}
.x8c_c01041{left:347.379000px;}
.x55_c01041{left:349.111500px;}
.x67_c01041{left:356.325000px;}
.x5a_c01041{left:358.291500px;}
.x4a_c01041{left:359.533500px;}
.x34_c01041{left:361.425000px;}
.x60_c01041{left:364.962000px;}
.x12_c01041{left:367.624500px;}
.x8d_c01041{left:369.279000px;}
.x9_c01041{left:370.990476px;}
.x82_c01041{left:372.733500px;}
.x93_c01041{left:374.155500px;}
.x76_c01041{left:375.480000px;}
.x56_c01041{left:376.921500px;}
.x6e_c01041{left:379.260000px;}
.x38_c01041{left:381.631500px;}
.x1c_c01041{left:383.941500px;}
.x68_c01041{left:386.292000px;}
.x46_c01041{left:394.123500px;}
.x1d_c01041{left:396.091500px;}
.x94_c01041{left:398.146500px;}
.xe_c01041{left:399.498000px;}
.x4b_c01041{left:401.137500px;}
.x8e_c01041{left:408.672000px;}
.x6_c01041{left:414.370500px;}
.x16_c01041{left:418.771500px;}
.x57_c01041{left:422.011500px;}
.x50_c01041{left:424.171500px;}
.x95_c01041{left:426.613500px;}
.x4c_c01041{left:427.800000px;}
.x39_c01041{left:431.353500px;}
.x1e_c01041{left:436.861500px;}
.x77_c01041{left:438.696000px;}
.x51_c01041{left:443.071500px;}
.x69_c01041{left:444.615000px;}
.x8f_c01041{left:448.249500px;}
.x2_c01041{left:455.836500px;}
.x3a_c01041{left:459.123000px;}
.x7b_c01041{left:461.076000px;}
.x61_c01041{left:465.151500px;}
.x78_c01041{left:467.016000px;}
.x6f_c01041{left:472.948500px;}
.x52_c01041{left:474.661500px;}
.x35_c01041{left:477.873000px;}
.x30_c01041{left:480.061500px;}
.x87_c01041{left:481.561500px;}
.x1f_c01041{left:482.761500px;}
.x20_c01041{left:484.111500px;}
.x3b_c01041{left:491.887500px;}
.x5b_c01041{left:493.291500px;}
.x25_c01041{left:499.771500px;}
.x40_c01041{left:504.876000px;}
.x6a_c01041{left:509.142000px;}
.x83_c01041{left:514.476000px;}
.x2a_c01041{left:519.658500px;}
.x4d_c01041{left:521.484000px;}
.x26_c01041{left:528.121500px;}
.x58_c01041{left:536.491500px;}
.x7_c01041{left:539.973000px;}
.xa_c01041{left:542.175432px;}
.xf_c01041{left:551.556000px;}
.x70_c01041{left:558.039000px;}
.x96_c01041{left:570.706500px;}
.x9a_c01041{left:615.352500px;}
.x97_c01041{left:622.975500px;}
.x7c_c01041{left:624.951000px;}
.x62_c01041{left:626.940000px;}
.x4e_c01041{left:628.941000px;}
.x41_c01041{left:630.048000px;}
.x27_c01041{left:632.071500px;}
.x8_c01041{left:634.377000px;}
.x3c_c01041{left:637.314000px;}
.x24_c01041{left:639.091500px;}
.x17_c01041{left:643.141500px;}
.x21_c01041{left:645.031500px;}
.xb_c01041{left:648.289224px;}
.x42_c01041{left:656.314500px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws0_c01041{word-spacing:0.000000pt;}
.fse_c01041{font-size:37.333333pt;}
.fs7_c01041{font-size:56.933333pt;}
.fs11_c01041{font-size:60.666667pt;}
.fsf_c01041{font-size:61.600000pt;}
.fs12_c01041{font-size:62.533333pt;}
.fsd_c01041{font-size:63.466667pt;}
.fs6_c01041{font-size:64.400000pt;}
.fs10_c01041{font-size:66.266667pt;}
.fsb_c01041{font-size:67.200000pt;}
.fs9_c01041{font-size:69.066667pt;}
.fs1_c01041{font-size:70.935603pt;}
.fs2_c01041{font-size:71.868966pt;}
.fsc_c01041{font-size:74.666667pt;}
.fs8_c01041{font-size:78.400000pt;}
.fs3_c01041{font-size:79.333333pt;}
.fs13_c01041{font-size:87.733333pt;}
.fsa_c01041{font-size:90.533333pt;}
.fs5_c01041{font-size:93.333333pt;}
.fs4_c01041{font-size:125.066667pt;}
.fs14_c01041{font-size:134.411356pt;}
.fs0_c01041{font-size:212.803830pt;}
.y0_c01041{bottom:0.000000pt;}
.yb9_c01041{bottom:76.254864pt;}
.yb8_c01041{bottom:78.369877pt;}
.yb7_c01041{bottom:79.588359pt;}
.yb6_c01041{bottom:80.992723pt;}
.yb5_c01041{bottom:82.574667pt;}
.yb4_c01041{bottom:102.821333pt;}
.yb3_c01041{bottom:103.378667pt;}
.yb2_c01041{bottom:104.916000pt;}
.yb1_c01041{bottom:106.658667pt;}
.yb0_c01041{bottom:108.725333pt;}
.yaf_c01041{bottom:137.906667pt;}
.yae_c01041{bottom:139.104000pt;}
.yad_c01041{bottom:139.296000pt;}
.yac_c01041{bottom:139.513333pt;}
.yab_c01041{bottom:139.684000pt;}
.yaa_c01041{bottom:139.922667pt;}
.ya9_c01041{bottom:140.424000pt;}
.ya8_c01041{bottom:140.776000pt;}
.ya7_c01041{bottom:140.948000pt;}
.ya6_c01041{bottom:141.213333pt;}
.ya5_c01041{bottom:158.136000pt;}
.ya4_c01041{bottom:160.129333pt;}
.ya3_c01041{bottom:161.764000pt;}
.ya2_c01041{bottom:164.165333pt;}
.ya1_c01041{bottom:178.760000pt;}
.ya0_c01041{bottom:180.482667pt;}
.y9f_c01041{bottom:180.797333pt;}
.y9e_c01041{bottom:180.972000pt;}
.y9d_c01041{bottom:181.112000pt;}
.y9c_c01041{bottom:181.454667pt;}
.y9b_c01041{bottom:181.649333pt;}
.y9a_c01041{bottom:182.228000pt;}
.y99_c01041{bottom:182.481333pt;}
.y98_c01041{bottom:182.713333pt;}
.y97_c01041{bottom:183.121333pt;}
.y96_c01041{bottom:199.508000pt;}
.y95_c01041{bottom:200.590667pt;}
.y94_c01041{bottom:200.853333pt;}
.y93_c01041{bottom:200.990667pt;}
.y92_c01041{bottom:201.404000pt;}
.y91_c01041{bottom:201.900000pt;}
.y90_c01041{bottom:201.993333pt;}
.y8f_c01041{bottom:202.473333pt;}
.y8e_c01041{bottom:202.590667pt;}
.y8d_c01041{bottom:202.882667pt;}
.y8c_c01041{bottom:203.521333pt;}
.y8b_c01041{bottom:218.388000pt;}
.y8a_c01041{bottom:219.472000pt;}
.y89_c01041{bottom:219.878667pt;}
.y88_c01041{bottom:220.174667pt;}
.y87_c01041{bottom:220.644000pt;}
.y86_c01041{bottom:220.857333pt;}
.y85_c01041{bottom:221.250667pt;}
.y84_c01041{bottom:221.826667pt;}
.y83_c01041{bottom:222.529333pt;}
.y82_c01041{bottom:222.946667pt;}
.y81_c01041{bottom:223.681333pt;}
.y80_c01041{bottom:239.437333pt;}
.y7f_c01041{bottom:240.310667pt;}
.y7e_c01041{bottom:241.118667pt;}
.y7d_c01041{bottom:242.398667pt;}
.y7c_c01041{bottom:260.336000pt;}
.y7b_c01041{bottom:261.325333pt;}
.y7a_c01041{bottom:261.501333pt;}
.y79_c01041{bottom:261.894667pt;}
.y78_c01041{bottom:262.093333pt;}
.y77_c01041{bottom:262.417333pt;}
.y76_c01041{bottom:262.598667pt;}
.y75_c01041{bottom:262.728000pt;}
.y74_c01041{bottom:263.065333pt;}
.y73_c01041{bottom:263.232000pt;}
.y72_c01041{bottom:263.757333pt;}
.y71_c01041{bottom:280.276000pt;}
.y70_c01041{bottom:280.701333pt;}
.y6f_c01041{bottom:281.230667pt;}
.y6e_c01041{bottom:281.421333pt;}
.y6d_c01041{bottom:281.813333pt;}
.y6c_c01041{bottom:281.948000pt;}
.y6b_c01041{bottom:282.037333pt;}
.y6a_c01041{bottom:282.312000pt;}
.y69_c01041{bottom:282.556000pt;}
.y68_c01041{bottom:282.964000pt;}
.y67_c01041{bottom:283.173333pt;}
.y66_c01041{bottom:283.677333pt;}
.y65_c01041{bottom:301.044000pt;}
.y64_c01041{bottom:301.737333pt;}
.y63_c01041{bottom:301.874667pt;}
.y62_c01041{bottom:302.082667pt;}
.y61_c01041{bottom:302.393333pt;}
.y60_c01041{bottom:302.553333pt;}
.y5f_c01041{bottom:302.749333pt;}
.y5e_c01041{bottom:302.968000pt;}
.y5d_c01041{bottom:303.181333pt;}
.y5c_c01041{bottom:303.362667pt;}
.y5b_c01041{bottom:303.598667pt;}
.y5a_c01041{bottom:303.997333pt;}
.y59_c01041{bottom:304.077333pt;}
.y58_c01041{bottom:320.554667pt;}
.y57_c01041{bottom:321.417333pt;}
.y56_c01041{bottom:321.537333pt;}
.y55_c01041{bottom:321.662667pt;}
.y54_c01041{bottom:321.952000pt;}
.y53_c01041{bottom:322.094667pt;}
.y52_c01041{bottom:322.408000pt;}
.y51_c01041{bottom:322.566667pt;}
.y50_c01041{bottom:322.785333pt;}
.y4f_c01041{bottom:323.152000pt;}
.y4e_c01041{bottom:323.516000pt;}
.y4d_c01041{bottom:342.605333pt;}
.y4c_c01041{bottom:362.578667pt;}
.y4b_c01041{bottom:381.230667pt;}
.y4a_c01041{bottom:382.933333pt;}
.y49_c01041{bottom:384.237333pt;}
.y48_c01041{bottom:402.634667pt;}
.y47_c01041{bottom:422.033333pt;}
.y45_c01041{bottom:423.276000pt;}
.y46_c01041{bottom:423.277333pt;}
.y44_c01041{bottom:423.609333pt;}
.y43_c01041{bottom:424.358667pt;}
.y42_c01041{bottom:424.666667pt;}
.y41_c01041{bottom:425.148000pt;}
.y40_c01041{bottom:425.438667pt;}
.y3f_c01041{bottom:425.594667pt;}
.y3e_c01041{bottom:426.830667pt;}
.y3d_c01041{bottom:428.304000pt;}
.y3c_c01041{bottom:441.198667pt;}
.y3b_c01041{bottom:442.521333pt;}
.y3a_c01041{bottom:442.690667pt;}
.y39_c01041{bottom:442.796000pt;}
.y38_c01041{bottom:442.928000pt;}
.y37_c01041{bottom:443.033333pt;}
.y36_c01041{bottom:443.481333pt;}
.y35_c01041{bottom:444.240000pt;}
.y34_c01041{bottom:461.530667pt;}
.y33_c01041{bottom:461.670667pt;}
.y32_c01041{bottom:462.338667pt;}
.y31_c01041{bottom:463.457333pt;}
.y30_c01041{bottom:463.893333pt;}
.y2f_c01041{bottom:464.164000pt;}
.y2e_c01041{bottom:464.640000pt;}
.y26_c01041{bottom:481.441333pt;}
.y27_c01041{bottom:482.076000pt;}
.y28_c01041{bottom:483.256000pt;}
.y29_c01041{bottom:483.905333pt;}
.y2a_c01041{bottom:484.302667pt;}
.y2b_c01041{bottom:484.525333pt;}
.y2c_c01041{bottom:484.788000pt;}
.y2d_c01041{bottom:485.952000pt;}
.y25_c01041{bottom:502.693333pt;}
.y24_c01041{bottom:503.526667pt;}
.y23_c01041{bottom:504.148000pt;}
.y22_c01041{bottom:504.261333pt;}
.y21_c01041{bottom:504.409333pt;}
.y20_c01041{bottom:504.957333pt;}
.y1f_c01041{bottom:505.678667pt;}
.y1e_c01041{bottom:523.890667pt;}
.y1d_c01041{bottom:543.508000pt;}
.y1c_c01041{bottom:544.104000pt;}
.y1b_c01041{bottom:545.288000pt;}
.y1a_c01041{bottom:546.480000pt;}
.y19_c01041{bottom:566.078667pt;}
.y18_c01041{bottom:585.358667pt;}
.y17_c01041{bottom:604.740000pt;}
.y16_c01041{bottom:625.894667pt;}
.y15_c01041{bottom:635.570667pt;}
.y14_c01041{bottom:640.049333pt;}
.y13_c01041{bottom:641.044000pt;}
.y12_c01041{bottom:644.640000pt;}
.y11_c01041{bottom:657.265333pt;}
.y10_c01041{bottom:657.705333pt;}
.yf_c01041{bottom:658.516000pt;}
.ye_c01041{bottom:659.512000pt;}
.yd_c01041{bottom:660.240000pt;}
.yc_c01041{bottom:689.280000pt;}
.y9_c01041{bottom:691.865184pt;}
.ya_c01041{bottom:691.865280pt;}
.yb_c01041{bottom:691.865408pt;}
.y8_c01041{bottom:701.162261pt;}
.y7_c01041{bottom:701.833579pt;}
.y6_c01041{bottom:702.726752pt;}
.y5_c01041{bottom:703.834645pt;}
.y4_c01041{bottom:704.216853pt;}
.y3_c01041{bottom:705.122667pt;}
.y2_c01041{bottom:799.352525pt;}
.y1_c01041{bottom:801.361333pt;}
.h10_c01041{height:37.333333pt;}
.h9_c01041{height:56.933333pt;}
.h13_c01041{height:60.666667pt;}
.h11_c01041{height:61.600000pt;}
.h14_c01041{height:62.533333pt;}
.hf_c01041{height:63.466667pt;}
.h8_c01041{height:64.400000pt;}
.h12_c01041{height:66.266667pt;}
.hd_c01041{height:67.200000pt;}
.hb_c01041{height:69.066667pt;}
.h3_c01041{height:70.935603pt;}
.h4_c01041{height:71.868966pt;}
.he_c01041{height:74.666667pt;}
.ha_c01041{height:78.400000pt;}
.h5_c01041{height:79.333333pt;}
.h15_c01041{height:87.733333pt;}
.hc_c01041{height:90.533333pt;}
.h7_c01041{height:93.333333pt;}
.h6_c01041{height:125.066667pt;}
.h16_c01041{height:134.411356pt;}
.h2_c01041{height:212.803830pt;}
.h0_c01041{height:896.400000pt;}
.h1_c01041{height:896.666667pt;}
.w1_c01041{width:622.666667pt;}
.w0_c01041{width:622.800000pt;}
.x0_c01041{left:0.000000pt;}
.x98_c01041{left:60.841333pt;}
.x79_c01041{left:61.760000pt;}
.x63_c01041{left:62.800000pt;}
.x43_c01041{left:63.940000pt;}
.x3d_c01041{left:65.114667pt;}
.x28_c01041{left:66.094667pt;}
.xc_c01041{left:67.722667pt;}
.x3_c01041{left:68.840000pt;}
.x1_c01041{left:70.386667pt;}
.x10_c01041{left:71.709333pt;}
.x7d_c01041{left:74.694667pt;}
.x47_c01041{left:76.896000pt;}
.x2b_c01041{left:79.201333pt;}
.x13_c01041{left:82.081333pt;}
.x88_c01041{left:115.253333pt;}
.x5c_c01041{left:124.246667pt;}
.x36_c01041{left:135.841333pt;}
.x7e_c01041{left:141.474667pt;}
.x64_c01041{left:142.477333pt;}
.x3e_c01041{left:144.398667pt;}
.x2c_c01041{left:146.161333pt;}
.x22_c01041{left:162.481333pt;}
.x71_c01041{left:166.476000pt;}
.x18_c01041{left:167.521333pt;}
.x89_c01041{left:169.097333pt;}
.x6b_c01041{left:172.716000pt;}
.x90_c01041{left:174.644000pt;}
.x84_c01041{left:177.992000pt;}
.x7f_c01041{left:179.356000pt;}
.x4_c01041{left:182.066667pt;}
.x31_c01041{left:186.196000pt;}
.xd_c01041{left:189.029333pt;}
.x44_c01041{left:190.280000pt;}
.x85_c01041{left:192.634667pt;}
.x91_c01041{left:196.226667pt;}
.x19_c01041{left:198.241333pt;}
.x59_c01041{left:199.921333pt;}
.x2d_c01041{left:201.121333pt;}
.x4f_c01041{left:205.441333pt;}
.x65_c01041{left:212.090667pt;}
.x72_c01041{left:214.722667pt;}
.x54_c01041{left:217.441333pt;}
.x5d_c01041{left:221.928000pt;}
.x5_c01041{left:229.842667pt;}
.x6c_c01041{left:231.066667pt;}
.x73_c01041{left:233.201333pt;}
.x2e_c01041{left:236.161333pt;}
.x92_c01041{left:240.144000pt;}
.x80_c01041{left:243.236000pt;}
.x1a_c01041{left:246.481333pt;}
.x5e_c01041{left:248.334667pt;}
.x86_c01041{left:252.636000pt;}
.x8a_c01041{left:255.038667pt;}
.x2f_c01041{left:258.001333pt;}
.x74_c01041{left:259.120000pt;}
.x3f_c01041{left:262.236000pt;}
.x29_c01041{left:264.652000pt;}
.x6d_c01041{left:265.868000pt;}
.x37_c01041{left:267.021333pt;}
.x23_c01041{left:268.801333pt;}
.x14_c01041{left:269.761333pt;}
.x11_c01041{left:271.489333pt;}
.x7a_c01041{left:275.196000pt;}
.x32_c01041{left:277.588000pt;}
.x53_c01041{left:280.953333pt;}
.x1b_c01041{left:282.241333pt;}
.x66_c01041{left:284.093333pt;}
.x48_c01041{left:285.242667pt;}
.x99_c01041{left:290.557333pt;}
.x8b_c01041{left:293.180000pt;}
.x81_c01041{left:295.597333pt;}
.x49_c01041{left:297.246667pt;}
.x5f_c01041{left:300.652000pt;}
.x33_c01041{left:302.333333pt;}
.x45_c01041{left:304.494667pt;}
.x75_c01041{left:305.466667pt;}
.x15_c01041{left:307.441333pt;}
.x8c_c01041{left:308.781333pt;}
.x55_c01041{left:310.321333pt;}
.x67_c01041{left:316.733333pt;}
.x5a_c01041{left:318.481333pt;}
.x4a_c01041{left:319.585333pt;}
.x34_c01041{left:321.266667pt;}
.x60_c01041{left:324.410667pt;}
.x12_c01041{left:326.777333pt;}
.x8d_c01041{left:328.248000pt;}
.x9_c01041{left:329.769312pt;}
.x82_c01041{left:331.318667pt;}
.x93_c01041{left:332.582667pt;}
.x76_c01041{left:333.760000pt;}
.x56_c01041{left:335.041333pt;}
.x6e_c01041{left:337.120000pt;}
.x38_c01041{left:339.228000pt;}
.x1c_c01041{left:341.281333pt;}
.x68_c01041{left:343.370667pt;}
.x46_c01041{left:350.332000pt;}
.x1d_c01041{left:352.081333pt;}
.x94_c01041{left:353.908000pt;}
.xe_c01041{left:355.109333pt;}
.x4b_c01041{left:356.566667pt;}
.x8e_c01041{left:363.264000pt;}
.x6_c01041{left:368.329333pt;}
.x16_c01041{left:372.241333pt;}
.x57_c01041{left:375.121333pt;}
.x50_c01041{left:377.041333pt;}
.x95_c01041{left:379.212000pt;}
.x4c_c01041{left:380.266667pt;}
.x39_c01041{left:383.425333pt;}
.x1e_c01041{left:388.321333pt;}
.x77_c01041{left:389.952000pt;}
.x51_c01041{left:393.841333pt;}
.x69_c01041{left:395.213333pt;}
.x8f_c01041{left:398.444000pt;}
.x2_c01041{left:405.188000pt;}
.x3a_c01041{left:408.109333pt;}
.x7b_c01041{left:409.845333pt;}
.x61_c01041{left:413.468000pt;}
.x78_c01041{left:415.125333pt;}
.x6f_c01041{left:420.398667pt;}
.x52_c01041{left:421.921333pt;}
.x35_c01041{left:424.776000pt;}
.x30_c01041{left:426.721333pt;}
.x87_c01041{left:428.054667pt;}
.x1f_c01041{left:429.121333pt;}
.x20_c01041{left:430.321333pt;}
.x3b_c01041{left:437.233333pt;}
.x5b_c01041{left:438.481333pt;}
.x25_c01041{left:444.241333pt;}
.x40_c01041{left:448.778667pt;}
.x6a_c01041{left:452.570667pt;}
.x83_c01041{left:457.312000pt;}
.x2a_c01041{left:461.918667pt;}
.x4d_c01041{left:463.541333pt;}
.x26_c01041{left:469.441333pt;}
.x58_c01041{left:476.881333pt;}
.x7_c01041{left:479.976000pt;}
.xa_c01041{left:481.933717pt;}
.xf_c01041{left:490.272000pt;}
.x70_c01041{left:496.034667pt;}
.x96_c01041{left:507.294667pt;}
.x9a_c01041{left:546.980000pt;}
.x97_c01041{left:553.756000pt;}
.x7c_c01041{left:555.512000pt;}
.x62_c01041{left:557.280000pt;}
.x4e_c01041{left:559.058667pt;}
.x41_c01041{left:560.042667pt;}
.x27_c01041{left:561.841333pt;}
.x8_c01041{left:563.890667pt;}
.x3c_c01041{left:566.501333pt;}
.x24_c01041{left:568.081333pt;}
.x17_c01041{left:571.681333pt;}
.x21_c01041{left:573.361333pt;}
.xb_c01041{left:576.257088pt;}
.x42_c01041{left:583.390667pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.000000;font-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_c01042{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);}
.mfd_c01042{transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);}
.m89_c01042{transform:matrix(0.061360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061360,0.000000,0.000000,0.250000,0,0);}
.m5_c01042{transform:matrix(0.070170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070170,0.000000,0.000000,0.250000,0,0);}
.mf4_c01042{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);}
.m66_c01042{transform:matrix(0.097820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097820,0.000000,0.000000,0.250000,0,0);}
.m3c_c01042{transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105755,0.000000,0.000000,0.250000,0,0);}
.m40_c01042{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);}
.m10_c01042{transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);}
.md6_c01042{transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142210,0.000000,0.000000,0.250000,0,0);}
.mdb_c01042{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);}
.m4c_c01042{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);}
.m9f_c01042{transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);}
.m65_c01042{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);}
.me1_c01042{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);}
.mb_c01042{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);}
.mde_c01042{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);}
.md1_c01042{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);}
.m46_c01042{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);}
.m9e_c01042{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);}
.m4d_c01042{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);}
.mb4_c01042{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);}
.md9_c01042{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);}
.m2e_c01042{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);}
.m4f_c01042{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);}
.mb6_c01042{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);}
.me3_c01042{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);}
.m107_c01042{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);}
.m2_c01042{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);}
.m7f_c01042{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);}
.m76_c01042{transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159760,0.000000,0.000000,0.250000,0,0);}
.mdf_c01042{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);}
.m98_c01042{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);}
.m1b_c01042{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);}
.md5_c01042{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);}
.mf1_c01042{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);}
.m9b_c01042{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);}
.ma0_c01042{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);}
.mec_c01042{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);}
.ma3_c01042{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);}
.mba_c01042{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);}
.m102_c01042{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);}
.ma7_c01042{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);}
.mfb_c01042{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);}
.m26_c01042{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);}
.m101_c01042{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);}
.me_c01042{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);}
.mce_c01042{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);}
.m87_c01042{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);}
.me4_c01042{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);}
.m92_c01042{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);}
.m5b_c01042{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);}
.m5f_c01042{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.me2_c01042{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);}
.md7_c01042{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);}
.ma2_c01042{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);}
.med_c01042{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);}
.mc6_c01042{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);}
.m59_c01042{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);}
.m21_c01042{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);}
.mc4_c01042{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);}
.me8_c01042{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.mea_c01042{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);}
.maa_c01042{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);}
.m4e_c01042{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);}
.m4b_c01042{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);}
.md_c01042{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);}
.mf_c01042{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);}
.m2a_c01042{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);}
.m1d_c01042{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);}
.mf9_c01042{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);}
.m77_c01042{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);}
.mcb_c01042{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);}
.m28_c01042{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);}
.m44_c01042{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);}
.me9_c01042{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);}
.mc2_c01042{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);}
.m90_c01042{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);}
.m23_c01042{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);}
.m9d_c01042{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);}
.mad_c01042{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);}
.md8_c01042{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);}
.mc8_c01042{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);}
.m50_c01042{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);}
.mb8_c01042{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);}
.m27_c01042{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);}
.mdd_c01042{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);}
.m1a_c01042{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);}
.md4_c01042{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);}
.mb7_c01042{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);}
.m51_c01042{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);}
.mb5_c01042{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_c01042{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);}
.mf8_c01042{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);}
.m16_c01042{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);}
.m45_c01042{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);}
.m47_c01042{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);}
.m58_c01042{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);}
.m84_c01042{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);}
.m9a_c01042{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);}
.m55_c01042{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);}
.m48_c01042{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);}
.mfc_c01042{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);}
.m67_c01042{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);}
.m35_c01042{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);}
.mfe_c01042{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);}
.m99_c01042{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);}
.me5_c01042{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);}
.m57_c01042{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);}
.m49_c01042{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);}
.mc5_c01042{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m94_c01042{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);}
.m86_c01042{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);}
.m7d_c01042{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_c01042{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);}
.m34_c01042{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);}
.m6e_c01042{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);}
.m64_c01042{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);}
.ma9_c01042{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);}
.mca_c01042{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);}
.md3_c01042{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);}
.m29_c01042{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);}
.ma1_c01042{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);}
.m72_c01042{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);}
.me7_c01042{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);}
.m6d_c01042{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);}
.m85_c01042{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);}
.mb9_c01042{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);}
.md2_c01042{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);}
.m71_c01042{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);}
.mbc_c01042{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);}
.m88_c01042{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m6c_c01042{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);}
.ma6_c01042{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);}
.m103_c01042{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);}
.ma8_c01042{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);}
.m1f_c01042{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);}
.m74_c01042{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);}
.m7b_c01042{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);}
.m3b_c01042{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);}
.m73_c01042{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);}
.m8d_c01042{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);}
.mc_c01042{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);}
.m95_c01042{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);}
.m36_c01042{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);}
.m7a_c01042{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);}
.me6_c01042{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);}
.mc7_c01042{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);}
.m75_c01042{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);}
.m24_c01042{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);}
.m5d_c01042{transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216045,0.000000,0.000000,0.250000,0,0);}
.m8e_c01042{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);}
.m61_c01042{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);}
.m42_c01042{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);}
.m53_c01042{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);}
.mc3_c01042{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);}
.m62_c01042{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);}
.m91_c01042{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);}
.mbf_c01042{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);}
.m4a_c01042{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);}
.m25_c01042{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);}
.m9_c01042{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);}
.m100_c01042{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);}
.m54_c01042{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);}
.m60_c01042{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);}
.m3f_c01042{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);}
.mc9_c01042{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);}
.m3e_c01042{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);}
.mcc_c01042{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);}
.mfa_c01042{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);}
.ma_c01042{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);}
.m8b_c01042{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);}
.m1e_c01042{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);}
.ma4_c01042{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);}
.m68_c01042{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);}
.m8c_c01042{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);}
.ma5_c01042{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m3d_c01042{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);}
.mf0_c01042{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);}
.m41_c01042{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);}
.meb_c01042{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);}
.m15_c01042{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);}
.m80_c01042{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);}
.mf6_c01042{transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228655,0.000000,0.000000,0.250000,0,0);}
.m30_c01042{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);}
.m6b_c01042{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);}
.m39_c01042{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);}
.m105_c01042{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);}
.m8a_c01042{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);}
.m19_c01042{transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);}
.m17_c01042{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.m63_c01042{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);}
.mff_c01042{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);}
.m14_c01042{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);}
.m2f_c01042{transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);}
.mda_c01042{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);}
.m1c_c01042{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);}
.m2d_c01042{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);}
.m81_c01042{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);}
.m22_c01042{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);}
.mee_c01042{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);}
.mcd_c01042{transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240680,0.000000,0.000000,0.250000,0,0);}
.mcf_c01042{transform:matrix(0.241310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241310,0.000000,0.000000,0.250000,0,0);}
.me0_c01042{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.mdc_c01042{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);}
.m33_c01042{transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);}
.mc0_c01042{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);}
.m69_c01042{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);}
.m97_c01042{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);}
.m18_c01042{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m96_c01042{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);}
.m2b_c01042{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);}
.m37_c01042{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.m83_c01042{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);}
.m5e_c01042{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);}
.m6a_c01042{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);}
.m8f_c01042{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);}
.m31_c01042{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);}
.m70_c01042{transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264340,0.000000,0.000000,0.250000,0,0);}
.m38_c01042{transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);}
.m79_c01042{transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265330,0.000000,0.000000,0.250000,0,0);}
.m13_c01042{transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);}
.m109_c01042{transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267050,0.000000,0.000000,0.250000,0,0);}
.m56_c01042{transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267900,0.000000,0.000000,0.250000,0,0);}
.mf3_c01042{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);}
.m3a_c01042{transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278920,0.000000,0.000000,0.250000,0,0);}
.m7c_c01042{transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280360,0.000000,0.000000,0.250000,0,0);}
.mc1_c01042{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m5c_c01042{transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);}
.mf2_c01042{transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287555,0.000000,0.000000,0.250000,0,0);}
.m106_c01042{transform:matrix(0.297465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297465,0.000000,0.000000,0.250000,0,0);}
.mbd_c01042{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);}
.mb3_c01042{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);}
.mb2_c01042{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);}
.mf7_c01042{transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313620,0.000000,0.000000,0.250000,0,0);}
.m8_c01042{transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314645,0.000000,0.000000,0.250000,0,0);}
.m7e_c01042{transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315370,0.000000,0.000000,0.250000,0,0);}
.m43_c01042{transform:matrix(0.315560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315560,0.000000,0.000000,0.250000,0,0);}
.m10b_c01042{transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320765,0.000000,0.000000,0.250000,0,0);}
.m2c_c01042{transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328565,0.000000,0.000000,0.250000,0,0);}
.m104_c01042{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);}
.m108_c01042{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);}
.m52_c01042{transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332470,0.000000,0.000000,0.250000,0,0);}
.m20_c01042{transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);}
.mae_c01042{transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);}
.m11_c01042{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mef_c01042{transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339930,0.000000,0.000000,0.250000,0,0);}
.m12_c01042{transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);}
.mb1_c01042{transform:matrix(0.347490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347490,0.000000,0.000000,0.250000,0,0);}
.mac_c01042{transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349880,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(0.355335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355335,0.000000,0.000000,0.250000,0,0);}
.m32_c01042{transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355450,0.000000,0.000000,0.250000,0,0);}
.md0_c01042{transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362235,0.000000,0.000000,0.250000,0,0);}
.m93_c01042{transform:matrix(0.368060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368060,0.000000,0.000000,0.250000,0,0);}
.mbe_c01042{transform:matrix(0.368635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368635,0.000000,0.000000,0.250000,0,0);}
.mf5_c01042{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);}
.m82_c01042{transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);}
.m10a_c01042{transform:matrix(0.384065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384065,0.000000,0.000000,0.250000,0,0);}
.mbb_c01042{transform:matrix(0.451030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451030,0.000000,0.000000,0.250000,0,0);}
.m7_c01042{transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474540,0.000000,0.000000,0.250000,0,0);}
.m0_c01042{transform:matrix(0.508270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508270,0.000000,0.000000,0.250000,0,0);}
.m3_c01042{transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);}
.mab_c01042{transform:matrix(0.563800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563800,0.000000,0.000000,0.250000,0,0);}
.m6f_c01042{transform:matrix(0.567995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567995,0.000000,0.000000,0.250000,0,0);}
.m111_c01042{transform:matrix(0.572585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572585,0.000000,0.000000,0.250000,0,0);}
.m6_c01042{transform:matrix(0.572640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572640,0.000000,0.000000,0.250000,0,0);}
.m10c_c01042{transform:matrix(0.597720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597720,0.000000,0.000000,0.250000,0,0);}
.m10d_c01042{transform:matrix(0.662345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662345,0.000000,0.000000,0.250000,0,0);}
.mb0_c01042{transform:matrix(0.676830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676830,0.000000,0.000000,0.250000,0,0);}
.m4_c01042{transform:matrix(0.682745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682745,0.000000,0.000000,0.250000,0,0);}
.m10f_c01042{transform:matrix(0.838050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.838050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.838050,0.000000,0.000000,0.250000,0,0);}
.maf_c01042{transform:matrix(0.851805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851805,0.000000,0.000000,0.250000,0,0);}
.m10e_c01042{transform:matrix(0.971095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971095,0.000000,0.000000,0.250000,0,0);}
.m110_c01042{transform:matrix(1.781225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.781225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.781225,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls0_c01042{letter-spacing:0.000000px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01042{word-spacing:0.000000px;}
.fc0_c01042{color:transparent;}
.fsf_c01042{font-size:44.100000px;}
.fs7_c01042{font-size:60.900000px;}
.fs9_c01042{font-size:63.000000px;}
.fs6_c01042{font-size:65.100000px;}
.fs5_c01042{font-size:66.150000px;}
.fs1_c01042{font-size:67.200000px;}
.fs4_c01042{font-size:68.250000px;}
.fs8_c01042{font-size:69.300000px;}
.fsa_c01042{font-size:70.350000px;}
.fs3_c01042{font-size:71.400000px;}
.fs2_c01042{font-size:72.450000px;}
.fsd_c01042{font-size:73.500000px;}
.fse_c01042{font-size:74.550000px;}
.fsc_c01042{font-size:76.650000px;}
.fsb_c01042{font-size:77.700000px;}
.fs0_c01042{font-size:87.150000px;}
.y0_c01042{bottom:0.000000px;}
.y23_c01042{bottom:126.159000px;}
.y22_c01042{bottom:135.810000px;}
.y21_c01042{bottom:155.364000px;}
.y20_c01042{bottom:178.539000px;}
.y1f_c01042{bottom:201.232500px;}
.y1e_c01042{bottom:224.125500px;}
.y1d_c01042{bottom:246.535500px;}
.y1c_c01042{bottom:269.407500px;}
.y1b_c01042{bottom:291.976500px;}
.y1a_c01042{bottom:314.362500px;}
.y19_c01042{bottom:337.443000px;}
.y18_c01042{bottom:359.853000px;}
.y17_c01042{bottom:382.914000px;}
.y16_c01042{bottom:405.540000px;}
.y15_c01042{bottom:428.904000px;}
.y14_c01042{bottom:473.413500px;}
.y13_c01042{bottom:495.262500px;}
.y12_c01042{bottom:518.503500px;}
.y11_c01042{bottom:540.967500px;}
.y10_c01042{bottom:564.111000px;}
.yf_c01042{bottom:586.915500px;}
.ye_c01042{bottom:609.781500px;}
.yd_c01042{bottom:632.397000px;}
.yc_c01042{bottom:654.510000px;}
.yb_c01042{bottom:677.247000px;}
.ya_c01042{bottom:699.772500px;}
.y9_c01042{bottom:722.610000px;}
.y8_c01042{bottom:745.470000px;}
.y7_c01042{bottom:768.057000px;}
.y6_c01042{bottom:790.732500px;}
.y5_c01042{bottom:813.139500px;}
.y4_c01042{bottom:836.553000px;}
.y1_c01042{bottom:882.172500px;}
.y3_c01042{bottom:904.762500px;}
.y2_c01042{bottom:925.444500px;}
.h11_c01042{height:44.100000px;}
.h9_c01042{height:60.900000px;}
.hb_c01042{height:63.000000px;}
.h8_c01042{height:65.100000px;}
.h7_c01042{height:66.150000px;}
.h3_c01042{height:67.200000px;}
.h6_c01042{height:68.250000px;}
.ha_c01042{height:69.300000px;}
.hc_c01042{height:70.350000px;}
.h5_c01042{height:71.400000px;}
.h4_c01042{height:72.450000px;}
.hf_c01042{height:73.500000px;}
.h10_c01042{height:74.550000px;}
.he_c01042{height:76.650000px;}
.hd_c01042{height:77.700000px;}
.h2_c01042{height:87.150000px;}
.h1_c01042{height:1005.000000px;}
.h0_c01042{height:1005.150000px;}
.w0_c01042{width:715.200000px;}
.w1_c01042{width:715.500000px;}
.x0_c01042{left:0.000000px;}
.x4_c01042{left:56.160000px;}
.x9e_c01042{left:59.400000px;}
.x9d_c01042{left:61.830000px;}
.x5_c01042{left:71.820000px;}
.x9f_c01042{left:109.350000px;}
.x7_c01042{left:119.880000px;}
.x69_c01042{left:131.490000px;}
.x6_c01042{left:133.110000px;}
.x6d_c01042{left:136.080000px;}
.x4c_c01042{left:137.160000px;}
.x12_c01042{left:138.510000px;}
.x99_c01042{left:139.860000px;}
.x8_c01042{left:142.020000px;}
.x54_c01042{left:147.420000px;}
.x33_c01042{left:149.040000px;}
.x1c_c01042{left:150.660000px;}
.x9a_c01042{left:166.050000px;}
.x82_c01042{left:169.560000px;}
.x55_c01042{left:171.180000px;}
.x86_c01042{left:172.530000px;}
.x2b_c01042{left:178.200000px;}
.x13_c01042{left:179.820000px;}
.x9_c01042{left:181.980000px;}
.x72_c01042{left:185.220000px;}
.x5a_c01042{left:187.920000px;}
.x91_c01042{left:189.000000px;}
.x4d_c01042{left:190.080000px;}
.x47_c01042{left:191.430000px;}
.x1_c01042{left:192.510000px;}
.x7d_c01042{left:194.670000px;}
.x2c_c01042{left:200.340000px;}
.x14_c01042{left:204.660000px;}
.x61_c01042{left:208.170000px;}
.x56_c01042{left:210.330000px;}
.x92_c01042{left:213.030000px;}
.x48_c01042{left:215.460000px;}
.xa_c01042{left:217.620000px;}
.x34_c01042{left:219.780000px;}
.x24_c01042{left:221.400000px;}
.x1d_c01042{left:223.290000px;}
.x94_c01042{left:225.990000px;}
.x7e_c01042{left:229.500000px;}
.x57_c01042{left:231.390000px;}
.x5b_c01042{left:234.900000px;}
.x15_c01042{left:240.570000px;}
.x3a_c01042{left:244.080000px;}
.x66_c01042{left:245.700000px;}
.x35_c01042{left:247.860000px;}
.x1e_c01042{left:253.260000px;}
.x76_c01042{left:255.960000px;}
.x25_c01042{left:257.850000px;}
.xb_c01042{left:259.470000px;}
.x6a_c01042{left:261.630000px;}
.x3b_c01042{left:262.710000px;}
.x6e_c01042{left:265.140000px;}
.x2d_c01042{left:266.760000px;}
.x70_c01042{left:274.320000px;}
.x62_c01042{left:275.400000px;}
.x87_c01042{left:276.750000px;}
.x4e_c01042{left:277.830000px;}
.x73_c01042{left:280.260000px;}
.x8a_c01042{left:281.340000px;}
.x41_c01042{left:283.500000px;}
.xc_c01042{left:284.580000px;}
.x16_c01042{left:288.630000px;}
.x3c_c01042{left:291.060000px;}
.x95_c01042{left:292.950000px;}
.x9b_c01042{left:295.110000px;}
.x1f_c01042{left:297.000000px;}
.x58_c01042{left:303.480000px;}
.x77_c01042{left:305.640000px;}
.x90_c01042{left:306.720000px;}
.x8b_c01042{left:310.770000px;}
.x96_c01042{left:312.120000px;}
.x71_c01042{left:313.470000px;}
.x42_c01042{left:321.570000px;}
.x6b_c01042{left:324.810000px;}
.x26_c01042{left:328.590000px;}
.x2e_c01042{left:330.480000px;}
.x78_c01042{left:333.180000px;}
.x63_c01042{left:335.880000px;}
.x36_c01042{left:336.960000px;}
.x88_c01042{left:339.390000px;}
.x5c_c01042{left:340.740000px;}
.x67_c01042{left:343.980000px;}
.x43_c01042{left:346.140000px;}
.xd_c01042{left:348.300000px;}
.x37_c01042{left:349.920000px;}
.x97_c01042{left:351.540000px;}
.x83_c01042{left:355.320000px;}
.x93_c01042{left:356.400000px;}
.x17_c01042{left:357.750000px;}
.x27_c01042{left:358.830000px;}
.x3d_c01042{left:360.720000px;}
.x7a_c01042{left:363.150000px;}
.x2f_c01042{left:365.850000px;}
.x20_c01042{left:368.820000px;}
.x68_c01042{left:370.170000px;}
.x44_c01042{left:374.490000px;}
.xe_c01042{left:377.460000px;}
.x7f_c01042{left:379.350000px;}
.x49_c01042{left:380.430000px;}
.x5d_c01042{left:382.860000px;}
.x18_c01042{left:384.480000px;}
.x21_c01042{left:387.450000px;}
.x8c_c01042{left:389.070000px;}
.x3e_c01042{left:390.150000px;}
.x4f_c01042{left:391.500000px;}
.x59_c01042{left:397.170000px;}
.x30_c01042{left:400.680000px;}
.x19_c01042{left:402.840000px;}
.x98_c01042{left:409.590000px;}
.x9c_c01042{left:411.480000px;}
.x74_c01042{left:412.560000px;}
.x89_c01042{left:414.180000px;}
.x2_c01042{left:416.070000px;}
.x5e_c01042{left:418.230000px;}
.xf_c01042{left:420.660000px;}
.x28_c01042{left:426.060000px;}
.x7b_c01042{left:427.680000px;}
.x8d_c01042{left:430.110000px;}
.x45_c01042{left:432.000000px;}
.x38_c01042{left:433.080000px;}
.x6f_c01042{left:434.970000px;}
.x4a_c01042{left:439.560000px;}
.x50_c01042{left:440.640000px;}
.x3f_c01042{left:442.530000px;}
.x1a_c01042{left:446.580000px;}
.x79_c01042{left:450.630000px;}
.x84_c01042{left:453.060000px;}
.x29_c01042{left:455.490000px;}
.x22_c01042{left:457.920000px;}
.x5f_c01042{left:460.890000px;}
.x10_c01042{left:464.670000px;}
.x64_c01042{left:466.020000px;}
.x31_c01042{left:468.720000px;}
.x8e_c01042{left:470.070000px;}
.x75_c01042{left:471.150000px;}
.x40_c01042{left:473.580000px;}
.x7c_c01042{left:475.470000px;}
.x4b_c01042{left:482.490000px;}
.x1b_c01042{left:483.570000px;}
.x11_c01042{left:485.730000px;}
.x3_c01042{left:487.080000px;}
.x23_c01042{left:489.780000px;}
.x2a_c01042{left:494.640000px;}
.x46_c01042{left:497.880000px;}
.x60_c01042{left:499.230000px;}
.x6c_c01042{left:500.580000px;}
.x51_c01042{left:503.550000px;}
.x39_c01042{left:505.170000px;}
.x32_c01042{left:508.140000px;}
.x8f_c01042{left:515.160000px;}
.x80_c01042{left:516.780000px;}
.x65_c01042{left:518.940000px;}
.x85_c01042{left:522.990000px;}
.x81_c01042{left:555.390000px;}
.x52_c01042{left:556.470000px;}
.x53_c01042{left:559.440000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls0_c01042{letter-spacing:0.000000pt;}
.ws0_c01042{word-spacing:0.000000pt;}
.fsf_c01042{font-size:39.200000pt;}
.fs7_c01042{font-size:54.133333pt;}
.fs9_c01042{font-size:56.000000pt;}
.fs6_c01042{font-size:57.866667pt;}
.fs5_c01042{font-size:58.800000pt;}
.fs1_c01042{font-size:59.733333pt;}
.fs4_c01042{font-size:60.666667pt;}
.fs8_c01042{font-size:61.600000pt;}
.fsa_c01042{font-size:62.533333pt;}
.fs3_c01042{font-size:63.466667pt;}
.fs2_c01042{font-size:64.400000pt;}
.fsd_c01042{font-size:65.333333pt;}
.fse_c01042{font-size:66.266667pt;}
.fsc_c01042{font-size:68.133333pt;}
.fsb_c01042{font-size:69.066667pt;}
.fs0_c01042{font-size:77.466667pt;}
.y0_c01042{bottom:0.000000pt;}
.y23_c01042{bottom:112.141333pt;}
.y22_c01042{bottom:120.720000pt;}
.y21_c01042{bottom:138.101333pt;}
.y20_c01042{bottom:158.701333pt;}
.y1f_c01042{bottom:178.873333pt;}
.y1e_c01042{bottom:199.222667pt;}
.y1d_c01042{bottom:219.142667pt;}
.y1c_c01042{bottom:239.473333pt;}
.y1b_c01042{bottom:259.534667pt;}
.y1a_c01042{bottom:279.433333pt;}
.y19_c01042{bottom:299.949333pt;}
.y18_c01042{bottom:319.869333pt;}
.y17_c01042{bottom:340.368000pt;}
.y16_c01042{bottom:360.480000pt;}
.y15_c01042{bottom:381.248000pt;}
.y14_c01042{bottom:420.812000pt;}
.y13_c01042{bottom:440.233333pt;}
.y12_c01042{bottom:460.892000pt;}
.y11_c01042{bottom:480.860000pt;}
.y10_c01042{bottom:501.432000pt;}
.yf_c01042{bottom:521.702667pt;}
.ye_c01042{bottom:542.028000pt;}
.yd_c01042{bottom:562.130667pt;}
.yc_c01042{bottom:581.786667pt;}
.yb_c01042{bottom:601.997333pt;}
.ya_c01042{bottom:622.020000pt;}
.y9_c01042{bottom:642.320000pt;}
.y8_c01042{bottom:662.640000pt;}
.y7_c01042{bottom:682.717333pt;}
.y6_c01042{bottom:702.873333pt;}
.y5_c01042{bottom:722.790667pt;}
.y4_c01042{bottom:743.602667pt;}
.y1_c01042{bottom:784.153333pt;}
.y3_c01042{bottom:804.233333pt;}
.y2_c01042{bottom:822.617333pt;}
.h11_c01042{height:39.200000pt;}
.h9_c01042{height:54.133333pt;}
.hb_c01042{height:56.000000pt;}
.h8_c01042{height:57.866667pt;}
.h7_c01042{height:58.800000pt;}
.h3_c01042{height:59.733333pt;}
.h6_c01042{height:60.666667pt;}
.ha_c01042{height:61.600000pt;}
.hc_c01042{height:62.533333pt;}
.h5_c01042{height:63.466667pt;}
.h4_c01042{height:64.400000pt;}
.hf_c01042{height:65.333333pt;}
.h10_c01042{height:66.266667pt;}
.he_c01042{height:68.133333pt;}
.hd_c01042{height:69.066667pt;}
.h2_c01042{height:77.466667pt;}
.h1_c01042{height:893.333333pt;}
.h0_c01042{height:893.466667pt;}
.w0_c01042{width:635.733333pt;}
.w1_c01042{width:636.000000pt;}
.x0_c01042{left:0.000000pt;}
.x4_c01042{left:49.920000pt;}
.x9e_c01042{left:52.800000pt;}
.x9d_c01042{left:54.960000pt;}
.x5_c01042{left:63.840000pt;}
.x9f_c01042{left:97.200000pt;}
.x7_c01042{left:106.560000pt;}
.x69_c01042{left:116.880000pt;}
.x6_c01042{left:118.320000pt;}
.x6d_c01042{left:120.960000pt;}
.x4c_c01042{left:121.920000pt;}
.x12_c01042{left:123.120000pt;}
.x99_c01042{left:124.320000pt;}
.x8_c01042{left:126.240000pt;}
.x54_c01042{left:131.040000pt;}
.x33_c01042{left:132.480000pt;}
.x1c_c01042{left:133.920000pt;}
.x9a_c01042{left:147.600000pt;}
.x82_c01042{left:150.720000pt;}
.x55_c01042{left:152.160000pt;}
.x86_c01042{left:153.360000pt;}
.x2b_c01042{left:158.400000pt;}
.x13_c01042{left:159.840000pt;}
.x9_c01042{left:161.760000pt;}
.x72_c01042{left:164.640000pt;}
.x5a_c01042{left:167.040000pt;}
.x91_c01042{left:168.000000pt;}
.x4d_c01042{left:168.960000pt;}
.x47_c01042{left:170.160000pt;}
.x1_c01042{left:171.120000pt;}
.x7d_c01042{left:173.040000pt;}
.x2c_c01042{left:178.080000pt;}
.x14_c01042{left:181.920000pt;}
.x61_c01042{left:185.040000pt;}
.x56_c01042{left:186.960000pt;}
.x92_c01042{left:189.360000pt;}
.x48_c01042{left:191.520000pt;}
.xa_c01042{left:193.440000pt;}
.x34_c01042{left:195.360000pt;}
.x24_c01042{left:196.800000pt;}
.x1d_c01042{left:198.480000pt;}
.x94_c01042{left:200.880000pt;}
.x7e_c01042{left:204.000000pt;}
.x57_c01042{left:205.680000pt;}
.x5b_c01042{left:208.800000pt;}
.x15_c01042{left:213.840000pt;}
.x3a_c01042{left:216.960000pt;}
.x66_c01042{left:218.400000pt;}
.x35_c01042{left:220.320000pt;}
.x1e_c01042{left:225.120000pt;}
.x76_c01042{left:227.520000pt;}
.x25_c01042{left:229.200000pt;}
.xb_c01042{left:230.640000pt;}
.x6a_c01042{left:232.560000pt;}
.x3b_c01042{left:233.520000pt;}
.x6e_c01042{left:235.680000pt;}
.x2d_c01042{left:237.120000pt;}
.x70_c01042{left:243.840000pt;}
.x62_c01042{left:244.800000pt;}
.x87_c01042{left:246.000000pt;}
.x4e_c01042{left:246.960000pt;}
.x73_c01042{left:249.120000pt;}
.x8a_c01042{left:250.080000pt;}
.x41_c01042{left:252.000000pt;}
.xc_c01042{left:252.960000pt;}
.x16_c01042{left:256.560000pt;}
.x3c_c01042{left:258.720000pt;}
.x95_c01042{left:260.400000pt;}
.x9b_c01042{left:262.320000pt;}
.x1f_c01042{left:264.000000pt;}
.x58_c01042{left:269.760000pt;}
.x77_c01042{left:271.680000pt;}
.x90_c01042{left:272.640000pt;}
.x8b_c01042{left:276.240000pt;}
.x96_c01042{left:277.440000pt;}
.x71_c01042{left:278.640000pt;}
.x42_c01042{left:285.840000pt;}
.x6b_c01042{left:288.720000pt;}
.x26_c01042{left:292.080000pt;}
.x2e_c01042{left:293.760000pt;}
.x78_c01042{left:296.160000pt;}
.x63_c01042{left:298.560000pt;}
.x36_c01042{left:299.520000pt;}
.x88_c01042{left:301.680000pt;}
.x5c_c01042{left:302.880000pt;}
.x67_c01042{left:305.760000pt;}
.x43_c01042{left:307.680000pt;}
.xd_c01042{left:309.600000pt;}
.x37_c01042{left:311.040000pt;}
.x97_c01042{left:312.480000pt;}
.x83_c01042{left:315.840000pt;}
.x93_c01042{left:316.800000pt;}
.x17_c01042{left:318.000000pt;}
.x27_c01042{left:318.960000pt;}
.x3d_c01042{left:320.640000pt;}
.x7a_c01042{left:322.800000pt;}
.x2f_c01042{left:325.200000pt;}
.x20_c01042{left:327.840000pt;}
.x68_c01042{left:329.040000pt;}
.x44_c01042{left:332.880000pt;}
.xe_c01042{left:335.520000pt;}
.x7f_c01042{left:337.200000pt;}
.x49_c01042{left:338.160000pt;}
.x5d_c01042{left:340.320000pt;}
.x18_c01042{left:341.760000pt;}
.x21_c01042{left:344.400000pt;}
.x8c_c01042{left:345.840000pt;}
.x3e_c01042{left:346.800000pt;}
.x4f_c01042{left:348.000000pt;}
.x59_c01042{left:353.040000pt;}
.x30_c01042{left:356.160000pt;}
.x19_c01042{left:358.080000pt;}
.x98_c01042{left:364.080000pt;}
.x9c_c01042{left:365.760000pt;}
.x74_c01042{left:366.720000pt;}
.x89_c01042{left:368.160000pt;}
.x2_c01042{left:369.840000pt;}
.x5e_c01042{left:371.760000pt;}
.xf_c01042{left:373.920000pt;}
.x28_c01042{left:378.720000pt;}
.x7b_c01042{left:380.160000pt;}
.x8d_c01042{left:382.320000pt;}
.x45_c01042{left:384.000000pt;}
.x38_c01042{left:384.960000pt;}
.x6f_c01042{left:386.640000pt;}
.x4a_c01042{left:390.720000pt;}
.x50_c01042{left:391.680000pt;}
.x3f_c01042{left:393.360000pt;}
.x1a_c01042{left:396.960000pt;}
.x79_c01042{left:400.560000pt;}
.x84_c01042{left:402.720000pt;}
.x29_c01042{left:404.880000pt;}
.x22_c01042{left:407.040000pt;}
.x5f_c01042{left:409.680000pt;}
.x10_c01042{left:413.040000pt;}
.x64_c01042{left:414.240000pt;}
.x31_c01042{left:416.640000pt;}
.x8e_c01042{left:417.840000pt;}
.x75_c01042{left:418.800000pt;}
.x40_c01042{left:420.960000pt;}
.x7c_c01042{left:422.640000pt;}
.x4b_c01042{left:428.880000pt;}
.x1b_c01042{left:429.840000pt;}
.x11_c01042{left:431.760000pt;}
.x3_c01042{left:432.960000pt;}
.x23_c01042{left:435.360000pt;}
.x2a_c01042{left:439.680000pt;}
.x46_c01042{left:442.560000pt;}
.x60_c01042{left:443.760000pt;}
.x6c_c01042{left:444.960000pt;}
.x51_c01042{left:447.600000pt;}
.x39_c01042{left:449.040000pt;}
.x32_c01042{left:451.680000pt;}
.x8f_c01042{left:457.920000pt;}
.x80_c01042{left:459.360000pt;}
.x65_c01042{left:461.280000pt;}
.x85_c01042{left:464.880000pt;}
.x81_c01042{left:493.680000pt;}
.x52_c01042{left:494.640000pt;}
.x53_c01042{left:497.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_c01043 {
    display:none;
  }
  .loading-indicator_c01043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01043 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01043 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01043" -> "#page-container .classname_c01043")
 */
.pf_c01043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01043 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01043 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01043 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01043 {overflow:visible;}
  }
}
.c_c01043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01043 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01043:after { /* webkit #35443 */
  content: '';
}
.t_c01043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01043 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01043 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01043 { /* info for Javascript */
  display:none;
}
.l_c01043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.000000;font-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_c01043{transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);-ms-transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.010540,0.000095,-0.002250,0.249990,0,0);}
.mc9_c01043{transform:matrix(0.023913,0.000287,-0.003000,0.249982,0,0);-ms-transform:matrix(0.023913,0.000287,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.023913,0.000287,-0.003000,0.249982,0,0);}
.m74_c01043{transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086390,0.000000,0.000000,0.250000,0,0);}
.mc0_c01043{transform:matrix(0.090670,0.000907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.090670,0.000907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.090670,0.000907,-0.002500,0.249988,0,0);}
.m9b_c01043{transform:matrix(0.091855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091855,0.000000,0.000000,0.250000,0,0);}
.m41_c01043{transform:matrix(0.106695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106695,0.000000,0.000000,0.250000,0,0);}
.m100_c01043{transform:matrix(0.109021,0.001417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.109021,0.001417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.109021,0.001417,-0.003250,0.249979,0,0);}
.me_c01043{transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113145,0.000000,0.000000,0.250000,0,0);}
.m9c_c01043{transform:matrix(0.120065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120065,0.000000,0.000000,0.250000,0,0);}
.m47_c01043{transform:matrix(0.129370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129370,0.000000,0.000000,0.250000,0,0);}
.m68_c01043{transform:matrix(0.133390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133390,0.000000,0.000000,0.250000,0,0);}
.m46_c01043{transform:matrix(0.133455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133455,0.000000,0.000000,0.250000,0,0);}
.m5a_c01043{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);}
.mda_c01043{transform:matrix(0.137435,0.001649,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137435,0.001649,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137435,0.001649,-0.003000,0.249982,0,0);}
.m28_c01043{transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);}
.m58_c01043{transform:matrix(0.138865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138865,0.000000,0.000000,0.250000,0,0);}
.ma9_c01043{transform:matrix(0.139364,0.001254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139364,0.001254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139364,0.001254,-0.002250,0.249990,0,0);}
.m1e_c01043{transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140630,0.000000,0.000000,0.250000,0,0);}
.m42_c01043{transform:matrix(0.140865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140865,0.000000,0.000000,0.250000,0,0);}
.m98_c01043{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);}
.ma7_c01043{transform:matrix(0.141959,0.001278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.141959,0.001278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.141959,0.001278,-0.002250,0.249990,0,0);}
.m45_c01043{transform:matrix(0.143120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143120,0.000000,0.000000,0.250000,0,0);}
.m9e_c01043{transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);}
.m107_c01043{transform:matrix(0.143783,0.001869,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143783,0.001869,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143783,0.001869,-0.003250,0.249979,0,0);}
.ma8_c01043{transform:matrix(0.145059,0.001306,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145059,0.001306,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145059,0.001306,-0.002250,0.249990,0,0);}
.m9d_c01043{transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);}
.m97_c01043{transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149190,0.000000,0.000000,0.250000,0,0);}
.m54_c01043{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);}
.me1_c01043{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);}
.m43_c01043{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.me5_c01043{transform:matrix(0.151539,0.001818,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151539,0.001818,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151539,0.001818,-0.003000,0.249982,0,0);}
.mad_c01043{transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);}
.m94_c01043{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);}
.m40_c01043{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);}
.m39_c01043{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);}
.m6c_c01043{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);}
.m85_c01043{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);}
.md9_c01043{transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157284,0.001887,-0.003000,0.249982,0,0);}
.md8_c01043{transform:matrix(0.157394,0.001889,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157394,0.001889,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157394,0.001889,-0.003000,0.249982,0,0);}
.mb2_c01043{transform:matrix(0.157784,0.001420,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157784,0.001420,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157784,0.001420,-0.002250,0.249990,0,0);}
.m44_c01043{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);}
.m99_c01043{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);}
.mc8_c01043{transform:matrix(0.158657,0.001587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158657,0.001587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158657,0.001587,-0.002500,0.249988,0,0);}
.m64_c01043{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);}
.m37_c01043{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);}
.m4f_c01043{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);}
.m7a_c01043{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);}
.m83_c01043{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);}
.mc5_c01043{transform:matrix(0.160127,0.001601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160127,0.001601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160127,0.001601,-0.002500,0.249988,0,0);}
.m2c_c01043{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);}
.mee_c01043{transform:matrix(0.161231,0.002096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161231,0.002096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161231,0.002096,-0.003250,0.249979,0,0);}
.mf9_c01043{transform:matrix(0.161461,0.002099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161461,0.002099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161461,0.002099,-0.003250,0.249979,0,0);}
.m2f_c01043{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);}
.md1_c01043{transform:matrix(0.162383,0.001949,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162383,0.001949,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162383,0.001949,-0.003000,0.249982,0,0);}
.mfe_c01043{transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);}
.m81_c01043{transform:matrix(0.164015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164015,0.000000,0.000000,0.250000,0,0);}
.mfb_c01043{transform:matrix(0.164031,0.002132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164031,0.002132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164031,0.002132,-0.003250,0.249979,0,0);}
.m59_c01043{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);}
.maa_c01043{transform:matrix(0.164738,0.001483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164738,0.001483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164738,0.001483,-0.002250,0.249990,0,0);}
.mc3_c01043{transform:matrix(0.165087,0.001651,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165087,0.001651,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165087,0.001651,-0.002500,0.249988,0,0);}
.m80_c01043{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);}
.me2_c01043{transform:matrix(0.166423,0.001997,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166423,0.001997,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166423,0.001997,-0.003000,0.249982,0,0);}
.mc6_c01043{transform:matrix(0.166702,0.001667,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166702,0.001667,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166702,0.001667,-0.002500,0.249988,0,0);}
.m93_c01043{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);}
.mc4_c01043{transform:matrix(0.167487,0.001675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167487,0.001675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167487,0.001675,-0.002500,0.249988,0,0);}
.m6e_c01043{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);}
.md7_c01043{transform:matrix(0.168898,0.002027,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168898,0.002027,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168898,0.002027,-0.003000,0.249982,0,0);}
.m77_c01043{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);}
.m91_c01043{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);}
.m9_c01043{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);}
.m53_c01043{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);}
.mf4_c01043{transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);}
.mac_c01043{transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170808,0.001537,-0.002250,0.249990,0,0);}
.mb1_c01043{transform:matrix(0.171458,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171458,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171458,0.001543,-0.002250,0.249990,0,0);}
.m1d_c01043{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);}
.m106_c01043{transform:matrix(0.173475,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173475,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173475,0.002255,-0.003250,0.249979,0,0);}
.m4b_c01043{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);}
.m7c_c01043{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);}
.m6b_c01043{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);}
.m34_c01043{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_c01043{transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174618,0.001572,-0.002250,0.249990,0,0);}
.mf0_c01043{transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175485,0.002281,-0.003250,0.249979,0,0);}
.m10a_c01043{transform:matrix(0.176110,0.002289,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176110,0.002289,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176110,0.002289,-0.003250,0.249979,0,0);}
.m105_c01043{transform:matrix(0.176245,0.002291,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176245,0.002291,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176245,0.002291,-0.003250,0.249979,0,0);}
.m26_c01043{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);}
.m84_c01043{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);}
.m60_c01043{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);}
.m2d_c01043{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);}
.mdf_c01043{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);}
.mb8_c01043{transform:matrix(0.177988,0.001602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177988,0.001602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177988,0.001602,-0.002250,0.249990,0,0);}
.m23_c01043{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);}
.m79_c01043{transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);}
.m82_c01043{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);}
.ma4_c01043{transform:matrix(0.179898,0.001619,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179898,0.001619,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179898,0.001619,-0.002250,0.249990,0,0);}
.m9a_c01043{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);}
.m90_c01043{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);}
.m78_c01043{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);}
.m6d_c01043{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);}
.m4d_c01043{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);}
.mdb_c01043{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);}
.mae_c01043{transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181543,0.001634,-0.002250,0.249990,0,0);}
.m108_c01043{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);}
.m36_c01043{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);}
.mf5_c01043{transform:matrix(0.182555,0.002373,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182555,0.002373,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182555,0.002373,-0.003250,0.249979,0,0);}
.ma5_c01043{transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);}
.mb4_c01043{transform:matrix(0.183058,0.001648,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183058,0.001648,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183058,0.001648,-0.002250,0.249990,0,0);}
.m1b_c01043{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);}
.m29_c01043{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);}
.mb3_c01043{transform:matrix(0.184028,0.001656,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184028,0.001656,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184028,0.001656,-0.002250,0.249990,0,0);}
.m0_c01043{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);}
.m101_c01043{transform:matrix(0.184094,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184094,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184094,0.002393,-0.003250,0.249979,0,0);}
.m2e_c01043{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);}
.m89_c01043{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);}
.ma0_c01043{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);}
.m4c_c01043{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);}
.mc7_c01043{transform:matrix(0.184861,0.001849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184861,0.001849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184861,0.001849,-0.002500,0.249988,0,0);}
.m24_c01043{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);}
.m76_c01043{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);}
.mfa_c01043{transform:matrix(0.185299,0.002409,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185299,0.002409,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185299,0.002409,-0.003250,0.249979,0,0);}
.m63_c01043{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);}
.m7e_c01043{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);}
.mfc_c01043{transform:matrix(0.186104,0.002419,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186104,0.002419,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186104,0.002419,-0.003250,0.249979,0,0);}
.mc2_c01043{transform:matrix(0.186816,0.001868,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186816,0.001868,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186816,0.001868,-0.002500,0.249988,0,0);}
.m109_c01043{transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186859,0.002429,-0.003250,0.249979,0,0);}
.mcb_c01043{transform:matrix(0.186867,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186867,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186867,0.002242,-0.003000,0.249982,0,0);}
.m9f_c01043{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);}
.m32_c01043{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_c01043{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);}
.m7f_c01043{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);}
.m72_c01043{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);}
.me4_c01043{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);}
.ma_c01043{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);}
.m1c_c01043{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);}
.m6a_c01043{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);}
.m65_c01043{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);}
.m55_c01043{transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);}
.m8a_c01043{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);}
.md5_c01043{transform:matrix(0.190921,0.002291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190921,0.002291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190921,0.002291,-0.003000,0.249982,0,0);}
.m2a_c01043{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m75_c01043{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);}
.m92_c01043{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);}
.m3a_c01043{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);}
.m56_c01043{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);}
.m22_c01043{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);}
.m8b_c01043{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);}
.m52_c01043{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);}
.m5_c01043{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);}
.m66_c01043{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);}
.m86_c01043{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);}
.mcf_c01043{transform:matrix(0.195486,0.002346,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195486,0.002346,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195486,0.002346,-0.003000,0.249982,0,0);}
.ma3_c01043{transform:matrix(0.196367,0.001767,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196367,0.001767,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196367,0.001767,-0.002250,0.249990,0,0);}
.m103_c01043{transform:matrix(0.196988,0.002561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196988,0.002561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196988,0.002561,-0.003250,0.249979,0,0);}
.mf6_c01043{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);}
.md6_c01043{transform:matrix(0.197031,0.002364,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197031,0.002364,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197031,0.002364,-0.003000,0.249982,0,0);}
.m35_c01043{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);}
.mf3_c01043{transform:matrix(0.197923,0.002573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197923,0.002573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197923,0.002573,-0.003250,0.249979,0,0);}
.m3b_c01043{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);}
.m4e_c01043{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);}
.mbf_c01043{transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198687,0.001788,-0.002250,0.249990,0,0);}
.mb_c01043{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);}
.m3d_c01043{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);}
.m88_c01043{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);}
.mcc_c01043{transform:matrix(0.198911,0.002387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198911,0.002387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198911,0.002387,-0.003000,0.249982,0,0);}
.m5d_c01043{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);}
.m31_c01043{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);}
.m7d_c01043{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);}
.me3_c01043{transform:matrix(0.199786,0.002397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199786,0.002397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199786,0.002397,-0.003000,0.249982,0,0);}
.m61_c01043{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);}
.mec_c01043{transform:matrix(0.200818,0.002611,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200818,0.002611,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200818,0.002611,-0.003250,0.249979,0,0);}
.m73_c01043{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);}
.m2b_c01043{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);}
.m67_c01043{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);}
.m33_c01043{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);}
.m5f_c01043{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);}
.m87_c01043{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m69_c01043{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);}
.m12_c01043{transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202370,0.000000,0.000000,0.250000,0,0);}
.m8c_c01043{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);}
.m50_c01043{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);}
.m17_c01043{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);}
.m10_c01043{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);}
.m5e_c01043{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);}
.m1a_c01043{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);}
.m3e_c01043{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);}
.m48_c01043{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);}
.m30_c01043{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);}
.md_c01043{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);}
.mb7_c01043{transform:matrix(0.204532,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204532,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204532,0.001841,-0.002250,0.249990,0,0);}
.m18_c01043{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);}
.m8f_c01043{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);}
.meb_c01043{transform:matrix(0.205043,0.002666,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205043,0.002666,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205043,0.002666,-0.003250,0.249979,0,0);}
.mf1_c01043{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);}
.m27_c01043{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);}
.m13_c01043{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);}
.md4_c01043{transform:matrix(0.205535,0.002466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205535,0.002466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205535,0.002466,-0.003000,0.249982,0,0);}
.md0_c01043{transform:matrix(0.207215,0.002487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207215,0.002487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207215,0.002487,-0.003000,0.249982,0,0);}
.md2_c01043{transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);}
.maf_c01043{transform:matrix(0.208082,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208082,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208082,0.001873,-0.002250,0.249990,0,0);}
.mdd_c01043{transform:matrix(0.209600,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209600,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209600,0.002515,-0.003000,0.249982,0,0);}
.mc1_c01043{transform:matrix(0.210409,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210409,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210409,0.002104,-0.002500,0.249988,0,0);}
.mab_c01043{transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211436,0.001903,-0.002250,0.249990,0,0);}
.mff_c01043{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);}
.mca_c01043{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);}
.m25_c01043{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);}
.ma6_c01043{transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213601,0.001922,-0.002250,0.249990,0,0);}
.m5b_c01043{transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214120,0.000000,0.000000,0.250000,0,0);}
.m3_c01043{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);}
.m21_c01043{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);}
.m96_c01043{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);}
.mef_c01043{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);}
.m8_c01043{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m5c_c01043{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);}
.m38_c01043{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);}
.m3f_c01043{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);}
.mdc_c01043{transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217409,0.002609,-0.003000,0.249982,0,0);}
.m7_c01043{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);}
.mbc_c01043{transform:matrix(0.219581,0.001976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219581,0.001976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219581,0.001976,-0.002250,0.249990,0,0);}
.m4a_c01043{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_c01043{transform:matrix(0.220371,0.001983,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220371,0.001983,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220371,0.001983,-0.002250,0.249990,0,0);}
.m95_c01043{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);}
.m8e_c01043{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);}
.mbd_c01043{transform:matrix(0.224531,0.002021,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224531,0.002021,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224531,0.002021,-0.002250,0.249990,0,0);}
.m49_c01043{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);}
.m62_c01043{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);}
.m104_c01043{transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225601,0.002933,-0.003250,0.249979,0,0);}
.m70_c01043{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);}
.m11_c01043{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);}
.m16_c01043{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);}
.m15_c01043{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);}
.mb9_c01043{transform:matrix(0.226966,0.002043,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226966,0.002043,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226966,0.002043,-0.002250,0.249990,0,0);}
.mde_c01043{transform:matrix(0.230728,0.002769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230728,0.002769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230728,0.002769,-0.003000,0.249982,0,0);}
.mfd_c01043{transform:matrix(0.230925,0.003002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230925,0.003002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230925,0.003002,-0.003250,0.249979,0,0);}
.m51_c01043{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);}
.ma2_c01043{transform:matrix(0.232636,0.002094,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232636,0.002094,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232636,0.002094,-0.002250,0.249990,0,0);}
.m3c_c01043{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);}
.md3_c01043{transform:matrix(0.234923,0.002819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234923,0.002819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234923,0.002819,-0.003000,0.249982,0,0);}
.m71_c01043{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);}
.m4_c01043{transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236055,0.000000,0.000000,0.250000,0,0);}
.m8d_c01043{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);}
.m57_c01043{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);}
.m7b_c01043{transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240140,0.000000,0.000000,0.250000,0,0);}
.m1f_c01043{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.mea_c01043{transform:matrix(0.245024,0.003185,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245024,0.003185,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245024,0.003185,-0.003250,0.249979,0,0);}
.mf_c01043{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);}
.med_c01043{transform:matrix(0.251739,0.003273,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251739,0.003273,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251739,0.003273,-0.003250,0.249979,0,0);}
.mbb_c01043{transform:matrix(0.255700,0.002301,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255700,0.002301,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255700,0.002301,-0.002250,0.249990,0,0);}
.mf8_c01043{transform:matrix(0.257228,0.003344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257228,0.003344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257228,0.003344,-0.003250,0.249979,0,0);}
.mba_c01043{transform:matrix(0.262739,0.002365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262739,0.002365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262739,0.002365,-0.002250,0.249990,0,0);}
.m14_c01043{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m6_c01043{transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270135,0.000000,0.000000,0.250000,0,0);}
.m6f_c01043{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.mb6_c01043{transform:matrix(0.280799,0.002527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280799,0.002527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280799,0.002527,-0.002250,0.249990,0,0);}
.me0_c01043{transform:matrix(0.284075,0.003409,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284075,0.003409,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284075,0.003409,-0.003000,0.249982,0,0);}
.mf7_c01043{transform:matrix(0.285276,0.003709,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285276,0.003709,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285276,0.003709,-0.003250,0.249979,0,0);}
.mce_c01043{transform:matrix(0.289454,0.003473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289454,0.003473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289454,0.003473,-0.003000,0.249982,0,0);}
.m20_c01043{transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299345,0.000000,0.000000,0.250000,0,0);}
.m19_c01043{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);}
.mbe_c01043{transform:matrix(0.330652,0.002976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330652,0.002976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330652,0.002976,-0.002250,0.249990,0,0);}
.mcd_c01043{transform:matrix(0.347585,0.004171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.347585,0.004171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.347585,0.004171,-0.003000,0.249982,0,0);}
.mf2_c01043{transform:matrix(0.351905,0.004575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351905,0.004575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351905,0.004575,-0.003250,0.249979,0,0);}
.me6_c01043{transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369615,0.000000,0.000000,0.250000,0,0);}
.m1_c01043{transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);}
.m102_c01043{transform:matrix(0.375938,0.004887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.375938,0.004887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.375938,0.004887,-0.003250,0.249979,0,0);}
.m2_c01043{transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412235,0.000000,0.000000,0.250000,0,0);}
.me8_c01043{transform:matrix(0.540590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540590,0.000000,0.000000,0.250000,0,0);}
.m10b_c01043{transform:matrix(0.571330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571330,0.000000,0.000000,0.250000,0,0);}
.me7_c01043{transform:matrix(0.735320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735320,0.000000,0.000000,0.250000,0,0);}
.me9_c01043{transform:matrix(1.139530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.139530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.139530,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls0_c01043{letter-spacing:0.000000px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:0.000000px;}
.fc0_c01043{color:transparent;}
.fs15_c01043{font-size:23.100000px;}
.fs16_c01043{font-size:54.604614px;}
.fs17_c01043{font-size:55.654702px;}
.fs1_c01043{font-size:63.000000px;}
.fs10_c01043{font-size:63.002551px;}
.fs2_c01043{font-size:64.050000px;}
.fs9_c01043{font-size:67.200000px;}
.fs7_c01043{font-size:68.250000px;}
.fs5_c01043{font-size:69.300000px;}
.fs14_c01043{font-size:69.304989px;}
.fsc_c01043{font-size:70.350000px;}
.fs6_c01043{font-size:71.400000px;}
.fsf_c01043{font-size:71.402892px;}
.fs12_c01043{font-size:71.405141px;}
.fs4_c01043{font-size:72.450000px;}
.fse_c01043{font-size:72.452934px;}
.fs11_c01043{font-size:72.453622px;}
.fsa_c01043{font-size:73.500000px;}
.fsb_c01043{font-size:74.550000px;}
.fs13_c01043{font-size:74.555367px;}
.fsd_c01043{font-size:76.650000px;}
.fs18_c01043{font-size:82.950000px;}
.fs3_c01043{font-size:92.400000px;}
.fs8_c01043{font-size:98.700000px;}
.fs0_c01043{font-size:99.750000px;}
.y0_c01043{bottom:0.000000px;}
.y8d_c01043{bottom:124.461000px;}
.y8c_c01043{bottom:171.847440px;}
.y8b_c01043{bottom:172.166192px;}
.y8a_c01043{bottom:172.484943px;}
.y89_c01043{bottom:172.674860px;}
.y88_c01043{bottom:173.049602px;}
.y87_c01043{bottom:173.287958px;}
.y86_c01043{bottom:173.532539px;}
.y85_c01043{bottom:173.804354px;}
.y84_c01043{bottom:173.936174px;}
.y83_c01043{bottom:174.271079px;}
.y82_c01043{bottom:174.338910px;}
.y81_c01043{bottom:174.793326px;}
.y80_c01043{bottom:174.939485px;}
.y7f_c01043{bottom:175.103025px;}
.y7e_c01043{bottom:175.528412px;}
.y7d_c01043{bottom:175.720280px;}
.y7c_c01043{bottom:176.038973px;}
.y7b_c01043{bottom:190.470692px;}
.y7a_c01043{bottom:190.671971px;}
.y79_c01043{bottom:191.106528px;}
.y78_c01043{bottom:191.991438px;}
.y77_c01043{bottom:192.573630px;}
.y76_c01043{bottom:192.872097px;}
.y75_c01043{bottom:193.222571px;}
.y74_c01043{bottom:193.416557px;}
.y73_c01043{bottom:193.967315px;}
.y72_c01043{bottom:194.194899px;}
.y71_c01043{bottom:194.883171px;}
.y70_c01043{bottom:195.160812px;}
.y6f_c01043{bottom:195.374903px;}
.y6e_c01043{bottom:195.789278px;}
.y6d_c01043{bottom:196.024526px;}
.y6c_c01043{bottom:196.291500px;}
.y6b_c01043{bottom:228.571500px;}
.y68_c01043{bottom:242.679066px;}
.y6a_c01043{bottom:242.679096px;}
.y69_c01043{bottom:242.679144px;}
.y63_c01043{bottom:242.679390px;}
.y67_c01043{bottom:242.679834px;}
.y64_c01043{bottom:242.680062px;}
.y65_c01043{bottom:242.680080px;}
.y66_c01043{bottom:242.680416px;}
.y62_c01043{bottom:263.908932px;}
.y61_c01043{bottom:264.812256px;}
.y60_c01043{bottom:265.273626px;}
.y5f_c01043{bottom:266.110044px;}
.y5e_c01043{bottom:266.373966px;}
.y5d_c01043{bottom:267.174144px;}
.y5c_c01043{bottom:267.657828px;}
.y5b_c01043{bottom:268.089462px;}
.y5a_c01043{bottom:268.921014px;}
.y59_c01043{bottom:286.783494px;}
.y58_c01043{bottom:287.787786px;}
.y57_c01043{bottom:288.328866px;}
.y56_c01043{bottom:288.623724px;}
.y55_c01043{bottom:289.550454px;}
.y54_c01043{bottom:289.790826px;}
.y53_c01043{bottom:289.933530px;}
.y52_c01043{bottom:290.441472px;}
.y51_c01043{bottom:290.813532px;}
.y50_c01043{bottom:291.322914px;}
.y4f_c01043{bottom:291.601500px;}
.y4e_c01043{bottom:310.552845px;}
.y4d_c01043{bottom:310.774320px;}
.y4c_c01043{bottom:311.208615px;}
.y4b_c01043{bottom:311.546550px;}
.y4a_c01043{bottom:311.648850px;}
.y49_c01043{bottom:312.186480px;}
.y48_c01043{bottom:312.815655px;}
.y47_c01043{bottom:313.336755px;}
.y46_c01043{bottom:313.470000px;}
.y45_c01043{bottom:333.135948px;}
.y44_c01043{bottom:333.385271px;}
.y43_c01043{bottom:334.201872px;}
.y42_c01043{bottom:334.542296px;}
.y41_c01043{bottom:334.730304px;}
.y40_c01043{bottom:335.383499px;}
.y3f_c01043{bottom:335.793785px;}
.y3e_c01043{bottom:336.280886px;}
.y3d_c01043{bottom:336.538782px;}
.y3c_c01043{bottom:336.960396px;}
.y3b_c01043{bottom:356.705663px;}
.y3a_c01043{bottom:357.137963px;}
.y39_c01043{bottom:357.369402px;}
.y38_c01043{bottom:357.694056px;}
.y37_c01043{bottom:357.929507px;}
.y36_c01043{bottom:358.250190px;}
.y35_c01043{bottom:358.751603px;}
.y34_c01043{bottom:359.039735px;}
.y33_c01043{bottom:359.429141px;}
.y32_c01043{bottom:359.822543px;}
.y31_c01043{bottom:360.179721px;}
.y30_c01043{bottom:379.098144px;}
.y2f_c01043{bottom:379.365458px;}
.y2e_c01043{bottom:379.712907px;}
.y2d_c01043{bottom:379.866038px;}
.y2c_c01043{bottom:380.339874px;}
.y2b_c01043{bottom:381.156435px;}
.y2a_c01043{bottom:381.637575px;}
.y29_c01043{bottom:381.999321px;}
.y28_c01043{bottom:382.191656px;}
.y27_c01043{bottom:382.320000px;}
.y26_c01043{bottom:403.407000px;}
.y25_c01043{bottom:426.648000px;}
.y24_c01043{bottom:449.098500px;}
.y23_c01043{bottom:492.885000px;}
.y22_c01043{bottom:493.057500px;}
.y21_c01043{bottom:493.258500px;}
.y20_c01043{bottom:493.654500px;}
.y1f_c01043{bottom:493.875000px;}
.y1e_c01043{bottom:494.335500px;}
.y1d_c01043{bottom:494.523000px;}
.y1c_c01043{bottom:494.911500px;}
.y1b_c01043{bottom:513.993000px;}
.y1a_c01043{bottom:514.261500px;}
.y19_c01043{bottom:514.461000px;}
.y18_c01043{bottom:515.047500px;}
.y17_c01043{bottom:515.371500px;}
.y16_c01043{bottom:515.760000px;}
.y15_c01043{bottom:516.454500px;}
.y14_c01043{bottom:516.784500px;}
.y13_c01043{bottom:517.173000px;}
.y12_c01043{bottom:517.386000px;}
.y11_c01043{bottom:517.515000px;}
.y10_c01043{bottom:517.864500px;}
.yf_c01043{bottom:538.923000px;}
.ye_c01043{bottom:563.101500px;}
.yd_c01043{bottom:584.953500px;}
.yc_c01043{bottom:607.536000px;}
.yb_c01043{bottom:631.078500px;}
.ya_c01043{bottom:653.692500px;}
.y9_c01043{bottom:675.372000px;}
.y8_c01043{bottom:698.709000px;}
.y7_c01043{bottom:720.696000px;}
.y6_c01043{bottom:743.713500px;}
.y5_c01043{bottom:766.261500px;}
.y4_c01043{bottom:788.856000px;}
.y3_c01043{bottom:811.738500px;}
.y2_c01043{bottom:834.573000px;}
.y1_c01043{bottom:879.663000px;}
.h17_c01043{height:23.100000px;}
.h18_c01043{height:54.604614px;}
.h19_c01043{height:55.654702px;}
.h3_c01043{height:63.000000px;}
.h12_c01043{height:63.002551px;}
.h4_c01043{height:64.050000px;}
.hb_c01043{height:67.200000px;}
.h9_c01043{height:68.250000px;}
.h7_c01043{height:69.300000px;}
.h16_c01043{height:69.304989px;}
.he_c01043{height:70.350000px;}
.h8_c01043{height:71.400000px;}
.h11_c01043{height:71.402892px;}
.h14_c01043{height:71.405141px;}
.h6_c01043{height:72.450000px;}
.h10_c01043{height:72.452934px;}
.h13_c01043{height:72.453622px;}
.hc_c01043{height:73.500000px;}
.hd_c01043{height:74.550000px;}
.h15_c01043{height:74.555367px;}
.hf_c01043{height:76.650000px;}
.h1a_c01043{height:82.950000px;}
.h5_c01043{height:92.400000px;}
.ha_c01043{height:98.700000px;}
.h2_c01043{height:99.750000px;}
.h0_c01043{height:1008.450000px;}
.h1_c01043{height:1008.750000px;}
.w1_c01043{width:700.500000px;}
.w0_c01043{width:700.650000px;}
.x0_c01043{left:0.000000px;}
.x98_c01043{left:79.920000px;}
.x92_c01043{left:124.371124px;}
.x1_c01043{left:134.190000px;}
.x80_c01043{left:136.747500px;}
.x6c_c01043{left:145.464000px;}
.x89_c01043{left:157.555500px;}
.x7e_c01043{left:158.898000px;}
.x5e_c01043{left:160.110000px;}
.x40_c01043{left:161.730000px;}
.x31_c01043{left:163.620000px;}
.x25_c01043{left:164.700000px;}
.x1a_c01043{left:166.590000px;}
.x4_c01043{left:167.940000px;}
.x8a_c01043{left:175.651500px;}
.x64_c01043{left:178.740000px;}
.x6d_c01043{left:181.095000px;}
.x68_c01043{left:182.790000px;}
.x5f_c01043{left:186.300000px;}
.x32_c01043{left:192.510000px;}
.x5_c01043{left:193.860000px;}
.x10_c01043{left:197.370000px;}
.x7a_c01043{left:198.858327px;}
.x4d_c01043{left:201.690000px;}
.x41_c01043{left:203.040000px;}
.x3b_c01043{left:205.470000px;}
.x8b_c01043{left:207.526500px;}
.x2f_c01043{left:208.710000px;}
.x1b_c01043{left:210.330000px;}
.x6_c01043{left:218.970000px;}
.x6e_c01043{left:221.289000px;}
.x33_c01043{left:222.750000px;}
.x65_c01043{left:224.370000px;}
.x26_c01043{left:226.800000px;}
.x93_c01043{left:228.334026px;}
.x22_c01043{left:229.770000px;}
.x11_c01043{left:231.390000px;}
.x5c_c01043{left:233.172000px;}
.x73_c01043{left:235.860820px;}
.x86_c01043{left:237.336510px;}
.x1c_c01043{left:242.190000px;}
.x2_c01043{left:243.810000px;}
.x8c_c01043{left:245.352000px;}
.x42_c01043{left:247.050000px;}
.x30_c01043{left:249.750000px;}
.x4a_c01043{left:252.180000px;}
.x60_c01043{left:258.930000px;}
.x7_c01043{left:262.440000px;}
.x27_c01043{left:264.060000px;}
.x7b_c01043{left:266.634612px;}
.x43_c01043{left:268.110000px;}
.x55_c01043{left:269.835000px;}
.x38_c01043{left:271.620000px;}
.x6f_c01043{left:274.749000px;}
.x66_c01043{left:276.750000px;}
.x69_c01043{left:282.150000px;}
.x8_c01043{left:283.770000px;}
.x12_c01043{left:288.630000px;}
.x34_c01043{left:291.600000px;}
.x23_c01043{left:294.840000px;}
.x8d_c01043{left:298.296000px;}
.x56_c01043{left:302.812500px;}
.x19_c01043{left:304.290000px;}
.x28_c01043{left:305.640000px;}
.x81_c01043{left:307.668000px;}
.x4b_c01043{left:308.880000px;}
.x9_c01043{left:312.390000px;}
.x3c_c01043{left:316.440000px;}
.x52_c01043{left:319.140000px;}
.x4e_c01043{left:321.300000px;}
.x1d_c01043{left:327.780000px;}
.x13_c01043{left:329.940000px;}
.x44_c01043{left:331.560000px;}
.x6a_c01043{left:333.180000px;}
.x29_c01043{left:336.420000px;}
.x4f_c01043{left:338.040000px;}
.x53_c01043{left:341.280000px;}
.xa_c01043{left:346.950000px;}
.x61_c01043{left:348.030000px;}
.x1e_c01043{left:350.460000px;}
.x74_c01043{left:353.854267px;}
.x14_c01043{left:355.590000px;}
.x67_c01043{left:358.830000px;}
.x24_c01043{left:360.180000px;}
.x54_c01043{left:362.610000px;}
.xb_c01043{left:365.310000px;}
.x5d_c01043{left:367.647000px;}
.x35_c01043{left:369.360000px;}
.x88_c01043{left:370.440000px;}
.x57_c01043{left:372.193500px;}
.x50_c01043{left:376.110000px;}
.x3_c01043{left:378.000000px;}
.x1f_c01043{left:379.080000px;}
.x7c_c01043{left:380.353560px;}
.x45_c01043{left:381.780000px;}
.x82_c01043{left:384.895500px;}
.x75_c01043{left:385.985484px;}
.x62_c01043{left:389.070000px;}
.x3d_c01043{left:390.420000px;}
.x20_c01043{left:393.660000px;}
.x2a_c01043{left:396.360000px;}
.x36_c01043{left:398.250000px;}
.xc_c01043{left:400.950000px;}
.x4c_c01043{left:402.840000px;}
.x15_c01043{left:405.270000px;}
.x76_c01043{left:409.479768px;}
.x3e_c01043{left:411.750000px;}
.x51_c01043{left:413.910000px;}
.x2b_c01043{left:414.990000px;}
.x70_c01043{left:418.126500px;}
.x84_c01043{left:419.961888px;}
.x8e_c01043{left:423.009000px;}
.x16_c01043{left:428.760000px;}
.x87_c01043{left:430.940874px;}
.x21_c01043{left:434.160000px;}
.x7f_c01043{left:437.289000px;}
.x39_c01043{left:438.750000px;}
.x46_c01043{left:440.370000px;}
.x77_c01043{left:441.885471px;}
.x58_c01043{left:443.464500px;}
.x37_c01043{left:445.230000px;}
.xd_c01043{left:450.900000px;}
.x47_c01043{left:453.870000px;}
.x2c_c01043{left:456.840000px;}
.x3a_c01043{left:463.050000px;}
.x78_c01043{left:465.100768px;}
.x17_c01043{left:468.450000px;}
.xe_c01043{left:471.420000px;}
.x71_c01043{left:473.746500px;}
.x3f_c01043{left:477.360000px;}
.x48_c01043{left:480.600000px;}
.x7d_c01043{left:485.576670px;}
.x2d_c01043{left:493.290000px;}
.x94_c01043{left:498.091546px;}
.x59_c01043{left:502.096500px;}
.x72_c01043{left:503.448000px;}
.x49_c01043{left:507.060000px;}
.x79_c01043{left:508.300377px;}
.x63_c01043{left:511.650000px;}
.x18_c01043{left:512.730000px;}
.x6b_c01043{left:515.700000px;}
.x85_c01043{left:517.434048px;}
.x95_c01043{left:519.163138px;}
.x5a_c01043{left:521.980500px;}
.xf_c01043{left:525.150000px;}
.x8f_c01043{left:535.863000px;}
.x83_c01043{left:538.248000px;}
.x2e_c01043{left:543.240000px;}
.x5b_c01043{left:548.775000px;}
.x96_c01043{left:554.530471px;}
.x90_c01043{left:569.290500px;}
.x91_c01043{left:584.773500px;}
.x97_c01043{left:589.897805px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ws0_c01043{word-spacing:0.000000pt;}
.fs15_c01043{font-size:20.533333pt;}
.fs16_c01043{font-size:48.537434pt;}
.fs17_c01043{font-size:49.470846pt;}
.fs1_c01043{font-size:56.000000pt;}
.fs10_c01043{font-size:56.002268pt;}
.fs2_c01043{font-size:56.933333pt;}
.fs9_c01043{font-size:59.733333pt;}
.fs7_c01043{font-size:60.666667pt;}
.fs5_c01043{font-size:61.600000pt;}
.fs14_c01043{font-size:61.604435pt;}
.fsc_c01043{font-size:62.533333pt;}
.fs6_c01043{font-size:63.466667pt;}
.fsf_c01043{font-size:63.469237pt;}
.fs12_c01043{font-size:63.471236pt;}
.fs4_c01043{font-size:64.400000pt;}
.fse_c01043{font-size:64.402608pt;}
.fs11_c01043{font-size:64.403220pt;}
.fsa_c01043{font-size:65.333333pt;}
.fsb_c01043{font-size:66.266667pt;}
.fs13_c01043{font-size:66.271438pt;}
.fsd_c01043{font-size:68.133333pt;}
.fs18_c01043{font-size:73.733333pt;}
.fs3_c01043{font-size:82.133333pt;}
.fs8_c01043{font-size:87.733333pt;}
.fs0_c01043{font-size:88.666667pt;}
.y0_c01043{bottom:0.000000pt;}
.y8d_c01043{bottom:110.632000pt;}
.y8c_c01043{bottom:152.753280pt;}
.y8b_c01043{bottom:153.036615pt;}
.y8a_c01043{bottom:153.319949pt;}
.y89_c01043{bottom:153.488764pt;}
.y88_c01043{bottom:153.821868pt;}
.y87_c01043{bottom:154.033740pt;}
.y86_c01043{bottom:154.251145pt;}
.y85_c01043{bottom:154.492759pt;}
.y84_c01043{bottom:154.609932pt;}
.y83_c01043{bottom:154.907625pt;}
.y82_c01043{bottom:154.967920pt;}
.y81_c01043{bottom:155.371845pt;}
.y80_c01043{bottom:155.501764pt;}
.y7f_c01043{bottom:155.647133pt;}
.y7e_c01043{bottom:156.025255pt;}
.y7d_c01043{bottom:156.195804pt;}
.y7c_c01043{bottom:156.479087pt;}
.y7b_c01043{bottom:169.307281pt;}
.y7a_c01043{bottom:169.486196pt;}
.y79_c01043{bottom:169.872469pt;}
.y78_c01043{bottom:170.659056pt;}
.y77_c01043{bottom:171.176560pt;}
.y76_c01043{bottom:171.441864pt;}
.y75_c01043{bottom:171.753396pt;}
.y74_c01043{bottom:171.925828pt;}
.y73_c01043{bottom:172.415391pt;}
.y72_c01043{bottom:172.617688pt;}
.y71_c01043{bottom:173.229485pt;}
.y70_c01043{bottom:173.476277pt;}
.y6f_c01043{bottom:173.666580pt;}
.y6e_c01043{bottom:174.034913pt;}
.y6d_c01043{bottom:174.244023pt;}
.y6c_c01043{bottom:174.481333pt;}
.y6b_c01043{bottom:203.174667pt;}
.y68_c01043{bottom:215.714725pt;}
.y6a_c01043{bottom:215.714752pt;}
.y69_c01043{bottom:215.714795pt;}
.y63_c01043{bottom:215.715013pt;}
.y67_c01043{bottom:215.715408pt;}
.y64_c01043{bottom:215.715611pt;}
.y65_c01043{bottom:215.715627pt;}
.y66_c01043{bottom:215.715925pt;}
.y62_c01043{bottom:234.585717pt;}
.y61_c01043{bottom:235.388672pt;}
.y60_c01043{bottom:235.798779pt;}
.y5f_c01043{bottom:236.542261pt;}
.y5e_c01043{bottom:236.776859pt;}
.y5d_c01043{bottom:237.488128pt;}
.y5c_c01043{bottom:237.918069pt;}
.y5b_c01043{bottom:238.301744pt;}
.y5a_c01043{bottom:239.040901pt;}
.y59_c01043{bottom:254.918661pt;}
.y58_c01043{bottom:255.811365pt;}
.y57_c01043{bottom:256.292325pt;}
.y56_c01043{bottom:256.554421pt;}
.y55_c01043{bottom:257.378181pt;}
.y54_c01043{bottom:257.591845pt;}
.y53_c01043{bottom:257.718693pt;}
.y52_c01043{bottom:258.170197pt;}
.y51_c01043{bottom:258.500917pt;}
.y50_c01043{bottom:258.953701pt;}
.y4f_c01043{bottom:259.201333pt;}
.y4e_c01043{bottom:276.046973pt;}
.y4d_c01043{bottom:276.243840pt;}
.y4c_c01043{bottom:276.629880pt;}
.y4b_c01043{bottom:276.930267pt;}
.y4a_c01043{bottom:277.021200pt;}
.y49_c01043{bottom:277.499093pt;}
.y48_c01043{bottom:278.058360pt;}
.y47_c01043{bottom:278.521560pt;}
.y46_c01043{bottom:278.640000pt;}
.y45_c01043{bottom:296.120843pt;}
.y44_c01043{bottom:296.342463pt;}
.y43_c01043{bottom:297.068331pt;}
.y42_c01043{bottom:297.370929pt;}
.y41_c01043{bottom:297.538048pt;}
.y40_c01043{bottom:298.118665pt;}
.y3f_c01043{bottom:298.483364pt;}
.y3e_c01043{bottom:298.916343pt;}
.y3d_c01043{bottom:299.145584pt;}
.y3c_c01043{bottom:299.520352pt;}
.y3b_c01043{bottom:317.071700pt;}
.y3a_c01043{bottom:317.455967pt;}
.y39_c01043{bottom:317.661691pt;}
.y38_c01043{bottom:317.950272pt;}
.y37_c01043{bottom:318.159561pt;}
.y36_c01043{bottom:318.444613pt;}
.y35_c01043{bottom:318.890313pt;}
.y34_c01043{bottom:319.146431pt;}
.y33_c01043{bottom:319.492569pt;}
.y32_c01043{bottom:319.842260pt;}
.y31_c01043{bottom:320.159752pt;}
.y30_c01043{bottom:336.976128pt;}
.y2f_c01043{bottom:337.213740pt;}
.y2e_c01043{bottom:337.522584pt;}
.y2d_c01043{bottom:337.658700pt;}
.y2c_c01043{bottom:338.079888pt;}
.y2b_c01043{bottom:338.805720pt;}
.y2a_c01043{bottom:339.233400pt;}
.y29_c01043{bottom:339.554952pt;}
.y28_c01043{bottom:339.725916pt;}
.y27_c01043{bottom:339.840000pt;}
.y26_c01043{bottom:358.584000pt;}
.y25_c01043{bottom:379.242667pt;}
.y24_c01043{bottom:399.198667pt;}
.y23_c01043{bottom:438.120000pt;}
.y22_c01043{bottom:438.273333pt;}
.y21_c01043{bottom:438.452000pt;}
.y20_c01043{bottom:438.804000pt;}
.y1f_c01043{bottom:439.000000pt;}
.y1e_c01043{bottom:439.409333pt;}
.y1d_c01043{bottom:439.576000pt;}
.y1c_c01043{bottom:439.921333pt;}
.y1b_c01043{bottom:456.882667pt;}
.y1a_c01043{bottom:457.121333pt;}
.y19_c01043{bottom:457.298667pt;}
.y18_c01043{bottom:457.820000pt;}
.y17_c01043{bottom:458.108000pt;}
.y16_c01043{bottom:458.453333pt;}
.y15_c01043{bottom:459.070667pt;}
.y14_c01043{bottom:459.364000pt;}
.y13_c01043{bottom:459.709333pt;}
.y12_c01043{bottom:459.898667pt;}
.y11_c01043{bottom:460.013333pt;}
.y10_c01043{bottom:460.324000pt;}
.yf_c01043{bottom:479.042667pt;}
.ye_c01043{bottom:500.534667pt;}
.yd_c01043{bottom:519.958667pt;}
.yc_c01043{bottom:540.032000pt;}
.yb_c01043{bottom:560.958667pt;}
.ya_c01043{bottom:581.060000pt;}
.y9_c01043{bottom:600.330667pt;}
.y8_c01043{bottom:621.074667pt;}
.y7_c01043{bottom:640.618667pt;}
.y6_c01043{bottom:661.078667pt;}
.y5_c01043{bottom:681.121333pt;}
.y4_c01043{bottom:701.205333pt;}
.y3_c01043{bottom:721.545333pt;}
.y2_c01043{bottom:741.842667pt;}
.y1_c01043{bottom:781.922667pt;}
.h17_c01043{height:20.533333pt;}
.h18_c01043{height:48.537434pt;}
.h19_c01043{height:49.470846pt;}
.h3_c01043{height:56.000000pt;}
.h12_c01043{height:56.002268pt;}
.h4_c01043{height:56.933333pt;}
.hb_c01043{height:59.733333pt;}
.h9_c01043{height:60.666667pt;}
.h7_c01043{height:61.600000pt;}
.h16_c01043{height:61.604435pt;}
.he_c01043{height:62.533333pt;}
.h8_c01043{height:63.466667pt;}
.h11_c01043{height:63.469237pt;}
.h14_c01043{height:63.471236pt;}
.h6_c01043{height:64.400000pt;}
.h10_c01043{height:64.402608pt;}
.h13_c01043{height:64.403220pt;}
.hc_c01043{height:65.333333pt;}
.hd_c01043{height:66.266667pt;}
.h15_c01043{height:66.271438pt;}
.hf_c01043{height:68.133333pt;}
.h1a_c01043{height:73.733333pt;}
.h5_c01043{height:82.133333pt;}
.ha_c01043{height:87.733333pt;}
.h2_c01043{height:88.666667pt;}
.h0_c01043{height:896.400000pt;}
.h1_c01043{height:896.666667pt;}
.w1_c01043{width:622.666667pt;}
.w0_c01043{width:622.800000pt;}
.x0_c01043{left:0.000000pt;}
.x98_c01043{left:71.040000pt;}
.x92_c01043{left:110.552111pt;}
.x1_c01043{left:119.280000pt;}
.x80_c01043{left:121.553333pt;}
.x6c_c01043{left:129.301333pt;}
.x89_c01043{left:140.049333pt;}
.x7e_c01043{left:141.242667pt;}
.x5e_c01043{left:142.320000pt;}
.x40_c01043{left:143.760000pt;}
.x31_c01043{left:145.440000pt;}
.x25_c01043{left:146.400000pt;}
.x1a_c01043{left:148.080000pt;}
.x4_c01043{left:149.280000pt;}
.x8a_c01043{left:156.134667pt;}
.x64_c01043{left:158.880000pt;}
.x6d_c01043{left:160.973333pt;}
.x68_c01043{left:162.480000pt;}
.x5f_c01043{left:165.600000pt;}
.x32_c01043{left:171.120000pt;}
.x5_c01043{left:172.320000pt;}
.x10_c01043{left:175.440000pt;}
.x7a_c01043{left:176.762957pt;}
.x4d_c01043{left:179.280000pt;}
.x41_c01043{left:180.480000pt;}
.x3b_c01043{left:182.640000pt;}
.x8b_c01043{left:184.468000pt;}
.x2f_c01043{left:185.520000pt;}
.x1b_c01043{left:186.960000pt;}
.x6_c01043{left:194.640000pt;}
.x6e_c01043{left:196.701333pt;}
.x33_c01043{left:198.000000pt;}
.x65_c01043{left:199.440000pt;}
.x26_c01043{left:201.600000pt;}
.x93_c01043{left:202.963579pt;}
.x22_c01043{left:204.240000pt;}
.x11_c01043{left:205.680000pt;}
.x5c_c01043{left:207.264000pt;}
.x73_c01043{left:209.654063pt;}
.x86_c01043{left:210.965787pt;}
.x1c_c01043{left:215.280000pt;}
.x2_c01043{left:216.720000pt;}
.x8c_c01043{left:218.090667pt;}
.x42_c01043{left:219.600000pt;}
.x30_c01043{left:222.000000pt;}
.x4a_c01043{left:224.160000pt;}
.x60_c01043{left:230.160000pt;}
.x7_c01043{left:233.280000pt;}
.x27_c01043{left:234.720000pt;}
.x7b_c01043{left:237.008544pt;}
.x43_c01043{left:238.320000pt;}
.x55_c01043{left:239.853333pt;}
.x38_c01043{left:241.440000pt;}
.x6f_c01043{left:244.221333pt;}
.x66_c01043{left:246.000000pt;}
.x69_c01043{left:250.800000pt;}
.x8_c01043{left:252.240000pt;}
.x12_c01043{left:256.560000pt;}
.x34_c01043{left:259.200000pt;}
.x23_c01043{left:262.080000pt;}
.x8d_c01043{left:265.152000pt;}
.x56_c01043{left:269.166667pt;}
.x19_c01043{left:270.480000pt;}
.x28_c01043{left:271.680000pt;}
.x81_c01043{left:273.482667pt;}
.x4b_c01043{left:274.560000pt;}
.x9_c01043{left:277.680000pt;}
.x3c_c01043{left:281.280000pt;}
.x52_c01043{left:283.680000pt;}
.x4e_c01043{left:285.600000pt;}
.x1d_c01043{left:291.360000pt;}
.x13_c01043{left:293.280000pt;}
.x44_c01043{left:294.720000pt;}
.x6a_c01043{left:296.160000pt;}
.x29_c01043{left:299.040000pt;}
.x4f_c01043{left:300.480000pt;}
.x53_c01043{left:303.360000pt;}
.xa_c01043{left:308.400000pt;}
.x61_c01043{left:309.360000pt;}
.x1e_c01043{left:311.520000pt;}
.x74_c01043{left:314.537127pt;}
.x14_c01043{left:316.080000pt;}
.x67_c01043{left:318.960000pt;}
.x24_c01043{left:320.160000pt;}
.x54_c01043{left:322.320000pt;}
.xb_c01043{left:324.720000pt;}
.x5d_c01043{left:326.797333pt;}
.x35_c01043{left:328.320000pt;}
.x88_c01043{left:329.280000pt;}
.x57_c01043{left:330.838667pt;}
.x50_c01043{left:334.320000pt;}
.x3_c01043{left:336.000000pt;}
.x1f_c01043{left:336.960000pt;}
.x7c_c01043{left:338.092053pt;}
.x45_c01043{left:339.360000pt;}
.x82_c01043{left:342.129333pt;}
.x75_c01043{left:343.098208pt;}
.x62_c01043{left:345.840000pt;}
.x3d_c01043{left:347.040000pt;}
.x20_c01043{left:349.920000pt;}
.x2a_c01043{left:352.320000pt;}
.x36_c01043{left:354.000000pt;}
.xc_c01043{left:356.400000pt;}
.x4c_c01043{left:358.080000pt;}
.x15_c01043{left:360.240000pt;}
.x76_c01043{left:363.982016pt;}
.x3e_c01043{left:366.000000pt;}
.x51_c01043{left:367.920000pt;}
.x2b_c01043{left:368.880000pt;}
.x70_c01043{left:371.668000pt;}
.x84_c01043{left:373.299456pt;}
.x8e_c01043{left:376.008000pt;}
.x16_c01043{left:381.120000pt;}
.x87_c01043{left:383.058555pt;}
.x21_c01043{left:385.920000pt;}
.x7f_c01043{left:388.701333pt;}
.x39_c01043{left:390.000000pt;}
.x46_c01043{left:391.440000pt;}
.x77_c01043{left:392.787085pt;}
.x58_c01043{left:394.190667pt;}
.x37_c01043{left:395.760000pt;}
.xd_c01043{left:400.800000pt;}
.x47_c01043{left:403.440000pt;}
.x2c_c01043{left:406.080000pt;}
.x3a_c01043{left:411.600000pt;}
.x78_c01043{left:413.422905pt;}
.x17_c01043{left:416.400000pt;}
.xe_c01043{left:419.040000pt;}
.x71_c01043{left:421.108000pt;}
.x3f_c01043{left:424.320000pt;}
.x48_c01043{left:427.200000pt;}
.x7d_c01043{left:431.623707pt;}
.x2d_c01043{left:438.480000pt;}
.x94_c01043{left:442.748041pt;}
.x59_c01043{left:446.308000pt;}
.x72_c01043{left:447.509333pt;}
.x49_c01043{left:450.720000pt;}
.x79_c01043{left:451.822557pt;}
.x63_c01043{left:454.800000pt;}
.x18_c01043{left:455.760000pt;}
.x6b_c01043{left:458.400000pt;}
.x85_c01043{left:459.941376pt;}
.x95_c01043{left:461.478345pt;}
.x5a_c01043{left:463.982667pt;}
.xf_c01043{left:466.800000pt;}
.x8f_c01043{left:476.322667pt;}
.x83_c01043{left:478.442667pt;}
.x2e_c01043{left:482.880000pt;}
.x5b_c01043{left:487.800000pt;}
.x96_c01043{left:492.915975pt;}
.x90_c01043{left:506.036000pt;}
.x91_c01043{left:519.798667pt;}
.x97_c01043{left:524.353604pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01044{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);}
.ma2_c01044{transform:matrix(0.033870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033870,0.000000,0.000000,0.250000,0,0);}
.m78_c01044{transform:matrix(0.086695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086695,0.000000,0.000000,0.250000,0,0);}
.m9b_c01044{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);}
.m6_c01044{transform:matrix(0.119444,-0.001194,0.002500,0.249988,0,0);-ms-transform:matrix(0.119444,-0.001194,0.002500,0.249988,0,0);-webkit-transform:matrix(0.119444,-0.001194,0.002500,0.249988,0,0);}
.m76_c01044{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);}
.m97_c01044{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);}
.m55_c01044{transform:matrix(0.138390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138390,0.000000,0.000000,0.250000,0,0);}
.m2b_c01044{transform:matrix(0.141229,-0.001271,0.002250,0.249990,0,0);-ms-transform:matrix(0.141229,-0.001271,0.002250,0.249990,0,0);-webkit-transform:matrix(0.141229,-0.001271,0.002250,0.249990,0,0);}
.mab_c01044{transform:matrix(0.145145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145145,0.000000,0.000000,0.250000,0,0);}
.m23_c01044{transform:matrix(0.145374,-0.001308,0.002250,0.249990,0,0);-ms-transform:matrix(0.145374,-0.001308,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145374,-0.001308,0.002250,0.249990,0,0);}
.mb_c01044{transform:matrix(0.145984,-0.001314,0.002250,0.249990,0,0);-ms-transform:matrix(0.145984,-0.001314,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145984,-0.001314,0.002250,0.249990,0,0);}
.m40_c01044{transform:matrix(0.148304,-0.001335,0.002250,0.249990,0,0);-ms-transform:matrix(0.148304,-0.001335,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148304,-0.001335,0.002250,0.249990,0,0);}
.m79_c01044{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);}
.m7d_c01044{transform:matrix(0.149090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149090,0.000000,0.000000,0.250000,0,0);}
.m12_c01044{transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);-ms-transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150729,-0.001357,0.002250,0.249990,0,0);}
.m75_c01044{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);}
.ma7_c01044{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m13_c01044{transform:matrix(0.153734,-0.001384,0.002250,0.249990,0,0);-ms-transform:matrix(0.153734,-0.001384,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153734,-0.001384,0.002250,0.249990,0,0);}
.mc_c01044{transform:matrix(0.155009,-0.001395,0.002250,0.249990,0,0);-ms-transform:matrix(0.155009,-0.001395,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155009,-0.001395,0.002250,0.249990,0,0);}
.mad_c01044{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m11_c01044{transform:matrix(0.156674,-0.001410,0.002250,0.249990,0,0);-ms-transform:matrix(0.156674,-0.001410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156674,-0.001410,0.002250,0.249990,0,0);}
.m44_c01044{transform:matrix(0.159139,-0.001432,0.002250,0.249990,0,0);-ms-transform:matrix(0.159139,-0.001432,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159139,-0.001432,0.002250,0.249990,0,0);}
.mb6_c01044{transform:matrix(0.159441,-0.001116,0.001750,0.249994,0,0);-ms-transform:matrix(0.159441,-0.001116,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159441,-0.001116,0.001750,0.249994,0,0);}
.m88_c01044{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);}
.mc6_c01044{transform:matrix(0.160185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160185,0.000000,0.000000,0.250000,0,0);}
.m5d_c01044{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);}
.m2f_c01044{transform:matrix(0.160658,-0.001446,0.002250,0.249990,0,0);-ms-transform:matrix(0.160658,-0.001446,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160658,-0.001446,0.002250,0.249990,0,0);}
.mf_c01044{transform:matrix(0.161173,-0.001451,0.002250,0.249990,0,0);-ms-transform:matrix(0.161173,-0.001451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161173,-0.001451,0.002250,0.249990,0,0);}
.mb7_c01044{transform:matrix(0.161861,-0.001133,0.001750,0.249994,0,0);-ms-transform:matrix(0.161861,-0.001133,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161861,-0.001133,0.001750,0.249994,0,0);}
.ma8_c01044{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_c01044{transform:matrix(0.162736,-0.001139,0.001750,0.249994,0,0);-ms-transform:matrix(0.162736,-0.001139,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162736,-0.001139,0.001750,0.249994,0,0);}
.m35_c01044{transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);-ms-transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163928,-0.001475,0.002250,0.249990,0,0);}
.m18_c01044{transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);-ms-transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164663,-0.001482,0.002250,0.249990,0,0);}
.ma0_c01044{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);}
.m5b_c01044{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);}
.m5f_c01044{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);}
.m2e_c01044{transform:matrix(0.166798,-0.001501,0.002250,0.249990,0,0);-ms-transform:matrix(0.166798,-0.001501,0.002250,0.249990,0,0);-webkit-transform:matrix(0.166798,-0.001501,0.002250,0.249990,0,0);}
.m14_c01044{transform:matrix(0.167653,-0.001509,0.002250,0.249990,0,0);-ms-transform:matrix(0.167653,-0.001509,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167653,-0.001509,0.002250,0.249990,0,0);}
.m71_c01044{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);}
.m69_c01044{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);}
.m48_c01044{transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);-ms-transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168643,-0.001518,0.002250,0.249990,0,0);}
.m17_c01044{transform:matrix(0.169408,-0.001525,0.002250,0.249990,0,0);-ms-transform:matrix(0.169408,-0.001525,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169408,-0.001525,0.002250,0.249990,0,0);}
.m9f_c01044{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);}
.m89_c01044{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);}
.m42_c01044{transform:matrix(0.170718,-0.001536,0.002250,0.249990,0,0);-ms-transform:matrix(0.170718,-0.001536,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170718,-0.001536,0.002250,0.249990,0,0);}
.mc7_c01044{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);}
.m3e_c01044{transform:matrix(0.172838,-0.001556,0.002250,0.249990,0,0);-ms-transform:matrix(0.172838,-0.001556,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172838,-0.001556,0.002250,0.249990,0,0);}
.mc9_c01044{transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);}
.ma5_c01044{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);}
.ma3_c01044{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);}
.m16_c01044{transform:matrix(0.173323,-0.001560,0.002250,0.249990,0,0);-ms-transform:matrix(0.173323,-0.001560,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173323,-0.001560,0.002250,0.249990,0,0);}
.mcc_c01044{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);}
.m29_c01044{transform:matrix(0.174708,-0.001572,0.002250,0.249990,0,0);-ms-transform:matrix(0.174708,-0.001572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174708,-0.001572,0.002250,0.249990,0,0);}
.m19_c01044{transform:matrix(0.174773,-0.001573,0.002250,0.249990,0,0);-ms-transform:matrix(0.174773,-0.001573,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174773,-0.001573,0.002250,0.249990,0,0);}
.m2d_c01044{transform:matrix(0.175013,-0.001575,0.002250,0.249990,0,0);-ms-transform:matrix(0.175013,-0.001575,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175013,-0.001575,0.002250,0.249990,0,0);}
.maa_c01044{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);}
.m15_c01044{transform:matrix(0.176458,-0.001588,0.002250,0.249990,0,0);-ms-transform:matrix(0.176458,-0.001588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176458,-0.001588,0.002250,0.249990,0,0);}
.m9d_c01044{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);}
.m28_c01044{transform:matrix(0.176828,-0.001591,0.002250,0.249990,0,0);-ms-transform:matrix(0.176828,-0.001591,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176828,-0.001591,0.002250,0.249990,0,0);}
.m7e_c01044{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);}
.m99_c01044{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);}
.m5_c01044{transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);-ms-transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);-webkit-transform:matrix(0.177036,-0.001770,0.002500,0.249988,0,0);}
.m7b_c01044{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);}
.m3a_c01044{transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);-ms-transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178293,-0.001605,0.002250,0.249990,0,0);}
.m83_c01044{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);}
.mcb_c01044{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);}
.m25_c01044{transform:matrix(0.180033,-0.001620,0.002250,0.249990,0,0);-ms-transform:matrix(0.180033,-0.001620,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180033,-0.001620,0.002250,0.249990,0,0);}
.m7c_c01044{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);}
.m77_c01044{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);}
.ma_c01044{transform:matrix(0.181613,-0.001635,0.002250,0.249990,0,0);-ms-transform:matrix(0.181613,-0.001635,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181613,-0.001635,0.002250,0.249990,0,0);}
.m2c_c01044{transform:matrix(0.182033,-0.001638,0.002250,0.249990,0,0);-ms-transform:matrix(0.182033,-0.001638,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182033,-0.001638,0.002250,0.249990,0,0);}
.m81_c01044{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);}
.m5e_c01044{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);}
.m90_c01044{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);}
.m70_c01044{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);}
.m3f_c01044{transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);}
.m36_c01044{transform:matrix(0.184783,-0.001663,0.002250,0.249990,0,0);-ms-transform:matrix(0.184783,-0.001663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184783,-0.001663,0.002250,0.249990,0,0);}
.m1d_c01044{transform:matrix(0.185487,-0.001669,0.002250,0.249990,0,0);-ms-transform:matrix(0.185487,-0.001669,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185487,-0.001669,0.002250,0.249990,0,0);}
.m54_c01044{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);}
.m34_c01044{transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);-ms-transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);}
.m73_c01044{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);}
.m9_c01044{transform:matrix(0.186012,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.186012,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186012,-0.001674,0.002250,0.249990,0,0);}
.m5c_c01044{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);}
.m41_c01044{transform:matrix(0.186622,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186622,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186622,-0.001680,0.002250,0.249990,0,0);}
.m66_c01044{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);}
.m22_c01044{transform:matrix(0.187277,-0.001685,0.002250,0.249990,0,0);-ms-transform:matrix(0.187277,-0.001685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187277,-0.001685,0.002250,0.249990,0,0);}
.m57_c01044{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);}
.m85_c01044{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);}
.m1a_c01044{transform:matrix(0.189707,-0.001707,0.002250,0.249990,0,0);-ms-transform:matrix(0.189707,-0.001707,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189707,-0.001707,0.002250,0.249990,0,0);}
.m38_c01044{transform:matrix(0.192302,-0.001731,0.002250,0.249990,0,0);-ms-transform:matrix(0.192302,-0.001731,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192302,-0.001731,0.002250,0.249990,0,0);}
.m9e_c01044{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);}
.m4_c01044{transform:matrix(0.193805,-0.001938,0.002500,0.249988,0,0);-ms-transform:matrix(0.193805,-0.001938,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193805,-0.001938,0.002500,0.249988,0,0);}
.m58_c01044{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);}
.m6f_c01044{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);}
.m7f_c01044{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);}
.m4e_c01044{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);}
.m46_c01044{transform:matrix(0.195352,-0.001758,0.002250,0.249990,0,0);-ms-transform:matrix(0.195352,-0.001758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195352,-0.001758,0.002250,0.249990,0,0);}
.m8f_c01044{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);}
.m2a_c01044{transform:matrix(0.195867,-0.001763,0.002250,0.249990,0,0);-ms-transform:matrix(0.195867,-0.001763,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195867,-0.001763,0.002250,0.249990,0,0);}
.mc1_c01044{transform:matrix(0.195935,-0.001372,0.001750,0.249994,0,0);-ms-transform:matrix(0.195935,-0.001372,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195935,-0.001372,0.001750,0.249994,0,0);}
.m72_c01044{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);}
.mb5_c01044{transform:matrix(0.197400,-0.001382,0.001750,0.249994,0,0);-ms-transform:matrix(0.197400,-0.001382,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197400,-0.001382,0.001750,0.249994,0,0);}
.m60_c01044{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);}
.m9a_c01044{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);}
.m9c_c01044{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);}
.m6e_c01044{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);}
.m7a_c01044{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);}
.m3b_c01044{transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);-ms-transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198832,-0.001789,0.002250,0.249990,0,0);}
.m6c_c01044{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);}
.mc8_c01044{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m24_c01044{transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200567,-0.001805,0.002250,0.249990,0,0);}
.mb4_c01044{transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);-ms-transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200745,-0.001405,0.001750,0.249994,0,0);}
.mc5_c01044{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);}
.m47_c01044{transform:matrix(0.203632,-0.001833,0.002250,0.249990,0,0);-ms-transform:matrix(0.203632,-0.001833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203632,-0.001833,0.002250,0.249990,0,0);}
.ma4_c01044{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);}
.m82_c01044{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);}
.m10_c01044{transform:matrix(0.204807,-0.001843,0.002250,0.249990,0,0);-ms-transform:matrix(0.204807,-0.001843,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204807,-0.001843,0.002250,0.249990,0,0);}
.m5a_c01044{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);}
.m64_c01044{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);}
.m27_c01044{transform:matrix(0.206922,-0.001862,0.002250,0.249990,0,0);-ms-transform:matrix(0.206922,-0.001862,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206922,-0.001862,0.002250,0.249990,0,0);}
.ma6_c01044{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);}
.m74_c01044{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);}
.m21_c01044{transform:matrix(0.208802,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208802,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208802,-0.001879,0.002250,0.249990,0,0);}
.m3d_c01044{transform:matrix(0.208872,-0.001880,0.002250,0.249990,0,0);-ms-transform:matrix(0.208872,-0.001880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208872,-0.001880,0.002250,0.249990,0,0);}
.mac_c01044{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);}
.ma9_c01044{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);}
.m87_c01044{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);}
.m3c_c01044{transform:matrix(0.210001,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.210001,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210001,-0.001890,0.002250,0.249990,0,0);}
.m1e_c01044{transform:matrix(0.211426,-0.001903,0.002250,0.249990,0,0);-ms-transform:matrix(0.211426,-0.001903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211426,-0.001903,0.002250,0.249990,0,0);}
.m8a_c01044{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);}
.m63_c01044{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);}
.m0_c01044{transform:matrix(0.213254,-0.002133,0.002500,0.249988,0,0);-ms-transform:matrix(0.213254,-0.002133,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213254,-0.002133,0.002500,0.249988,0,0);}
.m37_c01044{transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);-ms-transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213731,-0.001924,0.002250,0.249990,0,0);}
.md_c01044{transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);-ms-transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216631,-0.001950,0.002250,0.249990,0,0);}
.m33_c01044{transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217651,-0.001959,0.002250,0.249990,0,0);}
.m6a_c01044{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);}
.m30_c01044{transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);-ms-transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219831,-0.001978,0.002250,0.249990,0,0);}
.mc4_c01044{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);}
.m32_c01044{transform:matrix(0.221936,-0.001997,0.002250,0.249990,0,0);-ms-transform:matrix(0.221936,-0.001997,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221936,-0.001997,0.002250,0.249990,0,0);}
.mb2_c01044{transform:matrix(0.222150,-0.001555,0.001750,0.249994,0,0);-ms-transform:matrix(0.222150,-0.001555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222150,-0.001555,0.001750,0.249994,0,0);}
.m45_c01044{transform:matrix(0.222351,-0.002001,0.002250,0.249990,0,0);-ms-transform:matrix(0.222351,-0.002001,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222351,-0.002001,0.002250,0.249990,0,0);}
.m4d_c01044{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);}
.m8_c01044{transform:matrix(0.222996,-0.002007,0.002250,0.249990,0,0);-ms-transform:matrix(0.222996,-0.002007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222996,-0.002007,0.002250,0.249990,0,0);}
.mba_c01044{transform:matrix(0.225479,-0.001578,0.001750,0.249994,0,0);-ms-transform:matrix(0.225479,-0.001578,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225479,-0.001578,0.001750,0.249994,0,0);}
.m39_c01044{transform:matrix(0.226011,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.226011,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226011,-0.002034,0.002250,0.249990,0,0);}
.mb3_c01044{transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);-ms-transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226604,-0.001586,0.001750,0.249994,0,0);}
.m98_c01044{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);}
.m8b_c01044{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.m53_c01044{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);}
.m96_c01044{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);}
.mae_c01044{transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230185,0.000000,0.000000,0.250000,0,0);}
.m8e_c01044{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);}
.m65_c01044{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);}
.m56_c01044{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);}
.m4f_c01044{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);}
.m95_c01044{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);}
.m1c_c01044{transform:matrix(0.232351,-0.002091,0.002250,0.249990,0,0);-ms-transform:matrix(0.232351,-0.002091,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232351,-0.002091,0.002250,0.249990,0,0);}
.m1f_c01044{transform:matrix(0.232666,-0.002094,0.002250,0.249990,0,0);-ms-transform:matrix(0.232666,-0.002094,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232666,-0.002094,0.002250,0.249990,0,0);}
.mc0_c01044{transform:matrix(0.234134,-0.001639,0.001750,0.249994,0,0);-ms-transform:matrix(0.234134,-0.001639,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234134,-0.001639,0.001750,0.249994,0,0);}
.mb0_c01044{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);}
.mbb_c01044{transform:matrix(0.243594,-0.001705,0.001750,0.249994,0,0);-ms-transform:matrix(0.243594,-0.001705,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243594,-0.001705,0.001750,0.249994,0,0);}
.m6b_c01044{transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243770,0.000000,0.000000,0.250000,0,0);}
.m50_c01044{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);}
.m68_c01044{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);}
.m31_c01044{transform:matrix(0.249550,-0.002246,0.002250,0.249990,0,0);-ms-transform:matrix(0.249550,-0.002246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249550,-0.002246,0.002250,0.249990,0,0);}
.m7_c01044{transform:matrix(0.250400,-0.002254,0.002250,0.249990,0,0);-ms-transform:matrix(0.250400,-0.002254,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250400,-0.002254,0.002250,0.249990,0,0);}
.m52_c01044{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);}
.mbe_c01044{transform:matrix(0.253229,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253229,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253229,-0.001773,0.001750,0.249994,0,0);}
.m80_c01044{transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255490,0.000000,0.000000,0.250000,0,0);}
.m8d_c01044{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);}
.mb9_c01044{transform:matrix(0.257679,-0.001804,0.001750,0.249994,0,0);-ms-transform:matrix(0.257679,-0.001804,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257679,-0.001804,0.001750,0.249994,0,0);}
.me_c01044{transform:matrix(0.259859,-0.002339,0.002250,0.249990,0,0);-ms-transform:matrix(0.259859,-0.002339,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259859,-0.002339,0.002250,0.249990,0,0);}
.m8c_c01044{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m4a_c01044{transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282880,0.000000,0.000000,0.250000,0,0);}
.m1b_c01044{transform:matrix(0.283659,-0.002553,0.002250,0.249990,0,0);-ms-transform:matrix(0.283659,-0.002553,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283659,-0.002553,0.002250,0.249990,0,0);}
.m61_c01044{transform:matrix(0.290395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290395,0.000000,0.000000,0.250000,0,0);}
.mc3_c01044{transform:matrix(0.293958,-0.002058,0.001750,0.249994,0,0);-ms-transform:matrix(0.293958,-0.002058,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293958,-0.002058,0.001750,0.249994,0,0);}
.mce_c01044{transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298060,0.000000,0.000000,0.250000,0,0);}
.m6d_c01044{transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306465,0.000000,0.000000,0.250000,0,0);}
.m2_c01044{transform:matrix(0.310009,-0.003100,0.002500,0.249988,0,0);-ms-transform:matrix(0.310009,-0.003100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.310009,-0.003100,0.002500,0.249988,0,0);}
.m20_c01044{transform:matrix(0.314812,-0.002833,0.002250,0.249990,0,0);-ms-transform:matrix(0.314812,-0.002833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.314812,-0.002833,0.002250,0.249990,0,0);}
.m43_c01044{transform:matrix(0.316642,-0.002850,0.002250,0.249990,0,0);-ms-transform:matrix(0.316642,-0.002850,0.002250,0.249990,0,0);-webkit-transform:matrix(0.316642,-0.002850,0.002250,0.249990,0,0);}
.mcd_c01044{transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322035,0.000000,0.000000,0.250000,0,0);}
.m67_c01044{transform:matrix(0.329640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329640,0.000000,0.000000,0.250000,0,0);}
.mca_c01044{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);}
.m93_c01044{transform:matrix(0.335940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335940,0.000000,0.000000,0.250000,0,0);}
.m4c_c01044{transform:matrix(0.338510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338510,0.000000,0.000000,0.250000,0,0);}
.m3_c01044{transform:matrix(0.343318,-0.003433,0.002500,0.249988,0,0);-ms-transform:matrix(0.343318,-0.003433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.343318,-0.003433,0.002500,0.249988,0,0);}
.m62_c01044{transform:matrix(0.343640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343640,0.000000,0.000000,0.250000,0,0);}
.m51_c01044{transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361275,0.000000,0.000000,0.250000,0,0);}
.m59_c01044{transform:matrix(0.383965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383965,0.000000,0.000000,0.250000,0,0);}
.m26_c01044{transform:matrix(0.386124,-0.003475,0.002250,0.249990,0,0);-ms-transform:matrix(0.386124,-0.003475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.386124,-0.003475,0.002250,0.249990,0,0);}
.m91_c01044{transform:matrix(0.409665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409665,0.000000,0.000000,0.250000,0,0);}
.ma1_c01044{transform:matrix(0.431425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431425,0.000000,0.000000,0.250000,0,0);}
.mbd_c01044{transform:matrix(0.441194,-0.003088,0.001750,0.249994,0,0);-ms-transform:matrix(0.441194,-0.003088,0.001750,0.249994,0,0);-webkit-transform:matrix(0.441194,-0.003088,0.001750,0.249994,0,0);}
.mc2_c01044{transform:matrix(0.457229,-0.003201,0.001750,0.249994,0,0);-ms-transform:matrix(0.457229,-0.003201,0.001750,0.249994,0,0);-webkit-transform:matrix(0.457229,-0.003201,0.001750,0.249994,0,0);}
.m84_c01044{transform:matrix(0.479285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479285,0.000000,0.000000,0.250000,0,0);}
.m92_c01044{transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);}
.mbf_c01044{transform:matrix(0.576111,-0.004033,0.001750,0.249994,0,0);-ms-transform:matrix(0.576111,-0.004033,0.001750,0.249994,0,0);-webkit-transform:matrix(0.576111,-0.004033,0.001750,0.249994,0,0);}
.mb1_c01044{transform:matrix(0.582560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582560,0.000000,0.000000,0.250000,0,0);}
.m86_c01044{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.maf_c01044{transform:matrix(0.637570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637570,0.000000,0.000000,0.250000,0,0);}
.m1_c01044{transform:matrix(0.682116,-0.006821,0.002500,0.249988,0,0);-ms-transform:matrix(0.682116,-0.006821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.682116,-0.006821,0.002500,0.249988,0,0);}
.m94_c01044{transform:matrix(0.702390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702390,0.000000,0.000000,0.250000,0,0);}
.mbc_c01044{transform:matrix(1.369031,-0.009583,0.001750,0.249994,0,0);-ms-transform:matrix(1.369031,-0.009583,0.001750,0.249994,0,0);-webkit-transform:matrix(1.369031,-0.009583,0.001750,0.249994,0,0);}
.m4b_c01044{transform:matrix(1.518960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.518960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.518960,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls0_c01044{letter-spacing:0.000000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:0.000000px;}
.fc0_c01044{color:transparent;}
.fsf_c01044{font-size:22.050000px;}
.fs10_c01044{font-size:45.150000px;}
.fs11_c01044{font-size:53.551312px;}
.fs12_c01044{font-size:57.750000px;}
.fsc_c01044{font-size:63.000000px;}
.fs7_c01044{font-size:64.050000px;}
.fs9_c01044{font-size:65.100000px;}
.fsb_c01044{font-size:67.200000px;}
.fsa_c01044{font-size:68.250000px;}
.fs4_c01044{font-size:68.252764px;}
.fs13_c01044{font-size:70.350000px;}
.fs8_c01044{font-size:71.400000px;}
.fs5_c01044{font-size:71.402892px;}
.fsd_c01044{font-size:72.450000px;}
.fs6_c01044{font-size:73.500000px;}
.fs3_c01044{font-size:73.502977px;}
.fs1_c01044{font-size:74.553019px;}
.fs2_c01044{font-size:79.803232px;}
.fse_c01044{font-size:80.850000px;}
.fs0_c01044{font-size:118.655932px;}
.y0_c01044{bottom:0.000000px;}
.y6e_c01044{bottom:129.828000px;}
.y6d_c01044{bottom:150.468000px;}
.y5b_c01044{bottom:167.940000px;}
.y5c_c01044{bottom:168.321622px;}
.y5d_c01044{bottom:168.378344px;}
.y5e_c01044{bottom:168.503084px;}
.y5f_c01044{bottom:168.607034px;}
.y60_c01044{bottom:168.758349px;}
.y61_c01044{bottom:168.966165px;}
.y62_c01044{bottom:169.053126px;}
.y63_c01044{bottom:169.221389px;}
.y64_c01044{bottom:169.293324px;}
.y65_c01044{bottom:169.446214px;}
.y66_c01044{bottom:169.713293px;}
.y67_c01044{bottom:169.985316px;}
.y68_c01044{bottom:170.161223px;}
.y69_c01044{bottom:170.629512px;}
.y6a_c01044{bottom:170.780628px;}
.y6b_c01044{bottom:171.050856px;}
.y6c_c01044{bottom:171.196796px;}
.y58_c01044{bottom:314.424000px;}
.y57_c01044{bottom:337.230000px;}
.y56_c01044{bottom:359.665500px;}
.y55_c01044{bottom:383.050500px;}
.y54_c01044{bottom:405.616500px;}
.y53_c01044{bottom:428.419500px;}
.y5a_c01044{bottom:451.980000px;}
.y52_c01044{bottom:452.848500px;}
.y59_c01044{bottom:455.961000px;}
.y51_c01044{bottom:474.211500px;}
.y50_c01044{bottom:496.339500px;}
.y4f_c01044{bottom:519.867000px;}
.y4e_c01044{bottom:542.016000px;}
.y4d_c01044{bottom:564.991500px;}
.y4c_c01044{bottom:587.605500px;}
.y4b_c01044{bottom:611.101500px;}
.y4a_c01044{bottom:633.243000px;}
.y47_c01044{bottom:655.966197px;}
.y49_c01044{bottom:655.966260px;}
.y48_c01044{bottom:655.966483px;}
.y46_c01044{bottom:655.966671px;}
.y44_c01044{bottom:655.967028px;}
.y45_c01044{bottom:655.967285px;}
.y3e_c01044{bottom:678.277577px;}
.y3f_c01044{bottom:678.278073px;}
.y3d_c01044{bottom:678.278280px;}
.y40_c01044{bottom:678.278570px;}
.y3c_c01044{bottom:678.278607px;}
.y41_c01044{bottom:678.279036px;}
.y3b_c01044{bottom:678.279070px;}
.y42_c01044{bottom:678.279562px;}
.y43_c01044{bottom:678.279729px;}
.y39_c01044{bottom:701.248722px;}
.y38_c01044{bottom:701.249245px;}
.y3a_c01044{bottom:701.249398px;}
.y37_c01044{bottom:701.249499px;}
.y36_c01044{bottom:701.249603px;}
.y35_c01044{bottom:701.250066px;}
.y32_c01044{bottom:701.250270px;}
.y31_c01044{bottom:701.250343px;}
.y34_c01044{bottom:701.250513px;}
.y33_c01044{bottom:701.250616px;}
.y28_c01044{bottom:722.251020px;}
.y29_c01044{bottom:722.517328px;}
.y2a_c01044{bottom:722.817298px;}
.y2b_c01044{bottom:723.167052px;}
.y2c_c01044{bottom:723.675609px;}
.y2d_c01044{bottom:724.147506px;}
.y2e_c01044{bottom:724.642763px;}
.y2f_c01044{bottom:724.990558px;}
.y30_c01044{bottom:725.328822px;}
.y1f_c01044{bottom:744.931500px;}
.y20_c01044{bottom:745.335055px;}
.y21_c01044{bottom:745.789641px;}
.y22_c01044{bottom:745.896466px;}
.y23_c01044{bottom:746.437897px;}
.y24_c01044{bottom:746.739204px;}
.y25_c01044{bottom:746.955595px;}
.y26_c01044{bottom:747.303031px;}
.y27_c01044{bottom:747.649131px;}
.y1e_c01044{bottom:770.318445px;}
.y1d_c01044{bottom:770.319058px;}
.y1c_c01044{bottom:770.319432px;}
.y1b_c01044{bottom:770.319805px;}
.y1a_c01044{bottom:791.836083px;}
.y11_c01044{bottom:791.836324px;}
.y19_c01044{bottom:791.836396px;}
.y13_c01044{bottom:791.836417px;}
.y18_c01044{bottom:791.836800px;}
.y12_c01044{bottom:791.836941px;}
.y17_c01044{bottom:791.837053px;}
.y14_c01044{bottom:791.837154px;}
.y15_c01044{bottom:791.837260px;}
.y16_c01044{bottom:791.837727px;}
.y8_c01044{bottom:813.241500px;}
.y9_c01044{bottom:813.455353px;}
.ya_c01044{bottom:813.878336px;}
.yb_c01044{bottom:814.332421px;}
.yc_c01044{bottom:814.847217px;}
.yd_c01044{bottom:815.059059px;}
.ye_c01044{bottom:815.319393px;}
.yf_c01044{bottom:815.552578px;}
.y10_c01044{bottom:815.814762px;}
.y1_c01044{bottom:857.253000px;}
.y2_c01044{bottom:858.673905px;}
.y3_c01044{bottom:859.440990px;}
.y4_c01044{bottom:860.208285px;}
.y5_c01044{bottom:860.808255px;}
.y6_c01044{bottom:861.553530px;}
.y7_c01044{bottom:862.236195px;}
.h11_c01044{height:22.050000px;}
.h12_c01044{height:45.150000px;}
.h13_c01044{height:53.551312px;}
.h14_c01044{height:57.750000px;}
.he_c01044{height:63.000000px;}
.h9_c01044{height:64.050000px;}
.hb_c01044{height:65.100000px;}
.hd_c01044{height:67.200000px;}
.hc_c01044{height:68.250000px;}
.h6_c01044{height:68.252764px;}
.h15_c01044{height:70.350000px;}
.ha_c01044{height:71.400000px;}
.h7_c01044{height:71.402892px;}
.hf_c01044{height:72.450000px;}
.h8_c01044{height:73.500000px;}
.h5_c01044{height:73.502977px;}
.h3_c01044{height:74.553019px;}
.h4_c01044{height:79.803232px;}
.h10_c01044{height:80.850000px;}
.h2_c01044{height:118.655932px;}
.h1_c01044{height:1005.000000px;}
.h0_c01044{height:1005.150000px;}
.w0_c01044{width:715.200000px;}
.w1_c01044{width:715.500000px;}
.x0_c01044{left:0.000000px;}
.x1_c01044{left:59.646000px;}
.x76_c01044{left:121.041000px;}
.x7f_c01044{left:129.870000px;}
.x8_c01044{left:143.257500px;}
.x2b_c01044{left:149.578458px;}
.x11_c01044{left:150.931252px;}
.x3b_c01044{left:152.006671px;}
.x34_c01044{left:153.088467px;}
.x5c_c01044{left:154.170000px;}
.x60_c01044{left:156.060000px;}
.x80_c01044{left:159.030000px;}
.x9_c01044{left:167.019000px;}
.x12_c01044{left:175.501737px;}
.x4f_c01044{left:180.360000px;}
.x77_c01044{left:183.661500px;}
.x53_c01044{left:185.490000px;}
.x61_c01044{left:187.380000px;}
.x2c_c01044{left:192.240414px;}
.x1f_c01044{left:196.153500px;}
.x3c_c01044{left:197.637370px;}
.x13_c01044{left:200.612275px;}
.x2_c01044{left:201.736500px;}
.x44_c01044{left:203.580000px;}
.x56_c01044{left:205.200000px;}
.x62_c01044{left:212.760000px;}
.xa_c01044{left:214.017000px;}
.x4a_c01044{left:216.000000px;}
.x5d_c01044{left:218.700000px;}
.x2d_c01044{left:219.781141px;}
.x6c_c01044{left:221.400000px;}
.x40_c01044{left:227.880000px;}
.x45_c01044{left:229.500000px;}
.x26_c01044{left:234.244581px;}
.x78_c01044{left:237.948000px;}
.x54_c01044{left:244.620000px;}
.x20_c01044{left:246.663000px;}
.x14_c01044{left:247.864596px;}
.x63_c01044{left:253.260000px;}
.x35_c01044{left:254.342175px;}
.x70_c01044{left:256.500000px;}
.x21_c01044{left:258.532500px;}
.x73_c01044{left:261.360000px;}
.x50_c01044{left:263.250000px;}
.xb_c01044{left:264.471000px;}
.x79_c01044{left:267.636000px;}
.x2e_c01044{left:270.273732px;}
.x64_c01044{left:273.510000px;}
.x3_c01044{left:278.445000px;}
.x27_c01044{left:280.416744px;}
.x15_c01044{left:284.046025px;}
.x36_c01044{left:285.933240px;}
.x67_c01044{left:288.360000px;}
.x46_c01044{left:290.520000px;}
.x41_c01044{left:292.680000px;}
.x6e_c01044{left:294.570000px;}
.x81_c01044{left:298.620000px;}
.x1b_c01044{left:300.245979px;}
.x6d_c01044{left:302.400000px;}
.x7a_c01044{left:304.096500px;}
.x57_c01044{left:306.180000px;}
.x16_c01044{left:307.266402px;}
.x6a_c01044{left:310.500000px;}
.x37_c01044{left:314.824075px;}
.x22_c01044{left:318.691500px;}
.xc_c01044{left:321.670500px;}
.x28_c01044{left:323.348974px;}
.x1c_c01044{left:326.706626px;}
.x47_c01044{left:331.560000px;}
.x51_c01044{left:336.420000px;}
.x68_c01044{left:342.360000px;}
.x38_c01044{left:343.714911px;}
.xd_c01044{left:345.208500px;}
.x3d_c01044{left:347.763534px;}
.x4b_c01044{left:349.650000px;}
.x23_c01044{left:352.170000px;}
.x4_c01044{left:355.174500px;}
.x17_c01044{left:358.029020px;}
.x48_c01044{left:360.450000px;}
.x2f_c01044{left:362.346698px;}
.x58_c01044{left:365.580000px;}
.x1d_c01044{left:366.668366px;}
.x29_c01044{left:368.376664px;}
.x42_c01044{left:372.060000px;}
.xe_c01044{left:374.134500px;}
.x24_c01044{left:376.213500px;}
.x3e_c01044{left:377.464437px;}
.x18_c01044{left:380.169315px;}
.x4c_c01044{left:383.130000px;}
.x30_c01044{left:385.837101px;}
.x1e_c01044{left:388.268621px;}
.x59_c01044{left:390.690000px;}
.x6b_c01044{left:393.660000px;}
.xf_c01044{left:400.044000px;}
.x39_c01044{left:401.496582px;}
.x3f_c01044{left:405.275191px;}
.x5e_c01044{left:406.350000px;}
.x55_c01044{left:413.370000px;}
.x5_c01044{left:415.171500px;}
.x65_c01044{left:418.500000px;}
.x31_c01044{left:421.478490px;}
.x71_c01044{left:422.820000px;}
.x19_c01044{left:427.961690px;}
.x10_c01044{left:429.175500px;}
.x2a_c01044{left:430.771044px;}
.x72_c01044{left:439.020000px;}
.x4d_c01044{left:444.960000px;}
.x74_c01044{left:447.390000px;}
.x3a_c01044{left:449.018929px;}
.x25_c01044{left:453.273000px;}
.x6f_c01044{left:455.220000px;}
.x66_c01044{left:458.190000px;}
.x32_c01044{left:460.090122px;}
.x69_c01044{left:463.860000px;}
.x1a_c01044{left:465.763254px;}
.x4e_c01044{left:467.370000px;}
.x5f_c01044{left:471.420000px;}
.x75_c01044{left:474.660000px;}
.x43_c01044{left:480.870000px;}
.x49_c01044{left:484.380000px;}
.x6_c01044{left:489.699000px;}
.x52_c01044{left:497.070000px;}
.x7b_c01044{left:505.257000px;}
.x33_c01044{left:509.502618px;}
.x5a_c01044{left:522.450000px;}
.x5b_c01044{left:524.880000px;}
.x7c_c01044{left:526.845000px;}
.x7_c01044{left:557.965500px;}
.x7d_c01044{left:565.449000px;}
.x7e_c01044{left:586.297500px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls0_c01044{letter-spacing:0.000000pt;}
.ws0_c01044{word-spacing:0.000000pt;}
.fsf_c01044{font-size:19.600000pt;}
.fs10_c01044{font-size:40.133333pt;}
.fs11_c01044{font-size:47.601166pt;}
.fs12_c01044{font-size:51.333333pt;}
.fsc_c01044{font-size:56.000000pt;}
.fs7_c01044{font-size:56.933333pt;}
.fs9_c01044{font-size:57.866667pt;}
.fsb_c01044{font-size:59.733333pt;}
.fsa_c01044{font-size:60.666667pt;}
.fs4_c01044{font-size:60.669124pt;}
.fs13_c01044{font-size:62.533333pt;}
.fs8_c01044{font-size:63.466667pt;}
.fs5_c01044{font-size:63.469237pt;}
.fsd_c01044{font-size:64.400000pt;}
.fs6_c01044{font-size:65.333333pt;}
.fs3_c01044{font-size:65.335979pt;}
.fs1_c01044{font-size:66.269350pt;}
.fs2_c01044{font-size:70.936206pt;}
.fse_c01044{font-size:71.866667pt;}
.fs0_c01044{font-size:105.471940pt;}
.y0_c01044{bottom:0.000000pt;}
.y6e_c01044{bottom:115.402667pt;}
.y6d_c01044{bottom:133.749333pt;}
.y5b_c01044{bottom:149.280000pt;}
.y5c_c01044{bottom:149.619220pt;}
.y5d_c01044{bottom:149.669639pt;}
.y5e_c01044{bottom:149.780519pt;}
.y5f_c01044{bottom:149.872919pt;}
.y60_c01044{bottom:150.007421pt;}
.y61_c01044{bottom:150.192147pt;}
.y62_c01044{bottom:150.269445pt;}
.y63_c01044{bottom:150.419012pt;}
.y64_c01044{bottom:150.482955pt;}
.y65_c01044{bottom:150.618857pt;}
.y66_c01044{bottom:150.856260pt;}
.y67_c01044{bottom:151.098059pt;}
.y68_c01044{bottom:151.254420pt;}
.y69_c01044{bottom:151.670677pt;}
.y6a_c01044{bottom:151.805003pt;}
.y6b_c01044{bottom:152.045205pt;}
.y6c_c01044{bottom:152.174929pt;}
.y58_c01044{bottom:279.488000pt;}
.y57_c01044{bottom:299.760000pt;}
.y56_c01044{bottom:319.702667pt;}
.y55_c01044{bottom:340.489333pt;}
.y54_c01044{bottom:360.548000pt;}
.y53_c01044{bottom:380.817333pt;}
.y5a_c01044{bottom:401.760000pt;}
.y52_c01044{bottom:402.532000pt;}
.y59_c01044{bottom:405.298667pt;}
.y51_c01044{bottom:421.521333pt;}
.y50_c01044{bottom:441.190667pt;}
.y4f_c01044{bottom:462.104000pt;}
.y4e_c01044{bottom:481.792000pt;}
.y4d_c01044{bottom:502.214667pt;}
.y4c_c01044{bottom:522.316000pt;}
.y4b_c01044{bottom:543.201333pt;}
.y4a_c01044{bottom:562.882667pt;}
.y47_c01044{bottom:583.081064pt;}
.y49_c01044{bottom:583.081120pt;}
.y48_c01044{bottom:583.081319pt;}
.y46_c01044{bottom:583.081485pt;}
.y44_c01044{bottom:583.081803pt;}
.y45_c01044{bottom:583.082031pt;}
.y3e_c01044{bottom:602.913401pt;}
.y3f_c01044{bottom:602.913843pt;}
.y3d_c01044{bottom:602.914027pt;}
.y40_c01044{bottom:602.914284pt;}
.y3c_c01044{bottom:602.914317pt;}
.y41_c01044{bottom:602.914699pt;}
.y3b_c01044{bottom:602.914729pt;}
.y42_c01044{bottom:602.915167pt;}
.y43_c01044{bottom:602.915315pt;}
.y39_c01044{bottom:623.332197pt;}
.y38_c01044{bottom:623.332663pt;}
.y3a_c01044{bottom:623.332799pt;}
.y37_c01044{bottom:623.332888pt;}
.y36_c01044{bottom:623.332980pt;}
.y35_c01044{bottom:623.333392pt;}
.y32_c01044{bottom:623.333573pt;}
.y31_c01044{bottom:623.333639pt;}
.y34_c01044{bottom:623.333789pt;}
.y33_c01044{bottom:623.333881pt;}
.y28_c01044{bottom:642.000907pt;}
.y29_c01044{bottom:642.237625pt;}
.y2a_c01044{bottom:642.504265pt;}
.y2b_c01044{bottom:642.815157pt;}
.y2c_c01044{bottom:643.267208pt;}
.y2d_c01044{bottom:643.686672pt;}
.y2e_c01044{bottom:644.126900pt;}
.y2f_c01044{bottom:644.436052pt;}
.y30_c01044{bottom:644.736731pt;}
.y1f_c01044{bottom:662.161333pt;}
.y20_c01044{bottom:662.520049pt;}
.y21_c01044{bottom:662.924125pt;}
.y22_c01044{bottom:663.019081pt;}
.y23_c01044{bottom:663.500353pt;}
.y24_c01044{bottom:663.768181pt;}
.y25_c01044{bottom:663.960529pt;}
.y26_c01044{bottom:664.269361pt;}
.y27_c01044{bottom:664.577005pt;}
.y1e_c01044{bottom:684.727507pt;}
.y1d_c01044{bottom:684.728052pt;}
.y1c_c01044{bottom:684.728384pt;}
.y1b_c01044{bottom:684.728716pt;}
.y1a_c01044{bottom:703.854296pt;}
.y11_c01044{bottom:703.854511pt;}
.y19_c01044{bottom:703.854575pt;}
.y13_c01044{bottom:703.854593pt;}
.y18_c01044{bottom:703.854933pt;}
.y12_c01044{bottom:703.855059pt;}
.y17_c01044{bottom:703.855159pt;}
.y14_c01044{bottom:703.855248pt;}
.y15_c01044{bottom:703.855343pt;}
.y16_c01044{bottom:703.855757pt;}
.y8_c01044{bottom:722.881333pt;}
.y9_c01044{bottom:723.071425pt;}
.ya_c01044{bottom:723.447409pt;}
.yb_c01044{bottom:723.851041pt;}
.yc_c01044{bottom:724.308637pt;}
.yd_c01044{bottom:724.496941pt;}
.ye_c01044{bottom:724.728349pt;}
.yf_c01044{bottom:724.935625pt;}
.y10_c01044{bottom:725.168677pt;}
.y1_c01044{bottom:762.002667pt;}
.y2_c01044{bottom:763.265693pt;}
.y3_c01044{bottom:763.947547pt;}
.y4_c01044{bottom:764.629587pt;}
.y5_c01044{bottom:765.162893pt;}
.y6_c01044{bottom:765.825360pt;}
.y7_c01044{bottom:766.432173pt;}
.h11_c01044{height:19.600000pt;}
.h12_c01044{height:40.133333pt;}
.h13_c01044{height:47.601166pt;}
.h14_c01044{height:51.333333pt;}
.he_c01044{height:56.000000pt;}
.h9_c01044{height:56.933333pt;}
.hb_c01044{height:57.866667pt;}
.hd_c01044{height:59.733333pt;}
.hc_c01044{height:60.666667pt;}
.h6_c01044{height:60.669124pt;}
.h15_c01044{height:62.533333pt;}
.ha_c01044{height:63.466667pt;}
.h7_c01044{height:63.469237pt;}
.hf_c01044{height:64.400000pt;}
.h8_c01044{height:65.333333pt;}
.h5_c01044{height:65.335979pt;}
.h3_c01044{height:66.269350pt;}
.h4_c01044{height:70.936206pt;}
.h10_c01044{height:71.866667pt;}
.h2_c01044{height:105.471940pt;}
.h1_c01044{height:893.333333pt;}
.h0_c01044{height:893.466667pt;}
.w0_c01044{width:635.733333pt;}
.w1_c01044{width:636.000000pt;}
.x0_c01044{left:0.000000pt;}
.x1_c01044{left:53.018667pt;}
.x76_c01044{left:107.592000pt;}
.x7f_c01044{left:115.440000pt;}
.x8_c01044{left:127.340000pt;}
.x2b_c01044{left:132.958629pt;}
.x11_c01044{left:134.161113pt;}
.x3b_c01044{left:135.117041pt;}
.x34_c01044{left:136.078637pt;}
.x5c_c01044{left:137.040000pt;}
.x60_c01044{left:138.720000pt;}
.x80_c01044{left:141.360000pt;}
.x9_c01044{left:148.461333pt;}
.x12_c01044{left:156.001544pt;}
.x4f_c01044{left:160.320000pt;}
.x77_c01044{left:163.254667pt;}
.x53_c01044{left:164.880000pt;}
.x61_c01044{left:166.560000pt;}
.x2c_c01044{left:170.880368pt;}
.x1f_c01044{left:174.358667pt;}
.x3c_c01044{left:175.677663pt;}
.x13_c01044{left:178.322023pt;}
.x2_c01044{left:179.321333pt;}
.x44_c01044{left:180.960000pt;}
.x56_c01044{left:182.400000pt;}
.x62_c01044{left:189.120000pt;}
.xa_c01044{left:190.237333pt;}
.x4a_c01044{left:192.000000pt;}
.x5d_c01044{left:194.400000pt;}
.x2d_c01044{left:195.361015pt;}
.x6c_c01044{left:196.800000pt;}
.x40_c01044{left:202.560000pt;}
.x45_c01044{left:204.000000pt;}
.x26_c01044{left:208.217405pt;}
.x78_c01044{left:211.509333pt;}
.x54_c01044{left:217.440000pt;}
.x20_c01044{left:219.256000pt;}
.x14_c01044{left:220.324085pt;}
.x63_c01044{left:225.120000pt;}
.x35_c01044{left:226.081933pt;}
.x70_c01044{left:228.000000pt;}
.x21_c01044{left:229.806667pt;}
.x73_c01044{left:232.320000pt;}
.x50_c01044{left:234.000000pt;}
.xb_c01044{left:235.085333pt;}
.x79_c01044{left:237.898667pt;}
.x2e_c01044{left:240.243317pt;}
.x64_c01044{left:243.120000pt;}
.x3_c01044{left:247.506667pt;}
.x27_c01044{left:249.259328pt;}
.x15_c01044{left:252.485356pt;}
.x36_c01044{left:254.162880pt;}
.x67_c01044{left:256.320000pt;}
.x46_c01044{left:258.240000pt;}
.x41_c01044{left:260.160000pt;}
.x6e_c01044{left:261.840000pt;}
.x81_c01044{left:265.440000pt;}
.x1b_c01044{left:266.885315pt;}
.x6d_c01044{left:268.800000pt;}
.x7a_c01044{left:270.308000pt;}
.x57_c01044{left:272.160000pt;}
.x16_c01044{left:273.125691pt;}
.x6a_c01044{left:276.000000pt;}
.x37_c01044{left:279.843623pt;}
.x22_c01044{left:283.281333pt;}
.xc_c01044{left:285.929333pt;}
.x28_c01044{left:287.421311pt;}
.x1c_c01044{left:290.405889pt;}
.x47_c01044{left:294.720000pt;}
.x51_c01044{left:299.040000pt;}
.x68_c01044{left:304.320000pt;}
.x38_c01044{left:305.524365pt;}
.xd_c01044{left:306.852000pt;}
.x3d_c01044{left:309.123141pt;}
.x4b_c01044{left:310.800000pt;}
.x23_c01044{left:313.040000pt;}
.x4_c01044{left:315.710667pt;}
.x17_c01044{left:318.248017pt;}
.x48_c01044{left:320.400000pt;}
.x2f_c01044{left:322.085953pt;}
.x58_c01044{left:324.960000pt;}
.x1d_c01044{left:325.927436pt;}
.x29_c01044{left:327.445924pt;}
.x42_c01044{left:330.720000pt;}
.xe_c01044{left:332.564000pt;}
.x24_c01044{left:334.412000pt;}
.x3e_c01044{left:335.523944pt;}
.x18_c01044{left:337.928280pt;}
.x4c_c01044{left:340.560000pt;}
.x30_c01044{left:342.966312pt;}
.x1e_c01044{left:345.127663pt;}
.x59_c01044{left:347.280000pt;}
.x6b_c01044{left:349.920000pt;}
.xf_c01044{left:355.594667pt;}
.x39_c01044{left:356.885851pt;}
.x3f_c01044{left:360.244615pt;}
.x5e_c01044{left:361.200000pt;}
.x55_c01044{left:367.440000pt;}
.x5_c01044{left:369.041333pt;}
.x65_c01044{left:372.000000pt;}
.x31_c01044{left:374.647547pt;}
.x71_c01044{left:375.840000pt;}
.x19_c01044{left:380.410391pt;}
.x10_c01044{left:381.489333pt;}
.x2a_c01044{left:382.907595pt;}
.x72_c01044{left:390.240000pt;}
.x4d_c01044{left:395.520000pt;}
.x74_c01044{left:397.680000pt;}
.x3a_c01044{left:399.127937pt;}
.x25_c01044{left:402.909333pt;}
.x6f_c01044{left:404.640000pt;}
.x66_c01044{left:407.280000pt;}
.x32_c01044{left:408.968997pt;}
.x69_c01044{left:412.320000pt;}
.x1a_c01044{left:414.011781pt;}
.x4e_c01044{left:415.440000pt;}
.x5f_c01044{left:419.040000pt;}
.x75_c01044{left:421.920000pt;}
.x43_c01044{left:427.440000pt;}
.x49_c01044{left:430.560000pt;}
.x6_c01044{left:435.288000pt;}
.x52_c01044{left:441.840000pt;}
.x7b_c01044{left:449.117333pt;}
.x33_c01044{left:452.891216pt;}
.x5a_c01044{left:464.400000pt;}
.x5b_c01044{left:466.560000pt;}
.x7c_c01044{left:468.306667pt;}
.x7_c01044{left:495.969333pt;}
.x7d_c01044{left:502.621333pt;}
.x7e_c01044{left:521.153333pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.000000;font-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_c01045{transform:matrix(0.011441,0.000309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.011441,0.000309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.011441,0.000309,-0.006748,0.249909,0,0);}
.m44_c01045{transform:matrix(0.013838,0.000263,-0.004749,0.249955,0,0);-ms-transform:matrix(0.013838,0.000263,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.013838,0.000263,-0.004749,0.249955,0,0);}
.m5d_c01045{transform:matrix(0.015122,0.000287,-0.004749,0.249955,0,0);-ms-transform:matrix(0.015122,0.000287,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.015122,0.000287,-0.004749,0.249955,0,0);}
.m85_c01045{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);}
.m96_c01045{transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040310,0.000000,0.000000,0.250000,0,0);}
.m26_c01045{transform:matrix(0.058806,0.000706,-0.003000,0.249982,0,0);-ms-transform:matrix(0.058806,0.000706,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.058806,0.000706,-0.003000,0.249982,0,0);}
.m5c_c01045{transform:matrix(0.083690,0.001590,-0.004749,0.249955,0,0);-ms-transform:matrix(0.083690,0.001590,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.083690,0.001590,-0.004749,0.249955,0,0);}
.mb4_c01045{transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093710,0.000000,0.000000,0.250000,0,0);}
.m2d_c01045{transform:matrix(0.097618,0.001171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.097618,0.001171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.097618,0.001171,-0.003000,0.249982,0,0);}
.m8f_c01045{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.m91_c01045{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_c01045{transform:matrix(0.112854,0.003047,-0.006748,0.249909,0,0);-ms-transform:matrix(0.112854,0.003047,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.112854,0.003047,-0.006748,0.249909,0,0);}
.m27_c01045{transform:matrix(0.115797,0.001390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.115797,0.001390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.115797,0.001390,-0.003000,0.249982,0,0);}
.m93_c01045{transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118495,0.000000,0.000000,0.250000,0,0);}
.m8b_c01045{transform:matrix(0.130245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130245,0.000000,0.000000,0.250000,0,0);}
.m2c_c01045{transform:matrix(0.130706,0.001568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.130706,0.001568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.130706,0.001568,-0.003000,0.249982,0,0);}
.m4c_c01045{transform:matrix(0.132216,0.002512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.132216,0.002512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.132216,0.002512,-0.004749,0.249955,0,0);}
.maa_c01045{transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135655,0.000000,0.000000,0.250000,0,0);}
.m8d_c01045{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);}
.m89_c01045{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);}
.m90_c01045{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m92_c01045{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);}
.m33_c01045{transform:matrix(0.150218,0.002854,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150218,0.002854,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150218,0.002854,-0.004749,0.249955,0,0);}
.m8a_c01045{transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150345,0.000000,0.000000,0.250000,0,0);}
.m28_c01045{transform:matrix(0.150589,0.001807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150589,0.001807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150589,0.001807,-0.003000,0.249982,0,0);}
.m88_c01045{transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151745,0.000000,0.000000,0.250000,0,0);}
.m87_c01045{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);}
.m14_c01045{transform:matrix(0.155716,0.003270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155716,0.003270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155716,0.003270,-0.005249,0.249945,0,0);}
.m9a_c01045{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);}
.m55_c01045{transform:matrix(0.163470,0.003106,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163470,0.003106,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163470,0.003106,-0.004749,0.249955,0,0);}
.m65_c01045{transform:matrix(0.163620,0.003109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163620,0.003109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163620,0.003109,-0.004749,0.249955,0,0);}
.m31_c01045{transform:matrix(0.165010,0.003135,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165010,0.003135,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165010,0.003135,-0.004749,0.249955,0,0);}
.m7d_c01045{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);}
.m15_c01045{transform:matrix(0.167118,0.003509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167118,0.003509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167118,0.003509,-0.005249,0.249945,0,0);}
.m20_c01045{transform:matrix(0.168038,0.002016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168038,0.002016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168038,0.002016,-0.003000,0.249982,0,0);}
.m6e_c01045{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);}
.m1e_c01045{transform:matrix(0.172253,0.002067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172253,0.002067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172253,0.002067,-0.003000,0.249982,0,0);}
.m54_c01045{transform:matrix(0.172434,0.003276,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172434,0.003276,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172434,0.003276,-0.004749,0.249955,0,0);}
.m35_c01045{transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172529,0.003278,-0.004749,0.249955,0,0);}
.m6d_c01045{transform:matrix(0.172634,0.003280,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172634,0.003280,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172634,0.003280,-0.004749,0.249955,0,0);}
.m8c_c01045{transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174135,0.000000,0.000000,0.250000,0,0);}
.m58_c01045{transform:matrix(0.174309,0.003312,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174309,0.003312,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174309,0.003312,-0.004749,0.249955,0,0);}
.m72_c01045{transform:matrix(0.175078,0.003326,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175078,0.003326,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175078,0.003326,-0.004749,0.249955,0,0);}
.mb0_c01045{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);}
.m71_c01045{transform:matrix(0.177938,0.003381,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177938,0.003381,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177938,0.003381,-0.004749,0.249955,0,0);}
.m30_c01045{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);}
.m24_c01045{transform:matrix(0.179387,0.002153,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179387,0.002153,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179387,0.002153,-0.003000,0.249982,0,0);}
.m11_c01045{transform:matrix(0.182385,0.003830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182385,0.003830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182385,0.003830,-0.005249,0.249945,0,0);}
.m29_c01045{transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);}
.m13_c01045{transform:matrix(0.185054,0.003886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185054,0.003886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185054,0.003886,-0.005249,0.249945,0,0);}
.m61_c01045{transform:matrix(0.185941,0.003533,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185941,0.003533,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185941,0.003533,-0.004749,0.249955,0,0);}
.m7a_c01045{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);}
.m82_c01045{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);}
.m43_c01045{transform:matrix(0.187721,0.003567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187721,0.003567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187721,0.003567,-0.004749,0.249955,0,0);}
.m6a_c01045{transform:matrix(0.190911,0.003627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190911,0.003627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190911,0.003627,-0.004749,0.249955,0,0);}
.m83_c01045{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);}
.m60_c01045{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);}
.m4b_c01045{transform:matrix(0.192985,0.003667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192985,0.003667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192985,0.003667,-0.004749,0.249955,0,0);}
.m62_c01045{transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193430,0.003675,-0.004749,0.249955,0,0);}
.m57_c01045{transform:matrix(0.195215,0.003709,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195215,0.003709,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195215,0.003709,-0.004749,0.249955,0,0);}
.m3a_c01045{transform:matrix(0.195870,0.003722,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195870,0.003722,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195870,0.003722,-0.004749,0.249955,0,0);}
.m6c_c01045{transform:matrix(0.195965,0.003723,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195965,0.003723,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195965,0.003723,-0.004749,0.249955,0,0);}
.mab_c01045{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);}
.m66_c01045{transform:matrix(0.196600,0.003735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196600,0.003735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196600,0.003735,-0.004749,0.249955,0,0);}
.m32_c01045{transform:matrix(0.196784,0.003739,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196784,0.003739,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196784,0.003739,-0.004749,0.249955,0,0);}
.m59_c01045{transform:matrix(0.197964,0.003761,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197964,0.003761,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197964,0.003761,-0.004749,0.249955,0,0);}
.m52_c01045{transform:matrix(0.199254,0.003786,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199254,0.003786,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199254,0.003786,-0.004749,0.249955,0,0);}
.m34_c01045{transform:matrix(0.199519,0.003791,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199519,0.003791,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199519,0.003791,-0.004749,0.249955,0,0);}
.mb_c01045{transform:matrix(0.201826,0.004238,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201826,0.004238,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201826,0.004238,-0.005249,0.249945,0,0);}
.m9f_c01045{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);}
.m36_c01045{transform:matrix(0.202603,0.003849,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202603,0.003849,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202603,0.003849,-0.004749,0.249955,0,0);}
.m47_c01045{transform:matrix(0.202758,0.003852,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202758,0.003852,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202758,0.003852,-0.004749,0.249955,0,0);}
.m56_c01045{transform:matrix(0.202918,0.003855,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202918,0.003855,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202918,0.003855,-0.004749,0.249955,0,0);}
.m40_c01045{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);}
.m21_c01045{transform:matrix(0.204270,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204270,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204270,0.002451,-0.003000,0.249982,0,0);}
.m46_c01045{transform:matrix(0.204278,0.003881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204278,0.003881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204278,0.003881,-0.004749,0.249955,0,0);}
.m74_c01045{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);}
.m2a_c01045{transform:matrix(0.205660,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205660,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205660,0.002468,-0.003000,0.249982,0,0);}
.m64_c01045{transform:matrix(0.206723,0.003928,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206723,0.003928,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206723,0.003928,-0.004749,0.249955,0,0);}
.m6f_c01045{transform:matrix(0.207328,0.003939,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207328,0.003939,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207328,0.003939,-0.004749,0.249955,0,0);}
.m39_c01045{transform:matrix(0.207453,0.003942,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207453,0.003942,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207453,0.003942,-0.004749,0.249955,0,0);}
.m5a_c01045{transform:matrix(0.208847,0.003968,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208847,0.003968,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208847,0.003968,-0.004749,0.249955,0,0);}
.m98_c01045{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);}
.m63_c01045{transform:matrix(0.209377,0.003978,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209377,0.003978,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209377,0.003978,-0.004749,0.249955,0,0);}
.m19_c01045{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);}
.m4d_c01045{transform:matrix(0.210397,0.003998,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210397,0.003998,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210397,0.003998,-0.004749,0.249955,0,0);}
.m3d_c01045{transform:matrix(0.210517,0.004000,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210517,0.004000,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210517,0.004000,-0.004749,0.249955,0,0);}
.m10_c01045{transform:matrix(0.210784,0.004426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210784,0.004426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210784,0.004426,-0.005249,0.249945,0,0);}
.m4f_c01045{transform:matrix(0.212617,0.004040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212617,0.004040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212617,0.004040,-0.004749,0.249955,0,0);}
.m25_c01045{transform:matrix(0.212630,0.002552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212630,0.002552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212630,0.002552,-0.003000,0.249982,0,0);}
.ma8_c01045{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);}
.m3f_c01045{transform:matrix(0.214291,0.004072,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214291,0.004072,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214291,0.004072,-0.004749,0.249955,0,0);}
.m73_c01045{transform:matrix(0.214456,0.004075,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214456,0.004075,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214456,0.004075,-0.004749,0.249955,0,0);}
.m9b_c01045{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);}
.mae_c01045{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);}
.mac_c01045{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);}
.m95_c01045{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);}
.mb2_c01045{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);}
.m68_c01045{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);}
.m76_c01045{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);}
.ma2_c01045{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);}
.maf_c01045{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);}
.m9c_c01045{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);}
.mb3_c01045{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);}
.m17_c01045{transform:matrix(0.222401,0.004670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222401,0.004670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222401,0.004670,-0.005249,0.249945,0,0);}
.m97_c01045{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);}
.m79_c01045{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);}
.m1f_c01045{transform:matrix(0.224369,0.002692,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224369,0.002692,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224369,0.002692,-0.003000,0.249982,0,0);}
.m7b_c01045{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);}
.m3c_c01045{transform:matrix(0.226374,0.004301,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226374,0.004301,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226374,0.004301,-0.004749,0.249955,0,0);}
.ma5_c01045{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m5f_c01045{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);}
.m42_c01045{transform:matrix(0.233563,0.004438,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233563,0.004438,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233563,0.004438,-0.004749,0.249955,0,0);}
.m7c_c01045{transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);}
.m9_c01045{transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);}
.m51_c01045{transform:matrix(0.234868,0.004462,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234868,0.004462,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234868,0.004462,-0.004749,0.249955,0,0);}
.md_c01045{transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);}
.mad_c01045{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m69_c01045{transform:matrix(0.236547,0.004494,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236547,0.004494,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236547,0.004494,-0.004749,0.249955,0,0);}
.m99_c01045{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);}
.m3b_c01045{transform:matrix(0.238412,0.004530,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238412,0.004530,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238412,0.004530,-0.004749,0.249955,0,0);}
.m70_c01045{transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);}
.ma1_c01045{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);}
.m6b_c01045{transform:matrix(0.240857,0.004576,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240857,0.004576,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240857,0.004576,-0.004749,0.249955,0,0);}
.m41_c01045{transform:matrix(0.242696,0.004611,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242696,0.004611,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242696,0.004611,-0.004749,0.249955,0,0);}
.m53_c01045{transform:matrix(0.242961,0.004616,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242961,0.004616,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242961,0.004616,-0.004749,0.249955,0,0);}
.m5b_c01045{transform:matrix(0.243401,0.004625,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243401,0.004625,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243401,0.004625,-0.004749,0.249955,0,0);}
.ma7_c01045{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m1d_c01045{transform:matrix(0.252427,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252427,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252427,0.003029,-0.003000,0.249982,0,0);}
.m78_c01045{transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254525,0.000000,0.000000,0.250000,0,0);}
.m22_c01045{transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258226,0.003099,-0.003000,0.249982,0,0);}
.m9e_c01045{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);}
.m4e_c01045{transform:matrix(0.262613,0.004990,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262613,0.004990,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262613,0.004990,-0.004749,0.249955,0,0);}
.mb6_c01045{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);}
.m77_c01045{transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);}
.m16_c01045{transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);}
.m1_c01045{transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269120,0.000000,0.000000,0.250000,0,0);}
.ma_c01045{transform:matrix(0.269411,0.005658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269411,0.005658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269411,0.005658,-0.005249,0.249945,0,0);}
.m75_c01045{transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272830,0.000000,0.000000,0.250000,0,0);}
.ma3_c01045{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);}
.mb1_c01045{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.m5e_c01045{transform:matrix(0.281464,0.005348,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281464,0.005348,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281464,0.005348,-0.004749,0.249955,0,0);}
.m23_c01045{transform:matrix(0.283360,0.003400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283360,0.003400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283360,0.003400,-0.003000,0.249982,0,0);}
.m37_c01045{transform:matrix(0.285164,0.005418,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285164,0.005418,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285164,0.005418,-0.004749,0.249955,0,0);}
.m81_c01045{transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);}
.m67_c01045{transform:matrix(0.288328,0.005478,-0.004749,0.249955,0,0);-ms-transform:matrix(0.288328,0.005478,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.288328,0.005478,-0.004749,0.249955,0,0);}
.ma9_c01045{transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290710,0.000000,0.000000,0.250000,0,0);}
.m38_c01045{transform:matrix(0.290813,0.005525,-0.004749,0.249955,0,0);-ms-transform:matrix(0.290813,0.005525,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.290813,0.005525,-0.004749,0.249955,0,0);}
.m48_c01045{transform:matrix(0.293747,0.005581,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293747,0.005581,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293747,0.005581,-0.004749,0.249955,0,0);}
.m9d_c01045{transform:matrix(0.297745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297745,0.000000,0.000000,0.250000,0,0);}
.m49_c01045{transform:matrix(0.303920,0.005774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.303920,0.005774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.303920,0.005774,-0.004749,0.249955,0,0);}
.m4a_c01045{transform:matrix(0.304090,0.005778,-0.004749,0.249955,0,0);-ms-transform:matrix(0.304090,0.005778,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.304090,0.005778,-0.004749,0.249955,0,0);}
.ma6_c01045{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.m8e_c01045{transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324490,0.000000,0.000000,0.250000,0,0);}
.m45_c01045{transform:matrix(0.333015,0.006327,-0.004749,0.249955,0,0);-ms-transform:matrix(0.333015,0.006327,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.333015,0.006327,-0.004749,0.249955,0,0);}
.m3e_c01045{transform:matrix(0.340873,0.006477,-0.004749,0.249955,0,0);-ms-transform:matrix(0.340873,0.006477,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.340873,0.006477,-0.004749,0.249955,0,0);}
.m1a_c01045{transform:matrix(0.342100,0.009237,-0.006748,0.249909,0,0);-ms-transform:matrix(0.342100,0.009237,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.342100,0.009237,-0.006748,0.249909,0,0);}
.m2f_c01045{transform:matrix(0.346600,0.004159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.346600,0.004159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.346600,0.004159,-0.003000,0.249982,0,0);}
.m18_c01045{transform:matrix(0.352467,0.009517,-0.006748,0.249909,0,0);-ms-transform:matrix(0.352467,0.009517,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.352467,0.009517,-0.006748,0.249909,0,0);}
.mb5_c01045{transform:matrix(0.372525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372525,0.000000,0.000000,0.250000,0,0);}
.ma0_c01045{transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373030,0.000000,0.000000,0.250000,0,0);}
.m7f_c01045{transform:matrix(0.373970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373970,0.000000,0.000000,0.250000,0,0);}
.m8_c01045{transform:matrix(0.379096,0.007961,-0.005249,0.249945,0,0);-ms-transform:matrix(0.379096,0.007961,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.379096,0.007961,-0.005249,0.249945,0,0);}
.mf_c01045{transform:matrix(0.380191,0.007984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.380191,0.007984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.380191,0.007984,-0.005249,0.249945,0,0);}
.m2b_c01045{transform:matrix(0.380668,0.004568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.380668,0.004568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.380668,0.004568,-0.003000,0.249982,0,0);}
.m0_c01045{transform:matrix(0.402860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402860,0.000000,0.000000,0.250000,0,0);}
.m7_c01045{transform:matrix(0.404606,0.008497,-0.005249,0.249945,0,0);-ms-transform:matrix(0.404606,0.008497,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.404606,0.008497,-0.005249,0.249945,0,0);}
.m50_c01045{transform:matrix(0.407816,0.007749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.407816,0.007749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.407816,0.007749,-0.004749,0.249955,0,0);}
.m5_c01045{transform:matrix(0.421685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421685,0.000000,0.000000,0.250000,0,0);}
.m7e_c01045{transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431385,0.000000,0.000000,0.250000,0,0);}
.m2e_c01045{transform:matrix(0.438583,0.005263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.438583,0.005263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.438583,0.005263,-0.003000,0.249982,0,0);}
.m94_c01045{transform:matrix(0.439130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439130,0.000000,0.000000,0.250000,0,0);}
.me_c01045{transform:matrix(0.454335,0.009541,-0.005249,0.249945,0,0);-ms-transform:matrix(0.454335,0.009541,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.454335,0.009541,-0.005249,0.249945,0,0);}
.m3_c01045{transform:matrix(0.456615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456615,0.000000,0.000000,0.250000,0,0);}
.mc_c01045{transform:matrix(0.470796,0.009887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.470796,0.009887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.470796,0.009887,-0.005249,0.249945,0,0);}
.ma4_c01045{transform:matrix(0.479995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479995,0.000000,0.000000,0.250000,0,0);}
.m2_c01045{transform:matrix(0.517380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517380,0.000000,0.000000,0.250000,0,0);}
.m4_c01045{transform:matrix(0.535890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535890,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.536350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536350,0.000000,0.000000,0.250000,0,0);}
.m80_c01045{transform:matrix(0.558615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558615,0.000000,0.000000,0.250000,0,0);}
.m12_c01045{transform:matrix(0.720851,0.015138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.720851,0.015138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.720851,0.015138,-0.005249,0.249945,0,0);}
.m84_c01045{transform:matrix(1.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.216210,0.000000,0.000000,0.250000,0,0);}
.m86_c01045{transform:matrix(1.588250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.588250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.588250,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.v1_c01045{vertical-align:5.274952px;}
.ls0_c01045{letter-spacing:0.000000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:0.000000px;}
._0_c01045{width:4498.536973px;}
.fc0_c01045{color:transparent;}
.fs3_c01045{font-size:16.800000px;}
.fs14_c01045{font-size:23.100000px;}
.fs16_c01045{font-size:27.300000px;}
.fs17_c01045{font-size:48.300000px;}
.fs18_c01045{font-size:50.400000px;}
.fs15_c01045{font-size:54.600000px;}
.fs10_c01045{font-size:59.860802px;}
.fs13_c01045{font-size:63.011370px;}
.fsc_c01045{font-size:67.212129px;}
.fs8_c01045{font-size:68.254914px;}
.fs12_c01045{font-size:68.262318px;}
.fse_c01045{font-size:69.312508px;}
.fsa_c01045{font-size:70.355065px;}
.fsd_c01045{font-size:70.362697px;}
.fs5_c01045{font-size:70.365510px;}
.fs7_c01045{font-size:70.375638px;}
.fs2_c01045{font-size:71.400000px;}
.fsb_c01045{font-size:71.412887px;}
.fs6_c01045{font-size:71.415742px;}
.fs9_c01045{font-size:72.455216px;}
.fs4_c01045{font-size:72.465973px;}
.fsf_c01045{font-size:73.513266px;}
.fs1_c01045{font-size:77.700000px;}
.fs11_c01045{font-size:89.266108px;}
.fs0_c01045{font-size:103.950000px;}
.y0_c01045{bottom:0.000000px;}
.y77_c01045{bottom:166.540500px;}
.y76_c01045{bottom:183.853500px;}
.y75_c01045{bottom:193.296000px;}
.y74_c01045{bottom:219.034500px;}
.y73_c01045{bottom:251.788500px;}
.y72_c01045{bottom:260.550000px;}
.y71_c01045{bottom:273.359029px;}
.y70_c01045{bottom:273.836422px;}
.y6f_c01045{bottom:274.124046px;}
.y6e_c01045{bottom:274.550736px;}
.y6d_c01045{bottom:275.325199px;}
.y6c_c01045{bottom:275.627400px;}
.y6b_c01045{bottom:276.077655px;}
.y6a_c01045{bottom:276.418026px;}
.y69_c01045{bottom:276.810403px;}
.y68_c01045{bottom:277.532205px;}
.y67_c01045{bottom:277.876120px;}
.y66_c01045{bottom:278.329663px;}
.y65_c01045{bottom:296.545770px;}
.y64_c01045{bottom:297.252369px;}
.y63_c01045{bottom:297.550248px;}
.y62_c01045{bottom:298.277544px;}
.y61_c01045{bottom:298.596861px;}
.y60_c01045{bottom:299.326486px;}
.y5f_c01045{bottom:299.920570px;}
.y5e_c01045{bottom:300.205486px;}
.y5d_c01045{bottom:300.476082px;}
.y5b_c01045{bottom:322.664842px;}
.y5c_c01045{bottom:322.665633px;}
.y5a_c01045{bottom:341.447170px;}
.y59_c01045{bottom:342.376890px;}
.y58_c01045{bottom:342.989251px;}
.y57_c01045{bottom:343.685707px;}
.y56_c01045{bottom:344.342610px;}
.y55_c01045{bottom:345.188947px;}
.y54_c01045{bottom:345.953157px;}
.y53_c01045{bottom:346.575019px;}
.y52_c01045{bottom:347.192853px;}
.y51_c01045{bottom:365.956542px;}
.y50_c01045{bottom:366.571491px;}
.y4f_c01045{bottom:367.965607px;}
.y4e_c01045{bottom:390.132180px;}
.y4d_c01045{bottom:390.707785px;}
.y4c_c01045{bottom:413.727463px;}
.y4b_c01045{bottom:413.727711px;}
.y4a_c01045{bottom:413.727894px;}
.y49_c01045{bottom:413.728239px;}
.y48_c01045{bottom:435.168895px;}
.y47_c01045{bottom:435.627048px;}
.y46_c01045{bottom:435.994636px;}
.y45_c01045{bottom:436.403907px;}
.y44_c01045{bottom:436.784869px;}
.y43_c01045{bottom:437.717922px;}
.y42_c01045{bottom:439.005292px;}
.y41_c01045{bottom:457.053339px;}
.y40_c01045{bottom:457.504462px;}
.y3f_c01045{bottom:458.253435px;}
.y3e_c01045{bottom:458.697348px;}
.y3d_c01045{bottom:459.394750px;}
.y3c_c01045{bottom:459.847014px;}
.y3b_c01045{bottom:460.340473px;}
.y3a_c01045{bottom:461.517207px;}
.y39_c01045{bottom:461.965024px;}
.y38_c01045{bottom:479.244175px;}
.y37_c01045{bottom:479.961048px;}
.y36_c01045{bottom:480.411732px;}
.y35_c01045{bottom:480.975937px;}
.y34_c01045{bottom:481.732707px;}
.y33_c01045{bottom:482.263231px;}
.y32_c01045{bottom:482.758051px;}
.y31_c01045{bottom:502.294963px;}
.y30_c01045{bottom:503.268409px;}
.y2f_c01045{bottom:503.955801px;}
.y2e_c01045{bottom:504.634500px;}
.y2c_c01045{bottom:526.687482px;}
.y2d_c01045{bottom:526.687734px;}
.y2b_c01045{bottom:547.356618px;}
.y2a_c01045{bottom:547.843272px;}
.y29_c01045{bottom:550.776024px;}
.y28_c01045{bottom:551.130804px;}
.y27_c01045{bottom:551.426544px;}
.y26_c01045{bottom:551.879208px;}
.y24_c01045{bottom:570.082776px;}
.y25_c01045{bottom:570.088680px;}
.y23_c01045{bottom:570.478848px;}
.y22_c01045{bottom:570.880734px;}
.y21_c01045{bottom:571.191720px;}
.y20_c01045{bottom:572.088030px;}
.y1f_c01045{bottom:572.581230px;}
.y1e_c01045{bottom:572.828226px;}
.y1d_c01045{bottom:573.541674px;}
.y1c_c01045{bottom:573.953352px;}
.y1b_c01045{bottom:574.561500px;}
.y1a_c01045{bottom:592.893752px;}
.y19_c01045{bottom:594.164479px;}
.y18_c01045{bottom:595.229427px;}
.y17_c01045{bottom:595.623128px;}
.y16_c01045{bottom:597.249000px;}
.y15_c01045{bottom:615.661202px;}
.y14_c01045{bottom:616.147694px;}
.y13_c01045{bottom:616.691949px;}
.y12_c01045{bottom:617.478411px;}
.y11_c01045{bottom:618.320274px;}
.y10_c01045{bottom:619.389077px;}
.yf_c01045{bottom:619.853084px;}
.ye_c01045{bottom:620.180276px;}
.yd_c01045{bottom:641.985596px;}
.yc_c01045{bottom:642.263584px;}
.yb_c01045{bottom:643.945097px;}
.ya_c01045{bottom:661.078100px;}
.y9_c01045{bottom:661.468825px;}
.y8_c01045{bottom:662.290472px;}
.y7_c01045{bottom:663.075704px;}
.y6_c01045{bottom:663.736983px;}
.y5_c01045{bottom:665.826000px;}
.y4_c01045{bottom:671.214000px;}
.y3_c01045{bottom:716.529000px;}
.y2_c01045{bottom:756.468000px;}
.y1_c01045{bottom:798.975000px;}
.h5_c01045{height:16.800000px;}
.h17_c01045{height:23.100000px;}
.h19_c01045{height:27.300000px;}
.h1a_c01045{height:48.300000px;}
.h1b_c01045{height:50.400000px;}
.h18_c01045{height:54.600000px;}
.h12_c01045{height:59.860802px;}
.h16_c01045{height:63.011370px;}
.he_c01045{height:67.212129px;}
.ha_c01045{height:68.254914px;}
.h15_c01045{height:68.262318px;}
.h10_c01045{height:69.312508px;}
.hc_c01045{height:70.355065px;}
.hf_c01045{height:70.362697px;}
.h7_c01045{height:70.365510px;}
.h9_c01045{height:70.375638px;}
.h4_c01045{height:71.400000px;}
.hd_c01045{height:71.412887px;}
.h8_c01045{height:71.415742px;}
.hb_c01045{height:72.455216px;}
.h6_c01045{height:72.465973px;}
.h11_c01045{height:73.513266px;}
.h3_c01045{height:77.700000px;}
.h14_c01045{height:89.266108px;}
.h13_c01045{height:94.541060px;}
.h2_c01045{height:103.950000px;}
.h0_c01045{height:1008.450000px;}
.h1_c01045{height:1008.750000px;}
.w1_c01045{width:700.500000px;}
.w0_c01045{width:700.650000px;}
.x0_c01045{left:0.000000px;}
.x6f_c01045{left:105.840000px;}
.x70_c01045{left:110.700000px;}
.x69_c01045{left:117.720000px;}
.x3_c01045{left:122.040000px;}
.x71_c01045{left:132.030000px;}
.x7d_c01045{left:136.620000px;}
.x46_c01045{left:145.306074px;}
.x5b_c01045{left:146.340000px;}
.x1d_c01045{left:147.531000px;}
.x11_c01045{left:148.576920px;}
.x72_c01045{left:161.460000px;}
.x4c_c01045{left:166.124649px;}
.x5c_c01045{left:171.180000px;}
.x12_c01045{left:173.733141px;}
.x4b_c01045{left:174.930400px;}
.xe_c01045{left:179.788519px;}
.x47_c01045{left:183.904768px;}
.x7e_c01045{left:186.030000px;}
.x4d_c01045{left:187.991128px;}
.x26_c01045{left:189.172416px;}
.x73_c01045{left:192.240000px;}
.x1e_c01045{left:198.210000px;}
.x54_c01045{left:204.196251px;}
.x5d_c01045{left:207.900000px;}
.x13_c01045{left:209.406126px;}
.x27_c01045{left:216.067740px;}
.x48_c01045{left:222.794491px;}
.x3f_c01045{left:227.860575px;}
.x39_c01045{left:230.109984px;}
.x1f_c01045{left:232.516500px;}
.x4e_c01045{left:233.632315px;}
.x40_c01045{left:240.822249px;}
.x32_c01045{left:242.720757px;}
.x1_c01045{left:244.350000px;}
.x28_c01045{left:248.258118px;}
.x55_c01045{left:255.769653px;}
.x7f_c01045{left:257.310000px;}
.x6a_c01045{left:262.440000px;}
.x49_c01045{left:270.597727px;}
.x33_c01045{left:271.772368px;}
.x80_c01045{left:273.240000px;}
.x44_c01045{left:274.391697px;}
.x41_c01045{left:282.139654px;}
.x8_c01045{left:284.560500px;}
.x6_c01045{left:286.740000px;}
.x3a_c01045{left:288.626149px;}
.x4f_c01045{left:289.803228px;}
.x14_c01045{left:291.672454px;}
.x2f_c01045{left:295.475727px;}
.x34_c01045{left:298.339866px;}
.xf_c01045{left:299.878159px;}
.x42_c01045{left:302.271703px;}
.x74_c01045{left:305.100000px;}
.x2b_c01045{left:306.731016px;}
.x56_c01045{left:308.156140px;}
.x4_c01045{left:309.960000px;}
.x20_c01045{left:312.553500px;}
.x50_c01045{left:314.349021px;}
.x75_c01045{left:315.630000px;}
.x63_c01045{left:317.790000px;}
.x10_c01045{left:319.690057px;}
.x43_c01045{left:322.852698px;}
.x5e_c01045{left:329.400000px;}
.x3b_c01045{left:331.021227px;}
.x35_c01045{left:339.388934px;}
.x30_c01045{left:342.466468px;}
.x19_c01045{left:344.725500px;}
.x6b_c01045{left:346.410000px;}
.x3c_c01045{left:348.307729px;}
.x64_c01045{left:350.460000px;}
.x21_c01045{left:353.653500px;}
.x76_c01045{left:355.320000px;}
.x15_c01045{left:356.486353px;}
.x1a_c01045{left:359.307000px;}
.x57_c01045{left:361.895742px;}
.x36_c01045{left:365.516931px;}
.x3d_c01045{left:366.926175px;}
.x51_c01045{left:370.239376px;}
.x5f_c01045{left:374.490000px;}
.x5a_c01045{left:375.840000px;}
.x2d_c01045{left:379.476000px;}
.x9_c01045{left:384.037500px;}
.x2c_c01045{left:385.846410px;}
.x65_c01045{left:387.180000px;}
.x52_c01045{left:393.182998px;}
.x81_c01045{left:396.630000px;}
.x1b_c01045{left:398.749500px;}
.x66_c01045{left:401.490000px;}
.x2_c01045{left:402.570000px;}
.x3e_c01045{left:404.463037px;}
.x7_c01045{left:406.620000px;}
.x45_c01045{left:408.326371px;}
.x37_c01045{left:409.596113px;}
.x60_c01045{left:413.640000px;}
.xa_c01045{left:415.527000px;}
.x16_c01045{left:417.018528px;}
.x22_c01045{left:428.346000px;}
.x82_c01045{left:430.380000px;}
.x38_c01045{left:436.103610px;}
.x31_c01045{left:439.692879px;}
.x5_c01045{left:443.610000px;}
.x1c_c01045{left:445.813500px;}
.x53_c01045{left:447.510183px;}
.x6c_c01045{left:451.710000px;}
.xb_c01045{left:452.919000px;}
.x23_c01045{left:454.261500px;}
.x17_c01045{left:458.871053px;}
.x2e_c01045{left:466.888500px;}
.x58_c01045{left:468.288859px;}
.x77_c01045{left:478.710000px;}
.x61_c01045{left:481.410000px;}
.x78_c01045{left:484.110000px;}
.x24_c01045{left:487.752000px;}
.xc_c01045{left:492.045000px;}
.x67_c01045{left:494.640000px;}
.x18_c01045{left:496.329352px;}
.x62_c01045{left:497.880000px;}
.x59_c01045{left:502.339080px;}
.x4a_c01045{left:504.494065px;}
.x79_c01045{left:506.520000px;}
.xd_c01045{left:510.651000px;}
.x29_c01045{left:514.907322px;}
.x25_c01045{left:520.758000px;}
.x83_c01045{left:538.920000px;}
.x7a_c01045{left:544.590000px;}
.x6d_c01045{left:551.070000px;}
.x2a_c01045{left:559.087344px;}
.x7b_c01045{left:569.700000px;}
.x68_c01045{left:613.170000px;}
.x7c_c01045{left:622.350000px;}
.x6e_c01045{left:643.140000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.v1_c01045{vertical-align:4.688846pt;}
.ls0_c01045{letter-spacing:0.000000pt;}
.ws0_c01045{word-spacing:0.000000pt;}
._0_c01045{width:3998.699531pt;}
.fs3_c01045{font-size:14.933333pt;}
.fs14_c01045{font-size:20.533333pt;}
.fs16_c01045{font-size:24.266667pt;}
.fs17_c01045{font-size:42.933333pt;}
.fs18_c01045{font-size:44.800000pt;}
.fs15_c01045{font-size:48.533333pt;}
.fs10_c01045{font-size:53.209602pt;}
.fs13_c01045{font-size:56.010107pt;}
.fsc_c01045{font-size:59.744114pt;}
.fs8_c01045{font-size:60.671035pt;}
.fs12_c01045{font-size:60.677616pt;}
.fse_c01045{font-size:61.611118pt;}
.fsa_c01045{font-size:62.537836pt;}
.fsd_c01045{font-size:62.544620pt;}
.fs5_c01045{font-size:62.547120pt;}
.fs7_c01045{font-size:62.556123pt;}
.fs2_c01045{font-size:63.466667pt;}
.fsb_c01045{font-size:63.478121pt;}
.fs6_c01045{font-size:63.480660pt;}
.fs9_c01045{font-size:64.404637pt;}
.fs4_c01045{font-size:64.414199pt;}
.fsf_c01045{font-size:65.345125pt;}
.fs1_c01045{font-size:69.066667pt;}
.fs11_c01045{font-size:79.347652pt;}
.fs0_c01045{font-size:92.400000pt;}
.y0_c01045{bottom:0.000000pt;}
.y77_c01045{bottom:148.036000pt;}
.y76_c01045{bottom:163.425333pt;}
.y75_c01045{bottom:171.818667pt;}
.y74_c01045{bottom:194.697333pt;}
.y73_c01045{bottom:223.812000pt;}
.y72_c01045{bottom:231.600000pt;}
.y71_c01045{bottom:242.985804pt;}
.y70_c01045{bottom:243.410153pt;}
.y6f_c01045{bottom:243.665819pt;}
.y6e_c01045{bottom:244.045099pt;}
.y6d_c01045{bottom:244.733511pt;}
.y6c_c01045{bottom:245.002133pt;}
.y6b_c01045{bottom:245.402360pt;}
.y6a_c01045{bottom:245.704912pt;}
.y69_c01045{bottom:246.053692pt;}
.y68_c01045{bottom:246.695293pt;}
.y67_c01045{bottom:247.000996pt;}
.y66_c01045{bottom:247.404145pt;}
.y65_c01045{bottom:263.596240pt;}
.y64_c01045{bottom:264.224328pt;}
.y63_c01045{bottom:264.489109pt;}
.y62_c01045{bottom:265.135595pt;}
.y61_c01045{bottom:265.419432pt;}
.y60_c01045{bottom:266.067988pt;}
.y5f_c01045{bottom:266.596063pt;}
.y5e_c01045{bottom:266.849321pt;}
.y5d_c01045{bottom:267.089851pt;}
.y5b_c01045{bottom:286.813193pt;}
.y5c_c01045{bottom:286.813896pt;}
.y5a_c01045{bottom:303.508596pt;}
.y59_c01045{bottom:304.335013pt;}
.y58_c01045{bottom:304.879335pt;}
.y57_c01045{bottom:305.498407pt;}
.y56_c01045{bottom:306.082320pt;}
.y55_c01045{bottom:306.834620pt;}
.y54_c01045{bottom:307.513917pt;}
.y53_c01045{bottom:308.066684pt;}
.y52_c01045{bottom:308.615869pt;}
.y51_c01045{bottom:325.294704pt;}
.y50_c01045{bottom:325.841325pt;}
.y4f_c01045{bottom:327.080540pt;}
.y4e_c01045{bottom:346.784160pt;}
.y4d_c01045{bottom:347.295809pt;}
.y4c_c01045{bottom:367.757745pt;}
.y4b_c01045{bottom:367.757965pt;}
.y4a_c01045{bottom:367.758128pt;}
.y49_c01045{bottom:367.758435pt;}
.y48_c01045{bottom:386.816796pt;}
.y47_c01045{bottom:387.224043pt;}
.y46_c01045{bottom:387.550788pt;}
.y45_c01045{bottom:387.914584pt;}
.y44_c01045{bottom:388.253217pt;}
.y43_c01045{bottom:389.082597pt;}
.y42_c01045{bottom:390.226927pt;}
.y41_c01045{bottom:406.269635pt;}
.y40_c01045{bottom:406.670633pt;}
.y3f_c01045{bottom:407.336387pt;}
.y3e_c01045{bottom:407.730976pt;}
.y3d_c01045{bottom:408.350889pt;}
.y3c_c01045{bottom:408.752901pt;}
.y3b_c01045{bottom:409.191532pt;}
.y3a_c01045{bottom:410.237517pt;}
.y39_c01045{bottom:410.635577pt;}
.y38_c01045{bottom:425.994823pt;}
.y37_c01045{bottom:426.632043pt;}
.y36_c01045{bottom:427.032651pt;}
.y35_c01045{bottom:427.534167pt;}
.y34_c01045{bottom:428.206851pt;}
.y33_c01045{bottom:428.678428pt;}
.y32_c01045{bottom:429.118268pt;}
.y31_c01045{bottom:446.484412pt;}
.y30_c01045{bottom:447.349697pt;}
.y2f_c01045{bottom:447.960712pt;}
.y2e_c01045{bottom:448.564000pt;}
.y2c_c01045{bottom:468.166651pt;}
.y2d_c01045{bottom:468.166875pt;}
.y2b_c01045{bottom:486.539216pt;}
.y2a_c01045{bottom:486.971797pt;}
.y29_c01045{bottom:489.578688pt;}
.y28_c01045{bottom:489.894048pt;}
.y27_c01045{bottom:490.156928pt;}
.y26_c01045{bottom:490.559296pt;}
.y24_c01045{bottom:506.740245pt;}
.y25_c01045{bottom:506.745493pt;}
.y23_c01045{bottom:507.092309pt;}
.y22_c01045{bottom:507.449541pt;}
.y21_c01045{bottom:507.725973pt;}
.y20_c01045{bottom:508.522693pt;}
.y1f_c01045{bottom:508.961093pt;}
.y1e_c01045{bottom:509.180645pt;}
.y1d_c01045{bottom:509.814821pt;}
.y1c_c01045{bottom:510.180757pt;}
.y1b_c01045{bottom:510.721333pt;}
.y1a_c01045{bottom:527.016668pt;}
.y19_c01045{bottom:528.146204pt;}
.y18_c01045{bottom:529.092824pt;}
.y17_c01045{bottom:529.442780pt;}
.y16_c01045{bottom:530.888000pt;}
.y15_c01045{bottom:547.254401pt;}
.y14_c01045{bottom:547.686839pt;}
.y13_c01045{bottom:548.170621pt;}
.y12_c01045{bottom:548.869699pt;}
.y11_c01045{bottom:549.618021pt;}
.y10_c01045{bottom:550.568068pt;}
.yf_c01045{bottom:550.980519pt;}
.ye_c01045{bottom:551.271356pt;}
.yd_c01045{bottom:570.653863pt;}
.yc_c01045{bottom:570.900964pt;}
.yb_c01045{bottom:572.395641pt;}
.ya_c01045{bottom:587.624977pt;}
.y9_c01045{bottom:587.972289pt;}
.y8_c01045{bottom:588.702641pt;}
.y7_c01045{bottom:589.400625pt;}
.y6_c01045{bottom:589.988429pt;}
.y5_c01045{bottom:591.845333pt;}
.y4_c01045{bottom:596.634667pt;}
.y3_c01045{bottom:636.914667pt;}
.y2_c01045{bottom:672.416000pt;}
.y1_c01045{bottom:710.200000pt;}
.h5_c01045{height:14.933333pt;}
.h17_c01045{height:20.533333pt;}
.h19_c01045{height:24.266667pt;}
.h1a_c01045{height:42.933333pt;}
.h1b_c01045{height:44.800000pt;}
.h18_c01045{height:48.533333pt;}
.h12_c01045{height:53.209602pt;}
.h16_c01045{height:56.010107pt;}
.he_c01045{height:59.744114pt;}
.ha_c01045{height:60.671035pt;}
.h15_c01045{height:60.677616pt;}
.h10_c01045{height:61.611118pt;}
.hc_c01045{height:62.537836pt;}
.hf_c01045{height:62.544620pt;}
.h7_c01045{height:62.547120pt;}
.h9_c01045{height:62.556123pt;}
.h4_c01045{height:63.466667pt;}
.hd_c01045{height:63.478121pt;}
.h8_c01045{height:63.480660pt;}
.hb_c01045{height:64.404637pt;}
.h6_c01045{height:64.414199pt;}
.h11_c01045{height:65.345125pt;}
.h3_c01045{height:69.066667pt;}
.h14_c01045{height:79.347652pt;}
.h13_c01045{height:84.036498pt;}
.h2_c01045{height:92.400000pt;}
.h0_c01045{height:896.400000pt;}
.h1_c01045{height:896.666667pt;}
.w1_c01045{width:622.666667pt;}
.w0_c01045{width:622.800000pt;}
.x0_c01045{left:0.000000pt;}
.x6f_c01045{left:94.080000pt;}
.x70_c01045{left:98.400000pt;}
.x69_c01045{left:104.640000pt;}
.x3_c01045{left:108.480000pt;}
.x71_c01045{left:117.360000pt;}
.x7d_c01045{left:121.440000pt;}
.x46_c01045{left:129.160955pt;}
.x5b_c01045{left:130.080000pt;}
.x1d_c01045{left:131.138667pt;}
.x11_c01045{left:132.068373pt;}
.x72_c01045{left:143.520000pt;}
.x4c_c01045{left:147.666355pt;}
.x5c_c01045{left:152.160000pt;}
.x12_c01045{left:154.429459pt;}
.x4b_c01045{left:155.493689pt;}
.xe_c01045{left:159.812017pt;}
.x47_c01045{left:163.470905pt;}
.x7e_c01045{left:165.360000pt;}
.x4d_c01045{left:167.103225pt;}
.x26_c01045{left:168.153259pt;}
.x73_c01045{left:170.880000pt;}
.x1e_c01045{left:176.186667pt;}
.x54_c01045{left:181.507779pt;}
.x5d_c01045{left:184.800000pt;}
.x13_c01045{left:186.138779pt;}
.x27_c01045{left:192.060213pt;}
.x48_c01045{left:198.039548pt;}
.x3f_c01045{left:202.542733pt;}
.x39_c01045{left:204.542208pt;}
.x1f_c01045{left:206.681333pt;}
.x4e_c01045{left:207.673169pt;}
.x40_c01045{left:214.064221pt;}
.x32_c01045{left:215.751784pt;}
.x1_c01045{left:217.200000pt;}
.x28_c01045{left:220.673883pt;}
.x55_c01045{left:227.350803pt;}
.x7f_c01045{left:228.720000pt;}
.x6a_c01045{left:233.280000pt;}
.x49_c01045{left:240.531313pt;}
.x33_c01045{left:241.575439pt;}
.x80_c01045{left:242.880000pt;}
.x44_c01045{left:243.903731pt;}
.x41_c01045{left:250.790804pt;}
.x8_c01045{left:252.942667pt;}
.x6_c01045{left:254.880000pt;}
.x3a_c01045{left:256.556577pt;}
.x4f_c01045{left:257.602869pt;}
.x14_c01045{left:259.264404pt;}
.x2f_c01045{left:262.645091pt;}
.x34_c01045{left:265.190992pt;}
.xf_c01045{left:266.558364pt;}
.x42_c01045{left:268.685959pt;}
.x74_c01045{left:271.200000pt;}
.x2b_c01045{left:272.649792pt;}
.x56_c01045{left:273.916569pt;}
.x4_c01045{left:275.520000pt;}
.x20_c01045{left:277.825333pt;}
.x50_c01045{left:279.421352pt;}
.x75_c01045{left:280.560000pt;}
.x63_c01045{left:282.480000pt;}
.x10_c01045{left:284.168940pt;}
.x43_c01045{left:286.980176pt;}
.x5e_c01045{left:292.800000pt;}
.x3b_c01045{left:294.241091pt;}
.x35_c01045{left:301.679052pt;}
.x30_c01045{left:304.414639pt;}
.x19_c01045{left:306.422667pt;}
.x6b_c01045{left:307.920000pt;}
.x3c_c01045{left:309.606871pt;}
.x64_c01045{left:311.520000pt;}
.x21_c01045{left:314.358667pt;}
.x76_c01045{left:315.840000pt;}
.x15_c01045{left:316.876759pt;}
.x1a_c01045{left:319.384000pt;}
.x57_c01045{left:321.685104pt;}
.x36_c01045{left:324.903939pt;}
.x3d_c01045{left:326.156600pt;}
.x51_c01045{left:329.101668pt;}
.x5f_c01045{left:332.880000pt;}
.x5a_c01045{left:334.080000pt;}
.x2d_c01045{left:337.312000pt;}
.x9_c01045{left:341.366667pt;}
.x2c_c01045{left:342.974587pt;}
.x65_c01045{left:344.160000pt;}
.x52_c01045{left:349.495999pt;}
.x81_c01045{left:352.560000pt;}
.x1b_c01045{left:354.444000pt;}
.x66_c01045{left:356.880000pt;}
.x2_c01045{left:357.840000pt;}
.x3e_c01045{left:359.522700pt;}
.x7_c01045{left:361.440000pt;}
.x45_c01045{left:362.956775pt;}
.x37_c01045{left:364.085433pt;}
.x60_c01045{left:367.680000pt;}
.xa_c01045{left:369.357333pt;}
.x16_c01045{left:370.683136pt;}
.x22_c01045{left:380.752000pt;}
.x82_c01045{left:382.560000pt;}
.x38_c01045{left:387.647653pt;}
.x31_c01045{left:390.838115pt;}
.x5_c01045{left:394.320000pt;}
.x1c_c01045{left:396.278667pt;}
.x53_c01045{left:397.786829pt;}
.x6c_c01045{left:401.520000pt;}
.xb_c01045{left:402.594667pt;}
.x23_c01045{left:403.788000pt;}
.x17_c01045{left:407.885380pt;}
.x2e_c01045{left:415.012000pt;}
.x58_c01045{left:416.256764pt;}
.x77_c01045{left:425.520000pt;}
.x61_c01045{left:427.920000pt;}
.x78_c01045{left:430.320000pt;}
.x24_c01045{left:433.557333pt;}
.xc_c01045{left:437.373333pt;}
.x67_c01045{left:439.680000pt;}
.x18_c01045{left:441.181647pt;}
.x62_c01045{left:442.560000pt;}
.x59_c01045{left:446.523627pt;}
.x4a_c01045{left:448.439169pt;}
.x79_c01045{left:450.240000pt;}
.xd_c01045{left:453.912000pt;}
.x29_c01045{left:457.695397pt;}
.x25_c01045{left:462.896000pt;}
.x83_c01045{left:479.040000pt;}
.x7a_c01045{left:484.080000pt;}
.x6d_c01045{left:489.840000pt;}
.x2a_c01045{left:496.966528pt;}
.x7b_c01045{left:506.400000pt;}
.x68_c01045{left:545.040000pt;}
.x7c_c01045{left:553.200000pt;}
.x6e_c01045{left:571.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_c01046 {
    display:none;
  }
  .loading-indicator_c01046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01046" -> "#page-container .classname_c01046")
 */
.pf_c01046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01046 {overflow:visible;}
  }
}
.c_c01046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01046:after { /* webkit #35443 */
  content: '';
}
.t_c01046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01046 { /* info for Javascript */
  display:none;
}
.l_c01046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.000000;font-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_c01046{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);}
.m8c_c01046{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);}
.m67_c01046{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);}
.m24_c01046{transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034360,0.000000,0.000000,0.250000,0,0);}
.m71_c01046{transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);}
.m77_c01046{transform:matrix(0.041430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041430,0.000000,0.000000,0.250000,0,0);}
.m76_c01046{transform:matrix(0.080915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080915,0.000000,0.000000,0.250000,0,0);}
.m1c_c01046{transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);}
.m1f_c01046{transform:matrix(0.096330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096330,0.000000,0.000000,0.250000,0,0);}
.m41_c01046{transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128035,0.000000,0.000000,0.250000,0,0);}
.ma8_c01046{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);}
.m9_c01046{transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140260,0.000000,0.000000,0.250000,0,0);}
.m33_c01046{transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143255,0.000000,0.000000,0.250000,0,0);}
.m98_c01046{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m28_c01046{transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149045,0.000000,0.000000,0.250000,0,0);}
.m5f_c01046{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);}
.m69_c01046{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);}
.m3b_c01046{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);}
.mb_c01046{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);}
.m5d_c01046{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);}
.m81_c01046{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);}
.m42_c01046{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);}
.mc_c01046{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);}
.m85_c01046{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);}
.m3c_c01046{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);}
.m7_c01046{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);}
.m8e_c01046{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);}
.m55_c01046{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);}
.m29_c01046{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);}
.m39_c01046{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);}
.m8b_c01046{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);}
.m43_c01046{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);}
.m89_c01046{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_c01046{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);}
.m58_c01046{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);}
.m84_c01046{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);}
.m3d_c01046{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);}
.me_c01046{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);}
.m27_c01046{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);}
.ma9_c01046{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);}
.ma2_c01046{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);}
.ma3_c01046{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);}
.m60_c01046{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);}
.m20_c01046{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);}
.m3a_c01046{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);}
.m86_c01046{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);}
.m97_c01046{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);}
.m62_c01046{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);}
.m54_c01046{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);}
.m56_c01046{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);}
.m53_c01046{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);}
.m99_c01046{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);}
.m5e_c01046{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);}
.ma5_c01046{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);}
.m3e_c01046{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);}
.m65_c01046{transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);}
.m12_c01046{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);}
.m32_c01046{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);}
.mac_c01046{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);}
.m6d_c01046{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);}
.m45_c01046{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);}
.m8d_c01046{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);}
.m6b_c01046{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);}
.m1d_c01046{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);}
.m63_c01046{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);}
.m61_c01046{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);}
.m93_c01046{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);}
.m79_c01046{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);}
.m44_c01046{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);}
.m9c_c01046{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);}
.m5_c01046{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);}
.m83_c01046{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);}
.m22_c01046{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);}
.m6f_c01046{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);}
.m23_c01046{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);}
.m90_c01046{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);}
.m8f_c01046{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);}
.m6a_c01046{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);}
.m64_c01046{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);}
.m57_c01046{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);}
.m49_c01046{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);}
.m94_c01046{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);}
.m2b_c01046{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_c01046{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);}
.m7a_c01046{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);}
.m68_c01046{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);}
.m21_c01046{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);}
.m31_c01046{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);}
.ma_c01046{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);}
.m2e_c01046{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);}
.ma0_c01046{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_c01046{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);}
.m4a_c01046{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);}
.m3f_c01046{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);}
.m92_c01046{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);}
.mb1_c01046{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);}
.m40_c01046{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);}
.md_c01046{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);}
.m0_c01046{transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223120,0.000000,0.000000,0.250000,0,0);}
.m9d_c01046{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);}
.m4f_c01046{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);}
.m1a_c01046{transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224610,0.000000,0.000000,0.250000,0,0);}
.m13_c01046{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);}
.m2a_c01046{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);}
.m82_c01046{transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227960,0.000000,0.000000,0.250000,0,0);}
.m59_c01046{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);}
.m10_c01046{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);}
.m8_c01046{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);}
.m2f_c01046{transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);}
.m51_c01046{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);}
.m78_c01046{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);}
.m4c_c01046{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);}
.m17_c01046{transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);}
.mae_c01046{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);}
.m7e_c01046{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);}
.m25_c01046{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);}
.m46_c01046{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);}
.m1e_c01046{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);}
.m75_c01046{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);}
.m6c_c01046{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m95_c01046{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m4b_c01046{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m9b_c01046{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);}
.ma1_c01046{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.m4e_c01046{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);}
.maa_c01046{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);}
.m5b_c01046{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.m3_c01046{transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);}
.m9e_c01046{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);}
.m91_c01046{transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262430,0.000000,0.000000,0.250000,0,0);}
.m70_c01046{transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264305,0.000000,0.000000,0.250000,0,0);}
.m50_c01046{transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267025,0.000000,0.000000,0.250000,0,0);}
.m18_c01046{transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);}
.m96_c01046{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);}
.m30_c01046{transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);}
.m52_c01046{transform:matrix(0.274680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274680,0.000000,0.000000,0.250000,0,0);}
.mf_c01046{transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276655,0.000000,0.000000,0.250000,0,0);}
.m48_c01046{transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278375,0.000000,0.000000,0.250000,0,0);}
.m7c_c01046{transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278430,0.000000,0.000000,0.250000,0,0);}
.m2d_c01046{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);}
.m4d_c01046{transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);}
.m1b_c01046{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);}
.m73_c01046{transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285320,0.000000,0.000000,0.250000,0,0);}
.m37_c01046{transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289435,0.000000,0.000000,0.250000,0,0);}
.m14_c01046{transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290715,0.000000,0.000000,0.250000,0,0);}
.m38_c01046{transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301230,0.000000,0.000000,0.250000,0,0);}
.ma6_c01046{transform:matrix(0.303905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303905,0.000000,0.000000,0.250000,0,0);}
.ma4_c01046{transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309135,0.000000,0.000000,0.250000,0,0);}
.m47_c01046{transform:matrix(0.309965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309965,0.000000,0.000000,0.250000,0,0);}
.m7b_c01046{transform:matrix(0.317785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317785,0.000000,0.000000,0.250000,0,0);}
.m8a_c01046{transform:matrix(0.324010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324010,0.000000,0.000000,0.250000,0,0);}
.m19_c01046{transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);}
.m36_c01046{transform:matrix(0.327840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327840,0.000000,0.000000,0.250000,0,0);}
.m66_c01046{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);}
.m9f_c01046{transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338870,0.000000,0.000000,0.250000,0,0);}
.m2c_c01046{transform:matrix(0.338965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338965,0.000000,0.000000,0.250000,0,0);}
.m34_c01046{transform:matrix(0.340585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340585,0.000000,0.000000,0.250000,0,0);}
.m16_c01046{transform:matrix(0.353530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353530,0.000000,0.000000,0.250000,0,0);}
.m7f_c01046{transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359120,0.000000,0.000000,0.250000,0,0);}
.m35_c01046{transform:matrix(0.362230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362230,0.000000,0.000000,0.250000,0,0);}
.maf_c01046{transform:matrix(0.371640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371640,0.000000,0.000000,0.250000,0,0);}
.m5c_c01046{transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375555,0.000000,0.000000,0.250000,0,0);}
.m4_c01046{transform:matrix(0.386220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386220,0.000000,0.000000,0.250000,0,0);}
.mad_c01046{transform:matrix(0.394720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394720,0.000000,0.000000,0.250000,0,0);}
.m2_c01046{transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411470,0.000000,0.000000,0.250000,0,0);}
.m88_c01046{transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431715,0.000000,0.000000,0.250000,0,0);}
.m80_c01046{transform:matrix(0.439580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439580,0.000000,0.000000,0.250000,0,0);}
.m72_c01046{transform:matrix(0.443425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443425,0.000000,0.000000,0.250000,0,0);}
.mab_c01046{transform:matrix(0.465010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465010,0.000000,0.000000,0.250000,0,0);}
.m7d_c01046{transform:matrix(0.466855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466855,0.000000,0.000000,0.250000,0,0);}
.m74_c01046{transform:matrix(0.481240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481240,0.000000,0.000000,0.250000,0,0);}
.mb0_c01046{transform:matrix(0.513535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513535,0.000000,0.000000,0.250000,0,0);}
.ma7_c01046{transform:matrix(0.537790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537790,0.000000,0.000000,0.250000,0,0);}
.m6e_c01046{transform:matrix(0.539815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539815,0.000000,0.000000,0.250000,0,0);}
.m11_c01046{transform:matrix(0.602015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602015,0.000000,0.000000,0.250000,0,0);}
.m6_c01046{transform:matrix(0.646300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646300,0.000000,0.000000,0.250000,0,0);}
.m1_c01046{transform:matrix(0.837060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837060,0.000000,0.000000,0.250000,0,0);}
.m15_c01046{transform:matrix(0.912705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912705,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls0_c01046{letter-spacing:0.000000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:0.000000px;}
.fc0_c01046{color:transparent;}
.fsd_c01046{font-size:59.850000px;}
.fs8_c01046{font-size:60.900000px;}
.fs2_c01046{font-size:64.050000px;}
.fs5_c01046{font-size:65.100000px;}
.fs3_c01046{font-size:66.150000px;}
.fs0_c01046{font-size:68.250000px;}
.fsc_c01046{font-size:69.300000px;}
.fs1_c01046{font-size:70.350000px;}
.fs4_c01046{font-size:72.450000px;}
.fs9_c01046{font-size:73.500000px;}
.fse_c01046{font-size:76.650000px;}
.fsa_c01046{font-size:78.750000px;}
.fs7_c01046{font-size:79.800000px;}
.fsb_c01046{font-size:89.250000px;}
.fs6_c01046{font-size:93.450000px;}
.y0_c01046{bottom:0.000000px;}
.y20_c01046{bottom:269.910000px;}
.y1f_c01046{bottom:296.617500px;}
.y1e_c01046{bottom:314.541000px;}
.y1d_c01046{bottom:336.774000px;}
.y1c_c01046{bottom:359.473500px;}
.y1b_c01046{bottom:382.624500px;}
.y1a_c01046{bottom:405.798000px;}
.y19_c01046{bottom:428.596500px;}
.y14_c01046{bottom:449.556000px;}
.y15_c01046{bottom:454.284000px;}
.y16_c01046{bottom:456.318000px;}
.y17_c01046{bottom:456.768000px;}
.y18_c01046{bottom:456.957000px;}
.y13_c01046{bottom:473.512500px;}
.y12_c01046{bottom:495.654000px;}
.y11_c01046{bottom:518.457000px;}
.y10_c01046{bottom:540.801000px;}
.yf_c01046{bottom:563.415000px;}
.ye_c01046{bottom:586.636500px;}
.yd_c01046{bottom:610.218000px;}
.yc_c01046{bottom:632.910000px;}
.yb_c01046{bottom:654.366000px;}
.ya_c01046{bottom:677.353500px;}
.y9_c01046{bottom:699.717000px;}
.y8_c01046{bottom:721.606500px;}
.y3_c01046{bottom:745.473000px;}
.y4_c01046{bottom:746.548500px;}
.y5_c01046{bottom:747.219000px;}
.y6_c01046{bottom:747.660000px;}
.y7_c01046{bottom:748.596000px;}
.y2_c01046{bottom:769.156500px;}
.y1_c01046{bottom:792.529500px;}
.hf_c01046{height:59.850000px;}
.ha_c01046{height:60.900000px;}
.h4_c01046{height:64.050000px;}
.h7_c01046{height:65.100000px;}
.h5_c01046{height:66.150000px;}
.h2_c01046{height:68.250000px;}
.he_c01046{height:69.300000px;}
.h3_c01046{height:70.350000px;}
.h6_c01046{height:72.450000px;}
.hb_c01046{height:73.500000px;}
.h10_c01046{height:76.650000px;}
.hc_c01046{height:78.750000px;}
.h9_c01046{height:79.800000px;}
.hd_c01046{height:89.250000px;}
.h8_c01046{height:93.450000px;}
.h1_c01046{height:1005.000000px;}
.h0_c01046{height:1005.150000px;}
.w0_c01046{width:715.200000px;}
.w1_c01046{width:715.500000px;}
.x0_c01046{left:0.000000px;}
.x1f_c01046{left:122.311500px;}
.x20_c01046{left:135.271500px;}
.x28_c01046{left:141.211500px;}
.x35_c01046{left:142.831500px;}
.x9_c01046{left:144.720000px;}
.x3d_c01046{left:146.071500px;}
.x1_c01046{left:147.690000px;}
.x2_c01046{left:161.190000px;}
.x6d_c01046{left:162.811500px;}
.x4b_c01046{left:166.861500px;}
.x21_c01046{left:167.941500px;}
.x43_c01046{left:170.101500px;}
.xa_c01046{left:175.500000px;}
.x5d_c01046{left:179.551500px;}
.x58_c01046{left:181.981500px;}
.x3e_c01046{left:184.951500px;}
.x14_c01046{left:187.921500px;}
.x51_c01046{left:192.511500px;}
.xb_c01046{left:196.290000px;}
.x72_c01046{left:199.530000px;}
.x1a_c01046{left:202.501500px;}
.x4c_c01046{left:207.361500px;}
.x6a_c01046{left:208.981500px;}
.x30_c01046{left:210.061500px;}
.x44_c01046{left:211.141500px;}
.x29_c01046{left:212.221500px;}
.x3f_c01046{left:223.021500px;}
.x22_c01046{left:227.341500px;}
.x4a_c01046{left:231.661500px;}
.x11_c01046{left:234.532500px;}
.x3_c01046{left:241.920000px;}
.x65_c01046{left:245.161500px;}
.x36_c01046{left:247.051500px;}
.x45_c01046{left:252.721500px;}
.x23_c01046{left:254.611500px;}
.xc_c01046{left:259.740000px;}
.x1b_c01046{left:262.171500px;}
.x31_c01046{left:264.871500px;}
.x59_c01046{left:265.951500px;}
.x66_c01046{left:270.001500px;}
.x61_c01046{left:273.241500px;}
.x2a_c01046{left:279.181500px;}
.x15_c01046{left:281.341500px;}
.x5e_c01046{left:283.771500px;}
.x2e_c01046{left:284.851500px;}
.x24_c01046{left:288.091500px;}
.x12_c01046{left:290.356500px;}
.x40_c01046{left:292.681500px;}
.x73_c01046{left:294.030000px;}
.x4_c01046{left:297.810000px;}
.x5a_c01046{left:299.431500px;}
.x37_c01046{left:302.941500px;}
.xd_c01046{left:307.530000px;}
.x4d_c01046{left:312.391500px;}
.x6b_c01046{left:314.821500px;}
.x1c_c01046{left:319.411500px;}
.x46_c01046{left:321.571500px;}
.x74_c01046{left:323.190000px;}
.x5f_c01046{left:324.541500px;}
.x5_c01046{left:326.700000px;}
.x32_c01046{left:328.321500px;}
.x62_c01046{left:329.671500px;}
.x67_c01046{left:331.021500px;}
.x4e_c01046{left:333.991500px;}
.xe_c01046{left:335.340000px;}
.x5b_c01046{left:339.661500px;}
.x38_c01046{left:346.411500px;}
.x60_c01046{left:350.191500px;}
.x41_c01046{left:355.051500px;}
.x68_c01046{left:357.751500px;}
.x6_c01046{left:359.640000px;}
.x1d_c01046{left:360.721500px;}
.x47_c01046{left:362.341500px;}
.x2b_c01046{left:364.231500px;}
.x25_c01046{left:366.931500px;}
.x63_c01046{left:378.541500px;}
.x33_c01046{left:382.051500px;}
.x6e_c01046{left:384.211500px;}
.x39_c01046{left:387.181500px;}
.x4f_c01046{left:394.201500px;}
.xf_c01046{left:396.360000px;}
.x7_c01046{left:397.980000px;}
.x13_c01046{left:405.174000px;}
.x55_c01046{left:408.433500px;}
.x26_c01046{left:411.211500px;}
.x16_c01046{left:417.151500px;}
.x10_c01046{left:419.580000px;}
.x69_c01046{left:420.931500px;}
.x6c_c01046{left:430.381500px;}
.x34_c01046{left:431.731500px;}
.x8_c01046{left:434.430000px;}
.x17_c01046{left:439.561500px;}
.x48_c01046{left:443.341500px;}
.x6f_c01046{left:445.501500px;}
.x52_c01046{left:450.631500px;}
.x2f_c01046{left:454.411500px;}
.x3a_c01046{left:458.461500px;}
.x53_c01046{left:460.081500px;}
.x42_c01046{left:463.321500px;}
.x18_c01046{left:465.481500px;}
.x5c_c01046{left:468.181500px;}
.x49_c01046{left:475.201500px;}
.x2c_c01046{left:477.091500px;}
.x54_c01046{left:478.711500px;}
.x3b_c01046{left:482.221500px;}
.x70_c01046{left:488.161500px;}
.x50_c01046{left:499.501500px;}
.x2d_c01046{left:500.581500px;}
.x27_c01046{left:502.741500px;}
.x19_c01046{left:512.461500px;}
.x71_c01046{left:517.051500px;}
.x56_c01046{left:521.412000px;}
.x1e_c01046{left:528.121500px;}
.x64_c01046{left:534.061500px;}
.x3c_c01046{left:546.481500px;}
.x57_c01046{left:556.914000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls0_c01046{letter-spacing:0.000000pt;}
.ws0_c01046{word-spacing:0.000000pt;}
.fsd_c01046{font-size:53.200000pt;}
.fs8_c01046{font-size:54.133333pt;}
.fs2_c01046{font-size:56.933333pt;}
.fs5_c01046{font-size:57.866667pt;}
.fs3_c01046{font-size:58.800000pt;}
.fs0_c01046{font-size:60.666667pt;}
.fsc_c01046{font-size:61.600000pt;}
.fs1_c01046{font-size:62.533333pt;}
.fs4_c01046{font-size:64.400000pt;}
.fs9_c01046{font-size:65.333333pt;}
.fse_c01046{font-size:68.133333pt;}
.fsa_c01046{font-size:70.000000pt;}
.fs7_c01046{font-size:70.933333pt;}
.fsb_c01046{font-size:79.333333pt;}
.fs6_c01046{font-size:83.066667pt;}
.y0_c01046{bottom:0.000000pt;}
.y20_c01046{bottom:239.920000pt;}
.y1f_c01046{bottom:263.660000pt;}
.y1e_c01046{bottom:279.592000pt;}
.y1d_c01046{bottom:299.354667pt;}
.y1c_c01046{bottom:319.532000pt;}
.y1b_c01046{bottom:340.110667pt;}
.y1a_c01046{bottom:360.709333pt;}
.y19_c01046{bottom:380.974667pt;}
.y14_c01046{bottom:399.605333pt;}
.y15_c01046{bottom:403.808000pt;}
.y16_c01046{bottom:405.616000pt;}
.y17_c01046{bottom:406.016000pt;}
.y18_c01046{bottom:406.184000pt;}
.y13_c01046{bottom:420.900000pt;}
.y12_c01046{bottom:440.581333pt;}
.y11_c01046{bottom:460.850667pt;}
.y10_c01046{bottom:480.712000pt;}
.yf_c01046{bottom:500.813333pt;}
.ye_c01046{bottom:521.454667pt;}
.yd_c01046{bottom:542.416000pt;}
.yc_c01046{bottom:562.586667pt;}
.yb_c01046{bottom:581.658667pt;}
.ya_c01046{bottom:602.092000pt;}
.y9_c01046{bottom:621.970667pt;}
.y8_c01046{bottom:641.428000pt;}
.y3_c01046{bottom:662.642667pt;}
.y4_c01046{bottom:663.598667pt;}
.y5_c01046{bottom:664.194667pt;}
.y6_c01046{bottom:664.586667pt;}
.y7_c01046{bottom:665.418667pt;}
.y2_c01046{bottom:683.694667pt;}
.y1_c01046{bottom:704.470667pt;}
.hf_c01046{height:53.200000pt;}
.ha_c01046{height:54.133333pt;}
.h4_c01046{height:56.933333pt;}
.h7_c01046{height:57.866667pt;}
.h5_c01046{height:58.800000pt;}
.h2_c01046{height:60.666667pt;}
.he_c01046{height:61.600000pt;}
.h3_c01046{height:62.533333pt;}
.h6_c01046{height:64.400000pt;}
.hb_c01046{height:65.333333pt;}
.h10_c01046{height:68.133333pt;}
.hc_c01046{height:70.000000pt;}
.h9_c01046{height:70.933333pt;}
.hd_c01046{height:79.333333pt;}
.h8_c01046{height:83.066667pt;}
.h1_c01046{height:893.333333pt;}
.h0_c01046{height:893.466667pt;}
.w0_c01046{width:635.733333pt;}
.w1_c01046{width:636.000000pt;}
.x0_c01046{left:0.000000pt;}
.x1f_c01046{left:108.721333pt;}
.x20_c01046{left:120.241333pt;}
.x28_c01046{left:125.521333pt;}
.x35_c01046{left:126.961333pt;}
.x9_c01046{left:128.640000pt;}
.x3d_c01046{left:129.841333pt;}
.x1_c01046{left:131.280000pt;}
.x2_c01046{left:143.280000pt;}
.x6d_c01046{left:144.721333pt;}
.x4b_c01046{left:148.321333pt;}
.x21_c01046{left:149.281333pt;}
.x43_c01046{left:151.201333pt;}
.xa_c01046{left:156.000000pt;}
.x5d_c01046{left:159.601333pt;}
.x58_c01046{left:161.761333pt;}
.x3e_c01046{left:164.401333pt;}
.x14_c01046{left:167.041333pt;}
.x51_c01046{left:171.121333pt;}
.xb_c01046{left:174.480000pt;}
.x72_c01046{left:177.360000pt;}
.x1a_c01046{left:180.001333pt;}
.x4c_c01046{left:184.321333pt;}
.x6a_c01046{left:185.761333pt;}
.x30_c01046{left:186.721333pt;}
.x44_c01046{left:187.681333pt;}
.x29_c01046{left:188.641333pt;}
.x3f_c01046{left:198.241333pt;}
.x22_c01046{left:202.081333pt;}
.x4a_c01046{left:205.921333pt;}
.x11_c01046{left:208.473333pt;}
.x3_c01046{left:215.040000pt;}
.x65_c01046{left:217.921333pt;}
.x36_c01046{left:219.601333pt;}
.x45_c01046{left:224.641333pt;}
.x23_c01046{left:226.321333pt;}
.xc_c01046{left:230.880000pt;}
.x1b_c01046{left:233.041333pt;}
.x31_c01046{left:235.441333pt;}
.x59_c01046{left:236.401333pt;}
.x66_c01046{left:240.001333pt;}
.x61_c01046{left:242.881333pt;}
.x2a_c01046{left:248.161333pt;}
.x15_c01046{left:250.081333pt;}
.x5e_c01046{left:252.241333pt;}
.x2e_c01046{left:253.201333pt;}
.x24_c01046{left:256.081333pt;}
.x12_c01046{left:258.094667pt;}
.x40_c01046{left:260.161333pt;}
.x73_c01046{left:261.360000pt;}
.x4_c01046{left:264.720000pt;}
.x5a_c01046{left:266.161333pt;}
.x37_c01046{left:269.281333pt;}
.xd_c01046{left:273.360000pt;}
.x4d_c01046{left:277.681333pt;}
.x6b_c01046{left:279.841333pt;}
.x1c_c01046{left:283.921333pt;}
.x46_c01046{left:285.841333pt;}
.x74_c01046{left:287.280000pt;}
.x5f_c01046{left:288.481333pt;}
.x5_c01046{left:290.400000pt;}
.x32_c01046{left:291.841333pt;}
.x62_c01046{left:293.041333pt;}
.x67_c01046{left:294.241333pt;}
.x4e_c01046{left:296.881333pt;}
.xe_c01046{left:298.080000pt;}
.x5b_c01046{left:301.921333pt;}
.x38_c01046{left:307.921333pt;}
.x60_c01046{left:311.281333pt;}
.x41_c01046{left:315.601333pt;}
.x68_c01046{left:318.001333pt;}
.x6_c01046{left:319.680000pt;}
.x1d_c01046{left:320.641333pt;}
.x47_c01046{left:322.081333pt;}
.x2b_c01046{left:323.761333pt;}
.x25_c01046{left:326.161333pt;}
.x63_c01046{left:336.481333pt;}
.x33_c01046{left:339.601333pt;}
.x6e_c01046{left:341.521333pt;}
.x39_c01046{left:344.161333pt;}
.x4f_c01046{left:350.401333pt;}
.xf_c01046{left:352.320000pt;}
.x7_c01046{left:353.760000pt;}
.x13_c01046{left:360.154667pt;}
.x55_c01046{left:363.052000pt;}
.x26_c01046{left:365.521333pt;}
.x16_c01046{left:370.801333pt;}
.x10_c01046{left:372.960000pt;}
.x69_c01046{left:374.161333pt;}
.x6c_c01046{left:382.561333pt;}
.x34_c01046{left:383.761333pt;}
.x8_c01046{left:386.160000pt;}
.x17_c01046{left:390.721333pt;}
.x48_c01046{left:394.081333pt;}
.x6f_c01046{left:396.001333pt;}
.x52_c01046{left:400.561333pt;}
.x2f_c01046{left:403.921333pt;}
.x3a_c01046{left:407.521333pt;}
.x53_c01046{left:408.961333pt;}
.x42_c01046{left:411.841333pt;}
.x18_c01046{left:413.761333pt;}
.x5c_c01046{left:416.161333pt;}
.x49_c01046{left:422.401333pt;}
.x2c_c01046{left:424.081333pt;}
.x54_c01046{left:425.521333pt;}
.x3b_c01046{left:428.641333pt;}
.x70_c01046{left:433.921333pt;}
.x50_c01046{left:444.001333pt;}
.x2d_c01046{left:444.961333pt;}
.x27_c01046{left:446.881333pt;}
.x19_c01046{left:455.521333pt;}
.x71_c01046{left:459.601333pt;}
.x56_c01046{left:463.477333pt;}
.x1e_c01046{left:469.441333pt;}
.x64_c01046{left:474.721333pt;}
.x3c_c01046{left:485.761333pt;}
.x57_c01046{left:495.034667pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.000000;font-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_c01047{transform:matrix(0.010390,-0.000094,0.002250,0.249990,0,0);-ms-transform:matrix(0.010390,-0.000094,0.002250,0.249990,0,0);-webkit-transform:matrix(0.010390,-0.000094,0.002250,0.249990,0,0);}
.maa_c01047{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.m25_c01047{transform:matrix(0.016679,-0.000200,0.003000,0.249982,0,0);-ms-transform:matrix(0.016679,-0.000200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.016679,-0.000200,0.003000,0.249982,0,0);}
.m39_c01047{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);}
.m5_c01047{transform:matrix(0.017907,-0.000304,0.004249,0.249964,0,0);-ms-transform:matrix(0.017907,-0.000304,0.004249,0.249964,0,0);-webkit-transform:matrix(0.017907,-0.000304,0.004249,0.249964,0,0);}
.m4a_c01047{transform:matrix(0.018550,-0.000130,0.001750,0.249994,0,0);-ms-transform:matrix(0.018550,-0.000130,0.001750,0.249994,0,0);-webkit-transform:matrix(0.018550,-0.000130,0.001750,0.249994,0,0);}
.ma_c01047{transform:matrix(0.020977,-0.000357,0.004249,0.249964,0,0);-ms-transform:matrix(0.020977,-0.000357,0.004249,0.249964,0,0);-webkit-transform:matrix(0.020977,-0.000357,0.004249,0.249964,0,0);}
.m46_c01047{transform:matrix(0.102432,-0.000717,0.001750,0.249994,0,0);-ms-transform:matrix(0.102432,-0.000717,0.001750,0.249994,0,0);-webkit-transform:matrix(0.102432,-0.000717,0.001750,0.249994,0,0);}
.m7c_c01047{transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134870,0.000000,0.000000,0.250000,0,0);}
.mb8_c01047{transform:matrix(0.139310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139310,0.000000,0.000000,0.250000,0,0);}
.mae_c01047{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);}
.ma1_c01047{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);}
.m2d_c01047{transform:matrix(0.151331,-0.001059,0.001750,0.249994,0,0);-ms-transform:matrix(0.151331,-0.001059,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151331,-0.001059,0.001750,0.249994,0,0);}
.m40_c01047{transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151380,0.000000,0.000000,0.250000,0,0);}
.m9a_c01047{transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);}
.m9c_c01047{transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153760,0.000000,0.000000,0.250000,0,0);}
.m2e_c01047{transform:matrix(0.153791,-0.001077,0.001750,0.249994,0,0);-ms-transform:matrix(0.153791,-0.001077,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153791,-0.001077,0.001750,0.249994,0,0);}
.m97_c01047{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);}
.m7b_c01047{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m55_c01047{transform:matrix(0.154764,-0.001393,0.002250,0.249990,0,0);-ms-transform:matrix(0.154764,-0.001393,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154764,-0.001393,0.002250,0.249990,0,0);}
.mac_c01047{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);}
.m9d_c01047{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);}
.mb9_c01047{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);}
.m35_c01047{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);}
.m7d_c01047{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);}
.m7a_c01047{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);}
.m7e_c01047{transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162330,0.000000,0.000000,0.250000,0,0);}
.m92_c01047{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);}
.m2b_c01047{transform:matrix(0.163631,-0.001145,0.001750,0.249994,0,0);-ms-transform:matrix(0.163631,-0.001145,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163631,-0.001145,0.001750,0.249994,0,0);}
.m87_c01047{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);}
.m48_c01047{transform:matrix(0.164971,-0.001155,0.001750,0.249994,0,0);-ms-transform:matrix(0.164971,-0.001155,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164971,-0.001155,0.001750,0.249994,0,0);}
.m71_c01047{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);}
.m49_c01047{transform:matrix(0.166651,-0.001167,0.001750,0.249994,0,0);-ms-transform:matrix(0.166651,-0.001167,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166651,-0.001167,0.001750,0.249994,0,0);}
.m54_c01047{transform:matrix(0.167978,-0.001512,0.002250,0.249990,0,0);-ms-transform:matrix(0.167978,-0.001512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167978,-0.001512,0.002250,0.249990,0,0);}
.m76_c01047{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);}
.m31_c01047{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);}
.mb7_c01047{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);}
.mad_c01047{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);}
.m96_c01047{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);}
.m37_c01047{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);}
.m70_c01047{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);}
.mb0_c01047{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);}
.m73_c01047{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);}
.m93_c01047{transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177565,0.000000,0.000000,0.250000,0,0);}
.mc2_c01047{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);}
.m47_c01047{transform:matrix(0.179066,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.179066,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179066,-0.001253,0.001750,0.249994,0,0);}
.mbf_c01047{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);}
.m6a_c01047{transform:matrix(0.179623,-0.001617,0.002250,0.249990,0,0);-ms-transform:matrix(0.179623,-0.001617,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179623,-0.001617,0.002250,0.249990,0,0);}
.ma0_c01047{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);}
.m2c_c01047{transform:matrix(0.182011,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.182011,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182011,-0.001274,0.001750,0.249994,0,0);}
.maf_c01047{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);}
.m9f_c01047{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);}
.ma4_c01047{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);}
.mbd_c01047{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);}
.m51_c01047{transform:matrix(0.183411,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183411,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183411,-0.001284,0.001750,0.249994,0,0);}
.m79_c01047{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);}
.ma3_c01047{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);}
.m61_c01047{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);}
.m62_c01047{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);}
.mb2_c01047{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);}
.m75_c01047{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);}
.mbc_c01047{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);}
.m8d_c01047{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);}
.m8e_c01047{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_c01047{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);}
.m67_c01047{transform:matrix(0.188947,-0.001701,0.002250,0.249990,0,0);-ms-transform:matrix(0.188947,-0.001701,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188947,-0.001701,0.002250,0.249990,0,0);}
.m9b_c01047{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);}
.m3d_c01047{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);}
.m6c_c01047{transform:matrix(0.192062,-0.001729,0.002250,0.249990,0,0);-ms-transform:matrix(0.192062,-0.001729,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192062,-0.001729,0.002250,0.249990,0,0);}
.m3c_c01047{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);}
.mb1_c01047{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);}
.m8a_c01047{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);}
.m32_c01047{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);}
.m84_c01047{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);}
.m74_c01047{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);}
.m88_c01047{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);}
.m69_c01047{transform:matrix(0.195012,-0.001755,0.002250,0.249990,0,0);-ms-transform:matrix(0.195012,-0.001755,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195012,-0.001755,0.002250,0.249990,0,0);}
.m36_c01047{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);}
.m6f_c01047{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);}
.m29_c01047{transform:matrix(0.196305,-0.001374,0.001750,0.249994,0,0);-ms-transform:matrix(0.196305,-0.001374,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196305,-0.001374,0.001750,0.249994,0,0);}
.m3e_c01047{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);}
.mc8_c01047{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);}
.m68_c01047{transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);-ms-transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197007,-0.001773,0.002250,0.249990,0,0);}
.mc0_c01047{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);}
.m99_c01047{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);}
.m57_c01047{transform:matrix(0.200662,-0.001806,0.002250,0.249990,0,0);-ms-transform:matrix(0.200662,-0.001806,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200662,-0.001806,0.002250,0.249990,0,0);}
.m81_c01047{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);}
.m89_c01047{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);}
.m2a_c01047{transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);}
.m16_c01047{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);}
.m8c_c01047{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);}
.mc7_c01047{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_c01047{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);}
.ma5_c01047{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);}
.m66_c01047{transform:matrix(0.211121,-0.001900,0.002250,0.249990,0,0);-ms-transform:matrix(0.211121,-0.001900,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211121,-0.001900,0.002250,0.249990,0,0);}
.m33_c01047{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);}
.mab_c01047{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);}
.m8b_c01047{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);}
.m20_c01047{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);}
.mbe_c01047{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);}
.m72_c01047{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);}
.mc5_c01047{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);}
.m86_c01047{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);}
.m34_c01047{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);}
.mc3_c01047{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);}
.mc4_c01047{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);}
.mb3_c01047{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);}
.mbb_c01047{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);}
.m63_c01047{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);}
.m60_c01047{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);}
.m45_c01047{transform:matrix(0.225329,-0.001577,0.001750,0.249994,0,0);-ms-transform:matrix(0.225329,-0.001577,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225329,-0.001577,0.001750,0.249994,0,0);}
.m3a_c01047{transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);}
.m8f_c01047{transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);}
.m1b_c01047{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);}
.ma6_c01047{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.ma7_c01047{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);}
.m1d_c01047{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);}
.m1c_c01047{transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);}
.m18_c01047{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);}
.m6b_c01047{transform:matrix(0.232386,-0.002091,0.002250,0.249990,0,0);-ms-transform:matrix(0.232386,-0.002091,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232386,-0.002091,0.002250,0.249990,0,0);}
.m41_c01047{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);}
.m7f_c01047{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);}
.ma8_c01047{transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232585,0.000000,0.000000,0.250000,0,0);}
.m1_c01047{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);}
.m9e_c01047{transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);}
.mc6_c01047{transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235110,0.000000,0.000000,0.250000,0,0);}
.m3f_c01047{transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);}
.mb4_c01047{transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);}
.m91_c01047{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);}
.mc1_c01047{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);}
.m5b_c01047{transform:matrix(0.241910,-0.002177,0.002250,0.249990,0,0);-ms-transform:matrix(0.241910,-0.002177,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241910,-0.002177,0.002250,0.249990,0,0);}
.m5c_c01047{transform:matrix(0.244560,-0.002201,0.002250,0.249990,0,0);-ms-transform:matrix(0.244560,-0.002201,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244560,-0.002201,0.002250,0.249990,0,0);}
.m83_c01047{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m78_c01047{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);}
.m85_c01047{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);}
.m17_c01047{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);}
.m50_c01047{transform:matrix(0.255544,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255544,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255544,-0.001789,0.001750,0.249994,0,0);}
.mf_c01047{transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259075,0.000000,0.000000,0.250000,0,0);}
.mba_c01047{transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262445,0.000000,0.000000,0.250000,0,0);}
.m6e_c01047{transform:matrix(0.266209,-0.002396,0.002250,0.249990,0,0);-ms-transform:matrix(0.266209,-0.002396,0.002250,0.249990,0,0);-webkit-transform:matrix(0.266209,-0.002396,0.002250,0.249990,0,0);}
.m21_c01047{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);}
.m4_c01047{transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);-ms-transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);}
.m43_c01047{transform:matrix(0.270798,-0.001896,0.001750,0.249994,0,0);-ms-transform:matrix(0.270798,-0.001896,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270798,-0.001896,0.001750,0.249994,0,0);}
.m59_c01047{transform:matrix(0.273104,-0.002458,0.002250,0.249990,0,0);-ms-transform:matrix(0.273104,-0.002458,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273104,-0.002458,0.002250,0.249990,0,0);}
.ma9_c01047{transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277565,0.000000,0.000000,0.250000,0,0);}
.m94_c01047{transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278840,0.000000,0.000000,0.250000,0,0);}
.m10_c01047{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m98_c01047{transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);}
.m56_c01047{transform:matrix(0.289263,-0.002603,0.002250,0.249990,0,0);-ms-transform:matrix(0.289263,-0.002603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289263,-0.002603,0.002250,0.249990,0,0);}
.m1e_c01047{transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);}
.m1a_c01047{transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292530,0.000000,0.000000,0.250000,0,0);}
.m64_c01047{transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);}
.m22_c01047{transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);}
.m30_c01047{transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298645,0.000000,0.000000,0.250000,0,0);}
.m4f_c01047{transform:matrix(0.301138,-0.002108,0.001750,0.249994,0,0);-ms-transform:matrix(0.301138,-0.002108,0.001750,0.249994,0,0);-webkit-transform:matrix(0.301138,-0.002108,0.001750,0.249994,0,0);}
.m24_c01047{transform:matrix(0.302168,-0.003626,0.003000,0.249982,0,0);-ms-transform:matrix(0.302168,-0.003626,0.003000,0.249982,0,0);-webkit-transform:matrix(0.302168,-0.003626,0.003000,0.249982,0,0);}
.m15_c01047{transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);}
.m3b_c01047{transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309115,0.000000,0.000000,0.250000,0,0);}
.m82_c01047{transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);}
.m1f_c01047{transform:matrix(0.310065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310065,0.000000,0.000000,0.250000,0,0);}
.m13_c01047{transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);}
.m42_c01047{transform:matrix(0.320240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320240,0.000000,0.000000,0.250000,0,0);}
.m80_c01047{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m14_c01047{transform:matrix(0.329440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329440,0.000000,0.000000,0.250000,0,0);}
.m6_c01047{transform:matrix(0.335831,-0.005709,0.004249,0.249964,0,0);-ms-transform:matrix(0.335831,-0.005709,0.004249,0.249964,0,0);-webkit-transform:matrix(0.335831,-0.005709,0.004249,0.249964,0,0);}
.mb5_c01047{transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337480,0.000000,0.000000,0.250000,0,0);}
.m90_c01047{transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346530,0.000000,0.000000,0.250000,0,0);}
.m19_c01047{transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);}
.m12_c01047{transform:matrix(0.350675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350675,0.000000,0.000000,0.250000,0,0);}
.m58_c01047{transform:matrix(0.351546,-0.003164,0.002250,0.249990,0,0);-ms-transform:matrix(0.351546,-0.003164,0.002250,0.249990,0,0);-webkit-transform:matrix(0.351546,-0.003164,0.002250,0.249990,0,0);}
.m5a_c01047{transform:matrix(0.353396,-0.003181,0.002250,0.249990,0,0);-ms-transform:matrix(0.353396,-0.003181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.353396,-0.003181,0.002250,0.249990,0,0);}
.md_c01047{transform:matrix(0.357975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357975,0.000000,0.000000,0.250000,0,0);}
.m52_c01047{transform:matrix(0.360105,-0.003241,0.002250,0.249990,0,0);-ms-transform:matrix(0.360105,-0.003241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.360105,-0.003241,0.002250,0.249990,0,0);}
.mca_c01047{transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01047{transform:matrix(0.371020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371020,0.000000,0.000000,0.250000,0,0);}
.m5f_c01047{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);}
.m6d_c01047{transform:matrix(0.382819,-0.003445,0.002250,0.249990,0,0);-ms-transform:matrix(0.382819,-0.003445,0.002250,0.249990,0,0);-webkit-transform:matrix(0.382819,-0.003445,0.002250,0.249990,0,0);}
.m4d_c01047{transform:matrix(0.392605,-0.002748,0.001750,0.249994,0,0);-ms-transform:matrix(0.392605,-0.002748,0.001750,0.249994,0,0);-webkit-transform:matrix(0.392605,-0.002748,0.001750,0.249994,0,0);}
.m7_c01047{transform:matrix(0.404202,-0.006871,0.004249,0.249964,0,0);-ms-transform:matrix(0.404202,-0.006871,0.004249,0.249964,0,0);-webkit-transform:matrix(0.404202,-0.006871,0.004249,0.249964,0,0);}
.m4e_c01047{transform:matrix(0.412295,-0.002886,0.001750,0.249994,0,0);-ms-transform:matrix(0.412295,-0.002886,0.001750,0.249994,0,0);-webkit-transform:matrix(0.412295,-0.002886,0.001750,0.249994,0,0);}
.me_c01047{transform:matrix(0.417520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417520,0.000000,0.000000,0.250000,0,0);}
.m65_c01047{transform:matrix(0.425890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425890,0.000000,0.000000,0.250000,0,0);}
.mc_c01047{transform:matrix(0.440295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440295,0.000000,0.000000,0.250000,0,0);}
.m11_c01047{transform:matrix(0.451655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451655,0.000000,0.000000,0.250000,0,0);}
.m3_c01047{transform:matrix(0.453080,-0.007702,0.004249,0.249964,0,0);-ms-transform:matrix(0.453080,-0.007702,0.004249,0.249964,0,0);-webkit-transform:matrix(0.453080,-0.007702,0.004249,0.249964,0,0);}
.m28_c01047{transform:matrix(0.463554,-0.003245,0.001750,0.249994,0,0);-ms-transform:matrix(0.463554,-0.003245,0.001750,0.249994,0,0);-webkit-transform:matrix(0.463554,-0.003245,0.001750,0.249994,0,0);}
.m26_c01047{transform:matrix(0.500204,-0.006002,0.003000,0.249982,0,0);-ms-transform:matrix(0.500204,-0.006002,0.003000,0.249982,0,0);-webkit-transform:matrix(0.500204,-0.006002,0.003000,0.249982,0,0);}
.m77_c01047{transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);}
.m2_c01047{transform:matrix(0.515346,-0.008761,0.004249,0.249964,0,0);-ms-transform:matrix(0.515346,-0.008761,0.004249,0.249964,0,0);-webkit-transform:matrix(0.515346,-0.008761,0.004249,0.249964,0,0);}
.m2f_c01047{transform:matrix(0.521147,-0.003648,0.001750,0.249994,0,0);-ms-transform:matrix(0.521147,-0.003648,0.001750,0.249994,0,0);-webkit-transform:matrix(0.521147,-0.003648,0.001750,0.249994,0,0);}
.m8_c01047{transform:matrix(0.524174,-0.008911,0.004249,0.249964,0,0);-ms-transform:matrix(0.524174,-0.008911,0.004249,0.249964,0,0);-webkit-transform:matrix(0.524174,-0.008911,0.004249,0.249964,0,0);}
.m44_c01047{transform:matrix(0.541702,-0.003792,0.001750,0.249994,0,0);-ms-transform:matrix(0.541702,-0.003792,0.001750,0.249994,0,0);-webkit-transform:matrix(0.541702,-0.003792,0.001750,0.249994,0,0);}
.mb6_c01047{transform:matrix(0.560745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560745,0.000000,0.000000,0.250000,0,0);}
.m4c_c01047{transform:matrix(0.621050,-0.004347,0.001750,0.249994,0,0);-ms-transform:matrix(0.621050,-0.004347,0.001750,0.249994,0,0);-webkit-transform:matrix(0.621050,-0.004347,0.001750,0.249994,0,0);}
.m53_c01047{transform:matrix(0.627580,-0.005648,0.002250,0.249990,0,0);-ms-transform:matrix(0.627580,-0.005648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.627580,-0.005648,0.002250,0.249990,0,0);}
.m23_c01047{transform:matrix(0.638920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638920,0.000000,0.000000,0.250000,0,0);}
.mb_c01047{transform:matrix(0.645462,-0.010973,0.004249,0.249964,0,0);-ms-transform:matrix(0.645462,-0.010973,0.004249,0.249964,0,0);-webkit-transform:matrix(0.645462,-0.010973,0.004249,0.249964,0,0);}
.m0_c01047{transform:matrix(0.656265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656265,0.000000,0.000000,0.250000,0,0);}
.m38_c01047{transform:matrix(0.758940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758940,0.000000,0.000000,0.250000,0,0);}
.m5e_c01047{transform:matrix(0.765639,-0.006891,0.002250,0.249990,0,0);-ms-transform:matrix(0.765639,-0.006891,0.002250,0.249990,0,0);-webkit-transform:matrix(0.765639,-0.006891,0.002250,0.249990,0,0);}
.m27_c01047{transform:matrix(0.807465,-0.005652,0.001750,0.249994,0,0);-ms-transform:matrix(0.807465,-0.005652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.807465,-0.005652,0.001750,0.249994,0,0);}
.m9_c01047{transform:matrix(0.876423,-0.014899,0.004249,0.249964,0,0);-ms-transform:matrix(0.876423,-0.014899,0.004249,0.249964,0,0);-webkit-transform:matrix(0.876423,-0.014899,0.004249,0.249964,0,0);}
.m4b_c01047{transform:matrix(0.983566,-0.006885,0.001750,0.249994,0,0);-ms-transform:matrix(0.983566,-0.006885,0.001750,0.249994,0,0);-webkit-transform:matrix(0.983566,-0.006885,0.001750,0.249994,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls0_c01047{letter-spacing:0.000000px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:0.000000px;}
.fc0_c01047{color:transparent;}
.fs15_c01047{font-size:51.450000px;}
.fs3_c01047{font-size:54.607889px;}
.fs13_c01047{font-size:60.900000px;}
.fs12_c01047{font-size:63.000000px;}
.fsb_c01047{font-size:64.052594px;}
.fsa_c01047{font-size:65.101595px;}
.fs14_c01047{font-size:67.200000px;}
.fsf_c01047{font-size:68.250000px;}
.fs8_c01047{font-size:69.300000px;}
.fs10_c01047{font-size:70.350000px;}
.fs9_c01047{font-size:71.400000px;}
.fsd_c01047{font-size:72.450000px;}
.fs7_c01047{font-size:72.451775px;}
.fse_c01047{font-size:73.500000px;}
.fsc_c01047{font-size:73.502977px;}
.fs11_c01047{font-size:76.650000px;}
.fs5_c01047{font-size:82.950000px;}
.fs4_c01047{font-size:85.050000px;}
.fs1_c01047{font-size:89.250000px;}
.fs17_c01047{font-size:97.650000px;}
.fs16_c01047{font-size:100.800000px;}
.fs6_c01047{font-size:114.458240px;}
.fs0_c01047{font-size:128.100000px;}
.fs2_c01047{font-size:136.519723px;}
.y0_c01047{bottom:0.000000px;}
.y5a_c01047{bottom:84.510000px;}
.y59_c01047{bottom:115.290000px;}
.y58_c01047{bottom:149.346000px;}
.y52_c01047{bottom:204.285000px;}
.y51_c01047{bottom:227.059500px;}
.y50_c01047{bottom:249.565500px;}
.y4f_c01047{bottom:271.966500px;}
.y56_c01047{bottom:278.910000px;}
.y57_c01047{bottom:279.990000px;}
.y55_c01047{bottom:289.980000px;}
.y4e_c01047{bottom:294.843000px;}
.y4d_c01047{bottom:317.697000px;}
.y54_c01047{bottom:321.840000px;}
.y53_c01047{bottom:331.830000px;}
.y4c_c01047{bottom:341.167500px;}
.y4b_c01047{bottom:363.865500px;}
.y42_c01047{bottom:385.831500px;}
.y43_c01047{bottom:386.193799px;}
.y44_c01047{bottom:386.412378px;}
.y45_c01047{bottom:386.528815px;}
.y46_c01047{bottom:387.173008px;}
.y47_c01047{bottom:387.524994px;}
.y48_c01047{bottom:387.787798px;}
.y49_c01047{bottom:390.065248px;}
.y4a_c01047{bottom:390.188193px;}
.y41_c01047{bottom:410.217000px;}
.y3c_c01047{bottom:433.525415px;}
.y3d_c01047{bottom:433.525851px;}
.y3b_c01047{bottom:433.525908px;}
.y3e_c01047{bottom:433.526168px;}
.y40_c01047{bottom:433.526343px;}
.y3f_c01047{bottom:433.526594px;}
.y34_c01047{bottom:455.491500px;}
.y35_c01047{bottom:455.655768px;}
.y36_c01047{bottom:456.115740px;}
.y37_c01047{bottom:456.431626px;}
.y38_c01047{bottom:456.440037px;}
.y39_c01047{bottom:456.582705px;}
.y3a_c01047{bottom:459.719592px;}
.y30_c01047{bottom:478.670705px;}
.y2e_c01047{bottom:478.670706px;}
.y2f_c01047{bottom:478.671105px;}
.y31_c01047{bottom:478.671125px;}
.y32_c01047{bottom:478.671294px;}
.y33_c01047{bottom:478.671554px;}
.y25_c01047{bottom:500.310000px;}
.y26_c01047{bottom:500.599160px;}
.y27_c01047{bottom:501.047100px;}
.y28_c01047{bottom:501.422727px;}
.y29_c01047{bottom:501.521511px;}
.y2a_c01047{bottom:502.099683px;}
.y2b_c01047{bottom:502.241611px;}
.y2c_c01047{bottom:502.793292px;}
.y2d_c01047{bottom:503.593350px;}
.y24_c01047{bottom:524.754000px;}
.y23_c01047{bottom:548.305500px;}
.y1a_c01047{bottom:568.081500px;}
.y1b_c01047{bottom:568.551805px;}
.y1c_c01047{bottom:569.022205px;}
.y1d_c01047{bottom:569.356935px;}
.y1e_c01047{bottom:569.843851px;}
.y1f_c01047{bottom:570.012313px;}
.y20_c01047{bottom:570.271201px;}
.y21_c01047{bottom:570.445081px;}
.y22_c01047{bottom:571.370310px;}
.y17_c01047{bottom:606.151500px;}
.y18_c01047{bottom:608.682426px;}
.y19_c01047{bottom:610.083114px;}
.y16_c01047{bottom:650.376000px;}
.y15_c01047{bottom:654.834000px;}
.y14_c01047{bottom:655.680000px;}
.y13_c01047{bottom:657.606000px;}
.y12_c01047{bottom:658.519500px;}
.y11_c01047{bottom:659.355000px;}
.y10_c01047{bottom:661.192500px;}
.yf_c01047{bottom:661.878000px;}
.ye_c01047{bottom:663.301500px;}
.yd_c01047{bottom:676.986000px;}
.y9_c01047{bottom:721.704804px;}
.ya_c01047{bottom:723.278463px;}
.yb_c01047{bottom:726.187824px;}
.yc_c01047{bottom:726.892276px;}
.y3_c01047{bottom:770.046000px;}
.y4_c01047{bottom:772.275490px;}
.y5_c01047{bottom:773.487378px;}
.y6_c01047{bottom:774.881667px;}
.y7_c01047{bottom:775.396538px;}
.y8_c01047{bottom:776.557476px;}
.y2_c01047{bottom:855.757500px;}
.y1_c01047{bottom:907.249500px;}
.h17_c01047{height:51.450000px;}
.h5_c01047{height:54.607889px;}
.h15_c01047{height:60.900000px;}
.h14_c01047{height:63.000000px;}
.hd_c01047{height:64.052594px;}
.hc_c01047{height:65.101595px;}
.h16_c01047{height:67.200000px;}
.h11_c01047{height:68.250000px;}
.ha_c01047{height:69.300000px;}
.h12_c01047{height:70.350000px;}
.hb_c01047{height:71.400000px;}
.hf_c01047{height:72.450000px;}
.h9_c01047{height:72.451775px;}
.h10_c01047{height:73.500000px;}
.he_c01047{height:73.502977px;}
.h13_c01047{height:76.650000px;}
.h7_c01047{height:82.950000px;}
.h6_c01047{height:85.050000px;}
.h3_c01047{height:89.250000px;}
.h19_c01047{height:97.650000px;}
.h18_c01047{height:100.800000px;}
.h8_c01047{height:114.458240px;}
.h2_c01047{height:128.100000px;}
.h4_c01047{height:136.519723px;}
.h0_c01047{height:1008.450000px;}
.h1_c01047{height:1008.750000px;}
.w1_c01047{width:700.500000px;}
.w0_c01047{width:700.650000px;}
.x0_c01047{left:0.000000px;}
.xc_c01047{left:70.470000px;}
.x1_c01047{left:115.560000px;}
.xd_c01047{left:123.660000px;}
.x2_c01047{left:126.360000px;}
.x7d_c01047{left:141.480000px;}
.x2c_c01047{left:152.550000px;}
.x6b_c01047{left:157.410000px;}
.x34_c01047{left:159.840000px;}
.x25_c01047{left:161.139000px;}
.x66_c01047{left:162.270000px;}
.x61_c01047{left:178.470000px;}
.x44_c01047{left:179.556000px;}
.x2d_c01047{left:181.710000px;}
.x72_c01047{left:183.060000px;}
.x1b_c01047{left:184.353000px;}
.xe_c01047{left:185.490000px;}
.x57_c01047{left:187.380000px;}
.x9_c01047{left:197.797651px;}
.x51_c01047{left:200.478000px;}
.x3c_c01047{left:202.867500px;}
.x6c_c01047{left:204.120000px;}
.x2e_c01047{left:206.280000px;}
.xf_c01047{left:208.710000px;}
.x35_c01047{left:210.060000px;}
.x58_c01047{left:218.160000px;}
.x67_c01047{left:219.780000px;}
.x41_c01047{left:221.671413px;}
.x36_c01047{left:223.290000px;}
.x52_c01047{left:224.764500px;}
.x78_c01047{left:226.530000px;}
.x10_c01047{left:229.230000px;}
.x45_c01047{left:230.664000px;}
.x1c_c01047{left:233.436000px;}
.x62_c01047{left:235.980000px;}
.x53_c01047{left:237.702000px;}
.x2f_c01047{left:241.110000px;}
.x73_c01047{left:243.000000px;}
.x37_c01047{left:245.160000px;}
.x3_c01047{left:247.678500px;}
.x6d_c01047{left:250.290000px;}
.x1d_c01047{left:257.050500px;}
.x59_c01047{left:258.930000px;}
.x11_c01047{left:261.630000px;}
.x46_c01047{left:265.762500px;}
.x3d_c01047{left:266.859000px;}
.x68_c01047{left:272.160000px;}
.x5a_c01047{left:275.130000px;}
.x74_c01047{left:278.910000px;}
.x47_c01047{left:282.549000px;}
.x5c_c01047{left:284.850000px;}
.x63_c01047{left:287.550000px;}
.x12_c01047{left:291.870000px;}
.x48_c01047{left:293.224359px;}
.x26_c01047{left:295.525500px;}
.x5d_c01047{left:301.860000px;}
.x23_c01047{left:303.655500px;}
.x54_c01047{left:309.279000px;}
.x13_c01047{left:313.470000px;}
.x38_c01047{left:315.630000px;}
.x6e_c01047{left:317.250000px;}
.x1e_c01047{left:320.400000px;}
.x49_c01047{left:324.005357px;}
.xa_c01047{left:328.935795px;}
.x76_c01047{left:332.640000px;}
.x3e_c01047{left:334.632000px;}
.x14_c01047{left:336.150000px;}
.x5b_c01047{left:341.280000px;}
.x27_c01047{left:343.344000px;}
.x6f_c01047{left:344.790000px;}
.x4d_c01047{left:347.220000px;}
.x1f_c01047{left:349.234500px;}
.x42_c01047{left:350.734734px;}
.x30_c01047{left:353.700000px;}
.x79_c01047{left:354.780000px;}
.x5e_c01047{left:357.750000px;}
.x69_c01047{left:363.690000px;}
.x4a_c01047{left:368.557461px;}
.x39_c01047{left:370.440000px;}
.x31_c01047{left:372.870000px;}
.x7e_c01047{left:374.760000px;}
.x55_c01047{left:377.589000px;}
.x4_c01047{left:378.825000px;}
.x20_c01047{left:380.736000px;}
.x70_c01047{left:385.290000px;}
.x4b_c01047{left:390.427730px;}
.x15_c01047{left:391.770000px;}
.x5f_c01047{left:393.120000px;}
.x71_c01047{left:399.330000px;}
.x77_c01047{left:402.030000px;}
.x16_c01047{left:405.000000px;}
.x32_c01047{left:409.590000px;}
.x28_c01047{left:412.903500px;}
.x3f_c01047{left:417.228000px;}
.x7f_c01047{left:418.230000px;}
.x3a_c01047{left:430.650000px;}
.x60_c01047{left:433.080000px;}
.x7a_c01047{left:435.240000px;}
.x29_c01047{left:436.969500px;}
.x17_c01047{left:442.530000px;}
.x4e_c01047{left:443.880000px;}
.x21_c01047{left:447.132000px;}
.x5_c01047{left:450.112500px;}
.x80_c01047{left:457.920000px;}
.x3b_c01047{left:460.350000px;}
.x75_c01047{left:461.430000px;}
.x64_c01047{left:462.510000px;}
.x18_c01047{left:468.720000px;}
.x4f_c01047{left:471.960000px;}
.x2a_c01047{left:473.953500px;}
.x22_c01047{left:476.322000px;}
.x81_c01047{left:477.900000px;}
.x6a_c01047{left:494.910000px;}
.x2b_c01047{left:498.793500px;}
.x65_c01047{left:501.120000px;}
.x19_c01047{left:510.570000px;}
.x24_c01047{left:514.566000px;}
.x40_c01047{left:516.315000px;}
.x4c_c01047{left:521.652354px;}
.x82_c01047{left:530.820000px;}
.x6_c01047{left:532.129500px;}
.x50_c01047{left:536.760000px;}
.x43_c01047{left:548.379915px;}
.x7_c01047{left:562.416000px;}
.xb_c01047{left:571.389399px;}
.x1a_c01047{left:628.290000px;}
.x8_c01047{left:630.706500px;}
.x7b_c01047{left:637.470000px;}
.x56_c01047{left:644.299500px;}
.x7c_c01047{left:646.110000px;}
.x33_c01047{left:659.610000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls0_c01047{letter-spacing:0.000000pt;}
.ws0_c01047{word-spacing:0.000000pt;}
.fs15_c01047{font-size:45.733333pt;}
.fs3_c01047{font-size:48.540346pt;}
.fs13_c01047{font-size:54.133333pt;}
.fs12_c01047{font-size:56.000000pt;}
.fsb_c01047{font-size:56.935639pt;}
.fsa_c01047{font-size:57.868084pt;}
.fs14_c01047{font-size:59.733333pt;}
.fsf_c01047{font-size:60.666667pt;}
.fs8_c01047{font-size:61.600000pt;}
.fs10_c01047{font-size:62.533333pt;}
.fs9_c01047{font-size:63.466667pt;}
.fsd_c01047{font-size:64.400000pt;}
.fs7_c01047{font-size:64.401578pt;}
.fse_c01047{font-size:65.333333pt;}
.fsc_c01047{font-size:65.335979pt;}
.fs11_c01047{font-size:68.133333pt;}
.fs5_c01047{font-size:73.733333pt;}
.fs4_c01047{font-size:75.600000pt;}
.fs1_c01047{font-size:79.333333pt;}
.fs17_c01047{font-size:86.800000pt;}
.fs16_c01047{font-size:89.600000pt;}
.fs6_c01047{font-size:101.740658pt;}
.fs0_c01047{font-size:113.866667pt;}
.fs2_c01047{font-size:121.350865pt;}
.y0_c01047{bottom:0.000000pt;}
.y5a_c01047{bottom:75.120000pt;}
.y59_c01047{bottom:102.480000pt;}
.y58_c01047{bottom:132.752000pt;}
.y52_c01047{bottom:181.586667pt;}
.y51_c01047{bottom:201.830667pt;}
.y50_c01047{bottom:221.836000pt;}
.y4f_c01047{bottom:241.748000pt;}
.y56_c01047{bottom:247.920000pt;}
.y57_c01047{bottom:248.880000pt;}
.y55_c01047{bottom:257.760000pt;}
.y4e_c01047{bottom:262.082667pt;}
.y4d_c01047{bottom:282.397333pt;}
.y54_c01047{bottom:286.080000pt;}
.y53_c01047{bottom:294.960000pt;}
.y4c_c01047{bottom:303.260000pt;}
.y4b_c01047{bottom:323.436000pt;}
.y42_c01047{bottom:342.961333pt;}
.y43_c01047{bottom:343.283377pt;}
.y44_c01047{bottom:343.477669pt;}
.y45_c01047{bottom:343.581169pt;}
.y46_c01047{bottom:344.153785pt;}
.y47_c01047{bottom:344.466661pt;}
.y48_c01047{bottom:344.700265pt;}
.y49_c01047{bottom:346.724665pt;}
.y4a_c01047{bottom:346.833949pt;}
.y41_c01047{bottom:364.637333pt;}
.y3c_c01047{bottom:385.355924pt;}
.y3d_c01047{bottom:385.356312pt;}
.y3b_c01047{bottom:385.356363pt;}
.y3e_c01047{bottom:385.356593pt;}
.y40_c01047{bottom:385.356749pt;}
.y3f_c01047{bottom:385.356972pt;}
.y34_c01047{bottom:404.881333pt;}
.y35_c01047{bottom:405.027349pt;}
.y36_c01047{bottom:405.436213pt;}
.y37_c01047{bottom:405.717001pt;}
.y38_c01047{bottom:405.724477pt;}
.y39_c01047{bottom:405.851293pt;}
.y3a_c01047{bottom:408.639637pt;}
.y30_c01047{bottom:425.485071pt;}
.y2e_c01047{bottom:425.485072pt;}
.y2f_c01047{bottom:425.485427pt;}
.y31_c01047{bottom:425.485444pt;}
.y32_c01047{bottom:425.485595pt;}
.y33_c01047{bottom:425.485825pt;}
.y25_c01047{bottom:444.720000pt;}
.y26_c01047{bottom:444.977031pt;}
.y27_c01047{bottom:445.375200pt;}
.y28_c01047{bottom:445.709091pt;}
.y29_c01047{bottom:445.796899pt;}
.y2a_c01047{bottom:446.310829pt;}
.y2b_c01047{bottom:446.436988pt;}
.y2c_c01047{bottom:446.927371pt;}
.y2d_c01047{bottom:447.638533pt;}
.y24_c01047{bottom:466.448000pt;}
.y23_c01047{bottom:487.382667pt;}
.y1a_c01047{bottom:504.961333pt;}
.y1b_c01047{bottom:505.379383pt;}
.y1c_c01047{bottom:505.797516pt;}
.y1d_c01047{bottom:506.095053pt;}
.y1e_c01047{bottom:506.527868pt;}
.y1f_c01047{bottom:506.677612pt;}
.y20_c01047{bottom:506.907735pt;}
.y21_c01047{bottom:507.062295pt;}
.y22_c01047{bottom:507.884720pt;}
.y17_c01047{bottom:538.801333pt;}
.y18_c01047{bottom:541.051045pt;}
.y19_c01047{bottom:542.296101pt;}
.y16_c01047{bottom:578.112000pt;}
.y15_c01047{bottom:582.074667pt;}
.y14_c01047{bottom:582.826667pt;}
.y13_c01047{bottom:584.538667pt;}
.y12_c01047{bottom:585.350667pt;}
.y11_c01047{bottom:586.093333pt;}
.y10_c01047{bottom:587.726667pt;}
.yf_c01047{bottom:588.336000pt;}
.ye_c01047{bottom:589.601333pt;}
.yd_c01047{bottom:601.765333pt;}
.y9_c01047{bottom:641.515381pt;}
.ya_c01047{bottom:642.914189pt;}
.yb_c01047{bottom:645.500288pt;}
.yc_c01047{bottom:646.126468pt;}
.y3_c01047{bottom:684.485333pt;}
.y4_c01047{bottom:686.467103pt;}
.y5_c01047{bottom:687.544336pt;}
.y6_c01047{bottom:688.783704pt;}
.y7_c01047{bottom:689.241367pt;}
.y8_c01047{bottom:690.273312pt;}
.y2_c01047{bottom:760.673333pt;}
.y1_c01047{bottom:806.444000pt;}
.h17_c01047{height:45.733333pt;}
.h5_c01047{height:48.540346pt;}
.h15_c01047{height:54.133333pt;}
.h14_c01047{height:56.000000pt;}
.hd_c01047{height:56.935639pt;}
.hc_c01047{height:57.868084pt;}
.h16_c01047{height:59.733333pt;}
.h11_c01047{height:60.666667pt;}
.ha_c01047{height:61.600000pt;}
.h12_c01047{height:62.533333pt;}
.hb_c01047{height:63.466667pt;}
.hf_c01047{height:64.400000pt;}
.h9_c01047{height:64.401578pt;}
.h10_c01047{height:65.333333pt;}
.he_c01047{height:65.335979pt;}
.h13_c01047{height:68.133333pt;}
.h7_c01047{height:73.733333pt;}
.h6_c01047{height:75.600000pt;}
.h3_c01047{height:79.333333pt;}
.h19_c01047{height:86.800000pt;}
.h18_c01047{height:89.600000pt;}
.h8_c01047{height:101.740658pt;}
.h2_c01047{height:113.866667pt;}
.h4_c01047{height:121.350865pt;}
.h0_c01047{height:896.400000pt;}
.h1_c01047{height:896.666667pt;}
.w1_c01047{width:622.666667pt;}
.w0_c01047{width:622.800000pt;}
.x0_c01047{left:0.000000pt;}
.xc_c01047{left:62.640000pt;}
.x1_c01047{left:102.720000pt;}
.xd_c01047{left:109.920000pt;}
.x2_c01047{left:112.320000pt;}
.x7d_c01047{left:125.760000pt;}
.x2c_c01047{left:135.600000pt;}
.x6b_c01047{left:139.920000pt;}
.x34_c01047{left:142.080000pt;}
.x25_c01047{left:143.234667pt;}
.x66_c01047{left:144.240000pt;}
.x61_c01047{left:158.640000pt;}
.x44_c01047{left:159.605333pt;}
.x2d_c01047{left:161.520000pt;}
.x72_c01047{left:162.720000pt;}
.x1b_c01047{left:163.869333pt;}
.xe_c01047{left:164.880000pt;}
.x57_c01047{left:166.560000pt;}
.x9_c01047{left:175.820135pt;}
.x51_c01047{left:178.202667pt;}
.x3c_c01047{left:180.326667pt;}
.x6c_c01047{left:181.440000pt;}
.x2e_c01047{left:183.360000pt;}
.xf_c01047{left:185.520000pt;}
.x35_c01047{left:186.720000pt;}
.x58_c01047{left:193.920000pt;}
.x67_c01047{left:195.360000pt;}
.x41_c01047{left:197.041256pt;}
.x36_c01047{left:198.480000pt;}
.x52_c01047{left:199.790667pt;}
.x78_c01047{left:201.360000pt;}
.x10_c01047{left:203.760000pt;}
.x45_c01047{left:205.034667pt;}
.x1c_c01047{left:207.498667pt;}
.x62_c01047{left:209.760000pt;}
.x53_c01047{left:211.290667pt;}
.x2f_c01047{left:214.320000pt;}
.x73_c01047{left:216.000000pt;}
.x37_c01047{left:217.920000pt;}
.x3_c01047{left:220.158667pt;}
.x6d_c01047{left:222.480000pt;}
.x1d_c01047{left:228.489333pt;}
.x59_c01047{left:230.160000pt;}
.x11_c01047{left:232.560000pt;}
.x46_c01047{left:236.233333pt;}
.x3d_c01047{left:237.208000pt;}
.x68_c01047{left:241.920000pt;}
.x5a_c01047{left:244.560000pt;}
.x74_c01047{left:247.920000pt;}
.x47_c01047{left:251.154667pt;}
.x5c_c01047{left:253.200000pt;}
.x63_c01047{left:255.600000pt;}
.x12_c01047{left:259.440000pt;}
.x48_c01047{left:260.643875pt;}
.x26_c01047{left:262.689333pt;}
.x5d_c01047{left:268.320000pt;}
.x23_c01047{left:269.916000pt;}
.x54_c01047{left:274.914667pt;}
.x13_c01047{left:278.640000pt;}
.x38_c01047{left:280.560000pt;}
.x6e_c01047{left:282.000000pt;}
.x1e_c01047{left:284.800000pt;}
.x49_c01047{left:288.004761pt;}
.xa_c01047{left:292.387373pt;}
.x76_c01047{left:295.680000pt;}
.x3e_c01047{left:297.450667pt;}
.x14_c01047{left:298.800000pt;}
.x5b_c01047{left:303.360000pt;}
.x27_c01047{left:305.194667pt;}
.x6f_c01047{left:306.480000pt;}
.x4d_c01047{left:308.640000pt;}
.x1f_c01047{left:310.430667pt;}
.x42_c01047{left:311.764208pt;}
.x30_c01047{left:314.400000pt;}
.x79_c01047{left:315.360000pt;}
.x5e_c01047{left:318.000000pt;}
.x69_c01047{left:323.280000pt;}
.x4a_c01047{left:327.606632pt;}
.x39_c01047{left:329.280000pt;}
.x31_c01047{left:331.440000pt;}
.x7e_c01047{left:333.120000pt;}
.x55_c01047{left:335.634667pt;}
.x4_c01047{left:336.733333pt;}
.x20_c01047{left:338.432000pt;}
.x70_c01047{left:342.480000pt;}
.x4b_c01047{left:347.046871pt;}
.x15_c01047{left:348.240000pt;}
.x5f_c01047{left:349.440000pt;}
.x71_c01047{left:354.960000pt;}
.x77_c01047{left:357.360000pt;}
.x16_c01047{left:360.000000pt;}
.x32_c01047{left:364.080000pt;}
.x28_c01047{left:367.025333pt;}
.x3f_c01047{left:370.869333pt;}
.x7f_c01047{left:371.760000pt;}
.x3a_c01047{left:382.800000pt;}
.x60_c01047{left:384.960000pt;}
.x7a_c01047{left:386.880000pt;}
.x29_c01047{left:388.417333pt;}
.x17_c01047{left:393.360000pt;}
.x4e_c01047{left:394.560000pt;}
.x21_c01047{left:397.450667pt;}
.x5_c01047{left:400.100000pt;}
.x80_c01047{left:407.040000pt;}
.x3b_c01047{left:409.200000pt;}
.x75_c01047{left:410.160000pt;}
.x64_c01047{left:411.120000pt;}
.x18_c01047{left:416.640000pt;}
.x4f_c01047{left:419.520000pt;}
.x2a_c01047{left:421.292000pt;}
.x22_c01047{left:423.397333pt;}
.x81_c01047{left:424.800000pt;}
.x6a_c01047{left:439.920000pt;}
.x2b_c01047{left:443.372000pt;}
.x65_c01047{left:445.440000pt;}
.x19_c01047{left:453.840000pt;}
.x24_c01047{left:457.392000pt;}
.x40_c01047{left:458.946667pt;}
.x4c_c01047{left:463.690981pt;}
.x82_c01047{left:471.840000pt;}
.x6_c01047{left:473.004000pt;}
.x50_c01047{left:477.120000pt;}
.x43_c01047{left:487.448813pt;}
.x7_c01047{left:499.925333pt;}
.xb_c01047{left:507.901688pt;}
.x1a_c01047{left:558.480000pt;}
.x8_c01047{left:560.628000pt;}
.x7b_c01047{left:566.640000pt;}
.x56_c01047{left:572.710667pt;}
.x7c_c01047{left:574.320000pt;}
.x33_c01047{left:586.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_c01048 {
    display:none;
  }
  .loading-indicator_c01048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01048 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01048 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01048" -> "#page-container .classname_c01048")
 */
.pf_c01048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01048 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01048 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01048 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01048 {overflow:visible;}
  }
}
.c_c01048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01048 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01048:after { /* webkit #35443 */
  content: '';
}
.t_c01048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01048 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01048 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01048 { /* info for Javascript */
  display:none;
}
.l_c01048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.000000;font-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_c01048{transform:matrix(0.005570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005570,0.000000,0.000000,0.250000,0,0);}
.m11_c01048{transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);-ms-transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.011615,0.000093,-0.002000,0.249992,0,0);}
.m23_c01048{transform:matrix(0.012135,0.000097,-0.002000,0.249992,0,0);-ms-transform:matrix(0.012135,0.000097,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.012135,0.000097,-0.002000,0.249992,0,0);}
.md3_c01048{transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013434,0.000121,-0.002250,0.249990,0,0);}
.m3d_c01048{transform:matrix(0.013635,0.000109,-0.002000,0.249992,0,0);-ms-transform:matrix(0.013635,0.000109,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.013635,0.000109,-0.002000,0.249992,0,0);}
.m4a_c01048{transform:matrix(0.016784,0.000134,-0.002000,0.249992,0,0);-ms-transform:matrix(0.016784,0.000134,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.016784,0.000134,-0.002000,0.249992,0,0);}
.m6a_c01048{transform:matrix(0.018634,0.000168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.018634,0.000168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.018634,0.000168,-0.002250,0.249990,0,0);}
.mdf_c01048{transform:matrix(0.114105,0.001027,-0.002250,0.249990,0,0);-ms-transform:matrix(0.114105,0.001027,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.114105,0.001027,-0.002250,0.249990,0,0);}
.m87_c01048{transform:matrix(0.119375,0.001074,-0.002250,0.249990,0,0);-ms-transform:matrix(0.119375,0.001074,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.119375,0.001074,-0.002250,0.249990,0,0);}
.m41_c01048{transform:matrix(0.138221,0.001106,-0.002000,0.249992,0,0);-ms-transform:matrix(0.138221,0.001106,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.138221,0.001106,-0.002000,0.249992,0,0);}
.m42_c01048{transform:matrix(0.143670,0.001149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143670,0.001149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143670,0.001149,-0.002000,0.249992,0,0);}
.mc4_c01048{transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144714,0.001302,-0.002250,0.249990,0,0);}
.m7a_c01048{transform:matrix(0.144839,0.001304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144839,0.001304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144839,0.001304,-0.002250,0.249990,0,0);}
.mb9_c01048{transform:matrix(0.146964,0.001323,-0.002250,0.249990,0,0);-ms-transform:matrix(0.146964,0.001323,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.146964,0.001323,-0.002250,0.249990,0,0);}
.m35_c01048{transform:matrix(0.148410,0.001187,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148410,0.001187,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148410,0.001187,-0.002000,0.249992,0,0);}
.mce_c01048{transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150154,0.001351,-0.002250,0.249990,0,0);}
.m1b_c01048{transform:matrix(0.150500,0.001204,-0.002000,0.249992,0,0);-ms-transform:matrix(0.150500,0.001204,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.150500,0.001204,-0.002000,0.249992,0,0);}
.m97_c01048{transform:matrix(0.150719,0.001356,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150719,0.001356,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150719,0.001356,-0.002250,0.249990,0,0);}
.m38_c01048{transform:matrix(0.151255,0.001210,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151255,0.001210,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151255,0.001210,-0.002000,0.249992,0,0);}
.md9_c01048{transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151639,0.001365,-0.002250,0.249990,0,0);}
.md1_c01048{transform:matrix(0.152059,0.001369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152059,0.001369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152059,0.001369,-0.002250,0.249990,0,0);}
.me5_c01048{transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);}
.m2e_c01048{transform:matrix(0.153650,0.001229,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153650,0.001229,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153650,0.001229,-0.002000,0.249992,0,0);}
.mbc_c01048{transform:matrix(0.153889,0.001385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153889,0.001385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153889,0.001385,-0.002250,0.249990,0,0);}
.m7e_c01048{transform:matrix(0.154784,0.001393,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154784,0.001393,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154784,0.001393,-0.002250,0.249990,0,0);}
.m7f_c01048{transform:matrix(0.155584,0.001400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155584,0.001400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155584,0.001400,-0.002250,0.249990,0,0);}
.m9e_c01048{transform:matrix(0.156509,0.001409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156509,0.001409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156509,0.001409,-0.002250,0.249990,0,0);}
.m27_c01048{transform:matrix(0.156830,0.001255,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156830,0.001255,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156830,0.001255,-0.002000,0.249992,0,0);}
.mc8_c01048{transform:matrix(0.158104,0.001423,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158104,0.001423,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158104,0.001423,-0.002250,0.249990,0,0);}
.m93_c01048{transform:matrix(0.158934,0.001430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158934,0.001430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158934,0.001430,-0.002250,0.249990,0,0);}
.m96_c01048{transform:matrix(0.160289,0.001443,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160289,0.001443,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160289,0.001443,-0.002250,0.249990,0,0);}
.m8d_c01048{transform:matrix(0.160518,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160518,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160518,0.001445,-0.002250,0.249990,0,0);}
.m94_c01048{transform:matrix(0.160628,0.001446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160628,0.001446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160628,0.001446,-0.002250,0.249990,0,0);}
.m4b_c01048{transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160640,0.001285,-0.002000,0.249992,0,0);}
.m79_c01048{transform:matrix(0.161738,0.001456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161738,0.001456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161738,0.001456,-0.002250,0.249990,0,0);}
.md7_c01048{transform:matrix(0.162073,0.001459,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162073,0.001459,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162073,0.001459,-0.002250,0.249990,0,0);}
.m1f_c01048{transform:matrix(0.163230,0.001306,-0.002000,0.249992,0,0);-ms-transform:matrix(0.163230,0.001306,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.163230,0.001306,-0.002000,0.249992,0,0);}
.mc5_c01048{transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163378,0.001470,-0.002250,0.249990,0,0);}
.mb4_c01048{transform:matrix(0.164403,0.001480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164403,0.001480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164403,0.001480,-0.002250,0.249990,0,0);}
.m65_c01048{transform:matrix(0.164568,0.001481,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164568,0.001481,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164568,0.001481,-0.002250,0.249990,0,0);}
.mc0_c01048{transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165308,0.001488,-0.002250,0.249990,0,0);}
.m50_c01048{transform:matrix(0.166138,0.001495,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166138,0.001495,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166138,0.001495,-0.002250,0.249990,0,0);}
.m9a_c01048{transform:matrix(0.166963,0.001503,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166963,0.001503,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166963,0.001503,-0.002250,0.249990,0,0);}
.mb6_c01048{transform:matrix(0.167023,0.001503,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167023,0.001503,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167023,0.001503,-0.002250,0.249990,0,0);}
.mb5_c01048{transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167263,0.001505,-0.002250,0.249990,0,0);}
.m15_c01048{transform:matrix(0.167305,0.001338,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167305,0.001338,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167305,0.001338,-0.002000,0.249992,0,0);}
.m2f_c01048{transform:matrix(0.167445,0.001340,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167445,0.001340,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167445,0.001340,-0.002000,0.249992,0,0);}
.mc9_c01048{transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167488,0.001507,-0.002250,0.249990,0,0);}
.m2_c01048{transform:matrix(0.169840,0.001868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169840,0.001868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169840,0.001868,-0.002750,0.249985,0,0);}
.m6d_c01048{transform:matrix(0.169953,0.001530,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169953,0.001530,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169953,0.001530,-0.002250,0.249990,0,0);}
.mcd_c01048{transform:matrix(0.170193,0.001532,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170193,0.001532,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170193,0.001532,-0.002250,0.249990,0,0);}
.m7d_c01048{transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170498,0.001534,-0.002250,0.249990,0,0);}
.m40_c01048{transform:matrix(0.170655,0.001365,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170655,0.001365,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170655,0.001365,-0.002000,0.249992,0,0);}
.m88_c01048{transform:matrix(0.170708,0.001536,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170708,0.001536,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170708,0.001536,-0.002250,0.249990,0,0);}
.m28_c01048{transform:matrix(0.172039,0.001376,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172039,0.001376,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172039,0.001376,-0.002000,0.249992,0,0);}
.m19_c01048{transform:matrix(0.172194,0.001378,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172194,0.001378,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172194,0.001378,-0.002000,0.249992,0,0);}
.m83_c01048{transform:matrix(0.172233,0.001550,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172233,0.001550,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172233,0.001550,-0.002250,0.249990,0,0);}
.m36_c01048{transform:matrix(0.173584,0.001389,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173584,0.001389,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173584,0.001389,-0.002000,0.249992,0,0);}
.m89_c01048{transform:matrix(0.173803,0.001564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173803,0.001564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173803,0.001564,-0.002250,0.249990,0,0);}
.m9b_c01048{transform:matrix(0.174273,0.001568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174273,0.001568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174273,0.001568,-0.002250,0.249990,0,0);}
.m53_c01048{transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174598,0.001571,-0.002250,0.249990,0,0);}
.m56_c01048{transform:matrix(0.174603,0.001571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174603,0.001571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174603,0.001571,-0.002250,0.249990,0,0);}
.me4_c01048{transform:matrix(0.174748,0.001573,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174748,0.001573,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174748,0.001573,-0.002250,0.249990,0,0);}
.m84_c01048{transform:matrix(0.175273,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175273,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175273,0.001577,-0.002250,0.249990,0,0);}
.me6_c01048{transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175368,0.001578,-0.002250,0.249990,0,0);}
.m55_c01048{transform:matrix(0.175418,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175418,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175418,0.001579,-0.002250,0.249990,0,0);}
.ma5_c01048{transform:matrix(0.176023,0.001584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176023,0.001584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176023,0.001584,-0.002250,0.249990,0,0);}
.m29_c01048{transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176054,0.001408,-0.002000,0.249992,0,0);}
.m9c_c01048{transform:matrix(0.176233,0.001586,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176233,0.001586,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176233,0.001586,-0.002250,0.249990,0,0);}
.m8e_c01048{transform:matrix(0.177423,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177423,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177423,0.001597,-0.002250,0.249990,0,0);}
.m25_c01048{transform:matrix(0.177559,0.001420,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177559,0.001420,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177559,0.001420,-0.002000,0.249992,0,0);}
.m80_c01048{transform:matrix(0.177868,0.001601,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177868,0.001601,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177868,0.001601,-0.002250,0.249990,0,0);}
.m70_c01048{transform:matrix(0.178013,0.001602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178013,0.001602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178013,0.001602,-0.002250,0.249990,0,0);}
.m90_c01048{transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178768,0.001609,-0.002250,0.249990,0,0);}
.m4_c01048{transform:matrix(0.179299,0.001972,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179299,0.001972,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179299,0.001972,-0.002750,0.249985,0,0);}
.m68_c01048{transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179493,0.001615,-0.002250,0.249990,0,0);}
.md6_c01048{transform:matrix(0.179568,0.001616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179568,0.001616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179568,0.001616,-0.002250,0.249990,0,0);}
.m77_c01048{transform:matrix(0.179883,0.001619,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179883,0.001619,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179883,0.001619,-0.002250,0.249990,0,0);}
.m30_c01048{transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179994,0.001440,-0.002000,0.249992,0,0);}
.m81_c01048{transform:matrix(0.180028,0.001620,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180028,0.001620,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180028,0.001620,-0.002250,0.249990,0,0);}
.m34_c01048{transform:matrix(0.180394,0.001443,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180394,0.001443,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180394,0.001443,-0.002000,0.249992,0,0);}
.m91_c01048{transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180573,0.001625,-0.002250,0.249990,0,0);}
.m47_c01048{transform:matrix(0.180989,0.001448,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180989,0.001448,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180989,0.001448,-0.002000,0.249992,0,0);}
.m1_c01048{transform:matrix(0.181964,0.002002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181964,0.002002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181964,0.002002,-0.002750,0.249985,0,0);}
.m16_c01048{transform:matrix(0.181974,0.001456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181974,0.001456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181974,0.001456,-0.002000,0.249992,0,0);}
.m18_c01048{transform:matrix(0.182019,0.001456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182019,0.001456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182019,0.001456,-0.002000,0.249992,0,0);}
.m74_c01048{transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182183,0.001640,-0.002250,0.249990,0,0);}
.m14_c01048{transform:matrix(0.182484,0.001460,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182484,0.001460,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182484,0.001460,-0.002000,0.249992,0,0);}
.m1c_c01048{transform:matrix(0.182834,0.001463,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182834,0.001463,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182834,0.001463,-0.002000,0.249992,0,0);}
.m57_c01048{transform:matrix(0.183293,0.001650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183293,0.001650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183293,0.001650,-0.002250,0.249990,0,0);}
.mbf_c01048{transform:matrix(0.183333,0.001650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183333,0.001650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183333,0.001650,-0.002250,0.249990,0,0);}
.mec_c01048{transform:matrix(0.183490,0.003303,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183490,0.003303,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183490,0.003303,-0.004499,0.249960,0,0);}
.m3c_c01048{transform:matrix(0.183679,0.001469,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183679,0.001469,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183679,0.001469,-0.002000,0.249992,0,0);}
.m67_c01048{transform:matrix(0.183748,0.001654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183748,0.001654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183748,0.001654,-0.002250,0.249990,0,0);}
.mcc_c01048{transform:matrix(0.184283,0.001659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184283,0.001659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184283,0.001659,-0.002250,0.249990,0,0);}
.md2_c01048{transform:matrix(0.184663,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184663,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184663,0.001662,-0.002250,0.249990,0,0);}
.mbd_c01048{transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);}
.m3b_c01048{transform:matrix(0.184714,0.001478,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184714,0.001478,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184714,0.001478,-0.002000,0.249992,0,0);}
.mda_c01048{transform:matrix(0.184988,0.001665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184988,0.001665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184988,0.001665,-0.002250,0.249990,0,0);}
.m99_c01048{transform:matrix(0.185822,0.001672,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185822,0.001672,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185822,0.001672,-0.002250,0.249990,0,0);}
.m32_c01048{transform:matrix(0.185889,0.001487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185889,0.001487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185889,0.001487,-0.002000,0.249992,0,0);}
.meb_c01048{transform:matrix(0.186085,0.003350,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186085,0.003350,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186085,0.003350,-0.004499,0.249960,0,0);}
.m39_c01048{transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186449,0.001492,-0.002000,0.249992,0,0);}
.m66_c01048{transform:matrix(0.186477,0.001678,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186477,0.001678,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186477,0.001678,-0.002250,0.249990,0,0);}
.m7b_c01048{transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186872,0.001682,-0.002250,0.249990,0,0);}
.m44_c01048{transform:matrix(0.186959,0.001496,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186959,0.001496,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186959,0.001496,-0.002000,0.249992,0,0);}
.m5_c01048{transform:matrix(0.187214,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187214,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187214,0.002059,-0.002750,0.249985,0,0);}
.m92_c01048{transform:matrix(0.187897,0.001691,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187897,0.001691,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187897,0.001691,-0.002250,0.249990,0,0);}
.m3_c01048{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);}
.med_c01048{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);}
.mc7_c01048{transform:matrix(0.189497,0.001705,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189497,0.001705,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189497,0.001705,-0.002250,0.249990,0,0);}
.m86_c01048{transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190192,0.001712,-0.002250,0.249990,0,0);}
.m1e_c01048{transform:matrix(0.190204,0.001522,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190204,0.001522,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190204,0.001522,-0.002000,0.249992,0,0);}
.mb1_c01048{transform:matrix(0.190212,0.001712,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190212,0.001712,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190212,0.001712,-0.002250,0.249990,0,0);}
.md0_c01048{transform:matrix(0.190467,0.001714,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190467,0.001714,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190467,0.001714,-0.002250,0.249990,0,0);}
.m6c_c01048{transform:matrix(0.190712,0.001716,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190712,0.001716,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190712,0.001716,-0.002250,0.249990,0,0);}
.m75_c01048{transform:matrix(0.190892,0.001718,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190892,0.001718,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190892,0.001718,-0.002250,0.249990,0,0);}
.m37_c01048{transform:matrix(0.191099,0.001529,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191099,0.001529,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191099,0.001529,-0.002000,0.249992,0,0);}
.m58_c01048{transform:matrix(0.191437,0.001723,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191437,0.001723,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191437,0.001723,-0.002250,0.249990,0,0);}
.m73_c01048{transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191677,0.001725,-0.002250,0.249990,0,0);}
.m3a_c01048{transform:matrix(0.191929,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191929,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191929,0.001535,-0.002000,0.249992,0,0);}
.m6e_c01048{transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192237,0.001730,-0.002250,0.249990,0,0);}
.mc2_c01048{transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);}
.m2c_c01048{transform:matrix(0.193214,0.001546,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193214,0.001546,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193214,0.001546,-0.002000,0.249992,0,0);}
.m95_c01048{transform:matrix(0.193232,0.001739,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193232,0.001739,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193232,0.001739,-0.002250,0.249990,0,0);}
.mdd_c01048{transform:matrix(0.193957,0.001746,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193957,0.001746,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193957,0.001746,-0.002250,0.249990,0,0);}
.m64_c01048{transform:matrix(0.193982,0.001746,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193982,0.001746,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193982,0.001746,-0.002250,0.249990,0,0);}
.m31_c01048{transform:matrix(0.194369,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194369,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194369,0.001555,-0.002000,0.249992,0,0);}
.mf_c01048{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);}
.m62_c01048{transform:matrix(0.195877,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195877,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195877,0.001763,-0.002250,0.249990,0,0);}
.mcf_c01048{transform:matrix(0.195927,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195927,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195927,0.001763,-0.002250,0.249990,0,0);}
.m21_c01048{transform:matrix(0.196624,0.001573,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196624,0.001573,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196624,0.001573,-0.002000,0.249992,0,0);}
.mc1_c01048{transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);}
.m24_c01048{transform:matrix(0.197269,0.001578,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197269,0.001578,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197269,0.001578,-0.002000,0.249992,0,0);}
.m78_c01048{transform:matrix(0.197747,0.001780,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197747,0.001780,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197747,0.001780,-0.002250,0.249990,0,0);}
.mbb_c01048{transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198042,0.001782,-0.002250,0.249990,0,0);}
.m71_c01048{transform:matrix(0.198077,0.001783,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198077,0.001783,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198077,0.001783,-0.002250,0.249990,0,0);}
.mb3_c01048{transform:matrix(0.198332,0.001785,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198332,0.001785,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198332,0.001785,-0.002250,0.249990,0,0);}
.m2d_c01048{transform:matrix(0.198664,0.001589,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198664,0.001589,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198664,0.001589,-0.002000,0.249992,0,0);}
.m22_c01048{transform:matrix(0.198934,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198934,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198934,0.001591,-0.002000,0.249992,0,0);}
.me1_c01048{transform:matrix(0.199427,0.001795,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199427,0.001795,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199427,0.001795,-0.002250,0.249990,0,0);}
.m2a_c01048{transform:matrix(0.199979,0.001600,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199979,0.001600,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199979,0.001600,-0.002000,0.249992,0,0);}
.mde_c01048{transform:matrix(0.200162,0.001801,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200162,0.001801,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200162,0.001801,-0.002250,0.249990,0,0);}
.me0_c01048{transform:matrix(0.200817,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200817,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200817,0.001807,-0.002250,0.249990,0,0);}
.m3e_c01048{transform:matrix(0.201074,0.001609,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201074,0.001609,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201074,0.001609,-0.002000,0.249992,0,0);}
.m17_c01048{transform:matrix(0.201229,0.001610,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201229,0.001610,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201229,0.001610,-0.002000,0.249992,0,0);}
.me3_c01048{transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201332,0.001812,-0.002250,0.249990,0,0);}
.m33_c01048{transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201514,0.001612,-0.002000,0.249992,0,0);}
.m43_c01048{transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);}
.m63_c01048{transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203982,0.001836,-0.002250,0.249990,0,0);}
.m98_c01048{transform:matrix(0.205622,0.001851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205622,0.001851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205622,0.001851,-0.002250,0.249990,0,0);}
.ma_c01048{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);}
.m48_c01048{transform:matrix(0.206108,0.001649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206108,0.001649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206108,0.001649,-0.002000,0.249992,0,0);}
.m2b_c01048{transform:matrix(0.206303,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206303,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206303,0.001650,-0.002000,0.249992,0,0);}
.m4c_c01048{transform:matrix(0.207248,0.001658,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207248,0.001658,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207248,0.001658,-0.002000,0.249992,0,0);}
.m1d_c01048{transform:matrix(0.207423,0.001659,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207423,0.001659,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207423,0.001659,-0.002000,0.249992,0,0);}
.m60_c01048{transform:matrix(0.207937,0.001871,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207937,0.001871,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207937,0.001871,-0.002250,0.249990,0,0);}
.m54_c01048{transform:matrix(0.208652,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208652,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208652,0.001878,-0.002250,0.249990,0,0);}
.m7c_c01048{transform:matrix(0.209072,0.001882,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209072,0.001882,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209072,0.001882,-0.002250,0.249990,0,0);}
.m85_c01048{transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210361,0.001893,-0.002250,0.249990,0,0);}
.m51_c01048{transform:matrix(0.211076,0.001900,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211076,0.001900,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211076,0.001900,-0.002250,0.249990,0,0);}
.mdc_c01048{transform:matrix(0.211376,0.001902,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211376,0.001902,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211376,0.001902,-0.002250,0.249990,0,0);}
.ma2_c01048{transform:matrix(0.211511,0.001904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211511,0.001904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211511,0.001904,-0.002250,0.249990,0,0);}
.mea_c01048{transform:matrix(0.211646,0.003810,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211646,0.003810,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211646,0.003810,-0.004499,0.249960,0,0);}
.m8c_c01048{transform:matrix(0.211816,0.001906,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211816,0.001906,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211816,0.001906,-0.002250,0.249990,0,0);}
.md8_c01048{transform:matrix(0.212361,0.001911,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212361,0.001911,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212361,0.001911,-0.002250,0.249990,0,0);}
.m6f_c01048{transform:matrix(0.213801,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213801,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213801,0.001924,-0.002250,0.249990,0,0);}
.m8b_c01048{transform:matrix(0.214591,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214591,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214591,0.001931,-0.002250,0.249990,0,0);}
.m6_c01048{transform:matrix(0.215827,0.002374,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215827,0.002374,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215827,0.002374,-0.002750,0.249985,0,0);}
.maf_c01048{transform:matrix(0.216051,0.001944,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216051,0.001944,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216051,0.001944,-0.002250,0.249990,0,0);}
.mb7_c01048{transform:matrix(0.216321,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216321,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216321,0.001947,-0.002250,0.249990,0,0);}
.m5b_c01048{transform:matrix(0.216781,0.001951,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216781,0.001951,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216781,0.001951,-0.002250,0.249990,0,0);}
.mdb_c01048{transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);}
.mba_c01048{transform:matrix(0.217411,0.001957,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217411,0.001957,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217411,0.001957,-0.002250,0.249990,0,0);}
.m20_c01048{transform:matrix(0.218608,0.001749,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218608,0.001749,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218608,0.001749,-0.002000,0.249992,0,0);}
.m76_c01048{transform:matrix(0.219081,0.001972,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219081,0.001972,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219081,0.001972,-0.002250,0.249990,0,0);}
.mac_c01048{transform:matrix(0.219411,0.001975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219411,0.001975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219411,0.001975,-0.002250,0.249990,0,0);}
.m10_c01048{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);}
.m52_c01048{transform:matrix(0.220556,0.001985,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220556,0.001985,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220556,0.001985,-0.002250,0.249990,0,0);}
.m1a_c01048{transform:matrix(0.224148,0.001793,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224148,0.001793,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224148,0.001793,-0.002000,0.249992,0,0);}
.m12_c01048{transform:matrix(0.224343,0.001795,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224343,0.001795,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224343,0.001795,-0.002000,0.249992,0,0);}
.mab_c01048{transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224956,0.002025,-0.002250,0.249990,0,0);}
.m5e_c01048{transform:matrix(0.227106,0.002044,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227106,0.002044,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227106,0.002044,-0.002250,0.249990,0,0);}
.mee_c01048{transform:matrix(0.228063,0.004105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228063,0.004105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228063,0.004105,-0.004499,0.249960,0,0);}
.mad_c01048{transform:matrix(0.228076,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228076,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228076,0.002053,-0.002250,0.249990,0,0);}
.m9f_c01048{transform:matrix(0.229266,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229266,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229266,0.002063,-0.002250,0.249990,0,0);}
.m26_c01048{transform:matrix(0.229388,0.001835,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229388,0.001835,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229388,0.001835,-0.002000,0.249992,0,0);}
.ma0_c01048{transform:matrix(0.231091,0.002080,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231091,0.002080,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231091,0.002080,-0.002250,0.249990,0,0);}
.me9_c01048{transform:matrix(0.231962,0.004175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231962,0.004175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231962,0.004175,-0.004499,0.249960,0,0);}
.m4e_c01048{transform:matrix(0.232698,0.001862,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232698,0.001862,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232698,0.001862,-0.002000,0.249992,0,0);}
.m45_c01048{transform:matrix(0.233173,0.001865,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233173,0.001865,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233173,0.001865,-0.002000,0.249992,0,0);}
.mb2_c01048{transform:matrix(0.234710,0.002112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234710,0.002112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234710,0.002112,-0.002250,0.249990,0,0);}
.mc3_c01048{transform:matrix(0.234915,0.002114,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234915,0.002114,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234915,0.002114,-0.002250,0.249990,0,0);}
.m8a_c01048{transform:matrix(0.236395,0.002128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236395,0.002128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236395,0.002128,-0.002250,0.249990,0,0);}
.me2_c01048{transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236705,0.002130,-0.002250,0.249990,0,0);}
.m82_c01048{transform:matrix(0.238355,0.002145,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238355,0.002145,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238355,0.002145,-0.002250,0.249990,0,0);}
.mbe_c01048{transform:matrix(0.239580,0.002156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239580,0.002156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239580,0.002156,-0.002250,0.249990,0,0);}
.mc6_c01048{transform:matrix(0.239920,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239920,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239920,0.002159,-0.002250,0.249990,0,0);}
.m49_c01048{transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);}
.m4d_c01048{transform:matrix(0.241377,0.001931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241377,0.001931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241377,0.001931,-0.002000,0.249992,0,0);}
.m72_c01048{transform:matrix(0.242950,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242950,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242950,0.002187,-0.002250,0.249990,0,0);}
.m8f_c01048{transform:matrix(0.243135,0.002188,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243135,0.002188,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243135,0.002188,-0.002250,0.249990,0,0);}
.m0_c01048{transform:matrix(0.247320,0.002721,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247320,0.002721,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247320,0.002721,-0.002750,0.249985,0,0);}
.ma6_c01048{transform:matrix(0.248895,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248895,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248895,0.002240,-0.002250,0.249990,0,0);}
.ma3_c01048{transform:matrix(0.254730,0.002293,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254730,0.002293,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254730,0.002293,-0.002250,0.249990,0,0);}
.m6b_c01048{transform:matrix(0.264274,0.002378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264274,0.002378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264274,0.002378,-0.002250,0.249990,0,0);}
.m8_c01048{transform:matrix(0.267524,0.002943,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267524,0.002943,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267524,0.002943,-0.002750,0.249985,0,0);}
.mcb_c01048{transform:matrix(0.268059,0.002413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268059,0.002413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268059,0.002413,-0.002250,0.249990,0,0);}
.m5a_c01048{transform:matrix(0.270039,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270039,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270039,0.002430,-0.002250,0.249990,0,0);}
.m5f_c01048{transform:matrix(0.270944,0.002438,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270944,0.002438,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270944,0.002438,-0.002250,0.249990,0,0);}
.ma1_c01048{transform:matrix(0.276804,0.002491,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276804,0.002491,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276804,0.002491,-0.002250,0.249990,0,0);}
.md_c01048{transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);}
.me_c01048{transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289345,0.000000,0.000000,0.250000,0,0);}
.m61_c01048{transform:matrix(0.294118,0.002647,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294118,0.002647,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294118,0.002647,-0.002250,0.249990,0,0);}
.m13_c01048{transform:matrix(0.303825,0.002431,-0.002000,0.249992,0,0);-ms-transform:matrix(0.303825,0.002431,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.303825,0.002431,-0.002000,0.249992,0,0);}
.m3f_c01048{transform:matrix(0.304645,0.002437,-0.002000,0.249992,0,0);-ms-transform:matrix(0.304645,0.002437,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.304645,0.002437,-0.002000,0.249992,0,0);}
.mc_c01048{transform:matrix(0.307080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307080,0.000000,0.000000,0.250000,0,0);}
.mb0_c01048{transform:matrix(0.307903,0.002771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.307903,0.002771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.307903,0.002771,-0.002250,0.249990,0,0);}
.m5d_c01048{transform:matrix(0.308608,0.002777,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308608,0.002777,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308608,0.002777,-0.002250,0.249990,0,0);}
.mae_c01048{transform:matrix(0.309152,0.002782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.309152,0.002782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.309152,0.002782,-0.002250,0.249990,0,0);}
.m5c_c01048{transform:matrix(0.329637,0.002967,-0.002250,0.249990,0,0);-ms-transform:matrix(0.329637,0.002967,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.329637,0.002967,-0.002250,0.249990,0,0);}
.mb_c01048{transform:matrix(0.330745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330745,0.000000,0.000000,0.250000,0,0);}
.mb8_c01048{transform:matrix(0.333741,0.003004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.333741,0.003004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.333741,0.003004,-0.002250,0.249990,0,0);}
.md5_c01048{transform:matrix(0.343531,0.003092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.343531,0.003092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.343531,0.003092,-0.002250,0.249990,0,0);}
.m69_c01048{transform:matrix(0.348956,0.003141,-0.002250,0.249990,0,0);-ms-transform:matrix(0.348956,0.003141,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.348956,0.003141,-0.002250,0.249990,0,0);}
.m4f_c01048{transform:matrix(0.349064,0.002793,-0.002000,0.249992,0,0);-ms-transform:matrix(0.349064,0.002793,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.349064,0.002793,-0.002000,0.249992,0,0);}
.m46_c01048{transform:matrix(0.351594,0.002813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.351594,0.002813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.351594,0.002813,-0.002000,0.249992,0,0);}
.ma9_c01048{transform:matrix(0.357496,0.003217,-0.002250,0.249990,0,0);-ms-transform:matrix(0.357496,0.003217,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.357496,0.003217,-0.002250,0.249990,0,0);}
.m7_c01048{transform:matrix(0.360453,0.003965,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360453,0.003965,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360453,0.003965,-0.002750,0.249985,0,0);}
.me7_c01048{transform:matrix(0.362020,0.003258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.362020,0.003258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.362020,0.003258,-0.002250,0.249990,0,0);}
.me8_c01048{transform:matrix(0.382505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382505,0.000000,0.000000,0.250000,0,0);}
.m9d_c01048{transform:matrix(0.394329,0.003549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.394329,0.003549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.394329,0.003549,-0.002250,0.249990,0,0);}
.m59_c01048{transform:matrix(0.395364,0.003558,-0.002250,0.249990,0,0);-ms-transform:matrix(0.395364,0.003558,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.395364,0.003558,-0.002250,0.249990,0,0);}
.maa_c01048{transform:matrix(0.399109,0.003592,-0.002250,0.249990,0,0);-ms-transform:matrix(0.399109,0.003592,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.399109,0.003592,-0.002250,0.249990,0,0);}
.ma4_c01048{transform:matrix(0.408323,0.003675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.408323,0.003675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.408323,0.003675,-0.002250,0.249990,0,0);}
.md4_c01048{transform:matrix(0.428993,0.003861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.428993,0.003861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.428993,0.003861,-0.002250,0.249990,0,0);}
.ma7_c01048{transform:matrix(0.568877,0.005120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.568877,0.005120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.568877,0.005120,-0.002250,0.249990,0,0);}
.mca_c01048{transform:matrix(0.721361,0.006492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.721361,0.006492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.721361,0.006492,-0.002250,0.249990,0,0);}
.ma8_c01048{transform:matrix(1.142304,0.010281,-0.002250,0.249990,0,0);-ms-transform:matrix(1.142304,0.010281,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.142304,0.010281,-0.002250,0.249990,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:0.000000px;}
.fc0_c01048{color:transparent;}
.fs0_c01048{font-size:52.503176px;}
.fsa_c01048{font-size:61.952509px;}
.fsf_c01048{font-size:63.002551px;}
.fsd_c01048{font-size:64.052594px;}
.fs11_c01048{font-size:67.202722px;}
.fs8_c01048{font-size:68.252184px;}
.fs4_c01048{font-size:70.352251px;}
.fs9_c01048{font-size:70.352849px;}
.fs6_c01048{font-size:71.402285px;}
.fsc_c01048{font-size:71.402892px;}
.fs12_c01048{font-size:72.450000px;}
.fs5_c01048{font-size:72.452318px;}
.fsb_c01048{font-size:72.452934px;}
.fs13_c01048{font-size:72.461736px;}
.fs3_c01048{font-size:73.502352px;}
.fse_c01048{font-size:73.502977px;}
.fs7_c01048{font-size:74.552386px;}
.fs10_c01048{font-size:77.703147px;}
.fs2_c01048{font-size:138.600000px;}
.fs1_c01048{font-size:153.300000px;}
.y0_c01048{bottom:0.000000px;}
.y9_c01048{bottom:162.912622px;}
.y8_c01048{bottom:163.043336px;}
.y7_c01048{bottom:163.610705px;}
.y6_c01048{bottom:164.050017px;}
.y5_c01048{bottom:164.575113px;}
.y4_c01048{bottom:165.017775px;}
.y3_c01048{bottom:165.567258px;}
.y2_c01048{bottom:165.775240px;}
.y1_c01048{bottom:166.051500px;}
.yea_c01048{bottom:208.538136px;}
.ye9_c01048{bottom:209.908521px;}
.ye8_c01048{bottom:210.783348px;}
.ye7_c01048{bottom:211.425192px;}
.ye6_c01048{bottom:212.124843px;}
.ye5_c01048{bottom:212.494500px;}
.ye4_c01048{bottom:231.154500px;}
.ye3_c01048{bottom:253.893203px;}
.ye2_c01048{bottom:254.303090px;}
.ye1_c01048{bottom:254.584229px;}
.ye0_c01048{bottom:254.908383px;}
.ydf_c01048{bottom:255.913289px;}
.yde_c01048{bottom:256.517636px;}
.ydd_c01048{bottom:257.192312px;}
.ydc_c01048{bottom:257.330147px;}
.ydb_c01048{bottom:257.453117px;}
.yda_c01048{bottom:257.834124px;}
.yd9_c01048{bottom:277.681398px;}
.yd8_c01048{bottom:278.148791px;}
.yd7_c01048{bottom:278.516824px;}
.yd6_c01048{bottom:278.980814px;}
.yd5_c01048{bottom:279.226508px;}
.yd4_c01048{bottom:280.013511px;}
.yd3_c01048{bottom:280.272127px;}
.yd2_c01048{bottom:280.741531px;}
.yd1_c01048{bottom:281.054189px;}
.yd0_c01048{bottom:300.994623px;}
.ycf_c01048{bottom:300.995109px;}
.yce_c01048{bottom:323.675797px;}
.ycd_c01048{bottom:324.107719px;}
.ycc_c01048{bottom:324.620784px;}
.ycb_c01048{bottom:324.974655px;}
.yca_c01048{bottom:325.158327px;}
.yc9_c01048{bottom:325.584294px;}
.yc8_c01048{bottom:326.076148px;}
.yc7_c01048{bottom:326.316499px;}
.yc6_c01048{bottom:326.682871px;}
.yc1_c01048{bottom:348.029176px;}
.yc0_c01048{bottom:348.029266px;}
.yc2_c01048{bottom:348.029280px;}
.ybf_c01048{bottom:348.029539px;}
.yc3_c01048{bottom:348.029953px;}
.ybe_c01048{bottom:348.029992px;}
.yc4_c01048{bottom:348.030147px;}
.yc5_c01048{bottom:348.030250px;}
.ybd_c01048{bottom:369.589630px;}
.ybc_c01048{bottom:369.797632px;}
.ybb_c01048{bottom:370.099900px;}
.yba_c01048{bottom:370.893780px;}
.yb9_c01048{bottom:371.474919px;}
.yb8_c01048{bottom:371.668758px;}
.yb7_c01048{bottom:372.211620px;}
.yb6_c01048{bottom:372.584514px;}
.yb3_c01048{bottom:393.567699px;}
.yb4_c01048{bottom:393.567802px;}
.yae_c01048{bottom:393.567828px;}
.yb0_c01048{bottom:393.568125px;}
.yb5_c01048{bottom:393.568222px;}
.yb2_c01048{bottom:393.568225px;}
.yb1_c01048{bottom:393.568228px;}
.yaf_c01048{bottom:393.568261px;}
.yad_c01048{bottom:415.456404px;}
.yac_c01048{bottom:415.922740px;}
.yab_c01048{bottom:416.363505px;}
.yaa_c01048{bottom:416.719860px;}
.ya9_c01048{bottom:417.104608px;}
.ya8_c01048{bottom:417.888847px;}
.ya7_c01048{bottom:418.215742px;}
.ya6_c01048{bottom:437.798022px;}
.ya5_c01048{bottom:438.395902px;}
.ya4_c01048{bottom:438.406339px;}
.ya3_c01048{bottom:439.518297px;}
.ya2_c01048{bottom:440.096844px;}
.ya1_c01048{bottom:459.603726px;}
.ya0_c01048{bottom:461.899860px;}
.y9f_c01048{bottom:462.253758px;}
.y9e_c01048{bottom:462.464797px;}
.y9d_c01048{bottom:462.831304px;}
.y9c_c01048{bottom:463.190548px;}
.y9b_c01048{bottom:463.419558px;}
.y9a_c01048{bottom:463.579468px;}
.y99_c01048{bottom:481.994380px;}
.y98_c01048{bottom:482.248705px;}
.y97_c01048{bottom:482.456734px;}
.y96_c01048{bottom:482.870146px;}
.y95_c01048{bottom:483.248049px;}
.y94_c01048{bottom:483.584610px;}
.y93_c01048{bottom:484.260190px;}
.y92_c01048{bottom:484.681257px;}
.y91_c01048{bottom:485.180388px;}
.y90_c01048{bottom:504.847332px;}
.y8f_c01048{bottom:505.331131px;}
.y8e_c01048{bottom:505.696911px;}
.y8d_c01048{bottom:506.075788px;}
.y8c_c01048{bottom:506.863143px;}
.y8b_c01048{bottom:507.174059px;}
.y8a_c01048{bottom:507.582589px;}
.y89_c01048{bottom:507.893127px;}
.y88_c01048{bottom:508.402839px;}
.y87_c01048{bottom:527.479942px;}
.y86_c01048{bottom:528.190212px;}
.y85_c01048{bottom:528.535335px;}
.y84_c01048{bottom:528.775435px;}
.y83_c01048{bottom:529.185802px;}
.y82_c01048{bottom:529.357297px;}
.y81_c01048{bottom:529.860912px;}
.y80_c01048{bottom:530.196611px;}
.y7f_c01048{bottom:530.401740px;}
.y7e_c01048{bottom:530.847402px;}
.y7d_c01048{bottom:531.355851px;}
.y7c_c01048{bottom:551.005227px;}
.y7b_c01048{bottom:551.432487px;}
.y7a_c01048{bottom:551.695250px;}
.y79_c01048{bottom:551.945400px;}
.y78_c01048{bottom:552.641958px;}
.y77_c01048{bottom:553.134169px;}
.y76_c01048{bottom:553.522864px;}
.y75_c01048{bottom:553.785735px;}
.y74_c01048{bottom:554.307991px;}
.y72_c01048{bottom:574.254516px;}
.y6e_c01048{bottom:574.254675px;}
.y70_c01048{bottom:574.254699px;}
.y71_c01048{bottom:574.254712px;}
.y6d_c01048{bottom:574.255051px;}
.y6f_c01048{bottom:574.255182px;}
.y73_c01048{bottom:574.255189px;}
.y6c_c01048{bottom:595.907581px;}
.y6b_c01048{bottom:596.471282px;}
.y6a_c01048{bottom:596.742357px;}
.y69_c01048{bottom:597.561146px;}
.y68_c01048{bottom:598.063261px;}
.y67_c01048{bottom:598.517133px;}
.y66_c01048{bottom:599.129077px;}
.y65_c01048{bottom:618.737682px;}
.y64_c01048{bottom:619.652979px;}
.y63_c01048{bottom:619.879666px;}
.y62_c01048{bottom:620.449639px;}
.y61_c01048{bottom:620.816417px;}
.y60_c01048{bottom:621.017181px;}
.y5f_c01048{bottom:621.617276px;}
.y5e_c01048{bottom:622.079022px;}
.y5d_c01048{bottom:640.321671px;}
.y5c_c01048{bottom:640.713063px;}
.y5b_c01048{bottom:641.607492px;}
.y5a_c01048{bottom:641.673183px;}
.y59_c01048{bottom:642.125325px;}
.y58_c01048{bottom:642.322195px;}
.y57_c01048{bottom:642.572607px;}
.y56_c01048{bottom:642.873697px;}
.y55_c01048{bottom:643.327810px;}
.y54_c01048{bottom:643.680565px;}
.y53_c01048{bottom:663.243986px;}
.y52_c01048{bottom:663.539554px;}
.y51_c01048{bottom:663.960390px;}
.y50_c01048{bottom:664.249546px;}
.y4f_c01048{bottom:664.827886px;}
.y4e_c01048{bottom:665.041362px;}
.y4d_c01048{bottom:665.549327px;}
.y4c_c01048{bottom:665.741229px;}
.y4b_c01048{bottom:666.091500px;}
.y43_c01048{bottom:687.796344px;}
.y44_c01048{bottom:687.796476px;}
.y42_c01048{bottom:687.796560px;}
.y45_c01048{bottom:687.796860px;}
.y47_c01048{bottom:687.796932px;}
.y48_c01048{bottom:687.796944px;}
.y46_c01048{bottom:687.797280px;}
.y49_c01048{bottom:687.797376px;}
.y4a_c01048{bottom:687.797688px;}
.y41_c01048{bottom:708.144120px;}
.y40_c01048{bottom:708.916392px;}
.y3f_c01048{bottom:709.115832px;}
.y3e_c01048{bottom:709.556280px;}
.y3d_c01048{bottom:709.920744px;}
.y3c_c01048{bottom:710.180352px;}
.y3b_c01048{bottom:710.410692px;}
.y3a_c01048{bottom:710.613084px;}
.y39_c01048{bottom:711.448896px;}
.y38_c01048{bottom:733.127436px;}
.y37_c01048{bottom:733.127652px;}
.y31_c01048{bottom:733.127772px;}
.y35_c01048{bottom:733.127868px;}
.y32_c01048{bottom:733.128024px;}
.y36_c01048{bottom:733.128060px;}
.y34_c01048{bottom:733.128456px;}
.y33_c01048{bottom:733.128624px;}
.y28_c01048{bottom:756.002016px;}
.y27_c01048{bottom:756.002064px;}
.y29_c01048{bottom:756.002628px;}
.y30_c01048{bottom:756.003240px;}
.y2a_c01048{bottom:756.003288px;}
.y2f_c01048{bottom:756.003348px;}
.y2e_c01048{bottom:756.003756px;}
.y2b_c01048{bottom:756.003780px;}
.y2d_c01048{bottom:756.004164px;}
.y2c_c01048{bottom:756.004332px;}
.y1f_c01048{bottom:778.870548px;}
.y20_c01048{bottom:778.870860px;}
.y23_c01048{bottom:778.871112px;}
.y24_c01048{bottom:778.871304px;}
.y21_c01048{bottom:778.871352px;}
.y22_c01048{bottom:778.871592px;}
.y25_c01048{bottom:778.871616px;}
.y26_c01048{bottom:778.871760px;}
.y18_c01048{bottom:801.795888px;}
.y17_c01048{bottom:801.796296px;}
.y16_c01048{bottom:801.796476px;}
.y19_c01048{bottom:801.796500px;}
.y1c_c01048{bottom:801.796536px;}
.y1a_c01048{bottom:801.796812px;}
.y1d_c01048{bottom:801.796896px;}
.y15_c01048{bottom:801.797004px;}
.y1b_c01048{bottom:801.797064px;}
.y1e_c01048{bottom:801.797088px;}
.y14_c01048{bottom:823.278552px;}
.y13_c01048{bottom:823.591776px;}
.y12_c01048{bottom:823.916028px;}
.y11_c01048{bottom:824.365548px;}
.y10_c01048{bottom:824.747424px;}
.yf_c01048{bottom:825.099180px;}
.ye_c01048{bottom:825.205392px;}
.yd_c01048{bottom:825.814404px;}
.yc_c01048{bottom:825.930000px;}
.yb_c01048{bottom:870.843000px;}
.ya_c01048{bottom:910.314000px;}
.h2_c01048{height:52.503176px;}
.hc_c01048{height:61.952509px;}
.h11_c01048{height:63.002551px;}
.hf_c01048{height:64.052594px;}
.h13_c01048{height:67.202722px;}
.ha_c01048{height:68.252184px;}
.h6_c01048{height:70.352251px;}
.hb_c01048{height:70.352849px;}
.h8_c01048{height:71.402285px;}
.he_c01048{height:71.402892px;}
.h14_c01048{height:72.450000px;}
.h7_c01048{height:72.452318px;}
.hd_c01048{height:72.452934px;}
.h15_c01048{height:72.461736px;}
.h5_c01048{height:73.502352px;}
.h10_c01048{height:73.502977px;}
.h9_c01048{height:74.552386px;}
.h12_c01048{height:77.703147px;}
.h4_c01048{height:138.600000px;}
.h3_c01048{height:153.300000px;}
.h1_c01048{height:1005.000000px;}
.h0_c01048{height:1005.150000px;}
.w0_c01048{width:715.200000px;}
.w1_c01048{width:715.500000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:126.514500px;}
.x12_c01048{left:135.021000px;}
.x53_c01048{left:139.462077px;}
.x7a_c01048{left:147.418320px;}
.x13_c01048{left:149.470500px;}
.x5b_c01048{left:150.513615px;}
.x2_c01048{left:151.629000px;}
.x73_c01048{left:155.613711px;}
.x6f_c01048{left:164.578324px;}
.x8d_c01048{left:167.733000px;}
.x3_c01048{left:170.536500px;}
.x46_c01048{left:173.225568px;}
.x23_c01048{left:176.039676px;}
.x31_c01048{left:179.278464px;}
.x76_c01048{left:181.304436px;}
.x56_c01048{left:183.064257px;}
.x7c_c01048{left:185.641226px;}
.x42_c01048{left:188.382000px;}
.xd_c01048{left:189.810000px;}
.x62_c01048{left:192.139787px;}
.x5c_c01048{left:194.040941px;}
.x1b_c01048{left:195.209796px;}
.x32_c01048{left:196.829592px;}
.x68_c01048{left:198.861441px;}
.x8e_c01048{left:206.602500px;}
.x43_c01048{left:209.704500px;}
.x87_c01048{left:211.864760px;}
.x74_c01048{left:213.396185px;}
.x1c_c01048{left:214.921056px;}
.x63_c01048{left:217.976585px;}
.x4_c01048{left:220.489500px;}
.x24_c01048{left:222.481152px;}
.x47_c01048{left:223.682568px;}
.x14_c01048{left:225.597000px;}
.xa_c01048{left:232.740000px;}
.x83_c01048{left:234.216444px;}
.x54_c01048{left:236.384336px;}
.x15_c01048{left:238.873500px;}
.x7d_c01048{left:239.958740px;}
.x69_c01048{left:240.979563px;}
.x36_c01048{left:242.844924px;}
.x25_c01048{left:245.702640px;}
.x5d_c01048{left:248.268969px;}
.x1d_c01048{left:251.911920px;}
.x3c_c01048{left:252.989052px;}
.x57_c01048{left:254.347035px;}
.x48_c01048{left:257.137068px;}
.x7e_c01048{left:259.329564px;}
.x5_c01048{left:260.731500px;}
.x2a_c01048{left:265.683984px;}
.x26_c01048{left:266.763984px;}
.x7b_c01048{left:268.383621px;}
.x4f_c01048{left:276.297330px;}
.x64_c01048{left:277.913465px;}
.x88_c01048{left:279.328152px;}
.x70_c01048{left:281.277285px;}
.x16_c01048{left:282.843000px;}
.x49_c01048{left:284.960568px;}
.x33_c01048{left:286.742340px;}
.x44_c01048{left:289.864500px;}
.x37_c01048{left:290.936040px;}
.xe_c01048{left:293.220000px;}
.x82_c01048{left:294.842169px;}
.x1e_c01048{left:296.463276px;}
.x2b_c01048{left:298.624596px;}
.x84_c01048{left:299.826176px;}
.x7f_c01048{left:301.204140px;}
.x4a_c01048{left:306.835068px;}
.x6_c01048{left:308.467500px;}
.x50_c01048{left:313.050006px;}
.x27_c01048{left:314.555544px;}
.x71_c01048{left:316.598961px;}
.x38_c01048{left:319.824312px;}
.xf_c01048{left:322.650000px;}
.x58_c01048{left:323.739651px;}
.x75_c01048{left:325.605672px;}
.x17_c01048{left:330.577500px;}
.x77_c01048{left:333.785559px;}
.x3d_c01048{left:335.071308px;}
.x2c_c01048{left:340.745796px;}
.x6a_c01048{left:342.272159px;}
.x65_c01048{left:343.562196px;}
.x3e_c01048{left:345.331968px;}
.x5e_c01048{left:347.351796px;}
.x7_c01048{left:348.405000px;}
.x59_c01048{left:350.740338px;}
.x28_c01048{left:353.706552px;}
.x80_c01048{left:354.930654px;}
.x4b_c01048{left:357.073068px;}
.x85_c01048{left:359.011583px;}
.x39_c01048{left:360.319488px;}
.x4c_c01048{left:364.372068px;}
.x2d_c01048{left:367.205988px;}
.x51_c01048{left:370.046493px;}
.x3f_c01048{left:371.252124px;}
.x66_c01048{left:375.158845px;}
.x78_c01048{left:377.925668px;}
.x6b_c01048{left:380.094321px;}
.x55_c01048{left:381.101730px;}
.x34_c01048{left:385.025628px;}
.x18_c01048{left:386.767500px;}
.x5f_c01048{left:390.007635px;}
.x1f_c01048{left:392.586432px;}
.x2e_c01048{left:397.446420px;}
.x8_c01048{left:399.984000px;}
.x5a_c01048{left:403.933145px;}
.x10_c01048{left:405.540000px;}
.x3a_c01048{left:409.187592px;}
.x9_c01048{left:411.867000px;}
.x6c_c01048{left:421.361943px;}
.x79_c01048{left:424.573749px;}
.x29_c01048{left:426.068184px;}
.x19_c01048{left:427.299000px;}
.x86_c01048{left:428.668206px;}
.x20_c01048{left:431.467416px;}
.x45_c01048{left:433.012500px;}
.x40_c01048{left:435.513240px;}
.x60_c01048{left:437.277300px;}
.x89_c01048{left:440.299208px;}
.x6d_c01048{left:442.142754px;}
.x67_c01048{left:445.887929px;}
.x2f_c01048{left:447.938148px;}
.x81_c01048{left:449.428304px;}
.x21_c01048{left:452.798784px;}
.x35_c01048{left:456.307188px;}
.x4d_c01048{left:463.753068px;}
.x1a_c01048{left:466.452000px;}
.x6e_c01048{left:467.567524px;}
.x8a_c01048{left:472.649411px;}
.xb_c01048{left:481.680000px;}
.x52_c01048{left:484.265967px;}
.x30_c01048{left:490.329360px;}
.x41_c01048{left:494.915544px;}
.x8b_c01048{left:500.720154px;}
.x61_c01048{left:501.861639px;}
.x4e_c01048{left:507.241068px;}
.x22_c01048{left:514.091208px;}
.x3b_c01048{left:517.150728px;}
.x8c_c01048{left:541.762790px;}
.x72_c01048{left:546.222896px;}
.x11_c01048{left:552.420000px;}
.xc_c01048{left:581.850000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:0.000000pt;}
.fs0_c01048{font-size:46.669490pt;}
.fsa_c01048{font-size:55.068897pt;}
.fsf_c01048{font-size:56.002268pt;}
.fsd_c01048{font-size:56.935639pt;}
.fs11_c01048{font-size:59.735752pt;}
.fs8_c01048{font-size:60.668608pt;}
.fs4_c01048{font-size:62.535334pt;}
.fs9_c01048{font-size:62.535866pt;}
.fs6_c01048{font-size:63.468698pt;}
.fsc_c01048{font-size:63.469237pt;}
.fs12_c01048{font-size:64.400000pt;}
.fs5_c01048{font-size:64.402061pt;}
.fsb_c01048{font-size:64.402608pt;}
.fs13_c01048{font-size:64.410432pt;}
.fs3_c01048{font-size:65.335424pt;}
.fse_c01048{font-size:65.335979pt;}
.fs7_c01048{font-size:66.268787pt;}
.fs10_c01048{font-size:69.069464pt;}
.fs2_c01048{font-size:123.200000pt;}
.fs1_c01048{font-size:136.266667pt;}
.y0_c01048{bottom:0.000000pt;}
.y9_c01048{bottom:144.811220pt;}
.y8_c01048{bottom:144.927409pt;}
.y7_c01048{bottom:145.431737pt;}
.y6_c01048{bottom:145.822237pt;}
.y5_c01048{bottom:146.288989pt;}
.y4_c01048{bottom:146.682467pt;}
.y3_c01048{bottom:147.170896pt;}
.y2_c01048{bottom:147.355769pt;}
.y1_c01048{bottom:147.601333pt;}
.yea_c01048{bottom:185.367232pt;}
.ye9_c01048{bottom:186.585352pt;}
.ye8_c01048{bottom:187.362976pt;}
.ye7_c01048{bottom:187.933504pt;}
.ye6_c01048{bottom:188.555416pt;}
.ye5_c01048{bottom:188.884000pt;}
.ye4_c01048{bottom:205.470667pt;}
.ye3_c01048{bottom:225.682847pt;}
.ye2_c01048{bottom:226.047191pt;}
.ye1_c01048{bottom:226.297092pt;}
.ye0_c01048{bottom:226.585229pt;}
.ydf_c01048{bottom:227.478479pt;}
.yde_c01048{bottom:228.015676pt;}
.ydd_c01048{bottom:228.615388pt;}
.ydc_c01048{bottom:228.737908pt;}
.ydb_c01048{bottom:228.847215pt;}
.yda_c01048{bottom:229.185888pt;}
.yd9_c01048{bottom:246.827909pt;}
.yd8_c01048{bottom:247.243369pt;}
.yd7_c01048{bottom:247.570511pt;}
.yd6_c01048{bottom:247.982945pt;}
.yd5_c01048{bottom:248.201340pt;}
.yd4_c01048{bottom:248.900899pt;}
.yd3_c01048{bottom:249.130780pt;}
.yd2_c01048{bottom:249.548028pt;}
.yd1_c01048{bottom:249.825945pt;}
.yd0_c01048{bottom:267.550776pt;}
.ycf_c01048{bottom:267.551208pt;}
.yce_c01048{bottom:287.711820pt;}
.ycd_c01048{bottom:288.095751pt;}
.ycc_c01048{bottom:288.551808pt;}
.ycb_c01048{bottom:288.866360pt;}
.yca_c01048{bottom:289.029624pt;}
.yc9_c01048{bottom:289.408261pt;}
.yc8_c01048{bottom:289.845465pt;}
.yc7_c01048{bottom:290.059111pt;}
.yc6_c01048{bottom:290.384775pt;}
.yc1_c01048{bottom:309.359268pt;}
.yc0_c01048{bottom:309.359348pt;}
.yc2_c01048{bottom:309.359360pt;}
.ybf_c01048{bottom:309.359591pt;}
.yc3_c01048{bottom:309.359959pt;}
.ybe_c01048{bottom:309.359993pt;}
.yc4_c01048{bottom:309.360131pt;}
.yc5_c01048{bottom:309.360223pt;}
.ybd_c01048{bottom:328.524116pt;}
.ybc_c01048{bottom:328.709007pt;}
.ybb_c01048{bottom:328.977689pt;}
.yba_c01048{bottom:329.683360pt;}
.yb9_c01048{bottom:330.199928pt;}
.yb8_c01048{bottom:330.372229pt;}
.yb7_c01048{bottom:330.854773pt;}
.yb6_c01048{bottom:331.186235pt;}
.yb3_c01048{bottom:349.837955pt;}
.yb4_c01048{bottom:349.838047pt;}
.yae_c01048{bottom:349.838069pt;}
.yb0_c01048{bottom:349.838333pt;}
.yb5_c01048{bottom:349.838420pt;}
.yb2_c01048{bottom:349.838423pt;}
.yb1_c01048{bottom:349.838425pt;}
.yaf_c01048{bottom:349.838455pt;}
.yad_c01048{bottom:369.294581pt;}
.yac_c01048{bottom:369.709103pt;}
.yab_c01048{bottom:370.100893pt;}
.yaa_c01048{bottom:370.417653pt;}
.ya9_c01048{bottom:370.759652pt;}
.ya8_c01048{bottom:371.456753pt;}
.ya7_c01048{bottom:371.747327pt;}
.ya6_c01048{bottom:389.153797pt;}
.ya5_c01048{bottom:389.685247pt;}
.ya4_c01048{bottom:389.694524pt;}
.ya3_c01048{bottom:390.682931pt;}
.ya2_c01048{bottom:391.197195pt;}
.ya1_c01048{bottom:408.536645pt;}
.ya0_c01048{bottom:410.577653pt;}
.y9f_c01048{bottom:410.892229pt;}
.y9e_c01048{bottom:411.079820pt;}
.y9d_c01048{bottom:411.405604pt;}
.y9c_c01048{bottom:411.724932pt;}
.y9b_c01048{bottom:411.928496pt;}
.y9a_c01048{bottom:412.070639pt;}
.y99_c01048{bottom:428.439449pt;}
.y98_c01048{bottom:428.665516pt;}
.y97_c01048{bottom:428.850431pt;}
.y96_c01048{bottom:429.217908pt;}
.y95_c01048{bottom:429.553821pt;}
.y94_c01048{bottom:429.852987pt;}
.y93_c01048{bottom:430.453503pt;}
.y92_c01048{bottom:430.827784pt;}
.y91_c01048{bottom:431.271456pt;}
.y90_c01048{bottom:448.753184pt;}
.y8f_c01048{bottom:449.183228pt;}
.y8e_c01048{bottom:449.508365pt;}
.y8d_c01048{bottom:449.845145pt;}
.y8c_c01048{bottom:450.545016pt;}
.y8b_c01048{bottom:450.821385pt;}
.y8a_c01048{bottom:451.184524pt;}
.y89_c01048{bottom:451.460557pt;}
.y88_c01048{bottom:451.913635pt;}
.y87_c01048{bottom:468.871060pt;}
.y86_c01048{bottom:469.502411pt;}
.y85_c01048{bottom:469.809187pt;}
.y84_c01048{bottom:470.022609pt;}
.y83_c01048{bottom:470.387380pt;}
.y82_c01048{bottom:470.539820pt;}
.y81_c01048{bottom:470.987477pt;}
.y80_c01048{bottom:471.285876pt;}
.y7f_c01048{bottom:471.468213pt;}
.y7e_c01048{bottom:471.864357pt;}
.y7d_c01048{bottom:472.316312pt;}
.y7c_c01048{bottom:489.782424pt;}
.y7b_c01048{bottom:490.162211pt;}
.y7a_c01048{bottom:490.395777pt;}
.y79_c01048{bottom:490.618133pt;}
.y78_c01048{bottom:491.237296pt;}
.y77_c01048{bottom:491.674817pt;}
.y76_c01048{bottom:492.020324pt;}
.y75_c01048{bottom:492.253987pt;}
.y74_c01048{bottom:492.718215pt;}
.y72_c01048{bottom:510.448459pt;}
.y6e_c01048{bottom:510.448600pt;}
.y70_c01048{bottom:510.448621pt;}
.y71_c01048{bottom:510.448633pt;}
.y6d_c01048{bottom:510.448935pt;}
.y6f_c01048{bottom:510.449051pt;}
.y73_c01048{bottom:510.449057pt;}
.y6c_c01048{bottom:529.695628pt;}
.y6b_c01048{bottom:530.196695pt;}
.y6a_c01048{bottom:530.437651pt;}
.y69_c01048{bottom:531.165463pt;}
.y68_c01048{bottom:531.611788pt;}
.y67_c01048{bottom:532.015229pt;}
.y66_c01048{bottom:532.559180pt;}
.y65_c01048{bottom:549.989051pt;}
.y64_c01048{bottom:550.802648pt;}
.y63_c01048{bottom:551.004148pt;}
.y62_c01048{bottom:551.510791pt;}
.y61_c01048{bottom:551.836815pt;}
.y60_c01048{bottom:552.015272pt;}
.y5f_c01048{bottom:552.548689pt;}
.y5e_c01048{bottom:552.959131pt;}
.y5d_c01048{bottom:569.174819pt;}
.y5c_c01048{bottom:569.522723pt;}
.y5b_c01048{bottom:570.317771pt;}
.y5a_c01048{bottom:570.376163pt;}
.y59_c01048{bottom:570.778067pt;}
.y58_c01048{bottom:570.953063pt;}
.y57_c01048{bottom:571.175651pt;}
.y56_c01048{bottom:571.443287pt;}
.y55_c01048{bottom:571.846943pt;}
.y54_c01048{bottom:572.160503pt;}
.y53_c01048{bottom:589.550209pt;}
.y52_c01048{bottom:589.812937pt;}
.y51_c01048{bottom:590.187013pt;}
.y50_c01048{bottom:590.444041pt;}
.y4f_c01048{bottom:590.958121pt;}
.y4e_c01048{bottom:591.147877pt;}
.y4d_c01048{bottom:591.599401pt;}
.y4c_c01048{bottom:591.769981pt;}
.y4b_c01048{bottom:592.081333pt;}
.y43_c01048{bottom:611.374528pt;}
.y44_c01048{bottom:611.374645pt;}
.y42_c01048{bottom:611.374720pt;}
.y45_c01048{bottom:611.374987pt;}
.y47_c01048{bottom:611.375051pt;}
.y48_c01048{bottom:611.375061pt;}
.y46_c01048{bottom:611.375360pt;}
.y49_c01048{bottom:611.375445pt;}
.y4a_c01048{bottom:611.375723pt;}
.y41_c01048{bottom:629.461440pt;}
.y40_c01048{bottom:630.147904pt;}
.y3f_c01048{bottom:630.325184pt;}
.y3e_c01048{bottom:630.716693pt;}
.y3d_c01048{bottom:631.040661pt;}
.y3c_c01048{bottom:631.271424pt;}
.y3b_c01048{bottom:631.476171pt;}
.y3a_c01048{bottom:631.656075pt;}
.y39_c01048{bottom:632.399019pt;}
.y38_c01048{bottom:651.668832pt;}
.y37_c01048{bottom:651.669024pt;}
.y31_c01048{bottom:651.669131pt;}
.y35_c01048{bottom:651.669216pt;}
.y32_c01048{bottom:651.669355pt;}
.y36_c01048{bottom:651.669387pt;}
.y34_c01048{bottom:651.669739pt;}
.y33_c01048{bottom:651.669888pt;}
.y28_c01048{bottom:672.001792pt;}
.y27_c01048{bottom:672.001835pt;}
.y29_c01048{bottom:672.002336pt;}
.y30_c01048{bottom:672.002880pt;}
.y2a_c01048{bottom:672.002923pt;}
.y2f_c01048{bottom:672.002976pt;}
.y2e_c01048{bottom:672.003339pt;}
.y2b_c01048{bottom:672.003360pt;}
.y2d_c01048{bottom:672.003701pt;}
.y2c_c01048{bottom:672.003851pt;}
.y1f_c01048{bottom:692.329376pt;}
.y20_c01048{bottom:692.329653pt;}
.y23_c01048{bottom:692.329877pt;}
.y24_c01048{bottom:692.330048pt;}
.y21_c01048{bottom:692.330091pt;}
.y22_c01048{bottom:692.330304pt;}
.y25_c01048{bottom:692.330325pt;}
.y26_c01048{bottom:692.330453pt;}
.y18_c01048{bottom:712.707456pt;}
.y17_c01048{bottom:712.707819pt;}
.y16_c01048{bottom:712.707979pt;}
.y19_c01048{bottom:712.708000pt;}
.y1c_c01048{bottom:712.708032pt;}
.y1a_c01048{bottom:712.708277pt;}
.y1d_c01048{bottom:712.708352pt;}
.y15_c01048{bottom:712.708448pt;}
.y1b_c01048{bottom:712.708501pt;}
.y1e_c01048{bottom:712.708523pt;}
.y14_c01048{bottom:731.803157pt;}
.y13_c01048{bottom:732.081579pt;}
.y12_c01048{bottom:732.369803pt;}
.y11_c01048{bottom:732.769376pt;}
.y10_c01048{bottom:733.108821pt;}
.yf_c01048{bottom:733.421493pt;}
.ye_c01048{bottom:733.515904pt;}
.yd_c01048{bottom:734.057248pt;}
.yc_c01048{bottom:734.160000pt;}
.yb_c01048{bottom:774.082667pt;}
.ya_c01048{bottom:809.168000pt;}
.h2_c01048{height:46.669490pt;}
.hc_c01048{height:55.068897pt;}
.h11_c01048{height:56.002268pt;}
.hf_c01048{height:56.935639pt;}
.h13_c01048{height:59.735752pt;}
.ha_c01048{height:60.668608pt;}
.h6_c01048{height:62.535334pt;}
.hb_c01048{height:62.535866pt;}
.h8_c01048{height:63.468698pt;}
.he_c01048{height:63.469237pt;}
.h14_c01048{height:64.400000pt;}
.h7_c01048{height:64.402061pt;}
.hd_c01048{height:64.402608pt;}
.h15_c01048{height:64.410432pt;}
.h5_c01048{height:65.335424pt;}
.h10_c01048{height:65.335979pt;}
.h9_c01048{height:66.268787pt;}
.h12_c01048{height:69.069464pt;}
.h4_c01048{height:123.200000pt;}
.h3_c01048{height:136.266667pt;}
.h1_c01048{height:893.333333pt;}
.h0_c01048{height:893.466667pt;}
.w0_c01048{width:635.733333pt;}
.w1_c01048{width:636.000000pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:112.457333pt;}
.x12_c01048{left:120.018667pt;}
.x53_c01048{left:123.966291pt;}
.x7a_c01048{left:131.038507pt;}
.x13_c01048{left:132.862667pt;}
.x5b_c01048{left:133.789880pt;}
.x2_c01048{left:134.781333pt;}
.x73_c01048{left:138.323299pt;}
.x6f_c01048{left:146.291844pt;}
.x8d_c01048{left:149.096000pt;}
.x3_c01048{left:151.588000pt;}
.x46_c01048{left:153.978283pt;}
.x23_c01048{left:156.479712pt;}
.x31_c01048{left:159.358635pt;}
.x76_c01048{left:161.159499pt;}
.x56_c01048{left:162.723784pt;}
.x7c_c01048{left:165.014423pt;}
.x42_c01048{left:167.450667pt;}
.xd_c01048{left:168.720000pt;}
.x62_c01048{left:170.790921pt;}
.x5c_c01048{left:172.480836pt;}
.x1b_c01048{left:173.519819pt;}
.x32_c01048{left:174.959637pt;}
.x68_c01048{left:176.765725pt;}
.x8e_c01048{left:183.646667pt;}
.x43_c01048{left:186.404000pt;}
.x87_c01048{left:188.324231pt;}
.x74_c01048{left:189.685497pt;}
.x1c_c01048{left:191.040939pt;}
.x63_c01048{left:193.756964pt;}
.x4_c01048{left:195.990667pt;}
.x24_c01048{left:197.761024pt;}
.x47_c01048{left:198.828949pt;}
.x14_c01048{left:200.530667pt;}
.xa_c01048{left:206.880000pt;}
.x83_c01048{left:208.192395pt;}
.x54_c01048{left:210.119409pt;}
.x15_c01048{left:212.332000pt;}
.x7d_c01048{left:213.296657pt;}
.x69_c01048{left:214.204056pt;}
.x36_c01048{left:215.862155pt;}
.x25_c01048{left:218.402347pt;}
.x5d_c01048{left:220.683528pt;}
.x1d_c01048{left:223.921707pt;}
.x3c_c01048{left:224.879157pt;}
.x57_c01048{left:226.086253pt;}
.x48_c01048{left:228.566283pt;}
.x7e_c01048{left:230.515168pt;}
.x5_c01048{left:231.761333pt;}
.x2a_c01048{left:236.163541pt;}
.x26_c01048{left:237.123541pt;}
.x7b_c01048{left:238.563219pt;}
.x4f_c01048{left:245.597627pt;}
.x64_c01048{left:247.034191pt;}
.x88_c01048{left:248.291691pt;}
.x70_c01048{left:250.024253pt;}
.x16_c01048{left:251.416000pt;}
.x49_c01048{left:253.298283pt;}
.x33_c01048{left:254.882080pt;}
.x44_c01048{left:257.657333pt;}
.x37_c01048{left:258.609813pt;}
.xe_c01048{left:260.640000pt;}
.x82_c01048{left:262.081928pt;}
.x1e_c01048{left:263.522912pt;}
.x2b_c01048{left:265.444085pt;}
.x84_c01048{left:266.512156pt;}
.x7f_c01048{left:267.737013pt;}
.x4a_c01048{left:272.742283pt;}
.x6_c01048{left:274.193333pt;}
.x50_c01048{left:278.266672pt;}
.x27_c01048{left:279.604928pt;}
.x71_c01048{left:281.421299pt;}
.x38_c01048{left:284.288277pt;}
.xf_c01048{left:286.800000pt;}
.x58_c01048{left:287.768579pt;}
.x75_c01048{left:289.427264pt;}
.x17_c01048{left:293.846667pt;}
.x77_c01048{left:296.698275pt;}
.x3d_c01048{left:297.841163pt;}
.x2c_c01048{left:302.885152pt;}
.x6a_c01048{left:304.241919pt;}
.x65_c01048{left:305.388619pt;}
.x3e_c01048{left:306.961749pt;}
.x5e_c01048{left:308.757152pt;}
.x7_c01048{left:309.693333pt;}
.x59_c01048{left:311.769189pt;}
.x28_c01048{left:314.405824pt;}
.x80_c01048{left:315.493915pt;}
.x4b_c01048{left:317.398283pt;}
.x85_c01048{left:319.121407pt;}
.x39_c01048{left:320.283989pt;}
.x4c_c01048{left:323.886283pt;}
.x2d_c01048{left:326.405323pt;}
.x51_c01048{left:328.930216pt;}
.x3f_c01048{left:330.001888pt;}
.x66_c01048{left:333.474529pt;}
.x78_c01048{left:335.933927pt;}
.x6b_c01048{left:337.861619pt;}
.x55_c01048{left:338.757093pt;}
.x34_c01048{left:342.245003pt;}
.x18_c01048{left:343.793333pt;}
.x5f_c01048{left:346.673453pt;}
.x1f_c01048{left:348.965717pt;}
.x2e_c01048{left:353.285707pt;}
.x8_c01048{left:355.541333pt;}
.x5a_c01048{left:359.051684pt;}
.x10_c01048{left:360.480000pt;}
.x3a_c01048{left:363.722304pt;}
.x9_c01048{left:366.104000pt;}
.x6c_c01048{left:374.543949pt;}
.x79_c01048{left:377.398888pt;}
.x29_c01048{left:378.727275pt;}
.x19_c01048{left:379.821333pt;}
.x86_c01048{left:381.038405pt;}
.x20_c01048{left:383.526592pt;}
.x45_c01048{left:384.900000pt;}
.x40_c01048{left:387.122880pt;}
.x60_c01048{left:388.690933pt;}
.x89_c01048{left:391.377073pt;}
.x6d_c01048{left:393.015781pt;}
.x67_c01048{left:396.344825pt;}
.x2f_c01048{left:398.167243pt;}
.x81_c01048{left:399.491825pt;}
.x21_c01048{left:402.487808pt;}
.x35_c01048{left:405.606389pt;}
.x4d_c01048{left:412.224949pt;}
.x1a_c01048{left:414.624000pt;}
.x6e_c01048{left:415.615577pt;}
.x8a_c01048{left:420.132809pt;}
.xb_c01048{left:428.160000pt;}
.x52_c01048{left:430.458637pt;}
.x30_c01048{left:435.848320pt;}
.x41_c01048{left:439.924928pt;}
.x8b_c01048{left:445.084581pt;}
.x61_c01048{left:446.099235pt;}
.x4e_c01048{left:450.880949pt;}
.x22_c01048{left:456.969963pt;}
.x3b_c01048{left:459.689536pt;}
.x8c_c01048{left:481.566924pt;}
.x72_c01048{left:485.531463pt;}
.x11_c01048{left:491.040000pt;}
.xc_c01048{left:517.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_c01049 {
    display:none;
  }
  .loading-indicator_c01049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01049 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01049 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01049" -> "#page-container .classname_c01049")
 */
.pf_c01049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01049 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01049 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01049 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01049 {overflow:visible;}
  }
}
.c_c01049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01049 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01049:after { /* webkit #35443 */
  content: '';
}
.t_c01049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01049 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01049 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01049 { /* info for Javascript */
  display:none;
}
.l_c01049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.000000;font-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_c01049{transform:matrix(0.010560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010560,0.000000,0.000000,0.250000,0,0);}
.m85_c01049{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mbd_c01049{transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014545,0.000000,0.000000,0.250000,0,0);}
.mc_c01049{transform:matrix(0.079497,-0.000715,0.002250,0.249990,0,0);-ms-transform:matrix(0.079497,-0.000715,0.002250,0.249990,0,0);-webkit-transform:matrix(0.079497,-0.000715,0.002250,0.249990,0,0);}
.m22_c01049{transform:matrix(0.109660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109660,0.000000,0.000000,0.250000,0,0);}
.m78_c01049{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);}
.m97_c01049{transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145380,0.000000,0.000000,0.250000,0,0);}
.m51_c01049{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);}
.m2b_c01049{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);}
.mc5_c01049{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);}
.ma1_c01049{transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157755,0.000000,0.000000,0.250000,0,0);}
.mb4_c01049{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);}
.m92_c01049{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);}
.m3d_c01049{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);}
.m90_c01049{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);}
.m84_c01049{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);}
.m58_c01049{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);}
.m5f_c01049{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);}
.m35_c01049{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);}
.m4f_c01049{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);}
.mb7_c01049{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m21_c01049{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);}
.m93_c01049{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);}
.m98_c01049{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);}
.m4b_c01049{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);}
.m3e_c01049{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);}
.m91_c01049{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_c01049{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);}
.m30_c01049{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);}
.mc3_c01049{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);}
.m8a_c01049{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);}
.mb3_c01049{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);}
.m6c_c01049{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);}
.m8d_c01049{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);}
.m72_c01049{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);}
.m6a_c01049{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);}
.ma3_c01049{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);}
.m24_c01049{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);}
.m9d_c01049{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);}
.m7e_c01049{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_c01049{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);}
.m36_c01049{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);}
.m87_c01049{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);}
.mb6_c01049{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);}
.mbc_c01049{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);}
.mc8_c01049{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);}
.mbe_c01049{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);}
.m49_c01049{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);}
.mb2_c01049{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_c01049{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);}
.m16_c01049{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);}
.m57_c01049{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);}
.mba_c01049{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);}
.m63_c01049{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);}
.mb8_c01049{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);}
.m6d_c01049{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);}
.m95_c01049{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);}
.ma0_c01049{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);}
.m89_c01049{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);}
.m56_c01049{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);}
.ma2_c01049{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);}
.mb1_c01049{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);}
.m68_c01049{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);}
.m34_c01049{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);}
.m3a_c01049{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);}
.m69_c01049{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);}
.m8b_c01049{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);}
.m9e_c01049{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);}
.m18_c01049{transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207035,0.000000,0.000000,0.250000,0,0);}
.mc6_c01049{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);}
.m76_c01049{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);}
.m39_c01049{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);}
.mbf_c01049{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.m2e_c01049{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);}
.m66_c01049{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);}
.m2d_c01049{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);}
.mbb_c01049{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);}
.m67_c01049{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);}
.m37_c01049{transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211110,0.000000,0.000000,0.250000,0,0);}
.m6e_c01049{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);}
.ma6_c01049{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);}
.m23_c01049{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);}
.m59_c01049{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);}
.m8f_c01049{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);}
.mc0_c01049{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);}
.m7a_c01049{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);}
.m10_c01049{transform:matrix(0.216931,-0.001952,0.002250,0.249990,0,0);-ms-transform:matrix(0.216931,-0.001952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216931,-0.001952,0.002250,0.249990,0,0);}
.m9b_c01049{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);}
.m74_c01049{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);}
.m7_c01049{transform:matrix(0.218686,-0.001968,0.002250,0.249990,0,0);-ms-transform:matrix(0.218686,-0.001968,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218686,-0.001968,0.002250,0.249990,0,0);}
.m3f_c01049{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);}
.m77_c01049{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);}
.mad_c01049{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);}
.m42_c01049{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);}
.m52_c01049{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);}
.m9f_c01049{transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);}
.m6f_c01049{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);}
.m9c_c01049{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.m75_c01049{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);}
.mb_c01049{transform:matrix(0.223771,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223771,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223771,-0.002014,0.002250,0.249990,0,0);}
.ma9_c01049{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);}
.m70_c01049{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);}
.m2c_c01049{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);}
.m31_c01049{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);}
.m4d_c01049{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);}
.m5d_c01049{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);}
.m7d_c01049{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);}
.m71_c01049{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);}
.m55_c01049{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);}
.m88_c01049{transform:matrix(0.226735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226735,0.000000,0.000000,0.250000,0,0);}
.m80_c01049{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);}
.ma_c01049{transform:matrix(0.229121,-0.002062,0.002250,0.249990,0,0);-ms-transform:matrix(0.229121,-0.002062,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229121,-0.002062,0.002250,0.249990,0,0);}
.mc2_c01049{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);}
.m3c_c01049{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);}
.m64_c01049{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);}
.ma4_c01049{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);}
.m7f_c01049{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);}
.m33_c01049{transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);}
.m2f_c01049{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);}
.m5e_c01049{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);}
.mc4_c01049{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);}
.m5b_c01049{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);}
.m9_c01049{transform:matrix(0.239640,-0.002157,0.002250,0.249990,0,0);-ms-transform:matrix(0.239640,-0.002157,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239640,-0.002157,0.002250,0.249990,0,0);}
.m86_c01049{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);}
.mc1_c01049{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m4c_c01049{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m8c_c01049{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);}
.m50_c01049{transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244745,0.000000,0.000000,0.250000,0,0);}
.m4e_c01049{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);}
.m25_c01049{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m46_c01049{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m62_c01049{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m81_c01049{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);}
.ma5_c01049{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);}
.mc9_c01049{transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251835,0.000000,0.000000,0.250000,0,0);}
.m82_c01049{transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);}
.m9a_c01049{transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);}
.m45_c01049{transform:matrix(0.259995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259995,0.000000,0.000000,0.250000,0,0);}
.m4a_c01049{transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);}
.mb0_c01049{transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);}
.m53_c01049{transform:matrix(0.260600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260600,0.000000,0.000000,0.250000,0,0);}
.m79_c01049{transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263115,0.000000,0.000000,0.250000,0,0);}
.m54_c01049{transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265845,0.000000,0.000000,0.250000,0,0);}
.m65_c01049{transform:matrix(0.266545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266545,0.000000,0.000000,0.250000,0,0);}
.m14_c01049{transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266715,0.000000,0.000000,0.250000,0,0);}
.me_c01049{transform:matrix(0.269644,-0.002427,0.002250,0.249990,0,0);-ms-transform:matrix(0.269644,-0.002427,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269644,-0.002427,0.002250,0.249990,0,0);}
.m6b_c01049{transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);}
.m5c_c01049{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m41_c01049{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);}
.m38_c01049{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m60_c01049{transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);}
.m3_c01049{transform:matrix(0.275724,-0.002482,0.002250,0.249990,0,0);-ms-transform:matrix(0.275724,-0.002482,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275724,-0.002482,0.002250,0.249990,0,0);}
.m4_c01049{transform:matrix(0.277224,-0.002495,0.002250,0.249990,0,0);-ms-transform:matrix(0.277224,-0.002495,0.002250,0.249990,0,0);-webkit-transform:matrix(0.277224,-0.002495,0.002250,0.249990,0,0);}
.m44_c01049{transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);}
.m61_c01049{transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282930,0.000000,0.000000,0.250000,0,0);}
.m6_c01049{transform:matrix(0.285088,-0.002566,0.002250,0.249990,0,0);-ms-transform:matrix(0.285088,-0.002566,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285088,-0.002566,0.002250,0.249990,0,0);}
.m12_c01049{transform:matrix(0.287128,-0.002584,0.002250,0.249990,0,0);-ms-transform:matrix(0.287128,-0.002584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287128,-0.002584,0.002250,0.249990,0,0);}
.m7c_c01049{transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292735,0.000000,0.000000,0.250000,0,0);}
.m3b_c01049{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m29_c01049{transform:matrix(0.297240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297240,0.000000,0.000000,0.250000,0,0);}
.m17_c01049{transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298555,0.000000,0.000000,0.250000,0,0);}
.m1a_c01049{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);}
.m47_c01049{transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);}
.m99_c01049{transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307060,0.000000,0.000000,0.250000,0,0);}
.m43_c01049{transform:matrix(0.312920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312920,0.000000,0.000000,0.250000,0,0);}
.m13_c01049{transform:matrix(0.319665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319665,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{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);}
.m8_c01049{transform:matrix(0.322527,-0.002903,0.002250,0.249990,0,0);-ms-transform:matrix(0.322527,-0.002903,0.002250,0.249990,0,0);-webkit-transform:matrix(0.322527,-0.002903,0.002250,0.249990,0,0);}
.m1c_c01049{transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322600,0.000000,0.000000,0.250000,0,0);}
.m5_c01049{transform:matrix(0.325377,-0.002928,0.002250,0.249990,0,0);-ms-transform:matrix(0.325377,-0.002928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.325377,-0.002928,0.002250,0.249990,0,0);}
.m32_c01049{transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339435,0.000000,0.000000,0.250000,0,0);}
.mac_c01049{transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345375,0.000000,0.000000,0.250000,0,0);}
.mb5_c01049{transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348045,0.000000,0.000000,0.250000,0,0);}
.m2_c01049{transform:matrix(0.351971,-0.003168,0.002250,0.249990,0,0);-ms-transform:matrix(0.351971,-0.003168,0.002250,0.249990,0,0);-webkit-transform:matrix(0.351971,-0.003168,0.002250,0.249990,0,0);}
.m96_c01049{transform:matrix(0.358825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358825,0.000000,0.000000,0.250000,0,0);}
.m48_c01049{transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359540,0.000000,0.000000,0.250000,0,0);}
.m26_c01049{transform:matrix(0.360735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360735,0.000000,0.000000,0.250000,0,0);}
.m40_c01049{transform:matrix(0.366240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366240,0.000000,0.000000,0.250000,0,0);}
.m2a_c01049{transform:matrix(0.370405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370405,0.000000,0.000000,0.250000,0,0);}
.m5a_c01049{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);}
.m0_c01049{transform:matrix(0.376460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376460,0.000000,0.000000,0.250000,0,0);}
.m73_c01049{transform:matrix(0.377715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377715,0.000000,0.000000,0.250000,0,0);}
.m11_c01049{transform:matrix(0.383484,-0.003451,0.002250,0.249990,0,0);-ms-transform:matrix(0.383484,-0.003451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.383484,-0.003451,0.002250,0.249990,0,0);}
.maf_c01049{transform:matrix(0.403895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403895,0.000000,0.000000,0.250000,0,0);}
.m15_c01049{transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408275,0.000000,0.000000,0.250000,0,0);}
.m20_c01049{transform:matrix(0.422545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422545,0.000000,0.000000,0.250000,0,0);}
.maa_c01049{transform:matrix(0.425735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425735,0.000000,0.000000,0.250000,0,0);}
.mf_c01049{transform:matrix(0.430613,-0.003876,0.002250,0.249990,0,0);-ms-transform:matrix(0.430613,-0.003876,0.002250,0.249990,0,0);-webkit-transform:matrix(0.430613,-0.003876,0.002250,0.249990,0,0);}
.m7b_c01049{transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);}
.mab_c01049{transform:matrix(0.479605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479605,0.000000,0.000000,0.250000,0,0);}
.m83_c01049{transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489270,0.000000,0.000000,0.250000,0,0);}
.m19_c01049{transform:matrix(0.529670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529670,0.000000,0.000000,0.250000,0,0);}
.md_c01049{transform:matrix(0.545683,-0.004911,0.002250,0.249990,0,0);-ms-transform:matrix(0.545683,-0.004911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.545683,-0.004911,0.002250,0.249990,0,0);}
.m1e_c01049{transform:matrix(0.557565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557565,0.000000,0.000000,0.250000,0,0);}
.m1d_c01049{transform:matrix(0.571505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571505,0.000000,0.000000,0.250000,0,0);}
.ma8_c01049{transform:matrix(0.585105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585105,0.000000,0.000000,0.250000,0,0);}
.m1b_c01049{transform:matrix(0.604210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604210,0.000000,0.000000,0.250000,0,0);}
.m28_c01049{transform:matrix(0.626335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626335,0.000000,0.000000,0.250000,0,0);}
.m1f_c01049{transform:matrix(0.640065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640065,0.000000,0.000000,0.250000,0,0);}
.m27_c01049{transform:matrix(0.683060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683060,0.000000,0.000000,0.250000,0,0);}
.mae_c01049{transform:matrix(0.927060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927060,0.000000,0.000000,0.250000,0,0);}
.ma7_c01049{transform:matrix(2.823005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.823005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.823005,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls0_c01049{letter-spacing:0.000000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:0.000000px;}
.fc0_c01049{color:transparent;}
.fse_c01049{font-size:22.050000px;}
.fs9_c01049{font-size:31.500000px;}
.fs10_c01049{font-size:47.250000px;}
.fsd_c01049{font-size:48.300000px;}
.fsf_c01049{font-size:52.500000px;}
.fs6_c01049{font-size:65.100000px;}
.fsa_c01049{font-size:67.200000px;}
.fs7_c01049{font-size:68.250000px;}
.fs5_c01049{font-size:69.300000px;}
.fsc_c01049{font-size:70.350000px;}
.fs8_c01049{font-size:71.400000px;}
.fs3_c01049{font-size:71.402892px;}
.fs4_c01049{font-size:72.450000px;}
.fs2_c01049{font-size:77.703147px;}
.fsb_c01049{font-size:80.850000px;}
.fs1_c01049{font-size:84.003402px;}
.fs0_c01049{font-size:121.800000px;}
.y0_c01049{bottom:0.000000px;}
.y2e_c01049{bottom:180.901500px;}
.y2f_c01049{bottom:181.035000px;}
.y30_c01049{bottom:181.569000px;}
.y34_c01049{bottom:181.710000px;}
.y31_c01049{bottom:181.965000px;}
.y32_c01049{bottom:182.421000px;}
.y33_c01049{bottom:183.274500px;}
.y2d_c01049{bottom:200.692500px;}
.y2c_c01049{bottom:225.045000px;}
.y2b_c01049{bottom:259.651500px;}
.y2a_c01049{bottom:272.862000px;}
.y29_c01049{bottom:295.659000px;}
.y28_c01049{bottom:318.040500px;}
.y20_c01049{bottom:362.071500px;}
.y21_c01049{bottom:362.554500px;}
.y22_c01049{bottom:363.054000px;}
.y23_c01049{bottom:363.313500px;}
.y24_c01049{bottom:363.813000px;}
.y25_c01049{bottom:364.021500px;}
.y26_c01049{bottom:364.845000px;}
.y27_c01049{bottom:365.119500px;}
.y1f_c01049{bottom:387.651000px;}
.y1e_c01049{bottom:408.979500px;}
.y1d_c01049{bottom:432.999000px;}
.y1c_c01049{bottom:455.056500px;}
.y1b_c01049{bottom:477.297000px;}
.y1a_c01049{bottom:486.874500px;}
.y19_c01049{bottom:500.107500px;}
.y18_c01049{bottom:523.041000px;}
.y17_c01049{bottom:544.581000px;}
.y16_c01049{bottom:567.483000px;}
.y15_c01049{bottom:589.542000px;}
.y14_c01049{bottom:612.478500px;}
.y13_c01049{bottom:727.095000px;}
.y12_c01049{bottom:749.787000px;}
.y11_c01049{bottom:772.112175px;}
.ye_c01049{bottom:772.112202px;}
.y10_c01049{bottom:772.112338px;}
.yd_c01049{bottom:772.112486px;}
.yf_c01049{bottom:772.112608px;}
.yc_c01049{bottom:772.112739px;}
.y6_c01049{bottom:793.450619px;}
.y7_c01049{bottom:793.886073px;}
.y8_c01049{bottom:794.360095px;}
.y9_c01049{bottom:794.608639px;}
.ya_c01049{bottom:794.931848px;}
.yb_c01049{bottom:795.706986px;}
.y2_c01049{bottom:816.988500px;}
.y3_c01049{bottom:817.592071px;}
.y4_c01049{bottom:818.021574px;}
.y5_c01049{bottom:818.179997px;}
.y1_c01049{bottom:884.914500px;}
.h10_c01049{height:22.050000px;}
.hb_c01049{height:31.500000px;}
.h12_c01049{height:47.250000px;}
.hf_c01049{height:48.300000px;}
.h11_c01049{height:52.500000px;}
.h8_c01049{height:65.100000px;}
.hc_c01049{height:67.200000px;}
.h9_c01049{height:68.250000px;}
.h7_c01049{height:69.300000px;}
.he_c01049{height:70.350000px;}
.ha_c01049{height:71.400000px;}
.h5_c01049{height:71.402892px;}
.h6_c01049{height:72.450000px;}
.h4_c01049{height:77.703147px;}
.hd_c01049{height:80.850000px;}
.h3_c01049{height:84.003402px;}
.h2_c01049{height:121.800000px;}
.h0_c01049{height:1008.450000px;}
.h1_c01049{height:1008.750000px;}
.w1_c01049{width:700.500000px;}
.w0_c01049{width:700.650000px;}
.x0_c01049{left:0.000000px;}
.x83_c01049{left:133.110000px;}
.x79_c01049{left:146.070000px;}
.x65_c01049{left:156.870000px;}
.x6e_c01049{left:158.760000px;}
.x7_c01049{left:160.831803px;}
.x46_c01049{left:164.700000px;}
.x3c_c01049{left:166.590000px;}
.x21_c01049{left:167.670000px;}
.x66_c01049{left:169.020000px;}
.x84_c01049{left:173.070000px;}
.x22_c01049{left:186.840000px;}
.x35_c01049{left:190.350000px;}
.x8_c01049{left:194.381101px;}
.x7a_c01049{left:196.290000px;}
.x5c_c01049{left:197.640000px;}
.x51_c01049{left:198.720000px;}
.x32_c01049{left:201.690000px;}
.x85_c01049{left:203.850000px;}
.x47_c01049{left:206.550000px;}
.x61_c01049{left:213.984000px;}
.x36_c01049{left:217.890000px;}
.x19_c01049{left:224.100000px;}
.x1_c01049{left:231.390000px;}
.x23_c01049{left:233.010000px;}
.x3d_c01049{left:234.360000px;}
.x3e_c01049{left:237.600000px;}
.x52_c01049{left:240.030000px;}
.x48_c01049{left:243.000000px;}
.x5d_c01049{left:248.400000px;}
.x9_c01049{left:249.997604px;}
.x1a_c01049{left:251.640000px;}
.x2a_c01049{left:252.720000px;}
.xc_c01049{left:258.656251px;}
.x6f_c01049{left:260.010000px;}
.x58_c01049{left:261.360000px;}
.x62_c01049{left:263.940000px;}
.x1b_c01049{left:272.430000px;}
.xa_c01049{left:274.908713px;}
.x53_c01049{left:281.880000px;}
.x86_c01049{left:283.500000px;}
.x67_c01049{left:285.660000px;}
.x2b_c01049{left:289.440000px;}
.x24_c01049{left:291.600000px;}
.x1c_c01049{left:293.490000px;}
.x4a_c01049{left:296.460000px;}
.x87_c01049{left:300.240000px;}
.x3f_c01049{left:301.860000px;}
.x7b_c01049{left:305.910000px;}
.xd_c01049{left:307.798734px;}
.x6c_c01049{left:309.420000px;}
.x4b_c01049{left:313.740000px;}
.x54_c01049{left:315.090000px;}
.x70_c01049{left:316.710000px;}
.x2c_c01049{left:317.790000px;}
.x1d_c01049{left:319.410000px;}
.x33_c01049{left:325.890000px;}
.x68_c01049{left:328.860000px;}
.x75_c01049{left:331.290000px;}
.x25_c01049{left:333.180000px;}
.xb_c01049{left:334.533066px;}
.x7c_c01049{left:336.150000px;}
.xe_c01049{left:337.769664px;}
.x40_c01049{left:340.740000px;}
.x26_c01049{left:343.440000px;}
.x3_c01049{left:346.288500px;}
.x37_c01049{left:348.300000px;}
.x4c_c01049{left:350.190000px;}
.x71_c01049{left:353.700000px;}
.x1e_c01049{left:357.480000px;}
.x41_c01049{left:359.910000px;}
.x6d_c01049{left:362.070000px;}
.xf_c01049{left:363.150216px;}
.x2d_c01049{left:368.280000px;}
.x55_c01049{left:373.410000px;}
.x13_c01049{left:375.030000px;}
.x10_c01049{left:379.621553px;}
.x38_c01049{left:380.700000px;}
.x2_c01049{left:382.590000px;}
.x78_c01049{left:384.210000px;}
.x5e_c01049{left:389.070000px;}
.x69_c01049{left:390.420000px;}
.x11_c01049{left:393.122646px;}
.x72_c01049{left:396.090000px;}
.x56_c01049{left:398.250000px;}
.x59_c01049{left:402.840000px;}
.x42_c01049{left:405.000000px;}
.x27_c01049{left:411.750000px;}
.x4_c01049{left:413.352000px;}
.x2e_c01049{left:414.450000px;}
.x4d_c01049{left:416.880000px;}
.x12_c01049{left:418.773225px;}
.x43_c01049{left:422.280000px;}
.x39_c01049{left:423.900000px;}
.x73_c01049{left:426.330000px;}
.x34_c01049{left:427.680000px;}
.x49_c01049{left:429.030000px;}
.x14_c01049{left:430.920000px;}
.x76_c01049{left:432.810000px;}
.x5a_c01049{left:433.890000px;}
.x15_c01049{left:436.860000px;}
.x57_c01049{left:438.210000px;}
.x63_c01049{left:442.974000px;}
.x1f_c01049{left:447.390000px;}
.x7d_c01049{left:449.550000px;}
.x3a_c01049{left:450.630000px;}
.x5f_c01049{left:456.300000px;}
.x16_c01049{left:458.730000px;}
.x5_c01049{left:461.074500px;}
.x2f_c01049{left:463.050000px;}
.x4e_c01049{left:467.640000px;}
.x20_c01049{left:469.260000px;}
.x64_c01049{left:470.476500px;}
.x28_c01049{left:476.820000px;}
.x6_c01049{left:478.677000px;}
.x30_c01049{left:484.110000px;}
.x44_c01049{left:489.510000px;}
.x81_c01049{left:491.011500px;}
.x4f_c01049{left:497.610000px;}
.x5b_c01049{left:499.500000px;}
.x17_c01049{left:501.930000px;}
.x7e_c01049{left:506.790000px;}
.x6a_c01049{left:508.410000px;}
.x3b_c01049{left:511.380000px;}
.x45_c01049{left:514.890000px;}
.x18_c01049{left:516.780000px;}
.x60_c01049{left:522.990000px;}
.x31_c01049{left:526.500000px;}
.x50_c01049{left:527.850000px;}
.x29_c01049{left:528.930000px;}
.x6b_c01049{left:541.080000px;}
.x74_c01049{left:550.260000px;}
.x82_c01049{left:556.617000px;}
.x7f_c01049{left:566.460000px;}
.x77_c01049{left:580.230000px;}
.x80_c01049{left:599.130000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ws0_c01049{word-spacing:0.000000pt;}
.fse_c01049{font-size:19.600000pt;}
.fs9_c01049{font-size:28.000000pt;}
.fs10_c01049{font-size:42.000000pt;}
.fsd_c01049{font-size:42.933333pt;}
.fsf_c01049{font-size:46.666667pt;}
.fs6_c01049{font-size:57.866667pt;}
.fsa_c01049{font-size:59.733333pt;}
.fs7_c01049{font-size:60.666667pt;}
.fs5_c01049{font-size:61.600000pt;}
.fsc_c01049{font-size:62.533333pt;}
.fs8_c01049{font-size:63.466667pt;}
.fs3_c01049{font-size:63.469237pt;}
.fs4_c01049{font-size:64.400000pt;}
.fs2_c01049{font-size:69.069464pt;}
.fsb_c01049{font-size:71.866667pt;}
.fs1_c01049{font-size:74.669691pt;}
.fs0_c01049{font-size:108.266667pt;}
.y0_c01049{bottom:0.000000pt;}
.y2e_c01049{bottom:160.801333pt;}
.y2f_c01049{bottom:160.920000pt;}
.y30_c01049{bottom:161.394667pt;}
.y34_c01049{bottom:161.520000pt;}
.y31_c01049{bottom:161.746667pt;}
.y32_c01049{bottom:162.152000pt;}
.y33_c01049{bottom:162.910667pt;}
.y2d_c01049{bottom:178.393333pt;}
.y2c_c01049{bottom:200.040000pt;}
.y2b_c01049{bottom:230.801333pt;}
.y2a_c01049{bottom:242.544000pt;}
.y29_c01049{bottom:262.808000pt;}
.y28_c01049{bottom:282.702667pt;}
.y20_c01049{bottom:321.841333pt;}
.y21_c01049{bottom:322.270667pt;}
.y22_c01049{bottom:322.714667pt;}
.y23_c01049{bottom:322.945333pt;}
.y24_c01049{bottom:323.389333pt;}
.y25_c01049{bottom:323.574667pt;}
.y26_c01049{bottom:324.306667pt;}
.y27_c01049{bottom:324.550667pt;}
.y1f_c01049{bottom:344.578667pt;}
.y1e_c01049{bottom:363.537333pt;}
.y1d_c01049{bottom:384.888000pt;}
.y1c_c01049{bottom:404.494667pt;}
.y1b_c01049{bottom:424.264000pt;}
.y1a_c01049{bottom:432.777333pt;}
.y19_c01049{bottom:444.540000pt;}
.y18_c01049{bottom:464.925333pt;}
.y17_c01049{bottom:484.072000pt;}
.y16_c01049{bottom:504.429333pt;}
.y15_c01049{bottom:524.037333pt;}
.y14_c01049{bottom:544.425333pt;}
.y13_c01049{bottom:646.306667pt;}
.y12_c01049{bottom:666.477333pt;}
.y11_c01049{bottom:686.321933pt;}
.ye_c01049{bottom:686.321957pt;}
.y10_c01049{bottom:686.322079pt;}
.yd_c01049{bottom:686.322209pt;}
.yf_c01049{bottom:686.322319pt;}
.yc_c01049{bottom:686.322435pt;}
.y6_c01049{bottom:705.289439pt;}
.y7_c01049{bottom:705.676509pt;}
.y8_c01049{bottom:706.097863pt;}
.y9_c01049{bottom:706.318791pt;}
.ya_c01049{bottom:706.606087pt;}
.yb_c01049{bottom:707.295099pt;}
.y2_c01049{bottom:726.212000pt;}
.y3_c01049{bottom:726.748508pt;}
.y4_c01049{bottom:727.130288pt;}
.y5_c01049{bottom:727.271108pt;}
.y1_c01049{bottom:786.590667pt;}
.h10_c01049{height:19.600000pt;}
.hb_c01049{height:28.000000pt;}
.h12_c01049{height:42.000000pt;}
.hf_c01049{height:42.933333pt;}
.h11_c01049{height:46.666667pt;}
.h8_c01049{height:57.866667pt;}
.hc_c01049{height:59.733333pt;}
.h9_c01049{height:60.666667pt;}
.h7_c01049{height:61.600000pt;}
.he_c01049{height:62.533333pt;}
.ha_c01049{height:63.466667pt;}
.h5_c01049{height:63.469237pt;}
.h6_c01049{height:64.400000pt;}
.h4_c01049{height:69.069464pt;}
.hd_c01049{height:71.866667pt;}
.h3_c01049{height:74.669691pt;}
.h2_c01049{height:108.266667pt;}
.h0_c01049{height:896.400000pt;}
.h1_c01049{height:896.666667pt;}
.w1_c01049{width:622.666667pt;}
.w0_c01049{width:622.800000pt;}
.x0_c01049{left:0.000000pt;}
.x83_c01049{left:118.320000pt;}
.x79_c01049{left:129.840000pt;}
.x65_c01049{left:139.440000pt;}
.x6e_c01049{left:141.120000pt;}
.x7_c01049{left:142.961603pt;}
.x46_c01049{left:146.400000pt;}
.x3c_c01049{left:148.080000pt;}
.x21_c01049{left:149.040000pt;}
.x66_c01049{left:150.240000pt;}
.x84_c01049{left:153.840000pt;}
.x22_c01049{left:166.080000pt;}
.x35_c01049{left:169.200000pt;}
.x8_c01049{left:172.783201pt;}
.x7a_c01049{left:174.480000pt;}
.x5c_c01049{left:175.680000pt;}
.x51_c01049{left:176.640000pt;}
.x32_c01049{left:179.280000pt;}
.x85_c01049{left:181.200000pt;}
.x47_c01049{left:183.600000pt;}
.x61_c01049{left:190.208000pt;}
.x36_c01049{left:193.680000pt;}
.x19_c01049{left:199.200000pt;}
.x1_c01049{left:205.680000pt;}
.x23_c01049{left:207.120000pt;}
.x3d_c01049{left:208.320000pt;}
.x3e_c01049{left:211.200000pt;}
.x52_c01049{left:213.360000pt;}
.x48_c01049{left:216.000000pt;}
.x5d_c01049{left:220.800000pt;}
.x9_c01049{left:222.220092pt;}
.x1a_c01049{left:223.680000pt;}
.x2a_c01049{left:224.640000pt;}
.xc_c01049{left:229.916668pt;}
.x6f_c01049{left:231.120000pt;}
.x58_c01049{left:232.320000pt;}
.x62_c01049{left:234.613333pt;}
.x1b_c01049{left:242.160000pt;}
.xa_c01049{left:244.363300pt;}
.x53_c01049{left:250.560000pt;}
.x86_c01049{left:252.000000pt;}
.x67_c01049{left:253.920000pt;}
.x2b_c01049{left:257.280000pt;}
.x24_c01049{left:259.200000pt;}
.x1c_c01049{left:260.880000pt;}
.x4a_c01049{left:263.520000pt;}
.x87_c01049{left:266.880000pt;}
.x3f_c01049{left:268.320000pt;}
.x7b_c01049{left:271.920000pt;}
.xd_c01049{left:273.598875pt;}
.x6c_c01049{left:275.040000pt;}
.x4b_c01049{left:278.880000pt;}
.x54_c01049{left:280.080000pt;}
.x70_c01049{left:281.520000pt;}
.x2c_c01049{left:282.480000pt;}
.x1d_c01049{left:283.920000pt;}
.x33_c01049{left:289.680000pt;}
.x68_c01049{left:292.320000pt;}
.x75_c01049{left:294.480000pt;}
.x25_c01049{left:296.160000pt;}
.xb_c01049{left:297.362725pt;}
.x7c_c01049{left:298.800000pt;}
.xe_c01049{left:300.239701pt;}
.x40_c01049{left:302.880000pt;}
.x26_c01049{left:305.280000pt;}
.x3_c01049{left:307.812000pt;}
.x37_c01049{left:309.600000pt;}
.x4c_c01049{left:311.280000pt;}
.x71_c01049{left:314.400000pt;}
.x1e_c01049{left:317.760000pt;}
.x41_c01049{left:319.920000pt;}
.x6d_c01049{left:321.840000pt;}
.xf_c01049{left:322.800192pt;}
.x2d_c01049{left:327.360000pt;}
.x55_c01049{left:331.920000pt;}
.x13_c01049{left:333.360000pt;}
.x10_c01049{left:337.441380pt;}
.x38_c01049{left:338.400000pt;}
.x2_c01049{left:340.080000pt;}
.x78_c01049{left:341.520000pt;}
.x5e_c01049{left:345.840000pt;}
.x69_c01049{left:347.040000pt;}
.x11_c01049{left:349.442352pt;}
.x72_c01049{left:352.080000pt;}
.x56_c01049{left:354.000000pt;}
.x59_c01049{left:358.080000pt;}
.x42_c01049{left:360.000000pt;}
.x27_c01049{left:366.000000pt;}
.x4_c01049{left:367.424000pt;}
.x2e_c01049{left:368.400000pt;}
.x4d_c01049{left:370.560000pt;}
.x12_c01049{left:372.242867pt;}
.x43_c01049{left:375.360000pt;}
.x39_c01049{left:376.800000pt;}
.x73_c01049{left:378.960000pt;}
.x34_c01049{left:380.160000pt;}
.x49_c01049{left:381.360000pt;}
.x14_c01049{left:383.040000pt;}
.x76_c01049{left:384.720000pt;}
.x5a_c01049{left:385.680000pt;}
.x15_c01049{left:388.320000pt;}
.x57_c01049{left:389.520000pt;}
.x63_c01049{left:393.754667pt;}
.x1f_c01049{left:397.680000pt;}
.x7d_c01049{left:399.600000pt;}
.x3a_c01049{left:400.560000pt;}
.x5f_c01049{left:405.600000pt;}
.x16_c01049{left:407.760000pt;}
.x5_c01049{left:409.844000pt;}
.x2f_c01049{left:411.600000pt;}
.x4e_c01049{left:415.680000pt;}
.x20_c01049{left:417.120000pt;}
.x64_c01049{left:418.201333pt;}
.x28_c01049{left:423.840000pt;}
.x6_c01049{left:425.490667pt;}
.x30_c01049{left:430.320000pt;}
.x44_c01049{left:435.120000pt;}
.x81_c01049{left:436.454667pt;}
.x4f_c01049{left:442.320000pt;}
.x5b_c01049{left:444.000000pt;}
.x17_c01049{left:446.160000pt;}
.x7e_c01049{left:450.480000pt;}
.x6a_c01049{left:451.920000pt;}
.x3b_c01049{left:454.560000pt;}
.x45_c01049{left:457.680000pt;}
.x18_c01049{left:459.360000pt;}
.x60_c01049{left:464.880000pt;}
.x31_c01049{left:468.000000pt;}
.x50_c01049{left:469.200000pt;}
.x29_c01049{left:470.160000pt;}
.x6b_c01049{left:480.960000pt;}
.x74_c01049{left:489.120000pt;}
.x82_c01049{left:494.770667pt;}
.x7f_c01049{left:503.520000pt;}
.x77_c01049{left:515.760000pt;}
.x80_c01049{left:532.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_c01050 {
    display:none;
  }
  .loading-indicator_c01050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01050 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01050 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01050" -> "#page-container .classname_c01050")
 */
.pf_c01050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01050 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01050 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01050 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01050 {overflow:visible;}
  }
}
.c_c01050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01050 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01050:after { /* webkit #35443 */
  content: '';
}
.t_c01050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01050 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01050 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01050 { /* info for Javascript */
  display:none;
}
.l_c01050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbb_c01050{transform:matrix(0.008709,-0.000122,0.003500,0.249976,0,0);-ms-transform:matrix(0.008709,-0.000122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.008709,-0.000122,0.003500,0.249976,0,0);}
.m58_c01050{transform:matrix(0.012699,-0.000140,0.002750,0.249985,0,0);-ms-transform:matrix(0.012699,-0.000140,0.002750,0.249985,0,0);-webkit-transform:matrix(0.012699,-0.000140,0.002750,0.249985,0,0);}
.m32_c01050{transform:matrix(0.029471,-0.000501,0.004249,0.249964,0,0);-ms-transform:matrix(0.029471,-0.000501,0.004249,0.249964,0,0);-webkit-transform:matrix(0.029471,-0.000501,0.004249,0.249964,0,0);}
.m29_c01050{transform:matrix(0.066825,-0.001136,0.004249,0.249964,0,0);-ms-transform:matrix(0.066825,-0.001136,0.004249,0.249964,0,0);-webkit-transform:matrix(0.066825,-0.001136,0.004249,0.249964,0,0);}
.m8c_c01050{transform:matrix(0.104105,-0.001457,0.003500,0.249976,0,0);-ms-transform:matrix(0.104105,-0.001457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.104105,-0.001457,0.003500,0.249976,0,0);}
.m6e_c01050{transform:matrix(0.107523,-0.001183,0.002750,0.249985,0,0);-ms-transform:matrix(0.107523,-0.001183,0.002750,0.249985,0,0);-webkit-transform:matrix(0.107523,-0.001183,0.002750,0.249985,0,0);}
.m50_c01050{transform:matrix(0.133427,-0.001468,0.002750,0.249985,0,0);-ms-transform:matrix(0.133427,-0.001468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.133427,-0.001468,0.002750,0.249985,0,0);}
.m7c_c01050{transform:matrix(0.145989,-0.002482,0.004249,0.249964,0,0);-ms-transform:matrix(0.145989,-0.002482,0.004249,0.249964,0,0);-webkit-transform:matrix(0.145989,-0.002482,0.004249,0.249964,0,0);}
.mb5_c01050{transform:matrix(0.148060,-0.002073,0.003500,0.249976,0,0);-ms-transform:matrix(0.148060,-0.002073,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148060,-0.002073,0.003500,0.249976,0,0);}
.m7d_c01050{transform:matrix(0.151033,-0.002568,0.004249,0.249964,0,0);-ms-transform:matrix(0.151033,-0.002568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151033,-0.002568,0.004249,0.249964,0,0);}
.m2d_c01050{transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);-ms-transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151578,-0.002577,0.004249,0.249964,0,0);}
.m54_c01050{transform:matrix(0.152151,-0.001674,0.002750,0.249985,0,0);-ms-transform:matrix(0.152151,-0.001674,0.002750,0.249985,0,0);-webkit-transform:matrix(0.152151,-0.001674,0.002750,0.249985,0,0);}
.m35_c01050{transform:matrix(0.155987,-0.002652,0.004249,0.249964,0,0);-ms-transform:matrix(0.155987,-0.002652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155987,-0.002652,0.004249,0.249964,0,0);}
.m2c_c01050{transform:matrix(0.158292,-0.002691,0.004249,0.249964,0,0);-ms-transform:matrix(0.158292,-0.002691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158292,-0.002691,0.004249,0.249964,0,0);}
.m39_c01050{transform:matrix(0.158537,-0.002695,0.004249,0.249964,0,0);-ms-transform:matrix(0.158537,-0.002695,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158537,-0.002695,0.004249,0.249964,0,0);}
.m15_c01050{transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);-ms-transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163166,-0.002774,0.004249,0.249964,0,0);}
.m26_c01050{transform:matrix(0.164011,-0.002788,0.004249,0.249964,0,0);-ms-transform:matrix(0.164011,-0.002788,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164011,-0.002788,0.004249,0.249964,0,0);}
.m94_c01050{transform:matrix(0.164084,-0.002297,0.003500,0.249976,0,0);-ms-transform:matrix(0.164084,-0.002297,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164084,-0.002297,0.003500,0.249976,0,0);}
.m1e_c01050{transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);-ms-transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);}
.mc1_c01050{transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);-ms-transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166624,-0.002333,0.003500,0.249976,0,0);}
.m99_c01050{transform:matrix(0.169698,-0.002376,0.003500,0.249976,0,0);-ms-transform:matrix(0.169698,-0.002376,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169698,-0.002376,0.003500,0.249976,0,0);}
.m30_c01050{transform:matrix(0.171750,-0.002920,0.004249,0.249964,0,0);-ms-transform:matrix(0.171750,-0.002920,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171750,-0.002920,0.004249,0.249964,0,0);}
.m17_c01050{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);}
.m41_c01050{transform:matrix(0.173745,-0.002954,0.004249,0.249964,0,0);-ms-transform:matrix(0.173745,-0.002954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173745,-0.002954,0.004249,0.249964,0,0);}
.m3e_c01050{transform:matrix(0.174120,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174120,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174120,-0.002960,0.004249,0.249964,0,0);}
.m2f_c01050{transform:matrix(0.174695,-0.002970,0.004249,0.249964,0,0);-ms-transform:matrix(0.174695,-0.002970,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174695,-0.002970,0.004249,0.249964,0,0);}
.m42_c01050{transform:matrix(0.175015,-0.002975,0.004249,0.249964,0,0);-ms-transform:matrix(0.175015,-0.002975,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175015,-0.002975,0.004249,0.249964,0,0);}
.m8_c01050{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);}
.md0_c01050{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);}
.ma2_c01050{transform:matrix(0.176338,-0.002469,0.003500,0.249976,0,0);-ms-transform:matrix(0.176338,-0.002469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176338,-0.002469,0.003500,0.249976,0,0);}
.m23_c01050{transform:matrix(0.176949,-0.003008,0.004249,0.249964,0,0);-ms-transform:matrix(0.176949,-0.003008,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176949,-0.003008,0.004249,0.249964,0,0);}
.m1b_c01050{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);}
.m2b_c01050{transform:matrix(0.179434,-0.003050,0.004249,0.249964,0,0);-ms-transform:matrix(0.179434,-0.003050,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179434,-0.003050,0.004249,0.249964,0,0);}
.m62_c01050{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);}
.m6f_c01050{transform:matrix(0.180004,-0.003060,0.004249,0.249964,0,0);-ms-transform:matrix(0.180004,-0.003060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180004,-0.003060,0.004249,0.249964,0,0);}
.m5f_c01050{transform:matrix(0.180199,-0.001982,0.002750,0.249985,0,0);-ms-transform:matrix(0.180199,-0.001982,0.002750,0.249985,0,0);-webkit-transform:matrix(0.180199,-0.001982,0.002750,0.249985,0,0);}
.m37_c01050{transform:matrix(0.181384,-0.003084,0.004249,0.249964,0,0);-ms-transform:matrix(0.181384,-0.003084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181384,-0.003084,0.004249,0.249964,0,0);}
.m2e_c01050{transform:matrix(0.181469,-0.003085,0.004249,0.249964,0,0);-ms-transform:matrix(0.181469,-0.003085,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181469,-0.003085,0.004249,0.249964,0,0);}
.mbe_c01050{transform:matrix(0.181697,-0.002544,0.003500,0.249976,0,0);-ms-transform:matrix(0.181697,-0.002544,0.003500,0.249976,0,0);-webkit-transform:matrix(0.181697,-0.002544,0.003500,0.249976,0,0);}
.m1a_c01050{transform:matrix(0.182904,-0.003109,0.004249,0.249964,0,0);-ms-transform:matrix(0.182904,-0.003109,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182904,-0.003109,0.004249,0.249964,0,0);}
.m18_c01050{transform:matrix(0.183633,-0.003122,0.004249,0.249964,0,0);-ms-transform:matrix(0.183633,-0.003122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183633,-0.003122,0.004249,0.249964,0,0);}
.ma7_c01050{transform:matrix(0.184497,-0.002583,0.003500,0.249976,0,0);-ms-transform:matrix(0.184497,-0.002583,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184497,-0.002583,0.003500,0.249976,0,0);}
.mac_c01050{transform:matrix(0.184832,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184832,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184832,-0.002588,0.003500,0.249976,0,0);}
.m10_c01050{transform:matrix(0.185498,-0.003153,0.004249,0.249964,0,0);-ms-transform:matrix(0.185498,-0.003153,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185498,-0.003153,0.004249,0.249964,0,0);}
.m9a_c01050{transform:matrix(0.186207,-0.002607,0.003500,0.249976,0,0);-ms-transform:matrix(0.186207,-0.002607,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186207,-0.002607,0.003500,0.249976,0,0);}
.m6a_c01050{transform:matrix(0.186389,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186389,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186389,-0.002050,0.002750,0.249985,0,0);}
.m16_c01050{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);}
.m91_c01050{transform:matrix(0.187377,-0.002623,0.003500,0.249976,0,0);-ms-transform:matrix(0.187377,-0.002623,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187377,-0.002623,0.003500,0.249976,0,0);}
.m19_c01050{transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);-ms-transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187643,-0.003190,0.004249,0.249964,0,0);}
.m5b_c01050{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);}
.m95_c01050{transform:matrix(0.188092,-0.002633,0.003500,0.249976,0,0);-ms-transform:matrix(0.188092,-0.002633,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188092,-0.002633,0.003500,0.249976,0,0);}
.m9d_c01050{transform:matrix(0.188202,-0.002635,0.003500,0.249976,0,0);-ms-transform:matrix(0.188202,-0.002635,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188202,-0.002635,0.003500,0.249976,0,0);}
.m68_c01050{transform:matrix(0.188649,-0.002075,0.002750,0.249985,0,0);-ms-transform:matrix(0.188649,-0.002075,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188649,-0.002075,0.002750,0.249985,0,0);}
.m93_c01050{transform:matrix(0.189101,-0.002647,0.003500,0.249976,0,0);-ms-transform:matrix(0.189101,-0.002647,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189101,-0.002647,0.003500,0.249976,0,0);}
.m66_c01050{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);}
.m81_c01050{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);}
.m44_c01050{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);}
.m1d_c01050{transform:matrix(0.189683,-0.003225,0.004249,0.249964,0,0);-ms-transform:matrix(0.189683,-0.003225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189683,-0.003225,0.004249,0.249964,0,0);}
.mcd_c01050{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);}
.m76_c01050{transform:matrix(0.190572,-0.003240,0.004249,0.249964,0,0);-ms-transform:matrix(0.190572,-0.003240,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190572,-0.003240,0.004249,0.249964,0,0);}
.m28_c01050{transform:matrix(0.190792,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190792,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190792,-0.003243,0.004249,0.249964,0,0);}
.m6d_c01050{transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-ms-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191248,-0.002104,0.002750,0.249985,0,0);}
.mc0_c01050{transform:matrix(0.192826,-0.002700,0.003500,0.249976,0,0);-ms-transform:matrix(0.192826,-0.002700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192826,-0.002700,0.003500,0.249976,0,0);}
.m3b_c01050{transform:matrix(0.193922,-0.003297,0.004249,0.249964,0,0);-ms-transform:matrix(0.193922,-0.003297,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193922,-0.003297,0.004249,0.249964,0,0);}
.maa_c01050{transform:matrix(0.194026,-0.002716,0.003500,0.249976,0,0);-ms-transform:matrix(0.194026,-0.002716,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194026,-0.002716,0.003500,0.249976,0,0);}
.m92_c01050{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);}
.m43_c01050{transform:matrix(0.194557,-0.003307,0.004249,0.249964,0,0);-ms-transform:matrix(0.194557,-0.003307,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194557,-0.003307,0.004249,0.249964,0,0);}
.m38_c01050{transform:matrix(0.195252,-0.003319,0.004249,0.249964,0,0);-ms-transform:matrix(0.195252,-0.003319,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195252,-0.003319,0.004249,0.249964,0,0);}
.m57_c01050{transform:matrix(0.196123,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196123,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196123,-0.002157,0.002750,0.249985,0,0);}
.m5e_c01050{transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);}
.m83_c01050{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);}
.mc9_c01050{transform:matrix(0.197481,-0.002765,0.003500,0.249976,0,0);-ms-transform:matrix(0.197481,-0.002765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197481,-0.002765,0.003500,0.249976,0,0);}
.ma6_c01050{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);}
.m13_c01050{transform:matrix(0.198406,-0.003373,0.004249,0.249964,0,0);-ms-transform:matrix(0.198406,-0.003373,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198406,-0.003373,0.004249,0.249964,0,0);}
.m1c_c01050{transform:matrix(0.198491,-0.003374,0.004249,0.249964,0,0);-ms-transform:matrix(0.198491,-0.003374,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198491,-0.003374,0.004249,0.249964,0,0);}
.m20_c01050{transform:matrix(0.198536,-0.003375,0.004249,0.249964,0,0);-ms-transform:matrix(0.198536,-0.003375,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198536,-0.003375,0.004249,0.249964,0,0);}
.m63_c01050{transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);-ms-transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198548,-0.002184,0.002750,0.249985,0,0);}
.m69_c01050{transform:matrix(0.198783,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198783,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198783,-0.002187,0.002750,0.249985,0,0);}
.m3d_c01050{transform:matrix(0.199751,-0.003396,0.004249,0.249964,0,0);-ms-transform:matrix(0.199751,-0.003396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199751,-0.003396,0.004249,0.249964,0,0);}
.ma5_c01050{transform:matrix(0.199955,-0.002799,0.003500,0.249976,0,0);-ms-transform:matrix(0.199955,-0.002799,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199955,-0.002799,0.003500,0.249976,0,0);}
.m9c_c01050{transform:matrix(0.200460,-0.002806,0.003500,0.249976,0,0);-ms-transform:matrix(0.200460,-0.002806,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200460,-0.002806,0.003500,0.249976,0,0);}
.mb7_c01050{transform:matrix(0.200755,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200755,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200755,-0.002811,0.003500,0.249976,0,0);}
.m21_c01050{transform:matrix(0.200816,-0.003414,0.004249,0.249964,0,0);-ms-transform:matrix(0.200816,-0.003414,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200816,-0.003414,0.004249,0.249964,0,0);}
.m1f_c01050{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);}
.mb2_c01050{transform:matrix(0.201465,-0.002821,0.003500,0.249976,0,0);-ms-transform:matrix(0.201465,-0.002821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201465,-0.002821,0.003500,0.249976,0,0);}
.mad_c01050{transform:matrix(0.201700,-0.002824,0.003500,0.249976,0,0);-ms-transform:matrix(0.201700,-0.002824,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201700,-0.002824,0.003500,0.249976,0,0);}
.mbf_c01050{transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);-ms-transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201815,-0.002825,0.003500,0.249976,0,0);}
.me_c01050{transform:matrix(0.202016,-0.003434,0.004249,0.249964,0,0);-ms-transform:matrix(0.202016,-0.003434,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202016,-0.003434,0.004249,0.249964,0,0);}
.mab_c01050{transform:matrix(0.202675,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202675,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202675,-0.002837,0.003500,0.249976,0,0);}
.m78_c01050{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);}
.m6b_c01050{transform:matrix(0.203603,-0.002240,0.002750,0.249985,0,0);-ms-transform:matrix(0.203603,-0.002240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203603,-0.002240,0.002750,0.249985,0,0);}
.m36_c01050{transform:matrix(0.204875,-0.003483,0.004249,0.249964,0,0);-ms-transform:matrix(0.204875,-0.003483,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204875,-0.003483,0.004249,0.249964,0,0);}
.m89_c01050{transform:matrix(0.205140,-0.002872,0.003500,0.249976,0,0);-ms-transform:matrix(0.205140,-0.002872,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205140,-0.002872,0.003500,0.249976,0,0);}
.ma3_c01050{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);}
.mb6_c01050{transform:matrix(0.207385,-0.002903,0.003500,0.249976,0,0);-ms-transform:matrix(0.207385,-0.002903,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207385,-0.002903,0.003500,0.249976,0,0);}
.m5d_c01050{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);}
.mba_c01050{transform:matrix(0.207880,-0.002910,0.003500,0.249976,0,0);-ms-transform:matrix(0.207880,-0.002910,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207880,-0.002910,0.003500,0.249976,0,0);}
.m9b_c01050{transform:matrix(0.208070,-0.002913,0.003500,0.249976,0,0);-ms-transform:matrix(0.208070,-0.002913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208070,-0.002913,0.003500,0.249976,0,0);}
.m7e_c01050{transform:matrix(0.209115,-0.003555,0.004249,0.249964,0,0);-ms-transform:matrix(0.209115,-0.003555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209115,-0.003555,0.004249,0.249964,0,0);}
.m70_c01050{transform:matrix(0.211144,-0.003589,0.004249,0.249964,0,0);-ms-transform:matrix(0.211144,-0.003589,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211144,-0.003589,0.004249,0.249964,0,0);}
.m5a_c01050{transform:matrix(0.211842,-0.002330,0.002750,0.249985,0,0);-ms-transform:matrix(0.211842,-0.002330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211842,-0.002330,0.002750,0.249985,0,0);}
.m24_c01050{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);}
.ma8_c01050{transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);-ms-transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213364,-0.002987,0.003500,0.249976,0,0);}
.m75_c01050{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);}
.m9_c01050{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);}
.mb9_c01050{transform:matrix(0.214369,-0.003001,0.003500,0.249976,0,0);-ms-transform:matrix(0.214369,-0.003001,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214369,-0.003001,0.003500,0.249976,0,0);}
.mf_c01050{transform:matrix(0.215459,-0.003663,0.004249,0.249964,0,0);-ms-transform:matrix(0.215459,-0.003663,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215459,-0.003663,0.004249,0.249964,0,0);}
.m9e_c01050{transform:matrix(0.216584,-0.003032,0.003500,0.249976,0,0);-ms-transform:matrix(0.216584,-0.003032,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216584,-0.003032,0.003500,0.249976,0,0);}
.m14_c01050{transform:matrix(0.218338,-0.003712,0.004249,0.249964,0,0);-ms-transform:matrix(0.218338,-0.003712,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218338,-0.003712,0.004249,0.249964,0,0);}
.mb8_c01050{transform:matrix(0.219389,-0.003071,0.003500,0.249976,0,0);-ms-transform:matrix(0.219389,-0.003071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219389,-0.003071,0.003500,0.249976,0,0);}
.m45_c01050{transform:matrix(0.220193,-0.003743,0.004249,0.249964,0,0);-ms-transform:matrix(0.220193,-0.003743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220193,-0.003743,0.004249,0.249964,0,0);}
.m67_c01050{transform:matrix(0.220217,-0.002422,0.002750,0.249985,0,0);-ms-transform:matrix(0.220217,-0.002422,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220217,-0.002422,0.002750,0.249985,0,0);}
.m90_c01050{transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);-ms-transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);}
.m34_c01050{transform:matrix(0.220908,-0.003755,0.004249,0.249964,0,0);-ms-transform:matrix(0.220908,-0.003755,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220908,-0.003755,0.004249,0.249964,0,0);}
.m8a_c01050{transform:matrix(0.221408,-0.003100,0.003500,0.249976,0,0);-ms-transform:matrix(0.221408,-0.003100,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221408,-0.003100,0.003500,0.249976,0,0);}
.ma4_c01050{transform:matrix(0.222213,-0.003111,0.003500,0.249976,0,0);-ms-transform:matrix(0.222213,-0.003111,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222213,-0.003111,0.003500,0.249976,0,0);}
.m4_c01050{transform:matrix(0.222539,-0.004006,0.004499,0.249960,0,0);-ms-transform:matrix(0.222539,-0.004006,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222539,-0.004006,0.004499,0.249960,0,0);}
.m80_c01050{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);}
.maf_c01050{transform:matrix(0.224733,-0.003146,0.003500,0.249976,0,0);-ms-transform:matrix(0.224733,-0.003146,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224733,-0.003146,0.003500,0.249976,0,0);}
.m98_c01050{transform:matrix(0.225668,-0.003159,0.003500,0.249976,0,0);-ms-transform:matrix(0.225668,-0.003159,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225668,-0.003159,0.003500,0.249976,0,0);}
.m74_c01050{transform:matrix(0.228457,-0.003884,0.004249,0.249964,0,0);-ms-transform:matrix(0.228457,-0.003884,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228457,-0.003884,0.004249,0.249964,0,0);}
.mc_c01050{transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);-ms-transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229392,-0.003900,0.004249,0.249964,0,0);}
.mae_c01050{transform:matrix(0.229538,-0.003214,0.003500,0.249976,0,0);-ms-transform:matrix(0.229538,-0.003214,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229538,-0.003214,0.003500,0.249976,0,0);}
.ma1_c01050{transform:matrix(0.230007,-0.003220,0.003500,0.249976,0,0);-ms-transform:matrix(0.230007,-0.003220,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230007,-0.003220,0.003500,0.249976,0,0);}
.m7b_c01050{transform:matrix(0.231482,-0.003935,0.004249,0.249964,0,0);-ms-transform:matrix(0.231482,-0.003935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231482,-0.003935,0.004249,0.249964,0,0);}
.md_c01050{transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);-ms-transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231861,-0.003942,0.004249,0.249964,0,0);}
.mc7_c01050{transform:matrix(0.233442,-0.003268,0.003500,0.249976,0,0);-ms-transform:matrix(0.233442,-0.003268,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233442,-0.003268,0.003500,0.249976,0,0);}
.m4e_c01050{transform:matrix(0.234796,-0.002583,0.002750,0.249985,0,0);-ms-transform:matrix(0.234796,-0.002583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234796,-0.002583,0.002750,0.249985,0,0);}
.mb3_c01050{transform:matrix(0.236077,-0.003305,0.003500,0.249976,0,0);-ms-transform:matrix(0.236077,-0.003305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236077,-0.003305,0.003500,0.249976,0,0);}
.m22_c01050{transform:matrix(0.237331,-0.004035,0.004249,0.249964,0,0);-ms-transform:matrix(0.237331,-0.004035,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237331,-0.004035,0.004249,0.249964,0,0);}
.mbd_c01050{transform:matrix(0.238237,-0.003335,0.003500,0.249976,0,0);-ms-transform:matrix(0.238237,-0.003335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238237,-0.003335,0.003500,0.249976,0,0);}
.mb4_c01050{transform:matrix(0.240021,-0.003360,0.003500,0.249976,0,0);-ms-transform:matrix(0.240021,-0.003360,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240021,-0.003360,0.003500,0.249976,0,0);}
.m7_c01050{transform:matrix(0.244025,-0.004392,0.004499,0.249960,0,0);-ms-transform:matrix(0.244025,-0.004392,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244025,-0.004392,0.004499,0.249960,0,0);}
.m82_c01050{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);}
.ma0_c01050{transform:matrix(0.248471,-0.003479,0.003500,0.249976,0,0);-ms-transform:matrix(0.248471,-0.003479,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248471,-0.003479,0.003500,0.249976,0,0);}
.m6c_c01050{transform:matrix(0.251100,-0.002762,0.002750,0.249985,0,0);-ms-transform:matrix(0.251100,-0.002762,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251100,-0.002762,0.002750,0.249985,0,0);}
.m3a_c01050{transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);-ms-transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251924,-0.004283,0.004249,0.249964,0,0);}
.m40_c01050{transform:matrix(0.252544,-0.004293,0.004249,0.249964,0,0);-ms-transform:matrix(0.252544,-0.004293,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252544,-0.004293,0.004249,0.249964,0,0);}
.m9f_c01050{transform:matrix(0.254365,-0.003561,0.003500,0.249976,0,0);-ms-transform:matrix(0.254365,-0.003561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254365,-0.003561,0.003500,0.249976,0,0);}
.mc2_c01050{transform:matrix(0.258735,-0.003622,0.003500,0.249976,0,0);-ms-transform:matrix(0.258735,-0.003622,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258735,-0.003622,0.003500,0.249976,0,0);}
.m27_c01050{transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);-ms-transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259333,-0.004409,0.004249,0.249964,0,0);}
.m71_c01050{transform:matrix(0.262237,-0.004458,0.004249,0.249964,0,0);-ms-transform:matrix(0.262237,-0.004458,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262237,-0.004458,0.004249,0.249964,0,0);}
.m8d_c01050{transform:matrix(0.262339,-0.003673,0.003500,0.249976,0,0);-ms-transform:matrix(0.262339,-0.003673,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262339,-0.003673,0.003500,0.249976,0,0);}
.m12_c01050{transform:matrix(0.264302,-0.004493,0.004249,0.249964,0,0);-ms-transform:matrix(0.264302,-0.004493,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264302,-0.004493,0.004249,0.249964,0,0);}
.m59_c01050{transform:matrix(0.265564,-0.002921,0.002750,0.249985,0,0);-ms-transform:matrix(0.265564,-0.002921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265564,-0.002921,0.002750,0.249985,0,0);}
.m88_c01050{transform:matrix(0.265814,-0.003721,0.003500,0.249976,0,0);-ms-transform:matrix(0.265814,-0.003721,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265814,-0.003721,0.003500,0.249976,0,0);}
.mb_c01050{transform:matrix(0.268756,-0.004569,0.004249,0.249964,0,0);-ms-transform:matrix(0.268756,-0.004569,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268756,-0.004569,0.004249,0.249964,0,0);}
.m31_c01050{transform:matrix(0.272366,-0.004630,0.004249,0.249964,0,0);-ms-transform:matrix(0.272366,-0.004630,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272366,-0.004630,0.004249,0.249964,0,0);}
.m65_c01050{transform:matrix(0.272549,-0.002998,0.002750,0.249985,0,0);-ms-transform:matrix(0.272549,-0.002998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272549,-0.002998,0.002750,0.249985,0,0);}
.m8e_c01050{transform:matrix(0.273393,-0.003828,0.003500,0.249976,0,0);-ms-transform:matrix(0.273393,-0.003828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.273393,-0.003828,0.003500,0.249976,0,0);}
.mcf_c01050{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m61_c01050{transform:matrix(0.276903,-0.003046,0.002750,0.249985,0,0);-ms-transform:matrix(0.276903,-0.003046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276903,-0.003046,0.002750,0.249985,0,0);}
.m4d_c01050{transform:matrix(0.278723,-0.003066,0.002750,0.249985,0,0);-ms-transform:matrix(0.278723,-0.003066,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278723,-0.003066,0.002750,0.249985,0,0);}
.m79_c01050{transform:matrix(0.285769,-0.004858,0.004249,0.249964,0,0);-ms-transform:matrix(0.285769,-0.004858,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285769,-0.004858,0.004249,0.249964,0,0);}
.m8b_c01050{transform:matrix(0.289017,-0.004046,0.003500,0.249976,0,0);-ms-transform:matrix(0.289017,-0.004046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.289017,-0.004046,0.003500,0.249976,0,0);}
.ma_c01050{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m73_c01050{transform:matrix(0.294787,-0.005011,0.004249,0.249964,0,0);-ms-transform:matrix(0.294787,-0.005011,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294787,-0.005011,0.004249,0.249964,0,0);}
.mc4_c01050{transform:matrix(0.296276,-0.004148,0.003500,0.249976,0,0);-ms-transform:matrix(0.296276,-0.004148,0.003500,0.249976,0,0);-webkit-transform:matrix(0.296276,-0.004148,0.003500,0.249976,0,0);}
.m25_c01050{transform:matrix(0.298632,-0.005077,0.004249,0.249964,0,0);-ms-transform:matrix(0.298632,-0.005077,0.004249,0.249964,0,0);-webkit-transform:matrix(0.298632,-0.005077,0.004249,0.249964,0,0);}
.m87_c01050{transform:matrix(0.302545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302545,0.000000,0.000000,0.250000,0,0);}
.mcb_c01050{transform:matrix(0.304320,-0.004260,0.003500,0.249976,0,0);-ms-transform:matrix(0.304320,-0.004260,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304320,-0.004260,0.003500,0.249976,0,0);}
.m2a_c01050{transform:matrix(0.305651,-0.005196,0.004249,0.249964,0,0);-ms-transform:matrix(0.305651,-0.005196,0.004249,0.249964,0,0);-webkit-transform:matrix(0.305651,-0.005196,0.004249,0.249964,0,0);}
.m8f_c01050{transform:matrix(0.307735,-0.004308,0.003500,0.249976,0,0);-ms-transform:matrix(0.307735,-0.004308,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307735,-0.004308,0.003500,0.249976,0,0);}
.m86_c01050{transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310285,0.000000,0.000000,0.250000,0,0);}
.mca_c01050{transform:matrix(0.315554,-0.004418,0.003500,0.249976,0,0);-ms-transform:matrix(0.315554,-0.004418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.315554,-0.004418,0.003500,0.249976,0,0);}
.m51_c01050{transform:matrix(0.317371,-0.003491,0.002750,0.249985,0,0);-ms-transform:matrix(0.317371,-0.003491,0.002750,0.249985,0,0);-webkit-transform:matrix(0.317371,-0.003491,0.002750,0.249985,0,0);}
.m6_c01050{transform:matrix(0.322193,-0.005799,0.004499,0.249960,0,0);-ms-transform:matrix(0.322193,-0.005799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.322193,-0.005799,0.004499,0.249960,0,0);}
.m7f_c01050{transform:matrix(0.327618,-0.005570,0.004249,0.249964,0,0);-ms-transform:matrix(0.327618,-0.005570,0.004249,0.249964,0,0);-webkit-transform:matrix(0.327618,-0.005570,0.004249,0.249964,0,0);}
.m7a_c01050{transform:matrix(0.337101,-0.005731,0.004249,0.249964,0,0);-ms-transform:matrix(0.337101,-0.005731,0.004249,0.249964,0,0);-webkit-transform:matrix(0.337101,-0.005731,0.004249,0.249964,0,0);}
.m2_c01050{transform:matrix(0.340020,-0.006120,0.004499,0.249960,0,0);-ms-transform:matrix(0.340020,-0.006120,0.004499,0.249960,0,0);-webkit-transform:matrix(0.340020,-0.006120,0.004499,0.249960,0,0);}
.m3_c01050{transform:matrix(0.343539,-0.006184,0.004499,0.249960,0,0);-ms-transform:matrix(0.343539,-0.006184,0.004499,0.249960,0,0);-webkit-transform:matrix(0.343539,-0.006184,0.004499,0.249960,0,0);}
.mb0_c01050{transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);-ms-transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.352765,-0.004939,0.003500,0.249976,0,0);}
.m0_c01050{transform:matrix(0.364786,-0.006566,0.004499,0.249960,0,0);-ms-transform:matrix(0.364786,-0.006566,0.004499,0.249960,0,0);-webkit-transform:matrix(0.364786,-0.006566,0.004499,0.249960,0,0);}
.m96_c01050{transform:matrix(0.367974,-0.005152,0.003500,0.249976,0,0);-ms-transform:matrix(0.367974,-0.005152,0.003500,0.249976,0,0);-webkit-transform:matrix(0.367974,-0.005152,0.003500,0.249976,0,0);}
.m77_c01050{transform:matrix(0.382365,-0.006500,0.004249,0.249964,0,0);-ms-transform:matrix(0.382365,-0.006500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.382365,-0.006500,0.004249,0.249964,0,0);}
.m11_c01050{transform:matrix(0.388864,-0.006611,0.004249,0.249964,0,0);-ms-transform:matrix(0.388864,-0.006611,0.004249,0.249964,0,0);-webkit-transform:matrix(0.388864,-0.006611,0.004249,0.249964,0,0);}
.m5c_c01050{transform:matrix(0.389866,-0.004289,0.002750,0.249985,0,0);-ms-transform:matrix(0.389866,-0.004289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.389866,-0.004289,0.002750,0.249985,0,0);}
.m60_c01050{transform:matrix(0.391536,-0.004307,0.002750,0.249985,0,0);-ms-transform:matrix(0.391536,-0.004307,0.002750,0.249985,0,0);-webkit-transform:matrix(0.391536,-0.004307,0.002750,0.249985,0,0);}
.m3c_c01050{transform:matrix(0.394243,-0.006702,0.004249,0.249964,0,0);-ms-transform:matrix(0.394243,-0.006702,0.004249,0.249964,0,0);-webkit-transform:matrix(0.394243,-0.006702,0.004249,0.249964,0,0);}
.m4a_c01050{transform:matrix(0.394635,0.012234,-0.007746,0.249880,0,0);-ms-transform:matrix(0.394635,0.012234,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.394635,0.012234,-0.007746,0.249880,0,0);}
.m5_c01050{transform:matrix(0.404429,-0.007280,0.004499,0.249960,0,0);-ms-transform:matrix(0.404429,-0.007280,0.004499,0.249960,0,0);-webkit-transform:matrix(0.404429,-0.007280,0.004499,0.249960,0,0);}
.m53_c01050{transform:matrix(0.406195,-0.004468,0.002750,0.249985,0,0);-ms-transform:matrix(0.406195,-0.004468,0.002750,0.249985,0,0);-webkit-transform:matrix(0.406195,-0.004468,0.002750,0.249985,0,0);}
.m64_c01050{transform:matrix(0.409820,-0.004508,0.002750,0.249985,0,0);-ms-transform:matrix(0.409820,-0.004508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.409820,-0.004508,0.002750,0.249985,0,0);}
.m85_c01050{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4c_c01050{transform:matrix(0.424411,0.013157,-0.007746,0.249880,0,0);-ms-transform:matrix(0.424411,0.013157,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.424411,0.013157,-0.007746,0.249880,0,0);}
.m1_c01050{transform:matrix(0.427266,-0.007691,0.004499,0.249960,0,0);-ms-transform:matrix(0.427266,-0.007691,0.004499,0.249960,0,0);-webkit-transform:matrix(0.427266,-0.007691,0.004499,0.249960,0,0);}
.m55_c01050{transform:matrix(0.427889,-0.004707,0.002750,0.249985,0,0);-ms-transform:matrix(0.427889,-0.004707,0.002750,0.249985,0,0);-webkit-transform:matrix(0.427889,-0.004707,0.002750,0.249985,0,0);}
.m52_c01050{transform:matrix(0.431879,-0.004751,0.002750,0.249985,0,0);-ms-transform:matrix(0.431879,-0.004751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.431879,-0.004751,0.002750,0.249985,0,0);}
.m46_c01050{transform:matrix(0.432582,0.013410,-0.007746,0.249880,0,0);-ms-transform:matrix(0.432582,0.013410,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.432582,0.013410,-0.007746,0.249880,0,0);}
.m33_c01050{transform:matrix(0.433397,-0.007368,0.004249,0.249964,0,0);-ms-transform:matrix(0.433397,-0.007368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.433397,-0.007368,0.004249,0.249964,0,0);}
.m56_c01050{transform:matrix(0.455772,-0.005013,0.002750,0.249985,0,0);-ms-transform:matrix(0.455772,-0.005013,0.002750,0.249985,0,0);-webkit-transform:matrix(0.455772,-0.005013,0.002750,0.249985,0,0);}
.mce_c01050{transform:matrix(0.471110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471110,0.000000,0.000000,0.250000,0,0);}
.mb1_c01050{transform:matrix(0.474154,-0.006638,0.003500,0.249976,0,0);-ms-transform:matrix(0.474154,-0.006638,0.003500,0.249976,0,0);-webkit-transform:matrix(0.474154,-0.006638,0.003500,0.249976,0,0);}
.m3f_c01050{transform:matrix(0.497548,-0.008458,0.004249,0.249964,0,0);-ms-transform:matrix(0.497548,-0.008458,0.004249,0.249964,0,0);-webkit-transform:matrix(0.497548,-0.008458,0.004249,0.249964,0,0);}
.m4f_c01050{transform:matrix(0.507214,-0.005579,0.002750,0.249985,0,0);-ms-transform:matrix(0.507214,-0.005579,0.002750,0.249985,0,0);-webkit-transform:matrix(0.507214,-0.005579,0.002750,0.249985,0,0);}
.mc6_c01050{transform:matrix(0.522979,-0.007322,0.003500,0.249976,0,0);-ms-transform:matrix(0.522979,-0.007322,0.003500,0.249976,0,0);-webkit-transform:matrix(0.522979,-0.007322,0.003500,0.249976,0,0);}
.m84_c01050{transform:matrix(0.523980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523980,0.000000,0.000000,0.250000,0,0);}
.m72_c01050{transform:matrix(0.526859,-0.008957,0.004249,0.249964,0,0);-ms-transform:matrix(0.526859,-0.008957,0.004249,0.249964,0,0);-webkit-transform:matrix(0.526859,-0.008957,0.004249,0.249964,0,0);}
.mc8_c01050{transform:matrix(0.607475,-0.008505,0.003500,0.249976,0,0);-ms-transform:matrix(0.607475,-0.008505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.607475,-0.008505,0.003500,0.249976,0,0);}
.m47_c01050{transform:matrix(0.634485,0.019669,-0.007746,0.249880,0,0);-ms-transform:matrix(0.634485,0.019669,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.634485,0.019669,-0.007746,0.249880,0,0);}
.m48_c01050{transform:matrix(0.781095,0.024214,-0.007746,0.249880,0,0);-ms-transform:matrix(0.781095,0.024214,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.781095,0.024214,-0.007746,0.249880,0,0);}
.m97_c01050{transform:matrix(0.801621,-0.011223,0.003500,0.249976,0,0);-ms-transform:matrix(0.801621,-0.011223,0.003500,0.249976,0,0);-webkit-transform:matrix(0.801621,-0.011223,0.003500,0.249976,0,0);}
.mbc_c01050{transform:matrix(0.820510,-0.011487,0.003500,0.249976,0,0);-ms-transform:matrix(0.820510,-0.011487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.820510,-0.011487,0.003500,0.249976,0,0);}
.m49_c01050{transform:matrix(0.878808,0.027243,-0.007746,0.249880,0,0);-ms-transform:matrix(0.878808,0.027243,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.878808,0.027243,-0.007746,0.249880,0,0);}
.mc5_c01050{transform:matrix(0.914125,-0.012798,0.003500,0.249976,0,0);-ms-transform:matrix(0.914125,-0.012798,0.003500,0.249976,0,0);-webkit-transform:matrix(0.914125,-0.012798,0.003500,0.249976,0,0);}
.mcc_c01050{transform:matrix(0.930129,-0.013022,0.003500,0.249976,0,0);-ms-transform:matrix(0.930129,-0.013022,0.003500,0.249976,0,0);-webkit-transform:matrix(0.930129,-0.013022,0.003500,0.249976,0,0);}
.ma9_c01050{transform:matrix(0.964405,-0.013502,0.003500,0.249976,0,0);-ms-transform:matrix(0.964405,-0.013502,0.003500,0.249976,0,0);-webkit-transform:matrix(0.964405,-0.013502,0.003500,0.249976,0,0);}
.m4b_c01050{transform:matrix(1.129852,0.035025,-0.007746,0.249880,0,0);-ms-transform:matrix(1.129852,0.035025,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.129852,0.035025,-0.007746,0.249880,0,0);}
.mc3_c01050{transform:matrix(1.382080,-0.019349,0.003500,0.249976,0,0);-ms-transform:matrix(1.382080,-0.019349,0.003500,0.249976,0,0);-webkit-transform:matrix(1.382080,-0.019349,0.003500,0.249976,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls0_c01050{letter-spacing:0.000000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:0.000000px;}
.fc0_c01050{color:transparent;}
.fs3_c01050{font-size:29.400000px;}
.fs1b_c01050{font-size:45.154424px;}
.fsa_c01050{font-size:45.171689px;}
.fs1a_c01050{font-size:55.655453px;}
.fs2_c01050{font-size:57.750000px;}
.fs11_c01050{font-size:59.858648px;}
.fs12_c01050{font-size:61.950000px;}
.fs13_c01050{font-size:63.000000px;}
.fs14_c01050{font-size:64.056277px;}
.fs17_c01050{font-size:65.106379px;}
.fs4_c01050{font-size:65.109406px;}
.fs16_c01050{font-size:66.156482px;}
.fsf_c01050{font-size:67.204065px;}
.fs19_c01050{font-size:69.306791px;}
.fs10_c01050{font-size:70.354256px;}
.fs18_c01050{font-size:70.356894px;}
.fs5_c01050{font-size:70.360165px;}
.fs6_c01050{font-size:71.410317px;}
.fsb_c01050{font-size:72.454383px;}
.fs15_c01050{font-size:73.507203px;}
.fs9_c01050{font-size:73.510620px;}
.fse_c01050{font-size:74.554510px;}
.fs8_c01050{font-size:74.560772px;}
.fsc_c01050{font-size:75.604574px;}
.fsd_c01050{font-size:76.654637px;}
.fs7_c01050{font-size:76.661075px;}
.fs1_c01050{font-size:80.863097px;}
.fs0_c01050{font-size:168.027214px;}
.y0_c01050{bottom:0.000000px;}
.yc9_c01050{bottom:137.011500px;}
.yc5_c01050{bottom:160.093170px;}
.yc6_c01050{bottom:162.884685px;}
.yc7_c01050{bottom:163.757757px;}
.yc8_c01050{bottom:165.600579px;}
.yb9_c01050{bottom:176.835198px;}
.yba_c01050{bottom:177.130050px;}
.ybb_c01050{bottom:177.583275px;}
.ybc_c01050{bottom:178.176885px;}
.ybd_c01050{bottom:178.643877px;}
.ybf_c01050{bottom:178.774686px;}
.ybe_c01050{bottom:179.013663px;}
.yc0_c01050{bottom:180.093987px;}
.yc1_c01050{bottom:180.357924px;}
.yc2_c01050{bottom:180.852522px;}
.yc3_c01050{bottom:183.187146px;}
.yc4_c01050{bottom:183.345876px;}
.yaf_c01050{bottom:228.143259px;}
.yb0_c01050{bottom:228.759270px;}
.yb1_c01050{bottom:229.182336px;}
.yb2_c01050{bottom:229.583502px;}
.yb3_c01050{bottom:230.508594px;}
.yb4_c01050{bottom:231.420489px;}
.yb5_c01050{bottom:232.401927px;}
.yb6_c01050{bottom:233.348688px;}
.yb7_c01050{bottom:235.268814px;}
.yb8_c01050{bottom:235.608216px;}
.ya6_c01050{bottom:250.825128px;}
.ya7_c01050{bottom:252.215082px;}
.ya8_c01050{bottom:253.037406px;}
.ya9_c01050{bottom:253.974984px;}
.yaa_c01050{bottom:254.509767px;}
.yab_c01050{bottom:256.216425px;}
.yac_c01050{bottom:257.042193px;}
.yad_c01050{bottom:259.139238px;}
.yae_c01050{bottom:259.788792px;}
.y9c_c01050{bottom:273.506415px;}
.y9d_c01050{bottom:273.992532px;}
.y9e_c01050{bottom:274.841853px;}
.y9f_c01050{bottom:275.172597px;}
.ya0_c01050{bottom:275.815713px;}
.ya1_c01050{bottom:277.068195px;}
.ya2_c01050{bottom:277.775235px;}
.ya3_c01050{bottom:278.517423px;}
.ya4_c01050{bottom:279.391299px;}
.ya5_c01050{bottom:281.462667px;}
.y94_c01050{bottom:296.455890px;}
.y95_c01050{bottom:296.958336px;}
.y96_c01050{bottom:297.202317px;}
.y97_c01050{bottom:297.603663px;}
.y98_c01050{bottom:298.395726px;}
.y99_c01050{bottom:298.776444px;}
.y9a_c01050{bottom:299.328759px;}
.y9b_c01050{bottom:301.646184px;}
.y89_c01050{bottom:319.141731px;}
.y8a_c01050{bottom:319.572765px;}
.y8b_c01050{bottom:320.211516px;}
.y8c_c01050{bottom:321.405447px;}
.y8d_c01050{bottom:322.321914px;}
.y8e_c01050{bottom:322.992096px;}
.y8f_c01050{bottom:323.366013px;}
.y90_c01050{bottom:324.020847px;}
.y91_c01050{bottom:324.454443px;}
.y92_c01050{bottom:326.027361px;}
.y93_c01050{bottom:327.587766px;}
.y84_c01050{bottom:345.270000px;}
.y85_c01050{bottom:345.731433px;}
.y86_c01050{bottom:346.233333px;}
.y87_c01050{bottom:346.701192px;}
.y88_c01050{bottom:348.926730px;}
.y83_c01050{bottom:367.500000px;}
.y82_c01050{bottom:389.805000px;}
.y7a_c01050{bottom:412.019898px;}
.y7b_c01050{bottom:412.375062px;}
.y7c_c01050{bottom:412.803201px;}
.y7d_c01050{bottom:412.980513px;}
.y7e_c01050{bottom:414.251406px;}
.y7f_c01050{bottom:414.754131px;}
.y80_c01050{bottom:415.196482px;}
.y81_c01050{bottom:416.319968px;}
.y71_c01050{bottom:434.434500px;}
.y72_c01050{bottom:434.920275px;}
.y73_c01050{bottom:435.511288px;}
.y74_c01050{bottom:436.168730px;}
.y75_c01050{bottom:436.819489px;}
.y76_c01050{bottom:438.164640px;}
.y77_c01050{bottom:439.153530px;}
.y78_c01050{bottom:439.966393px;}
.y79_c01050{bottom:440.826712px;}
.y6e_c01050{bottom:456.830349px;}
.y6f_c01050{bottom:460.994865px;}
.y70_c01050{bottom:464.021184px;}
.y69_c01050{bottom:481.943523px;}
.y6a_c01050{bottom:482.425252px;}
.y6b_c01050{bottom:483.195000px;}
.y6c_c01050{bottom:484.384165px;}
.y6d_c01050{bottom:484.990846px;}
.y66_c01050{bottom:503.004069px;}
.y67_c01050{bottom:504.612581px;}
.y68_c01050{bottom:505.894313px;}
.y65_c01050{bottom:526.098637px;}
.y64_c01050{bottom:526.098717px;}
.y63_c01050{bottom:526.099424px;}
.y62_c01050{bottom:549.596933px;}
.y5a_c01050{bottom:571.591509px;}
.y5b_c01050{bottom:571.853766px;}
.y5c_c01050{bottom:572.743149px;}
.y5d_c01050{bottom:574.133922px;}
.y5e_c01050{bottom:574.495260px;}
.y5f_c01050{bottom:575.281703px;}
.y60_c01050{bottom:575.733033px;}
.y61_c01050{bottom:576.451486px;}
.y57_c01050{bottom:597.118185px;}
.y56_c01050{bottom:597.118381px;}
.y54_c01050{bottom:597.118565px;}
.y59_c01050{bottom:597.118686px;}
.y58_c01050{bottom:597.118768px;}
.y55_c01050{bottom:597.119028px;}
.y53_c01050{bottom:597.119091px;}
.y4f_c01050{bottom:618.303000px;}
.y50_c01050{bottom:618.715863px;}
.y51_c01050{bottom:618.971696px;}
.y52_c01050{bottom:622.700415px;}
.y4e_c01050{bottom:638.604414px;}
.y4d_c01050{bottom:641.434125px;}
.y4c_c01050{bottom:642.029651px;}
.y4b_c01050{bottom:642.709108px;}
.y4a_c01050{bottom:643.287662px;}
.y49_c01050{bottom:644.227333px;}
.y48_c01050{bottom:647.002500px;}
.y3f_c01050{bottom:661.751178px;}
.y40_c01050{bottom:662.616994px;}
.y41_c01050{bottom:663.207502px;}
.y42_c01050{bottom:663.921918px;}
.y43_c01050{bottom:664.351407px;}
.y44_c01050{bottom:664.749441px;}
.y45_c01050{bottom:665.097146px;}
.y46_c01050{bottom:665.533422px;}
.y47_c01050{bottom:666.138117px;}
.y3e_c01050{bottom:686.910854px;}
.y3d_c01050{bottom:686.911535px;}
.y3c_c01050{bottom:686.911761px;}
.y34_c01050{bottom:706.308706px;}
.y35_c01050{bottom:707.468094px;}
.y36_c01050{bottom:707.707098px;}
.y37_c01050{bottom:708.500060px;}
.y38_c01050{bottom:709.136460px;}
.y39_c01050{bottom:709.537151px;}
.y3a_c01050{bottom:710.268426px;}
.y3b_c01050{bottom:710.848861px;}
.y2b_c01050{bottom:729.795480px;}
.y2c_c01050{bottom:730.111254px;}
.y2d_c01050{bottom:730.823936px;}
.y2e_c01050{bottom:731.776719px;}
.y2f_c01050{bottom:732.193415px;}
.y30_c01050{bottom:732.896886px;}
.y31_c01050{bottom:733.506780px;}
.y32_c01050{bottom:734.022000px;}
.y33_c01050{bottom:735.176703px;}
.y24_c01050{bottom:752.754120px;}
.y25_c01050{bottom:753.322395px;}
.y26_c01050{bottom:753.916115px;}
.y27_c01050{bottom:755.815345px;}
.y28_c01050{bottom:756.486827px;}
.y29_c01050{bottom:757.356538px;}
.y2a_c01050{bottom:757.891847px;}
.y1e_c01050{bottom:775.168133px;}
.y1f_c01050{bottom:775.676653px;}
.y20_c01050{bottom:778.414758px;}
.y21_c01050{bottom:779.181808px;}
.y22_c01050{bottom:780.160083px;}
.y23_c01050{bottom:781.414171px;}
.y15_c01050{bottom:797.581635px;}
.y16_c01050{bottom:798.489459px;}
.y17_c01050{bottom:798.913794px;}
.y18_c01050{bottom:799.746658px;}
.y19_c01050{bottom:800.373853px;}
.y1a_c01050{bottom:801.542145px;}
.y1b_c01050{bottom:802.424100px;}
.y1c_c01050{bottom:802.993284px;}
.y1d_c01050{bottom:803.926956px;}
.yc_c01050{bottom:820.803000px;}
.yd_c01050{bottom:821.565832px;}
.ye_c01050{bottom:822.295311px;}
.yf_c01050{bottom:822.957903px;}
.y10_c01050{bottom:824.214058px;}
.y11_c01050{bottom:824.596380px;}
.y12_c01050{bottom:825.168880px;}
.y13_c01050{bottom:825.702035px;}
.y14_c01050{bottom:826.123855px;}
.y2_c01050{bottom:866.700624px;}
.y3_c01050{bottom:868.214895px;}
.y4_c01050{bottom:868.815516px;}
.y5_c01050{bottom:870.826002px;}
.y6_c01050{bottom:871.242816px;}
.y7_c01050{bottom:872.161893px;}
.y8_c01050{bottom:873.883167px;}
.yb_c01050{bottom:902.340000px;}
.y1_c01050{bottom:904.513500px;}
.ya_c01050{bottom:913.410000px;}
.y9_c01050{bottom:917.190000px;}
.h5_c01050{height:29.400000px;}
.h1d_c01050{height:45.154424px;}
.hc_c01050{height:45.171689px;}
.h1c_c01050{height:55.655453px;}
.h4_c01050{height:57.750000px;}
.h13_c01050{height:59.858648px;}
.h14_c01050{height:61.950000px;}
.h15_c01050{height:63.000000px;}
.h16_c01050{height:64.056277px;}
.h19_c01050{height:65.106379px;}
.h6_c01050{height:65.109406px;}
.h18_c01050{height:66.156482px;}
.h11_c01050{height:67.204065px;}
.h1b_c01050{height:69.306791px;}
.h12_c01050{height:70.354256px;}
.h1a_c01050{height:70.356894px;}
.h7_c01050{height:70.360165px;}
.h8_c01050{height:71.410317px;}
.hd_c01050{height:72.454383px;}
.h17_c01050{height:73.507203px;}
.hb_c01050{height:73.510620px;}
.h10_c01050{height:74.554510px;}
.ha_c01050{height:74.560772px;}
.he_c01050{height:75.604574px;}
.hf_c01050{height:76.654637px;}
.h9_c01050{height:76.661075px;}
.h3_c01050{height:80.863097px;}
.h2_c01050{height:168.027214px;}
.h1_c01050{height:1005.000000px;}
.h0_c01050{height:1005.150000px;}
.w0_c01050{width:715.200000px;}
.w1_c01050{width:715.500000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:53.977500px;}
.x80_c01050{left:112.360575px;}
.x23_c01050{left:115.754874px;}
.x7a_c01050{left:125.130735px;}
.x3a_c01050{left:130.087500px;}
.x24_c01050{left:135.477205px;}
.x51_c01050{left:137.123336px;}
.x81_c01050{left:139.050000px;}
.xb_c01050{left:142.776000px;}
.x58_c01050{left:144.629613px;}
.x53_c01050{left:145.755000px;}
.x6f_c01050{left:147.094383px;}
.x82_c01050{left:160.380000px;}
.x1b_c01050{left:168.235782px;}
.x59_c01050{left:170.022914px;}
.x1e_c01050{left:174.366966px;}
.x49_c01050{left:176.854283px;}
.x25_c01050{left:180.047470px;}
.x7b_c01050{left:182.637033px;}
.x74_c01050{left:185.063685px;}
.xc_c01050{left:187.648500px;}
.x36_c01050{left:188.818500px;}
.x2_c01050{left:191.820558px;}
.x2c_c01050{left:193.898907px;}
.x5d_c01050{left:198.990000px;}
.x31_c01050{left:201.039718px;}
.x62_c01050{left:205.126536px;}
.x1f_c01050{left:207.349905px;}
.x14_c01050{left:209.449272px;}
.x75_c01050{left:211.531950px;}
.x5a_c01050{left:213.228107px;}
.x6c_c01050{left:225.111003px;}
.x7c_c01050{left:228.252663px;}
.xd_c01050{left:230.559000px;}
.x40_c01050{left:231.932586px;}
.x76_c01050{left:236.650257px;}
.x26_c01050{left:239.623990px;}
.x6d_c01050{left:244.556184px;}
.x41_c01050{left:247.318563px;}
.x15_c01050{left:251.115655px;}
.x4a_c01050{left:258.129617px;}
.x2d_c01050{left:262.722753px;}
.x7d_c01050{left:264.181167px;}
.x27_c01050{left:265.635924px;}
.x3_c01050{left:267.527331px;}
.xe_c01050{left:269.535000px;}
.x63_c01050{left:271.439319px;}
.x7f_c01050{left:274.274814px;}
.x2f_c01050{left:276.223048px;}
.x37_c01050{left:278.340000px;}
.x16_c01050{left:282.449049px;}
.x54_c01050{left:286.048500px;}
.x32_c01050{left:288.038176px;}
.x48_c01050{left:289.719989px;}
.x7e_c01050{left:292.630566px;}
.x77_c01050{left:294.476640px;}
.x4_c01050{left:297.560751px;}
.x42_c01050{left:299.668114px;}
.x5b_c01050{left:303.961722px;}
.x1c_c01050{left:305.117295px;}
.x30_c01050{left:307.277524px;}
.x28_c01050{left:309.576163px;}
.x20_c01050{left:312.891120px;}
.x33_c01050{left:316.656145px;}
.x64_c01050{left:322.326963px;}
.x38_c01050{left:327.315000px;}
.x2e_c01050{left:331.848099px;}
.x3c_c01050{left:335.893395px;}
.x17_c01050{left:340.845565px;}
.xf_c01050{left:343.426500px;}
.x29_c01050{left:347.658801px;}
.x21_c01050{left:350.183482px;}
.x70_c01050{left:351.771417px;}
.x3d_c01050{left:355.064221px;}
.x69_c01050{left:357.058341px;}
.x65_c01050{left:359.587884px;}
.x5f_c01050{left:364.413000px;}
.x10_c01050{left:365.916000px;}
.x39_c01050{left:368.443500px;}
.x3e_c01050{left:370.184553px;}
.x5c_c01050{left:371.469665px;}
.x4d_c01050{left:376.089237px;}
.x2a_c01050{left:379.819336px;}
.x43_c01050{left:381.505719px;}
.x18_c01050{left:384.958321px;}
.x4b_c01050{left:389.694852px;}
.x1d_c01050{left:392.337832px;}
.x5e_c01050{left:393.390000px;}
.x34_c01050{left:395.453823px;}
.x5_c01050{left:398.084133px;}
.x11_c01050{left:399.592500px;}
.x44_c01050{left:402.762316px;}
.x6a_c01050{left:407.332962px;}
.x19_c01050{left:413.408868px;}
.x4e_c01050{left:416.608173px;}
.x6_c01050{left:418.906377px;}
.x55_c01050{left:423.345000px;}
.x22_c01050{left:428.242156px;}
.x12_c01050{left:430.954500px;}
.x60_c01050{left:433.222500px;}
.x35_c01050{left:435.790200px;}
.x66_c01050{left:440.893848px;}
.x71_c01050{left:446.563104px;}
.x45_c01050{left:449.026764px;}
.x2b_c01050{left:451.979560px;}
.x13_c01050{left:455.767500px;}
.x1a_c01050{left:460.122496px;}
.x7_c01050{left:464.881230px;}
.x61_c01050{left:466.641000px;}
.x4c_c01050{left:469.802447px;}
.x56_c01050{left:471.160500px;}
.x46_c01050{left:475.600515px;}
.x4f_c01050{left:479.163162px;}
.x6e_c01050{left:492.738768px;}
.x50_c01050{left:511.131357px;}
.x3f_c01050{left:513.292862px;}
.x47_c01050{left:517.866227px;}
.x57_c01050{left:521.767500px;}
.x67_c01050{left:528.275955px;}
.x3b_c01050{left:529.852500px;}
.x8_c01050{left:550.921125px;}
.x52_c01050{left:560.080418px;}
.x78_c01050{left:591.948303px;}
.x72_c01050{left:608.933511px;}
.x79_c01050{left:613.190715px;}
.x68_c01050{left:614.978604px;}
.x6b_c01050{left:617.979303px;}
.xa_c01050{left:625.590000px;}
.x9_c01050{left:633.150000px;}
.x73_c01050{left:645.042495px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws0_c01050{word-spacing:0.000000pt;}
.fs3_c01050{font-size:26.133333pt;}
.fs1b_c01050{font-size:40.137266pt;}
.fsa_c01050{font-size:40.152613pt;}
.fs1a_c01050{font-size:49.471514pt;}
.fs2_c01050{font-size:51.333333pt;}
.fs11_c01050{font-size:53.207687pt;}
.fs12_c01050{font-size:55.066667pt;}
.fs13_c01050{font-size:56.000000pt;}
.fs14_c01050{font-size:56.938913pt;}
.fs17_c01050{font-size:57.872337pt;}
.fs4_c01050{font-size:57.875028pt;}
.fs16_c01050{font-size:58.805762pt;}
.fsf_c01050{font-size:59.736947pt;}
.fs19_c01050{font-size:61.606037pt;}
.fs10_c01050{font-size:62.537116pt;}
.fs18_c01050{font-size:62.539461pt;}
.fs5_c01050{font-size:62.542369pt;}
.fs6_c01050{font-size:63.475837pt;}
.fsb_c01050{font-size:64.403896pt;}
.fs15_c01050{font-size:65.339736pt;}
.fs9_c01050{font-size:65.342773pt;}
.fse_c01050{font-size:66.270676pt;}
.fs8_c01050{font-size:66.276242pt;}
.fsc_c01050{font-size:67.204065pt;}
.fsd_c01050{font-size:68.137455pt;}
.fs7_c01050{font-size:68.143178pt;}
.fs1_c01050{font-size:71.878308pt;}
.fs0_c01050{font-size:149.357523pt;}
.y0_c01050{bottom:0.000000pt;}
.yc9_c01050{bottom:121.788000pt;}
.yc5_c01050{bottom:142.305040pt;}
.yc6_c01050{bottom:144.786387pt;}
.yc7_c01050{bottom:145.562451pt;}
.yc8_c01050{bottom:147.200515pt;}
.yb9_c01050{bottom:157.186843pt;}
.yba_c01050{bottom:157.448933pt;}
.ybb_c01050{bottom:157.851800pt;}
.ybc_c01050{bottom:158.379453pt;}
.ybd_c01050{bottom:158.794557pt;}
.ybf_c01050{bottom:158.910832pt;}
.ybe_c01050{bottom:159.123256pt;}
.yc0_c01050{bottom:160.083544pt;}
.yc1_c01050{bottom:160.318155pt;}
.yc2_c01050{bottom:160.757797pt;}
.yc3_c01050{bottom:162.833019pt;}
.yc4_c01050{bottom:162.974112pt;}
.yaf_c01050{bottom:202.794008pt;}
.yb0_c01050{bottom:203.341573pt;}
.yb1_c01050{bottom:203.717632pt;}
.yb2_c01050{bottom:204.074224pt;}
.yb3_c01050{bottom:204.896528pt;}
.yb4_c01050{bottom:205.707101pt;}
.yb5_c01050{bottom:206.579491pt;}
.yb6_c01050{bottom:207.421056pt;}
.yb7_c01050{bottom:209.127835pt;}
.yb8_c01050{bottom:209.429525pt;}
.ya6_c01050{bottom:222.955669pt;}
.ya7_c01050{bottom:224.191184pt;}
.ya8_c01050{bottom:224.922139pt;}
.ya9_c01050{bottom:225.755541pt;}
.yaa_c01050{bottom:226.230904pt;}
.yab_c01050{bottom:227.747933pt;}
.yac_c01050{bottom:228.481949pt;}
.yad_c01050{bottom:230.345989pt;}
.yae_c01050{bottom:230.923371pt;}
.y9c_c01050{bottom:243.116813pt;}
.y9d_c01050{bottom:243.548917pt;}
.y9e_c01050{bottom:244.303869pt;}
.y9f_c01050{bottom:244.597864pt;}
.ya0_c01050{bottom:245.169523pt;}
.ya1_c01050{bottom:246.282840pt;}
.ya2_c01050{bottom:246.911320pt;}
.ya3_c01050{bottom:247.571043pt;}
.ya4_c01050{bottom:248.347821pt;}
.ya5_c01050{bottom:250.189037pt;}
.y94_c01050{bottom:263.516347pt;}
.y95_c01050{bottom:263.962965pt;}
.y96_c01050{bottom:264.179837pt;}
.y97_c01050{bottom:264.536589pt;}
.y98_c01050{bottom:265.240645pt;}
.y99_c01050{bottom:265.579061pt;}
.y9a_c01050{bottom:266.070008pt;}
.y9b_c01050{bottom:268.129941pt;}
.y89_c01050{bottom:283.681539pt;}
.y8a_c01050{bottom:284.064680pt;}
.y8b_c01050{bottom:284.632459pt;}
.y8c_c01050{bottom:285.693731pt;}
.y8d_c01050{bottom:286.508368pt;}
.y8e_c01050{bottom:287.104085pt;}
.y8f_c01050{bottom:287.436456pt;}
.y90_c01050{bottom:288.018531pt;}
.y91_c01050{bottom:288.403949pt;}
.y92_c01050{bottom:289.802099pt;}
.y93_c01050{bottom:291.189125pt;}
.y84_c01050{bottom:306.906667pt;}
.y85_c01050{bottom:307.316829pt;}
.y86_c01050{bottom:307.762963pt;}
.y87_c01050{bottom:308.178837pt;}
.y88_c01050{bottom:310.157093pt;}
.y83_c01050{bottom:326.666667pt;}
.y82_c01050{bottom:346.493333pt;}
.y7a_c01050{bottom:366.239909pt;}
.y7b_c01050{bottom:366.555611pt;}
.y7c_c01050{bottom:366.936179pt;}
.y7d_c01050{bottom:367.093789pt;}
.y7e_c01050{bottom:368.223472pt;}
.y7f_c01050{bottom:368.670339pt;}
.y80_c01050{bottom:369.063540pt;}
.y81_c01050{bottom:370.062193pt;}
.y71_c01050{bottom:386.164000pt;}
.y72_c01050{bottom:386.595800pt;}
.y73_c01050{bottom:387.121145pt;}
.y74_c01050{bottom:387.705537pt;}
.y75_c01050{bottom:388.283991pt;}
.y76_c01050{bottom:389.479680pt;}
.y77_c01050{bottom:390.358693pt;}
.y78_c01050{bottom:391.081239pt;}
.y79_c01050{bottom:391.845967pt;}
.y6e_c01050{bottom:406.071421pt;}
.y6f_c01050{bottom:409.773213pt;}
.y70_c01050{bottom:412.463275pt;}
.y69_c01050{bottom:428.394243pt;}
.y6a_c01050{bottom:428.822447pt;}
.y6b_c01050{bottom:429.506667pt;}
.y6c_c01050{bottom:430.563703pt;}
.y6d_c01050{bottom:431.102975pt;}
.y66_c01050{bottom:447.114728pt;}
.y67_c01050{bottom:448.544516pt;}
.y68_c01050{bottom:449.683833pt;}
.y65_c01050{bottom:467.643233pt;}
.y64_c01050{bottom:467.643304pt;}
.y63_c01050{bottom:467.643932pt;}
.y62_c01050{bottom:488.530607pt;}
.y5a_c01050{bottom:508.081341pt;}
.y5b_c01050{bottom:508.314459pt;}
.y5c_c01050{bottom:509.105021pt;}
.y5d_c01050{bottom:510.341264pt;}
.y5e_c01050{bottom:510.662453pt;}
.y5f_c01050{bottom:511.361513pt;}
.y60_c01050{bottom:511.762696pt;}
.y61_c01050{bottom:512.401321pt;}
.y57_c01050{bottom:530.771720pt;}
.y56_c01050{bottom:530.771895pt;}
.y54_c01050{bottom:530.772057pt;}
.y59_c01050{bottom:530.772165pt;}
.y58_c01050{bottom:530.772239pt;}
.y55_c01050{bottom:530.772469pt;}
.y53_c01050{bottom:530.772525pt;}
.y4f_c01050{bottom:549.602667pt;}
.y50_c01050{bottom:549.969656pt;}
.y51_c01050{bottom:550.197063pt;}
.y52_c01050{bottom:553.511480pt;}
.y4e_c01050{bottom:567.648368pt;}
.y4d_c01050{bottom:570.163667pt;}
.y4c_c01050{bottom:570.693023pt;}
.y4b_c01050{bottom:571.296985pt;}
.y4a_c01050{bottom:571.811255pt;}
.y49_c01050{bottom:572.646519pt;}
.y48_c01050{bottom:575.113333pt;}
.y3f_c01050{bottom:588.223269pt;}
.y40_c01050{bottom:588.992884pt;}
.y41_c01050{bottom:589.517780pt;}
.y42_c01050{bottom:590.152816pt;}
.y43_c01050{bottom:590.534584pt;}
.y44_c01050{bottom:590.888392pt;}
.y45_c01050{bottom:591.197463pt;}
.y46_c01050{bottom:591.585264pt;}
.y47_c01050{bottom:592.122771pt;}
.y3e_c01050{bottom:610.587425pt;}
.y3d_c01050{bottom:610.588031pt;}
.y3c_c01050{bottom:610.588232pt;}
.y34_c01050{bottom:627.829961pt;}
.y35_c01050{bottom:628.860528pt;}
.y36_c01050{bottom:629.072976pt;}
.y37_c01050{bottom:629.777831pt;}
.y38_c01050{bottom:630.343520pt;}
.y39_c01050{bottom:630.699689pt;}
.y3a_c01050{bottom:631.349712pt;}
.y3b_c01050{bottom:631.865655pt;}
.y2b_c01050{bottom:648.707093pt;}
.y2c_c01050{bottom:648.987781pt;}
.y2d_c01050{bottom:649.621276pt;}
.y2e_c01050{bottom:650.468195pt;}
.y2f_c01050{bottom:650.838591pt;}
.y30_c01050{bottom:651.463899pt;}
.y31_c01050{bottom:652.006027pt;}
.y32_c01050{bottom:652.464000pt;}
.y33_c01050{bottom:653.490403pt;}
.y24_c01050{bottom:669.114773pt;}
.y25_c01050{bottom:669.619907pt;}
.y26_c01050{bottom:670.147657pt;}
.y27_c01050{bottom:671.835863pt;}
.y28_c01050{bottom:672.432735pt;}
.y29_c01050{bottom:673.205812pt;}
.y2a_c01050{bottom:673.681641pt;}
.y1e_c01050{bottom:689.038340pt;}
.y1f_c01050{bottom:689.490359pt;}
.y20_c01050{bottom:691.924229pt;}
.y21_c01050{bottom:692.606052pt;}
.y22_c01050{bottom:693.475629pt;}
.y23_c01050{bottom:694.590375pt;}
.y15_c01050{bottom:708.961453pt;}
.y16_c01050{bottom:709.768408pt;}
.y17_c01050{bottom:710.145595pt;}
.y18_c01050{bottom:710.885919pt;}
.y19_c01050{bottom:711.443425pt;}
.y1a_c01050{bottom:712.481907pt;}
.y1b_c01050{bottom:713.265867pt;}
.y1c_c01050{bottom:713.771808pt;}
.y1d_c01050{bottom:714.601739pt;}
.yc_c01050{bottom:729.602667pt;}
.yd_c01050{bottom:730.280740pt;}
.ye_c01050{bottom:730.929165pt;}
.yf_c01050{bottom:731.518136pt;}
.y10_c01050{bottom:732.634719pt;}
.y11_c01050{bottom:732.974560pt;}
.y12_c01050{bottom:733.483449pt;}
.y13_c01050{bottom:733.957364pt;}
.y14_c01050{bottom:734.332316pt;}
.y2_c01050{bottom:770.400555pt;}
.y3_c01050{bottom:771.746573pt;}
.y4_c01050{bottom:772.280459pt;}
.y5_c01050{bottom:774.067557pt;}
.y6_c01050{bottom:774.438059pt;}
.y7_c01050{bottom:775.255016pt;}
.y8_c01050{bottom:776.785037pt;}
.yb_c01050{bottom:802.080000pt;}
.y1_c01050{bottom:804.012000pt;}
.ya_c01050{bottom:811.920000pt;}
.y9_c01050{bottom:815.280000pt;}
.h5_c01050{height:26.133333pt;}
.h1d_c01050{height:40.137266pt;}
.hc_c01050{height:40.152613pt;}
.h1c_c01050{height:49.471514pt;}
.h4_c01050{height:51.333333pt;}
.h13_c01050{height:53.207687pt;}
.h14_c01050{height:55.066667pt;}
.h15_c01050{height:56.000000pt;}
.h16_c01050{height:56.938913pt;}
.h19_c01050{height:57.872337pt;}
.h6_c01050{height:57.875028pt;}
.h18_c01050{height:58.805762pt;}
.h11_c01050{height:59.736947pt;}
.h1b_c01050{height:61.606037pt;}
.h12_c01050{height:62.537116pt;}
.h1a_c01050{height:62.539461pt;}
.h7_c01050{height:62.542369pt;}
.h8_c01050{height:63.475837pt;}
.hd_c01050{height:64.403896pt;}
.h17_c01050{height:65.339736pt;}
.hb_c01050{height:65.342773pt;}
.h10_c01050{height:66.270676pt;}
.ha_c01050{height:66.276242pt;}
.he_c01050{height:67.204065pt;}
.hf_c01050{height:68.137455pt;}
.h9_c01050{height:68.143178pt;}
.h3_c01050{height:71.878308pt;}
.h2_c01050{height:149.357523pt;}
.h1_c01050{height:893.333333pt;}
.h0_c01050{height:893.466667pt;}
.w0_c01050{width:635.733333pt;}
.w1_c01050{width:636.000000pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:47.980000pt;}
.x80_c01050{left:99.876067pt;}
.x23_c01050{left:102.893221pt;}
.x7a_c01050{left:111.227320pt;}
.x3a_c01050{left:115.633333pt;}
.x24_c01050{left:120.424183pt;}
.x51_c01050{left:121.887409pt;}
.x81_c01050{left:123.600000pt;}
.xb_c01050{left:126.912000pt;}
.x58_c01050{left:128.559656pt;}
.x53_c01050{left:129.560000pt;}
.x6f_c01050{left:130.750563pt;}
.x82_c01050{left:142.560000pt;}
.x1b_c01050{left:149.542917pt;}
.x59_c01050{left:151.131479pt;}
.x1e_c01050{left:154.992859pt;}
.x49_c01050{left:157.203807pt;}
.x25_c01050{left:160.042196pt;}
.x7b_c01050{left:162.344029pt;}
.x74_c01050{left:164.501053pt;}
.xc_c01050{left:166.798667pt;}
.x36_c01050{left:167.838667pt;}
.x2_c01050{left:170.507163pt;}
.x2c_c01050{left:172.354584pt;}
.x5d_c01050{left:176.880000pt;}
.x31_c01050{left:178.701972pt;}
.x62_c01050{left:182.334699pt;}
.x1f_c01050{left:184.311027pt;}
.x14_c01050{left:186.177131pt;}
.x75_c01050{left:188.028400pt;}
.x5a_c01050{left:189.536095pt;}
.x6c_c01050{left:200.098669pt;}
.x7c_c01050{left:202.891256pt;}
.xd_c01050{left:204.941333pt;}
.x40_c01050{left:206.162299pt;}
.x76_c01050{left:210.355784pt;}
.x26_c01050{left:212.999103pt;}
.x6d_c01050{left:217.383275pt;}
.x41_c01050{left:219.838723pt;}
.x15_c01050{left:223.213916pt;}
.x4a_c01050{left:229.448548pt;}
.x2d_c01050{left:233.531336pt;}
.x7d_c01050{left:234.827704pt;}
.x27_c01050{left:236.120821pt;}
.x3_c01050{left:237.802072pt;}
.xe_c01050{left:239.586667pt;}
.x63_c01050{left:241.279395pt;}
.x7f_c01050{left:243.799835pt;}
.x2f_c01050{left:245.531599pt;}
.x37_c01050{left:247.413333pt;}
.x16_c01050{left:251.065821pt;}
.x54_c01050{left:254.265333pt;}
.x32_c01050{left:256.033935pt;}
.x48_c01050{left:257.528879pt;}
.x7e_c01050{left:260.116059pt;}
.x77_c01050{left:261.757013pt;}
.x4_c01050{left:264.498445pt;}
.x42_c01050{left:266.371657pt;}
.x5b_c01050{left:270.188197pt;}
.x1c_c01050{left:271.215373pt;}
.x30_c01050{left:273.135577pt;}
.x28_c01050{left:275.178812pt;}
.x20_c01050{left:278.125440pt;}
.x33_c01050{left:281.472129pt;}
.x64_c01050{left:286.512856pt;}
.x38_c01050{left:290.946667pt;}
.x2e_c01050{left:294.976088pt;}
.x3c_c01050{left:298.571907pt;}
.x17_c01050{left:302.973836pt;}
.xf_c01050{left:305.268000pt;}
.x29_c01050{left:309.030045pt;}
.x21_c01050{left:311.274207pt;}
.x70_c01050{left:312.685704pt;}
.x3d_c01050{left:315.612641pt;}
.x69_c01050{left:317.385192pt;}
.x65_c01050{left:319.633675pt;}
.x5f_c01050{left:323.922667pt;}
.x10_c01050{left:325.258667pt;}
.x39_c01050{left:327.505333pt;}
.x3e_c01050{left:329.052936pt;}
.x5c_c01050{left:330.195257pt;}
.x4d_c01050{left:334.301544pt;}
.x2a_c01050{left:337.617188pt;}
.x43_c01050{left:339.116195pt;}
.x18_c01050{left:342.185175pt;}
.x4b_c01050{left:346.395424pt;}
.x1d_c01050{left:348.744740pt;}
.x5e_c01050{left:349.680000pt;}
.x34_c01050{left:351.514509pt;}
.x5_c01050{left:353.852563pt;}
.x11_c01050{left:355.193333pt;}
.x44_c01050{left:358.010948pt;}
.x6a_c01050{left:362.073744pt;}
.x19_c01050{left:367.474549pt;}
.x4e_c01050{left:370.318376pt;}
.x6_c01050{left:372.361224pt;}
.x55_c01050{left:376.306667pt;}
.x22_c01050{left:380.659695pt;}
.x12_c01050{left:383.070667pt;}
.x60_c01050{left:385.086667pt;}
.x35_c01050{left:387.369067pt;}
.x66_c01050{left:391.905643pt;}
.x71_c01050{left:396.944981pt;}
.x45_c01050{left:399.134901pt;}
.x2b_c01050{left:401.759609pt;}
.x13_c01050{left:405.126667pt;}
.x1a_c01050{left:408.997775pt;}
.x7_c01050{left:413.227760pt;}
.x61_c01050{left:414.792000pt;}
.x4c_c01050{left:417.602175pt;}
.x56_c01050{left:418.809333pt;}
.x46_c01050{left:422.756013pt;}
.x4f_c01050{left:425.922811pt;}
.x6e_c01050{left:437.990016pt;}
.x50_c01050{left:454.338984pt;}
.x3f_c01050{left:456.260321pt;}
.x47_c01050{left:460.325535pt;}
.x57_c01050{left:463.793333pt;}
.x67_c01050{left:469.578627pt;}
.x3b_c01050{left:470.980000pt;}
.x8_c01050{left:489.707667pt;}
.x52_c01050{left:497.849260pt;}
.x78_c01050{left:526.176269pt;}
.x72_c01050{left:541.274232pt;}
.x79_c01050{left:545.058413pt;}
.x68_c01050{left:546.647648pt;}
.x6b_c01050{left:549.314936pt;}
.xa_c01050{left:556.080000pt;}
.x9_c01050{left:562.800000pt;}
.x73_c01050{left:573.371107pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.000000;font-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_c01051{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);}
.m9a_c01051{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);}
.m29_c01051{transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046030,0.000000,0.000000,0.250000,0,0);}
.m67_c01051{transform:matrix(0.080790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080790,0.000000,0.000000,0.250000,0,0);}
.m5f_c01051{transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);}
.m9d_c01051{transform:matrix(0.108865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108865,0.000000,0.000000,0.250000,0,0);}
.m2e_c01051{transform:matrix(0.117610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117610,0.000000,0.000000,0.250000,0,0);}
.me_c01051{transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);}
.m97_c01051{transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);}
.m88_c01051{transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135415,0.000000,0.000000,0.250000,0,0);}
.m1c_c01051{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);}
.mc_c01051{transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);}
.mf_c01051{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m14_c01051{transform:matrix(0.155290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155290,0.000000,0.000000,0.250000,0,0);}
.m3_c01051{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);}
.md_c01051{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m34_c01051{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);}
.m79_c01051{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);}
.m4_c01051{transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168420,0.000000,0.000000,0.250000,0,0);}
.m15_c01051{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_c01051{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_c01051{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);}
.m1e_c01051{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);}
.m76_c01051{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);}
.m19_c01051{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);}
.m71_c01051{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);}
.m47_c01051{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);}
.m52_c01051{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);}
.m5_c01051{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);}
.m18_c01051{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);}
.m6b_c01051{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);}
.m1f_c01051{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);}
.m7_c01051{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);}
.m48_c01051{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);}
.m16_c01051{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);}
.m1b_c01051{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);}
.m11_c01051{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);}
.m21_c01051{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);}
.m13_c01051{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);}
.m8b_c01051{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);}
.m10_c01051{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);}
.m1d_c01051{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);}
.m33_c01051{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);}
.m6_c01051{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);}
.m1a_c01051{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);}
.m96_c01051{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);}
.m54_c01051{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);}
.m6e_c01051{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);}
.m0_c01051{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);}
.m7b_c01051{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);}
.m8_c01051{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);}
.m69_c01051{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);}
.m7a_c01051{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);}
.m84_c01051{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);}
.m4f_c01051{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);}
.mb_c01051{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);}
.m82_c01051{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);}
.m8f_c01051{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);}
.m12_c01051{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);}
.m32_c01051{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);}
.m8a_c01051{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);}
.m80_c01051{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);}
.m83_c01051{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);}
.m1_c01051{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);}
.m8c_c01051{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);}
.m6a_c01051{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);}
.m4e_c01051{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);}
.m4d_c01051{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);}
.m55_c01051{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);}
.m89_c01051{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);}
.m87_c01051{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);}
.m9f_c01051{transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);}
.m53_c01051{transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);}
.m7f_c01051{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);}
.m72_c01051{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);}
.m95_c01051{transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);}
.m90_c01051{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);}
.ma9_c01051{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);}
.m20_c01051{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);}
.m7e_c01051{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);}
.m50_c01051{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);}
.m6d_c01051{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);}
.m92_c01051{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);}
.m70_c01051{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);}
.m4b_c01051{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);}
.m4c_c01051{transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230480,0.000000,0.000000,0.250000,0,0);}
.m93_c01051{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);}
.m38_c01051{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);}
.m6f_c01051{transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);}
.m35_c01051{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);}
.m66_c01051{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.ma4_c01051{transform:matrix(0.235732,0.004243,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235732,0.004243,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235732,0.004243,-0.004499,0.249960,0,0);}
.ma_c01051{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);}
.m7d_c01051{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.ma6_c01051{transform:matrix(0.240651,0.004332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240651,0.004332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240651,0.004332,-0.004499,0.249960,0,0);}
.m4a_c01051{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);}
.m63_c01051{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);}
.m78_c01051{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m8d_c01051{transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);}
.m7c_c01051{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);}
.ma2_c01051{transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);}
.m3f_c01051{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m62_c01051{transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);}
.ma8_c01051{transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254359,0.004578,-0.004499,0.249960,0,0);}
.m85_c01051{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);}
.m81_c01051{transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258675,0.000000,0.000000,0.250000,0,0);}
.m37_c01051{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);}
.m3d_c01051{transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267445,0.000000,0.000000,0.250000,0,0);}
.m8e_c01051{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);}
.m73_c01051{transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272825,0.000000,0.000000,0.250000,0,0);}
.m42_c01051{transform:matrix(0.272885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272885,0.000000,0.000000,0.250000,0,0);}
.m56_c01051{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);}
.ma5_c01051{transform:matrix(0.285949,0.005147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.285949,0.005147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.285949,0.005147,-0.004499,0.249960,0,0);}
.m59_c01051{transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286665,0.000000,0.000000,0.250000,0,0);}
.m61_c01051{transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286870,0.000000,0.000000,0.250000,0,0);}
.m64_c01051{transform:matrix(0.289150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289150,0.000000,0.000000,0.250000,0,0);}
.m6c_c01051{transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298280,0.000000,0.000000,0.250000,0,0);}
.m2_c01051{transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);}
.m74_c01051{transform:matrix(0.302840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302840,0.000000,0.000000,0.250000,0,0);}
.m5b_c01051{transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);}
.m31_c01051{transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);}
.m68_c01051{transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);}
.m58_c01051{transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312400,0.000000,0.000000,0.250000,0,0);}
.m91_c01051{transform:matrix(0.317360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317360,0.000000,0.000000,0.250000,0,0);}
.m2f_c01051{transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318030,0.000000,0.000000,0.250000,0,0);}
.m3c_c01051{transform:matrix(0.326865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326865,0.000000,0.000000,0.250000,0,0);}
.m46_c01051{transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331020,0.000000,0.000000,0.250000,0,0);}
.m51_c01051{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);}
.m26_c01051{transform:matrix(0.336405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336405,0.000000,0.000000,0.250000,0,0);}
.m3e_c01051{transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347375,0.000000,0.000000,0.250000,0,0);}
.m57_c01051{transform:matrix(0.348515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348515,0.000000,0.000000,0.250000,0,0);}
.m99_c01051{transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355040,0.000000,0.000000,0.250000,0,0);}
.m40_c01051{transform:matrix(0.355580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355580,0.000000,0.000000,0.250000,0,0);}
.m25_c01051{transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356825,0.000000,0.000000,0.250000,0,0);}
.m75_c01051{transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360325,0.000000,0.000000,0.250000,0,0);}
.m65_c01051{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);}
.ma7_c01051{transform:matrix(0.367605,0.006617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.367605,0.006617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.367605,0.006617,-0.004499,0.249960,0,0);}
.m43_c01051{transform:matrix(0.368560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368560,0.000000,0.000000,0.250000,0,0);}
.m30_c01051{transform:matrix(0.372710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372710,0.000000,0.000000,0.250000,0,0);}
.m86_c01051{transform:matrix(0.373225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373225,0.000000,0.000000,0.250000,0,0);}
.m3a_c01051{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);}
.m2a_c01051{transform:matrix(0.393945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393945,0.000000,0.000000,0.250000,0,0);}
.m9c_c01051{transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);}
.m45_c01051{transform:matrix(0.398925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398925,0.000000,0.000000,0.250000,0,0);}
.m77_c01051{transform:matrix(0.400145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400145,0.000000,0.000000,0.250000,0,0);}
.m39_c01051{transform:matrix(0.402795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402795,0.000000,0.000000,0.250000,0,0);}
.m3b_c01051{transform:matrix(0.406965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406965,0.000000,0.000000,0.250000,0,0);}
.m2c_c01051{transform:matrix(0.412680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412680,0.000000,0.000000,0.250000,0,0);}
.m60_c01051{transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425165,0.000000,0.000000,0.250000,0,0);}
.m2b_c01051{transform:matrix(0.432480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432480,0.000000,0.000000,0.250000,0,0);}
.m44_c01051{transform:matrix(0.437575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437575,0.000000,0.000000,0.250000,0,0);}
.m5a_c01051{transform:matrix(0.438720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438720,0.000000,0.000000,0.250000,0,0);}
.m94_c01051{transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444245,0.000000,0.000000,0.250000,0,0);}
.m36_c01051{transform:matrix(0.494370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494370,0.000000,0.000000,0.250000,0,0);}
.m5c_c01051{transform:matrix(0.497300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01051{transform:matrix(0.504565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504565,0.000000,0.000000,0.250000,0,0);}
.m27_c01051{transform:matrix(0.508475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508475,0.000000,0.000000,0.250000,0,0);}
.m9b_c01051{transform:matrix(0.526205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526205,0.000000,0.000000,0.250000,0,0);}
.m23_c01051{transform:matrix(0.557700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557700,0.000000,0.000000,0.250000,0,0);}
.m24_c01051{transform:matrix(0.566515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566515,0.000000,0.000000,0.250000,0,0);}
.m49_c01051{transform:matrix(0.585065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585065,0.000000,0.000000,0.250000,0,0);}
.m41_c01051{transform:matrix(0.585485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585485,0.000000,0.000000,0.250000,0,0);}
.m5d_c01051{transform:matrix(0.594140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594140,0.000000,0.000000,0.250000,0,0);}
.m9e_c01051{transform:matrix(0.609925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609925,0.000000,0.000000,0.250000,0,0);}
.ma1_c01051{transform:matrix(0.624475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624475,0.000000,0.000000,0.250000,0,0);}
.m22_c01051{transform:matrix(0.665700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665700,0.000000,0.000000,0.250000,0,0);}
.m5e_c01051{transform:matrix(0.686580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686580,0.000000,0.000000,0.250000,0,0);}
.m28_c01051{transform:matrix(0.722530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722530,0.000000,0.000000,0.250000,0,0);}
.m98_c01051{transform:matrix(0.897715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897715,0.000000,0.000000,0.250000,0,0);}
.ma3_c01051{transform:matrix(1.097475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097475,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls0_c01051{letter-spacing:0.000000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:0.000000px;}
.fc0_c01051{color:transparent;}
.fsa_c01051{font-size:51.450000px;}
.fs5_c01051{font-size:55.650000px;}
.fs10_c01051{font-size:58.809525px;}
.fsd_c01051{font-size:61.950000px;}
.fs9_c01051{font-size:63.000000px;}
.fs1_c01051{font-size:65.100000px;}
.fse_c01051{font-size:67.200000px;}
.fsc_c01051{font-size:68.250000px;}
.fsb_c01051{font-size:70.350000px;}
.fs3_c01051{font-size:72.450000px;}
.fs4_c01051{font-size:73.500000px;}
.fs2_c01051{font-size:75.600000px;}
.fs11_c01051{font-size:79.800000px;}
.fs7_c01051{font-size:85.050000px;}
.fs8_c01051{font-size:89.250000px;}
.fsf_c01051{font-size:99.750000px;}
.fs6_c01051{font-size:133.350000px;}
.fs0_c01051{font-size:172.200000px;}
.y0_c01051{bottom:0.000000px;}
.y2d_c01051{bottom:16.200000px;}
.y2c_c01051{bottom:163.712925px;}
.y2b_c01051{bottom:164.252817px;}
.y2a_c01051{bottom:164.966076px;}
.y29_c01051{bottom:165.742353px;}
.y28_c01051{bottom:166.324500px;}
.y27_c01051{bottom:185.172000px;}
.y26_c01051{bottom:252.574500px;}
.y25_c01051{bottom:275.188500px;}
.y24_c01051{bottom:277.495500px;}
.y23_c01051{bottom:278.815500px;}
.y22_c01051{bottom:279.807000px;}
.y21_c01051{bottom:280.419000px;}
.y20_c01051{bottom:281.046000px;}
.y1f_c01051{bottom:294.117000px;}
.y1e_c01051{bottom:296.371500px;}
.y1d_c01051{bottom:297.609000px;}
.y1c_c01051{bottom:298.105500px;}
.y1b_c01051{bottom:317.604000px;}
.y1a_c01051{bottom:317.986500px;}
.y19_c01051{bottom:318.532500px;}
.y18_c01051{bottom:319.068000px;}
.y17_c01051{bottom:319.837500px;}
.y16_c01051{bottom:320.530500px;}
.y15_c01051{bottom:321.031500px;}
.y14_c01051{bottom:341.685000px;}
.y13_c01051{bottom:364.155000px;}
.y12_c01051{bottom:386.547000px;}
.y11_c01051{bottom:410.160000px;}
.y10_c01051{bottom:433.797000px;}
.yf_c01051{bottom:456.511500px;}
.ye_c01051{bottom:477.738000px;}
.yd_c01051{bottom:500.511000px;}
.yc_c01051{bottom:524.031000px;}
.yb_c01051{bottom:545.881500px;}
.ya_c01051{bottom:588.105000px;}
.y9_c01051{bottom:614.242500px;}
.y8_c01051{bottom:639.958500px;}
.y7_c01051{bottom:660.648000px;}
.y6_c01051{bottom:685.275000px;}
.y5_c01051{bottom:761.854500px;}
.y4_c01051{bottom:784.990500px;}
.y3_c01051{bottom:808.183500px;}
.y2_c01051{bottom:830.742000px;}
.y1_c01051{bottom:871.938000px;}
.hc_c01051{height:51.450000px;}
.h7_c01051{height:55.650000px;}
.h12_c01051{height:58.809525px;}
.hf_c01051{height:61.950000px;}
.hb_c01051{height:63.000000px;}
.h3_c01051{height:65.100000px;}
.h10_c01051{height:67.200000px;}
.he_c01051{height:68.250000px;}
.hd_c01051{height:70.350000px;}
.h5_c01051{height:72.450000px;}
.h6_c01051{height:73.500000px;}
.h4_c01051{height:75.600000px;}
.h13_c01051{height:79.800000px;}
.h9_c01051{height:85.050000px;}
.ha_c01051{height:89.250000px;}
.h11_c01051{height:99.750000px;}
.h8_c01051{height:133.350000px;}
.h2_c01051{height:172.200000px;}
.h0_c01051{height:1008.450000px;}
.h1_c01051{height:1008.750000px;}
.w1_c01051{width:700.500000px;}
.w0_c01051{width:700.650000px;}
.x0_c01051{left:0.000000px;}
.x2c_c01051{left:154.980000px;}
.x4c_c01051{left:157.680000px;}
.xb_c01051{left:159.030000px;}
.x3_c01051{left:164.700000px;}
.x6e_c01051{left:166.182000px;}
.x3e_c01051{left:167.400000px;}
.x55_c01051{left:168.750000px;}
.x11_c01051{left:169.830000px;}
.x32_c01051{left:177.120000px;}
.x78_c01051{left:185.220000px;}
.xc_c01051{left:190.620000px;}
.x46_c01051{left:192.510000px;}
.x51_c01051{left:195.480000px;}
.x2d_c01051{left:197.100000px;}
.x4_c01051{left:198.720000px;}
.x26_c01051{left:200.880000px;}
.x12_c01051{left:202.230000px;}
.x4d_c01051{left:203.310000px;}
.x70_c01051{left:206.319000px;}
.x1a_c01051{left:209.520000px;}
.x69_c01051{left:213.933000px;}
.x1_c01051{left:215.730000px;}
.x47_c01051{left:219.780000px;}
.x5c_c01051{left:223.020000px;}
.x63_c01051{left:224.910000px;}
.x27_c01051{left:228.420000px;}
.xd_c01051{left:232.740000px;}
.x4e_c01051{left:236.250000px;}
.x3f_c01051{left:237.330000px;}
.x33_c01051{left:238.410000px;}
.x43_c01051{left:242.460000px;}
.x76_c01051{left:243.940500px;}
.x48_c01051{left:247.590000px;}
.x28_c01051{left:257.310000px;}
.x13_c01051{left:259.200000px;}
.x64_c01051{left:261.900000px;}
.xe_c01051{left:266.220000px;}
.x1f_c01051{left:270.270000px;}
.x5_c01051{left:271.890000px;}
.x6a_c01051{left:276.883500px;}
.x56_c01051{left:281.070000px;}
.x14_c01051{left:282.960000px;}
.x52_c01051{left:286.470000px;}
.x6_c01051{left:289.440000px;}
.x75_c01051{left:291.060000px;}
.x1b_c01051{left:296.460000px;}
.x40_c01051{left:300.510000px;}
.x4f_c01051{left:301.860000px;}
.x34_c01051{left:305.640000px;}
.x20_c01051{left:308.340000px;}
.x77_c01051{left:313.560000px;}
.x7_c01051{left:314.820000px;}
.x2e_c01051{left:319.950000px;}
.x53_c01051{left:321.030000px;}
.x49_c01051{left:323.460000px;}
.x5d_c01051{left:326.160000px;}
.x50_c01051{left:329.940000px;}
.x21_c01051{left:332.100000px;}
.x15_c01051{left:334.260000px;}
.x57_c01051{left:340.200000px;}
.xf_c01051{left:343.440000px;}
.x3a_c01051{left:345.330000px;}
.x6b_c01051{left:346.831500px;}
.x35_c01051{left:349.110000px;}
.x4a_c01051{left:350.730000px;}
.x72_c01051{left:353.161500px;}
.x1c_c01051{left:354.240000px;}
.x16_c01051{left:359.910000px;}
.x22_c01051{left:362.340000px;}
.x36_c01051{left:369.900000px;}
.x2_c01051{left:372.330000px;}
.x29_c01051{left:374.220000px;}
.x5e_c01051{left:377.730000px;}
.x65_c01051{left:380.160000px;}
.x41_c01051{left:382.320000px;}
.x10_c01051{left:386.100000px;}
.x8_c01051{left:387.720000px;}
.x3b_c01051{left:389.340000px;}
.x4b_c01051{left:392.850000px;}
.x37_c01051{left:396.090000px;}
.x23_c01051{left:398.520000px;}
.x17_c01051{left:401.490000px;}
.x2f_c01051{left:409.320000px;}
.x38_c01051{left:413.100000px;}
.x9_c01051{left:416.340000px;}
.x5f_c01051{left:420.120000px;}
.x66_c01051{left:421.200000px;}
.x24_c01051{left:425.790000px;}
.x54_c01051{left:429.300000px;}
.x18_c01051{left:431.190000px;}
.x25_c01051{left:435.780000px;}
.x6c_c01051{left:445.072500px;}
.x1d_c01051{left:446.850000px;}
.x3c_c01051{left:447.930000px;}
.x39_c01051{left:451.440000px;}
.x30_c01051{left:453.330000px;}
.x58_c01051{left:454.950000px;}
.x60_c01051{left:458.460000px;}
.x73_c01051{left:465.211500px;}
.x44_c01051{left:467.100000px;}
.x19_c01051{left:469.530000px;}
.x1e_c01051{left:475.740000px;}
.x61_c01051{left:476.820000px;}
.x6d_c01051{left:479.865000px;}
.x59_c01051{left:482.220000px;}
.x67_c01051{left:484.380000px;}
.xa_c01051{left:491.940000px;}
.x2a_c01051{left:494.370000px;}
.x42_c01051{left:498.960000px;}
.x31_c01051{left:502.740000px;}
.x74_c01051{left:508.951500px;}
.x3d_c01051{left:511.920000px;}
.x5a_c01051{left:513.000000px;}
.x71_c01051{left:514.050000px;}
.x62_c01051{left:522.720000px;}
.x5b_c01051{left:530.280000px;}
.x68_c01051{left:534.870000px;}
.x45_c01051{left:542.970000px;}
.x6f_c01051{left:564.957000px;}
.x2b_c01051{left:607.770000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls0_c01051{letter-spacing:0.000000pt;}
.ws0_c01051{word-spacing:0.000000pt;}
.fsa_c01051{font-size:45.733333pt;}
.fs5_c01051{font-size:49.466667pt;}
.fs10_c01051{font-size:52.275133pt;}
.fsd_c01051{font-size:55.066667pt;}
.fs9_c01051{font-size:56.000000pt;}
.fs1_c01051{font-size:57.866667pt;}
.fse_c01051{font-size:59.733333pt;}
.fsc_c01051{font-size:60.666667pt;}
.fsb_c01051{font-size:62.533333pt;}
.fs3_c01051{font-size:64.400000pt;}
.fs4_c01051{font-size:65.333333pt;}
.fs2_c01051{font-size:67.200000pt;}
.fs11_c01051{font-size:70.933333pt;}
.fs7_c01051{font-size:75.600000pt;}
.fs8_c01051{font-size:79.333333pt;}
.fsf_c01051{font-size:88.666667pt;}
.fs6_c01051{font-size:118.533333pt;}
.fs0_c01051{font-size:153.066667pt;}
.y0_c01051{bottom:0.000000pt;}
.y2d_c01051{bottom:14.400000pt;}
.y2c_c01051{bottom:145.522600pt;}
.y2b_c01051{bottom:146.002504pt;}
.y2a_c01051{bottom:146.636512pt;}
.y29_c01051{bottom:147.326536pt;}
.y28_c01051{bottom:147.844000pt;}
.y27_c01051{bottom:164.597333pt;}
.y26_c01051{bottom:224.510667pt;}
.y25_c01051{bottom:244.612000pt;}
.y24_c01051{bottom:246.662667pt;}
.y23_c01051{bottom:247.836000pt;}
.y22_c01051{bottom:248.717333pt;}
.y21_c01051{bottom:249.261333pt;}
.y20_c01051{bottom:249.818667pt;}
.y1f_c01051{bottom:261.437333pt;}
.y1e_c01051{bottom:263.441333pt;}
.y1d_c01051{bottom:264.541333pt;}
.y1c_c01051{bottom:264.982667pt;}
.y1b_c01051{bottom:282.314667pt;}
.y1a_c01051{bottom:282.654667pt;}
.y19_c01051{bottom:283.140000pt;}
.y18_c01051{bottom:283.616000pt;}
.y17_c01051{bottom:284.300000pt;}
.y16_c01051{bottom:284.916000pt;}
.y15_c01051{bottom:285.361333pt;}
.y14_c01051{bottom:303.720000pt;}
.y13_c01051{bottom:323.693333pt;}
.y12_c01051{bottom:343.597333pt;}
.y11_c01051{bottom:364.586667pt;}
.y10_c01051{bottom:385.597333pt;}
.yf_c01051{bottom:405.788000pt;}
.ye_c01051{bottom:424.656000pt;}
.yd_c01051{bottom:444.898667pt;}
.yc_c01051{bottom:465.805333pt;}
.yb_c01051{bottom:485.228000pt;}
.ya_c01051{bottom:522.760000pt;}
.y9_c01051{bottom:545.993333pt;}
.y8_c01051{bottom:568.852000pt;}
.y7_c01051{bottom:587.242667pt;}
.y6_c01051{bottom:609.133333pt;}
.y5_c01051{bottom:677.204000pt;}
.y4_c01051{bottom:697.769333pt;}
.y3_c01051{bottom:718.385333pt;}
.y2_c01051{bottom:738.437333pt;}
.y1_c01051{bottom:775.056000pt;}
.hc_c01051{height:45.733333pt;}
.h7_c01051{height:49.466667pt;}
.h12_c01051{height:52.275133pt;}
.hf_c01051{height:55.066667pt;}
.hb_c01051{height:56.000000pt;}
.h3_c01051{height:57.866667pt;}
.h10_c01051{height:59.733333pt;}
.he_c01051{height:60.666667pt;}
.hd_c01051{height:62.533333pt;}
.h5_c01051{height:64.400000pt;}
.h6_c01051{height:65.333333pt;}
.h4_c01051{height:67.200000pt;}
.h13_c01051{height:70.933333pt;}
.h9_c01051{height:75.600000pt;}
.ha_c01051{height:79.333333pt;}
.h11_c01051{height:88.666667pt;}
.h8_c01051{height:118.533333pt;}
.h2_c01051{height:153.066667pt;}
.h0_c01051{height:896.400000pt;}
.h1_c01051{height:896.666667pt;}
.w1_c01051{width:622.666667pt;}
.w0_c01051{width:622.800000pt;}
.x0_c01051{left:0.000000pt;}
.x2c_c01051{left:137.760000pt;}
.x4c_c01051{left:140.160000pt;}
.xb_c01051{left:141.360000pt;}
.x3_c01051{left:146.400000pt;}
.x6e_c01051{left:147.717333pt;}
.x3e_c01051{left:148.800000pt;}
.x55_c01051{left:150.000000pt;}
.x11_c01051{left:150.960000pt;}
.x32_c01051{left:157.440000pt;}
.x78_c01051{left:164.640000pt;}
.xc_c01051{left:169.440000pt;}
.x46_c01051{left:171.120000pt;}
.x51_c01051{left:173.760000pt;}
.x2d_c01051{left:175.200000pt;}
.x4_c01051{left:176.640000pt;}
.x26_c01051{left:178.560000pt;}
.x12_c01051{left:179.760000pt;}
.x4d_c01051{left:180.720000pt;}
.x70_c01051{left:183.394667pt;}
.x1a_c01051{left:186.240000pt;}
.x69_c01051{left:190.162667pt;}
.x1_c01051{left:191.760000pt;}
.x47_c01051{left:195.360000pt;}
.x5c_c01051{left:198.240000pt;}
.x63_c01051{left:199.920000pt;}
.x27_c01051{left:203.040000pt;}
.xd_c01051{left:206.880000pt;}
.x4e_c01051{left:210.000000pt;}
.x3f_c01051{left:210.960000pt;}
.x33_c01051{left:211.920000pt;}
.x43_c01051{left:215.520000pt;}
.x76_c01051{left:216.836000pt;}
.x48_c01051{left:220.080000pt;}
.x28_c01051{left:228.720000pt;}
.x13_c01051{left:230.400000pt;}
.x64_c01051{left:232.800000pt;}
.xe_c01051{left:236.640000pt;}
.x1f_c01051{left:240.240000pt;}
.x5_c01051{left:241.680000pt;}
.x6a_c01051{left:246.118667pt;}
.x56_c01051{left:249.840000pt;}
.x14_c01051{left:251.520000pt;}
.x52_c01051{left:254.640000pt;}
.x6_c01051{left:257.280000pt;}
.x75_c01051{left:258.720000pt;}
.x1b_c01051{left:263.520000pt;}
.x40_c01051{left:267.120000pt;}
.x4f_c01051{left:268.320000pt;}
.x34_c01051{left:271.680000pt;}
.x20_c01051{left:274.080000pt;}
.x77_c01051{left:278.720000pt;}
.x7_c01051{left:279.840000pt;}
.x2e_c01051{left:284.400000pt;}
.x53_c01051{left:285.360000pt;}
.x49_c01051{left:287.520000pt;}
.x5d_c01051{left:289.920000pt;}
.x50_c01051{left:293.280000pt;}
.x21_c01051{left:295.200000pt;}
.x15_c01051{left:297.120000pt;}
.x57_c01051{left:302.400000pt;}
.xf_c01051{left:305.280000pt;}
.x3a_c01051{left:306.960000pt;}
.x6b_c01051{left:308.294667pt;}
.x35_c01051{left:310.320000pt;}
.x4a_c01051{left:311.760000pt;}
.x72_c01051{left:313.921333pt;}
.x1c_c01051{left:314.880000pt;}
.x16_c01051{left:319.920000pt;}
.x22_c01051{left:322.080000pt;}
.x36_c01051{left:328.800000pt;}
.x2_c01051{left:330.960000pt;}
.x29_c01051{left:332.640000pt;}
.x5e_c01051{left:335.760000pt;}
.x65_c01051{left:337.920000pt;}
.x41_c01051{left:339.840000pt;}
.x10_c01051{left:343.200000pt;}
.x8_c01051{left:344.640000pt;}
.x3b_c01051{left:346.080000pt;}
.x4b_c01051{left:349.200000pt;}
.x37_c01051{left:352.080000pt;}
.x23_c01051{left:354.240000pt;}
.x17_c01051{left:356.880000pt;}
.x2f_c01051{left:363.840000pt;}
.x38_c01051{left:367.200000pt;}
.x9_c01051{left:370.080000pt;}
.x5f_c01051{left:373.440000pt;}
.x66_c01051{left:374.400000pt;}
.x24_c01051{left:378.480000pt;}
.x54_c01051{left:381.600000pt;}
.x18_c01051{left:383.280000pt;}
.x25_c01051{left:387.360000pt;}
.x6c_c01051{left:395.620000pt;}
.x1d_c01051{left:397.200000pt;}
.x3c_c01051{left:398.160000pt;}
.x39_c01051{left:401.280000pt;}
.x30_c01051{left:402.960000pt;}
.x58_c01051{left:404.400000pt;}
.x60_c01051{left:407.520000pt;}
.x73_c01051{left:413.521333pt;}
.x44_c01051{left:415.200000pt;}
.x19_c01051{left:417.360000pt;}
.x1e_c01051{left:422.880000pt;}
.x61_c01051{left:423.840000pt;}
.x6d_c01051{left:426.546667pt;}
.x59_c01051{left:428.640000pt;}
.x67_c01051{left:430.560000pt;}
.xa_c01051{left:437.280000pt;}
.x2a_c01051{left:439.440000pt;}
.x42_c01051{left:443.520000pt;}
.x31_c01051{left:446.880000pt;}
.x74_c01051{left:452.401333pt;}
.x3d_c01051{left:455.040000pt;}
.x5a_c01051{left:456.000000pt;}
.x71_c01051{left:456.933333pt;}
.x62_c01051{left:464.640000pt;}
.x5b_c01051{left:471.360000pt;}
.x68_c01051{left:475.440000pt;}
.x45_c01051{left:482.640000pt;}
.x6f_c01051{left:502.184000pt;}
.x2b_c01051{left:540.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_c01052 {
    display:none;
  }
  .loading-indicator_c01052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01052 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01052 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01052" -> "#page-container .classname_c01052")
 */
.pf_c01052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01052 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01052 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01052 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01052 {overflow:visible;}
  }
}
.c_c01052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01052 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01052:after { /* webkit #35443 */
  content: '';
}
.t_c01052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01052 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01052 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01052 { /* info for Javascript */
  display:none;
}
.l_c01052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.000000;font-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_c01052{transform:matrix(0.007024,-0.000091,0.003250,0.249979,0,0);-ms-transform:matrix(0.007024,-0.000091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.007024,-0.000091,0.003250,0.249979,0,0);}
.m57_c01052{transform:matrix(0.012134,-0.000158,0.003250,0.249979,0,0);-ms-transform:matrix(0.012134,-0.000158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.012134,-0.000158,0.003250,0.249979,0,0);}
.m6b_c01052{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);}
.m6_c01052{transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);}
.ma9_c01052{transform:matrix(0.037808,-0.000718,0.004749,0.249955,0,0);-ms-transform:matrix(0.037808,-0.000718,0.004749,0.249955,0,0);-webkit-transform:matrix(0.037808,-0.000718,0.004749,0.249955,0,0);}
.m3a_c01052{transform:matrix(0.042989,-0.000731,0.004249,0.249964,0,0);-ms-transform:matrix(0.042989,-0.000731,0.004249,0.249964,0,0);-webkit-transform:matrix(0.042989,-0.000731,0.004249,0.249964,0,0);}
.mba_c01052{transform:matrix(0.048356,-0.000919,0.004749,0.249955,0,0);-ms-transform:matrix(0.048356,-0.000919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.048356,-0.000919,0.004749,0.249955,0,0);}
.m95_c01052{transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054055,0.000000,0.000000,0.250000,0,0);}
.mae_c01052{transform:matrix(0.056205,-0.001068,0.004749,0.249955,0,0);-ms-transform:matrix(0.056205,-0.001068,0.004749,0.249955,0,0);-webkit-transform:matrix(0.056205,-0.001068,0.004749,0.249955,0,0);}
.m6f_c01052{transform:matrix(0.080355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080355,0.000000,0.000000,0.250000,0,0);}
.m30_c01052{transform:matrix(0.083808,-0.001425,0.004249,0.249964,0,0);-ms-transform:matrix(0.083808,-0.001425,0.004249,0.249964,0,0);-webkit-transform:matrix(0.083808,-0.001425,0.004249,0.249964,0,0);}
.m2f_c01052{transform:matrix(0.094931,-0.001614,0.004249,0.249964,0,0);-ms-transform:matrix(0.094931,-0.001614,0.004249,0.249964,0,0);-webkit-transform:matrix(0.094931,-0.001614,0.004249,0.249964,0,0);}
.m79_c01052{transform:matrix(0.113915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113915,0.000000,0.000000,0.250000,0,0);}
.m7c_c01052{transform:matrix(0.142190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142190,0.000000,0.000000,0.250000,0,0);}
.m31_c01052{transform:matrix(0.146929,-0.002498,0.004249,0.249964,0,0);-ms-transform:matrix(0.146929,-0.002498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146929,-0.002498,0.004249,0.249964,0,0);}
.m7_c01052{transform:matrix(0.147030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147030,0.000000,0.000000,0.250000,0,0);}
.m6c_c01052{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);}
.m9_c01052{transform:matrix(0.152605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152605,0.000000,0.000000,0.250000,0,0);}
.m7b_c01052{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);}
.m29_c01052{transform:matrix(0.157217,-0.002358,0.003750,0.249972,0,0);-ms-transform:matrix(0.157217,-0.002358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157217,-0.002358,0.003750,0.249972,0,0);}
.m54_c01052{transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);-ms-transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159012,-0.002067,0.003250,0.249979,0,0);}
.m43_c01052{transform:matrix(0.159369,-0.002869,0.004499,0.249960,0,0);-ms-transform:matrix(0.159369,-0.002869,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159369,-0.002869,0.004499,0.249960,0,0);}
.m18_c01052{transform:matrix(0.162417,-0.002436,0.003750,0.249972,0,0);-ms-transform:matrix(0.162417,-0.002436,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162417,-0.002436,0.003750,0.249972,0,0);}
.mc_c01052{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);}
.ma8_c01052{transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163145,0.000000,0.000000,0.250000,0,0);}
.m89_c01052{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);}
.m55_c01052{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);}
.mb0_c01052{transform:matrix(0.166140,-0.003157,0.004749,0.249955,0,0);-ms-transform:matrix(0.166140,-0.003157,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166140,-0.003157,0.004749,0.249955,0,0);}
.mb2_c01052{transform:matrix(0.166575,-0.003165,0.004749,0.249955,0,0);-ms-transform:matrix(0.166575,-0.003165,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166575,-0.003165,0.004749,0.249955,0,0);}
.m8f_c01052{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);}
.mb5_c01052{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);}
.mab_c01052{transform:matrix(0.169329,-0.003217,0.004749,0.249955,0,0);-ms-transform:matrix(0.169329,-0.003217,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169329,-0.003217,0.004749,0.249955,0,0);}
.m1e_c01052{transform:matrix(0.171456,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171456,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171456,-0.002572,0.003750,0.249972,0,0);}
.m11_c01052{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);}
.m9b_c01052{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);}
.m45_c01052{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);}
.m8c_c01052{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);}
.m44_c01052{transform:matrix(0.173022,-0.003114,0.004499,0.249960,0,0);-ms-transform:matrix(0.173022,-0.003114,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173022,-0.003114,0.004499,0.249960,0,0);}
.m65_c01052{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);}
.mb_c01052{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);}
.ma7_c01052{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);}
.m64_c01052{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);}
.mf_c01052{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);}
.m48_c01052{transform:matrix(0.176491,-0.003177,0.004499,0.249960,0,0);-ms-transform:matrix(0.176491,-0.003177,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176491,-0.003177,0.004499,0.249960,0,0);}
.m5a_c01052{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);}
.m88_c01052{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);}
.ma6_c01052{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);}
.m97_c01052{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);}
.m2b_c01052{transform:matrix(0.181950,-0.002729,0.003750,0.249972,0,0);-ms-transform:matrix(0.181950,-0.002729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181950,-0.002729,0.003750,0.249972,0,0);}
.m36_c01052{transform:matrix(0.183309,-0.003116,0.004249,0.249964,0,0);-ms-transform:matrix(0.183309,-0.003116,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183309,-0.003116,0.004249,0.249964,0,0);}
.m4f_c01052{transform:matrix(0.183604,-0.002387,0.003250,0.249979,0,0);-ms-transform:matrix(0.183604,-0.002387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183604,-0.002387,0.003250,0.249979,0,0);}
.mb6_c01052{transform:matrix(0.183622,-0.003489,0.004749,0.249955,0,0);-ms-transform:matrix(0.183622,-0.003489,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183622,-0.003489,0.004749,0.249955,0,0);}
.maa_c01052{transform:matrix(0.183657,-0.003489,0.004749,0.249955,0,0);-ms-transform:matrix(0.183657,-0.003489,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183657,-0.003489,0.004749,0.249955,0,0);}
.ma5_c01052{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);}
.mbe_c01052{transform:matrix(0.183997,-0.003496,0.004749,0.249955,0,0);-ms-transform:matrix(0.183997,-0.003496,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183997,-0.003496,0.004749,0.249955,0,0);}
.m85_c01052{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);}
.m2a_c01052{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);}
.ma_c01052{transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184585,0.000000,0.000000,0.250000,0,0);}
.m6d_c01052{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);}
.ma3_c01052{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);}
.mbd_c01052{transform:matrix(0.185192,-0.003519,0.004749,0.249955,0,0);-ms-transform:matrix(0.185192,-0.003519,0.004749,0.249955,0,0);-webkit-transform:matrix(0.185192,-0.003519,0.004749,0.249955,0,0);}
.m9e_c01052{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);}
.ma2_c01052{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);}
.m49_c01052{transform:matrix(0.188704,-0.002453,0.003250,0.249979,0,0);-ms-transform:matrix(0.188704,-0.002453,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188704,-0.002453,0.003250,0.249979,0,0);}
.m8e_c01052{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);}
.m23_c01052{transform:matrix(0.193763,-0.002906,0.003750,0.249972,0,0);-ms-transform:matrix(0.193763,-0.002906,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193763,-0.002906,0.003750,0.249972,0,0);}
.m9d_c01052{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);}
.m13_c01052{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);}
.m9c_c01052{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);}
.mb1_c01052{transform:matrix(0.195610,-0.003717,0.004749,0.249955,0,0);-ms-transform:matrix(0.195610,-0.003717,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195610,-0.003717,0.004749,0.249955,0,0);}
.m3c_c01052{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);}
.m60_c01052{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);}
.m76_c01052{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);}
.mb4_c01052{transform:matrix(0.199559,-0.003792,0.004749,0.249955,0,0);-ms-transform:matrix(0.199559,-0.003792,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199559,-0.003792,0.004749,0.249955,0,0);}
.m94_c01052{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);}
.m8a_c01052{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);}
.m12_c01052{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);}
.m90_c01052{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);}
.m86_c01052{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);}
.m51_c01052{transform:matrix(0.204733,-0.002662,0.003250,0.249979,0,0);-ms-transform:matrix(0.204733,-0.002662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204733,-0.002662,0.003250,0.249979,0,0);}
.mc2_c01052{transform:matrix(0.206108,-0.003916,0.004749,0.249955,0,0);-ms-transform:matrix(0.206108,-0.003916,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206108,-0.003916,0.004749,0.249955,0,0);}
.m3d_c01052{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);}
.ma4_c01052{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);}
.m20_c01052{transform:matrix(0.207492,-0.003112,0.003750,0.249972,0,0);-ms-transform:matrix(0.207492,-0.003112,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207492,-0.003112,0.003750,0.249972,0,0);}
.m22_c01052{transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);-ms-transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);}
.m3e_c01052{transform:matrix(0.208870,-0.003551,0.004249,0.249964,0,0);-ms-transform:matrix(0.208870,-0.003551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208870,-0.003551,0.004249,0.249964,0,0);}
.m80_c01052{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_c01052{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);}
.mbb_c01052{transform:matrix(0.210847,-0.004006,0.004749,0.249955,0,0);-ms-transform:matrix(0.210847,-0.004006,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210847,-0.004006,0.004749,0.249955,0,0);}
.m2c_c01052{transform:matrix(0.211696,-0.003175,0.003750,0.249972,0,0);-ms-transform:matrix(0.211696,-0.003175,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211696,-0.003175,0.003750,0.249972,0,0);}
.m70_c01052{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);}
.m50_c01052{transform:matrix(0.213317,-0.002773,0.003250,0.249979,0,0);-ms-transform:matrix(0.213317,-0.002773,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213317,-0.002773,0.003250,0.249979,0,0);}
.m7a_c01052{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);}
.m75_c01052{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);}
.m9a_c01052{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);}
.m98_c01052{transform:matrix(0.216630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216630,0.000000,0.000000,0.250000,0,0);}
.m7f_c01052{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);}
.m74_c01052{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);}
.m99_c01052{transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);}
.mbf_c01052{transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);-ms-transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);}
.m27_c01052{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);}
.m91_c01052{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);}
.m8b_c01052{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);}
.mb3_c01052{transform:matrix(0.226509,-0.004304,0.004749,0.249955,0,0);-ms-transform:matrix(0.226509,-0.004304,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226509,-0.004304,0.004749,0.249955,0,0);}
.m77_c01052{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);}
.m1d_c01052{transform:matrix(0.228464,-0.003427,0.003750,0.249972,0,0);-ms-transform:matrix(0.228464,-0.003427,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228464,-0.003427,0.003750,0.249972,0,0);}
.m72_c01052{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);}
.m92_c01052{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);}
.m61_c01052{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);}
.m73_c01052{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);}
.m21_c01052{transform:matrix(0.230259,-0.003454,0.003750,0.249972,0,0);-ms-transform:matrix(0.230259,-0.003454,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230259,-0.003454,0.003750,0.249972,0,0);}
.m96_c01052{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);}
.m2_c01052{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);}
.m81_c01052{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);}
.m7e_c01052{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);}
.m3f_c01052{transform:matrix(0.235201,-0.003998,0.004249,0.249964,0,0);-ms-transform:matrix(0.235201,-0.003998,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235201,-0.003998,0.004249,0.249964,0,0);}
.m38_c01052{transform:matrix(0.236126,-0.004014,0.004249,0.249964,0,0);-ms-transform:matrix(0.236126,-0.004014,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236126,-0.004014,0.004249,0.249964,0,0);}
.mbc_c01052{transform:matrix(0.236717,-0.004498,0.004749,0.249955,0,0);-ms-transform:matrix(0.236717,-0.004498,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236717,-0.004498,0.004749,0.249955,0,0);}
.m62_c01052{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);}
.m24_c01052{transform:matrix(0.238403,-0.003576,0.003750,0.249972,0,0);-ms-transform:matrix(0.238403,-0.003576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238403,-0.003576,0.003750,0.249972,0,0);}
.m1c_c01052{transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);}
.m93_c01052{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);}
.m71_c01052{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);}
.m19_c01052{transform:matrix(0.242573,-0.003639,0.003750,0.249972,0,0);-ms-transform:matrix(0.242573,-0.003639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242573,-0.003639,0.003750,0.249972,0,0);}
.m2d_c01052{transform:matrix(0.242908,-0.003644,0.003750,0.249972,0,0);-ms-transform:matrix(0.242908,-0.003644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242908,-0.003644,0.003750,0.249972,0,0);}
.m42_c01052{transform:matrix(0.244280,-0.004397,0.004499,0.249960,0,0);-ms-transform:matrix(0.244280,-0.004397,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244280,-0.004397,0.004499,0.249960,0,0);}
.m41_c01052{transform:matrix(0.245140,-0.004167,0.004249,0.249964,0,0);-ms-transform:matrix(0.245140,-0.004167,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245140,-0.004167,0.004249,0.249964,0,0);}
.m83_c01052{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);}
.mac_c01052{transform:matrix(0.248760,-0.004726,0.004749,0.249955,0,0);-ms-transform:matrix(0.248760,-0.004726,0.004749,0.249955,0,0);-webkit-transform:matrix(0.248760,-0.004726,0.004749,0.249955,0,0);}
.m8d_c01052{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m32_c01052{transform:matrix(0.251469,-0.004275,0.004249,0.249964,0,0);-ms-transform:matrix(0.251469,-0.004275,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251469,-0.004275,0.004249,0.249964,0,0);}
.m28_c01052{transform:matrix(0.255571,-0.003834,0.003750,0.249972,0,0);-ms-transform:matrix(0.255571,-0.003834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255571,-0.003834,0.003750,0.249972,0,0);}
.ma0_c01052{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);}
.m47_c01052{transform:matrix(0.259223,-0.004666,0.004499,0.249960,0,0);-ms-transform:matrix(0.259223,-0.004666,0.004499,0.249960,0,0);-webkit-transform:matrix(0.259223,-0.004666,0.004499,0.249960,0,0);}
.m1f_c01052{transform:matrix(0.260126,-0.003902,0.003750,0.249972,0,0);-ms-transform:matrix(0.260126,-0.003902,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260126,-0.003902,0.003750,0.249972,0,0);}
.mb7_c01052{transform:matrix(0.260413,-0.004948,0.004749,0.249955,0,0);-ms-transform:matrix(0.260413,-0.004948,0.004749,0.249955,0,0);-webkit-transform:matrix(0.260413,-0.004948,0.004749,0.249955,0,0);}
.m52_c01052{transform:matrix(0.260503,-0.003387,0.003250,0.249979,0,0);-ms-transform:matrix(0.260503,-0.003387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260503,-0.003387,0.003250,0.249979,0,0);}
.m2e_c01052{transform:matrix(0.261006,-0.003915,0.003750,0.249972,0,0);-ms-transform:matrix(0.261006,-0.003915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261006,-0.003915,0.003750,0.249972,0,0);}
.maf_c01052{transform:matrix(0.262113,-0.004980,0.004749,0.249955,0,0);-ms-transform:matrix(0.262113,-0.004980,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262113,-0.004980,0.004749,0.249955,0,0);}
.md_c01052{transform:matrix(0.276375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276375,0.000000,0.000000,0.250000,0,0);}
.m84_c01052{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m67_c01052{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m4a_c01052{transform:matrix(0.279131,-0.003629,0.003250,0.249979,0,0);-ms-transform:matrix(0.279131,-0.003629,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279131,-0.003629,0.003250,0.249979,0,0);}
.m1a_c01052{transform:matrix(0.290892,-0.004363,0.003750,0.249972,0,0);-ms-transform:matrix(0.290892,-0.004363,0.003750,0.249972,0,0);-webkit-transform:matrix(0.290892,-0.004363,0.003750,0.249972,0,0);}
.ma1_c01052{transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291190,0.000000,0.000000,0.250000,0,0);}
.mad_c01052{transform:matrix(0.292502,-0.005558,0.004749,0.249955,0,0);-ms-transform:matrix(0.292502,-0.005558,0.004749,0.249955,0,0);-webkit-transform:matrix(0.292502,-0.005558,0.004749,0.249955,0,0);}
.m25_c01052{transform:matrix(0.292607,-0.004389,0.003750,0.249972,0,0);-ms-transform:matrix(0.292607,-0.004389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292607,-0.004389,0.003750,0.249972,0,0);}
.m9f_c01052{transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297035,0.000000,0.000000,0.250000,0,0);}
.me_c01052{transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297485,0.000000,0.000000,0.250000,0,0);}
.m5_c01052{transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300190,0.000000,0.000000,0.250000,0,0);}
.m35_c01052{transform:matrix(0.301196,-0.005120,0.004249,0.249964,0,0);-ms-transform:matrix(0.301196,-0.005120,0.004249,0.249964,0,0);-webkit-transform:matrix(0.301196,-0.005120,0.004249,0.249964,0,0);}
.m7d_c01052{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);}
.m5d_c01052{transform:matrix(0.304920,-0.004269,0.003500,0.249976,0,0);-ms-transform:matrix(0.304920,-0.004269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304920,-0.004269,0.003500,0.249976,0,0);}
.m69_c01052{transform:matrix(0.307845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307845,0.000000,0.000000,0.250000,0,0);}
.m33_c01052{transform:matrix(0.310635,-0.005281,0.004249,0.249964,0,0);-ms-transform:matrix(0.310635,-0.005281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.310635,-0.005281,0.004249,0.249964,0,0);}
.m16_c01052{transform:matrix(0.322249,-0.004834,0.003750,0.249972,0,0);-ms-transform:matrix(0.322249,-0.004834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.322249,-0.004834,0.003750,0.249972,0,0);}
.mc3_c01052{transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);}
.m26_c01052{transform:matrix(0.337052,-0.005056,0.003750,0.249972,0,0);-ms-transform:matrix(0.337052,-0.005056,0.003750,0.249972,0,0);-webkit-transform:matrix(0.337052,-0.005056,0.003750,0.249972,0,0);}
.m82_c01052{transform:matrix(0.337315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337315,0.000000,0.000000,0.250000,0,0);}
.mc0_c01052{transform:matrix(0.346862,-0.006590,0.004749,0.249955,0,0);-ms-transform:matrix(0.346862,-0.006590,0.004749,0.249955,0,0);-webkit-transform:matrix(0.346862,-0.006590,0.004749,0.249955,0,0);}
.m3b_c01052{transform:matrix(0.349594,-0.005943,0.004249,0.249964,0,0);-ms-transform:matrix(0.349594,-0.005943,0.004249,0.249964,0,0);-webkit-transform:matrix(0.349594,-0.005943,0.004249,0.249964,0,0);}
.m59_c01052{transform:matrix(0.356350,-0.004633,0.003250,0.249979,0,0);-ms-transform:matrix(0.356350,-0.004633,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356350,-0.004633,0.003250,0.249979,0,0);}
.m58_c01052{transform:matrix(0.357420,-0.004646,0.003250,0.249979,0,0);-ms-transform:matrix(0.357420,-0.004646,0.003250,0.249979,0,0);-webkit-transform:matrix(0.357420,-0.004646,0.003250,0.249979,0,0);}
.mb9_c01052{transform:matrix(0.375692,-0.007138,0.004749,0.249955,0,0);-ms-transform:matrix(0.375692,-0.007138,0.004749,0.249955,0,0);-webkit-transform:matrix(0.375692,-0.007138,0.004749,0.249955,0,0);}
.m4e_c01052{transform:matrix(0.376583,-0.004896,0.003250,0.249979,0,0);-ms-transform:matrix(0.376583,-0.004896,0.003250,0.249979,0,0);-webkit-transform:matrix(0.376583,-0.004896,0.003250,0.249979,0,0);}
.mb8_c01052{transform:matrix(0.392379,-0.007455,0.004749,0.249955,0,0);-ms-transform:matrix(0.392379,-0.007455,0.004749,0.249955,0,0);-webkit-transform:matrix(0.392379,-0.007455,0.004749,0.249955,0,0);}
.m3_c01052{transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);}
.m15_c01052{transform:matrix(0.399105,-0.005987,0.003750,0.249972,0,0);-ms-transform:matrix(0.399105,-0.005987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.399105,-0.005987,0.003750,0.249972,0,0);}
.mc1_c01052{transform:matrix(0.411761,-0.007823,0.004749,0.249955,0,0);-ms-transform:matrix(0.411761,-0.007823,0.004749,0.249955,0,0);-webkit-transform:matrix(0.411761,-0.007823,0.004749,0.249955,0,0);}
.m10_c01052{transform:matrix(0.441155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441155,0.000000,0.000000,0.250000,0,0);}
.m68_c01052{transform:matrix(0.451880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451880,0.000000,0.000000,0.250000,0,0);}
.m34_c01052{transform:matrix(0.454959,-0.007734,0.004249,0.249964,0,0);-ms-transform:matrix(0.454959,-0.007734,0.004249,0.249964,0,0);-webkit-transform:matrix(0.454959,-0.007734,0.004249,0.249964,0,0);}
.m78_c01052{transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459995,0.000000,0.000000,0.250000,0,0);}
.m4_c01052{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m1_c01052{transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);}
.m39_c01052{transform:matrix(0.470667,-0.008001,0.004249,0.249964,0,0);-ms-transform:matrix(0.470667,-0.008001,0.004249,0.249964,0,0);-webkit-transform:matrix(0.470667,-0.008001,0.004249,0.249964,0,0);}
.m4b_c01052{transform:matrix(0.482719,-0.006275,0.003250,0.249979,0,0);-ms-transform:matrix(0.482719,-0.006275,0.003250,0.249979,0,0);-webkit-transform:matrix(0.482719,-0.006275,0.003250,0.249979,0,0);}
.m17_c01052{transform:matrix(0.489755,-0.007346,0.003750,0.249972,0,0);-ms-transform:matrix(0.489755,-0.007346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.489755,-0.007346,0.003750,0.249972,0,0);}
.m5e_c01052{transform:matrix(0.513825,-0.007194,0.003500,0.249976,0,0);-ms-transform:matrix(0.513825,-0.007194,0.003500,0.249976,0,0);-webkit-transform:matrix(0.513825,-0.007194,0.003500,0.249976,0,0);}
.m14_c01052{transform:matrix(0.514267,-0.007714,0.003750,0.249972,0,0);-ms-transform:matrix(0.514267,-0.007714,0.003750,0.249972,0,0);-webkit-transform:matrix(0.514267,-0.007714,0.003750,0.249972,0,0);}
.m4d_c01052{transform:matrix(0.523726,-0.006808,0.003250,0.249979,0,0);-ms-transform:matrix(0.523726,-0.006808,0.003250,0.249979,0,0);-webkit-transform:matrix(0.523726,-0.006808,0.003250,0.249979,0,0);}
.m5b_c01052{transform:matrix(0.523899,-0.007335,0.003500,0.249976,0,0);-ms-transform:matrix(0.523899,-0.007335,0.003500,0.249976,0,0);-webkit-transform:matrix(0.523899,-0.007335,0.003500,0.249976,0,0);}
.m4c_c01052{transform:matrix(0.530860,-0.006901,0.003250,0.249979,0,0);-ms-transform:matrix(0.530860,-0.006901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.530860,-0.006901,0.003250,0.249979,0,0);}
.m0_c01052{transform:matrix(0.542795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542795,0.000000,0.000000,0.250000,0,0);}
.m5c_c01052{transform:matrix(0.553951,-0.007755,0.003500,0.249976,0,0);-ms-transform:matrix(0.553951,-0.007755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.553951,-0.007755,0.003500,0.249976,0,0);}
.m46_c01052{transform:matrix(0.573652,-0.010326,0.004499,0.249960,0,0);-ms-transform:matrix(0.573652,-0.010326,0.004499,0.249960,0,0);-webkit-transform:matrix(0.573652,-0.010326,0.004499,0.249960,0,0);}
.m66_c01052{transform:matrix(0.575630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575630,0.000000,0.000000,0.250000,0,0);}
.m5f_c01052{transform:matrix(0.578073,-0.008093,0.003500,0.249976,0,0);-ms-transform:matrix(0.578073,-0.008093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.578073,-0.008093,0.003500,0.249976,0,0);}
.m8_c01052{transform:matrix(0.598140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598140,0.000000,0.000000,0.250000,0,0);}
.m37_c01052{transform:matrix(0.613126,-0.010423,0.004249,0.249964,0,0);-ms-transform:matrix(0.613126,-0.010423,0.004249,0.249964,0,0);-webkit-transform:matrix(0.613126,-0.010423,0.004249,0.249964,0,0);}
.m1b_c01052{transform:matrix(0.634229,-0.009513,0.003750,0.249972,0,0);-ms-transform:matrix(0.634229,-0.009513,0.003750,0.249972,0,0);-webkit-transform:matrix(0.634229,-0.009513,0.003750,0.249972,0,0);}
.m63_c01052{transform:matrix(0.675615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675615,0.000000,0.000000,0.250000,0,0);}
.m53_c01052{transform:matrix(0.750182,-0.009752,0.003250,0.249979,0,0);-ms-transform:matrix(0.750182,-0.009752,0.003250,0.249979,0,0);-webkit-transform:matrix(0.750182,-0.009752,0.003250,0.249979,0,0);}
.mc4_c01052{transform:matrix(0.766950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766950,0.000000,0.000000,0.250000,0,0);}
.m6e_c01052{transform:matrix(0.842025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842025,0.000000,0.000000,0.250000,0,0);}
.m40_c01052{transform:matrix(1.140275,-0.019385,0.004249,0.249964,0,0);-ms-transform:matrix(1.140275,-0.019385,0.004249,0.249964,0,0);-webkit-transform:matrix(1.140275,-0.019385,0.004249,0.249964,0,0);}
.m6a_c01052{transform:matrix(1.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.164775,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls0_c01052{letter-spacing:0.000000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:0.000000px;}
.fc0_c01052{color:transparent;}
.fs11_c01052{font-size:16.800000px;}
.fs18_c01052{font-size:28.350000px;}
.fsd_c01052{font-size:47.254630px;}
.fs17_c01052{font-size:50.400000px;}
.fs3_c01052{font-size:55.656260px;}
.fs16_c01052{font-size:65.111749px;}
.fs12_c01052{font-size:67.200000px;}
.fsa_c01052{font-size:67.205678px;}
.fs4_c01052{font-size:67.207560px;}
.fs10_c01052{font-size:68.250000px;}
.fs5_c01052{font-size:68.257678px;}
.fs8_c01052{font-size:68.259861px;}
.fs2_c01052{font-size:69.300000px;}
.fs0_c01052{font-size:70.350000px;}
.fsc_c01052{font-size:70.355944px;}
.fs6_c01052{font-size:70.360165px;}
.fs15_c01052{font-size:70.362697px;}
.fs13_c01052{font-size:71.400000px;}
.fse_c01052{font-size:71.406997px;}
.fs14_c01052{font-size:71.412887px;}
.fsf_c01052{font-size:72.450000px;}
.fsb_c01052{font-size:72.456122px;}
.fs1_c01052{font-size:73.500000px;}
.fs7_c01052{font-size:73.510620px;}
.fs9_c01052{font-size:73.511906px;}
.y0_c01052{bottom:0.000000px;}
.y94_c01052{bottom:11.880000px;}
.y93_c01052{bottom:87.612000px;}
.y8a_c01052{bottom:210.587294px;}
.y8b_c01052{bottom:210.981414px;}
.y8c_c01052{bottom:211.899623px;}
.y8d_c01052{bottom:215.325126px;}
.y8e_c01052{bottom:216.151865px;}
.y8f_c01052{bottom:217.696736px;}
.y90_c01052{bottom:220.011639px;}
.y91_c01052{bottom:220.397334px;}
.y92_c01052{bottom:220.843469px;}
.y88_c01052{bottom:238.136150px;}
.y89_c01052{bottom:241.613157px;}
.y7f_c01052{bottom:260.278173px;}
.y80_c01052{bottom:260.953173px;}
.y81_c01052{bottom:261.292983px;}
.y82_c01052{bottom:261.712232px;}
.y83_c01052{bottom:261.890483px;}
.y84_c01052{bottom:262.451880px;}
.y85_c01052{bottom:262.972470px;}
.y86_c01052{bottom:263.334419px;}
.y87_c01052{bottom:263.766604px;}
.y79_c01052{bottom:284.085000px;}
.y7a_c01052{bottom:284.617979px;}
.y7b_c01052{bottom:285.059187px;}
.y7c_c01052{bottom:285.485091px;}
.y7d_c01052{bottom:285.890276px;}
.y7e_c01052{bottom:288.682905px;}
.y6f_c01052{bottom:305.911500px;}
.y70_c01052{bottom:306.055500px;}
.y71_c01052{bottom:306.130500px;}
.y72_c01052{bottom:306.574500px;}
.y73_c01052{bottom:306.813000px;}
.y74_c01052{bottom:307.233000px;}
.y75_c01052{bottom:307.377000px;}
.y76_c01052{bottom:307.917000px;}
.y77_c01052{bottom:308.430000px;}
.y78_c01052{bottom:308.677500px;}
.y6e_c01052{bottom:330.429000px;}
.y6d_c01052{bottom:353.239500px;}
.y6c_c01052{bottom:376.431000px;}
.y62_c01052{bottom:397.711500px;}
.y63_c01052{bottom:398.316000px;}
.y64_c01052{bottom:398.529000px;}
.y65_c01052{bottom:398.926500px;}
.y66_c01052{bottom:399.213000px;}
.y67_c01052{bottom:399.483000px;}
.y68_c01052{bottom:399.907500px;}
.y69_c01052{bottom:400.167000px;}
.y6a_c01052{bottom:400.582500px;}
.y6b_c01052{bottom:400.936500px;}
.y61_c01052{bottom:421.848000px;}
.y60_c01052{bottom:454.713000px;}
.y59_c01052{bottom:464.941500px;}
.y5a_c01052{bottom:465.684000px;}
.y5b_c01052{bottom:465.792000px;}
.y5c_c01052{bottom:466.650000px;}
.y5d_c01052{bottom:466.903500px;}
.y5e_c01052{bottom:468.481500px;}
.y58_c01052{bottom:489.655500px;}
.y57_c01052{bottom:512.187519px;}
.y53_c01052{bottom:529.204500px;}
.y54_c01052{bottom:530.362986px;}
.y55_c01052{bottom:530.975556px;}
.y56_c01052{bottom:533.377284px;}
.y4f_c01052{bottom:546.210624px;}
.y50_c01052{bottom:548.855971px;}
.y51_c01052{bottom:550.236602px;}
.y52_c01052{bottom:552.531285px;}
.y47_c01052{bottom:569.969496px;}
.y48_c01052{bottom:570.693916px;}
.y49_c01052{bottom:570.961797px;}
.y4a_c01052{bottom:571.343403px;}
.y4b_c01052{bottom:571.495746px;}
.y4c_c01052{bottom:572.047833px;}
.y4d_c01052{bottom:572.318347px;}
.y4e_c01052{bottom:573.341367px;}
.y41_c01052{bottom:592.381500px;}
.y42_c01052{bottom:593.885847px;}
.y43_c01052{bottom:594.360750px;}
.y44_c01052{bottom:594.546721px;}
.y45_c01052{bottom:594.862738px;}
.y46_c01052{bottom:595.161108px;}
.y3a_c01052{bottom:615.585000px;}
.y3b_c01052{bottom:616.002555px;}
.y3c_c01052{bottom:617.060901px;}
.y3d_c01052{bottom:617.469600px;}
.y3e_c01052{bottom:618.039516px;}
.y3f_c01052{bottom:618.382767px;}
.y40_c01052{bottom:620.923440px;}
.y33_c01052{bottom:637.735516px;}
.y34_c01052{bottom:638.197429px;}
.y35_c01052{bottom:638.610747px;}
.y36_c01052{bottom:639.242149px;}
.y37_c01052{bottom:639.439494px;}
.y38_c01052{bottom:640.514113px;}
.y5f_c01052{bottom:641.248500px;}
.y39_c01052{bottom:642.095824px;}
.y2d_c01052{bottom:660.421119px;}
.y2e_c01052{bottom:661.205824px;}
.y2f_c01052{bottom:661.786348px;}
.y30_c01052{bottom:662.233218px;}
.y31_c01052{bottom:664.567890px;}
.y32_c01052{bottom:665.467549px;}
.y27_c01052{bottom:681.481500px;}
.y28_c01052{bottom:682.370277px;}
.y29_c01052{bottom:683.500896px;}
.y2a_c01052{bottom:684.086401px;}
.y2b_c01052{bottom:684.747565px;}
.y2c_c01052{bottom:686.876076px;}
.y1e_c01052{bottom:707.652218px;}
.y1f_c01052{bottom:707.652322px;}
.y20_c01052{bottom:707.652960px;}
.y21_c01052{bottom:707.653042px;}
.y22_c01052{bottom:707.653748px;}
.y23_c01052{bottom:707.654130px;}
.y24_c01052{bottom:707.654212px;}
.y25_c01052{bottom:707.654295px;}
.y26_c01052{bottom:707.654677px;}
.y14_c01052{bottom:728.727825px;}
.y15_c01052{bottom:729.125167px;}
.y16_c01052{bottom:729.350783px;}
.y17_c01052{bottom:729.582832px;}
.y18_c01052{bottom:729.986820px;}
.y19_c01052{bottom:730.453650px;}
.y1a_c01052{bottom:730.650893px;}
.y1b_c01052{bottom:731.054400px;}
.y1c_c01052{bottom:731.582632px;}
.y1d_c01052{bottom:732.304402px;}
.yc_c01052{bottom:748.584000px;}
.yd_c01052{bottom:749.268562px;}
.ye_c01052{bottom:749.892195px;}
.yf_c01052{bottom:750.209332px;}
.y10_c01052{bottom:750.558420px;}
.y11_c01052{bottom:750.884625px;}
.y12_c01052{bottom:751.328617px;}
.y13_c01052{bottom:751.660875px;}
.y3_c01052{bottom:774.093000px;}
.y4_c01052{bottom:774.595500px;}
.y5_c01052{bottom:774.805500px;}
.y6_c01052{bottom:775.305000px;}
.y7_c01052{bottom:776.014500px;}
.y8_c01052{bottom:776.130000px;}
.y9_c01052{bottom:776.431500px;}
.ya_c01052{bottom:777.189000px;}
.yb_c01052{bottom:777.960000px;}
.y2_c01052{bottom:799.237500px;}
.y1_c01052{bottom:821.967000px;}
.h13_c01052{height:16.800000px;}
.h1a_c01052{height:28.350000px;}
.hf_c01052{height:47.254630px;}
.h19_c01052{height:50.400000px;}
.h5_c01052{height:55.656260px;}
.h18_c01052{height:65.111749px;}
.h14_c01052{height:67.200000px;}
.hc_c01052{height:67.205678px;}
.h6_c01052{height:67.207560px;}
.h12_c01052{height:68.250000px;}
.h7_c01052{height:68.257678px;}
.ha_c01052{height:68.259861px;}
.h4_c01052{height:69.300000px;}
.h2_c01052{height:70.350000px;}
.he_c01052{height:70.355944px;}
.h8_c01052{height:70.360165px;}
.h17_c01052{height:70.362697px;}
.h15_c01052{height:71.400000px;}
.h10_c01052{height:71.406997px;}
.h16_c01052{height:71.412887px;}
.h11_c01052{height:72.450000px;}
.hd_c01052{height:72.456122px;}
.h3_c01052{height:73.500000px;}
.h9_c01052{height:73.510620px;}
.hb_c01052{height:73.511906px;}
.h1_c01052{height:1005.000000px;}
.h0_c01052{height:1005.150000px;}
.w0_c01052{width:715.200000px;}
.w1_c01052{width:715.500000px;}
.x0_c01052{left:0.000000px;}
.x66_c01052{left:139.050000px;}
.x7d_c01052{left:140.953464px;}
.x37_c01052{left:150.093000px;}
.x6c_c01052{left:152.128500px;}
.xc_c01052{left:154.065000px;}
.x32_c01052{left:155.715464px;}
.x76_c01052{left:157.246057px;}
.x2a_c01052{left:162.649500px;}
.x6d_c01052{left:168.060000px;}
.x38_c01052{left:173.290500px;}
.x5f_c01052{left:174.960000px;}
.x6e_c01052{left:176.470500px;}
.x24_c01052{left:186.830513px;}
.x7e_c01052{left:193.438479px;}
.xd_c01052{left:195.909000px;}
.x1c_c01052{left:198.634147px;}
.x3c_c01052{left:200.196000px;}
.x67_c01052{left:203.040000px;}
.x49_c01052{left:206.010000px;}
.x2f_c01052{left:210.556428px;}
.xe_c01052{left:213.364500px;}
.x2b_c01052{left:214.930500px;}
.x54_c01052{left:216.810000px;}
.x40_c01052{left:221.552000px;}
.x1d_c01052{left:223.677397px;}
.x77_c01052{left:224.757600px;}
.x6f_c01052{left:225.859500px;}
.x4c_c01052{left:229.638000px;}
.x39_c01052{left:232.087500px;}
.x5b_c01052{left:236.391000px;}
.x46_c01052{left:238.620000px;}
.x4d_c01052{left:240.433500px;}
.x55_c01052{left:244.620000px;}
.x41_c01052{left:245.851124px;}
.x25_c01052{left:247.586670px;}
.x1e_c01052{left:249.449715px;}
.x30_c01052{left:252.030545px;}
.xf_c01052{left:254.938500px;}
.x33_c01052{left:256.167881px;}
.x78_c01052{left:258.753414px;}
.x7_c01052{left:262.440000px;}
.x64_c01052{left:263.790000px;}
.x34_c01052{left:269.276814px;}
.x48_c01052{left:276.491328px;}
.x2c_c01052{left:281.437500px;}
.x1_c01052{left:283.500000px;}
.x3a_c01052{left:286.455000px;}
.x56_c01052{left:288.360000px;}
.x15_c01052{left:290.518500px;}
.x1f_c01052{left:294.386265px;}
.x68_c01052{left:295.650000px;}
.x60_c01052{left:298.080000px;}
.x79_c01052{left:300.642067px;}
.x3b_c01052{left:305.524500px;}
.x2_c01052{left:310.770000px;}
.x26_c01052{left:311.853615px;}
.x10_c01052{left:314.089500px;}
.x2d_c01052{left:315.879000px;}
.x72_c01052{left:317.226000px;}
.x7a_c01052{left:318.474117px;}
.x65_c01052{left:321.840000px;}
.x11_c01052{left:323.713500px;}
.x4e_c01052{left:326.260500px;}
.x7f_c01052{left:330.449361px;}
.x57_c01052{left:332.640000px;}
.x3_c01052{left:335.610000px;}
.x69_c01052{left:337.770000px;}
.x35_c01052{left:340.962762px;}
.x42_c01052{left:344.625698px;}
.x20_c01052{left:346.212922px;}
.x12_c01052{left:348.835500px;}
.x3d_c01052{left:352.446000px;}
.x27_c01052{left:354.788768px;}
.x61_c01052{left:356.130000px;}
.x73_c01052{left:362.863500px;}
.x4_c01052{left:365.850000px;}
.x8_c01052{left:367.200000px;}
.x43_c01052{left:369.242841px;}
.x58_c01052{left:372.060000px;}
.x5c_c01052{left:374.128500px;}
.x16_c01052{left:377.731500px;}
.x6a_c01052{left:380.970000px;}
.x5_c01052{left:383.130000px;}
.x74_c01052{left:384.189000px;}
.x3e_c01052{left:391.060500px;}
.x17_c01052{left:398.874000px;}
.x5d_c01052{left:400.015500px;}
.x6_c01052{left:403.380000px;}
.x62_c01052{left:409.050000px;}
.x13_c01052{left:411.909000px;}
.x21_c01052{left:412.968930px;}
.x3f_c01052{left:414.012000px;}
.x4a_c01052{left:417.420000px;}
.x18_c01052{left:422.146500px;}
.x80_c01052{left:425.339059px;}
.x7b_c01052{left:426.755142px;}
.x70_c01052{left:431.814000px;}
.x63_c01052{left:434.700000px;}
.x5e_c01052{left:441.586500px;}
.x28_c01052{left:442.819568px;}
.x19_c01052{left:443.893500px;}
.x36_c01052{left:446.449358px;}
.x9_c01052{left:447.930000px;}
.x59_c01052{left:449.280000px;}
.x31_c01052{left:450.690168px;}
.x47_c01052{left:453.927000px;}
.x71_c01052{left:459.396000px;}
.x44_c01052{left:462.246759px;}
.x45_c01052{left:464.203575px;}
.x22_c01052{left:471.589695px;}
.x1a_c01052{left:473.493000px;}
.x14_c01052{left:476.104500px;}
.x2e_c01052{left:479.977500px;}
.x29_c01052{left:485.754720px;}
.xa_c01052{left:491.940000px;}
.x1b_c01052{left:495.643500px;}
.x7c_c01052{left:506.144208px;}
.x4f_c01052{left:509.478000px;}
.x50_c01052{left:510.840000px;}
.x5a_c01052{left:513.810000px;}
.xb_c01052{left:515.700000px;}
.x6b_c01052{left:516.780000px;}
.x81_c01052{left:517.955014px;}
.x83_c01052{left:521.370000px;}
.x75_c01052{left:531.169500px;}
.x82_c01052{left:533.358247px;}
.x4b_c01052{left:542.700000px;}
.x51_c01052{left:546.210000px;}
.x52_c01052{left:549.990000px;}
.x23_c01052{left:551.714895px;}
.x53_c01052{left:574.290000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ws0_c01052{word-spacing:0.000000pt;}
.fs11_c01052{font-size:14.933333pt;}
.fs18_c01052{font-size:25.200000pt;}
.fsd_c01052{font-size:42.004116pt;}
.fs17_c01052{font-size:44.800000pt;}
.fs3_c01052{font-size:49.472231pt;}
.fs16_c01052{font-size:57.877111pt;}
.fs12_c01052{font-size:59.733333pt;}
.fsa_c01052{font-size:59.738381pt;}
.fs4_c01052{font-size:59.740053pt;}
.fs10_c01052{font-size:60.666667pt;}
.fs5_c01052{font-size:60.673491pt;}
.fs8_c01052{font-size:60.675432pt;}
.fs2_c01052{font-size:61.600000pt;}
.fs0_c01052{font-size:62.533333pt;}
.fsc_c01052{font-size:62.538617pt;}
.fs6_c01052{font-size:62.542369pt;}
.fs15_c01052{font-size:62.544620pt;}
.fs13_c01052{font-size:63.466667pt;}
.fse_c01052{font-size:63.472886pt;}
.fs14_c01052{font-size:63.478121pt;}
.fsf_c01052{font-size:64.400000pt;}
.fsb_c01052{font-size:64.405442pt;}
.fs1_c01052{font-size:65.333333pt;}
.fs7_c01052{font-size:65.342773pt;}
.fs9_c01052{font-size:65.343916pt;}
.y0_c01052{bottom:0.000000pt;}
.y94_c01052{bottom:10.560000pt;}
.y93_c01052{bottom:77.877333pt;}
.y8a_c01052{bottom:187.188705pt;}
.y8b_c01052{bottom:187.539035pt;}
.y8c_c01052{bottom:188.355220pt;}
.y8d_c01052{bottom:191.400112pt;}
.y8e_c01052{bottom:192.134991pt;}
.y8f_c01052{bottom:193.508209pt;}
.y90_c01052{bottom:195.565901pt;}
.y91_c01052{bottom:195.908741pt;}
.y92_c01052{bottom:196.305305pt;}
.y88_c01052{bottom:211.676577pt;}
.y89_c01052{bottom:214.767251pt;}
.y7f_c01052{bottom:231.358376pt;}
.y80_c01052{bottom:231.958376pt;}
.y81_c01052{bottom:232.260429pt;}
.y82_c01052{bottom:232.633095pt;}
.y83_c01052{bottom:232.791540pt;}
.y84_c01052{bottom:233.290560pt;}
.y85_c01052{bottom:233.753307pt;}
.y86_c01052{bottom:234.075039pt;}
.y87_c01052{bottom:234.459204pt;}
.y79_c01052{bottom:252.520000pt;}
.y7a_c01052{bottom:252.993759pt;}
.y7b_c01052{bottom:253.385944pt;}
.y7c_c01052{bottom:253.764525pt;}
.y7d_c01052{bottom:254.124689pt;}
.y7e_c01052{bottom:256.607027pt;}
.y6f_c01052{bottom:271.921333pt;}
.y70_c01052{bottom:272.049333pt;}
.y71_c01052{bottom:272.116000pt;}
.y72_c01052{bottom:272.510667pt;}
.y73_c01052{bottom:272.722667pt;}
.y74_c01052{bottom:273.096000pt;}
.y75_c01052{bottom:273.224000pt;}
.y76_c01052{bottom:273.704000pt;}
.y77_c01052{bottom:274.160000pt;}
.y78_c01052{bottom:274.380000pt;}
.y6e_c01052{bottom:293.714667pt;}
.y6d_c01052{bottom:313.990667pt;}
.y6c_c01052{bottom:334.605333pt;}
.y62_c01052{bottom:353.521333pt;}
.y63_c01052{bottom:354.058667pt;}
.y64_c01052{bottom:354.248000pt;}
.y65_c01052{bottom:354.601333pt;}
.y66_c01052{bottom:354.856000pt;}
.y67_c01052{bottom:355.096000pt;}
.y68_c01052{bottom:355.473333pt;}
.y69_c01052{bottom:355.704000pt;}
.y6a_c01052{bottom:356.073333pt;}
.y6b_c01052{bottom:356.388000pt;}
.y61_c01052{bottom:374.976000pt;}
.y60_c01052{bottom:404.189333pt;}
.y59_c01052{bottom:413.281333pt;}
.y5a_c01052{bottom:413.941333pt;}
.y5b_c01052{bottom:414.037333pt;}
.y5c_c01052{bottom:414.800000pt;}
.y5d_c01052{bottom:415.025333pt;}
.y5e_c01052{bottom:416.428000pt;}
.y58_c01052{bottom:435.249333pt;}
.y57_c01052{bottom:455.277795pt;}
.y53_c01052{bottom:470.404000pt;}
.y54_c01052{bottom:471.433765pt;}
.y55_c01052{bottom:471.978272pt;}
.y56_c01052{bottom:474.113141pt;}
.y4f_c01052{bottom:485.520555pt;}
.y50_c01052{bottom:487.871975pt;}
.y51_c01052{bottom:489.099201pt;}
.y52_c01052{bottom:491.138920pt;}
.y47_c01052{bottom:506.639552pt;}
.y48_c01052{bottom:507.283481pt;}
.y49_c01052{bottom:507.521597pt;}
.y4a_c01052{bottom:507.860803pt;}
.y4b_c01052{bottom:507.996219pt;}
.y4c_c01052{bottom:508.486963pt;}
.y4d_c01052{bottom:508.727420pt;}
.y4e_c01052{bottom:509.636771pt;}
.y41_c01052{bottom:526.561333pt;}
.y42_c01052{bottom:527.898531pt;}
.y43_c01052{bottom:528.320667pt;}
.y44_c01052{bottom:528.485975pt;}
.y45_c01052{bottom:528.766879pt;}
.y46_c01052{bottom:529.032096pt;}
.y3a_c01052{bottom:547.186667pt;}
.y3b_c01052{bottom:547.557827pt;}
.y3c_c01052{bottom:548.498579pt;}
.y3d_c01052{bottom:548.861867pt;}
.y3e_c01052{bottom:549.368459pt;}
.y3f_c01052{bottom:549.673571pt;}
.y40_c01052{bottom:551.931947pt;}
.y33_c01052{bottom:566.876015pt;}
.y34_c01052{bottom:567.286604pt;}
.y35_c01052{bottom:567.653997pt;}
.y36_c01052{bottom:568.215244pt;}
.y37_c01052{bottom:568.390661pt;}
.y38_c01052{bottom:569.345879pt;}
.y5f_c01052{bottom:569.998667pt;}
.y39_c01052{bottom:570.751844pt;}
.y2d_c01052{bottom:587.040995pt;}
.y2e_c01052{bottom:587.738511pt;}
.y2f_c01052{bottom:588.254532pt;}
.y30_c01052{bottom:588.651749pt;}
.y31_c01052{bottom:590.727013pt;}
.y32_c01052{bottom:591.526711pt;}
.y27_c01052{bottom:605.761333pt;}
.y28_c01052{bottom:606.551357pt;}
.y29_c01052{bottom:607.556352pt;}
.y2a_c01052{bottom:608.076801pt;}
.y2b_c01052{bottom:608.664503pt;}
.y2c_c01052{bottom:610.556512pt;}
.y1e_c01052{bottom:629.024193pt;}
.y1f_c01052{bottom:629.024287pt;}
.y20_c01052{bottom:629.024853pt;}
.y21_c01052{bottom:629.024927pt;}
.y22_c01052{bottom:629.025553pt;}
.y23_c01052{bottom:629.025893pt;}
.y24_c01052{bottom:629.025967pt;}
.y25_c01052{bottom:629.026040pt;}
.y26_c01052{bottom:629.026380pt;}
.y14_c01052{bottom:647.758067pt;}
.y15_c01052{bottom:648.111260pt;}
.y16_c01052{bottom:648.311807pt;}
.y17_c01052{bottom:648.518073pt;}
.y18_c01052{bottom:648.877173pt;}
.y19_c01052{bottom:649.292133pt;}
.y1a_c01052{bottom:649.467460pt;}
.y1b_c01052{bottom:649.826133pt;}
.y1c_c01052{bottom:650.295673pt;}
.y1d_c01052{bottom:650.937247pt;}
.yc_c01052{bottom:665.408000pt;}
.yd_c01052{bottom:666.016500pt;}
.ye_c01052{bottom:666.570840pt;}
.yf_c01052{bottom:666.852740pt;}
.y10_c01052{bottom:667.163040pt;}
.y11_c01052{bottom:667.453000pt;}
.y12_c01052{bottom:667.847660pt;}
.y13_c01052{bottom:668.143000pt;}
.y3_c01052{bottom:688.082667pt;}
.y4_c01052{bottom:688.529333pt;}
.y5_c01052{bottom:688.716000pt;}
.y6_c01052{bottom:689.160000pt;}
.y7_c01052{bottom:689.790667pt;}
.y8_c01052{bottom:689.893333pt;}
.y9_c01052{bottom:690.161333pt;}
.ya_c01052{bottom:690.834667pt;}
.yb_c01052{bottom:691.520000pt;}
.y2_c01052{bottom:710.433333pt;}
.y1_c01052{bottom:730.637333pt;}
.h13_c01052{height:14.933333pt;}
.h1a_c01052{height:25.200000pt;}
.hf_c01052{height:42.004116pt;}
.h19_c01052{height:44.800000pt;}
.h5_c01052{height:49.472231pt;}
.h18_c01052{height:57.877111pt;}
.h14_c01052{height:59.733333pt;}
.hc_c01052{height:59.738381pt;}
.h6_c01052{height:59.740053pt;}
.h12_c01052{height:60.666667pt;}
.h7_c01052{height:60.673491pt;}
.ha_c01052{height:60.675432pt;}
.h4_c01052{height:61.600000pt;}
.h2_c01052{height:62.533333pt;}
.he_c01052{height:62.538617pt;}
.h8_c01052{height:62.542369pt;}
.h17_c01052{height:62.544620pt;}
.h15_c01052{height:63.466667pt;}
.h10_c01052{height:63.472886pt;}
.h16_c01052{height:63.478121pt;}
.h11_c01052{height:64.400000pt;}
.hd_c01052{height:64.405442pt;}
.h3_c01052{height:65.333333pt;}
.h9_c01052{height:65.342773pt;}
.hb_c01052{height:65.343916pt;}
.h1_c01052{height:893.333333pt;}
.h0_c01052{height:893.466667pt;}
.w0_c01052{width:635.733333pt;}
.w1_c01052{width:636.000000pt;}
.x0_c01052{left:0.000000pt;}
.x66_c01052{left:123.600000pt;}
.x7d_c01052{left:125.291968pt;}
.x37_c01052{left:133.416000pt;}
.x6c_c01052{left:135.225333pt;}
.xc_c01052{left:136.946667pt;}
.x32_c01052{left:138.413745pt;}
.x76_c01052{left:139.774273pt;}
.x2a_c01052{left:144.577333pt;}
.x6d_c01052{left:149.386667pt;}
.x38_c01052{left:154.036000pt;}
.x5f_c01052{left:155.520000pt;}
.x6e_c01052{left:156.862667pt;}
.x24_c01052{left:166.071567pt;}
.x7e_c01052{left:171.945315pt;}
.xd_c01052{left:174.141333pt;}
.x1c_c01052{left:176.563687pt;}
.x3c_c01052{left:177.952000pt;}
.x67_c01052{left:180.480000pt;}
.x49_c01052{left:183.120000pt;}
.x2f_c01052{left:187.161269pt;}
.xe_c01052{left:189.657333pt;}
.x2b_c01052{left:191.049333pt;}
.x54_c01052{left:192.720000pt;}
.x40_c01052{left:196.935111pt;}
.x1d_c01052{left:198.824353pt;}
.x77_c01052{left:199.784533pt;}
.x6f_c01052{left:200.764000pt;}
.x4c_c01052{left:204.122667pt;}
.x39_c01052{left:206.300000pt;}
.x5b_c01052{left:210.125333pt;}
.x46_c01052{left:212.106667pt;}
.x4d_c01052{left:213.718667pt;}
.x55_c01052{left:217.440000pt;}
.x41_c01052{left:218.534332pt;}
.x25_c01052{left:220.077040pt;}
.x1e_c01052{left:221.733080pt;}
.x30_c01052{left:224.027151pt;}
.xf_c01052{left:226.612000pt;}
.x33_c01052{left:227.704783pt;}
.x78_c01052{left:230.003035pt;}
.x7_c01052{left:233.280000pt;}
.x64_c01052{left:234.480000pt;}
.x34_c01052{left:239.357168pt;}
.x48_c01052{left:245.770069pt;}
.x2c_c01052{left:250.166667pt;}
.x1_c01052{left:252.000000pt;}
.x3a_c01052{left:254.626667pt;}
.x56_c01052{left:256.320000pt;}
.x15_c01052{left:258.238667pt;}
.x1f_c01052{left:261.676680pt;}
.x68_c01052{left:262.800000pt;}
.x60_c01052{left:264.960000pt;}
.x79_c01052{left:267.237393pt;}
.x3b_c01052{left:271.577333pt;}
.x2_c01052{left:276.240000pt;}
.x26_c01052{left:277.203213pt;}
.x10_c01052{left:279.190667pt;}
.x2d_c01052{left:280.781333pt;}
.x72_c01052{left:281.978667pt;}
.x7a_c01052{left:283.088104pt;}
.x65_c01052{left:286.080000pt;}
.x11_c01052{left:287.745333pt;}
.x4e_c01052{left:290.009333pt;}
.x7f_c01052{left:293.732765pt;}
.x57_c01052{left:295.680000pt;}
.x3_c01052{left:298.320000pt;}
.x69_c01052{left:300.240000pt;}
.x35_c01052{left:303.078011pt;}
.x42_c01052{left:306.333953pt;}
.x20_c01052{left:307.744820pt;}
.x12_c01052{left:310.076000pt;}
.x3d_c01052{left:313.285333pt;}
.x27_c01052{left:315.367793pt;}
.x61_c01052{left:316.560000pt;}
.x73_c01052{left:322.545333pt;}
.x4_c01052{left:325.200000pt;}
.x8_c01052{left:326.400000pt;}
.x43_c01052{left:328.215859pt;}
.x58_c01052{left:330.720000pt;}
.x5c_c01052{left:332.558667pt;}
.x16_c01052{left:335.761333pt;}
.x6a_c01052{left:338.640000pt;}
.x5_c01052{left:340.560000pt;}
.x74_c01052{left:341.501333pt;}
.x3e_c01052{left:347.609333pt;}
.x17_c01052{left:354.554667pt;}
.x5d_c01052{left:355.569333pt;}
.x6_c01052{left:358.560000pt;}
.x62_c01052{left:363.600000pt;}
.x13_c01052{left:366.141333pt;}
.x21_c01052{left:367.083493pt;}
.x3f_c01052{left:368.010667pt;}
.x4a_c01052{left:371.040000pt;}
.x18_c01052{left:375.241333pt;}
.x80_c01052{left:378.079164pt;}
.x7b_c01052{left:379.337904pt;}
.x70_c01052{left:383.834667pt;}
.x63_c01052{left:386.400000pt;}
.x5e_c01052{left:392.521333pt;}
.x28_c01052{left:393.617393pt;}
.x19_c01052{left:394.572000pt;}
.x36_c01052{left:396.843873pt;}
.x9_c01052{left:398.160000pt;}
.x59_c01052{left:399.360000pt;}
.x31_c01052{left:400.613483pt;}
.x47_c01052{left:403.490667pt;}
.x71_c01052{left:408.352000pt;}
.x44_c01052{left:410.886008pt;}
.x45_c01052{left:412.625400pt;}
.x22_c01052{left:419.190840pt;}
.x1a_c01052{left:420.882667pt;}
.x14_c01052{left:423.204000pt;}
.x2e_c01052{left:426.646667pt;}
.x29_c01052{left:431.781973pt;}
.xa_c01052{left:437.280000pt;}
.x1b_c01052{left:440.572000pt;}
.x7c_c01052{left:449.905963pt;}
.x4f_c01052{left:452.869333pt;}
.x50_c01052{left:454.080000pt;}
.x5a_c01052{left:456.720000pt;}
.xb_c01052{left:458.400000pt;}
.x6b_c01052{left:459.360000pt;}
.x81_c01052{left:460.404457pt;}
.x83_c01052{left:463.440000pt;}
.x75_c01052{left:472.150667pt;}
.x82_c01052{left:474.096220pt;}
.x4b_c01052{left:482.400000pt;}
.x51_c01052{left:485.520000pt;}
.x52_c01052{left:488.880000pt;}
.x23_c01052{left:490.413240pt;}
.x53_c01052{left:510.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_c01053 {
    display:none;
  }
  .loading-indicator_c01053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01053 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01053 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01053" -> "#page-container .classname_c01053")
 */
.pf_c01053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01053 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01053 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01053 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01053 {overflow:visible;}
  }
}
.c_c01053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01053 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01053:after { /* webkit #35443 */
  content: '';
}
.t_c01053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01053 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01053 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01053 { /* info for Javascript */
  display:none;
}
.l_c01053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.000000;font-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_c01053{transform:matrix(0.058510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058510,0.000000,0.000000,0.250000,0,0);}
.m19_c01053{transform:matrix(0.115795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115795,0.000000,0.000000,0.250000,0,0);}
.m54_c01053{transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);}
.mea_c01053{transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136580,0.000000,0.000000,0.250000,0,0);}
.m5_c01053{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);}
.m6a_c01053{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m70_c01053{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);}
.med_c01053{transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151015,0.000000,0.000000,0.250000,0,0);}
.m67_c01053{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.me8_c01053{transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153130,0.000000,0.000000,0.250000,0,0);}
.m5f_c01053{transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153835,0.000000,0.000000,0.250000,0,0);}
.m5d_c01053{transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155165,0.000000,0.000000,0.250000,0,0);}
.md9_c01053{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);}
.m0_c01053{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);}
.me0_c01053{transform:matrix(0.157330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157330,0.000000,0.000000,0.250000,0,0);}
.ma0_c01053{transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161120,0.000000,0.000000,0.250000,0,0);}
.m6e_c01053{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);}
.m34_c01053{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);}
.m93_c01053{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);}
.mee_c01053{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);}
.mf0_c01053{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);}
.mbc_c01053{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);}
.m66_c01053{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);}
.m22_c01053{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);}
.mab_c01053{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);}
.m28_c01053{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);}
.mc7_c01053{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);}
.m24_c01053{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);}
.m3c_c01053{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);}
.m99_c01053{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);}
.mae_c01053{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);}
.ma2_c01053{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);}
.mef_c01053{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);}
.m4f_c01053{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);}
.mbd_c01053{transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171620,0.000000,0.000000,0.250000,0,0);}
.m26_c01053{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);}
.m1b_c01053{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);}
.ma5_c01053{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);}
.m3a_c01053{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);}
.m35_c01053{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);}
.m97_c01053{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);}
.m6b_c01053{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);}
.m6f_c01053{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);}
.m7_c01053{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);}
.m88_c01053{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);}
.m31_c01053{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);}
.m1d_c01053{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.ma3_c01053{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);}
.ma4_c01053{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);}
.m36_c01053{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);}
.m1a_c01053{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);}
.ma6_c01053{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);}
.m15_c01053{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_c01053{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);}
.m9_c01053{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);}
.m61_c01053{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);}
.m30_c01053{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);}
.m69_c01053{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);}
.m2d_c01053{transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179205,0.000000,0.000000,0.250000,0,0);}
.m41_c01053{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);}
.m57_c01053{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);}
.m25_c01053{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);}
.mf2_c01053{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);}
.mc_c01053{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);}
.m77_c01053{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);}
.m3b_c01053{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);}
.m75_c01053{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);}
.m42_c01053{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);}
.m23_c01053{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);}
.m64_c01053{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);}
.md5_c01053{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);}
.mba_c01053{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);}
.m38_c01053{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);}
.m87_c01053{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);}
.mc0_c01053{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);}
.mdd_c01053{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);}
.me9_c01053{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);}
.m89_c01053{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);}
.mcb_c01053{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);}
.mb_c01053{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);}
.mb8_c01053{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);}
.m7a_c01053{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);}
.maf_c01053{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);}
.md2_c01053{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);}
.m9d_c01053{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);}
.m58_c01053{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);}
.m3d_c01053{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);}
.m1c_c01053{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);}
.m7d_c01053{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);}
.m6d_c01053{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);}
.m8f_c01053{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);}
.me1_c01053{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);}
.mca_c01053{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);}
.m5e_c01053{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);}
.m68_c01053{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);}
.m29_c01053{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_c01053{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);}
.m9e_c01053{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);}
.mc3_c01053{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);}
.me2_c01053{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);}
.m71_c01053{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);}
.ma1_c01053{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);}
.m84_c01053{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);}
.mb5_c01053{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);}
.m16_c01053{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);}
.m9c_c01053{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);}
.m60_c01053{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);}
.me4_c01053{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);}
.m74_c01053{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);}
.m27_c01053{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);}
.m8d_c01053{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.mbf_c01053{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);}
.m98_c01053{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);}
.m59_c01053{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);}
.me5_c01053{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);}
.mcc_c01053{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);}
.m8_c01053{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);}
.m56_c01053{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);}
.md1_c01053{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);}
.md8_c01053{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);}
.m4e_c01053{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);}
.maa_c01053{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);}
.m83_c01053{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.m7f_c01053{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);}
.m2f_c01053{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);}
.mc5_c01053{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);}
.m52_c01053{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);}
.m7c_c01053{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);}
.m63_c01053{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);}
.m62_c01053{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);}
.m2e_c01053{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);}
.mcd_c01053{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_c01053{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);}
.m86_c01053{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);}
.m51_c01053{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);}
.md7_c01053{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);}
.m3e_c01053{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);}
.m8c_c01053{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);}
.mbb_c01053{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);}
.mec_c01053{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);}
.mad_c01053{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);}
.m12_c01053{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);}
.m14_c01053{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);}
.m9f_c01053{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);}
.mce_c01053{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);}
.md4_c01053{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);}
.me_c01053{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);}
.m55_c01053{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);}
.m73_c01053{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);}
.m5c_c01053{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);}
.m8a_c01053{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);}
.m13_c01053{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);}
.m53_c01053{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);}
.m2b_c01053{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);}
.m76_c01053{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);}
.m90_c01053{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);}
.md6_c01053{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);}
.m37_c01053{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);}
.md3_c01053{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);}
.meb_c01053{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);}
.m92_c01053{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);}
.m17_c01053{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);}
.m6c_c01053{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);}
.m4c_c01053{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);}
.m72_c01053{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);}
.mbe_c01053{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);}
.m4_c01053{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);}
.m18_c01053{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);}
.mde_c01053{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);}
.m94_c01053{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);}
.m85_c01053{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);}
.m81_c01053{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);}
.m79_c01053{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);}
.mac_c01053{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);}
.m80_c01053{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);}
.m91_c01053{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);}
.m43_c01053{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);}
.m9b_c01053{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);}
.m7b_c01053{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);}
.m21_c01053{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);}
.m2c_c01053{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);}
.m39_c01053{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m96_c01053{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);}
.m7e_c01053{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);}
.m1_c01053{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);}
.md_c01053{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);}
.m45_c01053{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);}
.mcf_c01053{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);}
.m49_c01053{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);}
.m1f_c01053{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);}
.m50_c01053{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);}
.m46_c01053{transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238710,0.000000,0.000000,0.250000,0,0);}
.m9a_c01053{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);}
.m1e_c01053{transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239695,0.000000,0.000000,0.250000,0,0);}
.ma7_c01053{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m5a_c01053{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);}
.m4b_c01053{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);}
.m4d_c01053{transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);}
.mb4_c01053{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);}
.m2a_c01053{transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);}
.m47_c01053{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);}
.me3_c01053{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);}
.mb9_c01053{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);}
.m44_c01053{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);}
.mdc_c01053{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.m11_c01053{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);}
.m8e_c01053{transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259920,0.000000,0.000000,0.250000,0,0);}
.m2_c01053{transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);}
.mb1_c01053{transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264455,0.000000,0.000000,0.250000,0,0);}
.mb2_c01053{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);}
.mc2_c01053{transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);}
.m20_c01053{transform:matrix(0.274930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274930,0.000000,0.000000,0.250000,0,0);}
.m3f_c01053{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);}
.m6_c01053{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.m8b_c01053{transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281915,0.000000,0.000000,0.250000,0,0);}
.mf1_c01053{transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);}
.m82_c01053{transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290785,0.000000,0.000000,0.250000,0,0);}
.ma9_c01053{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.mda_c01053{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.m10_c01053{transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);}
.m32_c01053{transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);}
.m5b_c01053{transform:matrix(0.313320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313320,0.000000,0.000000,0.250000,0,0);}
.m4a_c01053{transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324130,0.000000,0.000000,0.250000,0,0);}
.m33_c01053{transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326145,0.000000,0.000000,0.250000,0,0);}
.mdb_c01053{transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326225,0.000000,0.000000,0.250000,0,0);}
.mb3_c01053{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);}
.m78_c01053{transform:matrix(0.334360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334360,0.000000,0.000000,0.250000,0,0);}
.mc9_c01053{transform:matrix(0.342375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342375,0.000000,0.000000,0.250000,0,0);}
.mb6_c01053{transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343475,0.000000,0.000000,0.250000,0,0);}
.mdf_c01053{transform:matrix(0.343495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343495,0.000000,0.000000,0.250000,0,0);}
.m95_c01053{transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344245,0.000000,0.000000,0.250000,0,0);}
.mc6_c01053{transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);}
.m40_c01053{transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351220,0.000000,0.000000,0.250000,0,0);}
.m48_c01053{transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360460,0.000000,0.000000,0.250000,0,0);}
.md0_c01053{transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369175,0.000000,0.000000,0.250000,0,0);}
.mb0_c01053{transform:matrix(0.389655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389655,0.000000,0.000000,0.250000,0,0);}
.me6_c01053{transform:matrix(0.395510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395510,0.000000,0.000000,0.250000,0,0);}
.mf_c01053{transform:matrix(0.423555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423555,0.000000,0.000000,0.250000,0,0);}
.m3_c01053{transform:matrix(0.435415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435415,0.000000,0.000000,0.250000,0,0);}
.me7_c01053{transform:matrix(0.456435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456435,0.000000,0.000000,0.250000,0,0);}
.mc1_c01053{transform:matrix(0.493260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493260,0.000000,0.000000,0.250000,0,0);}
.mb7_c01053{transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);}
.mc8_c01053{transform:matrix(2.974825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.974825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.974825,0.000000,0.000000,0.250000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls0_c01053{letter-spacing:0.000000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:0.000000px;}
.fc0_c01053{color:transparent;}
.fs2_c01053{font-size:47.250000px;}
.fs10_c01053{font-size:51.450000px;}
.fs11_c01053{font-size:52.500000px;}
.fs5_c01053{font-size:53.550000px;}
.fs12_c01053{font-size:54.600000px;}
.fse_c01053{font-size:60.900000px;}
.fs9_c01053{font-size:61.950000px;}
.fs1_c01053{font-size:63.000000px;}
.fs8_c01053{font-size:64.050000px;}
.fs7_c01053{font-size:67.200000px;}
.fsc_c01053{font-size:68.250000px;}
.fs4_c01053{font-size:70.350000px;}
.fs3_c01053{font-size:71.400000px;}
.fs6_c01053{font-size:72.450000px;}
.fsf_c01053{font-size:74.550000px;}
.fsb_c01053{font-size:75.600000px;}
.fsa_c01053{font-size:78.750000px;}
.fsd_c01053{font-size:80.850000px;}
.fs0_c01053{font-size:137.550000px;}
.y0_c01053{bottom:0.000000px;}
.y23_c01053{bottom:151.689000px;}
.y6_c01053{bottom:152.412000px;}
.y22_c01053{bottom:169.708500px;}
.y3_c01053{bottom:170.647500px;}
.y2_c01053{bottom:186.030000px;}
.y21_c01053{bottom:186.984000px;}
.y20_c01053{bottom:223.281000px;}
.y1f_c01053{bottom:242.541000px;}
.y1e_c01053{bottom:265.297500px;}
.y1d_c01053{bottom:288.750000px;}
.y1c_c01053{bottom:311.217000px;}
.y1b_c01053{bottom:338.181000px;}
.y1a_c01053{bottom:365.763000px;}
.y19_c01053{bottom:388.398000px;}
.y18_c01053{bottom:411.433500px;}
.y17_c01053{bottom:433.891500px;}
.y16_c01053{bottom:456.520500px;}
.y15_c01053{bottom:478.515000px;}
.y14_c01053{bottom:500.688000px;}
.y13_c01053{bottom:524.152500px;}
.y12_c01053{bottom:546.829500px;}
.y11_c01053{bottom:570.150000px;}
.y10_c01053{bottom:592.833000px;}
.y5_c01053{bottom:615.600000px;}
.y4_c01053{bottom:638.509500px;}
.yf_c01053{bottom:638.572500px;}
.ye_c01053{bottom:660.960000px;}
.yd_c01053{bottom:683.508000px;}
.yc_c01053{bottom:706.590000px;}
.yb_c01053{bottom:729.427500px;}
.ya_c01053{bottom:752.047500px;}
.y9_c01053{bottom:774.540000px;}
.y8_c01053{bottom:797.092500px;}
.y7_c01053{bottom:824.988000px;}
.y1_c01053{bottom:869.133000px;}
.h4_c01053{height:47.250000px;}
.h12_c01053{height:51.450000px;}
.h13_c01053{height:52.500000px;}
.h7_c01053{height:53.550000px;}
.h14_c01053{height:54.600000px;}
.h10_c01053{height:60.900000px;}
.hb_c01053{height:61.950000px;}
.h3_c01053{height:63.000000px;}
.ha_c01053{height:64.050000px;}
.h9_c01053{height:67.200000px;}
.he_c01053{height:68.250000px;}
.h6_c01053{height:70.350000px;}
.h5_c01053{height:71.400000px;}
.h8_c01053{height:72.450000px;}
.h11_c01053{height:74.550000px;}
.hd_c01053{height:75.600000px;}
.hc_c01053{height:78.750000px;}
.hf_c01053{height:80.850000px;}
.h2_c01053{height:137.550000px;}
.h0_c01053{height:1008.450000px;}
.h1_c01053{height:1008.750000px;}
.w1_c01053{width:700.500000px;}
.w0_c01053{width:700.650000px;}
.x0_c01053{left:0.000000px;}
.x5_c01053{left:128.790000px;}
.x4_c01053{left:133.110000px;}
.x6_c01053{left:145.800000px;}
.x4f_c01053{left:161.460000px;}
.x7_c01053{left:162.810000px;}
.xf_c01053{left:163.890000px;}
.x87_c01053{left:164.970000px;}
.x80_c01053{left:179.010000px;}
.x88_c01053{left:182.790000px;}
.x77_c01053{left:184.680000px;}
.x8f_c01053{left:185.760000px;}
.x19_c01053{left:187.920000px;}
.x59_c01053{left:190.350000px;}
.x6a_c01053{left:191.700000px;}
.x1f_c01053{left:192.780000px;}
.x3a_c01053{left:198.450000px;}
.x32_c01053{left:201.420000px;}
.x7b_c01053{left:203.040000px;}
.x4c_c01053{left:205.470000px;}
.x60_c01053{left:207.900000px;}
.x1_c01053{left:209.250000px;}
.x7c_c01053{left:212.220000px;}
.x3b_c01053{left:217.620000px;}
.x8_c01053{left:222.210000px;}
.x2d_c01053{left:223.290000px;}
.x78_c01053{left:224.370000px;}
.x10_c01053{left:227.610000px;}
.x7d_c01053{left:229.230000px;}
.x2e_c01053{left:233.280000px;}
.x26_c01053{left:234.360000px;}
.x2_c01053{left:237.600000px;}
.x33_c01053{left:238.680000px;}
.x4d_c01053{left:240.300000px;}
.x81_c01053{left:241.920000px;}
.x5a_c01053{left:244.080000px;}
.x9_c01053{left:245.970000px;}
.x11_c01053{left:247.050000px;}
.x61_c01053{left:248.400000px;}
.x79_c01053{left:249.480000px;}
.x67_c01053{left:252.720000px;}
.x20_c01053{left:257.310000px;}
.x54_c01053{left:258.390000px;}
.x82_c01053{left:261.090000px;}
.x6b_c01053{left:264.870000px;}
.x1a_c01053{left:266.220000px;}
.x50_c01053{left:267.840000px;}
.x34_c01053{left:269.730000px;}
.x12_c01053{left:272.160000px;}
.x62_c01053{left:276.210000px;}
.x48_c01053{left:279.180000px;}
.x27_c01053{left:280.260000px;}
.x3c_c01053{left:281.880000px;}
.x68_c01053{left:284.310000px;}
.x42_c01053{left:285.660000px;}
.x21_c01053{left:288.090000px;}
.x70_c01053{left:291.870000px;}
.xa_c01053{left:297.000000px;}
.x7e_c01053{left:298.080000px;}
.x63_c01053{left:299.160000px;}
.x7f_c01053{left:300.240000px;}
.x35_c01053{left:301.860000px;}
.xe_c01053{left:303.750000px;}
.x90_c01053{left:306.180000px;}
.x43_c01053{left:311.040000px;}
.x49_c01053{left:317.790000px;}
.x1b_c01053{left:318.870000px;}
.x28_c01053{left:322.110000px;}
.x74_c01053{left:326.700000px;}
.x55_c01053{left:329.400000px;}
.xb_c01053{left:331.830000px;}
.x5b_c01053{left:332.910000px;}
.x6c_c01053{left:335.880000px;}
.x1c_c01053{left:337.230000px;}
.x2f_c01053{left:338.310000px;}
.x22_c01053{left:340.200000px;}
.x75_c01053{left:341.280000px;}
.x13_c01053{left:342.900000px;}
.x64_c01053{left:349.110000px;}
.x3d_c01053{left:350.460000px;}
.x6d_c01053{left:351.540000px;}
.x71_c01053{left:354.240000px;}
.x56_c01053{left:355.320000px;}
.x3e_c01053{left:358.560000px;}
.x5d_c01053{left:360.180000px;}
.x14_c01053{left:362.610000px;}
.x51_c01053{left:364.500000px;}
.xc_c01053{left:367.740000px;}
.x3_c01053{left:369.090000px;}
.x29_c01053{left:370.710000px;}
.x1d_c01053{left:374.490000px;}
.x65_c01053{left:376.650000px;}
.x23_c01053{left:378.810000px;}
.x5e_c01053{left:382.320000px;}
.x15_c01053{left:383.400000px;}
.x6e_c01053{left:395.550000px;}
.x57_c01053{left:399.870000px;}
.x7a_c01053{left:403.110000px;}
.x30_c01053{left:407.430000px;}
.x4a_c01053{left:410.130000px;}
.x83_c01053{left:412.020000px;}
.x91_c01053{left:413.370000px;}
.x44_c01053{left:414.990000px;}
.x5c_c01053{left:422.280000px;}
.xd_c01053{left:426.870000px;}
.x89_c01053{left:427.950000px;}
.x16_c01053{left:430.110000px;}
.x72_c01053{left:431.190000px;}
.x36_c01053{left:432.810000px;}
.x6f_c01053{left:435.240000px;}
.x3f_c01053{left:436.860000px;}
.x76_c01053{left:438.750000px;}
.x24_c01053{left:441.450000px;}
.x2a_c01053{left:444.150000px;}
.x5f_c01053{left:447.120000px;}
.x1e_c01053{left:449.280000px;}
.x52_c01053{left:453.600000px;}
.x17_c01053{left:456.570000px;}
.x40_c01053{left:460.620000px;}
.x45_c01053{left:464.130000px;}
.x4b_c01053{left:465.210000px;}
.x25_c01053{left:469.530000px;}
.x84_c01053{left:472.500000px;}
.x53_c01053{left:474.930000px;}
.x66_c01053{left:478.710000px;}
.x37_c01053{left:481.680000px;}
.x2b_c01053{left:483.030000px;}
.x31_c01053{left:484.920000px;}
.x58_c01053{left:487.890000px;}
.x8a_c01053{left:491.130000px;}
.x46_c01053{left:494.640000px;}
.x41_c01053{left:498.150000px;}
.x38_c01053{left:499.770000px;}
.x18_c01053{left:504.360000px;}
.x8b_c01053{left:505.440000px;}
.x4e_c01053{left:507.870000px;}
.x69_c01053{left:511.380000px;}
.x2c_c01053{left:514.890000px;}
.x73_c01053{left:520.560000px;}
.x39_c01053{left:531.090000px;}
.x8c_c01053{left:542.700000px;}
.x85_c01053{left:547.830000px;}
.x8d_c01053{left:555.930000px;}
.x47_c01053{left:557.280000px;}
.x8e_c01053{left:575.100000px;}
.x86_c01053{left:582.390000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls0_c01053{letter-spacing:0.000000pt;}
.ws0_c01053{word-spacing:0.000000pt;}
.fs2_c01053{font-size:42.000000pt;}
.fs10_c01053{font-size:45.733333pt;}
.fs11_c01053{font-size:46.666667pt;}
.fs5_c01053{font-size:47.600000pt;}
.fs12_c01053{font-size:48.533333pt;}
.fse_c01053{font-size:54.133333pt;}
.fs9_c01053{font-size:55.066667pt;}
.fs1_c01053{font-size:56.000000pt;}
.fs8_c01053{font-size:56.933333pt;}
.fs7_c01053{font-size:59.733333pt;}
.fsc_c01053{font-size:60.666667pt;}
.fs4_c01053{font-size:62.533333pt;}
.fs3_c01053{font-size:63.466667pt;}
.fs6_c01053{font-size:64.400000pt;}
.fsf_c01053{font-size:66.266667pt;}
.fsb_c01053{font-size:67.200000pt;}
.fsa_c01053{font-size:70.000000pt;}
.fsd_c01053{font-size:71.866667pt;}
.fs0_c01053{font-size:122.266667pt;}
.y0_c01053{bottom:0.000000pt;}
.y23_c01053{bottom:134.834667pt;}
.y6_c01053{bottom:135.477333pt;}
.y22_c01053{bottom:150.852000pt;}
.y3_c01053{bottom:151.686667pt;}
.y2_c01053{bottom:165.360000pt;}
.y21_c01053{bottom:166.208000pt;}
.y20_c01053{bottom:198.472000pt;}
.y1f_c01053{bottom:215.592000pt;}
.y1e_c01053{bottom:235.820000pt;}
.y1d_c01053{bottom:256.666667pt;}
.y1c_c01053{bottom:276.637333pt;}
.y1b_c01053{bottom:300.605333pt;}
.y1a_c01053{bottom:325.122667pt;}
.y19_c01053{bottom:345.242667pt;}
.y18_c01053{bottom:365.718667pt;}
.y17_c01053{bottom:385.681333pt;}
.y16_c01053{bottom:405.796000pt;}
.y15_c01053{bottom:425.346667pt;}
.y14_c01053{bottom:445.056000pt;}
.y13_c01053{bottom:465.913333pt;}
.y12_c01053{bottom:486.070667pt;}
.y11_c01053{bottom:506.800000pt;}
.y10_c01053{bottom:526.962667pt;}
.y5_c01053{bottom:547.200000pt;}
.y4_c01053{bottom:567.564000pt;}
.yf_c01053{bottom:567.620000pt;}
.ye_c01053{bottom:587.520000pt;}
.yd_c01053{bottom:607.562667pt;}
.yc_c01053{bottom:628.080000pt;}
.yb_c01053{bottom:648.380000pt;}
.ya_c01053{bottom:668.486667pt;}
.y9_c01053{bottom:688.480000pt;}
.y8_c01053{bottom:708.526667pt;}
.y7_c01053{bottom:733.322667pt;}
.y1_c01053{bottom:772.562667pt;}
.h4_c01053{height:42.000000pt;}
.h12_c01053{height:45.733333pt;}
.h13_c01053{height:46.666667pt;}
.h7_c01053{height:47.600000pt;}
.h14_c01053{height:48.533333pt;}
.h10_c01053{height:54.133333pt;}
.hb_c01053{height:55.066667pt;}
.h3_c01053{height:56.000000pt;}
.ha_c01053{height:56.933333pt;}
.h9_c01053{height:59.733333pt;}
.he_c01053{height:60.666667pt;}
.h6_c01053{height:62.533333pt;}
.h5_c01053{height:63.466667pt;}
.h8_c01053{height:64.400000pt;}
.h11_c01053{height:66.266667pt;}
.hd_c01053{height:67.200000pt;}
.hc_c01053{height:70.000000pt;}
.hf_c01053{height:71.866667pt;}
.h2_c01053{height:122.266667pt;}
.h0_c01053{height:896.400000pt;}
.h1_c01053{height:896.666667pt;}
.w1_c01053{width:622.666667pt;}
.w0_c01053{width:622.800000pt;}
.x0_c01053{left:0.000000pt;}
.x5_c01053{left:114.480000pt;}
.x4_c01053{left:118.320000pt;}
.x6_c01053{left:129.600000pt;}
.x4f_c01053{left:143.520000pt;}
.x7_c01053{left:144.720000pt;}
.xf_c01053{left:145.680000pt;}
.x87_c01053{left:146.640000pt;}
.x80_c01053{left:159.120000pt;}
.x88_c01053{left:162.480000pt;}
.x77_c01053{left:164.160000pt;}
.x8f_c01053{left:165.120000pt;}
.x19_c01053{left:167.040000pt;}
.x59_c01053{left:169.200000pt;}
.x6a_c01053{left:170.400000pt;}
.x1f_c01053{left:171.360000pt;}
.x3a_c01053{left:176.400000pt;}
.x32_c01053{left:179.040000pt;}
.x7b_c01053{left:180.480000pt;}
.x4c_c01053{left:182.640000pt;}
.x60_c01053{left:184.800000pt;}
.x1_c01053{left:186.000000pt;}
.x7c_c01053{left:188.640000pt;}
.x3b_c01053{left:193.440000pt;}
.x8_c01053{left:197.520000pt;}
.x2d_c01053{left:198.480000pt;}
.x78_c01053{left:199.440000pt;}
.x10_c01053{left:202.320000pt;}
.x7d_c01053{left:203.760000pt;}
.x2e_c01053{left:207.360000pt;}
.x26_c01053{left:208.320000pt;}
.x2_c01053{left:211.200000pt;}
.x33_c01053{left:212.160000pt;}
.x4d_c01053{left:213.600000pt;}
.x81_c01053{left:215.040000pt;}
.x5a_c01053{left:216.960000pt;}
.x9_c01053{left:218.640000pt;}
.x11_c01053{left:219.600000pt;}
.x61_c01053{left:220.800000pt;}
.x79_c01053{left:221.760000pt;}
.x67_c01053{left:224.640000pt;}
.x20_c01053{left:228.720000pt;}
.x54_c01053{left:229.680000pt;}
.x82_c01053{left:232.080000pt;}
.x6b_c01053{left:235.440000pt;}
.x1a_c01053{left:236.640000pt;}
.x50_c01053{left:238.080000pt;}
.x34_c01053{left:239.760000pt;}
.x12_c01053{left:241.920000pt;}
.x62_c01053{left:245.520000pt;}
.x48_c01053{left:248.160000pt;}
.x27_c01053{left:249.120000pt;}
.x3c_c01053{left:250.560000pt;}
.x68_c01053{left:252.720000pt;}
.x42_c01053{left:253.920000pt;}
.x21_c01053{left:256.080000pt;}
.x70_c01053{left:259.440000pt;}
.xa_c01053{left:264.000000pt;}
.x7e_c01053{left:264.960000pt;}
.x63_c01053{left:265.920000pt;}
.x7f_c01053{left:266.880000pt;}
.x35_c01053{left:268.320000pt;}
.xe_c01053{left:270.000000pt;}
.x90_c01053{left:272.160000pt;}
.x43_c01053{left:276.480000pt;}
.x49_c01053{left:282.480000pt;}
.x1b_c01053{left:283.440000pt;}
.x28_c01053{left:286.320000pt;}
.x74_c01053{left:290.400000pt;}
.x55_c01053{left:292.800000pt;}
.xb_c01053{left:294.960000pt;}
.x5b_c01053{left:295.920000pt;}
.x6c_c01053{left:298.560000pt;}
.x1c_c01053{left:299.760000pt;}
.x2f_c01053{left:300.720000pt;}
.x22_c01053{left:302.400000pt;}
.x75_c01053{left:303.360000pt;}
.x13_c01053{left:304.800000pt;}
.x64_c01053{left:310.320000pt;}
.x3d_c01053{left:311.520000pt;}
.x6d_c01053{left:312.480000pt;}
.x71_c01053{left:314.880000pt;}
.x56_c01053{left:315.840000pt;}
.x3e_c01053{left:318.720000pt;}
.x5d_c01053{left:320.160000pt;}
.x14_c01053{left:322.320000pt;}
.x51_c01053{left:324.000000pt;}
.xc_c01053{left:326.880000pt;}
.x3_c01053{left:328.080000pt;}
.x29_c01053{left:329.520000pt;}
.x1d_c01053{left:332.880000pt;}
.x65_c01053{left:334.800000pt;}
.x23_c01053{left:336.720000pt;}
.x5e_c01053{left:339.840000pt;}
.x15_c01053{left:340.800000pt;}
.x6e_c01053{left:351.600000pt;}
.x57_c01053{left:355.440000pt;}
.x7a_c01053{left:358.320000pt;}
.x30_c01053{left:362.160000pt;}
.x4a_c01053{left:364.560000pt;}
.x83_c01053{left:366.240000pt;}
.x91_c01053{left:367.440000pt;}
.x44_c01053{left:368.880000pt;}
.x5c_c01053{left:375.360000pt;}
.xd_c01053{left:379.440000pt;}
.x89_c01053{left:380.400000pt;}
.x16_c01053{left:382.320000pt;}
.x72_c01053{left:383.280000pt;}
.x36_c01053{left:384.720000pt;}
.x6f_c01053{left:386.880000pt;}
.x3f_c01053{left:388.320000pt;}
.x76_c01053{left:390.000000pt;}
.x24_c01053{left:392.400000pt;}
.x2a_c01053{left:394.800000pt;}
.x5f_c01053{left:397.440000pt;}
.x1e_c01053{left:399.360000pt;}
.x52_c01053{left:403.200000pt;}
.x17_c01053{left:405.840000pt;}
.x40_c01053{left:409.440000pt;}
.x45_c01053{left:412.560000pt;}
.x4b_c01053{left:413.520000pt;}
.x25_c01053{left:417.360000pt;}
.x84_c01053{left:420.000000pt;}
.x53_c01053{left:422.160000pt;}
.x66_c01053{left:425.520000pt;}
.x37_c01053{left:428.160000pt;}
.x2b_c01053{left:429.360000pt;}
.x31_c01053{left:431.040000pt;}
.x58_c01053{left:433.680000pt;}
.x8a_c01053{left:436.560000pt;}
.x46_c01053{left:439.680000pt;}
.x41_c01053{left:442.800000pt;}
.x38_c01053{left:444.240000pt;}
.x18_c01053{left:448.320000pt;}
.x8b_c01053{left:449.280000pt;}
.x4e_c01053{left:451.440000pt;}
.x69_c01053{left:454.560000pt;}
.x2c_c01053{left:457.680000pt;}
.x73_c01053{left:462.720000pt;}
.x39_c01053{left:472.080000pt;}
.x8c_c01053{left:482.400000pt;}
.x85_c01053{left:486.960000pt;}
.x8d_c01053{left:494.160000pt;}
.x47_c01053{left:495.360000pt;}
.x8e_c01053{left:511.200000pt;}
.x86_c01053{left:517.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_c01054 {
    display:none;
  }
  .loading-indicator_c01054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01054 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01054 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01054" -> "#page-container .classname_c01054")
 */
.pf_c01054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01054 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01054 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01054 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01054 {overflow:visible;}
  }
}
.c_c01054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01054 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01054:after { /* webkit #35443 */
  content: '';
}
.t_c01054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01054 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01054 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01054 { /* info for Javascript */
  display:none;
}
.l_c01054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.000000;font-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_c01054{transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010390,0.000000,0.000000,0.250000,0,0);}
.m9_c01054{transform:matrix(0.010695,-0.000096,0.002250,0.249990,0,0);-ms-transform:matrix(0.010695,-0.000096,0.002250,0.249990,0,0);-webkit-transform:matrix(0.010695,-0.000096,0.002250,0.249990,0,0);}
.m2d_c01054{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);}
.m0_c01054{transform:matrix(0.045533,-0.000410,0.002250,0.249990,0,0);-ms-transform:matrix(0.045533,-0.000410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.045533,-0.000410,0.002250,0.249990,0,0);}
.m67_c01054{transform:matrix(0.063355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063355,0.000000,0.000000,0.250000,0,0);}
.mc_c01054{transform:matrix(0.069645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069645,0.000000,0.000000,0.250000,0,0);}
.m91_c01054{transform:matrix(0.086230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086230,0.000000,0.000000,0.250000,0,0);}
.m75_c01054{transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);}
.m13_c01054{transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);}
.ma6_c01054{transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113345,0.000000,0.000000,0.250000,0,0);}
.m9c_c01054{transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);}
.m97_c01054{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);}
.m8e_c01054{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m31_c01054{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);}
.m8d_c01054{transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149760,0.000000,0.000000,0.250000,0,0);}
.m3d_c01054{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);}
.m8b_c01054{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m9b_c01054{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);}
.ma2_c01054{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);}
.m24_c01054{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);}
.m35_c01054{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);}
.maa_c01054{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);}
.m3_c01054{transform:matrix(0.155584,-0.001400,0.002250,0.249990,0,0);-ms-transform:matrix(0.155584,-0.001400,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155584,-0.001400,0.002250,0.249990,0,0);}
.m6b_c01054{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);}
.ma4_c01054{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);}
.m9a_c01054{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);}
.m54_c01054{transform:matrix(0.157050,-0.001256,0.002000,0.249992,0,0);-ms-transform:matrix(0.157050,-0.001256,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157050,-0.001256,0.002000,0.249992,0,0);}
.m99_c01054{transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157105,0.000000,0.000000,0.250000,0,0);}
.mc0_c01054{transform:matrix(0.157577,-0.002048,0.003250,0.249979,0,0);-ms-transform:matrix(0.157577,-0.002048,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157577,-0.002048,0.003250,0.249979,0,0);}
.m57_c01054{transform:matrix(0.159185,-0.001273,0.002000,0.249992,0,0);-ms-transform:matrix(0.159185,-0.001273,0.002000,0.249992,0,0);-webkit-transform:matrix(0.159185,-0.001273,0.002000,0.249992,0,0);}
.m52_c01054{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m96_c01054{transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160660,0.000000,0.000000,0.250000,0,0);}
.m9d_c01054{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);}
.m38_c01054{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);}
.m86_c01054{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);}
.mb2_c01054{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);}
.ma3_c01054{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4_c01054{transform:matrix(0.165248,-0.001487,0.002250,0.249990,0,0);-ms-transform:matrix(0.165248,-0.001487,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165248,-0.001487,0.002250,0.249990,0,0);}
.m88_c01054{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);}
.m69_c01054{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);}
.mb4_c01054{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_c01054{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);}
.m6f_c01054{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);}
.m40_c01054{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);}
.m59_c01054{transform:matrix(0.168305,-0.001346,0.002000,0.249992,0,0);-ms-transform:matrix(0.168305,-0.001346,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168305,-0.001346,0.002000,0.249992,0,0);}
.m33_c01054{transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169710,0.000000,0.000000,0.250000,0,0);}
.maf_c01054{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m65_c01054{transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170585,0.000000,0.000000,0.250000,0,0);}
.m80_c01054{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);}
.m5f_c01054{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);}
.m8f_c01054{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);}
.m85_c01054{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);}
.m98_c01054{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);}
.m93_c01054{transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);}
.mad_c01054{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);}
.m6e_c01054{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);}
.ma0_c01054{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);}
.m74_c01054{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);}
.m29_c01054{transform:matrix(0.175001,-0.006306,0.009003,0.249838,0,0);-ms-transform:matrix(0.175001,-0.006306,0.009003,0.249838,0,0);-webkit-transform:matrix(0.175001,-0.006306,0.009003,0.249838,0,0);}
.mb3_c01054{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);}
.m66_c01054{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);}
.m42_c01054{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);}
.m95_c01054{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);}
.mc1_c01054{transform:matrix(0.177710,-0.002310,0.003250,0.249979,0,0);-ms-transform:matrix(0.177710,-0.002310,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177710,-0.002310,0.003250,0.249979,0,0);}
.m63_c01054{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);}
.ma1_c01054{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);}
.ma8_c01054{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);}
.m39_c01054{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);}
.mb0_c01054{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m11_c01054{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);}
.m45_c01054{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);}
.m6c_c01054{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);}
.m5d_c01054{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);}
.m9f_c01054{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);}
.m72_c01054{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);}
.m36_c01054{transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183570,0.000000,0.000000,0.250000,0,0);}
.m9e_c01054{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);}
.m92_c01054{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);}
.m37_c01054{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);}
.m8c_c01054{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);}
.ma5_c01054{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);}
.m77_c01054{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);}
.m1f_c01054{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);}
.m73_c01054{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);}
.m89_c01054{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);}
.m4f_c01054{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);}
.m5b_c01054{transform:matrix(0.188329,-0.001507,0.002000,0.249992,0,0);-ms-transform:matrix(0.188329,-0.001507,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188329,-0.001507,0.002000,0.249992,0,0);}
.m2f_c01054{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);}
.m50_c01054{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);}
.m41_c01054{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);}
.mab_c01054{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);}
.m64_c01054{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);}
.m28_c01054{transform:matrix(0.191086,-0.006886,0.009003,0.249838,0,0);-ms-transform:matrix(0.191086,-0.006886,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191086,-0.006886,0.009003,0.249838,0,0);}
.m6d_c01054{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);}
.mb9_c01054{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);}
.m8_c01054{transform:matrix(0.192812,-0.001735,0.002250,0.249990,0,0);-ms-transform:matrix(0.192812,-0.001735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192812,-0.001735,0.002250,0.249990,0,0);}
.m30_c01054{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);}
.m1_c01054{transform:matrix(0.193432,-0.001741,0.002250,0.249990,0,0);-ms-transform:matrix(0.193432,-0.001741,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193432,-0.001741,0.002250,0.249990,0,0);}
.m3c_c01054{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);}
.m3b_c01054{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);}
.m8a_c01054{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);}
.mb1_c01054{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);}
.m56_c01054{transform:matrix(0.195869,-0.001567,0.002000,0.249992,0,0);-ms-transform:matrix(0.195869,-0.001567,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195869,-0.001567,0.002000,0.249992,0,0);}
.m1c_c01054{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);}
.mbb_c01054{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);}
.mbf_c01054{transform:matrix(0.197628,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197628,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197628,-0.002569,0.003250,0.249979,0,0);}
.m18_c01054{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);}
.m2c_c01054{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);}
.m2_c01054{transform:matrix(0.198407,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198407,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198407,-0.001786,0.002250,0.249990,0,0);}
.m32_c01054{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);}
.m71_c01054{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);}
.m1a_c01054{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);}
.m90_c01054{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);}
.m58_c01054{transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205073,-0.001641,0.002000,0.249992,0,0);}
.m7a_c01054{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);}
.m94_c01054{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);}
.m10_c01054{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);}
.mb7_c01054{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m20_c01054{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);}
.m22_c01054{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);}
.m55_c01054{transform:matrix(0.210983,-0.001688,0.002000,0.249992,0,0);-ms-transform:matrix(0.210983,-0.001688,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210983,-0.001688,0.002000,0.249992,0,0);}
.m5a_c01054{transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);-ms-transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211433,-0.001691,0.002000,0.249992,0,0);}
.m78_c01054{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);}
.m84_c01054{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);}
.m19_c01054{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);}
.m70_c01054{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);}
.m1b_c01054{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);}
.m15_c01054{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);}
.mb8_c01054{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);}
.m6a_c01054{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);}
.mb6_c01054{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);}
.m62_c01054{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);}
.m34_c01054{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);}
.m68_c01054{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);}
.m5e_c01054{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);}
.ma7_c01054{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);}
.m1d_c01054{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);}
.ma9_c01054{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);}
.me_c01054{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);}
.m60_c01054{transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229130,0.000000,0.000000,0.250000,0,0);}
.m47_c01054{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);}
.m27_c01054{transform:matrix(0.230940,-0.008322,0.009003,0.249838,0,0);-ms-transform:matrix(0.230940,-0.008322,0.009003,0.249838,0,0);-webkit-transform:matrix(0.230940,-0.008322,0.009003,0.249838,0,0);}
.m7d_c01054{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);}
.m14_c01054{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);}
.m5_c01054{transform:matrix(0.233376,-0.002100,0.002250,0.249990,0,0);-ms-transform:matrix(0.233376,-0.002100,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233376,-0.002100,0.002250,0.249990,0,0);}
.m17_c01054{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);}
.m3a_c01054{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);}
.mae_c01054{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);}
.m12_c01054{transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);}
.m16_c01054{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);}
.mc3_c01054{transform:matrix(0.239255,-0.003110,0.003250,0.249979,0,0);-ms-transform:matrix(0.239255,-0.003110,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239255,-0.003110,0.003250,0.249979,0,0);}
.m2e_c01054{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);}
.m5c_c01054{transform:matrix(0.240007,-0.001920,0.002000,0.249992,0,0);-ms-transform:matrix(0.240007,-0.001920,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240007,-0.001920,0.002000,0.249992,0,0);}
.m7e_c01054{transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243755,0.000000,0.000000,0.250000,0,0);}
.m76_c01054{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);}
.m44_c01054{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);}
.m26_c01054{transform:matrix(0.247539,-0.008920,0.009003,0.249838,0,0);-ms-transform:matrix(0.247539,-0.008920,0.009003,0.249838,0,0);-webkit-transform:matrix(0.247539,-0.008920,0.009003,0.249838,0,0);}
.md_c01054{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);}
.m4d_c01054{transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258505,0.000000,0.000000,0.250000,0,0);}
.m21_c01054{transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264890,0.000000,0.000000,0.250000,0,0);}
.mf_c01054{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.mba_c01054{transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271480,0.000000,0.000000,0.250000,0,0);}
.m4b_c01054{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01054{transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);}
.mbc_c01054{transform:matrix(0.283926,-0.003691,0.003250,0.249979,0,0);-ms-transform:matrix(0.283926,-0.003691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.283926,-0.003691,0.003250,0.249979,0,0);}
.m2a_c01054{transform:matrix(0.285120,-0.010275,0.009003,0.249838,0,0);-ms-transform:matrix(0.285120,-0.010275,0.009003,0.249838,0,0);-webkit-transform:matrix(0.285120,-0.010275,0.009003,0.249838,0,0);}
.mc2_c01054{transform:matrix(0.293030,-0.003809,0.003250,0.249979,0,0);-ms-transform:matrix(0.293030,-0.003809,0.003250,0.249979,0,0);-webkit-transform:matrix(0.293030,-0.003809,0.003250,0.249979,0,0);}
.mb_c01054{transform:matrix(0.308583,-0.002777,0.002250,0.249990,0,0);-ms-transform:matrix(0.308583,-0.002777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308583,-0.002777,0.002250,0.249990,0,0);}
.m4a_c01054{transform:matrix(0.309195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309195,0.000000,0.000000,0.250000,0,0);}
.m81_c01054{transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310945,0.000000,0.000000,0.250000,0,0);}
.mb5_c01054{transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315115,0.000000,0.000000,0.250000,0,0);}
.m7b_c01054{transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);}
.m61_c01054{transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346185,0.000000,0.000000,0.250000,0,0);}
.m43_c01054{transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346670,0.000000,0.000000,0.250000,0,0);}
.m25_c01054{transform:matrix(0.352531,-0.012704,0.009003,0.249838,0,0);-ms-transform:matrix(0.352531,-0.012704,0.009003,0.249838,0,0);-webkit-transform:matrix(0.352531,-0.012704,0.009003,0.249838,0,0);}
.m7c_c01054{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m6_c01054{transform:matrix(0.370790,-0.003337,0.002250,0.249990,0,0);-ms-transform:matrix(0.370790,-0.003337,0.002250,0.249990,0,0);-webkit-transform:matrix(0.370790,-0.003337,0.002250,0.249990,0,0);}
.m83_c01054{transform:matrix(0.372815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372815,0.000000,0.000000,0.250000,0,0);}
.m3f_c01054{transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378285,0.000000,0.000000,0.250000,0,0);}
.mac_c01054{transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395735,0.000000,0.000000,0.250000,0,0);}
.m7f_c01054{transform:matrix(0.404675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404675,0.000000,0.000000,0.250000,0,0);}
.m79_c01054{transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425405,0.000000,0.000000,0.250000,0,0);}
.m53_c01054{transform:matrix(0.435470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435470,0.000000,0.000000,0.250000,0,0);}
.ma_c01054{transform:matrix(0.440952,-0.003969,0.002250,0.249990,0,0);-ms-transform:matrix(0.440952,-0.003969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.440952,-0.003969,0.002250,0.249990,0,0);}
.m49_c01054{transform:matrix(0.450990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450990,0.000000,0.000000,0.250000,0,0);}
.m51_c01054{transform:matrix(0.477985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477985,0.000000,0.000000,0.250000,0,0);}
.m82_c01054{transform:matrix(0.548810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548810,0.000000,0.000000,0.250000,0,0);}
.m4c_c01054{transform:matrix(0.551005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551005,0.000000,0.000000,0.250000,0,0);}
.m2b_c01054{transform:matrix(0.552681,-0.019916,0.009003,0.249838,0,0);-ms-transform:matrix(0.552681,-0.019916,0.009003,0.249838,0,0);-webkit-transform:matrix(0.552681,-0.019916,0.009003,0.249838,0,0);}
.mbe_c01054{transform:matrix(0.616823,-0.008019,0.003250,0.249979,0,0);-ms-transform:matrix(0.616823,-0.008019,0.003250,0.249979,0,0);-webkit-transform:matrix(0.616823,-0.008019,0.003250,0.249979,0,0);}
.m1e_c01054{transform:matrix(0.625550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625550,0.000000,0.000000,0.250000,0,0);}
.m46_c01054{transform:matrix(0.671255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671255,0.000000,0.000000,0.250000,0,0);}
.m23_c01054{transform:matrix(0.672255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672255,0.000000,0.000000,0.250000,0,0);}
.m48_c01054{transform:matrix(0.699580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699580,0.000000,0.000000,0.250000,0,0);}
.m7_c01054{transform:matrix(0.712031,-0.006408,0.002250,0.249990,0,0);-ms-transform:matrix(0.712031,-0.006408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.712031,-0.006408,0.002250,0.249990,0,0);}
.mbd_c01054{transform:matrix(0.791943,-0.010295,0.003250,0.249979,0,0);-ms-transform:matrix(0.791943,-0.010295,0.003250,0.249979,0,0);-webkit-transform:matrix(0.791943,-0.010295,0.003250,0.249979,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls0_c01054{letter-spacing:0.000000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:0.000000px;}
.fc0_c01054{color:transparent;}
.fs2_c01054{font-size:48.300000px;}
.fs1_c01054{font-size:50.400000px;}
.fs10_c01054{font-size:57.754880px;}
.fs7_c01054{font-size:58.800000px;}
.fsf_c01054{font-size:61.950000px;}
.fs9_c01054{font-size:64.050000px;}
.fs8_c01054{font-size:65.100000px;}
.fsa_c01054{font-size:69.302218px;}
.fsb_c01054{font-size:70.350000px;}
.fs4_c01054{font-size:71.374898px;}
.fsd_c01054{font-size:71.400000px;}
.fs0_c01054{font-size:71.402892px;}
.fs5_c01054{font-size:72.450000px;}
.fs3_c01054{font-size:73.500000px;}
.fs6_c01054{font-size:74.550000px;}
.fse_c01054{font-size:76.650000px;}
.fsc_c01054{font-size:78.750000px;}
.y0_c01054{bottom:0.000000px;}
.ye_c01054{bottom:160.375500px;}
.y37_c01054{bottom:179.013000px;}
.yd_c01054{bottom:179.280000px;}
.y38_c01054{bottom:179.599384px;}
.y39_c01054{bottom:180.062763px;}
.y3a_c01054{bottom:180.784302px;}
.y3b_c01054{bottom:181.022378px;}
.y3c_c01054{bottom:181.461128px;}
.y3d_c01054{bottom:181.746471px;}
.y3e_c01054{bottom:182.233171px;}
.y1_c01054{bottom:227.610000px;}
.y2_c01054{bottom:227.836638px;}
.y3_c01054{bottom:228.390327px;}
.y4_c01054{bottom:228.956827px;}
.y5_c01054{bottom:229.119502px;}
.y6_c01054{bottom:229.510827px;}
.y7_c01054{bottom:229.671261px;}
.y8_c01054{bottom:229.989577px;}
.y9_c01054{bottom:230.543577px;}
.ya_c01054{bottom:230.730970px;}
.yb_c01054{bottom:231.129369px;}
.yc_c01054{bottom:231.510339px;}
.y36_c01054{bottom:252.454500px;}
.y35_c01054{bottom:275.454000px;}
.y34_c01054{bottom:298.195500px;}
.y33_c01054{bottom:320.955000px;}
.y32_c01054{bottom:343.512000px;}
.y31_c01054{bottom:366.565500px;}
.y30_c01054{bottom:389.781000px;}
.y2f_c01054{bottom:412.254000px;}
.y2e_c01054{bottom:434.970000px;}
.y1d_c01054{bottom:479.694000px;}
.y1c_c01054{bottom:501.651000px;}
.y1b_c01054{bottom:525.150000px;}
.y1a_c01054{bottom:547.969500px;}
.y19_c01054{bottom:572.002500px;}
.y18_c01054{bottom:594.565500px;}
.y10_c01054{bottom:607.005000px;}
.y11_c01054{bottom:608.767236px;}
.y12_c01054{bottom:611.374410px;}
.y13_c01054{bottom:613.323270px;}
.y14_c01054{bottom:615.251070px;}
.y15_c01054{bottom:615.808728px;}
.y16_c01054{bottom:616.655934px;}
.y17_c01054{bottom:619.161912px;}
.y2d_c01054{bottom:639.090000px;}
.yf_c01054{bottom:661.846500px;}
.y2c_c01054{bottom:684.526500px;}
.y2b_c01054{bottom:706.969500px;}
.y2a_c01054{bottom:729.915000px;}
.y21_c01054{bottom:750.865500px;}
.y22_c01054{bottom:750.978336px;}
.y23_c01054{bottom:751.312872px;}
.y24_c01054{bottom:751.654488px;}
.y25_c01054{bottom:751.971756px;}
.y26_c01054{bottom:752.611332px;}
.y27_c01054{bottom:752.820828px;}
.y28_c01054{bottom:753.341436px;}
.y29_c01054{bottom:753.738912px;}
.y20_c01054{bottom:775.722000px;}
.y1f_c01054{bottom:799.051500px;}
.y1e_c01054{bottom:821.095500px;}
.h4_c01054{height:48.300000px;}
.h3_c01054{height:50.400000px;}
.h12_c01054{height:57.754880px;}
.h9_c01054{height:58.800000px;}
.h11_c01054{height:61.950000px;}
.hb_c01054{height:64.050000px;}
.ha_c01054{height:65.100000px;}
.hc_c01054{height:69.302218px;}
.hd_c01054{height:70.350000px;}
.h6_c01054{height:71.374898px;}
.hf_c01054{height:71.400000px;}
.h2_c01054{height:71.402892px;}
.h7_c01054{height:72.450000px;}
.h5_c01054{height:73.500000px;}
.h8_c01054{height:74.550000px;}
.h10_c01054{height:76.650000px;}
.he_c01054{height:78.750000px;}
.h1_c01054{height:1005.000000px;}
.h0_c01054{height:1005.150000px;}
.w0_c01054{width:715.200000px;}
.w1_c01054{width:715.500000px;}
.x0_c01054{left:0.000000px;}
.x16_c01054{left:124.740000px;}
.xd_c01054{left:126.900000px;}
.x1_c01054{left:134.788500px;}
.xe_c01054{left:137.430000px;}
.x29_c01054{left:140.130000px;}
.x45_c01054{left:141.528000px;}
.x35_c01054{left:144.720000px;}
.x1e_c01054{left:150.120000px;}
.x23_c01054{left:152.442000px;}
.x56_c01054{left:155.250000px;}
.x2a_c01054{left:156.330000px;}
.x36_c01054{left:157.410000px;}
.x75_c01054{left:158.760000px;}
.x2_c01054{left:159.970500px;}
.x17_c01054{left:161.460000px;}
.x4b_c01054{left:172.800000px;}
.x18_c01054{left:173.880000px;}
.x2b_c01054{left:176.850000px;}
.x65_c01054{left:178.470000px;}
.xf_c01054{left:179.820000px;}
.x5e_c01054{left:181.980000px;}
.x19_c01054{left:191.160000px;}
.x52_c01054{left:195.210000px;}
.x46_c01054{left:197.449500px;}
.x24_c01054{left:201.344049px;}
.x70_c01054{left:202.500000px;}
.x66_c01054{left:203.850000px;}
.x10_c01054{left:205.470000px;}
.x57_c01054{left:207.090000px;}
.x6d_c01054{left:214.380000px;}
.x69_c01054{left:216.000000px;}
.x3_c01054{left:221.491500px;}
.x5f_c01054{left:224.100000px;}
.x71_c01054{left:230.580000px;}
.x1a_c01054{left:233.820000px;}
.x76_c01054{left:235.710000px;}
.x30_c01054{left:238.410000px;}
.x47_c01054{left:240.151500px;}
.x11_c01054{left:241.650000px;}
.x6a_c01054{left:244.620000px;}
.x1f_c01054{left:247.590000px;}
.x5c_c01054{left:250.560000px;}
.x1b_c01054{left:255.960000px;}
.x37_c01054{left:262.440000px;}
.x60_c01054{left:265.410000px;}
.x4c_c01054{left:270.540000px;}
.x12_c01054{left:271.890000px;}
.x20_c01054{left:273.510000px;}
.x72_c01054{left:277.830000px;}
.x48_c01054{left:279.810000px;}
.x53_c01054{left:282.960000px;}
.x4_c01054{left:284.436000px;}
.x58_c01054{left:287.820000px;}
.x61_c01054{left:291.600000px;}
.x2c_c01054{left:296.190000px;}
.x13_c01054{left:299.430000px;}
.x6e_c01054{left:300.510000px;}
.x5_c01054{left:302.511000px;}
.x4d_c01054{left:306.720000px;}
.x14_c01054{left:308.610000px;}
.x31_c01054{left:309.690000px;}
.x73_c01054{left:313.470000px;}
.x38_c01054{left:315.900000px;}
.x4e_c01054{left:318.060000px;}
.x2d_c01054{left:320.760000px;}
.x1c_c01054{left:322.110000px;}
.x25_c01054{left:327.773992px;}
.x59_c01054{left:332.100000px;}
.x3e_c01054{left:334.800000px;}
.x15_c01054{left:338.040000px;}
.x5d_c01054{left:340.200000px;}
.x3b_c01054{left:343.440000px;}
.x6_c01054{left:345.991500px;}
.x5a_c01054{left:347.760000px;}
.x41_c01054{left:350.730000px;}
.x62_c01054{left:358.560000px;}
.x49_c01054{left:359.757000px;}
.x7_c01054{left:363.817500px;}
.x2e_c01054{left:369.630000px;}
.x3f_c01054{left:372.600000px;}
.x39_c01054{left:374.490000px;}
.x1d_c01054{left:376.920000px;}
.x21_c01054{left:381.240000px;}
.x32_c01054{left:385.830000px;}
.x3c_c01054{left:387.450000px;}
.x3a_c01054{left:394.200000px;}
.x40_c01054{left:395.550000px;}
.x26_c01054{left:396.745452px;}
.x8_c01054{left:399.186000px;}
.x42_c01054{left:403.920000px;}
.x54_c01054{left:405.000000px;}
.x6b_c01054{left:408.510000px;}
.x4f_c01054{left:413.910000px;}
.x2f_c01054{left:415.530000px;}
.x5b_c01054{left:417.690000px;}
.x27_c01054{left:420.255418px;}
.x77_c01054{left:422.299500px;}
.x55_c01054{left:426.870000px;}
.x43_c01054{left:433.080000px;}
.x22_c01054{left:435.510000px;}
.x63_c01054{left:442.260000px;}
.x6f_c01054{left:443.880000px;}
.x50_c01054{left:445.500000px;}
.x67_c01054{left:446.580000px;}
.x33_c01054{left:449.010000px;}
.x3d_c01054{left:450.900000px;}
.x6c_c01054{left:451.980000px;}
.x78_c01054{left:457.944000px;}
.x9_c01054{left:460.741500px;}
.x64_c01054{left:468.720000px;}
.x34_c01054{left:473.580000px;}
.x44_c01054{left:475.470000px;}
.xa_c01054{left:481.563000px;}
.x74_c01054{left:486.270000px;}
.x51_c01054{left:488.430000px;}
.x28_c01054{left:489.796308px;}
.x4a_c01054{left:500.704500px;}
.x68_c01054{left:504.900000px;}
.x79_c01054{left:513.447000px;}
.xb_c01054{left:525.829500px;}
.x7a_c01054{left:531.760500px;}
.x7b_c01054{left:565.510500px;}
.xc_c01054{left:568.159500px;}
.x7c_c01054{left:587.460000px;}
.x7d_c01054{left:624.898500px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws0_c01054{word-spacing:0.000000pt;}
.fs2_c01054{font-size:42.933333pt;}
.fs1_c01054{font-size:44.800000pt;}
.fs10_c01054{font-size:51.337671pt;}
.fs7_c01054{font-size:52.266667pt;}
.fsf_c01054{font-size:55.066667pt;}
.fs9_c01054{font-size:56.933333pt;}
.fs8_c01054{font-size:57.866667pt;}
.fsa_c01054{font-size:61.601971pt;}
.fsb_c01054{font-size:62.533333pt;}
.fs4_c01054{font-size:63.444354pt;}
.fsd_c01054{font-size:63.466667pt;}
.fs0_c01054{font-size:63.469237pt;}
.fs5_c01054{font-size:64.400000pt;}
.fs3_c01054{font-size:65.333333pt;}
.fs6_c01054{font-size:66.266667pt;}
.fse_c01054{font-size:68.133333pt;}
.fsc_c01054{font-size:70.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.ye_c01054{bottom:142.556000pt;}
.y37_c01054{bottom:159.122667pt;}
.yd_c01054{bottom:159.360000pt;}
.y38_c01054{bottom:159.643897pt;}
.y39_c01054{bottom:160.055789pt;}
.y3a_c01054{bottom:160.697157pt;}
.y3b_c01054{bottom:160.908780pt;}
.y3c_c01054{bottom:161.298780pt;}
.y3d_c01054{bottom:161.552419pt;}
.y3e_c01054{bottom:161.985041pt;}
.y1_c01054{bottom:202.320000pt;}
.y2_c01054{bottom:202.521456pt;}
.y3_c01054{bottom:203.013624pt;}
.y4_c01054{bottom:203.517180pt;}
.y5_c01054{bottom:203.661780pt;}
.y6_c01054{bottom:204.009624pt;}
.y7_c01054{bottom:204.152232pt;}
.y8_c01054{bottom:204.435180pt;}
.y9_c01054{bottom:204.927624pt;}
.ya_c01054{bottom:205.094196pt;}
.yb_c01054{bottom:205.448328pt;}
.yc_c01054{bottom:205.786968pt;}
.y36_c01054{bottom:224.404000pt;}
.y35_c01054{bottom:244.848000pt;}
.y34_c01054{bottom:265.062667pt;}
.y33_c01054{bottom:285.293333pt;}
.y32_c01054{bottom:305.344000pt;}
.y31_c01054{bottom:325.836000pt;}
.y30_c01054{bottom:346.472000pt;}
.y2f_c01054{bottom:366.448000pt;}
.y2e_c01054{bottom:386.640000pt;}
.y1d_c01054{bottom:426.394667pt;}
.y1c_c01054{bottom:445.912000pt;}
.y1b_c01054{bottom:466.800000pt;}
.y1a_c01054{bottom:487.084000pt;}
.y19_c01054{bottom:508.446667pt;}
.y18_c01054{bottom:528.502667pt;}
.y10_c01054{bottom:539.560000pt;}
.y11_c01054{bottom:541.126432pt;}
.y12_c01054{bottom:543.443920pt;}
.y13_c01054{bottom:545.176240pt;}
.y14_c01054{bottom:546.889840pt;}
.y15_c01054{bottom:547.385536pt;}
.y16_c01054{bottom:548.138608pt;}
.y17_c01054{bottom:550.366144pt;}
.y2d_c01054{bottom:568.080000pt;}
.yf_c01054{bottom:588.308000pt;}
.y2c_c01054{bottom:608.468000pt;}
.y2b_c01054{bottom:628.417333pt;}
.y2a_c01054{bottom:648.813333pt;}
.y21_c01054{bottom:667.436000pt;}
.y22_c01054{bottom:667.536299pt;}
.y23_c01054{bottom:667.833664pt;}
.y24_c01054{bottom:668.137323pt;}
.y25_c01054{bottom:668.419339pt;}
.y26_c01054{bottom:668.987851pt;}
.y27_c01054{bottom:669.174069pt;}
.y28_c01054{bottom:669.636832pt;}
.y29_c01054{bottom:669.990144pt;}
.y20_c01054{bottom:689.530667pt;}
.y1f_c01054{bottom:710.268000pt;}
.y1e_c01054{bottom:729.862667pt;}
.h4_c01054{height:42.933333pt;}
.h3_c01054{height:44.800000pt;}
.h12_c01054{height:51.337671pt;}
.h9_c01054{height:52.266667pt;}
.h11_c01054{height:55.066667pt;}
.hb_c01054{height:56.933333pt;}
.ha_c01054{height:57.866667pt;}
.hc_c01054{height:61.601971pt;}
.hd_c01054{height:62.533333pt;}
.h6_c01054{height:63.444354pt;}
.hf_c01054{height:63.466667pt;}
.h2_c01054{height:63.469237pt;}
.h7_c01054{height:64.400000pt;}
.h5_c01054{height:65.333333pt;}
.h8_c01054{height:66.266667pt;}
.h10_c01054{height:68.133333pt;}
.he_c01054{height:70.000000pt;}
.h1_c01054{height:893.333333pt;}
.h0_c01054{height:893.466667pt;}
.w0_c01054{width:635.733333pt;}
.w1_c01054{width:636.000000pt;}
.x0_c01054{left:0.000000pt;}
.x16_c01054{left:110.880000pt;}
.xd_c01054{left:112.800000pt;}
.x1_c01054{left:119.812000pt;}
.xe_c01054{left:122.160000pt;}
.x29_c01054{left:124.560000pt;}
.x45_c01054{left:125.802667pt;}
.x35_c01054{left:128.640000pt;}
.x1e_c01054{left:133.440000pt;}
.x23_c01054{left:135.504000pt;}
.x56_c01054{left:138.000000pt;}
.x2a_c01054{left:138.960000pt;}
.x36_c01054{left:139.920000pt;}
.x75_c01054{left:141.120000pt;}
.x2_c01054{left:142.196000pt;}
.x17_c01054{left:143.520000pt;}
.x4b_c01054{left:153.600000pt;}
.x18_c01054{left:154.560000pt;}
.x2b_c01054{left:157.200000pt;}
.x65_c01054{left:158.640000pt;}
.xf_c01054{left:159.840000pt;}
.x5e_c01054{left:161.760000pt;}
.x19_c01054{left:169.920000pt;}
.x52_c01054{left:173.520000pt;}
.x46_c01054{left:175.510667pt;}
.x24_c01054{left:178.972488pt;}
.x70_c01054{left:180.000000pt;}
.x66_c01054{left:181.200000pt;}
.x10_c01054{left:182.640000pt;}
.x57_c01054{left:184.080000pt;}
.x6d_c01054{left:190.560000pt;}
.x69_c01054{left:192.000000pt;}
.x3_c01054{left:196.881333pt;}
.x5f_c01054{left:199.200000pt;}
.x71_c01054{left:204.960000pt;}
.x1a_c01054{left:207.840000pt;}
.x76_c01054{left:209.520000pt;}
.x30_c01054{left:211.920000pt;}
.x47_c01054{left:213.468000pt;}
.x11_c01054{left:214.800000pt;}
.x6a_c01054{left:217.440000pt;}
.x1f_c01054{left:220.080000pt;}
.x5c_c01054{left:222.720000pt;}
.x1b_c01054{left:227.520000pt;}
.x37_c01054{left:233.280000pt;}
.x60_c01054{left:235.920000pt;}
.x4c_c01054{left:240.480000pt;}
.x12_c01054{left:241.680000pt;}
.x20_c01054{left:243.120000pt;}
.x72_c01054{left:246.960000pt;}
.x48_c01054{left:248.720000pt;}
.x53_c01054{left:251.520000pt;}
.x4_c01054{left:252.832000pt;}
.x58_c01054{left:255.840000pt;}
.x61_c01054{left:259.200000pt;}
.x2c_c01054{left:263.280000pt;}
.x13_c01054{left:266.160000pt;}
.x6e_c01054{left:267.120000pt;}
.x5_c01054{left:268.898667pt;}
.x4d_c01054{left:272.640000pt;}
.x14_c01054{left:274.320000pt;}
.x31_c01054{left:275.280000pt;}
.x73_c01054{left:278.640000pt;}
.x38_c01054{left:280.800000pt;}
.x4e_c01054{left:282.720000pt;}
.x2d_c01054{left:285.120000pt;}
.x1c_c01054{left:286.320000pt;}
.x25_c01054{left:291.354660pt;}
.x59_c01054{left:295.200000pt;}
.x3e_c01054{left:297.600000pt;}
.x15_c01054{left:300.480000pt;}
.x5d_c01054{left:302.400000pt;}
.x3b_c01054{left:305.280000pt;}
.x6_c01054{left:307.548000pt;}
.x5a_c01054{left:309.120000pt;}
.x41_c01054{left:311.760000pt;}
.x62_c01054{left:318.720000pt;}
.x49_c01054{left:319.784000pt;}
.x7_c01054{left:323.393333pt;}
.x2e_c01054{left:328.560000pt;}
.x3f_c01054{left:331.200000pt;}
.x39_c01054{left:332.880000pt;}
.x1d_c01054{left:335.040000pt;}
.x21_c01054{left:338.880000pt;}
.x32_c01054{left:342.960000pt;}
.x3c_c01054{left:344.400000pt;}
.x3a_c01054{left:350.400000pt;}
.x40_c01054{left:351.600000pt;}
.x26_c01054{left:352.662624pt;}
.x8_c01054{left:354.832000pt;}
.x42_c01054{left:359.040000pt;}
.x54_c01054{left:360.000000pt;}
.x6b_c01054{left:363.120000pt;}
.x4f_c01054{left:367.920000pt;}
.x2f_c01054{left:369.360000pt;}
.x5b_c01054{left:371.280000pt;}
.x27_c01054{left:373.560372pt;}
.x77_c01054{left:375.377333pt;}
.x55_c01054{left:379.440000pt;}
.x43_c01054{left:384.960000pt;}
.x22_c01054{left:387.120000pt;}
.x63_c01054{left:393.120000pt;}
.x6f_c01054{left:394.560000pt;}
.x50_c01054{left:396.000000pt;}
.x67_c01054{left:396.960000pt;}
.x33_c01054{left:399.120000pt;}
.x3d_c01054{left:400.800000pt;}
.x6c_c01054{left:401.760000pt;}
.x78_c01054{left:407.061333pt;}
.x9_c01054{left:409.548000pt;}
.x64_c01054{left:416.640000pt;}
.x34_c01054{left:420.960000pt;}
.x44_c01054{left:422.640000pt;}
.xa_c01054{left:428.056000pt;}
.x74_c01054{left:432.240000pt;}
.x51_c01054{left:434.160000pt;}
.x28_c01054{left:435.374496pt;}
.x4a_c01054{left:445.070667pt;}
.x68_c01054{left:448.800000pt;}
.x79_c01054{left:456.397333pt;}
.xb_c01054{left:467.404000pt;}
.x7a_c01054{left:472.676000pt;}
.x7b_c01054{left:502.676000pt;}
.xc_c01054{left:505.030667pt;}
.x7c_c01054{left:522.186667pt;}
.x7d_c01054{left:555.465333pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.000000;font-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_c01055{transform:matrix(0.007130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007130,0.000000,0.000000,0.250000,0,0);}
.mdd_c01055{transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014260,0.000000,0.000000,0.250000,0,0);}
.mab_c01055{transform:matrix(0.027105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027105,0.000000,0.000000,0.250000,0,0);}
.me0_c01055{transform:matrix(0.036205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036205,0.000000,0.000000,0.250000,0,0);}
.mde_c01055{transform:matrix(0.047535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047535,0.000000,0.000000,0.250000,0,0);}
.m30_c01055{transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);}
.m41_c01055{transform:matrix(0.120010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120010,0.000000,0.000000,0.250000,0,0);}
.m85_c01055{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);}
.m68_c01055{transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);}
.m2f_c01055{transform:matrix(0.138540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138540,0.000000,0.000000,0.250000,0,0);}
.m1b_c01055{transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);}
.m81_c01055{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);}
.m93_c01055{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m4c_c01055{transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146480,0.000000,0.000000,0.250000,0,0);}
.mc3_c01055{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);}
.m82_c01055{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);}
.m2c_c01055{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);}
.m7b_c01055{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);}
.m80_c01055{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);}
.m8c_c01055{transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151915,0.000000,0.000000,0.250000,0,0);}
.mbc_c01055{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m4d_c01055{transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152540,0.000000,0.000000,0.250000,0,0);}
.m9e_c01055{transform:matrix(0.153345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153345,0.000000,0.000000,0.250000,0,0);}
.m9d_c01055{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);}
.m15_c01055{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);}
.m8b_c01055{transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163655,0.000000,0.000000,0.250000,0,0);}
.m25_c01055{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m3d_c01055{transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164555,0.000000,0.000000,0.250000,0,0);}
.m21_c01055{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);}
.m2b_c01055{transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);}
.m61_c01055{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);}
.m4e_c01055{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);}
.m71_c01055{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);}
.m1e_c01055{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);}
.mb2_c01055{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);}
.ma5_c01055{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);}
.m1c_c01055{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);}
.m9_c01055{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);}
.m5c_c01055{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);}
.m9a_c01055{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);}
.mae_c01055{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);}
.m3e_c01055{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);}
.m7d_c01055{transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171235,0.000000,0.000000,0.250000,0,0);}
.m7c_c01055{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);}
.m31_c01055{transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);}
.m33_c01055{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);}
.m72_c01055{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);}
.m67_c01055{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);}
.m60_c01055{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);}
.m20_c01055{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);}
.m3b_c01055{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);}
.m56_c01055{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);}
.m29_c01055{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);}
.m36_c01055{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);}
.m99_c01055{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);}
.m63_c01055{transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);}
.m6c_c01055{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);}
.ma0_c01055{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);}
.m94_c01055{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);}
.m5d_c01055{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);}
.m89_c01055{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);}
.ma1_c01055{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);}
.mbd_c01055{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);}
.m95_c01055{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);}
.mdb_c01055{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.mbb_c01055{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);}
.m3f_c01055{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);}
.m46_c01055{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);}
.m1d_c01055{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);}
.m3c_c01055{transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181505,0.000000,0.000000,0.250000,0,0);}
.m22_c01055{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);}
.ma3_c01055{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);}
.m27_c01055{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);}
.mca_c01055{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);}
.m28_c01055{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);}
.m83_c01055{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);}
.m9f_c01055{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);}
.m4f_c01055{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_c01055{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.m35_c01055{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);}
.m8d_c01055{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);}
.ma_c01055{transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184020,0.000000,0.000000,0.250000,0,0);}
.m8f_c01055{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.m12_c01055{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);}
.m43_c01055{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);}
.m58_c01055{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);}
.md1_c01055{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);}
.me_c01055{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);}
.mac_c01055{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);}
.m19_c01055{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);}
.m8a_c01055{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);}
.m59_c01055{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);}
.mdc_c01055{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);}
.md3_c01055{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);}
.m2a_c01055{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);}
.m87_c01055{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);}
.m88_c01055{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);}
.m75_c01055{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);}
.m5f_c01055{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);}
.maf_c01055{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);}
.m6e_c01055{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);}
.m38_c01055{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);}
.md9_c01055{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);}
.mba_c01055{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);}
.m9b_c01055{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);}
.m7e_c01055{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);}
.mc4_c01055{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);}
.m78_c01055{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);}
.m4a_c01055{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);}
.mcf_c01055{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);}
.ma8_c01055{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);}
.md4_c01055{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);}
.md0_c01055{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);}
.m1f_c01055{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);}
.m90_c01055{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);}
.m77_c01055{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);}
.mcc_c01055{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);}
.mc2_c01055{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);}
.m91_c01055{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);}
.m11_c01055{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);}
.m51_c01055{transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);}
.m32_c01055{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);}
.m34_c01055{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);}
.m9c_c01055{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);}
.m52_c01055{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);}
.m66_c01055{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);}
.m14_c01055{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);}
.m5a_c01055{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);}
.m1a_c01055{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);}
.m76_c01055{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);}
.m49_c01055{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);}
.md_c01055{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);}
.m64_c01055{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);}
.mcb_c01055{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);}
.m6d_c01055{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);}
.m79_c01055{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);}
.m53_c01055{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);}
.m37_c01055{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);}
.m13_c01055{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);}
.m92_c01055{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);}
.m44_c01055{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);}
.mc0_c01055{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);}
.m86_c01055{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);}
.m40_c01055{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);}
.mad_c01055{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);}
.mb5_c01055{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);}
.mda_c01055{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);}
.m39_c01055{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);}
.mc7_c01055{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);}
.m45_c01055{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);}
.m24_c01055{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);}
.m69_c01055{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);}
.m7_c01055{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);}
.ma7_c01055{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);}
.m8_c01055{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);}
.mc8_c01055{transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213095,0.000000,0.000000,0.250000,0,0);}
.m48_c01055{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);}
.mc1_c01055{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);}
.mc9_c01055{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);}
.md6_c01055{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);}
.m7a_c01055{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);}
.mc5_c01055{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);}
.ma4_c01055{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);}
.m16_c01055{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);}
.md2_c01055{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);}
.m55_c01055{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);}
.m2d_c01055{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.m8e_c01055{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);}
.m62_c01055{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);}
.m7f_c01055{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);}
.m17_c01055{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);}
.mc6_c01055{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);}
.m74_c01055{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);}
.mb_c01055{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01055{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);}
.m54_c01055{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);}
.ma6_c01055{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);}
.md5_c01055{transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);}
.m5b_c01055{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);}
.mb9_c01055{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);}
.m5e_c01055{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);}
.mcd_c01055{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);}
.m50_c01055{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);}
.m10_c01055{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);}
.m57_c01055{transform:matrix(0.232035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232035,0.000000,0.000000,0.250000,0,0);}
.m3a_c01055{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);}
.ma2_c01055{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);}
.m73_c01055{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);}
.m65_c01055{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);}
.m42_c01055{transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246465,0.000000,0.000000,0.250000,0,0);}
.mb7_c01055{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_c01055{transform:matrix(0.248855,-0.005226,0.005249,0.249945,0,0);-ms-transform:matrix(0.248855,-0.005226,0.005249,0.249945,0,0);-webkit-transform:matrix(0.248855,-0.005226,0.005249,0.249945,0,0);}
.mc_c01055{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);}
.m23_c01055{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);}
.m47_c01055{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);}
.mb3_c01055{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);}
.ma9_c01055{transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253770,0.000000,0.000000,0.250000,0,0);}
.mb0_c01055{transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);}
.mb1_c01055{transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);}
.m6f_c01055{transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);}
.m3_c01055{transform:matrix(0.270645,-0.005684,0.005249,0.249945,0,0);-ms-transform:matrix(0.270645,-0.005684,0.005249,0.249945,0,0);-webkit-transform:matrix(0.270645,-0.005684,0.005249,0.249945,0,0);}
.m2e_c01055{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);}
.m18_c01055{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);}
.m2_c01055{transform:matrix(0.301414,-0.006330,0.005249,0.249945,0,0);-ms-transform:matrix(0.301414,-0.006330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.301414,-0.006330,0.005249,0.249945,0,0);}
.mf_c01055{transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303230,0.000000,0.000000,0.250000,0,0);}
.mb8_c01055{transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);}
.maa_c01055{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);}
.m96_c01055{transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323755,0.000000,0.000000,0.250000,0,0);}
.m6b_c01055{transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324140,0.000000,0.000000,0.250000,0,0);}
.m98_c01055{transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331775,0.000000,0.000000,0.250000,0,0);}
.mbf_c01055{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);}
.mb4_c01055{transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356595,0.000000,0.000000,0.250000,0,0);}
.md8_c01055{transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361480,0.000000,0.000000,0.250000,0,0);}
.m84_c01055{transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);}
.m6_c01055{transform:matrix(0.368554,-0.007740,0.005249,0.249945,0,0);-ms-transform:matrix(0.368554,-0.007740,0.005249,0.249945,0,0);-webkit-transform:matrix(0.368554,-0.007740,0.005249,0.249945,0,0);}
.md7_c01055{transform:matrix(0.369960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369960,0.000000,0.000000,0.250000,0,0);}
.mce_c01055{transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374235,0.000000,0.000000,0.250000,0,0);}
.m5_c01055{transform:matrix(0.378322,-0.007945,0.005249,0.249945,0,0);-ms-transform:matrix(0.378322,-0.007945,0.005249,0.249945,0,0);-webkit-transform:matrix(0.378322,-0.007945,0.005249,0.249945,0,0);}
.m4_c01055{transform:matrix(0.387510,-0.008138,0.005249,0.249945,0,0);-ms-transform:matrix(0.387510,-0.008138,0.005249,0.249945,0,0);-webkit-transform:matrix(0.387510,-0.008138,0.005249,0.249945,0,0);}
.mbe_c01055{transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408030,0.000000,0.000000,0.250000,0,0);}
.m1_c01055{transform:matrix(0.475105,-0.009977,0.005249,0.249945,0,0);-ms-transform:matrix(0.475105,-0.009977,0.005249,0.249945,0,0);-webkit-transform:matrix(0.475105,-0.009977,0.005249,0.249945,0,0);}
.m6a_c01055{transform:matrix(0.501285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501285,0.000000,0.000000,0.250000,0,0);}
.m70_c01055{transform:matrix(0.512605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512605,0.000000,0.000000,0.250000,0,0);}
.m97_c01055{transform:matrix(0.516825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516825,0.000000,0.000000,0.250000,0,0);}
.mb6_c01055{transform:matrix(0.913850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913850,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls0_c01055{letter-spacing:0.000000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:0.000000px;}
.fc0_c01055{color:transparent;}
.fsa_c01055{font-size:22.050000px;}
.fsd_c01055{font-size:23.100000px;}
.fs9_c01055{font-size:24.150000px;}
.fse_c01055{font-size:39.900000px;}
.fs10_c01055{font-size:50.400000px;}
.fs11_c01055{font-size:53.550000px;}
.fsf_c01055{font-size:58.800000px;}
.fs8_c01055{font-size:63.000000px;}
.fs1_c01055{font-size:65.100000px;}
.fs7_c01055{font-size:66.150000px;}
.fsb_c01055{font-size:68.250000px;}
.fs2_c01055{font-size:70.350000px;}
.fs6_c01055{font-size:71.400000px;}
.fs3_c01055{font-size:72.450000px;}
.fs4_c01055{font-size:73.500000px;}
.fsc_c01055{font-size:76.650000px;}
.fs0_c01055{font-size:76.666899px;}
.fs5_c01055{font-size:80.850000px;}
.y0_c01055{bottom:0.000000px;}
.y25_c01055{bottom:170.371500px;}
.y26_c01055{bottom:170.721000px;}
.y27_c01055{bottom:171.178500px;}
.y28_c01055{bottom:171.372000px;}
.y29_c01055{bottom:171.978000px;}
.y2a_c01055{bottom:172.771500px;}
.y2b_c01055{bottom:173.190000px;}
.y2c_c01055{bottom:173.380500px;}
.y2d_c01055{bottom:173.926500px;}
.y2e_c01055{bottom:175.272000px;}
.y2f_c01055{bottom:175.585500px;}
.y30_c01055{bottom:175.954500px;}
.y24_c01055{bottom:191.970000px;}
.y23_c01055{bottom:209.017500px;}
.y22_c01055{bottom:221.670000px;}
.y20_c01055{bottom:228.960000px;}
.y21_c01055{bottom:229.639500px;}
.y1f_c01055{bottom:262.344000px;}
.y1e_c01055{bottom:284.218500px;}
.y1d_c01055{bottom:306.834000px;}
.y1c_c01055{bottom:329.940000px;}
.y1b_c01055{bottom:355.870500px;}
.y1a_c01055{bottom:378.987000px;}
.y19_c01055{bottom:407.280000px;}
.y18_c01055{bottom:434.430000px;}
.y17_c01055{bottom:456.873000px;}
.y16_c01055{bottom:475.200000px;}
.y15_c01055{bottom:479.322000px;}
.y14_c01055{bottom:488.430000px;}
.y13_c01055{bottom:501.714000px;}
.y12_c01055{bottom:524.950500px;}
.y11_c01055{bottom:547.666500px;}
.y10_c01055{bottom:570.975000px;}
.yf_c01055{bottom:593.403000px;}
.ye_c01055{bottom:616.647000px;}
.yd_c01055{bottom:706.990500px;}
.yc_c01055{bottom:729.609000px;}
.yb_c01055{bottom:751.834500px;}
.ya_c01055{bottom:775.440000px;}
.y9_c01055{bottom:798.502500px;}
.y8_c01055{bottom:821.425500px;}
.y1_c01055{bottom:864.547500px;}
.y2_c01055{bottom:866.409118px;}
.y3_c01055{bottom:869.538391px;}
.y4_c01055{bottom:870.095248px;}
.y5_c01055{bottom:870.519333px;}
.y6_c01055{bottom:871.545256px;}
.y7_c01055{bottom:872.009157px;}
.hc_c01055{height:22.050000px;}
.hf_c01055{height:23.100000px;}
.hb_c01055{height:24.150000px;}
.h10_c01055{height:39.900000px;}
.h12_c01055{height:50.400000px;}
.h13_c01055{height:53.550000px;}
.h11_c01055{height:58.800000px;}
.ha_c01055{height:63.000000px;}
.h3_c01055{height:65.100000px;}
.h9_c01055{height:66.150000px;}
.hd_c01055{height:68.250000px;}
.h4_c01055{height:70.350000px;}
.h8_c01055{height:71.400000px;}
.h5_c01055{height:72.450000px;}
.h6_c01055{height:73.500000px;}
.he_c01055{height:76.650000px;}
.h2_c01055{height:76.666899px;}
.h7_c01055{height:80.850000px;}
.h0_c01055{height:1008.450000px;}
.h1_c01055{height:1008.750000px;}
.w1_c01055{width:700.500000px;}
.w0_c01055{width:700.650000px;}
.x0_c01055{left:0.000000px;}
.x85_c01055{left:116.640000px;}
.x8e_c01055{left:121.131000px;}
.x1_c01055{left:123.741000px;}
.x7c_c01055{left:135.000000px;}
.x10_c01055{left:145.260000px;}
.x8f_c01055{left:150.303000px;}
.x7d_c01055{left:154.980000px;}
.x32_c01055{left:157.140000px;}
.x8_c01055{left:158.220000px;}
.x86_c01055{left:176.310000px;}
.x55_c01055{left:177.390000px;}
.x46_c01055{left:182.250000px;}
.x11_c01055{left:183.870000px;}
.x68_c01055{left:186.030000px;}
.x90_c01055{left:188.380500px;}
.x40_c01055{left:191.160000px;}
.x75_c01055{left:193.050000px;}
.x9_c01055{left:194.400000px;}
.x58_c01055{left:196.560000px;}
.x33_c01055{left:197.640000px;}
.x1e_c01055{left:199.260000px;}
.x4b_c01055{left:202.770000px;}
.x91_c01055{left:204.549000px;}
.x62_c01055{left:210.060000px;}
.x2_c01055{left:212.389500px;}
.x12_c01055{left:214.920000px;}
.x6b_c01055{left:216.000000px;}
.x59_c01055{left:218.160000px;}
.x41_c01055{left:221.670000px;}
.x28_c01055{left:224.640000px;}
.x3a_c01055{left:225.720000px;}
.x34_c01055{left:228.420000px;}
.x60_c01055{left:236.790000px;}
.x1f_c01055{left:239.220000px;}
.x47_c01055{left:240.570000px;}
.x63_c01055{left:241.920000px;}
.x29_c01055{left:247.860000px;}
.x6c_c01055{left:250.020000px;}
.x17_c01055{left:251.910000px;}
.x4c_c01055{left:254.070000px;}
.x5a_c01055{left:256.230000px;}
.xa_c01055{left:258.120000px;}
.x35_c01055{left:260.820000px;}
.x18_c01055{left:262.440000px;}
.x70_c01055{left:263.790000px;}
.x76_c01055{left:265.950000px;}
.x13_c01055{left:269.190000px;}
.x79_c01055{left:270.270000px;}
.x3b_c01055{left:272.970000px;}
.x7a_c01055{left:276.480000px;}
.x5b_c01055{left:277.560000px;}
.x54_c01055{left:278.640000px;}
.x42_c01055{left:281.340000px;}
.x7e_c01055{left:282.420000px;}
.x64_c01055{left:285.390000px;}
.x50_c01055{left:289.980000px;}
.x20_c01055{left:294.570000px;}
.xb_c01055{left:296.190000px;}
.x30_c01055{left:298.080000px;}
.x69_c01055{left:300.780000px;}
.x7f_c01055{left:302.130000px;}
.x19_c01055{left:305.640000px;}
.x87_c01055{left:306.990000px;}
.x7b_c01055{left:309.150000px;}
.x2a_c01055{left:310.230000px;}
.x14_c01055{left:312.660000px;}
.x36_c01055{left:319.680000px;}
.x92_c01055{left:321.168000px;}
.x2b_c01055{left:322.650000px;}
.x49_c01055{left:326.160000px;}
.x65_c01055{left:329.130000px;}
.xc_c01055{left:334.530000px;}
.x21_c01055{left:335.880000px;}
.x5c_c01055{left:336.960000px;}
.x61_c01055{left:340.200000px;}
.x51_c01055{left:341.550000px;}
.x4f_c01055{left:345.060000px;}
.x6d_c01055{left:346.140000px;}
.x37_c01055{left:351.270000px;}
.x88_c01055{left:355.860000px;}
.x4d_c01055{left:356.940000px;}
.x48_c01055{left:358.290000px;}
.x4a_c01055{left:359.640000px;}
.x3_c01055{left:361.402500px;}
.x1a_c01055{left:363.960000px;}
.x6e_c01055{left:366.390000px;}
.x80_c01055{left:370.440000px;}
.x89_c01055{left:372.060000px;}
.x2c_c01055{left:373.950000px;}
.x66_c01055{left:377.460000px;}
.x77_c01055{left:381.510000px;}
.x6a_c01055{left:383.670000px;}
.xd_c01055{left:384.750000px;}
.x4_c01055{left:387.919500px;}
.x5d_c01055{left:389.610000px;}
.x15_c01055{left:393.120000px;}
.x22_c01055{left:394.470000px;}
.x2d_c01055{left:397.980000px;}
.x1b_c01055{left:399.060000px;}
.x38_c01055{left:403.380000px;}
.x71_c01055{left:405.000000px;}
.x3c_c01055{left:406.890000px;}
.x5_c01055{left:408.114000px;}
.x56_c01055{left:409.320000px;}
.x5e_c01055{left:410.670000px;}
.x93_c01055{left:417.459000px;}
.x43_c01055{left:420.120000px;}
.x23_c01055{left:422.550000px;}
.x4e_c01055{left:424.710000px;}
.x6f_c01055{left:426.870000px;}
.x16_c01055{left:436.590000px;}
.x8a_c01055{left:437.940000px;}
.x67_c01055{left:441.180000px;}
.x5f_c01055{left:442.530000px;}
.x31_c01055{left:443.880000px;}
.x81_c01055{left:446.850000px;}
.x24_c01055{left:447.930000px;}
.xe_c01055{left:450.630000px;}
.x52_c01055{left:451.710000px;}
.x1c_c01055{left:454.140000px;}
.x6_c01055{left:456.967500px;}
.x3d_c01055{left:462.510000px;}
.x8b_c01055{left:467.370000px;}
.x2e_c01055{left:469.530000px;}
.x72_c01055{left:472.230000px;}
.xf_c01055{left:476.280000px;}
.x1d_c01055{left:477.630000px;}
.x7_c01055{left:479.058000px;}
.x25_c01055{left:481.140000px;}
.x44_c01055{left:484.110000px;}
.x3e_c01055{left:488.970000px;}
.x39_c01055{left:491.670000px;}
.x57_c01055{left:497.340000px;}
.x8c_c01055{left:500.580000px;}
.x73_c01055{left:502.200000px;}
.x82_c01055{left:509.490000px;}
.x53_c01055{left:512.730000px;}
.x78_c01055{left:514.080000px;}
.x74_c01055{left:517.320000px;}
.x26_c01055{left:524.880000px;}
.x94_c01055{left:529.561500px;}
.x83_c01055{left:531.090000px;}
.x3f_c01055{left:540.000000px;}
.x45_c01055{left:541.620000px;}
.x27_c01055{left:547.560000px;}
.x2f_c01055{left:553.500000px;}
.x95_c01055{left:555.718500px;}
.x8d_c01055{left:561.060000px;}
.x84_c01055{left:586.710000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls0_c01055{letter-spacing:0.000000pt;}
.ws0_c01055{word-spacing:0.000000pt;}
.fsa_c01055{font-size:19.600000pt;}
.fsd_c01055{font-size:20.533333pt;}
.fs9_c01055{font-size:21.466667pt;}
.fse_c01055{font-size:35.466667pt;}
.fs10_c01055{font-size:44.800000pt;}
.fs11_c01055{font-size:47.600000pt;}
.fsf_c01055{font-size:52.266667pt;}
.fs8_c01055{font-size:56.000000pt;}
.fs1_c01055{font-size:57.866667pt;}
.fs7_c01055{font-size:58.800000pt;}
.fsb_c01055{font-size:60.666667pt;}
.fs2_c01055{font-size:62.533333pt;}
.fs6_c01055{font-size:63.466667pt;}
.fs3_c01055{font-size:64.400000pt;}
.fs4_c01055{font-size:65.333333pt;}
.fsc_c01055{font-size:68.133333pt;}
.fs0_c01055{font-size:68.148355pt;}
.fs5_c01055{font-size:71.866667pt;}
.y0_c01055{bottom:0.000000pt;}
.y25_c01055{bottom:151.441333pt;}
.y26_c01055{bottom:151.752000pt;}
.y27_c01055{bottom:152.158667pt;}
.y28_c01055{bottom:152.330667pt;}
.y29_c01055{bottom:152.869333pt;}
.y2a_c01055{bottom:153.574667pt;}
.y2b_c01055{bottom:153.946667pt;}
.y2c_c01055{bottom:154.116000pt;}
.y2d_c01055{bottom:154.601333pt;}
.y2e_c01055{bottom:155.797333pt;}
.y2f_c01055{bottom:156.076000pt;}
.y30_c01055{bottom:156.404000pt;}
.y24_c01055{bottom:170.640000pt;}
.y23_c01055{bottom:185.793333pt;}
.y22_c01055{bottom:197.040000pt;}
.y20_c01055{bottom:203.520000pt;}
.y21_c01055{bottom:204.124000pt;}
.y1f_c01055{bottom:233.194667pt;}
.y1e_c01055{bottom:252.638667pt;}
.y1d_c01055{bottom:272.741333pt;}
.y1c_c01055{bottom:293.280000pt;}
.y1b_c01055{bottom:316.329333pt;}
.y1a_c01055{bottom:336.877333pt;}
.y19_c01055{bottom:362.026667pt;}
.y18_c01055{bottom:386.160000pt;}
.y17_c01055{bottom:406.109333pt;}
.y16_c01055{bottom:422.400000pt;}
.y15_c01055{bottom:426.064000pt;}
.y14_c01055{bottom:434.160000pt;}
.y13_c01055{bottom:445.968000pt;}
.y12_c01055{bottom:466.622667pt;}
.y11_c01055{bottom:486.814667pt;}
.y10_c01055{bottom:507.533333pt;}
.yf_c01055{bottom:527.469333pt;}
.ye_c01055{bottom:548.130667pt;}
.yd_c01055{bottom:628.436000pt;}
.yc_c01055{bottom:648.541333pt;}
.yb_c01055{bottom:668.297333pt;}
.ya_c01055{bottom:689.280000pt;}
.y9_c01055{bottom:709.780000pt;}
.y8_c01055{bottom:730.156000pt;}
.y1_c01055{bottom:768.486667pt;}
.y2_c01055{bottom:770.141439pt;}
.y3_c01055{bottom:772.923015pt;}
.y4_c01055{bottom:773.417999pt;}
.y5_c01055{bottom:773.794963pt;}
.y6_c01055{bottom:774.706895pt;}
.y7_c01055{bottom:775.119251pt;}
.hc_c01055{height:19.600000pt;}
.hf_c01055{height:20.533333pt;}
.hb_c01055{height:21.466667pt;}
.h10_c01055{height:35.466667pt;}
.h12_c01055{height:44.800000pt;}
.h13_c01055{height:47.600000pt;}
.h11_c01055{height:52.266667pt;}
.ha_c01055{height:56.000000pt;}
.h3_c01055{height:57.866667pt;}
.h9_c01055{height:58.800000pt;}
.hd_c01055{height:60.666667pt;}
.h4_c01055{height:62.533333pt;}
.h8_c01055{height:63.466667pt;}
.h5_c01055{height:64.400000pt;}
.h6_c01055{height:65.333333pt;}
.he_c01055{height:68.133333pt;}
.h2_c01055{height:68.148355pt;}
.h7_c01055{height:71.866667pt;}
.h0_c01055{height:896.400000pt;}
.h1_c01055{height:896.666667pt;}
.w1_c01055{width:622.666667pt;}
.w0_c01055{width:622.800000pt;}
.x0_c01055{left:0.000000pt;}
.x85_c01055{left:103.680000pt;}
.x8e_c01055{left:107.672000pt;}
.x1_c01055{left:109.992000pt;}
.x7c_c01055{left:120.000000pt;}
.x10_c01055{left:129.120000pt;}
.x8f_c01055{left:133.602667pt;}
.x7d_c01055{left:137.760000pt;}
.x32_c01055{left:139.680000pt;}
.x8_c01055{left:140.640000pt;}
.x86_c01055{left:156.720000pt;}
.x55_c01055{left:157.680000pt;}
.x46_c01055{left:162.000000pt;}
.x11_c01055{left:163.440000pt;}
.x68_c01055{left:165.360000pt;}
.x90_c01055{left:167.449333pt;}
.x40_c01055{left:169.920000pt;}
.x75_c01055{left:171.600000pt;}
.x9_c01055{left:172.800000pt;}
.x58_c01055{left:174.720000pt;}
.x33_c01055{left:175.680000pt;}
.x1e_c01055{left:177.120000pt;}
.x4b_c01055{left:180.240000pt;}
.x91_c01055{left:181.821333pt;}
.x62_c01055{left:186.720000pt;}
.x2_c01055{left:188.790667pt;}
.x12_c01055{left:191.040000pt;}
.x6b_c01055{left:192.000000pt;}
.x59_c01055{left:193.920000pt;}
.x41_c01055{left:197.040000pt;}
.x28_c01055{left:199.680000pt;}
.x3a_c01055{left:200.640000pt;}
.x34_c01055{left:203.040000pt;}
.x60_c01055{left:210.480000pt;}
.x1f_c01055{left:212.640000pt;}
.x47_c01055{left:213.840000pt;}
.x63_c01055{left:215.040000pt;}
.x29_c01055{left:220.320000pt;}
.x6c_c01055{left:222.240000pt;}
.x17_c01055{left:223.920000pt;}
.x4c_c01055{left:225.840000pt;}
.x5a_c01055{left:227.760000pt;}
.xa_c01055{left:229.440000pt;}
.x35_c01055{left:231.840000pt;}
.x18_c01055{left:233.280000pt;}
.x70_c01055{left:234.480000pt;}
.x76_c01055{left:236.400000pt;}
.x13_c01055{left:239.280000pt;}
.x79_c01055{left:240.240000pt;}
.x3b_c01055{left:242.640000pt;}
.x7a_c01055{left:245.760000pt;}
.x5b_c01055{left:246.720000pt;}
.x54_c01055{left:247.680000pt;}
.x42_c01055{left:250.080000pt;}
.x7e_c01055{left:251.040000pt;}
.x64_c01055{left:253.680000pt;}
.x50_c01055{left:257.760000pt;}
.x20_c01055{left:261.840000pt;}
.xb_c01055{left:263.280000pt;}
.x30_c01055{left:264.960000pt;}
.x69_c01055{left:267.360000pt;}
.x7f_c01055{left:268.560000pt;}
.x19_c01055{left:271.680000pt;}
.x87_c01055{left:272.880000pt;}
.x7b_c01055{left:274.800000pt;}
.x2a_c01055{left:275.760000pt;}
.x14_c01055{left:277.920000pt;}
.x36_c01055{left:284.160000pt;}
.x92_c01055{left:285.482667pt;}
.x2b_c01055{left:286.800000pt;}
.x49_c01055{left:289.920000pt;}
.x65_c01055{left:292.560000pt;}
.xc_c01055{left:297.360000pt;}
.x21_c01055{left:298.560000pt;}
.x5c_c01055{left:299.520000pt;}
.x61_c01055{left:302.400000pt;}
.x51_c01055{left:303.600000pt;}
.x4f_c01055{left:306.720000pt;}
.x6d_c01055{left:307.680000pt;}
.x37_c01055{left:312.240000pt;}
.x88_c01055{left:316.320000pt;}
.x4d_c01055{left:317.280000pt;}
.x48_c01055{left:318.480000pt;}
.x4a_c01055{left:319.680000pt;}
.x3_c01055{left:321.246667pt;}
.x1a_c01055{left:323.520000pt;}
.x6e_c01055{left:325.680000pt;}
.x80_c01055{left:329.280000pt;}
.x89_c01055{left:330.720000pt;}
.x2c_c01055{left:332.400000pt;}
.x66_c01055{left:335.520000pt;}
.x77_c01055{left:339.120000pt;}
.x6a_c01055{left:341.040000pt;}
.xd_c01055{left:342.000000pt;}
.x4_c01055{left:344.817333pt;}
.x5d_c01055{left:346.320000pt;}
.x15_c01055{left:349.440000pt;}
.x22_c01055{left:350.640000pt;}
.x2d_c01055{left:353.760000pt;}
.x1b_c01055{left:354.720000pt;}
.x38_c01055{left:358.560000pt;}
.x71_c01055{left:360.000000pt;}
.x3c_c01055{left:361.680000pt;}
.x5_c01055{left:362.768000pt;}
.x56_c01055{left:363.840000pt;}
.x5e_c01055{left:365.040000pt;}
.x93_c01055{left:371.074667pt;}
.x43_c01055{left:373.440000pt;}
.x23_c01055{left:375.600000pt;}
.x4e_c01055{left:377.520000pt;}
.x6f_c01055{left:379.440000pt;}
.x16_c01055{left:388.080000pt;}
.x8a_c01055{left:389.280000pt;}
.x67_c01055{left:392.160000pt;}
.x5f_c01055{left:393.360000pt;}
.x31_c01055{left:394.560000pt;}
.x81_c01055{left:397.200000pt;}
.x24_c01055{left:398.160000pt;}
.xe_c01055{left:400.560000pt;}
.x52_c01055{left:401.520000pt;}
.x1c_c01055{left:403.680000pt;}
.x6_c01055{left:406.193333pt;}
.x3d_c01055{left:411.120000pt;}
.x8b_c01055{left:415.440000pt;}
.x2e_c01055{left:417.360000pt;}
.x72_c01055{left:419.760000pt;}
.xf_c01055{left:423.360000pt;}
.x1d_c01055{left:424.560000pt;}
.x7_c01055{left:425.829333pt;}
.x25_c01055{left:427.680000pt;}
.x44_c01055{left:430.320000pt;}
.x3e_c01055{left:434.640000pt;}
.x39_c01055{left:437.040000pt;}
.x57_c01055{left:442.080000pt;}
.x8c_c01055{left:444.960000pt;}
.x73_c01055{left:446.400000pt;}
.x82_c01055{left:452.880000pt;}
.x53_c01055{left:455.760000pt;}
.x78_c01055{left:456.960000pt;}
.x74_c01055{left:459.840000pt;}
.x26_c01055{left:466.560000pt;}
.x94_c01055{left:470.721333pt;}
.x83_c01055{left:472.080000pt;}
.x3f_c01055{left:480.000000pt;}
.x45_c01055{left:481.440000pt;}
.x27_c01055{left:486.720000pt;}
.x2f_c01055{left:492.000000pt;}
.x95_c01055{left:493.972000pt;}
.x8d_c01055{left:498.720000pt;}
.x84_c01055{left:521.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_c01056 {
    display:none;
  }
  .loading-indicator_c01056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01056 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01056 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01056" -> "#page-container .classname_c01056")
 */
.pf_c01056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01056 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01056 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01056 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01056 {overflow:visible;}
  }
}
.c_c01056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01056 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01056:after { /* webkit #35443 */
  content: '';
}
.t_c01056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01056 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01056 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01056 { /* info for Javascript */
  display:none;
}
.l_c01056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.000000;font-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_c01056{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);}
.m95_c01056{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);}
.m55_c01056{transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017740,0.000000,0.000000,0.250000,0,0);}
.mb7_c01056{transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019780,0.000000,0.000000,0.250000,0,0);}
.mc9_c01056{transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);}
.m4c_c01056{transform:matrix(0.037530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037530,0.000000,0.000000,0.250000,0,0);}
.m36_c01056{transform:matrix(0.039570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039570,0.000000,0.000000,0.250000,0,0);}
.m4a_c01056{transform:matrix(0.042055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042055,0.000000,0.000000,0.250000,0,0);}
.m42_c01056{transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083745,0.000000,0.000000,0.250000,0,0);}
.m12_c01056{transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097045,0.000000,0.000000,0.250000,0,0);}
.mf_c01056{transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099490,0.000000,0.000000,0.250000,0,0);}
.m77_c01056{transform:matrix(0.101380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101380,0.000000,0.000000,0.250000,0,0);}
.mb5_c01056{transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102860,0.000000,0.000000,0.250000,0,0);}
.maa_c01056{transform:matrix(0.111930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111930,0.000000,0.000000,0.250000,0,0);}
.m90_c01056{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);}
.mc1_c01056{transform:matrix(0.135790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135790,0.000000,0.000000,0.250000,0,0);}
.mb2_c01056{transform:matrix(0.137115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137115,0.000000,0.000000,0.250000,0,0);}
.m7b_c01056{transform:matrix(0.140140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140140,0.000000,0.000000,0.250000,0,0);}
.m48_c01056{transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140285,0.000000,0.000000,0.250000,0,0);}
.ma7_c01056{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);}
.ma6_c01056{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.mbd_c01056{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);}
.mc7_c01056{transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149135,0.000000,0.000000,0.250000,0,0);}
.maf_c01056{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);}
.m88_c01056{transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);}
.m3c_c01056{transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152795,0.000000,0.000000,0.250000,0,0);}
.m86_c01056{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.mac_c01056{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);}
.m46_c01056{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);}
.mad_c01056{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);}
.m60_c01056{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);}
.mc0_c01056{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);}
.mbc_c01056{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);}
.m7e_c01056{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);}
.ma8_c01056{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);}
.m8_c01056{transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161920,0.000000,0.000000,0.250000,0,0);}
.m1d_c01056{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);}
.m91_c01056{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);}
.m3f_c01056{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);}
.m40_c01056{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);}
.m7d_c01056{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);}
.m7f_c01056{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);}
.ma3_c01056{transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168970,0.000000,0.000000,0.250000,0,0);}
.m63_c01056{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);}
.m22_c01056{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);}
.m4b_c01056{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);}
.md7_c01056{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);}
.m11_c01056{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);}
.m4f_c01056{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);}
.md6_c01056{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);}
.m6a_c01056{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);}
.mb1_c01056{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);}
.m43_c01056{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);}
.m1e_c01056{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);}
.m30_c01056{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_c01056{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);}
.ma9_c01056{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);}
.me_c01056{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);}
.m92_c01056{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);}
.m87_c01056{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);}
.mbf_c01056{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);}
.mcf_c01056{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);}
.m80_c01056{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);}
.m7a_c01056{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);}
.md0_c01056{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);}
.m6_c01056{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);}
.m9c_c01056{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);}
.m26_c01056{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);}
.m5a_c01056{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);}
.m71_c01056{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);}
.m47_c01056{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);}
.m2f_c01056{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);}
.mbb_c01056{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);}
.mae_c01056{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);}
.m61_c01056{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);}
.m3b_c01056{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);}
.m83_c01056{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);}
.mba_c01056{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);}
.m8f_c01056{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);}
.m3_c01056{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);}
.m34_c01056{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);}
.m41_c01056{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);}
.m5c_c01056{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_c01056{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);}
.m62_c01056{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);}
.mb9_c01056{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);}
.m78_c01056{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);}
.m84_c01056{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);}
.m45_c01056{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);}
.m8d_c01056{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);}
.m4d_c01056{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);}
.m89_c01056{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);}
.m72_c01056{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);}
.mb0_c01056{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);}
.m98_c01056{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);}
.mcd_c01056{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);}
.mdb_c01056{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);}
.m28_c01056{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);}
.m16_c01056{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);}
.mda_c01056{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);}
.md9_c01056{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);}
.m2c_c01056{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);}
.m3a_c01056{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);}
.m17_c01056{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);}
.m9b_c01056{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);}
.m7_c01056{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);}
.m44_c01056{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);}
.m49_c01056{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);}
.m8c_c01056{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);}
.m79_c01056{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);}
.m7c_c01056{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);}
.m3d_c01056{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);}
.m5b_c01056{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);}
.m82_c01056{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);}
.mcc_c01056{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);}
.m96_c01056{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);}
.m33_c01056{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);}
.mb8_c01056{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);}
.m97_c01056{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);}
.m52_c01056{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);}
.md4_c01056{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);}
.m14_c01056{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);}
.m58_c01056{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);}
.m57_c01056{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);}
.mcb_c01056{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);}
.m4e_c01056{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);}
.m21_c01056{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);}
.m1f_c01056{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);}
.m2e_c01056{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);}
.md8_c01056{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);}
.m74_c01056{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);}
.m1_c01056{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);}
.mb3_c01056{transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216785,0.000000,0.000000,0.250000,0,0);}
.m10_c01056{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);}
.m32_c01056{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);}
.m24_c01056{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);}
.m13_c01056{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);}
.m9a_c01056{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);}
.mc2_c01056{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);}
.m19_c01056{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);}
.m75_c01056{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);}
.mc3_c01056{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);}
.m94_c01056{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);}
.ma5_c01056{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);}
.m37_c01056{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);}
.m2b_c01056{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);}
.m8a_c01056{transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);}
.m93_c01056{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);}
.m73_c01056{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);}
.m20_c01056{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);}
.mc6_c01056{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);}
.m2a_c01056{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);}
.m8e_c01056{transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);}
.m76_c01056{transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);}
.m9_c01056{transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);}
.mb6_c01056{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);}
.md1_c01056{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);}
.m1a_c01056{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);}
.m25_c01056{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);}
.mdc_c01056{transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);}
.mc5_c01056{transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);}
.m54_c01056{transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241015,0.000000,0.000000,0.250000,0,0);}
.m35_c01056{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.md_c01056{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);}
.m29_c01056{transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241855,0.000000,0.000000,0.250000,0,0);}
.m59_c01056{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);}
.mc8_c01056{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);}
.mab_c01056{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);}
.ma1_c01056{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);}
.m23_c01056{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);}
.m38_c01056{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);}
.m27_c01056{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);}
.mca_c01056{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.md3_c01056{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);}
.m15_c01056{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);}
.m85_c01056{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m81_c01056{transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);}
.m69_c01056{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);}
.ma2_c01056{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);}
.ma4_c01056{transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);}
.m18_c01056{transform:matrix(0.262440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262440,0.000000,0.000000,0.250000,0,0);}
.m31_c01056{transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263010,0.000000,0.000000,0.250000,0,0);}
.m9e_c01056{transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264345,0.000000,0.000000,0.250000,0,0);}
.m6f_c01056{transform:matrix(0.264555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264555,0.000000,0.000000,0.250000,0,0);}
.m39_c01056{transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265410,0.000000,0.000000,0.250000,0,0);}
.mce_c01056{transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266015,0.000000,0.000000,0.250000,0,0);}
.md5_c01056{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m1c_c01056{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);}
.m2_c01056{transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);}
.mc4_c01056{transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277350,0.000000,0.000000,0.250000,0,0);}
.m99_c01056{transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);}
.m4_c01056{transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303385,0.000000,0.000000,0.250000,0,0);}
.m5_c01056{transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308390,0.000000,0.000000,0.250000,0,0);}
.m5f_c01056{transform:matrix(0.315870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315870,0.000000,0.000000,0.250000,0,0);}
.m6d_c01056{transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329165,0.000000,0.000000,0.250000,0,0);}
.m50_c01056{transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);}
.m8b_c01056{transform:matrix(0.345030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345030,0.000000,0.000000,0.250000,0,0);}
.m64_c01056{transform:matrix(0.359485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359485,0.000000,0.000000,0.250000,0,0);}
.mb4_c01056{transform:matrix(0.361920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361920,0.000000,0.000000,0.250000,0,0);}
.m1b_c01056{transform:matrix(0.365300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365300,0.000000,0.000000,0.250000,0,0);}
.m6b_c01056{transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373795,0.000000,0.000000,0.250000,0,0);}
.m9f_c01056{transform:matrix(0.375765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375765,0.000000,0.000000,0.250000,0,0);}
.ma0_c01056{transform:matrix(0.377700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377700,0.000000,0.000000,0.250000,0,0);}
.m5d_c01056{transform:matrix(0.387740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387740,0.000000,0.000000,0.250000,0,0);}
.m3e_c01056{transform:matrix(0.390590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390590,0.000000,0.000000,0.250000,0,0);}
.md2_c01056{transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399705,0.000000,0.000000,0.250000,0,0);}
.m9d_c01056{transform:matrix(0.401360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401360,0.000000,0.000000,0.250000,0,0);}
.m65_c01056{transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403450,0.000000,0.000000,0.250000,0,0);}
.m56_c01056{transform:matrix(0.419420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419420,0.000000,0.000000,0.250000,0,0);}
.m51_c01056{transform:matrix(0.430035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430035,0.000000,0.000000,0.250000,0,0);}
.m5e_c01056{transform:matrix(0.444030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444030,0.000000,0.000000,0.250000,0,0);}
.mc_c01056{transform:matrix(0.451020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451020,0.000000,0.000000,0.250000,0,0);}
.m68_c01056{transform:matrix(0.453845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453845,0.000000,0.000000,0.250000,0,0);}
.m66_c01056{transform:matrix(0.462065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462065,0.000000,0.000000,0.250000,0,0);}
.m6c_c01056{transform:matrix(0.470510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470510,0.000000,0.000000,0.250000,0,0);}
.m67_c01056{transform:matrix(0.503640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503640,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.mb_c01056{transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614460,0.000000,0.000000,0.250000,0,0);}
.ma_c01056{transform:matrix(0.641670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641670,0.000000,0.000000,0.250000,0,0);}
.m70_c01056{transform:matrix(0.710210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710210,0.000000,0.000000,0.250000,0,0);}
.m6e_c01056{transform:matrix(1.037305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037305,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls0_c01056{letter-spacing:0.000000px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:0.000000px;}
.fc0_c01056{color:transparent;}
.fsb_c01056{font-size:55.650000px;}
.fsd_c01056{font-size:59.850000px;}
.fs4_c01056{font-size:61.950000px;}
.fsc_c01056{font-size:63.000000px;}
.fs2_c01056{font-size:64.050000px;}
.fs5_c01056{font-size:65.100000px;}
.fs6_c01056{font-size:67.200000px;}
.fs1_c01056{font-size:68.250000px;}
.fse_c01056{font-size:69.300000px;}
.fsa_c01056{font-size:70.350000px;}
.fs8_c01056{font-size:71.400000px;}
.fs7_c01056{font-size:72.450000px;}
.fsf_c01056{font-size:73.500000px;}
.fs0_c01056{font-size:80.850000px;}
.fs3_c01056{font-size:85.050000px;}
.fs9_c01056{font-size:86.100000px;}
.y0_c01056{bottom:0.000000px;}
.y26_c01056{bottom:152.823000px;}
.y25_c01056{bottom:176.244000px;}
.y24_c01056{bottom:197.304000px;}
.y23_c01056{bottom:197.544000px;}
.y22_c01056{bottom:198.045000px;}
.y21_c01056{bottom:198.307500px;}
.y20_c01056{bottom:198.631500px;}
.y1f_c01056{bottom:198.855000px;}
.y1e_c01056{bottom:199.176000px;}
.y1d_c01056{bottom:199.372500px;}
.y1c_c01056{bottom:199.627500px;}
.y1b_c01056{bottom:199.800000px;}
.y1a_c01056{bottom:221.359500px;}
.y19_c01056{bottom:244.351500px;}
.y18_c01056{bottom:266.569500px;}
.y17_c01056{bottom:288.906000px;}
.y16_c01056{bottom:316.665000px;}
.y15_c01056{bottom:339.204000px;}
.y14_c01056{bottom:361.173000px;}
.y13_c01056{bottom:384.792000px;}
.y12_c01056{bottom:407.484000px;}
.y11_c01056{bottom:430.017000px;}
.y10_c01056{bottom:475.314000px;}
.yf_c01056{bottom:497.338500px;}
.ye_c01056{bottom:519.748500px;}
.yd_c01056{bottom:542.250000px;}
.yc_c01056{bottom:564.502500px;}
.yb_c01056{bottom:590.079000px;}
.ya_c01056{bottom:612.630000px;}
.y9_c01056{bottom:658.677000px;}
.y8_c01056{bottom:680.599500px;}
.y7_c01056{bottom:702.730500px;}
.y6_c01056{bottom:726.607500px;}
.y5_c01056{bottom:748.224000px;}
.y4_c01056{bottom:772.696500px;}
.y3_c01056{bottom:795.847500px;}
.y2_c01056{bottom:818.878500px;}
.y1_c01056{bottom:864.241500px;}
.hd_c01056{height:55.650000px;}
.hf_c01056{height:59.850000px;}
.h6_c01056{height:61.950000px;}
.he_c01056{height:63.000000px;}
.h4_c01056{height:64.050000px;}
.h7_c01056{height:65.100000px;}
.h8_c01056{height:67.200000px;}
.h3_c01056{height:68.250000px;}
.h10_c01056{height:69.300000px;}
.hc_c01056{height:70.350000px;}
.ha_c01056{height:71.400000px;}
.h9_c01056{height:72.450000px;}
.h11_c01056{height:73.500000px;}
.h2_c01056{height:80.850000px;}
.h5_c01056{height:85.050000px;}
.hb_c01056{height:86.100000px;}
.h1_c01056{height:1005.000000px;}
.h0_c01056{height:1005.150000px;}
.w0_c01056{width:715.200000px;}
.w1_c01056{width:715.500000px;}
.x0_c01056{left:0.000000px;}
.x75_c01056{left:122.040000px;}
.x76_c01056{left:137.970000px;}
.x7d_c01056{left:144.990000px;}
.x83_c01056{left:147.960000px;}
.x51_c01056{left:152.280000px;}
.x1c_c01056{left:153.900000px;}
.x5_c01056{left:154.980000px;}
.x2b_c01056{left:156.330000px;}
.x3f_c01056{left:160.920000px;}
.x2c_c01056{left:169.290000px;}
.x37_c01056{left:171.180000px;}
.x40_c01056{left:173.070000px;}
.x6f_c01056{left:176.850000px;}
.x46_c01056{left:179.550000px;}
.x6a_c01056{left:181.710000px;}
.x60_c01056{left:186.030000px;}
.x6_c01056{left:189.810000px;}
.x7e_c01056{left:191.160000px;}
.xe_c01056{left:194.130000px;}
.x55_c01056{left:196.830000px;}
.x1_c01056{left:198.990000px;}
.x84_c01056{left:203.850000px;}
.x1d_c01056{left:204.930000px;}
.x42_c01056{left:209.520000px;}
.x41_c01056{left:212.760000px;}
.x77_c01056{left:213.840000px;}
.x1e_c01056{left:218.430000px;}
.x7_c01056{left:219.510000px;}
.x7a_c01056{left:221.797500px;}
.x6b_c01056{left:225.180000px;}
.x5d_c01056{left:228.420000px;}
.x52_c01056{left:232.200000px;}
.x65_c01056{left:233.280000px;}
.x43_c01056{left:241.110000px;}
.x2d_c01056{left:244.890000px;}
.xf_c01056{left:246.240000px;}
.x85_c01056{left:247.590000px;}
.x4b_c01056{left:251.100000px;}
.x5e_c01056{left:252.450000px;}
.x8_c01056{left:255.960000px;}
.x38_c01056{left:257.040000px;}
.x10_c01056{left:260.550000px;}
.x59_c01056{left:263.790000px;}
.x44_c01056{left:267.840000px;}
.x4a_c01056{left:270.540000px;}
.x18_c01056{left:271.620000px;}
.x47_c01056{left:278.640000px;}
.x86_c01056{left:279.720000px;}
.x28_c01056{left:281.340000px;}
.x7f_c01056{left:282.420000px;}
.x56_c01056{left:290.790000px;}
.x78_c01056{left:292.410000px;}
.x11_c01056{left:294.570000px;}
.x1f_c01056{left:295.650000px;}
.x9_c01056{left:298.620000px;}
.x5a_c01056{left:302.130000px;}
.x2e_c01056{left:304.830000px;}
.x20_c01056{left:308.340000px;}
.x79_c01056{left:315.900000px;}
.x57_c01056{left:317.250000px;}
.x70_c01056{left:319.140000px;}
.x4e_c01056{left:323.190000px;}
.x39_c01056{left:326.700000px;}
.xa_c01056{left:328.050000px;}
.x66_c01056{left:329.670000px;}
.x61_c01056{left:331.290000px;}
.x19_c01056{left:333.720000px;}
.x71_c01056{left:338.040000px;}
.x29_c01056{left:339.930000px;}
.x3a_c01056{left:341.010000px;}
.x5b_c01056{left:342.090000px;}
.x12_c01056{left:343.440000px;}
.x62_c01056{left:346.410000px;}
.xb_c01056{left:347.490000px;}
.x4f_c01056{left:349.380000px;}
.x68_c01056{left:350.730000px;}
.x53_c01056{left:351.810000px;}
.x13_c01056{left:355.860000px;}
.x6c_c01056{left:357.210000px;}
.x2f_c01056{left:358.290000px;}
.x80_c01056{left:361.800000px;}
.x30_c01056{left:363.150000px;}
.x2_c01056{left:365.040000px;}
.x69_c01056{left:366.930000px;}
.x4c_c01056{left:368.550000px;}
.xc_c01056{left:372.060000px;}
.x5c_c01056{left:374.220000px;}
.x3b_c01056{left:376.380000px;}
.x6d_c01056{left:378.270000px;}
.x21_c01056{left:383.670000px;}
.x31_c01056{left:385.560000px;}
.x54_c01056{left:388.260000px;}
.x4d_c01056{left:390.690000px;}
.x14_c01056{left:392.850000px;}
.x32_c01056{left:394.740000px;}
.x22_c01056{left:397.440000px;}
.x7b_c01056{left:403.036500px;}
.x45_c01056{left:404.460000px;}
.xd_c01056{left:406.080000px;}
.x1a_c01056{left:413.370000px;}
.x81_c01056{left:414.450000px;}
.x63_c01056{left:416.610000px;}
.x50_c01056{left:418.230000px;}
.x33_c01056{left:419.310000px;}
.x23_c01056{left:420.660000px;}
.x3_c01056{left:422.280000px;}
.x7c_c01056{left:429.660000px;}
.x2a_c01056{left:432.810000px;}
.x82_c01056{left:438.480000px;}
.x15_c01056{left:440.910000px;}
.x48_c01056{left:441.990000px;}
.x64_c01056{left:443.340000px;}
.x67_c01056{left:444.960000px;}
.x34_c01056{left:449.280000px;}
.x24_c01056{left:452.250000px;}
.x16_c01056{left:455.490000px;}
.x87_c01056{left:457.650000px;}
.x3c_c01056{left:459.000000px;}
.x1b_c01056{left:467.910000px;}
.x58_c01056{left:471.960000px;}
.x17_c01056{left:473.310000px;}
.x35_c01056{left:478.440000px;}
.x3d_c01056{left:479.520000px;}
.x72_c01056{left:490.320000px;}
.x73_c01056{left:491.940000px;}
.x4_c01056{left:494.640000px;}
.x25_c01056{left:499.770000px;}
.x5f_c01056{left:503.820000px;}
.x74_c01056{left:515.970000px;}
.x49_c01056{left:522.720000px;}
.x26_c01056{left:533.520000px;}
.x3e_c01056{left:535.950000px;}
.x6e_c01056{left:539.460000px;}
.x36_c01056{left:556.740000px;}
.x27_c01056{left:578.880000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ws0_c01056{word-spacing:0.000000pt;}
.fsb_c01056{font-size:49.466667pt;}
.fsd_c01056{font-size:53.200000pt;}
.fs4_c01056{font-size:55.066667pt;}
.fsc_c01056{font-size:56.000000pt;}
.fs2_c01056{font-size:56.933333pt;}
.fs5_c01056{font-size:57.866667pt;}
.fs6_c01056{font-size:59.733333pt;}
.fs1_c01056{font-size:60.666667pt;}
.fse_c01056{font-size:61.600000pt;}
.fsa_c01056{font-size:62.533333pt;}
.fs8_c01056{font-size:63.466667pt;}
.fs7_c01056{font-size:64.400000pt;}
.fsf_c01056{font-size:65.333333pt;}
.fs0_c01056{font-size:71.866667pt;}
.fs3_c01056{font-size:75.600000pt;}
.fs9_c01056{font-size:76.533333pt;}
.y0_c01056{bottom:0.000000pt;}
.y26_c01056{bottom:135.842667pt;}
.y25_c01056{bottom:156.661333pt;}
.y24_c01056{bottom:175.381333pt;}
.y23_c01056{bottom:175.594667pt;}
.y22_c01056{bottom:176.040000pt;}
.y21_c01056{bottom:176.273333pt;}
.y20_c01056{bottom:176.561333pt;}
.y1f_c01056{bottom:176.760000pt;}
.y1e_c01056{bottom:177.045333pt;}
.y1d_c01056{bottom:177.220000pt;}
.y1c_c01056{bottom:177.446667pt;}
.y1b_c01056{bottom:177.600000pt;}
.y1a_c01056{bottom:196.764000pt;}
.y19_c01056{bottom:217.201333pt;}
.y18_c01056{bottom:236.950667pt;}
.y17_c01056{bottom:256.805333pt;}
.y16_c01056{bottom:281.480000pt;}
.y15_c01056{bottom:301.514667pt;}
.y14_c01056{bottom:321.042667pt;}
.y13_c01056{bottom:342.037333pt;}
.y12_c01056{bottom:362.208000pt;}
.y11_c01056{bottom:382.237333pt;}
.y10_c01056{bottom:422.501333pt;}
.yf_c01056{bottom:442.078667pt;}
.ye_c01056{bottom:461.998667pt;}
.yd_c01056{bottom:482.000000pt;}
.yc_c01056{bottom:501.780000pt;}
.yb_c01056{bottom:524.514667pt;}
.ya_c01056{bottom:544.560000pt;}
.y9_c01056{bottom:585.490667pt;}
.y8_c01056{bottom:604.977333pt;}
.y7_c01056{bottom:624.649333pt;}
.y6_c01056{bottom:645.873333pt;}
.y5_c01056{bottom:665.088000pt;}
.y4_c01056{bottom:686.841333pt;}
.y3_c01056{bottom:707.420000pt;}
.y2_c01056{bottom:727.892000pt;}
.y1_c01056{bottom:768.214667pt;}
.hd_c01056{height:49.466667pt;}
.hf_c01056{height:53.200000pt;}
.h6_c01056{height:55.066667pt;}
.he_c01056{height:56.000000pt;}
.h4_c01056{height:56.933333pt;}
.h7_c01056{height:57.866667pt;}
.h8_c01056{height:59.733333pt;}
.h3_c01056{height:60.666667pt;}
.h10_c01056{height:61.600000pt;}
.hc_c01056{height:62.533333pt;}
.ha_c01056{height:63.466667pt;}
.h9_c01056{height:64.400000pt;}
.h11_c01056{height:65.333333pt;}
.h2_c01056{height:71.866667pt;}
.h5_c01056{height:75.600000pt;}
.hb_c01056{height:76.533333pt;}
.h1_c01056{height:893.333333pt;}
.h0_c01056{height:893.466667pt;}
.w0_c01056{width:635.733333pt;}
.w1_c01056{width:636.000000pt;}
.x0_c01056{left:0.000000pt;}
.x75_c01056{left:108.480000pt;}
.x76_c01056{left:122.640000pt;}
.x7d_c01056{left:128.880000pt;}
.x83_c01056{left:131.520000pt;}
.x51_c01056{left:135.360000pt;}
.x1c_c01056{left:136.800000pt;}
.x5_c01056{left:137.760000pt;}
.x2b_c01056{left:138.960000pt;}
.x3f_c01056{left:143.040000pt;}
.x2c_c01056{left:150.480000pt;}
.x37_c01056{left:152.160000pt;}
.x40_c01056{left:153.840000pt;}
.x6f_c01056{left:157.200000pt;}
.x46_c01056{left:159.600000pt;}
.x6a_c01056{left:161.520000pt;}
.x60_c01056{left:165.360000pt;}
.x6_c01056{left:168.720000pt;}
.x7e_c01056{left:169.920000pt;}
.xe_c01056{left:172.560000pt;}
.x55_c01056{left:174.960000pt;}
.x1_c01056{left:176.880000pt;}
.x84_c01056{left:181.200000pt;}
.x1d_c01056{left:182.160000pt;}
.x42_c01056{left:186.240000pt;}
.x41_c01056{left:189.120000pt;}
.x77_c01056{left:190.080000pt;}
.x1e_c01056{left:194.160000pt;}
.x7_c01056{left:195.120000pt;}
.x7a_c01056{left:197.153333pt;}
.x6b_c01056{left:200.160000pt;}
.x5d_c01056{left:203.040000pt;}
.x52_c01056{left:206.400000pt;}
.x65_c01056{left:207.360000pt;}
.x43_c01056{left:214.320000pt;}
.x2d_c01056{left:217.680000pt;}
.xf_c01056{left:218.880000pt;}
.x85_c01056{left:220.080000pt;}
.x4b_c01056{left:223.200000pt;}
.x5e_c01056{left:224.400000pt;}
.x8_c01056{left:227.520000pt;}
.x38_c01056{left:228.480000pt;}
.x10_c01056{left:231.600000pt;}
.x59_c01056{left:234.480000pt;}
.x44_c01056{left:238.080000pt;}
.x4a_c01056{left:240.480000pt;}
.x18_c01056{left:241.440000pt;}
.x47_c01056{left:247.680000pt;}
.x86_c01056{left:248.640000pt;}
.x28_c01056{left:250.080000pt;}
.x7f_c01056{left:251.040000pt;}
.x56_c01056{left:258.480000pt;}
.x78_c01056{left:259.920000pt;}
.x11_c01056{left:261.840000pt;}
.x1f_c01056{left:262.800000pt;}
.x9_c01056{left:265.440000pt;}
.x5a_c01056{left:268.560000pt;}
.x2e_c01056{left:270.960000pt;}
.x20_c01056{left:274.080000pt;}
.x79_c01056{left:280.800000pt;}
.x57_c01056{left:282.000000pt;}
.x70_c01056{left:283.680000pt;}
.x4e_c01056{left:287.280000pt;}
.x39_c01056{left:290.400000pt;}
.xa_c01056{left:291.600000pt;}
.x66_c01056{left:293.040000pt;}
.x61_c01056{left:294.480000pt;}
.x19_c01056{left:296.640000pt;}
.x71_c01056{left:300.480000pt;}
.x29_c01056{left:302.160000pt;}
.x3a_c01056{left:303.120000pt;}
.x5b_c01056{left:304.080000pt;}
.x12_c01056{left:305.280000pt;}
.x62_c01056{left:307.920000pt;}
.xb_c01056{left:308.880000pt;}
.x4f_c01056{left:310.560000pt;}
.x68_c01056{left:311.760000pt;}
.x53_c01056{left:312.720000pt;}
.x13_c01056{left:316.320000pt;}
.x6c_c01056{left:317.520000pt;}
.x2f_c01056{left:318.480000pt;}
.x80_c01056{left:321.600000pt;}
.x30_c01056{left:322.800000pt;}
.x2_c01056{left:324.480000pt;}
.x69_c01056{left:326.160000pt;}
.x4c_c01056{left:327.600000pt;}
.xc_c01056{left:330.720000pt;}
.x5c_c01056{left:332.640000pt;}
.x3b_c01056{left:334.560000pt;}
.x6d_c01056{left:336.240000pt;}
.x21_c01056{left:341.040000pt;}
.x31_c01056{left:342.720000pt;}
.x54_c01056{left:345.120000pt;}
.x4d_c01056{left:347.280000pt;}
.x14_c01056{left:349.200000pt;}
.x32_c01056{left:350.880000pt;}
.x22_c01056{left:353.280000pt;}
.x7b_c01056{left:358.254667pt;}
.x45_c01056{left:359.520000pt;}
.xd_c01056{left:360.960000pt;}
.x1a_c01056{left:367.440000pt;}
.x81_c01056{left:368.400000pt;}
.x63_c01056{left:370.320000pt;}
.x50_c01056{left:371.760000pt;}
.x33_c01056{left:372.720000pt;}
.x23_c01056{left:373.920000pt;}
.x3_c01056{left:375.360000pt;}
.x7c_c01056{left:381.920000pt;}
.x2a_c01056{left:384.720000pt;}
.x82_c01056{left:389.760000pt;}
.x15_c01056{left:391.920000pt;}
.x48_c01056{left:392.880000pt;}
.x64_c01056{left:394.080000pt;}
.x67_c01056{left:395.520000pt;}
.x34_c01056{left:399.360000pt;}
.x24_c01056{left:402.000000pt;}
.x16_c01056{left:404.880000pt;}
.x87_c01056{left:406.800000pt;}
.x3c_c01056{left:408.000000pt;}
.x1b_c01056{left:415.920000pt;}
.x58_c01056{left:419.520000pt;}
.x17_c01056{left:420.720000pt;}
.x35_c01056{left:425.280000pt;}
.x3d_c01056{left:426.240000pt;}
.x72_c01056{left:435.840000pt;}
.x73_c01056{left:437.280000pt;}
.x4_c01056{left:439.680000pt;}
.x25_c01056{left:444.240000pt;}
.x5f_c01056{left:447.840000pt;}
.x74_c01056{left:458.640000pt;}
.x49_c01056{left:464.640000pt;}
.x26_c01056{left:474.240000pt;}
.x3e_c01056{left:476.400000pt;}
.x6e_c01056{left:479.520000pt;}
.x36_c01056{left:494.880000pt;}
.x27_c01056{left:514.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_c01057 {
    display:none;
  }
  .loading-indicator_c01057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01057" -> "#page-container .classname_c01057")
 */
.pf_c01057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01057 {overflow:visible;}
  }
}
.c_c01057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01057:after { /* webkit #35443 */
  content: '';
}
.t_c01057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01057 { /* info for Javascript */
  display:none;
}
.l_c01057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.000000;font-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_c01057{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);}
.mb7_c01057{transform:matrix(0.021975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021975,0.000000,0.000000,0.250000,0,0);}
.m39_c01057{transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037705,0.000000,0.000000,0.250000,0,0);}
.m54_c01057{transform:matrix(0.041731,-0.000543,0.003250,0.249979,0,0);-ms-transform:matrix(0.041731,-0.000543,0.003250,0.249979,0,0);-webkit-transform:matrix(0.041731,-0.000543,0.003250,0.249979,0,0);}
.mb4_c01057{transform:matrix(0.087080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087080,0.000000,0.000000,0.250000,0,0);}
.m61_c01057{transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);}
.m4b_c01057{transform:matrix(0.122765,-0.001596,0.003250,0.249979,0,0);-ms-transform:matrix(0.122765,-0.001596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.122765,-0.001596,0.003250,0.249979,0,0);}
.mb_c01057{transform:matrix(0.137839,-0.002068,0.003750,0.249972,0,0);-ms-transform:matrix(0.137839,-0.002068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137839,-0.002068,0.003750,0.249972,0,0);}
.m1d_c01057{transform:matrix(0.140367,-0.001544,0.002750,0.249985,0,0);-ms-transform:matrix(0.140367,-0.001544,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140367,-0.001544,0.002750,0.249985,0,0);}
.m41_c01057{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01057{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);}
.m14_c01057{transform:matrix(0.144954,-0.002174,0.003750,0.249972,0,0);-ms-transform:matrix(0.144954,-0.002174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144954,-0.002174,0.003750,0.249972,0,0);}
.m7_c01057{transform:matrix(0.147563,-0.002213,0.003750,0.249972,0,0);-ms-transform:matrix(0.147563,-0.002213,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147563,-0.002213,0.003750,0.249972,0,0);}
.m2b_c01057{transform:matrix(0.148963,-0.001490,0.002500,0.249988,0,0);-ms-transform:matrix(0.148963,-0.001490,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148963,-0.001490,0.002500,0.249988,0,0);}
.m9_c01057{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);}
.m18_c01057{transform:matrix(0.149711,-0.001647,0.002750,0.249985,0,0);-ms-transform:matrix(0.149711,-0.001647,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149711,-0.001647,0.002750,0.249985,0,0);}
.m23_c01057{transform:matrix(0.149733,-0.001497,0.002500,0.249988,0,0);-ms-transform:matrix(0.149733,-0.001497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.149733,-0.001497,0.002500,0.249988,0,0);}
.m19_c01057{transform:matrix(0.150946,-0.001660,0.002750,0.249985,0,0);-ms-transform:matrix(0.150946,-0.001660,0.002750,0.249985,0,0);-webkit-transform:matrix(0.150946,-0.001660,0.002750,0.249985,0,0);}
.m89_c01057{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);}
.m4f_c01057{transform:matrix(0.154832,-0.002013,0.003250,0.249979,0,0);-ms-transform:matrix(0.154832,-0.002013,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154832,-0.002013,0.003250,0.249979,0,0);}
.m21_c01057{transform:matrix(0.155052,-0.001551,0.002500,0.249988,0,0);-ms-transform:matrix(0.155052,-0.001551,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155052,-0.001551,0.002500,0.249988,0,0);}
.m1e_c01057{transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);-ms-transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156136,-0.001717,0.002750,0.249985,0,0);}
.m1a_c01057{transform:matrix(0.159010,-0.001749,0.002750,0.249985,0,0);-ms-transform:matrix(0.159010,-0.001749,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159010,-0.001749,0.002750,0.249985,0,0);}
.m45_c01057{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01057{transform:matrix(0.161327,-0.001613,0.002500,0.249988,0,0);-ms-transform:matrix(0.161327,-0.001613,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161327,-0.001613,0.002500,0.249988,0,0);}
.m26_c01057{transform:matrix(0.161512,-0.001615,0.002500,0.249988,0,0);-ms-transform:matrix(0.161512,-0.001615,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161512,-0.001615,0.002500,0.249988,0,0);}
.m2d_c01057{transform:matrix(0.163302,-0.001633,0.002500,0.249988,0,0);-ms-transform:matrix(0.163302,-0.001633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.163302,-0.001633,0.002500,0.249988,0,0);}
.m6a_c01057{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);}
.m81_c01057{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);}
.m99_c01057{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);}
.m2e_c01057{transform:matrix(0.166397,-0.001664,0.002500,0.249988,0,0);-ms-transform:matrix(0.166397,-0.001664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.166397,-0.001664,0.002500,0.249988,0,0);}
.m43_c01057{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);}
.m1c_c01057{transform:matrix(0.168355,-0.001852,0.002750,0.249985,0,0);-ms-transform:matrix(0.168355,-0.001852,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168355,-0.001852,0.002750,0.249985,0,0);}
.m90_c01057{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);}
.m35_c01057{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);}
.m2f_c01057{transform:matrix(0.170756,-0.001708,0.002500,0.249988,0,0);-ms-transform:matrix(0.170756,-0.001708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170756,-0.001708,0.002500,0.249988,0,0);}
.m65_c01057{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);}
.m3d_c01057{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);}
.m63_c01057{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_c01057{transform:matrix(0.172621,-0.002589,0.003750,0.249972,0,0);-ms-transform:matrix(0.172621,-0.002589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172621,-0.002589,0.003750,0.249972,0,0);}
.m8a_c01057{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);}
.m10_c01057{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);}
.m29_c01057{transform:matrix(0.173956,-0.001740,0.002500,0.249988,0,0);-ms-transform:matrix(0.173956,-0.001740,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173956,-0.001740,0.002500,0.249988,0,0);}
.m5f_c01057{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);}
.m28_c01057{transform:matrix(0.175241,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175241,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175241,-0.001752,0.002500,0.249988,0,0);}
.m11_c01057{transform:matrix(0.175585,-0.002634,0.003750,0.249972,0,0);-ms-transform:matrix(0.175585,-0.002634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175585,-0.002634,0.003750,0.249972,0,0);}
.m5b_c01057{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);}
.m93_c01057{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);}
.m96_c01057{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);}
.m94_c01057{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);}
.m15_c01057{transform:matrix(0.177865,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177865,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177865,-0.002668,0.003750,0.249972,0,0);}
.m13_c01057{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);}
.ma5_c01057{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);}
.m68_c01057{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);}
.m7a_c01057{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);}
.m91_c01057{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);}
.m32_c01057{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);}
.m44_c01057{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);}
.m8b_c01057{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m7f_c01057{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);}
.m5a_c01057{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);}
.m42_c01057{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);}
.m8d_c01057{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);}
.m97_c01057{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);}
.ma2_c01057{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);}
.m8_c01057{transform:matrix(0.183974,-0.002760,0.003750,0.249972,0,0);-ms-transform:matrix(0.183974,-0.002760,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183974,-0.002760,0.003750,0.249972,0,0);}
.m33_c01057{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);}
.m1b_c01057{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);}
.m72_c01057{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);}
.ma_c01057{transform:matrix(0.185649,-0.002785,0.003750,0.249972,0,0);-ms-transform:matrix(0.185649,-0.002785,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185649,-0.002785,0.003750,0.249972,0,0);}
.m59_c01057{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);}
.m31_c01057{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);}
.m34_c01057{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);}
.ma0_c01057{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);}
.m22_c01057{transform:matrix(0.188331,-0.001883,0.002500,0.249988,0,0);-ms-transform:matrix(0.188331,-0.001883,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188331,-0.001883,0.002500,0.249988,0,0);}
.m4e_c01057{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);}
.m3e_c01057{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);}
.m9d_c01057{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);}
.m6c_c01057{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);}
.m4c_c01057{transform:matrix(0.191084,-0.002484,0.003250,0.249979,0,0);-ms-transform:matrix(0.191084,-0.002484,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191084,-0.002484,0.003250,0.249979,0,0);}
.m6d_c01057{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_c01057{transform:matrix(0.191478,-0.002872,0.003750,0.249972,0,0);-ms-transform:matrix(0.191478,-0.002872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191478,-0.002872,0.003750,0.249972,0,0);}
.m9e_c01057{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);}
.m8e_c01057{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);}
.m5c_c01057{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);}
.m48_c01057{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);}
.m5e_c01057{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);}
.m50_c01057{transform:matrix(0.193784,-0.002519,0.003250,0.249979,0,0);-ms-transform:matrix(0.193784,-0.002519,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193784,-0.002519,0.003250,0.249979,0,0);}
.m6_c01057{transform:matrix(0.195528,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195528,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195528,-0.002933,0.003750,0.249972,0,0);}
.m3f_c01057{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);}
.m2a_c01057{transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);-ms-transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196030,-0.001960,0.002500,0.249988,0,0);}
.ma6_c01057{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);}
.mb5_c01057{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);}
.m87_c01057{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);}
.m5d_c01057{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);}
.m85_c01057{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);}
.m53_c01057{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);}
.m80_c01057{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);}
.m9f_c01057{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);}
.m62_c01057{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);}
.m24_c01057{transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);-ms-transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200765,-0.002008,0.002500,0.249988,0,0);}
.m52_c01057{transform:matrix(0.202843,-0.002637,0.003250,0.249979,0,0);-ms-transform:matrix(0.202843,-0.002637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202843,-0.002637,0.003250,0.249979,0,0);}
.m95_c01057{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);}
.m40_c01057{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);}
.mf_c01057{transform:matrix(0.203797,-0.003057,0.003750,0.249972,0,0);-ms-transform:matrix(0.203797,-0.003057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203797,-0.003057,0.003750,0.249972,0,0);}
.mac_c01057{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);}
.m9a_c01057{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);}
.ma9_c01057{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);}
.m60_c01057{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);}
.m74_c01057{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);}
.m27_c01057{transform:matrix(0.208495,-0.002085,0.002500,0.249988,0,0);-ms-transform:matrix(0.208495,-0.002085,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208495,-0.002085,0.002500,0.249988,0,0);}
.mad_c01057{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);}
.m37_c01057{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);}
.m86_c01057{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);}
.mb1_c01057{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);}
.ma8_c01057{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);}
.m71_c01057{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);}
.m64_c01057{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);}
.me_c01057{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);}
.ma7_c01057{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);}
.m88_c01057{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);}
.m7b_c01057{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);}
.m20_c01057{transform:matrix(0.214579,-0.002146,0.002500,0.249988,0,0);-ms-transform:matrix(0.214579,-0.002146,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214579,-0.002146,0.002500,0.249988,0,0);}
.m69_c01057{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);}
.md_c01057{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);}
.m7e_c01057{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);}
.m66_c01057{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);}
.ma1_c01057{transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);}
.m75_c01057{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);}
.m67_c01057{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);}
.maa_c01057{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);}
.m6e_c01057{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m98_c01057{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);}
.m6b_c01057{transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);}
.m8f_c01057{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);}
.m36_c01057{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);}
.mae_c01057{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);}
.m92_c01057{transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228685,0.000000,0.000000,0.250000,0,0);}
.ma4_c01057{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);}
.m3a_c01057{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);}
.m1f_c01057{transform:matrix(0.232156,-0.002554,0.002750,0.249985,0,0);-ms-transform:matrix(0.232156,-0.002554,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232156,-0.002554,0.002750,0.249985,0,0);}
.m70_c01057{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);}
.m17_c01057{transform:matrix(0.235616,-0.002592,0.002750,0.249985,0,0);-ms-transform:matrix(0.235616,-0.002592,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235616,-0.002592,0.002750,0.249985,0,0);}
.m51_c01057{transform:matrix(0.235630,-0.003063,0.003250,0.249979,0,0);-ms-transform:matrix(0.235630,-0.003063,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235630,-0.003063,0.003250,0.249979,0,0);}
.m4d_c01057{transform:matrix(0.235900,-0.003067,0.003250,0.249979,0,0);-ms-transform:matrix(0.235900,-0.003067,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235900,-0.003067,0.003250,0.249979,0,0);}
.m3c_c01057{transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236730,0.000000,0.000000,0.250000,0,0);}
.m9c_c01057{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);}
.m73_c01057{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);}
.m49_c01057{transform:matrix(0.244704,-0.003181,0.003250,0.249979,0,0);-ms-transform:matrix(0.244704,-0.003181,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244704,-0.003181,0.003250,0.249979,0,0);}
.m57_c01057{transform:matrix(0.246284,-0.003202,0.003250,0.249979,0,0);-ms-transform:matrix(0.246284,-0.003202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246284,-0.003202,0.003250,0.249979,0,0);}
.m25_c01057{transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247083,-0.002471,0.002500,0.249988,0,0);}
.m79_c01057{transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);}
.m55_c01057{transform:matrix(0.262378,-0.003411,0.003250,0.249979,0,0);-ms-transform:matrix(0.262378,-0.003411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262378,-0.003411,0.003250,0.249979,0,0);}
.m56_c01057{transform:matrix(0.267922,-0.003483,0.003250,0.249979,0,0);-ms-transform:matrix(0.267922,-0.003483,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267922,-0.003483,0.003250,0.249979,0,0);}
.m4a_c01057{transform:matrix(0.267987,-0.003484,0.003250,0.249979,0,0);-ms-transform:matrix(0.267987,-0.003484,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267987,-0.003484,0.003250,0.249979,0,0);}
.m76_c01057{transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);}
.m82_c01057{transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);}
.m78_c01057{transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281090,0.000000,0.000000,0.250000,0,0);}
.m7c_c01057{transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283805,0.000000,0.000000,0.250000,0,0);}
.m16_c01057{transform:matrix(0.311810,-0.004677,0.003750,0.249972,0,0);-ms-transform:matrix(0.311810,-0.004677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311810,-0.004677,0.003750,0.249972,0,0);}
.m47_c01057{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);}
.m9b_c01057{transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);}
.m83_c01057{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.m77_c01057{transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);}
.m3b_c01057{transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326230,0.000000,0.000000,0.250000,0,0);}
.m84_c01057{transform:matrix(0.331635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331635,0.000000,0.000000,0.250000,0,0);}
.mb8_c01057{transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335950,0.000000,0.000000,0.250000,0,0);}
.m5_c01057{transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344695,0.000000,0.000000,0.250000,0,0);}
.m3_c01057{transform:matrix(0.347651,-0.005215,0.003750,0.249972,0,0);-ms-transform:matrix(0.347651,-0.005215,0.003750,0.249972,0,0);-webkit-transform:matrix(0.347651,-0.005215,0.003750,0.249972,0,0);}
.mab_c01057{transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351385,0.000000,0.000000,0.250000,0,0);}
.m7d_c01057{transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362555,0.000000,0.000000,0.250000,0,0);}
.m46_c01057{transform:matrix(0.377390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377390,0.000000,0.000000,0.250000,0,0);}
.m8c_c01057{transform:matrix(0.397770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397770,0.000000,0.000000,0.250000,0,0);}
.m4_c01057{transform:matrix(0.399790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399790,0.000000,0.000000,0.250000,0,0);}
.m30_c01057{transform:matrix(0.410650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410650,0.000000,0.000000,0.250000,0,0);}
.m58_c01057{transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);}
.ma3_c01057{transform:matrix(0.483300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483300,0.000000,0.000000,0.250000,0,0);}
.m38_c01057{transform:matrix(0.501310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501310,0.000000,0.000000,0.250000,0,0);}
.maf_c01057{transform:matrix(0.579420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579420,0.000000,0.000000,0.250000,0,0);}
.mb9_c01057{transform:matrix(0.644975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644975,0.000000,0.000000,0.250000,0,0);}
.mb2_c01057{transform:matrix(0.666620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666620,0.000000,0.000000,0.250000,0,0);}
.mb0_c01057{transform:matrix(0.670700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670700,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(0.745891,-0.011188,0.003750,0.249972,0,0);-ms-transform:matrix(0.745891,-0.011188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.745891,-0.011188,0.003750,0.249972,0,0);}
.mb6_c01057{transform:matrix(0.818070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.818070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.818070,0.000000,0.000000,0.250000,0,0);}
.m0_c01057{transform:matrix(1.108420,-0.016626,0.003750,0.249972,0,0);-ms-transform:matrix(1.108420,-0.016626,0.003750,0.249972,0,0);-webkit-transform:matrix(1.108420,-0.016626,0.003750,0.249972,0,0);}
.m2_c01057{transform:matrix(1.360632,-0.020409,0.003750,0.249972,0,0);-ms-transform:matrix(1.360632,-0.020409,0.003750,0.249972,0,0);-webkit-transform:matrix(1.360632,-0.020409,0.003750,0.249972,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls0_c01057{letter-spacing:0.000000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:0.000000px;}
.fc0_c01057{color:transparent;}
.fs12_c01057{font-size:38.850000px;}
.fs0_c01057{font-size:47.255315px;}
.fsa_c01057{font-size:55.654702px;}
.fs8_c01057{font-size:64.050000px;}
.fs9_c01057{font-size:64.055412px;}
.fsd_c01057{font-size:65.100000px;}
.fs10_c01057{font-size:66.150000px;}
.fs6_c01057{font-size:67.200000px;}
.fsb_c01057{font-size:69.300000px;}
.fs11_c01057{font-size:70.350000px;}
.fs4_c01057{font-size:70.353517px;}
.fsc_c01057{font-size:72.450000px;}
.fs2_c01057{font-size:72.458150px;}
.fs7_c01057{font-size:73.500000px;}
.fs5_c01057{font-size:74.553727px;}
.fs3_c01057{font-size:74.554510px;}
.fsf_c01057{font-size:75.600000px;}
.fse_c01057{font-size:84.000000px;}
.fs1_c01057{font-size:111.300000px;}
.fs13_c01057{font-size:152.250000px;}
.y0_c01057{bottom:0.000000px;}
.y6b_c01057{bottom:90.391500px;}
.y6a_c01057{bottom:219.742500px;}
.y69_c01057{bottom:240.004500px;}
.y68_c01057{bottom:262.986000px;}
.y67_c01057{bottom:286.162500px;}
.y66_c01057{bottom:309.609000px;}
.y65_c01057{bottom:332.697000px;}
.y64_c01057{bottom:354.843000px;}
.y63_c01057{bottom:377.488500px;}
.y5b_c01057{bottom:399.871500px;}
.y5c_c01057{bottom:400.290000px;}
.y5d_c01057{bottom:400.861500px;}
.y5e_c01057{bottom:401.016000px;}
.y5f_c01057{bottom:401.392500px;}
.y60_c01057{bottom:401.839500px;}
.y61_c01057{bottom:402.003000px;}
.y62_c01057{bottom:402.430500px;}
.y5a_c01057{bottom:423.895500px;}
.y59_c01057{bottom:446.587500px;}
.y58_c01057{bottom:468.349500px;}
.y57_c01057{bottom:491.314500px;}
.y56_c01057{bottom:514.279500px;}
.y55_c01057{bottom:536.773500px;}
.y54_c01057{bottom:559.567500px;}
.y52_c01057{bottom:578.062542px;}
.y53_c01057{bottom:578.062686px;}
.y51_c01057{bottom:578.063200px;}
.y50_c01057{bottom:578.063409px;}
.y45_c01057{bottom:579.693000px;}
.y46_c01057{bottom:580.152225px;}
.y47_c01057{bottom:581.331487px;}
.y48_c01057{bottom:581.636838px;}
.y49_c01057{bottom:581.974675px;}
.y4a_c01057{bottom:582.767136px;}
.y4b_c01057{bottom:583.192723px;}
.y4c_c01057{bottom:583.568313px;}
.y4d_c01057{bottom:584.045731px;}
.y4e_c01057{bottom:584.217838px;}
.y4f_c01057{bottom:584.677707px;}
.y44_c01057{bottom:607.075500px;}
.y3a_c01057{bottom:627.481500px;}
.y3b_c01057{bottom:627.699000px;}
.y3c_c01057{bottom:628.084500px;}
.y3d_c01057{bottom:628.809000px;}
.y3e_c01057{bottom:629.364000px;}
.y3f_c01057{bottom:629.547000px;}
.y40_c01057{bottom:629.802000px;}
.y41_c01057{bottom:630.241500px;}
.y42_c01057{bottom:630.520500px;}
.y43_c01057{bottom:630.933000px;}
.y39_c01057{bottom:652.635000px;}
.y32_c01057{bottom:671.763000px;}
.y33_c01057{bottom:672.450000px;}
.y34_c01057{bottom:672.957000px;}
.y35_c01057{bottom:673.234500px;}
.y36_c01057{bottom:673.777500px;}
.y37_c01057{bottom:674.388000px;}
.y38_c01057{bottom:674.641500px;}
.y31_c01057{bottom:698.086500px;}
.y29_c01057{bottom:725.490630px;}
.y2a_c01057{bottom:726.343875px;}
.y2b_c01057{bottom:726.797430px;}
.y2c_c01057{bottom:726.940605px;}
.y2d_c01057{bottom:727.383435px;}
.y2e_c01057{bottom:727.742520px;}
.y2f_c01057{bottom:728.101650px;}
.y30_c01057{bottom:728.830620px;}
.y21_c01057{bottom:748.441500px;}
.y22_c01057{bottom:748.684575px;}
.y23_c01057{bottom:748.962855px;}
.y24_c01057{bottom:749.523885px;}
.y25_c01057{bottom:749.764800px;}
.y26_c01057{bottom:750.342495px;}
.y27_c01057{bottom:750.555870px;}
.y28_c01057{bottom:750.755745px;}
.y18_c01057{bottom:770.581500px;}
.y19_c01057{bottom:770.884489px;}
.y1a_c01057{bottom:771.101283px;}
.y1b_c01057{bottom:771.484545px;}
.y1c_c01057{bottom:772.209308px;}
.y1d_c01057{bottom:772.699456px;}
.y1e_c01057{bottom:773.186536px;}
.y1f_c01057{bottom:773.602304px;}
.y20_c01057{bottom:773.946774px;}
.yf_c01057{bottom:792.990533px;}
.y10_c01057{bottom:793.363440px;}
.y11_c01057{bottom:793.708912px;}
.y12_c01057{bottom:794.631915px;}
.y13_c01057{bottom:795.595537px;}
.y14_c01057{bottom:795.980257px;}
.y15_c01057{bottom:796.593705px;}
.y16_c01057{bottom:797.052023px;}
.y17_c01057{bottom:797.971830px;}
.y6_c01057{bottom:815.673000px;}
.y7_c01057{bottom:816.308783px;}
.y8_c01057{bottom:816.673485px;}
.y9_c01057{bottom:817.702500px;}
.ya_c01057{bottom:818.492340px;}
.yb_c01057{bottom:819.010560px;}
.yc_c01057{bottom:819.391462px;}
.yd_c01057{bottom:819.990908px;}
.ye_c01057{bottom:820.416113px;}
.y5_c01057{bottom:862.432500px;}
.y1_c01057{bottom:902.728500px;}
.y2_c01057{bottom:904.093507px;}
.y3_c01057{bottom:904.457625px;}
.y4_c01057{bottom:906.600795px;}
.h14_c01057{height:38.850000px;}
.h2_c01057{height:47.255315px;}
.hc_c01057{height:55.654702px;}
.ha_c01057{height:64.050000px;}
.hb_c01057{height:64.055412px;}
.hf_c01057{height:65.100000px;}
.h12_c01057{height:66.150000px;}
.h8_c01057{height:67.200000px;}
.hd_c01057{height:69.300000px;}
.h13_c01057{height:70.350000px;}
.h6_c01057{height:70.353517px;}
.he_c01057{height:72.450000px;}
.h4_c01057{height:72.458150px;}
.h9_c01057{height:73.500000px;}
.h7_c01057{height:74.553727px;}
.h5_c01057{height:74.554510px;}
.h11_c01057{height:75.600000px;}
.h10_c01057{height:84.000000px;}
.h3_c01057{height:111.300000px;}
.h15_c01057{height:152.250000px;}
.h0_c01057{height:1008.450000px;}
.h1_c01057{height:1008.750000px;}
.w1_c01057{width:700.500000px;}
.w0_c01057{width:700.650000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:144.330000px;}
.x3c_c01057{left:158.136000px;}
.x7_c01057{left:159.240000px;}
.x4f_c01057{left:160.920000px;}
.x45_c01057{left:174.152888px;}
.x34_c01057{left:179.701500px;}
.x10_c01057{left:182.775862px;}
.x1f_c01057{left:184.272000px;}
.x17_c01057{left:187.530000px;}
.x3d_c01057{left:193.461000px;}
.x8_c01057{left:201.625500px;}
.x11_c01057{left:204.407048px;}
.x5f_c01057{left:205.855500px;}
.x18_c01057{left:207.238500px;}
.x4a_c01057{left:208.710000px;}
.x6c_c01057{left:210.331500px;}
.x20_c01057{left:212.100000px;}
.x69_c01057{left:213.301500px;}
.x35_c01057{left:214.800000px;}
.x4d_c01057{left:218.700000px;}
.x5_c01057{left:222.210000px;}
.x46_c01057{left:224.106831px;}
.x9_c01057{left:225.939000px;}
.x55_c01057{left:233.010000px;}
.x2_c01057{left:235.330500px;}
.x65_c01057{left:240.841500px;}
.x19_c01057{left:242.080500px;}
.x26_c01057{left:244.231380px;}
.x70_c01057{left:247.861500px;}
.x2c_c01057{left:251.058000px;}
.x50_c01057{left:252.990000px;}
.x3_c01057{left:259.605000px;}
.x12_c01057{left:262.139693px;}
.x21_c01057{left:268.203000px;}
.x60_c01057{left:269.301000px;}
.x2d_c01057{left:272.391000px;}
.x47_c01057{left:275.411009px;}
.x74_c01057{left:277.021500px;}
.x5a_c01057{left:278.100000px;}
.x36_c01057{left:280.684500px;}
.x3e_c01057{left:284.173500px;}
.x61_c01057{left:286.539000px;}
.x27_c01057{left:289.586880px;}
.x22_c01057{left:292.294500px;}
.xa_c01057{left:294.540000px;}
.x2b_c01057{left:300.510000px;}
.x6f_c01057{left:302.131500px;}
.x28_c01057{left:303.904380px;}
.x49_c01057{left:305.910000px;}
.x1a_c01057{left:307.968000px;}
.x3b_c01057{left:309.154500px;}
.x2e_c01057{left:314.185500px;}
.x13_c01057{left:322.380292px;}
.x62_c01057{left:328.437000px;}
.x37_c01057{left:331.177500px;}
.x3f_c01057{left:333.649500px;}
.x66_c01057{left:336.421500px;}
.x4b_c01057{left:340.200000px;}
.x4e_c01057{left:343.170000px;}
.x75_c01057{left:344.521500px;}
.xb_c01057{left:347.196000px;}
.x23_c01057{left:350.064000px;}
.x1b_c01057{left:352.527000px;}
.x6_c01057{left:354.780000px;}
.x6d_c01057{left:355.861500px;}
.x31_c01057{left:358.023000px;}
.x56_c01057{left:359.910000px;}
.x2f_c01057{left:361.108500px;}
.x71_c01057{left:363.961500px;}
.x5b_c01057{left:365.310000px;}
.x32_c01057{left:366.933000px;}
.x59_c01057{left:369.090000px;}
.x24_c01057{left:371.401500px;}
.x4c_c01057{left:375.570000px;}
.x33_c01057{left:376.653000px;}
.x63_c01057{left:378.120000px;}
.x30_c01057{left:380.616000px;}
.xc_c01057{left:381.744000px;}
.x14_c01057{left:384.723848px;}
.x6e_c01057{left:386.371500px;}
.x51_c01057{left:387.450000px;}
.x25_c01057{left:391.389000px;}
.x57_c01057{left:393.120000px;}
.x40_c01057{left:394.608000px;}
.x1c_c01057{left:396.807000px;}
.x6a_c01057{left:400.141500px;}
.x4_c01057{left:402.483000px;}
.xd_c01057{left:407.137500px;}
.x38_c01057{left:411.049500px;}
.x15_c01057{left:413.377920px;}
.x76_c01057{left:416.881500px;}
.x48_c01057{left:418.523189px;}
.x29_c01057{left:420.008880px;}
.x67_c01057{left:422.011500px;}
.x52_c01057{left:424.980000px;}
.x41_c01057{left:427.345500px;}
.x58_c01057{left:431.730000px;}
.x1d_c01057{left:434.604000px;}
.x39_c01057{left:436.480500px;}
.x5c_c01057{left:441.180000px;}
.x64_c01057{left:443.722500px;}
.xe_c01057{left:447.100500px;}
.x53_c01057{left:450.360000px;}
.x72_c01057{left:451.441500px;}
.x42_c01057{left:456.237000px;}
.x5d_c01057{left:458.460000px;}
.x1e_c01057{left:465.919500px;}
.x16_c01057{left:470.897565px;}
.x3a_c01057{left:474.018000px;}
.xf_c01057{left:475.447500px;}
.x78_c01057{left:479.250000px;}
.x68_c01057{left:488.971500px;}
.x2a_c01057{left:492.905880px;}
.x6b_c01057{left:501.391500px;}
.x43_c01057{left:506.200500px;}
.x77_c01057{left:508.681500px;}
.x5e_c01057{left:510.030000px;}
.x54_c01057{left:522.720000px;}
.x44_c01057{left:541.575000px;}
.x73_c01057{left:558.361500px;}
.x79_c01057{left:561.060000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ws0_c01057{word-spacing:0.000000pt;}
.fs12_c01057{font-size:34.533333pt;}
.fs0_c01057{font-size:42.004725pt;}
.fsa_c01057{font-size:49.470846pt;}
.fs8_c01057{font-size:56.933333pt;}
.fs9_c01057{font-size:56.938144pt;}
.fsd_c01057{font-size:57.866667pt;}
.fs10_c01057{font-size:58.800000pt;}
.fs6_c01057{font-size:59.733333pt;}
.fsb_c01057{font-size:61.600000pt;}
.fs11_c01057{font-size:62.533333pt;}
.fs4_c01057{font-size:62.536460pt;}
.fsc_c01057{font-size:64.400000pt;}
.fs2_c01057{font-size:64.407245pt;}
.fs7_c01057{font-size:65.333333pt;}
.fs5_c01057{font-size:66.269980pt;}
.fs3_c01057{font-size:66.270676pt;}
.fsf_c01057{font-size:67.200000pt;}
.fse_c01057{font-size:74.666667pt;}
.fs1_c01057{font-size:98.933333pt;}
.fs13_c01057{font-size:135.333333pt;}
.y0_c01057{bottom:0.000000pt;}
.y6b_c01057{bottom:80.348000pt;}
.y6a_c01057{bottom:195.326667pt;}
.y69_c01057{bottom:213.337333pt;}
.y68_c01057{bottom:233.765333pt;}
.y67_c01057{bottom:254.366667pt;}
.y66_c01057{bottom:275.208000pt;}
.y65_c01057{bottom:295.730667pt;}
.y64_c01057{bottom:315.416000pt;}
.y63_c01057{bottom:335.545333pt;}
.y5b_c01057{bottom:355.441333pt;}
.y5c_c01057{bottom:355.813333pt;}
.y5d_c01057{bottom:356.321333pt;}
.y5e_c01057{bottom:356.458667pt;}
.y5f_c01057{bottom:356.793333pt;}
.y60_c01057{bottom:357.190667pt;}
.y61_c01057{bottom:357.336000pt;}
.y62_c01057{bottom:357.716000pt;}
.y5a_c01057{bottom:376.796000pt;}
.y59_c01057{bottom:396.966667pt;}
.y58_c01057{bottom:416.310667pt;}
.y57_c01057{bottom:436.724000pt;}
.y56_c01057{bottom:457.137333pt;}
.y55_c01057{bottom:477.132000pt;}
.y54_c01057{bottom:497.393333pt;}
.y52_c01057{bottom:513.833371pt;}
.y53_c01057{bottom:513.833499pt;}
.y51_c01057{bottom:513.833956pt;}
.y50_c01057{bottom:513.834141pt;}
.y45_c01057{bottom:515.282667pt;}
.y46_c01057{bottom:515.690867pt;}
.y47_c01057{bottom:516.739100pt;}
.y48_c01057{bottom:517.010523pt;}
.y49_c01057{bottom:517.310823pt;}
.y4a_c01057{bottom:518.015232pt;}
.y4b_c01057{bottom:518.393532pt;}
.y4c_c01057{bottom:518.727389pt;}
.y4d_c01057{bottom:519.151761pt;}
.y4e_c01057{bottom:519.304745pt;}
.y4f_c01057{bottom:519.713517pt;}
.y44_c01057{bottom:539.622667pt;}
.y3a_c01057{bottom:557.761333pt;}
.y3b_c01057{bottom:557.954667pt;}
.y3c_c01057{bottom:558.297333pt;}
.y3d_c01057{bottom:558.941333pt;}
.y3e_c01057{bottom:559.434667pt;}
.y3f_c01057{bottom:559.597333pt;}
.y40_c01057{bottom:559.824000pt;}
.y41_c01057{bottom:560.214667pt;}
.y42_c01057{bottom:560.462667pt;}
.y43_c01057{bottom:560.829333pt;}
.y39_c01057{bottom:580.120000pt;}
.y32_c01057{bottom:597.122667pt;}
.y33_c01057{bottom:597.733333pt;}
.y34_c01057{bottom:598.184000pt;}
.y35_c01057{bottom:598.430667pt;}
.y36_c01057{bottom:598.913333pt;}
.y37_c01057{bottom:599.456000pt;}
.y38_c01057{bottom:599.681333pt;}
.y31_c01057{bottom:620.521333pt;}
.y29_c01057{bottom:644.880560pt;}
.y2a_c01057{bottom:645.639000pt;}
.y2b_c01057{bottom:646.042160pt;}
.y2c_c01057{bottom:646.169427pt;}
.y2d_c01057{bottom:646.563053pt;}
.y2e_c01057{bottom:646.882240pt;}
.y2f_c01057{bottom:647.201467pt;}
.y30_c01057{bottom:647.849440pt;}
.y21_c01057{bottom:665.281333pt;}
.y22_c01057{bottom:665.497400pt;}
.y23_c01057{bottom:665.744760pt;}
.y24_c01057{bottom:666.243453pt;}
.y25_c01057{bottom:666.457600pt;}
.y26_c01057{bottom:666.971107pt;}
.y27_c01057{bottom:667.160773pt;}
.y28_c01057{bottom:667.338440pt;}
.y18_c01057{bottom:684.961333pt;}
.y19_c01057{bottom:685.230657pt;}
.y1a_c01057{bottom:685.423363pt;}
.y1b_c01057{bottom:685.764040pt;}
.y1c_c01057{bottom:686.408273pt;}
.y1d_c01057{bottom:686.843961pt;}
.y1e_c01057{bottom:687.276921pt;}
.y1f_c01057{bottom:687.646492pt;}
.y20_c01057{bottom:687.952688pt;}
.yf_c01057{bottom:704.880473pt;}
.y10_c01057{bottom:705.211947pt;}
.y11_c01057{bottom:705.519033pt;}
.y12_c01057{bottom:706.339480pt;}
.y13_c01057{bottom:707.196033pt;}
.y14_c01057{bottom:707.538007pt;}
.y15_c01057{bottom:708.083293pt;}
.y16_c01057{bottom:708.490687pt;}
.y17_c01057{bottom:709.308293pt;}
.y6_c01057{bottom:725.042667pt;}
.y7_c01057{bottom:725.607807pt;}
.y8_c01057{bottom:725.931987pt;}
.y9_c01057{bottom:726.846667pt;}
.ya_c01057{bottom:727.548747pt;}
.yb_c01057{bottom:728.009387pt;}
.yc_c01057{bottom:728.347967pt;}
.yd_c01057{bottom:728.880807pt;}
.ye_c01057{bottom:729.258767pt;}
.y5_c01057{bottom:766.606667pt;}
.y1_c01057{bottom:802.425333pt;}
.y2_c01057{bottom:803.638673pt;}
.y3_c01057{bottom:803.962333pt;}
.y4_c01057{bottom:805.867373pt;}
.h14_c01057{height:34.533333pt;}
.h2_c01057{height:42.004725pt;}
.hc_c01057{height:49.470846pt;}
.ha_c01057{height:56.933333pt;}
.hb_c01057{height:56.938144pt;}
.hf_c01057{height:57.866667pt;}
.h12_c01057{height:58.800000pt;}
.h8_c01057{height:59.733333pt;}
.hd_c01057{height:61.600000pt;}
.h13_c01057{height:62.533333pt;}
.h6_c01057{height:62.536460pt;}
.he_c01057{height:64.400000pt;}
.h4_c01057{height:64.407245pt;}
.h9_c01057{height:65.333333pt;}
.h7_c01057{height:66.269980pt;}
.h5_c01057{height:66.270676pt;}
.h11_c01057{height:67.200000pt;}
.h10_c01057{height:74.666667pt;}
.h3_c01057{height:98.933333pt;}
.h15_c01057{height:135.333333pt;}
.h0_c01057{height:896.400000pt;}
.h1_c01057{height:896.666667pt;}
.w1_c01057{width:622.666667pt;}
.w0_c01057{width:622.800000pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:128.293333pt;}
.x3c_c01057{left:140.565333pt;}
.x7_c01057{left:141.546667pt;}
.x4f_c01057{left:143.040000pt;}
.x45_c01057{left:154.802567pt;}
.x34_c01057{left:159.734667pt;}
.x10_c01057{left:162.467433pt;}
.x1f_c01057{left:163.797333pt;}
.x17_c01057{left:166.693333pt;}
.x3d_c01057{left:171.965333pt;}
.x8_c01057{left:179.222667pt;}
.x11_c01057{left:181.695153pt;}
.x5f_c01057{left:182.982667pt;}
.x18_c01057{left:184.212000pt;}
.x4a_c01057{left:185.520000pt;}
.x6c_c01057{left:186.961333pt;}
.x20_c01057{left:188.533333pt;}
.x69_c01057{left:189.601333pt;}
.x35_c01057{left:190.933333pt;}
.x4d_c01057{left:194.400000pt;}
.x5_c01057{left:197.520000pt;}
.x46_c01057{left:199.206072pt;}
.x9_c01057{left:200.834667pt;}
.x55_c01057{left:207.120000pt;}
.x2_c01057{left:209.182667pt;}
.x65_c01057{left:214.081333pt;}
.x19_c01057{left:215.182667pt;}
.x26_c01057{left:217.094560pt;}
.x70_c01057{left:220.321333pt;}
.x2c_c01057{left:223.162667pt;}
.x50_c01057{left:224.880000pt;}
.x3_c01057{left:230.760000pt;}
.x12_c01057{left:233.013060pt;}
.x21_c01057{left:238.402667pt;}
.x60_c01057{left:239.378667pt;}
.x2d_c01057{left:242.125333pt;}
.x47_c01057{left:244.809785pt;}
.x74_c01057{left:246.241333pt;}
.x5a_c01057{left:247.200000pt;}
.x36_c01057{left:249.497333pt;}
.x3e_c01057{left:252.598667pt;}
.x61_c01057{left:254.701333pt;}
.x27_c01057{left:257.410560pt;}
.x22_c01057{left:259.817333pt;}
.xa_c01057{left:261.813333pt;}
.x2b_c01057{left:267.120000pt;}
.x6f_c01057{left:268.561333pt;}
.x28_c01057{left:270.137227pt;}
.x49_c01057{left:271.920000pt;}
.x1a_c01057{left:273.749333pt;}
.x3b_c01057{left:274.804000pt;}
.x2e_c01057{left:279.276000pt;}
.x13_c01057{left:286.560260pt;}
.x62_c01057{left:291.944000pt;}
.x37_c01057{left:294.380000pt;}
.x3f_c01057{left:296.577333pt;}
.x66_c01057{left:299.041333pt;}
.x4b_c01057{left:302.400000pt;}
.x4e_c01057{left:305.040000pt;}
.x75_c01057{left:306.241333pt;}
.xb_c01057{left:308.618667pt;}
.x23_c01057{left:311.168000pt;}
.x1b_c01057{left:313.357333pt;}
.x6_c01057{left:315.360000pt;}
.x6d_c01057{left:316.321333pt;}
.x31_c01057{left:318.242667pt;}
.x56_c01057{left:319.920000pt;}
.x2f_c01057{left:320.985333pt;}
.x71_c01057{left:323.521333pt;}
.x5b_c01057{left:324.720000pt;}
.x32_c01057{left:326.162667pt;}
.x59_c01057{left:328.080000pt;}
.x24_c01057{left:330.134667pt;}
.x4c_c01057{left:333.840000pt;}
.x33_c01057{left:334.802667pt;}
.x63_c01057{left:336.106667pt;}
.x30_c01057{left:338.325333pt;}
.xc_c01057{left:339.328000pt;}
.x14_c01057{left:341.976753pt;}
.x6e_c01057{left:343.441333pt;}
.x51_c01057{left:344.400000pt;}
.x25_c01057{left:347.901333pt;}
.x57_c01057{left:349.440000pt;}
.x40_c01057{left:350.762667pt;}
.x1c_c01057{left:352.717333pt;}
.x6a_c01057{left:355.681333pt;}
.x4_c01057{left:357.762667pt;}
.xd_c01057{left:361.900000pt;}
.x38_c01057{left:365.377333pt;}
.x15_c01057{left:367.447040pt;}
.x76_c01057{left:370.561333pt;}
.x48_c01057{left:372.020612pt;}
.x29_c01057{left:373.341227pt;}
.x67_c01057{left:375.121333pt;}
.x52_c01057{left:377.760000pt;}
.x41_c01057{left:379.862667pt;}
.x58_c01057{left:383.760000pt;}
.x1d_c01057{left:386.314667pt;}
.x39_c01057{left:387.982667pt;}
.x5c_c01057{left:392.160000pt;}
.x64_c01057{left:394.420000pt;}
.xe_c01057{left:397.422667pt;}
.x53_c01057{left:400.320000pt;}
.x72_c01057{left:401.281333pt;}
.x42_c01057{left:405.544000pt;}
.x5d_c01057{left:407.520000pt;}
.x1e_c01057{left:414.150667pt;}
.x16_c01057{left:418.575613pt;}
.x3a_c01057{left:421.349333pt;}
.xf_c01057{left:422.620000pt;}
.x78_c01057{left:426.000000pt;}
.x68_c01057{left:434.641333pt;}
.x2a_c01057{left:438.138560pt;}
.x6b_c01057{left:445.681333pt;}
.x43_c01057{left:449.956000pt;}
.x77_c01057{left:452.161333pt;}
.x5e_c01057{left:453.360000pt;}
.x54_c01057{left:464.640000pt;}
.x44_c01057{left:481.400000pt;}
.x73_c01057{left:496.321333pt;}
.x79_c01057{left:498.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_c01058 {
    display:none;
  }
  .loading-indicator_c01058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01058 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01058 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01058" -> "#page-container .classname_c01058")
 */
.pf_c01058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01058 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01058 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01058 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01058 {overflow:visible;}
  }
}
.c_c01058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01058 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01058:after { /* webkit #35443 */
  content: '';
}
.t_c01058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01058 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01058 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01058 { /* info for Javascript */
  display:none;
}
.l_c01058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m75_c01058{transform:matrix(0.007460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007460,0.000000,0.000000,0.250000,0,0);}
.m35_c01058{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);}
.m2b_c01058{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);}
.m40_c01058{transform:matrix(0.011295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011295,0.000000,0.000000,0.250000,0,0);}
.ma6_c01058{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m12_c01058{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);}
.m4c_c01058{transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012875,0.000000,0.000000,0.250000,0,0);}
.m5b_c01058{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);}
.m42_c01058{transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);}
.m73_c01058{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);}
.m29_c01058{transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019480,0.000000,0.000000,0.250000,0,0);}
.mcd_c01058{transform:matrix(0.032275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032275,0.000000,0.000000,0.250000,0,0);}
.m80_c01058{transform:matrix(0.038380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038380,0.000000,0.000000,0.250000,0,0);}
.ma9_c01058{transform:matrix(0.054505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054505,0.000000,0.000000,0.250000,0,0);}
.m37_c01058{transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097635,0.000000,0.000000,0.250000,0,0);}
.m7d_c01058{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.mdf_c01058{transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);}
.mdd_c01058{transform:matrix(0.104645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104645,0.000000,0.000000,0.250000,0,0);}
.mdc_c01058{transform:matrix(0.119115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119115,0.000000,0.000000,0.250000,0,0);}
.m11_c01058{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);}
.m7c_c01058{transform:matrix(0.124490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124490,0.000000,0.000000,0.250000,0,0);}
.m8_c01058{transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132065,0.000000,0.000000,0.250000,0,0);}
.mc0_c01058{transform:matrix(0.134395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134395,0.000000,0.000000,0.250000,0,0);}
.m4d_c01058{transform:matrix(0.134630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134630,0.000000,0.000000,0.250000,0,0);}
.m3f_c01058{transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138055,0.000000,0.000000,0.250000,0,0);}
.m4b_c01058{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m45_c01058{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);}
.m4a_c01058{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);}
.mc9_c01058{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);}
.m0_c01058{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);}
.ma5_c01058{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m77_c01058{transform:matrix(0.155360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155360,0.000000,0.000000,0.250000,0,0);}
.m8e_c01058{transform:matrix(0.155390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155390,0.000000,0.000000,0.250000,0,0);}
.m83_c01058{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);}
.mb3_c01058{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);}
.ma2_c01058{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);}
.m23_c01058{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);}
.mde_c01058{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);}
.ma0_c01058{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_c01058{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);}
.maf_c01058{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);}
.m8d_c01058{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);}
.mb_c01058{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);}
.m98_c01058{transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169570,0.000000,0.000000,0.250000,0,0);}
.m82_c01058{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);}
.m97_c01058{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);}
.m91_c01058{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);}
.mc6_c01058{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);}
.ma3_c01058{transform:matrix(0.171155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171155,0.000000,0.000000,0.250000,0,0);}
.mb0_c01058{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);}
.mcb_c01058{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);}
.m22_c01058{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);}
.m9f_c01058{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);}
.m44_c01058{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);}
.m50_c01058{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);}
.mc8_c01058{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);}
.m52_c01058{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);}
.m31_c01058{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);}
.mc7_c01058{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);}
.m5_c01058{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);}
.m60_c01058{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m57_c01058{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);}
.m5f_c01058{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);}
.mb4_c01058{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);}
.mbd_c01058{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);}
.m48_c01058{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);}
.m5a_c01058{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);}
.m8f_c01058{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);}
.m3d_c01058{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);}
.m2d_c01058{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);}
.mca_c01058{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);}
.mc3_c01058{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);}
.m1c_c01058{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_c01058{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);}
.m96_c01058{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);}
.m3b_c01058{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);}
.m84_c01058{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);}
.m49_c01058{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);}
.m28_c01058{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);}
.m54_c01058{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);}
.mc5_c01058{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);}
.m56_c01058{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);}
.mbe_c01058{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);}
.mb5_c01058{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);}
.m8c_c01058{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);}
.m30_c01058{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);}
.m3e_c01058{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);}
.mbb_c01058{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);}
.m47_c01058{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);}
.ma1_c01058{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);}
.mad_c01058{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);}
.mae_c01058{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);}
.m90_c01058{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);}
.mba_c01058{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);}
.m2f_c01058{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);}
.m8b_c01058{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);}
.m46_c01058{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);}
.mb2_c01058{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);}
.mbf_c01058{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);}
.m59_c01058{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);}
.m16_c01058{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);}
.mc1_c01058{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);}
.m15_c01058{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);}
.mbc_c01058{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);}
.mb7_c01058{transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201765,0.000000,0.000000,0.250000,0,0);}
.m51_c01058{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);}
.md9_c01058{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);}
.ma7_c01058{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);}
.md7_c01058{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);}
.me_c01058{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);}
.m9a_c01058{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);}
.m1f_c01058{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);}
.m2e_c01058{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);}
.m19_c01058{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);}
.m95_c01058{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);}
.m61_c01058{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);}
.mc_c01058{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);}
.m99_c01058{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);}
.mdb_c01058{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);}
.m21_c01058{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);}
.mc4_c01058{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);}
.m1e_c01058{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);}
.me6_c01058{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);}
.m81_c01058{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);}
.m6d_c01058{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);}
.m3a_c01058{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);}
.mb6_c01058{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);}
.m43_c01058{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);}
.m20_c01058{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);}
.md0_c01058{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);}
.m85_c01058{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);}
.mb1_c01058{transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215990,0.000000,0.000000,0.250000,0,0);}
.m9b_c01058{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);}
.md8_c01058{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);}
.me0_c01058{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);}
.m4e_c01058{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);}
.ma_c01058{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);}
.m94_c01058{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);}
.m76_c01058{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);}
.m53_c01058{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);}
.m24_c01058{transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222635,0.000000,0.000000,0.250000,0,0);}
.mb9_c01058{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);}
.m6e_c01058{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);}
.m1d_c01058{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);}
.m89_c01058{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);}
.md2_c01058{transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);}
.mcf_c01058{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m3c_c01058{transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230490,0.000000,0.000000,0.250000,0,0);}
.m5e_c01058{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);}
.m62_c01058{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);}
.m88_c01058{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);}
.mf_c01058{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);}
.m39_c01058{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);}
.m5d_c01058{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);}
.m32_c01058{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);}
.mda_c01058{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);}
.m17_c01058{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);}
.md1_c01058{transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);}
.m7a_c01058{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);}
.md_c01058{transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);}
.m4f_c01058{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);}
.m86_c01058{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m63_c01058{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);}
.mce_c01058{transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);}
.m4_c01058{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);}
.m7e_c01058{transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);}
.m6_c01058{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);}
.m64_c01058{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);}
.me1_c01058{transform:matrix(0.264260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264260,0.000000,0.000000,0.250000,0,0);}
.m7b_c01058{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);}
.m2c_c01058{transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);}
.me4_c01058{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.m9_c01058{transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272065,0.000000,0.000000,0.250000,0,0);}
.md3_c01058{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);}
.m25_c01058{transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273210,0.000000,0.000000,0.250000,0,0);}
.mac_c01058{transform:matrix(0.274230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274230,0.000000,0.000000,0.250000,0,0);}
.md4_c01058{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);}
.m34_c01058{transform:matrix(0.281820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281820,0.000000,0.000000,0.250000,0,0);}
.m68_c01058{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);}
.me3_c01058{transform:matrix(0.292635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292635,0.000000,0.000000,0.250000,0,0);}
.m10_c01058{transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);}
.m74_c01058{transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);}
.m27_c01058{transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307890,0.000000,0.000000,0.250000,0,0);}
.m9c_c01058{transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311060,0.000000,0.000000,0.250000,0,0);}
.m8a_c01058{transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316485,0.000000,0.000000,0.250000,0,0);}
.m2a_c01058{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m14_c01058{transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320790,0.000000,0.000000,0.250000,0,0);}
.maa_c01058{transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);}
.m26_c01058{transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330230,0.000000,0.000000,0.250000,0,0);}
.m33_c01058{transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337435,0.000000,0.000000,0.250000,0,0);}
.m79_c01058{transform:matrix(0.341345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341345,0.000000,0.000000,0.250000,0,0);}
.m2_c01058{transform:matrix(0.341830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341830,0.000000,0.000000,0.250000,0,0);}
.me2_c01058{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);}
.md5_c01058{transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343215,0.000000,0.000000,0.250000,0,0);}
.m5c_c01058{transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346200,0.000000,0.000000,0.250000,0,0);}
.ma8_c01058{transform:matrix(0.348560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348560,0.000000,0.000000,0.250000,0,0);}
.m1b_c01058{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);}
.m18_c01058{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);}
.m9e_c01058{transform:matrix(0.375435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375435,0.000000,0.000000,0.250000,0,0);}
.m38_c01058{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m41_c01058{transform:matrix(0.388515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388515,0.000000,0.000000,0.250000,0,0);}
.m3_c01058{transform:matrix(0.394875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394875,0.000000,0.000000,0.250000,0,0);}
.m67_c01058{transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);}
.me5_c01058{transform:matrix(0.402625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402625,0.000000,0.000000,0.250000,0,0);}
.m7_c01058{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m71_c01058{transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415855,0.000000,0.000000,0.250000,0,0);}
.m36_c01058{transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422370,0.000000,0.000000,0.250000,0,0);}
.m9d_c01058{transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434060,0.000000,0.000000,0.250000,0,0);}
.m66_c01058{transform:matrix(0.440100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440100,0.000000,0.000000,0.250000,0,0);}
.m87_c01058{transform:matrix(0.440695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440695,0.000000,0.000000,0.250000,0,0);}
.m6f_c01058{transform:matrix(0.443505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443505,0.000000,0.000000,0.250000,0,0);}
.m6c_c01058{transform:matrix(0.444790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444790,0.000000,0.000000,0.250000,0,0);}
.m6b_c01058{transform:matrix(0.452280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452280,0.000000,0.000000,0.250000,0,0);}
.m92_c01058{transform:matrix(0.458510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458510,0.000000,0.000000,0.250000,0,0);}
.m6a_c01058{transform:matrix(0.462795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462795,0.000000,0.000000,0.250000,0,0);}
.m69_c01058{transform:matrix(0.470895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470895,0.000000,0.000000,0.250000,0,0);}
.mb8_c01058{transform:matrix(0.481140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481140,0.000000,0.000000,0.250000,0,0);}
.mab_c01058{transform:matrix(0.487700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487700,0.000000,0.000000,0.250000,0,0);}
.m78_c01058{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);}
.m93_c01058{transform:matrix(0.530675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530675,0.000000,0.000000,0.250000,0,0);}
.m13_c01058{transform:matrix(0.538315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538315,0.000000,0.000000,0.250000,0,0);}
.m1a_c01058{transform:matrix(0.554075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554075,0.000000,0.000000,0.250000,0,0);}
.mc2_c01058{transform:matrix(0.660480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660480,0.000000,0.000000,0.250000,0,0);}
.m72_c01058{transform:matrix(0.660515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660515,0.000000,0.000000,0.250000,0,0);}
.m1_c01058{transform:matrix(0.689625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689625,0.000000,0.000000,0.250000,0,0);}
.mcc_c01058{transform:matrix(0.782070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782070,0.000000,0.000000,0.250000,0,0);}
.m65_c01058{transform:matrix(0.806420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806420,0.000000,0.000000,0.250000,0,0);}
.m7f_c01058{transform:matrix(0.832445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832445,0.000000,0.000000,0.250000,0,0);}
.m58_c01058{transform:matrix(0.900620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900620,0.000000,0.000000,0.250000,0,0);}
.m70_c01058{transform:matrix(0.962340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962340,0.000000,0.000000,0.250000,0,0);}
.md6_c01058{transform:matrix(1.185710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185710,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls0_c01058{letter-spacing:0.000000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:0.000000px;}
._0_c01058{width:161.348009px;}
.fc0_c01058{color:transparent;}
.fs16_c01058{font-size:28.350000px;}
.fs2_c01058{font-size:39.900000px;}
.fsc_c01058{font-size:43.050000px;}
.fs15_c01058{font-size:49.350000px;}
.fs13_c01058{font-size:54.600000px;}
.fs12_c01058{font-size:60.900000px;}
.fs3_c01058{font-size:61.950000px;}
.fs10_c01058{font-size:64.050000px;}
.fsd_c01058{font-size:65.100000px;}
.fs4_c01058{font-size:66.150000px;}
.fs7_c01058{font-size:67.200000px;}
.fs0_c01058{font-size:69.300000px;}
.fs5_c01058{font-size:70.350000px;}
.fse_c01058{font-size:71.400000px;}
.fs11_c01058{font-size:72.450000px;}
.fs6_c01058{font-size:75.600000px;}
.fs8_c01058{font-size:79.800000px;}
.fsa_c01058{font-size:86.100000px;}
.fs1_c01058{font-size:97.650000px;}
.fsf_c01058{font-size:98.700000px;}
.fs9_c01058{font-size:100.800000px;}
.fs14_c01058{font-size:106.050000px;}
.fsb_c01058{font-size:114.450000px;}
.y0_c01058{bottom:0.000000px;}
.y2d_c01058{bottom:78.300000px;}
.y2c_c01058{bottom:123.994500px;}
.y2b_c01058{bottom:152.617500px;}
.y2a_c01058{bottom:177.706500px;}
.y29_c01058{bottom:227.088000px;}
.y28_c01058{bottom:249.523500px;}
.y27_c01058{bottom:272.697000px;}
.y26_c01058{bottom:295.692000px;}
.y25_c01058{bottom:319.753500px;}
.y24_c01058{bottom:342.163500px;}
.y23_c01058{bottom:364.554000px;}
.y22_c01058{bottom:388.678500px;}
.y21_c01058{bottom:410.371500px;}
.y20_c01058{bottom:419.620500px;}
.y1f_c01058{bottom:430.846500px;}
.y1e_c01058{bottom:432.282000px;}
.y1d_c01058{bottom:432.421500px;}
.y1c_c01058{bottom:432.790500px;}
.y1b_c01058{bottom:432.928500px;}
.y1a_c01058{bottom:433.291500px;}
.y19_c01058{bottom:434.157000px;}
.y18_c01058{bottom:479.859000px;}
.y17_c01058{bottom:514.488000px;}
.y16_c01058{bottom:515.275500px;}
.y15_c01058{bottom:515.494500px;}
.y14_c01058{bottom:516.655500px;}
.y13_c01058{bottom:517.854000px;}
.y12_c01058{bottom:518.400000px;}
.y11_c01058{bottom:558.586500px;}
.y10_c01058{bottom:629.346000px;}
.yf_c01058{bottom:648.475500px;}
.ye_c01058{bottom:673.440000px;}
.yd_c01058{bottom:696.076500px;}
.yc_c01058{bottom:719.227500px;}
.y8_c01058{bottom:739.933500px;}
.y9_c01058{bottom:740.563500px;}
.ya_c01058{bottom:742.684500px;}
.yb_c01058{bottom:744.964500px;}
.y7_c01058{bottom:764.752500px;}
.y6_c01058{bottom:787.564500px;}
.y5_c01058{bottom:809.829000px;}
.y4_c01058{bottom:833.967000px;}
.y3_c01058{bottom:850.374000px;}
.y2_c01058{bottom:877.330500px;}
.y1_c01058{bottom:940.834500px;}
.h18_c01058{height:28.350000px;}
.h4_c01058{height:39.900000px;}
.he_c01058{height:43.050000px;}
.h17_c01058{height:49.350000px;}
.h15_c01058{height:54.600000px;}
.h14_c01058{height:60.900000px;}
.h5_c01058{height:61.950000px;}
.h12_c01058{height:64.050000px;}
.hf_c01058{height:65.100000px;}
.h6_c01058{height:66.150000px;}
.h9_c01058{height:67.200000px;}
.h2_c01058{height:69.300000px;}
.h7_c01058{height:70.350000px;}
.h10_c01058{height:71.400000px;}
.h13_c01058{height:72.450000px;}
.h8_c01058{height:75.600000px;}
.ha_c01058{height:79.800000px;}
.hc_c01058{height:86.100000px;}
.h3_c01058{height:97.650000px;}
.h11_c01058{height:98.700000px;}
.hb_c01058{height:100.800000px;}
.h16_c01058{height:106.050000px;}
.hd_c01058{height:114.450000px;}
.h1_c01058{height:1005.000000px;}
.h0_c01058{height:1005.150000px;}
.w0_c01058{width:715.200000px;}
.w1_c01058{width:715.500000px;}
.x0_c01058{left:0.000000px;}
.x55_c01058{left:66.138000px;}
.x60_c01058{left:67.773000px;}
.x52_c01058{left:72.091500px;}
.x5b_c01058{left:73.342500px;}
.x7e_c01058{left:75.063000px;}
.x77_c01058{left:81.003000px;}
.x89_c01058{left:122.313000px;}
.x67_c01058{left:132.843000px;}
.x85_c01058{left:142.293000px;}
.x56_c01058{left:144.066000px;}
.x8a_c01058{left:148.233000px;}
.xb_c01058{left:150.120000px;}
.x14_c01058{left:152.010000px;}
.x36_c01058{left:156.871500px;}
.x1e_c01058{left:157.950000px;}
.x2a_c01058{left:163.890000px;}
.x8b_c01058{left:170.643000px;}
.x78_c01058{left:178.743000px;}
.x86_c01058{left:181.983000px;}
.x15_c01058{left:189.270000px;}
.x9_c01058{left:192.510000px;}
.x68_c01058{left:194.403000px;}
.x3f_c01058{left:196.561500px;}
.x4b_c01058{left:198.451500px;}
.x37_c01058{left:201.421500px;}
.x1_c01058{left:205.200000px;}
.x4_c01058{left:209.790000px;}
.x8e_c01058{left:211.953000px;}
.x1f_c01058{left:216.270000px;}
.x5c_c01058{left:217.587000px;}
.x40_c01058{left:220.591500px;}
.x46_c01058{left:222.481500px;}
.x2b_c01058{left:226.800000px;}
.x16_c01058{left:228.420000px;}
.x6c_c01058{left:232.203000px;}
.x8c_c01058{left:234.363000px;}
.x20_c01058{left:237.330000px;}
.xc_c01058{left:238.680000px;}
.x2c_c01058{left:241.650000px;}
.x76_c01058{left:243.813000px;}
.x41_c01058{left:244.891500px;}
.x71_c01058{left:245.973000px;}
.x2_c01058{left:250.290000px;}
.x32_c01058{left:252.189000px;}
.x53_c01058{left:256.501500px;}
.x79_c01058{left:260.283000px;}
.x87_c01058{left:262.173000px;}
.x72_c01058{left:267.303000px;}
.x4d_c01058{left:268.381500px;}
.x38_c01058{left:271.081500px;}
.x8f_c01058{left:274.323000px;}
.x6d_c01058{left:275.673000px;}
.x5d_c01058{left:278.026500px;}
.x69_c01058{left:282.153000px;}
.x8d_c01058{left:283.773000px;}
.x7f_c01058{left:286.743000px;}
.x17_c01058{left:288.360000px;}
.x2d_c01058{left:294.300000px;}
.x47_c01058{left:296.731500px;}
.xd_c01058{left:298.890000px;}
.x33_c01058{left:300.700500px;}
.x21_c01058{left:302.670000px;}
.x57_c01058{left:315.229500px;}
.x2e_c01058{left:318.870000px;}
.x6e_c01058{left:319.953000px;}
.xe_c01058{left:325.350000px;}
.x18_c01058{left:328.860000px;}
.x39_c01058{left:331.561500px;}
.x73_c01058{left:335.883000px;}
.x22_c01058{left:339.120000px;}
.x19_c01058{left:343.710000px;}
.x42_c01058{left:353.161500px;}
.x7a_c01058{left:355.053000px;}
.x23_c01058{left:356.940000px;}
.x4e_c01058{left:359.101500px;}
.x82_c01058{left:361.263000px;}
.x5e_c01058{left:362.524500px;}
.x48_c01058{left:364.501500px;}
.x3a_c01058{left:368.821500px;}
.x61_c01058{left:378.003000px;}
.x2f_c01058{left:382.050000px;}
.xf_c01058{left:383.940000px;}
.x5f_c01058{left:385.729500px;}
.x1a_c01058{left:386.910000px;}
.x24_c01058{left:391.230000px;}
.x4f_c01058{left:392.581500px;}
.x7b_c01058{left:393.933000px;}
.x90_c01058{left:397.443000px;}
.x43_c01058{left:399.601500px;}
.x80_c01058{left:401.493000px;}
.x10_c01058{left:403.650000px;}
.x3b_c01058{left:406.891500px;}
.x5_c01058{left:413.100000px;}
.x74_c01058{left:416.613000px;}
.x49_c01058{left:418.231500px;}
.x30_c01058{left:421.470000px;}
.x50_c01058{left:422.551500px;}
.x25_c01058{left:424.170000px;}
.x3_c01058{left:427.950000px;}
.x4c_c01058{left:430.651500px;}
.x6f_c01058{left:432.273000px;}
.x62_c01058{left:435.783000px;}
.x7c_c01058{left:437.403000px;}
.x1b_c01058{left:438.480000px;}
.x26_c01058{left:439.560000px;}
.x51_c01058{left:446.041500px;}
.x31_c01058{left:447.390000px;}
.x1c_c01058{left:449.820000px;}
.x27_c01058{left:457.650000px;}
.x44_c01058{left:460.621500px;}
.x4a_c01058{left:462.241500px;}
.x34_c01058{left:463.837500px;}
.x64_c01058{left:470.883000px;}
.x7d_c01058{left:479.793000px;}
.x58_c01058{left:481.012500px;}
.x11_c01058{left:486.000000px;}
.x65_c01058{left:489.513000px;}
.x83_c01058{left:493.563000px;}
.x6_c01058{left:497.070000px;}
.x6a_c01058{left:500.583000px;}
.x81_c01058{left:506.523000px;}
.x59_c01058{left:512.332500px;}
.x28_c01058{left:514.620000px;}
.x63_c01058{left:515.703000px;}
.x12_c01058{left:518.130000px;}
.x91_c01058{left:520.023000px;}
.x54_c01058{left:523.801500px;}
.x6b_c01058{left:529.203000px;}
.x66_c01058{left:533.523000px;}
.x70_c01058{left:536.493000px;}
.x88_c01058{left:545.403000px;}
.x84_c01058{left:547.293000px;}
.x3c_c01058{left:556.741500px;}
.x45_c01058{left:561.601500px;}
.x7_c01058{left:564.570000px;}
.x3d_c01058{left:583.201500px;}
.x13_c01058{left:621.540000px;}
.x8_c01058{left:624.780000px;}
.x75_c01058{left:627.483000px;}
.x29_c01058{left:629.370000px;}
.x1d_c01058{left:630.450000px;}
.xa_c01058{left:637.200000px;}
.x35_c01058{left:639.252000px;}
.x3e_c01058{left:647.191500px;}
.x5a_c01058{left:654.481500px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ws0_c01058{word-spacing:0.000000pt;}
._0_c01058{width:143.420453pt;}
.fs16_c01058{font-size:25.200000pt;}
.fs2_c01058{font-size:35.466667pt;}
.fsc_c01058{font-size:38.266667pt;}
.fs15_c01058{font-size:43.866667pt;}
.fs13_c01058{font-size:48.533333pt;}
.fs12_c01058{font-size:54.133333pt;}
.fs3_c01058{font-size:55.066667pt;}
.fs10_c01058{font-size:56.933333pt;}
.fsd_c01058{font-size:57.866667pt;}
.fs4_c01058{font-size:58.800000pt;}
.fs7_c01058{font-size:59.733333pt;}
.fs0_c01058{font-size:61.600000pt;}
.fs5_c01058{font-size:62.533333pt;}
.fse_c01058{font-size:63.466667pt;}
.fs11_c01058{font-size:64.400000pt;}
.fs6_c01058{font-size:67.200000pt;}
.fs8_c01058{font-size:70.933333pt;}
.fsa_c01058{font-size:76.533333pt;}
.fs1_c01058{font-size:86.800000pt;}
.fsf_c01058{font-size:87.733333pt;}
.fs9_c01058{font-size:89.600000pt;}
.fs14_c01058{font-size:94.266667pt;}
.fsb_c01058{font-size:101.733333pt;}
.y0_c01058{bottom:0.000000pt;}
.y2d_c01058{bottom:69.600000pt;}
.y2c_c01058{bottom:110.217333pt;}
.y2b_c01058{bottom:135.660000pt;}
.y2a_c01058{bottom:157.961333pt;}
.y29_c01058{bottom:201.856000pt;}
.y28_c01058{bottom:221.798667pt;}
.y27_c01058{bottom:242.397333pt;}
.y26_c01058{bottom:262.837333pt;}
.y25_c01058{bottom:284.225333pt;}
.y24_c01058{bottom:304.145333pt;}
.y23_c01058{bottom:324.048000pt;}
.y22_c01058{bottom:345.492000pt;}
.y21_c01058{bottom:364.774667pt;}
.y20_c01058{bottom:372.996000pt;}
.y1f_c01058{bottom:382.974667pt;}
.y1e_c01058{bottom:384.250667pt;}
.y1d_c01058{bottom:384.374667pt;}
.y1c_c01058{bottom:384.702667pt;}
.y1b_c01058{bottom:384.825333pt;}
.y1a_c01058{bottom:385.148000pt;}
.y19_c01058{bottom:385.917333pt;}
.y18_c01058{bottom:426.541333pt;}
.y17_c01058{bottom:457.322667pt;}
.y16_c01058{bottom:458.022667pt;}
.y15_c01058{bottom:458.217333pt;}
.y14_c01058{bottom:459.249333pt;}
.y13_c01058{bottom:460.314667pt;}
.y12_c01058{bottom:460.800000pt;}
.y11_c01058{bottom:496.521333pt;}
.y10_c01058{bottom:559.418667pt;}
.yf_c01058{bottom:576.422667pt;}
.ye_c01058{bottom:598.613333pt;}
.yd_c01058{bottom:618.734667pt;}
.yc_c01058{bottom:639.313333pt;}
.y8_c01058{bottom:657.718667pt;}
.y9_c01058{bottom:658.278667pt;}
.ya_c01058{bottom:660.164000pt;}
.yb_c01058{bottom:662.190667pt;}
.y7_c01058{bottom:679.780000pt;}
.y6_c01058{bottom:700.057333pt;}
.y5_c01058{bottom:719.848000pt;}
.y4_c01058{bottom:741.304000pt;}
.y3_c01058{bottom:755.888000pt;}
.y2_c01058{bottom:779.849333pt;}
.y1_c01058{bottom:836.297333pt;}
.h18_c01058{height:25.200000pt;}
.h4_c01058{height:35.466667pt;}
.he_c01058{height:38.266667pt;}
.h17_c01058{height:43.866667pt;}
.h15_c01058{height:48.533333pt;}
.h14_c01058{height:54.133333pt;}
.h5_c01058{height:55.066667pt;}
.h12_c01058{height:56.933333pt;}
.hf_c01058{height:57.866667pt;}
.h6_c01058{height:58.800000pt;}
.h9_c01058{height:59.733333pt;}
.h2_c01058{height:61.600000pt;}
.h7_c01058{height:62.533333pt;}
.h10_c01058{height:63.466667pt;}
.h13_c01058{height:64.400000pt;}
.h8_c01058{height:67.200000pt;}
.ha_c01058{height:70.933333pt;}
.hc_c01058{height:76.533333pt;}
.h3_c01058{height:86.800000pt;}
.h11_c01058{height:87.733333pt;}
.hb_c01058{height:89.600000pt;}
.h16_c01058{height:94.266667pt;}
.hd_c01058{height:101.733333pt;}
.h1_c01058{height:893.333333pt;}
.h0_c01058{height:893.466667pt;}
.w0_c01058{width:635.733333pt;}
.w1_c01058{width:636.000000pt;}
.x0_c01058{left:0.000000pt;}
.x55_c01058{left:58.789333pt;}
.x60_c01058{left:60.242667pt;}
.x52_c01058{left:64.081333pt;}
.x5b_c01058{left:65.193333pt;}
.x7e_c01058{left:66.722667pt;}
.x77_c01058{left:72.002667pt;}
.x89_c01058{left:108.722667pt;}
.x67_c01058{left:118.082667pt;}
.x85_c01058{left:126.482667pt;}
.x56_c01058{left:128.058667pt;}
.x8a_c01058{left:131.762667pt;}
.xb_c01058{left:133.440000pt;}
.x14_c01058{left:135.120000pt;}
.x36_c01058{left:139.441333pt;}
.x1e_c01058{left:140.400000pt;}
.x2a_c01058{left:145.680000pt;}
.x8b_c01058{left:151.682667pt;}
.x78_c01058{left:158.882667pt;}
.x86_c01058{left:161.762667pt;}
.x15_c01058{left:168.240000pt;}
.x9_c01058{left:171.120000pt;}
.x68_c01058{left:172.802667pt;}
.x3f_c01058{left:174.721333pt;}
.x4b_c01058{left:176.401333pt;}
.x37_c01058{left:179.041333pt;}
.x1_c01058{left:182.400000pt;}
.x4_c01058{left:186.480000pt;}
.x8e_c01058{left:188.402667pt;}
.x1f_c01058{left:192.240000pt;}
.x5c_c01058{left:193.410667pt;}
.x40_c01058{left:196.081333pt;}
.x46_c01058{left:197.761333pt;}
.x2b_c01058{left:201.600000pt;}
.x16_c01058{left:203.040000pt;}
.x6c_c01058{left:206.402667pt;}
.x8c_c01058{left:208.322667pt;}
.x20_c01058{left:210.960000pt;}
.xc_c01058{left:212.160000pt;}
.x2c_c01058{left:214.800000pt;}
.x76_c01058{left:216.722667pt;}
.x41_c01058{left:217.681333pt;}
.x71_c01058{left:218.642667pt;}
.x2_c01058{left:222.480000pt;}
.x32_c01058{left:224.168000pt;}
.x53_c01058{left:228.001333pt;}
.x79_c01058{left:231.362667pt;}
.x87_c01058{left:233.042667pt;}
.x72_c01058{left:237.602667pt;}
.x4d_c01058{left:238.561333pt;}
.x38_c01058{left:240.961333pt;}
.x8f_c01058{left:243.842667pt;}
.x6d_c01058{left:245.042667pt;}
.x5d_c01058{left:247.134667pt;}
.x69_c01058{left:250.802667pt;}
.x8d_c01058{left:252.242667pt;}
.x7f_c01058{left:254.882667pt;}
.x17_c01058{left:256.320000pt;}
.x2d_c01058{left:261.600000pt;}
.x47_c01058{left:263.761333pt;}
.xd_c01058{left:265.680000pt;}
.x33_c01058{left:267.289333pt;}
.x21_c01058{left:269.040000pt;}
.x57_c01058{left:280.204000pt;}
.x2e_c01058{left:283.440000pt;}
.x6e_c01058{left:284.402667pt;}
.xe_c01058{left:289.200000pt;}
.x18_c01058{left:292.320000pt;}
.x39_c01058{left:294.721333pt;}
.x73_c01058{left:298.562667pt;}
.x22_c01058{left:301.440000pt;}
.x19_c01058{left:305.520000pt;}
.x42_c01058{left:313.921333pt;}
.x7a_c01058{left:315.602667pt;}
.x23_c01058{left:317.280000pt;}
.x4e_c01058{left:319.201333pt;}
.x82_c01058{left:321.122667pt;}
.x5e_c01058{left:322.244000pt;}
.x48_c01058{left:324.001333pt;}
.x3a_c01058{left:327.841333pt;}
.x61_c01058{left:336.002667pt;}
.x2f_c01058{left:339.600000pt;}
.xf_c01058{left:341.280000pt;}
.x5f_c01058{left:342.870667pt;}
.x1a_c01058{left:343.920000pt;}
.x24_c01058{left:347.760000pt;}
.x4f_c01058{left:348.961333pt;}
.x7b_c01058{left:350.162667pt;}
.x90_c01058{left:353.282667pt;}
.x43_c01058{left:355.201333pt;}
.x80_c01058{left:356.882667pt;}
.x10_c01058{left:358.800000pt;}
.x3b_c01058{left:361.681333pt;}
.x5_c01058{left:367.200000pt;}
.x74_c01058{left:370.322667pt;}
.x49_c01058{left:371.761333pt;}
.x30_c01058{left:374.640000pt;}
.x50_c01058{left:375.601333pt;}
.x25_c01058{left:377.040000pt;}
.x3_c01058{left:380.400000pt;}
.x4c_c01058{left:382.801333pt;}
.x6f_c01058{left:384.242667pt;}
.x62_c01058{left:387.362667pt;}
.x7c_c01058{left:388.802667pt;}
.x1b_c01058{left:389.760000pt;}
.x26_c01058{left:390.720000pt;}
.x51_c01058{left:396.481333pt;}
.x31_c01058{left:397.680000pt;}
.x1c_c01058{left:399.840000pt;}
.x27_c01058{left:406.800000pt;}
.x44_c01058{left:409.441333pt;}
.x4a_c01058{left:410.881333pt;}
.x34_c01058{left:412.300000pt;}
.x64_c01058{left:418.562667pt;}
.x7d_c01058{left:426.482667pt;}
.x58_c01058{left:427.566667pt;}
.x11_c01058{left:432.000000pt;}
.x65_c01058{left:435.122667pt;}
.x83_c01058{left:438.722667pt;}
.x6_c01058{left:441.840000pt;}
.x6a_c01058{left:444.962667pt;}
.x81_c01058{left:450.242667pt;}
.x59_c01058{left:455.406667pt;}
.x28_c01058{left:457.440000pt;}
.x63_c01058{left:458.402667pt;}
.x12_c01058{left:460.560000pt;}
.x91_c01058{left:462.242667pt;}
.x54_c01058{left:465.601333pt;}
.x6b_c01058{left:470.402667pt;}
.x66_c01058{left:474.242667pt;}
.x70_c01058{left:476.882667pt;}
.x88_c01058{left:484.802667pt;}
.x84_c01058{left:486.482667pt;}
.x3c_c01058{left:494.881333pt;}
.x45_c01058{left:499.201333pt;}
.x7_c01058{left:501.840000pt;}
.x3d_c01058{left:518.401333pt;}
.x13_c01058{left:552.480000pt;}
.x8_c01058{left:555.360000pt;}
.x75_c01058{left:557.762667pt;}
.x29_c01058{left:559.440000pt;}
.x1d_c01058{left:560.400000pt;}
.xa_c01058{left:566.400000pt;}
.x35_c01058{left:568.224000pt;}
.x3e_c01058{left:575.281333pt;}
.x5a_c01058{left:581.761333pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.000000;font-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_c01059{transform:matrix(0.013220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013220,0.000000,0.000000,0.250000,0,0);}
.m1f_c01059{transform:matrix(0.014043,-0.000450,0.008004,0.249872,0,0);-ms-transform:matrix(0.014043,-0.000450,0.008004,0.249872,0,0);-webkit-transform:matrix(0.014043,-0.000450,0.008004,0.249872,0,0);}
.m85_c01059{transform:matrix(0.015584,-0.000156,0.002500,0.249988,0,0);-ms-transform:matrix(0.015584,-0.000156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.015584,-0.000156,0.002500,0.249988,0,0);}
.m6b_c01059{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);}
.m29_c01059{transform:matrix(0.023427,-0.000375,0.003999,0.249968,0,0);-ms-transform:matrix(0.023427,-0.000375,0.003999,0.249968,0,0);-webkit-transform:matrix(0.023427,-0.000375,0.003999,0.249968,0,0);}
.m42_c01059{transform:matrix(0.040195,-0.000643,0.003999,0.249968,0,0);-ms-transform:matrix(0.040195,-0.000643,0.003999,0.249968,0,0);-webkit-transform:matrix(0.040195,-0.000643,0.003999,0.249968,0,0);}
.mca_c01059{transform:matrix(0.052355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052355,0.000000,0.000000,0.250000,0,0);}
.mb0_c01059{transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088900,0.000000,0.000000,0.250000,0,0);}
.m3b_c01059{transform:matrix(0.090453,-0.001447,0.003999,0.249968,0,0);-ms-transform:matrix(0.090453,-0.001447,0.003999,0.249968,0,0);-webkit-transform:matrix(0.090453,-0.001447,0.003999,0.249968,0,0);}
.m3a_c01059{transform:matrix(0.101322,-0.001621,0.003999,0.249968,0,0);-ms-transform:matrix(0.101322,-0.001621,0.003999,0.249968,0,0);-webkit-transform:matrix(0.101322,-0.001621,0.003999,0.249968,0,0);}
.me8_c01059{transform:matrix(0.102490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102490,0.000000,0.000000,0.250000,0,0);}
.mea_c01059{transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);}
.m43_c01059{transform:matrix(0.120115,-0.001922,0.003999,0.249968,0,0);-ms-transform:matrix(0.120115,-0.001922,0.003999,0.249968,0,0);-webkit-transform:matrix(0.120115,-0.001922,0.003999,0.249968,0,0);}
.meb_c01059{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);}
.m16_c01059{transform:matrix(0.132575,-0.001989,0.003750,0.249972,0,0);-ms-transform:matrix(0.132575,-0.001989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.132575,-0.001989,0.003750,0.249972,0,0);}
.m69_c01059{transform:matrix(0.133335,-0.001600,0.003000,0.249982,0,0);-ms-transform:matrix(0.133335,-0.001600,0.003000,0.249982,0,0);-webkit-transform:matrix(0.133335,-0.001600,0.003000,0.249982,0,0);}
.m84_c01059{transform:matrix(0.138333,-0.001383,0.002500,0.249988,0,0);-ms-transform:matrix(0.138333,-0.001383,0.002500,0.249988,0,0);-webkit-transform:matrix(0.138333,-0.001383,0.002500,0.249988,0,0);}
.m9b_c01059{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m15_c01059{transform:matrix(0.143669,-0.002155,0.003750,0.249972,0,0);-ms-transform:matrix(0.143669,-0.002155,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143669,-0.002155,0.003750,0.249972,0,0);}
.mcf_c01059{transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143980,0.000000,0.000000,0.250000,0,0);}
.m72_c01059{transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144135,0.000000,0.000000,0.250000,0,0);}
.ma1_c01059{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);}
.m91_c01059{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);}
.m48_c01059{transform:matrix(0.151336,-0.002421,0.003999,0.249968,0,0);-ms-transform:matrix(0.151336,-0.002421,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151336,-0.002421,0.003999,0.249968,0,0);}
.ma7_c01059{transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151790,0.000000,0.000000,0.250000,0,0);}
.mb_c01059{transform:matrix(0.151828,-0.002277,0.003750,0.249972,0,0);-ms-transform:matrix(0.151828,-0.002277,0.003750,0.249972,0,0);-webkit-transform:matrix(0.151828,-0.002277,0.003750,0.249972,0,0);}
.m76_c01059{transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);}
.md6_c01059{transform:matrix(0.153327,0.001993,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153327,0.001993,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153327,0.001993,-0.003250,0.249979,0,0);}
.mc4_c01059{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);}
.m5e_c01059{transform:matrix(0.154404,-0.001853,0.003000,0.249982,0,0);-ms-transform:matrix(0.154404,-0.001853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154404,-0.001853,0.003000,0.249982,0,0);}
.mda_c01059{transform:matrix(0.154797,0.002012,-0.003250,0.249979,0,0);-ms-transform:matrix(0.154797,0.002012,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.154797,0.002012,-0.003250,0.249979,0,0);}
.m75_c01059{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);}
.m3d_c01059{transform:matrix(0.155755,-0.002492,0.003999,0.249968,0,0);-ms-transform:matrix(0.155755,-0.002492,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155755,-0.002492,0.003999,0.249968,0,0);}
.m83_c01059{transform:matrix(0.157247,-0.001572,0.002500,0.249988,0,0);-ms-transform:matrix(0.157247,-0.001572,0.002500,0.249988,0,0);-webkit-transform:matrix(0.157247,-0.001572,0.002500,0.249988,0,0);}
.m8f_c01059{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);}
.m4b_c01059{transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);-ms-transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158245,-0.002532,0.003999,0.249968,0,0);}
.ma_c01059{transform:matrix(0.158517,-0.002378,0.003750,0.249972,0,0);-ms-transform:matrix(0.158517,-0.002378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158517,-0.002378,0.003750,0.249972,0,0);}
.m6e_c01059{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);}
.m60_c01059{transform:matrix(0.160078,-0.001921,0.003000,0.249982,0,0);-ms-transform:matrix(0.160078,-0.001921,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160078,-0.001921,0.003000,0.249982,0,0);}
.mdc_c01059{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);}
.m80_c01059{transform:matrix(0.161197,-0.001612,0.002500,0.249988,0,0);-ms-transform:matrix(0.161197,-0.001612,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161197,-0.001612,0.002500,0.249988,0,0);}
.ma4_c01059{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);}
.mbb_c01059{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);}
.m79_c01059{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);}
.me9_c01059{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);}
.md5_c01059{transform:matrix(0.164471,0.002138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164471,0.002138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164471,0.002138,-0.003250,0.249979,0,0);}
.m95_c01059{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);}
.mc2_c01059{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);}
.m5_c01059{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);}
.m4_c01059{transform:matrix(0.169161,-0.002537,0.003750,0.249972,0,0);-ms-transform:matrix(0.169161,-0.002537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169161,-0.002537,0.003750,0.249972,0,0);}
.md7_c01059{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);}
.m67_c01059{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);}
.m30_c01059{transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);-ms-transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170343,-0.002725,0.003999,0.249968,0,0);}
.m74_c01059{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);}
.m8b_c01059{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);}
.m64_c01059{transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);}
.m1c_c01059{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);}
.md9_c01059{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);}
.m45_c01059{transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);-ms-transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173943,-0.002783,0.003999,0.249968,0,0);}
.m5f_c01059{transform:matrix(0.174157,-0.002090,0.003000,0.249982,0,0);-ms-transform:matrix(0.174157,-0.002090,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174157,-0.002090,0.003000,0.249982,0,0);}
.m6a_c01059{transform:matrix(0.174222,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174222,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174222,-0.002091,0.003000,0.249982,0,0);}
.m27_c01059{transform:matrix(0.174401,-0.005586,0.008004,0.249872,0,0);-ms-transform:matrix(0.174401,-0.005586,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174401,-0.005586,0.008004,0.249872,0,0);}
.m70_c01059{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);}
.mb2_c01059{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);}
.m3e_c01059{transform:matrix(0.175233,-0.002804,0.003999,0.249968,0,0);-ms-transform:matrix(0.175233,-0.002804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175233,-0.002804,0.003999,0.249968,0,0);}
.mce_c01059{transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175440,0.000000,0.000000,0.250000,0,0);}
.m38_c01059{transform:matrix(0.175763,-0.002812,0.003999,0.249968,0,0);-ms-transform:matrix(0.175763,-0.002812,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175763,-0.002812,0.003999,0.249968,0,0);}
.m28_c01059{transform:matrix(0.175905,-0.005635,0.008004,0.249872,0,0);-ms-transform:matrix(0.175905,-0.005635,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175905,-0.005635,0.008004,0.249872,0,0);}
.m96_c01059{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);}
.md4_c01059{transform:matrix(0.176500,0.002295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176500,0.002295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176500,0.002295,-0.003250,0.249979,0,0);}
.m68_c01059{transform:matrix(0.176792,-0.002122,0.003000,0.249982,0,0);-ms-transform:matrix(0.176792,-0.002122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176792,-0.002122,0.003000,0.249982,0,0);}
.m9_c01059{transform:matrix(0.176795,-0.002652,0.003750,0.249972,0,0);-ms-transform:matrix(0.176795,-0.002652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176795,-0.002652,0.003750,0.249972,0,0);}
.m5c_c01059{transform:matrix(0.177417,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177417,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177417,-0.002129,0.003000,0.249982,0,0);}
.m8c_c01059{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);}
.m63_c01059{transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);-ms-transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);-webkit-transform:matrix(0.178287,-0.002139,0.003000,0.249982,0,0);}
.me0_c01059{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);}
.m24_c01059{transform:matrix(0.178828,-0.005728,0.008004,0.249872,0,0);-ms-transform:matrix(0.178828,-0.005728,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178828,-0.005728,0.008004,0.249872,0,0);}
.m2c_c01059{transform:matrix(0.179402,-0.002870,0.003999,0.249968,0,0);-ms-transform:matrix(0.179402,-0.002870,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179402,-0.002870,0.003999,0.249968,0,0);}
.m6d_c01059{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);}
.m13_c01059{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);}
.m17_c01059{transform:matrix(0.180505,-0.002708,0.003750,0.249972,0,0);-ms-transform:matrix(0.180505,-0.002708,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180505,-0.002708,0.003750,0.249972,0,0);}
.mdd_c01059{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);}
.m5d_c01059{transform:matrix(0.180937,-0.002171,0.003000,0.249982,0,0);-ms-transform:matrix(0.180937,-0.002171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180937,-0.002171,0.003000,0.249982,0,0);}
.m9f_c01059{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);}
.m89_c01059{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);}
.md1_c01059{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);}
.m52_c01059{transform:matrix(0.182897,-0.002195,0.003000,0.249982,0,0);-ms-transform:matrix(0.182897,-0.002195,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182897,-0.002195,0.003000,0.249982,0,0);}
.m7_c01059{transform:matrix(0.183034,-0.002746,0.003750,0.249972,0,0);-ms-transform:matrix(0.183034,-0.002746,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183034,-0.002746,0.003750,0.249972,0,0);}
.m39_c01059{transform:matrix(0.183297,-0.002933,0.003999,0.249968,0,0);-ms-transform:matrix(0.183297,-0.002933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183297,-0.002933,0.003999,0.249968,0,0);}
.m21_c01059{transform:matrix(0.183621,-0.005882,0.008004,0.249872,0,0);-ms-transform:matrix(0.183621,-0.005882,0.008004,0.249872,0,0);-webkit-transform:matrix(0.183621,-0.005882,0.008004,0.249872,0,0);}
.m2f_c01059{transform:matrix(0.183976,-0.002944,0.003999,0.249968,0,0);-ms-transform:matrix(0.183976,-0.002944,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183976,-0.002944,0.003999,0.249968,0,0);}
.mc7_c01059{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);}
.ma9_c01059{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);}
.m98_c01059{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);}
.maa_c01059{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);}
.me1_c01059{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);}
.mc6_c01059{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);}
.m82_c01059{transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185101,-0.001851,0.002500,0.249988,0,0);}
.m8_c01059{transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);-ms-transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186294,-0.002794,0.003750,0.249972,0,0);}
.m71_c01059{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);}
.mde_c01059{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);}
.me5_c01059{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);}
.mb6_c01059{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);}
.m99_c01059{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);}
.ma8_c01059{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);}
.ma6_c01059{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);}
.m93_c01059{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);}
.mbe_c01059{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);}
.m2b_c01059{transform:matrix(0.190516,-0.003048,0.003999,0.249968,0,0);-ms-transform:matrix(0.190516,-0.003048,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190516,-0.003048,0.003999,0.249968,0,0);}
.m6_c01059{transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);-ms-transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191383,-0.002871,0.003750,0.249972,0,0);}
.me6_c01059{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);}
.mb1_c01059{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);}
.m66_c01059{transform:matrix(0.192066,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192066,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192066,-0.002305,0.003000,0.249982,0,0);}
.mab_c01059{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);}
.m41_c01059{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);}
.mdf_c01059{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);}
.mb9_c01059{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);}
.ma0_c01059{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);}
.mb7_c01059{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);}
.md0_c01059{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);}
.mf_c01059{transform:matrix(0.194083,-0.002911,0.003750,0.249972,0,0);-ms-transform:matrix(0.194083,-0.002911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194083,-0.002911,0.003750,0.249972,0,0);}
.m78_c01059{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);}
.m3_c01059{transform:matrix(0.195118,-0.002927,0.003750,0.249972,0,0);-ms-transform:matrix(0.195118,-0.002927,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195118,-0.002927,0.003750,0.249972,0,0);}
.md_c01059{transform:matrix(0.195183,-0.002928,0.003750,0.249972,0,0);-ms-transform:matrix(0.195183,-0.002928,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195183,-0.002928,0.003750,0.249972,0,0);}
.m7a_c01059{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);}
.m65_c01059{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);}
.mbc_c01059{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);}
.m90_c01059{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);}
.m22_c01059{transform:matrix(0.196274,-0.006287,0.008004,0.249872,0,0);-ms-transform:matrix(0.196274,-0.006287,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196274,-0.006287,0.008004,0.249872,0,0);}
.m50_c01059{transform:matrix(0.197491,-0.002370,0.003000,0.249982,0,0);-ms-transform:matrix(0.197491,-0.002370,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197491,-0.002370,0.003000,0.249982,0,0);}
.m88_c01059{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);}
.m49_c01059{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);}
.m7b_c01059{transform:matrix(0.198125,-0.001981,0.002500,0.249988,0,0);-ms-transform:matrix(0.198125,-0.001981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198125,-0.001981,0.002500,0.249988,0,0);}
.m61_c01059{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);}
.mb5_c01059{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);}
.m2d_c01059{transform:matrix(0.199934,-0.003199,0.003999,0.249968,0,0);-ms-transform:matrix(0.199934,-0.003199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199934,-0.003199,0.003999,0.249968,0,0);}
.m87_c01059{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);}
.mc5_c01059{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);}
.m3f_c01059{transform:matrix(0.200199,-0.003203,0.003999,0.249968,0,0);-ms-transform:matrix(0.200199,-0.003203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200199,-0.003203,0.003999,0.249968,0,0);}
.m77_c01059{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);}
.m33_c01059{transform:matrix(0.200264,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200264,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200264,-0.003204,0.003999,0.249968,0,0);}
.m9e_c01059{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);}
.mbd_c01059{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);}
.m25_c01059{transform:matrix(0.201322,-0.006449,0.008004,0.249872,0,0);-ms-transform:matrix(0.201322,-0.006449,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201322,-0.006449,0.008004,0.249872,0,0);}
.m9d_c01059{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_c01059{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);}
.md3_c01059{transform:matrix(0.203983,0.002652,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203983,0.002652,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203983,0.002652,-0.003250,0.249979,0,0);}
.m37_c01059{transform:matrix(0.204084,-0.003265,0.003999,0.249968,0,0);-ms-transform:matrix(0.204084,-0.003265,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204084,-0.003265,0.003999,0.249968,0,0);}
.m19_c01059{transform:matrix(0.204247,-0.003064,0.003750,0.249972,0,0);-ms-transform:matrix(0.204247,-0.003064,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204247,-0.003064,0.003750,0.249972,0,0);}
.m97_c01059{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);}
.mcd_c01059{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);}
.md2_c01059{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);}
.mcc_c01059{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);}
.m5b_c01059{transform:matrix(0.209285,-0.002511,0.003000,0.249982,0,0);-ms-transform:matrix(0.209285,-0.002511,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209285,-0.002511,0.003000,0.249982,0,0);}
.md8_c01059{transform:matrix(0.209582,0.002725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209582,0.002725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209582,0.002725,-0.003250,0.249979,0,0);}
.m8d_c01059{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m73_c01059{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);}
.m12_c01059{transform:matrix(0.210811,-0.003162,0.003750,0.249972,0,0);-ms-transform:matrix(0.210811,-0.003162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210811,-0.003162,0.003750,0.249972,0,0);}
.m1d_c01059{transform:matrix(0.211161,-0.003167,0.003750,0.249972,0,0);-ms-transform:matrix(0.211161,-0.003167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211161,-0.003167,0.003750,0.249972,0,0);}
.m36_c01059{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);}
.mc0_c01059{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m46_c01059{transform:matrix(0.212033,-0.003393,0.003999,0.249968,0,0);-ms-transform:matrix(0.212033,-0.003393,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212033,-0.003393,0.003999,0.249968,0,0);}
.m23_c01059{transform:matrix(0.212491,-0.006807,0.008004,0.249872,0,0);-ms-transform:matrix(0.212491,-0.006807,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212491,-0.006807,0.008004,0.249872,0,0);}
.m44_c01059{transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);-ms-transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212588,-0.003401,0.003999,0.249968,0,0);}
.m6f_c01059{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);}
.m26_c01059{transform:matrix(0.213201,-0.006829,0.008004,0.249872,0,0);-ms-transform:matrix(0.213201,-0.006829,0.008004,0.249872,0,0);-webkit-transform:matrix(0.213201,-0.006829,0.008004,0.249872,0,0);}
.m14_c01059{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);}
.m59_c01059{transform:matrix(0.214380,-0.002573,0.003000,0.249982,0,0);-ms-transform:matrix(0.214380,-0.002573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214380,-0.002573,0.003000,0.249982,0,0);}
.m6c_c01059{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);}
.m9a_c01059{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m7c_c01059{transform:matrix(0.216469,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216469,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216469,-0.002165,0.002500,0.249988,0,0);}
.m2e_c01059{transform:matrix(0.217347,-0.003478,0.003999,0.249968,0,0);-ms-transform:matrix(0.217347,-0.003478,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217347,-0.003478,0.003999,0.249968,0,0);}
.m54_c01059{transform:matrix(0.217714,-0.002613,0.003000,0.249982,0,0);-ms-transform:matrix(0.217714,-0.002613,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217714,-0.002613,0.003000,0.249982,0,0);}
.mc8_c01059{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);}
.mc_c01059{transform:matrix(0.220060,-0.003301,0.003750,0.249972,0,0);-ms-transform:matrix(0.220060,-0.003301,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220060,-0.003301,0.003750,0.249972,0,0);}
.m20_c01059{transform:matrix(0.220247,-0.007055,0.008004,0.249872,0,0);-ms-transform:matrix(0.220247,-0.007055,0.008004,0.249872,0,0);-webkit-transform:matrix(0.220247,-0.007055,0.008004,0.249872,0,0);}
.m32_c01059{transform:matrix(0.220542,-0.003529,0.003999,0.249968,0,0);-ms-transform:matrix(0.220542,-0.003529,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220542,-0.003529,0.003999,0.249968,0,0);}
.me2_c01059{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);}
.mc9_c01059{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);}
.m11_c01059{transform:matrix(0.223225,-0.003348,0.003750,0.249972,0,0);-ms-transform:matrix(0.223225,-0.003348,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223225,-0.003348,0.003750,0.249972,0,0);}
.maf_c01059{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);}
.me7_c01059{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m2a_c01059{transform:matrix(0.224266,-0.003588,0.003999,0.249968,0,0);-ms-transform:matrix(0.224266,-0.003588,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224266,-0.003588,0.003999,0.249968,0,0);}
.m31_c01059{transform:matrix(0.224476,-0.003592,0.003999,0.249968,0,0);-ms-transform:matrix(0.224476,-0.003592,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224476,-0.003592,0.003999,0.249968,0,0);}
.mbf_c01059{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);}
.me4_c01059{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);}
.mc3_c01059{transform:matrix(0.227085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227085,0.000000,0.000000,0.250000,0,0);}
.m3c_c01059{transform:matrix(0.229851,-0.003678,0.003999,0.249968,0,0);-ms-transform:matrix(0.229851,-0.003678,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229851,-0.003678,0.003999,0.249968,0,0);}
.m94_c01059{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);}
.mb3_c01059{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);}
.m62_c01059{transform:matrix(0.232518,-0.002790,0.003000,0.249982,0,0);-ms-transform:matrix(0.232518,-0.002790,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232518,-0.002790,0.003000,0.249982,0,0);}
.m10_c01059{transform:matrix(0.232714,-0.003491,0.003750,0.249972,0,0);-ms-transform:matrix(0.232714,-0.003491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232714,-0.003491,0.003750,0.249972,0,0);}
.m1a_c01059{transform:matrix(0.235573,-0.003534,0.003750,0.249972,0,0);-ms-transform:matrix(0.235573,-0.003534,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235573,-0.003534,0.003750,0.249972,0,0);}
.mc1_c01059{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);}
.m55_c01059{transform:matrix(0.237053,-0.002845,0.003000,0.249982,0,0);-ms-transform:matrix(0.237053,-0.002845,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237053,-0.002845,0.003000,0.249982,0,0);}
.mba_c01059{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);}
.m56_c01059{transform:matrix(0.238978,-0.002868,0.003000,0.249982,0,0);-ms-transform:matrix(0.238978,-0.002868,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238978,-0.002868,0.003000,0.249982,0,0);}
.m8e_c01059{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);}
.mec_c01059{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);}
.m47_c01059{transform:matrix(0.241514,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241514,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241514,-0.003864,0.003999,0.249968,0,0);}
.m4f_c01059{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);}
.m51_c01059{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);}
.m1e_c01059{transform:matrix(0.243283,-0.003649,0.003750,0.249972,0,0);-ms-transform:matrix(0.243283,-0.003649,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243283,-0.003649,0.003750,0.249972,0,0);}
.m92_c01059{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);}
.mac_c01059{transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);}
.m1b_c01059{transform:matrix(0.247742,-0.003716,0.003750,0.249972,0,0);-ms-transform:matrix(0.247742,-0.003716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247742,-0.003716,0.003750,0.249972,0,0);}
.m53_c01059{transform:matrix(0.248877,-0.002987,0.003000,0.249982,0,0);-ms-transform:matrix(0.248877,-0.002987,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248877,-0.002987,0.003000,0.249982,0,0);}
.mb4_c01059{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);}
.mad_c01059{transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255220,0.000000,0.000000,0.250000,0,0);}
.m9c_c01059{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);}
.me3_c01059{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m7f_c01059{transform:matrix(0.257492,-0.002575,0.002500,0.249988,0,0);-ms-transform:matrix(0.257492,-0.002575,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257492,-0.002575,0.002500,0.249988,0,0);}
.ma5_c01059{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m58_c01059{transform:matrix(0.257916,-0.003095,0.003000,0.249982,0,0);-ms-transform:matrix(0.257916,-0.003095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257916,-0.003095,0.003000,0.249982,0,0);}
.m4e_c01059{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);}
.mb8_c01059{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.ma3_c01059{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m34_c01059{transform:matrix(0.265816,-0.004253,0.003999,0.249968,0,0);-ms-transform:matrix(0.265816,-0.004253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265816,-0.004253,0.003999,0.249968,0,0);}
.m5a_c01059{transform:matrix(0.266616,-0.003199,0.003000,0.249982,0,0);-ms-transform:matrix(0.266616,-0.003199,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266616,-0.003199,0.003000,0.249982,0,0);}
.m4c_c01059{transform:matrix(0.267251,-0.004276,0.003999,0.249968,0,0);-ms-transform:matrix(0.267251,-0.004276,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267251,-0.004276,0.003999,0.249968,0,0);}
.m40_c01059{transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);-ms-transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);}
.m4a_c01059{transform:matrix(0.272175,-0.004355,0.003999,0.249968,0,0);-ms-transform:matrix(0.272175,-0.004355,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272175,-0.004355,0.003999,0.249968,0,0);}
.m7d_c01059{transform:matrix(0.283401,-0.002834,0.002500,0.249988,0,0);-ms-transform:matrix(0.283401,-0.002834,0.002500,0.249988,0,0);-webkit-transform:matrix(0.283401,-0.002834,0.002500,0.249988,0,0);}
.m35_c01059{transform:matrix(0.292718,-0.004683,0.003999,0.249968,0,0);-ms-transform:matrix(0.292718,-0.004683,0.003999,0.249968,0,0);-webkit-transform:matrix(0.292718,-0.004683,0.003999,0.249968,0,0);}
.m8a_c01059{transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296315,0.000000,0.000000,0.250000,0,0);}
.mdb_c01059{transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);}
.m57_c01059{transform:matrix(0.308903,-0.003707,0.003000,0.249982,0,0);-ms-transform:matrix(0.308903,-0.003707,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308903,-0.003707,0.003000,0.249982,0,0);}
.m2_c01059{transform:matrix(0.332625,-0.009646,0.007247,0.249895,0,0);-ms-transform:matrix(0.332625,-0.009646,0.007247,0.249895,0,0);-webkit-transform:matrix(0.332625,-0.009646,0.007247,0.249895,0,0);}
.m1_c01059{transform:matrix(0.348374,-0.010103,0.007247,0.249895,0,0);-ms-transform:matrix(0.348374,-0.010103,0.007247,0.249895,0,0);-webkit-transform:matrix(0.348374,-0.010103,0.007247,0.249895,0,0);}
.m18_c01059{transform:matrix(0.353085,-0.005296,0.003750,0.249972,0,0);-ms-transform:matrix(0.353085,-0.005296,0.003750,0.249972,0,0);-webkit-transform:matrix(0.353085,-0.005296,0.003750,0.249972,0,0);}
.m7e_c01059{transform:matrix(0.355742,-0.003557,0.002500,0.249988,0,0);-ms-transform:matrix(0.355742,-0.003557,0.002500,0.249988,0,0);-webkit-transform:matrix(0.355742,-0.003557,0.002500,0.249988,0,0);}
.mcb_c01059{transform:matrix(0.485730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485730,0.000000,0.000000,0.250000,0,0);}
.m86_c01059{transform:matrix(0.499625,-0.004996,0.002500,0.249988,0,0);-ms-transform:matrix(0.499625,-0.004996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.499625,-0.004996,0.002500,0.249988,0,0);}
.ma2_c01059{transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);}
.me_c01059{transform:matrix(0.533600,-0.008004,0.003750,0.249972,0,0);-ms-transform:matrix(0.533600,-0.008004,0.003750,0.249972,0,0);-webkit-transform:matrix(0.533600,-0.008004,0.003750,0.249972,0,0);}
.m0_c01059{transform:matrix(0.712790,-0.020671,0.007247,0.249895,0,0);-ms-transform:matrix(0.712790,-0.020671,0.007247,0.249895,0,0);-webkit-transform:matrix(0.712790,-0.020671,0.007247,0.249895,0,0);}
.m4d_c01059{transform:matrix(0.892280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892280,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls0_c01059{letter-spacing:0.000000px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:0.000000px;}
.fc0_c01059{color:transparent;}
.fs9_c01059{font-size:27.300000px;}
.fsa_c01059{font-size:29.400000px;}
.fs1b_c01059{font-size:46.200000px;}
.fs1a_c01059{font-size:54.600000px;}
.fs3_c01059{font-size:60.906851px;}
.fs13_c01059{font-size:64.050000px;}
.fs14_c01059{font-size:65.100000px;}
.fs7_c01059{font-size:66.158467px;}
.fs5_c01059{font-size:67.208601px;}
.fs16_c01059{font-size:68.250000px;}
.fsb_c01059{font-size:68.254914px;}
.fs4_c01059{font-size:69.266208px;}
.fs17_c01059{font-size:70.350000px;}
.fs8_c01059{font-size:70.359004px;}
.fse_c01059{font-size:71.400000px;}
.fs10_c01059{font-size:72.453622px;}
.fs18_c01059{font-size:73.500000px;}
.fs11_c01059{font-size:73.503675px;}
.fsc_c01059{font-size:73.505292px;}
.fs6_c01059{font-size:73.509407px;}
.fs12_c01059{font-size:74.550000px;}
.fsd_c01059{font-size:75.605443px;}
.fs1_c01059{font-size:76.658623px;}
.fsf_c01059{font-size:77.700000px;}
.fs2_c01059{font-size:78.758859px;}
.fs19_c01059{font-size:85.057186px;}
.fs15_c01059{font-size:91.350000px;}
.fs0_c01059{font-size:101.892819px;}
.y0_c01059{bottom:0.000000px;}
.y8d_c01059{bottom:158.761500px;}
.y8e_c01059{bottom:160.041000px;}
.y8f_c01059{bottom:160.371000px;}
.y90_c01059{bottom:161.853000px;}
.y91_c01059{bottom:162.586500px;}
.y92_c01059{bottom:162.951000px;}
.y8c_c01059{bottom:176.887500px;}
.y8b_c01059{bottom:221.754100px;}
.y8a_c01059{bottom:223.239435px;}
.y89_c01059{bottom:223.474546px;}
.y88_c01059{bottom:224.102369px;}
.y87_c01059{bottom:224.727285px;}
.y86_c01059{bottom:225.323517px;}
.y85_c01059{bottom:226.124499px;}
.y84_c01059{bottom:226.801500px;}
.y83_c01059{bottom:249.837000px;}
.y82_c01059{bottom:272.610000px;}
.y81_c01059{bottom:295.735500px;}
.y80_c01059{bottom:318.073500px;}
.y7f_c01059{bottom:340.338000px;}
.y7e_c01059{bottom:363.402000px;}
.y7d_c01059{bottom:386.782500px;}
.y7c_c01059{bottom:409.054500px;}
.y7b_c01059{bottom:432.078000px;}
.y7a_c01059{bottom:476.076000px;}
.y78_c01059{bottom:504.762570px;}
.y79_c01059{bottom:504.763095px;}
.y6e_c01059{bottom:532.711500px;}
.y6f_c01059{bottom:533.367615px;}
.y70_c01059{bottom:534.109995px;}
.y71_c01059{bottom:534.679935px;}
.y72_c01059{bottom:534.882315px;}
.y73_c01059{bottom:535.278735px;}
.y74_c01059{bottom:535.500120px;}
.y75_c01059{bottom:535.767975px;}
.y76_c01059{bottom:536.289135px;}
.y77_c01059{bottom:536.658375px;}
.y6d_c01059{bottom:557.742000px;}
.y6c_c01059{bottom:581.253000px;}
.y63_c01059{bottom:601.018086px;}
.y64_c01059{bottom:601.747032px;}
.y65_c01059{bottom:601.992786px;}
.y66_c01059{bottom:602.327064px;}
.y67_c01059{bottom:602.939730px;}
.y68_c01059{bottom:603.730074px;}
.y69_c01059{bottom:604.033986px;}
.y6a_c01059{bottom:604.546716px;}
.y6b_c01059{bottom:605.129916px;}
.y59_c01059{bottom:624.779436px;}
.y5a_c01059{bottom:625.263660px;}
.y5b_c01059{bottom:625.676844px;}
.y5c_c01059{bottom:626.328390px;}
.y5d_c01059{bottom:626.639640px;}
.y5e_c01059{bottom:627.168360px;}
.y5f_c01059{bottom:627.574776px;}
.y60_c01059{bottom:628.085304px;}
.y61_c01059{bottom:628.266642px;}
.y62_c01059{bottom:628.733466px;}
.y50_c01059{bottom:647.731500px;}
.y51_c01059{bottom:648.003606px;}
.y52_c01059{bottom:648.250764px;}
.y53_c01059{bottom:648.693726px;}
.y54_c01059{bottom:648.979566px;}
.y55_c01059{bottom:649.750740px;}
.y56_c01059{bottom:650.255010px;}
.y57_c01059{bottom:650.601978px;}
.y58_c01059{bottom:651.390288px;}
.y4f_c01059{bottom:665.143500px;}
.y45_c01059{bottom:666.392700px;}
.y46_c01059{bottom:667.645932px;}
.y4e_c01059{bottom:668.101500px;}
.y47_c01059{bottom:670.867380px;}
.y48_c01059{bottom:671.701740px;}
.y49_c01059{bottom:675.644400px;}
.y4a_c01059{bottom:676.727820px;}
.y4b_c01059{bottom:679.382016px;}
.y4c_c01059{bottom:681.069612px;}
.y4d_c01059{bottom:683.651244px;}
.y3d_c01059{bottom:692.546628px;}
.y3e_c01059{bottom:693.285696px;}
.y3f_c01059{bottom:693.865380px;}
.y40_c01059{bottom:694.838388px;}
.y41_c01059{bottom:695.545284px;}
.y42_c01059{bottom:696.513228px;}
.y43_c01059{bottom:697.985724px;}
.y44_c01059{bottom:698.224560px;}
.y34_c01059{bottom:707.168736px;}
.y35_c01059{bottom:709.066320px;}
.y36_c01059{bottom:711.142836px;}
.y37_c01059{bottom:712.321296px;}
.y38_c01059{bottom:713.253168px;}
.y39_c01059{bottom:715.479912px;}
.y3a_c01059{bottom:717.382032px;}
.y3b_c01059{bottom:721.341828px;}
.y3c_c01059{bottom:724.204020px;}
.y2a_c01059{bottom:738.181500px;}
.y2b_c01059{bottom:738.407700px;}
.y2c_c01059{bottom:738.813996px;}
.y2d_c01059{bottom:739.967916px;}
.y2e_c01059{bottom:741.362820px;}
.y2f_c01059{bottom:741.734988px;}
.y30_c01059{bottom:742.546836px;}
.y31_c01059{bottom:743.086620px;}
.y32_c01059{bottom:743.612556px;}
.y33_c01059{bottom:744.049236px;}
.y20_c01059{bottom:760.323000px;}
.y21_c01059{bottom:760.817640px;}
.y22_c01059{bottom:762.219384px;}
.y23_c01059{bottom:764.118120px;}
.y24_c01059{bottom:764.999784px;}
.y25_c01059{bottom:766.195704px;}
.y26_c01059{bottom:767.057544px;}
.y27_c01059{bottom:768.327816px;}
.y28_c01059{bottom:770.562504px;}
.y29_c01059{bottom:771.118200px;}
.y18_c01059{bottom:779.234190px;}
.y19_c01059{bottom:781.256565px;}
.y1a_c01059{bottom:782.388795px;}
.y1b_c01059{bottom:783.911602px;}
.y1c_c01059{bottom:784.286962px;}
.y1d_c01059{bottom:785.609152px;}
.y1e_c01059{bottom:786.324285px;}
.y1f_c01059{bottom:787.202310px;}
.ye_c01059{bottom:805.951005px;}
.yf_c01059{bottom:806.753587px;}
.y10_c01059{bottom:807.761265px;}
.y11_c01059{bottom:808.383075px;}
.y12_c01059{bottom:808.966485px;}
.y13_c01059{bottom:809.513002px;}
.y14_c01059{bottom:810.379162px;}
.y15_c01059{bottom:811.574715px;}
.y16_c01059{bottom:811.982640px;}
.y17_c01059{bottom:813.169335px;}
.y4_c01059{bottom:827.283000px;}
.y5_c01059{bottom:827.622187px;}
.y6_c01059{bottom:828.238867px;}
.y7_c01059{bottom:828.823530px;}
.y8_c01059{bottom:829.729830px;}
.y9_c01059{bottom:830.479170px;}
.ya_c01059{bottom:831.073845px;}
.yb_c01059{bottom:831.443092px;}
.yc_c01059{bottom:832.374727px;}
.yd_c01059{bottom:832.795882px;}
.y1_c01059{bottom:872.388000px;}
.y2_c01059{bottom:875.824848px;}
.y3_c01059{bottom:879.434782px;}
.hb_c01059{height:27.300000px;}
.hc_c01059{height:29.400000px;}
.h1d_c01059{height:46.200000px;}
.h1c_c01059{height:54.600000px;}
.h5_c01059{height:60.906851px;}
.h15_c01059{height:64.050000px;}
.h16_c01059{height:65.100000px;}
.h9_c01059{height:66.158467px;}
.h7_c01059{height:67.208601px;}
.h18_c01059{height:68.250000px;}
.hd_c01059{height:68.254914px;}
.h6_c01059{height:69.266208px;}
.h19_c01059{height:70.350000px;}
.ha_c01059{height:70.359004px;}
.h10_c01059{height:71.400000px;}
.h12_c01059{height:72.453622px;}
.h1a_c01059{height:73.500000px;}
.h13_c01059{height:73.503675px;}
.he_c01059{height:73.505292px;}
.h8_c01059{height:73.509407px;}
.h14_c01059{height:74.550000px;}
.hf_c01059{height:75.605443px;}
.h3_c01059{height:76.658623px;}
.h11_c01059{height:77.700000px;}
.h4_c01059{height:78.758859px;}
.h1b_c01059{height:85.057186px;}
.h17_c01059{height:91.350000px;}
.h2_c01059{height:101.892819px;}
.h0_c01059{height:1008.450000px;}
.h1_c01059{height:1008.750000px;}
.w1_c01059{width:700.500000px;}
.w0_c01059{width:700.650000px;}
.x0_c01059{left:0.000000px;}
.x1_c01059{left:120.792000px;}
.x8b_c01059{left:127.810500px;}
.x84_c01059{left:140.940000px;}
.x1d_c01059{left:142.123500px;}
.x26_c01059{left:143.217000px;}
.x50_c01059{left:146.610000px;}
.x44_c01059{left:148.122870px;}
.x4_c01059{left:156.561000px;}
.x1e_c01059{left:157.565543px;}
.x37_c01059{left:159.069384px;}
.x64_c01059{left:160.110000px;}
.x69_c01059{left:162.000000px;}
.x68_c01059{left:164.430000px;}
.x85_c01059{left:166.860000px;}
.x5_c01059{left:179.173500px;}
.x3f_c01059{left:181.321500px;}
.x27_c01059{left:182.748000px;}
.x38_c01059{left:184.132752px;}
.x7a_c01059{left:185.760000px;}
.x45_c01059{left:192.100392px;}
.x55_c01059{left:198.450000px;}
.xe_c01059{left:201.451470px;}
.x73_c01059{left:204.120000px;}
.x6a_c01059{left:207.090000px;}
.x4b_c01059{left:209.416044px;}
.x60_c01059{left:215.730000px;}
.x6_c01059{left:220.285500px;}
.x51_c01059{left:225.180000px;}
.x46_c01059{left:229.657842px;}
.x34_c01059{left:236.004624px;}
.x2_c01059{left:239.304000px;}
.x61_c01059{left:243.540000px;}
.x5b_c01059{left:247.320000px;}
.x39_c01059{left:248.563212px;}
.x2e_c01059{left:250.572984px;}
.x80_c01059{left:252.720000px;}
.x65_c01059{left:253.800000px;}
.x17_c01059{left:255.809587px;}
.xf_c01059{left:257.427450px;}
.x7_c01059{left:259.263000px;}
.x1f_c01059{left:260.602403px;}
.x40_c01059{left:262.651500px;}
.x3a_c01059{left:265.264140px;}
.x6b_c01059{left:267.300000px;}
.x52_c01059{left:272.700000px;}
.x2f_c01059{left:277.996152px;}
.x7b_c01059{left:279.990000px;}
.x20_c01059{left:288.126850px;}
.x10_c01059{left:291.979897px;}
.x35_c01059{left:293.254212px;}
.x5a_c01059{left:295.655130px;}
.x6c_c01059{left:297.540000px;}
.x76_c01059{left:298.620000px;}
.x30_c01059{left:299.666292px;}
.x86_c01059{left:302.400000px;}
.x18_c01059{left:303.417960px;}
.x7c_c01059{left:306.180000px;}
.x4c_c01059{left:308.807544px;}
.x71_c01059{left:310.500000px;}
.x19_c01059{left:315.138968px;}
.x47_c01059{left:317.141886px;}
.x8_c01059{left:319.683000px;}
.x11_c01059{left:324.372435px;}
.x21_c01059{left:325.461978px;}
.x41_c01059{left:326.916000px;}
.x5c_c01059{left:333.720000px;}
.x36_c01059{left:334.809540px;}
.x56_c01059{left:336.690000px;}
.x28_c01059{left:342.049500px;}
.x3b_c01059{left:344.106252px;}
.x72_c01059{left:350.460000px;}
.x22_c01059{left:352.367546px;}
.x87_c01059{left:353.430000px;}
.x12_c01059{left:354.705563px;}
.x1a_c01059{left:356.474438px;}
.x6d_c01059{left:360.180000px;}
.x3_c01059{left:363.784500px;}
.x29_c01059{left:365.310000px;}
.x53_c01059{left:367.740000px;}
.x9_c01059{left:369.639000px;}
.x82_c01059{left:371.613000px;}
.x62_c01059{left:372.870000px;}
.x4d_c01059{left:374.669544px;}
.x57_c01059{left:375.984000px;}
.x7d_c01059{left:377.460000px;}
.x1b_c01059{left:378.844245px;}
.x74_c01059{left:381.780000px;}
.x5d_c01059{left:384.210000px;}
.x77_c01059{left:389.070000px;}
.x23_c01059{left:392.023850px;}
.x31_c01059{left:395.678820px;}
.x42_c01059{left:397.852500px;}
.x4e_c01059{left:399.995544px;}
.x13_c01059{left:402.847402px;}
.x1c_c01059{left:406.272247px;}
.xa_c01059{left:409.284000px;}
.x81_c01059{left:413.100000px;}
.x2a_c01059{left:416.050500px;}
.x3c_c01059{left:418.854096px;}
.x75_c01059{left:420.660000px;}
.x66_c01059{left:423.090000px;}
.x5e_c01059{left:427.140000px;}
.xb_c01059{left:433.900500px;}
.x7e_c01059{left:436.320000px;}
.x58_c01059{left:437.764500px;}
.x88_c01059{left:439.290000px;}
.x6e_c01059{left:440.640000px;}
.x4f_c01059{left:442.723044px;}
.x67_c01059{left:444.690000px;}
.x48_c01059{left:448.615470px;}
.x2b_c01059{left:449.787000px;}
.x3d_c01059{left:452.591736px;}
.x78_c01059{left:455.490000px;}
.x54_c01059{left:457.920000px;}
.x24_c01059{left:461.788016px;}
.x43_c01059{left:463.545000px;}
.x49_c01059{left:465.102168px;}
.x5f_c01059{left:467.910000px;}
.x14_c01059{left:469.247910px;}
.x63_c01059{left:477.900000px;}
.x25_c01059{left:479.136150px;}
.x2c_c01059{left:482.658000px;}
.x32_c01059{left:487.782552px;}
.x15_c01059{left:491.941898px;}
.x6f_c01059{left:494.910000px;}
.xc_c01059{left:496.009500px;}
.x3e_c01059{left:504.228156px;}
.x89_c01059{left:505.440000px;}
.x4a_c01059{left:507.504672px;}
.x2d_c01059{left:509.950500px;}
.x79_c01059{left:513.270000px;}
.x7f_c01059{left:514.350000px;}
.x59_c01059{left:516.666000px;}
.x70_c01059{left:522.450000px;}
.xd_c01059{left:524.086500px;}
.x8c_c01059{left:546.759000px;}
.x83_c01059{left:552.249000px;}
.x33_c01059{left:554.328300px;}
.x16_c01059{left:557.851928px;}
.x8a_c01059{left:588.060000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ws0_c01059{word-spacing:0.000000pt;}
.fs9_c01059{font-size:24.266667pt;}
.fsa_c01059{font-size:26.133333pt;}
.fs1b_c01059{font-size:41.066667pt;}
.fs1a_c01059{font-size:48.533333pt;}
.fs3_c01059{font-size:54.139423pt;}
.fs13_c01059{font-size:56.933333pt;}
.fs14_c01059{font-size:57.866667pt;}
.fs7_c01059{font-size:58.807526pt;}
.fs5_c01059{font-size:59.740979pt;}
.fs16_c01059{font-size:60.666667pt;}
.fsb_c01059{font-size:60.671035pt;}
.fs4_c01059{font-size:61.569963pt;}
.fs17_c01059{font-size:62.533333pt;}
.fs8_c01059{font-size:62.541337pt;}
.fse_c01059{font-size:63.466667pt;}
.fs10_c01059{font-size:64.403220pt;}
.fs18_c01059{font-size:65.333333pt;}
.fs11_c01059{font-size:65.336600pt;}
.fsc_c01059{font-size:65.338037pt;}
.fs6_c01059{font-size:65.341695pt;}
.fs12_c01059{font-size:66.266667pt;}
.fsd_c01059{font-size:67.204838pt;}
.fs1_c01059{font-size:68.140998pt;}
.fsf_c01059{font-size:69.066667pt;}
.fs2_c01059{font-size:70.007875pt;}
.fs19_c01059{font-size:75.606388pt;}
.fs15_c01059{font-size:81.200000pt;}
.fs0_c01059{font-size:90.571395pt;}
.y0_c01059{bottom:0.000000pt;}
.y8d_c01059{bottom:141.121333pt;}
.y8e_c01059{bottom:142.258667pt;}
.y8f_c01059{bottom:142.552000pt;}
.y90_c01059{bottom:143.869333pt;}
.y91_c01059{bottom:144.521333pt;}
.y92_c01059{bottom:144.845333pt;}
.y8c_c01059{bottom:157.233333pt;}
.y8b_c01059{bottom:197.114756pt;}
.y8a_c01059{bottom:198.435053pt;}
.y89_c01059{bottom:198.644041pt;}
.y88_c01059{bottom:199.202105pt;}
.y87_c01059{bottom:199.757587pt;}
.y86_c01059{bottom:200.287571pt;}
.y85_c01059{bottom:200.999555pt;}
.y84_c01059{bottom:201.601333pt;}
.y83_c01059{bottom:222.077333pt;}
.y82_c01059{bottom:242.320000pt;}
.y81_c01059{bottom:262.876000pt;}
.y80_c01059{bottom:282.732000pt;}
.y7f_c01059{bottom:302.522667pt;}
.y7e_c01059{bottom:323.024000pt;}
.y7d_c01059{bottom:343.806667pt;}
.y7c_c01059{bottom:363.604000pt;}
.y7b_c01059{bottom:384.069333pt;}
.y7a_c01059{bottom:423.178667pt;}
.y78_c01059{bottom:448.677840pt;}
.y79_c01059{bottom:448.678307pt;}
.y6e_c01059{bottom:473.521333pt;}
.y6f_c01059{bottom:474.104547pt;}
.y70_c01059{bottom:474.764440pt;}
.y71_c01059{bottom:475.271053pt;}
.y72_c01059{bottom:475.450947pt;}
.y73_c01059{bottom:475.803320pt;}
.y74_c01059{bottom:476.000107pt;}
.y75_c01059{bottom:476.238200pt;}
.y76_c01059{bottom:476.701453pt;}
.y77_c01059{bottom:477.029667pt;}
.y6d_c01059{bottom:495.770667pt;}
.y6c_c01059{bottom:516.669333pt;}
.y63_c01059{bottom:534.238299pt;}
.y64_c01059{bottom:534.886251pt;}
.y65_c01059{bottom:535.104699pt;}
.y66_c01059{bottom:535.401835pt;}
.y67_c01059{bottom:535.946427pt;}
.y68_c01059{bottom:536.648955pt;}
.y69_c01059{bottom:536.919099pt;}
.y6a_c01059{bottom:537.374859pt;}
.y6b_c01059{bottom:537.893259pt;}
.y59_c01059{bottom:555.359499pt;}
.y5a_c01059{bottom:555.789920pt;}
.y5b_c01059{bottom:556.157195pt;}
.y5c_c01059{bottom:556.736347pt;}
.y5d_c01059{bottom:557.013013pt;}
.y5e_c01059{bottom:557.482987pt;}
.y5f_c01059{bottom:557.844245pt;}
.y60_c01059{bottom:558.298048pt;}
.y61_c01059{bottom:558.459237pt;}
.y62_c01059{bottom:558.874192pt;}
.y50_c01059{bottom:575.761333pt;}
.y51_c01059{bottom:576.003205pt;}
.y52_c01059{bottom:576.222901pt;}
.y53_c01059{bottom:576.616645pt;}
.y54_c01059{bottom:576.870725pt;}
.y55_c01059{bottom:577.556213pt;}
.y56_c01059{bottom:578.004453pt;}
.y57_c01059{bottom:578.312869pt;}
.y58_c01059{bottom:579.013589pt;}
.y4f_c01059{bottom:591.238667pt;}
.y45_c01059{bottom:592.349067pt;}
.y46_c01059{bottom:593.463051pt;}
.y4e_c01059{bottom:593.868000pt;}
.y47_c01059{bottom:596.326560pt;}
.y48_c01059{bottom:597.068213pt;}
.y49_c01059{bottom:600.572800pt;}
.y4a_c01059{bottom:601.535840pt;}
.y4b_c01059{bottom:603.895125pt;}
.y4c_c01059{bottom:605.395211pt;}
.y4d_c01059{bottom:607.689995pt;}
.y3d_c01059{bottom:615.597003pt;}
.y3e_c01059{bottom:616.253952pt;}
.y3f_c01059{bottom:616.769227pt;}
.y40_c01059{bottom:617.634123pt;}
.y41_c01059{bottom:618.262475pt;}
.y42_c01059{bottom:619.122869pt;}
.y43_c01059{bottom:620.431755pt;}
.y44_c01059{bottom:620.644053pt;}
.y34_c01059{bottom:628.594432pt;}
.y35_c01059{bottom:630.281173pt;}
.y36_c01059{bottom:632.126965pt;}
.y37_c01059{bottom:633.174485pt;}
.y38_c01059{bottom:634.002816pt;}
.y39_c01059{bottom:635.982144pt;}
.y3a_c01059{bottom:637.672917pt;}
.y3b_c01059{bottom:641.192736pt;}
.y3c_c01059{bottom:643.736907pt;}
.y2a_c01059{bottom:656.161333pt;}
.y2b_c01059{bottom:656.362400pt;}
.y2c_c01059{bottom:656.723552pt;}
.y2d_c01059{bottom:657.749259pt;}
.y2e_c01059{bottom:658.989173pt;}
.y2f_c01059{bottom:659.319989pt;}
.y30_c01059{bottom:660.041632pt;}
.y31_c01059{bottom:660.521440pt;}
.y32_c01059{bottom:660.988939pt;}
.y33_c01059{bottom:661.377099pt;}
.y20_c01059{bottom:675.842667pt;}
.y21_c01059{bottom:676.282347pt;}
.y22_c01059{bottom:677.528341pt;}
.y23_c01059{bottom:679.216107pt;}
.y24_c01059{bottom:679.999808pt;}
.y25_c01059{bottom:681.062848pt;}
.y26_c01059{bottom:681.828928pt;}
.y27_c01059{bottom:682.958059pt;}
.y28_c01059{bottom:684.944448pt;}
.y29_c01059{bottom:685.438400pt;}
.y18_c01059{bottom:692.652613pt;}
.y19_c01059{bottom:694.450280pt;}
.y1a_c01059{bottom:695.456707pt;}
.y1b_c01059{bottom:696.810313pt;}
.y1c_c01059{bottom:697.143967pt;}
.y1d_c01059{bottom:698.319247pt;}
.y1e_c01059{bottom:698.954920pt;}
.y1f_c01059{bottom:699.735387pt;}
.ye_c01059{bottom:716.400893pt;}
.yf_c01059{bottom:717.114300pt;}
.y10_c01059{bottom:718.010013pt;}
.y11_c01059{bottom:718.562733pt;}
.y12_c01059{bottom:719.081320pt;}
.y13_c01059{bottom:719.567113pt;}
.y14_c01059{bottom:720.337033pt;}
.y15_c01059{bottom:721.399747pt;}
.y16_c01059{bottom:721.762347pt;}
.y17_c01059{bottom:722.817187pt;}
.y4_c01059{bottom:735.362667pt;}
.y5_c01059{bottom:735.664167pt;}
.y6_c01059{bottom:736.212327pt;}
.y7_c01059{bottom:736.732027pt;}
.y8_c01059{bottom:737.537627pt;}
.y9_c01059{bottom:738.203707pt;}
.ya_c01059{bottom:738.732307pt;}
.yb_c01059{bottom:739.060527pt;}
.yc_c01059{bottom:739.888647pt;}
.yd_c01059{bottom:740.263007pt;}
.y1_c01059{bottom:775.456000pt;}
.y2_c01059{bottom:778.510976pt;}
.y3_c01059{bottom:781.719807pt;}
.hb_c01059{height:24.266667pt;}
.hc_c01059{height:26.133333pt;}
.h1d_c01059{height:41.066667pt;}
.h1c_c01059{height:48.533333pt;}
.h5_c01059{height:54.139423pt;}
.h15_c01059{height:56.933333pt;}
.h16_c01059{height:57.866667pt;}
.h9_c01059{height:58.807526pt;}
.h7_c01059{height:59.740979pt;}
.h18_c01059{height:60.666667pt;}
.hd_c01059{height:60.671035pt;}
.h6_c01059{height:61.569963pt;}
.h19_c01059{height:62.533333pt;}
.ha_c01059{height:62.541337pt;}
.h10_c01059{height:63.466667pt;}
.h12_c01059{height:64.403220pt;}
.h1a_c01059{height:65.333333pt;}
.h13_c01059{height:65.336600pt;}
.he_c01059{height:65.338037pt;}
.h8_c01059{height:65.341695pt;}
.h14_c01059{height:66.266667pt;}
.hf_c01059{height:67.204838pt;}
.h3_c01059{height:68.140998pt;}
.h11_c01059{height:69.066667pt;}
.h4_c01059{height:70.007875pt;}
.h1b_c01059{height:75.606388pt;}
.h17_c01059{height:81.200000pt;}
.h2_c01059{height:90.571395pt;}
.h0_c01059{height:896.400000pt;}
.h1_c01059{height:896.666667pt;}
.w1_c01059{width:622.666667pt;}
.w0_c01059{width:622.800000pt;}
.x0_c01059{left:0.000000pt;}
.x1_c01059{left:107.370667pt;}
.x8b_c01059{left:113.609333pt;}
.x84_c01059{left:125.280000pt;}
.x1d_c01059{left:126.332000pt;}
.x26_c01059{left:127.304000pt;}
.x50_c01059{left:130.320000pt;}
.x44_c01059{left:131.664773pt;}
.x4_c01059{left:139.165333pt;}
.x1e_c01059{left:140.058260pt;}
.x37_c01059{left:141.395008pt;}
.x64_c01059{left:142.320000pt;}
.x69_c01059{left:144.000000pt;}
.x68_c01059{left:146.160000pt;}
.x85_c01059{left:148.320000pt;}
.x5_c01059{left:159.265333pt;}
.x3f_c01059{left:161.174667pt;}
.x27_c01059{left:162.442667pt;}
.x38_c01059{left:163.673557pt;}
.x7a_c01059{left:165.120000pt;}
.x45_c01059{left:170.755904pt;}
.x55_c01059{left:176.400000pt;}
.xe_c01059{left:179.067973pt;}
.x73_c01059{left:181.440000pt;}
.x6a_c01059{left:184.080000pt;}
.x4b_c01059{left:186.147595pt;}
.x60_c01059{left:191.760000pt;}
.x6_c01059{left:195.809333pt;}
.x51_c01059{left:200.160000pt;}
.x46_c01059{left:204.140304pt;}
.x34_c01059{left:209.781888pt;}
.x2_c01059{left:212.714667pt;}
.x61_c01059{left:216.480000pt;}
.x5b_c01059{left:219.840000pt;}
.x39_c01059{left:220.945077pt;}
.x2e_c01059{left:222.731541pt;}
.x80_c01059{left:224.640000pt;}
.x65_c01059{left:225.600000pt;}
.x17_c01059{left:227.386300pt;}
.xf_c01059{left:228.824400pt;}
.x7_c01059{left:230.456000pt;}
.x1f_c01059{left:231.646580pt;}
.x40_c01059{left:233.468000pt;}
.x3a_c01059{left:235.790347pt;}
.x6b_c01059{left:237.600000pt;}
.x52_c01059{left:242.400000pt;}
.x2f_c01059{left:247.107691pt;}
.x7b_c01059{left:248.880000pt;}
.x20_c01059{left:256.112756pt;}
.x10_c01059{left:259.537687pt;}
.x35_c01059{left:260.670411pt;}
.x5a_c01059{left:262.804560pt;}
.x6c_c01059{left:264.480000pt;}
.x76_c01059{left:265.440000pt;}
.x30_c01059{left:266.370037pt;}
.x86_c01059{left:268.800000pt;}
.x18_c01059{left:269.704853pt;}
.x7c_c01059{left:272.160000pt;}
.x4c_c01059{left:274.495595pt;}
.x71_c01059{left:276.000000pt;}
.x19_c01059{left:280.123527pt;}
.x47_c01059{left:281.903899pt;}
.x8_c01059{left:284.162667pt;}
.x11_c01059{left:288.331053pt;}
.x21_c01059{left:289.299536pt;}
.x41_c01059{left:290.592000pt;}
.x5c_c01059{left:296.640000pt;}
.x36_c01059{left:297.608480pt;}
.x56_c01059{left:299.280000pt;}
.x28_c01059{left:304.044000pt;}
.x3b_c01059{left:305.872224pt;}
.x72_c01059{left:311.520000pt;}
.x22_c01059{left:313.215596pt;}
.x87_c01059{left:314.160000pt;}
.x12_c01059{left:315.293833pt;}
.x1a_c01059{left:316.866167pt;}
.x6d_c01059{left:320.160000pt;}
.x3_c01059{left:323.364000pt;}
.x29_c01059{left:324.720000pt;}
.x53_c01059{left:326.880000pt;}
.x9_c01059{left:328.568000pt;}
.x82_c01059{left:330.322667pt;}
.x62_c01059{left:331.440000pt;}
.x4d_c01059{left:333.039595pt;}
.x57_c01059{left:334.208000pt;}
.x7d_c01059{left:335.520000pt;}
.x1b_c01059{left:336.750440pt;}
.x74_c01059{left:339.360000pt;}
.x5d_c01059{left:341.520000pt;}
.x77_c01059{left:345.840000pt;}
.x23_c01059{left:348.465644pt;}
.x31_c01059{left:351.714507pt;}
.x42_c01059{left:353.646667pt;}
.x4e_c01059{left:355.551595pt;}
.x13_c01059{left:358.086580pt;}
.x1c_c01059{left:361.130887pt;}
.xa_c01059{left:363.808000pt;}
.x81_c01059{left:367.200000pt;}
.x2a_c01059{left:369.822667pt;}
.x3c_c01059{left:372.314752pt;}
.x75_c01059{left:373.920000pt;}
.x66_c01059{left:376.080000pt;}
.x5e_c01059{left:379.680000pt;}
.xb_c01059{left:385.689333pt;}
.x7e_c01059{left:387.840000pt;}
.x58_c01059{left:389.124000pt;}
.x88_c01059{left:390.480000pt;}
.x6e_c01059{left:391.680000pt;}
.x4f_c01059{left:393.531595pt;}
.x67_c01059{left:395.280000pt;}
.x48_c01059{left:398.769307pt;}
.x2b_c01059{left:399.810667pt;}
.x3d_c01059{left:402.303765pt;}
.x78_c01059{left:404.880000pt;}
.x54_c01059{left:407.040000pt;}
.x24_c01059{left:410.478236pt;}
.x43_c01059{left:412.040000pt;}
.x49_c01059{left:413.424149pt;}
.x5f_c01059{left:415.920000pt;}
.x14_c01059{left:417.109253pt;}
.x63_c01059{left:424.800000pt;}
.x25_c01059{left:425.898800pt;}
.x2c_c01059{left:429.029333pt;}
.x32_c01059{left:433.584491pt;}
.x15_c01059{left:437.281687pt;}
.x6f_c01059{left:439.920000pt;}
.xc_c01059{left:440.897333pt;}
.x3e_c01059{left:448.202805pt;}
.x89_c01059{left:449.280000pt;}
.x4a_c01059{left:451.115264pt;}
.x2d_c01059{left:453.289333pt;}
.x79_c01059{left:456.240000pt;}
.x7f_c01059{left:457.200000pt;}
.x59_c01059{left:459.258667pt;}
.x70_c01059{left:464.400000pt;}
.xd_c01059{left:465.854667pt;}
.x8c_c01059{left:486.008000pt;}
.x83_c01059{left:490.888000pt;}
.x33_c01059{left:492.736267pt;}
.x16_c01059{left:495.868380pt;}
.x8a_c01059{left:522.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_c01060 {
    display:none;
  }
  .loading-indicator_c01060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01060 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01060 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01060" -> "#page-container .classname_c01060")
 */
.pf_c01060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01060 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01060 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01060 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01060 {overflow:visible;}
  }
}
.c_c01060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01060 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01060:after { /* webkit #35443 */
  content: '';
}
.t_c01060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01060 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01060 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01060 { /* info for Javascript */
  display:none;
}
.l_c01060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.000000;font-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_c01060{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);}
.m59_c01060{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);}
.m6f_c01060{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);}
.m5a_c01060{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);}
.m73_c01060{transform:matrix(0.027675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027675,0.000000,0.000000,0.250000,0,0);}
.m71_c01060{transform:matrix(0.029290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029290,0.000000,0.000000,0.250000,0,0);}
.mb6_c01060{transform:matrix(0.067605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067605,0.000000,0.000000,0.250000,0,0);}
.m63_c01060{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);}
.mc3_c01060{transform:matrix(0.116655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116655,0.000000,0.000000,0.250000,0,0);}
.ma_c01060{transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);}
.ma9_c01060{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);}
.m52_c01060{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);}
.mae_c01060{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);}
.m6a_c01060{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);}
.mb2_c01060{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);}
.mb5_c01060{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);}
.me_c01060{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);}
.maf_c01060{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);}
.m2c_c01060{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);}
.m1a_c01060{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);}
.m96_c01060{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.ma0_c01060{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);}
.m18_c01060{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);}
.m37_c01060{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);}
.m66_c01060{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);}
.m26_c01060{transform:matrix(0.170690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170690,0.000000,0.000000,0.250000,0,0);}
.mf_c01060{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);}
.mc_c01060{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);}
.m2f_c01060{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);}
.m87_c01060{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);}
.m85_c01060{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);}
.mcc_c01060{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);}
.md_c01060{transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173985,0.000000,0.000000,0.250000,0,0);}
.mac_c01060{transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);}
.m95_c01060{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);}
.m1e_c01060{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);}
.mc0_c01060{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);}
.m4b_c01060{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);}
.mc9_c01060{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);}
.m83_c01060{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);}
.m32_c01060{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);}
.m21_c01060{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);}
.m84_c01060{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);}
.m3c_c01060{transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179765,0.000000,0.000000,0.250000,0,0);}
.m7f_c01060{transform:matrix(0.179772,-0.003955,0.005499,0.249940,0,0);-ms-transform:matrix(0.179772,-0.003955,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179772,-0.003955,0.005499,0.249940,0,0);}
.mba_c01060{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);}
.m14_c01060{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);}
.m1c_c01060{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);}
.m9f_c01060{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);}
.mab_c01060{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);}
.m86_c01060{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);}
.ma8_c01060{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);}
.mb3_c01060{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);}
.mb9_c01060{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);}
.m75_c01060{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);}
.m54_c01060{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);}
.md3_c01060{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);}
.m5_c01060{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);}
.m6d_c01060{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m12_c01060{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);}
.m9e_c01060{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);}
.m4_c01060{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);}
.md2_c01060{transform:matrix(0.189821,-0.009121,0.011998,0.249712,0,0);-ms-transform:matrix(0.189821,-0.009121,0.011998,0.249712,0,0);-webkit-transform:matrix(0.189821,-0.009121,0.011998,0.249712,0,0);}
.m98_c01060{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);}
.mb1_c01060{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);}
.md4_c01060{transform:matrix(0.190825,-0.009169,0.011998,0.249712,0,0);-ms-transform:matrix(0.190825,-0.009169,0.011998,0.249712,0,0);-webkit-transform:matrix(0.190825,-0.009169,0.011998,0.249712,0,0);}
.m9d_c01060{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);}
.mbf_c01060{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);}
.md0_c01060{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);}
.m70_c01060{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);}
.md5_c01060{transform:matrix(0.192813,-0.009264,0.011998,0.249712,0,0);-ms-transform:matrix(0.192813,-0.009264,0.011998,0.249712,0,0);-webkit-transform:matrix(0.192813,-0.009264,0.011998,0.249712,0,0);}
.ma3_c01060{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);}
.m77_c01060{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);}
.m76_c01060{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);}
.ma6_c01060{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);}
.m88_c01060{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);}
.m1_c01060{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);}
.m4e_c01060{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);}
.m6e_c01060{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);}
.m69_c01060{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);}
.mad_c01060{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);}
.m93_c01060{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);}
.maa_c01060{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);}
.m4c_c01060{transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);}
.m47_c01060{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);}
.m91_c01060{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);}
.m11_c01060{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);}
.m17_c01060{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);}
.m61_c01060{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);}
.m89_c01060{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);}
.m3b_c01060{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);}
.ma7_c01060{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);}
.m82_c01060{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m4d_c01060{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);}
.mb8_c01060{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);}
.m2d_c01060{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);}
.mc5_c01060{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);}
.m28_c01060{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);}
.m38_c01060{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);}
.mc7_c01060{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);}
.m43_c01060{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);}
.m67_c01060{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);}
.m31_c01060{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);}
.m3f_c01060{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);}
.m68_c01060{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);}
.m2_c01060{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);}
.m6b_c01060{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);}
.m79_c01060{transform:matrix(0.207845,-0.004573,0.005499,0.249940,0,0);-ms-transform:matrix(0.207845,-0.004573,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207845,-0.004573,0.005499,0.249940,0,0);}
.mc1_c01060{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);}
.m35_c01060{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);}
.m57_c01060{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);}
.mb0_c01060{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m15_c01060{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);}
.m22_c01060{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);}
.m7_c01060{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);}
.mb4_c01060{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);}
.m16_c01060{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);}
.m7a_c01060{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);}
.m13_c01060{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);}
.m90_c01060{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);}
.m72_c01060{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);}
.mb_c01060{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);}
.mbb_c01060{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);}
.m1d_c01060{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);}
.m8a_c01060{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);}
.m33_c01060{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);}
.m78_c01060{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);}
.ma5_c01060{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);}
.m1b_c01060{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);}
.m25_c01060{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);}
.m46_c01060{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);}
.m2e_c01060{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);}
.m3d_c01060{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);}
.m9c_c01060{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.ma2_c01060{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);}
.m8b_c01060{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);}
.m39_c01060{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);}
.m19_c01060{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);}
.mc6_c01060{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);}
.m44_c01060{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);}
.m94_c01060{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);}
.m23_c01060{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);}
.mbe_c01060{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);}
.m3e_c01060{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);}
.m9b_c01060{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);}
.mb7_c01060{transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);}
.m60_c01060{transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231940,0.000000,0.000000,0.250000,0,0);}
.m99_c01060{transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232530,0.000000,0.000000,0.250000,0,0);}
.m24_c01060{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);}
.m3a_c01060{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m49_c01060{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);}
.ma4_c01060{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);}
.m6c_c01060{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);}
.mca_c01060{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);}
.m8e_c01060{transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235610,0.000000,0.000000,0.250000,0,0);}
.m48_c01060{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);}
.m40_c01060{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);}
.m8f_c01060{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);}
.m1f_c01060{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);}
.m45_c01060{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);}
.m27_c01060{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);}
.m92_c01060{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);}
.m36_c01060{transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);}
.mcf_c01060{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);}
.m81_c01060{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);}
.m7b_c01060{transform:matrix(0.244526,-0.005380,0.005499,0.249940,0,0);-ms-transform:matrix(0.244526,-0.005380,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244526,-0.005380,0.005499,0.249940,0,0);}
.mc4_c01060{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);}
.m8_c01060{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m62_c01060{transform:matrix(0.246815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246815,0.000000,0.000000,0.250000,0,0);}
.m10_c01060{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);}
.m42_c01060{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m3_c01060{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m4f_c01060{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);}
.m7e_c01060{transform:matrix(0.250344,-0.005508,0.005499,0.249940,0,0);-ms-transform:matrix(0.250344,-0.005508,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250344,-0.005508,0.005499,0.249940,0,0);}
.m0_c01060{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);}
.mce_c01060{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);}
.mc2_c01060{transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);}
.m20_c01060{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.m30_c01060{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);}
.m29_c01060{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.m34_c01060{transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264625,0.000000,0.000000,0.250000,0,0);}
.ma1_c01060{transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265245,0.000000,0.000000,0.250000,0,0);}
.m56_c01060{transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);}
.md1_c01060{transform:matrix(0.268835,-0.012917,0.011998,0.249712,0,0);-ms-transform:matrix(0.268835,-0.012917,0.011998,0.249712,0,0);-webkit-transform:matrix(0.268835,-0.012917,0.011998,0.249712,0,0);}
.m5e_c01060{transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);}
.m74_c01060{transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272215,0.000000,0.000000,0.250000,0,0);}
.m9a_c01060{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.m80_c01060{transform:matrix(0.285401,-0.006279,0.005499,0.249940,0,0);-ms-transform:matrix(0.285401,-0.006279,0.005499,0.249940,0,0);-webkit-transform:matrix(0.285401,-0.006279,0.005499,0.249940,0,0);}
.mbd_c01060{transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);}
.m6_c01060{transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);}
.mcb_c01060{transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306365,0.000000,0.000000,0.250000,0,0);}
.m9_c01060{transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306375,0.000000,0.000000,0.250000,0,0);}
.m58_c01060{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);}
.m8c_c01060{transform:matrix(0.310110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310110,0.000000,0.000000,0.250000,0,0);}
.m97_c01060{transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312125,0.000000,0.000000,0.250000,0,0);}
.m2a_c01060{transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316050,0.000000,0.000000,0.250000,0,0);}
.m51_c01060{transform:matrix(0.318365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318365,0.000000,0.000000,0.250000,0,0);}
.m4a_c01060{transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320330,0.000000,0.000000,0.250000,0,0);}
.m55_c01060{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);}
.m41_c01060{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_c01060{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);}
.m50_c01060{transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353195,0.000000,0.000000,0.250000,0,0);}
.mcd_c01060{transform:matrix(0.363735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363735,0.000000,0.000000,0.250000,0,0);}
.m8d_c01060{transform:matrix(0.365295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365295,0.000000,0.000000,0.250000,0,0);}
.m5d_c01060{transform:matrix(0.383480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383480,0.000000,0.000000,0.250000,0,0);}
.m5c_c01060{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);}
.mc8_c01060{transform:matrix(0.413410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413410,0.000000,0.000000,0.250000,0,0);}
.mbc_c01060{transform:matrix(0.418505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418505,0.000000,0.000000,0.250000,0,0);}
.m7d_c01060{transform:matrix(0.419543,-0.009230,0.005499,0.249940,0,0);-ms-transform:matrix(0.419543,-0.009230,0.005499,0.249940,0,0);-webkit-transform:matrix(0.419543,-0.009230,0.005499,0.249940,0,0);}
.m64_c01060{transform:matrix(0.452685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452685,0.000000,0.000000,0.250000,0,0);}
.m5b_c01060{transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487900,0.000000,0.000000,0.250000,0,0);}
.md6_c01060{transform:matrix(0.490384,-0.023562,0.011998,0.249712,0,0);-ms-transform:matrix(0.490384,-0.023562,0.011998,0.249712,0,0);-webkit-transform:matrix(0.490384,-0.023562,0.011998,0.249712,0,0);}
.m5f_c01060{transform:matrix(0.524140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524140,0.000000,0.000000,0.250000,0,0);}
.m7c_c01060{transform:matrix(0.719621,-0.015832,0.005499,0.249940,0,0);-ms-transform:matrix(0.719621,-0.015832,0.005499,0.249940,0,0);-webkit-transform:matrix(0.719621,-0.015832,0.005499,0.249940,0,0);}
.m53_c01060{transform:matrix(1.017775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017775,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls0_c01060{letter-spacing:0.000000px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01060{word-spacing:0.000000px;}
.fc0_c01060{color:transparent;}
.fse_c01060{font-size:58.808966px;}
.fs6_c01060{font-size:61.950000px;}
.fs4_c01060{font-size:63.000000px;}
.fs7_c01060{font-size:64.050000px;}
.fsc_c01060{font-size:65.100000px;}
.fs3_c01060{font-size:66.150000px;}
.fsa_c01060{font-size:67.200000px;}
.fs5_c01060{font-size:68.250000px;}
.fsb_c01060{font-size:69.300000px;}
.fs1_c01060{font-size:70.350000px;}
.fs9_c01060{font-size:70.367023px;}
.fsd_c01060{font-size:71.400000px;}
.fs8_c01060{font-size:72.450000px;}
.fs2_c01060{font-size:73.500000px;}
.fs0_c01060{font-size:74.550000px;}
.y0_c01060{bottom:0.000000px;}
.y2b_c01060{bottom:146.119500px;}
.y2c_c01060{bottom:148.985964px;}
.y2d_c01060{bottom:150.173172px;}
.y2e_c01060{bottom:153.591300px;}
.y2f_c01060{bottom:155.602116px;}
.y30_c01060{bottom:158.189292px;}
.y2a_c01060{bottom:208.579500px;}
.y29_c01060{bottom:230.721000px;}
.y28_c01060{bottom:253.416000px;}
.y27_c01060{bottom:276.489000px;}
.y26_c01060{bottom:299.496000px;}
.y25_c01060{bottom:322.971000px;}
.y24_c01060{bottom:345.835500px;}
.y23_c01060{bottom:368.793000px;}
.y22_c01060{bottom:392.001000px;}
.y21_c01060{bottom:415.104000px;}
.y19_c01060{bottom:433.092000px;}
.y1a_c01060{bottom:434.440314px;}
.y1b_c01060{bottom:435.375732px;}
.y1c_c01060{bottom:436.085760px;}
.y1d_c01060{bottom:437.483079px;}
.y1e_c01060{bottom:438.419949px;}
.y1f_c01060{bottom:439.338735px;}
.y20_c01060{bottom:441.315105px;}
.y18_c01060{bottom:456.186000px;}
.y17_c01060{bottom:456.592500px;}
.y16_c01060{bottom:456.891000px;}
.y15_c01060{bottom:457.230000px;}
.y14_c01060{bottom:457.762500px;}
.y13_c01060{bottom:457.831500px;}
.y12_c01060{bottom:458.407500px;}
.y11_c01060{bottom:458.551500px;}
.y10_c01060{bottom:459.270000px;}
.yf_c01060{bottom:482.137500px;}
.ye_c01060{bottom:504.751500px;}
.yd_c01060{bottom:534.970500px;}
.yc_c01060{bottom:557.716500px;}
.yb_c01060{bottom:586.543500px;}
.ya_c01060{bottom:609.852000px;}
.y9_c01060{bottom:632.535000px;}
.y8_c01060{bottom:655.200000px;}
.y7_c01060{bottom:677.428500px;}
.y6_c01060{bottom:700.947000px;}
.y5_c01060{bottom:722.994000px;}
.y4_c01060{bottom:746.337000px;}
.y3_c01060{bottom:769.128000px;}
.y2_c01060{bottom:791.995500px;}
.y1_c01060{bottom:814.620000px;}
.h10_c01060{height:58.808966px;}
.h8_c01060{height:61.950000px;}
.h6_c01060{height:63.000000px;}
.h9_c01060{height:64.050000px;}
.he_c01060{height:65.100000px;}
.h5_c01060{height:66.150000px;}
.hc_c01060{height:67.200000px;}
.h7_c01060{height:68.250000px;}
.hd_c01060{height:69.300000px;}
.h3_c01060{height:70.350000px;}
.hb_c01060{height:70.367023px;}
.hf_c01060{height:71.400000px;}
.ha_c01060{height:72.450000px;}
.h4_c01060{height:73.500000px;}
.h2_c01060{height:74.550000px;}
.h1_c01060{height:1005.000000px;}
.h0_c01060{height:1005.150000px;}
.w0_c01060{width:715.200000px;}
.w1_c01060{width:715.500000px;}
.x0_c01060{left:0.000000px;}
.x7a_c01060{left:135.000000px;}
.x82_c01060{left:136.600500px;}
.x7d_c01060{left:147.960000px;}
.x1_c01060{left:151.740000px;}
.x31_c01060{left:155.520000px;}
.x21_c01060{left:162.270000px;}
.x16_c01060{left:163.890000px;}
.xc_c01060{left:165.240000px;}
.x32_c01060{left:177.930000px;}
.x17_c01060{left:185.760000px;}
.x77_c01060{left:186.840000px;}
.x2_c01060{left:189.270000px;}
.xd_c01060{left:190.890000px;}
.x38_c01060{left:193.050000px;}
.x83_c01060{left:196.258782px;}
.x60_c01060{left:201.150000px;}
.x45_c01060{left:202.770000px;}
.x3c_c01060{left:204.390000px;}
.x74_c01060{left:213.030000px;}
.x7e_c01060{left:218.160000px;}
.x61_c01060{left:221.670000px;}
.x51_c01060{left:223.560000px;}
.x6a_c01060{left:224.640000px;}
.x3_c01060{left:225.990000px;}
.xe_c01060{left:230.580000px;}
.x1d_c01060{left:231.660000px;}
.x18_c01060{left:235.440000px;}
.x40_c01060{left:237.330000px;}
.x2a_c01060{left:241.380000px;}
.x39_c01060{left:244.350000px;}
.x19_c01060{left:248.670000px;}
.x33_c01060{left:251.100000px;}
.x57_c01060{left:252.178500px;}
.x78_c01060{left:255.420000px;}
.x4_c01060{left:256.500000px;}
.xf_c01060{left:258.120000px;}
.x65_c01060{left:259.200000px;}
.x72_c01060{left:260.820000px;}
.x6e_c01060{left:261.900000px;}
.x2b_c01060{left:265.140000px;}
.x7f_c01060{left:269.190000px;}
.x58_c01060{left:270.204000px;}
.x52_c01060{left:271.620000px;}
.x1a_c01060{left:277.830000px;}
.x5_c01060{left:282.420000px;}
.x73_c01060{left:287.010000px;}
.x49_c01060{left:288.360000px;}
.x10_c01060{left:292.140000px;}
.x22_c01060{left:294.840000px;}
.x41_c01060{left:297.000000px;}
.x46_c01060{left:298.890000px;}
.x4c_c01060{left:300.780000px;}
.x79_c01060{left:304.830000px;}
.x6f_c01060{left:305.910000px;}
.x2c_c01060{left:311.580000px;}
.x66_c01060{left:315.900000px;}
.x6b_c01060{left:318.060000px;}
.x4a_c01060{left:319.410000px;}
.x34_c01060{left:321.030000px;}
.x2d_c01060{left:332.370000px;}
.x84_c01060{left:333.957446px;}
.x62_c01060{left:335.070000px;}
.x6_c01060{left:338.310000px;}
.x59_c01060{left:342.289500px;}
.x23_c01060{left:343.440000px;}
.x53_c01060{left:344.520000px;}
.x1e_c01060{left:348.300000px;}
.x42_c01060{left:349.650000px;}
.x5a_c01060{left:350.922000px;}
.x6c_c01060{left:358.020000px;}
.x67_c01060{left:359.370000px;}
.x80_c01060{left:360.450000px;}
.x3d_c01060{left:361.530000px;}
.x70_c01060{left:362.880000px;}
.x63_c01060{left:365.310000px;}
.x2e_c01060{left:367.200000px;}
.x7_c01060{left:368.280000px;}
.x11_c01060{left:370.440000px;}
.x4d_c01060{left:372.330000px;}
.x24_c01060{left:374.490000px;}
.x1b_c01060{left:383.940000px;}
.x35_c01060{left:385.560000px;}
.x1f_c01060{left:387.180000px;}
.x3e_c01060{left:389.880000px;}
.x12_c01060{left:392.580000px;}
.x8_c01060{left:398.250000px;}
.x25_c01060{left:400.680000px;}
.x4b_c01060{left:405.000000px;}
.x3a_c01060{left:409.320000px;}
.x2f_c01060{left:410.940000px;}
.x13_c01060{left:414.450000px;}
.x5b_c01060{left:417.558000px;}
.x3b_c01060{left:420.120000px;}
.x36_c01060{left:424.710000px;}
.x1c_c01060{left:426.870000px;}
.x71_c01060{left:429.300000px;}
.x20_c01060{left:433.080000px;}
.x26_c01060{left:434.700000px;}
.x4e_c01060{left:436.860000px;}
.x9_c01060{left:443.340000px;}
.x6d_c01060{left:444.960000px;}
.x5e_c01060{left:446.224500px;}
.x7b_c01060{left:450.900000px;}
.x14_c01060{left:455.220000px;}
.x3f_c01060{left:457.380000px;}
.x54_c01060{left:459.270000px;}
.x47_c01060{left:461.160000px;}
.x27_c01060{left:463.860000px;}
.x75_c01060{left:468.720000px;}
.x81_c01060{left:473.040000px;}
.x4f_c01060{left:476.280000px;}
.x15_c01060{left:480.060000px;}
.x7c_c01060{left:482.490000px;}
.x37_c01060{left:486.810000px;}
.x68_c01060{left:488.160000px;}
.x43_c01060{left:489.780000px;}
.x48_c01060{left:490.860000px;}
.xa_c01060{left:493.830000px;}
.x76_c01060{left:495.990000px;}
.x5c_c01060{left:497.208000px;}
.x64_c01060{left:499.500000px;}
.x28_c01060{left:504.630000px;}
.x55_c01060{left:511.110000px;}
.x29_c01060{left:520.560000px;}
.x30_c01060{left:523.800000px;}
.x50_c01060{left:525.420000px;}
.x5f_c01060{left:536.059500px;}
.x56_c01060{left:538.380000px;}
.x44_c01060{left:541.890000px;}
.x69_c01060{left:543.510000px;}
.xb_c01060{left:546.210000px;}
.x5d_c01060{left:548.077500px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ws0_c01060{word-spacing:0.000000pt;}
.fse_c01060{font-size:52.274637pt;}
.fs6_c01060{font-size:55.066667pt;}
.fs4_c01060{font-size:56.000000pt;}
.fs7_c01060{font-size:56.933333pt;}
.fsc_c01060{font-size:57.866667pt;}
.fs3_c01060{font-size:58.800000pt;}
.fsa_c01060{font-size:59.733333pt;}
.fs5_c01060{font-size:60.666667pt;}
.fsb_c01060{font-size:61.600000pt;}
.fs1_c01060{font-size:62.533333pt;}
.fs9_c01060{font-size:62.548465pt;}
.fsd_c01060{font-size:63.466667pt;}
.fs8_c01060{font-size:64.400000pt;}
.fs2_c01060{font-size:65.333333pt;}
.fs0_c01060{font-size:66.266667pt;}
.y0_c01060{bottom:0.000000pt;}
.y2b_c01060{bottom:129.884000pt;}
.y2c_c01060{bottom:132.431968pt;}
.y2d_c01060{bottom:133.487264pt;}
.y2e_c01060{bottom:136.525600pt;}
.y2f_c01060{bottom:138.312992pt;}
.y30_c01060{bottom:140.612704pt;}
.y2a_c01060{bottom:185.404000pt;}
.y29_c01060{bottom:205.085333pt;}
.y28_c01060{bottom:225.258667pt;}
.y27_c01060{bottom:245.768000pt;}
.y26_c01060{bottom:266.218667pt;}
.y25_c01060{bottom:287.085333pt;}
.y24_c01060{bottom:307.409333pt;}
.y23_c01060{bottom:327.816000pt;}
.y22_c01060{bottom:348.445333pt;}
.y21_c01060{bottom:368.981333pt;}
.y19_c01060{bottom:384.970667pt;}
.y1a_c01060{bottom:386.169168pt;}
.y1b_c01060{bottom:387.000651pt;}
.y1c_c01060{bottom:387.631787pt;}
.y1d_c01060{bottom:388.873848pt;}
.y1e_c01060{bottom:389.706621pt;}
.y1f_c01060{bottom:390.523320pt;}
.y20_c01060{bottom:392.280093pt;}
.y18_c01060{bottom:405.498667pt;}
.y17_c01060{bottom:405.860000pt;}
.y16_c01060{bottom:406.125333pt;}
.y15_c01060{bottom:406.426667pt;}
.y14_c01060{bottom:406.900000pt;}
.y13_c01060{bottom:406.961333pt;}
.y12_c01060{bottom:407.473333pt;}
.y11_c01060{bottom:407.601333pt;}
.y10_c01060{bottom:408.240000pt;}
.yf_c01060{bottom:428.566667pt;}
.ye_c01060{bottom:448.668000pt;}
.yd_c01060{bottom:475.529333pt;}
.yc_c01060{bottom:495.748000pt;}
.yb_c01060{bottom:521.372000pt;}
.ya_c01060{bottom:542.090667pt;}
.y9_c01060{bottom:562.253333pt;}
.y8_c01060{bottom:582.400000pt;}
.y7_c01060{bottom:602.158667pt;}
.y6_c01060{bottom:623.064000pt;}
.y5_c01060{bottom:642.661333pt;}
.y4_c01060{bottom:663.410667pt;}
.y3_c01060{bottom:683.669333pt;}
.y2_c01060{bottom:703.996000pt;}
.y1_c01060{bottom:724.106667pt;}
.h10_c01060{height:52.274637pt;}
.h8_c01060{height:55.066667pt;}
.h6_c01060{height:56.000000pt;}
.h9_c01060{height:56.933333pt;}
.he_c01060{height:57.866667pt;}
.h5_c01060{height:58.800000pt;}
.hc_c01060{height:59.733333pt;}
.h7_c01060{height:60.666667pt;}
.hd_c01060{height:61.600000pt;}
.h3_c01060{height:62.533333pt;}
.hb_c01060{height:62.548465pt;}
.hf_c01060{height:63.466667pt;}
.ha_c01060{height:64.400000pt;}
.h4_c01060{height:65.333333pt;}
.h2_c01060{height:66.266667pt;}
.h1_c01060{height:893.333333pt;}
.h0_c01060{height:893.466667pt;}
.w0_c01060{width:635.733333pt;}
.w1_c01060{width:636.000000pt;}
.x0_c01060{left:0.000000pt;}
.x7a_c01060{left:120.000000pt;}
.x82_c01060{left:121.422667pt;}
.x7d_c01060{left:131.520000pt;}
.x1_c01060{left:134.880000pt;}
.x31_c01060{left:138.240000pt;}
.x21_c01060{left:144.240000pt;}
.x16_c01060{left:145.680000pt;}
.xc_c01060{left:146.880000pt;}
.x32_c01060{left:158.160000pt;}
.x17_c01060{left:165.120000pt;}
.x77_c01060{left:166.080000pt;}
.x2_c01060{left:168.240000pt;}
.xd_c01060{left:169.680000pt;}
.x38_c01060{left:171.600000pt;}
.x83_c01060{left:174.452251pt;}
.x60_c01060{left:178.800000pt;}
.x45_c01060{left:180.240000pt;}
.x3c_c01060{left:181.680000pt;}
.x74_c01060{left:189.360000pt;}
.x7e_c01060{left:193.920000pt;}
.x61_c01060{left:197.040000pt;}
.x51_c01060{left:198.720000pt;}
.x6a_c01060{left:199.680000pt;}
.x3_c01060{left:200.880000pt;}
.xe_c01060{left:204.960000pt;}
.x1d_c01060{left:205.920000pt;}
.x18_c01060{left:209.280000pt;}
.x40_c01060{left:210.960000pt;}
.x2a_c01060{left:214.560000pt;}
.x39_c01060{left:217.200000pt;}
.x19_c01060{left:221.040000pt;}
.x33_c01060{left:223.200000pt;}
.x57_c01060{left:224.158667pt;}
.x78_c01060{left:227.040000pt;}
.x4_c01060{left:228.000000pt;}
.xf_c01060{left:229.440000pt;}
.x65_c01060{left:230.400000pt;}
.x72_c01060{left:231.840000pt;}
.x6e_c01060{left:232.800000pt;}
.x2b_c01060{left:235.680000pt;}
.x7f_c01060{left:239.280000pt;}
.x58_c01060{left:240.181333pt;}
.x52_c01060{left:241.440000pt;}
.x1a_c01060{left:246.960000pt;}
.x5_c01060{left:251.040000pt;}
.x73_c01060{left:255.120000pt;}
.x49_c01060{left:256.320000pt;}
.x10_c01060{left:259.680000pt;}
.x22_c01060{left:262.080000pt;}
.x41_c01060{left:264.000000pt;}
.x46_c01060{left:265.680000pt;}
.x4c_c01060{left:267.360000pt;}
.x79_c01060{left:270.960000pt;}
.x6f_c01060{left:271.920000pt;}
.x2c_c01060{left:276.960000pt;}
.x66_c01060{left:280.800000pt;}
.x6b_c01060{left:282.720000pt;}
.x4a_c01060{left:283.920000pt;}
.x34_c01060{left:285.360000pt;}
.x2d_c01060{left:295.440000pt;}
.x84_c01060{left:296.851063pt;}
.x62_c01060{left:297.840000pt;}
.x6_c01060{left:300.720000pt;}
.x59_c01060{left:304.257333pt;}
.x23_c01060{left:305.280000pt;}
.x53_c01060{left:306.240000pt;}
.x1e_c01060{left:309.600000pt;}
.x42_c01060{left:310.800000pt;}
.x5a_c01060{left:311.930667pt;}
.x6c_c01060{left:318.240000pt;}
.x67_c01060{left:319.440000pt;}
.x80_c01060{left:320.400000pt;}
.x3d_c01060{left:321.360000pt;}
.x70_c01060{left:322.560000pt;}
.x63_c01060{left:324.720000pt;}
.x2e_c01060{left:326.400000pt;}
.x7_c01060{left:327.360000pt;}
.x11_c01060{left:329.280000pt;}
.x4d_c01060{left:330.960000pt;}
.x24_c01060{left:332.880000pt;}
.x1b_c01060{left:341.280000pt;}
.x35_c01060{left:342.720000pt;}
.x1f_c01060{left:344.160000pt;}
.x3e_c01060{left:346.560000pt;}
.x12_c01060{left:348.960000pt;}
.x8_c01060{left:354.000000pt;}
.x25_c01060{left:356.160000pt;}
.x4b_c01060{left:360.000000pt;}
.x3a_c01060{left:363.840000pt;}
.x2f_c01060{left:365.280000pt;}
.x13_c01060{left:368.400000pt;}
.x5b_c01060{left:371.162667pt;}
.x3b_c01060{left:373.440000pt;}
.x36_c01060{left:377.520000pt;}
.x1c_c01060{left:379.440000pt;}
.x71_c01060{left:381.600000pt;}
.x20_c01060{left:384.960000pt;}
.x26_c01060{left:386.400000pt;}
.x4e_c01060{left:388.320000pt;}
.x9_c01060{left:394.080000pt;}
.x6d_c01060{left:395.520000pt;}
.x5e_c01060{left:396.644000pt;}
.x7b_c01060{left:400.800000pt;}
.x14_c01060{left:404.640000pt;}
.x3f_c01060{left:406.560000pt;}
.x54_c01060{left:408.240000pt;}
.x47_c01060{left:409.920000pt;}
.x27_c01060{left:412.320000pt;}
.x75_c01060{left:416.640000pt;}
.x81_c01060{left:420.480000pt;}
.x4f_c01060{left:423.360000pt;}
.x15_c01060{left:426.720000pt;}
.x7c_c01060{left:428.880000pt;}
.x37_c01060{left:432.720000pt;}
.x68_c01060{left:433.920000pt;}
.x43_c01060{left:435.360000pt;}
.x48_c01060{left:436.320000pt;}
.xa_c01060{left:438.960000pt;}
.x76_c01060{left:440.880000pt;}
.x5c_c01060{left:441.962667pt;}
.x64_c01060{left:444.000000pt;}
.x28_c01060{left:448.560000pt;}
.x55_c01060{left:454.320000pt;}
.x29_c01060{left:462.720000pt;}
.x30_c01060{left:465.600000pt;}
.x50_c01060{left:467.040000pt;}
.x5f_c01060{left:476.497333pt;}
.x56_c01060{left:478.560000pt;}
.x44_c01060{left:481.680000pt;}
.x69_c01060{left:483.120000pt;}
.xb_c01060{left:485.520000pt;}
.x5d_c01060{left:487.180000pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_c01061{transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020155,0.000000,0.000000,0.250000,0,0);}
.ma3_c01061{transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053570,0.000000,0.000000,0.250000,0,0);}
.mab_c01061{transform:matrix(0.065390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065390,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{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);}
.m4f_c01061{transform:matrix(0.074939,-0.000974,0.003250,0.249979,0,0);-ms-transform:matrix(0.074939,-0.000974,0.003250,0.249979,0,0);-webkit-transform:matrix(0.074939,-0.000974,0.003250,0.249979,0,0);}
.m71_c01061{transform:matrix(0.090127,-0.001172,0.003250,0.249979,0,0);-ms-transform:matrix(0.090127,-0.001172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.090127,-0.001172,0.003250,0.249979,0,0);}
.mcb_c01061{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);}
.m91_c01061{transform:matrix(0.134544,-0.001749,0.003250,0.249979,0,0);-ms-transform:matrix(0.134544,-0.001749,0.003250,0.249979,0,0);-webkit-transform:matrix(0.134544,-0.001749,0.003250,0.249979,0,0);}
.m8d_c01061{transform:matrix(0.136468,-0.001774,0.003250,0.249979,0,0);-ms-transform:matrix(0.136468,-0.001774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.136468,-0.001774,0.003250,0.249979,0,0);}
.mc7_c01061{transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137710,0.000000,0.000000,0.250000,0,0);}
.m2f_c01061{transform:matrix(0.138758,-0.001804,0.003250,0.249979,0,0);-ms-transform:matrix(0.138758,-0.001804,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138758,-0.001804,0.003250,0.249979,0,0);}
.m37_c01061{transform:matrix(0.141373,-0.001838,0.003250,0.249979,0,0);-ms-transform:matrix(0.141373,-0.001838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.141373,-0.001838,0.003250,0.249979,0,0);}
.m81_c01061{transform:matrix(0.145318,-0.001889,0.003250,0.249979,0,0);-ms-transform:matrix(0.145318,-0.001889,0.003250,0.249979,0,0);-webkit-transform:matrix(0.145318,-0.001889,0.003250,0.249979,0,0);}
.m60_c01061{transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);-ms-transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148402,-0.001929,0.003250,0.249979,0,0);}
.m63_c01061{transform:matrix(0.151032,-0.001963,0.003250,0.249979,0,0);-ms-transform:matrix(0.151032,-0.001963,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151032,-0.001963,0.003250,0.249979,0,0);}
.m16_c01061{transform:matrix(0.153197,-0.001992,0.003250,0.249979,0,0);-ms-transform:matrix(0.153197,-0.001992,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153197,-0.001992,0.003250,0.249979,0,0);}
.mb2_c01061{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);}
.m41_c01061{transform:matrix(0.153722,-0.001998,0.003250,0.249979,0,0);-ms-transform:matrix(0.153722,-0.001998,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153722,-0.001998,0.003250,0.249979,0,0);}
.m64_c01061{transform:matrix(0.153767,-0.001999,0.003250,0.249979,0,0);-ms-transform:matrix(0.153767,-0.001999,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153767,-0.001999,0.003250,0.249979,0,0);}
.m5e_c01061{transform:matrix(0.154817,-0.002013,0.003250,0.249979,0,0);-ms-transform:matrix(0.154817,-0.002013,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154817,-0.002013,0.003250,0.249979,0,0);}
.m79_c01061{transform:matrix(0.154977,-0.002015,0.003250,0.249979,0,0);-ms-transform:matrix(0.154977,-0.002015,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154977,-0.002015,0.003250,0.249979,0,0);}
.m90_c01061{transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-ms-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);}
.m45_c01061{transform:matrix(0.156192,-0.002030,0.003250,0.249979,0,0);-ms-transform:matrix(0.156192,-0.002030,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156192,-0.002030,0.003250,0.249979,0,0);}
.m39_c01061{transform:matrix(0.157302,-0.002045,0.003250,0.249979,0,0);-ms-transform:matrix(0.157302,-0.002045,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157302,-0.002045,0.003250,0.249979,0,0);}
.m99_c01061{transform:matrix(0.158392,-0.002059,0.003250,0.249979,0,0);-ms-transform:matrix(0.158392,-0.002059,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158392,-0.002059,0.003250,0.249979,0,0);}
.m98_c01061{transform:matrix(0.159307,-0.002071,0.003250,0.249979,0,0);-ms-transform:matrix(0.159307,-0.002071,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159307,-0.002071,0.003250,0.249979,0,0);}
.m6a_c01061{transform:matrix(0.161381,-0.002098,0.003250,0.249979,0,0);-ms-transform:matrix(0.161381,-0.002098,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161381,-0.002098,0.003250,0.249979,0,0);}
.m22_c01061{transform:matrix(0.161406,-0.002098,0.003250,0.249979,0,0);-ms-transform:matrix(0.161406,-0.002098,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161406,-0.002098,0.003250,0.249979,0,0);}
.m27_c01061{transform:matrix(0.161801,-0.002103,0.003250,0.249979,0,0);-ms-transform:matrix(0.161801,-0.002103,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161801,-0.002103,0.003250,0.249979,0,0);}
.m65_c01061{transform:matrix(0.161931,-0.002105,0.003250,0.249979,0,0);-ms-transform:matrix(0.161931,-0.002105,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161931,-0.002105,0.003250,0.249979,0,0);}
.m28_c01061{transform:matrix(0.162241,-0.002109,0.003250,0.249979,0,0);-ms-transform:matrix(0.162241,-0.002109,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162241,-0.002109,0.003250,0.249979,0,0);}
.mc2_c01061{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);}
.m34_c01061{transform:matrix(0.163661,-0.002128,0.003250,0.249979,0,0);-ms-transform:matrix(0.163661,-0.002128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163661,-0.002128,0.003250,0.249979,0,0);}
.m8b_c01061{transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);-ms-transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163761,-0.002129,0.003250,0.249979,0,0);}
.m5f_c01061{transform:matrix(0.164561,-0.002139,0.003250,0.249979,0,0);-ms-transform:matrix(0.164561,-0.002139,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164561,-0.002139,0.003250,0.249979,0,0);}
.m1d_c01061{transform:matrix(0.165331,-0.002149,0.003250,0.249979,0,0);-ms-transform:matrix(0.165331,-0.002149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165331,-0.002149,0.003250,0.249979,0,0);}
.mf_c01061{transform:matrix(0.166536,-0.002165,0.003250,0.249979,0,0);-ms-transform:matrix(0.166536,-0.002165,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166536,-0.002165,0.003250,0.249979,0,0);}
.m8f_c01061{transform:matrix(0.166871,-0.002169,0.003250,0.249979,0,0);-ms-transform:matrix(0.166871,-0.002169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166871,-0.002169,0.003250,0.249979,0,0);}
.m25_c01061{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);}
.m9e_c01061{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);}
.m80_c01061{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);}
.m3d_c01061{transform:matrix(0.170711,-0.002219,0.003250,0.249979,0,0);-ms-transform:matrix(0.170711,-0.002219,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170711,-0.002219,0.003250,0.249979,0,0);}
.m30_c01061{transform:matrix(0.172635,-0.002244,0.003250,0.249979,0,0);-ms-transform:matrix(0.172635,-0.002244,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172635,-0.002244,0.003250,0.249979,0,0);}
.m67_c01061{transform:matrix(0.173305,-0.002253,0.003250,0.249979,0,0);-ms-transform:matrix(0.173305,-0.002253,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173305,-0.002253,0.003250,0.249979,0,0);}
.m9f_c01061{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);}
.m36_c01061{transform:matrix(0.174540,-0.002269,0.003250,0.249979,0,0);-ms-transform:matrix(0.174540,-0.002269,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174540,-0.002269,0.003250,0.249979,0,0);}
.m86_c01061{transform:matrix(0.176195,-0.002291,0.003250,0.249979,0,0);-ms-transform:matrix(0.176195,-0.002291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176195,-0.002291,0.003250,0.249979,0,0);}
.m21_c01061{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);}
.m38_c01061{transform:matrix(0.176915,-0.002300,0.003250,0.249979,0,0);-ms-transform:matrix(0.176915,-0.002300,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176915,-0.002300,0.003250,0.249979,0,0);}
.m82_c01061{transform:matrix(0.178405,-0.002319,0.003250,0.249979,0,0);-ms-transform:matrix(0.178405,-0.002319,0.003250,0.249979,0,0);-webkit-transform:matrix(0.178405,-0.002319,0.003250,0.249979,0,0);}
.m7c_c01061{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);}
.m5c_c01061{transform:matrix(0.179050,-0.002328,0.003250,0.249979,0,0);-ms-transform:matrix(0.179050,-0.002328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179050,-0.002328,0.003250,0.249979,0,0);}
.m85_c01061{transform:matrix(0.179120,-0.002329,0.003250,0.249979,0,0);-ms-transform:matrix(0.179120,-0.002329,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179120,-0.002329,0.003250,0.249979,0,0);}
.m7e_c01061{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);}
.ma0_c01061{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);}
.m5a_c01061{transform:matrix(0.180560,-0.002347,0.003250,0.249979,0,0);-ms-transform:matrix(0.180560,-0.002347,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180560,-0.002347,0.003250,0.249979,0,0);}
.mc9_c01061{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);}
.m7d_c01061{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);}
.m48_c01061{transform:matrix(0.181885,-0.002365,0.003250,0.249979,0,0);-ms-transform:matrix(0.181885,-0.002365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181885,-0.002365,0.003250,0.249979,0,0);}
.m7f_c01061{transform:matrix(0.182270,-0.002370,0.003250,0.249979,0,0);-ms-transform:matrix(0.182270,-0.002370,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182270,-0.002370,0.003250,0.249979,0,0);}
.ma_c01061{transform:matrix(0.182543,-0.004746,0.006498,0.249916,0,0);-ms-transform:matrix(0.182543,-0.004746,0.006498,0.249916,0,0);-webkit-transform:matrix(0.182543,-0.004746,0.006498,0.249916,0,0);}
.m32_c01061{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);}
.m76_c01061{transform:matrix(0.184999,-0.002405,0.003250,0.249979,0,0);-ms-transform:matrix(0.184999,-0.002405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184999,-0.002405,0.003250,0.249979,0,0);}
.m20_c01061{transform:matrix(0.185174,-0.002407,0.003250,0.249979,0,0);-ms-transform:matrix(0.185174,-0.002407,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185174,-0.002407,0.003250,0.249979,0,0);}
.m66_c01061{transform:matrix(0.185979,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.185979,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185979,-0.002418,0.003250,0.249979,0,0);}
.mb1_c01061{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);}
.m42_c01061{transform:matrix(0.186114,-0.002419,0.003250,0.249979,0,0);-ms-transform:matrix(0.186114,-0.002419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186114,-0.002419,0.003250,0.249979,0,0);}
.m33_c01061{transform:matrix(0.186214,-0.002421,0.003250,0.249979,0,0);-ms-transform:matrix(0.186214,-0.002421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186214,-0.002421,0.003250,0.249979,0,0);}
.mca_c01061{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);}
.m14_c01061{transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);-ms-transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187349,-0.002436,0.003250,0.249979,0,0);}
.m94_c01061{transform:matrix(0.188684,-0.002453,0.003250,0.249979,0,0);-ms-transform:matrix(0.188684,-0.002453,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188684,-0.002453,0.003250,0.249979,0,0);}
.m29_c01061{transform:matrix(0.189344,-0.002461,0.003250,0.249979,0,0);-ms-transform:matrix(0.189344,-0.002461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189344,-0.002461,0.003250,0.249979,0,0);}
.m97_c01061{transform:matrix(0.189409,-0.002462,0.003250,0.249979,0,0);-ms-transform:matrix(0.189409,-0.002462,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189409,-0.002462,0.003250,0.249979,0,0);}
.m55_c01061{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);}
.m75_c01061{transform:matrix(0.190234,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190234,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190234,-0.002473,0.003250,0.249979,0,0);}
.m7b_c01061{transform:matrix(0.190314,-0.002474,0.003250,0.249979,0,0);-ms-transform:matrix(0.190314,-0.002474,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190314,-0.002474,0.003250,0.249979,0,0);}
.m2e_c01061{transform:matrix(0.190514,-0.002477,0.003250,0.249979,0,0);-ms-transform:matrix(0.190514,-0.002477,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190514,-0.002477,0.003250,0.249979,0,0);}
.m44_c01061{transform:matrix(0.193874,-0.002520,0.003250,0.249979,0,0);-ms-transform:matrix(0.193874,-0.002520,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193874,-0.002520,0.003250,0.249979,0,0);}
.m5b_c01061{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);}
.m6c_c01061{transform:matrix(0.194879,-0.002533,0.003250,0.249979,0,0);-ms-transform:matrix(0.194879,-0.002533,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194879,-0.002533,0.003250,0.249979,0,0);}
.ma5_c01061{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);}
.m11_c01061{transform:matrix(0.196578,-0.002556,0.003250,0.249979,0,0);-ms-transform:matrix(0.196578,-0.002556,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196578,-0.002556,0.003250,0.249979,0,0);}
.m69_c01061{transform:matrix(0.196808,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196808,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196808,-0.002559,0.003250,0.249979,0,0);}
.maf_c01061{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);}
.mb8_c01061{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);}
.m40_c01061{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);}
.m59_c01061{transform:matrix(0.197893,-0.002573,0.003250,0.249979,0,0);-ms-transform:matrix(0.197893,-0.002573,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197893,-0.002573,0.003250,0.249979,0,0);}
.m78_c01061{transform:matrix(0.197983,-0.002574,0.003250,0.249979,0,0);-ms-transform:matrix(0.197983,-0.002574,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197983,-0.002574,0.003250,0.249979,0,0);}
.mbf_c01061{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);}
.mbc_c01061{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);}
.m7a_c01061{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);}
.m4c_c01061{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);}
.m4d_c01061{transform:matrix(0.201803,-0.002623,0.003250,0.249979,0,0);-ms-transform:matrix(0.201803,-0.002623,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201803,-0.002623,0.003250,0.249979,0,0);}
.m6b_c01061{transform:matrix(0.203168,-0.002641,0.003250,0.249979,0,0);-ms-transform:matrix(0.203168,-0.002641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203168,-0.002641,0.003250,0.249979,0,0);}
.m12_c01061{transform:matrix(0.203918,-0.002651,0.003250,0.249979,0,0);-ms-transform:matrix(0.203918,-0.002651,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203918,-0.002651,0.003250,0.249979,0,0);}
.m77_c01061{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);}
.m1c_c01061{transform:matrix(0.204163,-0.002654,0.003250,0.249979,0,0);-ms-transform:matrix(0.204163,-0.002654,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204163,-0.002654,0.003250,0.249979,0,0);}
.m74_c01061{transform:matrix(0.204773,-0.002662,0.003250,0.249979,0,0);-ms-transform:matrix(0.204773,-0.002662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204773,-0.002662,0.003250,0.249979,0,0);}
.m2a_c01061{transform:matrix(0.204978,-0.002665,0.003250,0.249979,0,0);-ms-transform:matrix(0.204978,-0.002665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204978,-0.002665,0.003250,0.249979,0,0);}
.mad_c01061{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);}
.m3c_c01061{transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);-ms-transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205138,-0.002667,0.003250,0.249979,0,0);}
.m47_c01061{transform:matrix(0.205293,-0.002669,0.003250,0.249979,0,0);-ms-transform:matrix(0.205293,-0.002669,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205293,-0.002669,0.003250,0.249979,0,0);}
.m3f_c01061{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);}
.md_c01061{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);}
.m70_c01061{transform:matrix(0.206613,-0.002686,0.003250,0.249979,0,0);-ms-transform:matrix(0.206613,-0.002686,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206613,-0.002686,0.003250,0.249979,0,0);}
.m8c_c01061{transform:matrix(0.206978,-0.002691,0.003250,0.249979,0,0);-ms-transform:matrix(0.206978,-0.002691,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206978,-0.002691,0.003250,0.249979,0,0);}
.m88_c01061{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);}
.mc3_c01061{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);}
.maa_c01061{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);}
.m31_c01061{transform:matrix(0.209407,-0.002722,0.003250,0.249979,0,0);-ms-transform:matrix(0.209407,-0.002722,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209407,-0.002722,0.003250,0.249979,0,0);}
.m72_c01061{transform:matrix(0.209552,-0.002724,0.003250,0.249979,0,0);-ms-transform:matrix(0.209552,-0.002724,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209552,-0.002724,0.003250,0.249979,0,0);}
.m35_c01061{transform:matrix(0.209572,-0.002724,0.003250,0.249979,0,0);-ms-transform:matrix(0.209572,-0.002724,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209572,-0.002724,0.003250,0.249979,0,0);}
.m9b_c01061{transform:matrix(0.209897,-0.002729,0.003250,0.249979,0,0);-ms-transform:matrix(0.209897,-0.002729,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209897,-0.002729,0.003250,0.249979,0,0);}
.mba_c01061{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);}
.m61_c01061{transform:matrix(0.211052,-0.002744,0.003250,0.249979,0,0);-ms-transform:matrix(0.211052,-0.002744,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211052,-0.002744,0.003250,0.249979,0,0);}
.m1e_c01061{transform:matrix(0.211092,-0.002744,0.003250,0.249979,0,0);-ms-transform:matrix(0.211092,-0.002744,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211092,-0.002744,0.003250,0.249979,0,0);}
.ma9_c01061{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);}
.mae_c01061{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);}
.mb7_c01061{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);}
.m89_c01061{transform:matrix(0.212267,-0.002759,0.003250,0.249979,0,0);-ms-transform:matrix(0.212267,-0.002759,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212267,-0.002759,0.003250,0.249979,0,0);}
.ma4_c01061{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);}
.m83_c01061{transform:matrix(0.212942,-0.002768,0.003250,0.249979,0,0);-ms-transform:matrix(0.212942,-0.002768,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212942,-0.002768,0.003250,0.249979,0,0);}
.m84_c01061{transform:matrix(0.213242,-0.002772,0.003250,0.249979,0,0);-ms-transform:matrix(0.213242,-0.002772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213242,-0.002772,0.003250,0.249979,0,0);}
.mc6_c01061{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);}
.m4a_c01061{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);}
.ma6_c01061{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);}
.m93_c01061{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);}
.m17_c01061{transform:matrix(0.216162,-0.002810,0.003250,0.249979,0,0);-ms-transform:matrix(0.216162,-0.002810,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216162,-0.002810,0.003250,0.249979,0,0);}
.m13_c01061{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);}
.m4e_c01061{transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);-ms-transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217822,-0.002832,0.003250,0.249979,0,0);}
.m52_c01061{transform:matrix(0.220106,-0.002861,0.003250,0.249979,0,0);-ms-transform:matrix(0.220106,-0.002861,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220106,-0.002861,0.003250,0.249979,0,0);}
.m3e_c01061{transform:matrix(0.221071,-0.002874,0.003250,0.249979,0,0);-ms-transform:matrix(0.221071,-0.002874,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221071,-0.002874,0.003250,0.249979,0,0);}
.m10_c01061{transform:matrix(0.221106,-0.002874,0.003250,0.249979,0,0);-ms-transform:matrix(0.221106,-0.002874,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221106,-0.002874,0.003250,0.249979,0,0);}
.mc5_c01061{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);}
.m68_c01061{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);}
.m0_c01061{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);}
.m49_c01061{transform:matrix(0.224811,-0.002923,0.003250,0.249979,0,0);-ms-transform:matrix(0.224811,-0.002923,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224811,-0.002923,0.003250,0.249979,0,0);}
.m53_c01061{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);}
.mbe_c01061{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);}
.mb9_c01061{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);}
.m9a_c01061{transform:matrix(0.226976,-0.002951,0.003250,0.249979,0,0);-ms-transform:matrix(0.226976,-0.002951,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226976,-0.002951,0.003250,0.249979,0,0);}
.mbb_c01061{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);}
.m19_c01061{transform:matrix(0.227356,-0.002956,0.003250,0.249979,0,0);-ms-transform:matrix(0.227356,-0.002956,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227356,-0.002956,0.003250,0.249979,0,0);}
.m24_c01061{transform:matrix(0.227616,-0.002959,0.003250,0.249979,0,0);-ms-transform:matrix(0.227616,-0.002959,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227616,-0.002959,0.003250,0.249979,0,0);}
.m96_c01061{transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);-ms-transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227741,-0.002961,0.003250,0.249979,0,0);}
.mb5_c01061{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.ma2_c01061{transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228320,0.000000,0.000000,0.250000,0,0);}
.m5d_c01061{transform:matrix(0.228836,-0.002975,0.003250,0.249979,0,0);-ms-transform:matrix(0.228836,-0.002975,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228836,-0.002975,0.003250,0.249979,0,0);}
.m73_c01061{transform:matrix(0.229321,-0.002981,0.003250,0.249979,0,0);-ms-transform:matrix(0.229321,-0.002981,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229321,-0.002981,0.003250,0.249979,0,0);}
.mc0_c01061{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);}
.mc4_c01061{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.m8e_c01061{transform:matrix(0.231410,-0.003008,0.003250,0.249979,0,0);-ms-transform:matrix(0.231410,-0.003008,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231410,-0.003008,0.003250,0.249979,0,0);}
.mc1_c01061{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);}
.m56_c01061{transform:matrix(0.232955,-0.003028,0.003250,0.249979,0,0);-ms-transform:matrix(0.232955,-0.003028,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232955,-0.003028,0.003250,0.249979,0,0);}
.m51_c01061{transform:matrix(0.233150,-0.003031,0.003250,0.249979,0,0);-ms-transform:matrix(0.233150,-0.003031,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233150,-0.003031,0.003250,0.249979,0,0);}
.m46_c01061{transform:matrix(0.235085,-0.003056,0.003250,0.249979,0,0);-ms-transform:matrix(0.235085,-0.003056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235085,-0.003056,0.003250,0.249979,0,0);}
.mb0_c01061{transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);}
.mb3_c01061{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m2d_c01061{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);}
.m1f_c01061{transform:matrix(0.236540,-0.003075,0.003250,0.249979,0,0);-ms-transform:matrix(0.236540,-0.003075,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236540,-0.003075,0.003250,0.249979,0,0);}
.m9d_c01061{transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);}
.mb4_c01061{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_c01061{transform:matrix(0.243534,-0.003166,0.003250,0.249979,0,0);-ms-transform:matrix(0.243534,-0.003166,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243534,-0.003166,0.003250,0.249979,0,0);}
.me_c01061{transform:matrix(0.243804,-0.003169,0.003250,0.249979,0,0);-ms-transform:matrix(0.243804,-0.003169,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243804,-0.003169,0.003250,0.249979,0,0);}
.ma7_c01061{transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244635,0.000000,0.000000,0.250000,0,0);}
.m26_c01061{transform:matrix(0.245464,-0.003191,0.003250,0.249979,0,0);-ms-transform:matrix(0.245464,-0.003191,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245464,-0.003191,0.003250,0.249979,0,0);}
.ma1_c01061{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_c01061{transform:matrix(0.246444,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246444,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246444,-0.003204,0.003250,0.249979,0,0);}
.m4b_c01061{transform:matrix(0.247224,-0.003214,0.003250,0.249979,0,0);-ms-transform:matrix(0.247224,-0.003214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247224,-0.003214,0.003250,0.249979,0,0);}
.m1_c01061{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);}
.mac_c01061{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);}
.m57_c01061{transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);-ms-transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251624,-0.003271,0.003250,0.249979,0,0);}
.m8_c01061{transform:matrix(0.258608,-0.006724,0.006498,0.249916,0,0);-ms-transform:matrix(0.258608,-0.006724,0.006498,0.249916,0,0);-webkit-transform:matrix(0.258608,-0.006724,0.006498,0.249916,0,0);}
.m87_c01061{transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);-ms-transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);}
.m54_c01061{transform:matrix(0.260988,-0.003393,0.003250,0.249979,0,0);-ms-transform:matrix(0.260988,-0.003393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260988,-0.003393,0.003250,0.249979,0,0);}
.m95_c01061{transform:matrix(0.261848,-0.003404,0.003250,0.249979,0,0);-ms-transform:matrix(0.261848,-0.003404,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261848,-0.003404,0.003250,0.249979,0,0);}
.m3b_c01061{transform:matrix(0.262458,-0.003412,0.003250,0.249979,0,0);-ms-transform:matrix(0.262458,-0.003412,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262458,-0.003412,0.003250,0.249979,0,0);}
.m23_c01061{transform:matrix(0.265048,-0.003446,0.003250,0.249979,0,0);-ms-transform:matrix(0.265048,-0.003446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265048,-0.003446,0.003250,0.249979,0,0);}
.m43_c01061{transform:matrix(0.275072,-0.003576,0.003250,0.249979,0,0);-ms-transform:matrix(0.275072,-0.003576,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275072,-0.003576,0.003250,0.249979,0,0);}
.mc8_c01061{transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);}
.m3a_c01061{transform:matrix(0.277112,-0.003602,0.003250,0.249979,0,0);-ms-transform:matrix(0.277112,-0.003602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277112,-0.003602,0.003250,0.249979,0,0);}
.m2c_c01061{transform:matrix(0.278141,-0.003616,0.003250,0.249979,0,0);-ms-transform:matrix(0.278141,-0.003616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278141,-0.003616,0.003250,0.249979,0,0);}
.mb6_c01061{transform:matrix(0.279035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279035,0.000000,0.000000,0.250000,0,0);}
.m1b_c01061{transform:matrix(0.281386,-0.003658,0.003250,0.249979,0,0);-ms-transform:matrix(0.281386,-0.003658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.281386,-0.003658,0.003250,0.249979,0,0);}
.m92_c01061{transform:matrix(0.291600,-0.003791,0.003250,0.249979,0,0);-ms-transform:matrix(0.291600,-0.003791,0.003250,0.249979,0,0);-webkit-transform:matrix(0.291600,-0.003791,0.003250,0.249979,0,0);}
.ma8_c01061{transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307975,0.000000,0.000000,0.250000,0,0);}
.m50_c01061{transform:matrix(0.314528,-0.004089,0.003250,0.249979,0,0);-ms-transform:matrix(0.314528,-0.004089,0.003250,0.249979,0,0);-webkit-transform:matrix(0.314528,-0.004089,0.003250,0.249979,0,0);}
.m62_c01061{transform:matrix(0.329947,-0.004289,0.003250,0.249979,0,0);-ms-transform:matrix(0.329947,-0.004289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.329947,-0.004289,0.003250,0.249979,0,0);}
.mb_c01061{transform:matrix(0.345603,-0.008986,0.006498,0.249916,0,0);-ms-transform:matrix(0.345603,-0.008986,0.006498,0.249916,0,0);-webkit-transform:matrix(0.345603,-0.008986,0.006498,0.249916,0,0);}
.m58_c01061{transform:matrix(0.352675,-0.004585,0.003250,0.249979,0,0);-ms-transform:matrix(0.352675,-0.004585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.352675,-0.004585,0.003250,0.249979,0,0);}
.m2b_c01061{transform:matrix(0.353795,-0.004599,0.003250,0.249979,0,0);-ms-transform:matrix(0.353795,-0.004599,0.003250,0.249979,0,0);-webkit-transform:matrix(0.353795,-0.004599,0.003250,0.249979,0,0);}
.m6e_c01061{transform:matrix(0.357005,-0.004641,0.003250,0.249979,0,0);-ms-transform:matrix(0.357005,-0.004641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.357005,-0.004641,0.003250,0.249979,0,0);}
.m6_c01061{transform:matrix(0.364607,-0.009480,0.006498,0.249916,0,0);-ms-transform:matrix(0.364607,-0.009480,0.006498,0.249916,0,0);-webkit-transform:matrix(0.364607,-0.009480,0.006498,0.249916,0,0);}
.m5_c01061{transform:matrix(0.369120,-0.009597,0.006498,0.249916,0,0);-ms-transform:matrix(0.369120,-0.009597,0.006498,0.249916,0,0);-webkit-transform:matrix(0.369120,-0.009597,0.006498,0.249916,0,0);}
.m6f_c01061{transform:matrix(0.374608,-0.004870,0.003250,0.249979,0,0);-ms-transform:matrix(0.374608,-0.004870,0.003250,0.249979,0,0);-webkit-transform:matrix(0.374608,-0.004870,0.003250,0.249979,0,0);}
.m9_c01061{transform:matrix(0.408492,-0.010621,0.006498,0.249916,0,0);-ms-transform:matrix(0.408492,-0.010621,0.006498,0.249916,0,0);-webkit-transform:matrix(0.408492,-0.010621,0.006498,0.249916,0,0);}
.m6d_c01061{transform:matrix(0.420449,-0.005466,0.003250,0.249979,0,0);-ms-transform:matrix(0.420449,-0.005466,0.003250,0.249979,0,0);-webkit-transform:matrix(0.420449,-0.005466,0.003250,0.249979,0,0);}
.m8a_c01061{transform:matrix(0.474330,-0.006166,0.003250,0.249979,0,0);-ms-transform:matrix(0.474330,-0.006166,0.003250,0.249979,0,0);-webkit-transform:matrix(0.474330,-0.006166,0.003250,0.249979,0,0);}
.mc_c01061{transform:matrix(0.491939,-0.012790,0.006498,0.249916,0,0);-ms-transform:matrix(0.491939,-0.012790,0.006498,0.249916,0,0);-webkit-transform:matrix(0.491939,-0.012790,0.006498,0.249916,0,0);}
.m18_c01061{transform:matrix(0.843469,-0.010965,0.003250,0.249979,0,0);-ms-transform:matrix(0.843469,-0.010965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.843469,-0.010965,0.003250,0.249979,0,0);}
.m9c_c01061{transform:matrix(0.986235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.986235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.986235,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(1.009379,-0.026244,0.006498,0.249916,0,0);-ms-transform:matrix(1.009379,-0.026244,0.006498,0.249916,0,0);-webkit-transform:matrix(1.009379,-0.026244,0.006498,0.249916,0,0);}
.m7_c01061{transform:matrix(1.286650,-0.033453,0.006498,0.249916,0,0);-ms-transform:matrix(1.286650,-0.033453,0.006498,0.249916,0,0);-webkit-transform:matrix(1.286650,-0.033453,0.006498,0.249916,0,0);}
.m3_c01061{transform:matrix(3.638250,-0.094595,0.006498,0.249916,0,0);-ms-transform:matrix(3.638250,-0.094595,0.006498,0.249916,0,0);-webkit-transform:matrix(3.638250,-0.094595,0.006498,0.249916,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls0_c01061{letter-spacing:0.000000px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:0.000000px;}
.fc0_c01061{color:transparent;}
.fs12_c01061{font-size:22.050000px;}
.fs0_c01061{font-size:28.350000px;}
.fs14_c01061{font-size:47.250000px;}
.fs15_c01061{font-size:48.300000px;}
.fs13_c01061{font-size:50.400000px;}
.fs1_c01061{font-size:54.618452px;}
.fse_c01061{font-size:55.654702px;}
.fs16_c01061{font-size:57.750000px;}
.fs11_c01061{font-size:61.955235px;}
.fsd_c01061{font-size:63.005323px;}
.fs8_c01061{font-size:65.105501px;}
.fs5_c01061{font-size:66.155589px;}
.fsc_c01061{font-size:69.305856px;}
.fs7_c01061{font-size:70.355944px;}
.fs6_c01061{font-size:72.456122px;}
.fsf_c01061{font-size:73.506210px;}
.fs9_c01061{font-size:74.556299px;}
.fsb_c01061{font-size:75.606388px;}
.fsa_c01061{font-size:76.656477px;}
.fs4_c01061{font-size:90.300000px;}
.fs3_c01061{font-size:90.330516px;}
.fs10_c01061{font-size:105.008872px;}
.fs2_c01061{font-size:133.395065px;}
.y0_c01061{bottom:0.000000px;}
.ya0_c01061{bottom:146.070000px;}
.y9f_c01061{bottom:164.344500px;}
.y9e_c01061{bottom:182.476500px;}
.y9d_c01061{bottom:200.575500px;}
.y9c_c01061{bottom:219.909000px;}
.y98_c01061{bottom:446.472160px;}
.y97_c01061{bottom:446.472199px;}
.y92_c01061{bottom:446.472202px;}
.y94_c01061{bottom:446.472424px;}
.y99_c01061{bottom:446.472471px;}
.y95_c01061{bottom:446.472606px;}
.y93_c01061{bottom:446.472614px;}
.y96_c01061{bottom:446.472697px;}
.y9a_c01061{bottom:446.472741px;}
.y9b_c01061{bottom:446.473152px;}
.y8a_c01061{bottom:463.370979px;}
.y8c_c01061{bottom:463.371462px;}
.y90_c01061{bottom:463.371486px;}
.y8b_c01061{bottom:463.371561px;}
.y91_c01061{bottom:463.371668px;}
.y8f_c01061{bottom:463.371694px;}
.y8e_c01061{bottom:463.372064px;}
.y8d_c01061{bottom:463.372162px;}
.y82_c01061{bottom:490.576062px;}
.y83_c01061{bottom:490.576693px;}
.y84_c01061{bottom:490.577104px;}
.y85_c01061{bottom:490.577786px;}
.y86_c01061{bottom:490.578297px;}
.y87_c01061{bottom:490.578678px;}
.y89_c01061{bottom:490.579080px;}
.y88_c01061{bottom:490.579119px;}
.y80_c01061{bottom:513.551970px;}
.y7c_c01061{bottom:513.551976px;}
.y81_c01061{bottom:513.552211px;}
.y7b_c01061{bottom:513.552244px;}
.y7d_c01061{bottom:513.552436px;}
.y7a_c01061{bottom:513.552473px;}
.y7f_c01061{bottom:513.552659px;}
.y7e_c01061{bottom:513.552798px;}
.y79_c01061{bottom:535.724528px;}
.y78_c01061{bottom:535.725076px;}
.y70_c01061{bottom:535.725166px;}
.y71_c01061{bottom:535.725408px;}
.y77_c01061{bottom:535.725415px;}
.y75_c01061{bottom:535.725563px;}
.y76_c01061{bottom:535.725564px;}
.y73_c01061{bottom:535.726061px;}
.y74_c01061{bottom:535.726071px;}
.y72_c01061{bottom:535.726128px;}
.y6f_c01061{bottom:557.859027px;}
.y6e_c01061{bottom:557.859426px;}
.y6d_c01061{bottom:557.860065px;}
.y6b_c01061{bottom:582.463033px;}
.y6c_c01061{bottom:582.463434px;}
.y6a_c01061{bottom:582.463752px;}
.y69_c01061{bottom:582.463921px;}
.y68_c01061{bottom:582.464211px;}
.y63_c01061{bottom:582.464524px;}
.y66_c01061{bottom:582.464568px;}
.y67_c01061{bottom:582.464589px;}
.y64_c01061{bottom:582.464696px;}
.y65_c01061{bottom:582.465207px;}
.y5d_c01061{bottom:604.888792px;}
.y5e_c01061{bottom:604.888843px;}
.y5a_c01061{bottom:604.888968px;}
.y5b_c01061{bottom:604.889060px;}
.y62_c01061{bottom:604.889257px;}
.y59_c01061{bottom:604.889337px;}
.y5c_c01061{bottom:604.889380px;}
.y5f_c01061{bottom:604.889434px;}
.y60_c01061{bottom:604.889865px;}
.y61_c01061{bottom:604.889916px;}
.y51_c01061{bottom:626.114866px;}
.y52_c01061{bottom:626.417152px;}
.y53_c01061{bottom:626.742168px;}
.y54_c01061{bottom:627.003663px;}
.y55_c01061{bottom:627.734809px;}
.y56_c01061{bottom:628.149954px;}
.y57_c01061{bottom:628.429591px;}
.y58_c01061{bottom:629.046748px;}
.y49_c01061{bottom:648.526933px;}
.y4a_c01061{bottom:649.523545px;}
.y4b_c01061{bottom:649.705222px;}
.y4c_c01061{bottom:650.132419px;}
.y4d_c01061{bottom:650.580196px;}
.y4e_c01061{bottom:650.879923px;}
.y50_c01061{bottom:650.990794px;}
.y4f_c01061{bottom:651.003454px;}
.y40_c01061{bottom:673.267805px;}
.y3f_c01061{bottom:673.268083px;}
.y3e_c01061{bottom:673.268281px;}
.y41_c01061{bottom:673.268455px;}
.y45_c01061{bottom:673.268509px;}
.y42_c01061{bottom:673.268566px;}
.y43_c01061{bottom:673.268718px;}
.y44_c01061{bottom:673.268938px;}
.y46_c01061{bottom:673.268940px;}
.y48_c01061{bottom:673.269052px;}
.y47_c01061{bottom:673.269501px;}
.y3a_c01061{bottom:695.496690px;}
.y3b_c01061{bottom:695.496871px;}
.y3d_c01061{bottom:695.497173px;}
.y39_c01061{bottom:695.497209px;}
.y3c_c01061{bottom:695.497272px;}
.y38_c01061{bottom:695.497867px;}
.y37_c01061{bottom:695.498176px;}
.y36_c01061{bottom:695.498496px;}
.y35_c01061{bottom:695.499105px;}
.y34_c01061{bottom:717.945516px;}
.y33_c01061{bottom:717.946155px;}
.y2e_c01061{bottom:717.946368px;}
.y31_c01061{bottom:717.946450px;}
.y32_c01061{bottom:717.946602px;}
.y30_c01061{bottom:717.946620px;}
.y2f_c01061{bottom:717.946929px;}
.y24_c01061{bottom:739.256233px;}
.y25_c01061{bottom:739.444701px;}
.y26_c01061{bottom:739.703940px;}
.y27_c01061{bottom:740.206809px;}
.y28_c01061{bottom:740.375628px;}
.y29_c01061{bottom:740.568037px;}
.y2a_c01061{bottom:740.933286px;}
.y2b_c01061{bottom:741.233676px;}
.y2c_c01061{bottom:741.644505px;}
.y2d_c01061{bottom:741.834768px;}
.y1b_c01061{bottom:760.860330px;}
.y1c_c01061{bottom:761.218506px;}
.y1d_c01061{bottom:761.558118px;}
.y1e_c01061{bottom:762.176053px;}
.y1f_c01061{bottom:763.106437px;}
.y20_c01061{bottom:763.453752px;}
.y21_c01061{bottom:764.133912px;}
.y22_c01061{bottom:764.538342px;}
.y23_c01061{bottom:765.194478px;}
.y17_c01061{bottom:787.007542px;}
.y18_c01061{bottom:787.007793px;}
.y19_c01061{bottom:787.007814px;}
.y1a_c01061{bottom:787.007955px;}
.ye_c01061{bottom:807.031500px;}
.yf_c01061{bottom:807.512467px;}
.y10_c01061{bottom:807.846346px;}
.y11_c01061{bottom:808.565701px;}
.y12_c01061{bottom:808.825929px;}
.y13_c01061{bottom:809.843614px;}
.y14_c01061{bottom:810.054292px;}
.y15_c01061{bottom:810.420073px;}
.y16_c01061{bottom:811.152376px;}
.yd_c01061{bottom:848.746500px;}
.ya_c01061{bottom:853.997622px;}
.yb_c01061{bottom:854.806785px;}
.yc_c01061{bottom:857.570379px;}
.y7_c01061{bottom:889.941405px;}
.y8_c01061{bottom:896.187102px;}
.y9_c01061{bottom:897.637575px;}
.y3_c01061{bottom:914.229000px;}
.y4_c01061{bottom:922.021044px;}
.y2_c01061{bottom:924.469500px;}
.y5_c01061{bottom:924.989217px;}
.y6_c01061{bottom:925.978530px;}
.y1_c01061{bottom:928.530000px;}
.h14_c01061{height:22.050000px;}
.h2_c01061{height:28.350000px;}
.h16_c01061{height:47.250000px;}
.h17_c01061{height:48.300000px;}
.h15_c01061{height:50.400000px;}
.h3_c01061{height:54.618452px;}
.h10_c01061{height:55.654702px;}
.h18_c01061{height:57.750000px;}
.h13_c01061{height:61.955235px;}
.hf_c01061{height:63.005323px;}
.ha_c01061{height:65.105501px;}
.h7_c01061{height:66.155589px;}
.he_c01061{height:69.305856px;}
.h9_c01061{height:70.355944px;}
.h8_c01061{height:72.456122px;}
.h11_c01061{height:73.506210px;}
.hb_c01061{height:74.556299px;}
.hd_c01061{height:75.606388px;}
.hc_c01061{height:76.656477px;}
.h6_c01061{height:90.300000px;}
.h5_c01061{height:90.330516px;}
.h12_c01061{height:105.008872px;}
.h4_c01061{height:133.395065px;}
.h0_c01061{height:1008.450000px;}
.h1_c01061{height:1008.750000px;}
.w1_c01061{width:700.500000px;}
.w0_c01061{width:700.650000px;}
.x0_c01061{left:0.000000px;}
.x3_c01061{left:58.954500px;}
.xb_c01061{left:113.670000px;}
.x74_c01061{left:119.070000px;}
.x6c_c01061{left:131.490000px;}
.x77_c01061{left:146.610000px;}
.x31_c01061{left:148.771191px;}
.x1f_c01061{left:150.217737px;}
.xc_c01061{left:151.357500px;}
.x59_c01061{left:152.554785px;}
.x66_c01061{left:153.636864px;}
.x20_c01061{left:173.716758px;}
.x17_c01061{left:177.919456px;}
.x3f_c01061{left:182.952928px;}
.x78_c01061{left:187.110000px;}
.xd_c01061{left:188.355000px;}
.x2_c01061{left:191.160000px;}
.x26_c01061{left:193.055450px;}
.x53_c01061{left:199.808070px;}
.x18_c01061{left:204.043457px;}
.x21_c01061{left:206.121864px;}
.x2b_c01061{left:207.907244px;}
.x5e_c01061{left:210.880275px;}
.x32_c01061{left:213.036053px;}
.xe_c01061{left:214.038000px;}
.x5a_c01061{left:216.009510px;}
.x40_c01061{left:219.148320px;}
.x63_c01061{left:223.033435px;}
.x6d_c01061{left:224.910000px;}
.x27_c01061{left:226.268066px;}
.x9_c01061{left:228.335358px;}
.x49_c01061{left:239.230216px;}
.x2c_c01061{left:241.119860px;}
.x6e_c01061{left:244.890000px;}
.x33_c01061{left:247.058805px;}
.x28_c01061{left:249.220446px;}
.x3a_c01061{left:250.424997px;}
.x19_c01061{left:251.576956px;}
.x64_c01061{left:261.917007px;}
.x45_c01061{left:263.802403px;}
.xf_c01061{left:269.373000px;}
.x75_c01061{left:271.080000px;}
.x4a_c01061{left:277.033612px;}
.x34_c01061{left:279.191226px;}
.x65_c01061{left:281.358783px;}
.x5f_c01061{left:282.976443px;}
.x7f_c01061{left:288.360000px;}
.x10_c01061{left:289.390500px;}
.x7_c01061{left:290.756865px;}
.x2d_c01061{left:292.424037px;}
.x50_c01061{left:295.125474px;}
.x79_c01061{left:298.080000px;}
.x54_c01061{left:301.067671px;}
.x5b_c01061{left:304.308427px;}
.x4b_c01061{left:305.655448px;}
.x15_c01061{left:309.705521px;}
.x3b_c01061{left:311.225356px;}
.x22_c01061{left:314.136384px;}
.x55_c01061{left:315.378589px;}
.x2e_c01061{left:319.965698px;}
.x1a_c01061{left:323.144956px;}
.x41_c01061{left:329.549573px;}
.x46_c01061{left:331.037772px;}
.x51_c01061{left:332.928870px;}
.x60_c01061{left:338.871381px;}
.x80_c01061{left:340.200000px;}
.x8_c01061{left:344.465961px;}
.x67_c01061{left:347.784663px;}
.x1b_c01061{left:349.861457px;}
.x16_c01061{left:351.829638px;}
.x76_c01061{left:352.890000px;}
.xa_c01061{left:353.967423px;}
.x3c_c01061{left:356.056111px;}
.x4_c01061{left:358.648500px;}
.x23_c01061{left:359.773848px;}
.x11_c01061{left:367.674000px;}
.x35_c01061{left:369.919053px;}
.x42_c01061{left:375.678471px;}
.x52_c01061{left:377.213358px;}
.x4c_c01061{left:378.561772px;}
.x5c_c01061{left:379.915200px;}
.x12_c01061{left:383.880000px;}
.x3d_c01061{left:386.036282px;}
.x36_c01061{left:389.900926px;}
.x2f_c01061{left:391.791827px;}
.x7a_c01061{left:394.200000px;}
.x24_c01061{left:397.306286px;}
.x3e_c01061{left:398.423769px;}
.x1c_c01061{left:402.181456px;}
.x47_c01061{left:404.484174px;}
.x43_c01061{left:406.767589px;}
.x29_c01061{left:407.993778px;}
.x13_c01061{left:412.017000px;}
.x61_c01061{left:417.178602px;}
.x37_c01061{left:419.872997px;}
.x4d_c01061{left:421.225987px;}
.x56_c01061{left:426.358348px;}
.x30_c01061{left:430.675398px;}
.x1d_c01061{left:433.291456px;}
.x7b_c01061{left:439.830000px;}
.x68_c01061{left:444.452004px;}
.x2a_c01061{left:445.797174px;}
.x25_c01061{left:448.642620px;}
.x81_c01061{left:452.790000px;}
.x1_c01061{left:455.760000px;}
.x62_c01061{left:457.682446px;}
.x48_c01061{left:459.568975px;}
.x69_c01061{left:466.864287px;}
.x14_c01061{left:468.348000px;}
.x4e_c01061{left:470.909892px;}
.x5_c01061{left:472.809000px;}
.x6a_c01061{left:474.155515px;}
.x44_c01061{left:475.360158px;}
.x57_c01061{left:477.932565px;}
.x5d_c01061{left:479.012950px;}
.x1e_c01061{left:483.763456px;}
.x38_c01061{left:488.730118px;}
.x4f_c01061{left:495.752584px;}
.x6f_c01061{left:500.310000px;}
.x6_c01061{left:510.859500px;}
.x6b_c01061{left:513.309126px;}
.x7c_c01061{left:518.400000px;}
.x7d_c01061{left:528.930000px;}
.x70_c01061{left:533.790000px;}
.x39_c01061{left:545.705252px;}
.x71_c01061{left:548.100000px;}
.x58_c01061{left:550.568850px;}
.x72_c01061{left:569.700000px;}
.x82_c01061{left:575.100000px;}
.x7e_c01061{left:576.180000px;}
.x73_c01061{left:600.480000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ws0_c01061{word-spacing:0.000000pt;}
.fs12_c01061{font-size:19.600000pt;}
.fs0_c01061{font-size:25.200000pt;}
.fs14_c01061{font-size:42.000000pt;}
.fs15_c01061{font-size:42.933333pt;}
.fs13_c01061{font-size:44.800000pt;}
.fs1_c01061{font-size:48.549735pt;}
.fse_c01061{font-size:49.470846pt;}
.fs16_c01061{font-size:51.333333pt;}
.fs11_c01061{font-size:55.071320pt;}
.fsd_c01061{font-size:56.004732pt;}
.fs8_c01061{font-size:57.871556pt;}
.fs5_c01061{font-size:58.804968pt;}
.fsc_c01061{font-size:61.605205pt;}
.fs7_c01061{font-size:62.538617pt;}
.fs6_c01061{font-size:64.405442pt;}
.fsf_c01061{font-size:65.338854pt;}
.fs9_c01061{font-size:66.272266pt;}
.fsb_c01061{font-size:67.205678pt;}
.fsa_c01061{font-size:68.139090pt;}
.fs4_c01061{font-size:80.266667pt;}
.fs3_c01061{font-size:80.293792pt;}
.fs10_c01061{font-size:93.341220pt;}
.fs2_c01061{font-size:118.573391pt;}
.y0_c01061{bottom:0.000000pt;}
.ya0_c01061{bottom:129.840000pt;}
.y9f_c01061{bottom:146.084000pt;}
.y9e_c01061{bottom:162.201333pt;}
.y9d_c01061{bottom:178.289333pt;}
.y9c_c01061{bottom:195.474667pt;}
.y98_c01061{bottom:396.864143pt;}
.y97_c01061{bottom:396.864177pt;}
.y92_c01061{bottom:396.864180pt;}
.y94_c01061{bottom:396.864377pt;}
.y99_c01061{bottom:396.864419pt;}
.y95_c01061{bottom:396.864539pt;}
.y93_c01061{bottom:396.864545pt;}
.y96_c01061{bottom:396.864620pt;}
.y9a_c01061{bottom:396.864659pt;}
.y9b_c01061{bottom:396.865024pt;}
.y8a_c01061{bottom:411.885315pt;}
.y8c_c01061{bottom:411.885744pt;}
.y90_c01061{bottom:411.885765pt;}
.y8b_c01061{bottom:411.885832pt;}
.y91_c01061{bottom:411.885927pt;}
.y8f_c01061{bottom:411.885951pt;}
.y8e_c01061{bottom:411.886279pt;}
.y8d_c01061{bottom:411.886367pt;}
.y82_c01061{bottom:436.067611pt;}
.y83_c01061{bottom:436.068172pt;}
.y84_c01061{bottom:436.068537pt;}
.y85_c01061{bottom:436.069143pt;}
.y86_c01061{bottom:436.069597pt;}
.y87_c01061{bottom:436.069936pt;}
.y89_c01061{bottom:436.070293pt;}
.y88_c01061{bottom:436.070328pt;}
.y80_c01061{bottom:456.490640pt;}
.y7c_c01061{bottom:456.490645pt;}
.y81_c01061{bottom:456.490855pt;}
.y7b_c01061{bottom:456.490884pt;}
.y7d_c01061{bottom:456.491055pt;}
.y7a_c01061{bottom:456.491087pt;}
.y7f_c01061{bottom:456.491252pt;}
.y7e_c01061{bottom:456.491376pt;}
.y79_c01061{bottom:476.199580pt;}
.y78_c01061{bottom:476.200068pt;}
.y70_c01061{bottom:476.200148pt;}
.y71_c01061{bottom:476.200363pt;}
.y77_c01061{bottom:476.200369pt;}
.y75_c01061{bottom:476.200500pt;}
.y76_c01061{bottom:476.200501pt;}
.y73_c01061{bottom:476.200943pt;}
.y74_c01061{bottom:476.200952pt;}
.y72_c01061{bottom:476.201003pt;}
.y6f_c01061{bottom:495.874691pt;}
.y6e_c01061{bottom:495.875045pt;}
.y6d_c01061{bottom:495.875613pt;}
.y6b_c01061{bottom:517.744919pt;}
.y6c_c01061{bottom:517.745275pt;}
.y6a_c01061{bottom:517.745557pt;}
.y69_c01061{bottom:517.745708pt;}
.y68_c01061{bottom:517.745965pt;}
.y63_c01061{bottom:517.746244pt;}
.y66_c01061{bottom:517.746283pt;}
.y67_c01061{bottom:517.746301pt;}
.y64_c01061{bottom:517.746396pt;}
.y65_c01061{bottom:517.746851pt;}
.y5d_c01061{bottom:537.678927pt;}
.y5e_c01061{bottom:537.678972pt;}
.y5a_c01061{bottom:537.679083pt;}
.y5b_c01061{bottom:537.679164pt;}
.y62_c01061{bottom:537.679340pt;}
.y59_c01061{bottom:537.679411pt;}
.y5c_c01061{bottom:537.679449pt;}
.y5f_c01061{bottom:537.679497pt;}
.y60_c01061{bottom:537.679880pt;}
.y61_c01061{bottom:537.679925pt;}
.y51_c01061{bottom:556.546548pt;}
.y52_c01061{bottom:556.815247pt;}
.y53_c01061{bottom:557.104149pt;}
.y54_c01061{bottom:557.336589pt;}
.y55_c01061{bottom:557.986497pt;}
.y56_c01061{bottom:558.355515pt;}
.y57_c01061{bottom:558.604081pt;}
.y58_c01061{bottom:559.152665pt;}
.y49_c01061{bottom:576.468385pt;}
.y4a_c01061{bottom:577.354263pt;}
.y4b_c01061{bottom:577.515753pt;}
.y4c_c01061{bottom:577.895484pt;}
.y4d_c01061{bottom:578.293508pt;}
.y4e_c01061{bottom:578.559932pt;}
.y50_c01061{bottom:578.658484pt;}
.y4f_c01061{bottom:578.669737pt;}
.y40_c01061{bottom:598.460271pt;}
.y3f_c01061{bottom:598.460519pt;}
.y3e_c01061{bottom:598.460695pt;}
.y41_c01061{bottom:598.460849pt;}
.y45_c01061{bottom:598.460897pt;}
.y42_c01061{bottom:598.460948pt;}
.y43_c01061{bottom:598.461083pt;}
.y44_c01061{bottom:598.461279pt;}
.y46_c01061{bottom:598.461280pt;}
.y48_c01061{bottom:598.461380pt;}
.y47_c01061{bottom:598.461779pt;}
.y3a_c01061{bottom:618.219280pt;}
.y3b_c01061{bottom:618.219441pt;}
.y3d_c01061{bottom:618.219709pt;}
.y39_c01061{bottom:618.219741pt;}
.y3c_c01061{bottom:618.219797pt;}
.y38_c01061{bottom:618.220327pt;}
.y37_c01061{bottom:618.220601pt;}
.y36_c01061{bottom:618.220885pt;}
.y35_c01061{bottom:618.221427pt;}
.y34_c01061{bottom:638.173792pt;}
.y33_c01061{bottom:638.174360pt;}
.y2e_c01061{bottom:638.174549pt;}
.y31_c01061{bottom:638.174623pt;}
.y32_c01061{bottom:638.174757pt;}
.y30_c01061{bottom:638.174773pt;}
.y2f_c01061{bottom:638.175048pt;}
.y24_c01061{bottom:657.116652pt;}
.y25_c01061{bottom:657.284179pt;}
.y26_c01061{bottom:657.514613pt;}
.y27_c01061{bottom:657.961608pt;}
.y28_c01061{bottom:658.111669pt;}
.y29_c01061{bottom:658.282700pt;}
.y2a_c01061{bottom:658.607365pt;}
.y2b_c01061{bottom:658.874379pt;}
.y2c_c01061{bottom:659.239560pt;}
.y2d_c01061{bottom:659.408683pt;}
.y1b_c01061{bottom:676.320293pt;}
.y1c_c01061{bottom:676.638672pt;}
.y1d_c01061{bottom:676.940549pt;}
.y1e_c01061{bottom:677.489825pt;}
.y1f_c01061{bottom:678.316833pt;}
.y20_c01061{bottom:678.625557pt;}
.y21_c01061{bottom:679.230144pt;}
.y22_c01061{bottom:679.589637pt;}
.y23_c01061{bottom:680.172869pt;}
.y17_c01061{bottom:699.562260pt;}
.y18_c01061{bottom:699.562483pt;}
.y19_c01061{bottom:699.562501pt;}
.y1a_c01061{bottom:699.562627pt;}
.ye_c01061{bottom:717.361333pt;}
.yf_c01061{bottom:717.788860pt;}
.y10_c01061{bottom:718.085641pt;}
.y11_c01061{bottom:718.725068pt;}
.y12_c01061{bottom:718.956381pt;}
.y13_c01061{bottom:719.860991pt;}
.y14_c01061{bottom:720.048260pt;}
.y15_c01061{bottom:720.373399pt;}
.y16_c01061{bottom:721.024335pt;}
.yd_c01061{bottom:754.441333pt;}
.ya_c01061{bottom:759.108997pt;}
.yb_c01061{bottom:759.828253pt;}
.yc_c01061{bottom:762.284781pt;}
.y7_c01061{bottom:791.059027pt;}
.y8_c01061{bottom:796.610757pt;}
.y9_c01061{bottom:797.900067pt;}
.y3_c01061{bottom:812.648000pt;}
.y4_c01061{bottom:819.574261pt;}
.y2_c01061{bottom:821.750667pt;}
.y5_c01061{bottom:822.212637pt;}
.y6_c01061{bottom:823.092027pt;}
.y1_c01061{bottom:825.360000pt;}
.h14_c01061{height:19.600000pt;}
.h2_c01061{height:25.200000pt;}
.h16_c01061{height:42.000000pt;}
.h17_c01061{height:42.933333pt;}
.h15_c01061{height:44.800000pt;}
.h3_c01061{height:48.549735pt;}
.h10_c01061{height:49.470846pt;}
.h18_c01061{height:51.333333pt;}
.h13_c01061{height:55.071320pt;}
.hf_c01061{height:56.004732pt;}
.ha_c01061{height:57.871556pt;}
.h7_c01061{height:58.804968pt;}
.he_c01061{height:61.605205pt;}
.h9_c01061{height:62.538617pt;}
.h8_c01061{height:64.405442pt;}
.h11_c01061{height:65.338854pt;}
.hb_c01061{height:66.272266pt;}
.hd_c01061{height:67.205678pt;}
.hc_c01061{height:68.139090pt;}
.h6_c01061{height:80.266667pt;}
.h5_c01061{height:80.293792pt;}
.h12_c01061{height:93.341220pt;}
.h4_c01061{height:118.573391pt;}
.h0_c01061{height:896.400000pt;}
.h1_c01061{height:896.666667pt;}
.w1_c01061{width:622.666667pt;}
.w0_c01061{width:622.800000pt;}
.x0_c01061{left:0.000000pt;}
.x3_c01061{left:52.404000pt;}
.xb_c01061{left:101.040000pt;}
.x74_c01061{left:105.840000pt;}
.x6c_c01061{left:116.880000pt;}
.x77_c01061{left:130.320000pt;}
.x31_c01061{left:132.241059pt;}
.x1f_c01061{left:133.526877pt;}
.xc_c01061{left:134.540000pt;}
.x59_c01061{left:135.604253pt;}
.x66_c01061{left:136.566101pt;}
.x20_c01061{left:154.414896pt;}
.x17_c01061{left:158.150628pt;}
.x3f_c01061{left:162.624825pt;}
.x78_c01061{left:166.320000pt;}
.xd_c01061{left:167.426667pt;}
.x2_c01061{left:169.920000pt;}
.x26_c01061{left:171.604844pt;}
.x53_c01061{left:177.607173pt;}
.x18_c01061{left:181.371961pt;}
.x21_c01061{left:183.219435pt;}
.x2b_c01061{left:184.806439pt;}
.x5e_c01061{left:187.449133pt;}
.x32_c01061{left:189.365380pt;}
.xe_c01061{left:190.256000pt;}
.x5a_c01061{left:192.008453pt;}
.x40_c01061{left:194.798507pt;}
.x63_c01061{left:198.251943pt;}
.x6d_c01061{left:199.920000pt;}
.x27_c01061{left:201.127169pt;}
.x9_c01061{left:202.964763pt;}
.x49_c01061{left:212.649081pt;}
.x2c_c01061{left:214.328764pt;}
.x6e_c01061{left:217.680000pt;}
.x33_c01061{left:219.607827pt;}
.x28_c01061{left:221.529285pt;}
.x3a_c01061{left:222.599997pt;}
.x19_c01061{left:223.623961pt;}
.x64_c01061{left:232.815117pt;}
.x45_c01061{left:234.491025pt;}
.xf_c01061{left:239.442667pt;}
.x75_c01061{left:240.960000pt;}
.x4a_c01061{left:246.252100pt;}
.x34_c01061{left:248.169979pt;}
.x65_c01061{left:250.096696pt;}
.x5f_c01061{left:251.534616pt;}
.x7f_c01061{left:256.320000pt;}
.x10_c01061{left:257.236000pt;}
.x7_c01061{left:258.450547pt;}
.x2d_c01061{left:259.932477pt;}
.x50_c01061{left:262.333755pt;}
.x79_c01061{left:264.960000pt;}
.x54_c01061{left:267.615708pt;}
.x5b_c01061{left:270.496380pt;}
.x4b_c01061{left:271.693732pt;}
.x15_c01061{left:275.293796pt;}
.x3b_c01061{left:276.644761pt;}
.x22_c01061{left:279.232341pt;}
.x55_c01061{left:280.336524pt;}
.x2e_c01061{left:284.413953pt;}
.x1a_c01061{left:287.239961pt;}
.x41_c01061{left:292.932953pt;}
.x46_c01061{left:294.255797pt;}
.x51_c01061{left:295.936773pt;}
.x60_c01061{left:301.219005pt;}
.x80_c01061{left:302.400000pt;}
.x8_c01061{left:306.191965pt;}
.x67_c01061{left:309.141923pt;}
.x1b_c01061{left:310.987961pt;}
.x16_c01061{left:312.737456pt;}
.x76_c01061{left:313.680000pt;}
.xa_c01061{left:314.637709pt;}
.x3c_c01061{left:316.494321pt;}
.x4_c01061{left:318.798667pt;}
.x23_c01061{left:319.798976pt;}
.x11_c01061{left:326.821333pt;}
.x35_c01061{left:328.816936pt;}
.x42_c01061{left:333.936419pt;}
.x52_c01061{left:335.300763pt;}
.x4c_c01061{left:336.499353pt;}
.x5c_c01061{left:337.702400pt;}
.x12_c01061{left:341.226667pt;}
.x3d_c01061{left:343.143361pt;}
.x36_c01061{left:346.578601pt;}
.x2f_c01061{left:348.259401pt;}
.x7a_c01061{left:350.400000pt;}
.x24_c01061{left:353.161143pt;}
.x3e_c01061{left:354.154461pt;}
.x1c_c01061{left:357.494628pt;}
.x47_c01061{left:359.541488pt;}
.x43_c01061{left:361.571191pt;}
.x29_c01061{left:362.661136pt;}
.x13_c01061{left:366.237333pt;}
.x61_c01061{left:370.825424pt;}
.x37_c01061{left:373.220441pt;}
.x4d_c01061{left:374.423100pt;}
.x56_c01061{left:378.985199pt;}
.x30_c01061{left:382.822576pt;}
.x1d_c01061{left:385.147961pt;}
.x7b_c01061{left:390.960000pt;}
.x68_c01061{left:395.068448pt;}
.x2a_c01061{left:396.264155pt;}
.x25_c01061{left:398.793440pt;}
.x81_c01061{left:402.480000pt;}
.x1_c01061{left:405.120000pt;}
.x62_c01061{left:406.828841pt;}
.x48_c01061{left:408.505756pt;}
.x69_c01061{left:414.990477pt;}
.x14_c01061{left:416.309333pt;}
.x4e_c01061{left:418.586571pt;}
.x5_c01061{left:420.274667pt;}
.x6a_c01061{left:421.471569pt;}
.x44_c01061{left:422.542363pt;}
.x57_c01061{left:424.828947pt;}
.x5d_c01061{left:425.789289pt;}
.x1e_c01061{left:430.011961pt;}
.x38_c01061{left:434.426772pt;}
.x4f_c01061{left:440.668964pt;}
.x6f_c01061{left:444.720000pt;}
.x6_c01061{left:454.097333pt;}
.x6b_c01061{left:456.274779pt;}
.x7c_c01061{left:460.800000pt;}
.x7d_c01061{left:470.160000pt;}
.x70_c01061{left:474.480000pt;}
.x39_c01061{left:485.071335pt;}
.x71_c01061{left:487.200000pt;}
.x58_c01061{left:489.394533pt;}
.x72_c01061{left:506.400000pt;}
.x82_c01061{left:511.200000pt;}
.x7e_c01061{left:512.160000pt;}
.x73_c01061{left:533.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_c01062 {
    display:none;
  }
  .loading-indicator_c01062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01062 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01062 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01062" -> "#page-container .classname_c01062")
 */
.pf_c01062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01062 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01062 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01062 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01062 {overflow:visible;}
  }
}
.c_c01062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01062 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01062:after { /* webkit #35443 */
  content: '';
}
.t_c01062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01062 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01062 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01062 { /* info for Javascript */
  display:none;
}
.l_c01062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.000000;font-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_c01062{transform:matrix(0.003010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003010,0.000000,0.000000,0.250000,0,0);}
.m9e_c01062{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);}
.ma8_c01062{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);}
.m94_c01062{transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017495,0.000000,0.000000,0.250000,0,0);}
.m71_c01062{transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020070,0.000000,0.000000,0.250000,0,0);}
.m38_c01062{transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);}
.m34_c01062{transform:matrix(0.038615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038615,0.000000,0.000000,0.250000,0,0);}
.ma7_c01062{transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053305,0.000000,0.000000,0.250000,0,0);}
.m91_c01062{transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060715,0.000000,0.000000,0.250000,0,0);}
.m3a_c01062{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);}
.m2e_c01062{transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139340,0.000000,0.000000,0.250000,0,0);}
.m55_c01062{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m43_c01062{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);}
.m57_c01062{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);}
.m5e_c01062{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);}
.m14_c01062{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);}
.ma4_c01062{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);}
.m2a_c01062{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);}
.m7a_c01062{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);}
.m8d_c01062{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);}
.mb3_c01062{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);}
.m7f_c01062{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);}
.ma2_c01062{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);}
.m72_c01062{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.ma_c01062{transform:matrix(0.162012,-0.009578,0.014754,0.249564,0,0);-ms-transform:matrix(0.162012,-0.009578,0.014754,0.249564,0,0);-webkit-transform:matrix(0.162012,-0.009578,0.014754,0.249564,0,0);}
.m23_c01062{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);}
.m77_c01062{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);}
.m41_c01062{transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);}
.ma1_c01062{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);}
.m13_c01062{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);}
.m62_c01062{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);}
.m56_c01062{transform:matrix(0.163910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163910,0.000000,0.000000,0.250000,0,0);}
.m65_c01062{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);}
.m3e_c01062{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);}
.m4e_c01062{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);}
.m5d_c01062{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);}
.m64_c01062{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);}
.m3d_c01062{transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171170,0.000000,0.000000,0.250000,0,0);}
.m58_c01062{transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171715,0.000000,0.000000,0.250000,0,0);}
.m33_c01062{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);}
.m75_c01062{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);}
.m96_c01062{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);}
.m83_c01062{transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172315,0.000000,0.000000,0.250000,0,0);}
.m51_c01062{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);}
.m7c_c01062{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);}
.m2f_c01062{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);}
.m36_c01062{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);}
.m74_c01062{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);}
.m6d_c01062{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);}
.m80_c01062{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);}
.m29_c01062{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);}
.m42_c01062{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);}
.m1e_c01062{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);}
.m53_c01062{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);}
.m99_c01062{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);}
.m12_c01062{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);}
.m30_c01062{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);}
.m32_c01062{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);}
.m7b_c01062{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);}
.m60_c01062{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);}
.m78_c01062{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);}
.ma3_c01062{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);}
.m28_c01062{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);}
.m8f_c01062{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);}
.m27_c01062{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);}
.m2d_c01062{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);}
.m50_c01062{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);}
.m67_c01062{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);}
.m48_c01062{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);}
.m76_c01062{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);}
.m45_c01062{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);}
.m79_c01062{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);}
.ma6_c01062{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);}
.m39_c01062{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);}
.m16_c01062{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);}
.m9c_c01062{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);}
.m1d_c01062{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);}
.m6c_c01062{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);}
.m63_c01062{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);}
.m4f_c01062{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);}
.mac_c01062{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);}
.mba_c01062{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);}
.m5f_c01062{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);}
.m25_c01062{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);}
.m11_c01062{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);}
.m59_c01062{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);}
.m10_c01062{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);}
.m82_c01062{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);}
.m73_c01062{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);}
.mb0_c01062{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);}
.m9f_c01062{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);}
.m47_c01062{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);}
.m35_c01062{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);}
.m8a_c01062{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);}
.m97_c01062{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);}
.m3c_c01062{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_c01062{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);}
.m7d_c01062{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);}
.m20_c01062{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);}
.ma0_c01062{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);}
.m21_c01062{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);}
.m61_c01062{transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201135,0.000000,0.000000,0.250000,0,0);}
.m15_c01062{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);}
.m88_c01062{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);}
.m5a_c01062{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);}
.m8e_c01062{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);}
.m2b_c01062{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);}
.m5b_c01062{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);}
.m46_c01062{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);}
.m8c_c01062{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);}
.m6e_c01062{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);}
.m49_c01062{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);}
.m90_c01062{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);}
.m3f_c01062{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);}
.mb9_c01062{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);}
.mab_c01062{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.m68_c01062{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);}
.m69_c01062{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);}
.mb2_c01062{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);}
.maa_c01062{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);}
.m26_c01062{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);}
.m22_c01062{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);}
.m86_c01062{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);}
.ma9_c01062{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);}
.m87_c01062{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);}
.m19_c01062{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);}
.m7_c01062{transform:matrix(0.213802,-0.012640,0.014754,0.249564,0,0);-ms-transform:matrix(0.213802,-0.012640,0.014754,0.249564,0,0);-webkit-transform:matrix(0.213802,-0.012640,0.014754,0.249564,0,0);}
.m6b_c01062{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);}
.m54_c01062{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);}
.m1f_c01062{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);}
.mad_c01062{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);}
.m6_c01062{transform:matrix(0.218793,-0.012935,0.014754,0.249564,0,0);-ms-transform:matrix(0.218793,-0.012935,0.014754,0.249564,0,0);-webkit-transform:matrix(0.218793,-0.012935,0.014754,0.249564,0,0);}
.m52_c01062{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);}
.m6a_c01062{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);}
.m44_c01062{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);}
.m8b_c01062{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);}
.mb_c01062{transform:matrix(0.224528,-0.013274,0.014754,0.249564,0,0);-ms-transform:matrix(0.224528,-0.013274,0.014754,0.249564,0,0);-webkit-transform:matrix(0.224528,-0.013274,0.014754,0.249564,0,0);}
.mb1_c01062{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);}
.m6f_c01062{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);}
.m81_c01062{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);}
.m24_c01062{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);}
.m4d_c01062{transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235710,0.000000,0.000000,0.250000,0,0);}
.m7e_c01062{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);}
.mb8_c01062{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);}
.m66_c01062{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);}
.m8_c01062{transform:matrix(0.245591,-0.014519,0.014754,0.249564,0,0);-ms-transform:matrix(0.245591,-0.014519,0.014754,0.249564,0,0);-webkit-transform:matrix(0.245591,-0.014519,0.014754,0.249564,0,0);}
.mb5_c01062{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.me_c01062{transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);}
.m9d_c01062{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);}
.m92_c01062{transform:matrix(0.258810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258810,0.000000,0.000000,0.250000,0,0);}
.maf_c01062{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);}
.m37_c01062{transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264965,0.000000,0.000000,0.250000,0,0);}
.m1b_c01062{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);}
.m93_c01062{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);}
.m9b_c01062{transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269610,0.000000,0.000000,0.250000,0,0);}
.m98_c01062{transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);}
.m4_c01062{transform:matrix(0.288646,-0.017064,0.014754,0.249564,0,0);-ms-transform:matrix(0.288646,-0.017064,0.014754,0.249564,0,0);-webkit-transform:matrix(0.288646,-0.017064,0.014754,0.249564,0,0);}
.m17_c01062{transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289095,0.000000,0.000000,0.250000,0,0);}
.m3b_c01062{transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293610,0.000000,0.000000,0.250000,0,0);}
.m84_c01062{transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294105,0.000000,0.000000,0.250000,0,0);}
.mb7_c01062{transform:matrix(0.297595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297595,0.000000,0.000000,0.250000,0,0);}
.m4c_c01062{transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301990,0.000000,0.000000,0.250000,0,0);}
.mae_c01062{transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304260,0.000000,0.000000,0.250000,0,0);}
.m9a_c01062{transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307535,0.000000,0.000000,0.250000,0,0);}
.m18_c01062{transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);}
.m9_c01062{transform:matrix(0.308357,-0.018229,0.014754,0.249564,0,0);-ms-transform:matrix(0.308357,-0.018229,0.014754,0.249564,0,0);-webkit-transform:matrix(0.308357,-0.018229,0.014754,0.249564,0,0);}
.ma5_c01062{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);}
.m4b_c01062{transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(0.338459,-0.020009,0.014754,0.249564,0,0);-ms-transform:matrix(0.338459,-0.020009,0.014754,0.249564,0,0);-webkit-transform:matrix(0.338459,-0.020009,0.014754,0.249564,0,0);}
.m1a_c01062{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);}
.mc_c01062{transform:matrix(0.360355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360355,0.000000,0.000000,0.250000,0,0);}
.m85_c01062{transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361940,0.000000,0.000000,0.250000,0,0);}
.m5c_c01062{transform:matrix(0.363195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363195,0.000000,0.000000,0.250000,0,0);}
.m89_c01062{transform:matrix(0.379525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379525,0.000000,0.000000,0.250000,0,0);}
.m2c_c01062{transform:matrix(0.389475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389475,0.000000,0.000000,0.250000,0,0);}
.m40_c01062{transform:matrix(0.390675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390675,0.000000,0.000000,0.250000,0,0);}
.m70_c01062{transform:matrix(0.391570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391570,0.000000,0.000000,0.250000,0,0);}
.md_c01062{transform:matrix(0.397880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397880,0.000000,0.000000,0.250000,0,0);}
.mf_c01062{transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406580,0.000000,0.000000,0.250000,0,0);}
.mbc_c01062{transform:matrix(0.411850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411850,0.000000,0.000000,0.250000,0,0);}
.m95_c01062{transform:matrix(0.426210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426210,0.000000,0.000000,0.250000,0,0);}
.mb6_c01062{transform:matrix(0.463540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463540,0.000000,0.000000,0.250000,0,0);}
.m2_c01062{transform:matrix(0.487179,-0.028801,0.014754,0.249564,0,0);-ms-transform:matrix(0.487179,-0.028801,0.014754,0.249564,0,0);-webkit-transform:matrix(0.487179,-0.028801,0.014754,0.249564,0,0);}
.m0_c01062{transform:matrix(0.535740,-0.031672,0.014754,0.249564,0,0);-ms-transform:matrix(0.535740,-0.031672,0.014754,0.249564,0,0);-webkit-transform:matrix(0.535740,-0.031672,0.014754,0.249564,0,0);}
.m5_c01062{transform:matrix(0.552031,-0.032635,0.014754,0.249564,0,0);-ms-transform:matrix(0.552031,-0.032635,0.014754,0.249564,0,0);-webkit-transform:matrix(0.552031,-0.032635,0.014754,0.249564,0,0);}
.mbb_c01062{transform:matrix(0.580045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580045,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.805728,-0.047633,0.014754,0.249564,0,0);-ms-transform:matrix(0.805728,-0.047633,0.014754,0.249564,0,0);-webkit-transform:matrix(0.805728,-0.047633,0.014754,0.249564,0,0);}
.mb4_c01062{transform:matrix(0.910710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910710,0.000000,0.000000,0.250000,0,0);}
.m4a_c01062{transform:matrix(1.577445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.577445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.577445,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls0_c01062{letter-spacing:0.000000px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:0.000000px;}
._0_c01062{width:1448.034634px;}
.fc0_c01062{color:transparent;}
.fs12_c01062{font-size:39.900000px;}
.fs10_c01062{font-size:52.500000px;}
.fsd_c01062{font-size:53.550000px;}
.fse_c01062{font-size:55.650000px;}
.fsf_c01062{font-size:57.750000px;}
.fs0_c01062{font-size:64.033505px;}
.fsc_c01062{font-size:64.050000px;}
.fs4_c01062{font-size:65.100000px;}
.fsb_c01062{font-size:66.150000px;}
.fs14_c01062{font-size:67.200000px;}
.fs8_c01062{font-size:69.300000px;}
.fs2_c01062{font-size:71.400000px;}
.fs3_c01062{font-size:72.450000px;}
.fsa_c01062{font-size:73.500000px;}
.fs6_c01062{font-size:74.550000px;}
.fs7_c01062{font-size:75.600000px;}
.fs9_c01062{font-size:80.850000px;}
.fs5_c01062{font-size:86.100000px;}
.fs13_c01062{font-size:113.400000px;}
.fs1_c01062{font-size:131.216199px;}
.fs15_c01062{font-size:136.500000px;}
.fs11_c01062{font-size:252.000000px;}
.y0_c01062{bottom:0.000000px;}
.y2e_c01062{bottom:14.040000px;}
.y2b_c01062{bottom:80.196000px;}
.y2c_c01062{bottom:80.764500px;}
.y2d_c01062{bottom:82.833000px;}
.y2a_c01062{bottom:95.628000px;}
.y29_c01062{bottom:110.544000px;}
.y28_c01062{bottom:122.580000px;}
.y27_c01062{bottom:133.920000px;}
.y25_c01062{bottom:147.462000px;}
.y24_c01062{bottom:165.136500px;}
.y26_c01062{bottom:165.315000px;}
.y23_c01062{bottom:182.286000px;}
.y22_c01062{bottom:201.192000px;}
.y21_c01062{bottom:262.815000px;}
.y20_c01062{bottom:285.220500px;}
.y1f_c01062{bottom:308.088000px;}
.y1e_c01062{bottom:330.675000px;}
.y1d_c01062{bottom:353.271000px;}
.y1c_c01062{bottom:377.025000px;}
.y1b_c01062{bottom:398.685000px;}
.y1a_c01062{bottom:420.475500px;}
.y19_c01062{bottom:452.943000px;}
.y18_c01062{bottom:466.465500px;}
.y17_c01062{bottom:488.269500px;}
.y16_c01062{bottom:510.988500px;}
.y15_c01062{bottom:533.658000px;}
.y14_c01062{bottom:556.701000px;}
.y13_c01062{bottom:580.110000px;}
.y12_c01062{bottom:603.106500px;}
.y11_c01062{bottom:627.640500px;}
.yf_c01062{bottom:647.461500px;}
.y10_c01062{bottom:648.909000px;}
.ye_c01062{bottom:675.540000px;}
.yd_c01062{bottom:700.299000px;}
.y7_c01062{bottom:729.289916px;}
.y8_c01062{bottom:730.762375px;}
.y9_c01062{bottom:732.070681px;}
.ya_c01062{bottom:733.798467px;}
.yb_c01062{bottom:736.841049px;}
.yc_c01062{bottom:738.368974px;}
.y1_c01062{bottom:783.499500px;}
.y2_c01062{bottom:785.874574px;}
.y3_c01062{bottom:787.499434px;}
.y4_c01062{bottom:791.160768px;}
.y5_c01062{bottom:794.500227px;}
.y6_c01062{bottom:796.262705px;}
.h14_c01062{height:39.900000px;}
.h12_c01062{height:52.500000px;}
.hf_c01062{height:53.550000px;}
.h10_c01062{height:55.650000px;}
.h11_c01062{height:57.750000px;}
.h2_c01062{height:64.033505px;}
.he_c01062{height:64.050000px;}
.h6_c01062{height:65.100000px;}
.hd_c01062{height:66.150000px;}
.h16_c01062{height:67.200000px;}
.ha_c01062{height:69.300000px;}
.h4_c01062{height:71.400000px;}
.h5_c01062{height:72.450000px;}
.hc_c01062{height:73.500000px;}
.h8_c01062{height:74.550000px;}
.h9_c01062{height:75.600000px;}
.hb_c01062{height:80.850000px;}
.h7_c01062{height:86.100000px;}
.h15_c01062{height:113.400000px;}
.h3_c01062{height:131.216199px;}
.h17_c01062{height:136.500000px;}
.h13_c01062{height:252.000000px;}
.h1_c01062{height:1005.000000px;}
.h0_c01062{height:1005.150000px;}
.w0_c01062{width:715.200000px;}
.w1_c01062{width:715.500000px;}
.x0_c01062{left:0.000000px;}
.x67_c01062{left:93.960000px;}
.x68_c01062{left:100.980000px;}
.x7_c01062{left:102.333748px;}
.x50_c01062{left:129.060000px;}
.x69_c01062{left:135.810000px;}
.x22_c01062{left:138.240000px;}
.x45_c01062{left:139.860000px;}
.x31_c01062{left:144.990000px;}
.x17_c01062{left:146.340000px;}
.x59_c01062{left:148.770000px;}
.x8_c01062{left:156.615478px;}
.x46_c01062{left:162.270000px;}
.x53_c01062{left:164.430000px;}
.x13_c01062{left:166.050000px;}
.x3d_c01062{left:168.210000px;}
.x23_c01062{left:170.370000px;}
.x4b_c01062{left:176.850000px;}
.x32_c01062{left:178.200000px;}
.x2b_c01062{left:179.820000px;}
.x18_c01062{left:182.250000px;}
.x47_c01062{left:183.330000px;}
.x14_c01062{left:194.670000px;}
.x6a_c01062{left:195.750000px;}
.x5a_c01062{left:199.800000px;}
.x40_c01062{left:201.150000px;}
.x2c_c01062{left:202.230000px;}
.x9_c01062{left:204.867941px;}
.x33_c01062{left:207.630000px;}
.x6c_c01062{left:211.410000px;}
.x54_c01062{left:212.760000px;}
.x3e_c01062{left:220.050000px;}
.xd_c01062{left:221.400000px;}
.x6b_c01062{left:224.370000px;}
.x4c_c01062{left:225.720000px;}
.x19_c01062{left:226.800000px;}
.x24_c01062{left:228.420000px;}
.x6d_c01062{left:230.040000px;}
.x1_c01062{left:232.411500px;}
.x15_c01062{left:238.140000px;}
.xe_c01062{left:240.840000px;}
.x41_c01062{left:243.540000px;}
.x48_c01062{left:248.940000px;}
.x1a_c01062{left:251.640000px;}
.x16_c01062{left:252.990000px;}
.x25_c01062{left:260.550000px;}
.x5b_c01062{left:264.870000px;}
.x2d_c01062{left:266.760000px;}
.xa_c01062{left:268.576104px;}
.x38_c01062{left:271.080000px;}
.x2_c01062{left:272.586489px;}
.x4d_c01062{left:279.450000px;}
.x2a_c01062{left:281.610000px;}
.x34_c01062{left:282.960000px;}
.x6e_c01062{left:286.470000px;}
.x64_c01062{left:289.980000px;}
.x35_c01062{left:291.060000px;}
.x3_c01062{left:300.071409px;}
.x4e_c01062{left:301.860000px;}
.x6f_c01062{left:302.940000px;}
.x5c_c01062{left:305.100000px;}
.x26_c01062{left:306.990000px;}
.x2e_c01062{left:308.610000px;}
.x42_c01062{left:309.960000px;}
.x55_c01062{left:312.390000px;}
.x39_c01062{left:314.280000px;}
.x36_c01062{left:316.710000px;}
.x1b_c01062{left:320.490000px;}
.x49_c01062{left:324.270000px;}
.xf_c01062{left:332.100000px;}
.x56_c01062{left:336.960000px;}
.x3a_c01062{left:344.790000px;}
.x27_c01062{left:348.030000px;}
.x5d_c01062{left:352.350000px;}
.x43_c01062{left:354.240000px;}
.x1f_c01062{left:357.210000px;}
.x51_c01062{left:359.640000px;}
.x4_c01062{left:362.003796px;}
.x3c_c01062{left:363.150000px;}
.x1c_c01062{left:364.500000px;}
.x37_c01062{left:368.280000px;}
.x2f_c01062{left:370.170000px;}
.x4a_c01062{left:372.330000px;}
.x4f_c01062{left:378.270000px;}
.xb_c01062{left:380.748161px;}
.x20_c01062{left:386.370000px;}
.x28_c01062{left:389.070000px;}
.x10_c01062{left:390.690000px;}
.x57_c01062{left:399.600000px;}
.x44_c01062{left:403.650000px;}
.x30_c01062{left:405.000000px;}
.x52_c01062{left:408.510000px;}
.x11_c01062{left:411.480000px;}
.x3f_c01062{left:415.530000px;}
.x5_c01062{left:418.491594px;}
.x65_c01062{left:421.470000px;}
.x58_c01062{left:423.630000px;}
.x29_c01062{left:426.060000px;}
.x12_c01062{left:430.110000px;}
.xc_c01062{left:437.086171px;}
.x21_c01062{left:440.370000px;}
.x77_c01062{left:444.672000px;}
.x6_c01062{left:448.304349px;}
.x3b_c01062{left:456.570000px;}
.x5e_c01062{left:471.150000px;}
.x1d_c01062{left:475.200000px;}
.x78_c01062{left:476.254500px;}
.x73_c01062{left:481.140000px;}
.x1e_c01062{left:492.750000px;}
.x5f_c01062{left:499.500000px;}
.x7a_c01062{left:510.030000px;}
.x60_c01062{left:512.730000px;}
.x61_c01062{left:531.090000px;}
.x66_c01062{left:543.780000px;}
.x74_c01062{left:552.690000px;}
.x62_c01062{left:559.170000px;}
.x63_c01062{left:582.660000px;}
.x79_c01062{left:591.135000px;}
.x70_c01062{left:601.560000px;}
.x75_c01062{left:606.150000px;}
.x71_c01062{left:607.230000px;}
.x72_c01062{left:619.380000px;}
.x76_c01062{left:639.360000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls0_c01062{letter-spacing:0.000000pt;}
.ws0_c01062{word-spacing:0.000000pt;}
._0_c01062{width:1287.141897pt;}
.fs12_c01062{font-size:35.466667pt;}
.fs10_c01062{font-size:46.666667pt;}
.fsd_c01062{font-size:47.600000pt;}
.fse_c01062{font-size:49.466667pt;}
.fsf_c01062{font-size:51.333333pt;}
.fs0_c01062{font-size:56.918671pt;}
.fsc_c01062{font-size:56.933333pt;}
.fs4_c01062{font-size:57.866667pt;}
.fsb_c01062{font-size:58.800000pt;}
.fs14_c01062{font-size:59.733333pt;}
.fs8_c01062{font-size:61.600000pt;}
.fs2_c01062{font-size:63.466667pt;}
.fs3_c01062{font-size:64.400000pt;}
.fsa_c01062{font-size:65.333333pt;}
.fs6_c01062{font-size:66.266667pt;}
.fs7_c01062{font-size:67.200000pt;}
.fs9_c01062{font-size:71.866667pt;}
.fs5_c01062{font-size:76.533333pt;}
.fs13_c01062{font-size:100.800000pt;}
.fs1_c01062{font-size:116.636621pt;}
.fs15_c01062{font-size:121.333333pt;}
.fs11_c01062{font-size:224.000000pt;}
.y0_c01062{bottom:0.000000pt;}
.y2e_c01062{bottom:12.480000pt;}
.y2b_c01062{bottom:71.285333pt;}
.y2c_c01062{bottom:71.790667pt;}
.y2d_c01062{bottom:73.629333pt;}
.y2a_c01062{bottom:85.002667pt;}
.y29_c01062{bottom:98.261333pt;}
.y28_c01062{bottom:108.960000pt;}
.y27_c01062{bottom:119.040000pt;}
.y25_c01062{bottom:131.077333pt;}
.y24_c01062{bottom:146.788000pt;}
.y26_c01062{bottom:146.946667pt;}
.y23_c01062{bottom:162.032000pt;}
.y22_c01062{bottom:178.837333pt;}
.y21_c01062{bottom:233.613333pt;}
.y20_c01062{bottom:253.529333pt;}
.y1f_c01062{bottom:273.856000pt;}
.y1e_c01062{bottom:293.933333pt;}
.y1d_c01062{bottom:314.018667pt;}
.y1c_c01062{bottom:335.133333pt;}
.y1b_c01062{bottom:354.386667pt;}
.y1a_c01062{bottom:373.756000pt;}
.y19_c01062{bottom:402.616000pt;}
.y18_c01062{bottom:414.636000pt;}
.y17_c01062{bottom:434.017333pt;}
.y16_c01062{bottom:454.212000pt;}
.y15_c01062{bottom:474.362667pt;}
.y14_c01062{bottom:494.845333pt;}
.y13_c01062{bottom:515.653333pt;}
.y12_c01062{bottom:536.094667pt;}
.y11_c01062{bottom:557.902667pt;}
.yf_c01062{bottom:575.521333pt;}
.y10_c01062{bottom:576.808000pt;}
.ye_c01062{bottom:600.480000pt;}
.yd_c01062{bottom:622.488000pt;}
.y7_c01062{bottom:648.257703pt;}
.y8_c01062{bottom:649.566556pt;}
.y9_c01062{bottom:650.729495pt;}
.ya_c01062{bottom:652.265304pt;}
.yb_c01062{bottom:654.969821pt;}
.yc_c01062{bottom:656.327977pt;}
.y1_c01062{bottom:696.444000pt;}
.y2_c01062{bottom:698.555177pt;}
.y3_c01062{bottom:699.999497pt;}
.y4_c01062{bottom:703.254016pt;}
.y5_c01062{bottom:706.222424pt;}
.y6_c01062{bottom:707.789071pt;}
.h14_c01062{height:35.466667pt;}
.h12_c01062{height:46.666667pt;}
.hf_c01062{height:47.600000pt;}
.h10_c01062{height:49.466667pt;}
.h11_c01062{height:51.333333pt;}
.h2_c01062{height:56.918671pt;}
.he_c01062{height:56.933333pt;}
.h6_c01062{height:57.866667pt;}
.hd_c01062{height:58.800000pt;}
.h16_c01062{height:59.733333pt;}
.ha_c01062{height:61.600000pt;}
.h4_c01062{height:63.466667pt;}
.h5_c01062{height:64.400000pt;}
.hc_c01062{height:65.333333pt;}
.h8_c01062{height:66.266667pt;}
.h9_c01062{height:67.200000pt;}
.hb_c01062{height:71.866667pt;}
.h7_c01062{height:76.533333pt;}
.h15_c01062{height:100.800000pt;}
.h3_c01062{height:116.636621pt;}
.h17_c01062{height:121.333333pt;}
.h13_c01062{height:224.000000pt;}
.h1_c01062{height:893.333333pt;}
.h0_c01062{height:893.466667pt;}
.w0_c01062{width:635.733333pt;}
.w1_c01062{width:636.000000pt;}
.x0_c01062{left:0.000000pt;}
.x67_c01062{left:83.520000pt;}
.x68_c01062{left:89.760000pt;}
.x7_c01062{left:90.963332pt;}
.x50_c01062{left:114.720000pt;}
.x69_c01062{left:120.720000pt;}
.x22_c01062{left:122.880000pt;}
.x45_c01062{left:124.320000pt;}
.x31_c01062{left:128.880000pt;}
.x17_c01062{left:130.080000pt;}
.x59_c01062{left:132.240000pt;}
.x8_c01062{left:139.213759pt;}
.x46_c01062{left:144.240000pt;}
.x53_c01062{left:146.160000pt;}
.x13_c01062{left:147.600000pt;}
.x3d_c01062{left:149.520000pt;}
.x23_c01062{left:151.440000pt;}
.x4b_c01062{left:157.200000pt;}
.x32_c01062{left:158.400000pt;}
.x2b_c01062{left:159.840000pt;}
.x18_c01062{left:162.000000pt;}
.x47_c01062{left:162.960000pt;}
.x14_c01062{left:173.040000pt;}
.x6a_c01062{left:174.000000pt;}
.x5a_c01062{left:177.600000pt;}
.x40_c01062{left:178.800000pt;}
.x2c_c01062{left:179.760000pt;}
.x9_c01062{left:182.104836pt;}
.x33_c01062{left:184.560000pt;}
.x6c_c01062{left:187.920000pt;}
.x54_c01062{left:189.120000pt;}
.x3e_c01062{left:195.600000pt;}
.xd_c01062{left:196.800000pt;}
.x6b_c01062{left:199.440000pt;}
.x4c_c01062{left:200.640000pt;}
.x19_c01062{left:201.600000pt;}
.x24_c01062{left:203.040000pt;}
.x6d_c01062{left:204.480000pt;}
.x1_c01062{left:206.588000pt;}
.x15_c01062{left:211.680000pt;}
.xe_c01062{left:214.080000pt;}
.x41_c01062{left:216.480000pt;}
.x48_c01062{left:221.280000pt;}
.x1a_c01062{left:223.680000pt;}
.x16_c01062{left:224.880000pt;}
.x25_c01062{left:231.600000pt;}
.x5b_c01062{left:235.440000pt;}
.x2d_c01062{left:237.120000pt;}
.xa_c01062{left:238.734315pt;}
.x38_c01062{left:240.960000pt;}
.x2_c01062{left:242.299101pt;}
.x4d_c01062{left:248.400000pt;}
.x2a_c01062{left:250.320000pt;}
.x34_c01062{left:251.520000pt;}
.x6e_c01062{left:254.640000pt;}
.x64_c01062{left:257.760000pt;}
.x35_c01062{left:258.720000pt;}
.x3_c01062{left:266.730141pt;}
.x4e_c01062{left:268.320000pt;}
.x6f_c01062{left:269.280000pt;}
.x5c_c01062{left:271.200000pt;}
.x26_c01062{left:272.880000pt;}
.x2e_c01062{left:274.320000pt;}
.x42_c01062{left:275.520000pt;}
.x55_c01062{left:277.680000pt;}
.x39_c01062{left:279.360000pt;}
.x36_c01062{left:281.520000pt;}
.x1b_c01062{left:284.880000pt;}
.x49_c01062{left:288.240000pt;}
.xf_c01062{left:295.200000pt;}
.x56_c01062{left:299.520000pt;}
.x3a_c01062{left:306.480000pt;}
.x27_c01062{left:309.360000pt;}
.x5d_c01062{left:313.200000pt;}
.x43_c01062{left:314.880000pt;}
.x1f_c01062{left:317.520000pt;}
.x51_c01062{left:319.680000pt;}
.x4_c01062{left:321.781152pt;}
.x3c_c01062{left:322.800000pt;}
.x1c_c01062{left:324.000000pt;}
.x37_c01062{left:327.360000pt;}
.x2f_c01062{left:329.040000pt;}
.x4a_c01062{left:330.960000pt;}
.x4f_c01062{left:336.240000pt;}
.xb_c01062{left:338.442809pt;}
.x20_c01062{left:343.440000pt;}
.x28_c01062{left:345.840000pt;}
.x10_c01062{left:347.280000pt;}
.x57_c01062{left:355.200000pt;}
.x44_c01062{left:358.800000pt;}
.x30_c01062{left:360.000000pt;}
.x52_c01062{left:363.120000pt;}
.x11_c01062{left:365.760000pt;}
.x3f_c01062{left:369.360000pt;}
.x5_c01062{left:371.992528pt;}
.x65_c01062{left:374.640000pt;}
.x58_c01062{left:376.560000pt;}
.x29_c01062{left:378.720000pt;}
.x12_c01062{left:382.320000pt;}
.xc_c01062{left:388.521041pt;}
.x21_c01062{left:391.440000pt;}
.x77_c01062{left:395.264000pt;}
.x6_c01062{left:398.492755pt;}
.x3b_c01062{left:405.840000pt;}
.x5e_c01062{left:418.800000pt;}
.x1d_c01062{left:422.400000pt;}
.x78_c01062{left:423.337333pt;}
.x73_c01062{left:427.680000pt;}
.x1e_c01062{left:438.000000pt;}
.x5f_c01062{left:444.000000pt;}
.x7a_c01062{left:453.360000pt;}
.x60_c01062{left:455.760000pt;}
.x61_c01062{left:472.080000pt;}
.x66_c01062{left:483.360000pt;}
.x74_c01062{left:491.280000pt;}
.x62_c01062{left:497.040000pt;}
.x63_c01062{left:517.920000pt;}
.x79_c01062{left:525.453333pt;}
.x70_c01062{left:534.720000pt;}
.x75_c01062{left:538.800000pt;}
.x71_c01062{left:539.760000pt;}
.x72_c01062{left:550.560000pt;}
.x76_c01062{left:568.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_c01063 {
    display:none;
  }
  .loading-indicator_c01063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01063 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01063 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01063" -> "#page-container .classname_c01063")
 */
.pf_c01063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01063 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01063 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01063 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01063 {overflow:visible;}
  }
}
.c_c01063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01063 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01063:after { /* webkit #35443 */
  content: '';
}
.t_c01063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01063 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01063 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01063 { /* info for Javascript */
  display:none;
}
.l_c01063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.000000;font-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_c01063{transform:matrix(0.009568,-0.000172,0.004499,0.249960,0,0);-ms-transform:matrix(0.009568,-0.000172,0.004499,0.249960,0,0);-webkit-transform:matrix(0.009568,-0.000172,0.004499,0.249960,0,0);}
.m2e_c01063{transform:matrix(0.011449,-0.000367,0.008004,0.249872,0,0);-ms-transform:matrix(0.011449,-0.000367,0.008004,0.249872,0,0);-webkit-transform:matrix(0.011449,-0.000367,0.008004,0.249872,0,0);}
.m61_c01063{transform:matrix(0.014947,-0.000479,0.008004,0.249872,0,0);-ms-transform:matrix(0.014947,-0.000479,0.008004,0.249872,0,0);-webkit-transform:matrix(0.014947,-0.000479,0.008004,0.249872,0,0);}
.m41_c01063{transform:matrix(0.018176,-0.000582,0.008004,0.249872,0,0);-ms-transform:matrix(0.018176,-0.000582,0.008004,0.249872,0,0);-webkit-transform:matrix(0.018176,-0.000582,0.008004,0.249872,0,0);}
.m8f_c01063{transform:matrix(0.018918,-0.000246,0.003250,0.249979,0,0);-ms-transform:matrix(0.018918,-0.000246,0.003250,0.249979,0,0);-webkit-transform:matrix(0.018918,-0.000246,0.003250,0.249979,0,0);}
.m9e_c01063{transform:matrix(0.080703,-0.001049,0.003250,0.249979,0,0);-ms-transform:matrix(0.080703,-0.001049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.080703,-0.001049,0.003250,0.249979,0,0);}
.m6_c01063{transform:matrix(0.124226,-0.003979,0.008004,0.249872,0,0);-ms-transform:matrix(0.124226,-0.003979,0.008004,0.249872,0,0);-webkit-transform:matrix(0.124226,-0.003979,0.008004,0.249872,0,0);}
.m3e_c01063{transform:matrix(0.127215,-0.004075,0.008004,0.249872,0,0);-ms-transform:matrix(0.127215,-0.004075,0.008004,0.249872,0,0);-webkit-transform:matrix(0.127215,-0.004075,0.008004,0.249872,0,0);}
.m81_c01063{transform:matrix(0.135783,-0.002444,0.004499,0.249960,0,0);-ms-transform:matrix(0.135783,-0.002444,0.004499,0.249960,0,0);-webkit-transform:matrix(0.135783,-0.002444,0.004499,0.249960,0,0);}
.m82_c01063{transform:matrix(0.137298,-0.002471,0.004499,0.249960,0,0);-ms-transform:matrix(0.137298,-0.002471,0.004499,0.249960,0,0);-webkit-transform:matrix(0.137298,-0.002471,0.004499,0.249960,0,0);}
.m99_c01063{transform:matrix(0.138858,-0.001805,0.003250,0.249979,0,0);-ms-transform:matrix(0.138858,-0.001805,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138858,-0.001805,0.003250,0.249979,0,0);}
.m23_c01063{transform:matrix(0.139179,-0.004458,0.008004,0.249872,0,0);-ms-transform:matrix(0.139179,-0.004458,0.008004,0.249872,0,0);-webkit-transform:matrix(0.139179,-0.004458,0.008004,0.249872,0,0);}
.m49_c01063{transform:matrix(0.150233,-0.004812,0.008004,0.249872,0,0);-ms-transform:matrix(0.150233,-0.004812,0.008004,0.249872,0,0);-webkit-transform:matrix(0.150233,-0.004812,0.008004,0.249872,0,0);}
.m97_c01063{transform:matrix(0.150262,-0.001953,0.003250,0.249979,0,0);-ms-transform:matrix(0.150262,-0.001953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.150262,-0.001953,0.003250,0.249979,0,0);}
.m70_c01063{transform:matrix(0.151868,-0.002582,0.004249,0.249964,0,0);-ms-transform:matrix(0.151868,-0.002582,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151868,-0.002582,0.004249,0.249964,0,0);}
.m4d_c01063{transform:matrix(0.152832,-0.004896,0.008004,0.249872,0,0);-ms-transform:matrix(0.152832,-0.004896,0.008004,0.249872,0,0);-webkit-transform:matrix(0.152832,-0.004896,0.008004,0.249872,0,0);}
.m9c_c01063{transform:matrix(0.154737,-0.002012,0.003250,0.249979,0,0);-ms-transform:matrix(0.154737,-0.002012,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154737,-0.002012,0.003250,0.249979,0,0);}
.m64_c01063{transform:matrix(0.155583,-0.002645,0.004249,0.249964,0,0);-ms-transform:matrix(0.155583,-0.002645,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155583,-0.002645,0.004249,0.249964,0,0);}
.m2c_c01063{transform:matrix(0.156625,-0.005017,0.008004,0.249872,0,0);-ms-transform:matrix(0.156625,-0.005017,0.008004,0.249872,0,0);-webkit-transform:matrix(0.156625,-0.005017,0.008004,0.249872,0,0);}
.m51_c01063{transform:matrix(0.159163,-0.005098,0.008004,0.249872,0,0);-ms-transform:matrix(0.159163,-0.005098,0.008004,0.249872,0,0);-webkit-transform:matrix(0.159163,-0.005098,0.008004,0.249872,0,0);}
.m5d_c01063{transform:matrix(0.159423,-0.005107,0.008004,0.249872,0,0);-ms-transform:matrix(0.159423,-0.005107,0.008004,0.249872,0,0);-webkit-transform:matrix(0.159423,-0.005107,0.008004,0.249872,0,0);}
.m7d_c01063{transform:matrix(0.161367,-0.002743,0.004249,0.249964,0,0);-ms-transform:matrix(0.161367,-0.002743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161367,-0.002743,0.004249,0.249964,0,0);}
.m27_c01063{transform:matrix(0.162042,-0.005191,0.008004,0.249872,0,0);-ms-transform:matrix(0.162042,-0.005191,0.008004,0.249872,0,0);-webkit-transform:matrix(0.162042,-0.005191,0.008004,0.249872,0,0);}
.m7e_c01063{transform:matrix(0.162612,-0.002764,0.004249,0.249964,0,0);-ms-transform:matrix(0.162612,-0.002764,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162612,-0.002764,0.004249,0.249964,0,0);}
.m48_c01063{transform:matrix(0.163126,-0.005225,0.008004,0.249872,0,0);-ms-transform:matrix(0.163126,-0.005225,0.008004,0.249872,0,0);-webkit-transform:matrix(0.163126,-0.005225,0.008004,0.249872,0,0);}
.m22_c01063{transform:matrix(0.163686,-0.005243,0.008004,0.249872,0,0);-ms-transform:matrix(0.163686,-0.005243,0.008004,0.249872,0,0);-webkit-transform:matrix(0.163686,-0.005243,0.008004,0.249872,0,0);}
.m9a_c01063{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);}
.m3_c01063{transform:matrix(0.165775,-0.005310,0.008004,0.249872,0,0);-ms-transform:matrix(0.165775,-0.005310,0.008004,0.249872,0,0);-webkit-transform:matrix(0.165775,-0.005310,0.008004,0.249872,0,0);}
.m6c_c01063{transform:matrix(0.165991,-0.002822,0.004249,0.249964,0,0);-ms-transform:matrix(0.165991,-0.002822,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165991,-0.002822,0.004249,0.249964,0,0);}
.m4f_c01063{transform:matrix(0.166330,-0.005328,0.008004,0.249872,0,0);-ms-transform:matrix(0.166330,-0.005328,0.008004,0.249872,0,0);-webkit-transform:matrix(0.166330,-0.005328,0.008004,0.249872,0,0);}
.mb_c01063{transform:matrix(0.167564,-0.005367,0.008004,0.249872,0,0);-ms-transform:matrix(0.167564,-0.005367,0.008004,0.249872,0,0);-webkit-transform:matrix(0.167564,-0.005367,0.008004,0.249872,0,0);}
.m5_c01063{transform:matrix(0.168074,-0.005384,0.008004,0.249872,0,0);-ms-transform:matrix(0.168074,-0.005384,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168074,-0.005384,0.008004,0.249872,0,0);}
.m4_c01063{transform:matrix(0.168254,-0.005390,0.008004,0.249872,0,0);-ms-transform:matrix(0.168254,-0.005390,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168254,-0.005390,0.008004,0.249872,0,0);}
.m44_c01063{transform:matrix(0.169768,-0.005438,0.008004,0.249872,0,0);-ms-transform:matrix(0.169768,-0.005438,0.008004,0.249872,0,0);-webkit-transform:matrix(0.169768,-0.005438,0.008004,0.249872,0,0);}
.m28_c01063{transform:matrix(0.174356,-0.005585,0.008004,0.249872,0,0);-ms-transform:matrix(0.174356,-0.005585,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174356,-0.005585,0.008004,0.249872,0,0);}
.m86_c01063{transform:matrix(0.174370,-0.002267,0.003250,0.249979,0,0);-ms-transform:matrix(0.174370,-0.002267,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174370,-0.002267,0.003250,0.249979,0,0);}
.m10_c01063{transform:matrix(0.174505,-0.005590,0.008004,0.249872,0,0);-ms-transform:matrix(0.174505,-0.005590,0.008004,0.249872,0,0);-webkit-transform:matrix(0.174505,-0.005590,0.008004,0.249872,0,0);}
.m6e_c01063{transform:matrix(0.174730,-0.002970,0.004249,0.249964,0,0);-ms-transform:matrix(0.174730,-0.002970,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174730,-0.002970,0.004249,0.249964,0,0);}
.m47_c01063{transform:matrix(0.175215,-0.005612,0.008004,0.249872,0,0);-ms-transform:matrix(0.175215,-0.005612,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175215,-0.005612,0.008004,0.249872,0,0);}
.m2d_c01063{transform:matrix(0.175325,-0.005616,0.008004,0.249872,0,0);-ms-transform:matrix(0.175325,-0.005616,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175325,-0.005616,0.008004,0.249872,0,0);}
.m32_c01063{transform:matrix(0.175495,-0.005621,0.008004,0.249872,0,0);-ms-transform:matrix(0.175495,-0.005621,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175495,-0.005621,0.008004,0.249872,0,0);}
.m55_c01063{transform:matrix(0.175715,-0.005629,0.008004,0.249872,0,0);-ms-transform:matrix(0.175715,-0.005629,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175715,-0.005629,0.008004,0.249872,0,0);}
.m53_c01063{transform:matrix(0.175945,-0.005636,0.008004,0.249872,0,0);-ms-transform:matrix(0.175945,-0.005636,0.008004,0.249872,0,0);-webkit-transform:matrix(0.175945,-0.005636,0.008004,0.249872,0,0);}
.m9d_c01063{transform:matrix(0.177015,-0.002301,0.003250,0.249979,0,0);-ms-transform:matrix(0.177015,-0.002301,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177015,-0.002301,0.003250,0.249979,0,0);}
.m34_c01063{transform:matrix(0.177164,-0.005675,0.008004,0.249872,0,0);-ms-transform:matrix(0.177164,-0.005675,0.008004,0.249872,0,0);-webkit-transform:matrix(0.177164,-0.005675,0.008004,0.249872,0,0);}
.m79_c01063{transform:matrix(0.177379,-0.003015,0.004249,0.249964,0,0);-ms-transform:matrix(0.177379,-0.003015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177379,-0.003015,0.004249,0.249964,0,0);}
.m4a_c01063{transform:matrix(0.179088,-0.005737,0.008004,0.249872,0,0);-ms-transform:matrix(0.179088,-0.005737,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179088,-0.005737,0.008004,0.249872,0,0);}
.m4e_c01063{transform:matrix(0.179768,-0.005758,0.008004,0.249872,0,0);-ms-transform:matrix(0.179768,-0.005758,0.008004,0.249872,0,0);-webkit-transform:matrix(0.179768,-0.005758,0.008004,0.249872,0,0);}
.m7a_c01063{transform:matrix(0.179849,-0.003057,0.004249,0.249964,0,0);-ms-transform:matrix(0.179849,-0.003057,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179849,-0.003057,0.004249,0.249964,0,0);}
.m5e_c01063{transform:matrix(0.180193,-0.005772,0.008004,0.249872,0,0);-ms-transform:matrix(0.180193,-0.005772,0.008004,0.249872,0,0);-webkit-transform:matrix(0.180193,-0.005772,0.008004,0.249872,0,0);}
.m7b_c01063{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);}
.ma5_c01063{transform:matrix(0.181045,-0.002354,0.003250,0.249979,0,0);-ms-transform:matrix(0.181045,-0.002354,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181045,-0.002354,0.003250,0.249979,0,0);}
.m6f_c01063{transform:matrix(0.181799,-0.003091,0.004249,0.249964,0,0);-ms-transform:matrix(0.181799,-0.003091,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181799,-0.003091,0.004249,0.249964,0,0);}
.m12_c01063{transform:matrix(0.181892,-0.005826,0.008004,0.249872,0,0);-ms-transform:matrix(0.181892,-0.005826,0.008004,0.249872,0,0);-webkit-transform:matrix(0.181892,-0.005826,0.008004,0.249872,0,0);}
.m92_c01063{transform:matrix(0.182080,-0.002367,0.003250,0.249979,0,0);-ms-transform:matrix(0.182080,-0.002367,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182080,-0.002367,0.003250,0.249979,0,0);}
.m67_c01063{transform:matrix(0.182544,-0.003103,0.004249,0.249964,0,0);-ms-transform:matrix(0.182544,-0.003103,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182544,-0.003103,0.004249,0.249964,0,0);}
.m88_c01063{transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);-ms-transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183115,-0.002380,0.003250,0.249979,0,0);}
.m8a_c01063{transform:matrix(0.183584,-0.002387,0.003250,0.249979,0,0);-ms-transform:matrix(0.183584,-0.002387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183584,-0.002387,0.003250,0.249979,0,0);}
.m18_c01063{transform:matrix(0.183761,-0.005886,0.008004,0.249872,0,0);-ms-transform:matrix(0.183761,-0.005886,0.008004,0.249872,0,0);-webkit-transform:matrix(0.183761,-0.005886,0.008004,0.249872,0,0);}
.m29_c01063{transform:matrix(0.184041,-0.005895,0.008004,0.249872,0,0);-ms-transform:matrix(0.184041,-0.005895,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184041,-0.005895,0.008004,0.249872,0,0);}
.m46_c01063{transform:matrix(0.184585,-0.005913,0.008004,0.249872,0,0);-ms-transform:matrix(0.184585,-0.005913,0.008004,0.249872,0,0);-webkit-transform:matrix(0.184585,-0.005913,0.008004,0.249872,0,0);}
.m20_c01063{transform:matrix(0.185010,-0.005926,0.008004,0.249872,0,0);-ms-transform:matrix(0.185010,-0.005926,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185010,-0.005926,0.008004,0.249872,0,0);}
.mf_c01063{transform:matrix(0.185035,-0.005927,0.008004,0.249872,0,0);-ms-transform:matrix(0.185035,-0.005927,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185035,-0.005927,0.008004,0.249872,0,0);}
.m9f_c01063{transform:matrix(0.185329,-0.002409,0.003250,0.249979,0,0);-ms-transform:matrix(0.185329,-0.002409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185329,-0.002409,0.003250,0.249979,0,0);}
.m6d_c01063{transform:matrix(0.185468,-0.003153,0.004249,0.249964,0,0);-ms-transform:matrix(0.185468,-0.003153,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185468,-0.003153,0.004249,0.249964,0,0);}
.m54_c01063{transform:matrix(0.185515,-0.005942,0.008004,0.249872,0,0);-ms-transform:matrix(0.185515,-0.005942,0.008004,0.249872,0,0);-webkit-transform:matrix(0.185515,-0.005942,0.008004,0.249872,0,0);}
.ma0_c01063{transform:matrix(0.186009,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.186009,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186009,-0.002418,0.003250,0.249979,0,0);}
.m24_c01063{transform:matrix(0.186409,-0.005971,0.008004,0.249872,0,0);-ms-transform:matrix(0.186409,-0.005971,0.008004,0.249872,0,0);-webkit-transform:matrix(0.186409,-0.005971,0.008004,0.249872,0,0);}
.m8_c01063{transform:matrix(0.187689,-0.006012,0.008004,0.249872,0,0);-ms-transform:matrix(0.187689,-0.006012,0.008004,0.249872,0,0);-webkit-transform:matrix(0.187689,-0.006012,0.008004,0.249872,0,0);}
.ma1_c01063{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);}
.m19_c01063{transform:matrix(0.188783,-0.006047,0.008004,0.249872,0,0);-ms-transform:matrix(0.188783,-0.006047,0.008004,0.249872,0,0);-webkit-transform:matrix(0.188783,-0.006047,0.008004,0.249872,0,0);}
.ma9_c01063{transform:matrix(0.189529,-0.002464,0.003250,0.249979,0,0);-ms-transform:matrix(0.189529,-0.002464,0.003250,0.249979,0,0);-webkit-transform:matrix(0.189529,-0.002464,0.003250,0.249979,0,0);}
.m1c_c01063{transform:matrix(0.189928,-0.006084,0.008004,0.249872,0,0);-ms-transform:matrix(0.189928,-0.006084,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189928,-0.006084,0.008004,0.249872,0,0);}
.m52_c01063{transform:matrix(0.190048,-0.006088,0.008004,0.249872,0,0);-ms-transform:matrix(0.190048,-0.006088,0.008004,0.249872,0,0);-webkit-transform:matrix(0.190048,-0.006088,0.008004,0.249872,0,0);}
.m5f_c01063{transform:matrix(0.191202,-0.006125,0.008004,0.249872,0,0);-ms-transform:matrix(0.191202,-0.006125,0.008004,0.249872,0,0);-webkit-transform:matrix(0.191202,-0.006125,0.008004,0.249872,0,0);}
.m75_c01063{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);}
.m98_c01063{transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);-ms-transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192249,-0.002499,0.003250,0.249979,0,0);}
.m14_c01063{transform:matrix(0.192426,-0.006164,0.008004,0.249872,0,0);-ms-transform:matrix(0.192426,-0.006164,0.008004,0.249872,0,0);-webkit-transform:matrix(0.192426,-0.006164,0.008004,0.249872,0,0);}
.m31_c01063{transform:matrix(0.193771,-0.006207,0.008004,0.249872,0,0);-ms-transform:matrix(0.193771,-0.006207,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193771,-0.006207,0.008004,0.249872,0,0);}
.m40_c01063{transform:matrix(0.193851,-0.006209,0.008004,0.249872,0,0);-ms-transform:matrix(0.193851,-0.006209,0.008004,0.249872,0,0);-webkit-transform:matrix(0.193851,-0.006209,0.008004,0.249872,0,0);}
.m50_c01063{transform:matrix(0.194530,-0.006231,0.008004,0.249872,0,0);-ms-transform:matrix(0.194530,-0.006231,0.008004,0.249872,0,0);-webkit-transform:matrix(0.194530,-0.006231,0.008004,0.249872,0,0);}
.m0_c01063{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);}
.m3f_c01063{transform:matrix(0.196634,-0.006299,0.008004,0.249872,0,0);-ms-transform:matrix(0.196634,-0.006299,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196634,-0.006299,0.008004,0.249872,0,0);}
.ma_c01063{transform:matrix(0.196779,-0.006303,0.008004,0.249872,0,0);-ms-transform:matrix(0.196779,-0.006303,0.008004,0.249872,0,0);-webkit-transform:matrix(0.196779,-0.006303,0.008004,0.249872,0,0);}
.m87_c01063{transform:matrix(0.196833,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196833,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196833,-0.002559,0.003250,0.249979,0,0);}
.m2a_c01063{transform:matrix(0.197609,-0.006330,0.008004,0.249872,0,0);-ms-transform:matrix(0.197609,-0.006330,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197609,-0.006330,0.008004,0.249872,0,0);}
.m25_c01063{transform:matrix(0.198403,-0.006355,0.008004,0.249872,0,0);-ms-transform:matrix(0.198403,-0.006355,0.008004,0.249872,0,0);-webkit-transform:matrix(0.198403,-0.006355,0.008004,0.249872,0,0);}
.m1b_c01063{transform:matrix(0.198748,-0.006366,0.008004,0.249872,0,0);-ms-transform:matrix(0.198748,-0.006366,0.008004,0.249872,0,0);-webkit-transform:matrix(0.198748,-0.006366,0.008004,0.249872,0,0);}
.m73_c01063{transform:matrix(0.198841,-0.003380,0.004249,0.249964,0,0);-ms-transform:matrix(0.198841,-0.003380,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198841,-0.003380,0.004249,0.249964,0,0);}
.m7c_c01063{transform:matrix(0.199316,-0.003388,0.004249,0.249964,0,0);-ms-transform:matrix(0.199316,-0.003388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199316,-0.003388,0.004249,0.249964,0,0);}
.mb0_c01063{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);}
.m1a_c01063{transform:matrix(0.199723,-0.006398,0.008004,0.249872,0,0);-ms-transform:matrix(0.199723,-0.006398,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199723,-0.006398,0.008004,0.249872,0,0);}
.m17_c01063{transform:matrix(0.199922,-0.006404,0.008004,0.249872,0,0);-ms-transform:matrix(0.199922,-0.006404,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199922,-0.006404,0.008004,0.249872,0,0);}
.m9b_c01063{transform:matrix(0.200158,-0.002602,0.003250,0.249979,0,0);-ms-transform:matrix(0.200158,-0.002602,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200158,-0.002602,0.003250,0.249979,0,0);}
.m72_c01063{transform:matrix(0.200591,-0.003410,0.004249,0.249964,0,0);-ms-transform:matrix(0.200591,-0.003410,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200591,-0.003410,0.004249,0.249964,0,0);}
.m45_c01063{transform:matrix(0.200732,-0.006430,0.008004,0.249872,0,0);-ms-transform:matrix(0.200732,-0.006430,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200732,-0.006430,0.008004,0.249872,0,0);}
.m58_c01063{transform:matrix(0.200902,-0.006435,0.008004,0.249872,0,0);-ms-transform:matrix(0.200902,-0.006435,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200902,-0.006435,0.008004,0.249872,0,0);}
.m63_c01063{transform:matrix(0.200956,-0.003416,0.004249,0.249964,0,0);-ms-transform:matrix(0.200956,-0.003416,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200956,-0.003416,0.004249,0.249964,0,0);}
.m90_c01063{transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);-ms-transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201598,-0.002621,0.003250,0.249979,0,0);}
.m74_c01063{transform:matrix(0.201716,-0.003429,0.004249,0.249964,0,0);-ms-transform:matrix(0.201716,-0.003429,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201716,-0.003429,0.004249,0.249964,0,0);}
.ma8_c01063{transform:matrix(0.202078,-0.002627,0.003250,0.249979,0,0);-ms-transform:matrix(0.202078,-0.002627,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202078,-0.002627,0.003250,0.249979,0,0);}
.m6a_c01063{transform:matrix(0.202136,-0.003436,0.004249,0.249964,0,0);-ms-transform:matrix(0.202136,-0.003436,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202136,-0.003436,0.004249,0.249964,0,0);}
.m77_c01063{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);}
.m4c_c01063{transform:matrix(0.204780,-0.006560,0.008004,0.249872,0,0);-ms-transform:matrix(0.204780,-0.006560,0.008004,0.249872,0,0);-webkit-transform:matrix(0.204780,-0.006560,0.008004,0.249872,0,0);}
.m80_c01063{transform:matrix(0.205497,-0.003699,0.004499,0.249960,0,0);-ms-transform:matrix(0.205497,-0.003699,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205497,-0.003699,0.004499,0.249960,0,0);}
.m68_c01063{transform:matrix(0.207180,-0.003522,0.004249,0.249964,0,0);-ms-transform:matrix(0.207180,-0.003522,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207180,-0.003522,0.004249,0.249964,0,0);}
.m26_c01063{transform:matrix(0.207209,-0.006637,0.008004,0.249872,0,0);-ms-transform:matrix(0.207209,-0.006637,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207209,-0.006637,0.008004,0.249872,0,0);}
.m2_c01063{transform:matrix(0.207329,-0.006641,0.008004,0.249872,0,0);-ms-transform:matrix(0.207329,-0.006641,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207329,-0.006641,0.008004,0.249872,0,0);}
.m91_c01063{transform:matrix(0.207362,-0.002696,0.003250,0.249979,0,0);-ms-transform:matrix(0.207362,-0.002696,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207362,-0.002696,0.003250,0.249979,0,0);}
.md_c01063{transform:matrix(0.207579,-0.006649,0.008004,0.249872,0,0);-ms-transform:matrix(0.207579,-0.006649,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207579,-0.006649,0.008004,0.249872,0,0);}
.m66_c01063{transform:matrix(0.207680,-0.003531,0.004249,0.249964,0,0);-ms-transform:matrix(0.207680,-0.003531,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207680,-0.003531,0.004249,0.249964,0,0);}
.m5a_c01063{transform:matrix(0.208933,-0.006693,0.008004,0.249872,0,0);-ms-transform:matrix(0.208933,-0.006693,0.008004,0.249872,0,0);-webkit-transform:matrix(0.208933,-0.006693,0.008004,0.249872,0,0);}
.m95_c01063{transform:matrix(0.209607,-0.002725,0.003250,0.249979,0,0);-ms-transform:matrix(0.209607,-0.002725,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209607,-0.002725,0.003250,0.249979,0,0);}
.m7_c01063{transform:matrix(0.210002,-0.006727,0.008004,0.249872,0,0);-ms-transform:matrix(0.210002,-0.006727,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210002,-0.006727,0.008004,0.249872,0,0);}
.m59_c01063{transform:matrix(0.210207,-0.006733,0.008004,0.249872,0,0);-ms-transform:matrix(0.210207,-0.006733,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210207,-0.006733,0.008004,0.249872,0,0);}
.m2b_c01063{transform:matrix(0.210407,-0.006740,0.008004,0.249872,0,0);-ms-transform:matrix(0.210407,-0.006740,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210407,-0.006740,0.008004,0.249872,0,0);}
.m1e_c01063{transform:matrix(0.210947,-0.006757,0.008004,0.249872,0,0);-ms-transform:matrix(0.210947,-0.006757,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210947,-0.006757,0.008004,0.249872,0,0);}
.m6b_c01063{transform:matrix(0.210960,-0.003586,0.004249,0.249964,0,0);-ms-transform:matrix(0.210960,-0.003586,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210960,-0.003586,0.004249,0.249964,0,0);}
.m8b_c01063{transform:matrix(0.211202,-0.002746,0.003250,0.249979,0,0);-ms-transform:matrix(0.211202,-0.002746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211202,-0.002746,0.003250,0.249979,0,0);}
.m1d_c01063{transform:matrix(0.212686,-0.006813,0.008004,0.249872,0,0);-ms-transform:matrix(0.212686,-0.006813,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212686,-0.006813,0.008004,0.249872,0,0);}
.m2f_c01063{transform:matrix(0.212976,-0.006822,0.008004,0.249872,0,0);-ms-transform:matrix(0.212976,-0.006822,0.008004,0.249872,0,0);-webkit-transform:matrix(0.212976,-0.006822,0.008004,0.249872,0,0);}
.m84_c01063{transform:matrix(0.216927,-0.002820,0.003250,0.249979,0,0);-ms-transform:matrix(0.216927,-0.002820,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216927,-0.002820,0.003250,0.249979,0,0);}
.m69_c01063{transform:matrix(0.217314,-0.003694,0.004249,0.249964,0,0);-ms-transform:matrix(0.217314,-0.003694,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217314,-0.003694,0.004249,0.249964,0,0);}
.m33_c01063{transform:matrix(0.218618,-0.007003,0.008004,0.249872,0,0);-ms-transform:matrix(0.218618,-0.007003,0.008004,0.249872,0,0);-webkit-transform:matrix(0.218618,-0.007003,0.008004,0.249872,0,0);}
.m65_c01063{transform:matrix(0.221298,-0.003762,0.004249,0.249964,0,0);-ms-transform:matrix(0.221298,-0.003762,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221298,-0.003762,0.004249,0.249964,0,0);}
.m89_c01063{transform:matrix(0.221831,-0.002884,0.003250,0.249979,0,0);-ms-transform:matrix(0.221831,-0.002884,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221831,-0.002884,0.003250,0.249979,0,0);}
.m78_c01063{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);}
.m1f_c01063{transform:matrix(0.222506,-0.007127,0.008004,0.249872,0,0);-ms-transform:matrix(0.222506,-0.007127,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222506,-0.007127,0.008004,0.249872,0,0);}
.m76_c01063{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);}
.m71_c01063{transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);-ms-transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226762,-0.003855,0.004249,0.249964,0,0);}
.ma6_c01063{transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);-ms-transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227816,-0.002962,0.003250,0.249979,0,0);}
.m36_c01063{transform:matrix(0.228153,-0.007308,0.008004,0.249872,0,0);-ms-transform:matrix(0.228153,-0.007308,0.008004,0.249872,0,0);-webkit-transform:matrix(0.228153,-0.007308,0.008004,0.249872,0,0);}
.m30_c01063{transform:matrix(0.231191,-0.007406,0.008004,0.249872,0,0);-ms-transform:matrix(0.231191,-0.007406,0.008004,0.249872,0,0);-webkit-transform:matrix(0.231191,-0.007406,0.008004,0.249872,0,0);}
.m13_c01063{transform:matrix(0.232826,-0.007458,0.008004,0.249872,0,0);-ms-transform:matrix(0.232826,-0.007458,0.008004,0.249872,0,0);-webkit-transform:matrix(0.232826,-0.007458,0.008004,0.249872,0,0);}
.m62_c01063{transform:matrix(0.233401,-0.003968,0.004249,0.249964,0,0);-ms-transform:matrix(0.233401,-0.003968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233401,-0.003968,0.004249,0.249964,0,0);}
.m5c_c01063{transform:matrix(0.234160,-0.007501,0.008004,0.249872,0,0);-ms-transform:matrix(0.234160,-0.007501,0.008004,0.249872,0,0);-webkit-transform:matrix(0.234160,-0.007501,0.008004,0.249872,0,0);}
.m43_c01063{transform:matrix(0.234290,-0.007505,0.008004,0.249872,0,0);-ms-transform:matrix(0.234290,-0.007505,0.008004,0.249872,0,0);-webkit-transform:matrix(0.234290,-0.007505,0.008004,0.249872,0,0);}
.m5b_c01063{transform:matrix(0.234505,-0.007512,0.008004,0.249872,0,0);-ms-transform:matrix(0.234505,-0.007512,0.008004,0.249872,0,0);-webkit-transform:matrix(0.234505,-0.007512,0.008004,0.249872,0,0);}
.m93_c01063{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);}
.mc_c01063{transform:matrix(0.241431,-0.007734,0.008004,0.249872,0,0);-ms-transform:matrix(0.241431,-0.007734,0.008004,0.249872,0,0);-webkit-transform:matrix(0.241431,-0.007734,0.008004,0.249872,0,0);}
.ma7_c01063{transform:matrix(0.242415,-0.003151,0.003250,0.249979,0,0);-ms-transform:matrix(0.242415,-0.003151,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242415,-0.003151,0.003250,0.249979,0,0);}
.m8e_c01063{transform:matrix(0.244779,-0.003182,0.003250,0.249979,0,0);-ms-transform:matrix(0.244779,-0.003182,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244779,-0.003182,0.003250,0.249979,0,0);}
.m9_c01063{transform:matrix(0.248752,-0.007968,0.008004,0.249872,0,0);-ms-transform:matrix(0.248752,-0.007968,0.008004,0.249872,0,0);-webkit-transform:matrix(0.248752,-0.007968,0.008004,0.249872,0,0);}
.m8c_c01063{transform:matrix(0.250024,-0.003250,0.003250,0.249979,0,0);-ms-transform:matrix(0.250024,-0.003250,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250024,-0.003250,0.003250,0.249979,0,0);}
.m21_c01063{transform:matrix(0.253075,-0.008107,0.008004,0.249872,0,0);-ms-transform:matrix(0.253075,-0.008107,0.008004,0.249872,0,0);-webkit-transform:matrix(0.253075,-0.008107,0.008004,0.249872,0,0);}
.m38_c01063{transform:matrix(0.254949,-0.008167,0.008004,0.249872,0,0);-ms-transform:matrix(0.254949,-0.008167,0.008004,0.249872,0,0);-webkit-transform:matrix(0.254949,-0.008167,0.008004,0.249872,0,0);}
.m3a_c01063{transform:matrix(0.263375,-0.008436,0.008004,0.249872,0,0);-ms-transform:matrix(0.263375,-0.008436,0.008004,0.249872,0,0);-webkit-transform:matrix(0.263375,-0.008436,0.008004,0.249872,0,0);}
.me_c01063{transform:matrix(0.263495,-0.008440,0.008004,0.249872,0,0);-ms-transform:matrix(0.263495,-0.008440,0.008004,0.249872,0,0);-webkit-transform:matrix(0.263495,-0.008440,0.008004,0.249872,0,0);}
.m3d_c01063{transform:matrix(0.263565,-0.008443,0.008004,0.249872,0,0);-ms-transform:matrix(0.263565,-0.008443,0.008004,0.249872,0,0);-webkit-transform:matrix(0.263565,-0.008443,0.008004,0.249872,0,0);}
.m11_c01063{transform:matrix(0.265629,-0.008509,0.008004,0.249872,0,0);-ms-transform:matrix(0.265629,-0.008509,0.008004,0.249872,0,0);-webkit-transform:matrix(0.265629,-0.008509,0.008004,0.249872,0,0);}
.m83_c01063{transform:matrix(0.266627,-0.004799,0.004499,0.249960,0,0);-ms-transform:matrix(0.266627,-0.004799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.266627,-0.004799,0.004499,0.249960,0,0);}
.m85_c01063{transform:matrix(0.269002,-0.003497,0.003250,0.249979,0,0);-ms-transform:matrix(0.269002,-0.003497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269002,-0.003497,0.003250,0.249979,0,0);}
.m3c_c01063{transform:matrix(0.270976,-0.008680,0.008004,0.249872,0,0);-ms-transform:matrix(0.270976,-0.008680,0.008004,0.249872,0,0);-webkit-transform:matrix(0.270976,-0.008680,0.008004,0.249872,0,0);}
.m39_c01063{transform:matrix(0.281835,-0.009028,0.008004,0.249872,0,0);-ms-transform:matrix(0.281835,-0.009028,0.008004,0.249872,0,0);-webkit-transform:matrix(0.281835,-0.009028,0.008004,0.249872,0,0);}
.m3b_c01063{transform:matrix(0.301330,-0.009652,0.008004,0.249872,0,0);-ms-transform:matrix(0.301330,-0.009652,0.008004,0.249872,0,0);-webkit-transform:matrix(0.301330,-0.009652,0.008004,0.249872,0,0);}
.m15_c01063{transform:matrix(0.301570,-0.009660,0.008004,0.249872,0,0);-ms-transform:matrix(0.301570,-0.009660,0.008004,0.249872,0,0);-webkit-transform:matrix(0.301570,-0.009660,0.008004,0.249872,0,0);}
.m16_c01063{transform:matrix(0.306328,-0.009812,0.008004,0.249872,0,0);-ms-transform:matrix(0.306328,-0.009812,0.008004,0.249872,0,0);-webkit-transform:matrix(0.306328,-0.009812,0.008004,0.249872,0,0);}
.m37_c01063{transform:matrix(0.312105,-0.009997,0.008004,0.249872,0,0);-ms-transform:matrix(0.312105,-0.009997,0.008004,0.249872,0,0);-webkit-transform:matrix(0.312105,-0.009997,0.008004,0.249872,0,0);}
.m35_c01063{transform:matrix(0.363319,-0.011638,0.008004,0.249872,0,0);-ms-transform:matrix(0.363319,-0.011638,0.008004,0.249872,0,0);-webkit-transform:matrix(0.363319,-0.011638,0.008004,0.249872,0,0);}
.m8d_c01063{transform:matrix(0.369109,-0.004798,0.003250,0.249979,0,0);-ms-transform:matrix(0.369109,-0.004798,0.003250,0.249979,0,0);-webkit-transform:matrix(0.369109,-0.004798,0.003250,0.249979,0,0);}
.m96_c01063{transform:matrix(0.381038,-0.004953,0.003250,0.249979,0,0);-ms-transform:matrix(0.381038,-0.004953,0.003250,0.249979,0,0);-webkit-transform:matrix(0.381038,-0.004953,0.003250,0.249979,0,0);}
.m42_c01063{transform:matrix(0.397911,-0.012746,0.008004,0.249872,0,0);-ms-transform:matrix(0.397911,-0.012746,0.008004,0.249872,0,0);-webkit-transform:matrix(0.397911,-0.012746,0.008004,0.249872,0,0);}
.m56_c01063{transform:matrix(0.399730,-0.012804,0.008004,0.249872,0,0);-ms-transform:matrix(0.399730,-0.012804,0.008004,0.249872,0,0);-webkit-transform:matrix(0.399730,-0.012804,0.008004,0.249872,0,0);}
.m57_c01063{transform:matrix(0.408361,-0.013081,0.008004,0.249872,0,0);-ms-transform:matrix(0.408361,-0.013081,0.008004,0.249872,0,0);-webkit-transform:matrix(0.408361,-0.013081,0.008004,0.249872,0,0);}
.m1_c01063{transform:matrix(0.420629,-0.013474,0.008004,0.249872,0,0);-ms-transform:matrix(0.420629,-0.013474,0.008004,0.249872,0,0);-webkit-transform:matrix(0.420629,-0.013474,0.008004,0.249872,0,0);}
.m4b_c01063{transform:matrix(0.421249,-0.013493,0.008004,0.249872,0,0);-ms-transform:matrix(0.421249,-0.013493,0.008004,0.249872,0,0);-webkit-transform:matrix(0.421249,-0.013493,0.008004,0.249872,0,0);}
.ma2_c01063{transform:matrix(0.515561,-0.006702,0.003250,0.249979,0,0);-ms-transform:matrix(0.515561,-0.006702,0.003250,0.249979,0,0);-webkit-transform:matrix(0.515561,-0.006702,0.003250,0.249979,0,0);}
.mad_c01063{transform:matrix(0.526780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526780,0.000000,0.000000,0.250000,0,0);}
.m94_c01063{transform:matrix(0.535260,-0.006958,0.003250,0.249979,0,0);-ms-transform:matrix(0.535260,-0.006958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.535260,-0.006958,0.003250,0.249979,0,0);}
.mac_c01063{transform:matrix(0.539645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539645,0.000000,0.000000,0.250000,0,0);}
.ma3_c01063{transform:matrix(0.559388,-0.007272,0.003250,0.249979,0,0);-ms-transform:matrix(0.559388,-0.007272,0.003250,0.249979,0,0);-webkit-transform:matrix(0.559388,-0.007272,0.003250,0.249979,0,0);}
.mae_c01063{transform:matrix(0.581705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581705,0.000000,0.000000,0.250000,0,0);}
.mab_c01063{transform:matrix(0.699955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699955,0.000000,0.000000,0.250000,0,0);}
.ma4_c01063{transform:matrix(0.755686,-0.009824,0.003250,0.249979,0,0);-ms-transform:matrix(0.755686,-0.009824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.755686,-0.009824,0.003250,0.249979,0,0);}
.maf_c01063{transform:matrix(0.792760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792760,0.000000,0.000000,0.250000,0,0);}
.m60_c01063{transform:matrix(1.080636,-0.034615,0.008004,0.249872,0,0);-ms-transform:matrix(1.080636,-0.034615,0.008004,0.249872,0,0);-webkit-transform:matrix(1.080636,-0.034615,0.008004,0.249872,0,0);}
.maa_c01063{transform:matrix(1.557110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.557110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.557110,0.000000,0.000000,0.250000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01063{word-spacing:0.000000px;}
.fc0_c01063{color:transparent;}
.fsf_c01063{font-size:49.354170px;}
.fsd_c01063{font-size:51.454347px;}
.fse_c01063{font-size:57.754880px;}
.fs5_c01063{font-size:62.969280px;}
.fsb_c01063{font-size:64.059255px;}
.fs8_c01063{font-size:65.068256px;}
.fs7_c01063{font-size:67.167232px;}
.fs3_c01063{font-size:68.216720px;}
.fs0_c01063{font-size:68.250000px;}
.fs9_c01063{font-size:69.310013px;}
.fsa_c01063{font-size:70.360165px;}
.fs4_c01063{font-size:72.414672px;}
.fs10_c01063{font-size:72.450000px;}
.fs1_c01063{font-size:73.464160px;}
.fs2_c01063{font-size:74.513648px;}
.fs6_c01063{font-size:75.563136px;}
.fsc_c01063{font-size:79.812927px;}
.fs11_c01063{font-size:80.850000px;}
.y0_c01063{bottom:0.000000px;}
.yac_c01063{bottom:81.813000px;}
.yad_c01063{bottom:82.410000px;}
.yae_c01063{bottom:82.977000px;}
.yaf_c01063{bottom:83.491500px;}
.yb0_c01063{bottom:84.648000px;}
.yab_c01063{bottom:97.242000px;}
.ya4_c01063{bottom:121.045589px;}
.ya5_c01063{bottom:121.045800px;}
.ya6_c01063{bottom:121.046010px;}
.ya7_c01063{bottom:121.046571px;}
.ya8_c01063{bottom:121.046903px;}
.yaa_c01063{bottom:121.047035px;}
.ya9_c01063{bottom:121.047573px;}
.y99_c01063{bottom:137.968901px;}
.y9a_c01063{bottom:138.286851px;}
.y9b_c01063{bottom:138.459671px;}
.y9c_c01063{bottom:138.958500px;}
.y9d_c01063{bottom:139.290423px;}
.y9e_c01063{bottom:139.547828px;}
.y9f_c01063{bottom:139.832687px;}
.ya0_c01063{bottom:139.958286px;}
.ya1_c01063{bottom:140.223360px;}
.ya2_c01063{bottom:140.377155px;}
.ya3_c01063{bottom:141.718638px;}
.y85_c01063{bottom:155.251500px;}
.y86_c01063{bottom:155.381955px;}
.y87_c01063{bottom:155.536239px;}
.y88_c01063{bottom:156.269771px;}
.y89_c01063{bottom:156.670242px;}
.y8a_c01063{bottom:156.842135px;}
.y8b_c01063{bottom:157.445757px;}
.y8c_c01063{bottom:157.751244px;}
.y8d_c01063{bottom:158.320312px;}
.y8e_c01063{bottom:158.583719px;}
.y8f_c01063{bottom:158.695843px;}
.y90_c01063{bottom:158.987700px;}
.y91_c01063{bottom:159.120651px;}
.y92_c01063{bottom:159.310503px;}
.y93_c01063{bottom:159.696116px;}
.y94_c01063{bottom:160.184610px;}
.y95_c01063{bottom:160.566752px;}
.y96_c01063{bottom:160.865667px;}
.y97_c01063{bottom:161.560764px;}
.y98_c01063{bottom:161.762511px;}
.y80_c01063{bottom:346.144500px;}
.y81_c01063{bottom:350.227386px;}
.y82_c01063{bottom:350.907489px;}
.y83_c01063{bottom:351.552897px;}
.y84_c01063{bottom:352.214883px;}
.y77_c01063{bottom:368.280083px;}
.y78_c01063{bottom:369.143432px;}
.y79_c01063{bottom:370.072514px;}
.y7a_c01063{bottom:370.525778px;}
.y7b_c01063{bottom:370.968540px;}
.y7c_c01063{bottom:371.960325px;}
.y7d_c01063{bottom:372.437443px;}
.y7e_c01063{bottom:373.663925px;}
.y7f_c01063{bottom:374.063788px;}
.y6c_c01063{bottom:392.040834px;}
.y6d_c01063{bottom:392.430066px;}
.y6e_c01063{bottom:392.881391px;}
.y6f_c01063{bottom:393.440044px;}
.y70_c01063{bottom:394.014177px;}
.y71_c01063{bottom:394.835660px;}
.y72_c01063{bottom:395.249015px;}
.y73_c01063{bottom:395.769010px;}
.y74_c01063{bottom:396.217683px;}
.y75_c01063{bottom:397.008285px;}
.y76_c01063{bottom:397.848357px;}
.y63_c01063{bottom:414.696000px;}
.y64_c01063{bottom:415.123278px;}
.y65_c01063{bottom:416.223399px;}
.y66_c01063{bottom:416.469908px;}
.y67_c01063{bottom:417.206373px;}
.y68_c01063{bottom:417.817990px;}
.y69_c01063{bottom:418.603084px;}
.y6a_c01063{bottom:420.240388px;}
.y6b_c01063{bottom:420.929959px;}
.y61_c01063{bottom:448.387191px;}
.y62_c01063{bottom:452.631166px;}
.y58_c01063{bottom:471.614328px;}
.y59_c01063{bottom:472.446365px;}
.y5a_c01063{bottom:473.185530px;}
.y5b_c01063{bottom:473.946585px;}
.y5c_c01063{bottom:474.831170px;}
.y5d_c01063{bottom:475.970050px;}
.y5e_c01063{bottom:476.390637px;}
.y5f_c01063{bottom:476.782656px;}
.y60_c01063{bottom:477.583218px;}
.y57_c01063{bottom:505.057365px;}
.y4d_c01063{bottom:531.495946px;}
.y4e_c01063{bottom:531.905938px;}
.y4f_c01063{bottom:532.576068px;}
.y50_c01063{bottom:533.138475px;}
.y51_c01063{bottom:533.681750px;}
.y52_c01063{bottom:534.338715px;}
.y53_c01063{bottom:535.035498px;}
.y54_c01063{bottom:536.130597px;}
.y55_c01063{bottom:536.682085px;}
.y56_c01063{bottom:537.827067px;}
.y4c_c01063{bottom:565.108483px;}
.y44_c01063{bottom:591.945501px;}
.y45_c01063{bottom:592.436880px;}
.y46_c01063{bottom:593.273001px;}
.y47_c01063{bottom:593.734035px;}
.y48_c01063{bottom:594.574722px;}
.y49_c01063{bottom:595.376977px;}
.y4a_c01063{bottom:595.953642px;}
.y4b_c01063{bottom:596.380111px;}
.y43_c01063{bottom:623.004904px;}
.y37_c01063{bottom:646.462853px;}
.y38_c01063{bottom:646.977933px;}
.y39_c01063{bottom:647.553647px;}
.y3a_c01063{bottom:649.192936px;}
.y3b_c01063{bottom:649.449847px;}
.y3c_c01063{bottom:650.369037px;}
.y3d_c01063{bottom:651.260395px;}
.y3e_c01063{bottom:652.247839px;}
.y3f_c01063{bottom:653.250063px;}
.y40_c01063{bottom:653.534335px;}
.y41_c01063{bottom:654.166959px;}
.y42_c01063{bottom:654.658497px;}
.y30_c01063{bottom:669.938166px;}
.y31_c01063{bottom:671.489313px;}
.y32_c01063{bottom:671.906080px;}
.y33_c01063{bottom:672.584676px;}
.y34_c01063{bottom:673.545079px;}
.y35_c01063{bottom:675.332884px;}
.y36_c01063{bottom:676.969542px;}
.y28_c01063{bottom:692.607658px;}
.y29_c01063{bottom:693.762919px;}
.y2a_c01063{bottom:694.200894px;}
.y2b_c01063{bottom:695.395987px;}
.y2c_c01063{bottom:695.637472px;}
.y2d_c01063{bottom:696.306616px;}
.y2e_c01063{bottom:697.204530px;}
.y2f_c01063{bottom:699.773013px;}
.y1f_c01063{bottom:715.545423px;}
.y20_c01063{bottom:716.205816px;}
.y21_c01063{bottom:717.242940px;}
.y22_c01063{bottom:717.740631px;}
.y23_c01063{bottom:718.266207px;}
.y24_c01063{bottom:719.490366px;}
.y25_c01063{bottom:719.915736px;}
.y26_c01063{bottom:721.044084px;}
.y27_c01063{bottom:721.794570px;}
.y18_c01063{bottom:738.488418px;}
.y19_c01063{bottom:739.427616px;}
.y1a_c01063{bottom:740.472696px;}
.y1b_c01063{bottom:742.410817px;}
.y1c_c01063{bottom:743.038231px;}
.y1d_c01063{bottom:744.880375px;}
.y1e_c01063{bottom:745.667343px;}
.yd_c01063{bottom:761.156961px;}
.ye_c01063{bottom:762.149664px;}
.yf_c01063{bottom:762.716577px;}
.y10_c01063{bottom:763.498737px;}
.y11_c01063{bottom:764.675470px;}
.y12_c01063{bottom:766.105462px;}
.y13_c01063{bottom:766.762788px;}
.y14_c01063{bottom:767.800644px;}
.y15_c01063{bottom:769.117780px;}
.y16_c01063{bottom:769.759671px;}
.y17_c01063{bottom:770.898393px;}
.y3_c01063{bottom:782.484681px;}
.y4_c01063{bottom:783.278337px;}
.y5_c01063{bottom:784.476669px;}
.y6_c01063{bottom:785.414405px;}
.y7_c01063{bottom:786.665355px;}
.y8_c01063{bottom:787.557288px;}
.y9_c01063{bottom:789.166824px;}
.ya_c01063{bottom:791.558976px;}
.yb_c01063{bottom:792.417538px;}
.yc_c01063{bottom:793.465311px;}
.y2_c01063{bottom:810.558000px;}
.y1_c01063{bottom:878.445000px;}
.h11_c01063{height:49.354170px;}
.hf_c01063{height:51.454347px;}
.h10_c01063{height:57.754880px;}
.h7_c01063{height:62.969280px;}
.hd_c01063{height:64.059255px;}
.ha_c01063{height:65.068256px;}
.h9_c01063{height:67.167232px;}
.h5_c01063{height:68.216720px;}
.h2_c01063{height:68.250000px;}
.hb_c01063{height:69.310013px;}
.hc_c01063{height:70.360165px;}
.h6_c01063{height:72.414672px;}
.h12_c01063{height:72.450000px;}
.h3_c01063{height:73.464160px;}
.h4_c01063{height:74.513648px;}
.h8_c01063{height:75.563136px;}
.he_c01063{height:79.812927px;}
.h13_c01063{height:80.850000px;}
.h0_c01063{height:1008.450000px;}
.h1_c01063{height:1008.750000px;}
.w1_c01063{width:700.500000px;}
.w0_c01063{width:700.650000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:69.660000px;}
.x79_c01063{left:76.920000px;}
.x77_c01063{left:79.920000px;}
.x7a_c01063{left:131.257500px;}
.x6d_c01063{left:136.155534px;}
.x5f_c01063{left:148.594500px;}
.x60_c01063{left:158.629500px;}
.x3_c01063{left:161.698992px;}
.xd_c01063{left:163.472690px;}
.x4b_c01063{left:165.469500px;}
.x56_c01063{left:166.881250px;}
.x61_c01063{left:170.497500px;}
.x6e_c01063{left:175.846608px;}
.x78_c01063{left:181.440000px;}
.x7b_c01063{left:182.827500px;}
.x74_c01063{left:184.145106px;}
.x4_c01063{left:185.726672px;}
.x2e_c01063{left:186.819569px;}
.x3e_c01063{left:187.955495px;}
.x51_c01063{left:189.152754px;}
.x4c_c01063{left:190.603500px;}
.x5c_c01063{left:192.792000px;}
.x38_c01063{left:196.288823px;}
.x6f_c01063{left:197.449512px;}
.xe_c01063{left:200.176811px;}
.x16_c01063{left:202.628187px;}
.x44_c01063{left:207.683552px;}
.x57_c01063{left:210.076057px;}
.x2f_c01063{left:214.205313px;}
.x52_c01063{left:215.701254px;}
.x75_c01063{left:219.518073px;}
.x5_c01063{left:222.013196px;}
.x3f_c01063{left:227.280014px;}
.x7c_c01063{left:229.537500px;}
.x23_c01063{left:245.224421px;}
.x45_c01063{left:246.540848px;}
.x17_c01063{left:247.991847px;}
.x6_c01063{left:250.398369px;}
.x39_c01063{left:251.893932px;}
.x4d_c01063{left:255.316500px;}
.x1c_c01063{left:256.696642px;}
.x62_c01063{left:257.728500px;}
.x40_c01063{left:260.291325px;}
.x29_c01063{left:266.211576px;}
.x4e_c01063{left:269.817000px;}
.x63_c01063{left:270.951000px;}
.x58_c01063{left:279.210538px;}
.x3a_c01063{left:282.583433px;}
.x1d_c01063{left:284.315892px;}
.x46_c01063{left:286.502970px;}
.x7_c01063{left:288.280747px;}
.x2_c01063{left:290.811000px;}
.x30_c01063{left:292.168255px;}
.xf_c01063{left:293.593243px;}
.x2a_c01063{left:301.866732px;}
.x31_c01063{left:304.403333px;}
.x24_c01063{left:308.055713px;}
.x43_c01063{left:311.041568px;}
.x1e_c01063{left:313.461286px;}
.x8_c01063{left:315.282853px;}
.x64_c01063{left:317.383500px;}
.x25_c01063{left:320.745795px;}
.x41_c01063{left:330.729143px;}
.x18_c01063{left:332.146372px;}
.x70_c01063{left:333.547365px;}
.x7d_c01063{left:334.671000px;}
.x3b_c01063{left:338.518404px;}
.x65_c01063{left:340.882500px;}
.x76_c01063{left:343.728555px;}
.x10_c01063{left:346.477762px;}
.x32_c01063{left:348.131484px;}
.x59_c01063{left:350.974392px;}
.x2b_c01063{left:352.313732px;}
.x26_c01063{left:355.871740px;}
.x19_c01063{left:359.413458px;}
.x9_c01063{left:364.032018px;}
.x71_c01063{left:369.192686px;}
.x11_c01063{left:370.791816px;}
.x5a_c01063{left:374.803668px;}
.x1f_c01063{left:381.367774px;}
.x53_c01063{left:385.561254px;}
.x33_c01063{left:390.522494px;}
.x3c_c01063{left:391.895543px;}
.x4f_c01063{left:395.298000px;}
.x27_c01063{left:403.056660px;}
.x20_c01063{left:404.949739px;}
.x12_c01063{left:409.186533px;}
.x54_c01063{left:411.953754px;}
.x66_c01063{left:413.544000px;}
.x47_c01063{left:414.877396px;}
.x72_c01063{left:418.055364px;}
.x5d_c01063{left:419.619000px;}
.x3d_c01063{left:430.269031px;}
.x48_c01063{left:435.451354px;}
.xa_c01063{left:436.464207px;}
.x1a_c01063{left:439.400954px;}
.x2c_c01063{left:446.245816px;}
.x5b_c01063{left:456.084512px;}
.x13_c01063{left:457.939063px;}
.x67_c01063{left:460.825500px;}
.xb_c01063{left:462.471357px;}
.x21_c01063{left:467.523663px;}
.x1b_c01063{left:473.569101px;}
.x49_c01063{left:477.489763px;}
.x14_c01063{left:481.677597px;}
.x34_c01063{left:485.090128px;}
.x68_c01063{left:490.488000px;}
.x50_c01063{left:491.610000px;}
.xc_c01063{left:494.198090px;}
.x35_c01063{left:498.600861px;}
.x55_c01063{left:507.875754px;}
.x22_c01063{left:509.122665px;}
.x4a_c01063{left:517.234503px;}
.x15_c01063{left:523.783176px;}
.x36_c01063{left:528.699851px;}
.x5e_c01063{left:530.035500px;}
.x2d_c01063{left:532.228044px;}
.x42_c01063{left:535.537532px;}
.x28_c01063{left:538.031766px;}
.x37_c01063{left:552.099692px;}
.x69_c01063{left:557.460000px;}
.x6a_c01063{left:580.453500px;}
.x73_c01063{left:604.973513px;}
.x6b_c01063{left:633.922500px;}
.x6c_c01063{left:649.441500px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws0_c01063{word-spacing:0.000000pt;}
.fsf_c01063{font-size:43.870373pt;}
.fsd_c01063{font-size:45.737198pt;}
.fse_c01063{font-size:51.337671pt;}
.fs5_c01063{font-size:55.972693pt;}
.fsb_c01063{font-size:56.941560pt;}
.fs8_c01063{font-size:57.838450pt;}
.fs7_c01063{font-size:59.704206pt;}
.fs3_c01063{font-size:60.637084pt;}
.fs0_c01063{font-size:60.666667pt;}
.fs9_c01063{font-size:61.608901pt;}
.fsa_c01063{font-size:62.542369pt;}
.fs4_c01063{font-size:64.368597pt;}
.fs10_c01063{font-size:64.400000pt;}
.fs1_c01063{font-size:65.301476pt;}
.fs2_c01063{font-size:66.234354pt;}
.fs6_c01063{font-size:67.167232pt;}
.fsc_c01063{font-size:70.944824pt;}
.fs11_c01063{font-size:71.866667pt;}
.y0_c01063{bottom:0.000000pt;}
.yac_c01063{bottom:72.722667pt;}
.yad_c01063{bottom:73.253333pt;}
.yae_c01063{bottom:73.757333pt;}
.yaf_c01063{bottom:74.214667pt;}
.yb0_c01063{bottom:75.242667pt;}
.yab_c01063{bottom:86.437333pt;}
.ya4_c01063{bottom:107.596079pt;}
.ya5_c01063{bottom:107.596267pt;}
.ya6_c01063{bottom:107.596453pt;}
.ya7_c01063{bottom:107.596952pt;}
.ya8_c01063{bottom:107.597247pt;}
.yaa_c01063{bottom:107.597364pt;}
.ya9_c01063{bottom:107.597843pt;}
.y99_c01063{bottom:122.639023pt;}
.y9a_c01063{bottom:122.921645pt;}
.y9b_c01063{bottom:123.075263pt;}
.y9c_c01063{bottom:123.518667pt;}
.y9d_c01063{bottom:123.813709pt;}
.y9e_c01063{bottom:124.042513pt;}
.y9f_c01063{bottom:124.295721pt;}
.ya0_c01063{bottom:124.407365pt;}
.ya1_c01063{bottom:124.642987pt;}
.ya2_c01063{bottom:124.779693pt;}
.ya3_c01063{bottom:125.972123pt;}
.y85_c01063{bottom:138.001333pt;}
.y86_c01063{bottom:138.117293pt;}
.y87_c01063{bottom:138.254435pt;}
.y88_c01063{bottom:138.906463pt;}
.y89_c01063{bottom:139.262437pt;}
.y8a_c01063{bottom:139.415231pt;}
.y8b_c01063{bottom:139.951784pt;}
.y8c_c01063{bottom:140.223328pt;}
.y8d_c01063{bottom:140.729167pt;}
.y8e_c01063{bottom:140.963305pt;}
.y8f_c01063{bottom:141.062972pt;}
.y90_c01063{bottom:141.322400pt;}
.y91_c01063{bottom:141.440579pt;}
.y92_c01063{bottom:141.609336pt;}
.y93_c01063{bottom:141.952103pt;}
.y94_c01063{bottom:142.386320pt;}
.y95_c01063{bottom:142.726001pt;}
.y96_c01063{bottom:142.991704pt;}
.y97_c01063{bottom:143.609568pt;}
.y98_c01063{bottom:143.788899pt;}
.y80_c01063{bottom:307.684000pt;}
.y81_c01063{bottom:311.313232pt;}
.y82_c01063{bottom:311.917768pt;}
.y83_c01063{bottom:312.491464pt;}
.y84_c01063{bottom:313.079896pt;}
.y77_c01063{bottom:327.360073pt;}
.y78_c01063{bottom:328.127495pt;}
.y79_c01063{bottom:328.953345pt;}
.y7a_c01063{bottom:329.356247pt;}
.y7b_c01063{bottom:329.749813pt;}
.y7c_c01063{bottom:330.631400pt;}
.y7d_c01063{bottom:331.055505pt;}
.y7e_c01063{bottom:332.145711pt;}
.y7f_c01063{bottom:332.501145pt;}
.y6c_c01063{bottom:348.480741pt;}
.y6d_c01063{bottom:348.826725pt;}
.y6e_c01063{bottom:349.227903pt;}
.y6f_c01063{bottom:349.724484pt;}
.y70_c01063{bottom:350.234824pt;}
.y71_c01063{bottom:350.965031pt;}
.y72_c01063{bottom:351.332457pt;}
.y73_c01063{bottom:351.794676pt;}
.y74_c01063{bottom:352.193496pt;}
.y75_c01063{bottom:352.896253pt;}
.y76_c01063{bottom:353.642984pt;}
.y63_c01063{bottom:368.618667pt;}
.y64_c01063{bottom:368.998469pt;}
.y65_c01063{bottom:369.976355pt;}
.y66_c01063{bottom:370.195473pt;}
.y67_c01063{bottom:370.850109pt;}
.y68_c01063{bottom:371.393769pt;}
.y69_c01063{bottom:372.091631pt;}
.y6a_c01063{bottom:373.547012pt;}
.y6b_c01063{bottom:374.159964pt;}
.y61_c01063{bottom:398.566392pt;}
.y62_c01063{bottom:402.338815pt;}
.y58_c01063{bottom:419.212736pt;}
.y59_c01063{bottom:419.952324pt;}
.y5a_c01063{bottom:420.609360pt;}
.y5b_c01063{bottom:421.285853pt;}
.y5c_c01063{bottom:422.072151pt;}
.y5d_c01063{bottom:423.084489pt;}
.y5e_c01063{bottom:423.458344pt;}
.y5f_c01063{bottom:423.806805pt;}
.y60_c01063{bottom:424.518416pt;}
.y57_c01063{bottom:448.939880pt;}
.y4d_c01063{bottom:472.440841pt;}
.y4e_c01063{bottom:472.805279pt;}
.y4f_c01063{bottom:473.400949pt;}
.y50_c01063{bottom:473.900867pt;}
.y51_c01063{bottom:474.383777pt;}
.y52_c01063{bottom:474.967747pt;}
.y53_c01063{bottom:475.587109pt;}
.y54_c01063{bottom:476.560531pt;}
.y55_c01063{bottom:477.050743pt;}
.y56_c01063{bottom:478.068504pt;}
.y4c_c01063{bottom:502.318652pt;}
.y44_c01063{bottom:526.173779pt;}
.y45_c01063{bottom:526.610560pt;}
.y46_c01063{bottom:527.353779pt;}
.y47_c01063{bottom:527.763587pt;}
.y48_c01063{bottom:528.510864pt;}
.y49_c01063{bottom:529.223980pt;}
.y4a_c01063{bottom:529.736571pt;}
.y4b_c01063{bottom:530.115655pt;}
.y43_c01063{bottom:553.782137pt;}
.y37_c01063{bottom:574.633647pt;}
.y38_c01063{bottom:575.091496pt;}
.y39_c01063{bottom:575.603241pt;}
.y3a_c01063{bottom:577.060388pt;}
.y3b_c01063{bottom:577.288753pt;}
.y3c_c01063{bottom:578.105811pt;}
.y3d_c01063{bottom:578.898129pt;}
.y3e_c01063{bottom:579.775857pt;}
.y3f_c01063{bottom:580.666723pt;}
.y40_c01063{bottom:580.919409pt;}
.y41_c01063{bottom:581.481741pt;}
.y42_c01063{bottom:581.918664pt;}
.y30_c01063{bottom:595.500592pt;}
.y31_c01063{bottom:596.879389pt;}
.y32_c01063{bottom:597.249849pt;}
.y33_c01063{bottom:597.853045pt;}
.y34_c01063{bottom:598.706737pt;}
.y35_c01063{bottom:600.295897pt;}
.y36_c01063{bottom:601.750704pt;}
.y28_c01063{bottom:615.651252pt;}
.y29_c01063{bottom:616.678151pt;}
.y2a_c01063{bottom:617.067461pt;}
.y2b_c01063{bottom:618.129767pt;}
.y2c_c01063{bottom:618.344420pt;}
.y2d_c01063{bottom:618.939215pt;}
.y2e_c01063{bottom:619.737360pt;}
.y2f_c01063{bottom:622.020456pt;}
.y1f_c01063{bottom:636.040376pt;}
.y20_c01063{bottom:636.627392pt;}
.y21_c01063{bottom:637.549280pt;}
.y22_c01063{bottom:637.991672pt;}
.y23_c01063{bottom:638.458851pt;}
.y24_c01063{bottom:639.546992pt;}
.y25_c01063{bottom:639.925099pt;}
.y26_c01063{bottom:640.928075pt;}
.y27_c01063{bottom:641.595173pt;}
.y18_c01063{bottom:656.434149pt;}
.y19_c01063{bottom:657.268992pt;}
.y1a_c01063{bottom:658.197952pt;}
.y1b_c01063{bottom:659.920727pt;}
.y1c_c01063{bottom:660.478428pt;}
.y1d_c01063{bottom:662.115889pt;}
.y1e_c01063{bottom:662.815416pt;}
.yd_c01063{bottom:676.583965pt;}
.ye_c01063{bottom:677.466368pt;}
.yf_c01063{bottom:677.970291pt;}
.y10_c01063{bottom:678.665544pt;}
.y11_c01063{bottom:679.711529pt;}
.y12_c01063{bottom:680.982633pt;}
.y13_c01063{bottom:681.566923pt;}
.y14_c01063{bottom:682.489461pt;}
.y15_c01063{bottom:683.660249pt;}
.y16_c01063{bottom:684.230819pt;}
.y17_c01063{bottom:685.243016pt;}
.y3_c01063{bottom:695.541939pt;}
.y4_c01063{bottom:696.247411pt;}
.y5_c01063{bottom:697.312595pt;}
.y6_c01063{bottom:698.146137pt;}
.y7_c01063{bottom:699.258093pt;}
.y8_c01063{bottom:700.050923pt;}
.y9_c01063{bottom:701.481621pt;}
.ya_c01063{bottom:703.607979pt;}
.yb_c01063{bottom:704.371145pt;}
.yc_c01063{bottom:705.302499pt;}
.y2_c01063{bottom:720.496000pt;}
.y1_c01063{bottom:780.840000pt;}
.h11_c01063{height:43.870373pt;}
.hf_c01063{height:45.737198pt;}
.h10_c01063{height:51.337671pt;}
.h7_c01063{height:55.972693pt;}
.hd_c01063{height:56.941560pt;}
.ha_c01063{height:57.838450pt;}
.h9_c01063{height:59.704206pt;}
.h5_c01063{height:60.637084pt;}
.h2_c01063{height:60.666667pt;}
.hb_c01063{height:61.608901pt;}
.hc_c01063{height:62.542369pt;}
.h6_c01063{height:64.368597pt;}
.h12_c01063{height:64.400000pt;}
.h3_c01063{height:65.301476pt;}
.h4_c01063{height:66.234354pt;}
.h8_c01063{height:67.167232pt;}
.he_c01063{height:70.944824pt;}
.h13_c01063{height:71.866667pt;}
.h0_c01063{height:896.400000pt;}
.h1_c01063{height:896.666667pt;}
.w1_c01063{width:622.666667pt;}
.w0_c01063{width:622.800000pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:61.920000pt;}
.x79_c01063{left:68.373333pt;}
.x77_c01063{left:71.040000pt;}
.x7a_c01063{left:116.673333pt;}
.x6d_c01063{left:121.027141pt;}
.x5f_c01063{left:132.084000pt;}
.x60_c01063{left:141.004000pt;}
.x3_c01063{left:143.732437pt;}
.xd_c01063{left:145.309057pt;}
.x4b_c01063{left:147.084000pt;}
.x56_c01063{left:148.338889pt;}
.x61_c01063{left:151.553333pt;}
.x6e_c01063{left:156.308096pt;}
.x78_c01063{left:161.280000pt;}
.x7b_c01063{left:162.513333pt;}
.x74_c01063{left:163.684539pt;}
.x4_c01063{left:165.090375pt;}
.x2e_c01063{left:166.061839pt;}
.x3e_c01063{left:167.071551pt;}
.x51_c01063{left:168.135781pt;}
.x4c_c01063{left:169.425333pt;}
.x5c_c01063{left:171.370667pt;}
.x38_c01063{left:174.478953pt;}
.x6f_c01063{left:175.510677pt;}
.xe_c01063{left:177.934943pt;}
.x16_c01063{left:180.113944pt;}
.x44_c01063{left:184.607601pt;}
.x57_c01063{left:186.734273pt;}
.x2f_c01063{left:190.404723pt;}
.x52_c01063{left:191.734448pt;}
.x75_c01063{left:195.127176pt;}
.x5_c01063{left:197.345063pt;}
.x3f_c01063{left:202.026679pt;}
.x7c_c01063{left:204.033333pt;}
.x23_c01063{left:217.977263pt;}
.x45_c01063{left:219.147420pt;}
.x17_c01063{left:220.437197pt;}
.x6_c01063{left:222.576328pt;}
.x39_c01063{left:223.905717pt;}
.x4d_c01063{left:226.948000pt;}
.x1c_c01063{left:228.174793pt;}
.x62_c01063{left:229.092000pt;}
.x40_c01063{left:231.370067pt;}
.x29_c01063{left:236.632512pt;}
.x4e_c01063{left:239.837333pt;}
.x63_c01063{left:240.845333pt;}
.x58_c01063{left:248.187145pt;}
.x3a_c01063{left:251.185273pt;}
.x1d_c01063{left:252.725237pt;}
.x46_c01063{left:254.669307pt;}
.x7_c01063{left:256.249553pt;}
.x2_c01063{left:258.498667pt;}
.x30_c01063{left:259.705116pt;}
.xf_c01063{left:260.971772pt;}
.x2a_c01063{left:268.325984pt;}
.x31_c01063{left:270.580740pt;}
.x24_c01063{left:273.827300pt;}
.x43_c01063{left:276.481393pt;}
.x1e_c01063{left:278.632255pt;}
.x8_c01063{left:280.251425pt;}
.x64_c01063{left:282.118667pt;}
.x25_c01063{left:285.107373pt;}
.x41_c01063{left:293.981460pt;}
.x18_c01063{left:295.241220pt;}
.x70_c01063{left:296.486547pt;}
.x7d_c01063{left:297.485333pt;}
.x3b_c01063{left:300.905248pt;}
.x65_c01063{left:303.006667pt;}
.x76_c01063{left:305.536493pt;}
.x10_c01063{left:307.980233pt;}
.x32_c01063{left:309.450208pt;}
.x59_c01063{left:311.977237pt;}
.x2b_c01063{left:313.167761pt;}
.x26_c01063{left:316.330436pt;}
.x19_c01063{left:319.478629pt;}
.x9_c01063{left:323.584016pt;}
.x71_c01063{left:328.171276pt;}
.x11_c01063{left:329.592725pt;}
.x5a_c01063{left:333.158816pt;}
.x1f_c01063{left:338.993577pt;}
.x53_c01063{left:342.721115pt;}
.x33_c01063{left:347.131105pt;}
.x3c_c01063{left:348.351593pt;}
.x4f_c01063{left:351.376000pt;}
.x27_c01063{left:358.272587pt;}
.x20_c01063{left:359.955324pt;}
.x12_c01063{left:363.721363pt;}
.x54_c01063{left:366.181115pt;}
.x66_c01063{left:367.594667pt;}
.x47_c01063{left:368.779908pt;}
.x72_c01063{left:371.604768pt;}
.x5d_c01063{left:372.994667pt;}
.x3d_c01063{left:382.461361pt;}
.x48_c01063{left:387.067871pt;}
.xa_c01063{left:387.968184pt;}
.x1a_c01063{left:390.578625pt;}
.x2c_c01063{left:396.662948pt;}
.x5b_c01063{left:405.408455pt;}
.x13_c01063{left:407.056945pt;}
.x67_c01063{left:409.622667pt;}
.xb_c01063{left:411.085651pt;}
.x21_c01063{left:415.576589pt;}
.x1b_c01063{left:420.950312pt;}
.x49_c01063{left:424.435345pt;}
.x14_c01063{left:428.157864pt;}
.x34_c01063{left:431.191225pt;}
.x68_c01063{left:435.989333pt;}
.x50_c01063{left:436.986667pt;}
.xc_c01063{left:439.287191pt;}
.x35_c01063{left:443.200765pt;}
.x55_c01063{left:451.445115pt;}
.x22_c01063{left:452.553480pt;}
.x4a_c01063{left:459.764003pt;}
.x15_c01063{left:465.585045pt;}
.x36_c01063{left:469.955423pt;}
.x5e_c01063{left:471.142667pt;}
.x2d_c01063{left:473.091595pt;}
.x42_c01063{left:476.033361pt;}
.x28_c01063{left:478.250459pt;}
.x37_c01063{left:490.755281pt;}
.x69_c01063{left:495.520000pt;}
.x6a_c01063{left:515.958667pt;}
.x73_c01063{left:537.754233pt;}
.x6b_c01063{left:563.486667pt;}
.x6c_c01063{left:577.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_c01064 {
    display:none;
  }
  .loading-indicator_c01064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01064 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01064 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01064" -> "#page-container .classname_c01064")
 */
.pf_c01064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01064 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01064 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01064 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01064 {overflow:visible;}
  }
}
.c_c01064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01064 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01064:after { /* webkit #35443 */
  content: '';
}
.t_c01064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01064 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01064 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01064 { /* info for Javascript */
  display:none;
}
.l_c01064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.000000;font-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_c01064{transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);}
.m41_c01064{transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100810,0.000000,0.000000,0.250000,0,0);}
.m55_c01064{transform:matrix(0.115840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115840,0.000000,0.000000,0.250000,0,0);}
.m7f_c01064{transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145115,0.000000,0.000000,0.250000,0,0);}
.m76_c01064{transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145435,0.000000,0.000000,0.250000,0,0);}
.m6c_c01064{transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145790,0.000000,0.000000,0.250000,0,0);}
.m20_c01064{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);}
.m21_c01064{transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147940,0.000000,0.000000,0.250000,0,0);}
.m86_c01064{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);}
.m22_c01064{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m7c_c01064{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);}
.m1a_c01064{transform:matrix(0.156271,-0.001719,0.002750,0.249985,0,0);-ms-transform:matrix(0.156271,-0.001719,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156271,-0.001719,0.002750,0.249985,0,0);}
.m1d_c01064{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);}
.m19_c01064{transform:matrix(0.157975,-0.001738,0.002750,0.249985,0,0);-ms-transform:matrix(0.157975,-0.001738,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157975,-0.001738,0.002750,0.249985,0,0);}
.m3e_c01064{transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160115,0.000000,0.000000,0.250000,0,0);}
.m1f_c01064{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);}
.m87_c01064{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);}
.m28_c01064{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);}
.m3c_c01064{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);}
.m79_c01064{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);}
.m66_c01064{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);}
.m24_c01064{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);}
.m52_c01064{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);}
.m53_c01064{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);}
.m3b_c01064{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);}
.m39_c01064{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);}
.m77_c01064{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);}
.m72_c01064{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);}
.m50_c01064{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);}
.m70_c01064{transform:matrix(0.173455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173455,0.000000,0.000000,0.250000,0,0);}
.m1e_c01064{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);}
.m23_c01064{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);}
.m85_c01064{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);}
.mc_c01064{transform:matrix(0.176544,-0.001942,0.002750,0.249985,0,0);-ms-transform:matrix(0.176544,-0.001942,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176544,-0.001942,0.002750,0.249985,0,0);}
.m17_c01064{transform:matrix(0.177639,-0.001954,0.002750,0.249985,0,0);-ms-transform:matrix(0.177639,-0.001954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177639,-0.001954,0.002750,0.249985,0,0);}
.m88_c01064{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);}
.me_c01064{transform:matrix(0.178639,-0.001965,0.002750,0.249985,0,0);-ms-transform:matrix(0.178639,-0.001965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178639,-0.001965,0.002750,0.249985,0,0);}
.m48_c01064{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);}
.m59_c01064{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);}
.m78_c01064{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.m7_c01064{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);}
.m25_c01064{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);}
.m58_c01064{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);}
.m16_c01064{transform:matrix(0.186444,-0.002051,0.002750,0.249985,0,0);-ms-transform:matrix(0.186444,-0.002051,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186444,-0.002051,0.002750,0.249985,0,0);}
.m10_c01064{transform:matrix(0.187289,-0.002060,0.002750,0.249985,0,0);-ms-transform:matrix(0.187289,-0.002060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187289,-0.002060,0.002750,0.249985,0,0);}
.m7d_c01064{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);}
.m3a_c01064{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);}
.m2b_c01064{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);}
.mf_c01064{transform:matrix(0.187714,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187714,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187714,-0.002065,0.002750,0.249985,0,0);}
.m64_c01064{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);}
.m32_c01064{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);}
.md_c01064{transform:matrix(0.188139,-0.002070,0.002750,0.249985,0,0);-ms-transform:matrix(0.188139,-0.002070,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188139,-0.002070,0.002750,0.249985,0,0);}
.m6e_c01064{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);}
.m29_c01064{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);}
.m56_c01064{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);}
.m54_c01064{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);}
.m2f_c01064{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);}
.m5c_c01064{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);}
.m18_c01064{transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191908,-0.002111,0.002750,0.249985,0,0);}
.m2c_c01064{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);}
.m5_c01064{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);}
.m6f_c01064{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);}
.m38_c01064{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);}
.m84_c01064{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);}
.m3f_c01064{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);}
.m4f_c01064{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);}
.m51_c01064{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);}
.m65_c01064{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);}
.m74_c01064{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);}
.m44_c01064{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m7e_c01064{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);}
.m46_c01064{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);}
.m5d_c01064{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);}
.m27_c01064{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);}
.m9_c01064{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);}
.m73_c01064{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);}
.m7b_c01064{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);}
.m2e_c01064{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);}
.m89_c01064{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);}
.m47_c01064{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);}
.m8a_c01064{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);}
.m6d_c01064{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);}
.m26_c01064{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);}
.m2d_c01064{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);}
.m31_c01064{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);}
.m36_c01064{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);}
.m45_c01064{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);}
.m67_c01064{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);}
.m14_c01064{transform:matrix(0.217907,-0.002397,0.002750,0.249985,0,0);-ms-transform:matrix(0.217907,-0.002397,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217907,-0.002397,0.002750,0.249985,0,0);}
.m63_c01064{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);}
.ma_c01064{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);}
.mb_c01064{transform:matrix(0.218727,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218727,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218727,-0.002406,0.002750,0.249985,0,0);}
.m40_c01064{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);}
.m75_c01064{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);}
.m4b_c01064{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);}
.m62_c01064{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);}
.m15_c01064{transform:matrix(0.225686,-0.002483,0.002750,0.249985,0,0);-ms-transform:matrix(0.225686,-0.002483,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225686,-0.002483,0.002750,0.249985,0,0);}
.m83_c01064{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);}
.m80_c01064{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m6b_c01064{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);}
.m43_c01064{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);}
.m2a_c01064{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);}
.m68_c01064{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);}
.m69_c01064{transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);}
.m71_c01064{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);}
.m3d_c01064{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);}
.m1_c01064{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);}
.m57_c01064{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m4a_c01064{transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);}
.m33_c01064{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);}
.m4e_c01064{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);}
.m34_c01064{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m42_c01064{transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257270,0.000000,0.000000,0.250000,0,0);}
.m12_c01064{transform:matrix(0.265399,-0.002919,0.002750,0.249985,0,0);-ms-transform:matrix(0.265399,-0.002919,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265399,-0.002919,0.002750,0.249985,0,0);}
.m61_c01064{transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);}
.m11_c01064{transform:matrix(0.280818,-0.003089,0.002750,0.249985,0,0);-ms-transform:matrix(0.280818,-0.003089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280818,-0.003089,0.002750,0.249985,0,0);}
.m49_c01064{transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284460,0.000000,0.000000,0.250000,0,0);}
.m37_c01064{transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);}
.m6a_c01064{transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289060,0.000000,0.000000,0.250000,0,0);}
.m1b_c01064{transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292385,0.000000,0.000000,0.250000,0,0);}
.m6_c01064{transform:matrix(0.297380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297380,0.000000,0.000000,0.250000,0,0);}
.m5a_c01064{transform:matrix(0.297975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297975,0.000000,0.000000,0.250000,0,0);}
.m1c_c01064{transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300245,0.000000,0.000000,0.250000,0,0);}
.m8_c01064{transform:matrix(0.316445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316445,0.000000,0.000000,0.250000,0,0);}
.m81_c01064{transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319390,0.000000,0.000000,0.250000,0,0);}
.m4_c01064{transform:matrix(0.322430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322430,0.000000,0.000000,0.250000,0,0);}
.m4c_c01064{transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325825,0.000000,0.000000,0.250000,0,0);}
.m60_c01064{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);}
.m5b_c01064{transform:matrix(0.373745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373745,0.000000,0.000000,0.250000,0,0);}
.m5e_c01064{transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380280,0.000000,0.000000,0.250000,0,0);}
.m3_c01064{transform:matrix(0.392695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392695,0.000000,0.000000,0.250000,0,0);}
.m13_c01064{transform:matrix(0.405630,-0.004462,0.002750,0.249985,0,0);-ms-transform:matrix(0.405630,-0.004462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.405630,-0.004462,0.002750,0.249985,0,0);}
.m4d_c01064{transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428090,0.000000,0.000000,0.250000,0,0);}
.m5f_c01064{transform:matrix(0.444415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444415,0.000000,0.000000,0.250000,0,0);}
.m7a_c01064{transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);}
.m2_c01064{transform:matrix(0.480460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480460,0.000000,0.000000,0.250000,0,0);}
.m35_c01064{transform:matrix(0.496030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496030,0.000000,0.000000,0.250000,0,0);}
.m82_c01064{transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);}
.m0_c01064{transform:matrix(0.748655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748655,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls0_c01064{letter-spacing:0.000000px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:0.000000px;}
.fc0_c01064{color:transparent;}
.fs12_c01064{font-size:22.050000px;}
.fs13_c01064{font-size:60.900000px;}
.fs11_c01064{font-size:63.000000px;}
.fse_c01064{font-size:65.100000px;}
.fsd_c01064{font-size:66.150000px;}
.fsf_c01064{font-size:67.200000px;}
.fs9_c01064{font-size:68.250000px;}
.fs10_c01064{font-size:69.300000px;}
.fs8_c01064{font-size:70.350000px;}
.fs7_c01064{font-size:71.400000px;}
.fsa_c01064{font-size:72.450000px;}
.fsc_c01064{font-size:79.800000px;}
.fs4_c01064{font-size:82.955018px;}
.fs2_c01064{font-size:88.200000px;}
.fs1_c01064{font-size:91.350000px;}
.fs5_c01064{font-size:91.355527px;}
.fs6_c01064{font-size:93.450000px;}
.fsb_c01064{font-size:94.500000px;}
.fs3_c01064{font-size:107.100000px;}
.fs0_c01064{font-size:237.300000px;}
.y0_c01064{bottom:0.000000px;}
.y2b_c01064{bottom:170.221500px;}
.y2a_c01064{bottom:197.910000px;}
.y29_c01064{bottom:222.210000px;}
.y28_c01064{bottom:244.500000px;}
.y27_c01064{bottom:267.030000px;}
.y26_c01064{bottom:289.521000px;}
.y25_c01064{bottom:312.477000px;}
.y24_c01064{bottom:336.447000px;}
.y23_c01064{bottom:358.401000px;}
.y22_c01064{bottom:381.588000px;}
.y21_c01064{bottom:404.460000px;}
.y20_c01064{bottom:427.285500px;}
.y1f_c01064{bottom:472.206000px;}
.y1e_c01064{bottom:493.528500px;}
.y1d_c01064{bottom:516.724500px;}
.y1c_c01064{bottom:538.533000px;}
.y1b_c01064{bottom:562.533000px;}
.y1a_c01064{bottom:585.216000px;}
.y19_c01064{bottom:607.672500px;}
.y18_c01064{bottom:630.496500px;}
.y17_c01064{bottom:652.473000px;}
.y16_c01064{bottom:676.161000px;}
.y15_c01064{bottom:697.927500px;}
.y10_c01064{bottom:741.425812px;}
.y13_c01064{bottom:741.425830px;}
.y11_c01064{bottom:741.426003px;}
.y14_c01064{bottom:741.426081px;}
.y12_c01064{bottom:741.426223px;}
.y5_c01064{bottom:765.451500px;}
.y6_c01064{bottom:765.813922px;}
.y7_c01064{bottom:766.578368px;}
.y8_c01064{bottom:767.607951px;}
.y9_c01064{bottom:767.901932px;}
.ya_c01064{bottom:768.584966px;}
.yb_c01064{bottom:768.935607px;}
.yc_c01064{bottom:769.253645px;}
.yd_c01064{bottom:769.492053px;}
.ye_c01064{bottom:770.078941px;}
.yf_c01064{bottom:770.482614px;}
.y4_c01064{bottom:810.261000px;}
.y3_c01064{bottom:874.873500px;}
.y2_c01064{bottom:875.340000px;}
.y1_c01064{bottom:916.897500px;}
.h14_c01064{height:22.050000px;}
.h15_c01064{height:60.900000px;}
.h13_c01064{height:63.000000px;}
.h10_c01064{height:65.100000px;}
.hf_c01064{height:66.150000px;}
.h11_c01064{height:67.200000px;}
.hb_c01064{height:68.250000px;}
.h12_c01064{height:69.300000px;}
.ha_c01064{height:70.350000px;}
.h9_c01064{height:71.400000px;}
.hc_c01064{height:72.450000px;}
.he_c01064{height:79.800000px;}
.h6_c01064{height:82.955018px;}
.h4_c01064{height:88.200000px;}
.h3_c01064{height:91.350000px;}
.h7_c01064{height:91.355527px;}
.h8_c01064{height:93.450000px;}
.hd_c01064{height:94.500000px;}
.h5_c01064{height:107.100000px;}
.h2_c01064{height:237.300000px;}
.h1_c01064{height:1005.000000px;}
.h0_c01064{height:1005.150000px;}
.w0_c01064{width:715.200000px;}
.w1_c01064{width:715.500000px;}
.x0_c01064{left:0.000000px;}
.xc_c01064{left:97.918500px;}
.x1_c01064{left:100.170000px;}
.x5d_c01064{left:106.380000px;}
.x5e_c01064{left:116.910000px;}
.x28_c01064{left:119.340000px;}
.xd_c01064{left:130.866000px;}
.x2a_c01064{left:133.650000px;}
.x43_c01064{left:137.430000px;}
.x5f_c01064{left:142.830000px;}
.x1d_c01064{left:161.190000px;}
.x17_c01064{left:163.628201px;}
.x44_c01064{left:170.100000px;}
.x57_c01064{left:181.170000px;}
.x1e_c01064{left:182.250000px;}
.x3_c01064{left:183.330000px;}
.x2f_c01064{left:187.920000px;}
.x4a_c01064{left:193.860000px;}
.xe_c01064{left:200.361000px;}
.x60_c01064{left:208.440000px;}
.x30_c01064{left:209.520000px;}
.x1f_c01064{left:224.100000px;}
.x3a_c01064{left:227.610000px;}
.x18_c01064{left:228.971604px;}
.x2b_c01064{left:230.850000px;}
.x31_c01064{left:231.930000px;}
.x51_c01064{left:233.820000px;}
.x61_c01064{left:234.900000px;}
.x3f_c01064{left:237.060000px;}
.x42_c01064{left:238.950000px;}
.x5c_c01064{left:241.110000px;}
.x62_c01064{left:252.450000px;}
.x9_c01064{left:253.530000px;}
.x52_c01064{left:257.580000px;}
.x20_c01064{left:261.090000px;}
.x32_c01064{left:262.440000px;}
.x33_c01064{left:264.600000px;}
.x58_c01064{left:272.430000px;}
.x2c_c01064{left:277.830000px;}
.x21_c01064{left:281.880000px;}
.x4f_c01064{left:283.230000px;}
.x3b_c01064{left:286.200000px;}
.x55_c01064{left:290.790000px;}
.x34_c01064{left:291.870000px;}
.xf_c01064{left:293.959500px;}
.x1c_c01064{left:296.730000px;}
.x4b_c01064{left:298.890000px;}
.x3c_c01064{left:302.940000px;}
.x19_c01064{left:307.546608px;}
.x45_c01064{left:310.230000px;}
.x22_c01064{left:316.440000px;}
.x4_c01064{left:319.140000px;}
.x10_c01064{left:320.685000px;}
.x3d_c01064{left:325.080000px;}
.x59_c01064{left:326.970000px;}
.x2d_c01064{left:335.880000px;}
.x5a_c01064{left:343.440000px;}
.x23_c01064{left:345.060000px;}
.x5_c01064{left:346.410000px;}
.x46_c01064{left:349.920000px;}
.x1a_c01064{left:351.288905px;}
.x50_c01064{left:355.320000px;}
.x35_c01064{left:358.290000px;}
.x4c_c01064{left:360.450000px;}
.x53_c01064{left:362.610000px;}
.xa_c01064{left:371.250000px;}
.x47_c01064{left:376.380000px;}
.x4d_c01064{left:377.730000px;}
.x11_c01064{left:382.779000px;}
.x24_c01064{left:387.450000px;}
.x5b_c01064{left:391.230000px;}
.x2e_c01064{left:393.660000px;}
.x40_c01064{left:402.570000px;}
.x4e_c01064{left:404.190000px;}
.x2_c01064{left:406.890000px;}
.xb_c01064{left:409.320000px;}
.x12_c01064{left:414.655500px;}
.x1b_c01064{left:416.092242px;}
.x3e_c01064{left:418.230000px;}
.x36_c01064{left:420.660000px;}
.x6_c01064{left:425.790000px;}
.x25_c01064{left:426.870000px;}
.x29_c01064{left:429.030000px;}
.x48_c01064{left:438.210000px;}
.x13_c01064{left:443.568000px;}
.x54_c01064{left:447.660000px;}
.x26_c01064{left:456.570000px;}
.x37_c01064{left:460.620000px;}
.x14_c01064{left:465.241500px;}
.x56_c01064{left:474.930000px;}
.x7_c01064{left:477.090000px;}
.x38_c01064{left:478.170000px;}
.x49_c01064{left:480.330000px;}
.x41_c01064{left:485.190000px;}
.x27_c01064{left:506.790000px;}
.x39_c01064{left:513.810000px;}
.x15_c01064{left:518.595000px;}
.x8_c01064{left:539.730000px;}
.x16_c01064{left:555.292500px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ws0_c01064{word-spacing:0.000000pt;}
.fs12_c01064{font-size:19.600000pt;}
.fs13_c01064{font-size:54.133333pt;}
.fs11_c01064{font-size:56.000000pt;}
.fse_c01064{font-size:57.866667pt;}
.fsd_c01064{font-size:58.800000pt;}
.fsf_c01064{font-size:59.733333pt;}
.fs9_c01064{font-size:60.666667pt;}
.fs10_c01064{font-size:61.600000pt;}
.fs8_c01064{font-size:62.533333pt;}
.fs7_c01064{font-size:63.466667pt;}
.fsa_c01064{font-size:64.400000pt;}
.fsc_c01064{font-size:70.933333pt;}
.fs4_c01064{font-size:73.737794pt;}
.fs2_c01064{font-size:78.400000pt;}
.fs1_c01064{font-size:81.200000pt;}
.fs5_c01064{font-size:81.204912pt;}
.fs6_c01064{font-size:83.066667pt;}
.fsb_c01064{font-size:84.000000pt;}
.fs3_c01064{font-size:95.200000pt;}
.fs0_c01064{font-size:210.933333pt;}
.y0_c01064{bottom:0.000000pt;}
.y2b_c01064{bottom:151.308000pt;}
.y2a_c01064{bottom:175.920000pt;}
.y29_c01064{bottom:197.520000pt;}
.y28_c01064{bottom:217.333333pt;}
.y27_c01064{bottom:237.360000pt;}
.y26_c01064{bottom:257.352000pt;}
.y25_c01064{bottom:277.757333pt;}
.y24_c01064{bottom:299.064000pt;}
.y23_c01064{bottom:318.578667pt;}
.y22_c01064{bottom:339.189333pt;}
.y21_c01064{bottom:359.520000pt;}
.y20_c01064{bottom:379.809333pt;}
.y1f_c01064{bottom:419.738667pt;}
.y1e_c01064{bottom:438.692000pt;}
.y1d_c01064{bottom:459.310667pt;}
.y1c_c01064{bottom:478.696000pt;}
.y1b_c01064{bottom:500.029333pt;}
.y1a_c01064{bottom:520.192000pt;}
.y19_c01064{bottom:540.153333pt;}
.y18_c01064{bottom:560.441333pt;}
.y17_c01064{bottom:579.976000pt;}
.y16_c01064{bottom:601.032000pt;}
.y15_c01064{bottom:620.380000pt;}
.y10_c01064{bottom:659.045167pt;}
.y13_c01064{bottom:659.045183pt;}
.y11_c01064{bottom:659.045336pt;}
.y14_c01064{bottom:659.045405pt;}
.y12_c01064{bottom:659.045532pt;}
.y5_c01064{bottom:680.401333pt;}
.y6_c01064{bottom:680.723487pt;}
.y7_c01064{bottom:681.402993pt;}
.y8_c01064{bottom:682.318179pt;}
.y9_c01064{bottom:682.579495pt;}
.ya_c01064{bottom:683.186636pt;}
.yb_c01064{bottom:683.498317pt;}
.yc_c01064{bottom:683.781017pt;}
.yd_c01064{bottom:683.992936pt;}
.ye_c01064{bottom:684.514615pt;}
.yf_c01064{bottom:684.873435pt;}
.y4_c01064{bottom:720.232000pt;}
.y3_c01064{bottom:777.665333pt;}
.y2_c01064{bottom:778.080000pt;}
.y1_c01064{bottom:815.020000pt;}
.h14_c01064{height:19.600000pt;}
.h15_c01064{height:54.133333pt;}
.h13_c01064{height:56.000000pt;}
.h10_c01064{height:57.866667pt;}
.hf_c01064{height:58.800000pt;}
.h11_c01064{height:59.733333pt;}
.hb_c01064{height:60.666667pt;}
.h12_c01064{height:61.600000pt;}
.ha_c01064{height:62.533333pt;}
.h9_c01064{height:63.466667pt;}
.hc_c01064{height:64.400000pt;}
.he_c01064{height:70.933333pt;}
.h6_c01064{height:73.737794pt;}
.h4_c01064{height:78.400000pt;}
.h3_c01064{height:81.200000pt;}
.h7_c01064{height:81.204912pt;}
.h8_c01064{height:83.066667pt;}
.hd_c01064{height:84.000000pt;}
.h5_c01064{height:95.200000pt;}
.h2_c01064{height:210.933333pt;}
.h1_c01064{height:893.333333pt;}
.h0_c01064{height:893.466667pt;}
.w0_c01064{width:635.733333pt;}
.w1_c01064{width:636.000000pt;}
.x0_c01064{left:0.000000pt;}
.xc_c01064{left:87.038667pt;}
.x1_c01064{left:89.040000pt;}
.x5d_c01064{left:94.560000pt;}
.x5e_c01064{left:103.920000pt;}
.x28_c01064{left:106.080000pt;}
.xd_c01064{left:116.325333pt;}
.x2a_c01064{left:118.800000pt;}
.x43_c01064{left:122.160000pt;}
.x5f_c01064{left:126.960000pt;}
.x1d_c01064{left:143.280000pt;}
.x17_c01064{left:145.447289pt;}
.x44_c01064{left:151.200000pt;}
.x57_c01064{left:161.040000pt;}
.x1e_c01064{left:162.000000pt;}
.x3_c01064{left:162.960000pt;}
.x2f_c01064{left:167.040000pt;}
.x4a_c01064{left:172.320000pt;}
.xe_c01064{left:178.098667pt;}
.x60_c01064{left:185.280000pt;}
.x30_c01064{left:186.240000pt;}
.x1f_c01064{left:199.200000pt;}
.x3a_c01064{left:202.320000pt;}
.x18_c01064{left:203.530315pt;}
.x2b_c01064{left:205.200000pt;}
.x31_c01064{left:206.160000pt;}
.x51_c01064{left:207.840000pt;}
.x61_c01064{left:208.800000pt;}
.x3f_c01064{left:210.720000pt;}
.x42_c01064{left:212.400000pt;}
.x5c_c01064{left:214.320000pt;}
.x62_c01064{left:224.400000pt;}
.x9_c01064{left:225.360000pt;}
.x52_c01064{left:228.960000pt;}
.x20_c01064{left:232.080000pt;}
.x32_c01064{left:233.280000pt;}
.x33_c01064{left:235.200000pt;}
.x58_c01064{left:242.160000pt;}
.x2c_c01064{left:246.960000pt;}
.x21_c01064{left:250.560000pt;}
.x4f_c01064{left:251.760000pt;}
.x3b_c01064{left:254.400000pt;}
.x55_c01064{left:258.480000pt;}
.x34_c01064{left:259.440000pt;}
.xf_c01064{left:261.297333pt;}
.x1c_c01064{left:263.760000pt;}
.x4b_c01064{left:265.680000pt;}
.x3c_c01064{left:269.280000pt;}
.x19_c01064{left:273.374763pt;}
.x45_c01064{left:275.760000pt;}
.x22_c01064{left:281.280000pt;}
.x4_c01064{left:283.680000pt;}
.x10_c01064{left:285.053333pt;}
.x3d_c01064{left:288.960000pt;}
.x59_c01064{left:290.640000pt;}
.x2d_c01064{left:298.560000pt;}
.x5a_c01064{left:305.280000pt;}
.x23_c01064{left:306.720000pt;}
.x5_c01064{left:307.920000pt;}
.x46_c01064{left:311.040000pt;}
.x1a_c01064{left:312.256804pt;}
.x50_c01064{left:315.840000pt;}
.x35_c01064{left:318.480000pt;}
.x4c_c01064{left:320.400000pt;}
.x53_c01064{left:322.320000pt;}
.xa_c01064{left:330.000000pt;}
.x47_c01064{left:334.560000pt;}
.x4d_c01064{left:335.760000pt;}
.x11_c01064{left:340.248000pt;}
.x24_c01064{left:344.400000pt;}
.x5b_c01064{left:347.760000pt;}
.x2e_c01064{left:349.920000pt;}
.x40_c01064{left:357.840000pt;}
.x4e_c01064{left:359.280000pt;}
.x2_c01064{left:361.680000pt;}
.xb_c01064{left:363.840000pt;}
.x12_c01064{left:368.582667pt;}
.x1b_c01064{left:369.859771pt;}
.x3e_c01064{left:371.760000pt;}
.x36_c01064{left:373.920000pt;}
.x6_c01064{left:378.480000pt;}
.x25_c01064{left:379.440000pt;}
.x29_c01064{left:381.360000pt;}
.x48_c01064{left:389.520000pt;}
.x13_c01064{left:394.282667pt;}
.x54_c01064{left:397.920000pt;}
.x26_c01064{left:405.840000pt;}
.x37_c01064{left:409.440000pt;}
.x14_c01064{left:413.548000pt;}
.x56_c01064{left:422.160000pt;}
.x7_c01064{left:424.080000pt;}
.x38_c01064{left:425.040000pt;}
.x49_c01064{left:426.960000pt;}
.x41_c01064{left:431.280000pt;}
.x27_c01064{left:450.480000pt;}
.x39_c01064{left:456.720000pt;}
.x15_c01064{left:460.973333pt;}
.x8_c01064{left:479.760000pt;}
.x16_c01064{left:493.593333pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.000000;font-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_c01065{transform:matrix(0.007820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007820,0.000000,0.000000,0.250000,0,0);}
.m58_c01065{transform:matrix(0.009965,-0.000060,0.001500,0.249996,0,0);-ms-transform:matrix(0.009965,-0.000060,0.001500,0.249996,0,0);-webkit-transform:matrix(0.009965,-0.000060,0.001500,0.249996,0,0);}
.mae_c01065{transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011785,0.000000,0.000000,0.250000,0,0);}
.mc0_c01065{transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012135,0.000000,0.000000,0.250000,0,0);}
.me9_c01065{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);}
.m126_c01065{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);}
.m113_c01065{transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013840,0.000000,0.000000,0.250000,0,0);}
.m63_c01065{transform:matrix(0.015810,-0.000095,0.001500,0.249996,0,0);-ms-transform:matrix(0.015810,-0.000095,0.001500,0.249996,0,0);-webkit-transform:matrix(0.015810,-0.000095,0.001500,0.249996,0,0);}
.m91_c01065{transform:matrix(0.017785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017785,0.000000,0.000000,0.250000,0,0);}
.m37_c01065{transform:matrix(0.019780,-0.000119,0.001500,0.249996,0,0);-ms-transform:matrix(0.019780,-0.000119,0.001500,0.249996,0,0);-webkit-transform:matrix(0.019780,-0.000119,0.001500,0.249996,0,0);}
.mf_c01065{transform:matrix(0.034469,-0.000207,0.001500,0.249996,0,0);-ms-transform:matrix(0.034469,-0.000207,0.001500,0.249996,0,0);-webkit-transform:matrix(0.034469,-0.000207,0.001500,0.249996,0,0);}
.m10_c01065{transform:matrix(0.056774,-0.000341,0.001500,0.249996,0,0);-ms-transform:matrix(0.056774,-0.000341,0.001500,0.249996,0,0);-webkit-transform:matrix(0.056774,-0.000341,0.001500,0.249996,0,0);}
.m127_c01065{transform:matrix(0.062415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062415,0.000000,0.000000,0.250000,0,0);}
.m4b_c01065{transform:matrix(0.085388,-0.000512,0.001500,0.249996,0,0);-ms-transform:matrix(0.085388,-0.000512,0.001500,0.249996,0,0);-webkit-transform:matrix(0.085388,-0.000512,0.001500,0.249996,0,0);}
.ma_c01065{transform:matrix(0.086028,-0.000516,0.001500,0.249996,0,0);-ms-transform:matrix(0.086028,-0.000516,0.001500,0.249996,0,0);-webkit-transform:matrix(0.086028,-0.000516,0.001500,0.249996,0,0);}
.m11f_c01065{transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088480,0.000000,0.000000,0.250000,0,0);}
.m82_c01065{transform:matrix(0.092903,-0.000557,0.001500,0.249996,0,0);-ms-transform:matrix(0.092903,-0.000557,0.001500,0.249996,0,0);-webkit-transform:matrix(0.092903,-0.000557,0.001500,0.249996,0,0);}
.m122_c01065{transform:matrix(0.108460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108460,0.000000,0.000000,0.250000,0,0);}
.m4f_c01065{transform:matrix(0.131728,-0.000790,0.001500,0.249996,0,0);-ms-transform:matrix(0.131728,-0.000790,0.001500,0.249996,0,0);-webkit-transform:matrix(0.131728,-0.000790,0.001500,0.249996,0,0);}
.m38_c01065{transform:matrix(0.133643,-0.000802,0.001500,0.249996,0,0);-ms-transform:matrix(0.133643,-0.000802,0.001500,0.249996,0,0);-webkit-transform:matrix(0.133643,-0.000802,0.001500,0.249996,0,0);}
.m20_c01065{transform:matrix(0.134983,-0.000810,0.001500,0.249996,0,0);-ms-transform:matrix(0.134983,-0.000810,0.001500,0.249996,0,0);-webkit-transform:matrix(0.134983,-0.000810,0.001500,0.249996,0,0);}
.m18_c01065{transform:matrix(0.135038,-0.000810,0.001500,0.249996,0,0);-ms-transform:matrix(0.135038,-0.000810,0.001500,0.249996,0,0);-webkit-transform:matrix(0.135038,-0.000810,0.001500,0.249996,0,0);}
.m97_c01065{transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142690,0.000000,0.000000,0.250000,0,0);}
.m2f_c01065{transform:matrix(0.143527,-0.000861,0.001500,0.249996,0,0);-ms-transform:matrix(0.143527,-0.000861,0.001500,0.249996,0,0);-webkit-transform:matrix(0.143527,-0.000861,0.001500,0.249996,0,0);}
.mba_c01065{transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);}
.m9e_c01065{transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147095,0.000000,0.000000,0.250000,0,0);}
.m54_c01065{transform:matrix(0.148537,-0.000891,0.001500,0.249996,0,0);-ms-transform:matrix(0.148537,-0.000891,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148537,-0.000891,0.001500,0.249996,0,0);}
.m94_c01065{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);}
.m130_c01065{transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149605,0.000000,0.000000,0.250000,0,0);}
.ma1_c01065{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);}
.m7_c01065{transform:matrix(0.149797,-0.000899,0.001500,0.249996,0,0);-ms-transform:matrix(0.149797,-0.000899,0.001500,0.249996,0,0);-webkit-transform:matrix(0.149797,-0.000899,0.001500,0.249996,0,0);}
.m5b_c01065{transform:matrix(0.150142,-0.000901,0.001500,0.249996,0,0);-ms-transform:matrix(0.150142,-0.000901,0.001500,0.249996,0,0);-webkit-transform:matrix(0.150142,-0.000901,0.001500,0.249996,0,0);}
.md2_c01065{transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150230,0.000000,0.000000,0.250000,0,0);}
.m5f_c01065{transform:matrix(0.150872,-0.000905,0.001500,0.249996,0,0);-ms-transform:matrix(0.150872,-0.000905,0.001500,0.249996,0,0);-webkit-transform:matrix(0.150872,-0.000905,0.001500,0.249996,0,0);}
.mc6_c01065{transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);}
.m80_c01065{transform:matrix(0.151982,-0.000912,0.001500,0.249996,0,0);-ms-transform:matrix(0.151982,-0.000912,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151982,-0.000912,0.001500,0.249996,0,0);}
.m2e_c01065{transform:matrix(0.152357,-0.000914,0.001500,0.249996,0,0);-ms-transform:matrix(0.152357,-0.000914,0.001500,0.249996,0,0);-webkit-transform:matrix(0.152357,-0.000914,0.001500,0.249996,0,0);}
.mbb_c01065{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);}
.m30_c01065{transform:matrix(0.156202,-0.000937,0.001500,0.249996,0,0);-ms-transform:matrix(0.156202,-0.000937,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156202,-0.000937,0.001500,0.249996,0,0);}
.m11d_c01065{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);}
.m16_c01065{transform:matrix(0.156442,-0.000939,0.001500,0.249996,0,0);-ms-transform:matrix(0.156442,-0.000939,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156442,-0.000939,0.001500,0.249996,0,0);}
.m132_c01065{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);}
.m34_c01065{transform:matrix(0.157292,-0.000944,0.001500,0.249996,0,0);-ms-transform:matrix(0.157292,-0.000944,0.001500,0.249996,0,0);-webkit-transform:matrix(0.157292,-0.000944,0.001500,0.249996,0,0);}
.mc2_c01065{transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157915,0.000000,0.000000,0.250000,0,0);}
.med_c01065{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1d_c01065{transform:matrix(0.158732,-0.000952,0.001500,0.249996,0,0);-ms-transform:matrix(0.158732,-0.000952,0.001500,0.249996,0,0);-webkit-transform:matrix(0.158732,-0.000952,0.001500,0.249996,0,0);}
.m81_c01065{transform:matrix(0.160372,-0.000962,0.001500,0.249996,0,0);-ms-transform:matrix(0.160372,-0.000962,0.001500,0.249996,0,0);-webkit-transform:matrix(0.160372,-0.000962,0.001500,0.249996,0,0);}
.m115_c01065{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);}
.m5d_c01065{transform:matrix(0.161517,-0.000969,0.001500,0.249996,0,0);-ms-transform:matrix(0.161517,-0.000969,0.001500,0.249996,0,0);-webkit-transform:matrix(0.161517,-0.000969,0.001500,0.249996,0,0);}
.m134_c01065{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);}
.m3c_c01065{transform:matrix(0.162037,-0.000972,0.001500,0.249996,0,0);-ms-transform:matrix(0.162037,-0.000972,0.001500,0.249996,0,0);-webkit-transform:matrix(0.162037,-0.000972,0.001500,0.249996,0,0);}
.m31_c01065{transform:matrix(0.163897,-0.000983,0.001500,0.249996,0,0);-ms-transform:matrix(0.163897,-0.000983,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163897,-0.000983,0.001500,0.249996,0,0);}
.m3d_c01065{transform:matrix(0.164547,-0.000987,0.001500,0.249996,0,0);-ms-transform:matrix(0.164547,-0.000987,0.001500,0.249996,0,0);-webkit-transform:matrix(0.164547,-0.000987,0.001500,0.249996,0,0);}
.m8e_c01065{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);}
.m33_c01065{transform:matrix(0.165122,-0.000991,0.001500,0.249996,0,0);-ms-transform:matrix(0.165122,-0.000991,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165122,-0.000991,0.001500,0.249996,0,0);}
.m19_c01065{transform:matrix(0.165517,-0.000993,0.001500,0.249996,0,0);-ms-transform:matrix(0.165517,-0.000993,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165517,-0.000993,0.001500,0.249996,0,0);}
.mb6_c01065{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);}
.mf0_c01065{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);}
.mf1_c01065{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);}
.m56_c01065{transform:matrix(0.167457,-0.001005,0.001500,0.249996,0,0);-ms-transform:matrix(0.167457,-0.001005,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167457,-0.001005,0.001500,0.249996,0,0);}
.m7b_c01065{transform:matrix(0.167477,-0.001005,0.001500,0.249996,0,0);-ms-transform:matrix(0.167477,-0.001005,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167477,-0.001005,0.001500,0.249996,0,0);}
.mc5_c01065{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);}
.m60_c01065{transform:matrix(0.169512,-0.001017,0.001500,0.249996,0,0);-ms-transform:matrix(0.169512,-0.001017,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169512,-0.001017,0.001500,0.249996,0,0);}
.m69_c01065{transform:matrix(0.169797,-0.001019,0.001500,0.249996,0,0);-ms-transform:matrix(0.169797,-0.001019,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169797,-0.001019,0.001500,0.249996,0,0);}
.m5e_c01065{transform:matrix(0.170062,-0.001020,0.001500,0.249996,0,0);-ms-transform:matrix(0.170062,-0.001020,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170062,-0.001020,0.001500,0.249996,0,0);}
.m75_c01065{transform:matrix(0.170502,-0.001023,0.001500,0.249996,0,0);-ms-transform:matrix(0.170502,-0.001023,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170502,-0.001023,0.001500,0.249996,0,0);}
.m99_c01065{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);}
.m95_c01065{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);}
.m50_c01065{transform:matrix(0.171177,-0.001027,0.001500,0.249996,0,0);-ms-transform:matrix(0.171177,-0.001027,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171177,-0.001027,0.001500,0.249996,0,0);}
.m5c_c01065{transform:matrix(0.171282,-0.001028,0.001500,0.249996,0,0);-ms-transform:matrix(0.171282,-0.001028,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171282,-0.001028,0.001500,0.249996,0,0);}
.m109_c01065{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);}
.m112_c01065{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);}
.m129_c01065{transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172545,0.000000,0.000000,0.250000,0,0);}
.md9_c01065{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);}
.mbf_c01065{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);}
.m1b_c01065{transform:matrix(0.175222,-0.001051,0.001500,0.249996,0,0);-ms-transform:matrix(0.175222,-0.001051,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175222,-0.001051,0.001500,0.249996,0,0);}
.m6f_c01065{transform:matrix(0.175517,-0.001053,0.001500,0.249996,0,0);-ms-transform:matrix(0.175517,-0.001053,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175517,-0.001053,0.001500,0.249996,0,0);}
.m25_c01065{transform:matrix(0.175887,-0.001055,0.001500,0.249996,0,0);-ms-transform:matrix(0.175887,-0.001055,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175887,-0.001055,0.001500,0.249996,0,0);}
.md8_c01065{transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176170,0.000000,0.000000,0.250000,0,0);}
.m9a_c01065{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);}
.me1_c01065{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);}
.m2d_c01065{transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);-ms-transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177607,-0.001066,0.001500,0.249996,0,0);}
.m52_c01065{transform:matrix(0.178097,-0.001069,0.001500,0.249996,0,0);-ms-transform:matrix(0.178097,-0.001069,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178097,-0.001069,0.001500,0.249996,0,0);}
.mcb_c01065{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);}
.maa_c01065{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.mcc_c01065{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);}
.m49_c01065{transform:matrix(0.178897,-0.001073,0.001500,0.249996,0,0);-ms-transform:matrix(0.178897,-0.001073,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178897,-0.001073,0.001500,0.249996,0,0);}
.m6b_c01065{transform:matrix(0.179272,-0.001076,0.001500,0.249996,0,0);-ms-transform:matrix(0.179272,-0.001076,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179272,-0.001076,0.001500,0.249996,0,0);}
.m1c_c01065{transform:matrix(0.179497,-0.001077,0.001500,0.249996,0,0);-ms-transform:matrix(0.179497,-0.001077,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179497,-0.001077,0.001500,0.249996,0,0);}
.m1a_c01065{transform:matrix(0.180272,-0.001082,0.001500,0.249996,0,0);-ms-transform:matrix(0.180272,-0.001082,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180272,-0.001082,0.001500,0.249996,0,0);}
.mee_c01065{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);}
.m68_c01065{transform:matrix(0.180467,-0.001083,0.001500,0.249996,0,0);-ms-transform:matrix(0.180467,-0.001083,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180467,-0.001083,0.001500,0.249996,0,0);}
.ma9_c01065{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);}
.mc8_c01065{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);}
.m9c_c01065{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);}
.mfb_c01065{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);}
.m96_c01065{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);}
.m3f_c01065{transform:matrix(0.183957,-0.001104,0.001500,0.249996,0,0);-ms-transform:matrix(0.183957,-0.001104,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183957,-0.001104,0.001500,0.249996,0,0);}
.mb8_c01065{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);}
.m8d_c01065{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);}
.m86_c01065{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);}
.m78_c01065{transform:matrix(0.184557,-0.001107,0.001500,0.249996,0,0);-ms-transform:matrix(0.184557,-0.001107,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184557,-0.001107,0.001500,0.249996,0,0);}
.m107_c01065{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);}
.mfc_c01065{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);}
.mab_c01065{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);}
.m17_c01065{transform:matrix(0.186222,-0.001117,0.001500,0.249996,0,0);-ms-transform:matrix(0.186222,-0.001117,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186222,-0.001117,0.001500,0.249996,0,0);}
.m51_c01065{transform:matrix(0.186462,-0.001119,0.001500,0.249996,0,0);-ms-transform:matrix(0.186462,-0.001119,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186462,-0.001119,0.001500,0.249996,0,0);}
.m5a_c01065{transform:matrix(0.186777,-0.001121,0.001500,0.249996,0,0);-ms-transform:matrix(0.186777,-0.001121,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186777,-0.001121,0.001500,0.249996,0,0);}
.m7c_c01065{transform:matrix(0.186832,-0.001121,0.001500,0.249996,0,0);-ms-transform:matrix(0.186832,-0.001121,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186832,-0.001121,0.001500,0.249996,0,0);}
.m66_c01065{transform:matrix(0.187142,-0.001123,0.001500,0.249996,0,0);-ms-transform:matrix(0.187142,-0.001123,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187142,-0.001123,0.001500,0.249996,0,0);}
.m8b_c01065{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);}
.m70_c01065{transform:matrix(0.187592,-0.001126,0.001500,0.249996,0,0);-ms-transform:matrix(0.187592,-0.001126,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187592,-0.001126,0.001500,0.249996,0,0);}
.m9f_c01065{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);}
.mbc_c01065{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);}
.ma0_c01065{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);}
.m40_c01065{transform:matrix(0.188007,-0.001128,0.001500,0.249996,0,0);-ms-transform:matrix(0.188007,-0.001128,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188007,-0.001128,0.001500,0.249996,0,0);}
.m53_c01065{transform:matrix(0.188057,-0.001128,0.001500,0.249996,0,0);-ms-transform:matrix(0.188057,-0.001128,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188057,-0.001128,0.001500,0.249996,0,0);}
.m79_c01065{transform:matrix(0.188157,-0.001129,0.001500,0.249996,0,0);-ms-transform:matrix(0.188157,-0.001129,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188157,-0.001129,0.001500,0.249996,0,0);}
.m72_c01065{transform:matrix(0.188577,-0.001131,0.001500,0.249996,0,0);-ms-transform:matrix(0.188577,-0.001131,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188577,-0.001131,0.001500,0.249996,0,0);}
.m32_c01065{transform:matrix(0.188922,-0.001134,0.001500,0.249996,0,0);-ms-transform:matrix(0.188922,-0.001134,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188922,-0.001134,0.001500,0.249996,0,0);}
.m3b_c01065{transform:matrix(0.189322,-0.001136,0.001500,0.249996,0,0);-ms-transform:matrix(0.189322,-0.001136,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189322,-0.001136,0.001500,0.249996,0,0);}
.m45_c01065{transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);-ms-transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);}
.m93_c01065{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);}
.mbd_c01065{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);}
.m9d_c01065{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);}
.m11_c01065{transform:matrix(0.190747,-0.001144,0.001500,0.249996,0,0);-ms-transform:matrix(0.190747,-0.001144,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190747,-0.001144,0.001500,0.249996,0,0);}
.mda_c01065{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);}
.ma2_c01065{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);}
.m74_c01065{transform:matrix(0.191837,-0.001151,0.001500,0.249996,0,0);-ms-transform:matrix(0.191837,-0.001151,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191837,-0.001151,0.001500,0.249996,0,0);}
.mad_c01065{transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191995,0.000000,0.000000,0.250000,0,0);}
.md0_c01065{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);}
.md6_c01065{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);}
.m15_c01065{transform:matrix(0.194596,-0.001168,0.001500,0.249996,0,0);-ms-transform:matrix(0.194596,-0.001168,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194596,-0.001168,0.001500,0.249996,0,0);}
.m1e_c01065{transform:matrix(0.194691,-0.001168,0.001500,0.249996,0,0);-ms-transform:matrix(0.194691,-0.001168,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194691,-0.001168,0.001500,0.249996,0,0);}
.me8_c01065{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);}
.m55_c01065{transform:matrix(0.195496,-0.001173,0.001500,0.249996,0,0);-ms-transform:matrix(0.195496,-0.001173,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195496,-0.001173,0.001500,0.249996,0,0);}
.mc9_c01065{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);}
.mdb_c01065{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);}
.mac_c01065{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);}
.m105_c01065{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);}
.m29_c01065{transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);-ms-transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);}
.mf3_c01065{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);}
.ma6_c01065{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);}
.m3e_c01065{transform:matrix(0.198686,-0.001192,0.001500,0.249996,0,0);-ms-transform:matrix(0.198686,-0.001192,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198686,-0.001192,0.001500,0.249996,0,0);}
.mb9_c01065{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);}
.mec_c01065{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);}
.m64_c01065{transform:matrix(0.201246,-0.001207,0.001500,0.249996,0,0);-ms-transform:matrix(0.201246,-0.001207,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201246,-0.001207,0.001500,0.249996,0,0);}
.m4e_c01065{transform:matrix(0.201736,-0.001210,0.001500,0.249996,0,0);-ms-transform:matrix(0.201736,-0.001210,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201736,-0.001210,0.001500,0.249996,0,0);}
.m98_c01065{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);}
.m10c_c01065{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);}
.mf4_c01065{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);}
.mef_c01065{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);}
.mbe_c01065{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);}
.m8a_c01065{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);}
.m8c_c01065{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);}
.mca_c01065{transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205015,0.000000,0.000000,0.250000,0,0);}
.m101_c01065{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);}
.mf8_c01065{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);}
.md7_c01065{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_c01065{transform:matrix(0.208066,-0.001248,0.001500,0.249996,0,0);-ms-transform:matrix(0.208066,-0.001248,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208066,-0.001248,0.001500,0.249996,0,0);}
.m67_c01065{transform:matrix(0.208206,-0.001249,0.001500,0.249996,0,0);-ms-transform:matrix(0.208206,-0.001249,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208206,-0.001249,0.001500,0.249996,0,0);}
.mb7_c01065{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);}
.m39_c01065{transform:matrix(0.208356,-0.001250,0.001500,0.249996,0,0);-ms-transform:matrix(0.208356,-0.001250,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208356,-0.001250,0.001500,0.249996,0,0);}
.m92_c01065{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m48_c01065{transform:matrix(0.209566,-0.001257,0.001500,0.249996,0,0);-ms-transform:matrix(0.209566,-0.001257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209566,-0.001257,0.001500,0.249996,0,0);}
.m3a_c01065{transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);-ms-transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);}
.m22_c01065{transform:matrix(0.211811,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211811,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211811,-0.001271,0.001500,0.249996,0,0);}
.ma5_c01065{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);}
.m4a_c01065{transform:matrix(0.212751,-0.001277,0.001500,0.249996,0,0);-ms-transform:matrix(0.212751,-0.001277,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212751,-0.001277,0.001500,0.249996,0,0);}
.m27_c01065{transform:matrix(0.213326,-0.001280,0.001500,0.249996,0,0);-ms-transform:matrix(0.213326,-0.001280,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213326,-0.001280,0.001500,0.249996,0,0);}
.m6e_c01065{transform:matrix(0.213721,-0.001282,0.001500,0.249996,0,0);-ms-transform:matrix(0.213721,-0.001282,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213721,-0.001282,0.001500,0.249996,0,0);}
.m23_c01065{transform:matrix(0.214001,-0.001284,0.001500,0.249996,0,0);-ms-transform:matrix(0.214001,-0.001284,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214001,-0.001284,0.001500,0.249996,0,0);}
.mc7_c01065{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);}
.me3_c01065{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);}
.mdc_c01065{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);}
.m10a_c01065{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);}
.me2_c01065{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);}
.m6a_c01065{transform:matrix(0.216241,-0.001297,0.001500,0.249996,0,0);-ms-transform:matrix(0.216241,-0.001297,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216241,-0.001297,0.001500,0.249996,0,0);}
.m7a_c01065{transform:matrix(0.216456,-0.001299,0.001500,0.249996,0,0);-ms-transform:matrix(0.216456,-0.001299,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216456,-0.001299,0.001500,0.249996,0,0);}
.m26_c01065{transform:matrix(0.217571,-0.001305,0.001500,0.249996,0,0);-ms-transform:matrix(0.217571,-0.001305,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217571,-0.001305,0.001500,0.249996,0,0);}
.m10b_c01065{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);}
.mff_c01065{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);}
.m100_c01065{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);}
.me5_c01065{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);}
.md_c01065{transform:matrix(0.221336,-0.001328,0.001500,0.249996,0,0);-ms-transform:matrix(0.221336,-0.001328,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221336,-0.001328,0.001500,0.249996,0,0);}
.m108_c01065{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);}
.m7f_c01065{transform:matrix(0.222716,-0.001336,0.001500,0.249996,0,0);-ms-transform:matrix(0.222716,-0.001336,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222716,-0.001336,0.001500,0.249996,0,0);}
.mf2_c01065{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);}
.me0_c01065{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);}
.m41_c01065{transform:matrix(0.223446,-0.001341,0.001500,0.249996,0,0);-ms-transform:matrix(0.223446,-0.001341,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223446,-0.001341,0.001500,0.249996,0,0);}
.mc4_c01065{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);}
.me4_c01065{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);}
.mfe_c01065{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);}
.m110_c01065{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);}
.m11a_c01065{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);}
.m71_c01065{transform:matrix(0.224901,-0.001349,0.001500,0.249996,0,0);-ms-transform:matrix(0.224901,-0.001349,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224901,-0.001349,0.001500,0.249996,0,0);}
.m44_c01065{transform:matrix(0.225251,-0.001352,0.001500,0.249996,0,0);-ms-transform:matrix(0.225251,-0.001352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225251,-0.001352,0.001500,0.249996,0,0);}
.m111_c01065{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);}
.m2_c01065{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);}
.me7_c01065{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);}
.m46_c01065{transform:matrix(0.227156,-0.001363,0.001500,0.249996,0,0);-ms-transform:matrix(0.227156,-0.001363,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227156,-0.001363,0.001500,0.249996,0,0);}
.m2c_c01065{transform:matrix(0.227581,-0.001365,0.001500,0.249996,0,0);-ms-transform:matrix(0.227581,-0.001365,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227581,-0.001365,0.001500,0.249996,0,0);}
.mfa_c01065{transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227770,0.000000,0.000000,0.250000,0,0);}
.m10f_c01065{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);}
.m128_c01065{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);}
.m12d_c01065{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);}
.mf9_c01065{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);}
.m43_c01065{transform:matrix(0.231581,-0.001389,0.001500,0.249996,0,0);-ms-transform:matrix(0.231581,-0.001389,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231581,-0.001389,0.001500,0.249996,0,0);}
.m106_c01065{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);}
.m47_c01065{transform:matrix(0.232921,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.232921,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232921,-0.001398,0.001500,0.249996,0,0);}
.mb5_c01065{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);}
.m61_c01065{transform:matrix(0.235061,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.235061,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235061,-0.001410,0.001500,0.249996,0,0);}
.m11b_c01065{transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);}
.mb_c01065{transform:matrix(0.240411,-0.001442,0.001500,0.249996,0,0);-ms-transform:matrix(0.240411,-0.001442,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240411,-0.001442,0.001500,0.249996,0,0);}
.m2a_c01065{transform:matrix(0.240876,-0.001445,0.001500,0.249996,0,0);-ms-transform:matrix(0.240876,-0.001445,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240876,-0.001445,0.001500,0.249996,0,0);}
.m24_c01065{transform:matrix(0.243191,-0.001459,0.001500,0.249996,0,0);-ms-transform:matrix(0.243191,-0.001459,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243191,-0.001459,0.001500,0.249996,0,0);}
.m85_c01065{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);}
.m77_c01065{transform:matrix(0.248511,-0.001491,0.001500,0.249996,0,0);-ms-transform:matrix(0.248511,-0.001491,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248511,-0.001491,0.001500,0.249996,0,0);}
.m6d_c01065{transform:matrix(0.251970,-0.001512,0.001500,0.249996,0,0);-ms-transform:matrix(0.251970,-0.001512,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251970,-0.001512,0.001500,0.249996,0,0);}
.md5_c01065{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);}
.ma8_c01065{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);}
.m88_c01065{transform:matrix(0.257370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257370,0.000000,0.000000,0.250000,0,0);}
.me_c01065{transform:matrix(0.258830,-0.001553,0.001500,0.249996,0,0);-ms-transform:matrix(0.258830,-0.001553,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258830,-0.001553,0.001500,0.249996,0,0);}
.m73_c01065{transform:matrix(0.260310,-0.001562,0.001500,0.249996,0,0);-ms-transform:matrix(0.260310,-0.001562,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260310,-0.001562,0.001500,0.249996,0,0);}
.m65_c01065{transform:matrix(0.262045,-0.001572,0.001500,0.249996,0,0);-ms-transform:matrix(0.262045,-0.001572,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262045,-0.001572,0.001500,0.249996,0,0);}
.me6_c01065{transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);}
.mf7_c01065{transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);}
.mdf_c01065{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);}
.ma7_c01065{transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268440,0.000000,0.000000,0.250000,0,0);}
.m90_c01065{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);}
.m125_c01065{transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270065,0.000000,0.000000,0.250000,0,0);}
.m104_c01065{transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);}
.md1_c01065{transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278995,0.000000,0.000000,0.250000,0,0);}
.mb3_c01065{transform:matrix(0.285540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285540,0.000000,0.000000,0.250000,0,0);}
.m119_c01065{transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);}
.mdd_c01065{transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);}
.mc_c01065{transform:matrix(0.295560,-0.001773,0.001500,0.249996,0,0);-ms-transform:matrix(0.295560,-0.001773,0.001500,0.249996,0,0);-webkit-transform:matrix(0.295560,-0.001773,0.001500,0.249996,0,0);}
.mde_c01065{transform:matrix(0.298255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298255,0.000000,0.000000,0.250000,0,0);}
.m11e_c01065{transform:matrix(0.298600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298600,0.000000,0.000000,0.250000,0,0);}
.md3_c01065{transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299280,0.000000,0.000000,0.250000,0,0);}
.m62_c01065{transform:matrix(0.302870,-0.001817,0.001500,0.249996,0,0);-ms-transform:matrix(0.302870,-0.001817,0.001500,0.249996,0,0);-webkit-transform:matrix(0.302870,-0.001817,0.001500,0.249996,0,0);}
.m8_c01065{transform:matrix(0.304115,-0.001825,0.001500,0.249996,0,0);-ms-transform:matrix(0.304115,-0.001825,0.001500,0.249996,0,0);-webkit-transform:matrix(0.304115,-0.001825,0.001500,0.249996,0,0);}
.m13_c01065{transform:matrix(0.307284,-0.001844,0.001500,0.249996,0,0);-ms-transform:matrix(0.307284,-0.001844,0.001500,0.249996,0,0);-webkit-transform:matrix(0.307284,-0.001844,0.001500,0.249996,0,0);}
.m9_c01065{transform:matrix(0.308949,-0.001854,0.001500,0.249996,0,0);-ms-transform:matrix(0.308949,-0.001854,0.001500,0.249996,0,0);-webkit-transform:matrix(0.308949,-0.001854,0.001500,0.249996,0,0);}
.mce_c01065{transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309840,0.000000,0.000000,0.250000,0,0);}
.m83_c01065{transform:matrix(0.322864,-0.001937,0.001500,0.249996,0,0);-ms-transform:matrix(0.322864,-0.001937,0.001500,0.249996,0,0);-webkit-transform:matrix(0.322864,-0.001937,0.001500,0.249996,0,0);}
.m2b_c01065{transform:matrix(0.324319,-0.001946,0.001500,0.249996,0,0);-ms-transform:matrix(0.324319,-0.001946,0.001500,0.249996,0,0);-webkit-transform:matrix(0.324319,-0.001946,0.001500,0.249996,0,0);}
.mfd_c01065{transform:matrix(0.329610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329610,0.000000,0.000000,0.250000,0,0);}
.m12f_c01065{transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);}
.m124_c01065{transform:matrix(0.337445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337445,0.000000,0.000000,0.250000,0,0);}
.m84_c01065{transform:matrix(0.337899,-0.002027,0.001500,0.249996,0,0);-ms-transform:matrix(0.337899,-0.002027,0.001500,0.249996,0,0);-webkit-transform:matrix(0.337899,-0.002027,0.001500,0.249996,0,0);}
.m118_c01065{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);}
.mb0_c01065{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.m10d_c01065{transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354300,0.000000,0.000000,0.250000,0,0);}
.mf6_c01065{transform:matrix(0.355445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355445,0.000000,0.000000,0.250000,0,0);}
.m131_c01065{transform:matrix(0.359680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359680,0.000000,0.000000,0.250000,0,0);}
.m0_c01065{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);}
.m57_c01065{transform:matrix(0.379853,-0.002279,0.001500,0.249996,0,0);-ms-transform:matrix(0.379853,-0.002279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.379853,-0.002279,0.001500,0.249996,0,0);}
.mc3_c01065{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.mb4_c01065{transform:matrix(0.382760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382760,0.000000,0.000000,0.250000,0,0);}
.m11c_c01065{transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383790,0.000000,0.000000,0.250000,0,0);}
.m87_c01065{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);}
.m12_c01065{transform:matrix(0.385363,-0.002312,0.001500,0.249996,0,0);-ms-transform:matrix(0.385363,-0.002312,0.001500,0.249996,0,0);-webkit-transform:matrix(0.385363,-0.002312,0.001500,0.249996,0,0);}
.m9b_c01065{transform:matrix(0.385845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385845,0.000000,0.000000,0.250000,0,0);}
.m1f_c01065{transform:matrix(0.388608,-0.002332,0.001500,0.249996,0,0);-ms-transform:matrix(0.388608,-0.002332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.388608,-0.002332,0.001500,0.249996,0,0);}
.m76_c01065{transform:matrix(0.394403,-0.002366,0.001500,0.249996,0,0);-ms-transform:matrix(0.394403,-0.002366,0.001500,0.249996,0,0);-webkit-transform:matrix(0.394403,-0.002366,0.001500,0.249996,0,0);}
.m4c_c01065{transform:matrix(0.397643,-0.002386,0.001500,0.249996,0,0);-ms-transform:matrix(0.397643,-0.002386,0.001500,0.249996,0,0);-webkit-transform:matrix(0.397643,-0.002386,0.001500,0.249996,0,0);}
.m114_c01065{transform:matrix(0.401125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401125,0.000000,0.000000,0.250000,0,0);}
.ma4_c01065{transform:matrix(0.410160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410160,0.000000,0.000000,0.250000,0,0);}
.mc1_c01065{transform:matrix(0.415370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415370,0.000000,0.000000,0.250000,0,0);}
.m42_c01065{transform:matrix(0.419772,-0.002519,0.001500,0.249996,0,0);-ms-transform:matrix(0.419772,-0.002519,0.001500,0.249996,0,0);-webkit-transform:matrix(0.419772,-0.002519,0.001500,0.249996,0,0);}
.m21_c01065{transform:matrix(0.423932,-0.002544,0.001500,0.249996,0,0);-ms-transform:matrix(0.423932,-0.002544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.423932,-0.002544,0.001500,0.249996,0,0);}
.maf_c01065{transform:matrix(0.433505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433505,0.000000,0.000000,0.250000,0,0);}
.mb2_c01065{transform:matrix(0.439750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439750,0.000000,0.000000,0.250000,0,0);}
.m12c_c01065{transform:matrix(0.443010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443010,0.000000,0.000000,0.250000,0,0);}
.m14_c01065{transform:matrix(0.448762,-0.002693,0.001500,0.249996,0,0);-ms-transform:matrix(0.448762,-0.002693,0.001500,0.249996,0,0);-webkit-transform:matrix(0.448762,-0.002693,0.001500,0.249996,0,0);}
.m35_c01065{transform:matrix(0.453817,-0.002723,0.001500,0.249996,0,0);-ms-transform:matrix(0.453817,-0.002723,0.001500,0.249996,0,0);-webkit-transform:matrix(0.453817,-0.002723,0.001500,0.249996,0,0);}
.m123_c01065{transform:matrix(0.454345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454345,0.000000,0.000000,0.250000,0,0);}
.mb1_c01065{transform:matrix(0.461715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461715,0.000000,0.000000,0.250000,0,0);}
.m5_c01065{transform:matrix(0.461747,-0.002770,0.001500,0.249996,0,0);-ms-transform:matrix(0.461747,-0.002770,0.001500,0.249996,0,0);-webkit-transform:matrix(0.461747,-0.002770,0.001500,0.249996,0,0);}
.mcd_c01065{transform:matrix(0.464535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464535,0.000000,0.000000,0.250000,0,0);}
.m12a_c01065{transform:matrix(0.492265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492265,0.000000,0.000000,0.250000,0,0);}
.meb_c01065{transform:matrix(0.492745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492745,0.000000,0.000000,0.250000,0,0);}
.m103_c01065{transform:matrix(0.498075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498075,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(0.504225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504225,0.000000,0.000000,0.250000,0,0);}
.m133_c01065{transform:matrix(0.524620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524620,0.000000,0.000000,0.250000,0,0);}
.m116_c01065{transform:matrix(0.539555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539555,0.000000,0.000000,0.250000,0,0);}
.m6_c01065{transform:matrix(0.539960,-0.003240,0.001500,0.249996,0,0);-ms-transform:matrix(0.539960,-0.003240,0.001500,0.249996,0,0);-webkit-transform:matrix(0.539960,-0.003240,0.001500,0.249996,0,0);}
.m12e_c01065{transform:matrix(0.610555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610555,0.000000,0.000000,0.250000,0,0);}
.m89_c01065{transform:matrix(0.633320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633320,0.000000,0.000000,0.250000,0,0);}
.m135_c01065{transform:matrix(0.636380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636380,0.000000,0.000000,0.250000,0,0);}
.ma3_c01065{transform:matrix(0.640765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640765,0.000000,0.000000,0.250000,0,0);}
.m4d_c01065{transform:matrix(0.641868,-0.003851,0.001500,0.249996,0,0);-ms-transform:matrix(0.641868,-0.003851,0.001500,0.249996,0,0);-webkit-transform:matrix(0.641868,-0.003851,0.001500,0.249996,0,0);}
.m12b_c01065{transform:matrix(0.652130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652130,0.000000,0.000000,0.250000,0,0);}
.mf5_c01065{transform:matrix(0.661340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661340,0.000000,0.000000,0.250000,0,0);}
.m117_c01065{transform:matrix(0.690180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690180,0.000000,0.000000,0.250000,0,0);}
.m7e_c01065{transform:matrix(0.716987,-0.004302,0.001500,0.249996,0,0);-ms-transform:matrix(0.716987,-0.004302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.716987,-0.004302,0.001500,0.249996,0,0);}
.mea_c01065{transform:matrix(0.734755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734755,0.000000,0.000000,0.250000,0,0);}
.m36_c01065{transform:matrix(0.763646,-0.004582,0.001500,0.249996,0,0);-ms-transform:matrix(0.763646,-0.004582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.763646,-0.004582,0.001500,0.249996,0,0);}
.md4_c01065{transform:matrix(0.768055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768055,0.000000,0.000000,0.250000,0,0);}
.m4_c01065{transform:matrix(0.768341,-0.004610,0.001500,0.249996,0,0);-ms-transform:matrix(0.768341,-0.004610,0.001500,0.249996,0,0);-webkit-transform:matrix(0.768341,-0.004610,0.001500,0.249996,0,0);}
.m7d_c01065{transform:matrix(0.770651,-0.004624,0.001500,0.249996,0,0);-ms-transform:matrix(0.770651,-0.004624,0.001500,0.249996,0,0);-webkit-transform:matrix(0.770651,-0.004624,0.001500,0.249996,0,0);}
.m121_c01065{transform:matrix(0.785790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785790,0.000000,0.000000,0.250000,0,0);}
.m59_c01065{transform:matrix(0.799971,-0.004800,0.001500,0.249996,0,0);-ms-transform:matrix(0.799971,-0.004800,0.001500,0.249996,0,0);-webkit-transform:matrix(0.799971,-0.004800,0.001500,0.249996,0,0);}
.m10e_c01065{transform:matrix(0.802610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802610,0.000000,0.000000,0.250000,0,0);}
.m8f_c01065{transform:matrix(0.806975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01065{transform:matrix(0.872934,-0.005238,0.001500,0.249996,0,0);-ms-transform:matrix(0.872934,-0.005238,0.001500,0.249996,0,0);-webkit-transform:matrix(0.872934,-0.005238,0.001500,0.249996,0,0);}
.m102_c01065{transform:matrix(0.881400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881400,0.000000,0.000000,0.250000,0,0);}
.m120_c01065{transform:matrix(0.901425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.901425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.901425,0.000000,0.000000,0.250000,0,0);}
.m3_c01065{transform:matrix(0.996562,-0.005979,0.001500,0.249996,0,0);-ms-transform:matrix(0.996562,-0.005979,0.001500,0.249996,0,0);-webkit-transform:matrix(0.996562,-0.005979,0.001500,0.249996,0,0);}
.m136_c01065{transform:matrix(1.111690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.111690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.111690,0.000000,0.000000,0.250000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls0_c01065{letter-spacing:0.000000px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:0.000000px;}
.fc0_c01065{color:transparent;}
.fs18_c01065{font-size:18.900000px;}
.fs19_c01065{font-size:43.050000px;}
.fs1_c01065{font-size:47.250850px;}
.fs16_c01065{font-size:52.500000px;}
.fs0_c01065{font-size:57.750000px;}
.fs17_c01065{font-size:59.850000px;}
.fsd_c01065{font-size:60.900000px;}
.fsc_c01065{font-size:61.950000px;}
.fs8_c01065{font-size:63.001134px;}
.fs5_c01065{font-size:64.051153px;}
.fs15_c01065{font-size:68.250000px;}
.fs13_c01065{font-size:69.300000px;}
.fs12_c01065{font-size:70.350000px;}
.fs6_c01065{font-size:70.351266px;}
.fs10_c01065{font-size:71.400000px;}
.fsa_c01065{font-size:71.401285px;}
.fse_c01065{font-size:72.450000px;}
.fs4_c01065{font-size:72.451304px;}
.fs7_c01065{font-size:73.501323px;}
.fs9_c01065{font-size:76.651380px;}
.fsb_c01065{font-size:79.801436px;}
.fs11_c01065{font-size:85.050000px;}
.fs3_c01065{font-size:91.351644px;}
.fs14_c01065{font-size:97.650000px;}
.fsf_c01065{font-size:101.850000px;}
.fs2_c01065{font-size:130.202344px;}
.fs1a_c01065{font-size:212.100000px;}
.y0_c01065{bottom:0.000000px;}
.yd8_c01065{bottom:100.713000px;}
.yd6_c01065{bottom:102.870000px;}
.yd7_c01065{bottom:119.658000px;}
.ycd_c01065{bottom:169.020000px;}
.yce_c01065{bottom:169.669500px;}
.ycf_c01065{bottom:170.631000px;}
.yd0_c01065{bottom:170.752500px;}
.yd1_c01065{bottom:170.842500px;}
.yd2_c01065{bottom:171.082500px;}
.yd3_c01065{bottom:171.364500px;}
.yd4_c01065{bottom:171.559500px;}
.yd5_c01065{bottom:172.371000px;}
.ycc_c01065{bottom:194.725500px;}
.yc2_c01065{bottom:209.800500px;}
.yc3_c01065{bottom:214.000500px;}
.yc4_c01065{bottom:214.252500px;}
.yc5_c01065{bottom:214.726500px;}
.yc6_c01065{bottom:216.357000px;}
.yc7_c01065{bottom:216.606000px;}
.yc8_c01065{bottom:217.615500px;}
.yc9_c01065{bottom:217.894500px;}
.yca_c01065{bottom:219.985500px;}
.ycb_c01065{bottom:221.412000px;}
.yb8_c01065{bottom:239.493000px;}
.yb9_c01065{bottom:240.226500px;}
.yba_c01065{bottom:240.805500px;}
.ybb_c01065{bottom:241.192500px;}
.ybc_c01065{bottom:241.365000px;}
.ybd_c01065{bottom:242.191500px;}
.ybf_c01065{bottom:242.751000px;}
.ybe_c01065{bottom:242.827500px;}
.yc0_c01065{bottom:243.346500px;}
.yc1_c01065{bottom:243.967500px;}
.yb7_c01065{bottom:261.204000px;}
.yb6_c01065{bottom:261.727500px;}
.yb5_c01065{bottom:262.572000px;}
.yb4_c01065{bottom:262.828500px;}
.yb3_c01065{bottom:263.050500px;}
.yb2_c01065{bottom:263.275500px;}
.yb1_c01065{bottom:263.619000px;}
.yb0_c01065{bottom:263.800500px;}
.yaf_c01065{bottom:263.926500px;}
.yae_c01065{bottom:264.633000px;}
.yad_c01065{bottom:264.942000px;}
.yac_c01065{bottom:265.569000px;}
.yab_c01065{bottom:265.680000px;}
.yaa_c01065{bottom:285.886500px;}
.ya9_c01065{bottom:308.113500px;}
.ya8_c01065{bottom:332.101500px;}
.ya7_c01065{bottom:354.556500px;}
.ya1_c01065{bottom:377.733000px;}
.ya2_c01065{bottom:378.468000px;}
.ya3_c01065{bottom:379.560000px;}
.ya4_c01065{bottom:380.766000px;}
.ya5_c01065{bottom:383.499000px;}
.ya6_c01065{bottom:384.462000px;}
.ya0_c01065{bottom:410.070000px;}
.y9f_c01065{bottom:413.130000px;}
.y9e_c01065{bottom:413.715000px;}
.y9d_c01065{bottom:414.550500px;}
.y9c_c01065{bottom:415.110000px;}
.y9b_c01065{bottom:415.987500px;}
.y9a_c01065{bottom:417.403500px;}
.y99_c01065{bottom:418.003500px;}
.y98_c01065{bottom:418.378500px;}
.y97_c01065{bottom:419.209500px;}
.y96_c01065{bottom:420.933000px;}
.y95_c01065{bottom:431.731500px;}
.y91_c01065{bottom:453.324000px;}
.y92_c01065{bottom:454.162500px;}
.y93_c01065{bottom:454.654500px;}
.y94_c01065{bottom:457.345500px;}
.y90_c01065{bottom:484.984500px;}
.y8f_c01065{bottom:508.531500px;}
.y8d_c01065{bottom:528.756000px;}
.y8e_c01065{bottom:530.647500px;}
.y86_c01065{bottom:552.151500px;}
.y87_c01065{bottom:553.405500px;}
.y88_c01065{bottom:553.839000px;}
.y89_c01065{bottom:554.305500px;}
.y8a_c01065{bottom:554.637000px;}
.y8b_c01065{bottom:554.866500px;}
.y8c_c01065{bottom:555.477000px;}
.y85_c01065{bottom:571.371000px;}
.y84_c01065{bottom:579.418500px;}
.y82_c01065{bottom:581.183814px;}
.y83_c01065{bottom:581.184387px;}
.y80_c01065{bottom:608.657526px;}
.y7d_c01065{bottom:608.657535px;}
.y81_c01065{bottom:608.657601px;}
.y7f_c01065{bottom:608.657706px;}
.y7e_c01065{bottom:608.657826px;}
.y74_c01065{bottom:629.368086px;}
.y75_c01065{bottom:629.923521px;}
.y76_c01065{bottom:630.098499px;}
.y77_c01065{bottom:630.419277px;}
.y78_c01065{bottom:630.727032px;}
.y79_c01065{bottom:630.897177px;}
.y7a_c01065{bottom:631.044615px;}
.y7b_c01065{bottom:631.357275px;}
.y7c_c01065{bottom:632.734311px;}
.y6b_c01065{bottom:653.138328px;}
.y6c_c01065{bottom:653.138979px;}
.y6d_c01065{bottom:653.139519px;}
.y6f_c01065{bottom:653.140101px;}
.y6e_c01065{bottom:653.140230px;}
.y71_c01065{bottom:653.140632px;}
.y73_c01065{bottom:653.140743px;}
.y70_c01065{bottom:653.140761px;}
.y72_c01065{bottom:653.140863px;}
.y64_c01065{bottom:676.455756px;}
.y63_c01065{bottom:676.455825px;}
.y65_c01065{bottom:676.456296px;}
.y66_c01065{bottom:676.456887px;}
.y6a_c01065{bottom:676.457391px;}
.y69_c01065{bottom:676.457469px;}
.y67_c01065{bottom:676.457538px;}
.y68_c01065{bottom:676.457778px;}
.y5d_c01065{bottom:698.549070px;}
.y5c_c01065{bottom:698.549130px;}
.y5b_c01065{bottom:698.549259px;}
.y5e_c01065{bottom:698.549670px;}
.y5a_c01065{bottom:698.549679px;}
.y5f_c01065{bottom:698.549970px;}
.y59_c01065{bottom:698.550159px;}
.y61_c01065{bottom:698.550252px;}
.y62_c01065{bottom:698.550303px;}
.y57_c01065{bottom:698.550348px;}
.y58_c01065{bottom:698.550399px;}
.y60_c01065{bottom:698.550621px;}
.y56_c01065{bottom:722.084091px;}
.y4b_c01065{bottom:722.084436px;}
.y55_c01065{bottom:722.084511px;}
.y53_c01065{bottom:722.084538px;}
.y4d_c01065{bottom:722.084667px;}
.y4e_c01065{bottom:722.084727px;}
.y52_c01065{bottom:722.084778px;}
.y4c_c01065{bottom:722.084847px;}
.y50_c01065{bottom:722.084958px;}
.y54_c01065{bottom:722.085069px;}
.y51_c01065{bottom:722.085198px;}
.y4f_c01065{bottom:722.085438px;}
.y40_c01065{bottom:743.306004px;}
.y41_c01065{bottom:743.400864px;}
.y42_c01065{bottom:743.861358px;}
.y43_c01065{bottom:744.075234px;}
.y44_c01065{bottom:744.499692px;}
.y45_c01065{bottom:744.766965px;}
.y46_c01065{bottom:745.312896px;}
.y47_c01065{bottom:745.544556px;}
.y48_c01065{bottom:745.701525px;}
.y49_c01065{bottom:746.096337px;}
.y4a_c01065{bottom:746.753085px;}
.y38_c01065{bottom:766.814718px;}
.y3f_c01065{bottom:766.814793px;}
.y3e_c01065{bottom:766.814991px;}
.y3c_c01065{bottom:766.815120px;}
.y39_c01065{bottom:766.815189px;}
.y3b_c01065{bottom:766.815240px;}
.y37_c01065{bottom:766.815318px;}
.y36_c01065{bottom:766.815498px;}
.y3d_c01065{bottom:766.815711px;}
.y3a_c01065{bottom:766.815909px;}
.y35_c01065{bottom:766.816167px;}
.y30_c01065{bottom:790.894104px;}
.y31_c01065{bottom:790.894275px;}
.y2e_c01065{bottom:790.894404px;}
.y32_c01065{bottom:790.894515px;}
.y2d_c01065{bottom:790.894704px;}
.y33_c01065{bottom:790.894755px;}
.y2f_c01065{bottom:790.894824px;}
.y2c_c01065{bottom:790.894893px;}
.y2a_c01065{bottom:790.894911px;}
.y2b_c01065{bottom:790.895202px;}
.y34_c01065{bottom:790.895337px;}
.y20_c01065{bottom:810.271269px;}
.y21_c01065{bottom:811.549257px;}
.y22_c01065{bottom:812.318787px;}
.y23_c01065{bottom:812.799360px;}
.y24_c01065{bottom:813.293328px;}
.y25_c01065{bottom:813.521307px;}
.y26_c01065{bottom:813.880797px;}
.y27_c01065{bottom:814.292895px;}
.y28_c01065{bottom:815.041227px;}
.y29_c01065{bottom:818.086731px;}
.y13_c01065{bottom:833.490300px;}
.y14_c01065{bottom:834.071706px;}
.y15_c01065{bottom:834.374226px;}
.y16_c01065{bottom:834.534660px;}
.y17_c01065{bottom:834.974904px;}
.y18_c01065{bottom:835.088865px;}
.y19_c01065{bottom:835.583760px;}
.y1a_c01065{bottom:835.795011px;}
.y1b_c01065{bottom:836.072340px;}
.y1c_c01065{bottom:836.230920px;}
.y1d_c01065{bottom:836.379918px;}
.y1e_c01065{bottom:837.342462px;}
.y1f_c01065{bottom:837.478341px;}
.yb_c01065{bottom:844.830540px;}
.yc_c01065{bottom:844.924140px;}
.yd_c01065{bottom:845.516583px;}
.ye_c01065{bottom:846.158130px;}
.yf_c01065{bottom:846.350946px;}
.y10_c01065{bottom:847.413936px;}
.y11_c01065{bottom:847.787850px;}
.y12_c01065{bottom:848.216097px;}
.y9_c01065{bottom:877.434849px;}
.y8_c01065{bottom:877.435107px;}
.y5_c01065{bottom:877.435134px;}
.ya_c01065{bottom:877.435260px;}
.y7_c01065{bottom:877.435416px;}
.y6_c01065{bottom:877.435725px;}
.y2_c01065{bottom:898.825500px;}
.y3_c01065{bottom:901.448460px;}
.y4_c01065{bottom:902.213712px;}
.y1_c01065{bottom:938.098500px;}
.h1a_c01065{height:18.900000px;}
.h1b_c01065{height:43.050000px;}
.h3_c01065{height:47.250850px;}
.h18_c01065{height:52.500000px;}
.h2_c01065{height:57.750000px;}
.h19_c01065{height:59.850000px;}
.hf_c01065{height:60.900000px;}
.he_c01065{height:61.950000px;}
.ha_c01065{height:63.001134px;}
.h7_c01065{height:64.051153px;}
.h17_c01065{height:68.250000px;}
.h15_c01065{height:69.300000px;}
.h14_c01065{height:70.350000px;}
.h8_c01065{height:70.351266px;}
.h12_c01065{height:71.400000px;}
.hc_c01065{height:71.401285px;}
.h10_c01065{height:72.450000px;}
.h6_c01065{height:72.451304px;}
.h9_c01065{height:73.501323px;}
.hb_c01065{height:76.651380px;}
.hd_c01065{height:79.801436px;}
.h13_c01065{height:85.050000px;}
.h5_c01065{height:91.351644px;}
.h16_c01065{height:97.650000px;}
.h11_c01065{height:101.850000px;}
.h4_c01065{height:130.202344px;}
.h1c_c01065{height:212.100000px;}
.h0_c01065{height:1008.450000px;}
.h1_c01065{height:1008.750000px;}
.w1_c01065{width:700.500000px;}
.w0_c01065{width:700.650000px;}
.x0_c01065{left:0.000000px;}
.x5f_c01065{left:57.247980px;}
.x6b_c01065{left:60.750000px;}
.x34_c01065{left:64.390539px;}
.x4_c01065{left:65.623500px;}
.x7_c01065{left:66.690876px;}
.xa2_c01065{left:67.770000px;}
.x63_c01065{left:71.382000px;}
.x13_c01065{left:73.815792px;}
.x6f_c01065{left:79.110000px;}
.x35_c01065{left:80.200539px;}
.xd_c01065{left:81.637473px;}
.x8a_c01065{left:85.320000px;}
.xa7_c01065{left:98.280000px;}
.x8_c01065{left:122.041365px;}
.x84_c01065{left:127.158000px;}
.xa8_c01065{left:133.380000px;}
.x2c_c01065{left:137.971137px;}
.x52_c01065{left:153.097215px;}
.x86_c01065{left:155.520000px;}
.x14_c01065{left:156.966297px;}
.x99_c01065{left:158.917500px;}
.xa4_c01065{left:176.115000px;}
.xe_c01065{left:180.377973px;}
.x8b_c01065{left:181.710000px;}
.x5c_c01065{left:183.069672px;}
.x2d_c01065{left:185.222838px;}
.x59_c01065{left:186.656661px;}
.x4d_c01065{left:187.928070px;}
.x46_c01065{left:190.356099px;}
.x53_c01065{left:191.438592px;}
.x36_c01065{left:192.595539px;}
.x3e_c01065{left:194.133033px;}
.x91_c01065{left:198.180000px;}
.x15_c01065{left:200.136036px;}
.x6c_c01065{left:201.690000px;}
.x5d_c01065{left:206.290509px;}
.x76_c01065{left:209.788500px;}
.x1f_c01065{left:212.612313px;}
.x68_c01065{left:217.890000px;}
.x7f_c01065{left:219.696000px;}
.x16_c01065{left:223.124901px;}
.x3f_c01065{left:224.644131px;}
.x9b_c01065{left:231.517500px;}
.x77_c01065{left:235.438500px;}
.x9_c01065{left:239.494095px;}
.x70_c01065{left:243.000000px;}
.x20_c01065{left:246.956166px;}
.x8c_c01065{left:248.400000px;}
.x26_c01065{left:250.561719px;}
.x47_c01065{left:252.458340px;}
.x75_c01065{left:254.779500px;}
.x4e_c01065{left:256.779045px;}
.x2e_c01065{left:259.204002px;}
.x54_c01065{left:260.559576px;}
.x37_c01065{left:263.338539px;}
.x6d_c01065{left:264.600000px;}
.x27_c01065{left:266.762304px;}
.x69_c01065{left:269.460000px;}
.x8d_c01065{left:272.430000px;}
.xa0_c01065{left:273.862500px;}
.x64_c01065{left:280.335000px;}
.x21_c01065{left:282.282474px;}
.x17_c01065{left:285.998523px;}
.xf_c01065{left:287.302473px;}
.x5a_c01065{left:291.412161px;}
.x40_c01065{left:293.765115px;}
.x22_c01065{left:298.528191px;}
.x18_c01065{left:302.241924px;}
.x87_c01065{left:303.750000px;}
.x48_c01065{left:306.188775px;}
.x38_c01065{left:307.884039px;}
.xa3_c01065{left:313.740000px;}
.x60_c01065{left:315.102759px;}
.x10_c01065{left:319.438473px;}
.x55_c01065{left:321.040254px;}
.x8e_c01065{left:322.110000px;}
.x23_c01065{left:324.191958px;}
.x80_c01065{left:325.768500px;}
.x96_c01065{left:332.910000px;}
.x49_c01065{left:336.429864px;}
.x56_c01065{left:339.400911px;}
.x62_c01065{left:341.010000px;}
.x5b_c01065{left:344.342661px;}
.x92_c01065{left:350.730000px;}
.x24_c01065{left:353.623545px;}
.x4f_c01065{left:356.141118px;}
.x41_c01065{left:360.727527px;}
.xa_c01065{left:363.697068px;}
.xa9_c01065{left:366.120000px;}
.x28_c01065{left:367.744440px;}
.x97_c01065{left:368.820000px;}
.x2f_c01065{left:370.716516px;}
.x81_c01065{left:371.932500px;}
.x19_c01065{left:372.974001px;}
.x78_c01065{left:376.918500px;}
.x6e_c01065{left:379.890000px;}
.x50_c01065{left:383.682108px;}
.x93_c01065{left:386.370000px;}
.x42_c01065{left:390.158589px;}
.x98_c01065{left:391.770000px;}
.x79_c01065{left:394.198500px;}
.x4a_c01065{left:395.831997px;}
.x30_c01065{left:397.447479px;}
.x39_c01065{left:398.872539px;}
.x82_c01065{left:401.409000px;}
.x1a_c01065{left:403.182321px;}
.x9c_c01065{left:404.820000px;}
.x25_c01065{left:407.092980px;}
.x29_c01065{left:408.785916px;}
.x43_c01065{left:409.869300px;}
.xa5_c01065{left:411.564000px;}
.x57_c01065{left:413.382075px;}
.x71_c01065{left:420.660000px;}
.x88_c01065{left:422.550000px;}
.x67_c01065{left:426.600000px;}
.x2a_c01065{left:429.576663px;}
.x7a_c01065{left:431.188500px;}
.x6a_c01065{left:434.700000px;}
.x3a_c01065{left:437.482539px;}
.x8f_c01065{left:439.020000px;}
.x94_c01065{left:440.370000px;}
.x1b_c01065{left:442.903587px;}
.x31_c01065{left:446.047725px;}
.x89_c01065{left:447.660000px;}
.x51_c01065{left:453.883137px;}
.x44_c01065{left:454.959420px;}
.x72_c01065{left:456.300000px;}
.xa1_c01065{left:459.328500px;}
.x58_c01065{left:461.172294px;}
.x3b_c01065{left:463.644039px;}
.x1c_c01065{left:465.583452px;}
.x7b_c01065{left:473.308500px;}
.x9e_c01065{left:474.709500px;}
.x83_c01065{left:476.116500px;}
.x32_c01065{left:478.178886px;}
.x4b_c01065{left:481.693584px;}
.x9d_c01065{left:484.329000px;}
.x65_c01065{left:485.788500px;}
.x1d_c01065{left:486.916326px;}
.x1_c01065{left:489.240000px;}
.xa6_c01065{left:490.936500px;}
.x7c_c01065{left:494.908500px;}
.x11_c01065{left:496.603473px;}
.x73_c01065{left:498.150000px;}
.x5_c01065{left:502.783500px;}
.xb_c01065{left:504.909153px;}
.x95_c01065{left:511.380000px;}
.x66_c01065{left:524.131500px;}
.x3c_c01065{left:529.446039px;}
.x2_c01065{left:539.730000px;}
.x85_c01065{left:546.325500px;}
.x9f_c01065{left:549.195000px;}
.x90_c01065{left:550.260000px;}
.x74_c01065{left:557.280000px;}
.x12_c01065{left:558.922473px;}
.x9a_c01065{left:560.731500px;}
.x4c_c01065{left:561.884973px;}
.x7d_c01065{left:601.288500px;}
.x3_c01065{left:605.610000px;}
.xc_c01065{left:623.981937px;}
.x2b_c01065{left:626.680755px;}
.x6_c01065{left:630.325500px;}
.x5e_c01065{left:631.818327px;}
.x33_c01065{left:636.401583px;}
.x3d_c01065{left:638.904039px;}
.x61_c01065{left:641.250000px;}
.x1e_c01065{left:643.735881px;}
.x45_c01065{left:648.553395px;}
.x7e_c01065{left:650.158500px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ws0_c01065{word-spacing:0.000000pt;}
.fs18_c01065{font-size:16.800000pt;}
.fs19_c01065{font-size:38.266667pt;}
.fs1_c01065{font-size:42.000756pt;}
.fs16_c01065{font-size:46.666667pt;}
.fs0_c01065{font-size:51.333333pt;}
.fs17_c01065{font-size:53.200000pt;}
.fsd_c01065{font-size:54.133333pt;}
.fsc_c01065{font-size:55.066667pt;}
.fs8_c01065{font-size:56.001008pt;}
.fs5_c01065{font-size:56.934358pt;}
.fs15_c01065{font-size:60.666667pt;}
.fs13_c01065{font-size:61.600000pt;}
.fs12_c01065{font-size:62.533333pt;}
.fs6_c01065{font-size:62.534459pt;}
.fs10_c01065{font-size:63.466667pt;}
.fsa_c01065{font-size:63.467809pt;}
.fse_c01065{font-size:64.400000pt;}
.fs4_c01065{font-size:64.401159pt;}
.fs7_c01065{font-size:65.334509pt;}
.fs9_c01065{font-size:68.134560pt;}
.fsb_c01065{font-size:70.934610pt;}
.fs11_c01065{font-size:75.600000pt;}
.fs3_c01065{font-size:81.201462pt;}
.fs14_c01065{font-size:86.800000pt;}
.fsf_c01065{font-size:90.533333pt;}
.fs2_c01065{font-size:115.735417pt;}
.fs1a_c01065{font-size:188.533333pt;}
.y0_c01065{bottom:0.000000pt;}
.yd8_c01065{bottom:89.522667pt;}
.yd6_c01065{bottom:91.440000pt;}
.yd7_c01065{bottom:106.362667pt;}
.ycd_c01065{bottom:150.240000pt;}
.yce_c01065{bottom:150.817333pt;}
.ycf_c01065{bottom:151.672000pt;}
.yd0_c01065{bottom:151.780000pt;}
.yd1_c01065{bottom:151.860000pt;}
.yd2_c01065{bottom:152.073333pt;}
.yd3_c01065{bottom:152.324000pt;}
.yd4_c01065{bottom:152.497333pt;}
.yd5_c01065{bottom:153.218667pt;}
.ycc_c01065{bottom:173.089333pt;}
.yc2_c01065{bottom:186.489333pt;}
.yc3_c01065{bottom:190.222667pt;}
.yc4_c01065{bottom:190.446667pt;}
.yc5_c01065{bottom:190.868000pt;}
.yc6_c01065{bottom:192.317333pt;}
.yc7_c01065{bottom:192.538667pt;}
.yc8_c01065{bottom:193.436000pt;}
.yc9_c01065{bottom:193.684000pt;}
.yca_c01065{bottom:195.542667pt;}
.ycb_c01065{bottom:196.810667pt;}
.yb8_c01065{bottom:212.882667pt;}
.yb9_c01065{bottom:213.534667pt;}
.yba_c01065{bottom:214.049333pt;}
.ybb_c01065{bottom:214.393333pt;}
.ybc_c01065{bottom:214.546667pt;}
.ybd_c01065{bottom:215.281333pt;}
.ybf_c01065{bottom:215.778667pt;}
.ybe_c01065{bottom:215.846667pt;}
.yc0_c01065{bottom:216.308000pt;}
.yc1_c01065{bottom:216.860000pt;}
.yb7_c01065{bottom:232.181333pt;}
.yb6_c01065{bottom:232.646667pt;}
.yb5_c01065{bottom:233.397333pt;}
.yb4_c01065{bottom:233.625333pt;}
.yb3_c01065{bottom:233.822667pt;}
.yb2_c01065{bottom:234.022667pt;}
.yb1_c01065{bottom:234.328000pt;}
.yb0_c01065{bottom:234.489333pt;}
.yaf_c01065{bottom:234.601333pt;}
.yae_c01065{bottom:235.229333pt;}
.yad_c01065{bottom:235.504000pt;}
.yac_c01065{bottom:236.061333pt;}
.yab_c01065{bottom:236.160000pt;}
.yaa_c01065{bottom:254.121333pt;}
.ya9_c01065{bottom:273.878667pt;}
.ya8_c01065{bottom:295.201333pt;}
.ya7_c01065{bottom:315.161333pt;}
.ya1_c01065{bottom:335.762667pt;}
.ya2_c01065{bottom:336.416000pt;}
.ya3_c01065{bottom:337.386667pt;}
.ya4_c01065{bottom:338.458667pt;}
.ya5_c01065{bottom:340.888000pt;}
.ya6_c01065{bottom:341.744000pt;}
.ya0_c01065{bottom:364.506667pt;}
.y9f_c01065{bottom:367.226667pt;}
.y9e_c01065{bottom:367.746667pt;}
.y9d_c01065{bottom:368.489333pt;}
.y9c_c01065{bottom:368.986667pt;}
.y9b_c01065{bottom:369.766667pt;}
.y9a_c01065{bottom:371.025333pt;}
.y99_c01065{bottom:371.558667pt;}
.y98_c01065{bottom:371.892000pt;}
.y97_c01065{bottom:372.630667pt;}
.y96_c01065{bottom:374.162667pt;}
.y95_c01065{bottom:383.761333pt;}
.y91_c01065{bottom:402.954667pt;}
.y92_c01065{bottom:403.700000pt;}
.y93_c01065{bottom:404.137333pt;}
.y94_c01065{bottom:406.529333pt;}
.y90_c01065{bottom:431.097333pt;}
.y8f_c01065{bottom:452.028000pt;}
.y8d_c01065{bottom:470.005333pt;}
.y8e_c01065{bottom:471.686667pt;}
.y86_c01065{bottom:490.801333pt;}
.y87_c01065{bottom:491.916000pt;}
.y88_c01065{bottom:492.301333pt;}
.y89_c01065{bottom:492.716000pt;}
.y8a_c01065{bottom:493.010667pt;}
.y8b_c01065{bottom:493.214667pt;}
.y8c_c01065{bottom:493.757333pt;}
.y85_c01065{bottom:507.885333pt;}
.y84_c01065{bottom:515.038667pt;}
.y82_c01065{bottom:516.607835pt;}
.y83_c01065{bottom:516.608344pt;}
.y80_c01065{bottom:541.028912pt;}
.y7d_c01065{bottom:541.028920pt;}
.y81_c01065{bottom:541.028979pt;}
.y7f_c01065{bottom:541.029072pt;}
.y7e_c01065{bottom:541.029179pt;}
.y74_c01065{bottom:559.438299pt;}
.y75_c01065{bottom:559.932019pt;}
.y76_c01065{bottom:560.087555pt;}
.y77_c01065{bottom:560.372691pt;}
.y78_c01065{bottom:560.646251pt;}
.y79_c01065{bottom:560.797491pt;}
.y7a_c01065{bottom:560.928547pt;}
.y7b_c01065{bottom:561.206467pt;}
.y7c_c01065{bottom:562.430499pt;}
.y6b_c01065{bottom:580.567403pt;}
.y6c_c01065{bottom:580.567981pt;}
.y6d_c01065{bottom:580.568461pt;}
.y6f_c01065{bottom:580.568979pt;}
.y6e_c01065{bottom:580.569093pt;}
.y71_c01065{bottom:580.569451pt;}
.y73_c01065{bottom:580.569549pt;}
.y70_c01065{bottom:580.569565pt;}
.y72_c01065{bottom:580.569656pt;}
.y64_c01065{bottom:601.294005pt;}
.y63_c01065{bottom:601.294067pt;}
.y65_c01065{bottom:601.294485pt;}
.y66_c01065{bottom:601.295011pt;}
.y6a_c01065{bottom:601.295459pt;}
.y69_c01065{bottom:601.295528pt;}
.y67_c01065{bottom:601.295589pt;}
.y68_c01065{bottom:601.295803pt;}
.y5d_c01065{bottom:620.932507pt;}
.y5c_c01065{bottom:620.932560pt;}
.y5b_c01065{bottom:620.932675pt;}
.y5e_c01065{bottom:620.933040pt;}
.y5a_c01065{bottom:620.933048pt;}
.y5f_c01065{bottom:620.933307pt;}
.y59_c01065{bottom:620.933475pt;}
.y61_c01065{bottom:620.933557pt;}
.y62_c01065{bottom:620.933603pt;}
.y57_c01065{bottom:620.933643pt;}
.y58_c01065{bottom:620.933688pt;}
.y60_c01065{bottom:620.933885pt;}
.y56_c01065{bottom:641.852525pt;}
.y4b_c01065{bottom:641.852832pt;}
.y55_c01065{bottom:641.852899pt;}
.y53_c01065{bottom:641.852923pt;}
.y4d_c01065{bottom:641.853037pt;}
.y4e_c01065{bottom:641.853091pt;}
.y52_c01065{bottom:641.853136pt;}
.y4c_c01065{bottom:641.853197pt;}
.y50_c01065{bottom:641.853296pt;}
.y54_c01065{bottom:641.853395pt;}
.y51_c01065{bottom:641.853509pt;}
.y4f_c01065{bottom:641.853723pt;}
.y40_c01065{bottom:660.716448pt;}
.y41_c01065{bottom:660.800768pt;}
.y42_c01065{bottom:661.210096pt;}
.y43_c01065{bottom:661.400208pt;}
.y44_c01065{bottom:661.777504pt;}
.y45_c01065{bottom:662.015080pt;}
.y46_c01065{bottom:662.500352pt;}
.y47_c01065{bottom:662.706272pt;}
.y48_c01065{bottom:662.845800pt;}
.y49_c01065{bottom:663.196744pt;}
.y4a_c01065{bottom:663.780520pt;}
.y38_c01065{bottom:681.613083pt;}
.y3f_c01065{bottom:681.613149pt;}
.y3e_c01065{bottom:681.613325pt;}
.y3c_c01065{bottom:681.613440pt;}
.y39_c01065{bottom:681.613501pt;}
.y3b_c01065{bottom:681.613547pt;}
.y37_c01065{bottom:681.613616pt;}
.y36_c01065{bottom:681.613776pt;}
.y3d_c01065{bottom:681.613965pt;}
.y3a_c01065{bottom:681.614141pt;}
.y35_c01065{bottom:681.614371pt;}
.y30_c01065{bottom:703.016981pt;}
.y31_c01065{bottom:703.017133pt;}
.y2e_c01065{bottom:703.017248pt;}
.y32_c01065{bottom:703.017347pt;}
.y2d_c01065{bottom:703.017515pt;}
.y33_c01065{bottom:703.017560pt;}
.y2f_c01065{bottom:703.017621pt;}
.y2c_c01065{bottom:703.017683pt;}
.y2a_c01065{bottom:703.017699pt;}
.y2b_c01065{bottom:703.017957pt;}
.y34_c01065{bottom:703.018077pt;}
.y20_c01065{bottom:720.241128pt;}
.y21_c01065{bottom:721.377117pt;}
.y22_c01065{bottom:722.061144pt;}
.y23_c01065{bottom:722.488320pt;}
.y24_c01065{bottom:722.927403pt;}
.y25_c01065{bottom:723.130051pt;}
.y26_c01065{bottom:723.449597pt;}
.y27_c01065{bottom:723.815907pt;}
.y28_c01065{bottom:724.481091pt;}
.y29_c01065{bottom:727.188205pt;}
.y13_c01065{bottom:740.880267pt;}
.y14_c01065{bottom:741.397072pt;}
.y15_c01065{bottom:741.665979pt;}
.y16_c01065{bottom:741.808587pt;}
.y17_c01065{bottom:742.199915pt;}
.y18_c01065{bottom:742.301213pt;}
.y19_c01065{bottom:742.741120pt;}
.y1a_c01065{bottom:742.928899pt;}
.y1b_c01065{bottom:743.175413pt;}
.y1c_c01065{bottom:743.316373pt;}
.y1d_c01065{bottom:743.448816pt;}
.y1e_c01065{bottom:744.304411pt;}
.y1f_c01065{bottom:744.425192pt;}
.yb_c01065{bottom:750.960480pt;}
.yc_c01065{bottom:751.043680pt;}
.yd_c01065{bottom:751.570296pt;}
.ye_c01065{bottom:752.140560pt;}
.yf_c01065{bottom:752.311952pt;}
.y10_c01065{bottom:753.256832pt;}
.y11_c01065{bottom:753.589200pt;}
.y12_c01065{bottom:753.969864pt;}
.y9_c01065{bottom:779.942088pt;}
.y8_c01065{bottom:779.942317pt;}
.y5_c01065{bottom:779.942341pt;}
.ya_c01065{bottom:779.942453pt;}
.y7_c01065{bottom:779.942592pt;}
.y6_c01065{bottom:779.942867pt;}
.y2_c01065{bottom:798.956000pt;}
.y3_c01065{bottom:801.287520pt;}
.y4_c01065{bottom:801.967744pt;}
.y1_c01065{bottom:833.865333pt;}
.h1a_c01065{height:16.800000pt;}
.h1b_c01065{height:38.266667pt;}
.h3_c01065{height:42.000756pt;}
.h18_c01065{height:46.666667pt;}
.h2_c01065{height:51.333333pt;}
.h19_c01065{height:53.200000pt;}
.hf_c01065{height:54.133333pt;}
.he_c01065{height:55.066667pt;}
.ha_c01065{height:56.001008pt;}
.h7_c01065{height:56.934358pt;}
.h17_c01065{height:60.666667pt;}
.h15_c01065{height:61.600000pt;}
.h14_c01065{height:62.533333pt;}
.h8_c01065{height:62.534459pt;}
.h12_c01065{height:63.466667pt;}
.hc_c01065{height:63.467809pt;}
.h10_c01065{height:64.400000pt;}
.h6_c01065{height:64.401159pt;}
.h9_c01065{height:65.334509pt;}
.hb_c01065{height:68.134560pt;}
.hd_c01065{height:70.934610pt;}
.h13_c01065{height:75.600000pt;}
.h5_c01065{height:81.201462pt;}
.h16_c01065{height:86.800000pt;}
.h11_c01065{height:90.533333pt;}
.h4_c01065{height:115.735417pt;}
.h1c_c01065{height:188.533333pt;}
.h0_c01065{height:896.400000pt;}
.h1_c01065{height:896.666667pt;}
.w1_c01065{width:622.666667pt;}
.w0_c01065{width:622.800000pt;}
.x0_c01065{left:0.000000pt;}
.x5f_c01065{left:50.887093pt;}
.x6b_c01065{left:54.000000pt;}
.x34_c01065{left:57.236035pt;}
.x4_c01065{left:58.332000pt;}
.x7_c01065{left:59.280779pt;}
.xa2_c01065{left:60.240000pt;}
.x63_c01065{left:63.450667pt;}
.x13_c01065{left:65.614037pt;}
.x6f_c01065{left:70.320000pt;}
.x35_c01065{left:71.289368pt;}
.xd_c01065{left:72.566643pt;}
.x8a_c01065{left:75.840000pt;}
.xa7_c01065{left:87.360000pt;}
.x8_c01065{left:108.481213pt;}
.x84_c01065{left:113.029333pt;}
.xa8_c01065{left:118.560000pt;}
.x2c_c01065{left:122.641011pt;}
.x52_c01065{left:136.086413pt;}
.x86_c01065{left:138.240000pt;}
.x14_c01065{left:139.525597pt;}
.x99_c01065{left:141.260000pt;}
.xa4_c01065{left:156.546667pt;}
.xe_c01065{left:160.335976pt;}
.x8b_c01065{left:161.520000pt;}
.x5c_c01065{left:162.728597pt;}
.x2d_c01065{left:164.642523pt;}
.x59_c01065{left:165.917032pt;}
.x4d_c01065{left:167.047173pt;}
.x46_c01065{left:169.205421pt;}
.x53_c01065{left:170.167637pt;}
.x36_c01065{left:171.196035pt;}
.x3e_c01065{left:172.562696pt;}
.x91_c01065{left:176.160000pt;}
.x15_c01065{left:177.898699pt;}
.x6c_c01065{left:179.280000pt;}
.x5d_c01065{left:183.369341pt;}
.x76_c01065{left:186.478667pt;}
.x1f_c01065{left:188.988723pt;}
.x68_c01065{left:193.680000pt;}
.x7f_c01065{left:195.285333pt;}
.x16_c01065{left:198.333245pt;}
.x3f_c01065{left:199.683672pt;}
.x9b_c01065{left:205.793333pt;}
.x77_c01065{left:209.278667pt;}
.x9_c01065{left:212.883640pt;}
.x70_c01065{left:216.000000pt;}
.x20_c01065{left:219.516592pt;}
.x8c_c01065{left:220.800000pt;}
.x26_c01065{left:222.721528pt;}
.x47_c01065{left:224.407413pt;}
.x75_c01065{left:226.470667pt;}
.x4e_c01065{left:228.248040pt;}
.x2e_c01065{left:230.403557pt;}
.x54_c01065{left:231.608512pt;}
.x37_c01065{left:234.078701pt;}
.x6d_c01065{left:235.200000pt;}
.x27_c01065{left:237.122048pt;}
.x69_c01065{left:239.520000pt;}
.x8d_c01065{left:242.160000pt;}
.xa0_c01065{left:243.433333pt;}
.x64_c01065{left:249.186667pt;}
.x21_c01065{left:250.917755pt;}
.x17_c01065{left:254.220909pt;}
.xf_c01065{left:255.379976pt;}
.x5a_c01065{left:259.033032pt;}
.x40_c01065{left:261.124547pt;}
.x22_c01065{left:265.358392pt;}
.x18_c01065{left:268.659488pt;}
.x87_c01065{left:270.000000pt;}
.x48_c01065{left:272.167800pt;}
.x38_c01065{left:273.674701pt;}
.xa3_c01065{left:278.880000pt;}
.x60_c01065{left:280.091341pt;}
.x10_c01065{left:283.945309pt;}
.x55_c01065{left:285.369115pt;}
.x8e_c01065{left:286.320000pt;}
.x23_c01065{left:288.170629pt;}
.x80_c01065{left:289.572000pt;}
.x96_c01065{left:295.920000pt;}
.x49_c01065{left:299.048768pt;}
.x56_c01065{left:301.689699pt;}
.x62_c01065{left:303.120000pt;}
.x5b_c01065{left:306.082365pt;}
.x92_c01065{left:311.760000pt;}
.x24_c01065{left:314.332040pt;}
.x4f_c01065{left:316.569883pt;}
.x41_c01065{left:320.646691pt;}
.xa_c01065{left:323.286283pt;}
.xa9_c01065{left:325.440000pt;}
.x28_c01065{left:326.883947pt;}
.x97_c01065{left:327.840000pt;}
.x2f_c01065{left:329.525792pt;}
.x81_c01065{left:330.606667pt;}
.x19_c01065{left:331.532445pt;}
.x78_c01065{left:335.038667pt;}
.x6e_c01065{left:337.680000pt;}
.x50_c01065{left:341.050763pt;}
.x93_c01065{left:343.440000pt;}
.x42_c01065{left:346.807635pt;}
.x98_c01065{left:348.240000pt;}
.x79_c01065{left:350.398667pt;}
.x4a_c01065{left:351.850664pt;}
.x30_c01065{left:353.286648pt;}
.x39_c01065{left:354.553368pt;}
.x82_c01065{left:356.808000pt;}
.x1a_c01065{left:358.384285pt;}
.x9c_c01065{left:359.840000pt;}
.x25_c01065{left:361.860427pt;}
.x29_c01065{left:363.365259pt;}
.x43_c01065{left:364.328267pt;}
.xa5_c01065{left:365.834667pt;}
.x57_c01065{left:367.450733pt;}
.x71_c01065{left:373.920000pt;}
.x88_c01065{left:375.600000pt;}
.x67_c01065{left:379.200000pt;}
.x2a_c01065{left:381.845923pt;}
.x7a_c01065{left:383.278667pt;}
.x6a_c01065{left:386.400000pt;}
.x3a_c01065{left:388.873368pt;}
.x8f_c01065{left:390.240000pt;}
.x94_c01065{left:391.440000pt;}
.x1b_c01065{left:393.692077pt;}
.x31_c01065{left:396.486867pt;}
.x89_c01065{left:397.920000pt;}
.x51_c01065{left:403.451677pt;}
.x44_c01065{left:404.408373pt;}
.x72_c01065{left:405.600000pt;}
.xa1_c01065{left:408.292000pt;}
.x58_c01065{left:409.930928pt;}
.x3b_c01065{left:412.128035pt;}
.x1c_c01065{left:413.851957pt;}
.x7b_c01065{left:420.718667pt;}
.x9e_c01065{left:421.964000pt;}
.x83_c01065{left:423.214667pt;}
.x32_c01065{left:425.047899pt;}
.x4b_c01065{left:428.172075pt;}
.x9d_c01065{left:430.514667pt;}
.x65_c01065{left:431.812000pt;}
.x1d_c01065{left:432.814512pt;}
.x1_c01065{left:434.880000pt;}
.xa6_c01065{left:436.388000pt;}
.x7c_c01065{left:439.918667pt;}
.x11_c01065{left:441.425309pt;}
.x73_c01065{left:442.800000pt;}
.x5_c01065{left:446.918667pt;}
.xb_c01065{left:448.808136pt;}
.x95_c01065{left:454.560000pt;}
.x66_c01065{left:465.894667pt;}
.x3c_c01065{left:470.618701pt;}
.x2_c01065{left:479.760000pt;}
.x85_c01065{left:485.622667pt;}
.x9f_c01065{left:488.173333pt;}
.x90_c01065{left:489.120000pt;}
.x74_c01065{left:495.360000pt;}
.x12_c01065{left:496.819976pt;}
.x9a_c01065{left:498.428000pt;}
.x4c_c01065{left:499.453309pt;}
.x7d_c01065{left:534.478667pt;}
.x3_c01065{left:538.320000pt;}
.xc_c01065{left:554.650611pt;}
.x2b_c01065{left:557.049560pt;}
.x6_c01065{left:560.289333pt;}
.x5e_c01065{left:561.616291pt;}
.x33_c01065{left:565.690296pt;}
.x3d_c01065{left:567.914701pt;}
.x61_c01065{left:570.000000pt;}
.x1e_c01065{left:572.209672pt;}
.x45_c01065{left:576.491907pt;}
.x7e_c01065{left:577.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_c01066 {
    display:none;
  }
  .loading-indicator_c01066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01066 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01066 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01066" -> "#page-container .classname_c01066")
 */
.pf_c01066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01066 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01066 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01066 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01066 {overflow:visible;}
  }
}
.c_c01066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01066 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01066:after { /* webkit #35443 */
  content: '';
}
.t_c01066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01066 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01066 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01066 { /* info for Javascript */
  display:none;
}
.l_c01066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.000000;font-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_c01066{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);}
.m57_c01066{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);}
.m68_c01066{transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017690,0.000000,0.000000,0.250000,0,0);}
.m44_c01066{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);}
.m91_c01066{transform:matrix(0.133380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133380,0.000000,0.000000,0.250000,0,0);}
.m8d_c01066{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m29_c01066{transform:matrix(0.138290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138290,0.000000,0.000000,0.250000,0,0);}
.m45_c01066{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);}
.m70_c01066{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);}
.m38_c01066{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);}
.m2c_c01066{transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146465,0.000000,0.000000,0.250000,0,0);}
.mb0_c01066{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);}
.m5f_c01066{transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150210,0.000000,0.000000,0.250000,0,0);}
.m75_c01066{transform:matrix(0.151610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151610,0.000000,0.000000,0.250000,0,0);}
.m5_c01066{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);}
.m5a_c01066{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);}
.m4d_c01066{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);}
.ma3_c01066{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);}
.m6a_c01066{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);}
.m6e_c01066{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);}
.m8b_c01066{transform:matrix(0.154995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154995,0.000000,0.000000,0.250000,0,0);}
.m19_c01066{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);}
.m52_c01066{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);}
.m6d_c01066{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);}
.m27_c01066{transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158165,0.000000,0.000000,0.250000,0,0);}
.mc4_c01066{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);}
.m96_c01066{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);}
.m2_c01066{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);}
.m40_c01066{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);}
.m65_c01066{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);}
.m74_c01066{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);}
.m2a_c01066{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);}
.m9c_c01066{transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165090,0.000000,0.000000,0.250000,0,0);}
.m50_c01066{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);}
.m1c_c01066{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);}
.mae_c01066{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);}
.m28_c01066{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);}
.m9a_c01066{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m4e_c01066{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);}
.mb5_c01066{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);}
.m2d_c01066{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);}
.m3_c01066{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);}
.m71_c01066{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);}
.m63_c01066{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);}
.mb1_c01066{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);}
.m90_c01066{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);}
.m98_c01066{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);}
.m55_c01066{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);}
.m2b_c01066{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);}
.m17_c01066{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);}
.m93_c01066{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);}
.m3e_c01066{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);}
.m48_c01066{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);}
.m30_c01066{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);}
.m22_c01066{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);}
.m97_c01066{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);}
.m4a_c01066{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);}
.ma6_c01066{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);}
.m6f_c01066{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);}
.m56_c01066{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);}
.m1a_c01066{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);}
.m4f_c01066{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);}
.maa_c01066{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);}
.me_c01066{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);}
.m5b_c01066{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);}
.mc0_c01066{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);}
.m46_c01066{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);}
.m21_c01066{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);}
.ma7_c01066{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);}
.mbf_c01066{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);}
.m6c_c01066{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);}
.m59_c01066{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);}
.m9b_c01066{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);}
.m6b_c01066{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);}
.m36_c01066{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);}
.mba_c01066{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);}
.m84_c01066{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);}
.m80_c01066{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);}
.ma8_c01066{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);}
.mbe_c01066{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);}
.mbd_c01066{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);}
.m1b_c01066{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);}
.m3b_c01066{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);}
.mcb_c01066{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);}
.mc1_c01066{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);}
.m8c_c01066{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);}
.mc7_c01066{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);}
.m5e_c01066{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);}
.m53_c01066{transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);}
.m23_c01066{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);}
.mc3_c01066{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);}
.mf_c01066{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);}
.m1f_c01066{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);}
.mc5_c01066{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);}
.mb7_c01066{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);}
.ma0_c01066{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);}
.m8e_c01066{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);}
.ma4_c01066{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);}
.m95_c01066{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);}
.m26_c01066{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);}
.m42_c01066{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);}
.m99_c01066{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);}
.m72_c01066{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.mb8_c01066{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);}
.m49_c01066{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);}
.mbc_c01066{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);}
.m88_c01066{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);}
.mc8_c01066{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);}
.m10_c01066{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);}
.maf_c01066{transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199180,0.000000,0.000000,0.250000,0,0);}
.m3f_c01066{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);}
.m67_c01066{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);}
.m18_c01066{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);}
.mb6_c01066{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);}
.m15_c01066{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);}
.m94_c01066{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);}
.m39_c01066{transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203455,0.000000,0.000000,0.250000,0,0);}
.m4b_c01066{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);}
.m25_c01066{transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203955,0.000000,0.000000,0.250000,0,0);}
.m5c_c01066{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);}
.ma1_c01066{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);}
.m62_c01066{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);}
.mab_c01066{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);}
.mb9_c01066{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);}
.mb4_c01066{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);}
.mc2_c01066{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);}
.ma9_c01066{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);}
.m2e_c01066{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);}
.m37_c01066{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);}
.m24_c01066{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);}
.m69_c01066{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);}
.m73_c01066{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);}
.mbb_c01066{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);}
.m83_c01066{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_c01066{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);}
.mc9_c01066{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);}
.m92_c01066{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);}
.m5d_c01066{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);}
.ma2_c01066{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);}
.m8a_c01066{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_c01066{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);}
.m1e_c01066{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);}
.m76_c01066{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);}
.m9e_c01066{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);}
.m0_c01066{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);}
.m16_c01066{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);}
.m85_c01066{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);}
.m3d_c01066{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);}
.mc6_c01066{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);}
.m54_c01066{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);}
.m7d_c01066{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);}
.m43_c01066{transform:matrix(0.227805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227805,0.000000,0.000000,0.250000,0,0);}
.m3c_c01066{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);}
.m61_c01066{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);}
.m47_c01066{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m58_c01066{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);}
.m60_c01066{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);}
.m9f_c01066{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);}
.m4_c01066{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);}
.m3a_c01066{transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);}
.m41_c01066{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);}
.m78_c01066{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);}
.m64_c01066{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m7f_c01066{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m31_c01066{transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);}
.m9_c01066{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);}
.m11_c01066{transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);}
.m2f_c01066{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.mac_c01066{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.mca_c01066{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);}
.m1d_c01066{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.m9d_c01066{transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);}
.mb3_c01066{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);}
.m82_c01066{transform:matrix(0.263890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263890,0.000000,0.000000,0.250000,0,0);}
.m89_c01066{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);}
.m86_c01066{transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);}
.m66_c01066{transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);}
.mcc_c01066{transform:matrix(0.290470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290470,0.000000,0.000000,0.250000,0,0);}
.m13_c01066{transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292575,0.000000,0.000000,0.250000,0,0);}
.m77_c01066{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);}
.m51_c01066{transform:matrix(0.326760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326760,0.000000,0.000000,0.250000,0,0);}
.mb2_c01066{transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330125,0.000000,0.000000,0.250000,0,0);}
.md_c01066{transform:matrix(0.342245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342245,0.000000,0.000000,0.250000,0,0);}
.mad_c01066{transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346485,0.000000,0.000000,0.250000,0,0);}
.m14_c01066{transform:matrix(0.353620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353620,0.000000,0.000000,0.250000,0,0);}
.m34_c01066{transform:matrix(0.356865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356865,0.000000,0.000000,0.250000,0,0);}
.m7b_c01066{transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371610,0.000000,0.000000,0.250000,0,0);}
.m79_c01066{transform:matrix(0.377870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377870,0.000000,0.000000,0.250000,0,0);}
.m33_c01066{transform:matrix(0.389130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389130,0.000000,0.000000,0.250000,0,0);}
.m1_c01066{transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394085,0.000000,0.000000,0.250000,0,0);}
.m7c_c01066{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.mb_c01066{transform:matrix(0.406975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406975,0.000000,0.000000,0.250000,0,0);}
.m7a_c01066{transform:matrix(0.416565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416565,0.000000,0.000000,0.250000,0,0);}
.m35_c01066{transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);}
.m8_c01066{transform:matrix(0.431035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431035,0.000000,0.000000,0.250000,0,0);}
.m7_c01066{transform:matrix(0.485150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485150,0.000000,0.000000,0.250000,0,0);}
.m87_c01066{transform:matrix(0.493840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493840,0.000000,0.000000,0.250000,0,0);}
.m7e_c01066{transform:matrix(0.500450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500450,0.000000,0.000000,0.250000,0,0);}
.m8f_c01066{transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);}
.m32_c01066{transform:matrix(0.527150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527150,0.000000,0.000000,0.250000,0,0);}
.m6_c01066{transform:matrix(0.529210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529210,0.000000,0.000000,0.250000,0,0);}
.ma_c01066{transform:matrix(0.579260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579260,0.000000,0.000000,0.250000,0,0);}
.m4c_c01066{transform:matrix(0.608380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608380,0.000000,0.000000,0.250000,0,0);}
.m12_c01066{transform:matrix(0.609860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609860,0.000000,0.000000,0.250000,0,0);}
.mcd_c01066{transform:matrix(0.675625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675625,0.000000,0.000000,0.250000,0,0);}
.m81_c01066{transform:matrix(0.714530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714530,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls0_c01066{letter-spacing:0.000000px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:0.000000px;}
.fc0_c01066{color:transparent;}
.fse_c01066{font-size:57.750000px;}
.fsc_c01066{font-size:58.800000px;}
.fs5_c01066{font-size:63.000000px;}
.fs8_c01066{font-size:65.100000px;}
.fsb_c01066{font-size:66.150000px;}
.fsa_c01066{font-size:68.250000px;}
.fs3_c01066{font-size:69.300000px;}
.fs7_c01066{font-size:70.350000px;}
.fs4_c01066{font-size:71.400000px;}
.fs9_c01066{font-size:72.450000px;}
.fsd_c01066{font-size:73.500000px;}
.fs0_c01066{font-size:74.550000px;}
.fs6_c01066{font-size:76.650000px;}
.fs2_c01066{font-size:126.000000px;}
.fs1_c01066{font-size:127.050000px;}
.y0_c01066{bottom:0.000000px;}
.y76_c01066{bottom:127.132500px;}
.y75_c01066{bottom:150.901500px;}
.y6b_c01066{bottom:266.223000px;}
.y6c_c01066{bottom:266.508000px;}
.y6d_c01066{bottom:266.964000px;}
.y6e_c01066{bottom:267.649500px;}
.y6f_c01066{bottom:267.913500px;}
.y70_c01066{bottom:268.392000px;}
.y71_c01066{bottom:268.609500px;}
.y72_c01066{bottom:269.052000px;}
.y73_c01066{bottom:269.230500px;}
.y74_c01066{bottom:269.463000px;}
.y63_c01066{bottom:288.906000px;}
.y64_c01066{bottom:289.668000px;}
.y65_c01066{bottom:290.082000px;}
.y66_c01066{bottom:290.599500px;}
.y67_c01066{bottom:290.998500px;}
.y68_c01066{bottom:291.253500px;}
.y69_c01066{bottom:291.603000px;}
.y6a_c01066{bottom:292.231500px;}
.y62_c01066{bottom:313.839000px;}
.y5a_c01066{bottom:334.537500px;}
.y5b_c01066{bottom:335.568000px;}
.y5c_c01066{bottom:335.968500px;}
.y5d_c01066{bottom:336.685500px;}
.y5e_c01066{bottom:336.889500px;}
.y5f_c01066{bottom:337.497000px;}
.y60_c01066{bottom:337.980000px;}
.y61_c01066{bottom:338.535000px;}
.y53_c01066{bottom:357.217500px;}
.y54_c01066{bottom:357.529500px;}
.y55_c01066{bottom:358.063500px;}
.y56_c01066{bottom:358.542000px;}
.y57_c01066{bottom:359.266500px;}
.y58_c01066{bottom:359.671500px;}
.y59_c01066{bottom:361.012500px;}
.y4d_c01066{bottom:379.897500px;}
.y4e_c01066{bottom:380.646000px;}
.y4f_c01066{bottom:381.813000px;}
.y50_c01066{bottom:382.788000px;}
.y51_c01066{bottom:383.145000px;}
.y52_c01066{bottom:383.826000px;}
.y44_c01066{bottom:402.577500px;}
.y45_c01066{bottom:402.928500px;}
.y46_c01066{bottom:403.432500px;}
.y47_c01066{bottom:403.750500px;}
.y48_c01066{bottom:404.355000px;}
.y49_c01066{bottom:404.979000px;}
.y4a_c01066{bottom:405.447000px;}
.y4b_c01066{bottom:406.017000px;}
.y4c_c01066{bottom:406.611000px;}
.y3a_c01066{bottom:425.257500px;}
.y3b_c01066{bottom:425.661000px;}
.y3c_c01066{bottom:426.309000px;}
.y3d_c01066{bottom:426.924000px;}
.y3e_c01066{bottom:427.216500px;}
.y3f_c01066{bottom:427.822500px;}
.y40_c01066{bottom:428.532000px;}
.y41_c01066{bottom:428.932500px;}
.y42_c01066{bottom:429.378000px;}
.y43_c01066{bottom:429.738000px;}
.y39_c01066{bottom:452.322000px;}
.y38_c01066{bottom:474.315000px;}
.y37_c01066{bottom:496.779000px;}
.y36_c01066{bottom:519.046500px;}
.y35_c01066{bottom:542.280000px;}
.y2c_c01066{bottom:563.764500px;}
.y2d_c01066{bottom:564.297000px;}
.y2e_c01066{bottom:565.000500px;}
.y2f_c01066{bottom:565.479000px;}
.y30_c01066{bottom:565.963500px;}
.y31_c01066{bottom:566.251500px;}
.y32_c01066{bottom:566.445000px;}
.y33_c01066{bottom:567.042000px;}
.y34_c01066{bottom:567.721500px;}
.y24_c01066{bottom:586.713000px;}
.y25_c01066{bottom:587.152500px;}
.y26_c01066{bottom:587.640000px;}
.y27_c01066{bottom:587.934000px;}
.y28_c01066{bottom:588.427500px;}
.y29_c01066{bottom:588.900000px;}
.y2a_c01066{bottom:589.797000px;}
.y2b_c01066{bottom:590.172000px;}
.y19_c01066{bottom:608.853000px;}
.y1a_c01066{bottom:609.061500px;}
.y1b_c01066{bottom:609.805500px;}
.y1c_c01066{bottom:610.302000px;}
.y1d_c01066{bottom:610.911000px;}
.y1e_c01066{bottom:611.238000px;}
.y1f_c01066{bottom:611.475000px;}
.y20_c01066{bottom:612.136500px;}
.y21_c01066{bottom:612.463500px;}
.y22_c01066{bottom:612.855000px;}
.y23_c01066{bottom:613.338000px;}
.y18_c01066{bottom:631.717500px;}
.y12_c01066{bottom:654.753000px;}
.y13_c01066{bottom:655.212000px;}
.y14_c01066{bottom:655.647000px;}
.y15_c01066{bottom:657.099000px;}
.y16_c01066{bottom:657.447000px;}
.y17_c01066{bottom:657.870000px;}
.ya_c01066{bottom:676.621500px;}
.yb_c01066{bottom:676.911000px;}
.yc_c01066{bottom:677.214000px;}
.yd_c01066{bottom:677.821500px;}
.ye_c01066{bottom:678.234000px;}
.yf_c01066{bottom:678.453000px;}
.y10_c01066{bottom:679.080000px;}
.y11_c01066{bottom:679.401000px;}
.y9_c01066{bottom:702.304500px;}
.y8_c01066{bottom:720.892500px;}
.y7_c01066{bottom:743.697000px;}
.y6_c01066{bottom:766.458000px;}
.y5_c01066{bottom:789.048000px;}
.y4_c01066{bottom:812.515500px;}
.y3_c01066{bottom:858.439500px;}
.y2_c01066{bottom:900.544500px;}
.y1_c01066{bottom:918.262500px;}
.h10_c01066{height:57.750000px;}
.he_c01066{height:58.800000px;}
.h7_c01066{height:63.000000px;}
.ha_c01066{height:65.100000px;}
.hd_c01066{height:66.150000px;}
.hc_c01066{height:68.250000px;}
.h5_c01066{height:69.300000px;}
.h9_c01066{height:70.350000px;}
.h6_c01066{height:71.400000px;}
.hb_c01066{height:72.450000px;}
.hf_c01066{height:73.500000px;}
.h2_c01066{height:74.550000px;}
.h8_c01066{height:76.650000px;}
.h4_c01066{height:126.000000px;}
.h3_c01066{height:127.050000px;}
.h1_c01066{height:1005.000000px;}
.h0_c01066{height:1005.150000px;}
.w0_c01066{width:715.200000px;}
.w1_c01066{width:715.500000px;}
.x0_c01066{left:0.000000px;}
.xd_c01066{left:48.330000px;}
.x8_c01066{left:62.370000px;}
.x1_c01066{left:76.410000px;}
.x79_c01066{left:113.130000px;}
.x7b_c01066{left:126.900000px;}
.x51_c01066{left:135.811500px;}
.x16_c01066{left:137.160000px;}
.x3d_c01066{left:153.855000px;}
.x6b_c01066{left:157.339500px;}
.x4c_c01066{left:160.111500px;}
.x63_c01066{left:162.124500px;}
.x1d_c01066{left:165.780000px;}
.x38_c01066{left:167.130000px;}
.x9_c01066{left:176.850000px;}
.xe_c01066{left:182.520000px;}
.x48_c01066{left:184.557000px;}
.x67_c01066{left:186.178500px;}
.x7a_c01066{left:188.730000px;}
.x5a_c01066{left:192.241500px;}
.x17_c01066{left:194.130000px;}
.x30_c01066{left:195.423000px;}
.x2_c01066{left:198.720000px;}
.x72_c01066{left:200.230500px;}
.x77_c01066{left:203.506500px;}
.x39_c01066{left:207.360000px;}
.x13_c01066{left:213.570000px;}
.x3e_c01066{left:215.848500px;}
.x24_c01066{left:220.320000px;}
.x43_c01066{left:221.821500px;}
.x1e_c01066{left:224.100000px;}
.x34_c01066{left:226.975500px;}
.x3a_c01066{left:233.010000px;}
.x73_c01066{left:234.792000px;}
.x54_c01066{left:245.701500px;}
.x18_c01066{left:247.050000px;}
.x25_c01066{left:248.130000px;}
.x52_c01066{left:249.751500px;}
.x4d_c01066{left:251.641500px;}
.x31_c01066{left:256.167000px;}
.x3f_c01066{left:257.211000px;}
.x5b_c01066{left:260.551500px;}
.x5f_c01066{left:263.914500px;}
.x55_c01066{left:265.951500px;}
.x4e_c01066{left:272.971500px;}
.x3b_c01066{left:274.590000px;}
.x74_c01066{left:277.936500px;}
.x2c_c01066{left:280.260000px;}
.x1f_c01066{left:283.770000px;}
.x14_c01066{left:285.120000px;}
.x56_c01066{left:286.471500px;}
.x53_c01066{left:289.711500px;}
.x49_c01066{left:292.018500px;}
.x44_c01066{left:293.368500px;}
.x71_c01066{left:294.841500px;}
.x32_c01066{left:297.427500px;}
.x6c_c01066{left:300.181500px;}
.x6e_c01066{left:301.764000px;}
.x2d_c01066{left:307.530000px;}
.x64_c01066{left:308.535000px;}
.x75_c01066{left:311.197500px;}
.x5c_c01066{left:312.931500px;}
.x3_c01066{left:315.630000px;}
.x6f_c01066{left:317.428500px;}
.x33_c01066{left:319.297500px;}
.x3c_c01066{left:321.030000px;}
.x20_c01066{left:324.000000px;}
.x59_c01066{left:325.621500px;}
.x19_c01066{left:327.240000px;}
.x68_c01066{left:328.992000px;}
.x60_c01066{left:333.033000px;}
.x40_c01066{left:335.236500px;}
.x45_c01066{left:336.307500px;}
.x65_c01066{left:342.016500px;}
.x2e_c01066{left:344.520000px;}
.x21_c01066{left:345.870000px;}
.x1a_c01066{left:349.110000px;}
.x26_c01066{left:351.000000px;}
.x69_c01066{left:352.827000px;}
.x15_c01066{left:354.780000px;}
.x76_c01066{left:361.647000px;}
.x4_c01066{left:363.150000px;}
.x2f_c01066{left:364.770000px;}
.x57_c01066{left:365.851500px;}
.x35_c01066{left:372.196500px;}
.x22_c01066{left:378.810000px;}
.x27_c01066{left:382.590000px;}
.x58_c01066{left:386.101500px;}
.x61_c01066{left:387.577500px;}
.x6d_c01066{left:389.544000px;}
.x78_c01066{left:393.259500px;}
.xf_c01066{left:396.360000px;}
.x6a_c01066{left:398.197500px;}
.x70_c01066{left:401.344500px;}
.x36_c01066{left:406.974000px;}
.x23_c01066{left:408.780000px;}
.x29_c01066{left:410.940000px;}
.xb_c01066{left:414.450000px;}
.xa_c01066{left:415.530000px;}
.x46_c01066{left:417.787500px;}
.x1b_c01066{left:424.170000px;}
.x66_c01066{left:425.175000px;}
.x4f_c01066{left:429.841500px;}
.x4a_c01066{left:434.044500px;}
.x41_c01066{left:437.304000px;}
.x5d_c01066{left:442.801500px;}
.x1c_c01066{left:444.690000px;}
.x37_c01066{left:449.311500px;}
.x47_c01066{left:451.854000px;}
.x50_c01066{left:462.511500px;}
.x10_c01066{left:464.130000px;}
.x28_c01066{left:468.990000px;}
.x5_c01066{left:472.230000px;}
.x2a_c01066{left:475.200000px;}
.x62_c01066{left:480.343500px;}
.x4b_c01066{left:495.754500px;}
.x2b_c01066{left:508.950000px;}
.x42_c01066{left:510.243000px;}
.x5e_c01066{left:518.941500px;}
.x11_c01066{left:544.860000px;}
.x7_c01066{left:549.720000px;}
.x6_c01066{left:554.310000px;}
.xc_c01066{left:581.310000px;}
.x12_c01066{left:603.450000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls0_c01066{letter-spacing:0.000000pt;}
.ws0_c01066{word-spacing:0.000000pt;}
.fse_c01066{font-size:51.333333pt;}
.fsc_c01066{font-size:52.266667pt;}
.fs5_c01066{font-size:56.000000pt;}
.fs8_c01066{font-size:57.866667pt;}
.fsb_c01066{font-size:58.800000pt;}
.fsa_c01066{font-size:60.666667pt;}
.fs3_c01066{font-size:61.600000pt;}
.fs7_c01066{font-size:62.533333pt;}
.fs4_c01066{font-size:63.466667pt;}
.fs9_c01066{font-size:64.400000pt;}
.fsd_c01066{font-size:65.333333pt;}
.fs0_c01066{font-size:66.266667pt;}
.fs6_c01066{font-size:68.133333pt;}
.fs2_c01066{font-size:112.000000pt;}
.fs1_c01066{font-size:112.933333pt;}
.y0_c01066{bottom:0.000000pt;}
.y76_c01066{bottom:113.006667pt;}
.y75_c01066{bottom:134.134667pt;}
.y6b_c01066{bottom:236.642667pt;}
.y6c_c01066{bottom:236.896000pt;}
.y6d_c01066{bottom:237.301333pt;}
.y6e_c01066{bottom:237.910667pt;}
.y6f_c01066{bottom:238.145333pt;}
.y70_c01066{bottom:238.570667pt;}
.y71_c01066{bottom:238.764000pt;}
.y72_c01066{bottom:239.157333pt;}
.y73_c01066{bottom:239.316000pt;}
.y74_c01066{bottom:239.522667pt;}
.y63_c01066{bottom:256.805333pt;}
.y64_c01066{bottom:257.482667pt;}
.y65_c01066{bottom:257.850667pt;}
.y66_c01066{bottom:258.310667pt;}
.y67_c01066{bottom:258.665333pt;}
.y68_c01066{bottom:258.892000pt;}
.y69_c01066{bottom:259.202667pt;}
.y6a_c01066{bottom:259.761333pt;}
.y62_c01066{bottom:278.968000pt;}
.y5a_c01066{bottom:297.366667pt;}
.y5b_c01066{bottom:298.282667pt;}
.y5c_c01066{bottom:298.638667pt;}
.y5d_c01066{bottom:299.276000pt;}
.y5e_c01066{bottom:299.457333pt;}
.y5f_c01066{bottom:299.997333pt;}
.y60_c01066{bottom:300.426667pt;}
.y61_c01066{bottom:300.920000pt;}
.y53_c01066{bottom:317.526667pt;}
.y54_c01066{bottom:317.804000pt;}
.y55_c01066{bottom:318.278667pt;}
.y56_c01066{bottom:318.704000pt;}
.y57_c01066{bottom:319.348000pt;}
.y58_c01066{bottom:319.708000pt;}
.y59_c01066{bottom:320.900000pt;}
.y4d_c01066{bottom:337.686667pt;}
.y4e_c01066{bottom:338.352000pt;}
.y4f_c01066{bottom:339.389333pt;}
.y50_c01066{bottom:340.256000pt;}
.y51_c01066{bottom:340.573333pt;}
.y52_c01066{bottom:341.178667pt;}
.y44_c01066{bottom:357.846667pt;}
.y45_c01066{bottom:358.158667pt;}
.y46_c01066{bottom:358.606667pt;}
.y47_c01066{bottom:358.889333pt;}
.y48_c01066{bottom:359.426667pt;}
.y49_c01066{bottom:359.981333pt;}
.y4a_c01066{bottom:360.397333pt;}
.y4b_c01066{bottom:360.904000pt;}
.y4c_c01066{bottom:361.432000pt;}
.y3a_c01066{bottom:378.006667pt;}
.y3b_c01066{bottom:378.365333pt;}
.y3c_c01066{bottom:378.941333pt;}
.y3d_c01066{bottom:379.488000pt;}
.y3e_c01066{bottom:379.748000pt;}
.y3f_c01066{bottom:380.286667pt;}
.y40_c01066{bottom:380.917333pt;}
.y41_c01066{bottom:381.273333pt;}
.y42_c01066{bottom:381.669333pt;}
.y43_c01066{bottom:381.989333pt;}
.y39_c01066{bottom:402.064000pt;}
.y38_c01066{bottom:421.613333pt;}
.y37_c01066{bottom:441.581333pt;}
.y36_c01066{bottom:461.374667pt;}
.y35_c01066{bottom:482.026667pt;}
.y2c_c01066{bottom:501.124000pt;}
.y2d_c01066{bottom:501.597333pt;}
.y2e_c01066{bottom:502.222667pt;}
.y2f_c01066{bottom:502.648000pt;}
.y30_c01066{bottom:503.078667pt;}
.y31_c01066{bottom:503.334667pt;}
.y32_c01066{bottom:503.506667pt;}
.y33_c01066{bottom:504.037333pt;}
.y34_c01066{bottom:504.641333pt;}
.y24_c01066{bottom:521.522667pt;}
.y25_c01066{bottom:521.913333pt;}
.y26_c01066{bottom:522.346667pt;}
.y27_c01066{bottom:522.608000pt;}
.y28_c01066{bottom:523.046667pt;}
.y29_c01066{bottom:523.466667pt;}
.y2a_c01066{bottom:524.264000pt;}
.y2b_c01066{bottom:524.597333pt;}
.y19_c01066{bottom:541.202667pt;}
.y1a_c01066{bottom:541.388000pt;}
.y1b_c01066{bottom:542.049333pt;}
.y1c_c01066{bottom:542.490667pt;}
.y1d_c01066{bottom:543.032000pt;}
.y1e_c01066{bottom:543.322667pt;}
.y1f_c01066{bottom:543.533333pt;}
.y20_c01066{bottom:544.121333pt;}
.y21_c01066{bottom:544.412000pt;}
.y22_c01066{bottom:544.760000pt;}
.y23_c01066{bottom:545.189333pt;}
.y18_c01066{bottom:561.526667pt;}
.y12_c01066{bottom:582.002667pt;}
.y13_c01066{bottom:582.410667pt;}
.y14_c01066{bottom:582.797333pt;}
.y15_c01066{bottom:584.088000pt;}
.y16_c01066{bottom:584.397333pt;}
.y17_c01066{bottom:584.773333pt;}
.ya_c01066{bottom:601.441333pt;}
.yb_c01066{bottom:601.698667pt;}
.yc_c01066{bottom:601.968000pt;}
.yd_c01066{bottom:602.508000pt;}
.ye_c01066{bottom:602.874667pt;}
.yf_c01066{bottom:603.069333pt;}
.y10_c01066{bottom:603.626667pt;}
.y11_c01066{bottom:603.912000pt;}
.y9_c01066{bottom:624.270667pt;}
.y8_c01066{bottom:640.793333pt;}
.y7_c01066{bottom:661.064000pt;}
.y6_c01066{bottom:681.296000pt;}
.y5_c01066{bottom:701.376000pt;}
.y4_c01066{bottom:722.236000pt;}
.y3_c01066{bottom:763.057333pt;}
.y2_c01066{bottom:800.484000pt;}
.y1_c01066{bottom:816.233333pt;}
.h10_c01066{height:51.333333pt;}
.he_c01066{height:52.266667pt;}
.h7_c01066{height:56.000000pt;}
.ha_c01066{height:57.866667pt;}
.hd_c01066{height:58.800000pt;}
.hc_c01066{height:60.666667pt;}
.h5_c01066{height:61.600000pt;}
.h9_c01066{height:62.533333pt;}
.h6_c01066{height:63.466667pt;}
.hb_c01066{height:64.400000pt;}
.hf_c01066{height:65.333333pt;}
.h2_c01066{height:66.266667pt;}
.h8_c01066{height:68.133333pt;}
.h4_c01066{height:112.000000pt;}
.h3_c01066{height:112.933333pt;}
.h1_c01066{height:893.333333pt;}
.h0_c01066{height:893.466667pt;}
.w0_c01066{width:635.733333pt;}
.w1_c01066{width:636.000000pt;}
.x0_c01066{left:0.000000pt;}
.xd_c01066{left:42.960000pt;}
.x8_c01066{left:55.440000pt;}
.x1_c01066{left:67.920000pt;}
.x79_c01066{left:100.560000pt;}
.x7b_c01066{left:112.800000pt;}
.x51_c01066{left:120.721333pt;}
.x16_c01066{left:121.920000pt;}
.x3d_c01066{left:136.760000pt;}
.x6b_c01066{left:139.857333pt;}
.x4c_c01066{left:142.321333pt;}
.x63_c01066{left:144.110667pt;}
.x1d_c01066{left:147.360000pt;}
.x38_c01066{left:148.560000pt;}
.x9_c01066{left:157.200000pt;}
.xe_c01066{left:162.240000pt;}
.x48_c01066{left:164.050667pt;}
.x67_c01066{left:165.492000pt;}
.x7a_c01066{left:167.760000pt;}
.x5a_c01066{left:170.881333pt;}
.x17_c01066{left:172.560000pt;}
.x30_c01066{left:173.709333pt;}
.x2_c01066{left:176.640000pt;}
.x72_c01066{left:177.982667pt;}
.x77_c01066{left:180.894667pt;}
.x39_c01066{left:184.320000pt;}
.x13_c01066{left:189.840000pt;}
.x3e_c01066{left:191.865333pt;}
.x24_c01066{left:195.840000pt;}
.x43_c01066{left:197.174667pt;}
.x1e_c01066{left:199.200000pt;}
.x34_c01066{left:201.756000pt;}
.x3a_c01066{left:207.120000pt;}
.x73_c01066{left:208.704000pt;}
.x54_c01066{left:218.401333pt;}
.x18_c01066{left:219.600000pt;}
.x25_c01066{left:220.560000pt;}
.x52_c01066{left:222.001333pt;}
.x4d_c01066{left:223.681333pt;}
.x31_c01066{left:227.704000pt;}
.x3f_c01066{left:228.632000pt;}
.x5b_c01066{left:231.601333pt;}
.x5f_c01066{left:234.590667pt;}
.x55_c01066{left:236.401333pt;}
.x4e_c01066{left:242.641333pt;}
.x3b_c01066{left:244.080000pt;}
.x74_c01066{left:247.054667pt;}
.x2c_c01066{left:249.120000pt;}
.x1f_c01066{left:252.240000pt;}
.x14_c01066{left:253.440000pt;}
.x56_c01066{left:254.641333pt;}
.x53_c01066{left:257.521333pt;}
.x49_c01066{left:259.572000pt;}
.x44_c01066{left:260.772000pt;}
.x71_c01066{left:262.081333pt;}
.x32_c01066{left:264.380000pt;}
.x6c_c01066{left:266.828000pt;}
.x6e_c01066{left:268.234667pt;}
.x2d_c01066{left:273.360000pt;}
.x64_c01066{left:274.253333pt;}
.x75_c01066{left:276.620000pt;}
.x5c_c01066{left:278.161333pt;}
.x3_c01066{left:280.560000pt;}
.x6f_c01066{left:282.158667pt;}
.x33_c01066{left:283.820000pt;}
.x3c_c01066{left:285.360000pt;}
.x20_c01066{left:288.000000pt;}
.x59_c01066{left:289.441333pt;}
.x19_c01066{left:290.880000pt;}
.x68_c01066{left:292.437333pt;}
.x60_c01066{left:296.029333pt;}
.x40_c01066{left:297.988000pt;}
.x45_c01066{left:298.940000pt;}
.x65_c01066{left:304.014667pt;}
.x2e_c01066{left:306.240000pt;}
.x21_c01066{left:307.440000pt;}
.x1a_c01066{left:310.320000pt;}
.x26_c01066{left:312.000000pt;}
.x69_c01066{left:313.624000pt;}
.x15_c01066{left:315.360000pt;}
.x76_c01066{left:321.464000pt;}
.x4_c01066{left:322.800000pt;}
.x2f_c01066{left:324.240000pt;}
.x57_c01066{left:325.201333pt;}
.x35_c01066{left:330.841333pt;}
.x22_c01066{left:336.720000pt;}
.x27_c01066{left:340.080000pt;}
.x58_c01066{left:343.201333pt;}
.x61_c01066{left:344.513333pt;}
.x6d_c01066{left:346.261333pt;}
.x78_c01066{left:349.564000pt;}
.xf_c01066{left:352.320000pt;}
.x6a_c01066{left:353.953333pt;}
.x70_c01066{left:356.750667pt;}
.x36_c01066{left:361.754667pt;}
.x23_c01066{left:363.360000pt;}
.x29_c01066{left:365.280000pt;}
.xb_c01066{left:368.400000pt;}
.xa_c01066{left:369.360000pt;}
.x46_c01066{left:371.366667pt;}
.x1b_c01066{left:377.040000pt;}
.x66_c01066{left:377.933333pt;}
.x4f_c01066{left:382.081333pt;}
.x4a_c01066{left:385.817333pt;}
.x41_c01066{left:388.714667pt;}
.x5d_c01066{left:393.601333pt;}
.x1c_c01066{left:395.280000pt;}
.x37_c01066{left:399.388000pt;}
.x47_c01066{left:401.648000pt;}
.x50_c01066{left:411.121333pt;}
.x10_c01066{left:412.560000pt;}
.x28_c01066{left:416.880000pt;}
.x5_c01066{left:419.760000pt;}
.x2a_c01066{left:422.400000pt;}
.x62_c01066{left:426.972000pt;}
.x4b_c01066{left:440.670667pt;}
.x2b_c01066{left:452.400000pt;}
.x42_c01066{left:453.549333pt;}
.x5e_c01066{left:461.281333pt;}
.x11_c01066{left:484.320000pt;}
.x7_c01066{left:488.640000pt;}
.x6_c01066{left:492.720000pt;}
.xc_c01066{left:516.720000pt;}
.x12_c01066{left:536.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_c01067 {
    display:none;
  }
  .loading-indicator_c01067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01067 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01067 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01067" -> "#page-container .classname_c01067")
 */
.pf_c01067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01067 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01067 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01067 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01067 {overflow:visible;}
  }
}
.c_c01067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01067 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01067:after { /* webkit #35443 */
  content: '';
}
.t_c01067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01067 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01067 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01067 { /* info for Javascript */
  display:none;
}
.l_c01067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.000000;font-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_c01067{transform:matrix(0.004785,0.000062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.004785,0.000062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.004785,0.000062,-0.003250,0.249979,0,0);}
.mae_c01067{transform:matrix(0.007819,0.000102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.007819,0.000102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.007819,0.000102,-0.003250,0.249979,0,0);}
.mfd_c01067{transform:matrix(0.008215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008215,0.000000,0.000000,0.250000,0,0);}
.mb3_c01067{transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011959,0.000155,-0.003250,0.249979,0,0);}
.m68_c01067{transform:matrix(0.013779,0.000179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.013779,0.000179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.013779,0.000179,-0.003250,0.249979,0,0);}
.m9_c01067{transform:matrix(0.019963,-0.000539,0.006748,0.249909,0,0);-ms-transform:matrix(0.019963,-0.000539,0.006748,0.249909,0,0);-webkit-transform:matrix(0.019963,-0.000539,0.006748,0.249909,0,0);}
.m37_c01067{transform:matrix(0.023178,0.000301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.023178,0.000301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.023178,0.000301,-0.003250,0.249979,0,0);}
.m73_c01067{transform:matrix(0.024183,0.000314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.024183,0.000314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.024183,0.000314,-0.003250,0.249979,0,0);}
.m9f_c01067{transform:matrix(0.025858,0.000336,-0.003250,0.249979,0,0);-ms-transform:matrix(0.025858,0.000336,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.025858,0.000336,-0.003250,0.249979,0,0);}
.m54_c01067{transform:matrix(0.028973,0.000377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.028973,0.000377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.028973,0.000377,-0.003250,0.249979,0,0);}
.m55_c01067{transform:matrix(0.057940,0.000753,-0.003250,0.249979,0,0);-ms-transform:matrix(0.057940,0.000753,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.057940,0.000753,-0.003250,0.249979,0,0);}
.m4_c01067{transform:matrix(0.065456,-0.001767,0.006748,0.249909,0,0);-ms-transform:matrix(0.065456,-0.001767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.065456,-0.001767,0.006748,0.249909,0,0);}
.me0_c01067{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);}
.mb1_c01067{transform:matrix(0.073694,0.000958,-0.003250,0.249979,0,0);-ms-transform:matrix(0.073694,0.000958,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.073694,0.000958,-0.003250,0.249979,0,0);}
.mb9_c01067{transform:matrix(0.087048,0.001132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.087048,0.001132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.087048,0.001132,-0.003250,0.249979,0,0);}
.me5_c01067{transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098665,0.000000,0.000000,0.250000,0,0);}
.m2d_c01067{transform:matrix(0.115155,0.001497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.115155,0.001497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.115155,0.001497,-0.003250,0.249979,0,0);}
.m93_c01067{transform:matrix(0.129294,0.001681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.129294,0.001681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.129294,0.001681,-0.003250,0.249979,0,0);}
.mb_c01067{transform:matrix(0.133777,-0.000936,0.001750,0.249994,0,0);-ms-transform:matrix(0.133777,-0.000936,0.001750,0.249994,0,0);-webkit-transform:matrix(0.133777,-0.000936,0.001750,0.249994,0,0);}
.med_c01067{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);}
.m10c_c01067{transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144845,0.000000,0.000000,0.250000,0,0);}
.m38_c01067{transform:matrix(0.146863,0.001909,-0.003250,0.249979,0,0);-ms-transform:matrix(0.146863,0.001909,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.146863,0.001909,-0.003250,0.249979,0,0);}
.m10e_c01067{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);}
.mf9_c01067{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);}
.m27_c01067{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m7e_c01067{transform:matrix(0.149892,0.001949,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149892,0.001949,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149892,0.001949,-0.003250,0.249979,0,0);}
.m10a_c01067{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);}
.m23_c01067{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);}
.m103_c01067{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);}
.m20_c01067{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);}
.m78_c01067{transform:matrix(0.160106,0.002081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160106,0.002081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160106,0.002081,-0.003250,0.249979,0,0);}
.m44_c01067{transform:matrix(0.162946,0.002118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162946,0.002118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162946,0.002118,-0.003250,0.249979,0,0);}
.m110_c01067{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);}
.mf1_c01067{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.mf5_c01067{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);}
.m90_c01067{transform:matrix(0.168156,0.002186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168156,0.002186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168156,0.002186,-0.003250,0.249979,0,0);}
.mcb_c01067{transform:matrix(0.169426,0.002203,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169426,0.002203,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169426,0.002203,-0.003250,0.249979,0,0);}
.mf_c01067{transform:matrix(0.170426,-0.001193,0.001750,0.249994,0,0);-ms-transform:matrix(0.170426,-0.001193,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170426,-0.001193,0.001750,0.249994,0,0);}
.m7d_c01067{transform:matrix(0.171476,0.002229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171476,0.002229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171476,0.002229,-0.003250,0.249979,0,0);}
.m7c_c01067{transform:matrix(0.171720,0.002232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171720,0.002232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171720,0.002232,-0.003250,0.249979,0,0);}
.m70_c01067{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);}
.m7a_c01067{transform:matrix(0.173885,0.002261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173885,0.002261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173885,0.002261,-0.003250,0.249979,0,0);}
.md8_c01067{transform:matrix(0.175935,0.002287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175935,0.002287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175935,0.002287,-0.003250,0.249979,0,0);}
.m6e_c01067{transform:matrix(0.175995,0.002288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175995,0.002288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175995,0.002288,-0.003250,0.249979,0,0);}
.mbd_c01067{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);}
.mda_c01067{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);}
.mbc_c01067{transform:matrix(0.177890,0.002313,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177890,0.002313,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177890,0.002313,-0.003250,0.249979,0,0);}
.m3f_c01067{transform:matrix(0.178075,0.002315,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178075,0.002315,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178075,0.002315,-0.003250,0.249979,0,0);}
.mc8_c01067{transform:matrix(0.178800,0.002324,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178800,0.002324,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178800,0.002324,-0.003250,0.249979,0,0);}
.m4e_c01067{transform:matrix(0.180025,0.002340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180025,0.002340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180025,0.002340,-0.003250,0.249979,0,0);}
.m77_c01067{transform:matrix(0.180295,0.002344,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180295,0.002344,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180295,0.002344,-0.003250,0.249979,0,0);}
.ma7_c01067{transform:matrix(0.180565,0.002347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180565,0.002347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180565,0.002347,-0.003250,0.249979,0,0);}
.mee_c01067{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);}
.m6_c01067{transform:matrix(0.181469,-0.004900,0.006748,0.249909,0,0);-ms-transform:matrix(0.181469,-0.004900,0.006748,0.249909,0,0);-webkit-transform:matrix(0.181469,-0.004900,0.006748,0.249909,0,0);}
.m10b_c01067{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);}
.m2a_c01067{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);}
.mc9_c01067{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);}
.mc7_c01067{transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183979,0.002392,-0.003250,0.249979,0,0);}
.maa_c01067{transform:matrix(0.184604,0.002400,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184604,0.002400,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184604,0.002400,-0.003250,0.249979,0,0);}
.ma4_c01067{transform:matrix(0.186699,0.002427,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186699,0.002427,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186699,0.002427,-0.003250,0.249979,0,0);}
.mcc_c01067{transform:matrix(0.188024,0.002444,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188024,0.002444,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188024,0.002444,-0.003250,0.249979,0,0);}
.m88_c01067{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);}
.m4f_c01067{transform:matrix(0.190989,0.002483,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190989,0.002483,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190989,0.002483,-0.003250,0.249979,0,0);}
.mf0_c01067{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);}
.m8f_c01067{transform:matrix(0.192299,0.002500,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192299,0.002500,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192299,0.002500,-0.003250,0.249979,0,0);}
.m51_c01067{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);}
.m49_c01067{transform:matrix(0.192789,0.002506,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192789,0.002506,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192789,0.002506,-0.003250,0.249979,0,0);}
.m6d_c01067{transform:matrix(0.192884,0.002507,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192884,0.002507,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192884,0.002507,-0.003250,0.249979,0,0);}
.me6_c01067{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);}
.mbf_c01067{transform:matrix(0.193769,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193769,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193769,0.002519,-0.003250,0.249979,0,0);}
.m56_c01067{transform:matrix(0.194509,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194509,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194509,0.002529,-0.003250,0.249979,0,0);}
.mb6_c01067{transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195079,0.002536,-0.003250,0.249979,0,0);}
.md6_c01067{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);}
.m79_c01067{transform:matrix(0.196523,0.002555,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196523,0.002555,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196523,0.002555,-0.003250,0.249979,0,0);}
.m28_c01067{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);}
.m3b_c01067{transform:matrix(0.197018,0.002561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197018,0.002561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197018,0.002561,-0.003250,0.249979,0,0);}
.m7b_c01067{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);}
.m6f_c01067{transform:matrix(0.197833,0.002572,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197833,0.002572,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197833,0.002572,-0.003250,0.249979,0,0);}
.mc2_c01067{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);}
.m10d_c01067{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);}
.m5d_c01067{transform:matrix(0.198783,0.002584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198783,0.002584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198783,0.002584,-0.003250,0.249979,0,0);}
.m8d_c01067{transform:matrix(0.198973,0.002587,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198973,0.002587,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198973,0.002587,-0.003250,0.249979,0,0);}
.m24_c01067{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);}
.mc1_c01067{transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);}
.m102_c01067{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);}
.ma8_c01067{transform:matrix(0.200603,0.002608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200603,0.002608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200603,0.002608,-0.003250,0.249979,0,0);}
.md4_c01067{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);}
.mb0_c01067{transform:matrix(0.200838,0.002611,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200838,0.002611,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200838,0.002611,-0.003250,0.249979,0,0);}
.mcd_c01067{transform:matrix(0.201338,0.002617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201338,0.002617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201338,0.002617,-0.003250,0.249979,0,0);}
.md3_c01067{transform:matrix(0.201403,0.002618,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201403,0.002618,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201403,0.002618,-0.003250,0.249979,0,0);}
.m3e_c01067{transform:matrix(0.201538,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201538,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201538,0.002620,-0.003250,0.249979,0,0);}
.m99_c01067{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);}
.m71_c01067{transform:matrix(0.204013,0.002652,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204013,0.002652,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204013,0.002652,-0.003250,0.249979,0,0);}
.m109_c01067{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);}
.m50_c01067{transform:matrix(0.205763,0.002675,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205763,0.002675,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205763,0.002675,-0.003250,0.249979,0,0);}
.mef_c01067{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);}
.m101_c01067{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);}
.m7f_c01067{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);}
.m2e_c01067{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);}
.md9_c01067{transform:matrix(0.206208,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206208,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206208,0.002681,-0.003250,0.249979,0,0);}
.md7_c01067{transform:matrix(0.207927,0.002703,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207927,0.002703,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207927,0.002703,-0.003250,0.249979,0,0);}
.m4b_c01067{transform:matrix(0.208257,0.002707,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208257,0.002707,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208257,0.002707,-0.003250,0.249979,0,0);}
.mbe_c01067{transform:matrix(0.208297,0.002708,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208297,0.002708,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208297,0.002708,-0.003250,0.249979,0,0);}
.mdc_c01067{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);}
.mca_c01067{transform:matrix(0.210447,0.002736,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210447,0.002736,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210447,0.002736,-0.003250,0.249979,0,0);}
.md5_c01067{transform:matrix(0.210702,0.002739,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210702,0.002739,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210702,0.002739,-0.003250,0.249979,0,0);}
.mab_c01067{transform:matrix(0.210907,0.002742,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210907,0.002742,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210907,0.002742,-0.003250,0.249979,0,0);}
.mc3_c01067{transform:matrix(0.210992,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210992,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210992,0.002743,-0.003250,0.249979,0,0);}
.m63_c01067{transform:matrix(0.211437,0.002749,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211437,0.002749,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211437,0.002749,-0.003250,0.249979,0,0);}
.m95_c01067{transform:matrix(0.211452,0.002749,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211452,0.002749,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211452,0.002749,-0.003250,0.249979,0,0);}
.m107_c01067{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);}
.mb8_c01067{transform:matrix(0.213237,0.002772,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213237,0.002772,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213237,0.002772,-0.003250,0.249979,0,0);}
.m8b_c01067{transform:matrix(0.214137,0.002784,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214137,0.002784,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214137,0.002784,-0.003250,0.249979,0,0);}
.mff_c01067{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);}
.m66_c01067{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);}
.mce_c01067{transform:matrix(0.215172,0.002797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215172,0.002797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215172,0.002797,-0.003250,0.249979,0,0);}
.m5c_c01067{transform:matrix(0.215607,0.002803,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215607,0.002803,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215607,0.002803,-0.003250,0.249979,0,0);}
.m4a_c01067{transform:matrix(0.215937,0.002807,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215937,0.002807,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215937,0.002807,-0.003250,0.249979,0,0);}
.m8e_c01067{transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);}
.m1d_c01067{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);}
.mb7_c01067{transform:matrix(0.218267,0.002837,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218267,0.002837,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218267,0.002837,-0.003250,0.249979,0,0);}
.mc_c01067{transform:matrix(0.218680,-0.001531,0.001750,0.249994,0,0);-ms-transform:matrix(0.218680,-0.001531,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218680,-0.001531,0.001750,0.249994,0,0);}
.m94_c01067{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);}
.m9c_c01067{transform:matrix(0.219071,0.002848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219071,0.002848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219071,0.002848,-0.003250,0.249979,0,0);}
.mc4_c01067{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);}
.mc6_c01067{transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);}
.m10f_c01067{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);}
.me4_c01067{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);}
.m26_c01067{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);}
.m47_c01067{transform:matrix(0.223561,0.002906,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223561,0.002906,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223561,0.002906,-0.003250,0.249979,0,0);}
.ma_c01067{transform:matrix(0.223745,-0.001566,0.001750,0.249994,0,0);-ms-transform:matrix(0.223745,-0.001566,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223745,-0.001566,0.001750,0.249994,0,0);}
.m111_c01067{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);}
.md_c01067{transform:matrix(0.224005,-0.001568,0.001750,0.249994,0,0);-ms-transform:matrix(0.224005,-0.001568,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224005,-0.001568,0.001750,0.249994,0,0);}
.me8_c01067{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);}
.m48_c01067{transform:matrix(0.225511,0.002932,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225511,0.002932,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225511,0.002932,-0.003250,0.249979,0,0);}
.m67_c01067{transform:matrix(0.226081,0.002939,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226081,0.002939,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226081,0.002939,-0.003250,0.249979,0,0);}
.m72_c01067{transform:matrix(0.227331,0.002955,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227331,0.002955,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227331,0.002955,-0.003250,0.249979,0,0);}
.mc0_c01067{transform:matrix(0.227366,0.002956,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227366,0.002956,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227366,0.002956,-0.003250,0.249979,0,0);}
.me9_c01067{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);}
.m89_c01067{transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);}
.m98_c01067{transform:matrix(0.228446,0.002970,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228446,0.002970,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228446,0.002970,-0.003250,0.249979,0,0);}
.m8c_c01067{transform:matrix(0.230001,0.002990,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230001,0.002990,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230001,0.002990,-0.003250,0.249979,0,0);}
.m14_c01067{transform:matrix(0.230464,-0.001613,0.001750,0.249994,0,0);-ms-transform:matrix(0.230464,-0.001613,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230464,-0.001613,0.001750,0.249994,0,0);}
.m9b_c01067{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);}
.m9a_c01067{transform:matrix(0.231765,0.003013,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231765,0.003013,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231765,0.003013,-0.003250,0.249979,0,0);}
.me7_c01067{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);}
.meb_c01067{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);}
.maf_c01067{transform:matrix(0.233685,0.003038,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233685,0.003038,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233685,0.003038,-0.003250,0.249979,0,0);}
.mf4_c01067{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.mf2_c01067{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);}
.m4c_c01067{transform:matrix(0.236480,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236480,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236480,0.003074,-0.003250,0.249979,0,0);}
.m25_c01067{transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237265,0.000000,0.000000,0.250000,0,0);}
.m1c_c01067{transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);}
.me3_c01067{transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);}
.m42_c01067{transform:matrix(0.241885,0.003144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241885,0.003144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241885,0.003144,-0.003250,0.249979,0,0);}
.m83_c01067{transform:matrix(0.243254,0.003162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243254,0.003162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243254,0.003162,-0.003250,0.249979,0,0);}
.m18_c01067{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.m1a_c01067{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);}
.m96_c01067{transform:matrix(0.244744,0.003182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244744,0.003182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244744,0.003182,-0.003250,0.249979,0,0);}
.ma9_c01067{transform:matrix(0.248169,0.003226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248169,0.003226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248169,0.003226,-0.003250,0.249979,0,0);}
.m69_c01067{transform:matrix(0.248384,0.003229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248384,0.003229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248384,0.003229,-0.003250,0.249979,0,0);}
.mdb_c01067{transform:matrix(0.249159,0.003239,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249159,0.003239,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249159,0.003239,-0.003250,0.249979,0,0);}
.m58_c01067{transform:matrix(0.252009,0.003276,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252009,0.003276,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252009,0.003276,-0.003250,0.249979,0,0);}
.m60_c01067{transform:matrix(0.252589,0.003284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252589,0.003284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252589,0.003284,-0.003250,0.249979,0,0);}
.m9e_c01067{transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);}
.m40_c01067{transform:matrix(0.254024,0.003302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254024,0.003302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254024,0.003302,-0.003250,0.249979,0,0);}
.m97_c01067{transform:matrix(0.255743,0.003325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255743,0.003325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255743,0.003325,-0.003250,0.249979,0,0);}
.ma1_c01067{transform:matrix(0.262728,0.003415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262728,0.003415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262728,0.003415,-0.003250,0.249979,0,0);}
.mac_c01067{transform:matrix(0.263233,0.003422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263233,0.003422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263233,0.003422,-0.003250,0.249979,0,0);}
.m3d_c01067{transform:matrix(0.263393,0.003424,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263393,0.003424,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263393,0.003424,-0.003250,0.249979,0,0);}
.mea_c01067{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);}
.m13_c01067{transform:matrix(0.263884,-0.001847,0.001750,0.249994,0,0);-ms-transform:matrix(0.263884,-0.001847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263884,-0.001847,0.001750,0.249994,0,0);}
.m6c_c01067{transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);}
.m112_c01067{transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265185,0.000000,0.000000,0.250000,0,0);}
.m91_c01067{transform:matrix(0.268227,0.003487,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268227,0.003487,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268227,0.003487,-0.003250,0.249979,0,0);}
.mfc_c01067{transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);}
.m105_c01067{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m45_c01067{transform:matrix(0.271827,0.003534,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271827,0.003534,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271827,0.003534,-0.003250,0.249979,0,0);}
.me_c01067{transform:matrix(0.273308,-0.001913,0.001750,0.249994,0,0);-ms-transform:matrix(0.273308,-0.001913,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273308,-0.001913,0.001750,0.249994,0,0);}
.m57_c01067{transform:matrix(0.273997,0.003562,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273997,0.003562,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273997,0.003562,-0.003250,0.249979,0,0);}
.m80_c01067{transform:matrix(0.276322,0.003592,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276322,0.003592,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276322,0.003592,-0.003250,0.249979,0,0);}
.m74_c01067{transform:matrix(0.282506,0.003673,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282506,0.003673,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282506,0.003673,-0.003250,0.249979,0,0);}
.ma0_c01067{transform:matrix(0.287261,0.003734,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287261,0.003734,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287261,0.003734,-0.003250,0.249979,0,0);}
.ma2_c01067{transform:matrix(0.288186,0.003746,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288186,0.003746,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288186,0.003746,-0.003250,0.249979,0,0);}
.m8_c01067{transform:matrix(0.290819,-0.007852,0.006748,0.249909,0,0);-ms-transform:matrix(0.290819,-0.007852,0.006748,0.249909,0,0);-webkit-transform:matrix(0.290819,-0.007852,0.006748,0.249909,0,0);}
.m11_c01067{transform:matrix(0.291993,-0.002044,0.001750,0.249994,0,0);-ms-transform:matrix(0.291993,-0.002044,0.001750,0.249994,0,0);-webkit-transform:matrix(0.291993,-0.002044,0.001750,0.249994,0,0);}
.m1b_c01067{transform:matrix(0.292820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292820,0.000000,0.000000,0.250000,0,0);}
.mad_c01067{transform:matrix(0.294710,0.003831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294710,0.003831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294710,0.003831,-0.003250,0.249979,0,0);}
.m15_c01067{transform:matrix(0.296943,-0.002079,0.001750,0.249994,0,0);-ms-transform:matrix(0.296943,-0.002079,0.001750,0.249994,0,0);-webkit-transform:matrix(0.296943,-0.002079,0.001750,0.249994,0,0);}
.mbb_c01067{transform:matrix(0.297345,0.003865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297345,0.003865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297345,0.003865,-0.003250,0.249979,0,0);}
.m86_c01067{transform:matrix(0.299645,0.003895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.299645,0.003895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.299645,0.003895,-0.003250,0.249979,0,0);}
.m61_c01067{transform:matrix(0.300535,0.003907,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300535,0.003907,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300535,0.003907,-0.003250,0.249979,0,0);}
.ma5_c01067{transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);}
.m64_c01067{transform:matrix(0.304714,0.003961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304714,0.003961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304714,0.003961,-0.003250,0.249979,0,0);}
.m1_c01067{transform:matrix(0.305089,-0.008237,0.006748,0.249909,0,0);-ms-transform:matrix(0.305089,-0.008237,0.006748,0.249909,0,0);-webkit-transform:matrix(0.305089,-0.008237,0.006748,0.249909,0,0);}
.m5f_c01067{transform:matrix(0.309934,0.004029,-0.003250,0.249979,0,0);-ms-transform:matrix(0.309934,0.004029,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.309934,0.004029,-0.003250,0.249979,0,0);}
.m104_c01067{transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314130,0.000000,0.000000,0.250000,0,0);}
.md2_c01067{transform:matrix(0.315183,0.004097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.315183,0.004097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.315183,0.004097,-0.003250,0.249979,0,0);}
.m87_c01067{transform:matrix(0.316223,0.004111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316223,0.004111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316223,0.004111,-0.003250,0.249979,0,0);}
.m19_c01067{transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319030,0.000000,0.000000,0.250000,0,0);}
.m5b_c01067{transform:matrix(0.323413,0.004204,-0.003250,0.249979,0,0);-ms-transform:matrix(0.323413,0.004204,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.323413,0.004204,-0.003250,0.249979,0,0);}
.m4d_c01067{transform:matrix(0.325278,0.004229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.325278,0.004229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.325278,0.004229,-0.003250,0.249979,0,0);}
.m62_c01067{transform:matrix(0.327427,0.004257,-0.003250,0.249979,0,0);-ms-transform:matrix(0.327427,0.004257,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.327427,0.004257,-0.003250,0.249979,0,0);}
.m1e_c01067{transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);}
.m100_c01067{transform:matrix(0.330690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330690,0.000000,0.000000,0.250000,0,0);}
.mf3_c01067{transform:matrix(0.336030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336030,0.000000,0.000000,0.250000,0,0);}
.mba_c01067{transform:matrix(0.337391,0.004386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.337391,0.004386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.337391,0.004386,-0.003250,0.249979,0,0);}
.m82_c01067{transform:matrix(0.342256,0.004449,-0.003250,0.249979,0,0);-ms-transform:matrix(0.342256,0.004449,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.342256,0.004449,-0.003250,0.249979,0,0);}
.m84_c01067{transform:matrix(0.345211,0.004488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.345211,0.004488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.345211,0.004488,-0.003250,0.249979,0,0);}
.ma3_c01067{transform:matrix(0.349056,0.004538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.349056,0.004538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.349056,0.004538,-0.003250,0.249979,0,0);}
.m43_c01067{transform:matrix(0.351015,0.004563,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351015,0.004563,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351015,0.004563,-0.003250,0.249979,0,0);}
.m1f_c01067{transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351310,0.000000,0.000000,0.250000,0,0);}
.m3c_c01067{transform:matrix(0.356385,0.004633,-0.003250,0.249979,0,0);-ms-transform:matrix(0.356385,0.004633,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.356385,0.004633,-0.003250,0.249979,0,0);}
.m2c_c01067{transform:matrix(0.360010,0.004680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.360010,0.004680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.360010,0.004680,-0.003250,0.249979,0,0);}
.mf8_c01067{transform:matrix(0.363625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363625,0.000000,0.000000,0.250000,0,0);}
.m8a_c01067{transform:matrix(0.365674,0.004754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.365674,0.004754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.365674,0.004754,-0.003250,0.249979,0,0);}
.mdf_c01067{transform:matrix(0.370950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370950,0.000000,0.000000,0.250000,0,0);}
.md1_c01067{transform:matrix(0.372489,0.004842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.372489,0.004842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.372489,0.004842,-0.003250,0.249979,0,0);}
.mc5_c01067{transform:matrix(0.380728,0.004949,-0.003250,0.249979,0,0);-ms-transform:matrix(0.380728,0.004949,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.380728,0.004949,-0.003250,0.249979,0,0);}
.md0_c01067{transform:matrix(0.381163,0.004955,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381163,0.004955,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381163,0.004955,-0.003250,0.249979,0,0);}
.mec_c01067{transform:matrix(0.386910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386910,0.000000,0.000000,0.250000,0,0);}
.m12_c01067{transform:matrix(0.388100,-0.002717,0.001750,0.249994,0,0);-ms-transform:matrix(0.388100,-0.002717,0.001750,0.249994,0,0);-webkit-transform:matrix(0.388100,-0.002717,0.001750,0.249994,0,0);}
.mb4_c01067{transform:matrix(0.392122,0.005098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.392122,0.005098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.392122,0.005098,-0.003250,0.249979,0,0);}
.m53_c01067{transform:matrix(0.405026,0.005265,-0.003250,0.249979,0,0);-ms-transform:matrix(0.405026,0.005265,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.405026,0.005265,-0.003250,0.249979,0,0);}
.m2b_c01067{transform:matrix(0.407085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407085,0.000000,0.000000,0.250000,0,0);}
.m0_c01067{transform:matrix(0.409551,-0.011058,0.006748,0.249909,0,0);-ms-transform:matrix(0.409551,-0.011058,0.006748,0.249909,0,0);-webkit-transform:matrix(0.409551,-0.011058,0.006748,0.249909,0,0);}
.m39_c01067{transform:matrix(0.409625,0.005325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.409625,0.005325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.409625,0.005325,-0.003250,0.249979,0,0);}
.m76_c01067{transform:matrix(0.413360,0.005374,-0.003250,0.249979,0,0);-ms-transform:matrix(0.413360,0.005374,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.413360,0.005374,-0.003250,0.249979,0,0);}
.m6a_c01067{transform:matrix(0.417300,0.005425,-0.003250,0.249979,0,0);-ms-transform:matrix(0.417300,0.005425,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.417300,0.005425,-0.003250,0.249979,0,0);}
.mb2_c01067{transform:matrix(0.420184,0.005462,-0.003250,0.249979,0,0);-ms-transform:matrix(0.420184,0.005462,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.420184,0.005462,-0.003250,0.249979,0,0);}
.mdd_c01067{transform:matrix(0.421450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421450,0.000000,0.000000,0.250000,0,0);}
.m2_c01067{transform:matrix(0.429014,-0.011583,0.006748,0.249909,0,0);-ms-transform:matrix(0.429014,-0.011583,0.006748,0.249909,0,0);-webkit-transform:matrix(0.429014,-0.011583,0.006748,0.249909,0,0);}
.m17_c01067{transform:matrix(0.435165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435165,0.000000,0.000000,0.250000,0,0);}
.m6b_c01067{transform:matrix(0.454387,0.005907,-0.003250,0.249979,0,0);-ms-transform:matrix(0.454387,0.005907,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.454387,0.005907,-0.003250,0.249979,0,0);}
.mb5_c01067{transform:matrix(0.458106,0.005955,-0.003250,0.249979,0,0);-ms-transform:matrix(0.458106,0.005955,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.458106,0.005955,-0.003250,0.249979,0,0);}
.m92_c01067{transform:matrix(0.465481,0.006051,-0.003250,0.249979,0,0);-ms-transform:matrix(0.465481,0.006051,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.465481,0.006051,-0.003250,0.249979,0,0);}
.m65_c01067{transform:matrix(0.467795,0.006081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.467795,0.006081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.467795,0.006081,-0.003250,0.249979,0,0);}
.mf7_c01067{transform:matrix(0.469800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469800,0.000000,0.000000,0.250000,0,0);}
.mfe_c01067{transform:matrix(0.473305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473305,0.000000,0.000000,0.250000,0,0);}
.m46_c01067{transform:matrix(0.475200,0.006178,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475200,0.006178,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475200,0.006178,-0.003250,0.249979,0,0);}
.m2f_c01067{transform:matrix(0.482144,0.006268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.482144,0.006268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.482144,0.006268,-0.003250,0.249979,0,0);}
.m35_c01067{transform:matrix(0.488064,0.006345,-0.003250,0.249979,0,0);-ms-transform:matrix(0.488064,0.006345,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.488064,0.006345,-0.003250,0.249979,0,0);}
.m113_c01067{transform:matrix(0.500035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500035,0.000000,0.000000,0.250000,0,0);}
.mcf_c01067{transform:matrix(0.505217,0.006568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.505217,0.006568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.505217,0.006568,-0.003250,0.249979,0,0);}
.m106_c01067{transform:matrix(0.515660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515660,0.000000,0.000000,0.250000,0,0);}
.m3_c01067{transform:matrix(0.529807,-0.014305,0.006748,0.249909,0,0);-ms-transform:matrix(0.529807,-0.014305,0.006748,0.249909,0,0);-webkit-transform:matrix(0.529807,-0.014305,0.006748,0.249909,0,0);}
.m32_c01067{transform:matrix(0.530365,0.006895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.530365,0.006895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.530365,0.006895,-0.003250,0.249979,0,0);}
.m22_c01067{transform:matrix(0.534030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534030,0.000000,0.000000,0.250000,0,0);}
.m5_c01067{transform:matrix(0.541133,-0.014611,0.006748,0.249909,0,0);-ms-transform:matrix(0.541133,-0.014611,0.006748,0.249909,0,0);-webkit-transform:matrix(0.541133,-0.014611,0.006748,0.249909,0,0);}
.m9d_c01067{transform:matrix(0.542279,0.007050,-0.003250,0.249979,0,0);-ms-transform:matrix(0.542279,0.007050,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.542279,0.007050,-0.003250,0.249979,0,0);}
.m10_c01067{transform:matrix(0.544967,-0.003815,0.001750,0.249994,0,0);-ms-transform:matrix(0.544967,-0.003815,0.001750,0.249994,0,0);-webkit-transform:matrix(0.544967,-0.003815,0.001750,0.249994,0,0);}
.m5e_c01067{transform:matrix(0.545704,0.007094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.545704,0.007094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.545704,0.007094,-0.003250,0.249979,0,0);}
.m29_c01067{transform:matrix(0.575130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575130,0.000000,0.000000,0.250000,0,0);}
.mde_c01067{transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583260,0.000000,0.000000,0.250000,0,0);}
.mfb_c01067{transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);}
.m36_c01067{transform:matrix(0.596590,0.007756,-0.003250,0.249979,0,0);-ms-transform:matrix(0.596590,0.007756,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.596590,0.007756,-0.003250,0.249979,0,0);}
.m31_c01067{transform:matrix(0.599719,0.007796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.599719,0.007796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.599719,0.007796,-0.003250,0.249979,0,0);}
.m30_c01067{transform:matrix(0.603384,0.007844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.603384,0.007844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.603384,0.007844,-0.003250,0.249979,0,0);}
.m41_c01067{transform:matrix(0.621987,0.008086,-0.003250,0.249979,0,0);-ms-transform:matrix(0.621987,0.008086,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.621987,0.008086,-0.003250,0.249979,0,0);}
.m16_c01067{transform:matrix(0.632745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632745,0.000000,0.000000,0.250000,0,0);}
.ma6_c01067{transform:matrix(0.661074,0.008594,-0.003250,0.249979,0,0);-ms-transform:matrix(0.661074,0.008594,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.661074,0.008594,-0.003250,0.249979,0,0);}
.m33_c01067{transform:matrix(0.661459,0.008599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.661459,0.008599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.661459,0.008599,-0.003250,0.249979,0,0);}
.mf6_c01067{transform:matrix(0.684420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684420,0.000000,0.000000,0.250000,0,0);}
.m21_c01067{transform:matrix(0.705880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705880,0.000000,0.000000,0.250000,0,0);}
.m5a_c01067{transform:matrix(0.713745,0.009279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.713745,0.009279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.713745,0.009279,-0.003250,0.249979,0,0);}
.m75_c01067{transform:matrix(0.714040,0.009283,-0.003250,0.249979,0,0);-ms-transform:matrix(0.714040,0.009283,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.714040,0.009283,-0.003250,0.249979,0,0);}
.m3a_c01067{transform:matrix(0.743702,0.009668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.743702,0.009668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.743702,0.009668,-0.003250,0.249979,0,0);}
.m52_c01067{transform:matrix(0.845739,0.010995,-0.003250,0.249979,0,0);-ms-transform:matrix(0.845739,0.010995,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.845739,0.010995,-0.003250,0.249979,0,0);}
.me1_c01067{transform:matrix(0.895475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895475,0.000000,0.000000,0.250000,0,0);}
.m34_c01067{transform:matrix(0.930406,0.012095,-0.003250,0.249979,0,0);-ms-transform:matrix(0.930406,0.012095,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.930406,0.012095,-0.003250,0.249979,0,0);}
.m81_c01067{transform:matrix(0.945605,0.012293,-0.003250,0.249979,0,0);-ms-transform:matrix(0.945605,0.012293,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.945605,0.012293,-0.003250,0.249979,0,0);}
.me2_c01067{transform:matrix(0.970220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970220,0.000000,0.000000,0.250000,0,0);}
.m85_c01067{transform:matrix(1.176221,0.015291,-0.003250,0.249979,0,0);-ms-transform:matrix(1.176221,0.015291,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.176221,0.015291,-0.003250,0.249979,0,0);}
.m7_c01067{transform:matrix(1.315496,-0.035518,0.006748,0.249909,0,0);-ms-transform:matrix(1.315496,-0.035518,0.006748,0.249909,0,0);-webkit-transform:matrix(1.315496,-0.035518,0.006748,0.249909,0,0);}
.mfa_c01067{transform:matrix(1.346685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.346685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.346685,0.000000,0.000000,0.250000,0,0);}
.m108_c01067{transform:matrix(1.712095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.712095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.712095,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls0_c01067{letter-spacing:0.000000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:0.000000px;}
.fc0_c01067{color:transparent;}
.fsb_c01067{font-size:33.602839px;}
.fs19_c01067{font-size:39.900000px;}
.fs8_c01067{font-size:42.003549px;}
.fs11_c01067{font-size:43.053638px;}
.fs0_c01067{font-size:43.065689px;}
.fs15_c01067{font-size:46.200000px;}
.fsf_c01067{font-size:51.454347px;}
.fs7_c01067{font-size:58.804968px;}
.fsd_c01067{font-size:61.955235px;}
.fs17_c01067{font-size:63.000000px;}
.fs16_c01067{font-size:64.050000px;}
.fsa_c01067{font-size:65.105501px;}
.fs18_c01067{font-size:66.150000px;}
.fs9_c01067{font-size:66.155589px;}
.fs14_c01067{font-size:67.205678px;}
.fs1b_c01067{font-size:70.350000px;}
.fse_c01067{font-size:70.355944px;}
.fs1c_c01067{font-size:71.400000px;}
.fs10_c01067{font-size:71.406033px;}
.fs6_c01067{font-size:76.650000px;}
.fs4_c01067{font-size:92.400000px;}
.fs3_c01067{font-size:96.602367px;}
.fs5_c01067{font-size:98.700000px;}
.fs12_c01067{font-size:100.808517px;}
.fs1a_c01067{font-size:103.950000px;}
.fs13_c01067{font-size:109.209227px;}
.fsc_c01067{font-size:119.710114px;}
.fs1_c01067{font-size:131.297832px;}
.fs2_c01067{font-size:142.803499px;}
.y0_c01067{bottom:0.000000px;}
.yed_c01067{bottom:143.908500px;}
.yee_c01067{bottom:144.933000px;}
.yef_c01067{bottom:145.191000px;}
.yf0_c01067{bottom:145.455000px;}
.yf1_c01067{bottom:146.367000px;}
.yf2_c01067{bottom:146.599500px;}
.yf3_c01067{bottom:147.021000px;}
.yf4_c01067{bottom:147.505500px;}
.yf5_c01067{bottom:147.972000px;}
.yf6_c01067{bottom:148.123500px;}
.yf7_c01067{bottom:149.094000px;}
.yf8_c01067{bottom:150.039000px;}
.yec_c01067{bottom:169.560000px;}
.ye8_c01067{bottom:190.351500px;}
.ye9_c01067{bottom:192.370500px;}
.yea_c01067{bottom:194.592000px;}
.yeb_c01067{bottom:194.824500px;}
.ye6_c01067{bottom:215.247000px;}
.ye7_c01067{bottom:216.000000px;}
.ydb_c01067{bottom:236.563500px;}
.ydc_c01067{bottom:237.358500px;}
.ydd_c01067{bottom:237.825000px;}
.yde_c01067{bottom:238.231500px;}
.ydf_c01067{bottom:238.348500px;}
.ye0_c01067{bottom:238.716000px;}
.ye1_c01067{bottom:239.037000px;}
.ye2_c01067{bottom:239.275500px;}
.ye3_c01067{bottom:239.713500px;}
.ye4_c01067{bottom:240.289500px;}
.ye5_c01067{bottom:241.555500px;}
.yd6_c01067{bottom:257.311500px;}
.yd7_c01067{bottom:259.519500px;}
.yd8_c01067{bottom:260.343000px;}
.yd9_c01067{bottom:262.197000px;}
.yda_c01067{bottom:262.902000px;}
.ycc_c01067{bottom:284.816551px;}
.yd1_c01067{bottom:284.816736px;}
.ycd_c01067{bottom:284.816790px;}
.yca_c01067{bottom:284.816824px;}
.yc9_c01067{bottom:284.816925px;}
.yce_c01067{bottom:284.816988px;}
.ycb_c01067{bottom:284.817082px;}
.yd0_c01067{bottom:284.817166px;}
.ycf_c01067{bottom:284.817297px;}
.yd2_c01067{bottom:284.817475px;}
.yd3_c01067{bottom:284.818084px;}
.yd4_c01067{bottom:284.818740px;}
.yd5_c01067{bottom:287.280000px;}
.yc0_c01067{bottom:307.581382px;}
.yc1_c01067{bottom:307.581561px;}
.ybe_c01067{bottom:307.581786px;}
.yc2_c01067{bottom:307.581840px;}
.yc6_c01067{bottom:307.581915px;}
.ybf_c01067{bottom:307.581973px;}
.yc7_c01067{bottom:307.582063px;}
.yc5_c01067{bottom:307.582456px;}
.yc3_c01067{bottom:307.582509px;}
.yc8_c01067{bottom:307.582600px;}
.yc4_c01067{bottom:307.582627px;}
.yb4_c01067{bottom:328.562749px;}
.yb5_c01067{bottom:329.095596px;}
.yb6_c01067{bottom:329.336496px;}
.yb7_c01067{bottom:329.489283px;}
.yb8_c01067{bottom:329.740350px;}
.yb9_c01067{bottom:329.891949px;}
.yba_c01067{bottom:330.321208px;}
.ybb_c01067{bottom:330.653373px;}
.ybc_c01067{bottom:330.857652px;}
.ybd_c01067{bottom:331.909873px;}
.yac_c01067{bottom:354.016894px;}
.yad_c01067{bottom:354.017454px;}
.yaf_c01067{bottom:354.017995px;}
.yae_c01067{bottom:354.017997px;}
.yb0_c01067{bottom:354.018684px;}
.yb1_c01067{bottom:354.018982px;}
.yb3_c01067{bottom:354.019518px;}
.yb2_c01067{bottom:354.019590px;}
.yab_c01067{bottom:376.378651px;}
.yaa_c01067{bottom:376.378707px;}
.ya8_c01067{bottom:376.378900px;}
.ya7_c01067{bottom:376.378992px;}
.ya9_c01067{bottom:376.379158px;}
.ya6_c01067{bottom:376.379467px;}
.y9f_c01067{bottom:399.405544px;}
.ya1_c01067{bottom:399.405813px;}
.ya2_c01067{bottom:399.405862px;}
.y9e_c01067{bottom:399.405927px;}
.ya0_c01067{bottom:399.405943px;}
.ya3_c01067{bottom:399.406422px;}
.ya4_c01067{bottom:399.406495px;}
.ya5_c01067{bottom:399.407142px;}
.y99_c01067{bottom:422.257590px;}
.y9a_c01067{bottom:422.934588px;}
.y9b_c01067{bottom:423.577461px;}
.y9c_c01067{bottom:425.262906px;}
.y9d_c01067{bottom:426.191730px;}
.y98_c01067{bottom:441.717337px;}
.y97_c01067{bottom:441.717940px;}
.y96_c01067{bottom:441.718063px;}
.y8a_c01067{bottom:448.179902px;}
.y8b_c01067{bottom:448.520589px;}
.y8c_c01067{bottom:448.830398px;}
.y8d_c01067{bottom:449.144776px;}
.y8e_c01067{bottom:449.471988px;}
.y8f_c01067{bottom:449.958973px;}
.y90_c01067{bottom:450.189039px;}
.y91_c01067{bottom:450.341619px;}
.y92_c01067{bottom:450.515958px;}
.y93_c01067{bottom:450.680419px;}
.y94_c01067{bottom:450.970104px;}
.y95_c01067{bottom:452.216611px;}
.y82_c01067{bottom:473.325681px;}
.y85_c01067{bottom:473.325767px;}
.y83_c01067{bottom:473.325988px;}
.y86_c01067{bottom:473.326346px;}
.y84_c01067{bottom:473.326407px;}
.y81_c01067{bottom:473.326422px;}
.y80_c01067{bottom:473.326443px;}
.y89_c01067{bottom:473.326452px;}
.y87_c01067{bottom:473.326614px;}
.y88_c01067{bottom:473.326803px;}
.y7f_c01067{bottom:473.327083px;}
.y7e_c01067{bottom:473.327286px;}
.y79_c01067{bottom:495.679730px;}
.y7d_c01067{bottom:495.679903px;}
.y7c_c01067{bottom:495.680093px;}
.y7a_c01067{bottom:495.680295px;}
.y7b_c01067{bottom:495.680724px;}
.y6e_c01067{bottom:514.878200px;}
.y6f_c01067{bottom:516.174362px;}
.y70_c01067{bottom:516.847471px;}
.y71_c01067{bottom:517.402599px;}
.y72_c01067{bottom:518.030322px;}
.y73_c01067{bottom:518.628054px;}
.y74_c01067{bottom:518.922190px;}
.y75_c01067{bottom:519.316793px;}
.y76_c01067{bottom:520.122209px;}
.y77_c01067{bottom:521.272674px;}
.y78_c01067{bottom:522.790358px;}
.y63_c01067{bottom:538.365365px;}
.y64_c01067{bottom:538.918500px;}
.y65_c01067{bottom:539.066142px;}
.y66_c01067{bottom:539.312988px;}
.y67_c01067{bottom:539.513909px;}
.y68_c01067{bottom:540.017288px;}
.y69_c01067{bottom:540.376836px;}
.y6a_c01067{bottom:540.640290px;}
.y6b_c01067{bottom:541.433799px;}
.y6c_c01067{bottom:541.738397px;}
.y6d_c01067{bottom:542.212415px;}
.y62_c01067{bottom:563.602350px;}
.y5a_c01067{bottom:563.602551px;}
.y5f_c01067{bottom:563.602566px;}
.y57_c01067{bottom:563.602686px;}
.y5b_c01067{bottom:563.602840px;}
.y58_c01067{bottom:563.602854px;}
.y61_c01067{bottom:563.602901px;}
.y5c_c01067{bottom:563.603139px;}
.y5e_c01067{bottom:563.603168px;}
.y56_c01067{bottom:563.603177px;}
.y59_c01067{bottom:563.603213px;}
.y60_c01067{bottom:563.603303px;}
.y5d_c01067{bottom:563.603728px;}
.y4f_c01067{bottom:587.012625px;}
.y55_c01067{bottom:587.012889px;}
.y50_c01067{bottom:587.013332px;}
.y54_c01067{bottom:587.013405px;}
.y51_c01067{bottom:587.013519px;}
.y53_c01067{bottom:587.013527px;}
.y52_c01067{bottom:587.014188px;}
.y4d_c01067{bottom:604.774968px;}
.y4e_c01067{bottom:604.775082px;}
.y4b_c01067{bottom:604.775318px;}
.y4c_c01067{bottom:604.775608px;}
.y45_c01067{bottom:616.620428px;}
.y44_c01067{bottom:616.620709px;}
.y4a_c01067{bottom:616.620821px;}
.y46_c01067{bottom:616.620957px;}
.y49_c01067{bottom:616.621114px;}
.y43_c01067{bottom:616.621300px;}
.y42_c01067{bottom:616.621351px;}
.y41_c01067{bottom:616.621433px;}
.y48_c01067{bottom:616.621586px;}
.y47_c01067{bottom:616.621666px;}
.y3e_c01067{bottom:616.621676px;}
.y40_c01067{bottom:616.621833px;}
.y3f_c01067{bottom:616.622145px;}
.y32_c01067{bottom:635.308231px;}
.y33_c01067{bottom:635.961098px;}
.y34_c01067{bottom:636.464126px;}
.y35_c01067{bottom:636.599750px;}
.y36_c01067{bottom:636.842415px;}
.y37_c01067{bottom:637.180125px;}
.y38_c01067{bottom:637.527480px;}
.y39_c01067{bottom:637.675491px;}
.y3a_c01067{bottom:638.112447px;}
.y3b_c01067{bottom:638.376542px;}
.y3c_c01067{bottom:638.415060px;}
.y3d_c01067{bottom:639.252630px;}
.y27_c01067{bottom:659.019312px;}
.y28_c01067{bottom:659.019407px;}
.y29_c01067{bottom:659.019955px;}
.y2a_c01067{bottom:659.020005px;}
.y2c_c01067{bottom:659.020393px;}
.y2f_c01067{bottom:659.020408px;}
.y30_c01067{bottom:659.020548px;}
.y2d_c01067{bottom:659.020662px;}
.y2b_c01067{bottom:659.020685px;}
.y31_c01067{bottom:659.020806px;}
.y2e_c01067{bottom:659.020840px;}
.y26_c01067{bottom:678.408583px;}
.y25_c01067{bottom:680.477748px;}
.y24_c01067{bottom:685.800000px;}
.y19_c01067{bottom:689.050500px;}
.y1a_c01067{bottom:689.838000px;}
.y1b_c01067{bottom:690.408000px;}
.y1c_c01067{bottom:690.792000px;}
.y1d_c01067{bottom:691.269000px;}
.y1e_c01067{bottom:691.383000px;}
.y1f_c01067{bottom:691.566000px;}
.y20_c01067{bottom:691.876500px;}
.y21_c01067{bottom:692.076000px;}
.y22_c01067{bottom:693.045000px;}
.y23_c01067{bottom:694.075500px;}
.y18_c01067{bottom:715.413000px;}
.y17_c01067{bottom:754.902000px;}
.y11_c01067{bottom:795.690703px;}
.y12_c01067{bottom:797.169384px;}
.y13_c01067{bottom:797.782006px;}
.y14_c01067{bottom:798.580722px;}
.y15_c01067{bottom:798.902191px;}
.y16_c01067{bottom:800.758998px;}
.yb_c01067{bottom:861.571500px;}
.yc_c01067{bottom:861.946948px;}
.yd_c01067{bottom:862.697404px;}
.ye_c01067{bottom:863.642583px;}
.yf_c01067{bottom:864.563475px;}
.y10_c01067{bottom:865.476083px;}
.y8_c01067{bottom:902.882290px;}
.y9_c01067{bottom:905.274638px;}
.ya_c01067{bottom:907.400326px;}
.y1_c01067{bottom:920.410500px;}
.y2_c01067{bottom:922.259730px;}
.y3_c01067{bottom:923.762280px;}
.y4_c01067{bottom:925.455301px;}
.y5_c01067{bottom:926.855265px;}
.y6_c01067{bottom:927.091785px;}
.y7_c01067{bottom:928.350322px;}
.hd_c01067{height:33.602839px;}
.h1b_c01067{height:39.900000px;}
.ha_c01067{height:42.003549px;}
.h13_c01067{height:43.053638px;}
.h2_c01067{height:43.065689px;}
.h17_c01067{height:46.200000px;}
.h11_c01067{height:51.454347px;}
.h9_c01067{height:58.804968px;}
.hf_c01067{height:61.955235px;}
.h19_c01067{height:63.000000px;}
.h18_c01067{height:64.050000px;}
.hc_c01067{height:65.105501px;}
.h1a_c01067{height:66.150000px;}
.hb_c01067{height:66.155589px;}
.h16_c01067{height:67.205678px;}
.h1d_c01067{height:70.350000px;}
.h10_c01067{height:70.355944px;}
.h1e_c01067{height:71.400000px;}
.h12_c01067{height:71.406033px;}
.h8_c01067{height:76.650000px;}
.h6_c01067{height:92.400000px;}
.h5_c01067{height:96.602367px;}
.h7_c01067{height:98.700000px;}
.h14_c01067{height:100.808517px;}
.h1c_c01067{height:103.950000px;}
.h15_c01067{height:109.209227px;}
.he_c01067{height:119.710114px;}
.h3_c01067{height:131.297832px;}
.h4_c01067{height:142.803499px;}
.h0_c01067{height:1008.450000px;}
.h1_c01067{height:1008.750000px;}
.w1_c01067{width:700.500000px;}
.w0_c01067{width:700.650000px;}
.x0_c01067{left:0.000000px;}
.x1_c01067{left:57.612000px;}
.x8_c01067{left:58.837310px;}
.x27_c01067{left:59.890500px;}
.x2a_c01067{left:61.018600px;}
.x7b_c01067{left:62.371632px;}
.xb_c01067{left:63.378000px;}
.x15_c01067{left:65.070000px;}
.x1e_c01067{left:66.100500px;}
.x97_c01067{left:67.500000px;}
.x47_c01067{left:69.391462px;}
.x4e_c01067{left:73.982584px;}
.x3c_c01067{left:75.328948px;}
.x8c_c01067{left:80.195531px;}
.x6f_c01067{left:109.461765px;}
.xc_c01067{left:117.013500px;}
.x2_c01067{left:126.102000px;}
.x98_c01067{left:144.450000px;}
.x4f_c01067{left:152.559864px;}
.x1f_c01067{left:153.634500px;}
.x65_c01067{left:154.715342px;}
.x81_c01067{left:155.878346px;}
.x90_c01067{left:158.620500px;}
.x76_c01067{left:159.714695px;}
.x66_c01067{left:172.536845px;}
.x55_c01067{left:175.068744px;}
.x3d_c01067{left:178.208823px;}
.x4a_c01067{left:180.101302px;}
.x3_c01067{left:181.752000px;}
.x9b_c01067{left:183.169500px;}
.x82_c01067{left:196.088271px;}
.x50_c01067{left:198.463125px;}
.x9_c01067{left:199.536258px;}
.x67_c01067{left:201.158681px;}
.x5c_c01067{left:202.413071px;}
.x9c_c01067{left:207.190500px;}
.x56_c01067{left:210.435928px;}
.x20_c01067{left:216.921000px;}
.x3e_c01067{left:221.953213px;}
.x16_c01067{left:223.020000px;}
.xd_c01067{left:224.221500px;}
.x35_c01067{left:225.613744px;}
.x1c_c01067{left:233.010000px;}
.x68_c01067{left:235.721511px;}
.x57_c01067{left:239.064877px;}
.x5d_c01067{left:242.109494px;}
.x78_c01067{left:243.286494px;}
.x4_c01067{left:244.456500px;}
.x99_c01067{left:246.510000px;}
.x8d_c01067{left:247.880364px;}
.x86_c01067{left:250.309667px;}
.x77_c01067{left:251.517563px;}
.x2b_c01067{left:253.274587px;}
.x63_c01067{left:255.704454px;}
.x21_c01067{left:259.590000px;}
.x83_c01067{left:263.346885px;}
.x3f_c01067{left:264.887467px;}
.x79_c01067{left:269.209382px;}
.x4b_c01067{left:272.179363px;}
.x17_c01067{left:274.050000px;}
.x36_c01067{left:279.836323px;}
.x87_c01067{left:284.332419px;}
.x5e_c01067{left:286.954230px;}
.x84_c01067{left:288.730145px;}
.x9d_c01067{left:290.073000px;}
.x11_c01067{left:291.765195px;}
.x2c_c01067{left:293.508393px;}
.x5_c01067{left:296.307000px;}
.x64_c01067{left:301.337657px;}
.x6_c01067{left:305.067000px;}
.x40_c01067{left:308.901897px;}
.x58_c01067{left:310.900558px;}
.x22_c01067{left:312.520500px;}
.x70_c01067{left:314.908676px;}
.x7d_c01067{left:318.352736px;}
.x2d_c01067{left:319.701319px;}
.x88_c01067{left:321.325679px;}
.xa_c01067{left:324.576994px;}
.x8e_c01067{left:325.647507px;}
.x37_c01067{left:328.178881px;}
.x5f_c01067{left:329.605206px;}
.x18_c01067{left:333.180000px;}
.x2e_c01067{left:342.383661px;}
.x23_c01067{left:345.448500px;}
.x71_c01067{left:347.873736px;}
.x9e_c01067{left:349.525500px;}
.x60_c01067{left:350.602077px;}
.x7_c01067{left:351.679500px;}
.xe_c01067{left:359.247000px;}
.x19_c01067{left:360.450000px;}
.x59_c01067{left:362.179396px;}
.x51_c01067{left:366.956595px;}
.x4c_c01067{left:369.118243px;}
.x91_c01067{left:371.620500px;}
.x41_c01067{left:372.626661px;}
.x7e_c01067{left:373.977635px;}
.x94_c01067{left:375.300000px;}
.x7c_c01067{left:377.217828px;}
.x2f_c01067{left:378.296725px;}
.x12_c01067{left:380.580456px;}
.x69_c01067{left:382.344296px;}
.x9a_c01067{left:383.400000px;}
.x42_c01067{left:385.857403px;}
.x1a_c01067{left:391.500000px;}
.x9f_c01067{left:393.519000px;}
.x48_c01067{left:395.039491px;}
.x38_c01067{left:399.015289px;}
.x6a_c01067{left:400.165799px;}
.x24_c01067{left:402.151500px;}
.x89_c01067{left:406.382550px;}
.x43_c01067{left:407.729608px;}
.x49_c01067{left:412.860994px;}
.x4d_c01067{left:414.481407px;}
.x13_c01067{left:416.218452px;}
.x72_c01067{left:418.093488px;}
.x92_c01067{left:420.219000px;}
.x8f_c01067{left:423.126485px;}
.x52_c01067{left:425.281942px;}
.x30_c01067{left:426.630396px;}
.x1b_c01067{left:432.000000px;}
.x61_c01067{left:436.246146px;}
.x6b_c01067{left:439.589468px;}
.x95_c01067{left:444.690000px;}
.x85_c01067{left:449.638886px;}
.x44_c01067{left:451.473999px;}
.x73_c01067{left:459.397733px;}
.x39_c01067{left:461.419513px;}
.x8a_c01067{left:463.087625px;}
.x28_c01067{left:469.294500px;}
.x7f_c01067{left:471.995210px;}
.x31_c01067{left:477.394476px;}
.x93_c01067{left:484.267500px;}
.xf_c01067{left:490.803000px;}
.x45_c01067{left:492.247882px;}
.x3a_c01067{left:499.152822px;}
.x6c_c01067{left:501.425420px;}
.x7a_c01067{left:503.589486px;}
.x3b_c01067{left:504.729765px;}
.x25_c01067{left:509.751000px;}
.x5a_c01067{left:513.067631px;}
.x8b_c01067{left:514.661841px;}
.x62_c01067{left:518.431487px;}
.x75_c01067{left:524.377955px;}
.x6d_c01067{left:537.878582px;}
.x1d_c01067{left:540.810000px;}
.x32_c01067{left:545.169922px;}
.x80_c01067{left:552.731360px;}
.x33_c01067{left:555.430158px;}
.x5b_c01067{left:556.571441px;}
.x53_c01067{left:557.593809px;}
.x6e_c01067{left:575.411919px;}
.x96_c01067{left:595.878000px;}
.x10_c01067{left:621.175500px;}
.x14_c01067{left:622.545065px;}
.x26_c01067{left:624.180000px;}
.x46_c01067{left:625.908463px;}
.x29_c01067{left:628.461000px;}
.x34_c01067{left:631.577028px;}
.x74_c01067{left:637.366506px;}
.x54_c01067{left:639.950212px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls0_c01067{letter-spacing:0.000000pt;}
.ws0_c01067{word-spacing:0.000000pt;}
.fsb_c01067{font-size:29.869190pt;}
.fs19_c01067{font-size:35.466667pt;}
.fs8_c01067{font-size:37.336488pt;}
.fs11_c01067{font-size:38.269900pt;}
.fs0_c01067{font-size:38.280612pt;}
.fs15_c01067{font-size:41.066667pt;}
.fsf_c01067{font-size:45.737198pt;}
.fs7_c01067{font-size:52.271083pt;}
.fsd_c01067{font-size:55.071320pt;}
.fs17_c01067{font-size:56.000000pt;}
.fs16_c01067{font-size:56.933333pt;}
.fsa_c01067{font-size:57.871556pt;}
.fs18_c01067{font-size:58.800000pt;}
.fs9_c01067{font-size:58.804968pt;}
.fs14_c01067{font-size:59.738381pt;}
.fs1b_c01067{font-size:62.533333pt;}
.fse_c01067{font-size:62.538617pt;}
.fs1c_c01067{font-size:63.466667pt;}
.fs10_c01067{font-size:63.472029pt;}
.fs6_c01067{font-size:68.133333pt;}
.fs4_c01067{font-size:82.133333pt;}
.fs3_c01067{font-size:85.868770pt;}
.fs5_c01067{font-size:87.733333pt;}
.fs12_c01067{font-size:89.607571pt;}
.fs1a_c01067{font-size:92.400000pt;}
.fs13_c01067{font-size:97.074868pt;}
.fsc_c01067{font-size:106.408990pt;}
.fs1_c01067{font-size:116.709184pt;}
.fs2_c01067{font-size:126.936443pt;}
.y0_c01067{bottom:0.000000pt;}
.yed_c01067{bottom:127.918667pt;}
.yee_c01067{bottom:128.829333pt;}
.yef_c01067{bottom:129.058667pt;}
.yf0_c01067{bottom:129.293333pt;}
.yf1_c01067{bottom:130.104000pt;}
.yf2_c01067{bottom:130.310667pt;}
.yf3_c01067{bottom:130.685333pt;}
.yf4_c01067{bottom:131.116000pt;}
.yf5_c01067{bottom:131.530667pt;}
.yf6_c01067{bottom:131.665333pt;}
.yf7_c01067{bottom:132.528000pt;}
.yf8_c01067{bottom:133.368000pt;}
.yec_c01067{bottom:150.720000pt;}
.ye8_c01067{bottom:169.201333pt;}
.ye9_c01067{bottom:170.996000pt;}
.yea_c01067{bottom:172.970667pt;}
.yeb_c01067{bottom:173.177333pt;}
.ye6_c01067{bottom:191.330667pt;}
.ye7_c01067{bottom:192.000000pt;}
.ydb_c01067{bottom:210.278667pt;}
.ydc_c01067{bottom:210.985333pt;}
.ydd_c01067{bottom:211.400000pt;}
.yde_c01067{bottom:211.761333pt;}
.ydf_c01067{bottom:211.865333pt;}
.ye0_c01067{bottom:212.192000pt;}
.ye1_c01067{bottom:212.477333pt;}
.ye2_c01067{bottom:212.689333pt;}
.ye3_c01067{bottom:213.078667pt;}
.ye4_c01067{bottom:213.590667pt;}
.ye5_c01067{bottom:214.716000pt;}
.yd6_c01067{bottom:228.721333pt;}
.yd7_c01067{bottom:230.684000pt;}
.yd8_c01067{bottom:231.416000pt;}
.yd9_c01067{bottom:233.064000pt;}
.yda_c01067{bottom:233.690667pt;}
.ycc_c01067{bottom:253.170268pt;}
.yd1_c01067{bottom:253.170432pt;}
.ycd_c01067{bottom:253.170480pt;}
.yca_c01067{bottom:253.170511pt;}
.yc9_c01067{bottom:253.170600pt;}
.yce_c01067{bottom:253.170656pt;}
.ycb_c01067{bottom:253.170740pt;}
.yd0_c01067{bottom:253.170815pt;}
.ycf_c01067{bottom:253.170931pt;}
.yd2_c01067{bottom:253.171089pt;}
.yd3_c01067{bottom:253.171631pt;}
.yd4_c01067{bottom:253.172213pt;}
.yd5_c01067{bottom:255.360000pt;}
.yc0_c01067{bottom:273.405673pt;}
.yc1_c01067{bottom:273.405832pt;}
.ybe_c01067{bottom:273.406032pt;}
.yc2_c01067{bottom:273.406080pt;}
.yc6_c01067{bottom:273.406147pt;}
.ybf_c01067{bottom:273.406199pt;}
.yc7_c01067{bottom:273.406279pt;}
.yc5_c01067{bottom:273.406628pt;}
.yc3_c01067{bottom:273.406675pt;}
.yc8_c01067{bottom:273.406756pt;}
.yc4_c01067{bottom:273.406780pt;}
.yb4_c01067{bottom:292.055777pt;}
.yb5_c01067{bottom:292.529419pt;}
.yb6_c01067{bottom:292.743552pt;}
.yb7_c01067{bottom:292.879363pt;}
.yb8_c01067{bottom:293.102533pt;}
.yb9_c01067{bottom:293.237288pt;}
.yba_c01067{bottom:293.618852pt;}
.ybb_c01067{bottom:293.914109pt;}
.ybc_c01067{bottom:294.095691pt;}
.ybd_c01067{bottom:295.030999pt;}
.yac_c01067{bottom:314.681684pt;}
.yad_c01067{bottom:314.682181pt;}
.yaf_c01067{bottom:314.682663pt;}
.yae_c01067{bottom:314.682664pt;}
.yb0_c01067{bottom:314.683275pt;}
.yb1_c01067{bottom:314.683540pt;}
.yb3_c01067{bottom:314.684016pt;}
.yb2_c01067{bottom:314.684080pt;}
.yab_c01067{bottom:334.558801pt;}
.yaa_c01067{bottom:334.558851pt;}
.ya8_c01067{bottom:334.559023pt;}
.ya7_c01067{bottom:334.559104pt;}
.ya9_c01067{bottom:334.559252pt;}
.ya6_c01067{bottom:334.559527pt;}
.y9f_c01067{bottom:355.027151pt;}
.ya1_c01067{bottom:355.027389pt;}
.ya2_c01067{bottom:355.027433pt;}
.y9e_c01067{bottom:355.027491pt;}
.ya0_c01067{bottom:355.027505pt;}
.ya3_c01067{bottom:355.027931pt;}
.ya4_c01067{bottom:355.027996pt;}
.ya5_c01067{bottom:355.028571pt;}
.y99_c01067{bottom:375.340080pt;}
.y9a_c01067{bottom:375.941856pt;}
.y9b_c01067{bottom:376.513299pt;}
.y9c_c01067{bottom:378.011472pt;}
.y9d_c01067{bottom:378.837093pt;}
.y98_c01067{bottom:392.637633pt;}
.y97_c01067{bottom:392.638169pt;}
.y96_c01067{bottom:392.638279pt;}
.y8a_c01067{bottom:398.382135pt;}
.y8b_c01067{bottom:398.684968pt;}
.y8c_c01067{bottom:398.960353pt;}
.y8d_c01067{bottom:399.239801pt;}
.y8e_c01067{bottom:399.530656pt;}
.y8f_c01067{bottom:399.963532pt;}
.y90_c01067{bottom:400.168035pt;}
.y91_c01067{bottom:400.303661pt;}
.y92_c01067{bottom:400.458629pt;}
.y93_c01067{bottom:400.604817pt;}
.y94_c01067{bottom:400.862315pt;}
.y95_c01067{bottom:401.970321pt;}
.y82_c01067{bottom:420.733939pt;}
.y85_c01067{bottom:420.734015pt;}
.y83_c01067{bottom:420.734212pt;}
.y86_c01067{bottom:420.734529pt;}
.y84_c01067{bottom:420.734584pt;}
.y81_c01067{bottom:420.734597pt;}
.y80_c01067{bottom:420.734616pt;}
.y89_c01067{bottom:420.734624pt;}
.y87_c01067{bottom:420.734768pt;}
.y88_c01067{bottom:420.734936pt;}
.y7f_c01067{bottom:420.735185pt;}
.y7e_c01067{bottom:420.735365pt;}
.y79_c01067{bottom:440.604204pt;}
.y7d_c01067{bottom:440.604359pt;}
.y7c_c01067{bottom:440.604527pt;}
.y7a_c01067{bottom:440.604707pt;}
.y7b_c01067{bottom:440.605088pt;}
.y6e_c01067{bottom:457.669511pt;}
.y6f_c01067{bottom:458.821655pt;}
.y70_c01067{bottom:459.419975pt;}
.y71_c01067{bottom:459.913421pt;}
.y72_c01067{bottom:460.471397pt;}
.y73_c01067{bottom:461.002715pt;}
.y74_c01067{bottom:461.264169pt;}
.y75_c01067{bottom:461.614927pt;}
.y76_c01067{bottom:462.330852pt;}
.y77_c01067{bottom:463.353488pt;}
.y78_c01067{bottom:464.702540pt;}
.y63_c01067{bottom:478.546991pt;}
.y64_c01067{bottom:479.038667pt;}
.y65_c01067{bottom:479.169904pt;}
.y66_c01067{bottom:479.389323pt;}
.y67_c01067{bottom:479.567919pt;}
.y68_c01067{bottom:480.015367pt;}
.y69_c01067{bottom:480.334965pt;}
.y6a_c01067{bottom:480.569147pt;}
.y6b_c01067{bottom:481.274488pt;}
.y6c_c01067{bottom:481.545241pt;}
.y6d_c01067{bottom:481.966591pt;}
.y62_c01067{bottom:500.979867pt;}
.y5a_c01067{bottom:500.980045pt;}
.y5f_c01067{bottom:500.980059pt;}
.y57_c01067{bottom:500.980165pt;}
.y5b_c01067{bottom:500.980303pt;}
.y58_c01067{bottom:500.980315pt;}
.y61_c01067{bottom:500.980356pt;}
.y5c_c01067{bottom:500.980568pt;}
.y5e_c01067{bottom:500.980593pt;}
.y56_c01067{bottom:500.980601pt;}
.y59_c01067{bottom:500.980633pt;}
.y60_c01067{bottom:500.980713pt;}
.y5d_c01067{bottom:500.981092pt;}
.y4f_c01067{bottom:521.789000pt;}
.y55_c01067{bottom:521.789235pt;}
.y50_c01067{bottom:521.789628pt;}
.y54_c01067{bottom:521.789693pt;}
.y51_c01067{bottom:521.789795pt;}
.y53_c01067{bottom:521.789801pt;}
.y52_c01067{bottom:521.790389pt;}
.y4d_c01067{bottom:537.577749pt;}
.y4e_c01067{bottom:537.577851pt;}
.y4b_c01067{bottom:537.578060pt;}
.y4c_c01067{bottom:537.578319pt;}
.y45_c01067{bottom:548.107047pt;}
.y44_c01067{bottom:548.107297pt;}
.y4a_c01067{bottom:548.107396pt;}
.y46_c01067{bottom:548.107517pt;}
.y49_c01067{bottom:548.107657pt;}
.y43_c01067{bottom:548.107823pt;}
.y42_c01067{bottom:548.107868pt;}
.y41_c01067{bottom:548.107940pt;}
.y48_c01067{bottom:548.108076pt;}
.y47_c01067{bottom:548.108148pt;}
.y3e_c01067{bottom:548.108156pt;}
.y40_c01067{bottom:548.108296pt;}
.y3f_c01067{bottom:548.108573pt;}
.y32_c01067{bottom:564.718428pt;}
.y33_c01067{bottom:565.298753pt;}
.y34_c01067{bottom:565.745889pt;}
.y35_c01067{bottom:565.866444pt;}
.y36_c01067{bottom:566.082147pt;}
.y37_c01067{bottom:566.382333pt;}
.y38_c01067{bottom:566.691093pt;}
.y39_c01067{bottom:566.822659pt;}
.y3a_c01067{bottom:567.211064pt;}
.y3b_c01067{bottom:567.445815pt;}
.y3c_c01067{bottom:567.480053pt;}
.y3d_c01067{bottom:568.224560pt;}
.y27_c01067{bottom:585.794944pt;}
.y28_c01067{bottom:585.795028pt;}
.y29_c01067{bottom:585.795516pt;}
.y2a_c01067{bottom:585.795560pt;}
.y2c_c01067{bottom:585.795905pt;}
.y2f_c01067{bottom:585.795919pt;}
.y30_c01067{bottom:585.796043pt;}
.y2d_c01067{bottom:585.796144pt;}
.y2b_c01067{bottom:585.796164pt;}
.y31_c01067{bottom:585.796272pt;}
.y2e_c01067{bottom:585.796303pt;}
.y26_c01067{bottom:603.029852pt;}
.y25_c01067{bottom:604.869109pt;}
.y24_c01067{bottom:609.600000pt;}
.y19_c01067{bottom:612.489333pt;}
.y1a_c01067{bottom:613.189333pt;}
.y1b_c01067{bottom:613.696000pt;}
.y1c_c01067{bottom:614.037333pt;}
.y1d_c01067{bottom:614.461333pt;}
.y1e_c01067{bottom:614.562667pt;}
.y1f_c01067{bottom:614.725333pt;}
.y20_c01067{bottom:615.001333pt;}
.y21_c01067{bottom:615.178667pt;}
.y22_c01067{bottom:616.040000pt;}
.y23_c01067{bottom:616.956000pt;}
.y18_c01067{bottom:635.922667pt;}
.y17_c01067{bottom:671.024000pt;}
.y11_c01067{bottom:707.280625pt;}
.y12_c01067{bottom:708.595008pt;}
.y13_c01067{bottom:709.139561pt;}
.y14_c01067{bottom:709.849531pt;}
.y15_c01067{bottom:710.135281pt;}
.y16_c01067{bottom:711.785776pt;}
.yb_c01067{bottom:765.841333pt;}
.yc_c01067{bottom:766.175065pt;}
.yd_c01067{bottom:766.842137pt;}
.ye_c01067{bottom:767.682296pt;}
.yf_c01067{bottom:768.500867pt;}
.y10_c01067{bottom:769.312073pt;}
.y8_c01067{bottom:802.562036pt;}
.y9_c01067{bottom:804.688567pt;}
.ya_c01067{bottom:806.578068pt;}
.y1_c01067{bottom:818.142667pt;}
.y2_c01067{bottom:819.786427pt;}
.y3_c01067{bottom:821.122027pt;}
.y4_c01067{bottom:822.626935pt;}
.y5_c01067{bottom:823.871347pt;}
.y6_c01067{bottom:824.081587pt;}
.y7_c01067{bottom:825.200287pt;}
.hd_c01067{height:29.869190pt;}
.h1b_c01067{height:35.466667pt;}
.ha_c01067{height:37.336488pt;}
.h13_c01067{height:38.269900pt;}
.h2_c01067{height:38.280612pt;}
.h17_c01067{height:41.066667pt;}
.h11_c01067{height:45.737198pt;}
.h9_c01067{height:52.271083pt;}
.hf_c01067{height:55.071320pt;}
.h19_c01067{height:56.000000pt;}
.h18_c01067{height:56.933333pt;}
.hc_c01067{height:57.871556pt;}
.h1a_c01067{height:58.800000pt;}
.hb_c01067{height:58.804968pt;}
.h16_c01067{height:59.738381pt;}
.h1d_c01067{height:62.533333pt;}
.h10_c01067{height:62.538617pt;}
.h1e_c01067{height:63.466667pt;}
.h12_c01067{height:63.472029pt;}
.h8_c01067{height:68.133333pt;}
.h6_c01067{height:82.133333pt;}
.h5_c01067{height:85.868770pt;}
.h7_c01067{height:87.733333pt;}
.h14_c01067{height:89.607571pt;}
.h1c_c01067{height:92.400000pt;}
.h15_c01067{height:97.074868pt;}
.he_c01067{height:106.408990pt;}
.h3_c01067{height:116.709184pt;}
.h4_c01067{height:126.936443pt;}
.h0_c01067{height:896.400000pt;}
.h1_c01067{height:896.666667pt;}
.w1_c01067{width:622.666667pt;}
.w0_c01067{width:622.800000pt;}
.x0_c01067{left:0.000000pt;}
.x1_c01067{left:51.210667pt;}
.x8_c01067{left:52.299831pt;}
.x27_c01067{left:53.236000pt;}
.x2a_c01067{left:54.238756pt;}
.x7b_c01067{left:55.441451pt;}
.xb_c01067{left:56.336000pt;}
.x15_c01067{left:57.840000pt;}
.x1e_c01067{left:58.756000pt;}
.x97_c01067{left:60.000000pt;}
.x47_c01067{left:61.681300pt;}
.x4e_c01067{left:65.762297pt;}
.x3c_c01067{left:66.959065pt;}
.x8c_c01067{left:71.284916pt;}
.x6f_c01067{left:97.299347pt;}
.xc_c01067{left:104.012000pt;}
.x2_c01067{left:112.090667pt;}
.x98_c01067{left:128.400000pt;}
.x4f_c01067{left:135.608768pt;}
.x1f_c01067{left:136.564000pt;}
.x65_c01067{left:137.524748pt;}
.x81_c01067{left:138.558529pt;}
.x90_c01067{left:140.996000pt;}
.x76_c01067{left:141.968617pt;}
.x66_c01067{left:153.366084pt;}
.x55_c01067{left:155.616661pt;}
.x3d_c01067{left:158.407843pt;}
.x4a_c01067{left:160.090047pt;}
.x3_c01067{left:161.557333pt;}
.x9b_c01067{left:162.817333pt;}
.x82_c01067{left:174.300685pt;}
.x50_c01067{left:176.411667pt;}
.x9_c01067{left:177.365563pt;}
.x67_c01067{left:178.807716pt;}
.x5c_c01067{left:179.922729pt;}
.x9c_c01067{left:184.169333pt;}
.x56_c01067{left:187.054159pt;}
.x20_c01067{left:192.818667pt;}
.x3e_c01067{left:197.291745pt;}
.x16_c01067{left:198.240000pt;}
.xd_c01067{left:199.308000pt;}
.x35_c01067{left:200.545551pt;}
.x1c_c01067{left:207.120000pt;}
.x68_c01067{left:209.530232pt;}
.x57_c01067{left:212.502113pt;}
.x5d_c01067{left:215.208439pt;}
.x78_c01067{left:216.254661pt;}
.x4_c01067{left:217.294667pt;}
.x99_c01067{left:219.120000pt;}
.x8d_c01067{left:220.338101pt;}
.x86_c01067{left:222.497481pt;}
.x77_c01067{left:223.571167pt;}
.x2b_c01067{left:225.132967pt;}
.x63_c01067{left:227.292848pt;}
.x21_c01067{left:230.746667pt;}
.x83_c01067{left:234.086120pt;}
.x3f_c01067{left:235.455527pt;}
.x79_c01067{left:239.297228pt;}
.x4b_c01067{left:241.937212pt;}
.x17_c01067{left:243.600000pt;}
.x36_c01067{left:248.743399pt;}
.x87_c01067{left:252.739928pt;}
.x5e_c01067{left:255.070427pt;}
.x84_c01067{left:256.649017pt;}
.x9d_c01067{left:257.842667pt;}
.x11_c01067{left:259.346840pt;}
.x2c_c01067{left:260.896349pt;}
.x5_c01067{left:263.384000pt;}
.x64_c01067{left:267.855695pt;}
.x6_c01067{left:271.170667pt;}
.x40_c01067{left:274.579464pt;}
.x58_c01067{left:276.356052pt;}
.x22_c01067{left:277.796000pt;}
.x70_c01067{left:279.918823pt;}
.x7d_c01067{left:282.980209pt;}
.x2d_c01067{left:284.178951pt;}
.x88_c01067{left:285.622825pt;}
.xa_c01067{left:288.512884pt;}
.x8e_c01067{left:289.464451pt;}
.x37_c01067{left:291.714561pt;}
.x5f_c01067{left:292.982405pt;}
.x18_c01067{left:296.160000pt;}
.x2e_c01067{left:304.341032pt;}
.x23_c01067{left:307.065333pt;}
.x71_c01067{left:309.221099pt;}
.x9e_c01067{left:310.689333pt;}
.x60_c01067{left:311.646291pt;}
.x7_c01067{left:312.604000pt;}
.xe_c01067{left:319.330667pt;}
.x19_c01067{left:320.400000pt;}
.x59_c01067{left:321.937241pt;}
.x51_c01067{left:326.183640pt;}
.x4c_c01067{left:328.105105pt;}
.x91_c01067{left:330.329333pt;}
.x41_c01067{left:331.223699pt;}
.x7e_c01067{left:332.424564pt;}
.x94_c01067{left:333.600000pt;}
.x7c_c01067{left:335.304736pt;}
.x2f_c01067{left:336.263756pt;}
.x12_c01067{left:338.293739pt;}
.x69_c01067{left:339.861596pt;}
.x9a_c01067{left:340.800000pt;}
.x42_c01067{left:342.984359pt;}
.x1a_c01067{left:348.000000pt;}
.x9f_c01067{left:349.794667pt;}
.x48_c01067{left:351.146215pt;}
.x38_c01067{left:354.680257pt;}
.x6a_c01067{left:355.702932pt;}
.x24_c01067{left:357.468000pt;}
.x89_c01067{left:361.228933pt;}
.x43_c01067{left:362.426319pt;}
.x49_c01067{left:366.987551pt;}
.x4d_c01067{left:368.427917pt;}
.x13_c01067{left:369.971957pt;}
.x72_c01067{left:371.638656pt;}
.x92_c01067{left:373.528000pt;}
.x8f_c01067{left:376.112431pt;}
.x52_c01067{left:378.028393pt;}
.x30_c01067{left:379.227019pt;}
.x1b_c01067{left:384.000000pt;}
.x61_c01067{left:387.774352pt;}
.x6b_c01067{left:390.746193pt;}
.x95_c01067{left:395.280000pt;}
.x85_c01067{left:399.679009pt;}
.x44_c01067{left:401.310221pt;}
.x73_c01067{left:408.353540pt;}
.x39_c01067{left:410.150679pt;}
.x8a_c01067{left:411.633444pt;}
.x28_c01067{left:417.150667pt;}
.x7f_c01067{left:419.551297pt;}
.x31_c01067{left:424.350645pt;}
.x93_c01067{left:430.460000pt;}
.xf_c01067{left:436.269333pt;}
.x45_c01067{left:437.553673pt;}
.x3a_c01067{left:443.691397pt;}
.x6c_c01067{left:445.711484pt;}
.x7a_c01067{left:447.635099pt;}
.x3b_c01067{left:448.648680pt;}
.x25_c01067{left:453.112000pt;}
.x5a_c01067{left:456.060116pt;}
.x8b_c01067{left:457.477192pt;}
.x62_c01067{left:460.827988pt;}
.x75_c01067{left:466.113737pt;}
.x6d_c01067{left:478.114295pt;}
.x1d_c01067{left:480.720000pt;}
.x32_c01067{left:484.595487pt;}
.x80_c01067{left:491.316764pt;}
.x33_c01067{left:493.715696pt;}
.x5b_c01067{left:494.730169pt;}
.x53_c01067{left:495.638941pt;}
.x6e_c01067{left:511.477261pt;}
.x96_c01067{left:529.669333pt;}
.x10_c01067{left:552.156000pt;}
.x14_c01067{left:553.373391pt;}
.x26_c01067{left:554.826667pt;}
.x46_c01067{left:556.363079pt;}
.x29_c01067{left:558.632000pt;}
.x34_c01067{left:561.401803pt;}
.x74_c01067{left:566.548005pt;}
.x54_c01067{left:568.844633pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.000000;font-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_c01068{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);}
.m62_c01068{transform:matrix(0.027035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027035,0.000000,0.000000,0.250000,0,0);}
.m59_c01068{transform:matrix(0.080200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080200,0.000000,0.000000,0.250000,0,0);}
.m8e_c01068{transform:matrix(0.083230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083230,0.000000,0.000000,0.250000,0,0);}
.m33_c01068{transform:matrix(0.109900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109900,0.000000,0.000000,0.250000,0,0);}
.me7_c01068{transform:matrix(0.116474,-0.002213,0.004749,0.249955,0,0);-ms-transform:matrix(0.116474,-0.002213,0.004749,0.249955,0,0);-webkit-transform:matrix(0.116474,-0.002213,0.004749,0.249955,0,0);}
.m4a_c01068{transform:matrix(0.125620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125620,0.000000,0.000000,0.250000,0,0);}
.m14_c01068{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);}
.m13_c01068{transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143635,0.000000,0.000000,0.250000,0,0);}
.m52_c01068{transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144055,0.000000,0.000000,0.250000,0,0);}
.m67_c01068{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);}
.m54_c01068{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);}
.m58_c01068{transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148345,0.000000,0.000000,0.250000,0,0);}
.m80_c01068{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);}
.m26_c01068{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);}
.m9d_c01068{transform:matrix(0.152068,-0.002281,0.003750,0.249972,0,0);-ms-transform:matrix(0.152068,-0.002281,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152068,-0.002281,0.003750,0.249972,0,0);}
.m70_c01068{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);}
.m9e_c01068{transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);-ms-transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);}
.m99_c01068{transform:matrix(0.154653,-0.002320,0.003750,0.249972,0,0);-ms-transform:matrix(0.154653,-0.002320,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154653,-0.002320,0.003750,0.249972,0,0);}
.m6e_c01068{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);}
.mbf_c01068{transform:matrix(0.156927,-0.002354,0.003750,0.249972,0,0);-ms-transform:matrix(0.156927,-0.002354,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156927,-0.002354,0.003750,0.249972,0,0);}
.mb4_c01068{transform:matrix(0.157307,-0.002360,0.003750,0.249972,0,0);-ms-transform:matrix(0.157307,-0.002360,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157307,-0.002360,0.003750,0.249972,0,0);}
.m6d_c01068{transform:matrix(0.158010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158010,0.000000,0.000000,0.250000,0,0);}
.md0_c01068{transform:matrix(0.158197,-0.002373,0.003750,0.249972,0,0);-ms-transform:matrix(0.158197,-0.002373,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158197,-0.002373,0.003750,0.249972,0,0);}
.m27_c01068{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);}
.m50_c01068{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);}
.mc1_c01068{transform:matrix(0.158727,-0.002381,0.003750,0.249972,0,0);-ms-transform:matrix(0.158727,-0.002381,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158727,-0.002381,0.003750,0.249972,0,0);}
.m15_c01068{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_c01068{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);}
.m1d_c01068{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);}
.m5b_c01068{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);}
.m56_c01068{transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161330,0.000000,0.000000,0.250000,0,0);}
.m44_c01068{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);}
.m9a_c01068{transform:matrix(0.161497,-0.002422,0.003750,0.249972,0,0);-ms-transform:matrix(0.161497,-0.002422,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161497,-0.002422,0.003750,0.249972,0,0);}
.mc7_c01068{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);}
.m4f_c01068{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m73_c01068{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.m92_c01068{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);}
.mb6_c01068{transform:matrix(0.165971,-0.002490,0.003750,0.249972,0,0);-ms-transform:matrix(0.165971,-0.002490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165971,-0.002490,0.003750,0.249972,0,0);}
.mb7_c01068{transform:matrix(0.166491,-0.002497,0.003750,0.249972,0,0);-ms-transform:matrix(0.166491,-0.002497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166491,-0.002497,0.003750,0.249972,0,0);}
.m29_c01068{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);}
.mf_c01068{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);}
.me6_c01068{transform:matrix(0.167525,-0.003183,0.004749,0.249955,0,0);-ms-transform:matrix(0.167525,-0.003183,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167525,-0.003183,0.004749,0.249955,0,0);}
.mb8_c01068{transform:matrix(0.167886,-0.002518,0.003750,0.249972,0,0);-ms-transform:matrix(0.167886,-0.002518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167886,-0.002518,0.003750,0.249972,0,0);}
.ma8_c01068{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);}
.m4b_c01068{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);}
.m37_c01068{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m1a_c01068{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);}
.m9c_c01068{transform:matrix(0.169641,-0.002545,0.003750,0.249972,0,0);-ms-transform:matrix(0.169641,-0.002545,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169641,-0.002545,0.003750,0.249972,0,0);}
.me9_c01068{transform:matrix(0.170579,-0.003241,0.004749,0.249955,0,0);-ms-transform:matrix(0.170579,-0.003241,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170579,-0.003241,0.004749,0.249955,0,0);}
.m12_c01068{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);}
.m39_c01068{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.ma1_c01068{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);}
.me0_c01068{transform:matrix(0.171344,-0.003256,0.004749,0.249955,0,0);-ms-transform:matrix(0.171344,-0.003256,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171344,-0.003256,0.004749,0.249955,0,0);}
.m35_c01068{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);}
.me5_c01068{transform:matrix(0.173004,-0.003287,0.004749,0.249955,0,0);-ms-transform:matrix(0.173004,-0.003287,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173004,-0.003287,0.004749,0.249955,0,0);}
.m8f_c01068{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);}
.m9b_c01068{transform:matrix(0.173795,-0.002607,0.003750,0.249972,0,0);-ms-transform:matrix(0.173795,-0.002607,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173795,-0.002607,0.003750,0.249972,0,0);}
.m57_c01068{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);}
.m7d_c01068{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);}
.mae_c01068{transform:matrix(0.174315,-0.002615,0.003750,0.249972,0,0);-ms-transform:matrix(0.174315,-0.002615,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174315,-0.002615,0.003750,0.249972,0,0);}
.m45_c01068{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.mc0_c01068{transform:matrix(0.175590,-0.002634,0.003750,0.249972,0,0);-ms-transform:matrix(0.175590,-0.002634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175590,-0.002634,0.003750,0.249972,0,0);}
.m36_c01068{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);}
.m16_c01068{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);}
.m2f_c01068{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);}
.me2_c01068{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);}
.mbe_c01068{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);}
.ma3_c01068{transform:matrix(0.179765,-0.002696,0.003750,0.249972,0,0);-ms-transform:matrix(0.179765,-0.002696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179765,-0.002696,0.003750,0.249972,0,0);}
.m3a_c01068{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);}
.m17_c01068{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);}
.m71_c01068{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);}
.md1_c01068{transform:matrix(0.180605,-0.002709,0.003750,0.249972,0,0);-ms-transform:matrix(0.180605,-0.002709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180605,-0.002709,0.003750,0.249972,0,0);}
.m4d_c01068{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_c01068{transform:matrix(0.181325,-0.002720,0.003750,0.249972,0,0);-ms-transform:matrix(0.181325,-0.002720,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181325,-0.002720,0.003750,0.249972,0,0);}
.m43_c01068{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);}
.m65_c01068{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_c01068{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);}
.m11_c01068{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);}
.m90_c01068{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);}
.ma6_c01068{transform:matrix(0.182444,-0.002737,0.003750,0.249972,0,0);-ms-transform:matrix(0.182444,-0.002737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182444,-0.002737,0.003750,0.249972,0,0);}
.m30_c01068{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);}
.m10_c01068{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);}
.m48_c01068{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);}
.mb5_c01068{transform:matrix(0.183684,-0.002755,0.003750,0.249972,0,0);-ms-transform:matrix(0.183684,-0.002755,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183684,-0.002755,0.003750,0.249972,0,0);}
.m3b_c01068{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);}
.m19_c01068{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);}
.ma2_c01068{transform:matrix(0.185524,-0.002783,0.003750,0.249972,0,0);-ms-transform:matrix(0.185524,-0.002783,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185524,-0.002783,0.003750,0.249972,0,0);}
.m55_c01068{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);}
.m60_c01068{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);}
.m1f_c01068{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);}
.m8_c01068{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);}
.mba_c01068{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);}
.mea_c01068{transform:matrix(0.188866,-0.003588,0.004749,0.249955,0,0);-ms-transform:matrix(0.188866,-0.003588,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188866,-0.003588,0.004749,0.249955,0,0);}
.m7f_c01068{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);}
.m51_c01068{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);}
.m7b_c01068{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_c01068{transform:matrix(0.189861,-0.003607,0.004749,0.249955,0,0);-ms-transform:matrix(0.189861,-0.003607,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189861,-0.003607,0.004749,0.249955,0,0);}
.mb3_c01068{transform:matrix(0.190129,-0.002852,0.003750,0.249972,0,0);-ms-transform:matrix(0.190129,-0.002852,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190129,-0.002852,0.003750,0.249972,0,0);}
.m47_c01068{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);}
.mbb_c01068{transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);-ms-transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191128,-0.002867,0.003750,0.249972,0,0);}
.mcc_c01068{transform:matrix(0.192178,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192178,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192178,-0.002883,0.003750,0.249972,0,0);}
.mbc_c01068{transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);-ms-transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192213,-0.002883,0.003750,0.249972,0,0);}
.m88_c01068{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);}
.mcb_c01068{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);}
.maf_c01068{transform:matrix(0.192663,-0.002890,0.003750,0.249972,0,0);-ms-transform:matrix(0.192663,-0.002890,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192663,-0.002890,0.003750,0.249972,0,0);}
.m42_c01068{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);}
.m31_c01068{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);}
.m53_c01068{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);}
.m38_c01068{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);}
.m68_c01068{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);}
.mcd_c01068{transform:matrix(0.194688,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194688,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194688,-0.002920,0.003750,0.249972,0,0);}
.m1b_c01068{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);}
.m23_c01068{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);}
.m6a_c01068{transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194955,0.000000,0.000000,0.250000,0,0);}
.m7a_c01068{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);}
.m2c_c01068{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);}
.m74_c01068{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);}
.mbd_c01068{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);}
.m66_c01068{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);}
.m41_c01068{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);}
.mac_c01068{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);}
.m3_c01068{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);}
.m3c_c01068{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);}
.m7c_c01068{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);}
.m61_c01068{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);}
.m77_c01068{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);}
.m64_c01068{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);}
.m1e_c01068{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_c01068{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);}
.m86_c01068{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);}
.m9f_c01068{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);}
.m7e_c01068{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);}
.mce_c01068{transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);-ms-transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);}
.m84_c01068{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);}
.m6b_c01068{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);}
.md6_c01068{transform:matrix(0.203697,-0.003055,0.003750,0.249972,0,0);-ms-transform:matrix(0.203697,-0.003055,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203697,-0.003055,0.003750,0.249972,0,0);}
.mc5_c01068{transform:matrix(0.203702,-0.003056,0.003750,0.249972,0,0);-ms-transform:matrix(0.203702,-0.003056,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203702,-0.003056,0.003750,0.249972,0,0);}
.m9_c01068{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);}
.ma7_c01068{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);}
.m7_c01068{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);}
.m22_c01068{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);}
.m5f_c01068{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);}
.m89_c01068{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);}
.m49_c01068{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);}
.m8a_c01068{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);}
.m98_c01068{transform:matrix(0.206952,-0.003104,0.003750,0.249972,0,0);-ms-transform:matrix(0.206952,-0.003104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206952,-0.003104,0.003750,0.249972,0,0);}
.mad_c01068{transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);-ms-transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206992,-0.003105,0.003750,0.249972,0,0);}
.m78_c01068{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);}
.me3_c01068{transform:matrix(0.207238,-0.003938,0.004749,0.249955,0,0);-ms-transform:matrix(0.207238,-0.003938,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207238,-0.003938,0.004749,0.249955,0,0);}
.m93_c01068{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);}
.m2d_c01068{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);}
.me1_c01068{transform:matrix(0.208132,-0.003955,0.004749,0.249955,0,0);-ms-transform:matrix(0.208132,-0.003955,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208132,-0.003955,0.004749,0.249955,0,0);}
.m91_c01068{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);}
.ma0_c01068{transform:matrix(0.209106,-0.003137,0.003750,0.249972,0,0);-ms-transform:matrix(0.209106,-0.003137,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209106,-0.003137,0.003750,0.249972,0,0);}
.mc2_c01068{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);}
.mc_c01068{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);}
.mdd_c01068{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);}
.m83_c01068{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);}
.ma5_c01068{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);}
.ma4_c01068{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);}
.m79_c01068{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);}
.m82_c01068{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);}
.mc3_c01068{transform:matrix(0.213331,-0.003200,0.003750,0.249972,0,0);-ms-transform:matrix(0.213331,-0.003200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213331,-0.003200,0.003750,0.249972,0,0);}
.m5d_c01068{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);}
.ma9_c01068{transform:matrix(0.214566,-0.003218,0.003750,0.249972,0,0);-ms-transform:matrix(0.214566,-0.003218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214566,-0.003218,0.003750,0.249972,0,0);}
.mcf_c01068{transform:matrix(0.214841,-0.003223,0.003750,0.249972,0,0);-ms-transform:matrix(0.214841,-0.003223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214841,-0.003223,0.003750,0.249972,0,0);}
.m6c_c01068{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);}
.m81_c01068{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);}
.mc6_c01068{transform:matrix(0.215566,-0.003233,0.003750,0.249972,0,0);-ms-transform:matrix(0.215566,-0.003233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215566,-0.003233,0.003750,0.249972,0,0);}
.m40_c01068{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);}
.mdf_c01068{transform:matrix(0.216436,-0.004112,0.004749,0.249955,0,0);-ms-transform:matrix(0.216436,-0.004112,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216436,-0.004112,0.004749,0.249955,0,0);}
.mb9_c01068{transform:matrix(0.216701,-0.003251,0.003750,0.249972,0,0);-ms-transform:matrix(0.216701,-0.003251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216701,-0.003251,0.003750,0.249972,0,0);}
.mab_c01068{transform:matrix(0.217016,-0.003255,0.003750,0.249972,0,0);-ms-transform:matrix(0.217016,-0.003255,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217016,-0.003255,0.003750,0.249972,0,0);}
.m96_c01068{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);}
.md8_c01068{transform:matrix(0.217931,-0.004141,0.004749,0.249955,0,0);-ms-transform:matrix(0.217931,-0.004141,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217931,-0.004141,0.004749,0.249955,0,0);}
.m24_c01068{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);}
.mc4_c01068{transform:matrix(0.218815,-0.003282,0.003750,0.249972,0,0);-ms-transform:matrix(0.218815,-0.003282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218815,-0.003282,0.003750,0.249972,0,0);}
.m32_c01068{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);}
.m5_c01068{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);}
.m25_c01068{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);}
.mdc_c01068{transform:matrix(0.221330,-0.004205,0.004749,0.249955,0,0);-ms-transform:matrix(0.221330,-0.004205,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221330,-0.004205,0.004749,0.249955,0,0);}
.m2e_c01068{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);}
.m5e_c01068{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);}
.m2a_c01068{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);}
.mb_c01068{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);}
.m1_c01068{transform:matrix(0.225801,-0.002935,0.003250,0.249979,0,0);-ms-transform:matrix(0.225801,-0.002935,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225801,-0.002935,0.003250,0.249979,0,0);}
.mc9_c01068{transform:matrix(0.225850,-0.003388,0.003750,0.249972,0,0);-ms-transform:matrix(0.225850,-0.003388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225850,-0.003388,0.003750,0.249972,0,0);}
.md3_c01068{transform:matrix(0.226450,-0.003397,0.003750,0.249972,0,0);-ms-transform:matrix(0.226450,-0.003397,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226450,-0.003397,0.003750,0.249972,0,0);}
.mda_c01068{transform:matrix(0.227844,-0.004329,0.004749,0.249955,0,0);-ms-transform:matrix(0.227844,-0.004329,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227844,-0.004329,0.004749,0.249955,0,0);}
.maa_c01068{transform:matrix(0.229234,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229234,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229234,-0.003439,0.003750,0.249972,0,0);}
.m76_c01068{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);}
.m6f_c01068{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);}
.md5_c01068{transform:matrix(0.233749,-0.003506,0.003750,0.249972,0,0);-ms-transform:matrix(0.233749,-0.003506,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233749,-0.003506,0.003750,0.249972,0,0);}
.m1c_c01068{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);}
.mb1_c01068{transform:matrix(0.236938,-0.003554,0.003750,0.249972,0,0);-ms-transform:matrix(0.236938,-0.003554,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236938,-0.003554,0.003750,0.249972,0,0);}
.m72_c01068{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);}
.mde_c01068{transform:matrix(0.244131,-0.004638,0.004749,0.249955,0,0);-ms-transform:matrix(0.244131,-0.004638,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244131,-0.004638,0.004749,0.249955,0,0);}
.m75_c01068{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);}
.m94_c01068{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.md2_c01068{transform:matrix(0.246827,-0.003702,0.003750,0.249972,0,0);-ms-transform:matrix(0.246827,-0.003702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246827,-0.003702,0.003750,0.249972,0,0);}
.m95_c01068{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.m3d_c01068{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);}
.mca_c01068{transform:matrix(0.249422,-0.003741,0.003750,0.249972,0,0);-ms-transform:matrix(0.249422,-0.003741,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249422,-0.003741,0.003750,0.249972,0,0);}
.md9_c01068{transform:matrix(0.249855,-0.004747,0.004749,0.249955,0,0);-ms-transform:matrix(0.249855,-0.004747,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249855,-0.004747,0.004749,0.249955,0,0);}
.mc8_c01068{transform:matrix(0.252667,-0.003790,0.003750,0.249972,0,0);-ms-transform:matrix(0.252667,-0.003790,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252667,-0.003790,0.003750,0.249972,0,0);}
.mdb_c01068{transform:matrix(0.253444,-0.004815,0.004749,0.249955,0,0);-ms-transform:matrix(0.253444,-0.004815,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253444,-0.004815,0.004749,0.249955,0,0);}
.md4_c01068{transform:matrix(0.253456,-0.003802,0.003750,0.249972,0,0);-ms-transform:matrix(0.253456,-0.003802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253456,-0.003802,0.003750,0.249972,0,0);}
.m5c_c01068{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);}
.md7_c01068{transform:matrix(0.258918,-0.004919,0.004749,0.249955,0,0);-ms-transform:matrix(0.258918,-0.004919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258918,-0.004919,0.004749,0.249955,0,0);}
.m46_c01068{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);}
.me8_c01068{transform:matrix(0.261083,-0.004961,0.004749,0.249955,0,0);-ms-transform:matrix(0.261083,-0.004961,0.004749,0.249955,0,0);-webkit-transform:matrix(0.261083,-0.004961,0.004749,0.249955,0,0);}
.m20_c01068{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.m8b_c01068{transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);}
.m63_c01068{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.ma_c01068{transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);}
.m8c_c01068{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m87_c01068{transform:matrix(0.299380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299380,0.000000,0.000000,0.250000,0,0);}
.m34_c01068{transform:matrix(0.335515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335515,0.000000,0.000000,0.250000,0,0);}
.m5a_c01068{transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);}
.mb2_c01068{transform:matrix(0.346406,-0.005196,0.003750,0.249972,0,0);-ms-transform:matrix(0.346406,-0.005196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.346406,-0.005196,0.003750,0.249972,0,0);}
.m0_c01068{transform:matrix(0.353620,-0.004597,0.003250,0.249979,0,0);-ms-transform:matrix(0.353620,-0.004597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.353620,-0.004597,0.003250,0.249979,0,0);}
.m3e_c01068{transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356385,0.000000,0.000000,0.250000,0,0);}
.m2_c01068{transform:matrix(0.362959,-0.004718,0.003250,0.249979,0,0);-ms-transform:matrix(0.362959,-0.004718,0.003250,0.249979,0,0);-webkit-transform:matrix(0.362959,-0.004718,0.003250,0.249979,0,0);}
.m8d_c01068{transform:matrix(0.369695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369695,0.000000,0.000000,0.250000,0,0);}
.m2b_c01068{transform:matrix(0.374515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374515,0.000000,0.000000,0.250000,0,0);}
.meb_c01068{transform:matrix(0.394449,-0.007495,0.004749,0.249955,0,0);-ms-transform:matrix(0.394449,-0.007495,0.004749,0.249955,0,0);-webkit-transform:matrix(0.394449,-0.007495,0.004749,0.249955,0,0);}
.m4_c01068{transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);}
.m97_c01068{transform:matrix(0.401215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401215,0.000000,0.000000,0.250000,0,0);}
.m21_c01068{transform:matrix(0.415420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415420,0.000000,0.000000,0.250000,0,0);}
.m3f_c01068{transform:matrix(0.490840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490840,0.000000,0.000000,0.250000,0,0);}
.m18_c01068{transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491835,0.000000,0.000000,0.250000,0,0);}
.m4e_c01068{transform:matrix(0.499105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499105,0.000000,0.000000,0.250000,0,0);}
.m85_c01068{transform:matrix(0.638670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638670,0.000000,0.000000,0.250000,0,0);}
.me_c01068{transform:matrix(0.704825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704825,0.000000,0.000000,0.250000,0,0);}
.m69_c01068{transform:matrix(0.723370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723370,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls0_c01068{letter-spacing:0.000000px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:0.000000px;}
.fc0_c01068{color:transparent;}
.fs1_c01068{font-size:36.750000px;}
.fs13_c01068{font-size:63.007087px;}
.fsa_c01068{font-size:64.050000px;}
.fs3_c01068{font-size:65.100000px;}
.fs12_c01068{font-size:65.107323px;}
.fs14_c01068{font-size:65.111749px;}
.fs6_c01068{font-size:66.150000px;}
.fsf_c01068{font-size:67.207560px;}
.fsd_c01068{font-size:68.250000px;}
.fs10_c01068{font-size:69.307796px;}
.fs5_c01068{font-size:70.350000px;}
.fs7_c01068{font-size:71.400000px;}
.fs11_c01068{font-size:71.408032px;}
.fs15_c01068{font-size:71.412887px;}
.fs8_c01068{font-size:72.450000px;}
.fsb_c01068{font-size:74.550000px;}
.fs16_c01068{font-size:74.563455px;}
.fs4_c01068{font-size:75.600000px;}
.fse_c01068{font-size:76.658623px;}
.fs2_c01068{font-size:81.900000px;}
.fsc_c01068{font-size:91.350000px;}
.fs9_c01068{font-size:101.850000px;}
.fs0_c01068{font-size:123.910469px;}
.y0_c01068{bottom:0.000000px;}
.ydc_c01068{bottom:126.023758px;}
.ydd_c01068{bottom:126.764986px;}
.yde_c01068{bottom:127.688439px;}
.ydf_c01068{bottom:129.406833px;}
.yd3_c01068{bottom:147.149713px;}
.yd4_c01068{bottom:147.774150px;}
.yd5_c01068{bottom:148.471040px;}
.yd6_c01068{bottom:149.334392px;}
.yd7_c01068{bottom:150.064277px;}
.yd8_c01068{bottom:150.493843px;}
.yd9_c01068{bottom:151.175122px;}
.yda_c01068{bottom:152.001421px;}
.ydb_c01068{bottom:153.883804px;}
.ycb_c01068{bottom:170.374500px;}
.ycc_c01068{bottom:171.954654px;}
.ycd_c01068{bottom:172.937134px;}
.yce_c01068{bottom:173.960712px;}
.ycf_c01068{bottom:175.180256px;}
.yd0_c01068{bottom:175.650021px;}
.yd1_c01068{bottom:175.975291px;}
.yd2_c01068{bottom:176.921064px;}
.yc4_c01068{bottom:194.921122px;}
.yc5_c01068{bottom:195.284445px;}
.yc6_c01068{bottom:195.935557px;}
.yc7_c01068{bottom:196.611810px;}
.yc8_c01068{bottom:197.257905px;}
.yc9_c01068{bottom:197.631990px;}
.yca_c01068{bottom:198.433567px;}
.ybb_c01068{bottom:217.333380px;}
.ybc_c01068{bottom:217.619160px;}
.ybd_c01068{bottom:218.746170px;}
.ybe_c01068{bottom:219.149978px;}
.ybf_c01068{bottom:220.187715px;}
.yc0_c01068{bottom:220.893180px;}
.yc1_c01068{bottom:221.422972px;}
.yc2_c01068{bottom:222.190710px;}
.yc3_c01068{bottom:222.841680px;}
.yb5_c01068{bottom:240.556942px;}
.yb6_c01068{bottom:240.856305px;}
.yb7_c01068{bottom:241.901280px;}
.yb8_c01068{bottom:243.824797px;}
.yb9_c01068{bottom:244.548293px;}
.yba_c01068{bottom:245.269267px;}
.yab_c01068{bottom:262.972582px;}
.yac_c01068{bottom:263.651527px;}
.yad_c01068{bottom:263.985435px;}
.yae_c01068{bottom:265.060170px;}
.yaf_c01068{bottom:265.488720px;}
.yb0_c01068{bottom:266.084820px;}
.yb1_c01068{bottom:267.032955px;}
.yb2_c01068{bottom:267.635107px;}
.yb3_c01068{bottom:268.076767px;}
.yb4_c01068{bottom:268.572667px;}
.ya5_c01068{bottom:286.193708px;}
.ya6_c01068{bottom:286.867447px;}
.ya7_c01068{bottom:287.150070px;}
.ya8_c01068{bottom:288.218977px;}
.ya9_c01068{bottom:288.839032px;}
.yaa_c01068{bottom:289.835535px;}
.y9b_c01068{bottom:308.879183px;}
.y9c_c01068{bottom:309.340523px;}
.y9d_c01068{bottom:309.847410px;}
.y9e_c01068{bottom:310.856932px;}
.y9f_c01068{bottom:311.484068px;}
.ya0_c01068{bottom:312.152572px;}
.ya1_c01068{bottom:312.755340px;}
.ya2_c01068{bottom:313.532385px;}
.ya3_c01068{bottom:314.043360px;}
.ya4_c01068{bottom:314.917815px;}
.y93_c01068{bottom:332.101823px;}
.y94_c01068{bottom:333.009345px;}
.y95_c01068{bottom:333.593865px;}
.y96_c01068{bottom:333.928740px;}
.y97_c01068{bottom:334.680180px;}
.y98_c01068{bottom:335.139248px;}
.y99_c01068{bottom:335.878545px;}
.y9a_c01068{bottom:337.247003px;}
.y8c_c01068{bottom:355.053000px;}
.y8d_c01068{bottom:355.772843px;}
.y8e_c01068{bottom:356.150730px;}
.y8f_c01068{bottom:356.742210px;}
.y90_c01068{bottom:357.758895px;}
.y91_c01068{bottom:358.661933px;}
.y92_c01068{bottom:359.484240px;}
.y8b_c01068{bottom:382.035000px;}
.y83_c01068{bottom:401.758500px;}
.y84_c01068{bottom:402.210000px;}
.y85_c01068{bottom:402.945000px;}
.y86_c01068{bottom:403.782000px;}
.y87_c01068{bottom:404.038500px;}
.y88_c01068{bottom:404.581500px;}
.y89_c01068{bottom:404.866500px;}
.y8a_c01068{bottom:405.235500px;}
.y81_c01068{bottom:427.420500px;}
.y82_c01068{bottom:430.864500px;}
.y7d_c01068{bottom:446.856000px;}
.y7e_c01068{bottom:449.575500px;}
.y7f_c01068{bottom:449.688000px;}
.y80_c01068{bottom:450.885000px;}
.y77_c01068{bottom:470.614500px;}
.y78_c01068{bottom:471.612000px;}
.y79_c01068{bottom:472.096500px;}
.y7a_c01068{bottom:472.534500px;}
.y7b_c01068{bottom:472.936500px;}
.y7c_c01068{bottom:473.814000px;}
.y6f_c01068{bottom:493.023000px;}
.y70_c01068{bottom:493.405500px;}
.y71_c01068{bottom:494.080500px;}
.y72_c01068{bottom:494.325000px;}
.y73_c01068{bottom:495.087000px;}
.y74_c01068{bottom:495.526500px;}
.y75_c01068{bottom:495.780000px;}
.y76_c01068{bottom:496.234500px;}
.y66_c01068{bottom:516.511500px;}
.y67_c01068{bottom:516.991500px;}
.y68_c01068{bottom:517.315500px;}
.y69_c01068{bottom:518.082000px;}
.y6a_c01068{bottom:518.308500px;}
.y6b_c01068{bottom:518.760000px;}
.y6c_c01068{bottom:519.387000px;}
.y6d_c01068{bottom:519.657000px;}
.y6e_c01068{bottom:519.874500px;}
.y5e_c01068{bottom:539.731500px;}
.y5f_c01068{bottom:540.153000px;}
.y60_c01068{bottom:540.477000px;}
.y61_c01068{bottom:541.011000px;}
.y62_c01068{bottom:541.356000px;}
.y63_c01068{bottom:541.761000px;}
.y64_c01068{bottom:541.956000px;}
.y65_c01068{bottom:542.290500px;}
.y58_c01068{bottom:562.492500px;}
.y59_c01068{bottom:562.911000px;}
.y5a_c01068{bottom:563.787000px;}
.y5b_c01068{bottom:564.154500px;}
.y5c_c01068{bottom:564.399000px;}
.y5d_c01068{bottom:564.945000px;}
.y57_c01068{bottom:587.595000px;}
.y56_c01068{bottom:610.051500px;}
.y4a_c01068{bottom:631.797000px;}
.y4b_c01068{bottom:632.118000px;}
.y4c_c01068{bottom:632.503500px;}
.y4d_c01068{bottom:632.802000px;}
.y4e_c01068{bottom:633.016500px;}
.y4f_c01068{bottom:633.432000px;}
.y50_c01068{bottom:633.684000px;}
.y51_c01068{bottom:633.931500px;}
.y52_c01068{bottom:634.257000px;}
.y53_c01068{bottom:634.528500px;}
.y54_c01068{bottom:635.152500px;}
.y55_c01068{bottom:636.025500px;}
.y42_c01068{bottom:654.205500px;}
.y43_c01068{bottom:654.481500px;}
.y44_c01068{bottom:654.879000px;}
.y45_c01068{bottom:656.674500px;}
.y46_c01068{bottom:656.863500px;}
.y47_c01068{bottom:657.241500px;}
.y48_c01068{bottom:657.666000px;}
.y49_c01068{bottom:658.903500px;}
.y41_c01068{bottom:679.168500px;}
.y36_c01068{bottom:700.380000px;}
.y37_c01068{bottom:700.884000px;}
.y38_c01068{bottom:701.194500px;}
.y39_c01068{bottom:701.556000px;}
.y3a_c01068{bottom:702.133500px;}
.y3b_c01068{bottom:702.441000px;}
.y3c_c01068{bottom:703.183500px;}
.y3d_c01068{bottom:703.428000px;}
.y3e_c01068{bottom:703.768500px;}
.y3f_c01068{bottom:704.089500px;}
.y40_c01068{bottom:705.060000px;}
.y2d_c01068{bottom:723.064500px;}
.y2e_c01068{bottom:723.865500px;}
.y2f_c01068{bottom:724.510500px;}
.y30_c01068{bottom:724.968000px;}
.y31_c01068{bottom:725.628000px;}
.y32_c01068{bottom:725.968500px;}
.y33_c01068{bottom:726.849000px;}
.y34_c01068{bottom:727.981500px;}
.y35_c01068{bottom:729.831000px;}
.y23_c01068{bottom:745.474500px;}
.y24_c01068{bottom:746.253000px;}
.y25_c01068{bottom:746.698500px;}
.y26_c01068{bottom:747.123000px;}
.y27_c01068{bottom:748.309500px;}
.y28_c01068{bottom:748.758000px;}
.y29_c01068{bottom:749.005500px;}
.y2a_c01068{bottom:749.535000px;}
.y2b_c01068{bottom:749.853000px;}
.y2c_c01068{bottom:752.052000px;}
.y1a_c01068{bottom:768.424500px;}
.y1b_c01068{bottom:769.131000px;}
.y1c_c01068{bottom:769.710000px;}
.y1d_c01068{bottom:770.949000px;}
.y1e_c01068{bottom:771.229500px;}
.y1f_c01068{bottom:771.699000px;}
.y20_c01068{bottom:772.462500px;}
.y21_c01068{bottom:772.911000px;}
.y22_c01068{bottom:774.978000px;}
.y11_c01068{bottom:791.374500px;}
.y12_c01068{bottom:791.791500px;}
.y13_c01068{bottom:792.493500px;}
.y14_c01068{bottom:793.221000px;}
.y15_c01068{bottom:794.355000px;}
.y16_c01068{bottom:794.680500px;}
.y17_c01068{bottom:795.367500px;}
.y18_c01068{bottom:796.042500px;}
.y19_c01068{bottom:799.353000px;}
.y10_c01068{bottom:807.570000px;}
.y6_c01068{bottom:814.054500px;}
.y7_c01068{bottom:814.891500px;}
.y8_c01068{bottom:815.757000px;}
.y9_c01068{bottom:816.646500px;}
.ya_c01068{bottom:817.738500px;}
.yb_c01068{bottom:818.457000px;}
.yc_c01068{bottom:819.016500px;}
.yd_c01068{bottom:820.651500px;}
.ye_c01068{bottom:821.844000px;}
.yf_c01068{bottom:822.940500px;}
.y5_c01068{bottom:851.184000px;}
.y1_c01068{bottom:859.413000px;}
.y2_c01068{bottom:862.280338px;}
.y4_c01068{bottom:862.380000px;}
.y3_c01068{bottom:864.097777px;}
.h3_c01068{height:36.750000px;}
.h15_c01068{height:63.007087px;}
.hc_c01068{height:64.050000px;}
.h5_c01068{height:65.100000px;}
.h14_c01068{height:65.107323px;}
.h16_c01068{height:65.111749px;}
.h8_c01068{height:66.150000px;}
.h11_c01068{height:67.207560px;}
.hf_c01068{height:68.250000px;}
.h12_c01068{height:69.307796px;}
.h7_c01068{height:70.350000px;}
.h9_c01068{height:71.400000px;}
.h13_c01068{height:71.408032px;}
.h17_c01068{height:71.412887px;}
.ha_c01068{height:72.450000px;}
.hd_c01068{height:74.550000px;}
.h18_c01068{height:74.563455px;}
.h6_c01068{height:75.600000px;}
.h10_c01068{height:76.658623px;}
.h4_c01068{height:81.900000px;}
.he_c01068{height:91.350000px;}
.hb_c01068{height:101.850000px;}
.h2_c01068{height:123.910469px;}
.h1_c01068{height:1005.000000px;}
.h0_c01068{height:1005.150000px;}
.w0_c01068{width:715.200000px;}
.w1_c01068{width:715.500000px;}
.x0_c01068{left:0.000000px;}
.x6_c01068{left:136.341000px;}
.x18_c01068{left:137.607000px;}
.x27_c01068{left:138.960000px;}
.x51_c01068{left:140.269500px;}
.x66_c01068{left:141.363000px;}
.x6c_c01068{left:143.600498px;}
.x7b_c01068{left:144.781627px;}
.x81_c01068{left:146.061000px;}
.x85_c01068{left:147.118994px;}
.x11_c01068{left:160.803000px;}
.x3b_c01068{left:165.639000px;}
.x72_c01068{left:168.727492px;}
.x37_c01068{left:170.905500px;}
.x40_c01068{left:173.730000px;}
.x5a_c01068{left:175.377000px;}
.x4d_c01068{left:177.340500px;}
.x7_c01068{left:180.366000px;}
.x52_c01068{left:182.404500px;}
.x1_c01068{left:184.417500px;}
.x19_c01068{left:188.110500px;}
.x69_c01068{left:190.224000px;}
.x1f_c01068{left:192.634500px;}
.x28_c01068{left:196.192500px;}
.x12_c01068{left:202.110000px;}
.x47_c01068{left:203.850000px;}
.x3c_c01068{left:205.338000px;}
.x76_c01068{left:207.605520px;}
.x58_c01068{left:212.649000px;}
.x53_c01068{left:214.819500px;}
.x41_c01068{left:216.619500px;}
.x30_c01068{left:219.598500px;}
.x7e_c01068{left:223.274873px;}
.x20_c01068{left:224.491500px;}
.x8_c01068{left:225.897000px;}
.x1a_c01068{left:229.431000px;}
.x6d_c01068{left:231.367365px;}
.x5b_c01068{left:236.674500px;}
.x29_c01068{left:242.308500px;}
.x13_c01068{left:244.863000px;}
.x5f_c01068{left:246.355500px;}
.x42_c01068{left:249.826500px;}
.x6e_c01068{left:251.091780px;}
.x38_c01068{left:252.715500px;}
.x21_c01068{left:254.805000px;}
.x4e_c01068{left:256.921500px;}
.x5c_c01068{left:258.868500px;}
.x48_c01068{left:266.220000px;}
.x54_c01068{left:268.266000px;}
.x9_c01068{left:272.698500px;}
.x2a_c01068{left:275.040000px;}
.x60_c01068{left:277.669500px;}
.x77_c01068{left:278.866020px;}
.x82_c01068{left:280.936500px;}
.x4c_c01068{left:283.230000px;}
.x73_c01068{left:287.825137px;}
.x49_c01068{left:290.250000px;}
.x79_c01068{left:292.459455px;}
.x6f_c01068{left:295.286452px;}
.x65_c01068{left:296.662500px;}
.x55_c01068{left:302.809500px;}
.x61_c01068{left:306.348000px;}
.x14_c01068{left:311.538000px;}
.x4f_c01068{left:312.541500px;}
.x31_c01068{left:313.593000px;}
.x1b_c01068{left:317.977500px;}
.x43_c01068{left:319.800000px;}
.x2b_c01068{left:322.221000px;}
.x67_c01068{left:325.237500px;}
.x7c_c01068{left:326.330460px;}
.x5d_c01068{left:328.200000px;}
.xa_c01068{left:330.208500px;}
.x83_c01068{left:334.809000px;}
.x1c_c01068{left:337.968000px;}
.x22_c01068{left:339.579000px;}
.x56_c01068{left:343.297500px;}
.x32_c01068{left:344.380500px;}
.x2c_c01068{left:346.591500px;}
.x44_c01068{left:347.839500px;}
.x63_c01068{left:349.581000px;}
.x64_c01068{left:358.282500px;}
.x50_c01068{left:362.133000px;}
.x4a_c01068{left:363.960000px;}
.x70_c01068{left:365.775338px;}
.xb_c01068{left:368.005500px;}
.x62_c01068{left:369.006000px;}
.x15_c01068{left:371.143500px;}
.x45_c01068{left:375.415500px;}
.x6a_c01068{left:382.830000px;}
.x3d_c01068{left:384.843000px;}
.x78_c01068{left:386.636520px;}
.x23_c01068{left:389.268000px;}
.x5e_c01068{left:391.158000px;}
.x57_c01068{left:396.252000px;}
.xc_c01068{left:397.425000px;}
.x84_c01068{left:398.995500px;}
.x4b_c01068{left:400.680000px;}
.x3e_c01068{left:403.779000px;}
.x2_c01068{left:404.982000px;}
.x7d_c01068{left:406.624860px;}
.x2d_c01068{left:409.512000px;}
.x16_c01068{left:410.821500px;}
.x87_c01068{left:413.669354px;}
.x7f_c01068{left:414.702278px;}
.x33_c01068{left:418.629000px;}
.x68_c01068{left:423.739500px;}
.x1d_c01068{left:426.004500px;}
.x24_c01068{left:427.053000px;}
.x74_c01068{left:430.038248px;}
.x39_c01068{left:433.075500px;}
.x6b_c01068{left:437.650500px;}
.x3f_c01068{left:441.570000px;}
.x34_c01068{left:443.154000px;}
.x59_c01068{left:445.107000px;}
.x71_c01068{left:446.303430px;}
.x25_c01068{left:449.733000px;}
.x80_c01068{left:450.898658px;}
.x1e_c01068{left:458.091000px;}
.x7a_c01068{left:473.850510px;}
.x35_c01068{left:477.228000px;}
.x75_c01068{left:478.633065px;}
.xd_c01068{left:483.457500px;}
.x2e_c01068{left:490.386000px;}
.x36_c01068{left:509.365500px;}
.x46_c01068{left:511.089000px;}
.x88_c01068{left:515.279345px;}
.x86_c01068{left:543.323070px;}
.x3_c01068{left:544.785000px;}
.xe_c01068{left:546.237000px;}
.x5_c01068{left:567.270000px;}
.xf_c01068{left:603.984000px;}
.x17_c01068{left:605.586000px;}
.x26_c01068{left:606.841500px;}
.x3a_c01068{left:608.575500px;}
.x4_c01068{left:615.330000px;}
.x10_c01068{left:617.220000px;}
.x2f_c01068{left:622.500000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls0_c01068{letter-spacing:0.000000pt;}
.ws0_c01068{word-spacing:0.000000pt;}
.fs1_c01068{font-size:32.666667pt;}
.fs13_c01068{font-size:56.006300pt;}
.fsa_c01068{font-size:56.933333pt;}
.fs3_c01068{font-size:57.866667pt;}
.fs12_c01068{font-size:57.873176pt;}
.fs14_c01068{font-size:57.877111pt;}
.fs6_c01068{font-size:58.800000pt;}
.fsf_c01068{font-size:59.740053pt;}
.fsd_c01068{font-size:60.666667pt;}
.fs10_c01068{font-size:61.606930pt;}
.fs5_c01068{font-size:62.533333pt;}
.fs7_c01068{font-size:63.466667pt;}
.fs11_c01068{font-size:63.473806pt;}
.fs15_c01068{font-size:63.478121pt;}
.fs8_c01068{font-size:64.400000pt;}
.fsb_c01068{font-size:66.266667pt;}
.fs16_c01068{font-size:66.278627pt;}
.fs4_c01068{font-size:67.200000pt;}
.fse_c01068{font-size:68.140998pt;}
.fs2_c01068{font-size:72.800000pt;}
.fsc_c01068{font-size:81.200000pt;}
.fs9_c01068{font-size:90.533333pt;}
.fs0_c01068{font-size:110.142639pt;}
.y0_c01068{bottom:0.000000pt;}
.ydc_c01068{bottom:112.021119pt;}
.ydd_c01068{bottom:112.679988pt;}
.yde_c01068{bottom:113.500835pt;}
.ydf_c01068{bottom:115.028296pt;}
.yd3_c01068{bottom:130.799745pt;}
.yd4_c01068{bottom:131.354800pt;}
.yd5_c01068{bottom:131.974257pt;}
.yd6_c01068{bottom:132.741681pt;}
.yd7_c01068{bottom:133.390468pt;}
.yd8_c01068{bottom:133.772305pt;}
.yd9_c01068{bottom:134.377887pt;}
.yda_c01068{bottom:135.112375pt;}
.ydb_c01068{bottom:136.785604pt;}
.ycb_c01068{bottom:151.444000pt;}
.ycc_c01068{bottom:152.848581pt;}
.ycd_c01068{bottom:153.721897pt;}
.yce_c01068{bottom:154.631744pt;}
.ycf_c01068{bottom:155.715783pt;}
.yd0_c01068{bottom:156.133352pt;}
.yd1_c01068{bottom:156.422481pt;}
.yd2_c01068{bottom:157.263168pt;}
.yc4_c01068{bottom:173.263220pt;}
.yc5_c01068{bottom:173.586173pt;}
.yc6_c01068{bottom:174.164940pt;}
.yc7_c01068{bottom:174.766053pt;}
.yc8_c01068{bottom:175.340360pt;}
.yc9_c01068{bottom:175.672880pt;}
.yca_c01068{bottom:176.385393pt;}
.ybb_c01068{bottom:193.185227pt;}
.ybc_c01068{bottom:193.439253pt;}
.ybd_c01068{bottom:194.441040pt;}
.ybe_c01068{bottom:194.799980pt;}
.ybf_c01068{bottom:195.722413pt;}
.yc0_c01068{bottom:196.349493pt;}
.yc1_c01068{bottom:196.820420pt;}
.yc2_c01068{bottom:197.502853pt;}
.yc3_c01068{bottom:198.081493pt;}
.yb5_c01068{bottom:213.828393pt;}
.yb6_c01068{bottom:214.094493pt;}
.yb7_c01068{bottom:215.023360pt;}
.yb8_c01068{bottom:216.733153pt;}
.yb9_c01068{bottom:217.376260pt;}
.yba_c01068{bottom:218.017127pt;}
.yab_c01068{bottom:233.753407pt;}
.yac_c01068{bottom:234.356913pt;}
.yad_c01068{bottom:234.653720pt;}
.yae_c01068{bottom:235.609040pt;}
.yaf_c01068{bottom:235.989973pt;}
.yb0_c01068{bottom:236.519840pt;}
.yb1_c01068{bottom:237.362627pt;}
.yb2_c01068{bottom:237.897873pt;}
.yb3_c01068{bottom:238.290460pt;}
.yb4_c01068{bottom:238.731260pt;}
.ya5_c01068{bottom:254.394407pt;}
.ya6_c01068{bottom:254.993287pt;}
.ya7_c01068{bottom:255.244507pt;}
.ya8_c01068{bottom:256.194647pt;}
.ya9_c01068{bottom:256.745807pt;}
.yaa_c01068{bottom:257.631587pt;}
.y9b_c01068{bottom:274.559273pt;}
.y9c_c01068{bottom:274.969353pt;}
.y9d_c01068{bottom:275.419920pt;}
.y9e_c01068{bottom:276.317273pt;}
.y9f_c01068{bottom:276.874727pt;}
.ya0_c01068{bottom:277.468953pt;}
.ya1_c01068{bottom:278.004747pt;}
.ya2_c01068{bottom:278.695453pt;}
.ya3_c01068{bottom:279.149653pt;}
.ya4_c01068{bottom:279.926947pt;}
.y93_c01068{bottom:295.201620pt;}
.y94_c01068{bottom:296.008307pt;}
.y95_c01068{bottom:296.527880pt;}
.y96_c01068{bottom:296.825547pt;}
.y97_c01068{bottom:297.493493pt;}
.y98_c01068{bottom:297.901553pt;}
.y99_c01068{bottom:298.558707pt;}
.y9a_c01068{bottom:299.775113pt;}
.y8c_c01068{bottom:315.602667pt;}
.y8d_c01068{bottom:316.242527pt;}
.y8e_c01068{bottom:316.578427pt;}
.y8f_c01068{bottom:317.104187pt;}
.y90_c01068{bottom:318.007907pt;}
.y91_c01068{bottom:318.810607pt;}
.y92_c01068{bottom:319.541547pt;}
.y8b_c01068{bottom:339.586667pt;}
.y83_c01068{bottom:357.118667pt;}
.y84_c01068{bottom:357.520000pt;}
.y85_c01068{bottom:358.173333pt;}
.y86_c01068{bottom:358.917333pt;}
.y87_c01068{bottom:359.145333pt;}
.y88_c01068{bottom:359.628000pt;}
.y89_c01068{bottom:359.881333pt;}
.y8a_c01068{bottom:360.209333pt;}
.y81_c01068{bottom:379.929333pt;}
.y82_c01068{bottom:382.990667pt;}
.y7d_c01068{bottom:397.205333pt;}
.y7e_c01068{bottom:399.622667pt;}
.y7f_c01068{bottom:399.722667pt;}
.y80_c01068{bottom:400.786667pt;}
.y77_c01068{bottom:418.324000pt;}
.y78_c01068{bottom:419.210667pt;}
.y79_c01068{bottom:419.641333pt;}
.y7a_c01068{bottom:420.030667pt;}
.y7b_c01068{bottom:420.388000pt;}
.y7c_c01068{bottom:421.168000pt;}
.y6f_c01068{bottom:438.242667pt;}
.y70_c01068{bottom:438.582667pt;}
.y71_c01068{bottom:439.182667pt;}
.y72_c01068{bottom:439.400000pt;}
.y73_c01068{bottom:440.077333pt;}
.y74_c01068{bottom:440.468000pt;}
.y75_c01068{bottom:440.693333pt;}
.y76_c01068{bottom:441.097333pt;}
.y66_c01068{bottom:459.121333pt;}
.y67_c01068{bottom:459.548000pt;}
.y68_c01068{bottom:459.836000pt;}
.y69_c01068{bottom:460.517333pt;}
.y6a_c01068{bottom:460.718667pt;}
.y6b_c01068{bottom:461.120000pt;}
.y6c_c01068{bottom:461.677333pt;}
.y6d_c01068{bottom:461.917333pt;}
.y6e_c01068{bottom:462.110667pt;}
.y5e_c01068{bottom:479.761333pt;}
.y5f_c01068{bottom:480.136000pt;}
.y60_c01068{bottom:480.424000pt;}
.y61_c01068{bottom:480.898667pt;}
.y62_c01068{bottom:481.205333pt;}
.y63_c01068{bottom:481.565333pt;}
.y64_c01068{bottom:481.738667pt;}
.y65_c01068{bottom:482.036000pt;}
.y58_c01068{bottom:499.993333pt;}
.y59_c01068{bottom:500.365333pt;}
.y5a_c01068{bottom:501.144000pt;}
.y5b_c01068{bottom:501.470667pt;}
.y5c_c01068{bottom:501.688000pt;}
.y5d_c01068{bottom:502.173333pt;}
.y57_c01068{bottom:522.306667pt;}
.y56_c01068{bottom:542.268000pt;}
.y4a_c01068{bottom:561.597333pt;}
.y4b_c01068{bottom:561.882667pt;}
.y4c_c01068{bottom:562.225333pt;}
.y4d_c01068{bottom:562.490667pt;}
.y4e_c01068{bottom:562.681333pt;}
.y4f_c01068{bottom:563.050667pt;}
.y50_c01068{bottom:563.274667pt;}
.y51_c01068{bottom:563.494667pt;}
.y52_c01068{bottom:563.784000pt;}
.y53_c01068{bottom:564.025333pt;}
.y54_c01068{bottom:564.580000pt;}
.y55_c01068{bottom:565.356000pt;}
.y42_c01068{bottom:581.516000pt;}
.y43_c01068{bottom:581.761333pt;}
.y44_c01068{bottom:582.114667pt;}
.y45_c01068{bottom:583.710667pt;}
.y46_c01068{bottom:583.878667pt;}
.y47_c01068{bottom:584.214667pt;}
.y48_c01068{bottom:584.592000pt;}
.y49_c01068{bottom:585.692000pt;}
.y41_c01068{bottom:603.705333pt;}
.y36_c01068{bottom:622.560000pt;}
.y37_c01068{bottom:623.008000pt;}
.y38_c01068{bottom:623.284000pt;}
.y39_c01068{bottom:623.605333pt;}
.y3a_c01068{bottom:624.118667pt;}
.y3b_c01068{bottom:624.392000pt;}
.y3c_c01068{bottom:625.052000pt;}
.y3d_c01068{bottom:625.269333pt;}
.y3e_c01068{bottom:625.572000pt;}
.y3f_c01068{bottom:625.857333pt;}
.y40_c01068{bottom:626.720000pt;}
.y2d_c01068{bottom:642.724000pt;}
.y2e_c01068{bottom:643.436000pt;}
.y2f_c01068{bottom:644.009333pt;}
.y30_c01068{bottom:644.416000pt;}
.y31_c01068{bottom:645.002667pt;}
.y32_c01068{bottom:645.305333pt;}
.y33_c01068{bottom:646.088000pt;}
.y34_c01068{bottom:647.094667pt;}
.y35_c01068{bottom:648.738667pt;}
.y23_c01068{bottom:662.644000pt;}
.y24_c01068{bottom:663.336000pt;}
.y25_c01068{bottom:663.732000pt;}
.y26_c01068{bottom:664.109333pt;}
.y27_c01068{bottom:665.164000pt;}
.y28_c01068{bottom:665.562667pt;}
.y29_c01068{bottom:665.782667pt;}
.y2a_c01068{bottom:666.253333pt;}
.y2b_c01068{bottom:666.536000pt;}
.y2c_c01068{bottom:668.490667pt;}
.y1a_c01068{bottom:683.044000pt;}
.y1b_c01068{bottom:683.672000pt;}
.y1c_c01068{bottom:684.186667pt;}
.y1d_c01068{bottom:685.288000pt;}
.y1e_c01068{bottom:685.537333pt;}
.y1f_c01068{bottom:685.954667pt;}
.y20_c01068{bottom:686.633333pt;}
.y21_c01068{bottom:687.032000pt;}
.y22_c01068{bottom:688.869333pt;}
.y11_c01068{bottom:703.444000pt;}
.y12_c01068{bottom:703.814667pt;}
.y13_c01068{bottom:704.438667pt;}
.y14_c01068{bottom:705.085333pt;}
.y15_c01068{bottom:706.093333pt;}
.y16_c01068{bottom:706.382667pt;}
.y17_c01068{bottom:706.993333pt;}
.y18_c01068{bottom:707.593333pt;}
.y19_c01068{bottom:710.536000pt;}
.y10_c01068{bottom:717.840000pt;}
.y6_c01068{bottom:723.604000pt;}
.y7_c01068{bottom:724.348000pt;}
.y8_c01068{bottom:725.117333pt;}
.y9_c01068{bottom:725.908000pt;}
.ya_c01068{bottom:726.878667pt;}
.yb_c01068{bottom:727.517333pt;}
.yc_c01068{bottom:728.014667pt;}
.yd_c01068{bottom:729.468000pt;}
.ye_c01068{bottom:730.528000pt;}
.yf_c01068{bottom:731.502667pt;}
.y5_c01068{bottom:756.608000pt;}
.y1_c01068{bottom:763.922667pt;}
.y2_c01068{bottom:766.471412pt;}
.y4_c01068{bottom:766.560000pt;}
.y3_c01068{bottom:768.086913pt;}
.h3_c01068{height:32.666667pt;}
.h15_c01068{height:56.006300pt;}
.hc_c01068{height:56.933333pt;}
.h5_c01068{height:57.866667pt;}
.h14_c01068{height:57.873176pt;}
.h16_c01068{height:57.877111pt;}
.h8_c01068{height:58.800000pt;}
.h11_c01068{height:59.740053pt;}
.hf_c01068{height:60.666667pt;}
.h12_c01068{height:61.606930pt;}
.h7_c01068{height:62.533333pt;}
.h9_c01068{height:63.466667pt;}
.h13_c01068{height:63.473806pt;}
.h17_c01068{height:63.478121pt;}
.ha_c01068{height:64.400000pt;}
.hd_c01068{height:66.266667pt;}
.h18_c01068{height:66.278627pt;}
.h6_c01068{height:67.200000pt;}
.h10_c01068{height:68.140998pt;}
.h4_c01068{height:72.800000pt;}
.he_c01068{height:81.200000pt;}
.hb_c01068{height:90.533333pt;}
.h2_c01068{height:110.142639pt;}
.h1_c01068{height:893.333333pt;}
.h0_c01068{height:893.466667pt;}
.w0_c01068{width:635.733333pt;}
.w1_c01068{width:636.000000pt;}
.x0_c01068{left:0.000000pt;}
.x6_c01068{left:121.192000pt;}
.x18_c01068{left:122.317333pt;}
.x27_c01068{left:123.520000pt;}
.x51_c01068{left:124.684000pt;}
.x66_c01068{left:125.656000pt;}
.x6c_c01068{left:127.644887pt;}
.x7b_c01068{left:128.694780pt;}
.x81_c01068{left:129.832000pt;}
.x85_c01068{left:130.772439pt;}
.x11_c01068{left:142.936000pt;}
.x3b_c01068{left:147.234667pt;}
.x72_c01068{left:149.979993pt;}
.x37_c01068{left:151.916000pt;}
.x40_c01068{left:154.426667pt;}
.x5a_c01068{left:155.890667pt;}
.x4d_c01068{left:157.636000pt;}
.x7_c01068{left:160.325333pt;}
.x52_c01068{left:162.137333pt;}
.x1_c01068{left:163.926667pt;}
.x19_c01068{left:167.209333pt;}
.x69_c01068{left:169.088000pt;}
.x1f_c01068{left:171.230667pt;}
.x28_c01068{left:174.393333pt;}
.x12_c01068{left:179.653333pt;}
.x47_c01068{left:181.200000pt;}
.x3c_c01068{left:182.522667pt;}
.x76_c01068{left:184.538240pt;}
.x58_c01068{left:189.021333pt;}
.x53_c01068{left:190.950667pt;}
.x41_c01068{left:192.550667pt;}
.x30_c01068{left:195.198667pt;}
.x7e_c01068{left:198.466553pt;}
.x20_c01068{left:199.548000pt;}
.x8_c01068{left:200.797333pt;}
.x1a_c01068{left:203.938667pt;}
.x6d_c01068{left:205.659880pt;}
.x5b_c01068{left:210.377333pt;}
.x29_c01068{left:215.385333pt;}
.x13_c01068{left:217.656000pt;}
.x5f_c01068{left:218.982667pt;}
.x42_c01068{left:222.068000pt;}
.x6e_c01068{left:223.192693pt;}
.x38_c01068{left:224.636000pt;}
.x21_c01068{left:226.493333pt;}
.x4e_c01068{left:228.374667pt;}
.x5c_c01068{left:230.105333pt;}
.x48_c01068{left:236.640000pt;}
.x54_c01068{left:238.458667pt;}
.x9_c01068{left:242.398667pt;}
.x2a_c01068{left:244.480000pt;}
.x60_c01068{left:246.817333pt;}
.x77_c01068{left:247.880907pt;}
.x82_c01068{left:249.721333pt;}
.x4c_c01068{left:251.760000pt;}
.x73_c01068{left:255.844567pt;}
.x49_c01068{left:258.000000pt;}
.x79_c01068{left:259.963960pt;}
.x6f_c01068{left:262.476847pt;}
.x65_c01068{left:263.700000pt;}
.x55_c01068{left:269.164000pt;}
.x61_c01068{left:272.309333pt;}
.x14_c01068{left:276.922667pt;}
.x4f_c01068{left:277.814667pt;}
.x31_c01068{left:278.749333pt;}
.x1b_c01068{left:282.646667pt;}
.x43_c01068{left:284.266667pt;}
.x2b_c01068{left:286.418667pt;}
.x67_c01068{left:289.100000pt;}
.x7c_c01068{left:290.071520pt;}
.x5d_c01068{left:291.733333pt;}
.xa_c01068{left:293.518667pt;}
.x83_c01068{left:297.608000pt;}
.x1c_c01068{left:300.416000pt;}
.x22_c01068{left:301.848000pt;}
.x56_c01068{left:305.153333pt;}
.x32_c01068{left:306.116000pt;}
.x2c_c01068{left:308.081333pt;}
.x44_c01068{left:309.190667pt;}
.x63_c01068{left:310.738667pt;}
.x64_c01068{left:318.473333pt;}
.x50_c01068{left:321.896000pt;}
.x4a_c01068{left:323.520000pt;}
.x70_c01068{left:325.133633pt;}
.xb_c01068{left:327.116000pt;}
.x62_c01068{left:328.005333pt;}
.x15_c01068{left:329.905333pt;}
.x45_c01068{left:333.702667pt;}
.x6a_c01068{left:340.293333pt;}
.x3d_c01068{left:342.082667pt;}
.x78_c01068{left:343.676907pt;}
.x23_c01068{left:346.016000pt;}
.x5e_c01068{left:347.696000pt;}
.x57_c01068{left:352.224000pt;}
.xc_c01068{left:353.266667pt;}
.x84_c01068{left:354.662667pt;}
.x4b_c01068{left:356.160000pt;}
.x3e_c01068{left:358.914667pt;}
.x2_c01068{left:359.984000pt;}
.x7d_c01068{left:361.444320pt;}
.x2d_c01068{left:364.010667pt;}
.x16_c01068{left:365.174667pt;}
.x87_c01068{left:367.706092pt;}
.x7f_c01068{left:368.624247pt;}
.x33_c01068{left:372.114667pt;}
.x68_c01068{left:376.657333pt;}
.x1d_c01068{left:378.670667pt;}
.x24_c01068{left:379.602667pt;}
.x74_c01068{left:382.256220pt;}
.x39_c01068{left:384.956000pt;}
.x6b_c01068{left:389.022667pt;}
.x3f_c01068{left:392.506667pt;}
.x34_c01068{left:393.914667pt;}
.x59_c01068{left:395.650667pt;}
.x71_c01068{left:396.714160pt;}
.x25_c01068{left:399.762667pt;}
.x80_c01068{left:400.798807pt;}
.x1e_c01068{left:407.192000pt;}
.x7a_c01068{left:421.200453pt;}
.x35_c01068{left:424.202667pt;}
.x75_c01068{left:425.451613pt;}
.xd_c01068{left:429.740000pt;}
.x2e_c01068{left:435.898667pt;}
.x36_c01068{left:452.769333pt;}
.x46_c01068{left:454.301333pt;}
.x88_c01068{left:458.026084pt;}
.x86_c01068{left:482.953840pt;}
.x3_c01068{left:484.253333pt;}
.xe_c01068{left:485.544000pt;}
.x5_c01068{left:504.240000pt;}
.xf_c01068{left:536.874667pt;}
.x17_c01068{left:538.298667pt;}
.x26_c01068{left:539.414667pt;}
.x3a_c01068{left:540.956000pt;}
.x4_c01068{left:546.960000pt;}
.x10_c01068{left:548.640000pt;}
.x2f_c01068{left:553.333333pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.000000;font-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_c01069{transform:matrix(0.017164,0.000172,-0.002500,0.249988,0,0);-ms-transform:matrix(0.017164,0.000172,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.017164,0.000172,-0.002500,0.249988,0,0);}
.m3e_c01069{transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019825,0.000000,0.000000,0.250000,0,0);}
.m86_c01069{transform:matrix(0.035382,0.000425,-0.003000,0.249982,0,0);-ms-transform:matrix(0.035382,0.000425,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.035382,0.000425,-0.003000,0.249982,0,0);}
.m78_c01069{transform:matrix(0.105379,0.001159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.105379,0.001159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.105379,0.001159,-0.002750,0.249985,0,0);}
.m8e_c01069{transform:matrix(0.108173,0.001623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.108173,0.001623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.108173,0.001623,-0.003750,0.249972,0,0);}
.m6a_c01069{transform:matrix(0.137944,0.001241,-0.002250,0.249990,0,0);-ms-transform:matrix(0.137944,0.001241,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.137944,0.001241,-0.002250,0.249990,0,0);}
.m5_c01069{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m51_c01069{transform:matrix(0.148924,0.001340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148924,0.001340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148924,0.001340,-0.002250,0.249990,0,0);}
.m70_c01069{transform:matrix(0.151934,0.001367,-0.002250,0.249990,0,0);-ms-transform:matrix(0.151934,0.001367,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.151934,0.001367,-0.002250,0.249990,0,0);}
.m69_c01069{transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.152839,0.001376,-0.002250,0.249990,0,0);}
.m6f_c01069{transform:matrix(0.154669,0.001392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.154669,0.001392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.154669,0.001392,-0.002250,0.249990,0,0);}
.m67_c01069{transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157044,0.001413,-0.002250,0.249990,0,0);}
.m81_c01069{transform:matrix(0.157780,0.001736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157780,0.001736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157780,0.001736,-0.002750,0.249985,0,0);}
.m90_c01069{transform:matrix(0.159092,0.002386,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159092,0.002386,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159092,0.002386,-0.003750,0.249972,0,0);}
.m1a_c01069{transform:matrix(0.159660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159660,0.000000,0.000000,0.250000,0,0);}
.m6c_c01069{transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163183,0.001469,-0.002250,0.249990,0,0);}
.m4e_c01069{transform:matrix(0.164313,0.001479,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164313,0.001479,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164313,0.001479,-0.002250,0.249990,0,0);}
.m94_c01069{transform:matrix(0.166576,0.002499,-0.003750,0.249972,0,0);-ms-transform:matrix(0.166576,0.002499,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.166576,0.002499,-0.003750,0.249972,0,0);}
.m19_c01069{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);}
.m59_c01069{transform:matrix(0.169938,0.001529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169938,0.001529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169938,0.001529,-0.002250,0.249990,0,0);}
.m38_c01069{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);}
.m84_c01069{transform:matrix(0.171805,0.001890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171805,0.001890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171805,0.001890,-0.002750,0.249985,0,0);}
.m18_c01069{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);}
.m4_c01069{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);}
.m15_c01069{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);}
.mf_c01069{transform:matrix(0.174076,0.001741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174076,0.001741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174076,0.001741,-0.002500,0.249988,0,0);}
.m7a_c01069{transform:matrix(0.174534,0.001920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174534,0.001920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174534,0.001920,-0.002750,0.249985,0,0);}
.m54_c01069{transform:matrix(0.176568,0.001589,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176568,0.001589,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176568,0.001589,-0.002250,0.249990,0,0);}
.m58_c01069{transform:matrix(0.177523,0.001598,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177523,0.001598,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177523,0.001598,-0.002250,0.249990,0,0);}
.m93_c01069{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);}
.m2_c01069{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);}
.m3b_c01069{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);}
.m17_c01069{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m82_c01069{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);}
.m50_c01069{transform:matrix(0.181013,0.001629,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181013,0.001629,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181013,0.001629,-0.002250,0.249990,0,0);}
.m88_c01069{transform:matrix(0.182062,0.002185,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182062,0.002185,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182062,0.002185,-0.003000,0.249982,0,0);}
.m85_c01069{transform:matrix(0.182679,0.002009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182679,0.002009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182679,0.002009,-0.002750,0.249985,0,0);}
.m14_c01069{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);}
.m7d_c01069{transform:matrix(0.183069,0.002014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183069,0.002014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183069,0.002014,-0.002750,0.249985,0,0);}
.m3_c01069{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);}
.me_c01069{transform:matrix(0.183291,0.001833,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183291,0.001833,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183291,0.001833,-0.002500,0.249988,0,0);}
.m57_c01069{transform:matrix(0.183558,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183558,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183558,0.001652,-0.002250,0.249990,0,0);}
.m4f_c01069{transform:matrix(0.183873,0.001655,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183873,0.001655,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183873,0.001655,-0.002250,0.249990,0,0);}
.m83_c01069{transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);}
.md_c01069{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);}
.m89_c01069{transform:matrix(0.185112,0.002221,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185112,0.002221,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185112,0.002221,-0.003000,0.249982,0,0);}
.m22_c01069{transform:matrix(0.185519,0.002041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185519,0.002041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185519,0.002041,-0.002750,0.249985,0,0);}
.m8b_c01069{transform:matrix(0.185777,0.002229,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185777,0.002229,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185777,0.002229,-0.003000,0.249982,0,0);}
.m5d_c01069{transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186367,0.001677,-0.002250,0.249990,0,0);}
.m8c_c01069{transform:matrix(0.186652,0.002240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186652,0.002240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186652,0.002240,-0.003000,0.249982,0,0);}
.m55_c01069{transform:matrix(0.186767,0.001681,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186767,0.001681,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186767,0.001681,-0.002250,0.249990,0,0);}
.m80_c01069{transform:matrix(0.189064,0.002080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189064,0.002080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189064,0.002080,-0.002750,0.249985,0,0);}
.m6_c01069{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);}
.m6b_c01069{transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189662,0.001707,-0.002250,0.249990,0,0);}
.m23_c01069{transform:matrix(0.190413,0.002095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190413,0.002095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190413,0.002095,-0.002750,0.249985,0,0);}
.m4a_c01069{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);}
.m64_c01069{transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190742,0.001717,-0.002250,0.249990,0,0);}
.m16_c01069{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_c01069{transform:matrix(0.192357,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192357,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192357,0.001731,-0.002250,0.249990,0,0);}
.m36_c01069{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);}
.m24_c01069{transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192483,0.002117,-0.002750,0.249985,0,0);}
.m9_c01069{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);}
.m1_c01069{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);}
.m8f_c01069{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);}
.m56_c01069{transform:matrix(0.196002,0.001764,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196002,0.001764,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196002,0.001764,-0.002250,0.249990,0,0);}
.m32_c01069{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);}
.m39_c01069{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);}
.m4c_c01069{transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197312,0.001776,-0.002250,0.249990,0,0);}
.m44_c01069{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);}
.m53_c01069{transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);}
.m52_c01069{transform:matrix(0.200047,0.001800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200047,0.001800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200047,0.001800,-0.002250,0.249990,0,0);}
.m10_c01069{transform:matrix(0.201040,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201040,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201040,0.002010,-0.002500,0.249988,0,0);}
.m5f_c01069{transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201622,0.001815,-0.002250,0.249990,0,0);}
.m71_c01069{transform:matrix(0.202437,0.001822,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202437,0.001822,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202437,0.001822,-0.002250,0.249990,0,0);}
.m8d_c01069{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);}
.m6e_c01069{transform:matrix(0.203737,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203737,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203737,0.001834,-0.002250,0.249990,0,0);}
.m92_c01069{transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);}
.m61_c01069{transform:matrix(0.209657,0.001887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209657,0.001887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209657,0.001887,-0.002250,0.249990,0,0);}
.m7f_c01069{transform:matrix(0.211422,0.002326,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211422,0.002326,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211422,0.002326,-0.002750,0.249985,0,0);}
.m37_c01069{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);}
.mc_c01069{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);}
.m13_c01069{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);}
.m65_c01069{transform:matrix(0.213191,0.001919,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213191,0.001919,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213191,0.001919,-0.002250,0.249990,0,0);}
.m5b_c01069{transform:matrix(0.213391,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213391,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213391,0.001921,-0.002250,0.249990,0,0);}
.m95_c01069{transform:matrix(0.213846,0.003208,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213846,0.003208,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213846,0.003208,-0.003750,0.249972,0,0);}
.m79_c01069{transform:matrix(0.214937,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214937,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214937,0.002364,-0.002750,0.249985,0,0);}
.m2e_c01069{transform:matrix(0.216112,0.002809,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216112,0.002809,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216112,0.002809,-0.003250,0.249979,0,0);}
.m1f_c01069{transform:matrix(0.217792,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217792,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217792,0.002396,-0.002750,0.249985,0,0);}
.m66_c01069{transform:matrix(0.218521,0.001967,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218521,0.001967,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218521,0.001967,-0.002250,0.249990,0,0);}
.m73_c01069{transform:matrix(0.218666,0.001968,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218666,0.001968,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218666,0.001968,-0.002250,0.249990,0,0);}
.m49_c01069{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);}
.m21_c01069{transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219542,0.002415,-0.002750,0.249985,0,0);}
.m72_c01069{transform:matrix(0.219656,0.001977,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219656,0.001977,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219656,0.001977,-0.002250,0.249990,0,0);}
.m5c_c01069{transform:matrix(0.220641,0.001986,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220641,0.001986,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220641,0.001986,-0.002250,0.249990,0,0);}
.m74_c01069{transform:matrix(0.221051,0.001989,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221051,0.001989,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221051,0.001989,-0.002250,0.249990,0,0);}
.m63_c01069{transform:matrix(0.222196,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222196,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222196,0.002000,-0.002250,0.249990,0,0);}
.m68_c01069{transform:matrix(0.222296,0.002001,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222296,0.002001,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222296,0.002001,-0.002250,0.249990,0,0);}
.m8a_c01069{transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223774,0.002685,-0.003000,0.249982,0,0);}
.m9e_c01069{transform:matrix(0.224165,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224165,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224165,-0.001569,0.001750,0.249994,0,0);}
.m2d_c01069{transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);}
.mb_c01069{transform:matrix(0.225624,0.002256,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225624,0.002256,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225624,0.002256,-0.002500,0.249988,0,0);}
.m35_c01069{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);}
.m4b_c01069{transform:matrix(0.228641,0.002058,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228641,0.002058,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228641,0.002058,-0.002250,0.249990,0,0);}
.m1c_c01069{transform:matrix(0.229216,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229216,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229216,0.002521,-0.002750,0.249985,0,0);}
.m30_c01069{transform:matrix(0.231480,0.003009,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231480,0.003009,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231480,0.003009,-0.003250,0.249979,0,0);}
.m91_c01069{transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);}
.m5e_c01069{transform:matrix(0.234086,0.002107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234086,0.002107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234086,0.002107,-0.002250,0.249990,0,0);}
.m60_c01069{transform:matrix(0.236460,0.002128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236460,0.002128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236460,0.002128,-0.002250,0.249990,0,0);}
.m1e_c01069{transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);}
.m62_c01069{transform:matrix(0.238125,0.002143,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238125,0.002143,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238125,0.002143,-0.002250,0.249990,0,0);}
.m41_c01069{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);}
.m3d_c01069{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m9a_c01069{transform:matrix(0.242319,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242319,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242319,-0.001696,0.001750,0.249994,0,0);}
.m47_c01069{transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242830,0.000000,0.000000,0.250000,0,0);}
.ma_c01069{transform:matrix(0.245723,0.002457,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245723,0.002457,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245723,0.002457,-0.002500,0.249988,0,0);}
.m2f_c01069{transform:matrix(0.247049,0.003212,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247049,0.003212,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247049,0.003212,-0.003250,0.249979,0,0);}
.m1b_c01069{transform:matrix(0.249475,0.002744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249475,0.002744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249475,0.002744,-0.002750,0.249985,0,0);}
.m48_c01069{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.m5a_c01069{transform:matrix(0.257470,0.002317,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257470,0.002317,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257470,0.002317,-0.002250,0.249990,0,0);}
.m2b_c01069{transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);}
.m87_c01069{transform:matrix(0.262691,0.003152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262691,0.003152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262691,0.003152,-0.003000,0.249982,0,0);}
.m1d_c01069{transform:matrix(0.264284,0.002907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264284,0.002907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264284,0.002907,-0.002750,0.249985,0,0);}
.m42_c01069{transform:matrix(0.267640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267640,0.000000,0.000000,0.250000,0,0);}
.m3a_c01069{transform:matrix(0.272355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272355,0.000000,0.000000,0.250000,0,0);}
.m2c_c01069{transform:matrix(0.272487,0.003542,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272487,0.003542,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272487,0.003542,-0.003250,0.249979,0,0);}
.m28_c01069{transform:matrix(0.272827,0.003547,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272827,0.003547,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272827,0.003547,-0.003250,0.249979,0,0);}
.m20_c01069{transform:matrix(0.279048,0.003070,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279048,0.003070,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279048,0.003070,-0.002750,0.249985,0,0);}
.m2a_c01069{transform:matrix(0.285906,0.003717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285906,0.003717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285906,0.003717,-0.003250,0.249979,0,0);}
.m8_c01069{transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);}
.ma0_c01069{transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);}
.m99_c01069{transform:matrix(0.292863,-0.002050,0.001750,0.249994,0,0);-ms-transform:matrix(0.292863,-0.002050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.292863,-0.002050,0.001750,0.249994,0,0);}
.m98_c01069{transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);-ms-transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);}
.m9d_c01069{transform:matrix(0.306567,-0.002146,0.001750,0.249994,0,0);-ms-transform:matrix(0.306567,-0.002146,0.001750,0.249994,0,0);-webkit-transform:matrix(0.306567,-0.002146,0.001750,0.249994,0,0);}
.m29_c01069{transform:matrix(0.307004,0.003991,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307004,0.003991,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307004,0.003991,-0.003250,0.249979,0,0);}
.m11_c01069{transform:matrix(0.309030,0.003090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.309030,0.003090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.309030,0.003090,-0.002500,0.249988,0,0);}
.m3c_c01069{transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334425,0.000000,0.000000,0.250000,0,0);}
.m43_c01069{transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341845,0.000000,0.000000,0.250000,0,0);}
.m46_c01069{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);}
.m6d_c01069{transform:matrix(0.361560,0.003254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.361560,0.003254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.361560,0.003254,-0.002250,0.249990,0,0);}
.m77_c01069{transform:matrix(0.373567,0.004109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.373567,0.004109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.373567,0.004109,-0.002750,0.249985,0,0);}
.m75_c01069{transform:matrix(0.389941,0.004289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.389941,0.004289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.389941,0.004289,-0.002750,0.249985,0,0);}
.m7b_c01069{transform:matrix(0.391806,0.004310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.391806,0.004310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.391806,0.004310,-0.002750,0.249985,0,0);}
.m45_c01069{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m31_c01069{transform:matrix(0.409285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409285,0.000000,0.000000,0.250000,0,0);}
.m76_c01069{transform:matrix(0.423234,0.004656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.423234,0.004656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.423234,0.004656,-0.002750,0.249985,0,0);}
.m7c_c01069{transform:matrix(0.442193,0.004864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.442193,0.004864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.442193,0.004864,-0.002750,0.249985,0,0);}
.m0_c01069{transform:matrix(0.532070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532070,0.000000,0.000000,0.250000,0,0);}
.m9c_c01069{transform:matrix(0.537667,-0.003764,0.001750,0.249994,0,0);-ms-transform:matrix(0.537667,-0.003764,0.001750,0.249994,0,0);-webkit-transform:matrix(0.537667,-0.003764,0.001750,0.249994,0,0);}
.m7_c01069{transform:matrix(0.539890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539890,0.000000,0.000000,0.250000,0,0);}
.m9f_c01069{transform:matrix(0.625640,-0.004379,0.001750,0.249994,0,0);-ms-transform:matrix(0.625640,-0.004379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.625640,-0.004379,0.001750,0.249994,0,0);}
.m33_c01069{transform:matrix(0.625835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625835,0.000000,0.000000,0.250000,0,0);}
.m40_c01069{transform:matrix(0.656815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656815,0.000000,0.000000,0.250000,0,0);}
.m96_c01069{transform:matrix(0.693778,-0.004856,0.001750,0.249994,0,0);-ms-transform:matrix(0.693778,-0.004856,0.001750,0.249994,0,0);-webkit-transform:matrix(0.693778,-0.004856,0.001750,0.249994,0,0);}
.m97_c01069{transform:matrix(0.694368,-0.004861,0.001750,0.249994,0,0);-ms-transform:matrix(0.694368,-0.004861,0.001750,0.249994,0,0);-webkit-transform:matrix(0.694368,-0.004861,0.001750,0.249994,0,0);}
.m27_c01069{transform:matrix(0.697935,-0.013959,0.004999,0.249950,0,0);-ms-transform:matrix(0.697935,-0.013959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.697935,-0.013959,0.004999,0.249950,0,0);}
.m3f_c01069{transform:matrix(0.766285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766285,0.000000,0.000000,0.250000,0,0);}
.m34_c01069{transform:matrix(0.770710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770710,0.000000,0.000000,0.250000,0,0);}
.m26_c01069{transform:matrix(0.771356,-0.015427,0.004999,0.249950,0,0);-ms-transform:matrix(0.771356,-0.015427,0.004999,0.249950,0,0);-webkit-transform:matrix(0.771356,-0.015427,0.004999,0.249950,0,0);}
.m9b_c01069{transform:matrix(0.880913,-0.006166,0.001750,0.249994,0,0);-ms-transform:matrix(0.880913,-0.006166,0.001750,0.249994,0,0);-webkit-transform:matrix(0.880913,-0.006166,0.001750,0.249994,0,0);}
.m25_c01069{transform:matrix(0.936993,-0.018740,0.004999,0.249950,0,0);-ms-transform:matrix(0.936993,-0.018740,0.004999,0.249950,0,0);-webkit-transform:matrix(0.936993,-0.018740,0.004999,0.249950,0,0);}
.m7e_c01069{transform:matrix(1.142751,0.012570,-0.002750,0.249985,0,0);-ms-transform:matrix(1.142751,0.012570,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.142751,0.012570,-0.002750,0.249985,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls0_c01069{letter-spacing:0.000000px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:0.000000px;}
.fc0_c01069{color:transparent;}
.fs9_c01069{font-size:22.050000px;}
.fs17_c01069{font-size:53.550000px;}
.fs15_c01069{font-size:58.801441px;}
.fse_c01069{font-size:60.902466px;}
.fsa_c01069{font-size:61.950000px;}
.fs4_c01069{font-size:63.003811px;}
.fs14_c01069{font-size:67.207560px;}
.fs10_c01069{font-size:68.252764px;}
.fs13_c01069{font-size:68.254914px;}
.fsb_c01069{font-size:69.300000px;}
.fs8_c01069{font-size:70.350000px;}
.fsf_c01069{font-size:70.352849px;}
.fs3_c01069{font-size:70.353517px;}
.fs11_c01069{font-size:70.354256px;}
.fsc_c01069{font-size:71.402892px;}
.fs12_c01069{font-size:71.404320px;}
.fs1_c01069{font-size:73.500000px;}
.fsd_c01069{font-size:74.553019px;}
.fs2_c01069{font-size:91.350000px;}
.fs5_c01069{font-size:99.769948px;}
.fs6_c01069{font-size:124.960558px;}
.fs7_c01069{font-size:126.010647px;}
.fs16_c01069{font-size:177.454347px;}
.fs0_c01069{font-size:226.800000px;}
.y0_c01069{bottom:0.000000px;}
.y88_c01069{bottom:87.348000px;}
.y87_c01069{bottom:87.737962px;}
.y86_c01069{bottom:89.577631px;}
.y85_c01069{bottom:90.991546px;}
.y7e_c01069{bottom:127.171500px;}
.y7f_c01069{bottom:127.788176px;}
.y80_c01069{bottom:128.621561px;}
.y81_c01069{bottom:129.069365px;}
.y82_c01069{bottom:129.460542px;}
.y83_c01069{bottom:129.844212px;}
.y84_c01069{bottom:131.092809px;}
.y7d_c01069{bottom:145.425945px;}
.y7c_c01069{bottom:145.810583px;}
.y7b_c01069{bottom:146.547593px;}
.y7a_c01069{bottom:147.163485px;}
.y79_c01069{bottom:147.754785px;}
.y78_c01069{bottom:148.143653px;}
.y77_c01069{bottom:148.718820px;}
.y76_c01069{bottom:148.951695px;}
.y75_c01069{bottom:149.853000px;}
.y74_c01069{bottom:168.398688px;}
.y73_c01069{bottom:168.900924px;}
.y72_c01069{bottom:169.186170px;}
.y71_c01069{bottom:169.785066px;}
.y70_c01069{bottom:170.475600px;}
.y6f_c01069{bottom:170.631336px;}
.y6e_c01069{bottom:170.791500px;}
.y6d_c01069{bottom:191.230445px;}
.y6c_c01069{bottom:191.826300px;}
.y6b_c01069{bottom:192.160077px;}
.y6a_c01069{bottom:192.826526px;}
.y69_c01069{bottom:193.286063px;}
.y68_c01069{bottom:193.811903px;}
.y67_c01069{bottom:194.127830px;}
.y66_c01069{bottom:222.266207px;}
.y64_c01069{bottom:236.558402px;}
.y65_c01069{bottom:236.558615px;}
.y61_c01069{bottom:236.558873px;}
.y63_c01069{bottom:236.558939px;}
.y62_c01069{bottom:236.559115px;}
.y60_c01069{bottom:257.218158px;}
.y5f_c01069{bottom:259.589059px;}
.y5e_c01069{bottom:260.162072px;}
.y5d_c01069{bottom:261.091500px;}
.y5c_c01069{bottom:283.617542px;}
.y5b_c01069{bottom:284.059131px;}
.y5a_c01069{bottom:284.806453px;}
.y59_c01069{bottom:285.657244px;}
.y58_c01069{bottom:304.570077px;}
.y57_c01069{bottom:304.934370px;}
.y56_c01069{bottom:305.358165px;}
.y55_c01069{bottom:305.938737px;}
.y54_c01069{bottom:306.219651px;}
.y53_c01069{bottom:306.660854px;}
.y52_c01069{bottom:307.218238px;}
.y51_c01069{bottom:307.444404px;}
.y50_c01069{bottom:308.011634px;}
.y4f_c01069{bottom:308.359775px;}
.y4e_c01069{bottom:308.877481px;}
.y4d_c01069{bottom:327.180317px;}
.y4c_c01069{bottom:327.419867px;}
.y4b_c01069{bottom:327.814841px;}
.y4a_c01069{bottom:328.263126px;}
.y49_c01069{bottom:328.519636px;}
.y48_c01069{bottom:329.131987px;}
.y47_c01069{bottom:329.748188px;}
.y46_c01069{bottom:330.011031px;}
.y45_c01069{bottom:330.503445px;}
.y44_c01069{bottom:330.759902px;}
.y43_c01069{bottom:331.255719px;}
.y42_c01069{bottom:331.561111px;}
.y3c_c01069{bottom:352.110230px;}
.y3d_c01069{bottom:352.110273px;}
.y3e_c01069{bottom:352.110287px;}
.y3b_c01069{bottom:352.110546px;}
.y40_c01069{bottom:352.110583px;}
.y41_c01069{bottom:352.110777px;}
.y3f_c01069{bottom:352.110900px;}
.y3a_c01069{bottom:373.187792px;}
.y39_c01069{bottom:373.377386px;}
.y38_c01069{bottom:373.802285px;}
.y37_c01069{bottom:374.178989px;}
.y36_c01069{bottom:374.616767px;}
.y35_c01069{bottom:375.141606px;}
.y34_c01069{bottom:375.569529px;}
.y33_c01069{bottom:375.841500px;}
.y32_c01069{bottom:397.248000px;}
.y31_c01069{bottom:420.373500px;}
.y30_c01069{bottom:445.356000px;}
.y2e_c01069{bottom:464.623500px;}
.y2f_c01069{bottom:474.120000px;}
.y2d_c01069{bottom:486.555000px;}
.y2c_c01069{bottom:486.946500px;}
.y2b_c01069{bottom:487.524000px;}
.y2a_c01069{bottom:488.085000px;}
.y29_c01069{bottom:488.505000px;}
.y28_c01069{bottom:489.336000px;}
.y26_c01069{bottom:489.952500px;}
.y27_c01069{bottom:490.024500px;}
.y25_c01069{bottom:490.866000px;}
.y24_c01069{bottom:511.170000px;}
.y23_c01069{bottom:552.110468px;}
.y22_c01069{bottom:554.546251px;}
.y21_c01069{bottom:555.929074px;}
.y20_c01069{bottom:578.419142px;}
.y1f_c01069{bottom:580.585401px;}
.y1e_c01069{bottom:582.119140px;}
.y1d_c01069{bottom:604.707648px;}
.y1c_c01069{bottom:606.864621px;}
.y1b_c01069{bottom:608.583000px;}
.y18_c01069{bottom:646.933500px;}
.y19_c01069{bottom:649.504890px;}
.y1a_c01069{bottom:650.890680px;}
.y17_c01069{bottom:723.941860px;}
.y16_c01069{bottom:724.217361px;}
.y15_c01069{bottom:724.601019px;}
.y14_c01069{bottom:724.859458px;}
.y13_c01069{bottom:725.088132px;}
.y12_c01069{bottom:725.616957px;}
.y11_c01069{bottom:725.943145px;}
.y10_c01069{bottom:726.525843px;}
.yf_c01069{bottom:726.810385px;}
.ye_c01069{bottom:727.381500px;}
.yd_c01069{bottom:748.060500px;}
.yc_c01069{bottom:769.292790px;}
.yb_c01069{bottom:769.472175px;}
.ya_c01069{bottom:770.049300px;}
.y9_c01069{bottom:770.457405px;}
.y8_c01069{bottom:770.791695px;}
.y7_c01069{bottom:771.010875px;}
.y6_c01069{bottom:771.769650px;}
.y5_c01069{bottom:772.409520px;}
.y4_c01069{bottom:772.741500px;}
.y3_c01069{bottom:794.710500px;}
.y2_c01069{bottom:817.048500px;}
.y1_c01069{bottom:903.156000px;}
.hb_c01069{height:22.050000px;}
.h19_c01069{height:53.550000px;}
.h17_c01069{height:58.801441px;}
.h10_c01069{height:60.902466px;}
.hc_c01069{height:61.950000px;}
.h6_c01069{height:63.003811px;}
.h16_c01069{height:67.207560px;}
.h12_c01069{height:68.252764px;}
.h15_c01069{height:68.254914px;}
.hd_c01069{height:69.300000px;}
.ha_c01069{height:70.350000px;}
.h11_c01069{height:70.352849px;}
.h5_c01069{height:70.353517px;}
.h13_c01069{height:70.354256px;}
.he_c01069{height:71.402892px;}
.h14_c01069{height:71.404320px;}
.h3_c01069{height:73.500000px;}
.hf_c01069{height:74.553019px;}
.h4_c01069{height:91.350000px;}
.h7_c01069{height:99.769948px;}
.h8_c01069{height:124.960558px;}
.h9_c01069{height:126.010647px;}
.h18_c01069{height:177.454347px;}
.h2_c01069{height:226.800000px;}
.h0_c01069{height:1008.450000px;}
.h1_c01069{height:1008.750000px;}
.w1_c01069{width:700.500000px;}
.w0_c01069{width:700.650000px;}
.x0_c01069{left:0.000000px;}
.x63_c01069{left:58.183500px;}
.x67_c01069{left:65.086585px;}
.x22_c01069{left:110.745000px;}
.x24_c01069{left:131.586050px;}
.x2_c01069{left:144.450000px;}
.xb_c01069{left:145.684500px;}
.x2b_c01069{left:147.262500px;}
.x48_c01069{left:148.329522px;}
.x5e_c01069{left:149.394000px;}
.x13_c01069{left:170.910000px;}
.x57_c01069{left:172.951368px;}
.x3b_c01069{left:176.704500px;}
.xc_c01069{left:178.882500px;}
.x41_c01069{left:182.249332px;}
.x37_c01069{left:184.950000px;}
.x14_c01069{left:190.890000px;}
.x1_c01069{left:194.940000px;}
.x1a_c01069{left:197.010000px;}
.x4f_c01069{left:202.009248px;}
.x2d_c01069{left:207.396000px;}
.x49_c01069{left:210.198741px;}
.x36_c01069{left:211.410000px;}
.x2c_c01069{left:212.541000px;}
.x3_c01069{left:217.890000px;}
.x5a_c01069{left:221.239500px;}
.x1b_c01069{left:222.877500px;}
.x3c_c01069{left:224.251500px;}
.x42_c01069{left:230.581747px;}
.x38_c01069{left:233.550000px;}
.x27_c01069{left:238.198677px;}
.xd_c01069{left:242.869500px;}
.x50_c01069{left:248.708805px;}
.x29_c01069{left:250.290000px;}
.x15_c01069{left:256.500000px;}
.x5f_c01069{left:263.350500px;}
.x64_c01069{left:265.335000px;}
.x4a_c01069{left:266.851190px;}
.x8_c01069{left:268.110000px;}
.x25_c01069{left:271.031177px;}
.x1c_c01069{left:275.850000px;}
.x51_c01069{left:279.315000px;}
.x3d_c01069{left:282.567000px;}
.x43_c01069{left:284.584621px;}
.x60_c01069{left:289.275000px;}
.x4_c01069{left:291.600000px;}
.x33_c01069{left:295.378500px;}
.x44_c01069{left:297.395417px;}
.x21_c01069{left:299.068500px;}
.x58_c01069{left:300.069080px;}
.x1d_c01069{left:305.503500px;}
.x4b_c01069{left:306.614394px;}
.x2e_c01069{left:315.993000px;}
.xe_c01069{left:318.747000px;}
.x39_c01069{left:320.220000px;}
.x59_c01069{left:325.775519px;}
.x16_c01069{left:328.860000px;}
.x3e_c01069{left:331.209000px;}
.x5_c01069{left:332.910000px;}
.x9_c01069{left:336.690000px;}
.x4c_c01069{left:338.135477px;}
.xf_c01069{left:340.665000px;}
.x5b_c01069{left:341.670000px;}
.x2f_c01069{left:345.961500px;}
.x45_c01069{left:348.694026px;}
.x17_c01069{left:352.350000px;}
.x1e_c01069{left:353.578500px;}
.x53_c01069{left:355.060563px;}
.x4d_c01069{left:358.180572px;}
.x3a_c01069{left:359.640000px;}
.x2a_c01069{left:363.960000px;}
.x5c_c01069{left:365.440500px;}
.x6_c01069{left:369.090000px;}
.x34_c01069{left:372.598500px;}
.xa_c01069{left:374.760000px;}
.x30_c01069{left:385.981500px;}
.x54_c01069{left:393.672233px;}
.x18_c01069{left:395.280000px;}
.x7_c01069{left:398.250000px;}
.x46_c01069{left:399.731649px;}
.x5d_c01069{left:407.293500px;}
.x23_c01069{left:408.849000px;}
.x10_c01069{left:414.904500px;}
.x61_c01069{left:418.888500px;}
.x3f_c01069{left:420.276000px;}
.x28_c01069{left:425.566677px;}
.x31_c01069{left:427.279500px;}
.x4e_c01069{left:429.940346px;}
.x1f_c01069{left:432.739500px;}
.x19_c01069{left:438.210000px;}
.x65_c01069{left:439.999500px;}
.x40_c01069{left:441.342000px;}
.x55_c01069{left:442.545140px;}
.x62_c01069{left:444.531000px;}
.x32_c01069{left:455.289000px;}
.x20_c01069{left:457.785000px;}
.x26_c01069{left:468.017805px;}
.x11_c01069{left:472.617000px;}
.x56_c01069{left:484.667238px;}
.x12_c01069{left:490.555500px;}
.x35_c01069{left:498.688500px;}
.x47_c01069{left:511.208625px;}
.x68_c01069{left:544.590000px;}
.x52_c01069{left:546.943500px;}
.x66_c01069{left:618.370500px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls0_c01069{letter-spacing:0.000000pt;}
.ws0_c01069{word-spacing:0.000000pt;}
.fs9_c01069{font-size:19.600000pt;}
.fs17_c01069{font-size:47.600000pt;}
.fs15_c01069{font-size:52.267947pt;}
.fse_c01069{font-size:54.135526pt;}
.fsa_c01069{font-size:55.066667pt;}
.fs4_c01069{font-size:56.003388pt;}
.fs14_c01069{font-size:59.740053pt;}
.fs10_c01069{font-size:60.669124pt;}
.fs13_c01069{font-size:60.671035pt;}
.fsb_c01069{font-size:61.600000pt;}
.fs8_c01069{font-size:62.533333pt;}
.fsf_c01069{font-size:62.535866pt;}
.fs3_c01069{font-size:62.536460pt;}
.fs11_c01069{font-size:62.537116pt;}
.fsc_c01069{font-size:63.469237pt;}
.fs12_c01069{font-size:63.470506pt;}
.fs1_c01069{font-size:65.333333pt;}
.fsd_c01069{font-size:66.269350pt;}
.fs2_c01069{font-size:81.200000pt;}
.fs5_c01069{font-size:88.684398pt;}
.fs6_c01069{font-size:111.076051pt;}
.fs7_c01069{font-size:112.009464pt;}
.fs16_c01069{font-size:157.737198pt;}
.fs0_c01069{font-size:201.600000pt;}
.y0_c01069{bottom:0.000000pt;}
.y88_c01069{bottom:77.642667pt;}
.y87_c01069{bottom:77.989300pt;}
.y86_c01069{bottom:79.624561pt;}
.y85_c01069{bottom:80.881375pt;}
.y7e_c01069{bottom:113.041333pt;}
.y7f_c01069{bottom:113.589489pt;}
.y80_c01069{bottom:114.330276pt;}
.y81_c01069{bottom:114.728324pt;}
.y82_c01069{bottom:115.076037pt;}
.y83_c01069{bottom:115.417077pt;}
.y84_c01069{bottom:116.526941pt;}
.y7d_c01069{bottom:129.267507pt;}
.y7c_c01069{bottom:129.609407pt;}
.y7b_c01069{bottom:130.264527pt;}
.y7a_c01069{bottom:130.811987pt;}
.y79_c01069{bottom:131.337587pt;}
.y78_c01069{bottom:131.683247pt;}
.y77_c01069{bottom:132.194507pt;}
.y76_c01069{bottom:132.401507pt;}
.y75_c01069{bottom:133.202667pt;}
.y74_c01069{bottom:149.687723pt;}
.y73_c01069{bottom:150.134155pt;}
.y72_c01069{bottom:150.387707pt;}
.y71_c01069{bottom:150.920059pt;}
.y70_c01069{bottom:151.533867pt;}
.y6f_c01069{bottom:151.672299pt;}
.y6e_c01069{bottom:151.814667pt;}
.y6d_c01069{bottom:169.982617pt;}
.y6c_c01069{bottom:170.512267pt;}
.y6b_c01069{bottom:170.808957pt;}
.y6a_c01069{bottom:171.401356pt;}
.y69_c01069{bottom:171.809833pt;}
.y68_c01069{bottom:172.277247pt;}
.y67_c01069{bottom:172.558071pt;}
.y66_c01069{bottom:197.569961pt;}
.y64_c01069{bottom:210.274135pt;}
.y65_c01069{bottom:210.274324pt;}
.y61_c01069{bottom:210.274553pt;}
.y63_c01069{bottom:210.274612pt;}
.y62_c01069{bottom:210.274769pt;}
.y60_c01069{bottom:228.638363pt;}
.y5f_c01069{bottom:230.745831pt;}
.y5e_c01069{bottom:231.255175pt;}
.y5d_c01069{bottom:232.081333pt;}
.y5c_c01069{bottom:252.104481pt;}
.y5b_c01069{bottom:252.497005pt;}
.y5a_c01069{bottom:253.161292pt;}
.y59_c01069{bottom:253.917551pt;}
.y58_c01069{bottom:270.728957pt;}
.y57_c01069{bottom:271.052773pt;}
.y56_c01069{bottom:271.429480pt;}
.y55_c01069{bottom:271.945544pt;}
.y54_c01069{bottom:272.195245pt;}
.y53_c01069{bottom:272.587425pt;}
.y52_c01069{bottom:273.082879pt;}
.y51_c01069{bottom:273.283915pt;}
.y50_c01069{bottom:273.788119pt;}
.y4f_c01069{bottom:274.097577pt;}
.y4e_c01069{bottom:274.557761pt;}
.y4d_c01069{bottom:290.826948pt;}
.y4c_c01069{bottom:291.039881pt;}
.y4b_c01069{bottom:291.390969pt;}
.y4a_c01069{bottom:291.789445pt;}
.y49_c01069{bottom:292.017455pt;}
.y48_c01069{bottom:292.561767pt;}
.y47_c01069{bottom:293.109500pt;}
.y46_c01069{bottom:293.343139pt;}
.y45_c01069{bottom:293.780840pt;}
.y44_c01069{bottom:294.008801pt;}
.y43_c01069{bottom:294.449528pt;}
.y42_c01069{bottom:294.720988pt;}
.y3c_c01069{bottom:312.986871pt;}
.y3d_c01069{bottom:312.986909pt;}
.y3e_c01069{bottom:312.986921pt;}
.y3b_c01069{bottom:312.987152pt;}
.y40_c01069{bottom:312.987185pt;}
.y41_c01069{bottom:312.987357pt;}
.y3f_c01069{bottom:312.987467pt;}
.y3a_c01069{bottom:331.722481pt;}
.y39_c01069{bottom:331.891009pt;}
.y38_c01069{bottom:332.268697pt;}
.y37_c01069{bottom:332.603545pt;}
.y36_c01069{bottom:332.992681pt;}
.y35_c01069{bottom:333.459205pt;}
.y34_c01069{bottom:333.839581pt;}
.y33_c01069{bottom:334.081333pt;}
.y32_c01069{bottom:353.109333pt;}
.y31_c01069{bottom:373.665333pt;}
.y30_c01069{bottom:395.872000pt;}
.y2e_c01069{bottom:412.998667pt;}
.y2f_c01069{bottom:421.440000pt;}
.y2d_c01069{bottom:432.493333pt;}
.y2c_c01069{bottom:432.841333pt;}
.y2b_c01069{bottom:433.354667pt;}
.y2a_c01069{bottom:433.853333pt;}
.y29_c01069{bottom:434.226667pt;}
.y28_c01069{bottom:434.965333pt;}
.y26_c01069{bottom:435.513333pt;}
.y27_c01069{bottom:435.577333pt;}
.y25_c01069{bottom:436.325333pt;}
.y24_c01069{bottom:454.373333pt;}
.y23_c01069{bottom:490.764860pt;}
.y22_c01069{bottom:492.930001pt;}
.y21_c01069{bottom:494.159177pt;}
.y20_c01069{bottom:514.150348pt;}
.y1f_c01069{bottom:516.075912pt;}
.y1e_c01069{bottom:517.439236pt;}
.y1d_c01069{bottom:537.517909pt;}
.y1c_c01069{bottom:539.435219pt;}
.y1b_c01069{bottom:540.962667pt;}
.y18_c01069{bottom:575.052000pt;}
.y19_c01069{bottom:577.337680pt;}
.y1a_c01069{bottom:578.569493pt;}
.y17_c01069{bottom:643.503876pt;}
.y16_c01069{bottom:643.748765pt;}
.y15_c01069{bottom:644.089795pt;}
.y14_c01069{bottom:644.319519pt;}
.y13_c01069{bottom:644.522784pt;}
.y12_c01069{bottom:644.992851pt;}
.y11_c01069{bottom:645.282796pt;}
.y10_c01069{bottom:645.800749pt;}
.yf_c01069{bottom:646.053676pt;}
.ye_c01069{bottom:646.561333pt;}
.yd_c01069{bottom:664.942667pt;}
.yc_c01069{bottom:683.815813pt;}
.yb_c01069{bottom:683.975267pt;}
.ya_c01069{bottom:684.488267pt;}
.y9_c01069{bottom:684.851027pt;}
.y8_c01069{bottom:685.148173pt;}
.y7_c01069{bottom:685.343000pt;}
.y6_c01069{bottom:686.017467pt;}
.y5_c01069{bottom:686.586240pt;}
.y4_c01069{bottom:686.881333pt;}
.y3_c01069{bottom:706.409333pt;}
.y2_c01069{bottom:726.265333pt;}
.y1_c01069{bottom:802.805333pt;}
.hb_c01069{height:19.600000pt;}
.h19_c01069{height:47.600000pt;}
.h17_c01069{height:52.267947pt;}
.h10_c01069{height:54.135526pt;}
.hc_c01069{height:55.066667pt;}
.h6_c01069{height:56.003388pt;}
.h16_c01069{height:59.740053pt;}
.h12_c01069{height:60.669124pt;}
.h15_c01069{height:60.671035pt;}
.hd_c01069{height:61.600000pt;}
.ha_c01069{height:62.533333pt;}
.h11_c01069{height:62.535866pt;}
.h5_c01069{height:62.536460pt;}
.h13_c01069{height:62.537116pt;}
.he_c01069{height:63.469237pt;}
.h14_c01069{height:63.470506pt;}
.h3_c01069{height:65.333333pt;}
.hf_c01069{height:66.269350pt;}
.h4_c01069{height:81.200000pt;}
.h7_c01069{height:88.684398pt;}
.h8_c01069{height:111.076051pt;}
.h9_c01069{height:112.009464pt;}
.h18_c01069{height:157.737198pt;}
.h2_c01069{height:201.600000pt;}
.h0_c01069{height:896.400000pt;}
.h1_c01069{height:896.666667pt;}
.w1_c01069{width:622.666667pt;}
.w0_c01069{width:622.800000pt;}
.x0_c01069{left:0.000000pt;}
.x63_c01069{left:51.718667pt;}
.x67_c01069{left:57.854743pt;}
.x22_c01069{left:98.440000pt;}
.x24_c01069{left:116.965377pt;}
.x2_c01069{left:128.400000pt;}
.xb_c01069{left:129.497333pt;}
.x2b_c01069{left:130.900000pt;}
.x48_c01069{left:131.848464pt;}
.x5e_c01069{left:132.794667pt;}
.x13_c01069{left:151.920000pt;}
.x57_c01069{left:153.734549pt;}
.x3b_c01069{left:157.070667pt;}
.xc_c01069{left:159.006667pt;}
.x41_c01069{left:161.999407pt;}
.x37_c01069{left:164.400000pt;}
.x14_c01069{left:169.680000pt;}
.x1_c01069{left:173.280000pt;}
.x1a_c01069{left:175.120000pt;}
.x4f_c01069{left:179.563776pt;}
.x2d_c01069{left:184.352000pt;}
.x49_c01069{left:186.843325pt;}
.x36_c01069{left:187.920000pt;}
.x2c_c01069{left:188.925333pt;}
.x3_c01069{left:193.680000pt;}
.x5a_c01069{left:196.657333pt;}
.x1b_c01069{left:198.113333pt;}
.x3c_c01069{left:199.334667pt;}
.x42_c01069{left:204.961553pt;}
.x38_c01069{left:207.600000pt;}
.x27_c01069{left:211.732157pt;}
.xd_c01069{left:215.884000pt;}
.x50_c01069{left:221.074493pt;}
.x29_c01069{left:222.480000pt;}
.x15_c01069{left:228.000000pt;}
.x5f_c01069{left:234.089333pt;}
.x64_c01069{left:235.853333pt;}
.x4a_c01069{left:237.201057pt;}
.x8_c01069{left:238.320000pt;}
.x25_c01069{left:240.916601pt;}
.x1c_c01069{left:245.200000pt;}
.x51_c01069{left:248.280000pt;}
.x3d_c01069{left:251.170667pt;}
.x43_c01069{left:252.964108pt;}
.x60_c01069{left:257.133333pt;}
.x4_c01069{left:259.200000pt;}
.x33_c01069{left:262.558667pt;}
.x44_c01069{left:264.351481pt;}
.x21_c01069{left:265.838667pt;}
.x58_c01069{left:266.728071pt;}
.x1d_c01069{left:271.558667pt;}
.x4b_c01069{left:272.546128pt;}
.x2e_c01069{left:280.882667pt;}
.xe_c01069{left:283.330667pt;}
.x39_c01069{left:284.640000pt;}
.x59_c01069{left:289.578239pt;}
.x16_c01069{left:292.320000pt;}
.x3e_c01069{left:294.408000pt;}
.x5_c01069{left:295.920000pt;}
.x9_c01069{left:299.280000pt;}
.x4c_c01069{left:300.564868pt;}
.xf_c01069{left:302.813333pt;}
.x5b_c01069{left:303.706667pt;}
.x2f_c01069{left:307.521333pt;}
.x45_c01069{left:309.950245pt;}
.x17_c01069{left:313.200000pt;}
.x1e_c01069{left:314.292000pt;}
.x53_c01069{left:315.609389pt;}
.x4d_c01069{left:318.382731pt;}
.x3a_c01069{left:319.680000pt;}
.x2a_c01069{left:323.520000pt;}
.x5c_c01069{left:324.836000pt;}
.x6_c01069{left:328.080000pt;}
.x34_c01069{left:331.198667pt;}
.xa_c01069{left:333.120000pt;}
.x30_c01069{left:343.094667pt;}
.x54_c01069{left:349.930873pt;}
.x18_c01069{left:351.360000pt;}
.x7_c01069{left:354.000000pt;}
.x46_c01069{left:355.317021pt;}
.x5d_c01069{left:362.038667pt;}
.x23_c01069{left:363.421333pt;}
.x10_c01069{left:368.804000pt;}
.x61_c01069{left:372.345333pt;}
.x3f_c01069{left:373.578667pt;}
.x28_c01069{left:378.281491pt;}
.x31_c01069{left:379.804000pt;}
.x4e_c01069{left:382.169196pt;}
.x1f_c01069{left:384.657333pt;}
.x19_c01069{left:389.520000pt;}
.x65_c01069{left:391.110667pt;}
.x40_c01069{left:392.304000pt;}
.x55_c01069{left:393.373457pt;}
.x62_c01069{left:395.138667pt;}
.x32_c01069{left:404.701333pt;}
.x20_c01069{left:406.920000pt;}
.x26_c01069{left:416.015827pt;}
.x11_c01069{left:420.104000pt;}
.x56_c01069{left:430.815323pt;}
.x12_c01069{left:436.049333pt;}
.x35_c01069{left:443.278667pt;}
.x47_c01069{left:454.407667pt;}
.x68_c01069{left:484.080000pt;}
.x52_c01069{left:486.172000pt;}
.x66_c01069{left:549.662667pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.000000;font-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_c01070{transform:matrix(0.007575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007575,0.000000,0.000000,0.250000,0,0);}
.mb3_c01070{transform:matrix(0.015969,-0.000160,0.002500,0.249988,0,0);-ms-transform:matrix(0.015969,-0.000160,0.002500,0.249988,0,0);-webkit-transform:matrix(0.015969,-0.000160,0.002500,0.249988,0,0);}
.m29_c01070{transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018110,0.000000,0.000000,0.250000,0,0);}
.mda_c01070{transform:matrix(0.021708,-0.000326,0.003750,0.249972,0,0);-ms-transform:matrix(0.021708,-0.000326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.021708,-0.000326,0.003750,0.249972,0,0);}
.ma_c01070{transform:matrix(0.032524,-0.000293,0.002250,0.249990,0,0);-ms-transform:matrix(0.032524,-0.000293,0.002250,0.249990,0,0);-webkit-transform:matrix(0.032524,-0.000293,0.002250,0.249990,0,0);}
.m98_c01070{transform:matrix(0.040403,-0.000364,0.002250,0.249990,0,0);-ms-transform:matrix(0.040403,-0.000364,0.002250,0.249990,0,0);-webkit-transform:matrix(0.040403,-0.000364,0.002250,0.249990,0,0);}
.m45_c01070{transform:matrix(0.042025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042025,0.000000,0.000000,0.250000,0,0);}
.mc_c01070{transform:matrix(0.042408,-0.000382,0.002250,0.249990,0,0);-ms-transform:matrix(0.042408,-0.000382,0.002250,0.249990,0,0);-webkit-transform:matrix(0.042408,-0.000382,0.002250,0.249990,0,0);}
.m2_c01070{transform:matrix(0.049276,-0.000936,0.004749,0.249955,0,0);-ms-transform:matrix(0.049276,-0.000936,0.004749,0.249955,0,0);-webkit-transform:matrix(0.049276,-0.000936,0.004749,0.249955,0,0);}
.m36_c01070{transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053685,0.000000,0.000000,0.250000,0,0);}
.m90_c01070{transform:matrix(0.059798,-0.000538,0.002250,0.249990,0,0);-ms-transform:matrix(0.059798,-0.000538,0.002250,0.249990,0,0);-webkit-transform:matrix(0.059798,-0.000538,0.002250,0.249990,0,0);}
.m10_c01070{transform:matrix(0.059973,-0.000540,0.002250,0.249990,0,0);-ms-transform:matrix(0.059973,-0.000540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.059973,-0.000540,0.002250,0.249990,0,0);}
.m80_c01070{transform:matrix(0.067480,-0.002162,0.008004,0.249872,0,0);-ms-transform:matrix(0.067480,-0.002162,0.008004,0.249872,0,0);-webkit-transform:matrix(0.067480,-0.002162,0.008004,0.249872,0,0);}
.m70_c01070{transform:matrix(0.074165,-0.001928,0.006498,0.249916,0,0);-ms-transform:matrix(0.074165,-0.001928,0.006498,0.249916,0,0);-webkit-transform:matrix(0.074165,-0.001928,0.006498,0.249916,0,0);}
.m7b_c01070{transform:matrix(0.077440,-0.002481,0.008004,0.249872,0,0);-ms-transform:matrix(0.077440,-0.002481,0.008004,0.249872,0,0);-webkit-transform:matrix(0.077440,-0.002481,0.008004,0.249872,0,0);}
.m1_c01070{transform:matrix(0.082125,-0.001560,0.004749,0.249955,0,0);-ms-transform:matrix(0.082125,-0.001560,0.004749,0.249955,0,0);-webkit-transform:matrix(0.082125,-0.001560,0.004749,0.249955,0,0);}
.maf_c01070{transform:matrix(0.089726,-0.000897,0.002500,0.249988,0,0);-ms-transform:matrix(0.089726,-0.000897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.089726,-0.000897,0.002500,0.249988,0,0);}
.mf_c01070{transform:matrix(0.104891,-0.000944,0.002250,0.249990,0,0);-ms-transform:matrix(0.104891,-0.000944,0.002250,0.249990,0,0);-webkit-transform:matrix(0.104891,-0.000944,0.002250,0.249990,0,0);}
.m31_c01070{transform:matrix(0.107095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107095,0.000000,0.000000,0.250000,0,0);}
.me_c01070{transform:matrix(0.114995,-0.001035,0.002250,0.249990,0,0);-ms-transform:matrix(0.114995,-0.001035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.114995,-0.001035,0.002250,0.249990,0,0);}
.md_c01070{transform:matrix(0.119750,-0.001078,0.002250,0.249990,0,0);-ms-transform:matrix(0.119750,-0.001078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.119750,-0.001078,0.002250,0.249990,0,0);}
.m52_c01070{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);}
.m2e_c01070{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);}
.m8f_c01070{transform:matrix(0.152424,-0.001372,0.002250,0.249990,0,0);-ms-transform:matrix(0.152424,-0.001372,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152424,-0.001372,0.002250,0.249990,0,0);}
.m40_c01070{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);}
.mcb_c01070{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);}
.m17_c01070{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);}
.mbf_c01070{transform:matrix(0.156937,-0.003453,0.005499,0.249940,0,0);-ms-transform:matrix(0.156937,-0.003453,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156937,-0.003453,0.005499,0.249940,0,0);}
.mb7_c01070{transform:matrix(0.159772,-0.001598,0.002500,0.249988,0,0);-ms-transform:matrix(0.159772,-0.001598,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159772,-0.001598,0.002500,0.249988,0,0);}
.m8d_c01070{transform:matrix(0.160159,-0.001441,0.002250,0.249990,0,0);-ms-transform:matrix(0.160159,-0.001441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160159,-0.001441,0.002250,0.249990,0,0);}
.m33_c01070{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);}
.m42_c01070{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);}
.mcc_c01070{transform:matrix(0.166905,-0.003672,0.005499,0.249940,0,0);-ms-transform:matrix(0.166905,-0.003672,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166905,-0.003672,0.005499,0.249940,0,0);}
.mc3_c01070{transform:matrix(0.168429,-0.003705,0.005499,0.249940,0,0);-ms-transform:matrix(0.168429,-0.003705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168429,-0.003705,0.005499,0.249940,0,0);}
.m84_c01070{transform:matrix(0.169393,-0.005426,0.008004,0.249872,0,0);-ms-transform:matrix(0.169393,-0.005426,0.008004,0.249872,0,0);-webkit-transform:matrix(0.169393,-0.005426,0.008004,0.249872,0,0);}
.m83_c01070{transform:matrix(0.170048,-0.005447,0.008004,0.249872,0,0);-ms-transform:matrix(0.170048,-0.005447,0.008004,0.249872,0,0);-webkit-transform:matrix(0.170048,-0.005447,0.008004,0.249872,0,0);}
.m28_c01070{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);}
.mbd_c01070{transform:matrix(0.171833,-0.003780,0.005499,0.249940,0,0);-ms-transform:matrix(0.171833,-0.003780,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171833,-0.003780,0.005499,0.249940,0,0);}
.m1d_c01070{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);}
.m9c_c01070{transform:matrix(0.172353,-0.001551,0.002250,0.249990,0,0);-ms-transform:matrix(0.172353,-0.001551,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172353,-0.001551,0.002250,0.249990,0,0);}
.mc7_c01070{transform:matrix(0.172383,-0.003792,0.005499,0.249940,0,0);-ms-transform:matrix(0.172383,-0.003792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172383,-0.003792,0.005499,0.249940,0,0);}
.ma7_c01070{transform:matrix(0.172477,-0.004484,0.006498,0.249916,0,0);-ms-transform:matrix(0.172477,-0.004484,0.006498,0.249916,0,0);-webkit-transform:matrix(0.172477,-0.004484,0.006498,0.249916,0,0);}
.mac_c01070{transform:matrix(0.173636,-0.004515,0.006498,0.249916,0,0);-ms-transform:matrix(0.173636,-0.004515,0.006498,0.249916,0,0);-webkit-transform:matrix(0.173636,-0.004515,0.006498,0.249916,0,0);}
.m76_c01070{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);}
.ma0_c01070{transform:matrix(0.174088,-0.001567,0.002250,0.249990,0,0);-ms-transform:matrix(0.174088,-0.001567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174088,-0.001567,0.002250,0.249990,0,0);}
.m9d_c01070{transform:matrix(0.176243,-0.001586,0.002250,0.249990,0,0);-ms-transform:matrix(0.176243,-0.001586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176243,-0.001586,0.002250,0.249990,0,0);}
.md6_c01070{transform:matrix(0.176525,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176525,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176525,-0.002648,0.003750,0.249972,0,0);}
.m8c_c01070{transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177418,-0.001597,0.002250,0.249990,0,0);}
.mbc_c01070{transform:matrix(0.177832,-0.003912,0.005499,0.249940,0,0);-ms-transform:matrix(0.177832,-0.003912,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177832,-0.003912,0.005499,0.249940,0,0);}
.mcd_c01070{transform:matrix(0.178347,-0.003924,0.005499,0.249940,0,0);-ms-transform:matrix(0.178347,-0.003924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178347,-0.003924,0.005499,0.249940,0,0);}
.m8e_c01070{transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);-ms-transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178878,-0.001610,0.002250,0.249990,0,0);}
.mca_c01070{transform:matrix(0.179786,-0.003955,0.005499,0.249940,0,0);-ms-transform:matrix(0.179786,-0.003955,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179786,-0.003955,0.005499,0.249940,0,0);}
.m27_c01070{transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180295,0.000000,0.000000,0.250000,0,0);}
.m9e_c01070{transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);-ms-transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180418,-0.001624,0.002250,0.249990,0,0);}
.m68_c01070{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);}
.m5d_c01070{transform:matrix(0.182316,-0.004011,0.005499,0.249940,0,0);-ms-transform:matrix(0.182316,-0.004011,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182316,-0.004011,0.005499,0.249940,0,0);}
.m34_c01070{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);}
.m4a_c01070{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);}
.mc2_c01070{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);}
.m89_c01070{transform:matrix(0.182908,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182908,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182908,-0.001646,0.002250,0.249990,0,0);}
.m69_c01070{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);}
.m1e_c01070{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);}
.m9b_c01070{transform:matrix(0.184858,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184858,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184858,-0.001664,0.002250,0.249990,0,0);}
.mc8_c01070{transform:matrix(0.185020,-0.004070,0.005499,0.249940,0,0);-ms-transform:matrix(0.185020,-0.004070,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185020,-0.004070,0.005499,0.249940,0,0);}
.mb2_c01070{transform:matrix(0.185091,-0.001851,0.002500,0.249988,0,0);-ms-transform:matrix(0.185091,-0.001851,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185091,-0.001851,0.002500,0.249988,0,0);}
.m6_c01070{transform:matrix(0.185207,-0.001667,0.002250,0.249990,0,0);-ms-transform:matrix(0.185207,-0.001667,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185207,-0.001667,0.002250,0.249990,0,0);}
.m26_c01070{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);}
.m1b_c01070{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);}
.m67_c01070{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);}
.m7f_c01070{transform:matrix(0.189243,-0.006062,0.008004,0.249872,0,0);-ms-transform:matrix(0.189243,-0.006062,0.008004,0.249872,0,0);-webkit-transform:matrix(0.189243,-0.006062,0.008004,0.249872,0,0);}
.m6d_c01070{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);}
.m6f_c01070{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);}
.m6b_c01070{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);}
.m19_c01070{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);}
.m7_c01070{transform:matrix(0.190417,-0.001714,0.002250,0.249990,0,0);-ms-transform:matrix(0.190417,-0.001714,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190417,-0.001714,0.002250,0.249990,0,0);}
.m18_c01070{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);}
.m4c_c01070{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);}
.m3f_c01070{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);}
.mb0_c01070{transform:matrix(0.192375,-0.001924,0.002500,0.249988,0,0);-ms-transform:matrix(0.192375,-0.001924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192375,-0.001924,0.002500,0.249988,0,0);}
.md3_c01070{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);}
.m41_c01070{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);}
.mbb_c01070{transform:matrix(0.193813,-0.004264,0.005499,0.249940,0,0);-ms-transform:matrix(0.193813,-0.004264,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193813,-0.004264,0.005499,0.249940,0,0);}
.m64_c01070{transform:matrix(0.194228,-0.004273,0.005499,0.249940,0,0);-ms-transform:matrix(0.194228,-0.004273,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194228,-0.004273,0.005499,0.249940,0,0);}
.m6c_c01070{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);}
.m8_c01070{transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197472,-0.001777,0.002250,0.249990,0,0);}
.maa_c01070{transform:matrix(0.197568,-0.005137,0.006498,0.249916,0,0);-ms-transform:matrix(0.197568,-0.005137,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197568,-0.005137,0.006498,0.249916,0,0);}
.ma9_c01070{transform:matrix(0.197878,-0.005145,0.006498,0.249916,0,0);-ms-transform:matrix(0.197878,-0.005145,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197878,-0.005145,0.006498,0.249916,0,0);}
.mab_c01070{transform:matrix(0.197973,-0.005147,0.006498,0.249916,0,0);-ms-transform:matrix(0.197973,-0.005147,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197973,-0.005147,0.006498,0.249916,0,0);}
.mbe_c01070{transform:matrix(0.198367,-0.004364,0.005499,0.249940,0,0);-ms-transform:matrix(0.198367,-0.004364,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198367,-0.004364,0.005499,0.249940,0,0);}
.m81_c01070{transform:matrix(0.199668,-0.006396,0.008004,0.249872,0,0);-ms-transform:matrix(0.199668,-0.006396,0.008004,0.249872,0,0);-webkit-transform:matrix(0.199668,-0.006396,0.008004,0.249872,0,0);}
.m66_c01070{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);}
.m56_c01070{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);}
.m25_c01070{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);}
.m5f_c01070{transform:matrix(0.201391,-0.004431,0.005499,0.249940,0,0);-ms-transform:matrix(0.201391,-0.004431,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201391,-0.004431,0.005499,0.249940,0,0);}
.mc0_c01070{transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);-ms-transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201756,-0.004439,0.005499,0.249940,0,0);}
.m57_c01070{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);}
.md8_c01070{transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);}
.ma1_c01070{transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);-ms-transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203392,-0.001831,0.002250,0.249990,0,0);}
.m3d_c01070{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);}
.m6a_c01070{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);}
.m35_c01070{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);}
.m1a_c01070{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);}
.mb4_c01070{transform:matrix(0.207025,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.207025,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207025,-0.002070,0.002500,0.249988,0,0);}
.mc1_c01070{transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);-ms-transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);}
.m54_c01070{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);}
.md7_c01070{transform:matrix(0.209746,-0.003146,0.003750,0.249972,0,0);-ms-transform:matrix(0.209746,-0.003146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209746,-0.003146,0.003750,0.249972,0,0);}
.m85_c01070{transform:matrix(0.210872,-0.006755,0.008004,0.249872,0,0);-ms-transform:matrix(0.210872,-0.006755,0.008004,0.249872,0,0);-webkit-transform:matrix(0.210872,-0.006755,0.008004,0.249872,0,0);}
.m9f_c01070{transform:matrix(0.211696,-0.001905,0.002250,0.249990,0,0);-ms-transform:matrix(0.211696,-0.001905,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211696,-0.001905,0.002250,0.249990,0,0);}
.m3c_c01070{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);}
.md4_c01070{transform:matrix(0.215511,-0.003233,0.003750,0.249972,0,0);-ms-transform:matrix(0.215511,-0.003233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215511,-0.003233,0.003750,0.249972,0,0);}
.mba_c01070{transform:matrix(0.215778,-0.004747,0.005499,0.249940,0,0);-ms-transform:matrix(0.215778,-0.004747,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215778,-0.004747,0.005499,0.249940,0,0);}
.m60_c01070{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);}
.m55_c01070{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);}
.mc9_c01070{transform:matrix(0.219217,-0.004823,0.005499,0.249940,0,0);-ms-transform:matrix(0.219217,-0.004823,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219217,-0.004823,0.005499,0.249940,0,0);}
.m2f_c01070{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);}
.m8b_c01070{transform:matrix(0.221531,-0.001994,0.002250,0.249990,0,0);-ms-transform:matrix(0.221531,-0.001994,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221531,-0.001994,0.002250,0.249990,0,0);}
.m16_c01070{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);}
.ma6_c01070{transform:matrix(0.223454,-0.005810,0.006498,0.249916,0,0);-ms-transform:matrix(0.223454,-0.005810,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223454,-0.005810,0.006498,0.249916,0,0);}
.mb1_c01070{transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);-ms-transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225054,-0.002251,0.002500,0.249988,0,0);}
.md5_c01070{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);}
.m1c_c01070{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);}
.m7e_c01070{transform:matrix(0.228633,-0.007324,0.008004,0.249872,0,0);-ms-transform:matrix(0.228633,-0.007324,0.008004,0.249872,0,0);-webkit-transform:matrix(0.228633,-0.007324,0.008004,0.249872,0,0);}
.m46_c01070{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);}
.m63_c01070{transform:matrix(0.229654,-0.005052,0.005499,0.249940,0,0);-ms-transform:matrix(0.229654,-0.005052,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229654,-0.005052,0.005499,0.249940,0,0);}
.mc5_c01070{transform:matrix(0.230074,-0.005062,0.005499,0.249940,0,0);-ms-transform:matrix(0.230074,-0.005062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230074,-0.005062,0.005499,0.249940,0,0);}
.m82_c01070{transform:matrix(0.230587,-0.007386,0.008004,0.249872,0,0);-ms-transform:matrix(0.230587,-0.007386,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230587,-0.007386,0.008004,0.249872,0,0);}
.m47_c01070{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);}
.mc6_c01070{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);}
.m7c_c01070{transform:matrix(0.235309,-0.007537,0.008004,0.249872,0,0);-ms-transform:matrix(0.235309,-0.007537,0.008004,0.249872,0,0);-webkit-transform:matrix(0.235309,-0.007537,0.008004,0.249872,0,0);}
.mdb_c01070{transform:matrix(0.239223,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239223,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239223,-0.003588,0.003750,0.249972,0,0);}
.m44_c01070{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);}
.md2_c01070{transform:matrix(0.241063,-0.003616,0.003750,0.249972,0,0);-ms-transform:matrix(0.241063,-0.003616,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241063,-0.003616,0.003750,0.249972,0,0);}
.m49_c01070{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);}
.m61_c01070{transform:matrix(0.243826,-0.005364,0.005499,0.249940,0,0);-ms-transform:matrix(0.243826,-0.005364,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243826,-0.005364,0.005499,0.249940,0,0);}
.m32_c01070{transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244660,0.000000,0.000000,0.250000,0,0);}
.m3e_c01070{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);}
.m78_c01070{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m6e_c01070{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.md1_c01070{transform:matrix(0.252937,-0.003794,0.003750,0.249972,0,0);-ms-transform:matrix(0.252937,-0.003794,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252937,-0.003794,0.003750,0.249972,0,0);}
.m5e_c01070{transform:matrix(0.253249,-0.005571,0.005499,0.249940,0,0);-ms-transform:matrix(0.253249,-0.005571,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253249,-0.005571,0.005499,0.249940,0,0);}
.m30_c01070{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m23_c01070{transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);}
.mce_c01070{transform:matrix(0.258248,-0.005681,0.005499,0.249940,0,0);-ms-transform:matrix(0.258248,-0.005681,0.005499,0.249940,0,0);-webkit-transform:matrix(0.258248,-0.005681,0.005499,0.249940,0,0);}
.m48_c01070{transform:matrix(0.262655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262655,0.000000,0.000000,0.250000,0,0);}
.m13_c01070{transform:matrix(0.262804,-0.002365,0.002250,0.249990,0,0);-ms-transform:matrix(0.262804,-0.002365,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262804,-0.002365,0.002250,0.249990,0,0);}
.mb9_c01070{transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);-ms-transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);}
.m51_c01070{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);}
.m59_c01070{transform:matrix(0.272640,-0.004362,0.003999,0.249968,0,0);-ms-transform:matrix(0.272640,-0.004362,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272640,-0.004362,0.003999,0.249968,0,0);}
.ma3_c01070{transform:matrix(0.273308,-0.007106,0.006498,0.249916,0,0);-ms-transform:matrix(0.273308,-0.007106,0.006498,0.249916,0,0);-webkit-transform:matrix(0.273308,-0.007106,0.006498,0.249916,0,0);}
.mb5_c01070{transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);-ms-transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275376,-0.002754,0.002500,0.249988,0,0);}
.m4b_c01070{transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);}
.m97_c01070{transform:matrix(0.277769,-0.002500,0.002250,0.249990,0,0);-ms-transform:matrix(0.277769,-0.002500,0.002250,0.249990,0,0);-webkit-transform:matrix(0.277769,-0.002500,0.002250,0.249990,0,0);}
.m7d_c01070{transform:matrix(0.284659,-0.009118,0.008004,0.249872,0,0);-ms-transform:matrix(0.284659,-0.009118,0.008004,0.249872,0,0);-webkit-transform:matrix(0.284659,-0.009118,0.008004,0.249872,0,0);}
.m7a_c01070{transform:matrix(0.285064,-0.009131,0.008004,0.249872,0,0);-ms-transform:matrix(0.285064,-0.009131,0.008004,0.249872,0,0);-webkit-transform:matrix(0.285064,-0.009131,0.008004,0.249872,0,0);}
.m0_c01070{transform:matrix(0.286293,-0.005440,0.004749,0.249955,0,0);-ms-transform:matrix(0.286293,-0.005440,0.004749,0.249955,0,0);-webkit-transform:matrix(0.286293,-0.005440,0.004749,0.249955,0,0);}
.m37_c01070{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m3a_c01070{transform:matrix(0.288400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288400,0.000000,0.000000,0.250000,0,0);}
.m4d_c01070{transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288655,0.000000,0.000000,0.250000,0,0);}
.m2d_c01070{transform:matrix(0.290060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290060,0.000000,0.000000,0.250000,0,0);}
.m62_c01070{transform:matrix(0.291000,-0.006402,0.005499,0.249940,0,0);-ms-transform:matrix(0.291000,-0.006402,0.005499,0.249940,0,0);-webkit-transform:matrix(0.291000,-0.006402,0.005499,0.249940,0,0);}
.m53_c01070{transform:matrix(0.297850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297850,0.000000,0.000000,0.250000,0,0);}
.m2b_c01070{transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298510,0.000000,0.000000,0.250000,0,0);}
.m5c_c01070{transform:matrix(0.301347,-0.006630,0.005499,0.249940,0,0);-ms-transform:matrix(0.301347,-0.006630,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301347,-0.006630,0.005499,0.249940,0,0);}
.m95_c01070{transform:matrix(0.309722,-0.002788,0.002250,0.249990,0,0);-ms-transform:matrix(0.309722,-0.002788,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309722,-0.002788,0.002250,0.249990,0,0);}
.m3_c01070{transform:matrix(0.315128,-0.005987,0.004749,0.249955,0,0);-ms-transform:matrix(0.315128,-0.005987,0.004749,0.249955,0,0);-webkit-transform:matrix(0.315128,-0.005987,0.004749,0.249955,0,0);}
.m58_c01070{transform:matrix(0.316909,-0.005071,0.003999,0.249968,0,0);-ms-transform:matrix(0.316909,-0.005071,0.003999,0.249968,0,0);-webkit-transform:matrix(0.316909,-0.005071,0.003999,0.249968,0,0);}
.m9a_c01070{transform:matrix(0.317692,-0.002859,0.002250,0.249990,0,0);-ms-transform:matrix(0.317692,-0.002859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.317692,-0.002859,0.002250,0.249990,0,0);}
.m88_c01070{transform:matrix(0.321037,-0.002889,0.002250,0.249990,0,0);-ms-transform:matrix(0.321037,-0.002889,0.002250,0.249990,0,0);-webkit-transform:matrix(0.321037,-0.002889,0.002250,0.249990,0,0);}
.m12_c01070{transform:matrix(0.329417,-0.002965,0.002250,0.249990,0,0);-ms-transform:matrix(0.329417,-0.002965,0.002250,0.249990,0,0);-webkit-transform:matrix(0.329417,-0.002965,0.002250,0.249990,0,0);}
.m39_c01070{transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335265,0.000000,0.000000,0.250000,0,0);}
.m2c_c01070{transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337630,0.000000,0.000000,0.250000,0,0);}
.m9_c01070{transform:matrix(0.338496,-0.003046,0.002250,0.249990,0,0);-ms-transform:matrix(0.338496,-0.003046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.338496,-0.003046,0.002250,0.249990,0,0);}
.m5_c01070{transform:matrix(0.344246,-0.003098,0.002250,0.249990,0,0);-ms-transform:matrix(0.344246,-0.003098,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344246,-0.003098,0.002250,0.249990,0,0);}
.md0_c01070{transform:matrix(0.344816,-0.005172,0.003750,0.249972,0,0);-ms-transform:matrix(0.344816,-0.005172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344816,-0.005172,0.003750,0.249972,0,0);}
.m4e_c01070{transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);}
.m4f_c01070{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);}
.m96_c01070{transform:matrix(0.354316,-0.003189,0.002250,0.249990,0,0);-ms-transform:matrix(0.354316,-0.003189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.354316,-0.003189,0.002250,0.249990,0,0);}
.m93_c01070{transform:matrix(0.356386,-0.003207,0.002250,0.249990,0,0);-ms-transform:matrix(0.356386,-0.003207,0.002250,0.249990,0,0);-webkit-transform:matrix(0.356386,-0.003207,0.002250,0.249990,0,0);}
.m11_c01070{transform:matrix(0.357611,-0.003218,0.002250,0.249990,0,0);-ms-transform:matrix(0.357611,-0.003218,0.002250,0.249990,0,0);-webkit-transform:matrix(0.357611,-0.003218,0.002250,0.249990,0,0);}
.m21_c01070{transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364330,0.000000,0.000000,0.250000,0,0);}
.m3b_c01070{transform:matrix(0.371950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371950,0.000000,0.000000,0.250000,0,0);}
.m99_c01070{transform:matrix(0.380630,-0.003426,0.002250,0.249990,0,0);-ms-transform:matrix(0.380630,-0.003426,0.002250,0.249990,0,0);-webkit-transform:matrix(0.380630,-0.003426,0.002250,0.249990,0,0);}
.m94_c01070{transform:matrix(0.381990,-0.003438,0.002250,0.249990,0,0);-ms-transform:matrix(0.381990,-0.003438,0.002250,0.249990,0,0);-webkit-transform:matrix(0.381990,-0.003438,0.002250,0.249990,0,0);}
.m79_c01070{transform:matrix(0.401264,-0.012853,0.008004,0.249872,0,0);-ms-transform:matrix(0.401264,-0.012853,0.008004,0.249872,0,0);-webkit-transform:matrix(0.401264,-0.012853,0.008004,0.249872,0,0);}
.mb6_c01070{transform:matrix(0.406470,-0.004065,0.002500,0.249988,0,0);-ms-transform:matrix(0.406470,-0.004065,0.002500,0.249988,0,0);-webkit-transform:matrix(0.406470,-0.004065,0.002500,0.249988,0,0);}
.m24_c01070{transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);}
.ma8_c01070{transform:matrix(0.423062,-0.011000,0.006498,0.249916,0,0);-ms-transform:matrix(0.423062,-0.011000,0.006498,0.249916,0,0);-webkit-transform:matrix(0.423062,-0.011000,0.006498,0.249916,0,0);}
.m38_c01070{transform:matrix(0.428205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428205,0.000000,0.000000,0.250000,0,0);}
.m77_c01070{transform:matrix(0.436270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436270,0.000000,0.000000,0.250000,0,0);}
.m8a_c01070{transform:matrix(0.444032,-0.003996,0.002250,0.249990,0,0);-ms-transform:matrix(0.444032,-0.003996,0.002250,0.249990,0,0);-webkit-transform:matrix(0.444032,-0.003996,0.002250,0.249990,0,0);}
.m71_c01070{transform:matrix(0.449618,-0.011690,0.006498,0.249916,0,0);-ms-transform:matrix(0.449618,-0.011690,0.006498,0.249916,0,0);-webkit-transform:matrix(0.449618,-0.011690,0.006498,0.249916,0,0);}
.mae_c01070{transform:matrix(0.449868,-0.011697,0.006498,0.249916,0,0);-ms-transform:matrix(0.449868,-0.011697,0.006498,0.249916,0,0);-webkit-transform:matrix(0.449868,-0.011697,0.006498,0.249916,0,0);}
.m43_c01070{transform:matrix(0.450505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450505,0.000000,0.000000,0.250000,0,0);}
.mad_c01070{transform:matrix(0.453217,-0.011784,0.006498,0.249916,0,0);-ms-transform:matrix(0.453217,-0.011784,0.006498,0.249916,0,0);-webkit-transform:matrix(0.453217,-0.011784,0.006498,0.249916,0,0);}
.m87_c01070{transform:matrix(0.465876,-0.004193,0.002250,0.249990,0,0);-ms-transform:matrix(0.465876,-0.004193,0.002250,0.249990,0,0);-webkit-transform:matrix(0.465876,-0.004193,0.002250,0.249990,0,0);}
.m4_c01070{transform:matrix(0.481056,-0.004329,0.002250,0.249990,0,0);-ms-transform:matrix(0.481056,-0.004329,0.002250,0.249990,0,0);-webkit-transform:matrix(0.481056,-0.004329,0.002250,0.249990,0,0);}
.m91_c01070{transform:matrix(0.482230,-0.004340,0.002250,0.249990,0,0);-ms-transform:matrix(0.482230,-0.004340,0.002250,0.249990,0,0);-webkit-transform:matrix(0.482230,-0.004340,0.002250,0.249990,0,0);}
.m50_c01070{transform:matrix(0.483015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483015,0.000000,0.000000,0.250000,0,0);}
.ma2_c01070{transform:matrix(0.509429,-0.004585,0.002250,0.249990,0,0);-ms-transform:matrix(0.509429,-0.004585,0.002250,0.249990,0,0);-webkit-transform:matrix(0.509429,-0.004585,0.002250,0.249990,0,0);}
.mc4_c01070{transform:matrix(0.521379,-0.011470,0.005499,0.249940,0,0);-ms-transform:matrix(0.521379,-0.011470,0.005499,0.249940,0,0);-webkit-transform:matrix(0.521379,-0.011470,0.005499,0.249940,0,0);}
.m75_c01070{transform:matrix(0.528291,-0.013736,0.006498,0.249916,0,0);-ms-transform:matrix(0.528291,-0.013736,0.006498,0.249916,0,0);-webkit-transform:matrix(0.528291,-0.013736,0.006498,0.249916,0,0);}
.m72_c01070{transform:matrix(0.534709,-0.013902,0.006498,0.249916,0,0);-ms-transform:matrix(0.534709,-0.013902,0.006498,0.249916,0,0);-webkit-transform:matrix(0.534709,-0.013902,0.006498,0.249916,0,0);}
.m20_c01070{transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);}
.ma4_c01070{transform:matrix(0.547850,-0.014244,0.006498,0.249916,0,0);-ms-transform:matrix(0.547850,-0.014244,0.006498,0.249916,0,0);-webkit-transform:matrix(0.547850,-0.014244,0.006498,0.249916,0,0);}
.m74_c01070{transform:matrix(0.614972,-0.015989,0.006498,0.249916,0,0);-ms-transform:matrix(0.614972,-0.015989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.614972,-0.015989,0.006498,0.249916,0,0);}
.m86_c01070{transform:matrix(0.650961,-0.020852,0.008004,0.249872,0,0);-ms-transform:matrix(0.650961,-0.020852,0.008004,0.249872,0,0);-webkit-transform:matrix(0.650961,-0.020852,0.008004,0.249872,0,0);}
.m2a_c01070{transform:matrix(0.654810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654810,0.000000,0.000000,0.250000,0,0);}
.m15_c01070{transform:matrix(0.658290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658290,0.000000,0.000000,0.250000,0,0);}
.m5a_c01070{transform:matrix(0.666740,-0.010668,0.003999,0.249968,0,0);-ms-transform:matrix(0.666740,-0.010668,0.003999,0.249968,0,0);-webkit-transform:matrix(0.666740,-0.010668,0.003999,0.249968,0,0);}
.m14_c01070{transform:matrix(0.713146,-0.006418,0.002250,0.249990,0,0);-ms-transform:matrix(0.713146,-0.006418,0.002250,0.249990,0,0);-webkit-transform:matrix(0.713146,-0.006418,0.002250,0.249990,0,0);}
.m73_c01070{transform:matrix(0.796341,-0.020705,0.006498,0.249916,0,0);-ms-transform:matrix(0.796341,-0.020705,0.006498,0.249916,0,0);-webkit-transform:matrix(0.796341,-0.020705,0.006498,0.249916,0,0);}
.m1f_c01070{transform:matrix(0.800250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800250,0.000000,0.000000,0.250000,0,0);}
.mcf_c01070{transform:matrix(0.808174,-0.017780,0.005499,0.249940,0,0);-ms-transform:matrix(0.808174,-0.017780,0.005499,0.249940,0,0);-webkit-transform:matrix(0.808174,-0.017780,0.005499,0.249940,0,0);}
.mb8_c01070{transform:matrix(0.857413,-0.018863,0.005499,0.249940,0,0);-ms-transform:matrix(0.857413,-0.018863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.857413,-0.018863,0.005499,0.249940,0,0);}
.ma5_c01070{transform:matrix(0.960221,-0.024966,0.006498,0.249916,0,0);-ms-transform:matrix(0.960221,-0.024966,0.006498,0.249916,0,0);-webkit-transform:matrix(0.960221,-0.024966,0.006498,0.249916,0,0);}
.m5b_c01070{transform:matrix(0.987156,-0.021717,0.005499,0.249940,0,0);-ms-transform:matrix(0.987156,-0.021717,0.005499,0.249940,0,0);-webkit-transform:matrix(0.987156,-0.021717,0.005499,0.249940,0,0);}
.mb_c01070{transform:matrix(1.038778,-0.009349,0.002250,0.249990,0,0);-ms-transform:matrix(1.038778,-0.009349,0.002250,0.249990,0,0);-webkit-transform:matrix(1.038778,-0.009349,0.002250,0.249990,0,0);}
.m92_c01070{transform:matrix(1.180697,-0.010626,0.002250,0.249990,0,0);-ms-transform:matrix(1.180697,-0.010626,0.002250,0.249990,0,0);-webkit-transform:matrix(1.180697,-0.010626,0.002250,0.249990,0,0);}
.m65_c01070{transform:matrix(1.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190200,0.000000,0.000000,0.250000,0,0);}
.md9_c01070{transform:matrix(1.484588,-0.022269,0.003750,0.249972,0,0);-ms-transform:matrix(1.484588,-0.022269,0.003750,0.249972,0,0);-webkit-transform:matrix(1.484588,-0.022269,0.003750,0.249972,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls0_c01070{letter-spacing:0.000000px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:0.000000px;}
.fc0_c01070{color:transparent;}
.fs3_c01070{font-size:26.251063px;}
.fs13_c01070{font-size:32.550000px;}
.fsb_c01070{font-size:36.750000px;}
.fs1_c01070{font-size:36.756633px;}
.fsf_c01070{font-size:37.800000px;}
.fsc_c01070{font-size:45.155779px;}
.fs16_c01070{font-size:47.251914px;}
.fs1d_c01070{font-size:49.355552px;}
.fse_c01070{font-size:49.361941px;}
.fs18_c01070{font-size:58.819871px;}
.fsd_c01070{font-size:60.914736px;}
.fs14_c01070{font-size:65.068256px;}
.fs9_c01070{font-size:66.150000px;}
.fs1b_c01070{font-size:66.166006px;}
.fs19_c01070{font-size:67.222710px;}
.fsa_c01070{font-size:68.250000px;}
.fs17_c01070{font-size:70.352849px;}
.fs1e_c01070{font-size:70.357914px;}
.fs1c_c01070{font-size:71.417277px;}
.fs10_c01070{font-size:72.450000px;}
.fs4_c01070{font-size:73.500000px;}
.fs15_c01070{font-size:73.502977px;}
.fs6_c01070{font-size:74.550000px;}
.fs1a_c01070{font-size:75.603780px;}
.fs8_c01070{font-size:92.400000px;}
.fs12_c01070{font-size:92.431226px;}
.fs5_c01070{font-size:100.800000px;}
.fs7_c01070{font-size:101.850000px;}
.fs2_c01070{font-size:126.005103px;}
.fs11_c01070{font-size:141.797903px;}
.fs0_c01070{font-size:204.786954px;}
.y0_c01070{bottom:0.000000px;}
.yd1_c01070{bottom:128.253180px;}
.yd2_c01070{bottom:135.146858px;}
.yc6_c01070{bottom:159.301500px;}
.yc7_c01070{bottom:160.355423px;}
.yc8_c01070{bottom:160.672313px;}
.yc9_c01070{bottom:161.538135px;}
.yca_c01070{bottom:161.789258px;}
.ycb_c01070{bottom:162.287543px;}
.ycc_c01070{bottom:162.931785px;}
.ycd_c01070{bottom:163.599720px;}
.yce_c01070{bottom:164.057325px;}
.ycf_c01070{bottom:164.300483px;}
.yd0_c01070{bottom:167.002080px;}
.ybb_c01070{bottom:376.379748px;}
.ybc_c01070{bottom:378.565749px;}
.ybd_c01070{bottom:379.216167px;}
.ybe_c01070{bottom:380.163846px;}
.ybf_c01070{bottom:381.052182px;}
.yc0_c01070{bottom:381.564852px;}
.yc1_c01070{bottom:382.380378px;}
.yc2_c01070{bottom:383.066853px;}
.yc3_c01070{bottom:383.761464px;}
.yc4_c01070{bottom:385.300035px;}
.yc5_c01070{bottom:387.126675px;}
.yae_c01070{bottom:398.533500px;}
.yaf_c01070{bottom:400.528647px;}
.yb0_c01070{bottom:401.453637px;}
.yb1_c01070{bottom:402.424497px;}
.yb2_c01070{bottom:403.532670px;}
.yb3_c01070{bottom:404.057733px;}
.yb4_c01070{bottom:405.073374px;}
.yb5_c01070{bottom:405.564315px;}
.yb6_c01070{bottom:406.075287px;}
.yb7_c01070{bottom:406.766373px;}
.yb8_c01070{bottom:407.194482px;}
.yb9_c01070{bottom:407.812341px;}
.yba_c01070{bottom:410.910447px;}
.ya5_c01070{bottom:425.791500px;}
.ya6_c01070{bottom:426.674655px;}
.ya7_c01070{bottom:426.950955px;}
.ya8_c01070{bottom:427.251150px;}
.ya9_c01070{bottom:427.599645px;}
.yaa_c01070{bottom:427.764495px;}
.yab_c01070{bottom:428.482500px;}
.yac_c01070{bottom:428.730990px;}
.yad_c01070{bottom:429.365055px;}
.y9b_c01070{bottom:467.911788px;}
.y9c_c01070{bottom:469.341465px;}
.y9d_c01070{bottom:470.404680px;}
.y9e_c01070{bottom:470.640384px;}
.y9f_c01070{bottom:471.489201px;}
.ya0_c01070{bottom:472.194675px;}
.ya1_c01070{bottom:472.912128px;}
.ya2_c01070{bottom:473.677713px;}
.ya3_c01070{bottom:474.115992px;}
.ya4_c01070{bottom:477.401472px;}
.y90_c01070{bottom:488.978615px;}
.y99_c01070{bottom:489.516000px;}
.y91_c01070{bottom:491.160174px;}
.y92_c01070{bottom:492.441653px;}
.y93_c01070{bottom:493.341734px;}
.y94_c01070{bottom:493.953558px;}
.y95_c01070{bottom:495.158470px;}
.y96_c01070{bottom:496.557985px;}
.y97_c01070{bottom:498.230520px;}
.y98_c01070{bottom:500.083513px;}
.y9a_c01070{bottom:504.181209px;}
.y88_c01070{bottom:508.716729px;}
.y89_c01070{bottom:516.597793px;}
.y8a_c01070{bottom:517.265457px;}
.y8b_c01070{bottom:517.945739px;}
.y8c_c01070{bottom:518.498718px;}
.y8d_c01070{bottom:519.112194px;}
.y8e_c01070{bottom:526.709406px;}
.y8f_c01070{bottom:526.774064px;}
.y7d_c01070{bottom:544.320000px;}
.y7e_c01070{bottom:544.754862px;}
.y7f_c01070{bottom:545.666314px;}
.y80_c01070{bottom:546.023551px;}
.y81_c01070{bottom:546.777216px;}
.y82_c01070{bottom:547.095532px;}
.y83_c01070{bottom:547.544907px;}
.y84_c01070{bottom:547.795184px;}
.y85_c01070{bottom:548.137868px;}
.y86_c01070{bottom:549.056407px;}
.y87_c01070{bottom:549.329715px;}
.y6f_c01070{bottom:552.709500px;}
.y70_c01070{bottom:553.235772px;}
.y71_c01070{bottom:554.499948px;}
.y72_c01070{bottom:555.646668px;}
.y73_c01070{bottom:556.545612px;}
.y74_c01070{bottom:557.731164px;}
.y75_c01070{bottom:560.464236px;}
.y6d_c01070{bottom:561.586686px;}
.y76_c01070{bottom:562.022556px;}
.y77_c01070{bottom:562.520508px;}
.y78_c01070{bottom:563.726460px;}
.y79_c01070{bottom:564.876396px;}
.y7a_c01070{bottom:566.120748px;}
.y7b_c01070{bottom:566.699340px;}
.y7c_c01070{bottom:570.887532px;}
.y69_c01070{bottom:582.391962px;}
.y6a_c01070{bottom:585.572238px;}
.y6b_c01070{bottom:588.938631px;}
.y6c_c01070{bottom:593.079675px;}
.y67_c01070{bottom:599.674500px;}
.y5b_c01070{bottom:605.065185px;}
.y5d_c01070{bottom:606.964500px;}
.y5e_c01070{bottom:607.854000px;}
.y5f_c01070{bottom:608.466000px;}
.y60_c01070{bottom:609.025500px;}
.y61_c01070{bottom:609.358500px;}
.y62_c01070{bottom:609.880500px;}
.y63_c01070{bottom:610.492500px;}
.y64_c01070{bottom:610.995000px;}
.y65_c01070{bottom:611.295000px;}
.y66_c01070{bottom:611.940000px;}
.y68_c01070{bottom:614.233551px;}
.y52_c01070{bottom:626.685000px;}
.y53_c01070{bottom:628.643352px;}
.y54_c01070{bottom:629.279427px;}
.y5c_c01070{bottom:629.793000px;}
.y55_c01070{bottom:630.337803px;}
.y56_c01070{bottom:630.960843px;}
.y57_c01070{bottom:631.950744px;}
.y58_c01070{bottom:633.057795px;}
.y59_c01070{bottom:633.390996px;}
.y5a_c01070{bottom:634.033011px;}
.y6e_c01070{bottom:637.881000px;}
.y4b_c01070{bottom:652.848000px;}
.y4c_c01070{bottom:653.862000px;}
.y4d_c01070{bottom:654.267000px;}
.y4e_c01070{bottom:654.766500px;}
.y4f_c01070{bottom:656.641500px;}
.y50_c01070{bottom:657.347292px;}
.y51_c01070{bottom:660.494436px;}
.y48_c01070{bottom:664.731000px;}
.y49_c01070{bottom:666.897000px;}
.y4a_c01070{bottom:668.808000px;}
.y3b_c01070{bottom:673.383000px;}
.y3c_c01070{bottom:674.808000px;}
.y3d_c01070{bottom:675.058500px;}
.y3e_c01070{bottom:676.206000px;}
.y3f_c01070{bottom:677.512500px;}
.y40_c01070{bottom:677.926500px;}
.y41_c01070{bottom:678.570000px;}
.y42_c01070{bottom:678.840000px;}
.y43_c01070{bottom:679.621500px;}
.y44_c01070{bottom:680.337000px;}
.y45_c01070{bottom:681.708000px;}
.y46_c01070{bottom:681.907500px;}
.y47_c01070{bottom:683.821500px;}
.y2f_c01070{bottom:695.802000px;}
.y30_c01070{bottom:697.240500px;}
.y31_c01070{bottom:697.911000px;}
.y32_c01070{bottom:698.506500px;}
.y33_c01070{bottom:699.270000px;}
.y34_c01070{bottom:699.825000px;}
.y35_c01070{bottom:700.902000px;}
.y36_c01070{bottom:701.374500px;}
.y37_c01070{bottom:702.375000px;}
.y38_c01070{bottom:702.924000px;}
.y39_c01070{bottom:705.010500px;}
.y3a_c01070{bottom:706.278000px;}
.y27_c01070{bottom:720.900000px;}
.y28_c01070{bottom:722.743500px;}
.y29_c01070{bottom:723.843000px;}
.y2a_c01070{bottom:724.276500px;}
.y2b_c01070{bottom:724.564500px;}
.y2c_c01070{bottom:724.977000px;}
.y2d_c01070{bottom:726.288000px;}
.y2e_c01070{bottom:727.153500px;}
.y25_c01070{bottom:731.968500px;}
.y26_c01070{bottom:735.385500px;}
.y22_c01070{bottom:740.329500px;}
.y23_c01070{bottom:746.122500px;}
.y24_c01070{bottom:753.783000px;}
.y1b_c01070{bottom:765.183000px;}
.y1c_c01070{bottom:766.447500px;}
.y1d_c01070{bottom:766.965000px;}
.y1e_c01070{bottom:767.626500px;}
.y1f_c01070{bottom:768.300000px;}
.y20_c01070{bottom:770.451000px;}
.y21_c01070{bottom:773.062500px;}
.y17_c01070{bottom:790.293000px;}
.y18_c01070{bottom:792.711000px;}
.y19_c01070{bottom:795.258000px;}
.y1a_c01070{bottom:796.468500px;}
.y16_c01070{bottom:819.652500px;}
.ya_c01070{bottom:828.090000px;}
.yb_c01070{bottom:828.361579px;}
.yc_c01070{bottom:828.799182px;}
.yd_c01070{bottom:829.630080px;}
.ye_c01070{bottom:830.410258px;}
.yf_c01070{bottom:830.621682px;}
.y10_c01070{bottom:831.020161px;}
.y11_c01070{bottom:831.178125px;}
.y12_c01070{bottom:831.399295px;}
.y13_c01070{bottom:832.577845px;}
.y14_c01070{bottom:832.813758px;}
.y15_c01070{bottom:833.339934px;}
.y5_c01070{bottom:859.681500px;}
.y6_c01070{bottom:860.918707px;}
.y7_c01070{bottom:862.813500px;}
.y8_c01070{bottom:863.379731px;}
.y9_c01070{bottom:864.142440px;}
.y2_c01070{bottom:893.739762px;}
.y3_c01070{bottom:893.740250px;}
.y4_c01070{bottom:893.740344px;}
.y1_c01070{bottom:896.976000px;}
.h5_c01070{height:26.251063px;}
.h15_c01070{height:32.550000px;}
.hd_c01070{height:36.750000px;}
.h3_c01070{height:36.756633px;}
.h11_c01070{height:37.800000px;}
.he_c01070{height:45.155779px;}
.h18_c01070{height:47.251914px;}
.h1f_c01070{height:49.355552px;}
.h10_c01070{height:49.361941px;}
.h1a_c01070{height:58.819871px;}
.hf_c01070{height:60.914736px;}
.h16_c01070{height:65.068256px;}
.hb_c01070{height:66.150000px;}
.h1d_c01070{height:66.166006px;}
.h1b_c01070{height:67.222710px;}
.hc_c01070{height:68.250000px;}
.h19_c01070{height:70.352849px;}
.h20_c01070{height:70.357914px;}
.h1e_c01070{height:71.417277px;}
.h12_c01070{height:72.450000px;}
.h6_c01070{height:73.500000px;}
.h17_c01070{height:73.502977px;}
.h8_c01070{height:74.550000px;}
.h1c_c01070{height:75.603780px;}
.ha_c01070{height:92.400000px;}
.h14_c01070{height:92.431226px;}
.h7_c01070{height:100.800000px;}
.h9_c01070{height:101.850000px;}
.h4_c01070{height:126.005103px;}
.h13_c01070{height:141.797903px;}
.h2_c01070{height:204.786954px;}
.h1_c01070{height:1005.000000px;}
.h0_c01070{height:1005.150000px;}
.w1_c01070{width:762.750000px;}
.w0_c01070{width:763.020000px;}
.x0_c01070{left:0.000000px;}
.xa_c01070{left:37.867500px;}
.x16_c01070{left:51.300000px;}
.x5_c01070{left:53.664000px;}
.x1_c01070{left:55.059000px;}
.x60_c01070{left:56.833950px;}
.x2_c01070{left:58.319643px;}
.x6e_c01070{left:60.304500px;}
.x50_c01070{left:61.452000px;}
.x69_c01070{left:62.827149px;}
.x30_c01070{left:66.867000px;}
.xb_c01070{left:68.043000px;}
.x53_c01070{left:70.249554px;}
.x3_c01070{left:99.096849px;}
.x54_c01070{left:109.715548px;}
.x59_c01070{left:110.751000px;}
.xc_c01070{left:116.665500px;}
.x83_c01070{left:129.762000px;}
.x3a_c01070{left:131.317500px;}
.x17_c01070{left:138.780000px;}
.x23_c01070{left:143.010000px;}
.x3b_c01070{left:145.224000px;}
.x6a_c01070{left:146.911305px;}
.x6f_c01070{left:148.620000px;}
.x84_c01070{left:150.888000px;}
.x18_c01070{left:168.480000px;}
.x7d_c01070{left:170.953779px;}
.x46_c01070{left:172.611000px;}
.x70_c01070{left:176.250000px;}
.x31_c01070{left:177.849000px;}
.x24_c01070{left:180.015000px;}
.x6_c01070{left:191.131500px;}
.x63_c01070{left:198.983427px;}
.x4c_c01070{left:204.292500px;}
.x71_c01070{left:206.269500px;}
.xd_c01070{left:208.987500px;}
.x55_c01070{left:210.590073px;}
.x5a_c01070{left:212.023500px;}
.x2a_c01070{left:218.758500px;}
.x47_c01070{left:220.719000px;}
.x51_c01070{left:222.340098px;}
.x85_c01070{left:225.351000px;}
.x25_c01070{left:227.278500px;}
.x77_c01070{left:234.744000px;}
.x64_c01070{left:236.487365px;}
.x72_c01070{left:241.119000px;}
.x4d_c01070{left:245.094000px;}
.x32_c01070{left:249.381000px;}
.x19_c01070{left:251.910000px;}
.x7e_c01070{left:255.122856px;}
.x73_c01070{left:257.604000px;}
.x65_c01070{left:261.964422px;}
.x20_c01070{left:273.415500px;}
.x26_c01070{left:275.401500px;}
.x33_c01070{left:278.628000px;}
.x3c_c01070{left:281.553000px;}
.x78_c01070{left:285.115500px;}
.x48_c01070{left:294.034500px;}
.xe_c01070{left:295.674000px;}
.x28_c01070{left:297.163500px;}
.x7f_c01070{left:301.913958px;}
.x61_c01070{left:303.123474px;}
.x3d_c01070{left:304.554000px;}
.x79_c01070{left:308.982000px;}
.x66_c01070{left:312.170145px;}
.x6b_c01070{left:314.785578px;}
.x1a_c01070{left:316.440000px;}
.xf_c01070{left:319.165500px;}
.x62_c01070{left:323.970654px;}
.x74_c01070{left:329.404500px;}
.x34_c01070{left:335.328000px;}
.x4e_c01070{left:339.270000px;}
.x3e_c01070{left:340.341000px;}
.x49_c01070{left:344.355000px;}
.x86_c01070{left:346.048500px;}
.x1b_c01070{left:350.190000px;}
.x75_c01070{left:354.253500px;}
.x3f_c01070{left:355.360500px;}
.x6c_c01070{left:356.985945px;}
.x2b_c01070{left:358.180500px;}
.x35_c01070{left:360.169500px;}
.x43_c01070{left:361.545000px;}
.x10_c01070{left:363.441000px;}
.x5b_c01070{left:370.825500px;}
.x80_c01070{left:371.836578px;}
.x87_c01070{left:376.555500px;}
.x45_c01070{left:378.408000px;}
.x11_c01070{left:380.992500px;}
.x2c_c01070{left:384.340500px;}
.x4a_c01070{left:388.683000px;}
.x88_c01070{left:392.766000px;}
.x56_c01070{left:397.755720px;}
.x1c_c01070{left:398.790000px;}
.x7_c01070{left:401.664000px;}
.x12_c01070{left:405.567000px;}
.x81_c01070{left:407.951454px;}
.x36_c01070{left:412.821000px;}
.x76_c01070{left:417.660000px;}
.x5c_c01070{left:420.756000px;}
.x2d_c01070{left:421.902000px;}
.x6d_c01070{left:427.766481px;}
.x27_c01070{left:429.001500px;}
.x7a_c01070{left:432.102000px;}
.x4f_c01070{left:433.564500px;}
.x1d_c01070{left:438.750000px;}
.x67_c01070{left:440.158365px;}
.x37_c01070{left:441.721500px;}
.x82_c01070{left:444.504363px;}
.x5d_c01070{left:448.564500px;}
.x7b_c01070{left:451.561500px;}
.x52_c01070{left:461.160000px;}
.x8_c01070{left:464.578500px;}
.x57_c01070{left:472.502398px;}
.x4b_c01070{left:474.660000px;}
.x1e_c01070{left:476.550000px;}
.x7c_c01070{left:479.646000px;}
.x5e_c01070{left:486.640500px;}
.x58_c01070{left:490.565317px;}
.x21_c01070{left:504.937500px;}
.x40_c01070{left:514.653000px;}
.x68_c01070{left:517.369443px;}
.x41_c01070{left:525.720000px;}
.x13_c01070{left:536.517000px;}
.x2e_c01070{left:541.063500px;}
.x9_c01070{left:549.324000px;}
.x38_c01070{left:551.551500px;}
.x14_c01070{left:562.729500px;}
.x89_c01070{left:572.872500px;}
.x5f_c01070{left:588.700500px;}
.x1f_c01070{left:613.440000px;}
.x22_c01070{left:614.998500px;}
.x29_c01070{left:616.359000px;}
.x39_c01070{left:618.294000px;}
.x2f_c01070{left:619.740000px;}
.x15_c01070{left:621.193500px;}
.x4_c01070{left:626.502672px;}
.x42_c01070{left:632.070000px;}
.x44_c01070{left:634.560000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:0.000000pt;}
.fs3_c01070{font-size:23.334278pt;}
.fs13_c01070{font-size:28.933333pt;}
.fsb_c01070{font-size:32.666667pt;}
.fs1_c01070{font-size:32.672562pt;}
.fsf_c01070{font-size:33.600000pt;}
.fsc_c01070{font-size:40.138470pt;}
.fs16_c01070{font-size:42.001701pt;}
.fs1d_c01070{font-size:43.871601pt;}
.fse_c01070{font-size:43.877281pt;}
.fs18_c01070{font-size:52.284330pt;}
.fsd_c01070{font-size:54.146432pt;}
.fs14_c01070{font-size:57.838450pt;}
.fs9_c01070{font-size:58.800000pt;}
.fs1b_c01070{font-size:58.814228pt;}
.fs19_c01070{font-size:59.753520pt;}
.fsa_c01070{font-size:60.666667pt;}
.fs17_c01070{font-size:62.535866pt;}
.fs1e_c01070{font-size:62.540368pt;}
.fs1c_c01070{font-size:63.482024pt;}
.fs10_c01070{font-size:64.400000pt;}
.fs4_c01070{font-size:65.333333pt;}
.fs15_c01070{font-size:65.335979pt;}
.fs6_c01070{font-size:66.266667pt;}
.fs1a_c01070{font-size:67.203360pt;}
.fs8_c01070{font-size:82.133333pt;}
.fs12_c01070{font-size:82.161090pt;}
.fs5_c01070{font-size:89.600000pt;}
.fs7_c01070{font-size:90.533333pt;}
.fs2_c01070{font-size:112.004536pt;}
.fs11_c01070{font-size:126.042581pt;}
.fs0_c01070{font-size:182.032848pt;}
.y0_c01070{bottom:0.000000pt;}
.yd1_c01070{bottom:114.002827pt;}
.yd2_c01070{bottom:120.130540pt;}
.yc6_c01070{bottom:141.601333pt;}
.yc7_c01070{bottom:142.538153pt;}
.yc8_c01070{bottom:142.819833pt;}
.yc9_c01070{bottom:143.589453pt;}
.yca_c01070{bottom:143.812673pt;}
.ycb_c01070{bottom:144.255593pt;}
.ycc_c01070{bottom:144.828253pt;}
.ycd_c01070{bottom:145.421973pt;}
.yce_c01070{bottom:145.828733pt;}
.ycf_c01070{bottom:146.044873pt;}
.yd0_c01070{bottom:148.446293pt;}
.ybb_c01070{bottom:334.559776pt;}
.ybc_c01070{bottom:336.502888pt;}
.ybd_c01070{bottom:337.081037pt;}
.ybe_c01070{bottom:337.923419pt;}
.ybf_c01070{bottom:338.713051pt;}
.yc0_c01070{bottom:339.168757pt;}
.yc1_c01070{bottom:339.893669pt;}
.yc2_c01070{bottom:340.503869pt;}
.yc3_c01070{bottom:341.121301pt;}
.yc4_c01070{bottom:342.488920pt;}
.yc5_c01070{bottom:344.112600pt;}
.yae_c01070{bottom:354.252000pt;}
.yaf_c01070{bottom:356.025464pt;}
.yb0_c01070{bottom:356.847677pt;}
.yb1_c01070{bottom:357.710664pt;}
.yb2_c01070{bottom:358.695707pt;}
.yb3_c01070{bottom:359.162429pt;}
.yb4_c01070{bottom:360.065221pt;}
.yb5_c01070{bottom:360.501613pt;}
.yb6_c01070{bottom:360.955811pt;}
.yb7_c01070{bottom:361.570109pt;}
.yb8_c01070{bottom:361.950651pt;}
.yb9_c01070{bottom:362.499859pt;}
.yba_c01070{bottom:365.253731pt;}
.ya5_c01070{bottom:378.481333pt;}
.ya6_c01070{bottom:379.266360pt;}
.ya7_c01070{bottom:379.511960pt;}
.ya8_c01070{bottom:379.778800pt;}
.ya9_c01070{bottom:380.088573pt;}
.yaa_c01070{bottom:380.235107pt;}
.yab_c01070{bottom:380.873333pt;}
.yac_c01070{bottom:381.094213pt;}
.yad_c01070{bottom:381.657827pt;}
.y9b_c01070{bottom:415.921589pt;}
.y9c_c01070{bottom:417.192413pt;}
.y9d_c01070{bottom:418.137493pt;}
.y9e_c01070{bottom:418.347008pt;}
.y9f_c01070{bottom:419.101512pt;}
.ya0_c01070{bottom:419.728600pt;}
.ya1_c01070{bottom:420.366336pt;}
.ya2_c01070{bottom:421.046856pt;}
.ya3_c01070{bottom:421.436437pt;}
.ya4_c01070{bottom:424.356864pt;}
.y90_c01070{bottom:434.647657pt;}
.y99_c01070{bottom:435.125333pt;}
.y91_c01070{bottom:436.586821pt;}
.y92_c01070{bottom:437.725913pt;}
.y93_c01070{bottom:438.525985pt;}
.y94_c01070{bottom:439.069829pt;}
.y95_c01070{bottom:440.140863pt;}
.y96_c01070{bottom:441.384876pt;}
.y97_c01070{bottom:442.871573pt;}
.y98_c01070{bottom:444.518679pt;}
.y9a_c01070{bottom:448.161075pt;}
.y88_c01070{bottom:452.192648pt;}
.y89_c01070{bottom:459.198039pt;}
.y8a_c01070{bottom:459.791517pt;}
.y8b_c01070{bottom:460.396212pt;}
.y8c_c01070{bottom:460.887749pt;}
.y8d_c01070{bottom:461.433061pt;}
.y8e_c01070{bottom:468.186139pt;}
.y8f_c01070{bottom:468.243612pt;}
.y7d_c01070{bottom:483.840000pt;}
.y7e_c01070{bottom:484.226544pt;}
.y7f_c01070{bottom:485.036724pt;}
.y80_c01070{bottom:485.354268pt;}
.y81_c01070{bottom:486.024192pt;}
.y82_c01070{bottom:486.307140pt;}
.y83_c01070{bottom:486.706584pt;}
.y84_c01070{bottom:486.929052pt;}
.y85_c01070{bottom:487.233660pt;}
.y86_c01070{bottom:488.050140pt;}
.y87_c01070{bottom:488.293080pt;}
.y6f_c01070{bottom:491.297333pt;}
.y70_c01070{bottom:491.765131pt;}
.y71_c01070{bottom:492.888843pt;}
.y72_c01070{bottom:493.908149pt;}
.y73_c01070{bottom:494.707211pt;}
.y74_c01070{bottom:495.761035pt;}
.y75_c01070{bottom:498.190432pt;}
.y6d_c01070{bottom:499.188165pt;}
.y76_c01070{bottom:499.575605pt;}
.y77_c01070{bottom:500.018229pt;}
.y78_c01070{bottom:501.090187pt;}
.y79_c01070{bottom:502.112352pt;}
.y7a_c01070{bottom:503.218443pt;}
.y7b_c01070{bottom:503.732747pt;}
.y7c_c01070{bottom:507.455584pt;}
.y69_c01070{bottom:517.681744pt;}
.y6a_c01070{bottom:520.508656pt;}
.y6b_c01070{bottom:523.501005pt;}
.y6c_c01070{bottom:527.181933pt;}
.y67_c01070{bottom:533.044000pt;}
.y5b_c01070{bottom:537.835720pt;}
.y5d_c01070{bottom:539.524000pt;}
.y5e_c01070{bottom:540.314667pt;}
.y5f_c01070{bottom:540.858667pt;}
.y60_c01070{bottom:541.356000pt;}
.y61_c01070{bottom:541.652000pt;}
.y62_c01070{bottom:542.116000pt;}
.y63_c01070{bottom:542.660000pt;}
.y64_c01070{bottom:543.106667pt;}
.y65_c01070{bottom:543.373333pt;}
.y66_c01070{bottom:543.946667pt;}
.y68_c01070{bottom:545.985379pt;}
.y52_c01070{bottom:557.053333pt;}
.y53_c01070{bottom:558.794091pt;}
.y54_c01070{bottom:559.359491pt;}
.y5c_c01070{bottom:559.816000pt;}
.y55_c01070{bottom:560.300269pt;}
.y56_c01070{bottom:560.854083pt;}
.y57_c01070{bottom:561.733995pt;}
.y58_c01070{bottom:562.718040pt;}
.y59_c01070{bottom:563.014219pt;}
.y5a_c01070{bottom:563.584899pt;}
.y6e_c01070{bottom:567.005333pt;}
.y4b_c01070{bottom:580.309333pt;}
.y4c_c01070{bottom:581.210667pt;}
.y4d_c01070{bottom:581.570667pt;}
.y4e_c01070{bottom:582.014667pt;}
.y4f_c01070{bottom:583.681333pt;}
.y50_c01070{bottom:584.308704pt;}
.y51_c01070{bottom:587.106165pt;}
.y48_c01070{bottom:590.872000pt;}
.y49_c01070{bottom:592.797333pt;}
.y4a_c01070{bottom:594.496000pt;}
.y3b_c01070{bottom:598.562667pt;}
.y3c_c01070{bottom:599.829333pt;}
.y3d_c01070{bottom:600.052000pt;}
.y3e_c01070{bottom:601.072000pt;}
.y3f_c01070{bottom:602.233333pt;}
.y40_c01070{bottom:602.601333pt;}
.y41_c01070{bottom:603.173333pt;}
.y42_c01070{bottom:603.413333pt;}
.y43_c01070{bottom:604.108000pt;}
.y44_c01070{bottom:604.744000pt;}
.y45_c01070{bottom:605.962667pt;}
.y46_c01070{bottom:606.140000pt;}
.y47_c01070{bottom:607.841333pt;}
.y2f_c01070{bottom:618.490667pt;}
.y30_c01070{bottom:619.769333pt;}
.y31_c01070{bottom:620.365333pt;}
.y32_c01070{bottom:620.894667pt;}
.y33_c01070{bottom:621.573333pt;}
.y34_c01070{bottom:622.066667pt;}
.y35_c01070{bottom:623.024000pt;}
.y36_c01070{bottom:623.444000pt;}
.y37_c01070{bottom:624.333333pt;}
.y38_c01070{bottom:624.821333pt;}
.y39_c01070{bottom:626.676000pt;}
.y3a_c01070{bottom:627.802667pt;}
.y27_c01070{bottom:640.800000pt;}
.y28_c01070{bottom:642.438667pt;}
.y29_c01070{bottom:643.416000pt;}
.y2a_c01070{bottom:643.801333pt;}
.y2b_c01070{bottom:644.057333pt;}
.y2c_c01070{bottom:644.424000pt;}
.y2d_c01070{bottom:645.589333pt;}
.y2e_c01070{bottom:646.358667pt;}
.y25_c01070{bottom:650.638667pt;}
.y26_c01070{bottom:653.676000pt;}
.y22_c01070{bottom:658.070667pt;}
.y23_c01070{bottom:663.220000pt;}
.y24_c01070{bottom:670.029333pt;}
.y1b_c01070{bottom:680.162667pt;}
.y1c_c01070{bottom:681.286667pt;}
.y1d_c01070{bottom:681.746667pt;}
.y1e_c01070{bottom:682.334667pt;}
.y1f_c01070{bottom:682.933333pt;}
.y20_c01070{bottom:684.845333pt;}
.y21_c01070{bottom:687.166667pt;}
.y17_c01070{bottom:702.482667pt;}
.y18_c01070{bottom:704.632000pt;}
.y19_c01070{bottom:706.896000pt;}
.y1a_c01070{bottom:707.972000pt;}
.y16_c01070{bottom:728.580000pt;}
.ya_c01070{bottom:736.080000pt;}
.yb_c01070{bottom:736.321404pt;}
.yc_c01070{bottom:736.710384pt;}
.yd_c01070{bottom:737.448960pt;}
.ye_c01070{bottom:738.142452pt;}
.yf_c01070{bottom:738.330384pt;}
.y10_c01070{bottom:738.684588pt;}
.y11_c01070{bottom:738.825000pt;}
.y12_c01070{bottom:739.021596pt;}
.y13_c01070{bottom:740.069196pt;}
.y14_c01070{bottom:740.278896pt;}
.y15_c01070{bottom:740.746608pt;}
.y5_c01070{bottom:764.161333pt;}
.y6_c01070{bottom:765.261073pt;}
.y7_c01070{bottom:766.945333pt;}
.y8_c01070{bottom:767.448649pt;}
.y9_c01070{bottom:768.126613pt;}
.y2_c01070{bottom:794.435344pt;}
.y3_c01070{bottom:794.435777pt;}
.y4_c01070{bottom:794.435861pt;}
.y1_c01070{bottom:797.312000pt;}
.h5_c01070{height:23.334278pt;}
.h15_c01070{height:28.933333pt;}
.hd_c01070{height:32.666667pt;}
.h3_c01070{height:32.672562pt;}
.h11_c01070{height:33.600000pt;}
.he_c01070{height:40.138470pt;}
.h18_c01070{height:42.001701pt;}
.h1f_c01070{height:43.871601pt;}
.h10_c01070{height:43.877281pt;}
.h1a_c01070{height:52.284330pt;}
.hf_c01070{height:54.146432pt;}
.h16_c01070{height:57.838450pt;}
.hb_c01070{height:58.800000pt;}
.h1d_c01070{height:58.814228pt;}
.h1b_c01070{height:59.753520pt;}
.hc_c01070{height:60.666667pt;}
.h19_c01070{height:62.535866pt;}
.h20_c01070{height:62.540368pt;}
.h1e_c01070{height:63.482024pt;}
.h12_c01070{height:64.400000pt;}
.h6_c01070{height:65.333333pt;}
.h17_c01070{height:65.335979pt;}
.h8_c01070{height:66.266667pt;}
.h1c_c01070{height:67.203360pt;}
.ha_c01070{height:82.133333pt;}
.h14_c01070{height:82.161090pt;}
.h7_c01070{height:89.600000pt;}
.h9_c01070{height:90.533333pt;}
.h4_c01070{height:112.004536pt;}
.h13_c01070{height:126.042581pt;}
.h2_c01070{height:182.032848pt;}
.h1_c01070{height:893.333333pt;}
.h0_c01070{height:893.466667pt;}
.w1_c01070{width:678.000000pt;}
.w0_c01070{width:678.240000pt;}
.x0_c01070{left:0.000000pt;}
.xa_c01070{left:33.660000pt;}
.x16_c01070{left:45.600000pt;}
.x5_c01070{left:47.701333pt;}
.x1_c01070{left:48.941333pt;}
.x60_c01070{left:50.519067pt;}
.x2_c01070{left:51.839683pt;}
.x6e_c01070{left:53.604000pt;}
.x50_c01070{left:54.624000pt;}
.x69_c01070{left:55.846355pt;}
.x30_c01070{left:59.437333pt;}
.xb_c01070{left:60.482667pt;}
.x53_c01070{left:62.444048pt;}
.x3_c01070{left:88.086088pt;}
.x54_c01070{left:97.524932pt;}
.x59_c01070{left:98.445333pt;}
.xc_c01070{left:103.702667pt;}
.x83_c01070{left:115.344000pt;}
.x3a_c01070{left:116.726667pt;}
.x17_c01070{left:123.360000pt;}
.x23_c01070{left:127.120000pt;}
.x3b_c01070{left:129.088000pt;}
.x6a_c01070{left:130.587827pt;}
.x6f_c01070{left:132.106667pt;}
.x84_c01070{left:134.122667pt;}
.x18_c01070{left:149.760000pt;}
.x7d_c01070{left:151.958915pt;}
.x46_c01070{left:153.432000pt;}
.x70_c01070{left:156.666667pt;}
.x31_c01070{left:158.088000pt;}
.x24_c01070{left:160.013333pt;}
.x6_c01070{left:169.894667pt;}
.x63_c01070{left:176.874157pt;}
.x4c_c01070{left:181.593333pt;}
.x71_c01070{left:183.350667pt;}
.xd_c01070{left:185.766667pt;}
.x55_c01070{left:187.191176pt;}
.x5a_c01070{left:188.465333pt;}
.x2a_c01070{left:194.452000pt;}
.x47_c01070{left:196.194667pt;}
.x51_c01070{left:197.635643pt;}
.x85_c01070{left:200.312000pt;}
.x25_c01070{left:202.025333pt;}
.x77_c01070{left:208.661333pt;}
.x64_c01070{left:210.210991pt;}
.x72_c01070{left:214.328000pt;}
.x4d_c01070{left:217.861333pt;}
.x32_c01070{left:221.672000pt;}
.x19_c01070{left:223.920000pt;}
.x7e_c01070{left:226.775872pt;}
.x73_c01070{left:228.981333pt;}
.x65_c01070{left:232.857264pt;}
.x20_c01070{left:243.036000pt;}
.x26_c01070{left:244.801333pt;}
.x33_c01070{left:247.669333pt;}
.x3c_c01070{left:250.269333pt;}
.x78_c01070{left:253.436000pt;}
.x48_c01070{left:261.364000pt;}
.xe_c01070{left:262.821333pt;}
.x28_c01070{left:264.145333pt;}
.x7f_c01070{left:268.367963pt;}
.x61_c01070{left:269.443088pt;}
.x3d_c01070{left:270.714667pt;}
.x79_c01070{left:274.650667pt;}
.x66_c01070{left:277.484573pt;}
.x6b_c01070{left:279.809403pt;}
.x1a_c01070{left:281.280000pt;}
.xf_c01070{left:283.702667pt;}
.x62_c01070{left:287.973915pt;}
.x74_c01070{left:292.804000pt;}
.x34_c01070{left:298.069333pt;}
.x4e_c01070{left:301.573333pt;}
.x3e_c01070{left:302.525333pt;}
.x49_c01070{left:306.093333pt;}
.x86_c01070{left:307.598667pt;}
.x1b_c01070{left:311.280000pt;}
.x75_c01070{left:314.892000pt;}
.x3f_c01070{left:315.876000pt;}
.x6c_c01070{left:317.320840pt;}
.x2b_c01070{left:318.382667pt;}
.x35_c01070{left:320.150667pt;}
.x43_c01070{left:321.373333pt;}
.x10_c01070{left:323.058667pt;}
.x5b_c01070{left:329.622667pt;}
.x80_c01070{left:330.521403pt;}
.x87_c01070{left:334.716000pt;}
.x45_c01070{left:336.362667pt;}
.x11_c01070{left:338.660000pt;}
.x2c_c01070{left:341.636000pt;}
.x4a_c01070{left:345.496000pt;}
.x88_c01070{left:349.125333pt;}
.x56_c01070{left:353.560640pt;}
.x1c_c01070{left:354.480000pt;}
.x7_c01070{left:357.034667pt;}
.x12_c01070{left:360.504000pt;}
.x81_c01070{left:362.623515pt;}
.x36_c01070{left:366.952000pt;}
.x76_c01070{left:371.253333pt;}
.x5c_c01070{left:374.005333pt;}
.x2d_c01070{left:375.024000pt;}
.x6d_c01070{left:380.236872pt;}
.x27_c01070{left:381.334667pt;}
.x7a_c01070{left:384.090667pt;}
.x4f_c01070{left:385.390667pt;}
.x1d_c01070{left:390.000000pt;}
.x67_c01070{left:391.251880pt;}
.x37_c01070{left:392.641333pt;}
.x82_c01070{left:395.114989pt;}
.x5d_c01070{left:398.724000pt;}
.x7b_c01070{left:401.388000pt;}
.x52_c01070{left:409.920000pt;}
.x8_c01070{left:412.958667pt;}
.x57_c01070{left:420.002132pt;}
.x4b_c01070{left:421.920000pt;}
.x1e_c01070{left:423.600000pt;}
.x7c_c01070{left:426.352000pt;}
.x5e_c01070{left:432.569333pt;}
.x58_c01070{left:436.058060pt;}
.x21_c01070{left:448.833333pt;}
.x40_c01070{left:457.469333pt;}
.x68_c01070{left:459.883949pt;}
.x41_c01070{left:467.306667pt;}
.x13_c01070{left:476.904000pt;}
.x2e_c01070{left:480.945333pt;}
.x9_c01070{left:488.288000pt;}
.x38_c01070{left:490.268000pt;}
.x14_c01070{left:500.204000pt;}
.x89_c01070{left:509.220000pt;}
.x5f_c01070{left:523.289333pt;}
.x1f_c01070{left:545.280000pt;}
.x22_c01070{left:546.665333pt;}
.x29_c01070{left:547.874667pt;}
.x39_c01070{left:549.594667pt;}
.x2f_c01070{left:550.880000pt;}
.x15_c01070{left:552.172000pt;}
.x4_c01070{left:556.891264pt;}
.x42_c01070{left:561.840000pt;}
.x44_c01070{left:564.053333pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.000000;font-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_c01071{transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015585,0.000000,0.000000,0.250000,0,0);}
.m1c_c01071{transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021080,0.000000,0.000000,0.250000,0,0);}
.m1b_c01071{transform:matrix(0.053030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053030,0.000000,0.000000,0.250000,0,0);}
.m65_c01071{transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087490,0.000000,0.000000,0.250000,0,0);}
.m12_c01071{transform:matrix(0.129217,-0.000905,0.001750,0.249994,0,0);-ms-transform:matrix(0.129217,-0.000905,0.001750,0.249994,0,0);-webkit-transform:matrix(0.129217,-0.000905,0.001750,0.249994,0,0);}
.m4e_c01071{transform:matrix(0.133730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133730,0.000000,0.000000,0.250000,0,0);}
.m13_c01071{transform:matrix(0.138407,-0.000969,0.001750,0.249994,0,0);-ms-transform:matrix(0.138407,-0.000969,0.001750,0.249994,0,0);-webkit-transform:matrix(0.138407,-0.000969,0.001750,0.249994,0,0);}
.m5b_c01071{transform:matrix(0.139405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139405,0.000000,0.000000,0.250000,0,0);}
.ma1_c01071{transform:matrix(0.139610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139610,0.000000,0.000000,0.250000,0,0);}
.m6e_c01071{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);}
.m14_c01071{transform:matrix(0.141787,-0.000993,0.001750,0.249994,0,0);-ms-transform:matrix(0.141787,-0.000993,0.001750,0.249994,0,0);-webkit-transform:matrix(0.141787,-0.000993,0.001750,0.249994,0,0);}
.mc8_c01071{transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);}
.m74_c01071{transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145005,0.000000,0.000000,0.250000,0,0);}
.m2d_c01071{transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146170,0.000000,0.000000,0.250000,0,0);}
.m34_c01071{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);}
.m62_c01071{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);}
.m35_c01071{transform:matrix(0.148460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148460,0.000000,0.000000,0.250000,0,0);}
.m75_c01071{transform:matrix(0.151230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151230,0.000000,0.000000,0.250000,0,0);}
.m87_c01071{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);}
.m55_c01071{transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151870,0.000000,0.000000,0.250000,0,0);}
.mc_c01071{transform:matrix(0.152766,-0.001069,0.001750,0.249994,0,0);-ms-transform:matrix(0.152766,-0.001069,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152766,-0.001069,0.001750,0.249994,0,0);}
.m76_c01071{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);}
.mc7_c01071{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);}
.m54_c01071{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);}
.m99_c01071{transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);}
.m1a_c01071{transform:matrix(0.154216,-0.001080,0.001750,0.249994,0,0);-ms-transform:matrix(0.154216,-0.001080,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154216,-0.001080,0.001750,0.249994,0,0);}
.m43_c01071{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);}
.m95_c01071{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);}
.m88_c01071{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);}
.m11_c01071{transform:matrix(0.157781,-0.001104,0.001750,0.249994,0,0);-ms-transform:matrix(0.157781,-0.001104,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157781,-0.001104,0.001750,0.249994,0,0);}
.m6_c01071{transform:matrix(0.157876,-0.001105,0.001750,0.249994,0,0);-ms-transform:matrix(0.157876,-0.001105,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157876,-0.001105,0.001750,0.249994,0,0);}
.m52_c01071{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);}
.m4d_c01071{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);}
.m8_c01071{transform:matrix(0.159906,-0.001119,0.001750,0.249994,0,0);-ms-transform:matrix(0.159906,-0.001119,0.001750,0.249994,0,0);-webkit-transform:matrix(0.159906,-0.001119,0.001750,0.249994,0,0);}
.m89_c01071{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);}
.m17_c01071{transform:matrix(0.160941,-0.001127,0.001750,0.249994,0,0);-ms-transform:matrix(0.160941,-0.001127,0.001750,0.249994,0,0);-webkit-transform:matrix(0.160941,-0.001127,0.001750,0.249994,0,0);}
.m56_c01071{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);}
.m82_c01071{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);}
.m53_c01071{transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161285,0.000000,0.000000,0.250000,0,0);}
.m67_c01071{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);}
.m5d_c01071{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);}
.mc5_c01071{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);}
.mb8_c01071{transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163085,0.000000,0.000000,0.250000,0,0);}
.m4f_c01071{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);}
.m50_c01071{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);}
.m93_c01071{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);}
.m80_c01071{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);}
.ma6_c01071{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m32_c01071{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);}
.mb4_c01071{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);}
.m2f_c01071{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);}
.m85_c01071{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);}
.ma5_c01071{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);}
.m36_c01071{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);}
.m9e_c01071{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);}
.mb9_c01071{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);}
.m9_c01071{transform:matrix(0.169306,-0.001185,0.001750,0.249994,0,0);-ms-transform:matrix(0.169306,-0.001185,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169306,-0.001185,0.001750,0.249994,0,0);}
.ma7_c01071{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m47_c01071{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);}
.m2e_c01071{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);}
.mc9_c01071{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);}
.ma0_c01071{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);}
.md_c01071{transform:matrix(0.170951,-0.001197,0.001750,0.249994,0,0);-ms-transform:matrix(0.170951,-0.001197,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170951,-0.001197,0.001750,0.249994,0,0);}
.m7_c01071{transform:matrix(0.171231,-0.001199,0.001750,0.249994,0,0);-ms-transform:matrix(0.171231,-0.001199,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171231,-0.001199,0.001750,0.249994,0,0);}
.m0_c01071{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);}
.m30_c01071{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);}
.m51_c01071{transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171890,0.000000,0.000000,0.250000,0,0);}
.m8e_c01071{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);}
.mb0_c01071{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);}
.mc6_c01071{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);}
.m60_c01071{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);}
.mc4_c01071{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);}
.m94_c01071{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);}
.mbe_c01071{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);}
.mca_c01071{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);}
.me_c01071{transform:matrix(0.173696,-0.001216,0.001750,0.249994,0,0);-ms-transform:matrix(0.173696,-0.001216,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173696,-0.001216,0.001750,0.249994,0,0);}
.m78_c01071{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);}
.mae_c01071{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);}
.m3f_c01071{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);}
.m97_c01071{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);}
.m98_c01071{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);}
.m9b_c01071{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);}
.m86_c01071{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);}
.m37_c01071{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);}
.m84_c01071{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);}
.m16_c01071{transform:matrix(0.175881,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175881,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175881,-0.001231,0.001750,0.249994,0,0);}
.m42_c01071{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);}
.m6f_c01071{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);}
.m9f_c01071{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);}
.m2c_c01071{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);}
.mad_c01071{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);}
.m6a_c01071{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);}
.m83_c01071{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);}
.m5e_c01071{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);}
.m58_c01071{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);}
.m7d_c01071{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);}
.m40_c01071{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);}
.m31_c01071{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);}
.m8c_c01071{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);}
.mb_c01071{transform:matrix(0.182006,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.182006,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182006,-0.001274,0.001750,0.249994,0,0);}
.mb7_c01071{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);}
.m15_c01071{transform:matrix(0.182636,-0.001278,0.001750,0.249994,0,0);-ms-transform:matrix(0.182636,-0.001278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182636,-0.001278,0.001750,0.249994,0,0);}
.m46_c01071{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);}
.m7a_c01071{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);}
.ma4_c01071{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);}
.ma_c01071{transform:matrix(0.185345,-0.001297,0.001750,0.249994,0,0);-ms-transform:matrix(0.185345,-0.001297,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185345,-0.001297,0.001750,0.249994,0,0);}
.m59_c01071{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);}
.m81_c01071{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);}
.m57_c01071{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);}
.m9d_c01071{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);}
.maf_c01071{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);}
.m73_c01071{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);}
.m49_c01071{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);}
.m8d_c01071{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);}
.mf_c01071{transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);-ms-transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191105,-0.001338,0.001750,0.249994,0,0);}
.m7c_c01071{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);}
.m66_c01071{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);}
.m7b_c01071{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);}
.mb6_c01071{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);}
.m7f_c01071{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);}
.m33_c01071{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);}
.mbf_c01071{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);}
.m5_c01071{transform:matrix(0.194155,-0.001359,0.001750,0.249994,0,0);-ms-transform:matrix(0.194155,-0.001359,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194155,-0.001359,0.001750,0.249994,0,0);}
.mb5_c01071{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);}
.m28_c01071{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);}
.m25_c01071{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);}
.m3b_c01071{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);}
.m77_c01071{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);}
.m5f_c01071{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);}
.m90_c01071{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);}
.m3e_c01071{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);}
.m29_c01071{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);}
.mb3_c01071{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);}
.m41_c01071{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);}
.m7e_c01071{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);}
.m24_c01071{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);}
.m5c_c01071{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);}
.m92_c01071{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);}
.m8a_c01071{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);}
.mc3_c01071{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);}
.mbd_c01071{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);}
.m8b_c01071{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);}
.m18_c01071{transform:matrix(0.200355,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200355,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200355,-0.001402,0.001750,0.249994,0,0);}
.m8f_c01071{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);}
.m96_c01071{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);}
.m3d_c01071{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);}
.m71_c01071{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);}
.m2a_c01071{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);}
.m5a_c01071{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);}
.m63_c01071{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);}
.mb2_c01071{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);}
.m27_c01071{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);}
.m44_c01071{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);}
.m9c_c01071{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);}
.m45_c01071{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);}
.mb1_c01071{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_c01071{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);}
.m48_c01071{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);}
.m6b_c01071{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);}
.mbc_c01071{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);}
.m3a_c01071{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);}
.m2b_c01071{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);}
.m72_c01071{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);}
.mbb_c01071{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);}
.m68_c01071{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);}
.m91_c01071{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);}
.m79_c01071{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);}
.m69_c01071{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);}
.m22_c01071{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);}
.mac_c01071{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);}
.m3c_c01071{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);}
.m4a_c01071{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);}
.m19_c01071{transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);-ms-transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);}
.m26_c01071{transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229585,0.000000,0.000000,0.250000,0,0);}
.m61_c01071{transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{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);}
.m38_c01071{transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);}
.mab_c01071{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);}
.ma8_c01071{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);}
.m6d_c01071{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);}
.m4b_c01071{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m4c_c01071{transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);}
.m9a_c01071{transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);}
.ma3_c01071{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);}
.ma2_c01071{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.mc1_c01071{transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281715,0.000000,0.000000,0.250000,0,0);}
.m70_c01071{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.m20_c01071{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m10_c01071{transform:matrix(0.308822,-0.002162,0.001750,0.249994,0,0);-ms-transform:matrix(0.308822,-0.002162,0.001750,0.249994,0,0);-webkit-transform:matrix(0.308822,-0.002162,0.001750,0.249994,0,0);}
.m39_c01071{transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314235,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317235,0.000000,0.000000,0.250000,0,0);}
.m2_c01071{transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341020,0.000000,0.000000,0.250000,0,0);}
.maa_c01071{transform:matrix(0.355760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355760,0.000000,0.000000,0.250000,0,0);}
.mba_c01071{transform:matrix(0.386720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386720,0.000000,0.000000,0.250000,0,0);}
.m21_c01071{transform:matrix(0.390005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390005,0.000000,0.000000,0.250000,0,0);}
.mc0_c01071{transform:matrix(0.405630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405630,0.000000,0.000000,0.250000,0,0);}
.m6c_c01071{transform:matrix(0.418270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418270,0.000000,0.000000,0.250000,0,0);}
.m1e_c01071{transform:matrix(0.488355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488355,0.000000,0.000000,0.250000,0,0);}
.ma9_c01071{transform:matrix(0.529760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529760,0.000000,0.000000,0.250000,0,0);}
.m23_c01071{transform:matrix(0.708595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708595,0.000000,0.000000,0.250000,0,0);}
.m1f_c01071{transform:matrix(0.732750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732750,0.000000,0.000000,0.250000,0,0);}
.m1d_c01071{transform:matrix(0.735325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735325,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(0.779075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779075,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls0_c01071{letter-spacing:0.000000px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:0.000000px;}
.fc0_c01071{color:transparent;}
.fs4_c01071{font-size:24.150000px;}
.fse_c01071{font-size:64.050000px;}
.fsb_c01071{font-size:65.100000px;}
.fs8_c01071{font-size:66.150000px;}
.fs6_c01071{font-size:69.300000px;}
.fsf_c01071{font-size:70.350000px;}
.fs10_c01071{font-size:71.400000px;}
.fsc_c01071{font-size:72.450000px;}
.fsa_c01071{font-size:73.500000px;}
.fsd_c01071{font-size:75.600000px;}
.fs9_c01071{font-size:76.650000px;}
.fs7_c01071{font-size:77.700000px;}
.fs11_c01071{font-size:78.750000px;}
.fs0_c01071{font-size:91.350000px;}
.fs3_c01071{font-size:92.402264px;}
.fs1_c01071{font-size:93.452289px;}
.fs5_c01071{font-size:97.650000px;}
.fs2_c01071{font-size:103.952547px;}
.y0_c01071{bottom:0.000000px;}
.y63_c01071{bottom:140.800500px;}
.y62_c01071{bottom:164.709000px;}
.y61_c01071{bottom:187.605000px;}
.y60_c01071{bottom:232.510500px;}
.y5f_c01071{bottom:255.292500px;}
.y5e_c01071{bottom:278.908500px;}
.y5d_c01071{bottom:301.635000px;}
.y5c_c01071{bottom:324.142500px;}
.y54_c01071{bottom:344.794500px;}
.y55_c01071{bottom:345.331500px;}
.y56_c01071{bottom:345.534000px;}
.y57_c01071{bottom:346.194000px;}
.y58_c01071{bottom:346.485000px;}
.y59_c01071{bottom:346.794000px;}
.y5a_c01071{bottom:347.254500px;}
.y5b_c01071{bottom:347.581500px;}
.y4c_c01071{bottom:368.014500px;}
.y4d_c01071{bottom:368.227500px;}
.y4e_c01071{bottom:368.668500px;}
.y4f_c01071{bottom:368.884500px;}
.y50_c01071{bottom:369.333000px;}
.y51_c01071{bottom:369.597000px;}
.y52_c01071{bottom:370.029000px;}
.y53_c01071{bottom:370.387500px;}
.y44_c01071{bottom:390.154500px;}
.y45_c01071{bottom:390.528000px;}
.y46_c01071{bottom:391.140000px;}
.y47_c01071{bottom:391.489500px;}
.y48_c01071{bottom:391.983000px;}
.y49_c01071{bottom:392.229000px;}
.y4a_c01071{bottom:392.442000px;}
.y4b_c01071{bottom:392.976000px;}
.y3b_c01071{bottom:413.104500px;}
.y3c_c01071{bottom:413.368500px;}
.y3d_c01071{bottom:413.731500px;}
.y3e_c01071{bottom:414.228000px;}
.y3f_c01071{bottom:414.477000px;}
.y40_c01071{bottom:414.901500px;}
.y41_c01071{bottom:415.276500px;}
.y42_c01071{bottom:416.013000px;}
.y43_c01071{bottom:416.247000px;}
.y35_c01071{bottom:436.864500px;}
.y36_c01071{bottom:437.719500px;}
.y37_c01071{bottom:438.019500px;}
.y38_c01071{bottom:438.403500px;}
.y39_c01071{bottom:438.789000px;}
.y3a_c01071{bottom:439.339500px;}
.y34_c01071{bottom:459.964500px;}
.y33_c01071{bottom:482.110500px;}
.y32_c01071{bottom:505.485000px;}
.y31_c01071{bottom:528.705000px;}
.y26_c01071{bottom:549.993000px;}
.y27_c01071{bottom:550.251000px;}
.y28_c01071{bottom:550.504500px;}
.y29_c01071{bottom:551.146500px;}
.y2a_c01071{bottom:551.980500px;}
.y2b_c01071{bottom:552.381000px;}
.y2c_c01071{bottom:552.678000px;}
.y2d_c01071{bottom:553.366500px;}
.y2e_c01071{bottom:553.759500px;}
.y2f_c01071{bottom:554.374500px;}
.y30_c01071{bottom:554.671500px;}
.y1c_c01071{bottom:572.941500px;}
.y1d_c01071{bottom:573.342000px;}
.y1e_c01071{bottom:573.441000px;}
.y1f_c01071{bottom:573.961500px;}
.y20_c01071{bottom:574.269000px;}
.y21_c01071{bottom:574.828500px;}
.y22_c01071{bottom:575.301000px;}
.y23_c01071{bottom:575.730000px;}
.y24_c01071{bottom:575.911500px;}
.y25_c01071{bottom:576.303000px;}
.y1b_c01071{bottom:597.826500px;}
.y1a_c01071{bottom:621.966000px;}
.y19_c01071{bottom:643.668000px;}
.y18_c01071{bottom:664.318500px;}
.y14_c01071{bottom:683.647371px;}
.y12_c01071{bottom:683.647422px;}
.y13_c01071{bottom:683.647742px;}
.y15_c01071{bottom:683.647851px;}
.y17_c01071{bottom:683.648381px;}
.y16_c01071{bottom:683.648591px;}
.yc_c01071{bottom:709.021166px;}
.yd_c01071{bottom:709.757376px;}
.ye_c01071{bottom:711.404746px;}
.yf_c01071{bottom:711.885912px;}
.y10_c01071{bottom:712.098447px;}
.y11_c01071{bottom:712.555822px;}
.y2_c01071{bottom:735.211500px;}
.y3_c01071{bottom:735.423243px;}
.y4_c01071{bottom:735.863666px;}
.y5_c01071{bottom:736.506024px;}
.y6_c01071{bottom:736.770970px;}
.y7_c01071{bottom:736.991954px;}
.y8_c01071{bottom:737.305704px;}
.y9_c01071{bottom:737.511735px;}
.ya_c01071{bottom:738.039003px;}
.yb_c01071{bottom:738.265856px;}
.y1_c01071{bottom:784.602000px;}
.h6_c01071{height:24.150000px;}
.h10_c01071{height:64.050000px;}
.hd_c01071{height:65.100000px;}
.ha_c01071{height:66.150000px;}
.h8_c01071{height:69.300000px;}
.h11_c01071{height:70.350000px;}
.h12_c01071{height:71.400000px;}
.he_c01071{height:72.450000px;}
.hc_c01071{height:73.500000px;}
.hf_c01071{height:75.600000px;}
.hb_c01071{height:76.650000px;}
.h9_c01071{height:77.700000px;}
.h13_c01071{height:78.750000px;}
.h2_c01071{height:91.350000px;}
.h5_c01071{height:92.402264px;}
.h3_c01071{height:93.452289px;}
.h7_c01071{height:97.650000px;}
.h4_c01071{height:103.952547px;}
.h0_c01071{height:1008.450000px;}
.h1_c01071{height:1008.750000px;}
.w1_c01071{width:774.000000px;}
.w0_c01071{width:774.090000px;}
.x0_c01071{left:0.000000px;}
.x6_c01071{left:178.581000px;}
.x15_c01071{left:196.288799px;}
.x23_c01071{left:197.370000px;}
.x50_c01071{left:198.450000px;}
.xf_c01071{left:199.931870px;}
.x7_c01071{left:208.830000px;}
.x57_c01071{left:214.110000px;}
.x5d_c01071{left:216.135000px;}
.x69_c01071{left:217.216500px;}
.x3d_c01071{left:219.331500px;}
.x8b_c01071{left:220.861500px;}
.x47_c01071{left:236.520000px;}
.x6a_c01071{left:238.552500px;}
.x61_c01071{left:239.647500px;}
.x2d_c01071{left:242.190000px;}
.x8c_c01071{left:244.891500px;}
.x35_c01071{left:246.114000px;}
.x43_c01071{left:252.180000px;}
.x66_c01071{left:253.419000px;}
.x36_c01071{left:258.507000px;}
.x16_c01071{left:262.980564px;}
.x6e_c01071{left:266.917500px;}
.x8_c01071{left:271.747500px;}
.x84_c01071{left:274.051500px;}
.x21_c01071{left:275.940000px;}
.x44_c01071{left:277.290000px;}
.x51_c01071{left:278.640000px;}
.x48_c01071{left:281.880000px;}
.x58_c01071{left:282.960000px;}
.x6f_c01071{left:285.289500px;}
.x2e_c01071{left:289.980000px;}
.x10_c01071{left:292.032729px;}
.x49_c01071{left:298.080000px;}
.x3e_c01071{left:300.669000px;}
.x5e_c01071{left:301.692000px;}
.x6b_c01071{left:304.158000px;}
.x17_c01071{left:310.501395px;}
.x8d_c01071{left:312.931500px;}
.x1_c01071{left:315.090000px;}
.x7a_c01071{left:316.171500px;}
.x62_c01071{left:317.685000px;}
.x24_c01071{left:321.030000px;}
.x37_c01071{left:323.580000px;}
.x59_c01071{left:327.510000px;}
.x7b_c01071{left:330.211500px;}
.x18_c01071{left:332.642477px;}
.x81_c01071{left:335.341500px;}
.x63_c01071{left:340.365000px;}
.x2_c01071{left:342.900000px;}
.x25_c01071{left:345.330000px;}
.x8e_c01071{left:347.491500px;}
.x67_c01071{left:349.533000px;}
.x52_c01071{left:353.970000px;}
.x73_c01071{left:356.401500px;}
.x4a_c01071{left:358.560000px;}
.x82_c01071{left:360.451500px;}
.x38_c01071{left:361.924500px;}
.x9_c01071{left:363.513000px;}
.x5a_c01071{left:365.040000px;}
.x85_c01071{left:366.121500px;}
.x89_c01071{left:368.011500px;}
.x26_c01071{left:370.710000px;}
.x53_c01071{left:372.600000px;}
.x6c_c01071{left:375.444000px;}
.x2f_c01071{left:376.650000px;}
.x7c_c01071{left:378.811500px;}
.x19_c01071{left:379.893287px;}
.x74_c01071{left:384.481500px;}
.x5b_c01071{left:386.910000px;}
.x3_c01071{left:398.250000px;}
.x70_c01071{left:399.762000px;}
.xa_c01071{left:401.362500px;}
.x86_c01071{left:406.621500px;}
.x5f_c01071{left:408.649500px;}
.x1a_c01071{left:409.864757px;}
.x3f_c01071{left:412.948500px;}
.x45_c01071{left:419.310000px;}
.x4b_c01071{left:420.390000px;}
.x68_c01071{left:423.511500px;}
.x7d_c01071{left:425.791500px;}
.x1b_c01071{left:428.760000px;}
.x4_c01071{left:432.810000px;}
.x27_c01071{left:435.510000px;}
.x30_c01071{left:439.830000px;}
.x71_c01071{left:441.607500px;}
.x1c_c01071{left:445.230000px;}
.x1d_c01071{left:447.390000px;}
.x8a_c01071{left:450.091500px;}
.x75_c01071{left:452.521500px;}
.x6d_c01071{left:454.564500px;}
.x54_c01071{left:457.650000px;}
.x7e_c01071{left:461.431500px;}
.x60_c01071{left:463.719000px;}
.x80_c01071{left:468.721500px;}
.x72_c01071{left:471.310500px;}
.x1e_c01071{left:473.850000px;}
.x5_c01071{left:474.930000px;}
.x28_c01071{left:476.010000px;}
.xb_c01071{left:477.753000px;}
.x64_c01071{left:479.944500px;}
.x4c_c01071{left:484.650000px;}
.x1f_c01071{left:486.000000px;}
.x55_c01071{left:487.890000px;}
.x39_c01071{left:490.965000px;}
.x5c_c01071{left:493.560000px;}
.x11_c01071{left:498.012791px;}
.x65_c01071{left:501.237000px;}
.x22_c01071{left:503.550000px;}
.x4d_c01071{left:505.980000px;}
.xc_c01071{left:507.186000px;}
.x76_c01071{left:508.681500px;}
.x7f_c01071{left:514.351500px;}
.x20_c01071{left:515.430000px;}
.x29_c01071{left:522.180000px;}
.x56_c01071{left:530.550000px;}
.x2a_c01071{left:536.220000px;}
.x40_c01071{left:538.300500px;}
.x31_c01071{left:541.350000px;}
.x3a_c01071{left:544.659000px;}
.x87_c01071{left:546.211500px;}
.x77_c01071{left:548.371500px;}
.x12_c01071{left:558.178871px;}
.x83_c01071{left:565.921500px;}
.x3b_c01071{left:567.378000px;}
.x78_c01071{left:573.211500px;}
.x88_c01071{left:575.911500px;}
.x32_c01071{left:580.230000px;}
.xd_c01071{left:582.510000px;}
.x13_c01071{left:584.683682px;}
.x46_c01071{left:590.220000px;}
.x41_c01071{left:594.169500px;}
.x2b_c01071{left:604.800000px;}
.x4e_c01071{left:605.880000px;}
.x33_c01071{left:607.500000px;}
.x79_c01071{left:609.121500px;}
.xe_c01071{left:614.917500px;}
.x3c_c01071{left:616.240500px;}
.x42_c01071{left:621.118500px;}
.x2c_c01071{left:628.290000px;}
.x34_c01071{left:630.450000px;}
.x14_c01071{left:641.879783px;}
.x4f_c01071{left:643.950000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls0_c01071{letter-spacing:0.000000pt;}
.ws0_c01071{word-spacing:0.000000pt;}
.fs4_c01071{font-size:21.466667pt;}
.fse_c01071{font-size:56.933333pt;}
.fsb_c01071{font-size:57.866667pt;}
.fs8_c01071{font-size:58.800000pt;}
.fs6_c01071{font-size:61.600000pt;}
.fsf_c01071{font-size:62.533333pt;}
.fs10_c01071{font-size:63.466667pt;}
.fsc_c01071{font-size:64.400000pt;}
.fsa_c01071{font-size:65.333333pt;}
.fsd_c01071{font-size:67.200000pt;}
.fs9_c01071{font-size:68.133333pt;}
.fs7_c01071{font-size:69.066667pt;}
.fs11_c01071{font-size:70.000000pt;}
.fs0_c01071{font-size:81.200000pt;}
.fs3_c01071{font-size:82.135346pt;}
.fs1_c01071{font-size:83.068702pt;}
.fs5_c01071{font-size:86.800000pt;}
.fs2_c01071{font-size:92.402264pt;}
.y0_c01071{bottom:0.000000pt;}
.y63_c01071{bottom:125.156000pt;}
.y62_c01071{bottom:146.408000pt;}
.y61_c01071{bottom:166.760000pt;}
.y60_c01071{bottom:206.676000pt;}
.y5f_c01071{bottom:226.926667pt;}
.y5e_c01071{bottom:247.918667pt;}
.y5d_c01071{bottom:268.120000pt;}
.y5c_c01071{bottom:288.126667pt;}
.y54_c01071{bottom:306.484000pt;}
.y55_c01071{bottom:306.961333pt;}
.y56_c01071{bottom:307.141333pt;}
.y57_c01071{bottom:307.728000pt;}
.y58_c01071{bottom:307.986667pt;}
.y59_c01071{bottom:308.261333pt;}
.y5a_c01071{bottom:308.670667pt;}
.y5b_c01071{bottom:308.961333pt;}
.y4c_c01071{bottom:327.124000pt;}
.y4d_c01071{bottom:327.313333pt;}
.y4e_c01071{bottom:327.705333pt;}
.y4f_c01071{bottom:327.897333pt;}
.y50_c01071{bottom:328.296000pt;}
.y51_c01071{bottom:328.530667pt;}
.y52_c01071{bottom:328.914667pt;}
.y53_c01071{bottom:329.233333pt;}
.y44_c01071{bottom:346.804000pt;}
.y45_c01071{bottom:347.136000pt;}
.y46_c01071{bottom:347.680000pt;}
.y47_c01071{bottom:347.990667pt;}
.y48_c01071{bottom:348.429333pt;}
.y49_c01071{bottom:348.648000pt;}
.y4a_c01071{bottom:348.837333pt;}
.y4b_c01071{bottom:349.312000pt;}
.y3b_c01071{bottom:367.204000pt;}
.y3c_c01071{bottom:367.438667pt;}
.y3d_c01071{bottom:367.761333pt;}
.y3e_c01071{bottom:368.202667pt;}
.y3f_c01071{bottom:368.424000pt;}
.y40_c01071{bottom:368.801333pt;}
.y41_c01071{bottom:369.134667pt;}
.y42_c01071{bottom:369.789333pt;}
.y43_c01071{bottom:369.997333pt;}
.y35_c01071{bottom:388.324000pt;}
.y36_c01071{bottom:389.084000pt;}
.y37_c01071{bottom:389.350667pt;}
.y38_c01071{bottom:389.692000pt;}
.y39_c01071{bottom:390.034667pt;}
.y3a_c01071{bottom:390.524000pt;}
.y34_c01071{bottom:408.857333pt;}
.y33_c01071{bottom:428.542667pt;}
.y32_c01071{bottom:449.320000pt;}
.y31_c01071{bottom:469.960000pt;}
.y26_c01071{bottom:488.882667pt;}
.y27_c01071{bottom:489.112000pt;}
.y28_c01071{bottom:489.337333pt;}
.y29_c01071{bottom:489.908000pt;}
.y2a_c01071{bottom:490.649333pt;}
.y2b_c01071{bottom:491.005333pt;}
.y2c_c01071{bottom:491.269333pt;}
.y2d_c01071{bottom:491.881333pt;}
.y2e_c01071{bottom:492.230667pt;}
.y2f_c01071{bottom:492.777333pt;}
.y30_c01071{bottom:493.041333pt;}
.y1c_c01071{bottom:509.281333pt;}
.y1d_c01071{bottom:509.637333pt;}
.y1e_c01071{bottom:509.725333pt;}
.y1f_c01071{bottom:510.188000pt;}
.y20_c01071{bottom:510.461333pt;}
.y21_c01071{bottom:510.958667pt;}
.y22_c01071{bottom:511.378667pt;}
.y23_c01071{bottom:511.760000pt;}
.y24_c01071{bottom:511.921333pt;}
.y25_c01071{bottom:512.269333pt;}
.y1b_c01071{bottom:531.401333pt;}
.y1a_c01071{bottom:552.858667pt;}
.y19_c01071{bottom:572.149333pt;}
.y18_c01071{bottom:590.505333pt;}
.y14_c01071{bottom:607.686552pt;}
.y12_c01071{bottom:607.686597pt;}
.y13_c01071{bottom:607.686881pt;}
.y15_c01071{bottom:607.686979pt;}
.y17_c01071{bottom:607.687449pt;}
.y16_c01071{bottom:607.687636pt;}
.yc_c01071{bottom:630.241036pt;}
.yd_c01071{bottom:630.895445pt;}
.ye_c01071{bottom:632.359775pt;}
.yf_c01071{bottom:632.787477pt;}
.y10_c01071{bottom:632.976397pt;}
.y11_c01071{bottom:633.382953pt;}
.y2_c01071{bottom:653.521333pt;}
.y3_c01071{bottom:653.709549pt;}
.y4_c01071{bottom:654.101036pt;}
.y5_c01071{bottom:654.672021pt;}
.y6_c01071{bottom:654.907529pt;}
.y7_c01071{bottom:655.103959pt;}
.y8_c01071{bottom:655.382848pt;}
.y9_c01071{bottom:655.565987pt;}
.ya_c01071{bottom:656.034669pt;}
.yb_c01071{bottom:656.236316pt;}
.y1_c01071{bottom:697.424000pt;}
.h6_c01071{height:21.466667pt;}
.h10_c01071{height:56.933333pt;}
.hd_c01071{height:57.866667pt;}
.ha_c01071{height:58.800000pt;}
.h8_c01071{height:61.600000pt;}
.h11_c01071{height:62.533333pt;}
.h12_c01071{height:63.466667pt;}
.he_c01071{height:64.400000pt;}
.hc_c01071{height:65.333333pt;}
.hf_c01071{height:67.200000pt;}
.hb_c01071{height:68.133333pt;}
.h9_c01071{height:69.066667pt;}
.h13_c01071{height:70.000000pt;}
.h2_c01071{height:81.200000pt;}
.h5_c01071{height:82.135346pt;}
.h3_c01071{height:83.068702pt;}
.h7_c01071{height:86.800000pt;}
.h4_c01071{height:92.402264pt;}
.h0_c01071{height:896.400000pt;}
.h1_c01071{height:896.666667pt;}
.w1_c01071{width:688.000000pt;}
.w0_c01071{width:688.080000pt;}
.x0_c01071{left:0.000000pt;}
.x6_c01071{left:158.738667pt;}
.x15_c01071{left:174.478932pt;}
.x23_c01071{left:175.440000pt;}
.x50_c01071{left:176.400000pt;}
.xf_c01071{left:177.717217pt;}
.x7_c01071{left:185.626667pt;}
.x57_c01071{left:190.320000pt;}
.x5d_c01071{left:192.120000pt;}
.x69_c01071{left:193.081333pt;}
.x3d_c01071{left:194.961333pt;}
.x8b_c01071{left:196.321333pt;}
.x47_c01071{left:210.240000pt;}
.x6a_c01071{left:212.046667pt;}
.x61_c01071{left:213.020000pt;}
.x2d_c01071{left:215.280000pt;}
.x8c_c01071{left:217.681333pt;}
.x35_c01071{left:218.768000pt;}
.x43_c01071{left:224.160000pt;}
.x66_c01071{left:225.261333pt;}
.x36_c01071{left:229.784000pt;}
.x16_c01071{left:233.760501pt;}
.x6e_c01071{left:237.260000pt;}
.x8_c01071{left:241.553333pt;}
.x84_c01071{left:243.601333pt;}
.x21_c01071{left:245.280000pt;}
.x44_c01071{left:246.480000pt;}
.x51_c01071{left:247.680000pt;}
.x48_c01071{left:250.560000pt;}
.x58_c01071{left:251.520000pt;}
.x6f_c01071{left:253.590667pt;}
.x2e_c01071{left:257.760000pt;}
.x10_c01071{left:259.584648pt;}
.x49_c01071{left:264.960000pt;}
.x3e_c01071{left:267.261333pt;}
.x5e_c01071{left:268.170667pt;}
.x6b_c01071{left:270.362667pt;}
.x17_c01071{left:276.001240pt;}
.x8d_c01071{left:278.161333pt;}
.x1_c01071{left:280.080000pt;}
.x7a_c01071{left:281.041333pt;}
.x62_c01071{left:282.386667pt;}
.x24_c01071{left:285.360000pt;}
.x37_c01071{left:287.626667pt;}
.x59_c01071{left:291.120000pt;}
.x7b_c01071{left:293.521333pt;}
.x18_c01071{left:295.682201pt;}
.x81_c01071{left:298.081333pt;}
.x63_c01071{left:302.546667pt;}
.x2_c01071{left:304.800000pt;}
.x25_c01071{left:306.960000pt;}
.x8e_c01071{left:308.881333pt;}
.x67_c01071{left:310.696000pt;}
.x52_c01071{left:314.640000pt;}
.x73_c01071{left:316.801333pt;}
.x4a_c01071{left:318.720000pt;}
.x82_c01071{left:320.401333pt;}
.x38_c01071{left:321.710667pt;}
.x9_c01071{left:323.122667pt;}
.x5a_c01071{left:324.480000pt;}
.x85_c01071{left:325.441333pt;}
.x89_c01071{left:327.121333pt;}
.x26_c01071{left:329.520000pt;}
.x53_c01071{left:331.200000pt;}
.x6c_c01071{left:333.728000pt;}
.x2f_c01071{left:334.800000pt;}
.x7c_c01071{left:336.721333pt;}
.x19_c01071{left:337.682921pt;}
.x74_c01071{left:341.761333pt;}
.x5b_c01071{left:343.920000pt;}
.x3_c01071{left:354.000000pt;}
.x70_c01071{left:355.344000pt;}
.xa_c01071{left:356.766667pt;}
.x86_c01071{left:361.441333pt;}
.x5f_c01071{left:363.244000pt;}
.x1a_c01071{left:364.324228pt;}
.x3f_c01071{left:367.065333pt;}
.x45_c01071{left:372.720000pt;}
.x4b_c01071{left:373.680000pt;}
.x68_c01071{left:376.454667pt;}
.x7d_c01071{left:378.481333pt;}
.x1b_c01071{left:381.120000pt;}
.x4_c01071{left:384.720000pt;}
.x27_c01071{left:387.120000pt;}
.x30_c01071{left:390.960000pt;}
.x71_c01071{left:392.540000pt;}
.x1c_c01071{left:395.760000pt;}
.x1d_c01071{left:397.680000pt;}
.x8a_c01071{left:400.081333pt;}
.x75_c01071{left:402.241333pt;}
.x6d_c01071{left:404.057333pt;}
.x54_c01071{left:406.800000pt;}
.x7e_c01071{left:410.161333pt;}
.x60_c01071{left:412.194667pt;}
.x80_c01071{left:416.641333pt;}
.x72_c01071{left:418.942667pt;}
.x1e_c01071{left:421.200000pt;}
.x5_c01071{left:422.160000pt;}
.x28_c01071{left:423.120000pt;}
.xb_c01071{left:424.669333pt;}
.x64_c01071{left:426.617333pt;}
.x4c_c01071{left:430.800000pt;}
.x1f_c01071{left:432.000000pt;}
.x55_c01071{left:433.680000pt;}
.x39_c01071{left:436.413333pt;}
.x5c_c01071{left:438.720000pt;}
.x11_c01071{left:442.678036pt;}
.x65_c01071{left:445.544000pt;}
.x22_c01071{left:447.600000pt;}
.x4d_c01071{left:449.760000pt;}
.xc_c01071{left:450.832000pt;}
.x76_c01071{left:452.161333pt;}
.x7f_c01071{left:457.201333pt;}
.x20_c01071{left:458.160000pt;}
.x29_c01071{left:464.160000pt;}
.x56_c01071{left:471.600000pt;}
.x2a_c01071{left:476.640000pt;}
.x40_c01071{left:478.489333pt;}
.x31_c01071{left:481.200000pt;}
.x3a_c01071{left:484.141333pt;}
.x87_c01071{left:485.521333pt;}
.x77_c01071{left:487.441333pt;}
.x12_c01071{left:496.158996pt;}
.x83_c01071{left:503.041333pt;}
.x3b_c01071{left:504.336000pt;}
.x78_c01071{left:509.521333pt;}
.x88_c01071{left:511.921333pt;}
.x32_c01071{left:515.760000pt;}
.xd_c01071{left:517.786667pt;}
.x13_c01071{left:519.718828pt;}
.x46_c01071{left:524.640000pt;}
.x41_c01071{left:528.150667pt;}
.x2b_c01071{left:537.600000pt;}
.x4e_c01071{left:538.560000pt;}
.x33_c01071{left:540.000000pt;}
.x79_c01071{left:541.441333pt;}
.xe_c01071{left:546.593333pt;}
.x3c_c01071{left:547.769333pt;}
.x42_c01071{left:552.105333pt;}
.x2c_c01071{left:558.480000pt;}
.x34_c01071{left:560.400000pt;}
.x14_c01071{left:570.559807pt;}
.x4f_c01071{left:572.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_c01072 {
    display:none;
  }
  .loading-indicator_c01072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01072 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01072 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01072" -> "#page-container .classname_c01072")
 */
.pf_c01072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01072 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01072 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01072 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01072 {overflow:visible;}
  }
}
.c_c01072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01072 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01072:after { /* webkit #35443 */
  content: '';
}
.t_c01072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01072 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01072 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01072 { /* info for Javascript */
  display:none;
}
.l_c01072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.000000;font-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_c01072{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);}
.mbc_c01072{transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);-ms-transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.011959,-0.000120,0.002500,0.249988,0,0);}
.m3_c01072{transform:matrix(0.012319,-0.000172,0.003500,0.249976,0,0);-ms-transform:matrix(0.012319,-0.000172,0.003500,0.249976,0,0);-webkit-transform:matrix(0.012319,-0.000172,0.003500,0.249976,0,0);}
.m69_c01072{transform:matrix(0.012904,-0.000116,0.002250,0.249990,0,0);-ms-transform:matrix(0.012904,-0.000116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.012904,-0.000116,0.002250,0.249990,0,0);}
.m5c_c01072{transform:matrix(0.014049,-0.000126,0.002250,0.249990,0,0);-ms-transform:matrix(0.014049,-0.000126,0.002250,0.249990,0,0);-webkit-transform:matrix(0.014049,-0.000126,0.002250,0.249990,0,0);}
.m1d_c01072{transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);-ms-transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014484,-0.000159,0.002750,0.249985,0,0);}
.m91_c01072{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);}
.m33_c01072{transform:matrix(0.015254,-0.000137,0.002250,0.249990,0,0);-ms-transform:matrix(0.015254,-0.000137,0.002250,0.249990,0,0);-webkit-transform:matrix(0.015254,-0.000137,0.002250,0.249990,0,0);}
.m3d_c01072{transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015970,0.000000,0.000000,0.250000,0,0);}
.m72_c01072{transform:matrix(0.019164,-0.000172,0.002250,0.249990,0,0);-ms-transform:matrix(0.019164,-0.000172,0.002250,0.249990,0,0);-webkit-transform:matrix(0.019164,-0.000172,0.002250,0.249990,0,0);}
.mab_c01072{transform:matrix(0.032130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032130,0.000000,0.000000,0.250000,0,0);}
.m74_c01072{transform:matrix(0.033469,-0.000301,0.002250,0.249990,0,0);-ms-transform:matrix(0.033469,-0.000301,0.002250,0.249990,0,0);-webkit-transform:matrix(0.033469,-0.000301,0.002250,0.249990,0,0);}
.m0_c01072{transform:matrix(0.058954,-0.000825,0.003500,0.249976,0,0);-ms-transform:matrix(0.058954,-0.000825,0.003500,0.249976,0,0);-webkit-transform:matrix(0.058954,-0.000825,0.003500,0.249976,0,0);}
.m2_c01072{transform:matrix(0.065304,-0.000914,0.003500,0.249976,0,0);-ms-transform:matrix(0.065304,-0.000914,0.003500,0.249976,0,0);-webkit-transform:matrix(0.065304,-0.000914,0.003500,0.249976,0,0);}
.mb0_c01072{transform:matrix(0.087621,-0.000876,0.002500,0.249988,0,0);-ms-transform:matrix(0.087621,-0.000876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.087621,-0.000876,0.002500,0.249988,0,0);}
.m50_c01072{transform:matrix(0.133950,-0.001206,0.002250,0.249990,0,0);-ms-transform:matrix(0.133950,-0.001206,0.002250,0.249990,0,0);-webkit-transform:matrix(0.133950,-0.001206,0.002250,0.249990,0,0);}
.m71_c01072{transform:matrix(0.135120,-0.001216,0.002250,0.249990,0,0);-ms-transform:matrix(0.135120,-0.001216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.135120,-0.001216,0.002250,0.249990,0,0);}
.m57_c01072{transform:matrix(0.143324,-0.001290,0.002250,0.249990,0,0);-ms-transform:matrix(0.143324,-0.001290,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143324,-0.001290,0.002250,0.249990,0,0);}
.m2a_c01072{transform:matrix(0.147774,-0.001330,0.002250,0.249990,0,0);-ms-transform:matrix(0.147774,-0.001330,0.002250,0.249990,0,0);-webkit-transform:matrix(0.147774,-0.001330,0.002250,0.249990,0,0);}
.m13_c01072{transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147985,0.000000,0.000000,0.250000,0,0);}
.m3a_c01072{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m39_c01072{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);}
.m49_c01072{transform:matrix(0.151829,-0.001366,0.002250,0.249990,0,0);-ms-transform:matrix(0.151829,-0.001366,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151829,-0.001366,0.002250,0.249990,0,0);}
.m2e_c01072{transform:matrix(0.154249,-0.001388,0.002250,0.249990,0,0);-ms-transform:matrix(0.154249,-0.001388,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154249,-0.001388,0.002250,0.249990,0,0);}
.m87_c01072{transform:matrix(0.155374,-0.001398,0.002250,0.249990,0,0);-ms-transform:matrix(0.155374,-0.001398,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155374,-0.001398,0.002250,0.249990,0,0);}
.m54_c01072{transform:matrix(0.156139,-0.001405,0.002250,0.249990,0,0);-ms-transform:matrix(0.156139,-0.001405,0.002250,0.249990,0,0);-webkit-transform:matrix(0.156139,-0.001405,0.002250,0.249990,0,0);}
.m7_c01072{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);}
.mb7_c01072{transform:matrix(0.159507,-0.001595,0.002500,0.249988,0,0);-ms-transform:matrix(0.159507,-0.001595,0.002500,0.249988,0,0);-webkit-transform:matrix(0.159507,-0.001595,0.002500,0.249988,0,0);}
.m29_c01072{transform:matrix(0.160069,-0.001441,0.002250,0.249990,0,0);-ms-transform:matrix(0.160069,-0.001441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160069,-0.001441,0.002250,0.249990,0,0);}
.mb1_c01072{transform:matrix(0.161047,-0.001610,0.002500,0.249988,0,0);-ms-transform:matrix(0.161047,-0.001610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161047,-0.001610,0.002500,0.249988,0,0);}
.m6b_c01072{transform:matrix(0.161268,-0.001451,0.002250,0.249990,0,0);-ms-transform:matrix(0.161268,-0.001451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161268,-0.001451,0.002250,0.249990,0,0);}
.ma5_c01072{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);}
.m76_c01072{transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);-ms-transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);-webkit-transform:matrix(0.164818,-0.001483,0.002250,0.249990,0,0);}
.m6c_c01072{transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);-ms-transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165073,-0.001486,0.002250,0.249990,0,0);}
.md_c01072{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);}
.mb5_c01072{transform:matrix(0.167562,-0.001676,0.002500,0.249988,0,0);-ms-transform:matrix(0.167562,-0.001676,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167562,-0.001676,0.002500,0.249988,0,0);}
.m6a_c01072{transform:matrix(0.168283,-0.001515,0.002250,0.249990,0,0);-ms-transform:matrix(0.168283,-0.001515,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168283,-0.001515,0.002250,0.249990,0,0);}
.m21_c01072{transform:matrix(0.168610,-0.001855,0.002750,0.249985,0,0);-ms-transform:matrix(0.168610,-0.001855,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168610,-0.001855,0.002750,0.249985,0,0);}
.m56_c01072{transform:matrix(0.170723,-0.001537,0.002250,0.249990,0,0);-ms-transform:matrix(0.170723,-0.001537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170723,-0.001537,0.002250,0.249990,0,0);}
.mc_c01072{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);}
.m10_c01072{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);}
.m61_c01072{transform:matrix(0.171603,-0.001544,0.002250,0.249990,0,0);-ms-transform:matrix(0.171603,-0.001544,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171603,-0.001544,0.002250,0.249990,0,0);}
.mb2_c01072{transform:matrix(0.171921,-0.001719,0.002500,0.249988,0,0);-ms-transform:matrix(0.171921,-0.001719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171921,-0.001719,0.002500,0.249988,0,0);}
.me_c01072{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);}
.m93_c01072{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);}
.m52_c01072{transform:matrix(0.178423,-0.001606,0.002250,0.249990,0,0);-ms-transform:matrix(0.178423,-0.001606,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178423,-0.001606,0.002250,0.249990,0,0);}
.ma2_c01072{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);}
.mbb_c01072{transform:matrix(0.178911,-0.001789,0.002500,0.249988,0,0);-ms-transform:matrix(0.178911,-0.001789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178911,-0.001789,0.002500,0.249988,0,0);}
.m35_c01072{transform:matrix(0.180538,-0.001625,0.002250,0.249990,0,0);-ms-transform:matrix(0.180538,-0.001625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180538,-0.001625,0.002250,0.249990,0,0);}
.m1f_c01072{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);}
.m79_c01072{transform:matrix(0.181443,-0.001633,0.002250,0.249990,0,0);-ms-transform:matrix(0.181443,-0.001633,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181443,-0.001633,0.002250,0.249990,0,0);}
.m85_c01072{transform:matrix(0.181468,-0.001633,0.002250,0.249990,0,0);-ms-transform:matrix(0.181468,-0.001633,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181468,-0.001633,0.002250,0.249990,0,0);}
.m1b_c01072{transform:matrix(0.181811,-0.001273,0.001750,0.249994,0,0);-ms-transform:matrix(0.181811,-0.001273,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181811,-0.001273,0.001750,0.249994,0,0);}
.m11_c01072{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);}
.m30_c01072{transform:matrix(0.183143,-0.001648,0.002250,0.249990,0,0);-ms-transform:matrix(0.183143,-0.001648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183143,-0.001648,0.002250,0.249990,0,0);}
.ma9_c01072{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);}
.m59_c01072{transform:matrix(0.184483,-0.001660,0.002250,0.249990,0,0);-ms-transform:matrix(0.184483,-0.001660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184483,-0.001660,0.002250,0.249990,0,0);}
.m7f_c01072{transform:matrix(0.184613,-0.001662,0.002250,0.249990,0,0);-ms-transform:matrix(0.184613,-0.001662,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184613,-0.001662,0.002250,0.249990,0,0);}
.m58_c01072{transform:matrix(0.184703,-0.001662,0.002250,0.249990,0,0);-ms-transform:matrix(0.184703,-0.001662,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184703,-0.001662,0.002250,0.249990,0,0);}
.m5e_c01072{transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);-ms-transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185722,-0.001672,0.002250,0.249990,0,0);}
.m86_c01072{transform:matrix(0.185957,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.185957,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185957,-0.001674,0.002250,0.249990,0,0);}
.m9a_c01072{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);}
.mb3_c01072{transform:matrix(0.186791,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186791,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186791,-0.001868,0.002500,0.249988,0,0);}
.m9c_c01072{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m80_c01072{transform:matrix(0.187662,-0.001689,0.002250,0.249990,0,0);-ms-transform:matrix(0.187662,-0.001689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187662,-0.001689,0.002250,0.249990,0,0);}
.m2b_c01072{transform:matrix(0.188217,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188217,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188217,-0.001694,0.002250,0.249990,0,0);}
.m24_c01072{transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);-ms-transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189974,-0.002090,0.002750,0.249985,0,0);}
.m53_c01072{transform:matrix(0.193422,-0.001741,0.002250,0.249990,0,0);-ms-transform:matrix(0.193422,-0.001741,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193422,-0.001741,0.002250,0.249990,0,0);}
.mba_c01072{transform:matrix(0.193640,-0.001936,0.002500,0.249988,0,0);-ms-transform:matrix(0.193640,-0.001936,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193640,-0.001936,0.002500,0.249988,0,0);}
.m4d_c01072{transform:matrix(0.195412,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195412,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195412,-0.001759,0.002250,0.249990,0,0);}
.m31_c01072{transform:matrix(0.195457,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195457,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195457,-0.001759,0.002250,0.249990,0,0);}
.m26_c01072{transform:matrix(0.195738,-0.002153,0.002750,0.249985,0,0);-ms-transform:matrix(0.195738,-0.002153,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195738,-0.002153,0.002750,0.249985,0,0);}
.mb4_c01072{transform:matrix(0.195850,-0.001959,0.002500,0.249988,0,0);-ms-transform:matrix(0.195850,-0.001959,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195850,-0.001959,0.002500,0.249988,0,0);}
.m99_c01072{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);}
.m66_c01072{transform:matrix(0.196847,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196847,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196847,-0.001772,0.002250,0.249990,0,0);}
.m16_c01072{transform:matrix(0.196930,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.196930,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196930,-0.001379,0.001750,0.249994,0,0);}
.m1a_c01072{transform:matrix(0.198280,-0.001388,0.001750,0.249994,0,0);-ms-transform:matrix(0.198280,-0.001388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198280,-0.001388,0.001750,0.249994,0,0);}
.m20_c01072{transform:matrix(0.198853,-0.002187,0.002750,0.249985,0,0);-ms-transform:matrix(0.198853,-0.002187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198853,-0.002187,0.002750,0.249985,0,0);}
.m6_c01072{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);}
.mb_c01072{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);}
.m6f_c01072{transform:matrix(0.199482,-0.001795,0.002250,0.249990,0,0);-ms-transform:matrix(0.199482,-0.001795,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199482,-0.001795,0.002250,0.249990,0,0);}
.m28_c01072{transform:matrix(0.199682,-0.001797,0.002250,0.249990,0,0);-ms-transform:matrix(0.199682,-0.001797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199682,-0.001797,0.002250,0.249990,0,0);}
.m82_c01072{transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);-ms-transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199747,-0.001798,0.002250,0.249990,0,0);}
.m18_c01072{transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);-ms-transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200330,-0.001402,0.001750,0.249994,0,0);}
.m1e_c01072{transform:matrix(0.201373,-0.002215,0.002750,0.249985,0,0);-ms-transform:matrix(0.201373,-0.002215,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201373,-0.002215,0.002750,0.249985,0,0);}
.m55_c01072{transform:matrix(0.201672,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201672,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201672,-0.001815,0.002250,0.249990,0,0);}
.m88_c01072{transform:matrix(0.201962,-0.001818,0.002250,0.249990,0,0);-ms-transform:matrix(0.201962,-0.001818,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201962,-0.001818,0.002250,0.249990,0,0);}
.ma3_c01072{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);}
.ma4_c01072{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);}
.m8f_c01072{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);}
.m9b_c01072{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);}
.m63_c01072{transform:matrix(0.203102,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203102,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203102,-0.001828,0.002250,0.249990,0,0);}
.mb6_c01072{transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);-ms-transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);}
.m9d_c01072{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);}
.m7b_c01072{transform:matrix(0.205687,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205687,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205687,-0.001851,0.002250,0.249990,0,0);}
.m7a_c01072{transform:matrix(0.206352,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206352,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206352,-0.001857,0.002250,0.249990,0,0);}
.m98_c01072{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);}
.m3b_c01072{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);}
.m43_c01072{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);}
.m1_c01072{transform:matrix(0.209150,-0.002928,0.003500,0.249976,0,0);-ms-transform:matrix(0.209150,-0.002928,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209150,-0.002928,0.003500,0.249976,0,0);}
.m78_c01072{transform:matrix(0.209332,-0.001884,0.002250,0.249990,0,0);-ms-transform:matrix(0.209332,-0.001884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209332,-0.001884,0.002250,0.249990,0,0);}
.m6e_c01072{transform:matrix(0.210576,-0.001895,0.002250,0.249990,0,0);-ms-transform:matrix(0.210576,-0.001895,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210576,-0.001895,0.002250,0.249990,0,0);}
.m84_c01072{transform:matrix(0.210896,-0.001898,0.002250,0.249990,0,0);-ms-transform:matrix(0.210896,-0.001898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210896,-0.001898,0.002250,0.249990,0,0);}
.m19_c01072{transform:matrix(0.213065,-0.001491,0.001750,0.249994,0,0);-ms-transform:matrix(0.213065,-0.001491,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213065,-0.001491,0.001750,0.249994,0,0);}
.m23_c01072{transform:matrix(0.213987,-0.002354,0.002750,0.249985,0,0);-ms-transform:matrix(0.213987,-0.002354,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213987,-0.002354,0.002750,0.249985,0,0);}
.m94_c01072{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);}
.ma7_c01072{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);}
.m25_c01072{transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214892,-0.002364,0.002750,0.249985,0,0);}
.m2c_c01072{transform:matrix(0.215876,-0.001943,0.002250,0.249990,0,0);-ms-transform:matrix(0.215876,-0.001943,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215876,-0.001943,0.002250,0.249990,0,0);}
.m77_c01072{transform:matrix(0.217701,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217701,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217701,-0.001959,0.002250,0.249990,0,0);}
.m67_c01072{transform:matrix(0.218531,-0.001967,0.002250,0.249990,0,0);-ms-transform:matrix(0.218531,-0.001967,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218531,-0.001967,0.002250,0.249990,0,0);}
.m2f_c01072{transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219686,-0.001977,0.002250,0.249990,0,0);}
.ma6_c01072{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);}
.m9e_c01072{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);}
.m2d_c01072{transform:matrix(0.224876,-0.002024,0.002250,0.249990,0,0);-ms-transform:matrix(0.224876,-0.002024,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224876,-0.002024,0.002250,0.249990,0,0);}
.m6d_c01072{transform:matrix(0.225576,-0.002030,0.002250,0.249990,0,0);-ms-transform:matrix(0.225576,-0.002030,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225576,-0.002030,0.002250,0.249990,0,0);}
.mf_c01072{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);}
.maf_c01072{transform:matrix(0.227569,-0.002276,0.002500,0.249988,0,0);-ms-transform:matrix(0.227569,-0.002276,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227569,-0.002276,0.002500,0.249988,0,0);}
.m34_c01072{transform:matrix(0.229356,-0.002064,0.002250,0.249990,0,0);-ms-transform:matrix(0.229356,-0.002064,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229356,-0.002064,0.002250,0.249990,0,0);}
.m65_c01072{transform:matrix(0.229521,-0.002066,0.002250,0.249990,0,0);-ms-transform:matrix(0.229521,-0.002066,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229521,-0.002066,0.002250,0.249990,0,0);}
.m44_c01072{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);}
.m45_c01072{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);}
.m9f_c01072{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);}
.m4e_c01072{transform:matrix(0.236325,-0.002127,0.002250,0.249990,0,0);-ms-transform:matrix(0.236325,-0.002127,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236325,-0.002127,0.002250,0.249990,0,0);}
.m62_c01072{transform:matrix(0.237125,-0.002134,0.002250,0.249990,0,0);-ms-transform:matrix(0.237125,-0.002134,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237125,-0.002134,0.002250,0.249990,0,0);}
.m4f_c01072{transform:matrix(0.237355,-0.002136,0.002250,0.249990,0,0);-ms-transform:matrix(0.237355,-0.002136,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237355,-0.002136,0.002250,0.249990,0,0);}
.m81_c01072{transform:matrix(0.237485,-0.002137,0.002250,0.249990,0,0);-ms-transform:matrix(0.237485,-0.002137,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237485,-0.002137,0.002250,0.249990,0,0);}
.m75_c01072{transform:matrix(0.237555,-0.002138,0.002250,0.249990,0,0);-ms-transform:matrix(0.237555,-0.002138,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237555,-0.002138,0.002250,0.249990,0,0);}
.m96_c01072{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);}
.m60_c01072{transform:matrix(0.239810,-0.002158,0.002250,0.249990,0,0);-ms-transform:matrix(0.239810,-0.002158,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239810,-0.002158,0.002250,0.249990,0,0);}
.m22_c01072{transform:matrix(0.240895,-0.002650,0.002750,0.249985,0,0);-ms-transform:matrix(0.240895,-0.002650,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240895,-0.002650,0.002750,0.249985,0,0);}
.m92_c01072{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);}
.m37_c01072{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);}
.ma8_c01072{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);}
.m48_c01072{transform:matrix(0.245320,-0.002208,0.002250,0.249990,0,0);-ms-transform:matrix(0.245320,-0.002208,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245320,-0.002208,0.002250,0.249990,0,0);}
.m4a_c01072{transform:matrix(0.246940,-0.002222,0.002250,0.249990,0,0);-ms-transform:matrix(0.246940,-0.002222,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246940,-0.002222,0.002250,0.249990,0,0);}
.m5b_c01072{transform:matrix(0.248015,-0.002232,0.002250,0.249990,0,0);-ms-transform:matrix(0.248015,-0.002232,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248015,-0.002232,0.002250,0.249990,0,0);}
.m70_c01072{transform:matrix(0.248190,-0.002234,0.002250,0.249990,0,0);-ms-transform:matrix(0.248190,-0.002234,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248190,-0.002234,0.002250,0.249990,0,0);}
.m83_c01072{transform:matrix(0.249220,-0.002243,0.002250,0.249990,0,0);-ms-transform:matrix(0.249220,-0.002243,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249220,-0.002243,0.002250,0.249990,0,0);}
.m17_c01072{transform:matrix(0.252994,-0.001771,0.001750,0.249994,0,0);-ms-transform:matrix(0.252994,-0.001771,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252994,-0.001771,0.001750,0.249994,0,0);}
.m46_c01072{transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);}
.m97_c01072{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.ma1_c01072{transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);}
.m5a_c01072{transform:matrix(0.258860,-0.002330,0.002250,0.249990,0,0);-ms-transform:matrix(0.258860,-0.002330,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258860,-0.002330,0.002250,0.249990,0,0);}
.m7c_c01072{transform:matrix(0.262239,-0.002360,0.002250,0.249990,0,0);-ms-transform:matrix(0.262239,-0.002360,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262239,-0.002360,0.002250,0.249990,0,0);}
.ma_c01072{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);}
.mb9_c01072{transform:matrix(0.263337,-0.002633,0.002500,0.249988,0,0);-ms-transform:matrix(0.263337,-0.002633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263337,-0.002633,0.002500,0.249988,0,0);}
.m8_c01072{transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266970,0.000000,0.000000,0.250000,0,0);}
.m15_c01072{transform:matrix(0.271348,-0.001899,0.001750,0.249994,0,0);-ms-transform:matrix(0.271348,-0.001899,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271348,-0.001899,0.001750,0.249994,0,0);}
.m8a_c01072{transform:matrix(0.278724,-0.002509,0.002250,0.249990,0,0);-ms-transform:matrix(0.278724,-0.002509,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278724,-0.002509,0.002250,0.249990,0,0);}
.m64_c01072{transform:matrix(0.286353,-0.002577,0.002250,0.249990,0,0);-ms-transform:matrix(0.286353,-0.002577,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286353,-0.002577,0.002250,0.249990,0,0);}
.m12_c01072{transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286695,0.000000,0.000000,0.250000,0,0);}
.m38_c01072{transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);}
.m8b_c01072{transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);-ms-transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);-webkit-transform:matrix(0.307088,-0.002764,0.002250,0.249990,0,0);}
.m89_c01072{transform:matrix(0.308268,-0.002774,0.002250,0.249990,0,0);-ms-transform:matrix(0.308268,-0.002774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308268,-0.002774,0.002250,0.249990,0,0);}
.m3c_c01072{transform:matrix(0.310630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310630,0.000000,0.000000,0.250000,0,0);}
.m27_c01072{transform:matrix(0.311112,-0.002800,0.002250,0.249990,0,0);-ms-transform:matrix(0.311112,-0.002800,0.002250,0.249990,0,0);-webkit-transform:matrix(0.311112,-0.002800,0.002250,0.249990,0,0);}
.mae_c01072{transform:matrix(0.321779,-0.003218,0.002500,0.249988,0,0);-ms-transform:matrix(0.321779,-0.003218,0.002500,0.249988,0,0);-webkit-transform:matrix(0.321779,-0.003218,0.002500,0.249988,0,0);}
.m40_c01072{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);}
.mac_c01072{transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333895,0.000000,0.000000,0.250000,0,0);}
.m8c_c01072{transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335345,0.000000,0.000000,0.250000,0,0);}
.m5_c01072{transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338350,0.000000,0.000000,0.250000,0,0);}
.m8e_c01072{transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340420,0.000000,0.000000,0.250000,0,0);}
.m3f_c01072{transform:matrix(0.340820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340820,0.000000,0.000000,0.250000,0,0);}
.m42_c01072{transform:matrix(0.342135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342135,0.000000,0.000000,0.250000,0,0);}
.m68_c01072{transform:matrix(0.344031,-0.003096,0.002250,0.249990,0,0);-ms-transform:matrix(0.344031,-0.003096,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344031,-0.003096,0.002250,0.249990,0,0);}
.m51_c01072{transform:matrix(0.355366,-0.003198,0.002250,0.249990,0,0);-ms-transform:matrix(0.355366,-0.003198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.355366,-0.003198,0.002250,0.249990,0,0);}
.ma0_c01072{transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359785,0.000000,0.000000,0.250000,0,0);}
.m7e_c01072{transform:matrix(0.360035,-0.003240,0.002250,0.249990,0,0);-ms-transform:matrix(0.360035,-0.003240,0.002250,0.249990,0,0);-webkit-transform:matrix(0.360035,-0.003240,0.002250,0.249990,0,0);}
.m4c_c01072{transform:matrix(0.375565,-0.003380,0.002250,0.249990,0,0);-ms-transform:matrix(0.375565,-0.003380,0.002250,0.249990,0,0);-webkit-transform:matrix(0.375565,-0.003380,0.002250,0.249990,0,0);}
.m4_c01072{transform:matrix(0.383270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383270,0.000000,0.000000,0.250000,0,0);}
.m7d_c01072{transform:matrix(0.388074,-0.003493,0.002250,0.249990,0,0);-ms-transform:matrix(0.388074,-0.003493,0.002250,0.249990,0,0);-webkit-transform:matrix(0.388074,-0.003493,0.002250,0.249990,0,0);}
.mad_c01072{transform:matrix(0.413220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413220,0.000000,0.000000,0.250000,0,0);}
.m9_c01072{transform:matrix(0.413360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413360,0.000000,0.000000,0.250000,0,0);}
.m41_c01072{transform:matrix(0.424780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424780,0.000000,0.000000,0.250000,0,0);}
.m5d_c01072{transform:matrix(0.436837,-0.003932,0.002250,0.249990,0,0);-ms-transform:matrix(0.436837,-0.003932,0.002250,0.249990,0,0);-webkit-transform:matrix(0.436837,-0.003932,0.002250,0.249990,0,0);}
.m3e_c01072{transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464660,0.000000,0.000000,0.250000,0,0);}
.m1c_c01072{transform:matrix(0.471431,-0.005186,0.002750,0.249985,0,0);-ms-transform:matrix(0.471431,-0.005186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.471431,-0.005186,0.002750,0.249985,0,0);}
.m90_c01072{transform:matrix(0.491095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491095,0.000000,0.000000,0.250000,0,0);}
.m32_c01072{transform:matrix(0.503095,-0.004528,0.002250,0.249990,0,0);-ms-transform:matrix(0.503095,-0.004528,0.002250,0.249990,0,0);-webkit-transform:matrix(0.503095,-0.004528,0.002250,0.249990,0,0);}
.m73_c01072{transform:matrix(0.517824,-0.004660,0.002250,0.249990,0,0);-ms-transform:matrix(0.517824,-0.004660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.517824,-0.004660,0.002250,0.249990,0,0);}
.m4b_c01072{transform:matrix(0.551328,-0.004962,0.002250,0.249990,0,0);-ms-transform:matrix(0.551328,-0.004962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.551328,-0.004962,0.002250,0.249990,0,0);}
.m47_c01072{transform:matrix(0.551613,-0.004965,0.002250,0.249990,0,0);-ms-transform:matrix(0.551613,-0.004965,0.002250,0.249990,0,0);-webkit-transform:matrix(0.551613,-0.004965,0.002250,0.249990,0,0);}
.m95_c01072{transform:matrix(0.592275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592275,0.000000,0.000000,0.250000,0,0);}
.m36_c01072{transform:matrix(0.655755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655755,0.000000,0.000000,0.250000,0,0);}
.mb8_c01072{transform:matrix(0.675406,-0.006754,0.002500,0.249988,0,0);-ms-transform:matrix(0.675406,-0.006754,0.002500,0.249988,0,0);-webkit-transform:matrix(0.675406,-0.006754,0.002500,0.249988,0,0);}
.m14_c01072{transform:matrix(0.849194,-0.005944,0.001750,0.249994,0,0);-ms-transform:matrix(0.849194,-0.005944,0.001750,0.249994,0,0);-webkit-transform:matrix(0.849194,-0.005944,0.001750,0.249994,0,0);}
.maa_c01072{transform:matrix(0.864635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864635,0.000000,0.000000,0.250000,0,0);}
.m5f_c01072{transform:matrix(1.027008,-0.009243,0.002250,0.249990,0,0);-ms-transform:matrix(1.027008,-0.009243,0.002250,0.249990,0,0);-webkit-transform:matrix(1.027008,-0.009243,0.002250,0.249990,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls0_c01072{letter-spacing:0.000000px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:0.000000px;}
.fc0_c01072{color:transparent;}
.fsc_c01072{font-size:60.902466px;}
.fs13_c01072{font-size:63.000000px;}
.fse_c01072{font-size:63.002551px;}
.fs12_c01072{font-size:64.050000px;}
.fs8_c01072{font-size:65.100000px;}
.fsd_c01072{font-size:66.152679px;}
.fs9_c01072{font-size:67.202722px;}
.fs4_c01072{font-size:67.204065px;}
.fs2_c01072{font-size:68.250000px;}
.fs3_c01072{font-size:68.251672px;}
.fs14_c01072{font-size:69.300000px;}
.fsb_c01072{font-size:69.302807px;}
.fs0_c01072{font-size:69.306791px;}
.fsf_c01072{font-size:70.352849px;}
.fs16_c01072{font-size:71.403570px;}
.fs7_c01072{font-size:73.500000px;}
.fs15_c01072{font-size:73.503675px;}
.fsa_c01072{font-size:74.553019px;}
.fs6_c01072{font-size:75.600000px;}
.fs5_c01072{font-size:75.603062px;}
.fs10_c01072{font-size:98.703997px;}
.fs11_c01072{font-size:100.800000px;}
.fs1_c01072{font-size:129.150000px;}
.y0_c01072{bottom:0.000000px;}
.y8a_c01072{bottom:290.526480px;}
.y8b_c01072{bottom:292.451340px;}
.y8c_c01072{bottom:292.630200px;}
.y8d_c01072{bottom:293.866380px;}
.y8e_c01072{bottom:295.813725px;}
.y80_c01072{bottom:313.471500px;}
.y81_c01072{bottom:314.306130px;}
.y82_c01072{bottom:314.955885px;}
.y83_c01072{bottom:315.077925px;}
.y84_c01072{bottom:315.305310px;}
.y85_c01072{bottom:315.874905px;}
.y86_c01072{bottom:316.034385px;}
.y87_c01072{bottom:316.787565px;}
.y88_c01072{bottom:317.141280px;}
.y89_c01072{bottom:317.411055px;}
.y7f_c01072{bottom:339.745500px;}
.y7e_c01072{bottom:361.150500px;}
.y7d_c01072{bottom:384.621000px;}
.y7c_c01072{bottom:408.780000px;}
.y7b_c01072{bottom:431.637000px;}
.y7a_c01072{bottom:475.722078px;}
.y79_c01072{bottom:475.722683px;}
.y6d_c01072{bottom:495.446157px;}
.y6e_c01072{bottom:496.274139px;}
.y6f_c01072{bottom:496.677155px;}
.y70_c01072{bottom:496.886526px;}
.y71_c01072{bottom:497.561783px;}
.y72_c01072{bottom:498.037847px;}
.y73_c01072{bottom:498.230384px;}
.y74_c01072{bottom:498.568181px;}
.y75_c01072{bottom:499.000680px;}
.y76_c01072{bottom:499.384647px;}
.y77_c01072{bottom:499.630091px;}
.y78_c01072{bottom:500.125878px;}
.y61_c01072{bottom:518.395965px;}
.y62_c01072{bottom:518.454818px;}
.y63_c01072{bottom:518.937855px;}
.y64_c01072{bottom:519.140870px;}
.y65_c01072{bottom:519.482540px;}
.y66_c01072{bottom:519.664254px;}
.y67_c01072{bottom:519.936339px;}
.y68_c01072{bottom:520.288916px;}
.y69_c01072{bottom:520.610418px;}
.y6a_c01072{bottom:520.952399px;}
.y6b_c01072{bottom:521.582418px;}
.y6c_c01072{bottom:522.272156px;}
.y57_c01072{bottom:540.540989px;}
.y58_c01072{bottom:541.118811px;}
.y59_c01072{bottom:541.624445px;}
.y5a_c01072{bottom:541.847696px;}
.y5b_c01072{bottom:542.125689px;}
.y5c_c01072{bottom:542.569694px;}
.y5d_c01072{bottom:543.677930px;}
.y5e_c01072{bottom:544.639991px;}
.y5f_c01072{bottom:545.359437px;}
.y60_c01072{bottom:546.081192px;}
.y4e_c01072{bottom:563.763000px;}
.y4f_c01072{bottom:564.596720px;}
.y50_c01072{bottom:565.376669px;}
.y51_c01072{bottom:565.609895px;}
.y52_c01072{bottom:565.880030px;}
.y53_c01072{bottom:566.453658px;}
.y54_c01072{bottom:567.121679px;}
.y55_c01072{bottom:567.639417px;}
.y56_c01072{bottom:567.828836px;}
.y4d_c01072{bottom:589.479768px;}
.y4b_c01072{bottom:589.480179px;}
.y4c_c01072{bottom:589.480498px;}
.y4a_c01072{bottom:589.480833px;}
.y40_c01072{bottom:608.853607px;}
.y41_c01072{bottom:610.027821px;}
.y42_c01072{bottom:610.568190px;}
.y43_c01072{bottom:610.954571px;}
.y44_c01072{bottom:611.425853px;}
.y45_c01072{bottom:612.521499px;}
.y46_c01072{bottom:612.825315px;}
.y47_c01072{bottom:613.131265px;}
.y48_c01072{bottom:613.594526px;}
.y49_c01072{bottom:614.147115px;}
.y36_c01072{bottom:633.423000px;}
.y37_c01072{bottom:634.143212px;}
.y38_c01072{bottom:634.486044px;}
.y39_c01072{bottom:634.870254px;}
.y3a_c01072{bottom:635.053395px;}
.y3b_c01072{bottom:635.771568px;}
.y3c_c01072{bottom:635.956302px;}
.y3d_c01072{bottom:636.282057px;}
.y3e_c01072{bottom:636.604990px;}
.y3f_c01072{bottom:637.471191px;}
.y35_c01072{bottom:659.019000px;}
.y34_c01072{bottom:680.308500px;}
.y33_c01072{bottom:702.210000px;}
.y32_c01072{bottom:726.887715px;}
.y31_c01072{bottom:726.887939px;}
.y30_c01072{bottom:726.888205px;}
.y2f_c01072{bottom:726.888873px;}
.y24_c01072{bottom:747.361500px;}
.y25_c01072{bottom:748.158688px;}
.y26_c01072{bottom:748.360108px;}
.y27_c01072{bottom:748.569520px;}
.y28_c01072{bottom:748.861107px;}
.y29_c01072{bottom:749.352385px;}
.y2a_c01072{bottom:749.932832px;}
.y2b_c01072{bottom:750.107913px;}
.y2c_c01072{bottom:750.515802px;}
.y2d_c01072{bottom:751.018771px;}
.y2e_c01072{bottom:751.250054px;}
.y19_c01072{bottom:769.944000px;}
.y1a_c01072{bottom:770.737237px;}
.y1b_c01072{bottom:770.952695px;}
.y1c_c01072{bottom:771.623419px;}
.y1d_c01072{bottom:771.959178px;}
.y1e_c01072{bottom:772.235339px;}
.y1f_c01072{bottom:772.547304px;}
.y20_c01072{bottom:772.975050px;}
.y21_c01072{bottom:773.442231px;}
.y22_c01072{bottom:774.008643px;}
.y23_c01072{bottom:774.330063px;}
.y11_c01072{bottom:793.531500px;}
.y12_c01072{bottom:794.170887px;}
.y13_c01072{bottom:794.339202px;}
.y14_c01072{bottom:794.919400px;}
.y15_c01072{bottom:795.036675px;}
.y16_c01072{bottom:795.518688px;}
.y17_c01072{bottom:795.924828px;}
.y18_c01072{bottom:796.178361px;}
.y6_c01072{bottom:816.481500px;}
.y7_c01072{bottom:817.212000px;}
.y8_c01072{bottom:817.902000px;}
.y9_c01072{bottom:818.226000px;}
.ya_c01072{bottom:818.749500px;}
.yb_c01072{bottom:819.000000px;}
.yc_c01072{bottom:819.229500px;}
.yd_c01072{bottom:819.537000px;}
.ye_c01072{bottom:819.766500px;}
.yf_c01072{bottom:820.138500px;}
.y10_c01072{bottom:820.324500px;}
.y5_c01072{bottom:864.513000px;}
.y1_c01072{bottom:885.061500px;}
.y2_c01072{bottom:885.562644px;}
.y3_c01072{bottom:886.565541px;}
.y4_c01072{bottom:888.361125px;}
.he_c01072{height:60.902466px;}
.h15_c01072{height:63.000000px;}
.h10_c01072{height:63.002551px;}
.h14_c01072{height:64.050000px;}
.ha_c01072{height:65.100000px;}
.hf_c01072{height:66.152679px;}
.hb_c01072{height:67.202722px;}
.h6_c01072{height:67.204065px;}
.h4_c01072{height:68.250000px;}
.h5_c01072{height:68.251672px;}
.h16_c01072{height:69.300000px;}
.hd_c01072{height:69.302807px;}
.h2_c01072{height:69.306791px;}
.h11_c01072{height:70.352849px;}
.h18_c01072{height:71.403570px;}
.h9_c01072{height:73.500000px;}
.h17_c01072{height:73.503675px;}
.hc_c01072{height:74.553019px;}
.h8_c01072{height:75.600000px;}
.h7_c01072{height:75.603062px;}
.h12_c01072{height:98.703997px;}
.h13_c01072{height:100.800000px;}
.h3_c01072{height:129.150000px;}
.h1_c01072{height:1005.000000px;}
.h0_c01072{height:1005.150000px;}
.w1_c01072{width:762.750000px;}
.w0_c01072{width:763.020000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:13.827000px;}
.x34_c01072{left:40.230000px;}
.x5_c01072{left:44.280000px;}
.x2e_c01072{left:46.710000px;}
.x45_c01072{left:48.597051px;}
.x2_c01072{left:49.623000px;}
.x4c_c01072{left:50.711101px;}
.x5f_c01072{left:52.650000px;}
.x65_c01072{left:54.270000px;}
.x52_c01072{left:56.391321px;}
.x38_c01072{left:59.665500px;}
.x6b_c01072{left:65.610000px;}
.x61_c01072{left:69.120000px;}
.x71_c01072{left:93.690000px;}
.x4d_c01072{left:98.912306px;}
.xa_c01072{left:117.061500px;}
.x3_c01072{left:121.258500px;}
.x14_c01072{left:135.349500px;}
.x1b_c01072{left:136.764000px;}
.x24_c01072{left:137.806500px;}
.x39_c01072{left:139.689000px;}
.x47_c01072{left:141.861000px;}
.x66_c01072{left:145.260000px;}
.x6c_c01072{left:147.150000px;}
.x72_c01072{left:148.914000px;}
.x15_c01072{left:159.394500px;}
.x2f_c01072{left:178.200000px;}
.x3f_c01072{left:181.291028px;}
.x6_c01072{left:183.870000px;}
.xb_c01072{left:186.109500px;}
.x57_c01072{left:187.190898px;}
.x30_c01072{left:192.240000px;}
.x1c_c01072{left:197.739000px;}
.x6d_c01072{left:205.200000px;}
.x53_c01072{left:207.441171px;}
.x40_c01072{left:211.054461px;}
.x2b_c01072{left:214.117099px;}
.x25_c01072{left:215.853000px;}
.xc_c01072{left:218.565000px;}
.x3a_c01072{left:220.471500px;}
.x73_c01072{left:226.093500px;}
.x1d_c01072{left:228.262500px;}
.x3b_c01072{left:240.820500px;}
.x16_c01072{left:242.280000px;}
.x6e_c01072{left:245.430000px;}
.x41_c01072{left:247.251152px;}
.x4_c01072{left:249.514500px;}
.x1e_c01072{left:253.368000px;}
.x48_c01072{left:254.436000px;}
.x17_c01072{left:259.033500px;}
.x31_c01072{left:261.630000px;}
.xd_c01072{left:270.942000px;}
.x2c_c01072{left:276.759175px;}
.x78_c01072{left:279.406425px;}
.x1f_c01072{left:281.728500px;}
.x32_c01072{left:283.230000px;}
.x35_c01072{left:285.120000px;}
.x46_c01072{left:286.745843px;}
.x67_c01072{left:288.900000px;}
.x60_c01072{left:289.980000px;}
.x5e_c01072{left:291.879458px;}
.xe_c01072{left:296.008500px;}
.x2d_c01072{left:304.569930px;}
.x74_c01072{left:305.791500px;}
.x4e_c01072{left:312.253054px;}
.x6f_c01072{left:315.630000px;}
.xf_c01072{left:319.015500px;}
.x20_c01072{left:320.614500px;}
.x75_c01072{left:321.739500px;}
.x54_c01072{left:325.738237px;}
.x18_c01072{left:327.892500px;}
.x42_c01072{left:331.486614px;}
.x26_c01072{left:334.933500px;}
.x33_c01072{left:337.500000px;}
.x36_c01072{left:341.280000px;}
.x70_c01072{left:342.900000px;}
.x62_c01072{left:346.950000px;}
.x49_c01072{left:348.187500px;}
.x10_c01072{left:349.752000px;}
.x27_c01072{left:354.387000px;}
.x58_c01072{left:359.771898px;}
.x21_c01072{left:363.085500px;}
.x68_c01072{left:366.120000px;}
.x55_c01072{left:368.403115px;}
.x11_c01072{left:372.751500px;}
.x3c_c01072{left:377.338500px;}
.x43_c01072{left:378.403427px;}
.x37_c01072{left:380.700000px;}
.x19_c01072{left:385.912500px;}
.x4f_c01072{left:392.479895px;}
.x59_c01072{left:397.304898px;}
.x28_c01072{left:399.708000px;}
.x7_c01072{left:400.950000px;}
.x63_c01072{left:402.570000px;}
.x12_c01072{left:410.002500px;}
.x3d_c01072{left:413.220000px;}
.x22_c01072{left:414.577500px;}
.x1a_c01072{left:422.131500px;}
.x13_c01072{left:428.628000px;}
.x76_c01072{left:432.429000px;}
.x69_c01072{left:437.130000px;}
.x23_c01072{left:443.797500px;}
.x5a_c01072{left:445.360398px;}
.x56_c01072{left:447.239331px;}
.x50_c01072{left:452.416774px;}
.x29_c01072{left:455.593500px;}
.x44_c01072{left:456.606119px;}
.x77_c01072{left:459.406500px;}
.x6a_c01072{left:463.860000px;}
.x64_c01072{left:471.420000px;}
.x8_c01072{left:473.040000px;}
.x4a_c01072{left:479.938500px;}
.x2a_c01072{left:481.291500px;}
.x5b_c01072{left:488.023398px;}
.x4b_c01072{left:500.985000px;}
.x3e_c01072{left:509.464500px;}
.x51_c01072{left:512.610154px;}
.x5c_c01072{left:515.294898px;}
.x9_c01072{left:534.330000px;}
.x5d_c01072{left:570.382398px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls0_c01072{letter-spacing:0.000000pt;}
.ws0_c01072{word-spacing:0.000000pt;}
.fsc_c01072{font-size:54.135526pt;}
.fs13_c01072{font-size:56.000000pt;}
.fse_c01072{font-size:56.002268pt;}
.fs12_c01072{font-size:56.933333pt;}
.fs8_c01072{font-size:57.866667pt;}
.fsd_c01072{font-size:58.802381pt;}
.fs9_c01072{font-size:59.735752pt;}
.fs4_c01072{font-size:59.736947pt;}
.fs2_c01072{font-size:60.666667pt;}
.fs3_c01072{font-size:60.668153pt;}
.fs14_c01072{font-size:61.600000pt;}
.fsb_c01072{font-size:61.602495pt;}
.fs0_c01072{font-size:61.606037pt;}
.fsf_c01072{font-size:62.535866pt;}
.fs16_c01072{font-size:63.469840pt;}
.fs7_c01072{font-size:65.333333pt;}
.fs15_c01072{font-size:65.336600pt;}
.fsa_c01072{font-size:66.269350pt;}
.fs6_c01072{font-size:67.200000pt;}
.fs5_c01072{font-size:67.202722pt;}
.fs10_c01072{font-size:87.736886pt;}
.fs11_c01072{font-size:89.600000pt;}
.fs1_c01072{font-size:114.800000pt;}
.y0_c01072{bottom:0.000000pt;}
.y8a_c01072{bottom:258.245760pt;}
.y8b_c01072{bottom:259.956747pt;}
.y8c_c01072{bottom:260.115733pt;}
.y8d_c01072{bottom:261.214560pt;}
.y8e_c01072{bottom:262.945533pt;}
.y80_c01072{bottom:278.641333pt;}
.y81_c01072{bottom:279.383227pt;}
.y82_c01072{bottom:279.960787pt;}
.y83_c01072{bottom:280.069267pt;}
.y84_c01072{bottom:280.271387pt;}
.y85_c01072{bottom:280.777693pt;}
.y86_c01072{bottom:280.919453pt;}
.y87_c01072{bottom:281.588947pt;}
.y88_c01072{bottom:281.903360pt;}
.y89_c01072{bottom:282.143160pt;}
.y7f_c01072{bottom:301.996000pt;}
.y7e_c01072{bottom:321.022667pt;}
.y7d_c01072{bottom:341.885333pt;}
.y7c_c01072{bottom:363.360000pt;}
.y7b_c01072{bottom:383.677333pt;}
.y7a_c01072{bottom:422.864069pt;}
.y79_c01072{bottom:422.864607pt;}
.y6d_c01072{bottom:440.396584pt;}
.y6e_c01072{bottom:441.132568pt;}
.y6f_c01072{bottom:441.490804pt;}
.y70_c01072{bottom:441.676912pt;}
.y71_c01072{bottom:442.277140pt;}
.y72_c01072{bottom:442.700308pt;}
.y73_c01072{bottom:442.871452pt;}
.y74_c01072{bottom:443.171716pt;}
.y75_c01072{bottom:443.556160pt;}
.y76_c01072{bottom:443.897464pt;}
.y77_c01072{bottom:444.115636pt;}
.y78_c01072{bottom:444.556336pt;}
.y61_c01072{bottom:460.796413pt;}
.y62_c01072{bottom:460.848727pt;}
.y63_c01072{bottom:461.278093pt;}
.y64_c01072{bottom:461.458551pt;}
.y65_c01072{bottom:461.762257pt;}
.y66_c01072{bottom:461.923781pt;}
.y67_c01072{bottom:462.165635pt;}
.y68_c01072{bottom:462.479036pt;}
.y69_c01072{bottom:462.764816pt;}
.y6a_c01072{bottom:463.068799pt;}
.y6b_c01072{bottom:463.628816pt;}
.y6c_c01072{bottom:464.241916pt;}
.y57_c01072{bottom:480.480879pt;}
.y58_c01072{bottom:480.994499pt;}
.y59_c01072{bottom:481.443951pt;}
.y5a_c01072{bottom:481.642396pt;}
.y5b_c01072{bottom:481.889501pt;}
.y5c_c01072{bottom:482.284172pt;}
.y5d_c01072{bottom:483.269271pt;}
.y5e_c01072{bottom:484.124436pt;}
.y5f_c01072{bottom:484.763944pt;}
.y60_c01072{bottom:485.405504pt;}
.y4e_c01072{bottom:501.122667pt;}
.y4f_c01072{bottom:501.863751pt;}
.y50_c01072{bottom:502.557039pt;}
.y51_c01072{bottom:502.764351pt;}
.y52_c01072{bottom:503.004471pt;}
.y53_c01072{bottom:503.514363pt;}
.y54_c01072{bottom:504.108159pt;}
.y55_c01072{bottom:504.568371pt;}
.y56_c01072{bottom:504.736743pt;}
.y4d_c01072{bottom:523.982016pt;}
.y4b_c01072{bottom:523.982381pt;}
.y4c_c01072{bottom:523.982665pt;}
.y4a_c01072{bottom:523.982963pt;}
.y40_c01072{bottom:541.203207pt;}
.y41_c01072{bottom:542.246952pt;}
.y42_c01072{bottom:542.727280pt;}
.y43_c01072{bottom:543.070729pt;}
.y44_c01072{bottom:543.489647pt;}
.y45_c01072{bottom:544.463555pt;}
.y46_c01072{bottom:544.733613pt;}
.y47_c01072{bottom:545.005569pt;}
.y48_c01072{bottom:545.417356pt;}
.y49_c01072{bottom:545.908547pt;}
.y36_c01072{bottom:563.042667pt;}
.y37_c01072{bottom:563.682855pt;}
.y38_c01072{bottom:563.987595pt;}
.y39_c01072{bottom:564.329115pt;}
.y3a_c01072{bottom:564.491907pt;}
.y3b_c01072{bottom:565.130283pt;}
.y3c_c01072{bottom:565.294491pt;}
.y3d_c01072{bottom:565.584051pt;}
.y3e_c01072{bottom:565.871103pt;}
.y3f_c01072{bottom:566.641059pt;}
.y35_c01072{bottom:585.794667pt;}
.y34_c01072{bottom:604.718667pt;}
.y33_c01072{bottom:624.186667pt;}
.y32_c01072{bottom:646.122413pt;}
.y31_c01072{bottom:646.122612pt;}
.y30_c01072{bottom:646.122849pt;}
.y2f_c01072{bottom:646.123443pt;}
.y24_c01072{bottom:664.321333pt;}
.y25_c01072{bottom:665.029945pt;}
.y26_c01072{bottom:665.208985pt;}
.y27_c01072{bottom:665.395129pt;}
.y28_c01072{bottom:665.654317pt;}
.y29_c01072{bottom:666.091009pt;}
.y2a_c01072{bottom:666.606961pt;}
.y2b_c01072{bottom:666.762589pt;}
.y2c_c01072{bottom:667.125157pt;}
.y2d_c01072{bottom:667.572241pt;}
.y2e_c01072{bottom:667.777825pt;}
.y19_c01072{bottom:684.394667pt;}
.y1a_c01072{bottom:685.099767pt;}
.y1b_c01072{bottom:685.291284pt;}
.y1c_c01072{bottom:685.887484pt;}
.y1d_c01072{bottom:686.185936pt;}
.y1e_c01072{bottom:686.431412pt;}
.y1f_c01072{bottom:686.708715pt;}
.y20_c01072{bottom:687.088933pt;}
.y21_c01072{bottom:687.504205pt;}
.y22_c01072{bottom:688.007683pt;}
.y23_c01072{bottom:688.293389pt;}
.y11_c01072{bottom:705.361333pt;}
.y12_c01072{bottom:705.929677pt;}
.y13_c01072{bottom:706.079291pt;}
.y14_c01072{bottom:706.595023pt;}
.y15_c01072{bottom:706.699267pt;}
.y16_c01072{bottom:707.127723pt;}
.y17_c01072{bottom:707.488736pt;}
.y18_c01072{bottom:707.714099pt;}
.y6_c01072{bottom:725.761333pt;}
.y7_c01072{bottom:726.410667pt;}
.y8_c01072{bottom:727.024000pt;}
.y9_c01072{bottom:727.312000pt;}
.ya_c01072{bottom:727.777333pt;}
.yb_c01072{bottom:728.000000pt;}
.yc_c01072{bottom:728.204000pt;}
.yd_c01072{bottom:728.477333pt;}
.ye_c01072{bottom:728.681333pt;}
.yf_c01072{bottom:729.012000pt;}
.y10_c01072{bottom:729.177333pt;}
.y5_c01072{bottom:768.456000pt;}
.y1_c01072{bottom:786.721333pt;}
.y2_c01072{bottom:787.166795pt;}
.y3_c01072{bottom:788.058259pt;}
.y4_c01072{bottom:789.654333pt;}
.he_c01072{height:54.135526pt;}
.h15_c01072{height:56.000000pt;}
.h10_c01072{height:56.002268pt;}
.h14_c01072{height:56.933333pt;}
.ha_c01072{height:57.866667pt;}
.hf_c01072{height:58.802381pt;}
.hb_c01072{height:59.735752pt;}
.h6_c01072{height:59.736947pt;}
.h4_c01072{height:60.666667pt;}
.h5_c01072{height:60.668153pt;}
.h16_c01072{height:61.600000pt;}
.hd_c01072{height:61.602495pt;}
.h2_c01072{height:61.606037pt;}
.h11_c01072{height:62.535866pt;}
.h18_c01072{height:63.469840pt;}
.h9_c01072{height:65.333333pt;}
.h17_c01072{height:65.336600pt;}
.hc_c01072{height:66.269350pt;}
.h8_c01072{height:67.200000pt;}
.h7_c01072{height:67.202722pt;}
.h12_c01072{height:87.736886pt;}
.h13_c01072{height:89.600000pt;}
.h3_c01072{height:114.800000pt;}
.h1_c01072{height:893.333333pt;}
.h0_c01072{height:893.466667pt;}
.w1_c01072{width:678.000000pt;}
.w0_c01072{width:678.240000pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:12.290667pt;}
.x34_c01072{left:35.760000pt;}
.x5_c01072{left:39.360000pt;}
.x2e_c01072{left:41.520000pt;}
.x45_c01072{left:43.197379pt;}
.x2_c01072{left:44.109333pt;}
.x4c_c01072{left:45.076535pt;}
.x5f_c01072{left:46.800000pt;}
.x65_c01072{left:48.240000pt;}
.x52_c01072{left:50.125619pt;}
.x38_c01072{left:53.036000pt;}
.x6b_c01072{left:58.320000pt;}
.x61_c01072{left:61.440000pt;}
.x71_c01072{left:83.280000pt;}
.x4d_c01072{left:87.922049pt;}
.xa_c01072{left:104.054667pt;}
.x3_c01072{left:107.785333pt;}
.x14_c01072{left:120.310667pt;}
.x1b_c01072{left:121.568000pt;}
.x24_c01072{left:122.494667pt;}
.x39_c01072{left:124.168000pt;}
.x47_c01072{left:126.098667pt;}
.x66_c01072{left:129.120000pt;}
.x6c_c01072{left:130.800000pt;}
.x72_c01072{left:132.368000pt;}
.x15_c01072{left:141.684000pt;}
.x2f_c01072{left:158.400000pt;}
.x3f_c01072{left:161.147580pt;}
.x6_c01072{left:163.440000pt;}
.xb_c01072{left:165.430667pt;}
.x57_c01072{left:166.391909pt;}
.x30_c01072{left:170.880000pt;}
.x1c_c01072{left:175.768000pt;}
.x6d_c01072{left:182.400000pt;}
.x53_c01072{left:184.392152pt;}
.x40_c01072{left:187.603965pt;}
.x2b_c01072{left:190.326311pt;}
.x25_c01072{left:191.869333pt;}
.xc_c01072{left:194.280000pt;}
.x3a_c01072{left:195.974667pt;}
.x73_c01072{left:200.972000pt;}
.x1d_c01072{left:202.900000pt;}
.x3b_c01072{left:214.062667pt;}
.x16_c01072{left:215.360000pt;}
.x6e_c01072{left:218.160000pt;}
.x41_c01072{left:219.778801pt;}
.x4_c01072{left:221.790667pt;}
.x1e_c01072{left:225.216000pt;}
.x48_c01072{left:226.165333pt;}
.x17_c01072{left:230.252000pt;}
.x31_c01072{left:232.560000pt;}
.xd_c01072{left:240.837333pt;}
.x2c_c01072{left:246.008156pt;}
.x78_c01072{left:248.361267pt;}
.x1f_c01072{left:250.425333pt;}
.x32_c01072{left:251.760000pt;}
.x35_c01072{left:253.440000pt;}
.x46_c01072{left:254.885193pt;}
.x67_c01072{left:256.800000pt;}
.x60_c01072{left:257.760000pt;}
.x5e_c01072{left:259.448407pt;}
.xe_c01072{left:263.118667pt;}
.x2d_c01072{left:270.728827pt;}
.x74_c01072{left:271.814667pt;}
.x4e_c01072{left:277.558271pt;}
.x6f_c01072{left:280.560000pt;}
.xf_c01072{left:283.569333pt;}
.x20_c01072{left:284.990667pt;}
.x75_c01072{left:285.990667pt;}
.x54_c01072{left:289.545100pt;}
.x18_c01072{left:291.460000pt;}
.x42_c01072{left:294.654768pt;}
.x26_c01072{left:297.718667pt;}
.x33_c01072{left:300.000000pt;}
.x36_c01072{left:303.360000pt;}
.x70_c01072{left:304.800000pt;}
.x62_c01072{left:308.400000pt;}
.x49_c01072{left:309.500000pt;}
.x10_c01072{left:310.890667pt;}
.x27_c01072{left:315.010667pt;}
.x58_c01072{left:319.797243pt;}
.x21_c01072{left:322.742667pt;}
.x68_c01072{left:325.440000pt;}
.x55_c01072{left:327.469436pt;}
.x11_c01072{left:331.334667pt;}
.x3c_c01072{left:335.412000pt;}
.x43_c01072{left:336.358601pt;}
.x37_c01072{left:338.400000pt;}
.x19_c01072{left:343.033333pt;}
.x4f_c01072{left:348.871017pt;}
.x59_c01072{left:353.159909pt;}
.x28_c01072{left:355.296000pt;}
.x7_c01072{left:356.400000pt;}
.x63_c01072{left:357.840000pt;}
.x12_c01072{left:364.446667pt;}
.x3d_c01072{left:367.306667pt;}
.x22_c01072{left:368.513333pt;}
.x1a_c01072{left:375.228000pt;}
.x13_c01072{left:381.002667pt;}
.x76_c01072{left:384.381333pt;}
.x69_c01072{left:388.560000pt;}
.x23_c01072{left:394.486667pt;}
.x5a_c01072{left:395.875909pt;}
.x56_c01072{left:397.546072pt;}
.x50_c01072{left:402.148244pt;}
.x29_c01072{left:404.972000pt;}
.x44_c01072{left:405.872105pt;}
.x77_c01072{left:408.361333pt;}
.x6a_c01072{left:412.320000pt;}
.x64_c01072{left:419.040000pt;}
.x8_c01072{left:420.480000pt;}
.x4a_c01072{left:426.612000pt;}
.x2a_c01072{left:427.814667pt;}
.x5b_c01072{left:433.798576pt;}
.x4b_c01072{left:445.320000pt;}
.x3e_c01072{left:452.857333pt;}
.x51_c01072{left:455.653471pt;}
.x5c_c01072{left:458.039909pt;}
.x9_c01072{left:474.960000pt;}
.x5d_c01072{left:507.006576pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb3_c01073{transform:matrix(0.007904,-0.000103,0.003250,0.249979,0,0);-ms-transform:matrix(0.007904,-0.000103,0.003250,0.249979,0,0);-webkit-transform:matrix(0.007904,-0.000103,0.003250,0.249979,0,0);}
.m13_c01073{transform:matrix(0.008690,0.000078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.008690,0.000078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.008690,0.000078,-0.002250,0.249990,0,0);}
.m26_c01073{transform:matrix(0.009806,-0.000265,0.006748,0.249909,0,0);-ms-transform:matrix(0.009806,-0.000265,0.006748,0.249909,0,0);-webkit-transform:matrix(0.009806,-0.000265,0.006748,0.249909,0,0);}
.m7d_c01073{transform:matrix(0.009920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009920,0.000000,0.000000,0.250000,0,0);}
.m5d_c01073{transform:matrix(0.011940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011940,0.000000,0.000000,0.250000,0,0);}
.m5e_c01073{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.m34_c01073{transform:matrix(0.012233,-0.000208,0.004249,0.249964,0,0);-ms-transform:matrix(0.012233,-0.000208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012233,-0.000208,0.004249,0.249964,0,0);}
.m4f_c01073{transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018545,0.000000,0.000000,0.250000,0,0);}
.m20_c01073{transform:matrix(0.026125,-0.000705,0.006748,0.249909,0,0);-ms-transform:matrix(0.026125,-0.000705,0.006748,0.249909,0,0);-webkit-transform:matrix(0.026125,-0.000705,0.006748,0.249909,0,0);}
.m6_c01073{transform:matrix(0.039460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039460,0.000000,0.000000,0.250000,0,0);}
.m1f_c01073{transform:matrix(0.060658,-0.001638,0.006748,0.249909,0,0);-ms-transform:matrix(0.060658,-0.001638,0.006748,0.249909,0,0);-webkit-transform:matrix(0.060658,-0.001638,0.006748,0.249909,0,0);}
.m2c_c01073{transform:matrix(0.088917,-0.001512,0.004249,0.249964,0,0);-ms-transform:matrix(0.088917,-0.001512,0.004249,0.249964,0,0);-webkit-transform:matrix(0.088917,-0.001512,0.004249,0.249964,0,0);}
.m57_c01073{transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102095,0.000000,0.000000,0.250000,0,0);}
.mc_c01073{transform:matrix(0.119720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119720,0.000000,0.000000,0.250000,0,0);}
.m41_c01073{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m38_c01073{transform:matrix(0.133520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133520,0.000000,0.000000,0.250000,0,0);}
.m14_c01073{transform:matrix(0.139264,0.001253,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139264,0.001253,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139264,0.001253,-0.002250,0.249990,0,0);}
.m8e_c01073{transform:matrix(0.144891,0.002028,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144891,0.002028,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144891,0.002028,-0.003500,0.249976,0,0);}
.m49_c01073{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);}
.m62_c01073{transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148930,0.000000,0.000000,0.250000,0,0);}
.mae_c01073{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);}
.m6d_c01073{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);}
.mab_c01073{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);}
.m98_c01073{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);}
.m30_c01073{transform:matrix(0.161352,-0.002743,0.004249,0.249964,0,0);-ms-transform:matrix(0.161352,-0.002743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161352,-0.002743,0.004249,0.249964,0,0);}
.m74_c01073{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);}
.m76_c01073{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_c01073{transform:matrix(0.163404,0.002288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163404,0.002288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163404,0.002288,-0.003500,0.249976,0,0);}
.ma0_c01073{transform:matrix(0.163589,0.002290,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163589,0.002290,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163589,0.002290,-0.003500,0.249976,0,0);}
.m2d_c01073{transform:matrix(0.164251,-0.002792,0.004249,0.249964,0,0);-ms-transform:matrix(0.164251,-0.002792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164251,-0.002792,0.004249,0.249964,0,0);}
.m64_c01073{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);}
.m61_c01073{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);}
.m3a_c01073{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);}
.m2b_c01073{transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);-ms-transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);}
.m18_c01073{transform:matrix(0.168648,0.001518,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168648,0.001518,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168648,0.001518,-0.002250,0.249990,0,0);}
.m39_c01073{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);}
.m73_c01073{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);}
.mb0_c01073{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);}
.m88_c01073{transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171346,0.001199,-0.001750,0.249994,0,0);}
.m84_c01073{transform:matrix(0.173046,0.001211,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173046,0.001211,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173046,0.001211,-0.001750,0.249994,0,0);}
.m63_c01073{transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174015,0.000000,0.000000,0.250000,0,0);}
.ma5_c01073{transform:matrix(0.175543,0.002458,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175543,0.002458,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175543,0.002458,-0.003500,0.249976,0,0);}
.m48_c01073{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01073{transform:matrix(0.175633,0.001581,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175633,0.001581,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175633,0.001581,-0.002250,0.249990,0,0);}
.ma7_c01073{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);}
.ma6_c01073{transform:matrix(0.177883,0.002490,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177883,0.002490,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177883,0.002490,-0.003500,0.249976,0,0);}
.m9e_c01073{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);}
.m56_c01073{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);}
.mac_c01073{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.maa_c01073{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);}
.ma1_c01073{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);}
.m78_c01073{transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181770,0.000000,0.000000,0.250000,0,0);}
.m3f_c01073{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);}
.ma4_c01073{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);}
.m65_c01073{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);}
.m9f_c01073{transform:matrix(0.185512,0.002597,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185512,0.002597,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185512,0.002597,-0.003500,0.249976,0,0);}
.m97_c01073{transform:matrix(0.185622,0.002599,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185622,0.002599,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185622,0.002599,-0.003500,0.249976,0,0);}
.m67_c01073{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);}
.m1c_c01073{transform:matrix(0.186127,0.001675,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186127,0.001675,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186127,0.001675,-0.002250,0.249990,0,0);}
.m7b_c01073{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);}
.mad_c01073{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);}
.m8f_c01073{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);}
.m37_c01073{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_c01073{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);}
.m79_c01073{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);}
.m29_c01073{transform:matrix(0.189326,-0.005112,0.006748,0.249909,0,0);-ms-transform:matrix(0.189326,-0.005112,0.006748,0.249909,0,0);-webkit-transform:matrix(0.189326,-0.005112,0.006748,0.249909,0,0);}
.m7a_c01073{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);}
.m94_c01073{transform:matrix(0.190191,0.002663,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190191,0.002663,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190191,0.002663,-0.003500,0.249976,0,0);}
.mf_c01073{transform:matrix(0.190647,0.001716,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190647,0.001716,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190647,0.001716,-0.002250,0.249990,0,0);}
.m54_c01073{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);}
.m75_c01073{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);}
.ma2_c01073{transform:matrix(0.192276,0.002692,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192276,0.002692,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192276,0.002692,-0.003500,0.249976,0,0);}
.m31_c01073{transform:matrix(0.193037,-0.003282,0.004249,0.249964,0,0);-ms-transform:matrix(0.193037,-0.003282,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193037,-0.003282,0.004249,0.249964,0,0);}
.m68_c01073{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);}
.m22_c01073{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);}
.m6b_c01073{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);}
.m2e_c01073{transform:matrix(0.195537,-0.003324,0.004249,0.249964,0,0);-ms-transform:matrix(0.195537,-0.003324,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195537,-0.003324,0.004249,0.249964,0,0);}
.m91_c01073{transform:matrix(0.196421,0.002750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196421,0.002750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196421,0.002750,-0.003500,0.249976,0,0);}
.m1a_c01073{transform:matrix(0.197122,0.001774,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197122,0.001774,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197122,0.001774,-0.002250,0.249990,0,0);}
.maf_c01073{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);}
.m2f_c01073{transform:matrix(0.198031,-0.003367,0.004249,0.249964,0,0);-ms-transform:matrix(0.198031,-0.003367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198031,-0.003367,0.004249,0.249964,0,0);}
.m6c_c01073{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);}
.m86_c01073{transform:matrix(0.198330,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198330,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198330,0.001388,-0.001750,0.249994,0,0);}
.m59_c01073{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);}
.m17_c01073{transform:matrix(0.199132,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199132,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199132,0.001792,-0.002250,0.249990,0,0);}
.m36_c01073{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);}
.m6e_c01073{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);}
.mb_c01073{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);}
.m66_c01073{transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202890,0.000000,0.000000,0.250000,0,0);}
.m96_c01073{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);}
.ma8_c01073{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);}
.m6f_c01073{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);}
.m81_c01073{transform:matrix(0.203985,0.001428,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203985,0.001428,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203985,0.001428,-0.001750,0.249994,0,0);}
.m82_c01073{transform:matrix(0.204410,0.001431,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204410,0.001431,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204410,0.001431,-0.001750,0.249994,0,0);}
.m85_c01073{transform:matrix(0.204570,0.001432,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204570,0.001432,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204570,0.001432,-0.001750,0.249994,0,0);}
.m77_c01073{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);}
.m25_c01073{transform:matrix(0.204985,-0.005535,0.006748,0.249909,0,0);-ms-transform:matrix(0.204985,-0.005535,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204985,-0.005535,0.006748,0.249909,0,0);}
.m90_c01073{transform:matrix(0.205140,0.002872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205140,0.002872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205140,0.002872,-0.003500,0.249976,0,0);}
.m47_c01073{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);}
.m55_c01073{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);}
.ma9_c01073{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);}
.m12_c01073{transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);}
.m9b_c01073{transform:matrix(0.208140,0.002914,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208140,0.002914,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208140,0.002914,-0.003500,0.249976,0,0);}
.m19_c01073{transform:matrix(0.209197,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209197,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209197,0.001883,-0.002250,0.249990,0,0);}
.m87_c01073{transform:matrix(0.209400,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209400,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209400,0.001466,-0.001750,0.249994,0,0);}
.m8c_c01073{transform:matrix(0.210719,0.002950,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210719,0.002950,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210719,0.002950,-0.003500,0.249976,0,0);}
.m4b_c01073{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);}
.m95_c01073{transform:matrix(0.213544,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213544,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213544,0.002990,-0.003500,0.249976,0,0);}
.m1d_c01073{transform:matrix(0.214611,0.001932,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214611,0.001932,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214611,0.001932,-0.002250,0.249990,0,0);}
.m9d_c01073{transform:matrix(0.214789,0.003007,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214789,0.003007,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214789,0.003007,-0.003500,0.249976,0,0);}
.m10_c01073{transform:matrix(0.214821,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214821,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214821,0.001933,-0.002250,0.249990,0,0);}
.m3b_c01073{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);}
.m4c_c01073{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);}
.m4a_c01073{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);}
.m24_c01073{transform:matrix(0.219725,-0.005933,0.006748,0.249909,0,0);-ms-transform:matrix(0.219725,-0.005933,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219725,-0.005933,0.006748,0.249909,0,0);}
.m52_c01073{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);}
.m60_c01073{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);}
.m9_c01073{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);}
.m23_c01073{transform:matrix(0.227402,-0.006140,0.006748,0.249909,0,0);-ms-transform:matrix(0.227402,-0.006140,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227402,-0.006140,0.006748,0.249909,0,0);}
.m21_c01073{transform:matrix(0.229536,-0.006197,0.006748,0.249909,0,0);-ms-transform:matrix(0.229536,-0.006197,0.006748,0.249909,0,0);-webkit-transform:matrix(0.229536,-0.006197,0.006748,0.249909,0,0);}
.m32_c01073{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);}
.m58_c01073{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m9a_c01073{transform:matrix(0.231877,0.003246,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231877,0.003246,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231877,0.003246,-0.003500,0.249976,0,0);}
.m45_c01073{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.m43_c01073{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);}
.m5a_c01073{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);}
.m8_c01073{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);}
.m70_c01073{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);}
.m83_c01073{transform:matrix(0.236929,0.001659,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236929,0.001659,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236929,0.001659,-0.001750,0.249994,0,0);}
.m80_c01073{transform:matrix(0.237304,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237304,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237304,0.001661,-0.001750,0.249994,0,0);}
.m5b_c01073{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);}
.m6a_c01073{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.m44_c01073{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);}
.m46_c01073{transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);}
.m72_c01073{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);}
.m51_c01073{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);}
.m92_c01073{transform:matrix(0.248581,0.003480,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248581,0.003480,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248581,0.003480,-0.003500,0.249976,0,0);}
.m3e_c01073{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);}
.m93_c01073{transform:matrix(0.254530,0.003563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254530,0.003563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254530,0.003563,-0.003500,0.249976,0,0);}
.m99_c01073{transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);}
.ma_c01073{transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);}
.m89_c01073{transform:matrix(0.258350,0.003617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258350,0.003617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258350,0.003617,-0.003500,0.249976,0,0);}
.m9c_c01073{transform:matrix(0.258640,0.003621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258640,0.003621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258640,0.003621,-0.003500,0.249976,0,0);}
.m3_c01073{transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262330,0.000000,0.000000,0.250000,0,0);}
.m15_c01073{transform:matrix(0.266444,0.002398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266444,0.002398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266444,0.002398,-0.002250,0.249990,0,0);}
.m5c_c01073{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);}
.m7c_c01073{transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281265,0.000000,0.000000,0.250000,0,0);}
.m4e_c01073{transform:matrix(0.281430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281430,0.000000,0.000000,0.250000,0,0);}
.m7e_c01073{transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);}
.md_c01073{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.m1e_c01073{transform:matrix(0.312937,0.002816,-0.002250,0.249990,0,0);-ms-transform:matrix(0.312937,0.002816,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.312937,0.002816,-0.002250,0.249990,0,0);}
.m4d_c01073{transform:matrix(0.320480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320480,0.000000,0.000000,0.250000,0,0);}
.m11_c01073{transform:matrix(0.330022,0.002970,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330022,0.002970,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330022,0.002970,-0.002250,0.249990,0,0);}
.m5f_c01073{transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333810,0.000000,0.000000,0.250000,0,0);}
.me_c01073{transform:matrix(0.336125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336125,0.000000,0.000000,0.250000,0,0);}
.m35_c01073{transform:matrix(0.344470,-0.005856,0.004249,0.249964,0,0);-ms-transform:matrix(0.344470,-0.005856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.344470,-0.005856,0.004249,0.249964,0,0);}
.m3d_c01073{transform:matrix(0.347555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347555,0.000000,0.000000,0.250000,0,0);}
.m28_c01073{transform:matrix(0.361798,-0.009769,0.006748,0.249909,0,0);-ms-transform:matrix(0.361798,-0.009769,0.006748,0.249909,0,0);-webkit-transform:matrix(0.361798,-0.009769,0.006748,0.249909,0,0);}
.m0_c01073{transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367180,0.000000,0.000000,0.250000,0,0);}
.m3c_c01073{transform:matrix(0.369390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369390,0.000000,0.000000,0.250000,0,0);}
.m1_c01073{transform:matrix(0.370965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370965,0.000000,0.000000,0.250000,0,0);}
.m4_c01073{transform:matrix(0.398040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398040,0.000000,0.000000,0.250000,0,0);}
.m2a_c01073{transform:matrix(0.421599,-0.007167,0.004249,0.249964,0,0);-ms-transform:matrix(0.421599,-0.007167,0.004249,0.249964,0,0);-webkit-transform:matrix(0.421599,-0.007167,0.004249,0.249964,0,0);}
.m7_c01073{transform:matrix(0.423280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423280,0.000000,0.000000,0.250000,0,0);}
.m8a_c01073{transform:matrix(0.451921,0.006327,-0.003500,0.249976,0,0);-ms-transform:matrix(0.451921,0.006327,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.451921,0.006327,-0.003500,0.249976,0,0);}
.m2_c01073{transform:matrix(0.457035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457035,0.000000,0.000000,0.250000,0,0);}
.m42_c01073{transform:matrix(0.514480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514480,0.000000,0.000000,0.250000,0,0);}
.m7f_c01073{transform:matrix(0.559066,0.003913,-0.001750,0.249994,0,0);-ms-transform:matrix(0.559066,0.003913,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.559066,0.003913,-0.001750,0.249994,0,0);}
.m16_c01073{transform:matrix(0.563437,0.005071,-0.002250,0.249990,0,0);-ms-transform:matrix(0.563437,0.005071,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.563437,0.005071,-0.002250,0.249990,0,0);}
.m33_c01073{transform:matrix(0.596269,-0.010137,0.004249,0.249964,0,0);-ms-transform:matrix(0.596269,-0.010137,0.004249,0.249964,0,0);-webkit-transform:matrix(0.596269,-0.010137,0.004249,0.249964,0,0);}
.m27_c01073{transform:matrix(0.606219,-0.016368,0.006748,0.249909,0,0);-ms-transform:matrix(0.606219,-0.016368,0.006748,0.249909,0,0);-webkit-transform:matrix(0.606219,-0.016368,0.006748,0.249909,0,0);}
.mb4_c01073{transform:matrix(0.735185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735185,0.000000,0.000000,0.250000,0,0);}
.m71_c01073{transform:matrix(0.742290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742290,0.000000,0.000000,0.250000,0,0);}
.mb1_c01073{transform:matrix(0.826075,-0.010739,0.003250,0.249979,0,0);-ms-transform:matrix(0.826075,-0.010739,0.003250,0.249979,0,0);-webkit-transform:matrix(0.826075,-0.010739,0.003250,0.249979,0,0);}
.ma3_c01073{transform:matrix(0.830749,0.011630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.830749,0.011630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.830749,0.011630,-0.003500,0.249976,0,0);}
.m69_c01073{transform:matrix(0.845060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845060,0.000000,0.000000,0.250000,0,0);}
.m5_c01073{transform:matrix(0.886570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886570,0.000000,0.000000,0.250000,0,0);}
.m8b_c01073{transform:matrix(0.895787,0.012541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.895787,0.012541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.895787,0.012541,-0.003500,0.249976,0,0);}
.mb2_c01073{transform:matrix(0.922652,-0.011994,0.003250,0.249979,0,0);-ms-transform:matrix(0.922652,-0.011994,0.003250,0.249979,0,0);-webkit-transform:matrix(0.922652,-0.011994,0.003250,0.249979,0,0);}
.m50_c01073{transform:matrix(0.955365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955365,0.000000,0.000000,0.250000,0,0);}
.m40_c01073{transform:matrix(1.055640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055640,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls0_c01073{letter-spacing:0.000000px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:0.000000px;}
.fc0_c01073{color:transparent;}
.fs1_c01073{font-size:39.900000px;}
.fsc_c01073{font-size:59.850000px;}
.fs16_c01073{font-size:64.056277px;}
.fsd_c01073{font-size:66.150000px;}
.fs6_c01073{font-size:66.174107px;}
.fsf_c01073{font-size:68.250000px;}
.fsb_c01073{font-size:69.300000px;}
.fs8_c01073{font-size:69.310013px;}
.fs7_c01073{font-size:69.325255px;}
.fs13_c01073{font-size:70.351724px;}
.fs5_c01073{font-size:70.352849px;}
.fs11_c01073{font-size:71.400000px;}
.fs14_c01073{font-size:71.406997px;}
.fsa_c01073{font-size:72.450000px;}
.fs15_c01073{font-size:73.507203px;}
.fs17_c01073{font-size:74.557306px;}
.fs18_c01073{font-size:96.608162px;}
.fs9_c01073{font-size:98.714261px;}
.fse_c01073{font-size:105.000000px;}
.fs4_c01073{font-size:108.154380px;}
.fs2_c01073{font-size:111.300000px;}
.fs12_c01073{font-size:115.500000px;}
.fs3_c01073{font-size:119.700000px;}
.fs10_c01073{font-size:121.800000px;}
.fs0_c01073{font-size:141.750000px;}
.fs19_c01073{font-size:234.150000px;}
.y0_c01073{bottom:0.000000px;}
.y6f_c01073{bottom:117.183000px;}
.y70_c01073{bottom:118.322424px;}
.y71_c01073{bottom:122.208208px;}
.y6e_c01073{bottom:156.838500px;}
.y6d_c01073{bottom:178.313778px;}
.y6c_c01073{bottom:178.937199px;}
.y6b_c01073{bottom:179.450943px;}
.y6a_c01073{bottom:180.010239px;}
.y69_c01073{bottom:180.240294px;}
.y68_c01073{bottom:180.896823px;}
.y5e_c01073{bottom:202.399914px;}
.y5f_c01073{bottom:202.400580px;}
.y60_c01073{bottom:202.401222px;}
.y63_c01073{bottom:202.401534px;}
.y62_c01073{bottom:202.401810px;}
.y61_c01073{bottom:202.401885px;}
.y65_c01073{bottom:202.401957px;}
.y66_c01073{bottom:202.402239px;}
.y64_c01073{bottom:202.402275px;}
.y67_c01073{bottom:202.402881px;}
.y5d_c01073{bottom:223.820022px;}
.y5c_c01073{bottom:223.999158px;}
.y5b_c01073{bottom:224.341071px;}
.y5a_c01073{bottom:224.520312px;}
.y59_c01073{bottom:224.805807px;}
.y58_c01073{bottom:224.982600px;}
.y57_c01073{bottom:225.116349px;}
.y56_c01073{bottom:225.369204px;}
.y55_c01073{bottom:225.777681px;}
.y54_c01073{bottom:225.987681px;}
.y53_c01073{bottom:226.276707px;}
.y52_c01073{bottom:226.510020px;}
.y51_c01073{bottom:226.742883px;}
.y50_c01073{bottom:227.610528px;}
.y4f_c01073{bottom:247.923972px;}
.y4e_c01073{bottom:250.563000px;}
.y4d_c01073{bottom:268.849249px;}
.y4c_c01073{bottom:268.970210px;}
.y4b_c01073{bottom:269.210250px;}
.y4a_c01073{bottom:269.677070px;}
.y49_c01073{bottom:269.977643px;}
.y48_c01073{bottom:270.223311px;}
.y47_c01073{bottom:270.537041px;}
.y46_c01073{bottom:270.712811px;}
.y45_c01073{bottom:270.986882px;}
.y44_c01073{bottom:271.620000px;}
.y43_c01073{bottom:293.509500px;}
.y42_c01073{bottom:294.835500px;}
.y41_c01073{bottom:295.651500px;}
.y40_c01073{bottom:314.931000px;}
.y3f_c01073{bottom:315.250500px;}
.y3e_c01073{bottom:315.519000px;}
.y3d_c01073{bottom:315.808500px;}
.y3c_c01073{bottom:316.393500px;}
.y3b_c01073{bottom:316.609500px;}
.y3a_c01073{bottom:316.939500px;}
.y39_c01073{bottom:317.154000px;}
.y38_c01073{bottom:317.557500px;}
.y37_c01073{bottom:317.883000px;}
.y36_c01073{bottom:318.601500px;}
.y35_c01073{bottom:338.562000px;}
.y34_c01073{bottom:361.263000px;}
.y33_c01073{bottom:385.153500px;}
.y32_c01073{bottom:407.368500px;}
.y31_c01073{bottom:430.930500px;}
.y30_c01073{bottom:453.060000px;}
.y2d_c01073{bottom:497.199000px;}
.y2f_c01073{bottom:520.767000px;}
.y2e_c01073{bottom:543.361500px;}
.y2a_c01073{bottom:560.538532px;}
.y2b_c01073{bottom:562.131887px;}
.y2c_c01073{bottom:564.876594px;}
.y21_c01073{bottom:582.127500px;}
.y22_c01073{bottom:586.288233px;}
.y23_c01073{bottom:586.900794px;}
.y24_c01073{bottom:587.081181px;}
.y25_c01073{bottom:587.394117px;}
.y26_c01073{bottom:588.270756px;}
.y27_c01073{bottom:589.055365px;}
.y28_c01073{bottom:589.326124px;}
.y29_c01073{bottom:589.693197px;}
.y1e_c01073{bottom:605.078451px;}
.y1f_c01073{bottom:610.385863px;}
.y20_c01073{bottom:612.536210px;}
.y16_c01073{bottom:630.457500px;}
.y17_c01073{bottom:632.003790px;}
.y18_c01073{bottom:632.611979px;}
.y19_c01073{bottom:633.238878px;}
.y1a_c01073{bottom:634.405237px;}
.y1b_c01073{bottom:635.101473px;}
.y1c_c01073{bottom:635.892843px;}
.y1d_c01073{bottom:639.957018px;}
.yd_c01073{bottom:679.396645px;}
.yc_c01073{bottom:679.396949px;}
.ye_c01073{bottom:679.397259px;}
.yf_c01073{bottom:679.397346px;}
.y10_c01073{bottom:679.397899px;}
.y11_c01073{bottom:679.398573px;}
.y12_c01073{bottom:679.399067px;}
.y13_c01073{bottom:679.399184px;}
.y15_c01073{bottom:679.399434px;}
.y14_c01073{bottom:679.399647px;}
.yb_c01073{bottom:701.163056px;}
.ya_c01073{bottom:701.404449px;}
.y9_c01073{bottom:701.643332px;}
.y8_c01073{bottom:702.060522px;}
.y7_c01073{bottom:702.782111px;}
.y6_c01073{bottom:703.143505px;}
.y5_c01073{bottom:705.241500px;}
.y4_c01073{bottom:742.345500px;}
.y3_c01073{bottom:789.634500px;}
.y2_c01073{bottom:829.726500px;}
.y1_c01073{bottom:861.453000px;}
.y72_c01073{bottom:906.058500px;}
.h3_c01073{height:39.900000px;}
.he_c01073{height:59.850000px;}
.h18_c01073{height:64.056277px;}
.hf_c01073{height:66.150000px;}
.h8_c01073{height:66.174107px;}
.h11_c01073{height:68.250000px;}
.hd_c01073{height:69.300000px;}
.ha_c01073{height:69.310013px;}
.h9_c01073{height:69.325255px;}
.h15_c01073{height:70.351724px;}
.h7_c01073{height:70.352849px;}
.h13_c01073{height:71.400000px;}
.h16_c01073{height:71.406997px;}
.hc_c01073{height:72.450000px;}
.h17_c01073{height:73.507203px;}
.h19_c01073{height:74.557306px;}
.h1a_c01073{height:96.608162px;}
.hb_c01073{height:98.714261px;}
.h10_c01073{height:105.000000px;}
.h6_c01073{height:108.154380px;}
.h4_c01073{height:111.300000px;}
.h14_c01073{height:115.500000px;}
.h5_c01073{height:119.700000px;}
.h12_c01073{height:121.800000px;}
.h2_c01073{height:141.750000px;}
.h1b_c01073{height:234.150000px;}
.h0_c01073{height:1008.450000px;}
.h1_c01073{height:1008.750000px;}
.w1_c01073{width:774.000000px;}
.w0_c01073{width:774.090000px;}
.x0_c01073{left:0.000000px;}
.x35_c01073{left:118.260000px;}
.x5_c01073{left:126.360000px;}
.x5e_c01073{left:128.859000px;}
.x40_c01073{left:129.870000px;}
.x25_c01073{left:131.498892px;}
.x52_c01073{left:132.840000px;}
.xf_c01073{left:134.259000px;}
.x1_c01073{left:136.350000px;}
.x36_c01073{left:140.670000px;}
.x6_c01073{left:142.560000px;}
.x1f_c01073{left:145.011000px;}
.xc_c01073{left:146.070000px;}
.x28_c01073{left:149.242500px;}
.x2_c01073{left:189.000000px;}
.x20_c01073{left:202.281000px;}
.x5f_c01073{left:219.525000px;}
.xd_c01073{left:222.750000px;}
.x4b_c01073{left:224.100000px;}
.x16_c01073{left:225.184280px;}
.x21_c01073{left:248.025000px;}
.x65_c01073{left:249.142155px;}
.x42_c01073{left:251.100000px;}
.x39_c01073{left:255.420000px;}
.x6f_c01073{left:257.863407px;}
.x17_c01073{left:260.285628px;}
.x53_c01073{left:261.360000px;}
.x58_c01073{left:263.424000px;}
.x37_c01073{left:265.410000px;}
.x4c_c01073{left:270.000000px;}
.x3_c01073{left:273.240000px;}
.x66_c01073{left:275.023461px;}
.x60_c01073{left:288.000000px;}
.x22_c01073{left:291.223500px;}
.x43_c01073{left:295.380000px;}
.x75_c01073{left:298.620000px;}
.x54_c01073{left:306.990000px;}
.x3a_c01073{left:312.660000px;}
.x31_c01073{left:314.550000px;}
.x18_c01073{left:316.447178px;}
.x4d_c01073{left:317.520000px;}
.x64_c01073{left:321.138000px;}
.x44_c01073{left:322.920000px;}
.x49_c01073{left:324.810000px;}
.x8_c01073{left:326.700000px;}
.x30_c01073{left:327.769260px;}
.x67_c01073{left:330.386325px;}
.x3b_c01073{left:332.640000px;}
.x74_c01073{left:335.255832px;}
.x4e_c01073{left:340.470000px;}
.x23_c01073{left:346.320000px;}
.x19_c01073{left:349.388351px;}
.x55_c01073{left:356.940000px;}
.x10_c01073{left:367.369500px;}
.x41_c01073{left:368.550000px;}
.x26_c01073{left:372.768954px;}
.x68_c01073{left:375.744996px;}
.x9_c01073{left:382.860000px;}
.x7_c01073{left:386.640000px;}
.x4f_c01073{left:387.990000px;}
.xe_c01073{left:389.070000px;}
.x3c_c01073{left:392.850000px;}
.x29_c01073{left:393.991500px;}
.x45_c01073{left:395.820000px;}
.x1a_c01073{left:400.150968px;}
.x69_c01073{left:403.879470px;}
.x11_c01073{left:407.524500px;}
.x59_c01073{left:408.942000px;}
.x61_c01073{left:410.853000px;}
.x32_c01073{left:412.020000px;}
.x3d_c01073{left:414.180000px;}
.x6a_c01073{left:418.683999px;}
.x76_c01073{left:419.850000px;}
.x4_c01073{left:422.010000px;}
.x1b_c01073{left:430.931966px;}
.x50_c01073{left:434.970000px;}
.x56_c01073{left:437.130000px;}
.x6b_c01073{left:438.384885px;}
.x70_c01073{left:439.591023px;}
.x2a_c01073{left:440.635500px;}
.xa_c01073{left:444.420000px;}
.x3e_c01073{left:447.660000px;}
.x33_c01073{left:451.170000px;}
.x2b_c01073{left:459.043500px;}
.x71_c01073{left:460.113555px;}
.x38_c01073{left:466.560000px;}
.x51_c01073{left:467.910000px;}
.x27_c01073{left:470.480117px;}
.x34_c01073{left:476.010000px;}
.x3f_c01073{left:477.090000px;}
.x5a_c01073{left:482.113500px;}
.x12_c01073{left:487.701000px;}
.x6c_c01073{left:490.012497px;}
.x1c_c01073{left:494.924149px;}
.x24_c01073{left:496.845000px;}
.x46_c01073{left:504.900000px;}
.xb_c01073{left:506.520000px;}
.x2c_c01073{left:510.610500px;}
.x62_c01073{left:511.833000px;}
.x47_c01073{left:513.540000px;}
.x72_c01073{left:515.198349px;}
.x5b_c01073{left:518.329500px;}
.x57_c01073{left:524.340000px;}
.x6d_c01073{left:528.044664px;}
.x63_c01073{left:529.113000px;}
.x1d_c01073{left:531.375606px;}
.x13_c01073{left:534.055500px;}
.x6e_c01073{left:548.020071px;}
.x73_c01073{left:550.302237px;}
.x5c_c01073{left:551.814000px;}
.x2d_c01073{left:556.764000px;}
.x14_c01073{left:560.598000px;}
.x2e_c01073{left:572.691000px;}
.x15_c01073{left:587.419500px;}
.x1e_c01073{left:590.237371px;}
.x5d_c01073{left:591.744000px;}
.x2f_c01073{left:594.283500px;}
.x48_c01073{left:602.100000px;}
.x4a_c01073{left:617.220000px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls0_c01073{letter-spacing:0.000000pt;}
.ws0_c01073{word-spacing:0.000000pt;}
.fs1_c01073{font-size:35.466667pt;}
.fsc_c01073{font-size:53.200000pt;}
.fs16_c01073{font-size:56.938913pt;}
.fsd_c01073{font-size:58.800000pt;}
.fs6_c01073{font-size:58.821429pt;}
.fsf_c01073{font-size:60.666667pt;}
.fsb_c01073{font-size:61.600000pt;}
.fs8_c01073{font-size:61.608901pt;}
.fs7_c01073{font-size:61.622449pt;}
.fs13_c01073{font-size:62.534865pt;}
.fs5_c01073{font-size:62.535866pt;}
.fs11_c01073{font-size:63.466667pt;}
.fs14_c01073{font-size:63.472886pt;}
.fsa_c01073{font-size:64.400000pt;}
.fs15_c01073{font-size:65.339736pt;}
.fs17_c01073{font-size:66.273160pt;}
.fs18_c01073{font-size:85.873922pt;}
.fs9_c01073{font-size:87.746010pt;}
.fse_c01073{font-size:93.333333pt;}
.fs4_c01073{font-size:96.137227pt;}
.fs2_c01073{font-size:98.933333pt;}
.fs12_c01073{font-size:102.666667pt;}
.fs3_c01073{font-size:106.400000pt;}
.fs10_c01073{font-size:108.266667pt;}
.fs0_c01073{font-size:126.000000pt;}
.fs19_c01073{font-size:208.133333pt;}
.y0_c01073{bottom:0.000000pt;}
.y6f_c01073{bottom:104.162667pt;}
.y70_c01073{bottom:105.175488pt;}
.y71_c01073{bottom:108.629519pt;}
.y6e_c01073{bottom:139.412000pt;}
.y6d_c01073{bottom:158.501136pt;}
.y6c_c01073{bottom:159.055288pt;}
.y6b_c01073{bottom:159.511949pt;}
.y6a_c01073{bottom:160.009101pt;}
.y69_c01073{bottom:160.213595pt;}
.y68_c01073{bottom:160.797176pt;}
.y5e_c01073{bottom:179.911035pt;}
.y5f_c01073{bottom:179.911627pt;}
.y60_c01073{bottom:179.912197pt;}
.y63_c01073{bottom:179.912475pt;}
.y62_c01073{bottom:179.912720pt;}
.y61_c01073{bottom:179.912787pt;}
.y65_c01073{bottom:179.912851pt;}
.y66_c01073{bottom:179.913101pt;}
.y64_c01073{bottom:179.913133pt;}
.y67_c01073{bottom:179.913672pt;}
.y5d_c01073{bottom:198.951131pt;}
.y5c_c01073{bottom:199.110363pt;}
.y5b_c01073{bottom:199.414285pt;}
.y5a_c01073{bottom:199.573611pt;}
.y59_c01073{bottom:199.827384pt;}
.y58_c01073{bottom:199.984533pt;}
.y57_c01073{bottom:200.103421pt;}
.y56_c01073{bottom:200.328181pt;}
.y55_c01073{bottom:200.691272pt;}
.y54_c01073{bottom:200.877939pt;}
.y53_c01073{bottom:201.134851pt;}
.y52_c01073{bottom:201.342240pt;}
.y51_c01073{bottom:201.549229pt;}
.y50_c01073{bottom:202.320469pt;}
.y4f_c01073{bottom:220.376864pt;}
.y4e_c01073{bottom:222.722667pt;}
.y4d_c01073{bottom:238.977111pt;}
.y4c_c01073{bottom:239.084631pt;}
.y4b_c01073{bottom:239.298000pt;}
.y4a_c01073{bottom:239.712951pt;}
.y49_c01073{bottom:239.980127pt;}
.y48_c01073{bottom:240.198499pt;}
.y47_c01073{bottom:240.477369pt;}
.y46_c01073{bottom:240.633609pt;}
.y45_c01073{bottom:240.877228pt;}
.y44_c01073{bottom:241.440000pt;}
.y43_c01073{bottom:260.897333pt;}
.y42_c01073{bottom:262.076000pt;}
.y41_c01073{bottom:262.801333pt;}
.y40_c01073{bottom:279.938667pt;}
.y3f_c01073{bottom:280.222667pt;}
.y3e_c01073{bottom:280.461333pt;}
.y3d_c01073{bottom:280.718667pt;}
.y3c_c01073{bottom:281.238667pt;}
.y3b_c01073{bottom:281.430667pt;}
.y3a_c01073{bottom:281.724000pt;}
.y39_c01073{bottom:281.914667pt;}
.y38_c01073{bottom:282.273333pt;}
.y37_c01073{bottom:282.562667pt;}
.y36_c01073{bottom:283.201333pt;}
.y35_c01073{bottom:300.944000pt;}
.y34_c01073{bottom:321.122667pt;}
.y33_c01073{bottom:342.358667pt;}
.y32_c01073{bottom:362.105333pt;}
.y31_c01073{bottom:383.049333pt;}
.y30_c01073{bottom:402.720000pt;}
.y2d_c01073{bottom:441.954667pt;}
.y2f_c01073{bottom:462.904000pt;}
.y2e_c01073{bottom:482.988000pt;}
.y2a_c01073{bottom:498.256473pt;}
.y2b_c01073{bottom:499.672788pt;}
.y2c_c01073{bottom:502.112528pt;}
.y21_c01073{bottom:517.446667pt;}
.y22_c01073{bottom:521.145096pt;}
.y23_c01073{bottom:521.689595pt;}
.y24_c01073{bottom:521.849939pt;}
.y25_c01073{bottom:522.128104pt;}
.y26_c01073{bottom:522.907339pt;}
.y27_c01073{bottom:523.604769pt;}
.y28_c01073{bottom:523.845444pt;}
.y29_c01073{bottom:524.171731pt;}
.y1e_c01073{bottom:537.847512pt;}
.y1f_c01073{bottom:542.565212pt;}
.y20_c01073{bottom:544.476631pt;}
.y16_c01073{bottom:560.406667pt;}
.y17_c01073{bottom:561.781147pt;}
.y18_c01073{bottom:562.321759pt;}
.y19_c01073{bottom:562.879003pt;}
.y1a_c01073{bottom:563.915767pt;}
.y1b_c01073{bottom:564.534643pt;}
.y1c_c01073{bottom:565.238083pt;}
.y1d_c01073{bottom:568.850683pt;}
.yd_c01073{bottom:603.908129pt;}
.yc_c01073{bottom:603.908399pt;}
.ye_c01073{bottom:603.908675pt;}
.yf_c01073{bottom:603.908752pt;}
.y10_c01073{bottom:603.909244pt;}
.y11_c01073{bottom:603.909843pt;}
.y12_c01073{bottom:603.910281pt;}
.y13_c01073{bottom:603.910385pt;}
.y15_c01073{bottom:603.910608pt;}
.y14_c01073{bottom:603.910797pt;}
.yb_c01073{bottom:623.256049pt;}
.ya_c01073{bottom:623.470621pt;}
.y9_c01073{bottom:623.682961pt;}
.y8_c01073{bottom:624.053797pt;}
.y7_c01073{bottom:624.695209pt;}
.y6_c01073{bottom:625.016449pt;}
.y5_c01073{bottom:626.881333pt;}
.y4_c01073{bottom:659.862667pt;}
.y3_c01073{bottom:701.897333pt;}
.y2_c01073{bottom:737.534667pt;}
.y1_c01073{bottom:765.736000pt;}
.y72_c01073{bottom:805.385333pt;}
.h3_c01073{height:35.466667pt;}
.he_c01073{height:53.200000pt;}
.h18_c01073{height:56.938913pt;}
.hf_c01073{height:58.800000pt;}
.h8_c01073{height:58.821429pt;}
.h11_c01073{height:60.666667pt;}
.hd_c01073{height:61.600000pt;}
.ha_c01073{height:61.608901pt;}
.h9_c01073{height:61.622449pt;}
.h15_c01073{height:62.534865pt;}
.h7_c01073{height:62.535866pt;}
.h13_c01073{height:63.466667pt;}
.h16_c01073{height:63.472886pt;}
.hc_c01073{height:64.400000pt;}
.h17_c01073{height:65.339736pt;}
.h19_c01073{height:66.273160pt;}
.h1a_c01073{height:85.873922pt;}
.hb_c01073{height:87.746010pt;}
.h10_c01073{height:93.333333pt;}
.h6_c01073{height:96.137227pt;}
.h4_c01073{height:98.933333pt;}
.h14_c01073{height:102.666667pt;}
.h5_c01073{height:106.400000pt;}
.h12_c01073{height:108.266667pt;}
.h2_c01073{height:126.000000pt;}
.h1b_c01073{height:208.133333pt;}
.h0_c01073{height:896.400000pt;}
.h1_c01073{height:896.666667pt;}
.w1_c01073{width:688.000000pt;}
.w0_c01073{width:688.080000pt;}
.x0_c01073{left:0.000000pt;}
.x35_c01073{left:105.120000pt;}
.x5_c01073{left:112.320000pt;}
.x5e_c01073{left:114.541333pt;}
.x40_c01073{left:115.440000pt;}
.x25_c01073{left:116.887904pt;}
.x52_c01073{left:118.080000pt;}
.xf_c01073{left:119.341333pt;}
.x1_c01073{left:121.200000pt;}
.x36_c01073{left:125.040000pt;}
.x6_c01073{left:126.720000pt;}
.x1f_c01073{left:128.898667pt;}
.xc_c01073{left:129.840000pt;}
.x28_c01073{left:132.660000pt;}
.x2_c01073{left:168.000000pt;}
.x20_c01073{left:179.805333pt;}
.x5f_c01073{left:195.133333pt;}
.xd_c01073{left:198.000000pt;}
.x4b_c01073{left:199.200000pt;}
.x16_c01073{left:200.163804pt;}
.x21_c01073{left:220.466667pt;}
.x65_c01073{left:221.459693pt;}
.x42_c01073{left:223.200000pt;}
.x39_c01073{left:227.040000pt;}
.x6f_c01073{left:229.211917pt;}
.x17_c01073{left:231.365003pt;}
.x53_c01073{left:232.320000pt;}
.x58_c01073{left:234.154667pt;}
.x37_c01073{left:235.920000pt;}
.x4c_c01073{left:240.000000pt;}
.x3_c01073{left:242.880000pt;}
.x66_c01073{left:244.465299pt;}
.x60_c01073{left:256.000000pt;}
.x22_c01073{left:258.865333pt;}
.x43_c01073{left:262.560000pt;}
.x75_c01073{left:265.440000pt;}
.x54_c01073{left:272.880000pt;}
.x3a_c01073{left:277.920000pt;}
.x31_c01073{left:279.600000pt;}
.x18_c01073{left:281.286380pt;}
.x4d_c01073{left:282.240000pt;}
.x64_c01073{left:285.456000pt;}
.x44_c01073{left:287.040000pt;}
.x49_c01073{left:288.720000pt;}
.x8_c01073{left:290.400000pt;}
.x30_c01073{left:291.350453pt;}
.x67_c01073{left:293.676733pt;}
.x3b_c01073{left:295.680000pt;}
.x74_c01073{left:298.005184pt;}
.x4e_c01073{left:302.640000pt;}
.x23_c01073{left:307.840000pt;}
.x19_c01073{left:310.567423pt;}
.x55_c01073{left:317.280000pt;}
.x10_c01073{left:326.550667pt;}
.x41_c01073{left:327.600000pt;}
.x26_c01073{left:331.350181pt;}
.x68_c01073{left:333.995552pt;}
.x9_c01073{left:340.320000pt;}
.x7_c01073{left:343.680000pt;}
.x4f_c01073{left:344.880000pt;}
.xe_c01073{left:345.840000pt;}
.x3c_c01073{left:349.200000pt;}
.x29_c01073{left:350.214667pt;}
.x45_c01073{left:351.840000pt;}
.x1a_c01073{left:355.689749pt;}
.x69_c01073{left:359.003973pt;}
.x11_c01073{left:362.244000pt;}
.x59_c01073{left:363.504000pt;}
.x61_c01073{left:365.202667pt;}
.x32_c01073{left:366.240000pt;}
.x3d_c01073{left:368.160000pt;}
.x6a_c01073{left:372.163555pt;}
.x76_c01073{left:373.200000pt;}
.x4_c01073{left:375.120000pt;}
.x1b_c01073{left:383.050636pt;}
.x50_c01073{left:386.640000pt;}
.x56_c01073{left:388.560000pt;}
.x6b_c01073{left:389.675453pt;}
.x70_c01073{left:390.747576pt;}
.x2a_c01073{left:391.676000pt;}
.xa_c01073{left:395.040000pt;}
.x3e_c01073{left:397.920000pt;}
.x33_c01073{left:401.040000pt;}
.x2b_c01073{left:408.038667pt;}
.x71_c01073{left:408.989827pt;}
.x38_c01073{left:414.720000pt;}
.x51_c01073{left:415.920000pt;}
.x27_c01073{left:418.204548pt;}
.x34_c01073{left:423.120000pt;}
.x3f_c01073{left:424.080000pt;}
.x5a_c01073{left:428.545333pt;}
.x12_c01073{left:433.512000pt;}
.x6c_c01073{left:435.566664pt;}
.x1c_c01073{left:439.932577pt;}
.x24_c01073{left:441.640000pt;}
.x46_c01073{left:448.800000pt;}
.xb_c01073{left:450.240000pt;}
.x2c_c01073{left:453.876000pt;}
.x62_c01073{left:454.962667pt;}
.x47_c01073{left:456.480000pt;}
.x72_c01073{left:457.954088pt;}
.x5b_c01073{left:460.737333pt;}
.x57_c01073{left:466.080000pt;}
.x6d_c01073{left:469.373035pt;}
.x63_c01073{left:470.322667pt;}
.x1d_c01073{left:472.333872pt;}
.x13_c01073{left:474.716000pt;}
.x6e_c01073{left:487.128952pt;}
.x73_c01073{left:489.157544pt;}
.x5c_c01073{left:490.501333pt;}
.x2d_c01073{left:494.901333pt;}
.x14_c01073{left:498.309333pt;}
.x2e_c01073{left:509.058667pt;}
.x15_c01073{left:522.150667pt;}
.x1e_c01073{left:524.655441pt;}
.x5d_c01073{left:525.994667pt;}
.x2f_c01073{left:528.252000pt;}
.x48_c01073{left:535.200000pt;}
.x4a_c01073{left:548.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_c01074 {
    display:none;
  }
  .loading-indicator_c01074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01074 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01074 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01074" -> "#page-container .classname_c01074")
 */
.pf_c01074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01074 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01074 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01074 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01074 {overflow:visible;}
  }
}
.c_c01074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01074 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01074:after { /* webkit #35443 */
  content: '';
}
.t_c01074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01074 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01074 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01074 { /* info for Javascript */
  display:none;
}
.l_c01074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.000000;font-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_c01074{transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);-ms-transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.010854,0.000130,-0.003000,0.249982,0,0);}
.m9_c01074{transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011019,0.000132,-0.003000,0.249982,0,0);}
.m57_c01074{transform:matrix(0.013839,0.000166,-0.003000,0.249982,0,0);-ms-transform:matrix(0.013839,0.000166,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.013839,0.000166,-0.003000,0.249982,0,0);}
.m7c_c01074{transform:matrix(0.014264,0.000171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.014264,0.000171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.014264,0.000171,-0.003000,0.249982,0,0);}
.m6e_c01074{transform:matrix(0.016284,0.000195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.016284,0.000195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.016284,0.000195,-0.003000,0.249982,0,0);}
.m1d_c01074{transform:matrix(0.119106,0.001429,-0.003000,0.249982,0,0);-ms-transform:matrix(0.119106,0.001429,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.119106,0.001429,-0.003000,0.249982,0,0);}
.m81_c01074{transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136180,0.000000,0.000000,0.250000,0,0);}
.m1b_c01074{transform:matrix(0.140505,0.001686,-0.003000,0.249982,0,0);-ms-transform:matrix(0.140505,0.001686,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.140505,0.001686,-0.003000,0.249982,0,0);}
.m46_c01074{transform:matrix(0.143415,0.001721,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143415,0.001721,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143415,0.001721,-0.003000,0.249982,0,0);}
.me_c01074{transform:matrix(0.143485,0.001722,-0.003000,0.249982,0,0);-ms-transform:matrix(0.143485,0.001722,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.143485,0.001722,-0.003000,0.249982,0,0);}
.m42_c01074{transform:matrix(0.150744,0.001809,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150744,0.001809,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150744,0.001809,-0.003000,0.249982,0,0);}
.m3a_c01074{transform:matrix(0.151949,0.001823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151949,0.001823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151949,0.001823,-0.003000,0.249982,0,0);}
.m83_c01074{transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);}
.m78_c01074{transform:matrix(0.156149,0.001874,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156149,0.001874,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156149,0.001874,-0.003000,0.249982,0,0);}
.m80_c01074{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01074{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);}
.m1c_c01074{transform:matrix(0.158994,0.001908,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158994,0.001908,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158994,0.001908,-0.003000,0.249982,0,0);}
.m27_c01074{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);}
.m25_c01074{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);}
.md_c01074{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);}
.m7d_c01074{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);}
.m4e_c01074{transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);}
.m68_c01074{transform:matrix(0.167553,0.002011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167553,0.002011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167553,0.002011,-0.003000,0.249982,0,0);}
.m26_c01074{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);}
.m55_c01074{transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169478,0.002034,-0.003000,0.249982,0,0);}
.m72_c01074{transform:matrix(0.171668,0.002060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171668,0.002060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171668,0.002060,-0.003000,0.249982,0,0);}
.m82_c01074{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);}
.m66_c01074{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);}
.m3d_c01074{transform:matrix(0.175462,0.002106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175462,0.002106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175462,0.002106,-0.003000,0.249982,0,0);}
.m65_c01074{transform:matrix(0.175467,0.002106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175467,0.002106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175467,0.002106,-0.003000,0.249982,0,0);}
.mc_c01074{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);}
.m75_c01074{transform:matrix(0.178242,0.002139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178242,0.002139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178242,0.002139,-0.003000,0.249982,0,0);}
.m69_c01074{transform:matrix(0.178637,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178637,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178637,0.002144,-0.003000,0.249982,0,0);}
.m23_c01074{transform:matrix(0.179182,0.002150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179182,0.002150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179182,0.002150,-0.003000,0.249982,0,0);}
.m30_c01074{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);}
.m2c_c01074{transform:matrix(0.180662,0.002168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180662,0.002168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180662,0.002168,-0.003000,0.249982,0,0);}
.m19_c01074{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);}
.m17_c01074{transform:matrix(0.181627,0.002180,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181627,0.002180,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181627,0.002180,-0.003000,0.249982,0,0);}
.mb_c01074{transform:matrix(0.181822,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181822,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181822,0.002182,-0.003000,0.249982,0,0);}
.m6f_c01074{transform:matrix(0.182037,0.002184,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182037,0.002184,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182037,0.002184,-0.003000,0.249982,0,0);}
.m14_c01074{transform:matrix(0.182752,0.002193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182752,0.002193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182752,0.002193,-0.003000,0.249982,0,0);}
.m15_c01074{transform:matrix(0.183412,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183412,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183412,0.002201,-0.003000,0.249982,0,0);}
.m85_c01074{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);}
.m58_c01074{transform:matrix(0.183647,0.002204,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183647,0.002204,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183647,0.002204,-0.003000,0.249982,0,0);}
.m3c_c01074{transform:matrix(0.184062,0.002209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184062,0.002209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184062,0.002209,-0.003000,0.249982,0,0);}
.m16_c01074{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);}
.m6b_c01074{transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);}
.m51_c01074{transform:matrix(0.189121,0.002269,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189121,0.002269,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189121,0.002269,-0.003000,0.249982,0,0);}
.m1a_c01074{transform:matrix(0.190421,0.002285,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190421,0.002285,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190421,0.002285,-0.003000,0.249982,0,0);}
.m50_c01074{transform:matrix(0.190956,0.002291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190956,0.002291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190956,0.002291,-0.003000,0.249982,0,0);}
.mf_c01074{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);}
.m2d_c01074{transform:matrix(0.193631,0.002324,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193631,0.002324,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193631,0.002324,-0.003000,0.249982,0,0);}
.m5a_c01074{transform:matrix(0.193716,0.002325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193716,0.002325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193716,0.002325,-0.003000,0.249982,0,0);}
.m24_c01074{transform:matrix(0.197071,0.002365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197071,0.002365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197071,0.002365,-0.003000,0.249982,0,0);}
.m13_c01074{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);}
.m71_c01074{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);}
.m28_c01074{transform:matrix(0.198196,0.002378,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198196,0.002378,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198196,0.002378,-0.003000,0.249982,0,0);}
.m7e_c01074{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);}
.m29_c01074{transform:matrix(0.198421,0.002381,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198421,0.002381,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198421,0.002381,-0.003000,0.249982,0,0);}
.m5b_c01074{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);}
.m44_c01074{transform:matrix(0.199041,0.002388,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199041,0.002388,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199041,0.002388,-0.003000,0.249982,0,0);}
.m18_c01074{transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199546,0.002395,-0.003000,0.249982,0,0);}
.m73_c01074{transform:matrix(0.200016,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200016,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200016,0.002400,-0.003000,0.249982,0,0);}
.m41_c01074{transform:matrix(0.201146,0.002414,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201146,0.002414,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201146,0.002414,-0.003000,0.249982,0,0);}
.m3e_c01074{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);}
.m3b_c01074{transform:matrix(0.201410,0.002417,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201410,0.002417,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201410,0.002417,-0.003000,0.249982,0,0);}
.m22_c01074{transform:matrix(0.202635,0.002432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202635,0.002432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202635,0.002432,-0.003000,0.249982,0,0);}
.m76_c01074{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);}
.m6a_c01074{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);}
.m10_c01074{transform:matrix(0.207140,0.002486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207140,0.002486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207140,0.002486,-0.003000,0.249982,0,0);}
.m39_c01074{transform:matrix(0.207995,0.002496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207995,0.002496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207995,0.002496,-0.003000,0.249982,0,0);}
.m32_c01074{transform:matrix(0.210880,0.002531,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210880,0.002531,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210880,0.002531,-0.003000,0.249982,0,0);}
.m4d_c01074{transform:matrix(0.212785,0.002553,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212785,0.002553,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212785,0.002553,-0.003000,0.249982,0,0);}
.m5_c01074{transform:matrix(0.214815,0.002578,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214815,0.002578,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214815,0.002578,-0.003000,0.249982,0,0);}
.m77_c01074{transform:matrix(0.215289,0.002583,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215289,0.002583,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215289,0.002583,-0.003000,0.249982,0,0);}
.m6_c01074{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);}
.m6d_c01074{transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216849,0.002602,-0.003000,0.249982,0,0);}
.m2_c01074{transform:matrix(0.217589,0.002611,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217589,0.002611,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217589,0.002611,-0.003000,0.249982,0,0);}
.m59_c01074{transform:matrix(0.217974,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217974,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217974,0.002616,-0.003000,0.249982,0,0);}
.m43_c01074{transform:matrix(0.219484,0.002634,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219484,0.002634,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219484,0.002634,-0.003000,0.249982,0,0);}
.m35_c01074{transform:matrix(0.221174,0.002654,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221174,0.002654,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221174,0.002654,-0.003000,0.249982,0,0);}
.m54_c01074{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);}
.m31_c01074{transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224504,0.002694,-0.003000,0.249982,0,0);}
.m7b_c01074{transform:matrix(0.224924,0.002699,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224924,0.002699,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224924,0.002699,-0.003000,0.249982,0,0);}
.m47_c01074{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);}
.m7a_c01074{transform:matrix(0.225894,0.002711,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225894,0.002711,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225894,0.002711,-0.003000,0.249982,0,0);}
.m37_c01074{transform:matrix(0.225959,0.002712,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225959,0.002712,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225959,0.002712,-0.003000,0.249982,0,0);}
.m5f_c01074{transform:matrix(0.226074,0.002713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226074,0.002713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226074,0.002713,-0.003000,0.249982,0,0);}
.m84_c01074{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);}
.m45_c01074{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);}
.m36_c01074{transform:matrix(0.235828,0.002830,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235828,0.002830,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235828,0.002830,-0.003000,0.249982,0,0);}
.m63_c01074{transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);}
.m2f_c01074{transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239338,0.002872,-0.003000,0.249982,0,0);}
.m21_c01074{transform:matrix(0.240338,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240338,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240338,0.002884,-0.003000,0.249982,0,0);}
.m56_c01074{transform:matrix(0.241233,0.002895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241233,0.002895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241233,0.002895,-0.003000,0.249982,0,0);}
.m2a_c01074{transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243547,0.002923,-0.003000,0.249982,0,0);}
.m70_c01074{transform:matrix(0.247142,0.002966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247142,0.002966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247142,0.002966,-0.003000,0.249982,0,0);}
.m61_c01074{transform:matrix(0.247752,0.002973,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247752,0.002973,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247752,0.002973,-0.003000,0.249982,0,0);}
.m5e_c01074{transform:matrix(0.250077,0.003001,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250077,0.003001,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250077,0.003001,-0.003000,0.249982,0,0);}
.m4a_c01074{transform:matrix(0.250137,0.003002,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250137,0.003002,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250137,0.003002,-0.003000,0.249982,0,0);}
.m7_c01074{transform:matrix(0.250172,0.003002,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250172,0.003002,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250172,0.003002,-0.003000,0.249982,0,0);}
.m34_c01074{transform:matrix(0.253552,0.003043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253552,0.003043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253552,0.003043,-0.003000,0.249982,0,0);}
.m62_c01074{transform:matrix(0.256372,0.003076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256372,0.003076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256372,0.003076,-0.003000,0.249982,0,0);}
.m6c_c01074{transform:matrix(0.257706,0.003092,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257706,0.003092,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257706,0.003092,-0.003000,0.249982,0,0);}
.m67_c01074{transform:matrix(0.281340,0.003376,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281340,0.003376,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281340,0.003376,-0.003000,0.249982,0,0);}
.m4b_c01074{transform:matrix(0.284869,0.003418,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284869,0.003418,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284869,0.003418,-0.003000,0.249982,0,0);}
.m74_c01074{transform:matrix(0.292724,0.003513,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292724,0.003513,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292724,0.003513,-0.003000,0.249982,0,0);}
.m2b_c01074{transform:matrix(0.305568,0.003667,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305568,0.003667,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305568,0.003667,-0.003000,0.249982,0,0);}
.m3f_c01074{transform:matrix(0.306163,0.003674,-0.003000,0.249982,0,0);-ms-transform:matrix(0.306163,0.003674,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.306163,0.003674,-0.003000,0.249982,0,0);}
.m5c_c01074{transform:matrix(0.306898,0.003683,-0.003000,0.249982,0,0);-ms-transform:matrix(0.306898,0.003683,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.306898,0.003683,-0.003000,0.249982,0,0);}
.m48_c01074{transform:matrix(0.312567,0.003751,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312567,0.003751,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312567,0.003751,-0.003000,0.249982,0,0);}
.ma_c01074{transform:matrix(0.318422,0.003821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.318422,0.003821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.318422,0.003821,-0.003000,0.249982,0,0);}
.m7f_c01074{transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319310,0.000000,0.000000,0.250000,0,0);}
.m3_c01074{transform:matrix(0.320372,0.003844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.320372,0.003844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.320372,0.003844,-0.003000,0.249982,0,0);}
.m11_c01074{transform:matrix(0.321567,0.003859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.321567,0.003859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.321567,0.003859,-0.003000,0.249982,0,0);}
.m4c_c01074{transform:matrix(0.362209,0.004347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.362209,0.004347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.362209,0.004347,-0.003000,0.249982,0,0);}
.m1f_c01074{transform:matrix(0.366299,0.004396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.366299,0.004396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.366299,0.004396,-0.003000,0.249982,0,0);}
.m60_c01074{transform:matrix(0.369113,0.004429,-0.003000,0.249982,0,0);-ms-transform:matrix(0.369113,0.004429,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.369113,0.004429,-0.003000,0.249982,0,0);}
.m4_c01074{transform:matrix(0.370853,0.004450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.370853,0.004450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.370853,0.004450,-0.003000,0.249982,0,0);}
.m64_c01074{transform:matrix(0.387037,0.004644,-0.003000,0.249982,0,0);-ms-transform:matrix(0.387037,0.004644,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.387037,0.004644,-0.003000,0.249982,0,0);}
.m12_c01074{transform:matrix(0.399421,0.004793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.399421,0.004793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.399421,0.004793,-0.003000,0.249982,0,0);}
.m20_c01074{transform:matrix(0.400241,0.004803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.400241,0.004803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.400241,0.004803,-0.003000,0.249982,0,0);}
.m0_c01074{transform:matrix(0.400395,-0.007207,0.004499,0.249960,0,0);-ms-transform:matrix(0.400395,-0.007207,0.004499,0.249960,0,0);-webkit-transform:matrix(0.400395,-0.007207,0.004499,0.249960,0,0);}
.m79_c01074{transform:matrix(0.406986,0.004884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.406986,0.004884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.406986,0.004884,-0.003000,0.249982,0,0);}
.m52_c01074{transform:matrix(0.416870,0.005002,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416870,0.005002,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416870,0.005002,-0.003000,0.249982,0,0);}
.m53_c01074{transform:matrix(0.459062,0.005509,-0.003000,0.249982,0,0);-ms-transform:matrix(0.459062,0.005509,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.459062,0.005509,-0.003000,0.249982,0,0);}
.m2e_c01074{transform:matrix(0.463862,0.005566,-0.003000,0.249982,0,0);-ms-transform:matrix(0.463862,0.005566,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.463862,0.005566,-0.003000,0.249982,0,0);}
.m33_c01074{transform:matrix(0.492215,0.005907,-0.003000,0.249982,0,0);-ms-transform:matrix(0.492215,0.005907,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.492215,0.005907,-0.003000,0.249982,0,0);}
.m1e_c01074{transform:matrix(0.643029,0.007716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.643029,0.007716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.643029,0.007716,-0.003000,0.249982,0,0);}
.m40_c01074{transform:matrix(0.673177,0.008078,-0.003000,0.249982,0,0);-ms-transform:matrix(0.673177,0.008078,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.673177,0.008078,-0.003000,0.249982,0,0);}
.m8_c01074{transform:matrix(0.695480,0.008346,-0.003000,0.249982,0,0);-ms-transform:matrix(0.695480,0.008346,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.695480,0.008346,-0.003000,0.249982,0,0);}
.m38_c01074{transform:matrix(0.789248,0.009471,-0.003000,0.249982,0,0);-ms-transform:matrix(0.789248,0.009471,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.789248,0.009471,-0.003000,0.249982,0,0);}
.m49_c01074{transform:matrix(0.841514,0.010098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.841514,0.010098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.841514,0.010098,-0.003000,0.249982,0,0);}
.m1_c01074{transform:matrix(0.974597,-0.017543,0.004499,0.249960,0,0);-ms-transform:matrix(0.974597,-0.017543,0.004499,0.249960,0,0);-webkit-transform:matrix(0.974597,-0.017543,0.004499,0.249960,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.v1_c01074{vertical-align:6.972502px;}
.ls0_c01074{letter-spacing:0.000000px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:0.000000px;}
._0_c01074{width:13311.492709px;}
.fc0_c01074{color:transparent;}
.fs7_c01074{font-size:61.954460px;}
.fs8_c01074{font-size:68.254914px;}
.fs3_c01074{font-size:69.304989px;}
.fs6_c01074{font-size:70.355065px;}
.fs4_c01074{font-size:71.405141px;}
.fsa_c01074{font-size:74.550000px;}
.fs9_c01074{font-size:88.200000px;}
.fs2_c01074{font-size:101.857333px;}
.fs1_c01074{font-size:126.009072px;}
.fs5_c01074{font-size:128.109223px;}
.fs0_c01074{font-size:155.425173px;}
.y0_c01074{bottom:0.000000px;}
.y7f_c01074{bottom:132.690000px;}
.y7e_c01074{bottom:402.702000px;}
.y7b_c01074{bottom:494.372514px;}
.y7c_c01074{bottom:494.373090px;}
.y7d_c01074{bottom:494.373798px;}
.y7a_c01074{bottom:516.905820px;}
.y77_c01074{bottom:540.606546px;}
.y6f_c01074{bottom:540.606636px;}
.y6e_c01074{bottom:540.606642px;}
.y76_c01074{bottom:540.606870px;}
.y75_c01074{bottom:540.607032px;}
.y70_c01074{bottom:540.607194px;}
.y78_c01074{bottom:540.607284px;}
.y79_c01074{bottom:540.607380px;}
.y74_c01074{bottom:540.607482px;}
.y71_c01074{bottom:540.607692px;}
.y73_c01074{bottom:540.607986px;}
.y72_c01074{bottom:540.608208px;}
.y61_c01074{bottom:563.201982px;}
.y62_c01074{bottom:563.202660px;}
.y63_c01074{bottom:563.202894px;}
.y64_c01074{bottom:563.203590px;}
.y65_c01074{bottom:563.204244px;}
.y66_c01074{bottom:563.204322px;}
.y67_c01074{bottom:563.204598px;}
.y6a_c01074{bottom:563.205270px;}
.y68_c01074{bottom:563.205294px;}
.y6b_c01074{bottom:563.205486px;}
.y6c_c01074{bottom:563.205624px;}
.y6d_c01074{bottom:563.205858px;}
.y69_c01074{bottom:563.205912px;}
.y5d_c01074{bottom:586.478868px;}
.y5f_c01074{bottom:586.479066px;}
.y5e_c01074{bottom:586.479162px;}
.y60_c01074{bottom:586.479564px;}
.y56_c01074{bottom:609.372432px;}
.y55_c01074{bottom:609.372816px;}
.y57_c01074{bottom:609.373110px;}
.y58_c01074{bottom:609.373248px;}
.y54_c01074{bottom:609.373446px;}
.y5b_c01074{bottom:609.373614px;}
.y59_c01074{bottom:609.373782px;}
.y5c_c01074{bottom:609.373872px;}
.y5a_c01074{bottom:609.373878px;}
.y4a_c01074{bottom:632.020644px;}
.y4f_c01074{bottom:632.021100px;}
.y4b_c01074{bottom:632.021316px;}
.y4c_c01074{bottom:632.021592px;}
.y52_c01074{bottom:632.021730px;}
.y50_c01074{bottom:632.021778px;}
.y4e_c01074{bottom:632.021784px;}
.y4d_c01074{bottom:632.021886px;}
.y51_c01074{bottom:632.022174px;}
.y53_c01074{bottom:632.022426px;}
.y43_c01074{bottom:653.981520px;}
.y47_c01074{bottom:653.981616px;}
.y45_c01074{bottom:653.982012px;}
.y44_c01074{bottom:653.982018px;}
.y46_c01074{bottom:653.982042px;}
.y49_c01074{bottom:653.982048px;}
.y48_c01074{bottom:653.982054px;}
.y42_c01074{bottom:653.982204px;}
.y41_c01074{bottom:653.982792px;}
.y3b_c01074{bottom:676.740594px;}
.y3c_c01074{bottom:676.741092px;}
.y3a_c01074{bottom:676.741302px;}
.y39_c01074{bottom:676.741608px;}
.y3d_c01074{bottom:676.741764px;}
.y40_c01074{bottom:676.741830px;}
.y3e_c01074{bottom:676.741980px;}
.y3f_c01074{bottom:676.742196px;}
.y30_c01074{bottom:699.312498px;}
.y34_c01074{bottom:699.312564px;}
.y33_c01074{bottom:699.312588px;}
.y2f_c01074{bottom:699.312606px;}
.y31_c01074{bottom:699.312894px;}
.y35_c01074{bottom:699.312978px;}
.y36_c01074{bottom:699.313134px;}
.y32_c01074{bottom:699.313152px;}
.y37_c01074{bottom:699.313488px;}
.y38_c01074{bottom:699.313764px;}
.y28_c01074{bottom:722.481516px;}
.y27_c01074{bottom:722.481660px;}
.y26_c01074{bottom:722.481702px;}
.y2d_c01074{bottom:722.481720px;}
.y2e_c01074{bottom:722.481816px;}
.y25_c01074{bottom:722.481828px;}
.y2c_c01074{bottom:722.481882px;}
.y29_c01074{bottom:722.482074px;}
.y2a_c01074{bottom:722.482308px;}
.y2b_c01074{bottom:722.482446px;}
.y24_c01074{bottom:745.649394px;}
.y23_c01074{bottom:745.649496px;}
.y21_c01074{bottom:745.649640px;}
.y20_c01074{bottom:745.650084px;}
.y22_c01074{bottom:745.650198px;}
.y1f_c01074{bottom:745.650726px;}
.y1e_c01074{bottom:764.675382px;}
.y1d_c01074{bottom:764.676024px;}
.y1c_c01074{bottom:764.676180px;}
.y13_c01074{bottom:791.842926px;}
.y14_c01074{bottom:791.843058px;}
.y18_c01074{bottom:791.843340px;}
.y15_c01074{bottom:791.843496px;}
.y16_c01074{bottom:791.843688px;}
.y17_c01074{bottom:791.843904px;}
.y19_c01074{bottom:791.844036px;}
.y1a_c01074{bottom:791.844234px;}
.y1b_c01074{bottom:791.844450px;}
.y9_c01074{bottom:814.614942px;}
.yb_c01074{bottom:814.614954px;}
.ye_c01074{bottom:814.614960px;}
.y11_c01074{bottom:814.614966px;}
.yf_c01074{bottom:814.614996px;}
.y10_c01074{bottom:814.615134px;}
.ya_c01074{bottom:814.615158px;}
.yd_c01074{bottom:814.615386px;}
.yc_c01074{bottom:814.615548px;}
.y12_c01074{bottom:814.615620px;}
.y8_c01074{bottom:833.470032px;}
.y7_c01074{bottom:833.470422px;}
.y6_c01074{bottom:859.688886px;}
.y5_c01074{bottom:860.800440px;}
.y4_c01074{bottom:862.334868px;}
.y3_c01074{bottom:863.733000px;}
.y1_c01074{bottom:899.109000px;}
.y2_c01074{bottom:900.484893px;}
.h9_c01074{height:61.954460px;}
.hb_c01074{height:68.254914px;}
.h5_c01074{height:69.304989px;}
.h8_c01074{height:70.355065px;}
.h6_c01074{height:71.405141px;}
.hd_c01074{height:74.550000px;}
.ha_c01074{height:77.327567px;}
.hc_c01074{height:88.200000px;}
.h4_c01074{height:101.857333px;}
.h3_c01074{height:126.009072px;}
.h7_c01074{height:128.109223px;}
.h2_c01074{height:155.425173px;}
.h1_c01074{height:1005.000000px;}
.h0_c01074{height:1005.150000px;}
.w1_c01074{width:762.750000px;}
.w0_c01074{width:763.020000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:35.934000px;}
.x41_c01074{left:37.255230px;}
.x1e_c01074{left:48.326916px;}
.x7_c01074{left:49.947834px;}
.x52_c01074{left:52.374324px;}
.x1b_c01074{left:53.726466px;}
.x9_c01074{left:55.887456px;}
.x2b_c01074{left:62.908038px;}
.x3_c01074{left:64.306500px;}
.x49_c01074{left:72.896892px;}
.xa_c01074{left:87.749046px;}
.x2_c01074{left:112.372500px;}
.x32_c01074{left:114.211608px;}
.xb_c01074{left:121.770942px;}
.x47_c01074{left:122.849862px;}
.x13_c01074{left:138.783168px;}
.x59_c01074{left:142.020000px;}
.x8_c01074{left:144.994014px;}
.x53_c01074{left:159.302232px;}
.x14_c01074{left:163.625250px;}
.x5a_c01074{left:164.970000px;}
.x4a_c01074{left:169.833360px;}
.x3d_c01074{left:173.076024px;}
.x42_c01074{left:175.234584px;}
.x4_c01074{left:180.817500px;}
.x2c_c01074{left:182.526264px;}
.xc_c01074{left:190.356324px;}
.x43_c01074{left:199.806630px;}
.x24_c01074{left:201.698010px;}
.x38_c01074{left:206.558832px;}
.xd_c01074{left:212.498010px;}
.x44_c01074{left:216.547542px;}
.x25_c01074{left:220.329192px;}
.x4b_c01074{left:226.537032px;}
.x33_c01074{left:227.620434px;}
.x3e_c01074{left:233.560236px;}
.x15_c01074{left:241.120410px;}
.x2d_c01074{left:247.061052px;}
.x3f_c01074{left:250.571184px;}
.x54_c01074{left:252.458142px;}
.x26_c01074{left:255.971322px;}
.xe_c01074{left:267.041358px;}
.x27_c01074{left:277.302900px;}
.x16_c01074{left:279.732972px;}
.x1f_c01074{left:282.164076px;}
.x4c_c01074{left:288.641478px;}
.x2e_c01074{left:292.694622px;}
.x40_c01074{left:298.635096px;}
.x34_c01074{left:304.575522px;}
.x5_c01074{left:308.686500px;}
.x45_c01074{left:312.133812px;}
.xf_c01074{left:314.295162px;}
.x17_c01074{left:317.535408px;}
.x20_c01074{left:323.206980px;}
.x48_c01074{left:325.095486px;}
.x28_c01074{left:329.415906px;}
.x58_c01074{left:331.560000px;}
.x4d_c01074{left:333.464940px;}
.x10_c01074{left:337.787046px;}
.x35_c01074{left:349.939056px;}
.x21_c01074{left:351.289530px;}
.x2f_c01074{left:356.419302px;}
.x29_c01074{left:359.658762px;}
.x18_c01074{left:362.358870px;}
.x46_c01074{left:371.267826px;}
.x22_c01074{left:372.351054px;}
.x4e_c01074{left:379.098510px;}
.x19_c01074{left:380.720016px;}
.x36_c01074{left:381.800646px;}
.x39_c01074{left:385.582608px;}
.x23_c01074{left:389.362002px;}
.x30_c01074{left:393.411630px;}
.x6_c01074{left:401.316000px;}
.x2a_c01074{left:404.212170px;}
.x1a_c01074{left:412.581606px;}
.x4f_c01074{left:417.711072px;}
.x11_c01074{left:419.062746px;}
.x55_c01074{left:432.562062px;}
.x50_c01074{left:434.451984px;}
.x1c_c01074{left:439.044942px;}
.x37_c01074{left:451.466172px;}
.x3a_c01074{left:453.627900px;}
.x31_c01074{left:455.516076px;}
.x56_c01074{left:458.754342px;}
.x1d_c01074{left:468.477672px;}
.x3b_c01074{left:471.719010px;}
.x51_c01074{left:486.564990px;}
.x12_c01074{left:489.268362px;}
.x57_c01074{left:494.126436px;}
.x3c_c01074{left:524.102052px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.v1_c01074{vertical-align:6.197780pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ws0_c01074{word-spacing:0.000000pt;}
._0_c01074{width:11832.437964pt;}
.fs7_c01074{font-size:55.070631pt;}
.fs8_c01074{font-size:60.671035pt;}
.fs3_c01074{font-size:61.604435pt;}
.fs6_c01074{font-size:62.537836pt;}
.fs4_c01074{font-size:63.471236pt;}
.fsa_c01074{font-size:66.266667pt;}
.fs9_c01074{font-size:78.400000pt;}
.fs2_c01074{font-size:90.539851pt;}
.fs1_c01074{font-size:112.008064pt;}
.fs5_c01074{font-size:113.874865pt;}
.fs0_c01074{font-size:138.155709pt;}
.y0_c01074{bottom:0.000000pt;}
.y7f_c01074{bottom:117.946667pt;}
.y7e_c01074{bottom:357.957333pt;}
.y7b_c01074{bottom:439.442235pt;}
.y7c_c01074{bottom:439.442747pt;}
.y7d_c01074{bottom:439.443376pt;}
.y7a_c01074{bottom:459.471840pt;}
.y77_c01074{bottom:480.539152pt;}
.y6f_c01074{bottom:480.539232pt;}
.y6e_c01074{bottom:480.539237pt;}
.y76_c01074{bottom:480.539440pt;}
.y75_c01074{bottom:480.539584pt;}
.y70_c01074{bottom:480.539728pt;}
.y78_c01074{bottom:480.539808pt;}
.y79_c01074{bottom:480.539893pt;}
.y74_c01074{bottom:480.539984pt;}
.y71_c01074{bottom:480.540171pt;}
.y73_c01074{bottom:480.540432pt;}
.y72_c01074{bottom:480.540629pt;}
.y61_c01074{bottom:500.623984pt;}
.y62_c01074{bottom:500.624587pt;}
.y63_c01074{bottom:500.624795pt;}
.y64_c01074{bottom:500.625413pt;}
.y65_c01074{bottom:500.625995pt;}
.y66_c01074{bottom:500.626064pt;}
.y67_c01074{bottom:500.626309pt;}
.y6a_c01074{bottom:500.626907pt;}
.y68_c01074{bottom:500.626928pt;}
.y6b_c01074{bottom:500.627099pt;}
.y6c_c01074{bottom:500.627221pt;}
.y6d_c01074{bottom:500.627429pt;}
.y69_c01074{bottom:500.627477pt;}
.y5d_c01074{bottom:521.314549pt;}
.y5f_c01074{bottom:521.314725pt;}
.y5e_c01074{bottom:521.314811pt;}
.y60_c01074{bottom:521.315168pt;}
.y56_c01074{bottom:541.664384pt;}
.y55_c01074{bottom:541.664725pt;}
.y57_c01074{bottom:541.664987pt;}
.y58_c01074{bottom:541.665109pt;}
.y54_c01074{bottom:541.665285pt;}
.y5b_c01074{bottom:541.665435pt;}
.y59_c01074{bottom:541.665584pt;}
.y5c_c01074{bottom:541.665664pt;}
.y5a_c01074{bottom:541.665669pt;}
.y4a_c01074{bottom:561.796128pt;}
.y4f_c01074{bottom:561.796533pt;}
.y4b_c01074{bottom:561.796725pt;}
.y4c_c01074{bottom:561.796971pt;}
.y52_c01074{bottom:561.797093pt;}
.y50_c01074{bottom:561.797136pt;}
.y4e_c01074{bottom:561.797141pt;}
.y4d_c01074{bottom:561.797232pt;}
.y51_c01074{bottom:561.797488pt;}
.y53_c01074{bottom:561.797712pt;}
.y43_c01074{bottom:581.316907pt;}
.y47_c01074{bottom:581.316992pt;}
.y45_c01074{bottom:581.317344pt;}
.y44_c01074{bottom:581.317349pt;}
.y46_c01074{bottom:581.317371pt;}
.y49_c01074{bottom:581.317376pt;}
.y48_c01074{bottom:581.317381pt;}
.y42_c01074{bottom:581.317515pt;}
.y41_c01074{bottom:581.318037pt;}
.y3b_c01074{bottom:601.547195pt;}
.y3c_c01074{bottom:601.547637pt;}
.y3a_c01074{bottom:601.547824pt;}
.y39_c01074{bottom:601.548096pt;}
.y3d_c01074{bottom:601.548235pt;}
.y40_c01074{bottom:601.548293pt;}
.y3e_c01074{bottom:601.548427pt;}
.y3f_c01074{bottom:601.548619pt;}
.y30_c01074{bottom:621.611109pt;}
.y34_c01074{bottom:621.611168pt;}
.y33_c01074{bottom:621.611189pt;}
.y2f_c01074{bottom:621.611205pt;}
.y31_c01074{bottom:621.611461pt;}
.y35_c01074{bottom:621.611536pt;}
.y36_c01074{bottom:621.611675pt;}
.y32_c01074{bottom:621.611691pt;}
.y37_c01074{bottom:621.611989pt;}
.y38_c01074{bottom:621.612235pt;}
.y28_c01074{bottom:642.205792pt;}
.y27_c01074{bottom:642.205920pt;}
.y26_c01074{bottom:642.205957pt;}
.y2d_c01074{bottom:642.205973pt;}
.y2e_c01074{bottom:642.206059pt;}
.y25_c01074{bottom:642.206069pt;}
.y2c_c01074{bottom:642.206117pt;}
.y29_c01074{bottom:642.206288pt;}
.y2a_c01074{bottom:642.206496pt;}
.y2b_c01074{bottom:642.206619pt;}
.y24_c01074{bottom:662.799461pt;}
.y23_c01074{bottom:662.799552pt;}
.y21_c01074{bottom:662.799680pt;}
.y20_c01074{bottom:662.800075pt;}
.y22_c01074{bottom:662.800176pt;}
.y1f_c01074{bottom:662.800645pt;}
.y1e_c01074{bottom:679.711451pt;}
.y1d_c01074{bottom:679.712021pt;}
.y1c_c01074{bottom:679.712160pt;}
.y13_c01074{bottom:703.860379pt;}
.y14_c01074{bottom:703.860496pt;}
.y18_c01074{bottom:703.860747pt;}
.y15_c01074{bottom:703.860885pt;}
.y16_c01074{bottom:703.861056pt;}
.y17_c01074{bottom:703.861248pt;}
.y19_c01074{bottom:703.861365pt;}
.y1a_c01074{bottom:703.861541pt;}
.y1b_c01074{bottom:703.861733pt;}
.y9_c01074{bottom:724.102171pt;}
.yb_c01074{bottom:724.102181pt;}
.ye_c01074{bottom:724.102187pt;}
.y11_c01074{bottom:724.102192pt;}
.yf_c01074{bottom:724.102219pt;}
.y10_c01074{bottom:724.102341pt;}
.ya_c01074{bottom:724.102363pt;}
.yd_c01074{bottom:724.102565pt;}
.yc_c01074{bottom:724.102709pt;}
.y12_c01074{bottom:724.102773pt;}
.y8_c01074{bottom:740.862251pt;}
.y7_c01074{bottom:740.862597pt;}
.y6_c01074{bottom:764.167899pt;}
.y5_c01074{bottom:765.155947pt;}
.y4_c01074{bottom:766.519883pt;}
.y3_c01074{bottom:767.762667pt;}
.y1_c01074{bottom:799.208000pt;}
.y2_c01074{bottom:800.431016pt;}
.h9_c01074{height:55.070631pt;}
.hb_c01074{height:60.671035pt;}
.h5_c01074{height:61.604435pt;}
.h8_c01074{height:62.537836pt;}
.h6_c01074{height:63.471236pt;}
.hd_c01074{height:66.266667pt;}
.ha_c01074{height:68.735615pt;}
.hc_c01074{height:78.400000pt;}
.h4_c01074{height:90.539851pt;}
.h3_c01074{height:112.008064pt;}
.h7_c01074{height:113.874865pt;}
.h2_c01074{height:138.155709pt;}
.h1_c01074{height:893.333333pt;}
.h0_c01074{height:893.466667pt;}
.w1_c01074{width:678.000000pt;}
.w0_c01074{width:678.240000pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:31.941333pt;}
.x41_c01074{left:33.115760pt;}
.x1e_c01074{left:42.957259pt;}
.x7_c01074{left:44.398075pt;}
.x52_c01074{left:46.554955pt;}
.x1b_c01074{left:47.756859pt;}
.x9_c01074{left:49.677739pt;}
.x2b_c01074{left:55.918256pt;}
.x3_c01074{left:57.161333pt;}
.x49_c01074{left:64.797237pt;}
.xa_c01074{left:77.999152pt;}
.x2_c01074{left:99.886667pt;}
.x32_c01074{left:101.521429pt;}
.xb_c01074{left:108.240837pt;}
.x47_c01074{left:109.199877pt;}
.x13_c01074{left:123.362816pt;}
.x59_c01074{left:126.240000pt;}
.x8_c01074{left:128.883568pt;}
.x53_c01074{left:141.601984pt;}
.x14_c01074{left:145.444667pt;}
.x5a_c01074{left:146.640000pt;}
.x4a_c01074{left:150.962987pt;}
.x3d_c01074{left:153.845355pt;}
.x42_c01074{left:155.764075pt;}
.x4_c01074{left:160.726667pt;}
.x2c_c01074{left:162.245568pt;}
.xc_c01074{left:169.205621pt;}
.x43_c01074{left:177.605893pt;}
.x24_c01074{left:179.287120pt;}
.x38_c01074{left:183.607851pt;}
.xd_c01074{left:188.887120pt;}
.x44_c01074{left:192.486704pt;}
.x25_c01074{left:195.848171pt;}
.x4b_c01074{left:201.366251pt;}
.x33_c01074{left:202.329275pt;}
.x3e_c01074{left:207.609099pt;}
.x15_c01074{left:214.329253pt;}
.x2d_c01074{left:219.609824pt;}
.x3f_c01074{left:222.729941pt;}
.x54_c01074{left:224.407237pt;}
.x26_c01074{left:227.530064pt;}
.xe_c01074{left:237.370096pt;}
.x27_c01074{left:246.491467pt;}
.x16_c01074{left:248.651531pt;}
.x1f_c01074{left:250.812512pt;}
.x4c_c01074{left:256.570203pt;}
.x2e_c01074{left:260.172997pt;}
.x40_c01074{left:265.453419pt;}
.x34_c01074{left:270.733797pt;}
.x5_c01074{left:274.388000pt;}
.x45_c01074{left:277.452277pt;}
.xf_c01074{left:279.373477pt;}
.x17_c01074{left:282.253696pt;}
.x20_c01074{left:287.295093pt;}
.x48_c01074{left:288.973765pt;}
.x28_c01074{left:292.814139pt;}
.x58_c01074{left:294.720000pt;}
.x4d_c01074{left:296.413280pt;}
.x10_c01074{left:300.255152pt;}
.x35_c01074{left:311.056939pt;}
.x21_c01074{left:312.257360pt;}
.x2f_c01074{left:316.817157pt;}
.x29_c01074{left:319.696677pt;}
.x18_c01074{left:322.096773pt;}
.x46_c01074{left:330.015845pt;}
.x22_c01074{left:330.978715pt;}
.x4e_c01074{left:336.976453pt;}
.x19_c01074{left:338.417792pt;}
.x36_c01074{left:339.378352pt;}
.x39_c01074{left:342.740096pt;}
.x23_c01074{left:346.099557pt;}
.x30_c01074{left:349.699227pt;}
.x6_c01074{left:356.725333pt;}
.x2a_c01074{left:359.299707pt;}
.x1a_c01074{left:366.739205pt;}
.x4f_c01074{left:371.298731pt;}
.x11_c01074{left:372.500219pt;}
.x55_c01074{left:384.499611pt;}
.x50_c01074{left:386.179541pt;}
.x1c_c01074{left:390.262171pt;}
.x37_c01074{left:401.303264pt;}
.x3a_c01074{left:403.224800pt;}
.x31_c01074{left:404.903179pt;}
.x56_c01074{left:407.781637pt;}
.x1d_c01074{left:416.424597pt;}
.x3b_c01074{left:419.305787pt;}
.x51_c01074{left:432.502213pt;}
.x12_c01074{left:434.905211pt;}
.x57_c01074{left:439.223499pt;}
.x3c_c01074{left:465.868491pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.000000;font-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_c01075{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);}
.m41_c01075{transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019190,0.000000,0.000000,0.250000,0,0);}
.m82_c01075{transform:matrix(0.069935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069935,0.000000,0.000000,0.250000,0,0);}
.m40_c01075{transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072415,0.000000,0.000000,0.250000,0,0);}
.m35_c01075{transform:matrix(0.116782,-0.006079,0.012995,0.249662,0,0);-ms-transform:matrix(0.116782,-0.006079,0.012995,0.249662,0,0);-webkit-transform:matrix(0.116782,-0.006079,0.012995,0.249662,0,0);}
.m33_c01075{transform:matrix(0.120442,-0.006269,0.012995,0.249662,0,0);-ms-transform:matrix(0.120442,-0.006269,0.012995,0.249662,0,0);-webkit-transform:matrix(0.120442,-0.006269,0.012995,0.249662,0,0);}
.m34_c01075{transform:matrix(0.121850,-0.006343,0.012995,0.249662,0,0);-ms-transform:matrix(0.121850,-0.006343,0.012995,0.249662,0,0);-webkit-transform:matrix(0.121850,-0.006343,0.012995,0.249662,0,0);}
.m5d_c01075{transform:matrix(0.122095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122095,0.000000,0.000000,0.250000,0,0);}
.m10_c01075{transform:matrix(0.130182,-0.002473,0.004749,0.249955,0,0);-ms-transform:matrix(0.130182,-0.002473,0.004749,0.249955,0,0);-webkit-transform:matrix(0.130182,-0.002473,0.004749,0.249955,0,0);}
.m88_c01075{transform:matrix(0.132185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132185,0.000000,0.000000,0.250000,0,0);}
.m5e_c01075{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.m54_c01075{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);}
.m11_c01075{transform:matrix(0.139345,-0.002648,0.004749,0.249955,0,0);-ms-transform:matrix(0.139345,-0.002648,0.004749,0.249955,0,0);-webkit-transform:matrix(0.139345,-0.002648,0.004749,0.249955,0,0);}
.m58_c01075{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);}
.m85_c01075{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);}
.m8_c01075{transform:matrix(0.149123,-0.002833,0.004749,0.249955,0,0);-ms-transform:matrix(0.149123,-0.002833,0.004749,0.249955,0,0);-webkit-transform:matrix(0.149123,-0.002833,0.004749,0.249955,0,0);}
.m46_c01075{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);}
.m59_c01075{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);}
.m49_c01075{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);}
.mf_c01075{transform:matrix(0.153237,-0.002912,0.004749,0.249955,0,0);-ms-transform:matrix(0.153237,-0.002912,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153237,-0.002912,0.004749,0.249955,0,0);}
.m2_c01075{transform:matrix(0.153921,-0.005393,0.008753,0.249847,0,0);-ms-transform:matrix(0.153921,-0.005393,0.008753,0.249847,0,0);-webkit-transform:matrix(0.153921,-0.005393,0.008753,0.249847,0,0);}
.m31_c01075{transform:matrix(0.156627,-0.002976,0.004749,0.249955,0,0);-ms-transform:matrix(0.156627,-0.002976,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156627,-0.002976,0.004749,0.249955,0,0);}
.m9_c01075{transform:matrix(0.157557,-0.002994,0.004749,0.249955,0,0);-ms-transform:matrix(0.157557,-0.002994,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157557,-0.002994,0.004749,0.249955,0,0);}
.m4a_c01075{transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160315,0.000000,0.000000,0.250000,0,0);}
.m13_c01075{transform:matrix(0.162321,-0.003084,0.004749,0.249955,0,0);-ms-transform:matrix(0.162321,-0.003084,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162321,-0.003084,0.004749,0.249955,0,0);}
.m32_c01075{transform:matrix(0.163703,-0.008521,0.012995,0.249662,0,0);-ms-transform:matrix(0.163703,-0.008521,0.012995,0.249662,0,0);-webkit-transform:matrix(0.163703,-0.008521,0.012995,0.249662,0,0);}
.m8b_c01075{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);}
.m57_c01075{transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164895,0.000000,0.000000,0.250000,0,0);}
.m5c_c01075{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);}
.mc_c01075{transform:matrix(0.166495,-0.003163,0.004749,0.249955,0,0);-ms-transform:matrix(0.166495,-0.003163,0.004749,0.249955,0,0);-webkit-transform:matrix(0.166495,-0.003163,0.004749,0.249955,0,0);}
.m8c_c01075{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);}
.m6e_c01075{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);}
.mb_c01075{transform:matrix(0.168335,-0.003198,0.004749,0.249955,0,0);-ms-transform:matrix(0.168335,-0.003198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168335,-0.003198,0.004749,0.249955,0,0);}
.m19_c01075{transform:matrix(0.168440,-0.003200,0.004749,0.249955,0,0);-ms-transform:matrix(0.168440,-0.003200,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168440,-0.003200,0.004749,0.249955,0,0);}
.m65_c01075{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);}
.m89_c01075{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);}
.ma_c01075{transform:matrix(0.170229,-0.003234,0.004749,0.249955,0,0);-ms-transform:matrix(0.170229,-0.003234,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170229,-0.003234,0.004749,0.249955,0,0);}
.m4b_c01075{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);}
.m2f_c01075{transform:matrix(0.173754,-0.003301,0.004749,0.249955,0,0);-ms-transform:matrix(0.173754,-0.003301,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173754,-0.003301,0.004749,0.249955,0,0);}
.m51_c01075{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);}
.m12_c01075{transform:matrix(0.175073,-0.003326,0.004749,0.249955,0,0);-ms-transform:matrix(0.175073,-0.003326,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175073,-0.003326,0.004749,0.249955,0,0);}
.m53_c01075{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);}
.m3d_c01075{transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175945,0.000000,0.000000,0.250000,0,0);}
.m8a_c01075{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);}
.m4c_c01075{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);}
.m79_c01075{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);}
.m3b_c01075{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);}
.m69_c01075{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);}
.m45_c01075{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);}
.m52_c01075{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);}
.m63_c01075{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);}
.m87_c01075{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);}
.m23_c01075{transform:matrix(0.184082,-0.003498,0.004749,0.249955,0,0);-ms-transform:matrix(0.184082,-0.003498,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184082,-0.003498,0.004749,0.249955,0,0);}
.m30_c01075{transform:matrix(0.184342,-0.003502,0.004749,0.249955,0,0);-ms-transform:matrix(0.184342,-0.003502,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184342,-0.003502,0.004749,0.249955,0,0);}
.m6d_c01075{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);}
.m14_c01075{transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184767,-0.003511,0.004749,0.249955,0,0);}
.m66_c01075{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);}
.m6f_c01075{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);}
.m7_c01075{transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);-ms-transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186566,-0.003545,0.004749,0.249955,0,0);}
.m48_c01075{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);}
.m81_c01075{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);}
.m3c_c01075{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);}
.m7e_c01075{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);}
.m7a_c01075{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);}
.m60_c01075{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);}
.m6a_c01075{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);}
.m7f_c01075{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);}
.m6c_c01075{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);}
.m64_c01075{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);}
.m55_c01075{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);}
.m50_c01075{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);}
.m73_c01075{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_c01075{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);}
.m47_c01075{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);}
.m67_c01075{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);}
.m38_c01075{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);}
.m5a_c01075{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);}
.m1a_c01075{transform:matrix(0.203663,-0.003870,0.004749,0.249955,0,0);-ms-transform:matrix(0.203663,-0.003870,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203663,-0.003870,0.004749,0.249955,0,0);}
.m4_c01075{transform:matrix(0.204055,-0.007149,0.008753,0.249847,0,0);-ms-transform:matrix(0.204055,-0.007149,0.008753,0.249847,0,0);-webkit-transform:matrix(0.204055,-0.007149,0.008753,0.249847,0,0);}
.m75_c01075{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);}
.m62_c01075{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);}
.m18_c01075{transform:matrix(0.204748,-0.003890,0.004749,0.249955,0,0);-ms-transform:matrix(0.204748,-0.003890,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204748,-0.003890,0.004749,0.249955,0,0);}
.m71_c01075{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);}
.m80_c01075{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);}
.m37_c01075{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);}
.m44_c01075{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);}
.m7c_c01075{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);}
.m72_c01075{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);}
.m3a_c01075{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);}
.m3e_c01075{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);}
.m1b_c01075{transform:matrix(0.217601,-0.004134,0.004749,0.249955,0,0);-ms-transform:matrix(0.217601,-0.004134,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217601,-0.004134,0.004749,0.249955,0,0);}
.m39_c01075{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);}
.m68_c01075{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);}
.m86_c01075{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.m77_c01075{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);}
.m6b_c01075{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m61_c01075{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);}
.m43_c01075{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);}
.m7b_c01075{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.me_c01075{transform:matrix(0.230518,-0.004380,0.004749,0.249955,0,0);-ms-transform:matrix(0.230518,-0.004380,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230518,-0.004380,0.004749,0.249955,0,0);}
.m7d_c01075{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);}
.m5f_c01075{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);}
.m2d_c01075{transform:matrix(0.234673,-0.004459,0.004749,0.249955,0,0);-ms-transform:matrix(0.234673,-0.004459,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234673,-0.004459,0.004749,0.249955,0,0);}
.m1e_c01075{transform:matrix(0.241311,-0.004585,0.004749,0.249955,0,0);-ms-transform:matrix(0.241311,-0.004585,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241311,-0.004585,0.004749,0.249955,0,0);}
.m74_c01075{transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);}
.m78_c01075{transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);}
.m2e_c01075{transform:matrix(0.247870,-0.004710,0.004749,0.249955,0,0);-ms-transform:matrix(0.247870,-0.004710,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247870,-0.004710,0.004749,0.249955,0,0);}
.m17_c01075{transform:matrix(0.253589,-0.004818,0.004749,0.249955,0,0);-ms-transform:matrix(0.253589,-0.004818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253589,-0.004818,0.004749,0.249955,0,0);}
.m3_c01075{transform:matrix(0.260635,-0.009131,0.008753,0.249847,0,0);-ms-transform:matrix(0.260635,-0.009131,0.008753,0.249847,0,0);-webkit-transform:matrix(0.260635,-0.009131,0.008753,0.249847,0,0);}
.m4f_c01075{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);}
.m26_c01075{transform:matrix(0.283199,-0.005381,0.004749,0.249955,0,0);-ms-transform:matrix(0.283199,-0.005381,0.004749,0.249955,0,0);-webkit-transform:matrix(0.283199,-0.005381,0.004749,0.249955,0,0);}
.m29_c01075{transform:matrix(0.287423,-0.005461,0.004749,0.249955,0,0);-ms-transform:matrix(0.287423,-0.005461,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287423,-0.005461,0.004749,0.249955,0,0);}
.m4e_c01075{transform:matrix(0.299465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299465,0.000000,0.000000,0.250000,0,0);}
.m16_c01075{transform:matrix(0.308054,-0.005853,0.004749,0.249955,0,0);-ms-transform:matrix(0.308054,-0.005853,0.004749,0.249955,0,0);-webkit-transform:matrix(0.308054,-0.005853,0.004749,0.249955,0,0);}
.m76_c01075{transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309960,0.000000,0.000000,0.250000,0,0);}
.m2a_c01075{transform:matrix(0.323462,-0.006146,0.004749,0.249955,0,0);-ms-transform:matrix(0.323462,-0.006146,0.004749,0.249955,0,0);-webkit-transform:matrix(0.323462,-0.006146,0.004749,0.249955,0,0);}
.md_c01075{transform:matrix(0.324451,-0.006165,0.004749,0.249955,0,0);-ms-transform:matrix(0.324451,-0.006165,0.004749,0.249955,0,0);-webkit-transform:matrix(0.324451,-0.006165,0.004749,0.249955,0,0);}
.m3f_c01075{transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324920,0.000000,0.000000,0.250000,0,0);}
.m1_c01075{transform:matrix(0.334090,-0.011705,0.008753,0.249847,0,0);-ms-transform:matrix(0.334090,-0.011705,0.008753,0.249847,0,0);-webkit-transform:matrix(0.334090,-0.011705,0.008753,0.249847,0,0);}
.m2b_c01075{transform:matrix(0.343443,-0.006525,0.004749,0.249955,0,0);-ms-transform:matrix(0.343443,-0.006525,0.004749,0.249955,0,0);-webkit-transform:matrix(0.343443,-0.006525,0.004749,0.249955,0,0);}
.m25_c01075{transform:matrix(0.345158,-0.006558,0.004749,0.249955,0,0);-ms-transform:matrix(0.345158,-0.006558,0.004749,0.249955,0,0);-webkit-transform:matrix(0.345158,-0.006558,0.004749,0.249955,0,0);}
.m27_c01075{transform:matrix(0.347072,-0.006594,0.004749,0.249955,0,0);-ms-transform:matrix(0.347072,-0.006594,0.004749,0.249955,0,0);-webkit-transform:matrix(0.347072,-0.006594,0.004749,0.249955,0,0);}
.m83_c01075{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);}
.m5b_c01075{transform:matrix(0.359225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359225,0.000000,0.000000,0.250000,0,0);}
.m20_c01075{transform:matrix(0.362994,-0.006897,0.004749,0.249955,0,0);-ms-transform:matrix(0.362994,-0.006897,0.004749,0.249955,0,0);-webkit-transform:matrix(0.362994,-0.006897,0.004749,0.249955,0,0);}
.m21_c01075{transform:matrix(0.365999,-0.006954,0.004749,0.249955,0,0);-ms-transform:matrix(0.365999,-0.006954,0.004749,0.249955,0,0);-webkit-transform:matrix(0.365999,-0.006954,0.004749,0.249955,0,0);}
.m24_c01075{transform:matrix(0.369558,-0.007022,0.004749,0.249955,0,0);-ms-transform:matrix(0.369558,-0.007022,0.004749,0.249955,0,0);-webkit-transform:matrix(0.369558,-0.007022,0.004749,0.249955,0,0);}
.m22_c01075{transform:matrix(0.396948,-0.007542,0.004749,0.249955,0,0);-ms-transform:matrix(0.396948,-0.007542,0.004749,0.249955,0,0);-webkit-transform:matrix(0.396948,-0.007542,0.004749,0.249955,0,0);}
.m2c_c01075{transform:matrix(0.397053,-0.007544,0.004749,0.249955,0,0);-ms-transform:matrix(0.397053,-0.007544,0.004749,0.249955,0,0);-webkit-transform:matrix(0.397053,-0.007544,0.004749,0.249955,0,0);}
.m1c_c01075{transform:matrix(0.398728,-0.007576,0.004749,0.249955,0,0);-ms-transform:matrix(0.398728,-0.007576,0.004749,0.249955,0,0);-webkit-transform:matrix(0.398728,-0.007576,0.004749,0.249955,0,0);}
.m70_c01075{transform:matrix(0.406425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406425,0.000000,0.000000,0.250000,0,0);}
.m36_c01075{transform:matrix(0.410530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410530,0.000000,0.000000,0.250000,0,0);}
.m1f_c01075{transform:matrix(0.418584,-0.007953,0.004749,0.249955,0,0);-ms-transform:matrix(0.418584,-0.007953,0.004749,0.249955,0,0);-webkit-transform:matrix(0.418584,-0.007953,0.004749,0.249955,0,0);}
.m15_c01075{transform:matrix(0.420459,-0.007989,0.004749,0.249955,0,0);-ms-transform:matrix(0.420459,-0.007989,0.004749,0.249955,0,0);-webkit-transform:matrix(0.420459,-0.007989,0.004749,0.249955,0,0);}
.m5_c01075{transform:matrix(0.440071,-0.007481,0.004249,0.249964,0,0);-ms-transform:matrix(0.440071,-0.007481,0.004249,0.249964,0,0);-webkit-transform:matrix(0.440071,-0.007481,0.004249,0.249964,0,0);}
.m28_c01075{transform:matrix(0.454813,-0.008641,0.004749,0.249955,0,0);-ms-transform:matrix(0.454813,-0.008641,0.004749,0.249955,0,0);-webkit-transform:matrix(0.454813,-0.008641,0.004749,0.249955,0,0);}
.m42_c01075{transform:matrix(0.470160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470160,0.000000,0.000000,0.250000,0,0);}
.m4d_c01075{transform:matrix(0.480825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01075{transform:matrix(0.510273,-0.009695,0.004749,0.249955,0,0);-ms-transform:matrix(0.510273,-0.009695,0.004749,0.249955,0,0);-webkit-transform:matrix(0.510273,-0.009695,0.004749,0.249955,0,0);}
.m6_c01075{transform:matrix(0.521450,-0.008865,0.004249,0.249964,0,0);-ms-transform:matrix(0.521450,-0.008865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.521450,-0.008865,0.004249,0.249964,0,0);}
.m0_c01075{transform:matrix(0.544731,-0.019085,0.008753,0.249847,0,0);-ms-transform:matrix(0.544731,-0.019085,0.008753,0.249847,0,0);-webkit-transform:matrix(0.544731,-0.019085,0.008753,0.249847,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls0_c01075{letter-spacing:0.000000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:0.000000px;}
.fc0_c01075{color:transparent;}
.fs13_c01075{font-size:61.950000px;}
.fs10_c01075{font-size:64.050000px;}
.fsb_c01075{font-size:66.150000px;}
.fs11_c01075{font-size:67.200000px;}
.fse_c01075{font-size:68.250000px;}
.fsc_c01075{font-size:70.350000px;}
.fsd_c01075{font-size:73.500000px;}
.fs6_c01075{font-size:74.563455px;}
.fs15_c01075{font-size:78.750000px;}
.fs7_c01075{font-size:80.864592px;}
.fs14_c01075{font-size:81.900000px;}
.fs3_c01075{font-size:81.911834px;}
.fs9_c01075{font-size:81.914782px;}
.fsf_c01075{font-size:85.050000px;}
.fs5_c01075{font-size:87.165729px;}
.fs0_c01075{font-size:88.165860px;}
.fs12_c01075{font-size:89.250000px;}
.fs1_c01075{font-size:95.513015px;}
.fs4_c01075{font-size:99.768003px;}
.fs8_c01075{font-size:100.818193px;}
.fs2_c01075{font-size:104.959357px;}
.fsa_c01075{font-size:129.195517px;}
.y0_c01075{bottom:0.000000px;}
.y4a_c01075{bottom:151.009500px;}
.y49_c01075{bottom:174.097500px;}
.y48_c01075{bottom:196.489500px;}
.y47_c01075{bottom:218.839500px;}
.y46_c01075{bottom:241.486500px;}
.y45_c01075{bottom:264.046500px;}
.y44_c01075{bottom:287.068500px;}
.y43_c01075{bottom:309.843000px;}
.y3b_c01075{bottom:329.940000px;}
.y3c_c01075{bottom:330.366000px;}
.y3d_c01075{bottom:330.628500px;}
.y3e_c01075{bottom:331.125000px;}
.y3f_c01075{bottom:331.708500px;}
.y40_c01075{bottom:332.103000px;}
.y41_c01075{bottom:332.418000px;}
.y42_c01075{bottom:332.647500px;}
.y3a_c01075{bottom:354.306000px;}
.y39_c01075{bottom:381.472500px;}
.y38_c01075{bottom:409.713000px;}
.y37_c01075{bottom:438.150000px;}
.y33_c01075{bottom:467.979000px;}
.y34_c01075{bottom:469.685328px;}
.y35_c01075{bottom:470.586852px;}
.y36_c01075{bottom:473.405070px;}
.y2e_c01075{bottom:512.167459px;}
.y2f_c01075{bottom:512.573436px;}
.y30_c01075{bottom:513.137484px;}
.y31_c01075{bottom:513.911365px;}
.y32_c01075{bottom:516.038748px;}
.y2b_c01075{bottom:538.628334px;}
.y2c_c01075{bottom:540.003675px;}
.y2d_c01075{bottom:541.330290px;}
.y29_c01075{bottom:564.824116px;}
.y2a_c01075{bottom:568.968488px;}
.y25_c01075{bottom:591.016941px;}
.y26_c01075{bottom:592.179366px;}
.y27_c01075{bottom:593.455002px;}
.y28_c01075{bottom:594.281316px;}
.y1b_c01075{bottom:616.946356px;}
.y1c_c01075{bottom:618.783453px;}
.y1d_c01075{bottom:619.659182px;}
.y1e_c01075{bottom:620.217183px;}
.y1f_c01075{bottom:622.273788px;}
.y20_c01075{bottom:622.922559px;}
.y21_c01075{bottom:624.347208px;}
.y22_c01075{bottom:624.654162px;}
.y23_c01075{bottom:625.117842px;}
.y24_c01075{bottom:625.663086px;}
.y13_c01075{bottom:642.330657px;}
.y14_c01075{bottom:643.643480px;}
.y15_c01075{bottom:644.108236px;}
.y16_c01075{bottom:645.270054px;}
.y17_c01075{bottom:647.285238px;}
.y18_c01075{bottom:648.483311px;}
.y19_c01075{bottom:648.950044px;}
.y1a_c01075{bottom:649.694247px;}
.y8_c01075{bottom:667.446000px;}
.y9_c01075{bottom:668.021130px;}
.ya_c01075{bottom:669.278522px;}
.yb_c01075{bottom:671.000520px;}
.yc_c01075{bottom:671.657131px;}
.yd_c01075{bottom:672.463966px;}
.ye_c01075{bottom:672.848745px;}
.yf_c01075{bottom:673.962838px;}
.y10_c01075{bottom:674.511150px;}
.y11_c01075{bottom:675.939912px;}
.y12_c01075{bottom:676.301292px;}
.y6_c01075{bottom:715.776000px;}
.y7_c01075{bottom:718.176851px;}
.y5_c01075{bottom:849.164710px;}
.y4_c01075{bottom:883.171822px;}
.y1_c01075{bottom:894.547500px;}
.y2_c01075{bottom:897.348480px;}
.y3_c01075{bottom:899.451735px;}
.h15_c01075{height:61.950000px;}
.h12_c01075{height:64.050000px;}
.hd_c01075{height:66.150000px;}
.h13_c01075{height:67.200000px;}
.h10_c01075{height:68.250000px;}
.he_c01075{height:70.350000px;}
.hf_c01075{height:73.500000px;}
.h8_c01075{height:74.563455px;}
.h17_c01075{height:78.750000px;}
.h9_c01075{height:80.864592px;}
.h16_c01075{height:81.900000px;}
.h5_c01075{height:81.911834px;}
.hb_c01075{height:81.914782px;}
.h11_c01075{height:85.050000px;}
.h7_c01075{height:87.165729px;}
.h2_c01075{height:88.165860px;}
.h14_c01075{height:89.250000px;}
.h3_c01075{height:95.513015px;}
.h6_c01075{height:99.768003px;}
.ha_c01075{height:100.818193px;}
.h4_c01075{height:104.959357px;}
.hc_c01075{height:129.195517px;}
.h0_c01075{height:1008.450000px;}
.h1_c01075{height:1008.750000px;}
.w1_c01075{width:774.000000px;}
.w0_c01075{width:774.090000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:127.975500px;}
.x4_c01075{left:129.599825px;}
.x5_c01075{left:184.659448px;}
.x12_c01075{left:206.856599px;}
.x2_c01075{left:207.923472px;}
.x27_c01075{left:208.977072px;}
.x8_c01075{left:214.738500px;}
.x30_c01075{left:222.480000px;}
.x3d_c01075{left:223.830000px;}
.x51_c01075{left:225.180000px;}
.x5f_c01075{left:227.880000px;}
.x6b_c01075{left:229.230000px;}
.x28_c01075{left:234.372026px;}
.x63_c01075{left:246.240000px;}
.x6_c01075{left:257.901000px;}
.x46_c01075{left:264.060000px;}
.x49_c01075{left:266.853000px;}
.x3_c01075{left:267.956379px;}
.x29_c01075{left:269.666049px;}
.x3e_c01075{left:271.350000px;}
.x31_c01075{left:274.860000px;}
.x3a_c01075{left:279.450000px;}
.x9_c01075{left:280.917000px;}
.x13_c01075{left:284.087034px;}
.x64_c01075{left:287.550000px;}
.x58_c01075{left:290.250000px;}
.x3f_c01075{left:293.490000px;}
.x1a_c01075{left:299.221166px;}
.x52_c01075{left:306.720000px;}
.x59_c01075{left:309.690000px;}
.x14_c01075{left:311.391060px;}
.x2a_c01075{left:318.057314px;}
.x4e_c01075{left:320.760000px;}
.x32_c01075{left:322.380000px;}
.x3b_c01075{left:326.430000px;}
.x40_c01075{left:329.400000px;}
.x60_c01075{left:330.750000px;}
.x22_c01075{left:336.366866px;}
.x53_c01075{left:338.040000px;}
.x65_c01075{left:341.550000px;}
.x1b_c01075{left:343.021839px;}
.x26_c01075{left:345.272060px;}
.x61_c01075{left:351.000000px;}
.x3c_c01075{left:353.430000px;}
.x41_c01075{left:356.400000px;}
.x66_c01075{left:363.420000px;}
.x33_c01075{left:365.310000px;}
.xa_c01075{left:371.548500px;}
.x54_c01075{left:373.410000px;}
.x15_c01075{left:379.726154px;}
.x5a_c01075{left:382.590000px;}
.x2c_c01075{left:388.495500px;}
.x6c_c01075{left:393.390000px;}
.x7_c01075{left:399.127500px;}
.x4a_c01075{left:401.089500px;}
.xb_c01075{left:406.107000px;}
.x67_c01075{left:407.970000px;}
.x42_c01075{left:409.320000px;}
.x34_c01075{left:414.180000px;}
.x55_c01075{left:415.530000px;}
.x2d_c01075{left:421.276686px;}
.x6d_c01075{left:425.790000px;}
.x5b_c01075{left:435.240000px;}
.x2e_c01075{left:438.596349px;}
.x4b_c01075{left:440.514000px;}
.x43_c01075{left:447.120000px;}
.xc_c01075{left:448.572000px;}
.x2b_c01075{left:451.032395px;}
.x47_c01075{left:453.330000px;}
.x35_c01075{left:455.760000px;}
.x68_c01075{left:460.620000px;}
.x44_c01075{left:465.210000px;}
.x4f_c01075{left:466.290000px;}
.xd_c01075{left:468.823500px;}
.x4c_c01075{left:472.051500px;}
.x1c_c01075{left:473.682831px;}
.x5c_c01075{left:475.740000px;}
.x23_c01075{left:478.137798px;}
.x36_c01075{left:485.190000px;}
.x2f_c01075{left:492.738652px;}
.x4d_c01075{left:495.052500px;}
.x6e_c01075{left:496.800000px;}
.x16_c01075{left:498.266657px;}
.x50_c01075{left:499.770000px;}
.x56_c01075{left:503.550000px;}
.x1d_c01075{left:506.091204px;}
.x69_c01075{left:507.600000px;}
.x37_c01075{left:518.400000px;}
.x5d_c01075{left:521.640000px;}
.xe_c01075{left:527.460000px;}
.x57_c01075{left:530.550000px;}
.x45_c01075{left:537.300000px;}
.x38_c01075{left:539.460000px;}
.x5e_c01075{left:542.160000px;}
.x25_c01075{left:552.734294px;}
.xf_c01075{left:556.318500px;}
.x62_c01075{left:560.250000px;}
.x48_c01075{left:564.030000px;}
.x17_c01075{left:568.746835px;}
.x24_c01075{left:569.961240px;}
.x1e_c01075{left:577.360865px;}
.x39_c01075{left:584.280000px;}
.x6a_c01075{left:587.520000px;}
.x1f_c01075{left:592.726580px;}
.x18_c01075{left:596.233890px;}
.x20_c01075{left:615.946152px;}
.x10_c01075{left:631.516500px;}
.x19_c01075{left:639.983043px;}
.x21_c01075{left:643.221639px;}
.x11_c01075{left:650.536500px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ws0_c01075{word-spacing:0.000000pt;}
.fs13_c01075{font-size:55.066667pt;}
.fs10_c01075{font-size:56.933333pt;}
.fsb_c01075{font-size:58.800000pt;}
.fs11_c01075{font-size:59.733333pt;}
.fse_c01075{font-size:60.666667pt;}
.fsc_c01075{font-size:62.533333pt;}
.fsd_c01075{font-size:65.333333pt;}
.fs6_c01075{font-size:66.278627pt;}
.fs15_c01075{font-size:70.000000pt;}
.fs7_c01075{font-size:71.879637pt;}
.fs14_c01075{font-size:72.800000pt;}
.fs3_c01075{font-size:72.810519pt;}
.fs9_c01075{font-size:72.813139pt;}
.fsf_c01075{font-size:75.600000pt;}
.fs5_c01075{font-size:77.480648pt;}
.fs0_c01075{font-size:78.369653pt;}
.fs12_c01075{font-size:79.333333pt;}
.fs1_c01075{font-size:84.900458pt;}
.fs4_c01075{font-size:88.682670pt;}
.fs8_c01075{font-size:89.616171pt;}
.fs2_c01075{font-size:93.297206pt;}
.fsa_c01075{font-size:114.840460pt;}
.y0_c01075{bottom:0.000000pt;}
.y4a_c01075{bottom:134.230667pt;}
.y49_c01075{bottom:154.753333pt;}
.y48_c01075{bottom:174.657333pt;}
.y47_c01075{bottom:194.524000pt;}
.y46_c01075{bottom:214.654667pt;}
.y45_c01075{bottom:234.708000pt;}
.y44_c01075{bottom:255.172000pt;}
.y43_c01075{bottom:275.416000pt;}
.y3b_c01075{bottom:293.280000pt;}
.y3c_c01075{bottom:293.658667pt;}
.y3d_c01075{bottom:293.892000pt;}
.y3e_c01075{bottom:294.333333pt;}
.y3f_c01075{bottom:294.852000pt;}
.y40_c01075{bottom:295.202667pt;}
.y41_c01075{bottom:295.482667pt;}
.y42_c01075{bottom:295.686667pt;}
.y3a_c01075{bottom:314.938667pt;}
.y39_c01075{bottom:339.086667pt;}
.y38_c01075{bottom:364.189333pt;}
.y37_c01075{bottom:389.466667pt;}
.y33_c01075{bottom:415.981333pt;}
.y34_c01075{bottom:417.498069pt;}
.y35_c01075{bottom:418.299424pt;}
.y36_c01075{bottom:420.804507pt;}
.y2e_c01075{bottom:455.259964pt;}
.y2f_c01075{bottom:455.620832pt;}
.y30_c01075{bottom:456.122208pt;}
.y31_c01075{bottom:456.810103pt;}
.y32_c01075{bottom:458.701109pt;}
.y2b_c01075{bottom:478.780741pt;}
.y2c_c01075{bottom:480.003267pt;}
.y2d_c01075{bottom:481.182480pt;}
.y29_c01075{bottom:502.065881pt;}
.y2a_c01075{bottom:505.749767pt;}
.y25_c01075{bottom:525.348392pt;}
.y26_c01075{bottom:526.381659pt;}
.y27_c01075{bottom:527.515557pt;}
.y28_c01075{bottom:528.250059pt;}
.y1b_c01075{bottom:548.396761pt;}
.y1c_c01075{bottom:550.029736pt;}
.y1d_c01075{bottom:550.808161pt;}
.y1e_c01075{bottom:551.304163pt;}
.y1f_c01075{bottom:553.132256pt;}
.y20_c01075{bottom:553.708941pt;}
.y21_c01075{bottom:554.975296pt;}
.y22_c01075{bottom:555.248144pt;}
.y23_c01075{bottom:555.660304pt;}
.y24_c01075{bottom:556.144965pt;}
.y13_c01075{bottom:570.960584pt;}
.y14_c01075{bottom:572.127537pt;}
.y15_c01075{bottom:572.540655pt;}
.y16_c01075{bottom:573.573381pt;}
.y17_c01075{bottom:575.364656pt;}
.y18_c01075{bottom:576.429609pt;}
.y19_c01075{bottom:576.844484pt;}
.y1a_c01075{bottom:577.505997pt;}
.y8_c01075{bottom:593.285333pt;}
.y9_c01075{bottom:593.796560pt;}
.ya_c01075{bottom:594.914241pt;}
.yb_c01075{bottom:596.444907pt;}
.yc_c01075{bottom:597.028561pt;}
.yd_c01075{bottom:597.745748pt;}
.ye_c01075{bottom:598.087773pt;}
.yf_c01075{bottom:599.078079pt;}
.y10_c01075{bottom:599.565467pt;}
.y11_c01075{bottom:600.835477pt;}
.y12_c01075{bottom:601.156704pt;}
.y6_c01075{bottom:636.245333pt;}
.y7_c01075{bottom:638.379423pt;}
.y5_c01075{bottom:754.813076pt;}
.y4_c01075{bottom:785.041620pt;}
.y1_c01075{bottom:795.153333pt;}
.y2_c01075{bottom:797.643093pt;}
.y3_c01075{bottom:799.512653pt;}
.h15_c01075{height:55.066667pt;}
.h12_c01075{height:56.933333pt;}
.hd_c01075{height:58.800000pt;}
.h13_c01075{height:59.733333pt;}
.h10_c01075{height:60.666667pt;}
.he_c01075{height:62.533333pt;}
.hf_c01075{height:65.333333pt;}
.h8_c01075{height:66.278627pt;}
.h17_c01075{height:70.000000pt;}
.h9_c01075{height:71.879637pt;}
.h16_c01075{height:72.800000pt;}
.h5_c01075{height:72.810519pt;}
.hb_c01075{height:72.813139pt;}
.h11_c01075{height:75.600000pt;}
.h7_c01075{height:77.480648pt;}
.h2_c01075{height:78.369653pt;}
.h14_c01075{height:79.333333pt;}
.h3_c01075{height:84.900458pt;}
.h6_c01075{height:88.682670pt;}
.ha_c01075{height:89.616171pt;}
.h4_c01075{height:93.297206pt;}
.hc_c01075{height:114.840460pt;}
.h0_c01075{height:896.400000pt;}
.h1_c01075{height:896.666667pt;}
.w1_c01075{width:688.000000pt;}
.w0_c01075{width:688.080000pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:113.756000pt;}
.x4_c01075{left:115.199844pt;}
.x5_c01075{left:164.141732pt;}
.x12_c01075{left:183.872532pt;}
.x2_c01075{left:184.820864pt;}
.x27_c01075{left:185.757397pt;}
.x8_c01075{left:190.878667pt;}
.x30_c01075{left:197.760000pt;}
.x3d_c01075{left:198.960000pt;}
.x51_c01075{left:200.160000pt;}
.x5f_c01075{left:202.560000pt;}
.x6b_c01075{left:203.760000pt;}
.x28_c01075{left:208.330689pt;}
.x63_c01075{left:218.880000pt;}
.x6_c01075{left:229.245333pt;}
.x46_c01075{left:234.720000pt;}
.x49_c01075{left:237.202667pt;}
.x3_c01075{left:238.183448pt;}
.x29_c01075{left:239.703155pt;}
.x3e_c01075{left:241.200000pt;}
.x31_c01075{left:244.320000pt;}
.x3a_c01075{left:248.400000pt;}
.x9_c01075{left:249.704000pt;}
.x13_c01075{left:252.521808pt;}
.x64_c01075{left:255.600000pt;}
.x58_c01075{left:258.000000pt;}
.x3f_c01075{left:260.880000pt;}
.x1a_c01075{left:265.974369pt;}
.x52_c01075{left:272.640000pt;}
.x59_c01075{left:275.280000pt;}
.x14_c01075{left:276.792053pt;}
.x2a_c01075{left:282.717612pt;}
.x4e_c01075{left:285.120000pt;}
.x32_c01075{left:286.560000pt;}
.x3b_c01075{left:290.160000pt;}
.x40_c01075{left:292.800000pt;}
.x60_c01075{left:294.000000pt;}
.x22_c01075{left:298.992769pt;}
.x53_c01075{left:300.480000pt;}
.x65_c01075{left:303.600000pt;}
.x1b_c01075{left:304.908301pt;}
.x26_c01075{left:306.908497pt;}
.x61_c01075{left:312.000000pt;}
.x3c_c01075{left:314.160000pt;}
.x41_c01075{left:316.800000pt;}
.x66_c01075{left:323.040000pt;}
.x33_c01075{left:324.720000pt;}
.xa_c01075{left:330.265333pt;}
.x54_c01075{left:331.920000pt;}
.x15_c01075{left:337.534359pt;}
.x5a_c01075{left:340.080000pt;}
.x2c_c01075{left:345.329333pt;}
.x6c_c01075{left:349.680000pt;}
.x7_c01075{left:354.780000pt;}
.x4a_c01075{left:356.524000pt;}
.xb_c01075{left:360.984000pt;}
.x67_c01075{left:362.640000pt;}
.x42_c01075{left:363.840000pt;}
.x34_c01075{left:368.160000pt;}
.x55_c01075{left:369.360000pt;}
.x2d_c01075{left:374.468165pt;}
.x6d_c01075{left:378.480000pt;}
.x5b_c01075{left:386.880000pt;}
.x2e_c01075{left:389.863421pt;}
.x4b_c01075{left:391.568000pt;}
.x43_c01075{left:397.440000pt;}
.xc_c01075{left:398.730667pt;}
.x2b_c01075{left:400.917684pt;}
.x47_c01075{left:402.960000pt;}
.x35_c01075{left:405.120000pt;}
.x68_c01075{left:409.440000pt;}
.x44_c01075{left:413.520000pt;}
.x4f_c01075{left:414.480000pt;}
.xd_c01075{left:416.732000pt;}
.x4c_c01075{left:419.601333pt;}
.x1c_c01075{left:421.051405pt;}
.x5c_c01075{left:422.880000pt;}
.x23_c01075{left:425.011376pt;}
.x36_c01075{left:431.280000pt;}
.x2f_c01075{left:437.989913pt;}
.x4d_c01075{left:440.046667pt;}
.x6e_c01075{left:441.600000pt;}
.x16_c01075{left:442.903695pt;}
.x50_c01075{left:444.240000pt;}
.x56_c01075{left:447.600000pt;}
.x1d_c01075{left:449.858848pt;}
.x69_c01075{left:451.200000pt;}
.x37_c01075{left:460.800000pt;}
.x5d_c01075{left:463.680000pt;}
.xe_c01075{left:468.853333pt;}
.x57_c01075{left:471.600000pt;}
.x45_c01075{left:477.600000pt;}
.x38_c01075{left:479.520000pt;}
.x5e_c01075{left:481.920000pt;}
.x25_c01075{left:491.319372pt;}
.xf_c01075{left:494.505333pt;}
.x62_c01075{left:498.000000pt;}
.x48_c01075{left:501.360000pt;}
.x17_c01075{left:505.552743pt;}
.x24_c01075{left:506.632213pt;}
.x1e_c01075{left:513.209657pt;}
.x39_c01075{left:519.360000pt;}
.x6a_c01075{left:522.240000pt;}
.x1f_c01075{left:526.868071pt;}
.x18_c01075{left:529.985680pt;}
.x20_c01075{left:547.507691pt;}
.x10_c01075{left:561.348000pt;}
.x19_c01075{left:568.873816pt;}
.x21_c01075{left:571.752568pt;}
.x11_c01075{left:578.254667pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.000000;font-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_c01076{transform:matrix(0.005555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005555,0.000000,0.000000,0.250000,0,0);}
.m61_c01076{transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009035,0.000000,0.000000,0.250000,0,0);}
.m64_c01076{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);}
.md4_c01076{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);}
.m51_c01076{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);}
.m79_c01076{transform:matrix(0.011245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011245,0.000000,0.000000,0.250000,0,0);}
.m23_c01076{transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);}
.m1c_c01076{transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011960,0.000000,0.000000,0.250000,0,0);}
.mbc_c01076{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);}
.m77_c01076{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);}
.m12_c01076{transform:matrix(0.012698,-0.000216,0.004249,0.249964,0,0);-ms-transform:matrix(0.012698,-0.000216,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012698,-0.000216,0.004249,0.249964,0,0);}
.m94_c01076{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);}
.m53_c01076{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);}
.mcf_c01076{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);}
.md3_c01076{transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016665,0.000000,0.000000,0.250000,0,0);}
.mde_c01076{transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017855,0.000000,0.000000,0.250000,0,0);}
.m87_c01076{transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022720,0.000000,0.000000,0.250000,0,0);}
.m5f_c01076{transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025745,0.000000,0.000000,0.250000,0,0);}
.mc8_c01076{transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030430,0.000000,0.000000,0.250000,0,0);}
.mcc_c01076{transform:matrix(0.075245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075245,0.000000,0.000000,0.250000,0,0);}
.m22_c01076{transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081595,0.000000,0.000000,0.250000,0,0);}
.m82_c01076{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);}
.m46_c01076{transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096865,0.000000,0.000000,0.250000,0,0);}
.md7_c01076{transform:matrix(0.113670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113670,0.000000,0.000000,0.250000,0,0);}
.m25_c01076{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);}
.m10_c01076{transform:matrix(0.134166,-0.002281,0.004249,0.249964,0,0);-ms-transform:matrix(0.134166,-0.002281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.134166,-0.002281,0.004249,0.249964,0,0);}
.me_c01076{transform:matrix(0.136530,-0.002321,0.004249,0.249964,0,0);-ms-transform:matrix(0.136530,-0.002321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.136530,-0.002321,0.004249,0.249964,0,0);}
.m90_c01076{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);}
.m9b_c01076{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);}
.m27_c01076{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);}
.ma2_c01076{transform:matrix(0.153165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153165,0.000000,0.000000,0.250000,0,0);}
.m9c_c01076{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);}
.m33_c01076{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);}
.m8d_c01076{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);}
.m6a_c01076{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);}
.mc2_c01076{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);}
.ma3_c01076{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);}
.m98_c01076{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);}
.m7e_c01076{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);}
.m4a_c01076{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);}
.m19_c01076{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);}
.md9_c01076{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);}
.mc_c01076{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);}
.mb3_c01076{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);}
.mb5_c01076{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);}
.m1a_c01076{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);}
.mb_c01076{transform:matrix(0.171420,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171420,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171420,-0.002914,0.004249,0.249964,0,0);}
.mba_c01076{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);}
.mc1_c01076{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);}
.m3a_c01076{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);}
.m8b_c01076{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);}
.m86_c01076{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);}
.ma6_c01076{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);}
.m4d_c01076{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);}
.mda_c01076{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);}
.m28_c01076{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);}
.mbe_c01076{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);}
.m81_c01076{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);}
.m5b_c01076{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);}
.m7f_c01076{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);}
.mdb_c01076{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);}
.m8e_c01076{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);}
.ma8_c01076{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);}
.m4c_c01076{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);}
.m69_c01076{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);}
.m2f_c01076{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);}
.m9e_c01076{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m9d_c01076{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);}
.m91_c01076{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);}
.m47_c01076{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);}
.md_c01076{transform:matrix(0.184358,-0.003134,0.004249,0.249964,0,0);-ms-transform:matrix(0.184358,-0.003134,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184358,-0.003134,0.004249,0.249964,0,0);}
.m11_c01076{transform:matrix(0.184658,-0.003139,0.004249,0.249964,0,0);-ms-transform:matrix(0.184658,-0.003139,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184658,-0.003139,0.004249,0.249964,0,0);}
.mc0_c01076{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);}
.m24_c01076{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);}
.m85_c01076{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);}
.m8f_c01076{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);}
.m9a_c01076{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);}
.mf_c01076{transform:matrix(0.188328,-0.003202,0.004249,0.249964,0,0);-ms-transform:matrix(0.188328,-0.003202,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188328,-0.003202,0.004249,0.249964,0,0);}
.m32_c01076{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);}
.m50_c01076{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);}
.mac_c01076{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);}
.m8c_c01076{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);}
.m99_c01076{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);}
.m80_c01076{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);}
.maa_c01076{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);}
.maf_c01076{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);}
.mab_c01076{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);}
.mcb_c01076{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);}
.m18_c01076{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);}
.mbf_c01076{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);}
.mdc_c01076{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);}
.m43_c01076{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);}
.m84_c01076{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);}
.m38_c01076{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);}
.md2_c01076{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);}
.ma9_c01076{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);}
.m39_c01076{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);}
.m45_c01076{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);}
.mad_c01076{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);}
.m4b_c01076{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);}
.ma7_c01076{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);}
.mae_c01076{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);}
.md1_c01076{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);}
.m1b_c01076{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);}
.m26_c01076{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);}
.m20_c01076{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);}
.m4f_c01076{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);}
.m2e_c01076{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);}
.m1f_c01076{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);}
.mb8_c01076{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);}
.ma_c01076{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);}
.m17_c01076{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);}
.m30_c01076{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);}
.md5_c01076{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);}
.m37_c01076{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);}
.m96_c01076{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);}
.mb6_c01076{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);}
.m5c_c01076{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);}
.m8a_c01076{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);}
.mca_c01076{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);}
.mb7_c01076{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);}
.mb4_c01076{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);}
.me0_c01076{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);}
.m4e_c01076{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);}
.m14_c01076{transform:matrix(0.220093,-0.003742,0.004249,0.249964,0,0);-ms-transform:matrix(0.220093,-0.003742,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220093,-0.003742,0.004249,0.249964,0,0);}
.m73_c01076{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);}
.m5e_c01076{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);}
.mb2_c01076{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);}
.m71_c01076{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m56_c01076{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);}
.m2d_c01076{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);}
.mb9_c01076{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);}
.ma4_c01076{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);}
.m7a_c01076{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);}
.m34_c01076{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);}
.m7c_c01076{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);}
.m2b_c01076{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);}
.m2a_c01076{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m5a_c01076{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m83_c01076{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);}
.mc9_c01076{transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259925,0.000000,0.000000,0.250000,0,0);}
.m6e_c01076{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);}
.m7b_c01076{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);}
.mc3_c01076{transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265490,0.000000,0.000000,0.250000,0,0);}
.m49_c01076{transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274185,0.000000,0.000000,0.250000,0,0);}
.m4_c01076{transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);}
.m72_c01076{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);}
.m95_c01076{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);}
.m6f_c01076{transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);}
.md8_c01076{transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);}
.m9f_c01076{transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286375,0.000000,0.000000,0.250000,0,0);}
.m58_c01076{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m16_c01076{transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);}
.m60_c01076{transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297095,0.000000,0.000000,0.250000,0,0);}
.m78_c01076{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);}
.m70_c01076{transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306760,0.000000,0.000000,0.250000,0,0);}
.m6c_c01076{transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309275,0.000000,0.000000,0.250000,0,0);}
.m97_c01076{transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309485,0.000000,0.000000,0.250000,0,0);}
.ma1_c01076{transform:matrix(0.310535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310535,0.000000,0.000000,0.250000,0,0);}
.m35_c01076{transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);}
.m41_c01076{transform:matrix(0.320035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320035,0.000000,0.000000,0.250000,0,0);}
.m59_c01076{transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321830,0.000000,0.000000,0.250000,0,0);}
.m6d_c01076{transform:matrix(0.328575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328575,0.000000,0.000000,0.250000,0,0);}
.m6_c01076{transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329355,0.000000,0.000000,0.250000,0,0);}
.m92_c01076{transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329750,0.000000,0.000000,0.250000,0,0);}
.m66_c01076{transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331910,0.000000,0.000000,0.250000,0,0);}
.mc7_c01076{transform:matrix(0.340805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340805,0.000000,0.000000,0.250000,0,0);}
.mc4_c01076{transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342180,0.000000,0.000000,0.250000,0,0);}
.m44_c01076{transform:matrix(0.344265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344265,0.000000,0.000000,0.250000,0,0);}
.m1_c01076{transform:matrix(0.353425,-0.010956,0.007746,0.249880,0,0);-ms-transform:matrix(0.353425,-0.010956,0.007746,0.249880,0,0);-webkit-transform:matrix(0.353425,-0.010956,0.007746,0.249880,0,0);}
.md0_c01076{transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357135,0.000000,0.000000,0.250000,0,0);}
.m3_c01076{transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359060,0.000000,0.000000,0.250000,0,0);}
.m3f_c01076{transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01076{transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361705,0.000000,0.000000,0.250000,0,0);}
.m3e_c01076{transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371445,0.000000,0.000000,0.250000,0,0);}
.m1d_c01076{transform:matrix(0.375665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375665,0.000000,0.000000,0.250000,0,0);}
.m7_c01076{transform:matrix(0.377382,-0.006038,0.003999,0.249968,0,0);-ms-transform:matrix(0.377382,-0.006038,0.003999,0.249968,0,0);-webkit-transform:matrix(0.377382,-0.006038,0.003999,0.249968,0,0);}
.m3d_c01076{transform:matrix(0.379860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379860,0.000000,0.000000,0.250000,0,0);}
.m15_c01076{transform:matrix(0.388605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388605,0.000000,0.000000,0.250000,0,0);}
.md6_c01076{transform:matrix(0.390895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390895,0.000000,0.000000,0.250000,0,0);}
.m54_c01076{transform:matrix(0.396520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396520,0.000000,0.000000,0.250000,0,0);}
.m5_c01076{transform:matrix(0.399085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399085,0.000000,0.000000,0.250000,0,0);}
.m55_c01076{transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);}
.m3c_c01076{transform:matrix(0.407930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407930,0.000000,0.000000,0.250000,0,0);}
.m8_c01076{transform:matrix(0.410717,-0.006571,0.003999,0.249968,0,0);-ms-transform:matrix(0.410717,-0.006571,0.003999,0.249968,0,0);-webkit-transform:matrix(0.410717,-0.006571,0.003999,0.249968,0,0);}
.m62_c01076{transform:matrix(0.413370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413370,0.000000,0.000000,0.250000,0,0);}
.m29_c01076{transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);}
.m6b_c01076{transform:matrix(0.416650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416650,0.000000,0.000000,0.250000,0,0);}
.m48_c01076{transform:matrix(0.419025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419025,0.000000,0.000000,0.250000,0,0);}
.ma5_c01076{transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423535,0.000000,0.000000,0.250000,0,0);}
.me2_c01076{transform:matrix(0.436505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436505,0.000000,0.000000,0.250000,0,0);}
.m0_c01076{transform:matrix(0.441093,-0.013674,0.007746,0.249880,0,0);-ms-transform:matrix(0.441093,-0.013674,0.007746,0.249880,0,0);-webkit-transform:matrix(0.441093,-0.013674,0.007746,0.249880,0,0);}
.mc6_c01076{transform:matrix(0.441280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441280,0.000000,0.000000,0.250000,0,0);}
.m68_c01076{transform:matrix(0.443100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443100,0.000000,0.000000,0.250000,0,0);}
.m36_c01076{transform:matrix(0.447695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447695,0.000000,0.000000,0.250000,0,0);}
.m3b_c01076{transform:matrix(0.448765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448765,0.000000,0.000000,0.250000,0,0);}
.m76_c01076{transform:matrix(0.457110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457110,0.000000,0.000000,0.250000,0,0);}
.m42_c01076{transform:matrix(0.460725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460725,0.000000,0.000000,0.250000,0,0);}
.m1e_c01076{transform:matrix(0.464590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464590,0.000000,0.000000,0.250000,0,0);}
.m89_c01076{transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466770,0.000000,0.000000,0.250000,0,0);}
.m52_c01076{transform:matrix(0.468495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468495,0.000000,0.000000,0.250000,0,0);}
.mb1_c01076{transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474165,0.000000,0.000000,0.250000,0,0);}
.m67_c01076{transform:matrix(0.492350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492350,0.000000,0.000000,0.250000,0,0);}
.mcd_c01076{transform:matrix(0.496350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496350,0.000000,0.000000,0.250000,0,0);}
.m2_c01076{transform:matrix(0.499870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499870,0.000000,0.000000,0.250000,0,0);}
.mdf_c01076{transform:matrix(0.524425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524425,0.000000,0.000000,0.250000,0,0);}
.mbb_c01076{transform:matrix(0.530185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530185,0.000000,0.000000,0.250000,0,0);}
.m93_c01076{transform:matrix(0.563260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563260,0.000000,0.000000,0.250000,0,0);}
.m31_c01076{transform:matrix(0.572665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572665,0.000000,0.000000,0.250000,0,0);}
.m9_c01076{transform:matrix(0.576501,-0.009224,0.003999,0.249968,0,0);-ms-transform:matrix(0.576501,-0.009224,0.003999,0.249968,0,0);-webkit-transform:matrix(0.576501,-0.009224,0.003999,0.249968,0,0);}
.m74_c01076{transform:matrix(0.581060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581060,0.000000,0.000000,0.250000,0,0);}
.m65_c01076{transform:matrix(0.613855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613855,0.000000,0.000000,0.250000,0,0);}
.m2c_c01076{transform:matrix(0.621735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621735,0.000000,0.000000,0.250000,0,0);}
.ma0_c01076{transform:matrix(0.641750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641750,0.000000,0.000000,0.250000,0,0);}
.m21_c01076{transform:matrix(0.761315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761315,0.000000,0.000000,0.250000,0,0);}
.mdd_c01076{transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);}
.mce_c01076{transform:matrix(0.814470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814470,0.000000,0.000000,0.250000,0,0);}
.mb0_c01076{transform:matrix(0.815285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815285,0.000000,0.000000,0.250000,0,0);}
.mbd_c01076{transform:matrix(0.823865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823865,0.000000,0.000000,0.250000,0,0);}
.m40_c01076{transform:matrix(0.833250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.833250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.833250,0.000000,0.000000,0.250000,0,0);}
.mc5_c01076{transform:matrix(0.893710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893710,0.000000,0.000000,0.250000,0,0);}
.m75_c01076{transform:matrix(0.904050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.904050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.904050,0.000000,0.000000,0.250000,0,0);}
.m7d_c01076{transform:matrix(0.914755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914755,0.000000,0.000000,0.250000,0,0);}
.m88_c01076{transform:matrix(0.951360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.951360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.951360,0.000000,0.000000,0.250000,0,0);}
.m57_c01076{transform:matrix(0.954055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954055,0.000000,0.000000,0.250000,0,0);}
.m13_c01076{transform:matrix(1.090257,-0.018534,0.004249,0.249964,0,0);-ms-transform:matrix(1.090257,-0.018534,0.004249,0.249964,0,0);-webkit-transform:matrix(1.090257,-0.018534,0.004249,0.249964,0,0);}
.me1_c01076{transform:matrix(7.575380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.575380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.575380,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls0_c01076{letter-spacing:0.000000px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:0.000000px;}
.fc0_c01076{color:transparent;}
.fs13_c01076{font-size:26.250000px;}
.fs12_c01076{font-size:63.000000px;}
.fsb_c01076{font-size:65.100000px;}
.fsc_c01076{font-size:67.200000px;}
.fsa_c01076{font-size:68.250000px;}
.fs9_c01076{font-size:69.300000px;}
.fs7_c01076{font-size:70.350000px;}
.fs6_c01076{font-size:71.400000px;}
.fs5_c01076{font-size:72.450000px;}
.fse_c01076{font-size:75.600000px;}
.fs2_c01076{font-size:75.609676px;}
.fs3_c01076{font-size:76.661075px;}
.fs4_c01076{font-size:78.761379px;}
.fs1_c01076{font-size:92.400000px;}
.fsd_c01076{font-size:94.500000px;}
.fs11_c01076{font-size:95.550000px;}
.fsf_c01076{font-size:101.850000px;}
.fs10_c01076{font-size:105.000000px;}
.fs8_c01076{font-size:108.150000px;}
.fs0_c01076{font-size:224.807942px;}
.y0_c01076{bottom:0.000000px;}
.yd0_c01076{bottom:163.894500px;}
.yd1_c01076{bottom:166.000500px;}
.yd2_c01076{bottom:168.741000px;}
.yd3_c01076{bottom:169.827000px;}
.yd4_c01076{bottom:170.320500px;}
.yd5_c01076{bottom:171.195000px;}
.yd6_c01076{bottom:172.159500px;}
.yd7_c01076{bottom:175.590000px;}
.yd8_c01076{bottom:176.316000px;}
.yc8_c01076{bottom:186.849000px;}
.yc9_c01076{bottom:190.338000px;}
.yca_c01076{bottom:190.756500px;}
.ycb_c01076{bottom:192.802500px;}
.ycc_c01076{bottom:193.152000px;}
.ycd_c01076{bottom:194.361000px;}
.yce_c01076{bottom:195.618000px;}
.ycf_c01076{bottom:197.671500px;}
.yc1_c01076{bottom:209.523000px;}
.yc2_c01076{bottom:210.802500px;}
.yc3_c01076{bottom:211.186500px;}
.yc4_c01076{bottom:212.233500px;}
.yc5_c01076{bottom:214.269000px;}
.yc6_c01076{bottom:217.189500px;}
.yc7_c01076{bottom:220.533000px;}
.yb7_c01076{bottom:232.479000px;}
.yb8_c01076{bottom:234.013500px;}
.yb9_c01076{bottom:234.991500px;}
.yba_c01076{bottom:235.263000px;}
.ybb_c01076{bottom:236.038500px;}
.ybc_c01076{bottom:237.658500px;}
.ybd_c01076{bottom:238.039500px;}
.ybe_c01076{bottom:238.480500px;}
.ybf_c01076{bottom:239.779500px;}
.yc0_c01076{bottom:241.953000px;}
.yab_c01076{bottom:254.883000px;}
.yac_c01076{bottom:256.342500px;}
.yad_c01076{bottom:257.101500px;}
.yae_c01076{bottom:257.409000px;}
.yaf_c01076{bottom:258.322500px;}
.yb0_c01076{bottom:258.952500px;}
.yb1_c01076{bottom:259.876500px;}
.yb2_c01076{bottom:261.934500px;}
.yb3_c01076{bottom:263.073000px;}
.yb4_c01076{bottom:263.832000px;}
.yb5_c01076{bottom:265.257000px;}
.yb6_c01076{bottom:265.953000px;}
.y9f_c01076{bottom:277.276500px;}
.ya0_c01076{bottom:279.115500px;}
.ya1_c01076{bottom:279.844500px;}
.ya2_c01076{bottom:280.665000px;}
.ya3_c01076{bottom:281.334000px;}
.ya4_c01076{bottom:281.577000px;}
.ya5_c01076{bottom:282.796500px;}
.ya6_c01076{bottom:283.264500px;}
.ya7_c01076{bottom:284.086500px;}
.ya8_c01076{bottom:285.003000px;}
.ya9_c01076{bottom:285.820500px;}
.yaa_c01076{bottom:288.499500px;}
.y9a_c01076{bottom:299.982000px;}
.y9b_c01076{bottom:303.978000px;}
.y9c_c01076{bottom:306.634500px;}
.y9d_c01076{bottom:307.074000px;}
.y9e_c01076{bottom:311.215500px;}
.y91_c01076{bottom:322.926000px;}
.y92_c01076{bottom:324.633000px;}
.y93_c01076{bottom:325.018500px;}
.y94_c01076{bottom:326.065500px;}
.y95_c01076{bottom:327.085500px;}
.y96_c01076{bottom:327.414000px;}
.y97_c01076{bottom:327.906000px;}
.y98_c01076{bottom:328.938000px;}
.y99_c01076{bottom:333.570000px;}
.y8d_c01076{bottom:345.606000px;}
.y8e_c01076{bottom:347.923500px;}
.y8f_c01076{bottom:349.366500px;}
.y90_c01076{bottom:354.589500px;}
.y83_c01076{bottom:369.885000px;}
.y84_c01076{bottom:371.098500px;}
.y85_c01076{bottom:371.500500px;}
.y86_c01076{bottom:372.324000px;}
.y87_c01076{bottom:372.861000px;}
.y88_c01076{bottom:373.203000px;}
.y89_c01076{bottom:374.028000px;}
.y8a_c01076{bottom:374.701500px;}
.y8b_c01076{bottom:375.172500px;}
.y8c_c01076{bottom:378.625500px;}
.y77_c01076{bottom:391.783500px;}
.y78_c01076{bottom:393.471000px;}
.y79_c01076{bottom:393.850500px;}
.y7a_c01076{bottom:394.635000px;}
.y7b_c01076{bottom:395.137500px;}
.y7c_c01076{bottom:396.027000px;}
.y7d_c01076{bottom:396.286500px;}
.y7e_c01076{bottom:396.681000px;}
.y7f_c01076{bottom:397.116000px;}
.y80_c01076{bottom:398.010000px;}
.y81_c01076{bottom:399.711000px;}
.y82_c01076{bottom:402.439500px;}
.y72_c01076{bottom:414.994500px;}
.y73_c01076{bottom:417.610500px;}
.y74_c01076{bottom:418.930500px;}
.y75_c01076{bottom:419.904000px;}
.y76_c01076{bottom:424.774500px;}
.y66_c01076{bottom:432.282000px;}
.y67_c01076{bottom:434.905500px;}
.y68_c01076{bottom:435.991500px;}
.y69_c01076{bottom:437.397000px;}
.y6a_c01076{bottom:437.518500px;}
.y6b_c01076{bottom:438.709500px;}
.y6c_c01076{bottom:439.672500px;}
.y6d_c01076{bottom:440.664000px;}
.y6e_c01076{bottom:442.675500px;}
.y6f_c01076{bottom:444.565500px;}
.y70_c01076{bottom:448.573500px;}
.y71_c01076{bottom:449.550000px;}
.y60_c01076{bottom:481.144500px;}
.y61_c01076{bottom:486.981000px;}
.y62_c01076{bottom:488.145000px;}
.y63_c01076{bottom:489.057000px;}
.y64_c01076{bottom:489.843000px;}
.y65_c01076{bottom:491.770500px;}
.y5a_c01076{bottom:505.443000px;}
.y5b_c01076{bottom:508.758000px;}
.y5c_c01076{bottom:509.256000px;}
.y5d_c01076{bottom:512.466000px;}
.y5e_c01076{bottom:514.185000px;}
.y5f_c01076{bottom:515.140500px;}
.y52_c01076{bottom:528.393000px;}
.y53_c01076{bottom:528.955500px;}
.y54_c01076{bottom:530.314500px;}
.y55_c01076{bottom:531.891000px;}
.y56_c01076{bottom:532.771500px;}
.y57_c01076{bottom:534.069000px;}
.y58_c01076{bottom:539.038500px;}
.y59_c01076{bottom:539.391000px;}
.y4e_c01076{bottom:553.231500px;}
.y4f_c01076{bottom:556.101000px;}
.y50_c01076{bottom:558.009000px;}
.y51_c01076{bottom:561.072000px;}
.y43_c01076{bottom:574.291500px;}
.y44_c01076{bottom:575.709000px;}
.y45_c01076{bottom:576.466500px;}
.y46_c01076{bottom:577.161000px;}
.y47_c01076{bottom:578.395500px;}
.y48_c01076{bottom:579.126000px;}
.y49_c01076{bottom:579.588000px;}
.y4a_c01076{bottom:580.150500px;}
.y4b_c01076{bottom:582.912000px;}
.y4c_c01076{bottom:583.474500px;}
.y4d_c01076{bottom:583.993500px;}
.y3f_c01076{bottom:601.209000px;}
.y40_c01076{bottom:602.374500px;}
.y41_c01076{bottom:602.676000px;}
.y42_c01076{bottom:607.519500px;}
.y37_c01076{bottom:622.354500px;}
.y38_c01076{bottom:623.125500px;}
.y39_c01076{bottom:624.079500px;}
.y3a_c01076{bottom:625.140000px;}
.y3b_c01076{bottom:626.524500px;}
.y3c_c01076{bottom:626.868000px;}
.y3d_c01076{bottom:628.035000px;}
.y3e_c01076{bottom:629.872500px;}
.y32_c01076{bottom:644.496000px;}
.y33_c01076{bottom:645.618000px;}
.y34_c01076{bottom:646.045500px;}
.y35_c01076{bottom:648.640500px;}
.y36_c01076{bottom:653.463000px;}
.y27_c01076{bottom:666.634500px;}
.y28_c01076{bottom:667.711500px;}
.y29_c01076{bottom:668.578500px;}
.y2a_c01076{bottom:669.190500px;}
.y2b_c01076{bottom:669.574500px;}
.y2c_c01076{bottom:670.432500px;}
.y2d_c01076{bottom:671.035500px;}
.y2e_c01076{bottom:671.433000px;}
.y2f_c01076{bottom:671.907000px;}
.y30_c01076{bottom:673.713000px;}
.y31_c01076{bottom:674.094000px;}
.y26_c01076{bottom:692.874000px;}
.y1e_c01076{bottom:711.067500px;}
.y1f_c01076{bottom:714.022500px;}
.y20_c01076{bottom:714.577500px;}
.y21_c01076{bottom:715.528500px;}
.y22_c01076{bottom:715.782000px;}
.y23_c01076{bottom:717.015000px;}
.y24_c01076{bottom:717.540000px;}
.y25_c01076{bottom:720.465000px;}
.y1a_c01076{bottom:735.486000px;}
.y1b_c01076{bottom:738.133500px;}
.y1c_c01076{bottom:738.498000px;}
.y1d_c01076{bottom:742.467000px;}
.y13_c01076{bottom:757.624500px;}
.y14_c01076{bottom:758.071500px;}
.y15_c01076{bottom:758.917500px;}
.y16_c01076{bottom:759.672000px;}
.y17_c01076{bottom:760.159500px;}
.y18_c01076{bottom:763.924500px;}
.y19_c01076{bottom:766.551000px;}
.y12_c01076{bottom:783.114000px;}
.y7_c01076{bottom:802.714500px;}
.y8_c01076{bottom:803.347436px;}
.y9_c01076{bottom:803.793609px;}
.ya_c01076{bottom:804.761870px;}
.yb_c01076{bottom:805.432137px;}
.y11_c01076{bottom:805.548114px;}
.yc_c01076{bottom:806.015296px;}
.yd_c01076{bottom:806.592234px;}
.ye_c01076{bottom:806.951606px;}
.yf_c01076{bottom:809.541997px;}
.y10_c01076{bottom:810.685698px;}
.y4_c01076{bottom:827.287500px;}
.y5_c01076{bottom:828.069588px;}
.y6_c01076{bottom:829.667988px;}
.y3_c01076{bottom:870.804000px;}
.y1_c01076{bottom:908.232000px;}
.y2_c01076{bottom:914.051987px;}
.h15_c01076{height:26.250000px;}
.h14_c01076{height:63.000000px;}
.hd_c01076{height:65.100000px;}
.he_c01076{height:67.200000px;}
.hc_c01076{height:68.250000px;}
.hb_c01076{height:69.300000px;}
.h9_c01076{height:70.350000px;}
.h8_c01076{height:71.400000px;}
.h7_c01076{height:72.450000px;}
.h10_c01076{height:75.600000px;}
.h4_c01076{height:75.609676px;}
.h5_c01076{height:76.661075px;}
.h6_c01076{height:78.761379px;}
.h3_c01076{height:92.400000px;}
.hf_c01076{height:94.500000px;}
.h13_c01076{height:95.550000px;}
.h11_c01076{height:101.850000px;}
.h12_c01076{height:105.000000px;}
.ha_c01076{height:108.150000px;}
.h2_c01076{height:224.807942px;}
.h1_c01076{height:1005.000000px;}
.h0_c01076{height:1005.150000px;}
.w1_c01076{width:762.750000px;}
.w0_c01076{width:763.020000px;}
.x0_c01076{left:0.000000px;}
.x96_c01076{left:5.400000px;}
.x4c_c01076{left:38.010000px;}
.x51_c01076{left:47.295000px;}
.x1_c01076{left:51.520500px;}
.x41_c01076{left:55.507500px;}
.x56_c01076{left:57.586500px;}
.x6c_c01076{left:59.200500px;}
.x7f_c01076{left:61.702500px;}
.x88_c01076{left:63.238500px;}
.x4d_c01076{left:69.292500px;}
.x65_c01076{left:72.889500px;}
.x79_c01076{left:74.080500px;}
.x21_c01076{left:119.830500px;}
.x84_c01076{left:132.564000px;}
.xa_c01076{left:141.714000px;}
.x2a_c01076{left:143.034000px;}
.x42_c01076{left:144.139500px;}
.x5a_c01076{left:147.909000px;}
.x6d_c01076{left:149.022000px;}
.x73_c01076{left:150.933000px;}
.x80_c01076{left:151.974000px;}
.x90_c01076{left:164.061000px;}
.x17_c01076{left:165.508500px;}
.x61_c01076{left:167.383500px;}
.x6e_c01076{left:169.290000px;}
.x66_c01076{left:173.817000px;}
.x3_c01076{left:176.040000px;}
.xb_c01076{left:178.945500px;}
.x5b_c01076{left:185.361000px;}
.x74_c01076{left:187.378500px;}
.x37_c01076{left:188.950500px;}
.x43_c01076{left:191.467500px;}
.x34_c01076{left:202.710000px;}
.x85_c01076{left:204.112500px;}
.xc_c01076{left:205.191000px;}
.x7a_c01076{left:207.085500px;}
.x62_c01076{left:208.689000px;}
.x18_c01076{left:210.042000px;}
.x2b_c01076{left:214.849500px;}
.x1d_c01076{left:225.244500px;}
.x75_c01076{left:228.402000px;}
.x4e_c01076{left:232.443000px;}
.x38_c01076{left:234.321000px;}
.x5c_c01076{left:238.014000px;}
.x2_c01076{left:239.262000px;}
.x52_c01076{left:242.338500px;}
.x89_c01076{left:246.846000px;}
.x19_c01076{left:249.727500px;}
.x7b_c01076{left:255.138000px;}
.x71_c01076{left:257.880000px;}
.x4b_c01076{left:259.659000px;}
.xd_c01076{left:262.147500px;}
.x8a_c01076{left:268.908000px;}
.x53_c01076{left:271.614000px;}
.x2c_c01076{left:272.641500px;}
.x76_c01076{left:274.051500px;}
.x1a_c01076{left:275.373000px;}
.x5d_c01076{left:279.066000px;}
.x67_c01076{left:280.200000px;}
.x4f_c01076{left:281.374500px;}
.x3f_c01076{left:284.289000px;}
.x8_c01076{left:288.802500px;}
.x39_c01076{left:290.478000px;}
.x6b_c01076{left:293.284500px;}
.x91_c01076{left:294.571500px;}
.x28_c01076{left:295.921500px;}
.x15_c01076{left:298.080000px;}
.xe_c01076{left:301.575000px;}
.x22_c01076{left:304.539000px;}
.x86_c01076{left:305.899500px;}
.x44_c01076{left:312.066000px;}
.x2d_c01076{left:313.393500px;}
.x63_c01076{left:316.416000px;}
.x6f_c01076{left:321.286500px;}
.x68_c01076{left:331.774500px;}
.xf_c01076{left:335.878500px;}
.x7c_c01076{left:336.943500px;}
.x2e_c01076{left:339.042000px;}
.x40_c01076{left:345.667500px;}
.x3a_c01076{left:352.831500px;}
.x23_c01076{left:354.571500px;}
.x45_c01076{left:357.718500px;}
.x35_c01076{left:361.744500px;}
.x57_c01076{left:364.746000px;}
.x81_c01076{left:366.337500px;}
.x24_c01076{left:367.930500px;}
.x10_c01076{left:369.816000px;}
.x1e_c01076{left:372.294000px;}
.x69_c01076{left:373.900500px;}
.x70_c01076{left:375.573000px;}
.x8b_c01076{left:376.614000px;}
.x46_c01076{left:386.584500px;}
.x9_c01076{left:388.702500px;}
.x11_c01076{left:390.955500px;}
.x1f_c01076{left:392.577000px;}
.x8c_c01076{left:394.993500px;}
.x2f_c01076{left:396.285000px;}
.x4_c01076{left:399.060000px;}
.x6a_c01076{left:403.332000px;}
.x92_c01076{left:411.477000px;}
.x72_c01076{left:412.668000px;}
.x82_c01076{left:414.690000px;}
.x5e_c01076{left:415.845000px;}
.x47_c01076{left:421.701000px;}
.x58_c01076{left:426.003000px;}
.x25_c01076{left:432.795000px;}
.x3b_c01076{left:434.293500px;}
.x30_c01076{left:436.513500px;}
.x77_c01076{left:445.411500px;}
.x87_c01076{left:451.944000px;}
.x3c_c01076{left:454.501500px;}
.x93_c01076{left:457.396500px;}
.x8d_c01076{left:458.613000px;}
.x26_c01076{left:460.392000px;}
.x31_c01076{left:462.991500px;}
.x5_c01076{left:471.150000px;}
.x1b_c01076{left:473.533500px;}
.x64_c01076{left:475.872000px;}
.x5f_c01076{left:481.024500px;}
.x78_c01076{left:486.316500px;}
.x83_c01076{left:491.137500px;}
.x32_c01076{left:494.590500px;}
.x29_c01076{left:504.631500px;}
.x59_c01076{left:515.424000px;}
.x3d_c01076{left:523.147500px;}
.x8e_c01076{left:524.770500px;}
.x12_c01076{left:543.331500px;}
.x7d_c01076{left:545.128500px;}
.x6_c01076{left:549.450000px;}
.x54_c01076{left:561.505500px;}
.x48_c01076{left:594.279000px;}
.x7_c01076{left:609.120000px;}
.x13_c01076{left:610.608000px;}
.x1c_c01076{left:611.776500px;}
.x20_c01076{left:613.063500px;}
.x27_c01076{left:614.338500px;}
.x36_c01076{left:615.576000px;}
.x55_c01076{left:617.682000px;}
.x16_c01076{left:619.650000px;}
.x94_c01076{left:620.778000px;}
.x14_c01076{left:627.548208px;}
.x49_c01076{left:629.403000px;}
.x3e_c01076{left:631.254000px;}
.x8f_c01076{left:632.818500px;}
.x33_c01076{left:640.338000px;}
.x50_c01076{left:649.132500px;}
.x60_c01076{left:652.873500px;}
.x95_c01076{left:655.315500px;}
.x7e_c01076{left:656.757000px;}
.x4a_c01076{left:661.875000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws0_c01076{word-spacing:0.000000pt;}
.fs13_c01076{font-size:23.333333pt;}
.fs12_c01076{font-size:56.000000pt;}
.fsb_c01076{font-size:57.866667pt;}
.fsc_c01076{font-size:59.733333pt;}
.fsa_c01076{font-size:60.666667pt;}
.fs9_c01076{font-size:61.600000pt;}
.fs7_c01076{font-size:62.533333pt;}
.fs6_c01076{font-size:63.466667pt;}
.fs5_c01076{font-size:64.400000pt;}
.fse_c01076{font-size:67.200000pt;}
.fs2_c01076{font-size:67.208601pt;}
.fs3_c01076{font-size:68.143178pt;}
.fs4_c01076{font-size:70.010114pt;}
.fs1_c01076{font-size:82.133333pt;}
.fsd_c01076{font-size:84.000000pt;}
.fs11_c01076{font-size:84.933333pt;}
.fsf_c01076{font-size:90.533333pt;}
.fs10_c01076{font-size:93.333333pt;}
.fs8_c01076{font-size:96.133333pt;}
.fs0_c01076{font-size:199.829282pt;}
.y0_c01076{bottom:0.000000pt;}
.yd0_c01076{bottom:145.684000pt;}
.yd1_c01076{bottom:147.556000pt;}
.yd2_c01076{bottom:149.992000pt;}
.yd3_c01076{bottom:150.957333pt;}
.yd4_c01076{bottom:151.396000pt;}
.yd5_c01076{bottom:152.173333pt;}
.yd6_c01076{bottom:153.030667pt;}
.yd7_c01076{bottom:156.080000pt;}
.yd8_c01076{bottom:156.725333pt;}
.yc8_c01076{bottom:166.088000pt;}
.yc9_c01076{bottom:169.189333pt;}
.yca_c01076{bottom:169.561333pt;}
.ycb_c01076{bottom:171.380000pt;}
.ycc_c01076{bottom:171.690667pt;}
.ycd_c01076{bottom:172.765333pt;}
.yce_c01076{bottom:173.882667pt;}
.ycf_c01076{bottom:175.708000pt;}
.yc1_c01076{bottom:186.242667pt;}
.yc2_c01076{bottom:187.380000pt;}
.yc3_c01076{bottom:187.721333pt;}
.yc4_c01076{bottom:188.652000pt;}
.yc5_c01076{bottom:190.461333pt;}
.yc6_c01076{bottom:193.057333pt;}
.yc7_c01076{bottom:196.029333pt;}
.yb7_c01076{bottom:206.648000pt;}
.yb8_c01076{bottom:208.012000pt;}
.yb9_c01076{bottom:208.881333pt;}
.yba_c01076{bottom:209.122667pt;}
.ybb_c01076{bottom:209.812000pt;}
.ybc_c01076{bottom:211.252000pt;}
.ybd_c01076{bottom:211.590667pt;}
.ybe_c01076{bottom:211.982667pt;}
.ybf_c01076{bottom:213.137333pt;}
.yc0_c01076{bottom:215.069333pt;}
.yab_c01076{bottom:226.562667pt;}
.yac_c01076{bottom:227.860000pt;}
.yad_c01076{bottom:228.534667pt;}
.yae_c01076{bottom:228.808000pt;}
.yaf_c01076{bottom:229.620000pt;}
.yb0_c01076{bottom:230.180000pt;}
.yb1_c01076{bottom:231.001333pt;}
.yb2_c01076{bottom:232.830667pt;}
.yb3_c01076{bottom:233.842667pt;}
.yb4_c01076{bottom:234.517333pt;}
.yb5_c01076{bottom:235.784000pt;}
.yb6_c01076{bottom:236.402667pt;}
.y9f_c01076{bottom:246.468000pt;}
.ya0_c01076{bottom:248.102667pt;}
.ya1_c01076{bottom:248.750667pt;}
.ya2_c01076{bottom:249.480000pt;}
.ya3_c01076{bottom:250.074667pt;}
.ya4_c01076{bottom:250.290667pt;}
.ya5_c01076{bottom:251.374667pt;}
.ya6_c01076{bottom:251.790667pt;}
.ya7_c01076{bottom:252.521333pt;}
.ya8_c01076{bottom:253.336000pt;}
.ya9_c01076{bottom:254.062667pt;}
.yaa_c01076{bottom:256.444000pt;}
.y9a_c01076{bottom:266.650667pt;}
.y9b_c01076{bottom:270.202667pt;}
.y9c_c01076{bottom:272.564000pt;}
.y9d_c01076{bottom:272.954667pt;}
.y9e_c01076{bottom:276.636000pt;}
.y91_c01076{bottom:287.045333pt;}
.y92_c01076{bottom:288.562667pt;}
.y93_c01076{bottom:288.905333pt;}
.y94_c01076{bottom:289.836000pt;}
.y95_c01076{bottom:290.742667pt;}
.y96_c01076{bottom:291.034667pt;}
.y97_c01076{bottom:291.472000pt;}
.y98_c01076{bottom:292.389333pt;}
.y99_c01076{bottom:296.506667pt;}
.y8d_c01076{bottom:307.205333pt;}
.y8e_c01076{bottom:309.265333pt;}
.y8f_c01076{bottom:310.548000pt;}
.y90_c01076{bottom:315.190667pt;}
.y83_c01076{bottom:328.786667pt;}
.y84_c01076{bottom:329.865333pt;}
.y85_c01076{bottom:330.222667pt;}
.y86_c01076{bottom:330.954667pt;}
.y87_c01076{bottom:331.432000pt;}
.y88_c01076{bottom:331.736000pt;}
.y89_c01076{bottom:332.469333pt;}
.y8a_c01076{bottom:333.068000pt;}
.y8b_c01076{bottom:333.486667pt;}
.y8c_c01076{bottom:336.556000pt;}
.y77_c01076{bottom:348.252000pt;}
.y78_c01076{bottom:349.752000pt;}
.y79_c01076{bottom:350.089333pt;}
.y7a_c01076{bottom:350.786667pt;}
.y7b_c01076{bottom:351.233333pt;}
.y7c_c01076{bottom:352.024000pt;}
.y7d_c01076{bottom:352.254667pt;}
.y7e_c01076{bottom:352.605333pt;}
.y7f_c01076{bottom:352.992000pt;}
.y80_c01076{bottom:353.786667pt;}
.y81_c01076{bottom:355.298667pt;}
.y82_c01076{bottom:357.724000pt;}
.y72_c01076{bottom:368.884000pt;}
.y73_c01076{bottom:371.209333pt;}
.y74_c01076{bottom:372.382667pt;}
.y75_c01076{bottom:373.248000pt;}
.y76_c01076{bottom:377.577333pt;}
.y66_c01076{bottom:384.250667pt;}
.y67_c01076{bottom:386.582667pt;}
.y68_c01076{bottom:387.548000pt;}
.y69_c01076{bottom:388.797333pt;}
.y6a_c01076{bottom:388.905333pt;}
.y6b_c01076{bottom:389.964000pt;}
.y6c_c01076{bottom:390.820000pt;}
.y6d_c01076{bottom:391.701333pt;}
.y6e_c01076{bottom:393.489333pt;}
.y6f_c01076{bottom:395.169333pt;}
.y70_c01076{bottom:398.732000pt;}
.y71_c01076{bottom:399.600000pt;}
.y60_c01076{bottom:427.684000pt;}
.y61_c01076{bottom:432.872000pt;}
.y62_c01076{bottom:433.906667pt;}
.y63_c01076{bottom:434.717333pt;}
.y64_c01076{bottom:435.416000pt;}
.y65_c01076{bottom:437.129333pt;}
.y5a_c01076{bottom:449.282667pt;}
.y5b_c01076{bottom:452.229333pt;}
.y5c_c01076{bottom:452.672000pt;}
.y5d_c01076{bottom:455.525333pt;}
.y5e_c01076{bottom:457.053333pt;}
.y5f_c01076{bottom:457.902667pt;}
.y52_c01076{bottom:469.682667pt;}
.y53_c01076{bottom:470.182667pt;}
.y54_c01076{bottom:471.390667pt;}
.y55_c01076{bottom:472.792000pt;}
.y56_c01076{bottom:473.574667pt;}
.y57_c01076{bottom:474.728000pt;}
.y58_c01076{bottom:479.145333pt;}
.y59_c01076{bottom:479.458667pt;}
.y4e_c01076{bottom:491.761333pt;}
.y4f_c01076{bottom:494.312000pt;}
.y50_c01076{bottom:496.008000pt;}
.y51_c01076{bottom:498.730667pt;}
.y43_c01076{bottom:510.481333pt;}
.y44_c01076{bottom:511.741333pt;}
.y45_c01076{bottom:512.414667pt;}
.y46_c01076{bottom:513.032000pt;}
.y47_c01076{bottom:514.129333pt;}
.y48_c01076{bottom:514.778667pt;}
.y49_c01076{bottom:515.189333pt;}
.y4a_c01076{bottom:515.689333pt;}
.y4b_c01076{bottom:518.144000pt;}
.y4c_c01076{bottom:518.644000pt;}
.y4d_c01076{bottom:519.105333pt;}
.y3f_c01076{bottom:534.408000pt;}
.y40_c01076{bottom:535.444000pt;}
.y41_c01076{bottom:535.712000pt;}
.y42_c01076{bottom:540.017333pt;}
.y37_c01076{bottom:553.204000pt;}
.y38_c01076{bottom:553.889333pt;}
.y39_c01076{bottom:554.737333pt;}
.y3a_c01076{bottom:555.680000pt;}
.y3b_c01076{bottom:556.910667pt;}
.y3c_c01076{bottom:557.216000pt;}
.y3d_c01076{bottom:558.253333pt;}
.y3e_c01076{bottom:559.886667pt;}
.y32_c01076{bottom:572.885333pt;}
.y33_c01076{bottom:573.882667pt;}
.y34_c01076{bottom:574.262667pt;}
.y35_c01076{bottom:576.569333pt;}
.y36_c01076{bottom:580.856000pt;}
.y27_c01076{bottom:592.564000pt;}
.y28_c01076{bottom:593.521333pt;}
.y29_c01076{bottom:594.292000pt;}
.y2a_c01076{bottom:594.836000pt;}
.y2b_c01076{bottom:595.177333pt;}
.y2c_c01076{bottom:595.940000pt;}
.y2d_c01076{bottom:596.476000pt;}
.y2e_c01076{bottom:596.829333pt;}
.y2f_c01076{bottom:597.250667pt;}
.y30_c01076{bottom:598.856000pt;}
.y31_c01076{bottom:599.194667pt;}
.y26_c01076{bottom:615.888000pt;}
.y1e_c01076{bottom:632.060000pt;}
.y1f_c01076{bottom:634.686667pt;}
.y20_c01076{bottom:635.180000pt;}
.y21_c01076{bottom:636.025333pt;}
.y22_c01076{bottom:636.250667pt;}
.y23_c01076{bottom:637.346667pt;}
.y24_c01076{bottom:637.813333pt;}
.y25_c01076{bottom:640.413333pt;}
.y1a_c01076{bottom:653.765333pt;}
.y1b_c01076{bottom:656.118667pt;}
.y1c_c01076{bottom:656.442667pt;}
.y1d_c01076{bottom:659.970667pt;}
.y13_c01076{bottom:673.444000pt;}
.y14_c01076{bottom:673.841333pt;}
.y15_c01076{bottom:674.593333pt;}
.y16_c01076{bottom:675.264000pt;}
.y17_c01076{bottom:675.697333pt;}
.y18_c01076{bottom:679.044000pt;}
.y19_c01076{bottom:681.378667pt;}
.y12_c01076{bottom:696.101333pt;}
.y7_c01076{bottom:713.524000pt;}
.y8_c01076{bottom:714.086609pt;}
.y9_c01076{bottom:714.483208pt;}
.ya_c01076{bottom:715.343884pt;}
.yb_c01076{bottom:715.939677pt;}
.y11_c01076{bottom:716.042768pt;}
.yc_c01076{bottom:716.458041pt;}
.yd_c01076{bottom:716.970875pt;}
.ye_c01076{bottom:717.290316pt;}
.yf_c01076{bottom:719.592887pt;}
.y10_c01076{bottom:720.609509pt;}
.y4_c01076{bottom:735.366667pt;}
.y5_c01076{bottom:736.061856pt;}
.y6_c01076{bottom:737.482656pt;}
.y3_c01076{bottom:774.048000pt;}
.y1_c01076{bottom:807.317333pt;}
.y2_c01076{bottom:812.490655pt;}
.h15_c01076{height:23.333333pt;}
.h14_c01076{height:56.000000pt;}
.hd_c01076{height:57.866667pt;}
.he_c01076{height:59.733333pt;}
.hc_c01076{height:60.666667pt;}
.hb_c01076{height:61.600000pt;}
.h9_c01076{height:62.533333pt;}
.h8_c01076{height:63.466667pt;}
.h7_c01076{height:64.400000pt;}
.h10_c01076{height:67.200000pt;}
.h4_c01076{height:67.208601pt;}
.h5_c01076{height:68.143178pt;}
.h6_c01076{height:70.010114pt;}
.h3_c01076{height:82.133333pt;}
.hf_c01076{height:84.000000pt;}
.h13_c01076{height:84.933333pt;}
.h11_c01076{height:90.533333pt;}
.h12_c01076{height:93.333333pt;}
.ha_c01076{height:96.133333pt;}
.h2_c01076{height:199.829282pt;}
.h1_c01076{height:893.333333pt;}
.h0_c01076{height:893.466667pt;}
.w1_c01076{width:678.000000pt;}
.w0_c01076{width:678.240000pt;}
.x0_c01076{left:0.000000pt;}
.x96_c01076{left:4.800000pt;}
.x4c_c01076{left:33.786667pt;}
.x51_c01076{left:42.040000pt;}
.x1_c01076{left:45.796000pt;}
.x41_c01076{left:49.340000pt;}
.x56_c01076{left:51.188000pt;}
.x6c_c01076{left:52.622667pt;}
.x7f_c01076{left:54.846667pt;}
.x88_c01076{left:56.212000pt;}
.x4d_c01076{left:61.593333pt;}
.x65_c01076{left:64.790667pt;}
.x79_c01076{left:65.849333pt;}
.x21_c01076{left:106.516000pt;}
.x84_c01076{left:117.834667pt;}
.xa_c01076{left:125.968000pt;}
.x2a_c01076{left:127.141333pt;}
.x42_c01076{left:128.124000pt;}
.x5a_c01076{left:131.474667pt;}
.x6d_c01076{left:132.464000pt;}
.x73_c01076{left:134.162667pt;}
.x80_c01076{left:135.088000pt;}
.x90_c01076{left:145.832000pt;}
.x17_c01076{left:147.118667pt;}
.x61_c01076{left:148.785333pt;}
.x6e_c01076{left:150.480000pt;}
.x66_c01076{left:154.504000pt;}
.x3_c01076{left:156.480000pt;}
.xb_c01076{left:159.062667pt;}
.x5b_c01076{left:164.765333pt;}
.x74_c01076{left:166.558667pt;}
.x37_c01076{left:167.956000pt;}
.x43_c01076{left:170.193333pt;}
.x34_c01076{left:180.186667pt;}
.x85_c01076{left:181.433333pt;}
.xc_c01076{left:182.392000pt;}
.x7a_c01076{left:184.076000pt;}
.x62_c01076{left:185.501333pt;}
.x18_c01076{left:186.704000pt;}
.x2b_c01076{left:190.977333pt;}
.x1d_c01076{left:200.217333pt;}
.x75_c01076{left:203.024000pt;}
.x4e_c01076{left:206.616000pt;}
.x38_c01076{left:208.285333pt;}
.x5c_c01076{left:211.568000pt;}
.x2_c01076{left:212.677333pt;}
.x52_c01076{left:215.412000pt;}
.x89_c01076{left:219.418667pt;}
.x19_c01076{left:221.980000pt;}
.x7b_c01076{left:226.789333pt;}
.x71_c01076{left:229.226667pt;}
.x4b_c01076{left:230.808000pt;}
.xd_c01076{left:233.020000pt;}
.x8a_c01076{left:239.029333pt;}
.x53_c01076{left:241.434667pt;}
.x2c_c01076{left:242.348000pt;}
.x76_c01076{left:243.601333pt;}
.x1a_c01076{left:244.776000pt;}
.x5d_c01076{left:248.058667pt;}
.x67_c01076{left:249.066667pt;}
.x4f_c01076{left:250.110667pt;}
.x3f_c01076{left:252.701333pt;}
.x8_c01076{left:256.713333pt;}
.x39_c01076{left:258.202667pt;}
.x6b_c01076{left:260.697333pt;}
.x91_c01076{left:261.841333pt;}
.x28_c01076{left:263.041333pt;}
.x15_c01076{left:264.960000pt;}
.xe_c01076{left:268.066667pt;}
.x22_c01076{left:270.701333pt;}
.x86_c01076{left:271.910667pt;}
.x44_c01076{left:277.392000pt;}
.x2d_c01076{left:278.572000pt;}
.x63_c01076{left:281.258667pt;}
.x6f_c01076{left:285.588000pt;}
.x68_c01076{left:294.910667pt;}
.xf_c01076{left:298.558667pt;}
.x7c_c01076{left:299.505333pt;}
.x2e_c01076{left:301.370667pt;}
.x40_c01076{left:307.260000pt;}
.x3a_c01076{left:313.628000pt;}
.x23_c01076{left:315.174667pt;}
.x45_c01076{left:317.972000pt;}
.x35_c01076{left:321.550667pt;}
.x57_c01076{left:324.218667pt;}
.x81_c01076{left:325.633333pt;}
.x24_c01076{left:327.049333pt;}
.x10_c01076{left:328.725333pt;}
.x1e_c01076{left:330.928000pt;}
.x69_c01076{left:332.356000pt;}
.x70_c01076{left:333.842667pt;}
.x8b_c01076{left:334.768000pt;}
.x46_c01076{left:343.630667pt;}
.x9_c01076{left:345.513333pt;}
.x11_c01076{left:347.516000pt;}
.x1f_c01076{left:348.957333pt;}
.x8c_c01076{left:351.105333pt;}
.x2f_c01076{left:352.253333pt;}
.x4_c01076{left:354.720000pt;}
.x6a_c01076{left:358.517333pt;}
.x92_c01076{left:365.757333pt;}
.x72_c01076{left:366.816000pt;}
.x82_c01076{left:368.613333pt;}
.x5e_c01076{left:369.640000pt;}
.x47_c01076{left:374.845333pt;}
.x58_c01076{left:378.669333pt;}
.x25_c01076{left:384.706667pt;}
.x3b_c01076{left:386.038667pt;}
.x30_c01076{left:388.012000pt;}
.x77_c01076{left:395.921333pt;}
.x87_c01076{left:401.728000pt;}
.x3c_c01076{left:404.001333pt;}
.x93_c01076{left:406.574667pt;}
.x8d_c01076{left:407.656000pt;}
.x26_c01076{left:409.237333pt;}
.x31_c01076{left:411.548000pt;}
.x5_c01076{left:418.800000pt;}
.x1b_c01076{left:420.918667pt;}
.x64_c01076{left:422.997333pt;}
.x5f_c01076{left:427.577333pt;}
.x78_c01076{left:432.281333pt;}
.x83_c01076{left:436.566667pt;}
.x32_c01076{left:439.636000pt;}
.x29_c01076{left:448.561333pt;}
.x59_c01076{left:458.154667pt;}
.x3d_c01076{left:465.020000pt;}
.x8e_c01076{left:466.462667pt;}
.x12_c01076{left:482.961333pt;}
.x7d_c01076{left:484.558667pt;}
.x6_c01076{left:488.400000pt;}
.x54_c01076{left:499.116000pt;}
.x48_c01076{left:528.248000pt;}
.x7_c01076{left:541.440000pt;}
.x13_c01076{left:542.762667pt;}
.x1c_c01076{left:543.801333pt;}
.x20_c01076{left:544.945333pt;}
.x27_c01076{left:546.078667pt;}
.x36_c01076{left:547.178667pt;}
.x55_c01076{left:549.050667pt;}
.x16_c01076{left:550.800000pt;}
.x94_c01076{left:551.802667pt;}
.x14_c01076{left:557.820629pt;}
.x49_c01076{left:559.469333pt;}
.x3e_c01076{left:561.114667pt;}
.x8f_c01076{left:562.505333pt;}
.x33_c01076{left:569.189333pt;}
.x50_c01076{left:577.006667pt;}
.x60_c01076{left:580.332000pt;}
.x95_c01076{left:582.502667pt;}
.x7e_c01076{left:583.784000pt;}
.x4a_c01076{left:588.333333pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.000000;font-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_c01077{transform:matrix(0.012132,-0.000267,0.005499,0.249940,0,0);-ms-transform:matrix(0.012132,-0.000267,0.005499,0.249940,0,0);-webkit-transform:matrix(0.012132,-0.000267,0.005499,0.249940,0,0);}
.m85_c01077{transform:matrix(0.046364,-0.001020,0.005499,0.249940,0,0);-ms-transform:matrix(0.046364,-0.001020,0.005499,0.249940,0,0);-webkit-transform:matrix(0.046364,-0.001020,0.005499,0.249940,0,0);}
.me0_c01077{transform:matrix(0.073410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073410,0.000000,0.000000,0.250000,0,0);}
.m6b_c01077{transform:matrix(0.076162,-0.001676,0.005499,0.249940,0,0);-ms-transform:matrix(0.076162,-0.001676,0.005499,0.249940,0,0);-webkit-transform:matrix(0.076162,-0.001676,0.005499,0.249940,0,0);}
.m78_c01077{transform:matrix(0.097611,-0.002147,0.005499,0.249940,0,0);-ms-transform:matrix(0.097611,-0.002147,0.005499,0.249940,0,0);-webkit-transform:matrix(0.097611,-0.002147,0.005499,0.249940,0,0);}
.mdc_c01077{transform:matrix(0.103815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103815,0.000000,0.000000,0.250000,0,0);}
.mdf_c01077{transform:matrix(0.116665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116665,0.000000,0.000000,0.250000,0,0);}
.mab_c01077{transform:matrix(0.130610,-0.001175,0.002250,0.249990,0,0);-ms-transform:matrix(0.130610,-0.001175,0.002250,0.249990,0,0);-webkit-transform:matrix(0.130610,-0.001175,0.002250,0.249990,0,0);}
.m60_c01077{transform:matrix(0.131048,-0.002883,0.005499,0.249940,0,0);-ms-transform:matrix(0.131048,-0.002883,0.005499,0.249940,0,0);-webkit-transform:matrix(0.131048,-0.002883,0.005499,0.249940,0,0);}
.m5d_c01077{transform:matrix(0.132433,-0.002914,0.005499,0.249940,0,0);-ms-transform:matrix(0.132433,-0.002914,0.005499,0.249940,0,0);-webkit-transform:matrix(0.132433,-0.002914,0.005499,0.249940,0,0);}
.m92_c01077{transform:matrix(0.136947,-0.003013,0.005499,0.249940,0,0);-ms-transform:matrix(0.136947,-0.003013,0.005499,0.249940,0,0);-webkit-transform:matrix(0.136947,-0.003013,0.005499,0.249940,0,0);}
.me8_c01077{transform:matrix(0.137495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137495,0.000000,0.000000,0.250000,0,0);}
.ma6_c01077{transform:matrix(0.140339,-0.001263,0.002250,0.249990,0,0);-ms-transform:matrix(0.140339,-0.001263,0.002250,0.249990,0,0);-webkit-transform:matrix(0.140339,-0.001263,0.002250,0.249990,0,0);}
.m94_c01077{transform:matrix(0.142331,-0.003131,0.005499,0.249940,0,0);-ms-transform:matrix(0.142331,-0.003131,0.005499,0.249940,0,0);-webkit-transform:matrix(0.142331,-0.003131,0.005499,0.249940,0,0);}
.mb9_c01077{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);}
.m56_c01077{transform:matrix(0.146625,-0.003226,0.005499,0.249940,0,0);-ms-transform:matrix(0.146625,-0.003226,0.005499,0.249940,0,0);-webkit-transform:matrix(0.146625,-0.003226,0.005499,0.249940,0,0);}
.mce_c01077{transform:matrix(0.146901,-0.001616,0.002750,0.249985,0,0);-ms-transform:matrix(0.146901,-0.001616,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146901,-0.001616,0.002750,0.249985,0,0);}
.m2b_c01077{transform:matrix(0.149804,-0.003296,0.005499,0.249940,0,0);-ms-transform:matrix(0.149804,-0.003296,0.005499,0.249940,0,0);-webkit-transform:matrix(0.149804,-0.003296,0.005499,0.249940,0,0);}
.mcf_c01077{transform:matrix(0.151346,-0.001665,0.002750,0.249985,0,0);-ms-transform:matrix(0.151346,-0.001665,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151346,-0.001665,0.002750,0.249985,0,0);}
.m10_c01077{transform:matrix(0.152383,-0.003352,0.005499,0.249940,0,0);-ms-transform:matrix(0.152383,-0.003352,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152383,-0.003352,0.005499,0.249940,0,0);}
.m99_c01077{transform:matrix(0.153364,-0.001380,0.002250,0.249990,0,0);-ms-transform:matrix(0.153364,-0.001380,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153364,-0.001380,0.002250,0.249990,0,0);}
.m38_c01077{transform:matrix(0.153613,-0.003379,0.005499,0.249940,0,0);-ms-transform:matrix(0.153613,-0.003379,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153613,-0.003379,0.005499,0.249940,0,0);}
.me1_c01077{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);}
.m93_c01077{transform:matrix(0.154143,-0.003391,0.005499,0.249940,0,0);-ms-transform:matrix(0.154143,-0.003391,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154143,-0.003391,0.005499,0.249940,0,0);}
.mc8_c01077{transform:matrix(0.154296,-0.001697,0.002750,0.249985,0,0);-ms-transform:matrix(0.154296,-0.001697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154296,-0.001697,0.002750,0.249985,0,0);}
.m50_c01077{transform:matrix(0.154828,-0.003406,0.005499,0.249940,0,0);-ms-transform:matrix(0.154828,-0.003406,0.005499,0.249940,0,0);-webkit-transform:matrix(0.154828,-0.003406,0.005499,0.249940,0,0);}
.m76_c01077{transform:matrix(0.155437,-0.003420,0.005499,0.249940,0,0);-ms-transform:matrix(0.155437,-0.003420,0.005499,0.249940,0,0);-webkit-transform:matrix(0.155437,-0.003420,0.005499,0.249940,0,0);}
.m64_c01077{transform:matrix(0.158207,-0.003481,0.005499,0.249940,0,0);-ms-transform:matrix(0.158207,-0.003481,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158207,-0.003481,0.005499,0.249940,0,0);}
.mbe_c01077{transform:matrix(0.160000,-0.001760,0.002750,0.249985,0,0);-ms-transform:matrix(0.160000,-0.001760,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160000,-0.001760,0.002750,0.249985,0,0);}
.m7a_c01077{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);}
.m4d_c01077{transform:matrix(0.161046,-0.003543,0.005499,0.249940,0,0);-ms-transform:matrix(0.161046,-0.003543,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161046,-0.003543,0.005499,0.249940,0,0);}
.m31_c01077{transform:matrix(0.162246,-0.003569,0.005499,0.249940,0,0);-ms-transform:matrix(0.162246,-0.003569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162246,-0.003569,0.005499,0.249940,0,0);}
.md5_c01077{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);}
.ma0_c01077{transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-ms-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162983,-0.001467,0.002250,0.249990,0,0);}
.m19_c01077{transform:matrix(0.165420,-0.003639,0.005499,0.249940,0,0);-ms-transform:matrix(0.165420,-0.003639,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165420,-0.003639,0.005499,0.249940,0,0);}
.mb1_c01077{transform:matrix(0.165783,-0.001492,0.002250,0.249990,0,0);-ms-transform:matrix(0.165783,-0.001492,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165783,-0.001492,0.002250,0.249990,0,0);}
.m57_c01077{transform:matrix(0.165895,-0.003650,0.005499,0.249940,0,0);-ms-transform:matrix(0.165895,-0.003650,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165895,-0.003650,0.005499,0.249940,0,0);}
.mb2_c01077{transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);-ms-transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165943,-0.001493,0.002250,0.249990,0,0);}
.m8f_c01077{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);}
.m96_c01077{transform:matrix(0.167118,-0.001504,0.002250,0.249990,0,0);-ms-transform:matrix(0.167118,-0.001504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167118,-0.001504,0.002250,0.249990,0,0);}
.ma1_c01077{transform:matrix(0.167513,-0.001508,0.002250,0.249990,0,0);-ms-transform:matrix(0.167513,-0.001508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167513,-0.001508,0.002250,0.249990,0,0);}
.m8d_c01077{transform:matrix(0.168819,-0.003714,0.005499,0.249940,0,0);-ms-transform:matrix(0.168819,-0.003714,0.005499,0.249940,0,0);-webkit-transform:matrix(0.168819,-0.003714,0.005499,0.249940,0,0);}
.ma5_c01077{transform:matrix(0.169203,-0.001523,0.002250,0.249990,0,0);-ms-transform:matrix(0.169203,-0.001523,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169203,-0.001523,0.002250,0.249990,0,0);}
.m84_c01077{transform:matrix(0.170214,-0.003745,0.005499,0.249940,0,0);-ms-transform:matrix(0.170214,-0.003745,0.005499,0.249940,0,0);-webkit-transform:matrix(0.170214,-0.003745,0.005499,0.249940,0,0);}
.m83_c01077{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);}
.md_c01077{transform:matrix(0.171034,-0.003763,0.005499,0.249940,0,0);-ms-transform:matrix(0.171034,-0.003763,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171034,-0.003763,0.005499,0.249940,0,0);}
.m52_c01077{transform:matrix(0.171119,-0.003765,0.005499,0.249940,0,0);-ms-transform:matrix(0.171119,-0.003765,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171119,-0.003765,0.005499,0.249940,0,0);}
.m8b_c01077{transform:matrix(0.171489,-0.003773,0.005499,0.249940,0,0);-ms-transform:matrix(0.171489,-0.003773,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171489,-0.003773,0.005499,0.249940,0,0);}
.m30_c01077{transform:matrix(0.171718,-0.003778,0.005499,0.249940,0,0);-ms-transform:matrix(0.171718,-0.003778,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171718,-0.003778,0.005499,0.249940,0,0);}
.m80_c01077{transform:matrix(0.171778,-0.003779,0.005499,0.249940,0,0);-ms-transform:matrix(0.171778,-0.003779,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171778,-0.003779,0.005499,0.249940,0,0);}
.m5c_c01077{transform:matrix(0.172128,-0.003787,0.005499,0.249940,0,0);-ms-transform:matrix(0.172128,-0.003787,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172128,-0.003787,0.005499,0.249940,0,0);}
.ma7_c01077{transform:matrix(0.172228,-0.001550,0.002250,0.249990,0,0);-ms-transform:matrix(0.172228,-0.001550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172228,-0.001550,0.002250,0.249990,0,0);}
.m58_c01077{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);}
.m59_c01077{transform:matrix(0.172888,-0.003804,0.005499,0.249940,0,0);-ms-transform:matrix(0.172888,-0.003804,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172888,-0.003804,0.005499,0.249940,0,0);}
.mb7_c01077{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);}
.m65_c01077{transform:matrix(0.173378,-0.003814,0.005499,0.249940,0,0);-ms-transform:matrix(0.173378,-0.003814,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173378,-0.003814,0.005499,0.249940,0,0);}
.m0_c01077{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);}
.m77_c01077{transform:matrix(0.174268,-0.003834,0.005499,0.249940,0,0);-ms-transform:matrix(0.174268,-0.003834,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174268,-0.003834,0.005499,0.249940,0,0);}
.mba_c01077{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);}
.ma2_c01077{transform:matrix(0.175173,-0.001577,0.002250,0.249990,0,0);-ms-transform:matrix(0.175173,-0.001577,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175173,-0.001577,0.002250,0.249990,0,0);}
.mc4_c01077{transform:matrix(0.175509,-0.001931,0.002750,0.249985,0,0);-ms-transform:matrix(0.175509,-0.001931,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175509,-0.001931,0.002750,0.249985,0,0);}
.m9a_c01077{transform:matrix(0.176078,-0.001585,0.002250,0.249990,0,0);-ms-transform:matrix(0.176078,-0.001585,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176078,-0.001585,0.002250,0.249990,0,0);}
.m6c_c01077{transform:matrix(0.176377,-0.003880,0.005499,0.249940,0,0);-ms-transform:matrix(0.176377,-0.003880,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176377,-0.003880,0.005499,0.249940,0,0);}
.m2e_c01077{transform:matrix(0.176882,-0.003891,0.005499,0.249940,0,0);-ms-transform:matrix(0.176882,-0.003891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176882,-0.003891,0.005499,0.249940,0,0);}
.mb6_c01077{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);}
.m17_c01077{transform:matrix(0.177477,-0.003904,0.005499,0.249940,0,0);-ms-transform:matrix(0.177477,-0.003904,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177477,-0.003904,0.005499,0.249940,0,0);}
.m54_c01077{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);}
.m2a_c01077{transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);-ms-transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178252,-0.003922,0.005499,0.249940,0,0);}
.mf_c01077{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);}
.m90_c01077{transform:matrix(0.180096,-0.003962,0.005499,0.249940,0,0);-ms-transform:matrix(0.180096,-0.003962,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180096,-0.003962,0.005499,0.249940,0,0);}
.m6a_c01077{transform:matrix(0.180376,-0.003968,0.005499,0.249940,0,0);-ms-transform:matrix(0.180376,-0.003968,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180376,-0.003968,0.005499,0.249940,0,0);}
.m62_c01077{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);}
.m3_c01077{transform:matrix(0.180941,-0.003981,0.005499,0.249940,0,0);-ms-transform:matrix(0.180941,-0.003981,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180941,-0.003981,0.005499,0.249940,0,0);}
.m9_c01077{transform:matrix(0.181201,-0.003986,0.005499,0.249940,0,0);-ms-transform:matrix(0.181201,-0.003986,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181201,-0.003986,0.005499,0.249940,0,0);}
.m8a_c01077{transform:matrix(0.181806,-0.004000,0.005499,0.249940,0,0);-ms-transform:matrix(0.181806,-0.004000,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181806,-0.004000,0.005499,0.249940,0,0);}
.m7e_c01077{transform:matrix(0.183031,-0.004027,0.005499,0.249940,0,0);-ms-transform:matrix(0.183031,-0.004027,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183031,-0.004027,0.005499,0.249940,0,0);}
.mca_c01077{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);}
.m79_c01077{transform:matrix(0.183446,-0.004036,0.005499,0.249940,0,0);-ms-transform:matrix(0.183446,-0.004036,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183446,-0.004036,0.005499,0.249940,0,0);}
.m5_c01077{transform:matrix(0.183861,-0.004045,0.005499,0.249940,0,0);-ms-transform:matrix(0.183861,-0.004045,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183861,-0.004045,0.005499,0.249940,0,0);}
.m97_c01077{transform:matrix(0.184248,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184248,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184248,-0.001658,0.002250,0.249990,0,0);}
.m5b_c01077{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);}
.m2f_c01077{transform:matrix(0.184860,-0.004067,0.005499,0.249940,0,0);-ms-transform:matrix(0.184860,-0.004067,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184860,-0.004067,0.005499,0.249940,0,0);}
.m61_c01077{transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);-ms-transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);}
.m91_c01077{transform:matrix(0.185745,-0.004086,0.005499,0.249940,0,0);-ms-transform:matrix(0.185745,-0.004086,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185745,-0.004086,0.005499,0.249940,0,0);}
.m8_c01077{transform:matrix(0.185900,-0.004090,0.005499,0.249940,0,0);-ms-transform:matrix(0.185900,-0.004090,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185900,-0.004090,0.005499,0.249940,0,0);}
.ma3_c01077{transform:matrix(0.185952,-0.001674,0.002250,0.249990,0,0);-ms-transform:matrix(0.185952,-0.001674,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185952,-0.001674,0.002250,0.249990,0,0);}
.me_c01077{transform:matrix(0.187050,-0.004115,0.005499,0.249940,0,0);-ms-transform:matrix(0.187050,-0.004115,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187050,-0.004115,0.005499,0.249940,0,0);}
.mb8_c01077{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);}
.m74_c01077{transform:matrix(0.187130,-0.004117,0.005499,0.249940,0,0);-ms-transform:matrix(0.187130,-0.004117,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187130,-0.004117,0.005499,0.249940,0,0);}
.m3b_c01077{transform:matrix(0.187135,-0.004117,0.005499,0.249940,0,0);-ms-transform:matrix(0.187135,-0.004117,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187135,-0.004117,0.005499,0.249940,0,0);}
.md4_c01077{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);}
.m9f_c01077{transform:matrix(0.189562,-0.001706,0.002250,0.249990,0,0);-ms-transform:matrix(0.189562,-0.001706,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189562,-0.001706,0.002250,0.249990,0,0);}
.m3d_c01077{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);}
.mb3_c01077{transform:matrix(0.189782,-0.001708,0.002250,0.249990,0,0);-ms-transform:matrix(0.189782,-0.001708,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189782,-0.001708,0.002250,0.249990,0,0);}
.mb0_c01077{transform:matrix(0.189842,-0.001709,0.002250,0.249990,0,0);-ms-transform:matrix(0.189842,-0.001709,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189842,-0.001709,0.002250,0.249990,0,0);}
.mc0_c01077{transform:matrix(0.189919,-0.002089,0.002750,0.249985,0,0);-ms-transform:matrix(0.189919,-0.002089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189919,-0.002089,0.002750,0.249985,0,0);}
.md2_c01077{transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);}
.m3c_c01077{transform:matrix(0.191104,-0.004204,0.005499,0.249940,0,0);-ms-transform:matrix(0.191104,-0.004204,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191104,-0.004204,0.005499,0.249940,0,0);}
.m69_c01077{transform:matrix(0.191384,-0.004210,0.005499,0.249940,0,0);-ms-transform:matrix(0.191384,-0.004210,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191384,-0.004210,0.005499,0.249940,0,0);}
.mc_c01077{transform:matrix(0.191969,-0.004223,0.005499,0.249940,0,0);-ms-transform:matrix(0.191969,-0.004223,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191969,-0.004223,0.005499,0.249940,0,0);}
.m9d_c01077{transform:matrix(0.192137,-0.001729,0.002250,0.249990,0,0);-ms-transform:matrix(0.192137,-0.001729,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192137,-0.001729,0.002250,0.249990,0,0);}
.m7_c01077{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);}
.m7b_c01077{transform:matrix(0.192763,-0.004241,0.005499,0.249940,0,0);-ms-transform:matrix(0.192763,-0.004241,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192763,-0.004241,0.005499,0.249940,0,0);}
.md6_c01077{transform:matrix(0.194176,-0.002330,0.003000,0.249982,0,0);-ms-transform:matrix(0.194176,-0.002330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194176,-0.002330,0.003000,0.249982,0,0);}
.m20_c01077{transform:matrix(0.194658,-0.004282,0.005499,0.249940,0,0);-ms-transform:matrix(0.194658,-0.004282,0.005499,0.249940,0,0);-webkit-transform:matrix(0.194658,-0.004282,0.005499,0.249940,0,0);}
.m3a_c01077{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);}
.m14_c01077{transform:matrix(0.195218,-0.004295,0.005499,0.249940,0,0);-ms-transform:matrix(0.195218,-0.004295,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195218,-0.004295,0.005499,0.249940,0,0);}
.md3_c01077{transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);-ms-transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195471,-0.002346,0.003000,0.249982,0,0);}
.m82_c01077{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);}
.m29_c01077{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);}
.mc5_c01077{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);}
.mc7_c01077{transform:matrix(0.196138,-0.002158,0.002750,0.249985,0,0);-ms-transform:matrix(0.196138,-0.002158,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196138,-0.002158,0.002750,0.249985,0,0);}
.mbd_c01077{transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196428,-0.002161,0.002750,0.249985,0,0);}
.m7c_c01077{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);}
.m18_c01077{transform:matrix(0.196792,-0.004329,0.005499,0.249940,0,0);-ms-transform:matrix(0.196792,-0.004329,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196792,-0.004329,0.005499,0.249940,0,0);}
.m26_c01077{transform:matrix(0.197387,-0.004343,0.005499,0.249940,0,0);-ms-transform:matrix(0.197387,-0.004343,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197387,-0.004343,0.005499,0.249940,0,0);}
.mcc_c01077{transform:matrix(0.197418,-0.002172,0.002750,0.249985,0,0);-ms-transform:matrix(0.197418,-0.002172,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197418,-0.002172,0.002750,0.249985,0,0);}
.m9b_c01077{transform:matrix(0.197527,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197527,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197527,-0.001778,0.002250,0.249990,0,0);}
.m4a_c01077{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);}
.m68_c01077{transform:matrix(0.198677,-0.004371,0.005499,0.249940,0,0);-ms-transform:matrix(0.198677,-0.004371,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198677,-0.004371,0.005499,0.249940,0,0);}
.m71_c01077{transform:matrix(0.199797,-0.004396,0.005499,0.249940,0,0);-ms-transform:matrix(0.199797,-0.004396,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199797,-0.004396,0.005499,0.249940,0,0);}
.m8c_c01077{transform:matrix(0.200302,-0.004407,0.005499,0.249940,0,0);-ms-transform:matrix(0.200302,-0.004407,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200302,-0.004407,0.005499,0.249940,0,0);}
.m51_c01077{transform:matrix(0.200636,-0.004414,0.005499,0.249940,0,0);-ms-transform:matrix(0.200636,-0.004414,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200636,-0.004414,0.005499,0.249940,0,0);}
.m48_c01077{transform:matrix(0.200846,-0.004419,0.005499,0.249940,0,0);-ms-transform:matrix(0.200846,-0.004419,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200846,-0.004419,0.005499,0.249940,0,0);}
.mcb_c01077{transform:matrix(0.201103,-0.002212,0.002750,0.249985,0,0);-ms-transform:matrix(0.201103,-0.002212,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201103,-0.002212,0.002750,0.249985,0,0);}
.m98_c01077{transform:matrix(0.201432,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201432,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201432,-0.001813,0.002250,0.249990,0,0);}
.m4e_c01077{transform:matrix(0.201891,-0.004442,0.005499,0.249940,0,0);-ms-transform:matrix(0.201891,-0.004442,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201891,-0.004442,0.005499,0.249940,0,0);}
.m2d_c01077{transform:matrix(0.202671,-0.004459,0.005499,0.249940,0,0);-ms-transform:matrix(0.202671,-0.004459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202671,-0.004459,0.005499,0.249940,0,0);}
.m1f_c01077{transform:matrix(0.202711,-0.004460,0.005499,0.249940,0,0);-ms-transform:matrix(0.202711,-0.004460,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202711,-0.004460,0.005499,0.249940,0,0);}
.ma9_c01077{transform:matrix(0.203267,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203267,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203267,-0.001829,0.002250,0.249990,0,0);}
.m44_c01077{transform:matrix(0.205365,-0.004518,0.005499,0.249940,0,0);-ms-transform:matrix(0.205365,-0.004518,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205365,-0.004518,0.005499,0.249940,0,0);}
.m40_c01077{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);}
.m9c_c01077{transform:matrix(0.205947,-0.001854,0.002250,0.249990,0,0);-ms-transform:matrix(0.205947,-0.001854,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205947,-0.001854,0.002250,0.249990,0,0);}
.md0_c01077{transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-ms-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207360,-0.002488,0.003000,0.249982,0,0);}
.m43_c01077{transform:matrix(0.208520,-0.004587,0.005499,0.249940,0,0);-ms-transform:matrix(0.208520,-0.004587,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208520,-0.004587,0.005499,0.249940,0,0);}
.m9e_c01077{transform:matrix(0.209077,-0.001882,0.002250,0.249990,0,0);-ms-transform:matrix(0.209077,-0.001882,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209077,-0.001882,0.002250,0.249990,0,0);}
.mbb_c01077{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);}
.me5_c01077{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);}
.m67_c01077{transform:matrix(0.211149,-0.004645,0.005499,0.249940,0,0);-ms-transform:matrix(0.211149,-0.004645,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211149,-0.004645,0.005499,0.249940,0,0);}
.m4_c01077{transform:matrix(0.211169,-0.004646,0.005499,0.249940,0,0);-ms-transform:matrix(0.211169,-0.004646,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211169,-0.004646,0.005499,0.249940,0,0);}
.m1a_c01077{transform:matrix(0.211564,-0.004654,0.005499,0.249940,0,0);-ms-transform:matrix(0.211564,-0.004654,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211564,-0.004654,0.005499,0.249940,0,0);}
.m42_c01077{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);}
.m6_c01077{transform:matrix(0.211779,-0.004659,0.005499,0.249940,0,0);-ms-transform:matrix(0.211779,-0.004659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211779,-0.004659,0.005499,0.249940,0,0);}
.maa_c01077{transform:matrix(0.212336,-0.001911,0.002250,0.249990,0,0);-ms-transform:matrix(0.212336,-0.001911,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212336,-0.001911,0.002250,0.249990,0,0);}
.maf_c01077{transform:matrix(0.212566,-0.001913,0.002250,0.249990,0,0);-ms-transform:matrix(0.212566,-0.001913,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212566,-0.001913,0.002250,0.249990,0,0);}
.m39_c01077{transform:matrix(0.213313,-0.004693,0.005499,0.249940,0,0);-ms-transform:matrix(0.213313,-0.004693,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213313,-0.004693,0.005499,0.249940,0,0);}
.mae_c01077{transform:matrix(0.215676,-0.001941,0.002250,0.249990,0,0);-ms-transform:matrix(0.215676,-0.001941,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215676,-0.001941,0.002250,0.249990,0,0);}
.m7f_c01077{transform:matrix(0.216448,-0.004762,0.005499,0.249940,0,0);-ms-transform:matrix(0.216448,-0.004762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216448,-0.004762,0.005499,0.249940,0,0);}
.m73_c01077{transform:matrix(0.217722,-0.004790,0.005499,0.249940,0,0);-ms-transform:matrix(0.217722,-0.004790,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217722,-0.004790,0.005499,0.249940,0,0);}
.m5a_c01077{transform:matrix(0.218032,-0.004797,0.005499,0.249940,0,0);-ms-transform:matrix(0.218032,-0.004797,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218032,-0.004797,0.005499,0.249940,0,0);}
.mbc_c01077{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);}
.me4_c01077{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);}
.m36_c01077{transform:matrix(0.220237,-0.004845,0.005499,0.249940,0,0);-ms-transform:matrix(0.220237,-0.004845,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220237,-0.004845,0.005499,0.249940,0,0);}
.m5e_c01077{transform:matrix(0.220307,-0.004847,0.005499,0.249940,0,0);-ms-transform:matrix(0.220307,-0.004847,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220307,-0.004847,0.005499,0.249940,0,0);}
.m37_c01077{transform:matrix(0.220862,-0.004859,0.005499,0.249940,0,0);-ms-transform:matrix(0.220862,-0.004859,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220862,-0.004859,0.005499,0.249940,0,0);}
.mb5_c01077{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);}
.m12_c01077{transform:matrix(0.221866,-0.004881,0.005499,0.249940,0,0);-ms-transform:matrix(0.221866,-0.004881,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221866,-0.004881,0.005499,0.249940,0,0);}
.ma4_c01077{transform:matrix(0.222551,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222551,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222551,-0.002003,0.002250,0.249990,0,0);}
.mbf_c01077{transform:matrix(0.222607,-0.002449,0.002750,0.249985,0,0);-ms-transform:matrix(0.222607,-0.002449,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222607,-0.002449,0.002750,0.249985,0,0);}
.m6f_c01077{transform:matrix(0.223571,-0.004919,0.005499,0.249940,0,0);-ms-transform:matrix(0.223571,-0.004919,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223571,-0.004919,0.005499,0.249940,0,0);}
.mc9_c01077{transform:matrix(0.227301,-0.002500,0.002750,0.249985,0,0);-ms-transform:matrix(0.227301,-0.002500,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227301,-0.002500,0.002750,0.249985,0,0);}
.ma_c01077{transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);-ms-transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);}
.m47_c01077{transform:matrix(0.228375,-0.005024,0.005499,0.249940,0,0);-ms-transform:matrix(0.228375,-0.005024,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228375,-0.005024,0.005499,0.249940,0,0);}
.m55_c01077{transform:matrix(0.228385,-0.005024,0.005499,0.249940,0,0);-ms-transform:matrix(0.228385,-0.005024,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228385,-0.005024,0.005499,0.249940,0,0);}
.m95_c01077{transform:matrix(0.228761,-0.002059,0.002250,0.249990,0,0);-ms-transform:matrix(0.228761,-0.002059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228761,-0.002059,0.002250,0.249990,0,0);}
.m89_c01077{transform:matrix(0.230419,-0.005069,0.005499,0.249940,0,0);-ms-transform:matrix(0.230419,-0.005069,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230419,-0.005069,0.005499,0.249940,0,0);}
.mc1_c01077{transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);-ms-transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);}
.md1_c01077{transform:matrix(0.232293,-0.002788,0.003000,0.249982,0,0);-ms-transform:matrix(0.232293,-0.002788,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232293,-0.002788,0.003000,0.249982,0,0);}
.m33_c01077{transform:matrix(0.232484,-0.005115,0.005499,0.249940,0,0);-ms-transform:matrix(0.232484,-0.005115,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232484,-0.005115,0.005499,0.249940,0,0);}
.m27_c01077{transform:matrix(0.232589,-0.005117,0.005499,0.249940,0,0);-ms-transform:matrix(0.232589,-0.005117,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232589,-0.005117,0.005499,0.249940,0,0);}
.m21_c01077{transform:matrix(0.233663,-0.005141,0.005499,0.249940,0,0);-ms-transform:matrix(0.233663,-0.005141,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233663,-0.005141,0.005499,0.249940,0,0);}
.mc2_c01077{transform:matrix(0.234591,-0.002580,0.002750,0.249985,0,0);-ms-transform:matrix(0.234591,-0.002580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234591,-0.002580,0.002750,0.249985,0,0);}
.me7_c01077{transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01077{transform:matrix(0.235138,-0.005173,0.005499,0.249940,0,0);-ms-transform:matrix(0.235138,-0.005173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235138,-0.005173,0.005499,0.249940,0,0);}
.m1c_c01077{transform:matrix(0.235703,-0.005185,0.005499,0.249940,0,0);-ms-transform:matrix(0.235703,-0.005185,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235703,-0.005185,0.005499,0.249940,0,0);}
.m2c_c01077{transform:matrix(0.237248,-0.005219,0.005499,0.249940,0,0);-ms-transform:matrix(0.237248,-0.005219,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237248,-0.005219,0.005499,0.249940,0,0);}
.mb_c01077{transform:matrix(0.238142,-0.005239,0.005499,0.249940,0,0);-ms-transform:matrix(0.238142,-0.005239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238142,-0.005239,0.005499,0.249940,0,0);}
.m63_c01077{transform:matrix(0.238962,-0.005257,0.005499,0.249940,0,0);-ms-transform:matrix(0.238962,-0.005257,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238962,-0.005257,0.005499,0.249940,0,0);}
.ma8_c01077{transform:matrix(0.239165,-0.002152,0.002250,0.249990,0,0);-ms-transform:matrix(0.239165,-0.002152,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239165,-0.002152,0.002250,0.249990,0,0);}
.m32_c01077{transform:matrix(0.241517,-0.005313,0.005499,0.249940,0,0);-ms-transform:matrix(0.241517,-0.005313,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241517,-0.005313,0.005499,0.249940,0,0);}
.m28_c01077{transform:matrix(0.242626,-0.005338,0.005499,0.249940,0,0);-ms-transform:matrix(0.242626,-0.005338,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242626,-0.005338,0.005499,0.249940,0,0);}
.m41_c01077{transform:matrix(0.246320,-0.005419,0.005499,0.249940,0,0);-ms-transform:matrix(0.246320,-0.005419,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246320,-0.005419,0.005499,0.249940,0,0);}
.mac_c01077{transform:matrix(0.250715,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250715,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250715,-0.002256,0.002250,0.249990,0,0);}
.m46_c01077{transform:matrix(0.252534,-0.005556,0.005499,0.249940,0,0);-ms-transform:matrix(0.252534,-0.005556,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252534,-0.005556,0.005499,0.249940,0,0);}
.mad_c01077{transform:matrix(0.253635,-0.002283,0.002250,0.249990,0,0);-ms-transform:matrix(0.253635,-0.002283,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253635,-0.002283,0.002250,0.249990,0,0);}
.m75_c01077{transform:matrix(0.256163,-0.005636,0.005499,0.249940,0,0);-ms-transform:matrix(0.256163,-0.005636,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256163,-0.005636,0.005499,0.249940,0,0);}
.m1d_c01077{transform:matrix(0.257283,-0.005660,0.005499,0.249940,0,0);-ms-transform:matrix(0.257283,-0.005660,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257283,-0.005660,0.005499,0.249940,0,0);}
.m7d_c01077{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);}
.m25_c01077{transform:matrix(0.259312,-0.005705,0.005499,0.249940,0,0);-ms-transform:matrix(0.259312,-0.005705,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259312,-0.005705,0.005499,0.249940,0,0);}
.m72_c01077{transform:matrix(0.261412,-0.005751,0.005499,0.249940,0,0);-ms-transform:matrix(0.261412,-0.005751,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261412,-0.005751,0.005499,0.249940,0,0);}
.m35_c01077{transform:matrix(0.263641,-0.005800,0.005499,0.249940,0,0);-ms-transform:matrix(0.263641,-0.005800,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263641,-0.005800,0.005499,0.249940,0,0);}
.m4b_c01077{transform:matrix(0.269140,-0.005921,0.005499,0.249940,0,0);-ms-transform:matrix(0.269140,-0.005921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269140,-0.005921,0.005499,0.249940,0,0);}
.m45_c01077{transform:matrix(0.269800,-0.005936,0.005499,0.249940,0,0);-ms-transform:matrix(0.269800,-0.005936,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269800,-0.005936,0.005499,0.249940,0,0);}
.m1e_c01077{transform:matrix(0.270904,-0.005960,0.005499,0.249940,0,0);-ms-transform:matrix(0.270904,-0.005960,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270904,-0.005960,0.005499,0.249940,0,0);}
.m4c_c01077{transform:matrix(0.273969,-0.006027,0.005499,0.249940,0,0);-ms-transform:matrix(0.273969,-0.006027,0.005499,0.249940,0,0);-webkit-transform:matrix(0.273969,-0.006027,0.005499,0.249940,0,0);}
.m24_c01077{transform:matrix(0.283771,-0.006243,0.005499,0.249940,0,0);-ms-transform:matrix(0.283771,-0.006243,0.005499,0.249940,0,0);-webkit-transform:matrix(0.283771,-0.006243,0.005499,0.249940,0,0);}
.md8_c01077{transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293630,0.000000,0.000000,0.250000,0,0);}
.mc6_c01077{transform:matrix(0.298167,-0.003280,0.002750,0.249985,0,0);-ms-transform:matrix(0.298167,-0.003280,0.002750,0.249985,0,0);-webkit-transform:matrix(0.298167,-0.003280,0.002750,0.249985,0,0);}
.m4f_c01077{transform:matrix(0.309895,-0.006818,0.005499,0.249940,0,0);-ms-transform:matrix(0.309895,-0.006818,0.005499,0.249940,0,0);-webkit-transform:matrix(0.309895,-0.006818,0.005499,0.249940,0,0);}
.m15_c01077{transform:matrix(0.309900,-0.006818,0.005499,0.249940,0,0);-ms-transform:matrix(0.309900,-0.006818,0.005499,0.249940,0,0);-webkit-transform:matrix(0.309900,-0.006818,0.005499,0.249940,0,0);}
.m5f_c01077{transform:matrix(0.314749,-0.006924,0.005499,0.249940,0,0);-ms-transform:matrix(0.314749,-0.006924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.314749,-0.006924,0.005499,0.249940,0,0);}
.m66_c01077{transform:matrix(0.315009,-0.006930,0.005499,0.249940,0,0);-ms-transform:matrix(0.315009,-0.006930,0.005499,0.249940,0,0);-webkit-transform:matrix(0.315009,-0.006930,0.005499,0.249940,0,0);}
.m87_c01077{transform:matrix(0.317048,-0.006975,0.005499,0.249940,0,0);-ms-transform:matrix(0.317048,-0.006975,0.005499,0.249940,0,0);-webkit-transform:matrix(0.317048,-0.006975,0.005499,0.249940,0,0);}
.mcd_c01077{transform:matrix(0.320396,-0.003524,0.002750,0.249985,0,0);-ms-transform:matrix(0.320396,-0.003524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.320396,-0.003524,0.002750,0.249985,0,0);}
.m2_c01077{transform:matrix(0.321289,-0.004819,0.003750,0.249972,0,0);-ms-transform:matrix(0.321289,-0.004819,0.003750,0.249972,0,0);-webkit-transform:matrix(0.321289,-0.004819,0.003750,0.249972,0,0);}
.m6e_c01077{transform:matrix(0.321627,-0.007076,0.005499,0.249940,0,0);-ms-transform:matrix(0.321627,-0.007076,0.005499,0.249940,0,0);-webkit-transform:matrix(0.321627,-0.007076,0.005499,0.249940,0,0);}
.m16_c01077{transform:matrix(0.325186,-0.007154,0.005499,0.249940,0,0);-ms-transform:matrix(0.325186,-0.007154,0.005499,0.249940,0,0);-webkit-transform:matrix(0.325186,-0.007154,0.005499,0.249940,0,0);}
.m49_c01077{transform:matrix(0.327796,-0.007212,0.005499,0.249940,0,0);-ms-transform:matrix(0.327796,-0.007212,0.005499,0.249940,0,0);-webkit-transform:matrix(0.327796,-0.007212,0.005499,0.249940,0,0);}
.m3f_c01077{transform:matrix(0.344787,-0.007585,0.005499,0.249940,0,0);-ms-transform:matrix(0.344787,-0.007585,0.005499,0.249940,0,0);-webkit-transform:matrix(0.344787,-0.007585,0.005499,0.249940,0,0);}
.m23_c01077{transform:matrix(0.347111,-0.007636,0.005499,0.249940,0,0);-ms-transform:matrix(0.347111,-0.007636,0.005499,0.249940,0,0);-webkit-transform:matrix(0.347111,-0.007636,0.005499,0.249940,0,0);}
.me6_c01077{transform:matrix(0.347125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347125,0.000000,0.000000,0.250000,0,0);}
.mb4_c01077{transform:matrix(0.354771,-0.003193,0.002250,0.249990,0,0);-ms-transform:matrix(0.354771,-0.003193,0.002250,0.249990,0,0);-webkit-transform:matrix(0.354771,-0.003193,0.002250,0.249990,0,0);}
.m34_c01077{transform:matrix(0.362672,-0.007979,0.005499,0.249940,0,0);-ms-transform:matrix(0.362672,-0.007979,0.005499,0.249940,0,0);-webkit-transform:matrix(0.362672,-0.007979,0.005499,0.249940,0,0);}
.m11_c01077{transform:matrix(0.370100,-0.008142,0.005499,0.249940,0,0);-ms-transform:matrix(0.370100,-0.008142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.370100,-0.008142,0.005499,0.249940,0,0);}
.m70_c01077{transform:matrix(0.370350,-0.008148,0.005499,0.249940,0,0);-ms-transform:matrix(0.370350,-0.008148,0.005499,0.249940,0,0);-webkit-transform:matrix(0.370350,-0.008148,0.005499,0.249940,0,0);}
.md7_c01077{transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370730,0.000000,0.000000,0.250000,0,0);}
.m22_c01077{transform:matrix(0.377904,-0.008314,0.005499,0.249940,0,0);-ms-transform:matrix(0.377904,-0.008314,0.005499,0.249940,0,0);-webkit-transform:matrix(0.377904,-0.008314,0.005499,0.249940,0,0);}
.m53_c01077{transform:matrix(0.379068,-0.008340,0.005499,0.249940,0,0);-ms-transform:matrix(0.379068,-0.008340,0.005499,0.249940,0,0);-webkit-transform:matrix(0.379068,-0.008340,0.005499,0.249940,0,0);}
.m13_c01077{transform:matrix(0.397724,-0.008750,0.005499,0.249940,0,0);-ms-transform:matrix(0.397724,-0.008750,0.005499,0.249940,0,0);-webkit-transform:matrix(0.397724,-0.008750,0.005499,0.249940,0,0);}
.m88_c01077{transform:matrix(0.401893,-0.008842,0.005499,0.249940,0,0);-ms-transform:matrix(0.401893,-0.008842,0.005499,0.249940,0,0);-webkit-transform:matrix(0.401893,-0.008842,0.005499,0.249940,0,0);}
.m3e_c01077{transform:matrix(0.406237,-0.008937,0.005499,0.249940,0,0);-ms-transform:matrix(0.406237,-0.008937,0.005499,0.249940,0,0);-webkit-transform:matrix(0.406237,-0.008937,0.005499,0.249940,0,0);}
.md9_c01077{transform:matrix(0.437470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437470,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(0.479706,-0.007196,0.003750,0.249972,0,0);-ms-transform:matrix(0.479706,-0.007196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.479706,-0.007196,0.003750,0.249972,0,0);}
.m6d_c01077{transform:matrix(0.486857,-0.010711,0.005499,0.249940,0,0);-ms-transform:matrix(0.486857,-0.010711,0.005499,0.249940,0,0);-webkit-transform:matrix(0.486857,-0.010711,0.005499,0.249940,0,0);}
.mc3_c01077{transform:matrix(0.536718,-0.005904,0.002750,0.249985,0,0);-ms-transform:matrix(0.536718,-0.005904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.536718,-0.005904,0.002750,0.249985,0,0);}
.me2_c01077{transform:matrix(0.544050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544050,0.000000,0.000000,0.250000,0,0);}
.mdd_c01077{transform:matrix(0.552255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552255,0.000000,0.000000,0.250000,0,0);}
.m81_c01077{transform:matrix(0.610467,-0.013430,0.005499,0.249940,0,0);-ms-transform:matrix(0.610467,-0.013430,0.005499,0.249940,0,0);-webkit-transform:matrix(0.610467,-0.013430,0.005499,0.249940,0,0);}
.m8e_c01077{transform:matrix(0.619550,-0.013630,0.005499,0.249940,0,0);-ms-transform:matrix(0.619550,-0.013630,0.005499,0.249940,0,0);-webkit-transform:matrix(0.619550,-0.013630,0.005499,0.249940,0,0);}
.me3_c01077{transform:matrix(0.815185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815185,0.000000,0.000000,0.250000,0,0);}
.mdb_c01077{transform:matrix(0.999370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999370,0.000000,0.000000,0.250000,0,0);}
.mda_c01077{transform:matrix(1.647355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.647355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.647355,0.000000,0.000000,0.250000,0,0);}
.mde_c01077{transform:matrix(2.641205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.641205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.641205,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls0_c01077{letter-spacing:0.000000px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:0.000000px;}
.fc0_c01077{color:transparent;}
.fs11_c01077{font-size:24.150000px;}
.fs13_c01077{font-size:43.050000px;}
.fs12_c01077{font-size:48.300000px;}
.fs4_c01077{font-size:60.914736px;}
.fs7_c01077{font-size:63.015244px;}
.fse_c01077{font-size:66.154002px;}
.fs10_c01077{font-size:67.204838px;}
.fs9_c01077{font-size:67.216260px;}
.fs2_c01077{font-size:68.266515px;}
.fsc_c01077{font-size:69.302807px;}
.fs1_c01077{font-size:69.316769px;}
.fsa_c01077{font-size:70.352849px;}
.fsf_c01077{font-size:70.354256px;}
.fs5_c01077{font-size:70.367023px;}
.fsb_c01077{font-size:71.402892px;}
.fsd_c01077{font-size:72.450000px;}
.fs3_c01077{font-size:73.517785px;}
.fs8_c01077{font-size:74.568039px;}
.fs6_c01077{font-size:75.618293px;}
.fs0_c01077{font-size:120.763584px;}
.y0_c01077{bottom:0.000000px;}
.yd2_c01077{bottom:135.259500px;}
.ycb_c01077{bottom:152.821500px;}
.ycc_c01077{bottom:153.193488px;}
.ycd_c01077{bottom:153.554028px;}
.yce_c01077{bottom:154.629204px;}
.ycf_c01077{bottom:155.025042px;}
.yd0_c01077{bottom:155.514246px;}
.yd1_c01077{bottom:155.870736px;}
.yc2_c01077{bottom:175.500564px;}
.yc3_c01077{bottom:176.058294px;}
.yc4_c01077{bottom:176.222840px;}
.yc5_c01077{bottom:176.865993px;}
.yc6_c01077{bottom:177.209801px;}
.yc7_c01077{bottom:177.837662px;}
.yc8_c01077{bottom:178.441617px;}
.yc9_c01077{bottom:178.639818px;}
.yca_c01077{bottom:179.019903px;}
.yb8_c01077{bottom:198.721500px;}
.yb9_c01077{bottom:199.095836px;}
.yba_c01077{bottom:199.487892px;}
.ybb_c01077{bottom:199.945305px;}
.ybc_c01077{bottom:200.448093px;}
.ybd_c01077{bottom:201.181254px;}
.ybe_c01077{bottom:201.809459px;}
.ybf_c01077{bottom:202.514091px;}
.yc0_c01077{bottom:202.817642px;}
.yc1_c01077{bottom:203.150397px;}
.yb7_c01077{bottom:222.579000px;}
.yae_c01077{bottom:245.823584px;}
.yaf_c01077{bottom:245.823900px;}
.yb6_c01077{bottom:245.824226px;}
.yb1_c01077{bottom:245.824503px;}
.yb0_c01077{bottom:245.824517px;}
.yb5_c01077{bottom:245.824749px;}
.yb2_c01077{bottom:245.825120px;}
.yb3_c01077{bottom:245.825286px;}
.yb4_c01077{bottom:245.825363px;}
.yab_c01077{bottom:269.701503px;}
.yad_c01077{bottom:269.701569px;}
.yaa_c01077{bottom:269.701787px;}
.yac_c01077{bottom:269.701956px;}
.ya8_c01077{bottom:269.702157px;}
.ya6_c01077{bottom:269.702378px;}
.ya9_c01077{bottom:269.702444px;}
.ya7_c01077{bottom:269.702604px;}
.y9f_c01077{bottom:290.250231px;}
.ya0_c01077{bottom:290.505503px;}
.ya1_c01077{bottom:291.093643px;}
.ya2_c01077{bottom:291.893127px;}
.ya3_c01077{bottom:292.388847px;}
.ya4_c01077{bottom:292.906410px;}
.ya5_c01077{bottom:293.188317px;}
.y97_c01077{bottom:312.931500px;}
.y98_c01077{bottom:313.592581px;}
.y99_c01077{bottom:313.859517px;}
.y9a_c01077{bottom:314.102558px;}
.y9b_c01077{bottom:314.528226px;}
.y9c_c01077{bottom:314.941313px;}
.y9d_c01077{bottom:315.347150px;}
.y9e_c01077{bottom:315.918267px;}
.y92_c01077{bottom:335.229867px;}
.y93_c01077{bottom:335.691372px;}
.y94_c01077{bottom:337.176411px;}
.y95_c01077{bottom:337.604781px;}
.y96_c01077{bottom:338.237058px;}
.y8b_c01077{bottom:358.995060px;}
.y8c_c01077{bottom:359.746314px;}
.y8d_c01077{bottom:359.998836px;}
.y8e_c01077{bottom:360.731937px;}
.y8f_c01077{bottom:361.097646px;}
.y90_c01077{bottom:361.367343px;}
.y91_c01077{bottom:362.531856px;}
.yd3_c01077{bottom:380.430000px;}
.y88_c01077{bottom:383.852139px;}
.y89_c01077{bottom:383.852685px;}
.y8a_c01077{bottom:383.853414px;}
.y7f_c01077{bottom:403.823511px;}
.y80_c01077{bottom:404.105499px;}
.y81_c01077{bottom:404.609085px;}
.y82_c01077{bottom:406.148232px;}
.y83_c01077{bottom:406.456956px;}
.y84_c01077{bottom:407.183148px;}
.y85_c01077{bottom:407.338179px;}
.y86_c01077{bottom:407.723793px;}
.y87_c01077{bottom:408.234282px;}
.y77_c01077{bottom:426.237684px;}
.y78_c01077{bottom:426.640401px;}
.y79_c01077{bottom:427.128984px;}
.y7a_c01077{bottom:427.930623px;}
.y7b_c01077{bottom:428.085186px;}
.y7c_c01077{bottom:429.740376px;}
.y7d_c01077{bottom:430.233498px;}
.y7e_c01077{bottom:431.257179px;}
.y6f_c01077{bottom:449.684988px;}
.y70_c01077{bottom:450.800112px;}
.y71_c01077{bottom:451.139949px;}
.y72_c01077{bottom:451.372794px;}
.y73_c01077{bottom:452.123988px;}
.y74_c01077{bottom:452.237949px;}
.y75_c01077{bottom:452.950716px;}
.y76_c01077{bottom:453.689739px;}
.y65_c01077{bottom:471.609000px;}
.y66_c01077{bottom:472.135464px;}
.y67_c01077{bottom:472.398696px;}
.y68_c01077{bottom:473.047200px;}
.y69_c01077{bottom:473.375637px;}
.y6a_c01077{bottom:473.885724px;}
.y6b_c01077{bottom:474.470295px;}
.y6c_c01077{bottom:475.571607px;}
.y6e_c01077{bottom:476.474100px;}
.y6d_c01077{bottom:476.479779px;}
.y5c_c01077{bottom:494.023410px;}
.y5d_c01077{bottom:494.379942px;}
.y5e_c01077{bottom:494.944167px;}
.y5f_c01077{bottom:495.371214px;}
.y60_c01077{bottom:495.854109px;}
.y61_c01077{bottom:496.240959px;}
.y62_c01077{bottom:496.437540px;}
.y63_c01077{bottom:496.923573px;}
.y64_c01077{bottom:497.749872px;}
.y58_c01077{bottom:519.864366px;}
.y59_c01077{bottom:519.864627px;}
.y5a_c01077{bottom:519.864669px;}
.y5b_c01077{bottom:519.865137px;}
.y4b_c01077{bottom:539.392212px;}
.y4c_c01077{bottom:539.861880px;}
.y4d_c01077{bottom:540.097794px;}
.y4e_c01077{bottom:540.367839px;}
.y4f_c01077{bottom:540.670740px;}
.y50_c01077{bottom:541.369272px;}
.y51_c01077{bottom:541.931898px;}
.y52_c01077{bottom:542.243106px;}
.y53_c01077{bottom:542.507091px;}
.y54_c01077{bottom:543.195765px;}
.y55_c01077{bottom:543.711912px;}
.y56_c01077{bottom:544.196406px;}
.y57_c01077{bottom:544.734645px;}
.y44_c01077{bottom:562.079922px;}
.y45_c01077{bottom:563.510463px;}
.y46_c01077{bottom:563.877858px;}
.y47_c01077{bottom:564.845121px;}
.y48_c01077{bottom:565.178298px;}
.y49_c01077{bottom:565.583757px;}
.y4a_c01077{bottom:566.495295px;}
.y40_c01077{bottom:587.196630px;}
.y41_c01077{bottom:588.284910px;}
.y42_c01077{bottom:589.183212px;}
.y43_c01077{bottom:589.563267px;}
.y38_c01077{bottom:607.181577px;}
.y39_c01077{bottom:607.659558px;}
.y3a_c01077{bottom:608.952735px;}
.y3b_c01077{bottom:609.451608px;}
.y3c_c01077{bottom:610.616016px;}
.y3d_c01077{bottom:612.446601px;}
.y3e_c01077{bottom:613.113768px;}
.y3f_c01077{bottom:613.560180px;}
.y36_c01077{bottom:634.292127px;}
.y37_c01077{bottom:634.292778px;}
.y2f_c01077{bottom:654.712581px;}
.y30_c01077{bottom:655.440030px;}
.y31_c01077{bottom:656.550594px;}
.y32_c01077{bottom:657.405039px;}
.y33_c01077{bottom:657.672003px;}
.y34_c01077{bottom:658.109004px;}
.y35_c01077{bottom:659.544723px;}
.y27_c01077{bottom:677.921196px;}
.y28_c01077{bottom:678.563220px;}
.y29_c01077{bottom:679.678593px;}
.y2a_c01077{bottom:681.117834px;}
.y2b_c01077{bottom:681.483513px;}
.y2c_c01077{bottom:682.054974px;}
.y2d_c01077{bottom:682.563975px;}
.y2e_c01077{bottom:682.940811px;}
.y26_c01077{bottom:703.002828px;}
.y24_c01077{bottom:703.003044px;}
.y25_c01077{bottom:703.003059px;}
.y1d_c01077{bottom:723.580593px;}
.y1e_c01077{bottom:724.622397px;}
.y1f_c01077{bottom:725.304285px;}
.y20_c01077{bottom:726.406089px;}
.y21_c01077{bottom:727.291944px;}
.y22_c01077{bottom:727.572879px;}
.y23_c01077{bottom:728.320230px;}
.y16_c01077{bottom:746.267895px;}
.y17_c01077{bottom:746.751900px;}
.y18_c01077{bottom:747.046026px;}
.y19_c01077{bottom:747.632991px;}
.y1a_c01077{bottom:749.135982px;}
.y1b_c01077{bottom:749.803380px;}
.y1c_c01077{bottom:751.419810px;}
.y15_c01077{bottom:772.913142px;}
.y14_c01077{bottom:772.913634px;}
.yb_c01077{bottom:792.450873px;}
.yc_c01077{bottom:793.262640px;}
.yd_c01077{bottom:794.530830px;}
.ye_c01077{bottom:795.546471px;}
.yf_c01077{bottom:796.360581px;}
.y10_c01077{bottom:797.025960px;}
.y11_c01077{bottom:798.148752px;}
.y12_c01077{bottom:798.664047px;}
.y13_c01077{bottom:799.134825px;}
.yd8_c01077{bottom:802.710000px;}
.yd7_c01077{bottom:813.510000px;}
.y4_c01077{bottom:815.946000px;}
.y5_c01077{bottom:817.330350px;}
.y6_c01077{bottom:818.242668px;}
.y7_c01077{bottom:818.712423px;}
.y8_c01077{bottom:819.724665px;}
.y9_c01077{bottom:820.722750px;}
.ya_c01077{bottom:821.196135px;}
.yd6_c01077{bottom:826.470000px;}
.yd5_c01077{bottom:831.600000px;}
.yd4_c01077{bottom:841.050000px;}
.y1_c01077{bottom:861.303000px;}
.y2_c01077{bottom:863.002560px;}
.y3_c01077{bottom:865.005983px;}
.h13_c01077{height:24.150000px;}
.h15_c01077{height:43.050000px;}
.h14_c01077{height:48.300000px;}
.h6_c01077{height:60.914736px;}
.h9_c01077{height:63.015244px;}
.h10_c01077{height:66.154002px;}
.h12_c01077{height:67.204838px;}
.hb_c01077{height:67.216260px;}
.h4_c01077{height:68.266515px;}
.he_c01077{height:69.302807px;}
.h3_c01077{height:69.316769px;}
.hc_c01077{height:70.352849px;}
.h11_c01077{height:70.354256px;}
.h7_c01077{height:70.367023px;}
.hd_c01077{height:71.402892px;}
.hf_c01077{height:72.450000px;}
.h5_c01077{height:73.517785px;}
.ha_c01077{height:74.568039px;}
.h8_c01077{height:75.618293px;}
.h2_c01077{height:120.763584px;}
.h0_c01077{height:1008.450000px;}
.h1_c01077{height:1008.750000px;}
.w0_c01077{width:711.720000px;}
.w1_c01077{width:711.750000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:93.933000px;}
.x3c_c01077{left:117.376485px;}
.x68_c01077{left:130.522500px;}
.x4_c01077{left:133.407000px;}
.x1a_c01077{left:134.420046px;}
.x4c_c01077{left:135.729873px;}
.x59_c01077{left:137.100222px;}
.x66_c01077{left:138.428568px;}
.x72_c01077{left:139.858679px;}
.x77_c01077{left:141.073500px;}
.x7c_c01077{left:144.336000px;}
.x63_c01077{left:149.192694px;}
.x53_c01077{left:151.423560px;}
.x3d_c01077{left:153.527646px;}
.x14_c01077{left:159.391104px;}
.x5a_c01077{left:162.227022px;}
.x47_c01077{left:164.604123px;}
.x6d_c01077{left:166.449727px;}
.xb_c01077{left:170.043516px;}
.x3e_c01077{left:171.618210px;}
.x23_c01077{left:173.707455px;}
.x15_c01077{left:174.875127px;}
.x61_c01077{left:178.754904px;}
.x70_c01077{left:183.871849px;}
.x4d_c01077{left:188.405991px;}
.x3f_c01077{left:192.419835px;}
.x5_c01077{left:196.332000px;}
.x1b_c01077{left:199.510626px;}
.x5d_c01077{left:201.352404px;}
.x69_c01077{left:203.976000px;}
.x16_c01077{left:205.784673px;}
.x2_c01077{left:207.237000px;}
.x48_c01077{left:211.601952px;}
.x40_c01077{left:215.669922px;}
.x64_c01077{left:217.516227px;}
.x7f_c01077{left:219.240000px;}
.x36_c01077{left:224.068254px;}
.xc_c01077{left:227.688516px;}
.x4e_c01077{left:231.594624px;}
.x6a_c01077{left:233.635500px;}
.x29_c01077{left:235.988628px;}
.x6_c01077{left:237.801000px;}
.x12_c01077{left:239.251458px;}
.x65_c01077{left:240.522804px;}
.x1c_c01077{left:242.170269px;}
.x24_c01077{left:243.438162px;}
.x80_c01077{left:244.620000px;}
.x37_c01077{left:247.043790px;}
.x5b_c01077{left:252.456402px;}
.x4f_c01077{left:253.481490px;}
.x30_c01077{left:254.670342px;}
.x7_c01077{left:259.153500px;}
.x6b_c01077{left:260.640000px;}
.x74_c01077{left:262.710000px;}
.x45_c01077{left:264.634128px;}
.x20_c01077{left:268.958118px;}
.x54_c01077{left:272.675724px;}
.xd_c01077{left:273.854016px;}
.x2e_c01077{left:276.249054px;}
.x67_c01077{left:277.455021px;}
.x2a_c01077{left:283.490319px;}
.x17_c01077{left:284.880387px;}
.x49_c01077{left:287.479650px;}
.x55_c01077{left:292.127514px;}
.x7d_c01077{left:294.978000px;}
.x2b_c01077{left:298.353639px;}
.x21_c01077{left:301.906557px;}
.x8_c01077{left:305.164500px;}
.x38_c01077{left:307.518276px;}
.xe_c01077{left:310.859016px;}
.x34_c01077{left:312.154593px;}
.x31_c01077{left:315.988401px;}
.x18_c01077{left:319.991697px;}
.x7a_c01077{left:321.521526px;}
.x2c_c01077{left:322.651284px;}
.x50_c01077{left:326.431710px;}
.x39_c01077{left:328.324515px;}
.x5e_c01077{left:329.569086px;}
.x62_c01077{left:331.341192px;}
.x25_c01077{left:333.415542px;}
.x41_c01077{left:336.596847px;}
.x3_c01077{left:340.798500px;}
.x22_c01077{left:342.415659px;}
.x46_c01077{left:347.004459px;}
.x9_c01077{left:350.532000px;}
.x3a_c01077{left:353.712381px;}
.x56_c01077{left:354.718275px;}
.x26_c01077{left:356.313078px;}
.x2f_c01077{left:359.159649px;}
.x57_c01077{left:364.195854px;}
.x1d_c01077{left:366.421170px;}
.x7b_c01077{left:367.971003px;}
.xa_c01077{left:372.049500px;}
.x4a_c01077{left:376.611252px;}
.x73_c01077{left:378.007457px;}
.x35_c01077{left:379.402515px;}
.x75_c01077{left:381.510000px;}
.x1e_c01077{left:383.965980px;}
.x13_c01077{left:386.436672px;}
.xf_c01077{left:392.139516px;}
.x7e_c01077{left:398.439000px;}
.x51_c01077{left:399.889029px;}
.x2d_c01077{left:402.372780px;}
.x19_c01077{left:405.062307px;}
.x3b_c01077{left:410.698905px;}
.x32_c01077{left:412.362270px;}
.x10_c01077{left:415.562016px;}
.x78_c01077{left:421.797000px;}
.x27_c01077{left:423.842988px;}
.x5f_c01077{left:428.679366px;}
.x1f_c01077{left:430.692651px;}
.x6e_c01077{left:433.217228px;}
.x11_c01077{left:436.961016px;}
.x4b_c01077{left:445.480899px;}
.x28_c01077{left:447.384090px;}
.x42_c01077{left:449.542188px;}
.x5c_c01077{left:450.664038px;}
.x76_c01077{left:452.520000px;}
.x52_c01077{left:460.474368px;}
.x6c_c01077{left:462.385500px;}
.x6f_c01077{left:464.540228px;}
.x33_c01077{left:470.960631px;}
.x58_c01077{left:485.167452px;}
.x43_c01077{left:486.776547px;}
.x60_c01077{left:503.382300px;}
.x71_c01077{left:513.283539px;}
.x44_c01077{left:528.159231px;}
.x79_c01077{left:543.700500px;}
.x86_c01077{left:702.810000px;}
.x83_c01077{left:704.430000px;}
.x85_c01077{left:705.510000px;}
.x82_c01077{left:707.130000px;}
.x84_c01077{left:708.750000px;}
.x81_c01077{left:710.910000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls0_c01077{letter-spacing:0.000000pt;}
.ws0_c01077{word-spacing:0.000000pt;}
.fs11_c01077{font-size:21.466667pt;}
.fs13_c01077{font-size:38.266667pt;}
.fs12_c01077{font-size:42.933333pt;}
.fs4_c01077{font-size:54.146432pt;}
.fs7_c01077{font-size:56.013550pt;}
.fse_c01077{font-size:58.803557pt;}
.fs10_c01077{font-size:59.737634pt;}
.fs9_c01077{font-size:59.747787pt;}
.fs2_c01077{font-size:60.681346pt;}
.fsc_c01077{font-size:61.602495pt;}
.fs1_c01077{font-size:61.614905pt;}
.fsa_c01077{font-size:62.535866pt;}
.fsf_c01077{font-size:62.537116pt;}
.fs5_c01077{font-size:62.548465pt;}
.fsb_c01077{font-size:63.469237pt;}
.fsd_c01077{font-size:64.400000pt;}
.fs3_c01077{font-size:65.349142pt;}
.fs8_c01077{font-size:66.282701pt;}
.fs6_c01077{font-size:67.216260pt;}
.fs0_c01077{font-size:107.345408pt;}
.y0_c01077{bottom:0.000000pt;}
.yd2_c01077{bottom:120.230667pt;}
.ycb_c01077{bottom:135.841333pt;}
.ycc_c01077{bottom:136.171989pt;}
.ycd_c01077{bottom:136.492469pt;}
.yce_c01077{bottom:137.448181pt;}
.ycf_c01077{bottom:137.800037pt;}
.yd0_c01077{bottom:138.234885pt;}
.yd1_c01077{bottom:138.551765pt;}
.yc2_c01077{bottom:156.000501pt;}
.yc3_c01077{bottom:156.496261pt;}
.yc4_c01077{bottom:156.642524pt;}
.yc5_c01077{bottom:157.214216pt;}
.yc6_c01077{bottom:157.519823pt;}
.yc7_c01077{bottom:158.077921pt;}
.yc8_c01077{bottom:158.614771pt;}
.yc9_c01077{bottom:158.790949pt;}
.yca_c01077{bottom:159.128803pt;}
.yb8_c01077{bottom:176.641333pt;}
.yb9_c01077{bottom:176.974076pt;}
.yba_c01077{bottom:177.322571pt;}
.ybb_c01077{bottom:177.729160pt;}
.ybc_c01077{bottom:178.176083pt;}
.ybd_c01077{bottom:178.827781pt;}
.ybe_c01077{bottom:179.386185pt;}
.ybf_c01077{bottom:180.012525pt;}
.yc0_c01077{bottom:180.282348pt;}
.yc1_c01077{bottom:180.578131pt;}
.yb7_c01077{bottom:197.848000pt;}
.yae_c01077{bottom:218.509852pt;}
.yaf_c01077{bottom:218.510133pt;}
.yb6_c01077{bottom:218.510423pt;}
.yb1_c01077{bottom:218.510669pt;}
.yb0_c01077{bottom:218.510681pt;}
.yb5_c01077{bottom:218.510888pt;}
.yb2_c01077{bottom:218.511217pt;}
.yb3_c01077{bottom:218.511365pt;}
.yb4_c01077{bottom:218.511433pt;}
.yab_c01077{bottom:239.734669pt;}
.yad_c01077{bottom:239.734728pt;}
.yaa_c01077{bottom:239.734921pt;}
.yac_c01077{bottom:239.735072pt;}
.ya8_c01077{bottom:239.735251pt;}
.ya6_c01077{bottom:239.735447pt;}
.ya9_c01077{bottom:239.735505pt;}
.ya7_c01077{bottom:239.735648pt;}
.y9f_c01077{bottom:258.000205pt;}
.ya0_c01077{bottom:258.227113pt;}
.ya1_c01077{bottom:258.749905pt;}
.ya2_c01077{bottom:259.460557pt;}
.ya3_c01077{bottom:259.901197pt;}
.ya4_c01077{bottom:260.361253pt;}
.ya5_c01077{bottom:260.611837pt;}
.y97_c01077{bottom:278.161333pt;}
.y98_c01077{bottom:278.748961pt;}
.y99_c01077{bottom:278.986237pt;}
.y9a_c01077{bottom:279.202273pt;}
.y9b_c01077{bottom:279.580645pt;}
.y9c_c01077{bottom:279.947833pt;}
.y9d_c01077{bottom:280.308577pt;}
.y9e_c01077{bottom:280.816237pt;}
.y92_c01077{bottom:297.982104pt;}
.y93_c01077{bottom:298.392331pt;}
.y94_c01077{bottom:299.712365pt;}
.y95_c01077{bottom:300.093139pt;}
.y96_c01077{bottom:300.655163pt;}
.y8b_c01077{bottom:319.106720pt;}
.y8c_c01077{bottom:319.774501pt;}
.y8d_c01077{bottom:319.998965pt;}
.y8e_c01077{bottom:320.650611pt;}
.y8f_c01077{bottom:320.975685pt;}
.y90_c01077{bottom:321.215416pt;}
.y91_c01077{bottom:322.250539pt;}
.yd3_c01077{bottom:338.160000pt;}
.y88_c01077{bottom:341.201901pt;}
.y89_c01077{bottom:341.202387pt;}
.y8a_c01077{bottom:341.203035pt;}
.y7f_c01077{bottom:358.954232pt;}
.y80_c01077{bottom:359.204888pt;}
.y81_c01077{bottom:359.652520pt;}
.y82_c01077{bottom:361.020651pt;}
.y83_c01077{bottom:361.295072pt;}
.y84_c01077{bottom:361.940576pt;}
.y85_c01077{bottom:362.078381pt;}
.y86_c01077{bottom:362.421149pt;}
.y87_c01077{bottom:362.874917pt;}
.y77_c01077{bottom:378.877941pt;}
.y78_c01077{bottom:379.235912pt;}
.y79_c01077{bottom:379.670208pt;}
.y7a_c01077{bottom:380.382776pt;}
.y7b_c01077{bottom:380.520165pt;}
.y7c_c01077{bottom:381.991445pt;}
.y7d_c01077{bottom:382.429776pt;}
.y7e_c01077{bottom:383.339715pt;}
.y6f_c01077{bottom:399.719989pt;}
.y70_c01077{bottom:400.711211pt;}
.y71_c01077{bottom:401.013288pt;}
.y72_c01077{bottom:401.220261pt;}
.y73_c01077{bottom:401.887989pt;}
.y74_c01077{bottom:401.989288pt;}
.y75_c01077{bottom:402.622859pt;}
.y76_c01077{bottom:403.279768pt;}
.y65_c01077{bottom:419.208000pt;}
.y66_c01077{bottom:419.675968pt;}
.y67_c01077{bottom:419.909952pt;}
.y68_c01077{bottom:420.486400pt;}
.y69_c01077{bottom:420.778344pt;}
.y6a_c01077{bottom:421.231755pt;}
.y6b_c01077{bottom:421.751373pt;}
.y6c_c01077{bottom:422.730317pt;}
.y6e_c01077{bottom:423.532533pt;}
.y6d_c01077{bottom:423.537581pt;}
.y5c_c01077{bottom:439.131920pt;}
.y5d_c01077{bottom:439.448837pt;}
.y5e_c01077{bottom:439.950371pt;}
.y5f_c01077{bottom:440.329968pt;}
.y60_c01077{bottom:440.759208pt;}
.y61_c01077{bottom:441.103075pt;}
.y62_c01077{bottom:441.277813pt;}
.y63_c01077{bottom:441.709843pt;}
.y64_c01077{bottom:442.444331pt;}
.y58_c01077{bottom:462.101659pt;}
.y59_c01077{bottom:462.101891pt;}
.y5a_c01077{bottom:462.101928pt;}
.y5b_c01077{bottom:462.102344pt;}
.y4b_c01077{bottom:479.459744pt;}
.y4c_c01077{bottom:479.877227pt;}
.y4d_c01077{bottom:480.086928pt;}
.y4e_c01077{bottom:480.326968pt;}
.y4f_c01077{bottom:480.596213pt;}
.y50_c01077{bottom:481.217131pt;}
.y51_c01077{bottom:481.717243pt;}
.y52_c01077{bottom:481.993872pt;}
.y53_c01077{bottom:482.228525pt;}
.y54_c01077{bottom:482.840680pt;}
.y55_c01077{bottom:483.299477pt;}
.y56_c01077{bottom:483.730139pt;}
.y57_c01077{bottom:484.208573pt;}
.y44_c01077{bottom:499.626597pt;}
.y45_c01077{bottom:500.898189pt;}
.y46_c01077{bottom:501.224763pt;}
.y47_c01077{bottom:502.084552pt;}
.y48_c01077{bottom:502.380709pt;}
.y49_c01077{bottom:502.741117pt;}
.y4a_c01077{bottom:503.551373pt;}
.y40_c01077{bottom:521.952560pt;}
.y41_c01077{bottom:522.919920pt;}
.y42_c01077{bottom:523.718411pt;}
.y43_c01077{bottom:524.056237pt;}
.y38_c01077{bottom:539.716957pt;}
.y39_c01077{bottom:540.141829pt;}
.y3a_c01077{bottom:541.291320pt;}
.y3b_c01077{bottom:541.734763pt;}
.y3c_c01077{bottom:542.769792pt;}
.y3d_c01077{bottom:544.396979pt;}
.y3e_c01077{bottom:544.990016pt;}
.y3f_c01077{bottom:545.386827pt;}
.y36_c01077{bottom:563.815224pt;}
.y37_c01077{bottom:563.815803pt;}
.y2f_c01077{bottom:581.966739pt;}
.y30_c01077{bottom:582.613360pt;}
.y31_c01077{bottom:583.600528pt;}
.y32_c01077{bottom:584.360035pt;}
.y33_c01077{bottom:584.597336pt;}
.y34_c01077{bottom:584.985781pt;}
.y35_c01077{bottom:586.261976pt;}
.y27_c01077{bottom:602.596619pt;}
.y28_c01077{bottom:603.167307pt;}
.y29_c01077{bottom:604.158749pt;}
.y2a_c01077{bottom:605.438075pt;}
.y2b_c01077{bottom:605.763123pt;}
.y2c_c01077{bottom:606.271088pt;}
.y2d_c01077{bottom:606.723533pt;}
.y2e_c01077{bottom:607.058499pt;}
.y26_c01077{bottom:624.891403pt;}
.y24_c01077{bottom:624.891595pt;}
.y25_c01077{bottom:624.891608pt;}
.y1d_c01077{bottom:643.182749pt;}
.y1e_c01077{bottom:644.108797pt;}
.y1f_c01077{bottom:644.714920pt;}
.y20_c01077{bottom:645.694301pt;}
.y21_c01077{bottom:646.481728pt;}
.y22_c01077{bottom:646.731448pt;}
.y23_c01077{bottom:647.395760pt;}
.y16_c01077{bottom:663.349240pt;}
.y17_c01077{bottom:663.779467pt;}
.y18_c01077{bottom:664.040912pt;}
.y19_c01077{bottom:664.562659pt;}
.y1a_c01077{bottom:665.898651pt;}
.y1b_c01077{bottom:666.491893pt;}
.y1c_c01077{bottom:667.928720pt;}
.y15_c01077{bottom:687.033904pt;}
.y14_c01077{bottom:687.034341pt;}
.yb_c01077{bottom:704.400776pt;}
.yc_c01077{bottom:705.122347pt;}
.yd_c01077{bottom:706.249627pt;}
.ye_c01077{bottom:707.152419pt;}
.yf_c01077{bottom:707.876072pt;}
.y10_c01077{bottom:708.467520pt;}
.y11_c01077{bottom:709.465557pt;}
.y12_c01077{bottom:709.923597pt;}
.y13_c01077{bottom:710.342067pt;}
.yd8_c01077{bottom:713.520000pt;}
.yd7_c01077{bottom:723.120000pt;}
.y4_c01077{bottom:725.285333pt;}
.y5_c01077{bottom:726.515867pt;}
.y6_c01077{bottom:727.326816pt;}
.y7_c01077{bottom:727.744376pt;}
.y8_c01077{bottom:728.644147pt;}
.y9_c01077{bottom:729.531333pt;}
.ya_c01077{bottom:729.952120pt;}
.yd6_c01077{bottom:734.640000pt;}
.yd5_c01077{bottom:739.200000pt;}
.yd4_c01077{bottom:747.600000pt;}
.y1_c01077{bottom:765.602667pt;}
.y2_c01077{bottom:767.113387pt;}
.y3_c01077{bottom:768.894207pt;}
.h13_c01077{height:21.466667pt;}
.h15_c01077{height:38.266667pt;}
.h14_c01077{height:42.933333pt;}
.h6_c01077{height:54.146432pt;}
.h9_c01077{height:56.013550pt;}
.h10_c01077{height:58.803557pt;}
.h12_c01077{height:59.737634pt;}
.hb_c01077{height:59.747787pt;}
.h4_c01077{height:60.681346pt;}
.he_c01077{height:61.602495pt;}
.h3_c01077{height:61.614905pt;}
.hc_c01077{height:62.535866pt;}
.h11_c01077{height:62.537116pt;}
.h7_c01077{height:62.548465pt;}
.hd_c01077{height:63.469237pt;}
.hf_c01077{height:64.400000pt;}
.h5_c01077{height:65.349142pt;}
.ha_c01077{height:66.282701pt;}
.h8_c01077{height:67.216260pt;}
.h2_c01077{height:107.345408pt;}
.h0_c01077{height:896.400000pt;}
.h1_c01077{height:896.666667pt;}
.w0_c01077{width:632.640000pt;}
.w1_c01077{width:632.666667pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:83.496000pt;}
.x3c_c01077{left:104.334653pt;}
.x68_c01077{left:116.020000pt;}
.x4_c01077{left:118.584000pt;}
.x1a_c01077{left:119.484485pt;}
.x4c_c01077{left:120.648776pt;}
.x59_c01077{left:121.866864pt;}
.x66_c01077{left:123.047616pt;}
.x72_c01077{left:124.318825pt;}
.x77_c01077{left:125.398667pt;}
.x7c_c01077{left:128.298667pt;}
.x63_c01077{left:132.615728pt;}
.x53_c01077{left:134.598720pt;}
.x3d_c01077{left:136.469019pt;}
.x14_c01077{left:141.680981pt;}
.x5a_c01077{left:144.201797pt;}
.x47_c01077{left:146.314776pt;}
.x6d_c01077{left:147.955313pt;}
.xb_c01077{left:151.149792pt;}
.x3e_c01077{left:152.549520pt;}
.x23_c01077{left:154.406627pt;}
.x15_c01077{left:155.444557pt;}
.x61_c01077{left:158.893248pt;}
.x70_c01077{left:163.441644pt;}
.x4d_c01077{left:167.471992pt;}
.x3f_c01077{left:171.039853pt;}
.x5_c01077{left:174.517333pt;}
.x1b_c01077{left:177.342779pt;}
.x5d_c01077{left:178.979915pt;}
.x69_c01077{left:181.312000pt;}
.x16_c01077{left:182.919709pt;}
.x2_c01077{left:184.210667pt;}
.x48_c01077{left:188.090624pt;}
.x40_c01077{left:191.706597pt;}
.x64_c01077{left:193.347757pt;}
.x7f_c01077{left:194.880000pt;}
.x36_c01077{left:199.171781pt;}
.xc_c01077{left:202.389792pt;}
.x4e_c01077{left:205.861888pt;}
.x6a_c01077{left:207.676000pt;}
.x29_c01077{left:209.767669pt;}
.x6_c01077{left:211.378667pt;}
.x12_c01077{left:212.667963pt;}
.x65_c01077{left:213.798048pt;}
.x1c_c01077{left:215.262461pt;}
.x24_c01077{left:216.389477pt;}
.x80_c01077{left:217.440000pt;}
.x37_c01077{left:219.594480pt;}
.x5b_c01077{left:224.405691pt;}
.x4f_c01077{left:225.316880pt;}
.x30_c01077{left:226.373637pt;}
.x7_c01077{left:230.358667pt;}
.x6b_c01077{left:231.680000pt;}
.x74_c01077{left:233.520000pt;}
.x45_c01077{left:235.230336pt;}
.x20_c01077{left:239.073883pt;}
.x54_c01077{left:242.378421pt;}
.xd_c01077{left:243.425792pt;}
.x2e_c01077{left:245.554715pt;}
.x67_c01077{left:246.626685pt;}
.x2a_c01077{left:251.991395pt;}
.x17_c01077{left:253.227011pt;}
.x49_c01077{left:255.537467pt;}
.x55_c01077{left:259.668901pt;}
.x7d_c01077{left:262.202667pt;}
.x2b_c01077{left:265.203235pt;}
.x21_c01077{left:268.361384pt;}
.x8_c01077{left:271.257333pt;}
.x38_c01077{left:273.349579pt;}
.xe_c01077{left:276.319125pt;}
.x34_c01077{left:277.470749pt;}
.x31_c01077{left:280.878579pt;}
.x18_c01077{left:284.437064pt;}
.x7a_c01077{left:285.796912pt;}
.x2c_c01077{left:286.801141pt;}
.x50_c01077{left:290.161520pt;}
.x39_c01077{left:291.844013pt;}
.x5e_c01077{left:292.950299pt;}
.x62_c01077{left:294.525504pt;}
.x25_c01077{left:296.369371pt;}
.x41_c01077{left:299.197197pt;}
.x3_c01077{left:302.932000pt;}
.x22_c01077{left:304.369475pt;}
.x46_c01077{left:308.448408pt;}
.x9_c01077{left:311.584000pt;}
.x3a_c01077{left:314.411005pt;}
.x56_c01077{left:315.305133pt;}
.x26_c01077{left:316.722736pt;}
.x2f_c01077{left:319.253021pt;}
.x57_c01077{left:323.729648pt;}
.x1d_c01077{left:325.707707pt;}
.x7b_c01077{left:327.085336pt;}
.xa_c01077{left:330.710667pt;}
.x4a_c01077{left:334.765557pt;}
.x73_c01077{left:336.006628pt;}
.x35_c01077{left:337.246680pt;}
.x75_c01077{left:339.120000pt;}
.x1e_c01077{left:341.303093pt;}
.x13_c01077{left:343.499264pt;}
.xf_c01077{left:348.568459pt;}
.x7e_c01077{left:354.168000pt;}
.x51_c01077{left:355.456915pt;}
.x2d_c01077{left:357.664693pt;}
.x19_c01077{left:360.055384pt;}
.x3b_c01077{left:365.065693pt;}
.x32_c01077{left:366.544240pt;}
.x10_c01077{left:369.388459pt;}
.x78_c01077{left:374.930667pt;}
.x27_c01077{left:376.749323pt;}
.x5f_c01077{left:381.048325pt;}
.x1f_c01077{left:382.837912pt;}
.x6e_c01077{left:385.081980pt;}
.x11_c01077{left:388.409792pt;}
.x4b_c01077{left:395.983021pt;}
.x28_c01077{left:397.674747pt;}
.x42_c01077{left:399.593056pt;}
.x5c_c01077{left:400.590256pt;}
.x76_c01077{left:402.240000pt;}
.x52_c01077{left:409.310549pt;}
.x6c_c01077{left:411.009333pt;}
.x6f_c01077{left:412.924647pt;}
.x33_c01077{left:418.631672pt;}
.x58_c01077{left:431.259957pt;}
.x43_c01077{left:432.690264pt;}
.x60_c01077{left:447.450933pt;}
.x71_c01077{left:456.252035pt;}
.x44_c01077{left:469.474872pt;}
.x79_c01077{left:483.289333pt;}
.x86_c01077{left:624.720000pt;}
.x83_c01077{left:626.160000pt;}
.x85_c01077{left:627.120000pt;}
.x82_c01077{left:628.560000pt;}
.x84_c01077{left:630.000000pt;}
.x81_c01077{left:631.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_c01078 {
    display:none;
  }
  .loading-indicator_c01078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01078 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01078 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01078" -> "#page-container .classname_c01078")
 */
.pf_c01078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01078 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01078 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01078 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01078 {overflow:visible;}
  }
}
.c_c01078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01078 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01078:after { /* webkit #35443 */
  content: '';
}
.t_c01078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01078 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01078 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01078 { /* info for Javascript */
  display:none;
}
.l_c01078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.000000;font-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_c01078{transform:matrix(0.029900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029900,0.000000,0.000000,0.250000,0,0);}
.md7_c01078{transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033830,0.000000,0.000000,0.250000,0,0);}
.md_c01078{transform:matrix(0.040600,-0.000893,0.005499,0.249940,0,0);-ms-transform:matrix(0.040600,-0.000893,0.005499,0.249940,0,0);-webkit-transform:matrix(0.040600,-0.000893,0.005499,0.249940,0,0);}
.m39_c01078{transform:matrix(0.046370,-0.000696,0.003750,0.249972,0,0);-ms-transform:matrix(0.046370,-0.000696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.046370,-0.000696,0.003750,0.249972,0,0);}
.m10_c01078{transform:matrix(0.054537,-0.001200,0.005499,0.249940,0,0);-ms-transform:matrix(0.054537,-0.001200,0.005499,0.249940,0,0);-webkit-transform:matrix(0.054537,-0.001200,0.005499,0.249940,0,0);}
.me_c01078{transform:matrix(0.067749,-0.001490,0.005499,0.249940,0,0);-ms-transform:matrix(0.067749,-0.001490,0.005499,0.249940,0,0);-webkit-transform:matrix(0.067749,-0.001490,0.005499,0.249940,0,0);}
.mf_c01078{transform:matrix(0.071638,-0.001576,0.005499,0.249940,0,0);-ms-transform:matrix(0.071638,-0.001576,0.005499,0.249940,0,0);-webkit-transform:matrix(0.071638,-0.001576,0.005499,0.249940,0,0);}
.m27_c01078{transform:matrix(0.086294,-0.001898,0.005499,0.249940,0,0);-ms-transform:matrix(0.086294,-0.001898,0.005499,0.249940,0,0);-webkit-transform:matrix(0.086294,-0.001898,0.005499,0.249940,0,0);}
.md8_c01078{transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);}
.m8e_c01078{transform:matrix(0.106039,-0.002333,0.005499,0.249940,0,0);-ms-transform:matrix(0.106039,-0.002333,0.005499,0.249940,0,0);-webkit-transform:matrix(0.106039,-0.002333,0.005499,0.249940,0,0);}
.ma4_c01078{transform:matrix(0.123880,-0.001610,0.003250,0.249979,0,0);-ms-transform:matrix(0.123880,-0.001610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.123880,-0.001610,0.003250,0.249979,0,0);}
.m9f_c01078{transform:matrix(0.127104,-0.001652,0.003250,0.249979,0,0);-ms-transform:matrix(0.127104,-0.001652,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127104,-0.001652,0.003250,0.249979,0,0);}
.m2b_c01078{transform:matrix(0.134133,-0.002951,0.005499,0.249940,0,0);-ms-transform:matrix(0.134133,-0.002951,0.005499,0.249940,0,0);-webkit-transform:matrix(0.134133,-0.002951,0.005499,0.249940,0,0);}
.ma7_c01078{transform:matrix(0.135584,-0.001763,0.003250,0.249979,0,0);-ms-transform:matrix(0.135584,-0.001763,0.003250,0.249979,0,0);-webkit-transform:matrix(0.135584,-0.001763,0.003250,0.249979,0,0);}
.m37_c01078{transform:matrix(0.136100,-0.002041,0.003750,0.249972,0,0);-ms-transform:matrix(0.136100,-0.002041,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136100,-0.002041,0.003750,0.249972,0,0);}
.m2d_c01078{transform:matrix(0.140626,-0.003094,0.005499,0.249940,0,0);-ms-transform:matrix(0.140626,-0.003094,0.005499,0.249940,0,0);-webkit-transform:matrix(0.140626,-0.003094,0.005499,0.249940,0,0);}
.m4e_c01078{transform:matrix(0.143799,-0.002157,0.003750,0.249972,0,0);-ms-transform:matrix(0.143799,-0.002157,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143799,-0.002157,0.003750,0.249972,0,0);}
.m21_c01078{transform:matrix(0.144895,-0.003188,0.005499,0.249940,0,0);-ms-transform:matrix(0.144895,-0.003188,0.005499,0.249940,0,0);-webkit-transform:matrix(0.144895,-0.003188,0.005499,0.249940,0,0);}
.m2e_c01078{transform:matrix(0.147219,-0.003239,0.005499,0.249940,0,0);-ms-transform:matrix(0.147219,-0.003239,0.005499,0.249940,0,0);-webkit-transform:matrix(0.147219,-0.003239,0.005499,0.249940,0,0);}
.mad_c01078{transform:matrix(0.153398,-0.002608,0.004249,0.249964,0,0);-ms-transform:matrix(0.153398,-0.002608,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153398,-0.002608,0.004249,0.249964,0,0);}
.m36_c01078{transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);-ms-transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153913,-0.002309,0.003750,0.249972,0,0);}
.m72_c01078{transform:matrix(0.156117,-0.002342,0.003750,0.249972,0,0);-ms-transform:matrix(0.156117,-0.002342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156117,-0.002342,0.003750,0.249972,0,0);}
.mb1_c01078{transform:matrix(0.156812,-0.002666,0.004249,0.249964,0,0);-ms-transform:matrix(0.156812,-0.002666,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156812,-0.002666,0.004249,0.249964,0,0);}
.m22_c01078{transform:matrix(0.156837,-0.003450,0.005499,0.249940,0,0);-ms-transform:matrix(0.156837,-0.003450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156837,-0.003450,0.005499,0.249940,0,0);}
.m85_c01078{transform:matrix(0.157172,-0.003458,0.005499,0.249940,0,0);-ms-transform:matrix(0.157172,-0.003458,0.005499,0.249940,0,0);-webkit-transform:matrix(0.157172,-0.003458,0.005499,0.249940,0,0);}
.m8a_c01078{transform:matrix(0.158197,-0.003480,0.005499,0.249940,0,0);-ms-transform:matrix(0.158197,-0.003480,0.005499,0.249940,0,0);-webkit-transform:matrix(0.158197,-0.003480,0.005499,0.249940,0,0);}
.m99_c01078{transform:matrix(0.159567,-0.002074,0.003250,0.249979,0,0);-ms-transform:matrix(0.159567,-0.002074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159567,-0.002074,0.003250,0.249979,0,0);}
.mdc_c01078{transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160180,0.000000,0.000000,0.250000,0,0);}
.m3a_c01078{transform:matrix(0.161652,-0.002425,0.003750,0.249972,0,0);-ms-transform:matrix(0.161652,-0.002425,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161652,-0.002425,0.003750,0.249972,0,0);}
.m8d_c01078{transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);-ms-transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162131,-0.003567,0.005499,0.249940,0,0);}
.m3f_c01078{transform:matrix(0.162257,-0.002434,0.003750,0.249972,0,0);-ms-transform:matrix(0.162257,-0.002434,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162257,-0.002434,0.003750,0.249972,0,0);}
.m55_c01078{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);}
.m49_c01078{transform:matrix(0.164067,-0.002461,0.003750,0.249972,0,0);-ms-transform:matrix(0.164067,-0.002461,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164067,-0.002461,0.003750,0.249972,0,0);}
.m33_c01078{transform:matrix(0.164167,-0.002462,0.003750,0.249972,0,0);-ms-transform:matrix(0.164167,-0.002462,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164167,-0.002462,0.003750,0.249972,0,0);}
.m66_c01078{transform:matrix(0.164407,-0.002466,0.003750,0.249972,0,0);-ms-transform:matrix(0.164407,-0.002466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164407,-0.002466,0.003750,0.249972,0,0);}
.mc4_c01078{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);}
.m89_c01078{transform:matrix(0.166125,-0.003655,0.005499,0.249940,0,0);-ms-transform:matrix(0.166125,-0.003655,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166125,-0.003655,0.005499,0.249940,0,0);}
.m62_c01078{transform:matrix(0.166166,-0.002492,0.003750,0.249972,0,0);-ms-transform:matrix(0.166166,-0.002492,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166166,-0.002492,0.003750,0.249972,0,0);}
.m5d_c01078{transform:matrix(0.166936,-0.002504,0.003750,0.249972,0,0);-ms-transform:matrix(0.166936,-0.002504,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166936,-0.002504,0.003750,0.249972,0,0);}
.m6b_c01078{transform:matrix(0.166976,-0.002505,0.003750,0.249972,0,0);-ms-transform:matrix(0.166976,-0.002505,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166976,-0.002505,0.003750,0.249972,0,0);}
.m84_c01078{transform:matrix(0.167170,-0.003678,0.005499,0.249940,0,0);-ms-transform:matrix(0.167170,-0.003678,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167170,-0.003678,0.005499,0.249940,0,0);}
.mc3_c01078{transform:matrix(0.167376,-0.002511,0.003750,0.249972,0,0);-ms-transform:matrix(0.167376,-0.002511,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167376,-0.002511,0.003750,0.249972,0,0);}
.m96_c01078{transform:matrix(0.167656,-0.002850,0.004249,0.249964,0,0);-ms-transform:matrix(0.167656,-0.002850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167656,-0.002850,0.004249,0.249964,0,0);}
.m70_c01078{transform:matrix(0.168131,-0.002522,0.003750,0.249972,0,0);-ms-transform:matrix(0.168131,-0.002522,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168131,-0.002522,0.003750,0.249972,0,0);}
.mc5_c01078{transform:matrix(0.168486,-0.002527,0.003750,0.249972,0,0);-ms-transform:matrix(0.168486,-0.002527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168486,-0.002527,0.003750,0.249972,0,0);}
.m2a_c01078{transform:matrix(0.169744,-0.003734,0.005499,0.249940,0,0);-ms-transform:matrix(0.169744,-0.003734,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169744,-0.003734,0.005499,0.249940,0,0);}
.m7d_c01078{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);}
.ma8_c01078{transform:matrix(0.170490,-0.002898,0.004249,0.249964,0,0);-ms-transform:matrix(0.170490,-0.002898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170490,-0.002898,0.004249,0.249964,0,0);}
.mac_c01078{transform:matrix(0.170675,-0.002901,0.004249,0.249964,0,0);-ms-transform:matrix(0.170675,-0.002901,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170675,-0.002901,0.004249,0.249964,0,0);}
.m90_c01078{transform:matrix(0.171285,-0.002912,0.004249,0.249964,0,0);-ms-transform:matrix(0.171285,-0.002912,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171285,-0.002912,0.004249,0.249964,0,0);}
.m82_c01078{transform:matrix(0.171289,-0.003768,0.005499,0.249940,0,0);-ms-transform:matrix(0.171289,-0.003768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171289,-0.003768,0.005499,0.249940,0,0);}
.m18_c01078{transform:matrix(0.172083,-0.003786,0.005499,0.249940,0,0);-ms-transform:matrix(0.172083,-0.003786,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172083,-0.003786,0.005499,0.249940,0,0);}
.mab_c01078{transform:matrix(0.172505,-0.002933,0.004249,0.249964,0,0);-ms-transform:matrix(0.172505,-0.002933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172505,-0.002933,0.004249,0.249964,0,0);}
.ma9_c01078{transform:matrix(0.172555,-0.002933,0.004249,0.249964,0,0);-ms-transform:matrix(0.172555,-0.002933,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172555,-0.002933,0.004249,0.249964,0,0);}
.mdb_c01078{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);}
.m83_c01078{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);}
.m2c_c01078{transform:matrix(0.173783,-0.003823,0.005499,0.249940,0,0);-ms-transform:matrix(0.173783,-0.003823,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173783,-0.003823,0.005499,0.249940,0,0);}
.mcd_c01078{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);}
.m6f_c01078{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);}
.mb6_c01078{transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);-ms-transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175745,-0.002988,0.004249,0.249964,0,0);}
.mca_c01078{transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-ms-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176735,-0.002651,0.003750,0.249972,0,0);}
.mc9_c01078{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);}
.m71_c01078{transform:matrix(0.176920,-0.002654,0.003750,0.249972,0,0);-ms-transform:matrix(0.176920,-0.002654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176920,-0.002654,0.003750,0.249972,0,0);}
.m5c_c01078{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);}
.maa_c01078{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);}
.mba_c01078{transform:matrix(0.178080,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178080,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178080,-0.002671,0.003750,0.249972,0,0);}
.mcb_c01078{transform:matrix(0.178330,-0.002675,0.003750,0.249972,0,0);-ms-transform:matrix(0.178330,-0.002675,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178330,-0.002675,0.003750,0.249972,0,0);}
.m88_c01078{transform:matrix(0.178952,-0.003937,0.005499,0.249940,0,0);-ms-transform:matrix(0.178952,-0.003937,0.005499,0.249940,0,0);-webkit-transform:matrix(0.178952,-0.003937,0.005499,0.249940,0,0);}
.m41_c01078{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);}
.m35_c01078{transform:matrix(0.179810,-0.002697,0.003750,0.249972,0,0);-ms-transform:matrix(0.179810,-0.002697,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179810,-0.002697,0.003750,0.249972,0,0);}
.m2f_c01078{transform:matrix(0.179831,-0.003956,0.005499,0.249940,0,0);-ms-transform:matrix(0.179831,-0.003956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179831,-0.003956,0.005499,0.249940,0,0);}
.mbe_c01078{transform:matrix(0.179900,-0.002698,0.003750,0.249972,0,0);-ms-transform:matrix(0.179900,-0.002698,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179900,-0.002698,0.003750,0.249972,0,0);}
.m4b_c01078{transform:matrix(0.180220,-0.002703,0.003750,0.249972,0,0);-ms-transform:matrix(0.180220,-0.002703,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180220,-0.002703,0.003750,0.249972,0,0);}
.m46_c01078{transform:matrix(0.181835,-0.002728,0.003750,0.249972,0,0);-ms-transform:matrix(0.181835,-0.002728,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181835,-0.002728,0.003750,0.249972,0,0);}
.mb9_c01078{transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);-ms-transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182564,-0.002738,0.003750,0.249972,0,0);}
.m3e_c01078{transform:matrix(0.183539,-0.002753,0.003750,0.249972,0,0);-ms-transform:matrix(0.183539,-0.002753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183539,-0.002753,0.003750,0.249972,0,0);}
.m44_c01078{transform:matrix(0.183564,-0.002753,0.003750,0.249972,0,0);-ms-transform:matrix(0.183564,-0.002753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183564,-0.002753,0.003750,0.249972,0,0);}
.mc0_c01078{transform:matrix(0.184134,-0.002762,0.003750,0.249972,0,0);-ms-transform:matrix(0.184134,-0.002762,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184134,-0.002762,0.003750,0.249972,0,0);}
.m98_c01078{transform:matrix(0.184229,-0.002395,0.003250,0.249979,0,0);-ms-transform:matrix(0.184229,-0.002395,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184229,-0.002395,0.003250,0.249979,0,0);}
.m4f_c01078{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);}
.m9d_c01078{transform:matrix(0.184844,-0.002403,0.003250,0.249979,0,0);-ms-transform:matrix(0.184844,-0.002403,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184844,-0.002403,0.003250,0.249979,0,0);}
.mdd_c01078{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);}
.mc2_c01078{transform:matrix(0.185109,-0.002777,0.003750,0.249972,0,0);-ms-transform:matrix(0.185109,-0.002777,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185109,-0.002777,0.003750,0.249972,0,0);}
.m25_c01078{transform:matrix(0.185215,-0.004075,0.005499,0.249940,0,0);-ms-transform:matrix(0.185215,-0.004075,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185215,-0.004075,0.005499,0.249940,0,0);}
.m7a_c01078{transform:matrix(0.185239,-0.002779,0.003750,0.249972,0,0);-ms-transform:matrix(0.185239,-0.002779,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185239,-0.002779,0.003750,0.249972,0,0);}
.m3b_c01078{transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-ms-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185354,-0.002780,0.003750,0.249972,0,0);}
.mc6_c01078{transform:matrix(0.186574,-0.002799,0.003750,0.249972,0,0);-ms-transform:matrix(0.186574,-0.002799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186574,-0.002799,0.003750,0.249972,0,0);}
.m57_c01078{transform:matrix(0.187044,-0.002806,0.003750,0.249972,0,0);-ms-transform:matrix(0.187044,-0.002806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187044,-0.002806,0.003750,0.249972,0,0);}
.m9c_c01078{transform:matrix(0.187654,-0.002440,0.003250,0.249979,0,0);-ms-transform:matrix(0.187654,-0.002440,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187654,-0.002440,0.003250,0.249979,0,0);}
.maf_c01078{transform:matrix(0.187833,-0.003193,0.004249,0.249964,0,0);-ms-transform:matrix(0.187833,-0.003193,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187833,-0.003193,0.004249,0.249964,0,0);}
.m15_c01078{transform:matrix(0.187970,-0.004135,0.005499,0.249940,0,0);-ms-transform:matrix(0.187970,-0.004135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187970,-0.004135,0.005499,0.249940,0,0);}
.mb4_c01078{transform:matrix(0.188298,-0.003201,0.004249,0.249964,0,0);-ms-transform:matrix(0.188298,-0.003201,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188298,-0.003201,0.004249,0.249964,0,0);}
.mb7_c01078{transform:matrix(0.188493,-0.003204,0.004249,0.249964,0,0);-ms-transform:matrix(0.188493,-0.003204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188493,-0.003204,0.004249,0.249964,0,0);}
.mb3_c01078{transform:matrix(0.188688,-0.003208,0.004249,0.249964,0,0);-ms-transform:matrix(0.188688,-0.003208,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188688,-0.003208,0.004249,0.249964,0,0);}
.m20_c01078{transform:matrix(0.188744,-0.004152,0.005499,0.249940,0,0);-ms-transform:matrix(0.188744,-0.004152,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188744,-0.004152,0.005499,0.249940,0,0);}
.mdf_c01078{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);}
.m50_c01078{transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);-ms-transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189374,-0.002841,0.003750,0.249972,0,0);}
.m3d_c01078{transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);-ms-transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190304,-0.002855,0.003750,0.249972,0,0);}
.m93_c01078{transform:matrix(0.190417,-0.003237,0.004249,0.249964,0,0);-ms-transform:matrix(0.190417,-0.003237,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190417,-0.003237,0.004249,0.249964,0,0);}
.m65_c01078{transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191308,-0.002870,0.003750,0.249972,0,0);}
.mb5_c01078{transform:matrix(0.191667,-0.003258,0.004249,0.249964,0,0);-ms-transform:matrix(0.191667,-0.003258,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191667,-0.003258,0.004249,0.249964,0,0);}
.mb2_c01078{transform:matrix(0.191697,-0.003259,0.004249,0.249964,0,0);-ms-transform:matrix(0.191697,-0.003259,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191697,-0.003259,0.004249,0.249964,0,0);}
.m68_c01078{transform:matrix(0.191848,-0.002878,0.003750,0.249972,0,0);-ms-transform:matrix(0.191848,-0.002878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191848,-0.002878,0.003750,0.249972,0,0);}
.m30_c01078{transform:matrix(0.192039,-0.004225,0.005499,0.249940,0,0);-ms-transform:matrix(0.192039,-0.004225,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192039,-0.004225,0.005499,0.249940,0,0);}
.mda_c01078{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);}
.ma3_c01078{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);}
.m86_c01078{transform:matrix(0.193238,-0.004251,0.005499,0.249940,0,0);-ms-transform:matrix(0.193238,-0.004251,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193238,-0.004251,0.005499,0.249940,0,0);}
.m14_c01078{transform:matrix(0.193308,-0.004253,0.005499,0.249940,0,0);-ms-transform:matrix(0.193308,-0.004253,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193308,-0.004253,0.005499,0.249940,0,0);}
.mc7_c01078{transform:matrix(0.193423,-0.002901,0.003750,0.249972,0,0);-ms-transform:matrix(0.193423,-0.002901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193423,-0.002901,0.003750,0.249972,0,0);}
.m34_c01078{transform:matrix(0.194173,-0.002913,0.003750,0.249972,0,0);-ms-transform:matrix(0.194173,-0.002913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194173,-0.002913,0.003750,0.249972,0,0);}
.m38_c01078{transform:matrix(0.194553,-0.002918,0.003750,0.249972,0,0);-ms-transform:matrix(0.194553,-0.002918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194553,-0.002918,0.003750,0.249972,0,0);}
.m79_c01078{transform:matrix(0.194738,-0.002921,0.003750,0.249972,0,0);-ms-transform:matrix(0.194738,-0.002921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194738,-0.002921,0.003750,0.249972,0,0);}
.m40_c01078{transform:matrix(0.196623,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196623,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196623,-0.002949,0.003750,0.249972,0,0);}
.m3c_c01078{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);}
.m29_c01078{transform:matrix(0.198787,-0.004373,0.005499,0.249940,0,0);-ms-transform:matrix(0.198787,-0.004373,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198787,-0.004373,0.005499,0.249940,0,0);}
.m8c_c01078{transform:matrix(0.198922,-0.004376,0.005499,0.249940,0,0);-ms-transform:matrix(0.198922,-0.004376,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198922,-0.004376,0.005499,0.249940,0,0);}
.mc_c01078{transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);-ms-transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);-webkit-transform:matrix(0.199972,-0.004399,0.005499,0.249940,0,0);}
.m77_c01078{transform:matrix(0.200407,-0.003006,0.003750,0.249972,0,0);-ms-transform:matrix(0.200407,-0.003006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200407,-0.003006,0.003750,0.249972,0,0);}
.m56_c01078{transform:matrix(0.201202,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201202,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201202,-0.003018,0.003750,0.249972,0,0);}
.m4a_c01078{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);}
.m48_c01078{transform:matrix(0.202437,-0.003037,0.003750,0.249972,0,0);-ms-transform:matrix(0.202437,-0.003037,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202437,-0.003037,0.003750,0.249972,0,0);}
.mb0_c01078{transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);-ms-transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);}
.m60_c01078{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);}
.m45_c01078{transform:matrix(0.204302,-0.003065,0.003750,0.249972,0,0);-ms-transform:matrix(0.204302,-0.003065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204302,-0.003065,0.003750,0.249972,0,0);}
.m52_c01078{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);}
.mc1_c01078{transform:matrix(0.205522,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205522,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205522,-0.003083,0.003750,0.249972,0,0);}
.ma5_c01078{transform:matrix(0.206088,-0.002679,0.003250,0.249979,0,0);-ms-transform:matrix(0.206088,-0.002679,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206088,-0.002679,0.003250,0.249979,0,0);}
.mde_c01078{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);}
.m5f_c01078{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);}
.m4d_c01078{transform:matrix(0.207187,-0.003108,0.003750,0.249972,0,0);-ms-transform:matrix(0.207187,-0.003108,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207187,-0.003108,0.003750,0.249972,0,0);}
.m13_c01078{transform:matrix(0.207475,-0.004564,0.005499,0.249940,0,0);-ms-transform:matrix(0.207475,-0.004564,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207475,-0.004564,0.005499,0.249940,0,0);}
.m59_c01078{transform:matrix(0.207497,-0.003112,0.003750,0.249972,0,0);-ms-transform:matrix(0.207497,-0.003112,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207497,-0.003112,0.003750,0.249972,0,0);}
.m91_c01078{transform:matrix(0.208555,-0.003545,0.004249,0.249964,0,0);-ms-transform:matrix(0.208555,-0.003545,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208555,-0.003545,0.004249,0.249964,0,0);}
.mae_c01078{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);}
.m67_c01078{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);}
.m9e_c01078{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);}
.m43_c01078{transform:matrix(0.210231,-0.003153,0.003750,0.249972,0,0);-ms-transform:matrix(0.210231,-0.003153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210231,-0.003153,0.003750,0.249972,0,0);}
.m92_c01078{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);}
.m5a_c01078{transform:matrix(0.210421,-0.003156,0.003750,0.249972,0,0);-ms-transform:matrix(0.210421,-0.003156,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210421,-0.003156,0.003750,0.249972,0,0);}
.m24_c01078{transform:matrix(0.210604,-0.004633,0.005499,0.249940,0,0);-ms-transform:matrix(0.210604,-0.004633,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210604,-0.004633,0.005499,0.249940,0,0);}
.m6_c01078{transform:matrix(0.211386,-0.003805,0.004499,0.249960,0,0);-ms-transform:matrix(0.211386,-0.003805,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211386,-0.003805,0.004499,0.249960,0,0);}
.mbf_c01078{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);}
.me0_c01078{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);}
.m1a_c01078{transform:matrix(0.212679,-0.004679,0.005499,0.249940,0,0);-ms-transform:matrix(0.212679,-0.004679,0.005499,0.249940,0,0);-webkit-transform:matrix(0.212679,-0.004679,0.005499,0.249940,0,0);}
.m75_c01078{transform:matrix(0.213391,-0.003201,0.003750,0.249972,0,0);-ms-transform:matrix(0.213391,-0.003201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213391,-0.003201,0.003750,0.249972,0,0);}
.mbc_c01078{transform:matrix(0.213646,-0.003205,0.003750,0.249972,0,0);-ms-transform:matrix(0.213646,-0.003205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213646,-0.003205,0.003750,0.249972,0,0);}
.ma1_c01078{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);}
.ma6_c01078{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);}
.m42_c01078{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);}
.m63_c01078{transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);-ms-transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);}
.m94_c01078{transform:matrix(0.218108,-0.003708,0.004249,0.249964,0,0);-ms-transform:matrix(0.218108,-0.003708,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218108,-0.003708,0.004249,0.249964,0,0);}
.mbb_c01078{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);}
.md9_c01078{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);}
.m87_c01078{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);}
.md1_c01078{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);}
.mc8_c01078{transform:matrix(0.220735,-0.003311,0.003750,0.249972,0,0);-ms-transform:matrix(0.220735,-0.003311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220735,-0.003311,0.003750,0.249972,0,0);}
.m58_c01078{transform:matrix(0.221160,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221160,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221160,-0.003317,0.003750,0.249972,0,0);}
.m7_c01078{transform:matrix(0.222169,-0.003999,0.004499,0.249960,0,0);-ms-transform:matrix(0.222169,-0.003999,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222169,-0.003999,0.004499,0.249960,0,0);}
.m69_c01078{transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);-ms-transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);}
.m5e_c01078{transform:matrix(0.222460,-0.003337,0.003750,0.249972,0,0);-ms-transform:matrix(0.222460,-0.003337,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222460,-0.003337,0.003750,0.249972,0,0);}
.m6a_c01078{transform:matrix(0.222980,-0.003345,0.003750,0.249972,0,0);-ms-transform:matrix(0.222980,-0.003345,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222980,-0.003345,0.003750,0.249972,0,0);}
.m64_c01078{transform:matrix(0.223690,-0.003355,0.003750,0.249972,0,0);-ms-transform:matrix(0.223690,-0.003355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223690,-0.003355,0.003750,0.249972,0,0);}
.m17_c01078{transform:matrix(0.223696,-0.004921,0.005499,0.249940,0,0);-ms-transform:matrix(0.223696,-0.004921,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223696,-0.004921,0.005499,0.249940,0,0);}
.m9b_c01078{transform:matrix(0.224281,-0.002916,0.003250,0.249979,0,0);-ms-transform:matrix(0.224281,-0.002916,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224281,-0.002916,0.003250,0.249979,0,0);}
.m19_c01078{transform:matrix(0.224941,-0.004949,0.005499,0.249940,0,0);-ms-transform:matrix(0.224941,-0.004949,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224941,-0.004949,0.005499,0.249940,0,0);}
.m4c_c01078{transform:matrix(0.225295,-0.003379,0.003750,0.249972,0,0);-ms-transform:matrix(0.225295,-0.003379,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225295,-0.003379,0.003750,0.249972,0,0);}
.m1f_c01078{transform:matrix(0.225740,-0.004966,0.005499,0.249940,0,0);-ms-transform:matrix(0.225740,-0.004966,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225740,-0.004966,0.005499,0.249940,0,0);}
.m5b_c01078{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);}
.m9a_c01078{transform:matrix(0.226956,-0.002950,0.003250,0.249979,0,0);-ms-transform:matrix(0.226956,-0.002950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226956,-0.002950,0.003250,0.249979,0,0);}
.m26_c01078{transform:matrix(0.227465,-0.005004,0.005499,0.249940,0,0);-ms-transform:matrix(0.227465,-0.005004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227465,-0.005004,0.005499,0.249940,0,0);}
.m95_c01078{transform:matrix(0.228497,-0.003884,0.004249,0.249964,0,0);-ms-transform:matrix(0.228497,-0.003884,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228497,-0.003884,0.004249,0.249964,0,0);}
.m7f_c01078{transform:matrix(0.230294,-0.005066,0.005499,0.249940,0,0);-ms-transform:matrix(0.230294,-0.005066,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230294,-0.005066,0.005499,0.249940,0,0);}
.m6e_c01078{transform:matrix(0.230449,-0.003457,0.003750,0.249972,0,0);-ms-transform:matrix(0.230449,-0.003457,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230449,-0.003457,0.003750,0.249972,0,0);}
.m97_c01078{transform:matrix(0.230970,-0.003003,0.003250,0.249979,0,0);-ms-transform:matrix(0.230970,-0.003003,0.003250,0.249979,0,0);-webkit-transform:matrix(0.230970,-0.003003,0.003250,0.249979,0,0);}
.m1b_c01078{transform:matrix(0.231679,-0.005097,0.005499,0.249940,0,0);-ms-transform:matrix(0.231679,-0.005097,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231679,-0.005097,0.005499,0.249940,0,0);}
.md4_c01078{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);}
.m78_c01078{transform:matrix(0.232814,-0.003492,0.003750,0.249972,0,0);-ms-transform:matrix(0.232814,-0.003492,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232814,-0.003492,0.003750,0.249972,0,0);}
.m73_c01078{transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);}
.m23_c01078{transform:matrix(0.235258,-0.005176,0.005499,0.249940,0,0);-ms-transform:matrix(0.235258,-0.005176,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235258,-0.005176,0.005499,0.249940,0,0);}
.ma2_c01078{transform:matrix(0.235710,-0.003064,0.003250,0.249979,0,0);-ms-transform:matrix(0.235710,-0.003064,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235710,-0.003064,0.003250,0.249979,0,0);}
.m47_c01078{transform:matrix(0.235763,-0.003536,0.003750,0.249972,0,0);-ms-transform:matrix(0.235763,-0.003536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235763,-0.003536,0.003750,0.249972,0,0);}
.m8b_c01078{transform:matrix(0.237313,-0.005221,0.005499,0.249940,0,0);-ms-transform:matrix(0.237313,-0.005221,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237313,-0.005221,0.005499,0.249940,0,0);}
.m12_c01078{transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);-ms-transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);}
.m7c_c01078{transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239168,-0.003588,0.003750,0.249972,0,0);}
.m1e_c01078{transform:matrix(0.239237,-0.005263,0.005499,0.249940,0,0);-ms-transform:matrix(0.239237,-0.005263,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239237,-0.005263,0.005499,0.249940,0,0);}
.m16_c01078{transform:matrix(0.241762,-0.005319,0.005499,0.249940,0,0);-ms-transform:matrix(0.241762,-0.005319,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241762,-0.005319,0.005499,0.249940,0,0);}
.mbd_c01078{transform:matrix(0.242488,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242488,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242488,-0.003637,0.003750,0.249972,0,0);}
.m51_c01078{transform:matrix(0.249627,-0.003744,0.003750,0.249972,0,0);-ms-transform:matrix(0.249627,-0.003744,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249627,-0.003744,0.003750,0.249972,0,0);}
.md3_c01078{transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);}
.m7b_c01078{transform:matrix(0.253706,-0.003806,0.003750,0.249972,0,0);-ms-transform:matrix(0.253706,-0.003806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253706,-0.003806,0.003750,0.249972,0,0);}
.m80_c01078{transform:matrix(0.258472,-0.005686,0.005499,0.249940,0,0);-ms-transform:matrix(0.258472,-0.005686,0.005499,0.249940,0,0);-webkit-transform:matrix(0.258472,-0.005686,0.005499,0.249940,0,0);}
.m3_c01078{transform:matrix(0.260163,-0.004683,0.004499,0.249960,0,0);-ms-transform:matrix(0.260163,-0.004683,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260163,-0.004683,0.004499,0.249960,0,0);}
.m11_c01078{transform:matrix(0.263601,-0.005799,0.005499,0.249940,0,0);-ms-transform:matrix(0.263601,-0.005799,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263601,-0.005799,0.005499,0.249940,0,0);}
.mb8_c01078{transform:matrix(0.264095,-0.003961,0.003750,0.249972,0,0);-ms-transform:matrix(0.264095,-0.003961,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264095,-0.003961,0.003750,0.249972,0,0);}
.m6d_c01078{transform:matrix(0.266235,-0.003994,0.003750,0.249972,0,0);-ms-transform:matrix(0.266235,-0.003994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266235,-0.003994,0.003750,0.249972,0,0);}
.m81_c01078{transform:matrix(0.266610,-0.005865,0.005499,0.249940,0,0);-ms-transform:matrix(0.266610,-0.005865,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266610,-0.005865,0.005499,0.249940,0,0);}
.m9_c01078{transform:matrix(0.278675,-0.005016,0.004499,0.249960,0,0);-ms-transform:matrix(0.278675,-0.005016,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278675,-0.005016,0.004499,0.249960,0,0);}
.md2_c01078{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);}
.m76_c01078{transform:matrix(0.281758,-0.004226,0.003750,0.249972,0,0);-ms-transform:matrix(0.281758,-0.004226,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281758,-0.004226,0.003750,0.249972,0,0);}
.m8f_c01078{transform:matrix(0.285299,-0.004850,0.004249,0.249964,0,0);-ms-transform:matrix(0.285299,-0.004850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285299,-0.004850,0.004249,0.249964,0,0);}
.m8_c01078{transform:matrix(0.288783,-0.005198,0.004499,0.249960,0,0);-ms-transform:matrix(0.288783,-0.005198,0.004499,0.249960,0,0);-webkit-transform:matrix(0.288783,-0.005198,0.004499,0.249960,0,0);}
.m54_c01078{transform:matrix(0.289722,-0.004346,0.003750,0.249972,0,0);-ms-transform:matrix(0.289722,-0.004346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.289722,-0.004346,0.003750,0.249972,0,0);}
.m74_c01078{transform:matrix(0.296037,-0.004441,0.003750,0.249972,0,0);-ms-transform:matrix(0.296037,-0.004441,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296037,-0.004441,0.003750,0.249972,0,0);}
.m6c_c01078{transform:matrix(0.301536,-0.004523,0.003750,0.249972,0,0);-ms-transform:matrix(0.301536,-0.004523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301536,-0.004523,0.003750,0.249972,0,0);}
.mb_c01078{transform:matrix(0.307861,-0.006773,0.005499,0.249940,0,0);-ms-transform:matrix(0.307861,-0.006773,0.005499,0.249940,0,0);-webkit-transform:matrix(0.307861,-0.006773,0.005499,0.249940,0,0);}
.m5_c01078{transform:matrix(0.316334,-0.005694,0.004499,0.249960,0,0);-ms-transform:matrix(0.316334,-0.005694,0.004499,0.249960,0,0);-webkit-transform:matrix(0.316334,-0.005694,0.004499,0.249960,0,0);}
.ma0_c01078{transform:matrix(0.327807,-0.004261,0.003250,0.249979,0,0);-ms-transform:matrix(0.327807,-0.004261,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327807,-0.004261,0.003250,0.249979,0,0);}
.m28_c01078{transform:matrix(0.333259,-0.007332,0.005499,0.249940,0,0);-ms-transform:matrix(0.333259,-0.007332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.333259,-0.007332,0.005499,0.249940,0,0);}
.m1d_c01078{transform:matrix(0.333729,-0.007342,0.005499,0.249940,0,0);-ms-transform:matrix(0.333729,-0.007342,0.005499,0.249940,0,0);-webkit-transform:matrix(0.333729,-0.007342,0.005499,0.249940,0,0);}
.ma_c01078{transform:matrix(0.335794,-0.007387,0.005499,0.249940,0,0);-ms-transform:matrix(0.335794,-0.007387,0.005499,0.249940,0,0);-webkit-transform:matrix(0.335794,-0.007387,0.005499,0.249940,0,0);}
.m61_c01078{transform:matrix(0.350436,-0.005257,0.003750,0.249972,0,0);-ms-transform:matrix(0.350436,-0.005257,0.003750,0.249972,0,0);-webkit-transform:matrix(0.350436,-0.005257,0.003750,0.249972,0,0);}
.m7e_c01078{transform:matrix(0.355025,-0.005325,0.003750,0.249972,0,0);-ms-transform:matrix(0.355025,-0.005325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.355025,-0.005325,0.003750,0.249972,0,0);}
.m31_c01078{transform:matrix(0.357548,-0.007866,0.005499,0.249940,0,0);-ms-transform:matrix(0.357548,-0.007866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.357548,-0.007866,0.005499,0.249940,0,0);}
.mcc_c01078{transform:matrix(0.369305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369305,0.000000,0.000000,0.250000,0,0);}
.md6_c01078{transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371775,0.000000,0.000000,0.250000,0,0);}
.mce_c01078{transform:matrix(0.389150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389150,0.000000,0.000000,0.250000,0,0);}
.m32_c01078{transform:matrix(0.421413,-0.006321,0.003750,0.249972,0,0);-ms-transform:matrix(0.421413,-0.006321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.421413,-0.006321,0.003750,0.249972,0,0);}
.m53_c01078{transform:matrix(0.434416,-0.006516,0.003750,0.249972,0,0);-ms-transform:matrix(0.434416,-0.006516,0.003750,0.249972,0,0);-webkit-transform:matrix(0.434416,-0.006516,0.003750,0.249972,0,0);}
.m2_c01078{transform:matrix(0.461825,-0.008313,0.004499,0.249960,0,0);-ms-transform:matrix(0.461825,-0.008313,0.004499,0.249960,0,0);-webkit-transform:matrix(0.461825,-0.008313,0.004499,0.249960,0,0);}
.m1_c01078{transform:matrix(0.464380,-0.008359,0.004499,0.249960,0,0);-ms-transform:matrix(0.464380,-0.008359,0.004499,0.249960,0,0);-webkit-transform:matrix(0.464380,-0.008359,0.004499,0.249960,0,0);}
.m4_c01078{transform:matrix(0.507208,-0.009130,0.004499,0.249960,0,0);-ms-transform:matrix(0.507208,-0.009130,0.004499,0.249960,0,0);-webkit-transform:matrix(0.507208,-0.009130,0.004499,0.249960,0,0);}
.md0_c01078{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);}
.mcf_c01078{transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);}
.m0_c01078{transform:matrix(0.725772,-0.013064,0.004499,0.249960,0,0);-ms-transform:matrix(0.725772,-0.013064,0.004499,0.249960,0,0);-webkit-transform:matrix(0.725772,-0.013064,0.004499,0.249960,0,0);}
.m1c_c01078{transform:matrix(0.750798,-0.016518,0.005499,0.249940,0,0);-ms-transform:matrix(0.750798,-0.016518,0.005499,0.249940,0,0);-webkit-transform:matrix(0.750798,-0.016518,0.005499,0.249940,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls0_c01078{letter-spacing:0.000000px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:0.000000px;}
.fc0_c01078{color:transparent;}
.fs16_c01078{font-size:22.050000px;}
.fs17_c01078{font-size:45.150000px;}
.fs15_c01078{font-size:50.400000px;}
.fs2_c01078{font-size:57.763974px;}
.fs18_c01078{font-size:58.800000px;}
.fsa_c01078{font-size:61.956969px;}
.fs4_c01078{font-size:61.964990px;}
.fs3_c01078{font-size:63.015244px;}
.fsf_c01078{font-size:64.059255px;}
.fs13_c01078{font-size:65.107323px;}
.fsb_c01078{font-size:66.157441px;}
.fs14_c01078{font-size:68.257678px;}
.fs9_c01078{font-size:69.307796px;}
.fs10_c01078{font-size:70.355944px;}
.fs8_c01078{font-size:70.357914px;}
.fs12_c01078{font-size:70.360165px;}
.fsd_c01078{font-size:71.408032px;}
.fs11_c01078{font-size:71.410317px;}
.fs5_c01078{font-size:71.417277px;}
.fse_c01078{font-size:72.467531px;}
.fsc_c01078{font-size:73.508268px;}
.fs7_c01078{font-size:74.558386px;}
.fs6_c01078{font-size:75.618293px;}
.fs1_c01078{font-size:121.819730px;}
.fs0_c01078{font-size:134.421771px;}
.y0_c01078{bottom:0.000000px;}
.yd1_c01078{bottom:164.344500px;}
.yd0_c01078{bottom:181.939500px;}
.ycf_c01078{bottom:204.004500px;}
.yce_c01078{bottom:219.658500px;}
.yc4_c01078{bottom:234.903218px;}
.yc5_c01078{bottom:235.734773px;}
.yc6_c01078{bottom:236.242155px;}
.yc7_c01078{bottom:236.626163px;}
.yc8_c01078{bottom:237.422948px;}
.yc9_c01078{bottom:238.642155px;}
.yca_c01078{bottom:239.098537px;}
.ycb_c01078{bottom:239.397855px;}
.ycc_c01078{bottom:240.044632px;}
.ycd_c01078{bottom:240.629850px;}
.yba_c01078{bottom:258.393000px;}
.ybb_c01078{bottom:258.875378px;}
.ybc_c01078{bottom:259.392562px;}
.ybd_c01078{bottom:259.810770px;}
.ybe_c01078{bottom:260.694120px;}
.ybf_c01078{bottom:261.503602px;}
.yc0_c01078{bottom:261.945660px;}
.yc1_c01078{bottom:262.443765px;}
.yc2_c01078{bottom:263.168873px;}
.yc3_c01078{bottom:263.517083px;}
.yb2_c01078{bottom:281.338896px;}
.yb3_c01078{bottom:281.788743px;}
.yb4_c01078{bottom:282.416320px;}
.yb5_c01078{bottom:283.011474px;}
.yb6_c01078{bottom:283.404561px;}
.yb7_c01078{bottom:284.025147px;}
.yb8_c01078{bottom:284.616522px;}
.yb9_c01078{bottom:285.217031px;}
.yaa_c01078{bottom:303.213000px;}
.yab_c01078{bottom:303.796466px;}
.yac_c01078{bottom:304.640975px;}
.yad_c01078{bottom:305.389425px;}
.yae_c01078{bottom:306.036768px;}
.yaf_c01078{bottom:306.808169px;}
.yb0_c01078{bottom:307.910533px;}
.yb1_c01078{bottom:309.625000px;}
.ya2_c01078{bottom:325.892343px;}
.ya3_c01078{bottom:327.297376px;}
.ya4_c01078{bottom:327.729708px;}
.ya5_c01078{bottom:328.097473px;}
.ya6_c01078{bottom:329.129458px;}
.ya7_c01078{bottom:329.249331px;}
.ya8_c01078{bottom:330.599058px;}
.ya9_c01078{bottom:331.654047px;}
.y99_c01078{bottom:349.651500px;}
.y9a_c01078{bottom:350.090348px;}
.y9b_c01078{bottom:350.606318px;}
.y9c_c01078{bottom:350.873234px;}
.y9d_c01078{bottom:351.880604px;}
.y9e_c01078{bottom:352.256271px;}
.y9f_c01078{bottom:352.853010px;}
.ya0_c01078{bottom:353.193597px;}
.ya1_c01078{bottom:354.712803px;}
.y91_c01078{bottom:372.333000px;}
.y92_c01078{bottom:372.787741px;}
.y93_c01078{bottom:373.344534px;}
.y94_c01078{bottom:374.889197px;}
.y95_c01078{bottom:375.496632px;}
.y96_c01078{bottom:376.460404px;}
.y97_c01078{bottom:376.919736px;}
.y98_c01078{bottom:377.547546px;}
.y89_c01078{bottom:395.547729px;}
.y8a_c01078{bottom:396.039258px;}
.y8b_c01078{bottom:397.078866px;}
.y8c_c01078{bottom:397.585089px;}
.y8d_c01078{bottom:398.276538px;}
.y8e_c01078{bottom:398.465562px;}
.y8f_c01078{bottom:398.872734px;}
.y90_c01078{bottom:399.697266px;}
.y81_c01078{bottom:417.966000px;}
.y82_c01078{bottom:418.614747px;}
.y83_c01078{bottom:420.143439px;}
.y84_c01078{bottom:420.761034px;}
.y85_c01078{bottom:421.948077px;}
.y86_c01078{bottom:422.919531px;}
.y87_c01078{bottom:423.760008px;}
.y88_c01078{bottom:425.580519px;}
.y7f_c01078{bottom:534.174698px;}
.y80_c01078{bottom:534.174930px;}
.y7e_c01078{bottom:534.175020px;}
.y7d_c01078{bottom:534.175687px;}
.y7b_c01078{bottom:554.822340px;}
.y7a_c01078{bottom:554.822430px;}
.y7c_c01078{bottom:554.823000px;}
.y75_c01078{bottom:580.501365px;}
.y76_c01078{bottom:580.502070px;}
.y79_c01078{bottom:580.502258px;}
.y77_c01078{bottom:580.502325px;}
.y78_c01078{bottom:580.502903px;}
.y6d_c01078{bottom:598.307558px;}
.y6e_c01078{bottom:599.079060px;}
.y6f_c01078{bottom:599.943893px;}
.y70_c01078{bottom:600.433965px;}
.y71_c01078{bottom:601.462545px;}
.y72_c01078{bottom:602.579287px;}
.y73_c01078{bottom:603.723848px;}
.y74_c01078{bottom:604.239735px;}
.y65_c01078{bottom:621.799710px;}
.y66_c01078{bottom:622.254975px;}
.y67_c01078{bottom:623.773695px;}
.y68_c01078{bottom:624.267225px;}
.y69_c01078{bottom:624.872715px;}
.y6a_c01078{bottom:625.576568px;}
.y6b_c01078{bottom:626.909340px;}
.y6c_c01078{bottom:628.922175px;}
.y5c_c01078{bottom:644.482515px;}
.y5d_c01078{bottom:644.943173px;}
.y5e_c01078{bottom:645.809332px;}
.y5f_c01078{bottom:646.701487px;}
.y60_c01078{bottom:647.774040px;}
.y61_c01078{bottom:648.667095px;}
.y62_c01078{bottom:649.387845px;}
.y63_c01078{bottom:651.190448px;}
.y64_c01078{bottom:651.910253px;}
.y54_c01078{bottom:667.435057px;}
.y55_c01078{bottom:668.609985px;}
.y56_c01078{bottom:669.829192px;}
.y57_c01078{bottom:670.262512px;}
.y58_c01078{bottom:671.297955px;}
.y59_c01078{bottom:671.727930px;}
.y5a_c01078{bottom:672.554475px;}
.y5b_c01078{bottom:673.067408px;}
.y4b_c01078{bottom:689.577780px;}
.y4c_c01078{bottom:690.093097px;}
.y4d_c01078{bottom:691.050105px;}
.y4e_c01078{bottom:691.655820px;}
.y4f_c01078{bottom:692.826780px;}
.y50_c01078{bottom:693.363652px;}
.y51_c01078{bottom:694.345185px;}
.y52_c01078{bottom:694.742655px;}
.y53_c01078{bottom:695.453310px;}
.y44_c01078{bottom:712.800360px;}
.y45_c01078{bottom:713.462603px;}
.y46_c01078{bottom:714.386782px;}
.y47_c01078{bottom:715.371540px;}
.y48_c01078{bottom:716.496480px;}
.y49_c01078{bottom:717.737693px;}
.y4a_c01078{bottom:718.172677px;}
.y3a_c01078{bottom:734.936542px;}
.y3b_c01078{bottom:735.101145px;}
.y3c_c01078{bottom:735.999135px;}
.y3d_c01078{bottom:736.686833px;}
.y3e_c01078{bottom:737.641973px;}
.y3f_c01078{bottom:738.307718px;}
.y40_c01078{bottom:738.843052px;}
.y41_c01078{bottom:739.507763px;}
.y42_c01078{bottom:740.022248px;}
.y43_c01078{bottom:740.337353px;}
.y33_c01078{bottom:757.893000px;}
.y34_c01078{bottom:759.710280px;}
.y35_c01078{bottom:760.071900px;}
.y36_c01078{bottom:760.460160px;}
.y37_c01078{bottom:761.642445px;}
.y38_c01078{bottom:762.186180px;}
.y39_c01078{bottom:762.559162px;}
.y29_c01078{bottom:778.399476px;}
.y2a_c01078{bottom:780.302874px;}
.y2b_c01078{bottom:781.732914px;}
.y2c_c01078{bottom:782.623659px;}
.y2d_c01078{bottom:783.343869px;}
.y2e_c01078{bottom:784.256511px;}
.y2f_c01078{bottom:784.656540px;}
.y30_c01078{bottom:785.038665px;}
.y31_c01078{bottom:786.484893px;}
.y32_c01078{bottom:787.976019px;}
.y1e_c01078{bottom:801.084276px;}
.y1f_c01078{bottom:803.005611px;}
.y20_c01078{bottom:803.663118px;}
.y21_c01078{bottom:804.536043px;}
.y22_c01078{bottom:804.999402px;}
.y23_c01078{bottom:805.426179px;}
.y24_c01078{bottom:806.668869px;}
.y25_c01078{bottom:807.780741px;}
.y26_c01078{bottom:808.472520px;}
.y27_c01078{bottom:810.387783px;}
.y28_c01078{bottom:813.347892px;}
.y13_c01078{bottom:823.761666px;}
.y14_c01078{bottom:825.656823px;}
.y15_c01078{bottom:826.928472px;}
.y16_c01078{bottom:827.822733px;}
.y17_c01078{bottom:828.208239px;}
.y18_c01078{bottom:829.725546px;}
.y19_c01078{bottom:830.384346px;}
.y1a_c01078{bottom:831.407829px;}
.y1b_c01078{bottom:832.229196px;}
.y1c_c01078{bottom:834.638157px;}
.yd_c01078{bottom:835.376355px;}
.y1d_c01078{bottom:836.378568px;}
.ye_c01078{bottom:837.463548px;}
.yf_c01078{bottom:839.303136px;}
.y10_c01078{bottom:840.033321px;}
.y11_c01078{bottom:840.696684px;}
.y12_c01078{bottom:842.795451px;}
.yb_c01078{bottom:860.761500px;}
.y5_c01078{bottom:868.048539px;}
.y6_c01078{bottom:869.712450px;}
.y7_c01078{bottom:872.456970px;}
.yc_c01078{bottom:873.015324px;}
.y8_c01078{bottom:873.442995px;}
.y9_c01078{bottom:874.334016px;}
.ya_c01078{bottom:875.253525px;}
.y1_c01078{bottom:906.672000px;}
.y2_c01078{bottom:912.387225px;}
.y3_c01078{bottom:914.462985px;}
.y4_c01078{bottom:916.114764px;}
.h18_c01078{height:22.050000px;}
.h19_c01078{height:45.150000px;}
.h17_c01078{height:50.400000px;}
.h4_c01078{height:57.763974px;}
.h1a_c01078{height:58.800000px;}
.hc_c01078{height:61.956969px;}
.h6_c01078{height:61.964990px;}
.h5_c01078{height:63.015244px;}
.h11_c01078{height:64.059255px;}
.h15_c01078{height:65.107323px;}
.hd_c01078{height:66.157441px;}
.h16_c01078{height:68.257678px;}
.hb_c01078{height:69.307796px;}
.h12_c01078{height:70.355944px;}
.ha_c01078{height:70.357914px;}
.h14_c01078{height:70.360165px;}
.hf_c01078{height:71.408032px;}
.h13_c01078{height:71.410317px;}
.h7_c01078{height:71.417277px;}
.h10_c01078{height:72.467531px;}
.he_c01078{height:73.508268px;}
.h9_c01078{height:74.558386px;}
.h8_c01078{height:75.618293px;}
.h3_c01078{height:121.819730px;}
.h2_c01078{height:134.421771px;}
.h1_c01078{height:1005.000000px;}
.h0_c01078{height:1005.150000px;}
.w0_c01078{width:739.200000px;}
.w1_c01078{width:739.500000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:45.186000px;}
.x10_c01078{left:53.212773px;}
.x2d_c01078{left:127.380810px;}
.x11_c01078{left:135.604458px;}
.x19_c01078{left:137.207319px;}
.x35_c01078{left:139.570020px;}
.x56_c01078{left:141.477585px;}
.x5b_c01078{left:144.975000px;}
.x6b_c01078{left:146.782500px;}
.x75_c01078{left:147.906000px;}
.x7d_c01078{left:149.043030px;}
.x84_c01078{left:150.390000px;}
.x28_c01078{left:153.873000px;}
.x43_c01078{left:161.480078px;}
.x1a_c01078{left:168.526512px;}
.x5_c01078{left:173.917752px;}
.x4e_c01078{left:177.163913px;}
.x6c_c01078{left:180.540000px;}
.x62_c01078{left:182.714412px;}
.x12_c01078{left:190.882737px;}
.x7e_c01078{left:192.777398px;}
.x2e_c01078{left:193.819320px;}
.x57_c01078{left:198.184343px;}
.x66_c01078{left:200.919000px;}
.x44_c01078{left:202.720365px;}
.x22_c01078{left:204.744264px;}
.xb_c01078{left:206.366568px;}
.x1b_c01078{left:210.114936px;}
.x7b_c01078{left:214.513500px;}
.x4f_c01078{left:218.315700px;}
.x6d_c01078{left:220.230000px;}
.x39_c01078{left:221.397608px;}
.x36_c01078{left:223.026503px;}
.x13_c01078{left:229.757379px;}
.x1c_c01078{left:232.199931px;}
.x49_c01078{left:234.115388px;}
.x2f_c01078{left:236.765168px;}
.x58_c01078{left:238.959645px;}
.x50_c01078{left:241.685108px;}
.x5c_c01078{left:243.949500px;}
.x45_c01078{left:245.193540px;}
.x14_c01078{left:246.530016px;}
.x87_c01078{left:251.100000px;}
.x1d_c01078{left:252.553893px;}
.x3a_c01078{left:255.077100px;}
.x4a_c01078{left:257.615273px;}
.x82_c01078{left:258.660000px;}
.x63_c01078{left:262.644219px;}
.x72_c01078{left:264.041968px;}
.x5d_c01078{left:272.022000px;}
.x59_c01078{left:273.522930px;}
.x29_c01078{left:275.025000px;}
.x23_c01078{left:281.448447px;}
.x79_c01078{left:284.815202px;}
.x4b_c01078{left:286.478685px;}
.x51_c01078{left:290.652698px;}
.x67_c01078{left:291.781500px;}
.x3f_c01078{left:294.204728px;}
.x30_c01078{left:296.440268px;}
.x53_c01078{left:297.556598px;}
.x2a_c01078{left:299.133000px;}
.x64_c01078{left:301.548408px;}
.x15_c01078{left:312.497064px;}
.x76_c01078{left:314.010000px;}
.x40_c01078{left:316.991355px;}
.x6e_c01078{left:318.252000px;}
.x3b_c01078{left:320.138175px;}
.x73_c01078{left:321.383244px;}
.x24_c01078{left:324.910404px;}
.x5e_c01078{left:325.978500px;}
.x68_c01078{left:327.513000px;}
.x5a_c01078{left:330.229688px;}
.x37_c01078{left:334.066343px;}
.x31_c01078{left:338.022637px;}
.x83_c01078{left:339.660000px;}
.x16_c01078{left:341.146437px;}
.x25_c01078{left:343.980333px;}
.x7f_c01078{left:345.793718px;}
.xc_c01078{left:347.898585px;}
.x3c_c01078{left:349.928325px;}
.x54_c01078{left:355.072013px;}
.x77_c01078{left:359.386500px;}
.x2_c01078{left:362.698500px;}
.x1e_c01078{left:364.627335px;}
.x5f_c01078{left:370.135500px;}
.x32_c01078{left:371.511143px;}
.x46_c01078{left:373.172543px;}
.x85_c01078{left:375.030000px;}
.x55_c01078{left:376.133760px;}
.x4c_c01078{left:383.444955px;}
.x6_c01078{left:385.076760px;}
.x6f_c01078{left:393.052500px;}
.x41_c01078{left:394.181243px;}
.x1f_c01078{left:397.572561px;}
.x38_c01078{left:399.409928px;}
.x65_c01078{left:400.665543px;}
.x74_c01078{left:403.039440px;}
.xd_c01078{left:404.077206px;}
.x7a_c01078{left:405.552781px;}
.x86_c01078{left:406.890000px;}
.x60_c01078{left:408.339000px;}
.x69_c01078{left:411.225000px;}
.x33_c01078{left:413.024513px;}
.x7c_c01078{left:417.927000px;}
.x70_c01078{left:419.251500px;}
.x17_c01078{left:421.319655px;}
.x52_c01078{left:422.886795px;}
.x78_c01078{left:424.231500px;}
.x3d_c01078{left:426.558382px;}
.x26_c01078{left:431.043747px;}
.x42_c01078{left:437.681633px;}
.x2b_c01078{left:440.085000px;}
.x34_c01078{left:445.223040px;}
.x6a_c01078{left:448.155000px;}
.x80_c01078{left:450.400440px;}
.xe_c01078{left:455.103804px;}
.x81_c01078{left:456.570000px;}
.x47_c01078{left:459.038325px;}
.x7_c01078{left:460.946091px;}
.x2c_c01078{left:464.950500px;}
.x3e_c01078{left:466.033605px;}
.x3_c01078{left:478.018500px;}
.x4d_c01078{left:479.325338px;}
.x20_c01078{left:488.791074px;}
.x61_c01078{left:491.089500px;}
.x48_c01078{left:493.322243px;}
.x27_c01078{left:502.028298px;}
.x18_c01078{left:526.042845px;}
.x8_c01078{left:529.536774px;}
.x71_c01078{left:536.113500px;}
.x4_c01078{left:569.784000px;}
.x9_c01078{left:600.293646px;}
.xa_c01078{left:601.584000px;}
.xf_c01078{left:616.534248px;}
.x21_c01078{left:629.753676px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws0_c01078{word-spacing:0.000000pt;}
.fs16_c01078{font-size:19.600000pt;}
.fs17_c01078{font-size:40.133333pt;}
.fs15_c01078{font-size:44.800000pt;}
.fs2_c01078{font-size:51.345754pt;}
.fs18_c01078{font-size:52.266667pt;}
.fsa_c01078{font-size:55.072861pt;}
.fs4_c01078{font-size:55.079991pt;}
.fs3_c01078{font-size:56.013550pt;}
.fsf_c01078{font-size:56.941560pt;}
.fs13_c01078{font-size:57.873176pt;}
.fsb_c01078{font-size:58.806615pt;}
.fs14_c01078{font-size:60.673491pt;}
.fs9_c01078{font-size:61.606930pt;}
.fs10_c01078{font-size:62.538617pt;}
.fs8_c01078{font-size:62.540368pt;}
.fs12_c01078{font-size:62.542369pt;}
.fsd_c01078{font-size:63.473806pt;}
.fs11_c01078{font-size:63.475837pt;}
.fs5_c01078{font-size:63.482024pt;}
.fse_c01078{font-size:64.415583pt;}
.fsc_c01078{font-size:65.340683pt;}
.fs7_c01078{font-size:66.274121pt;}
.fs6_c01078{font-size:67.216260pt;}
.fs1_c01078{font-size:108.284204pt;}
.fs0_c01078{font-size:119.486019pt;}
.y0_c01078{bottom:0.000000pt;}
.yd1_c01078{bottom:146.084000pt;}
.yd0_c01078{bottom:161.724000pt;}
.ycf_c01078{bottom:181.337333pt;}
.yce_c01078{bottom:195.252000pt;}
.yc4_c01078{bottom:208.802860pt;}
.yc5_c01078{bottom:209.542020pt;}
.yc6_c01078{bottom:209.993027pt;}
.yc7_c01078{bottom:210.334367pt;}
.yc8_c01078{bottom:211.042620pt;}
.yc9_c01078{bottom:212.126360pt;}
.yca_c01078{bottom:212.532033pt;}
.ycb_c01078{bottom:212.798093pt;}
.ycc_c01078{bottom:213.373007pt;}
.ycd_c01078{bottom:213.893200pt;}
.yba_c01078{bottom:229.682667pt;}
.ybb_c01078{bottom:230.111447pt;}
.ybc_c01078{bottom:230.571167pt;}
.ybd_c01078{bottom:230.942907pt;}
.ybe_c01078{bottom:231.728107pt;}
.ybf_c01078{bottom:232.447647pt;}
.yc0_c01078{bottom:232.840587pt;}
.yc1_c01078{bottom:233.283347pt;}
.yc2_c01078{bottom:233.927887pt;}
.yc3_c01078{bottom:234.237407pt;}
.yb2_c01078{bottom:250.079019pt;}
.yb3_c01078{bottom:250.478883pt;}
.yb4_c01078{bottom:251.036729pt;}
.yb5_c01078{bottom:251.565755pt;}
.yb6_c01078{bottom:251.915165pt;}
.yb7_c01078{bottom:252.466797pt;}
.yb8_c01078{bottom:252.992464pt;}
.yb9_c01078{bottom:253.526249pt;}
.yaa_c01078{bottom:269.522667pt;}
.yab_c01078{bottom:270.041303pt;}
.yac_c01078{bottom:270.791977pt;}
.yad_c01078{bottom:271.457267pt;}
.yae_c01078{bottom:272.032683pt;}
.yaf_c01078{bottom:272.718372pt;}
.yb0_c01078{bottom:273.698252pt;}
.yb1_c01078{bottom:275.222223pt;}
.ya2_c01078{bottom:289.682083pt;}
.ya3_c01078{bottom:290.931001pt;}
.ya4_c01078{bottom:291.315296pt;}
.ya5_c01078{bottom:291.642199pt;}
.ya6_c01078{bottom:292.559519pt;}
.ya7_c01078{bottom:292.666072pt;}
.ya8_c01078{bottom:293.865829pt;}
.ya9_c01078{bottom:294.803597pt;}
.y99_c01078{bottom:310.801333pt;}
.y9a_c01078{bottom:311.191420pt;}
.y9b_c01078{bottom:311.650060pt;}
.y9c_c01078{bottom:311.887319pt;}
.y9d_c01078{bottom:312.782759pt;}
.y9e_c01078{bottom:313.116685pt;}
.y9f_c01078{bottom:313.647120pt;}
.ya0_c01078{bottom:313.949864pt;}
.ya1_c01078{bottom:315.300269pt;}
.y91_c01078{bottom:330.962667pt;}
.y92_c01078{bottom:331.366881pt;}
.y93_c01078{bottom:331.861808pt;}
.y94_c01078{bottom:333.234841pt;}
.y95_c01078{bottom:333.774784pt;}
.y96_c01078{bottom:334.631471pt;}
.y97_c01078{bottom:335.039765pt;}
.y98_c01078{bottom:335.597819pt;}
.y89_c01078{bottom:351.597981pt;}
.y8a_c01078{bottom:352.034896pt;}
.y8b_c01078{bottom:352.958992pt;}
.y8c_c01078{bottom:353.408968pt;}
.y8d_c01078{bottom:354.023589pt;}
.y8e_c01078{bottom:354.191611pt;}
.y8f_c01078{bottom:354.553541pt;}
.y90_c01078{bottom:355.286459pt;}
.y81_c01078{bottom:371.525333pt;}
.y82_c01078{bottom:372.101997pt;}
.y83_c01078{bottom:373.460835pt;}
.y84_c01078{bottom:374.009808pt;}
.y85_c01078{bottom:375.064957pt;}
.y86_c01078{bottom:375.928472pt;}
.y87_c01078{bottom:376.675563pt;}
.y88_c01078{bottom:378.293795pt;}
.y7f_c01078{bottom:474.821953pt;}
.y80_c01078{bottom:474.822160pt;}
.y7e_c01078{bottom:474.822240pt;}
.y7d_c01078{bottom:474.822833pt;}
.y7b_c01078{bottom:493.175413pt;}
.y7a_c01078{bottom:493.175493pt;}
.y7c_c01078{bottom:493.176000pt;}
.y75_c01078{bottom:516.001213pt;}
.y76_c01078{bottom:516.001840pt;}
.y79_c01078{bottom:516.002007pt;}
.y77_c01078{bottom:516.002067pt;}
.y78_c01078{bottom:516.002580pt;}
.y6d_c01078{bottom:531.828940pt;}
.y6e_c01078{bottom:532.514720pt;}
.y6f_c01078{bottom:533.283460pt;}
.y70_c01078{bottom:533.719080pt;}
.y71_c01078{bottom:534.633373pt;}
.y72_c01078{bottom:535.626033pt;}
.y73_c01078{bottom:536.643420pt;}
.y74_c01078{bottom:537.101987pt;}
.y65_c01078{bottom:552.710853pt;}
.y66_c01078{bottom:553.115533pt;}
.y67_c01078{bottom:554.465507pt;}
.y68_c01078{bottom:554.904200pt;}
.y69_c01078{bottom:555.442413pt;}
.y6a_c01078{bottom:556.068060pt;}
.y6b_c01078{bottom:557.252747pt;}
.y6c_c01078{bottom:559.041933pt;}
.y5c_c01078{bottom:572.873347pt;}
.y5d_c01078{bottom:573.282820pt;}
.y5e_c01078{bottom:574.052740pt;}
.y5f_c01078{bottom:574.845767pt;}
.y60_c01078{bottom:575.799147pt;}
.y61_c01078{bottom:576.592973pt;}
.y62_c01078{bottom:577.233640pt;}
.y63_c01078{bottom:578.835953pt;}
.y64_c01078{bottom:579.475780pt;}
.y54_c01078{bottom:593.275607pt;}
.y55_c01078{bottom:594.319987pt;}
.y56_c01078{bottom:595.403727pt;}
.y57_c01078{bottom:595.788900pt;}
.y58_c01078{bottom:596.709293pt;}
.y59_c01078{bottom:597.091493pt;}
.y5a_c01078{bottom:597.826200pt;}
.y5b_c01078{bottom:598.282140pt;}
.y4b_c01078{bottom:612.958027pt;}
.y4c_c01078{bottom:613.416087pt;}
.y4d_c01078{bottom:614.266760pt;}
.y4e_c01078{bottom:614.805173pt;}
.y4f_c01078{bottom:615.846027pt;}
.y50_c01078{bottom:616.323247pt;}
.y51_c01078{bottom:617.195720pt;}
.y52_c01078{bottom:617.549027pt;}
.y53_c01078{bottom:618.180720pt;}
.y44_c01078{bottom:633.600320pt;}
.y45_c01078{bottom:634.188980pt;}
.y46_c01078{bottom:635.010473pt;}
.y47_c01078{bottom:635.885813pt;}
.y48_c01078{bottom:636.885760pt;}
.y49_c01078{bottom:637.989060pt;}
.y4a_c01078{bottom:638.375713pt;}
.y3a_c01078{bottom:653.276927pt;}
.y3b_c01078{bottom:653.423240pt;}
.y3c_c01078{bottom:654.221453pt;}
.y3d_c01078{bottom:654.832740pt;}
.y3e_c01078{bottom:655.681753pt;}
.y3f_c01078{bottom:656.273527pt;}
.y40_c01078{bottom:656.749380pt;}
.y41_c01078{bottom:657.340233pt;}
.y42_c01078{bottom:657.797553pt;}
.y43_c01078{bottom:658.077647pt;}
.y33_c01078{bottom:673.682667pt;}
.y34_c01078{bottom:675.298027pt;}
.y35_c01078{bottom:675.619467pt;}
.y36_c01078{bottom:675.964587pt;}
.y37_c01078{bottom:677.015507pt;}
.y38_c01078{bottom:677.498827pt;}
.y39_c01078{bottom:677.830367pt;}
.y29_c01078{bottom:691.910645pt;}
.y2a_c01078{bottom:693.602555pt;}
.y2b_c01078{bottom:694.873701pt;}
.y2c_c01078{bottom:695.665475pt;}
.y2d_c01078{bottom:696.305661pt;}
.y2e_c01078{bottom:697.116899pt;}
.y2f_c01078{bottom:697.472480pt;}
.y30_c01078{bottom:697.812147pt;}
.y31_c01078{bottom:699.097683pt;}
.y32_c01078{bottom:700.423128pt;}
.y1e_c01078{bottom:712.074912pt;}
.y1f_c01078{bottom:713.782765pt;}
.y20_c01078{bottom:714.367216pt;}
.y21_c01078{bottom:715.143149pt;}
.y22_c01078{bottom:715.555024pt;}
.y23_c01078{bottom:715.934381pt;}
.y24_c01078{bottom:717.038995pt;}
.y25_c01078{bottom:718.027325pt;}
.y26_c01078{bottom:718.642240pt;}
.y27_c01078{bottom:720.344696pt;}
.y28_c01078{bottom:722.975904pt;}
.y13_c01078{bottom:732.232592pt;}
.y14_c01078{bottom:733.917176pt;}
.y15_c01078{bottom:735.047531pt;}
.y16_c01078{bottom:735.842429pt;}
.y17_c01078{bottom:736.185101pt;}
.y18_c01078{bottom:737.533819pt;}
.y19_c01078{bottom:738.119419pt;}
.y1a_c01078{bottom:739.029181pt;}
.y1b_c01078{bottom:739.759285pt;}
.y1c_c01078{bottom:741.900584pt;}
.yd_c01078{bottom:742.556760pt;}
.y1d_c01078{bottom:743.447616pt;}
.ye_c01078{bottom:744.412043pt;}
.yf_c01078{bottom:746.047232pt;}
.y10_c01078{bottom:746.696285pt;}
.y11_c01078{bottom:747.285941pt;}
.y12_c01078{bottom:749.151512pt;}
.yb_c01078{bottom:765.121333pt;}
.y5_c01078{bottom:771.598701pt;}
.y6_c01078{bottom:773.077733pt;}
.y7_c01078{bottom:775.517307pt;}
.yc_c01078{bottom:776.013621pt;}
.y8_c01078{bottom:776.393773pt;}
.y9_c01078{bottom:777.185792pt;}
.ya_c01078{bottom:778.003133pt;}
.y1_c01078{bottom:805.930667pt;}
.y2_c01078{bottom:811.010867pt;}
.y3_c01078{bottom:812.855987pt;}
.y4_c01078{bottom:814.324235pt;}
.h18_c01078{height:19.600000pt;}
.h19_c01078{height:40.133333pt;}
.h17_c01078{height:44.800000pt;}
.h4_c01078{height:51.345754pt;}
.h1a_c01078{height:52.266667pt;}
.hc_c01078{height:55.072861pt;}
.h6_c01078{height:55.079991pt;}
.h5_c01078{height:56.013550pt;}
.h11_c01078{height:56.941560pt;}
.h15_c01078{height:57.873176pt;}
.hd_c01078{height:58.806615pt;}
.h16_c01078{height:60.673491pt;}
.hb_c01078{height:61.606930pt;}
.h12_c01078{height:62.538617pt;}
.ha_c01078{height:62.540368pt;}
.h14_c01078{height:62.542369pt;}
.hf_c01078{height:63.473806pt;}
.h13_c01078{height:63.475837pt;}
.h7_c01078{height:63.482024pt;}
.h10_c01078{height:64.415583pt;}
.he_c01078{height:65.340683pt;}
.h9_c01078{height:66.274121pt;}
.h8_c01078{height:67.216260pt;}
.h3_c01078{height:108.284204pt;}
.h2_c01078{height:119.486019pt;}
.h1_c01078{height:893.333333pt;}
.h0_c01078{height:893.466667pt;}
.w0_c01078{width:657.066667pt;}
.w1_c01078{width:657.333333pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:40.165333pt;}
.x10_c01078{left:47.300243pt;}
.x2d_c01078{left:113.227387pt;}
.x11_c01078{left:120.537296pt;}
.x19_c01078{left:121.962061pt;}
.x35_c01078{left:124.062240pt;}
.x56_c01078{left:125.757853pt;}
.x5b_c01078{left:128.866667pt;}
.x6b_c01078{left:130.473333pt;}
.x75_c01078{left:131.472000pt;}
.x7d_c01078{left:132.482693pt;}
.x84_c01078{left:133.680000pt;}
.x28_c01078{left:136.776000pt;}
.x43_c01078{left:143.537847pt;}
.x1a_c01078{left:149.801344pt;}
.x5_c01078{left:154.593557pt;}
.x4e_c01078{left:157.479033pt;}
.x6c_c01078{left:160.480000pt;}
.x62_c01078{left:162.412811pt;}
.x12_c01078{left:169.673544pt;}
.x7e_c01078{left:171.357687pt;}
.x2e_c01078{left:172.283840pt;}
.x57_c01078{left:176.163860pt;}
.x66_c01078{left:178.594667pt;}
.x44_c01078{left:180.195880pt;}
.x22_c01078{left:181.994901pt;}
.xb_c01078{left:183.436949pt;}
.x1b_c01078{left:186.768832pt;}
.x7b_c01078{left:190.678667pt;}
.x4f_c01078{left:194.058400pt;}
.x6d_c01078{left:195.760000pt;}
.x39_c01078{left:196.797873pt;}
.x36_c01078{left:198.245780pt;}
.x13_c01078{left:204.228781pt;}
.x1c_c01078{left:206.399939pt;}
.x49_c01078{left:208.102567pt;}
.x2f_c01078{left:210.457927pt;}
.x58_c01078{left:212.408573pt;}
.x50_c01078{left:214.831207pt;}
.x5c_c01078{left:216.844000pt;}
.x45_c01078{left:217.949813pt;}
.x14_c01078{left:219.137792pt;}
.x87_c01078{left:223.200000pt;}
.x1d_c01078{left:224.492349pt;}
.x3a_c01078{left:226.735200pt;}
.x4a_c01078{left:228.991353pt;}
.x82_c01078{left:229.920000pt;}
.x63_c01078{left:233.461528pt;}
.x72_c01078{left:234.703972pt;}
.x5d_c01078{left:241.797333pt;}
.x59_c01078{left:243.131493pt;}
.x29_c01078{left:244.466667pt;}
.x23_c01078{left:250.176397pt;}
.x79_c01078{left:253.169068pt;}
.x4b_c01078{left:254.647720pt;}
.x51_c01078{left:258.357953pt;}
.x67_c01078{left:259.361333pt;}
.x3f_c01078{left:261.515313pt;}
.x30_c01078{left:263.502460pt;}
.x53_c01078{left:264.494753pt;}
.x2a_c01078{left:265.896000pt;}
.x64_c01078{left:268.043029pt;}
.x15_c01078{left:277.775168pt;}
.x76_c01078{left:279.120000pt;}
.x40_c01078{left:281.770093pt;}
.x6e_c01078{left:282.890667pt;}
.x3b_c01078{left:284.567267pt;}
.x73_c01078{left:285.673995pt;}
.x24_c01078{left:288.809248pt;}
.x5e_c01078{left:289.758667pt;}
.x68_c01078{left:291.122667pt;}
.x5a_c01078{left:293.537500pt;}
.x37_c01078{left:296.947860pt;}
.x31_c01078{left:300.464567pt;}
.x83_c01078{left:301.920000pt;}
.x16_c01078{left:303.241277pt;}
.x25_c01078{left:305.760296pt;}
.x7f_c01078{left:307.372193pt;}
.xc_c01078{left:309.243187pt;}
.x3c_c01078{left:311.047400pt;}
.x54_c01078{left:315.619567pt;}
.x77_c01078{left:319.454667pt;}
.x2_c01078{left:322.398667pt;}
.x1e_c01078{left:324.113187pt;}
.x5f_c01078{left:329.009333pt;}
.x32_c01078{left:330.232127pt;}
.x46_c01078{left:331.708927pt;}
.x85_c01078{left:333.360000pt;}
.x55_c01078{left:334.341120pt;}
.x4c_c01078{left:340.839960pt;}
.x6_c01078{left:342.290453pt;}
.x6f_c01078{left:349.380000pt;}
.x41_c01078{left:350.383327pt;}
.x1f_c01078{left:353.397832pt;}
.x38_c01078{left:355.031047pt;}
.x65_c01078{left:356.147149pt;}
.x74_c01078{left:358.257280pt;}
.xd_c01078{left:359.179739pt;}
.x7a_c01078{left:360.491361pt;}
.x86_c01078{left:361.680000pt;}
.x60_c01078{left:362.968000pt;}
.x69_c01078{left:365.533333pt;}
.x33_c01078{left:367.132900pt;}
.x7c_c01078{left:371.490667pt;}
.x70_c01078{left:372.668000pt;}
.x17_c01078{left:374.506360pt;}
.x52_c01078{left:375.899373pt;}
.x78_c01078{left:377.094667pt;}
.x3d_c01078{left:379.163007pt;}
.x26_c01078{left:383.149997pt;}
.x42_c01078{left:389.050340pt;}
.x2b_c01078{left:391.186667pt;}
.x34_c01078{left:395.753813pt;}
.x6a_c01078{left:398.360000pt;}
.x80_c01078{left:400.355947pt;}
.xe_c01078{left:404.536715pt;}
.x81_c01078{left:405.840000pt;}
.x47_c01078{left:408.034067pt;}
.x7_c01078{left:409.729859pt;}
.x2c_c01078{left:413.289333pt;}
.x3e_c01078{left:414.252093pt;}
.x3_c01078{left:424.905333pt;}
.x4d_c01078{left:426.066967pt;}
.x20_c01078{left:434.480955pt;}
.x61_c01078{left:436.524000pt;}
.x48_c01078{left:438.508660pt;}
.x27_c01078{left:446.247376pt;}
.x18_c01078{left:467.593640pt;}
.x8_c01078{left:470.699355pt;}
.x71_c01078{left:476.545333pt;}
.x4_c01078{left:506.474667pt;}
.x9_c01078{left:533.594352pt;}
.xa_c01078{left:534.741333pt;}
.xf_c01078{left:548.030443pt;}
.x21_c01078{left:559.781045pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c01079{transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);-ms-transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.012133,-0.000194,0.003999,0.249968,0,0);}
.ma3_c01079{transform:matrix(0.012793,-0.000205,0.003999,0.249968,0,0);-ms-transform:matrix(0.012793,-0.000205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.012793,-0.000205,0.003999,0.249968,0,0);}
.m4a_c01079{transform:matrix(0.014257,-0.000271,0.004749,0.249955,0,0);-ms-transform:matrix(0.014257,-0.000271,0.004749,0.249955,0,0);-webkit-transform:matrix(0.014257,-0.000271,0.004749,0.249955,0,0);}
.m26_c01079{transform:matrix(0.015197,-0.000289,0.004749,0.249955,0,0);-ms-transform:matrix(0.015197,-0.000289,0.004749,0.249955,0,0);-webkit-transform:matrix(0.015197,-0.000289,0.004749,0.249955,0,0);}
.maa_c01079{transform:matrix(0.016283,-0.000261,0.003999,0.249968,0,0);-ms-transform:matrix(0.016283,-0.000261,0.003999,0.249968,0,0);-webkit-transform:matrix(0.016283,-0.000261,0.003999,0.249968,0,0);}
.m5d_c01079{transform:matrix(0.019756,-0.000415,0.005249,0.249945,0,0);-ms-transform:matrix(0.019756,-0.000415,0.005249,0.249945,0,0);-webkit-transform:matrix(0.019756,-0.000415,0.005249,0.249945,0,0);}
.mae_c01079{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);}
.m6b_c01079{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);}
.mea_c01079{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);}
.mf4_c01079{transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036505,0.000000,0.000000,0.250000,0,0);}
.meb_c01079{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);}
.mec_c01079{transform:matrix(0.043960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043960,0.000000,0.000000,0.250000,0,0);}
.m32_c01079{transform:matrix(0.075671,-0.001438,0.004749,0.249955,0,0);-ms-transform:matrix(0.075671,-0.001438,0.004749,0.249955,0,0);-webkit-transform:matrix(0.075671,-0.001438,0.004749,0.249955,0,0);}
.mee_c01079{transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082140,0.000000,0.000000,0.250000,0,0);}
.m88_c01079{transform:matrix(0.087545,-0.001313,0.003750,0.249972,0,0);-ms-transform:matrix(0.087545,-0.001313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.087545,-0.001313,0.003750,0.249972,0,0);}
.me8_c01079{transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089145,0.000000,0.000000,0.250000,0,0);}
.mac_c01079{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);}
.m53_c01079{transform:matrix(0.138920,-0.002639,0.004749,0.249955,0,0);-ms-transform:matrix(0.138920,-0.002639,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138920,-0.002639,0.004749,0.249955,0,0);}
.m75_c01079{transform:matrix(0.147158,-0.002207,0.003750,0.249972,0,0);-ms-transform:matrix(0.147158,-0.002207,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147158,-0.002207,0.003750,0.249972,0,0);}
.m93_c01079{transform:matrix(0.152083,-0.002281,0.003750,0.249972,0,0);-ms-transform:matrix(0.152083,-0.002281,0.003750,0.249972,0,0);-webkit-transform:matrix(0.152083,-0.002281,0.003750,0.249972,0,0);}
.m5a_c01079{transform:matrix(0.152091,-0.003194,0.005249,0.249945,0,0);-ms-transform:matrix(0.152091,-0.003194,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152091,-0.003194,0.005249,0.249945,0,0);}
.m60_c01079{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);}
.m73_c01079{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);}
.m8f_c01079{transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);-ms-transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155003,-0.002325,0.003750,0.249972,0,0);}
.md3_c01079{transform:matrix(0.155280,-0.002174,0.003500,0.249976,0,0);-ms-transform:matrix(0.155280,-0.002174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.155280,-0.002174,0.003500,0.249976,0,0);}
.mc_c01079{transform:matrix(0.155650,-0.002802,0.004499,0.249960,0,0);-ms-transform:matrix(0.155650,-0.002802,0.004499,0.249960,0,0);-webkit-transform:matrix(0.155650,-0.002802,0.004499,0.249960,0,0);}
.mf_c01079{transform:matrix(0.156370,-0.002815,0.004499,0.249960,0,0);-ms-transform:matrix(0.156370,-0.002815,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156370,-0.002815,0.004499,0.249960,0,0);}
.md_c01079{transform:matrix(0.157749,-0.002839,0.004499,0.249960,0,0);-ms-transform:matrix(0.157749,-0.002839,0.004499,0.249960,0,0);-webkit-transform:matrix(0.157749,-0.002839,0.004499,0.249960,0,0);}
.mdc_c01079{transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);-ms-transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);-webkit-transform:matrix(0.159447,-0.002392,0.003750,0.249972,0,0);}
.m2f_c01079{transform:matrix(0.159536,-0.003031,0.004749,0.249955,0,0);-ms-transform:matrix(0.159536,-0.003031,0.004749,0.249955,0,0);-webkit-transform:matrix(0.159536,-0.003031,0.004749,0.249955,0,0);}
.m99_c01079{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);}
.m37_c01079{transform:matrix(0.161226,-0.003063,0.004749,0.249955,0,0);-ms-transform:matrix(0.161226,-0.003063,0.004749,0.249955,0,0);-webkit-transform:matrix(0.161226,-0.003063,0.004749,0.249955,0,0);}
.m24_c01079{transform:matrix(0.162121,-0.003080,0.004749,0.249955,0,0);-ms-transform:matrix(0.162121,-0.003080,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162121,-0.003080,0.004749,0.249955,0,0);}
.m13_c01079{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);}
.ma1_c01079{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);}
.m76_c01079{transform:matrix(0.166746,-0.002501,0.003750,0.249972,0,0);-ms-transform:matrix(0.166746,-0.002501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166746,-0.002501,0.003750,0.249972,0,0);}
.m17_c01079{transform:matrix(0.167580,-0.003184,0.004749,0.249955,0,0);-ms-transform:matrix(0.167580,-0.003184,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167580,-0.003184,0.004749,0.249955,0,0);}
.m39_c01079{transform:matrix(0.168265,-0.003197,0.004749,0.249955,0,0);-ms-transform:matrix(0.168265,-0.003197,0.004749,0.249955,0,0);-webkit-transform:matrix(0.168265,-0.003197,0.004749,0.249955,0,0);}
.m7c_c01079{transform:matrix(0.168696,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168696,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168696,-0.002530,0.003750,0.249972,0,0);}
.m6f_c01079{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);}
.m4f_c01079{transform:matrix(0.169349,-0.003218,0.004749,0.249955,0,0);-ms-transform:matrix(0.169349,-0.003218,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169349,-0.003218,0.004749,0.249955,0,0);}
.mc9_c01079{transform:matrix(0.169513,-0.002373,0.003500,0.249976,0,0);-ms-transform:matrix(0.169513,-0.002373,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169513,-0.002373,0.003500,0.249976,0,0);}
.mf2_c01079{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);}
.m94_c01079{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);}
.m30_c01079{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);}
.m8_c01079{transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);-ms-transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);-webkit-transform:matrix(0.170782,-0.003074,0.004499,0.249960,0,0);}
.mcd_c01079{transform:matrix(0.171118,-0.002396,0.003500,0.249976,0,0);-ms-transform:matrix(0.171118,-0.002396,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171118,-0.002396,0.003500,0.249976,0,0);}
.m47_c01079{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);}
.m61_c01079{transform:matrix(0.171667,-0.003605,0.005249,0.249945,0,0);-ms-transform:matrix(0.171667,-0.003605,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171667,-0.003605,0.005249,0.249945,0,0);}
.ma2_c01079{transform:matrix(0.172561,-0.002588,0.003750,0.249972,0,0);-ms-transform:matrix(0.172561,-0.002588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172561,-0.002588,0.003750,0.249972,0,0);}
.m2c_c01079{transform:matrix(0.172789,-0.003283,0.004749,0.249955,0,0);-ms-transform:matrix(0.172789,-0.003283,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172789,-0.003283,0.004749,0.249955,0,0);}
.mbf_c01079{transform:matrix(0.174252,-0.002091,0.003000,0.249982,0,0);-ms-transform:matrix(0.174252,-0.002091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174252,-0.002091,0.003000,0.249982,0,0);}
.m8a_c01079{transform:matrix(0.174535,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174535,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174535,-0.002618,0.003750,0.249972,0,0);}
.m46_c01079{transform:matrix(0.174808,-0.003321,0.004749,0.249955,0,0);-ms-transform:matrix(0.174808,-0.003321,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174808,-0.003321,0.004749,0.249955,0,0);}
.m22_c01079{transform:matrix(0.176023,-0.003344,0.004749,0.249955,0,0);-ms-transform:matrix(0.176023,-0.003344,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176023,-0.003344,0.004749,0.249955,0,0);}
.ma_c01079{transform:matrix(0.176426,-0.003176,0.004499,0.249960,0,0);-ms-transform:matrix(0.176426,-0.003176,0.004499,0.249960,0,0);-webkit-transform:matrix(0.176426,-0.003176,0.004499,0.249960,0,0);}
.mbe_c01079{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_c01079{transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);-ms-transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177437,-0.002129,0.003000,0.249982,0,0);}
.mdb_c01079{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);}
.m87_c01079{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);}
.m9c_c01079{transform:matrix(0.178100,-0.002671,0.003750,0.249972,0,0);-ms-transform:matrix(0.178100,-0.002671,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178100,-0.002671,0.003750,0.249972,0,0);}
.me_c01079{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);}
.m92_c01079{transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179170,-0.002688,0.003750,0.249972,0,0);}
.m77_c01079{transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);-ms-transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180520,-0.002708,0.003750,0.249972,0,0);}
.mde_c01079{transform:matrix(0.181815,-0.002727,0.003750,0.249972,0,0);-ms-transform:matrix(0.181815,-0.002727,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181815,-0.002727,0.003750,0.249972,0,0);}
.m2b_c01079{transform:matrix(0.183347,-0.003484,0.004749,0.249955,0,0);-ms-transform:matrix(0.183347,-0.003484,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183347,-0.003484,0.004749,0.249955,0,0);}
.m5f_c01079{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);}
.m31_c01079{transform:matrix(0.183717,-0.003491,0.004749,0.249955,0,0);-ms-transform:matrix(0.183717,-0.003491,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183717,-0.003491,0.004749,0.249955,0,0);}
.maf_c01079{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);}
.mc8_c01079{transform:matrix(0.184877,-0.002588,0.003500,0.249976,0,0);-ms-transform:matrix(0.184877,-0.002588,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184877,-0.002588,0.003500,0.249976,0,0);}
.m10_c01079{transform:matrix(0.186090,-0.003350,0.004499,0.249960,0,0);-ms-transform:matrix(0.186090,-0.003350,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186090,-0.003350,0.004499,0.249960,0,0);}
.m80_c01079{transform:matrix(0.186144,-0.002792,0.003750,0.249972,0,0);-ms-transform:matrix(0.186144,-0.002792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186144,-0.002792,0.003750,0.249972,0,0);}
.mef_c01079{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);}
.mce_c01079{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);}
.mc1_c01079{transform:matrix(0.187017,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.187017,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187017,-0.002244,0.003000,0.249982,0,0);}
.m84_c01079{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);}
.m9a_c01079{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);}
.m68_c01079{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);}
.m8e_c01079{transform:matrix(0.188949,-0.002834,0.003750,0.249972,0,0);-ms-transform:matrix(0.188949,-0.002834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188949,-0.002834,0.003750,0.249972,0,0);}
.m35_c01079{transform:matrix(0.189906,-0.003608,0.004749,0.249955,0,0);-ms-transform:matrix(0.189906,-0.003608,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189906,-0.003608,0.004749,0.249955,0,0);}
.m15_c01079{transform:matrix(0.190981,-0.003629,0.004749,0.249955,0,0);-ms-transform:matrix(0.190981,-0.003629,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190981,-0.003629,0.004749,0.249955,0,0);}
.m33_c01079{transform:matrix(0.191465,-0.003638,0.004749,0.249955,0,0);-ms-transform:matrix(0.191465,-0.003638,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191465,-0.003638,0.004749,0.249955,0,0);}
.m2d_c01079{transform:matrix(0.192190,-0.003652,0.004749,0.249955,0,0);-ms-transform:matrix(0.192190,-0.003652,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192190,-0.003652,0.004749,0.249955,0,0);}
.m7_c01079{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);}
.mc2_c01079{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);}
.m90_c01079{transform:matrix(0.193478,-0.002902,0.003750,0.249972,0,0);-ms-transform:matrix(0.193478,-0.002902,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193478,-0.002902,0.003750,0.249972,0,0);}
.m3a_c01079{transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);-ms-transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193815,-0.003682,0.004749,0.249955,0,0);}
.m2e_c01079{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);}
.m95_c01079{transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);}
.m6a_c01079{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);}
.m74_c01079{transform:matrix(0.194658,-0.002920,0.003750,0.249972,0,0);-ms-transform:matrix(0.194658,-0.002920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194658,-0.002920,0.003750,0.249972,0,0);}
.m14_c01079{transform:matrix(0.195070,-0.003706,0.004749,0.249955,0,0);-ms-transform:matrix(0.195070,-0.003706,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195070,-0.003706,0.004749,0.249955,0,0);}
.m1a_c01079{transform:matrix(0.197534,-0.003753,0.004749,0.249955,0,0);-ms-transform:matrix(0.197534,-0.003753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197534,-0.003753,0.004749,0.249955,0,0);}
.mf5_c01079{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);}
.m1f_c01079{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);}
.m8b_c01079{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);}
.mc5_c01079{transform:matrix(0.200136,-0.002402,0.003000,0.249982,0,0);-ms-transform:matrix(0.200136,-0.002402,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200136,-0.002402,0.003000,0.249982,0,0);}
.m1e_c01079{transform:matrix(0.201684,-0.003832,0.004749,0.249955,0,0);-ms-transform:matrix(0.201684,-0.003832,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201684,-0.003832,0.004749,0.249955,0,0);}
.m3c_c01079{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);}
.m97_c01079{transform:matrix(0.202142,-0.003032,0.003750,0.249972,0,0);-ms-transform:matrix(0.202142,-0.003032,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202142,-0.003032,0.003750,0.249972,0,0);}
.m7b_c01079{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);}
.m98_c01079{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);}
.m36_c01079{transform:matrix(0.204173,-0.003879,0.004749,0.249955,0,0);-ms-transform:matrix(0.204173,-0.003879,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204173,-0.003879,0.004749,0.249955,0,0);}
.ma0_c01079{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);}
.m38_c01079{transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);-ms-transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204243,-0.003881,0.004749,0.249955,0,0);}
.m8d_c01079{transform:matrix(0.204332,-0.003065,0.003750,0.249972,0,0);-ms-transform:matrix(0.204332,-0.003065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204332,-0.003065,0.003750,0.249972,0,0);}
.m9b_c01079{transform:matrix(0.204707,-0.003071,0.003750,0.249972,0,0);-ms-transform:matrix(0.204707,-0.003071,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204707,-0.003071,0.003750,0.249972,0,0);}
.m8c_c01079{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);}
.m7e_c01079{transform:matrix(0.206077,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206077,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206077,-0.003091,0.003750,0.249972,0,0);}
.m29_c01079{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);}
.md2_c01079{transform:matrix(0.206415,-0.002890,0.003500,0.249976,0,0);-ms-transform:matrix(0.206415,-0.002890,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206415,-0.002890,0.003500,0.249976,0,0);}
.m18_c01079{transform:matrix(0.206503,-0.003924,0.004749,0.249955,0,0);-ms-transform:matrix(0.206503,-0.003924,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206503,-0.003924,0.004749,0.249955,0,0);}
.me3_c01079{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);}
.m40_c01079{transform:matrix(0.207852,-0.003949,0.004749,0.249955,0,0);-ms-transform:matrix(0.207852,-0.003949,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207852,-0.003949,0.004749,0.249955,0,0);}
.ma8_c01079{transform:matrix(0.208728,-0.003340,0.003999,0.249968,0,0);-ms-transform:matrix(0.208728,-0.003340,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208728,-0.003340,0.003999,0.249968,0,0);}
.mdd_c01079{transform:matrix(0.208842,-0.003133,0.003750,0.249972,0,0);-ms-transform:matrix(0.208842,-0.003133,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208842,-0.003133,0.003750,0.249972,0,0);}
.m2_c01079{transform:matrix(0.209856,-0.003777,0.004499,0.249960,0,0);-ms-transform:matrix(0.209856,-0.003777,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209856,-0.003777,0.004499,0.249960,0,0);}
.mbb_c01079{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);}
.m28_c01079{transform:matrix(0.211407,-0.004017,0.004749,0.249955,0,0);-ms-transform:matrix(0.211407,-0.004017,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211407,-0.004017,0.004749,0.249955,0,0);}
.m86_c01079{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);}
.m3b_c01079{transform:matrix(0.212577,-0.004039,0.004749,0.249955,0,0);-ms-transform:matrix(0.212577,-0.004039,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212577,-0.004039,0.004749,0.249955,0,0);}
.m9_c01079{transform:matrix(0.212771,-0.003830,0.004499,0.249960,0,0);-ms-transform:matrix(0.212771,-0.003830,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212771,-0.003830,0.004499,0.249960,0,0);}
.mc6_c01079{transform:matrix(0.212970,-0.002556,0.003000,0.249982,0,0);-ms-transform:matrix(0.212970,-0.002556,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212970,-0.002556,0.003000,0.249982,0,0);}
.m85_c01079{transform:matrix(0.213096,-0.003196,0.003750,0.249972,0,0);-ms-transform:matrix(0.213096,-0.003196,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213096,-0.003196,0.003750,0.249972,0,0);}
.m2a_c01079{transform:matrix(0.213546,-0.004057,0.004749,0.249955,0,0);-ms-transform:matrix(0.213546,-0.004057,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213546,-0.004057,0.004749,0.249955,0,0);}
.m16_c01079{transform:matrix(0.213931,-0.004065,0.004749,0.249955,0,0);-ms-transform:matrix(0.213931,-0.004065,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213931,-0.004065,0.004749,0.249955,0,0);}
.mc0_c01079{transform:matrix(0.214305,-0.002572,0.003000,0.249982,0,0);-ms-transform:matrix(0.214305,-0.002572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214305,-0.002572,0.003000,0.249982,0,0);}
.m44_c01079{transform:matrix(0.214356,-0.004073,0.004749,0.249955,0,0);-ms-transform:matrix(0.214356,-0.004073,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214356,-0.004073,0.004749,0.249955,0,0);}
.mb1_c01079{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);}
.m7a_c01079{transform:matrix(0.216606,-0.003249,0.003750,0.249972,0,0);-ms-transform:matrix(0.216606,-0.003249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216606,-0.003249,0.003750,0.249972,0,0);}
.m57_c01079{transform:matrix(0.217752,-0.004573,0.005249,0.249945,0,0);-ms-transform:matrix(0.217752,-0.004573,0.005249,0.249945,0,0);-webkit-transform:matrix(0.217752,-0.004573,0.005249,0.249945,0,0);}
.m41_c01079{transform:matrix(0.218441,-0.004150,0.004749,0.249955,0,0);-ms-transform:matrix(0.218441,-0.004150,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218441,-0.004150,0.004749,0.249955,0,0);}
.mcf_c01079{transform:matrix(0.219004,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.219004,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219004,-0.003066,0.003500,0.249976,0,0);}
.m12_c01079{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);}
.me4_c01079{transform:matrix(0.219680,-0.003295,0.003750,0.249972,0,0);-ms-transform:matrix(0.219680,-0.003295,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219680,-0.003295,0.003750,0.249972,0,0);}
.m7f_c01079{transform:matrix(0.219880,-0.003298,0.003750,0.249972,0,0);-ms-transform:matrix(0.219880,-0.003298,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219880,-0.003298,0.003750,0.249972,0,0);}
.m89_c01079{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);}
.m1b_c01079{transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);-ms-transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220675,-0.004193,0.004749,0.249955,0,0);}
.mb_c01079{transform:matrix(0.222054,-0.003997,0.004499,0.249960,0,0);-ms-transform:matrix(0.222054,-0.003997,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222054,-0.003997,0.004499,0.249960,0,0);}
.m4_c01079{transform:matrix(0.222339,-0.004002,0.004499,0.249960,0,0);-ms-transform:matrix(0.222339,-0.004002,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222339,-0.004002,0.004499,0.249960,0,0);}
.mca_c01079{transform:matrix(0.222353,-0.003113,0.003500,0.249976,0,0);-ms-transform:matrix(0.222353,-0.003113,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222353,-0.003113,0.003500,0.249976,0,0);}
.m81_c01079{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);}
.m62_c01079{transform:matrix(0.224346,-0.004711,0.005249,0.249945,0,0);-ms-transform:matrix(0.224346,-0.004711,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224346,-0.004711,0.005249,0.249945,0,0);}
.m83_c01079{transform:matrix(0.225200,-0.003378,0.003750,0.249972,0,0);-ms-transform:matrix(0.225200,-0.003378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225200,-0.003378,0.003750,0.249972,0,0);}
.ma6_c01079{transform:matrix(0.225236,-0.003604,0.003999,0.249968,0,0);-ms-transform:matrix(0.225236,-0.003604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225236,-0.003604,0.003999,0.249968,0,0);}
.md8_c01079{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);}
.m43_c01079{transform:matrix(0.230678,-0.004383,0.004749,0.249955,0,0);-ms-transform:matrix(0.230678,-0.004383,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230678,-0.004383,0.004749,0.249955,0,0);}
.m72_c01079{transform:matrix(0.231669,-0.003475,0.003750,0.249972,0,0);-ms-transform:matrix(0.231669,-0.003475,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231669,-0.003475,0.003750,0.249972,0,0);}
.m1d_c01079{transform:matrix(0.232233,-0.004412,0.004749,0.249955,0,0);-ms-transform:matrix(0.232233,-0.004412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232233,-0.004412,0.004749,0.249955,0,0);}
.mfa_c01079{transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234420,0.000000,0.000000,0.250000,0,0);}
.m82_c01079{transform:matrix(0.235773,-0.003537,0.003750,0.249972,0,0);-ms-transform:matrix(0.235773,-0.003537,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235773,-0.003537,0.003750,0.249972,0,0);}
.m5c_c01079{transform:matrix(0.236218,-0.004961,0.005249,0.249945,0,0);-ms-transform:matrix(0.236218,-0.004961,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236218,-0.004961,0.005249,0.249945,0,0);}
.md4_c01079{transform:matrix(0.238127,-0.003334,0.003500,0.249976,0,0);-ms-transform:matrix(0.238127,-0.003334,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238127,-0.003334,0.003500,0.249976,0,0);}
.m58_c01079{transform:matrix(0.238652,-0.005012,0.005249,0.249945,0,0);-ms-transform:matrix(0.238652,-0.005012,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238652,-0.005012,0.005249,0.249945,0,0);}
.mad_c01079{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);}
.m9d_c01079{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);}
.m78_c01079{transform:matrix(0.241658,-0.003625,0.003750,0.249972,0,0);-ms-transform:matrix(0.241658,-0.003625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241658,-0.003625,0.003750,0.249972,0,0);}
.mcb_c01079{transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);-ms-transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);}
.m5e_c01079{transform:matrix(0.243681,-0.005117,0.005249,0.249945,0,0);-ms-transform:matrix(0.243681,-0.005117,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243681,-0.005117,0.005249,0.249945,0,0);}
.m3_c01079{transform:matrix(0.245220,-0.004414,0.004499,0.249960,0,0);-ms-transform:matrix(0.245220,-0.004414,0.004499,0.249960,0,0);-webkit-transform:matrix(0.245220,-0.004414,0.004499,0.249960,0,0);}
.mab_c01079{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);}
.m3d_c01079{transform:matrix(0.248420,-0.004720,0.004749,0.249955,0,0);-ms-transform:matrix(0.248420,-0.004720,0.004749,0.249955,0,0);-webkit-transform:matrix(0.248420,-0.004720,0.004749,0.249955,0,0);}
.m19_c01079{transform:matrix(0.248775,-0.004727,0.004749,0.249955,0,0);-ms-transform:matrix(0.248775,-0.004727,0.004749,0.249955,0,0);-webkit-transform:matrix(0.248775,-0.004727,0.004749,0.249955,0,0);}
.ma9_c01079{transform:matrix(0.249053,-0.003985,0.003999,0.249968,0,0);-ms-transform:matrix(0.249053,-0.003985,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249053,-0.003985,0.003999,0.249968,0,0);}
.md0_c01079{transform:matrix(0.249186,-0.003489,0.003500,0.249976,0,0);-ms-transform:matrix(0.249186,-0.003489,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249186,-0.003489,0.003500,0.249976,0,0);}
.md1_c01079{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);}
.ma5_c01079{transform:matrix(0.252488,-0.004040,0.003999,0.249968,0,0);-ms-transform:matrix(0.252488,-0.004040,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252488,-0.004040,0.003999,0.249968,0,0);}
.m11_c01079{transform:matrix(0.253259,-0.004559,0.004499,0.249960,0,0);-ms-transform:matrix(0.253259,-0.004559,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253259,-0.004559,0.004499,0.249960,0,0);}
.m6d_c01079{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);}
.m6_c01079{transform:matrix(0.256054,-0.004609,0.004499,0.249960,0,0);-ms-transform:matrix(0.256054,-0.004609,0.004499,0.249960,0,0);-webkit-transform:matrix(0.256054,-0.004609,0.004499,0.249960,0,0);}
.m4b_c01079{transform:matrix(0.257963,-0.004901,0.004749,0.249955,0,0);-ms-transform:matrix(0.257963,-0.004901,0.004749,0.249955,0,0);-webkit-transform:matrix(0.257963,-0.004901,0.004749,0.249955,0,0);}
.m5_c01079{transform:matrix(0.258423,-0.004652,0.004499,0.249960,0,0);-ms-transform:matrix(0.258423,-0.004652,0.004499,0.249960,0,0);-webkit-transform:matrix(0.258423,-0.004652,0.004499,0.249960,0,0);}
.m63_c01079{transform:matrix(0.258638,-0.005431,0.005249,0.249945,0,0);-ms-transform:matrix(0.258638,-0.005431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258638,-0.005431,0.005249,0.249945,0,0);}
.m69_c01079{transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);}
.md9_c01079{transform:matrix(0.258786,-0.003882,0.003750,0.249972,0,0);-ms-transform:matrix(0.258786,-0.003882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258786,-0.003882,0.003750,0.249972,0,0);}
.m6e_c01079{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);}
.md6_c01079{transform:matrix(0.262435,-0.003937,0.003750,0.249972,0,0);-ms-transform:matrix(0.262435,-0.003937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262435,-0.003937,0.003750,0.249972,0,0);}
.m25_c01079{transform:matrix(0.264262,-0.005021,0.004749,0.249955,0,0);-ms-transform:matrix(0.264262,-0.005021,0.004749,0.249955,0,0);-webkit-transform:matrix(0.264262,-0.005021,0.004749,0.249955,0,0);}
.md7_c01079{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);}
.m51_c01079{transform:matrix(0.267177,-0.005076,0.004749,0.249955,0,0);-ms-transform:matrix(0.267177,-0.005076,0.004749,0.249955,0,0);-webkit-transform:matrix(0.267177,-0.005076,0.004749,0.249955,0,0);}
.me1_c01079{transform:matrix(0.269850,-0.004048,0.003750,0.249972,0,0);-ms-transform:matrix(0.269850,-0.004048,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269850,-0.004048,0.003750,0.249972,0,0);}
.mbc_c01079{transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);}
.m50_c01079{transform:matrix(0.272941,-0.005186,0.004749,0.249955,0,0);-ms-transform:matrix(0.272941,-0.005186,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272941,-0.005186,0.004749,0.249955,0,0);}
.m6c_c01079{transform:matrix(0.273045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273045,0.000000,0.000000,0.250000,0,0);}
.m9f_c01079{transform:matrix(0.274074,-0.004111,0.003750,0.249972,0,0);-ms-transform:matrix(0.274074,-0.004111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274074,-0.004111,0.003750,0.249972,0,0);}
.mc3_c01079{transform:matrix(0.274400,-0.003293,0.003000,0.249982,0,0);-ms-transform:matrix(0.274400,-0.003293,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274400,-0.003293,0.003000,0.249982,0,0);}
.m66_c01079{transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275245,0.000000,0.000000,0.250000,0,0);}
.m49_c01079{transform:matrix(0.276180,-0.005247,0.004749,0.249955,0,0);-ms-transform:matrix(0.276180,-0.005247,0.004749,0.249955,0,0);-webkit-transform:matrix(0.276180,-0.005247,0.004749,0.249955,0,0);}
.m65_c01079{transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278480,0.000000,0.000000,0.250000,0,0);}
.me5_c01079{transform:matrix(0.279664,-0.004195,0.003750,0.249972,0,0);-ms-transform:matrix(0.279664,-0.004195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279664,-0.004195,0.003750,0.249972,0,0);}
.m52_c01079{transform:matrix(0.283524,-0.005387,0.004749,0.249955,0,0);-ms-transform:matrix(0.283524,-0.005387,0.004749,0.249955,0,0);-webkit-transform:matrix(0.283524,-0.005387,0.004749,0.249955,0,0);}
.m55_c01079{transform:matrix(0.284787,-0.005981,0.005249,0.249945,0,0);-ms-transform:matrix(0.284787,-0.005981,0.005249,0.249945,0,0);-webkit-transform:matrix(0.284787,-0.005981,0.005249,0.249945,0,0);}
.m21_c01079{transform:matrix(0.292122,-0.005550,0.004749,0.249955,0,0);-ms-transform:matrix(0.292122,-0.005550,0.004749,0.249955,0,0);-webkit-transform:matrix(0.292122,-0.005550,0.004749,0.249955,0,0);}
.m23_c01079{transform:matrix(0.294297,-0.005592,0.004749,0.249955,0,0);-ms-transform:matrix(0.294297,-0.005592,0.004749,0.249955,0,0);-webkit-transform:matrix(0.294297,-0.005592,0.004749,0.249955,0,0);}
.mf3_c01079{transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294445,0.000000,0.000000,0.250000,0,0);}
.mda_c01079{transform:matrix(0.294877,-0.004423,0.003750,0.249972,0,0);-ms-transform:matrix(0.294877,-0.004423,0.003750,0.249972,0,0);-webkit-transform:matrix(0.294877,-0.004423,0.003750,0.249972,0,0);}
.m42_c01079{transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);-ms-transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);-webkit-transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);}
.m67_c01079{transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);}
.m3e_c01079{transform:matrix(0.305850,-0.005811,0.004749,0.249955,0,0);-ms-transform:matrix(0.305850,-0.005811,0.004749,0.249955,0,0);-webkit-transform:matrix(0.305850,-0.005811,0.004749,0.249955,0,0);}
.m0_c01079{transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307310,0.000000,0.000000,0.250000,0,0);}
.mf0_c01079{transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);}
.me0_c01079{transform:matrix(0.308905,-0.004634,0.003750,0.249972,0,0);-ms-transform:matrix(0.308905,-0.004634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.308905,-0.004634,0.003750,0.249972,0,0);}
.me9_c01079{transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312185,0.000000,0.000000,0.250000,0,0);}
.mb2_c01079{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);}
.ma7_c01079{transform:matrix(0.321054,-0.005137,0.003999,0.249968,0,0);-ms-transform:matrix(0.321054,-0.005137,0.003999,0.249968,0,0);-webkit-transform:matrix(0.321054,-0.005137,0.003999,0.249968,0,0);}
.m96_c01079{transform:matrix(0.321419,-0.004821,0.003750,0.249972,0,0);-ms-transform:matrix(0.321419,-0.004821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.321419,-0.004821,0.003750,0.249972,0,0);}
.mb4_c01079{transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325310,0.000000,0.000000,0.250000,0,0);}
.med_c01079{transform:matrix(0.325930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325930,0.000000,0.000000,0.250000,0,0);}
.mf1_c01079{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);}
.mdf_c01079{transform:matrix(0.335367,-0.005031,0.003750,0.249972,0,0);-ms-transform:matrix(0.335367,-0.005031,0.003750,0.249972,0,0);-webkit-transform:matrix(0.335367,-0.005031,0.003750,0.249972,0,0);}
.mcc_c01079{transform:matrix(0.337642,-0.004727,0.003500,0.249976,0,0);-ms-transform:matrix(0.337642,-0.004727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.337642,-0.004727,0.003500,0.249976,0,0);}
.m9e_c01079{transform:matrix(0.346306,-0.005195,0.003750,0.249972,0,0);-ms-transform:matrix(0.346306,-0.005195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.346306,-0.005195,0.003750,0.249972,0,0);}
.m48_c01079{transform:matrix(0.352191,-0.006692,0.004749,0.249955,0,0);-ms-transform:matrix(0.352191,-0.006692,0.004749,0.249955,0,0);-webkit-transform:matrix(0.352191,-0.006692,0.004749,0.249955,0,0);}
.m64_c01079{transform:matrix(0.354417,-0.007443,0.005249,0.249945,0,0);-ms-transform:matrix(0.354417,-0.007443,0.005249,0.249945,0,0);-webkit-transform:matrix(0.354417,-0.007443,0.005249,0.249945,0,0);}
.me2_c01079{transform:matrix(0.356475,-0.005347,0.003750,0.249972,0,0);-ms-transform:matrix(0.356475,-0.005347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.356475,-0.005347,0.003750,0.249972,0,0);}
.mf7_c01079{transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363450,0.000000,0.000000,0.250000,0,0);}
.mfb_c01079{transform:matrix(0.363760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363760,0.000000,0.000000,0.250000,0,0);}
.mc7_c01079{transform:matrix(0.365314,-0.004384,0.003000,0.249982,0,0);-ms-transform:matrix(0.365314,-0.004384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.365314,-0.004384,0.003000,0.249982,0,0);}
.m20_c01079{transform:matrix(0.371898,-0.007066,0.004749,0.249955,0,0);-ms-transform:matrix(0.371898,-0.007066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.371898,-0.007066,0.004749,0.249955,0,0);}
.m54_c01079{transform:matrix(0.386245,-0.007339,0.004749,0.249955,0,0);-ms-transform:matrix(0.386245,-0.007339,0.004749,0.249955,0,0);-webkit-transform:matrix(0.386245,-0.007339,0.004749,0.249955,0,0);}
.m5b_c01079{transform:matrix(0.390944,-0.008210,0.005249,0.249945,0,0);-ms-transform:matrix(0.390944,-0.008210,0.005249,0.249945,0,0);-webkit-transform:matrix(0.390944,-0.008210,0.005249,0.249945,0,0);}
.mb3_c01079{transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414160,0.000000,0.000000,0.250000,0,0);}
.mb9_c01079{transform:matrix(0.414530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414530,0.000000,0.000000,0.250000,0,0);}
.mb7_c01079{transform:matrix(0.415400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415400,0.000000,0.000000,0.250000,0,0);}
.m7d_c01079{transform:matrix(0.418783,-0.006282,0.003750,0.249972,0,0);-ms-transform:matrix(0.418783,-0.006282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.418783,-0.006282,0.003750,0.249972,0,0);}
.m59_c01079{transform:matrix(0.432030,-0.009073,0.005249,0.249945,0,0);-ms-transform:matrix(0.432030,-0.009073,0.005249,0.249945,0,0);-webkit-transform:matrix(0.432030,-0.009073,0.005249,0.249945,0,0);}
.m4d_c01079{transform:matrix(0.445985,-0.008474,0.004749,0.249955,0,0);-ms-transform:matrix(0.445985,-0.008474,0.004749,0.249955,0,0);-webkit-transform:matrix(0.445985,-0.008474,0.004749,0.249955,0,0);}
.mba_c01079{transform:matrix(0.447530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447530,0.000000,0.000000,0.250000,0,0);}
.m27_c01079{transform:matrix(0.456453,-0.008673,0.004749,0.249955,0,0);-ms-transform:matrix(0.456453,-0.008673,0.004749,0.249955,0,0);-webkit-transform:matrix(0.456453,-0.008673,0.004749,0.249955,0,0);}
.m3f_c01079{transform:matrix(0.464806,-0.008831,0.004749,0.249955,0,0);-ms-transform:matrix(0.464806,-0.008831,0.004749,0.249955,0,0);-webkit-transform:matrix(0.464806,-0.008831,0.004749,0.249955,0,0);}
.m56_c01079{transform:matrix(0.493376,-0.010361,0.005249,0.249945,0,0);-ms-transform:matrix(0.493376,-0.010361,0.005249,0.249945,0,0);-webkit-transform:matrix(0.493376,-0.010361,0.005249,0.249945,0,0);}
.mb0_c01079{transform:matrix(0.501230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501230,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{transform:matrix(0.503445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503445,0.000000,0.000000,0.250000,0,0);}
.mf9_c01079{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);}
.m79_c01079{transform:matrix(0.519787,-0.007797,0.003750,0.249972,0,0);-ms-transform:matrix(0.519787,-0.007797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.519787,-0.007797,0.003750,0.249972,0,0);}
.mbd_c01079{transform:matrix(0.531940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531940,0.000000,0.000000,0.250000,0,0);}
.mb6_c01079{transform:matrix(0.557835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557835,0.000000,0.000000,0.250000,0,0);}
.me7_c01079{transform:matrix(0.564561,-0.008468,0.003750,0.249972,0,0);-ms-transform:matrix(0.564561,-0.008468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.564561,-0.008468,0.003750,0.249972,0,0);}
.m4e_c01079{transform:matrix(0.564988,-0.010735,0.004749,0.249955,0,0);-ms-transform:matrix(0.564988,-0.010735,0.004749,0.249955,0,0);-webkit-transform:matrix(0.564988,-0.010735,0.004749,0.249955,0,0);}
.mb5_c01079{transform:matrix(0.566275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566275,0.000000,0.000000,0.250000,0,0);}
.mb8_c01079{transform:matrix(0.577425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577425,0.000000,0.000000,0.250000,0,0);}
.m4c_c01079{transform:matrix(0.585419,-0.011123,0.004749,0.249955,0,0);-ms-transform:matrix(0.585419,-0.011123,0.004749,0.249955,0,0);-webkit-transform:matrix(0.585419,-0.011123,0.004749,0.249955,0,0);}
.m34_c01079{transform:matrix(0.589244,-0.011196,0.004749,0.249955,0,0);-ms-transform:matrix(0.589244,-0.011196,0.004749,0.249955,0,0);-webkit-transform:matrix(0.589244,-0.011196,0.004749,0.249955,0,0);}
.m70_c01079{transform:matrix(0.641650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641650,0.000000,0.000000,0.250000,0,0);}
.m45_c01079{transform:matrix(0.696024,-0.013224,0.004749,0.249955,0,0);-ms-transform:matrix(0.696024,-0.013224,0.004749,0.249955,0,0);-webkit-transform:matrix(0.696024,-0.013224,0.004749,0.249955,0,0);}
.me6_c01079{transform:matrix(0.703731,-0.010556,0.003750,0.249972,0,0);-ms-transform:matrix(0.703731,-0.010556,0.003750,0.249972,0,0);-webkit-transform:matrix(0.703731,-0.010556,0.003750,0.249972,0,0);}
.mf8_c01079{transform:matrix(0.752880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752880,0.000000,0.000000,0.250000,0,0);}
.m91_c01079{transform:matrix(0.754565,-0.011318,0.003750,0.249972,0,0);-ms-transform:matrix(0.754565,-0.011318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.754565,-0.011318,0.003750,0.249972,0,0);}
.m1c_c01079{transform:matrix(0.775820,-0.014741,0.004749,0.249955,0,0);-ms-transform:matrix(0.775820,-0.014741,0.004749,0.249955,0,0);-webkit-transform:matrix(0.775820,-0.014741,0.004749,0.249955,0,0);}
.m71_c01079{transform:matrix(0.938835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.938835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.938835,0.000000,0.000000,0.250000,0,0);}
.md5_c01079{transform:matrix(0.950377,-0.013305,0.003500,0.249976,0,0);-ms-transform:matrix(0.950377,-0.013305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.950377,-0.013305,0.003500,0.249976,0,0);}
.mf6_c01079{transform:matrix(2.599200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.599200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.599200,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls0_c01079{letter-spacing:0.000000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:0.000000px;}
.fc0_c01079{color:transparent;}
.fs1b_c01079{font-size:22.050000px;}
.fs7_c01079{font-size:51.459286px;}
.fs11_c01079{font-size:56.706378px;}
.fse_c01079{font-size:61.956969px;}
.fs18_c01079{font-size:63.006174px;}
.fs1a_c01079{font-size:63.007087px;}
.fsc_c01079{font-size:64.050000px;}
.fs4_c01079{font-size:64.061560px;}
.fs8_c01079{font-size:65.114353px;}
.fsb_c01079{font-size:67.200000px;}
.fs15_c01079{font-size:69.300000px;}
.fs16_c01079{font-size:69.304989px;}
.fsf_c01079{font-size:69.307796px;}
.fs14_c01079{font-size:70.350000px;}
.fsd_c01079{font-size:70.357914px;}
.fs13_c01079{font-size:70.359004px;}
.fs2_c01079{font-size:70.361396px;}
.fs3_c01079{font-size:70.362697px;}
.fs6_c01079{font-size:71.412887px;}
.fsa_c01079{font-size:71.415742px;}
.fs10_c01079{font-size:72.458150px;}
.fs1_c01079{font-size:72.461736px;}
.fs5_c01079{font-size:72.463076px;}
.fs19_c01079{font-size:73.508268px;}
.fs17_c01079{font-size:74.557306px;}
.fs12_c01079{font-size:78.758859px;}
.fs9_c01079{font-size:106.073381px;}
.fs0_c01079{font-size:124.950000px;}
.y0_c01079{bottom:0.000000px;}
.ya8_c01079{bottom:157.951500px;}
.ya9_c01079{bottom:158.444106px;}
.yaa_c01079{bottom:158.641728px;}
.yab_c01079{bottom:158.894466px;}
.yac_c01079{bottom:159.727092px;}
.yad_c01079{bottom:160.005876px;}
.yae_c01079{bottom:160.586034px;}
.yaf_c01079{bottom:161.401020px;}
.yb0_c01079{bottom:161.772342px;}
.ya7_c01079{bottom:183.730500px;}
.ya6_c01079{bottom:229.131000px;}
.ya5_c01079{bottom:252.621000px;}
.ya4_c01079{bottom:273.924000px;}
.y9c_c01079{bottom:296.191500px;}
.y9d_c01079{bottom:296.700012px;}
.y9e_c01079{bottom:297.494196px;}
.y9f_c01079{bottom:298.021236px;}
.ya0_c01079{bottom:298.241676px;}
.ya1_c01079{bottom:298.557132px;}
.ya2_c01079{bottom:299.014860px;}
.ya3_c01079{bottom:300.910332px;}
.y9b_c01079{bottom:321.982335px;}
.y98_c01079{bottom:321.982732px;}
.y9a_c01079{bottom:321.983047px;}
.y99_c01079{bottom:321.983115px;}
.y96_c01079{bottom:342.290820px;}
.y97_c01079{bottom:342.291007px;}
.y8b_c01079{bottom:364.225927px;}
.y8c_c01079{bottom:364.749052px;}
.y8d_c01079{bottom:365.005522px;}
.y8e_c01079{bottom:365.518335px;}
.y8f_c01079{bottom:365.759587px;}
.y90_c01079{bottom:366.387840px;}
.y91_c01079{bottom:367.097317px;}
.y92_c01079{bottom:367.317427px;}
.y93_c01079{bottom:368.135842px;}
.y94_c01079{bottom:368.743537px;}
.y95_c01079{bottom:369.508402px;}
.yd1_c01079{bottom:382.050000px;}
.y80_c01079{bottom:387.445905px;}
.y81_c01079{bottom:387.950692px;}
.y82_c01079{bottom:388.179105px;}
.y83_c01079{bottom:388.506885px;}
.y84_c01079{bottom:388.977585px;}
.y85_c01079{bottom:390.131362px;}
.y86_c01079{bottom:390.464377px;}
.y87_c01079{bottom:391.236210px;}
.y88_c01079{bottom:391.634842px;}
.y89_c01079{bottom:391.877992px;}
.y8a_c01079{bottom:392.833500px;}
.y77_c01079{bottom:409.589992px;}
.y78_c01079{bottom:410.096557px;}
.y79_c01079{bottom:411.457560px;}
.y7a_c01079{bottom:411.830430px;}
.y7b_c01079{bottom:412.732252px;}
.y7c_c01079{bottom:413.081722px;}
.y7d_c01079{bottom:414.401392px;}
.y7e_c01079{bottom:414.965017px;}
.y7f_c01079{bottom:415.706212px;}
.y6b_c01079{bottom:431.982000px;}
.y6c_c01079{bottom:432.573345px;}
.y6d_c01079{bottom:432.893497px;}
.y6e_c01079{bottom:433.711867px;}
.y6f_c01079{bottom:434.120197px;}
.y70_c01079{bottom:434.886592px;}
.y71_c01079{bottom:435.598605px;}
.y72_c01079{bottom:436.124565px;}
.y73_c01079{bottom:437.331870px;}
.y74_c01079{bottom:437.988847px;}
.y75_c01079{bottom:438.337170px;}
.y76_c01079{bottom:439.005397px;}
.yca_c01079{bottom:454.951845px;}
.ycb_c01079{bottom:456.346635px;}
.ycc_c01079{bottom:456.530512px;}
.ycd_c01079{bottom:457.475543px;}
.yce_c01079{bottom:458.181922px;}
.ycf_c01079{bottom:459.281753px;}
.yd0_c01079{bottom:463.223303px;}
.ybf_c01079{bottom:477.862500px;}
.yc0_c01079{bottom:478.206772px;}
.yc1_c01079{bottom:478.506495px;}
.yc2_c01079{bottom:478.773953px;}
.yc3_c01079{bottom:479.077657px;}
.yc4_c01079{bottom:479.336947px;}
.yc5_c01079{bottom:480.138825px;}
.yc6_c01079{bottom:480.458865px;}
.yc7_c01079{bottom:480.985365px;}
.yc8_c01079{bottom:481.313617px;}
.yc9_c01079{bottom:483.940087px;}
.yb9_c01079{bottom:502.237500px;}
.yba_c01079{bottom:502.759098px;}
.ybb_c01079{bottom:503.878188px;}
.ybc_c01079{bottom:504.471585px;}
.ybd_c01079{bottom:504.846456px;}
.ybe_c01079{bottom:506.965587px;}
.yb1_c01079{bottom:524.320500px;}
.yb2_c01079{bottom:524.623404px;}
.yb3_c01079{bottom:524.917572px;}
.yb4_c01079{bottom:525.193596px;}
.yb5_c01079{bottom:525.492447px;}
.yb6_c01079{bottom:525.825213px;}
.yb7_c01079{bottom:526.927209px;}
.yb8_c01079{bottom:529.740495px;}
.y66_c01079{bottom:545.656500px;}
.y67_c01079{bottom:546.174000px;}
.y68_c01079{bottom:546.567000px;}
.y69_c01079{bottom:548.836500px;}
.y6a_c01079{bottom:549.885000px;}
.y65_c01079{bottom:572.706000px;}
.y5f_c01079{bottom:592.656000px;}
.y60_c01079{bottom:594.458903px;}
.y61_c01079{bottom:595.230211px;}
.y62_c01079{bottom:596.647995px;}
.y63_c01079{bottom:598.025742px;}
.y64_c01079{bottom:600.312390px;}
.y5a_c01079{bottom:618.331425px;}
.y5b_c01079{bottom:618.331508px;}
.y5c_c01079{bottom:618.332004px;}
.y5e_c01079{bottom:618.332433px;}
.y5d_c01079{bottom:618.332499px;}
.y55_c01079{bottom:635.023500px;}
.y56_c01079{bottom:635.562433px;}
.y57_c01079{bottom:636.916997px;}
.y58_c01079{bottom:643.160801px;}
.y59_c01079{bottom:644.861486px;}
.y4c_c01079{bottom:657.185619px;}
.y4d_c01079{bottom:657.926771px;}
.y4e_c01079{bottom:658.230572px;}
.y4f_c01079{bottom:659.521989px;}
.y50_c01079{bottom:660.109245px;}
.y51_c01079{bottom:660.938634px;}
.y52_c01079{bottom:661.328346px;}
.y53_c01079{bottom:662.463503px;}
.y54_c01079{bottom:664.686177px;}
.y40_c01079{bottom:680.659272px;}
.y41_c01079{bottom:681.113087px;}
.y43_c01079{bottom:681.575736px;}
.y42_c01079{bottom:681.589976px;}
.y44_c01079{bottom:681.990765px;}
.y45_c01079{bottom:682.780602px;}
.y46_c01079{bottom:684.325185px;}
.y47_c01079{bottom:684.829755px;}
.y48_c01079{bottom:685.393877px;}
.y49_c01079{bottom:687.258704px;}
.y4a_c01079{bottom:689.231871px;}
.y4b_c01079{bottom:690.512637px;}
.y35_c01079{bottom:704.692073px;}
.y36_c01079{bottom:705.323034px;}
.y37_c01079{bottom:705.716705px;}
.y38_c01079{bottom:706.600746px;}
.y39_c01079{bottom:706.871895px;}
.y3a_c01079{bottom:707.591321px;}
.y3b_c01079{bottom:708.504404px;}
.y3c_c01079{bottom:708.956043px;}
.y3d_c01079{bottom:710.023197px;}
.y3e_c01079{bottom:711.028991px;}
.y3f_c01079{bottom:713.577774px;}
.y29_c01079{bottom:727.104198px;}
.y2a_c01079{bottom:727.461312px;}
.y2b_c01079{bottom:728.163845px;}
.y2c_c01079{bottom:728.803568px;}
.y2d_c01079{bottom:729.528921px;}
.y2e_c01079{bottom:730.151705px;}
.y2f_c01079{bottom:730.721636px;}
.y30_c01079{bottom:731.080061px;}
.y31_c01079{bottom:731.653725px;}
.y32_c01079{bottom:732.808236px;}
.y33_c01079{bottom:734.037509px;}
.y34_c01079{bottom:735.054288px;}
.y1d_c01079{bottom:750.329765px;}
.y1e_c01079{bottom:751.048421px;}
.y1f_c01079{bottom:751.808202px;}
.y20_c01079{bottom:752.834402px;}
.y21_c01079{bottom:753.105750px;}
.y22_c01079{bottom:753.458865px;}
.y23_c01079{bottom:753.983493px;}
.y24_c01079{bottom:755.096789px;}
.y25_c01079{bottom:755.727750px;}
.y26_c01079{bottom:757.747887px;}
.y27_c01079{bottom:759.183318px;}
.y28_c01079{bottom:759.630084px;}
.y12_c01079{bottom:772.474500px;}
.y13_c01079{bottom:773.463536px;}
.y14_c01079{bottom:773.886447px;}
.y15_c01079{bottom:774.727824px;}
.y16_c01079{bottom:776.138603px;}
.y17_c01079{bottom:776.759618px;}
.y18_c01079{bottom:777.375218px;}
.y19_c01079{bottom:778.236915px;}
.y1a_c01079{bottom:778.734639px;}
.y1b_c01079{bottom:779.334536px;}
.y1c_c01079{bottom:781.278777px;}
.yb_c01079{bottom:794.883222px;}
.yc_c01079{bottom:797.599491px;}
.yd_c01079{bottom:798.739140px;}
.ye_c01079{bottom:799.748271px;}
.yf_c01079{bottom:800.542137px;}
.y10_c01079{bottom:801.287682px;}
.y11_c01079{bottom:802.276170px;}
.y2_c01079{bottom:818.374500px;}
.y3_c01079{bottom:819.205857px;}
.y4_c01079{bottom:819.570573px;}
.y5_c01079{bottom:820.386918px;}
.y6_c01079{bottom:820.813869px;}
.y7_c01079{bottom:821.204316px;}
.y8_c01079{bottom:822.058758px;}
.y9_c01079{bottom:822.711294px;}
.ya_c01079{bottom:823.683051px;}
.y1_c01079{bottom:867.112500px;}
.h1d_c01079{height:22.050000px;}
.h9_c01079{height:51.459286px;}
.h13_c01079{height:56.706378px;}
.h10_c01079{height:61.956969px;}
.h1a_c01079{height:63.006174px;}
.h1c_c01079{height:63.007087px;}
.he_c01079{height:64.050000px;}
.h6_c01079{height:64.061560px;}
.ha_c01079{height:65.114353px;}
.hd_c01079{height:67.200000px;}
.h17_c01079{height:69.300000px;}
.h18_c01079{height:69.304989px;}
.h11_c01079{height:69.307796px;}
.h16_c01079{height:70.350000px;}
.hf_c01079{height:70.357914px;}
.h15_c01079{height:70.359004px;}
.h4_c01079{height:70.361396px;}
.h5_c01079{height:70.362697px;}
.h8_c01079{height:71.412887px;}
.hc_c01079{height:71.415742px;}
.h12_c01079{height:72.458150px;}
.h3_c01079{height:72.461736px;}
.h7_c01079{height:72.463076px;}
.h1b_c01079{height:73.508268px;}
.h19_c01079{height:74.557306px;}
.h14_c01079{height:78.758859px;}
.hb_c01079{height:106.073381px;}
.h2_c01079{height:124.950000px;}
.h0_c01079{height:1008.450000px;}
.h1_c01079{height:1008.750000px;}
.w0_c01079{width:711.720000px;}
.w1_c01079{width:711.750000px;}
.x0_c01079{left:0.000000px;}
.x90_c01079{left:138.200663px;}
.x3_c01079{left:142.518000px;}
.x1b_c01079{left:144.146720px;}
.x10_c01079{left:146.581500px;}
.x81_c01079{left:150.549000px;}
.x6e_c01079{left:162.812213px;}
.x26_c01079{left:164.590941px;}
.x42_c01079{left:169.059000px;}
.x31_c01079{left:176.553734px;}
.x1c_c01079{left:181.970720px;}
.x53_c01079{left:183.798000px;}
.x38_c01079{left:186.636638px;}
.x75_c01079{left:187.650000px;}
.x4_c01079{left:188.704500px;}
.x82_c01079{left:191.599500px;}
.x32_c01079{left:197.273234px;}
.x11_c01079{left:198.636000px;}
.x74_c01079{left:201.960000px;}
.x67_c01079{left:204.300248px;}
.x27_c01079{left:205.910009px;}
.x5_c01079{left:208.966500px;}
.x1_c01079{left:217.080000px;}
.x12_c01079{left:220.894500px;}
.x1d_c01079{left:221.959220px;}
.x68_c01079{left:223.998833px;}
.x61_c01079{left:225.357113px;}
.x83_c01079{left:229.129500px;}
.x91_c01079{left:231.142395px;}
.x43_c01079{left:233.562000px;}
.x71_c01079{left:238.144500px;}
.x28_c01079{left:243.528434px;}
.x47_c01079{left:246.282000px;}
.x4c_c01079{left:248.400000px;}
.x8d_c01079{left:249.682500px;}
.x88_c01079{left:251.332500px;}
.x62_c01079{left:252.610328px;}
.x6_c01079{left:254.319000px;}
.x33_c01079{left:258.072734px;}
.x54_c01079{left:259.699500px;}
.x69_c01079{left:263.487525px;}
.x13_c01079{left:265.177500px;}
.x8e_c01079{left:267.513000px;}
.x4d_c01079{left:271.890000px;}
.x1e_c01079{left:275.969720px;}
.x7_c01079{left:278.038500px;}
.x6a_c01079{left:282.071588px;}
.x7b_c01079{left:283.500000px;}
.x29_c01079{left:286.206558px;}
.x5a_c01079{left:288.319178px;}
.x1f_c01079{left:290.251220px;}
.x63_c01079{left:291.792083px;}
.x4e_c01079{left:294.030000px;}
.x34_c01079{left:295.937234px;}
.x84_c01079{left:298.515000px;}
.x8_c01079{left:299.730000px;}
.x76_c01079{left:305.910000px;}
.x20_c01079{left:308.836220px;}
.x3c_c01079{left:311.436113px;}
.x5b_c01079{left:313.177178px;}
.x39_c01079{left:316.932207px;}
.x6f_c01079{left:318.079193px;}
.x45_c01079{left:319.180864px;}
.x72_c01079{left:320.721000px;}
.x85_c01079{left:321.747000px;}
.x2a_c01079{left:322.854455px;}
.x3d_c01079{left:325.214315px;}
.x7c_c01079{left:326.430000px;}
.x92_c01079{left:328.333493px;}
.x4f_c01079{left:329.940000px;}
.x48_c01079{left:332.134500px;}
.xb_c01079{left:335.413800px;}
.x21_c01079{left:336.448220px;}
.x55_c01079{left:338.014500px;}
.x14_c01079{left:339.429000px;}
.x3a_c01079{left:340.961295px;}
.x35_c01079{left:343.994234px;}
.x2_c01079{left:347.490000px;}
.x7d_c01079{left:349.650000px;}
.x70_c01079{left:352.912523px;}
.x73_c01079{left:354.214500px;}
.x2b_c01079{left:356.404737px;}
.x8f_c01079{left:358.504500px;}
.x77_c01079{left:360.990000px;}
.x7e_c01079{left:364.770000px;}
.x36_c01079{left:367.764734px;}
.x49_c01079{left:368.863500px;}
.x86_c01079{left:370.093500px;}
.x15_c01079{left:372.114000px;}
.x5c_c01079{left:373.298678px;}
.x7f_c01079{left:376.110000px;}
.x2c_c01079{left:377.480535px;}
.x78_c01079{left:379.620000px;}
.x46_c01079{left:382.375210px;}
.x9_c01079{left:383.451000px;}
.xc_c01079{left:385.891491px;}
.x64_c01079{left:387.914903px;}
.x79_c01079{left:389.340000px;}
.x8a_c01079{left:392.236500px;}
.x22_c01079{left:395.042720px;}
.x5d_c01079{left:396.596678px;}
.x6b_c01079{left:401.931188px;}
.x80_c01079{left:403.110000px;}
.x16_c01079{left:404.514000px;}
.x2d_c01079{left:411.227318px;}
.x7a_c01079{left:412.290000px;}
.x65_c01079{left:415.717163px;}
.x56_c01079{left:420.546000px;}
.x37_c01079{left:423.930734px;}
.xd_c01079{left:425.577060px;}
.x23_c01079{left:428.251220px;}
.x8b_c01079{left:434.622000px;}
.x4a_c01079{left:436.377000px;}
.xa_c01079{left:437.437500px;}
.x50_c01079{left:444.690000px;}
.x3e_c01079{left:448.394832px;}
.x17_c01079{left:449.866500px;}
.x3b_c01079{left:456.638406px;}
.x8c_c01079{left:461.398500px;}
.xe_c01079{left:462.828210px;}
.x6c_c01079{left:464.894078px;}
.x3f_c01079{left:466.141835px;}
.x87_c01079{left:468.952500px;}
.x18_c01079{left:476.062500px;}
.x2e_c01079{left:479.098883px;}
.x5e_c01079{left:484.574678px;}
.x52_c01079{left:495.309000px;}
.x4b_c01079{left:501.984000px;}
.x19_c01079{left:507.636000px;}
.xf_c01079{left:512.242428px;}
.x40_c01079{left:517.752399px;}
.x5f_c01079{left:522.149678px;}
.x44_c01079{left:530.886000px;}
.x66_c01079{left:533.463450px;}
.x24_c01079{left:534.574220px;}
.x57_c01079{left:544.831500px;}
.x2f_c01079{left:551.379119px;}
.x58_c01079{left:568.053000px;}
.x6d_c01079{left:570.401228px;}
.x60_c01079{left:571.562678px;}
.x1a_c01079{left:609.964500px;}
.x30_c01079{left:611.211899px;}
.x59_c01079{left:612.601500px;}
.x51_c01079{left:614.250000px;}
.x89_c01079{left:616.839000px;}
.x41_c01079{left:618.782142px;}
.x93_c01079{left:624.916605px;}
.x25_c01079{left:633.637220px;}
.x95_c01079{left:704.970000px;}
.x98_c01079{left:706.050000px;}
.x97_c01079{left:707.400000px;}
.x96_c01079{left:710.100000px;}
.x94_c01079{left:711.180000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.ws0_c01079{word-spacing:0.000000pt;}
.fs1b_c01079{font-size:19.600000pt;}
.fs7_c01079{font-size:45.741587pt;}
.fs11_c01079{font-size:50.405670pt;}
.fse_c01079{font-size:55.072861pt;}
.fs18_c01079{font-size:56.005488pt;}
.fs1a_c01079{font-size:56.006300pt;}
.fsc_c01079{font-size:56.933333pt;}
.fs4_c01079{font-size:56.943609pt;}
.fs8_c01079{font-size:57.879425pt;}
.fsb_c01079{font-size:59.733333pt;}
.fs15_c01079{font-size:61.600000pt;}
.fs16_c01079{font-size:61.604435pt;}
.fsf_c01079{font-size:61.606930pt;}
.fs14_c01079{font-size:62.533333pt;}
.fsd_c01079{font-size:62.540368pt;}
.fs13_c01079{font-size:62.541337pt;}
.fs2_c01079{font-size:62.543463pt;}
.fs3_c01079{font-size:62.544620pt;}
.fs6_c01079{font-size:63.478121pt;}
.fsa_c01079{font-size:63.480660pt;}
.fs10_c01079{font-size:64.407245pt;}
.fs1_c01079{font-size:64.410432pt;}
.fs5_c01079{font-size:64.411623pt;}
.fs19_c01079{font-size:65.340683pt;}
.fs17_c01079{font-size:66.273160pt;}
.fs12_c01079{font-size:70.007875pt;}
.fs9_c01079{font-size:94.287450pt;}
.fs0_c01079{font-size:111.066667pt;}
.y0_c01079{bottom:0.000000pt;}
.ya8_c01079{bottom:140.401333pt;}
.ya9_c01079{bottom:140.839205pt;}
.yaa_c01079{bottom:141.014869pt;}
.yab_c01079{bottom:141.239525pt;}
.yac_c01079{bottom:141.979637pt;}
.yad_c01079{bottom:142.227445pt;}
.yae_c01079{bottom:142.743141pt;}
.yaf_c01079{bottom:143.467573pt;}
.yb0_c01079{bottom:143.797637pt;}
.ya7_c01079{bottom:163.316000pt;}
.ya6_c01079{bottom:203.672000pt;}
.ya5_c01079{bottom:224.552000pt;}
.ya4_c01079{bottom:243.488000pt;}
.y9c_c01079{bottom:263.281333pt;}
.y9d_c01079{bottom:263.733344pt;}
.y9e_c01079{bottom:264.439285pt;}
.y9f_c01079{bottom:264.907765pt;}
.ya0_c01079{bottom:265.103712pt;}
.ya1_c01079{bottom:265.384117pt;}
.ya2_c01079{bottom:265.790987pt;}
.ya3_c01079{bottom:267.475851pt;}
.y9b_c01079{bottom:286.206520pt;}
.y98_c01079{bottom:286.206873pt;}
.y9a_c01079{bottom:286.207153pt;}
.y99_c01079{bottom:286.207213pt;}
.y96_c01079{bottom:304.258507pt;}
.y97_c01079{bottom:304.258673pt;}
.y8b_c01079{bottom:323.756380pt;}
.y8c_c01079{bottom:324.221380pt;}
.y8d_c01079{bottom:324.449353pt;}
.y8e_c01079{bottom:324.905187pt;}
.y8f_c01079{bottom:325.119633pt;}
.y90_c01079{bottom:325.678080pt;}
.y91_c01079{bottom:326.308727pt;}
.y92_c01079{bottom:326.504380pt;}
.y93_c01079{bottom:327.231860pt;}
.y94_c01079{bottom:327.772033pt;}
.y95_c01079{bottom:328.451913pt;}
.yd1_c01079{bottom:339.600000pt;}
.y80_c01079{bottom:344.396360pt;}
.y81_c01079{bottom:344.845060pt;}
.y82_c01079{bottom:345.048093pt;}
.y83_c01079{bottom:345.339453pt;}
.y84_c01079{bottom:345.757853pt;}
.y85_c01079{bottom:346.783433pt;}
.y86_c01079{bottom:347.079447pt;}
.y87_c01079{bottom:347.765520pt;}
.y88_c01079{bottom:348.119860pt;}
.y89_c01079{bottom:348.335993pt;}
.y8a_c01079{bottom:349.185333pt;}
.y77_c01079{bottom:364.079993pt;}
.y78_c01079{bottom:364.530273pt;}
.y79_c01079{bottom:365.740053pt;}
.y7a_c01079{bottom:366.071493pt;}
.y7b_c01079{bottom:366.873113pt;}
.y7c_c01079{bottom:367.183753pt;}
.y7d_c01079{bottom:368.356793pt;}
.y7e_c01079{bottom:368.857793pt;}
.y7f_c01079{bottom:369.516633pt;}
.y6b_c01079{bottom:383.984000pt;}
.y6c_c01079{bottom:384.509640pt;}
.y6d_c01079{bottom:384.794220pt;}
.y6e_c01079{bottom:385.521660pt;}
.y6f_c01079{bottom:385.884620pt;}
.y70_c01079{bottom:386.565860pt;}
.y71_c01079{bottom:387.198760pt;}
.y72_c01079{bottom:387.666280pt;}
.y73_c01079{bottom:388.739440pt;}
.y74_c01079{bottom:389.323420pt;}
.y75_c01079{bottom:389.633040pt;}
.y76_c01079{bottom:390.227020pt;}
.yca_c01079{bottom:404.401640pt;}
.ycb_c01079{bottom:405.641453pt;}
.ycc_c01079{bottom:405.804900pt;}
.ycd_c01079{bottom:406.644927pt;}
.yce_c01079{bottom:407.272820pt;}
.ycf_c01079{bottom:408.250447pt;}
.yd0_c01079{bottom:411.754047pt;}
.ybf_c01079{bottom:424.766667pt;}
.yc0_c01079{bottom:425.072687pt;}
.yc1_c01079{bottom:425.339107pt;}
.yc2_c01079{bottom:425.576847pt;}
.yc3_c01079{bottom:425.846807pt;}
.yc4_c01079{bottom:426.077287pt;}
.yc5_c01079{bottom:426.790067pt;}
.yc6_c01079{bottom:427.074547pt;}
.yc7_c01079{bottom:427.542547pt;}
.yc8_c01079{bottom:427.834327pt;}
.yc9_c01079{bottom:430.168967pt;}
.yb9_c01079{bottom:446.433333pt;}
.yba_c01079{bottom:446.896976pt;}
.ybb_c01079{bottom:447.891723pt;}
.ybc_c01079{bottom:448.419187pt;}
.ybd_c01079{bottom:448.752405pt;}
.ybe_c01079{bottom:450.636077pt;}
.yb1_c01079{bottom:466.062667pt;}
.yb2_c01079{bottom:466.331915pt;}
.yb3_c01079{bottom:466.593397pt;}
.yb4_c01079{bottom:466.838752pt;}
.yb5_c01079{bottom:467.104397pt;}
.yb6_c01079{bottom:467.400189pt;}
.yb7_c01079{bottom:468.379741pt;}
.yb8_c01079{bottom:470.880440pt;}
.y66_c01079{bottom:485.028000pt;}
.y67_c01079{bottom:485.488000pt;}
.y68_c01079{bottom:485.837333pt;}
.y69_c01079{bottom:487.854667pt;}
.y6a_c01079{bottom:488.786667pt;}
.y65_c01079{bottom:509.072000pt;}
.y5f_c01079{bottom:526.805333pt;}
.y60_c01079{bottom:528.407913pt;}
.y61_c01079{bottom:529.093521pt;}
.y62_c01079{bottom:530.353773pt;}
.y63_c01079{bottom:531.578437pt;}
.y64_c01079{bottom:533.611013pt;}
.y5a_c01079{bottom:549.627933pt;}
.y5b_c01079{bottom:549.628007pt;}
.y5c_c01079{bottom:549.628448pt;}
.y5e_c01079{bottom:549.628829pt;}
.y5d_c01079{bottom:549.628888pt;}
.y55_c01079{bottom:564.465333pt;}
.y56_c01079{bottom:564.944385pt;}
.y57_c01079{bottom:566.148441pt;}
.y58_c01079{bottom:571.698489pt;}
.y59_c01079{bottom:573.210209pt;}
.y4c_c01079{bottom:584.164995pt;}
.y4d_c01079{bottom:584.823796pt;}
.y4e_c01079{bottom:585.093841pt;}
.y4f_c01079{bottom:586.241768pt;}
.y50_c01079{bottom:586.763773pt;}
.y51_c01079{bottom:587.501008pt;}
.y52_c01079{bottom:587.847419pt;}
.y53_c01079{bottom:588.856447pt;}
.y54_c01079{bottom:590.832157pt;}
.y40_c01079{bottom:605.030464pt;}
.y41_c01079{bottom:605.433855pt;}
.y43_c01079{bottom:605.845099pt;}
.y42_c01079{bottom:605.857756pt;}
.y44_c01079{bottom:606.214013pt;}
.y45_c01079{bottom:606.916091pt;}
.y46_c01079{bottom:608.289053pt;}
.y47_c01079{bottom:608.737560pt;}
.y48_c01079{bottom:609.239001pt;}
.y49_c01079{bottom:610.896625pt;}
.y4a_c01079{bottom:612.650552pt;}
.y4b_c01079{bottom:613.789011pt;}
.y35_c01079{bottom:626.392953pt;}
.y36_c01079{bottom:626.953808pt;}
.y37_c01079{bottom:627.303737pt;}
.y38_c01079{bottom:628.089552pt;}
.y39_c01079{bottom:628.330573pt;}
.y3a_c01079{bottom:628.970063pt;}
.y3b_c01079{bottom:629.781692pt;}
.y3c_c01079{bottom:630.183149pt;}
.y3d_c01079{bottom:631.131731pt;}
.y3e_c01079{bottom:632.025769pt;}
.y3f_c01079{bottom:634.291355pt;}
.y29_c01079{bottom:646.314843pt;}
.y2a_c01079{bottom:646.632277pt;}
.y2b_c01079{bottom:647.256751pt;}
.y2c_c01079{bottom:647.825393pt;}
.y2d_c01079{bottom:648.470152pt;}
.y2e_c01079{bottom:649.023737pt;}
.y2f_c01079{bottom:649.530343pt;}
.y30_c01079{bottom:649.848943pt;}
.y31_c01079{bottom:650.358867pt;}
.y32_c01079{bottom:651.385099pt;}
.y33_c01079{bottom:652.477785pt;}
.y34_c01079{bottom:653.381589pt;}
.y1d_c01079{bottom:666.959791pt;}
.y1e_c01079{bottom:667.598596pt;}
.y1f_c01079{bottom:668.273957pt;}
.y20_c01079{bottom:669.186135pt;}
.y21_c01079{bottom:669.427333pt;}
.y22_c01079{bottom:669.741213pt;}
.y23_c01079{bottom:670.207549pt;}
.y24_c01079{bottom:671.197145pt;}
.y25_c01079{bottom:671.758000pt;}
.y26_c01079{bottom:673.553677pt;}
.y27_c01079{bottom:674.829616pt;}
.y28_c01079{bottom:675.226741pt;}
.y12_c01079{bottom:686.644000pt;}
.y13_c01079{bottom:687.523143pt;}
.y14_c01079{bottom:687.899064pt;}
.y15_c01079{bottom:688.646955pt;}
.y16_c01079{bottom:689.900980pt;}
.y17_c01079{bottom:690.452993pt;}
.y18_c01079{bottom:691.000193pt;}
.y19_c01079{bottom:691.766147pt;}
.y1a_c01079{bottom:692.208568pt;}
.y1b_c01079{bottom:692.741809pt;}
.y1c_c01079{bottom:694.470024pt;}
.yb_c01079{bottom:706.562864pt;}
.yc_c01079{bottom:708.977325pt;}
.yd_c01079{bottom:709.990347pt;}
.ye_c01079{bottom:710.887352pt;}
.yf_c01079{bottom:711.593011pt;}
.y10_c01079{bottom:712.255717pt;}
.y11_c01079{bottom:713.134373pt;}
.y2_c01079{bottom:727.444000pt;}
.y3_c01079{bottom:728.182984pt;}
.y4_c01079{bottom:728.507176pt;}
.y5_c01079{bottom:729.232816pt;}
.y6_c01079{bottom:729.612328pt;}
.y7_c01079{bottom:729.959392pt;}
.y8_c01079{bottom:730.718896pt;}
.y9_c01079{bottom:731.298928pt;}
.ya_c01079{bottom:732.162712pt;}
.y1_c01079{bottom:770.766667pt;}
.h1d_c01079{height:19.600000pt;}
.h9_c01079{height:45.741587pt;}
.h13_c01079{height:50.405670pt;}
.h10_c01079{height:55.072861pt;}
.h1a_c01079{height:56.005488pt;}
.h1c_c01079{height:56.006300pt;}
.he_c01079{height:56.933333pt;}
.h6_c01079{height:56.943609pt;}
.ha_c01079{height:57.879425pt;}
.hd_c01079{height:59.733333pt;}
.h17_c01079{height:61.600000pt;}
.h18_c01079{height:61.604435pt;}
.h11_c01079{height:61.606930pt;}
.h16_c01079{height:62.533333pt;}
.hf_c01079{height:62.540368pt;}
.h15_c01079{height:62.541337pt;}
.h4_c01079{height:62.543463pt;}
.h5_c01079{height:62.544620pt;}
.h8_c01079{height:63.478121pt;}
.hc_c01079{height:63.480660pt;}
.h12_c01079{height:64.407245pt;}
.h3_c01079{height:64.410432pt;}
.h7_c01079{height:64.411623pt;}
.h1b_c01079{height:65.340683pt;}
.h19_c01079{height:66.273160pt;}
.h14_c01079{height:70.007875pt;}
.hb_c01079{height:94.287450pt;}
.h2_c01079{height:111.066667pt;}
.h0_c01079{height:896.400000pt;}
.h1_c01079{height:896.666667pt;}
.w0_c01079{width:632.640000pt;}
.w1_c01079{width:632.666667pt;}
.x0_c01079{left:0.000000pt;}
.x90_c01079{left:122.845033pt;}
.x3_c01079{left:126.682667pt;}
.x1b_c01079{left:128.130417pt;}
.x10_c01079{left:130.294667pt;}
.x81_c01079{left:133.821333pt;}
.x6e_c01079{left:144.721967pt;}
.x26_c01079{left:146.303059pt;}
.x42_c01079{left:150.274667pt;}
.x31_c01079{left:156.936652pt;}
.x1c_c01079{left:161.751751pt;}
.x53_c01079{left:163.376000pt;}
.x38_c01079{left:165.899233pt;}
.x75_c01079{left:166.800000pt;}
.x4_c01079{left:167.737333pt;}
.x82_c01079{left:170.310667pt;}
.x32_c01079{left:175.353985pt;}
.x11_c01079{left:176.565333pt;}
.x74_c01079{left:179.520000pt;}
.x67_c01079{left:181.600220pt;}
.x27_c01079{left:183.031119pt;}
.x5_c01079{left:185.748000pt;}
.x1_c01079{left:192.960000pt;}
.x12_c01079{left:196.350667pt;}
.x1d_c01079{left:197.297084pt;}
.x68_c01079{left:199.110073pt;}
.x61_c01079{left:200.317433pt;}
.x83_c01079{left:203.670667pt;}
.x91_c01079{left:205.459907pt;}
.x43_c01079{left:207.610667pt;}
.x71_c01079{left:211.684000pt;}
.x28_c01079{left:216.469719pt;}
.x47_c01079{left:218.917333pt;}
.x4c_c01079{left:220.800000pt;}
.x8d_c01079{left:221.940000pt;}
.x88_c01079{left:223.406667pt;}
.x62_c01079{left:224.542513pt;}
.x6_c01079{left:226.061333pt;}
.x33_c01079{left:229.397985pt;}
.x54_c01079{left:230.844000pt;}
.x69_c01079{left:234.211133pt;}
.x13_c01079{left:235.713333pt;}
.x8e_c01079{left:237.789333pt;}
.x4d_c01079{left:241.680000pt;}
.x1e_c01079{left:245.306417pt;}
.x7_c01079{left:247.145333pt;}
.x6a_c01079{left:250.730300pt;}
.x7b_c01079{left:252.000000pt;}
.x29_c01079{left:254.405829pt;}
.x5a_c01079{left:256.283713pt;}
.x1f_c01079{left:258.001084pt;}
.x63_c01079{left:259.370740pt;}
.x4e_c01079{left:261.360000pt;}
.x34_c01079{left:263.055319pt;}
.x84_c01079{left:265.346667pt;}
.x8_c01079{left:266.426667pt;}
.x76_c01079{left:271.920000pt;}
.x20_c01079{left:274.521084pt;}
.x3c_c01079{left:276.832100pt;}
.x5b_c01079{left:278.379713pt;}
.x39_c01079{left:281.717517pt;}
.x6f_c01079{left:282.737060pt;}
.x45_c01079{left:283.716324pt;}
.x72_c01079{left:285.085333pt;}
.x85_c01079{left:285.997333pt;}
.x2a_c01079{left:286.981737pt;}
.x3d_c01079{left:289.079391pt;}
.x7c_c01079{left:290.160000pt;}
.x92_c01079{left:291.851993pt;}
.x4f_c01079{left:293.280000pt;}
.x48_c01079{left:295.230667pt;}
.xb_c01079{left:298.145600pt;}
.x21_c01079{left:299.065084pt;}
.x55_c01079{left:300.457333pt;}
.x14_c01079{left:301.714667pt;}
.x3a_c01079{left:303.076707pt;}
.x35_c01079{left:305.772652pt;}
.x2_c01079{left:308.880000pt;}
.x7d_c01079{left:310.800000pt;}
.x70_c01079{left:313.700020pt;}
.x73_c01079{left:314.857333pt;}
.x2b_c01079{left:316.804211pt;}
.x8f_c01079{left:318.670667pt;}
.x77_c01079{left:320.880000pt;}
.x7e_c01079{left:324.240000pt;}
.x36_c01079{left:326.901985pt;}
.x49_c01079{left:327.878667pt;}
.x86_c01079{left:328.972000pt;}
.x15_c01079{left:330.768000pt;}
.x5c_c01079{left:331.821047pt;}
.x7f_c01079{left:334.320000pt;}
.x2c_c01079{left:335.538253pt;}
.x78_c01079{left:337.440000pt;}
.x46_c01079{left:339.889076pt;}
.x9_c01079{left:340.845333pt;}
.xc_c01079{left:343.014659pt;}
.x64_c01079{left:344.813247pt;}
.x79_c01079{left:346.080000pt;}
.x8a_c01079{left:348.654667pt;}
.x22_c01079{left:351.149084pt;}
.x5d_c01079{left:352.530380pt;}
.x6b_c01079{left:357.272167pt;}
.x80_c01079{left:358.320000pt;}
.x16_c01079{left:359.568000pt;}
.x2d_c01079{left:365.535393pt;}
.x7a_c01079{left:366.480000pt;}
.x65_c01079{left:369.526367pt;}
.x56_c01079{left:373.818667pt;}
.x37_c01079{left:376.827319pt;}
.xd_c01079{left:378.290720pt;}
.x23_c01079{left:380.667751pt;}
.x8b_c01079{left:386.330667pt;}
.x4a_c01079{left:387.890667pt;}
.xa_c01079{left:388.833333pt;}
.x50_c01079{left:395.280000pt;}
.x3e_c01079{left:398.573184pt;}
.x17_c01079{left:399.881333pt;}
.x3b_c01079{left:405.900805pt;}
.x8c_c01079{left:410.132000pt;}
.xe_c01079{left:411.402853pt;}
.x6c_c01079{left:413.239180pt;}
.x3f_c01079{left:414.348297pt;}
.x87_c01079{left:416.846667pt;}
.x18_c01079{left:423.166667pt;}
.x2e_c01079{left:425.865673pt;}
.x5e_c01079{left:430.733047pt;}
.x52_c01079{left:440.274667pt;}
.x4b_c01079{left:446.208000pt;}
.x19_c01079{left:451.232000pt;}
.xf_c01079{left:455.326603pt;}
.x40_c01079{left:460.224355pt;}
.x5f_c01079{left:464.133047pt;}
.x44_c01079{left:471.898667pt;}
.x66_c01079{left:474.189733pt;}
.x24_c01079{left:475.177084pt;}
.x57_c01079{left:484.294667pt;}
.x2f_c01079{left:490.114772pt;}
.x58_c01079{left:504.936000pt;}
.x6d_c01079{left:507.023313pt;}
.x60_c01079{left:508.055713pt;}
.x1a_c01079{left:542.190667pt;}
.x30_c01079{left:543.299465pt;}
.x59_c01079{left:544.534667pt;}
.x51_c01079{left:546.000000pt;}
.x89_c01079{left:548.301333pt;}
.x41_c01079{left:550.028571pt;}
.x93_c01079{left:555.481427pt;}
.x25_c01079{left:563.233084pt;}
.x95_c01079{left:626.640000pt;}
.x98_c01079{left:627.600000pt;}
.x97_c01079{left:628.800000pt;}
.x96_c01079{left:631.200000pt;}
.x94_c01079{left:632.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_c01080 {
    display:none;
  }
  .loading-indicator_c01080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01080" -> "#page-container .classname_c01080")
 */
.pf_c01080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01080 {overflow:visible;}
  }
}
.c_c01080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01080:after { /* webkit #35443 */
  content: '';
}
.t_c01080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01080 { /* info for Javascript */
  display:none;
}
.l_c01080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.000000;font-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_c01080{transform:matrix(0.015712,-0.000299,0.004749,0.249955,0,0);-ms-transform:matrix(0.015712,-0.000299,0.004749,0.249955,0,0);-webkit-transform:matrix(0.015712,-0.000299,0.004749,0.249955,0,0);}
.m2c_c01080{transform:matrix(0.019359,-0.000174,0.002250,0.249990,0,0);-ms-transform:matrix(0.019359,-0.000174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.019359,-0.000174,0.002250,0.249990,0,0);}
.m76_c01080{transform:matrix(0.041362,-0.000496,0.003000,0.249982,0,0);-ms-transform:matrix(0.041362,-0.000496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.041362,-0.000496,0.003000,0.249982,0,0);}
.m28_c01080{transform:matrix(0.044838,-0.000404,0.002250,0.249990,0,0);-ms-transform:matrix(0.044838,-0.000404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.044838,-0.000404,0.002250,0.249990,0,0);}
.m52_c01080{transform:matrix(0.135885,-0.002582,0.004749,0.249955,0,0);-ms-transform:matrix(0.135885,-0.002582,0.004749,0.249955,0,0);-webkit-transform:matrix(0.135885,-0.002582,0.004749,0.249955,0,0);}
.mc_c01080{transform:matrix(0.136854,-0.001232,0.002250,0.249990,0,0);-ms-transform:matrix(0.136854,-0.001232,0.002250,0.249990,0,0);-webkit-transform:matrix(0.136854,-0.001232,0.002250,0.249990,0,0);}
.mf_c01080{transform:matrix(0.139019,-0.001251,0.002250,0.249990,0,0);-ms-transform:matrix(0.139019,-0.001251,0.002250,0.249990,0,0);-webkit-transform:matrix(0.139019,-0.001251,0.002250,0.249990,0,0);}
.m6b_c01080{transform:matrix(0.144454,-0.002167,0.003750,0.249972,0,0);-ms-transform:matrix(0.144454,-0.002167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.144454,-0.002167,0.003750,0.249972,0,0);}
.m3c_c01080{transform:matrix(0.145579,-0.001310,0.002250,0.249990,0,0);-ms-transform:matrix(0.145579,-0.001310,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145579,-0.001310,0.002250,0.249990,0,0);}
.m2b_c01080{transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);-ms-transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151854,-0.001367,0.002250,0.249990,0,0);}
.m2e_c01080{transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);-ms-transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153939,-0.001385,0.002250,0.249990,0,0);}
.m2d_c01080{transform:matrix(0.159474,-0.001435,0.002250,0.249990,0,0);-ms-transform:matrix(0.159474,-0.001435,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159474,-0.001435,0.002250,0.249990,0,0);}
.m62_c01080{transform:matrix(0.160284,-0.002244,0.003500,0.249976,0,0);-ms-transform:matrix(0.160284,-0.002244,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160284,-0.002244,0.003500,0.249976,0,0);}
.m16_c01080{transform:matrix(0.161323,-0.001452,0.002250,0.249990,0,0);-ms-transform:matrix(0.161323,-0.001452,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161323,-0.001452,0.002250,0.249990,0,0);}
.m5f_c01080{transform:matrix(0.165224,-0.002313,0.003500,0.249976,0,0);-ms-transform:matrix(0.165224,-0.002313,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165224,-0.002313,0.003500,0.249976,0,0);}
.m12_c01080{transform:matrix(0.165318,-0.001488,0.002250,0.249990,0,0);-ms-transform:matrix(0.165318,-0.001488,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165318,-0.001488,0.002250,0.249990,0,0);}
.m79_c01080{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);}
.m77_c01080{transform:matrix(0.166745,-0.001834,0.002750,0.249985,0,0);-ms-transform:matrix(0.166745,-0.001834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166745,-0.001834,0.002750,0.249985,0,0);}
.m9_c01080{transform:matrix(0.169348,-0.001524,0.002250,0.249990,0,0);-ms-transform:matrix(0.169348,-0.001524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169348,-0.001524,0.002250,0.249990,0,0);}
.m4f_c01080{transform:matrix(0.169929,-0.003229,0.004749,0.249955,0,0);-ms-transform:matrix(0.169929,-0.003229,0.004749,0.249955,0,0);-webkit-transform:matrix(0.169929,-0.003229,0.004749,0.249955,0,0);}
.m11_c01080{transform:matrix(0.170063,-0.001531,0.002250,0.249990,0,0);-ms-transform:matrix(0.170063,-0.001531,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170063,-0.001531,0.002250,0.249990,0,0);}
.me_c01080{transform:matrix(0.171958,-0.001548,0.002250,0.249990,0,0);-ms-transform:matrix(0.171958,-0.001548,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171958,-0.001548,0.002250,0.249990,0,0);}
.m7b_c01080{transform:matrix(0.172630,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172630,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172630,-0.001899,0.002750,0.249985,0,0);}
.m14_c01080{transform:matrix(0.172658,-0.001554,0.002250,0.249990,0,0);-ms-transform:matrix(0.172658,-0.001554,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172658,-0.001554,0.002250,0.249990,0,0);}
.md_c01080{transform:matrix(0.174093,-0.001567,0.002250,0.249990,0,0);-ms-transform:matrix(0.174093,-0.001567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174093,-0.001567,0.002250,0.249990,0,0);}
.m13_c01080{transform:matrix(0.174418,-0.001570,0.002250,0.249990,0,0);-ms-transform:matrix(0.174418,-0.001570,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174418,-0.001570,0.002250,0.249990,0,0);}
.m2f_c01080{transform:matrix(0.174543,-0.001571,0.002250,0.249990,0,0);-ms-transform:matrix(0.174543,-0.001571,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174543,-0.001571,0.002250,0.249990,0,0);}
.m49_c01080{transform:matrix(0.174763,-0.003321,0.004749,0.249955,0,0);-ms-transform:matrix(0.174763,-0.003321,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174763,-0.003321,0.004749,0.249955,0,0);}
.mb_c01080{transform:matrix(0.175508,-0.001580,0.002250,0.249990,0,0);-ms-transform:matrix(0.175508,-0.001580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175508,-0.001580,0.002250,0.249990,0,0);}
.m4_c01080{transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175768,-0.001582,0.002250,0.249990,0,0);}
.ma_c01080{transform:matrix(0.176908,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176908,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176908,-0.001592,0.002250,0.249990,0,0);}
.m19_c01080{transform:matrix(0.177458,-0.001597,0.002250,0.249990,0,0);-ms-transform:matrix(0.177458,-0.001597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177458,-0.001597,0.002250,0.249990,0,0);}
.m66_c01080{transform:matrix(0.177895,-0.002668,0.003750,0.249972,0,0);-ms-transform:matrix(0.177895,-0.002668,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177895,-0.002668,0.003750,0.249972,0,0);}
.m6c_c01080{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);}
.m7_c01080{transform:matrix(0.178723,-0.001609,0.002250,0.249990,0,0);-ms-transform:matrix(0.178723,-0.001609,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178723,-0.001609,0.002250,0.249990,0,0);}
.m40_c01080{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);}
.m7e_c01080{transform:matrix(0.181584,-0.001997,0.002750,0.249985,0,0);-ms-transform:matrix(0.181584,-0.001997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181584,-0.001997,0.002750,0.249985,0,0);}
.m54_c01080{transform:matrix(0.181787,-0.003454,0.004749,0.249955,0,0);-ms-transform:matrix(0.181787,-0.003454,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181787,-0.003454,0.004749,0.249955,0,0);}
.m73_c01080{transform:matrix(0.182077,-0.002185,0.003000,0.249982,0,0);-ms-transform:matrix(0.182077,-0.002185,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182077,-0.002185,0.003000,0.249982,0,0);}
.m6f_c01080{transform:matrix(0.183737,-0.002205,0.003000,0.249982,0,0);-ms-transform:matrix(0.183737,-0.002205,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183737,-0.002205,0.003000,0.249982,0,0);}
.m10_c01080{transform:matrix(0.185752,-0.001672,0.002250,0.249990,0,0);-ms-transform:matrix(0.185752,-0.001672,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185752,-0.001672,0.002250,0.249990,0,0);}
.m18_c01080{transform:matrix(0.187027,-0.001683,0.002250,0.249990,0,0);-ms-transform:matrix(0.187027,-0.001683,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187027,-0.001683,0.002250,0.249990,0,0);}
.m59_c01080{transform:matrix(0.187873,-0.003194,0.004249,0.249964,0,0);-ms-transform:matrix(0.187873,-0.003194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187873,-0.003194,0.004249,0.249964,0,0);}
.m2_c01080{transform:matrix(0.187912,-0.001691,0.002250,0.249990,0,0);-ms-transform:matrix(0.187912,-0.001691,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187912,-0.001691,0.002250,0.249990,0,0);}
.m80_c01080{transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-ms-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188369,-0.002072,0.002750,0.249985,0,0);}
.m1_c01080{transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);-ms-transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189602,-0.001706,0.002250,0.249990,0,0);}
.m6e_c01080{transform:matrix(0.190121,-0.002281,0.003000,0.249982,0,0);-ms-transform:matrix(0.190121,-0.002281,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190121,-0.002281,0.003000,0.249982,0,0);}
.m5d_c01080{transform:matrix(0.190231,-0.002663,0.003500,0.249976,0,0);-ms-transform:matrix(0.190231,-0.002663,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190231,-0.002663,0.003500,0.249976,0,0);}
.m56_c01080{transform:matrix(0.191657,-0.003258,0.004249,0.249964,0,0);-ms-transform:matrix(0.191657,-0.003258,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191657,-0.003258,0.004249,0.249964,0,0);}
.m25_c01080{transform:matrix(0.194057,-0.001747,0.002250,0.249990,0,0);-ms-transform:matrix(0.194057,-0.001747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194057,-0.001747,0.002250,0.249990,0,0);}
.m36_c01080{transform:matrix(0.194317,-0.001749,0.002250,0.249990,0,0);-ms-transform:matrix(0.194317,-0.001749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194317,-0.001749,0.002250,0.249990,0,0);}
.m69_c01080{transform:matrix(0.194503,-0.002918,0.003750,0.249972,0,0);-ms-transform:matrix(0.194503,-0.002918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194503,-0.002918,0.003750,0.249972,0,0);}
.m20_c01080{transform:matrix(0.194522,-0.001751,0.002250,0.249990,0,0);-ms-transform:matrix(0.194522,-0.001751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194522,-0.001751,0.002250,0.249990,0,0);}
.m7d_c01080{transform:matrix(0.195028,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.195028,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195028,-0.002145,0.002750,0.249985,0,0);}
.m5a_c01080{transform:matrix(0.196287,-0.003337,0.004249,0.249964,0,0);-ms-transform:matrix(0.196287,-0.003337,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196287,-0.003337,0.004249,0.249964,0,0);}
.m15_c01080{transform:matrix(0.198107,-0.001783,0.002250,0.249990,0,0);-ms-transform:matrix(0.198107,-0.001783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198107,-0.001783,0.002250,0.249990,0,0);}
.m27_c01080{transform:matrix(0.201757,-0.001816,0.002250,0.249990,0,0);-ms-transform:matrix(0.201757,-0.001816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201757,-0.001816,0.002250,0.249990,0,0);}
.m7f_c01080{transform:matrix(0.202053,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202053,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202053,-0.002223,0.002750,0.249985,0,0);}
.m6a_c01080{transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);-ms-transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202247,-0.003034,0.003750,0.249972,0,0);}
.m63_c01080{transform:matrix(0.203680,-0.002852,0.003500,0.249976,0,0);-ms-transform:matrix(0.203680,-0.002852,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203680,-0.002852,0.003500,0.249976,0,0);}
.m68_c01080{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);}
.m3b_c01080{transform:matrix(0.203992,-0.001836,0.002250,0.249990,0,0);-ms-transform:matrix(0.203992,-0.001836,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203992,-0.001836,0.002250,0.249990,0,0);}
.m67_c01080{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);}
.m7c_c01080{transform:matrix(0.206213,-0.002268,0.002750,0.249985,0,0);-ms-transform:matrix(0.206213,-0.002268,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206213,-0.002268,0.002750,0.249985,0,0);}
.m5_c01080{transform:matrix(0.206442,-0.001858,0.002250,0.249990,0,0);-ms-transform:matrix(0.206442,-0.001858,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206442,-0.001858,0.002250,0.249990,0,0);}
.m7a_c01080{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);}
.m70_c01080{transform:matrix(0.207100,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207100,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207100,-0.002485,0.003000,0.249982,0,0);}
.m48_c01080{transform:matrix(0.207483,-0.003942,0.004749,0.249955,0,0);-ms-transform:matrix(0.207483,-0.003942,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207483,-0.003942,0.004749,0.249955,0,0);}
.m23_c01080{transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-ms-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208797,-0.001879,0.002250,0.249990,0,0);}
.m5e_c01080{transform:matrix(0.209185,-0.002929,0.003500,0.249976,0,0);-ms-transform:matrix(0.209185,-0.002929,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209185,-0.002929,0.003500,0.249976,0,0);}
.m1d_c01080{transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-ms-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);}
.m74_c01080{transform:matrix(0.211305,-0.002536,0.003000,0.249982,0,0);-ms-transform:matrix(0.211305,-0.002536,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211305,-0.002536,0.003000,0.249982,0,0);}
.m81_c01080{transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);}
.m61_c01080{transform:matrix(0.211564,-0.002962,0.003500,0.249976,0,0);-ms-transform:matrix(0.211564,-0.002962,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211564,-0.002962,0.003500,0.249976,0,0);}
.m5c_c01080{transform:matrix(0.211694,-0.003599,0.004249,0.249964,0,0);-ms-transform:matrix(0.211694,-0.003599,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211694,-0.003599,0.004249,0.249964,0,0);}
.m64_c01080{transform:matrix(0.212079,-0.002969,0.003500,0.249976,0,0);-ms-transform:matrix(0.212079,-0.002969,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212079,-0.002969,0.003500,0.249976,0,0);}
.m3f_c01080{transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);-ms-transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217521,-0.001958,0.002250,0.249990,0,0);}
.m37_c01080{transform:matrix(0.217641,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217641,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217641,-0.001959,0.002250,0.249990,0,0);}
.m6_c01080{transform:matrix(0.217796,-0.001960,0.002250,0.249990,0,0);-ms-transform:matrix(0.217796,-0.001960,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217796,-0.001960,0.002250,0.249990,0,0);}
.m1e_c01080{transform:matrix(0.218021,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.218021,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218021,-0.001962,0.002250,0.249990,0,0);}
.m5b_c01080{transform:matrix(0.218173,-0.003709,0.004249,0.249964,0,0);-ms-transform:matrix(0.218173,-0.003709,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218173,-0.003709,0.004249,0.249964,0,0);}
.m8_c01080{transform:matrix(0.219201,-0.001973,0.002250,0.249990,0,0);-ms-transform:matrix(0.219201,-0.001973,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219201,-0.001973,0.002250,0.249990,0,0);}
.m33_c01080{transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);}
.m26_c01080{transform:matrix(0.222231,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222231,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222231,-0.002000,0.002250,0.249990,0,0);}
.m78_c01080{transform:matrix(0.223711,-0.002461,0.002750,0.249985,0,0);-ms-transform:matrix(0.223711,-0.002461,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223711,-0.002461,0.002750,0.249985,0,0);}
.m24_c01080{transform:matrix(0.226151,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226151,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226151,-0.002035,0.002250,0.249990,0,0);}
.m43_c01080{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);}
.m38_c01080{transform:matrix(0.228526,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228526,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228526,-0.002057,0.002250,0.249990,0,0);}
.m60_c01080{transform:matrix(0.228603,-0.003200,0.003500,0.249976,0,0);-ms-transform:matrix(0.228603,-0.003200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228603,-0.003200,0.003500,0.249976,0,0);}
.m1c_c01080{transform:matrix(0.235190,-0.002117,0.002250,0.249990,0,0);-ms-transform:matrix(0.235190,-0.002117,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235190,-0.002117,0.002250,0.249990,0,0);}
.m6d_c01080{transform:matrix(0.236243,-0.002835,0.003000,0.249982,0,0);-ms-transform:matrix(0.236243,-0.002835,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236243,-0.002835,0.003000,0.249982,0,0);}
.m55_c01080{transform:matrix(0.237206,-0.004032,0.004249,0.249964,0,0);-ms-transform:matrix(0.237206,-0.004032,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237206,-0.004032,0.004249,0.249964,0,0);}
.m32_c01080{transform:matrix(0.242655,-0.002184,0.002250,0.249990,0,0);-ms-transform:matrix(0.242655,-0.002184,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242655,-0.002184,0.002250,0.249990,0,0);}
.m51_c01080{transform:matrix(0.244171,-0.004639,0.004749,0.249955,0,0);-ms-transform:matrix(0.244171,-0.004639,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244171,-0.004639,0.004749,0.249955,0,0);}
.m46_c01080{transform:matrix(0.246930,-0.004692,0.004749,0.249955,0,0);-ms-transform:matrix(0.246930,-0.004692,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246930,-0.004692,0.004749,0.249955,0,0);}
.m72_c01080{transform:matrix(0.246947,-0.002963,0.003000,0.249982,0,0);-ms-transform:matrix(0.246947,-0.002963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246947,-0.002963,0.003000,0.249982,0,0);}
.m30_c01080{transform:matrix(0.255580,-0.002300,0.002250,0.249990,0,0);-ms-transform:matrix(0.255580,-0.002300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255580,-0.002300,0.002250,0.249990,0,0);}
.m47_c01080{transform:matrix(0.256834,-0.004880,0.004749,0.249955,0,0);-ms-transform:matrix(0.256834,-0.004880,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256834,-0.004880,0.004749,0.249955,0,0);}
.m71_c01080{transform:matrix(0.258906,-0.003107,0.003000,0.249982,0,0);-ms-transform:matrix(0.258906,-0.003107,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258906,-0.003107,0.003000,0.249982,0,0);}
.m3a_c01080{transform:matrix(0.262134,-0.002359,0.002250,0.249990,0,0);-ms-transform:matrix(0.262134,-0.002359,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262134,-0.002359,0.002250,0.249990,0,0);}
.m42_c01080{transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262955,0.000000,0.000000,0.250000,0,0);}
.m34_c01080{transform:matrix(0.263659,-0.002373,0.002250,0.249990,0,0);-ms-transform:matrix(0.263659,-0.002373,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263659,-0.002373,0.002250,0.249990,0,0);}
.m4a_c01080{transform:matrix(0.264327,-0.005022,0.004749,0.249955,0,0);-ms-transform:matrix(0.264327,-0.005022,0.004749,0.249955,0,0);-webkit-transform:matrix(0.264327,-0.005022,0.004749,0.249955,0,0);}
.m4d_c01080{transform:matrix(0.267832,-0.005089,0.004749,0.249955,0,0);-ms-transform:matrix(0.267832,-0.005089,0.004749,0.249955,0,0);-webkit-transform:matrix(0.267832,-0.005089,0.004749,0.249955,0,0);}
.m57_c01080{transform:matrix(0.268646,-0.004567,0.004249,0.249964,0,0);-ms-transform:matrix(0.268646,-0.004567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268646,-0.004567,0.004249,0.249964,0,0);}
.m75_c01080{transform:matrix(0.273350,-0.003280,0.003000,0.249982,0,0);-ms-transform:matrix(0.273350,-0.003280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273350,-0.003280,0.003000,0.249982,0,0);}
.m53_c01080{transform:matrix(0.287783,-0.005468,0.004749,0.249955,0,0);-ms-transform:matrix(0.287783,-0.005468,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287783,-0.005468,0.004749,0.249955,0,0);}
.m41_c01080{transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297355,0.000000,0.000000,0.250000,0,0);}
.m50_c01080{transform:matrix(0.309144,-0.005874,0.004749,0.249955,0,0);-ms-transform:matrix(0.309144,-0.005874,0.004749,0.249955,0,0);-webkit-transform:matrix(0.309144,-0.005874,0.004749,0.249955,0,0);}
.m1b_c01080{transform:matrix(0.309622,-0.002787,0.002250,0.249990,0,0);-ms-transform:matrix(0.309622,-0.002787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309622,-0.002787,0.002250,0.249990,0,0);}
.m58_c01080{transform:matrix(0.322553,-0.005483,0.004249,0.249964,0,0);-ms-transform:matrix(0.322553,-0.005483,0.004249,0.249964,0,0);-webkit-transform:matrix(0.322553,-0.005483,0.004249,0.249964,0,0);}
.m21_c01080{transform:matrix(0.323207,-0.002909,0.002250,0.249990,0,0);-ms-transform:matrix(0.323207,-0.002909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.323207,-0.002909,0.002250,0.249990,0,0);}
.m22_c01080{transform:matrix(0.324402,-0.002920,0.002250,0.249990,0,0);-ms-transform:matrix(0.324402,-0.002920,0.002250,0.249990,0,0);-webkit-transform:matrix(0.324402,-0.002920,0.002250,0.249990,0,0);}
.m3e_c01080{transform:matrix(0.335956,-0.003024,0.002250,0.249990,0,0);-ms-transform:matrix(0.335956,-0.003024,0.002250,0.249990,0,0);-webkit-transform:matrix(0.335956,-0.003024,0.002250,0.249990,0,0);}
.m3_c01080{transform:matrix(0.344071,-0.003097,0.002250,0.249990,0,0);-ms-transform:matrix(0.344071,-0.003097,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344071,-0.003097,0.002250,0.249990,0,0);}
.m35_c01080{transform:matrix(0.344571,-0.003101,0.002250,0.249990,0,0);-ms-transform:matrix(0.344571,-0.003101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344571,-0.003101,0.002250,0.249990,0,0);}
.m2a_c01080{transform:matrix(0.347761,-0.003130,0.002250,0.249990,0,0);-ms-transform:matrix(0.347761,-0.003130,0.002250,0.249990,0,0);-webkit-transform:matrix(0.347761,-0.003130,0.002250,0.249990,0,0);}
.m3d_c01080{transform:matrix(0.360690,-0.003246,0.002250,0.249990,0,0);-ms-transform:matrix(0.360690,-0.003246,0.002250,0.249990,0,0);-webkit-transform:matrix(0.360690,-0.003246,0.002250,0.249990,0,0);}
.m1a_c01080{transform:matrix(0.382350,-0.003441,0.002250,0.249990,0,0);-ms-transform:matrix(0.382350,-0.003441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.382350,-0.003441,0.002250,0.249990,0,0);}
.m29_c01080{transform:matrix(0.389624,-0.003507,0.002250,0.249990,0,0);-ms-transform:matrix(0.389624,-0.003507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.389624,-0.003507,0.002250,0.249990,0,0);}
.m45_c01080{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m31_c01080{transform:matrix(0.405889,-0.003653,0.002250,0.249990,0,0);-ms-transform:matrix(0.405889,-0.003653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.405889,-0.003653,0.002250,0.249990,0,0);}
.m17_c01080{transform:matrix(0.409478,-0.003685,0.002250,0.249990,0,0);-ms-transform:matrix(0.409478,-0.003685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.409478,-0.003685,0.002250,0.249990,0,0);}
.m65_c01080{transform:matrix(0.447041,-0.006259,0.003500,0.249976,0,0);-ms-transform:matrix(0.447041,-0.006259,0.003500,0.249976,0,0);-webkit-transform:matrix(0.447041,-0.006259,0.003500,0.249976,0,0);}
.m44_c01080{transform:matrix(0.511205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511205,0.000000,0.000000,0.250000,0,0);}
.m0_c01080{transform:matrix(0.516559,-0.004649,0.002250,0.249990,0,0);-ms-transform:matrix(0.516559,-0.004649,0.002250,0.249990,0,0);-webkit-transform:matrix(0.516559,-0.004649,0.002250,0.249990,0,0);}
.m39_c01080{transform:matrix(0.550183,-0.004952,0.002250,0.249990,0,0);-ms-transform:matrix(0.550183,-0.004952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.550183,-0.004952,0.002250,0.249990,0,0);}
.m4c_c01080{transform:matrix(0.560184,-0.010643,0.004749,0.249955,0,0);-ms-transform:matrix(0.560184,-0.010643,0.004749,0.249955,0,0);-webkit-transform:matrix(0.560184,-0.010643,0.004749,0.249955,0,0);}
.m1f_c01080{transform:matrix(0.607170,-0.005465,0.002250,0.249990,0,0);-ms-transform:matrix(0.607170,-0.005465,0.002250,0.249990,0,0);-webkit-transform:matrix(0.607170,-0.005465,0.002250,0.249990,0,0);}
.m4e_c01080{transform:matrix(0.894379,-0.016993,0.004749,0.249955,0,0);-ms-transform:matrix(0.894379,-0.016993,0.004749,0.249955,0,0);-webkit-transform:matrix(0.894379,-0.016993,0.004749,0.249955,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls0_c01080{letter-spacing:0.000000px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:0.000000px;}
.fc0_c01080{color:transparent;}
.fsb_c01080{font-size:61.961181px;}
.fsd_c01080{font-size:63.009103px;}
.fs8_c01080{font-size:64.052594px;}
.fs5_c01080{font-size:66.152679px;}
.fs10_c01080{font-size:67.204838px;}
.fs0_c01080{font-size:68.252764px;}
.fsa_c01080{font-size:69.300000px;}
.fs4_c01080{font-size:69.302807px;}
.fse_c01080{font-size:69.306791px;}
.fsc_c01080{font-size:69.312508px;}
.fs3_c01080{font-size:70.352849px;}
.fsf_c01080{font-size:70.357914px;}
.fs9_c01080{font-size:72.452934px;}
.fs11_c01080{font-size:72.454383px;}
.fs2_c01080{font-size:76.653104px;}
.fs1_c01080{font-size:77.703147px;}
.fs6_c01080{font-size:81.903317px;}
.fs7_c01080{font-size:88.203572px;}
.y0_c01080{bottom:0.000000px;}
.y73_c01080{bottom:250.561500px;}
.y74_c01080{bottom:250.979726px;}
.y75_c01080{bottom:251.253114px;}
.y76_c01080{bottom:251.693103px;}
.y77_c01080{bottom:252.102683px;}
.y78_c01080{bottom:252.417486px;}
.y79_c01080{bottom:252.696682px;}
.y7a_c01080{bottom:253.281904px;}
.y7b_c01080{bottom:253.744994px;}
.y7c_c01080{bottom:254.475828px;}
.y7d_c01080{bottom:254.704567px;}
.y69_c01080{bottom:273.781500px;}
.y6a_c01080{bottom:274.099272px;}
.y6b_c01080{bottom:274.879788px;}
.y6c_c01080{bottom:275.135964px;}
.y6d_c01080{bottom:275.910540px;}
.y6e_c01080{bottom:276.185958px;}
.y6f_c01080{bottom:276.467892px;}
.y70_c01080{bottom:277.073646px;}
.y71_c01080{bottom:277.570068px;}
.y72_c01080{bottom:278.103300px;}
.y62_c01080{bottom:295.923000px;}
.y63_c01080{bottom:296.684445px;}
.y64_c01080{bottom:297.741742px;}
.y65_c01080{bottom:298.583985px;}
.y66_c01080{bottom:298.956900px;}
.y67_c01080{bottom:299.750723px;}
.y68_c01080{bottom:300.123345px;}
.y61_c01080{bottom:323.937906px;}
.y59_c01080{bottom:342.363000px;}
.y5a_c01080{bottom:343.307118px;}
.y5b_c01080{bottom:343.882623px;}
.y5c_c01080{bottom:344.393133px;}
.y5d_c01080{bottom:345.047115px;}
.y5e_c01080{bottom:345.651810px;}
.y5f_c01080{bottom:346.128300px;}
.y60_c01080{bottom:346.752567px;}
.y51_c01080{bottom:365.047500px;}
.y52_c01080{bottom:366.233174px;}
.y53_c01080{bottom:367.016865px;}
.y54_c01080{bottom:367.651687px;}
.y55_c01080{bottom:367.930938px;}
.y56_c01080{bottom:368.261673px;}
.y57_c01080{bottom:368.963917px;}
.y58_c01080{bottom:369.460428px;}
.y4f_c01080{bottom:391.551349px;}
.y4d_c01080{bottom:391.551763px;}
.y4e_c01080{bottom:391.551826px;}
.y50_c01080{bottom:391.551834px;}
.y4c_c01080{bottom:391.551843px;}
.y42_c01080{bottom:410.134500px;}
.y43_c01080{bottom:410.668020px;}
.y44_c01080{bottom:411.674098px;}
.y45_c01080{bottom:412.135627px;}
.y46_c01080{bottom:412.638852px;}
.y48_c01080{bottom:413.759956px;}
.y47_c01080{bottom:413.861302px;}
.y49_c01080{bottom:414.958951px;}
.y4a_c01080{bottom:415.230841px;}
.y4b_c01080{bottom:416.711844px;}
.y41_c01080{bottom:481.278000px;}
.y40_c01080{bottom:503.530682px;}
.y3e_c01080{bottom:503.530782px;}
.y3f_c01080{bottom:503.531055px;}
.y3b_c01080{bottom:522.983649px;}
.y3c_c01080{bottom:523.894388px;}
.y3d_c01080{bottom:525.206756px;}
.y33_c01080{bottom:545.661653px;}
.y34_c01080{bottom:546.592809px;}
.y35_c01080{bottom:547.576367px;}
.y36_c01080{bottom:548.120094px;}
.y37_c01080{bottom:548.326295px;}
.y38_c01080{bottom:548.746731px;}
.y39_c01080{bottom:549.366305px;}
.y3a_c01080{bottom:549.725873px;}
.y32_c01080{bottom:571.633470px;}
.y31_c01080{bottom:595.102863px;}
.y2e_c01080{bottom:595.103114px;}
.y30_c01080{bottom:595.103177px;}
.y2f_c01080{bottom:595.103490px;}
.y2b_c01080{bottom:618.031697px;}
.y2d_c01080{bottom:618.032003px;}
.y2c_c01080{bottom:618.032330px;}
.y25_c01080{bottom:635.578605px;}
.y26_c01080{bottom:636.168717px;}
.y27_c01080{bottom:637.026675px;}
.y28_c01080{bottom:637.548522px;}
.y29_c01080{bottom:638.877203px;}
.y2a_c01080{bottom:640.185758px;}
.y24_c01080{bottom:662.736668px;}
.y22_c01080{bottom:662.737022px;}
.y23_c01080{bottom:662.737221px;}
.y1f_c01080{bottom:685.982798px;}
.y20_c01080{bottom:685.982904px;}
.y1e_c01080{bottom:685.983171px;}
.y21_c01080{bottom:685.983251px;}
.y1c_c01080{bottom:708.006230px;}
.y1b_c01080{bottom:708.006300px;}
.y1d_c01080{bottom:708.006596px;}
.y19_c01080{bottom:726.841074px;}
.y1a_c01080{bottom:728.801772px;}
.y18_c01080{bottom:753.088019px;}
.y11_c01080{bottom:771.661281px;}
.y12_c01080{bottom:772.658318px;}
.y13_c01080{bottom:773.840364px;}
.y14_c01080{bottom:774.553206px;}
.y15_c01080{bottom:774.920688px;}
.y16_c01080{bottom:775.614352px;}
.y17_c01080{bottom:776.045053px;}
.y9_c01080{bottom:795.151457px;}
.ya_c01080{bottom:795.530491px;}
.yb_c01080{bottom:796.061610px;}
.yc_c01080{bottom:796.857761px;}
.yd_c01080{bottom:797.577735px;}
.ye_c01080{bottom:797.890275px;}
.yf_c01080{bottom:798.490521px;}
.y10_c01080{bottom:799.255397px;}
.y1_c01080{bottom:817.021500px;}
.y2_c01080{bottom:818.284412px;}
.y3_c01080{bottom:818.539966px;}
.y4_c01080{bottom:819.169485px;}
.y5_c01080{bottom:819.378020px;}
.y6_c01080{bottom:819.561201px;}
.y7_c01080{bottom:820.013033px;}
.y8_c01080{bottom:820.243923px;}
.hd_c01080{height:61.961181px;}
.hf_c01080{height:63.009103px;}
.ha_c01080{height:64.052594px;}
.h7_c01080{height:66.152679px;}
.h12_c01080{height:67.204838px;}
.h2_c01080{height:68.252764px;}
.hc_c01080{height:69.300000px;}
.h6_c01080{height:69.302807px;}
.h10_c01080{height:69.306791px;}
.he_c01080{height:69.312508px;}
.h5_c01080{height:70.352849px;}
.h11_c01080{height:70.357914px;}
.hb_c01080{height:72.452934px;}
.h13_c01080{height:72.454383px;}
.h4_c01080{height:76.653104px;}
.h3_c01080{height:77.703147px;}
.h8_c01080{height:81.903317px;}
.h9_c01080{height:88.203572px;}
.h1_c01080{height:1005.000000px;}
.h0_c01080{height:1005.150000px;}
.w0_c01080{width:739.200000px;}
.w1_c01080{width:739.500000px;}
.x0_c01080{left:0.000000px;}
.x1_c01080{left:124.921500px;}
.x11_c01080{left:137.639739px;}
.x9_c01080{left:138.947951px;}
.x24_c01080{left:140.400608px;}
.x31_c01080{left:141.937419px;}
.x3d_c01080{left:144.166500px;}
.x47_c01080{left:146.272500px;}
.x50_c01080{left:147.892500px;}
.x5c_c01080{left:149.227500px;}
.xa_c01080{left:168.061898px;}
.x25_c01080{left:171.465813px;}
.x55_c01080{left:173.503500px;}
.x37_c01080{left:186.551922px;}
.x51_c01080{left:198.655500px;}
.x12_c01080{left:204.084648px;}
.xb_c01080{left:208.906926px;}
.x5d_c01080{left:212.101500px;}
.x4b_c01080{left:214.248000px;}
.x26_c01080{left:216.623750px;}
.x3e_c01080{left:225.198000px;}
.x19_c01080{left:236.532453px;}
.x56_c01080{left:238.546500px;}
.x27_c01080{left:244.104279px;}
.x3f_c01080{left:249.489000px;}
.x38_c01080{left:252.197429px;}
.x4c_c01080{left:255.355500px;}
.x57_c01080{left:259.894500px;}
.x48_c01080{left:262.117500px;}
.x2_c01080{left:265.245000px;}
.x4f_c01080{left:268.121673px;}
.x52_c01080{left:269.142000px;}
.xc_c01080{left:270.199226px;}
.x21_c01080{left:272.435396px;}
.x40_c01080{left:275.974500px;}
.x18_c01080{left:279.455871px;}
.x1a_c01080{left:281.615249px;}
.x13_c01080{left:282.918895px;}
.x30_c01080{left:286.472898px;}
.x5e_c01080{left:289.335000px;}
.x29_c01080{left:292.414329px;}
.x3_c01080{left:293.640000px;}
.x49_c01080{left:299.460000px;}
.x32_c01080{left:305.922077px;}
.x28_c01080{left:314.062488px;}
.x4a_c01080{left:315.886500px;}
.x2c_c01080{left:318.335769px;}
.x33_c01080{left:319.665834px;}
.x39_c01080{left:320.760000px;}
.x58_c01080{left:324.442500px;}
.xd_c01080{left:325.527728px;}
.x14_c01080{left:330.454330px;}
.x42_c01080{left:334.980000px;}
.x2d_c01080{left:338.045862px;}
.x45_c01080{left:339.156310px;}
.x41_c01080{left:340.314000px;}
.x1d_c01080{left:342.637383px;}
.x34_c01080{left:347.712822px;}
.xe_c01080{left:349.586864px;}
.x3a_c01080{left:353.700000px;}
.x15_c01080{left:354.951008px;}
.x46_c01080{left:359.140521px;}
.x2e_c01080{left:362.346333px;}
.x4_c01080{left:363.586500px;}
.x1e_c01080{left:369.098030px;}
.x22_c01080{left:371.798942px;}
.x2a_c01080{left:376.658147px;}
.x4d_c01080{left:381.726000px;}
.x1b_c01080{left:383.949038px;}
.x5_c01080{left:386.757000px;}
.x35_c01080{left:389.052095px;}
.x23_c01080{left:391.239021px;}
.xf_c01080{left:395.779203px;}
.x43_c01080{left:398.085000px;}
.x2f_c01080{left:400.147897px;}
.x16_c01080{left:401.189010px;}
.x53_c01080{left:403.074000px;}
.x1f_c01080{left:405.279459px;}
.x6_c01080{left:407.110500px;}
.x36_c01080{left:413.002799px;}
.x4e_c01080{left:415.761000px;}
.x59_c01080{left:421.368000px;}
.x54_c01080{left:427.915500px;}
.x17_c01080{left:429.876457px;}
.x3b_c01080{left:438.210000px;}
.x10_c01080{left:454.596584px;}
.x7_c01080{left:457.314000px;}
.x20_c01080{left:459.822374px;}
.x5a_c01080{left:462.736500px;}
.x2b_c01080{left:468.462585px;}
.x3c_c01080{left:481.950000px;}
.x8_c01080{left:482.968500px;}
.x44_c01080{left:490.342500px;}
.x5f_c01080{left:505.075500px;}
.x5b_c01080{left:507.172500px;}
.x1c_c01080{left:517.333838px;}
.x60_c01080{left:525.870000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls0_c01080{letter-spacing:0.000000pt;}
.ws0_c01080{word-spacing:0.000000pt;}
.fsb_c01080{font-size:55.076605pt;}
.fsd_c01080{font-size:56.008091pt;}
.fs8_c01080{font-size:56.935639pt;}
.fs5_c01080{font-size:58.802381pt;}
.fs10_c01080{font-size:59.737634pt;}
.fs0_c01080{font-size:60.669124pt;}
.fsa_c01080{font-size:61.600000pt;}
.fs4_c01080{font-size:61.602495pt;}
.fse_c01080{font-size:61.606037pt;}
.fsc_c01080{font-size:61.611118pt;}
.fs3_c01080{font-size:62.535866pt;}
.fsf_c01080{font-size:62.540368pt;}
.fs9_c01080{font-size:64.402608pt;}
.fs11_c01080{font-size:64.403896pt;}
.fs2_c01080{font-size:68.136093pt;}
.fs1_c01080{font-size:69.069464pt;}
.fs6_c01080{font-size:72.802948pt;}
.fs7_c01080{font-size:78.403175pt;}
.y0_c01080{bottom:0.000000pt;}
.y73_c01080{bottom:222.721333pt;}
.y74_c01080{bottom:223.093089pt;}
.y75_c01080{bottom:223.336101pt;}
.y76_c01080{bottom:223.727203pt;}
.y77_c01080{bottom:224.091273pt;}
.y78_c01080{bottom:224.371099pt;}
.y79_c01080{bottom:224.619273pt;}
.y7a_c01080{bottom:225.139471pt;}
.y7b_c01080{bottom:225.551105pt;}
.y7c_c01080{bottom:226.200736pt;}
.y7d_c01080{bottom:226.404060pt;}
.y69_c01080{bottom:243.361333pt;}
.y6a_c01080{bottom:243.643797pt;}
.y6b_c01080{bottom:244.337589pt;}
.y6c_c01080{bottom:244.565301pt;}
.y6d_c01080{bottom:245.253813pt;}
.y6e_c01080{bottom:245.498629pt;}
.y6f_c01080{bottom:245.749237pt;}
.y70_c01080{bottom:246.287685pt;}
.y71_c01080{bottom:246.728949pt;}
.y72_c01080{bottom:247.202933pt;}
.y62_c01080{bottom:263.042667pt;}
.y63_c01080{bottom:263.719507pt;}
.y64_c01080{bottom:264.659327pt;}
.y65_c01080{bottom:265.407987pt;}
.y66_c01080{bottom:265.739467pt;}
.y67_c01080{bottom:266.445087pt;}
.y68_c01080{bottom:266.776307pt;}
.y61_c01080{bottom:287.944805pt;}
.y59_c01080{bottom:304.322667pt;}
.y5a_c01080{bottom:305.161883pt;}
.y5b_c01080{bottom:305.673443pt;}
.y5c_c01080{bottom:306.127229pt;}
.y5d_c01080{bottom:306.708547pt;}
.y5e_c01080{bottom:307.246053pt;}
.y5f_c01080{bottom:307.669600pt;}
.y60_c01080{bottom:308.224504pt;}
.y51_c01080{bottom:324.486667pt;}
.y52_c01080{bottom:325.540599pt;}
.y53_c01080{bottom:326.237213pt;}
.y54_c01080{bottom:326.801500pt;}
.y55_c01080{bottom:327.049723pt;}
.y56_c01080{bottom:327.343709pt;}
.y57_c01080{bottom:327.967927pt;}
.y58_c01080{bottom:328.409269pt;}
.y4f_c01080{bottom:348.045644pt;}
.y4d_c01080{bottom:348.046012pt;}
.y4e_c01080{bottom:348.046068pt;}
.y50_c01080{bottom:348.046075pt;}
.y4c_c01080{bottom:348.046083pt;}
.y42_c01080{bottom:364.564000pt;}
.y43_c01080{bottom:365.038240pt;}
.y44_c01080{bottom:365.932532pt;}
.y45_c01080{bottom:366.342780pt;}
.y46_c01080{bottom:366.790091pt;}
.y48_c01080{bottom:367.786628pt;}
.y47_c01080{bottom:367.876713pt;}
.y49_c01080{bottom:368.852401pt;}
.y4a_c01080{bottom:369.094081pt;}
.y4b_c01080{bottom:370.410528pt;}
.y41_c01080{bottom:427.802667pt;}
.y40_c01080{bottom:447.582828pt;}
.y3e_c01080{bottom:447.582917pt;}
.y3f_c01080{bottom:447.583160pt;}
.y3b_c01080{bottom:464.874355pt;}
.y3c_c01080{bottom:465.683900pt;}
.y3d_c01080{bottom:466.850449pt;}
.y33_c01080{bottom:485.032580pt;}
.y34_c01080{bottom:485.860275pt;}
.y35_c01080{bottom:486.734548pt;}
.y36_c01080{bottom:487.217861pt;}
.y37_c01080{bottom:487.401151pt;}
.y38_c01080{bottom:487.774872pt;}
.y39_c01080{bottom:488.325604pt;}
.y3a_c01080{bottom:488.645220pt;}
.y32_c01080{bottom:508.118640pt;}
.y31_c01080{bottom:528.980323pt;}
.y2e_c01080{bottom:528.980545pt;}
.y30_c01080{bottom:528.980601pt;}
.y2f_c01080{bottom:528.980880pt;}
.y2b_c01080{bottom:549.361508pt;}
.y2d_c01080{bottom:549.361780pt;}
.y2c_c01080{bottom:549.362071pt;}
.y25_c01080{bottom:564.958760pt;}
.y26_c01080{bottom:565.483304pt;}
.y27_c01080{bottom:566.245933pt;}
.y28_c01080{bottom:566.709797pt;}
.y29_c01080{bottom:567.890847pt;}
.y2a_c01080{bottom:569.054007pt;}
.y24_c01080{bottom:589.099260pt;}
.y22_c01080{bottom:589.099575pt;}
.y23_c01080{bottom:589.099752pt;}
.y1f_c01080{bottom:609.762487pt;}
.y20_c01080{bottom:609.762581pt;}
.y1e_c01080{bottom:609.762819pt;}
.y21_c01080{bottom:609.762889pt;}
.y1c_c01080{bottom:629.338871pt;}
.y1b_c01080{bottom:629.338933pt;}
.y1d_c01080{bottom:629.339196pt;}
.y19_c01080{bottom:646.080955pt;}
.y1a_c01080{bottom:647.823797pt;}
.y18_c01080{bottom:669.411572pt;}
.y11_c01080{bottom:685.921139pt;}
.y12_c01080{bottom:686.807393pt;}
.y13_c01080{bottom:687.858101pt;}
.y14_c01080{bottom:688.491739pt;}
.y15_c01080{bottom:688.818389pt;}
.y16_c01080{bottom:689.434980pt;}
.y17_c01080{bottom:689.817825pt;}
.y9_c01080{bottom:706.801295pt;}
.ya_c01080{bottom:707.138215pt;}
.yb_c01080{bottom:707.610320pt;}
.yc_c01080{bottom:708.318009pt;}
.yd_c01080{bottom:708.957987pt;}
.ye_c01080{bottom:709.235800pt;}
.yf_c01080{bottom:709.769352pt;}
.y10_c01080{bottom:710.449241pt;}
.y1_c01080{bottom:726.241333pt;}
.y2_c01080{bottom:727.363921pt;}
.y3_c01080{bottom:727.591081pt;}
.y4_c01080{bottom:728.150653pt;}
.y5_c01080{bottom:728.336017pt;}
.y6_c01080{bottom:728.498845pt;}
.y7_c01080{bottom:728.900473pt;}
.y8_c01080{bottom:729.105709pt;}
.hd_c01080{height:55.076605pt;}
.hf_c01080{height:56.008091pt;}
.ha_c01080{height:56.935639pt;}
.h7_c01080{height:58.802381pt;}
.h12_c01080{height:59.737634pt;}
.h2_c01080{height:60.669124pt;}
.hc_c01080{height:61.600000pt;}
.h6_c01080{height:61.602495pt;}
.h10_c01080{height:61.606037pt;}
.he_c01080{height:61.611118pt;}
.h5_c01080{height:62.535866pt;}
.h11_c01080{height:62.540368pt;}
.hb_c01080{height:64.402608pt;}
.h13_c01080{height:64.403896pt;}
.h4_c01080{height:68.136093pt;}
.h3_c01080{height:69.069464pt;}
.h8_c01080{height:72.802948pt;}
.h9_c01080{height:78.403175pt;}
.h1_c01080{height:893.333333pt;}
.h0_c01080{height:893.466667pt;}
.w0_c01080{width:657.066667pt;}
.w1_c01080{width:657.333333pt;}
.x0_c01080{left:0.000000pt;}
.x1_c01080{left:111.041333pt;}
.x11_c01080{left:122.346435pt;}
.x9_c01080{left:123.509289pt;}
.x24_c01080{left:124.800540pt;}
.x31_c01080{left:126.166595pt;}
.x3d_c01080{left:128.148000pt;}
.x47_c01080{left:130.020000pt;}
.x50_c01080{left:131.460000pt;}
.x5c_c01080{left:132.646667pt;}
.xa_c01080{left:149.388353pt;}
.x25_c01080{left:152.414056pt;}
.x55_c01080{left:154.225333pt;}
.x37_c01080{left:165.823931pt;}
.x51_c01080{left:176.582667pt;}
.x12_c01080{left:181.408576pt;}
.xb_c01080{left:185.695045pt;}
.x5d_c01080{left:188.534667pt;}
.x4b_c01080{left:190.442667pt;}
.x26_c01080{left:192.554444pt;}
.x3e_c01080{left:200.176000pt;}
.x19_c01080{left:210.251069pt;}
.x56_c01080{left:212.041333pt;}
.x27_c01080{left:216.981581pt;}
.x3f_c01080{left:221.768000pt;}
.x38_c01080{left:224.175492pt;}
.x4c_c01080{left:226.982667pt;}
.x57_c01080{left:231.017333pt;}
.x48_c01080{left:232.993333pt;}
.x2_c01080{left:235.773333pt;}
.x4f_c01080{left:238.330376pt;}
.x52_c01080{left:239.237333pt;}
.xc_c01080{left:240.177089pt;}
.x21_c01080{left:242.164796pt;}
.x40_c01080{left:245.310667pt;}
.x18_c01080{left:248.405219pt;}
.x1a_c01080{left:250.324665pt;}
.x13_c01080{left:251.483463pt;}
.x30_c01080{left:254.642576pt;}
.x5e_c01080{left:257.186667pt;}
.x29_c01080{left:259.923848pt;}
.x3_c01080{left:261.013333pt;}
.x49_c01080{left:266.186667pt;}
.x32_c01080{left:271.930735pt;}
.x28_c01080{left:279.166656pt;}
.x4a_c01080{left:280.788000pt;}
.x2c_c01080{left:282.965128pt;}
.x33_c01080{left:284.147408pt;}
.x39_c01080{left:285.120000pt;}
.x58_c01080{left:288.393333pt;}
.xd_c01080{left:289.357980pt;}
.x14_c01080{left:293.737183pt;}
.x42_c01080{left:297.760000pt;}
.x2d_c01080{left:300.485211pt;}
.x45_c01080{left:301.472276pt;}
.x41_c01080{left:302.501333pt;}
.x1d_c01080{left:304.566563pt;}
.x34_c01080{left:309.078064pt;}
.xe_c01080{left:310.743879pt;}
.x3a_c01080{left:314.400000pt;}
.x15_c01080{left:315.512007pt;}
.x46_c01080{left:319.236019pt;}
.x2e_c01080{left:322.085629pt;}
.x4_c01080{left:323.188000pt;}
.x1e_c01080{left:328.087137pt;}
.x22_c01080{left:330.487948pt;}
.x2a_c01080{left:334.807241pt;}
.x4d_c01080{left:339.312000pt;}
.x1b_c01080{left:341.288033pt;}
.x5_c01080{left:343.784000pt;}
.x35_c01080{left:345.824084pt;}
.x23_c01080{left:347.768019pt;}
.xf_c01080{left:351.803736pt;}
.x43_c01080{left:353.853333pt;}
.x2f_c01080{left:355.687020pt;}
.x16_c01080{left:356.612453pt;}
.x53_c01080{left:358.288000pt;}
.x1f_c01080{left:360.248408pt;}
.x6_c01080{left:361.876000pt;}
.x36_c01080{left:367.113599pt;}
.x4e_c01080{left:369.565333pt;}
.x59_c01080{left:374.549333pt;}
.x54_c01080{left:380.369333pt;}
.x17_c01080{left:382.112407pt;}
.x3b_c01080{left:389.520000pt;}
.x10_c01080{left:404.085852pt;}
.x7_c01080{left:406.501333pt;}
.x20_c01080{left:408.730999pt;}
.x5a_c01080{left:411.321333pt;}
.x2b_c01080{left:416.411187pt;}
.x3c_c01080{left:428.400000pt;}
.x8_c01080{left:429.305333pt;}
.x44_c01080{left:435.860000pt;}
.x5f_c01080{left:448.956000pt;}
.x5b_c01080{left:450.820000pt;}
.x1c_c01080{left:459.852300pt;}
.x60_c01080{left:467.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_c01081 {
    display:none;
  }
  .loading-indicator_c01081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01081 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01081 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01081" -> "#page-container .classname_c01081")
 */
.pf_c01081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01081 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01081 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01081 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01081 {overflow:visible;}
  }
}
.c_c01081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01081 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01081:after { /* webkit #35443 */
  content: '';
}
.t_c01081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01081 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01081 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01081 { /* info for Javascript */
  display:none;
}
.l_c01081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_d24df5124729fd0a4ee0fe1e.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c01081{transform:matrix(0.010693,-0.000203,0.004749,0.249955,0,0);-ms-transform:matrix(0.010693,-0.000203,0.004749,0.249955,0,0);-webkit-transform:matrix(0.010693,-0.000203,0.004749,0.249955,0,0);}
.m4c_c01081{transform:matrix(0.016042,-0.000305,0.004749,0.249955,0,0);-ms-transform:matrix(0.016042,-0.000305,0.004749,0.249955,0,0);-webkit-transform:matrix(0.016042,-0.000305,0.004749,0.249955,0,0);}
.m9a_c01081{transform:matrix(0.020731,-0.000394,0.004749,0.249955,0,0);-ms-transform:matrix(0.020731,-0.000394,0.004749,0.249955,0,0);-webkit-transform:matrix(0.020731,-0.000394,0.004749,0.249955,0,0);}
.m48_c01081{transform:matrix(0.029530,-0.000561,0.004749,0.249955,0,0);-ms-transform:matrix(0.029530,-0.000561,0.004749,0.249955,0,0);-webkit-transform:matrix(0.029530,-0.000561,0.004749,0.249955,0,0);}
.m99_c01081{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);}
.m8a_c01081{transform:matrix(0.083365,-0.001584,0.004749,0.249955,0,0);-ms-transform:matrix(0.083365,-0.001584,0.004749,0.249955,0,0);-webkit-transform:matrix(0.083365,-0.001584,0.004749,0.249955,0,0);}
.m34_c01081{transform:matrix(0.087675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087675,0.000000,0.000000,0.250000,0,0);}
.m73_c01081{transform:matrix(0.092918,-0.001765,0.004749,0.249955,0,0);-ms-transform:matrix(0.092918,-0.001765,0.004749,0.249955,0,0);-webkit-transform:matrix(0.092918,-0.001765,0.004749,0.249955,0,0);}
.m21_c01081{transform:matrix(0.098465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098465,0.000000,0.000000,0.250000,0,0);}
.m70_c01081{transform:matrix(0.108400,-0.002060,0.004749,0.249955,0,0);-ms-transform:matrix(0.108400,-0.002060,0.004749,0.249955,0,0);-webkit-transform:matrix(0.108400,-0.002060,0.004749,0.249955,0,0);}
.m2b_c01081{transform:matrix(0.114140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114140,0.000000,0.000000,0.250000,0,0);}
.m30_c01081{transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121745,0.000000,0.000000,0.250000,0,0);}
.m1d_c01081{transform:matrix(0.136470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136470,0.000000,0.000000,0.250000,0,0);}
.m8b_c01081{transform:matrix(0.138720,-0.002636,0.004749,0.249955,0,0);-ms-transform:matrix(0.138720,-0.002636,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138720,-0.002636,0.004749,0.249955,0,0);}
.m7a_c01081{transform:matrix(0.142024,-0.002698,0.004749,0.249955,0,0);-ms-transform:matrix(0.142024,-0.002698,0.004749,0.249955,0,0);-webkit-transform:matrix(0.142024,-0.002698,0.004749,0.249955,0,0);}
.m65_c01081{transform:matrix(0.146399,-0.002782,0.004749,0.249955,0,0);-ms-transform:matrix(0.146399,-0.002782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146399,-0.002782,0.004749,0.249955,0,0);}
.m8d_c01081{transform:matrix(0.147433,-0.002801,0.004749,0.249955,0,0);-ms-transform:matrix(0.147433,-0.002801,0.004749,0.249955,0,0);-webkit-transform:matrix(0.147433,-0.002801,0.004749,0.249955,0,0);}
.m93_c01081{transform:matrix(0.148358,-0.002819,0.004749,0.249955,0,0);-ms-transform:matrix(0.148358,-0.002819,0.004749,0.249955,0,0);-webkit-transform:matrix(0.148358,-0.002819,0.004749,0.249955,0,0);}
.m76_c01081{transform:matrix(0.152682,-0.002901,0.004749,0.249955,0,0);-ms-transform:matrix(0.152682,-0.002901,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152682,-0.002901,0.004749,0.249955,0,0);}
.m55_c01081{transform:matrix(0.153357,-0.002914,0.004749,0.249955,0,0);-ms-transform:matrix(0.153357,-0.002914,0.004749,0.249955,0,0);-webkit-transform:matrix(0.153357,-0.002914,0.004749,0.249955,0,0);}
.m5d_c01081{transform:matrix(0.156287,-0.002969,0.004749,0.249955,0,0);-ms-transform:matrix(0.156287,-0.002969,0.004749,0.249955,0,0);-webkit-transform:matrix(0.156287,-0.002969,0.004749,0.249955,0,0);}
.m2c_c01081{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);}
.m69_c01081{transform:matrix(0.160031,-0.003041,0.004749,0.249955,0,0);-ms-transform:matrix(0.160031,-0.003041,0.004749,0.249955,0,0);-webkit-transform:matrix(0.160031,-0.003041,0.004749,0.249955,0,0);}
.m67_c01081{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);}
.m2e_c01081{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);}
.m5b_c01081{transform:matrix(0.162361,-0.003085,0.004749,0.249955,0,0);-ms-transform:matrix(0.162361,-0.003085,0.004749,0.249955,0,0);-webkit-transform:matrix(0.162361,-0.003085,0.004749,0.249955,0,0);}
.m6e_c01081{transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);-ms-transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163525,-0.003107,0.004749,0.249955,0,0);}
.m85_c01081{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);}
.m3a_c01081{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);}
.m89_c01081{transform:matrix(0.167535,-0.003183,0.004749,0.249955,0,0);-ms-transform:matrix(0.167535,-0.003183,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167535,-0.003183,0.004749,0.249955,0,0);}
.mac_c01081{transform:matrix(0.167769,-0.003691,0.005499,0.249940,0,0);-ms-transform:matrix(0.167769,-0.003691,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167769,-0.003691,0.005499,0.249940,0,0);}
.m95_c01081{transform:matrix(0.167775,-0.003188,0.004749,0.249955,0,0);-ms-transform:matrix(0.167775,-0.003188,0.004749,0.249955,0,0);-webkit-transform:matrix(0.167775,-0.003188,0.004749,0.249955,0,0);}
.m3b_c01081{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);}
.m3d_c01081{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);}
.m5c_c01081{transform:matrix(0.172189,-0.003272,0.004749,0.249955,0,0);-ms-transform:matrix(0.172189,-0.003272,0.004749,0.249955,0,0);-webkit-transform:matrix(0.172189,-0.003272,0.004749,0.249955,0,0);}
.m47_c01081{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);}
.m42_c01081{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);}
.m27_c01081{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);}
.m83_c01081{transform:matrix(0.173719,-0.003301,0.004749,0.249955,0,0);-ms-transform:matrix(0.173719,-0.003301,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173719,-0.003301,0.004749,0.249955,0,0);}
.m33_c01081{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);}
.m2d_c01081{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);}
.mae_c01081{transform:matrix(0.175817,-0.003868,0.005499,0.249940,0,0);-ms-transform:matrix(0.175817,-0.003868,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175817,-0.003868,0.005499,0.249940,0,0);}
.mca_c01081{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);}
.m91_c01081{transform:matrix(0.181462,-0.003448,0.004749,0.249955,0,0);-ms-transform:matrix(0.181462,-0.003448,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181462,-0.003448,0.004749,0.249955,0,0);}
.mb5_c01081{transform:matrix(0.181554,-0.003631,0.004999,0.249950,0,0);-ms-transform:matrix(0.181554,-0.003631,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181554,-0.003631,0.004999,0.249950,0,0);}
.m54_c01081{transform:matrix(0.181567,-0.003450,0.004749,0.249955,0,0);-ms-transform:matrix(0.181567,-0.003450,0.004749,0.249955,0,0);-webkit-transform:matrix(0.181567,-0.003450,0.004749,0.249955,0,0);}
.mc5_c01081{transform:matrix(0.182026,-0.003276,0.004499,0.249960,0,0);-ms-transform:matrix(0.182026,-0.003276,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182026,-0.003276,0.004499,0.249960,0,0);}
.m56_c01081{transform:matrix(0.182187,-0.003462,0.004749,0.249955,0,0);-ms-transform:matrix(0.182187,-0.003462,0.004749,0.249955,0,0);-webkit-transform:matrix(0.182187,-0.003462,0.004749,0.249955,0,0);}
.mcc_c01081{transform:matrix(0.182920,-0.003293,0.004499,0.249960,0,0);-ms-transform:matrix(0.182920,-0.003293,0.004499,0.249960,0,0);-webkit-transform:matrix(0.182920,-0.003293,0.004499,0.249960,0,0);}
.mb4_c01081{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);}
.m11_c01081{transform:matrix(0.183764,-0.003859,0.005249,0.249945,0,0);-ms-transform:matrix(0.183764,-0.003859,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183764,-0.003859,0.005249,0.249945,0,0);}
.m8e_c01081{transform:matrix(0.183837,-0.003493,0.004749,0.249955,0,0);-ms-transform:matrix(0.183837,-0.003493,0.004749,0.249955,0,0);-webkit-transform:matrix(0.183837,-0.003493,0.004749,0.249955,0,0);}
.m28_c01081{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);}
.mb3_c01081{transform:matrix(0.184408,-0.003688,0.004999,0.249950,0,0);-ms-transform:matrix(0.184408,-0.003688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184408,-0.003688,0.004999,0.249950,0,0);}
.maf_c01081{transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);-ms-transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185655,-0.004084,0.005499,0.249940,0,0);}
.m74_c01081{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);}
.m31_c01081{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);}
.mc9_c01081{transform:matrix(0.186950,-0.003365,0.004499,0.249960,0,0);-ms-transform:matrix(0.186950,-0.003365,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186950,-0.003365,0.004499,0.249960,0,0);}
.m52_c01081{transform:matrix(0.187591,-0.003564,0.004749,0.249955,0,0);-ms-transform:matrix(0.187591,-0.003564,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187591,-0.003564,0.004749,0.249955,0,0);}
.mc_c01081{transform:matrix(0.188014,-0.003948,0.005249,0.249945,0,0);-ms-transform:matrix(0.188014,-0.003948,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188014,-0.003948,0.005249,0.249945,0,0);}
.m7b_c01081{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);}
.m29_c01081{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);}
.m58_c01081{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);}
.ma1_c01081{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);}
.m6a_c01081{transform:matrix(0.189696,-0.003604,0.004749,0.249955,0,0);-ms-transform:matrix(0.189696,-0.003604,0.004749,0.249955,0,0);-webkit-transform:matrix(0.189696,-0.003604,0.004749,0.249955,0,0);}
.ma9_c01081{transform:matrix(0.189939,-0.004179,0.005499,0.249940,0,0);-ms-transform:matrix(0.189939,-0.004179,0.005499,0.249940,0,0);-webkit-transform:matrix(0.189939,-0.004179,0.005499,0.249940,0,0);}
.m35_c01081{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);}
.mab_c01081{transform:matrix(0.190814,-0.004198,0.005499,0.249940,0,0);-ms-transform:matrix(0.190814,-0.004198,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190814,-0.004198,0.005499,0.249940,0,0);}
.m79_c01081{transform:matrix(0.191230,-0.003633,0.004749,0.249955,0,0);-ms-transform:matrix(0.191230,-0.003633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191230,-0.003633,0.004749,0.249955,0,0);}
.mc2_c01081{transform:matrix(0.191694,-0.003450,0.004499,0.249960,0,0);-ms-transform:matrix(0.191694,-0.003450,0.004499,0.249960,0,0);-webkit-transform:matrix(0.191694,-0.003450,0.004499,0.249960,0,0);}
.m41_c01081{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);}
.m3f_c01081{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);}
.m32_c01081{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);}
.m53_c01081{transform:matrix(0.193425,-0.003675,0.004749,0.249955,0,0);-ms-transform:matrix(0.193425,-0.003675,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193425,-0.003675,0.004749,0.249955,0,0);}
.m81_c01081{transform:matrix(0.193870,-0.003684,0.004749,0.249955,0,0);-ms-transform:matrix(0.193870,-0.003684,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193870,-0.003684,0.004749,0.249955,0,0);}
.mb7_c01081{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);}
.mb8_c01081{transform:matrix(0.194561,-0.003891,0.004999,0.249950,0,0);-ms-transform:matrix(0.194561,-0.003891,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194561,-0.003891,0.004999,0.249950,0,0);}
.mc8_c01081{transform:matrix(0.194838,-0.003507,0.004499,0.249960,0,0);-ms-transform:matrix(0.194838,-0.003507,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194838,-0.003507,0.004499,0.249960,0,0);}
.mcf_c01081{transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-ms-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);-webkit-transform:matrix(0.194968,-0.003509,0.004499,0.249960,0,0);}
.m1c_c01081{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);}
.m45_c01081{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);}
.md0_c01081{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);}
.m90_c01081{transform:matrix(0.196595,-0.003735,0.004749,0.249955,0,0);-ms-transform:matrix(0.196595,-0.003735,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196595,-0.003735,0.004749,0.249955,0,0);}
.mad_c01081{transform:matrix(0.197832,-0.004352,0.005499,0.249940,0,0);-ms-transform:matrix(0.197832,-0.004352,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197832,-0.004352,0.005499,0.249940,0,0);}
.m84_c01081{transform:matrix(0.198319,-0.003768,0.004749,0.249955,0,0);-ms-transform:matrix(0.198319,-0.003768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198319,-0.003768,0.004749,0.249955,0,0);}
.m7f_c01081{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);}
.m49_c01081{transform:matrix(0.199009,-0.003781,0.004749,0.249955,0,0);-ms-transform:matrix(0.199009,-0.003781,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199009,-0.003781,0.004749,0.249955,0,0);}
.m1e_c01081{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);}
.m7d_c01081{transform:matrix(0.199979,-0.003800,0.004749,0.249955,0,0);-ms-transform:matrix(0.199979,-0.003800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199979,-0.003800,0.004749,0.249955,0,0);}
.m88_c01081{transform:matrix(0.200949,-0.003818,0.004749,0.249955,0,0);-ms-transform:matrix(0.200949,-0.003818,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200949,-0.003818,0.004749,0.249955,0,0);}
.m97_c01081{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);}
.m4e_c01081{transform:matrix(0.201474,-0.003828,0.004749,0.249955,0,0);-ms-transform:matrix(0.201474,-0.003828,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201474,-0.003828,0.004749,0.249955,0,0);}
.m4b_c01081{transform:matrix(0.201599,-0.003830,0.004749,0.249955,0,0);-ms-transform:matrix(0.201599,-0.003830,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201599,-0.003830,0.004749,0.249955,0,0);}
.md7_c01081{transform:matrix(0.202502,-0.003645,0.004499,0.249960,0,0);-ms-transform:matrix(0.202502,-0.003645,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202502,-0.003645,0.004499,0.249960,0,0);}
.m77_c01081{transform:matrix(0.203123,-0.003859,0.004749,0.249955,0,0);-ms-transform:matrix(0.203123,-0.003859,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203123,-0.003859,0.004749,0.249955,0,0);}
.mda_c01081{transform:matrix(0.203902,-0.003670,0.004499,0.249960,0,0);-ms-transform:matrix(0.203902,-0.003670,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203902,-0.003670,0.004499,0.249960,0,0);}
.m7e_c01081{transform:matrix(0.203998,-0.003876,0.004749,0.249955,0,0);-ms-transform:matrix(0.203998,-0.003876,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203998,-0.003876,0.004749,0.249955,0,0);}
.m46_c01081{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);}
.m68_c01081{transform:matrix(0.204488,-0.003885,0.004749,0.249955,0,0);-ms-transform:matrix(0.204488,-0.003885,0.004749,0.249955,0,0);-webkit-transform:matrix(0.204488,-0.003885,0.004749,0.249955,0,0);}
.mc7_c01081{transform:matrix(0.205287,-0.003695,0.004499,0.249960,0,0);-ms-transform:matrix(0.205287,-0.003695,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205287,-0.003695,0.004499,0.249960,0,0);}
.m59_c01081{transform:matrix(0.205493,-0.003904,0.004749,0.249955,0,0);-ms-transform:matrix(0.205493,-0.003904,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205493,-0.003904,0.004749,0.249955,0,0);}
.md1_c01081{transform:matrix(0.205752,-0.003704,0.004499,0.249960,0,0);-ms-transform:matrix(0.205752,-0.003704,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205752,-0.003704,0.004499,0.249960,0,0);}
.m2f_c01081{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);}
.md_c01081{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);}
.md3_c01081{transform:matrix(0.207256,-0.003731,0.004499,0.249960,0,0);-ms-transform:matrix(0.207256,-0.003731,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207256,-0.003731,0.004499,0.249960,0,0);}
.md2_c01081{transform:matrix(0.207411,-0.003733,0.004499,0.249960,0,0);-ms-transform:matrix(0.207411,-0.003733,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207411,-0.003733,0.004499,0.249960,0,0);}
.m8c_c01081{transform:matrix(0.207693,-0.003946,0.004749,0.249955,0,0);-ms-transform:matrix(0.207693,-0.003946,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207693,-0.003946,0.004749,0.249955,0,0);}
.mc0_c01081{transform:matrix(0.207866,-0.003742,0.004499,0.249960,0,0);-ms-transform:matrix(0.207866,-0.003742,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207866,-0.003742,0.004499,0.249960,0,0);}
.m64_c01081{transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);-ms-transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209217,-0.003975,0.004749,0.249955,0,0);}
.mc6_c01081{transform:matrix(0.209326,-0.003768,0.004499,0.249960,0,0);-ms-transform:matrix(0.209326,-0.003768,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209326,-0.003768,0.004499,0.249960,0,0);}
.m5e_c01081{transform:matrix(0.210092,-0.003992,0.004749,0.249955,0,0);-ms-transform:matrix(0.210092,-0.003992,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210092,-0.003992,0.004749,0.249955,0,0);}
.maa_c01081{transform:matrix(0.210379,-0.004628,0.005499,0.249940,0,0);-ms-transform:matrix(0.210379,-0.004628,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210379,-0.004628,0.005499,0.249940,0,0);}
.md6_c01081{transform:matrix(0.210496,-0.003789,0.004499,0.249960,0,0);-ms-transform:matrix(0.210496,-0.003789,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210496,-0.003789,0.004499,0.249960,0,0);}
.mbb_c01081{transform:matrix(0.210513,-0.004210,0.004999,0.249950,0,0);-ms-transform:matrix(0.210513,-0.004210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210513,-0.004210,0.004999,0.249950,0,0);}
.mcb_c01081{transform:matrix(0.211036,-0.003799,0.004499,0.249960,0,0);-ms-transform:matrix(0.211036,-0.003799,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211036,-0.003799,0.004499,0.249960,0,0);}
.m9c_c01081{transform:matrix(0.211332,-0.004015,0.004749,0.249955,0,0);-ms-transform:matrix(0.211332,-0.004015,0.004749,0.249955,0,0);-webkit-transform:matrix(0.211332,-0.004015,0.004749,0.249955,0,0);}
.mb9_c01081{transform:matrix(0.211338,-0.004227,0.004999,0.249950,0,0);-ms-transform:matrix(0.211338,-0.004227,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211338,-0.004227,0.004999,0.249950,0,0);}
.md8_c01081{transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);-ms-transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);}
.mc1_c01081{transform:matrix(0.212196,-0.003820,0.004499,0.249960,0,0);-ms-transform:matrix(0.212196,-0.003820,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212196,-0.003820,0.004499,0.249960,0,0);}
.mba_c01081{transform:matrix(0.212682,-0.004254,0.004999,0.249950,0,0);-ms-transform:matrix(0.212682,-0.004254,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212682,-0.004254,0.004999,0.249950,0,0);}
.ma0_c01081{transform:matrix(0.213351,-0.004054,0.004749,0.249955,0,0);-ms-transform:matrix(0.213351,-0.004054,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213351,-0.004054,0.004749,0.249955,0,0);}
.m9d_c01081{transform:matrix(0.214161,-0.004069,0.004749,0.249955,0,0);-ms-transform:matrix(0.214161,-0.004069,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214161,-0.004069,0.004749,0.249955,0,0);}
.ma8_c01081{transform:matrix(0.214511,-0.004076,0.004749,0.249955,0,0);-ms-transform:matrix(0.214511,-0.004076,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214511,-0.004076,0.004749,0.249955,0,0);}
.m80_c01081{transform:matrix(0.216111,-0.004106,0.004749,0.249955,0,0);-ms-transform:matrix(0.216111,-0.004106,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216111,-0.004106,0.004749,0.249955,0,0);}
.md9_c01081{transform:matrix(0.217670,-0.003918,0.004499,0.249960,0,0);-ms-transform:matrix(0.217670,-0.003918,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217670,-0.003918,0.004499,0.249960,0,0);}
.mbd_c01081{transform:matrix(0.218741,-0.004375,0.004999,0.249950,0,0);-ms-transform:matrix(0.218741,-0.004375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218741,-0.004375,0.004999,0.249950,0,0);}
.m86_c01081{transform:matrix(0.220120,-0.004182,0.004749,0.249955,0,0);-ms-transform:matrix(0.220120,-0.004182,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220120,-0.004182,0.004749,0.249955,0,0);}
.mce_c01081{transform:matrix(0.220929,-0.003977,0.004499,0.249960,0,0);-ms-transform:matrix(0.220929,-0.003977,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220929,-0.003977,0.004499,0.249960,0,0);}
.m96_c01081{transform:matrix(0.221080,-0.004201,0.004749,0.249955,0,0);-ms-transform:matrix(0.221080,-0.004201,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221080,-0.004201,0.004749,0.249955,0,0);}
.m5a_c01081{transform:matrix(0.221575,-0.004210,0.004749,0.249955,0,0);-ms-transform:matrix(0.221575,-0.004210,0.004749,0.249955,0,0);-webkit-transform:matrix(0.221575,-0.004210,0.004749,0.249955,0,0);}
.m3c_c01081{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);}
.m1b_c01081{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m9e_c01081{transform:matrix(0.224225,-0.004260,0.004749,0.249955,0,0);-ms-transform:matrix(0.224225,-0.004260,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224225,-0.004260,0.004749,0.249955,0,0);}
.m6c_c01081{transform:matrix(0.224874,-0.004273,0.004749,0.249955,0,0);-ms-transform:matrix(0.224874,-0.004273,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224874,-0.004273,0.004749,0.249955,0,0);}
.m94_c01081{transform:matrix(0.225024,-0.004275,0.004749,0.249955,0,0);-ms-transform:matrix(0.225024,-0.004275,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225024,-0.004275,0.004749,0.249955,0,0);}
.mb2_c01081{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);}
.m36_c01081{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);}
.mb6_c01081{transform:matrix(0.226795,-0.004536,0.004999,0.249950,0,0);-ms-transform:matrix(0.226795,-0.004536,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226795,-0.004536,0.004999,0.249950,0,0);}
.m2a_c01081{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);}
.m50_c01081{transform:matrix(0.227959,-0.004331,0.004749,0.249955,0,0);-ms-transform:matrix(0.227959,-0.004331,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227959,-0.004331,0.004749,0.249955,0,0);}
.mc3_c01081{transform:matrix(0.228373,-0.004111,0.004499,0.249960,0,0);-ms-transform:matrix(0.228373,-0.004111,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228373,-0.004111,0.004499,0.249960,0,0);}
.m66_c01081{transform:matrix(0.230198,-0.004374,0.004749,0.249955,0,0);-ms-transform:matrix(0.230198,-0.004374,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230198,-0.004374,0.004749,0.249955,0,0);}
.m9f_c01081{transform:matrix(0.230243,-0.004375,0.004749,0.249955,0,0);-ms-transform:matrix(0.230243,-0.004375,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230243,-0.004375,0.004749,0.249955,0,0);}
.m43_c01081{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);}
.m19_c01081{transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231740,0.000000,0.000000,0.250000,0,0);}
.m38_c01081{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);}
.m63_c01081{transform:matrix(0.232968,-0.004426,0.004749,0.249955,0,0);-ms-transform:matrix(0.232968,-0.004426,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232968,-0.004426,0.004749,0.249955,0,0);}
.m40_c01081{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);}
.m62_c01081{transform:matrix(0.234743,-0.004460,0.004749,0.249955,0,0);-ms-transform:matrix(0.234743,-0.004460,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234743,-0.004460,0.004749,0.249955,0,0);}
.m44_c01081{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);}
.m82_c01081{transform:matrix(0.235762,-0.004479,0.004749,0.249955,0,0);-ms-transform:matrix(0.235762,-0.004479,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235762,-0.004479,0.004749,0.249955,0,0);}
.m37_c01081{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_c01081{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);}
.m75_c01081{transform:matrix(0.239362,-0.004548,0.004749,0.249955,0,0);-ms-transform:matrix(0.239362,-0.004548,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239362,-0.004548,0.004749,0.249955,0,0);}
.m26_c01081{transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239530,0.000000,0.000000,0.250000,0,0);}
.md5_c01081{transform:matrix(0.241516,-0.004347,0.004499,0.249960,0,0);-ms-transform:matrix(0.241516,-0.004347,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241516,-0.004347,0.004499,0.249960,0,0);}
.mb0_c01081{transform:matrix(0.243246,-0.005351,0.005499,0.249940,0,0);-ms-transform:matrix(0.243246,-0.005351,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243246,-0.005351,0.005499,0.249940,0,0);}
.mbf_c01081{transform:matrix(0.247445,-0.004454,0.004499,0.249960,0,0);-ms-transform:matrix(0.247445,-0.004454,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247445,-0.004454,0.004499,0.249960,0,0);}
.m92_c01081{transform:matrix(0.249450,-0.004740,0.004749,0.249955,0,0);-ms-transform:matrix(0.249450,-0.004740,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249450,-0.004740,0.004749,0.249955,0,0);}
.ma2_c01081{transform:matrix(0.251500,-0.004778,0.004749,0.249955,0,0);-ms-transform:matrix(0.251500,-0.004778,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251500,-0.004778,0.004749,0.249955,0,0);}
.m25_c01081{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);}
.m6d_c01081{transform:matrix(0.254639,-0.004838,0.004749,0.249955,0,0);-ms-transform:matrix(0.254639,-0.004838,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254639,-0.004838,0.004749,0.249955,0,0);}
.m16_c01081{transform:matrix(0.255014,-0.005355,0.005249,0.249945,0,0);-ms-transform:matrix(0.255014,-0.005355,0.005249,0.249945,0,0);-webkit-transform:matrix(0.255014,-0.005355,0.005249,0.249945,0,0);}
.mbc_c01081{transform:matrix(0.255019,-0.005100,0.004999,0.249950,0,0);-ms-transform:matrix(0.255019,-0.005100,0.004999,0.249950,0,0);-webkit-transform:matrix(0.255019,-0.005100,0.004999,0.249950,0,0);}
.m9b_c01081{transform:matrix(0.255284,-0.004850,0.004749,0.249955,0,0);-ms-transform:matrix(0.255284,-0.004850,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255284,-0.004850,0.004749,0.249955,0,0);}
.m7_c01081{transform:matrix(0.260088,-0.005462,0.005249,0.249945,0,0);-ms-transform:matrix(0.260088,-0.005462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260088,-0.005462,0.005249,0.249945,0,0);}
.m3e_c01081{transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.261557,-0.005493,0.005249,0.249945,0,0);-ms-transform:matrix(0.261557,-0.005493,0.005249,0.249945,0,0);-webkit-transform:matrix(0.261557,-0.005493,0.005249,0.249945,0,0);}
.m39_c01081{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);}
.ma6_c01081{transform:matrix(0.268497,-0.005101,0.004749,0.249955,0,0);-ms-transform:matrix(0.268497,-0.005101,0.004749,0.249955,0,0);-webkit-transform:matrix(0.268497,-0.005101,0.004749,0.249955,0,0);}
.m24_c01081{transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272165,0.000000,0.000000,0.250000,0,0);}
.m98_c01081{transform:matrix(0.272376,-0.005175,0.004749,0.249955,0,0);-ms-transform:matrix(0.272376,-0.005175,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272376,-0.005175,0.004749,0.249955,0,0);}
.ma4_c01081{transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);-ms-transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);-webkit-transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);}
.ma3_c01081{transform:matrix(0.278320,-0.005288,0.004749,0.249955,0,0);-ms-transform:matrix(0.278320,-0.005288,0.004749,0.249955,0,0);-webkit-transform:matrix(0.278320,-0.005288,0.004749,0.249955,0,0);}
.m4f_c01081{transform:matrix(0.278860,-0.005298,0.004749,0.249955,0,0);-ms-transform:matrix(0.278860,-0.005298,0.004749,0.249955,0,0);-webkit-transform:matrix(0.278860,-0.005298,0.004749,0.249955,0,0);}
.m60_c01081{transform:matrix(0.282924,-0.005376,0.004749,0.249955,0,0);-ms-transform:matrix(0.282924,-0.005376,0.004749,0.249955,0,0);-webkit-transform:matrix(0.282924,-0.005376,0.004749,0.249955,0,0);}
.mb_c01081{transform:matrix(0.286742,-0.006022,0.005249,0.249945,0,0);-ms-transform:matrix(0.286742,-0.006022,0.005249,0.249945,0,0);-webkit-transform:matrix(0.286742,-0.006022,0.005249,0.249945,0,0);}
.m57_c01081{transform:matrix(0.293062,-0.005568,0.004749,0.249955,0,0);-ms-transform:matrix(0.293062,-0.005568,0.004749,0.249955,0,0);-webkit-transform:matrix(0.293062,-0.005568,0.004749,0.249955,0,0);}
.ma7_c01081{transform:matrix(0.295757,-0.005619,0.004749,0.249955,0,0);-ms-transform:matrix(0.295757,-0.005619,0.004749,0.249955,0,0);-webkit-transform:matrix(0.295757,-0.005619,0.004749,0.249955,0,0);}
.m4a_c01081{transform:matrix(0.298531,-0.005672,0.004749,0.249955,0,0);-ms-transform:matrix(0.298531,-0.005672,0.004749,0.249955,0,0);-webkit-transform:matrix(0.298531,-0.005672,0.004749,0.249955,0,0);}
.m51_c01081{transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);-ms-transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);-webkit-transform:matrix(0.300116,-0.005702,0.004749,0.249955,0,0);}
.m7c_c01081{transform:matrix(0.300731,-0.005714,0.004749,0.249955,0,0);-ms-transform:matrix(0.300731,-0.005714,0.004749,0.249955,0,0);-webkit-transform:matrix(0.300731,-0.005714,0.004749,0.249955,0,0);}
.m1_c01081{transform:matrix(0.301931,-0.004529,0.003750,0.249972,0,0);-ms-transform:matrix(0.301931,-0.004529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301931,-0.004529,0.003750,0.249972,0,0);}
.m5f_c01081{transform:matrix(0.309874,-0.005888,0.004749,0.249955,0,0);-ms-transform:matrix(0.309874,-0.005888,0.004749,0.249955,0,0);-webkit-transform:matrix(0.309874,-0.005888,0.004749,0.249955,0,0);}
.m23_c01081{transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312225,0.000000,0.000000,0.250000,0,0);}
.m1f_c01081{transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320495,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.320964,-0.006740,0.005249,0.249945,0,0);-ms-transform:matrix(0.320964,-0.006740,0.005249,0.249945,0,0);-webkit-transform:matrix(0.320964,-0.006740,0.005249,0.249945,0,0);}
.m8_c01081{transform:matrix(0.327368,-0.006875,0.005249,0.249945,0,0);-ms-transform:matrix(0.327368,-0.006875,0.005249,0.249945,0,0);-webkit-transform:matrix(0.327368,-0.006875,0.005249,0.249945,0,0);}
.m14_c01081{transform:matrix(0.335686,-0.007049,0.005249,0.249945,0,0);-ms-transform:matrix(0.335686,-0.007049,0.005249,0.249945,0,0);-webkit-transform:matrix(0.335686,-0.007049,0.005249,0.249945,0,0);}
.m0_c01081{transform:matrix(0.338667,-0.005080,0.003750,0.249972,0,0);-ms-transform:matrix(0.338667,-0.005080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.338667,-0.005080,0.003750,0.249972,0,0);}
.m20_c01081{transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342930,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.343570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343570,0.000000,0.000000,0.250000,0,0);}
.m22_c01081{transform:matrix(0.349670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349670,0.000000,0.000000,0.250000,0,0);}
.md4_c01081{transform:matrix(0.360362,-0.006487,0.004499,0.249960,0,0);-ms-transform:matrix(0.360362,-0.006487,0.004499,0.249960,0,0);-webkit-transform:matrix(0.360362,-0.006487,0.004499,0.249960,0,0);}
.m71_c01081{transform:matrix(0.361010,-0.006859,0.004749,0.249955,0,0);-ms-transform:matrix(0.361010,-0.006859,0.004749,0.249955,0,0);-webkit-transform:matrix(0.361010,-0.006859,0.004749,0.249955,0,0);}
.ma_c01081{transform:matrix(0.364700,-0.007659,0.005249,0.249945,0,0);-ms-transform:matrix(0.364700,-0.007659,0.005249,0.249945,0,0);-webkit-transform:matrix(0.364700,-0.007659,0.005249,0.249945,0,0);}
.m1a_c01081{transform:matrix(0.376410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376410,0.000000,0.000000,0.250000,0,0);}
.m10_c01081{transform:matrix(0.376562,-0.007908,0.005249,0.249945,0,0);-ms-transform:matrix(0.376562,-0.007908,0.005249,0.249945,0,0);-webkit-transform:matrix(0.376562,-0.007908,0.005249,0.249945,0,0);}
.m61_c01081{transform:matrix(0.377157,-0.007166,0.004749,0.249955,0,0);-ms-transform:matrix(0.377157,-0.007166,0.004749,0.249955,0,0);-webkit-transform:matrix(0.377157,-0.007166,0.004749,0.249955,0,0);}
.ma5_c01081{transform:matrix(0.380416,-0.007228,0.004749,0.249955,0,0);-ms-transform:matrix(0.380416,-0.007228,0.004749,0.249955,0,0);-webkit-transform:matrix(0.380416,-0.007228,0.004749,0.249955,0,0);}
.m15_c01081{transform:matrix(0.384085,-0.008066,0.005249,0.249945,0,0);-ms-transform:matrix(0.384085,-0.008066,0.005249,0.249945,0,0);-webkit-transform:matrix(0.384085,-0.008066,0.005249,0.249945,0,0);}
.mf_c01081{transform:matrix(0.387765,-0.008143,0.005249,0.249945,0,0);-ms-transform:matrix(0.387765,-0.008143,0.005249,0.249945,0,0);-webkit-transform:matrix(0.387765,-0.008143,0.005249,0.249945,0,0);}
.mb1_c01081{transform:matrix(0.390630,-0.008594,0.005499,0.249940,0,0);-ms-transform:matrix(0.390630,-0.008594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.390630,-0.008594,0.005499,0.249940,0,0);}
.me_c01081{transform:matrix(0.395108,-0.008297,0.005249,0.249945,0,0);-ms-transform:matrix(0.395108,-0.008297,0.005249,0.249945,0,0);-webkit-transform:matrix(0.395108,-0.008297,0.005249,0.249945,0,0);}
.m87_c01081{transform:matrix(0.400593,-0.007611,0.004749,0.249955,0,0);-ms-transform:matrix(0.400593,-0.007611,0.004749,0.249955,0,0);-webkit-transform:matrix(0.400593,-0.007611,0.004749,0.249955,0,0);}
.m18_c01081{transform:matrix(0.428165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428165,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.445720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445720,0.000000,0.000000,0.250000,0,0);}
.m17_c01081{transform:matrix(0.445735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445735,0.000000,0.000000,0.250000,0,0);}
.m78_c01081{transform:matrix(0.460332,-0.008746,0.004749,0.249955,0,0);-ms-transform:matrix(0.460332,-0.008746,0.004749,0.249955,0,0);-webkit-transform:matrix(0.460332,-0.008746,0.004749,0.249955,0,0);}
.mcd_c01081{transform:matrix(0.500064,-0.009001,0.004499,0.249960,0,0);-ms-transform:matrix(0.500064,-0.009001,0.004499,0.249960,0,0);-webkit-transform:matrix(0.500064,-0.009001,0.004499,0.249960,0,0);}
.m13_c01081{transform:matrix(0.503729,-0.010578,0.005249,0.249945,0,0);-ms-transform:matrix(0.503729,-0.010578,0.005249,0.249945,0,0);-webkit-transform:matrix(0.503729,-0.010578,0.005249,0.249945,0,0);}
.m12_c01081{transform:matrix(0.542720,-0.011397,0.005249,0.249945,0,0);-ms-transform:matrix(0.542720,-0.011397,0.005249,0.249945,0,0);-webkit-transform:matrix(0.542720,-0.011397,0.005249,0.249945,0,0);}
.m72_c01081{transform:matrix(0.567623,-0.010785,0.004749,0.249955,0,0);-ms-transform:matrix(0.567623,-0.010785,0.004749,0.249955,0,0);-webkit-transform:matrix(0.567623,-0.010785,0.004749,0.249955,0,0);}
.mc4_c01081{transform:matrix(0.586800,-0.010562,0.004499,0.249960,0,0);-ms-transform:matrix(0.586800,-0.010562,0.004499,0.249960,0,0);-webkit-transform:matrix(0.586800,-0.010562,0.004499,0.249960,0,0);}
.m6f_c01081{transform:matrix(0.636160,-0.012087,0.004749,0.249955,0,0);-ms-transform:matrix(0.636160,-0.012087,0.004749,0.249955,0,0);-webkit-transform:matrix(0.636160,-0.012087,0.004749,0.249955,0,0);}
.m6b_c01081{transform:matrix(0.962741,-0.018292,0.004749,0.249955,0,0);-ms-transform:matrix(0.962741,-0.018292,0.004749,0.249955,0,0);-webkit-transform:matrix(0.962741,-0.018292,0.004749,0.249955,0,0);}
.m4_c01081{transform:matrix(1.076575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.076575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.076575,0.000000,0.000000,0.250000,0,0);}
.mbe_c01081{transform:matrix(1.109070,-0.019963,0.004499,0.249960,0,0);-ms-transform:matrix(1.109070,-0.019963,0.004499,0.249960,0,0);-webkit-transform:matrix(1.109070,-0.019963,0.004499,0.249960,0,0);}
.m3_c01081{transform:matrix(3.782140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.782140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.782140,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls0_c01081{letter-spacing:0.000000px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:0.000000px;}
.fc0_c01081{color:transparent;}
.fs1_c01081{font-size:22.050000px;}
.fs17_c01081{font-size:48.307824px;}
.fs16_c01081{font-size:50.408164px;}
.fs2_c01081{font-size:59.850000px;}
.fs8_c01081{font-size:61.950000px;}
.fs12_c01081{font-size:63.011370px;}
.fsa_c01081{font-size:64.050000px;}
.fs11_c01081{font-size:65.111749px;}
.fsd_c01081{font-size:68.262318px;}
.fs15_c01081{font-size:68.263649px;}
.fsf_c01081{font-size:69.312508px;}
.fs5_c01081{font-size:71.400000px;}
.fsc_c01081{font-size:71.412887px;}
.fs14_c01081{font-size:71.414279px;}
.fs13_c01081{font-size:71.417277px;}
.fsb_c01081{font-size:72.450000px;}
.fs9_c01081{font-size:74.550000px;}
.fs10_c01081{font-size:74.563455px;}
.fs6_c01081{font-size:75.600000px;}
.fs7_c01081{font-size:85.050000px;}
.fs4_c01081{font-size:93.470603px;}
.fse_c01081{font-size:94.517056px;}
.fs3_c01081{font-size:103.972918px;}
.fs0_c01081{font-size:126.014174px;}
.y0_c01081{bottom:0.000000px;}
.yc7_c01081{bottom:150.389811px;}
.yc8_c01081{bottom:150.717564px;}
.yc9_c01081{bottom:151.289991px;}
.yca_c01081{bottom:152.140437px;}
.ycb_c01081{bottom:153.034272px;}
.ycc_c01081{bottom:153.442809px;}
.ycd_c01081{bottom:154.376037px;}
.yce_c01081{bottom:154.964259px;}
.ycf_c01081{bottom:155.539224px;}
.yd0_c01081{bottom:155.791026px;}
.yd1_c01081{bottom:156.670362px;}
.yd2_c01081{bottom:157.215303px;}
.yd3_c01081{bottom:157.958586px;}
.yd4_c01081{bottom:158.556177px;}
.yd5_c01081{bottom:159.417045px;}
.yb9_c01081{bottom:168.492000px;}
.yba_c01081{bottom:169.674816px;}
.ybb_c01081{bottom:170.053572px;}
.ybc_c01081{bottom:170.884335px;}
.ybd_c01081{bottom:171.521427px;}
.ybe_c01081{bottom:171.998058px;}
.ybf_c01081{bottom:173.674920px;}
.yc0_c01081{bottom:173.903394px;}
.yc1_c01081{bottom:174.496557px;}
.yc2_c01081{bottom:175.439424px;}
.yc3_c01081{bottom:175.808811px;}
.yc4_c01081{bottom:176.391228px;}
.yc5_c01081{bottom:176.732508px;}
.yc6_c01081{bottom:177.374271px;}
.yb8_c01081{bottom:229.818330px;}
.yad_c01081{bottom:244.356000px;}
.yae_c01081{bottom:245.704650px;}
.yaf_c01081{bottom:246.391920px;}
.yb0_c01081{bottom:247.169790px;}
.yb1_c01081{bottom:247.726080px;}
.yb2_c01081{bottom:248.485710px;}
.yb3_c01081{bottom:249.146760px;}
.yb4_c01081{bottom:250.092210px;}
.yb5_c01081{bottom:251.245950px;}
.yb6_c01081{bottom:251.674620px;}
.yb7_c01081{bottom:252.814440px;}
.ya4_c01081{bottom:267.037500px;}
.ya5_c01081{bottom:268.267839px;}
.ya6_c01081{bottom:269.903748px;}
.ya7_c01081{bottom:270.868404px;}
.ya8_c01081{bottom:271.527579px;}
.ya9_c01081{bottom:271.971660px;}
.yaa_c01081{bottom:272.942388px;}
.yab_c01081{bottom:273.504543px;}
.yac_c01081{bottom:274.419600px;}
.y9e_c01081{bottom:287.510535px;}
.y9f_c01081{bottom:289.044164px;}
.ya0_c01081{bottom:289.509798px;}
.ya1_c01081{bottom:290.547453px;}
.ya2_c01081{bottom:291.473831px;}
.ya3_c01081{bottom:293.708880px;}
.y95_c01081{bottom:312.624798px;}
.y96_c01081{bottom:313.864730px;}
.y97_c01081{bottom:314.996523px;}
.y98_c01081{bottom:316.088601px;}
.y99_c01081{bottom:316.629843px;}
.y9a_c01081{bottom:317.501940px;}
.y9b_c01081{bottom:318.396531px;}
.y9c_c01081{bottom:319.052285px;}
.y9d_c01081{bottom:319.362099px;}
.y8c_c01081{bottom:335.849727px;}
.y8d_c01081{bottom:337.442129px;}
.y8e_c01081{bottom:337.889159px;}
.y8f_c01081{bottom:338.695425px;}
.y90_c01081{bottom:338.930816px;}
.y91_c01081{bottom:339.931383px;}
.y92_c01081{bottom:340.470984px;}
.y93_c01081{bottom:341.214074px;}
.y94_c01081{bottom:341.481081px;}
.y82_c01081{bottom:358.804959px;}
.y83_c01081{bottom:359.252343px;}
.y84_c01081{bottom:360.399671px;}
.y85_c01081{bottom:360.598065px;}
.y86_c01081{bottom:361.595246px;}
.y87_c01081{bottom:362.484371px;}
.y88_c01081{bottom:362.925342px;}
.y89_c01081{bottom:363.755703px;}
.y8a_c01081{bottom:364.400399px;}
.y8b_c01081{bottom:364.952988px;}
.y81_c01081{bottom:385.300081px;}
.y76_c01081{bottom:403.633934px;}
.y77_c01081{bottom:404.408702px;}
.y78_c01081{bottom:404.933487px;}
.y79_c01081{bottom:405.776201px;}
.y7a_c01081{bottom:406.504263px;}
.y7b_c01081{bottom:407.488938px;}
.y7c_c01081{bottom:408.236862px;}
.y7d_c01081{bottom:408.851916px;}
.y7e_c01081{bottom:410.242821px;}
.y7f_c01081{bottom:410.783403px;}
.y80_c01081{bottom:411.148161px;}
.y6b_c01081{bottom:426.860231px;}
.y6c_c01081{bottom:427.471773px;}
.y6d_c01081{bottom:428.194762px;}
.y6e_c01081{bottom:428.528049px;}
.y6f_c01081{bottom:430.052464px;}
.y70_c01081{bottom:431.514878px;}
.y71_c01081{bottom:432.084015px;}
.y72_c01081{bottom:433.014006px;}
.y73_c01081{bottom:433.999587px;}
.y74_c01081{bottom:434.654332px;}
.y75_c01081{bottom:435.199426px;}
.y65_c01081{bottom:449.020225px;}
.y66_c01081{bottom:452.004732px;}
.y67_c01081{bottom:452.570856px;}
.y68_c01081{bottom:453.137578px;}
.y69_c01081{bottom:453.271287px;}
.y6a_c01081{bottom:457.033884px;}
.y58_c01081{bottom:471.679390px;}
.y59_c01081{bottom:472.299792px;}
.y5a_c01081{bottom:473.716173px;}
.y5b_c01081{bottom:474.474346px;}
.y5c_c01081{bottom:474.593501px;}
.y5d_c01081{bottom:475.220389px;}
.y5e_c01081{bottom:476.189810px;}
.y5f_c01081{bottom:476.300624px;}
.y60_c01081{bottom:477.387487px;}
.y61_c01081{bottom:477.925486px;}
.y62_c01081{bottom:478.877400px;}
.y63_c01081{bottom:479.454733px;}
.y64_c01081{bottom:479.945760px;}
.y50_c01081{bottom:494.367123px;}
.y51_c01081{bottom:495.160380px;}
.y52_c01081{bottom:496.357010px;}
.y53_c01081{bottom:497.410521px;}
.y54_c01081{bottom:498.853621px;}
.y55_c01081{bottom:500.019663px;}
.y56_c01081{bottom:500.549805px;}
.y57_c01081{bottom:501.135291px;}
.y48_c01081{bottom:517.050981px;}
.y49_c01081{bottom:517.567738px;}
.y4a_c01081{bottom:518.481352px;}
.y4b_c01081{bottom:518.858839px;}
.y4c_c01081{bottom:519.771399px;}
.y4d_c01081{bottom:521.049657px;}
.y4e_c01081{bottom:522.312422px;}
.y4f_c01081{bottom:522.977854px;}
.y41_c01081{bottom:542.742000px;}
.y42_c01081{bottom:543.339103px;}
.y43_c01081{bottom:544.144770px;}
.y44_c01081{bottom:544.965513px;}
.y45_c01081{bottom:545.776737px;}
.y46_c01081{bottom:546.234874px;}
.y47_c01081{bottom:547.026604px;}
.y38_c01081{bottom:563.227500px;}
.y39_c01081{bottom:564.702000px;}
.y3a_c01081{bottom:565.114500px;}
.y3b_c01081{bottom:565.779000px;}
.y3c_c01081{bottom:566.676000px;}
.y3d_c01081{bottom:567.225000px;}
.y3e_c01081{bottom:568.212000px;}
.y3f_c01081{bottom:568.839000px;}
.y40_c01081{bottom:570.561000px;}
.y2e_c01081{bottom:585.907500px;}
.y2f_c01081{bottom:587.335500px;}
.y30_c01081{bottom:588.208500px;}
.y31_c01081{bottom:588.844500px;}
.y32_c01081{bottom:590.574000px;}
.y33_c01081{bottom:591.073500px;}
.y34_c01081{bottom:591.735000px;}
.y35_c01081{bottom:592.512000px;}
.y36_c01081{bottom:592.867500px;}
.y37_c01081{bottom:593.275500px;}
.y24_c01081{bottom:609.396000px;}
.y25_c01081{bottom:609.783000px;}
.y26_c01081{bottom:610.656000px;}
.y27_c01081{bottom:611.505000px;}
.y28_c01081{bottom:611.998500px;}
.y29_c01081{bottom:613.272000px;}
.y2a_c01081{bottom:613.612500px;}
.y2b_c01081{bottom:614.878500px;}
.y2c_c01081{bottom:616.179000px;}
.y2d_c01081{bottom:617.290500px;}
.y23_c01081{bottom:638.580000px;}
.y1d_c01081{bottom:655.027500px;}
.y1e_c01081{bottom:656.893500px;}
.y1f_c01081{bottom:657.330000px;}
.y20_c01081{bottom:657.784500px;}
.y21_c01081{bottom:659.590500px;}
.y22_c01081{bottom:659.941500px;}
.y17_c01081{bottom:676.629000px;}
.y18_c01081{bottom:677.511000px;}
.y19_c01081{bottom:678.186000px;}
.y1a_c01081{bottom:678.972000px;}
.y1c_c01081{bottom:680.437500px;}
.y1b_c01081{bottom:680.517000px;}
.y16_c01081{bottom:703.353000px;}
.yb_c01081{bottom:740.565609px;}
.yc_c01081{bottom:741.529593px;}
.yd_c01081{bottom:743.503432px;}
.ye_c01081{bottom:744.212698px;}
.yf_c01081{bottom:744.752488px;}
.y10_c01081{bottom:745.385194px;}
.y11_c01081{bottom:745.896520px;}
.y12_c01081{bottom:746.540251px;}
.y13_c01081{bottom:747.225621px;}
.y14_c01081{bottom:747.533034px;}
.y15_c01081{bottom:748.302196px;}
.y5_c01081{bottom:787.870500px;}
.y6_c01081{bottom:788.806900px;}
.y7_c01081{bottom:789.420205px;}
.y8_c01081{bottom:790.145934px;}
.y9_c01081{bottom:790.617268px;}
.ya_c01081{bottom:791.991015px;}
.y4_c01081{bottom:809.869500px;}
.y3_c01081{bottom:834.157500px;}
.y1_c01081{bottom:855.618000px;}
.y2_c01081{bottom:857.907915px;}
.h3_c01081{height:22.050000px;}
.h19_c01081{height:48.307824px;}
.h18_c01081{height:50.408164px;}
.h4_c01081{height:59.850000px;}
.ha_c01081{height:61.950000px;}
.h14_c01081{height:63.011370px;}
.hc_c01081{height:64.050000px;}
.h13_c01081{height:65.111749px;}
.hf_c01081{height:68.262318px;}
.h17_c01081{height:68.263649px;}
.h11_c01081{height:69.312508px;}
.h7_c01081{height:71.400000px;}
.he_c01081{height:71.412887px;}
.h16_c01081{height:71.414279px;}
.h15_c01081{height:71.417277px;}
.hd_c01081{height:72.450000px;}
.hb_c01081{height:74.550000px;}
.h12_c01081{height:74.563455px;}
.h8_c01081{height:75.600000px;}
.h9_c01081{height:85.050000px;}
.h6_c01081{height:93.470603px;}
.h10_c01081{height:94.517056px;}
.h5_c01081{height:103.972918px;}
.h2_c01081{height:126.014174px;}
.h0_c01081{height:1008.450000px;}
.h1_c01081{height:1008.750000px;}
.w0_c01081{width:711.720000px;}
.w1_c01081{width:711.750000px;}
.x0_c01081{left:0.000000px;}
.x79_c01081{left:69.751500px;}
.x82_c01081{left:88.275336px;}
.x83_c01081{left:120.076836px;}
.x7a_c01081{left:135.463500px;}
.x51_c01081{left:146.222378px;}
.x2e_c01081{left:149.665500px;}
.x19_c01081{left:150.825000px;}
.x4b_c01081{left:152.829393px;}
.x5d_c01081{left:154.135205px;}
.x6e_c01081{left:155.583000px;}
.x1f_c01081{left:166.609500px;}
.x27_c01081{left:168.756000px;}
.xc_c01081{left:175.872642px;}
.x4c_c01081{left:179.795841px;}
.x55_c01081{left:181.646934px;}
.x1a_c01081{left:184.744500px;}
.x45_c01081{left:186.816180px;}
.x68_c01081{left:202.125579px;}
.x1_c01081{left:203.434500px;}
.x6_c01081{left:207.900000px;}
.x2f_c01081{left:209.134500px;}
.x1b_c01081{left:210.688500px;}
.x37_c01081{left:213.763500px;}
.x56_c01081{left:216.066123px;}
.xd_c01081{left:217.774878px;}
.x72_c01081{left:221.866500px;}
.x5e_c01081{left:230.090826px;}
.x38_c01081{left:231.691500px;}
.x41_c01081{left:236.434478px;}
.x7b_c01081{left:238.053000px;}
.x5f_c01081{left:239.505956px;}
.x1c_c01081{left:240.928500px;}
.x46_c01081{left:243.794514px;}
.x30_c01081{left:245.485500px;}
.x28_c01081{left:247.083000px;}
.x7_c01081{left:252.955500px;}
.x73_c01081{left:256.230000px;}
.x39_c01081{left:260.598000px;}
.x20_c01081{left:264.834000px;}
.x29_c01081{left:269.512500px;}
.x31_c01081{left:271.962000px;}
.x16_c01081{left:274.860000px;}
.x5a_c01081{left:276.789507px;}
.x42_c01081{left:279.883324px;}
.x8_c01081{left:282.160500px;}
.x3e_c01081{left:283.927500px;}
.x6f_c01081{left:285.867000px;}
.x21_c01081{left:287.785500px;}
.x84_c01081{left:291.523836px;}
.x47_c01081{left:293.951104px;}
.x52_c01081{left:295.483056px;}
.x1e_c01081{left:297.246000px;}
.x1d_c01081{left:300.330000px;}
.xe_c01081{left:303.620787px;}
.x4d_c01081{left:306.738679px;}
.x65_c01081{left:310.387535px;}
.x22_c01081{left:311.731500px;}
.x6c_c01081{left:312.789591px;}
.x3f_c01081{left:315.354000px;}
.x9_c01081{left:316.719000px;}
.x5b_c01081{left:319.611258px;}
.x3a_c01081{left:323.481000px;}
.x2a_c01081{left:327.421500px;}
.x60_c01081{left:329.387064px;}
.xf_c01081{left:334.465496px;}
.xa_c01081{left:339.163500px;}
.x43_c01081{left:340.763016px;}
.x2b_c01081{left:342.922500px;}
.x32_c01081{left:344.004000px;}
.x4e_c01081{left:348.915488px;}
.x61_c01081{left:350.384766px;}
.x53_c01081{left:352.105473px;}
.x4f_c01081{left:353.721117px;}
.x2_c01081{left:356.095500px;}
.x10_c01081{left:357.954519px;}
.x70_c01081{left:359.677500px;}
.x74_c01081{left:360.919500px;}
.x48_c01081{left:362.637982px;}
.x33_c01081{left:364.801500px;}
.x3b_c01081{left:366.412500px;}
.x69_c01081{left:367.495674px;}
.x7c_c01081{left:370.384500px;}
.x17_c01081{left:373.950000px;}
.x24_c01081{left:379.350000px;}
.x11_c01081{left:385.439353px;}
.x62_c01081{left:389.902256px;}
.x34_c01081{left:392.352000px;}
.x3c_c01081{left:393.675000px;}
.x18_c01081{left:400.680000px;}
.x7d_c01081{left:403.338000px;}
.xb_c01081{left:404.580000px;}
.x12_c01081{left:407.644408px;}
.x66_c01081{left:409.050416px;}
.x49_c01081{left:418.164374px;}
.x63_c01081{left:420.595587px;}
.x25_c01081{left:422.550000px;}
.x71_c01081{left:423.987000px;}
.x23_c01081{left:425.248500px;}
.x44_c01081{left:432.612039px;}
.x13_c01081{left:435.654243px;}
.x6a_c01081{left:437.957156px;}
.x35_c01081{left:439.587000px;}
.x75_c01081{left:441.244500px;}
.x40_c01081{left:443.650500px;}
.x57_c01081{left:445.543902px;}
.x64_c01081{left:446.915090px;}
.x85_c01081{left:449.260836px;}
.x67_c01081{left:450.371714px;}
.x6b_c01081{left:452.051858px;}
.x36_c01081{left:456.613500px;}
.x2c_c01081{left:459.559500px;}
.x5c_c01081{left:462.835371px;}
.x3_c01081{left:465.480000px;}
.x4_c01081{left:466.560000px;}
.x3d_c01081{left:468.525000px;}
.x4a_c01081{left:471.274350px;}
.x7e_c01081{left:476.241000px;}
.x14_c01081{left:478.784916px;}
.x6d_c01081{left:487.750976px;}
.x50_c01081{left:490.900715px;}
.x26_c01081{left:493.290000px;}
.x76_c01081{left:498.931500px;}
.x7f_c01081{left:508.597500px;}
.x2d_c01081{left:510.099000px;}
.x15_c01081{left:512.195999px;}
.x77_c01081{left:520.365000px;}
.x58_c01081{left:523.584409px;}
.x80_c01081{left:527.557500px;}
.x54_c01081{left:546.986296px;}
.x59_c01081{left:549.509412px;}
.x81_c01081{left:563.211000px;}
.x5_c01081{left:570.510000px;}
.x86_c01081{left:571.579836px;}
.x78_c01081{left:577.356000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls0_c01081{letter-spacing:0.000000pt;}
.ws0_c01081{word-spacing:0.000000pt;}
.fs1_c01081{font-size:19.600000pt;}
.fs17_c01081{font-size:42.940288pt;}
.fs16_c01081{font-size:44.807257pt;}
.fs2_c01081{font-size:53.200000pt;}
.fs8_c01081{font-size:55.066667pt;}
.fs12_c01081{font-size:56.010107pt;}
.fsa_c01081{font-size:56.933333pt;}
.fs11_c01081{font-size:57.877111pt;}
.fsd_c01081{font-size:60.677616pt;}
.fs15_c01081{font-size:60.678799pt;}
.fsf_c01081{font-size:61.611118pt;}
.fs5_c01081{font-size:63.466667pt;}
.fsc_c01081{font-size:63.478121pt;}
.fs14_c01081{font-size:63.479359pt;}
.fs13_c01081{font-size:63.482024pt;}
.fsb_c01081{font-size:64.400000pt;}
.fs9_c01081{font-size:66.266667pt;}
.fs10_c01081{font-size:66.278627pt;}
.fs6_c01081{font-size:67.200000pt;}
.fs7_c01081{font-size:75.600000pt;}
.fs4_c01081{font-size:83.084981pt;}
.fse_c01081{font-size:84.015161pt;}
.fs3_c01081{font-size:92.420372pt;}
.fs0_c01081{font-size:112.012599pt;}
.y0_c01081{bottom:0.000000pt;}
.yc7_c01081{bottom:133.679832pt;}
.yc8_c01081{bottom:133.971168pt;}
.yc9_c01081{bottom:134.479992pt;}
.yca_c01081{bottom:135.235944pt;}
.ycb_c01081{bottom:136.030464pt;}
.ycc_c01081{bottom:136.393608pt;}
.ycd_c01081{bottom:137.223144pt;}
.yce_c01081{bottom:137.746008pt;}
.ycf_c01081{bottom:138.257088pt;}
.yd0_c01081{bottom:138.480912pt;}
.yd1_c01081{bottom:139.262544pt;}
.yd2_c01081{bottom:139.746936pt;}
.yd3_c01081{bottom:140.407632pt;}
.yd4_c01081{bottom:140.938824pt;}
.yd5_c01081{bottom:141.704040pt;}
.yb9_c01081{bottom:149.770667pt;}
.yba_c01081{bottom:150.822059pt;}
.ybb_c01081{bottom:151.158731pt;}
.ybc_c01081{bottom:151.897187pt;}
.ybd_c01081{bottom:152.463491pt;}
.ybe_c01081{bottom:152.887163pt;}
.ybf_c01081{bottom:154.377707pt;}
.yc0_c01081{bottom:154.580795pt;}
.yc1_c01081{bottom:155.108051pt;}
.yc2_c01081{bottom:155.946155pt;}
.yc3_c01081{bottom:156.274499pt;}
.yc4_c01081{bottom:156.792203pt;}
.yc5_c01081{bottom:157.095563pt;}
.yc6_c01081{bottom:157.666019pt;}
.yb8_c01081{bottom:204.282960pt;}
.yad_c01081{bottom:217.205333pt;}
.yae_c01081{bottom:218.404133pt;}
.yaf_c01081{bottom:219.015040pt;}
.yb0_c01081{bottom:219.706480pt;}
.yb1_c01081{bottom:220.200960pt;}
.yb2_c01081{bottom:220.876187pt;}
.yb3_c01081{bottom:221.463787pt;}
.yb4_c01081{bottom:222.304187pt;}
.yb5_c01081{bottom:223.329733pt;}
.yb6_c01081{bottom:223.710773pt;}
.yb7_c01081{bottom:224.723947pt;}
.ya4_c01081{bottom:237.366667pt;}
.ya5_c01081{bottom:238.460301pt;}
.ya6_c01081{bottom:239.914443pt;}
.ya7_c01081{bottom:240.771915pt;}
.ya8_c01081{bottom:241.357848pt;}
.ya9_c01081{bottom:241.752587pt;}
.yaa_c01081{bottom:242.615456pt;}
.yab_c01081{bottom:243.115149pt;}
.yac_c01081{bottom:243.928533pt;}
.y9e_c01081{bottom:255.564920pt;}
.y9f_c01081{bottom:256.928145pt;}
.ya0_c01081{bottom:257.342043pt;}
.ya1_c01081{bottom:258.264403pt;}
.ya2_c01081{bottom:259.087849pt;}
.ya3_c01081{bottom:261.074560pt;}
.y95_c01081{bottom:277.888709pt;}
.y96_c01081{bottom:278.990871pt;}
.y97_c01081{bottom:279.996909pt;}
.y98_c01081{bottom:280.967645pt;}
.y99_c01081{bottom:281.448749pt;}
.y9a_c01081{bottom:282.223947pt;}
.y9b_c01081{bottom:283.019139pt;}
.y9c_c01081{bottom:283.602031pt;}
.y9d_c01081{bottom:283.877421pt;}
.y8c_c01081{bottom:298.533091pt;}
.y8d_c01081{bottom:299.948559pt;}
.y8e_c01081{bottom:300.345919pt;}
.y8f_c01081{bottom:301.062600pt;}
.y90_c01081{bottom:301.271836pt;}
.y91_c01081{bottom:302.161229pt;}
.y92_c01081{bottom:302.640875pt;}
.y93_c01081{bottom:303.301399pt;}
.y94_c01081{bottom:303.538739pt;}
.y82_c01081{bottom:318.937741pt;}
.y83_c01081{bottom:319.335416pt;}
.y84_c01081{bottom:320.355263pt;}
.y85_c01081{bottom:320.531613pt;}
.y86_c01081{bottom:321.417996pt;}
.y87_c01081{bottom:322.208329pt;}
.y88_c01081{bottom:322.600304pt;}
.y89_c01081{bottom:323.338403pt;}
.y8a_c01081{bottom:323.911465pt;}
.y8b_c01081{bottom:324.402656pt;}
.y81_c01081{bottom:342.488961pt;}
.y76_c01081{bottom:358.785719pt;}
.y77_c01081{bottom:359.474401pt;}
.y78_c01081{bottom:359.940877pt;}
.y79_c01081{bottom:360.689956pt;}
.y7a_c01081{bottom:361.337123pt;}
.y7b_c01081{bottom:362.212389pt;}
.y7c_c01081{bottom:362.877211pt;}
.y7d_c01081{bottom:363.423925pt;}
.y7e_c01081{bottom:364.660285pt;}
.y7f_c01081{bottom:365.140803pt;}
.y80_c01081{bottom:365.465032pt;}
.y6b_c01081{bottom:379.431316pt;}
.y6c_c01081{bottom:379.974909pt;}
.y6d_c01081{bottom:380.617567pt;}
.y6e_c01081{bottom:380.913821pt;}
.y6f_c01081{bottom:382.268857pt;}
.y70_c01081{bottom:383.568780pt;}
.y71_c01081{bottom:384.074680pt;}
.y72_c01081{bottom:384.901339pt;}
.y73_c01081{bottom:385.777411pt;}
.y74_c01081{bottom:386.359407pt;}
.y75_c01081{bottom:386.843935pt;}
.y65_c01081{bottom:399.129089pt;}
.y66_c01081{bottom:401.781984pt;}
.y67_c01081{bottom:402.285205pt;}
.y68_c01081{bottom:402.788959pt;}
.y69_c01081{bottom:402.907811pt;}
.y6a_c01081{bottom:406.252341pt;}
.y58_c01081{bottom:419.270569pt;}
.y59_c01081{bottom:419.822037pt;}
.y5a_c01081{bottom:421.081043pt;}
.y5b_c01081{bottom:421.754975pt;}
.y5c_c01081{bottom:421.860889pt;}
.y5d_c01081{bottom:422.418124pt;}
.y5e_c01081{bottom:423.279831pt;}
.y5f_c01081{bottom:423.378332pt;}
.y60_c01081{bottom:424.344433pt;}
.y61_c01081{bottom:424.822655pt;}
.y62_c01081{bottom:425.668800pt;}
.y63_c01081{bottom:426.181985pt;}
.y64_c01081{bottom:426.618453pt;}
.y50_c01081{bottom:439.437443pt;}
.y51_c01081{bottom:440.142560pt;}
.y52_c01081{bottom:441.206231pt;}
.y53_c01081{bottom:442.142685pt;}
.y54_c01081{bottom:443.425441pt;}
.y55_c01081{bottom:444.461923pt;}
.y56_c01081{bottom:444.933160pt;}
.y57_c01081{bottom:445.453592pt;}
.y48_c01081{bottom:459.600872pt;}
.y49_c01081{bottom:460.060212pt;}
.y4a_c01081{bottom:460.872313pt;}
.y4b_c01081{bottom:461.207857pt;}
.y4c_c01081{bottom:462.019021pt;}
.y4d_c01081{bottom:463.155251pt;}
.y4e_c01081{bottom:464.277708pt;}
.y4f_c01081{bottom:464.869204pt;}
.y41_c01081{bottom:482.437333pt;}
.y42_c01081{bottom:482.968092pt;}
.y43_c01081{bottom:483.684240pt;}
.y44_c01081{bottom:484.413789pt;}
.y45_c01081{bottom:485.134877pt;}
.y46_c01081{bottom:485.542111pt;}
.y47_c01081{bottom:486.245871pt;}
.y38_c01081{bottom:500.646667pt;}
.y39_c01081{bottom:501.957333pt;}
.y3a_c01081{bottom:502.324000pt;}
.y3b_c01081{bottom:502.914667pt;}
.y3c_c01081{bottom:503.712000pt;}
.y3d_c01081{bottom:504.200000pt;}
.y3e_c01081{bottom:505.077333pt;}
.y3f_c01081{bottom:505.634667pt;}
.y40_c01081{bottom:507.165333pt;}
.y2e_c01081{bottom:520.806667pt;}
.y2f_c01081{bottom:522.076000pt;}
.y30_c01081{bottom:522.852000pt;}
.y31_c01081{bottom:523.417333pt;}
.y32_c01081{bottom:524.954667pt;}
.y33_c01081{bottom:525.398667pt;}
.y34_c01081{bottom:525.986667pt;}
.y35_c01081{bottom:526.677333pt;}
.y36_c01081{bottom:526.993333pt;}
.y37_c01081{bottom:527.356000pt;}
.y24_c01081{bottom:541.685333pt;}
.y25_c01081{bottom:542.029333pt;}
.y26_c01081{bottom:542.805333pt;}
.y27_c01081{bottom:543.560000pt;}
.y28_c01081{bottom:543.998667pt;}
.y29_c01081{bottom:545.130667pt;}
.y2a_c01081{bottom:545.433333pt;}
.y2b_c01081{bottom:546.558667pt;}
.y2c_c01081{bottom:547.714667pt;}
.y2d_c01081{bottom:548.702667pt;}
.y23_c01081{bottom:567.626667pt;}
.y1d_c01081{bottom:582.246667pt;}
.y1e_c01081{bottom:583.905333pt;}
.y1f_c01081{bottom:584.293333pt;}
.y20_c01081{bottom:584.697333pt;}
.y21_c01081{bottom:586.302667pt;}
.y22_c01081{bottom:586.614667pt;}
.y17_c01081{bottom:601.448000pt;}
.y18_c01081{bottom:602.232000pt;}
.y19_c01081{bottom:602.832000pt;}
.y1a_c01081{bottom:603.530667pt;}
.y1c_c01081{bottom:604.833333pt;}
.y1b_c01081{bottom:604.904000pt;}
.y16_c01081{bottom:625.202667pt;}
.yb_c01081{bottom:658.280541pt;}
.yc_c01081{bottom:659.137416pt;}
.yd_c01081{bottom:660.891940pt;}
.ye_c01081{bottom:661.522399pt;}
.yf_c01081{bottom:662.002212pt;}
.y10_c01081{bottom:662.564617pt;}
.y11_c01081{bottom:663.019129pt;}
.y12_c01081{bottom:663.591335pt;}
.y13_c01081{bottom:664.200552pt;}
.y14_c01081{bottom:664.473808pt;}
.y15_c01081{bottom:665.157508pt;}
.y5_c01081{bottom:700.329333pt;}
.y6_c01081{bottom:701.161689pt;}
.y7_c01081{bottom:701.706849pt;}
.y8_c01081{bottom:702.351941pt;}
.y9_c01081{bottom:702.770905pt;}
.ya_c01081{bottom:703.992013pt;}
.y4_c01081{bottom:719.884000pt;}
.y3_c01081{bottom:741.473333pt;}
.y1_c01081{bottom:760.549333pt;}
.y2_c01081{bottom:762.584813pt;}
.h3_c01081{height:19.600000pt;}
.h19_c01081{height:42.940288pt;}
.h18_c01081{height:44.807257pt;}
.h4_c01081{height:53.200000pt;}
.ha_c01081{height:55.066667pt;}
.h14_c01081{height:56.010107pt;}
.hc_c01081{height:56.933333pt;}
.h13_c01081{height:57.877111pt;}
.hf_c01081{height:60.677616pt;}
.h17_c01081{height:60.678799pt;}
.h11_c01081{height:61.611118pt;}
.h7_c01081{height:63.466667pt;}
.he_c01081{height:63.478121pt;}
.h16_c01081{height:63.479359pt;}
.h15_c01081{height:63.482024pt;}
.hd_c01081{height:64.400000pt;}
.hb_c01081{height:66.266667pt;}
.h12_c01081{height:66.278627pt;}
.h8_c01081{height:67.200000pt;}
.h9_c01081{height:75.600000pt;}
.h6_c01081{height:83.084981pt;}
.h10_c01081{height:84.015161pt;}
.h5_c01081{height:92.420372pt;}
.h2_c01081{height:112.012599pt;}
.h0_c01081{height:896.400000pt;}
.h1_c01081{height:896.666667pt;}
.w0_c01081{width:632.640000pt;}
.w1_c01081{width:632.666667pt;}
.x0_c01081{left:0.000000pt;}
.x79_c01081{left:62.001333pt;}
.x82_c01081{left:78.466965pt;}
.x83_c01081{left:106.734965pt;}
.x7a_c01081{left:120.412000pt;}
.x51_c01081{left:129.975447pt;}
.x2e_c01081{left:133.036000pt;}
.x19_c01081{left:134.066667pt;}
.x4b_c01081{left:135.848349pt;}
.x5d_c01081{left:137.009071pt;}
.x6e_c01081{left:138.296000pt;}
.x1f_c01081{left:148.097333pt;}
.x27_c01081{left:150.005333pt;}
.xc_c01081{left:156.331237pt;}
.x4c_c01081{left:159.818525pt;}
.x55_c01081{left:161.463941pt;}
.x1a_c01081{left:164.217333pt;}
.x45_c01081{left:166.058827pt;}
.x68_c01081{left:179.667181pt;}
.x1_c01081{left:180.830667pt;}
.x6_c01081{left:184.800000pt;}
.x2f_c01081{left:185.897333pt;}
.x1b_c01081{left:187.278667pt;}
.x37_c01081{left:190.012000pt;}
.x56_c01081{left:192.058776pt;}
.xd_c01081{left:193.577669pt;}
.x72_c01081{left:197.214667pt;}
.x5e_c01081{left:204.525179pt;}
.x38_c01081{left:205.948000pt;}
.x41_c01081{left:210.163980pt;}
.x7b_c01081{left:211.602667pt;}
.x5f_c01081{left:212.894183pt;}
.x1c_c01081{left:214.158667pt;}
.x46_c01081{left:216.706235pt;}
.x30_c01081{left:218.209333pt;}
.x28_c01081{left:219.629333pt;}
.x7_c01081{left:224.849333pt;}
.x73_c01081{left:227.760000pt;}
.x39_c01081{left:231.642667pt;}
.x20_c01081{left:235.408000pt;}
.x29_c01081{left:239.566667pt;}
.x31_c01081{left:241.744000pt;}
.x16_c01081{left:244.320000pt;}
.x5a_c01081{left:246.035117pt;}
.x42_c01081{left:248.785177pt;}
.x8_c01081{left:250.809333pt;}
.x3e_c01081{left:252.380000pt;}
.x6f_c01081{left:254.104000pt;}
.x21_c01081{left:255.809333pt;}
.x84_c01081{left:259.132299pt;}
.x47_c01081{left:261.289871pt;}
.x52_c01081{left:262.651605pt;}
.x1e_c01081{left:264.218667pt;}
.x1d_c01081{left:266.960000pt;}
.xe_c01081{left:269.885144pt;}
.x4d_c01081{left:272.656604pt;}
.x65_c01081{left:275.900031pt;}
.x22_c01081{left:277.094667pt;}
.x6c_c01081{left:278.035192pt;}
.x3f_c01081{left:280.314667pt;}
.x9_c01081{left:281.528000pt;}
.x5b_c01081{left:284.098896pt;}
.x3a_c01081{left:287.538667pt;}
.x2a_c01081{left:291.041333pt;}
.x60_c01081{left:292.788501pt;}
.xf_c01081{left:297.302663pt;}
.xa_c01081{left:301.478667pt;}
.x43_c01081{left:302.900459pt;}
.x2b_c01081{left:304.820000pt;}
.x32_c01081{left:305.781333pt;}
.x4e_c01081{left:310.147100pt;}
.x61_c01081{left:311.453125pt;}
.x53_c01081{left:312.982643pt;}
.x4f_c01081{left:314.418771pt;}
.x2_c01081{left:316.529333pt;}
.x10_c01081{left:318.181795pt;}
.x70_c01081{left:319.713333pt;}
.x74_c01081{left:320.817333pt;}
.x48_c01081{left:322.344873pt;}
.x33_c01081{left:324.268000pt;}
.x3b_c01081{left:325.700000pt;}
.x69_c01081{left:326.662821pt;}
.x7c_c01081{left:329.230667pt;}
.x17_c01081{left:332.400000pt;}
.x24_c01081{left:337.200000pt;}
.x11_c01081{left:342.612759pt;}
.x62_c01081{left:346.579783pt;}
.x34_c01081{left:348.757333pt;}
.x3c_c01081{left:349.933333pt;}
.x18_c01081{left:356.160000pt;}
.x7d_c01081{left:358.522667pt;}
.xb_c01081{left:359.626667pt;}
.x12_c01081{left:362.350585pt;}
.x66_c01081{left:363.600369pt;}
.x49_c01081{left:371.701665pt;}
.x63_c01081{left:373.862744pt;}
.x25_c01081{left:375.600000pt;}
.x71_c01081{left:376.877333pt;}
.x23_c01081{left:377.998667pt;}
.x44_c01081{left:384.544035pt;}
.x13_c01081{left:387.248216pt;}
.x6a_c01081{left:389.295249pt;}
.x35_c01081{left:390.744000pt;}
.x75_c01081{left:392.217333pt;}
.x40_c01081{left:394.356000pt;}
.x57_c01081{left:396.039024pt;}
.x64_c01081{left:397.257857pt;}
.x85_c01081{left:399.342965pt;}
.x67_c01081{left:400.330412pt;}
.x6b_c01081{left:401.823873pt;}
.x36_c01081{left:405.878667pt;}
.x2c_c01081{left:408.497333pt;}
.x5c_c01081{left:411.409219pt;}
.x3_c01081{left:413.760000pt;}
.x4_c01081{left:414.720000pt;}
.x3d_c01081{left:416.466667pt;}
.x4a_c01081{left:418.910533pt;}
.x7e_c01081{left:423.325333pt;}
.x14_c01081{left:425.586592pt;}
.x6d_c01081{left:433.556423pt;}
.x50_c01081{left:436.356191pt;}
.x26_c01081{left:438.480000pt;}
.x76_c01081{left:443.494667pt;}
.x7f_c01081{left:452.086667pt;}
.x2d_c01081{left:453.421333pt;}
.x15_c01081{left:455.285332pt;}
.x77_c01081{left:462.546667pt;}
.x58_c01081{left:465.408364pt;}
.x80_c01081{left:468.940000pt;}
.x54_c01081{left:486.210041pt;}
.x59_c01081{left:488.452811pt;}
.x81_c01081{left:500.632000pt;}
.x5_c01081{left:507.120000pt;}
.x86_c01081{left:508.070965pt;}
.x78_c01081{left:513.205333pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c01082{transform:matrix(0.018808,-0.000263,0.003500,0.249976,0,0);-ms-transform:matrix(0.018808,-0.000263,0.003500,0.249976,0,0);-webkit-transform:matrix(0.018808,-0.000263,0.003500,0.249976,0,0);}
.m4_c01082{transform:matrix(0.031920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031920,0.000000,0.000000,0.250000,0,0);}
.m78_c01082{transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034850,0.000000,0.000000,0.250000,0,0);}
.m7a_c01082{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);}
.m64_c01082{transform:matrix(0.040066,-0.000561,0.003500,0.249976,0,0);-ms-transform:matrix(0.040066,-0.000561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.040066,-0.000561,0.003500,0.249976,0,0);}
.m85_c01082{transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042800,0.000000,0.000000,0.250000,0,0);}
.ma_c01082{transform:matrix(0.046175,-0.000646,0.003500,0.249976,0,0);-ms-transform:matrix(0.046175,-0.000646,0.003500,0.249976,0,0);-webkit-transform:matrix(0.046175,-0.000646,0.003500,0.249976,0,0);}
.m2_c01082{transform:matrix(0.081485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081485,0.000000,0.000000,0.250000,0,0);}
.m91_c01082{transform:matrix(0.130225,-0.001953,0.003750,0.249972,0,0);-ms-transform:matrix(0.130225,-0.001953,0.003750,0.249972,0,0);-webkit-transform:matrix(0.130225,-0.001953,0.003750,0.249972,0,0);}
.m6a_c01082{transform:matrix(0.145826,-0.002042,0.003500,0.249976,0,0);-ms-transform:matrix(0.145826,-0.002042,0.003500,0.249976,0,0);-webkit-transform:matrix(0.145826,-0.002042,0.003500,0.249976,0,0);}
.m34_c01082{transform:matrix(0.148405,-0.002078,0.003500,0.249976,0,0);-ms-transform:matrix(0.148405,-0.002078,0.003500,0.249976,0,0);-webkit-transform:matrix(0.148405,-0.002078,0.003500,0.249976,0,0);}
.m68_c01082{transform:matrix(0.152235,-0.002131,0.003500,0.249976,0,0);-ms-transform:matrix(0.152235,-0.002131,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152235,-0.002131,0.003500,0.249976,0,0);}
.m60_c01082{transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);-ms-transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152730,-0.002138,0.003500,0.249976,0,0);}
.m30_c01082{transform:matrix(0.154775,-0.002167,0.003500,0.249976,0,0);-ms-transform:matrix(0.154775,-0.002167,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154775,-0.002167,0.003500,0.249976,0,0);}
.m89_c01082{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.m72_c01082{transform:matrix(0.156185,-0.002187,0.003500,0.249976,0,0);-ms-transform:matrix(0.156185,-0.002187,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156185,-0.002187,0.003500,0.249976,0,0);}
.m3e_c01082{transform:matrix(0.156945,-0.002197,0.003500,0.249976,0,0);-ms-transform:matrix(0.156945,-0.002197,0.003500,0.249976,0,0);-webkit-transform:matrix(0.156945,-0.002197,0.003500,0.249976,0,0);}
.m32_c01082{transform:matrix(0.157810,-0.002209,0.003500,0.249976,0,0);-ms-transform:matrix(0.157810,-0.002209,0.003500,0.249976,0,0);-webkit-transform:matrix(0.157810,-0.002209,0.003500,0.249976,0,0);}
.m93_c01082{transform:matrix(0.158237,-0.002374,0.003750,0.249972,0,0);-ms-transform:matrix(0.158237,-0.002374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158237,-0.002374,0.003750,0.249972,0,0);}
.m4f_c01082{transform:matrix(0.159709,-0.002236,0.003500,0.249976,0,0);-ms-transform:matrix(0.159709,-0.002236,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159709,-0.002236,0.003500,0.249976,0,0);}
.m17_c01082{transform:matrix(0.159924,-0.002239,0.003500,0.249976,0,0);-ms-transform:matrix(0.159924,-0.002239,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159924,-0.002239,0.003500,0.249976,0,0);}
.m5d_c01082{transform:matrix(0.160644,-0.002249,0.003500,0.249976,0,0);-ms-transform:matrix(0.160644,-0.002249,0.003500,0.249976,0,0);-webkit-transform:matrix(0.160644,-0.002249,0.003500,0.249976,0,0);}
.m73_c01082{transform:matrix(0.161804,-0.002265,0.003500,0.249976,0,0);-ms-transform:matrix(0.161804,-0.002265,0.003500,0.249976,0,0);-webkit-transform:matrix(0.161804,-0.002265,0.003500,0.249976,0,0);}
.m31_c01082{transform:matrix(0.164434,-0.002302,0.003500,0.249976,0,0);-ms-transform:matrix(0.164434,-0.002302,0.003500,0.249976,0,0);-webkit-transform:matrix(0.164434,-0.002302,0.003500,0.249976,0,0);}
.ma9_c01082{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);}
.m6b_c01082{transform:matrix(0.165804,-0.002321,0.003500,0.249976,0,0);-ms-transform:matrix(0.165804,-0.002321,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165804,-0.002321,0.003500,0.249976,0,0);}
.m98_c01082{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);}
.m2a_c01082{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);}
.m6c_c01082{transform:matrix(0.166844,-0.002336,0.003500,0.249976,0,0);-ms-transform:matrix(0.166844,-0.002336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166844,-0.002336,0.003500,0.249976,0,0);}
.m8c_c01082{transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);-ms-transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168666,-0.002530,0.003750,0.249972,0,0);}
.m88_c01082{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);}
.m11_c01082{transform:matrix(0.169478,-0.002373,0.003500,0.249976,0,0);-ms-transform:matrix(0.169478,-0.002373,0.003500,0.249976,0,0);-webkit-transform:matrix(0.169478,-0.002373,0.003500,0.249976,0,0);}
.m7f_c01082{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);}
.m9d_c01082{transform:matrix(0.170941,-0.002564,0.003750,0.249972,0,0);-ms-transform:matrix(0.170941,-0.002564,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170941,-0.002564,0.003750,0.249972,0,0);}
.m69_c01082{transform:matrix(0.172253,-0.002412,0.003500,0.249976,0,0);-ms-transform:matrix(0.172253,-0.002412,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172253,-0.002412,0.003500,0.249976,0,0);}
.m8a_c01082{transform:matrix(0.172301,-0.002585,0.003750,0.249972,0,0);-ms-transform:matrix(0.172301,-0.002585,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172301,-0.002585,0.003750,0.249972,0,0);}
.m44_c01082{transform:matrix(0.174098,-0.002437,0.003500,0.249976,0,0);-ms-transform:matrix(0.174098,-0.002437,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174098,-0.002437,0.003500,0.249976,0,0);}
.m92_c01082{transform:matrix(0.174540,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174540,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174540,-0.002618,0.003750,0.249972,0,0);}
.m4b_c01082{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);}
.m18_c01082{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);}
.m33_c01082{transform:matrix(0.176928,-0.002477,0.003500,0.249976,0,0);-ms-transform:matrix(0.176928,-0.002477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176928,-0.002477,0.003500,0.249976,0,0);}
.m67_c01082{transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);-ms-transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);}
.m62_c01082{transform:matrix(0.178148,-0.002494,0.003500,0.249976,0,0);-ms-transform:matrix(0.178148,-0.002494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178148,-0.002494,0.003500,0.249976,0,0);}
.m3c_c01082{transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);-ms-transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178173,-0.002494,0.003500,0.249976,0,0);}
.m4e_c01082{transform:matrix(0.178378,-0.002497,0.003500,0.249976,0,0);-ms-transform:matrix(0.178378,-0.002497,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178378,-0.002497,0.003500,0.249976,0,0);}
.m71_c01082{transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);-ms-transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178757,-0.002503,0.003500,0.249976,0,0);}
.m2f_c01082{transform:matrix(0.179757,-0.002517,0.003500,0.249976,0,0);-ms-transform:matrix(0.179757,-0.002517,0.003500,0.249976,0,0);-webkit-transform:matrix(0.179757,-0.002517,0.003500,0.249976,0,0);}
.m39_c01082{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);}
.m4a_c01082{transform:matrix(0.180542,-0.002528,0.003500,0.249976,0,0);-ms-transform:matrix(0.180542,-0.002528,0.003500,0.249976,0,0);-webkit-transform:matrix(0.180542,-0.002528,0.003500,0.249976,0,0);}
.m95_c01082{transform:matrix(0.180770,-0.002712,0.003750,0.249972,0,0);-ms-transform:matrix(0.180770,-0.002712,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180770,-0.002712,0.003750,0.249972,0,0);}
.m8b_c01082{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);}
.ma1_c01082{transform:matrix(0.182324,-0.002735,0.003750,0.249972,0,0);-ms-transform:matrix(0.182324,-0.002735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182324,-0.002735,0.003750,0.249972,0,0);}
.m8e_c01082{transform:matrix(0.183279,-0.002749,0.003750,0.249972,0,0);-ms-transform:matrix(0.183279,-0.002749,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183279,-0.002749,0.003750,0.249972,0,0);}
.m86_c01082{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);}
.m9e_c01082{transform:matrix(0.184209,-0.002763,0.003750,0.249972,0,0);-ms-transform:matrix(0.184209,-0.002763,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184209,-0.002763,0.003750,0.249972,0,0);}
.ma7_c01082{transform:matrix(0.184259,-0.002764,0.003750,0.249972,0,0);-ms-transform:matrix(0.184259,-0.002764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184259,-0.002764,0.003750,0.249972,0,0);}
.m3f_c01082{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);}
.m42_c01082{transform:matrix(0.185737,-0.002600,0.003500,0.249976,0,0);-ms-transform:matrix(0.185737,-0.002600,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185737,-0.002600,0.003500,0.249976,0,0);}
.m79_c01082{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);}
.m6e_c01082{transform:matrix(0.186077,-0.002605,0.003500,0.249976,0,0);-ms-transform:matrix(0.186077,-0.002605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186077,-0.002605,0.003500,0.249976,0,0);}
.mac_c01082{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);}
.mc_c01082{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);}
.ma6_c01082{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);}
.m56_c01082{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);}
.m4c_c01082{transform:matrix(0.188257,-0.002636,0.003500,0.249976,0,0);-ms-transform:matrix(0.188257,-0.002636,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188257,-0.002636,0.003500,0.249976,0,0);}
.m9a_c01082{transform:matrix(0.188274,-0.002824,0.003750,0.249972,0,0);-ms-transform:matrix(0.188274,-0.002824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188274,-0.002824,0.003750,0.249972,0,0);}
.m4d_c01082{transform:matrix(0.188337,-0.002637,0.003500,0.249976,0,0);-ms-transform:matrix(0.188337,-0.002637,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188337,-0.002637,0.003500,0.249976,0,0);}
.m2e_c01082{transform:matrix(0.189581,-0.002654,0.003500,0.249976,0,0);-ms-transform:matrix(0.189581,-0.002654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189581,-0.002654,0.003500,0.249976,0,0);}
.m55_c01082{transform:matrix(0.190141,-0.002662,0.003500,0.249976,0,0);-ms-transform:matrix(0.190141,-0.002662,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190141,-0.002662,0.003500,0.249976,0,0);}
.m16_c01082{transform:matrix(0.190361,-0.002665,0.003500,0.249976,0,0);-ms-transform:matrix(0.190361,-0.002665,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190361,-0.002665,0.003500,0.249976,0,0);}
.m22_c01082{transform:matrix(0.191191,-0.002677,0.003500,0.249976,0,0);-ms-transform:matrix(0.191191,-0.002677,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191191,-0.002677,0.003500,0.249976,0,0);}
.m97_c01082{transform:matrix(0.191518,-0.002873,0.003750,0.249972,0,0);-ms-transform:matrix(0.191518,-0.002873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191518,-0.002873,0.003750,0.249972,0,0);}
.m54_c01082{transform:matrix(0.191526,-0.002681,0.003500,0.249976,0,0);-ms-transform:matrix(0.191526,-0.002681,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191526,-0.002681,0.003500,0.249976,0,0);}
.m21_c01082{transform:matrix(0.191651,-0.002683,0.003500,0.249976,0,0);-ms-transform:matrix(0.191651,-0.002683,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191651,-0.002683,0.003500,0.249976,0,0);}
.m3b_c01082{transform:matrix(0.191976,-0.002688,0.003500,0.249976,0,0);-ms-transform:matrix(0.191976,-0.002688,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191976,-0.002688,0.003500,0.249976,0,0);}
.m50_c01082{transform:matrix(0.192471,-0.002695,0.003500,0.249976,0,0);-ms-transform:matrix(0.192471,-0.002695,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192471,-0.002695,0.003500,0.249976,0,0);}
.m8d_c01082{transform:matrix(0.192568,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192568,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192568,-0.002889,0.003750,0.249972,0,0);}
.m12_c01082{transform:matrix(0.193151,-0.002704,0.003500,0.249976,0,0);-ms-transform:matrix(0.193151,-0.002704,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193151,-0.002704,0.003500,0.249976,0,0);}
.m94_c01082{transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);-ms-transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193188,-0.002898,0.003750,0.249972,0,0);}
.m43_c01082{transform:matrix(0.193886,-0.002714,0.003500,0.249976,0,0);-ms-transform:matrix(0.193886,-0.002714,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193886,-0.002714,0.003500,0.249976,0,0);}
.m5c_c01082{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);}
.m3a_c01082{transform:matrix(0.194511,-0.002723,0.003500,0.249976,0,0);-ms-transform:matrix(0.194511,-0.002723,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194511,-0.002723,0.003500,0.249976,0,0);}
.m61_c01082{transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);-ms-transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195146,-0.002732,0.003500,0.249976,0,0);}
.m37_c01082{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);}
.m96_c01082{transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);-ms-transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197923,-0.002969,0.003750,0.249972,0,0);}
.m8f_c01082{transform:matrix(0.198123,-0.002972,0.003750,0.249972,0,0);-ms-transform:matrix(0.198123,-0.002972,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198123,-0.002972,0.003750,0.249972,0,0);}
.m52_c01082{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);}
.m70_c01082{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);}
.m1a_c01082{transform:matrix(0.199795,-0.002797,0.003500,0.249976,0,0);-ms-transform:matrix(0.199795,-0.002797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199795,-0.002797,0.003500,0.249976,0,0);}
.m5f_c01082{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);}
.m19_c01082{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);}
.m35_c01082{transform:matrix(0.202160,-0.002830,0.003500,0.249976,0,0);-ms-transform:matrix(0.202160,-0.002830,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202160,-0.002830,0.003500,0.249976,0,0);}
.m3d_c01082{transform:matrix(0.202720,-0.002838,0.003500,0.249976,0,0);-ms-transform:matrix(0.202720,-0.002838,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202720,-0.002838,0.003500,0.249976,0,0);}
.m1e_c01082{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);}
.m6d_c01082{transform:matrix(0.207010,-0.002898,0.003500,0.249976,0,0);-ms-transform:matrix(0.207010,-0.002898,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207010,-0.002898,0.003500,0.249976,0,0);}
.m1f_c01082{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);}
.m66_c01082{transform:matrix(0.207930,-0.002911,0.003500,0.249976,0,0);-ms-transform:matrix(0.207930,-0.002911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207930,-0.002911,0.003500,0.249976,0,0);}
.m1c_c01082{transform:matrix(0.208825,-0.002924,0.003500,0.249976,0,0);-ms-transform:matrix(0.208825,-0.002924,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208825,-0.002924,0.003500,0.249976,0,0);}
.m28_c01082{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);}
.m15_c01082{transform:matrix(0.209100,-0.002927,0.003500,0.249976,0,0);-ms-transform:matrix(0.209100,-0.002927,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209100,-0.002927,0.003500,0.249976,0,0);}
.m45_c01082{transform:matrix(0.209659,-0.002935,0.003500,0.249976,0,0);-ms-transform:matrix(0.209659,-0.002935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209659,-0.002935,0.003500,0.249976,0,0);}
.m5b_c01082{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);}
.m2b_c01082{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);}
.m90_c01082{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);}
.m87_c01082{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);}
.m99_c01082{transform:matrix(0.216531,-0.003248,0.003750,0.249972,0,0);-ms-transform:matrix(0.216531,-0.003248,0.003750,0.249972,0,0);-webkit-transform:matrix(0.216531,-0.003248,0.003750,0.249972,0,0);}
.m1_c01082{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);}
.m57_c01082{transform:matrix(0.216819,-0.003035,0.003500,0.249976,0,0);-ms-transform:matrix(0.216819,-0.003035,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216819,-0.003035,0.003500,0.249976,0,0);}
.m58_c01082{transform:matrix(0.216954,-0.003037,0.003500,0.249976,0,0);-ms-transform:matrix(0.216954,-0.003037,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216954,-0.003037,0.003500,0.249976,0,0);}
.m1d_c01082{transform:matrix(0.217119,-0.003040,0.003500,0.249976,0,0);-ms-transform:matrix(0.217119,-0.003040,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217119,-0.003040,0.003500,0.249976,0,0);}
.m9b_c01082{transform:matrix(0.217621,-0.003264,0.003750,0.249972,0,0);-ms-transform:matrix(0.217621,-0.003264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217621,-0.003264,0.003750,0.249972,0,0);}
.m51_c01082{transform:matrix(0.218499,-0.003059,0.003500,0.249976,0,0);-ms-transform:matrix(0.218499,-0.003059,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218499,-0.003059,0.003500,0.249976,0,0);}
.m7_c01082{transform:matrix(0.218589,-0.003060,0.003500,0.249976,0,0);-ms-transform:matrix(0.218589,-0.003060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218589,-0.003060,0.003500,0.249976,0,0);}
.md_c01082{transform:matrix(0.219808,-0.003077,0.003500,0.249976,0,0);-ms-transform:matrix(0.219808,-0.003077,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219808,-0.003077,0.003500,0.249976,0,0);}
.m8_c01082{transform:matrix(0.220678,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220678,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220678,-0.003089,0.003500,0.249976,0,0);}
.m5e_c01082{transform:matrix(0.221343,-0.003099,0.003500,0.249976,0,0);-ms-transform:matrix(0.221343,-0.003099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221343,-0.003099,0.003500,0.249976,0,0);}
.m2c_c01082{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);}
.m41_c01082{transform:matrix(0.223008,-0.003122,0.003500,0.249976,0,0);-ms-transform:matrix(0.223008,-0.003122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223008,-0.003122,0.003500,0.249976,0,0);}
.m40_c01082{transform:matrix(0.223338,-0.003127,0.003500,0.249976,0,0);-ms-transform:matrix(0.223338,-0.003127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223338,-0.003127,0.003500,0.249976,0,0);}
.m6f_c01082{transform:matrix(0.223758,-0.003133,0.003500,0.249976,0,0);-ms-transform:matrix(0.223758,-0.003133,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223758,-0.003133,0.003500,0.249976,0,0);}
.ma3_c01082{transform:matrix(0.225090,-0.003376,0.003750,0.249972,0,0);-ms-transform:matrix(0.225090,-0.003376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225090,-0.003376,0.003750,0.249972,0,0);}
.m2d_c01082{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);}
.m49_c01082{transform:matrix(0.227753,-0.003189,0.003500,0.249976,0,0);-ms-transform:matrix(0.227753,-0.003189,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227753,-0.003189,0.003500,0.249976,0,0);}
.m20_c01082{transform:matrix(0.227983,-0.003192,0.003500,0.249976,0,0);-ms-transform:matrix(0.227983,-0.003192,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227983,-0.003192,0.003500,0.249976,0,0);}
.ma4_c01082{transform:matrix(0.228089,-0.003421,0.003750,0.249972,0,0);-ms-transform:matrix(0.228089,-0.003421,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228089,-0.003421,0.003750,0.249972,0,0);}
.m38_c01082{transform:matrix(0.228563,-0.003200,0.003500,0.249976,0,0);-ms-transform:matrix(0.228563,-0.003200,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228563,-0.003200,0.003500,0.249976,0,0);}
.m1b_c01082{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);}
.ma5_c01082{transform:matrix(0.228969,-0.003435,0.003750,0.249972,0,0);-ms-transform:matrix(0.228969,-0.003435,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228969,-0.003435,0.003750,0.249972,0,0);}
.m83_c01082{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);}
.mf_c01082{transform:matrix(0.231407,-0.003240,0.003500,0.249976,0,0);-ms-transform:matrix(0.231407,-0.003240,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231407,-0.003240,0.003500,0.249976,0,0);}
.m9f_c01082{transform:matrix(0.232454,-0.003487,0.003750,0.249972,0,0);-ms-transform:matrix(0.232454,-0.003487,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232454,-0.003487,0.003750,0.249972,0,0);}
.m29_c01082{transform:matrix(0.232927,-0.003261,0.003500,0.249976,0,0);-ms-transform:matrix(0.232927,-0.003261,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232927,-0.003261,0.003500,0.249976,0,0);}
.m26_c01082{transform:matrix(0.233427,-0.003268,0.003500,0.249976,0,0);-ms-transform:matrix(0.233427,-0.003268,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233427,-0.003268,0.003500,0.249976,0,0);}
.m59_c01082{transform:matrix(0.235172,-0.003292,0.003500,0.249976,0,0);-ms-transform:matrix(0.235172,-0.003292,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235172,-0.003292,0.003500,0.249976,0,0);}
.m10_c01082{transform:matrix(0.235902,-0.003303,0.003500,0.249976,0,0);-ms-transform:matrix(0.235902,-0.003303,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235902,-0.003303,0.003500,0.249976,0,0);}
.m27_c01082{transform:matrix(0.238252,-0.003336,0.003500,0.249976,0,0);-ms-transform:matrix(0.238252,-0.003336,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238252,-0.003336,0.003500,0.249976,0,0);}
.maa_c01082{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);}
.m48_c01082{transform:matrix(0.240271,-0.003364,0.003500,0.249976,0,0);-ms-transform:matrix(0.240271,-0.003364,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240271,-0.003364,0.003500,0.249976,0,0);}
.mb_c01082{transform:matrix(0.241216,-0.003377,0.003500,0.249976,0,0);-ms-transform:matrix(0.241216,-0.003377,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241216,-0.003377,0.003500,0.249976,0,0);}
.ma2_c01082{transform:matrix(0.245102,-0.003677,0.003750,0.249972,0,0);-ms-transform:matrix(0.245102,-0.003677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245102,-0.003677,0.003750,0.249972,0,0);}
.m5a_c01082{transform:matrix(0.249081,-0.003487,0.003500,0.249976,0,0);-ms-transform:matrix(0.249081,-0.003487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249081,-0.003487,0.003500,0.249976,0,0);}
.m9c_c01082{transform:matrix(0.253836,-0.003808,0.003750,0.249972,0,0);-ms-transform:matrix(0.253836,-0.003808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253836,-0.003808,0.003750,0.249972,0,0);}
.m9_c01082{transform:matrix(0.255230,-0.003573,0.003500,0.249976,0,0);-ms-transform:matrix(0.255230,-0.003573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255230,-0.003573,0.003500,0.249976,0,0);}
.me_c01082{transform:matrix(0.256990,-0.003598,0.003500,0.249976,0,0);-ms-transform:matrix(0.256990,-0.003598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256990,-0.003598,0.003500,0.249976,0,0);}
.m14_c01082{transform:matrix(0.263179,-0.003685,0.003500,0.249976,0,0);-ms-transform:matrix(0.263179,-0.003685,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263179,-0.003685,0.003500,0.249976,0,0);}
.m24_c01082{transform:matrix(0.269534,-0.003773,0.003500,0.249976,0,0);-ms-transform:matrix(0.269534,-0.003773,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269534,-0.003773,0.003500,0.249976,0,0);}
.m75_c01082{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);}
.m7e_c01082{transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);}
.m81_c01082{transform:matrix(0.309785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309785,0.000000,0.000000,0.250000,0,0);}
.maf_c01082{transform:matrix(0.313394,-0.005641,0.004499,0.249960,0,0);-ms-transform:matrix(0.313394,-0.005641,0.004499,0.249960,0,0);-webkit-transform:matrix(0.313394,-0.005641,0.004499,0.249960,0,0);}
.m36_c01082{transform:matrix(0.317669,-0.004447,0.003500,0.249976,0,0);-ms-transform:matrix(0.317669,-0.004447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.317669,-0.004447,0.003500,0.249976,0,0);}
.mad_c01082{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);}
.ma8_c01082{transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322780,0.000000,0.000000,0.250000,0,0);}
.m53_c01082{transform:matrix(0.327268,-0.004582,0.003500,0.249976,0,0);-ms-transform:matrix(0.327268,-0.004582,0.003500,0.249976,0,0);-webkit-transform:matrix(0.327268,-0.004582,0.003500,0.249976,0,0);}
.ma0_c01082{transform:matrix(0.330458,-0.004957,0.003750,0.249972,0,0);-ms-transform:matrix(0.330458,-0.004957,0.003750,0.249972,0,0);-webkit-transform:matrix(0.330458,-0.004957,0.003750,0.249972,0,0);}
.m63_c01082{transform:matrix(0.362200,-0.005071,0.003500,0.249976,0,0);-ms-transform:matrix(0.362200,-0.005071,0.003500,0.249976,0,0);-webkit-transform:matrix(0.362200,-0.005071,0.003500,0.249976,0,0);}
.m46_c01082{transform:matrix(0.376638,-0.005273,0.003500,0.249976,0,0);-ms-transform:matrix(0.376638,-0.005273,0.003500,0.249976,0,0);-webkit-transform:matrix(0.376638,-0.005273,0.003500,0.249976,0,0);}
.m23_c01082{transform:matrix(0.401156,-0.005616,0.003500,0.249976,0,0);-ms-transform:matrix(0.401156,-0.005616,0.003500,0.249976,0,0);-webkit-transform:matrix(0.401156,-0.005616,0.003500,0.249976,0,0);}
.m77_c01082{transform:matrix(0.407065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407065,0.000000,0.000000,0.250000,0,0);}
.mab_c01082{transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412600,0.000000,0.000000,0.250000,0,0);}
.m7c_c01082{transform:matrix(0.438655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438655,0.000000,0.000000,0.250000,0,0);}
.m5_c01082{transform:matrix(0.443325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443325,0.000000,0.000000,0.250000,0,0);}
.m65_c01082{transform:matrix(0.475638,-0.006659,0.003500,0.249976,0,0);-ms-transform:matrix(0.475638,-0.006659,0.003500,0.249976,0,0);-webkit-transform:matrix(0.475638,-0.006659,0.003500,0.249976,0,0);}
.m3_c01082{transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484640,0.000000,0.000000,0.250000,0,0);}
.m6_c01082{transform:matrix(0.488387,-0.006837,0.003500,0.249976,0,0);-ms-transform:matrix(0.488387,-0.006837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.488387,-0.006837,0.003500,0.249976,0,0);}
.m47_c01082{transform:matrix(0.505570,-0.007078,0.003500,0.249976,0,0);-ms-transform:matrix(0.505570,-0.007078,0.003500,0.249976,0,0);-webkit-transform:matrix(0.505570,-0.007078,0.003500,0.249976,0,0);}
.m84_c01082{transform:matrix(0.512700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512700,0.000000,0.000000,0.250000,0,0);}
.mae_c01082{transform:matrix(0.544577,-0.009802,0.004499,0.249960,0,0);-ms-transform:matrix(0.544577,-0.009802,0.004499,0.249960,0,0);-webkit-transform:matrix(0.544577,-0.009802,0.004499,0.249960,0,0);}
.m82_c01082{transform:matrix(0.552820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552820,0.000000,0.000000,0.250000,0,0);}
.m80_c01082{transform:matrix(0.579985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579985,0.000000,0.000000,0.250000,0,0);}
.m76_c01082{transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589590,0.000000,0.000000,0.250000,0,0);}
.m7b_c01082{transform:matrix(0.667815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667815,0.000000,0.000000,0.250000,0,0);}
.m25_c01082{transform:matrix(0.668954,-0.009365,0.003500,0.249976,0,0);-ms-transform:matrix(0.668954,-0.009365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.668954,-0.009365,0.003500,0.249976,0,0);}
.m0_c01082{transform:matrix(1.031655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.031655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.031655,0.000000,0.000000,0.250000,0,0);}
.m74_c01082{transform:matrix(1.391930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.391930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.391930,0.000000,0.000000,0.250000,0,0);}
.m7d_c01082{transform:matrix(1.460390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.460390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.460390,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls0_c01082{letter-spacing:0.000000px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01082{word-spacing:0.000000px;}
.fc0_c01082{color:transparent;}
.fse_c01082{font-size:19.950000px;}
.fsd_c01082{font-size:23.100000px;}
.fs1_c01082{font-size:39.900000px;}
.fs12_c01082{font-size:47.255315px;}
.fs11_c01082{font-size:49.355552px;}
.fs10_c01082{font-size:57.756497px;}
.fs4_c01082{font-size:60.905968px;}
.fs5_c01082{font-size:65.106379px;}
.fs3_c01082{font-size:66.156482px;}
.fsb_c01082{font-size:68.256688px;}
.fs9_c01082{font-size:69.306791px;}
.fsf_c01082{font-size:70.350000px;}
.fs6_c01082{font-size:70.356894px;}
.fs13_c01082{font-size:71.400000px;}
.fs8_c01082{font-size:71.406997px;}
.fs7_c01082{font-size:73.507203px;}
.fsc_c01082{font-size:74.557306px;}
.fsa_c01082{font-size:80.857923px;}
.fs2_c01082{font-size:89.258746px;}
.fs14_c01082{font-size:199.532316px;}
.fs0_c01082{font-size:201.600000px;}
.y0_c01082{bottom:0.000000px;}
.y9b_c01082{bottom:125.287500px;}
.y95_c01082{bottom:143.903685px;}
.y96_c01082{bottom:144.221408px;}
.y97_c01082{bottom:144.977498px;}
.y98_c01082{bottom:146.350012px;}
.y99_c01082{bottom:146.784555px;}
.y9a_c01082{bottom:148.357418px;}
.y8c_c01082{bottom:162.000405px;}
.y8d_c01082{bottom:162.933660px;}
.y8e_c01082{bottom:163.215000px;}
.y8f_c01082{bottom:164.112923px;}
.y90_c01082{bottom:164.387880px;}
.y91_c01082{bottom:164.669940px;}
.y92_c01082{bottom:165.171510px;}
.y93_c01082{bottom:165.746678px;}
.y94_c01082{bottom:165.984135px;}
.y7d_c01082{bottom:179.551500px;}
.y7e_c01082{bottom:180.065243px;}
.y7f_c01082{bottom:180.551243px;}
.y80_c01082{bottom:180.844260px;}
.y81_c01082{bottom:181.585208px;}
.y82_c01082{bottom:182.108333px;}
.y83_c01082{bottom:182.674972px;}
.y84_c01082{bottom:183.091965px;}
.y85_c01082{bottom:183.330893px;}
.y86_c01082{bottom:183.957787px;}
.y87_c01082{bottom:184.169400px;}
.y88_c01082{bottom:184.740090px;}
.y89_c01082{bottom:185.327700px;}
.y8a_c01082{bottom:185.858363px;}
.y8b_c01082{bottom:186.288405px;}
.y7c_c01082{bottom:433.252500px;}
.y2_c01082{bottom:457.800000px;}
.y7b_c01082{bottom:463.860000px;}
.y75_c01082{bottom:464.941500px;}
.y76_c01082{bottom:465.945000px;}
.y77_c01082{bottom:466.204500px;}
.y78_c01082{bottom:466.492500px;}
.y79_c01082{bottom:466.999500px;}
.y7a_c01082{bottom:467.619000px;}
.y74_c01082{bottom:469.260000px;}
.y73_c01082{bottom:471.555000px;}
.y6c_c01082{bottom:487.326132px;}
.y6d_c01082{bottom:488.125716px;}
.y6e_c01082{bottom:488.669805px;}
.y6f_c01082{bottom:489.618291px;}
.y70_c01082{bottom:490.593606px;}
.y71_c01082{bottom:490.919625px;}
.y72_c01082{bottom:491.186661px;}
.y65_c01082{bottom:510.819030px;}
.y66_c01082{bottom:511.461882px;}
.y67_c01082{bottom:512.293356px;}
.y68_c01082{bottom:512.796159px;}
.y69_c01082{bottom:513.438276px;}
.y6a_c01082{bottom:514.017456px;}
.y6b_c01082{bottom:514.607031px;}
.y64_c01082{bottom:536.263095px;}
.y63_c01082{bottom:536.263263px;}
.y59_c01082{bottom:556.451766px;}
.y5a_c01082{bottom:556.793724px;}
.y5b_c01082{bottom:557.369640px;}
.y5c_c01082{bottom:557.601141px;}
.y5d_c01082{bottom:558.500430px;}
.y5e_c01082{bottom:558.974142px;}
.y5f_c01082{bottom:559.355385px;}
.y60_c01082{bottom:559.766985px;}
.y61_c01082{bottom:560.055201px;}
.y62_c01082{bottom:560.863227px;}
.y4f_c01082{bottom:579.132102px;}
.y50_c01082{bottom:579.711630px;}
.y51_c01082{bottom:580.175346px;}
.y52_c01082{bottom:580.502790px;}
.y53_c01082{bottom:581.296050px;}
.y54_c01082{bottom:581.721549px;}
.y55_c01082{bottom:582.253053px;}
.y56_c01082{bottom:582.573210px;}
.y57_c01082{bottom:583.199460px;}
.y58_c01082{bottom:583.924395px;}
.y46_c01082{bottom:602.080113px;}
.y47_c01082{bottom:602.628633px;}
.y48_c01082{bottom:602.938677px;}
.y49_c01082{bottom:603.414117px;}
.y4a_c01082{bottom:603.774876px;}
.y4b_c01082{bottom:604.447023px;}
.y4c_c01082{bottom:605.085948px;}
.y4d_c01082{bottom:605.516721px;}
.y4e_c01082{bottom:605.929434px;}
.y44_c01082{bottom:628.661478px;}
.y45_c01082{bottom:628.661766px;}
.y3e_c01082{bottom:647.178594px;}
.y3f_c01082{bottom:648.408732px;}
.y40_c01082{bottom:649.736550px;}
.y41_c01082{bottom:650.537973px;}
.y42_c01082{bottom:651.028518px;}
.y43_c01082{bottom:651.927801px;}
.y37_c01082{bottom:670.400448px;}
.y38_c01082{bottom:671.147304px;}
.y39_c01082{bottom:672.128553px;}
.y3a_c01082{bottom:672.839640px;}
.y3b_c01082{bottom:673.216050px;}
.y3c_c01082{bottom:673.851315px;}
.y3d_c01082{bottom:674.400501px;}
.y2c_c01082{bottom:692.776692px;}
.y2d_c01082{bottom:693.386130px;}
.y2e_c01082{bottom:694.548012px;}
.y2f_c01082{bottom:695.109831px;}
.y30_c01082{bottom:695.806404px;}
.y31_c01082{bottom:696.440733px;}
.y32_c01082{bottom:697.096878px;}
.y33_c01082{bottom:697.372350px;}
.y34_c01082{bottom:698.094129px;}
.y35_c01082{bottom:698.543880px;}
.y36_c01082{bottom:699.199962px;}
.y23_c01082{bottom:715.496589px;}
.y24_c01082{bottom:716.670093px;}
.y25_c01082{bottom:717.578340px;}
.y26_c01082{bottom:718.487238px;}
.y27_c01082{bottom:719.177334px;}
.y28_c01082{bottom:719.832009px;}
.y29_c01082{bottom:720.214614px;}
.y2a_c01082{bottom:720.860418px;}
.y2b_c01082{bottom:721.321224px;}
.y21_c01082{bottom:741.954516px;}
.y22_c01082{bottom:741.954810px;}
.y1a_c01082{bottom:761.128080px;}
.y1b_c01082{bottom:762.257310px;}
.y1c_c01082{bottom:762.571155px;}
.y1d_c01082{bottom:763.462023px;}
.y1e_c01082{bottom:764.422863px;}
.y1f_c01082{bottom:765.471624px;}
.y20_c01082{bottom:766.741722px;}
.y10_c01082{bottom:784.077786px;}
.y11_c01082{bottom:784.289988px;}
.y12_c01082{bottom:784.658430px;}
.y13_c01082{bottom:785.944983px;}
.y14_c01082{bottom:786.310212px;}
.y15_c01082{bottom:786.827649px;}
.y16_c01082{bottom:787.306281px;}
.y17_c01082{bottom:788.108868px;}
.y18_c01082{bottom:788.565000px;}
.y19_c01082{bottom:789.031935px;}
.y7_c01082{bottom:807.031500px;}
.y8_c01082{bottom:807.448413px;}
.y9_c01082{bottom:808.777734px;}
.ya_c01082{bottom:809.213442px;}
.yb_c01082{bottom:810.388917px;}
.yc_c01082{bottom:810.653811px;}
.yd_c01082{bottom:811.678044px;}
.ye_c01082{bottom:811.919943px;}
.yf_c01082{bottom:812.180742px;}
.y3_c01082{bottom:854.070000px;}
.y4_c01082{bottom:857.292492px;}
.y5_c01082{bottom:858.347175px;}
.y6_c01082{bottom:859.303305px;}
.y1_c01082{bottom:897.463500px;}
.y9c_c01082{bottom:897.585000px;}
.y9d_c01082{bottom:900.525084px;}
.h10_c01082{height:19.950000px;}
.hf_c01082{height:23.100000px;}
.h3_c01082{height:39.900000px;}
.h14_c01082{height:47.255315px;}
.h13_c01082{height:49.355552px;}
.h12_c01082{height:57.756497px;}
.h6_c01082{height:60.905968px;}
.h7_c01082{height:65.106379px;}
.h5_c01082{height:66.156482px;}
.hd_c01082{height:68.256688px;}
.hb_c01082{height:69.306791px;}
.h11_c01082{height:70.350000px;}
.h8_c01082{height:70.356894px;}
.h15_c01082{height:71.400000px;}
.ha_c01082{height:71.406997px;}
.h9_c01082{height:73.507203px;}
.he_c01082{height:74.557306px;}
.hc_c01082{height:80.857923px;}
.h4_c01082{height:89.258746px;}
.h16_c01082{height:199.532316px;}
.h2_c01082{height:201.600000px;}
.h1_c01082{height:1005.000000px;}
.h0_c01082{height:1005.150000px;}
.w0_c01082{width:739.200000px;}
.w1_c01082{width:739.500000px;}
.x0_c01082{left:0.000000px;}
.x1_c01082{left:45.360000px;}
.xb_c01082{left:108.429000px;}
.x3_c01082{left:109.890000px;}
.x66_c01082{left:114.085500px;}
.x14_c01082{left:123.702282px;}
.x23_c01082{left:131.328225px;}
.xc_c01082{left:138.208500px;}
.x34_c01082{left:140.629770px;}
.x4a_c01082{left:142.462098px;}
.x5a_c01082{left:144.098988px;}
.x2a_c01082{left:148.514109px;}
.x53_c01082{left:152.282106px;}
.x7_c01082{left:162.936000px;}
.x4b_c01082{left:168.709455px;}
.x6e_c01082{left:172.691895px;}
.x3e_c01082{left:180.563715px;}
.x2b_c01082{left:184.329597px;}
.x35_c01082{left:187.332468px;}
.x55_c01082{left:188.394834px;}
.x43_c01082{left:189.671775px;}
.x71_c01082{left:191.587927px;}
.x1b_c01082{left:195.487776px;}
.x24_c01082{left:200.361327px;}
.x3f_c01082{left:202.709715px;}
.x5b_c01082{left:205.605849px;}
.x39_c01082{left:208.756944px;}
.x1c_c01082{left:211.153953px;}
.x4c_c01082{left:212.954064px;}
.x2_c01082{left:221.130000px;}
.x44_c01082{left:228.366867px;}
.x4d_c01082{left:230.775816px;}
.xd_c01082{left:233.160000px;}
.x40_c01082{left:236.669715px;}
.x6f_c01082{left:246.408292px;}
.x15_c01082{left:248.286060px;}
.x67_c01082{left:249.666000px;}
.x2c_c01082{left:252.639720px;}
.x25_c01082{left:253.769580px;}
.x1d_c01082{left:255.712215px;}
.x4_c01082{left:261.900000px;}
.xe_c01082{left:264.282000px;}
.x16_c01082{left:272.659224px;}
.x54_c01082{left:273.793920px;}
.x21_c01082{left:276.766887px;}
.x70_c01082{left:281.242275px;}
.x3a_c01082{left:282.489807px;}
.x56_c01082{left:283.700334px;}
.x2d_c01082{left:285.696834px;}
.x72_c01082{left:289.590390px;}
.x36_c01082{left:293.103507px;}
.x4e_c01082{left:299.940282px;}
.x74_c01082{left:302.670000px;}
.x1e_c01082{left:303.768183px;}
.x17_c01082{left:307.154241px;}
.x41_c01082{left:310.448715px;}
.x5_c01082{left:312.930000px;}
.x37_c01082{left:316.667856px;}
.x5c_c01082{left:320.469966px;}
.x45_c01082{left:321.705471px;}
.x2e_c01082{left:326.664612px;}
.x6_c01082{left:327.780000px;}
.x57_c01082{left:329.565834px;}
.x4f_c01082{left:336.348786px;}
.x18_c01082{left:339.091800px;}
.xf_c01082{left:348.244500px;}
.x68_c01082{left:350.116500px;}
.x3b_c01082{left:354.197775px;}
.x1f_c01082{left:356.175273px;}
.x2f_c01082{left:363.936537px;}
.x50_c01082{left:365.723706px;}
.x10_c01082{left:367.165500px;}
.x22_c01082{left:368.305821px;}
.x58_c01082{left:370.935834px;}
.x5e_c01082{left:374.760000px;}
.x60_c01082{left:383.670000px;}
.x76_c01082{left:385.030500px;}
.x26_c01082{left:386.347515px;}
.x38_c01082{left:390.662277px;}
.x8_c01082{left:393.114000px;}
.x5d_c01082{left:395.493516px;}
.x51_c01082{left:397.374147px;}
.x46_c01082{left:401.422197px;}
.x30_c01082{left:402.552420px;}
.x3c_c01082{left:404.179482px;}
.x69_c01082{left:407.838000px;}
.x27_c01082{left:408.854070px;}
.x59_c01082{left:413.048334px;}
.x42_c01082{left:416.335215px;}
.x20_c01082{left:419.676939px;}
.x6a_c01082{left:421.945500px;}
.x19_c01082{left:422.999124px;}
.x47_c01082{left:428.148453px;}
.x73_c01082{left:433.019550px;}
.x75_c01082{left:436.590000px;}
.x5f_c01082{left:437.670000px;}
.x11_c01082{left:440.325000px;}
.x28_c01082{left:446.838474px;}
.x1a_c01082{left:454.101183px;}
.x61_c01082{left:455.490000px;}
.x12_c01082{left:457.603500px;}
.x6b_c01082{left:459.991500px;}
.x31_c01082{left:461.246463px;}
.x9_c01082{left:468.448500px;}
.x3d_c01082{left:472.265985px;}
.x29_c01082{left:473.966340px;}
.x13_c01082{left:476.232000px;}
.x62_c01082{left:478.170000px;}
.x48_c01082{left:480.274902px;}
.x52_c01082{left:481.678323px;}
.x32_c01082{left:487.691850px;}
.x63_c01082{left:495.495000px;}
.x6c_c01082{left:499.165500px;}
.x64_c01082{left:522.720000px;}
.x33_c01082{left:526.303233px;}
.x6d_c01082{left:534.543000px;}
.xa_c01082{left:536.743500px;}
.x49_c01082{left:540.629082px;}
.x65_c01082{left:563.220000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls0_c01082{letter-spacing:0.000000pt;}
.ws0_c01082{word-spacing:0.000000pt;}
.fse_c01082{font-size:17.733333pt;}
.fsd_c01082{font-size:20.533333pt;}
.fs1_c01082{font-size:35.466667pt;}
.fs12_c01082{font-size:42.004725pt;}
.fs11_c01082{font-size:43.871601pt;}
.fs10_c01082{font-size:51.339108pt;}
.fs4_c01082{font-size:54.138638pt;}
.fs5_c01082{font-size:57.872337pt;}
.fs3_c01082{font-size:58.805762pt;}
.fsb_c01082{font-size:60.672612pt;}
.fs9_c01082{font-size:61.606037pt;}
.fsf_c01082{font-size:62.533333pt;}
.fs6_c01082{font-size:62.539461pt;}
.fs13_c01082{font-size:63.466667pt;}
.fs8_c01082{font-size:63.472886pt;}
.fs7_c01082{font-size:65.339736pt;}
.fsc_c01082{font-size:66.273160pt;}
.fsa_c01082{font-size:71.873709pt;}
.fs2_c01082{font-size:79.341108pt;}
.fs14_c01082{font-size:177.362059pt;}
.fs0_c01082{font-size:179.200000pt;}
.y0_c01082{bottom:0.000000pt;}
.y9b_c01082{bottom:111.366667pt;}
.y95_c01082{bottom:127.914387pt;}
.y96_c01082{bottom:128.196807pt;}
.y97_c01082{bottom:128.868887pt;}
.y98_c01082{bottom:130.088900pt;}
.y99_c01082{bottom:130.475160pt;}
.y9a_c01082{bottom:131.873260pt;}
.y8c_c01082{bottom:144.000360pt;}
.y8d_c01082{bottom:144.829920pt;}
.y8e_c01082{bottom:145.080000pt;}
.y8f_c01082{bottom:145.878153pt;}
.y90_c01082{bottom:146.122560pt;}
.y91_c01082{bottom:146.373280pt;}
.y92_c01082{bottom:146.819120pt;}
.y93_c01082{bottom:147.330380pt;}
.y94_c01082{bottom:147.541453pt;}
.y7d_c01082{bottom:159.601333pt;}
.y7e_c01082{bottom:160.057993pt;}
.y7f_c01082{bottom:160.489993pt;}
.y80_c01082{bottom:160.750453pt;}
.y81_c01082{bottom:161.409073pt;}
.y82_c01082{bottom:161.874073pt;}
.y83_c01082{bottom:162.377753pt;}
.y84_c01082{bottom:162.748413pt;}
.y85_c01082{bottom:162.960793pt;}
.y86_c01082{bottom:163.518033pt;}
.y87_c01082{bottom:163.706133pt;}
.y88_c01082{bottom:164.213413pt;}
.y89_c01082{bottom:164.735733pt;}
.y8a_c01082{bottom:165.207433pt;}
.y8b_c01082{bottom:165.589693pt;}
.y7c_c01082{bottom:385.113333pt;}
.y2_c01082{bottom:406.933333pt;}
.y7b_c01082{bottom:412.320000pt;}
.y75_c01082{bottom:413.281333pt;}
.y76_c01082{bottom:414.173333pt;}
.y77_c01082{bottom:414.404000pt;}
.y78_c01082{bottom:414.660000pt;}
.y79_c01082{bottom:415.110667pt;}
.y7a_c01082{bottom:415.661333pt;}
.y74_c01082{bottom:417.120000pt;}
.y73_c01082{bottom:419.160000pt;}
.y6c_c01082{bottom:433.178784pt;}
.y6d_c01082{bottom:433.889525pt;}
.y6e_c01082{bottom:434.373160pt;}
.y6f_c01082{bottom:435.216259pt;}
.y70_c01082{bottom:436.083205pt;}
.y71_c01082{bottom:436.373000pt;}
.y72_c01082{bottom:436.610365pt;}
.y65_c01082{bottom:454.061360pt;}
.y66_c01082{bottom:454.632784pt;}
.y67_c01082{bottom:455.371872pt;}
.y68_c01082{bottom:455.818808pt;}
.y69_c01082{bottom:456.389579pt;}
.y6a_c01082{bottom:456.904405pt;}
.y6b_c01082{bottom:457.428472pt;}
.y64_c01082{bottom:476.678307pt;}
.y63_c01082{bottom:476.678456pt;}
.y59_c01082{bottom:494.623792pt;}
.y5a_c01082{bottom:494.927755pt;}
.y5b_c01082{bottom:495.439680pt;}
.y5c_c01082{bottom:495.645459pt;}
.y5d_c01082{bottom:496.444827pt;}
.y5e_c01082{bottom:496.865904pt;}
.y5f_c01082{bottom:497.204787pt;}
.y60_c01082{bottom:497.570653pt;}
.y61_c01082{bottom:497.826845pt;}
.y62_c01082{bottom:498.545091pt;}
.y4f_c01082{bottom:514.784091pt;}
.y50_c01082{bottom:515.299227pt;}
.y51_c01082{bottom:515.711419pt;}
.y52_c01082{bottom:516.002480pt;}
.y53_c01082{bottom:516.707600pt;}
.y54_c01082{bottom:517.085821pt;}
.y55_c01082{bottom:517.558269pt;}
.y56_c01082{bottom:517.842853pt;}
.y57_c01082{bottom:518.399520pt;}
.y58_c01082{bottom:519.043907pt;}
.y46_c01082{bottom:535.182323pt;}
.y47_c01082{bottom:535.669896pt;}
.y48_c01082{bottom:535.945491pt;}
.y49_c01082{bottom:536.368104pt;}
.y4a_c01082{bottom:536.688779pt;}
.y4b_c01082{bottom:537.286243pt;}
.y4c_c01082{bottom:537.854176pt;}
.y4d_c01082{bottom:538.237085pt;}
.y4e_c01082{bottom:538.603941pt;}
.y44_c01082{bottom:558.810203pt;}
.y45_c01082{bottom:558.810459pt;}
.y3e_c01082{bottom:575.269861pt;}
.y3f_c01082{bottom:576.363317pt;}
.y40_c01082{bottom:577.543600pt;}
.y41_c01082{bottom:578.255976pt;}
.y42_c01082{bottom:578.692016pt;}
.y43_c01082{bottom:579.491379pt;}
.y37_c01082{bottom:595.911509pt;}
.y38_c01082{bottom:596.575381pt;}
.y39_c01082{bottom:597.447603pt;}
.y3a_c01082{bottom:598.079680pt;}
.y3b_c01082{bottom:598.414267pt;}
.y3c_c01082{bottom:598.978947pt;}
.y3d_c01082{bottom:599.467112pt;}
.y2c_c01082{bottom:615.801504pt;}
.y2d_c01082{bottom:616.343227pt;}
.y2e_c01082{bottom:617.376011pt;}
.y2f_c01082{bottom:617.875405pt;}
.y30_c01082{bottom:618.494581pt;}
.y31_c01082{bottom:619.058429pt;}
.y32_c01082{bottom:619.641669pt;}
.y33_c01082{bottom:619.886533pt;}
.y34_c01082{bottom:620.528115pt;}
.y35_c01082{bottom:620.927893pt;}
.y36_c01082{bottom:621.511077pt;}
.y23_c01082{bottom:635.996968pt;}
.y24_c01082{bottom:637.040083pt;}
.y25_c01082{bottom:637.847413pt;}
.y26_c01082{bottom:638.655323pt;}
.y27_c01082{bottom:639.268741pt;}
.y28_c01082{bottom:639.850675pt;}
.y29_c01082{bottom:640.190768pt;}
.y2a_c01082{bottom:640.764816pt;}
.y2b_c01082{bottom:641.174421pt;}
.y21_c01082{bottom:659.515125pt;}
.y22_c01082{bottom:659.515387pt;}
.y1a_c01082{bottom:676.558293pt;}
.y1b_c01082{bottom:677.562053pt;}
.y1c_c01082{bottom:677.841027pt;}
.y1d_c01082{bottom:678.632909pt;}
.y1e_c01082{bottom:679.486989pt;}
.y1f_c01082{bottom:680.419221pt;}
.y20_c01082{bottom:681.548197pt;}
.y10_c01082{bottom:696.958032pt;}
.y11_c01082{bottom:697.146656pt;}
.y12_c01082{bottom:697.474160pt;}
.y13_c01082{bottom:698.617763pt;}
.y14_c01082{bottom:698.942411pt;}
.y15_c01082{bottom:699.402355pt;}
.y16_c01082{bottom:699.827805pt;}
.y17_c01082{bottom:700.541216pt;}
.y18_c01082{bottom:700.946667pt;}
.y19_c01082{bottom:701.361720pt;}
.y7_c01082{bottom:717.361333pt;}
.y8_c01082{bottom:717.731923pt;}
.y9_c01082{bottom:718.913541pt;}
.ya_c01082{bottom:719.300837pt;}
.yb_c01082{bottom:720.345704pt;}
.yc_c01082{bottom:720.581165pt;}
.yd_c01082{bottom:721.491595pt;}
.ye_c01082{bottom:721.706616pt;}
.yf_c01082{bottom:721.938437pt;}
.y3_c01082{bottom:759.173333pt;}
.y4_c01082{bottom:762.037771pt;}
.y5_c01082{bottom:762.975267pt;}
.y6_c01082{bottom:763.825160pt;}
.y1_c01082{bottom:797.745333pt;}
.y9c_c01082{bottom:797.853333pt;}
.y9d_c01082{bottom:800.466741pt;}
.h10_c01082{height:17.733333pt;}
.hf_c01082{height:20.533333pt;}
.h3_c01082{height:35.466667pt;}
.h14_c01082{height:42.004725pt;}
.h13_c01082{height:43.871601pt;}
.h12_c01082{height:51.339108pt;}
.h6_c01082{height:54.138638pt;}
.h7_c01082{height:57.872337pt;}
.h5_c01082{height:58.805762pt;}
.hd_c01082{height:60.672612pt;}
.hb_c01082{height:61.606037pt;}
.h11_c01082{height:62.533333pt;}
.h8_c01082{height:62.539461pt;}
.h15_c01082{height:63.466667pt;}
.ha_c01082{height:63.472886pt;}
.h9_c01082{height:65.339736pt;}
.he_c01082{height:66.273160pt;}
.hc_c01082{height:71.873709pt;}
.h4_c01082{height:79.341108pt;}
.h16_c01082{height:177.362059pt;}
.h2_c01082{height:179.200000pt;}
.h1_c01082{height:893.333333pt;}
.h0_c01082{height:893.466667pt;}
.w0_c01082{width:657.066667pt;}
.w1_c01082{width:657.333333pt;}
.x0_c01082{left:0.000000pt;}
.x1_c01082{left:40.320000pt;}
.xb_c01082{left:96.381333pt;}
.x3_c01082{left:97.680000pt;}
.x66_c01082{left:101.409333pt;}
.x14_c01082{left:109.957584pt;}
.x23_c01082{left:116.736200pt;}
.xc_c01082{left:122.852000pt;}
.x34_c01082{left:125.004240pt;}
.x4a_c01082{left:126.632976pt;}
.x5a_c01082{left:128.087989pt;}
.x2a_c01082{left:132.012541pt;}
.x53_c01082{left:135.361872pt;}
.x7_c01082{left:144.832000pt;}
.x4b_c01082{left:149.963960pt;}
.x6e_c01082{left:153.503907pt;}
.x3e_c01082{left:160.501080pt;}
.x2b_c01082{left:163.848531pt;}
.x35_c01082{left:166.517749pt;}
.x55_c01082{left:167.462075pt;}
.x43_c01082{left:168.597133pt;}
.x71_c01082{left:170.300380pt;}
.x1b_c01082{left:173.766912pt;}
.x24_c01082{left:178.098957pt;}
.x3f_c01082{left:180.186413pt;}
.x5b_c01082{left:182.760755pt;}
.x39_c01082{left:185.561728pt;}
.x1c_c01082{left:187.692403pt;}
.x4c_c01082{left:189.292501pt;}
.x2_c01082{left:196.560000pt;}
.x44_c01082{left:202.992771pt;}
.x4d_c01082{left:205.134059pt;}
.xd_c01082{left:207.253333pt;}
.x40_c01082{left:210.373080pt;}
.x6f_c01082{left:219.029593pt;}
.x15_c01082{left:220.698720pt;}
.x67_c01082{left:221.925333pt;}
.x2c_c01082{left:224.568640pt;}
.x25_c01082{left:225.572960pt;}
.x1d_c01082{left:227.299747pt;}
.x4_c01082{left:232.800000pt;}
.xe_c01082{left:234.917333pt;}
.x16_c01082{left:242.363755pt;}
.x54_c01082{left:243.372373pt;}
.x21_c01082{left:246.015011pt;}
.x70_c01082{left:249.993133pt;}
.x3a_c01082{left:251.102051pt;}
.x56_c01082{left:252.178075pt;}
.x2d_c01082{left:253.952741pt;}
.x72_c01082{left:257.413680pt;}
.x36_c01082{left:260.536451pt;}
.x4e_c01082{left:266.613584pt;}
.x74_c01082{left:269.040000pt;}
.x1e_c01082{left:270.016163pt;}
.x17_c01082{left:273.025992pt;}
.x41_c01082{left:275.954413pt;}
.x5_c01082{left:278.160000pt;}
.x37_c01082{left:281.482539pt;}
.x5c_c01082{left:284.862192pt;}
.x45_c01082{left:285.960419pt;}
.x2e_c01082{left:290.368544pt;}
.x6_c01082{left:291.360000pt;}
.x57_c01082{left:292.947408pt;}
.x4f_c01082{left:298.976699pt;}
.x18_c01082{left:301.414933pt;}
.xf_c01082{left:309.550667pt;}
.x68_c01082{left:311.214667pt;}
.x3b_c01082{left:314.842467pt;}
.x1f_c01082{left:316.600243pt;}
.x2f_c01082{left:323.499144pt;}
.x50_c01082{left:325.087739pt;}
.x10_c01082{left:326.369333pt;}
.x22_c01082{left:327.382952pt;}
.x58_c01082{left:329.720741pt;}
.x5e_c01082{left:333.120000pt;}
.x60_c01082{left:341.040000pt;}
.x76_c01082{left:342.249333pt;}
.x26_c01082{left:343.420013pt;}
.x38_c01082{left:347.255357pt;}
.x8_c01082{left:349.434667pt;}
.x5d_c01082{left:351.549792pt;}
.x51_c01082{left:353.221464pt;}
.x46_c01082{left:356.819731pt;}
.x30_c01082{left:357.824373pt;}
.x3c_c01082{left:359.270651pt;}
.x69_c01082{left:362.522667pt;}
.x27_c01082{left:363.425840pt;}
.x59_c01082{left:367.154075pt;}
.x42_c01082{left:370.075747pt;}
.x20_c01082{left:373.046168pt;}
.x6a_c01082{left:375.062667pt;}
.x19_c01082{left:375.999221pt;}
.x47_c01082{left:380.576403pt;}
.x73_c01082{left:384.906267pt;}
.x75_c01082{left:388.080000pt;}
.x5f_c01082{left:389.040000pt;}
.x11_c01082{left:391.400000pt;}
.x28_c01082{left:397.189755pt;}
.x1a_c01082{left:403.645496pt;}
.x61_c01082{left:404.880000pt;}
.x12_c01082{left:406.758667pt;}
.x6b_c01082{left:408.881333pt;}
.x31_c01082{left:409.996856pt;}
.x9_c01082{left:416.398667pt;}
.x3d_c01082{left:419.791987pt;}
.x29_c01082{left:421.303413pt;}
.x13_c01082{left:423.317333pt;}
.x62_c01082{left:425.040000pt;}
.x48_c01082{left:426.911024pt;}
.x52_c01082{left:428.158509pt;}
.x32_c01082{left:433.503867pt;}
.x63_c01082{left:440.440000pt;}
.x6c_c01082{left:443.702667pt;}
.x64_c01082{left:464.640000pt;}
.x33_c01082{left:467.825096pt;}
.x6d_c01082{left:475.149333pt;}
.xa_c01082{left:477.105333pt;}
.x49_c01082{left:480.559184pt;}
.x65_c01082{left:500.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_c01083 {
    display:none;
  }
  .loading-indicator_c01083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01083 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01083 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01083" -> "#page-container .classname_c01083")
 */
.pf_c01083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01083 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01083 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01083 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01083 {overflow:visible;}
  }
}
.c_c01083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01083 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01083:after { /* webkit #35443 */
  content: '';
}
.t_c01083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01083 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01083 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01083 { /* info for Javascript */
  display:none;
}
.l_c01083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m130_c01083{transform:matrix(0.004525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004525,0.000000,0.000000,0.250000,0,0);}
.mba_c01083{transform:matrix(0.029433,-0.000324,0.002750,0.249985,0,0);-ms-transform:matrix(0.029433,-0.000324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.029433,-0.000324,0.002750,0.249985,0,0);}
.m12a_c01083{transform:matrix(0.087351,-0.001572,0.004499,0.249960,0,0);-ms-transform:matrix(0.087351,-0.001572,0.004499,0.249960,0,0);-webkit-transform:matrix(0.087351,-0.001572,0.004499,0.249960,0,0);}
.m71_c01083{transform:matrix(0.109983,-0.002200,0.004999,0.249950,0,0);-ms-transform:matrix(0.109983,-0.002200,0.004999,0.249950,0,0);-webkit-transform:matrix(0.109983,-0.002200,0.004999,0.249950,0,0);}
.ma1_c01083{transform:matrix(0.120074,-0.002522,0.005249,0.249945,0,0);-ms-transform:matrix(0.120074,-0.002522,0.005249,0.249945,0,0);-webkit-transform:matrix(0.120074,-0.002522,0.005249,0.249945,0,0);}
.m12e_c01083{transform:matrix(0.130099,-0.002342,0.004499,0.249960,0,0);-ms-transform:matrix(0.130099,-0.002342,0.004499,0.249960,0,0);-webkit-transform:matrix(0.130099,-0.002342,0.004499,0.249960,0,0);}
.m67_c01083{transform:matrix(0.137478,-0.002750,0.004999,0.249950,0,0);-ms-transform:matrix(0.137478,-0.002750,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137478,-0.002750,0.004999,0.249950,0,0);}
.mc5_c01083{transform:matrix(0.138595,-0.002633,0.004749,0.249955,0,0);-ms-transform:matrix(0.138595,-0.002633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138595,-0.002633,0.004749,0.249955,0,0);}
.m75_c01083{transform:matrix(0.142392,-0.002848,0.004999,0.249950,0,0);-ms-transform:matrix(0.142392,-0.002848,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142392,-0.002848,0.004999,0.249950,0,0);}
.m10_c01083{transform:matrix(0.143641,-0.002873,0.004999,0.249950,0,0);-ms-transform:matrix(0.143641,-0.002873,0.004999,0.249950,0,0);-webkit-transform:matrix(0.143641,-0.002873,0.004999,0.249950,0,0);}
.m114_c01083{transform:matrix(0.144042,-0.002593,0.004499,0.249960,0,0);-ms-transform:matrix(0.144042,-0.002593,0.004499,0.249960,0,0);-webkit-transform:matrix(0.144042,-0.002593,0.004499,0.249960,0,0);}
.m60_c01083{transform:matrix(0.144456,-0.002889,0.004999,0.249950,0,0);-ms-transform:matrix(0.144456,-0.002889,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144456,-0.002889,0.004999,0.249950,0,0);}
.m85_c01083{transform:matrix(0.145220,-0.003195,0.005499,0.249940,0,0);-ms-transform:matrix(0.145220,-0.003195,0.005499,0.249940,0,0);-webkit-transform:matrix(0.145220,-0.003195,0.005499,0.249940,0,0);}
.mcc_c01083{transform:matrix(0.145329,-0.002761,0.004749,0.249955,0,0);-ms-transform:matrix(0.145329,-0.002761,0.004749,0.249955,0,0);-webkit-transform:matrix(0.145329,-0.002761,0.004749,0.249955,0,0);}
.md_c01083{transform:matrix(0.145991,-0.002920,0.004999,0.249950,0,0);-ms-transform:matrix(0.145991,-0.002920,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145991,-0.002920,0.004999,0.249950,0,0);}
.m6c_c01083{transform:matrix(0.147875,-0.002958,0.004999,0.249950,0,0);-ms-transform:matrix(0.147875,-0.002958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147875,-0.002958,0.004999,0.249950,0,0);}
.mad_c01083{transform:matrix(0.148582,-0.003120,0.005249,0.249945,0,0);-ms-transform:matrix(0.148582,-0.003120,0.005249,0.249945,0,0);-webkit-transform:matrix(0.148582,-0.003120,0.005249,0.249945,0,0);}
.m10b_c01083{transform:matrix(0.149326,-0.002688,0.004499,0.249960,0,0);-ms-transform:matrix(0.149326,-0.002688,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149326,-0.002688,0.004499,0.249960,0,0);}
.mab_c01083{transform:matrix(0.150067,-0.003151,0.005249,0.249945,0,0);-ms-transform:matrix(0.150067,-0.003151,0.005249,0.249945,0,0);-webkit-transform:matrix(0.150067,-0.003151,0.005249,0.249945,0,0);}
.m1c_c01083{transform:matrix(0.150475,-0.003009,0.004999,0.249950,0,0);-ms-transform:matrix(0.150475,-0.003009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150475,-0.003009,0.004999,0.249950,0,0);}
.m58_c01083{transform:matrix(0.153894,-0.003078,0.004999,0.249950,0,0);-ms-transform:matrix(0.153894,-0.003078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153894,-0.003078,0.004999,0.249950,0,0);}
.m68_c01083{transform:matrix(0.153989,-0.003080,0.004999,0.249950,0,0);-ms-transform:matrix(0.153989,-0.003080,0.004999,0.249950,0,0);-webkit-transform:matrix(0.153989,-0.003080,0.004999,0.249950,0,0);}
.m12b_c01083{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);}
.mc8_c01083{transform:matrix(0.155537,-0.002955,0.004749,0.249955,0,0);-ms-transform:matrix(0.155537,-0.002955,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155537,-0.002955,0.004749,0.249955,0,0);}
.m55_c01083{transform:matrix(0.155939,-0.003119,0.004999,0.249950,0,0);-ms-transform:matrix(0.155939,-0.003119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155939,-0.003119,0.004999,0.249950,0,0);}
.mf6_c01083{transform:matrix(0.156047,-0.002653,0.004249,0.249964,0,0);-ms-transform:matrix(0.156047,-0.002653,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156047,-0.002653,0.004249,0.249964,0,0);}
.m99_c01083{transform:matrix(0.157315,-0.003304,0.005249,0.249945,0,0);-ms-transform:matrix(0.157315,-0.003304,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157315,-0.003304,0.005249,0.249945,0,0);}
.mb2_c01083{transform:matrix(0.157495,-0.003307,0.005249,0.249945,0,0);-ms-transform:matrix(0.157495,-0.003307,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157495,-0.003307,0.005249,0.249945,0,0);}
.m5f_c01083{transform:matrix(0.157499,-0.003150,0.004999,0.249950,0,0);-ms-transform:matrix(0.157499,-0.003150,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157499,-0.003150,0.004999,0.249950,0,0);}
.m2f_c01083{transform:matrix(0.158008,-0.003160,0.004999,0.249950,0,0);-ms-transform:matrix(0.158008,-0.003160,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158008,-0.003160,0.004999,0.249950,0,0);}
.ma0_c01083{transform:matrix(0.158095,-0.003320,0.005249,0.249945,0,0);-ms-transform:matrix(0.158095,-0.003320,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158095,-0.003320,0.005249,0.249945,0,0);}
.m64_c01083{transform:matrix(0.158833,-0.003177,0.004999,0.249950,0,0);-ms-transform:matrix(0.158833,-0.003177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158833,-0.003177,0.004999,0.249950,0,0);}
.m4e_c01083{transform:matrix(0.158918,-0.003178,0.004999,0.249950,0,0);-ms-transform:matrix(0.158918,-0.003178,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158918,-0.003178,0.004999,0.249950,0,0);}
.m22_c01083{transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);-ms-transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159738,-0.003195,0.004999,0.249950,0,0);}
.m118_c01083{transform:matrix(0.159999,-0.002880,0.004499,0.249960,0,0);-ms-transform:matrix(0.159999,-0.002880,0.004499,0.249960,0,0);-webkit-transform:matrix(0.159999,-0.002880,0.004499,0.249960,0,0);}
.m8a_c01083{transform:matrix(0.160211,-0.003525,0.005499,0.249940,0,0);-ms-transform:matrix(0.160211,-0.003525,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160211,-0.003525,0.005499,0.249940,0,0);}
.m116_c01083{transform:matrix(0.160399,-0.002887,0.004499,0.249960,0,0);-ms-transform:matrix(0.160399,-0.002887,0.004499,0.249960,0,0);-webkit-transform:matrix(0.160399,-0.002887,0.004499,0.249960,0,0);}
.m7_c01083{transform:matrix(0.160633,-0.003213,0.004999,0.249950,0,0);-ms-transform:matrix(0.160633,-0.003213,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160633,-0.003213,0.004999,0.249950,0,0);}
.m5b_c01083{transform:matrix(0.161083,-0.003222,0.004999,0.249950,0,0);-ms-transform:matrix(0.161083,-0.003222,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161083,-0.003222,0.004999,0.249950,0,0);}
.m37_c01083{transform:matrix(0.161108,-0.003222,0.004999,0.249950,0,0);-ms-transform:matrix(0.161108,-0.003222,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161108,-0.003222,0.004999,0.249950,0,0);}
.mce_c01083{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);}
.m61_c01083{transform:matrix(0.161548,-0.003231,0.004999,0.249950,0,0);-ms-transform:matrix(0.161548,-0.003231,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161548,-0.003231,0.004999,0.249950,0,0);}
.m3a_c01083{transform:matrix(0.161633,-0.003233,0.004999,0.249950,0,0);-ms-transform:matrix(0.161633,-0.003233,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161633,-0.003233,0.004999,0.249950,0,0);}
.m102_c01083{transform:matrix(0.161774,-0.002912,0.004499,0.249960,0,0);-ms-transform:matrix(0.161774,-0.002912,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161774,-0.002912,0.004499,0.249960,0,0);}
.m103_c01083{transform:matrix(0.162129,-0.002918,0.004499,0.249960,0,0);-ms-transform:matrix(0.162129,-0.002918,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162129,-0.002918,0.004499,0.249960,0,0);}
.ma2_c01083{transform:matrix(0.162854,-0.003420,0.005249,0.249945,0,0);-ms-transform:matrix(0.162854,-0.003420,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162854,-0.003420,0.005249,0.249945,0,0);}
.mc9_c01083{transform:matrix(0.163116,-0.003099,0.004749,0.249955,0,0);-ms-transform:matrix(0.163116,-0.003099,0.004749,0.249955,0,0);-webkit-transform:matrix(0.163116,-0.003099,0.004749,0.249955,0,0);}
.m15_c01083{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);}
.maa_c01083{transform:matrix(0.163354,-0.003430,0.005249,0.249945,0,0);-ms-transform:matrix(0.163354,-0.003430,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163354,-0.003430,0.005249,0.249945,0,0);}
.m70_c01083{transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);-ms-transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);}
.md2_c01083{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);}
.mbc_c01083{transform:matrix(0.164085,-0.003118,0.004749,0.249955,0,0);-ms-transform:matrix(0.164085,-0.003118,0.004749,0.249955,0,0);-webkit-transform:matrix(0.164085,-0.003118,0.004749,0.249955,0,0);}
.m36_c01083{transform:matrix(0.164297,-0.003286,0.004999,0.249950,0,0);-ms-transform:matrix(0.164297,-0.003286,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164297,-0.003286,0.004999,0.249950,0,0);}
.m84_c01083{transform:matrix(0.165700,-0.003645,0.005499,0.249940,0,0);-ms-transform:matrix(0.165700,-0.003645,0.005499,0.249940,0,0);-webkit-transform:matrix(0.165700,-0.003645,0.005499,0.249940,0,0);}
.mbf_c01083{transform:matrix(0.165810,-0.003150,0.004749,0.249955,0,0);-ms-transform:matrix(0.165810,-0.003150,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165810,-0.003150,0.004749,0.249955,0,0);}
.m122_c01083{transform:matrix(0.165848,-0.002985,0.004499,0.249960,0,0);-ms-transform:matrix(0.165848,-0.002985,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165848,-0.002985,0.004499,0.249960,0,0);}
.m8c_c01083{transform:matrix(0.166535,-0.003664,0.005499,0.249940,0,0);-ms-transform:matrix(0.166535,-0.003664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166535,-0.003664,0.005499,0.249940,0,0);}
.m79_c01083{transform:matrix(0.166632,-0.003333,0.004999,0.249950,0,0);-ms-transform:matrix(0.166632,-0.003333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166632,-0.003333,0.004999,0.249950,0,0);}
.m4d_c01083{transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);-ms-transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166787,-0.003336,0.004999,0.249950,0,0);}
.mb9_c01083{transform:matrix(0.167065,-0.001838,0.002750,0.249985,0,0);-ms-transform:matrix(0.167065,-0.001838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167065,-0.001838,0.002750,0.249985,0,0);}
.mcf_c01083{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);}
.m4_c01083{transform:matrix(0.167566,-0.003351,0.004999,0.249950,0,0);-ms-transform:matrix(0.167566,-0.003351,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167566,-0.003351,0.004999,0.249950,0,0);}
.m3_c01083{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);}
.m7a_c01083{transform:matrix(0.168006,-0.003360,0.004999,0.249950,0,0);-ms-transform:matrix(0.168006,-0.003360,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168006,-0.003360,0.004999,0.249950,0,0);}
.m62_c01083{transform:matrix(0.168061,-0.003361,0.004999,0.249950,0,0);-ms-transform:matrix(0.168061,-0.003361,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168061,-0.003361,0.004999,0.249950,0,0);}
.m74_c01083{transform:matrix(0.168336,-0.003367,0.004999,0.249950,0,0);-ms-transform:matrix(0.168336,-0.003367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168336,-0.003367,0.004999,0.249950,0,0);}
.m6d_c01083{transform:matrix(0.168431,-0.003369,0.004999,0.249950,0,0);-ms-transform:matrix(0.168431,-0.003369,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168431,-0.003369,0.004999,0.249950,0,0);}
.m66_c01083{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);}
.ma5_c01083{transform:matrix(0.168798,-0.003545,0.005249,0.249945,0,0);-ms-transform:matrix(0.168798,-0.003545,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168798,-0.003545,0.005249,0.249945,0,0);}
.m11_c01083{transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);-ms-transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168886,-0.003378,0.004999,0.249950,0,0);}
.mc_c01083{transform:matrix(0.169046,-0.003381,0.004999,0.249950,0,0);-ms-transform:matrix(0.169046,-0.003381,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169046,-0.003381,0.004999,0.249950,0,0);}
.m88_c01083{transform:matrix(0.169059,-0.003719,0.005499,0.249940,0,0);-ms-transform:matrix(0.169059,-0.003719,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169059,-0.003719,0.005499,0.249940,0,0);}
.ma_c01083{transform:matrix(0.169206,-0.003384,0.004999,0.249950,0,0);-ms-transform:matrix(0.169206,-0.003384,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169206,-0.003384,0.004999,0.249950,0,0);}
.m6e_c01083{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);}
.m98_c01083{transform:matrix(0.169598,-0.003562,0.005249,0.249945,0,0);-ms-transform:matrix(0.169598,-0.003562,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169598,-0.003562,0.005249,0.249945,0,0);}
.ma6_c01083{transform:matrix(0.169688,-0.003563,0.005249,0.249945,0,0);-ms-transform:matrix(0.169688,-0.003563,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169688,-0.003563,0.005249,0.249945,0,0);}
.m46_c01083{transform:matrix(0.169726,-0.003395,0.004999,0.249950,0,0);-ms-transform:matrix(0.169726,-0.003395,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169726,-0.003395,0.004999,0.249950,0,0);}
.ma9_c01083{transform:matrix(0.170008,-0.003570,0.005249,0.249945,0,0);-ms-transform:matrix(0.170008,-0.003570,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170008,-0.003570,0.005249,0.249945,0,0);}
.mbe_c01083{transform:matrix(0.170014,-0.003230,0.004749,0.249955,0,0);-ms-transform:matrix(0.170014,-0.003230,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170014,-0.003230,0.004749,0.249955,0,0);}
.m1b_c01083{transform:matrix(0.170411,-0.003408,0.004999,0.249950,0,0);-ms-transform:matrix(0.170411,-0.003408,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170411,-0.003408,0.004999,0.249950,0,0);}
.mcd_c01083{transform:matrix(0.170639,-0.003242,0.004749,0.249955,0,0);-ms-transform:matrix(0.170639,-0.003242,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170639,-0.003242,0.004749,0.249955,0,0);}
.m3c_c01083{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);}
.m5e_c01083{transform:matrix(0.170966,-0.003419,0.004999,0.249950,0,0);-ms-transform:matrix(0.170966,-0.003419,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170966,-0.003419,0.004999,0.249950,0,0);}
.md0_c01083{transform:matrix(0.171014,-0.003249,0.004749,0.249955,0,0);-ms-transform:matrix(0.171014,-0.003249,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171014,-0.003249,0.004749,0.249955,0,0);}
.mdc_c01083{transform:matrix(0.171316,-0.003426,0.004999,0.249950,0,0);-ms-transform:matrix(0.171316,-0.003426,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171316,-0.003426,0.004999,0.249950,0,0);}
.mc4_c01083{transform:matrix(0.171329,-0.003255,0.004749,0.249955,0,0);-ms-transform:matrix(0.171329,-0.003255,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171329,-0.003255,0.004749,0.249955,0,0);}
.m8_c01083{transform:matrix(0.171391,-0.003428,0.004999,0.249950,0,0);-ms-transform:matrix(0.171391,-0.003428,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171391,-0.003428,0.004999,0.249950,0,0);}
.m80_c01083{transform:matrix(0.171556,-0.003431,0.004999,0.249950,0,0);-ms-transform:matrix(0.171556,-0.003431,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171556,-0.003431,0.004999,0.249950,0,0);}
.m86_c01083{transform:matrix(0.172043,-0.003785,0.005499,0.249940,0,0);-ms-transform:matrix(0.172043,-0.003785,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172043,-0.003785,0.005499,0.249940,0,0);}
.m7f_c01083{transform:matrix(0.172501,-0.003450,0.004999,0.249950,0,0);-ms-transform:matrix(0.172501,-0.003450,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172501,-0.003450,0.004999,0.249950,0,0);}
.m123_c01083{transform:matrix(0.172517,-0.003105,0.004499,0.249960,0,0);-ms-transform:matrix(0.172517,-0.003105,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172517,-0.003105,0.004499,0.249960,0,0);}
.m124_c01083{transform:matrix(0.172697,-0.003109,0.004499,0.249960,0,0);-ms-transform:matrix(0.172697,-0.003109,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172697,-0.003109,0.004499,0.249960,0,0);}
.m32_c01083{transform:matrix(0.173180,-0.003464,0.004999,0.249950,0,0);-ms-transform:matrix(0.173180,-0.003464,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173180,-0.003464,0.004999,0.249950,0,0);}
.m128_c01083{transform:matrix(0.173287,-0.003119,0.004499,0.249960,0,0);-ms-transform:matrix(0.173287,-0.003119,0.004499,0.249960,0,0);-webkit-transform:matrix(0.173287,-0.003119,0.004499,0.249960,0,0);}
.m8d_c01083{transform:matrix(0.173318,-0.003813,0.005499,0.249940,0,0);-ms-transform:matrix(0.173318,-0.003813,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173318,-0.003813,0.005499,0.249940,0,0);}
.m112_c01083{transform:matrix(0.174392,-0.003139,0.004499,0.249960,0,0);-ms-transform:matrix(0.174392,-0.003139,0.004499,0.249960,0,0);-webkit-transform:matrix(0.174392,-0.003139,0.004499,0.249960,0,0);}
.m9b_c01083{transform:matrix(0.174761,-0.003670,0.005249,0.249945,0,0);-ms-transform:matrix(0.174761,-0.003670,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174761,-0.003670,0.005249,0.249945,0,0);}
.m126_c01083{transform:matrix(0.175032,-0.003151,0.004499,0.249960,0,0);-ms-transform:matrix(0.175032,-0.003151,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175032,-0.003151,0.004499,0.249960,0,0);}
.mf1_c01083{transform:matrix(0.175420,-0.002982,0.004249,0.249964,0,0);-ms-transform:matrix(0.175420,-0.002982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175420,-0.002982,0.004249,0.249964,0,0);}
.m11e_c01083{transform:matrix(0.175492,-0.003159,0.004499,0.249960,0,0);-ms-transform:matrix(0.175492,-0.003159,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175492,-0.003159,0.004499,0.249960,0,0);}
.m2e_c01083{transform:matrix(0.175655,-0.003513,0.004999,0.249950,0,0);-ms-transform:matrix(0.175655,-0.003513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175655,-0.003513,0.004999,0.249950,0,0);}
.mee_c01083{transform:matrix(0.175785,-0.002988,0.004249,0.249964,0,0);-ms-transform:matrix(0.175785,-0.002988,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175785,-0.002988,0.004249,0.249964,0,0);}
.maf_c01083{transform:matrix(0.175816,-0.003692,0.005249,0.249945,0,0);-ms-transform:matrix(0.175816,-0.003692,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175816,-0.003692,0.005249,0.249945,0,0);}
.m45_c01083{transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);-ms-transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176435,-0.003529,0.004999,0.249950,0,0);}
.mb0_c01083{transform:matrix(0.176746,-0.003712,0.005249,0.249945,0,0);-ms-transform:matrix(0.176746,-0.003712,0.005249,0.249945,0,0);-webkit-transform:matrix(0.176746,-0.003712,0.005249,0.249945,0,0);}
.mda_c01083{transform:matrix(0.177383,-0.003370,0.004749,0.249955,0,0);-ms-transform:matrix(0.177383,-0.003370,0.004749,0.249955,0,0);-webkit-transform:matrix(0.177383,-0.003370,0.004749,0.249955,0,0);}
.m6_c01083{transform:matrix(0.178224,-0.003564,0.004999,0.249950,0,0);-ms-transform:matrix(0.178224,-0.003564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178224,-0.003564,0.004999,0.249950,0,0);}
.me2_c01083{transform:matrix(0.178389,-0.003568,0.004999,0.249950,0,0);-ms-transform:matrix(0.178389,-0.003568,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178389,-0.003568,0.004999,0.249950,0,0);}
.m100_c01083{transform:matrix(0.178589,-0.003036,0.004249,0.249964,0,0);-ms-transform:matrix(0.178589,-0.003036,0.004249,0.249964,0,0);-webkit-transform:matrix(0.178589,-0.003036,0.004249,0.249964,0,0);}
.m10e_c01083{transform:matrix(0.178656,-0.003216,0.004499,0.249960,0,0);-ms-transform:matrix(0.178656,-0.003216,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178656,-0.003216,0.004499,0.249960,0,0);}
.m94_c01083{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);}
.m14_c01083{transform:matrix(0.179034,-0.003581,0.004999,0.249950,0,0);-ms-transform:matrix(0.179034,-0.003581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179034,-0.003581,0.004999,0.249950,0,0);}
.m6a_c01083{transform:matrix(0.179139,-0.003583,0.004999,0.249950,0,0);-ms-transform:matrix(0.179139,-0.003583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179139,-0.003583,0.004999,0.249950,0,0);}
.mef_c01083{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);}
.mf9_c01083{transform:matrix(0.179789,-0.003056,0.004249,0.249964,0,0);-ms-transform:matrix(0.179789,-0.003056,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179789,-0.003056,0.004249,0.249964,0,0);}
.m9_c01083{transform:matrix(0.180519,-0.003610,0.004999,0.249950,0,0);-ms-transform:matrix(0.180519,-0.003610,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180519,-0.003610,0.004999,0.249950,0,0);}
.mf3_c01083{transform:matrix(0.180669,-0.003071,0.004249,0.249964,0,0);-ms-transform:matrix(0.180669,-0.003071,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180669,-0.003071,0.004249,0.249964,0,0);}
.m92_c01083{transform:matrix(0.180791,-0.003977,0.005499,0.249940,0,0);-ms-transform:matrix(0.180791,-0.003977,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180791,-0.003977,0.005499,0.249940,0,0);}
.m82_c01083{transform:matrix(0.180876,-0.003979,0.005499,0.249940,0,0);-ms-transform:matrix(0.180876,-0.003979,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180876,-0.003979,0.005499,0.249940,0,0);}
.m8f_c01083{transform:matrix(0.181181,-0.003986,0.005499,0.249940,0,0);-ms-transform:matrix(0.181181,-0.003986,0.005499,0.249940,0,0);-webkit-transform:matrix(0.181181,-0.003986,0.005499,0.249940,0,0);}
.m47_c01083{transform:matrix(0.181419,-0.003628,0.004999,0.249950,0,0);-ms-transform:matrix(0.181419,-0.003628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181419,-0.003628,0.004999,0.249950,0,0);}
.ma4_c01083{transform:matrix(0.182195,-0.003826,0.005249,0.249945,0,0);-ms-transform:matrix(0.182195,-0.003826,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182195,-0.003826,0.005249,0.249945,0,0);}
.m81_c01083{transform:matrix(0.182199,-0.003644,0.004999,0.249950,0,0);-ms-transform:matrix(0.182199,-0.003644,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182199,-0.003644,0.004999,0.249950,0,0);}
.mdd_c01083{transform:matrix(0.182444,-0.003649,0.004999,0.249950,0,0);-ms-transform:matrix(0.182444,-0.003649,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182444,-0.003649,0.004999,0.249950,0,0);}
.mc6_c01083{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);}
.mb6_c01083{transform:matrix(0.182785,-0.003838,0.005249,0.249945,0,0);-ms-transform:matrix(0.182785,-0.003838,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182785,-0.003838,0.005249,0.249945,0,0);}
.ma8_c01083{transform:matrix(0.182970,-0.003842,0.005249,0.249945,0,0);-ms-transform:matrix(0.182970,-0.003842,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182970,-0.003842,0.005249,0.249945,0,0);}
.m16_c01083{transform:matrix(0.183343,-0.003667,0.004999,0.249950,0,0);-ms-transform:matrix(0.183343,-0.003667,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183343,-0.003667,0.004999,0.249950,0,0);}
.m12_c01083{transform:matrix(0.183843,-0.003677,0.004999,0.249950,0,0);-ms-transform:matrix(0.183843,-0.003677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183843,-0.003677,0.004999,0.249950,0,0);}
.m63_c01083{transform:matrix(0.184133,-0.003683,0.004999,0.249950,0,0);-ms-transform:matrix(0.184133,-0.003683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184133,-0.003683,0.004999,0.249950,0,0);}
.mfb_c01083{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);}
.m57_c01083{transform:matrix(0.184318,-0.003686,0.004999,0.249950,0,0);-ms-transform:matrix(0.184318,-0.003686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184318,-0.003686,0.004999,0.249950,0,0);}
.m129_c01083{transform:matrix(0.184360,-0.003318,0.004499,0.249960,0,0);-ms-transform:matrix(0.184360,-0.003318,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184360,-0.003318,0.004499,0.249960,0,0);}
.m5d_c01083{transform:matrix(0.184478,-0.003690,0.004999,0.249950,0,0);-ms-transform:matrix(0.184478,-0.003690,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184478,-0.003690,0.004999,0.249950,0,0);}
.me_c01083{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);}
.m11f_c01083{transform:matrix(0.184725,-0.003325,0.004499,0.249960,0,0);-ms-transform:matrix(0.184725,-0.003325,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184725,-0.003325,0.004499,0.249960,0,0);}
.m51_c01083{transform:matrix(0.184923,-0.003698,0.004999,0.249950,0,0);-ms-transform:matrix(0.184923,-0.003698,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184923,-0.003698,0.004999,0.249950,0,0);}
.m96_c01083{transform:matrix(0.184974,-0.003884,0.005249,0.249945,0,0);-ms-transform:matrix(0.184974,-0.003884,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184974,-0.003884,0.005249,0.249945,0,0);}
.mec_c01083{transform:matrix(0.185138,-0.003703,0.004999,0.249950,0,0);-ms-transform:matrix(0.185138,-0.003703,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185138,-0.003703,0.004999,0.249950,0,0);}
.m59_c01083{transform:matrix(0.185238,-0.003705,0.004999,0.249950,0,0);-ms-transform:matrix(0.185238,-0.003705,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185238,-0.003705,0.004999,0.249950,0,0);}
.mdf_c01083{transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);-ms-transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);}
.md3_c01083{transform:matrix(0.186191,-0.003538,0.004749,0.249955,0,0);-ms-transform:matrix(0.186191,-0.003538,0.004749,0.249955,0,0);-webkit-transform:matrix(0.186191,-0.003538,0.004749,0.249955,0,0);}
.mf_c01083{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);}
.m104_c01083{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);}
.m76_c01083{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);}
.mf4_c01083{transform:matrix(0.187353,-0.003185,0.004249,0.249964,0,0);-ms-transform:matrix(0.187353,-0.003185,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187353,-0.003185,0.004249,0.249964,0,0);}
.m19_c01083{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);}
.mb1_c01083{transform:matrix(0.187819,-0.003944,0.005249,0.249945,0,0);-ms-transform:matrix(0.187819,-0.003944,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187819,-0.003944,0.005249,0.249945,0,0);}
.me0_c01083{transform:matrix(0.187897,-0.003758,0.004999,0.249950,0,0);-ms-transform:matrix(0.187897,-0.003758,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187897,-0.003758,0.004999,0.249950,0,0);}
.m53_c01083{transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);}
.m1f_c01083{transform:matrix(0.188292,-0.003766,0.004999,0.249950,0,0);-ms-transform:matrix(0.188292,-0.003766,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188292,-0.003766,0.004999,0.249950,0,0);}
.m34_c01083{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);}
.ma3_c01083{transform:matrix(0.189578,-0.003981,0.005249,0.249945,0,0);-ms-transform:matrix(0.189578,-0.003981,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189578,-0.003981,0.005249,0.249945,0,0);}
.mde_c01083{transform:matrix(0.189752,-0.003795,0.004999,0.249950,0,0);-ms-transform:matrix(0.189752,-0.003795,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189752,-0.003795,0.004999,0.249950,0,0);}
.mbd_c01083{transform:matrix(0.190521,-0.003620,0.004749,0.249955,0,0);-ms-transform:matrix(0.190521,-0.003620,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190521,-0.003620,0.004749,0.249955,0,0);}
.m52_c01083{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);}
.m12d_c01083{transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);-ms-transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190934,-0.003437,0.004499,0.249960,0,0);}
.mb8_c01083{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);}
.m4b_c01083{transform:matrix(0.191062,-0.003821,0.004999,0.249950,0,0);-ms-transform:matrix(0.191062,-0.003821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191062,-0.003821,0.004999,0.249950,0,0);}
.m44_c01083{transform:matrix(0.191297,-0.003826,0.004999,0.249950,0,0);-ms-transform:matrix(0.191297,-0.003826,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191297,-0.003826,0.004999,0.249950,0,0);}
.m4f_c01083{transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);-ms-transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191407,-0.003828,0.004999,0.249950,0,0);}
.m54_c01083{transform:matrix(0.191502,-0.003830,0.004999,0.249950,0,0);-ms-transform:matrix(0.191502,-0.003830,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191502,-0.003830,0.004999,0.249950,0,0);}
.m3b_c01083{transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-ms-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);}
.m2d_c01083{transform:matrix(0.191647,-0.003833,0.004999,0.249950,0,0);-ms-transform:matrix(0.191647,-0.003833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191647,-0.003833,0.004999,0.249950,0,0);}
.m4c_c01083{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);}
.m56_c01083{transform:matrix(0.191782,-0.003836,0.004999,0.249950,0,0);-ms-transform:matrix(0.191782,-0.003836,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191782,-0.003836,0.004999,0.249950,0,0);}
.m95_c01083{transform:matrix(0.191864,-0.004221,0.005499,0.249940,0,0);-ms-transform:matrix(0.191864,-0.004221,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191864,-0.004221,0.005499,0.249940,0,0);}
.mae_c01083{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);}
.mb5_c01083{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);}
.md9_c01083{transform:matrix(0.192495,-0.003657,0.004749,0.249955,0,0);-ms-transform:matrix(0.192495,-0.003657,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192495,-0.003657,0.004749,0.249955,0,0);}
.m39_c01083{transform:matrix(0.192856,-0.003857,0.004999,0.249950,0,0);-ms-transform:matrix(0.192856,-0.003857,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192856,-0.003857,0.004999,0.249950,0,0);}
.m8e_c01083{transform:matrix(0.192898,-0.004244,0.005499,0.249940,0,0);-ms-transform:matrix(0.192898,-0.004244,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192898,-0.004244,0.005499,0.249940,0,0);}
.m17_c01083{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);}
.mb4_c01083{transform:matrix(0.193007,-0.004053,0.005249,0.249945,0,0);-ms-transform:matrix(0.193007,-0.004053,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193007,-0.004053,0.005249,0.249945,0,0);}
.mf8_c01083{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);}
.m111_c01083{transform:matrix(0.193149,-0.003477,0.004499,0.249960,0,0);-ms-transform:matrix(0.193149,-0.003477,0.004499,0.249960,0,0);-webkit-transform:matrix(0.193149,-0.003477,0.004499,0.249960,0,0);}
.md1_c01083{transform:matrix(0.193325,-0.003673,0.004749,0.249955,0,0);-ms-transform:matrix(0.193325,-0.003673,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193325,-0.003673,0.004749,0.249955,0,0);}
.mdb_c01083{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);}
.m69_c01083{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);}
.mc0_c01083{transform:matrix(0.193825,-0.003683,0.004749,0.249955,0,0);-ms-transform:matrix(0.193825,-0.003683,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193825,-0.003683,0.004749,0.249955,0,0);}
.m101_c01083{transform:matrix(0.194342,-0.003304,0.004249,0.249964,0,0);-ms-transform:matrix(0.194342,-0.003304,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194342,-0.003304,0.004249,0.249964,0,0);}
.mfe_c01083{transform:matrix(0.194627,-0.003309,0.004249,0.249964,0,0);-ms-transform:matrix(0.194627,-0.003309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194627,-0.003309,0.004249,0.249964,0,0);}
.mc1_c01083{transform:matrix(0.194780,-0.003701,0.004749,0.249955,0,0);-ms-transform:matrix(0.194780,-0.003701,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194780,-0.003701,0.004749,0.249955,0,0);}
.m7e_c01083{transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);-ms-transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);}
.m27_c01083{transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);-ms-transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195421,-0.003908,0.004999,0.249950,0,0);}
.m50_c01083{transform:matrix(0.195696,-0.003914,0.004999,0.249950,0,0);-ms-transform:matrix(0.195696,-0.003914,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195696,-0.003914,0.004999,0.249950,0,0);}
.mf5_c01083{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);}
.m8b_c01083{transform:matrix(0.195963,-0.004311,0.005499,0.249940,0,0);-ms-transform:matrix(0.195963,-0.004311,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195963,-0.004311,0.005499,0.249940,0,0);}
.m115_c01083{transform:matrix(0.196293,-0.003533,0.004499,0.249960,0,0);-ms-transform:matrix(0.196293,-0.003533,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196293,-0.003533,0.004499,0.249960,0,0);}
.m23_c01083{transform:matrix(0.196556,-0.003931,0.004999,0.249950,0,0);-ms-transform:matrix(0.196556,-0.003931,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196556,-0.003931,0.004999,0.249950,0,0);}
.mcb_c01083{transform:matrix(0.196784,-0.003739,0.004749,0.249955,0,0);-ms-transform:matrix(0.196784,-0.003739,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196784,-0.003739,0.004749,0.249955,0,0);}
.m49_c01083{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);}
.me9_c01083{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);}
.m7b_c01083{transform:matrix(0.197610,-0.003952,0.004999,0.249950,0,0);-ms-transform:matrix(0.197610,-0.003952,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197610,-0.003952,0.004999,0.249950,0,0);}
.me1_c01083{transform:matrix(0.197635,-0.003953,0.004999,0.249950,0,0);-ms-transform:matrix(0.197635,-0.003953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197635,-0.003953,0.004999,0.249950,0,0);}
.m10d_c01083{transform:matrix(0.197738,-0.003559,0.004499,0.249960,0,0);-ms-transform:matrix(0.197738,-0.003559,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197738,-0.003559,0.004499,0.249960,0,0);}
.mc7_c01083{transform:matrix(0.198914,-0.003779,0.004749,0.249955,0,0);-ms-transform:matrix(0.198914,-0.003779,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198914,-0.003779,0.004749,0.249955,0,0);}
.meb_c01083{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);}
.m107_c01083{transform:matrix(0.199363,-0.003589,0.004499,0.249960,0,0);-ms-transform:matrix(0.199363,-0.003589,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199363,-0.003589,0.004499,0.249960,0,0);}
.mfa_c01083{transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);-ms-transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);}
.mc2_c01083{transform:matrix(0.200124,-0.003802,0.004749,0.249955,0,0);-ms-transform:matrix(0.200124,-0.003802,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200124,-0.003802,0.004749,0.249955,0,0);}
.ma7_c01083{transform:matrix(0.200406,-0.004209,0.005249,0.249945,0,0);-ms-transform:matrix(0.200406,-0.004209,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200406,-0.004209,0.005249,0.249945,0,0);}
.m5_c01083{transform:matrix(0.200500,-0.004010,0.004999,0.249950,0,0);-ms-transform:matrix(0.200500,-0.004010,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200500,-0.004010,0.004999,0.249950,0,0);}
.me8_c01083{transform:matrix(0.200695,-0.004014,0.004999,0.249950,0,0);-ms-transform:matrix(0.200695,-0.004014,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200695,-0.004014,0.004999,0.249950,0,0);}
.m90_c01083{transform:matrix(0.200721,-0.004416,0.005499,0.249940,0,0);-ms-transform:matrix(0.200721,-0.004416,0.005499,0.249940,0,0);-webkit-transform:matrix(0.200721,-0.004416,0.005499,0.249940,0,0);}
.m1a_c01083{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);}
.m113_c01083{transform:matrix(0.201387,-0.003625,0.004499,0.249960,0,0);-ms-transform:matrix(0.201387,-0.003625,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201387,-0.003625,0.004499,0.249960,0,0);}
.m2c_c01083{transform:matrix(0.201415,-0.004028,0.004999,0.249950,0,0);-ms-transform:matrix(0.201415,-0.004028,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201415,-0.004028,0.004999,0.249950,0,0);}
.m48_c01083{transform:matrix(0.201420,-0.004028,0.004999,0.249950,0,0);-ms-transform:matrix(0.201420,-0.004028,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201420,-0.004028,0.004999,0.249950,0,0);}
.me5_c01083{transform:matrix(0.201765,-0.004035,0.004999,0.249950,0,0);-ms-transform:matrix(0.201765,-0.004035,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201765,-0.004035,0.004999,0.249950,0,0);}
.me4_c01083{transform:matrix(0.202355,-0.004047,0.004999,0.249950,0,0);-ms-transform:matrix(0.202355,-0.004047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202355,-0.004047,0.004999,0.249950,0,0);}
.m31_c01083{transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);-ms-transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);}
.m5c_c01083{transform:matrix(0.202480,-0.004050,0.004999,0.249950,0,0);-ms-transform:matrix(0.202480,-0.004050,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202480,-0.004050,0.004999,0.249950,0,0);}
.mac_c01083{transform:matrix(0.202685,-0.004256,0.005249,0.249945,0,0);-ms-transform:matrix(0.202685,-0.004256,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202685,-0.004256,0.005249,0.249945,0,0);}
.m11a_c01083{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);}
.m77_c01083{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);}
.m4a_c01083{transform:matrix(0.203459,-0.004069,0.004999,0.249950,0,0);-ms-transform:matrix(0.203459,-0.004069,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203459,-0.004069,0.004999,0.249950,0,0);}
.m6f_c01083{transform:matrix(0.203629,-0.004073,0.004999,0.249950,0,0);-ms-transform:matrix(0.203629,-0.004073,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203629,-0.004073,0.004999,0.249950,0,0);}
.mea_c01083{transform:matrix(0.205064,-0.004101,0.004999,0.249950,0,0);-ms-transform:matrix(0.205064,-0.004101,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205064,-0.004101,0.004999,0.249950,0,0);}
.md8_c01083{transform:matrix(0.206158,-0.003917,0.004749,0.249955,0,0);-ms-transform:matrix(0.206158,-0.003917,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206158,-0.003917,0.004749,0.249955,0,0);}
.m9e_c01083{transform:matrix(0.206509,-0.004337,0.005249,0.249945,0,0);-ms-transform:matrix(0.206509,-0.004337,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206509,-0.004337,0.005249,0.249945,0,0);}
.mff_c01083{transform:matrix(0.206510,-0.003511,0.004249,0.249964,0,0);-ms-transform:matrix(0.206510,-0.003511,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206510,-0.003511,0.004249,0.249964,0,0);}
.m38_c01083{transform:matrix(0.207294,-0.004146,0.004999,0.249950,0,0);-ms-transform:matrix(0.207294,-0.004146,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207294,-0.004146,0.004999,0.249950,0,0);}
.m87_c01083{transform:matrix(0.207555,-0.004566,0.005499,0.249940,0,0);-ms-transform:matrix(0.207555,-0.004566,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207555,-0.004566,0.005499,0.249940,0,0);}
.me3_c01083{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);}
.m117_c01083{transform:matrix(0.208141,-0.003747,0.004499,0.249960,0,0);-ms-transform:matrix(0.208141,-0.003747,0.004499,0.249960,0,0);-webkit-transform:matrix(0.208141,-0.003747,0.004499,0.249960,0,0);}
.m41_c01083{transform:matrix(0.209153,-0.004183,0.004999,0.249950,0,0);-ms-transform:matrix(0.209153,-0.004183,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209153,-0.004183,0.004999,0.249950,0,0);}
.m127_c01083{transform:matrix(0.209486,-0.003771,0.004499,0.249960,0,0);-ms-transform:matrix(0.209486,-0.003771,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209486,-0.003771,0.004499,0.249960,0,0);}
.m2a_c01083{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);}
.m1e_c01083{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);}
.m6b_c01083{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);}
.m106_c01083{transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);-ms-transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210846,-0.003795,0.004499,0.249960,0,0);}
.m10f_c01083{transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);-ms-transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211361,-0.003804,0.004499,0.249960,0,0);}
.m121_c01083{transform:matrix(0.211721,-0.003811,0.004499,0.249960,0,0);-ms-transform:matrix(0.211721,-0.003811,0.004499,0.249960,0,0);-webkit-transform:matrix(0.211721,-0.003811,0.004499,0.249960,0,0);}
.m1d_c01083{transform:matrix(0.211868,-0.004237,0.004999,0.249950,0,0);-ms-transform:matrix(0.211868,-0.004237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211868,-0.004237,0.004999,0.249950,0,0);}
.m2_c01083{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);}
.md7_c01083{transform:matrix(0.213396,-0.004055,0.004749,0.249955,0,0);-ms-transform:matrix(0.213396,-0.004055,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213396,-0.004055,0.004749,0.249955,0,0);}
.m9c_c01083{transform:matrix(0.214958,-0.004514,0.005249,0.249945,0,0);-ms-transform:matrix(0.214958,-0.004514,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214958,-0.004514,0.005249,0.249945,0,0);}
.m33_c01083{transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);-ms-transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216407,-0.004328,0.004999,0.249950,0,0);}
.m125_c01083{transform:matrix(0.217010,-0.003906,0.004499,0.249960,0,0);-ms-transform:matrix(0.217010,-0.003906,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217010,-0.003906,0.004499,0.249960,0,0);}
.m29_c01083{transform:matrix(0.217012,-0.004340,0.004999,0.249950,0,0);-ms-transform:matrix(0.217012,-0.004340,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217012,-0.004340,0.004999,0.249950,0,0);}
.mf7_c01083{transform:matrix(0.217599,-0.003699,0.004249,0.249964,0,0);-ms-transform:matrix(0.217599,-0.003699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217599,-0.003699,0.004249,0.249964,0,0);}
.m10a_c01083{transform:matrix(0.218000,-0.003924,0.004499,0.249960,0,0);-ms-transform:matrix(0.218000,-0.003924,0.004499,0.249960,0,0);-webkit-transform:matrix(0.218000,-0.003924,0.004499,0.249960,0,0);}
.m13_c01083{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);}
.m42_c01083{transform:matrix(0.218781,-0.004376,0.004999,0.249950,0,0);-ms-transform:matrix(0.218781,-0.004376,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218781,-0.004376,0.004999,0.249950,0,0);}
.m105_c01083{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);}
.mb7_c01083{transform:matrix(0.219962,-0.002420,0.002750,0.249985,0,0);-ms-transform:matrix(0.219962,-0.002420,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219962,-0.002420,0.002750,0.249985,0,0);}
.m9d_c01083{transform:matrix(0.220481,-0.004630,0.005249,0.249945,0,0);-ms-transform:matrix(0.220481,-0.004630,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220481,-0.004630,0.005249,0.249945,0,0);}
.md4_c01083{transform:matrix(0.222685,-0.004231,0.004749,0.249955,0,0);-ms-transform:matrix(0.222685,-0.004231,0.004749,0.249955,0,0);-webkit-transform:matrix(0.222685,-0.004231,0.004749,0.249955,0,0);}
.m10c_c01083{transform:matrix(0.222834,-0.004011,0.004499,0.249960,0,0);-ms-transform:matrix(0.222834,-0.004011,0.004499,0.249960,0,0);-webkit-transform:matrix(0.222834,-0.004011,0.004499,0.249960,0,0);}
.m83_c01083{transform:matrix(0.222881,-0.004903,0.005499,0.249940,0,0);-ms-transform:matrix(0.222881,-0.004903,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222881,-0.004903,0.005499,0.249940,0,0);}
.mf2_c01083{transform:matrix(0.223073,-0.003792,0.004249,0.249964,0,0);-ms-transform:matrix(0.223073,-0.003792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223073,-0.003792,0.004249,0.249964,0,0);}
.md5_c01083{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);}
.mb3_c01083{transform:matrix(0.227460,-0.004777,0.005249,0.249945,0,0);-ms-transform:matrix(0.227460,-0.004777,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227460,-0.004777,0.005249,0.249945,0,0);}
.m3f_c01083{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);}
.m120_c01083{transform:matrix(0.227588,-0.004097,0.004499,0.249960,0,0);-ms-transform:matrix(0.227588,-0.004097,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227588,-0.004097,0.004499,0.249960,0,0);}
.me7_c01083{transform:matrix(0.227989,-0.004560,0.004999,0.249950,0,0);-ms-transform:matrix(0.227989,-0.004560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227989,-0.004560,0.004999,0.249950,0,0);}
.m9a_c01083{transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);-ms-transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);}
.mca_c01083{transform:matrix(0.229354,-0.004358,0.004749,0.249955,0,0);-ms-transform:matrix(0.229354,-0.004358,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229354,-0.004358,0.004749,0.249955,0,0);}
.m43_c01083{transform:matrix(0.230854,-0.004617,0.004999,0.249950,0,0);-ms-transform:matrix(0.230854,-0.004617,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230854,-0.004617,0.004999,0.249950,0,0);}
.m3e_c01083{transform:matrix(0.231179,-0.004624,0.004999,0.249950,0,0);-ms-transform:matrix(0.231179,-0.004624,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231179,-0.004624,0.004999,0.249950,0,0);}
.m9f_c01083{transform:matrix(0.231259,-0.004856,0.005249,0.249945,0,0);-ms-transform:matrix(0.231259,-0.004856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231259,-0.004856,0.005249,0.249945,0,0);}
.med_c01083{transform:matrix(0.231512,-0.003936,0.004249,0.249964,0,0);-ms-transform:matrix(0.231512,-0.003936,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231512,-0.003936,0.004249,0.249964,0,0);}
.mfc_c01083{transform:matrix(0.232696,-0.003956,0.004249,0.249964,0,0);-ms-transform:matrix(0.232696,-0.003956,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232696,-0.003956,0.004249,0.249964,0,0);}
.m21_c01083{transform:matrix(0.234133,-0.004683,0.004999,0.249950,0,0);-ms-transform:matrix(0.234133,-0.004683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234133,-0.004683,0.004999,0.249950,0,0);}
.m89_c01083{transform:matrix(0.234298,-0.005155,0.005499,0.249940,0,0);-ms-transform:matrix(0.234298,-0.005155,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234298,-0.005155,0.005499,0.249940,0,0);}
.md6_c01083{transform:matrix(0.236507,-0.004494,0.004749,0.249955,0,0);-ms-transform:matrix(0.236507,-0.004494,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236507,-0.004494,0.004749,0.249955,0,0);}
.m5a_c01083{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);}
.m119_c01083{transform:matrix(0.237257,-0.004271,0.004499,0.249960,0,0);-ms-transform:matrix(0.237257,-0.004271,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237257,-0.004271,0.004499,0.249960,0,0);}
.m65_c01083{transform:matrix(0.239192,-0.004784,0.004999,0.249950,0,0);-ms-transform:matrix(0.239192,-0.004784,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239192,-0.004784,0.004999,0.249950,0,0);}
.mc3_c01083{transform:matrix(0.241651,-0.004591,0.004749,0.249955,0,0);-ms-transform:matrix(0.241651,-0.004591,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241651,-0.004591,0.004749,0.249955,0,0);}
.mbb_c01083{transform:matrix(0.242121,-0.004600,0.004749,0.249955,0,0);-ms-transform:matrix(0.242121,-0.004600,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242121,-0.004600,0.004749,0.249955,0,0);}
.m109_c01083{transform:matrix(0.242426,-0.004364,0.004499,0.249960,0,0);-ms-transform:matrix(0.242426,-0.004364,0.004499,0.249960,0,0);-webkit-transform:matrix(0.242426,-0.004364,0.004499,0.249960,0,0);}
.m3d_c01083{transform:matrix(0.243796,-0.004876,0.004999,0.249950,0,0);-ms-transform:matrix(0.243796,-0.004876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243796,-0.004876,0.004999,0.249950,0,0);}
.m18_c01083{transform:matrix(0.244436,-0.004889,0.004999,0.249950,0,0);-ms-transform:matrix(0.244436,-0.004889,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244436,-0.004889,0.004999,0.249950,0,0);}
.m2b_c01083{transform:matrix(0.244611,-0.004892,0.004999,0.249950,0,0);-ms-transform:matrix(0.244611,-0.004892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244611,-0.004892,0.004999,0.249950,0,0);}
.mfd_c01083{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);}
.mf0_c01083{transform:matrix(0.246384,-0.004189,0.004249,0.249964,0,0);-ms-transform:matrix(0.246384,-0.004189,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246384,-0.004189,0.004249,0.249964,0,0);}
.mb_c01083{transform:matrix(0.247081,-0.004942,0.004999,0.249950,0,0);-ms-transform:matrix(0.247081,-0.004942,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247081,-0.004942,0.004999,0.249950,0,0);}
.m35_c01083{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);}
.m97_c01083{transform:matrix(0.247815,-0.005204,0.005249,0.249945,0,0);-ms-transform:matrix(0.247815,-0.005204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247815,-0.005204,0.005249,0.249945,0,0);}
.m12c_c01083{transform:matrix(0.248140,-0.004467,0.004499,0.249960,0,0);-ms-transform:matrix(0.248140,-0.004467,0.004499,0.249960,0,0);-webkit-transform:matrix(0.248140,-0.004467,0.004499,0.249960,0,0);}
.m78_c01083{transform:matrix(0.252365,-0.005047,0.004999,0.249950,0,0);-ms-transform:matrix(0.252365,-0.005047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252365,-0.005047,0.004999,0.249950,0,0);}
.m91_c01083{transform:matrix(0.253794,-0.005583,0.005499,0.249940,0,0);-ms-transform:matrix(0.253794,-0.005583,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253794,-0.005583,0.005499,0.249940,0,0);}
.m30_c01083{transform:matrix(0.253859,-0.005077,0.004999,0.249950,0,0);-ms-transform:matrix(0.253859,-0.005077,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253859,-0.005077,0.004999,0.249950,0,0);}
.m93_c01083{transform:matrix(0.255888,-0.005630,0.005499,0.249940,0,0);-ms-transform:matrix(0.255888,-0.005630,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255888,-0.005630,0.005499,0.249940,0,0);}
.m11b_c01083{transform:matrix(0.260288,-0.004685,0.004499,0.249960,0,0);-ms-transform:matrix(0.260288,-0.004685,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260288,-0.004685,0.004499,0.249960,0,0);}
.m40_c01083{transform:matrix(0.264332,-0.005287,0.004999,0.249950,0,0);-ms-transform:matrix(0.264332,-0.005287,0.004999,0.249950,0,0);-webkit-transform:matrix(0.264332,-0.005287,0.004999,0.249950,0,0);}
.m28_c01083{transform:matrix(0.265722,-0.005314,0.004999,0.249950,0,0);-ms-transform:matrix(0.265722,-0.005314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.265722,-0.005314,0.004999,0.249950,0,0);}
.me6_c01083{transform:matrix(0.266697,-0.005334,0.004999,0.249950,0,0);-ms-transform:matrix(0.266697,-0.005334,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266697,-0.005334,0.004999,0.249950,0,0);}
.m26_c01083{transform:matrix(0.278429,-0.005569,0.004999,0.249950,0,0);-ms-transform:matrix(0.278429,-0.005569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.278429,-0.005569,0.004999,0.249950,0,0);}
.m110_c01083{transform:matrix(0.281159,-0.005061,0.004499,0.249960,0,0);-ms-transform:matrix(0.281159,-0.005061,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281159,-0.005061,0.004499,0.249960,0,0);}
.m11d_c01083{transform:matrix(0.281334,-0.005064,0.004499,0.249960,0,0);-ms-transform:matrix(0.281334,-0.005064,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281334,-0.005064,0.004499,0.249960,0,0);}
.m72_c01083{transform:matrix(0.289987,-0.005800,0.004999,0.249950,0,0);-ms-transform:matrix(0.289987,-0.005800,0.004999,0.249950,0,0);-webkit-transform:matrix(0.289987,-0.005800,0.004999,0.249950,0,0);}
.m12f_c01083{transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291300,0.000000,0.000000,0.250000,0,0);}
.m20_c01083{transform:matrix(0.314172,-0.006283,0.004999,0.249950,0,0);-ms-transform:matrix(0.314172,-0.006283,0.004999,0.249950,0,0);-webkit-transform:matrix(0.314172,-0.006283,0.004999,0.249950,0,0);}
.m108_c01083{transform:matrix(0.321833,-0.005793,0.004499,0.249960,0,0);-ms-transform:matrix(0.321833,-0.005793,0.004499,0.249960,0,0);-webkit-transform:matrix(0.321833,-0.005793,0.004499,0.249960,0,0);}
.m11c_c01083{transform:matrix(0.326247,-0.005872,0.004499,0.249960,0,0);-ms-transform:matrix(0.326247,-0.005872,0.004499,0.249960,0,0);-webkit-transform:matrix(0.326247,-0.005872,0.004499,0.249960,0,0);}
.m7c_c01083{transform:matrix(0.328454,-0.006569,0.004999,0.249950,0,0);-ms-transform:matrix(0.328454,-0.006569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.328454,-0.006569,0.004999,0.249950,0,0);}
.m7d_c01083{transform:matrix(0.359413,-0.007188,0.004999,0.249950,0,0);-ms-transform:matrix(0.359413,-0.007188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.359413,-0.007188,0.004999,0.249950,0,0);}
.m73_c01083{transform:matrix(0.367921,-0.007358,0.004999,0.249950,0,0);-ms-transform:matrix(0.367921,-0.007358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.367921,-0.007358,0.004999,0.249950,0,0);}
.m25_c01083{transform:matrix(0.376700,-0.007534,0.004999,0.249950,0,0);-ms-transform:matrix(0.376700,-0.007534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.376700,-0.007534,0.004999,0.249950,0,0);}
.m0_c01083{transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394920,0.000000,0.000000,0.250000,0,0);}
.m24_c01083{transform:matrix(0.427724,-0.008554,0.004999,0.249950,0,0);-ms-transform:matrix(0.427724,-0.008554,0.004999,0.249950,0,0);-webkit-transform:matrix(0.427724,-0.008554,0.004999,0.249950,0,0);}
.m1_c01083{transform:matrix(0.502451,-0.035242,0.017492,0.249387,0,0);-ms-transform:matrix(0.502451,-0.035242,0.017492,0.249387,0,0);-webkit-transform:matrix(0.502451,-0.035242,0.017492,0.249387,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls0_c01083{letter-spacing:0.000000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:0.000000px;}
.fc0_c01083{color:transparent;}
.fs0_c01083{font-size:38.850000px;}
.fs8_c01083{font-size:58.800000px;}
.fs13_c01083{font-size:63.012599px;}
.fs12_c01083{font-size:64.061560px;}
.fsf_c01083{font-size:66.154002px;}
.fs17_c01083{font-size:66.160715px;}
.fs4_c01083{font-size:66.163229px;}
.fs15_c01083{font-size:69.310013px;}
.fs5_c01083{font-size:69.313859px;}
.fs16_c01083{font-size:70.361396px;}
.fs3_c01083{font-size:70.364069px;}
.fs11_c01083{font-size:72.463076px;}
.fs9_c01083{font-size:72.464489px;}
.fsd_c01083{font-size:72.465973px;}
.fsb_c01083{font-size:72.467531px;}
.fs14_c01083{font-size:73.510620px;}
.fs10_c01083{font-size:73.513266px;}
.fs6_c01083{font-size:73.514699px;}
.fsc_c01083{font-size:73.516205px;}
.fsa_c01083{font-size:74.568039px;}
.fse_c01083{font-size:75.616668px;}
.fs18_c01083{font-size:76.662416px;}
.fs2_c01083{font-size:77.715538px;}
.fs7_c01083{font-size:78.765748px;}
.fs1_c01083{font-size:236.356761px;}
.fs19_c01083{font-size:253.050000px;}
.y0_c01083{bottom:0.000000px;}
.y2_c01083{bottom:64.975500px;}
.y131_c01083{bottom:74.898000px;}
.y1_c01083{bottom:101.385000px;}
.y126_c01083{bottom:127.714047px;}
.y127_c01083{bottom:128.242371px;}
.y128_c01083{bottom:129.336732px;}
.y129_c01083{bottom:130.272006px;}
.y12a_c01083{bottom:131.195250px;}
.y12b_c01083{bottom:132.141057px;}
.y12c_c01083{bottom:133.917237px;}
.y12d_c01083{bottom:134.302665px;}
.y12e_c01083{bottom:134.842425px;}
.y12f_c01083{bottom:136.024578px;}
.y130_c01083{bottom:137.920053px;}
.y11a_c01083{bottom:152.554500px;}
.y11b_c01083{bottom:153.187083px;}
.y11c_c01083{bottom:153.638469px;}
.y11d_c01083{bottom:155.033073px;}
.y11e_c01083{bottom:155.354400px;}
.y11f_c01083{bottom:155.986443px;}
.y120_c01083{bottom:156.395142px;}
.y121_c01083{bottom:157.881708px;}
.y122_c01083{bottom:158.159025px;}
.y123_c01083{bottom:159.722649px;}
.y124_c01083{bottom:160.174548px;}
.y125_c01083{bottom:160.461585px;}
.y110_c01083{bottom:175.234500px;}
.y111_c01083{bottom:175.938903px;}
.y112_c01083{bottom:176.308020px;}
.y113_c01083{bottom:177.255747px;}
.y114_c01083{bottom:178.199046px;}
.y115_c01083{bottom:179.088642px;}
.y116_c01083{bottom:180.614952px;}
.y117_c01083{bottom:180.989469px;}
.y118_c01083{bottom:182.442636px;}
.y119_c01083{bottom:182.904336px;}
.y104_c01083{bottom:198.454500px;}
.y105_c01083{bottom:199.008621px;}
.y106_c01083{bottom:199.883448px;}
.y107_c01083{bottom:200.388537px;}
.y108_c01083{bottom:201.317094px;}
.y109_c01083{bottom:201.754602px;}
.y10a_c01083{bottom:202.557609px;}
.y10b_c01083{bottom:203.009508px;}
.y10c_c01083{bottom:203.457330px;}
.y10d_c01083{bottom:204.844617px;}
.y10e_c01083{bottom:205.288740px;}
.y10f_c01083{bottom:206.503983px;}
.yf9_c01083{bottom:220.861716px;}
.yfa_c01083{bottom:221.680010px;}
.yfb_c01083{bottom:222.255747px;}
.yfc_c01083{bottom:222.931923px;}
.yfd_c01083{bottom:223.788759px;}
.yfe_c01083{bottom:224.969035px;}
.yff_c01083{bottom:225.963195px;}
.y100_c01083{bottom:226.534164px;}
.y101_c01083{bottom:227.456487px;}
.y102_c01083{bottom:228.192208px;}
.y103_c01083{bottom:228.618638px;}
.yef_c01083{bottom:243.813000px;}
.yf0_c01083{bottom:244.143888px;}
.yf1_c01083{bottom:244.680918px;}
.yf2_c01083{bottom:245.869243px;}
.yf3_c01083{bottom:246.916146px;}
.yf4_c01083{bottom:247.934132px;}
.yf5_c01083{bottom:248.930799px;}
.yf6_c01083{bottom:249.335510px;}
.yf7_c01083{bottom:250.151331px;}
.yf8_c01083{bottom:250.749663px;}
.ye5_c01083{bottom:266.758260px;}
.ye6_c01083{bottom:267.722670px;}
.ye7_c01083{bottom:268.118370px;}
.ye8_c01083{bottom:268.976340px;}
.ye9_c01083{bottom:269.366730px;}
.yea_c01083{bottom:269.797740px;}
.yeb_c01083{bottom:270.904320px;}
.yec_c01083{bottom:271.496460px;}
.yed_c01083{bottom:273.310110px;}
.yee_c01083{bottom:273.861330px;}
.ydd_c01083{bottom:289.174500px;}
.yde_c01083{bottom:289.941690px;}
.ydf_c01083{bottom:290.692260px;}
.ye0_c01083{bottom:291.620970px;}
.ye1_c01083{bottom:293.425170px;}
.ye2_c01083{bottom:295.124100px;}
.ye3_c01083{bottom:295.612380px;}
.ye4_c01083{bottom:296.731050px;}
.yd5_c01083{bottom:311.856000px;}
.yd6_c01083{bottom:313.825948px;}
.yd7_c01083{bottom:315.661092px;}
.yd8_c01083{bottom:315.908273px;}
.yd9_c01083{bottom:317.330109px;}
.yda_c01083{bottom:318.508812px;}
.ydb_c01083{bottom:319.406505px;}
.ydc_c01083{bottom:320.147420px;}
.yc8_c01083{bottom:334.530683px;}
.yc9_c01083{bottom:335.612827px;}
.yca_c01083{bottom:336.341344px;}
.ycb_c01083{bottom:336.848046px;}
.ycc_c01083{bottom:337.490436px;}
.ycd_c01083{bottom:337.890890px;}
.yce_c01083{bottom:338.644857px;}
.ycf_c01083{bottom:339.178662px;}
.yd0_c01083{bottom:340.605429px;}
.yd1_c01083{bottom:341.482602px;}
.yd2_c01083{bottom:341.975481px;}
.yd3_c01083{bottom:342.898824px;}
.yd4_c01083{bottom:343.216143px;}
.ybd_c01083{bottom:357.484500px;}
.ybe_c01083{bottom:358.080150px;}
.ybf_c01083{bottom:359.295362px;}
.yc0_c01083{bottom:360.363171px;}
.yc1_c01083{bottom:361.389656px;}
.yc2_c01083{bottom:362.429193px;}
.yc3_c01083{bottom:363.020996px;}
.yc4_c01083{bottom:363.698041px;}
.yc5_c01083{bottom:364.837272px;}
.yc6_c01083{bottom:365.271983px;}
.yc7_c01083{bottom:365.853411px;}
.yb9_c01083{bottom:379.891500px;}
.yba_c01083{bottom:380.280669px;}
.ybb_c01083{bottom:380.779629px;}
.ybc_c01083{bottom:384.048609px;}
.yae_c01083{bottom:402.566504px;}
.yaf_c01083{bottom:403.101054px;}
.yb0_c01083{bottom:404.284253px;}
.yb1_c01083{bottom:404.851323px;}
.yb2_c01083{bottom:406.276581px;}
.yb3_c01083{bottom:406.783967px;}
.yb4_c01083{bottom:408.081023px;}
.yb5_c01083{bottom:409.327635px;}
.yb6_c01083{bottom:409.764436px;}
.yb7_c01083{bottom:410.866404px;}
.yb8_c01083{bottom:411.389760px;}
.ya4_c01083{bottom:424.441308px;}
.ya5_c01083{bottom:425.011506px;}
.ya6_c01083{bottom:427.280663px;}
.ya7_c01083{bottom:428.041112px;}
.ya8_c01083{bottom:428.550980px;}
.ya9_c01083{bottom:429.889300px;}
.yaa_c01083{bottom:431.428362px;}
.yab_c01083{bottom:431.927394px;}
.yac_c01083{bottom:433.006976px;}
.yad_c01083{bottom:433.532298px;}
.y98_c01083{bottom:447.666000px;}
.y99_c01083{bottom:449.129490px;}
.y9a_c01083{bottom:449.487582px;}
.y9b_c01083{bottom:450.637269px;}
.y9c_c01083{bottom:451.461152px;}
.y9d_c01083{bottom:452.350554px;}
.y9e_c01083{bottom:453.132731px;}
.y9f_c01083{bottom:454.056752px;}
.ya0_c01083{bottom:454.607813px;}
.ya1_c01083{bottom:456.251734px;}
.ya2_c01083{bottom:456.728613px;}
.ya3_c01083{bottom:457.531548px;}
.y8f_c01083{bottom:469.800702px;}
.y90_c01083{bottom:470.558880px;}
.y91_c01083{bottom:471.581961px;}
.y92_c01083{bottom:473.463612px;}
.y93_c01083{bottom:474.740310px;}
.y94_c01083{bottom:475.189725px;}
.y95_c01083{bottom:476.402484px;}
.y96_c01083{bottom:476.941647px;}
.y97_c01083{bottom:478.847685px;}
.y84_c01083{bottom:492.217500px;}
.y85_c01083{bottom:494.248485px;}
.y86_c01083{bottom:494.712465px;}
.y87_c01083{bottom:495.400944px;}
.y88_c01083{bottom:496.055103px;}
.y89_c01083{bottom:498.484629px;}
.y8a_c01083{bottom:499.203732px;}
.y8b_c01083{bottom:499.671177px;}
.y8c_c01083{bottom:500.469942px;}
.y8d_c01083{bottom:501.378531px;}
.y8e_c01083{bottom:501.818520px;}
.y7a_c01083{bottom:515.974500px;}
.y7b_c01083{bottom:516.601410px;}
.y7c_c01083{bottom:517.346790px;}
.y7d_c01083{bottom:518.523960px;}
.y7e_c01083{bottom:520.001100px;}
.y7f_c01083{bottom:521.162310px;}
.y80_c01083{bottom:521.527170px;}
.y81_c01083{bottom:522.791370px;}
.y82_c01083{bottom:524.125350px;}
.y83_c01083{bottom:524.627340px;}
.y79_c01083{bottom:538.380000px;}
.y6a_c01083{bottom:561.334500px;}
.y6b_c01083{bottom:561.891120px;}
.y6c_c01083{bottom:563.171190px;}
.y6d_c01083{bottom:563.970330px;}
.y6e_c01083{bottom:564.324720px;}
.y6f_c01083{bottom:564.718950px;}
.y70_c01083{bottom:565.093530px;}
.y71_c01083{bottom:565.634400px;}
.y72_c01083{bottom:566.822040px;}
.y73_c01083{bottom:567.350040px;}
.y74_c01083{bottom:568.123800px;}
.y75_c01083{bottom:568.637130px;}
.y76_c01083{bottom:569.479800px;}
.y77_c01083{bottom:569.884710px;}
.y78_c01083{bottom:570.304650px;}
.y5e_c01083{bottom:582.905790px;}
.y5f_c01083{bottom:584.439480px;}
.y60_c01083{bottom:585.049020px;}
.y61_c01083{bottom:586.134270px;}
.y62_c01083{bottom:587.070960px;}
.y63_c01083{bottom:587.393670px;}
.y64_c01083{bottom:587.918010px;}
.y65_c01083{bottom:589.152210px;}
.y66_c01083{bottom:589.972800px;}
.y67_c01083{bottom:590.717640px;}
.y68_c01083{bottom:591.861570px;}
.y69_c01083{bottom:593.200050px;}
.y51_c01083{bottom:606.394680px;}
.y52_c01083{bottom:607.133070px;}
.y53_c01083{bottom:607.536330px;}
.y54_c01083{bottom:608.221560px;}
.y55_c01083{bottom:609.294630px;}
.y56_c01083{bottom:609.669390px;}
.y57_c01083{bottom:610.904820px;}
.y58_c01083{bottom:611.303130px;}
.y59_c01083{bottom:612.396480px;}
.y5a_c01083{bottom:613.583520px;}
.y5b_c01083{bottom:614.060550px;}
.y5c_c01083{bottom:615.726840px;}
.y5d_c01083{bottom:616.197780px;}
.y48_c01083{bottom:629.081640px;}
.y49_c01083{bottom:629.966430px;}
.y4a_c01083{bottom:631.424850px;}
.y4b_c01083{bottom:632.846670px;}
.y4c_c01083{bottom:634.304190px;}
.y4d_c01083{bottom:634.842810px;}
.y4e_c01083{bottom:636.288960px;}
.y4f_c01083{bottom:637.678800px;}
.y50_c01083{bottom:638.172150px;}
.y3b_c01083{bottom:651.225750px;}
.y3c_c01083{bottom:652.035030px;}
.y3d_c01083{bottom:652.985520px;}
.y3e_c01083{bottom:653.531100px;}
.y3f_c01083{bottom:653.989980px;}
.y40_c01083{bottom:655.085220px;}
.y41_c01083{bottom:655.670310px;}
.y42_c01083{bottom:657.129480px;}
.y43_c01083{bottom:657.880710px;}
.y44_c01083{bottom:659.074470px;}
.y45_c01083{bottom:659.761980px;}
.y46_c01083{bottom:660.997410px;}
.y47_c01083{bottom:661.960440px;}
.y2f_c01083{bottom:673.369470px;}
.y30_c01083{bottom:674.107080px;}
.y31_c01083{bottom:675.776670px;}
.y32_c01083{bottom:676.801050px;}
.y33_c01083{bottom:677.453520px;}
.y34_c01083{bottom:678.491190px;}
.y35_c01083{bottom:680.323020px;}
.y36_c01083{bottom:680.826810px;}
.y37_c01083{bottom:681.938160px;}
.y38_c01083{bottom:682.559250px;}
.y39_c01083{bottom:682.986870px;}
.y3a_c01083{bottom:683.938470px;}
.y24_c01083{bottom:696.595530px;}
.y25_c01083{bottom:697.145340px;}
.y26_c01083{bottom:698.287680px;}
.y27_c01083{bottom:698.727990px;}
.y28_c01083{bottom:699.287250px;}
.y29_c01083{bottom:701.416950px;}
.y2a_c01083{bottom:702.074070px;}
.y2b_c01083{bottom:703.305960px;}
.y2c_c01083{bottom:704.410170px;}
.y2d_c01083{bottom:705.239580px;}
.y2e_c01083{bottom:706.800600px;}
.y18_c01083{bottom:719.277960px;}
.y19_c01083{bottom:720.460410px;}
.y1a_c01083{bottom:720.887400px;}
.y1b_c01083{bottom:722.080290px;}
.y1c_c01083{bottom:722.672430px;}
.y1d_c01083{bottom:724.177830px;}
.y1e_c01083{bottom:724.564920px;}
.y1f_c01083{bottom:725.634900px;}
.y20_c01083{bottom:726.657060px;}
.y21_c01083{bottom:727.839630px;}
.y22_c01083{bottom:728.643150px;}
.y23_c01083{bottom:729.118080px;}
.yd_c01083{bottom:743.039730px;}
.ye_c01083{bottom:743.829360px;}
.yf_c01083{bottom:744.304920px;}
.y10_c01083{bottom:745.900080px;}
.y11_c01083{bottom:746.265090px;}
.y12_c01083{bottom:747.114720px;}
.y13_c01083{bottom:747.687120px;}
.y14_c01083{bottom:748.803180px;}
.y15_c01083{bottom:749.252610px;}
.y16_c01083{bottom:750.696030px;}
.y17_c01083{bottom:751.752690px;}
.y3_c01083{bottom:767.344500px;}
.y4_c01083{bottom:768.345900px;}
.y5_c01083{bottom:769.068930px;}
.y6_c01083{bottom:769.436490px;}
.y7_c01083{bottom:770.100990px;}
.y8_c01083{bottom:771.283350px;}
.y9_c01083{bottom:771.727260px;}
.ya_c01083{bottom:773.601000px;}
.yb_c01083{bottom:774.696990px;}
.yc_c01083{bottom:775.808640px;}
.h2_c01083{height:38.850000px;}
.ha_c01083{height:58.800000px;}
.h15_c01083{height:63.012599px;}
.h14_c01083{height:64.061560px;}
.h11_c01083{height:66.154002px;}
.h19_c01083{height:66.160715px;}
.h6_c01083{height:66.163229px;}
.h17_c01083{height:69.310013px;}
.h7_c01083{height:69.313859px;}
.h18_c01083{height:70.361396px;}
.h5_c01083{height:70.364069px;}
.h13_c01083{height:72.463076px;}
.hb_c01083{height:72.464489px;}
.hf_c01083{height:72.465973px;}
.hd_c01083{height:72.467531px;}
.h16_c01083{height:73.510620px;}
.h12_c01083{height:73.513266px;}
.h8_c01083{height:73.514699px;}
.he_c01083{height:73.516205px;}
.hc_c01083{height:74.568039px;}
.h10_c01083{height:75.616668px;}
.h1a_c01083{height:76.662416px;}
.h4_c01083{height:77.715538px;}
.h9_c01083{height:78.765748px;}
.h3_c01083{height:236.356761px;}
.h1b_c01083{height:253.050000px;}
.h0_c01083{height:1008.450000px;}
.h1_c01083{height:1008.750000px;}
.w0_c01083{width:711.720000px;}
.w1_c01083{width:711.750000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:75.060000px;}
.x17_c01083{left:115.319490px;}
.x23_c01083{left:116.401890px;}
.x5b_c01083{left:117.703500px;}
.x67_c01083{left:119.379000px;}
.x6f_c01083{left:120.433500px;}
.x89_c01083{left:123.937500px;}
.x95_c01083{left:125.496060px;}
.xa1_c01083{left:127.138500px;}
.x61_c01083{left:137.139000px;}
.x24_c01083{left:140.290950px;}
.x9b_c01083{left:144.179301px;}
.x2_c01083{left:145.222500px;}
.x60_c01083{left:146.340000px;}
.x2d_c01083{left:147.591450px;}
.x37_c01083{left:150.981570px;}
.xc_c01083{left:152.222700px;}
.x6c_c01083{left:154.912449px;}
.x7c_c01083{left:156.748500px;}
.xa2_c01083{left:157.923000px;}
.x3f_c01083{left:159.045990px;}
.x8e_c01083{left:162.819000px;}
.xa5_c01083{left:166.555500px;}
.x18_c01083{left:169.039830px;}
.x47_c01083{left:171.469380px;}
.x9a_c01083{left:177.090000px;}
.x96_c01083{left:182.194950px;}
.x51_c01083{left:183.943620px;}
.x9c_c01083{left:187.283347px;}
.x19_c01083{left:188.438550px;}
.xd_c01083{left:189.828450px;}
.x38_c01083{left:192.278580px;}
.x3_c01083{left:195.292500px;}
.x8f_c01083{left:200.347500px;}
.x7d_c01083{left:202.108500px;}
.x48_c01083{left:204.080220px;}
.x62_c01083{left:205.753500px;}
.x70_c01083{left:207.175500px;}
.x25_c01083{left:209.144340px;}
.x52_c01083{left:210.444030px;}
.xe_c01083{left:212.481000px;}
.x39_c01083{left:216.031170px;}
.x9d_c01083{left:217.619827px;}
.x2e_c01083{left:220.191600px;}
.x40_c01083{left:228.515610px;}
.x4_c01083{left:231.444000px;}
.x26_c01083{left:233.430870px;}
.xa3_c01083{left:234.585000px;}
.x3a_c01083{left:235.973970px;}
.xa6_c01083{left:239.713500px;}
.x1a_c01083{left:242.680890px;}
.xa9_c01083{left:244.304142px;}
.x90_c01083{left:246.783000px;}
.x5_c01083{left:249.822000px;}
.x9e_c01083{left:253.246629px;}
.x49_c01083{left:255.182700px;}
.x53_c01083{left:257.653710px;}
.x71_c01083{left:261.922500px;}
.x2f_c01083{left:264.732930px;}
.x5c_c01083{left:267.214500px;}
.x1b_c01083{left:269.586810px;}
.x4a_c01083{left:273.020340px;}
.x97_c01083{left:278.878740px;}
.x6_c01083{left:283.047000px;}
.x78_c01083{left:284.899439px;}
.x5d_c01083{left:286.926000px;}
.xf_c01083{left:288.412470px;}
.x84_c01083{left:291.588617px;}
.x30_c01083{left:293.079720px;}
.x41_c01083{left:296.230260px;}
.x54_c01083{left:298.410780px;}
.x72_c01083{left:301.155000px;}
.x98_c01083{left:304.255770px;}
.x10_c01083{left:305.762610px;}
.x3b_c01083{left:309.036090px;}
.xa4_c01083{left:310.477500px;}
.x55_c01083{left:312.445440px;}
.xa8_c01083{left:318.612000px;}
.x8a_c01083{left:324.205500px;}
.x27_c01083{left:326.035320px;}
.xaa_c01083{left:329.217513px;}
.x4b_c01083{left:331.865670px;}
.x56_c01083{left:335.211060px;}
.x91_c01083{left:336.993000px;}
.x1c_c01083{left:338.029080px;}
.x7_c01083{left:342.165000px;}
.x73_c01083{left:343.507500px;}
.x11_c01083{left:346.218300px;}
.x4c_c01083{left:350.805780px;}
.x28_c01083{left:354.614610px;}
.x1d_c01083{left:355.657890px;}
.x85_c01083{left:359.366116px;}
.x9f_c01083{left:360.455483px;}
.x8_c01083{left:364.360500px;}
.x42_c01083{left:365.654880px;}
.x79_c01083{left:368.906675px;}
.x3c_c01083{left:372.465780px;}
.x12_c01083{left:373.487760px;}
.x6d_c01083{left:375.364767px;}
.x74_c01083{left:380.754000px;}
.x57_c01083{left:388.892850px;}
.x43_c01083{left:391.310370px;}
.x63_c01083{left:396.529500px;}
.x7f_c01083{left:400.888500px;}
.x4d_c01083{left:402.847230px;}
.x1e_c01083{left:404.279940px;}
.x29_c01083{left:408.180900px;}
.xab_c01083{left:409.971708px;}
.x8b_c01083{left:412.048500px;}
.x64_c01083{left:414.772500px;}
.x31_c01083{left:417.872250px;}
.x92_c01083{left:421.939500px;}
.x58_c01083{left:424.595220px;}
.x13_c01083{left:426.664710px;}
.x80_c01083{left:432.036000px;}
.x6e_c01083{left:433.150554px;}
.x86_c01083{left:434.459116px;}
.x68_c01083{left:436.935000px;}
.x32_c01083{left:439.760430px;}
.xa0_c01083{left:442.813178px;}
.x93_c01083{left:446.353500px;}
.x14_c01083{left:448.085790px;}
.x1f_c01083{left:450.736080px;}
.xac_c01083{left:452.034684px;}
.x2a_c01083{left:456.188520px;}
.x9_c01083{left:458.047500px;}
.x44_c01083{left:460.166490px;}
.x7a_c01083{left:461.528222px;}
.x81_c01083{left:467.670000px;}
.x8c_c01083{left:474.085500px;}
.x65_c01083{left:477.982500px;}
.x87_c01083{left:480.626117px;}
.x4e_c01083{left:482.074140px;}
.x3d_c01083{left:486.908910px;}
.x33_c01083{left:488.050020px;}
.x2b_c01083{left:492.256860px;}
.x69_c01083{left:494.490000px;}
.x7e_c01083{left:499.288500px;}
.x94_c01083{left:502.287000px;}
.x20_c01083{left:504.462420px;}
.x59_c01083{left:506.728800px;}
.x7b_c01083{left:510.578682px;}
.xa_c01083{left:512.847000px;}
.x34_c01083{left:515.052900px;}
.x15_c01083{left:516.805410px;}
.x8d_c01083{left:521.332500px;}
.x5e_c01083{left:524.968500px;}
.x45_c01083{left:526.357170px;}
.x82_c01083{left:527.629500px;}
.x75_c01083{left:529.278000px;}
.x35_c01083{left:533.657790px;}
.x6a_c01083{left:535.789500px;}
.x21_c01083{left:540.961950px;}
.x99_c01083{left:543.299610px;}
.x5f_c01083{left:545.214000px;}
.x46_c01083{left:549.824190px;}
.x76_c01083{left:551.986500px;}
.xa7_c01083{left:553.524000px;}
.x6b_c01083{left:555.789000px;}
.x2c_c01083{left:560.103780px;}
.x4f_c01083{left:561.412050px;}
.x22_c01083{left:562.532580px;}
.x5a_c01083{left:564.949320px;}
.x16_c01083{left:567.087390px;}
.xb_c01083{left:568.429500px;}
.x66_c01083{left:569.781000px;}
.x88_c01083{left:571.865117px;}
.x36_c01083{left:575.010300px;}
.x83_c01083{left:581.110500px;}
.x3e_c01083{left:582.501180px;}
.x50_c01083{left:583.833600px;}
.x77_c01083{left:590.221500px;}
.xad_c01083{left:591.920613px;}
.xae_c01083{left:673.920000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls0_c01083{letter-spacing:0.000000pt;}
.ws0_c01083{word-spacing:0.000000pt;}
.fs0_c01083{font-size:34.533333pt;}
.fs8_c01083{font-size:52.266667pt;}
.fs13_c01083{font-size:56.011199pt;}
.fs12_c01083{font-size:56.943609pt;}
.fsf_c01083{font-size:58.803557pt;}
.fs17_c01083{font-size:58.809525pt;}
.fs4_c01083{font-size:58.811759pt;}
.fs15_c01083{font-size:61.608901pt;}
.fs5_c01083{font-size:61.612319pt;}
.fs16_c01083{font-size:62.543463pt;}
.fs3_c01083{font-size:62.545839pt;}
.fs11_c01083{font-size:64.411623pt;}
.fs9_c01083{font-size:64.412879pt;}
.fsd_c01083{font-size:64.414199pt;}
.fsb_c01083{font-size:64.415583pt;}
.fs14_c01083{font-size:65.342773pt;}
.fs10_c01083{font-size:65.345125pt;}
.fs6_c01083{font-size:65.346399pt;}
.fsc_c01083{font-size:65.347738pt;}
.fsa_c01083{font-size:66.282701pt;}
.fse_c01083{font-size:67.214816pt;}
.fs18_c01083{font-size:68.144370pt;}
.fs2_c01083{font-size:69.080479pt;}
.fs7_c01083{font-size:70.013999pt;}
.fs1_c01083{font-size:210.094899pt;}
.fs19_c01083{font-size:224.933333pt;}
.y0_c01083{bottom:0.000000pt;}
.y2_c01083{bottom:57.756000pt;}
.y131_c01083{bottom:66.576000pt;}
.y1_c01083{bottom:90.120000pt;}
.y126_c01083{bottom:113.523597pt;}
.y127_c01083{bottom:113.993219pt;}
.y128_c01083{bottom:114.965984pt;}
.y129_c01083{bottom:115.797339pt;}
.y12a_c01083{bottom:116.618000pt;}
.y12b_c01083{bottom:117.458717pt;}
.y12c_c01083{bottom:119.037544pt;}
.y12d_c01083{bottom:119.380147pt;}
.y12e_c01083{bottom:119.859933pt;}
.y12f_c01083{bottom:120.910736pt;}
.y130_c01083{bottom:122.595603pt;}
.y11a_c01083{bottom:135.604000pt;}
.y11b_c01083{bottom:136.166296pt;}
.y11c_c01083{bottom:136.567528pt;}
.y11d_c01083{bottom:137.807176pt;}
.y11e_c01083{bottom:138.092800pt;}
.y11f_c01083{bottom:138.654616pt;}
.y120_c01083{bottom:139.017904pt;}
.y121_c01083{bottom:140.339296pt;}
.y122_c01083{bottom:140.585800pt;}
.y123_c01083{bottom:141.975688pt;}
.y124_c01083{bottom:142.377376pt;}
.y125_c01083{bottom:142.632520pt;}
.y110_c01083{bottom:155.764000pt;}
.y111_c01083{bottom:156.390136pt;}
.y112_c01083{bottom:156.718240pt;}
.y113_c01083{bottom:157.560664pt;}
.y114_c01083{bottom:158.399152pt;}
.y115_c01083{bottom:159.189904pt;}
.y116_c01083{bottom:160.546624pt;}
.y117_c01083{bottom:160.879528pt;}
.y118_c01083{bottom:162.171232pt;}
.y119_c01083{bottom:162.581632pt;}
.y104_c01083{bottom:176.404000pt;}
.y105_c01083{bottom:176.896552pt;}
.y106_c01083{bottom:177.674176pt;}
.y107_c01083{bottom:178.123144pt;}
.y108_c01083{bottom:178.948528pt;}
.y109_c01083{bottom:179.337424pt;}
.y10a_c01083{bottom:180.051208pt;}
.y10b_c01083{bottom:180.452896pt;}
.y10c_c01083{bottom:180.850960pt;}
.y10d_c01083{bottom:182.084104pt;}
.y10e_c01083{bottom:182.478880pt;}
.y10f_c01083{bottom:183.559096pt;}
.yf9_c01083{bottom:196.321525pt;}
.yfa_c01083{bottom:197.048897pt;}
.yfb_c01083{bottom:197.560664pt;}
.yfc_c01083{bottom:198.161709pt;}
.yfd_c01083{bottom:198.923341pt;}
.yfe_c01083{bottom:199.972476pt;}
.yff_c01083{bottom:200.856173pt;}
.y100_c01083{bottom:201.363701pt;}
.y101_c01083{bottom:202.183544pt;}
.y102_c01083{bottom:202.837519pt;}
.y103_c01083{bottom:203.216567pt;}
.yef_c01083{bottom:216.722667pt;}
.yf0_c01083{bottom:217.016789pt;}
.yf1_c01083{bottom:217.494149pt;}
.yf2_c01083{bottom:218.550439pt;}
.yf3_c01083{bottom:219.481019pt;}
.yf4_c01083{bottom:220.385895pt;}
.yf5_c01083{bottom:221.271821pt;}
.yf6_c01083{bottom:221.631564pt;}
.yf7_c01083{bottom:222.356739pt;}
.yf8_c01083{bottom:222.888589pt;}
.ye5_c01083{bottom:237.118453pt;}
.ye6_c01083{bottom:237.975707pt;}
.ye7_c01083{bottom:238.327440pt;}
.ye8_c01083{bottom:239.090080pt;}
.ye9_c01083{bottom:239.437093pt;}
.yea_c01083{bottom:239.820213pt;}
.yeb_c01083{bottom:240.803840pt;}
.yec_c01083{bottom:241.330187pt;}
.yed_c01083{bottom:242.942320pt;}
.yee_c01083{bottom:243.432293pt;}
.ydd_c01083{bottom:257.044000pt;}
.yde_c01083{bottom:257.725947pt;}
.ydf_c01083{bottom:258.393120pt;}
.ye0_c01083{bottom:259.218640pt;}
.ye1_c01083{bottom:260.822373pt;}
.ye2_c01083{bottom:262.332533pt;}
.ye3_c01083{bottom:262.766560pt;}
.ye4_c01083{bottom:263.760933pt;}
.yd5_c01083{bottom:277.205333pt;}
.yd6_c01083{bottom:278.956399pt;}
.yd7_c01083{bottom:280.587637pt;}
.yd8_c01083{bottom:280.807353pt;}
.yd9_c01083{bottom:282.071208pt;}
.yda_c01083{bottom:283.118944pt;}
.ydb_c01083{bottom:283.916893pt;}
.ydc_c01083{bottom:284.575484pt;}
.yc8_c01083{bottom:297.360607pt;}
.yc9_c01083{bottom:298.322513pt;}
.yca_c01083{bottom:298.970084pt;}
.ycb_c01083{bottom:299.420485pt;}
.ycc_c01083{bottom:299.991499pt;}
.ycd_c01083{bottom:300.347457pt;}
.yce_c01083{bottom:301.017651pt;}
.ycf_c01083{bottom:301.492144pt;}
.yd0_c01083{bottom:302.760381pt;}
.yd1_c01083{bottom:303.540091pt;}
.yd2_c01083{bottom:303.978205pt;}
.yd3_c01083{bottom:304.798955pt;}
.yd4_c01083{bottom:305.081016pt;}
.ybd_c01083{bottom:317.764000pt;}
.ybe_c01083{bottom:318.293467pt;}
.ybf_c01083{bottom:319.373655pt;}
.yc0_c01083{bottom:320.322819pt;}
.yc1_c01083{bottom:321.235249pt;}
.yc2_c01083{bottom:322.159283pt;}
.yc3_c01083{bottom:322.685329pt;}
.yc4_c01083{bottom:323.287148pt;}
.yc5_c01083{bottom:324.299797pt;}
.yc6_c01083{bottom:324.686207pt;}
.yc7_c01083{bottom:325.203032pt;}
.yb9_c01083{bottom:337.681333pt;}
.yba_c01083{bottom:338.027261pt;}
.ybb_c01083{bottom:338.470781pt;}
.ybc_c01083{bottom:341.376541pt;}
.yae_c01083{bottom:357.836892pt;}
.yaf_c01083{bottom:358.312048pt;}
.yb0_c01083{bottom:359.363780pt;}
.yb1_c01083{bottom:359.867843pt;}
.yb2_c01083{bottom:361.134739pt;}
.yb3_c01083{bottom:361.585748pt;}
.yb4_c01083{bottom:362.738687pt;}
.yb5_c01083{bottom:363.846787pt;}
.yb6_c01083{bottom:364.235055pt;}
.yb7_c01083{bottom:365.214581pt;}
.yb8_c01083{bottom:365.679787pt;}
.ya4_c01083{bottom:377.281163pt;}
.ya5_c01083{bottom:377.788005pt;}
.ya6_c01083{bottom:379.805033pt;}
.ya7_c01083{bottom:380.480988pt;}
.ya8_c01083{bottom:380.934204pt;}
.ya9_c01083{bottom:382.123823pt;}
.yaa_c01083{bottom:383.491877pt;}
.yab_c01083{bottom:383.935461pt;}
.yac_c01083{bottom:384.895089pt;}
.yad_c01083{bottom:385.362043pt;}
.y98_c01083{bottom:397.925333pt;}
.y99_c01083{bottom:399.226213pt;}
.y9a_c01083{bottom:399.544517pt;}
.y9b_c01083{bottom:400.566461pt;}
.y9c_c01083{bottom:401.298801pt;}
.y9d_c01083{bottom:402.089381pt;}
.y9e_c01083{bottom:402.784649pt;}
.y9f_c01083{bottom:403.606001pt;}
.ya0_c01083{bottom:404.095833pt;}
.ya1_c01083{bottom:405.557097pt;}
.ya2_c01083{bottom:405.980989pt;}
.ya3_c01083{bottom:406.694709pt;}
.y8f_c01083{bottom:417.600624pt;}
.y90_c01083{bottom:418.274560pt;}
.y91_c01083{bottom:419.183965pt;}
.y92_c01083{bottom:420.856544pt;}
.y93_c01083{bottom:421.991387pt;}
.y94_c01083{bottom:422.390867pt;}
.y95_c01083{bottom:423.468875pt;}
.y96_c01083{bottom:423.948131pt;}
.y97_c01083{bottom:425.642387pt;}
.y84_c01083{bottom:437.526667pt;}
.y85_c01083{bottom:439.331987pt;}
.y86_c01083{bottom:439.744413pt;}
.y87_c01083{bottom:440.356395pt;}
.y88_c01083{bottom:440.937869pt;}
.y89_c01083{bottom:443.097448pt;}
.y8a_c01083{bottom:443.736651pt;}
.y8b_c01083{bottom:444.152157pt;}
.y8c_c01083{bottom:444.862171pt;}
.y8d_c01083{bottom:445.669805pt;}
.y8e_c01083{bottom:446.060907pt;}
.y7a_c01083{bottom:458.644000pt;}
.y7b_c01083{bottom:459.201253pt;}
.y7c_c01083{bottom:459.863813pt;}
.y7d_c01083{bottom:460.910187pt;}
.y7e_c01083{bottom:462.223200pt;}
.y7f_c01083{bottom:463.255387pt;}
.y80_c01083{bottom:463.579707pt;}
.y81_c01083{bottom:464.703440pt;}
.y82_c01083{bottom:465.889200pt;}
.y83_c01083{bottom:466.335413pt;}
.y79_c01083{bottom:478.560000pt;}
.y6a_c01083{bottom:498.964000pt;}
.y6b_c01083{bottom:499.458773pt;}
.y6c_c01083{bottom:500.596613pt;}
.y6d_c01083{bottom:501.306960pt;}
.y6e_c01083{bottom:501.621973pt;}
.y6f_c01083{bottom:501.972400pt;}
.y70_c01083{bottom:502.305360pt;}
.y71_c01083{bottom:502.786133pt;}
.y72_c01083{bottom:503.841813pt;}
.y73_c01083{bottom:504.311147pt;}
.y74_c01083{bottom:504.998933pt;}
.y75_c01083{bottom:505.455227pt;}
.y76_c01083{bottom:506.204267pt;}
.y77_c01083{bottom:506.564187pt;}
.y78_c01083{bottom:506.937467pt;}
.y5e_c01083{bottom:518.138480pt;}
.y5f_c01083{bottom:519.501760pt;}
.y60_c01083{bottom:520.043573pt;}
.y61_c01083{bottom:521.008240pt;}
.y62_c01083{bottom:521.840853pt;}
.y63_c01083{bottom:522.127707pt;}
.y64_c01083{bottom:522.593787pt;}
.y65_c01083{bottom:523.690853pt;}
.y66_c01083{bottom:524.420267pt;}
.y67_c01083{bottom:525.082347pt;}
.y68_c01083{bottom:526.099173pt;}
.y69_c01083{bottom:527.288933pt;}
.y51_c01083{bottom:539.017493pt;}
.y52_c01083{bottom:539.673840pt;}
.y53_c01083{bottom:540.032293pt;}
.y54_c01083{bottom:540.641387pt;}
.y55_c01083{bottom:541.595227pt;}
.y56_c01083{bottom:541.928347pt;}
.y57_c01083{bottom:543.026507pt;}
.y58_c01083{bottom:543.380560pt;}
.y59_c01083{bottom:544.352427pt;}
.y5a_c01083{bottom:545.407573pt;}
.y5b_c01083{bottom:545.831600pt;}
.y5c_c01083{bottom:547.312747pt;}
.y5d_c01083{bottom:547.731360pt;}
.y48_c01083{bottom:559.183680pt;}
.y49_c01083{bottom:559.970160pt;}
.y4a_c01083{bottom:561.266533pt;}
.y4b_c01083{bottom:562.530373pt;}
.y4c_c01083{bottom:563.825947pt;}
.y4d_c01083{bottom:564.304720pt;}
.y4e_c01083{bottom:565.590187pt;}
.y4f_c01083{bottom:566.825600pt;}
.y50_c01083{bottom:567.264133pt;}
.y3b_c01083{bottom:578.867333pt;}
.y3c_c01083{bottom:579.586693pt;}
.y3d_c01083{bottom:580.431573pt;}
.y3e_c01083{bottom:580.916533pt;}
.y3f_c01083{bottom:581.324427pt;}
.y40_c01083{bottom:582.297973pt;}
.y41_c01083{bottom:582.818053pt;}
.y42_c01083{bottom:584.115093pt;}
.y43_c01083{bottom:584.782853pt;}
.y44_c01083{bottom:585.843973pt;}
.y45_c01083{bottom:586.455093pt;}
.y46_c01083{bottom:587.553253pt;}
.y47_c01083{bottom:588.409280pt;}
.y2f_c01083{bottom:598.550640pt;}
.y30_c01083{bottom:599.206293pt;}
.y31_c01083{bottom:600.690373pt;}
.y32_c01083{bottom:601.600933pt;}
.y33_c01083{bottom:602.180907pt;}
.y34_c01083{bottom:603.103280pt;}
.y35_c01083{bottom:604.731573pt;}
.y36_c01083{bottom:605.179387pt;}
.y37_c01083{bottom:606.167253pt;}
.y38_c01083{bottom:606.719333pt;}
.y39_c01083{bottom:607.099440pt;}
.y3a_c01083{bottom:607.945307pt;}
.y24_c01083{bottom:619.196027pt;}
.y25_c01083{bottom:619.684747pt;}
.y26_c01083{bottom:620.700160pt;}
.y27_c01083{bottom:621.091547pt;}
.y28_c01083{bottom:621.588667pt;}
.y29_c01083{bottom:623.481733pt;}
.y2a_c01083{bottom:624.065840pt;}
.y2b_c01083{bottom:625.160853pt;}
.y2c_c01083{bottom:626.142373pt;}
.y2d_c01083{bottom:626.879627pt;}
.y2e_c01083{bottom:628.267200pt;}
.y18_c01083{bottom:639.358187pt;}
.y19_c01083{bottom:640.409253pt;}
.y1a_c01083{bottom:640.788800pt;}
.y1b_c01083{bottom:641.849147pt;}
.y1c_c01083{bottom:642.375493pt;}
.y1d_c01083{bottom:643.713627pt;}
.y1e_c01083{bottom:644.057707pt;}
.y1f_c01083{bottom:645.008800pt;}
.y20_c01083{bottom:645.917387pt;}
.y21_c01083{bottom:646.968560pt;}
.y22_c01083{bottom:647.682800pt;}
.y23_c01083{bottom:648.104960pt;}
.yd_c01083{bottom:660.479760pt;}
.ye_c01083{bottom:661.181653pt;}
.yf_c01083{bottom:661.604373pt;}
.y10_c01083{bottom:663.022293pt;}
.y11_c01083{bottom:663.346747pt;}
.y12_c01083{bottom:664.101973pt;}
.y13_c01083{bottom:664.610773pt;}
.y14_c01083{bottom:665.602827pt;}
.y15_c01083{bottom:666.002320pt;}
.y16_c01083{bottom:667.285360pt;}
.y17_c01083{bottom:668.224613pt;}
.y3_c01083{bottom:682.084000pt;}
.y4_c01083{bottom:682.974133pt;}
.y5_c01083{bottom:683.616827pt;}
.y6_c01083{bottom:683.943547pt;}
.y7_c01083{bottom:684.534213pt;}
.y8_c01083{bottom:685.585200pt;}
.y9_c01083{bottom:685.979787pt;}
.ya_c01083{bottom:687.645333pt;}
.yb_c01083{bottom:688.619547pt;}
.yc_c01083{bottom:689.607680pt;}
.h2_c01083{height:34.533333pt;}
.ha_c01083{height:52.266667pt;}
.h15_c01083{height:56.011199pt;}
.h14_c01083{height:56.943609pt;}
.h11_c01083{height:58.803557pt;}
.h19_c01083{height:58.809525pt;}
.h6_c01083{height:58.811759pt;}
.h17_c01083{height:61.608901pt;}
.h7_c01083{height:61.612319pt;}
.h18_c01083{height:62.543463pt;}
.h5_c01083{height:62.545839pt;}
.h13_c01083{height:64.411623pt;}
.hb_c01083{height:64.412879pt;}
.hf_c01083{height:64.414199pt;}
.hd_c01083{height:64.415583pt;}
.h16_c01083{height:65.342773pt;}
.h12_c01083{height:65.345125pt;}
.h8_c01083{height:65.346399pt;}
.he_c01083{height:65.347738pt;}
.hc_c01083{height:66.282701pt;}
.h10_c01083{height:67.214816pt;}
.h1a_c01083{height:68.144370pt;}
.h4_c01083{height:69.080479pt;}
.h9_c01083{height:70.013999pt;}
.h3_c01083{height:210.094899pt;}
.h1b_c01083{height:224.933333pt;}
.h0_c01083{height:896.400000pt;}
.h1_c01083{height:896.666667pt;}
.w0_c01083{width:632.640000pt;}
.w1_c01083{width:632.666667pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:66.720000pt;}
.x17_c01083{left:102.506213pt;}
.x23_c01083{left:103.468347pt;}
.x5b_c01083{left:104.625333pt;}
.x67_c01083{left:106.114667pt;}
.x6f_c01083{left:107.052000pt;}
.x89_c01083{left:110.166667pt;}
.x95_c01083{left:111.552053pt;}
.xa1_c01083{left:113.012000pt;}
.x61_c01083{left:121.901333pt;}
.x24_c01083{left:124.703067pt;}
.x9b_c01083{left:128.159379pt;}
.x2_c01083{left:129.086667pt;}
.x60_c01083{left:130.080000pt;}
.x2d_c01083{left:131.192400pt;}
.x37_c01083{left:134.205840pt;}
.xc_c01083{left:135.309067pt;}
.x6c_c01083{left:137.699955pt;}
.x7c_c01083{left:139.332000pt;}
.xa2_c01083{left:140.376000pt;}
.x3f_c01083{left:141.374213pt;}
.x8e_c01083{left:144.728000pt;}
.xa5_c01083{left:148.049333pt;}
.x18_c01083{left:150.257627pt;}
.x47_c01083{left:152.417227pt;}
.x9a_c01083{left:157.413333pt;}
.x96_c01083{left:161.951067pt;}
.x51_c01083{left:163.505440pt;}
.x9c_c01083{left:166.474087pt;}
.x19_c01083{left:167.500933pt;}
.xd_c01083{left:168.736400pt;}
.x38_c01083{left:170.914293pt;}
.x3_c01083{left:173.593333pt;}
.x8f_c01083{left:178.086667pt;}
.x7d_c01083{left:179.652000pt;}
.x48_c01083{left:181.404640pt;}
.x62_c01083{left:182.892000pt;}
.x70_c01083{left:184.156000pt;}
.x25_c01083{left:185.906080pt;}
.x52_c01083{left:187.061360pt;}
.xe_c01083{left:188.872000pt;}
.x39_c01083{left:192.027707pt;}
.x9d_c01083{left:193.439847pt;}
.x2e_c01083{left:195.725867pt;}
.x40_c01083{left:203.124987pt;}
.x4_c01083{left:205.728000pt;}
.x26_c01083{left:207.494107pt;}
.xa3_c01083{left:208.520000pt;}
.x3a_c01083{left:209.754640pt;}
.xa6_c01083{left:213.078667pt;}
.x1a_c01083{left:215.716347pt;}
.xa9_c01083{left:217.159237pt;}
.x90_c01083{left:219.362667pt;}
.x5_c01083{left:222.064000pt;}
.x9e_c01083{left:225.108115pt;}
.x49_c01083{left:226.829067pt;}
.x53_c01083{left:229.025520pt;}
.x71_c01083{left:232.820000pt;}
.x2f_c01083{left:235.318160pt;}
.x5c_c01083{left:237.524000pt;}
.x1b_c01083{left:239.632720pt;}
.x4a_c01083{left:242.684747pt;}
.x97_c01083{left:247.892213pt;}
.x6_c01083{left:251.597333pt;}
.x78_c01083{left:253.243945pt;}
.x5d_c01083{left:255.045333pt;}
.xf_c01083{left:256.366640pt;}
.x84_c01083{left:259.189881pt;}
.x30_c01083{left:260.515307pt;}
.x41_c01083{left:263.315787pt;}
.x54_c01083{left:265.254027pt;}
.x72_c01083{left:267.693333pt;}
.x98_c01083{left:270.449573pt;}
.x10_c01083{left:271.788987pt;}
.x3b_c01083{left:274.698747pt;}
.xa4_c01083{left:275.980000pt;}
.x55_c01083{left:277.729280pt;}
.xa8_c01083{left:283.210667pt;}
.x8a_c01083{left:288.182667pt;}
.x27_c01083{left:289.809173pt;}
.xaa_c01083{left:292.637789pt;}
.x4b_c01083{left:294.991707pt;}
.x56_c01083{left:297.965387pt;}
.x91_c01083{left:299.549333pt;}
.x1c_c01083{left:300.470293pt;}
.x7_c01083{left:304.146667pt;}
.x73_c01083{left:305.340000pt;}
.x11_c01083{left:307.749600pt;}
.x4c_c01083{left:311.827360pt;}
.x28_c01083{left:315.212987pt;}
.x1d_c01083{left:316.140347pt;}
.x85_c01083{left:319.436548pt;}
.x9f_c01083{left:320.404873pt;}
.x8_c01083{left:323.876000pt;}
.x42_c01083{left:325.026560pt;}
.x79_c01083{left:327.917044pt;}
.x3c_c01083{left:331.080693pt;}
.x12_c01083{left:331.989120pt;}
.x6d_c01083{left:333.657571pt;}
.x74_c01083{left:338.448000pt;}
.x57_c01083{left:345.682533pt;}
.x43_c01083{left:347.831440pt;}
.x63_c01083{left:352.470667pt;}
.x7f_c01083{left:356.345333pt;}
.x4d_c01083{left:358.086427pt;}
.x1e_c01083{left:359.359947pt;}
.x29_c01083{left:362.827467pt;}
.xab_c01083{left:364.419296pt;}
.x8b_c01083{left:366.265333pt;}
.x64_c01083{left:368.686667pt;}
.x31_c01083{left:371.442000pt;}
.x92_c01083{left:375.057333pt;}
.x58_c01083{left:377.417973pt;}
.x13_c01083{left:379.257520pt;}
.x80_c01083{left:384.032000pt;}
.x6e_c01083{left:385.022715pt;}
.x86_c01083{left:386.185881pt;}
.x68_c01083{left:388.386667pt;}
.x32_c01083{left:390.898160pt;}
.xa0_c01083{left:393.611713pt;}
.x93_c01083{left:396.758667pt;}
.x14_c01083{left:398.298480pt;}
.x1f_c01083{left:400.654293pt;}
.xac_c01083{left:401.808608pt;}
.x2a_c01083{left:405.500907pt;}
.x9_c01083{left:407.153333pt;}
.x44_c01083{left:409.036880pt;}
.x7a_c01083{left:410.247308pt;}
.x81_c01083{left:415.706667pt;}
.x8c_c01083{left:421.409333pt;}
.x65_c01083{left:424.873333pt;}
.x87_c01083{left:427.223215pt;}
.x4e_c01083{left:428.510347pt;}
.x3d_c01083{left:432.807920pt;}
.x33_c01083{left:433.822240pt;}
.x2b_c01083{left:437.561653pt;}
.x69_c01083{left:439.546667pt;}
.x7e_c01083{left:443.812000pt;}
.x94_c01083{left:446.477333pt;}
.x20_c01083{left:448.411040pt;}
.x59_c01083{left:450.425600pt;}
.x7b_c01083{left:453.847717pt;}
.xa_c01083{left:455.864000pt;}
.x34_c01083{left:457.824800pt;}
.x15_c01083{left:459.382587pt;}
.x8d_c01083{left:463.406667pt;}
.x5e_c01083{left:466.638667pt;}
.x45_c01083{left:467.873040pt;}
.x82_c01083{left:469.004000pt;}
.x75_c01083{left:470.469333pt;}
.x35_c01083{left:474.362480pt;}
.x6a_c01083{left:476.257333pt;}
.x21_c01083{left:480.855067pt;}
.x99_c01083{left:482.932987pt;}
.x5f_c01083{left:484.634667pt;}
.x46_c01083{left:488.732613pt;}
.x76_c01083{left:490.654667pt;}
.xa7_c01083{left:492.021333pt;}
.x6b_c01083{left:494.034667pt;}
.x2c_c01083{left:497.870027pt;}
.x4f_c01083{left:499.032933pt;}
.x22_c01083{left:500.028960pt;}
.x5a_c01083{left:502.177173pt;}
.x16_c01083{left:504.077680pt;}
.xb_c01083{left:505.270667pt;}
.x66_c01083{left:506.472000pt;}
.x88_c01083{left:508.324548pt;}
.x36_c01083{left:511.120267pt;}
.x83_c01083{left:516.542667pt;}
.x3e_c01083{left:517.778827pt;}
.x50_c01083{left:518.963200pt;}
.x77_c01083{left:524.641333pt;}
.xad_c01083{left:526.151656pt;}
.xae_c01083{left:599.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_c01084 {
    display:none;
  }
  .loading-indicator_c01084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01084" -> "#page-container .classname_c01084")
 */
.pf_c01084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01084 {overflow:visible;}
  }
}
.c_c01084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01084:after { /* webkit #35443 */
  content: '';
}
.t_c01084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01084 { /* info for Javascript */
  display:none;
}
.l_c01084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.000000;font-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_c01084{transform:matrix(0.028362,-0.000425,0.003750,0.249972,0,0);-ms-transform:matrix(0.028362,-0.000425,0.003750,0.249972,0,0);-webkit-transform:matrix(0.028362,-0.000425,0.003750,0.249972,0,0);}
.md0_c01084{transform:matrix(0.088342,-0.001502,0.004249,0.249964,0,0);-ms-transform:matrix(0.088342,-0.001502,0.004249,0.249964,0,0);-webkit-transform:matrix(0.088342,-0.001502,0.004249,0.249964,0,0);}
.m7_c01084{transform:matrix(0.102050,-0.001735,0.004249,0.249964,0,0);-ms-transform:matrix(0.102050,-0.001735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.102050,-0.001735,0.004249,0.249964,0,0);}
.ma8_c01084{transform:matrix(0.135723,-0.002172,0.003999,0.249968,0,0);-ms-transform:matrix(0.135723,-0.002172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.135723,-0.002172,0.003999,0.249968,0,0);}
.m132_c01084{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);}
.ma3_c01084{transform:matrix(0.143917,-0.002303,0.003999,0.249968,0,0);-ms-transform:matrix(0.143917,-0.002303,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143917,-0.002303,0.003999,0.249968,0,0);}
.me8_c01084{transform:matrix(0.146179,-0.002485,0.004249,0.249964,0,0);-ms-transform:matrix(0.146179,-0.002485,0.004249,0.249964,0,0);-webkit-transform:matrix(0.146179,-0.002485,0.004249,0.249964,0,0);}
.m73_c01084{transform:matrix(0.146826,-0.002349,0.003999,0.249968,0,0);-ms-transform:matrix(0.146826,-0.002349,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146826,-0.002349,0.003999,0.249968,0,0);}
.me1_c01084{transform:matrix(0.147604,-0.002509,0.004249,0.249964,0,0);-ms-transform:matrix(0.147604,-0.002509,0.004249,0.249964,0,0);-webkit-transform:matrix(0.147604,-0.002509,0.004249,0.249964,0,0);}
.med_c01084{transform:matrix(0.149588,-0.002543,0.004249,0.249964,0,0);-ms-transform:matrix(0.149588,-0.002543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149588,-0.002543,0.004249,0.249964,0,0);}
.m1e_c01084{transform:matrix(0.149933,-0.002549,0.004249,0.249964,0,0);-ms-transform:matrix(0.149933,-0.002549,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149933,-0.002549,0.004249,0.249964,0,0);}
.m85_c01084{transform:matrix(0.151126,-0.002418,0.003999,0.249968,0,0);-ms-transform:matrix(0.151126,-0.002418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151126,-0.002418,0.003999,0.249968,0,0);}
.m80_c01084{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);}
.m4a_c01084{transform:matrix(0.156220,-0.002500,0.003999,0.249968,0,0);-ms-transform:matrix(0.156220,-0.002500,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156220,-0.002500,0.003999,0.249968,0,0);}
.m7b_c01084{transform:matrix(0.157565,-0.002521,0.003999,0.249968,0,0);-ms-transform:matrix(0.157565,-0.002521,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157565,-0.002521,0.003999,0.249968,0,0);}
.m69_c01084{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);}
.m92_c01084{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);}
.md1_c01084{transform:matrix(0.158632,-0.002697,0.004249,0.249964,0,0);-ms-transform:matrix(0.158632,-0.002697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158632,-0.002697,0.004249,0.249964,0,0);}
.m8d_c01084{transform:matrix(0.159235,-0.002548,0.003999,0.249968,0,0);-ms-transform:matrix(0.159235,-0.002548,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159235,-0.002548,0.003999,0.249968,0,0);}
.m10e_c01084{transform:matrix(0.159472,-0.002711,0.004249,0.249964,0,0);-ms-transform:matrix(0.159472,-0.002711,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159472,-0.002711,0.004249,0.249964,0,0);}
.m96_c01084{transform:matrix(0.161644,-0.002586,0.003999,0.249968,0,0);-ms-transform:matrix(0.161644,-0.002586,0.003999,0.249968,0,0);-webkit-transform:matrix(0.161644,-0.002586,0.003999,0.249968,0,0);}
.m9b_c01084{transform:matrix(0.163149,-0.002610,0.003999,0.249968,0,0);-ms-transform:matrix(0.163149,-0.002610,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163149,-0.002610,0.003999,0.249968,0,0);}
.m101_c01084{transform:matrix(0.163476,-0.002779,0.004249,0.249964,0,0);-ms-transform:matrix(0.163476,-0.002779,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163476,-0.002779,0.004249,0.249964,0,0);}
.m7e_c01084{transform:matrix(0.164709,-0.002635,0.003999,0.249968,0,0);-ms-transform:matrix(0.164709,-0.002635,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164709,-0.002635,0.003999,0.249968,0,0);}
.m67_c01084{transform:matrix(0.164964,-0.002639,0.003999,0.249968,0,0);-ms-transform:matrix(0.164964,-0.002639,0.003999,0.249968,0,0);-webkit-transform:matrix(0.164964,-0.002639,0.003999,0.249968,0,0);}
.m79_c01084{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_c01084{transform:matrix(0.166754,-0.002668,0.003999,0.249968,0,0);-ms-transform:matrix(0.166754,-0.002668,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166754,-0.002668,0.003999,0.249968,0,0);}
.me0_c01084{transform:matrix(0.167051,-0.002840,0.004249,0.249964,0,0);-ms-transform:matrix(0.167051,-0.002840,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167051,-0.002840,0.004249,0.249964,0,0);}
.mb7_c01084{transform:matrix(0.167124,-0.002674,0.003999,0.249968,0,0);-ms-transform:matrix(0.167124,-0.002674,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167124,-0.002674,0.003999,0.249968,0,0);}
.m3f_c01084{transform:matrix(0.167569,-0.002681,0.003999,0.249968,0,0);-ms-transform:matrix(0.167569,-0.002681,0.003999,0.249968,0,0);-webkit-transform:matrix(0.167569,-0.002681,0.003999,0.249968,0,0);}
.mc_c01084{transform:matrix(0.168071,-0.002857,0.004249,0.249964,0,0);-ms-transform:matrix(0.168071,-0.002857,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168071,-0.002857,0.004249,0.249964,0,0);}
.md5_c01084{transform:matrix(0.168166,-0.002859,0.004249,0.249964,0,0);-ms-transform:matrix(0.168166,-0.002859,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168166,-0.002859,0.004249,0.249964,0,0);}
.m4d_c01084{transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);-ms-transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168323,-0.002693,0.003999,0.249968,0,0);}
.mba_c01084{transform:matrix(0.168508,-0.002696,0.003999,0.249968,0,0);-ms-transform:matrix(0.168508,-0.002696,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168508,-0.002696,0.003999,0.249968,0,0);}
.m56_c01084{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);}
.m1b_c01084{transform:matrix(0.169221,-0.002877,0.004249,0.249964,0,0);-ms-transform:matrix(0.169221,-0.002877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169221,-0.002877,0.004249,0.249964,0,0);}
.m5c_c01084{transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);-ms-transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170063,-0.002721,0.003999,0.249968,0,0);}
.m7c_c01084{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);}
.mb2_c01084{transform:matrix(0.170743,-0.002732,0.003999,0.249968,0,0);-ms-transform:matrix(0.170743,-0.002732,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170743,-0.002732,0.003999,0.249968,0,0);}
.m8c_c01084{transform:matrix(0.171123,-0.002738,0.003999,0.249968,0,0);-ms-transform:matrix(0.171123,-0.002738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171123,-0.002738,0.003999,0.249968,0,0);}
.m124_c01084{transform:matrix(0.171400,-0.002914,0.004249,0.249964,0,0);-ms-transform:matrix(0.171400,-0.002914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171400,-0.002914,0.004249,0.249964,0,0);}
.m41_c01084{transform:matrix(0.171493,-0.002744,0.003999,0.249968,0,0);-ms-transform:matrix(0.171493,-0.002744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171493,-0.002744,0.003999,0.249968,0,0);}
.m125_c01084{transform:matrix(0.171800,-0.002921,0.004249,0.249964,0,0);-ms-transform:matrix(0.171800,-0.002921,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171800,-0.002921,0.004249,0.249964,0,0);}
.m106_c01084{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);}
.m1_c01084{transform:matrix(0.172655,-0.002935,0.004249,0.249964,0,0);-ms-transform:matrix(0.172655,-0.002935,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172655,-0.002935,0.004249,0.249964,0,0);}
.mec_c01084{transform:matrix(0.173500,-0.002949,0.004249,0.249964,0,0);-ms-transform:matrix(0.173500,-0.002949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173500,-0.002949,0.004249,0.249964,0,0);}
.mb6_c01084{transform:matrix(0.173958,-0.002783,0.003999,0.249968,0,0);-ms-transform:matrix(0.173958,-0.002783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173958,-0.002783,0.003999,0.249968,0,0);}
.me_c01084{transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);-ms-transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);}
.m81_c01084{transform:matrix(0.174473,-0.002792,0.003999,0.249968,0,0);-ms-transform:matrix(0.174473,-0.002792,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174473,-0.002792,0.003999,0.249968,0,0);}
.m5f_c01084{transform:matrix(0.174803,-0.002797,0.003999,0.249968,0,0);-ms-transform:matrix(0.174803,-0.002797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174803,-0.002797,0.003999,0.249968,0,0);}
.m38_c01084{transform:matrix(0.174863,-0.002798,0.003999,0.249968,0,0);-ms-transform:matrix(0.174863,-0.002798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174863,-0.002798,0.003999,0.249968,0,0);}
.m104_c01084{transform:matrix(0.175440,-0.002982,0.004249,0.249964,0,0);-ms-transform:matrix(0.175440,-0.002982,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175440,-0.002982,0.004249,0.249964,0,0);}
.mdc_c01084{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);}
.m3c_c01084{transform:matrix(0.176782,-0.002829,0.003999,0.249968,0,0);-ms-transform:matrix(0.176782,-0.002829,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176782,-0.002829,0.003999,0.249968,0,0);}
.mb3_c01084{transform:matrix(0.177092,-0.002833,0.003999,0.249968,0,0);-ms-transform:matrix(0.177092,-0.002833,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177092,-0.002833,0.003999,0.249968,0,0);}
.m110_c01084{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);}
.mde_c01084{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);}
.m6d_c01084{transform:matrix(0.177617,-0.002842,0.003999,0.249968,0,0);-ms-transform:matrix(0.177617,-0.002842,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177617,-0.002842,0.003999,0.249968,0,0);}
.m6e_c01084{transform:matrix(0.178222,-0.002852,0.003999,0.249968,0,0);-ms-transform:matrix(0.178222,-0.002852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178222,-0.002852,0.003999,0.249968,0,0);}
.m4c_c01084{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);}
.m59_c01084{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);}
.mb8_c01084{transform:matrix(0.178922,-0.002863,0.003999,0.249968,0,0);-ms-transform:matrix(0.178922,-0.002863,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178922,-0.002863,0.003999,0.249968,0,0);}
.m7a_c01084{transform:matrix(0.179027,-0.002864,0.003999,0.249968,0,0);-ms-transform:matrix(0.179027,-0.002864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179027,-0.002864,0.003999,0.249968,0,0);}
.m84_c01084{transform:matrix(0.179607,-0.002874,0.003999,0.249968,0,0);-ms-transform:matrix(0.179607,-0.002874,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179607,-0.002874,0.003999,0.249968,0,0);}
.m100_c01084{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);}
.m86_c01084{transform:matrix(0.179662,-0.002875,0.003999,0.249968,0,0);-ms-transform:matrix(0.179662,-0.002875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179662,-0.002875,0.003999,0.249968,0,0);}
.mfb_c01084{transform:matrix(0.179824,-0.003057,0.004249,0.249964,0,0);-ms-transform:matrix(0.179824,-0.003057,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179824,-0.003057,0.004249,0.249964,0,0);}
.m35_c01084{transform:matrix(0.180052,-0.002881,0.003999,0.249968,0,0);-ms-transform:matrix(0.180052,-0.002881,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180052,-0.002881,0.003999,0.249968,0,0);}
.md_c01084{transform:matrix(0.180144,-0.003062,0.004249,0.249964,0,0);-ms-transform:matrix(0.180144,-0.003062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180144,-0.003062,0.004249,0.249964,0,0);}
.mcb_c01084{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);}
.m15_c01084{transform:matrix(0.180734,-0.003072,0.004249,0.249964,0,0);-ms-transform:matrix(0.180734,-0.003072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180734,-0.003072,0.004249,0.249964,0,0);}
.m107_c01084{transform:matrix(0.180939,-0.003076,0.004249,0.249964,0,0);-ms-transform:matrix(0.180939,-0.003076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180939,-0.003076,0.004249,0.249964,0,0);}
.m12a_c01084{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);}
.mc7_c01084{transform:matrix(0.181280,-0.002719,0.003750,0.249972,0,0);-ms-transform:matrix(0.181280,-0.002719,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181280,-0.002719,0.003750,0.249972,0,0);}
.maa_c01084{transform:matrix(0.181662,-0.002907,0.003999,0.249968,0,0);-ms-transform:matrix(0.181662,-0.002907,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181662,-0.002907,0.003999,0.249968,0,0);}
.m3a_c01084{transform:matrix(0.182502,-0.002920,0.003999,0.249968,0,0);-ms-transform:matrix(0.182502,-0.002920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182502,-0.002920,0.003999,0.249968,0,0);}
.m4f_c01084{transform:matrix(0.182677,-0.002923,0.003999,0.249968,0,0);-ms-transform:matrix(0.182677,-0.002923,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182677,-0.002923,0.003999,0.249968,0,0);}
.m39_c01084{transform:matrix(0.182997,-0.002928,0.003999,0.249968,0,0);-ms-transform:matrix(0.182997,-0.002928,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182997,-0.002928,0.003999,0.249968,0,0);}
.m10_c01084{transform:matrix(0.183019,-0.003111,0.004249,0.249964,0,0);-ms-transform:matrix(0.183019,-0.003111,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183019,-0.003111,0.004249,0.249964,0,0);}
.m76_c01084{transform:matrix(0.183801,-0.002941,0.003999,0.249968,0,0);-ms-transform:matrix(0.183801,-0.002941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183801,-0.002941,0.003999,0.249968,0,0);}
.m78_c01084{transform:matrix(0.183806,-0.002941,0.003999,0.249968,0,0);-ms-transform:matrix(0.183806,-0.002941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183806,-0.002941,0.003999,0.249968,0,0);}
.m63_c01084{transform:matrix(0.183891,-0.002942,0.003999,0.249968,0,0);-ms-transform:matrix(0.183891,-0.002942,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183891,-0.002942,0.003999,0.249968,0,0);}
.m70_c01084{transform:matrix(0.184011,-0.002944,0.003999,0.249968,0,0);-ms-transform:matrix(0.184011,-0.002944,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184011,-0.002944,0.003999,0.249968,0,0);}
.md4_c01084{transform:matrix(0.184283,-0.003133,0.004249,0.249964,0,0);-ms-transform:matrix(0.184283,-0.003133,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184283,-0.003133,0.004249,0.249964,0,0);}
.mf9_c01084{transform:matrix(0.185023,-0.003145,0.004249,0.249964,0,0);-ms-transform:matrix(0.185023,-0.003145,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185023,-0.003145,0.004249,0.249964,0,0);}
.m9a_c01084{transform:matrix(0.185071,-0.002961,0.003999,0.249968,0,0);-ms-transform:matrix(0.185071,-0.002961,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185071,-0.002961,0.003999,0.249968,0,0);}
.m113_c01084{transform:matrix(0.185263,-0.003149,0.004249,0.249964,0,0);-ms-transform:matrix(0.185263,-0.003149,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185263,-0.003149,0.004249,0.249964,0,0);}
.me2_c01084{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);}
.ma0_c01084{transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);}
.mf4_c01084{transform:matrix(0.186488,-0.003170,0.004249,0.249964,0,0);-ms-transform:matrix(0.186488,-0.003170,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186488,-0.003170,0.004249,0.249964,0,0);}
.m8f_c01084{transform:matrix(0.186541,-0.002985,0.003999,0.249968,0,0);-ms-transform:matrix(0.186541,-0.002985,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186541,-0.002985,0.003999,0.249968,0,0);}
.m20_c01084{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);}
.m6f_c01084{transform:matrix(0.187161,-0.002995,0.003999,0.249968,0,0);-ms-transform:matrix(0.187161,-0.002995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187161,-0.002995,0.003999,0.249968,0,0);}
.mc2_c01084{transform:matrix(0.187184,-0.002808,0.003750,0.249972,0,0);-ms-transform:matrix(0.187184,-0.002808,0.003750,0.249972,0,0);-webkit-transform:matrix(0.187184,-0.002808,0.003750,0.249972,0,0);}
.m8a_c01084{transform:matrix(0.187291,-0.002997,0.003999,0.249968,0,0);-ms-transform:matrix(0.187291,-0.002997,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187291,-0.002997,0.003999,0.249968,0,0);}
.mfc_c01084{transform:matrix(0.187373,-0.003185,0.004249,0.249964,0,0);-ms-transform:matrix(0.187373,-0.003185,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187373,-0.003185,0.004249,0.249964,0,0);}
.mf2_c01084{transform:matrix(0.188028,-0.003196,0.004249,0.249964,0,0);-ms-transform:matrix(0.188028,-0.003196,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188028,-0.003196,0.004249,0.249964,0,0);}
.m93_c01084{transform:matrix(0.188061,-0.003009,0.003999,0.249968,0,0);-ms-transform:matrix(0.188061,-0.003009,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188061,-0.003009,0.003999,0.249968,0,0);}
.m37_c01084{transform:matrix(0.188266,-0.003012,0.003999,0.249968,0,0);-ms-transform:matrix(0.188266,-0.003012,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188266,-0.003012,0.003999,0.249968,0,0);}
.md8_c01084{transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);-ms-transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188608,-0.003206,0.004249,0.249964,0,0);}
.m3d_c01084{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);}
.me7_c01084{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);}
.m98_c01084{transform:matrix(0.189586,-0.003033,0.003999,0.249968,0,0);-ms-transform:matrix(0.189586,-0.003033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189586,-0.003033,0.003999,0.249968,0,0);}
.m68_c01084{transform:matrix(0.190141,-0.003042,0.003999,0.249968,0,0);-ms-transform:matrix(0.190141,-0.003042,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190141,-0.003042,0.003999,0.249968,0,0);}
.m8b_c01084{transform:matrix(0.190496,-0.003048,0.003999,0.249968,0,0);-ms-transform:matrix(0.190496,-0.003048,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190496,-0.003048,0.003999,0.249968,0,0);}
.m21_c01084{transform:matrix(0.190632,-0.003241,0.004249,0.249964,0,0);-ms-transform:matrix(0.190632,-0.003241,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190632,-0.003241,0.004249,0.249964,0,0);}
.m87_c01084{transform:matrix(0.190641,-0.003050,0.003999,0.249968,0,0);-ms-transform:matrix(0.190641,-0.003050,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190641,-0.003050,0.003999,0.249968,0,0);}
.m5b_c01084{transform:matrix(0.191046,-0.003057,0.003999,0.249968,0,0);-ms-transform:matrix(0.191046,-0.003057,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191046,-0.003057,0.003999,0.249968,0,0);}
.mf_c01084{transform:matrix(0.191107,-0.003249,0.004249,0.249964,0,0);-ms-transform:matrix(0.191107,-0.003249,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191107,-0.003249,0.004249,0.249964,0,0);}
.m4_c01084{transform:matrix(0.191227,-0.003251,0.004249,0.249964,0,0);-ms-transform:matrix(0.191227,-0.003251,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191227,-0.003251,0.004249,0.249964,0,0);}
.m30_c01084{transform:matrix(0.191570,-0.003065,0.003999,0.249968,0,0);-ms-transform:matrix(0.191570,-0.003065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191570,-0.003065,0.003999,0.249968,0,0);}
.m83_c01084{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);}
.m128_c01084{transform:matrix(0.191782,-0.003260,0.004249,0.249964,0,0);-ms-transform:matrix(0.191782,-0.003260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.191782,-0.003260,0.004249,0.249964,0,0);}
.mf5_c01084{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);}
.mb0_c01084{transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);-ms-transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192445,-0.003079,0.003999,0.249968,0,0);}
.mee_c01084{transform:matrix(0.192812,-0.003278,0.004249,0.249964,0,0);-ms-transform:matrix(0.192812,-0.003278,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192812,-0.003278,0.004249,0.249964,0,0);}
.mab_c01084{transform:matrix(0.192855,-0.003086,0.003999,0.249968,0,0);-ms-transform:matrix(0.192855,-0.003086,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192855,-0.003086,0.003999,0.249968,0,0);}
.m71_c01084{transform:matrix(0.192910,-0.003087,0.003999,0.249968,0,0);-ms-transform:matrix(0.192910,-0.003087,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192910,-0.003087,0.003999,0.249968,0,0);}
.mcc_c01084{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);}
.mf3_c01084{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);}
.m28_c01084{transform:matrix(0.193290,-0.003093,0.003999,0.249968,0,0);-ms-transform:matrix(0.193290,-0.003093,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193290,-0.003093,0.003999,0.249968,0,0);}
.m23_c01084{transform:matrix(0.193445,-0.003095,0.003999,0.249968,0,0);-ms-transform:matrix(0.193445,-0.003095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193445,-0.003095,0.003999,0.249968,0,0);}
.m61_c01084{transform:matrix(0.193505,-0.003096,0.003999,0.249968,0,0);-ms-transform:matrix(0.193505,-0.003096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193505,-0.003096,0.003999,0.249968,0,0);}
.m5a_c01084{transform:matrix(0.193620,-0.003098,0.003999,0.249968,0,0);-ms-transform:matrix(0.193620,-0.003098,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193620,-0.003098,0.003999,0.249968,0,0);}
.me9_c01084{transform:matrix(0.194017,-0.003298,0.004249,0.249964,0,0);-ms-transform:matrix(0.194017,-0.003298,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194017,-0.003298,0.004249,0.249964,0,0);}
.m102_c01084{transform:matrix(0.194047,-0.003299,0.004249,0.249964,0,0);-ms-transform:matrix(0.194047,-0.003299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194047,-0.003299,0.004249,0.249964,0,0);}
.m6c_c01084{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);}
.mfa_c01084{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);}
.m108_c01084{transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);-ms-transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194522,-0.003307,0.004249,0.249964,0,0);}
.m123_c01084{transform:matrix(0.194582,-0.003308,0.004249,0.249964,0,0);-ms-transform:matrix(0.194582,-0.003308,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194582,-0.003308,0.004249,0.249964,0,0);}
.m8_c01084{transform:matrix(0.194622,-0.003309,0.004249,0.249964,0,0);-ms-transform:matrix(0.194622,-0.003309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194622,-0.003309,0.004249,0.249964,0,0);}
.mb5_c01084{transform:matrix(0.194950,-0.003119,0.003999,0.249968,0,0);-ms-transform:matrix(0.194950,-0.003119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194950,-0.003119,0.003999,0.249968,0,0);}
.mf8_c01084{transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);-ms-transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);}
.m97_c01084{transform:matrix(0.196205,-0.003139,0.003999,0.249968,0,0);-ms-transform:matrix(0.196205,-0.003139,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196205,-0.003139,0.003999,0.249968,0,0);}
.m6b_c01084{transform:matrix(0.196370,-0.003142,0.003999,0.249968,0,0);-ms-transform:matrix(0.196370,-0.003142,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196370,-0.003142,0.003999,0.249968,0,0);}
.m62_c01084{transform:matrix(0.196440,-0.003143,0.003999,0.249968,0,0);-ms-transform:matrix(0.196440,-0.003143,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196440,-0.003143,0.003999,0.249968,0,0);}
.mc5_c01084{transform:matrix(0.196568,-0.002949,0.003750,0.249972,0,0);-ms-transform:matrix(0.196568,-0.002949,0.003750,0.249972,0,0);-webkit-transform:matrix(0.196568,-0.002949,0.003750,0.249972,0,0);}
.m8e_c01084{transform:matrix(0.196685,-0.003147,0.003999,0.249968,0,0);-ms-transform:matrix(0.196685,-0.003147,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196685,-0.003147,0.003999,0.249968,0,0);}
.m6_c01084{transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);-ms-transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);}
.m95_c01084{transform:matrix(0.196875,-0.003150,0.003999,0.249968,0,0);-ms-transform:matrix(0.196875,-0.003150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196875,-0.003150,0.003999,0.249968,0,0);}
.mef_c01084{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);}
.ma_c01084{transform:matrix(0.196902,-0.003347,0.004249,0.249964,0,0);-ms-transform:matrix(0.196902,-0.003347,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196902,-0.003347,0.004249,0.249964,0,0);}
.m47_c01084{transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-ms-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196960,-0.003151,0.003999,0.249968,0,0);}
.m13_c01084{transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);-ms-transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197077,-0.003350,0.004249,0.249964,0,0);}
.m120_c01084{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);}
.m12e_c01084{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);}
.mb_c01084{transform:matrix(0.197366,-0.003355,0.004249,0.249964,0,0);-ms-transform:matrix(0.197366,-0.003355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197366,-0.003355,0.004249,0.249964,0,0);}
.m1f_c01084{transform:matrix(0.197441,-0.003357,0.004249,0.249964,0,0);-ms-transform:matrix(0.197441,-0.003357,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197441,-0.003357,0.004249,0.249964,0,0);}
.m91_c01084{transform:matrix(0.197490,-0.003160,0.003999,0.249968,0,0);-ms-transform:matrix(0.197490,-0.003160,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197490,-0.003160,0.003999,0.249968,0,0);}
.m40_c01084{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);}
.mc4_c01084{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);}
.m12_c01084{transform:matrix(0.199276,-0.003388,0.004249,0.249964,0,0);-ms-transform:matrix(0.199276,-0.003388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199276,-0.003388,0.004249,0.249964,0,0);}
.m11_c01084{transform:matrix(0.199491,-0.003391,0.004249,0.249964,0,0);-ms-transform:matrix(0.199491,-0.003391,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199491,-0.003391,0.004249,0.249964,0,0);}
.m88_c01084{transform:matrix(0.199584,-0.003193,0.003999,0.249968,0,0);-ms-transform:matrix(0.199584,-0.003193,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199584,-0.003193,0.003999,0.249968,0,0);}
.m1d_c01084{transform:matrix(0.199641,-0.003394,0.004249,0.249964,0,0);-ms-transform:matrix(0.199641,-0.003394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199641,-0.003394,0.004249,0.249964,0,0);}
.m42_c01084{transform:matrix(0.200159,-0.003203,0.003999,0.249968,0,0);-ms-transform:matrix(0.200159,-0.003203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200159,-0.003203,0.003999,0.249968,0,0);}
.m34_c01084{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);}
.m31_c01084{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);}
.mbc_c01084{transform:matrix(0.200609,-0.003210,0.003999,0.249968,0,0);-ms-transform:matrix(0.200609,-0.003210,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200609,-0.003210,0.003999,0.249968,0,0);}
.m43_c01084{transform:matrix(0.201319,-0.003221,0.003999,0.249968,0,0);-ms-transform:matrix(0.201319,-0.003221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201319,-0.003221,0.003999,0.249968,0,0);}
.m2e_c01084{transform:matrix(0.201424,-0.003223,0.003999,0.249968,0,0);-ms-transform:matrix(0.201424,-0.003223,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201424,-0.003223,0.003999,0.249968,0,0);}
.me4_c01084{transform:matrix(0.201501,-0.003426,0.004249,0.249964,0,0);-ms-transform:matrix(0.201501,-0.003426,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201501,-0.003426,0.004249,0.249964,0,0);}
.m45_c01084{transform:matrix(0.202234,-0.003236,0.003999,0.249968,0,0);-ms-transform:matrix(0.202234,-0.003236,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202234,-0.003236,0.003999,0.249968,0,0);}
.mad_c01084{transform:matrix(0.202339,-0.003237,0.003999,0.249968,0,0);-ms-transform:matrix(0.202339,-0.003237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202339,-0.003237,0.003999,0.249968,0,0);}
.m103_c01084{transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);-ms-transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202511,-0.003443,0.004249,0.249964,0,0);}
.mb9_c01084{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);}
.m10b_c01084{transform:matrix(0.203106,-0.003453,0.004249,0.249964,0,0);-ms-transform:matrix(0.203106,-0.003453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203106,-0.003453,0.004249,0.249964,0,0);}
.mdf_c01084{transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);-ms-transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);}
.m32_c01084{transform:matrix(0.203519,-0.003256,0.003999,0.249968,0,0);-ms-transform:matrix(0.203519,-0.003256,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203519,-0.003256,0.003999,0.249968,0,0);}
.md7_c01084{transform:matrix(0.203766,-0.003464,0.004249,0.249964,0,0);-ms-transform:matrix(0.203766,-0.003464,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203766,-0.003464,0.004249,0.249964,0,0);}
.m3e_c01084{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);}
.m25_c01084{transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);-ms-transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205084,-0.003281,0.003999,0.249968,0,0);}
.mbd_c01084{transform:matrix(0.205739,-0.003292,0.003999,0.249968,0,0);-ms-transform:matrix(0.205739,-0.003292,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205739,-0.003292,0.003999,0.249968,0,0);}
.m17_c01084{transform:matrix(0.206610,-0.003512,0.004249,0.249964,0,0);-ms-transform:matrix(0.206610,-0.003512,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206610,-0.003512,0.004249,0.249964,0,0);}
.m49_c01084{transform:matrix(0.206749,-0.003308,0.003999,0.249968,0,0);-ms-transform:matrix(0.206749,-0.003308,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206749,-0.003308,0.003999,0.249968,0,0);}
.m3b_c01084{transform:matrix(0.207758,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207758,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207758,-0.003324,0.003999,0.249968,0,0);}
.m77_c01084{transform:matrix(0.207938,-0.003327,0.003999,0.249968,0,0);-ms-transform:matrix(0.207938,-0.003327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207938,-0.003327,0.003999,0.249968,0,0);}
.mfe_c01084{transform:matrix(0.208420,-0.003543,0.004249,0.249964,0,0);-ms-transform:matrix(0.208420,-0.003543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208420,-0.003543,0.004249,0.249964,0,0);}
.m57_c01084{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);}
.mf0_c01084{transform:matrix(0.208645,-0.003547,0.004249,0.249964,0,0);-ms-transform:matrix(0.208645,-0.003547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208645,-0.003547,0.004249,0.249964,0,0);}
.mf1_c01084{transform:matrix(0.209355,-0.003559,0.004249,0.249964,0,0);-ms-transform:matrix(0.209355,-0.003559,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209355,-0.003559,0.004249,0.249964,0,0);}
.m22_c01084{transform:matrix(0.209793,-0.003357,0.003999,0.249968,0,0);-ms-transform:matrix(0.209793,-0.003357,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209793,-0.003357,0.003999,0.249968,0,0);}
.m111_c01084{transform:matrix(0.210115,-0.003572,0.004249,0.249964,0,0);-ms-transform:matrix(0.210115,-0.003572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210115,-0.003572,0.004249,0.249964,0,0);}
.m50_c01084{transform:matrix(0.210443,-0.003367,0.003999,0.249968,0,0);-ms-transform:matrix(0.210443,-0.003367,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210443,-0.003367,0.003999,0.249968,0,0);}
.m10f_c01084{transform:matrix(0.210805,-0.003584,0.004249,0.249964,0,0);-ms-transform:matrix(0.210805,-0.003584,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210805,-0.003584,0.004249,0.249964,0,0);}
.m66_c01084{transform:matrix(0.211378,-0.003382,0.003999,0.249968,0,0);-ms-transform:matrix(0.211378,-0.003382,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211378,-0.003382,0.003999,0.249968,0,0);}
.mca_c01084{transform:matrix(0.211391,-0.003171,0.003750,0.249972,0,0);-ms-transform:matrix(0.211391,-0.003171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211391,-0.003171,0.003750,0.249972,0,0);}
.m114_c01084{transform:matrix(0.211619,-0.003598,0.004249,0.249964,0,0);-ms-transform:matrix(0.211619,-0.003598,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211619,-0.003598,0.004249,0.249964,0,0);}
.m11e_c01084{transform:matrix(0.211839,-0.003601,0.004249,0.249964,0,0);-ms-transform:matrix(0.211839,-0.003601,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211839,-0.003601,0.004249,0.249964,0,0);}
.m36_c01084{transform:matrix(0.211953,-0.003391,0.003999,0.249968,0,0);-ms-transform:matrix(0.211953,-0.003391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211953,-0.003391,0.003999,0.249968,0,0);}
.m2c_c01084{transform:matrix(0.212063,-0.003393,0.003999,0.249968,0,0);-ms-transform:matrix(0.212063,-0.003393,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212063,-0.003393,0.003999,0.249968,0,0);}
.mf7_c01084{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);}
.m82_c01084{transform:matrix(0.212438,-0.003399,0.003999,0.249968,0,0);-ms-transform:matrix(0.212438,-0.003399,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212438,-0.003399,0.003999,0.249968,0,0);}
.m2d_c01084{transform:matrix(0.212543,-0.003401,0.003999,0.249968,0,0);-ms-transform:matrix(0.212543,-0.003401,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212543,-0.003401,0.003999,0.249968,0,0);}
.mea_c01084{transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);-ms-transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);}
.m9c_c01084{transform:matrix(0.212848,-0.003406,0.003999,0.249968,0,0);-ms-transform:matrix(0.212848,-0.003406,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212848,-0.003406,0.003999,0.249968,0,0);}
.me3_c01084{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);}
.m72_c01084{transform:matrix(0.212968,-0.003407,0.003999,0.249968,0,0);-ms-transform:matrix(0.212968,-0.003407,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212968,-0.003407,0.003999,0.249968,0,0);}
.mbf_c01084{transform:matrix(0.214321,-0.003215,0.003750,0.249972,0,0);-ms-transform:matrix(0.214321,-0.003215,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214321,-0.003215,0.003750,0.249972,0,0);}
.m2f_c01084{transform:matrix(0.214848,-0.003438,0.003999,0.249968,0,0);-ms-transform:matrix(0.214848,-0.003438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214848,-0.003438,0.003999,0.249968,0,0);}
.mc8_c01084{transform:matrix(0.215651,-0.003235,0.003750,0.249972,0,0);-ms-transform:matrix(0.215651,-0.003235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215651,-0.003235,0.003750,0.249972,0,0);}
.m90_c01084{transform:matrix(0.217172,-0.003475,0.003999,0.249968,0,0);-ms-transform:matrix(0.217172,-0.003475,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217172,-0.003475,0.003999,0.249968,0,0);}
.m2a_c01084{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);}
.mda_c01084{transform:matrix(0.219193,-0.003726,0.004249,0.249964,0,0);-ms-transform:matrix(0.219193,-0.003726,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219193,-0.003726,0.004249,0.249964,0,0);}
.m58_c01084{transform:matrix(0.219712,-0.003515,0.003999,0.249968,0,0);-ms-transform:matrix(0.219712,-0.003515,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219712,-0.003515,0.003999,0.249968,0,0);}
.m129_c01084{transform:matrix(0.220413,-0.003747,0.004249,0.249964,0,0);-ms-transform:matrix(0.220413,-0.003747,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220413,-0.003747,0.004249,0.249964,0,0);}
.md3_c01084{transform:matrix(0.220683,-0.003752,0.004249,0.249964,0,0);-ms-transform:matrix(0.220683,-0.003752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220683,-0.003752,0.004249,0.249964,0,0);}
.m18_c01084{transform:matrix(0.221013,-0.003757,0.004249,0.249964,0,0);-ms-transform:matrix(0.221013,-0.003757,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221013,-0.003757,0.004249,0.249964,0,0);}
.mb4_c01084{transform:matrix(0.221047,-0.003537,0.003999,0.249968,0,0);-ms-transform:matrix(0.221047,-0.003537,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221047,-0.003537,0.003999,0.249968,0,0);}
.mc6_c01084{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);}
.ma6_c01084{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);}
.m48_c01084{transform:matrix(0.222172,-0.003555,0.003999,0.249968,0,0);-ms-transform:matrix(0.222172,-0.003555,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222172,-0.003555,0.003999,0.249968,0,0);}
.m19_c01084{transform:matrix(0.223913,-0.003807,0.004249,0.249964,0,0);-ms-transform:matrix(0.223913,-0.003807,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223913,-0.003807,0.004249,0.249964,0,0);}
.mc1_c01084{transform:matrix(0.223980,-0.003360,0.003750,0.249972,0,0);-ms-transform:matrix(0.223980,-0.003360,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223980,-0.003360,0.003750,0.249972,0,0);}
.m26_c01084{transform:matrix(0.224346,-0.003590,0.003999,0.249968,0,0);-ms-transform:matrix(0.224346,-0.003590,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224346,-0.003590,0.003999,0.249968,0,0);}
.mbb_c01084{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);}
.m2b_c01084{transform:matrix(0.224536,-0.003593,0.003999,0.249968,0,0);-ms-transform:matrix(0.224536,-0.003593,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224536,-0.003593,0.003999,0.249968,0,0);}
.m29_c01084{transform:matrix(0.225221,-0.003604,0.003999,0.249968,0,0);-ms-transform:matrix(0.225221,-0.003604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225221,-0.003604,0.003999,0.249968,0,0);}
.meb_c01084{transform:matrix(0.225272,-0.003830,0.004249,0.249964,0,0);-ms-transform:matrix(0.225272,-0.003830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225272,-0.003830,0.004249,0.249964,0,0);}
.mc3_c01084{transform:matrix(0.225325,-0.003380,0.003750,0.249972,0,0);-ms-transform:matrix(0.225325,-0.003380,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225325,-0.003380,0.003750,0.249972,0,0);}
.m10a_c01084{transform:matrix(0.225372,-0.003831,0.004249,0.249964,0,0);-ms-transform:matrix(0.225372,-0.003831,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225372,-0.003831,0.004249,0.249964,0,0);}
.m122_c01084{transform:matrix(0.225447,-0.003833,0.004249,0.249964,0,0);-ms-transform:matrix(0.225447,-0.003833,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225447,-0.003833,0.004249,0.249964,0,0);}
.m126_c01084{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);}
.ma9_c01084{transform:matrix(0.226101,-0.003618,0.003999,0.249968,0,0);-ms-transform:matrix(0.226101,-0.003618,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226101,-0.003618,0.003999,0.249968,0,0);}
.m4b_c01084{transform:matrix(0.226436,-0.003623,0.003999,0.249968,0,0);-ms-transform:matrix(0.226436,-0.003623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226436,-0.003623,0.003999,0.249968,0,0);}
.m112_c01084{transform:matrix(0.226927,-0.003858,0.004249,0.249964,0,0);-ms-transform:matrix(0.226927,-0.003858,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226927,-0.003858,0.004249,0.249964,0,0);}
.m14_c01084{transform:matrix(0.227392,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227392,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227392,-0.003866,0.004249,0.249964,0,0);}
.m5_c01084{transform:matrix(0.229627,-0.003904,0.004249,0.249964,0,0);-ms-transform:matrix(0.229627,-0.003904,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229627,-0.003904,0.004249,0.249964,0,0);}
.m53_c01084{transform:matrix(0.229701,-0.003675,0.003999,0.249968,0,0);-ms-transform:matrix(0.229701,-0.003675,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229701,-0.003675,0.003999,0.249968,0,0);}
.m1a_c01084{transform:matrix(0.229987,-0.003910,0.004249,0.249964,0,0);-ms-transform:matrix(0.229987,-0.003910,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229987,-0.003910,0.004249,0.249964,0,0);}
.mae_c01084{transform:matrix(0.231860,-0.003710,0.003999,0.249968,0,0);-ms-transform:matrix(0.231860,-0.003710,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231860,-0.003710,0.003999,0.249968,0,0);}
.m11b_c01084{transform:matrix(0.232281,-0.003949,0.004249,0.249964,0,0);-ms-transform:matrix(0.232281,-0.003949,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232281,-0.003949,0.004249,0.249964,0,0);}
.m1c_c01084{transform:matrix(0.232736,-0.003957,0.004249,0.249964,0,0);-ms-transform:matrix(0.232736,-0.003957,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232736,-0.003957,0.004249,0.249964,0,0);}
.m12f_c01084{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);}
.m7d_c01084{transform:matrix(0.233605,-0.003738,0.003999,0.249968,0,0);-ms-transform:matrix(0.233605,-0.003738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233605,-0.003738,0.003999,0.249968,0,0);}
.mdb_c01084{transform:matrix(0.233721,-0.003973,0.004249,0.249964,0,0);-ms-transform:matrix(0.233721,-0.003973,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233721,-0.003973,0.004249,0.249964,0,0);}
.mac_c01084{transform:matrix(0.233865,-0.003742,0.003999,0.249968,0,0);-ms-transform:matrix(0.233865,-0.003742,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233865,-0.003742,0.003999,0.249968,0,0);}
.m118_c01084{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);}
.ma1_c01084{transform:matrix(0.234710,-0.003755,0.003999,0.249968,0,0);-ms-transform:matrix(0.234710,-0.003755,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234710,-0.003755,0.003999,0.249968,0,0);}
.mcf_c01084{transform:matrix(0.235621,-0.004006,0.004249,0.249964,0,0);-ms-transform:matrix(0.235621,-0.004006,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235621,-0.004006,0.004249,0.249964,0,0);}
.m10c_c01084{transform:matrix(0.235911,-0.004010,0.004249,0.249964,0,0);-ms-transform:matrix(0.235911,-0.004010,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235911,-0.004010,0.004249,0.249964,0,0);}
.m55_c01084{transform:matrix(0.236095,-0.003778,0.003999,0.249968,0,0);-ms-transform:matrix(0.236095,-0.003778,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236095,-0.003778,0.003999,0.249968,0,0);}
.m16_c01084{transform:matrix(0.236291,-0.004017,0.004249,0.249964,0,0);-ms-transform:matrix(0.236291,-0.004017,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236291,-0.004017,0.004249,0.249964,0,0);}
.m2_c01084{transform:matrix(0.236631,-0.004023,0.004249,0.249964,0,0);-ms-transform:matrix(0.236631,-0.004023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236631,-0.004023,0.004249,0.249964,0,0);}
.m7f_c01084{transform:matrix(0.236700,-0.003787,0.003999,0.249968,0,0);-ms-transform:matrix(0.236700,-0.003787,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236700,-0.003787,0.003999,0.249968,0,0);}
.m60_c01084{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);}
.mdd_c01084{transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);-ms-transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239030,-0.004064,0.004249,0.249964,0,0);}
.m116_c01084{transform:matrix(0.239335,-0.004069,0.004249,0.249964,0,0);-ms-transform:matrix(0.239335,-0.004069,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239335,-0.004069,0.004249,0.249964,0,0);}
.m10d_c01084{transform:matrix(0.240070,-0.004081,0.004249,0.249964,0,0);-ms-transform:matrix(0.240070,-0.004081,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240070,-0.004081,0.004249,0.249964,0,0);}
.md2_c01084{transform:matrix(0.240410,-0.004087,0.004249,0.249964,0,0);-ms-transform:matrix(0.240410,-0.004087,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240410,-0.004087,0.004249,0.249964,0,0);}
.m89_c01084{transform:matrix(0.241639,-0.003866,0.003999,0.249968,0,0);-ms-transform:matrix(0.241639,-0.003866,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241639,-0.003866,0.003999,0.249968,0,0);}
.m99_c01084{transform:matrix(0.241969,-0.003872,0.003999,0.249968,0,0);-ms-transform:matrix(0.241969,-0.003872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241969,-0.003872,0.003999,0.249968,0,0);}
.mf6_c01084{transform:matrix(0.244450,-0.004156,0.004249,0.249964,0,0);-ms-transform:matrix(0.244450,-0.004156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244450,-0.004156,0.004249,0.249964,0,0);}
.m3_c01084{transform:matrix(0.246514,-0.004191,0.004249,0.249964,0,0);-ms-transform:matrix(0.246514,-0.004191,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246514,-0.004191,0.004249,0.249964,0,0);}
.ma4_c01084{transform:matrix(0.247063,-0.003953,0.003999,0.249968,0,0);-ms-transform:matrix(0.247063,-0.003953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247063,-0.003953,0.003999,0.249968,0,0);}
.m64_c01084{transform:matrix(0.247448,-0.003959,0.003999,0.249968,0,0);-ms-transform:matrix(0.247448,-0.003959,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247448,-0.003959,0.003999,0.249968,0,0);}
.m127_c01084{transform:matrix(0.248459,-0.004224,0.004249,0.249964,0,0);-ms-transform:matrix(0.248459,-0.004224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248459,-0.004224,0.004249,0.249964,0,0);}
.m74_c01084{transform:matrix(0.249033,-0.003985,0.003999,0.249968,0,0);-ms-transform:matrix(0.249033,-0.003985,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249033,-0.003985,0.003999,0.249968,0,0);}
.m24_c01084{transform:matrix(0.249878,-0.003998,0.003999,0.249968,0,0);-ms-transform:matrix(0.249878,-0.003998,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249878,-0.003998,0.003999,0.249968,0,0);}
.m117_c01084{transform:matrix(0.249994,-0.004250,0.004249,0.249964,0,0);-ms-transform:matrix(0.249994,-0.004250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249994,-0.004250,0.004249,0.249964,0,0);}
.m5d_c01084{transform:matrix(0.250808,-0.004013,0.003999,0.249968,0,0);-ms-transform:matrix(0.250808,-0.004013,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250808,-0.004013,0.003999,0.249968,0,0);}
.m44_c01084{transform:matrix(0.251078,-0.004017,0.003999,0.249968,0,0);-ms-transform:matrix(0.251078,-0.004017,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251078,-0.004017,0.003999,0.249968,0,0);}
.m11c_c01084{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);}
.m46_c01084{transform:matrix(0.251608,-0.004026,0.003999,0.249968,0,0);-ms-transform:matrix(0.251608,-0.004026,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251608,-0.004026,0.003999,0.249968,0,0);}
.m11f_c01084{transform:matrix(0.253683,-0.004313,0.004249,0.249964,0,0);-ms-transform:matrix(0.253683,-0.004313,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253683,-0.004313,0.004249,0.249964,0,0);}
.m11a_c01084{transform:matrix(0.254413,-0.004325,0.004249,0.249964,0,0);-ms-transform:matrix(0.254413,-0.004325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254413,-0.004325,0.004249,0.249964,0,0);}
.m27_c01084{transform:matrix(0.258137,-0.004130,0.003999,0.249968,0,0);-ms-transform:matrix(0.258137,-0.004130,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258137,-0.004130,0.003999,0.249968,0,0);}
.me6_c01084{transform:matrix(0.259203,-0.004406,0.004249,0.249964,0,0);-ms-transform:matrix(0.259203,-0.004406,0.004249,0.249964,0,0);-webkit-transform:matrix(0.259203,-0.004406,0.004249,0.249964,0,0);}
.m52_c01084{transform:matrix(0.259827,-0.004157,0.003999,0.249968,0,0);-ms-transform:matrix(0.259827,-0.004157,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259827,-0.004157,0.003999,0.249968,0,0);}
.m119_c01084{transform:matrix(0.260102,-0.004422,0.004249,0.249964,0,0);-ms-transform:matrix(0.260102,-0.004422,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260102,-0.004422,0.004249,0.249964,0,0);}
.m11d_c01084{transform:matrix(0.260392,-0.004427,0.004249,0.249964,0,0);-ms-transform:matrix(0.260392,-0.004427,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260392,-0.004427,0.004249,0.249964,0,0);}
.ma5_c01084{transform:matrix(0.261437,-0.004183,0.003999,0.249968,0,0);-ms-transform:matrix(0.261437,-0.004183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261437,-0.004183,0.003999,0.249968,0,0);}
.ma7_c01084{transform:matrix(0.262351,-0.004198,0.003999,0.249968,0,0);-ms-transform:matrix(0.262351,-0.004198,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262351,-0.004198,0.003999,0.249968,0,0);}
.m4e_c01084{transform:matrix(0.266316,-0.004261,0.003999,0.249968,0,0);-ms-transform:matrix(0.266316,-0.004261,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266316,-0.004261,0.003999,0.249968,0,0);}
.m105_c01084{transform:matrix(0.271561,-0.004617,0.004249,0.249964,0,0);-ms-transform:matrix(0.271561,-0.004617,0.004249,0.249964,0,0);-webkit-transform:matrix(0.271561,-0.004617,0.004249,0.249964,0,0);}
.mc0_c01084{transform:matrix(0.275889,-0.004138,0.003750,0.249972,0,0);-ms-transform:matrix(0.275889,-0.004138,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275889,-0.004138,0.003750,0.249972,0,0);}
.m9_c01084{transform:matrix(0.283579,-0.004821,0.004249,0.249964,0,0);-ms-transform:matrix(0.283579,-0.004821,0.004249,0.249964,0,0);-webkit-transform:matrix(0.283579,-0.004821,0.004249,0.249964,0,0);}
.m131_c01084{transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285600,0.000000,0.000000,0.250000,0,0);}
.maf_c01084{transform:matrix(0.291288,-0.004661,0.003999,0.249968,0,0);-ms-transform:matrix(0.291288,-0.004661,0.003999,0.249968,0,0);-webkit-transform:matrix(0.291288,-0.004661,0.003999,0.249968,0,0);}
.m9e_c01084{transform:matrix(0.293287,-0.004693,0.003999,0.249968,0,0);-ms-transform:matrix(0.293287,-0.004693,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293287,-0.004693,0.003999,0.249968,0,0);}
.m9d_c01084{transform:matrix(0.293622,-0.004698,0.003999,0.249968,0,0);-ms-transform:matrix(0.293622,-0.004698,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293622,-0.004698,0.003999,0.249968,0,0);}
.m51_c01084{transform:matrix(0.304726,-0.004876,0.003999,0.249968,0,0);-ms-transform:matrix(0.304726,-0.004876,0.003999,0.249968,0,0);-webkit-transform:matrix(0.304726,-0.004876,0.003999,0.249968,0,0);}
.m12d_c01084{transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);}
.m54_c01084{transform:matrix(0.320229,-0.005124,0.003999,0.249968,0,0);-ms-transform:matrix(0.320229,-0.005124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.320229,-0.005124,0.003999,0.249968,0,0);}
.m5e_c01084{transform:matrix(0.325048,-0.005201,0.003999,0.249968,0,0);-ms-transform:matrix(0.325048,-0.005201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.325048,-0.005201,0.003999,0.249968,0,0);}
.m0_c01084{transform:matrix(0.325118,-0.005527,0.004249,0.249964,0,0);-ms-transform:matrix(0.325118,-0.005527,0.004249,0.249964,0,0);-webkit-transform:matrix(0.325118,-0.005527,0.004249,0.249964,0,0);}
.mff_c01084{transform:matrix(0.332262,-0.005648,0.004249,0.249964,0,0);-ms-transform:matrix(0.332262,-0.005648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.332262,-0.005648,0.004249,0.249964,0,0);}
.m33_c01084{transform:matrix(0.342741,-0.005484,0.003999,0.249968,0,0);-ms-transform:matrix(0.342741,-0.005484,0.003999,0.249968,0,0);-webkit-transform:matrix(0.342741,-0.005484,0.003999,0.249968,0,0);}
.ma2_c01084{transform:matrix(0.355200,-0.005683,0.003999,0.249968,0,0);-ms-transform:matrix(0.355200,-0.005683,0.003999,0.249968,0,0);-webkit-transform:matrix(0.355200,-0.005683,0.003999,0.249968,0,0);}
.mb1_c01084{transform:matrix(0.356724,-0.005708,0.003999,0.249968,0,0);-ms-transform:matrix(0.356724,-0.005708,0.003999,0.249968,0,0);-webkit-transform:matrix(0.356724,-0.005708,0.003999,0.249968,0,0);}
.m65_c01084{transform:matrix(0.358449,-0.005735,0.003999,0.249968,0,0);-ms-transform:matrix(0.358449,-0.005735,0.003999,0.249968,0,0);-webkit-transform:matrix(0.358449,-0.005735,0.003999,0.249968,0,0);}
.m9f_c01084{transform:matrix(0.373737,-0.005980,0.003999,0.249968,0,0);-ms-transform:matrix(0.373737,-0.005980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.373737,-0.005980,0.003999,0.249968,0,0);}
.me5_c01084{transform:matrix(0.403292,-0.006856,0.004249,0.249964,0,0);-ms-transform:matrix(0.403292,-0.006856,0.004249,0.249964,0,0);-webkit-transform:matrix(0.403292,-0.006856,0.004249,0.249964,0,0);}
.mce_c01084{transform:matrix(0.455589,-0.006834,0.003750,0.249972,0,0);-ms-transform:matrix(0.455589,-0.006834,0.003750,0.249972,0,0);-webkit-transform:matrix(0.455589,-0.006834,0.003750,0.249972,0,0);}
.m133_c01084{transform:matrix(0.459760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459760,0.000000,0.000000,0.250000,0,0);}
.m121_c01084{transform:matrix(0.461953,-0.007853,0.004249,0.249964,0,0);-ms-transform:matrix(0.461953,-0.007853,0.004249,0.249964,0,0);-webkit-transform:matrix(0.461953,-0.007853,0.004249,0.249964,0,0);}
.mbe_c01084{transform:matrix(0.475279,-0.007604,0.003999,0.249968,0,0);-ms-transform:matrix(0.475279,-0.007604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.475279,-0.007604,0.003999,0.249968,0,0);}
.m109_c01084{transform:matrix(0.530753,-0.009023,0.004249,0.249964,0,0);-ms-transform:matrix(0.530753,-0.009023,0.004249,0.249964,0,0);-webkit-transform:matrix(0.530753,-0.009023,0.004249,0.249964,0,0);}
.md6_c01084{transform:matrix(0.531823,-0.009041,0.004249,0.249964,0,0);-ms-transform:matrix(0.531823,-0.009041,0.004249,0.249964,0,0);-webkit-transform:matrix(0.531823,-0.009041,0.004249,0.249964,0,0);}
.m94_c01084{transform:matrix(0.549755,-0.008796,0.003999,0.249968,0,0);-ms-transform:matrix(0.549755,-0.008796,0.003999,0.249968,0,0);-webkit-transform:matrix(0.549755,-0.008796,0.003999,0.249968,0,0);}
.m130_c01084{transform:matrix(0.613330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613330,0.000000,0.000000,0.250000,0,0);}
.mfd_c01084{transform:matrix(0.648701,-0.011028,0.004249,0.249964,0,0);-ms-transform:matrix(0.648701,-0.011028,0.004249,0.249964,0,0);-webkit-transform:matrix(0.648701,-0.011028,0.004249,0.249964,0,0);}
.m115_c01084{transform:matrix(0.691865,-0.011762,0.004249,0.249964,0,0);-ms-transform:matrix(0.691865,-0.011762,0.004249,0.249964,0,0);-webkit-transform:matrix(0.691865,-0.011762,0.004249,0.249964,0,0);}
.m6a_c01084{transform:matrix(0.694621,-0.011114,0.003999,0.249968,0,0);-ms-transform:matrix(0.694621,-0.011114,0.003999,0.249968,0,0);-webkit-transform:matrix(0.694621,-0.011114,0.003999,0.249968,0,0);}
.m12c_c01084{transform:matrix(0.703980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703980,0.000000,0.000000,0.250000,0,0);}
.md9_c01084{transform:matrix(0.797735,-0.013561,0.004249,0.249964,0,0);-ms-transform:matrix(0.797735,-0.013561,0.004249,0.249964,0,0);-webkit-transform:matrix(0.797735,-0.013561,0.004249,0.249964,0,0);}
.mc9_c01084{transform:matrix(1.036798,-0.015552,0.003750,0.249972,0,0);-ms-transform:matrix(1.036798,-0.015552,0.003750,0.249972,0,0);-webkit-transform:matrix(1.036798,-0.015552,0.003750,0.249972,0,0);}
.m12b_c01084{transform:matrix(1.258648,-0.021397,0.004249,0.249964,0,0);-ms-transform:matrix(1.258648,-0.021397,0.004249,0.249964,0,0);-webkit-transform:matrix(1.258648,-0.021397,0.004249,0.249964,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls0_c01084{letter-spacing:0.000000px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:0.000000px;}
.fc0_c01084{color:transparent;}
.fs12_c01084{font-size:22.050000px;}
.fsa_c01084{font-size:59.857660px;}
.fs0_c01084{font-size:60.908799px;}
.fsb_c01084{font-size:61.957929px;}
.fsf_c01084{font-size:61.958951px;}
.fsc_c01084{font-size:63.007087px;}
.fs6_c01084{font-size:66.158467px;}
.fse_c01084{font-size:66.159558px;}
.fs5_c01084{font-size:68.258735px;}
.fsd_c01084{font-size:69.307796px;}
.fs8_c01084{font-size:69.308870px;}
.fs10_c01084{font-size:70.350000px;}
.fs4_c01084{font-size:70.359004px;}
.fs3_c01084{font-size:70.360165px;}
.fs11_c01084{font-size:71.400000px;}
.fs7_c01084{font-size:71.409139px;}
.fs2_c01084{font-size:71.410317px;}
.fs1_c01084{font-size:72.460468px;}
.fs9_c01084{font-size:73.509407px;}
.y0_c01084{bottom:0.000000px;}
.y12f_c01084{bottom:154.630500px;}
.y12e_c01084{bottom:178.606500px;}
.y124_c01084{bottom:179.824500px;}
.y125_c01084{bottom:180.851742px;}
.y126_c01084{bottom:181.741539px;}
.y127_c01084{bottom:182.357848px;}
.y128_c01084{bottom:183.413319px;}
.y129_c01084{bottom:184.235209px;}
.y12a_c01084{bottom:185.133702px;}
.y12b_c01084{bottom:185.488789px;}
.y12d_c01084{bottom:186.960190px;}
.y12c_c01084{bottom:187.031361px;}
.y118_c01084{bottom:201.380097px;}
.y119_c01084{bottom:202.207948px;}
.y11a_c01084{bottom:202.679729px;}
.y11b_c01084{bottom:203.475484px;}
.y11c_c01084{bottom:204.552517px;}
.y11d_c01084{bottom:205.261167px;}
.y11e_c01084{bottom:206.446365px;}
.y11f_c01084{bottom:207.816023px;}
.y120_c01084{bottom:208.446847px;}
.y121_c01084{bottom:208.903281px;}
.y122_c01084{bottom:209.324763px;}
.y123_c01084{bottom:210.904320px;}
.y10c_c01084{bottom:224.072157px;}
.y10d_c01084{bottom:224.831105px;}
.y10e_c01084{bottom:225.129029px;}
.y10f_c01084{bottom:225.774843px;}
.y110_c01084{bottom:226.740120px;}
.y111_c01084{bottom:228.576534px;}
.y112_c01084{bottom:229.208838px;}
.y113_c01084{bottom:230.125428px;}
.y114_c01084{bottom:231.406500px;}
.y115_c01084{bottom:231.702537px;}
.y116_c01084{bottom:232.834713px;}
.y117_c01084{bottom:233.609542px;}
.y100_c01084{bottom:247.013196px;}
.y101_c01084{bottom:248.219245px;}
.y102_c01084{bottom:248.456125px;}
.y103_c01084{bottom:248.958976px;}
.y104_c01084{bottom:250.271827px;}
.y105_c01084{bottom:251.117013px;}
.y106_c01084{bottom:251.458093px;}
.y107_c01084{bottom:252.522059px;}
.y108_c01084{bottom:253.057137px;}
.y109_c01084{bottom:254.287382px;}
.y10a_c01084{bottom:254.788728px;}
.y10b_c01084{bottom:256.037332px;}
.yf4_c01084{bottom:270.509661px;}
.yf5_c01084{bottom:271.330506px;}
.yf6_c01084{bottom:272.072492px;}
.yf7_c01084{bottom:272.484240px;}
.yf8_c01084{bottom:273.694491px;}
.yf9_c01084{bottom:274.027304px;}
.yfa_c01084{bottom:274.886586px;}
.yfb_c01084{bottom:275.430579px;}
.yfc_c01084{bottom:276.110280px;}
.yfd_c01084{bottom:277.180284px;}
.yfe_c01084{bottom:277.622713px;}
.yff_c01084{bottom:278.570499px;}
.ye8_c01084{bottom:293.187455px;}
.ye9_c01084{bottom:293.792850px;}
.yea_c01084{bottom:294.911637px;}
.yeb_c01084{bottom:295.266495px;}
.yec_c01084{bottom:295.890964px;}
.yed_c01084{bottom:296.428224px;}
.yee_c01084{bottom:298.144858px;}
.yef_c01084{bottom:298.631628px;}
.yf0_c01084{bottom:299.503983px;}
.yf1_c01084{bottom:300.270411px;}
.yf2_c01084{bottom:300.752514px;}
.yf3_c01084{bottom:301.916181px;}
.ydc_c01084{bottom:316.159431px;}
.ydd_c01084{bottom:316.838622px;}
.yde_c01084{bottom:317.520950px;}
.ydf_c01084{bottom:318.562206px;}
.ye0_c01084{bottom:318.911879px;}
.ye1_c01084{bottom:320.095886px;}
.ye2_c01084{bottom:320.591215px;}
.ye3_c01084{bottom:321.055477px;}
.ye4_c01084{bottom:321.698811px;}
.ye5_c01084{bottom:322.415726px;}
.ye6_c01084{bottom:322.900111px;}
.ye7_c01084{bottom:324.214782px;}
.yd0_c01084{bottom:338.553000px;}
.yd1_c01084{bottom:340.440918px;}
.yd2_c01084{bottom:340.682454px;}
.yd3_c01084{bottom:340.984094px;}
.yd4_c01084{bottom:341.192021px;}
.yd5_c01084{bottom:342.637973px;}
.yd6_c01084{bottom:343.000837px;}
.yd7_c01084{bottom:344.050774px;}
.yd8_c01084{bottom:344.427894px;}
.yd9_c01084{bottom:345.383404px;}
.yda_c01084{bottom:345.847071px;}
.ydb_c01084{bottom:346.805233px;}
.ycb_c01084{bottom:366.391455px;}
.ycc_c01084{bottom:366.779393px;}
.ycd_c01084{bottom:367.518937px;}
.yce_c01084{bottom:373.945988px;}
.ycf_c01084{bottom:374.494995px;}
.yc0_c01084{bottom:389.073000px;}
.yc1_c01084{bottom:390.437580px;}
.yc2_c01084{bottom:390.794430px;}
.yc3_c01084{bottom:391.668397px;}
.yc4_c01084{bottom:392.268585px;}
.yc5_c01084{bottom:392.677703px;}
.yc6_c01084{bottom:393.836183px;}
.yc7_c01084{bottom:394.994483px;}
.yc8_c01084{bottom:395.334772px;}
.yc9_c01084{bottom:396.091065px;}
.yca_c01084{bottom:396.814283px;}
.yb3_c01084{bottom:412.255476px;}
.yb4_c01084{bottom:412.664940px;}
.yb5_c01084{bottom:413.489832px;}
.yb6_c01084{bottom:414.301224px;}
.yb7_c01084{bottom:415.208784px;}
.yb8_c01084{bottom:415.642284px;}
.yb9_c01084{bottom:415.998852px;}
.yba_c01084{bottom:416.670900px;}
.ybb_c01084{bottom:417.176940px;}
.ybc_c01084{bottom:417.562176px;}
.ybd_c01084{bottom:418.041156px;}
.ybe_c01084{bottom:418.924440px;}
.ybf_c01084{bottom:420.059040px;}
.ya5_c01084{bottom:435.472356px;}
.ya6_c01084{bottom:435.779232px;}
.ya7_c01084{bottom:436.837260px;}
.ya8_c01084{bottom:437.141688px;}
.ya9_c01084{bottom:438.268188px;}
.yaa_c01084{bottom:438.360912px;}
.yab_c01084{bottom:438.576936px;}
.yac_c01084{bottom:439.061928px;}
.yad_c01084{bottom:440.138148px;}
.yae_c01084{bottom:440.387124px;}
.yaf_c01084{bottom:440.864256px;}
.yb0_c01084{bottom:441.597000px;}
.yb1_c01084{bottom:441.928272px;}
.yb2_c01084{bottom:442.500132px;}
.y130_c01084{bottom:456.877500px;}
.y9d_c01084{bottom:460.589676px;}
.y9e_c01084{bottom:461.653308px;}
.y9f_c01084{bottom:462.364920px;}
.ya0_c01084{bottom:463.034724px;}
.ya1_c01084{bottom:463.093188px;}
.ya2_c01084{bottom:463.177320px;}
.ya3_c01084{bottom:464.121168px;}
.ya4_c01084{bottom:464.233284px;}
.y92_c01084{bottom:480.573996px;}
.y93_c01084{bottom:481.720056px;}
.y94_c01084{bottom:482.051892px;}
.y95_c01084{bottom:482.942508px;}
.y96_c01084{bottom:484.121484px;}
.y97_c01084{bottom:484.357092px;}
.y98_c01084{bottom:484.693368px;}
.y99_c01084{bottom:485.799420px;}
.y9a_c01084{bottom:486.179832px;}
.y9b_c01084{bottom:486.974292px;}
.y9c_c01084{bottom:487.481364px;}
.y88_c01084{bottom:502.177944px;}
.y89_c01084{bottom:502.571496px;}
.y8a_c01084{bottom:504.113544px;}
.y8b_c01084{bottom:504.502440px;}
.y8c_c01084{bottom:505.516608px;}
.y8d_c01084{bottom:506.170008px;}
.y8e_c01084{bottom:506.653848px;}
.y8f_c01084{bottom:507.056040px;}
.y90_c01084{bottom:508.218120px;}
.y91_c01084{bottom:509.177520px;}
.y7b_c01084{bottom:525.130224px;}
.y7c_c01084{bottom:525.667800px;}
.y7d_c01084{bottom:526.107228px;}
.y7e_c01084{bottom:526.832556px;}
.y7f_c01084{bottom:527.144100px;}
.y80_c01084{bottom:528.059016px;}
.y81_c01084{bottom:528.366504px;}
.y82_c01084{bottom:528.666708px;}
.y83_c01084{bottom:529.845804px;}
.y84_c01084{bottom:530.359752px;}
.y85_c01084{bottom:530.780748px;}
.y86_c01084{bottom:531.477408px;}
.y87_c01084{bottom:531.789216px;}
.y70_c01084{bottom:548.081088px;}
.y71_c01084{bottom:548.511564px;}
.y72_c01084{bottom:548.916708px;}
.y73_c01084{bottom:549.905580px;}
.y74_c01084{bottom:551.529372px;}
.y75_c01084{bottom:551.853684px;}
.y76_c01084{bottom:552.157896px;}
.y77_c01084{bottom:552.453324px;}
.y78_c01084{bottom:552.896676px;}
.y79_c01084{bottom:553.694088px;}
.y7a_c01084{bottom:554.410896px;}
.y66_c01084{bottom:571.033260px;}
.y67_c01084{bottom:571.243728px;}
.y68_c01084{bottom:572.872248px;}
.y69_c01084{bottom:573.297492px;}
.y6a_c01084{bottom:574.274112px;}
.y6b_c01084{bottom:574.689756px;}
.y6c_c01084{bottom:575.840952px;}
.y6d_c01084{bottom:576.517632px;}
.y6e_c01084{bottom:577.291800px;}
.y6f_c01084{bottom:577.797840px;}
.y63_c01084{bottom:598.575288px;}
.y64_c01084{bottom:598.855356px;}
.y65_c01084{bottom:604.259712px;}
.y56_c01084{bottom:621.256572px;}
.y57_c01084{bottom:621.552096px;}
.y58_c01084{bottom:622.050372px;}
.y59_c01084{bottom:622.568676px;}
.y5a_c01084{bottom:622.792752px;}
.y5b_c01084{bottom:623.078112px;}
.y5c_c01084{bottom:623.470608px;}
.y5d_c01084{bottom:623.942616px;}
.y5e_c01084{bottom:624.767172px;}
.y5f_c01084{bottom:625.054596px;}
.y60_c01084{bottom:625.465776px;}
.y61_c01084{bottom:626.011344px;}
.y62_c01084{bottom:626.678112px;}
.y4d_c01084{bottom:643.671348px;}
.y4e_c01084{bottom:644.661204px;}
.y4f_c01084{bottom:645.970548px;}
.y50_c01084{bottom:646.291284px;}
.y51_c01084{bottom:648.035652px;}
.y52_c01084{bottom:648.717444px;}
.y53_c01084{bottom:649.854276px;}
.y54_c01084{bottom:650.312076px;}
.y55_c01084{bottom:651.219516px;}
.y42_c01084{bottom:666.624360px;}
.y43_c01084{bottom:666.985176px;}
.y44_c01084{bottom:667.621272px;}
.y45_c01084{bottom:668.678292px;}
.y46_c01084{bottom:668.981460px;}
.y47_c01084{bottom:669.248868px;}
.y48_c01084{bottom:669.981192px;}
.y49_c01084{bottom:671.204952px;}
.y4a_c01084{bottom:672.302172px;}
.y4b_c01084{bottom:672.937548px;}
.y4c_c01084{bottom:673.335036px;}
.y38_c01084{bottom:688.768080px;}
.y39_c01084{bottom:689.938656px;}
.y3a_c01084{bottom:690.319320px;}
.y3b_c01084{bottom:691.161552px;}
.y3c_c01084{bottom:692.336640px;}
.y3d_c01084{bottom:692.980440px;}
.y3e_c01084{bottom:693.576528px;}
.y3f_c01084{bottom:694.129752px;}
.y40_c01084{bottom:694.976352px;}
.y41_c01084{bottom:696.081240px;}
.y2c_c01084{bottom:711.721644px;}
.y2d_c01084{bottom:712.070340px;}
.y2e_c01084{bottom:712.667676px;}
.y2f_c01084{bottom:713.308260px;}
.y30_c01084{bottom:714.479028px;}
.y31_c01084{bottom:715.501572px;}
.y32_c01084{bottom:716.102124px;}
.y33_c01084{bottom:716.810916px;}
.y34_c01084{bottom:717.489348px;}
.y35_c01084{bottom:717.792804px;}
.y36_c01084{bottom:718.288572px;}
.y37_c01084{bottom:719.083356px;}
.y23_c01084{bottom:734.404500px;}
.y24_c01084{bottom:736.072644px;}
.y25_c01084{bottom:737.289828px;}
.y26_c01084{bottom:737.644380px;}
.y27_c01084{bottom:739.140156px;}
.y28_c01084{bottom:739.605900px;}
.y29_c01084{bottom:739.977444px;}
.y2a_c01084{bottom:740.661228px;}
.y2b_c01084{bottom:741.118332px;}
.y20_c01084{bottom:761.122137px;}
.y21_c01084{bottom:762.475972px;}
.y22_c01084{bottom:763.078980px;}
.y14_c01084{bottom:783.800973px;}
.y15_c01084{bottom:785.291269px;}
.y16_c01084{bottom:785.644801px;}
.y17_c01084{bottom:785.952510px;}
.y18_c01084{bottom:786.793066px;}
.y19_c01084{bottom:787.937047px;}
.y1a_c01084{bottom:788.331584px;}
.y1b_c01084{bottom:789.374075px;}
.y1c_c01084{bottom:789.790311px;}
.y1d_c01084{bottom:790.804471px;}
.y1e_c01084{bottom:791.181183px;}
.y1f_c01084{bottom:791.638857px;}
.yc_c01084{bottom:807.030907px;}
.yd_c01084{bottom:807.768405px;}
.ye_c01084{bottom:808.230853px;}
.yf_c01084{bottom:809.471057px;}
.y10_c01084{bottom:810.248734px;}
.y11_c01084{bottom:811.650216px;}
.y12_c01084{bottom:812.059831px;}
.y13_c01084{bottom:813.768098px;}
.y1_c01084{bottom:829.488000px;}
.y2_c01084{bottom:830.087964px;}
.y3_c01084{bottom:830.345438px;}
.y4_c01084{bottom:831.648895px;}
.y5_c01084{bottom:832.258728px;}
.y6_c01084{bottom:833.018551px;}
.y7_c01084{bottom:834.866485px;}
.y8_c01084{bottom:835.703140px;}
.y9_c01084{bottom:835.990576px;}
.ya_c01084{bottom:836.345052px;}
.yb_c01084{bottom:837.229775px;}
.h14_c01084{height:22.050000px;}
.hc_c01084{height:59.857660px;}
.h2_c01084{height:60.908799px;}
.hd_c01084{height:61.957929px;}
.h11_c01084{height:61.958951px;}
.he_c01084{height:63.007087px;}
.h8_c01084{height:66.158467px;}
.h10_c01084{height:66.159558px;}
.h7_c01084{height:68.258735px;}
.hf_c01084{height:69.307796px;}
.ha_c01084{height:69.308870px;}
.h12_c01084{height:70.350000px;}
.h6_c01084{height:70.359004px;}
.h5_c01084{height:70.360165px;}
.h13_c01084{height:71.400000px;}
.h9_c01084{height:71.409139px;}
.h4_c01084{height:71.410317px;}
.h3_c01084{height:72.460468px;}
.hb_c01084{height:73.509407px;}
.h1_c01084{height:1005.000000px;}
.h0_c01084{height:1005.150000px;}
.w0_c01084{width:739.200000px;}
.w1_c01084{width:739.500000px;}
.x0_c01084{left:0.000000px;}
.x8b_c01084{left:95.532000px;}
.xc_c01084{left:103.089149px;}
.x1_c01084{left:104.860500px;}
.x51_c01084{left:106.106472px;}
.x5f_c01084{left:107.119992px;}
.x83_c01084{left:108.472872px;}
.x98_c01084{left:109.875819px;}
.xaa_c01084{left:111.219239px;}
.x20_c01084{left:120.949500px;}
.x29_c01084{left:124.360128px;}
.x4f_c01084{left:126.485148px;}
.x39_c01084{left:127.915716px;}
.x79_c01084{left:129.805548px;}
.x69_c01084{left:131.191500px;}
.x59_c01084{left:134.930604px;}
.x2_c01084{left:140.152500px;}
.x60_c01084{left:142.969068px;}
.x9d_c01084{left:144.672995px;}
.xab_c01084{left:151.185387px;}
.xd_c01084{left:152.208306px;}
.x3_c01084{left:155.298000px;}
.x1f_c01084{left:158.807462px;}
.x2a_c01084{left:161.693628px;}
.x46_c01084{left:165.437592px;}
.x40_c01084{left:166.565700px;}
.x3a_c01084{left:170.297388px;}
.x61_c01084{left:172.215024px;}
.x32_c01084{left:176.528496px;}
.xb6_c01084{left:178.200000px;}
.xaf_c01084{left:179.842131px;}
.xe_c01084{left:183.029852px;}
.x8c_c01084{left:186.504000px;}
.x14_c01084{left:189.769659px;}
.x84_c01084{left:190.777692px;}
.xb0_c01084{left:192.201000px;}
.x99_c01084{left:194.907747px;}
.x33_c01084{left:200.319996px;}
.x2b_c01084{left:201.730128px;}
.x47_c01084{left:205.333512px;}
.xa2_c01084{left:207.509788px;}
.x15_c01084{left:210.565659px;}
.xb7_c01084{left:214.110000px;}
.xa7_c01084{left:217.610523px;}
.x62_c01084{left:220.548792px;}
.x48_c01084{left:222.620352px;}
.x21_c01084{left:225.208500px;}
.x6a_c01084{left:227.569500px;}
.x16_c01084{left:228.666159px;}
.x4_c01084{left:231.972000px;}
.xa3_c01084{left:233.230722px;}
.x91_c01084{left:237.411000px;}
.x3b_c01084{left:240.768516px;}
.x49_c01084{left:244.581408px;}
.x41_c01084{left:248.399700px;}
.x6b_c01084{left:251.875500px;}
.x34_c01084{left:252.959496px;}
.x52_c01084{left:256.998372px;}
.x74_c01084{left:258.460596px;}
.x9a_c01084{left:259.953343px;}
.x3c_c01084{left:261.029352px;}
.x70_c01084{left:264.008976px;}
.xf_c01084{left:265.691657px;}
.x5_c01084{left:267.844500px;}
.x92_c01084{left:269.362500px;}
.x2c_c01084{left:274.903128px;}
.x17_c01084{left:278.110659px;}
.x93_c01084{left:281.593500px;}
.xa8_c01084{left:290.512274px;}
.x9e_c01084{left:299.694994px;}
.x22_c01084{left:301.282500px;}
.x63_c01084{left:302.360112px;}
.x85_c01084{left:305.339016px;}
.x7a_c01084{left:307.589736px;}
.xa4_c01084{left:308.834997px;}
.x4a_c01084{left:310.991076px;}
.x6_c01084{left:312.540000px;}
.x7b_c01084{left:314.228952px;}
.x6c_c01084{left:315.261000px;}
.x10_c01084{left:317.527416px;}
.x53_c01084{left:322.069404px;}
.x23_c01084{left:323.442000px;}
.x35_c01084{left:326.402496px;}
.x3d_c01084{left:327.732432px;}
.x7c_c01084{left:329.605932px;}
.x86_c01084{left:334.214472px;}
.x5a_c01084{left:336.109320px;}
.xa9_c01084{left:337.492983px;}
.x2d_c01084{left:338.812128px;}
.x64_c01084{left:342.872760px;}
.x18_c01084{left:345.403659px;}
.xac_c01084{left:348.292181px;}
.x54_c01084{left:349.828860px;}
.x6d_c01084{left:356.098500px;}
.x5b_c01084{left:357.691656px;}
.x75_c01084{left:360.044712px;}
.x7d_c01084{left:364.231536px;}
.x36_c01084{left:366.639996px;}
.x19_c01084{left:368.611659px;}
.x4b_c01084{left:374.435124px;}
.x2e_c01084{left:376.346628px;}
.x42_c01084{left:377.468700px;}
.xb5_c01084{left:378.810000px;}
.x71_c01084{left:380.658324px;}
.xa5_c01084{left:383.371272px;}
.x6e_c01084{left:386.338500px;}
.x94_c01084{left:387.994500px;}
.xb1_c01084{left:391.228500px;}
.x4c_c01084{left:396.525180px;}
.x5c_c01084{left:397.607280px;}
.x9f_c01084{left:400.673494px;}
.x87_c01084{left:402.816576px;}
.x37_c01084{left:403.895496px;}
.x3e_c01084{left:409.281228px;}
.x11_c01084{left:411.000104px;}
.x8d_c01084{left:413.077500px;}
.x9b_c01084{left:415.795495px;}
.x24_c01084{left:416.928000px;}
.x43_c01084{left:420.080700px;}
.x7_c01084{left:421.242000px;}
.x55_c01084{left:426.561084px;}
.x4d_c01084{left:428.131692px;}
.x1a_c01084{left:429.934659px;}
.x88_c01084{left:436.507104px;}
.x12_c01084{left:438.272522px;}
.x7e_c01084{left:441.154008px;}
.xb2_c01084{left:444.081000px;}
.x25_c01084{left:446.037000px;}
.x95_c01084{left:449.755500px;}
.x1b_c01084{left:454.419159px;}
.x65_c01084{left:455.721060px;}
.x7f_c01084{left:458.965584px;}
.x2f_c01084{left:463.048128px;}
.xb3_c01084{left:464.968500px;}
.x26_c01084{left:469.258500px;}
.x8_c01084{left:470.457000px;}
.x56_c01084{left:471.666804px;}
.x76_c01084{left:475.898868px;}
.x5d_c01084{left:480.312600px;}
.x30_c01084{left:482.014128px;}
.x66_c01084{left:483.815016px;}
.x9_c01084{left:487.365000px;}
.x8e_c01084{left:490.297500px;}
.x38_c01084{left:491.384496px;}
.x80_c01084{left:493.006164px;}
.x89_c01084{left:494.084016px;}
.xad_c01084{left:497.285131px;}
.x9c_c01084{left:500.840949px;}
.xa_c01084{left:508.216500px;}
.x27_c01084{left:511.995000px;}
.x31_c01084{left:512.999628px;}
.x1c_c01084{left:514.075659px;}
.x44_c01084{left:519.745200px;}
.x4e_c01084{left:521.344656px;}
.x57_c01084{left:523.240620px;}
.x3f_c01084{left:524.789076px;}
.xa6_c01084{left:526.767720px;}
.x5e_c01084{left:528.113868px;}
.x67_c01084{left:530.263260px;}
.x72_c01084{left:532.687248px;}
.x1d_c01084{left:536.235159px;}
.x28_c01084{left:540.564000px;}
.x50_c01084{left:542.183592px;}
.x6f_c01084{left:544.068000px;}
.x81_c01084{left:545.366844px;}
.x68_c01084{left:551.064096px;}
.x13_c01084{left:552.174397px;}
.xa0_c01084{left:554.064995px;}
.x96_c01084{left:555.420000px;}
.x58_c01084{left:556.931148px;}
.xb_c01084{left:560.259000px;}
.x1e_c01084{left:563.157159px;}
.x73_c01084{left:566.442276px;}
.x82_c01084{left:569.072112px;}
.xae_c01084{left:572.471582px;}
.xb4_c01084{left:575.370000px;}
.x45_c01084{left:576.460200px;}
.x8f_c01084{left:578.499997px;}
.x77_c01084{left:610.658760px;}
.x97_c01084{left:611.782500px;}
.x90_c01084{left:612.799980px;}
.xa1_c01084{left:622.515995px;}
.x78_c01084{left:626.762088px;}
.x8a_c01084{left:628.547652px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls0_c01084{letter-spacing:0.000000pt;}
.ws0_c01084{word-spacing:0.000000pt;}
.fs12_c01084{font-size:19.600000pt;}
.fsa_c01084{font-size:53.206809pt;}
.fs0_c01084{font-size:54.141155pt;}
.fsb_c01084{font-size:55.073715pt;}
.fsf_c01084{font-size:55.074623pt;}
.fsc_c01084{font-size:56.006300pt;}
.fs6_c01084{font-size:58.807526pt;}
.fse_c01084{font-size:58.808496pt;}
.fs5_c01084{font-size:60.674432pt;}
.fsd_c01084{font-size:61.606930pt;}
.fs8_c01084{font-size:61.607884pt;}
.fs10_c01084{font-size:62.533333pt;}
.fs4_c01084{font-size:62.541337pt;}
.fs3_c01084{font-size:62.542369pt;}
.fs11_c01084{font-size:63.466667pt;}
.fs7_c01084{font-size:63.474790pt;}
.fs2_c01084{font-size:63.475837pt;}
.fs1_c01084{font-size:64.409305pt;}
.fs9_c01084{font-size:65.341695pt;}
.y0_c01084{bottom:0.000000pt;}
.y12f_c01084{bottom:137.449333pt;}
.y12e_c01084{bottom:158.761333pt;}
.y124_c01084{bottom:159.844000pt;}
.y125_c01084{bottom:160.757104pt;}
.y126_c01084{bottom:161.548035pt;}
.y127_c01084{bottom:162.095865pt;}
.y128_c01084{bottom:163.034061pt;}
.y129_c01084{bottom:163.764631pt;}
.y12a_c01084{bottom:164.563291pt;}
.y12b_c01084{bottom:164.878924pt;}
.y12d_c01084{bottom:166.186836pt;}
.y12c_c01084{bottom:166.250099pt;}
.y118_c01084{bottom:179.004531pt;}
.y119_c01084{bottom:179.740399pt;}
.y11a_c01084{bottom:180.159759pt;}
.y11b_c01084{bottom:180.867097pt;}
.y11c_c01084{bottom:181.824460pt;}
.y11d_c01084{bottom:182.454371pt;}
.y11e_c01084{bottom:183.507880pt;}
.y11f_c01084{bottom:184.725353pt;}
.y120_c01084{bottom:185.286087pt;}
.y121_c01084{bottom:185.691805pt;}
.y122_c01084{bottom:186.066456pt;}
.y123_c01084{bottom:187.470507pt;}
.y10c_c01084{bottom:199.175251pt;}
.y10d_c01084{bottom:199.849871pt;}
.y10e_c01084{bottom:200.114692pt;}
.y10f_c01084{bottom:200.688749pt;}
.y110_c01084{bottom:201.546773pt;}
.y111_c01084{bottom:203.179141pt;}
.y112_c01084{bottom:203.741189pt;}
.y113_c01084{bottom:204.555936pt;}
.y114_c01084{bottom:205.694667pt;}
.y115_c01084{bottom:205.957811pt;}
.y116_c01084{bottom:206.964189pt;}
.y117_c01084{bottom:207.652927pt;}
.y100_c01084{bottom:219.567285pt;}
.y101_c01084{bottom:220.639329pt;}
.y102_c01084{bottom:220.849889pt;}
.y103_c01084{bottom:221.296868pt;}
.y104_c01084{bottom:222.463847pt;}
.y105_c01084{bottom:223.215123pt;}
.y106_c01084{bottom:223.518305pt;}
.y107_c01084{bottom:224.464052pt;}
.y108_c01084{bottom:224.939677pt;}
.y109_c01084{bottom:226.033228pt;}
.y10a_c01084{bottom:226.478869pt;}
.y10b_c01084{bottom:227.588740pt;}
.yf4_c01084{bottom:240.453032pt;}
.yf5_c01084{bottom:241.182672pt;}
.yf6_c01084{bottom:241.842215pt;}
.yf7_c01084{bottom:242.208213pt;}
.yf8_c01084{bottom:243.283992pt;}
.yf9_c01084{bottom:243.579825pt;}
.yfa_c01084{bottom:244.343632pt;}
.yfb_c01084{bottom:244.827181pt;}
.yfc_c01084{bottom:245.431360pt;}
.yfd_c01084{bottom:246.382475pt;}
.yfe_c01084{bottom:246.775745pt;}
.yff_c01084{bottom:247.618221pt;}
.ye8_c01084{bottom:260.611071pt;}
.ye9_c01084{bottom:261.149200pt;}
.yea_c01084{bottom:262.143677pt;}
.yeb_c01084{bottom:262.459107pt;}
.yec_c01084{bottom:263.014191pt;}
.yed_c01084{bottom:263.491755pt;}
.yee_c01084{bottom:265.017652pt;}
.yef_c01084{bottom:265.450336pt;}
.yf0_c01084{bottom:266.225763pt;}
.yf1_c01084{bottom:266.907032pt;}
.yf2_c01084{bottom:267.335568pt;}
.yf3_c01084{bottom:268.369939pt;}
.ydc_c01084{bottom:281.030605pt;}
.ydd_c01084{bottom:281.634331pt;}
.yde_c01084{bottom:282.240844pt;}
.ydf_c01084{bottom:283.166405pt;}
.ye0_c01084{bottom:283.477225pt;}
.ye1_c01084{bottom:284.529676pt;}
.ye2_c01084{bottom:284.969969pt;}
.ye3_c01084{bottom:285.382647pt;}
.ye4_c01084{bottom:285.954499pt;}
.ye5_c01084{bottom:286.591756pt;}
.ye6_c01084{bottom:287.022321pt;}
.ye7_c01084{bottom:288.190917pt;}
.yd0_c01084{bottom:300.936000pt;}
.yd1_c01084{bottom:302.614149pt;}
.yd2_c01084{bottom:302.828848pt;}
.yd3_c01084{bottom:303.096972pt;}
.yd4_c01084{bottom:303.281796pt;}
.yd5_c01084{bottom:304.567087pt;}
.yd6_c01084{bottom:304.889633pt;}
.yd7_c01084{bottom:305.822911pt;}
.yd8_c01084{bottom:306.158128pt;}
.yd9_c01084{bottom:307.007471pt;}
.yda_c01084{bottom:307.419619pt;}
.ydb_c01084{bottom:308.271319pt;}
.ycb_c01084{bottom:325.681293pt;}
.ycc_c01084{bottom:326.026127pt;}
.ycd_c01084{bottom:326.683500pt;}
.yce_c01084{bottom:332.396433pt;}
.ycf_c01084{bottom:332.884440pt;}
.yc0_c01084{bottom:345.842667pt;}
.yc1_c01084{bottom:347.055627pt;}
.yc2_c01084{bottom:347.372827pt;}
.yc3_c01084{bottom:348.149687pt;}
.yc4_c01084{bottom:348.683187pt;}
.yc5_c01084{bottom:349.046847pt;}
.yc6_c01084{bottom:350.076607pt;}
.yc7_c01084{bottom:351.106207pt;}
.yc8_c01084{bottom:351.408687pt;}
.yc9_c01084{bottom:352.080947pt;}
.yca_c01084{bottom:352.723807pt;}
.yb3_c01084{bottom:366.449312pt;}
.yb4_c01084{bottom:366.813280pt;}
.yb5_c01084{bottom:367.546517pt;}
.yb6_c01084{bottom:368.267755pt;}
.yb7_c01084{bottom:369.074475pt;}
.yb8_c01084{bottom:369.459808pt;}
.yb9_c01084{bottom:369.776757pt;}
.yba_c01084{bottom:370.374133pt;}
.ybb_c01084{bottom:370.823947pt;}
.ybc_c01084{bottom:371.166379pt;}
.ybd_c01084{bottom:371.592139pt;}
.ybe_c01084{bottom:372.377280pt;}
.ybf_c01084{bottom:373.385813pt;}
.ya5_c01084{bottom:387.086539pt;}
.ya6_c01084{bottom:387.359317pt;}
.ya7_c01084{bottom:388.299787pt;}
.ya8_c01084{bottom:388.570389pt;}
.ya9_c01084{bottom:389.571723pt;}
.yaa_c01084{bottom:389.654144pt;}
.yab_c01084{bottom:389.846165pt;}
.yac_c01084{bottom:390.277269pt;}
.yad_c01084{bottom:391.233909pt;}
.yae_c01084{bottom:391.455221pt;}
.yaf_c01084{bottom:391.879339pt;}
.yb0_c01084{bottom:392.530667pt;}
.yb1_c01084{bottom:392.825131pt;}
.yb2_c01084{bottom:393.333451pt;}
.y130_c01084{bottom:406.113333pt;}
.y9d_c01084{bottom:409.413045pt;}
.y9e_c01084{bottom:410.358496pt;}
.y9f_c01084{bottom:410.991040pt;}
.ya0_c01084{bottom:411.586421pt;}
.ya1_c01084{bottom:411.638389pt;}
.ya2_c01084{bottom:411.713173pt;}
.ya3_c01084{bottom:412.552149pt;}
.ya4_c01084{bottom:412.651808pt;}
.y92_c01084{bottom:427.176885pt;}
.y93_c01084{bottom:428.195605pt;}
.y94_c01084{bottom:428.490571pt;}
.y95_c01084{bottom:429.282229pt;}
.y96_c01084{bottom:430.330208pt;}
.y97_c01084{bottom:430.539637pt;}
.y98_c01084{bottom:430.838549pt;}
.y99_c01084{bottom:431.821707pt;}
.y9a_c01084{bottom:432.159851pt;}
.y9b_c01084{bottom:432.866037pt;}
.y9c_c01084{bottom:433.316768pt;}
.y88_c01084{bottom:446.380395pt;}
.y89_c01084{bottom:446.730219pt;}
.y8a_c01084{bottom:448.100928pt;}
.y8b_c01084{bottom:448.446613pt;}
.y8c_c01084{bottom:449.348096pt;}
.y8d_c01084{bottom:449.928896pt;}
.y8e_c01084{bottom:450.358976pt;}
.y8f_c01084{bottom:450.716480pt;}
.y90_c01084{bottom:451.749440pt;}
.y91_c01084{bottom:452.602240pt;}
.y7b_c01084{bottom:466.782421pt;}
.y7c_c01084{bottom:467.260267pt;}
.y7d_c01084{bottom:467.650869pt;}
.y7e_c01084{bottom:468.295605pt;}
.y7f_c01084{bottom:468.572533pt;}
.y80_c01084{bottom:469.385792pt;}
.y81_c01084{bottom:469.659115pt;}
.y82_c01084{bottom:469.925963pt;}
.y83_c01084{bottom:470.974048pt;}
.y84_c01084{bottom:471.430891pt;}
.y85_c01084{bottom:471.805109pt;}
.y86_c01084{bottom:472.424363pt;}
.y87_c01084{bottom:472.701525pt;}
.y70_c01084{bottom:487.183189pt;}
.y71_c01084{bottom:487.565835pt;}
.y72_c01084{bottom:487.925963pt;}
.y73_c01084{bottom:488.804960pt;}
.y74_c01084{bottom:490.248331pt;}
.y75_c01084{bottom:490.536608pt;}
.y76_c01084{bottom:490.807019pt;}
.y77_c01084{bottom:491.069621pt;}
.y78_c01084{bottom:491.463712pt;}
.y79_c01084{bottom:492.172523pt;}
.y7a_c01084{bottom:492.809685pt;}
.y66_c01084{bottom:507.585120pt;}
.y67_c01084{bottom:507.772203pt;}
.y68_c01084{bottom:509.219776pt;}
.y69_c01084{bottom:509.597771pt;}
.y6a_c01084{bottom:510.465877pt;}
.y6b_c01084{bottom:510.835339pt;}
.y6c_c01084{bottom:511.858624pt;}
.y6d_c01084{bottom:512.460117pt;}
.y6e_c01084{bottom:513.148267pt;}
.y6f_c01084{bottom:513.598080pt;}
.y63_c01084{bottom:532.066923pt;}
.y64_c01084{bottom:532.315872pt;}
.y65_c01084{bottom:537.119744pt;}
.y56_c01084{bottom:552.228064pt;}
.y57_c01084{bottom:552.490752pt;}
.y58_c01084{bottom:552.933664pt;}
.y59_c01084{bottom:553.394379pt;}
.y5a_c01084{bottom:553.593557pt;}
.y5b_c01084{bottom:553.847211pt;}
.y5c_c01084{bottom:554.196096pt;}
.y5d_c01084{bottom:554.615659pt;}
.y5e_c01084{bottom:555.348597pt;}
.y5f_c01084{bottom:555.604085pt;}
.y60_c01084{bottom:555.969579pt;}
.y61_c01084{bottom:556.454528pt;}
.y62_c01084{bottom:557.047211pt;}
.y4d_c01084{bottom:572.152309pt;}
.y4e_c01084{bottom:573.032181pt;}
.y4f_c01084{bottom:574.196043pt;}
.y50_c01084{bottom:574.481141pt;}
.y51_c01084{bottom:576.031691pt;}
.y52_c01084{bottom:576.637728pt;}
.y53_c01084{bottom:577.648245pt;}
.y54_c01084{bottom:578.055179pt;}
.y55_c01084{bottom:578.861792pt;}
.y42_c01084{bottom:592.554987pt;}
.y43_c01084{bottom:592.875712pt;}
.y44_c01084{bottom:593.441131pt;}
.y45_c01084{bottom:594.380704pt;}
.y46_c01084{bottom:594.650187pt;}
.y47_c01084{bottom:594.887883pt;}
.y48_c01084{bottom:595.538837pt;}
.y49_c01084{bottom:596.626624pt;}
.y4a_c01084{bottom:597.601931pt;}
.y4b_c01084{bottom:598.166709pt;}
.y4c_c01084{bottom:598.520032pt;}
.y38_c01084{bottom:612.238293pt;}
.y39_c01084{bottom:613.278805pt;}
.y3a_c01084{bottom:613.617173pt;}
.y3b_c01084{bottom:614.365824pt;}
.y3c_c01084{bottom:615.410347pt;}
.y3d_c01084{bottom:615.982613pt;}
.y3e_c01084{bottom:616.512469pt;}
.y3f_c01084{bottom:617.004224pt;}
.y40_c01084{bottom:617.756757pt;}
.y41_c01084{bottom:618.738880pt;}
.y2c_c01084{bottom:632.641461pt;}
.y2d_c01084{bottom:632.951413pt;}
.y2e_c01084{bottom:633.482379pt;}
.y2f_c01084{bottom:634.051787pt;}
.y30_c01084{bottom:635.092469pt;}
.y31_c01084{bottom:636.001397pt;}
.y32_c01084{bottom:636.535221pt;}
.y33_c01084{bottom:637.165259pt;}
.y34_c01084{bottom:637.768309pt;}
.y35_c01084{bottom:638.038048pt;}
.y36_c01084{bottom:638.478731pt;}
.y37_c01084{bottom:639.185205pt;}
.y23_c01084{bottom:652.804000pt;}
.y24_c01084{bottom:654.286795pt;}
.y25_c01084{bottom:655.368736pt;}
.y26_c01084{bottom:655.683893pt;}
.y27_c01084{bottom:657.013472pt;}
.y28_c01084{bottom:657.427467pt;}
.y29_c01084{bottom:657.757728pt;}
.y2a_c01084{bottom:658.365536pt;}
.y2b_c01084{bottom:658.771851pt;}
.y20_c01084{bottom:676.553011pt;}
.y21_c01084{bottom:677.756420pt;}
.y22_c01084{bottom:678.292427pt;}
.y14_c01084{bottom:696.711976pt;}
.y15_c01084{bottom:698.036684pt;}
.y16_c01084{bottom:698.350935pt;}
.y17_c01084{bottom:698.624453pt;}
.y18_c01084{bottom:699.371615pt;}
.y19_c01084{bottom:700.388487pt;}
.y1a_c01084{bottom:700.739185pt;}
.y1b_c01084{bottom:701.665844pt;}
.y1c_c01084{bottom:702.035832pt;}
.y1d_c01084{bottom:702.937308pt;}
.y1e_c01084{bottom:703.272163pt;}
.y1f_c01084{bottom:703.678984pt;}
.yc_c01084{bottom:717.360807pt;}
.yd_c01084{bottom:718.016360pt;}
.ye_c01084{bottom:718.427425pt;}
.yf_c01084{bottom:719.529828pt;}
.y10_c01084{bottom:720.221097pt;}
.y11_c01084{bottom:721.466859pt;}
.y12_c01084{bottom:721.830961pt;}
.y13_c01084{bottom:723.349420pt;}
.y1_c01084{bottom:737.322667pt;}
.y2_c01084{bottom:737.855968pt;}
.y3_c01084{bottom:738.084833pt;}
.y4_c01084{bottom:739.243463pt;}
.y5_c01084{bottom:739.785536pt;}
.y6_c01084{bottom:740.460935pt;}
.y7_c01084{bottom:742.103543pt;}
.y8_c01084{bottom:742.847236pt;}
.y9_c01084{bottom:743.102735pt;}
.ya_c01084{bottom:743.417824pt;}
.yb_c01084{bottom:744.204244pt;}
.h14_c01084{height:19.600000pt;}
.hc_c01084{height:53.206809pt;}
.h2_c01084{height:54.141155pt;}
.hd_c01084{height:55.073715pt;}
.h11_c01084{height:55.074623pt;}
.he_c01084{height:56.006300pt;}
.h8_c01084{height:58.807526pt;}
.h10_c01084{height:58.808496pt;}
.h7_c01084{height:60.674432pt;}
.hf_c01084{height:61.606930pt;}
.ha_c01084{height:61.607884pt;}
.h12_c01084{height:62.533333pt;}
.h6_c01084{height:62.541337pt;}
.h5_c01084{height:62.542369pt;}
.h13_c01084{height:63.466667pt;}
.h9_c01084{height:63.474790pt;}
.h4_c01084{height:63.475837pt;}
.h3_c01084{height:64.409305pt;}
.hb_c01084{height:65.341695pt;}
.h1_c01084{height:893.333333pt;}
.h0_c01084{height:893.466667pt;}
.w0_c01084{width:657.066667pt;}
.w1_c01084{width:657.333333pt;}
.x0_c01084{left:0.000000pt;}
.x8b_c01084{left:84.917333pt;}
.xc_c01084{left:91.634799pt;}
.x1_c01084{left:93.209333pt;}
.x51_c01084{left:94.316864pt;}
.x5f_c01084{left:95.217771pt;}
.x83_c01084{left:96.420331pt;}
.x98_c01084{left:97.667395pt;}
.xaa_c01084{left:98.861545pt;}
.x20_c01084{left:107.510667pt;}
.x29_c01084{left:110.542336pt;}
.x4f_c01084{left:112.431243pt;}
.x39_c01084{left:113.702859pt;}
.x79_c01084{left:115.382709pt;}
.x69_c01084{left:116.614667pt;}
.x59_c01084{left:119.938315pt;}
.x2_c01084{left:124.580000pt;}
.x60_c01084{left:127.083616pt;}
.x9d_c01084{left:128.598217pt;}
.xab_c01084{left:134.387011pt;}
.xd_c01084{left:135.296272pt;}
.x3_c01084{left:138.042667pt;}
.x1f_c01084{left:141.162188pt;}
.x2a_c01084{left:143.727669pt;}
.x46_c01084{left:147.055637pt;}
.x40_c01084{left:148.058400pt;}
.x3a_c01084{left:151.375456pt;}
.x61_c01084{left:153.080021pt;}
.x32_c01084{left:156.914219pt;}
.xb6_c01084{left:158.400000pt;}
.xaf_c01084{left:159.859672pt;}
.xe_c01084{left:162.693201pt;}
.x8c_c01084{left:165.781333pt;}
.x14_c01084{left:168.684141pt;}
.x84_c01084{left:169.580171pt;}
.xb0_c01084{left:170.845333pt;}
.x99_c01084{left:173.251331pt;}
.x33_c01084{left:178.062219pt;}
.x2b_c01084{left:179.315669pt;}
.x47_c01084{left:182.518677pt;}
.xa2_c01084{left:184.453145pt;}
.x15_c01084{left:187.169475pt;}
.xb7_c01084{left:190.320000pt;}
.xa7_c01084{left:193.431576pt;}
.x62_c01084{left:196.043371pt;}
.x48_c01084{left:197.884757pt;}
.x21_c01084{left:200.185333pt;}
.x6a_c01084{left:202.284000pt;}
.x16_c01084{left:203.258808pt;}
.x4_c01084{left:206.197333pt;}
.xa3_c01084{left:207.316197pt;}
.x91_c01084{left:211.032000pt;}
.x3b_c01084{left:214.016459pt;}
.x49_c01084{left:217.405696pt;}
.x41_c01084{left:220.799733pt;}
.x6b_c01084{left:223.889333pt;}
.x34_c01084{left:224.852885pt;}
.x52_c01084{left:228.442997pt;}
.x74_c01084{left:229.742752pt;}
.x9a_c01084{left:231.069639pt;}
.x3c_c01084{left:232.026091pt;}
.x70_c01084{left:234.674645pt;}
.xf_c01084{left:236.170361pt;}
.x5_c01084{left:238.084000pt;}
.x92_c01084{left:239.433333pt;}
.x2c_c01084{left:244.358336pt;}
.x17_c01084{left:247.209475pt;}
.x93_c01084{left:250.305333pt;}
.xa8_c01084{left:258.233132pt;}
.x9e_c01084{left:266.395551pt;}
.x22_c01084{left:267.806667pt;}
.x63_c01084{left:268.764544pt;}
.x85_c01084{left:271.412459pt;}
.x7a_c01084{left:273.413099pt;}
.xa4_c01084{left:274.519997pt;}
.x4a_c01084{left:276.436512pt;}
.x6_c01084{left:277.813333pt;}
.x7b_c01084{left:279.314624pt;}
.x6c_c01084{left:280.232000pt;}
.x10_c01084{left:282.246592pt;}
.x53_c01084{left:286.283915pt;}
.x23_c01084{left:287.504000pt;}
.x35_c01084{left:290.135552pt;}
.x3d_c01084{left:291.317717pt;}
.x7c_c01084{left:292.983051pt;}
.x86_c01084{left:297.079531pt;}
.x5a_c01084{left:298.763840pt;}
.xa9_c01084{left:299.993763pt;}
.x2d_c01084{left:301.166336pt;}
.x64_c01084{left:304.775787pt;}
.x18_c01084{left:307.025475pt;}
.xac_c01084{left:309.593049pt;}
.x54_c01084{left:310.958987pt;}
.x6d_c01084{left:316.532000pt;}
.x5b_c01084{left:317.948139pt;}
.x75_c01084{left:320.039744pt;}
.x7d_c01084{left:323.761365pt;}
.x36_c01084{left:325.902219pt;}
.x19_c01084{left:327.654808pt;}
.x4b_c01084{left:332.831221pt;}
.x2e_c01084{left:334.530336pt;}
.x42_c01084{left:335.527733pt;}
.xb5_c01084{left:336.720000pt;}
.x71_c01084{left:338.362955pt;}
.xa5_c01084{left:340.774464pt;}
.x6e_c01084{left:343.412000pt;}
.x94_c01084{left:344.884000pt;}
.xb1_c01084{left:347.758667pt;}
.x4c_c01084{left:352.466827pt;}
.x5c_c01084{left:353.428693pt;}
.x9f_c01084{left:356.154217pt;}
.x87_c01084{left:358.059179pt;}
.x37_c01084{left:359.018219pt;}
.x3e_c01084{left:363.805536pt;}
.x11_c01084{left:365.333425pt;}
.x8d_c01084{left:367.180000pt;}
.x9b_c01084{left:369.595996pt;}
.x24_c01084{left:370.602667pt;}
.x43_c01084{left:373.405067pt;}
.x7_c01084{left:374.437333pt;}
.x55_c01084{left:379.165408pt;}
.x4d_c01084{left:380.561504pt;}
.x1a_c01084{left:382.164141pt;}
.x88_c01084{left:388.006315pt;}
.x12_c01084{left:389.575575pt;}
.x7e_c01084{left:392.136896pt;}
.xb2_c01084{left:394.738667pt;}
.x25_c01084{left:396.477333pt;}
.x95_c01084{left:399.782667pt;}
.x1b_c01084{left:403.928141pt;}
.x65_c01084{left:405.085387pt;}
.x7f_c01084{left:407.969408pt;}
.x2f_c01084{left:411.598336pt;}
.xb3_c01084{left:413.305333pt;}
.x26_c01084{left:417.118667pt;}
.x8_c01084{left:418.184000pt;}
.x56_c01084{left:419.259381pt;}
.x76_c01084{left:423.021216pt;}
.x5d_c01084{left:426.944533pt;}
.x30_c01084{left:428.457003pt;}
.x66_c01084{left:430.057792pt;}
.x9_c01084{left:433.213333pt;}
.x8e_c01084{left:435.820000pt;}
.x38_c01084{left:436.786219pt;}
.x80_c01084{left:438.227701pt;}
.x89_c01084{left:439.185792pt;}
.xad_c01084{left:442.031228pt;}
.x9c_c01084{left:445.191955pt;}
.xa_c01084{left:451.748000pt;}
.x27_c01084{left:455.106667pt;}
.x31_c01084{left:455.999669pt;}
.x1c_c01084{left:456.956141pt;}
.x44_c01084{left:461.995733pt;}
.x4e_c01084{left:463.417472pt;}
.x57_c01084{left:465.102773pt;}
.x3f_c01084{left:466.479179pt;}
.xa6_c01084{left:468.237973pt;}
.x5e_c01084{left:469.434549pt;}
.x67_c01084{left:471.345120pt;}
.x72_c01084{left:473.499776pt;}
.x1d_c01084{left:476.653475pt;}
.x28_c01084{left:480.501333pt;}
.x50_c01084{left:481.940971pt;}
.x6f_c01084{left:483.616000pt;}
.x81_c01084{left:484.770528pt;}
.x68_c01084{left:489.834752pt;}
.x13_c01084{left:490.821687pt;}
.xa0_c01084{left:492.502217pt;}
.x96_c01084{left:493.706667pt;}
.x58_c01084{left:495.049909pt;}
.xb_c01084{left:498.008000pt;}
.x1e_c01084{left:500.584141pt;}
.x73_c01084{left:503.504245pt;}
.x82_c01084{left:505.841877pt;}
.xae_c01084{left:508.863628pt;}
.xb4_c01084{left:511.440000pt;}
.x45_c01084{left:512.409067pt;}
.x8f_c01084{left:514.222220pt;}
.x77_c01084{left:542.807787pt;}
.x97_c01084{left:543.806667pt;}
.x90_c01084{left:544.711093pt;}
.xa1_c01084{left:553.347551pt;}
.x78_c01084{left:557.121856pt;}
.x8a_c01084{left:558.709024pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.000000;font-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_c01085{transform:matrix(0.027270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027270,0.000000,0.000000,0.250000,0,0);}
.mf1_c01085{transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084285,0.000000,0.000000,0.250000,0,0);}
.m48_c01085{transform:matrix(0.093359,-0.001027,0.002750,0.249985,0,0);-ms-transform:matrix(0.093359,-0.001027,0.002750,0.249985,0,0);-webkit-transform:matrix(0.093359,-0.001027,0.002750,0.249985,0,0);}
.m7c_c01085{transform:matrix(0.096859,-0.001065,0.002750,0.249985,0,0);-ms-transform:matrix(0.096859,-0.001065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.096859,-0.001065,0.002750,0.249985,0,0);}
.ma7_c01085{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.mfe_c01085{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.m5d_c01085{transform:matrix(0.125107,-0.001376,0.002750,0.249985,0,0);-ms-transform:matrix(0.125107,-0.001376,0.002750,0.249985,0,0);-webkit-transform:matrix(0.125107,-0.001376,0.002750,0.249985,0,0);}
.m102_c01085{transform:matrix(0.138455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138455,0.000000,0.000000,0.250000,0,0);}
.m27_c01085{transform:matrix(0.139917,-0.001539,0.002750,0.249985,0,0);-ms-transform:matrix(0.139917,-0.001539,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139917,-0.001539,0.002750,0.249985,0,0);}
.ma0_c01085{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m6b_c01085{transform:matrix(0.140736,-0.001548,0.002750,0.249985,0,0);-ms-transform:matrix(0.140736,-0.001548,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140736,-0.001548,0.002750,0.249985,0,0);}
.m139_c01085{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.md2_c01085{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m0_c01085{transform:matrix(0.144883,-0.001883,0.003250,0.249979,0,0);-ms-transform:matrix(0.144883,-0.001883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.144883,-0.001883,0.003250,0.249979,0,0);}
.m59_c01085{transform:matrix(0.146246,-0.001609,0.002750,0.249985,0,0);-ms-transform:matrix(0.146246,-0.001609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146246,-0.001609,0.002750,0.249985,0,0);}
.md0_c01085{transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147195,0.000000,0.000000,0.250000,0,0);}
.maa_c01085{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);}
.mca_c01085{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.m1d_c01085{transform:matrix(0.151036,-0.001661,0.002750,0.249985,0,0);-ms-transform:matrix(0.151036,-0.001661,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151036,-0.001661,0.002750,0.249985,0,0);}
.m69_c01085{transform:matrix(0.151641,-0.001668,0.002750,0.249985,0,0);-ms-transform:matrix(0.151641,-0.001668,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151641,-0.001668,0.002750,0.249985,0,0);}
.m5b_c01085{transform:matrix(0.151856,-0.001670,0.002750,0.249985,0,0);-ms-transform:matrix(0.151856,-0.001670,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151856,-0.001670,0.002750,0.249985,0,0);}
.m72_c01085{transform:matrix(0.151941,-0.001671,0.002750,0.249985,0,0);-ms-transform:matrix(0.151941,-0.001671,0.002750,0.249985,0,0);-webkit-transform:matrix(0.151941,-0.001671,0.002750,0.249985,0,0);}
.m65_c01085{transform:matrix(0.153246,-0.001686,0.002750,0.249985,0,0);-ms-transform:matrix(0.153246,-0.001686,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153246,-0.001686,0.002750,0.249985,0,0);}
.md_c01085{transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);-ms-transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);-webkit-transform:matrix(0.153487,-0.001995,0.003250,0.249979,0,0);}
.m9_c01085{transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);-ms-transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154072,-0.002003,0.003250,0.249979,0,0);}
.m8_c01085{transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-ms-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155772,-0.002025,0.003250,0.249979,0,0);}
.m8d_c01085{transform:matrix(0.155841,-0.001714,0.002750,0.249985,0,0);-ms-transform:matrix(0.155841,-0.001714,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155841,-0.001714,0.002750,0.249985,0,0);}
.m64_c01085{transform:matrix(0.156596,-0.001723,0.002750,0.249985,0,0);-ms-transform:matrix(0.156596,-0.001723,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156596,-0.001723,0.002750,0.249985,0,0);}
.mf_c01085{transform:matrix(0.156837,-0.002039,0.003250,0.249979,0,0);-ms-transform:matrix(0.156837,-0.002039,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156837,-0.002039,0.003250,0.249979,0,0);}
.m100_c01085{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);}
.m70_c01085{transform:matrix(0.157710,-0.001735,0.002750,0.249985,0,0);-ms-transform:matrix(0.157710,-0.001735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.157710,-0.001735,0.002750,0.249985,0,0);}
.m19_c01085{transform:matrix(0.158235,-0.001741,0.002750,0.249985,0,0);-ms-transform:matrix(0.158235,-0.001741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158235,-0.001741,0.002750,0.249985,0,0);}
.m63_c01085{transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);-ms-transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.158930,-0.001748,0.002750,0.249985,0,0);}
.m133_c01085{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);}
.me_c01085{transform:matrix(0.159172,-0.002069,0.003250,0.249979,0,0);-ms-transform:matrix(0.159172,-0.002069,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159172,-0.002069,0.003250,0.249979,0,0);}
.md1_c01085{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);}
.m6c_c01085{transform:matrix(0.160120,-0.001761,0.002750,0.249985,0,0);-ms-transform:matrix(0.160120,-0.001761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160120,-0.001761,0.002750,0.249985,0,0);}
.m17_c01085{transform:matrix(0.160290,-0.001763,0.002750,0.249985,0,0);-ms-transform:matrix(0.160290,-0.001763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160290,-0.001763,0.002750,0.249985,0,0);}
.mf5_c01085{transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160765,0.000000,0.000000,0.250000,0,0);}
.m6d_c01085{transform:matrix(0.160790,-0.001769,0.002750,0.249985,0,0);-ms-transform:matrix(0.160790,-0.001769,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160790,-0.001769,0.002750,0.249985,0,0);}
.mdb_c01085{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);}
.mc7_c01085{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);}
.mf3_c01085{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);}
.m121_c01085{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);}
.md6_c01085{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);}
.m7b_c01085{transform:matrix(0.163145,-0.001795,0.002750,0.249985,0,0);-ms-transform:matrix(0.163145,-0.001795,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163145,-0.001795,0.002750,0.249985,0,0);}
.m2e_c01085{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);}
.m84_c01085{transform:matrix(0.163440,-0.001798,0.002750,0.249985,0,0);-ms-transform:matrix(0.163440,-0.001798,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163440,-0.001798,0.002750,0.249985,0,0);}
.m77_c01085{transform:matrix(0.165460,-0.001820,0.002750,0.249985,0,0);-ms-transform:matrix(0.165460,-0.001820,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165460,-0.001820,0.002750,0.249985,0,0);}
.mf9_c01085{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);}
.m66_c01085{transform:matrix(0.165545,-0.001821,0.002750,0.249985,0,0);-ms-transform:matrix(0.165545,-0.001821,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165545,-0.001821,0.002750,0.249985,0,0);}
.me0_c01085{transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165845,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{transform:matrix(0.165986,-0.002158,0.003250,0.249979,0,0);-ms-transform:matrix(0.165986,-0.002158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165986,-0.002158,0.003250,0.249979,0,0);}
.mf8_c01085{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);}
.m11f_c01085{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);}
.m11d_c01085{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);}
.m40_c01085{transform:matrix(0.167245,-0.001840,0.002750,0.249985,0,0);-ms-transform:matrix(0.167245,-0.001840,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167245,-0.001840,0.002750,0.249985,0,0);}
.m5a_c01085{transform:matrix(0.167910,-0.001847,0.002750,0.249985,0,0);-ms-transform:matrix(0.167910,-0.001847,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167910,-0.001847,0.002750,0.249985,0,0);}
.me9_c01085{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);}
.md7_c01085{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);}
.m3f_c01085{transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-ms-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168520,-0.001854,0.002750,0.249985,0,0);}
.m137_c01085{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);}
.m73_c01085{transform:matrix(0.168895,-0.001858,0.002750,0.249985,0,0);-ms-transform:matrix(0.168895,-0.001858,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168895,-0.001858,0.002750,0.249985,0,0);}
.m12f_c01085{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);}
.m39_c01085{transform:matrix(0.170550,-0.001876,0.002750,0.249985,0,0);-ms-transform:matrix(0.170550,-0.001876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170550,-0.001876,0.002750,0.249985,0,0);}
.m4_c01085{transform:matrix(0.170641,-0.002218,0.003250,0.249979,0,0);-ms-transform:matrix(0.170641,-0.002218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170641,-0.002218,0.003250,0.249979,0,0);}
.m120_c01085{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);}
.mb4_c01085{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);}
.m1_c01085{transform:matrix(0.171051,-0.002224,0.003250,0.249979,0,0);-ms-transform:matrix(0.171051,-0.002224,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171051,-0.002224,0.003250,0.249979,0,0);}
.me3_c01085{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);}
.mba_c01085{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);}
.m1f_c01085{transform:matrix(0.172080,-0.001893,0.002750,0.249985,0,0);-ms-transform:matrix(0.172080,-0.001893,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172080,-0.001893,0.002750,0.249985,0,0);}
.mc0_c01085{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);}
.m131_c01085{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);}
.m108_c01085{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);}
.ma5_c01085{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);}
.m5f_c01085{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);}
.m30_c01085{transform:matrix(0.173824,-0.001912,0.002750,0.249985,0,0);-ms-transform:matrix(0.173824,-0.001912,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173824,-0.001912,0.002750,0.249985,0,0);}
.m15_c01085{transform:matrix(0.173924,-0.001913,0.002750,0.249985,0,0);-ms-transform:matrix(0.173924,-0.001913,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173924,-0.001913,0.002750,0.249985,0,0);}
.m115_c01085{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);}
.m3_c01085{transform:matrix(0.174825,-0.002273,0.003250,0.249979,0,0);-ms-transform:matrix(0.174825,-0.002273,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174825,-0.002273,0.003250,0.249979,0,0);}
.mcd_c01085{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);}
.md3_c01085{transform:matrix(0.175015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175015,0.000000,0.000000,0.250000,0,0);}
.m105_c01085{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);}
.m81_c01085{transform:matrix(0.175709,-0.001933,0.002750,0.249985,0,0);-ms-transform:matrix(0.175709,-0.001933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175709,-0.001933,0.002750,0.249985,0,0);}
.m12d_c01085{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);}
.mb7_c01085{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);}
.m71_c01085{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);}
.m122_c01085{transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176485,0.000000,0.000000,0.250000,0,0);}
.m2c_c01085{transform:matrix(0.177264,-0.001950,0.002750,0.249985,0,0);-ms-transform:matrix(0.177264,-0.001950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177264,-0.001950,0.002750,0.249985,0,0);}
.m5_c01085{transform:matrix(0.177475,-0.002307,0.003250,0.249979,0,0);-ms-transform:matrix(0.177475,-0.002307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177475,-0.002307,0.003250,0.249979,0,0);}
.m7_c01085{transform:matrix(0.177535,-0.002308,0.003250,0.249979,0,0);-ms-transform:matrix(0.177535,-0.002308,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177535,-0.002308,0.003250,0.249979,0,0);}
.m44_c01085{transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);-ms-transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177789,-0.001956,0.002750,0.249985,0,0);}
.me6_c01085{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);}
.m83_c01085{transform:matrix(0.178124,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178124,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178124,-0.001959,0.002750,0.249985,0,0);}
.m31_c01085{transform:matrix(0.178239,-0.001961,0.002750,0.249985,0,0);-ms-transform:matrix(0.178239,-0.001961,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178239,-0.001961,0.002750,0.249985,0,0);}
.m12c_c01085{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);}
.m136_c01085{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);}
.m2a_c01085{transform:matrix(0.178674,-0.001965,0.002750,0.249985,0,0);-ms-transform:matrix(0.178674,-0.001965,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178674,-0.001965,0.002750,0.249985,0,0);}
.m13a_c01085{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);}
.mb_c01085{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);}
.me5_c01085{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);}
.mda_c01085{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m6f_c01085{transform:matrix(0.179584,-0.001975,0.002750,0.249985,0,0);-ms-transform:matrix(0.179584,-0.001975,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179584,-0.001975,0.002750,0.249985,0,0);}
.m33_c01085{transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);}
.m101_c01085{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);}
.mc8_c01085{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);}
.m103_c01085{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);}
.mb8_c01085{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);}
.m46_c01085{transform:matrix(0.181589,-0.001997,0.002750,0.249985,0,0);-ms-transform:matrix(0.181589,-0.001997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181589,-0.001997,0.002750,0.249985,0,0);}
.mf7_c01085{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);}
.me2_c01085{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);}
.m10e_c01085{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);}
.m6e_c01085{transform:matrix(0.182114,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182114,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182114,-0.002003,0.002750,0.249985,0,0);}
.ma8_c01085{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);}
.ma2_c01085{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);}
.m8b_c01085{transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);-ms-transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182804,-0.002011,0.002750,0.249985,0,0);}
.mb3_c01085{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);}
.m79_c01085{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);}
.md4_c01085{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);}
.m12a_c01085{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);}
.m58_c01085{transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-ms-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183659,-0.002020,0.002750,0.249985,0,0);}
.mc9_c01085{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);}
.mb6_c01085{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);}
.mfc_c01085{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);}
.mbd_c01085{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);}
.m123_c01085{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);}
.m94_c01085{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);}
.m88_c01085{transform:matrix(0.185864,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185864,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185864,-0.002045,0.002750,0.249985,0,0);}
.mdc_c01085{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);}
.m75_c01085{transform:matrix(0.186559,-0.002052,0.002750,0.249985,0,0);-ms-transform:matrix(0.186559,-0.002052,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186559,-0.002052,0.002750,0.249985,0,0);}
.mfb_c01085{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);}
.m8e_c01085{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);}
.m13_c01085{transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);-ms-transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186929,-0.002056,0.002750,0.249985,0,0);}
.m9a_c01085{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);}
.m3c_c01085{transform:matrix(0.187749,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187749,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187749,-0.002065,0.002750,0.249985,0,0);}
.mc3_c01085{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);}
.m12e_c01085{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);}
.m116_c01085{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);}
.m3b_c01085{transform:matrix(0.188784,-0.002077,0.002750,0.249985,0,0);-ms-transform:matrix(0.188784,-0.002077,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188784,-0.002077,0.002750,0.249985,0,0);}
.m124_c01085{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);}
.m16_c01085{transform:matrix(0.189229,-0.002082,0.002750,0.249985,0,0);-ms-transform:matrix(0.189229,-0.002082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189229,-0.002082,0.002750,0.249985,0,0);}
.m60_c01085{transform:matrix(0.189284,-0.002082,0.002750,0.249985,0,0);-ms-transform:matrix(0.189284,-0.002082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189284,-0.002082,0.002750,0.249985,0,0);}
.m42_c01085{transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);-ms-transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189334,-0.002083,0.002750,0.249985,0,0);}
.m3a_c01085{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);}
.m9c_c01085{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);}
.m76_c01085{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);}
.mad_c01085{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);}
.md9_c01085{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);}
.m74_c01085{transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-ms-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190538,-0.002096,0.002750,0.249985,0,0);}
.m5c_c01085{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);}
.mfd_c01085{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);}
.m11a_c01085{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);}
.m7e_c01085{transform:matrix(0.192133,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192133,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192133,-0.002113,0.002750,0.249985,0,0);}
.m106_c01085{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);}
.m98_c01085{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);}
.me4_c01085{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);}
.m2f_c01085{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);}
.mdd_c01085{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);}
.mcb_c01085{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);}
.m118_c01085{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);}
.m18_c01085{transform:matrix(0.193533,-0.002129,0.002750,0.249985,0,0);-ms-transform:matrix(0.193533,-0.002129,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193533,-0.002129,0.002750,0.249985,0,0);}
.mb9_c01085{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);}
.mae_c01085{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);}
.m3e_c01085{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);}
.m38_c01085{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);}
.m110_c01085{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);}
.mbe_c01085{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);}
.m21_c01085{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);}
.m7f_c01085{transform:matrix(0.194683,-0.002142,0.002750,0.249985,0,0);-ms-transform:matrix(0.194683,-0.002142,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194683,-0.002142,0.002750,0.249985,0,0);}
.m87_c01085{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);}
.m1e_c01085{transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);-ms-transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195493,-0.002150,0.002750,0.249985,0,0);}
.m127_c01085{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);}
.mc_c01085{transform:matrix(0.195928,-0.002547,0.003250,0.249979,0,0);-ms-transform:matrix(0.195928,-0.002547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195928,-0.002547,0.003250,0.249979,0,0);}
.m4f_c01085{transform:matrix(0.196238,-0.002159,0.002750,0.249985,0,0);-ms-transform:matrix(0.196238,-0.002159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196238,-0.002159,0.002750,0.249985,0,0);}
.mbf_c01085{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);}
.m1c_c01085{transform:matrix(0.196608,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196608,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196608,-0.002163,0.002750,0.249985,0,0);}
.m114_c01085{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);}
.m25_c01085{transform:matrix(0.197918,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197918,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197918,-0.002177,0.002750,0.249985,0,0);}
.m35_c01085{transform:matrix(0.197993,-0.002178,0.002750,0.249985,0,0);-ms-transform:matrix(0.197993,-0.002178,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197993,-0.002178,0.002750,0.249985,0,0);}
.m22_c01085{transform:matrix(0.198723,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198723,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198723,-0.002186,0.002750,0.249985,0,0);}
.m68_c01085{transform:matrix(0.198763,-0.002186,0.002750,0.249985,0,0);-ms-transform:matrix(0.198763,-0.002186,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198763,-0.002186,0.002750,0.249985,0,0);}
.m78_c01085{transform:matrix(0.199128,-0.002190,0.002750,0.249985,0,0);-ms-transform:matrix(0.199128,-0.002190,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199128,-0.002190,0.002750,0.249985,0,0);}
.m29_c01085{transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199153,-0.002191,0.002750,0.249985,0,0);}
.mf6_c01085{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);}
.m10_c01085{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);}
.mc6_c01085{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);}
.m9e_c01085{transform:matrix(0.200030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200030,0.000000,0.000000,0.250000,0,0);}
.m34_c01085{transform:matrix(0.200498,-0.002205,0.002750,0.249985,0,0);-ms-transform:matrix(0.200498,-0.002205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200498,-0.002205,0.002750,0.249985,0,0);}
.mc5_c01085{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);}
.m8f_c01085{transform:matrix(0.201843,-0.002220,0.002750,0.249985,0,0);-ms-transform:matrix(0.201843,-0.002220,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201843,-0.002220,0.002750,0.249985,0,0);}
.me7_c01085{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);}
.m43_c01085{transform:matrix(0.202458,-0.002227,0.002750,0.249985,0,0);-ms-transform:matrix(0.202458,-0.002227,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202458,-0.002227,0.002750,0.249985,0,0);}
.m99_c01085{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);}
.ma3_c01085{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);}
.m130_c01085{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);}
.m82_c01085{transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);-ms-transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203153,-0.002235,0.002750,0.249985,0,0);}
.m12b_c01085{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);}
.m61_c01085{transform:matrix(0.203478,-0.002238,0.002750,0.249985,0,0);-ms-transform:matrix(0.203478,-0.002238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203478,-0.002238,0.002750,0.249985,0,0);}
.mf0_c01085{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);}
.m67_c01085{transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203808,-0.002242,0.002750,0.249985,0,0);}
.mac_c01085{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);}
.m11c_c01085{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);}
.m117_c01085{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);}
.m3d_c01085{transform:matrix(0.204278,-0.002247,0.002750,0.249985,0,0);-ms-transform:matrix(0.204278,-0.002247,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204278,-0.002247,0.002750,0.249985,0,0);}
.m7a_c01085{transform:matrix(0.204798,-0.002253,0.002750,0.249985,0,0);-ms-transform:matrix(0.204798,-0.002253,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204798,-0.002253,0.002750,0.249985,0,0);}
.mce_c01085{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);}
.mb5_c01085{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);}
.mc4_c01085{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);}
.ma6_c01085{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);}
.ma4_c01085{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);}
.m126_c01085{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);}
.m104_c01085{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);}
.me8_c01085{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);}
.ma_c01085{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);}
.m128_c01085{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);}
.m23_c01085{transform:matrix(0.207742,-0.002285,0.002750,0.249985,0,0);-ms-transform:matrix(0.207742,-0.002285,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207742,-0.002285,0.002750,0.249985,0,0);}
.m9f_c01085{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);}
.m4b_c01085{transform:matrix(0.208057,-0.002289,0.002750,0.249985,0,0);-ms-transform:matrix(0.208057,-0.002289,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208057,-0.002289,0.002750,0.249985,0,0);}
.m111_c01085{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);}
.mb2_c01085{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);}
.m1a_c01085{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);}
.m45_c01085{transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);-ms-transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209197,-0.002301,0.002750,0.249985,0,0);}
.mea_c01085{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);}
.m11e_c01085{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);}
.m32_c01085{transform:matrix(0.210227,-0.002313,0.002750,0.249985,0,0);-ms-transform:matrix(0.210227,-0.002313,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210227,-0.002313,0.002750,0.249985,0,0);}
.md8_c01085{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);}
.m80_c01085{transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210747,-0.002318,0.002750,0.249985,0,0);}
.ma9_c01085{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);}
.m10a_c01085{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);}
.m47_c01085{transform:matrix(0.211832,-0.002330,0.002750,0.249985,0,0);-ms-transform:matrix(0.211832,-0.002330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211832,-0.002330,0.002750,0.249985,0,0);}
.m11b_c01085{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);}
.m93_c01085{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);}
.m1b_c01085{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);}
.m28_c01085{transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);-ms-transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213267,-0.002346,0.002750,0.249985,0,0);}
.m9b_c01085{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);}
.mc1_c01085{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);}
.m10c_c01085{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);}
.m12_c01085{transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);-ms-transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214832,-0.002363,0.002750,0.249985,0,0);}
.m6_c01085{transform:matrix(0.214887,-0.002794,0.003250,0.249979,0,0);-ms-transform:matrix(0.214887,-0.002794,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214887,-0.002794,0.003250,0.249979,0,0);}
.m92_c01085{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);}
.m132_c01085{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);}
.m54_c01085{transform:matrix(0.215522,-0.002371,0.002750,0.249985,0,0);-ms-transform:matrix(0.215522,-0.002371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215522,-0.002371,0.002750,0.249985,0,0);}
.m4e_c01085{transform:matrix(0.215552,-0.002371,0.002750,0.249985,0,0);-ms-transform:matrix(0.215552,-0.002371,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215552,-0.002371,0.002750,0.249985,0,0);}
.mbb_c01085{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.m95_c01085{transform:matrix(0.215795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215795,0.000000,0.000000,0.250000,0,0);}
.m9d_c01085{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);}
.m129_c01085{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.m89_c01085{transform:matrix(0.217162,-0.002389,0.002750,0.249985,0,0);-ms-transform:matrix(0.217162,-0.002389,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217162,-0.002389,0.002750,0.249985,0,0);}
.mfa_c01085{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);}
.m2b_c01085{transform:matrix(0.217262,-0.002390,0.002750,0.249985,0,0);-ms-transform:matrix(0.217262,-0.002390,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217262,-0.002390,0.002750,0.249985,0,0);}
.m85_c01085{transform:matrix(0.217372,-0.002391,0.002750,0.249985,0,0);-ms-transform:matrix(0.217372,-0.002391,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217372,-0.002391,0.002750,0.249985,0,0);}
.m5e_c01085{transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);-ms-transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);}
.m97_c01085{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);}
.m96_c01085{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);}
.m113_c01085{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);}
.m10f_c01085{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);}
.m8c_c01085{transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-ms-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221587,-0.002437,0.002750,0.249985,0,0);}
.m10b_c01085{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);}
.m36_c01085{transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);}
.ma1_c01085{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);}
.m11_c01085{transform:matrix(0.224836,-0.002473,0.002750,0.249985,0,0);-ms-transform:matrix(0.224836,-0.002473,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224836,-0.002473,0.002750,0.249985,0,0);}
.m62_c01085{transform:matrix(0.227561,-0.002503,0.002750,0.249985,0,0);-ms-transform:matrix(0.227561,-0.002503,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227561,-0.002503,0.002750,0.249985,0,0);}
.m50_c01085{transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);-ms-transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227991,-0.002508,0.002750,0.249985,0,0);}
.m37_c01085{transform:matrix(0.228551,-0.002514,0.002750,0.249985,0,0);-ms-transform:matrix(0.228551,-0.002514,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228551,-0.002514,0.002750,0.249985,0,0);}
.me1_c01085{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);}
.m14_c01085{transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);}
.m112_c01085{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);}
.m41_c01085{transform:matrix(0.230526,-0.002536,0.002750,0.249985,0,0);-ms-transform:matrix(0.230526,-0.002536,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230526,-0.002536,0.002750,0.249985,0,0);}
.mf4_c01085{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m24_c01085{transform:matrix(0.230801,-0.002539,0.002750,0.249985,0,0);-ms-transform:matrix(0.230801,-0.002539,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230801,-0.002539,0.002750,0.249985,0,0);}
.m56_c01085{transform:matrix(0.231506,-0.002547,0.002750,0.249985,0,0);-ms-transform:matrix(0.231506,-0.002547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231506,-0.002547,0.002750,0.249985,0,0);}
.m55_c01085{transform:matrix(0.232966,-0.002563,0.002750,0.249985,0,0);-ms-transform:matrix(0.232966,-0.002563,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232966,-0.002563,0.002750,0.249985,0,0);}
.m2d_c01085{transform:matrix(0.235186,-0.002587,0.002750,0.249985,0,0);-ms-transform:matrix(0.235186,-0.002587,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235186,-0.002587,0.002750,0.249985,0,0);}
.mab_c01085{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);}
.mbc_c01085{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.mdf_c01085{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);}
.m4a_c01085{transform:matrix(0.238351,-0.002622,0.002750,0.249985,0,0);-ms-transform:matrix(0.238351,-0.002622,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238351,-0.002622,0.002750,0.249985,0,0);}
.mcf_c01085{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);}
.md5_c01085{transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239805,0.000000,0.000000,0.250000,0,0);}
.mc2_c01085{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);}
.mcc_c01085{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);}
.m4d_c01085{transform:matrix(0.243500,-0.002679,0.002750,0.249985,0,0);-ms-transform:matrix(0.243500,-0.002679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243500,-0.002679,0.002750,0.249985,0,0);}
.m51_c01085{transform:matrix(0.246915,-0.002716,0.002750,0.249985,0,0);-ms-transform:matrix(0.246915,-0.002716,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246915,-0.002716,0.002750,0.249985,0,0);}
.m20_c01085{transform:matrix(0.247025,-0.002717,0.002750,0.249985,0,0);-ms-transform:matrix(0.247025,-0.002717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247025,-0.002717,0.002750,0.249985,0,0);}
.m135_c01085{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m107_c01085{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m90_c01085{transform:matrix(0.251195,-0.002763,0.002750,0.249985,0,0);-ms-transform:matrix(0.251195,-0.002763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251195,-0.002763,0.002750,0.249985,0,0);}
.m6a_c01085{transform:matrix(0.252145,-0.002774,0.002750,0.249985,0,0);-ms-transform:matrix(0.252145,-0.002774,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252145,-0.002774,0.002750,0.249985,0,0);}
.m10d_c01085{transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);}
.m125_c01085{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);}
.maf_c01085{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);}
.mb1_c01085{transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260935,0.000000,0.000000,0.250000,0,0);}
.m13c_c01085{transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263520,0.000000,0.000000,0.250000,0,0);}
.m57_c01085{transform:matrix(0.273438,-0.003008,0.002750,0.249985,0,0);-ms-transform:matrix(0.273438,-0.003008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273438,-0.003008,0.002750,0.249985,0,0);}
.m49_c01085{transform:matrix(0.274433,-0.003019,0.002750,0.249985,0,0);-ms-transform:matrix(0.274433,-0.003019,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274433,-0.003019,0.002750,0.249985,0,0);}
.m86_c01085{transform:matrix(0.280103,-0.003081,0.002750,0.249985,0,0);-ms-transform:matrix(0.280103,-0.003081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280103,-0.003081,0.002750,0.249985,0,0);}
.m7d_c01085{transform:matrix(0.290147,-0.003192,0.002750,0.249985,0,0);-ms-transform:matrix(0.290147,-0.003192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290147,-0.003192,0.002750,0.249985,0,0);}
.m4c_c01085{transform:matrix(0.290152,-0.003192,0.002750,0.249985,0,0);-ms-transform:matrix(0.290152,-0.003192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290152,-0.003192,0.002750,0.249985,0,0);}
.mec_c01085{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);}
.m53_c01085{transform:matrix(0.297162,-0.003269,0.002750,0.249985,0,0);-ms-transform:matrix(0.297162,-0.003269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.297162,-0.003269,0.002750,0.249985,0,0);}
.m52_c01085{transform:matrix(0.299902,-0.003299,0.002750,0.249985,0,0);-ms-transform:matrix(0.299902,-0.003299,0.002750,0.249985,0,0);-webkit-transform:matrix(0.299902,-0.003299,0.002750,0.249985,0,0);}
.m119_c01085{transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304295,0.000000,0.000000,0.250000,0,0);}
.mff_c01085{transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310520,0.000000,0.000000,0.250000,0,0);}
.mb0_c01085{transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);}
.mde_c01085{transform:matrix(0.326790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326790,0.000000,0.000000,0.250000,0,0);}
.m26_c01085{transform:matrix(0.352779,-0.003881,0.002750,0.249985,0,0);-ms-transform:matrix(0.352779,-0.003881,0.002750,0.249985,0,0);-webkit-transform:matrix(0.352779,-0.003881,0.002750,0.249985,0,0);}
.m8a_c01085{transform:matrix(0.382242,-0.004205,0.002750,0.249985,0,0);-ms-transform:matrix(0.382242,-0.004205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.382242,-0.004205,0.002750,0.249985,0,0);}
.m138_c01085{transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524935,0.000000,0.000000,0.250000,0,0);}
.m134_c01085{transform:matrix(0.560035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560035,0.000000,0.000000,0.250000,0,0);}
.meb_c01085{transform:matrix(0.561985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561985,0.000000,0.000000,0.250000,0,0);}
.mf2_c01085{transform:matrix(0.605190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605190,0.000000,0.000000,0.250000,0,0);}
.mef_c01085{transform:matrix(0.623470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623470,0.000000,0.000000,0.250000,0,0);}
.m109_c01085{transform:matrix(0.629055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629055,0.000000,0.000000,0.250000,0,0);}
.m13b_c01085{transform:matrix(0.678335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678335,0.000000,0.000000,0.250000,0,0);}
.med_c01085{transform:matrix(0.683475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683475,0.000000,0.000000,0.250000,0,0);}
.m13d_c01085{transform:matrix(0.846650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.846650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.846650,0.000000,0.000000,0.250000,0,0);}
.mee_c01085{transform:matrix(0.886195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886195,0.000000,0.000000,0.250000,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls0_c01085{letter-spacing:0.000000px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:0.000000px;}
.fc0_c01085{color:transparent;}
.fsf_c01085{font-size:22.050000px;}
.fs10_c01085{font-size:23.100000px;}
.fsd_c01085{font-size:24.150000px;}
.fsa_c01085{font-size:67.200000px;}
.fs4_c01085{font-size:67.204065px;}
.fs11_c01085{font-size:68.250000px;}
.fs3_c01085{font-size:68.254129px;}
.fs9_c01085{font-size:69.300000px;}
.fs5_c01085{font-size:69.304193px;}
.fsc_c01085{font-size:70.350000px;}
.fs2_c01085{font-size:70.354256px;}
.fs8_c01085{font-size:71.400000px;}
.fse_c01085{font-size:72.450000px;}
.fsb_c01085{font-size:73.500000px;}
.fs6_c01085{font-size:73.504447px;}
.fs1_c01085{font-size:73.506210px;}
.fs7_c01085{font-size:75.604574px;}
.fs0_c01085{font-size:79.806743px;}
.y0_c01085{bottom:0.000000px;}
.ya4_c01085{bottom:170.592000px;}
.ya3_c01085{bottom:194.097000px;}
.ya2_c01085{bottom:216.474000px;}
.ya1_c01085{bottom:238.917000px;}
.ya0_c01085{bottom:261.900000px;}
.y9f_c01085{bottom:284.278500px;}
.y9e_c01085{bottom:307.216500px;}
.y9b_c01085{bottom:329.623500px;}
.y9a_c01085{bottom:339.930000px;}
.y99_c01085{bottom:357.550500px;}
.y98_c01085{bottom:380.331000px;}
.y97_c01085{bottom:403.045500px;}
.y96_c01085{bottom:425.872500px;}
.y95_c01085{bottom:448.551000px;}
.y94_c01085{bottom:470.961000px;}
.y93_c01085{bottom:493.104000px;}
.y92_c01085{bottom:515.700000px;}
.y8b_c01085{bottom:537.826270px;}
.y8c_c01085{bottom:537.826881px;}
.y8e_c01085{bottom:537.827268px;}
.y8d_c01085{bottom:537.827284px;}
.y8f_c01085{bottom:537.827475px;}
.y90_c01085{bottom:537.827788px;}
.y91_c01085{bottom:537.828295px;}
.y88_c01085{bottom:561.660684px;}
.y86_c01085{bottom:561.660793px;}
.y87_c01085{bottom:561.660910px;}
.y8a_c01085{bottom:561.660964px;}
.y89_c01085{bottom:561.661297px;}
.y85_c01085{bottom:561.661410px;}
.y83_c01085{bottom:561.661789px;}
.y82_c01085{bottom:561.661912px;}
.y84_c01085{bottom:561.662103px;}
.y7f_c01085{bottom:561.662341px;}
.y81_c01085{bottom:561.662395px;}
.y80_c01085{bottom:561.662668px;}
.y73_c01085{bottom:582.647952px;}
.y74_c01085{bottom:582.898962px;}
.y75_c01085{bottom:583.167372px;}
.y76_c01085{bottom:583.412785px;}
.y77_c01085{bottom:583.605055px;}
.y78_c01085{bottom:584.284005px;}
.y79_c01085{bottom:584.561248px;}
.y7a_c01085{bottom:584.831838px;}
.y7b_c01085{bottom:585.007564px;}
.y7c_c01085{bottom:585.502237px;}
.y7d_c01085{bottom:585.771622px;}
.y7e_c01085{bottom:585.901089px;}
.y68_c01085{bottom:605.329630px;}
.y69_c01085{bottom:605.459610px;}
.y6a_c01085{bottom:605.983767px;}
.y6b_c01085{bottom:606.360445px;}
.y6c_c01085{bottom:606.497557px;}
.y6d_c01085{bottom:606.699946px;}
.y6e_c01085{bottom:607.129240px;}
.y6f_c01085{bottom:607.308336px;}
.y70_c01085{bottom:608.034403px;}
.y71_c01085{bottom:608.306083px;}
.y72_c01085{bottom:608.468520px;}
.y5b_c01085{bottom:627.742149px;}
.y5c_c01085{bottom:628.027738px;}
.y5d_c01085{bottom:628.289905px;}
.y5e_c01085{bottom:628.701768px;}
.y5f_c01085{bottom:628.820679px;}
.y60_c01085{bottom:628.985014px;}
.y61_c01085{bottom:629.171385px;}
.y62_c01085{bottom:629.482246px;}
.y63_c01085{bottom:629.959671px;}
.y64_c01085{bottom:630.426103px;}
.y65_c01085{bottom:630.633207px;}
.y66_c01085{bottom:631.103617px;}
.y67_c01085{bottom:631.437637px;}
.y51_c01085{bottom:650.423649px;}
.y52_c01085{bottom:651.004446px;}
.y53_c01085{bottom:651.516736px;}
.y54_c01085{bottom:651.750099px;}
.y55_c01085{bottom:651.993066px;}
.y56_c01085{bottom:652.631742px;}
.y57_c01085{bottom:652.950394px;}
.y58_c01085{bottom:653.527990px;}
.y59_c01085{bottom:654.111708px;}
.y5a_c01085{bottom:654.486670px;}
.y9d_c01085{bottom:664.470000px;}
.y45_c01085{bottom:672.836367px;}
.y46_c01085{bottom:673.082013px;}
.y47_c01085{bottom:673.682739px;}
.y48_c01085{bottom:673.941870px;}
.y49_c01085{bottom:674.508874px;}
.y4a_c01085{bottom:674.626596px;}
.y4b_c01085{bottom:674.848522px;}
.y4c_c01085{bottom:675.196275px;}
.y4d_c01085{bottom:675.660346px;}
.y4e_c01085{bottom:675.829386px;}
.y4f_c01085{bottom:675.971439px;}
.y50_c01085{bottom:676.548478px;}
.y3a_c01085{bottom:695.518981px;}
.y3b_c01085{bottom:695.891853px;}
.y3c_c01085{bottom:696.185302px;}
.y3d_c01085{bottom:696.791028px;}
.y3e_c01085{bottom:697.090747px;}
.y3f_c01085{bottom:697.670797px;}
.y40_c01085{bottom:698.275516px;}
.y41_c01085{bottom:698.494048px;}
.y42_c01085{bottom:699.149841px;}
.y43_c01085{bottom:699.468850px;}
.y44_c01085{bottom:699.905995px;}
.y9c_c01085{bottom:704.700000px;}
.y32_c01085{bottom:719.009263px;}
.y33_c01085{bottom:719.327238px;}
.y34_c01085{bottom:719.453064px;}
.y35_c01085{bottom:719.748970px;}
.y36_c01085{bottom:720.002059px;}
.y37_c01085{bottom:720.758257px;}
.y38_c01085{bottom:721.481691px;}
.y39_c01085{bottom:722.138736px;}
.y25_c01085{bottom:741.149497px;}
.y26_c01085{bottom:741.346560px;}
.y27_c01085{bottom:741.938985px;}
.y28_c01085{bottom:742.083936px;}
.y29_c01085{bottom:742.297846px;}
.y2a_c01085{bottom:742.983061px;}
.y2b_c01085{bottom:743.460636px;}
.y2c_c01085{bottom:743.871576px;}
.y2d_c01085{bottom:744.058522px;}
.y2e_c01085{bottom:744.449677px;}
.y2f_c01085{bottom:745.036162px;}
.y30_c01085{bottom:745.266162px;}
.y31_c01085{bottom:745.832977px;}
.y1b_c01085{bottom:763.291059px;}
.y1c_c01085{bottom:763.730685px;}
.y1d_c01085{bottom:764.298516px;}
.y1e_c01085{bottom:765.375999px;}
.y1f_c01085{bottom:765.785281px;}
.y20_c01085{bottom:766.142143px;}
.y21_c01085{bottom:766.430316px;}
.y22_c01085{bottom:767.151498px;}
.y23_c01085{bottom:767.419920px;}
.y24_c01085{bottom:768.063948px;}
.y11_c01085{bottom:788.131500px;}
.y12_c01085{bottom:788.820045px;}
.y13_c01085{bottom:789.147537px;}
.y14_c01085{bottom:790.038554px;}
.y15_c01085{bottom:790.724557px;}
.y16_c01085{bottom:791.077971px;}
.y17_c01085{bottom:791.611977px;}
.y18_c01085{bottom:792.016524px;}
.y19_c01085{bottom:792.466281px;}
.y1a_c01085{bottom:793.026604px;}
.yb_c01085{bottom:809.730240px;}
.yc_c01085{bottom:810.812443px;}
.yd_c01085{bottom:811.136716px;}
.ye_c01085{bottom:811.997811px;}
.yf_c01085{bottom:812.516535px;}
.y10_c01085{bottom:812.975994px;}
.y1_c01085{bottom:832.143000px;}
.y2_c01085{bottom:832.801866px;}
.y3_c01085{bottom:833.276496px;}
.y4_c01085{bottom:833.575314px;}
.y5_c01085{bottom:834.348138px;}
.y6_c01085{bottom:835.488205px;}
.y7_c01085{bottom:836.555830px;}
.y8_c01085{bottom:837.375727px;}
.y9_c01085{bottom:837.716938px;}
.ya_c01085{bottom:838.057525px;}
.h11_c01085{height:22.050000px;}
.h12_c01085{height:23.100000px;}
.hf_c01085{height:24.150000px;}
.hc_c01085{height:67.200000px;}
.h6_c01085{height:67.204065px;}
.h13_c01085{height:68.250000px;}
.h5_c01085{height:68.254129px;}
.hb_c01085{height:69.300000px;}
.h7_c01085{height:69.304193px;}
.he_c01085{height:70.350000px;}
.h4_c01085{height:70.354256px;}
.ha_c01085{height:71.400000px;}
.h10_c01085{height:72.450000px;}
.hd_c01085{height:73.500000px;}
.h8_c01085{height:73.504447px;}
.h3_c01085{height:73.506210px;}
.h9_c01085{height:75.604574px;}
.h2_c01085{height:79.806743px;}
.h0_c01085{height:1008.450000px;}
.h1_c01085{height:1008.750000px;}
.w0_c01085{width:711.720000px;}
.w1_c01085{width:711.750000px;}
.x0_c01085{left:0.000000px;}
.x1_c01085{left:111.976500px;}
.x1a_c01085{left:113.030430px;}
.x23_c01085{left:115.177718px;}
.x34_c01085{left:116.723780px;}
.x6b_c01085{left:118.257375px;}
.x47_c01085{left:119.462600px;}
.x5d_c01085{left:120.781202px;}
.x8a_c01085{left:122.850000px;}
.x7c_c01085{left:123.930000px;}
.x94_c01085{left:126.090000px;}
.xb5_c01085{left:127.980000px;}
.xba_c01085{left:129.060000px;}
.x6e_c01085{left:130.140000px;}
.x10_c01085{left:131.890500px;}
.x24_c01085{left:134.865432px;}
.x55_c01085{left:135.910134px;}
.x6f_c01085{left:140.130000px;}
.x98_c01085{left:143.910000px;}
.xa2_c01085{left:145.530000px;}
.x3e_c01085{left:148.340882px;}
.x1b_c01085{left:152.996430px;}
.x2d_c01085{left:154.808028px;}
.x5e_c01085{left:156.692786px;}
.x65_c01085{left:158.218041px;}
.x2_c01085{left:162.658500px;}
.x95_c01085{left:166.050000px;}
.x83_c01085{left:167.940000px;}
.x2e_c01085{left:170.474540px;}
.xa9_c01085{left:172.800000px;}
.xaf_c01085{left:173.880000px;}
.x8b_c01085{left:177.930000px;}
.xbf_c01085{left:180.630000px;}
.x35_c01085{left:183.435522px;}
.x91_c01085{left:186.300000px;}
.x4e_c01085{left:188.055840px;}
.x86_c01085{left:190.350000px;}
.x99_c01085{left:191.970000px;}
.x6c_c01085{left:193.321950px;}
.x11_c01085{left:194.485500px;}
.x3_c01085{left:199.168500px;}
.xb_c01085{left:202.918617px;}
.x1c_c01085{left:204.617430px;}
.x2f_c01085{left:207.467261px;}
.x25_c01085{left:208.582241px;}
.x56_c01085{left:210.700418px;}
.x96_c01085{left:213.300000px;}
.x66_c01085{left:214.381839px;}
.x6d_c01085{left:216.543255px;}
.x7e_c01085{left:217.620000px;}
.xaa_c01085{left:219.780000px;}
.x7d_c01085{left:221.130000px;}
.x4_c01085{left:222.154500px;}
.x12_c01085{left:224.257500px;}
.x75_c01085{left:225.450000px;}
.xc0_c01085{left:228.420000px;}
.xc_c01085{left:229.939968px;}
.xa3_c01085{left:234.090000px;}
.xab_c01085{left:236.790000px;}
.x30_c01085{left:239.067300px;}
.x48_c01085{left:240.927773px;}
.x36_c01085{left:243.956682px;}
.x4f_c01085{left:254.446535px;}
.x3f_c01085{left:255.831429px;}
.x5f_c01085{left:257.705741px;}
.x7f_c01085{left:260.280000px;}
.x57_c01085{left:264.446277px;}
.x49_c01085{left:266.915850px;}
.x76_c01085{left:270.540000px;}
.x67_c01085{left:272.435868px;}
.x37_c01085{left:273.931512px;}
.x50_c01085{left:274.977711px;}
.x8c_c01085{left:277.020000px;}
.x5_c01085{left:281.602500px;}
.x58_c01085{left:284.139152px;}
.x97_c01085{left:285.660000px;}
.xb0_c01085{left:288.900000px;}
.x4a_c01085{left:293.913444px;}
.x77_c01085{left:296.190000px;}
.x26_c01085{left:298.503731px;}
.xbb_c01085{left:300.510000px;}
.xd_c01085{left:301.717404px;}
.x13_c01085{left:305.259000px;}
.xac_c01085{left:307.260000px;}
.x8d_c01085{left:309.150000px;}
.xb1_c01085{left:311.310000px;}
.x59_c01085{left:313.039422px;}
.x78_c01085{left:317.250000px;}
.x9a_c01085{left:319.410000px;}
.x70_c01085{left:322.380000px;}
.xbc_c01085{left:323.730000px;}
.x40_c01085{left:326.743272px;}
.xa4_c01085{left:330.750000px;}
.x38_c01085{left:331.982156px;}
.x31_c01085{left:333.588419px;}
.x51_c01085{left:337.091757px;}
.x1d_c01085{left:339.777930px;}
.x41_c01085{left:341.400251px;}
.xb6_c01085{left:343.440000px;}
.xe_c01085{left:344.965970px;}
.x27_c01085{left:346.283759px;}
.x71_c01085{left:348.300000px;}
.x84_c01085{left:349.650000px;}
.x8e_c01085{left:351.270000px;}
.x60_c01085{left:354.614498px;}
.x79_c01085{left:356.940000px;}
.xb2_c01085{left:359.100000px;}
.x92_c01085{left:363.690000px;}
.x4b_c01085{left:364.931012px;}
.x14_c01085{left:367.623000px;}
.x6_c01085{left:369.300000px;}
.x1e_c01085{left:372.219930px;}
.x5a_c01085{left:374.296112px;}
.xbd_c01085{left:378.270000px;}
.xf_c01085{left:383.309477px;}
.x28_c01085{left:387.324204px;}
.xad_c01085{left:389.340000px;}
.x39_c01085{left:392.411816px;}
.x61_c01085{left:394.274747px;}
.xa5_c01085{left:395.280000px;}
.x52_c01085{left:396.723221px;}
.x1f_c01085{left:398.417430px;}
.x15_c01085{left:399.751500px;}
.xb7_c01085{left:403.650000px;}
.x29_c01085{left:405.955902px;}
.x7a_c01085{left:409.050000px;}
.x72_c01085{left:410.130000px;}
.x42_c01085{left:412.691610px;}
.x3a_c01085{left:414.324063px;}
.x8f_c01085{left:415.800000px;}
.x80_c01085{left:421.470000px;}
.x32_c01085{left:424.039905px;}
.xb3_c01085{left:426.330000px;}
.x68_c01085{left:430.125959px;}
.x62_c01085{left:432.920946px;}
.xbe_c01085{left:434.430000px;}
.x9b_c01085{left:436.860000px;}
.xa6_c01085{left:438.210000px;}
.x2a_c01085{left:445.061331px;}
.x16_c01085{left:448.297500px;}
.xb4_c01085{left:449.820000px;}
.x7_c01085{left:451.425000px;}
.x53_c01085{left:455.082651px;}
.x63_c01085{left:458.033552px;}
.x20_c01085{left:463.979430px;}
.xb8_c01085{left:467.100000px;}
.x43_c01085{left:470.700024px;}
.x87_c01085{left:475.200000px;}
.x3b_c01085{left:479.942289px;}
.x54_c01085{left:481.002009px;}
.x69_c01085{left:482.779328px;}
.x17_c01085{left:485.074500px;}
.x21_c01085{left:488.381430px;}
.x85_c01085{left:489.780000px;}
.x44_c01085{left:491.795217px;}
.x81_c01085{left:496.800000px;}
.x73_c01085{left:500.850000px;}
.x2b_c01085{left:503.696975px;}
.x33_c01085{left:506.137611px;}
.x45_c01085{left:509.618811px;}
.x3c_c01085{left:511.807136px;}
.x8_c01085{left:514.494000px;}
.x7b_c01085{left:520.290000px;}
.x18_c01085{left:525.961500px;}
.x88_c01085{left:527.310000px;}
.x4c_c01085{left:529.340625px;}
.x6a_c01085{left:533.002400px;}
.xa7_c01085{left:535.140000px;}
.x9c_c01085{left:539.190000px;}
.x9_c01085{left:540.741000px;}
.x5b_c01085{left:542.516520px;}
.xae_c01085{left:545.130000px;}
.x22_c01085{left:546.929430px;}
.x89_c01085{left:549.720000px;}
.x82_c01085{left:553.770000px;}
.x3d_c01085{left:555.502614px;}
.x5c_c01085{left:565.739043px;}
.xa_c01085{left:566.940000px;}
.x90_c01085{left:569.160000px;}
.x4d_c01085{left:570.929033px;}
.x9d_c01085{left:572.130000px;}
.x19_c01085{left:576.900000px;}
.x74_c01085{left:579.690000px;}
.x46_c01085{left:581.715687px;}
.x2c_c01085{left:583.362849px;}
.x64_c01085{left:585.768678px;}
.x93_c01085{left:587.250000px;}
.xb9_c01085{left:598.320000px;}
.xa8_c01085{left:628.830000px;}
.x9f_c01085{left:703.620000px;}
.xa0_c01085{left:704.970000px;}
.x9e_c01085{left:706.860000px;}
.xa1_c01085{left:709.290000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls0_c01085{letter-spacing:0.000000pt;}
.ws0_c01085{word-spacing:0.000000pt;}
.fsf_c01085{font-size:19.600000pt;}
.fs10_c01085{font-size:20.533333pt;}
.fsd_c01085{font-size:21.466667pt;}
.fsa_c01085{font-size:59.733333pt;}
.fs4_c01085{font-size:59.736947pt;}
.fs11_c01085{font-size:60.666667pt;}
.fs3_c01085{font-size:60.670337pt;}
.fs9_c01085{font-size:61.600000pt;}
.fs5_c01085{font-size:61.603727pt;}
.fsc_c01085{font-size:62.533333pt;}
.fs2_c01085{font-size:62.537116pt;}
.fs8_c01085{font-size:63.466667pt;}
.fse_c01085{font-size:64.400000pt;}
.fsb_c01085{font-size:65.333333pt;}
.fs6_c01085{font-size:65.337286pt;}
.fs1_c01085{font-size:65.338854pt;}
.fs7_c01085{font-size:67.204065pt;}
.fs0_c01085{font-size:70.939327pt;}
.y0_c01085{bottom:0.000000pt;}
.ya4_c01085{bottom:151.637333pt;}
.ya3_c01085{bottom:172.530667pt;}
.ya2_c01085{bottom:192.421333pt;}
.ya1_c01085{bottom:212.370667pt;}
.ya0_c01085{bottom:232.800000pt;}
.y9f_c01085{bottom:252.692000pt;}
.y9e_c01085{bottom:273.081333pt;}
.y9b_c01085{bottom:292.998667pt;}
.y9a_c01085{bottom:302.160000pt;}
.y99_c01085{bottom:317.822667pt;}
.y98_c01085{bottom:338.072000pt;}
.y97_c01085{bottom:358.262667pt;}
.y96_c01085{bottom:378.553333pt;}
.y95_c01085{bottom:398.712000pt;}
.y94_c01085{bottom:418.632000pt;}
.y93_c01085{bottom:438.314667pt;}
.y92_c01085{bottom:458.400000pt;}
.y8b_c01085{bottom:478.067796pt;}
.y8c_c01085{bottom:478.068339pt;}
.y8e_c01085{bottom:478.068683pt;}
.y8d_c01085{bottom:478.068697pt;}
.y8f_c01085{bottom:478.068867pt;}
.y90_c01085{bottom:478.069145pt;}
.y91_c01085{bottom:478.069596pt;}
.y88_c01085{bottom:499.253941pt;}
.y86_c01085{bottom:499.254039pt;}
.y87_c01085{bottom:499.254143pt;}
.y8a_c01085{bottom:499.254191pt;}
.y89_c01085{bottom:499.254487pt;}
.y85_c01085{bottom:499.254587pt;}
.y83_c01085{bottom:499.254924pt;}
.y82_c01085{bottom:499.255033pt;}
.y84_c01085{bottom:499.255203pt;}
.y7f_c01085{bottom:499.255415pt;}
.y81_c01085{bottom:499.255463pt;}
.y80_c01085{bottom:499.255705pt;}
.y73_c01085{bottom:517.909291pt;}
.y74_c01085{bottom:518.132411pt;}
.y75_c01085{bottom:518.370997pt;}
.y76_c01085{bottom:518.589143pt;}
.y77_c01085{bottom:518.760049pt;}
.y78_c01085{bottom:519.363560pt;}
.y79_c01085{bottom:519.609999pt;}
.y7a_c01085{bottom:519.850523pt;}
.y7b_c01085{bottom:520.006724pt;}
.y7c_c01085{bottom:520.446433pt;}
.y7d_c01085{bottom:520.685887pt;}
.y7e_c01085{bottom:520.800968pt;}
.y68_c01085{bottom:538.070783pt;}
.y69_c01085{bottom:538.186320pt;}
.y6a_c01085{bottom:538.652237pt;}
.y6b_c01085{bottom:538.987063pt;}
.y6c_c01085{bottom:539.108940pt;}
.y6d_c01085{bottom:539.288841pt;}
.y6e_c01085{bottom:539.670436pt;}
.y6f_c01085{bottom:539.829632pt;}
.y70_c01085{bottom:540.475025pt;}
.y71_c01085{bottom:540.716519pt;}
.y72_c01085{bottom:540.860907pt;}
.y5b_c01085{bottom:557.993021pt;}
.y5c_c01085{bottom:558.246879pt;}
.y5d_c01085{bottom:558.479916pt;}
.y5e_c01085{bottom:558.846016pt;}
.y5f_c01085{bottom:558.951715pt;}
.y60_c01085{bottom:559.097791pt;}
.y61_c01085{bottom:559.263453pt;}
.y62_c01085{bottom:559.539775pt;}
.y63_c01085{bottom:559.964152pt;}
.y64_c01085{bottom:560.378759pt;}
.y65_c01085{bottom:560.562851pt;}
.y66_c01085{bottom:560.980993pt;}
.y67_c01085{bottom:561.277900pt;}
.y51_c01085{bottom:578.154355pt;}
.y52_c01085{bottom:578.670619pt;}
.y53_c01085{bottom:579.125988pt;}
.y54_c01085{bottom:579.333421pt;}
.y55_c01085{bottom:579.549392pt;}
.y56_c01085{bottom:580.117104pt;}
.y57_c01085{bottom:580.400351pt;}
.y58_c01085{bottom:580.913769pt;}
.y59_c01085{bottom:581.432629pt;}
.y5a_c01085{bottom:581.765929pt;}
.y9d_c01085{bottom:590.640000pt;}
.y45_c01085{bottom:598.076771pt;}
.y46_c01085{bottom:598.295123pt;}
.y47_c01085{bottom:598.829101pt;}
.y48_c01085{bottom:599.059440pt;}
.y49_c01085{bottom:599.563444pt;}
.y4a_c01085{bottom:599.668085pt;}
.y4b_c01085{bottom:599.865353pt;}
.y4c_c01085{bottom:600.174467pt;}
.y4d_c01085{bottom:600.586975pt;}
.y4e_c01085{bottom:600.737232pt;}
.y4f_c01085{bottom:600.863501pt;}
.y50_c01085{bottom:601.376425pt;}
.y3a_c01085{bottom:618.239095pt;}
.y3b_c01085{bottom:618.570536pt;}
.y3c_c01085{bottom:618.831380pt;}
.y3d_c01085{bottom:619.369803pt;}
.y3e_c01085{bottom:619.636220pt;}
.y3f_c01085{bottom:620.151820pt;}
.y40_c01085{bottom:620.689348pt;}
.y41_c01085{bottom:620.883599pt;}
.y42_c01085{bottom:621.466525pt;}
.y43_c01085{bottom:621.750089pt;}
.y44_c01085{bottom:622.138663pt;}
.y9c_c01085{bottom:626.400000pt;}
.y32_c01085{bottom:639.119345pt;}
.y33_c01085{bottom:639.401989pt;}
.y34_c01085{bottom:639.513835pt;}
.y35_c01085{bottom:639.776863pt;}
.y36_c01085{bottom:640.001831pt;}
.y37_c01085{bottom:640.674007pt;}
.y38_c01085{bottom:641.317059pt;}
.y39_c01085{bottom:641.901099pt;}
.y25_c01085{bottom:658.799553pt;}
.y26_c01085{bottom:658.974720pt;}
.y27_c01085{bottom:659.501320pt;}
.y28_c01085{bottom:659.630165pt;}
.y29_c01085{bottom:659.820308pt;}
.y2a_c01085{bottom:660.429388pt;}
.y2b_c01085{bottom:660.853899pt;}
.y2c_c01085{bottom:661.219179pt;}
.y2d_c01085{bottom:661.385353pt;}
.y2e_c01085{bottom:661.733047pt;}
.y2f_c01085{bottom:662.254367pt;}
.y30_c01085{bottom:662.458811pt;}
.y31_c01085{bottom:662.962647pt;}
.y1b_c01085{bottom:678.480941pt;}
.y1c_c01085{bottom:678.871720pt;}
.y1d_c01085{bottom:679.376459pt;}
.y1e_c01085{bottom:680.334221pt;}
.y1f_c01085{bottom:680.698028pt;}
.y20_c01085{bottom:681.015239pt;}
.y21_c01085{bottom:681.271392pt;}
.y22_c01085{bottom:681.912443pt;}
.y23_c01085{bottom:682.151040pt;}
.y24_c01085{bottom:682.723509pt;}
.y11_c01085{bottom:700.561333pt;}
.y12_c01085{bottom:701.173373pt;}
.y13_c01085{bottom:701.464477pt;}
.y14_c01085{bottom:702.256492pt;}
.y15_c01085{bottom:702.866273pt;}
.y16_c01085{bottom:703.180419pt;}
.y17_c01085{bottom:703.655091pt;}
.y18_c01085{bottom:704.014688pt;}
.y19_c01085{bottom:704.414472pt;}
.y1a_c01085{bottom:704.912537pt;}
.yb_c01085{bottom:719.760213pt;}
.yc_c01085{bottom:720.722172pt;}
.yd_c01085{bottom:721.010415pt;}
.ye_c01085{bottom:721.775832pt;}
.yf_c01085{bottom:722.236920pt;}
.y10_c01085{bottom:722.645328pt;}
.y1_c01085{bottom:739.682667pt;}
.y2_c01085{bottom:740.268325pt;}
.y3_c01085{bottom:740.690219pt;}
.y4_c01085{bottom:740.955835pt;}
.y5_c01085{bottom:741.642789pt;}
.y6_c01085{bottom:742.656183pt;}
.y7_c01085{bottom:743.605183pt;}
.y8_c01085{bottom:744.333980pt;}
.y9_c01085{bottom:744.637279pt;}
.ya_c01085{bottom:744.940023pt;}
.h11_c01085{height:19.600000pt;}
.h12_c01085{height:20.533333pt;}
.hf_c01085{height:21.466667pt;}
.hc_c01085{height:59.733333pt;}
.h6_c01085{height:59.736947pt;}
.h13_c01085{height:60.666667pt;}
.h5_c01085{height:60.670337pt;}
.hb_c01085{height:61.600000pt;}
.h7_c01085{height:61.603727pt;}
.he_c01085{height:62.533333pt;}
.h4_c01085{height:62.537116pt;}
.ha_c01085{height:63.466667pt;}
.h10_c01085{height:64.400000pt;}
.hd_c01085{height:65.333333pt;}
.h8_c01085{height:65.337286pt;}
.h3_c01085{height:65.338854pt;}
.h9_c01085{height:67.204065pt;}
.h2_c01085{height:70.939327pt;}
.h0_c01085{height:896.400000pt;}
.h1_c01085{height:896.666667pt;}
.w0_c01085{width:632.640000pt;}
.w1_c01085{width:632.666667pt;}
.x0_c01085{left:0.000000pt;}
.x1_c01085{left:99.534667pt;}
.x1a_c01085{left:100.471493pt;}
.x23_c01085{left:102.380193pt;}
.x34_c01085{left:103.754471pt;}
.x6b_c01085{left:105.117667pt;}
.x47_c01085{left:106.188977pt;}
.x5d_c01085{left:107.361068pt;}
.x8a_c01085{left:109.200000pt;}
.x7c_c01085{left:110.160000pt;}
.x94_c01085{left:112.080000pt;}
.xb5_c01085{left:113.760000pt;}
.xba_c01085{left:114.720000pt;}
.x6e_c01085{left:115.680000pt;}
.x10_c01085{left:117.236000pt;}
.x24_c01085{left:119.880384pt;}
.x55_c01085{left:120.809008pt;}
.x6f_c01085{left:124.560000pt;}
.x98_c01085{left:127.920000pt;}
.xa2_c01085{left:129.360000pt;}
.x3e_c01085{left:131.858561pt;}
.x1b_c01085{left:135.996827pt;}
.x2d_c01085{left:137.607136pt;}
.x5e_c01085{left:139.282476pt;}
.x65_c01085{left:140.638259pt;}
.x2_c01085{left:144.585333pt;}
.x95_c01085{left:147.600000pt;}
.x83_c01085{left:149.280000pt;}
.x2e_c01085{left:151.532924pt;}
.xa9_c01085{left:153.600000pt;}
.xaf_c01085{left:154.560000pt;}
.x8b_c01085{left:158.160000pt;}
.xbf_c01085{left:160.560000pt;}
.x35_c01085{left:163.053797pt;}
.x91_c01085{left:165.600000pt;}
.x4e_c01085{left:167.160747pt;}
.x86_c01085{left:169.200000pt;}
.x99_c01085{left:170.640000pt;}
.x6c_c01085{left:171.841733pt;}
.x11_c01085{left:172.876000pt;}
.x3_c01085{left:177.038667pt;}
.xb_c01085{left:180.372104pt;}
.x1c_c01085{left:181.882160pt;}
.x2f_c01085{left:184.415343pt;}
.x25_c01085{left:185.406436pt;}
.x56_c01085{left:187.289260pt;}
.x96_c01085{left:189.600000pt;}
.x66_c01085{left:190.561635pt;}
.x6d_c01085{left:192.482893pt;}
.x7e_c01085{left:193.440000pt;}
.xaa_c01085{left:195.360000pt;}
.x7d_c01085{left:196.560000pt;}
.x4_c01085{left:197.470667pt;}
.x12_c01085{left:199.340000pt;}
.x75_c01085{left:200.400000pt;}
.xc0_c01085{left:203.040000pt;}
.xc_c01085{left:204.391083pt;}
.xa3_c01085{left:208.080000pt;}
.xab_c01085{left:210.480000pt;}
.x30_c01085{left:212.504267pt;}
.x48_c01085{left:214.158020pt;}
.x36_c01085{left:216.850384pt;}
.x4f_c01085{left:226.174697pt;}
.x3f_c01085{left:227.405715pt;}
.x5f_c01085{left:229.071769pt;}
.x7f_c01085{left:231.360000pt;}
.x57_c01085{left:235.063357pt;}
.x49_c01085{left:237.258533pt;}
.x76_c01085{left:240.480000pt;}
.x67_c01085{left:242.165216pt;}
.x37_c01085{left:243.494677pt;}
.x50_c01085{left:244.424632pt;}
.x8c_c01085{left:246.240000pt;}
.x5_c01085{left:250.313333pt;}
.x58_c01085{left:252.568135pt;}
.x97_c01085{left:253.920000pt;}
.xb0_c01085{left:256.800000pt;}
.x4a_c01085{left:261.256395pt;}
.x77_c01085{left:263.280000pt;}
.x26_c01085{left:265.336649pt;}
.xbb_c01085{left:267.120000pt;}
.xd_c01085{left:268.193248pt;}
.x13_c01085{left:271.341333pt;}
.xac_c01085{left:273.120000pt;}
.x8d_c01085{left:274.800000pt;}
.xb1_c01085{left:276.720000pt;}
.x59_c01085{left:278.257264pt;}
.x78_c01085{left:282.000000pt;}
.x9a_c01085{left:283.920000pt;}
.x70_c01085{left:286.560000pt;}
.xbc_c01085{left:287.760000pt;}
.x40_c01085{left:290.438464pt;}
.xa4_c01085{left:294.000000pt;}
.x38_c01085{left:295.095249pt;}
.x31_c01085{left:296.523039pt;}
.x51_c01085{left:299.637117pt;}
.x1d_c01085{left:302.024827pt;}
.x41_c01085{left:303.466889pt;}
.xb6_c01085{left:305.280000pt;}
.xe_c01085{left:306.636417pt;}
.x27_c01085{left:307.807785pt;}
.x71_c01085{left:309.600000pt;}
.x84_c01085{left:310.800000pt;}
.x8e_c01085{left:312.240000pt;}
.x60_c01085{left:315.212887pt;}
.x79_c01085{left:317.280000pt;}
.xb2_c01085{left:319.200000pt;}
.x92_c01085{left:323.280000pt;}
.x4b_c01085{left:324.383121pt;}
.x14_c01085{left:326.776000pt;}
.x6_c01085{left:328.266667pt;}
.x1e_c01085{left:330.862160pt;}
.x5a_c01085{left:332.707655pt;}
.xbd_c01085{left:336.240000pt;}
.xf_c01085{left:340.719535pt;}
.x28_c01085{left:344.288181pt;}
.xad_c01085{left:346.080000pt;}
.x39_c01085{left:348.810503pt;}
.x61_c01085{left:350.466441pt;}
.xa5_c01085{left:351.360000pt;}
.x52_c01085{left:352.642863pt;}
.x1f_c01085{left:354.148827pt;}
.x15_c01085{left:355.334667pt;}
.xb7_c01085{left:358.800000pt;}
.x29_c01085{left:360.849691pt;}
.x7a_c01085{left:363.600000pt;}
.x72_c01085{left:364.560000pt;}
.x42_c01085{left:366.836987pt;}
.x3a_c01085{left:368.288056pt;}
.x8f_c01085{left:369.600000pt;}
.x80_c01085{left:374.640000pt;}
.x32_c01085{left:376.924360pt;}
.xb3_c01085{left:378.960000pt;}
.x68_c01085{left:382.334185pt;}
.x62_c01085{left:384.818619pt;}
.xbe_c01085{left:386.160000pt;}
.x9b_c01085{left:388.320000pt;}
.xa6_c01085{left:389.520000pt;}
.x2a_c01085{left:395.610072pt;}
.x16_c01085{left:398.486667pt;}
.xb4_c01085{left:399.840000pt;}
.x7_c01085{left:401.266667pt;}
.x53_c01085{left:404.517912pt;}
.x63_c01085{left:407.140935pt;}
.x20_c01085{left:412.426160pt;}
.xb8_c01085{left:415.200000pt;}
.x43_c01085{left:418.400021pt;}
.x87_c01085{left:422.400000pt;}
.x3b_c01085{left:426.615368pt;}
.x54_c01085{left:427.557341pt;}
.x69_c01085{left:429.137180pt;}
.x17_c01085{left:431.177333pt;}
.x21_c01085{left:434.116827pt;}
.x85_c01085{left:435.360000pt;}
.x44_c01085{left:437.151304pt;}
.x81_c01085{left:441.600000pt;}
.x73_c01085{left:445.200000pt;}
.x2b_c01085{left:447.730644pt;}
.x33_c01085{left:449.900099pt;}
.x45_c01085{left:452.994499pt;}
.x3c_c01085{left:454.939676pt;}
.x8_c01085{left:457.328000pt;}
.x7b_c01085{left:462.480000pt;}
.x18_c01085{left:467.521333pt;}
.x88_c01085{left:468.720000pt;}
.x4c_c01085{left:470.525000pt;}
.x6a_c01085{left:473.779911pt;}
.xa7_c01085{left:475.680000pt;}
.x9c_c01085{left:479.280000pt;}
.x9_c01085{left:480.658667pt;}
.x5b_c01085{left:482.236907pt;}
.xae_c01085{left:484.560000pt;}
.x22_c01085{left:486.159493pt;}
.x89_c01085{left:488.640000pt;}
.x82_c01085{left:492.240000pt;}
.x3d_c01085{left:493.780101pt;}
.x5c_c01085{left:502.879149pt;}
.xa_c01085{left:503.946667pt;}
.x90_c01085{left:505.920000pt;}
.x4d_c01085{left:507.492473pt;}
.x9d_c01085{left:508.560000pt;}
.x19_c01085{left:512.800000pt;}
.x74_c01085{left:515.280000pt;}
.x46_c01085{left:517.080611pt;}
.x2c_c01085{left:518.544755pt;}
.x64_c01085{left:520.683269pt;}
.x93_c01085{left:522.000000pt;}
.xb9_c01085{left:531.840000pt;}
.xa8_c01085{left:558.960000pt;}
.x9f_c01085{left:625.440000pt;}
.xa0_c01085{left:626.640000pt;}
.x9e_c01085{left:628.320000pt;}
.xa1_c01085{left:630.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_c01086 {
    display:none;
  }
  .loading-indicator_c01086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01086 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01086 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01086" -> "#page-container .classname_c01086")
 */
.pf_c01086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01086 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01086 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01086 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01086 {overflow:visible;}
  }
}
.c_c01086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01086 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01086:after { /* webkit #35443 */
  content: '';
}
.t_c01086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01086 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01086 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01086 { /* info for Javascript */
  display:none;
}
.l_c01086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.000000;font-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_c01086{transform:matrix(0.015823,0.000222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015823,0.000222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015823,0.000222,-0.003500,0.249976,0,0);}
.m6a_c01086{transform:matrix(0.115204,0.001152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.115204,0.001152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.115204,0.001152,-0.002500,0.249988,0,0);}
.m13_c01086{transform:matrix(0.144926,0.002029,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144926,0.002029,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144926,0.002029,-0.003500,0.249976,0,0);}
.m25_c01086{transform:matrix(0.145478,0.001455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145478,0.001455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145478,0.001455,-0.002500,0.249988,0,0);}
.m32_c01086{transform:matrix(0.146933,0.001469,-0.002500,0.249988,0,0);-ms-transform:matrix(0.146933,0.001469,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.146933,0.001469,-0.002500,0.249988,0,0);}
.m66_c01086{transform:matrix(0.147303,0.001473,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147303,0.001473,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147303,0.001473,-0.002500,0.249988,0,0);}
.m50_c01086{transform:matrix(0.147533,0.001475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.147533,0.001475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.147533,0.001475,-0.002500,0.249988,0,0);}
.md_c01086{transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147566,0.002066,-0.003500,0.249976,0,0);}
.m6e_c01086{transform:matrix(0.147568,0.001918,-0.003250,0.249979,0,0);-ms-transform:matrix(0.147568,0.001918,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.147568,0.001918,-0.003250,0.249979,0,0);}
.m2e_c01086{transform:matrix(0.148348,0.001483,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148348,0.001483,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148348,0.001483,-0.002500,0.249988,0,0);}
.m3e_c01086{transform:matrix(0.148823,0.001488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148823,0.001488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148823,0.001488,-0.002500,0.249988,0,0);}
.m46_c01086{transform:matrix(0.149413,0.001494,-0.002500,0.249988,0,0);-ms-transform:matrix(0.149413,0.001494,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.149413,0.001494,-0.002500,0.249988,0,0);}
.m10_c01086{transform:matrix(0.150180,0.002103,-0.003500,0.249976,0,0);-ms-transform:matrix(0.150180,0.002103,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.150180,0.002103,-0.003500,0.249976,0,0);}
.m56_c01086{transform:matrix(0.153277,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153277,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153277,0.001533,-0.002500,0.249988,0,0);}
.m59_c01086{transform:matrix(0.153902,0.001539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153902,0.001539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153902,0.001539,-0.002500,0.249988,0,0);}
.m5b_c01086{transform:matrix(0.153947,0.001539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153947,0.001539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153947,0.001539,-0.002500,0.249988,0,0);}
.m5a_c01086{transform:matrix(0.154332,0.001543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154332,0.001543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154332,0.001543,-0.002500,0.249988,0,0);}
.m26_c01086{transform:matrix(0.154492,0.001545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154492,0.001545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154492,0.001545,-0.002500,0.249988,0,0);}
.m62_c01086{transform:matrix(0.154587,0.001546,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154587,0.001546,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154587,0.001546,-0.002500,0.249988,0,0);}
.m3a_c01086{transform:matrix(0.155597,0.001556,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155597,0.001556,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155597,0.001556,-0.002500,0.249988,0,0);}
.m9_c01086{transform:matrix(0.156470,0.002191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156470,0.002191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156470,0.002191,-0.003500,0.249976,0,0);}
.m12_c01086{transform:matrix(0.157670,0.002207,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157670,0.002207,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157670,0.002207,-0.003500,0.249976,0,0);}
.m6b_c01086{transform:matrix(0.157737,0.001577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157737,0.001577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157737,0.001577,-0.002500,0.249988,0,0);}
.m43_c01086{transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159137,0.001591,-0.002500,0.249988,0,0);}
.m2f_c01086{transform:matrix(0.159187,0.001592,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159187,0.001592,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159187,0.001592,-0.002500,0.249988,0,0);}
.m68_c01086{transform:matrix(0.160007,0.001600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160007,0.001600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160007,0.001600,-0.002500,0.249988,0,0);}
.ma_c01086{transform:matrix(0.160644,0.002249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160644,0.002249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160644,0.002249,-0.003500,0.249976,0,0);}
.m2d_c01086{transform:matrix(0.161347,0.001613,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161347,0.001613,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161347,0.001613,-0.002500,0.249988,0,0);}
.m37_c01086{transform:matrix(0.162052,0.001621,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162052,0.001621,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162052,0.001621,-0.002500,0.249988,0,0);}
.m1c_c01086{transform:matrix(0.162324,0.002597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162324,0.002597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162324,0.002597,-0.003999,0.249968,0,0);}
.m55_c01086{transform:matrix(0.162377,0.001624,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162377,0.001624,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162377,0.001624,-0.002500,0.249988,0,0);}
.m47_c01086{transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163002,0.001630,-0.002500,0.249988,0,0);}
.m3_c01086{transform:matrix(0.164224,0.002299,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164224,0.002299,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164224,0.002299,-0.003500,0.249976,0,0);}
.m19_c01086{transform:matrix(0.164869,0.002638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164869,0.002638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164869,0.002638,-0.003999,0.249968,0,0);}
.m79_c01086{transform:matrix(0.165246,0.002148,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165246,0.002148,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165246,0.002148,-0.003250,0.249979,0,0);}
.m4f_c01086{transform:matrix(0.165507,0.001655,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165507,0.001655,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165507,0.001655,-0.002500,0.249988,0,0);}
.m60_c01086{transform:matrix(0.168197,0.001682,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168197,0.001682,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168197,0.001682,-0.002500,0.249988,0,0);}
.m41_c01086{transform:matrix(0.168717,0.001687,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168717,0.001687,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168717,0.001687,-0.002500,0.249988,0,0);}
.m53_c01086{transform:matrix(0.171421,0.001714,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171421,0.001714,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171421,0.001714,-0.002500,0.249988,0,0);}
.m28_c01086{transform:matrix(0.172321,0.001723,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172321,0.001723,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172321,0.001723,-0.002500,0.249988,0,0);}
.m2c_c01086{transform:matrix(0.172916,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172916,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172916,0.001729,-0.002500,0.249988,0,0);}
.m76_c01086{transform:matrix(0.173480,0.002255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173480,0.002255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173480,0.002255,-0.003250,0.249979,0,0);}
.me_c01086{transform:matrix(0.174038,0.002437,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174038,0.002437,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174038,0.002437,-0.003500,0.249976,0,0);}
.m4_c01086{transform:matrix(0.174083,0.002437,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174083,0.002437,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174083,0.002437,-0.003500,0.249976,0,0);}
.m4b_c01086{transform:matrix(0.174321,0.001743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174321,0.001743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174321,0.001743,-0.002500,0.249988,0,0);}
.m23_c01086{transform:matrix(0.175061,0.001751,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175061,0.001751,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175061,0.001751,-0.002500,0.249988,0,0);}
.m16_c01086{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);}
.m70_c01086{transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176645,0.002296,-0.003250,0.249979,0,0);}
.m58_c01086{transform:matrix(0.177941,0.001779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177941,0.001779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177941,0.001779,-0.002500,0.249988,0,0);}
.m65_c01086{transform:matrix(0.178031,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178031,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178031,0.001780,-0.002500,0.249988,0,0);}
.m33_c01086{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);}
.m30_c01086{transform:matrix(0.179191,0.001792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179191,0.001792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179191,0.001792,-0.002500,0.249988,0,0);}
.m34_c01086{transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179331,0.001793,-0.002500,0.249988,0,0);}
.mc_c01086{transform:matrix(0.179522,0.002513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179522,0.002513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179522,0.002513,-0.003500,0.249976,0,0);}
.m48_c01086{transform:matrix(0.179761,0.001798,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179761,0.001798,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179761,0.001798,-0.002500,0.249988,0,0);}
.m1b_c01086{transform:matrix(0.180487,0.002888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180487,0.002888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180487,0.002888,-0.003999,0.249968,0,0);}
.m3b_c01086{transform:matrix(0.181216,0.001812,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181216,0.001812,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181216,0.001812,-0.002500,0.249988,0,0);}
.m17_c01086{transform:matrix(0.181912,0.002911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181912,0.002911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181912,0.002911,-0.003999,0.249968,0,0);}
.m7b_c01086{transform:matrix(0.181915,0.002365,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181915,0.002365,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181915,0.002365,-0.003250,0.249979,0,0);}
.m49_c01086{transform:matrix(0.182171,0.001822,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182171,0.001822,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182171,0.001822,-0.002500,0.249988,0,0);}
.m6d_c01086{transform:matrix(0.182285,0.002370,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182285,0.002370,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182285,0.002370,-0.003250,0.249979,0,0);}
.m61_c01086{transform:matrix(0.182321,0.001823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182321,0.001823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182321,0.001823,-0.002500,0.249988,0,0);}
.m21_c01086{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);}
.m11_c01086{transform:matrix(0.183077,0.002563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183077,0.002563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183077,0.002563,-0.003500,0.249976,0,0);}
.m3c_c01086{transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183176,0.001832,-0.002500,0.249988,0,0);}
.m40_c01086{transform:matrix(0.183326,0.001833,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183326,0.001833,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183326,0.001833,-0.002500,0.249988,0,0);}
.m3f_c01086{transform:matrix(0.183886,0.001839,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183886,0.001839,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183886,0.001839,-0.002500,0.249988,0,0);}
.m38_c01086{transform:matrix(0.184801,0.001848,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184801,0.001848,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184801,0.001848,-0.002500,0.249988,0,0);}
.m54_c01086{transform:matrix(0.184961,0.001850,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184961,0.001850,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184961,0.001850,-0.002500,0.249988,0,0);}
.m5e_c01086{transform:matrix(0.185101,0.001851,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185101,0.001851,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185101,0.001851,-0.002500,0.249988,0,0);}
.m42_c01086{transform:matrix(0.185931,0.001859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185931,0.001859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185931,0.001859,-0.002500,0.249988,0,0);}
.m64_c01086{transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185936,0.001859,-0.002500,0.249988,0,0);}
.m1e_c01086{transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);}
.m6_c01086{transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186157,0.002606,-0.003500,0.249976,0,0);}
.m71_c01086{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);}
.m74_c01086{transform:matrix(0.187434,0.002437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187434,0.002437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187434,0.002437,-0.003250,0.249979,0,0);}
.m14_c01086{transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187442,0.002624,-0.003500,0.249976,0,0);}
.m4e_c01086{transform:matrix(0.189066,0.001891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189066,0.001891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189066,0.001891,-0.002500,0.249988,0,0);}
.m5d_c01086{transform:matrix(0.189876,0.001899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189876,0.001899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189876,0.001899,-0.002500,0.249988,0,0);}
.m7a_c01086{transform:matrix(0.190044,0.002471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190044,0.002471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190044,0.002471,-0.003250,0.249979,0,0);}
.m1a_c01086{transform:matrix(0.190546,0.003049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190546,0.003049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190546,0.003049,-0.003999,0.249968,0,0);}
.m15_c01086{transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);}
.mf_c01086{transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191481,0.002681,-0.003500,0.249976,0,0);}
.m6c_c01086{transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191485,0.001915,-0.002500,0.249988,0,0);}
.m3d_c01086{transform:matrix(0.191700,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191700,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191700,0.001917,-0.002500,0.249988,0,0);}
.m27_c01086{transform:matrix(0.192070,0.001921,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192070,0.001921,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192070,0.001921,-0.002500,0.249988,0,0);}
.m22_c01086{transform:matrix(0.193385,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193385,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193385,0.001934,-0.002500,0.249988,0,0);}
.m1f_c01086{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);}
.m36_c01086{transform:matrix(0.193890,0.001939,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193890,0.001939,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193890,0.001939,-0.002500,0.249988,0,0);}
.m63_c01086{transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193955,0.001940,-0.002500,0.249988,0,0);}
.m4a_c01086{transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194200,0.001942,-0.002500,0.249988,0,0);}
.m45_c01086{transform:matrix(0.194360,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194360,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194360,0.001944,-0.002500,0.249988,0,0);}
.m39_c01086{transform:matrix(0.195985,0.001960,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195985,0.001960,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195985,0.001960,-0.002500,0.249988,0,0);}
.m75_c01086{transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197243,0.002564,-0.003250,0.249979,0,0);}
.m24_c01086{transform:matrix(0.197300,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197300,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197300,0.001973,-0.002500,0.249988,0,0);}
.m57_c01086{transform:matrix(0.197610,0.001976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197610,0.001976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197610,0.001976,-0.002500,0.249988,0,0);}
.m6f_c01086{transform:matrix(0.198378,0.002579,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198378,0.002579,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198378,0.002579,-0.003250,0.249979,0,0);}
.m18_c01086{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);}
.m1d_c01086{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);}
.m7_c01086{transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199345,0.002791,-0.003500,0.249976,0,0);}
.m35_c01086{transform:matrix(0.200550,0.002005,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200550,0.002005,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200550,0.002005,-0.002500,0.249988,0,0);}
.m44_c01086{transform:matrix(0.200820,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200820,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200820,0.002008,-0.002500,0.249988,0,0);}
.m4c_c01086{transform:matrix(0.201000,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201000,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201000,0.002010,-0.002500,0.249988,0,0);}
.m8_c01086{transform:matrix(0.201575,0.002822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201575,0.002822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201575,0.002822,-0.003500,0.249976,0,0);}
.m29_c01086{transform:matrix(0.203495,0.002035,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203495,0.002035,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203495,0.002035,-0.002500,0.249988,0,0);}
.m31_c01086{transform:matrix(0.206100,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206100,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206100,0.002061,-0.002500,0.249988,0,0);}
.m73_c01086{transform:matrix(0.206433,0.002684,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206433,0.002684,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206433,0.002684,-0.003250,0.249979,0,0);}
.m7c_c01086{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);}
.m0_c01086{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);}
.m77_c01086{transform:matrix(0.221366,0.002878,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221366,0.002878,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221366,0.002878,-0.003250,0.249979,0,0);}
.mb_c01086{transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221768,0.003105,-0.003500,0.249976,0,0);}
.m5c_c01086{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);}
.m67_c01086{transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);}
.m5f_c01086{transform:matrix(0.232618,0.002326,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232618,0.002326,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232618,0.002326,-0.002500,0.249988,0,0);}
.m4d_c01086{transform:matrix(0.238103,0.002381,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238103,0.002381,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238103,0.002381,-0.002500,0.249988,0,0);}
.m2b_c01086{transform:matrix(0.238358,0.002384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238358,0.002384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238358,0.002384,-0.002500,0.249988,0,0);}
.m51_c01086{transform:matrix(0.242708,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242708,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242708,0.002427,-0.002500,0.249988,0,0);}
.m72_c01086{transform:matrix(0.244159,0.003174,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244159,0.003174,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244159,0.003174,-0.003250,0.249979,0,0);}
.m2a_c01086{transform:matrix(0.245738,0.002457,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245738,0.002457,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245738,0.002457,-0.002500,0.249988,0,0);}
.m5_c01086{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);}
.m2_c01086{transform:matrix(0.250800,0.003511,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250800,0.003511,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250800,0.003511,-0.003500,0.249976,0,0);}
.m69_c01086{transform:matrix(0.268282,0.002683,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268282,0.002683,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268282,0.002683,-0.002500,0.249988,0,0);}
.m78_c01086{transform:matrix(0.278102,0.003615,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278102,0.003615,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278102,0.003615,-0.003250,0.249979,0,0);}
.m52_c01086{transform:matrix(0.344413,0.003444,-0.002500,0.249988,0,0);-ms-transform:matrix(0.344413,0.003444,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.344413,0.003444,-0.002500,0.249988,0,0);}
.m20_c01086{transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.352755,0.005644,-0.003999,0.249968,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls0_c01086{letter-spacing:0.000000px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:0.000000px;}
.fc0_c01086{color:transparent;}
.fs5_c01086{font-size:69.303465px;}
.fs4_c01086{font-size:70.353517px;}
.fs1_c01086{font-size:70.356894px;}
.fs3_c01086{font-size:70.359004px;}
.fs6_c01086{font-size:71.403570px;}
.fs8_c01086{font-size:72.456122px;}
.fs2_c01086{font-size:72.457100px;}
.fs7_c01086{font-size:73.503675px;}
.fs9_c01086{font-size:97.650000px;}
.fs0_c01086{font-size:101.850000px;}
.y0_c01086{bottom:0.000000px;}
.y7e_c01086{bottom:151.879500px;}
.y7b_c01086{bottom:582.812230px;}
.y7d_c01086{bottom:582.812298px;}
.y7c_c01086{bottom:582.812529px;}
.y7a_c01086{bottom:601.071873px;}
.y79_c01086{bottom:601.310904px;}
.y78_c01086{bottom:601.811508px;}
.y77_c01086{bottom:602.156287px;}
.y76_c01086{bottom:602.879289px;}
.y75_c01086{bottom:603.202326px;}
.y74_c01086{bottom:603.985173px;}
.y73_c01086{bottom:604.532772px;}
.y72_c01086{bottom:605.280480px;}
.y71_c01086{bottom:605.515533px;}
.y70_c01086{bottom:605.856061px;}
.y6f_c01086{bottom:606.691500px;}
.y6e_c01086{bottom:624.277815px;}
.y6d_c01086{bottom:624.702450px;}
.y6c_c01086{bottom:625.359285px;}
.y6b_c01086{bottom:625.848015px;}
.y6a_c01086{bottom:626.270190px;}
.y69_c01086{bottom:626.461125px;}
.y68_c01086{bottom:626.864190px;}
.y67_c01086{bottom:627.669675px;}
.y66_c01086{bottom:627.943230px;}
.y65_c01086{bottom:628.451580px;}
.y64_c01086{bottom:628.659945px;}
.y63_c01086{bottom:629.100045px;}
.y62_c01086{bottom:647.099625px;}
.y61_c01086{bottom:647.748915px;}
.y60_c01086{bottom:648.248115px;}
.y5f_c01086{bottom:648.527370px;}
.y5e_c01086{bottom:649.275285px;}
.y5d_c01086{bottom:651.586140px;}
.y5c_c01086{bottom:652.049340px;}
.y5b_c01086{bottom:669.867960px;}
.y5a_c01086{bottom:670.414350px;}
.y59_c01086{bottom:670.832115px;}
.y58_c01086{bottom:671.363805px;}
.y57_c01086{bottom:671.637360px;}
.y56_c01086{bottom:672.068310px;}
.y55_c01086{bottom:672.579180px;}
.y54_c01086{bottom:672.843045px;}
.y53_c01086{bottom:673.034700px;}
.y52_c01086{bottom:673.716990px;}
.y51_c01086{bottom:673.945875px;}
.y50_c01086{bottom:674.391405px;}
.y4f_c01086{bottom:674.753700px;}
.y4e_c01086{bottom:675.000315px;}
.y4d_c01086{bottom:692.391900px;}
.y4c_c01086{bottom:692.771835px;}
.y4b_c01086{bottom:693.416145px;}
.y4a_c01086{bottom:693.997905px;}
.y49_c01086{bottom:694.407975px;}
.y48_c01086{bottom:694.616610px;}
.y47_c01086{bottom:694.908165px;}
.y46_c01086{bottom:695.260950px;}
.y45_c01086{bottom:695.807340px;}
.y44_c01086{bottom:696.062025px;}
.y43_c01086{bottom:696.299040px;}
.y42_c01086{bottom:697.139685px;}
.y41_c01086{bottom:715.035435px;}
.y40_c01086{bottom:715.614105px;}
.y3f_c01086{bottom:716.077755px;}
.y3e_c01086{bottom:716.406960px;}
.y3d_c01086{bottom:716.921100px;}
.y3c_c01086{bottom:717.179535px;}
.y3b_c01086{bottom:717.384360px;}
.y3a_c01086{bottom:718.084110px;}
.y39_c01086{bottom:719.507130px;}
.y38_c01086{bottom:720.088620px;}
.y37_c01086{bottom:737.492040px;}
.y36_c01086{bottom:738.204705px;}
.y35_c01086{bottom:738.466440px;}
.y34_c01086{bottom:739.292055px;}
.y33_c01086{bottom:739.503180px;}
.y32_c01086{bottom:740.578140px;}
.y31_c01086{bottom:741.000165px;}
.y30_c01086{bottom:741.828840px;}
.y2f_c01086{bottom:742.019655px;}
.y2e_c01086{bottom:742.500615px;}
.y2d_c01086{bottom:760.966020px;}
.y2c_c01086{bottom:761.479530px;}
.y2b_c01086{bottom:761.587605px;}
.y2a_c01086{bottom:762.205950px;}
.y29_c01086{bottom:762.616470px;}
.y28_c01086{bottom:763.237515px;}
.y27_c01086{bottom:763.623645px;}
.y26_c01086{bottom:763.844955px;}
.y25_c01086{bottom:764.422800px;}
.y24_c01086{bottom:764.787360px;}
.y23_c01086{bottom:765.451500px;}
.y22_c01086{bottom:781.437408px;}
.y21_c01086{bottom:781.626384px;}
.y20_c01086{bottom:782.510136px;}
.y1f_c01086{bottom:783.206040px;}
.y1e_c01086{bottom:784.116744px;}
.y1d_c01086{bottom:784.584144px;}
.y1c_c01086{bottom:785.724744px;}
.y1b_c01086{bottom:787.189512px;}
.y1a_c01086{bottom:787.539120px;}
.y19_c01086{bottom:787.906344px;}
.y18_c01086{bottom:788.489400px;}
.y17_c01086{bottom:788.796000px;}
.y16_c01086{bottom:805.352397px;}
.y15_c01086{bottom:805.725660px;}
.y14_c01086{bottom:806.276886px;}
.y13_c01086{bottom:806.919183px;}
.y12_c01086{bottom:807.557343px;}
.y11_c01086{bottom:807.895026px;}
.y10_c01086{bottom:808.491399px;}
.yf_c01086{bottom:809.327349px;}
.ye_c01086{bottom:809.673183px;}
.yd_c01086{bottom:810.270060px;}
.yc_c01086{bottom:827.651250px;}
.yb_c01086{bottom:828.146283px;}
.ya_c01086{bottom:829.220013px;}
.y9_c01086{bottom:829.672941px;}
.y8_c01086{bottom:830.229651px;}
.y7_c01086{bottom:831.129522px;}
.y6_c01086{bottom:831.428016px;}
.y5_c01086{bottom:832.354179px;}
.y4_c01086{bottom:832.698117px;}
.y3_c01086{bottom:833.862987px;}
.y2_c01086{bottom:834.030000px;}
.y1_c01086{bottom:873.445500px;}
.h7_c01086{height:69.303465px;}
.h6_c01086{height:70.353517px;}
.h3_c01086{height:70.356894px;}
.h5_c01086{height:70.359004px;}
.h8_c01086{height:71.403570px;}
.ha_c01086{height:72.456122px;}
.h4_c01086{height:72.457100px;}
.h9_c01086{height:73.503675px;}
.hb_c01086{height:97.650000px;}
.h2_c01086{height:101.850000px;}
.h1_c01086{height:1005.000000px;}
.h0_c01086{height:1005.150000px;}
.w0_c01086{width:739.200000px;}
.w1_c01086{width:739.500000px;}
.x0_c01086{left:0.000000px;}
.x57_c01086{left:104.047500px;}
.xd_c01086{left:105.111726px;}
.x2_c01086{left:111.235500px;}
.x3_c01086{left:123.165000px;}
.x3f_c01086{left:127.036380px;}
.x4e_c01086{left:144.302715px;}
.x49_c01086{left:146.462670px;}
.x26_c01086{left:149.165685px;}
.x60_c01086{left:152.012231px;}
.xe_c01086{left:154.818612px;}
.x2e_c01086{left:158.594025px;}
.x17_c01086{left:160.180500px;}
.x4f_c01086{left:163.189020px;}
.x27_c01086{left:166.447005px;}
.x58_c01086{left:168.312000px;}
.x1e_c01086{left:170.775000px;}
.x35_c01086{left:181.023210px;}
.xf_c01086{left:183.700431px;}
.x61_c01086{left:186.305022px;}
.x59_c01086{left:194.506500px;}
.x40_c01086{left:200.468145px;}
.x36_c01086{left:202.624500px;}
.x18_c01086{left:204.982500px;}
.x4_c01086{left:206.370000px;}
.x50_c01086{left:209.373555px;}
.x5a_c01086{left:212.587500px;}
.x41_c01086{left:221.256435px;}
.x37_c01086{left:225.842775px;}
.x5_c01086{left:230.937000px;}
.x51_c01086{left:234.178800px;}
.x28_c01086{left:241.813755px;}
.x10_c01086{left:253.377384px;}
.x1f_c01086{left:265.015500px;}
.x5b_c01086{left:270.103500px;}
.x38_c01086{left:275.531280px;}
.x29_c01086{left:280.115865px;}
.x42_c01086{left:283.334820px;}
.x20_c01086{left:287.146500px;}
.x6_c01086{left:297.091500px;}
.x43_c01086{left:300.700140px;}
.x11_c01086{left:303.048270px;}
.x39_c01086{left:307.659465px;}
.x1_c01086{left:312.660000px;}
.x7_c01086{left:318.412500px;}
.x44_c01086{left:324.686400px;}
.x21_c01086{left:325.759500px;}
.x12_c01086{left:331.133547px;}
.x3a_c01086{left:334.114695px;}
.x52_c01086{left:344.082705px;}
.x2f_c01086{left:351.669105px;}
.x3b_c01086{left:353.028000px;}
.x4a_c01086{left:356.546070px;}
.x53_c01086{left:361.376025px;}
.x19_c01086{left:367.818000px;}
.x30_c01086{left:370.351425px;}
.x5c_c01086{left:372.445500px;}
.x2a_c01086{left:377.860890px;}
.x8_c01086{left:382.689000px;}
.x13_c01086{left:384.325038px;}
.x22_c01086{left:387.864000px;}
.x3c_c01086{left:390.284625px;}
.x31_c01086{left:393.794685px;}
.x1a_c01086{left:397.030500px;}
.x54_c01086{left:399.693135px;}
.x45_c01086{left:410.317545px;}
.x9_c01086{left:422.454000px;}
.x4b_c01086{left:424.586895px;}
.x23_c01086{left:428.916000px;}
.x46_c01086{left:435.122790px;}
.x14_c01086{left:437.812029px;}
.x32_c01086{left:440.558220px;}
.x3d_c01086{left:443.210100px;}
.x62_c01086{left:446.850000px;}
.x4c_c01086{left:449.962140px;}
.x5d_c01086{left:452.910000px;}
.xa_c01086{left:454.806000px;}
.x33_c01086{left:470.478420px;}
.x2b_c01086{left:472.083945px;}
.x5e_c01086{left:479.431500px;}
.x15_c01086{left:483.722310px;}
.x24_c01086{left:490.750500px;}
.x2c_c01086{left:495.857205px;}
.x1b_c01086{left:497.443500px;}
.x25_c01086{left:501.558000px;}
.x55_c01086{left:503.748585px;}
.x34_c01086{left:512.643000px;}
.x16_c01086{left:514.777671px;}
.x5f_c01086{left:517.939500px;}
.x47_c01086{left:521.517435px;}
.xb_c01086{left:531.501000px;}
.x3e_c01086{left:536.333670px;}
.x56_c01086{left:542.311695px;}
.x1c_c01086{left:552.678000px;}
.x4d_c01086{left:554.460105px;}
.x2d_c01086{left:560.673060px;}
.x1d_c01086{left:564.489000px;}
.xc_c01086{left:566.860500px;}
.x48_c01086{left:571.205940px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls0_c01086{letter-spacing:0.000000pt;}
.ws0_c01086{word-spacing:0.000000pt;}
.fs5_c01086{font-size:61.603080pt;}
.fs4_c01086{font-size:62.536460pt;}
.fs1_c01086{font-size:62.539461pt;}
.fs3_c01086{font-size:62.541337pt;}
.fs6_c01086{font-size:63.469840pt;}
.fs8_c01086{font-size:64.405442pt;}
.fs2_c01086{font-size:64.406311pt;}
.fs7_c01086{font-size:65.336600pt;}
.fs9_c01086{font-size:86.800000pt;}
.fs0_c01086{font-size:90.533333pt;}
.y0_c01086{bottom:0.000000pt;}
.y7e_c01086{bottom:135.004000pt;}
.y7b_c01086{bottom:518.055316pt;}
.y7d_c01086{bottom:518.055376pt;}
.y7c_c01086{bottom:518.055581pt;}
.y7a_c01086{bottom:534.286109pt;}
.y79_c01086{bottom:534.498581pt;}
.y78_c01086{bottom:534.943563pt;}
.y77_c01086{bottom:535.250033pt;}
.y76_c01086{bottom:535.892701pt;}
.y75_c01086{bottom:536.179845pt;}
.y74_c01086{bottom:536.875709pt;}
.y73_c01086{bottom:537.362464pt;}
.y72_c01086{bottom:538.027093pt;}
.y71_c01086{bottom:538.236029pt;}
.y70_c01086{bottom:538.538721pt;}
.y6f_c01086{bottom:539.281333pt;}
.y6e_c01086{bottom:554.913613pt;}
.y6d_c01086{bottom:555.291067pt;}
.y6c_c01086{bottom:555.874920pt;}
.y6b_c01086{bottom:556.309347pt;}
.y6a_c01086{bottom:556.684613pt;}
.y69_c01086{bottom:556.854333pt;}
.y68_c01086{bottom:557.212613pt;}
.y67_c01086{bottom:557.928600pt;}
.y66_c01086{bottom:558.171760pt;}
.y65_c01086{bottom:558.623627pt;}
.y64_c01086{bottom:558.808840pt;}
.y63_c01086{bottom:559.200040pt;}
.y62_c01086{bottom:575.199667pt;}
.y61_c01086{bottom:575.776813pt;}
.y60_c01086{bottom:576.220547pt;}
.y5f_c01086{bottom:576.468773pt;}
.y5e_c01086{bottom:577.133587pt;}
.y5d_c01086{bottom:579.187680pt;}
.y5c_c01086{bottom:579.599413pt;}
.y5b_c01086{bottom:595.438187pt;}
.y5a_c01086{bottom:595.923867pt;}
.y59_c01086{bottom:596.295213pt;}
.y58_c01086{bottom:596.767827pt;}
.y57_c01086{bottom:597.010987pt;}
.y56_c01086{bottom:597.394053pt;}
.y55_c01086{bottom:597.848160pt;}
.y54_c01086{bottom:598.082707pt;}
.y53_c01086{bottom:598.253067pt;}
.y52_c01086{bottom:598.859547pt;}
.y51_c01086{bottom:599.063000pt;}
.y50_c01086{bottom:599.459027pt;}
.y4f_c01086{bottom:599.781067pt;}
.y4e_c01086{bottom:600.000280pt;}
.y4d_c01086{bottom:615.459467pt;}
.y4c_c01086{bottom:615.797187pt;}
.y4b_c01086{bottom:616.369907pt;}
.y4a_c01086{bottom:616.887027pt;}
.y49_c01086{bottom:617.251533pt;}
.y48_c01086{bottom:617.436987pt;}
.y47_c01086{bottom:617.696147pt;}
.y46_c01086{bottom:618.009733pt;}
.y45_c01086{bottom:618.495413pt;}
.y44_c01086{bottom:618.721800pt;}
.y43_c01086{bottom:618.932480pt;}
.y42_c01086{bottom:619.679720pt;}
.y41_c01086{bottom:635.587053pt;}
.y40_c01086{bottom:636.101427pt;}
.y3f_c01086{bottom:636.513560pt;}
.y3e_c01086{bottom:636.806187pt;}
.y3d_c01086{bottom:637.263200pt;}
.y3c_c01086{bottom:637.492920pt;}
.y3b_c01086{bottom:637.674987pt;}
.y3a_c01086{bottom:638.296987pt;}
.y39_c01086{bottom:639.561893pt;}
.y38_c01086{bottom:640.078773pt;}
.y37_c01086{bottom:655.548480pt;}
.y36_c01086{bottom:656.181960pt;}
.y35_c01086{bottom:656.414613pt;}
.y34_c01086{bottom:657.148493pt;}
.y33_c01086{bottom:657.336160pt;}
.y32_c01086{bottom:658.291680pt;}
.y31_c01086{bottom:658.666813pt;}
.y30_c01086{bottom:659.403413pt;}
.y2f_c01086{bottom:659.573027pt;}
.y2e_c01086{bottom:660.000547pt;}
.y2d_c01086{bottom:676.414240pt;}
.y2c_c01086{bottom:676.870693pt;}
.y2b_c01086{bottom:676.966760pt;}
.y2a_c01086{bottom:677.516400pt;}
.y29_c01086{bottom:677.881307pt;}
.y28_c01086{bottom:678.433347pt;}
.y27_c01086{bottom:678.776573pt;}
.y26_c01086{bottom:678.973293pt;}
.y25_c01086{bottom:679.486933pt;}
.y24_c01086{bottom:679.810987pt;}
.y23_c01086{bottom:680.401333pt;}
.y22_c01086{bottom:694.611029pt;}
.y21_c01086{bottom:694.779008pt;}
.y20_c01086{bottom:695.564565pt;}
.y1f_c01086{bottom:696.183147pt;}
.y1e_c01086{bottom:696.992661pt;}
.y1d_c01086{bottom:697.408128pt;}
.y1c_c01086{bottom:698.421995pt;}
.y1b_c01086{bottom:699.724011pt;}
.y1a_c01086{bottom:700.034773pt;}
.y19_c01086{bottom:700.361195pt;}
.y18_c01086{bottom:700.879467pt;}
.y17_c01086{bottom:701.152000pt;}
.y16_c01086{bottom:715.868797pt;}
.y15_c01086{bottom:716.200587pt;}
.y14_c01086{bottom:716.690565pt;}
.y13_c01086{bottom:717.261496pt;}
.y12_c01086{bottom:717.828749pt;}
.y11_c01086{bottom:718.128912pt;}
.y10_c01086{bottom:718.659021pt;}
.yf_c01086{bottom:719.402088pt;}
.ye_c01086{bottom:719.709496pt;}
.yd_c01086{bottom:720.240053pt;}
.yc_c01086{bottom:735.690000pt;}
.yb_c01086{bottom:736.130029pt;}
.ya_c01086{bottom:737.084456pt;}
.y9_c01086{bottom:737.487059pt;}
.y8_c01086{bottom:737.981912pt;}
.y7_c01086{bottom:738.781797pt;}
.y6_c01086{bottom:739.047125pt;}
.y5_c01086{bottom:739.870381pt;}
.y4_c01086{bottom:740.176104pt;}
.y3_c01086{bottom:741.211544pt;}
.y2_c01086{bottom:741.360000pt;}
.y1_c01086{bottom:776.396000pt;}
.h7_c01086{height:61.603080pt;}
.h6_c01086{height:62.536460pt;}
.h3_c01086{height:62.539461pt;}
.h5_c01086{height:62.541337pt;}
.h8_c01086{height:63.469840pt;}
.ha_c01086{height:64.405442pt;}
.h4_c01086{height:64.406311pt;}
.h9_c01086{height:65.336600pt;}
.hb_c01086{height:86.800000pt;}
.h2_c01086{height:90.533333pt;}
.h1_c01086{height:893.333333pt;}
.h0_c01086{height:893.466667pt;}
.w0_c01086{width:657.066667pt;}
.w1_c01086{width:657.333333pt;}
.x0_c01086{left:0.000000pt;}
.x57_c01086{left:92.486667pt;}
.xd_c01086{left:93.432645pt;}
.x2_c01086{left:98.876000pt;}
.x3_c01086{left:109.480000pt;}
.x3f_c01086{left:112.921227pt;}
.x4e_c01086{left:128.269080pt;}
.x49_c01086{left:130.189040pt;}
.x26_c01086{left:132.591720pt;}
.x60_c01086{left:135.121983pt;}
.xe_c01086{left:137.616544pt;}
.x2e_c01086{left:140.972467pt;}
.x17_c01086{left:142.382667pt;}
.x4f_c01086{left:145.056907pt;}
.x27_c01086{left:147.952893pt;}
.x58_c01086{left:149.610667pt;}
.x1e_c01086{left:151.800000pt;}
.x35_c01086{left:160.909520pt;}
.xf_c01086{left:163.289272pt;}
.x61_c01086{left:165.604464pt;}
.x59_c01086{left:172.894667pt;}
.x40_c01086{left:178.193907pt;}
.x36_c01086{left:180.110667pt;}
.x18_c01086{left:182.206667pt;}
.x4_c01086{left:183.440000pt;}
.x50_c01086{left:186.109827pt;}
.x5a_c01086{left:188.966667pt;}
.x41_c01086{left:196.672387pt;}
.x37_c01086{left:200.749133pt;}
.x5_c01086{left:205.277333pt;}
.x51_c01086{left:208.158933pt;}
.x28_c01086{left:214.945560pt;}
.x10_c01086{left:225.224341pt;}
.x1f_c01086{left:235.569333pt;}
.x5b_c01086{left:240.092000pt;}
.x38_c01086{left:244.916693pt;}
.x29_c01086{left:248.991880pt;}
.x42_c01086{left:251.853173pt;}
.x20_c01086{left:255.241333pt;}
.x6_c01086{left:264.081333pt;}
.x43_c01086{left:267.289013pt;}
.x11_c01086{left:269.376240pt;}
.x39_c01086{left:273.475080pt;}
.x1_c01086{left:277.920000pt;}
.x7_c01086{left:283.033333pt;}
.x44_c01086{left:288.610133pt;}
.x21_c01086{left:289.564000pt;}
.x12_c01086{left:294.340931pt;}
.x3a_c01086{left:296.990840pt;}
.x52_c01086{left:305.851293pt;}
.x2f_c01086{left:312.594760pt;}
.x3b_c01086{left:313.802667pt;}
.x4a_c01086{left:316.929840pt;}
.x53_c01086{left:321.223133pt;}
.x19_c01086{left:326.949333pt;}
.x30_c01086{left:329.201267pt;}
.x5c_c01086{left:331.062667pt;}
.x2a_c01086{left:335.876347pt;}
.x8_c01086{left:340.168000pt;}
.x13_c01086{left:341.622256pt;}
.x22_c01086{left:344.768000pt;}
.x3c_c01086{left:346.919667pt;}
.x31_c01086{left:350.039720pt;}
.x1a_c01086{left:352.916000pt;}
.x54_c01086{left:355.282787pt;}
.x45_c01086{left:364.726707pt;}
.x9_c01086{left:375.514667pt;}
.x4b_c01086{left:377.410573pt;}
.x23_c01086{left:381.258667pt;}
.x46_c01086{left:386.775813pt;}
.x14_c01086{left:389.166248pt;}
.x32_c01086{left:391.607307pt;}
.x3d_c01086{left:393.964533pt;}
.x62_c01086{left:397.200000pt;}
.x4c_c01086{left:399.966347pt;}
.x5d_c01086{left:402.586667pt;}
.xa_c01086{left:404.272000pt;}
.x33_c01086{left:418.203040pt;}
.x2b_c01086{left:419.630173pt;}
.x5e_c01086{left:426.161333pt;}
.x15_c01086{left:429.975387pt;}
.x24_c01086{left:436.222667pt;}
.x2c_c01086{left:440.761960pt;}
.x1b_c01086{left:442.172000pt;}
.x25_c01086{left:445.829333pt;}
.x55_c01086{left:447.776520pt;}
.x34_c01086{left:455.682667pt;}
.x16_c01086{left:457.580152pt;}
.x5f_c01086{left:460.390667pt;}
.x47_c01086{left:463.571053pt;}
.xb_c01086{left:472.445333pt;}
.x3e_c01086{left:476.741040pt;}
.x56_c01086{left:482.054840pt;}
.x1c_c01086{left:491.269333pt;}
.x4d_c01086{left:492.853427pt;}
.x2d_c01086{left:498.376053pt;}
.x1d_c01086{left:501.768000pt;}
.xc_c01086{left:503.876000pt;}
.x48_c01086{left:507.738613pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_ef4e99a7aa2876b3106553d3.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.000000;font-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_c01087{transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017885,0.000000,0.000000,0.250000,0,0);}
.mb_c01087{transform:matrix(0.044447,-0.000489,0.002750,0.249985,0,0);-ms-transform:matrix(0.044447,-0.000489,0.002750,0.249985,0,0);-webkit-transform:matrix(0.044447,-0.000489,0.002750,0.249985,0,0);}
.m51_c01087{transform:matrix(0.078795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078795,0.000000,0.000000,0.250000,0,0);}
.m59_c01087{transform:matrix(0.119925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119925,0.000000,0.000000,0.250000,0,0);}
.m57_c01087{transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125885,0.000000,0.000000,0.250000,0,0);}
.m55_c01087{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);}
.m58_c01087{transform:matrix(0.134245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134245,0.000000,0.000000,0.250000,0,0);}
.m82_c01087{transform:matrix(0.139020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139020,0.000000,0.000000,0.250000,0,0);}
.m9e_c01087{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);}
.m96_c01087{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);}
.m54_c01087{transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);}
.m7a_c01087{transform:matrix(0.150055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150055,0.000000,0.000000,0.250000,0,0);}
.m56_c01087{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);}
.m7f_c01087{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);}
.m2c_c01087{transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);-ms-transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155906,-0.001715,0.002750,0.249985,0,0);}
.ma0_c01087{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);}
.m28_c01087{transform:matrix(0.156551,-0.001722,0.002750,0.249985,0,0);-ms-transform:matrix(0.156551,-0.001722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156551,-0.001722,0.002750,0.249985,0,0);}
.m4e_c01087{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);}
.mb9_c01087{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);}
.m9d_c01087{transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158830,0.000000,0.000000,0.250000,0,0);}
.m39_c01087{transform:matrix(0.160180,-0.001762,0.002750,0.249985,0,0);-ms-transform:matrix(0.160180,-0.001762,0.002750,0.249985,0,0);-webkit-transform:matrix(0.160180,-0.001762,0.002750,0.249985,0,0);}
.ma9_c01087{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.m77_c01087{transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160940,0.000000,0.000000,0.250000,0,0);}
.m8c_c01087{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);}
.mad_c01087{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_c01087{transform:matrix(0.162195,-0.001784,0.002750,0.249985,0,0);-ms-transform:matrix(0.162195,-0.001784,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162195,-0.001784,0.002750,0.249985,0,0);}
.m81_c01087{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);}
.mbb_c01087{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);}
.m53_c01087{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);}
.ma8_c01087{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);}
.m3a_c01087{transform:matrix(0.164225,-0.001806,0.002750,0.249985,0,0);-ms-transform:matrix(0.164225,-0.001806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164225,-0.001806,0.002750,0.249985,0,0);}
.m52_c01087{transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164435,0.000000,0.000000,0.250000,0,0);}
.ma1_c01087{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);}
.m84_c01087{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);}
.mb8_c01087{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);}
.m1b_c01087{transform:matrix(0.166550,-0.001832,0.002750,0.249985,0,0);-ms-transform:matrix(0.166550,-0.001832,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166550,-0.001832,0.002750,0.249985,0,0);}
.maf_c01087{transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);}
.m44_c01087{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);}
.m2f_c01087{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);}
.m24_c01087{transform:matrix(0.169245,-0.001862,0.002750,0.249985,0,0);-ms-transform:matrix(0.169245,-0.001862,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169245,-0.001862,0.002750,0.249985,0,0);}
.mb1_c01087{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);}
.m42_c01087{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);}
.m75_c01087{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);}
.m90_c01087{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);}
.mb3_c01087{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);}
.m20_c01087{transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);-ms-transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171185,-0.001883,0.002750,0.249985,0,0);}
.m85_c01087{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);}
.m50_c01087{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);}
.m31_c01087{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);}
.m6c_c01087{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);}
.ma2_c01087{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);}
.m47_c01087{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);}
.m17_c01087{transform:matrix(0.173759,-0.001911,0.002750,0.249985,0,0);-ms-transform:matrix(0.173759,-0.001911,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173759,-0.001911,0.002750,0.249985,0,0);}
.ma3_c01087{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);}
.ma5_c01087{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);}
.m1f_c01087{transform:matrix(0.174669,-0.001921,0.002750,0.249985,0,0);-ms-transform:matrix(0.174669,-0.001921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174669,-0.001921,0.002750,0.249985,0,0);}
.m7b_c01087{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);}
.m3c_c01087{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);}
.mba_c01087{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);}
.m16_c01087{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);}
.mb7_c01087{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);}
.m7e_c01087{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);}
.m30_c01087{transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);-ms-transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178089,-0.001959,0.002750,0.249985,0,0);}
.m94_c01087{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);}
.m2a_c01087{transform:matrix(0.178464,-0.001963,0.002750,0.249985,0,0);-ms-transform:matrix(0.178464,-0.001963,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178464,-0.001963,0.002750,0.249985,0,0);}
.m34_c01087{transform:matrix(0.178719,-0.001966,0.002750,0.249985,0,0);-ms-transform:matrix(0.178719,-0.001966,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178719,-0.001966,0.002750,0.249985,0,0);}
.m73_c01087{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);}
.m48_c01087{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);}
.m4f_c01087{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);}
.m7c_c01087{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);}
.m9f_c01087{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);}
.m35_c01087{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);}
.ma7_c01087{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);}
.m89_c01087{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);}
.m88_c01087{transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180785,0.000000,0.000000,0.250000,0,0);}
.mac_c01087{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);}
.m8a_c01087{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);}
.m74_c01087{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);}
.m3d_c01087{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);}
.m4c_c01087{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);}
.m66_c01087{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);}
.m25_c01087{transform:matrix(0.183069,-0.002014,0.002750,0.249985,0,0);-ms-transform:matrix(0.183069,-0.002014,0.002750,0.249985,0,0);-webkit-transform:matrix(0.183069,-0.002014,0.002750,0.249985,0,0);}
.m87_c01087{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);}
.m1c_c01087{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);}
.m6d_c01087{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);}
.m86_c01087{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);}
.m15_c01087{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);}
.m76_c01087{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);}
.m68_c01087{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);}
.m78_c01087{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);}
.m1d_c01087{transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);-ms-transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186194,-0.002048,0.002750,0.249985,0,0);}
.mbd_c01087{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);}
.m45_c01087{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);}
.m46_c01087{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);}
.m49_c01087{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);}
.m5c_c01087{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);}
.m27_c01087{transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);-ms-transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187734,-0.002065,0.002750,0.249985,0,0);}
.m8d_c01087{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);}
.ma6_c01087{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);}
.m8f_c01087{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);}
.m83_c01087{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);}
.m26_c01087{transform:matrix(0.189554,-0.002085,0.002750,0.249985,0,0);-ms-transform:matrix(0.189554,-0.002085,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189554,-0.002085,0.002750,0.249985,0,0);}
.m92_c01087{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);}
.m99_c01087{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);}
.m60_c01087{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);}
.m65_c01087{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);}
.m6f_c01087{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);}
.m32_c01087{transform:matrix(0.191823,-0.002110,0.002750,0.249985,0,0);-ms-transform:matrix(0.191823,-0.002110,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191823,-0.002110,0.002750,0.249985,0,0);}
.m37_c01087{transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);-ms-transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192113,-0.002113,0.002750,0.249985,0,0);}
.mb2_c01087{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);}
.m43_c01087{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);}
.m6a_c01087{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);}
.m98_c01087{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_c01087{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);}
.m19_c01087{transform:matrix(0.196713,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196713,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196713,-0.002164,0.002750,0.249985,0,0);}
.m4b_c01087{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);}
.m71_c01087{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);}
.m18_c01087{transform:matrix(0.197193,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197193,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197193,-0.002169,0.002750,0.249985,0,0);}
.m5e_c01087{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);}
.m93_c01087{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);}
.m2b_c01087{transform:matrix(0.197823,-0.002176,0.002750,0.249985,0,0);-ms-transform:matrix(0.197823,-0.002176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197823,-0.002176,0.002750,0.249985,0,0);}
.m3e_c01087{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);}
.m9c_c01087{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);}
.mbc_c01087{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);}
.m4d_c01087{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);}
.m41_c01087{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);}
.mab_c01087{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);}
.m97_c01087{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);}
.m29_c01087{transform:matrix(0.202678,-0.002229,0.002750,0.249985,0,0);-ms-transform:matrix(0.202678,-0.002229,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202678,-0.002229,0.002750,0.249985,0,0);}
.m80_c01087{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);}
.m95_c01087{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);}
.m22_c01087{transform:matrix(0.204533,-0.002250,0.002750,0.249985,0,0);-ms-transform:matrix(0.204533,-0.002250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204533,-0.002250,0.002750,0.249985,0,0);}
.m5d_c01087{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);}
.m2e_c01087{transform:matrix(0.205553,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205553,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205553,-0.002261,0.002750,0.249985,0,0);}
.mb4_c01087{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);}
.m1e_c01087{transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);}
.m91_c01087{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);}
.m69_c01087{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);}
.m12_c01087{transform:matrix(0.207632,-0.002284,0.002750,0.249985,0,0);-ms-transform:matrix(0.207632,-0.002284,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207632,-0.002284,0.002750,0.249985,0,0);}
.ma4_c01087{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);}
.m36_c01087{transform:matrix(0.209952,-0.002309,0.002750,0.249985,0,0);-ms-transform:matrix(0.209952,-0.002309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209952,-0.002309,0.002750,0.249985,0,0);}
.mb5_c01087{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);}
.m5b_c01087{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);}
.m8b_c01087{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);}
.m3f_c01087{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);}
.m67_c01087{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);}
.maa_c01087{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);}
.m5f_c01087{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);}
.m38_c01087{transform:matrix(0.213152,-0.002345,0.002750,0.249985,0,0);-ms-transform:matrix(0.213152,-0.002345,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213152,-0.002345,0.002750,0.249985,0,0);}
.m61_c01087{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);}
.mb0_c01087{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);}
.m7d_c01087{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);}
.m6b_c01087{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);}
.m1a_c01087{transform:matrix(0.215722,-0.002373,0.002750,0.249985,0,0);-ms-transform:matrix(0.215722,-0.002373,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215722,-0.002373,0.002750,0.249985,0,0);}
.m9b_c01087{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);}
.m63_c01087{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);}
.m4_c01087{transform:matrix(0.223231,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223231,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223231,-0.002902,0.003250,0.249979,0,0);}
.m6e_c01087{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);}
.mb6_c01087{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);}
.m70_c01087{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);}
.m64_c01087{transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230335,0.000000,0.000000,0.250000,0,0);}
.m4a_c01087{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);}
.mae_c01087{transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);}
.m2_c01087{transform:matrix(0.253979,-0.003302,0.003250,0.249979,0,0);-ms-transform:matrix(0.253979,-0.003302,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253979,-0.003302,0.003250,0.249979,0,0);}
.m8e_c01087{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);}
.m62_c01087{transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256970,0.000000,0.000000,0.250000,0,0);}
.mc_c01087{transform:matrix(0.258399,-0.002842,0.002750,0.249985,0,0);-ms-transform:matrix(0.258399,-0.002842,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258399,-0.002842,0.002750,0.249985,0,0);}
.m11_c01087{transform:matrix(0.262179,-0.002884,0.002750,0.249985,0,0);-ms-transform:matrix(0.262179,-0.002884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262179,-0.002884,0.002750,0.249985,0,0);}
.m9a_c01087{transform:matrix(0.263705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263705,0.000000,0.000000,0.250000,0,0);}
.m8_c01087{transform:matrix(0.265609,-0.002922,0.002750,0.249985,0,0);-ms-transform:matrix(0.265609,-0.002922,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265609,-0.002922,0.002750,0.249985,0,0);}
.m9_c01087{transform:matrix(0.269424,-0.002964,0.002750,0.249985,0,0);-ms-transform:matrix(0.269424,-0.002964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269424,-0.002964,0.002750,0.249985,0,0);}
.m33_c01087{transform:matrix(0.269984,-0.002970,0.002750,0.249985,0,0);-ms-transform:matrix(0.269984,-0.002970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269984,-0.002970,0.002750,0.249985,0,0);}
.m2d_c01087{transform:matrix(0.270699,-0.002978,0.002750,0.249985,0,0);-ms-transform:matrix(0.270699,-0.002978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270699,-0.002978,0.002750,0.249985,0,0);}
.m3_c01087{transform:matrix(0.278661,-0.003623,0.003250,0.249979,0,0);-ms-transform:matrix(0.278661,-0.003623,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278661,-0.003623,0.003250,0.249979,0,0);}
.md_c01087{transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287820,0.000000,0.000000,0.250000,0,0);}
.m10_c01087{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m1_c01087{transform:matrix(0.309174,-0.004019,0.003250,0.249979,0,0);-ms-transform:matrix(0.309174,-0.004019,0.003250,0.249979,0,0);-webkit-transform:matrix(0.309174,-0.004019,0.003250,0.249979,0,0);}
.m40_c01087{transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);}
.m6_c01087{transform:matrix(0.368703,-0.004056,0.002750,0.249985,0,0);-ms-transform:matrix(0.368703,-0.004056,0.002750,0.249985,0,0);-webkit-transform:matrix(0.368703,-0.004056,0.002750,0.249985,0,0);}
.ma_c01087{transform:matrix(0.371118,-0.004082,0.002750,0.249985,0,0);-ms-transform:matrix(0.371118,-0.004082,0.002750,0.249985,0,0);-webkit-transform:matrix(0.371118,-0.004082,0.002750,0.249985,0,0);}
.m7_c01087{transform:matrix(0.373552,-0.004109,0.002750,0.249985,0,0);-ms-transform:matrix(0.373552,-0.004109,0.002750,0.249985,0,0);-webkit-transform:matrix(0.373552,-0.004109,0.002750,0.249985,0,0);}
.m13_c01087{transform:matrix(0.401561,-0.004417,0.002750,0.249985,0,0);-ms-transform:matrix(0.401561,-0.004417,0.002750,0.249985,0,0);-webkit-transform:matrix(0.401561,-0.004417,0.002750,0.249985,0,0);}
.m72_c01087{transform:matrix(0.413825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413825,0.000000,0.000000,0.250000,0,0);}
.m5_c01087{transform:matrix(0.517429,-0.005692,0.002750,0.249985,0,0);-ms-transform:matrix(0.517429,-0.005692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.517429,-0.005692,0.002750,0.249985,0,0);}
.m0_c01087{transform:matrix(0.523521,-0.006806,0.003250,0.249979,0,0);-ms-transform:matrix(0.523521,-0.006806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.523521,-0.006806,0.003250,0.249979,0,0);}
.m14_c01087{transform:matrix(0.563486,-0.006198,0.002750,0.249985,0,0);-ms-transform:matrix(0.563486,-0.006198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.563486,-0.006198,0.002750,0.249985,0,0);}
.mf_c01087{transform:matrix(0.753945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753945,0.000000,0.000000,0.250000,0,0);}
.m3b_c01087{transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);}
.m23_c01087{transform:matrix(0.853843,-0.009392,0.002750,0.249985,0,0);-ms-transform:matrix(0.853843,-0.009392,0.002750,0.249985,0,0);-webkit-transform:matrix(0.853843,-0.009392,0.002750,0.249985,0,0);}
.me_c01087{transform:matrix(0.982985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982985,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls0_c01087{letter-spacing:0.000000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:0.000000px;}
.fc0_c01087{color:transparent;}
.fs4_c01087{font-size:22.050000px;}
.fsa_c01087{font-size:51.450000px;}
.fsf_c01087{font-size:52.500000px;}
.fs9_c01087{font-size:53.550000px;}
.fs11_c01087{font-size:57.750000px;}
.fsc_c01087{font-size:64.050000px;}
.fsd_c01087{font-size:65.100000px;}
.fsb_c01087{font-size:69.300000px;}
.fse_c01087{font-size:70.350000px;}
.fs5_c01087{font-size:70.354256px;}
.fs10_c01087{font-size:71.400000px;}
.fs7_c01087{font-size:71.404320px;}
.fs6_c01087{font-size:72.454383px;}
.fs8_c01087{font-size:75.600000px;}
.fs1_c01087{font-size:80.856832px;}
.fs3_c01087{font-size:90.305463px;}
.fs2_c01087{font-size:91.355527px;}
.fs0_c01087{font-size:208.967656px;}
.y0_c01087{bottom:0.000000px;}
.y47_c01087{bottom:169.543500px;}
.y46_c01087{bottom:224.719500px;}
.y45_c01087{bottom:245.941500px;}
.y44_c01087{bottom:283.105500px;}
.y42_c01087{bottom:318.709500px;}
.y41_c01087{bottom:342.868500px;}
.y40_c01087{bottom:365.542500px;}
.y3f_c01087{bottom:388.680000px;}
.y3e_c01087{bottom:411.676500px;}
.y43_c01087{bottom:434.475000px;}
.y3d_c01087{bottom:466.555500px;}
.y3c_c01087{bottom:487.863000px;}
.y3b_c01087{bottom:506.290500px;}
.y3a_c01087{bottom:511.380000px;}
.y39_c01087{bottom:541.488000px;}
.y2b_c01087{bottom:564.026235px;}
.y2c_c01087{bottom:564.135594px;}
.y2d_c01087{bottom:564.407175px;}
.y2e_c01087{bottom:564.730198px;}
.y2f_c01087{bottom:565.086306px;}
.y30_c01087{bottom:565.235403px;}
.y31_c01087{bottom:565.598610px;}
.y32_c01087{bottom:565.757942px;}
.y33_c01087{bottom:566.111046px;}
.y34_c01087{bottom:566.230623px;}
.y35_c01087{bottom:566.587705px;}
.y36_c01087{bottom:566.884858px;}
.y37_c01087{bottom:567.303934px;}
.y38_c01087{bottom:567.525458px;}
.y21_c01087{bottom:585.902878px;}
.y22_c01087{bottom:586.458720px;}
.y23_c01087{bottom:587.201392px;}
.y24_c01087{bottom:587.617251px;}
.y25_c01087{bottom:588.275419px;}
.y26_c01087{bottom:588.640997px;}
.y27_c01087{bottom:589.175139px;}
.y28_c01087{bottom:589.830750px;}
.y29_c01087{bottom:590.213655px;}
.y2a_c01087{bottom:591.050371px;}
.y18_c01087{bottom:609.931500px;}
.y19_c01087{bottom:610.252771px;}
.y1a_c01087{bottom:610.909175px;}
.y1b_c01087{bottom:611.360004px;}
.y1c_c01087{bottom:611.752803px;}
.y1d_c01087{bottom:612.970552px;}
.y1e_c01087{bottom:613.368516px;}
.y1f_c01087{bottom:614.140271px;}
.y20_c01087{bottom:614.556664px;}
.yf_c01087{bottom:631.918500px;}
.y10_c01087{bottom:632.553420px;}
.y11_c01087{bottom:632.870434px;}
.y12_c01087{bottom:633.850666px;}
.y13_c01087{bottom:634.820289px;}
.y14_c01087{bottom:635.221305px;}
.y15_c01087{bottom:635.704837px;}
.y16_c01087{bottom:636.036488px;}
.y17_c01087{bottom:636.451050px;}
.ye_c01087{bottom:661.488000px;}
.yc_c01087{bottom:676.752083px;}
.yd_c01087{bottom:677.191145px;}
.y6_c01087{bottom:708.546000px;}
.y7_c01087{bottom:709.338809px;}
.y8_c01087{bottom:710.532650px;}
.y9_c01087{bottom:711.137540px;}
.ya_c01087{bottom:712.985424px;}
.yb_c01087{bottom:713.254803px;}
.y5_c01087{bottom:874.111170px;}
.y3_c01087{bottom:874.111768px;}
.y4_c01087{bottom:874.111809px;}
.y1_c01087{bottom:914.226000px;}
.y2_c01087{bottom:916.925561px;}
.h6_c01087{height:22.050000px;}
.hc_c01087{height:51.450000px;}
.h11_c01087{height:52.500000px;}
.hb_c01087{height:53.550000px;}
.h13_c01087{height:57.750000px;}
.he_c01087{height:64.050000px;}
.hf_c01087{height:65.100000px;}
.hd_c01087{height:69.300000px;}
.h10_c01087{height:70.350000px;}
.h7_c01087{height:70.354256px;}
.h12_c01087{height:71.400000px;}
.h9_c01087{height:71.404320px;}
.h8_c01087{height:72.454383px;}
.ha_c01087{height:75.600000px;}
.h3_c01087{height:80.856832px;}
.h5_c01087{height:90.305463px;}
.h4_c01087{height:91.355527px;}
.h2_c01087{height:208.967656px;}
.h0_c01087{height:1008.450000px;}
.h1_c01087{height:1008.750000px;}
.w0_c01087{width:711.720000px;}
.w1_c01087{width:711.750000px;}
.x0_c01087{left:0.000000px;}
.x21_c01087{left:63.087631px;}
.x2a_c01087{left:78.939461px;}
.x48_c01087{left:105.030000px;}
.x6c_c01087{left:108.540000px;}
.x1_c01087{left:116.517000px;}
.x22_c01087{left:118.664742px;}
.x5_c01087{left:119.758500px;}
.x77_c01087{left:121.230000px;}
.x10_c01087{left:138.117000px;}
.x35_c01087{left:139.320000px;}
.x87_c01087{left:142.830000px;}
.x61_c01087{left:145.530000px;}
.x78_c01087{left:148.770000px;}
.x43_c01087{left:150.930000px;}
.x58_c01087{left:156.060000px;}
.x19_c01087{left:159.391500px;}
.x2b_c01087{left:163.952706px;}
.x37_c01087{left:169.020000px;}
.x72_c01087{left:172.260000px;}
.x7f_c01087{left:174.960000px;}
.x36_c01087{left:180.360000px;}
.x4f_c01087{left:181.980000px;}
.x88_c01087{left:186.840000px;}
.x1a_c01087{left:188.598000px;}
.x6_c01087{left:191.832000px;}
.x23_c01087{left:192.863050px;}
.x11_c01087{left:195.837000px;}
.x40_c01087{left:197.100000px;}
.x68_c01087{left:203.850000px;}
.x38_c01087{left:207.090000px;}
.x44_c01087{left:211.410000px;}
.x6d_c01087{left:213.300000px;}
.x2c_c01087{left:214.737434px;}
.x73_c01087{left:216.000000px;}
.x12_c01087{left:224.656500px;}
.x39_c01087{left:228.690000px;}
.x59_c01087{left:230.310000px;}
.x24_c01087{left:234.487012px;}
.x2d_c01087{left:236.065374px;}
.x50_c01087{left:238.680000px;}
.x45_c01087{left:242.190000px;}
.x74_c01087{left:244.620000px;}
.x1b_c01087{left:248.271000px;}
.x89_c01087{left:252.720000px;}
.x41_c01087{left:255.690000px;}
.x5a_c01087{left:256.770000px;}
.xb_c01087{left:258.132432px;}
.x46_c01087{left:260.010000px;}
.x3a_c01087{left:261.900000px;}
.x62_c01087{left:262.980000px;}
.x80_c01087{left:265.950000px;}
.x51_c01087{left:269.460000px;}
.x79_c01087{left:274.320000px;}
.x69_c01087{left:277.020000px;}
.x49_c01087{left:278.910000px;}
.xc_c01087{left:281.272402px;}
.x6e_c01087{left:284.310000px;}
.x2e_c01087{left:287.904651px;}
.x1c_c01087{left:289.255500px;}
.x63_c01087{left:294.840000px;}
.x5b_c01087{left:298.620000px;}
.x7_c01087{left:300.363000px;}
.x7a_c01087{left:302.400000px;}
.x3b_c01087{left:307.800000px;}
.x2f_c01087{left:310.572141px;}
.x13_c01087{left:313.768500px;}
.x47_c01087{left:318.330000px;}
.x4a_c01087{left:320.220000px;}
.x81_c01087{left:321.840000px;}
.x2_c01087{left:324.175500px;}
.xd_c01087{left:330.210000px;}
.x64_c01087{left:335.340000px;}
.x25_c01087{left:336.828634px;}
.x3_c01087{left:338.868967px;}
.x3c_c01087{left:342.360000px;}
.x52_c01087{left:345.060000px;}
.xe_c01087{left:347.490000px;}
.x75_c01087{left:348.840000px;}
.x8_c01087{left:355.353000px;}
.x82_c01087{left:359.910000px;}
.x30_c01087{left:361.083869px;}
.x6f_c01087{left:366.660000px;}
.x42_c01087{left:368.820000px;}
.x4_c01087{left:376.672364px;}
.x31_c01087{left:378.091611px;}
.x83_c01087{left:379.350000px;}
.x76_c01087{left:380.970000px;}
.x6a_c01087{left:382.320000px;}
.x7b_c01087{left:383.400000px;}
.x3d_c01087{left:388.260000px;}
.x26_c01087{left:390.296728px;}
.x5c_c01087{left:394.470000px;}
.x14_c01087{left:401.916000px;}
.xf_c01087{left:405.270000px;}
.x3e_c01087{left:406.350000px;}
.x6b_c01087{left:408.510000px;}
.x4b_c01087{left:411.480000px;}
.x53_c01087{left:422.280000px;}
.x65_c01087{left:424.170000px;}
.x5d_c01087{left:426.330000px;}
.x32_c01087{left:429.101355px;}
.x3f_c01087{left:430.110000px;}
.x1d_c01087{left:435.669000px;}
.x15_c01087{left:438.372000px;}
.x66_c01087{left:449.550000px;}
.x27_c01087{left:455.898454px;}
.x4c_c01087{left:459.540000px;}
.x7c_c01087{left:464.940000px;}
.x1e_c01087{left:471.847500px;}
.x5e_c01087{left:478.980000px;}
.x16_c01087{left:482.329500px;}
.x84_c01087{left:484.110000px;}
.x28_c01087{left:494.253884px;}
.x5f_c01087{left:500.850000px;}
.x54_c01087{left:503.010000px;}
.x67_c01087{left:504.360000px;}
.x70_c01087{left:505.980000px;}
.x17_c01087{left:512.479500px;}
.x9_c01087{left:523.342500px;}
.x4d_c01087{left:524.880000px;}
.x85_c01087{left:528.120000px;}
.x7d_c01087{left:529.740000px;}
.x33_c01087{left:531.444860px;}
.x1f_c01087{left:542.007000px;}
.x55_c01087{left:543.510000px;}
.xa_c01087{left:547.831500px;}
.x18_c01087{left:550.167000px;}
.x86_c01087{left:554.310000px;}
.x4e_c01087{left:556.740000px;}
.x71_c01087{left:558.360000px;}
.x34_c01087{left:563.039246px;}
.x60_c01087{left:567.540000px;}
.x56_c01087{left:569.970000px;}
.x7e_c01087{left:572.940000px;}
.x29_c01087{left:577.956308px;}
.x20_c01087{left:579.861000px;}
.x57_c01087{left:589.950000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ws0_c01087{word-spacing:0.000000pt;}
.fs4_c01087{font-size:19.600000pt;}
.fsa_c01087{font-size:45.733333pt;}
.fsf_c01087{font-size:46.666667pt;}
.fs9_c01087{font-size:47.600000pt;}
.fs11_c01087{font-size:51.333333pt;}
.fsc_c01087{font-size:56.933333pt;}
.fsd_c01087{font-size:57.866667pt;}
.fsb_c01087{font-size:61.600000pt;}
.fse_c01087{font-size:62.533333pt;}
.fs5_c01087{font-size:62.537116pt;}
.fs10_c01087{font-size:63.466667pt;}
.fs7_c01087{font-size:63.470506pt;}
.fs6_c01087{font-size:64.403896pt;}
.fs8_c01087{font-size:67.200000pt;}
.fs1_c01087{font-size:71.872739pt;}
.fs3_c01087{font-size:80.271523pt;}
.fs2_c01087{font-size:81.204912pt;}
.fs0_c01087{font-size:185.749027pt;}
.y0_c01087{bottom:0.000000pt;}
.y47_c01087{bottom:150.705333pt;}
.y46_c01087{bottom:199.750667pt;}
.y45_c01087{bottom:218.614667pt;}
.y44_c01087{bottom:251.649333pt;}
.y42_c01087{bottom:283.297333pt;}
.y41_c01087{bottom:304.772000pt;}
.y40_c01087{bottom:324.926667pt;}
.y3f_c01087{bottom:345.493333pt;}
.y3e_c01087{bottom:365.934667pt;}
.y43_c01087{bottom:386.200000pt;}
.y3d_c01087{bottom:414.716000pt;}
.y3c_c01087{bottom:433.656000pt;}
.y3b_c01087{bottom:450.036000pt;}
.y3a_c01087{bottom:454.560000pt;}
.y39_c01087{bottom:481.322667pt;}
.y2b_c01087{bottom:501.356653pt;}
.y2c_c01087{bottom:501.453861pt;}
.y2d_c01087{bottom:501.695267pt;}
.y2e_c01087{bottom:501.982399pt;}
.y2f_c01087{bottom:502.298939pt;}
.y30_c01087{bottom:502.431469pt;}
.y31_c01087{bottom:502.754320pt;}
.y32_c01087{bottom:502.895948pt;}
.y33_c01087{bottom:503.209819pt;}
.y34_c01087{bottom:503.316109pt;}
.y35_c01087{bottom:503.633516pt;}
.y36_c01087{bottom:503.897652pt;}
.y37_c01087{bottom:504.270164pt;}
.y38_c01087{bottom:504.467073pt;}
.y21_c01087{bottom:520.802559pt;}
.y22_c01087{bottom:521.296640pt;}
.y23_c01087{bottom:521.956793pt;}
.y24_c01087{bottom:522.326445pt;}
.y25_c01087{bottom:522.911484pt;}
.y26_c01087{bottom:523.236441pt;}
.y27_c01087{bottom:523.711235pt;}
.y28_c01087{bottom:524.294000pt;}
.y29_c01087{bottom:524.634360pt;}
.y2a_c01087{bottom:525.378108pt;}
.y18_c01087{bottom:542.161333pt;}
.y19_c01087{bottom:542.446908pt;}
.y1a_c01087{bottom:543.030377pt;}
.y1b_c01087{bottom:543.431115pt;}
.y1c_c01087{bottom:543.780269pt;}
.y1d_c01087{bottom:544.862713pt;}
.y1e_c01087{bottom:545.216459pt;}
.y1f_c01087{bottom:545.902463pt;}
.y20_c01087{bottom:546.272591pt;}
.yf_c01087{bottom:561.705333pt;}
.y10_c01087{bottom:562.269707pt;}
.y11_c01087{bottom:562.551497pt;}
.y12_c01087{bottom:563.422815pt;}
.y13_c01087{bottom:564.284701pt;}
.y14_c01087{bottom:564.641160pt;}
.y15_c01087{bottom:565.070967pt;}
.y16_c01087{bottom:565.365767pt;}
.y17_c01087{bottom:565.734267pt;}
.ye_c01087{bottom:587.989333pt;}
.yc_c01087{bottom:601.557407pt;}
.yd_c01087{bottom:601.947684pt;}
.y6_c01087{bottom:629.818667pt;}
.y7_c01087{bottom:630.523385pt;}
.y8_c01087{bottom:631.584577pt;}
.y9_c01087{bottom:632.122257pt;}
.ya_c01087{bottom:633.764821pt;}
.yb_c01087{bottom:634.004269pt;}
.y5_c01087{bottom:776.987707pt;}
.y3_c01087{bottom:776.988239pt;}
.y4_c01087{bottom:776.988275pt;}
.y1_c01087{bottom:812.645333pt;}
.y2_c01087{bottom:815.044943pt;}
.h6_c01087{height:19.600000pt;}
.hc_c01087{height:45.733333pt;}
.h11_c01087{height:46.666667pt;}
.hb_c01087{height:47.600000pt;}
.h13_c01087{height:51.333333pt;}
.he_c01087{height:56.933333pt;}
.hf_c01087{height:57.866667pt;}
.hd_c01087{height:61.600000pt;}
.h10_c01087{height:62.533333pt;}
.h7_c01087{height:62.537116pt;}
.h12_c01087{height:63.466667pt;}
.h9_c01087{height:63.470506pt;}
.h8_c01087{height:64.403896pt;}
.ha_c01087{height:67.200000pt;}
.h3_c01087{height:71.872739pt;}
.h5_c01087{height:80.271523pt;}
.h4_c01087{height:81.204912pt;}
.h2_c01087{height:185.749027pt;}
.h0_c01087{height:896.400000pt;}
.h1_c01087{height:896.666667pt;}
.w0_c01087{width:632.640000pt;}
.w1_c01087{width:632.666667pt;}
.x0_c01087{left:0.000000pt;}
.x21_c01087{left:56.077895pt;}
.x2a_c01087{left:70.168409pt;}
.x48_c01087{left:93.360000pt;}
.x6c_c01087{left:96.480000pt;}
.x1_c01087{left:103.570667pt;}
.x22_c01087{left:105.479771pt;}
.x5_c01087{left:106.452000pt;}
.x77_c01087{left:107.760000pt;}
.x10_c01087{left:122.770667pt;}
.x35_c01087{left:123.840000pt;}
.x87_c01087{left:126.960000pt;}
.x61_c01087{left:129.360000pt;}
.x78_c01087{left:132.240000pt;}
.x43_c01087{left:134.160000pt;}
.x58_c01087{left:138.720000pt;}
.x19_c01087{left:141.681333pt;}
.x2b_c01087{left:145.735739pt;}
.x37_c01087{left:150.240000pt;}
.x72_c01087{left:153.120000pt;}
.x7f_c01087{left:155.520000pt;}
.x36_c01087{left:160.320000pt;}
.x4f_c01087{left:161.760000pt;}
.x88_c01087{left:166.080000pt;}
.x1a_c01087{left:167.642667pt;}
.x6_c01087{left:170.517333pt;}
.x23_c01087{left:171.433823pt;}
.x11_c01087{left:174.077333pt;}
.x40_c01087{left:175.200000pt;}
.x68_c01087{left:181.200000pt;}
.x38_c01087{left:184.080000pt;}
.x44_c01087{left:187.920000pt;}
.x6d_c01087{left:189.600000pt;}
.x2c_c01087{left:190.877719pt;}
.x73_c01087{left:192.000000pt;}
.x12_c01087{left:199.694667pt;}
.x39_c01087{left:203.280000pt;}
.x59_c01087{left:204.720000pt;}
.x24_c01087{left:208.432900pt;}
.x2d_c01087{left:209.835888pt;}
.x50_c01087{left:212.160000pt;}
.x45_c01087{left:215.280000pt;}
.x74_c01087{left:217.440000pt;}
.x1b_c01087{left:220.685333pt;}
.x89_c01087{left:224.640000pt;}
.x41_c01087{left:227.280000pt;}
.x5a_c01087{left:228.240000pt;}
.xb_c01087{left:229.451051pt;}
.x46_c01087{left:231.120000pt;}
.x3a_c01087{left:232.800000pt;}
.x62_c01087{left:233.760000pt;}
.x80_c01087{left:236.400000pt;}
.x51_c01087{left:239.520000pt;}
.x79_c01087{left:243.840000pt;}
.x69_c01087{left:246.240000pt;}
.x49_c01087{left:247.920000pt;}
.xc_c01087{left:250.019913pt;}
.x6e_c01087{left:252.720000pt;}
.x2e_c01087{left:255.915245pt;}
.x1c_c01087{left:257.116000pt;}
.x63_c01087{left:262.080000pt;}
.x5b_c01087{left:265.440000pt;}
.x7_c01087{left:266.989333pt;}
.x7a_c01087{left:268.800000pt;}
.x3b_c01087{left:273.600000pt;}
.x2f_c01087{left:276.064125pt;}
.x13_c01087{left:278.905333pt;}
.x47_c01087{left:282.960000pt;}
.x4a_c01087{left:284.640000pt;}
.x81_c01087{left:286.080000pt;}
.x2_c01087{left:288.156000pt;}
.xd_c01087{left:293.520000pt;}
.x64_c01087{left:298.080000pt;}
.x25_c01087{left:299.403231pt;}
.x3_c01087{left:301.216860pt;}
.x3c_c01087{left:304.320000pt;}
.x52_c01087{left:306.720000pt;}
.xe_c01087{left:308.880000pt;}
.x75_c01087{left:310.080000pt;}
.x8_c01087{left:315.869333pt;}
.x82_c01087{left:319.920000pt;}
.x30_c01087{left:320.963439pt;}
.x6f_c01087{left:325.920000pt;}
.x42_c01087{left:327.840000pt;}
.x4_c01087{left:334.819879pt;}
.x31_c01087{left:336.081432pt;}
.x83_c01087{left:337.200000pt;}
.x76_c01087{left:338.640000pt;}
.x6a_c01087{left:339.840000pt;}
.x7b_c01087{left:340.800000pt;}
.x3d_c01087{left:345.120000pt;}
.x26_c01087{left:346.930425pt;}
.x5c_c01087{left:350.640000pt;}
.x14_c01087{left:357.258667pt;}
.xf_c01087{left:360.240000pt;}
.x3e_c01087{left:361.200000pt;}
.x6b_c01087{left:363.120000pt;}
.x4b_c01087{left:365.760000pt;}
.x53_c01087{left:375.360000pt;}
.x65_c01087{left:377.040000pt;}
.x5d_c01087{left:378.960000pt;}
.x32_c01087{left:381.423427pt;}
.x3f_c01087{left:382.320000pt;}
.x1d_c01087{left:387.261333pt;}
.x15_c01087{left:389.664000pt;}
.x66_c01087{left:399.600000pt;}
.x27_c01087{left:405.243071pt;}
.x4c_c01087{left:408.480000pt;}
.x7c_c01087{left:413.280000pt;}
.x1e_c01087{left:419.420000pt;}
.x5e_c01087{left:425.760000pt;}
.x16_c01087{left:428.737333pt;}
.x84_c01087{left:430.320000pt;}
.x28_c01087{left:439.336785pt;}
.x5f_c01087{left:445.200000pt;}
.x54_c01087{left:447.120000pt;}
.x67_c01087{left:448.320000pt;}
.x70_c01087{left:449.760000pt;}
.x17_c01087{left:455.537333pt;}
.x9_c01087{left:465.193333pt;}
.x4d_c01087{left:466.560000pt;}
.x85_c01087{left:469.440000pt;}
.x7d_c01087{left:470.880000pt;}
.x33_c01087{left:472.395431pt;}
.x1f_c01087{left:481.784000pt;}
.x55_c01087{left:483.120000pt;}
.xa_c01087{left:486.961333pt;}
.x18_c01087{left:489.037333pt;}
.x86_c01087{left:492.720000pt;}
.x4e_c01087{left:494.880000pt;}
.x71_c01087{left:496.320000pt;}
.x34_c01087{left:500.479329pt;}
.x60_c01087{left:504.480000pt;}
.x56_c01087{left:506.640000pt;}
.x7e_c01087{left:509.280000pt;}
.x29_c01087{left:513.738940pt;}
.x20_c01087{left:515.432000pt;}
.x57_c01087{left:524.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_c01088 {
    display:none;
  }
  .loading-indicator_c01088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01088 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01088 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01088" -> "#page-container .classname_c01088")
 */
.pf_c01088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01088 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01088 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01088 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01088 {overflow:visible;}
  }
}
.c_c01088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01088 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01088:after { /* webkit #35443 */
  content: '';
}
.t_c01088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01088 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01088 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01088 { /* info for Javascript */
  display:none;
}
.l_c01088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.000000;font-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_c01088{transform:matrix(0.088889,-0.001067,0.003000,0.249982,0,0);-ms-transform:matrix(0.088889,-0.001067,0.003000,0.249982,0,0);-webkit-transform:matrix(0.088889,-0.001067,0.003000,0.249982,0,0);}
.m48_c01088{transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);}
.m9f_c01088{transform:matrix(0.096763,-0.001161,0.003000,0.249982,0,0);-ms-transform:matrix(0.096763,-0.001161,0.003000,0.249982,0,0);-webkit-transform:matrix(0.096763,-0.001161,0.003000,0.249982,0,0);}
.m44_c01088{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);}
.m14_c01088{transform:matrix(0.118320,-0.001893,0.003999,0.249968,0,0);-ms-transform:matrix(0.118320,-0.001893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.118320,-0.001893,0.003999,0.249968,0,0);}
.mc4_c01088{transform:matrix(0.130994,-0.001703,0.003250,0.249979,0,0);-ms-transform:matrix(0.130994,-0.001703,0.003250,0.249979,0,0);-webkit-transform:matrix(0.130994,-0.001703,0.003250,0.249979,0,0);}
.m9e_c01088{transform:matrix(0.132155,-0.001586,0.003000,0.249982,0,0);-ms-transform:matrix(0.132155,-0.001586,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132155,-0.001586,0.003000,0.249982,0,0);}
.m108_c01088{transform:matrix(0.138261,-0.001936,0.003500,0.249976,0,0);-ms-transform:matrix(0.138261,-0.001936,0.003500,0.249976,0,0);-webkit-transform:matrix(0.138261,-0.001936,0.003500,0.249976,0,0);}
.m99_c01088{transform:matrix(0.141470,-0.001698,0.003000,0.249982,0,0);-ms-transform:matrix(0.141470,-0.001698,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141470,-0.001698,0.003000,0.249982,0,0);}
.m71_c01088{transform:matrix(0.145390,-0.001745,0.003000,0.249982,0,0);-ms-transform:matrix(0.145390,-0.001745,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145390,-0.001745,0.003000,0.249982,0,0);}
.m91_c01088{transform:matrix(0.145879,-0.001751,0.003000,0.249982,0,0);-ms-transform:matrix(0.145879,-0.001751,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145879,-0.001751,0.003000,0.249982,0,0);}
.m5d_c01088{transform:matrix(0.145974,-0.001752,0.003000,0.249982,0,0);-ms-transform:matrix(0.145974,-0.001752,0.003000,0.249982,0,0);-webkit-transform:matrix(0.145974,-0.001752,0.003000,0.249982,0,0);}
.m82_c01088{transform:matrix(0.146739,-0.001761,0.003000,0.249982,0,0);-ms-transform:matrix(0.146739,-0.001761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.146739,-0.001761,0.003000,0.249982,0,0);}
.m89_c01088{transform:matrix(0.147529,-0.001770,0.003000,0.249982,0,0);-ms-transform:matrix(0.147529,-0.001770,0.003000,0.249982,0,0);-webkit-transform:matrix(0.147529,-0.001770,0.003000,0.249982,0,0);}
.m81_c01088{transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);-ms-transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);-webkit-transform:matrix(0.147949,-0.001775,0.003000,0.249982,0,0);}
.m53_c01088{transform:matrix(0.148689,-0.001784,0.003000,0.249982,0,0);-ms-transform:matrix(0.148689,-0.001784,0.003000,0.249982,0,0);-webkit-transform:matrix(0.148689,-0.001784,0.003000,0.249982,0,0);}
.m65_c01088{transform:matrix(0.150454,-0.001805,0.003000,0.249982,0,0);-ms-transform:matrix(0.150454,-0.001805,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150454,-0.001805,0.003000,0.249982,0,0);}
.m64_c01088{transform:matrix(0.150494,-0.001806,0.003000,0.249982,0,0);-ms-transform:matrix(0.150494,-0.001806,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150494,-0.001806,0.003000,0.249982,0,0);}
.m79_c01088{transform:matrix(0.151734,-0.001821,0.003000,0.249982,0,0);-ms-transform:matrix(0.151734,-0.001821,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151734,-0.001821,0.003000,0.249982,0,0);}
.m92_c01088{transform:matrix(0.152199,-0.001826,0.003000,0.249982,0,0);-ms-transform:matrix(0.152199,-0.001826,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152199,-0.001826,0.003000,0.249982,0,0);}
.m5b_c01088{transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);-ms-transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152909,-0.001835,0.003000,0.249982,0,0);}
.m72_c01088{transform:matrix(0.153644,-0.001844,0.003000,0.249982,0,0);-ms-transform:matrix(0.153644,-0.001844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153644,-0.001844,0.003000,0.249982,0,0);}
.m25_c01088{transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153955,0.000000,0.000000,0.250000,0,0);}
.m59_c01088{transform:matrix(0.154149,-0.001850,0.003000,0.249982,0,0);-ms-transform:matrix(0.154149,-0.001850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154149,-0.001850,0.003000,0.249982,0,0);}
.m93_c01088{transform:matrix(0.155224,-0.001863,0.003000,0.249982,0,0);-ms-transform:matrix(0.155224,-0.001863,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155224,-0.001863,0.003000,0.249982,0,0);}
.m9a_c01088{transform:matrix(0.156824,-0.001882,0.003000,0.249982,0,0);-ms-transform:matrix(0.156824,-0.001882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156824,-0.001882,0.003000,0.249982,0,0);}
.mb5_c01088{transform:matrix(0.157547,-0.002048,0.003250,0.249979,0,0);-ms-transform:matrix(0.157547,-0.002048,0.003250,0.249979,0,0);-webkit-transform:matrix(0.157547,-0.002048,0.003250,0.249979,0,0);}
.mee_c01088{transform:matrix(0.157612,-0.002679,0.004249,0.249964,0,0);-ms-transform:matrix(0.157612,-0.002679,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157612,-0.002679,0.004249,0.249964,0,0);}
.m54_c01088{transform:matrix(0.158529,-0.001902,0.003000,0.249982,0,0);-ms-transform:matrix(0.158529,-0.001902,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158529,-0.001902,0.003000,0.249982,0,0);}
.m18_c01088{transform:matrix(0.158875,-0.002542,0.003999,0.249968,0,0);-ms-transform:matrix(0.158875,-0.002542,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158875,-0.002542,0.003999,0.249968,0,0);}
.m58_c01088{transform:matrix(0.159564,-0.001915,0.003000,0.249982,0,0);-ms-transform:matrix(0.159564,-0.001915,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159564,-0.001915,0.003000,0.249982,0,0);}
.mc7_c01088{transform:matrix(0.159776,-0.002077,0.003250,0.249979,0,0);-ms-transform:matrix(0.159776,-0.002077,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159776,-0.002077,0.003250,0.249979,0,0);}
.m40_c01088{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);}
.mb3_c01088{transform:matrix(0.160111,-0.002081,0.003250,0.249979,0,0);-ms-transform:matrix(0.160111,-0.002081,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160111,-0.002081,0.003250,0.249979,0,0);}
.mce_c01088{transform:matrix(0.160116,-0.002082,0.003250,0.249979,0,0);-ms-transform:matrix(0.160116,-0.002082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.160116,-0.002082,0.003250,0.249979,0,0);}
.m80_c01088{transform:matrix(0.160658,-0.001928,0.003000,0.249982,0,0);-ms-transform:matrix(0.160658,-0.001928,0.003000,0.249982,0,0);-webkit-transform:matrix(0.160658,-0.001928,0.003000,0.249982,0,0);}
.m97_c01088{transform:matrix(0.161093,-0.001933,0.003000,0.249982,0,0);-ms-transform:matrix(0.161093,-0.001933,0.003000,0.249982,0,0);-webkit-transform:matrix(0.161093,-0.001933,0.003000,0.249982,0,0);}
.mfc_c01088{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);}
.md0_c01088{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);}
.mbb_c01088{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);}
.m8_c01088{transform:matrix(0.163861,-0.002786,0.004249,0.249964,0,0);-ms-transform:matrix(0.163861,-0.002786,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163861,-0.002786,0.004249,0.249964,0,0);}
.m3_c01088{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);}
.mbd_c01088{transform:matrix(0.164781,-0.002142,0.003250,0.249979,0,0);-ms-transform:matrix(0.164781,-0.002142,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164781,-0.002142,0.003250,0.249979,0,0);}
.m88_c01088{transform:matrix(0.165018,-0.001980,0.003000,0.249982,0,0);-ms-transform:matrix(0.165018,-0.001980,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165018,-0.001980,0.003000,0.249982,0,0);}
.m2a_c01088{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);}
.m57_c01088{transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);-ms-transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165753,-0.001989,0.003000,0.249982,0,0);}
.m51_c01088{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);}
.m22_c01088{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);}
.me3_c01088{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);}
.m83_c01088{transform:matrix(0.166868,-0.002002,0.003000,0.249982,0,0);-ms-transform:matrix(0.166868,-0.002002,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166868,-0.002002,0.003000,0.249982,0,0);}
.mec_c01088{transform:matrix(0.167521,-0.002848,0.004249,0.249964,0,0);-ms-transform:matrix(0.167521,-0.002848,0.004249,0.249964,0,0);-webkit-transform:matrix(0.167521,-0.002848,0.004249,0.249964,0,0);}
.m7e_c01088{transform:matrix(0.168093,-0.002017,0.003000,0.249982,0,0);-ms-transform:matrix(0.168093,-0.002017,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168093,-0.002017,0.003000,0.249982,0,0);}
.m90_c01088{transform:matrix(0.168198,-0.002018,0.003000,0.249982,0,0);-ms-transform:matrix(0.168198,-0.002018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168198,-0.002018,0.003000,0.249982,0,0);}
.m66_c01088{transform:matrix(0.168888,-0.002027,0.003000,0.249982,0,0);-ms-transform:matrix(0.168888,-0.002027,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168888,-0.002027,0.003000,0.249982,0,0);}
.med_c01088{transform:matrix(0.169016,-0.002873,0.004249,0.249964,0,0);-ms-transform:matrix(0.169016,-0.002873,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169016,-0.002873,0.004249,0.249964,0,0);}
.m9b_c01088{transform:matrix(0.169063,-0.002029,0.003000,0.249982,0,0);-ms-transform:matrix(0.169063,-0.002029,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169063,-0.002029,0.003000,0.249982,0,0);}
.mf_c01088{transform:matrix(0.169108,-0.002706,0.003999,0.249968,0,0);-ms-transform:matrix(0.169108,-0.002706,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169108,-0.002706,0.003999,0.249968,0,0);}
.m5a_c01088{transform:matrix(0.169958,-0.002039,0.003000,0.249982,0,0);-ms-transform:matrix(0.169958,-0.002039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169958,-0.002039,0.003000,0.249982,0,0);}
.m2f_c01088{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);}
.mb1_c01088{transform:matrix(0.170276,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170276,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170276,-0.002214,0.003250,0.249979,0,0);}
.ma6_c01088{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);}
.m1c_c01088{transform:matrix(0.170718,-0.002731,0.003999,0.249968,0,0);-ms-transform:matrix(0.170718,-0.002731,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170718,-0.002731,0.003999,0.249968,0,0);}
.m5c_c01088{transform:matrix(0.170853,-0.002050,0.003000,0.249982,0,0);-ms-transform:matrix(0.170853,-0.002050,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170853,-0.002050,0.003000,0.249982,0,0);}
.m1e_c01088{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);}
.m6e_c01088{transform:matrix(0.171063,-0.002053,0.003000,0.249982,0,0);-ms-transform:matrix(0.171063,-0.002053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171063,-0.002053,0.003000,0.249982,0,0);}
.m52_c01088{transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-ms-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171478,-0.002058,0.003000,0.249982,0,0);}
.me7_c01088{transform:matrix(0.171845,-0.002234,0.003250,0.249979,0,0);-ms-transform:matrix(0.171845,-0.002234,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171845,-0.002234,0.003250,0.249979,0,0);}
.md2_c01088{transform:matrix(0.172655,-0.002245,0.003250,0.249979,0,0);-ms-transform:matrix(0.172655,-0.002245,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172655,-0.002245,0.003250,0.249979,0,0);}
.m6_c01088{transform:matrix(0.172845,-0.002938,0.004249,0.249964,0,0);-ms-transform:matrix(0.172845,-0.002938,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172845,-0.002938,0.004249,0.249964,0,0);}
.md6_c01088{transform:matrix(0.172900,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172900,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172900,-0.002248,0.003250,0.249979,0,0);}
.mdc_c01088{transform:matrix(0.172945,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172945,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172945,-0.002248,0.003250,0.249979,0,0);}
.m28_c01088{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);}
.mda_c01088{transform:matrix(0.173455,-0.002255,0.003250,0.249979,0,0);-ms-transform:matrix(0.173455,-0.002255,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173455,-0.002255,0.003250,0.249979,0,0);}
.mac_c01088{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);}
.m16_c01088{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);}
.md4_c01088{transform:matrix(0.174280,-0.002266,0.003250,0.249979,0,0);-ms-transform:matrix(0.174280,-0.002266,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174280,-0.002266,0.003250,0.249979,0,0);}
.m9_c01088{transform:matrix(0.174345,-0.002964,0.004249,0.249964,0,0);-ms-transform:matrix(0.174345,-0.002964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174345,-0.002964,0.004249,0.249964,0,0);}
.mc2_c01088{transform:matrix(0.174365,-0.002267,0.003250,0.249979,0,0);-ms-transform:matrix(0.174365,-0.002267,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174365,-0.002267,0.003250,0.249979,0,0);}
.mf8_c01088{transform:matrix(0.174402,-0.002093,0.003000,0.249982,0,0);-ms-transform:matrix(0.174402,-0.002093,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174402,-0.002093,0.003000,0.249982,0,0);}
.m55_c01088{transform:matrix(0.174647,-0.002096,0.003000,0.249982,0,0);-ms-transform:matrix(0.174647,-0.002096,0.003000,0.249982,0,0);-webkit-transform:matrix(0.174647,-0.002096,0.003000,0.249982,0,0);}
.md5_c01088{transform:matrix(0.174865,-0.002273,0.003250,0.249979,0,0);-ms-transform:matrix(0.174865,-0.002273,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174865,-0.002273,0.003250,0.249979,0,0);}
.mb0_c01088{transform:matrix(0.174875,-0.002273,0.003250,0.249979,0,0);-ms-transform:matrix(0.174875,-0.002273,0.003250,0.249979,0,0);-webkit-transform:matrix(0.174875,-0.002273,0.003250,0.249979,0,0);}
.m106_c01088{transform:matrix(0.175468,-0.002457,0.003500,0.249976,0,0);-ms-transform:matrix(0.175468,-0.002457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.175468,-0.002457,0.003500,0.249976,0,0);}
.m4e_c01088{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);}
.m3f_c01088{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m73_c01088{transform:matrix(0.176842,-0.002122,0.003000,0.249982,0,0);-ms-transform:matrix(0.176842,-0.002122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176842,-0.002122,0.003000,0.249982,0,0);}
.me9_c01088{transform:matrix(0.177004,-0.003009,0.004249,0.249964,0,0);-ms-transform:matrix(0.177004,-0.003009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177004,-0.003009,0.004249,0.249964,0,0);}
.mb7_c01088{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);}
.m74_c01088{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);}
.me2_c01088{transform:matrix(0.177450,-0.002307,0.003250,0.249979,0,0);-ms-transform:matrix(0.177450,-0.002307,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177450,-0.002307,0.003250,0.249979,0,0);}
.m86_c01088{transform:matrix(0.177602,-0.002131,0.003000,0.249982,0,0);-ms-transform:matrix(0.177602,-0.002131,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177602,-0.002131,0.003000,0.249982,0,0);}
.m4d_c01088{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);}
.m38_c01088{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);}
.me6_c01088{transform:matrix(0.177925,-0.002313,0.003250,0.249979,0,0);-ms-transform:matrix(0.177925,-0.002313,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177925,-0.002313,0.003250,0.249979,0,0);}
.mc6_c01088{transform:matrix(0.179035,-0.002327,0.003250,0.249979,0,0);-ms-transform:matrix(0.179035,-0.002327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179035,-0.002327,0.003250,0.249979,0,0);}
.mfb_c01088{transform:matrix(0.179067,-0.002149,0.003000,0.249982,0,0);-ms-transform:matrix(0.179067,-0.002149,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179067,-0.002149,0.003000,0.249982,0,0);}
.me_c01088{transform:matrix(0.179407,-0.002871,0.003999,0.249968,0,0);-ms-transform:matrix(0.179407,-0.002871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179407,-0.002871,0.003999,0.249968,0,0);}
.md1_c01088{transform:matrix(0.179430,-0.002333,0.003250,0.249979,0,0);-ms-transform:matrix(0.179430,-0.002333,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179430,-0.002333,0.003250,0.249979,0,0);}
.md3_c01088{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);}
.m7c_c01088{transform:matrix(0.180037,-0.002160,0.003000,0.249982,0,0);-ms-transform:matrix(0.180037,-0.002160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180037,-0.002160,0.003000,0.249982,0,0);}
.me5_c01088{transform:matrix(0.180125,-0.002342,0.003250,0.249979,0,0);-ms-transform:matrix(0.180125,-0.002342,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180125,-0.002342,0.003250,0.249979,0,0);}
.mcc_c01088{transform:matrix(0.180410,-0.002345,0.003250,0.249979,0,0);-ms-transform:matrix(0.180410,-0.002345,0.003250,0.249979,0,0);-webkit-transform:matrix(0.180410,-0.002345,0.003250,0.249979,0,0);}
.m7d_c01088{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);}
.m27_c01088{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);}
.mc9_c01088{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);}
.m30_c01088{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);}
.m1d_c01088{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);}
.m98_c01088{transform:matrix(0.181747,-0.002181,0.003000,0.249982,0,0);-ms-transform:matrix(0.181747,-0.002181,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181747,-0.002181,0.003000,0.249982,0,0);}
.m17_c01088{transform:matrix(0.181912,-0.002911,0.003999,0.249968,0,0);-ms-transform:matrix(0.181912,-0.002911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181912,-0.002911,0.003999,0.249968,0,0);}
.m68_c01088{transform:matrix(0.181937,-0.002183,0.003000,0.249982,0,0);-ms-transform:matrix(0.181937,-0.002183,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181937,-0.002183,0.003000,0.249982,0,0);}
.m5e_c01088{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);}
.mc5_c01088{transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);-ms-transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182125,-0.002368,0.003250,0.249979,0,0);}
.mfe_c01088{transform:matrix(0.182317,-0.002188,0.003000,0.249982,0,0);-ms-transform:matrix(0.182317,-0.002188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182317,-0.002188,0.003000,0.249982,0,0);}
.m3b_c01088{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);}
.m2d_c01088{transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183130,0.000000,0.000000,0.250000,0,0);}
.m96_c01088{transform:matrix(0.183362,-0.002200,0.003000,0.249982,0,0);-ms-transform:matrix(0.183362,-0.002200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183362,-0.002200,0.003000,0.249982,0,0);}
.m7f_c01088{transform:matrix(0.183402,-0.002201,0.003000,0.249982,0,0);-ms-transform:matrix(0.183402,-0.002201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183402,-0.002201,0.003000,0.249982,0,0);}
.m4_c01088{transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);-ms-transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183563,-0.003121,0.004249,0.249964,0,0);}
.m95_c01088{transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);-ms-transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183802,-0.002206,0.003000,0.249982,0,0);}
.ma5_c01088{transform:matrix(0.183967,-0.002208,0.003000,0.249982,0,0);-ms-transform:matrix(0.183967,-0.002208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183967,-0.002208,0.003000,0.249982,0,0);}
.mff_c01088{transform:matrix(0.184497,-0.002214,0.003000,0.249982,0,0);-ms-transform:matrix(0.184497,-0.002214,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184497,-0.002214,0.003000,0.249982,0,0);}
.mb_c01088{transform:matrix(0.184701,-0.002955,0.003999,0.249968,0,0);-ms-transform:matrix(0.184701,-0.002955,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184701,-0.002955,0.003999,0.249968,0,0);}
.ma4_c01088{transform:matrix(0.184777,-0.002217,0.003000,0.249982,0,0);-ms-transform:matrix(0.184777,-0.002217,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184777,-0.002217,0.003000,0.249982,0,0);}
.m6b_c01088{transform:matrix(0.184857,-0.002218,0.003000,0.249982,0,0);-ms-transform:matrix(0.184857,-0.002218,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184857,-0.002218,0.003000,0.249982,0,0);}
.m8a_c01088{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);}
.m31_c01088{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);}
.m2c_c01088{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);}
.mfd_c01088{transform:matrix(0.185952,-0.002231,0.003000,0.249982,0,0);-ms-transform:matrix(0.185952,-0.002231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185952,-0.002231,0.003000,0.249982,0,0);}
.m23_c01088{transform:matrix(0.186081,-0.002977,0.003999,0.249968,0,0);-ms-transform:matrix(0.186081,-0.002977,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186081,-0.002977,0.003999,0.249968,0,0);}
.m29_c01088{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);}
.m75_c01088{transform:matrix(0.187531,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187531,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187531,-0.002250,0.003000,0.249982,0,0);}
.m36_c01088{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);}
.m87_c01088{transform:matrix(0.187676,-0.002252,0.003000,0.249982,0,0);-ms-transform:matrix(0.187676,-0.002252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187676,-0.002252,0.003000,0.249982,0,0);}
.meb_c01088{transform:matrix(0.188098,-0.003198,0.004249,0.249964,0,0);-ms-transform:matrix(0.188098,-0.003198,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188098,-0.003198,0.004249,0.249964,0,0);}
.mb4_c01088{transform:matrix(0.188179,-0.002446,0.003250,0.249979,0,0);-ms-transform:matrix(0.188179,-0.002446,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188179,-0.002446,0.003250,0.249979,0,0);}
.mf2_c01088{transform:matrix(0.188666,-0.002264,0.003000,0.249982,0,0);-ms-transform:matrix(0.188666,-0.002264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188666,-0.002264,0.003000,0.249982,0,0);}
.m78_c01088{transform:matrix(0.188951,-0.002267,0.003000,0.249982,0,0);-ms-transform:matrix(0.188951,-0.002267,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188951,-0.002267,0.003000,0.249982,0,0);}
.m94_c01088{transform:matrix(0.190831,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190831,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190831,-0.002290,0.003000,0.249982,0,0);}
.m15_c01088{transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);-ms-transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);}
.mc_c01088{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);}
.m3e_c01088{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);}
.ma9_c01088{transform:matrix(0.192344,-0.002500,0.003250,0.249979,0,0);-ms-transform:matrix(0.192344,-0.002500,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192344,-0.002500,0.003250,0.249979,0,0);}
.m10b_c01088{transform:matrix(0.192401,-0.002694,0.003500,0.249976,0,0);-ms-transform:matrix(0.192401,-0.002694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192401,-0.002694,0.003500,0.249976,0,0);}
.me0_c01088{transform:matrix(0.192439,-0.002502,0.003250,0.249979,0,0);-ms-transform:matrix(0.192439,-0.002502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192439,-0.002502,0.003250,0.249979,0,0);}
.mf3_c01088{transform:matrix(0.192606,-0.002311,0.003000,0.249982,0,0);-ms-transform:matrix(0.192606,-0.002311,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192606,-0.002311,0.003000,0.249982,0,0);}
.m8f_c01088{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);}
.m26_c01088{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);}
.m11_c01088{transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);-ms-transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193410,-0.003095,0.003999,0.249968,0,0);}
.m105_c01088{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);}
.m8c_c01088{transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);-ms-transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194901,-0.002339,0.003000,0.249982,0,0);}
.mf9_c01088{transform:matrix(0.195121,-0.002341,0.003000,0.249982,0,0);-ms-transform:matrix(0.195121,-0.002341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195121,-0.002341,0.003000,0.249982,0,0);}
.md8_c01088{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);}
.m67_c01088{transform:matrix(0.195756,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195756,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195756,-0.002349,0.003000,0.249982,0,0);}
.m5_c01088{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);}
.m7a_c01088{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);}
.md9_c01088{transform:matrix(0.197473,-0.002567,0.003250,0.249979,0,0);-ms-transform:matrix(0.197473,-0.002567,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197473,-0.002567,0.003250,0.249979,0,0);}
.mfa_c01088{transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);-ms-transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198166,-0.002378,0.003000,0.249982,0,0);}
.m21_c01088{transform:matrix(0.198590,-0.003177,0.003999,0.249968,0,0);-ms-transform:matrix(0.198590,-0.003177,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198590,-0.003177,0.003999,0.249968,0,0);}
.m12_c01088{transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);-ms-transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198675,-0.003179,0.003999,0.249968,0,0);}
.m77_c01088{transform:matrix(0.198746,-0.002385,0.003000,0.249982,0,0);-ms-transform:matrix(0.198746,-0.002385,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198746,-0.002385,0.003000,0.249982,0,0);}
.mcb_c01088{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);}
.ma8_c01088{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);}
.mcf_c01088{transform:matrix(0.199188,-0.002589,0.003250,0.249979,0,0);-ms-transform:matrix(0.199188,-0.002589,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199188,-0.002589,0.003250,0.249979,0,0);}
.mdb_c01088{transform:matrix(0.200108,-0.002601,0.003250,0.249979,0,0);-ms-transform:matrix(0.200108,-0.002601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200108,-0.002601,0.003250,0.249979,0,0);}
.m60_c01088{transform:matrix(0.200311,-0.002404,0.003000,0.249982,0,0);-ms-transform:matrix(0.200311,-0.002404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200311,-0.002404,0.003000,0.249982,0,0);}
.m6a_c01088{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);}
.m103_c01088{transform:matrix(0.201060,-0.002815,0.003500,0.249976,0,0);-ms-transform:matrix(0.201060,-0.002815,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201060,-0.002815,0.003500,0.249976,0,0);}
.mc8_c01088{transform:matrix(0.201088,-0.002614,0.003250,0.249979,0,0);-ms-transform:matrix(0.201088,-0.002614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201088,-0.002614,0.003250,0.249979,0,0);}
.m3c_c01088{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);}
.maa_c01088{transform:matrix(0.202673,-0.002635,0.003250,0.249979,0,0);-ms-transform:matrix(0.202673,-0.002635,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202673,-0.002635,0.003250,0.249979,0,0);}
.mae_c01088{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);}
.m8e_c01088{transform:matrix(0.204325,-0.002452,0.003000,0.249982,0,0);-ms-transform:matrix(0.204325,-0.002452,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204325,-0.002452,0.003000,0.249982,0,0);}
.m7_c01088{transform:matrix(0.204505,-0.003477,0.004249,0.249964,0,0);-ms-transform:matrix(0.204505,-0.003477,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204505,-0.003477,0.004249,0.249964,0,0);}
.m109_c01088{transform:matrix(0.204570,-0.002864,0.003500,0.249976,0,0);-ms-transform:matrix(0.204570,-0.002864,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204570,-0.002864,0.003500,0.249976,0,0);}
.m8d_c01088{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);}
.m1a_c01088{transform:matrix(0.204774,-0.003276,0.003999,0.249968,0,0);-ms-transform:matrix(0.204774,-0.003276,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204774,-0.003276,0.003999,0.249968,0,0);}
.mea_c01088{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);}
.mc0_c01088{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);}
.m61_c01088{transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);-ms-transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206030,-0.002472,0.003000,0.249982,0,0);}
.m2b_c01088{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);}
.mc3_c01088{transform:matrix(0.206698,-0.002687,0.003250,0.249979,0,0);-ms-transform:matrix(0.206698,-0.002687,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206698,-0.002687,0.003250,0.249979,0,0);}
.m50_c01088{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);}
.mbe_c01088{transform:matrix(0.207527,-0.002698,0.003250,0.249979,0,0);-ms-transform:matrix(0.207527,-0.002698,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207527,-0.002698,0.003250,0.249979,0,0);}
.mca_c01088{transform:matrix(0.207617,-0.002699,0.003250,0.249979,0,0);-ms-transform:matrix(0.207617,-0.002699,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207617,-0.002699,0.003250,0.249979,0,0);}
.mbf_c01088{transform:matrix(0.207657,-0.002700,0.003250,0.249979,0,0);-ms-transform:matrix(0.207657,-0.002700,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207657,-0.002700,0.003250,0.249979,0,0);}
.m43_c01088{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);}
.md7_c01088{transform:matrix(0.209017,-0.002717,0.003250,0.249979,0,0);-ms-transform:matrix(0.209017,-0.002717,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209017,-0.002717,0.003250,0.249979,0,0);}
.m13_c01088{transform:matrix(0.209178,-0.003347,0.003999,0.249968,0,0);-ms-transform:matrix(0.209178,-0.003347,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209178,-0.003347,0.003999,0.249968,0,0);}
.m76_c01088{transform:matrix(0.209925,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209925,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209925,-0.002519,0.003000,0.249982,0,0);}
.mdd_c01088{transform:matrix(0.210022,-0.002730,0.003250,0.249979,0,0);-ms-transform:matrix(0.210022,-0.002730,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210022,-0.002730,0.003250,0.249979,0,0);}
.m3d_c01088{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);}
.mb2_c01088{transform:matrix(0.210617,-0.002738,0.003250,0.249979,0,0);-ms-transform:matrix(0.210617,-0.002738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210617,-0.002738,0.003250,0.249979,0,0);}
.mb6_c01088{transform:matrix(0.211187,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211187,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211187,-0.002745,0.003250,0.249979,0,0);}
.m37_c01088{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);}
.m35_c01088{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);}
.mbc_c01088{transform:matrix(0.212472,-0.002762,0.003250,0.249979,0,0);-ms-transform:matrix(0.212472,-0.002762,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212472,-0.002762,0.003250,0.249979,0,0);}
.m9d_c01088{transform:matrix(0.213000,-0.002556,0.003000,0.249982,0,0);-ms-transform:matrix(0.213000,-0.002556,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213000,-0.002556,0.003000,0.249982,0,0);}
.m20_c01088{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);}
.ma7_c01088{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);}
.m4a_c01088{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);}
.m2e_c01088{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);}
.me8_c01088{transform:matrix(0.217469,-0.003697,0.004249,0.249964,0,0);-ms-transform:matrix(0.217469,-0.003697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.217469,-0.003697,0.004249,0.249964,0,0);}
.mf4_c01088{transform:matrix(0.217819,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217819,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217819,-0.002614,0.003000,0.249982,0,0);}
.mcd_c01088{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);}
.m4f_c01088{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);}
.m107_c01088{transform:matrix(0.219798,-0.003077,0.003500,0.249976,0,0);-ms-transform:matrix(0.219798,-0.003077,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219798,-0.003077,0.003500,0.249976,0,0);}
.m10a_c01088{transform:matrix(0.220518,-0.003087,0.003500,0.249976,0,0);-ms-transform:matrix(0.220518,-0.003087,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220518,-0.003087,0.003500,0.249976,0,0);}
.mb8_c01088{transform:matrix(0.221366,-0.002878,0.003250,0.249979,0,0);-ms-transform:matrix(0.221366,-0.002878,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221366,-0.002878,0.003250,0.249979,0,0);}
.mf7_c01088{transform:matrix(0.221594,-0.002659,0.003000,0.249982,0,0);-ms-transform:matrix(0.221594,-0.002659,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221594,-0.002659,0.003000,0.249982,0,0);}
.mef_c01088{transform:matrix(0.221739,-0.002661,0.003000,0.249982,0,0);-ms-transform:matrix(0.221739,-0.002661,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221739,-0.002661,0.003000,0.249982,0,0);}
.mf5_c01088{transform:matrix(0.223974,-0.002688,0.003000,0.249982,0,0);-ms-transform:matrix(0.223974,-0.002688,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223974,-0.002688,0.003000,0.249982,0,0);}
.m104_c01088{transform:matrix(0.224183,-0.003139,0.003500,0.249976,0,0);-ms-transform:matrix(0.224183,-0.003139,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224183,-0.003139,0.003500,0.249976,0,0);}
.ma_c01088{transform:matrix(0.224311,-0.003589,0.003999,0.249968,0,0);-ms-transform:matrix(0.224311,-0.003589,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224311,-0.003589,0.003999,0.249968,0,0);}
.mf6_c01088{transform:matrix(0.225389,-0.002705,0.003000,0.249982,0,0);-ms-transform:matrix(0.225389,-0.002705,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225389,-0.002705,0.003000,0.249982,0,0);}
.mba_c01088{transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);-ms-transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225416,-0.002930,0.003250,0.249979,0,0);}
.mad_c01088{transform:matrix(0.225611,-0.002933,0.003250,0.249979,0,0);-ms-transform:matrix(0.225611,-0.002933,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225611,-0.002933,0.003250,0.249979,0,0);}
.mf1_c01088{transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-ms-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);}
.ma0_c01088{transform:matrix(0.226659,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226659,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226659,-0.002720,0.003000,0.249982,0,0);}
.mab_c01088{transform:matrix(0.227201,-0.002954,0.003250,0.249979,0,0);-ms-transform:matrix(0.227201,-0.002954,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227201,-0.002954,0.003250,0.249979,0,0);}
.mb9_c01088{transform:matrix(0.227296,-0.002955,0.003250,0.249979,0,0);-ms-transform:matrix(0.227296,-0.002955,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227296,-0.002955,0.003250,0.249979,0,0);}
.mde_c01088{transform:matrix(0.227561,-0.002958,0.003250,0.249979,0,0);-ms-transform:matrix(0.227561,-0.002958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227561,-0.002958,0.003250,0.249979,0,0);}
.mf0_c01088{transform:matrix(0.227729,-0.002733,0.003000,0.249982,0,0);-ms-transform:matrix(0.227729,-0.002733,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227729,-0.002733,0.003000,0.249982,0,0);}
.m102_c01088{transform:matrix(0.228428,-0.003198,0.003500,0.249976,0,0);-ms-transform:matrix(0.228428,-0.003198,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228428,-0.003198,0.003500,0.249976,0,0);}
.m19_c01088{transform:matrix(0.228896,-0.003662,0.003999,0.249968,0,0);-ms-transform:matrix(0.228896,-0.003662,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228896,-0.003662,0.003999,0.249968,0,0);}
.md_c01088{transform:matrix(0.229426,-0.003671,0.003999,0.249968,0,0);-ms-transform:matrix(0.229426,-0.003671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229426,-0.003671,0.003999,0.249968,0,0);}
.ma3_c01088{transform:matrix(0.231718,-0.002781,0.003000,0.249982,0,0);-ms-transform:matrix(0.231718,-0.002781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231718,-0.002781,0.003000,0.249982,0,0);}
.m34_c01088{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);}
.m69_c01088{transform:matrix(0.232493,-0.002790,0.003000,0.249982,0,0);-ms-transform:matrix(0.232493,-0.002790,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232493,-0.002790,0.003000,0.249982,0,0);}
.ma2_c01088{transform:matrix(0.233613,-0.002803,0.003000,0.249982,0,0);-ms-transform:matrix(0.233613,-0.002803,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233613,-0.002803,0.003000,0.249982,0,0);}
.m9c_c01088{transform:matrix(0.236178,-0.002834,0.003000,0.249982,0,0);-ms-transform:matrix(0.236178,-0.002834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236178,-0.002834,0.003000,0.249982,0,0);}
.m42_c01088{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);}
.m84_c01088{transform:matrix(0.236613,-0.002839,0.003000,0.249982,0,0);-ms-transform:matrix(0.236613,-0.002839,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236613,-0.002839,0.003000,0.249982,0,0);}
.mdf_c01088{transform:matrix(0.236915,-0.003080,0.003250,0.249979,0,0);-ms-transform:matrix(0.236915,-0.003080,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236915,-0.003080,0.003250,0.249979,0,0);}
.mc1_c01088{transform:matrix(0.237260,-0.003084,0.003250,0.249979,0,0);-ms-transform:matrix(0.237260,-0.003084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237260,-0.003084,0.003250,0.249979,0,0);}
.ma1_c01088{transform:matrix(0.238458,-0.002861,0.003000,0.249982,0,0);-ms-transform:matrix(0.238458,-0.002861,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238458,-0.002861,0.003000,0.249982,0,0);}
.m39_c01088{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);}
.m4b_c01088{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);}
.m100_c01088{transform:matrix(0.240643,-0.002888,0.003000,0.249982,0,0);-ms-transform:matrix(0.240643,-0.002888,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240643,-0.002888,0.003000,0.249982,0,0);}
.m4c_c01088{transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);}
.m10_c01088{transform:matrix(0.243929,-0.003903,0.003999,0.249968,0,0);-ms-transform:matrix(0.243929,-0.003903,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243929,-0.003903,0.003999,0.249968,0,0);}
.m32_c01088{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m101_c01088{transform:matrix(0.250155,-0.003502,0.003500,0.249976,0,0);-ms-transform:matrix(0.250155,-0.003502,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250155,-0.003502,0.003500,0.249976,0,0);}
.m62_c01088{transform:matrix(0.251417,-0.003017,0.003000,0.249982,0,0);-ms-transform:matrix(0.251417,-0.003017,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251417,-0.003017,0.003000,0.249982,0,0);}
.me1_c01088{transform:matrix(0.253494,-0.003295,0.003250,0.249979,0,0);-ms-transform:matrix(0.253494,-0.003295,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253494,-0.003295,0.003250,0.249979,0,0);}
.maf_c01088{transform:matrix(0.256098,-0.003329,0.003250,0.249979,0,0);-ms-transform:matrix(0.256098,-0.003329,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256098,-0.003329,0.003250,0.249979,0,0);}
.m1b_c01088{transform:matrix(0.257747,-0.004124,0.003999,0.249968,0,0);-ms-transform:matrix(0.257747,-0.004124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257747,-0.004124,0.003999,0.249968,0,0);}
.m6c_c01088{transform:matrix(0.260731,-0.003129,0.003000,0.249982,0,0);-ms-transform:matrix(0.260731,-0.003129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260731,-0.003129,0.003000,0.249982,0,0);}
.m8b_c01088{transform:matrix(0.261801,-0.003142,0.003000,0.249982,0,0);-ms-transform:matrix(0.261801,-0.003142,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261801,-0.003142,0.003000,0.249982,0,0);}
.m47_c01088{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);}
.m0_c01088{transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285095,0.000000,0.000000,0.250000,0,0);}
.m6f_c01088{transform:matrix(0.288069,-0.003457,0.003000,0.249982,0,0);-ms-transform:matrix(0.288069,-0.003457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288069,-0.003457,0.003000,0.249982,0,0);}
.m41_c01088{transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);}
.m24_c01088{transform:matrix(0.296107,-0.004738,0.003999,0.249968,0,0);-ms-transform:matrix(0.296107,-0.004738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296107,-0.004738,0.003999,0.249968,0,0);}
.m5f_c01088{transform:matrix(0.303013,-0.003636,0.003000,0.249982,0,0);-ms-transform:matrix(0.303013,-0.003636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.303013,-0.003636,0.003000,0.249982,0,0);}
.m1_c01088{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);}
.me4_c01088{transform:matrix(0.304894,-0.003964,0.003250,0.249979,0,0);-ms-transform:matrix(0.304894,-0.003964,0.003250,0.249979,0,0);-webkit-transform:matrix(0.304894,-0.003964,0.003250,0.249979,0,0);}
.m63_c01088{transform:matrix(0.332286,-0.003987,0.003000,0.249982,0,0);-ms-transform:matrix(0.332286,-0.003987,0.003000,0.249982,0,0);-webkit-transform:matrix(0.332286,-0.003987,0.003000,0.249982,0,0);}
.m85_c01088{transform:matrix(0.334806,-0.004018,0.003000,0.249982,0,0);-ms-transform:matrix(0.334806,-0.004018,0.003000,0.249982,0,0);-webkit-transform:matrix(0.334806,-0.004018,0.003000,0.249982,0,0);}
.m46_c01088{transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341200,0.000000,0.000000,0.250000,0,0);}
.m33_c01088{transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347980,0.000000,0.000000,0.250000,0,0);}
.m70_c01088{transform:matrix(0.350700,-0.004208,0.003000,0.249982,0,0);-ms-transform:matrix(0.350700,-0.004208,0.003000,0.249982,0,0);-webkit-transform:matrix(0.350700,-0.004208,0.003000,0.249982,0,0);}
.m6d_c01088{transform:matrix(0.358244,-0.004299,0.003000,0.249982,0,0);-ms-transform:matrix(0.358244,-0.004299,0.003000,0.249982,0,0);-webkit-transform:matrix(0.358244,-0.004299,0.003000,0.249982,0,0);}
.m2_c01088{transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);}
.m45_c01088{transform:matrix(0.447795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447795,0.000000,0.000000,0.250000,0,0);}
.m3a_c01088{transform:matrix(0.512450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512450,0.000000,0.000000,0.250000,0,0);}
.m1f_c01088{transform:matrix(0.569832,-0.009117,0.003999,0.249968,0,0);-ms-transform:matrix(0.569832,-0.009117,0.003999,0.249968,0,0);-webkit-transform:matrix(0.569832,-0.009117,0.003999,0.249968,0,0);}
.m49_c01088{transform:matrix(0.623675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623675,0.000000,0.000000,0.250000,0,0);}
.m56_c01088{transform:matrix(0.837650,-0.010052,0.003000,0.249982,0,0);-ms-transform:matrix(0.837650,-0.010052,0.003000,0.249982,0,0);-webkit-transform:matrix(0.837650,-0.010052,0.003000,0.249982,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls0_c01088{letter-spacing:0.000000px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:0.000000px;}
.fc0_c01088{color:transparent;}
.fsb_c01088{font-size:22.050000px;}
.fs1_c01088{font-size:33.600000px;}
.fsa_c01088{font-size:47.250000px;}
.fs19_c01088{font-size:47.253402px;}
.fs9_c01088{font-size:50.400000px;}
.fs1a_c01088{font-size:50.403629px;}
.fs8_c01088{font-size:51.450000px;}
.fsc_c01088{font-size:53.550000px;}
.fs11_c01088{font-size:61.954460px;}
.fs1b_c01088{font-size:64.056277px;}
.fs14_c01088{font-size:67.205678px;}
.fs12_c01088{font-size:68.254914px;}
.fs17_c01088{font-size:68.255767px;}
.fs4_c01088{font-size:68.259861px;}
.fs16_c01088{font-size:69.305856px;}
.fs5_c01088{font-size:69.308870px;}
.fs3_c01088{font-size:69.310013px;}
.fse_c01088{font-size:70.355065px;}
.fs13_c01088{font-size:70.355944px;}
.fs6_c01088{font-size:70.359004px;}
.fs10_c01088{font-size:71.405141px;}
.fs15_c01088{font-size:71.406033px;}
.fsf_c01088{font-size:72.455216px;}
.fs18_c01088{font-size:72.456122px;}
.fs7_c01088{font-size:75.600000px;}
.fsd_c01088{font-size:77.705594px;}
.fs2_c01088{font-size:95.550000px;}
.fs0_c01088{font-size:116.550000px;}
.y0_c01088{bottom:0.000000px;}
.ye7_c01088{bottom:153.633000px;}
.ye8_c01088{bottom:153.973263px;}
.ye9_c01088{bottom:154.921203px;}
.yea_c01088{bottom:155.461806px;}
.yeb_c01088{bottom:156.041091px;}
.yec_c01088{bottom:156.672456px;}
.yed_c01088{bottom:157.239498px;}
.yee_c01088{bottom:158.070279px;}
.yef_c01088{bottom:158.267721px;}
.yf0_c01088{bottom:158.838081px;}
.yf1_c01088{bottom:159.507771px;}
.ye6_c01088{bottom:194.092080px;}
.ye5_c01088{bottom:194.092338px;}
.ye1_c01088{bottom:194.092590px;}
.ye4_c01088{bottom:194.092656px;}
.ydf_c01088{bottom:194.092782px;}
.yde_c01088{bottom:194.092860px;}
.ydd_c01088{bottom:194.093118px;}
.ye2_c01088{bottom:194.093172px;}
.ye0_c01088{bottom:194.093346px;}
.ye3_c01088{bottom:194.093394px;}
.yd5_c01088{bottom:210.588000px;}
.yd6_c01088{bottom:211.167798px;}
.yd7_c01088{bottom:211.468830px;}
.yd8_c01088{bottom:211.886844px;}
.yd9_c01088{bottom:212.165106px;}
.yda_c01088{bottom:212.405388px;}
.ydb_c01088{bottom:212.956260px;}
.ydc_c01088{bottom:213.927954px;}
.yce_c01088{bottom:242.734500px;}
.ycf_c01088{bottom:243.124829px;}
.yd0_c01088{bottom:243.744376px;}
.yd1_c01088{bottom:244.511187px;}
.yd2_c01088{bottom:245.340677px;}
.yd3_c01088{bottom:245.841139px;}
.yd4_c01088{bottom:246.401043px;}
.ycd_c01088{bottom:272.275227px;}
.yc1_c01088{bottom:294.025153px;}
.yc2_c01088{bottom:294.425527px;}
.yc3_c01088{bottom:294.959047px;}
.yc4_c01088{bottom:295.934652px;}
.yc5_c01088{bottom:296.187586px;}
.yc6_c01088{bottom:296.475328px;}
.yc7_c01088{bottom:297.521211px;}
.yc8_c01088{bottom:297.798696px;}
.yc9_c01088{bottom:298.564032px;}
.yca_c01088{bottom:299.332663px;}
.ycb_c01088{bottom:299.532675px;}
.ycc_c01088{bottom:299.861991px;}
.yb8_c01088{bottom:316.707118px;}
.yb9_c01088{bottom:317.934264px;}
.yba_c01088{bottom:318.324742px;}
.ybb_c01088{bottom:319.058163px;}
.ybc_c01088{bottom:320.048244px;}
.ybd_c01088{bottom:321.046747px;}
.ybe_c01088{bottom:321.277591px;}
.ybf_c01088{bottom:322.113418px;}
.yc0_c01088{bottom:322.888995px;}
.yad_c01088{bottom:339.927492px;}
.yae_c01088{bottom:340.170930px;}
.yaf_c01088{bottom:340.523578px;}
.yb0_c01088{bottom:340.989511px;}
.yb1_c01088{bottom:341.601940px;}
.yb2_c01088{bottom:342.097614px;}
.yb3_c01088{bottom:342.691029px;}
.yb4_c01088{bottom:343.487884px;}
.yb5_c01088{bottom:343.838893px;}
.yb6_c01088{bottom:344.762509px;}
.yb7_c01088{bottom:345.413922px;}
.ya2_c01088{bottom:362.340807px;}
.ya3_c01088{bottom:363.526116px;}
.ya4_c01088{bottom:363.805632px;}
.ya5_c01088{bottom:364.534447px;}
.ya6_c01088{bottom:364.722384px;}
.ya7_c01088{bottom:365.127453px;}
.ya8_c01088{bottom:365.707411px;}
.ya9_c01088{bottom:366.293436px;}
.yaa_c01088{bottom:366.948651px;}
.yab_c01088{bottom:367.265611px;}
.yac_c01088{bottom:367.562875px;}
.y98_c01088{bottom:384.750703px;}
.y99_c01088{bottom:385.246102px;}
.y9a_c01088{bottom:385.668877px;}
.y9b_c01088{bottom:386.378424px;}
.y9c_c01088{bottom:386.679997px;}
.y9d_c01088{bottom:387.295936px;}
.y9e_c01088{bottom:388.105956px;}
.y9f_c01088{bottom:389.049970px;}
.ya0_c01088{bottom:389.366463px;}
.ya1_c01088{bottom:390.131881px;}
.y8d_c01088{bottom:407.973000px;}
.y8e_c01088{bottom:408.952485px;}
.y8f_c01088{bottom:409.352820px;}
.y90_c01088{bottom:410.216163px;}
.y91_c01088{bottom:410.447842px;}
.y92_c01088{bottom:410.819142px;}
.y93_c01088{bottom:411.549982px;}
.y94_c01088{bottom:411.963539px;}
.y95_c01088{bottom:412.462738px;}
.y96_c01088{bottom:413.100817px;}
.y97_c01088{bottom:413.655358px;}
.y89_c01088{bottom:430.643250px;}
.y8a_c01088{bottom:431.243862px;}
.y8b_c01088{bottom:431.942040px;}
.y8c_c01088{bottom:436.232724px;}
.y81_c01088{bottom:453.323076px;}
.y82_c01088{bottom:453.816750px;}
.y83_c01088{bottom:454.549290px;}
.y84_c01088{bottom:455.944506px;}
.y85_c01088{bottom:456.524178px;}
.y86_c01088{bottom:456.837816px;}
.y87_c01088{bottom:457.563942px;}
.y88_c01088{bottom:459.083736px;}
.y75_c01088{bottom:476.003358px;}
.y76_c01088{bottom:476.825832px;}
.y77_c01088{bottom:477.175842px;}
.y78_c01088{bottom:477.782334px;}
.y79_c01088{bottom:478.025280px;}
.y7a_c01088{bottom:478.449108px;}
.y7b_c01088{bottom:478.925388px;}
.y7c_c01088{bottom:479.347290px;}
.y7d_c01088{bottom:480.092742px;}
.y7e_c01088{bottom:480.905802px;}
.y7f_c01088{bottom:481.239468px;}
.y80_c01088{bottom:481.501998px;}
.y69_c01088{bottom:498.685992px;}
.y6a_c01088{bottom:499.580394px;}
.y6b_c01088{bottom:499.784154px;}
.y6c_c01088{bottom:500.490582px;}
.y6d_c01088{bottom:501.012186px;}
.y6e_c01088{bottom:501.491004px;}
.y6f_c01088{bottom:501.757368px;}
.y70_c01088{bottom:502.142820px;}
.y71_c01088{bottom:502.538460px;}
.y72_c01088{bottom:503.494080px;}
.y73_c01088{bottom:503.682108px;}
.y74_c01088{bottom:503.983554px;}
.y5d_c01088{bottom:521.367444px;}
.y5e_c01088{bottom:521.859888px;}
.y5f_c01088{bottom:522.688104px;}
.y60_c01088{bottom:522.860634px;}
.y61_c01088{bottom:523.153332px;}
.y62_c01088{bottom:523.490076px;}
.y63_c01088{bottom:523.901250px;}
.y64_c01088{bottom:524.474766px;}
.y65_c01088{bottom:524.930994px;}
.y66_c01088{bottom:525.362544px;}
.y67_c01088{bottom:525.712590px;}
.y68_c01088{bottom:526.370418px;}
.y4f_c01088{bottom:544.588980px;}
.y50_c01088{bottom:544.900200px;}
.y51_c01088{bottom:545.681562px;}
.y52_c01088{bottom:545.885196px;}
.y53_c01088{bottom:546.241848px;}
.y54_c01088{bottom:546.737730px;}
.y55_c01088{bottom:546.918810px;}
.y56_c01088{bottom:547.142478px;}
.y57_c01088{bottom:547.459314px;}
.y58_c01088{bottom:548.017206px;}
.y59_c01088{bottom:548.492784px;}
.y5a_c01088{bottom:548.911446px;}
.y5b_c01088{bottom:549.549672px;}
.y5c_c01088{bottom:549.893562px;}
.y44_c01088{bottom:567.269238px;}
.y45_c01088{bottom:567.600198px;}
.y46_c01088{bottom:568.212978px;}
.y47_c01088{bottom:568.730892px;}
.y48_c01088{bottom:568.983240px;}
.y49_c01088{bottom:569.250552px;}
.y4a_c01088{bottom:569.604846px;}
.y4b_c01088{bottom:570.092760px;}
.y4c_c01088{bottom:571.555476px;}
.y4d_c01088{bottom:571.925166px;}
.y4e_c01088{bottom:573.028026px;}
.y1_c01088{bottom:583.740000px;}
.y36_c01088{bottom:590.761500px;}
.y37_c01088{bottom:591.043938px;}
.y38_c01088{bottom:591.357840px;}
.y39_c01088{bottom:591.811404px;}
.y3a_c01088{bottom:592.432188px;}
.y3b_c01088{bottom:593.110176px;}
.y3c_c01088{bottom:593.456838px;}
.y3d_c01088{bottom:593.810718px;}
.y3e_c01088{bottom:594.248010px;}
.y3f_c01088{bottom:594.779406px;}
.y40_c01088{bottom:595.206978px;}
.y41_c01088{bottom:595.511988px;}
.y42_c01088{bottom:595.848768px;}
.y43_c01088{bottom:596.406714px;}
.y2_c01088{bottom:600.210000px;}
.y35_c01088{bottom:630.600000px;}
.y34_c01088{bottom:642.600000px;}
.y29_c01088{bottom:647.191500px;}
.y2a_c01088{bottom:647.503500px;}
.y33_c01088{bottom:647.865000px;}
.y2b_c01088{bottom:648.103500px;}
.y2c_c01088{bottom:648.871500px;}
.y2d_c01088{bottom:648.942000px;}
.y4_c01088{bottom:649.620000px;}
.y2e_c01088{bottom:649.705500px;}
.y2f_c01088{bottom:649.872000px;}
.y30_c01088{bottom:650.358000px;}
.y31_c01088{bottom:650.449500px;}
.y32_c01088{bottom:651.175500px;}
.y28_c01088{bottom:665.910000px;}
.y3_c01088{bottom:667.570500px;}
.y27_c01088{bottom:683.502000px;}
.y23_c01088{bottom:717.656772px;}
.y24_c01088{bottom:718.041936px;}
.y25_c01088{bottom:718.650624px;}
.y18_c01088{bottom:738.990072px;}
.y19_c01088{bottom:739.616520px;}
.y1a_c01088{bottom:740.078280px;}
.y1b_c01088{bottom:740.550072px;}
.y1c_c01088{bottom:741.845760px;}
.y1d_c01088{bottom:742.635384px;}
.y1e_c01088{bottom:743.059320px;}
.y1f_c01088{bottom:743.950032px;}
.y20_c01088{bottom:744.550632px;}
.y21_c01088{bottom:745.185384px;}
.y22_c01088{bottom:746.153088px;}
.yb_c01088{bottom:762.753000px;}
.yc_c01088{bottom:763.106232px;}
.yd_c01088{bottom:763.491984px;}
.ye_c01088{bottom:764.033784px;}
.yf_c01088{bottom:764.934000px;}
.y10_c01088{bottom:765.583152px;}
.y11_c01088{bottom:765.911352px;}
.y12_c01088{bottom:766.671840px;}
.y13_c01088{bottom:767.655840px;}
.y14_c01088{bottom:768.180624px;}
.y15_c01088{bottom:768.809112px;}
.y16_c01088{bottom:769.154592px;}
.y17_c01088{bottom:769.656552px;}
.ya_c01088{bottom:785.429281px;}
.y5_c01088{bottom:808.113000px;}
.y6_c01088{bottom:808.847910px;}
.y7_c01088{bottom:809.908047px;}
.y8_c01088{bottom:810.610674px;}
.y9_c01088{bottom:811.051416px;}
.y26_c01088{bottom:813.487500px;}
.hd_c01088{height:22.050000px;}
.h3_c01088{height:33.600000px;}
.hc_c01088{height:47.250000px;}
.h1b_c01088{height:47.253402px;}
.hb_c01088{height:50.400000px;}
.h1c_c01088{height:50.403629px;}
.ha_c01088{height:51.450000px;}
.he_c01088{height:53.550000px;}
.h13_c01088{height:61.954460px;}
.h1d_c01088{height:64.056277px;}
.h16_c01088{height:67.205678px;}
.h14_c01088{height:68.254914px;}
.h19_c01088{height:68.255767px;}
.h6_c01088{height:68.259861px;}
.h18_c01088{height:69.305856px;}
.h7_c01088{height:69.308870px;}
.h5_c01088{height:69.310013px;}
.h10_c01088{height:70.355065px;}
.h15_c01088{height:70.355944px;}
.h8_c01088{height:70.359004px;}
.h12_c01088{height:71.405141px;}
.h17_c01088{height:71.406033px;}
.h11_c01088{height:72.455216px;}
.h1a_c01088{height:72.456122px;}
.h9_c01088{height:75.600000px;}
.hf_c01088{height:77.705594px;}
.h4_c01088{height:95.550000px;}
.h2_c01088{height:116.550000px;}
.h1_c01088{height:1005.000000px;}
.h0_c01088{height:1005.150000px;}
.w0_c01088{width:739.200000px;}
.w1_c01088{width:739.500000px;}
.x0_c01088{left:0.000000px;}
.x1_c01088{left:46.170000px;}
.x2_c01088{left:67.500000px;}
.x3_c01088{left:99.310500px;}
.x46_c01088{left:101.398500px;}
.x57_c01088{left:102.492648px;}
.x76_c01088{left:103.882500px;}
.x90_c01088{left:105.206334px;}
.x96_c01088{left:106.648779px;}
.xa2_c01088{left:109.546500px;}
.x8_c01088{left:117.661500px;}
.x79_c01088{left:121.408500px;}
.x47_c01088{left:124.935000px;}
.x1d_c01088{left:127.625244px;}
.xa3_c01088{left:133.851000px;}
.x91_c01088{left:136.004334px;}
.x9_c01088{left:139.738500px;}
.x72_c01088{left:141.109818px;}
.x4_c01088{left:142.540500px;}
.x5f_c01088{left:143.805306px;}
.x7f_c01088{left:145.100403px;}
.x97_c01088{left:148.195500px;}
.x48_c01088{left:151.093500px;}
.x25_c01088{left:152.550000px;}
.x2f_c01088{left:154.440000px;}
.x9a_c01088{left:158.919000px;}
.xa0_c01088{left:160.918698px;}
.xa_c01088{left:163.848000px;}
.x15_c01088{left:167.867052px;}
.x1e_c01088{left:171.107136px;}
.x37_c01088{left:174.024000px;}
.x30_c01088{left:176.040000px;}
.x64_c01088{left:177.327948px;}
.x80_c01088{left:180.275852px;}
.x77_c01088{left:185.111112px;}
.xa1_c01088{left:187.651050px;}
.x49_c01088{left:188.890500px;}
.x8d_c01088{left:192.418805px;}
.x58_c01088{left:193.541148px;}
.xb_c01088{left:197.710500px;}
.x69_c01088{left:199.929018px;}
.xa4_c01088{left:201.561000px;}
.x84_c01088{left:203.432072px;}
.x5_c01088{left:204.901500px;}
.x9b_c01088{left:207.235500px;}
.x59_c01088{left:210.510648px;}
.x31_c01088{left:213.570000px;}
.x26_c01088{left:215.730000px;}
.x8e_c01088{left:220.262934px;}
.x85_c01088{left:226.664364px;}
.x42_c01088{left:227.880000px;}
.x98_c01088{left:229.746000px;}
.x52_c01088{left:233.198778px;}
.x27_c01088{left:238.950000px;}
.x43_c01088{left:241.110000px;}
.x32_c01088{left:243.810000px;}
.x6_c01088{left:246.232500px;}
.x6a_c01088{left:250.470018px;}
.x60_c01088{left:251.592306px;}
.x33_c01088{left:252.720000px;}
.xc_c01088{left:253.974000px;}
.x28_c01088{left:257.310000px;}
.x38_c01088{left:265.227000px;}
.x9c_c01088{left:267.156000px;}
.x39_c01088{left:269.958000px;}
.x7_c01088{left:272.158500px;}
.x34_c01088{left:273.510000px;}
.x16_c01088{left:278.334552px;}
.x61_c01088{left:279.654306px;}
.x53_c01088{left:280.998702px;}
.x29_c01088{left:285.930000px;}
.x86_c01088{left:287.458664px;}
.x9d_c01088{left:290.344500px;}
.xd_c01088{left:294.546000px;}
.x4a_c01088{left:297.121500px;}
.x2a_c01088{left:303.750000px;}
.x6b_c01088{left:306.034518px;}
.x99_c01088{left:307.978500px;}
.x9e_c01088{left:310.368000px;}
.x7a_c01088{left:311.781000px;}
.x62_c01088{left:313.918806px;}
.xe_c01088{left:315.058500px;}
.x54_c01088{left:318.532752px;}
.x3a_c01088{left:320.895000px;}
.x44_c01088{left:322.110000px;}
.x4b_c01088{left:326.010000px;}
.x17_c01088{left:327.686052px;}
.x3b_c01088{left:332.028000px;}
.x8a_c01088{left:335.026118px;}
.x65_c01088{left:336.545448px;}
.x7b_c01088{left:340.342500px;}
.x5a_c01088{left:341.687148px;}
.x2b_c01088{left:343.980000px;}
.x6c_c01088{left:345.724518px;}
.x1f_c01088{left:348.570000px;}
.x45_c01088{left:350.730000px;}
.x18_c01088{left:354.182052px;}
.x35_c01088{left:355.590000px;}
.x66_c01088{left:358.742448px;}
.x2c_c01088{left:361.530000px;}
.xf_c01088{left:362.589000px;}
.x3c_c01088{left:364.392000px;}
.xa5_c01088{left:367.153500px;}
.x3d_c01088{left:370.474500px;}
.x20_c01088{left:371.790000px;}
.x73_c01088{left:373.362510px;}
.x2d_c01088{left:378.810000px;}
.x6d_c01088{left:380.883018px;}
.x81_c01088{left:383.322984px;}
.x87_c01088{left:385.187931px;}
.x5b_c01088{left:388.178148px;}
.x67_c01088{left:390.863448px;}
.x4c_c01088{left:391.941000px;}
.x92_c01088{left:395.478834px;}
.x7c_c01088{left:396.561000px;}
.x21_c01088{left:400.680000px;}
.x36_c01088{left:402.300000px;}
.x19_c01088{left:409.851552px;}
.x8f_c01088{left:414.645399px;}
.x2e_c01088{left:416.340000px;}
.x3e_c01088{left:418.923000px;}
.x10_c01088{left:424.089000px;}
.xa6_c01088{left:426.495000px;}
.x5c_c01088{left:427.809648px;}
.x74_c01088{left:429.247344px;}
.x55_c01088{left:431.049402px;}
.x88_c01088{left:434.075075px;}
.x4d_c01088{left:436.224000px;}
.x9f_c01088{left:437.248500px;}
.xa7_c01088{left:440.598000px;}
.x6e_c01088{left:443.004018px;}
.x3f_c01088{left:445.500000px;}
.x1a_c01088{left:447.389052px;}
.x78_c01088{left:453.280242px;}
.x93_c01088{left:454.350834px;}
.x11_c01088{left:456.888000px;}
.x41_c01088{left:458.460000px;}
.x22_c01088{left:459.810000px;}
.x5d_c01088{left:462.698148px;}
.x40_c01088{left:464.670000px;}
.x7d_c01088{left:466.773000px;}
.x4e_c01088{left:471.855000px;}
.xa8_c01088{left:481.338000px;}
.x1b_c01088{left:487.061052px;}
.x82_c01088{left:488.363349px;}
.x23_c01088{left:491.670000px;}
.x12_c01088{left:496.168500px;}
.x4f_c01088{left:497.272500px;}
.x68_c01088{left:503.468448px;}
.x8b_c01088{left:507.526841px;}
.x6f_c01088{left:510.759018px;}
.x24_c01088{left:513.810000px;}
.x5e_c01088{left:515.883648px;}
.x13_c01088{left:517.761000px;}
.x63_c01088{left:519.682806px;}
.x50_c01088{left:525.337500px;}
.x94_c01088{left:528.861834px;}
.x70_c01088{left:538.564518px;}
.x89_c01088{left:539.917959px;}
.x56_c01088{left:544.260534px;}
.x75_c01088{left:546.145440px;}
.x1c_c01088{left:547.542552px;}
.x14_c01088{left:549.133500px;}
.x83_c01088{left:552.088668px;}
.x95_c01088{left:554.193834px;}
.x7e_c01088{left:558.513000px;}
.x71_c01088{left:560.442018px;}
.x8c_c01088{left:561.790043px;}
.x51_c01088{left:571.833000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws0_c01088{word-spacing:0.000000pt;}
.fsb_c01088{font-size:19.600000pt;}
.fs1_c01088{font-size:29.866667pt;}
.fsa_c01088{font-size:42.000000pt;}
.fs19_c01088{font-size:42.003024pt;}
.fs9_c01088{font-size:44.800000pt;}
.fs1a_c01088{font-size:44.803225pt;}
.fs8_c01088{font-size:45.733333pt;}
.fsc_c01088{font-size:47.600000pt;}
.fs11_c01088{font-size:55.070631pt;}
.fs1b_c01088{font-size:56.938913pt;}
.fs14_c01088{font-size:59.738381pt;}
.fs12_c01088{font-size:60.671035pt;}
.fs17_c01088{font-size:60.671793pt;}
.fs4_c01088{font-size:60.675432pt;}
.fs16_c01088{font-size:61.605205pt;}
.fs5_c01088{font-size:61.607884pt;}
.fs3_c01088{font-size:61.608901pt;}
.fse_c01088{font-size:62.537836pt;}
.fs13_c01088{font-size:62.538617pt;}
.fs6_c01088{font-size:62.541337pt;}
.fs10_c01088{font-size:63.471236pt;}
.fs15_c01088{font-size:63.472029pt;}
.fsf_c01088{font-size:64.404637pt;}
.fs18_c01088{font-size:64.405442pt;}
.fs7_c01088{font-size:67.200000pt;}
.fsd_c01088{font-size:69.071639pt;}
.fs2_c01088{font-size:84.933333pt;}
.fs0_c01088{font-size:103.600000pt;}
.y0_c01088{bottom:0.000000pt;}
.ye7_c01088{bottom:136.562667pt;}
.ye8_c01088{bottom:136.865123pt;}
.ye9_c01088{bottom:137.707736pt;}
.yea_c01088{bottom:138.188272pt;}
.yeb_c01088{bottom:138.703192pt;}
.yec_c01088{bottom:139.264405pt;}
.yed_c01088{bottom:139.768443pt;}
.yee_c01088{bottom:140.506915pt;}
.yef_c01088{bottom:140.682419pt;}
.yf0_c01088{bottom:141.189405pt;}
.yf1_c01088{bottom:141.784685pt;}
.ye6_c01088{bottom:172.526293pt;}
.ye5_c01088{bottom:172.526523pt;}
.ye1_c01088{bottom:172.526747pt;}
.ye4_c01088{bottom:172.526805pt;}
.ydf_c01088{bottom:172.526917pt;}
.yde_c01088{bottom:172.526987pt;}
.ydd_c01088{bottom:172.527216pt;}
.ye2_c01088{bottom:172.527264pt;}
.ye0_c01088{bottom:172.527419pt;}
.ye3_c01088{bottom:172.527461pt;}
.yd5_c01088{bottom:187.189333pt;}
.yd6_c01088{bottom:187.704709pt;}
.yd7_c01088{bottom:187.972293pt;}
.yd8_c01088{bottom:188.343861pt;}
.yd9_c01088{bottom:188.591205pt;}
.yda_c01088{bottom:188.804789pt;}
.ydb_c01088{bottom:189.294453pt;}
.ydc_c01088{bottom:190.158181pt;}
.yce_c01088{bottom:215.764000pt;}
.ycf_c01088{bottom:216.110959pt;}
.yd0_c01088{bottom:216.661668pt;}
.yd1_c01088{bottom:217.343277pt;}
.yd2_c01088{bottom:218.080601pt;}
.yd3_c01088{bottom:218.525457pt;}
.yd4_c01088{bottom:219.023149pt;}
.ycd_c01088{bottom:242.022424pt;}
.yc1_c01088{bottom:261.355692pt;}
.yc2_c01088{bottom:261.711580pt;}
.yc3_c01088{bottom:262.185820pt;}
.yc4_c01088{bottom:263.053024pt;}
.yc5_c01088{bottom:263.277855pt;}
.yc6_c01088{bottom:263.533625pt;}
.yc7_c01088{bottom:264.463299pt;}
.yc8_c01088{bottom:264.709952pt;}
.yc9_c01088{bottom:265.390251pt;}
.yca_c01088{bottom:266.073479pt;}
.ycb_c01088{bottom:266.251267pt;}
.ycc_c01088{bottom:266.543992pt;}
.yb8_c01088{bottom:281.517439pt;}
.yb9_c01088{bottom:282.608235pt;}
.yba_c01088{bottom:282.955327pt;}
.ybb_c01088{bottom:283.607256pt;}
.ybc_c01088{bottom:284.487328pt;}
.ybd_c01088{bottom:285.374887pt;}
.ybe_c01088{bottom:285.580081pt;}
.ybf_c01088{bottom:286.323039pt;}
.yc0_c01088{bottom:287.012440pt;}
.yad_c01088{bottom:302.157771pt;}
.yae_c01088{bottom:302.374160pt;}
.yaf_c01088{bottom:302.687625pt;}
.yb0_c01088{bottom:303.101788pt;}
.yb1_c01088{bottom:303.646169pt;}
.yb2_c01088{bottom:304.086768pt;}
.yb3_c01088{bottom:304.614248pt;}
.yb4_c01088{bottom:305.322564pt;}
.yb5_c01088{bottom:305.634572pt;}
.yb6_c01088{bottom:306.455564pt;}
.yb7_c01088{bottom:307.034597pt;}
.ya2_c01088{bottom:322.080717pt;}
.ya3_c01088{bottom:323.134325pt;}
.ya4_c01088{bottom:323.382784pt;}
.ya5_c01088{bottom:324.030620pt;}
.ya6_c01088{bottom:324.197675pt;}
.ya7_c01088{bottom:324.557736pt;}
.ya8_c01088{bottom:325.073255pt;}
.ya9_c01088{bottom:325.594165pt;}
.yaa_c01088{bottom:326.176579pt;}
.yab_c01088{bottom:326.458321pt;}
.yac_c01088{bottom:326.722556pt;}
.y98_c01088{bottom:342.000625pt;}
.y99_c01088{bottom:342.440980pt;}
.y9a_c01088{bottom:342.816780pt;}
.y9b_c01088{bottom:343.447488pt;}
.y9c_c01088{bottom:343.715553pt;}
.y9d_c01088{bottom:344.263055pt;}
.y9e_c01088{bottom:344.983072pt;}
.y9f_c01088{bottom:345.822196pt;}
.ya0_c01088{bottom:346.103523pt;}
.ya1_c01088{bottom:346.783895pt;}
.y8d_c01088{bottom:362.642667pt;}
.y8e_c01088{bottom:363.513320pt;}
.y8f_c01088{bottom:363.869173pt;}
.y90_c01088{bottom:364.636589pt;}
.y91_c01088{bottom:364.842527pt;}
.y92_c01088{bottom:365.172571pt;}
.y93_c01088{bottom:365.822207pt;}
.y94_c01088{bottom:366.189812pt;}
.y95_c01088{bottom:366.633545pt;}
.y96_c01088{bottom:367.200727pt;}
.y97_c01088{bottom:367.693652pt;}
.y89_c01088{bottom:382.794000pt;}
.y8a_c01088{bottom:383.327877pt;}
.y8b_c01088{bottom:383.948480pt;}
.y8c_c01088{bottom:387.762421pt;}
.y81_c01088{bottom:402.953845pt;}
.y82_c01088{bottom:403.392667pt;}
.y83_c01088{bottom:404.043813pt;}
.y84_c01088{bottom:405.284005pt;}
.y85_c01088{bottom:405.799269pt;}
.y86_c01088{bottom:406.078059pt;}
.y87_c01088{bottom:406.723504pt;}
.y88_c01088{bottom:408.074432pt;}
.y75_c01088{bottom:423.114096pt;}
.y76_c01088{bottom:423.845184pt;}
.y77_c01088{bottom:424.156304pt;}
.y78_c01088{bottom:424.695408pt;}
.y79_c01088{bottom:424.911360pt;}
.y7a_c01088{bottom:425.288096pt;}
.y7b_c01088{bottom:425.711456pt;}
.y7c_c01088{bottom:426.086480pt;}
.y7d_c01088{bottom:426.749104pt;}
.y7e_c01088{bottom:427.471824pt;}
.y7f_c01088{bottom:427.768416pt;}
.y80_c01088{bottom:428.001776pt;}
.y69_c01088{bottom:443.276437pt;}
.y6a_c01088{bottom:444.071461pt;}
.y6b_c01088{bottom:444.252581pt;}
.y6c_c01088{bottom:444.880517pt;}
.y6d_c01088{bottom:445.344165pt;}
.y6e_c01088{bottom:445.769781pt;}
.y6f_c01088{bottom:446.006549pt;}
.y70_c01088{bottom:446.349173pt;}
.y71_c01088{bottom:446.700853pt;}
.y72_c01088{bottom:447.550293pt;}
.y73_c01088{bottom:447.717429pt;}
.y74_c01088{bottom:447.985381pt;}
.y5d_c01088{bottom:463.437728pt;}
.y5e_c01088{bottom:463.875456pt;}
.y5f_c01088{bottom:464.611648pt;}
.y60_c01088{bottom:464.765008pt;}
.y61_c01088{bottom:465.025184pt;}
.y62_c01088{bottom:465.324512pt;}
.y63_c01088{bottom:465.690000pt;}
.y64_c01088{bottom:466.199792pt;}
.y65_c01088{bottom:466.605328pt;}
.y66_c01088{bottom:466.988928pt;}
.y67_c01088{bottom:467.300080pt;}
.y68_c01088{bottom:467.884816pt;}
.y4f_c01088{bottom:484.079093pt;}
.y50_c01088{bottom:484.355733pt;}
.y51_c01088{bottom:485.050277pt;}
.y52_c01088{bottom:485.231285pt;}
.y53_c01088{bottom:485.548309pt;}
.y54_c01088{bottom:485.989093pt;}
.y55_c01088{bottom:486.150053pt;}
.y56_c01088{bottom:486.348869pt;}
.y57_c01088{bottom:486.630501pt;}
.y58_c01088{bottom:487.126405pt;}
.y59_c01088{bottom:487.549141pt;}
.y5a_c01088{bottom:487.921285pt;}
.y5b_c01088{bottom:488.488597pt;}
.y5c_c01088{bottom:488.794277pt;}
.y44_c01088{bottom:504.239323pt;}
.y45_c01088{bottom:504.533509pt;}
.y46_c01088{bottom:505.078203pt;}
.y47_c01088{bottom:505.538571pt;}
.y48_c01088{bottom:505.762880pt;}
.y49_c01088{bottom:506.000491pt;}
.y4a_c01088{bottom:506.315419pt;}
.y4b_c01088{bottom:506.749120pt;}
.y4c_c01088{bottom:508.049312pt;}
.y4d_c01088{bottom:508.377925pt;}
.y4e_c01088{bottom:509.358245pt;}
.y1_c01088{bottom:518.880000pt;}
.y36_c01088{bottom:525.121333pt;}
.y37_c01088{bottom:525.372389pt;}
.y38_c01088{bottom:525.651413pt;}
.y39_c01088{bottom:526.054581pt;}
.y3a_c01088{bottom:526.606389pt;}
.y3b_c01088{bottom:527.209045pt;}
.y3c_c01088{bottom:527.517189pt;}
.y3d_c01088{bottom:527.831749pt;}
.y3e_c01088{bottom:528.220453pt;}
.y3f_c01088{bottom:528.692805pt;}
.y40_c01088{bottom:529.072869pt;}
.y41_c01088{bottom:529.343989pt;}
.y42_c01088{bottom:529.643349pt;}
.y43_c01088{bottom:530.139301pt;}
.y2_c01088{bottom:533.520000pt;}
.y35_c01088{bottom:560.533333pt;}
.y34_c01088{bottom:571.200000pt;}
.y29_c01088{bottom:575.281333pt;}
.y2a_c01088{bottom:575.558667pt;}
.y33_c01088{bottom:575.880000pt;}
.y2b_c01088{bottom:576.092000pt;}
.y2c_c01088{bottom:576.774667pt;}
.y2d_c01088{bottom:576.837333pt;}
.y4_c01088{bottom:577.440000pt;}
.y2e_c01088{bottom:577.516000pt;}
.y2f_c01088{bottom:577.664000pt;}
.y30_c01088{bottom:578.096000pt;}
.y31_c01088{bottom:578.177333pt;}
.y32_c01088{bottom:578.822667pt;}
.y28_c01088{bottom:591.920000pt;}
.y3_c01088{bottom:593.396000pt;}
.y27_c01088{bottom:607.557333pt;}
.y23_c01088{bottom:637.917131pt;}
.y24_c01088{bottom:638.259499pt;}
.y25_c01088{bottom:638.800555pt;}
.y18_c01088{bottom:656.880064pt;}
.y19_c01088{bottom:657.436907pt;}
.y1a_c01088{bottom:657.847360pt;}
.y1b_c01088{bottom:658.266731pt;}
.y1c_c01088{bottom:659.418453pt;}
.y1d_c01088{bottom:660.120341pt;}
.y1e_c01088{bottom:660.497173pt;}
.y1f_c01088{bottom:661.288917pt;}
.y20_c01088{bottom:661.822784pt;}
.y21_c01088{bottom:662.387008pt;}
.y22_c01088{bottom:663.247189pt;}
.yb_c01088{bottom:678.002667pt;}
.yc_c01088{bottom:678.316651pt;}
.yd_c01088{bottom:678.659541pt;}
.ye_c01088{bottom:679.141141pt;}
.yf_c01088{bottom:679.941333pt;}
.y10_c01088{bottom:680.518357pt;}
.y11_c01088{bottom:680.810091pt;}
.y12_c01088{bottom:681.486080pt;}
.y13_c01088{bottom:682.360747pt;}
.y14_c01088{bottom:682.827221pt;}
.y15_c01088{bottom:683.385877pt;}
.y16_c01088{bottom:683.692971pt;}
.y17_c01088{bottom:684.139157pt;}
.ya_c01088{bottom:698.159361pt;}
.y5_c01088{bottom:718.322667pt;}
.y6_c01088{bottom:718.975920pt;}
.y7_c01088{bottom:719.918264pt;}
.y8_c01088{bottom:720.542821pt;}
.y9_c01088{bottom:720.934592pt;}
.y26_c01088{bottom:723.100000pt;}
.hd_c01088{height:19.600000pt;}
.h3_c01088{height:29.866667pt;}
.hc_c01088{height:42.000000pt;}
.h1b_c01088{height:42.003024pt;}
.hb_c01088{height:44.800000pt;}
.h1c_c01088{height:44.803225pt;}
.ha_c01088{height:45.733333pt;}
.he_c01088{height:47.600000pt;}
.h13_c01088{height:55.070631pt;}
.h1d_c01088{height:56.938913pt;}
.h16_c01088{height:59.738381pt;}
.h14_c01088{height:60.671035pt;}
.h19_c01088{height:60.671793pt;}
.h6_c01088{height:60.675432pt;}
.h18_c01088{height:61.605205pt;}
.h7_c01088{height:61.607884pt;}
.h5_c01088{height:61.608901pt;}
.h10_c01088{height:62.537836pt;}
.h15_c01088{height:62.538617pt;}
.h8_c01088{height:62.541337pt;}
.h12_c01088{height:63.471236pt;}
.h17_c01088{height:63.472029pt;}
.h11_c01088{height:64.404637pt;}
.h1a_c01088{height:64.405442pt;}
.h9_c01088{height:67.200000pt;}
.hf_c01088{height:69.071639pt;}
.h4_c01088{height:84.933333pt;}
.h2_c01088{height:103.600000pt;}
.h1_c01088{height:893.333333pt;}
.h0_c01088{height:893.466667pt;}
.w0_c01088{width:657.066667pt;}
.w1_c01088{width:657.333333pt;}
.x0_c01088{left:0.000000pt;}
.x1_c01088{left:41.040000pt;}
.x2_c01088{left:60.000000pt;}
.x3_c01088{left:88.276000pt;}
.x46_c01088{left:90.132000pt;}
.x57_c01088{left:91.104576pt;}
.x76_c01088{left:92.340000pt;}
.x90_c01088{left:93.516741pt;}
.x96_c01088{left:94.798915pt;}
.xa2_c01088{left:97.374667pt;}
.x8_c01088{left:104.588000pt;}
.x79_c01088{left:107.918667pt;}
.x47_c01088{left:111.053333pt;}
.x1d_c01088{left:113.444661pt;}
.xa3_c01088{left:118.978667pt;}
.x91_c01088{left:120.892741pt;}
.x9_c01088{left:124.212000pt;}
.x72_c01088{left:125.430949pt;}
.x4_c01088{left:126.702667pt;}
.x5f_c01088{left:127.826939pt;}
.x7f_c01088{left:128.978136pt;}
.x97_c01088{left:131.729333pt;}
.x48_c01088{left:134.305333pt;}
.x25_c01088{left:135.600000pt;}
.x2f_c01088{left:137.280000pt;}
.x9a_c01088{left:141.261333pt;}
.xa0_c01088{left:143.038843pt;}
.xa_c01088{left:145.642667pt;}
.x15_c01088{left:149.215157pt;}
.x1e_c01088{left:152.095232pt;}
.x37_c01088{left:154.688000pt;}
.x30_c01088{left:156.480000pt;}
.x64_c01088{left:157.624843pt;}
.x80_c01088{left:160.245201pt;}
.x77_c01088{left:164.543211pt;}
.xa1_c01088{left:166.800933pt;}
.x49_c01088{left:167.902667pt;}
.x8d_c01088{left:171.038937pt;}
.x58_c01088{left:172.036576pt;}
.xb_c01088{left:175.742667pt;}
.x69_c01088{left:177.714683pt;}
.xa4_c01088{left:179.165333pt;}
.x84_c01088{left:180.828508pt;}
.x5_c01088{left:182.134667pt;}
.x9b_c01088{left:184.209333pt;}
.x59_c01088{left:187.120576pt;}
.x31_c01088{left:189.840000pt;}
.x26_c01088{left:191.760000pt;}
.x8e_c01088{left:195.789275pt;}
.x85_c01088{left:201.479435pt;}
.x42_c01088{left:202.560000pt;}
.x98_c01088{left:204.218667pt;}
.x52_c01088{left:207.287803pt;}
.x27_c01088{left:212.400000pt;}
.x43_c01088{left:214.320000pt;}
.x32_c01088{left:216.720000pt;}
.x6_c01088{left:218.873333pt;}
.x6a_c01088{left:222.640016pt;}
.x60_c01088{left:223.637605pt;}
.x33_c01088{left:224.640000pt;}
.xc_c01088{left:225.754667pt;}
.x28_c01088{left:228.720000pt;}
.x38_c01088{left:235.757333pt;}
.x9c_c01088{left:237.472000pt;}
.x39_c01088{left:239.962667pt;}
.x7_c01088{left:241.918667pt;}
.x34_c01088{left:243.120000pt;}
.x16_c01088{left:247.408491pt;}
.x61_c01088{left:248.581605pt;}
.x53_c01088{left:249.776624pt;}
.x29_c01088{left:254.160000pt;}
.x86_c01088{left:255.518812pt;}
.x9d_c01088{left:258.084000pt;}
.xd_c01088{left:261.818667pt;}
.x4a_c01088{left:264.108000pt;}
.x2a_c01088{left:270.000000pt;}
.x6b_c01088{left:272.030683pt;}
.x99_c01088{left:273.758667pt;}
.x9e_c01088{left:275.882667pt;}
.x7a_c01088{left:277.138667pt;}
.x62_c01088{left:279.038939pt;}
.xe_c01088{left:280.052000pt;}
.x54_c01088{left:283.140224pt;}
.x3a_c01088{left:285.240000pt;}
.x44_c01088{left:286.320000pt;}
.x4b_c01088{left:289.786667pt;}
.x17_c01088{left:291.276491pt;}
.x3b_c01088{left:295.136000pt;}
.x8a_c01088{left:297.800993pt;}
.x65_c01088{left:299.151509pt;}
.x7b_c01088{left:302.526667pt;}
.x5a_c01088{left:303.721909pt;}
.x2b_c01088{left:305.760000pt;}
.x6c_c01088{left:307.310683pt;}
.x1f_c01088{left:309.840000pt;}
.x45_c01088{left:311.760000pt;}
.x18_c01088{left:314.828491pt;}
.x35_c01088{left:316.080000pt;}
.x66_c01088{left:318.882176pt;}
.x2c_c01088{left:321.360000pt;}
.xf_c01088{left:322.301333pt;}
.x3c_c01088{left:323.904000pt;}
.xa5_c01088{left:326.358667pt;}
.x3d_c01088{left:329.310667pt;}
.x20_c01088{left:330.480000pt;}
.x73_c01088{left:331.877787pt;}
.x2d_c01088{left:336.720000pt;}
.x6d_c01088{left:338.562683pt;}
.x81_c01088{left:340.731541pt;}
.x87_c01088{left:342.389272pt;}
.x5b_c01088{left:345.047243pt;}
.x67_c01088{left:347.434176pt;}
.x4c_c01088{left:348.392000pt;}
.x92_c01088{left:351.536741pt;}
.x7c_c01088{left:352.498667pt;}
.x21_c01088{left:356.160000pt;}
.x36_c01088{left:357.600000pt;}
.x19_c01088{left:364.312491pt;}
.x8f_c01088{left:368.573688pt;}
.x2e_c01088{left:370.080000pt;}
.x3e_c01088{left:372.376000pt;}
.x10_c01088{left:376.968000pt;}
.xa6_c01088{left:379.106667pt;}
.x5c_c01088{left:380.275243pt;}
.x74_c01088{left:381.553195pt;}
.x55_c01088{left:383.155024pt;}
.x88_c01088{left:385.844511pt;}
.x4d_c01088{left:387.754667pt;}
.x9f_c01088{left:388.665333pt;}
.xa7_c01088{left:391.642667pt;}
.x6e_c01088{left:393.781349pt;}
.x3f_c01088{left:396.000000pt;}
.x1a_c01088{left:397.679157pt;}
.x78_c01088{left:402.915771pt;}
.x93_c01088{left:403.867408pt;}
.x11_c01088{left:406.122667pt;}
.x41_c01088{left:407.520000pt;}
.x22_c01088{left:408.720000pt;}
.x5d_c01088{left:411.287243pt;}
.x40_c01088{left:413.040000pt;}
.x7d_c01088{left:414.909333pt;}
.x4e_c01088{left:419.426667pt;}
.xa8_c01088{left:427.856000pt;}
.x1b_c01088{left:432.943157pt;}
.x82_c01088{left:434.100755pt;}
.x23_c01088{left:437.040000pt;}
.x12_c01088{left:441.038667pt;}
.x4f_c01088{left:442.020000pt;}
.x68_c01088{left:447.527509pt;}
.x8b_c01088{left:451.134969pt;}
.x6f_c01088{left:454.008016pt;}
.x24_c01088{left:456.720000pt;}
.x5e_c01088{left:458.563243pt;}
.x13_c01088{left:460.232000pt;}
.x63_c01088{left:461.940272pt;}
.x50_c01088{left:466.966667pt;}
.x94_c01088{left:470.099408pt;}
.x70_c01088{left:478.724016pt;}
.x89_c01088{left:479.927075pt;}
.x56_c01088{left:483.787141pt;}
.x75_c01088{left:485.462613pt;}
.x1c_c01088{left:486.704491pt;}
.x14_c01088{left:488.118667pt;}
.x83_c01088{left:490.745483pt;}
.x95_c01088{left:492.616741pt;}
.x7e_c01088{left:496.456000pt;}
.x71_c01088{left:498.170683pt;}
.x8c_c01088{left:499.368927pt;}
.x51_c01088{left:508.296000pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_2f6c0d3825a5d54c0b922384.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14e_c01089{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);}
.m14f_c01089{transform:matrix(0.017964,-0.000449,0.006248,0.249922,0,0);-ms-transform:matrix(0.017964,-0.000449,0.006248,0.249922,0,0);-webkit-transform:matrix(0.017964,-0.000449,0.006248,0.249922,0,0);}
.m164_c01089{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);}
.md_c01089{transform:matrix(0.031614,-0.000632,0.004999,0.249950,0,0);-ms-transform:matrix(0.031614,-0.000632,0.004999,0.249950,0,0);-webkit-transform:matrix(0.031614,-0.000632,0.004999,0.249950,0,0);}
.m159_c01089{transform:matrix(0.035689,-0.000892,0.006248,0.249922,0,0);-ms-transform:matrix(0.035689,-0.000892,0.006248,0.249922,0,0);-webkit-transform:matrix(0.035689,-0.000892,0.006248,0.249922,0,0);}
.m158_c01089{transform:matrix(0.060281,-0.001507,0.006248,0.249922,0,0);-ms-transform:matrix(0.060281,-0.001507,0.006248,0.249922,0,0);-webkit-transform:matrix(0.060281,-0.001507,0.006248,0.249922,0,0);}
.m153_c01089{transform:matrix(0.069783,-0.001745,0.006248,0.249922,0,0);-ms-transform:matrix(0.069783,-0.001745,0.006248,0.249922,0,0);-webkit-transform:matrix(0.069783,-0.001745,0.006248,0.249922,0,0);}
.ma6_c01089{transform:matrix(0.083878,-0.001678,0.004999,0.249950,0,0);-ms-transform:matrix(0.083878,-0.001678,0.004999,0.249950,0,0);-webkit-transform:matrix(0.083878,-0.001678,0.004999,0.249950,0,0);}
.m15a_c01089{transform:matrix(0.084679,-0.002117,0.006248,0.249922,0,0);-ms-transform:matrix(0.084679,-0.002117,0.006248,0.249922,0,0);-webkit-transform:matrix(0.084679,-0.002117,0.006248,0.249922,0,0);}
.m9d_c01089{transform:matrix(0.116007,-0.002320,0.004999,0.249950,0,0);-ms-transform:matrix(0.116007,-0.002320,0.004999,0.249950,0,0);-webkit-transform:matrix(0.116007,-0.002320,0.004999,0.249950,0,0);}
.m157_c01089{transform:matrix(0.117733,-0.002943,0.006248,0.249922,0,0);-ms-transform:matrix(0.117733,-0.002943,0.006248,0.249922,0,0);-webkit-transform:matrix(0.117733,-0.002943,0.006248,0.249922,0,0);}
.m13_c01089{transform:matrix(0.123565,-0.002471,0.004999,0.249950,0,0);-ms-transform:matrix(0.123565,-0.002471,0.004999,0.249950,0,0);-webkit-transform:matrix(0.123565,-0.002471,0.004999,0.249950,0,0);}
.m160_c01089{transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);}
.m56_c01089{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);}
.m15f_c01089{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);}
.m2_c01089{transform:matrix(0.133618,-0.002672,0.004999,0.249950,0,0);-ms-transform:matrix(0.133618,-0.002672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.133618,-0.002672,0.004999,0.249950,0,0);}
.m155_c01089{transform:matrix(0.136857,-0.003421,0.006248,0.249922,0,0);-ms-transform:matrix(0.136857,-0.003421,0.006248,0.249922,0,0);-webkit-transform:matrix(0.136857,-0.003421,0.006248,0.249922,0,0);}
.mf8_c01089{transform:matrix(0.137982,-0.002760,0.004999,0.249950,0,0);-ms-transform:matrix(0.137982,-0.002760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137982,-0.002760,0.004999,0.249950,0,0);}
.m15e_c01089{transform:matrix(0.139015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139015,0.000000,0.000000,0.250000,0,0);}
.m6d_c01089{transform:matrix(0.139362,-0.002787,0.004999,0.249950,0,0);-ms-transform:matrix(0.139362,-0.002787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.139362,-0.002787,0.004999,0.249950,0,0);}
.m161_c01089{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);}
.m120_c01089{transform:matrix(0.143816,-0.002876,0.004999,0.249950,0,0);-ms-transform:matrix(0.143816,-0.002876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.143816,-0.002876,0.004999,0.249950,0,0);}
.m6f_c01089{transform:matrix(0.144846,-0.002897,0.004999,0.249950,0,0);-ms-transform:matrix(0.144846,-0.002897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.144846,-0.002897,0.004999,0.249950,0,0);}
.mce_c01089{transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);-ms-transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);}
.m12a_c01089{transform:matrix(0.146686,-0.002934,0.004999,0.249950,0,0);-ms-transform:matrix(0.146686,-0.002934,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146686,-0.002934,0.004999,0.249950,0,0);}
.m121_c01089{transform:matrix(0.146916,-0.002938,0.004999,0.249950,0,0);-ms-transform:matrix(0.146916,-0.002938,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146916,-0.002938,0.004999,0.249950,0,0);}
.m36_c01089{transform:matrix(0.147216,-0.002944,0.004999,0.249950,0,0);-ms-transform:matrix(0.147216,-0.002944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147216,-0.002944,0.004999,0.249950,0,0);}
.m139_c01089{transform:matrix(0.147670,-0.002953,0.004999,0.249950,0,0);-ms-transform:matrix(0.147670,-0.002953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147670,-0.002953,0.004999,0.249950,0,0);}
.m117_c01089{transform:matrix(0.148395,-0.002968,0.004999,0.249950,0,0);-ms-transform:matrix(0.148395,-0.002968,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148395,-0.002968,0.004999,0.249950,0,0);}
.m127_c01089{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);}
.m6b_c01089{transform:matrix(0.151980,-0.003040,0.004999,0.249950,0,0);-ms-transform:matrix(0.151980,-0.003040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151980,-0.003040,0.004999,0.249950,0,0);}
.md6_c01089{transform:matrix(0.152450,-0.003049,0.004999,0.249950,0,0);-ms-transform:matrix(0.152450,-0.003049,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152450,-0.003049,0.004999,0.249950,0,0);}
.mc7_c01089{transform:matrix(0.154874,-0.003097,0.004999,0.249950,0,0);-ms-transform:matrix(0.154874,-0.003097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154874,-0.003097,0.004999,0.249950,0,0);}
.m9f_c01089{transform:matrix(0.155104,-0.003102,0.004999,0.249950,0,0);-ms-transform:matrix(0.155104,-0.003102,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155104,-0.003102,0.004999,0.249950,0,0);}
.md1_c01089{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);}
.m50_c01089{transform:matrix(0.156094,-0.003122,0.004999,0.249950,0,0);-ms-transform:matrix(0.156094,-0.003122,0.004999,0.249950,0,0);-webkit-transform:matrix(0.156094,-0.003122,0.004999,0.249950,0,0);}
.mcc_c01089{transform:matrix(0.157339,-0.003147,0.004999,0.249950,0,0);-ms-transform:matrix(0.157339,-0.003147,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157339,-0.003147,0.004999,0.249950,0,0);}
.m12f_c01089{transform:matrix(0.159643,-0.003193,0.004999,0.249950,0,0);-ms-transform:matrix(0.159643,-0.003193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159643,-0.003193,0.004999,0.249950,0,0);}
.m1_c01089{transform:matrix(0.159853,-0.003197,0.004999,0.249950,0,0);-ms-transform:matrix(0.159853,-0.003197,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159853,-0.003197,0.004999,0.249950,0,0);}
.m110_c01089{transform:matrix(0.159898,-0.003198,0.004999,0.249950,0,0);-ms-transform:matrix(0.159898,-0.003198,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159898,-0.003198,0.004999,0.249950,0,0);}
.m10e_c01089{transform:matrix(0.160238,-0.003205,0.004999,0.249950,0,0);-ms-transform:matrix(0.160238,-0.003205,0.004999,0.249950,0,0);-webkit-transform:matrix(0.160238,-0.003205,0.004999,0.249950,0,0);}
.m2d_c01089{transform:matrix(0.161453,-0.003229,0.004999,0.249950,0,0);-ms-transform:matrix(0.161453,-0.003229,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161453,-0.003229,0.004999,0.249950,0,0);}
.mb5_c01089{transform:matrix(0.161898,-0.003238,0.004999,0.249950,0,0);-ms-transform:matrix(0.161898,-0.003238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161898,-0.003238,0.004999,0.249950,0,0);}
.mfd_c01089{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);}
.mbe_c01089{transform:matrix(0.162178,-0.003244,0.004999,0.249950,0,0);-ms-transform:matrix(0.162178,-0.003244,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162178,-0.003244,0.004999,0.249950,0,0);}
.m100_c01089{transform:matrix(0.162942,-0.003259,0.004999,0.249950,0,0);-ms-transform:matrix(0.162942,-0.003259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162942,-0.003259,0.004999,0.249950,0,0);}
.m134_c01089{transform:matrix(0.163252,-0.003265,0.004999,0.249950,0,0);-ms-transform:matrix(0.163252,-0.003265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163252,-0.003265,0.004999,0.249950,0,0);}
.me9_c01089{transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);-ms-transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163467,-0.003269,0.004999,0.249950,0,0);}
.m106_c01089{transform:matrix(0.163722,-0.003274,0.004999,0.249950,0,0);-ms-transform:matrix(0.163722,-0.003274,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163722,-0.003274,0.004999,0.249950,0,0);}
.me6_c01089{transform:matrix(0.164607,-0.003292,0.004999,0.249950,0,0);-ms-transform:matrix(0.164607,-0.003292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164607,-0.003292,0.004999,0.249950,0,0);}
.m2a_c01089{transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);-ms-transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.164707,-0.003294,0.004999,0.249950,0,0);}
.mc2_c01089{transform:matrix(0.165027,-0.003301,0.004999,0.249950,0,0);-ms-transform:matrix(0.165027,-0.003301,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165027,-0.003301,0.004999,0.249950,0,0);}
.m7d_c01089{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);}
.m11e_c01089{transform:matrix(0.165867,-0.003317,0.004999,0.249950,0,0);-ms-transform:matrix(0.165867,-0.003317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165867,-0.003317,0.004999,0.249950,0,0);}
.m12c_c01089{transform:matrix(0.166072,-0.003321,0.004999,0.249950,0,0);-ms-transform:matrix(0.166072,-0.003321,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166072,-0.003321,0.004999,0.249950,0,0);}
.me4_c01089{transform:matrix(0.166187,-0.003324,0.004999,0.249950,0,0);-ms-transform:matrix(0.166187,-0.003324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166187,-0.003324,0.004999,0.249950,0,0);}
.m14b_c01089{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);}
.m12e_c01089{transform:matrix(0.167027,-0.003341,0.004999,0.249950,0,0);-ms-transform:matrix(0.167027,-0.003341,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167027,-0.003341,0.004999,0.249950,0,0);}
.m5d_c01089{transform:matrix(0.167457,-0.003349,0.004999,0.249950,0,0);-ms-transform:matrix(0.167457,-0.003349,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167457,-0.003349,0.004999,0.249950,0,0);}
.m11_c01089{transform:matrix(0.167926,-0.003359,0.004999,0.249950,0,0);-ms-transform:matrix(0.167926,-0.003359,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167926,-0.003359,0.004999,0.249950,0,0);}
.m138_c01089{transform:matrix(0.167941,-0.003359,0.004999,0.249950,0,0);-ms-transform:matrix(0.167941,-0.003359,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167941,-0.003359,0.004999,0.249950,0,0);}
.m10_c01089{transform:matrix(0.168406,-0.003368,0.004999,0.249950,0,0);-ms-transform:matrix(0.168406,-0.003368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168406,-0.003368,0.004999,0.249950,0,0);}
.m11f_c01089{transform:matrix(0.168731,-0.003375,0.004999,0.249950,0,0);-ms-transform:matrix(0.168731,-0.003375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168731,-0.003375,0.004999,0.249950,0,0);}
.m44_c01089{transform:matrix(0.168861,-0.003377,0.004999,0.249950,0,0);-ms-transform:matrix(0.168861,-0.003377,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168861,-0.003377,0.004999,0.249950,0,0);}
.mbc_c01089{transform:matrix(0.169106,-0.003382,0.004999,0.249950,0,0);-ms-transform:matrix(0.169106,-0.003382,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169106,-0.003382,0.004999,0.249950,0,0);}
.m8a_c01089{transform:matrix(0.170086,-0.003402,0.004999,0.249950,0,0);-ms-transform:matrix(0.170086,-0.003402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170086,-0.003402,0.004999,0.249950,0,0);}
.m59_c01089{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);}
.m146_c01089{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);}
.m13c_c01089{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);}
.m119_c01089{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);}
.m35_c01089{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);}
.m67_c01089{transform:matrix(0.170781,-0.003416,0.004999,0.249950,0,0);-ms-transform:matrix(0.170781,-0.003416,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170781,-0.003416,0.004999,0.249950,0,0);}
.m135_c01089{transform:matrix(0.170936,-0.003419,0.004999,0.249950,0,0);-ms-transform:matrix(0.170936,-0.003419,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170936,-0.003419,0.004999,0.249950,0,0);}
.m64_c01089{transform:matrix(0.171091,-0.003422,0.004999,0.249950,0,0);-ms-transform:matrix(0.171091,-0.003422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171091,-0.003422,0.004999,0.249950,0,0);}
.m145_c01089{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m141_c01089{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);}
.m31_c01089{transform:matrix(0.173000,-0.003460,0.004999,0.249950,0,0);-ms-transform:matrix(0.173000,-0.003460,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173000,-0.003460,0.004999,0.249950,0,0);}
.mc_c01089{transform:matrix(0.173930,-0.003479,0.004999,0.249950,0,0);-ms-transform:matrix(0.173930,-0.003479,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173930,-0.003479,0.004999,0.249950,0,0);}
.m109_c01089{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);}
.m51_c01089{transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);-ms-transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174070,-0.003481,0.004999,0.249950,0,0);}
.m94_c01089{transform:matrix(0.174300,-0.003486,0.004999,0.249950,0,0);-ms-transform:matrix(0.174300,-0.003486,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174300,-0.003486,0.004999,0.249950,0,0);}
.m1f_c01089{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);}
.m37_c01089{transform:matrix(0.174500,-0.003490,0.004999,0.249950,0,0);-ms-transform:matrix(0.174500,-0.003490,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174500,-0.003490,0.004999,0.249950,0,0);}
.mca_c01089{transform:matrix(0.174660,-0.003493,0.004999,0.249950,0,0);-ms-transform:matrix(0.174660,-0.003493,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174660,-0.003493,0.004999,0.249950,0,0);}
.mb2_c01089{transform:matrix(0.174995,-0.003500,0.004999,0.249950,0,0);-ms-transform:matrix(0.174995,-0.003500,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174995,-0.003500,0.004999,0.249950,0,0);}
.mcd_c01089{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);}
.m1e_c01089{transform:matrix(0.175635,-0.003513,0.004999,0.249950,0,0);-ms-transform:matrix(0.175635,-0.003513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175635,-0.003513,0.004999,0.249950,0,0);}
.mdc_c01089{transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-ms-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);}
.m10c_c01089{transform:matrix(0.175700,-0.003514,0.004999,0.249950,0,0);-ms-transform:matrix(0.175700,-0.003514,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175700,-0.003514,0.004999,0.249950,0,0);}
.m105_c01089{transform:matrix(0.175885,-0.003518,0.004999,0.249950,0,0);-ms-transform:matrix(0.175885,-0.003518,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175885,-0.003518,0.004999,0.249950,0,0);}
.m8f_c01089{transform:matrix(0.176055,-0.003521,0.004999,0.249950,0,0);-ms-transform:matrix(0.176055,-0.003521,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176055,-0.003521,0.004999,0.249950,0,0);}
.m68_c01089{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);}
.m143_c01089{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);}
.mba_c01089{transform:matrix(0.177275,-0.003545,0.004999,0.249950,0,0);-ms-transform:matrix(0.177275,-0.003545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177275,-0.003545,0.004999,0.249950,0,0);}
.mf0_c01089{transform:matrix(0.177365,-0.003547,0.004999,0.249950,0,0);-ms-transform:matrix(0.177365,-0.003547,0.004999,0.249950,0,0);-webkit-transform:matrix(0.177365,-0.003547,0.004999,0.249950,0,0);}
.m83_c01089{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);}
.med_c01089{transform:matrix(0.178654,-0.003573,0.004999,0.249950,0,0);-ms-transform:matrix(0.178654,-0.003573,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178654,-0.003573,0.004999,0.249950,0,0);}
.m13a_c01089{transform:matrix(0.178694,-0.003574,0.004999,0.249950,0,0);-ms-transform:matrix(0.178694,-0.003574,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178694,-0.003574,0.004999,0.249950,0,0);}
.m2f_c01089{transform:matrix(0.179089,-0.003582,0.004999,0.249950,0,0);-ms-transform:matrix(0.179089,-0.003582,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179089,-0.003582,0.004999,0.249950,0,0);}
.m18_c01089{transform:matrix(0.179119,-0.003582,0.004999,0.249950,0,0);-ms-transform:matrix(0.179119,-0.003582,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179119,-0.003582,0.004999,0.249950,0,0);}
.m8_c01089{transform:matrix(0.179734,-0.003595,0.004999,0.249950,0,0);-ms-transform:matrix(0.179734,-0.003595,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179734,-0.003595,0.004999,0.249950,0,0);}
.m5f_c01089{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);}
.m5a_c01089{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);}
.m26_c01089{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);}
.mf9_c01089{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);}
.m113_c01089{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);}
.m1b_c01089{transform:matrix(0.181174,-0.003623,0.004999,0.249950,0,0);-ms-transform:matrix(0.181174,-0.003623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181174,-0.003623,0.004999,0.249950,0,0);}
.m81_c01089{transform:matrix(0.181274,-0.003625,0.004999,0.249950,0,0);-ms-transform:matrix(0.181274,-0.003625,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181274,-0.003625,0.004999,0.249950,0,0);}
.m122_c01089{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);}
.m123_c01089{transform:matrix(0.181414,-0.003628,0.004999,0.249950,0,0);-ms-transform:matrix(0.181414,-0.003628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181414,-0.003628,0.004999,0.249950,0,0);}
.mdb_c01089{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);}
.m89_c01089{transform:matrix(0.182339,-0.003647,0.004999,0.249950,0,0);-ms-transform:matrix(0.182339,-0.003647,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182339,-0.003647,0.004999,0.249950,0,0);}
.m78_c01089{transform:matrix(0.182663,-0.003653,0.004999,0.249950,0,0);-ms-transform:matrix(0.182663,-0.003653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182663,-0.003653,0.004999,0.249950,0,0);}
.m11a_c01089{transform:matrix(0.183163,-0.003663,0.004999,0.249950,0,0);-ms-transform:matrix(0.183163,-0.003663,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183163,-0.003663,0.004999,0.249950,0,0);}
.md7_c01089{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);}
.m5_c01089{transform:matrix(0.183633,-0.003673,0.004999,0.249950,0,0);-ms-transform:matrix(0.183633,-0.003673,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183633,-0.003673,0.004999,0.249950,0,0);}
.m77_c01089{transform:matrix(0.183868,-0.003677,0.004999,0.249950,0,0);-ms-transform:matrix(0.183868,-0.003677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183868,-0.003677,0.004999,0.249950,0,0);}
.mb1_c01089{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);}
.mc0_c01089{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);}
.m102_c01089{transform:matrix(0.184758,-0.003695,0.004999,0.249950,0,0);-ms-transform:matrix(0.184758,-0.003695,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184758,-0.003695,0.004999,0.249950,0,0);}
.me8_c01089{transform:matrix(0.184993,-0.003700,0.004999,0.249950,0,0);-ms-transform:matrix(0.184993,-0.003700,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184993,-0.003700,0.004999,0.249950,0,0);}
.mc8_c01089{transform:matrix(0.185073,-0.003701,0.004999,0.249950,0,0);-ms-transform:matrix(0.185073,-0.003701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185073,-0.003701,0.004999,0.249950,0,0);}
.m29_c01089{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);}
.m12b_c01089{transform:matrix(0.185128,-0.003703,0.004999,0.249950,0,0);-ms-transform:matrix(0.185128,-0.003703,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185128,-0.003703,0.004999,0.249950,0,0);}
.m10d_c01089{transform:matrix(0.185243,-0.003705,0.004999,0.249950,0,0);-ms-transform:matrix(0.185243,-0.003705,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185243,-0.003705,0.004999,0.249950,0,0);}
.m48_c01089{transform:matrix(0.185393,-0.003708,0.004999,0.249950,0,0);-ms-transform:matrix(0.185393,-0.003708,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185393,-0.003708,0.004999,0.249950,0,0);}
.mef_c01089{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);}
.m11d_c01089{transform:matrix(0.185718,-0.003714,0.004999,0.249950,0,0);-ms-transform:matrix(0.185718,-0.003714,0.004999,0.249950,0,0);-webkit-transform:matrix(0.185718,-0.003714,0.004999,0.249950,0,0);}
.m69_c01089{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);}
.mdd_c01089{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);}
.mc1_c01089{transform:matrix(0.186243,-0.003725,0.004999,0.249950,0,0);-ms-transform:matrix(0.186243,-0.003725,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186243,-0.003725,0.004999,0.249950,0,0);}
.m73_c01089{transform:matrix(0.186853,-0.003737,0.004999,0.249950,0,0);-ms-transform:matrix(0.186853,-0.003737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186853,-0.003737,0.004999,0.249950,0,0);}
.m108_c01089{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);}
.mf2_c01089{transform:matrix(0.187757,-0.003755,0.004999,0.249950,0,0);-ms-transform:matrix(0.187757,-0.003755,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187757,-0.003755,0.004999,0.249950,0,0);}
.m21_c01089{transform:matrix(0.187817,-0.003756,0.004999,0.249950,0,0);-ms-transform:matrix(0.187817,-0.003756,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187817,-0.003756,0.004999,0.249950,0,0);}
.mb4_c01089{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);}
.m3e_c01089{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);}
.mb0_c01089{transform:matrix(0.188012,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.188012,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188012,-0.003760,0.004999,0.249950,0,0);}
.m7c_c01089{transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);-ms-transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188182,-0.003764,0.004999,0.249950,0,0);}
.m13e_c01089{transform:matrix(0.189027,-0.003781,0.004999,0.249950,0,0);-ms-transform:matrix(0.189027,-0.003781,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189027,-0.003781,0.004999,0.249950,0,0);}
.m24_c01089{transform:matrix(0.189052,-0.003781,0.004999,0.249950,0,0);-ms-transform:matrix(0.189052,-0.003781,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189052,-0.003781,0.004999,0.249950,0,0);}
.mf3_c01089{transform:matrix(0.189202,-0.003784,0.004999,0.249950,0,0);-ms-transform:matrix(0.189202,-0.003784,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189202,-0.003784,0.004999,0.249950,0,0);}
.m4_c01089{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);}
.m76_c01089{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);}
.mb9_c01089{transform:matrix(0.189777,-0.003796,0.004999,0.249950,0,0);-ms-transform:matrix(0.189777,-0.003796,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189777,-0.003796,0.004999,0.249950,0,0);}
.mec_c01089{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);}
.m98_c01089{transform:matrix(0.189877,-0.003798,0.004999,0.249950,0,0);-ms-transform:matrix(0.189877,-0.003798,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189877,-0.003798,0.004999,0.249950,0,0);}
.me1_c01089{transform:matrix(0.190137,-0.003803,0.004999,0.249950,0,0);-ms-transform:matrix(0.190137,-0.003803,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190137,-0.003803,0.004999,0.249950,0,0);}
.m144_c01089{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);}
.m165_c01089{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);}
.m14a_c01089{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);}
.mff_c01089{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);}
.mbb_c01089{transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);-ms-transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190767,-0.003815,0.004999,0.249950,0,0);}
.m12_c01089{transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);-ms-transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190887,-0.003818,0.004999,0.249950,0,0);}
.m9_c01089{transform:matrix(0.191032,-0.003821,0.004999,0.249950,0,0);-ms-transform:matrix(0.191032,-0.003821,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191032,-0.003821,0.004999,0.249950,0,0);}
.ma1_c01089{transform:matrix(0.191147,-0.003823,0.004999,0.249950,0,0);-ms-transform:matrix(0.191147,-0.003823,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191147,-0.003823,0.004999,0.249950,0,0);}
.m25_c01089{transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-ms-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191537,-0.003831,0.004999,0.249950,0,0);}
.m2c_c01089{transform:matrix(0.191567,-0.003831,0.004999,0.249950,0,0);-ms-transform:matrix(0.191567,-0.003831,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191567,-0.003831,0.004999,0.249950,0,0);}
.m129_c01089{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);}
.m147_c01089{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);}
.mcf_c01089{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);}
.m27_c01089{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);}
.mfc_c01089{transform:matrix(0.192022,-0.003840,0.004999,0.249950,0,0);-ms-transform:matrix(0.192022,-0.003840,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192022,-0.003840,0.004999,0.249950,0,0);}
.mb7_c01089{transform:matrix(0.192157,-0.003843,0.004999,0.249950,0,0);-ms-transform:matrix(0.192157,-0.003843,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192157,-0.003843,0.004999,0.249950,0,0);}
.m7b_c01089{transform:matrix(0.192212,-0.003844,0.004999,0.249950,0,0);-ms-transform:matrix(0.192212,-0.003844,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192212,-0.003844,0.004999,0.249950,0,0);}
.m93_c01089{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);}
.mbf_c01089{transform:matrix(0.192821,-0.003856,0.004999,0.249950,0,0);-ms-transform:matrix(0.192821,-0.003856,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192821,-0.003856,0.004999,0.249950,0,0);}
.m70_c01089{transform:matrix(0.193036,-0.003861,0.004999,0.249950,0,0);-ms-transform:matrix(0.193036,-0.003861,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193036,-0.003861,0.004999,0.249950,0,0);}
.m13d_c01089{transform:matrix(0.193276,-0.003866,0.004999,0.249950,0,0);-ms-transform:matrix(0.193276,-0.003866,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193276,-0.003866,0.004999,0.249950,0,0);}
.m150_c01089{transform:matrix(0.193664,-0.004842,0.006248,0.249922,0,0);-ms-transform:matrix(0.193664,-0.004842,0.006248,0.249922,0,0);-webkit-transform:matrix(0.193664,-0.004842,0.006248,0.249922,0,0);}
.mcb_c01089{transform:matrix(0.193666,-0.003873,0.004999,0.249950,0,0);-ms-transform:matrix(0.193666,-0.003873,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193666,-0.003873,0.004999,0.249950,0,0);}
.m63_c01089{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);}
.m7a_c01089{transform:matrix(0.193796,-0.003876,0.004999,0.249950,0,0);-ms-transform:matrix(0.193796,-0.003876,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193796,-0.003876,0.004999,0.249950,0,0);}
.m39_c01089{transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);-ms-transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);}
.ma_c01089{transform:matrix(0.194016,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.194016,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194016,-0.003880,0.004999,0.249950,0,0);}
.m2e_c01089{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);}
.m86_c01089{transform:matrix(0.194141,-0.003883,0.004999,0.249950,0,0);-ms-transform:matrix(0.194141,-0.003883,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194141,-0.003883,0.004999,0.249950,0,0);}
.m99_c01089{transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);-ms-transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194486,-0.003890,0.004999,0.249950,0,0);}
.ma2_c01089{transform:matrix(0.195031,-0.003901,0.004999,0.249950,0,0);-ms-transform:matrix(0.195031,-0.003901,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195031,-0.003901,0.004999,0.249950,0,0);}
.m1a_c01089{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);}
.m12d_c01089{transform:matrix(0.195496,-0.003910,0.004999,0.249950,0,0);-ms-transform:matrix(0.195496,-0.003910,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195496,-0.003910,0.004999,0.249950,0,0);}
.ma9_c01089{transform:matrix(0.195511,-0.003910,0.004999,0.249950,0,0);-ms-transform:matrix(0.195511,-0.003910,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195511,-0.003910,0.004999,0.249950,0,0);}
.m7e_c01089{transform:matrix(0.195566,-0.003911,0.004999,0.249950,0,0);-ms-transform:matrix(0.195566,-0.003911,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195566,-0.003911,0.004999,0.249950,0,0);}
.m72_c01089{transform:matrix(0.195586,-0.003912,0.004999,0.249950,0,0);-ms-transform:matrix(0.195586,-0.003912,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195586,-0.003912,0.004999,0.249950,0,0);}
.m60_c01089{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);}
.m104_c01089{transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);-ms-transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);}
.m3c_c01089{transform:matrix(0.196136,-0.003923,0.004999,0.249950,0,0);-ms-transform:matrix(0.196136,-0.003923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196136,-0.003923,0.004999,0.249950,0,0);}
.m20_c01089{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);}
.mfe_c01089{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);}
.mc9_c01089{transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);-ms-transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);}
.mc6_c01089{transform:matrix(0.197176,-0.003944,0.004999,0.249950,0,0);-ms-transform:matrix(0.197176,-0.003944,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197176,-0.003944,0.004999,0.249950,0,0);}
.m128_c01089{transform:matrix(0.197670,-0.003953,0.004999,0.249950,0,0);-ms-transform:matrix(0.197670,-0.003953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197670,-0.003953,0.004999,0.249950,0,0);}
.m14_c01089{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);}
.mdf_c01089{transform:matrix(0.197840,-0.003957,0.004999,0.249950,0,0);-ms-transform:matrix(0.197840,-0.003957,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197840,-0.003957,0.004999,0.249950,0,0);}
.m136_c01089{transform:matrix(0.197925,-0.003959,0.004999,0.249950,0,0);-ms-transform:matrix(0.197925,-0.003959,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197925,-0.003959,0.004999,0.249950,0,0);}
.mbd_c01089{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);}
.m118_c01089{transform:matrix(0.198185,-0.003964,0.004999,0.249950,0,0);-ms-transform:matrix(0.198185,-0.003964,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198185,-0.003964,0.004999,0.249950,0,0);}
.m52_c01089{transform:matrix(0.198250,-0.003965,0.004999,0.249950,0,0);-ms-transform:matrix(0.198250,-0.003965,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198250,-0.003965,0.004999,0.249950,0,0);}
.maa_c01089{transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);}
.m11b_c01089{transform:matrix(0.198505,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198505,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198505,-0.003970,0.004999,0.249950,0,0);}
.m7_c01089{transform:matrix(0.198660,-0.003973,0.004999,0.249950,0,0);-ms-transform:matrix(0.198660,-0.003973,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198660,-0.003973,0.004999,0.249950,0,0);}
.m111_c01089{transform:matrix(0.198945,-0.003979,0.004999,0.249950,0,0);-ms-transform:matrix(0.198945,-0.003979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198945,-0.003979,0.004999,0.249950,0,0);}
.m9a_c01089{transform:matrix(0.198950,-0.003979,0.004999,0.249950,0,0);-ms-transform:matrix(0.198950,-0.003979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198950,-0.003979,0.004999,0.249950,0,0);}
.m30_c01089{transform:matrix(0.199090,-0.003982,0.004999,0.249950,0,0);-ms-transform:matrix(0.199090,-0.003982,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199090,-0.003982,0.004999,0.249950,0,0);}
.m90_c01089{transform:matrix(0.200100,-0.004002,0.004999,0.249950,0,0);-ms-transform:matrix(0.200100,-0.004002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200100,-0.004002,0.004999,0.249950,0,0);}
.m10a_c01089{transform:matrix(0.200135,-0.004003,0.004999,0.249950,0,0);-ms-transform:matrix(0.200135,-0.004003,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200135,-0.004003,0.004999,0.249950,0,0);}
.m137_c01089{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);}
.m114_c01089{transform:matrix(0.200860,-0.004017,0.004999,0.249950,0,0);-ms-transform:matrix(0.200860,-0.004017,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200860,-0.004017,0.004999,0.249950,0,0);}
.m107_c01089{transform:matrix(0.201010,-0.004020,0.004999,0.249950,0,0);-ms-transform:matrix(0.201010,-0.004020,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201010,-0.004020,0.004999,0.249950,0,0);}
.m79_c01089{transform:matrix(0.201055,-0.004021,0.004999,0.249950,0,0);-ms-transform:matrix(0.201055,-0.004021,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201055,-0.004021,0.004999,0.249950,0,0);}
.m2b_c01089{transform:matrix(0.201160,-0.004023,0.004999,0.249950,0,0);-ms-transform:matrix(0.201160,-0.004023,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201160,-0.004023,0.004999,0.249950,0,0);}
.m133_c01089{transform:matrix(0.201215,-0.004024,0.004999,0.249950,0,0);-ms-transform:matrix(0.201215,-0.004024,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201215,-0.004024,0.004999,0.249950,0,0);}
.m9c_c01089{transform:matrix(0.201490,-0.004030,0.004999,0.249950,0,0);-ms-transform:matrix(0.201490,-0.004030,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201490,-0.004030,0.004999,0.249950,0,0);}
.m16_c01089{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);}
.ma0_c01089{transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);-ms-transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);}
.m13b_c01089{transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);-ms-transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202365,-0.004047,0.004999,0.249950,0,0);}
.m92_c01089{transform:matrix(0.202370,-0.004047,0.004999,0.249950,0,0);-ms-transform:matrix(0.202370,-0.004047,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202370,-0.004047,0.004999,0.249950,0,0);}
.m5e_c01089{transform:matrix(0.202415,-0.004048,0.004999,0.249950,0,0);-ms-transform:matrix(0.202415,-0.004048,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202415,-0.004048,0.004999,0.249950,0,0);}
.m97_c01089{transform:matrix(0.202500,-0.004050,0.004999,0.249950,0,0);-ms-transform:matrix(0.202500,-0.004050,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202500,-0.004050,0.004999,0.249950,0,0);}
.m149_c01089{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);}
.m54_c01089{transform:matrix(0.202844,-0.004057,0.004999,0.249950,0,0);-ms-transform:matrix(0.202844,-0.004057,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202844,-0.004057,0.004999,0.249950,0,0);}
.m85_c01089{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);}
.m124_c01089{transform:matrix(0.203824,-0.004076,0.004999,0.249950,0,0);-ms-transform:matrix(0.203824,-0.004076,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203824,-0.004076,0.004999,0.249950,0,0);}
.m162_c01089{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);}
.mde_c01089{transform:matrix(0.204164,-0.004083,0.004999,0.249950,0,0);-ms-transform:matrix(0.204164,-0.004083,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204164,-0.004083,0.004999,0.249950,0,0);}
.m3f_c01089{transform:matrix(0.204254,-0.004085,0.004999,0.249950,0,0);-ms-transform:matrix(0.204254,-0.004085,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204254,-0.004085,0.004999,0.249950,0,0);}
.m53_c01089{transform:matrix(0.204524,-0.004090,0.004999,0.249950,0,0);-ms-transform:matrix(0.204524,-0.004090,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204524,-0.004090,0.004999,0.249950,0,0);}
.md8_c01089{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);}
.m23_c01089{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);}
.mac_c01089{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);}
.m74_c01089{transform:matrix(0.206584,-0.004132,0.004999,0.249950,0,0);-ms-transform:matrix(0.206584,-0.004132,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206584,-0.004132,0.004999,0.249950,0,0);}
.m71_c01089{transform:matrix(0.206839,-0.004137,0.004999,0.249950,0,0);-ms-transform:matrix(0.206839,-0.004137,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206839,-0.004137,0.004999,0.249950,0,0);}
.m5b_c01089{transform:matrix(0.207184,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207184,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207184,-0.004144,0.004999,0.249950,0,0);}
.me3_c01089{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);}
.md9_c01089{transform:matrix(0.207264,-0.004145,0.004999,0.249950,0,0);-ms-transform:matrix(0.207264,-0.004145,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207264,-0.004145,0.004999,0.249950,0,0);}
.m19_c01089{transform:matrix(0.208133,-0.004163,0.004999,0.249950,0,0);-ms-transform:matrix(0.208133,-0.004163,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208133,-0.004163,0.004999,0.249950,0,0);}
.mda_c01089{transform:matrix(0.208728,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208728,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208728,-0.004175,0.004999,0.249950,0,0);}
.m28_c01089{transform:matrix(0.208868,-0.004177,0.004999,0.249950,0,0);-ms-transform:matrix(0.208868,-0.004177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208868,-0.004177,0.004999,0.249950,0,0);}
.m131_c01089{transform:matrix(0.208973,-0.004179,0.004999,0.249950,0,0);-ms-transform:matrix(0.208973,-0.004179,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208973,-0.004179,0.004999,0.249950,0,0);}
.m65_c01089{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);}
.m3_c01089{transform:matrix(0.209408,-0.004188,0.004999,0.249950,0,0);-ms-transform:matrix(0.209408,-0.004188,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209408,-0.004188,0.004999,0.249950,0,0);}
.m22_c01089{transform:matrix(0.209498,-0.004190,0.004999,0.249950,0,0);-ms-transform:matrix(0.209498,-0.004190,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209498,-0.004190,0.004999,0.249950,0,0);}
.m3a_c01089{transform:matrix(0.209598,-0.004192,0.004999,0.249950,0,0);-ms-transform:matrix(0.209598,-0.004192,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209598,-0.004192,0.004999,0.249950,0,0);}
.m34_c01089{transform:matrix(0.210348,-0.004207,0.004999,0.249950,0,0);-ms-transform:matrix(0.210348,-0.004207,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210348,-0.004207,0.004999,0.249950,0,0);}
.m55_c01089{transform:matrix(0.210503,-0.004210,0.004999,0.249950,0,0);-ms-transform:matrix(0.210503,-0.004210,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210503,-0.004210,0.004999,0.249950,0,0);}
.me7_c01089{transform:matrix(0.211563,-0.004231,0.004999,0.249950,0,0);-ms-transform:matrix(0.211563,-0.004231,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211563,-0.004231,0.004999,0.249950,0,0);}
.m61_c01089{transform:matrix(0.211758,-0.004235,0.004999,0.249950,0,0);-ms-transform:matrix(0.211758,-0.004235,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211758,-0.004235,0.004999,0.249950,0,0);}
.mea_c01089{transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);-ms-transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);}
.mb6_c01089{transform:matrix(0.212043,-0.004241,0.004999,0.249950,0,0);-ms-transform:matrix(0.212043,-0.004241,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212043,-0.004241,0.004999,0.249950,0,0);}
.m10f_c01089{transform:matrix(0.212138,-0.004243,0.004999,0.249950,0,0);-ms-transform:matrix(0.212138,-0.004243,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212138,-0.004243,0.004999,0.249950,0,0);}
.mf7_c01089{transform:matrix(0.212318,-0.004246,0.004999,0.249950,0,0);-ms-transform:matrix(0.212318,-0.004246,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212318,-0.004246,0.004999,0.249950,0,0);}
.meb_c01089{transform:matrix(0.212642,-0.004253,0.004999,0.249950,0,0);-ms-transform:matrix(0.212642,-0.004253,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212642,-0.004253,0.004999,0.249950,0,0);}
.m3b_c01089{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);}
.m6a_c01089{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);}
.m8e_c01089{transform:matrix(0.213282,-0.004266,0.004999,0.249950,0,0);-ms-transform:matrix(0.213282,-0.004266,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213282,-0.004266,0.004999,0.249950,0,0);}
.m115_c01089{transform:matrix(0.213442,-0.004269,0.004999,0.249950,0,0);-ms-transform:matrix(0.213442,-0.004269,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213442,-0.004269,0.004999,0.249950,0,0);}
.m6e_c01089{transform:matrix(0.213667,-0.004273,0.004999,0.249950,0,0);-ms-transform:matrix(0.213667,-0.004273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213667,-0.004273,0.004999,0.249950,0,0);}
.mf4_c01089{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);}
.m91_c01089{transform:matrix(0.213977,-0.004280,0.004999,0.249950,0,0);-ms-transform:matrix(0.213977,-0.004280,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213977,-0.004280,0.004999,0.249950,0,0);}
.m103_c01089{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);}
.m4d_c01089{transform:matrix(0.215477,-0.004310,0.004999,0.249950,0,0);-ms-transform:matrix(0.215477,-0.004310,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215477,-0.004310,0.004999,0.249950,0,0);}
.md4_c01089{transform:matrix(0.215572,-0.004311,0.004999,0.249950,0,0);-ms-transform:matrix(0.215572,-0.004311,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215572,-0.004311,0.004999,0.249950,0,0);}
.m84_c01089{transform:matrix(0.215872,-0.004317,0.004999,0.249950,0,0);-ms-transform:matrix(0.215872,-0.004317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215872,-0.004317,0.004999,0.249950,0,0);}
.m101_c01089{transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);-ms-transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);}
.md0_c01089{transform:matrix(0.216567,-0.004331,0.004999,0.249950,0,0);-ms-transform:matrix(0.216567,-0.004331,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216567,-0.004331,0.004999,0.249950,0,0);}
.m17_c01089{transform:matrix(0.216652,-0.004333,0.004999,0.249950,0,0);-ms-transform:matrix(0.216652,-0.004333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216652,-0.004333,0.004999,0.249950,0,0);}
.md3_c01089{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);}
.mfa_c01089{transform:matrix(0.217007,-0.004340,0.004999,0.249950,0,0);-ms-transform:matrix(0.217007,-0.004340,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217007,-0.004340,0.004999,0.249950,0,0);}
.m62_c01089{transform:matrix(0.217022,-0.004340,0.004999,0.249950,0,0);-ms-transform:matrix(0.217022,-0.004340,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217022,-0.004340,0.004999,0.249950,0,0);}
.mee_c01089{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);}
.m45_c01089{transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);-ms-transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218346,-0.004367,0.004999,0.249950,0,0);}
.m1c_c01089{transform:matrix(0.218516,-0.004370,0.004999,0.249950,0,0);-ms-transform:matrix(0.218516,-0.004370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218516,-0.004370,0.004999,0.249950,0,0);}
.m0_c01089{transform:matrix(0.218916,-0.004378,0.004999,0.249950,0,0);-ms-transform:matrix(0.218916,-0.004378,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218916,-0.004378,0.004999,0.249950,0,0);}
.m58_c01089{transform:matrix(0.219666,-0.004393,0.004999,0.249950,0,0);-ms-transform:matrix(0.219666,-0.004393,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219666,-0.004393,0.004999,0.249950,0,0);}
.m6_c01089{transform:matrix(0.220626,-0.004413,0.004999,0.249950,0,0);-ms-transform:matrix(0.220626,-0.004413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220626,-0.004413,0.004999,0.249950,0,0);}
.m82_c01089{transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);-ms-transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);}
.ma3_c01089{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);}
.m9b_c01089{transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);-ms-transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221156,-0.004423,0.004999,0.249950,0,0);}
.m7f_c01089{transform:matrix(0.221991,-0.004440,0.004999,0.249950,0,0);-ms-transform:matrix(0.221991,-0.004440,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221991,-0.004440,0.004999,0.249950,0,0);}
.m41_c01089{transform:matrix(0.222131,-0.004443,0.004999,0.249950,0,0);-ms-transform:matrix(0.222131,-0.004443,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222131,-0.004443,0.004999,0.249950,0,0);}
.m87_c01089{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);}
.m4f_c01089{transform:matrix(0.222655,-0.004453,0.004999,0.249950,0,0);-ms-transform:matrix(0.222655,-0.004453,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222655,-0.004453,0.004999,0.249950,0,0);}
.m40_c01089{transform:matrix(0.222830,-0.004457,0.004999,0.249950,0,0);-ms-transform:matrix(0.222830,-0.004457,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222830,-0.004457,0.004999,0.249950,0,0);}
.m166_c01089{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);}
.md5_c01089{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);}
.mf1_c01089{transform:matrix(0.223690,-0.004474,0.004999,0.249950,0,0);-ms-transform:matrix(0.223690,-0.004474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223690,-0.004474,0.004999,0.249950,0,0);}
.m3d_c01089{transform:matrix(0.223740,-0.004475,0.004999,0.249950,0,0);-ms-transform:matrix(0.223740,-0.004475,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223740,-0.004475,0.004999,0.249950,0,0);}
.mf5_c01089{transform:matrix(0.224445,-0.004489,0.004999,0.249950,0,0);-ms-transform:matrix(0.224445,-0.004489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224445,-0.004489,0.004999,0.249950,0,0);}
.m38_c01089{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);}
.me2_c01089{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);}
.m6c_c01089{transform:matrix(0.224825,-0.004497,0.004999,0.249950,0,0);-ms-transform:matrix(0.224825,-0.004497,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224825,-0.004497,0.004999,0.249950,0,0);}
.m75_c01089{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);}
.m88_c01089{transform:matrix(0.226955,-0.004539,0.004999,0.249950,0,0);-ms-transform:matrix(0.226955,-0.004539,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226955,-0.004539,0.004999,0.249950,0,0);}
.me0_c01089{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);}
.m47_c01089{transform:matrix(0.227350,-0.004547,0.004999,0.249950,0,0);-ms-transform:matrix(0.227350,-0.004547,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227350,-0.004547,0.004999,0.249950,0,0);}
.m11c_c01089{transform:matrix(0.227415,-0.004548,0.004999,0.249950,0,0);-ms-transform:matrix(0.227415,-0.004548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227415,-0.004548,0.004999,0.249950,0,0);}
.m126_c01089{transform:matrix(0.229874,-0.004597,0.004999,0.249950,0,0);-ms-transform:matrix(0.229874,-0.004597,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229874,-0.004597,0.004999,0.249950,0,0);}
.maf_c01089{transform:matrix(0.230479,-0.004610,0.004999,0.249950,0,0);-ms-transform:matrix(0.230479,-0.004610,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230479,-0.004610,0.004999,0.249950,0,0);}
.mc3_c01089{transform:matrix(0.231164,-0.004623,0.004999,0.249950,0,0);-ms-transform:matrix(0.231164,-0.004623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231164,-0.004623,0.004999,0.249950,0,0);}
.m96_c01089{transform:matrix(0.231324,-0.004626,0.004999,0.249950,0,0);-ms-transform:matrix(0.231324,-0.004626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231324,-0.004626,0.004999,0.249950,0,0);}
.ma4_c01089{transform:matrix(0.232509,-0.004650,0.004999,0.249950,0,0);-ms-transform:matrix(0.232509,-0.004650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232509,-0.004650,0.004999,0.249950,0,0);}
.mb8_c01089{transform:matrix(0.232828,-0.004657,0.004999,0.249950,0,0);-ms-transform:matrix(0.232828,-0.004657,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232828,-0.004657,0.004999,0.249950,0,0);}
.m116_c01089{transform:matrix(0.233913,-0.004678,0.004999,0.249950,0,0);-ms-transform:matrix(0.233913,-0.004678,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233913,-0.004678,0.004999,0.249950,0,0);}
.mfb_c01089{transform:matrix(0.234313,-0.004686,0.004999,0.249950,0,0);-ms-transform:matrix(0.234313,-0.004686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234313,-0.004686,0.004999,0.249950,0,0);}
.m10b_c01089{transform:matrix(0.234528,-0.004691,0.004999,0.249950,0,0);-ms-transform:matrix(0.234528,-0.004691,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234528,-0.004691,0.004999,0.249950,0,0);}
.m15d_c01089{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);}
.m66_c01089{transform:matrix(0.235528,-0.004711,0.004999,0.249950,0,0);-ms-transform:matrix(0.235528,-0.004711,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235528,-0.004711,0.004999,0.249950,0,0);}
.m49_c01089{transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);-ms-transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236283,-0.004726,0.004999,0.249950,0,0);}
.m15_c01089{transform:matrix(0.237398,-0.004748,0.004999,0.249950,0,0);-ms-transform:matrix(0.237398,-0.004748,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237398,-0.004748,0.004999,0.249950,0,0);}
.m4a_c01089{transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);-ms-transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238737,-0.004775,0.004999,0.249950,0,0);}
.mc5_c01089{transform:matrix(0.238832,-0.004777,0.004999,0.249950,0,0);-ms-transform:matrix(0.238832,-0.004777,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238832,-0.004777,0.004999,0.249950,0,0);}
.mb3_c01089{transform:matrix(0.239532,-0.004791,0.004999,0.249950,0,0);-ms-transform:matrix(0.239532,-0.004791,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239532,-0.004791,0.004999,0.249950,0,0);}
.m46_c01089{transform:matrix(0.239832,-0.004797,0.004999,0.249950,0,0);-ms-transform:matrix(0.239832,-0.004797,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239832,-0.004797,0.004999,0.249950,0,0);}
.mae_c01089{transform:matrix(0.241107,-0.004822,0.004999,0.249950,0,0);-ms-transform:matrix(0.241107,-0.004822,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241107,-0.004822,0.004999,0.249950,0,0);}
.md2_c01089{transform:matrix(0.241227,-0.004825,0.004999,0.249950,0,0);-ms-transform:matrix(0.241227,-0.004825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241227,-0.004825,0.004999,0.249950,0,0);}
.m42_c01089{transform:matrix(0.241247,-0.004825,0.004999,0.249950,0,0);-ms-transform:matrix(0.241247,-0.004825,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241247,-0.004825,0.004999,0.249950,0,0);}
.m130_c01089{transform:matrix(0.241472,-0.004829,0.004999,0.249950,0,0);-ms-transform:matrix(0.241472,-0.004829,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241472,-0.004829,0.004999,0.249950,0,0);}
.m4c_c01089{transform:matrix(0.241887,-0.004838,0.004999,0.249950,0,0);-ms-transform:matrix(0.241887,-0.004838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241887,-0.004838,0.004999,0.249950,0,0);}
.m57_c01089{transform:matrix(0.242112,-0.004842,0.004999,0.249950,0,0);-ms-transform:matrix(0.242112,-0.004842,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242112,-0.004842,0.004999,0.249950,0,0);}
.m148_c01089{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m43_c01089{transform:matrix(0.244341,-0.004887,0.004999,0.249950,0,0);-ms-transform:matrix(0.244341,-0.004887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244341,-0.004887,0.004999,0.249950,0,0);}
.m132_c01089{transform:matrix(0.244381,-0.004888,0.004999,0.249950,0,0);-ms-transform:matrix(0.244381,-0.004888,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244381,-0.004888,0.004999,0.249950,0,0);}
.m9e_c01089{transform:matrix(0.246291,-0.004926,0.004999,0.249950,0,0);-ms-transform:matrix(0.246291,-0.004926,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246291,-0.004926,0.004999,0.249950,0,0);}
.m156_c01089{transform:matrix(0.246728,-0.006168,0.006248,0.249922,0,0);-ms-transform:matrix(0.246728,-0.006168,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246728,-0.006168,0.006248,0.249922,0,0);}
.m142_c01089{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m125_c01089{transform:matrix(0.248530,-0.004971,0.004999,0.249950,0,0);-ms-transform:matrix(0.248530,-0.004971,0.004999,0.249950,0,0);-webkit-transform:matrix(0.248530,-0.004971,0.004999,0.249950,0,0);}
.m112_c01089{transform:matrix(0.249890,-0.004998,0.004999,0.249950,0,0);-ms-transform:matrix(0.249890,-0.004998,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249890,-0.004998,0.004999,0.249950,0,0);}
.mad_c01089{transform:matrix(0.252964,-0.005059,0.004999,0.249950,0,0);-ms-transform:matrix(0.252964,-0.005059,0.004999,0.249950,0,0);-webkit-transform:matrix(0.252964,-0.005059,0.004999,0.249950,0,0);}
.m140_c01089{transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254190,0.000000,0.000000,0.250000,0,0);}
.me5_c01089{transform:matrix(0.256744,-0.005135,0.004999,0.249950,0,0);-ms-transform:matrix(0.256744,-0.005135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256744,-0.005135,0.004999,0.249950,0,0);}
.m95_c01089{transform:matrix(0.256814,-0.005136,0.004999,0.249950,0,0);-ms-transform:matrix(0.256814,-0.005136,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256814,-0.005136,0.004999,0.249950,0,0);}
.m32_c01089{transform:matrix(0.257379,-0.005148,0.004999,0.249950,0,0);-ms-transform:matrix(0.257379,-0.005148,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257379,-0.005148,0.004999,0.249950,0,0);}
.mf6_c01089{transform:matrix(0.262248,-0.005245,0.004999,0.249950,0,0);-ms-transform:matrix(0.262248,-0.005245,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262248,-0.005245,0.004999,0.249950,0,0);}
.m8d_c01089{transform:matrix(0.263242,-0.005265,0.004999,0.249950,0,0);-ms-transform:matrix(0.263242,-0.005265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263242,-0.005265,0.004999,0.249950,0,0);}
.m154_c01089{transform:matrix(0.266447,-0.006661,0.006248,0.249922,0,0);-ms-transform:matrix(0.266447,-0.006661,0.006248,0.249922,0,0);-webkit-transform:matrix(0.266447,-0.006661,0.006248,0.249922,0,0);}
.ma8_c01089{transform:matrix(0.266482,-0.005330,0.004999,0.249950,0,0);-ms-transform:matrix(0.266482,-0.005330,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266482,-0.005330,0.004999,0.249950,0,0);}
.m33_c01089{transform:matrix(0.267676,-0.005354,0.004999,0.249950,0,0);-ms-transform:matrix(0.267676,-0.005354,0.004999,0.249950,0,0);-webkit-transform:matrix(0.267676,-0.005354,0.004999,0.249950,0,0);}
.mb_c01089{transform:matrix(0.268636,-0.005373,0.004999,0.249950,0,0);-ms-transform:matrix(0.268636,-0.005373,0.004999,0.249950,0,0);-webkit-transform:matrix(0.268636,-0.005373,0.004999,0.249950,0,0);}
.m14d_c01089{transform:matrix(0.271620,-0.006791,0.006248,0.249922,0,0);-ms-transform:matrix(0.271620,-0.006791,0.006248,0.249922,0,0);-webkit-transform:matrix(0.271620,-0.006791,0.006248,0.249922,0,0);}
.m8b_c01089{transform:matrix(0.272111,-0.005442,0.004999,0.249950,0,0);-ms-transform:matrix(0.272111,-0.005442,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272111,-0.005442,0.004999,0.249950,0,0);}
.m8c_c01089{transform:matrix(0.275435,-0.005509,0.004999,0.249950,0,0);-ms-transform:matrix(0.275435,-0.005509,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275435,-0.005509,0.004999,0.249950,0,0);}
.m80_c01089{transform:matrix(0.277599,-0.005552,0.004999,0.249950,0,0);-ms-transform:matrix(0.277599,-0.005552,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277599,-0.005552,0.004999,0.249950,0,0);}
.m4b_c01089{transform:matrix(0.289757,-0.005795,0.004999,0.249950,0,0);-ms-transform:matrix(0.289757,-0.005795,0.004999,0.249950,0,0);-webkit-transform:matrix(0.289757,-0.005795,0.004999,0.249950,0,0);}
.m13f_c01089{transform:matrix(0.300945,-0.006019,0.004999,0.249950,0,0);-ms-transform:matrix(0.300945,-0.006019,0.004999,0.249950,0,0);-webkit-transform:matrix(0.300945,-0.006019,0.004999,0.249950,0,0);}
.m152_c01089{transform:matrix(0.301561,-0.007539,0.006248,0.249922,0,0);-ms-transform:matrix(0.301561,-0.007539,0.006248,0.249922,0,0);-webkit-transform:matrix(0.301561,-0.007539,0.006248,0.249922,0,0);}
.mc4_c01089{transform:matrix(0.305194,-0.006104,0.004999,0.249950,0,0);-ms-transform:matrix(0.305194,-0.006104,0.004999,0.249950,0,0);-webkit-transform:matrix(0.305194,-0.006104,0.004999,0.249950,0,0);}
.m4e_c01089{transform:matrix(0.312498,-0.006250,0.004999,0.249950,0,0);-ms-transform:matrix(0.312498,-0.006250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.312498,-0.006250,0.004999,0.249950,0,0);}
.mab_c01089{transform:matrix(0.321016,-0.006420,0.004999,0.249950,0,0);-ms-transform:matrix(0.321016,-0.006420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321016,-0.006420,0.004999,0.249950,0,0);}
.ma7_c01089{transform:matrix(0.338597,-0.006772,0.004999,0.249950,0,0);-ms-transform:matrix(0.338597,-0.006772,0.004999,0.249950,0,0);-webkit-transform:matrix(0.338597,-0.006772,0.004999,0.249950,0,0);}
.me_c01089{transform:matrix(0.359018,-0.007180,0.004999,0.249950,0,0);-ms-transform:matrix(0.359018,-0.007180,0.004999,0.249950,0,0);-webkit-transform:matrix(0.359018,-0.007180,0.004999,0.249950,0,0);}
.m15c_c01089{transform:matrix(0.401260,-0.010031,0.006248,0.249922,0,0);-ms-transform:matrix(0.401260,-0.010031,0.006248,0.249922,0,0);-webkit-transform:matrix(0.401260,-0.010031,0.006248,0.249922,0,0);}
.m5c_c01089{transform:matrix(0.413097,-0.008262,0.004999,0.249950,0,0);-ms-transform:matrix(0.413097,-0.008262,0.004999,0.249950,0,0);-webkit-transform:matrix(0.413097,-0.008262,0.004999,0.249950,0,0);}
.m1d_c01089{transform:matrix(0.414687,-0.008294,0.004999,0.249950,0,0);-ms-transform:matrix(0.414687,-0.008294,0.004999,0.249950,0,0);-webkit-transform:matrix(0.414687,-0.008294,0.004999,0.249950,0,0);}
.ma5_c01089{transform:matrix(0.440962,-0.008819,0.004999,0.249950,0,0);-ms-transform:matrix(0.440962,-0.008819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.440962,-0.008819,0.004999,0.249950,0,0);}
.m151_c01089{transform:matrix(0.458982,-0.011475,0.006248,0.249922,0,0);-ms-transform:matrix(0.458982,-0.011475,0.006248,0.249922,0,0);-webkit-transform:matrix(0.458982,-0.011475,0.006248,0.249922,0,0);}
.m14c_c01089{transform:matrix(0.477620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477620,0.000000,0.000000,0.250000,0,0);}
.mf_c01089{transform:matrix(0.601545,-0.012031,0.004999,0.249950,0,0);-ms-transform:matrix(0.601545,-0.012031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.601545,-0.012031,0.004999,0.249950,0,0);}
.m15b_c01089{transform:matrix(0.656675,-0.016417,0.006248,0.249922,0,0);-ms-transform:matrix(0.656675,-0.016417,0.006248,0.249922,0,0);-webkit-transform:matrix(0.656675,-0.016417,0.006248,0.249922,0,0);}
.m163_c01089{transform:matrix(0.906270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.906270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.906270,0.000000,0.000000,0.250000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls0_c01089{letter-spacing:0.000000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:0.000000px;}
.fc0_c01089{color:transparent;}
.fs10_c01089{font-size:22.050000px;}
.fs11_c01089{font-size:39.900000px;}
.fse_c01089{font-size:44.113779px;}
.fs5_c01089{font-size:57.761549px;}
.fs8_c01089{font-size:63.012599px;}
.fs6_c01089{font-size:65.113019px;}
.fs7_c01089{font-size:66.163229px;}
.fs4_c01089{font-size:67.213439px;}
.fsd_c01089{font-size:67.220997px;}
.fs2_c01089{font-size:68.263649px;}
.fsc_c01089{font-size:69.300000px;}
.fs0_c01089{font-size:69.313859px;}
.fs3_c01089{font-size:70.364069px;}
.fs9_c01089{font-size:71.414279px;}
.fs1_c01089{font-size:72.464489px;}
.fsa_c01089{font-size:75.615118px;}
.fsb_c01089{font-size:85.050000px;}
.fs12_c01089{font-size:105.000000px;}
.fsf_c01089{font-size:153.347899px;}
.y0_c01089{bottom:0.000000px;}
.y15c_c01089{bottom:73.158975px;}
.y15d_c01089{bottom:73.355062px;}
.y15e_c01089{bottom:77.404237px;}
.y154_c01089{bottom:99.090562px;}
.y155_c01089{bottom:101.963850px;}
.y156_c01089{bottom:105.115950px;}
.y157_c01089{bottom:107.104425px;}
.y158_c01089{bottom:108.481763px;}
.y159_c01089{bottom:110.661487px;}
.y15a_c01089{bottom:112.846050px;}
.y14f_c01089{bottom:113.407500px;}
.y15b_c01089{bottom:113.755837px;}
.y150_c01089{bottom:118.198012px;}
.y151_c01089{bottom:125.332575px;}
.y152_c01089{bottom:125.852325px;}
.y153_c01089{bottom:127.283550px;}
.y143_c01089{bottom:143.643000px;}
.y144_c01089{bottom:144.067500px;}
.y145_c01089{bottom:144.757500px;}
.y146_c01089{bottom:144.963000px;}
.y147_c01089{bottom:145.963500px;}
.y148_c01089{bottom:146.742000px;}
.y149_c01089{bottom:147.220500px;}
.y14a_c01089{bottom:147.765000px;}
.y14b_c01089{bottom:147.949500px;}
.y14c_c01089{bottom:148.740000px;}
.y14d_c01089{bottom:149.008500px;}
.y14e_c01089{bottom:149.652000px;}
.y142_c01089{bottom:165.649500px;}
.y138_c01089{bottom:166.999440px;}
.y139_c01089{bottom:167.591040px;}
.y13a_c01089{bottom:167.731500px;}
.y13b_c01089{bottom:168.141330px;}
.y13c_c01089{bottom:168.428130px;}
.y13d_c01089{bottom:169.206390px;}
.y13e_c01089{bottom:169.539090px;}
.y13f_c01089{bottom:170.130780px;}
.y140_c01089{bottom:170.738220px;}
.y141_c01089{bottom:171.388650px;}
.y12d_c01089{bottom:188.874600px;}
.y12e_c01089{bottom:189.328200px;}
.y12f_c01089{bottom:189.626580px;}
.y130_c01089{bottom:189.887070px;}
.y131_c01089{bottom:190.788660px;}
.y132_c01089{bottom:191.185920px;}
.y133_c01089{bottom:191.922510px;}
.y134_c01089{bottom:192.170970px;}
.y135_c01089{bottom:192.658980px;}
.y136_c01089{bottom:192.880650px;}
.y137_c01089{bottom:193.161450px;}
.y121_c01089{bottom:211.559850px;}
.y122_c01089{bottom:212.094000px;}
.y123_c01089{bottom:212.358090px;}
.y124_c01089{bottom:212.891430px;}
.y125_c01089{bottom:213.915570px;}
.y126_c01089{bottom:214.357680px;}
.y127_c01089{bottom:214.652430px;}
.y128_c01089{bottom:215.626980px;}
.y129_c01089{bottom:215.737560px;}
.y12a_c01089{bottom:216.317250px;}
.y12b_c01089{bottom:216.956010px;}
.y12c_c01089{bottom:217.249500px;}
.y114_c01089{bottom:233.976570px;}
.y115_c01089{bottom:234.556140px;}
.y116_c01089{bottom:234.869760px;}
.y117_c01089{bottom:235.679670px;}
.y118_c01089{bottom:235.958220px;}
.y119_c01089{bottom:236.193960px;}
.y11a_c01089{bottom:236.550240px;}
.y11b_c01089{bottom:237.157080px;}
.y11c_c01089{bottom:237.885360px;}
.y11d_c01089{bottom:238.307190px;}
.y11e_c01089{bottom:238.721610px;}
.y11f_c01089{bottom:239.072310px;}
.y120_c01089{bottom:239.386440px;}
.y109_c01089{bottom:257.201790px;}
.y10a_c01089{bottom:257.726880px;}
.y10b_c01089{bottom:258.131760px;}
.y10c_c01089{bottom:259.087350px;}
.y10d_c01089{bottom:259.359600px;}
.y10e_c01089{bottom:259.742520px;}
.y10f_c01089{bottom:260.601540px;}
.y110_c01089{bottom:261.486090px;}
.y111_c01089{bottom:261.777090px;}
.y112_c01089{bottom:262.175790px;}
.y113_c01089{bottom:262.462200px;}
.yfe_c01089{bottom:279.616950px;}
.yff_c01089{bottom:279.959790px;}
.y100_c01089{bottom:280.826760px;}
.y101_c01089{bottom:281.098890px;}
.y102_c01089{bottom:281.539620px;}
.y103_c01089{bottom:281.948220px;}
.y104_c01089{bottom:282.363090px;}
.y105_c01089{bottom:282.635550px;}
.y106_c01089{bottom:282.881010px;}
.y107_c01089{bottom:283.515330px;}
.y108_c01089{bottom:283.840140px;}
.yf5_c01089{bottom:302.302650px;}
.yf6_c01089{bottom:303.277350px;}
.yf7_c01089{bottom:304.681530px;}
.yf8_c01089{bottom:305.068200px;}
.yf9_c01089{bottom:305.752500px;}
.yfa_c01089{bottom:305.967780px;}
.yfb_c01089{bottom:306.190290px;}
.yfc_c01089{bottom:306.546900px;}
.yfd_c01089{bottom:307.188240px;}
.ye8_c01089{bottom:324.447030px;}
.ye9_c01089{bottom:324.711450px;}
.yea_c01089{bottom:325.135800px;}
.yeb_c01089{bottom:325.560360px;}
.yec_c01089{bottom:325.750050px;}
.yed_c01089{bottom:325.917000px;}
.yee_c01089{bottom:326.241420px;}
.yef_c01089{bottom:326.784510px;}
.yf0_c01089{bottom:327.161910px;}
.yf1_c01089{bottom:327.523650px;}
.yf2_c01089{bottom:327.871230px;}
.yf3_c01089{bottom:328.831050px;}
.yf4_c01089{bottom:329.161050px;}
.ydc_c01089{bottom:346.862220px;}
.ydd_c01089{bottom:347.259600px;}
.yde_c01089{bottom:348.114030px;}
.ydf_c01089{bottom:348.791280px;}
.ye0_c01089{bottom:349.766850px;}
.ye1_c01089{bottom:350.131620px;}
.ye2_c01089{bottom:350.633940px;}
.ye3_c01089{bottom:351.556830px;}
.ye4_c01089{bottom:351.884910px;}
.ye5_c01089{bottom:352.279290px;}
.ye6_c01089{bottom:353.209410px;}
.ye7_c01089{bottom:353.525550px;}
.yd1_c01089{bottom:370.090440px;}
.yd2_c01089{bottom:370.847580px;}
.yd3_c01089{bottom:371.149830px;}
.yd4_c01089{bottom:371.538120px;}
.yd5_c01089{bottom:371.923710px;}
.yd6_c01089{bottom:372.661410px;}
.yd7_c01089{bottom:373.496610px;}
.yd8_c01089{bottom:373.720800px;}
.yd9_c01089{bottom:374.096190px;}
.yda_c01089{bottom:375.064860px;}
.ydb_c01089{bottom:375.932430px;}
.yc6_c01089{bottom:393.317970px;}
.yc7_c01089{bottom:393.623700px;}
.yc8_c01089{bottom:394.356630px;}
.yc9_c01089{bottom:394.610310px;}
.yca_c01089{bottom:394.950900px;}
.ycb_c01089{bottom:395.831100px;}
.ycc_c01089{bottom:396.537930px;}
.ycd_c01089{bottom:397.085730px;}
.yce_c01089{bottom:397.497120px;}
.ycf_c01089{bottom:398.800920px;}
.yd0_c01089{bottom:399.417240px;}
.ybb_c01089{bottom:415.463160px;}
.ybc_c01089{bottom:416.166090px;}
.ybd_c01089{bottom:416.524680px;}
.ybe_c01089{bottom:417.015390px;}
.ybf_c01089{bottom:417.497190px;}
.yc0_c01089{bottom:417.867330px;}
.yc1_c01089{bottom:418.948650px;}
.yc2_c01089{bottom:419.987910px;}
.yc3_c01089{bottom:420.574380px;}
.yc4_c01089{bottom:421.054980px;}
.yc5_c01089{bottom:422.049330px;}
.yb1_c01089{bottom:438.146880px;}
.yb2_c01089{bottom:439.025070px;}
.yb3_c01089{bottom:439.422690px;}
.yb4_c01089{bottom:440.418360px;}
.yb5_c01089{bottom:441.306690px;}
.yb6_c01089{bottom:441.696360px;}
.yb7_c01089{bottom:442.144050px;}
.yb8_c01089{bottom:443.075220px;}
.yb9_c01089{bottom:444.180030px;}
.yba_c01089{bottom:444.851760px;}
.ya8_c01089{bottom:460.775520px;}
.ya9_c01089{bottom:461.237040px;}
.yaa_c01089{bottom:462.006720px;}
.yab_c01089{bottom:462.784290px;}
.yac_c01089{bottom:464.373300px;}
.yad_c01089{bottom:464.870310px;}
.yae_c01089{bottom:465.315510px;}
.yaf_c01089{bottom:466.673340px;}
.yb0_c01089{bottom:467.191230px;}
.ya3_c01089{bottom:482.166630px;}
.ya4_c01089{bottom:483.107040px;}
.ya5_c01089{bottom:483.577500px;}
.ya6_c01089{bottom:485.960370px;}
.ya7_c01089{bottom:489.800760px;}
.y98_c01089{bottom:505.116960px;}
.y99_c01089{bottom:505.641600px;}
.y9a_c01089{bottom:506.980950px;}
.y9b_c01089{bottom:507.299880px;}
.y9c_c01089{bottom:507.961140px;}
.y9d_c01089{bottom:508.423890px;}
.y9e_c01089{bottom:509.420730px;}
.y9f_c01089{bottom:509.755590px;}
.ya0_c01089{bottom:510.413040px;}
.ya1_c01089{bottom:510.962670px;}
.ya2_c01089{bottom:512.333190px;}
.y8d_c01089{bottom:527.534640px;}
.y8e_c01089{bottom:527.947560px;}
.y8f_c01089{bottom:528.588780px;}
.y90_c01089{bottom:530.464530px;}
.y91_c01089{bottom:531.043110px;}
.y92_c01089{bottom:532.015230px;}
.y93_c01089{bottom:532.905060px;}
.y94_c01089{bottom:533.618940px;}
.y95_c01089{bottom:534.075660px;}
.y96_c01089{bottom:535.078620px;}
.y97_c01089{bottom:535.660740px;}
.y80_c01089{bottom:551.026320px;}
.y81_c01089{bottom:551.545380px;}
.y82_c01089{bottom:551.882940px;}
.y83_c01089{bottom:552.383430px;}
.y84_c01089{bottom:552.806010px;}
.y85_c01089{bottom:553.192020px;}
.y86_c01089{bottom:554.246130px;}
.y87_c01089{bottom:554.858700px;}
.y88_c01089{bottom:555.550260px;}
.y89_c01089{bottom:556.112640px;}
.y8a_c01089{bottom:556.484310px;}
.y8b_c01089{bottom:557.080920px;}
.y8c_c01089{bottom:557.888250px;}
.y74_c01089{bottom:573.167340px;}
.y75_c01089{bottom:573.929820px;}
.y76_c01089{bottom:574.835220px;}
.y77_c01089{bottom:575.792730px;}
.y78_c01089{bottom:576.284220px;}
.y79_c01089{bottom:576.710850px;}
.y7a_c01089{bottom:577.698450px;}
.y7b_c01089{bottom:578.129610px;}
.y7c_c01089{bottom:578.632260px;}
.y7d_c01089{bottom:579.545100px;}
.y7e_c01089{bottom:580.327950px;}
.y7f_c01089{bottom:581.104740px;}
.y67_c01089{bottom:596.392830px;}
.y68_c01089{bottom:597.014490px;}
.y69_c01089{bottom:597.448230px;}
.y6a_c01089{bottom:598.268580px;}
.y6b_c01089{bottom:598.601220px;}
.y6c_c01089{bottom:599.348940px;}
.y6d_c01089{bottom:599.695530px;}
.y6e_c01089{bottom:600.265980px;}
.y6f_c01089{bottom:600.866550px;}
.y70_c01089{bottom:601.770420px;}
.y71_c01089{bottom:602.272140px;}
.y72_c01089{bottom:602.875230px;}
.y73_c01089{bottom:603.445680px;}
.y5d_c01089{bottom:618.521790px;}
.y5e_c01089{bottom:619.140720px;}
.y5f_c01089{bottom:619.742250px;}
.y60_c01089{bottom:620.810250px;}
.y61_c01089{bottom:621.711150px;}
.y62_c01089{bottom:622.276620px;}
.y63_c01089{bottom:623.165550px;}
.y64_c01089{bottom:624.405990px;}
.y65_c01089{bottom:624.874380px;}
.y66_c01089{bottom:625.962000px;}
.y51_c01089{bottom:640.352940px;}
.y52_c01089{bottom:640.687830px;}
.y53_c01089{bottom:641.119260px;}
.y54_c01089{bottom:642.099780px;}
.y55_c01089{bottom:642.865680px;}
.y56_c01089{bottom:643.322400px;}
.y57_c01089{bottom:644.522970px;}
.y58_c01089{bottom:644.817960px;}
.y59_c01089{bottom:646.412040px;}
.y5a_c01089{bottom:647.677740px;}
.y5b_c01089{bottom:648.165960px;}
.y5c_c01089{bottom:649.102740px;}
.y41_c01089{bottom:663.365580px;}
.y42_c01089{bottom:663.778140px;}
.y43_c01089{bottom:664.255050px;}
.y44_c01089{bottom:665.009670px;}
.y45_c01089{bottom:665.501070px;}
.y46_c01089{bottom:665.923230px;}
.y47_c01089{bottom:666.517680px;}
.y48_c01089{bottom:667.082430px;}
.y49_c01089{bottom:667.719960px;}
.y4a_c01089{bottom:668.038410px;}
.y4b_c01089{bottom:668.436180px;}
.y4c_c01089{bottom:668.916990px;}
.y4d_c01089{bottom:669.680760px;}
.y4e_c01089{bottom:669.997440px;}
.y4f_c01089{bottom:670.517070px;}
.y50_c01089{bottom:671.709600px;}
.y37_c01089{bottom:686.052180px;}
.y38_c01089{bottom:687.411120px;}
.y39_c01089{bottom:687.992040px;}
.y3a_c01089{bottom:689.248590px;}
.y3b_c01089{bottom:689.729370px;}
.y3c_c01089{bottom:691.026540px;}
.y3d_c01089{bottom:691.592280px;}
.y3e_c01089{bottom:691.905750px;}
.y3f_c01089{bottom:693.777900px;}
.y40_c01089{bottom:694.403790px;}
.y2a_c01089{bottom:708.465090px;}
.y2b_c01089{bottom:709.258890px;}
.y2c_c01089{bottom:710.122380px;}
.y2d_c01089{bottom:710.775420px;}
.y2e_c01089{bottom:711.241830px;}
.y2f_c01089{bottom:711.882900px;}
.y30_c01089{bottom:712.733250px;}
.y31_c01089{bottom:713.219250px;}
.y32_c01089{bottom:713.482110px;}
.y33_c01089{bottom:714.163770px;}
.y34_c01089{bottom:715.714380px;}
.y35_c01089{bottom:716.247690px;}
.y36_c01089{bottom:716.549340px;}
.y161_c01089{bottom:720.090000px;}
.y1f_c01089{bottom:730.340910px;}
.y20_c01089{bottom:731.058750px;}
.y21_c01089{bottom:731.682120px;}
.y22_c01089{bottom:732.820980px;}
.y23_c01089{bottom:733.645710px;}
.y24_c01089{bottom:734.499510px;}
.y25_c01089{bottom:736.071240px;}
.y26_c01089{bottom:736.861110px;}
.y27_c01089{bottom:737.379960px;}
.y28_c01089{bottom:738.778380px;}
.y29_c01089{bottom:739.604520px;}
.y14_c01089{bottom:753.034200px;}
.y15_c01089{bottom:753.251130px;}
.y16_c01089{bottom:753.759390px;}
.y17_c01089{bottom:754.562310px;}
.y18_c01089{bottom:755.050710px;}
.y19_c01089{bottom:756.674370px;}
.y1a_c01089{bottom:757.380000px;}
.y1b_c01089{bottom:759.444990px;}
.y1c_c01089{bottom:760.267800px;}
.y1d_c01089{bottom:761.048820px;}
.y1e_c01089{bottom:761.774010px;}
.yd_c01089{bottom:775.982310px;}
.ye_c01089{bottom:777.141300px;}
.yf_c01089{bottom:777.266670px;}
.y10_c01089{bottom:778.123620px;}
.y11_c01089{bottom:778.737180px;}
.y12_c01089{bottom:779.725500px;}
.y13_c01089{bottom:780.425430px;}
.y160_c01089{bottom:781.650000px;}
.y15f_c01089{bottom:787.050000px;}
.y1_c01089{bottom:798.936000px;}
.y2_c01089{bottom:800.150640px;}
.y3_c01089{bottom:800.544870px;}
.y4_c01089{bottom:801.356010px;}
.y5_c01089{bottom:802.376610px;}
.y6_c01089{bottom:803.197890px;}
.y7_c01089{bottom:804.677520px;}
.y8_c01089{bottom:805.169040px;}
.y9_c01089{bottom:805.852980px;}
.ya_c01089{bottom:806.544360px;}
.yb_c01089{bottom:807.210810px;}
.yc_c01089{bottom:808.263480px;}
.h12_c01089{height:22.050000px;}
.h13_c01089{height:39.900000px;}
.h10_c01089{height:44.113779px;}
.h7_c01089{height:57.761549px;}
.ha_c01089{height:63.012599px;}
.h8_c01089{height:65.113019px;}
.h9_c01089{height:66.163229px;}
.h6_c01089{height:67.213439px;}
.hf_c01089{height:67.220997px;}
.h4_c01089{height:68.263649px;}
.he_c01089{height:69.300000px;}
.h2_c01089{height:69.313859px;}
.h5_c01089{height:70.364069px;}
.hb_c01089{height:71.414279px;}
.h3_c01089{height:72.464489px;}
.hc_c01089{height:75.615118px;}
.hd_c01089{height:85.050000px;}
.h14_c01089{height:105.000000px;}
.h11_c01089{height:153.347899px;}
.h0_c01089{height:1008.450000px;}
.h1_c01089{height:1008.750000px;}
.w0_c01089{width:711.720000px;}
.w1_c01089{width:711.750000px;}
.x0_c01089{left:0.000000px;}
.xb6_c01089{left:73.189500px;}
.xbe_c01089{left:83.300400px;}
.xb9_c01089{left:95.783813px;}
.xbf_c01089{left:102.971288px;}
.x1_c01089{left:116.094000px;}
.x5b_c01089{left:117.425100px;}
.x7c_c01089{left:118.484310px;}
.x89_c01089{left:119.778090px;}
.x93_c01089{left:120.894780px;}
.x13_c01089{left:122.249130px;}
.xa4_c01089{left:123.295050px;}
.xaf_c01089{left:124.648770px;}
.xb3_c01089{left:125.712000px;}
.x14_c01089{left:133.095630px;}
.x39_c01089{left:139.487430px;}
.x6e_c01089{left:140.724450px;}
.x98_c01089{left:145.408920px;}
.x94_c01089{left:147.366420px;}
.x65_c01089{left:149.247090px;}
.x77_c01089{left:150.351240px;}
.x1e_c01089{left:152.753160px;}
.x45_c01089{left:156.603270px;}
.x15_c01089{left:158.508630px;}
.x25_c01089{left:160.374030px;}
.x7f_c01089{left:161.665500px;}
.xa9_c01089{left:164.070330px;}
.x3a_c01089{left:165.958980px;}
.xd_c01089{left:168.840810px;}
.x66_c01089{left:170.326770px;}
.xa5_c01089{left:171.631290px;}
.xe_c01089{left:174.509070px;}
.x2_c01089{left:176.826000px;}
.x82_c01089{left:177.867540px;}
.x53_c01089{left:182.760300px;}
.x1f_c01089{left:183.921660px;}
.x31_c01089{left:188.183430px;}
.x84_c01089{left:194.879670px;}
.x3_c01089{left:196.537500px;}
.x16_c01089{left:198.654630px;}
.x67_c01089{left:201.653790px;}
.x83_c01089{left:204.351180px;}
.x7d_c01089{left:206.734890px;}
.x26_c01089{left:208.350450px;}
.x5c_c01089{left:210.047790px;}
.x8a_c01089{left:212.156190px;}
.xf_c01089{left:213.455010px;}
.x32_c01089{left:218.730030px;}
.x17_c01089{left:223.074630px;}
.xaa_c01089{left:225.400410px;}
.x68_c01089{left:228.034890px;}
.x85_c01089{left:229.919370px;}
.x8f_c01089{left:231.265590px;}
.x54_c01089{left:234.056910px;}
.x3b_c01089{left:235.162740px;}
.x4_c01089{left:237.094500px;}
.x99_c01089{left:239.880930px;}
.x10_c01089{left:241.356900px;}
.x27_c01089{left:244.603890px;}
.x46_c01089{left:248.501100px;}
.x4e_c01089{left:251.296650px;}
.x55_c01089{left:254.815560px;}
.x3c_c01089{left:258.596670px;}
.x90_c01089{left:260.974260px;}
.x5d_c01089{left:263.250420px;}
.x86_c01089{left:264.288480px;}
.xa6_c01089{left:265.322790px;}
.x28_c01089{left:270.550440px;}
.x47_c01089{left:272.537580px;}
.xa1_c01089{left:278.819220px;}
.x6f_c01089{left:280.528530px;}
.x20_c01089{left:282.101160px;}
.x33_c01089{left:284.858850px;}
.x11_c01089{left:286.271100px;}
.x5_c01089{left:288.124500px;}
.x5e_c01089{left:290.526000px;}
.x3d_c01089{left:291.620490px;}
.x78_c01089{left:295.289820px;}
.x8b_c01089{left:299.381160px;}
.x56_c01089{left:301.505280px;}
.x18_c01089{left:304.257630px;}
.x29_c01089{left:306.205380px;}
.xa7_c01089{left:308.219160px;}
.x34_c01089{left:310.173360px;}
.x70_c01089{left:312.683820px;}
.x5f_c01089{left:314.258460px;}
.x12_c01089{left:318.116340px;}
.x3e_c01089{left:323.009250px;}
.x21_c01089{left:324.791160px;}
.xba_c01089{left:327.493500px;}
.x6_c01089{left:329.188500px;}
.x9a_c01089{left:333.920850px;}
.x48_c01089{left:335.717340px;}
.x4f_c01089{left:337.520310px;}
.x19_c01089{left:339.539130px;}
.x8c_c01089{left:349.878720px;}
.x49_c01089{left:351.217140px;}
.x2a_c01089{left:353.449770px;}
.x69_c01089{left:356.329650px;}
.x3f_c01089{left:358.412160px;}
.xab_c01089{left:360.944400px;}
.xb0_c01089{left:365.502780px;}
.x71_c01089{left:366.691980px;}
.x87_c01089{left:367.998930px;}
.x60_c01089{left:369.115650px;}
.x95_c01089{left:372.355920px;}
.x40_c01089{left:376.135380px;}
.x35_c01089{left:378.483240px;}
.x2b_c01089{left:380.450850px;}
.x91_c01089{left:382.011210px;}
.xb4_c01089{left:383.881500px;}
.x79_c01089{left:386.501610px;}
.x80_c01089{left:388.797180px;}
.x50_c01089{left:389.844960px;}
.x61_c01089{left:393.074610px;}
.x2c_c01089{left:395.019420px;}
.x57_c01089{left:396.368370px;}
.x41_c01089{left:398.199750px;}
.x6a_c01089{left:399.536100px;}
.x9b_c01089{left:401.114940px;}
.x7_c01089{left:403.170000px;}
.xa2_c01089{left:404.948880px;}
.x36_c01089{left:408.270840px;}
.x72_c01089{left:416.135460px;}
.x8d_c01089{left:418.471470px;}
.x62_c01089{left:420.983220px;}
.x37_c01089{left:424.769670px;}
.x8_c01089{left:427.746000px;}
.x2d_c01089{left:432.853920px;}
.x96_c01089{left:433.881570px;}
.x4a_c01089{left:435.122820px;}
.x1a_c01089{left:442.788630px;}
.xac_c01089{left:444.387570px;}
.x7a_c01089{left:448.497060px;}
.x58_c01089{left:452.816370px;}
.x9d_c01089{left:454.623780px;}
.x73_c01089{left:455.806050px;}
.x6b_c01089{left:457.943280px;}
.x9_c01089{left:461.943000px;}
.x42_c01089{left:467.331510px;}
.x22_c01089{left:468.813660px;}
.x63_c01089{left:471.727260px;}
.x9e_c01089{left:474.827910px;}
.xa3_c01089{left:478.663170px;}
.x74_c01089{left:481.193070px;}
.x7b_c01089{left:482.806290px;}
.x1b_c01089{left:483.929130px;}
.x43_c01089{left:484.966230px;}
.xad_c01089{left:488.978310px;}
.x51_c01089{left:490.367490px;}
.x6c_c01089{left:495.201750px;}
.xa_c01089{left:496.512000px;}
.x4b_c01089{left:501.709140px;}
.x92_c01089{left:502.740630px;}
.x9f_c01089{left:507.289260px;}
.x8e_c01089{left:511.647660px;}
.xa0_c01089{left:512.673360px;}
.x44_c01089{left:513.798870px;}
.x64_c01089{left:515.221500px;}
.x2e_c01089{left:519.012870px;}
.x59_c01089{left:521.862390px;}
.x1c_c01089{left:522.980130px;}
.x4c_c01089{left:527.395650px;}
.xb_c01089{left:529.834500px;}
.x81_c01089{left:533.804760px;}
.x75_c01089{left:536.893290px;}
.x23_c01089{left:538.734660px;}
.xbb_c01089{left:540.789675px;}
.x97_c01089{left:544.046580px;}
.x6d_c01089{left:545.697300px;}
.x2f_c01089{left:548.679570px;}
.x9c_c01089{left:549.986730px;}
.x52_c01089{left:554.352330px;}
.x38_c01089{left:556.274310px;}
.x5a_c01089{left:557.512740px;}
.x1d_c01089{left:559.239630px;}
.xae_c01089{left:560.725860px;}
.x30_c01089{left:565.412730px;}
.x76_c01089{left:569.225580px;}
.xb7_c01089{left:570.982500px;}
.xb5_c01089{left:572.773500px;}
.xa8_c01089{left:574.310730px;}
.x4d_c01089{left:576.710640px;}
.x24_c01089{left:580.041660px;}
.xc_c01089{left:582.468000px;}
.xb1_c01089{left:583.709400px;}
.x88_c01089{left:589.434480px;}
.x7e_c01089{left:595.704000px;}
.xbc_c01089{left:624.810075px;}
.xb2_c01089{left:627.210000px;}
.xb8_c01089{left:628.231500px;}
.xbd_c01089{left:659.820713px;}
.xc2_c01089{left:703.080000px;}
.xc1_c01089{left:704.160000px;}
.xc0_c01089{left:705.240000px;}
.xc3_c01089{left:706.320000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ws0_c01089{word-spacing:0.000000pt;}
.fs10_c01089{font-size:19.600000pt;}
.fs11_c01089{font-size:35.466667pt;}
.fse_c01089{font-size:39.212248pt;}
.fs5_c01089{font-size:51.343599pt;}
.fs8_c01089{font-size:56.011199pt;}
.fs6_c01089{font-size:57.878239pt;}
.fs7_c01089{font-size:58.811759pt;}
.fs4_c01089{font-size:59.745279pt;}
.fsd_c01089{font-size:59.751997pt;}
.fs2_c01089{font-size:60.678799pt;}
.fsc_c01089{font-size:61.600000pt;}
.fs0_c01089{font-size:61.612319pt;}
.fs3_c01089{font-size:62.545839pt;}
.fs9_c01089{font-size:63.479359pt;}
.fs1_c01089{font-size:64.412879pt;}
.fsa_c01089{font-size:67.213439pt;}
.fsb_c01089{font-size:75.600000pt;}
.fs12_c01089{font-size:93.333333pt;}
.fsf_c01089{font-size:136.309243pt;}
.y0_c01089{bottom:0.000000pt;}
.y15c_c01089{bottom:65.030200pt;}
.y15d_c01089{bottom:65.204500pt;}
.y15e_c01089{bottom:68.803767pt;}
.y154_c01089{bottom:88.080500pt;}
.y155_c01089{bottom:90.634533pt;}
.y156_c01089{bottom:93.436400pt;}
.y157_c01089{bottom:95.203933pt;}
.y158_c01089{bottom:96.428233pt;}
.y159_c01089{bottom:98.365767pt;}
.y15a_c01089{bottom:100.307600pt;}
.y14f_c01089{bottom:100.806667pt;}
.y15b_c01089{bottom:101.116300pt;}
.y150_c01089{bottom:105.064900pt;}
.y151_c01089{bottom:111.406733pt;}
.y152_c01089{bottom:111.868733pt;}
.y153_c01089{bottom:113.140933pt;}
.y143_c01089{bottom:127.682667pt;}
.y144_c01089{bottom:128.060000pt;}
.y145_c01089{bottom:128.673333pt;}
.y146_c01089{bottom:128.856000pt;}
.y147_c01089{bottom:129.745333pt;}
.y148_c01089{bottom:130.437333pt;}
.y149_c01089{bottom:130.862667pt;}
.y14a_c01089{bottom:131.346667pt;}
.y14b_c01089{bottom:131.510667pt;}
.y14c_c01089{bottom:132.213333pt;}
.y14d_c01089{bottom:132.452000pt;}
.y14e_c01089{bottom:133.024000pt;}
.y142_c01089{bottom:147.244000pt;}
.y138_c01089{bottom:148.443947pt;}
.y139_c01089{bottom:148.969813pt;}
.y13a_c01089{bottom:149.094667pt;}
.y13b_c01089{bottom:149.458960pt;}
.y13c_c01089{bottom:149.713893pt;}
.y13d_c01089{bottom:150.405680pt;}
.y13e_c01089{bottom:150.701413pt;}
.y13f_c01089{bottom:151.227360pt;}
.y140_c01089{bottom:151.767307pt;}
.y141_c01089{bottom:152.345467pt;}
.y12d_c01089{bottom:167.888533pt;}
.y12e_c01089{bottom:168.291733pt;}
.y12f_c01089{bottom:168.556960pt;}
.y130_c01089{bottom:168.788507pt;}
.y131_c01089{bottom:169.589920pt;}
.y132_c01089{bottom:169.943040pt;}
.y133_c01089{bottom:170.597787pt;}
.y134_c01089{bottom:170.818640pt;}
.y135_c01089{bottom:171.252427pt;}
.y136_c01089{bottom:171.449467pt;}
.y137_c01089{bottom:171.699067pt;}
.y121_c01089{bottom:188.053200pt;}
.y122_c01089{bottom:188.528000pt;}
.y123_c01089{bottom:188.762747pt;}
.y124_c01089{bottom:189.236827pt;}
.y125_c01089{bottom:190.147173pt;}
.y126_c01089{bottom:190.540160pt;}
.y127_c01089{bottom:190.802160pt;}
.y128_c01089{bottom:191.668427pt;}
.y129_c01089{bottom:191.766720pt;}
.y12a_c01089{bottom:192.282000pt;}
.y12b_c01089{bottom:192.849787pt;}
.y12c_c01089{bottom:193.110667pt;}
.y114_c01089{bottom:207.979173pt;}
.y115_c01089{bottom:208.494347pt;}
.y116_c01089{bottom:208.773120pt;}
.y117_c01089{bottom:209.493040pt;}
.y118_c01089{bottom:209.740640pt;}
.y119_c01089{bottom:209.950187pt;}
.y11a_c01089{bottom:210.266880pt;}
.y11b_c01089{bottom:210.806293pt;}
.y11c_c01089{bottom:211.453653pt;}
.y11d_c01089{bottom:211.828613pt;}
.y11e_c01089{bottom:212.196987pt;}
.y11f_c01089{bottom:212.508720pt;}
.y120_c01089{bottom:212.787947pt;}
.y109_c01089{bottom:228.623813pt;}
.y10a_c01089{bottom:229.090560pt;}
.y10b_c01089{bottom:229.450453pt;}
.y10c_c01089{bottom:230.299867pt;}
.y10d_c01089{bottom:230.541867pt;}
.y10e_c01089{bottom:230.882240pt;}
.y10f_c01089{bottom:231.645813pt;}
.y110_c01089{bottom:232.432080pt;}
.y111_c01089{bottom:232.690747pt;}
.y112_c01089{bottom:233.045147pt;}
.y113_c01089{bottom:233.299733pt;}
.yfe_c01089{bottom:248.548400pt;}
.yff_c01089{bottom:248.853147pt;}
.y100_c01089{bottom:249.623787pt;}
.y101_c01089{bottom:249.865680pt;}
.y102_c01089{bottom:250.257440pt;}
.y103_c01089{bottom:250.620640pt;}
.y104_c01089{bottom:250.989413pt;}
.y105_c01089{bottom:251.231600pt;}
.y106_c01089{bottom:251.449787pt;}
.y107_c01089{bottom:252.013627pt;}
.y108_c01089{bottom:252.302347pt;}
.yf5_c01089{bottom:268.713467pt;}
.yf6_c01089{bottom:269.579867pt;}
.yf7_c01089{bottom:270.828027pt;}
.yf8_c01089{bottom:271.171733pt;}
.yf9_c01089{bottom:271.780000pt;}
.yfa_c01089{bottom:271.971360pt;}
.yfb_c01089{bottom:272.169147pt;}
.yfc_c01089{bottom:272.486133pt;}
.yfd_c01089{bottom:273.056213pt;}
.ye8_c01089{bottom:288.397360pt;}
.ye9_c01089{bottom:288.632400pt;}
.yea_c01089{bottom:289.009600pt;}
.yeb_c01089{bottom:289.386987pt;}
.yec_c01089{bottom:289.555600pt;}
.yed_c01089{bottom:289.704000pt;}
.yee_c01089{bottom:289.992373pt;}
.yef_c01089{bottom:290.475120pt;}
.yf0_c01089{bottom:290.810587pt;}
.yf1_c01089{bottom:291.132133pt;}
.yf2_c01089{bottom:291.441093pt;}
.yf3_c01089{bottom:292.294267pt;}
.yf4_c01089{bottom:292.587600pt;}
.ydc_c01089{bottom:308.321973pt;}
.ydd_c01089{bottom:308.675200pt;}
.yde_c01089{bottom:309.434693pt;}
.ydf_c01089{bottom:310.036693pt;}
.ye0_c01089{bottom:310.903867pt;}
.ye1_c01089{bottom:311.228107pt;}
.ye2_c01089{bottom:311.674613pt;}
.ye3_c01089{bottom:312.494960pt;}
.ye4_c01089{bottom:312.786587pt;}
.ye5_c01089{bottom:313.137147pt;}
.ye6_c01089{bottom:313.963920pt;}
.ye7_c01089{bottom:314.244933pt;}
.yd1_c01089{bottom:328.969280pt;}
.yd2_c01089{bottom:329.642293pt;}
.yd3_c01089{bottom:329.910960pt;}
.yd4_c01089{bottom:330.256107pt;}
.yd5_c01089{bottom:330.598853pt;}
.yd6_c01089{bottom:331.254587pt;}
.yd7_c01089{bottom:331.996987pt;}
.yd8_c01089{bottom:332.196267pt;}
.yd9_c01089{bottom:332.529947pt;}
.yda_c01089{bottom:333.390987pt;}
.ydb_c01089{bottom:334.162160pt;}
.yc6_c01089{bottom:349.615973pt;}
.yc7_c01089{bottom:349.887733pt;}
.yc8_c01089{bottom:350.539227pt;}
.yc9_c01089{bottom:350.764720pt;}
.yca_c01089{bottom:351.067467pt;}
.ycb_c01089{bottom:351.849867pt;}
.ycc_c01089{bottom:352.478160pt;}
.ycd_c01089{bottom:352.965093pt;}
.yce_c01089{bottom:353.330773pt;}
.ycf_c01089{bottom:354.489707pt;}
.yd0_c01089{bottom:355.037547pt;}
.ybb_c01089{bottom:369.300587pt;}
.ybc_c01089{bottom:369.925413pt;}
.ybd_c01089{bottom:370.244160pt;}
.ybe_c01089{bottom:370.680347pt;}
.ybf_c01089{bottom:371.108613pt;}
.yc0_c01089{bottom:371.437627pt;}
.yc1_c01089{bottom:372.398800pt;}
.yc2_c01089{bottom:373.322587pt;}
.yc3_c01089{bottom:373.843893pt;}
.yc4_c01089{bottom:374.271093pt;}
.yc5_c01089{bottom:375.154960pt;}
.yb1_c01089{bottom:389.463893pt;}
.yb2_c01089{bottom:390.244507pt;}
.yb3_c01089{bottom:390.597947pt;}
.yb4_c01089{bottom:391.482987pt;}
.yb5_c01089{bottom:392.272613pt;}
.yb6_c01089{bottom:392.618987pt;}
.yb7_c01089{bottom:393.016933pt;}
.yb8_c01089{bottom:393.844640pt;}
.yb9_c01089{bottom:394.826693pt;}
.yba_c01089{bottom:395.423787pt;}
.ya8_c01089{bottom:409.578240pt;}
.ya9_c01089{bottom:409.988480pt;}
.yaa_c01089{bottom:410.672640pt;}
.yab_c01089{bottom:411.363813pt;}
.yac_c01089{bottom:412.776267pt;}
.yad_c01089{bottom:413.218053pt;}
.yae_c01089{bottom:413.613787pt;}
.yaf_c01089{bottom:414.820747pt;}
.yb0_c01089{bottom:415.281093pt;}
.ya3_c01089{bottom:428.592560pt;}
.ya4_c01089{bottom:429.428480pt;}
.ya5_c01089{bottom:429.846667pt;}
.ya6_c01089{bottom:431.964773pt;}
.ya7_c01089{bottom:435.378453pt;}
.y98_c01089{bottom:448.992853pt;}
.y99_c01089{bottom:449.459200pt;}
.y9a_c01089{bottom:450.649733pt;}
.y9b_c01089{bottom:450.933227pt;}
.y9c_c01089{bottom:451.521013pt;}
.y9d_c01089{bottom:451.932347pt;}
.y9e_c01089{bottom:452.818427pt;}
.y9f_c01089{bottom:453.116080pt;}
.ya0_c01089{bottom:453.700480pt;}
.ya1_c01089{bottom:454.189040pt;}
.ya2_c01089{bottom:455.407280pt;}
.y8d_c01089{bottom:468.919680pt;}
.y8e_c01089{bottom:469.286720pt;}
.y8f_c01089{bottom:469.856693pt;}
.y90_c01089{bottom:471.524027pt;}
.y91_c01089{bottom:472.038320pt;}
.y92_c01089{bottom:472.902427pt;}
.y93_c01089{bottom:473.693387pt;}
.y94_c01089{bottom:474.327947pt;}
.y95_c01089{bottom:474.733920pt;}
.y96_c01089{bottom:475.625440pt;}
.y97_c01089{bottom:476.142880pt;}
.y80_c01089{bottom:489.801173pt;}
.y81_c01089{bottom:490.262560pt;}
.y82_c01089{bottom:490.562613pt;}
.y83_c01089{bottom:491.007493pt;}
.y84_c01089{bottom:491.383120pt;}
.y85_c01089{bottom:491.726240pt;}
.y86_c01089{bottom:492.663227pt;}
.y87_c01089{bottom:493.207733pt;}
.y88_c01089{bottom:493.822453pt;}
.y89_c01089{bottom:494.322347pt;}
.y8a_c01089{bottom:494.652720pt;}
.y8b_c01089{bottom:495.183040pt;}
.y8c_c01089{bottom:495.900667pt;}
.y74_c01089{bottom:509.482080pt;}
.y75_c01089{bottom:510.159840pt;}
.y76_c01089{bottom:510.964640pt;}
.y77_c01089{bottom:511.815760pt;}
.y78_c01089{bottom:512.252640pt;}
.y79_c01089{bottom:512.631867pt;}
.y7a_c01089{bottom:513.509733pt;}
.y7b_c01089{bottom:513.892987pt;}
.y7c_c01089{bottom:514.339787pt;}
.y7d_c01089{bottom:515.151200pt;}
.y7e_c01089{bottom:515.847067pt;}
.y7f_c01089{bottom:516.537547pt;}
.y67_c01089{bottom:530.126960pt;}
.y68_c01089{bottom:530.679547pt;}
.y69_c01089{bottom:531.065093pt;}
.y6a_c01089{bottom:531.794293pt;}
.y6b_c01089{bottom:532.089973pt;}
.y6c_c01089{bottom:532.754613pt;}
.y6d_c01089{bottom:533.062693pt;}
.y6e_c01089{bottom:533.569760pt;}
.y6f_c01089{bottom:534.103600pt;}
.y70_c01089{bottom:534.907040pt;}
.y71_c01089{bottom:535.353013pt;}
.y72_c01089{bottom:535.889093pt;}
.y73_c01089{bottom:536.396160pt;}
.y5d_c01089{bottom:549.797147pt;}
.y5e_c01089{bottom:550.347307pt;}
.y5f_c01089{bottom:550.882000pt;}
.y60_c01089{bottom:551.831333pt;}
.y61_c01089{bottom:552.632133pt;}
.y62_c01089{bottom:553.134773pt;}
.y63_c01089{bottom:553.924933pt;}
.y64_c01089{bottom:555.027547pt;}
.y65_c01089{bottom:555.443893pt;}
.y66_c01089{bottom:556.410667pt;}
.y51_c01089{bottom:569.202613pt;}
.y52_c01089{bottom:569.500293pt;}
.y53_c01089{bottom:569.883787pt;}
.y54_c01089{bottom:570.755360pt;}
.y55_c01089{bottom:571.436160pt;}
.y56_c01089{bottom:571.842133pt;}
.y57_c01089{bottom:572.909307pt;}
.y58_c01089{bottom:573.171520pt;}
.y59_c01089{bottom:574.588480pt;}
.y5a_c01089{bottom:575.713547pt;}
.y5b_c01089{bottom:576.147520pt;}
.y5c_c01089{bottom:576.980213pt;}
.y41_c01089{bottom:589.658293pt;}
.y42_c01089{bottom:590.025013pt;}
.y43_c01089{bottom:590.448933pt;}
.y44_c01089{bottom:591.119707pt;}
.y45_c01089{bottom:591.556507pt;}
.y46_c01089{bottom:591.931760pt;}
.y47_c01089{bottom:592.460160pt;}
.y48_c01089{bottom:592.962160pt;}
.y49_c01089{bottom:593.528853pt;}
.y4a_c01089{bottom:593.811920pt;}
.y4b_c01089{bottom:594.165493pt;}
.y4c_c01089{bottom:594.592880pt;}
.y4d_c01089{bottom:595.271787pt;}
.y4e_c01089{bottom:595.553280pt;}
.y4f_c01089{bottom:596.015173pt;}
.y50_c01089{bottom:597.075200pt;}
.y37_c01089{bottom:609.824160pt;}
.y38_c01089{bottom:611.032107pt;}
.y39_c01089{bottom:611.548480pt;}
.y3a_c01089{bottom:612.665413pt;}
.y3b_c01089{bottom:613.092773pt;}
.y3c_c01089{bottom:614.245813pt;}
.y3d_c01089{bottom:614.748693pt;}
.y3e_c01089{bottom:615.027333pt;}
.y3f_c01089{bottom:616.691467pt;}
.y40_c01089{bottom:617.247813pt;}
.y2a_c01089{bottom:629.746747pt;}
.y2b_c01089{bottom:630.452347pt;}
.y2c_c01089{bottom:631.219893pt;}
.y2d_c01089{bottom:631.800373pt;}
.y2e_c01089{bottom:632.214960pt;}
.y2f_c01089{bottom:632.784800pt;}
.y30_c01089{bottom:633.540667pt;}
.y31_c01089{bottom:633.972667pt;}
.y32_c01089{bottom:634.206320pt;}
.y33_c01089{bottom:634.812240pt;}
.y34_c01089{bottom:636.190560pt;}
.y35_c01089{bottom:636.664613pt;}
.y36_c01089{bottom:636.932747pt;}
.y161_c01089{bottom:640.080000pt;}
.y1f_c01089{bottom:649.191920pt;}
.y20_c01089{bottom:649.830000pt;}
.y21_c01089{bottom:650.384107pt;}
.y22_c01089{bottom:651.396427pt;}
.y23_c01089{bottom:652.129520pt;}
.y24_c01089{bottom:652.888453pt;}
.y25_c01089{bottom:654.285547pt;}
.y26_c01089{bottom:654.987653pt;}
.y27_c01089{bottom:655.448853pt;}
.y28_c01089{bottom:656.691893pt;}
.y29_c01089{bottom:657.426240pt;}
.y14_c01089{bottom:669.363733pt;}
.y15_c01089{bottom:669.556560pt;}
.y16_c01089{bottom:670.008347pt;}
.y17_c01089{bottom:670.722053pt;}
.y18_c01089{bottom:671.156187pt;}
.y19_c01089{bottom:672.599440pt;}
.y1a_c01089{bottom:673.226667pt;}
.y1b_c01089{bottom:675.062213pt;}
.y1c_c01089{bottom:675.793600pt;}
.y1d_c01089{bottom:676.487840pt;}
.y1e_c01089{bottom:677.132453pt;}
.yd_c01089{bottom:689.762053pt;}
.ye_c01089{bottom:690.792267pt;}
.yf_c01089{bottom:690.903707pt;}
.y10_c01089{bottom:691.665440pt;}
.y11_c01089{bottom:692.210827pt;}
.y12_c01089{bottom:693.089333pt;}
.y13_c01089{bottom:693.711493pt;}
.y160_c01089{bottom:694.800000pt;}
.y15f_c01089{bottom:699.600000pt;}
.y1_c01089{bottom:710.165333pt;}
.y2_c01089{bottom:711.245013pt;}
.y3_c01089{bottom:711.595440pt;}
.y4_c01089{bottom:712.316453pt;}
.y5_c01089{bottom:713.223653pt;}
.y6_c01089{bottom:713.953680pt;}
.y7_c01089{bottom:715.268907pt;}
.y8_c01089{bottom:715.705813pt;}
.y9_c01089{bottom:716.313760pt;}
.ya_c01089{bottom:716.928320pt;}
.yb_c01089{bottom:717.520720pt;}
.yc_c01089{bottom:718.456427pt;}
.h12_c01089{height:19.600000pt;}
.h13_c01089{height:35.466667pt;}
.h10_c01089{height:39.212248pt;}
.h7_c01089{height:51.343599pt;}
.ha_c01089{height:56.011199pt;}
.h8_c01089{height:57.878239pt;}
.h9_c01089{height:58.811759pt;}
.h6_c01089{height:59.745279pt;}
.hf_c01089{height:59.751997pt;}
.h4_c01089{height:60.678799pt;}
.he_c01089{height:61.600000pt;}
.h2_c01089{height:61.612319pt;}
.h5_c01089{height:62.545839pt;}
.hb_c01089{height:63.479359pt;}
.h3_c01089{height:64.412879pt;}
.hc_c01089{height:67.213439pt;}
.hd_c01089{height:75.600000pt;}
.h14_c01089{height:93.333333pt;}
.h11_c01089{height:136.309243pt;}
.h0_c01089{height:896.400000pt;}
.h1_c01089{height:896.666667pt;}
.w0_c01089{width:632.640000pt;}
.w1_c01089{width:632.666667pt;}
.x0_c01089{left:0.000000pt;}
.xb6_c01089{left:65.057333pt;}
.xbe_c01089{left:74.044800pt;}
.xb9_c01089{left:85.141167pt;}
.xbf_c01089{left:91.530033pt;}
.x1_c01089{left:103.194667pt;}
.x5b_c01089{left:104.377867pt;}
.x7c_c01089{left:105.319387pt;}
.x89_c01089{left:106.469413pt;}
.x93_c01089{left:107.462027pt;}
.x13_c01089{left:108.665893pt;}
.xa4_c01089{left:109.595600pt;}
.xaf_c01089{left:110.798907pt;}
.xb3_c01089{left:111.744000pt;}
.x14_c01089{left:118.307227pt;}
.x39_c01089{left:123.988827pt;}
.x6e_c01089{left:125.088400pt;}
.x98_c01089{left:129.252373pt;}
.x94_c01089{left:130.992373pt;}
.x65_c01089{left:132.664080pt;}
.x77_c01089{left:133.645547pt;}
.x1e_c01089{left:135.780587pt;}
.x45_c01089{left:139.202907pt;}
.x15_c01089{left:140.896560pt;}
.x25_c01089{left:142.554693pt;}
.x7f_c01089{left:143.702667pt;}
.xa9_c01089{left:145.840293pt;}
.x3a_c01089{left:147.519093pt;}
.xd_c01089{left:150.080720pt;}
.x66_c01089{left:151.401573pt;}
.xa5_c01089{left:152.561147pt;}
.xe_c01089{left:155.119173pt;}
.x2_c01089{left:157.178667pt;}
.x82_c01089{left:158.104480pt;}
.x53_c01089{left:162.453600pt;}
.x1f_c01089{left:163.485920pt;}
.x31_c01089{left:167.274160pt;}
.x84_c01089{left:173.226373pt;}
.x3_c01089{left:174.700000pt;}
.x16_c01089{left:176.581893pt;}
.x67_c01089{left:179.247813pt;}
.x83_c01089{left:181.645493pt;}
.x7d_c01089{left:183.764347pt;}
.x26_c01089{left:185.200400pt;}
.x5c_c01089{left:186.709147pt;}
.x8a_c01089{left:188.583280pt;}
.xf_c01089{left:189.737787pt;}
.x32_c01089{left:194.426693pt;}
.x17_c01089{left:198.288560pt;}
.xaa_c01089{left:200.355920pt;}
.x68_c01089{left:202.697680pt;}
.x85_c01089{left:204.372773pt;}
.x8f_c01089{left:205.569413pt;}
.x54_c01089{left:208.050587pt;}
.x3b_c01089{left:209.033547pt;}
.x4_c01089{left:210.750667pt;}
.x99_c01089{left:213.227493pt;}
.x10_c01089{left:214.539467pt;}
.x27_c01089{left:217.425680pt;}
.x46_c01089{left:220.889867pt;}
.x4e_c01089{left:223.374800pt;}
.x55_c01089{left:226.502720pt;}
.x3c_c01089{left:229.863707pt;}
.x90_c01089{left:231.977120pt;}
.x5d_c01089{left:234.000373pt;}
.x86_c01089{left:234.923093pt;}
.xa6_c01089{left:235.842480pt;}
.x28_c01089{left:240.489280pt;}
.x47_c01089{left:242.255627pt;}
.xa1_c01089{left:247.839307pt;}
.x6f_c01089{left:249.358693pt;}
.x20_c01089{left:250.756587pt;}
.x33_c01089{left:253.207867pt;}
.x11_c01089{left:254.463200pt;}
.x5_c01089{left:256.110667pt;}
.x5e_c01089{left:258.245333pt;}
.x3d_c01089{left:259.218213pt;}
.x78_c01089{left:262.479840pt;}
.x8b_c01089{left:266.116587pt;}
.x56_c01089{left:268.004693pt;}
.x18_c01089{left:270.451227pt;}
.x29_c01089{left:272.182560pt;}
.xa7_c01089{left:273.972587pt;}
.x34_c01089{left:275.709653pt;}
.x70_c01089{left:277.941173pt;}
.x5f_c01089{left:279.340853pt;}
.x12_c01089{left:282.770080pt;}
.x3e_c01089{left:287.119333pt;}
.x21_c01089{left:288.703253pt;}
.xba_c01089{left:291.105333pt;}
.x6_c01089{left:292.612000pt;}
.x9a_c01089{left:296.818533pt;}
.x48_c01089{left:298.415413pt;}
.x4f_c01089{left:300.018053pt;}
.x19_c01089{left:301.812560pt;}
.x8c_c01089{left:311.003307pt;}
.x49_c01089{left:312.193013pt;}
.x2a_c01089{left:314.177573pt;}
.x69_c01089{left:316.737467pt;}
.x3f_c01089{left:318.588587pt;}
.xab_c01089{left:320.839467pt;}
.xb0_c01089{left:324.891360pt;}
.x71_c01089{left:325.948427pt;}
.x87_c01089{left:327.110160pt;}
.x60_c01089{left:328.102800pt;}
.x95_c01089{left:330.983040pt;}
.x40_c01089{left:334.342560pt;}
.x35_c01089{left:336.429547pt;}
.x2b_c01089{left:338.178533pt;}
.x91_c01089{left:339.565520pt;}
.xb4_c01089{left:341.228000pt;}
.x79_c01089{left:343.556987pt;}
.x80_c01089{left:345.597493pt;}
.x50_c01089{left:346.528853pt;}
.x61_c01089{left:349.399653pt;}
.x2c_c01089{left:351.128373pt;}
.x57_c01089{left:352.327440pt;}
.x41_c01089{left:353.955333pt;}
.x6a_c01089{left:355.143200pt;}
.x9b_c01089{left:356.546613pt;}
.x7_c01089{left:358.373333pt;}
.xa2_c01089{left:359.954560pt;}
.x36_c01089{left:362.907413pt;}
.x72_c01089{left:369.898187pt;}
.x8d_c01089{left:371.974640pt;}
.x62_c01089{left:374.207307pt;}
.x37_c01089{left:377.573040pt;}
.x8_c01089{left:380.218667pt;}
.x2d_c01089{left:384.759040pt;}
.x96_c01089{left:385.672507pt;}
.x4a_c01089{left:386.775840pt;}
.x1a_c01089{left:393.589893pt;}
.xac_c01089{left:395.011173pt;}
.x7a_c01089{left:398.664053pt;}
.x58_c01089{left:402.503440pt;}
.x9d_c01089{left:404.110027pt;}
.x73_c01089{left:405.160933pt;}
.x6b_c01089{left:407.060693pt;}
.x9_c01089{left:410.616000pt;}
.x42_c01089{left:415.405787pt;}
.x22_c01089{left:416.723253pt;}
.x63_c01089{left:419.313120pt;}
.x9e_c01089{left:422.069253pt;}
.xa3_c01089{left:425.478373pt;}
.x74_c01089{left:427.727173pt;}
.x7b_c01089{left:429.161147pt;}
.x1b_c01089{left:430.159227pt;}
.x43_c01089{left:431.081093pt;}
.xad_c01089{left:434.647387pt;}
.x51_c01089{left:435.882213pt;}
.x6c_c01089{left:440.179333pt;}
.xa_c01089{left:441.344000pt;}
.x4b_c01089{left:445.963680pt;}
.x92_c01089{left:446.880560pt;}
.x9f_c01089{left:450.923787pt;}
.x8e_c01089{left:454.797920pt;}
.xa0_c01089{left:455.709653pt;}
.x44_c01089{left:456.710107pt;}
.x64_c01089{left:457.974667pt;}
.x2e_c01089{left:461.344773pt;}
.x59_c01089{left:463.877680pt;}
.x1c_c01089{left:464.871227pt;}
.x4c_c01089{left:468.796133pt;}
.xb_c01089{left:470.964000pt;}
.x81_c01089{left:474.493120pt;}
.x75_c01089{left:477.238480pt;}
.x23_c01089{left:478.875253pt;}
.xbb_c01089{left:480.701933pt;}
.x97_c01089{left:483.596960pt;}
.x6d_c01089{left:485.064267pt;}
.x2f_c01089{left:487.715173pt;}
.x9c_c01089{left:488.877093pt;}
.x52_c01089{left:492.757627pt;}
.x38_c01089{left:494.466053pt;}
.x5a_c01089{left:495.566880pt;}
.x1d_c01089{left:497.101893pt;}
.xae_c01089{left:498.422987pt;}
.x30_c01089{left:502.589093pt;}
.x76_c01089{left:505.978293pt;}
.xb7_c01089{left:507.540000pt;}
.xb5_c01089{left:509.132000pt;}
.xa8_c01089{left:510.498427pt;}
.x4d_c01089{left:512.631680pt;}
.x24_c01089{left:515.592587pt;}
.xc_c01089{left:517.749333pt;}
.xb1_c01089{left:518.852800pt;}
.x88_c01089{left:523.941760pt;}
.x7e_c01089{left:529.514667pt;}
.xbc_c01089{left:555.386733pt;}
.xb2_c01089{left:557.520000pt;}
.xb8_c01089{left:558.428000pt;}
.xbd_c01089{left:586.507300pt;}
.xc2_c01089{left:624.960000pt;}
.xc1_c01089{left:625.920000pt;}
.xc0_c01089{left:626.880000pt;}
.xc3_c01089{left:627.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_c01090 {
    display:none;
  }
  .loading-indicator_c01090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01090 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01090 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01090" -> "#page-container .classname_c01090")
 */
.pf_c01090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01090 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01090 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01090 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01090 {overflow:visible;}
  }
}
.c_c01090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01090 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01090:after { /* webkit #35443 */
  content: '';
}
.t_c01090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01090 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01090 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01090 { /* info for Javascript */
  display:none;
}
.l_c01090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_7b27c95a9cb4dd3f7cd72c03.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m122_c01090{transform:matrix(0.009225,-0.000083,0.002250,0.249990,0,0);-ms-transform:matrix(0.009225,-0.000083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.009225,-0.000083,0.002250,0.249990,0,0);}
.m20_c01090{transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009965,0.000000,0.000000,0.250000,0,0);}
.me9_c01090{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);}
.m127_c01090{transform:matrix(0.020669,-0.000186,0.002250,0.249990,0,0);-ms-transform:matrix(0.020669,-0.000186,0.002250,0.249990,0,0);-webkit-transform:matrix(0.020669,-0.000186,0.002250,0.249990,0,0);}
.m12d_c01090{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);}
.m12f_c01090{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);}
.maa_c01090{transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083030,0.000000,0.000000,0.250000,0,0);}
.m35_c01090{transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094730,0.000000,0.000000,0.250000,0,0);}
.m1c_c01090{transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096225,0.000000,0.000000,0.250000,0,0);}
.m94_c01090{transform:matrix(0.098090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098090,0.000000,0.000000,0.250000,0,0);}
.mb0_c01090{transform:matrix(0.102855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102855,0.000000,0.000000,0.250000,0,0);}
.m6f_c01090{transform:matrix(0.125880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125880,0.000000,0.000000,0.250000,0,0);}
.m11c_c01090{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.mab_c01090{transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);}
.m78_c01090{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m97_c01090{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);}
.m26_c01090{transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144965,0.000000,0.000000,0.250000,0,0);}
.mf9_c01090{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.mf3_c01090{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);}
.mef_c01090{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);}
.mda_c01090{transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151155,0.000000,0.000000,0.250000,0,0);}
.md6_c01090{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);}
.m85_c01090{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);}
.m112_c01090{transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153380,0.000000,0.000000,0.250000,0,0);}
.m9f_c01090{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);}
.m98_c01090{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);}
.m10a_c01090{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);}
.mc1_c01090{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);}
.mbe_c01090{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);}
.ma8_c01090{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);}
.m58_c01090{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);}
.m74_c01090{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);}
.med_c01090{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);}
.ma6_c01090{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);}
.mc_c01090{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);}
.m126_c01090{transform:matrix(0.158649,-0.001428,0.002250,0.249990,0,0);-ms-transform:matrix(0.158649,-0.001428,0.002250,0.249990,0,0);-webkit-transform:matrix(0.158649,-0.001428,0.002250,0.249990,0,0);}
.m38_c01090{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);}
.mdb_c01090{transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159440,0.000000,0.000000,0.250000,0,0);}
.mf4_c01090{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);}
.m7f_c01090{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);}
.m88_c01090{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);}
.mc3_c01090{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);}
.ma4_c01090{transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160735,0.000000,0.000000,0.250000,0,0);}
.m25_c01090{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);}
.m44_c01090{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);}
.me5_c01090{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);}
.m81_c01090{transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161735,0.000000,0.000000,0.250000,0,0);}
.m41_c01090{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);}
.m4a_c01090{transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163435,0.000000,0.000000,0.250000,0,0);}
.m63_c01090{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_c01090{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);}
.m89_c01090{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);}
.m2b_c01090{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m71_c01090{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);}
.m56_c01090{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);}
.m3e_c01090{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);}
.m92_c01090{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);}
.mcf_c01090{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);}
.m7a_c01090{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);}
.mf2_c01090{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);}
.m66_c01090{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);}
.mfa_c01090{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);}
.mad_c01090{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);}
.m36_c01090{transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168640,0.000000,0.000000,0.250000,0,0);}
.me4_c01090{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);}
.mc4_c01090{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);}
.m113_c01090{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);}
.m72_c01090{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);}
.m16_c01090{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);}
.m117_c01090{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);}
.mdc_c01090{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);}
.md_c01090{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);}
.mdd_c01090{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);}
.m7e_c01090{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);}
.md0_c01090{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);}
.m48_c01090{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);}
.md3_c01090{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);}
.m10b_c01090{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);}
.mb8_c01090{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);}
.ma5_c01090{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);}
.mbd_c01090{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);}
.m8c_c01090{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);}
.mec_c01090{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);}
.m61_c01090{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);}
.m123_c01090{transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);-ms-transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175498,-0.001579,0.002250,0.249990,0,0);}
.m10_c01090{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);}
.m40_c01090{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);}
.m1a_c01090{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);}
.m49_c01090{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);}
.m59_c01090{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);}
.m60_c01090{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);}
.m124_c01090{transform:matrix(0.176728,-0.001591,0.002250,0.249990,0,0);-ms-transform:matrix(0.176728,-0.001591,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176728,-0.001591,0.002250,0.249990,0,0);}
.m7b_c01090{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m100_c01090{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);}
.mf7_c01090{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);}
.mc8_c01090{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);}
.m106_c01090{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);}
.m75_c01090{transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178820,0.000000,0.000000,0.250000,0,0);}
.m55_c01090{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);}
.m5c_c01090{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);}
.m96_c01090{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);}
.mee_c01090{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);}
.mac_c01090{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);}
.m4d_c01090{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);}
.m7d_c01090{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);}
.m24_c01090{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);}
.m6b_c01090{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);}
.m68_c01090{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);}
.m86_c01090{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);}
.m13_c01090{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);}
.m8f_c01090{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);}
.mcb_c01090{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);}
.mbf_c01090{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);}
.m47_c01090{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);}
.mca_c01090{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);}
.mc0_c01090{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);}
.me1_c01090{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);}
.m39_c01090{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);}
.m11_c01090{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);}
.m108_c01090{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);}
.m17_c01090{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);}
.m110_c01090{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);}
.m11b_c01090{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);}
.m83_c01090{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);}
.md5_c01090{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);}
.m28_c01090{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);}
.me_c01090{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);}
.meb_c01090{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);}
.m8b_c01090{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);}
.m3f_c01090{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);}
.m80_c01090{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);}
.m23_c01090{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);}
.m4e_c01090{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);}
.m105_c01090{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);}
.mf_c01090{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);}
.m87_c01090{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);}
.m27_c01090{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);}
.me0_c01090{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);}
.m19_c01090{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);}
.m8e_c01090{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);}
.mbc_c01090{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);}
.mf1_c01090{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);}
.me2_c01090{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);}
.m65_c01090{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);}
.m107_c01090{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);}
.m103_c01090{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);}
.mc6_c01090{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);}
.m33_c01090{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);}
.m82_c01090{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);}
.m45_c01090{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);}
.ma0_c01090{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);}
.mdf_c01090{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);}
.me3_c01090{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);}
.md7_c01090{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);}
.m6c_c01090{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);}
.m93_c01090{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);}
.m6e_c01090{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);}
.m101_c01090{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);}
.m114_c01090{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);}
.me7_c01090{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);}
.mce_c01090{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);}
.mf0_c01090{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);}
.m64_c01090{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);}
.m91_c01090{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);}
.m1f_c01090{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);}
.m42_c01090{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);}
.m3_c01090{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);}
.mde_c01090{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);}
.m77_c01090{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);}
.m8_c01090{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);}
.ma_c01090{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);}
.m4c_c01090{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);}
.m121_c01090{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);}
.m79_c01090{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);}
.m9a_c01090{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);}
.m111_c01090{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);}
.mb_c01090{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);}
.mf5_c01090{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);}
.m5f_c01090{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);}
.m51_c01090{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);}
.m3c_c01090{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);}
.m9_c01090{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);}
.m1_c01090{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);}
.m12_c01090{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);}
.md1_c01090{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);}
.m99_c01090{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);}
.m2c_c01090{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);}
.m76_c01090{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);}
.m1d_c01090{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);}
.m7c_c01090{transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199130,0.000000,0.000000,0.250000,0,0);}
.m67_c01090{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);}
.m9c_c01090{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);}
.mfc_c01090{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);}
.m2d_c01090{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);}
.mb5_c01090{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);}
.m120_c01090{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);}
.m62_c01090{transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201010,0.000000,0.000000,0.250000,0,0);}
.m43_c01090{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);}
.m3d_c01090{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);}
.m3a_c01090{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);}
.mc7_c01090{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);}
.m69_c01090{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);}
.m31_c01090{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);}
.mf6_c01090{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);}
.m6_c01090{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);}
.m14_c01090{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);}
.mc5_c01090{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);}
.m10e_c01090{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);}
.m37_c01090{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);}
.mc2_c01090{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);}
.m34_c01090{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);}
.m11e_c01090{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);}
.m8d_c01090{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);}
.ma1_c01090{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);}
.mcc_c01090{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);}
.m9b_c01090{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);}
.m11a_c01090{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);}
.m15_c01090{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);}
.m73_c01090{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);}
.m0_c01090{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);}
.m6a_c01090{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);}
.m109_c01090{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);}
.m1e_c01090{transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);}
.md4_c01090{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);}
.m6d_c01090{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);}
.mfb_c01090{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);}
.m90_c01090{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);}
.m8a_c01090{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);}
.m104_c01090{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);}
.md2_c01090{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);}
.mba_c01090{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);}
.m115_c01090{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);}
.m2e_c01090{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);}
.m95_c01090{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);}
.m9e_c01090{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m53_c01090{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);}
.md9_c01090{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);}
.m50_c01090{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);}
.mae_c01090{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);}
.m7_c01090{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);}
.m2_c01090{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);}
.m32_c01090{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);}
.m2f_c01090{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);}
.mf8_c01090{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);}
.mbb_c01090{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);}
.m18_c01090{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);}
.me8_c01090{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);}
.me6_c01090{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m10d_c01090{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);}
.m5a_c01090{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);}
.m11f_c01090{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);}
.m4f_c01090{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);}
.m3b_c01090{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);}
.m5_c01090{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);}
.m2a_c01090{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);}
.m57_c01090{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);}
.m10c_c01090{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);}
.m4_c01090{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);}
.m9d_c01090{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);}
.m52_c01090{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m5b_c01090{transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230040,0.000000,0.000000,0.250000,0,0);}
.mb1_c01090{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);}
.mc9_c01090{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);}
.mb7_c01090{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.ma2_c01090{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);}
.mfd_c01090{transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236485,0.000000,0.000000,0.250000,0,0);}
.m4b_c01090{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);}
.m118_c01090{transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);}
.m21_c01090{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);}
.md8_c01090{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);}
.m84_c01090{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);}
.m125_c01090{transform:matrix(0.249205,-0.002243,0.002250,0.249990,0,0);-ms-transform:matrix(0.249205,-0.002243,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249205,-0.002243,0.002250,0.249990,0,0);}
.mb9_c01090{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);}
.m46_c01090{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.mff_c01090{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);}
.m5d_c01090{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.mcd_c01090{transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);}
.maf_c01090{transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);}
.mb6_c01090{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m12b_c01090{transform:matrix(0.261619,-0.001831,0.001750,0.249994,0,0);-ms-transform:matrix(0.261619,-0.001831,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261619,-0.001831,0.001750,0.249994,0,0);}
.m116_c01090{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);}
.m29_c01090{transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);}
.mb4_c01090{transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276015,0.000000,0.000000,0.250000,0,0);}
.m102_c01090{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);}
.mb3_c01090{transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);}
.m70_c01090{transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);}
.ma3_c01090{transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292950,0.000000,0.000000,0.250000,0,0);}
.m22_c01090{transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302955,0.000000,0.000000,0.250000,0,0);}
.m10f_c01090{transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);}
.m11d_c01090{transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306940,0.000000,0.000000,0.250000,0,0);}
.m5e_c01090{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);}
.m54_c01090{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);}
.mfe_c01090{transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349915,0.000000,0.000000,0.250000,0,0);}
.m12e_c01090{transform:matrix(0.354420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354420,0.000000,0.000000,0.250000,0,0);}
.m12c_c01090{transform:matrix(0.361161,-0.002528,0.001750,0.249994,0,0);-ms-transform:matrix(0.361161,-0.002528,0.001750,0.249994,0,0);-webkit-transform:matrix(0.361161,-0.002528,0.001750,0.249994,0,0);}
.m119_c01090{transform:matrix(0.380960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380960,0.000000,0.000000,0.250000,0,0);}
.m30_c01090{transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445025,0.000000,0.000000,0.250000,0,0);}
.mea_c01090{transform:matrix(0.482945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482945,0.000000,0.000000,0.250000,0,0);}
.m129_c01090{transform:matrix(0.497075,-0.004474,0.002250,0.249990,0,0);-ms-transform:matrix(0.497075,-0.004474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.497075,-0.004474,0.002250,0.249990,0,0);}
.m128_c01090{transform:matrix(0.504550,-0.004541,0.002250,0.249990,0,0);-ms-transform:matrix(0.504550,-0.004541,0.002250,0.249990,0,0);-webkit-transform:matrix(0.504550,-0.004541,0.002250,0.249990,0,0);}
.mb2_c01090{transform:matrix(0.512165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512165,0.000000,0.000000,0.250000,0,0);}
.ma9_c01090{transform:matrix(0.587095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587095,0.000000,0.000000,0.250000,0,0);}
.ma7_c01090{transform:matrix(0.592815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592815,0.000000,0.000000,0.250000,0,0);}
.m12a_c01090{transform:matrix(0.709723,-0.004968,0.001750,0.249994,0,0);-ms-transform:matrix(0.709723,-0.004968,0.001750,0.249994,0,0);-webkit-transform:matrix(0.709723,-0.004968,0.001750,0.249994,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.ls0_c01090{letter-spacing:0.000000px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:0.000000px;}
.fc0_c01090{color:transparent;}
.fsc_c01090{font-size:22.050000px;}
.fs5_c01090{font-size:64.050000px;}
.fs1_c01090{font-size:66.150000px;}
.fs6_c01090{font-size:67.200000px;}
.fs7_c01090{font-size:68.250000px;}
.fs2_c01090{font-size:69.300000px;}
.fs4_c01090{font-size:70.350000px;}
.fsa_c01090{font-size:70.352849px;}
.fs8_c01090{font-size:71.400000px;}
.fs9_c01090{font-size:73.500000px;}
.fs3_c01090{font-size:76.650000px;}
.fs0_c01090{font-size:101.850000px;}
.fsb_c01090{font-size:199.504888px;}
.y0_c01090{bottom:0.000000px;}
.y28_c01090{bottom:102.727500px;}
.y25_c01090{bottom:104.221500px;}
.y26_c01090{bottom:105.664378px;}
.y27_c01090{bottom:107.169984px;}
.y1d_c01090{bottom:168.211500px;}
.y1e_c01090{bottom:168.379427px;}
.y1f_c01090{bottom:168.535135px;}
.y20_c01090{bottom:169.312722px;}
.y21_c01090{bottom:169.757223px;}
.y22_c01090{bottom:169.982916px;}
.y23_c01090{bottom:170.534877px;}
.y24_c01090{bottom:171.069369px;}
.y1c_c01090{bottom:204.832500px;}
.y1b_c01090{bottom:227.433000px;}
.y1a_c01090{bottom:249.858000px;}
.y19_c01090{bottom:272.857500px;}
.y18_c01090{bottom:295.221000px;}
.y17_c01090{bottom:323.365500px;}
.y16_c01090{bottom:345.807000px;}
.y15_c01090{bottom:368.758500px;}
.y14_c01090{bottom:391.647000px;}
.y13_c01090{bottom:414.358500px;}
.y12_c01090{bottom:437.040000px;}
.y11_c01090{bottom:482.188500px;}
.y10_c01090{bottom:504.630000px;}
.yf_c01090{bottom:527.580000px;}
.ye_c01090{bottom:550.561500px;}
.yd_c01090{bottom:573.241500px;}
.yc_c01090{bottom:596.256000px;}
.yb_c01090{bottom:619.203000px;}
.ya_c01090{bottom:641.344500px;}
.y9_c01090{bottom:664.056000px;}
.y8_c01090{bottom:687.229500px;}
.y7_c01090{bottom:709.222500px;}
.y6_c01090{bottom:739.681500px;}
.y5_c01090{bottom:761.721000px;}
.y4_c01090{bottom:784.684500px;}
.y3_c01090{bottom:807.634500px;}
.y2_c01090{bottom:829.203000px;}
.y1_c01090{bottom:873.870000px;}
.he_c01090{height:22.050000px;}
.h7_c01090{height:64.050000px;}
.h3_c01090{height:66.150000px;}
.h8_c01090{height:67.200000px;}
.h9_c01090{height:68.250000px;}
.h4_c01090{height:69.300000px;}
.h6_c01090{height:70.350000px;}
.hc_c01090{height:70.352849px;}
.ha_c01090{height:71.400000px;}
.hb_c01090{height:73.500000px;}
.h5_c01090{height:76.650000px;}
.h2_c01090{height:101.850000px;}
.hd_c01090{height:199.504888px;}
.h1_c01090{height:1005.000000px;}
.h0_c01090{height:1005.150000px;}
.w0_c01090{width:739.200000px;}
.w1_c01090{width:739.500000px;}
.x0_c01090{left:0.000000px;}
.xb7_c01090{left:57.715500px;}
.x1f_c01090{left:87.480000px;}
.x34_c01090{left:89.370000px;}
.xac_c01090{left:93.420000px;}
.x85_c01090{left:97.470000px;}
.x3f_c01090{left:99.090000px;}
.xc_c01090{left:100.170000px;}
.x2_c01090{left:101.250000px;}
.xb2_c01090{left:109.165500px;}
.x9c_c01090{left:116.640000px;}
.x15_c01090{left:117.720000px;}
.x40_c01090{left:119.070000px;}
.x35_c01090{left:123.120000px;}
.x5d_c01090{left:127.170000px;}
.x52_c01090{left:135.270000px;}
.x3_c01090{left:139.590000px;}
.x68_c01090{left:142.020000px;}
.xb3_c01090{left:145.125000px;}
.xa6_c01090{left:146.340000px;}
.x53_c01090{left:150.390000px;}
.x96_c01090{left:156.870000px;}
.x20_c01090{left:158.490000px;}
.x77_c01090{left:159.570000px;}
.xd_c01090{left:161.460000px;}
.x71_c01090{left:162.810000px;}
.x16_c01090{left:165.240000px;}
.x36_c01090{left:168.210000px;}
.x41_c01090{left:169.290000px;}
.x69_c01090{left:171.720000px;}
.x5e_c01090{left:177.390000px;}
.x72_c01090{left:184.410000px;}
.x4_c01090{left:186.300000px;}
.x17_c01090{left:188.730000px;}
.x42_c01090{left:191.160000px;}
.x54_c01090{left:192.240000px;}
.x7d_c01090{left:196.290000px;}
.xe_c01090{left:198.180000px;}
.x78_c01090{left:199.800000px;}
.x37_c01090{left:203.310000px;}
.x86_c01090{left:206.010000px;}
.x5f_c01090{left:207.630000px;}
.x21_c01090{left:213.300000px;}
.x79_c01090{left:215.460000px;}
.x49_c01090{left:218.430000px;}
.x87_c01090{left:220.320000px;}
.x38_c01090{left:225.180000px;}
.x63_c01090{left:227.340000px;}
.xb4_c01090{left:231.523500px;}
.x4a_c01090{left:233.820000px;}
.x43_c01090{left:235.170000px;}
.x88_c01090{left:238.410000px;}
.x29_c01090{left:239.760000px;}
.x55_c01090{left:240.840000px;}
.x92_c01090{left:242.190000px;}
.x2a_c01090{left:244.890000px;}
.x22_c01090{left:247.050000px;}
.x6a_c01090{left:248.130000px;}
.xa7_c01090{left:249.750000px;}
.x5_c01090{left:252.180000px;}
.x9d_c01090{left:255.690000px;}
.xad_c01090{left:257.580000px;}
.xf_c01090{left:258.660000px;}
.xaf_c01090{left:260.010000px;}
.x4b_c01090{left:263.520000px;}
.x2b_c01090{left:264.600000px;}
.x93_c01090{left:266.490000px;}
.x64_c01090{left:268.110000px;}
.x6b_c01090{left:269.190000px;}
.x18_c01090{left:275.940000px;}
.xb5_c01090{left:280.912500px;}
.x39_c01090{left:282.690000px;}
.x56_c01090{left:284.040000px;}
.x44_c01090{left:286.470000px;}
.x73_c01090{left:290.250000px;}
.x4c_c01090{left:296.190000px;}
.x1_c01090{left:297.810000px;}
.xa8_c01090{left:299.970000px;}
.x2c_c01090{left:302.670000px;}
.xa2_c01090{left:303.750000px;}
.x65_c01090{left:306.180000px;}
.x3a_c01090{left:308.070000px;}
.x6_c01090{left:313.470000px;}
.x10_c01090{left:314.550000px;}
.x9e_c01090{left:317.250000px;}
.x19_c01090{left:318.330000px;}
.x23_c01090{left:319.680000px;}
.x57_c01090{left:322.110000px;}
.xa9_c01090{left:325.890000px;}
.x4d_c01090{left:327.510000px;}
.x7a_c01090{left:328.590000px;}
.x2d_c01090{left:329.940000px;}
.x6c_c01090{left:331.830000px;}
.x45_c01090{left:336.690000px;}
.x97_c01090{left:339.660000px;}
.x60_c01090{left:343.980000px;}
.x89_c01090{left:345.060000px;}
.x3b_c01090{left:346.410000px;}
.xae_c01090{left:348.030000px;}
.x9f_c01090{left:349.650000px;}
.x1a_c01090{left:350.730000px;}
.x7e_c01090{left:352.890000px;}
.x4e_c01090{left:354.780000px;}
.x6d_c01090{left:357.210000px;}
.x24_c01090{left:359.910000px;}
.x8a_c01090{left:360.990000px;}
.x7f_c01090{left:363.150000px;}
.x58_c01090{left:364.500000px;}
.xb6_c01090{left:367.318500px;}
.x46_c01090{left:368.550000px;}
.x11_c01090{left:371.520000px;}
.x9b_c01090{left:378.000000px;}
.x7_c01090{left:381.240000px;}
.xa3_c01090{left:382.320000px;}
.xaa_c01090{left:384.750000px;}
.x1b_c01090{left:387.990000px;}
.x25_c01090{left:396.090000px;}
.x98_c01090{left:399.330000px;}
.x3c_c01090{left:400.680000px;}
.x8f_c01090{left:404.460000px;}
.x4f_c01090{left:405.810000px;}
.x1c_c01090{left:408.510000px;}
.x61_c01090{left:410.670000px;}
.x2e_c01090{left:412.830000px;}
.x6e_c01090{left:413.910000px;}
.x80_c01090{left:416.610000px;}
.x59_c01090{left:417.960000px;}
.x7b_c01090{left:419.850000px;}
.x8b_c01090{left:421.470000px;}
.x2f_c01090{left:423.360000px;}
.x8_c01090{left:424.440000px;}
.x12_c01090{left:425.790000px;}
.x47_c01090{left:426.870000px;}
.x81_c01090{left:431.460000px;}
.x99_c01090{left:434.700000px;}
.x6f_c01090{left:436.860000px;}
.x82_c01090{left:437.940000px;}
.x5a_c01090{left:440.370000px;}
.x1d_c01090{left:441.720000px;}
.x94_c01090{left:442.800000px;}
.xa0_c01090{left:443.880000px;}
.x62_c01090{left:445.770000px;}
.xab_c01090{left:450.630000px;}
.x90_c01090{left:454.680000px;}
.x3d_c01090{left:457.110000px;}
.x9a_c01090{left:458.460000px;}
.x30_c01090{left:461.700000px;}
.x83_c01090{left:465.210000px;}
.x8c_c01090{left:470.070000px;}
.xa4_c01090{left:475.200000px;}
.x9_c01090{left:477.900000px;}
.xb8_c01090{left:478.927500px;}
.x74_c01090{left:482.490000px;}
.x31_c01090{left:484.380000px;}
.x70_c01090{left:491.400000px;}
.x13_c01090{left:494.640000px;}
.x26_c01090{left:496.530000px;}
.xb0_c01090{left:497.610000px;}
.x84_c01090{left:500.850000px;}
.xa1_c01090{left:502.470000px;}
.x5b_c01090{left:505.710000px;}
.x66_c01090{left:507.060000px;}
.x50_c01090{left:508.950000px;}
.x32_c01090{left:510.300000px;}
.xa_c01090{left:511.920000px;}
.x1e_c01090{left:517.860000px;}
.x14_c01090{left:521.100000px;}
.x8d_c01090{left:522.720000px;}
.x27_c01090{left:524.880000px;}
.x67_c01090{left:531.090000px;}
.x33_c01090{left:534.060000px;}
.xb_c01090{left:537.570000px;}
.xa5_c01090{left:539.460000px;}
.x7c_c01090{left:541.890000px;}
.x48_c01090{left:543.780000px;}
.x3e_c01090{left:545.130000px;}
.x8e_c01090{left:546.210000px;}
.x51_c01090{left:547.290000px;}
.x95_c01090{left:550.260000px;}
.x75_c01090{left:555.930000px;}
.x28_c01090{left:558.630000px;}
.x91_c01090{left:559.980000px;}
.x5c_c01090{left:561.330000px;}
.xb1_c01090{left:565.650000px;}
.x76_c01090{left:570.510000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls0_c01090{letter-spacing:0.000000pt;}
.ws0_c01090{word-spacing:0.000000pt;}
.fsc_c01090{font-size:19.600000pt;}
.fs5_c01090{font-size:56.933333pt;}
.fs1_c01090{font-size:58.800000pt;}
.fs6_c01090{font-size:59.733333pt;}
.fs7_c01090{font-size:60.666667pt;}
.fs2_c01090{font-size:61.600000pt;}
.fs4_c01090{font-size:62.533333pt;}
.fsa_c01090{font-size:62.535866pt;}
.fs8_c01090{font-size:63.466667pt;}
.fs9_c01090{font-size:65.333333pt;}
.fs3_c01090{font-size:68.133333pt;}
.fs0_c01090{font-size:90.533333pt;}
.fsb_c01090{font-size:177.337678pt;}
.y0_c01090{bottom:0.000000pt;}
.y28_c01090{bottom:91.313333pt;}
.y25_c01090{bottom:92.641333pt;}
.y26_c01090{bottom:93.923892pt;}
.y27_c01090{bottom:95.262208pt;}
.y1d_c01090{bottom:149.521333pt;}
.y1e_c01090{bottom:149.670601pt;}
.y1f_c01090{bottom:149.809009pt;}
.y20_c01090{bottom:150.500197pt;}
.y21_c01090{bottom:150.895309pt;}
.y22_c01090{bottom:151.095925pt;}
.y23_c01090{bottom:151.586557pt;}
.y24_c01090{bottom:152.061661pt;}
.y1c_c01090{bottom:182.073333pt;}
.y1b_c01090{bottom:202.162667pt;}
.y1a_c01090{bottom:222.096000pt;}
.y19_c01090{bottom:242.540000pt;}
.y18_c01090{bottom:262.418667pt;}
.y17_c01090{bottom:287.436000pt;}
.y16_c01090{bottom:307.384000pt;}
.y15_c01090{bottom:327.785333pt;}
.y14_c01090{bottom:348.130667pt;}
.y13_c01090{bottom:368.318667pt;}
.y12_c01090{bottom:388.480000pt;}
.y11_c01090{bottom:428.612000pt;}
.y10_c01090{bottom:448.560000pt;}
.yf_c01090{bottom:468.960000pt;}
.ye_c01090{bottom:489.388000pt;}
.yd_c01090{bottom:509.548000pt;}
.yc_c01090{bottom:530.005333pt;}
.yb_c01090{bottom:550.402667pt;}
.ya_c01090{bottom:570.084000pt;}
.y9_c01090{bottom:590.272000pt;}
.y8_c01090{bottom:610.870667pt;}
.y7_c01090{bottom:630.420000pt;}
.y6_c01090{bottom:657.494667pt;}
.y5_c01090{bottom:677.085333pt;}
.y4_c01090{bottom:697.497333pt;}
.y3_c01090{bottom:717.897333pt;}
.y2_c01090{bottom:737.069333pt;}
.y1_c01090{bottom:776.773333pt;}
.he_c01090{height:19.600000pt;}
.h7_c01090{height:56.933333pt;}
.h3_c01090{height:58.800000pt;}
.h8_c01090{height:59.733333pt;}
.h9_c01090{height:60.666667pt;}
.h4_c01090{height:61.600000pt;}
.h6_c01090{height:62.533333pt;}
.hc_c01090{height:62.535866pt;}
.ha_c01090{height:63.466667pt;}
.hb_c01090{height:65.333333pt;}
.h5_c01090{height:68.133333pt;}
.h2_c01090{height:90.533333pt;}
.hd_c01090{height:177.337678pt;}
.h1_c01090{height:893.333333pt;}
.h0_c01090{height:893.466667pt;}
.w0_c01090{width:657.066667pt;}
.w1_c01090{width:657.333333pt;}
.x0_c01090{left:0.000000pt;}
.xb7_c01090{left:51.302667pt;}
.x1f_c01090{left:77.760000pt;}
.x34_c01090{left:79.440000pt;}
.xac_c01090{left:83.040000pt;}
.x85_c01090{left:86.640000pt;}
.x3f_c01090{left:88.080000pt;}
.xc_c01090{left:89.040000pt;}
.x2_c01090{left:90.000000pt;}
.xb2_c01090{left:97.036000pt;}
.x9c_c01090{left:103.680000pt;}
.x15_c01090{left:104.640000pt;}
.x40_c01090{left:105.840000pt;}
.x35_c01090{left:109.440000pt;}
.x5d_c01090{left:113.040000pt;}
.x52_c01090{left:120.240000pt;}
.x3_c01090{left:124.080000pt;}
.x68_c01090{left:126.240000pt;}
.xb3_c01090{left:129.000000pt;}
.xa6_c01090{left:130.080000pt;}
.x53_c01090{left:133.680000pt;}
.x96_c01090{left:139.440000pt;}
.x20_c01090{left:140.880000pt;}
.x77_c01090{left:141.840000pt;}
.xd_c01090{left:143.520000pt;}
.x71_c01090{left:144.720000pt;}
.x16_c01090{left:146.880000pt;}
.x36_c01090{left:149.520000pt;}
.x41_c01090{left:150.480000pt;}
.x69_c01090{left:152.640000pt;}
.x5e_c01090{left:157.680000pt;}
.x72_c01090{left:163.920000pt;}
.x4_c01090{left:165.600000pt;}
.x17_c01090{left:167.760000pt;}
.x42_c01090{left:169.920000pt;}
.x54_c01090{left:170.880000pt;}
.x7d_c01090{left:174.480000pt;}
.xe_c01090{left:176.160000pt;}
.x78_c01090{left:177.600000pt;}
.x37_c01090{left:180.720000pt;}
.x86_c01090{left:183.120000pt;}
.x5f_c01090{left:184.560000pt;}
.x21_c01090{left:189.600000pt;}
.x79_c01090{left:191.520000pt;}
.x49_c01090{left:194.160000pt;}
.x87_c01090{left:195.840000pt;}
.x38_c01090{left:200.160000pt;}
.x63_c01090{left:202.080000pt;}
.xb4_c01090{left:205.798667pt;}
.x4a_c01090{left:207.840000pt;}
.x43_c01090{left:209.040000pt;}
.x88_c01090{left:211.920000pt;}
.x29_c01090{left:213.120000pt;}
.x55_c01090{left:214.080000pt;}
.x92_c01090{left:215.280000pt;}
.x2a_c01090{left:217.680000pt;}
.x22_c01090{left:219.600000pt;}
.x6a_c01090{left:220.560000pt;}
.xa7_c01090{left:222.000000pt;}
.x5_c01090{left:224.160000pt;}
.x9d_c01090{left:227.280000pt;}
.xad_c01090{left:228.960000pt;}
.xf_c01090{left:229.920000pt;}
.xaf_c01090{left:231.120000pt;}
.x4b_c01090{left:234.240000pt;}
.x2b_c01090{left:235.200000pt;}
.x93_c01090{left:236.880000pt;}
.x64_c01090{left:238.320000pt;}
.x6b_c01090{left:239.280000pt;}
.x18_c01090{left:245.280000pt;}
.xb5_c01090{left:249.700000pt;}
.x39_c01090{left:251.280000pt;}
.x56_c01090{left:252.480000pt;}
.x44_c01090{left:254.640000pt;}
.x73_c01090{left:258.000000pt;}
.x4c_c01090{left:263.280000pt;}
.x1_c01090{left:264.720000pt;}
.xa8_c01090{left:266.640000pt;}
.x2c_c01090{left:269.040000pt;}
.xa2_c01090{left:270.000000pt;}
.x65_c01090{left:272.160000pt;}
.x3a_c01090{left:273.840000pt;}
.x6_c01090{left:278.640000pt;}
.x10_c01090{left:279.600000pt;}
.x9e_c01090{left:282.000000pt;}
.x19_c01090{left:282.960000pt;}
.x23_c01090{left:284.160000pt;}
.x57_c01090{left:286.320000pt;}
.xa9_c01090{left:289.680000pt;}
.x4d_c01090{left:291.120000pt;}
.x7a_c01090{left:292.080000pt;}
.x2d_c01090{left:293.280000pt;}
.x6c_c01090{left:294.960000pt;}
.x45_c01090{left:299.280000pt;}
.x97_c01090{left:301.920000pt;}
.x60_c01090{left:305.760000pt;}
.x89_c01090{left:306.720000pt;}
.x3b_c01090{left:307.920000pt;}
.xae_c01090{left:309.360000pt;}
.x9f_c01090{left:310.800000pt;}
.x1a_c01090{left:311.760000pt;}
.x7e_c01090{left:313.680000pt;}
.x4e_c01090{left:315.360000pt;}
.x6d_c01090{left:317.520000pt;}
.x24_c01090{left:319.920000pt;}
.x8a_c01090{left:320.880000pt;}
.x7f_c01090{left:322.800000pt;}
.x58_c01090{left:324.000000pt;}
.xb6_c01090{left:326.505333pt;}
.x46_c01090{left:327.600000pt;}
.x11_c01090{left:330.240000pt;}
.x9b_c01090{left:336.000000pt;}
.x7_c01090{left:338.880000pt;}
.xa3_c01090{left:339.840000pt;}
.xaa_c01090{left:342.000000pt;}
.x1b_c01090{left:344.880000pt;}
.x25_c01090{left:352.080000pt;}
.x98_c01090{left:354.960000pt;}
.x3c_c01090{left:356.160000pt;}
.x8f_c01090{left:359.520000pt;}
.x4f_c01090{left:360.720000pt;}
.x1c_c01090{left:363.120000pt;}
.x61_c01090{left:365.040000pt;}
.x2e_c01090{left:366.960000pt;}
.x6e_c01090{left:367.920000pt;}
.x80_c01090{left:370.320000pt;}
.x59_c01090{left:371.520000pt;}
.x7b_c01090{left:373.200000pt;}
.x8b_c01090{left:374.640000pt;}
.x2f_c01090{left:376.320000pt;}
.x8_c01090{left:377.280000pt;}
.x12_c01090{left:378.480000pt;}
.x47_c01090{left:379.440000pt;}
.x81_c01090{left:383.520000pt;}
.x99_c01090{left:386.400000pt;}
.x6f_c01090{left:388.320000pt;}
.x82_c01090{left:389.280000pt;}
.x5a_c01090{left:391.440000pt;}
.x1d_c01090{left:392.640000pt;}
.x94_c01090{left:393.600000pt;}
.xa0_c01090{left:394.560000pt;}
.x62_c01090{left:396.240000pt;}
.xab_c01090{left:400.560000pt;}
.x90_c01090{left:404.160000pt;}
.x3d_c01090{left:406.320000pt;}
.x9a_c01090{left:407.520000pt;}
.x30_c01090{left:410.400000pt;}
.x83_c01090{left:413.520000pt;}
.x8c_c01090{left:417.840000pt;}
.xa4_c01090{left:422.400000pt;}
.x9_c01090{left:424.800000pt;}
.xb8_c01090{left:425.713333pt;}
.x74_c01090{left:428.880000pt;}
.x31_c01090{left:430.560000pt;}
.x70_c01090{left:436.800000pt;}
.x13_c01090{left:439.680000pt;}
.x26_c01090{left:441.360000pt;}
.xb0_c01090{left:442.320000pt;}
.x84_c01090{left:445.200000pt;}
.xa1_c01090{left:446.640000pt;}
.x5b_c01090{left:449.520000pt;}
.x66_c01090{left:450.720000pt;}
.x50_c01090{left:452.400000pt;}
.x32_c01090{left:453.600000pt;}
.xa_c01090{left:455.040000pt;}
.x1e_c01090{left:460.320000pt;}
.x14_c01090{left:463.200000pt;}
.x8d_c01090{left:464.640000pt;}
.x27_c01090{left:466.560000pt;}
.x67_c01090{left:472.080000pt;}
.x33_c01090{left:474.720000pt;}
.xb_c01090{left:477.840000pt;}
.xa5_c01090{left:479.520000pt;}
.x7c_c01090{left:481.680000pt;}
.x48_c01090{left:483.360000pt;}
.x3e_c01090{left:484.560000pt;}
.x8e_c01090{left:485.520000pt;}
.x51_c01090{left:486.480000pt;}
.x95_c01090{left:489.120000pt;}
.x75_c01090{left:494.160000pt;}
.x28_c01090{left:496.560000pt;}
.x91_c01090{left:497.760000pt;}
.x5c_c01090{left:498.960000pt;}
.xb1_c01090{left:502.800000pt;}
.x76_c01090{left:507.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_c01091 {
    display:none;
  }
  .loading-indicator_c01091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01091 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01091 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01091" -> "#page-container .classname_c01091")
 */
.pf_c01091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01091 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01091 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01091 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01091 {overflow:visible;}
  }
}
.c_c01091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01091 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01091:after { /* webkit #35443 */
  content: '';
}
.t_c01091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01091 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01091 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01091 { /* info for Javascript */
  display:none;
}
.l_c01091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.000000;font-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_c01091{transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011190,0.000000,0.000000,0.250000,0,0);}
.m2f_c01091{transform:matrix(0.013837,-0.000304,0.005499,0.249940,0,0);-ms-transform:matrix(0.013837,-0.000304,0.005499,0.249940,0,0);-webkit-transform:matrix(0.013837,-0.000304,0.005499,0.249940,0,0);}
.m16_c01091{transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022040,0.000000,0.000000,0.250000,0,0);}
.m8_c01091{transform:matrix(0.065445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065445,0.000000,0.000000,0.250000,0,0);}
.m19_c01091{transform:matrix(0.079490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079490,0.000000,0.000000,0.250000,0,0);}
.mad_c01091{transform:matrix(0.091062,-0.001548,0.004249,0.249964,0,0);-ms-transform:matrix(0.091062,-0.001548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.091062,-0.001548,0.004249,0.249964,0,0);}
.mac_c01091{transform:matrix(0.129676,-0.002204,0.004249,0.249964,0,0);-ms-transform:matrix(0.129676,-0.002204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.129676,-0.002204,0.004249,0.249964,0,0);}
.m5_c01091{transform:matrix(0.132256,-0.002513,0.004749,0.249955,0,0);-ms-transform:matrix(0.132256,-0.002513,0.004749,0.249955,0,0);-webkit-transform:matrix(0.132256,-0.002513,0.004749,0.249955,0,0);}
.m6_c01091{transform:matrix(0.132331,-0.002514,0.004749,0.249955,0,0);-ms-transform:matrix(0.132331,-0.002514,0.004749,0.249955,0,0);-webkit-transform:matrix(0.132331,-0.002514,0.004749,0.249955,0,0);}
.m128_c01091{transform:matrix(0.139342,-0.001533,0.002750,0.249985,0,0);-ms-transform:matrix(0.139342,-0.001533,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139342,-0.001533,0.002750,0.249985,0,0);}
.m12c_c01091{transform:matrix(0.139397,-0.001533,0.002750,0.249985,0,0);-ms-transform:matrix(0.139397,-0.001533,0.002750,0.249985,0,0);-webkit-transform:matrix(0.139397,-0.001533,0.002750,0.249985,0,0);}
.m79_c01091{transform:matrix(0.140595,-0.002390,0.004249,0.249964,0,0);-ms-transform:matrix(0.140595,-0.002390,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140595,-0.002390,0.004249,0.249964,0,0);}
.mcc_c01091{transform:matrix(0.147334,-0.002505,0.004249,0.249964,0,0);-ms-transform:matrix(0.147334,-0.002505,0.004249,0.249964,0,0);-webkit-transform:matrix(0.147334,-0.002505,0.004249,0.249964,0,0);}
.mdf_c01091{transform:matrix(0.149088,-0.002535,0.004249,0.249964,0,0);-ms-transform:matrix(0.149088,-0.002535,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149088,-0.002535,0.004249,0.249964,0,0);}
.mc4_c01091{transform:matrix(0.149278,-0.002538,0.004249,0.249964,0,0);-ms-transform:matrix(0.149278,-0.002538,0.004249,0.249964,0,0);-webkit-transform:matrix(0.149278,-0.002538,0.004249,0.249964,0,0);}
.m126_c01091{transform:matrix(0.149586,-0.001645,0.002750,0.249985,0,0);-ms-transform:matrix(0.149586,-0.001645,0.002750,0.249985,0,0);-webkit-transform:matrix(0.149586,-0.001645,0.002750,0.249985,0,0);}
.m8b_c01091{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);}
.mb9_c01091{transform:matrix(0.150368,-0.002556,0.004249,0.249964,0,0);-ms-transform:matrix(0.150368,-0.002556,0.004249,0.249964,0,0);-webkit-transform:matrix(0.150368,-0.002556,0.004249,0.249964,0,0);}
.me6_c01091{transform:matrix(0.151013,-0.002567,0.004249,0.249964,0,0);-ms-transform:matrix(0.151013,-0.002567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151013,-0.002567,0.004249,0.249964,0,0);}
.md8_c01091{transform:matrix(0.151963,-0.002583,0.004249,0.249964,0,0);-ms-transform:matrix(0.151963,-0.002583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151963,-0.002583,0.004249,0.249964,0,0);}
.m68_c01091{transform:matrix(0.152136,-0.003195,0.005249,0.249945,0,0);-ms-transform:matrix(0.152136,-0.003195,0.005249,0.249945,0,0);-webkit-transform:matrix(0.152136,-0.003195,0.005249,0.249945,0,0);}
.mf8_c01091{transform:matrix(0.152677,-0.002901,0.004749,0.249955,0,0);-ms-transform:matrix(0.152677,-0.002901,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152677,-0.002901,0.004749,0.249955,0,0);}
.m97_c01091{transform:matrix(0.153213,-0.002605,0.004249,0.249964,0,0);-ms-transform:matrix(0.153213,-0.002605,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153213,-0.002605,0.004249,0.249964,0,0);}
.md4_c01091{transform:matrix(0.155273,-0.002640,0.004249,0.249964,0,0);-ms-transform:matrix(0.155273,-0.002640,0.004249,0.249964,0,0);-webkit-transform:matrix(0.155273,-0.002640,0.004249,0.249964,0,0);}
.m10a_c01091{transform:matrix(0.155371,-0.001709,0.002750,0.249985,0,0);-ms-transform:matrix(0.155371,-0.001709,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155371,-0.001709,0.002750,0.249985,0,0);}
.m5e_c01091{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);}
.m11d_c01091{transform:matrix(0.156206,-0.001718,0.002750,0.249985,0,0);-ms-transform:matrix(0.156206,-0.001718,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156206,-0.001718,0.002750,0.249985,0,0);}
.m2d_c01091{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);}
.m61_c01091{transform:matrix(0.156630,-0.003289,0.005249,0.249945,0,0);-ms-transform:matrix(0.156630,-0.003289,0.005249,0.249945,0,0);-webkit-transform:matrix(0.156630,-0.003289,0.005249,0.249945,0,0);}
.m9d_c01091{transform:matrix(0.156832,-0.002666,0.004249,0.249964,0,0);-ms-transform:matrix(0.156832,-0.002666,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156832,-0.002666,0.004249,0.249964,0,0);}
.m111_c01091{transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-ms-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156906,-0.001726,0.002750,0.249985,0,0);}
.m71_c01091{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);}
.m96_c01091{transform:matrix(0.158097,-0.002688,0.004249,0.249964,0,0);-ms-transform:matrix(0.158097,-0.002688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158097,-0.002688,0.004249,0.249964,0,0);}
.mdc_c01091{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);}
.m83_c01091{transform:matrix(0.158282,-0.002691,0.004249,0.249964,0,0);-ms-transform:matrix(0.158282,-0.002691,0.004249,0.249964,0,0);-webkit-transform:matrix(0.158282,-0.002691,0.004249,0.249964,0,0);}
.m40_c01091{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);}
.m3b_c01091{transform:matrix(0.159336,-0.003505,0.005499,0.249940,0,0);-ms-transform:matrix(0.159336,-0.003505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.159336,-0.003505,0.005499,0.249940,0,0);}
.m84_c01091{transform:matrix(0.159692,-0.002715,0.004249,0.249964,0,0);-ms-transform:matrix(0.159692,-0.002715,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159692,-0.002715,0.004249,0.249964,0,0);}
.m39_c01091{transform:matrix(0.160566,-0.003532,0.005499,0.249940,0,0);-ms-transform:matrix(0.160566,-0.003532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160566,-0.003532,0.005499,0.249940,0,0);}
.m57_c01091{transform:matrix(0.160746,-0.003536,0.005499,0.249940,0,0);-ms-transform:matrix(0.160746,-0.003536,0.005499,0.249940,0,0);-webkit-transform:matrix(0.160746,-0.003536,0.005499,0.249940,0,0);}
.m6e_c01091{transform:matrix(0.161059,-0.003382,0.005249,0.249945,0,0);-ms-transform:matrix(0.161059,-0.003382,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161059,-0.003382,0.005249,0.249945,0,0);}
.ma6_c01091{transform:matrix(0.161497,-0.002745,0.004249,0.249964,0,0);-ms-transform:matrix(0.161497,-0.002745,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161497,-0.002745,0.004249,0.249964,0,0);}
.m143_c01091{transform:matrix(0.162050,-0.001783,0.002750,0.249985,0,0);-ms-transform:matrix(0.162050,-0.001783,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162050,-0.001783,0.002750,0.249985,0,0);}
.mbd_c01091{transform:matrix(0.162062,-0.002755,0.004249,0.249964,0,0);-ms-transform:matrix(0.162062,-0.002755,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162062,-0.002755,0.004249,0.249964,0,0);}
.m47_c01091{transform:matrix(0.163460,-0.003596,0.005499,0.249940,0,0);-ms-transform:matrix(0.163460,-0.003596,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163460,-0.003596,0.005499,0.249940,0,0);}
.m99_c01091{transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);-ms-transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);-webkit-transform:matrix(0.163591,-0.002781,0.004249,0.249964,0,0);}
.m34_c01091{transform:matrix(0.163910,-0.003606,0.005499,0.249940,0,0);-ms-transform:matrix(0.163910,-0.003606,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163910,-0.003606,0.005499,0.249940,0,0);}
.m13c_c01091{transform:matrix(0.164000,-0.001804,0.002750,0.249985,0,0);-ms-transform:matrix(0.164000,-0.001804,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164000,-0.001804,0.002750,0.249985,0,0);}
.mf1_c01091{transform:matrix(0.164391,-0.002795,0.004249,0.249964,0,0);-ms-transform:matrix(0.164391,-0.002795,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164391,-0.002795,0.004249,0.249964,0,0);}
.m145_c01091{transform:matrix(0.164460,-0.001809,0.002750,0.249985,0,0);-ms-transform:matrix(0.164460,-0.001809,0.002750,0.249985,0,0);-webkit-transform:matrix(0.164460,-0.001809,0.002750,0.249985,0,0);}
.maf_c01091{transform:matrix(0.164921,-0.002804,0.004249,0.249964,0,0);-ms-transform:matrix(0.164921,-0.002804,0.004249,0.249964,0,0);-webkit-transform:matrix(0.164921,-0.002804,0.004249,0.249964,0,0);}
.m0_c01091{transform:matrix(0.165020,-0.003135,0.004749,0.249955,0,0);-ms-transform:matrix(0.165020,-0.003135,0.004749,0.249955,0,0);-webkit-transform:matrix(0.165020,-0.003135,0.004749,0.249955,0,0);}
.m94_c01091{transform:matrix(0.165436,-0.002812,0.004249,0.249964,0,0);-ms-transform:matrix(0.165436,-0.002812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165436,-0.002812,0.004249,0.249964,0,0);}
.m87_c01091{transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);-ms-transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165771,-0.002818,0.004249,0.249964,0,0);}
.mda_c01091{transform:matrix(0.165786,-0.002818,0.004249,0.249964,0,0);-ms-transform:matrix(0.165786,-0.002818,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165786,-0.002818,0.004249,0.249964,0,0);}
.m121_c01091{transform:matrix(0.166340,-0.001830,0.002750,0.249985,0,0);-ms-transform:matrix(0.166340,-0.001830,0.002750,0.249985,0,0);-webkit-transform:matrix(0.166340,-0.001830,0.002750,0.249985,0,0);}
.m88_c01091{transform:matrix(0.166656,-0.002833,0.004249,0.249964,0,0);-ms-transform:matrix(0.166656,-0.002833,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166656,-0.002833,0.004249,0.249964,0,0);}
.m7c_c01091{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);}
.m10c_c01091{transform:matrix(0.167185,-0.001839,0.002750,0.249985,0,0);-ms-transform:matrix(0.167185,-0.001839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.167185,-0.001839,0.002750,0.249985,0,0);}
.m107_c01091{transform:matrix(0.168024,-0.005382,0.008004,0.249872,0,0);-ms-transform:matrix(0.168024,-0.005382,0.008004,0.249872,0,0);-webkit-transform:matrix(0.168024,-0.005382,0.008004,0.249872,0,0);}
.ma0_c01091{transform:matrix(0.168471,-0.002864,0.004249,0.249964,0,0);-ms-transform:matrix(0.168471,-0.002864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168471,-0.002864,0.004249,0.249964,0,0);}
.m137_c01091{transform:matrix(0.168730,-0.001856,0.002750,0.249985,0,0);-ms-transform:matrix(0.168730,-0.001856,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168730,-0.001856,0.002750,0.249985,0,0);}
.m12_c01091{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);}
.m132_c01091{transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);-ms-transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169290,-0.001862,0.002750,0.249985,0,0);}
.m31_c01091{transform:matrix(0.169449,-0.003728,0.005499,0.249940,0,0);-ms-transform:matrix(0.169449,-0.003728,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169449,-0.003728,0.005499,0.249940,0,0);}
.m125_c01091{transform:matrix(0.169495,-0.001864,0.002750,0.249985,0,0);-ms-transform:matrix(0.169495,-0.001864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169495,-0.001864,0.002750,0.249985,0,0);}
.m5a_c01091{transform:matrix(0.169554,-0.003730,0.005499,0.249940,0,0);-ms-transform:matrix(0.169554,-0.003730,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169554,-0.003730,0.005499,0.249940,0,0);}
.m148_c01091{transform:matrix(0.169555,-0.001865,0.002750,0.249985,0,0);-ms-transform:matrix(0.169555,-0.001865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169555,-0.001865,0.002750,0.249985,0,0);}
.m36_c01091{transform:matrix(0.169734,-0.003734,0.005499,0.249940,0,0);-ms-transform:matrix(0.169734,-0.003734,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169734,-0.003734,0.005499,0.249940,0,0);}
.m134_c01091{transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);-ms-transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169795,-0.001868,0.002750,0.249985,0,0);}
.mb3_c01091{transform:matrix(0.169820,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169820,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169820,-0.002887,0.004249,0.249964,0,0);}
.m7a_c01091{transform:matrix(0.170350,-0.002896,0.004249,0.249964,0,0);-ms-transform:matrix(0.170350,-0.002896,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170350,-0.002896,0.004249,0.249964,0,0);}
.med_c01091{transform:matrix(0.170635,-0.002901,0.004249,0.249964,0,0);-ms-transform:matrix(0.170635,-0.002901,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170635,-0.002901,0.004249,0.249964,0,0);}
.me2_c01091{transform:matrix(0.170710,-0.002902,0.004249,0.249964,0,0);-ms-transform:matrix(0.170710,-0.002902,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170710,-0.002902,0.004249,0.249964,0,0);}
.meb_c01091{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);}
.m120_c01091{transform:matrix(0.170950,-0.001880,0.002750,0.249985,0,0);-ms-transform:matrix(0.170950,-0.001880,0.002750,0.249985,0,0);-webkit-transform:matrix(0.170950,-0.001880,0.002750,0.249985,0,0);}
.me7_c01091{transform:matrix(0.170950,-0.002906,0.004249,0.249964,0,0);-ms-transform:matrix(0.170950,-0.002906,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170950,-0.002906,0.004249,0.249964,0,0);}
.m1_c01091{transform:matrix(0.171124,-0.003251,0.004749,0.249955,0,0);-ms-transform:matrix(0.171124,-0.003251,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171124,-0.003251,0.004749,0.249955,0,0);}
.m5c_c01091{transform:matrix(0.171204,-0.003766,0.005499,0.249940,0,0);-ms-transform:matrix(0.171204,-0.003766,0.005499,0.249940,0,0);-webkit-transform:matrix(0.171204,-0.003766,0.005499,0.249940,0,0);}
.me3_c01091{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);}
.m123_c01091{transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);-ms-transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171870,-0.001891,0.002750,0.249985,0,0);}
.m42_c01091{transform:matrix(0.172013,-0.003784,0.005499,0.249940,0,0);-ms-transform:matrix(0.172013,-0.003784,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172013,-0.003784,0.005499,0.249940,0,0);}
.m32_c01091{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);}
.mc_c01091{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);}
.m116_c01091{transform:matrix(0.172620,-0.001899,0.002750,0.249985,0,0);-ms-transform:matrix(0.172620,-0.001899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.172620,-0.001899,0.002750,0.249985,0,0);}
.m1f_c01091{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);}
.m11f_c01091{transform:matrix(0.173155,-0.001905,0.002750,0.249985,0,0);-ms-transform:matrix(0.173155,-0.001905,0.002750,0.249985,0,0);-webkit-transform:matrix(0.173155,-0.001905,0.002750,0.249985,0,0);}
.m81_c01091{transform:matrix(0.173235,-0.002945,0.004249,0.249964,0,0);-ms-transform:matrix(0.173235,-0.002945,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173235,-0.002945,0.004249,0.249964,0,0);}
.mec_c01091{transform:matrix(0.173270,-0.002946,0.004249,0.249964,0,0);-ms-transform:matrix(0.173270,-0.002946,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173270,-0.002946,0.004249,0.249964,0,0);}
.mf2_c01091{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);}
.m4f_c01091{transform:matrix(0.173448,-0.003816,0.005499,0.249940,0,0);-ms-transform:matrix(0.173448,-0.003816,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173448,-0.003816,0.005499,0.249940,0,0);}
.m85_c01091{transform:matrix(0.173780,-0.002954,0.004249,0.249964,0,0);-ms-transform:matrix(0.173780,-0.002954,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173780,-0.002954,0.004249,0.249964,0,0);}
.m38_c01091{transform:matrix(0.173833,-0.003824,0.005499,0.249940,0,0);-ms-transform:matrix(0.173833,-0.003824,0.005499,0.249940,0,0);-webkit-transform:matrix(0.173833,-0.003824,0.005499,0.249940,0,0);}
.m103_c01091{transform:matrix(0.174089,-0.003308,0.004749,0.249955,0,0);-ms-transform:matrix(0.174089,-0.003308,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174089,-0.003308,0.004749,0.249955,0,0);}
.mc6_c01091{transform:matrix(0.174095,-0.002960,0.004249,0.249964,0,0);-ms-transform:matrix(0.174095,-0.002960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174095,-0.002960,0.004249,0.249964,0,0);}
.m26_c01091{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);}
.md3_c01091{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);}
.mb8_c01091{transform:matrix(0.174495,-0.002966,0.004249,0.249964,0,0);-ms-transform:matrix(0.174495,-0.002966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174495,-0.002966,0.004249,0.249964,0,0);}
.mfb_c01091{transform:matrix(0.174673,-0.003319,0.004749,0.249955,0,0);-ms-transform:matrix(0.174673,-0.003319,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174673,-0.003319,0.004749,0.249955,0,0);}
.m3a_c01091{transform:matrix(0.174793,-0.003845,0.005499,0.249940,0,0);-ms-transform:matrix(0.174793,-0.003845,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174793,-0.003845,0.005499,0.249940,0,0);}
.m13e_c01091{transform:matrix(0.174884,-0.001924,0.002750,0.249985,0,0);-ms-transform:matrix(0.174884,-0.001924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.174884,-0.001924,0.002750,0.249985,0,0);}
.mcd_c01091{transform:matrix(0.175185,-0.002978,0.004249,0.249964,0,0);-ms-transform:matrix(0.175185,-0.002978,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175185,-0.002978,0.004249,0.249964,0,0);}
.m44_c01091{transform:matrix(0.175692,-0.003865,0.005499,0.249940,0,0);-ms-transform:matrix(0.175692,-0.003865,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175692,-0.003865,0.005499,0.249940,0,0);}
.mf5_c01091{transform:matrix(0.175985,-0.002992,0.004249,0.249964,0,0);-ms-transform:matrix(0.175985,-0.002992,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175985,-0.002992,0.004249,0.249964,0,0);}
.m117_c01091{transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);-ms-transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175994,-0.001936,0.002750,0.249985,0,0);}
.m12e_c01091{transform:matrix(0.176054,-0.001937,0.002750,0.249985,0,0);-ms-transform:matrix(0.176054,-0.001937,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176054,-0.001937,0.002750,0.249985,0,0);}
.m127_c01091{transform:matrix(0.176149,-0.001938,0.002750,0.249985,0,0);-ms-transform:matrix(0.176149,-0.001938,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176149,-0.001938,0.002750,0.249985,0,0);}
.m4a_c01091{transform:matrix(0.176297,-0.003879,0.005499,0.249940,0,0);-ms-transform:matrix(0.176297,-0.003879,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176297,-0.003879,0.005499,0.249940,0,0);}
.m119_c01091{transform:matrix(0.176419,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176419,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176419,-0.001941,0.002750,0.249985,0,0);}
.m8f_c01091{transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);-ms-transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.176470,-0.003000,0.004249,0.249964,0,0);}
.m113_c01091{transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-ms-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176474,-0.001941,0.002750,0.249985,0,0);}
.m21_c01091{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);}
.mc7_c01091{transform:matrix(0.177049,-0.003010,0.004249,0.249964,0,0);-ms-transform:matrix(0.177049,-0.003010,0.004249,0.249964,0,0);-webkit-transform:matrix(0.177049,-0.003010,0.004249,0.249964,0,0);}
.m11a_c01091{transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);-ms-transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177054,-0.001948,0.002750,0.249985,0,0);}
.m70_c01091{transform:matrix(0.177396,-0.003725,0.005249,0.249945,0,0);-ms-transform:matrix(0.177396,-0.003725,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177396,-0.003725,0.005249,0.249945,0,0);}
.m108_c01091{transform:matrix(0.178349,-0.005713,0.008004,0.249872,0,0);-ms-transform:matrix(0.178349,-0.005713,0.008004,0.249872,0,0);-webkit-transform:matrix(0.178349,-0.005713,0.008004,0.249872,0,0);}
.m46_c01091{transform:matrix(0.179047,-0.003939,0.005499,0.249940,0,0);-ms-transform:matrix(0.179047,-0.003939,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179047,-0.003939,0.005499,0.249940,0,0);}
.mf3_c01091{transform:matrix(0.179444,-0.003051,0.004249,0.249964,0,0);-ms-transform:matrix(0.179444,-0.003051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.179444,-0.003051,0.004249,0.249964,0,0);}
.m73_c01091{transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);-ms-transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);}
.m131_c01091{transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179639,-0.001976,0.002750,0.249985,0,0);}
.m139_c01091{transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);-ms-transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179674,-0.001976,0.002750,0.249985,0,0);}
.m142_c01091{transform:matrix(0.179714,-0.001977,0.002750,0.249985,0,0);-ms-transform:matrix(0.179714,-0.001977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.179714,-0.001977,0.002750,0.249985,0,0);}
.md0_c01091{transform:matrix(0.180009,-0.003060,0.004249,0.249964,0,0);-ms-transform:matrix(0.180009,-0.003060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180009,-0.003060,0.004249,0.249964,0,0);}
.m4_c01091{transform:matrix(0.180033,-0.003421,0.004749,0.249955,0,0);-ms-transform:matrix(0.180033,-0.003421,0.004749,0.249955,0,0);-webkit-transform:matrix(0.180033,-0.003421,0.004749,0.249955,0,0);}
.mb7_c01091{transform:matrix(0.180124,-0.003062,0.004249,0.249964,0,0);-ms-transform:matrix(0.180124,-0.003062,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180124,-0.003062,0.004249,0.249964,0,0);}
.me9_c01091{transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);-ms-transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180449,-0.003068,0.004249,0.249964,0,0);}
.mc3_c01091{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);}
.m5d_c01091{transform:matrix(0.180641,-0.003974,0.005499,0.249940,0,0);-ms-transform:matrix(0.180641,-0.003974,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180641,-0.003974,0.005499,0.249940,0,0);}
.m8d_c01091{transform:matrix(0.180914,-0.003076,0.004249,0.249964,0,0);-ms-transform:matrix(0.180914,-0.003076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180914,-0.003076,0.004249,0.249964,0,0);}
.m7f_c01091{transform:matrix(0.181744,-0.003090,0.004249,0.249964,0,0);-ms-transform:matrix(0.181744,-0.003090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181744,-0.003090,0.004249,0.249964,0,0);}
.ma3_c01091{transform:matrix(0.181924,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181924,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181924,-0.003093,0.004249,0.249964,0,0);}
.m89_c01091{transform:matrix(0.181939,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181939,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181939,-0.003093,0.004249,0.249964,0,0);}
.m9b_c01091{transform:matrix(0.181964,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181964,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181964,-0.003093,0.004249,0.249964,0,0);}
.m62_c01091{transform:matrix(0.181995,-0.003822,0.005249,0.249945,0,0);-ms-transform:matrix(0.181995,-0.003822,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181995,-0.003822,0.005249,0.249945,0,0);}
.m28_c01091{transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182020,0.000000,0.000000,0.250000,0,0);}
.me1_c01091{transform:matrix(0.182114,-0.003096,0.004249,0.249964,0,0);-ms-transform:matrix(0.182114,-0.003096,0.004249,0.249964,0,0);-webkit-transform:matrix(0.182114,-0.003096,0.004249,0.249964,0,0);}
.m141_c01091{transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);-ms-transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182714,-0.002010,0.002750,0.249985,0,0);}
.m43_c01091{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);}
.m30_c01091{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);}
.m118_c01091{transform:matrix(0.182914,-0.002012,0.002750,0.249985,0,0);-ms-transform:matrix(0.182914,-0.002012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182914,-0.002012,0.002750,0.249985,0,0);}
.m2a_c01091{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);}
.mc8_c01091{transform:matrix(0.183144,-0.003113,0.004249,0.249964,0,0);-ms-transform:matrix(0.183144,-0.003113,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183144,-0.003113,0.004249,0.249964,0,0);}
.m10_c01091{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);}
.ma7_c01091{transform:matrix(0.183394,-0.003118,0.004249,0.249964,0,0);-ms-transform:matrix(0.183394,-0.003118,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183394,-0.003118,0.004249,0.249964,0,0);}
.m37_c01091{transform:matrix(0.184055,-0.004049,0.005499,0.249940,0,0);-ms-transform:matrix(0.184055,-0.004049,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184055,-0.004049,0.005499,0.249940,0,0);}
.mee_c01091{transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184138,-0.003130,0.004249,0.249964,0,0);}
.m7d_c01091{transform:matrix(0.184143,-0.003130,0.004249,0.249964,0,0);-ms-transform:matrix(0.184143,-0.003130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184143,-0.003130,0.004249,0.249964,0,0);}
.mb0_c01091{transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);-ms-transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184328,-0.003134,0.004249,0.249964,0,0);}
.m41_c01091{transform:matrix(0.184680,-0.004063,0.005499,0.249940,0,0);-ms-transform:matrix(0.184680,-0.004063,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184680,-0.004063,0.005499,0.249940,0,0);}
.m13_c01091{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);}
.m138_c01091{transform:matrix(0.184764,-0.002032,0.002750,0.249985,0,0);-ms-transform:matrix(0.184764,-0.002032,0.002750,0.249985,0,0);-webkit-transform:matrix(0.184764,-0.002032,0.002750,0.249985,0,0);}
.me_c01091{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);}
.mcf_c01091{transform:matrix(0.184883,-0.003143,0.004249,0.249964,0,0);-ms-transform:matrix(0.184883,-0.003143,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184883,-0.003143,0.004249,0.249964,0,0);}
.m11c_c01091{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);}
.m9e_c01091{transform:matrix(0.185198,-0.003148,0.004249,0.249964,0,0);-ms-transform:matrix(0.185198,-0.003148,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185198,-0.003148,0.004249,0.249964,0,0);}
.mb1_c01091{transform:matrix(0.185223,-0.003149,0.004249,0.249964,0,0);-ms-transform:matrix(0.185223,-0.003149,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185223,-0.003149,0.004249,0.249964,0,0);}
.m7e_c01091{transform:matrix(0.185423,-0.003152,0.004249,0.249964,0,0);-ms-transform:matrix(0.185423,-0.003152,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185423,-0.003152,0.004249,0.249964,0,0);}
.m133_c01091{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);}
.m74_c01091{transform:matrix(0.185479,-0.003895,0.005249,0.249945,0,0);-ms-transform:matrix(0.185479,-0.003895,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185479,-0.003895,0.005249,0.249945,0,0);}
.m56_c01091{transform:matrix(0.185485,-0.004081,0.005499,0.249940,0,0);-ms-transform:matrix(0.185485,-0.004081,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185485,-0.004081,0.005499,0.249940,0,0);}
.m10f_c01091{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);}
.m76_c01091{transform:matrix(0.185664,-0.003899,0.005249,0.249945,0,0);-ms-transform:matrix(0.185664,-0.003899,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185664,-0.003899,0.005249,0.249945,0,0);}
.m80_c01091{transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);-ms-transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185673,-0.003156,0.004249,0.249964,0,0);}
.m129_c01091{transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);-ms-transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186304,-0.002049,0.002750,0.249985,0,0);}
.mc1_c01091{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);}
.md7_c01091{transform:matrix(0.186893,-0.003177,0.004249,0.249964,0,0);-ms-transform:matrix(0.186893,-0.003177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186893,-0.003177,0.004249,0.249964,0,0);}
.mc2_c01091{transform:matrix(0.186958,-0.003178,0.004249,0.249964,0,0);-ms-transform:matrix(0.186958,-0.003178,0.004249,0.249964,0,0);-webkit-transform:matrix(0.186958,-0.003178,0.004249,0.249964,0,0);}
.m98_c01091{transform:matrix(0.187028,-0.003179,0.004249,0.249964,0,0);-ms-transform:matrix(0.187028,-0.003179,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187028,-0.003179,0.004249,0.249964,0,0);}
.mf9_c01091{transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);-ms-transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187096,-0.003555,0.004749,0.249955,0,0);}
.m13d_c01091{transform:matrix(0.187139,-0.002059,0.002750,0.249985,0,0);-ms-transform:matrix(0.187139,-0.002059,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187139,-0.002059,0.002750,0.249985,0,0);}
.m65_c01091{transform:matrix(0.187364,-0.003935,0.005249,0.249945,0,0);-ms-transform:matrix(0.187364,-0.003935,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187364,-0.003935,0.005249,0.249945,0,0);}
.m122_c01091{transform:matrix(0.187424,-0.002062,0.002750,0.249985,0,0);-ms-transform:matrix(0.187424,-0.002062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.187424,-0.002062,0.002750,0.249985,0,0);}
.ma4_c01091{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);}
.m59_c01091{transform:matrix(0.187545,-0.004126,0.005499,0.249940,0,0);-ms-transform:matrix(0.187545,-0.004126,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187545,-0.004126,0.005499,0.249940,0,0);}
.m112_c01091{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);}
.m12f_c01091{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);}
.m75_c01091{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);}
.m95_c01091{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);}
.m8c_c01091{transform:matrix(0.188953,-0.003212,0.004249,0.249964,0,0);-ms-transform:matrix(0.188953,-0.003212,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188953,-0.003212,0.004249,0.249964,0,0);}
.m9a_c01091{transform:matrix(0.189333,-0.003219,0.004249,0.249964,0,0);-ms-transform:matrix(0.189333,-0.003219,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189333,-0.003219,0.004249,0.249964,0,0);}
.md2_c01091{transform:matrix(0.189623,-0.003224,0.004249,0.249964,0,0);-ms-transform:matrix(0.189623,-0.003224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189623,-0.003224,0.004249,0.249964,0,0);}
.m1e_c01091{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);}
.m115_c01091{transform:matrix(0.190183,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190183,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190183,-0.002092,0.002750,0.249985,0,0);}
.m130_c01091{transform:matrix(0.190198,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190198,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190198,-0.002092,0.002750,0.249985,0,0);}
.mff_c01091{transform:matrix(0.190381,-0.003617,0.004749,0.249955,0,0);-ms-transform:matrix(0.190381,-0.003617,0.004749,0.249955,0,0);-webkit-transform:matrix(0.190381,-0.003617,0.004749,0.249955,0,0);}
.mfe_c01091{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);}
.m12d_c01091{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);}
.mf6_c01091{transform:matrix(0.190767,-0.003243,0.004249,0.249964,0,0);-ms-transform:matrix(0.190767,-0.003243,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190767,-0.003243,0.004249,0.249964,0,0);}
.m14b_c01091{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);}
.m11e_c01091{transform:matrix(0.191348,-0.002105,0.002750,0.249985,0,0);-ms-transform:matrix(0.191348,-0.002105,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191348,-0.002105,0.002750,0.249985,0,0);}
.m3e_c01091{transform:matrix(0.191699,-0.004217,0.005499,0.249940,0,0);-ms-transform:matrix(0.191699,-0.004217,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191699,-0.004217,0.005499,0.249940,0,0);}
.m90_c01091{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);}
.m2b_c01091{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);}
.mb4_c01091{transform:matrix(0.192357,-0.003270,0.004249,0.249964,0,0);-ms-transform:matrix(0.192357,-0.003270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192357,-0.003270,0.004249,0.249964,0,0);}
.m100_c01091{transform:matrix(0.192490,-0.003657,0.004749,0.249955,0,0);-ms-transform:matrix(0.192490,-0.003657,0.004749,0.249955,0,0);-webkit-transform:matrix(0.192490,-0.003657,0.004749,0.249955,0,0);}
.me5_c01091{transform:matrix(0.192957,-0.003280,0.004249,0.249964,0,0);-ms-transform:matrix(0.192957,-0.003280,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192957,-0.003280,0.004249,0.249964,0,0);}
.m1b_c01091{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);}
.m144_c01091{transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);-ms-transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193078,-0.002124,0.002750,0.249985,0,0);}
.mdb_c01091{transform:matrix(0.193112,-0.003283,0.004249,0.249964,0,0);-ms-transform:matrix(0.193112,-0.003283,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193112,-0.003283,0.004249,0.249964,0,0);}
.m2_c01091{transform:matrix(0.193420,-0.003675,0.004749,0.249955,0,0);-ms-transform:matrix(0.193420,-0.003675,0.004749,0.249955,0,0);-webkit-transform:matrix(0.193420,-0.003675,0.004749,0.249955,0,0);}
.ma1_c01091{transform:matrix(0.193762,-0.003294,0.004249,0.249964,0,0);-ms-transform:matrix(0.193762,-0.003294,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193762,-0.003294,0.004249,0.249964,0,0);}
.me4_c01091{transform:matrix(0.193842,-0.003295,0.004249,0.249964,0,0);-ms-transform:matrix(0.193842,-0.003295,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193842,-0.003295,0.004249,0.249964,0,0);}
.m2e_c01091{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);}
.mb6_c01091{transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-ms-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194482,-0.003306,0.004249,0.249964,0,0);}
.m13b_c01091{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);}
.mcb_c01091{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);}
.m3f_c01091{transform:matrix(0.195223,-0.004295,0.005499,0.249940,0,0);-ms-transform:matrix(0.195223,-0.004295,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195223,-0.004295,0.005499,0.249940,0,0);}
.m20_c01091{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);}
.m7_c01091{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);}
.m17_c01091{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);}
.m124_c01091{transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195863,-0.002154,0.002750,0.249985,0,0);}
.md6_c01091{transform:matrix(0.196292,-0.003337,0.004249,0.249964,0,0);-ms-transform:matrix(0.196292,-0.003337,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196292,-0.003337,0.004249,0.249964,0,0);}
.m135_c01091{transform:matrix(0.196333,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196333,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196333,-0.002160,0.002750,0.249985,0,0);}
.m91_c01091{transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196362,-0.003338,0.004249,0.249964,0,0);}
.m63_c01091{transform:matrix(0.196482,-0.004126,0.005249,0.249945,0,0);-ms-transform:matrix(0.196482,-0.004126,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196482,-0.004126,0.005249,0.249945,0,0);}
.md_c01091{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);}
.m136_c01091{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);}
.mb5_c01091{transform:matrix(0.196957,-0.003348,0.004249,0.249964,0,0);-ms-transform:matrix(0.196957,-0.003348,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196957,-0.003348,0.004249,0.249964,0,0);}
.mf4_c01091{transform:matrix(0.197102,-0.003351,0.004249,0.249964,0,0);-ms-transform:matrix(0.197102,-0.003351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197102,-0.003351,0.004249,0.249964,0,0);}
.m86_c01091{transform:matrix(0.197212,-0.003353,0.004249,0.249964,0,0);-ms-transform:matrix(0.197212,-0.003353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197212,-0.003353,0.004249,0.249964,0,0);}
.mde_c01091{transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);-ms-transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197251,-0.003353,0.004249,0.249964,0,0);}
.mfd_c01091{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);}
.mea_c01091{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);}
.mba_c01091{transform:matrix(0.197956,-0.003365,0.004249,0.249964,0,0);-ms-transform:matrix(0.197956,-0.003365,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197956,-0.003365,0.004249,0.249964,0,0);}
.mc9_c01091{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);}
.m29_c01091{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);}
.m5b_c01091{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);}
.m7b_c01091{transform:matrix(0.198601,-0.003376,0.004249,0.249964,0,0);-ms-transform:matrix(0.198601,-0.003376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198601,-0.003376,0.004249,0.249964,0,0);}
.m8e_c01091{transform:matrix(0.199251,-0.003387,0.004249,0.249964,0,0);-ms-transform:matrix(0.199251,-0.003387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199251,-0.003387,0.004249,0.249964,0,0);}
.ma2_c01091{transform:matrix(0.199266,-0.003388,0.004249,0.249964,0,0);-ms-transform:matrix(0.199266,-0.003388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199266,-0.003388,0.004249,0.249964,0,0);}
.m72_c01091{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);}
.md5_c01091{transform:matrix(0.199531,-0.003392,0.004249,0.249964,0,0);-ms-transform:matrix(0.199531,-0.003392,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199531,-0.003392,0.004249,0.249964,0,0);}
.m12a_c01091{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);}
.m9f_c01091{transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);-ms-transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200981,-0.003417,0.004249,0.249964,0,0);}
.m1c_c01091{transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201015,0.000000,0.000000,0.250000,0,0);}
.m6f_c01091{transform:matrix(0.201326,-0.004228,0.005249,0.249945,0,0);-ms-transform:matrix(0.201326,-0.004228,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201326,-0.004228,0.005249,0.249945,0,0);}
.m24_c01091{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);}
.m106_c01091{transform:matrix(0.201549,-0.003829,0.004749,0.249955,0,0);-ms-transform:matrix(0.201549,-0.003829,0.004749,0.249955,0,0);-webkit-transform:matrix(0.201549,-0.003829,0.004749,0.249955,0,0);}
.m45_c01091{transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);-ms-transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201566,-0.004434,0.005499,0.249940,0,0);}
.mfa_c01091{transform:matrix(0.202428,-0.003846,0.004749,0.249955,0,0);-ms-transform:matrix(0.202428,-0.003846,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202428,-0.003846,0.004749,0.249955,0,0);}
.m55_c01091{transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);-ms-transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202731,-0.004460,0.005499,0.249940,0,0);}
.m2c_c01091{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);}
.m12b_c01091{transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);-ms-transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203468,-0.002238,0.002750,0.249985,0,0);}
.m9c_c01091{transform:matrix(0.203471,-0.003459,0.004249,0.249964,0,0);-ms-transform:matrix(0.203471,-0.003459,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203471,-0.003459,0.004249,0.249964,0,0);}
.mc5_c01091{transform:matrix(0.203551,-0.003460,0.004249,0.249964,0,0);-ms-transform:matrix(0.203551,-0.003460,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203551,-0.003460,0.004249,0.249964,0,0);}
.m78_c01091{transform:matrix(0.204610,-0.003478,0.004249,0.249964,0,0);-ms-transform:matrix(0.204610,-0.003478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204610,-0.003478,0.004249,0.249964,0,0);}
.m11_c01091{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);}
.m51_c01091{transform:matrix(0.205125,-0.004513,0.005499,0.249940,0,0);-ms-transform:matrix(0.205125,-0.004513,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205125,-0.004513,0.005499,0.249940,0,0);}
.mdd_c01091{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);}
.mca_c01091{transform:matrix(0.205880,-0.003500,0.004249,0.249964,0,0);-ms-transform:matrix(0.205880,-0.003500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205880,-0.003500,0.004249,0.249964,0,0);}
.m140_c01091{transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);-ms-transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206458,-0.002271,0.002750,0.249985,0,0);}
.m102_c01091{transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);-ms-transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206973,-0.003932,0.004749,0.249955,0,0);}
.m50_c01091{transform:matrix(0.207700,-0.004569,0.005499,0.249940,0,0);-ms-transform:matrix(0.207700,-0.004569,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207700,-0.004569,0.005499,0.249940,0,0);}
.m82_c01091{transform:matrix(0.207995,-0.003536,0.004249,0.249964,0,0);-ms-transform:matrix(0.207995,-0.003536,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207995,-0.003536,0.004249,0.249964,0,0);}
.m11b_c01091{transform:matrix(0.208147,-0.002290,0.002750,0.249985,0,0);-ms-transform:matrix(0.208147,-0.002290,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208147,-0.002290,0.002750,0.249985,0,0);}
.ma_c01091{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);}
.m25_c01091{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);}
.mfc_c01091{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);}
.m33_c01091{transform:matrix(0.209199,-0.004602,0.005499,0.249940,0,0);-ms-transform:matrix(0.209199,-0.004602,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209199,-0.004602,0.005499,0.249940,0,0);}
.ma5_c01091{transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);-ms-transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);}
.m109_c01091{transform:matrix(0.209372,-0.002303,0.002750,0.249985,0,0);-ms-transform:matrix(0.209372,-0.002303,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209372,-0.002303,0.002750,0.249985,0,0);}
.m1d_c01091{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);}
.me0_c01091{transform:matrix(0.210100,-0.003572,0.004249,0.249964,0,0);-ms-transform:matrix(0.210100,-0.003572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210100,-0.003572,0.004249,0.249964,0,0);}
.m52_c01091{transform:matrix(0.210284,-0.004626,0.005499,0.249940,0,0);-ms-transform:matrix(0.210284,-0.004626,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210284,-0.004626,0.005499,0.249940,0,0);}
.m110_c01091{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);}
.mb2_c01091{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);}
.me8_c01091{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);}
.m60_c01091{transform:matrix(0.213378,-0.004481,0.005249,0.249945,0,0);-ms-transform:matrix(0.213378,-0.004481,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213378,-0.004481,0.005249,0.249945,0,0);}
.m35_c01091{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);}
.m93_c01091{transform:matrix(0.214664,-0.003649,0.004249,0.249964,0,0);-ms-transform:matrix(0.214664,-0.003649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214664,-0.003649,0.004249,0.249964,0,0);}
.m8a_c01091{transform:matrix(0.216879,-0.003687,0.004249,0.249964,0,0);-ms-transform:matrix(0.216879,-0.003687,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216879,-0.003687,0.004249,0.249964,0,0);}
.m10b_c01091{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);}
.m4e_c01091{transform:matrix(0.219277,-0.004824,0.005499,0.249940,0,0);-ms-transform:matrix(0.219277,-0.004824,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219277,-0.004824,0.005499,0.249940,0,0);}
.maa_c01091{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);}
.m53_c01091{transform:matrix(0.220672,-0.004855,0.005499,0.249940,0,0);-ms-transform:matrix(0.220672,-0.004855,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220672,-0.004855,0.005499,0.249940,0,0);}
.mef_c01091{transform:matrix(0.220978,-0.003757,0.004249,0.249964,0,0);-ms-transform:matrix(0.220978,-0.003757,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220978,-0.003757,0.004249,0.249964,0,0);}
.m67_c01091{transform:matrix(0.221421,-0.004650,0.005249,0.249945,0,0);-ms-transform:matrix(0.221421,-0.004650,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221421,-0.004650,0.005249,0.249945,0,0);}
.m48_c01091{transform:matrix(0.222056,-0.004885,0.005499,0.249940,0,0);-ms-transform:matrix(0.222056,-0.004885,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222056,-0.004885,0.005499,0.249940,0,0);}
.mce_c01091{transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);-ms-transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223003,-0.003791,0.004249,0.249964,0,0);}
.m10e_c01091{transform:matrix(0.223511,-0.002459,0.002750,0.249985,0,0);-ms-transform:matrix(0.223511,-0.002459,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223511,-0.002459,0.002750,0.249985,0,0);}
.m27_c01091{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);}
.md9_c01091{transform:matrix(0.226507,-0.003851,0.004249,0.249964,0,0);-ms-transform:matrix(0.226507,-0.003851,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226507,-0.003851,0.004249,0.249964,0,0);}
.m4c_c01091{transform:matrix(0.228025,-0.005017,0.005499,0.249940,0,0);-ms-transform:matrix(0.228025,-0.005017,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228025,-0.005017,0.005499,0.249940,0,0);}
.mb_c01091{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);}
.m10d_c01091{transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);-ms-transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229631,-0.002526,0.002750,0.249985,0,0);}
.m92_c01091{transform:matrix(0.229917,-0.003909,0.004249,0.249964,0,0);-ms-transform:matrix(0.229917,-0.003909,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229917,-0.003909,0.004249,0.249964,0,0);}
.m64_c01091{transform:matrix(0.231554,-0.004863,0.005249,0.249945,0,0);-ms-transform:matrix(0.231554,-0.004863,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231554,-0.004863,0.005249,0.249945,0,0);}
.m149_c01091{transform:matrix(0.234316,-0.002577,0.002750,0.249985,0,0);-ms-transform:matrix(0.234316,-0.002577,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234316,-0.002577,0.002750,0.249985,0,0);}
.m4b_c01091{transform:matrix(0.237657,-0.005228,0.005499,0.249940,0,0);-ms-transform:matrix(0.237657,-0.005228,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237657,-0.005228,0.005499,0.249940,0,0);}
.md1_c01091{transform:matrix(0.238081,-0.004047,0.004249,0.249964,0,0);-ms-transform:matrix(0.238081,-0.004047,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238081,-0.004047,0.004249,0.249964,0,0);}
.m3c_c01091{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);}
.m58_c01091{transform:matrix(0.240832,-0.005298,0.005499,0.249940,0,0);-ms-transform:matrix(0.240832,-0.005298,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240832,-0.005298,0.005499,0.249940,0,0);}
.mbc_c01091{transform:matrix(0.241030,-0.004098,0.004249,0.249964,0,0);-ms-transform:matrix(0.241030,-0.004098,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241030,-0.004098,0.004249,0.249964,0,0);}
.mbf_c01091{transform:matrix(0.245525,-0.004174,0.004249,0.249964,0,0);-ms-transform:matrix(0.245525,-0.004174,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245525,-0.004174,0.004249,0.249964,0,0);}
.m101_c01091{transform:matrix(0.246376,-0.004681,0.004749,0.249955,0,0);-ms-transform:matrix(0.246376,-0.004681,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246376,-0.004681,0.004749,0.249955,0,0);}
.mc0_c01091{transform:matrix(0.247059,-0.004200,0.004249,0.249964,0,0);-ms-transform:matrix(0.247059,-0.004200,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247059,-0.004200,0.004249,0.249964,0,0);}
.mab_c01091{transform:matrix(0.248409,-0.004223,0.004249,0.249964,0,0);-ms-transform:matrix(0.248409,-0.004223,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248409,-0.004223,0.004249,0.249964,0,0);}
.m114_c01091{transform:matrix(0.249685,-0.002747,0.002750,0.249985,0,0);-ms-transform:matrix(0.249685,-0.002747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249685,-0.002747,0.002750,0.249985,0,0);}
.m13a_c01091{transform:matrix(0.251155,-0.002763,0.002750,0.249985,0,0);-ms-transform:matrix(0.251155,-0.002763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251155,-0.002763,0.002750,0.249985,0,0);}
.m66_c01091{transform:matrix(0.251175,-0.005275,0.005249,0.249945,0,0);-ms-transform:matrix(0.251175,-0.005275,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251175,-0.005275,0.005249,0.249945,0,0);}
.m77_c01091{transform:matrix(0.251440,-0.005280,0.005249,0.249945,0,0);-ms-transform:matrix(0.251440,-0.005280,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251440,-0.005280,0.005249,0.249945,0,0);}
.mf_c01091{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);}
.m1a_c01091{transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256850,0.000000,0.000000,0.250000,0,0);}
.mbe_c01091{transform:matrix(0.261432,-0.004444,0.004249,0.249964,0,0);-ms-transform:matrix(0.261432,-0.004444,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261432,-0.004444,0.004249,0.249964,0,0);}
.m147_c01091{transform:matrix(0.265854,-0.002924,0.002750,0.249985,0,0);-ms-transform:matrix(0.265854,-0.002924,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265854,-0.002924,0.002750,0.249985,0,0);}
.mf7_c01091{transform:matrix(0.267772,-0.005088,0.004749,0.249955,0,0);-ms-transform:matrix(0.267772,-0.005088,0.004749,0.249955,0,0);-webkit-transform:matrix(0.267772,-0.005088,0.004749,0.249955,0,0);}
.m14a_c01091{transform:matrix(0.269296,-0.004309,0.003999,0.249968,0,0);-ms-transform:matrix(0.269296,-0.004309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269296,-0.004309,0.003999,0.249968,0,0);}
.m4d_c01091{transform:matrix(0.271204,-0.005966,0.005499,0.249940,0,0);-ms-transform:matrix(0.271204,-0.005966,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271204,-0.005966,0.005499,0.249940,0,0);}
.m18_c01091{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);}
.m14d_c01091{transform:matrix(0.281455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281455,0.000000,0.000000,0.250000,0,0);}
.mbb_c01091{transform:matrix(0.286409,-0.004869,0.004249,0.249964,0,0);-ms-transform:matrix(0.286409,-0.004869,0.004249,0.249964,0,0);-webkit-transform:matrix(0.286409,-0.004869,0.004249,0.249964,0,0);}
.ma8_c01091{transform:matrix(0.289433,-0.004920,0.004249,0.249964,0,0);-ms-transform:matrix(0.289433,-0.004920,0.004249,0.249964,0,0);-webkit-transform:matrix(0.289433,-0.004920,0.004249,0.249964,0,0);}
.m6b_c01091{transform:matrix(0.295635,-0.006208,0.005249,0.249945,0,0);-ms-transform:matrix(0.295635,-0.006208,0.005249,0.249945,0,0);-webkit-transform:matrix(0.295635,-0.006208,0.005249,0.249945,0,0);}
.m14_c01091{transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);}
.m105_c01091{transform:matrix(0.328821,-0.006248,0.004749,0.249955,0,0);-ms-transform:matrix(0.328821,-0.006248,0.004749,0.249955,0,0);-webkit-transform:matrix(0.328821,-0.006248,0.004749,0.249955,0,0);}
.mf0_c01091{transform:matrix(0.341281,-0.005802,0.004249,0.249964,0,0);-ms-transform:matrix(0.341281,-0.005802,0.004249,0.249964,0,0);-webkit-transform:matrix(0.341281,-0.005802,0.004249,0.249964,0,0);}
.m6c_c01091{transform:matrix(0.352692,-0.007407,0.005249,0.249945,0,0);-ms-transform:matrix(0.352692,-0.007407,0.005249,0.249945,0,0);-webkit-transform:matrix(0.352692,-0.007407,0.005249,0.249945,0,0);}
.m15_c01091{transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);}
.m69_c01091{transform:matrix(0.354792,-0.007451,0.005249,0.249945,0,0);-ms-transform:matrix(0.354792,-0.007451,0.005249,0.249945,0,0);-webkit-transform:matrix(0.354792,-0.007451,0.005249,0.249945,0,0);}
.m3d_c01091{transform:matrix(0.363642,-0.008000,0.005499,0.249940,0,0);-ms-transform:matrix(0.363642,-0.008000,0.005499,0.249940,0,0);-webkit-transform:matrix(0.363642,-0.008000,0.005499,0.249940,0,0);}
.m54_c01091{transform:matrix(0.367206,-0.008079,0.005499,0.249940,0,0);-ms-transform:matrix(0.367206,-0.008079,0.005499,0.249940,0,0);-webkit-transform:matrix(0.367206,-0.008079,0.005499,0.249940,0,0);}
.m6d_c01091{transform:matrix(0.372388,-0.007820,0.005249,0.249945,0,0);-ms-transform:matrix(0.372388,-0.007820,0.005249,0.249945,0,0);-webkit-transform:matrix(0.372388,-0.007820,0.005249,0.249945,0,0);}
.mae_c01091{transform:matrix(0.391098,-0.006649,0.004249,0.249964,0,0);-ms-transform:matrix(0.391098,-0.006649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.391098,-0.006649,0.004249,0.249964,0,0);}
.m6a_c01091{transform:matrix(0.426651,-0.008960,0.005249,0.249945,0,0);-ms-transform:matrix(0.426651,-0.008960,0.005249,0.249945,0,0);-webkit-transform:matrix(0.426651,-0.008960,0.005249,0.249945,0,0);}
.m9_c01091{transform:matrix(0.443565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443565,0.000000,0.000000,0.250000,0,0);}
.m146_c01091{transform:matrix(0.507914,-0.005587,0.002750,0.249985,0,0);-ms-transform:matrix(0.507914,-0.005587,0.002750,0.249985,0,0);-webkit-transform:matrix(0.507914,-0.005587,0.002750,0.249985,0,0);}
.m13f_c01091{transform:matrix(0.565936,-0.006225,0.002750,0.249985,0,0);-ms-transform:matrix(0.565936,-0.006225,0.002750,0.249985,0,0);-webkit-transform:matrix(0.565936,-0.006225,0.002750,0.249985,0,0);}
.ma9_c01091{transform:matrix(0.617391,-0.010496,0.004249,0.249964,0,0);-ms-transform:matrix(0.617391,-0.010496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.617391,-0.010496,0.004249,0.249964,0,0);}
.m22_c01091{transform:matrix(0.640930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640930,0.000000,0.000000,0.250000,0,0);}
.m5f_c01091{transform:matrix(0.668613,-0.014041,0.005249,0.249945,0,0);-ms-transform:matrix(0.668613,-0.014041,0.005249,0.249945,0,0);-webkit-transform:matrix(0.668613,-0.014041,0.005249,0.249945,0,0);}
.m3_c01091{transform:matrix(0.701653,-0.013331,0.004749,0.249955,0,0);-ms-transform:matrix(0.701653,-0.013331,0.004749,0.249955,0,0);-webkit-transform:matrix(0.701653,-0.013331,0.004749,0.249955,0,0);}
.m14c_c01091{transform:matrix(0.785300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785300,0.000000,0.000000,0.250000,0,0);}
.m104_c01091{transform:matrix(0.848617,-0.016124,0.004749,0.249955,0,0);-ms-transform:matrix(0.848617,-0.016124,0.004749,0.249955,0,0);-webkit-transform:matrix(0.848617,-0.016124,0.004749,0.249955,0,0);}
.m49_c01091{transform:matrix(0.906456,-0.019942,0.005499,0.249940,0,0);-ms-transform:matrix(0.906456,-0.019942,0.005499,0.249940,0,0);-webkit-transform:matrix(0.906456,-0.019942,0.005499,0.249940,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls0_c01091{letter-spacing:0.000000px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:0.000000px;}
.fc0_c01091{color:transparent;}
.fs1e_c01091{font-size:14.700000px;}
.fs14_c01091{font-size:18.903411px;}
.fs1d_c01091{font-size:22.050000px;}
.fsc_c01091{font-size:39.908797px;}
.fs8_c01091{font-size:61.964990px;}
.fs3_c01091{font-size:66.150000px;}
.fsb_c01091{font-size:67.214816px;}
.fs5_c01091{font-size:68.250000px;}
.fs11_c01091{font-size:68.259861px;}
.fs13_c01091{font-size:68.262318px;}
.fsa_c01091{font-size:68.265047px;}
.fs4_c01091{font-size:69.300000px;}
.fse_c01091{font-size:69.310013px;}
.fs15_c01091{font-size:69.312508px;}
.fs7_c01091{font-size:69.316769px;}
.fs1f_c01091{font-size:70.350000px;}
.fs17_c01091{font-size:70.354256px;}
.fs10_c01091{font-size:70.360165px;}
.fs6_c01091{font-size:70.367023px;}
.fs16_c01091{font-size:71.365184px;}
.fs18_c01091{font-size:71.404320px;}
.fsd_c01091{font-size:71.410317px;}
.fs9_c01091{font-size:71.417277px;}
.fsf_c01091{font-size:72.460468px;}
.fs1b_c01091{font-size:74.554510px;}
.fs12_c01091{font-size:74.560772px;}
.fs1a_c01091{font-size:75.604574px;}
.fs19_c01091{font-size:76.654637px;}
.fs2_c01091{font-size:85.050000px;}
.fs0_c01091{font-size:103.968761px;}
.fs1_c01091{font-size:159.628805px;}
.fs1c_c01091{font-size:216.327685px;}
.y0_c01091{bottom:0.000000px;}
.y153_c01091{bottom:44.280000px;}
.y152_c01091{bottom:55.080000px;}
.y151_c01091{bottom:74.250000px;}
.y150_c01091{bottom:77.490000px;}
.y14f_c01091{bottom:100.180500px;}
.y145_c01091{bottom:170.101500px;}
.y146_c01091{bottom:170.461398px;}
.y147_c01091{bottom:171.191523px;}
.y148_c01091{bottom:172.019543px;}
.y149_c01091{bottom:172.343553px;}
.y14a_c01091{bottom:173.003174px;}
.y14b_c01091{bottom:173.243991px;}
.y14c_c01091{bottom:173.939053px;}
.y14d_c01091{bottom:174.209175px;}
.y14e_c01091{bottom:174.841884px;}
.y140_c01091{bottom:192.777967px;}
.y141_c01091{bottom:193.193588px;}
.y142_c01091{bottom:193.902582px;}
.y143_c01091{bottom:194.594848px;}
.y144_c01091{bottom:198.136359px;}
.y132_c01091{bottom:215.729062px;}
.y133_c01091{bottom:216.061983px;}
.y134_c01091{bottom:216.312297px;}
.y135_c01091{bottom:216.628799px;}
.y136_c01091{bottom:217.066356px;}
.y137_c01091{bottom:217.234161px;}
.y138_c01091{bottom:217.609112px;}
.y139_c01091{bottom:217.850530px;}
.y13a_c01091{bottom:218.190234px;}
.y13b_c01091{bottom:218.726703px;}
.y13c_c01091{bottom:219.036918px;}
.y13d_c01091{bottom:219.306984px;}
.y13e_c01091{bottom:219.856506px;}
.y13f_c01091{bottom:220.192743px;}
.y125_c01091{bottom:237.870537px;}
.y126_c01091{bottom:238.307688px;}
.y127_c01091{bottom:238.569428px;}
.y128_c01091{bottom:239.243288px;}
.y129_c01091{bottom:239.463249px;}
.y12a_c01091{bottom:240.000753px;}
.y12b_c01091{bottom:240.259127px;}
.y12c_c01091{bottom:240.470046px;}
.y12d_c01091{bottom:241.280180px;}
.y12e_c01091{bottom:241.435329px;}
.y12f_c01091{bottom:241.874641px;}
.y130_c01091{bottom:242.098299px;}
.y131_c01091{bottom:242.946564px;}
.y11b_c01091{bottom:260.280953px;}
.y11c_c01091{bottom:261.045071px;}
.y11d_c01091{bottom:262.049705px;}
.y11e_c01091{bottom:262.513497px;}
.y11f_c01091{bottom:263.105963px;}
.y120_c01091{bottom:263.421779px;}
.y121_c01091{bottom:263.943350px;}
.y122_c01091{bottom:264.821835px;}
.y123_c01091{bottom:265.120559px;}
.y124_c01091{bottom:265.801143px;}
.y10e_c01091{bottom:283.771500px;}
.y10f_c01091{bottom:284.021129px;}
.y110_c01091{bottom:284.389326px;}
.y111_c01091{bottom:284.662979px;}
.y112_c01091{bottom:285.028586px;}
.y113_c01091{bottom:285.366093px;}
.y114_c01091{bottom:285.809778px;}
.y115_c01091{bottom:286.664594px;}
.y116_c01091{bottom:286.967616px;}
.y117_c01091{bottom:287.377476px;}
.y118_c01091{bottom:287.888745px;}
.y119_c01091{bottom:288.182726px;}
.y11a_c01091{bottom:288.452583px;}
.y10c_c01091{bottom:309.973500px;}
.y10d_c01091{bottom:311.020620px;}
.yef_c01091{bottom:333.419698px;}
.yf0_c01091{bottom:334.114120px;}
.yf1_c01091{bottom:334.608540px;}
.yf2_c01091{bottom:335.279704px;}
.yf3_c01091{bottom:335.570037px;}
.yf4_c01091{bottom:336.241435px;}
.yf5_c01091{bottom:336.439755px;}
.yf6_c01091{bottom:336.827430px;}
.yf7_c01091{bottom:337.420012px;}
.yf8_c01091{bottom:337.774357px;}
.yf9_c01091{bottom:338.633556px;}
.yfa_c01091{bottom:339.013423px;}
.ye5_c01091{bottom:355.834145px;}
.ye6_c01091{bottom:356.282843px;}
.ye7_c01091{bottom:357.847159px;}
.ye8_c01091{bottom:358.907197px;}
.ye9_c01091{bottom:360.491706px;}
.yea_c01091{bottom:360.826441px;}
.yeb_c01091{bottom:361.463885px;}
.yec_c01091{bottom:362.040421px;}
.yed_c01091{bottom:363.445798px;}
.yee_c01091{bottom:363.844372px;}
.yda_c01091{bottom:379.055418px;}
.ydb_c01091{bottom:379.557837px;}
.ydc_c01091{bottom:379.938953px;}
.ydd_c01091{bottom:380.726030px;}
.yde_c01091{bottom:381.364194px;}
.ydf_c01091{bottom:381.865002px;}
.ye0_c01091{bottom:382.825107px;}
.ye1_c01091{bottom:383.637983px;}
.ye2_c01091{bottom:383.943747px;}
.ye3_c01091{bottom:384.409521px;}
.ye4_c01091{bottom:384.855804px;}
.yce_c01091{bottom:401.738905px;}
.ycf_c01091{bottom:402.233038px;}
.yd0_c01091{bottom:402.783014px;}
.yd1_c01091{bottom:403.856659px;}
.yd2_c01091{bottom:404.287653px;}
.yd3_c01091{bottom:405.381249px;}
.yd4_c01091{bottom:405.736225px;}
.yd5_c01091{bottom:406.158192px;}
.yd6_c01091{bottom:407.080488px;}
.yd7_c01091{bottom:407.592297px;}
.yd8_c01091{bottom:408.332961px;}
.yd9_c01091{bottom:408.526940px;}
.yc2_c01091{bottom:424.152192px;}
.yc3_c01091{bottom:424.496148px;}
.yc4_c01091{bottom:424.848443px;}
.yc5_c01091{bottom:425.654975px;}
.yc6_c01091{bottom:426.217704px;}
.yc7_c01091{bottom:426.621684px;}
.yc8_c01091{bottom:427.262628px;}
.yc9_c01091{bottom:427.741325px;}
.yca_c01091{bottom:428.454716px;}
.ycb_c01091{bottom:428.823211px;}
.ycc_c01091{bottom:430.297217px;}
.ycd_c01091{bottom:431.126988px;}
.yb7_c01091{bottom:448.452816px;}
.yb8_c01091{bottom:448.858009px;}
.yb9_c01091{bottom:449.105309px;}
.yba_c01091{bottom:449.785683px;}
.ybb_c01091{bottom:450.141930px;}
.ybc_c01091{bottom:450.452933px;}
.ybd_c01091{bottom:451.326581px;}
.ybe_c01091{bottom:452.392792px;}
.ybf_c01091{bottom:452.787186px;}
.yc0_c01091{bottom:453.146676px;}
.yc1_c01091{bottom:454.106698px;}
.yaa_c01091{bottom:469.518066px;}
.yab_c01091{bottom:470.282154px;}
.yac_c01091{bottom:470.706183px;}
.yad_c01091{bottom:471.332664px;}
.yae_c01091{bottom:472.334514px;}
.yaf_c01091{bottom:472.666638px;}
.yb0_c01091{bottom:472.755692px;}
.yb1_c01091{bottom:473.406743px;}
.yb2_c01091{bottom:473.822612px;}
.yb3_c01091{bottom:474.279941px;}
.yb4_c01091{bottom:475.172375px;}
.yb5_c01091{bottom:475.421340px;}
.yb6_c01091{bottom:475.935494px;}
.ya2_c01091{bottom:499.221098px;}
.ya3_c01091{bottom:499.995683px;}
.ya4_c01091{bottom:500.539686px;}
.ya5_c01091{bottom:501.326894px;}
.ya6_c01091{bottom:502.319264px;}
.ya7_c01091{bottom:503.228288px;}
.ya8_c01091{bottom:503.578625px;}
.ya9_c01091{bottom:506.359905px;}
.y99_c01091{bottom:521.905683px;}
.y9a_c01091{bottom:522.294393px;}
.y9b_c01091{bottom:523.767765px;}
.y9c_c01091{bottom:525.352605px;}
.y9d_c01091{bottom:526.332638px;}
.y9e_c01091{bottom:526.815450px;}
.y9f_c01091{bottom:528.059872px;}
.ya0_c01091{bottom:529.352685px;}
.ya1_c01091{bottom:529.890696px;}
.y8f_c01091{bottom:544.319325px;}
.y90_c01091{bottom:545.480787px;}
.y91_c01091{bottom:546.211289px;}
.y92_c01091{bottom:547.571356px;}
.y93_c01091{bottom:549.089070px;}
.y94_c01091{bottom:549.785976px;}
.y95_c01091{bottom:550.234726px;}
.y96_c01091{bottom:551.401462px;}
.y97_c01091{bottom:551.854727px;}
.y98_c01091{bottom:552.626750px;}
.y83_c01091{bottom:567.541086px;}
.y84_c01091{bottom:568.138092px;}
.y85_c01091{bottom:568.757640px;}
.y86_c01091{bottom:569.244410px;}
.y87_c01091{bottom:569.789370px;}
.y88_c01091{bottom:570.185767px;}
.y89_c01091{bottom:570.897192px;}
.y8a_c01091{bottom:571.281987px;}
.y8b_c01091{bottom:572.710370px;}
.y8c_c01091{bottom:573.045848px;}
.y8d_c01091{bottom:574.358409px;}
.y8e_c01091{bottom:574.987214px;}
.y10b_c01091{bottom:579.143462px;}
.y78_c01091{bottom:590.764500px;}
.y79_c01091{bottom:591.310787px;}
.y7a_c01091{bottom:591.805665px;}
.y7b_c01091{bottom:592.585684px;}
.y7c_c01091{bottom:593.096577px;}
.y7d_c01091{bottom:593.595714px;}
.y7e_c01091{bottom:594.184866px;}
.y7f_c01091{bottom:594.934031px;}
.y80_c01091{bottom:595.966092px;}
.y81_c01091{bottom:596.415836px;}
.y82_c01091{bottom:597.090617px;}
.y109_c01091{bottom:603.042447px;}
.y10a_c01091{bottom:603.042930px;}
.yfb_c01091{bottom:616.683000px;}
.yfc_c01091{bottom:617.361214px;}
.yfd_c01091{bottom:617.775690px;}
.yfe_c01091{bottom:618.673754px;}
.yff_c01091{bottom:619.402270px;}
.y100_c01091{bottom:619.824612px;}
.y101_c01091{bottom:621.321232px;}
.y102_c01091{bottom:621.953961px;}
.y103_c01091{bottom:622.368152px;}
.y104_c01091{bottom:623.108496px;}
.y105_c01091{bottom:623.544261px;}
.y106_c01091{bottom:624.503685px;}
.y107_c01091{bottom:624.873273px;}
.y108_c01091{bottom:625.278657px;}
.y77_c01091{bottom:625.716301px;}
.y69_c01091{bottom:639.091200px;}
.y6a_c01091{bottom:639.387420px;}
.y6b_c01091{bottom:640.139026px;}
.y6c_c01091{bottom:641.610412px;}
.y6d_c01091{bottom:641.874679px;}
.y6e_c01091{bottom:642.358271px;}
.y6f_c01091{bottom:642.793686px;}
.y70_c01091{bottom:643.906426px;}
.y71_c01091{bottom:644.519278px;}
.y72_c01091{bottom:645.057357px;}
.y73_c01091{bottom:645.750413px;}
.y74_c01091{bottom:646.495782px;}
.y75_c01091{bottom:647.522082px;}
.y76_c01091{bottom:649.113752px;}
.y5f_c01091{bottom:661.659000px;}
.y60_c01091{bottom:662.999640px;}
.y61_c01091{bottom:664.270035px;}
.y62_c01091{bottom:664.932102px;}
.y63_c01091{bottom:666.063866px;}
.y64_c01091{bottom:667.163594px;}
.y65_c01091{bottom:668.828305px;}
.y66_c01091{bottom:669.973047px;}
.y67_c01091{bottom:670.553876px;}
.y68_c01091{bottom:672.124843px;}
.y5e_c01091{bottom:677.968500px;}
.y54_c01091{bottom:689.049000px;}
.y55_c01091{bottom:690.185421px;}
.y56_c01091{bottom:691.506411px;}
.y57_c01091{bottom:692.011575px;}
.y58_c01091{bottom:693.603363px;}
.y59_c01091{bottom:694.079223px;}
.y5a_c01091{bottom:694.595475px;}
.y5b_c01091{bottom:695.983785px;}
.y5c_c01091{bottom:696.621708px;}
.y5d_c01091{bottom:697.680876px;}
.y49_c01091{bottom:711.988512px;}
.y4a_c01091{bottom:713.095137px;}
.y4b_c01091{bottom:713.455266px;}
.y4c_c01091{bottom:714.481797px;}
.y4d_c01091{bottom:716.699205px;}
.y4e_c01091{bottom:717.134001px;}
.y4f_c01091{bottom:717.884028px;}
.y50_c01091{bottom:718.377204px;}
.y51_c01091{bottom:719.318409px;}
.y52_c01091{bottom:721.075644px;}
.y53_c01091{bottom:721.727838px;}
.y3d_c01091{bottom:734.403033px;}
.y3e_c01091{bottom:735.555360px;}
.y3f_c01091{bottom:737.364783px;}
.y40_c01091{bottom:738.060522px;}
.y41_c01091{bottom:738.965679px;}
.y42_c01091{bottom:739.907829px;}
.y43_c01091{bottom:740.443221px;}
.y44_c01091{bottom:741.268419px;}
.y45_c01091{bottom:741.883110px;}
.y46_c01091{bottom:744.048735px;}
.y47_c01091{bottom:745.054839px;}
.y48_c01091{bottom:745.848654px;}
.y2f_c01091{bottom:757.083000px;}
.y30_c01091{bottom:757.792038px;}
.y31_c01091{bottom:758.730591px;}
.y32_c01091{bottom:759.274002px;}
.y33_c01091{bottom:760.450221px;}
.y34_c01091{bottom:761.145564px;}
.y35_c01091{bottom:761.977230px;}
.y36_c01091{bottom:762.494406px;}
.y37_c01091{bottom:764.074446px;}
.y38_c01091{bottom:764.929740px;}
.y39_c01091{bottom:765.321945px;}
.y3a_c01091{bottom:766.199151px;}
.y3b_c01091{bottom:766.985277px;}
.y3c_c01091{bottom:767.406918px;}
.y22_c01091{bottom:779.496000px;}
.y23_c01091{bottom:780.216000px;}
.y24_c01091{bottom:780.531000px;}
.y25_c01091{bottom:781.495500px;}
.y26_c01091{bottom:783.396000px;}
.y27_c01091{bottom:784.318500px;}
.y28_c01091{bottom:784.741500px;}
.y29_c01091{bottom:785.127000px;}
.y2a_c01091{bottom:785.949000px;}
.y2b_c01091{bottom:787.470000px;}
.y2c_c01091{bottom:789.189000px;}
.y2d_c01091{bottom:789.879000px;}
.y2e_c01091{bottom:790.537500px;}
.y15_c01091{bottom:804.330000px;}
.y16_c01091{bottom:805.006500px;}
.y17_c01091{bottom:805.282500px;}
.y18_c01091{bottom:806.380500px;}
.y19_c01091{bottom:807.430500px;}
.y1a_c01091{bottom:807.591000px;}
.y1b_c01091{bottom:807.804000px;}
.y1c_c01091{bottom:808.414500px;}
.y1d_c01091{bottom:809.290500px;}
.y1e_c01091{bottom:809.907000px;}
.y1f_c01091{bottom:811.108500px;}
.y20_c01091{bottom:812.143500px;}
.y21_c01091{bottom:813.327000px;}
.y9_c01091{bottom:824.944500px;}
.ya_c01091{bottom:825.987000px;}
.yb_c01091{bottom:827.869500px;}
.yc_c01091{bottom:830.427000px;}
.yd_c01091{bottom:831.399000px;}
.ye_c01091{bottom:832.525500px;}
.yf_c01091{bottom:833.131500px;}
.y10_c01091{bottom:833.650500px;}
.y11_c01091{bottom:834.415500px;}
.y12_c01091{bottom:835.437000px;}
.y13_c01091{bottom:836.310000px;}
.y14_c01091{bottom:837.631500px;}
.y8_c01091{bottom:859.696500px;}
.y5_c01091{bottom:868.859539px;}
.y6_c01091{bottom:873.549414px;}
.y7_c01091{bottom:874.683629px;}
.y1_c01091{bottom:929.884500px;}
.y2_c01091{bottom:932.198586px;}
.y3_c01091{bottom:933.363466px;}
.y4_c01091{bottom:935.511027px;}
.h20_c01091{height:14.700000px;}
.h16_c01091{height:18.903411px;}
.h1f_c01091{height:22.050000px;}
.he_c01091{height:39.908797px;}
.ha_c01091{height:61.964990px;}
.h5_c01091{height:66.150000px;}
.hd_c01091{height:67.214816px;}
.h7_c01091{height:68.250000px;}
.h13_c01091{height:68.259861px;}
.h15_c01091{height:68.262318px;}
.hc_c01091{height:68.265047px;}
.h6_c01091{height:69.300000px;}
.h10_c01091{height:69.310013px;}
.h17_c01091{height:69.312508px;}
.h9_c01091{height:69.316769px;}
.h21_c01091{height:70.350000px;}
.h19_c01091{height:70.354256px;}
.h12_c01091{height:70.360165px;}
.h8_c01091{height:70.367023px;}
.h18_c01091{height:71.365184px;}
.h1a_c01091{height:71.404320px;}
.hf_c01091{height:71.410317px;}
.hb_c01091{height:71.417277px;}
.h11_c01091{height:72.460468px;}
.h1d_c01091{height:74.554510px;}
.h14_c01091{height:74.560772px;}
.h1c_c01091{height:75.604574px;}
.h1b_c01091{height:76.654637px;}
.h4_c01091{height:85.050000px;}
.h2_c01091{height:103.968761px;}
.h3_c01091{height:159.628805px;}
.h1e_c01091{height:216.327685px;}
.h0_c01091{height:1008.450000px;}
.h1_c01091{height:1008.750000px;}
.w0_c01091{width:711.720000px;}
.w1_c01091{width:711.750000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:59.911500px;}
.x8_c01091{left:62.910000px;}
.x49_c01091{left:64.530000px;}
.x5a_c01091{left:66.958696px;}
.x20_c01091{left:69.676500px;}
.xca_c01091{left:74.374500px;}
.x5_c01091{left:76.447023px;}
.x51_c01091{left:78.825461px;}
.xa6_c01091{left:80.919000px;}
.x2b_c01091{left:82.732500px;}
.x15_c01091{left:100.192500px;}
.x16_c01091{left:115.488000px;}
.xa_c01091{left:117.018000px;}
.x76_c01091{left:118.158012px;}
.x8a_c01091{left:119.792787px;}
.x9e_c01091{left:121.186761px;}
.x7a_c01091{left:122.544585px;}
.xb4_c01091{left:123.550179px;}
.xba_c01091{left:124.550312px;}
.xc4_c01091{left:125.657877px;}
.x3c_c01091{left:132.318834px;}
.x4a_c01091{left:133.674000px;}
.x5b_c01091{left:134.689500px;}
.xa7_c01091{left:138.429000px;}
.x6e_c01091{left:139.583570px;}
.xad_c01091{left:141.616500px;}
.x8b_c01091{left:142.761578px;}
.xc6_c01091{left:143.803500px;}
.x9f_c01091{left:146.080328px;}
.x64_c01091{left:153.055344px;}
.x21_c01091{left:156.648000px;}
.xbb_c01091{left:157.816175px;}
.x9_c01091{left:162.000000px;}
.xb6_c01091{left:163.227156px;}
.xae_c01091{left:164.310000px;}
.x5c_c01091{left:166.824000px;}
.x83_c01091{left:173.508726px;}
.x43_c01091{left:175.290000px;}
.x17_c01091{left:176.527500px;}
.x2_c01091{left:181.705500px;}
.x98_c01091{left:183.519107px;}
.xa8_c01091{left:185.695500px;}
.xb5_c01091{left:187.287486px;}
.xb_c01091{left:189.435000px;}
.x77_c01091{left:191.397263px;}
.x4b_c01091{left:194.169000px;}
.x5d_c01091{left:195.934500px;}
.x33_c01091{left:197.598159px;}
.x52_c01091{left:203.197575px;}
.x7b_c01091{left:207.349895px;}
.x6b_c01091{left:212.309612px;}
.xbc_c01091{left:214.527302px;}
.x65_c01091{left:218.132844px;}
.x8c_c01091{left:220.018704px;}
.x6f_c01091{left:221.398167px;}
.xaf_c01091{left:222.660000px;}
.xa9_c01091{left:224.038500px;}
.x4c_c01091{left:225.696000px;}
.x53_c01091{left:227.369079px;}
.x34_c01091{left:229.222659px;}
.xa0_c01091{left:232.979849px;}
.x18_c01091{left:234.873000px;}
.x22_c01091{left:239.292000px;}
.x5e_c01091{left:241.818000px;}
.x3_c01091{left:243.015000px;}
.xaa_c01091{left:246.267000px;}
.x54_c01091{left:249.175051px;}
.x66_c01091{left:250.189344px;}
.x7c_c01091{left:252.145190px;}
.x19_c01091{left:255.690000px;}
.x8d_c01091{left:257.533479px;}
.x84_c01091{left:259.905570px;}
.xa3_c01091{left:264.257421px;}
.xc5_c01091{left:265.325792px;}
.x2c_c01091{left:267.394500px;}
.x35_c01091{left:270.366159px;}
.x5f_c01091{left:271.870500px;}
.x67_c01091{left:273.506844px;}
.xbd_c01091{left:275.015462px;}
.x23_c01091{left:279.394500px;}
.x8e_c01091{left:284.474397px;}
.x85_c01091{left:285.790263px;}
.x3d_c01091{left:286.796733px;}
.xc_c01091{left:287.799000px;}
.x1a_c01091{left:289.602000px;}
.x44_c01091{left:292.236000px;}
.x24_c01091{left:297.757500px;}
.x60_c01091{left:301.231500px;}
.x2d_c01091{left:305.197500px;}
.x3e_c01091{left:307.515195px;}
.x70_c01091{left:309.416663px;}
.x36_c01091{left:313.191159px;}
.x25_c01091{left:314.500500px;}
.x45_c01091{left:315.702000px;}
.xb7_c01091{left:317.142156px;}
.xc7_c01091{left:318.171000px;}
.x99_c01091{left:320.999594px;}
.x6_c01091{left:323.282523px;}
.xd_c01091{left:325.180500px;}
.x8f_c01091{left:327.207851px;}
.x2e_c01091{left:328.705500px;}
.x4d_c01091{left:331.957500px;}
.x55_c01091{left:335.419347px;}
.xbe_c01091{left:336.640638px;}
.x1b_c01091{left:338.274000px;}
.x78_c01091{left:340.724213px;}
.x3f_c01091{left:343.244487px;}
.x7d_c01091{left:347.472060px;}
.x26_c01091{left:350.257500px;}
.x7e_c01091{left:353.857892px;}
.x4_c01091{left:356.044500px;}
.x86_c01091{left:358.540434px;}
.x79_c01091{left:360.184881px;}
.x56_c01091{left:362.328414px;}
.x71_c01091{left:363.888245px;}
.x40_c01091{left:366.753015px;}
.xe_c01091{left:368.515500px;}
.xbf_c01091{left:370.659518px;}
.x1c_c01091{left:372.499500px;}
.x37_c01091{left:375.036159px;}
.x46_c01091{left:378.807000px;}
.x61_c01091{left:379.956000px;}
.x7_c01091{left:382.978023px;}
.x94_c01091{left:386.008182px;}
.x9a_c01091{left:389.568087px;}
.x72_c01091{left:390.700286px;}
.xf_c01091{left:391.831500px;}
.x57_c01091{left:396.974638px;}
.xa1_c01091{left:398.523044px;}
.x2f_c01091{left:400.525500px;}
.x38_c01091{left:402.976659px;}
.xb0_c01091{left:404.625000px;}
.x90_c01091{left:406.598028px;}
.x47_c01091{left:407.803500px;}
.x10_c01091{left:411.819000px;}
.x6c_c01091{left:413.413335px;}
.x27_c01091{left:416.397000px;}
.xab_c01091{left:419.103000px;}
.x68_c01091{left:422.012844px;}
.xc0_c01091{left:424.339112px;}
.xa4_c01091{left:428.992641px;}
.x7f_c01091{left:430.121793px;}
.x91_c01091{left:431.186869px;}
.x58_c01091{left:434.254926px;}
.x1d_c01091{left:439.275000px;}
.x11_c01091{left:441.256500px;}
.x87_c01091{left:447.383982px;}
.x48_c01091{left:455.947500px;}
.x30_c01091{left:457.230000px;}
.x73_c01091{left:459.841613px;}
.x80_c01091{left:462.760451px;}
.x4e_c01091{left:465.741000px;}
.x62_c01091{left:467.121000px;}
.x9b_c01091{left:469.492167px;}
.x6d_c01091{left:471.718352px;}
.x95_c01091{left:475.673742px;}
.x12_c01091{left:480.558000px;}
.xc1_c01091{left:482.410755px;}
.x59_c01091{left:485.555997px;}
.xb8_c01091{left:487.495656px;}
.x28_c01091{left:491.160000px;}
.x4f_c01091{left:493.399500px;}
.x41_c01091{left:495.275853px;}
.x1e_c01091{left:496.780500px;}
.x39_c01091{left:501.414159px;}
.x9c_c01091{left:502.715850px;}
.x63_c01091{left:506.814000px;}
.xb9_c01091{left:507.828156px;}
.x88_c01091{left:510.264837px;}
.xac_c01091{left:511.986000px;}
.x13_c01091{left:514.162500px;}
.xb1_c01091{left:515.911500px;}
.xc8_c01091{left:517.228500px;}
.x69_c01091{left:518.956344px;}
.x29_c01091{left:521.139000px;}
.xa5_c01091{left:522.354491px;}
.x42_c01091{left:526.353546px;}
.x92_c01091{left:529.455210px;}
.x74_c01091{left:531.652889px;}
.x31_c01091{left:532.836000px;}
.x9d_c01091{left:534.616482px;}
.xc2_c01091{left:537.413366px;}
.xb2_c01091{left:542.637000px;}
.x81_c01091{left:544.288107px;}
.x3a_c01091{left:547.146159px;}
.x2a_c01091{left:549.744000px;}
.x32_c01091{left:552.001500px;}
.x6a_c01091{left:555.944844px;}
.x96_c01091{left:559.145573px;}
.x75_c01091{left:561.535379px;}
.x1f_c01091{left:562.561500px;}
.x14_c01091{left:565.017000px;}
.xa2_c01091{left:566.163188px;}
.xb3_c01091{left:567.169500px;}
.x50_c01091{left:568.207500px;}
.xc3_c01091{left:570.980728px;}
.x97_c01091{left:572.056506px;}
.xc9_c01091{left:574.747500px;}
.x82_c01091{left:580.975469px;}
.x3b_c01091{left:583.228659px;}
.x93_c01091{left:584.796597px;}
.x89_c01091{left:590.214120px;}
.xcb_c01091{left:709.560000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls0_c01091{letter-spacing:0.000000pt;}
.ws0_c01091{word-spacing:0.000000pt;}
.fs1e_c01091{font-size:13.066667pt;}
.fs14_c01091{font-size:16.803032pt;}
.fs1d_c01091{font-size:19.600000pt;}
.fsc_c01091{font-size:35.474486pt;}
.fs8_c01091{font-size:55.079991pt;}
.fs3_c01091{font-size:58.800000pt;}
.fsb_c01091{font-size:59.746503pt;}
.fs5_c01091{font-size:60.666667pt;}
.fs11_c01091{font-size:60.675432pt;}
.fs13_c01091{font-size:60.677616pt;}
.fsa_c01091{font-size:60.680042pt;}
.fs4_c01091{font-size:61.600000pt;}
.fse_c01091{font-size:61.608901pt;}
.fs15_c01091{font-size:61.611118pt;}
.fs7_c01091{font-size:61.614905pt;}
.fs1f_c01091{font-size:62.533333pt;}
.fs17_c01091{font-size:62.537116pt;}
.fs10_c01091{font-size:62.542369pt;}
.fs6_c01091{font-size:62.548465pt;}
.fs16_c01091{font-size:63.435719pt;}
.fs18_c01091{font-size:63.470506pt;}
.fsd_c01091{font-size:63.475837pt;}
.fs9_c01091{font-size:63.482024pt;}
.fsf_c01091{font-size:64.409305pt;}
.fs1b_c01091{font-size:66.270676pt;}
.fs12_c01091{font-size:66.276242pt;}
.fs1a_c01091{font-size:67.204065pt;}
.fs19_c01091{font-size:68.137455pt;}
.fs2_c01091{font-size:75.600000pt;}
.fs0_c01091{font-size:92.416677pt;}
.fs1_c01091{font-size:141.892271pt;}
.fs1c_c01091{font-size:192.291275pt;}
.y0_c01091{bottom:0.000000pt;}
.y153_c01091{bottom:39.360000pt;}
.y152_c01091{bottom:48.960000pt;}
.y151_c01091{bottom:66.000000pt;}
.y150_c01091{bottom:68.880000pt;}
.y14f_c01091{bottom:89.049333pt;}
.y145_c01091{bottom:151.201333pt;}
.y146_c01091{bottom:151.521243pt;}
.y147_c01091{bottom:152.170243pt;}
.y148_c01091{bottom:152.906260pt;}
.y149_c01091{bottom:153.194269pt;}
.y14a_c01091{bottom:153.780599pt;}
.y14b_c01091{bottom:153.994659pt;}
.y14c_c01091{bottom:154.612492pt;}
.y14d_c01091{bottom:154.852600pt;}
.y14e_c01091{bottom:155.415008pt;}
.y140_c01091{bottom:171.358193pt;}
.y141_c01091{bottom:171.727633pt;}
.y142_c01091{bottom:172.357851pt;}
.y143_c01091{bottom:172.973199pt;}
.y144_c01091{bottom:176.121208pt;}
.y132_c01091{bottom:191.759167pt;}
.y133_c01091{bottom:192.055096pt;}
.y134_c01091{bottom:192.277597pt;}
.y135_c01091{bottom:192.558932pt;}
.y136_c01091{bottom:192.947872pt;}
.y137_c01091{bottom:193.097032pt;}
.y138_c01091{bottom:193.430321pt;}
.y139_c01091{bottom:193.644916pt;}
.y13a_c01091{bottom:193.946875pt;}
.y13b_c01091{bottom:194.423736pt;}
.y13c_c01091{bottom:194.699483pt;}
.y13d_c01091{bottom:194.939541pt;}
.y13e_c01091{bottom:195.428005pt;}
.y13f_c01091{bottom:195.726883pt;}
.y125_c01091{bottom:211.440477pt;}
.y126_c01091{bottom:211.829056pt;}
.y127_c01091{bottom:212.061713pt;}
.y128_c01091{bottom:212.660700pt;}
.y129_c01091{bottom:212.856221pt;}
.y12a_c01091{bottom:213.334003pt;}
.y12b_c01091{bottom:213.563668pt;}
.y12c_c01091{bottom:213.751152pt;}
.y12d_c01091{bottom:214.471271pt;}
.y12e_c01091{bottom:214.609181pt;}
.y12f_c01091{bottom:214.999681pt;}
.y130_c01091{bottom:215.198488pt;}
.y131_c01091{bottom:215.952501pt;}
.y11b_c01091{bottom:231.360847pt;}
.y11c_c01091{bottom:232.040063pt;}
.y11d_c01091{bottom:232.933071pt;}
.y11e_c01091{bottom:233.345331pt;}
.y11f_c01091{bottom:233.871967pt;}
.y120_c01091{bottom:234.152692pt;}
.y121_c01091{bottom:234.616311pt;}
.y122_c01091{bottom:235.397187pt;}
.y123_c01091{bottom:235.662719pt;}
.y124_c01091{bottom:236.267683pt;}
.y10e_c01091{bottom:252.241333pt;}
.y10f_c01091{bottom:252.463225pt;}
.y110_c01091{bottom:252.790512pt;}
.y111_c01091{bottom:253.033759pt;}
.y112_c01091{bottom:253.358743pt;}
.y113_c01091{bottom:253.658749pt;}
.y114_c01091{bottom:254.053136pt;}
.y115_c01091{bottom:254.812972pt;}
.y116_c01091{bottom:255.082325pt;}
.y117_c01091{bottom:255.446645pt;}
.y118_c01091{bottom:255.901107pt;}
.y119_c01091{bottom:256.162423pt;}
.y11a_c01091{bottom:256.402296pt;}
.y10c_c01091{bottom:275.532000pt;}
.y10d_c01091{bottom:276.462773pt;}
.yef_c01091{bottom:296.373065pt;}
.yf0_c01091{bottom:296.990329pt;}
.yf1_c01091{bottom:297.429813pt;}
.yf2_c01091{bottom:298.026404pt;}
.yf3_c01091{bottom:298.284477pt;}
.yf4_c01091{bottom:298.881276pt;}
.yf5_c01091{bottom:299.057560pt;}
.yf6_c01091{bottom:299.402160pt;}
.yf7_c01091{bottom:299.928900pt;}
.yf8_c01091{bottom:300.243873pt;}
.yf9_c01091{bottom:301.007605pt;}
.yfa_c01091{bottom:301.345265pt;}
.ye5_c01091{bottom:316.297017pt;}
.ye6_c01091{bottom:316.695860pt;}
.ye7_c01091{bottom:318.086364pt;}
.ye8_c01091{bottom:319.028620pt;}
.ye9_c01091{bottom:320.437072pt;}
.yea_c01091{bottom:320.734615pt;}
.yeb_c01091{bottom:321.301231pt;}
.yec_c01091{bottom:321.813708pt;}
.yed_c01091{bottom:323.062932pt;}
.yee_c01091{bottom:323.417220pt;}
.yda_c01091{bottom:336.938149pt;}
.ydb_c01091{bottom:337.384744pt;}
.ydc_c01091{bottom:337.723513pt;}
.ydd_c01091{bottom:338.423137pt;}
.yde_c01091{bottom:338.990395pt;}
.ydf_c01091{bottom:339.435557pt;}
.ye0_c01091{bottom:340.288984pt;}
.ye1_c01091{bottom:341.011540pt;}
.ye2_c01091{bottom:341.283331pt;}
.ye3_c01091{bottom:341.697352pt;}
.ye4_c01091{bottom:342.094048pt;}
.yce_c01091{bottom:357.101249pt;}
.ycf_c01091{bottom:357.540479pt;}
.yd0_c01091{bottom:358.029345pt;}
.yd1_c01091{bottom:358.983697pt;}
.yd2_c01091{bottom:359.366803pt;}
.yd3_c01091{bottom:360.338888pt;}
.yd4_c01091{bottom:360.654423pt;}
.yd5_c01091{bottom:361.029504pt;}
.yd6_c01091{bottom:361.849323pt;}
.yd7_c01091{bottom:362.304264pt;}
.yd8_c01091{bottom:362.962632pt;}
.yd9_c01091{bottom:363.135057pt;}
.yc2_c01091{bottom:377.024171pt;}
.yc3_c01091{bottom:377.329909pt;}
.yc4_c01091{bottom:377.643060pt;}
.yc5_c01091{bottom:378.359977pt;}
.yc6_c01091{bottom:378.860181pt;}
.yc7_c01091{bottom:379.219275pt;}
.yc8_c01091{bottom:379.789003pt;}
.yc9_c01091{bottom:380.214511pt;}
.yca_c01091{bottom:380.848636pt;}
.ycb_c01091{bottom:381.176188pt;}
.ycc_c01091{bottom:382.486415pt;}
.ycd_c01091{bottom:383.223989pt;}
.yb7_c01091{bottom:398.624725pt;}
.yb8_c01091{bottom:398.984897pt;}
.yb9_c01091{bottom:399.204719pt;}
.yba_c01091{bottom:399.809496pt;}
.ybb_c01091{bottom:400.126160pt;}
.ybc_c01091{bottom:400.402607pt;}
.ybd_c01091{bottom:401.179183pt;}
.ybe_c01091{bottom:402.126927pt;}
.ybf_c01091{bottom:402.477499pt;}
.yc0_c01091{bottom:402.797045pt;}
.yc1_c01091{bottom:403.650399pt;}
.yaa_c01091{bottom:417.349392pt;}
.yab_c01091{bottom:418.028581pt;}
.yac_c01091{bottom:418.405496pt;}
.yad_c01091{bottom:418.962368pt;}
.yae_c01091{bottom:419.852901pt;}
.yaf_c01091{bottom:420.148123pt;}
.yb0_c01091{bottom:420.227281pt;}
.yb1_c01091{bottom:420.805993pt;}
.yb2_c01091{bottom:421.175655pt;}
.yb3_c01091{bottom:421.582169pt;}
.yb4_c01091{bottom:422.375444pt;}
.yb5_c01091{bottom:422.596747pt;}
.yb6_c01091{bottom:423.053772pt;}
.ya2_c01091{bottom:443.752087pt;}
.ya3_c01091{bottom:444.440607pt;}
.ya4_c01091{bottom:444.924165pt;}
.ya5_c01091{bottom:445.623905pt;}
.ya6_c01091{bottom:446.506012pt;}
.ya7_c01091{bottom:447.314033pt;}
.ya8_c01091{bottom:447.625444pt;}
.ya9_c01091{bottom:450.097693pt;}
.y99_c01091{bottom:463.916163pt;}
.y9a_c01091{bottom:464.261683pt;}
.y9b_c01091{bottom:465.571347pt;}
.y9c_c01091{bottom:466.980093pt;}
.y9d_c01091{bottom:467.851233pt;}
.y9e_c01091{bottom:468.280400pt;}
.y9f_c01091{bottom:469.386553pt;}
.ya0_c01091{bottom:470.535720pt;}
.ya1_c01091{bottom:471.013952pt;}
.y8f_c01091{bottom:483.839400pt;}
.y90_c01091{bottom:484.871811pt;}
.y91_c01091{bottom:485.521145pt;}
.y92_c01091{bottom:486.730095pt;}
.y93_c01091{bottom:488.079173pt;}
.y94_c01091{bottom:488.698645pt;}
.y95_c01091{bottom:489.097535pt;}
.y96_c01091{bottom:490.134633pt;}
.y97_c01091{bottom:490.537535pt;}
.y98_c01091{bottom:491.223777pt;}
.y83_c01091{bottom:504.480965pt;}
.y84_c01091{bottom:505.011637pt;}
.y85_c01091{bottom:505.562347pt;}
.y86_c01091{bottom:505.995031pt;}
.y87_c01091{bottom:506.479440pt;}
.y88_c01091{bottom:506.831793pt;}
.y89_c01091{bottom:507.464171pt;}
.y8a_c01091{bottom:507.806211pt;}
.y8b_c01091{bottom:509.075884pt;}
.y8c_c01091{bottom:509.374087pt;}
.y8d_c01091{bottom:510.540808pt;}
.y8e_c01091{bottom:511.099745pt;}
.y10b_c01091{bottom:514.794188pt;}
.y78_c01091{bottom:525.124000pt;}
.y79_c01091{bottom:525.609588pt;}
.y7a_c01091{bottom:526.049480pt;}
.y7b_c01091{bottom:526.742831pt;}
.y7c_c01091{bottom:527.196957pt;}
.y7d_c01091{bottom:527.640635pt;}
.y7e_c01091{bottom:528.164325pt;}
.y7f_c01091{bottom:528.830249pt;}
.y80_c01091{bottom:529.747637pt;}
.y81_c01091{bottom:530.147409pt;}
.y82_c01091{bottom:530.747215pt;}
.y109_c01091{bottom:536.037731pt;}
.y10a_c01091{bottom:536.038160pt;}
.yfb_c01091{bottom:548.162667pt;}
.yfc_c01091{bottom:548.765524pt;}
.yfd_c01091{bottom:549.133947pt;}
.yfe_c01091{bottom:549.932225pt;}
.yff_c01091{bottom:550.579796pt;}
.y100_c01091{bottom:550.955211pt;}
.y101_c01091{bottom:552.285540pt;}
.y102_c01091{bottom:552.847965pt;}
.y103_c01091{bottom:553.216135pt;}
.y104_c01091{bottom:553.874219pt;}
.y105_c01091{bottom:554.261565pt;}
.y106_c01091{bottom:555.114387pt;}
.y107_c01091{bottom:555.442909pt;}
.y108_c01091{bottom:555.803251pt;}
.y77_c01091{bottom:556.192268pt;}
.y69_c01091{bottom:568.081067pt;}
.y6a_c01091{bottom:568.344373pt;}
.y6b_c01091{bottom:569.012468pt;}
.y6c_c01091{bottom:570.320367pt;}
.y6d_c01091{bottom:570.555271pt;}
.y6e_c01091{bottom:570.985129pt;}
.y6f_c01091{bottom:571.372165pt;}
.y70_c01091{bottom:572.361268pt;}
.y71_c01091{bottom:572.906025pt;}
.y72_c01091{bottom:573.384317pt;}
.y73_c01091{bottom:574.000367pt;}
.y74_c01091{bottom:574.662917pt;}
.y75_c01091{bottom:575.575184pt;}
.y76_c01091{bottom:576.990001pt;}
.y5f_c01091{bottom:588.141333pt;}
.y60_c01091{bottom:589.333013pt;}
.y61_c01091{bottom:590.462253pt;}
.y62_c01091{bottom:591.050757pt;}
.y63_c01091{bottom:592.056769pt;}
.y64_c01091{bottom:593.034305pt;}
.y65_c01091{bottom:594.514049pt;}
.y66_c01091{bottom:595.531597pt;}
.y67_c01091{bottom:596.047889pt;}
.y68_c01091{bottom:597.444305pt;}
.y5e_c01091{bottom:602.638667pt;}
.y54_c01091{bottom:612.488000pt;}
.y55_c01091{bottom:613.498152pt;}
.y56_c01091{bottom:614.672365pt;}
.y57_c01091{bottom:615.121400pt;}
.y58_c01091{bottom:616.536323pt;}
.y59_c01091{bottom:616.959309pt;}
.y5a_c01091{bottom:617.418200pt;}
.y5b_c01091{bottom:618.652253pt;}
.y5c_c01091{bottom:619.219296pt;}
.y5d_c01091{bottom:620.160779pt;}
.y49_c01091{bottom:632.878677pt;}
.y4a_c01091{bottom:633.862344pt;}
.y4b_c01091{bottom:634.182459pt;}
.y4c_c01091{bottom:635.094931pt;}
.y4d_c01091{bottom:637.065960pt;}
.y4e_c01091{bottom:637.452445pt;}
.y4f_c01091{bottom:638.119136pt;}
.y50_c01091{bottom:638.557515pt;}
.y51_c01091{bottom:639.394141pt;}
.y52_c01091{bottom:640.956128pt;}
.y53_c01091{bottom:641.535856pt;}
.y3d_c01091{bottom:652.802696pt;}
.y3e_c01091{bottom:653.826987pt;}
.y3f_c01091{bottom:655.435363pt;}
.y40_c01091{bottom:656.053797pt;}
.y41_c01091{bottom:656.858381pt;}
.y42_c01091{bottom:657.695848pt;}
.y43_c01091{bottom:658.171752pt;}
.y44_c01091{bottom:658.905261pt;}
.y45_c01091{bottom:659.451653pt;}
.y46_c01091{bottom:661.376653pt;}
.y47_c01091{bottom:662.270968pt;}
.y48_c01091{bottom:662.976581pt;}
.y2f_c01091{bottom:672.962667pt;}
.y30_c01091{bottom:673.592923pt;}
.y31_c01091{bottom:674.427192pt;}
.y32_c01091{bottom:674.910224pt;}
.y33_c01091{bottom:675.955752pt;}
.y34_c01091{bottom:676.573835pt;}
.y35_c01091{bottom:677.313093pt;}
.y36_c01091{bottom:677.772805pt;}
.y37_c01091{bottom:679.177285pt;}
.y38_c01091{bottom:679.937547pt;}
.y39_c01091{bottom:680.286173pt;}
.y3a_c01091{bottom:681.065912pt;}
.y3b_c01091{bottom:681.764691pt;}
.y3c_c01091{bottom:682.139483pt;}
.y22_c01091{bottom:692.885333pt;}
.y23_c01091{bottom:693.525333pt;}
.y24_c01091{bottom:693.805333pt;}
.y25_c01091{bottom:694.662667pt;}
.y26_c01091{bottom:696.352000pt;}
.y27_c01091{bottom:697.172000pt;}
.y28_c01091{bottom:697.548000pt;}
.y29_c01091{bottom:697.890667pt;}
.y2a_c01091{bottom:698.621333pt;}
.y2b_c01091{bottom:699.973333pt;}
.y2c_c01091{bottom:701.501333pt;}
.y2d_c01091{bottom:702.114667pt;}
.y2e_c01091{bottom:702.700000pt;}
.y15_c01091{bottom:714.960000pt;}
.y16_c01091{bottom:715.561333pt;}
.y17_c01091{bottom:715.806667pt;}
.y18_c01091{bottom:716.782667pt;}
.y19_c01091{bottom:717.716000pt;}
.y1a_c01091{bottom:717.858667pt;}
.y1b_c01091{bottom:718.048000pt;}
.y1c_c01091{bottom:718.590667pt;}
.y1d_c01091{bottom:719.369333pt;}
.y1e_c01091{bottom:719.917333pt;}
.y1f_c01091{bottom:720.985333pt;}
.y20_c01091{bottom:721.905333pt;}
.y21_c01091{bottom:722.957333pt;}
.y9_c01091{bottom:733.284000pt;}
.ya_c01091{bottom:734.210667pt;}
.yb_c01091{bottom:735.884000pt;}
.yc_c01091{bottom:738.157333pt;}
.yd_c01091{bottom:739.021333pt;}
.ye_c01091{bottom:740.022667pt;}
.yf_c01091{bottom:740.561333pt;}
.y10_c01091{bottom:741.022667pt;}
.y11_c01091{bottom:741.702667pt;}
.y12_c01091{bottom:742.610667pt;}
.y13_c01091{bottom:743.386667pt;}
.y14_c01091{bottom:744.561333pt;}
.y8_c01091{bottom:764.174667pt;}
.y5_c01091{bottom:772.319591pt;}
.y6_c01091{bottom:776.488368pt;}
.y7_c01091{bottom:777.496559pt;}
.y1_c01091{bottom:826.564000pt;}
.y2_c01091{bottom:828.620965pt;}
.y3_c01091{bottom:829.656415pt;}
.y4_c01091{bottom:831.565357pt;}
.h20_c01091{height:13.066667pt;}
.h16_c01091{height:16.803032pt;}
.h1f_c01091{height:19.600000pt;}
.he_c01091{height:35.474486pt;}
.ha_c01091{height:55.079991pt;}
.h5_c01091{height:58.800000pt;}
.hd_c01091{height:59.746503pt;}
.h7_c01091{height:60.666667pt;}
.h13_c01091{height:60.675432pt;}
.h15_c01091{height:60.677616pt;}
.hc_c01091{height:60.680042pt;}
.h6_c01091{height:61.600000pt;}
.h10_c01091{height:61.608901pt;}
.h17_c01091{height:61.611118pt;}
.h9_c01091{height:61.614905pt;}
.h21_c01091{height:62.533333pt;}
.h19_c01091{height:62.537116pt;}
.h12_c01091{height:62.542369pt;}
.h8_c01091{height:62.548465pt;}
.h18_c01091{height:63.435719pt;}
.h1a_c01091{height:63.470506pt;}
.hf_c01091{height:63.475837pt;}
.hb_c01091{height:63.482024pt;}
.h11_c01091{height:64.409305pt;}
.h1d_c01091{height:66.270676pt;}
.h14_c01091{height:66.276242pt;}
.h1c_c01091{height:67.204065pt;}
.h1b_c01091{height:68.137455pt;}
.h4_c01091{height:75.600000pt;}
.h2_c01091{height:92.416677pt;}
.h3_c01091{height:141.892271pt;}
.h1e_c01091{height:192.291275pt;}
.h0_c01091{height:896.400000pt;}
.h1_c01091{height:896.666667pt;}
.w0_c01091{width:632.640000pt;}
.w1_c01091{width:632.666667pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:53.254667pt;}
.x8_c01091{left:55.920000pt;}
.x49_c01091{left:57.360000pt;}
.x5a_c01091{left:59.518841pt;}
.x20_c01091{left:61.934667pt;}
.xca_c01091{left:66.110667pt;}
.x5_c01091{left:67.952909pt;}
.x51_c01091{left:70.067076pt;}
.xa6_c01091{left:71.928000pt;}
.x2b_c01091{left:73.540000pt;}
.x15_c01091{left:89.060000pt;}
.x16_c01091{left:102.656000pt;}
.xa_c01091{left:104.016000pt;}
.x76_c01091{left:105.029344pt;}
.x8a_c01091{left:106.482477pt;}
.x9e_c01091{left:107.721565pt;}
.x7a_c01091{left:108.928520pt;}
.xb4_c01091{left:109.822381pt;}
.xba_c01091{left:110.711388pt;}
.xc4_c01091{left:111.695891pt;}
.x3c_c01091{left:117.616741pt;}
.x4a_c01091{left:118.821333pt;}
.x5b_c01091{left:119.724000pt;}
.xa7_c01091{left:123.048000pt;}
.x6e_c01091{left:124.074284pt;}
.xad_c01091{left:125.881333pt;}
.x8b_c01091{left:126.899180pt;}
.xc6_c01091{left:127.825333pt;}
.x9f_c01091{left:129.849180pt;}
.x64_c01091{left:136.049195pt;}
.x21_c01091{left:139.242667pt;}
.xbb_c01091{left:140.281044pt;}
.x9_c01091{left:144.000000pt;}
.xb6_c01091{left:145.090805pt;}
.xae_c01091{left:146.053333pt;}
.x5c_c01091{left:148.288000pt;}
.x83_c01091{left:154.229979pt;}
.x43_c01091{left:155.813333pt;}
.x17_c01091{left:156.913333pt;}
.x2_c01091{left:161.516000pt;}
.x98_c01091{left:163.128095pt;}
.xa8_c01091{left:165.062667pt;}
.xb5_c01091{left:166.477765pt;}
.xb_c01091{left:168.386667pt;}
.x77_c01091{left:170.130900pt;}
.x4b_c01091{left:172.594667pt;}
.x5d_c01091{left:174.164000pt;}
.x33_c01091{left:175.642808pt;}
.x52_c01091{left:180.620067pt;}
.x7b_c01091{left:184.311017pt;}
.x6b_c01091{left:188.719655pt;}
.xbc_c01091{left:190.690935pt;}
.x65_c01091{left:193.895861pt;}
.x8c_c01091{left:195.572181pt;}
.x6f_c01091{left:196.798371pt;}
.xaf_c01091{left:197.920000pt;}
.xa9_c01091{left:199.145333pt;}
.x4c_c01091{left:200.618667pt;}
.x53_c01091{left:202.105848pt;}
.x34_c01091{left:203.753475pt;}
.xa0_c01091{left:207.093199pt;}
.x18_c01091{left:208.776000pt;}
.x22_c01091{left:212.704000pt;}
.x5e_c01091{left:214.949333pt;}
.x3_c01091{left:216.013333pt;}
.xaa_c01091{left:218.904000pt;}
.x54_c01091{left:221.488935pt;}
.x66_c01091{left:222.390528pt;}
.x7c_c01091{left:224.129057pt;}
.x19_c01091{left:227.280000pt;}
.x8d_c01091{left:228.918648pt;}
.x84_c01091{left:231.027173pt;}
.xa3_c01091{left:234.895485pt;}
.xc5_c01091{left:235.845148pt;}
.x2c_c01091{left:237.684000pt;}
.x35_c01091{left:240.325475pt;}
.x5f_c01091{left:241.662667pt;}
.x67_c01091{left:243.117195pt;}
.xbd_c01091{left:244.458188pt;}
.x23_c01091{left:248.350667pt;}
.x8e_c01091{left:252.866131pt;}
.x85_c01091{left:254.035789pt;}
.x3d_c01091{left:254.930429pt;}
.xc_c01091{left:255.821333pt;}
.x1a_c01091{left:257.424000pt;}
.x44_c01091{left:259.765333pt;}
.x24_c01091{left:264.673333pt;}
.x60_c01091{left:267.761333pt;}
.x2d_c01091{left:271.286667pt;}
.x3e_c01091{left:273.346840pt;}
.x70_c01091{left:275.037033pt;}
.x36_c01091{left:278.392141pt;}
.x25_c01091{left:279.556000pt;}
.x45_c01091{left:280.624000pt;}
.xb7_c01091{left:281.904139pt;}
.xc7_c01091{left:282.818667pt;}
.x99_c01091{left:285.332972pt;}
.x6_c01091{left:287.362243pt;}
.xd_c01091{left:289.049333pt;}
.x8f_c01091{left:290.851423pt;}
.x2e_c01091{left:292.182667pt;}
.x4d_c01091{left:295.073333pt;}
.x55_c01091{left:298.150531pt;}
.xbe_c01091{left:299.236123pt;}
.x1b_c01091{left:300.688000pt;}
.x78_c01091{left:302.865967pt;}
.x3f_c01091{left:305.106211pt;}
.x7d_c01091{left:308.864053pt;}
.x26_c01091{left:311.340000pt;}
.x7e_c01091{left:314.540348pt;}
.x4_c01091{left:316.484000pt;}
.x86_c01091{left:318.702608pt;}
.x79_c01091{left:320.164339pt;}
.x56_c01091{left:322.069701pt;}
.x71_c01091{left:323.456217pt;}
.x40_c01091{left:326.002680pt;}
.xe_c01091{left:327.569333pt;}
.xbf_c01091{left:329.475127pt;}
.x1c_c01091{left:331.110667pt;}
.x37_c01091{left:333.365475pt;}
.x46_c01091{left:336.717333pt;}
.x61_c01091{left:337.738667pt;}
.x7_c01091{left:340.424909pt;}
.x94_c01091{left:343.118384pt;}
.x9a_c01091{left:346.282744pt;}
.x72_c01091{left:347.289143pt;}
.xf_c01091{left:348.294667pt;}
.x57_c01091{left:352.866345pt;}
.xa1_c01091{left:354.242705pt;}
.x2f_c01091{left:356.022667pt;}
.x38_c01091{left:358.201475pt;}
.xb0_c01091{left:359.666667pt;}
.x90_c01091{left:361.420469pt;}
.x47_c01091{left:362.492000pt;}
.x10_c01091{left:366.061333pt;}
.x6c_c01091{left:367.478520pt;}
.x27_c01091{left:370.130667pt;}
.xab_c01091{left:372.536000pt;}
.x68_c01091{left:375.122528pt;}
.xc0_c01091{left:377.190321pt;}
.xa4_c01091{left:381.326792pt;}
.x7f_c01091{left:382.330483pt;}
.x91_c01091{left:383.277217pt;}
.x58_c01091{left:386.004379pt;}
.x1d_c01091{left:390.466667pt;}
.x11_c01091{left:392.228000pt;}
.x87_c01091{left:397.674651pt;}
.x48_c01091{left:405.286667pt;}
.x30_c01091{left:406.426667pt;}
.x73_c01091{left:408.748100pt;}
.x80_c01091{left:411.342623pt;}
.x4e_c01091{left:413.992000pt;}
.x62_c01091{left:415.218667pt;}
.x9b_c01091{left:417.326371pt;}
.x6d_c01091{left:419.305201pt;}
.x95_c01091{left:422.821104pt;}
.x12_c01091{left:427.162667pt;}
.xc1_c01091{left:428.809560pt;}
.x59_c01091{left:431.605331pt;}
.xb8_c01091{left:433.329472pt;}
.x28_c01091{left:436.586667pt;}
.x4f_c01091{left:438.577333pt;}
.x41_c01091{left:440.245203pt;}
.x1e_c01091{left:441.582667pt;}
.x39_c01091{left:445.701475pt;}
.x9c_c01091{left:446.858533pt;}
.x63_c01091{left:450.501333pt;}
.xb9_c01091{left:451.402805pt;}
.x88_c01091{left:453.568744pt;}
.xac_c01091{left:455.098667pt;}
.x13_c01091{left:457.033333pt;}
.xb1_c01091{left:458.588000pt;}
.xc8_c01091{left:459.758667pt;}
.x69_c01091{left:461.294528pt;}
.x29_c01091{left:463.234667pt;}
.xa5_c01091{left:464.315103pt;}
.x42_c01091{left:467.869819pt;}
.x92_c01091{left:470.626853pt;}
.x74_c01091{left:472.580345pt;}
.x31_c01091{left:473.632000pt;}
.x9d_c01091{left:475.214651pt;}
.xc2_c01091{left:477.700769pt;}
.xb2_c01091{left:482.344000pt;}
.x81_c01091{left:483.811651pt;}
.x3a_c01091{left:486.352141pt;}
.x2a_c01091{left:488.661333pt;}
.x32_c01091{left:490.668000pt;}
.x6a_c01091{left:494.173195pt;}
.x96_c01091{left:497.018287pt;}
.x75_c01091{left:499.142559pt;}
.x1f_c01091{left:500.054667pt;}
.x14_c01091{left:502.237333pt;}
.xa2_c01091{left:503.256167pt;}
.xb3_c01091{left:504.150667pt;}
.x50_c01091{left:505.073333pt;}
.xc3_c01091{left:507.538425pt;}
.x97_c01091{left:508.494672pt;}
.xc9_c01091{left:510.886667pt;}
.x82_c01091{left:516.422639pt;}
.x3b_c01091{left:518.425475pt;}
.x93_c01091{left:519.819197pt;}
.x89_c01091{left:524.634773pt;}
.xcb_c01091{left:630.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_c01092 {
    display:none;
  }
  .loading-indicator_c01092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01092 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01092 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01092" -> "#page-container .classname_c01092")
 */
.pf_c01092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01092 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01092 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01092 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01092 {overflow:visible;}
  }
}
.c_c01092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01092 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01092:after { /* webkit #35443 */
  content: '';
}
.t_c01092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01092 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01092 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01092 { /* info for Javascript */
  display:none;
}
.l_c01092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_4ab86c84425994a9e06b01c2.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.000000;font-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_c01092{transform:matrix(0.011921,-0.000322,0.006748,0.249909,0,0);-ms-transform:matrix(0.011921,-0.000322,0.006748,0.249909,0,0);-webkit-transform:matrix(0.011921,-0.000322,0.006748,0.249909,0,0);}
.mc6_c01092{transform:matrix(0.030939,-0.000619,0.004999,0.249950,0,0);-ms-transform:matrix(0.030939,-0.000619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.030939,-0.000619,0.004999,0.249950,0,0);}
.m9b_c01092{transform:matrix(0.073350,-0.001467,0.004999,0.249950,0,0);-ms-transform:matrix(0.073350,-0.001467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.073350,-0.001467,0.004999,0.249950,0,0);}
.m10_c01092{transform:matrix(0.091377,-0.002467,0.006748,0.249909,0,0);-ms-transform:matrix(0.091377,-0.002467,0.006748,0.249909,0,0);-webkit-transform:matrix(0.091377,-0.002467,0.006748,0.249909,0,0);}
.mce_c01092{transform:matrix(0.093676,-0.001874,0.004999,0.249950,0,0);-ms-transform:matrix(0.093676,-0.001874,0.004999,0.249950,0,0);-webkit-transform:matrix(0.093676,-0.001874,0.004999,0.249950,0,0);}
.mbc_c01092{transform:matrix(0.097336,-0.002141,0.005499,0.249940,0,0);-ms-transform:matrix(0.097336,-0.002141,0.005499,0.249940,0,0);-webkit-transform:matrix(0.097336,-0.002141,0.005499,0.249940,0,0);}
.m4e_c01092{transform:matrix(0.099817,-0.001597,0.003999,0.249968,0,0);-ms-transform:matrix(0.099817,-0.001597,0.003999,0.249968,0,0);-webkit-transform:matrix(0.099817,-0.001597,0.003999,0.249968,0,0);}
.m84_c01092{transform:matrix(0.105734,-0.002115,0.004999,0.249950,0,0);-ms-transform:matrix(0.105734,-0.002115,0.004999,0.249950,0,0);-webkit-transform:matrix(0.105734,-0.002115,0.004999,0.249950,0,0);}
.m19_c01092{transform:matrix(0.130464,-0.003262,0.006248,0.249922,0,0);-ms-transform:matrix(0.130464,-0.003262,0.006248,0.249922,0,0);-webkit-transform:matrix(0.130464,-0.003262,0.006248,0.249922,0,0);}
.mf0_c01092{transform:matrix(0.135998,-0.002720,0.004999,0.249950,0,0);-ms-transform:matrix(0.135998,-0.002720,0.004999,0.249950,0,0);-webkit-transform:matrix(0.135998,-0.002720,0.004999,0.249950,0,0);}
.mf5_c01092{transform:matrix(0.137128,-0.002743,0.004999,0.249950,0,0);-ms-transform:matrix(0.137128,-0.002743,0.004999,0.249950,0,0);-webkit-transform:matrix(0.137128,-0.002743,0.004999,0.249950,0,0);}
.m4b_c01092{transform:matrix(0.139982,-0.002240,0.003999,0.249968,0,0);-ms-transform:matrix(0.139982,-0.002240,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139982,-0.002240,0.003999,0.249968,0,0);}
.md_c01092{transform:matrix(0.140914,-0.003805,0.006748,0.249909,0,0);-ms-transform:matrix(0.140914,-0.003805,0.006748,0.249909,0,0);-webkit-transform:matrix(0.140914,-0.003805,0.006748,0.249909,0,0);}
.mab_c01092{transform:matrix(0.141912,-0.002838,0.004999,0.249950,0,0);-ms-transform:matrix(0.141912,-0.002838,0.004999,0.249950,0,0);-webkit-transform:matrix(0.141912,-0.002838,0.004999,0.249950,0,0);}
.m44_c01092{transform:matrix(0.143307,-0.002293,0.003999,0.249968,0,0);-ms-transform:matrix(0.143307,-0.002293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143307,-0.002293,0.003999,0.249968,0,0);}
.m36_c01092{transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);-ms-transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145419,-0.002181,0.003750,0.249972,0,0);}
.meb_c01092{transform:matrix(0.145806,-0.002916,0.004999,0.249950,0,0);-ms-transform:matrix(0.145806,-0.002916,0.004999,0.249950,0,0);-webkit-transform:matrix(0.145806,-0.002916,0.004999,0.249950,0,0);}
.me9_c01092{transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);-ms-transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.146111,-0.002922,0.004999,0.249950,0,0);}
.m9f_c01092{transform:matrix(0.148925,-0.002979,0.004999,0.249950,0,0);-ms-transform:matrix(0.148925,-0.002979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.148925,-0.002979,0.004999,0.249950,0,0);}
.mcb_c01092{transform:matrix(0.149270,-0.002985,0.004999,0.249950,0,0);-ms-transform:matrix(0.149270,-0.002985,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149270,-0.002985,0.004999,0.249950,0,0);}
.m1f_c01092{transform:matrix(0.149578,-0.003739,0.006248,0.249922,0,0);-ms-transform:matrix(0.149578,-0.003739,0.006248,0.249922,0,0);-webkit-transform:matrix(0.149578,-0.003739,0.006248,0.249922,0,0);}
.mb6_c01092{transform:matrix(0.149625,-0.002993,0.004999,0.249950,0,0);-ms-transform:matrix(0.149625,-0.002993,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149625,-0.002993,0.004999,0.249950,0,0);}
.ma4_c01092{transform:matrix(0.150800,-0.003016,0.004999,0.249950,0,0);-ms-transform:matrix(0.150800,-0.003016,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150800,-0.003016,0.004999,0.249950,0,0);}
.mf7_c01092{transform:matrix(0.150875,-0.003017,0.004999,0.249950,0,0);-ms-transform:matrix(0.150875,-0.003017,0.004999,0.249950,0,0);-webkit-transform:matrix(0.150875,-0.003017,0.004999,0.249950,0,0);}
.m45_c01092{transform:matrix(0.151651,-0.002426,0.003999,0.249968,0,0);-ms-transform:matrix(0.151651,-0.002426,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151651,-0.002426,0.003999,0.249968,0,0);}
.m2e_c01092{transform:matrix(0.153123,-0.002297,0.003750,0.249972,0,0);-ms-transform:matrix(0.153123,-0.002297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153123,-0.002297,0.003750,0.249972,0,0);}
.m20_c01092{transform:matrix(0.154007,-0.003850,0.006248,0.249922,0,0);-ms-transform:matrix(0.154007,-0.003850,0.006248,0.249922,0,0);-webkit-transform:matrix(0.154007,-0.003850,0.006248,0.249922,0,0);}
.m5a_c01092{transform:matrix(0.154696,-0.003249,0.005249,0.249945,0,0);-ms-transform:matrix(0.154696,-0.003249,0.005249,0.249945,0,0);-webkit-transform:matrix(0.154696,-0.003249,0.005249,0.249945,0,0);}
.m1c_c01092{transform:matrix(0.155351,-0.003884,0.006248,0.249922,0,0);-ms-transform:matrix(0.155351,-0.003884,0.006248,0.249922,0,0);-webkit-transform:matrix(0.155351,-0.003884,0.006248,0.249922,0,0);}
.mfe_c01092{transform:matrix(0.155389,-0.003108,0.004999,0.249950,0,0);-ms-transform:matrix(0.155389,-0.003108,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155389,-0.003108,0.004999,0.249950,0,0);}
.m77_c01092{transform:matrix(0.155974,-0.003119,0.004999,0.249950,0,0);-ms-transform:matrix(0.155974,-0.003119,0.004999,0.249950,0,0);-webkit-transform:matrix(0.155974,-0.003119,0.004999,0.249950,0,0);}
.mfa_c01092{transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);-ms-transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157004,-0.003140,0.004999,0.249950,0,0);}
.m47_c01092{transform:matrix(0.157135,-0.002514,0.003999,0.249968,0,0);-ms-transform:matrix(0.157135,-0.002514,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157135,-0.002514,0.003999,0.249968,0,0);}
.maf_c01092{transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);-ms-transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.157204,-0.003144,0.004999,0.249950,0,0);}
.m26_c01092{transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);-ms-transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157227,-0.002358,0.003750,0.249972,0,0);}
.m24_c01092{transform:matrix(0.157492,-0.002362,0.003750,0.249972,0,0);-ms-transform:matrix(0.157492,-0.002362,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157492,-0.002362,0.003750,0.249972,0,0);}
.m61_c01092{transform:matrix(0.158390,-0.003326,0.005249,0.249945,0,0);-ms-transform:matrix(0.158390,-0.003326,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158390,-0.003326,0.005249,0.249945,0,0);}
.mdb_c01092{transform:matrix(0.159173,-0.003183,0.004999,0.249950,0,0);-ms-transform:matrix(0.159173,-0.003183,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159173,-0.003183,0.004999,0.249950,0,0);}
.m62_c01092{transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);-ms-transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);}
.m5c_c01092{transform:matrix(0.160035,-0.003361,0.005249,0.249945,0,0);-ms-transform:matrix(0.160035,-0.003361,0.005249,0.249945,0,0);-webkit-transform:matrix(0.160035,-0.003361,0.005249,0.249945,0,0);}
.m2f_c01092{transform:matrix(0.160267,-0.002404,0.003750,0.249972,0,0);-ms-transform:matrix(0.160267,-0.002404,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160267,-0.002404,0.003750,0.249972,0,0);}
.m41_c01092{transform:matrix(0.160537,-0.002408,0.003750,0.249972,0,0);-ms-transform:matrix(0.160537,-0.002408,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160537,-0.002408,0.003750,0.249972,0,0);}
.m3d_c01092{transform:matrix(0.160752,-0.002411,0.003750,0.249972,0,0);-ms-transform:matrix(0.160752,-0.002411,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160752,-0.002411,0.003750,0.249972,0,0);}
.m55_c01092{transform:matrix(0.161019,-0.003381,0.005249,0.249945,0,0);-ms-transform:matrix(0.161019,-0.003381,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161019,-0.003381,0.005249,0.249945,0,0);}
.m75_c01092{transform:matrix(0.161828,-0.003237,0.004999,0.249950,0,0);-ms-transform:matrix(0.161828,-0.003237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161828,-0.003237,0.004999,0.249950,0,0);}
.m7c_c01092{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_c01092{transform:matrix(0.162914,-0.003421,0.005249,0.249945,0,0);-ms-transform:matrix(0.162914,-0.003421,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162914,-0.003421,0.005249,0.249945,0,0);}
.md2_c01092{transform:matrix(0.162997,-0.003260,0.004999,0.249950,0,0);-ms-transform:matrix(0.162997,-0.003260,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162997,-0.003260,0.004999,0.249950,0,0);}
.m60_c01092{transform:matrix(0.163229,-0.003428,0.005249,0.249945,0,0);-ms-transform:matrix(0.163229,-0.003428,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163229,-0.003428,0.005249,0.249945,0,0);}
.mb9_c01092{transform:matrix(0.163241,-0.003591,0.005499,0.249940,0,0);-ms-transform:matrix(0.163241,-0.003591,0.005499,0.249940,0,0);-webkit-transform:matrix(0.163241,-0.003591,0.005499,0.249940,0,0);}
.m63_c01092{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);}
.mc3_c01092{transform:matrix(0.164865,-0.003627,0.005499,0.249940,0,0);-ms-transform:matrix(0.164865,-0.003627,0.005499,0.249940,0,0);-webkit-transform:matrix(0.164865,-0.003627,0.005499,0.249940,0,0);}
.m6f_c01092{transform:matrix(0.165147,-0.003303,0.004999,0.249950,0,0);-ms-transform:matrix(0.165147,-0.003303,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165147,-0.003303,0.004999,0.249950,0,0);}
.m7e_c01092{transform:matrix(0.165527,-0.003311,0.004999,0.249950,0,0);-ms-transform:matrix(0.165527,-0.003311,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165527,-0.003311,0.004999,0.249950,0,0);}
.m10b_c01092{transform:matrix(0.165687,-0.003314,0.004999,0.249950,0,0);-ms-transform:matrix(0.165687,-0.003314,0.004999,0.249950,0,0);-webkit-transform:matrix(0.165687,-0.003314,0.004999,0.249950,0,0);}
.m3_c01092{transform:matrix(0.165725,-0.004475,0.006748,0.249909,0,0);-ms-transform:matrix(0.165725,-0.004475,0.006748,0.249909,0,0);-webkit-transform:matrix(0.165725,-0.004475,0.006748,0.249909,0,0);}
.mad_c01092{transform:matrix(0.166222,-0.003324,0.004999,0.249950,0,0);-ms-transform:matrix(0.166222,-0.003324,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166222,-0.003324,0.004999,0.249950,0,0);}
.mcd_c01092{transform:matrix(0.166972,-0.003339,0.004999,0.249950,0,0);-ms-transform:matrix(0.166972,-0.003339,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166972,-0.003339,0.004999,0.249950,0,0);}
.m28_c01092{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);}
.m21_c01092{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);}
.m4f_c01092{transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);-ms-transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);-webkit-transform:matrix(0.168018,-0.003528,0.005249,0.249945,0,0);}
.m9e_c01092{transform:matrix(0.168236,-0.003365,0.004999,0.249950,0,0);-ms-transform:matrix(0.168236,-0.003365,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168236,-0.003365,0.004999,0.249950,0,0);}
.mee_c01092{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);}
.m2b_c01092{transform:matrix(0.168296,-0.002524,0.003750,0.249972,0,0);-ms-transform:matrix(0.168296,-0.002524,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168296,-0.002524,0.003750,0.249972,0,0);}
.mf4_c01092{transform:matrix(0.168506,-0.003370,0.004999,0.249950,0,0);-ms-transform:matrix(0.168506,-0.003370,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168506,-0.003370,0.004999,0.249950,0,0);}
.m73_c01092{transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);-ms-transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);}
.mc1_c01092{transform:matrix(0.169359,-0.003726,0.005499,0.249940,0,0);-ms-transform:matrix(0.169359,-0.003726,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169359,-0.003726,0.005499,0.249940,0,0);}
.ma3_c01092{transform:matrix(0.169881,-0.003398,0.004999,0.249950,0,0);-ms-transform:matrix(0.169881,-0.003398,0.004999,0.249950,0,0);-webkit-transform:matrix(0.169881,-0.003398,0.004999,0.249950,0,0);}
.m15_c01092{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);}
.m71_c01092{transform:matrix(0.170046,-0.003401,0.004999,0.249950,0,0);-ms-transform:matrix(0.170046,-0.003401,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170046,-0.003401,0.004999,0.249950,0,0);}
.m108_c01092{transform:matrix(0.170061,-0.003401,0.004999,0.249950,0,0);-ms-transform:matrix(0.170061,-0.003401,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170061,-0.003401,0.004999,0.249950,0,0);}
.me6_c01092{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);}
.m116_c01092{transform:matrix(0.170438,-0.005284,0.007746,0.249880,0,0);-ms-transform:matrix(0.170438,-0.005284,0.007746,0.249880,0,0);-webkit-transform:matrix(0.170438,-0.005284,0.007746,0.249880,0,0);}
.m1d_c01092{transform:matrix(0.170962,-0.004274,0.006248,0.249922,0,0);-ms-transform:matrix(0.170962,-0.004274,0.006248,0.249922,0,0);-webkit-transform:matrix(0.170962,-0.004274,0.006248,0.249922,0,0);}
.mef_c01092{transform:matrix(0.171071,-0.003421,0.004999,0.249950,0,0);-ms-transform:matrix(0.171071,-0.003421,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171071,-0.003421,0.004999,0.249950,0,0);}
.m4a_c01092{transform:matrix(0.171088,-0.002737,0.003999,0.249968,0,0);-ms-transform:matrix(0.171088,-0.002737,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171088,-0.002737,0.003999,0.249968,0,0);}
.mca_c01092{transform:matrix(0.171156,-0.003423,0.004999,0.249950,0,0);-ms-transform:matrix(0.171156,-0.003423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171156,-0.003423,0.004999,0.249950,0,0);}
.m97_c01092{transform:matrix(0.172266,-0.003445,0.004999,0.249950,0,0);-ms-transform:matrix(0.172266,-0.003445,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172266,-0.003445,0.004999,0.249950,0,0);}
.m88_c01092{transform:matrix(0.172311,-0.003446,0.004999,0.249950,0,0);-ms-transform:matrix(0.172311,-0.003446,0.004999,0.249950,0,0);-webkit-transform:matrix(0.172311,-0.003446,0.004999,0.249950,0,0);}
.m3b_c01092{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);}
.m1b_c01092{transform:matrix(0.172791,-0.004320,0.006248,0.249922,0,0);-ms-transform:matrix(0.172791,-0.004320,0.006248,0.249922,0,0);-webkit-transform:matrix(0.172791,-0.004320,0.006248,0.249922,0,0);}
.m25_c01092{transform:matrix(0.172881,-0.002593,0.003750,0.249972,0,0);-ms-transform:matrix(0.172881,-0.002593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172881,-0.002593,0.003750,0.249972,0,0);}
.mc8_c01092{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);}
.m6_c01092{transform:matrix(0.173797,-0.004693,0.006748,0.249909,0,0);-ms-transform:matrix(0.173797,-0.004693,0.006748,0.249909,0,0);-webkit-transform:matrix(0.173797,-0.004693,0.006748,0.249909,0,0);}
.me1_c01092{transform:matrix(0.173850,-0.003477,0.004999,0.249950,0,0);-ms-transform:matrix(0.173850,-0.003477,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173850,-0.003477,0.004999,0.249950,0,0);}
.m50_c01092{transform:matrix(0.173997,-0.003654,0.005249,0.249945,0,0);-ms-transform:matrix(0.173997,-0.003654,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173997,-0.003654,0.005249,0.249945,0,0);}
.m72_c01092{transform:matrix(0.174315,-0.003486,0.004999,0.249950,0,0);-ms-transform:matrix(0.174315,-0.003486,0.004999,0.249950,0,0);-webkit-transform:matrix(0.174315,-0.003486,0.004999,0.249950,0,0);}
.m2a_c01092{transform:matrix(0.174565,-0.002618,0.003750,0.249972,0,0);-ms-transform:matrix(0.174565,-0.002618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.174565,-0.002618,0.003750,0.249972,0,0);}
.md6_c01092{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);}
.me_c01092{transform:matrix(0.175371,-0.004735,0.006748,0.249909,0,0);-ms-transform:matrix(0.175371,-0.004735,0.006748,0.249909,0,0);-webkit-transform:matrix(0.175371,-0.004735,0.006748,0.249909,0,0);}
.m74_c01092{transform:matrix(0.175545,-0.003511,0.004999,0.249950,0,0);-ms-transform:matrix(0.175545,-0.003511,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175545,-0.003511,0.004999,0.249950,0,0);}
.me8_c01092{transform:matrix(0.175715,-0.003514,0.004999,0.249950,0,0);-ms-transform:matrix(0.175715,-0.003514,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175715,-0.003514,0.004999,0.249950,0,0);}
.m5b_c01092{transform:matrix(0.175921,-0.003694,0.005249,0.249945,0,0);-ms-transform:matrix(0.175921,-0.003694,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175921,-0.003694,0.005249,0.249945,0,0);}
.m85_c01092{transform:matrix(0.176220,-0.003524,0.004999,0.249950,0,0);-ms-transform:matrix(0.176220,-0.003524,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176220,-0.003524,0.004999,0.249950,0,0);}
.m1e_c01092{transform:matrix(0.176550,-0.004414,0.006248,0.249922,0,0);-ms-transform:matrix(0.176550,-0.004414,0.006248,0.249922,0,0);-webkit-transform:matrix(0.176550,-0.004414,0.006248,0.249922,0,0);}
.md5_c01092{transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176630,-0.003533,0.004999,0.249950,0,0);}
.me0_c01092{transform:matrix(0.176740,-0.003535,0.004999,0.249950,0,0);-ms-transform:matrix(0.176740,-0.003535,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176740,-0.003535,0.004999,0.249950,0,0);}
.m66_c01092{transform:matrix(0.178046,-0.003739,0.005249,0.249945,0,0);-ms-transform:matrix(0.178046,-0.003739,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178046,-0.003739,0.005249,0.249945,0,0);}
.m6b_c01092{transform:matrix(0.178099,-0.003562,0.004999,0.249950,0,0);-ms-transform:matrix(0.178099,-0.003562,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178099,-0.003562,0.004999,0.249950,0,0);}
.m56_c01092{transform:matrix(0.178146,-0.003741,0.005249,0.249945,0,0);-ms-transform:matrix(0.178146,-0.003741,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178146,-0.003741,0.005249,0.249945,0,0);}
.m35_c01092{transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);-ms-transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178240,-0.002674,0.003750,0.249972,0,0);}
.m107_c01092{transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);-ms-transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178279,-0.003566,0.004999,0.249950,0,0);}
.m5e_c01092{transform:matrix(0.178391,-0.003746,0.005249,0.249945,0,0);-ms-transform:matrix(0.178391,-0.003746,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178391,-0.003746,0.005249,0.249945,0,0);}
.m76_c01092{transform:matrix(0.178439,-0.003569,0.004999,0.249950,0,0);-ms-transform:matrix(0.178439,-0.003569,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178439,-0.003569,0.004999,0.249950,0,0);}
.med_c01092{transform:matrix(0.178739,-0.003575,0.004999,0.249950,0,0);-ms-transform:matrix(0.178739,-0.003575,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178739,-0.003575,0.004999,0.249950,0,0);}
.m109_c01092{transform:matrix(0.178784,-0.003576,0.004999,0.249950,0,0);-ms-transform:matrix(0.178784,-0.003576,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178784,-0.003576,0.004999,0.249950,0,0);}
.mcc_c01092{transform:matrix(0.178994,-0.003580,0.004999,0.249950,0,0);-ms-transform:matrix(0.178994,-0.003580,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178994,-0.003580,0.004999,0.249950,0,0);}
.mf2_c01092{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);}
.m78_c01092{transform:matrix(0.179804,-0.003596,0.004999,0.249950,0,0);-ms-transform:matrix(0.179804,-0.003596,0.004999,0.249950,0,0);-webkit-transform:matrix(0.179804,-0.003596,0.004999,0.249950,0,0);}
.m90_c01092{transform:matrix(0.180144,-0.003603,0.004999,0.249950,0,0);-ms-transform:matrix(0.180144,-0.003603,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180144,-0.003603,0.004999,0.249950,0,0);}
.m68_c01092{transform:matrix(0.180180,-0.003784,0.005249,0.249945,0,0);-ms-transform:matrix(0.180180,-0.003784,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180180,-0.003784,0.005249,0.249945,0,0);}
.m10a_c01092{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);}
.m14_c01092{transform:matrix(0.180284,-0.004507,0.006248,0.249922,0,0);-ms-transform:matrix(0.180284,-0.004507,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180284,-0.004507,0.006248,0.249922,0,0);}
.m37_c01092{transform:matrix(0.180345,-0.002705,0.003750,0.249972,0,0);-ms-transform:matrix(0.180345,-0.002705,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180345,-0.002705,0.003750,0.249972,0,0);}
.ma0_c01092{transform:matrix(0.181034,-0.003621,0.004999,0.249950,0,0);-ms-transform:matrix(0.181034,-0.003621,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181034,-0.003621,0.004999,0.249950,0,0);}
.m70_c01092{transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);-ms-transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181444,-0.003629,0.004999,0.249950,0,0);}
.mf9_c01092{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);}
.m65_c01092{transform:matrix(0.182680,-0.003836,0.005249,0.249945,0,0);-ms-transform:matrix(0.182680,-0.003836,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182680,-0.003836,0.005249,0.249945,0,0);}
.m30_c01092{transform:matrix(0.182814,-0.002742,0.003750,0.249972,0,0);-ms-transform:matrix(0.182814,-0.002742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182814,-0.002742,0.003750,0.249972,0,0);}
.m118_c01092{transform:matrix(0.183262,-0.009906,0.013494,0.249636,0,0);-ms-transform:matrix(0.183262,-0.009906,0.013494,0.249636,0,0);-webkit-transform:matrix(0.183262,-0.009906,0.013494,0.249636,0,0);}
.me5_c01092{transform:matrix(0.183338,-0.003667,0.004999,0.249950,0,0);-ms-transform:matrix(0.183338,-0.003667,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183338,-0.003667,0.004999,0.249950,0,0);}
.mb0_c01092{transform:matrix(0.183388,-0.003668,0.004999,0.249950,0,0);-ms-transform:matrix(0.183388,-0.003668,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183388,-0.003668,0.004999,0.249950,0,0);}
.m93_c01092{transform:matrix(0.183723,-0.003674,0.004999,0.249950,0,0);-ms-transform:matrix(0.183723,-0.003674,0.004999,0.249950,0,0);-webkit-transform:matrix(0.183723,-0.003674,0.004999,0.249950,0,0);}
.md8_c01092{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);}
.mf1_c01092{transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);-ms-transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184078,-0.003682,0.004999,0.249950,0,0);}
.me3_c01092{transform:matrix(0.184343,-0.003687,0.004999,0.249950,0,0);-ms-transform:matrix(0.184343,-0.003687,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184343,-0.003687,0.004999,0.249950,0,0);}
.m8_c01092{transform:matrix(0.184623,-0.004985,0.006748,0.249909,0,0);-ms-transform:matrix(0.184623,-0.004985,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184623,-0.004985,0.006748,0.249909,0,0);}
.m54_c01092{transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);-ms-transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);-webkit-transform:matrix(0.184739,-0.003880,0.005249,0.249945,0,0);}
.mdf_c01092{transform:matrix(0.184833,-0.003697,0.004999,0.249950,0,0);-ms-transform:matrix(0.184833,-0.003697,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184833,-0.003697,0.004999,0.249950,0,0);}
.mf_c01092{transform:matrix(0.184838,-0.004991,0.006748,0.249909,0,0);-ms-transform:matrix(0.184838,-0.004991,0.006748,0.249909,0,0);-webkit-transform:matrix(0.184838,-0.004991,0.006748,0.249909,0,0);}
.ma6_c01092{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);}
.m17_c01092{transform:matrix(0.185097,-0.004627,0.006248,0.249922,0,0);-ms-transform:matrix(0.185097,-0.004627,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185097,-0.004627,0.006248,0.249922,0,0);}
.m52_c01092{transform:matrix(0.185544,-0.003896,0.005249,0.249945,0,0);-ms-transform:matrix(0.185544,-0.003896,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185544,-0.003896,0.005249,0.249945,0,0);}
.m57_c01092{transform:matrix(0.185604,-0.003898,0.005249,0.249945,0,0);-ms-transform:matrix(0.185604,-0.003898,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185604,-0.003898,0.005249,0.249945,0,0);}
.m106_c01092{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);}
.m98_c01092{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);}
.m18_c01092{transform:matrix(0.186052,-0.004651,0.006248,0.249922,0,0);-ms-transform:matrix(0.186052,-0.004651,0.006248,0.249922,0,0);-webkit-transform:matrix(0.186052,-0.004651,0.006248,0.249922,0,0);}
.m4c_c01092{transform:matrix(0.186086,-0.002977,0.003999,0.249968,0,0);-ms-transform:matrix(0.186086,-0.002977,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186086,-0.002977,0.003999,0.249968,0,0);}
.ma2_c01092{transform:matrix(0.186233,-0.003725,0.004999,0.249950,0,0);-ms-transform:matrix(0.186233,-0.003725,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186233,-0.003725,0.004999,0.249950,0,0);}
.m49_c01092{transform:matrix(0.186691,-0.002987,0.003999,0.249968,0,0);-ms-transform:matrix(0.186691,-0.002987,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186691,-0.002987,0.003999,0.249968,0,0);}
.mb4_c01092{transform:matrix(0.186878,-0.003738,0.004999,0.249950,0,0);-ms-transform:matrix(0.186878,-0.003738,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186878,-0.003738,0.004999,0.249950,0,0);}
.m10f_c01092{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);}
.m7d_c01092{transform:matrix(0.187273,-0.003745,0.004999,0.249950,0,0);-ms-transform:matrix(0.187273,-0.003745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187273,-0.003745,0.004999,0.249950,0,0);}
.m10c_c01092{transform:matrix(0.187423,-0.003748,0.004999,0.249950,0,0);-ms-transform:matrix(0.187423,-0.003748,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187423,-0.003748,0.004999,0.249950,0,0);}
.m43_c01092{transform:matrix(0.187751,-0.003004,0.003999,0.249968,0,0);-ms-transform:matrix(0.187751,-0.003004,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187751,-0.003004,0.003999,0.249968,0,0);}
.m33_c01092{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);}
.md4_c01092{transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);-ms-transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188017,-0.003760,0.004999,0.249950,0,0);}
.m102_c01092{transform:matrix(0.189347,-0.003787,0.004999,0.249950,0,0);-ms-transform:matrix(0.189347,-0.003787,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189347,-0.003787,0.004999,0.249950,0,0);}
.m5f_c01092{transform:matrix(0.189478,-0.003979,0.005249,0.249945,0,0);-ms-transform:matrix(0.189478,-0.003979,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189478,-0.003979,0.005249,0.249945,0,0);}
.md3_c01092{transform:matrix(0.189492,-0.003790,0.004999,0.249950,0,0);-ms-transform:matrix(0.189492,-0.003790,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189492,-0.003790,0.004999,0.249950,0,0);}
.m8b_c01092{transform:matrix(0.189742,-0.003795,0.004999,0.249950,0,0);-ms-transform:matrix(0.189742,-0.003795,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189742,-0.003795,0.004999,0.249950,0,0);}
.md9_c01092{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);}
.m22_c01092{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);}
.mc5_c01092{transform:matrix(0.190284,-0.004186,0.005499,0.249940,0,0);-ms-transform:matrix(0.190284,-0.004186,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190284,-0.004186,0.005499,0.249940,0,0);}
.m69_c01092{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);}
.m117_c01092{transform:matrix(0.190938,-0.005919,0.007746,0.249880,0,0);-ms-transform:matrix(0.190938,-0.005919,0.007746,0.249880,0,0);-webkit-transform:matrix(0.190938,-0.005919,0.007746,0.249880,0,0);}
.mb8_c01092{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);}
.m23_c01092{transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);-ms-transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191198,-0.002868,0.003750,0.249972,0,0);}
.m29_c01092{transform:matrix(0.191218,-0.002868,0.003750,0.249972,0,0);-ms-transform:matrix(0.191218,-0.002868,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191218,-0.002868,0.003750,0.249972,0,0);}
.m64_c01092{transform:matrix(0.191268,-0.004017,0.005249,0.249945,0,0);-ms-transform:matrix(0.191268,-0.004017,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191268,-0.004017,0.005249,0.249945,0,0);}
.me4_c01092{transform:matrix(0.191307,-0.003826,0.004999,0.249950,0,0);-ms-transform:matrix(0.191307,-0.003826,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191307,-0.003826,0.004999,0.249950,0,0);}
.m5d_c01092{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);}
.m38_c01092{transform:matrix(0.191418,-0.002871,0.003750,0.249972,0,0);-ms-transform:matrix(0.191418,-0.002871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191418,-0.002871,0.003750,0.249972,0,0);}
.m6d_c01092{transform:matrix(0.191437,-0.003829,0.004999,0.249950,0,0);-ms-transform:matrix(0.191437,-0.003829,0.004999,0.249950,0,0);-webkit-transform:matrix(0.191437,-0.003829,0.004999,0.249950,0,0);}
.m2c_c01092{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);}
.m4_c01092{transform:matrix(0.192025,-0.005185,0.006748,0.249909,0,0);-ms-transform:matrix(0.192025,-0.005185,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192025,-0.005185,0.006748,0.249909,0,0);}
.ma8_c01092{transform:matrix(0.192322,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192322,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192322,-0.003846,0.004999,0.249950,0,0);}
.m40_c01092{transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);-ms-transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192503,-0.002888,0.003750,0.249972,0,0);}
.m2_c01092{transform:matrix(0.192880,-0.005208,0.006748,0.249909,0,0);-ms-transform:matrix(0.192880,-0.005208,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192880,-0.005208,0.006748,0.249909,0,0);}
.mdd_c01092{transform:matrix(0.192946,-0.003859,0.004999,0.249950,0,0);-ms-transform:matrix(0.192946,-0.003859,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192946,-0.003859,0.004999,0.249950,0,0);}
.mba_c01092{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);}
.mc4_c01092{transform:matrix(0.193353,-0.004254,0.005499,0.249940,0,0);-ms-transform:matrix(0.193353,-0.004254,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193353,-0.004254,0.005499,0.249940,0,0);}
.m3c_c01092{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);}
.mbb_c01092{transform:matrix(0.193443,-0.004256,0.005499,0.249940,0,0);-ms-transform:matrix(0.193443,-0.004256,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193443,-0.004256,0.005499,0.249940,0,0);}
.mdc_c01092{transform:matrix(0.193671,-0.003873,0.004999,0.249950,0,0);-ms-transform:matrix(0.193671,-0.003873,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193671,-0.003873,0.004999,0.249950,0,0);}
.m7b_c01092{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);}
.mb5_c01092{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);}
.mac_c01092{transform:matrix(0.193981,-0.003880,0.004999,0.249950,0,0);-ms-transform:matrix(0.193981,-0.003880,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193981,-0.003880,0.004999,0.249950,0,0);}
.md1_c01092{transform:matrix(0.194071,-0.003881,0.004999,0.249950,0,0);-ms-transform:matrix(0.194071,-0.003881,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194071,-0.003881,0.004999,0.249950,0,0);}
.m3a_c01092{transform:matrix(0.194248,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194248,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194248,-0.002914,0.003750,0.249972,0,0);}
.m67_c01092{transform:matrix(0.194302,-0.004080,0.005249,0.249945,0,0);-ms-transform:matrix(0.194302,-0.004080,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194302,-0.004080,0.005249,0.249945,0,0);}
.m1_c01092{transform:matrix(0.194594,-0.005254,0.006748,0.249909,0,0);-ms-transform:matrix(0.194594,-0.005254,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194594,-0.005254,0.006748,0.249909,0,0);}
.m79_c01092{transform:matrix(0.194671,-0.003893,0.004999,0.249950,0,0);-ms-transform:matrix(0.194671,-0.003893,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194671,-0.003893,0.004999,0.249950,0,0);}
.ma7_c01092{transform:matrix(0.194846,-0.003897,0.004999,0.249950,0,0);-ms-transform:matrix(0.194846,-0.003897,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194846,-0.003897,0.004999,0.249950,0,0);}
.mff_c01092{transform:matrix(0.195546,-0.003911,0.004999,0.249950,0,0);-ms-transform:matrix(0.195546,-0.003911,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195546,-0.003911,0.004999,0.249950,0,0);}
.mec_c01092{transform:matrix(0.195896,-0.003918,0.004999,0.249950,0,0);-ms-transform:matrix(0.195896,-0.003918,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195896,-0.003918,0.004999,0.249950,0,0);}
.m6e_c01092{transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);-ms-transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196096,-0.003922,0.004999,0.249950,0,0);}
.me7_c01092{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);}
.m7a_c01092{transform:matrix(0.196311,-0.003926,0.004999,0.249950,0,0);-ms-transform:matrix(0.196311,-0.003926,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196311,-0.003926,0.004999,0.249950,0,0);}
.m103_c01092{transform:matrix(0.196376,-0.003928,0.004999,0.249950,0,0);-ms-transform:matrix(0.196376,-0.003928,0.004999,0.249950,0,0);-webkit-transform:matrix(0.196376,-0.003928,0.004999,0.249950,0,0);}
.m114_c01092{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);}
.mae_c01092{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);}
.m7f_c01092{transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);-ms-transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197026,-0.003941,0.004999,0.249950,0,0);}
.m9a_c01092{transform:matrix(0.197565,-0.003951,0.004999,0.249950,0,0);-ms-transform:matrix(0.197565,-0.003951,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197565,-0.003951,0.004999,0.249950,0,0);}
.mb7_c01092{transform:matrix(0.197757,-0.004351,0.005499,0.249940,0,0);-ms-transform:matrix(0.197757,-0.004351,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197757,-0.004351,0.005499,0.249940,0,0);}
.mf8_c01092{transform:matrix(0.198105,-0.003962,0.004999,0.249950,0,0);-ms-transform:matrix(0.198105,-0.003962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198105,-0.003962,0.004999,0.249950,0,0);}
.m99_c01092{transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);-ms-transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198515,-0.003970,0.004999,0.249950,0,0);}
.m115_c01092{transform:matrix(0.198545,-0.006155,0.007746,0.249880,0,0);-ms-transform:matrix(0.198545,-0.006155,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198545,-0.006155,0.007746,0.249880,0,0);}
.m13_c01092{transform:matrix(0.198863,-0.004972,0.006248,0.249922,0,0);-ms-transform:matrix(0.198863,-0.004972,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198863,-0.004972,0.006248,0.249922,0,0);}
.mc0_c01092{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);}
.m86_c01092{transform:matrix(0.198920,-0.003978,0.004999,0.249950,0,0);-ms-transform:matrix(0.198920,-0.003978,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198920,-0.003978,0.004999,0.249950,0,0);}
.m113_c01092{transform:matrix(0.198969,-0.006168,0.007746,0.249880,0,0);-ms-transform:matrix(0.198969,-0.006168,0.007746,0.249880,0,0);-webkit-transform:matrix(0.198969,-0.006168,0.007746,0.249880,0,0);}
.m53_c01092{transform:matrix(0.199166,-0.004182,0.005249,0.249945,0,0);-ms-transform:matrix(0.199166,-0.004182,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199166,-0.004182,0.005249,0.249945,0,0);}
.m92_c01092{transform:matrix(0.199310,-0.003986,0.004999,0.249950,0,0);-ms-transform:matrix(0.199310,-0.003986,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199310,-0.003986,0.004999,0.249950,0,0);}
.md7_c01092{transform:matrix(0.199680,-0.003994,0.004999,0.249950,0,0);-ms-transform:matrix(0.199680,-0.003994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199680,-0.003994,0.004999,0.249950,0,0);}
.m48_c01092{transform:matrix(0.199729,-0.003196,0.003999,0.249968,0,0);-ms-transform:matrix(0.199729,-0.003196,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199729,-0.003196,0.003999,0.249968,0,0);}
.mfd_c01092{transform:matrix(0.200015,-0.004000,0.004999,0.249950,0,0);-ms-transform:matrix(0.200015,-0.004000,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200015,-0.004000,0.004999,0.249950,0,0);}
.m42_c01092{transform:matrix(0.200327,-0.003005,0.003750,0.249972,0,0);-ms-transform:matrix(0.200327,-0.003005,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200327,-0.003005,0.003750,0.249972,0,0);}
.m105_c01092{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);}
.m100_c01092{transform:matrix(0.201280,-0.004026,0.004999,0.249950,0,0);-ms-transform:matrix(0.201280,-0.004026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201280,-0.004026,0.004999,0.249950,0,0);}
.m1a_c01092{transform:matrix(0.201587,-0.005040,0.006248,0.249922,0,0);-ms-transform:matrix(0.201587,-0.005040,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201587,-0.005040,0.006248,0.249922,0,0);}
.mfb_c01092{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);}
.mde_c01092{transform:matrix(0.202195,-0.004044,0.004999,0.249950,0,0);-ms-transform:matrix(0.202195,-0.004044,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202195,-0.004044,0.004999,0.249950,0,0);}
.m27_c01092{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);}
.m9c_c01092{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);}
.mc2_c01092{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);}
.m3e_c01092{transform:matrix(0.204502,-0.003068,0.003750,0.249972,0,0);-ms-transform:matrix(0.204502,-0.003068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204502,-0.003068,0.003750,0.249972,0,0);}
.mf3_c01092{transform:matrix(0.204699,-0.004094,0.004999,0.249950,0,0);-ms-transform:matrix(0.204699,-0.004094,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204699,-0.004094,0.004999,0.249950,0,0);}
.mea_c01092{transform:matrix(0.204949,-0.004099,0.004999,0.249950,0,0);-ms-transform:matrix(0.204949,-0.004099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204949,-0.004099,0.004999,0.249950,0,0);}
.m8a_c01092{transform:matrix(0.205009,-0.004100,0.004999,0.249950,0,0);-ms-transform:matrix(0.205009,-0.004100,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205009,-0.004100,0.004999,0.249950,0,0);}
.mc9_c01092{transform:matrix(0.205239,-0.004105,0.004999,0.249950,0,0);-ms-transform:matrix(0.205239,-0.004105,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205239,-0.004105,0.004999,0.249950,0,0);}
.m112_c01092{transform:matrix(0.205456,-0.006369,0.007746,0.249880,0,0);-ms-transform:matrix(0.205456,-0.006369,0.007746,0.249880,0,0);-webkit-transform:matrix(0.205456,-0.006369,0.007746,0.249880,0,0);}
.ma9_c01092{transform:matrix(0.205864,-0.004117,0.004999,0.249950,0,0);-ms-transform:matrix(0.205864,-0.004117,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205864,-0.004117,0.004999,0.249950,0,0);}
.m59_c01092{transform:matrix(0.206210,-0.004330,0.005249,0.249945,0,0);-ms-transform:matrix(0.206210,-0.004330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206210,-0.004330,0.005249,0.249945,0,0);}
.me2_c01092{transform:matrix(0.206769,-0.004135,0.004999,0.249950,0,0);-ms-transform:matrix(0.206769,-0.004135,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206769,-0.004135,0.004999,0.249950,0,0);}
.m16_c01092{transform:matrix(0.206845,-0.005171,0.006248,0.249922,0,0);-ms-transform:matrix(0.206845,-0.005171,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206845,-0.005171,0.006248,0.249922,0,0);}
.m6c_c01092{transform:matrix(0.207159,-0.004143,0.004999,0.249950,0,0);-ms-transform:matrix(0.207159,-0.004143,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207159,-0.004143,0.004999,0.249950,0,0);}
.m10d_c01092{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);}
.mbf_c01092{transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);-ms-transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208250,-0.004581,0.005499,0.249940,0,0);}
.m82_c01092{transform:matrix(0.208378,-0.004168,0.004999,0.249950,0,0);-ms-transform:matrix(0.208378,-0.004168,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208378,-0.004168,0.004999,0.249950,0,0);}
.m39_c01092{transform:matrix(0.209031,-0.003135,0.003750,0.249972,0,0);-ms-transform:matrix(0.209031,-0.003135,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209031,-0.003135,0.003750,0.249972,0,0);}
.m101_c01092{transform:matrix(0.209218,-0.004184,0.004999,0.249950,0,0);-ms-transform:matrix(0.209218,-0.004184,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209218,-0.004184,0.004999,0.249950,0,0);}
.m58_c01092{transform:matrix(0.209414,-0.004398,0.005249,0.249945,0,0);-ms-transform:matrix(0.209414,-0.004398,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209414,-0.004398,0.005249,0.249945,0,0);}
.m5_c01092{transform:matrix(0.210063,-0.005672,0.006748,0.249909,0,0);-ms-transform:matrix(0.210063,-0.005672,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210063,-0.005672,0.006748,0.249909,0,0);}
.m10e_c01092{transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);-ms-transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211928,-0.004239,0.004999,0.249950,0,0);}
.m7_c01092{transform:matrix(0.213722,-0.005770,0.006748,0.249909,0,0);-ms-transform:matrix(0.213722,-0.005770,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213722,-0.005770,0.006748,0.249909,0,0);}
.mfc_c01092{transform:matrix(0.214037,-0.004281,0.004999,0.249950,0,0);-ms-transform:matrix(0.214037,-0.004281,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214037,-0.004281,0.004999,0.249950,0,0);}
.m8e_c01092{transform:matrix(0.216477,-0.004330,0.004999,0.249950,0,0);-ms-transform:matrix(0.216477,-0.004330,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216477,-0.004330,0.004999,0.249950,0,0);}
.m12_c01092{transform:matrix(0.217957,-0.005449,0.006248,0.249922,0,0);-ms-transform:matrix(0.217957,-0.005449,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217957,-0.005449,0.006248,0.249922,0,0);}
.mcf_c01092{transform:matrix(0.217981,-0.004360,0.004999,0.249950,0,0);-ms-transform:matrix(0.217981,-0.004360,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217981,-0.004360,0.004999,0.249950,0,0);}
.m89_c01092{transform:matrix(0.218096,-0.004362,0.004999,0.249950,0,0);-ms-transform:matrix(0.218096,-0.004362,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218096,-0.004362,0.004999,0.249950,0,0);}
.m2d_c01092{transform:matrix(0.218210,-0.003273,0.003750,0.249972,0,0);-ms-transform:matrix(0.218210,-0.003273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218210,-0.003273,0.003750,0.249972,0,0);}
.ma5_c01092{transform:matrix(0.218971,-0.004379,0.004999,0.249950,0,0);-ms-transform:matrix(0.218971,-0.004379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.218971,-0.004379,0.004999,0.249950,0,0);}
.m4d_c01092{transform:matrix(0.219397,-0.003510,0.003999,0.249968,0,0);-ms-transform:matrix(0.219397,-0.003510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219397,-0.003510,0.003999,0.249968,0,0);}
.md0_c01092{transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);-ms-transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220636,-0.004413,0.004999,0.249950,0,0);}
.mb2_c01092{transform:matrix(0.220656,-0.004413,0.004999,0.249950,0,0);-ms-transform:matrix(0.220656,-0.004413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220656,-0.004413,0.004999,0.249950,0,0);}
.mbd_c01092{transform:matrix(0.222816,-0.004902,0.005499,0.249940,0,0);-ms-transform:matrix(0.222816,-0.004902,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222816,-0.004902,0.005499,0.249940,0,0);}
.m83_c01092{transform:matrix(0.222875,-0.004458,0.004999,0.249950,0,0);-ms-transform:matrix(0.222875,-0.004458,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222875,-0.004458,0.004999,0.249950,0,0);}
.m9_c01092{transform:matrix(0.223653,-0.006039,0.006748,0.249909,0,0);-ms-transform:matrix(0.223653,-0.006039,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223653,-0.006039,0.006748,0.249909,0,0);}
.m80_c01092{transform:matrix(0.225170,-0.004503,0.004999,0.249950,0,0);-ms-transform:matrix(0.225170,-0.004503,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225170,-0.004503,0.004999,0.249950,0,0);}
.m6a_c01092{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);}
.mbe_c01092{transform:matrix(0.228300,-0.005023,0.005499,0.249940,0,0);-ms-transform:matrix(0.228300,-0.005023,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228300,-0.005023,0.005499,0.249940,0,0);}
.m96_c01092{transform:matrix(0.231084,-0.004622,0.004999,0.249950,0,0);-ms-transform:matrix(0.231084,-0.004622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231084,-0.004622,0.004999,0.249950,0,0);}
.m46_c01092{transform:matrix(0.231165,-0.003699,0.003999,0.249968,0,0);-ms-transform:matrix(0.231165,-0.003699,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231165,-0.003699,0.003999,0.249968,0,0);}
.mb3_c01092{transform:matrix(0.231724,-0.004634,0.004999,0.249950,0,0);-ms-transform:matrix(0.231724,-0.004634,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231724,-0.004634,0.004999,0.249950,0,0);}
.m9d_c01092{transform:matrix(0.232553,-0.004651,0.004999,0.249950,0,0);-ms-transform:matrix(0.232553,-0.004651,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232553,-0.004651,0.004999,0.249950,0,0);}
.ma1_c01092{transform:matrix(0.235083,-0.004702,0.004999,0.249950,0,0);-ms-transform:matrix(0.235083,-0.004702,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235083,-0.004702,0.004999,0.249950,0,0);}
.m110_c01092{transform:matrix(0.236831,-0.007342,0.007746,0.249880,0,0);-ms-transform:matrix(0.236831,-0.007342,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236831,-0.007342,0.007746,0.249880,0,0);}
.mc_c01092{transform:matrix(0.237329,-0.006408,0.006748,0.249909,0,0);-ms-transform:matrix(0.237329,-0.006408,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237329,-0.006408,0.006748,0.249909,0,0);}
.m34_c01092{transform:matrix(0.238328,-0.003575,0.003750,0.249972,0,0);-ms-transform:matrix(0.238328,-0.003575,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238328,-0.003575,0.003750,0.249972,0,0);}
.mc7_c01092{transform:matrix(0.241622,-0.004832,0.004999,0.249950,0,0);-ms-transform:matrix(0.241622,-0.004832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241622,-0.004832,0.004999,0.249950,0,0);}
.mb1_c01092{transform:matrix(0.242806,-0.004856,0.004999,0.249950,0,0);-ms-transform:matrix(0.242806,-0.004856,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242806,-0.004856,0.004999,0.249950,0,0);}
.m3f_c01092{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);}
.mf6_c01092{transform:matrix(0.247910,-0.004958,0.004999,0.249950,0,0);-ms-transform:matrix(0.247910,-0.004958,0.004999,0.249950,0,0);-webkit-transform:matrix(0.247910,-0.004958,0.004999,0.249950,0,0);}
.m104_c01092{transform:matrix(0.250085,-0.005002,0.004999,0.249950,0,0);-ms-transform:matrix(0.250085,-0.005002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250085,-0.005002,0.004999,0.249950,0,0);}
.m95_c01092{transform:matrix(0.256389,-0.005128,0.004999,0.249950,0,0);-ms-transform:matrix(0.256389,-0.005128,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256389,-0.005128,0.004999,0.249950,0,0);}
.m87_c01092{transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);-ms-transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);}
.m8d_c01092{transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);-ms-transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);-webkit-transform:matrix(0.260823,-0.005216,0.004999,0.249950,0,0);}
.m32_c01092{transform:matrix(0.264675,-0.003970,0.003750,0.249972,0,0);-ms-transform:matrix(0.264675,-0.003970,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264675,-0.003970,0.003750,0.249972,0,0);}
.mb_c01092{transform:matrix(0.274750,-0.007418,0.006748,0.249909,0,0);-ms-transform:matrix(0.274750,-0.007418,0.006748,0.249909,0,0);-webkit-transform:matrix(0.274750,-0.007418,0.006748,0.249909,0,0);}
.m91_c01092{transform:matrix(0.277809,-0.005556,0.004999,0.249950,0,0);-ms-transform:matrix(0.277809,-0.005556,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277809,-0.005556,0.004999,0.249950,0,0);}
.m119_c01092{transform:matrix(0.284994,-0.015405,0.013494,0.249636,0,0);-ms-transform:matrix(0.284994,-0.015405,0.013494,0.249636,0,0);-webkit-transform:matrix(0.284994,-0.015405,0.013494,0.249636,0,0);}
.ma_c01092{transform:matrix(0.285616,-0.007712,0.006748,0.249909,0,0);-ms-transform:matrix(0.285616,-0.007712,0.006748,0.249909,0,0);-webkit-transform:matrix(0.285616,-0.007712,0.006748,0.249909,0,0);}
.m81_c01092{transform:matrix(0.289917,-0.005798,0.004999,0.249950,0,0);-ms-transform:matrix(0.289917,-0.005798,0.004999,0.249950,0,0);-webkit-transform:matrix(0.289917,-0.005798,0.004999,0.249950,0,0);}
.m31_c01092{transform:matrix(0.305361,-0.004580,0.003750,0.249972,0,0);-ms-transform:matrix(0.305361,-0.004580,0.003750,0.249972,0,0);-webkit-transform:matrix(0.305361,-0.004580,0.003750,0.249972,0,0);}
.m8c_c01092{transform:matrix(0.330639,-0.006613,0.004999,0.249950,0,0);-ms-transform:matrix(0.330639,-0.006613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.330639,-0.006613,0.004999,0.249950,0,0);}
.mda_c01092{transform:matrix(0.331954,-0.006639,0.004999,0.249950,0,0);-ms-transform:matrix(0.331954,-0.006639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.331954,-0.006639,0.004999,0.249950,0,0);}
.maa_c01092{transform:matrix(0.336573,-0.006731,0.004999,0.249950,0,0);-ms-transform:matrix(0.336573,-0.006731,0.004999,0.249950,0,0);-webkit-transform:matrix(0.336573,-0.006731,0.004999,0.249950,0,0);}
.m111_c01092{transform:matrix(0.350307,-0.010860,0.007746,0.249880,0,0);-ms-transform:matrix(0.350307,-0.010860,0.007746,0.249880,0,0);-webkit-transform:matrix(0.350307,-0.010860,0.007746,0.249880,0,0);}
.m94_c01092{transform:matrix(0.370651,-0.007413,0.004999,0.249950,0,0);-ms-transform:matrix(0.370651,-0.007413,0.004999,0.249950,0,0);-webkit-transform:matrix(0.370651,-0.007413,0.004999,0.249950,0,0);}
.m11a_c01092{transform:matrix(0.390350,-0.021100,0.013494,0.249636,0,0);-ms-transform:matrix(0.390350,-0.021100,0.013494,0.249636,0,0);-webkit-transform:matrix(0.390350,-0.021100,0.013494,0.249636,0,0);}
.m8f_c01092{transform:matrix(0.417696,-0.008354,0.004999,0.249950,0,0);-ms-transform:matrix(0.417696,-0.008354,0.004999,0.249950,0,0);-webkit-transform:matrix(0.417696,-0.008354,0.004999,0.249950,0,0);}
.m0_c01092{transform:matrix(0.688824,-0.018598,0.006748,0.249909,0,0);-ms-transform:matrix(0.688824,-0.018598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.688824,-0.018598,0.006748,0.249909,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls0_c01092{letter-spacing:0.000000px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:0.000000px;}
.fc0_c01092{color:transparent;}
.fs2_c01092{font-size:49.365419px;}
.fs3_c01092{font-size:58.818372px;}
.fse_c01092{font-size:60.912179px;}
.fsb_c01092{font-size:60.913427px;}
.fs18_c01092{font-size:61.978398px;}
.fs1_c01092{font-size:64.073342px;}
.fs8_c01092{font-size:66.158467px;}
.fs14_c01092{font-size:66.166006px;}
.fs17_c01092{font-size:66.181777px;}
.fs6_c01092{font-size:68.257678px;}
.fs16_c01092{font-size:69.313859px;}
.fs11_c01092{font-size:70.364069px;}
.fs13_c01092{font-size:70.367023px;}
.fs5_c01092{font-size:71.408032px;}
.fs12_c01092{font-size:71.414279px;}
.fs0_c01092{font-size:71.426021px;}
.fs7_c01092{font-size:72.459273px;}
.fs15_c01092{font-size:72.464489px;}
.fsd_c01092{font-size:73.514699px;}
.fs9_c01092{font-size:73.516205px;}
.fsf_c01092{font-size:74.564909px;}
.fsa_c01092{font-size:74.566436px;}
.fs10_c01092{font-size:76.665328px;}
.fs4_c01092{font-size:78.758859px;}
.fsc_c01092{font-size:78.765748px;}
.y0_c01092{bottom:0.000000px;}
.y112_c01092{bottom:185.500500px;}
.y113_c01092{bottom:187.032443px;}
.y114_c01092{bottom:187.434574px;}
.y115_c01092{bottom:188.368899px;}
.y116_c01092{bottom:189.917117px;}
.y117_c01092{bottom:191.030327px;}
.y118_c01092{bottom:191.768328px;}
.y119_c01092{bottom:194.017998px;}
.y10e_c01092{bottom:195.664530px;}
.y10f_c01092{bottom:197.371320px;}
.y110_c01092{bottom:198.275220px;}
.y111_c01092{bottom:199.009260px;}
.y105_c01092{bottom:208.969740px;}
.y106_c01092{bottom:210.439320px;}
.y107_c01092{bottom:210.848550px;}
.y108_c01092{bottom:215.568960px;}
.y109_c01092{bottom:216.509340px;}
.y10a_c01092{bottom:217.605960px;}
.y10b_c01092{bottom:218.281680px;}
.y10c_c01092{bottom:219.657360px;}
.y10d_c01092{bottom:221.332650px;}
.yfa_c01092{bottom:231.924570px;}
.yfb_c01092{bottom:234.592590px;}
.yfc_c01092{bottom:235.256430px;}
.yfd_c01092{bottom:235.825500px;}
.yfe_c01092{bottom:237.162750px;}
.yff_c01092{bottom:237.662310px;}
.y100_c01092{bottom:239.200860px;}
.y101_c01092{bottom:239.929800px;}
.y102_c01092{bottom:241.596600px;}
.y103_c01092{bottom:242.555790px;}
.y104_c01092{bottom:243.759450px;}
.yec_c01092{bottom:254.603040px;}
.yed_c01092{bottom:255.086790px;}
.yee_c01092{bottom:255.568170px;}
.yef_c01092{bottom:256.990200px;}
.yf0_c01092{bottom:257.700990px;}
.yf1_c01092{bottom:259.286010px;}
.yf2_c01092{bottom:260.762190px;}
.yf3_c01092{bottom:261.734490px;}
.yf4_c01092{bottom:262.653150px;}
.yf5_c01092{bottom:263.760600px;}
.yf6_c01092{bottom:265.269570px;}
.yf7_c01092{bottom:266.414160px;}
.yf8_c01092{bottom:266.654430px;}
.yf9_c01092{bottom:267.651330px;}
.ye0_c01092{bottom:276.749850px;}
.ye1_c01092{bottom:277.405020px;}
.ye2_c01092{bottom:278.674080px;}
.ye3_c01092{bottom:279.899940px;}
.ye4_c01092{bottom:280.477380px;}
.ye5_c01092{bottom:282.299640px;}
.ye6_c01092{bottom:284.359920px;}
.ye7_c01092{bottom:285.304980px;}
.ye8_c01092{bottom:286.328520px;}
.ye9_c01092{bottom:287.097870px;}
.yea_c01092{bottom:288.172560px;}
.yeb_c01092{bottom:289.409310px;}
.yd3_c01092{bottom:299.974080px;}
.yd4_c01092{bottom:300.891030px;}
.yd5_c01092{bottom:301.677960px;}
.yd6_c01092{bottom:302.733480px;}
.yd7_c01092{bottom:304.046760px;}
.yd8_c01092{bottom:305.211630px;}
.yd9_c01092{bottom:306.412770px;}
.yda_c01092{bottom:307.045080px;}
.ydb_c01092{bottom:308.226780px;}
.ydc_c01092{bottom:308.562750px;}
.ydd_c01092{bottom:309.622920px;}
.yde_c01092{bottom:310.278960px;}
.ydf_c01092{bottom:311.568660px;}
.yc7_c01092{bottom:324.813000px;}
.yc8_c01092{bottom:324.987600px;}
.yc9_c01092{bottom:325.404180px;}
.yca_c01092{bottom:327.033030px;}
.ycb_c01092{bottom:327.591480px;}
.ycc_c01092{bottom:329.038710px;}
.ycd_c01092{bottom:329.503020px;}
.yce_c01092{bottom:330.157260px;}
.ycf_c01092{bottom:331.406460px;}
.yd0_c01092{bottom:331.691100px;}
.yd1_c01092{bottom:332.044080px;}
.yd2_c01092{bottom:332.540790px;}
.ybc_c01092{bottom:347.492865px;}
.ybd_c01092{bottom:348.553206px;}
.ybe_c01092{bottom:348.995190px;}
.ybf_c01092{bottom:351.115032px;}
.yc0_c01092{bottom:352.392084px;}
.yc1_c01092{bottom:352.944996px;}
.yc2_c01092{bottom:353.987256px;}
.yc3_c01092{bottom:354.643905px;}
.yc4_c01092{bottom:355.469091px;}
.yc5_c01092{bottom:356.116848px;}
.yc6_c01092{bottom:357.912333px;}
.yb8_c01092{bottom:373.956000px;}
.yb9_c01092{bottom:374.625240px;}
.yba_c01092{bottom:375.542145px;}
.ybb_c01092{bottom:376.391895px;}
.yaa_c01092{bottom:396.631650px;}
.yab_c01092{bottom:397.395300px;}
.yac_c01092{bottom:397.712940px;}
.yad_c01092{bottom:398.246430px;}
.yae_c01092{bottom:398.933190px;}
.yaf_c01092{bottom:399.445950px;}
.yb0_c01092{bottom:401.299140px;}
.yb1_c01092{bottom:401.792310px;}
.yb2_c01092{bottom:402.545160px;}
.yb3_c01092{bottom:403.158450px;}
.yb4_c01092{bottom:404.097870px;}
.yb5_c01092{bottom:405.415080px;}
.yb6_c01092{bottom:406.069830px;}
.yb7_c01092{bottom:407.777670px;}
.ya6_c01092{bottom:419.856000px;}
.ya7_c01092{bottom:420.714330px;}
.ya8_c01092{bottom:421.525140px;}
.ya9_c01092{bottom:422.621220px;}
.y9d_c01092{bottom:422.802660px;}
.y9e_c01092{bottom:424.628970px;}
.y9f_c01092{bottom:424.962420px;}
.ya0_c01092{bottom:425.474580px;}
.ya1_c01092{bottom:425.989860px;}
.ya2_c01092{bottom:426.483210px;}
.ya3_c01092{bottom:427.550220px;}
.ya4_c01092{bottom:428.318760px;}
.ya5_c01092{bottom:429.074280px;}
.y93_c01092{bottom:442.521660px;}
.y94_c01092{bottom:443.729730px;}
.y95_c01092{bottom:444.636090px;}
.y96_c01092{bottom:446.903430px;}
.y97_c01092{bottom:447.591510px;}
.y98_c01092{bottom:449.027160px;}
.y99_c01092{bottom:450.100260px;}
.y9a_c01092{bottom:450.697740px;}
.y11a_c01092{bottom:452.014500px;}
.y9b_c01092{bottom:452.574540px;}
.y11b_c01092{bottom:453.593514px;}
.y9c_c01092{bottom:453.626130px;}
.y11c_c01092{bottom:456.741741px;}
.y8a_c01092{bottom:463.311930px;}
.y8b_c01092{bottom:464.483760px;}
.y8c_c01092{bottom:465.770610px;}
.y8d_c01092{bottom:466.388760px;}
.y8e_c01092{bottom:467.934360px;}
.y8f_c01092{bottom:468.445140px;}
.y90_c01092{bottom:469.316580px;}
.y91_c01092{bottom:470.821320px;}
.y92_c01092{bottom:473.743560px;}
.y80_c01092{bottom:488.156130px;}
.y81_c01092{bottom:489.443790px;}
.y82_c01092{bottom:490.058970px;}
.y83_c01092{bottom:491.249670px;}
.y84_c01092{bottom:492.608610px;}
.y85_c01092{bottom:493.451280px;}
.y86_c01092{bottom:493.717230px;}
.y87_c01092{bottom:494.198010px;}
.y88_c01092{bottom:495.050880px;}
.y89_c01092{bottom:497.019270px;}
.y76_c01092{bottom:510.300750px;}
.y77_c01092{bottom:511.974510px;}
.y78_c01092{bottom:512.757690px;}
.y79_c01092{bottom:513.195960px;}
.y7a_c01092{bottom:514.794270px;}
.y7b_c01092{bottom:515.750430px;}
.y7c_c01092{bottom:516.706680px;}
.y7d_c01092{bottom:516.966030px;}
.y7e_c01092{bottom:518.152170px;}
.y7f_c01092{bottom:519.509580px;}
.y6c_c01092{bottom:533.526000px;}
.y6d_c01092{bottom:535.428150px;}
.y6e_c01092{bottom:536.421540px;}
.y6f_c01092{bottom:537.275220px;}
.y70_c01092{bottom:538.338690px;}
.y71_c01092{bottom:539.137500px;}
.y72_c01092{bottom:539.533020px;}
.y73_c01092{bottom:539.835690px;}
.y74_c01092{bottom:541.701030px;}
.y75_c01092{bottom:542.273430px;}
.y68_c01092{bottom:561.055941px;}
.y69_c01092{bottom:561.810713px;}
.y6a_c01092{bottom:563.092322px;}
.y6b_c01092{bottom:563.506389px;}
.y5b_c01092{bottom:584.281467px;}
.y5c_c01092{bottom:584.865571px;}
.y5d_c01092{bottom:585.721899px;}
.y5e_c01092{bottom:586.459566px;}
.y5f_c01092{bottom:587.996168px;}
.y60_c01092{bottom:588.841061px;}
.y61_c01092{bottom:589.232574px;}
.y62_c01092{bottom:589.958775px;}
.y63_c01092{bottom:590.796077px;}
.y64_c01092{bottom:591.331325px;}
.y65_c01092{bottom:592.205134px;}
.y66_c01092{bottom:592.828709px;}
.y67_c01092{bottom:594.075825px;}
.y50_c01092{bottom:607.236000px;}
.y51_c01092{bottom:607.729668px;}
.y52_c01092{bottom:609.073742px;}
.y53_c01092{bottom:610.401057px;}
.y54_c01092{bottom:611.693187px;}
.y55_c01092{bottom:613.599315px;}
.y56_c01092{bottom:613.988781px;}
.y57_c01092{bottom:614.472999px;}
.y58_c01092{bottom:615.253380px;}
.y59_c01092{bottom:615.904989px;}
.y5a_c01092{bottom:616.407130px;}
.y4d_c01092{bottom:636.395328px;}
.y4e_c01092{bottom:641.311056px;}
.y4f_c01092{bottom:645.240396px;}
.y44_c01092{bottom:659.613000px;}
.y45_c01092{bottom:660.406680px;}
.y46_c01092{bottom:660.779592px;}
.y47_c01092{bottom:661.574304px;}
.y48_c01092{bottom:663.665616px;}
.y49_c01092{bottom:664.603632px;}
.y4a_c01092{bottom:665.652072px;}
.y4b_c01092{bottom:666.081000px;}
.y4c_c01092{bottom:666.995832px;}
.y39_c01092{bottom:682.288357px;}
.y3a_c01092{bottom:683.448292px;}
.y3b_c01092{bottom:684.596745px;}
.y3c_c01092{bottom:685.058992px;}
.y3d_c01092{bottom:686.398065px;}
.y3e_c01092{bottom:687.229462px;}
.y3f_c01092{bottom:687.645300px;}
.y40_c01092{bottom:688.491375px;}
.y41_c01092{bottom:689.481998px;}
.y42_c01092{bottom:689.897070px;}
.y43_c01092{bottom:690.159615px;}
.y2d_c01092{bottom:704.703337px;}
.y2e_c01092{bottom:705.794190px;}
.y2f_c01092{bottom:706.544842px;}
.y30_c01092{bottom:706.954485px;}
.y31_c01092{bottom:708.023857px;}
.y32_c01092{bottom:709.345973px;}
.y33_c01092{bottom:710.421795px;}
.y34_c01092{bottom:710.955097px;}
.y35_c01092{bottom:712.185727px;}
.y36_c01092{bottom:712.623682px;}
.y37_c01092{bottom:713.043390px;}
.y38_c01092{bottom:713.476785px;}
.y23_c01092{bottom:728.193000px;}
.y24_c01092{bottom:728.468490px;}
.y25_c01092{bottom:729.076283px;}
.y26_c01092{bottom:730.424730px;}
.y27_c01092{bottom:731.117438px;}
.y28_c01092{bottom:732.558720px;}
.y29_c01092{bottom:733.186582px;}
.y2a_c01092{bottom:733.980652px;}
.y2b_c01092{bottom:734.767410px;}
.y2c_c01092{bottom:735.075120px;}
.y1b_c01092{bottom:761.946000px;}
.y1c_c01092{bottom:762.762675px;}
.y1d_c01092{bottom:763.607175px;}
.y1e_c01092{bottom:764.982750px;}
.y1f_c01092{bottom:765.782213px;}
.y20_c01092{bottom:766.508287px;}
.y21_c01092{bottom:766.949250px;}
.y22_c01092{bottom:767.664037px;}
.y13_c01092{bottom:780.306000px;}
.y14_c01092{bottom:781.371675px;}
.y15_c01092{bottom:781.991962px;}
.y16_c01092{bottom:782.595225px;}
.y17_c01092{bottom:783.695475px;}
.y18_c01092{bottom:784.114688px;}
.y19_c01092{bottom:785.505413px;}
.y1a_c01092{bottom:786.607838px;}
.ya_c01092{bottom:811.050633px;}
.yb_c01092{bottom:812.824248px;}
.yc_c01092{bottom:814.412258px;}
.yd_c01092{bottom:815.104164px;}
.ye_c01092{bottom:817.260046px;}
.yf_c01092{bottom:818.177255px;}
.y10_c01092{bottom:818.967999px;}
.y11_c01092{bottom:823.262224px;}
.y12_c01092{bottom:828.371863px;}
.y1_c01092{bottom:833.503500px;}
.y2_c01092{bottom:834.953481px;}
.y3_c01092{bottom:836.597862px;}
.y4_c01092{bottom:837.922171px;}
.y5_c01092{bottom:838.363338px;}
.y6_c01092{bottom:839.160621px;}
.y7_c01092{bottom:841.282416px;}
.y8_c01092{bottom:841.799804px;}
.y9_c01092{bottom:846.311463px;}
.h4_c01092{height:49.365419px;}
.h5_c01092{height:58.818372px;}
.h10_c01092{height:60.912179px;}
.hd_c01092{height:60.913427px;}
.h1a_c01092{height:61.978398px;}
.h3_c01092{height:64.073342px;}
.ha_c01092{height:66.158467px;}
.h16_c01092{height:66.166006px;}
.h19_c01092{height:66.181777px;}
.h8_c01092{height:68.257678px;}
.h18_c01092{height:69.313859px;}
.h13_c01092{height:70.364069px;}
.h15_c01092{height:70.367023px;}
.h7_c01092{height:71.408032px;}
.h14_c01092{height:71.414279px;}
.h2_c01092{height:71.426021px;}
.h9_c01092{height:72.459273px;}
.h17_c01092{height:72.464489px;}
.hf_c01092{height:73.514699px;}
.hb_c01092{height:73.516205px;}
.h11_c01092{height:74.564909px;}
.hc_c01092{height:74.566436px;}
.h12_c01092{height:76.665328px;}
.h6_c01092{height:78.758859px;}
.he_c01092{height:78.765748px;}
.h1_c01092{height:1005.000000px;}
.h0_c01092{height:1005.150000px;}
.w0_c01092{width:739.200000px;}
.w1_c01092{width:739.500000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:47.227500px;}
.x66_c01092{left:98.065590px;}
.x2_c01092{left:100.930500px;}
.x39_c01092{left:101.997000px;}
.x52_c01092{left:103.944353px;}
.x5b_c01092{left:105.295080px;}
.x6b_c01092{left:108.446880px;}
.x86_c01092{left:110.131500px;}
.x97_c01092{left:111.461160px;}
.xa5_c01092{left:112.959060px;}
.x20_c01092{left:119.262000px;}
.x3f_c01092{left:120.961500px;}
.x55_c01092{left:123.400500px;}
.x7f_c01092{left:127.555332px;}
.x98_c01092{left:128.745900px;}
.x48_c01092{left:130.676854px;}
.x93_c01092{left:135.338850px;}
.x53_c01092{left:139.885853px;}
.x40_c01092{left:144.469500px;}
.x8d_c01092{left:145.773990px;}
.xa_c01092{left:148.789072px;}
.x3a_c01092{left:151.602000px;}
.x19_c01092{left:153.346500px;}
.x11_c01092{left:156.573000px;}
.x21_c01092{left:159.781500px;}
.x3_c01092{left:161.833500px;}
.xad_c01092{left:162.891000px;}
.xa6_c01092{left:165.429660px;}
.x80_c01092{left:168.317235px;}
.xb_c01092{left:169.745170px;}
.x49_c01092{left:171.454354px;}
.x61_c01092{left:173.566350px;}
.x3b_c01092{left:174.909000px;}
.x8e_c01092{left:176.041860px;}
.xa7_c01092{left:180.038820px;}
.x7e_c01092{left:181.204500px;}
.x94_c01092{left:182.360280px;}
.x1a_c01092{left:186.013500px;}
.x5c_c01092{left:188.983080px;}
.x75_c01092{left:191.187000px;}
.x29_c01092{left:193.330942px;}
.x99_c01092{left:196.680510px;}
.x12_c01092{left:199.200000px;}
.x54_c01092{left:200.914853px;}
.x77_c01092{left:203.921250px;}
.x4a_c01092{left:206.581354px;}
.x41_c01092{left:208.473000px;}
.x67_c01092{left:209.820120px;}
.x4_c01092{left:210.882000px;}
.x87_c01092{left:212.403000px;}
.x2a_c01092{left:213.838912px;}
.x8f_c01092{left:216.663000px;}
.x56_c01092{left:218.508000px;}
.x1b_c01092{left:219.793500px;}
.x9a_c01092{left:222.090960px;}
.x13_c01092{left:224.011500px;}
.x78_c01092{left:225.282540px;}
.x5_c01092{left:227.221500px;}
.xc_c01092{left:235.082100px;}
.x68_c01092{left:237.951510px;}
.x88_c01092{left:240.325500px;}
.x76_c01092{left:245.991000px;}
.x14_c01092{left:248.142000px;}
.x22_c01092{left:249.678000px;}
.xa0_c01092{left:255.567180px;}
.x6_c01092{left:256.750500px;}
.xd_c01092{left:262.881604px;}
.x2b_c01092{left:267.326407px;}
.x62_c01092{left:268.662270px;}
.x71_c01092{left:270.605940px;}
.x42_c01092{left:271.678500px;}
.x1c_c01092{left:274.816500px;}
.x9b_c01092{left:278.682900px;}
.x4b_c01092{left:279.752855px;}
.x6c_c01092{left:283.717860px;}
.xe_c01092{left:286.831216px;}
.x15_c01092{left:292.152000px;}
.x23_c01092{left:295.858500px;}
.x79_c01092{left:302.485860px;}
.xa1_c01092{left:305.097750px;}
.x1d_c01092{left:306.795000px;}
.x16_c01092{left:308.920500px;}
.x57_c01092{left:310.861500px;}
.x89_c01092{left:312.687000px;}
.x81_c01092{left:316.003266px;}
.x32_c01092{left:318.042630px;}
.x4c_c01092{left:319.985854px;}
.x7a_c01092{left:323.017710px;}
.x5d_c01092{left:329.971080px;}
.x69_c01092{left:331.391760px;}
.x2c_c01092{left:333.462457px;}
.x7_c01092{left:335.335500px;}
.x82_c01092{left:337.247385px;}
.x4d_c01092{left:338.629354px;}
.x63_c01092{left:340.210710px;}
.xa8_c01092{left:348.607350px;}
.x1e_c01092{left:353.476500px;}
.x8_c01092{left:354.498000px;}
.x72_c01092{left:357.569700px;}
.x33_c01092{left:361.766498px;}
.x17_c01092{left:364.549500px;}
.x9c_c01092{left:366.142920px;}
.x6d_c01092{left:368.670870px;}
.x6a_c01092{left:370.987170px;}
.x4e_c01092{left:373.210354px;}
.x5e_c01092{left:377.779080px;}
.x7b_c01092{left:379.920150px;}
.x1f_c01092{left:382.068000px;}
.x34_c01092{left:383.687693px;}
.x2d_c01092{left:387.279930px;}
.x24_c01092{left:391.944000px;}
.x64_c01092{left:398.567880px;}
.x83_c01092{left:402.601143px;}
.x58_c01092{left:403.975500px;}
.xa2_c01092{left:407.585910px;}
.x18_c01092{left:408.646500px;}
.x6e_c01092{left:411.596580px;}
.x2e_c01092{left:413.931427px;}
.xf_c01092{left:416.966656px;}
.x7c_c01092{left:419.088030px;}
.xa9_c01092{left:421.345710px;}
.x73_c01092{left:422.387910px;}
.x43_c01092{left:423.976500px;}
.x5f_c01092{left:425.591580px;}
.x35_c01092{left:428.190015px;}
.x8a_c01092{left:431.074500px;}
.x25_c01092{left:433.801500px;}
.x6f_c01092{left:435.468180px;}
.x4f_c01092{left:438.569854px;}
.x90_c01092{left:440.824590px;}
.x44_c01092{left:442.522500px;}
.x74_c01092{left:445.854930px;}
.x84_c01092{left:459.252660px;}
.x8b_c01092{left:462.955500px;}
.x45_c01092{left:465.580500px;}
.x65_c01092{left:468.776790px;}
.x3e_c01092{left:470.689764px;}
.x7d_c01092{left:473.994150px;}
.x2f_c01092{left:475.468815px;}
.x36_c01092{left:480.328388px;}
.x91_c01092{left:481.603200px;}
.x26_c01092{left:486.739500px;}
.x8c_c01092{left:487.791000px;}
.xab_c01092{left:488.995290px;}
.x9d_c01092{left:492.401730px;}
.x95_c01092{left:494.306100px;}
.x30_c01092{left:497.364172px;}
.x37_c01092{left:502.198583px;}
.xa3_c01092{left:504.821790px;}
.x3c_c01092{left:506.247000px;}
.x50_c01092{left:509.873854px;}
.x38_c01092{left:516.000750px;}
.x31_c01092{left:518.343097px;}
.x9_c01092{left:521.596500px;}
.x85_c01092{left:528.314088px;}
.x59_c01092{left:532.152000px;}
.x46_c01092{left:533.770500px;}
.x27_c01092{left:539.190000px;}
.x9e_c01092{left:541.836810px;}
.xac_c01092{left:547.482930px;}
.xa4_c01092{left:549.398550px;}
.x70_c01092{left:552.625980px;}
.xaa_c01092{left:554.408910px;}
.x92_c01092{left:556.456230px;}
.x47_c01092{left:557.682000px;}
.x28_c01092{left:559.704000px;}
.x5a_c01092{left:560.772000px;}
.x3d_c01092{left:563.424000px;}
.x60_c01092{left:565.736580px;}
.x51_c01092{left:569.260355px;}
.x10_c01092{left:571.798587px;}
.x9f_c01092{left:577.426110px;}
.x96_c01092{left:579.866100px;}
.xae_c01092{left:606.749458px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls0_c01092{letter-spacing:0.000000pt;}
.ws0_c01092{word-spacing:0.000000pt;}
.fs2_c01092{font-size:43.880373pt;}
.fs3_c01092{font-size:52.282997pt;}
.fse_c01092{font-size:54.144159pt;}
.fsb_c01092{font-size:54.145268pt;}
.fs18_c01092{font-size:55.091909pt;}
.fs1_c01092{font-size:56.954082pt;}
.fs8_c01092{font-size:58.807526pt;}
.fs14_c01092{font-size:58.814228pt;}
.fs17_c01092{font-size:58.828247pt;}
.fs6_c01092{font-size:60.673491pt;}
.fs16_c01092{font-size:61.612319pt;}
.fs11_c01092{font-size:62.545839pt;}
.fs13_c01092{font-size:62.548465pt;}
.fs5_c01092{font-size:63.473806pt;}
.fs12_c01092{font-size:63.479359pt;}
.fs0_c01092{font-size:63.489796pt;}
.fs7_c01092{font-size:64.408243pt;}
.fs15_c01092{font-size:64.412879pt;}
.fsd_c01092{font-size:65.346399pt;}
.fs9_c01092{font-size:65.347738pt;}
.fsf_c01092{font-size:66.279919pt;}
.fsa_c01092{font-size:66.281277pt;}
.fs10_c01092{font-size:68.146959pt;}
.fs4_c01092{font-size:70.007875pt;}
.fsc_c01092{font-size:70.013999pt;}
.y0_c01092{bottom:0.000000pt;}
.y112_c01092{bottom:164.889333pt;}
.y113_c01092{bottom:166.251060pt;}
.y114_c01092{bottom:166.608511pt;}
.y115_c01092{bottom:167.439021pt;}
.y116_c01092{bottom:168.815215pt;}
.y117_c01092{bottom:169.804735pt;}
.y118_c01092{bottom:170.460736pt;}
.y119_c01092{bottom:172.460443pt;}
.y10e_c01092{bottom:173.924027pt;}
.y10f_c01092{bottom:175.441173pt;}
.y110_c01092{bottom:176.244640pt;}
.y111_c01092{bottom:176.897120pt;}
.y105_c01092{bottom:185.750880pt;}
.y106_c01092{bottom:187.057173pt;}
.y107_c01092{bottom:187.420933pt;}
.y108_c01092{bottom:191.616853pt;}
.y109_c01092{bottom:192.452747pt;}
.y10a_c01092{bottom:193.427520pt;}
.y10b_c01092{bottom:194.028160pt;}
.y10c_c01092{bottom:195.250987pt;}
.y10d_c01092{bottom:196.740133pt;}
.yfa_c01092{bottom:206.155173pt;}
.yfb_c01092{bottom:208.526747pt;}
.yfc_c01092{bottom:209.116827pt;}
.yfd_c01092{bottom:209.622667pt;}
.yfe_c01092{bottom:210.811333pt;}
.yff_c01092{bottom:211.255387pt;}
.y100_c01092{bottom:212.622987pt;}
.y101_c01092{bottom:213.270933pt;}
.y102_c01092{bottom:214.752533pt;}
.y103_c01092{bottom:215.605147pt;}
.y104_c01092{bottom:216.675067pt;}
.yec_c01092{bottom:226.313813pt;}
.yed_c01092{bottom:226.743813pt;}
.yee_c01092{bottom:227.171707pt;}
.yef_c01092{bottom:228.435733pt;}
.yf0_c01092{bottom:229.067547pt;}
.yf1_c01092{bottom:230.476453pt;}
.yf2_c01092{bottom:231.788613pt;}
.yf3_c01092{bottom:232.652880pt;}
.yf4_c01092{bottom:233.469467pt;}
.yf5_c01092{bottom:234.453867pt;}
.yf6_c01092{bottom:235.795173pt;}
.yf7_c01092{bottom:236.812587pt;}
.yf8_c01092{bottom:237.026160pt;}
.yf9_c01092{bottom:237.912293pt;}
.ye0_c01092{bottom:245.999867pt;}
.ye1_c01092{bottom:246.582240pt;}
.ye2_c01092{bottom:247.710293pt;}
.ye3_c01092{bottom:248.799947pt;}
.ye4_c01092{bottom:249.313227pt;}
.ye5_c01092{bottom:250.933013pt;}
.ye6_c01092{bottom:252.764373pt;}
.ye7_c01092{bottom:253.604427pt;}
.ye8_c01092{bottom:254.514240pt;}
.ye9_c01092{bottom:255.198107pt;}
.yea_c01092{bottom:256.153387pt;}
.yeb_c01092{bottom:257.252720pt;}
.yd3_c01092{bottom:266.643627pt;}
.yd4_c01092{bottom:267.458693pt;}
.yd5_c01092{bottom:268.158187pt;}
.yd6_c01092{bottom:269.096427pt;}
.yd7_c01092{bottom:270.263787pt;}
.yd8_c01092{bottom:271.299227pt;}
.yd9_c01092{bottom:272.366907pt;}
.yda_c01092{bottom:272.928960pt;}
.ydb_c01092{bottom:273.979360pt;}
.ydc_c01092{bottom:274.278000pt;}
.ydd_c01092{bottom:275.220373pt;}
.yde_c01092{bottom:275.803520pt;}
.ydf_c01092{bottom:276.949920pt;}
.yc7_c01092{bottom:288.722667pt;}
.yc8_c01092{bottom:288.877867pt;}
.yc9_c01092{bottom:289.248160pt;}
.yca_c01092{bottom:290.696027pt;}
.ycb_c01092{bottom:291.192427pt;}
.ycc_c01092{bottom:292.478853pt;}
.ycd_c01092{bottom:292.891573pt;}
.yce_c01092{bottom:293.473120pt;}
.ycf_c01092{bottom:294.583520pt;}
.yd0_c01092{bottom:294.836533pt;}
.yd1_c01092{bottom:295.150293pt;}
.yd2_c01092{bottom:295.591813pt;}
.ybc_c01092{bottom:308.882547pt;}
.ybd_c01092{bottom:309.825072pt;}
.ybe_c01092{bottom:310.217947pt;}
.ybf_c01092{bottom:312.102251pt;}
.yc0_c01092{bottom:313.237408pt;}
.yc1_c01092{bottom:313.728885pt;}
.yc2_c01092{bottom:314.655339pt;}
.yc3_c01092{bottom:315.239027pt;}
.yc4_c01092{bottom:315.972525pt;}
.yc5_c01092{bottom:316.548309pt;}
.yc6_c01092{bottom:318.144296pt;}
.yb8_c01092{bottom:332.405333pt;}
.yb9_c01092{bottom:333.000213pt;}
.yba_c01092{bottom:333.815240pt;}
.ybb_c01092{bottom:334.570573pt;}
.yaa_c01092{bottom:352.561467pt;}
.yab_c01092{bottom:353.240267pt;}
.yac_c01092{bottom:353.522613pt;}
.yad_c01092{bottom:353.996827pt;}
.yae_c01092{bottom:354.607280pt;}
.yaf_c01092{bottom:355.063067pt;}
.yb0_c01092{bottom:356.710347pt;}
.yb1_c01092{bottom:357.148720pt;}
.yb2_c01092{bottom:357.817920pt;}
.yb3_c01092{bottom:358.363067pt;}
.yb4_c01092{bottom:359.198107pt;}
.yb5_c01092{bottom:360.368960pt;}
.yb6_c01092{bottom:360.950960pt;}
.yb7_c01092{bottom:362.469040pt;}
.ya6_c01092{bottom:373.205333pt;}
.ya7_c01092{bottom:373.968293pt;}
.ya8_c01092{bottom:374.689013pt;}
.ya9_c01092{bottom:375.663307pt;}
.y9d_c01092{bottom:375.824587pt;}
.y9e_c01092{bottom:377.447973pt;}
.y9f_c01092{bottom:377.744373pt;}
.ya0_c01092{bottom:378.199627pt;}
.ya1_c01092{bottom:378.657653pt;}
.ya2_c01092{bottom:379.096187pt;}
.ya3_c01092{bottom:380.044640pt;}
.ya4_c01092{bottom:380.727787pt;}
.ya5_c01092{bottom:381.399360pt;}
.y93_c01092{bottom:393.352587pt;}
.y94_c01092{bottom:394.426427pt;}
.y95_c01092{bottom:395.232080pt;}
.y96_c01092{bottom:397.247493pt;}
.y97_c01092{bottom:397.859120pt;}
.y98_c01092{bottom:399.135253pt;}
.y99_c01092{bottom:400.089120pt;}
.y9a_c01092{bottom:400.620213pt;}
.y11a_c01092{bottom:401.790667pt;}
.y9b_c01092{bottom:402.288480pt;}
.y11b_c01092{bottom:403.194235pt;}
.y9c_c01092{bottom:403.223227pt;}
.y11c_c01092{bottom:405.992659pt;}
.y8a_c01092{bottom:411.832827pt;}
.y8b_c01092{bottom:412.874453pt;}
.y8c_c01092{bottom:414.018320pt;}
.y8d_c01092{bottom:414.567787pt;}
.y8e_c01092{bottom:415.941653pt;}
.y8f_c01092{bottom:416.395680pt;}
.y90_c01092{bottom:417.170293pt;}
.y91_c01092{bottom:418.507840pt;}
.y92_c01092{bottom:421.105387pt;}
.y80_c01092{bottom:433.916560pt;}
.y81_c01092{bottom:435.061147pt;}
.y82_c01092{bottom:435.607973pt;}
.y83_c01092{bottom:436.666373pt;}
.y84_c01092{bottom:437.874320pt;}
.y85_c01092{bottom:438.623360pt;}
.y86_c01092{bottom:438.859760pt;}
.y87_c01092{bottom:439.287120pt;}
.y88_c01092{bottom:440.045227pt;}
.y89_c01092{bottom:441.794907pt;}
.y76_c01092{bottom:453.600667pt;}
.y77_c01092{bottom:455.088453pt;}
.y78_c01092{bottom:455.784613pt;}
.y79_c01092{bottom:456.174187pt;}
.y7a_c01092{bottom:457.594907pt;}
.y7b_c01092{bottom:458.444827pt;}
.y7c_c01092{bottom:459.294827pt;}
.y7d_c01092{bottom:459.525360pt;}
.y7e_c01092{bottom:460.579707pt;}
.y7f_c01092{bottom:461.786293pt;}
.y6c_c01092{bottom:474.245333pt;}
.y6d_c01092{bottom:475.936133pt;}
.y6e_c01092{bottom:476.819147pt;}
.y6f_c01092{bottom:477.577973pt;}
.y70_c01092{bottom:478.523280pt;}
.y71_c01092{bottom:479.233333pt;}
.y72_c01092{bottom:479.584907pt;}
.y73_c01092{bottom:479.853947pt;}
.y74_c01092{bottom:481.512027pt;}
.y75_c01092{bottom:482.020827pt;}
.y68_c01092{bottom:498.716392pt;}
.y69_c01092{bottom:499.387300pt;}
.y6a_c01092{bottom:500.526508pt;}
.y6b_c01092{bottom:500.894568pt;}
.y5b_c01092{bottom:519.361304pt;}
.y5c_c01092{bottom:519.880508pt;}
.y5d_c01092{bottom:520.641688pt;}
.y5e_c01092{bottom:521.297392pt;}
.y5f_c01092{bottom:522.663260pt;}
.y60_c01092{bottom:523.414276pt;}
.y61_c01092{bottom:523.762288pt;}
.y62_c01092{bottom:524.407800pt;}
.y63_c01092{bottom:525.152068pt;}
.y64_c01092{bottom:525.627844pt;}
.y65_c01092{bottom:526.404564pt;}
.y66_c01092{bottom:526.958852pt;}
.y67_c01092{bottom:528.067400pt;}
.y50_c01092{bottom:539.765333pt;}
.y51_c01092{bottom:540.204149pt;}
.y52_c01092{bottom:541.398881pt;}
.y53_c01092{bottom:542.578717pt;}
.y54_c01092{bottom:543.727277pt;}
.y55_c01092{bottom:545.421613pt;}
.y56_c01092{bottom:545.767805pt;}
.y57_c01092{bottom:546.198221pt;}
.y58_c01092{bottom:546.891893pt;}
.y59_c01092{bottom:547.471101pt;}
.y5a_c01092{bottom:547.917449pt;}
.y4d_c01092{bottom:565.684736pt;}
.y4e_c01092{bottom:570.054272pt;}
.y4f_c01092{bottom:573.547019pt;}
.y44_c01092{bottom:586.322667pt;}
.y45_c01092{bottom:587.028160pt;}
.y46_c01092{bottom:587.359637pt;}
.y47_c01092{bottom:588.066048pt;}
.y48_c01092{bottom:589.924992pt;}
.y49_c01092{bottom:590.758784pt;}
.y4a_c01092{bottom:591.690731pt;}
.y4b_c01092{bottom:592.072000pt;}
.y4c_c01092{bottom:592.885184pt;}
.y39_c01092{bottom:606.478540pt;}
.y3a_c01092{bottom:607.509593pt;}
.y3b_c01092{bottom:608.530440pt;}
.y3c_c01092{bottom:608.941327pt;}
.y3d_c01092{bottom:610.131613pt;}
.y3e_c01092{bottom:610.870633pt;}
.y3f_c01092{bottom:611.240267pt;}
.y40_c01092{bottom:611.992333pt;}
.y41_c01092{bottom:612.872887pt;}
.y42_c01092{bottom:613.241840pt;}
.y43_c01092{bottom:613.475213pt;}
.y2d_c01092{bottom:626.402967pt;}
.y2e_c01092{bottom:627.372613pt;}
.y2f_c01092{bottom:628.039860pt;}
.y30_c01092{bottom:628.403987pt;}
.y31_c01092{bottom:629.354540pt;}
.y32_c01092{bottom:630.529753pt;}
.y33_c01092{bottom:631.486040pt;}
.y34_c01092{bottom:631.960087pt;}
.y35_c01092{bottom:633.053980pt;}
.y36_c01092{bottom:633.443273pt;}
.y37_c01092{bottom:633.816347pt;}
.y38_c01092{bottom:634.201587pt;}
.y23_c01092{bottom:647.282667pt;}
.y24_c01092{bottom:647.527547pt;}
.y25_c01092{bottom:648.067807pt;}
.y26_c01092{bottom:649.266427pt;}
.y27_c01092{bottom:649.882167pt;}
.y28_c01092{bottom:651.163307pt;}
.y29_c01092{bottom:651.721407pt;}
.y2a_c01092{bottom:652.427247pt;}
.y2b_c01092{bottom:653.126587pt;}
.y2c_c01092{bottom:653.400107pt;}
.y1b_c01092{bottom:677.285333pt;}
.y1c_c01092{bottom:678.011267pt;}
.y1d_c01092{bottom:678.761933pt;}
.y1e_c01092{bottom:679.984667pt;}
.y1f_c01092{bottom:680.695300pt;}
.y20_c01092{bottom:681.340700pt;}
.y21_c01092{bottom:681.732667pt;}
.y22_c01092{bottom:682.368033pt;}
.y13_c01092{bottom:693.605333pt;}
.y14_c01092{bottom:694.552600pt;}
.y15_c01092{bottom:695.103967pt;}
.y16_c01092{bottom:695.640200pt;}
.y17_c01092{bottom:696.618200pt;}
.y18_c01092{bottom:696.990833pt;}
.y19_c01092{bottom:698.227033pt;}
.y1a_c01092{bottom:699.206967pt;}
.ya_c01092{bottom:720.933896pt;}
.yb_c01092{bottom:722.510443pt;}
.yc_c01092{bottom:723.922007pt;}
.yd_c01092{bottom:724.537035pt;}
.ye_c01092{bottom:726.453375pt;}
.yf_c01092{bottom:727.268671pt;}
.y10_c01092{bottom:727.971555pt;}
.y11_c01092{bottom:731.788644pt;}
.y12_c01092{bottom:736.330545pt;}
.y1_c01092{bottom:740.892000pt;}
.y2_c01092{bottom:742.180872pt;}
.y3_c01092{bottom:743.642544pt;}
.y4_c01092{bottom:744.819708pt;}
.y5_c01092{bottom:745.211856pt;}
.y6_c01092{bottom:745.920552pt;}
.y7_c01092{bottom:747.806592pt;}
.y8_c01092{bottom:748.266492pt;}
.y9_c01092{bottom:752.276856pt;}
.h4_c01092{height:43.880373pt;}
.h5_c01092{height:52.282997pt;}
.h10_c01092{height:54.144159pt;}
.hd_c01092{height:54.145268pt;}
.h1a_c01092{height:55.091909pt;}
.h3_c01092{height:56.954082pt;}
.ha_c01092{height:58.807526pt;}
.h16_c01092{height:58.814228pt;}
.h19_c01092{height:58.828247pt;}
.h8_c01092{height:60.673491pt;}
.h18_c01092{height:61.612319pt;}
.h13_c01092{height:62.545839pt;}
.h15_c01092{height:62.548465pt;}
.h7_c01092{height:63.473806pt;}
.h14_c01092{height:63.479359pt;}
.h2_c01092{height:63.489796pt;}
.h9_c01092{height:64.408243pt;}
.h17_c01092{height:64.412879pt;}
.hf_c01092{height:65.346399pt;}
.hb_c01092{height:65.347738pt;}
.h11_c01092{height:66.279919pt;}
.hc_c01092{height:66.281277pt;}
.h12_c01092{height:68.146959pt;}
.h6_c01092{height:70.007875pt;}
.he_c01092{height:70.013999pt;}
.h1_c01092{height:893.333333pt;}
.h0_c01092{height:893.466667pt;}
.w0_c01092{width:657.066667pt;}
.w1_c01092{width:657.333333pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:41.980000pt;}
.x66_c01092{left:87.169413pt;}
.x2_c01092{left:89.716000pt;}
.x39_c01092{left:90.664000pt;}
.x52_c01092{left:92.394980pt;}
.x5b_c01092{left:93.595627pt;}
.x6b_c01092{left:96.397227pt;}
.x86_c01092{left:97.894667pt;}
.x97_c01092{left:99.076587pt;}
.xa5_c01092{left:100.408053pt;}
.x20_c01092{left:106.010667pt;}
.x3f_c01092{left:107.521333pt;}
.x55_c01092{left:109.689333pt;}
.x7f_c01092{left:113.382517pt;}
.x98_c01092{left:114.440800pt;}
.x48_c01092{left:116.157204pt;}
.x93_c01092{left:120.301200pt;}
.x53_c01092{left:124.342980pt;}
.x40_c01092{left:128.417333pt;}
.x8d_c01092{left:129.576880pt;}
.xa_c01092{left:132.256953pt;}
.x3a_c01092{left:134.757333pt;}
.x19_c01092{left:136.308000pt;}
.x11_c01092{left:139.176000pt;}
.x21_c01092{left:142.028000pt;}
.x3_c01092{left:143.852000pt;}
.xad_c01092{left:144.792000pt;}
.xa6_c01092{left:147.048587pt;}
.x80_c01092{left:149.615320pt;}
.xb_c01092{left:150.884596pt;}
.x49_c01092{left:152.403871pt;}
.x61_c01092{left:154.281200pt;}
.x3b_c01092{left:155.474667pt;}
.x8e_c01092{left:156.481653pt;}
.xa7_c01092{left:160.034507pt;}
.x7e_c01092{left:161.070667pt;}
.x94_c01092{left:162.098027pt;}
.x1a_c01092{left:165.345333pt;}
.x5c_c01092{left:167.984960pt;}
.x75_c01092{left:169.944000pt;}
.x29_c01092{left:171.849727pt;}
.x99_c01092{left:174.827120pt;}
.x12_c01092{left:177.066667pt;}
.x54_c01092{left:178.590980pt;}
.x77_c01092{left:181.263333pt;}
.x4a_c01092{left:183.627871pt;}
.x41_c01092{left:185.309333pt;}
.x67_c01092{left:186.506773pt;}
.x4_c01092{left:187.450667pt;}
.x87_c01092{left:188.802667pt;}
.x2a_c01092{left:190.079033pt;}
.x8f_c01092{left:192.589333pt;}
.x56_c01092{left:194.229333pt;}
.x1b_c01092{left:195.372000pt;}
.x9a_c01092{left:197.414187pt;}
.x13_c01092{left:199.121333pt;}
.x78_c01092{left:200.251147pt;}
.x5_c01092{left:201.974667pt;}
.xc_c01092{left:208.961867pt;}
.x68_c01092{left:211.512453pt;}
.x88_c01092{left:213.622667pt;}
.x76_c01092{left:218.658667pt;}
.x14_c01092{left:220.570667pt;}
.x22_c01092{left:221.936000pt;}
.xa0_c01092{left:227.170827pt;}
.x6_c01092{left:228.222667pt;}
.xd_c01092{left:233.672537pt;}
.x2b_c01092{left:237.623473pt;}
.x62_c01092{left:238.810907pt;}
.x71_c01092{left:240.538613pt;}
.x42_c01092{left:241.492000pt;}
.x1c_c01092{left:244.281333pt;}
.x9b_c01092{left:247.718133pt;}
.x4b_c01092{left:248.669204pt;}
.x6c_c01092{left:252.193653pt;}
.xe_c01092{left:254.961081pt;}
.x15_c01092{left:259.690667pt;}
.x23_c01092{left:262.985333pt;}
.x79_c01092{left:268.876320pt;}
.xa1_c01092{left:271.198000pt;}
.x1d_c01092{left:272.706667pt;}
.x16_c01092{left:274.596000pt;}
.x57_c01092{left:276.321333pt;}
.x89_c01092{left:277.944000pt;}
.x81_c01092{left:280.891792pt;}
.x32_c01092{left:282.704560pt;}
.x4c_c01092{left:284.431871pt;}
.x7a_c01092{left:287.126853pt;}
.x5d_c01092{left:293.307627pt;}
.x69_c01092{left:294.570453pt;}
.x2c_c01092{left:296.411073pt;}
.x7_c01092{left:298.076000pt;}
.x82_c01092{left:299.775453pt;}
.x4d_c01092{left:301.003871pt;}
.x63_c01092{left:302.409520pt;}
.xa8_c01092{left:309.873200pt;}
.x1e_c01092{left:314.201333pt;}
.x8_c01092{left:315.109333pt;}
.x72_c01092{left:317.839733pt;}
.x33_c01092{left:321.570220pt;}
.x17_c01092{left:324.044000pt;}
.x9c_c01092{left:325.460373pt;}
.x6d_c01092{left:327.707440pt;}
.x6a_c01092{left:329.766373pt;}
.x4e_c01092{left:331.742537pt;}
.x5e_c01092{left:335.803627pt;}
.x7b_c01092{left:337.706800pt;}
.x1f_c01092{left:339.616000pt;}
.x34_c01092{left:341.055727pt;}
.x2d_c01092{left:344.248827pt;}
.x24_c01092{left:348.394667pt;}
.x64_c01092{left:354.282560pt;}
.x83_c01092{left:357.867683pt;}
.x58_c01092{left:359.089333pt;}
.xa2_c01092{left:362.298587pt;}
.x18_c01092{left:363.241333pt;}
.x6e_c01092{left:365.863627pt;}
.x2e_c01092{left:367.939047pt;}
.xf_c01092{left:370.637028pt;}
.x7c_c01092{left:372.522693pt;}
.xa9_c01092{left:374.529520pt;}
.x73_c01092{left:375.455920pt;}
.x43_c01092{left:376.868000pt;}
.x5f_c01092{left:378.303627pt;}
.x35_c01092{left:380.613347pt;}
.x8a_c01092{left:383.177333pt;}
.x25_c01092{left:385.601333pt;}
.x6f_c01092{left:387.082827pt;}
.x4f_c01092{left:389.839871pt;}
.x90_c01092{left:391.844080pt;}
.x44_c01092{left:393.353333pt;}
.x74_c01092{left:396.315493pt;}
.x84_c01092{left:408.224587pt;}
.x8b_c01092{left:411.516000pt;}
.x45_c01092{left:413.849333pt;}
.x65_c01092{left:416.690480pt;}
.x3e_c01092{left:418.390901pt;}
.x7d_c01092{left:421.328133pt;}
.x2f_c01092{left:422.638947pt;}
.x36_c01092{left:426.958567pt;}
.x91_c01092{left:428.091733pt;}
.x26_c01092{left:432.657333pt;}
.x8c_c01092{left:433.592000pt;}
.xab_c01092{left:434.662480pt;}
.x9d_c01092{left:437.690427pt;}
.x95_c01092{left:439.383200pt;}
.x30_c01092{left:442.101487pt;}
.x37_c01092{left:446.398740pt;}
.xa3_c01092{left:448.730480pt;}
.x3c_c01092{left:449.997333pt;}
.x50_c01092{left:453.221204pt;}
.x38_c01092{left:458.667333pt;}
.x31_c01092{left:460.749420pt;}
.x9_c01092{left:463.641333pt;}
.x85_c01092{left:469.612523pt;}
.x59_c01092{left:473.024000pt;}
.x46_c01092{left:474.462667pt;}
.x27_c01092{left:479.280000pt;}
.x9e_c01092{left:481.632720pt;}
.xac_c01092{left:486.651493pt;}
.xa4_c01092{left:488.354267pt;}
.x70_c01092{left:491.223093pt;}
.xaa_c01092{left:492.807920pt;}
.x92_c01092{left:494.627760pt;}
.x47_c01092{left:495.717333pt;}
.x28_c01092{left:497.514667pt;}
.x5a_c01092{left:498.464000pt;}
.x3d_c01092{left:500.821333pt;}
.x60_c01092{left:502.876960pt;}
.x51_c01092{left:506.009204pt;}
.x10_c01092{left:508.265411pt;}
.x9f_c01092{left:513.267653pt;}
.x96_c01092{left:515.436533pt;}
.xae_c01092{left:539.332852pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_3e228581dce00795f19bf4a2.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.000000;font-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_c01093{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m3b_c01093{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);}
.m57_c01093{transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);}
.m59_c01093{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);}
.m66_c01093{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);}
.m67_c01093{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m2f_c01093{transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120840,0.000000,0.000000,0.250000,0,0);}
.m65_c01093{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);}
.m4_c01093{transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);}
.m1b_c01093{transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141185,0.000000,0.000000,0.250000,0,0);}
.m18_c01093{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m5e_c01093{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);}
.me_c01093{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);}
.m54_c01093{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);}
.m1e_c01093{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb_c01093{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);}
.m4a_c01093{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);}
.m23_c01093{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);}
.m56_c01093{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);}
.m28_c01093{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);}
.m47_c01093{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);}
.m33_c01093{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);}
.mf_c01093{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);}
.m32_c01093{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);}
.m20_c01093{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);}
.m34_c01093{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);}
.m12_c01093{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);}
.m19_c01093{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);}
.m6c_c01093{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);}
.m6b_c01093{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);}
.m36_c01093{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);}
.m1f_c01093{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);}
.m29_c01093{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);}
.m7_c01093{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);}
.m53_c01093{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);}
.m31_c01093{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);}
.m16_c01093{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);}
.m52_c01093{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_c01093{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);}
.m22_c01093{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);}
.m25_c01093{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);}
.m15_c01093{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);}
.m2c_c01093{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);}
.m24_c01093{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.md_c01093{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);}
.m17_c01093{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);}
.m4b_c01093{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);}
.m13_c01093{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);}
.m43_c01093{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);}
.m10_c01093{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);}
.m3f_c01093{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);}
.m27_c01093{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);}
.m2_c01093{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);}
.m6a_c01093{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);}
.m44_c01093{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);}
.m1c_c01093{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);}
.m21_c01093{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);}
.m14_c01093{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);}
.m38_c01093{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);}
.m49_c01093{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);}
.m1a_c01093{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);}
.m2a_c01093{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);}
.m69_c01093{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);}
.m4f_c01093{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);}
.m30_c01093{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);}
.m40_c01093{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);}
.m2b_c01093{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);}
.m11_c01093{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);}
.m8_c01093{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);}
.m37_c01093{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);}
.m3c_c01093{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m2e_c01093{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);}
.m2d_c01093{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);}
.m42_c01093{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);}
.m1d_c01093{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);}
.m41_c01093{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);}
.m46_c01093{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);}
.m55_c01093{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);}
.m3d_c01093{transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229735,0.000000,0.000000,0.250000,0,0);}
.m50_c01093{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);}
.m45_c01093{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);}
.m0_c01093{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);}
.mc_c01093{transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235630,0.000000,0.000000,0.250000,0,0);}
.m51_c01093{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m3_c01093{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);}
.m48_c01093{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);}
.m35_c01093{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m26_c01093{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);}
.m4d_c01093{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);}
.m63_c01093{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);}
.m64_c01093{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);}
.m61_c01093{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);}
.m5a_c01093{transform:matrix(0.322545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322545,0.000000,0.000000,0.250000,0,0);}
.m1_c01093{transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328925,0.000000,0.000000,0.250000,0,0);}
.m39_c01093{transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337725,0.000000,0.000000,0.250000,0,0);}
.m5_c01093{transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346315,0.000000,0.000000,0.250000,0,0);}
.m6_c01093{transform:matrix(0.356645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356645,0.000000,0.000000,0.250000,0,0);}
.m3e_c01093{transform:matrix(0.357680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357680,0.000000,0.000000,0.250000,0,0);}
.m4c_c01093{transform:matrix(0.362580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362580,0.000000,0.000000,0.250000,0,0);}
.m62_c01093{transform:matrix(0.379110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379110,0.000000,0.000000,0.250000,0,0);}
.m5b_c01093{transform:matrix(0.396220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396220,0.000000,0.000000,0.250000,0,0);}
.m60_c01093{transform:matrix(0.454980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454980,0.000000,0.000000,0.250000,0,0);}
.ma_c01093{transform:matrix(0.543265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543265,0.000000,0.000000,0.250000,0,0);}
.m68_c01093{transform:matrix(0.543521,0.049113,-0.022499,0.248986,0,0);-ms-transform:matrix(0.543521,0.049113,-0.022499,0.248986,0,0);-webkit-transform:matrix(0.543521,0.049113,-0.022499,0.248986,0,0);}
.m4e_c01093{transform:matrix(0.574195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574195,0.000000,0.000000,0.250000,0,0);}
.m5d_c01093{transform:matrix(0.593170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593170,0.000000,0.000000,0.250000,0,0);}
.m5f_c01093{transform:matrix(0.625340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625340,0.000000,0.000000,0.250000,0,0);}
.m5c_c01093{transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);}
.m9_c01093{transform:matrix(0.693435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693435,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls0_c01093{letter-spacing:0.000000px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:0.000000px;}
.fc0_c01093{color:transparent;}
.fs9_c01093{font-size:16.800000px;}
.fs8_c01093{font-size:25.200000px;}
.fs5_c01093{font-size:67.200000px;}
.fs4_c01093{font-size:69.300000px;}
.fs0_c01093{font-size:70.350000px;}
.fs1_c01093{font-size:71.400000px;}
.fs3_c01093{font-size:72.450000px;}
.fs6_c01093{font-size:73.500000px;}
.fs2_c01093{font-size:75.600000px;}
.fs7_c01093{font-size:84.000000px;}
.fsb_c01093{font-size:89.250000px;}
.fsa_c01093{font-size:161.709378px;}
.y0_c01093{bottom:0.000000px;}
.yc_c01093{bottom:537.784500px;}
.yb_c01093{bottom:655.948500px;}
.ya_c01093{bottom:659.340000px;}
.y9_c01093{bottom:665.091000px;}
.y8_c01093{bottom:674.217000px;}
.y7_c01093{bottom:697.651500px;}
.y6_c01093{bottom:720.583500px;}
.y5_c01093{bottom:743.310000px;}
.y4_c01093{bottom:766.137000px;}
.y3_c01093{bottom:793.710000px;}
.y2_c01093{bottom:817.233000px;}
.y1_c01093{bottom:839.395500px;}
.hb_c01093{height:16.800000px;}
.ha_c01093{height:25.200000px;}
.h7_c01093{height:67.200000px;}
.h6_c01093{height:69.300000px;}
.h2_c01093{height:70.350000px;}
.h3_c01093{height:71.400000px;}
.h5_c01093{height:72.450000px;}
.h8_c01093{height:73.500000px;}
.h4_c01093{height:75.600000px;}
.h9_c01093{height:84.000000px;}
.hd_c01093{height:89.250000px;}
.hc_c01093{height:161.709378px;}
.h0_c01093{height:1008.450000px;}
.h1_c01093{height:1008.750000px;}
.w0_c01093{width:711.720000px;}
.w1_c01093{width:711.750000px;}
.x0_c01093{left:0.000000px;}
.x33_c01093{left:99.630000px;}
.x4b_c01093{left:105.570000px;}
.x40_c01093{left:112.590000px;}
.x1_c01093{left:113.940000px;}
.x1d_c01093{left:131.490000px;}
.x28_c01093{left:132.570000px;}
.x2_c01093{left:138.240000px;}
.x3_c01093{left:150.930000px;}
.x34_c01093{left:153.900000px;}
.x1e_c01093{left:154.980000px;}
.x41_c01093{left:157.410000px;}
.x18_c01093{left:160.110000px;}
.xe_c01093{left:164.970000px;}
.xf_c01093{left:185.490000px;}
.x4_c01093{left:186.840000px;}
.x1f_c01093{left:196.830000px;}
.x42_c01093{left:200.880000px;}
.x35_c01093{left:202.770000px;}
.x29_c01093{left:213.570000px;}
.x10_c01093{left:221.400000px;}
.x2a_c01093{left:226.530000px;}
.x20_c01093{left:228.960000px;}
.x43_c01093{left:231.390000px;}
.x36_c01093{left:240.840000px;}
.x5_c01093{left:244.350000px;}
.x44_c01093{left:248.670000px;}
.x57_c01093{left:251.218500px;}
.x6_c01093{left:255.420000px;}
.x2b_c01093{left:261.090000px;}
.x4e_c01093{left:276.480000px;}
.x7_c01093{left:282.420000px;}
.x37_c01093{left:283.770000px;}
.x2c_c01093{left:288.090000px;}
.x52_c01093{left:292.410000px;}
.x19_c01093{left:294.030000px;}
.x4f_c01093{left:296.190000px;}
.x11_c01093{left:297.270000px;}
.x38_c01093{left:307.530000px;}
.x12_c01093{left:309.690000px;}
.x8_c01093{left:313.740000px;}
.x1a_c01093{left:316.170000px;}
.x4c_c01093{left:322.650000px;}
.x58_c01093{left:328.050000px;}
.x45_c01093{left:331.290000px;}
.x2d_c01093{left:336.150000px;}
.x39_c01093{left:341.820000px;}
.x13_c01093{left:355.050000px;}
.x46_c01093{left:356.940000px;}
.x2e_c01093{left:365.580000px;}
.x9_c01093{left:370.710000px;}
.x21_c01093{left:374.490000px;}
.x59_c01093{left:375.570000px;}
.x22_c01093{left:387.720000px;}
.xa_c01093{left:392.310000px;}
.x3a_c01093{left:400.680000px;}
.x1b_c01093{left:406.620000px;}
.x47_c01093{left:411.750000px;}
.x14_c01093{left:413.370000px;}
.x3b_c01093{left:422.280000px;}
.x23_c01093{left:426.870000px;}
.x2f_c01093{left:430.650000px;}
.x15_c01093{left:432.540000px;}
.x50_c01093{left:435.510000px;}
.x1c_c01093{left:437.400000px;}
.x24_c01093{left:454.680000px;}
.x48_c01093{left:456.840000px;}
.xb_c01093{left:463.860000px;}
.x3c_c01093{left:470.880000px;}
.x51_c01093{left:478.710000px;}
.x16_c01093{left:482.220000px;}
.x53_c01093{left:483.840000px;}
.x25_c01093{left:487.890000px;}
.x3d_c01093{left:490.860000px;}
.x30_c01093{left:494.100000px;}
.x54_c01093{left:503.820000px;}
.x26_c01093{left:506.250000px;}
.x55_c01093{left:509.760000px;}
.x3e_c01093{left:516.510000px;}
.xc_c01093{left:522.180000px;}
.x49_c01093{left:526.770000px;}
.x17_c01093{left:529.740000px;}
.x56_c01093{left:531.900000px;}
.x27_c01093{left:536.490000px;}
.x31_c01093{left:538.650000px;}
.x3f_c01093{left:553.770000px;}
.x32_c01093{left:554.850000px;}
.xd_c01093{left:560.520000px;}
.x4a_c01093{left:568.350000px;}
.x4d_c01093{left:591.030000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ws0_c01093{word-spacing:0.000000pt;}
.fs9_c01093{font-size:14.933333pt;}
.fs8_c01093{font-size:22.400000pt;}
.fs5_c01093{font-size:59.733333pt;}
.fs4_c01093{font-size:61.600000pt;}
.fs0_c01093{font-size:62.533333pt;}
.fs1_c01093{font-size:63.466667pt;}
.fs3_c01093{font-size:64.400000pt;}
.fs6_c01093{font-size:65.333333pt;}
.fs2_c01093{font-size:67.200000pt;}
.fs7_c01093{font-size:74.666667pt;}
.fsb_c01093{font-size:79.333333pt;}
.fsa_c01093{font-size:143.741670pt;}
.y0_c01093{bottom:0.000000pt;}
.yc_c01093{bottom:478.030667pt;}
.yb_c01093{bottom:583.065333pt;}
.ya_c01093{bottom:586.080000pt;}
.y9_c01093{bottom:591.192000pt;}
.y8_c01093{bottom:599.304000pt;}
.y7_c01093{bottom:620.134667pt;}
.y6_c01093{bottom:640.518667pt;}
.y5_c01093{bottom:660.720000pt;}
.y4_c01093{bottom:681.010667pt;}
.y3_c01093{bottom:705.520000pt;}
.y2_c01093{bottom:726.429333pt;}
.y1_c01093{bottom:746.129333pt;}
.hb_c01093{height:14.933333pt;}
.ha_c01093{height:22.400000pt;}
.h7_c01093{height:59.733333pt;}
.h6_c01093{height:61.600000pt;}
.h2_c01093{height:62.533333pt;}
.h3_c01093{height:63.466667pt;}
.h5_c01093{height:64.400000pt;}
.h8_c01093{height:65.333333pt;}
.h4_c01093{height:67.200000pt;}
.h9_c01093{height:74.666667pt;}
.hd_c01093{height:79.333333pt;}
.hc_c01093{height:143.741670pt;}
.h0_c01093{height:896.400000pt;}
.h1_c01093{height:896.666667pt;}
.w0_c01093{width:632.640000pt;}
.w1_c01093{width:632.666667pt;}
.x0_c01093{left:0.000000pt;}
.x33_c01093{left:88.560000pt;}
.x4b_c01093{left:93.840000pt;}
.x40_c01093{left:100.080000pt;}
.x1_c01093{left:101.280000pt;}
.x1d_c01093{left:116.880000pt;}
.x28_c01093{left:117.840000pt;}
.x2_c01093{left:122.880000pt;}
.x3_c01093{left:134.160000pt;}
.x34_c01093{left:136.800000pt;}
.x1e_c01093{left:137.760000pt;}
.x41_c01093{left:139.920000pt;}
.x18_c01093{left:142.320000pt;}
.xe_c01093{left:146.640000pt;}
.xf_c01093{left:164.880000pt;}
.x4_c01093{left:166.080000pt;}
.x1f_c01093{left:174.960000pt;}
.x42_c01093{left:178.560000pt;}
.x35_c01093{left:180.240000pt;}
.x29_c01093{left:189.840000pt;}
.x10_c01093{left:196.800000pt;}
.x2a_c01093{left:201.360000pt;}
.x20_c01093{left:203.520000pt;}
.x43_c01093{left:205.680000pt;}
.x36_c01093{left:214.080000pt;}
.x5_c01093{left:217.200000pt;}
.x44_c01093{left:221.040000pt;}
.x57_c01093{left:223.305333pt;}
.x6_c01093{left:227.040000pt;}
.x2b_c01093{left:232.080000pt;}
.x4e_c01093{left:245.760000pt;}
.x7_c01093{left:251.040000pt;}
.x37_c01093{left:252.240000pt;}
.x2c_c01093{left:256.080000pt;}
.x52_c01093{left:259.920000pt;}
.x19_c01093{left:261.360000pt;}
.x4f_c01093{left:263.280000pt;}
.x11_c01093{left:264.240000pt;}
.x38_c01093{left:273.360000pt;}
.x12_c01093{left:275.280000pt;}
.x8_c01093{left:278.880000pt;}
.x1a_c01093{left:281.040000pt;}
.x4c_c01093{left:286.800000pt;}
.x58_c01093{left:291.600000pt;}
.x45_c01093{left:294.480000pt;}
.x2d_c01093{left:298.800000pt;}
.x39_c01093{left:303.840000pt;}
.x13_c01093{left:315.600000pt;}
.x46_c01093{left:317.280000pt;}
.x2e_c01093{left:324.960000pt;}
.x9_c01093{left:329.520000pt;}
.x21_c01093{left:332.880000pt;}
.x59_c01093{left:333.840000pt;}
.x22_c01093{left:344.640000pt;}
.xa_c01093{left:348.720000pt;}
.x3a_c01093{left:356.160000pt;}
.x1b_c01093{left:361.440000pt;}
.x47_c01093{left:366.000000pt;}
.x14_c01093{left:367.440000pt;}
.x3b_c01093{left:375.360000pt;}
.x23_c01093{left:379.440000pt;}
.x2f_c01093{left:382.800000pt;}
.x15_c01093{left:384.480000pt;}
.x50_c01093{left:387.120000pt;}
.x1c_c01093{left:388.800000pt;}
.x24_c01093{left:404.160000pt;}
.x48_c01093{left:406.080000pt;}
.xb_c01093{left:412.320000pt;}
.x3c_c01093{left:418.560000pt;}
.x51_c01093{left:425.520000pt;}
.x16_c01093{left:428.640000pt;}
.x53_c01093{left:430.080000pt;}
.x25_c01093{left:433.680000pt;}
.x3d_c01093{left:436.320000pt;}
.x30_c01093{left:439.200000pt;}
.x54_c01093{left:447.840000pt;}
.x26_c01093{left:450.000000pt;}
.x55_c01093{left:453.120000pt;}
.x3e_c01093{left:459.120000pt;}
.xc_c01093{left:464.160000pt;}
.x49_c01093{left:468.240000pt;}
.x17_c01093{left:470.880000pt;}
.x56_c01093{left:472.800000pt;}
.x27_c01093{left:476.880000pt;}
.x31_c01093{left:478.800000pt;}
.x3f_c01093{left:492.240000pt;}
.x32_c01093{left:493.200000pt;}
.xd_c01093{left:498.240000pt;}
.x4a_c01093{left:505.200000pt;}
.x4d_c01093{left:525.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_c01094 {
    display:none;
  }
  .loading-indicator_c01094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01094" -> "#page-container .classname_c01094")
 */
.pf_c01094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01094 {overflow:visible;}
  }
}
.c_c01094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01094:after { /* webkit #35443 */
  content: '';
}
.t_c01094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01094 { /* info for Javascript */
  display:none;
}
.l_c01094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_7e82a00465be6f720353c393.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.000000;font-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_c01094{transform:matrix(1.486160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.486160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.486160,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls0_c01094{letter-spacing:0.000000px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:0.000000px;}
.fc0_c01094{color:transparent;}
.fs0_c01094{font-size:16.800000px;}
.y0_c01094{bottom:0.000000px;}
.y1_c01094{bottom:486.145500px;}
.h2_c01094{height:16.800000px;}
.h0_c01094{height:1082.970000px;}
.h1_c01094{height:1083.000000px;}
.w0_c01094{width:739.200000px;}
.w1_c01094{width:739.500000px;}
.x0_c01094{left:0.000000px;}
.x1_c01094{left:431.730000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls0_c01094{letter-spacing:0.000000pt;}
.ws0_c01094{word-spacing:0.000000pt;}
.fs0_c01094{font-size:14.933333pt;}
.y0_c01094{bottom:0.000000pt;}
.y1_c01094{bottom:432.129333pt;}
.h2_c01094{height:14.933333pt;}
.h0_c01094{height:962.640000pt;}
.h1_c01094{height:962.666667pt;}
.w0_c01094{width:657.066667pt;}
.w1_c01094{width:657.333333pt;}
.x0_c01094{left:0.000000pt;}
.x1_c01094{left:383.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_c01095 {
    display:none;
  }
  .loading-indicator_c01095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01095 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01095 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01095" -> "#page-container .classname_c01095")
 */
.pf_c01095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01095 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01095 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01095 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01095 {overflow:visible;}
  }
}
.c_c01095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01095 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01095:after { /* webkit #35443 */
  content: '';
}
.t_c01095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01095 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01095 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01095 { /* info for Javascript */
  display:none;
}
.l_c01095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
.sc__c01095{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
}
.y0_c01095{bottom:0.000000px;}
.h0_c01095{height:1008.450000px;}
.h1_c01095{height:1008.750000px;}
.w0_c01095{width:711.720000px;}
.w1_c01095{width:711.750000px;}
.x0_c01095{left:0.000000px;}
@media print{
.y0_c01095{bottom:0.000000pt;}
.h0_c01095{height:896.400000pt;}
.h1_c01095{height:896.666667pt;}
.w0_c01095{width:632.640000pt;}
.w1_c01095{width:632.666667pt;}
.x0_c01095{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_c01096 {
    display:none;
  }
  .loading-indicator_c01096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01096 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01096 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01096" -> "#page-container .classname_c01096")
 */
.pf_c01096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01096 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01096 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01096 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01096 {overflow:visible;}
  }
}
.c_c01096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01096 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01096:after { /* webkit #35443 */
  content: '';
}
.t_c01096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01096 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01096 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01096 { /* info for Javascript */
  display:none;
}
.l_c01096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_77d56abf778ac7b9c55849c1.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.000000;font-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_c01096{transform:matrix(0.124661,0.003117,-0.006248,0.249922,0,0);-ms-transform:matrix(0.124661,0.003117,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.124661,0.003117,-0.006248,0.249922,0,0);}
.m1_c01096{transform:matrix(0.240050,0.006001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240050,0.006001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240050,0.006001,-0.006248,0.249922,0,0);}
.m2_c01096{transform:matrix(0.265577,0.006639,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265577,0.006639,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265577,0.006639,-0.006248,0.249922,0,0);}
.m0_c01096{transform:matrix(0.312397,0.007810,-0.006248,0.249922,0,0);-ms-transform:matrix(0.312397,0.007810,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.312397,0.007810,-0.006248,0.249922,0,0);}
.m4_c01096{transform:matrix(0.363761,0.009094,-0.006248,0.249922,0,0);-ms-transform:matrix(0.363761,0.009094,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.363761,0.009094,-0.006248,0.249922,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls0_c01096{letter-spacing:0.000000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
.fc0_c01096{color:transparent;}
.fs0_c01096{font-size:44.113779px;}
.fs1_c01096{font-size:207.964959px;}
.y0_c01096{bottom:0.000000px;}
.y5_c01096{bottom:860.376750px;}
.y4_c01096{bottom:862.405500px;}
.y3_c01096{bottom:903.153675px;}
.y2_c01096{bottom:903.646425px;}
.y1_c01096{bottom:905.854500px;}
.h2_c01096{height:44.113779px;}
.h3_c01096{height:207.964959px;}
.h1_c01096{height:1009.500000px;}
.h0_c01096{height:1009.800000px;}
.w0_c01096{width:739.200000px;}
.w1_c01096{width:739.500000px;}
.x0_c01096{left:0.000000px;}
.x4_c01096{left:299.146500px;}
.x1_c01096{left:378.061500px;}
.x5_c01096{left:380.296500px;}
.x2_c01096{left:466.384500px;}
.x3_c01096{left:486.094500px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws0_c01096{word-spacing:0.000000pt;}
.fs0_c01096{font-size:39.212248pt;}
.fs1_c01096{font-size:184.857741pt;}
.y0_c01096{bottom:0.000000pt;}
.y5_c01096{bottom:764.779333pt;}
.y4_c01096{bottom:766.582667pt;}
.y3_c01096{bottom:802.803267pt;}
.y2_c01096{bottom:803.241267pt;}
.y1_c01096{bottom:805.204000pt;}
.h2_c01096{height:39.212248pt;}
.h3_c01096{height:184.857741pt;}
.h1_c01096{height:897.333333pt;}
.h0_c01096{height:897.600000pt;}
.w0_c01096{width:657.066667pt;}
.w1_c01096{width:657.333333pt;}
.x0_c01096{left:0.000000pt;}
.x4_c01096{left:265.908000pt;}
.x1_c01096{left:336.054667pt;}
.x5_c01096{left:338.041333pt;}
.x2_c01096{left:414.564000pt;}
.x3_c01096{left:432.084000pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_14025ded6d3b6459575aaacd.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.000000;font-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_c01097{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);}
.m1_c01097{transform:matrix(0.801030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801030,0.000000,0.000000,0.250000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls0_c01097{letter-spacing:0.000000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:0.000000px;}
.fc0_c01097{color:transparent;}
.fs0_c01097{font-size:22.050000px;}
.fs1_c01097{font-size:26.250000px;}
.y0_c01097{bottom:0.000000px;}
.y2_c01097{bottom:1047.870000px;}
.y1_c01097{bottom:1222.426500px;}
.h2_c01097{height:22.050000px;}
.h3_c01097{height:26.250000px;}
.h0_c01097{height:1325.100000px;}
.h1_c01097{height:1325.250000px;}
.w0_c01097{width:1180.440000px;}
.w1_c01097{width:1180.500000px;}
.x0_c01097{left:0.000000px;}
.x1_c01097{left:105.030000px;}
.x2_c01097{left:976.860000px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ws0_c01097{word-spacing:0.000000pt;}
.fs0_c01097{font-size:19.600000pt;}
.fs1_c01097{font-size:23.333333pt;}
.y0_c01097{bottom:0.000000pt;}
.y2_c01097{bottom:931.440000pt;}
.y1_c01097{bottom:1086.601333pt;}
.h2_c01097{height:19.600000pt;}
.h3_c01097{height:23.333333pt;}
.h0_c01097{height:1177.866667pt;}
.h1_c01097{height:1178.000000pt;}
.w0_c01097{width:1049.280000pt;}
.w1_c01097{width:1049.333333pt;}
.x0_c01097{left:0.000000pt;}
.x1_c01097{left:93.360000pt;}
.x2_c01097{left:868.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_c01098 {
    display:none;
  }
  .loading-indicator_c01098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01098 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01098 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01098" -> "#page-container .classname_c01098")
 */
.pf_c01098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01098 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01098 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01098 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01098 {overflow:visible;}
  }
}
.c_c01098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01098 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01098:after { /* webkit #35443 */
  content: '';
}
.t_c01098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01098 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01098 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01098 { /* info for Javascript */
  display:none;
}
.l_c01098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_50880d65065bfd146211a3fe.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.000000;font-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_c01098{transform:matrix(0.000012,-0.011545,0.250000,0.000250,0,0);-ms-transform:matrix(0.000012,-0.011545,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000012,-0.011545,0.250000,0.000250,0,0);}
.m1a_c01098{transform:matrix(0.000017,-0.017315,0.250000,0.000250,0,0);-ms-transform:matrix(0.000017,-0.017315,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000017,-0.017315,0.250000,0.000250,0,0);}
.m22_c01098{transform:matrix(0.000022,-0.011140,0.250000,0.000500,0,0);-ms-transform:matrix(0.000022,-0.011140,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000022,-0.011140,0.250000,0.000500,0,0);}
.m16_c01098{transform:matrix(0.000031,-0.031185,0.250000,0.000250,0,0);-ms-transform:matrix(0.000031,-0.031185,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000031,-0.031185,0.250000,0.000250,0,0);}
.mc_c01098{transform:matrix(0.000035,-0.034750,0.250000,0.000250,0,0);-ms-transform:matrix(0.000035,-0.034750,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000035,-0.034750,0.250000,0.000250,0,0);}
.m1f_c01098{transform:matrix(0.000036,-0.018180,0.250000,0.000500,0,0);-ms-transform:matrix(0.000036,-0.018180,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000036,-0.018180,0.250000,0.000500,0,0);}
.m15_c01098{transform:matrix(0.000044,-0.044100,0.250000,0.000250,0,0);-ms-transform:matrix(0.000044,-0.044100,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000044,-0.044100,0.250000,0.000250,0,0);}
.m10_c01098{transform:matrix(0.000055,-0.054610,0.250000,0.000250,0,0);-ms-transform:matrix(0.000055,-0.054610,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000055,-0.054610,0.250000,0.000250,0,0);}
.m27_c01098{transform:matrix(0.000074,-0.036960,0.250000,0.000500,0,0);-ms-transform:matrix(0.000074,-0.036960,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000074,-0.036960,0.250000,0.000500,0,0);}
.m13_c01098{transform:matrix(0.000087,-0.086550,0.250000,0.000250,0,0);-ms-transform:matrix(0.000087,-0.086550,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000087,-0.086550,0.250000,0.000250,0,0);}
.m2f_c01098{transform:matrix(0.000117,-0.058475,0.250000,0.000500,0,0);-ms-transform:matrix(0.000117,-0.058475,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000117,-0.058475,0.250000,0.000500,0,0);}
.m2a_c01098{transform:matrix(0.000120,-0.060235,0.250000,0.000500,0,0);-ms-transform:matrix(0.000120,-0.060235,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000120,-0.060235,0.250000,0.000500,0,0);}
.md_c01098{transform:matrix(0.000127,-0.126820,0.250000,0.000250,0,0);-ms-transform:matrix(0.000127,-0.126820,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000127,-0.126820,0.250000,0.000250,0,0);}
.m18_c01098{transform:matrix(0.000128,-0.128165,0.250000,0.000250,0,0);-ms-transform:matrix(0.000128,-0.128165,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000128,-0.128165,0.250000,0.000250,0,0);}
.m14_c01098{transform:matrix(0.000131,-0.130560,0.250000,0.000250,0,0);-ms-transform:matrix(0.000131,-0.130560,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000131,-0.130560,0.250000,0.000250,0,0);}
.mf_c01098{transform:matrix(0.000141,-0.140825,0.250000,0.000250,0,0);-ms-transform:matrix(0.000141,-0.140825,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000141,-0.140825,0.250000,0.000250,0,0);}
.m26_c01098{transform:matrix(0.000142,-0.071095,0.250000,0.000500,0,0);-ms-transform:matrix(0.000142,-0.071095,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000142,-0.071095,0.250000,0.000500,0,0);}
.m8_c01098{transform:matrix(0.000142,-0.142395,0.250000,0.000250,0,0);-ms-transform:matrix(0.000142,-0.142395,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000142,-0.142395,0.250000,0.000250,0,0);}
.m11_c01098{transform:matrix(0.000148,-0.148430,0.250000,0.000250,0,0);-ms-transform:matrix(0.000148,-0.148430,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000148,-0.148430,0.250000,0.000250,0,0);}
.m28_c01098{transform:matrix(0.000154,-0.076870,0.250000,0.000500,0,0);-ms-transform:matrix(0.000154,-0.076870,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000154,-0.076870,0.250000,0.000500,0,0);}
.m17_c01098{transform:matrix(0.000154,-0.154255,0.250000,0.000250,0,0);-ms-transform:matrix(0.000154,-0.154255,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000154,-0.154255,0.250000,0.000250,0,0);}
.m3f_c01098{transform:matrix(0.000177,0.176525,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000177,0.176525,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000177,0.176525,-0.250000,0.000250,0,0);}
.m3e_c01098{transform:matrix(0.000178,0.177845,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000178,0.177845,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000178,0.177845,-0.250000,0.000250,0,0);}
.m9_c01098{transform:matrix(0.000181,-0.181295,0.250000,0.000250,0,0);-ms-transform:matrix(0.000181,-0.181295,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000181,-0.181295,0.250000,0.000250,0,0);}
.m30_c01098{transform:matrix(0.000183,-0.091290,0.250000,0.000500,0,0);-ms-transform:matrix(0.000183,-0.091290,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000183,-0.091290,0.250000,0.000500,0,0);}
.ma_c01098{transform:matrix(0.000202,-0.201825,0.250000,0.000250,0,0);-ms-transform:matrix(0.000202,-0.201825,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000202,-0.201825,0.250000,0.000250,0,0);}
.m24_c01098{transform:matrix(0.000205,-0.102700,0.250000,0.000500,0,0);-ms-transform:matrix(0.000205,-0.102700,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000205,-0.102700,0.250000,0.000500,0,0);}
.mb_c01098{transform:matrix(0.000209,-0.208860,0.250000,0.000250,0,0);-ms-transform:matrix(0.000209,-0.208860,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000209,-0.208860,0.250000,0.000250,0,0);}
.m7_c01098{transform:matrix(0.000210,-0.209800,0.250000,0.000250,0,0);-ms-transform:matrix(0.000210,-0.209800,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000210,-0.209800,0.250000,0.000250,0,0);}
.me_c01098{transform:matrix(0.000211,-0.211370,0.250000,0.000250,0,0);-ms-transform:matrix(0.000211,-0.211370,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000211,-0.211370,0.250000,0.000250,0,0);}
.m20_c01098{transform:matrix(0.000225,-0.112745,0.250000,0.000500,0,0);-ms-transform:matrix(0.000225,-0.112745,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000225,-0.112745,0.250000,0.000500,0,0);}
.m23_c01098{transform:matrix(0.000240,-0.119970,0.250000,0.000500,0,0);-ms-transform:matrix(0.000240,-0.119970,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000240,-0.119970,0.250000,0.000500,0,0);}
.m2_c01098{transform:matrix(0.000256,-0.255830,0.250000,0.000250,0,0);-ms-transform:matrix(0.000256,-0.255830,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000256,-0.255830,0.250000,0.000250,0,0);}
.m1d_c01098{transform:matrix(0.000265,-0.264745,0.250000,0.000250,0,0);-ms-transform:matrix(0.000265,-0.264745,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000265,-0.264745,0.250000,0.000250,0,0);}
.m2e_c01098{transform:matrix(0.000273,-0.136345,0.250000,0.000500,0,0);-ms-transform:matrix(0.000273,-0.136345,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000273,-0.136345,0.250000,0.000500,0,0);}
.m2b_c01098{transform:matrix(0.000277,-0.138670,0.250000,0.000500,0,0);-ms-transform:matrix(0.000277,-0.138670,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000277,-0.138670,0.250000,0.000500,0,0);}
.m6_c01098{transform:matrix(0.000288,-0.288345,0.250000,0.000250,0,0);-ms-transform:matrix(0.000288,-0.288345,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000288,-0.288345,0.250000,0.000250,0,0);}
.m31_c01098{transform:matrix(0.000289,-0.144575,0.250000,0.000500,0,0);-ms-transform:matrix(0.000289,-0.144575,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000289,-0.144575,0.250000,0.000500,0,0);}
.m1c_c01098{transform:matrix(0.000298,-0.298220,0.250000,0.000250,0,0);-ms-transform:matrix(0.000298,-0.298220,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000298,-0.298220,0.250000,0.000250,0,0);}
.m21_c01098{transform:matrix(0.000310,-0.155150,0.250000,0.000500,0,0);-ms-transform:matrix(0.000310,-0.155150,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000310,-0.155150,0.250000,0.000500,0,0);}
.m1e_c01098{transform:matrix(0.000320,-0.160240,0.250000,0.000500,0,0);-ms-transform:matrix(0.000320,-0.160240,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000320,-0.160240,0.250000,0.000500,0,0);}
.m1b_c01098{transform:matrix(0.000364,-0.363655,0.250000,0.000250,0,0);-ms-transform:matrix(0.000364,-0.363655,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000364,-0.363655,0.250000,0.000250,0,0);}
.m33_c01098{transform:matrix(0.000398,-0.198795,0.250000,0.000500,0,0);-ms-transform:matrix(0.000398,-0.198795,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000398,-0.198795,0.250000,0.000500,0,0);}
.m25_c01098{transform:matrix(0.000412,-0.205875,0.250000,0.000500,0,0);-ms-transform:matrix(0.000412,-0.205875,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000412,-0.205875,0.250000,0.000500,0,0);}
.m32_c01098{transform:matrix(0.000427,-0.213290,0.250000,0.000500,0,0);-ms-transform:matrix(0.000427,-0.213290,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000427,-0.213290,0.250000,0.000500,0,0);}
.m34_c01098{transform:matrix(0.000429,-0.214420,0.250000,0.000500,0,0);-ms-transform:matrix(0.000429,-0.214420,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000429,-0.214420,0.250000,0.000500,0,0);}
.m29_c01098{transform:matrix(0.000465,-0.232505,0.250000,0.000500,0,0);-ms-transform:matrix(0.000465,-0.232505,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000465,-0.232505,0.250000,0.000500,0,0);}
.m12_c01098{transform:matrix(0.000492,-0.491955,0.250000,0.000250,0,0);-ms-transform:matrix(0.000492,-0.491955,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000492,-0.491955,0.250000,0.000250,0,0);}
.m2c_c01098{transform:matrix(0.000497,-0.248350,0.250000,0.000500,0,0);-ms-transform:matrix(0.000497,-0.248350,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000497,-0.248350,0.250000,0.000500,0,0);}
.m2d_c01098{transform:matrix(0.000574,-0.287139,0.250000,0.000500,0,0);-ms-transform:matrix(0.000574,-0.287139,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000574,-0.287139,0.250000,0.000500,0,0);}
.m38_c01098{transform:matrix(0.000606,-0.302899,0.250000,0.000500,0,0);-ms-transform:matrix(0.000606,-0.302899,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000606,-0.302899,0.250000,0.000500,0,0);}
.m39_c01098{transform:matrix(0.000747,-0.373554,0.250000,0.000500,0,0);-ms-transform:matrix(0.000747,-0.373554,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000747,-0.373554,0.250000,0.000500,0,0);}
.m36_c01098{transform:matrix(0.000833,-0.416394,0.250000,0.000500,0,0);-ms-transform:matrix(0.000833,-0.416394,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000833,-0.416394,0.250000,0.000500,0,0);}
.m37_c01098{transform:matrix(0.001227,-0.613609,0.250000,0.000500,0,0);-ms-transform:matrix(0.001227,-0.613609,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001227,-0.613609,0.250000,0.000500,0,0);}
.m35_c01098{transform:matrix(0.001291,-0.645694,0.250000,0.000500,0,0);-ms-transform:matrix(0.001291,-0.645694,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001291,-0.645694,0.250000,0.000500,0,0);}
.m3_c01098{transform:matrix(0.001483,-1.483074,0.250000,0.000250,0,0);-ms-transform:matrix(0.001483,-1.483074,0.250000,0.000250,0,0);-webkit-transform:matrix(0.001483,-1.483074,0.250000,0.000250,0,0);}
.m1_c01098{transform:matrix(0.001692,0.211558,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001692,0.211558,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001692,0.211558,-0.249992,0.002000,0,0);}
.m41_c01098{transform:matrix(0.001767,0.160645,-0.249985,0.002750,0,0);-ms-transform:matrix(0.001767,0.160645,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.001767,0.160645,-0.249985,0.002750,0,0);}
.m0_c01098{transform:matrix(0.001968,0.245947,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001968,0.245947,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001968,0.245947,-0.249992,0.002000,0,0);}
.m4_c01098{transform:matrix(0.002015,-2.014739,0.250000,0.000250,0,0);-ms-transform:matrix(0.002015,-2.014739,0.250000,0.000250,0,0);-webkit-transform:matrix(0.002015,-2.014739,0.250000,0.000250,0,0);}
.m5_c01098{transform:matrix(0.002235,-2.235164,0.250000,0.000250,0,0);-ms-transform:matrix(0.002235,-2.235164,0.250000,0.000250,0,0);-webkit-transform:matrix(0.002235,-2.235164,0.250000,0.000250,0,0);}
.m40_c01098{transform:matrix(0.002687,0.244290,-0.249985,0.002750,0,0);-ms-transform:matrix(0.002687,0.244290,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.002687,0.244290,-0.249985,0.002750,0,0);}
.m42_c01098{transform:matrix(0.004288,0.389791,-0.249985,0.002750,0,0);-ms-transform:matrix(0.004288,0.389791,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.004288,0.389791,-0.249985,0.002750,0,0);}
.m3c_c01098{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);}
.m3d_c01098{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);}
.m3b_c01098{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);}
.m3a_c01098{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);}
.m43_c01098{transform:matrix(0.678655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678655,0.000000,0.000000,0.250000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls0_c01098{letter-spacing:0.000000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01098{word-spacing:0.000000px;}
.fc0_c01098{color:transparent;}
.fs11_c01098{font-size:16.800034px;}
.fsa_c01098{font-size:21.000010px;}
.fs10_c01098{font-size:23.100046px;}
.fs2_c01098{font-size:27.300014px;}
.fs19_c01098{font-size:28.350000px;}
.fse_c01098{font-size:28.350057px;}
.fs4_c01098{font-size:32.550016px;}
.fs3_c01098{font-size:33.600017px;}
.fs13_c01098{font-size:35.700000px;}
.fs8_c01098{font-size:35.700018px;}
.fs12_c01098{font-size:35.700071px;}
.fs5_c01098{font-size:38.850019px;}
.fs14_c01098{font-size:40.950000px;}
.fsd_c01098{font-size:46.200092px;}
.fs7_c01098{font-size:51.450026px;}
.fsb_c01098{font-size:53.550107px;}
.fs6_c01098{font-size:61.950031px;}
.fs9_c01098{font-size:66.150033px;}
.fs15_c01098{font-size:74.550000px;}
.fsc_c01098{font-size:76.650153px;}
.fs18_c01098{font-size:84.005082px;}
.fs17_c01098{font-size:85.055145px;}
.fs1_c01098{font-size:91.350046px;}
.fsf_c01098{font-size:107.100214px;}
.fs0_c01098{font-size:110.253528px;}
.fs16_c01098{font-size:143.850072px;}
.y0_c01098{bottom:0.000000px;}
.y2b_c01098{bottom:39.404880px;}
.y2e_c01098{bottom:39.404940px;}
.y2d_c01098{bottom:39.405480px;}
.y2c_c01098{bottom:39.407460px;}
.y30_c01098{bottom:39.907695px;}
.y35_c01098{bottom:39.934560px;}
.y33_c01098{bottom:39.936003px;}
.y2a_c01098{bottom:39.939306px;}
.y26_c01098{bottom:40.231800px;}
.yc_c01098{bottom:40.493279px;}
.y8_c01098{bottom:40.500000px;}
.ya_c01098{bottom:40.504497px;}
.y22_c01098{bottom:40.509000px;}
.y18_c01098{bottom:40.752153px;}
.yf_c01098{bottom:40.759918px;}
.y3f_c01098{bottom:41.848500px;}
.y42_c01098{bottom:95.040000px;}
.y6_c01098{bottom:105.300000px;}
.y41_c01098{bottom:118.731621px;}
.y34_c01098{bottom:238.654995px;}
.y32_c01098{bottom:238.655745px;}
.y25_c01098{bottom:238.948938px;}
.y21_c01098{bottom:238.963500px;}
.y1f_c01098{bottom:239.197675px;}
.y17_c01098{bottom:239.203114px;}
.yb_c01098{bottom:239.480010px;}
.ye_c01098{bottom:239.481201px;}
.y7_c01098{bottom:239.484000px;}
.y14_c01098{bottom:239.487150px;}
.y5_c01098{bottom:413.904000px;}
.y3b_c01098{bottom:436.590000px;}
.y3d_c01098{bottom:436.860000px;}
.y3c_c01098{bottom:437.130000px;}
.y31_c01098{bottom:437.915490px;}
.y24_c01098{bottom:439.287579px;}
.y29_c01098{bottom:440.609448px;}
.y3a_c01098{bottom:490.315500px;}
.y11_c01098{bottom:564.833134px;}
.y1e_c01098{bottom:565.075348px;}
.y39_c01098{bottom:565.381500px;}
.y9_c01098{bottom:592.646127px;}
.y1b_c01098{bottom:597.489241px;}
.y38_c01098{bottom:612.085500px;}
.y28_c01098{bottom:637.442736px;}
.y1a_c01098{bottom:637.447711px;}
.y1d_c01098{bottom:637.711275px;}
.y16_c01098{bottom:637.714546px;}
.y10_c01098{bottom:640.155631px;}
.y13_c01098{bottom:661.757835px;}
.y37_c01098{bottom:666.360000px;}
.y36_c01098{bottom:730.890000px;}
.y2f_c01098{bottom:811.864800px;}
.y27_c01098{bottom:811.877820px;}
.y23_c01098{bottom:811.883340px;}
.y20_c01098{bottom:811.890000px;}
.y1c_c01098{bottom:812.123601px;}
.y19_c01098{bottom:812.133081px;}
.y15_c01098{bottom:812.141392px;}
.yd_c01098{bottom:812.141574px;}
.y12_c01098{bottom:812.143222px;}
.y4_c01098{bottom:1013.574000px;}
.y2_c01098{bottom:1031.125500px;}
.y40_c01098{bottom:1188.540000px;}
.y1_c01098{bottom:1212.570000px;}
.y3_c01098{bottom:1226.761500px;}
.y3e_c01098{bottom:1227.690000px;}
.h13_c01098{height:16.800034px;}
.hc_c01098{height:21.000010px;}
.h12_c01098{height:23.100046px;}
.h4_c01098{height:27.300014px;}
.h1b_c01098{height:28.350000px;}
.h10_c01098{height:28.350057px;}
.h6_c01098{height:32.550016px;}
.h5_c01098{height:33.600017px;}
.h15_c01098{height:35.700000px;}
.ha_c01098{height:35.700018px;}
.h14_c01098{height:35.700071px;}
.h7_c01098{height:38.850019px;}
.h16_c01098{height:40.950000px;}
.hf_c01098{height:46.200092px;}
.h9_c01098{height:51.450026px;}
.hd_c01098{height:53.550107px;}
.h8_c01098{height:61.950031px;}
.hb_c01098{height:66.150033px;}
.h17_c01098{height:74.550000px;}
.he_c01098{height:76.650153px;}
.h1a_c01098{height:84.005082px;}
.h19_c01098{height:85.055145px;}
.h3_c01098{height:91.350046px;}
.h11_c01098{height:107.100214px;}
.h2_c01098{height:110.253528px;}
.h18_c01098{height:143.850072px;}
.h1_c01098{height:1229.250000px;}
.h0_c01098{height:1229.550000px;}
.w0_c01098{width:855.600000px;}
.w1_c01098{width:855.750000px;}
.x0_c01098{left:0.000000px;}
.x26_c01098{left:6.326110px;}
.x25_c01098{left:17.550000px;}
.x23_c01098{left:32.130000px;}
.x24_c01098{left:33.315841px;}
.x22_c01098{left:258.660000px;}
.x21_c01098{left:272.430000px;}
.x20_c01098{left:392.310000px;}
.x1f_c01098{left:403.110000px;}
.x1e_c01098{left:416.340000px;}
.x1b_c01098{left:441.179739px;}
.x1d_c01098{left:444.586857px;}
.x1c_c01098{left:447.188355px;}
.x19_c01098{left:466.094925px;}
.x1a_c01098{left:468.794937px;}
.x17_c01098{left:471.419886px;}
.x18_c01098{left:473.383023px;}
.x16_c01098{left:480.136635px;}
.x15_c01098{left:481.409937px;}
.x14_c01098{left:492.684147px;}
.x13_c01098{left:493.830000px;}
.x12_c01098{left:506.524123px;}
.x11_c01098{left:507.671550px;}
.x10_c01098{left:514.691567px;}
.xe_c01098{left:540.880101px;}
.xf_c01098{left:543.085166px;}
.xd_c01098{left:545.549952px;}
.xc_c01098{left:546.550108px;}
.xb_c01098{left:554.469129px;}
.xa_c01098{left:570.998971px;}
.x9_c01098{left:572.198633px;}
.x8_c01098{left:579.689979px;}
.x7_c01098{left:583.004007px;}
.x6_c01098{left:584.426150px;}
.x5_c01098{left:596.700000px;}
.x4_c01098{left:635.538538px;}
.x3_c01098{left:636.660000px;}
.x1_c01098{left:822.420000px;}
.x2_c01098{left:823.871556px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws0_c01098{word-spacing:0.000000pt;}
.fs11_c01098{font-size:14.933363pt;}
.fsa_c01098{font-size:18.666676pt;}
.fs10_c01098{font-size:20.533374pt;}
.fs2_c01098{font-size:24.266679pt;}
.fs19_c01098{font-size:25.200000pt;}
.fse_c01098{font-size:25.200050pt;}
.fs4_c01098{font-size:28.933348pt;}
.fs3_c01098{font-size:29.866682pt;}
.fs13_c01098{font-size:31.733333pt;}
.fs8_c01098{font-size:31.733349pt;}
.fs12_c01098{font-size:31.733397pt;}
.fs5_c01098{font-size:34.533351pt;}
.fs14_c01098{font-size:36.400000pt;}
.fsd_c01098{font-size:41.066749pt;}
.fs7_c01098{font-size:45.733356pt;}
.fsb_c01098{font-size:47.600095pt;}
.fs6_c01098{font-size:55.066694pt;}
.fs9_c01098{font-size:58.800029pt;}
.fs15_c01098{font-size:66.266667pt;}
.fsc_c01098{font-size:68.133470pt;}
.fs18_c01098{font-size:74.671184pt;}
.fs17_c01098{font-size:75.604574pt;}
.fs1_c01098{font-size:81.200041pt;}
.fsf_c01098{font-size:95.200190pt;}
.fs0_c01098{font-size:98.003136pt;}
.fs16_c01098{font-size:127.866731pt;}
.y0_c01098{bottom:0.000000pt;}
.y2b_c01098{bottom:35.026560pt;}
.y2e_c01098{bottom:35.026613pt;}
.y2d_c01098{bottom:35.027093pt;}
.y2c_c01098{bottom:35.028853pt;}
.y30_c01098{bottom:35.473507pt;}
.y35_c01098{bottom:35.497387pt;}
.y33_c01098{bottom:35.498669pt;}
.y2a_c01098{bottom:35.501605pt;}
.y26_c01098{bottom:35.761600pt;}
.yc_c01098{bottom:35.994025pt;}
.y8_c01098{bottom:36.000000pt;}
.ya_c01098{bottom:36.003997pt;}
.y22_c01098{bottom:36.008000pt;}
.y18_c01098{bottom:36.224136pt;}
.yf_c01098{bottom:36.231039pt;}
.y3f_c01098{bottom:37.198667pt;}
.y42_c01098{bottom:84.480000pt;}
.y6_c01098{bottom:93.600000pt;}
.y41_c01098{bottom:105.539219pt;}
.y34_c01098{bottom:212.137773pt;}
.y32_c01098{bottom:212.138440pt;}
.y25_c01098{bottom:212.399056pt;}
.y21_c01098{bottom:212.412000pt;}
.y1f_c01098{bottom:212.620156pt;}
.y17_c01098{bottom:212.624991pt;}
.yb_c01098{bottom:212.871120pt;}
.ye_c01098{bottom:212.872179pt;}
.y7_c01098{bottom:212.874667pt;}
.y14_c01098{bottom:212.877467pt;}
.y5_c01098{bottom:367.914667pt;}
.y3b_c01098{bottom:388.080000pt;}
.y3d_c01098{bottom:388.320000pt;}
.y3c_c01098{bottom:388.560000pt;}
.y31_c01098{bottom:389.258213pt;}
.y24_c01098{bottom:390.477848pt;}
.y29_c01098{bottom:391.652843pt;}
.y3a_c01098{bottom:435.836000pt;}
.y11_c01098{bottom:502.073897pt;}
.y1e_c01098{bottom:502.289199pt;}
.y39_c01098{bottom:502.561333pt;}
.y9_c01098{bottom:526.796557pt;}
.y1b_c01098{bottom:531.101548pt;}
.y38_c01098{bottom:544.076000pt;}
.y28_c01098{bottom:566.615765pt;}
.y1a_c01098{bottom:566.620188pt;}
.y1d_c01098{bottom:566.854467pt;}
.y16_c01098{bottom:566.857375pt;}
.y10_c01098{bottom:569.027228pt;}
.y13_c01098{bottom:588.229187pt;}
.y37_c01098{bottom:592.320000pt;}
.y36_c01098{bottom:649.680000pt;}
.y2f_c01098{bottom:721.657600pt;}
.y27_c01098{bottom:721.669173pt;}
.y23_c01098{bottom:721.674080pt;}
.y20_c01098{bottom:721.680000pt;}
.y1c_c01098{bottom:721.887645pt;}
.y19_c01098{bottom:721.896072pt;}
.y15_c01098{bottom:721.903460pt;}
.yd_c01098{bottom:721.903621pt;}
.y12_c01098{bottom:721.905087pt;}
.y4_c01098{bottom:900.954667pt;}
.y2_c01098{bottom:916.556000pt;}
.y40_c01098{bottom:1056.480000pt;}
.y1_c01098{bottom:1077.840000pt;}
.y3_c01098{bottom:1090.454667pt;}
.y3e_c01098{bottom:1091.280000pt;}
.h13_c01098{height:14.933363pt;}
.hc_c01098{height:18.666676pt;}
.h12_c01098{height:20.533374pt;}
.h4_c01098{height:24.266679pt;}
.h1b_c01098{height:25.200000pt;}
.h10_c01098{height:25.200050pt;}
.h6_c01098{height:28.933348pt;}
.h5_c01098{height:29.866682pt;}
.h15_c01098{height:31.733333pt;}
.ha_c01098{height:31.733349pt;}
.h14_c01098{height:31.733397pt;}
.h7_c01098{height:34.533351pt;}
.h16_c01098{height:36.400000pt;}
.hf_c01098{height:41.066749pt;}
.h9_c01098{height:45.733356pt;}
.hd_c01098{height:47.600095pt;}
.h8_c01098{height:55.066694pt;}
.hb_c01098{height:58.800029pt;}
.h17_c01098{height:66.266667pt;}
.he_c01098{height:68.133470pt;}
.h1a_c01098{height:74.671184pt;}
.h19_c01098{height:75.604574pt;}
.h3_c01098{height:81.200041pt;}
.h11_c01098{height:95.200190pt;}
.h2_c01098{height:98.003136pt;}
.h18_c01098{height:127.866731pt;}
.h1_c01098{height:1092.666667pt;}
.h0_c01098{height:1092.933333pt;}
.w0_c01098{width:760.533333pt;}
.w1_c01098{width:760.666667pt;}
.x0_c01098{left:0.000000pt;}
.x26_c01098{left:5.623209pt;}
.x25_c01098{left:15.600000pt;}
.x23_c01098{left:28.560000pt;}
.x24_c01098{left:29.614081pt;}
.x22_c01098{left:229.920000pt;}
.x21_c01098{left:242.160000pt;}
.x20_c01098{left:348.720000pt;}
.x1f_c01098{left:358.320000pt;}
.x1e_c01098{left:370.080000pt;}
.x1b_c01098{left:392.159768pt;}
.x1d_c01098{left:395.188317pt;}
.x1c_c01098{left:397.500760pt;}
.x19_c01098{left:414.306600pt;}
.x1a_c01098{left:416.706611pt;}
.x17_c01098{left:419.039899pt;}
.x18_c01098{left:420.784909pt;}
.x16_c01098{left:426.788120pt;}
.x15_c01098{left:427.919944pt;}
.x14_c01098{left:437.941464pt;}
.x13_c01098{left:438.960000pt;}
.x12_c01098{left:450.243665pt;}
.x11_c01098{left:451.263600pt;}
.x10_c01098{left:457.503615pt;}
.xe_c01098{left:480.782312pt;}
.xf_c01098{left:482.742369pt;}
.xd_c01098{left:484.933291pt;}
.xc_c01098{left:485.822319pt;}
.xb_c01098{left:492.861448pt;}
.xa_c01098{left:507.554641pt;}
.x9_c01098{left:508.621007pt;}
.x8_c01098{left:515.279981pt;}
.x7_c01098{left:518.225784pt;}
.x6_c01098{left:519.489911pt;}
.x5_c01098{left:530.400000pt;}
.x4_c01098{left:564.923145pt;}
.x3_c01098{left:565.920000pt;}
.x1_c01098{left:731.040000pt;}
.x2_c01098{left:732.330272pt;}
}




    .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; }
  